diff --git a/.gitignore b/.gitignore index cafed23..8b85040 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ .ipynb_checkpoints .pyc .DS_Store +WebExtract.txt +311_Service_Requests_from_2010_to_Present.csv \ No newline at end of file diff --git a/FinalProject/Graffiti and Noise in NYC.ipynb b/FinalProject/Graffiti and Noise in NYC.ipynb new file mode 100644 index 0000000..f3f9e45 --- /dev/null +++ b/FinalProject/Graffiti and Noise in NYC.ipynb @@ -0,0 +1,1168 @@ +{ + "metadata": { + "name": "" + }, + "nbformat": 3, + "nbformat_minor": 0, + "worksheets": [ + { + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Exploration of Graffiti and Noise Complaint Locations in NYC\n", + "Data source: [311 Service Requests from 2010 to Present](https://nycopendata.socrata.com/Social-Services/Noise-Graffti/avfi-5sgm) from NYC Open Data\n", + "\n", + "Most of the data have location information(address and coordinates), as well as case-created time, complaint types and descriptor." + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "from datetime import datetime\n", + "from geopy.point import Point\n", + "from geopy import distance\n", + "from operator import itemgetter\n", + "import numpy as np\n", + "import matplotlib.nxutils as nx" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 218 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "f = open('data/311_Service_Requests_from_2010_to_Present.csv')\n", + "data = f.readlines()\n", + "f.close()" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 219 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "header = data[0]\n", + "print header" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "Unique Key,Created Date,Closed Date,Agency,Agency Name,Complaint Type,Descriptor,Location Type,Incident Zip,Incident Address,Street Name,Cross Street 1,Cross Street 2,Intersection Street 1,Intersection Street 2,Address Type,City,Landmark,Facility Type,Status,Due Date,Resolution Action Updated Date,Community Board,Borough,X Coordinate (State Plane),Y Coordinate (State Plane),Park Facility Name,Park Borough,School Name,School Number,School Region,School Code,School Phone Number,School Address,School City,School State,School Zip,School Not Found,School or Citywide Complaint,Vehicle Type,Taxi Company Borough,Taxi Pick Up Location,Bridge Highway Name,Bridge Highway Direction,Road Ramp,Bridge Highway Segment,Garage Lot Name,Ferry Direction,Ferry Terminal Name,Latitude,Longitude,Location\n", + "\n" + ] + } + ], + "prompt_number": 220 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "len(data)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 221, + "text": [ + "422998" + ] + } + ], + "prompt_number": 221 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Graffitis" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# Get Graffiti data\n", + "graffitis = []\n", + "for record in data:\n", + " if 'Graffiti' in record.split(',')[5]:\n", + " graffitis.append(record)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 222 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# Get id, datetime, point(lat, lng)\n", + "formatted_graffitis = []\n", + "for record in graffitis:\n", + " array = record.split(',')\n", + " formatted_graffitis.append([array[0], \n", + " \tdatetime.strptime(array[1], \"%m/%d/%Y %I:%M:%S %p\"), \n", + " \tPoint((array[49], array[50]))])" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 223 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# sort by time\n", + "formatted_graffitis.sort(key=itemgetter(1), reverse=True)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 224 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "I used the [Open Heat Map](http://www.openheatmap.com/) to visualize the graffiti locations reported in 2013, and it turns out the graffiti artists love [Chinatown (and Broadway in Brooklyn)](http://www.openheatmap.com/view.html?map=PenutianAmminesMisattributions). \n", + "\n", + "And initial comparison of graffiti and noise complaints locations on the map really says nothing..." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "\n", + "\n", + "There's a cluster of graffitis in Lower Manhattan. So I decided to limit both datasets to this area." + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# Polygon of Lower Manhattan's outline\n", + "lower_manhattan = np.array([\n", + "\t[40.726809, -73.971311], \n", + "\t[40.744207, -74.013583], \n", + "\t[40.707618, -74.023968], \n", + "\t[40.698574, -74.018990], \n", + "\t[40.709375, -73.976590]], float)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 225 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Try to see the amount of graffitis reported in this area through out time from 2010 to now." + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "graffiti_daily_count_dict = {}\n", + "for record in formatted_graffitis:\n", + " if record[1].date() not in graffiti_daily_count_dict:\n", + " count = 0\n", + " graffiti_daily_count_dict[record[1].date()] = count\n", + " graffiti_daily_count_dict[record[1].date()] += 1" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 226 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "graffiti_daily_count = []\n", + "\n", + "for key, value in graffiti_daily_count_dict.iteritems():\n", + " graffiti_daily_count.append([key, value])\n", + "\n", + "graffiti_daily_count.sort()" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 227 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "x = [g[0] for g in graffiti_daily_count]\n", + "y = [g[1] for g in graffiti_daily_count]\n", + "\n", + "pyplot.plot(x, y)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 228, + "text": [ + "[]" + ] + }, + { + "metadata": {}, + "output_type": "display_data", + "png": "iVBORw0KGgoAAAANSUhEUgAAAYEAAAD/CAYAAAAXBmohAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJztnXt8FcXZx38nJAgYFEQJmCBBSYCEQMJNilBCIUGL5kXx\nxdIK1EtboWK98ap4AaqV2LfUipZXX0tt1ApYKZe+VS4i4apEMKlKVFBBkxCQa7mT275/bCY7Z87s\n7O45e87Zkzzfz4cPJ+fszszOzsxvnmduPk3TNBAEQRAtkrhoJ4AgCIKIHiQCBEEQLRgSAYIgiBYM\niQBBEEQLhkSAIAiiBUMiQBAE0YJRisC5c+dw9dVXIzs7GxkZGXjkkUcAAHPmzEFKSgpycnKQk5OD\nd955p+meefPmIS0tDb1798batWvDm3qCIAgiJHxW6wTOnDmDdu3aoa6uDsOHD8fvfvc7rF+/Hu3b\nt8f999/vd215eTl+/OMf48MPP0RVVRXGjBmD3bt3Iy6ODA6CIAgvYtk6t2vXDgBQU1OD+vp6dOzY\nEQAg046VK1di0qRJSEhIQGpqKnr27ImSkhKXk0wQBEG4RbzVBQ0NDRgwYAC++uorTJs2DZmZmXjr\nrbfw/PPP49VXX8WgQYMwf/58dOjQAfv378fQoUOb7k1JSUFVVZVfeD6fz/2nIAiCaAGEY4MHS0sg\nLi4OZWVlqKysxKZNm1BcXIxp06Zh7969KCsrQ9euXfHAAw+Y3i9r9DVNc/xv9uzZQd0XzX+xluZY\nS28spjnW0huLaY619NpNc7iw7ay/+OKLMW7cOOzYsQOdO3eGz+eDz+fDnXfe2eTySU5ORkVFRdM9\nlZWVSE5Odj/VBEEQhCsoReDw4cM4fvw4AODs2bNYt24dcnJycODAgaZrli9fjqysLABAQUEBlixZ\ngpqaGuzduxd79uzBkCFDwph8giAIIhSUYwLV1dWYOnUqGhoa0NDQgMmTJ2P06NGYMmUKysrK4PP5\n0KNHD7z00ksAgIyMDEycOBEZGRmIj4/HwoULXRsDyM3NdSWcSBJraY619AKxl+ZYSy8Qe2mOtfQC\n0U2z5RRR1yP0+cLq3yIIgmiOhKvtpAn8BEEQLRgSAYIgiBYMiQBBEEQLhkSAIDxKTQ3w+efRTgXR\n3CERIAiPsmAB0KdPtFNBNHdIBAjCo5w8Ge0UEC0BEgEPc/p0tFNAEERzh0TAwyQmUm+QIIjwQiLg\ncWpqop0CgiCaMyQCBOFRaNd1IhKQCBAEQbRgSAQIgiBaMCQCBEEQLRgSAYLwKDQmQEQCEgGCIIgW\nDIkAQRBEC4ZEgCA8CrmDiEhAIkAQBNGCIREgCIJowZAIEARBtGBIBAjCo9CYABEJSAQIgiBaMCQC\nBEEQLRilCJw7dw5XX301srOzkZGRgUceeQQAcPToUeTl5SE9PR35+fk4fvx40z3z5s1DWloaevfu\njbVr14Y39QRBEERIKEWgTZs22LBhA8rKyvDxxx9jw4YN2LJlCwoLC5GXl4fdu3dj9OjRKCwsBACU\nl5dj6dKlKC8vx+rVqzF9+nQ0NDRE5EEIgiAI58RbXdCuXTsAQE1NDerr69GxY0esWrUKGzduBABM\nnToVubm5KCwsxMqVKzFp0iQkJCQgNTUVPXv2RElJCYYOHeoX5pw5c5o+5+bmIjc3170nIgiCaAYU\nFxejuLg47PFYikBDQwMGDBiAr776CtOmTUNmZiYOHjyIpKQkAEBSUhIOHjwIANi/f79fg5+SkoKq\nqqqAMHkRIAhCDs0OatmIHeS5c+eGJR5LEYiLi0NZWRn+/e9/Y+zYsdiwYYPf7z6fDz5FaVX9RhAE\nQUQX27ODLr74YowbNw47d+5EUlISDhw4AACorq5G586dAQDJycmoqKhouqeyshLJyckuJ5kgCIJw\nC6UIHD58uGnmz9mzZ7Fu3Trk5OSgoKAARUVFAICioiKMHz8eAFBQUIAlS5agpqYGe/fuxZ49ezBk\nyJAwPwJBEAQRLEp3UHV1NaZOnYqGhgY0NDRg8uTJGD16NHJycjBx4kQsWrQIqampePPNNwEAGRkZ\nmDhxIjIyMhAfH4+FCxeSO4gggoSqDhEJfJqmaRGN0OeDGOXFFwPr1gFkNPjj8wGHDwOdOkU7JUQ0\n+M1vgMceAyJbQwmvIms73cATK4ZPnAB27ox2KgiCIFoenhABgHo7BEEQ0cAzIkAQBEFEHs+IAFkC\nBEEQkcczIkD4w0SRxLHlQrODiEhAIkAQBNGCIRHwKGQBEAQRCUgEPA6JAUEQ4cQzIkCNHUH4Q2MC\nRCTwjAgQ/pAoEgQRCUgEPA6JAUEQ4YREgCCIZktNDXDuXLRT4W08IwLU4/WH8oOgMYHQGTsW6N8/\n2qnwNpYnixHRhcSAIILno4/0DSoJczxjCRAEQbgNWVPWeEYEqMfrD+UHQRCRwDMiQMghMSAIIpyQ\nCBAEQbRgPCMC1OP1h/KDIH926FAeWuMZESDkkBgQBBFOSAQIgiBaMCQCHoUsAIIgIoFSBCoqKjBq\n1ChkZmaib9++WLBgAQBgzpw5SElJQU5ODnJycvDOO+803TNv3jykpaWhd+/eWLt2re2EhKvRa2gA\nPv88PGFHAhKDlgv5s0OH8tAa5YrhhIQEPPvss8jOzsapU6cwcOBA5OXlwefz4f7778f999/vd315\neTmWLl2K8vJyVFVVYcyYMdi9ezfi4qJncLz5JjBpEjWmBEEQMpStc5cuXZCdnQ0ASExMRJ8+fVBV\nVQUA0CSt6sqVKzFp0iQkJCQgNTUVPXv2RElJSRiSbZ/Tp6MafdCQaBEEEQls7x20b98+lJaWYujQ\nodi6dSuef/55vPrqqxg0aBDmz5+PDh06YP/+/Rg6dGjTPSkpKU2iwTNnzpymz7m5uQByqdEzgfKF\nIFomxcXFKC4uDns8tkTg1KlTuPnmm/Hcc88hMTER06ZNwxNPPAEAePzxx/HAAw9g0aJF0nt9Eqcc\nLwKMt98Gpk8HLrjAQeqJiPP55/o4S0ZGtFNCENbE8phAbm5uYydZZ+7cuWGJx9JZX1tbiwkTJuDW\nW2/F+PHjAQCdO3eGz+eDz+fDnXfe2eTySU5ORkVFRdO9lZWVSE5OtpWQd98F3normEdonnjVAujb\nF8jMjHYqCIJwC6UIaJqGO+64AxkZGbj33nubvq+urm76vHz5cmRlZQEACgoKsGTJEtTU1GDv3r3Y\ns2cPhgwZYjsxXm34oonX8sRr6WnOxHIvlogdlO6grVu34vXXX0e/fv2Qk5MDAHj66aexePFilJWV\nwefzoUePHnjppZcAABkZGZg4cSIyMjIQHx+PhQsXSt1BhDXU2BIEEQmUIjB8+HA0NDQEfH/dddeZ\n3jNr1izMmjUr9JS5BDWmRKyzdy/Qo0e0UxGbUB/UGlox7HG8JmJUqSLPkiXRTgHRnGn2IhCrjZbX\nGn8i8sRq2fUSlIfWNHsRIAiCIMwhEfA4ZBEQVAaIcEIi4FGo4hNE6JA7yBpPiQA1fN6HKlXkoLwm\nIoGnRIAIhISRIIhwQiLgUajxJwgiEpAIEIRHIXdQ6FAeWkMi4HHIIiAIIpw0exGI1UY0VtNNEERs\n0exFgCBiHdpinQgnzV4EYt0nSBYBUVoa7RTELrFe/yNBsxeBWG1EvZpuqlQE0bxo9iJAELEKCS4R\nCTwlAuHo/cZ6RfKqRUAQRPPAUyJAGFDjTxChE+udwEhAIkAQBNGCIRHwOF6zCKhnFTkor4lIQCLg\nUbzW+BME0TwhESAIotlC1pQ1zV4EYrVHzdIdq+knCLv861/RTkHLptmLAEEQ3mXfPiA7O3zhkyVg\njVIEKioqMGrUKGRmZqJv375YsGABAODo0aPIy8tDeno68vPzcfz48aZ75s2bh7S0NPTu3Rtr164N\nb+ptQIXAXSg/CTepqYl2CgilCCQkJODZZ5/Frl278MEHH+CPf/wjPvvsMxQWFiIvLw+7d+/G6NGj\nUVhYCAAoLy/H0qVLUV5ejtWrV2P69OloaGiIyIOYEavuFHIHESS4RCRQikCXLl2Q3WirJSYmok+f\nPqiqqsKqVaswdepUAMDUqVOxYsUKAMDKlSsxadIkJCQkIDU1FT179kRJSYntxFCDRxAEEVni7V64\nb98+lJaW4uqrr8bBgweRlJQEAEhKSsLBgwcBAPv378fQoUOb7klJSUFVVVVAWHfdNQd//SvwwANA\nbm4ugNyQHkIF9aYIouUSy/W/uLgYxcXFYY/HlgicOnUKEyZMwHPPPYf27dv7/ebz+eBT5LTst5yc\nOXjpJWDOHGeJDYZYtS7IHUQQLZvc3NzGTrLO3LlzwxKP5eyg2tpaTJgwAZMnT8b48eMB6L3/AwcO\nAACqq6vRuXNnAEBycjIqKiqa7q2srERycnI40h0VPvkk2ikgWhKx3IslYgelCGiahjvuuAMZGRm4\n9957m74vKChAUVERAKCoqKhJHAoKCrBkyRLU1NRg79692LNnD4YMGRLG5FvjZkXq1w+QeLfCitcs\nAWqYCDfxWvluiSjdQVu3bsXrr7+Ofv36IScnB4A+BfThhx/GxIkTsWjRIqSmpuLNN98EAGRkZGDi\nxInIyMhAfHw8Fi5cqHQVicRCgTh/PjLxxEJeEITXoU6LNUoRGD58uOkUz3fffVf6/axZszBr1qzQ\nUxYmTp8GLrww+Ptra91LC0EQRLSJyorhSPZy+bjOnAESE0MLr64utPudQhZBy4V6sUQkaFHbRrix\nOjFSIkCNP0GEDgmpNVERgUi+GD4uNxrWSFsCBEEQ4aRFuYNiUQTIIiCI4CFLwJoW5Q6KJRHwauNP\nlYogmhfNXgRk7qBQGlhyBxGEe3i1s9OSaPYiwApZfT2QlaV/DmVjU3IHEZGCrC4iEjR7EWDs2QM0\n7nQRE5aAVxt/apiIWILKqzWeEoFwNHysEFRXG9/FkiVAEM0Zr3Z2WhKeEoFwwLuDGLEkAlRJCIII\nJ816imhFhb5KGPAXAXIHEbEAuTKISGD7UJlY5IorjM9uWQLUOBNE7EBCak2zXzHMcEsEIgUdKkPY\nwecDli6NdiqIWKZZu4N43HIHtXSoZ+U9SkujnQIilmn2A8OMWLMECPc5dgzYvDnaqYgOn3+uT5Mm\nCJFmJQJ1dXpFlxFrIkDuIPeZPRv4/vejnYro0KcPkJ0d7VREHrJcrWlWIlBYCFxyif93cY1P6JY7\niBrl2CUWxJ/H7QbMi89P9Sn6NCsR+PbbwO/iG+c/xZolQBBuI2twKyuBc+cinxbCOzQrEYiTPE1C\ngv4/3/DHggiQO4iwSyhlpFs34OGH3UsLEXs0SxHYscNo6JkI0Owgojnw4Yful99Dh9wNz0vQmIA1\nnhKBUAs3e+GDBwPvvKN/VrmDDh0CrrsutDh5WsIh9LFcqWIt7bL0DhkCbNkS+bTEOrTnlzmeEgEV\nmmY07Gbw7iB2nrBKBD76CFi92nk6ZJSUAK1bOwvLTjxktbRMzpwBNmyQ/yY2aG51npozzCNABBIz\nIlBRAfzwh+prZIXZrdlBVvdUVTkPkyDMePVV4G9/czdML3YovJimloZSBG6//XYkJSUhi53GAmDO\nnDlISUlBTk4OcnJy8A7XPZ83bx7S0tLQu3dvrF27NnypNkE2MMyEIdx7B7XEwrxpE/Dpp9GJ+6WX\nmreJ365d5OJqzpZAc342t1CKwG233YbVgr/E5/Ph/vvvR2lpKUpLS3Fdo1O9vLwcS5cuRXl5OVav\nXo3p06ejIcLTcGQiwHDLEohUYx8L7qCRI4H/+I/oxH3XXcAXXzi7J5YahIsuinYKiJaCUgRGjBiB\njh07BnyvSVqmlStXYtKkSUhISEBqaip69uyJkpISabjB9KbtVGD+GvZZZgksWQIUF1uHJ0tbS7cE\nxPfQEgbDowGJABEpgtpK+vnnn8err76KQYMGYf78+ejQoQP279+PoUOHNl2TkpKCKhNH+T//OQcA\nMGcOkJubCyA3mGQEIDtUnsGLwCOP6POjX37ZeRwtpbG3S3N2yUQTJ1YLDQw3T4qLi1HstLcaBI5F\nYNq0aXjiiScAAI8//jgeeOABLFq0SHqtz6R0XX/9HLz9ti4CbmLXHQQAp087C9vKEnC7IsWCOwgI\nzNdI4vW8CYVYWNAYC8SywOXm5jZ2knXmzp0blngczw7q3LkzfD4ffD4f7rzzziaXT3JyMioqKpqu\nq6ysRHJysjSMYCqvnZfJi4DoDhIr1enT7haQ5twgqYgld1AsNQhOylNLLXuEOzgWgWruxPbly5c3\nzRwqKCjAkiVLUFNTg71792LPnj0YMmSIeym1gaqSiz3W8+eBoiL7YcdKzzzSkDsoPITDErCyYhsa\ngBMn3I9XBdWn6KN0B02aNAkbN27E4cOH0a1bN8ydOxfFxcUoKyuDz+dDjx498NJLLwEAMjIyMHHi\nRGRkZCA+Ph4LFy40dQcFg1NLQDUmwHjjDfvx0+wgOSQC4YF/7/37RybOhQuBGTMiW+b4ch5Lllpz\nQikCixcvDvju9ttvN71+1qxZmDVrVuipkuB0dpCIW75rmh3k/zeJQHgIxRLYtw+46irnZf6bb/z/\n/vZb/3O6Y4nRo4GpU0lY7OC5FcOPPgqcOhXcvXaniAZDrPTMI00kRWDOHOD48eDvj6UGIRQR+OKL\n4O4X86d7d+D994NPhx3CVa/eew947bXYeufRwnMi8PTT+i6gZqgKi90Vw07Ytw/497+tr3O7EMeK\n6EQyfXPnAuvXRy6+aMLnq1Uei787bfhU1wfbIbNLKOXnu++A/fvNfw+lw9CS8JwIAPJejJ1GMV7i\n3GLXBysCPXroZmWsNMqRJBqbcrWU/Gd1ICPD+b1mjbpV3kWz1xzMex06FOjZ0/x3VWeSMAhqsVi4\nYAUhWBFo3z7wOzfcQUeOABs3WsfvJrHQ2LVqFd0porGQR8HC6oDPZ34iGFvrEk5LINyEagmcPess\nLnIPBRIzlkCov4UiAlu2ANdeq3+OdMPj5YYuGhXKy/nhJlbPOWYM0Lu3/Dez9xLM+4rUO2bPe/Kk\nO+Glp+v/q3YRIHRiRgTsWALhEgFZOojY61XFUnr5siwrc/y5wHafKxh3UCjl/cMPrTf548Pfvj28\neyZFu+6eOQMsWxbdNMhotiIghhHN7Q2CIdoF1gzWUBw44G6jOmkSsGCB9XV8vsRSo+6UUFYMB+sO\ncjs/hwwB8vPV1/D1+uDBwN9nzAAad6kxvZdx/rz6qMxob8WxdClw883RTYOMmBMB1YvkCwVr9EMd\nGFbFYef7cMUXbbp2db7/koolS4BXXnF2j1fzxg2sGixVgx1sYy67L9pC+8ILwHPPyX8T3//MmUDn\nzuZhRVsEvEpURMCq8rphCbD56+y7UESgVavAdBDuY6fBaSn5b+UOai6+bjv12u7zcVuXNcHnE4mA\nnJizBIIVgVAWNfFTT2l2UOwS7V6tE0J5/7E6O8iplS1+b9XIU52SExURsCp0N94Y+B3vDurcGXjs\nscBr+ELAev4qS8Bu4efnw5M7KHyQJWBgNUVURaTWCWiaMXU61DDdeK/BeBiIKLuDbr5ZP6fWyT2a\npg/+yJaz8y95+nT/79yyBFo6qkrdt697U/zcHG8wo6oKGDYs/PEEQyjnV0TKEti5E+C2uw+KUBp/\nlSUgeyYSATlRdQctW6afU8vYvNn6Hr6HJMIXCraIhH0nEwG7BdANS6CuDlixwl58dsLzIrt2yf2y\ndmHvdO1aIDFRfo2YL+vXA8eOOQufsWNH+PfGCRYnYwJOfnOKKqzz50MP380xAat8IhGQ46kxgVdf\nNf9NLCyyfYJkL5m5gUIZGObj+u674MLauFHu5rIi1sTAjVlYJqeSShkzBnjySXvXxtKYgKqzI+Kk\njFRXB15/+rR+joDT/HF780AaE4gOnhIBFaII2DX33HAH8cyeDfzhD4Hfx1IDE05CEQGn89VD3c/J\ny42Ckw3kRFT5d/nlwD/+4f/dkiVAWpqzOAB7dcrqXbq5JxdZAsERcyLgdNsIlTvIadyMAwesrwkV\nrzZQVpW6pgbYvTt88Xs1X9wmnOsEDh8O/O6778JjCTjdATUUrPKMREBOzIlAsJaAmyuGI9nrj7VG\nb9EioFevyMbpNI+2bwd++1vjvv/9X/fTFCpurBMw+96txtBNd5CmOXuPTz2ldzjEMFREWwS86i1o\nViLAF4KhQ/X/wyEChDnR2MPdaeV++mngoYeMv3/xC3fT4wZuzJoRwwhlxpEMN0TAznPKrnn88cDv\nZLODysudxdUS8eSKYZGbbwY++0z/zLYutrIE2HVujwmY0VLcQVa4MSZgF7EnaDd8r/bIeEJxB1lt\nlWIWdrAi8OCD5te4kdehzA7iibYl4FViwhJYtsyYynfrrfr/ViIgrhgOZd/7UDfoCoVYEQM392iy\n08ABwODBgd+FGr5XCGVgmJV5s0bPSXiqvGJ1bP58++GJ6WDTpp26g2R4fUzAq3XZkyuGeVjGpaTo\n/+/caR6GyhJw2mvkEeNye8vd5gBr/Fm+ByMGwTbOTvOeNTzffRdcfJHADUvALAw7loCdWTuhWteH\nDuljM24RyUHo5oTn3UGsMWGrdlUmfbgsgWgQawVWzOcXXjB+++IL4O9/tw7D7px4M1+3U+66K7j7\nIkEoA8NM5Mwa+6VL7cevEiM365Qbi8W8bgl4Fc+7g8x6NVa9cdESkK1uNFuVKuKmX9Pp9MlYEQPR\nEqiuNn67/35gwoTwxW03j2LBDcQI5b2zrZfFOsPCtLNVi1uWgN08b9/evG7QmEB4UYrA7bffjqSk\nJGRlZTV9d/ToUeTl5SE9PR35+fk4zk0HmTdvHtLS0tC7d2+sXbvW1YTacS/I3EGsYIjuoO7dgUGD\nAsN46y1g1Sr/7+y4g+zSq5f1aUuxiDgLi88ju/llZ+DWDd+xjH375JsSRgsrS4DHramgc+cG3huJ\n0/oYodYLsgSCQykCt912G1avXu33XWFhIfLy8rB7926MHj0ahYWFAIDy8nIsXboU5eXlWL16NaZP\nn44GF3LdzBKw2jZC7KWIs4rMdmf8z/8Efvxj/++cNPp2znc9f17/99FH5uG4uZLSTWTP9/HHgbu2\nBiMCgL6i9b//W32NHXfQQw8BGRn24339deA3v7F/fbix2jbCTp7asZ6t7lWVPzvV20n5DXaM4fRp\nvQzSmEBwKEVgxIgR6Nixo993q1atwtSpUwEAU6dOxYpGB+TKlSsxadIkJCQkIDU1FT179kRJSUnI\nCTSbdWJ3YJjB3EHsvrg480LRpo3+/7p1xrVWcTtB04CFC4GBA0MLxytUVweKQDD4fHpYn35qfo3M\nEpDF+e67xrRiO3htHYlqdtCDD9p7NjN3kAz+4CT+Wrsn+QWDWI+CLTtPPQX07x9ZS+DkSec70HrV\nHel4k+SDBw8iKSkJAJCUlISDjQeD7t+/H0PZCi0AKSkpqDLZCeztt+dwf+U2/pNjpzAyVJYAcwfZ\nEYG2bfX/Fy40rrXCSYXQNGOXUzfCizZt25q7g9asCW1mlpvYme7oFVTlXWVB2g1DJC7OXwjtuIPs\n4KThM3sHfF14+21g7Fj/38+cCbxOhpsi8M034d+Btri4GMXFxeGNBEGIAI/P54NP8ZbNfvvhD+fg\nnXfsxRHswLBYoFija8fvfMEF+v+tW8uvbcnrBGTP3ratuTvo2mvth21ntombs4N4vOYvduOZnFg3\nYkfHjjvI7bJpll4+nnHjAge27XYU2e9HjgCdOgWXRlmawkVubi5yuQMb5vKDNi7ieHZQUlISDjTu\noFZdXY3OjSc7Jycno4LbTL6yshLJyclBJ4y5YsQXbHeKqNigMFGwIwKsMDIRCNUS+Oor/8HmcA1u\nRos2bdzpOe7YYe86O+4gp3jNHeTGwLAbIhBOd5BIqO/Abj5deimwdWtocTUnHItAQUEBioqKAABF\nRUUYP3580/dLlixBTU0N9u7diz179mDIkCFBJyw/X//fiSWgEgHxPt4dxP5nh5Ow8YN9+/x/D5b7\n7gMWLPD/rrkNYqkGht1EJaDnzgGVlcGF61V3UCjlwI0xAS9YAnZxMiZw9GhoccVa/VShFIFJkyZh\n2LBh+OKLL9CtWze88sorePjhh7Fu3Tqkp6fjvffew8MPPwwAyMjIwMSJE5GRkYHrrrsOCxcuVLqK\n7BLswLDVJlk+X2ChYZp17hzw9dfAli3yuJ0iq4xuzX12k7177R/QwtPQELwIvPmmPm4QCiyPHn0U\n6NbN/Do71p9XYM9k54xhs9+dLOYKlyVgdwsQwN6YgIpIDgw3JxFQjgksXrxY+v27774r/X7WrFmY\nNWtW6KniCNYSMEM2RVTT9L/37tX/Pn/eGGwC7AnQ5MnmcTrpkZnh8+m+0BEjnN9rl1de0UVAtkOj\nCk0LbDTsisAttzjzz6rGBA4dMr+vqgrYv9/8d69aAqHg5JmCEYFQEd+jnTEB2d8MEoHgiNkVw3/7\nG/Dvfxt/19fb682xwh4XF7jVAYurrk4908ipgeO08I0Zox/3J+JkymMwBNuz07TAYzyD2R+KwQbm\n7V7P/laN3WRmAq+9Zv67Vy0BQO+c/PWv5tfyec0/hxNLwGy6pqxM7NgB3H23f/jB5J/bYzt8x80q\nPjemeTcXPL93EENWyPgVht/7HmBiuPghcwe1aaP3FM1EINTCKWu02HfFxYGFd/16YM+ewHvDPSsp\nFBEI1hKwG6/qWpkIiPHzHYZYQCxz991nfi2fJ/xcDCeWAJ9f69frLlFZOgD9OMo//tF/C+lg5oBY\nuYM2b3YWXuNsdVPctAS8NpssFGLWEgD8C82HHzoL1+fzv+f4cf+4+AKq6uWsXAn85CfquFQFZtQo\n4KWXAr+X7XUUbqJlCThNh9nvKkvAaoaX7PfaWn1RUDQQxdRug843hCpL4NQp89/HjAHeeEP/LMvr\niy5Sx2sXK3fQ979vL5znn9f/P31abUU2p4bbTWJmK2n2Aq++2vht4ULnZig/O8hOvIDaHfS3vxkV\nxgyrgWFZRWMisGKF2tcdaWTv7k9/Cm12kNN5/2bXq+IUZ7+IyMrDPffIG7xIIM7OUYmAWX6p7mnf\nHpg2zfh9AoqgAAAgAElEQVRbnC0j7sL7r38Z0yrdyhO3xwQAY6FnsGOGdiF3UIgEY/6zF9izp/Hb\nX/9qTOO0i9k6AZV/UiU0wq4afkybBjz8sLzw8fHJGiC2yvbZZwGXx9pNCdYSePHFQHfQE08Ys6uc\nxNu2beAYjVU67QhPMCLAXHIMp2UtFMQyE8y2zVb3qDZsYyLA8jo/Hxg+XP/cvr3ztMgIVgR4xHeu\nes9uNtwkAhFEFAGxoMQ7XPNsZgkEKwIdOpj/9uKLwDPPWM8OkjVAvDuIW4MXVkKZ8ie6gwDgpz91\nHi+fF/X1wPTp1laTHesuGBEQn7VHD2MtSbgRy0xdnfOGx8qFpAqPdUJkHRirvLSLXRFwgnjuiNvh\nMyIpAmfP6tOfw0XMiICskQGCF4FQLIGyMuMzMz9lXHppYFgsLqsBX14E3Kp0VoQiArIphV995Txe\n/lnr6oD/+R/77oBQxgRkzyX7LhyHEw0frluMPHbn0KuwSuuRI+a/qUTAjV11AeduQDvhq+pKtEXA\n7p5PIlu2AE8/Hdy9dogZEWCFUdxawGkDyRqDUETgH/8wvlPFf/HFgWHJsBIBp0IXLG5YAnb8rmPG\n+D+fmQiwhki0BKwWAspwwxIAwjO4uHUr8N571vG4bQl8/rn5b+z9qCyvUHF7iiigfs+8KEZjiigb\nwHaKyT6crhFzIiA2yNu3O5v+Z9cdtGuXOhw7IsB+27YtMC4rS4DfedNLloBZj9rs/chYvx44fNg6\nfF4E+IHSYCwBqzxk78DqvYTrQCDWYQD0fbNk4xx2x0gYoVgtKkvALcwsAZWFIiK+I1WHKdaOmGWE\ne1ZTzIiAeNYwY/x4ZytczdxBbF404+c/1/83azxYgQrGBVFe7r89A7uOO6TNr4JEyhKwg1kPSpxN\n4gSzMQG+IRJnyzhJG2AtAmI5M/ud29QxZGpqgC5d9M/8jJv8fOfHkMowswTslCeVJWCGbLFWMO6g\nGTPsxymies9ubmkeyTGBFicCVj1N2UsOZlGMWDjFPcqt0sPiDKb3KZr+LC0dOwLLlumf+RcfaXdQ\ndTVgdjqoWaVWLS6ygr+HzzO+ITJbw8GjWiwWjAjw4YWjIp48acyvF9Mni88qDaLbwKzna+dZVJaA\nWf6r9m2SYSYCTuqzKNp23UGhEkkRCLcF43kREN1Bsgxx4iM2cwfJtmkAzAuVSgSysoDVq+1tQS2m\n84MP9P/N/OThhMU5c6a5KJqJALs+1ME3Ps/YGRBW7qDXXtPTzN8rXmOVh6x88Q2Q2XYM4UBsbGWN\nr9mCLPas99/v//1TTwFTpljHJUMlAmb3y3bmVDWWwUz1tQqzOYpAuA9lijkRkPUSzF5IQoL9eHj4\nGT9WloAs7k8/1XvSdhtvPo7TpwPDjbQIqFbJmuUHaySDqRxm7iDmXuB7/2aWwLPPhuYOshKBcFgC\n/HOI4ctEx2qAUHz+XbvU+yWp4AVYxK28cGN2kEikxgQiKQLh3j0g5kTAiSUgEwE7h8rw91mNCah6\niMFYAkwEzFwk4YTl46lT5teE0kszC8dM8FhDNHWq9ZiAprkjAmbvMxyWgGp/KllDa7VBmpt7S/EC\nLOJEBJyMCbghLqzOycrJvn3mExKcoirn5eXuCg5ZAoKv1okIyHoFdkSAT4OVJWBWcDXN/F4xvTIR\n4Bsdt8cEFizQp7mapSucIiD73coSeOut8I8JsPd4553G+oZwjwmIZ/rOmwds2GAeHysbdmg88C9o\n2BhPJC0BN4RW7Czw51rNnq1PTwbkU8Tr6oDrrgs9DZmZwAsvhB4Oo1mLgKyR5L87d87YryQYd5Cs\n4jtdXaoaE9i0KXBWkVX8gLrw2xGB+npg40bjb3Gg2Ypf/Qp46CHz31WV8csv1WHb3dPd7DqZJQBY\nTxFViS5gbZWx9Cxfrv8Dwu8OEkVg1iygsNA8PieWQKjWI3M9hWoJqDCrB8F0JMTf2P9iY8/GLcQw\n4uL0Ff6rV6vjtpMGQN2RckqzdAfdc4/+v6yg8pX15ZeBiRP1z6yA8CKQkqL/70QEzBaLmd2nsgRG\njgRMztdRNkoq/y9r+PjvxOdYs8Z/quLo0Wox+vjjwIFe9vyLFxuCYFZx3EQmAmbuIL7RY9fU1sob\nQyt3kBXigjQg/APDfJhsk0Am+LL4zERAll67rkgz2FYlDQ16g6YavxCprzefKfSTnxidFieWwLFj\nQEaGOl4+TLOyLFsPwnAyNdXKPenGQVKMZm0JWImA2FMC/EWA3R+MJRCqO4jN6b/kEvnvmmbeG1u6\n1P9v/jll22OIaZXli6qQvfOO+ZTPF14Afvtb/zDYM7/5pv+1dnqAVitMrURANjuIv2bmTKB7d3nc\nqobPapGX1fkR4bYEvvlG/5+VGZnb08od5JYlwIezdWvghnFWeXH+vHHWs1h233gDePVV/bNYVljd\nltXNvXvtHapkJgLiFtO8JR0MfL1bujTQQ+GmCIT71LuoioDsZZv5dfmeIMOqoLvhDjITC1YhVS/I\nbm+MbwxYeKpw+TSx61S9KNlvLG2XXab/zx+qw8K/5Rb/e+wURr7wt2un/y/rRQZrCagIxRKQpces\nQ2KX2lrgu+/Mf+fzs00b/3jEvG7XztoS4BHLvpO84e+trvb/rbo6sIHLyvL/20okzGbW2d0uW7WJ\nn1kPXZwk8rvfmYexdKluXavgReBHPwrcF8jObC+7hHt6sufGBMxMWlnlUM0EAMJrCTD3i+pwbLvq\nLxMBvhAtWGB+rx3RkBUi0SxOSTEq1/bt6rhU8HGlpQX+HqoloOL3v5d/b+demSUgs2D697cOi3HR\nRUBSkvnvfF4xk591Llhnh6UhPt66MXDLHaRab3H55YENnBiXVTrNREA1JlBaanyeMME8bDMRsOMG\nZrzxhvU4m2iBW810CsWSbNYrhq3cQbLZGTIReOUV++HbEQE7YwJssMYNEfj2W2PAilUE1bYBMl+1\nqoFW7QRpNejEP4OdHonMVSVLi5UIxMf793z5683eHRONTz+Vx6lClh6ZCPCzTaxQjdMA/nnF3kN2\ntv6/6A5q1cqZCITiDpLVO9UgOX/9L34RaEGKmDX2qjL82GPqMBlmjTLLDzsiYMcH71QEnnjCOkwz\nWpQlEB9vLgIqS8AMN9xBZtexBkclAnYV/LnnjIFeds/Ondb3Pfmk0UP685/1qZSAvqHe5MnGdXZF\nQFbY+MbIqTtIJQJWu4i2bm1uCagO8gGcuyfEa2TXh7IYzgyZJSBamCy+Vq0C0/W97/n/bdcSsGoI\nVZYAEJgOPrzXX9cnLqiwcgfJ4pRZlTI++0wf4xKF3IkI2JmNIzb+MhF48UXgn//U/xbH15zQoiyB\nhgbzgmy1otNO+Dx23UFm17FtJtwQAQD45BN1eDKeeMJYEfrQQ8Addxhhvf66cZ2scf/Xv4D/+i9r\nEWCN0qZNzhfAiM+yaZMRR79+8ntY3ick+Pek+S0JnA6UBWsJyMqfmxVSJgJM+ER3kMwSULlDVWXf\nat1JKCJgxwIxa+xV5YudzWGHhx4yFwGRuDi9E8ZjRwRES6ChQZ9eyrtZp00ztvIIZfGYZy2B1NRU\n9OvXDzk5ORjSaCMfPXoUeXl5SE9PR35+Po7z22JysB6M2FsRRUA0Qc2me5nBXrysZ6+6lzcHzXpU\nrFEye7lnzgTXa3TawMlONhMruVnDVVLi73KRFTY233nkSPX+80BgRRNn5IwcqcdpJwxRBEaOND7b\nqVBO5/h//HHg9XwYffro/9t9p3auU4mAWA5UIsC+N+tAnTnj/1s4RcDOWEQwIuC0Ltl1B2la4BhY\nMCKgaf71g/3eqpVejkOZ5ulZEfD5fCguLkZpaSlKGmt2YWEh8vLysHv3bowePRqFbOWLAHsopwPD\n4vV2RUDWs1cVVjvWBhtENSu4f/mL+QCrCjsiwKeJd5kw2EwINk3PrBC1aeO/cZ4s7l/+0jgrWBYX\nj52VzVZh8CJgdsSmnTySzftX8fXXgdfz+Wy2S+qKFfIKbmfFqOy9iJaAyh2kEgFekC+80NrdJQuX\nj59HNSZgRwTMXGuqxs5pT9quJQAElqdgRUA2m/Gzz/zPzQ4GT7uDNOEtrlq1ClOnTgUATJ06FStW\nrJDepxIB1cCweL1VgZP1+u2IgJ2eDbME3J7Dq6oIsgopmzvOGmN2JgIrRDk5/oWxXTt/EVi5MjCs\nU6eAESP0z3zluPzywGtVG/YxxAZTFFkzdxBPONxB/ApPMZ/5A+bFsG68UT8ERoRtPdGpk3mcsudg\n70fmDrISAdlvrVsH/mbVyFltlyF+p1phL+tEqXz/ZjjtSTsRAbGBdiICbAqt6KkQ34mJU8QW4bYE\ngt6VxufzYcyYMWjVqhV+8Ytf4Gc/+xkOHjyIpMY5cUlJSThosvdtVdUcAKwBy238x8I1rrMSAStL\nQNbg25kdZOaS4mEvNZIiIFsYJlueLrozWJhlZcCvf21cl5BgvoU2Y8AAY1U0Xzlk4mjHEhArnM8n\nHxhOSAhcVMdw6hp46iln17P8Y8/IH2kqi9vu0ZQiqoF4O+4gFodskRXLx7ZtnTegTkXALXcQQ/w+\nK8s9EeDTyqy1UETgqquM+PiwVRvV2V3dXlxcjOLi4qbxwnARtAhs3boVXbt2xaFDh5CXl4fevXv7\n/e7z+eAzedLLLpuDAwf0WR4nTvgvhFGJgNMFMLJegJP5wmIaeNj+MlbHUDpFtic7Q7bTpcwSEBsF\nvtLybo+6Omszle/BuCEC/Kyla64xtwRC3TSPPde5c8Azzzi7V2xA+HfC52V5uf91PKrtCRgqEZBN\nETWzBBoagAMH/N8VK/Nt2jg7fpW/F5Cn32xsQrzXjLo64LbbYLtxa9UqeBEQ08W/K7ZNRDAiIIYv\n/q2aHnzunP929Wbk5uYiNzcXn3zCytpc65uCIGh3UNeuXQEAl112GW688UaUlJQgKSkJBw4cAABU\nV1ejs8lWhqI7SLZzpPi9yh1ktnWDbExAFrbqt3DuoyNDtTWAbIaUzMcu5i/fePCV6e9/t04Pb2lY\niYAddxDPtm1qd5CIbBDcDFaxG4ujI0SLSyYCu3fru0UCge+goUE/34APQ0aolgDvDkpNNTom/G/i\ndgl2sLIExEaSf4fiCmMZ9fX6mJmdadCA/uzssCW7OJkiKoqAHcER1/GIe4WpRGDOHOvweTw5MHzm\nzBmcbDx55PTp01i7di2ysrJQUFCAoqIiAEBRURHGjx8vvV9spPgXY+ae2Lw5sJfB5sib9Z7t+P9V\n9wVzbziRWQKywsYakCuu8P9bvNcOsgVNgFzAg+m9OxEBmX/bjP379f/NXEoqmLm+eLH+N9vemf3G\nhw/oQunz6Vtv7NyptuZ4VCIgNkRW7iCxYebXWzhFNjCsKnN26wgTZKcu1GAWvplZAnv2BF4rioDZ\ngT579xp/8xMVgMAxAdUEiCNHzH+TEe6B4aCM7oMHD+LGG28EANTV1eEnP/kJ8vPzMWjQIEycOBGL\nFi1Camoq3jRZIcEKgUyd+cJvtTzdCpkIhCII0aauTq+AZpaA6CPetg2YO9f/Grafj13MRED27pxa\nAmL4fHiysJyIDHONONmDnyGWO37zvYYG/R3wPl9mLZ06BQwa5D/vXGUJiA1369bm7rlgB4aD6UWy\ne/k4+TInpttunWK71VqlyawBd4IoXk5mB8ka3Wuu0Tf5Y+GK94hpVm377aRRP3vWowPDPXr0QFlZ\nWcD3l1xyCd4121uZQ+UOkl3HYI1Aaqr/jA0zZOG7NTCsutfNVaU8s2fru2g2GlsA1O6g0lL9349+\nZPzm1D1g1gOUiUAwloDZIGOoIsAQt5BQER+vV27V+zt+XPfn8kYu87mzGUGJicZvqrDE3v4FF7gn\nAqrdSK3gRcCpJaDa3oJd59QSCMUaFzucMmprdVcj6zio1svw9/CI7iCVJWBXBDRN77TZGT8Ihag4\nO1TuIB4xs1gjYLdhVq0TUBGKCKjM71BdS6dO6XliNSYgVjK+0jrprft85pVf9i7cOAGNNTqysIIJ\nn3fbWMHyRlVJ2XRQtvUzYOwUOm6c/r/V4S8MO5aAnRXDKksgmNlr/OC8rOcr7oxqt47IrAoZblgC\n4vYbViLAly1VfjJk1oNdd5Ddnj0THqu1NaESVRGw6pWLmcUqqd3GVBa+GJdMZUMZE1CJgFtnBfP5\nwh8Kb2aq8oXIiWnZurV/g2hlCQTjDmKI74EPizWuwYiAE3cQi9NsN1Ie1WCo3S2wo2UJ8GU6J8f8\ndzMREFeCq+qXbAGVU/dGMJ0nsVdvJQJ8HLKBYSsR0DRjMgDgjiXg5ulkKmLSErDbmKqmiDIuusj8\nPlXazFC5W9wSAb6A8QPp7LNYyfjG22pnS57Wrf0rPB+v25aAmM+8CIQybdRqHYRZnE5gA56Nw2R+\nwsMavoUL/U+DO3zYOMKRYSUCf/qT/3d2REDW6+bz8eKLA3/n85sNgPLhsFPQGPy7s7ObrewaVd6H\nUm/sWAKffWZ/4SlDNpjM1xU3xgQiJQIuH2FuD9EScDom4KY7yMnWFap4WFpVIuDWgfF84ZAVKLGS\n8fviODmvNCHBfzYFLwKyvA3FEhB3Y+TDYnGZuYhUDY/dmTqAs/ES1SEnMkvggw/8T7MaM0bfxE+M\n36ziq7Zdd+oOio83eruycPk9t2SNGRM5lvd2e+oqEYiPNxdAfsaY1WJDETsiAFg3uCwN//iH3jkS\nn2HRIv+/VSLg1B0UbqJqCTDsuoOcioCdKaJWImAnLr6ARcId9Mgj6t/FAso3Uqo53iJioy4TAStL\noHE5iSV2tiKQhW81BdJJRQpWBJjrgVlZYgPg8xljEx9+qP8tCgCLX+xlM1QiIGtUVe4gmZUlC9fK\nQuf3NbKDlQgwli+Xr36WvWuruO2KgJWFzPKkoAC4/vrAfBV3yHFzTCDceHpMQGwYgh0TUM0OUq32\nVKWNx0oEnLoz2Pz+YFEVMrGwq55PfBZ+5amsUsmer0cP8/B5zE6C4j/Lwg9mMZQZTsLiGzJRBHgX\nFKvIbNxAdSiNU1eiuC0ID8uz2trA98iLgOz9s3tVR2MC8o32GCxO/jfWAZE1kKpGmv0myx+3REAm\nTAcPAmPH6laT2CaEsl2MXXeQ0/UEwRJVEZDt2y67jqEaE5D1XvipbgxxOb9TX6AsPXzjpOqt2O0x\nheJWAdQF9Px5gF/IrTKlxXT83/8Zn9kzW7mD7E5RDJcloIJtjMeQpd9MJPnePhPH8+f1/ODPcmDY\nERinIqByB/HlXAzXqnzZ7WSp6hA7M5kvX6y3LNvGQtVB4veTMvvNDFYXghlc3rlTXyNywQX66X+M\n+np75dosTrsiwMaYwo2n3UEPPuj/t8odJGuU7IwJhGIJyCwTVW8lXCLALwATp5CKnDsHXHmlvXBV\nFdPuiuEPP7QXl8oSCJcI2JmKaPbOZLOOtm0zn9NtxwpUiYDKbSMeci4i5hGfFpUlYIXKEnBqobE0\nXXZZ4G+huINYY+3GanaGVR1jXHih+f1mdO3qbBzLDTztDhKRNfQMWYNsxx3k1BLg3Ruye2UFVWYx\nqHAqAu3bG58bGvT8NWscz5/3T4cTS0CG3Smio0apw1GtDleJaCjuIPHZVZ0LETN/rVm+22k0nM6Q\nkZW/7t0Dv2O9cobsmWQ+eLvI0sHei9O6LUubaisRu5aA2yv/nYqA1X5MjAMHrA9vcpuoiICYgXZ7\nHqoxAfabrBcvcxHJTNmJE83DYFiZcm64g5xWQn6Fan29nr9mPdKyMudixA/usu9k4hHK7Cc7loAs\nX+xYAk7HkHjMnon5/8WGyawht9NoOD0SUpZe1pPmf7PjDpK5TO0iC0+M02qQU+XyYcjywCrdrMMZ\nzP47qjTbcQfxFjqfTpm1o2nGTDxxtlm4iYoIiGak096CXXeQatsI2d+yGS9iA8IXJruWgMqdIcNp\nJZSJgNj7k6XH6jdZ74wdDSo7glHcWZHHqU/Wyq3HsLOknk//tdcan+1s72E1XiW+U7NGzM7UXLvv\nRZU2WfkTy4JsYFjmIhLHTMyQPbMY5623qsNQjfepZiHx38nSwcRXJgJsjZBZGZoyRf49YM/NZGYJ\nyATkiy+A9HT9s5O1LW4QFREQC68b7iCZQKgGhmXuIJkIqCwBcZAZMCoh39ioerKy6Z6hiABzB6lE\nQFVw+R4cu46vXPzB2iKqRszuOIvs1DnZe2TYEQE+LL6RtCMCVu/CrgjYWbmsmq5sd7zCTq9cJgL8\nd+zdqk5Fcxqn7NQ6HpU7SDUAbSUC4jGdPKxHbua7V00bZedlqcofbwnExQGjR+uL82QrkvmV/2z2\nVGamvnFduImKCIiNbSgiIJqRdscEGLLGRmUJ8IVJNSAmmz8vq7SpqYHfhdsSUJnc/H3sOtkYguyc\nWJVrxu7KYvFULyDQEuDDsiMCZv5uO2MC0RYBVS+YXc93OGTvQDUwLPuONZx2FxaqLAG7A/cqa9mu\nJSC7lz2LbAaVTATsWutHjwJduqjLn2gJvPuuvvmjTAT43j8rK3V17q0tUhFVEbA7TZOh6r3LxgSs\ndikVf5M1MipLQNa7YCLAz7FW9XJkA5tOfNNA6O6gjh3l6WF5atcSUPld7YqArEyIIsDnu6oSWuWj\n+P74fFSFYRYe4J9X/GF7dkRAtc23ap0AH6es0RXdD7L858sLO6TJSgRUfnxWjuyKgMzqZMg6BmIa\nAHlDrxoTkLmD+PSytMjKWOvWetzsnTE3KY/MHdS6tTxfZSJQX+/eLgMqoioCDKc9X9X0QZnpr5rG\naLVFhJg2vuGQmYssTn4fEZUlIBMBlo60tMBwZfCzg+rrrd1BYjr457ZrCYTiDlJdJxMBlZizCqpq\niOxaArKTy6zKprjCV+ZWAewNJMpEiKGyBKxWAIvI8opv6Dp21POGn0qsaoCdioBqoaFMCFmjydLA\nzvUVw5IdycmQlVcWF99Y88/CnqFLl8B72cFDLN/4NMmehZWjCy6wdge1KEvAqTuIIavUMhFgL8is\nkRPDkqVHZQnIDsxmhZ7vlcjGBAYO1NMiqySywTqVCPCFmM1hZs8+cqR5+LLnDWVMgBX65GTzOAHj\nfbDZWDJkwu1UBGTWIf/+RRGQzdoIZaaM090yVZaIap2AzMevKsMyoZL1OBcuDLyOR9V7V7mDVLOT\nWBni84J1ttg17NwGQD7gyjpPfDyy2Vms3vCb6PF1lM0OknWoRBHg08HC5TtnjNatnbmDVJ05t/CE\nJRDKCkXR1SLzF8uut7uSUDU7iL1smQjw18ncQZdeqg8Aqab+WYkAu46vMAcP6tsYsMIj61mJz2S2\n2E1mCTBkDRyLq2dP87Tyn1k5kM3CkKXJrgiw8GVbF/A9XlEEZs/23+RNvFcFexa+QVGJADszd/Vq\n4Msv9c8yq9DOmMD69c7Sy+cVa5D4hknmZpKh2qmUF4GXXjKPn8HKGKtTfJlmA6VW7iBW52TCJnPH\nsbhk43I8KhFgZZ5PG/uOP/ucPbMdEWCn1tXXA4WFwNat6vSFiicsAaerPvnKyzKf+bWtRIAhmpj8\nvaqBZL5xT0kJDJdVZCtLQOUiku2BrjK5WYVp3Rro31/f19yOCMiel6987F6+MrHPsp4hy2+2ruAP\nfwCeeso/LjE+/j5ALvSyLQjEe/kyJO41Y2YJiI10x47A97+vf2bmvapRHTDA+MzSy6+pkE0jZWWG\npS07W4/rP/5Dvre/anYQ+40/6lKG+AwPPmjMSmO9bCv//w9/GPgdey62hQZ/2hp7voQE4I035Pfx\nsPLNyhy/xTtzldh1SbGyyX/H3Ha8a4cJ9owZwG236Z9ZGbv++sBn4REtAf79sDrEz67iRdFqTKCy\nUv+/rk4PY9iwwOvdxBOWgFMR4JWUhcUq79Gjxnd9++r/y/zL7EVYzb9WWQILFgC7dvn/rnIHyRpT\nWSMt2/RKNeuDFTq+sLJCJ9tSQDVFl/eLswrDp5sVbJYPsl7Sddfp///qV8DkyYFxsM+sotvdGEy2\n8ZgdEeDdZXxcfDlatcq47uuvjQPqVT5ZcQogACQlGd+xMsA3RixPWTpY3q5Y4d+IisjGRVRjWCp3\n0JgxwNNP659Z4yPrnfKw9/z73xv76LC8+cEPArcHYc/3z38Cmzbpn1neqFxLLE/5NSdsIzXV1HDe\nGpGdTieO3ZSUGKvY+/cH/vxn/zj48sQ+82sd2ElirPzxedy+vb7lNL/OguWf2ZgALwLsnIkWNTBs\n1+/FXi6vpCyT2Mv429+ANWv0l3T77YHhM78v673wvVB+8Eb8TkwDoPfqMjLk7iD+O5UlwM/MYbAC\nLRuk5YmL08Nkvke+4LLn2rvX+I756sWCzu9ayvfAWF7xhZYtaGEVmReNTp30554yJXBBoMy6GjhQ\nD0c2d19W4WUnm7FGg3fDsHvZe+TNcjMRuOEG43OPHkC3bv7hyja0k515wKdDzKO77jJOLeN7yny6\n+/SBEr5RUIkAX65VM6j4ze9kiO/xiiuMvOHHBAYN8m/c+U0KGQMH+sfJw8qwrFP085/r+Sazytiz\naZqejvvvB4YP17/r0UMvW7/5TeD40+DBgdvXAMZ74d1H7Jxq/vnq683HBFq10i0Jvm7wloCZCEyb\npo/DVFbqz1NT0wIGhhmyXm52tv4/3yjJRID13tjLuPlmfVEG/2L5Asl6YtOm6acm8b1EmQioLAH2\nkvnrZb1ameuHfcfCuPtuwzfORIAXCLMdLkeONBoePh/ZM/M9U7FHxcJfs0avKIB/frOCyxrRb74B\nnnxS/8zygcVdWam7f0RYXDt2+Kcb0N+jz2fk2ahR+vvjr+E/8yLAxh3Ye+crnCgC/Dvh8+j8ed0F\nM2dOYLpFvy7f+DJXkUx0c3ONe1gjw9w1v/qVsfiH3Wt3nyhZ4y4TAfa++TKvmnrKeqB33qn/s4pf\nNSmDlYm9e3XBE1EtzmMiIJuhlZoK3HeffDsF/qzntm2B+fONMNau1cvlrFlGR4dPv2zMprZWfy5+\nknfAnKIAABH7SURBVADb0I0XL1EE+PIhToFnaQPUInDttXq71LatLganTjVjS0Dck+PSS43P7KFZ\n4ZTNYWeZuHy5ceSe7Jg8QHfZPPcc8Ne/6r5JtjNpq1Z6T55VkP/+b8M85HvgKkuAFTa+kqmmxPEN\nLHtO9t3zz+sLSQCjMrFnb9PGfObK+vX+piYjJUVPKws/ORm4/HL9M2s8WPovvtho2J54AnjzTSNe\nTTN6fldcYTwfC5eJdXKyvMfJ4uLP4WXvlok5S/d77wH33OOfB6++CvziF/pnVk7WrNHdN/y9LK8S\nEowZUSxfFi0yDogXLYGPPtIHhEXYs7C5/ioReOEFQxxHjDDElj0Dm7XSqlXgjB7VlGVZeviylp4O\n/PrXwOLF/tdqGvw2OrQjAs8+C7z8svl1LF1spWynToa7lT0DE+nUVH1sRCyzqnU1LAzZOBuz2p99\nVi8PAJCfr///f/8HvP++Xv6YpcHK1cUXG2kwa/Bl39XVGRbv9dcbZYvvfLZu7S8C/Ewg9izp6UbH\nLjPTuM9sTICFMXw48Mor/mGFsluuFVERAabosvnw7dsDEyYYPUJDBIqbPrP7xo83KrzZCVYzZui9\noh//GJg0SS8UvXsbBYZVggcfNMYVeBEwswQuuEA++Or/sooByDdiYy/3kksC/ZXMx896lIcOGQLB\nIw4ayvziM2bovszduw3fLLtu5kyj9zdxIrBiRTEuvxz4z//Uv2PPJ/ZWDx82Bs5eeME4VEUGq/i9\neukVvHPnwBkpMuuJ5fPkyfo9hw4BP/qR/l1+vlFJv/qqGIAhEEeOAH//u75Yj4lcTo7hIuCfRTUY\nyvJv7Fg9bva+EhP1Hv2YMcBPf6qX1V/+Uj4tljU848fr4aSlAcXFxTh0SG5hAOYiICtr7dsDjz9u\nnF08cqTxPvnrVOsP7FEMn0/vJDHR37dPH8fo1g3IytK/43vqcXHAz37mH8pPfxoYMsvn7t31PBTL\nwoABhvWUlwf85Cf6Z+ZvHzgQGDpU33nzn//Uv2Nlgkfm+snJ8W97eJhAvPWW/qxff62PfTDatNHD\nGjxYzwNeBNi7io8Hpk/XP//v/+r/m40JVFUVN3WsRo3SzzIAjPyxGvwPBddFYPXq1ejduzfS0tLw\nzDPPqCNvjL13b6Nnl5ioZzwTAcOfW9w0KHnttYH7fdg9xhDQD5bu1Uv/3KuX0Vvo2lW3LviCyAr4\nkCF6QWWNE++a4HvA/idHFQMwBjRZBeLDBfwtoVatjEp97736UvPERH+3DqAPZg0dqn9WrRydMQN4\n7TW9UWCFjMV9221G78/nA0pLi5vuX71aF01AN8WXLTPC7tTJMJETEsytMMB4x6NH6+63Dz4wjlZk\njbBsiqHYc7v0Unk8u3fraZ4/Xxe59u3193fZZf7mu2wmmh1XTHy8Hje79uRJvUFftw646Sa9rPLP\nwsPKys036/kJ6CLAwlu50rzRX7PG/2/WqPNljYXPGvniYqNzw9xlmzbp0wwZmzcbnz/4QHensLSZ\no4vAe+8ZK2MTE/XG7ttvDUtR7AzwB+8MHw7ccktgyKx89Oihu26YBbNxoy4qO3fKZ2GJg8uJiUbe\nVFQUB8QjW3V81VX+A9Dl5fqAMWDMSLrgAr3e9Oihu2zXrwf69dMbap9Pz+dvv/UXAVmHgJU73h1U\nWqqPRdXXA0eO+IsAg4mAbM2BW7jqcaqvr8fdd9+Nd999F8nJyRg8eDAKCgrQx2S0izXw584ZA3Os\nQLNGnl2Tman3LJ58Uq9A8+cb4QwYoPcMBw92nubnnzd82T6f3mtbvlz/+6abdFdESYle2RMT9VkE\nYoVnDfS5c4EzdGbP1gtbQYH+26236vGYNUBnz+ovfutWPVw2h1nsIb3/vlGgWYHlZyrxKxgZbdvq\nwnH11cosAaA3dIzU1MC51BMnqs9RZXTporv/WAWVnceQn2+4GRjXXafvrc7DD/AyTp0y8l3c9VI2\nxfbyy/WG7P335YPyIqyn3qmTujc2dCgwbpzx9x/+oJeXO+80f9cFBYHfsYYgPx947DF94sGiRUaP\nlff1s3ecmBi4en34cCNfmMh+/rnR+QGMcsBPDHjgAcMi5q+T+fhF5s41zlIG/EXgv/7L+Nytm143\nvvpKf6cjRxq97NzcwHokcu6cPoOmtNQ6TYwf/UgXlU8+MaZgivDNlOys5/bt9XTu3KnX4YwMo9d/\n/fW6CF96qT6QbQYTgePHDXErKdEHolk70revXt7Gj7e/hiokNBfZtm2bNnbs2Ka/582bp82bN8/v\nGgCa7iTQtMmT9f9//3v9t759NW3mTP3zyZP6bz/7mf7/7Nmz3Uyqkpdf1rSEBPvXHzmiaZ9/bvy9\nbZumffutpt1332xX0wVo2k03aVq3bv7fnz6taTt2aE35unmzptXVmYfT0KCnUSSSeVxaqqdbxrZt\nehpFxHTHxWna+PGzTeM4cEDTvvzS+BvQtFde0T9nZmraww+r0who2scf65+rqzXt66/V18vYvt3/\nXVjl8XffadqePYHfs/d7+LCmffGFpm3ZIs8jGfX1+r0nTthPN0+w5eJ//scokwxAry+apmn79mla\nVVVwaVIxc+Zs7Ysv5L/99rea1rWrdRi//a2mdemivqZXL03717/U13zwgf/zNzRoms9n5EtGhqZN\nnKhp8fGz/d7nzTdr2oMP+oflcnPdhK8xcFd46623sGbNGrzc6GN4/fXXsX37djz//PNN1/icrsMn\nCIIgAAAuNtdNuOoOstPAh+MhCIIgiOBw1eOUnJyMioqKpr8rKiqQIpvzRRAEQXgCV0Vg0KBB2LNn\nD/bt24eamhosXboUBbLRL4IgCMITuOoOio+PxwsvvICxY8eivr4ed9xxh+nMIIIgCCL6uD4Bady4\ncRgyZAi+/PJLPPLII6irq8Nll12GG/jNWRxSUVGBUaNGITMzE3379sWCBQuafjt69Cjy8vKQnp6O\n/Px8HG+crHz06FGMGjUK7du3x4wZM/zC27lzJ7KyspCWloZf/epX+M1vfoO+ffuif//+yMnJQQmb\nLBwC69atw6BBg9CvXz8MGjQIGzZsMI2fsWnTJgwYMAAJCQlYxk/MB1BUVIT09HSkp6cjLi4Ok9nO\nbIAn8/jRRx/FFVdcgfaNE5xjIY+vvfZadOzYETfccIPn8/js2bMYN24c+vTpg759++KRRx7xfB6X\nlZVh2LBhTWn0eh4DepnIzs5GZmYm7rjjDvz617/2dB5/8803GDhwIHJycpCZmYnnnnvOOgFuTzdK\nTEzUcnJytLNnz2qapmlvv/22lp2drd1www22w6itrfX7u7q6WistLdU0TdNOnjyppaena5999pmm\naZo2c+ZM7ZlnntE0TdMKCwu1hx56SNM0TTt9+rS2ZcsW7cUXX9Tuvvtuv/AGDx6sbd++XdM0TRs6\ndKjWp08fraamRtM0TTty5Ii2f/9+p48dQGlpqVZdXa1pmqZ9+umnWnJysjT+6667TnvnnXc0TdO0\nffv2aR9//LE2ZcoU7a233mq6/siRI9qVV16pHTt2TDt27Jjm8/m0fv36eTqPt2/frlVXV2uJiYna\ntm3btO9973uezmNN07T169dr//jHP7Trr7/e8+X4zJkzWnFxsaZpmlZTU6P179/f8+V49+7d2peN\nc3b379+v+Xw+rX///p7NYxYGIzc3V+vZs6en87impqYpfadOndK6d++uVVRUKOMPy1KEH/7wh/hn\n4xruxYsXY9KkSU2zgkpKSjBs2DAMGDAA11xzDXY3Ltn7y1/+goKCAowePRp5eXl+4XXp0gXZjctt\nExMT0adPH1Q17re6atUqTJ06FQAwdepUrFixAgDQrl07XHPNNbhAWHVSXV2NkydPYkjj0t5hw4bh\nzJkzSGhc0XPJJZega+Py4507dyI3NxeDBg3CtddeiwONq5dyc3Nx7733IicnB1lZWfhQ3EcXQHZ2\nNro07laXkZGBs2fPora2NiD+KVOmNKW5e/fuyMrKQpywQmTNmjXIz89Hhw4d0KFDB8THx+PKK6/0\nbB4DwJAhQ5qe/8CBA7j00ks9nccA8IMf/ACJ3B4LXi7Hbdu2xcjGPVMSEhKQkpKC1q1bezqP09LS\ncFXjCreuXbvC5/Phmmuu8WweszAAoLa2FqdOnUKnTp08nccJCQlN6Tt79iwSEhLQTrV5FMK0d9At\nt9yCJUuW4Pz58/jkk09wNbdEtU+fPti8eTM++ugjzJ07F7NmzWr6rbS0FMuWLfMzh0T27duH0tLS\npjAPHjyIpMaldklJSTgoLD0Vp61WVVX5zVgaO3Ysjh07hl69euGXv/wlNjVusFNbW4sZM2Zg2bJl\n2LFjB2677TY8+uijTWGePXsWpaWlWLhwIW5ne1absGzZMgwcOBAJCQkB8ScnJzcVUjP279/vd4/P\n58NVV13l2TwWyc/PR0VFhafzWIaXyzHP8ePHsWvXLtTW1sZMHjM3yl133eX5PB47diySkpJwxRVX\n4Pz5857P48rKSvTr1w9XXHEF7rvvPlwiW2rPEZaNSrOysrBv3z4sXrwY4/i19NAL7JQpU/Dll1/C\n5/Ohjts4hvV2zTh16hRuvvlmPPfcc349NobP53O8GK1t27YYMWIEZs6ciQ0bNuCWW25BYWEhBg4c\niF27dmHMmDEA9C0xLmfbcAKY1LixzogRI3DixAmcOHECF/HbhDaya9cuPPzww1jHtrF0ia5du2Lj\nxo0xkccXXnghdu7cic2bN8dUHsdCOa6rq8OkSZNw33334e67746JPK6ursaUKVPQpk2bmMjjNWvW\n4Pz587jllltwzz334Morr/R0HqekpODjjz9GdXU1Ro4cifz8fPSUnfnaSNh2qy4oKMCDDz6IjRs3\n4hC3Ecfjjz+O0aNHY/ny5fjmm2+Qy3ZLA5RmS21tLSZMmIBbb70V47kjmJKSknDgwAF06dIF1dXV\n6Cw7zYIjOTkZldzmIZWVlUhJScHIkSMxcuRIZGVloaioCAMHDkRmZia2bdtm63llBaqyshI33XQT\nXnvtNfRo3DRHFn+yZMcpPrzk5GQUFxc3/a1pGlJSUjybxzLi4uI8ncdm33k9j3/+85+jV69euKdx\nD26v5/GJEydw/fXX4+mnn25yzXg9jwHgggsuwIQJE7B9+3bcdtttns5jRteuXTFixAiUlZUpRSBs\n2xPdfvvtmDNnDjLZRtqNnDhxokklX2GbZlugaRruuOMOZGRk4N577/X7raCgAEWN+ywXFRX5vXR2\nL0/Xrl1x0UUXYfv27dA0DS+++CIGczvPlZaWIjU1Fb169cKhQ4fwQeOJ4LW1tSgvL2+6bmnj+YNb\ntmxBhw4dmmbBMI4fP45x48bhmWeewffY1ouS+F977TVpmvl0jx07FmvXrsXx48dx7Ngx1NXVYezY\nsZ7NY5Hdu3djz549TX97MY/NnsXLefzYY4/hxIkTePbZZ2Mij2tqanDjjTdiypQpuOmmm5q+92oe\nnz59GtWNB2HU1dVh8eLFfj18L+ZxVVUVzjbu7Hjs2DFs3boV/fr1s8w0V2nfvn3Ad8XFxU0j/u+/\n/76Wnp6u5eTkaI899pjWo0cPTdM07S9/+Ys2Y8YMaZibN29umkmQnZ2tZWdnN42SHzlyRBs9erSW\nlpam5eXlaceOHWu6r3v37toll1yiJSYmaikpKU2zBHbs2KH17dtXu+qqq7RbbrlFGzZsmJaRkaH1\n69dPmzBhgnakcYersrIy7fvf/77Wv39/LTMzU/vTn/6kaZo+S+Dee+/VcnJytKysLO3DDz8MSPOT\nTz6pXXjhhU3pzc7O1g4dOhQQP//MJSUlWkpKinbhhRdqnTp10vr27dv025///GetZ8+eWs+ePbU2\nbdp4Po9nzpyppaSkaK1atdI6d+6sdevWzfN5PHz4cO2yyy7T2rZtq/l8Pm3t2rWezeOKigrN5/Np\nGRkZWnZ2tpaenq717NnT03n82muvaQkJCU3hxMXFaf8SdmDzUh4fPHhQGzx4sNavXz8tKytLmzx5\nsufbirVr12r9+vVrev6ioiJpPvG4uoFcS2HUqFGYP38+BvAbnROuQnkcfiiPw08s5HFUThYjCIIg\nvAFZAgRBEC0YsgQIgiBaMCQCBEEQLRgSAYIgiBYMiQBBEEQLhkSAIAiiBUMiQBAE0YL5f9zSTXXc\nLswBAAAAAElFTkSuQmCC\n", + "text": [ + "" + ] + } + ], + "prompt_number": 228 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "graffiti_daily_count.sort(key=itemgetter(1), reverse=True)\n", + "graffiti_daily_count[0:10]" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 229, + "text": [ + "[[datetime.date(2012, 4, 16), 335],\n", + " [datetime.date(2010, 11, 4), 330],\n", + " [datetime.date(2010, 1, 21), 292],\n", + " [datetime.date(2013, 3, 14), 272],\n", + " [datetime.date(2010, 4, 28), 255],\n", + " [datetime.date(2010, 1, 25), 249],\n", + " [datetime.date(2011, 4, 7), 249],\n", + " [datetime.date(2012, 4, 18), 243],\n", + " [datetime.date(2012, 4, 20), 224],\n", + " [datetime.date(2012, 12, 7), 208]]" + ] + } + ], + "prompt_number": 229 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Search for those days: \n", + "Apr 16 2012: [Unusual Heat in NYC](http://newyork.cbslocal.com/2012/04/16/unusually-warm-summer-like-weather-brings-red-flag-brush-fire-warnings/) \n", + "Nov 04 2010: [New York Knicks 120 - Chicago Bulls 112](http://www.basketball-reference.com/boxscores/201011040CHI.html)\n", + "\n", + "And we can see there are less graffitis found during winters except Jan 2010, which is the begin point of the dataset of 311 Request." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Lower the resolution from daily to monthly:" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# Graffiti in 2013 w/ coordinates\n", + "formatted_graffitis_2013 = []\n", + "for record in formatted_graffitis:\n", + " if record[1].year == 2013 and nx.pnpoly(record[2].latitude, record[2].longitude, lower_manhattan) == 1:\n", + " formatted_graffitis_2013.append(record)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 230 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# Graffiti in months from 2010 to now at Lower Manhattan\n", + "formatted_graffitis_in_month_dict = {}\n", + "for record in formatted_graffitis:\n", + " if nx.pnpoly(record[2].latitude, record[2].longitude, lower_manhattan) == 1:\n", + " key = str(record[1].year) + str(record[1].month).zfill(2)\n", + " if not key in formatted_graffitis_in_month_dict:\n", + " l = []\n", + " formatted_graffitis_in_month_dict[key] = l\n", + " formatted_graffitis_in_month_dict[key].append(record)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 231 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "graffiti_month_count = []\n", + "for key, value in formatted_graffitis_in_month_dict.iteritems():\n", + " graffiti_month_count.append([key, len(value)])" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 232 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "graffiti_month_count.sort()" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 233 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "x = [datetime.strptime(g[0], \"%Y%m\") for g in graffiti_month_count]\n", + "y = [g[1] for g in graffiti_month_count]\n", + "\n", + "pyplot.bar(x, y)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 234, + "text": [ + "" + ] + }, + { + "metadata": {}, + "output_type": "display_data", + "png": "iVBORw0KGgoAAAANSUhEUgAAAYIAAAD/CAYAAAD8MdEiAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAHs1JREFUeJzt3XtwVOX9x/H3xuwoCIgIWXAXWSWJYUNiwiVGFFmETaxI\nJooTGizsqK1t8YbTSrXaFvxNSZjeRDuMfxR1h84QmDJNYqsY7bjeJaiorWGa4ARNNpsdJIlcNVye\n3x8OW8Jlw2WXbHI+rxlmkj3nPM/3PJzsZ8+zZ/fYjDEGERGxrJS+LkBERPqWgkBExOIUBCIiFqcg\nEBGxOAWBiIjFKQhERCyu1yCoqKggOzubnJwcFixYwLfffktHRwc+n4/MzEyKioro6urqsX5GRgZZ\nWVnU1dUltHgRETl3tlifI9ixYwc33XQT27Zt48ILL2T+/PnccsstfPbZZ4wcOZKlS5eycuVKOjs7\nqayspKGhgQULFrBlyxZCoRCzZ8+msbGRlBSdeIiIJKuYz9DDhg3Dbrezf/9+Dh06xP79+7n88sup\nra3F7/cD4Pf7qa6uBqCmpoby8nLsdjtut5v09HTq6+sTvxciInLWUmMtHDFiBD/72c+44oorGDRo\nEMXFxfh8PiKRCA6HAwCHw0EkEgGgra2NwsLC6PYul4tQKNSjTZvNFu99EBGxhER9EUTMM4LPP/+c\np556ih07dtDW1sbevXv561//2mMdm80W88n9ZMuMMWf17ze/+c1Zb9tX//pbzf2t3v5Yc3+rtz/W\n3N/qPZ2aEylmEHzwwQdMmzaNyy67jNTUVG6//Xbee+89Ro8eTXt7OwDhcJi0tDQAnE4nLS0t0e1b\nW1txOp0JLF9ERM5VzCDIysri/fff58CBAxhjeO211/B4PMydO5dAIABAIBCgtLQUgJKSEqqqquju\n7qa5uZmmpiYKCgoSvxciInLWYr5HcM0117Bo0SKmTJlCSkoKkyZN4t5772XPnj2UlZWxZs0a3G43\nGzZsAMDj8VBWVobH4yE1NZXVq1fH9T0Br9cbt7bOl/5Wc3+rF/pfzf2tXuh/Nfe3eqFva455+WhC\nOrTZEj7fJSIy0CTyuVMX+IuIWJyCQETE4hQEIiIWpyAQEbE4BYGIiMUpCERELE5BICJicQoCERGL\nUxCIiFicgkBExOIUBCIiFqcgEBGxOAWBiIjFKQhERCxOQSAiYnEKAhERi1MQiIhYnIJARMTiFAQi\nIhYXMwj++9//kp+fH/13ySWX8PTTT9PR0YHP5yMzM5OioiK6urqi21RUVJCRkUFWVhZ1dXUJ3wER\nETk3p33z+iNHjuB0Oqmvr+eZZ55h5MiRLF26lJUrV9LZ2UllZSUNDQ0sWLCALVu2EAqFmD17No2N\njaSk/C9vdPN6EZEzlxQ3r3/ttddIT09n7Nix1NbW4vf7AfD7/VRXVwNQU1NDeXk5drsdt9tNeno6\n9fX1CSlcRETiI/V0V6yqqqK8vByASCSCw+EAwOFwEIlEAGhra6OwsDC6jcvlIhQKndDWsmXLoj97\nvV68Xu/Z1C4iMmAFg0GCweB56eu0gqC7u5sXX3yRlStXnrDMZrNhs9lOue3Jlh0bBCIicqLjXyQv\nX748YX2d1tTQyy+/zOTJkxk1ahTw3VlAe3s7AOFwmLS0NACcTictLS3R7VpbW3E6nfGuWURE4ui0\ngmDdunXRaSGAkpISAoEAAIFAgNLS0ujjVVVVdHd309zcTFNTEwUFBQkoW0RE4qXXq4b27dvHuHHj\naG5uZujQoQB0dHRQVlbGl19+idvtZsOGDQwfPhyAFStW8Nxzz5GamsqqVasoLi7u2aGuGhIROWOJ\nfO487ctH49ahgkBE5IwlxeWjIiIyMCkIREQsTkEgImJxCgIREYtTEIiIWJyCQETE4hQEIiIWpyAQ\nEbE4BYGIiMUpCERELE5BICJicQoCERGLUxCIiFicgkBExOIUBCIiFqcgEBGxOAWBiIjFKQhERCxO\nQSAiYnG9BkFXVxd33HEHEyZMwOPxsHnzZjo6OvD5fGRmZlJUVERXV1d0/YqKCjIyMsjKyqKuri6h\nxYuIyLnrNQgeeughbrnlFrZt28ann35KVlYWlZWV+Hw+GhsbmTVrFpWVlQA0NDSwfv16Ghoa2LRp\nE4sXL+bIkSMJ3wkRETl7qbEWfv3117z11lsEAoHvVk5N5ZJLLqG2tpY33ngDAL/fj9frpbKykpqa\nGsrLy7Hb7bjdbtLT06mvr6ewsLBHu8uWLYv+7PV68Xq98d0rEZF+LhgMEgwGz0tfMYOgubmZUaNG\ncdddd/HJJ58wefJknnrqKSKRCA6HAwCHw0EkEgGgra2tx5O+y+UiFAqd0O6xQSAiIic6/kXy8uXL\nE9ZXzKmhQ4cO8dFHH7F48WI++ugjLr744ug00FE2mw2bzXbKNmItExGRvhczCFwuFy6Xi6lTpwJw\nxx138NFHHzF69Gja29sBCIfDpKWlAeB0OmlpaYlu39raitPpTFTtIiISBzGDYPTo0YwdO5bGxkYA\nXnvtNbKzs5k7d270fYNAIEBpaSkAJSUlVFVV0d3dTXNzM01NTRQUFCR4F0RE5FzEfI8A4JlnnuHO\nO++ku7ub8ePH8/zzz3P48GHKyspYs2YNbrebDRs2AODxeCgrK8Pj8ZCamsrq1as1NSQikuRsxhhz\nXju02TjPXYqI9HuJfO7UJ4tFRCxOQSAiYnEKAhERi1MQiIhYnIJARMTiFAQiIhanIBARsTgFgYiI\nxSkIREQsTkEgImJxCgIREYtTEIiIWJyCQETE4hQEIiIWpyAQEbE4BYGIiMUpCERELE5BICJicb0G\ngdvtJjc3l/z8/OiN6Ds6OvD5fGRmZlJUVERXV1d0/YqKCjIyMsjKyqKuri5xlYuISFz0GgQ2m41g\nMMjWrVupr68HoLKyEp/PR2NjI7NmzaKyshKAhoYG1q9fT0NDA5s2bWLx4sUcOXIksXsgIiLn5LSm\nho6/YXJtbS1+vx8Av99PdXU1ADU1NZSXl2O323G73aSnp0fDQ0REklNqbyvYbDZmz57NBRdcwI9/\n/GN+9KMfEYlEcDgcADgcDiKRCABtbW0UFhZGt3W5XIRCoRPaXLZsWfRnr9eL1+s9x90QERlYgsEg\nwWDwvPTVaxC88847jBkzhp07d+Lz+cjKyuqx3GazYbPZTrn9yZYdGwQiInKi418kL1++PGF99To1\nNGbMGABGjRrFbbfdRn19PQ6Hg/b2dgDC4TBpaWkAOJ1OWlpaotu2trbidDoTUbeIiMRJzCDYv38/\ne/bsAWDfvn3U1dWRk5NDSUkJgUAAgEAgQGlpKQAlJSVUVVXR3d1Nc3MzTU1N0SuNREQkOcWcGopE\nItx2220AHDp0iDvvvJOioiKmTJlCWVkZa9aswe12s2HDBgA8Hg9lZWV4PB5SU1NZvXp1zGkjERHp\nezZz/CVBie7QZjvhKiQREYktkc+d+mSxiIjFKQhERCxOQSAiYnEKAhERi1MQiIhYnIJARMTiFAQi\nIhanIBARsTgFgYiIxSkIREQsTkEgImJxCgIREYtTEIiIWJyCQETE4hQEIiIWpyAQEbE4BYGIiMUl\nXRDo1pYiIudX0gWBiIicX6cVBIcPHyY/P5+5c+cC0NHRgc/nIzMzk6KiIrq6uqLrVlRUkJGRQVZW\nFnV1dYmp+iR0JiEicnZOKwhWrVqFx+OJPtlWVlbi8/lobGxk1qxZVFZWAtDQ0MD69etpaGhg06ZN\nLF68mCNHjiSuehEROWe9BkFraysvvfQSP/zhDzHGAFBbW4vf7wfA7/dTXV0NQE1NDeXl5djtdtxu\nN+np6dTX1yewfBEROVepva3w8MMP87vf/Y7du3dHH4tEIjgcDgAcDgeRSASAtrY2CgsLo+u5XC5C\nodAJbS5btiz6s9frxev1nm39IiIDUjAYJBgMnpe+YgbBP/7xD9LS0sjPzz9lQTabLeb8/MmWHRsE\nIiJyouNfJC9fvjxhfcUMgnfffZfa2lpeeuklvvnmG3bv3s3ChQtxOBy0t7czevRowuEwaWlpADid\nTlpaWqLbt7a24nQ6E1Z8f2Cz2aJTaiIiySjmewQrVqygpaWF5uZmqqqquOmmm1i7di0lJSUEAgEA\nAoEApaWlAJSUlFBVVUV3dzfNzc00NTVRUFCQ+L0QEZGz1ut7BMc6Os3z6KOPUlZWxpo1a3C73WzY\nsAEAj8dDWVkZHo+H1NRUVq9ercs6RUSSnM2c53mL3qZKznYqJVmnYJK1LhHpXxL5XKJPFouIWJyC\nQETE4hQEIiIWpyAQEbE4BYGIiMUpCERELE5BICJicQoCERGLUxCIiFicgkBExOIUBCIiFqcgEBGx\nOAWBiIjFKQhERCxOQSAiYnEKAhERi1MQiIhYnIJARMTiFAQiIhYXMwi++eYbrr32WvLy8vB4PDz2\n2GMAdHR04PP5yMzMpKioiK6urug2FRUVZGRkkJWVRV1dXWKrFxGRc9brzev379/P4MGDOXToEDfc\ncAO///3vqa2tZeTIkSxdupSVK1fS2dlJZWUlDQ0NLFiwgC1bthAKhZg9ezaNjY2kpPwvb3TzehGR\nM9enN68fPHgwAN3d3Rw+fJhLL72U2tpa/H4/AH6/n+rqagBqamooLy/HbrfjdrtJT0+nvr4+IYWL\niEh8pPa2wpEjR5g0aRKff/45P/3pT8nOziYSieBwOABwOBxEIhEA2traKCwsjG7rcrkIhUIntLls\n2bLoz16vF6/Xe467ISIysASDQYLB4Hnpq9cgSElJ4eOPP+brr7+muLiY119/vcdym82GzWY75fYn\nW3ZsEIiIyImOf5G8fPnyhPV12lcNXXLJJcyZM4cPP/wQh8NBe3s7AOFwmLS0NACcTictLS3RbVpb\nW3E6nXEuWURE4ilmEHz11VfRK4IOHDjAq6++Sn5+PiUlJQQCAQACgQClpaUAlJSUUFVVRXd3N83N\nzTQ1NVFQUJDgXRARkXMRc2ooHA7j9/s5cuQIR44cYeHChcyaNYv8/HzKyspYs2YNbrebDRs2AODx\neCgrK8Pj8ZCamsrq1atjThuJiEjf6/Xy0bh3qMtHRUTOWJ9ePioiIgObJYJg2LARDBs2oq/LEBFJ\nSpaYGjr6PkVfTNFoakhE4kFTQyKS1HRRSP+mIBARsTgFgYiIxSkIREQsTkEgImJxCgIREYtTEIiI\nWJyCQETE4hQEIiIWpyAQEbE4BYGIiMUpCERELE5BICJicQoCERGLUxCIiFicgkBEBhzdjOrMxAyC\nlpYWZs6cSXZ2NhMnTuTpp58GoKOjA5/PR2ZmJkVFRXR1dUW3qaioICMjg6ysLOrq6hJbvYjISezZ\n08mePZ19XUa/EfMOZe3t7bS3t5OXl8fevXuZPHky1dXVPP/884wcOZKlS5eycuVKOjs7qayspKGh\ngQULFrBlyxZCoRCzZ8+msbGRlJT/5Y3uUCYy8CTbcd6Xf/OJ0md3KBs9ejR5eXkADBkyhAkTJhAK\nhaitrcXv9wPg9/uprq4GoKamhvLycux2O263m/T0dOrr6xNSuIiIxEfq6a64Y8cOtm7dyrXXXksk\nEsHhcADgcDiIRCIAtLW1UVhYGN3G5XIRCoVOaGvZsmXRn71eL16v9yzLFxEZmILBIMFg8Lz0dVpB\nsHfvXubNm8eqVasYOnRoj2U2my3m/UpPtuzYIBAROVvJNiUVT8e/SF6+fHnC+ur1qqGDBw8yb948\nFi5cSGlpKfDdWUB7ezsA4XCYtLQ0AJxOJy0tLdFtW1tbcTqdiahbRETiJGYQGGO455578Hg8LFmy\nJPp4SUkJgUAAgEAgEA2IkpISqqqq6O7uprm5maamJgoKChJYvoiInKuYVw29/fbb3HjjjeTm5kan\neCoqKigoKKCsrIwvv/wSt9vNhg0bGD58OAArVqzgueeeIzU1lVWrVlFcXNyzQ101JDLg9NVxfqp+\nddXQGbYdKwgS0qGC4LSWifQnCoLE67PLR0VE4OQXfcjAoSAQEbE4BYGIiMUpCERELE5BICJicQoC\nERGLUxCIiFicgkBExOIUBCIiFqcgEBGxOAWBiIjFKQhERCxOQSCnbdiwEQwbNqKvyxCRODvtW1WK\n7NnT2dcliEgC6IzgHOlbGa1L//cyUCgIREQsTkEgImJxCgKR80xTSpJsFAQiAiigrCxmENx99904\nHA5ycnKij3V0dODz+cjMzKSoqIiurq7osoqKCjIyMsjKyqKuri5xVYuISNzEDIK77rqLTZs29Xis\nsrISn89HY2Mjs2bNorKyEoCGhgbWr19PQ0MDmzZtYvHixRw5ciRxlYvIgKezlPMjZhBMnz6dSy+9\ntMdjtbW1+P1+APx+P9XV1QDU1NRQXl6O3W7H7XaTnp5OfX19gsoWkZPRE6ecjTP+QFkkEsHhcADg\ncDiIRCIAtLW1UVhYGF3P5XIRCoVO2sayZcuiP3u9Xrxe75mWITJg2Ww2jDH9pl1JjGAwSDAYPC99\nndMni202W8xXIKdadmwQiMjAFiuAjn5lye7dHeezpISJZ9ge/yJ5+fLlcWn3ZM74qiGHw0F7ezsA\n4XCYtLQ0AJxOJy0tLdH1WltbcTqdcSpTRAaiPXs6++SrSzSF1tMZB0FJSQmBQACAQCBAaWlp9PGq\nqiq6u7tpbm6mqamJgoKC+FYrcaE/ApFTs+KXK8acGiovL+eNN97gq6++YuzYsTz55JM8+uijlJWV\nsWbNGtxuNxs2bADA4/FQVlaGx+MhNTWV1atX6wlH4qK30+1zOR2Pta3m1K3Jil+uaDPn+UhP1B91\nb3/QwFm129sc5rnsT1/NnZ7LGMPZjeO5SNYgSMSxei7t9rZtoo7Vc9m2t2PqbPs9l3bP5ThP5IuH\nRLatr6HuRV+9OrDiq5KBRGcT0p/oKyYYeHPmVpzjFJGzpzOCAUhnEwOXzjQkEXRGIHEz0M6sRKxC\nQSA96MlcpG/05ZSupoZERJJAX07p9qszAr1a/Z+BNhYDbX9E+pN+FQTSf+mJXiR5KQhERCxOQSAi\ncgYG4tmtgkBExOIUBCIi50mynk0oCERELE5BICJicQoCERGLUxDIgJasc7IiyURBICJicQoCERGL\nUxCIiFhcQoJg06ZNZGVlkZGRwcqVKxPRhYiIxEncg+Dw4cPcf//9bNq0iYaGBtatW8e2bdvi3Y2I\niMRJ3IOgvr6e9PR03G43drud73//+9TU1MS7GxERiZO435gmFAoxduzY6O8ul4vNmzf3WKe3S/pi\nLT/bZdp24LbbH7dNxpqstm0ytns6yxMh7kHQ207oxtsiIskl7lNDTqeTlpaW6O8tLS24XK54dyMi\nInES9yCYMmUKTU1N7Nixg+7ubtavX09JSUm8uxERkTiJ+9RQamoqf/7znykuLubw4cPcc889TJgw\nId7diIhInCTkcwRz5syhoKCA7du389hjj3Ho0CFGjRrF3Llzz7rNlpYWZs6cSXZ2NhMnTuTpp5+O\nLuvo6MDn85GZmUlRURFdXV3Rx2fOnMnQoUN54IEHerT34YcfkpOTQ0ZGBg899BC//e1vmThxItdc\ncw35+fnU19efda1Hvfrqq0yZMoXc3FymTJnC66+/fsr+j3rzzTeZNGkSdrudjRs39mgvEAiQmZlJ\nZmYmKSkpLFy4MLosGcf48ccf54orrmDo0KEA/WKMb775Zi699FLmzp2b9GN84MAB5syZw4QJE5g4\ncSKPPfYYkPzj/PHHHzNt2rRojck+zvDdcZGXl0d2djb33HMPTz75ZFKP8RdffMHkyZPJz88nOzub\nVatWxe7cJMCQIUNMfn6+OXDggDHGmJdeesnk5eWZuXPnnnYbBw8e7PF7OBw2W7duNcYYs2fPHpOZ\nmWm2bdtmjDHmkUceMStXrjTGGFNZWWl+8YtfGGOM2bdvn3n77bfNs88+a+6///4e7U2dOtVs3rzZ\nGGNMYWGhmTBhgunu7jbGGLNr1y7T1tZ2prt9gq1bt5pwOGyMMeY///mPcTqdJ+3/e9/7nnn55ZeN\nMcbs2LHDfPrpp2bRokXmb3/7W3T9Xbt2mauuusp0dnaazs5OY7PZTG5ublKP8ebNm004HDZDhgwx\n7777rrnuuuuSeoyNMeZf//qXefHFF82tt96a9Mfx/v37TTAYNMYY093dbaZPn27++Mc/Jv04NzY2\nmu3btxtjjGlrazM2m81cc801STvOR9s4yuv1mvT09KQe4+7u7mh9e/fuNePGjTMtLS2n7DthXzFx\nyy238M9//hOAdevWUV5eHr1iqL6+nmnTpjFp0iSuv/56GhsbAXjhhRcoKSlh1qxZ+Hy+Hu2NHj2a\nvLw8AIYMGcKECRMIhUIA1NbW4vf7AfD7/VRXVwMwePBgrr/+ei688MIebYXDYfbs2UNBQQEA06ZN\nY//+/djtdgBGjBjBmDFjgO+S2Ov1MmXKFG6++Wba29sB8Hq9LFmyhPz8fHJyctiyZcsJY5CXl8fo\n0aMB8Hg8HDhwgIMHD57Q/6JFi6I1jxs3jpycHFJSev7XvPLKKxQVFTF8+HCGDx9OamoqV111VdKO\nMUBBQUF0/9vb2xk5cmRSjzHATTfdxJAhQ6K/J/NxPGjQIGbMmAGA3W5n0qRJbN++PenHOSMjg/Hj\nxwMwZswYbDYb119/fdKO89E2AA4ePMjevXu57LLLknqM7XZ7tL4DBw5gt9sZPHjwCX0elbAgmD9/\nPlVVVXz77bf8+9//5tprr40umzBhAm+99RYfffQRy5cv55e//GV02datW9m4cWOP06Lj7dixg61b\nt0bbjEQiOBwOABwOB5FIpMf6x1/SGgqFelzJVFxcTGdnJ1dffTX33Xcfb775JvDdf/oDDzzAxo0b\n+eCDD7jrrrt4/PHHo20eOHCArVu3snr1au6+++6Y47Fx40YmT56M3W4/oX+n0xk9SE+lra2txzY2\nm43x48cn7Rgfr6ioiJaWlqQe45NJ5uP4WF1dXbz44ovcd999/Wqcj06p/OQnP0n6cS4uLsbhcHDF\nFVfw7bffJv0Yt7a2kpubyxVXXMHDDz/MiBEjTrlu3N8sPionJ4cdO3awbt065syZ02NZV1cXixYt\nYvv27dhsNg4dOhRddvRV76ns3buXO+64g1WrVvV45XaUzWY74w9kDBo0iOnTp/PII4/w+uuvM3/+\nfCorK5k8eTKfffYZs2fPBr77+ozLL788ul15eTkA06dPZ/fu3ezevZthw4ad0P5nn33Go48+yquv\nvnpGdfVmzJgxvPHGG/1ijC+++GI+/PBD3nrrrX41xv3hOD506BDl5eU89NBDeDyefjPO4XCYRYsW\ncdFFF/WLcX7llVf49ttvmT9/Pg8++CBXXXVVUo+xy+Xi008/JRwOM2PGDIqKikhPTz/pugkLAoCS\nkhJ+/vOf88Ybb7Bz587o47/61a+YNWsWf//73/niiy/wer3RZbFOXw4ePMi8efP4wQ9+QGlpafRx\nh8NBe3s7o0ePJhwOk5aWFrMup9NJa2tr9PfW1lZcLhczZsxgxowZ5OTkEAgEmDx5MtnZ2bz77run\ntb8nO6BaW1u5/fbbWbt2LVdeeeUp+3c6nTHbczqdBIPB6O/GGFwuV9KO8cmkpKQk9Rif6rFkH+N7\n772Xq6++mgcffBDoH+O8e/dubr31VlasWBGdpkn2cQa48MILmTdvHps3b+auu+5K6jE+asyYMUyf\nPp2PP/74lEGQ0K+hvvvuu1m2bBnZ2dk9Ht+9e3c0KZ9//vnTassYwz333IPH42HJkiU9lpWUlBAI\nBIDvrqw59j/96LbHGjNmDMOGDWPz5s0YY3j22WeZOnVqdPnWrVtxu91cffXV7Ny5k/fffx/47sBq\naGiIrrd+/XoA3n77bYYPHx69Ouaorq4u5syZw8qVK7nuuutO2f/atWtPWvOxdRcXF1NXV0dXVxed\nnZ0cOnSI4uLipB3j4zU2NtLU1BT9PRnH+FT7ksxj/MQTT7B7927+9Kc/Af1jnLu7u7nttttYtGgR\nt99+e/TxZB3nffv2EQ6Hge/OvtatW9fjlX4yjnEoFOLAgQMAdHZ28s4775CbmxtzwOJu6NChJzwW\nDAajVwG89957JjMz0+Tn55snnnjCXHnllcYYY1544QXzwAMPnLTNt956K3p1QV5ensnLy4u+c75r\n1y4za9Ysk5GRYXw+n+ns7IxuN27cODNixAgzZMgQ43K5olcOfPDBB2bixIlm/PjxZv78+WbatGnG\n4/GY3NxcM2/ePLNr1y5jjDEff/yxufHGG80111xjsrOzzV/+8hdjzHdXDixZssTk5+ebnJwcs2XL\nlhNq/r//+z9z8cUXR+vNy8szO3fuPKH/Y/e5vr7euFwuc/HFF5vLLrvMTJw4MbrsueeeM+np6SY9\nPd1cdNFFST/GjzzyiHG5XOaCCy4waWlpZuzYsUk/xjfccIMZNWqUGTRokLHZbKauri5px7ilpcXY\nbDbj8Xiibf36179O+mN57dq1xm63R9tJSUkxn3zySdKOcyQSMVOnTjW5ubkmJyfHLFy4MOnHuK6u\nzuTm5kb3PxAInHScjrIZoy//ORszZ87kD3/4A5MmTerrUgYsjfH5oXFOvGQfY92hTETE4nRGICJi\ncTojEBGxOAWBiIjFKQhERCxOQSAiYnEKAhERi1MQiIhY3P8D6MMlQ9HHKyUAAAAASUVORK5CYII=\n", + "text": [ + "" + ] + } + ], + "prompt_number": 234 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Get the centroid of the most recent graffiti locations in Lower Manhattan (September 2013):" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# get in months\n", + "formatted_graffitis_2013_month_dict = {}\n", + "for i in range(1, 13):\n", + "\tl = []\n", + "\tfor record in formatted_graffitis_2013:\n", + "\t\tif record[1].month == i:\n", + "\t\t\tl.append(record)\n", + "\tformatted_graffitis_2013_month_dict[i] = l" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 235 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# Get centroid of graffitis in Lower Manhattan in 201309\n", + "points = []\n", + "for record in formatted_graffitis_2013_month_dict[9]:\n", + " points.append([record[2].latitude, record[2].longitude])\n", + " \n", + "# for record in formatted_graffitis_2013_month_dict[8]:\n", + "# points.append([record[2].latitude, record[2].longitude])\n", + "\n", + "# for record in formatted_graffitis_2013_month_dict[7]:\n", + "# points.append([record[2].latitude, record[2].longitude])\n", + "\n", + "x = [p[0] for p in points]\n", + "y = [p[1] for p in points]\n", + "centroid = Point((sum(x) / len(points), sum(y) / len(points)))\n", + "\n", + "print str(centroid.latitude) + \", \" + str(centroid.longitude)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "40.7212391265, -73.9946092568\n" + ] + } + ], + "prompt_number": 236 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "See it on [Google Maps](https://www.google.com/maps/preview#!q=40.7212391265%2C+-73.9946092568&data=!1m4!1m3!1d3764!2d-73.9946093!3d40.7212391!4m15!2m14!1m13!1s0x89c2598619746c85%3A0x3870c47ae6d74db8!3m8!1m3!1d12094!2d-73.9884189!3d40.7313029!3m2!1i1024!2i768!4f13.1!4m2!3d40.7212391!4d-73.9946093)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Noise" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# Get Noise Data\n", + "noises = []\n", + "for record in data:\n", + " if 'Noise' in record.split(',')[5]:\n", + " noises.append(record)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 237 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Complaint Types and Descriptors:" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# Get Complaint Type and Descriptor for noise\n", + "\n", + "complaint_type = set()\n", + "descriptor = set()\n", + "\n", + "for record in noises:\n", + " complaint_type.add(record.split(',')[5])\n", + " descriptor.add(record.split(',')[6])\n", + "\n", + "print complaint_type\n", + "print \"\"\n", + "print descriptor" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "set(['Noise', 'Noise - House of Worship', 'Noise - Helicopter', 'Noise - Vehicle', 'Collection Truck Noise', 'Noise - Street/Sidewalk', 'Noise - Park', 'Noise - Commercial', 'Noise Survey'])\n", + "\n", + "set(['Noise: Jack Hammering (NC2)', 'News Gathering', 'Passing By', 'Other', 'Noise: Vehicle (NR2)', 'Noise: Other Noise Sources (Use Comments) (NZZ)', 'Loud Television', 'NYPD', 'Noise: Loud Music/Daytime (Mark Date And Time) (NN1)', 'Loud Music/Party', 'Noise: Alarms (NR3)', 'Loud Talking', '\"Noise', 'Noise: Manufacturing Noise (NK1)', 'Banging/Pounding', 'People Created Noise', 'Noise: air condition/ventilation equipment (NV1)', 'Engine Idling', '\"Noise: Air Condition/Ventilation Equip', 'Noise: lawn care equipment (NCL)', 'Noise: Private Carting Noise (NQ1)', 'Hovering', 'Noise: Construction Before/After Hours (NM1)', 'Car/Truck Music', '\"Noise: Boat(Engine', 'Noise: Loud Music/Nighttime(Mark Date And Time) (NP1)', '21 Collection Truck Noise', 'Horn Honking Sign Requested (NR9)', 'Car/Truck Horn', 'Flying Too Low', 'Noise: Construction Equipment (NC1)'])\n" + ] + } + ], + "prompt_number": 238 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# Get id, datetime, point(lat, lng), complaint_type, descriptor\n", + "formatted_noises = []\n", + "for record in noises:\n", + "\tarray = record.split(',')\n", + "\tformatted_noises.append([array[0], \n", + "\tdatetime.strptime(array[1], \"%m/%d/%Y %I:%M:%S %p\"), \n", + "\t\tPoint((array[49], array[50])),\n", + " \tarray[5],\n", + " \tarray[6]])" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 239 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# Different types of Noise in months from 2010 to now at Lower Manhattan\n", + "\n", + "formatted_noises_in_month_dict = {}\n", + "for record in formatted_noises:\n", + " if nx.pnpoly(record[2].latitude, record[2].longitude, lower_manhattan) == 1:\n", + " timekey = str(record[1].year) + str(record[1].month).zfill(2)\n", + " if not timekey in formatted_noises_in_month_dict:\n", + " type_dict = {}\n", + " formatted_noises_in_month_dict[timekey] = type_dict\n", + " \n", + " typekey = record[3]\n", + " if not typekey in formatted_noises_in_month_dict[timekey]:\n", + " l = []\n", + " formatted_noises_in_month_dict[timekey][typekey] = l\n", + " \n", + " \n", + " \n", + " formatted_noises_in_month_dict[timekey][typekey].append(record)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 240 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Try to see the amount of noises reported in this area through out time from 2010 to now." + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "total_yearmonth_count_dict = {}\n", + "\n", + "for timekey, value in formatted_noises_in_month_dict.iteritems():\n", + " count = 0\n", + " for typekey, v in value.iteritems():\n", + " count += len(v)\n", + " total_yearmonth_count_dict[timekey] = count" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 241 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "total_yearmonth_count = []\n", + "\n", + "for key, value in total_yearmonth_count_dict.iteritems():\n", + " total_yearmonth_count.append([key, value])\n", + "\n", + "total_yearmonth_count.sort()" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 242 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "x = [datetime.strptime(g[0], \"%Y%m\") for g in total_yearmonth_count]\n", + "y = [g[1] for g in total_yearmonth_count]\n", + "\n", + "pyplot.plot(x, y)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 243, + "text": [ + "[]" + ] + }, + { + "metadata": {}, + "output_type": "display_data", + "png": "iVBORw0KGgoAAAANSUhEUgAAAY8AAAD/CAYAAAAJz1qSAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJztnXl4VOX1x78TEgREkDXBmUAo2RwIqGBEFI3EsFlSihob\nbEGQqtBa3BBLbQUtJK1L/bnE+lBExEcCtUpQIQSQgAuEJSpL0AwSIBtRCYEIgWzv74/DnUySmcnc\nO3ebcD7P4yO5c+fOOzc393vP95z3vBYhhADDMAzDyCDI6AEwDMMwgQeLB8MwDCMbFg+GYRhGNiwe\nDMMwjGxYPBiGYRjZsHgwDMMwsvEqHjNnzkRoaCji4uKabX/11Vdx9dVXY8iQIZg/f75ze1paGqKi\nohAbG4ucnBzn9r179yIuLg5RUVGYO3euyl+BYRiG0Ruv4jFjxgxkZ2c327Z161asW7cO+/btw4ED\nB/DEE08AAAoKCrB69WoUFBQgOzsbc+bMgTSFZPbs2Vi2bBkcDgccDkerYzIMwzCBhVfxGD16NHr0\n6NFs2xtvvIE///nPCAkJAQD06dMHAJCVlYXU1FSEhIQgIiICkZGRyMvLQ3l5OaqrqxEfHw8AmDZt\nGtauXavFd2EYhmF0IljuGxwOB7Zv344FCxagU6dOeOGFFzBixAiUlZVh5MiRzv1sNhtKS0sREhIC\nm83m3G61WlFaWtrquBaLReFXYBiGubQxolGI7IR5fX09Tp06hZ07d+L5559HSkqKaoMRQqj+3zPP\nPKPJcbX8L9DGHGjj5THzeNvTmI1CtnjYbDZMmTIFAHD99dcjKCgIP/30E6xWK4qLi537lZSUwGaz\nwWq1oqSkpNl2q9WqwtAZhmEYo5AtHpMnT8ann34KACgsLERtbS169+6N5ORkZGZmora2FkVFRXA4\nHIiPj0dYWBi6deuGvLw8CCGwcuVKTJ48WfUvwjAMw+iH15xHamoqtm3bhpMnTyI8PBzPPvssZs6c\niZkzZyIuLg4dO3bEO++8AwCw2+1ISUmB3W5HcHAwMjIynHmMjIwM3HfffaipqcHEiRMxfvx47b/Z\nRRISEnT7LLUItDEH2ngBHrMeBNp4gcAcs1FYhJGmmQsWi8VQ/45hGCYQMereyTPMGYZhGNmweDAM\nwzCyYfFgGIZhZMPiwTAMw8iGxYNhGIaRDYsHwzAMIxsWD4ZhGEY2LB4MwzCMbFg8GIZhGNmweDAM\nwzCyYfFgGIZhZMPiwTAMw8iGxYNhGIaRDYsHwzAMIxsWD4ZhGEY2LB4MwzCMbFg8GIZhGNmweDAM\nwzCyYfFgGIZhZMPiwTAMw8iGxYNhGIaRDYsHwzAMIxsWD4ZhGEY2LB4MwzCMbFg8GIZhGNmweDAM\nwzCyYfFgGIZhZMPiwTAMw8jGq3jMnDkToaGhiIuLa/Xaiy++iKCgIFRWVjq3paWlISoqCrGxscjJ\nyXFu37t3L+Li4hAVFYW5c+eqOHyGYRjGCLyKx4wZM5Cdnd1qe3FxMTZt2oQBAwY4txUUFGD16tUo\nKChAdnY25syZAyEEAGD27NlYtmwZHA4HHA6H22MyDMMwgYNX8Rg9ejR69OjRavtjjz2Gf/7zn822\nZWVlITU1FSEhIYiIiEBkZCTy8vJQXl6O6upqxMfHAwCmTZuGtWvXqvgVGIZh2i979gCTJhk9itYE\ny31DVlYWbDYbhg4d2mx7WVkZRo4c6fzZZrOhtLQUISEhsNlszu1WqxWlpaVuj71w4ULnvxMSEpCQ\nkCB3eAzDMO2KDz8Eioqafs7NzUVubq5h45GQJR7nzp3DkiVLsGnTJuc2yZpSA1fxYBiGYYANG4Cz\nZ5t+bvlgvWjRIv0HBZnVVt9//z2OHj2KYcOGYeDAgSgpKcHw4cNRUVEBq9WK4uJi574lJSWw2Wyw\nWq0oKSlptt1qtar3DRiGYdopJ04ABw4A584ZPZLWyBKPuLg4VFRUoKioCEVFRbDZbMjPz0doaCiS\nk5ORmZmJ2tpaFBUVweFwID4+HmFhYejWrRvy8vIghMDKlSsxefJkrb4PwzBMuyE7GxgzJgDFIzU1\nFaNGjUJhYSHCw8OxfPnyZq9bLBbnv+12O1JSUmC32zFhwgRkZGQ4X8/IyMCsWbMQFRWFyMhIjB8/\nXoOvwjAM077YsAG4804SDxUzBKpgEWomLfzAYrGomj9hGIYJZOrrgb59ybYaOBA4fRro1Kn1fkbd\nO3mGOcMwjAnJywP69weuugro0sV81hWLB8MwjAnZsAGYMIH+ffnlzSuuzACLB8MwjAlxFQ+OPBiG\nYZg2OXECOHIEuPFG+pkjD4ZhGKZNNm4EEhOBkBD6mSMPhmEYpk1cLSuAxYNhGIZpg/p6YNMmwHU6\nHNtWDMMwjFd27QJsNsC1ixNHHgzDMIxXWlpWAIsHwzAM0wbuxINtK4ZhGMYjFRXA4cPAqFHNt3Pk\nwTAMw3ikZYmuRJcuHHkwDMMwHnBnWQFkW3HkwTAMw7SioQHIyWleoivBthXDMAzjll27qDzXZmv9\nGifMGYZhGLd4sqwAjjwYhmEYD7B4MAzDMLL44QfA4WhdoivBthXDMAzTio0bgdtuAzp2dP86Rx4M\nwzBMK7xZVgCLB8MwDOOG/fuB+HjPr7NtxTAMw7Siqgro2dPz6xx5MAzDMK04dQro0cPz62aMPCxC\nCGH0IADAYrHAJENhGIbRjbo6oHNn+r/F4n6fxkYgOJgWigpq8chv1L2TIw+Gucjp08B77wF33eXd\nf2YYNamqArp39ywcAAlGp05ATY1+42oLFg/mkqaiAli6lCpdwsOBVauAiROBr78GLlwwenTMpUBV\nlXfLSsJs1hWLB3NJsnEjcMstQEwMsGULMGMGUFoKfPQRMHMm0KcPTdwKFFatAj7/3OhRMEo4dQq4\n8sq29zNb0jzY6AEwjBH89a8kGDk5ZAe0JDSUopLwcP3HJpdjx4BZs4D77wduvtno0TBy8TXyMJt4\neI08Zs6cidDQUMTFxTm3zZs3D1dffTWGDRuGKVOm4PTp087X0tLSEBUVhdjYWOTk5Di37927F3Fx\ncYiKisLcuXM1+BoM4zs//wwUFJB4uBMOAAgLA06c0HdcSnnkEeD664EDB4weCaMEXyOPgLKtZsyY\ngezs7Gbbxo4di4MHD+Kbb75BdHQ00tLSAAAFBQVYvXo1CgoKkJ2djTlz5jgrAGbPno1ly5bB4XDA\n4XC0OibD6MmOHcB113kWDqAp8jA769eTaLz1FotHoNIuI4/Ro0ejR4tvlZSUhKCLtWI33HADSkpK\nAABZWVlITU1FSEgIIiIiEBkZiby8PJSXl6O6uhrxF8tXpk2bhrVr12rxXRjGJ7ZvB0aP9r5PIIhH\nTQ3w8MPAa68BAwdSqWcg5WkY4pLMebz11ltITU0FAJSVlWHkyJHO12w2G0pLSxESEgKby+omVqsV\npaWlbo+3cOFC578TEhKQkJDgz/AYxi2ffQb8+c/e9wkNBYqK9BmPUv7xD+Daa4Fx4+jnIUMo+hgz\nxthxMfKQW22Vm5uL3NxczcfVForFY/HixejYsSOmTp2q2mBcxYNhtODCBWDPHuDGG73vFxYG7Nyp\nz5iUcPgwRRxffdW0jcUjMDl1ChgwoO39pMij5YP1okWLtBucFxSJx9tvv43169djy5Ytzm1WqxXF\nxcXOn0tKSmCz2WC1Wp3WlrTdarX6MWSGUc7u3UBsLNCtm/f9zGxbCUF21fz5zavBhgwB9u0zblyM\nMi6ZeR7Z2dl4/vnnkZWVhU4uGcfk5GRkZmaitrYWRUVFcDgciI+PR1hYGLp164a8vDwIIbBy5UpM\nnjxZ1S/BML7y2Wdt5zsAEg+zVlt9+CFw/DhVWbkiRR5MYNEucx6pqanYtm0bfvrpJ4SHh2PRokVI\nS0tDbW0tkpKSAAA33ngjMjIyYLfbkZKSArvdjuDgYGRkZMBycb59RkYG7rvvPtTU1GDixIkYP368\n9t+MYdywfTvwwANt7xcWZs7I4+efSTRWrgRCQpq/NngwiYcQ3ltdMOYiUKutuDEic8nQ0EBtrw8f\nphnk3mhspFLe6mrgssv0GZ8vzJ8PlJWReLijXz9g167AmNzIEFFRwMcfU7cDb6SlUf+19PTm27kx\nIsNozDffAFZr28IBUCO6Pn3MFX0UFNB8juef97yPFH0wgUOgRh4sHswlw2efUT8rXzGTdXXkCPXc\neuYZGpcnOO8RWAhB4hGIOY9LWjwKCoDly40eBaMXvkwOdMUMFVfFxcCDD1KL+AkTgNmzve/P4qEd\nQgDnz6t7zLNngY4d6b+2CPhqq/bEhx8Cy5YZPQpGD4SQH3kYWXF14gQwdy5wzTVkaXz3HUUdHTp4\nf9+QIcDBg/qM8VLjiSeAkSMpH6YWvlZaARx5mIo9e8w/izjQqa2lRJ/RfPcd/fHJSSQbYVv99BMl\nxQcPprxLQQElSHv18u39djtw6BAVBzDq8fbbQFYWCcfHH6t3XF/zHQBFHiweJmHPHqC8XP1QlGmi\noABYsMD4hZW2b5cXdQD621Y5OVRxc+YMJff/9S8agxy6daNEPz8UqceXXwJPPgmsWwf87W/A4sUU\nyaqB3MiDbSsTcOIE1cwPHEgTrhhtkPz3Y8eMHYevkwNd0Vs8PvqIhPaNNwCXdnCyMUvFVWEhkJho\n9Cj8o7iYliVevpyiuilTSNxdmmv4hZzIg20rk7B3LzBiBPCLX/BTmpZIN7GjRw0dhqLIQ+81PY4c\noZp/fzFL0nzVKiAvz+hRKOfcOWDyZJqUeccdtC0oiJpqLlmizmfIiTw4YW4S9uyhBXQGDjSfeCQl\n0WSg9sD+/cbbKMeOkTUZHS3vfXpHHkeO0MOMv5hFPNasoZtddbXRI5GPEFQabbcD8+Y1fy01la7n\nHTv8/xyOPAKQPXso8jCbeJw5A2zeDHz/vdEjUYcDB+ipzcjIQ7Ks5Lbs0FM8GhvpHA0c6P+xzFBx\ndeAAicbAgebtEeaNJUvovrB0aevrJiSEciCLF/v/Ob7O8QBYPEyBEE3iERFhLvFwOOj/Lg2KA5Yz\nZ6h6aMwY48VDrmUF0BPh2bP6FFScOAF0707WhL/ExlILltpa/4+llDVrgLvvBq66iopSAomsLODf\n/6ZSfk+rTc6YQe3wv/7av886dUpetRXbVgZTVkaljOHh5os82pN4HDhAYb/ReSW5kwMlgoKAvn31\nWZ1PLcsKADp3Bvr3b7qW9EYIEo+UlMBaCx4gm3XWLOCDD0j4PNGpE/DYY/6XocuJPDp2pPtWXZ1/\nn6kWl6R4SFGHxWJO8bjssvZRAXbgAFkoERHGRR4//EBPvkOHKnu/XtaVmuIBGFtxtW8fRWvx8dSo\nMZDE46mngGefpXxoWzz4ILB1K80hUoqcyMNiIeuqpkb556nJJS0eAD1Z1tSYJ6nncAA33dR+Io+4\nOLqBVFUZ49d+/jkwalTbM7M9odeTs9riYWTSXIo6LBY6f4FiW9XUkMV5cWXtNunaFfjjH2k5YKXI\niTwAc1lXl7x4WCzmyns4HFQb317EY8gQsn/69zdmroeSEl1XAjXyMEo8XC0rILAij9xcagcj52b+\n8MOUI1F6bcuJPABzJc0vOfFwTZZLmMm6cjgowRzo4iEE+cdDhtDPAwcaY10pmRzoCouHPL7+mirH\nhg+nnwMp57FhAzWflEOPHsDvf++9Tb43lEQeLB4Gcfw4ldq5JsPMIh6nTlEbj+uuoz+4QO5P9MMP\ndBPp149+NiK6O3OG/GjXBwW5BKptFRUFlJTo74+vXt1kWQGBZVutXw9MnCj/fY8+Crz3nrLrREnk\nwbaVQeze3fpmYhbxcDjoj75jR1rxLlCe2NwhWVbSTcSIpPmXX9Lv2p+VAPWIPM6dAyorvVf3yCUk\nhK6lQ4fUO2ZbtLSsgMCxrRwOElolhRWhocC991IvMjnU19PvvmtX39/DtpWBtLSsAPOJB0BlxIFs\nXblaVoAx59jffAegj3gcPQoMGEC5ITXR27rauxcIDqa8gUSfPsDJk3SjNDPr15NlpXTt93nzgP/8\nhx4CfKWqiub2yPm9c8LcQDyJh9G9l4D2JR5S5CFhROShdH6HK3rYVmpbVhJ6l+u2tKwAEpOePYEf\nf9RvHEpQku9wpX9/Wutj2zbf3yOnNYkERx4GIURTQ0RXJD/egDXkm9HexCMurulnvQW6poaStzfe\n6N9x9Ig8ioq0EQ89Iw93lpWE2a2rc+eAL74Abr/dv+PYbPKuFTlNESVYPAzi++9pvYO+fZtvv/JK\nekI6edKYcUm0F/FobKTeSoMHN23r25fC7Z9/1mcMO3fSzVOOn+yOHj3oj1XLFiVaRR56iseuXTSz\n3fWBQcLsSfOtW6k6rHt3/44j90FDSeTBtpVBuLOsJIzOewjRfsTj2DH6Q3T9w7BYyNfXK/rYtg24\n9Vb/j2Ox0E1ByxYlWonHwIH0QKRHh+bVq4F77nGfMzB75KG0yqolcsWDI48AwszicfIkCUjv3vRz\nIItHS8tKQs9zvG0bkJCgzrG0XstcK/EICqLeYgUF6h/blcZG4L//dW9ZAeaOPITwP98hoVfkweJh\nAGYWDynqkJ7cAl08XJPlEnolzc+fp5Lsm25S53ha5j2EIPFQoxW7O/SwrnbuJDvY1aZ0xcwTBQsL\nqdGgu+tVLnpFHmxb6UxjI5Cf3zTztSVmEQ+Jfv2onbmRbbWV0rJMV0KvpPmuXcDVV9MNTQ3CwrQT\njx9+oBuCWmNtiR4VV2vWkGXlCTPbVv6W6LqiR+TBtpUBFBZSzXnPnu5fN5t4dOhAN63SUuPGpBRv\nkYce51itfIeElraVllEHoH3kIVlWd9/teR8z21YbNqiT7wD0iTw4YW4A3iwrwHziAQSmdVVXR9/F\nbm/9ml62lZr5DkBb20qrfIeE1uLxxRdAr14U6XnCrLbVzz/TUrKJieocr1s3cgp8bQnTriOPmTNn\nIjQ0FHEu2c/KykokJSUhOjoaY8eORVVVlfO1tLQ0REVFITY2Fjk5Oc7te/fuRVxcHKKiojB37lwN\nvkbbtCUeERHU96qxUbchNaO9iIfDQePu3Ln1a3oIdG0tkJcH3HyzescMZPGwWqlfmlaT9DZtAn75\nS+/7mNW22rqV1hy54gp1jidV5vl6rbTraqsZM2YgOzu72bb09HQkJSWhsLAQiYmJSE9PBwAUFBRg\n9erVKCgoQHZ2NubMmQNxcdbd7NmzsWzZMjgcDjgcjlbH1IO2xKNzZ3oKKCvTb0wSLct0Jfr3Dzzx\n8JTvAOgJta6Onri0YvduOo9y/yi9oeWTs9biYbFou6b5kSNAdLT3fbp2pWvcLGvmSEj5DjWRIx7t\nep7H6NGj0aPFt1u3bh2mT58OAJg+fTrWrl0LAMjKykJqaipCQkIQERGByMhI5OXloby8HNXV1YiP\njwcATJs2zfkevaivp9nG113nfT+jrKsffqBGdi3zMYEYeXgq0wWaVm7Ucl0PtfMdgLaRh1azy13R\n0roqKmo7Z2OxmC/6kEp01cp3SFxKkUew3DdUVFQgNDQUABAaGoqKi2eqrKwMI0eOdO5ns9lQWlqK\nkJAQ2Gw253ar1YpSD1nghQsXOv+dkJCABJWM62+/pfC9rRmkknj42w9JLu6iDoDEY9MmfcfiLwcO\nAFOnen5dSpoPG6bN52/bBsyZo+4xA9m2ArStuPJFPICmpLm769wIDh0iAfGWq1GC1pFHly7Ajz/m\nYuHCXNljUxvZ4uGKxWKBRY0at4u4ioeatGVZSRi11rY38Qi0yMObbQVoe47r6igBumqVusft0YOS\noOfPA506qXfcCxfoRuPybKUJQ4bQDHC1qamhya1Wa9v7mi1pLkUdKt6+APguHkIor7YCErBwYYJz\n26JFi+QdRCVkV1uFhobixMWroLy8HH0vNoqyWq0odrnTlZSUwGazwWq1oqSkpNl2qy9Xm4q4W8PD\nHUbZVu1FPM6epdJib0+XWp7jvXvp+J7KsZVisVBvLrWjj2PH6Hcc7NcjXNtItpXajT+l8fuyPrzZ\nbCst8h2A7+Jx7hxZ1XLXmjGTbSVbPJKTk7FixQoAwIoVKzB58mTn9szMTNTW1qKoqAgOhwPx8fEI\nCwtDt27dkJeXByEEVq5c6XyPXuzZA1x/fdv7mU08+vShckKzXCxtcegQEBPj/WaoZeShRb5DQgvr\nSg/LCqDr6LLLaGVBNfHVsgLMNdejupomko4Zo/6xfb1OlEQdQAC1J0lNTcWoUaPw3XffITw8HMuX\nL8dTTz2FTZs2ITo6Gp9++imeeuopAIDdbkdKSgrsdjsmTJiAjIwMp6WVkZGBWbNmISoqCpGRkRg/\nfrz23+witbX01OW6QI0nzCYeFgtZGmr/0WtFW5YVoO0sc7Xnd7iihe2il3gAVMSwf7+6x5QjHmaK\nPLZsobU3/O247A5fxUNJvgOgqtCzZ41fPgJoI+exyoN5vHnzZrfbFyxYgAULFrTaPnz4cOxX+8r1\nkYMH6QL35UIJD6cLvK6OQko9EAI4fNiz1SNZV22VQ5oBTzPLXXFdO0VNv7m+niasvfOOesd0RavI\nQ8vZ5a5I4qFmdZHcyMMs4qFFlZWE1pFHSAjZhLW1/i2vrAbtfoa5r8lygH4x/frRZEG9KC8nH9NT\nJVgg5T28lelKXHklicapU+p+9ldf0bmSuhKrTSDbVoDxkYdZbCshtMt3ANpHHoB55nq0e/HwNVku\nobd15cmykgg08Wgr8pDmeqh9jrW0rAC2rdwRiLbVoUOUk4uJ0eb40uJhFy5436+qSvlEVrMkzdu9\neGzbJq81txnFQ89ISCmVlZSI7N+/7X21SJprmSwH1I88pFbseonH4MFN7cfVQo549OlDZb319ep9\nvhJ27KB5XGqX6EpYLPRd21o87NQp5ZEHi4cOHD9ONzU5E9LMKB6BEHlIUYcvf5RqJ80bGoDPPgNu\nuUW9Y7ZEbfGorCTvWukNRC5dutC1VFiozvFOnybfvU8f3/YPDqYSaq16bPnKrl3Uz0pLfLlW/Ik8\n2LbSgS1bqGNmkIxvyeKhDF8sKwm1W7N/8w3ZIhcbH2iC2mt66Bl1SKhpXUlRh5wneDNYV7t2+Va2\n7w++tPDnyMPkbN4M3H67vPfoLR7eKq2AwBEPX8p0JdS2rbTOdwDqr+nRXsRDDkYnzWtqKPLSqjWO\nhB6RB4uHhgihTDz0WrAIoPbv338PREZ63ufKK2m/06f1GZNSfKm0klBboLXOdwD0ezh/nv5Tg0tR\nPIyOPL76inpZqdlixh2+iIe/kQfbVhqyfz8tzhIRIe99/frRjVqPX05ZGY3R23oCFov5ow8h5NtW\nR4+qM9GpsRHYvl178ZC7VkNbXIriYXTksXu39vkOQPvIg20rjVESdQCUHxkwQNu24RJt5TskzL6u\nR1kZ0LGj78nTbt3o6e+nn/z/7P37aW5Hv37+H6st1LSujBCPQYOoCujMGf+PpVQ8jIw89Mh3ANpH\nHmxbaYxS8QD0y3v4Kh5mjzzk5Dsk1LIH9ch3SKgdeeg1u1yiQweybdRozx6ItlV7ijzYttKI2lrg\n88+B225T9n4WD3ns2+d7vkNCraR5bq72lpWEWhVXdXUUrfkyJ0Zt1LCuhKDfXSDZVqdOkXDFxmr/\nWXrkPDjy0IgdO2gGqdLW3Cwe8sjPB4YPl/ceNc6xXvkOCbVsq+PH6Sm8Y0f/jyUXNcTjhx+oQZ/c\ntb+NtK327KGVRH1pH+8vbYlHfT3d/JWunc7zPDTEH8sKYPGQS35+20v8tkSNyKOggHqCab2YkoRa\ntpUR+Q4JNcRDiWUFGGtb6TE5UKJXL8oreZrNf/o05f3kzD9zhSMPDdm8GUhKUv5+PcSjsZFuIt7K\ndCXMLB5nztACUHJ7Bakxy1zPfAegnm2lx7rlnhg6lMTDn0o3peLRtSt9bnW18s9Wil7JcoBEoXdv\nzy1K/Ml3ACwemnH6NCUER41Sfgw9xKO4mJ5QunRpe9/wcFrTwww9/Fvy9dd0Q5K7Gp4aCfMvv5TX\nt8xf1LKtjIw8QkPpd1VWpvwYSsXDYjEm+hBC38gD8B6lKm3HLsG2lUbk5gI33ujfRKCePSkyULtt\nuCu+WlYAXSydOlFjObOxd698ywpoKof2RxD37pXXMdlf2oNtBfhvXSkVD8CYpHlpKfU/07NAwdu1\n4k87doAjD83YtMm/fAdAT0hazzSXIx6AebvrKkmWA2RhXHGF8qfQM2coerPblb1fCb7YVtXVQEaG\n95bcl7p46B15SCW6WnXSdYfWkQeLhwb4myyX0Nq6UiIeZsx7KEmWS/iTNP/qK2V2mT90706iUFPj\neZ/nnwcWLgRuuIES+u64lMXDCNtKz3yHhNaRB9tWKlNcTLOWfVmvvC1YPNrm7Fk6R0qf/v1Jmu/d\nqyzi8QeLBejb1/NN4cQJ4PXX6Un3D3+gFvEZGc2tuVOnqFSzVy99xuwOf8SjoYHybwMGKHu/EbaV\nXpMDXdEy8mDbSgOUtGD3BItH2+zbR8KhdL6CP9agEeIBeLeunnsOmDaNbqy//z2tqf7WW0ByclPl\njZJW5mozeDDw3XfKFmYqKaE2NErXz9Y78mhspDke7SnyYNtKA9SyrABtxaO+np64Bw3y/T1mFA9/\nLCvAP9vKKPHwdFM4fBhYvRr4y1+atsXEUEXYkCEUDWdnG29ZAXTzueoqeoCRiz+WFaB/zsPhoAIY\nrda294TWkQfbViqitAW7J7QUj+PH6eKSUxHWHsVD6Tk2Ilku4alc969/BR55pPVNqmNHIC0NeO89\n4IEHaD+jxQNQbl2pIR562lZ6l+hKcLVVAHHgAD1RqdVsbuBA/0tJPfHVV/JvfGYUD3+f/pVGHl99\nRTc/PZPlEu5sq/x8mrD46KOe35eQQCse3nCDfu1UvGGUeOhtWxmRLAd4nkdAoWbUAVAp6eWXq7v0\nqMTHHwMTJ8p7j81GE7saGtQfjxLOn6dV2eQ2RHRlwAASxMZGee/Te36HK+5uCk89BTz9NF0v3ujR\nA3j7bcqBGI0001wu/opHnz40X0lJvkUJRiTLAYpApeKIlvgbeXTuTH9/cv9u1IbFwwsDB5JHrSYN\nDSQekyZjAnJaAAAd3klEQVTJe99ll5F3q4WYKeHAAUr4+zMZs3Nn+iOSO9vZqHwH0Nq22rKFbqi/\n/70x41GKUZFHcDBdxz/+qPwYvlJbS9/RH2tVKcHBdG27W7PG38gjKIj+7tRa1VLxOIz9eHWorQU+\n+wwYM0bd40ZFUSJUTXbupGSl3BUOAXNZV/7mOySUWFdGioerbdXYCMyfD/z970BIiDHjUUpkJOUe\n5PaZUmMdEr2sq/37qSilrYhQKzxZV/5GHoA5kubtQjx27gSio9WvnY+OppJGNVm3Trlt0R7FQ27S\nvLrauGQ50PyG8P77lBO7+25jxuIP0sJQBw/6/p6aGrKcrFb/PluvpLlR+Q4Jd+IhhP+RB2COpHm7\nEA8tLCuASi1ZPNyjpnjIie6MTJYDTbZVXR2V5f7jH+rMKzICudbVsWN0Dfq7JoYvkUdlJbB0qX8F\nK0blOyTciUdNDZ0/f+xewBxzPQL0sm+OVuIRHU1JYbVwOChkVWq5mEU86uroiVWNmfyjR1PewFeM\ntKwAalFSWwu89hpZblpcd3ohVzz8zXdI+BJ5vP028NBDwLx5ygXEjJGHGlEHEOC2VVpaGgYPHoy4\nuDhMnToVFy5cQGVlJZKSkhAdHY2xY8eiqqqq2f5RUVGIjY1FTk6OKoMHqAX7vn3atOaOjqanYrWq\nGj76iBLlSp9UzSIeBQVUKaWGl5yQQDcwd4lFd+zZY6x4WCx0U/jb34D0dOPGoQZGikdbkceqVfTf\np59SXkmugFRX03j9qQb0F3fioUa+Awhg2+ro0aNYunQp8vPzsX//fjQ0NCAzMxPp6elISkpCYWEh\nEhMTkX7xr6ugoACrV69GQUEBsrOzMWfOHDSqdEfOzQVGjqTKHbXp2pV+0WrdsP2xrADzdNZVy7IC\nKHxPTATWr/dtfyPLdCVCQ6nU2kgRUwNJPHy9MaslHm3ZVocP09/cnXeSq7BpE5VDyxGQ/Hxg2DBj\nCxk8iYcakYcZbCtFznG3bt0QEhKCc+fOoUOHDjh37hyuuuoqpKWlYdu2bQCA6dOnIyEhAenp6cjK\nykJqaipCQkIQERGByMhI7Nq1CyNHjmx23IULFzr/nZCQgAQflonLyQHGjVPyLXxDynsobQQncfIk\nXdCJicqPYZbIQ03xACga++gj6gvlDaOT5RJ//rPxAqYGYWH0/xMn6IbeFkVF6ghmW7ZVZiYVIXTo\nQGW9mzc39axbssS3vmBGW1aAZ9vK38gjNzcXx47lYvlyKhYyCkXi0bNnTzz++OPo378/OnfujHHj\nxiEpKQkVFRUIDQ0FAISGhqLi4pkrKytrJhQ2mw2lpaWtjusqHr6ycSPwv/8p+Ra+IeU9xo717zgb\nNlApsT8RUr9+ZO/U1ipvRqgG+fn0VKgWd9xBs7Pb+l5GJ8slfv1rYz9fLSyWpujDV/FQo7WKN9tK\nCLKrli5t2tarV5OAWCzA4sVtC8ju3cCvfuX/WP1Bq8gjISEBw4cnYNw44He/AxYtWuTfARWiyLb6\n/vvv8fLLL+Po0aMoKyvDzz//jHfffbfZPhaLBRYvv2Fvr/k+DuDnn2m2rFaoVXHlr2UF0E0zNNS/\nJUT9paGB2mxce616x+zbl8pGLwatHjE6Wd4ekZP30MO2OnCAEsE33th8e+/eVFjx8cfUH6wtC6s9\nRx6AOVqUKBKPPXv2YNSoUejVqxeCg4MxZcoU7NixA2FhYThx8aooLy9H3759AQBWqxXFLn5LSUkJ\nrP4Wi4O80LFjtW1vrUbF1YULZK/dcYf/4zHauiospD/+7t3VPa5kXXmDxUN9fG1Tcvo0RYZqdKft\n2pVu/u4mKK5aBdxzj/u/aUlA1q2jgoWzZ4Gvvwb++1+KRqZPB0aNov06d6aJkEbSty85Ba7pXbVy\nHgGbMI+NjcXOnTtRU1MDIQQ2b94Mu92OSZMmYcWKFQCAFStWYPLkyQCA5ORkZGZmora2FkVFRXA4\nHIhXoQB740b/7aS2UCPy2LaNnqwvOnp+YbR4qJ3vkJDEw9sTJYuH+vgaeai5DonF4j76EILyHamp\nnt/bp0+TgPTuTbbNqlUkRLfeSvNuDh6kikCj59+EhADdulG+U0LNyMNo8VDkHg8bNgzTpk3DiBEj\nEBQUhOuuuw4PPPAAqqurkZKSgmXLliEiIgJr1qwBANjtdqSkpMButyM4OBgZGRl+21Z1dcDWrcC/\n/+3XYdokIoIu8poa5fmKjz5Srxme0eKxd6824jFkCN08Dh6kf7ekupoqzYxOlrc3Bg8Gvv2W7Ehv\nk//UsqwkpKS564Jou3ZRzmvYMO/v7dOHHmIsFuMFoi0k66pPH/q5qorOub906SK/tYzaKE49Pvnk\nk3jyySebbevZsyc2b97sdv8FCxZgwYIFSj+uFbt20cWsxtO8N4KDm2ZBK6kZF4KeknwtRW2L8HBl\ni/ioRX5+8wWP1MJiaYo+3ImHlCwPtB5SZqdrV7qRHz5MUbYntBCPlpHHqlUUdfjyXOnvLHe9kMRD\nuqbVijy6dDG+SarJddszelhWEv70uNq3jwRIrSfmAQOoTYQRNDbSTVzNZLkrkyaR0LqDLSvtGDqU\nlsz1htri0dK2amgA1qwBfvMb9T7DDLRMmreneR4BKx5az+9wJSZGedJcqrJSK6kfFWVc5HHkCF34\nWi3peeutwKFDTet9u8LioR1PPEHrkbh68y3RyraS2L6dtnmLfgKRluKhZuQRkNVWRlNZSQkxLVqS\nuMOfpLkaJbquDBpELcz1WkzHlfx8bW/gl10GJCUBn3zS+jUWD+246SZ64n/4Yc/7aB15ZGa2v6gD\n0C7yCNhqK6P59FPg5pvpZqMHSst1S0tpLsrNN6s3lk6d6AlNyfKt/qJVpZUr7kp2OVmuPX//O/UN\n+/DD1q8JQdebVjmP2lqa6HspiMclP8/DaDZu1M+yApoiD7nN2T7+GBg/Xv0kb3S0MdaVHuIxcSKV\nYrqukvbVV5Rw5GS5dnTpAixfDvzhD62bVP7wA1UaXnGFep/naltt2gTExgL9+6t3fLPgKh4NDTSp\nuVs3/4/LkYcChKB8h17JcoDK7BobvXvC7lCzRNcVtVvF+4IQ2pXputK7N1VV5eY2bWPLSh9uuomq\nnVraV2pbVkBz26q9WlZAc/E4fZqEQ43yYk6YK6CwkG5ksbH6fabFIj/vcfYsJQHHj1d/PFFR+ovH\n8eNkE0rN9LSkpXVlhk66lwp//ztFmB980LRNC/Ho04cexqqr6XcdiKsx+oKreKiV7wA4Ya4IqURX\ny5Yk7pD7tL9pE61iptbF0nIsettWelhWEi1nm3PkoR+dO7e2r7QQj+Bg6pi7fDn1oNJ6vpZR9O1L\ntp9ay89KsG2lAL0tKwm5kYfaVVauGGFb6SkeV19N+Y19+zhZbgSjRgH33gv88Y/0sxbiAZB19cor\n3tuRBDqdOtGN/tQp9RaCAti2ks2FC2QFGbH0p5wbdmMjlZv+8pfajGXAAPKLXZPKWqN1ma4rrrPN\nv/6ak+VG8NxzdO7ff1878QgLoweD9tLi3hOSdaV25GG0bWXwygjy+PJLeirt2VP/z5YTeeTn0xjV\nWPvAHcHB1HPr++/V6ZPTFg0N+iTLXZk0CViwgNpnsGWlP5J9NWUK/axV5DFhgnpP42ZFEg81I4/L\nLqO5XkbM95IIqMjDKMsKoPbOR47QjbQt1q+nklMt0dO6euMN+jybTZ/PA4DRo+n7ffIJi4dR3Hgj\n8Nvf0o3P35U03fGb39Dysu0dLSIPi4Wij5oadY6nhIATDz3nd7hy+eVUIeJLXyk9xEOviqviYmDh\nQuDNN/UtUujYkR4UNm9m8TCSZ58F/vMfbSbkjhvXetGn9ogWkQdgvHUVMOLx449k09xwg3Fj8KVB\n4o8/Un8mNWeVexqL1hVXQlDVzcMPk12oN5Mm0U1LD2uOcU/nzsDMmUaPIrDRIvIAjK+4Chjx2LQJ\nuO02YxOnvjRI3LiR1irXunWKHrbV//5HrbqNshaSk4Hnn+dkORPYaBV5GN2iJGAS5kbmOyR8iTz0\nsKwA7W2rqipg7lxg9Wr9eoi1pFs37836GCYQkMSjvp4jD90xoiWJO9qKPBoaKPKYMEH7sVx1Fc2B\nOHNGm+PPn09P/lrbbwzT3tEy8jBSPAIi8lixgmrCBw0ydhxtRR55eVSRpEdVUlBQ09oeaieUP/uM\nqpwOHlT3uAxzKSKJR+fO6kcenDD3wnffAfPmAe+8Y/RIqFzxp588/8L0sqwktLCuLlwAHniAZv52\n767usRnmUsQ1Ya52tRXbVh64cIFaFzz3nPt1rfWmQweKfjxVOektHlpUXKWlkT3X3mf9MoxedOlC\nRR8//qhu5GG0bWVq8XjqKZpJ/eCDRo+kCU9VTmVltGCOnnXraldcFRQAr78OvPaa/o0nGaY9ExpK\nc5c6d1bvmGxbeeCTT6gt9H/+Y64bmac2JdnZlNAP1jGLpKZtVVcHzJpFEwL1nEnOMJcCoaHqd9hm\n28oNZWXA/fcD775rTB8rb3h62tfbspLG4nDIX+HQHfPm0bmePdv/YzEM05zQUPV7eLFt1YKGBuB3\nvwPmzKH+RmbDXeRRV0dtNLRY+MkbvXpRVNZy2VC5rFpFHWxXrlRnlTOGYZqjVeTBtpUL//wnTab5\ny1+MHol7pHJd16f9L76g7X376jsWi8V/62r/fuBPfyKLsL13N2UYo+DIQ2N27gRefpnsqg4djB6N\ne3r3przGDz80bTPCspLwp+Kqqopabv/rX8CwYeqOi2GYJsLC1BcPoyMPU00SnDqVureGhxs9Eu9I\n0Ye0dOb69cBbbxk3FiWRR2MjMG0aWW2//a3642IYponUVPVtbU6YuzBhAjB5stGjaBvXNiXHjlEU\nMmKEMWNRalulpQEnTwIvvqj+mBiGaU737jTtQE0C1raqqqrCXXfdhauvvhp2ux15eXmorKxEUlIS\noqOjMXbsWFRVVTn3T0tLQ1RUFGJjY5GTk+P2mC+8oHQ0+uLapmTDBnqiMCrRrCTy2LiR5nP8979U\ne84wTOBhtG2l+JY3d+5cTJw4EYcOHcK+ffsQGxuL9PR0JCUlobCwEImJiUhPTwcAFBQUYPXq1Sgo\nKEB2djbmzJmDxsbGVsdUcwKNlrhGHkbmOwCKPA4fJhvKF44eJbtq1SpqrsgwTGASkLbV6dOn8dln\nn2HmxVVigoOD0b17d6xbtw7Tp08HAEyfPh1r164FAGRlZSE1NRUhISGIiIhAZGQkdu3apdJX0B8p\n8jh/HsjNNbbb7xVXUEhcWtr2vjU1wJ130sz9W2/VfmwMw2iH0baVooR5UVER+vTpgxkzZuCbb77B\n8OHD8fLLL6OiogKhF7PIoaGhqKioAACUlZVh5MiRzvfbbDaUurnbLVy40PnvhIQEJCQkKBme5kRG\n0hP8p58CQ4caP5FRsq7aKjR46SVq7vjII/qMi2EY9cnNzUVubi4qK4GSEuPGoUg86uvrkZ+fj9de\new3XX389HnnkEadFJWGxWGDx0lfE3Wuu4mFmOnem0rvXXzfWspKQynUTEz3v09BAlWxZWeZq98Iw\njDykB+uyMspbAosMGYci28pms8Fms+H6668HANx1113Iz89HWFgYTpw4AQAoLy9H34uz5qxWK4qL\ni53vLykpgdVq9XfshhITY3y+Q8KXiqsNG0jwrr1WnzExDKMtRttWisQjLCwM4eHhKLx4x9q8eTMG\nDx6MSZMmYcWKFQCAFStWYPLFutvk5GRkZmaitrYWRUVFcDgciI+PV+krGENMDNCvnzkm1/lScfXm\nm8BDD+kzHoZhtMfoaivFkwRfffVV3HvvvaitrcWgQYOwfPlyNDQ0ICUlBcuWLUNERATWrFkDALDb\n7UhJSYHdbkdwcDAyMjK8WlqBwIgRVJ5rhq/R1izz48eBL78EMjP1GxPDMNoSEkL3oIYGYz7fIoQa\nPVn9x2KxwCRDCTguXKCKq+pquqBa8re/AZWVtE4HwzDthyuvBE6fNubeaaoZ5owyLruMLLSjR1u/\nVl8PLFtmrgW1GIZRhy5djPtsFo92gifr6uOPqS1CXJzuQ2IYRmMuv9y4z2bxaCd4Spq/+SZHHQzT\nXjEy8jBVV11GOVFRwLffNt9WVATs3k1rdTAM0/5g24rxG3e21dKltCpjoPQMYxhGHkbaVhx5tBNa\n2la1tbTGyNatxo2JYRht4ciD8Zv+/YGKCmp+CFAbkthY4OqrjR0XwzDawQlzxm+Cg4GBA4Hvv6ef\nOVHOMO0fTpgzqiBZV506Afv20frkDMO0X1g8GFWQGiTu3Ancdx9NHmQYpv3CCXNGFaKjge3bgZwc\n6mXFMEz7hhPmjCpERwNr1tACVZGRRo+GYRitYfFgVCEqCqir49brDHOpwNVWjCpcdRXw6KNAcrLR\nI2EYRg84Yc6ogsVC65QzDHNpwLYVwzAMIxu2rRiGYRjZcOTBMAzDyIYjD4ZhGEY2HHkwDMMwsmHx\nYBiGYWTDthXDMAwjG448GIZhGNkYuUooiwfDMEyA0qGDcZ/N4sEwDMPIhsWDYRiGkQ2LB8MwDCOb\ndi8eubm5Rg9BNoE25kAbL8Bj1oNAGy8QmGM2CsXi0dDQgGuvvRaTJk0CAFRWViIpKQnR0dEYO3Ys\nqqqqnPumpaUhKioKsbGxyMnJ8X/UMgjEiyHQxhxo4wV4zHoQaOMFAnPMRqFYPP7v//4PdrsdFosF\nAJCeno6kpCQUFhYiMTER6enpAICCggKsXr0aBQUFyM7Oxpw5c9DY2KjO6BmGYRhDUCQeJSUlWL9+\nPWbNmgUhBABg3bp1mD59OgBg+vTpWLt2LQAgKysLqampCAkJQUREBCIjI7Fr1y6Vhs8wDMMYglDA\nXXfdJfLz80Vubq745S9/KYQQ4sorr3S+3tjY6Pz5j3/8o3j33Xedr91///3i/fffb3VMAPwf/8f/\n8X/8n4L/jED2SoIff/wx+vbti2uvvdajP2ixWJx2lqfXWyIuRjAMwzCM+ZEtHl9++SXWrVuH9evX\n4/z58zhz5gx+97vfITQ0FCdOnEBYWBjKy8vRt29fAIDVakVxcbHz/SUlJbBarep9A4ZhGEZ3ZOc8\nlixZguLiYhQVFSEzMxNjxozBypUrkZycjBUrVgAAVqxYgcmTJwMAkpOTkZmZidraWhQVFcHhcCA+\nPl7db8EwDMPoiuzIoyWSBfXUU08hJSUFy5YtQ0REBNasWQMAsNvtSElJgd1uR3BwMDIyMrxaWgzD\nMEwAYEimxQsffvihsFgs4ttvv/X7WE888YSIjY0VQ4cOFb/+9a9FVVWV87UlS5aIyMhIERMTIzZu\n3OjcvmDBAhEeHi66du3a7Fjnz58XKSkpIjIyUtxwww3i6NGjQgghiouLRXJysoiKihKDBg0Sc+fO\nFbW1tV7H9a9//UucO3fO7WtTp04VMTExYsiQIWLmzJmirq7O+drDDz8sIiMjxdChQ0V+fr5z+4wZ\nM0Tfvn3FkCFDmh3r5MmT4vbbbxdRUVEiKSlJnDp1Sghh3nO8bds2ce2114rg4OBmRRVmPsdr1qwR\ndrtdBAUFib179zZ7zazn+cUXXxR2u10MHTpUJCYmimPHjpn6HHv77mY9x2+88YaIi4sT11xzjRg5\ncqT4+uuvhRDmvpaffvppMXToUDFs2DAxZswYcfz4ca/jMp14pKSkiEmTJolnnnlG9nsbGhqa/ZyT\nk+PcNn/+fDF//nwhhBAHDx4Uw4YNE7W1taKoqEgMGjRINDY2CiGEyMvLE+Xl5a0uhtdff13Mnj1b\nCCFEZmamuOeee0RjY6O4/vrrxdtvv+38/Pvvv1/MmzfP6zgjIiLETz/95Pa19evXO/+dmpoq3njj\nDSGEEJ988omYMGGCEEKInTt3ihtuuMG53/bt20V+fn6ri2HevHniH//4hxBCiPT0dOf3N+s5Pnr0\nqNi3b5+YNm2aUzzMfo4PHTokvvvuO5GQkNBKPMx6nrdu3SpqamqEEHSTS0lJMfU59vTdhTDvOT5z\n5ozz3+vWrROJiYmmv5Zdx/zKK6+I+++/3+u4TCUe1dXVYsCAAeLYsWMiNjbWuX3r1q1i9OjR4o47\n7hAxMTHioYcecv7yLr/8cvH444+LYcOGiS+++MLjsT/44ANx7733CiHoKSI9Pd352rhx48SOHTua\n7d/yYhg3bpzYuXOnEEKIuro60bt3b7F582Zxyy23NNvvzJkzolevXqKmpkbU19eLxx9/XAwZMkQM\nHTpUvPrqq+KVV14RHTt2FHFxcWLMmDFez8dLL70knn76aSGEEA888IDIzMx0vhYTEyPKy8udPxcV\nFbW6GGJiYsSJEyeEEEKUl5eLmJgYU59jifvuu88pHmY/xxItxSMQzrMQQuTn54vBgwcHxDlu+d0D\n5Ry/99574p577gmYa1n6zq4i7Q6/cx5qkpWVhfHjx6N///7o06cP8vPzcd111wEAdu/ejUOHDqF/\n//4YP348PvjgA9x55504d+4cRo4ciRdeeMHrsd966y2kpqYCAMrKyjBy5EjnazabDaWlpV7fX1pa\nivDwcABAcHAwunfvjt27d2P48OHN9rviiivQv39/OBwOfP755zh+/Di++eYbBAUF4dSpU+jRowde\neukl5ObmomfPnh4/r66uDu+++y5eeeUV55ilz3cdc1hYmMdjVFRUIDQ0FAAQGhqKiooKU59jdxw8\neNDU59gTgXKepRxldHR0s+1mPceu393s5zgjIwMvvfQSzp49iy+//BIfffSR6a/lv/zlL1i5ciW6\ndOmCnTt3et3XVI0RV61ahbvvvhsAcPfdd2PVqlXO1+Lj4xEREYGgoCCkpqbi888/BwB06NABd955\np9fjLl68GB07dsTUqVM97qMkid/We7Zs2YIHH3wQQUF0mnv06OHzsefMmYNbb70VN910k3ObaDEX\nRs6Ypbk3fI6bUPscuxII5/ndd99Ffn4+br/9dq/7meUct/zuZj/Hc+bMweHDh/HSSy9h5syZAXEt\nL168GMePH8d9992HRx991Ou+pok8KisrsXXrVhw4cAAWiwUNDQ2wWCx4/vnnATT/4kII5wnu1KmT\n15Py9ttvY/369diyZYtzm5K5J1arFcePH8dVV12F+vp6nD59GiNGjMCzzz7bbL8zZ87g+PHjiIyM\ndI5VLosWLcLJkyexdOlSv8bccu5Nr169TH2OXZE+z2634/3332/2mpnOsTvMfi0DwObNm7FkyRJs\n374d33zzDT788MNmr5vtHLf87oFwjiXuuecePPTQQ3j66acD5lqeOnUqJk6c6H0nr6aWjrz55pvi\noYcearbt1ltvFdu3bxdbt24VnTt3FkVFRaKhoUGMHTtWfPDBB0II717jhg0bhN1uFz/++GOz7VIC\n7MKFC+LIkSPiF7/4hdMTlXCXMJfGt2rVKnHPPfcIIYQYMWKEeOedd4QQQtTX14tZs2aJJ554Qggh\nxL///W9x1113ifr6eiGEEJWVlUIIIeLi4kRRUZHbMS9dulSMGjXKmdCUcE2A7dixo1kCTAj3Hua8\nefOcXm1aWpoYN26cqc+xxPTp05tVW5n5HEskJCSIPXv2CCHMfy3n5+eLQYMGicOHDzu3mfkcu/vu\nZj/HDofD+e9169aJm2++WQhh7vNcWFjo/Pcrr7wifvvb37r9TAnTiMdtt93WrAROCPoCs2fPFrm5\nueKWW25xJsCkqichhLjiiis8HjMyMlL0799fXHPNNeKaa65p9r7FixeLQYMGiZiYGJGdne3cPm/e\nPGGz2USHDh2EzWYTixYtEkJQqe7dd9/tLNWVfpnFxcVi0qRJztK7P/3pT87Su/r6evHYY48Ju90u\nhg0bJl5//XUhhBCvvvqqiImJcZsACw4OFpGRkc4xP/fcc87X/vCHP4hBgwaJoUOHNkvO/uY3vxH9\n+vUTHTt2FDabTbz11ltCCCrVTUxMdJbqjh492tTneNeuXcJms4nLL79c9OrVy3lxm/kcf/DBB8Jm\ns4lOnTqJ0NBQMX78eNNfy7fffrsICwtzHutXv/qVqc+xu+9u9nM8d+5cMXjwYHHNNdeIpKQkp5iY\n+TzfeeedYsiQIWLYsGFiypQpoqKiwuO5EkIIixDmbyqVm5uLF198ER999JHRQ2m38DnWBz7P2sPn\nWB9MlTD3RFuNFhn/4XOsD3yetYfPsT4EROTBMAzDmIuAiDwYhmEYc8HiwTAMw8iGxYNhGIaRDYsH\nwzAMIxsWD4ZhGEY2LB4MwzCMbP4fLJowSUZux0oAAAAASUVORK5CYII=\n", + "text": [ + "" + ] + } + ], + "prompt_number": 243 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "type_yearmonth_count = {}\n", + "for c in complaint_type:\n", + " l = []\n", + " for timekey, value in formatted_noises_in_month_dict.iteritems():\n", + " if(c in value):\n", + " l.append([timekey, len(value[c])])\n", + " type_yearmonth_count[c] = l\n", + "\n", + "for key, value in type_yearmonth_count.iteritems():\n", + " value.sort()" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 244 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "x = [datetime.strptime(g[0], \"%Y%m\") for g in type_yearmonth_count['Noise']]\n", + "y = [g[1] for g in type_yearmonth_count['Noise']]\n", + "\n", + "a = [datetime.strptime(g[0], \"%Y%m\") for g in type_yearmonth_count['Noise - Commercial']]\n", + "b = [g[1] for g in type_yearmonth_count['Noise - Commercial']]\n", + "\n", + "c = [datetime.strptime(g[0], \"%Y%m\") for g in type_yearmonth_count['Noise - Street/Sidewalk']]\n", + "d = [g[1] for g in type_yearmonth_count['Noise - Street/Sidewalk']]\n", + "\n", + "pyplot.plot(x, y, a, b, c, d)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 245, + "text": [ + "[,\n", + " ,\n", + " ]" + ] + }, + { + "metadata": {}, + "output_type": "display_data", + "png": "iVBORw0KGgoAAAANSUhEUgAAAYkAAAD/CAYAAAAE0SrVAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzsnXl4VPW9/1+TZLJM9kwyISSBJBCWCEqUJSwKytZWQdxQ\nWpXeSrXa21rXKv1psfcquPR6rbe0bq0sKogooFYFRVRASQXCFiABAlkgCdn3dc7vjy+TTCaznJk5\nk5nB83oeHs3Z5pvJzHmfz66RJElCRUVFRUXFCgHeXoCKioqKiu+iioSKioqKik1UkVBRUVFRsYkq\nEioqKioqNlFFQkVFRUXFJqpIqKioqKjYxKFIpKWlcemll5Kdnc3EiRMBqKmpYfbs2YwYMYI5c+ZQ\nV1fXc/zy5cvJzMxk1KhRbN261XMrV1FRUVHxOA5FQqPRsGPHDvbv309ubi4AK1asYPbs2RQUFDBz\n5kxWrFgBQH5+PuvXryc/P59PP/2U++67D6PR6NnfQEVFRUXFY8hyN1nW223ZsoXFixcDsHjxYjZt\n2gTA5s2bWbRoEVqtlrS0NIYPH94jLCoqKioq/keQowM0Gg2zZs0iMDCQe+65h1/+8pdUVFSQmJgI\nQGJiIhUVFQCcPXuWnJycnnNTUlIoKyvrdz0VFRUVFefxRoMMh5bErl272L9/P5988gl//etf+eab\nb/rs12g0dm/81vZJkqT4vz/+8Y8eua4n//nbmv1tveqa1TVfLOuVJO91T3IoEklJSQAkJCRwww03\nkJubS2JiIuXl5QCcO3cOg8EAQHJyMiUlJT3nlpaWkpyc7Il1q6ioqKgMAHZFoqWlhcbGRgCam5vZ\nunUrY8eOZf78+axatQqAVatWsWDBAgDmz5/PunXr6OjooKioiMLCwp6MKBUVFRUV/8NuTKKiooIb\nbrgBgK6uLn72s58xZ84cxo8fz8KFC3njjTdIS0vj3XffBSArK4uFCxeSlZVFUFAQK1euHLAYxIwZ\nMwbkdZTE39bsb+sFdc0Dhb+t2d/W60000gA7uzQajVf9ayoqKir+iLfunWrFtYqKioqKTVSRUFFR\nUVGxiSoSKioDzJkzcNVVoHpdVSz5uOBjjJJvdalQRUJFZYA5ehS++QYOHvT2SlR8jUUbF1FSX+L4\nwAFEFQkVlQHGVEq0YYN316HiW7R2ttLY0UhLZ4u3l9IHVSRUVAaYkhL4yU+ESKguJxUTlc2VAKpI\nqKj80CkuhhtugI4OOHTI26tR8RUqmkUPPFUkVFR+4JSUwJAhcPPNcKEOVUVFtSRUVFQEJSWQmgq3\n3KK6nFR6qWhSLQkVlR88ktQrEhMmQHu76nJSEaiWhEo/Ht32KG8fetvby1AZQKqqICwMIiJAoxEu\nJzXLSQXUmISKFU7UnOB49XFvL0NlADFZESZUl5OKicrmSvRhelUkVHqpbq3mbONZby9DZQCxFImJ\nE6G1FQ4f9t6aVHyDiuYK0mLSaO5s9vZS+qCKhBepbqnmXOM5by9DZQAxZTaZUF1OKt3dcOwYFJZV\n0nYunaZ21ZJQuYBqSfzwKC7ua0kALFyoupx+KHR3i0SFVavg/vth2jSIiRHFlZUtFRR+n0Z5tR+K\nRHd3N9nZ2cybNw+AZcuWkZKSQnZ2NtnZ2XzyySc9xy5fvpzMzExGjRrF1q1bPbNqF+js7vT2Evog\nSRLVLapI/NCwdDeBcDm1tMCRI95Zk8rA8eKLMHcufPaZ+Bz86U/iwaHwRDfdwbXEa4fQ0OpbImF3\nMp2Jl156iaysrJ5RphqNhgcffJAHH3ywz3H5+fmsX7+e/Px8ysrKmDVrFgUFBQQEDLzB0tzRzFdn\nvmLrya1sO7WN4vpi6h+rJ0DjG8ZTU0cTgQGB1LTW0GXsIihA1p9Cxc+xdDdBX5fTmDHeWZfKwFBZ\nCb/9LTz2mMX25mpiQmOI0EbR2OZbIuHwjllaWsq//vUvlixZ0jMVSZIkqxOSNm/ezKJFi9BqtaSl\npTF8+HByc3OVX7UVJEni32X/5umvn2bGmzMY9OdBPLfrORJ0Cfzz+n8SoAmgvq1+QNYih+rWahJ0\nCeh1+p4iGpWLH2uWBPRmOalc3DQ1QWRk/+0VTRUkhicSGaLzOZFw+Pj6wAMP8Pzzz9PQ0NCzTaPR\n8PLLL7N69WrGjx/Pn//8Z2JiYjh79iw5OTk9x6WkpFBWVtbvmsuWLev5/xkzZigyb/a9/Pe4/9P7\nuXXMrTw69VGuGnoVEcERPfv1YXqqW6uJDYt1+7WUoLqlGr1OT4AmgHNN50iOSvb2klQ8THc3nDsH\nyVb+1JMmiRvIkSNwySUDvzaVgaGx0bpIVDZXYgg3QJiO6g4hEjt27GDHjh0Du0Ar2BWJjz76CIPB\nQHZ2dp/F3nvvvTz55JMAPPHEEzz00EO88cYbVq+h0Wj6bTMXCaXIq8jjV+N/xZPTn7S6X6/TU91S\nzfC44Yq/titUt1ajD9MTGhR60cQl2tshOFi4T/yFNWuEj9hg8PxrnTsHer14jywxdzmpIqEMr78O\nixZBeLi3V9KLLZGoaK4gMSKRNl04JRfqJCwfoJ966qkBWmVf7Lqbdu/ezZYtW0hPT2fRokVs376d\nO++8E4PBgEajQaPRsGTJkh6XUnJyMiUlvQMzSktLSbb22OQBCqsLyYzLtLnfZEn4CiZLYnDk4Ism\nDXbmTPj2W2+vwjmeegq+/35gXstaPMIc1eWkHF1dcO+9sHKlt1fSl8ZGUW1vicmSiNbpaO3yozqJ\nZ555hpKSEoqKili3bh3XXHMNq1ev5ty53pvaBx98wNixYwGYP38+69ato6Ojg6KiIgoLC5k4caJn\nf4MLFNYUkqm3IxIXLAlfwWRJDI4czNkm/7ck2togNxdKS729Evm0tsKpU1BTMzCvZy391ZxJk6Ch\nAfLzre83GuGDD+Af//DM+i4mTp+G0FD4859F5pivYDMm0SxiErEROtq6fWjByMxuAhEYNrmOHn30\nUQ4cOIBGoyE9PZ1XXnkFgKysLBYuXEhWVhZBQUGsXLnSqrtJaSRJ4kTNCbuuJF+zJGpaa4gLiyMp\nIonvzw3Qo6wHycuDzk7Rm8hfOH5c1CbU1g7M69kKWpsICOh1Of3xj73bOzvh7bfh2WfFz+3t8Itf\neHat/s6JE0J0o6PhlVfggQe8vSKBvZjEsNhhdEfq6PAlVcMJkTD3j61Zs8bmcUuXLmXp0qVuL8wZ\nypvKCQ0KJSY0xuYx+jA9Na0D9Mgog+rWatKi04S7qcD/3U179oj/+pNImOoSBsqSKCmBtDT7x9xy\nC9x9txCJlhZ44w144QUYPhxefhmuukrcZFpbRaNAFesUFkJmJtxzjyhU+9WvfOP9suVuMmU3dUbr\n6KjwLZHwjaIBNzlRc8JuPAIuuJt8yJIwxSSSIpMuisD1nj0wbpx/iUR+PsTFDaxI2LMkAHJyoK5O\nPPlmZMD27cKy+OILEfPRamHYMCgoGJg1+ysmkRg3ThQrvvaat1cksOVuMsUkEmJ0dGlUkVAcR/EI\ngLiwOJ+NSZxrujgsiWuv9T+RmDLFd2ISIFxOv/udWNP27SIGYRnWGz0ajh713DovBkwiAfDEE8JV\n19bm3TVJkh1L4kJ2U0JMGN0BLVbr0LzFxSMSjiwJH4tJmCwJQ7iBqpYquoxd3l6Sy5w/L8Rh2jTx\n//5Cfr5Ysy9ZEgAPPyx6+2RlWd+vioRjzEXiiisgO9v7Af+2NggM7J8CLUlSjyWhj9WCMZCO7g7v\nLNIKF4dIOEh/Bd/NbgoKCCJeF98zlcofyc2F8eNFrYG/WBLt7XDmjAhuDkTgur1duJEGDXL/WqNH\n286AUhGB/pISSE/v3fbkk7Bihfg7eAtbQevGjkaCAoLQaXVERYGmK9ynZkpcHCIhw93kq5YEINJg\n/TgusWePuNnGx/uPSBQUiJvIoEEDY0mUlsLgwcKd5C6qJWGf06fFex0S0rtt4kRRpPjmm95aleN4\nBIhsLDp0PjVTwu9FwpT+6k+WRJexi6aOpp5srKQI/w5e5+b2FQkfcqfaJD9fuHNiYwdGJOTEI+Qy\nciScPCkKxlT6Y+5qMufJJ2H5cujwkifHZrX1hcwmEPulDt/q3+T3InG28SyRwZFEhlh5982IDI6k\no7uD9i4v2psXqGmtISY0pqcjrT9XXUtSr0jodOJJ2cfSvK1iLhK1tZ4XNkfV1s6g00FSkigEVOmP\nLZGYPFlst5PB71EcVVuD+P4EGHVU1fvOl8jvRUKOqwlED6m4sDifcDmZu5oAkQbrp1XXhYXi6cfk\na/cXl5NJJIKDRWXuhS74HkNu0FouqsvJNrZEAkT9ydNPi7jFQGO32joisefnIKOO83WqSChGYXWh\n7KZ9vuJyMgWtTQyO8F9LwhSPMBEf7x8ZTiaRAFEr4engtZLuJlCD1/awJxLTpomCxrfeGtAlATI6\nwF5Aq1EtCUWRk/5qwleqrq1aEn4ak7AmEr5uSXR2ClfNyJHi54EoqFMtiYHjxAlRoW6LJ58U1sRA\nx3Ts1kiE91oSweioblBFQjGcEgkfqbruZ0n4cUGdP4rEiRPihh0aKn4eiOC1kjEJEFaQKhL96egQ\nmWTm6a+WzJghsp/WrRuwZQHyspsAQgJ11DapIqEYhdXyYhLgO1XXlpaEv6bAtrWJ/keXX967zR9E\nwtzVBP5rSRw75h+ZZANJURGkpFif2WHOI4+Ixn/W6DZ2c9/H9yle4Govu8lcJMICw6lrVkVCEYyS\nkVO1p+THJHykVsLSkvDXquu8POGy0el6tyUk+KdIeDIm0dAgXFyxCg5FjIkRrgt/as0+ENiLR5gz\nc6b4/JoN3OxhZ/FO/vb93zhUcUjRtdmLSZi7m3RaHfUtap2EIpQ1lInh4cFWHH1W8BWRqGmt6SMS\n/lp1belqAtWSsIbJ1aR013xfikv84Q++kbAgVyTCwkRK7Jdf9t/3/rH3CQ4M5ttSZSdo2YtJmFsS\n4cE6GlpVS0IR5Ka/mvCl7Ka4sLg+2/yxoM6WSPjCzcIeR470FQlPxySUdjWZ8KUMp1degQMHvL0K\nx0Frc+bMga1b+26TJIn3j77Pryf8WnGRsBaT6OjuoKmjidiwXjMzIkRHY7sqEoogp2eTOb5iSVjG\nJMA/C+r80ZLo6hJPm6NG9W4bCEvCEyLhK8Hrlhaorha/p7eRa0mAdZH499l/E64N5xfZv+DbEuUt\nCUuRqGyuJEGX0FNYCxAZqqPJ30Siu7ub7Oxs5s2bB0BNTQ2zZ89mxIgRzJkzh7q6up5jly9fTmZm\nJqNGjWKr5V9AYZzJbALfsiTM3U3gf2mwps6v5jdb8H2ROHVKVCubx1E8LRJK10iY8BV3k0kciou9\nuw5wTiTGjhVP9+aV6+8ffZ8bR99IVkIWVS1VnG9Wziy25m6qbK7sU0gHEBWm878Gfy+99BJZWVk9\no0hXrFjB7NmzKSgoYObMmaxYsQKA/Px81q9fT35+Pp9++in33XcfRqPRY4svrJFfSAd+YEn4URps\nbi5MmNC/YZ2vi4RlPAI8H7hWOv3VhK+IhEkcvC0S7e1w9qzj6X8mNJq+1oQkSWw8upGbRt9EgCaA\nickT+a70O8XWZ83dZJnZBBATrqO1y49EorS0lH/9618sWbKkZxDGli1bWLx4MQCLFy9m06ZNAGze\nvJlFixah1WpJS0tj+PDh5ObmemzxzqS/gm9YEpIkWbUkBkf4VxqsNVcTgF4vnso9+GzgFrZEwh/d\nTYMG+cZc8eJisRZvi8SpU0KMtVr555iLxJHzR+jo7uDyJJHTPTl1sqJxCVvuJvPMJoDYCB1t3b4j\nEg5nXD/wwAM8//zzNJjlilVUVJCYKH6xxMREKioqADh79iw5OTk9x6WkpFBWVtbvmsuWLev5f/PZ\n2c7QbeymqK7IKUsiLiyO2rZaJEnqsYoGmubOZgI1gYRp+w7cTYpM4myBf4nEfff1367VCpO6rk7c\nfH2N/HyYNavvNn8NXGs0vdbElVcqf325FBeLdhcHD3pvDeCcq8nErFnwn/8pYlUb8zdy4+gbe+4N\nOck5PLf7OcXWZ8vdZGlJxEWG025sYceOHezYsUOx13cVuyLx0UcfYTAYyM7OtrlYjUZj94ZrbZ+5\nSLhKSUMJ+jA9Oq3O8cEXCA4MJiwojIb2BqJDo91egytYczWBf7mbJAn+/W/rlgT0upx8VSTuv7/v\nNk9aEpLkOZEAYRXl53tXJEpKYOpU+Ogj8ft66fnLqcwmE4mJwj2VmytSX//6k7/27MtJyeH7s9/T\nZewiKMDh87RDrFkSli05APRROjqk5n4P0E899ZTba3AFu+6m3bt3s2XLFtLT01m0aBHbt2/njjvu\nIDExkfLycgDOnTuHwSCUMDk5mRKzFIfS0lKSk5M9snBnXU0mvN0J1pqrCfwrBday86slvhqX6O6G\n48f7B9vDw4XbxhNTy6qqRJA8PFz5a4NvxCWKi4VY6XTe/bu7YkmAcDmt23qCiqYKJqdM7tkeGxZL\nSlQKhysPK7I+azEJa5ZEQrSOLo3vuJvsisQzzzxDSUkJRUVFrFu3jmuuuYY1a9Ywf/58Vq1aBcCq\nVatYsGABAPPnz2fdunV0dHRQVFREYWEhEy2nuCuEs5lNJrwdl7BlSSRGJFLdUu0XVde24hEmfFUk\nzpwRa7P8omo0ngtee9KKAN8RiSFDxD9vxiXcEYnNBe+zYNQCAgMC++zLSclRJBXW9ABiPi0P+rcJ\nB4iP1tEd0OIzLVecqpMwuY4ee+wxtm3bxogRI9i+fTuPPfYYAFlZWSxcuJCsrCx+/OMfs3LlSo/5\n/uVMo7OGtzOcbFkSQQFBxIXF+UXVtb+KhLWgtQlPxSU8lf5qwtsiYe5OGzLEu7USrorE1KlQGvk+\nc4fc1G/f5JTJfFfmfoaTnIFDJqLCdGiCW2hqcvtlFUG2o2369OlMnz4dgLi4OD7//HOrxy1dupSl\nS5cqszo7FNYUctXQq5w+z1ctCeht9Dc4cvAAr8o59uyB226zvd9X+zfZEwlPxSU8lf5qYuhQ8V7b\n6gvkac6f73WnpaZ6z5Joa4PycvF+OEtVRymBCYV0FMyAS/vum5wymRd2v+D2+mwOHGrqH5PQaYVI\nNDR4529qid9WXDtbbW3CVy0J8I+qa2udXy3x1dYc3hIJT1oSgYGiyeKxY557DXuYXE3gXXfTqVNC\nIIJciC9/cPQDxumuY/u2/rmzWQlZVDRXUNXi3lOPNRE3SkaqWqpICE/os12n1YG2hfp6t15SMfxS\nJLqMXZyuO82wuGFOn+vtmRL2RMIfqq737xeBX52dpDJ/dDf5a0wCvOtyMreUvCkSrrqaQGQ13Tnh\nRj77rH/r9cCAQCYMnuB2UZ01d1Ntay0RwREEB/bta67T6pCCVJFwi+L6YgzhBkKDQp0+Vx/m2+4m\nX0+DdRSPAN8UCUkSN9LRo63v95QlYf6k7Sm8KRK+Ykm4KhLnm8+z79w+fjF9Dl1dIo3Wksmpk90W\nCbmZTSBS9dEYqa71wiBuK/ilSLia/gredzdZtgk3xx/SYHNzwVHCmi+KRHExREWJOQzW8FTg+mK3\nJEwisad0D4NTuvxOJDYf38zcYXPRBYdZbfgHIi7hbuW1zRoJi8wmEAlCgUYd5+t8Iw3WP0XCxfRX\n8IHAdevFb0n4YuDanqsJPGNJdHeLYKqHSoV68LZIJCQ3M3P1TEqMuVRVeabexBGuioSpoR9Y7woL\nMCl5Ev8u+zfdxm6X12erJYc1SwJAi46qelUkXMYtkQjTU9Pq4VmVdqhu6T9LwoSvWxI1NSIgbVmM\nZokvWhJyRELpmMS5c0Iwnekl5AqZmeJm7Y2bc3ExFIVsormzmeKGIgYPBiudeDyOK9XW9W317Cze\nybWZ1wKiRceOHaKw0hy9Tk9SZBJHzh9xeX3WYhLWMptMBGt0VDeqIuEy7ribfLXiGnx/1vWJE+KG\nZNn51ZLoaOGDtfyyeRNvWBKerpEwERwsMnsKCz3/WpaUlMBXtWsYHjecU7WnSE0d+FqJ1laorHQ+\n9vNRwUdMT5tOZIh4xI+PF5/vb614lianTHarqM5qTKLFtiUREqCjVhUJ1/FXd1OXsYvG9kZiQq07\nxn296rqoCNLTHR8XECBuutXe78reQ34+XHKJ7f2eiEkMRDzChDdcTu3tcL61nAPVe/jNxN9wqu6U\nV4LXJ0+K/kvOpr++f+x9bhx1Y59tc+d6Ji5hNSZhx5IIDdRR26yKhEt0dndSXF9MRmyGS+dHh0TT\n2tVKR3eHwitzTG1rLdGh0f1K/034etW1XJEA33I5SZIQCVuZTeAZS+JiF4myMoicvI7rR17PGMMY\nimqLvCISrsQjWjpb+PzU58wfOb/PdltxiZyUHLdFQk4HWBNhQTrqVZFwjdN1pxkcOZiQoBDHB1tB\no9EQGxrrlbiEPVeTCV8uqDt1yj9F4uxZMfheb+et95S7ydPprya8IRLFxdA5eg23X3o7GbEZnKpV\n3pKorLTu/jHHFZH49MSnjB88vl8SyeTJogmkpRU8xjCGc43nXPZCWB04ZCO7CSA8WEd9qyoSLuFq\nzyZzvOVyslcjYcKXC+qcsSR8KcPJUTwCRGpsQ4Oyw5IG0pLwxrzrb0/k0x1WztVpV5MSlUJFcwVJ\nKe2KiURbG8ybB7Nnw5df2j7OFZHYeHQjN4++ud/24GC46ir44ou+2wMDApmQPIE9ZXuce6ELOJvd\nFBEcTmObKhIuUVjjetDahLdqJWRbEj6aBltUBBkyvXy+ZEnIEYnAQPElVrLKdSBFYtQoKCgQabcD\nxadn32Ks5qcEBgQSFBBESlQKgfozioiEJMGvfy0ssS1b4NZb4cAB68c6m9nU3tXOvwr/xQ2jb7C6\n3xP1Es5mN0WG6mhqb3bptZTGL0VieKyTuW4W+LQl4aNpsN3d4qYnt4GaL/VvkiMSoHzw2tPN/cwJ\nDxfW2+nTA/N6RsnIvs61zEq4vWdbRmwGneFFFBf3b2/hLCtXisLNf/4TrrkG/u//4Nprrf9+zloS\n205tY4xhDIMirA9EmTMHPvsMOizCljkpOS5XXltaEs0dzXRL3UQEW2kNi+gE29KpWhIu4U76qwlf\ntyR8USTKysSNP1RmJxR/syRA2bhEW5uwSgzWvQkeYSDjEjuLd0J7NFOGXdazLSM2g4qOU2g07llk\nX38Nf/oTbNrU+/S9cCH8/vfwox/1/Vy1tIj4gTMW28ajG7lpdP+24CZGjBBdBebM6ft5yEnJIbcs\n16WiOsuYhGm2ta1RCtHhqki4jDvprya8Zkn4sbvJmXgE+I5ISJLoWitXJJQqqCsthcGDHdeUKMlA\nisTag2vRnbi9j6WUHpPudhpsSYloQ79mDQyz6N/5m9/ADTfAdddB8wVPzIkT4nMZaD1hsB+d3Z1s\nOb6lp8raGhoNvPsujB8POTm99SfxungSwxPJP5/v9O9laUnYi0cAxIbraOv2jcFDfiUSHd0dlDaU\nkh7rxN3KCvowPTVtXshu8mN3k7+KRGWluFEnJDg+VklL4vhx594vJRgokWjramPj0Y00ffvTPiLh\nboZTa6sQgQcfFE/x1njmGdEa/dZboavLeVfTjtM7GB43nCHR9v2AgYHwwgvw8MNifvjXX4vtrqbC\nWsYk7GU2gYhJaIJbaGtz+qUUx65ItLW1MWnSJMaNG0dWVhaPP/44AMuWLSMlJYXs7Gyys7P55JNP\nes5Zvnw5mZmZjBo1iq3Woj9uUFRbREpUSr/Wus4SFxbn25aED6bAOpP+Cr6T3WSyIuQMSFQyJvHu\nuzB/vuPjlGSgMpw+LviYMfpxBDanEB3duz0jNsPlWglJgrvvFq6ehx6yfZxGA6+/LmJk99wjRMKZ\noPV7R9+z62qy5O67hVVz882wevWFSXUuxCWsuZvsWRI6rY7gcN9oF263RjE0NJQvv/wSnU5HV1cX\n06ZNY+fOnWg0Gh588EEefPDBPsfn5+ezfv168vPzKSsrY9asWRQUFBCgkM2thKsJvBiTkGFJJEYk\ncr7lPN3GbptFd96gqAhmzpR/vK9YEnv3wrhx8o5VypJoaREZOc8+6/61nGH0aBF/kSR5ougqaw+t\nZabhdqotHsbTY9I5WXuSm1IlioudW8BLL8Hhw7Brl+O1a7WwYYMIaG/aBE8/Le81uo3dbDq2id2/\n2O3U2mbPFj2drrsOrvnpZL5N+otT53d2CqvHPJ5nL7MJIDw4HK1OiMQg6/H1AcPh3Vt3YbpMR0cH\n3d3dxMbGAiBZcZZt3ryZRYsWodVqSUtLY/jw4eTm5iq2WCWC1uC9mIS9NuEmggKC0Ifpfa7q2hV3\nky9kN+3eLWYYy0EpkfjwQxH4HOgvt14PISGisaCnqG6p5suiLxllvKlf5papcaU+pdYpS+KP699j\nxXNdbNpkf5iVORER8PHHImB9xRXyztlZvJPBkYNdGlaWlQXffQdHvhzDiYpSypz4oJhcTebiZ69v\nEwhLIjBUjDD1Ng5Fwmg0Mm7cOBITE7n66qu55EIDnJdffpnLLruMu+66i7q6OgDOnj1LSkpKz7kp\nKSmUWWkJuWzZsp5/O3bskL1Yv7ck7LQJN8cXC+qcFQmdTjzRtiiRoLFvn3BCO4kkCZGYPFle9E+p\nwPVbb8HPfub+dVzBZE14ig35G/jR8B9RVRbVTyQ0Gg0ZsRkExhfJFom2znb+lL+I3//fLqfnUyck\nQF4eTJgg73hHWU2OMBjgyy+CiGkZz29WyH/4tTVwyJ4lodPqMFYX8/LLvfdKb+FQJAICAsjLy6O0\ntJSvv/6aHTt2cO+991JUVEReXh5JSUk8ZMeJaC3Fy1wkZsyYIXuxiomEFywJSZKEu8mBJQG+lwbb\n1iZcR87MRdBoFHQ5FRbarqSyw8mT0DX6LX6723rRlCVKWBLV1SLIeYO8l1ScnBz46ivPXX/twbXc\nfuntNluOZMRm0BF+SrZIbD9QAAFdVEZ/quxCLTBKRrdFAoTL6Mr0yRxtkh+8ttXcz2FMIiOM66/3\nA5EwER0dzbXXXsv333+PwWBAo9Gg0WhYsmRJj0spOTmZErM+waWlpSQrMHGly9jFruJdHKo4pIy7\n6cJMCWsBL6tWAAAgAElEQVQuM0/R0tlCgCaAMG2Yw2OTIpJ8Kg32zBlh1stNMzShmEicPy+m9zjJ\nzl1GOqf8ia/OfMUXp75weLwSgesNG0Quv+VNYaC4/nrYvNkz1z5Ve4qC6gLmDptrUyTSY9KpDzhF\nebnwwzviX3sPE9aRwmcnPlN+wWbsKd1DdEg0oxPsdHmUySh9FjWSlTmnNrDVksNedpNOq0Oj9Y3A\ntV2RqKqq6nEltba2sm3bNrKzsyk3+8J+8MEHjB07FoD58+ezbt06Ojo6KCoqorCwkIlWZl3KKUY5\n33yetQfX8tONPyXxhUR+/a9f8+sJv3a5+6s5IUEhBAcG09jR6Pa15FLdanvYkCW+Zkk4m9lkQrEM\np8pKUZ3V2urUae/s20ysLpqVP1nJ0u1LHT4UKGFJeNPVBGJqYEWFcA8qzVsH3+LWMbeiDdTabDmS\nEZvBmYZTJCTIi43sKTrMZN1iTtWeoqKpQvlFX2Dj0Y3cnNW/V5MrDNEbaNbIjxlabcnR7NiSkIJ8\nQyTsZjedO3eOxYsXYzQaMRqN3HHHHcycOZM777yTvLw8NBoN6enpvPLKKwBkZWWxcOFCsrKyCAoK\nYuXKlVbdTSH/HUJ4cDixobHEhMYQGxZLbGgssWGxhGvDyS3L5WjVUWamz+QnmT/hudnPkRKV0u86\n7mByOUWFRCl6XVvIyWwyMThyMPvL93t4RfJxpmeTOYpaEiDufmlpsk6RJIlvpGf542WPcuuYG3l2\n17NsOrbJZr8ecD8mceYMHDsmZhJ4i8BAkYWzeTP87nfKXVeSJNYeWsvqBasB2x1uM2Iz2HRsU08a\nrKNK6BMNh3lg/J1EdV/NtlPbuP3S2+2f4OLaNx7dyKZbNylyvXSDgfYg+SJhGZPoMnZR11Zn1/Ws\n0+owBvqBSIwdO5Z9+/b127569Wqb5yxdupSlS5fafdGOJzpoaG+gtrWWurY6attqqW2tpbatlob2\nBq4feT3ThkxzuR24HEzBa3cL8+Qip0bCRFJEEh83fuzhFcnH2aC1CcUynEwXKS+XLRKf5u+kLaCa\n++fcQIAmgKeveZpHP3+U+SPn20wtNrmbXE0hffttkU8f7F4Zj0MkSbLZzgGEy+nFF5UViYLqAtq6\n2piYPJGuLmElWPMkmwrqrrggEvYyy9rboT74MNdNHENi5Y/47ORnHhGJfef2EagJ5NLESxW5XuZg\nA10hlbI/J5bupqqWKuLC4uymuOu0OroCWqhXeKSuKzg5y0kZAjQBxITG2JzQNhDodQM769pZS8KX\nCuqKikSLAmdR1JKIinIqLrHs82cZXvkwoSHii/iTzJ+wfOdy3jr0FndedqfVc8LCxJe+tVV+KqYJ\nSRKupr//3bnznOXv3/+djws/5sNFH9o8ZtYsuP12IXhx8jycDiltKCUjNgONRtMzu9uaGA6NHkpJ\nQwnXD+miuNj+7eW7vc0QeY5LU4YRFxXCkzuexCgZCdAo2whi49GN3JR1k11hdYaUuHgIq6Kp2Uhk\nhOO1WrqbHBXSAYRrw+nS+EkK7MXKQFddO2VJ+FgKrDuWhGIxiUsvlV0AcLjyMEdqv2dBeq8YaDQa\nls9czh93/NHuVEJX4xIHDwq3wpQpzp8rl+9Kv2PpF0vZU2p/poFOJwrNPlbQGK1o7i3+sjdMKSQo\nBEO4gcjkUocZTh/l5hNnHElQQBBpMWnEhMZwoNz5LDZ7mFxN1mZHuEpwYDCazkhOnZX3mG/pbnJU\nSAfCkuiQfMPd9IMViYGulXDGkkgM76269gW8LhLnz8PYsbItiRd2v8CgM79l+pS+mWRXDr2S0fGj\neXXvqzbPdVUk3noLfvpTzzX0q2yuZOGGhby54E1aOluob7N/91A6y8k8G8dRrCEjNoMgGbUSuwoO\nkxkzpufnucPm8tlJZbOcjpw/QltXG+MHu2AK2yG408DJcnlxCWeb+wGEBoXSJbVTV6/gFCwX+eGK\nxADXSjhjSWgDtT4z67quTrQViI93/lxFspu6u0VmU1aWLJEobShly/EtVHx0Lzk5/fc/fc3TPP3N\n0zR3WB/o4krw2miEd97xXFZTl7GLRRsXccdldzB/5Hwy9ZkU1hTaPee662DbNhRrEGduSTiak5ER\nm0FHhONaiaM1h8nJ6CsSn55Qtl7ivfz3uHH0jYq5mkyEdhsoOi9fJHrcTXv3Evjtd3bTX0FYviGB\nYdQ2eb9d+A9XJAbaknBCJMB30mBNVoQr3zFFLInqajFbNDlZlki8+N2LXJv8c1LiY63OtM5Oymb6\n0Om8tOclq+e7Ykl8/bVoiXGhGYHiPPHlEwRoAvjTjD8BkBmXSWG1fZFISBAeOntjP53B3EXiaHZ3\nekw6jUGnMCuZ6kdNDTSGHeaaS3pFYkbaDPae20tju3Kp6UoU0FkjQmOgtEaeSPRxN73zDhP+tgWD\nzvGgkbAgHXXNqkh4DV92N4HvzJVw1dUECmU3VVaKfgiDBjkUidrWWv65/5+MrHnAblbNn67+E//z\n7f9YTVxwpaDOk7URm45t4u1Db/POTe/0ZMNk6jMpqC5weK6SLifz1taORCIjNoPytlO0tYmnaGvk\n5kJg0mEuHdQrEuHB4UxMnsiXp5VRtoLqAqpbqpmSqnygKDrIwNkGF9xNZWWkHywmvcVxCpxOq6Oh\nVRUJr+HL7ibwnbkS7oiEXi8MAbcK28+fF4/FSUkOReLv3/+deSPncXRPqt0A8gj9CG4YfQPP7Xqu\n3z5nLYn2dnj/fVi0SP45cimsLuTuD+9mwy0biNf1+vsy4xy7m0C0Kt+yRbjD3MUZSyIjNoOiOtEy\n3JY1sWNPDQQ39pvroGRcYmP+Rm4YfYPi2VIA+lCDbHewpUiUG3SM/cpxT/eIYB2NbapIeA2/sCR8\nIA3WHZEIDhaZNm5laJhEIjFRiIQNxWnrauMvuX/hkSmPsHu34yyjP07/I6/te63fe+ysSPzrX8Kt\nk6JsrSfNHc3c+O6N/NfV/8XE5L5dC0boR8gSiREjIDoavv/e/fWYVwjLcTc5Gj60I/8IaeGX9IsV\n/Gj4jxRp0dHU0cTaQ2s94moCSNAZqG5zISZRVsbqa/QM/cRx76fwEB1dmhY6O91YqAL8cEVigC0J\nOW3CzUmKSOJsk39bEqBAXMIkEmFh4p+NqPLqA6u5IukK4rrG0NgoppfZIyUqhZ+P+zn//c1/99nu\nbODaE64mSZK4+6O7uSLpCu6+4u5++zPjhLtJTu8xJVxOkiT1ZDc1NYlguLV4j4lBEYNo6mhi0NBG\nqyIhSXC44jDjU8f02zfWMJaWzhZO1px0eb0nak6Q83oOOSk5TB863eXr2GNQpIH6TidjEpIEZWWs\nGmskrKxSzF61Q7g2HF2099Ngf7giMYCWRLexm4b2BqeKB30pcO1KSw4Tbmc4mWISYDMu0W3s5oXd\nL/Do1EcvtAaXF2h/fNrjrD+8nm/OfNOzzZmYRH29yCC6WbkUfABe2/caRyqPsPJa621t4nXxoquw\njM+vEiJR11ZHaFAooUGhPT2b7L2/Go2G9Nh0IlKsp8GeOgUkHmZiWn+R0Gg0zBk2x2WX0yeFnzDl\njSn8esKveX3e6x4b3JUSa6BRctLdVF2NpNNR1F2FdPNNsG6d3fN0Wp0qEt4kOjSa5o5mOrs9b8vV\nttUSHRrt1Ac2KTLJ6+4mSRIiIbMTBs0dzf2ebhWzJMCmSGw6tgm9Ts+VQ66U5WrqWZsuntU3rGbh\newt5dNujtHW1OeVu2rhRTOuLUbBxQHtXO0999RRvLngTndZ62bdGoxEuJwcZTiAa/lVVibbpriK3\nkM4ce7USe/ZA2JDDjDH0FwlwLRXWKBl5+uunWfLhEt6/9X3unXCv4mmv5qQlGGiV2eSvx91UVoZx\ncBLBgcEE/ewOkTdtxxrUaXWERaki4TVMrUFq2zzfHEXuHAlzfMGSKC8XT0CWHSytIUkSE1+fyI7T\nO/psdzvDSYZIrD20lvvG34dGo3FKJEC06zj4q4Oi39CrV1Ae8L1skXj7beVdTWsPrmWsYSzjBtmf\nuSqnVgJEcd+8ee5ZE5aFdHJEIj0mna5I62mw3+2RaImwLRKzh83mqzNf2a2MN6exvZGb372Zjwo/\nIndJLtOGTJN1njtkJBro0Drpbioroy1RL97LyZPFjkOHbJ6n0+oIiWhWRcKbDFRcQu5EOnMSwxOp\na6uzWfQ1EDgTj/im+Bvyz+dzuPJwn+1uWxKVlb0iYSPD6XTdabISsmhtFd85uZPKTCSEJ7Dhlg08\ncdUTPPD9tZxKe8LhDaq7G779Vsw/VgqjZOT53c/z+6m/d3isKS4hB3ddTs5kNpnIiM2gUWu9oG5n\nXjlabYDNquN4XTwj9CPYXeJ4FnVBdQGTXp9EvC6eHYt3kBzl/vwaOaQnxWAManL4OenqEhlwOh1Q\nVkZjQpT4vQMC4LbbhDVhAyES3u/f9IMRCWtqPFBxieoW+bMkTGgDtYwbNI7cMuVmhDuLMyLxyt5X\nyIzL5Hj18T7bFXE3OYhJFNcXkxqdyvffi4I2Z5vzgXDh3DbmNnbdkUdzRB4TX5tot4/Q8eNCs6IU\n7DS/5fgWIkMimZE2w+GxctNgQbjE9u93/e/gTI2EiYzYDKq6TlFa2jcFt70d8s+L+gh77iA5qbD5\n5/OZ/uZ07p90P6/Oe9WjXaMtiYsNgJYEyhvsm8lNTWbzrcvKqI0N6+3btGiRiEvYcDnptDq0OtXd\nNCDU1cHgweKh1JwBtSScdDcBTEmdIutpylPIFYnqlmo+LviYp2Y85RmRMHc3WTT5a+5opqWzhQRd\ngtOuJmtkDkrC+PYWfjPhd8xaM4tVeausHpeXB9nZ7r2WOZIk8eyuZ/n91N/L8qXLjUmASAqbOVOk\n67qCZUsORzMiwDR8qIiYGDEGxMSBAxA3+jDjksbaPd9RKuyJmhPMWTOH52c/zz3j75H1eyhJUBAE\nthk4WWHf5dQn/bW0lIrY4F4L6rLLxDzU776zeq5OqyNIFYmBYf9+aGmB997ru30gLQln3U0AU1On\nsrvUuyIhJ7Np1YFVzB85n5yUHI5VHeuzz63spu5uofCmfEsrlkRJQwmpUakuxSOsERAAsTEa5g/5\nOdvv3M4j2x6hob2/vb9/P4yzHzZwip3FO6lqqeKGUfKGY5tiEnJH8LrjcjKfxyzXkkiLSaOorojU\nIcY+LqfcXIgaZjseYWJS8iSK6oqsTqsrri9m1upZPDn9SY/Mn5BLcKeBUw5Eok9LjrIySiONDIoY\nJH7WaIQ1YcPlpNPqCAz1cZFoa2tj0qRJjBs3jqysLB5//HEAampqmD17NiNGjGDOnDk9I04Bli9f\nTmZmJqNGjWLr1q2eXb1M9u2D4cP7/y183ZKYnDqZb0u+xSh5pxOkHEtCkiRe3fsqd19xN0Oih1DV\nUtUnjuJW4Lq6WlSDmYZrWxEJk6tJklBEJKC3oG5s4ljmDp/LS9/17/O0f7+ylsSzu57l4ckPy86A\niwmNITQolPImeZ1xr7sOPv/ctYZ/JkvCaITSUnmWRERwBFEhURgyyvuIxJ490BHrWCS0gVquThPT\n6sw513iOmatn8ruc31mtIRlIdJKB4irHloS5SBSEtZAaZfYG3nYbvPuu1YHg4dpwAoJ9XCRCQ0P5\n8ssvycvL4+DBg3z55Zfs3LmTFStWMHv2bAoKCpg5cyYrVqwAID8/n/Xr15Ofn8+nn37Kfffdh1GJ\nngBusm8fPPww5Of3rQAdMEvCRZEYFDGI2LDYfk/nA4Wc2dbfFH9DYEAgU1OnEhgQyPC44X0Cqm65\nm8zjEWDdkqgvYUj0EAoLRSxCicpn84K6J696kpf2vERdW++DkCQpKxKHKw+z99xeFo9b7NR5zsQl\n4uOFd+OLL8TPnZ3i7/v55/Daa/D443DnncIdZElFk4hJVFaKGExYWP9jrJERm9GvVuK7PUbKu49w\nSYLjboiWcYmqlipmr5nN4ssW87scBcfuuUhkgIHSOifcTWVlHAmqJTXaTCRGjBDNK7/6qt+5Oq0O\nja+LBIDuQhSwo6OD7u5uYmNj2bJlC4sXiw/04sWL2bRJzI7dvHkzixYtQqvVkpaWxvDhw8nN9V7g\n1cT+/ZCTAzfeCOvX9273trtp5UrHXTq9FZfo7BTuf0euhVf2vsLdl9/d40cfqR/ZJy7htkiY4hGm\ni5l6l1+guKGYIdFDFLMioG9BXaY+k/kj5/M/3/5Pz/6SEtBqReBaCZ7f/Ty/mfgbQoNCnTrPmbgE\nCJfTvfcK4Y+IEIOJnn5auMTDwyEzU1gcZWV9zzNZEnJdTSbSY9IJMvRmONXUwLnW08SHxxEdGu3w\n/LnD5/LZic8wSkbq2uqYu3Yu80bO4w9X/kH+IjxIrDaR8kaZ7qbWVmhu5rBU3q9flS2Xk06rQwry\nvkg4HF9qNBq5/PLLOXnyJPfeey+XXHIJFRUVJCaKQFZiYiIVFyJTZ8+eJcesiX9KSgpllp84YNmy\nZT3/P2PGDGbMmOHmr2Gb5mY4fVqMI1i0SFgUjzwi9nnT3bRqFfzXfwlPyqFD4sZkjampU9ldspsl\nly/x+DrNKSkRD+5are1jTAHrl3/8cs+2kfEjOV7VKxKxseJpqqtLBPucwlIkAgPFz5WVPQOWi+uL\nmZo6lV27lBMJy4K6J656gvGvjef+Sfej1+kVtSJK6kv48PiH/O9v/9fpc52xJADuuUfEUdLShMvI\n2vjRoCDRGPDrr4VwQG+dRJ6DORKWZMRmUGhWK5GbCxk5h0lx4GoykRaTRmxYLDuLd/LY548xNXUq\nz1zzjEeL5JxBH2bgfIt9K7/H3XT2LNLgwZQ0lPZ1NwHceqv4w/z1rxDSm6FVtL+I09u+p/zEMsxu\nmQOOQ0siICCAvLw8SktL+frrr/nS4tFXo9HY/aNZ27ds2bKef54UCBDm8yWXiJvd9OnCW3H8wj3M\nW5bEF1/Ao4/C9u2wYAE88IDtc71lSciJR6w+sJr5I+f3Se+1tCQCAlxrvw30bclhwsLlZHI37d6N\n3fbgzmApEumx6dycdTMvfPsCoKyr6cXvXuQ/sv+D2DAbTwl2kNsy3EREhMhyGjbMukAAPPaYGAJ4\n++0idbWpo0mcGxzhcCKdJRmxGTQF91oSe/ZA7EjH8Qhz5g6by3VvX8fohNH874/+12cEAiAx3EBt\nu0x3U2kpXUkGwrRhhAeH9z0oNVXcpD7rm801YeoEkq8dSkLCsj4P1gON7Oym6Ohorr32Wvbu3Uti\nYiLlF76o586dw3Dhi5ycnEyJWYllaWkpyckDU9xii337er/QgYGwcGGvZRcXFmd1poDSmFsShw8L\ni+bdd2H0aFixQjy12ZpHfEnCJZQ3lVPVosQcUPk4ymySJEm4miyCh6PiRymXBmtpSUC/NNji+mKi\nGUJxsejGqgTWmvz94co/8OreV6lsrlRMJGpba3kz700eyLHzlGAHZy0JOWg08Oqr4vd/7DHXCulM\nZMRmUN1d1EckpATnROLOy+7krsvv4tXrXvVIy293GBxtoL5bpruprIzGhOj+VoQJKy4nnVZ0gfW2\nu8nuu15VVdWTudTa2sq2bdvIzs5m/vz5rFol8sdXrVrFggULAJg/fz7r1q2jo6ODoqIiCgsLmThx\nos3rDwT79sHll/f+bPpbSNLAuJskSeqxJM6ehWuvhRdfFFYNiKeM118XrgCzJLEeAgMCmZQyiW9L\nHLcWlsvqA6v5y56/2E2fdGRJfFP8DQGaAKam9n18H6kX7ibza7uc4WRLJC48oEiSRElDCWePpjJh\nggvuLBtYs3yGRA9h0ZhFPL/7ecVEYuW/VzJ/5HxSolyLtmfqMzlZc1Lx7LfgYNGXatMmeO0d5wvp\nTKTHpFPafIqGBpGCnpsLVQHOicT4weN5ce6LHmvU5w6pegPNDpr89bibysqoiQ3rG7Q25+ab4ZNP\nhH/8Ajqtjg7Jx0Xi3LlzXHPNNYwbN45JkyYxb948Zs6cyWOPPca2bdsYMWIE27dv57HHHgMgKyuL\nhQsXkpWVxY9//GNWrrTexXIg2b+/r0hMnCj84/v397qb5Oaau0JrVysajQZju4558+Duu/v3+7nm\nGuEHfvBB69eYkjJFsXqJfef28dDWh3gz701++v5Pbbb9cJTZ9OreV7nninv6/X2jQ6OJCI6grLE3\nFuWyJWHeksOEmUhUtVSh0+rY+124YvEIsD1T4vFpj/PGvn9Q21nuVmdcgNbOVl7OfZlHpjzi8jUi\ngiOICY2htKHUvcVYQa+Hjz6Cv6+pIKDFuRoJEylRKZxvOc/gIW189RWE6jopaihkdPxoxdfrDdIS\nEmgLrLR7/zAXifLogP5BaxMJCaKf05YtPZv8QiTGjh3Lvn37elJgH7kQ8Y2Li+Pzzz+noKCArVu3\nEmPWBnPp0qWcOHGCY8eOMXfuXM+u3gHt7SL+MNasuFOj6W2ZEqYNI1ATSHOn5/ojmZr73XqrePpc\nutT6cc8+KzKdPvmk/z6l4hJNHU3c9t5t/OVHf2HXL3YRHBjMlH9M4VTtqX7H2rMkqluq+ajgI+64\n7A6r+y2D1265m+zEJIrri0mNEu04Jk1y4fo2sCUSyVHJXB13J1E/WUGAm56PVQdWMSF5ApcY3BuM\nnal3PO/aVUaMgF/8toJ93yRy7JhIZnBGJAIDAhkSPYSEzNNs2ABZVxaSGpVKmFZmDq2Pk2zQgTGo\nJ25jDfMOsKfDu2y7m6Cfyyk8OJy27hZaWkRdqbfwLSefwhw+LIroLPO6TS1TjEbPu5yqWqppq9HT\n1QV/+5vtPvyRkfDGG8LtZPnkMCllEnvP7pXdFdMWv/nkN0wbMo1FYxcRpg3jzevf5JeX/5LJb0zu\n1wLBnkisPrCaeSPn2exHpVgarDV3k1mTv5IGEbTOzxfZa0phr134JbW/pyZljVtP76b5F3Ia+TnC\nE3EJc6IHVzB7ciLXXivcoReSGmWTEZtBZGoRmzaBYYxzriZfR68HTav9MaY9MYnSUgp1LbYtCRBZ\nLDt29AwG12l1tHS2EBFhe1b4QHBRi4RlPMLEmDFiBsCuXZ7PcPrbqmraavVs2GA/nRSE2+naa/u7\nnaJCohgeN5y88jyX1/H2obf5tuTbPumqGo2G/5z4n2y4ZQP/sfk/eHbns0iSRHMzNDSIh3ZLTAHr\ne66w3S/HUiRcbs3hICZRXF9Mkm4IVVXyZ17Iwd50upMHBjEj+i6W71zu8vX/9PWfSItJ6xfPcQW5\no0xdpaK5gjlTE1m4UFgRzlpQ6THpaA2nqK2FwKSLSyTi4kBqtC8S5u6mw9pa+5ZEVFSfxAyTSERH\nuzkC2E1+kCIBvS4nT1oSkgSr3q1m+kS97G6hzz0nUmQ/tZi54o7L6WTNSe7/9H7euemd/ul3wFVD\nryL3l7m8f+x9Fr63kB2HChiaZrR6Q7AVsDZHEXdTd7d4nLeck2khEsFtqWRm9nbuUAJ7Kbv798Oj\nUx9h3eF1nKk74/S1txzfwj/2/4O3bnxLkXidMy3DXcFUSPf00yILz1kyYjPojjpFYCDUBV9cIhER\nAVKzgZLa/v2lTDQ2QoTOCOXl5Gkq7VsS0OfDFxYURktnC1HRkioScnEwErYf5umvltx2m2j4Fxvi\nOUvi/HnQRleTam8gsAWRkSLb6e67+z49uCoSHd0dLNq4iP935f8jO8l2Sk5KVApf/fwrkiOTuevL\nuZy4OYbpb07ngc8eYM2BNRypPEKXsaunT5O9G5xlGqxL2U01NcLcs0xZMj1pXchs6q4ZoqirCcT3\ntLa2fwfnlhZRmDk1O4Ffjf8VT3/ztFPXPV51nCVblvDeLe/1ZAy5iydjEtBbSBcQYN2ydERGbAYt\nIae49FI4Wn1xiYRGA6FdBk6ft+9uiu2sRIqJoaStgsGRg+1f1MzXGRgQSHBgMJGxbapIyKGjQ9Sb\nWOstY42uLhGTsNWpc9gw4XNvq/GcJVFcDFGJzs+SmDULfvxjeOih3m1TUqewq2SX05lYT375JIZw\nA7+d9FuHx4YGhfK/P/pfloYXsbj2NE9c9QRJEUl8XPgxC9YvIHpFNJuPb+bOy+60e520mDTKm8pp\n7WwFXLQkrLmaoLcRTlMTxfXFNJUOYbTCyTLBwaKDs6Uf+OBBGDVK7H9o8kO8f/R9Pjz+oaxrNrY3\ncsP6G3j6mqeZlKJclH1Y7DBO152my9i/QZwSmNdJuEJ6TDpN2iI2bmmlpKGEzLhMBVfnfcI1Boqr\n7bubYprL6BxkICE8AW2gA5+zha9Tp9UREevdDCeFMss9z7FjQig2bBCNyuQcn5Ji1oHRCosWwT8K\n4qjO8pxIhOmr0Yc5nwf//PPi5vq3v4lYRnpMOkbJSHF9MUNjhsq6xraT21h7cC3779nvlGujqAhG\np8UxK2MWszJm9Wyvb6unutWx6AUFBJEek05hTSGXJl6qrEhoND0up+L6YiILUpm30Mlry8D0XTV3\nE5rXR8SFxbH5ts387P2fsfXUVp6b9ZzNrB1Jkvj55p9z5dAr+eUVv1R0nWHaMBIjEjlTd4ZhccMU\nvTb0HTjkChmxGZyqPUVNQD6ZcZmOb5J+RnSggXMNtgeINzZCREMZTYYYhkTbuRmZsPB16rQ6dNEt\n1Nc73yBUKfzGkjhwQKTkbdhgd3Z4D/biESYWLoTCA3rON3mm6rq4GIKjXZslERUlRMI0sEWj0Tjl\ncqpsruTnm3/OqgWrSAi3crO1g63MpujQaDJi5RUImMclXBIJazUSJpKS6Cor5XzzeU4fGqy4JQHW\n4xKWRXRTh0wl71d5VDZXMvH1if1Gt5pYsXMFZxvP8pcf/UX5heK5DKe2rjbautqIDnHcjM8WsWGx\nBAYE8tWZry4qV5OJ2BADFU32LYnwmlJq4kLtB61NWKTW6bQ6wiK9a0n4jUjk5cHixcKasDM7vAc5\nIjF4MKQl6jl4wjOWREkJoHOtTTiIbE/zQWxyi+okSeLnm37O4ssWMzNjptOvK3fYkD3MM5wiIoT7\nr1TLW8MAACAASURBVLXViQtYq5EwMWgQNafzGRQxiOLTQWR6wINhLQ3WWqV1TGgM625ax4M5D3L1\nqqv5a+5f+7gEPz3xKS/nvsx7t7znsfGanopLmIYNuRtgz4jNYMvxLRelSCToDFS1WheJ7m7xmQ+p\nKqM8OtBx0Bp6A2IXCA8OJzTSu3Ou/UYkDhwQ8YWbbxbWhCPkiATArCl6Cko8527q0rpmSYAQibNn\ne3+ekjqFXcW7HJ73yt5XqGqp4qkZTzn9mpLk3GxrW5iLhEYjrIlqZ95mW+4mgEGDaDhTgF6bytCh\nfRpnKoalSHR1iXkk1lydGo2G/8j+D3b9Yhf/zPsn16+7nqqWKk7VnmLxpsWsv3k9yVGe62E2Is4z\nabDmY0vdIT0mnZ3FOy9KkRgUYaCu07pINDeLTrqas2WciXBQSGfCiiUREqFaEg6RJCESl10Gt9zi\n2OVkNMqfQXzdNXrON1V7RKmLi6EtQDlL4vKkyymoLrBb4Xm67jRPfPkEqxascsn/W1Mj0knNiuhd\nwloarFMZTg5Eoq3kNOGdygetTViKhCnG1TNAxgoj9CPYfdduRsWPYtzfx3Ht29fyxFVPcOXQKz2z\nyAs42w1WLqZhQ+6SEZtBt9R9UYpEcqyBBhtN/syrrQtDW+VZElYC18Hhqkg45ELGI4MHw4QJYgTj\nYevuXwBOnhTvdZyMpKL0QXpCYqtdnv9rjzMl3dR1VhCvi3fpfEuRCAkKYdygceSWWR/kJEkSS7Ys\n4eHJDzM6wbW7pxJWBPRaEibXi9NxCXsxiUGD6D5XBg2pHhUJ84I6uU39ggODeW72c7y54E1uH3s7\nv57wa88s0AxPxSSUsiQyYjPQaXWkxaS5vygfI1Wvp01TS7exf98M8w6w+cF1tpv7mWMlcB2ka1ZF\nwhEmK0KjEf8cuZzkuppAVFxLYdUuFQrZo70dqqO+YGT8CLfcTeYiAfbrJV7b9xoN7Q08NOUhq/vl\nIGdkqRz0Oj3BgcFUNIvIu9Mi4SAmEVh5ntZyz1kSloFrZzu/zsqYxR+u+sOANLhMj02ntKHU7bYt\nlihlSYzUj+SyxMt8rtW3Ehjig9B2xVittTKvtt4bWOGyuykwVLUkHGKKR5hw5HJyRiRiQmNolxop\nKVM2z7y0FEImruGOS603wZODLZHYVdI/LnGm7gx/2P4H/nn9PwkKcD2zWSlLAnrbhoOLImEnuym0\nqo6aooFzNyk5aEhpggODSY1Kpai2SNHrVrZUKmJJzEibwSc/s9K58iJAr4fAduutORobISG0Eamr\nizJNk7wsQ4vAtU6rIyBEFQmHmCwJExMniurXI0esH++MSAQGBBKpjaa40kazHhc5XtRE25APWTR2\nkcvXGDzYukh8V/pdnxkCkiSx5MMlPJjzoNtdRZXIbDIxMn4kx6rEeEen+zc5cDdF1bZw7lgqo0a5\nv05rmIuEJIkYl63CTF/AE3EJdwvpTGg0Glkzrf0RvR40zdZFoqkJ0rRldCYZSIlOlWdJmUzYC0/A\nOq0OTbCa3eQQS5Gw53KSJOdEAiA+XE9pjbIZTpuOf8CgjmkYwm24TGRgzZIwhBuI18Vz9PzRnm2v\n73udurY6Hpnq+mwCE/v2icp2JTDPcHLKkjAaxdNUvI1YjsFAbGMXCUHJdosl3cE8JnH6NOh0tr1f\nvoAn4hLuFtL9EIiLg+4G25ZEiqaMpoRoeUFrEKX+Wq14CkaIhBSkWhJ2aW29UAFs4Va45RYxAtTS\n5VRcLNomONNnJj48jvaAappsJw05zfaqNUwIcd3VBKIt8/nz/XvJm7uciuuLWbp9qdtuJhA38ePH\nxewTJbAUCdnZTTU1oprQxqi5BmMrdaGQk+K5YVHmMQlfdjWZ8IhIXKiTULFNXBx01FkvqGtshMFS\nGbVxdibSWcPswxeuDfdtkSgpKeHqq6/mkksuYcyYMfzlL6JidNmyZaSkpJCdnU12djafmE3KWb58\nOZmZmYwaNYqtW7e6vcDDh0WlteXg9kmTRB6ypcvJchKdHPQ6PfqUGsrKHB8rh7KGMkqN33NN8ny3\nrhMcDNHR/Z/Ap6SI4LUkSfzyw1/yQM4DiqQXfv45XHVV//faVVyuurYXjwBK6ks4HxHMhORyBVZp\nHXN3kz+IxAj9COXdTQplN13MBAeDtsNASY11kUjsEoV0soLWJsw+fDqtju4AH3Y3abVaXnzxRY4c\nOcJ3333HX//6V44ePYpGo+HBBx9k//797N+/nx//+McA5Ofns379evLz8/n000+57777MBrdm79r\n6WoyYcvl5KyrCUSGU3RSNaUKTYF8+9DbxJ+/geFD3Z/AZc3lNHXIVHaX7OaN/W9Q3VLNo1Mfdft1\nALZuBSWHCWbEZlDaUEp7VzsGQ9/CQLvYi0cghg1V6SK4RD8wIiG35sabKF113dndSUN7g8uZeT8k\nIjUGyuqsxyTiO8o4E2mU726CPr5OnVZHW3dLv8FpA4ldkRg0aBDjLkTrIiIiGD16NGUXHretdSPd\nvHkzixYtQqvVkpaWxvDhw8nNtZ7TLxdbIgG9WU7muCQSOj26eOVEYs3BNQQeudOpUY+2sCYSWQlZ\nVDZX8tjnjyniZgLhtvvsM2VFIjgwmKExQzlZe5LRo0Ufqgrbrfd7sZf+inCxlQfFMTzCcyIRHg6d\nnSKV2R8siSHRQ6hsruzpvOsulc2VxOviL8q0VaWJ1ho412DdkohrKeVEaItzloSZu0mn1dHc2Uy0\nF+P+sj8Bp0+fZv/+/eTk5ADw8ssvc9lll3HXXXdRV1cHwNmzZ0lJ6e14mpKS0iMq5ixbtqzn344d\nO+y+rj2RmDRJ/CHMXU6uWhIhMcqIxIHyA9S311O190pSnfhc2MKaSARoArg6/WoemvwQYxPHWj/R\nSY4cEabz8OGKXK4HUxpsUBDMmCEGKjnEgbupuL6Ykq5EUoI8JxIajXigKygQbk0lJ995gqCAINJj\n0zlZa7sjqTOorib56ENtB66jm8o4ElzvvCVRU8OOHTv4+LWP+f7t7+noWKbcgp1Elkg0NTVx8803\n89JLLxEREcG9995LUVEReXl5JCUl8dBDtou3rBUTmYvEjBkzbJ4rSaKHvy2RCAjo63IqLxdPfs4+\nwQ+LHUaz7qgiIrHm4BpuyrwdbVCA7Gl09rAmEgAbbtnA41c+7v4LXMDkalK69ss8DXb2bNi2TcZJ\nDkSioLyEKk0K4Y2eEwkQD3RffCFSXwegJs5tlJxSZxo2pOKYxHADNe3W3U0R9WXsD6hwPnBdW8uM\nGTNYfP9i0hakMWzYMuUW7CQORaKzs5ObbrqJ22+/nQULFgBgMIjOkBqNhiVLlvS4lJKTkykpKek5\nt7S0lORk1xubnTkjzH4794s+LieTW8DZL/RVQ6+iqPsbSkrdi590G7t5+9DbXBl1hyKuJujf5M+E\nEi4mc5R2NZkwz3CaNUuIhMNW7w5iEgWVxRhjM3rGmHqKuDghEr7uajKhZFxCqRqJHwKDoqw3+Wuu\n7yKkqYrqKC1RIU48MVoErk1zrr2FXZGQJIm77rqLrKwsfve73/VsP2f2aPvBBx8wdqxwecyfP591\n69bR0dFBUVERhYWFTJw40eXF2XM1mcjJEWM+8/NdczUBJEclEx0Sw4kGG9V5Mvmi6AuSo5IJrB2l\nqEhYsySUpLUVdu+Ga65R/trmImGaRX3smIOTHMQkyhqLCU8eNSAi8dVXfiQSCqbBqjUS8kmKi6JL\nau8XDwquKactKobBcU7eDCwC194WCbuPo7t27WLt2rVceumlZF/4pjzzzDO888475OXlodFoSE9P\n55VXXgEgKyuLhQsXkpWVRVBQECtXrnSrd01enmORMHc5HTwoLAtXuHLIdLYEfgW47uNfc1C04Sj+\nt/MuL1sMhEh88414nz3xQTSlwUqShEaj6XE52W2nYcfdZJSM1HaXkTx6DGz27BsTFyf8yv4iEiP0\nI3j70NuKXKuiuYJB4S4Mtf4BEq/XEFZl4HzL+T6xB11tKY36GOeC1tCvTsKnRWLatGlWU1hNKa/W\nWLp0KUuXLnV/ZQhLYqGM0ZS33AL33CMCjMuXu/Zac0dOZ53hQ9ra/pPQUOfPb+po4sPjH/LnOX/m\nz+8rJxLWWnMojadcTQAJugQkJKpaqkgIT2D2bFi7Fn5rb+S2HXdTZXMlAZ2RpE1Ih1c8H5MICcFj\nrT+URlFLoqmCyxJlzAlWQa8H7TkRvDYXiaiGMmqH6pwLWoN/uZu8jRx3E4gK4bo6MdTG1eycGWnT\n0aR9TWmpa1W87x99nyuHXokh3EBxsbKWRHm5vJGtrvLZZzBnjmeurdFo+ricZs6Er78W6aU2sWNJ\nFNcXI9UPYcTEGOEnc2rcnXPExcHYsTYLv32O5Khk6tvqaWxvdPtaanaTfPR6CGjtn+EU3VxGZayT\nhXTQp8mfSSSUSIJxFZ8ViYYGcXOUM5rS5HIaN078vysMjRmKFh27Cxw5zK1jcjUBiopEWJho51Kr\nbP/BHsrKhKUyfrxnrg8wKn5Un8rr4cNhzx4bBxuN4inKRt+mo2dLkOqGkJKqEb1XZBVeuMbQoTBt\nmscurzgBmgCGxQ3jRM0Jt6+lVJvwHwJ6PUhN/UVC31pGWXS3akl4ikOHRKM5uU9x998PTzzh3msO\n7pjOjtNfOX1eWUMZe8/uZd6IeYCyIgGejUts3SqyjgIDPXN96Bu8BgepsLW1ogm/1vpUvX0nitEH\npYoMtkGDPBq8XrwYXnzRY5f3CCP0I3pSjt1BtSTkExcHXfV9RcJoBENnGUXhrc6lv5ouaF5M19FM\nVJQHXQkO8FmRkOtqMpGeLm4+7jAydDr7qp0XibcPvc2No28kTBtGZ6d4uB08WMaJDz8sa2C3J0XC\nk64mE+a1EtCbCmsVB+mv+WeLSYm8oMAeFgl/ZFziOPIq8ty6Rrexm5rWGnnzD36I/P3v4rt7Ab0e\n2qv7ikRLC6QElHEkxMlCOhDNLZuboasLbaAWjUZDeJQ9/6xnuWhEQgkmJEynsPMrqy1H7LHm4Bru\nvOxOQNQ0JCbKsIAkCd55R6RkOcBTItHdLZr6eSpobcLSkpg2TViKVjtbOiikO1NbwohEVSRscXnS\n5ew7t8+ta1S3VhMTGqN4Lc5FQX09PPkk/POf0CEmAUZHQ2e9gfLGXpFobIRUTSkHtTUkRzpZKxYQ\nIC56oZOFTqsjNLJFsV/BWX4YImG6ITu4+V82JB2pO9CpDJED5QdoaG9g2hDhvJbtajp4UCiKWfGh\nLTwlEvv2/f/2zjssqjP9+9+hiYCKIIzIoCSCIFLsGo0tBEuKa4kYjIktRdmYYlmNMasmUckbNYn5\nRTdxzWo0sayrojEiGsWOqGAJ2EWHJqiIIKi05/3j5gwzMH3OzJyB87kur0tOfeaZM+d+7k4CTamS\nilkI8AjA7aLbqKii1ZCzMwUbHDqk5mAdORIFT+Xo/GyN+m6J+GAbo6tPV6TlpRm80FFGTKTTwvLl\nwLBhFMN94AAASt5tJvFG7sNaIfGohMGnOhtlXu5o4tDE8Pso5Uq4OrrCyVUUEipUVVGJ8PBwni54\n7RowbpzmVnY1+PlJ0LRgAA4b4JdYd34dxoePVxRC01tIJCQAQUFWFRLmDH1VpolDE/g298XNBzcV\n26KiFL8xVXRoEo/s5egTImoSmvBp5gNHe0dkFet+rjSRXyr2kVBLQQHwww/AokUUm791q2JXSydV\nTaIstwiVdvZo5e1v3L3qFPlzdBGFhArXr9N7gjeP/vGantA67P8yGVB5YwAO39ZPSJRVlGHD+Q14\np+s7im16C4m9e4F33rG6kDC3P4JDb+e1Fp/Eg+KnqHIqRM+QmiQvUUioxVSTkxjZpIElS2ix6e8P\njB4N7NpFxeIAtGrqjXuPa4VE+a0c5Lu4G+605qjjvLZ3FoWECrz7I44fB8aP1ykkpFKgLIM0CX3U\n9c1/bcZzfs+hnXs7xbasLD2ERHExcPYs8OabQHa2TjOYpvpNplBcTBnt/fvze11NKIfBAqQlPnhA\nQlUFLZrE0QvZcHzSBk2cakKxRCGhli6tu5gmJMTIpvrI5cCGDcD8+fS3ry8QGqpY6UibeeFBeYHi\nvVEtz0F+M1fDndYcdXIl7JqIQkIFswiJjz+msoxaTE729kBrp0A8raxEZlGmzsuuOr0Ksd1jVbbp\npUkcOAD06UO29yZNarvbaMAcmsTBg+QXcHHh97qaqKtJ2NlRYl09bUKLTyLlchZaQGlyRSGhFpM1\nCVFI1GfRImDqVFpJcowdqzA5ebV0hiOa4uHTmmiM3BzcaeFgeCIdRx1NolIiCgkVzp+nxDheuHeP\nluHh4epb2dXBTyZBePOBOv0Sp3NOo/BxIYYEqBr15XLo7iOxdy85vwA6WIfJyRylOSxpagLqh8EC\nGkxOWsxNF+VytHZRmlwumc6c6eg2SFefrki7k2b0+aK5qQ6XL5NpafZs1e2jRwO7dwNPnsDTE3BB\nbRisfV42ct2NSKTjqFPkr7S81JRPYBKCFRK8aRInTlB3IgcHKvKk5GxSh0wG+EO3X2LVmVWY1n1a\nvc5dOjUJxshpzQkJmUynkGjWjE4rMb3aggK+W5XqIkIagfP551FeVa7YFhVFpbhVyoNpMTddvyvH\ns55Kk+vsTCnp5kpHt1HatWiHxxWPceeRcVqWqEnU4bPPKC/C3V11e+vWtJrdtw+enoBzZa2QcCrI\nQbb7E+M1iTqO67IKUZNQUFhIoci8dQI7fhzo25f+r66VXR1kMqBlsXYhcb/sPnZe3olJXSapbH/4\nEKispO9XI+nplE3coQP9rYcmIZHwa3K6fp1KHoWG8nM9fWjZtCU6eHZASk5tO1s/P0pEOn9e6UAt\n5qbc0iyE+tWRwKLJqR4SiUQRCmsMYsMhJc6epYXm9Onq99dEOXl6Ag7l3sh/RGVinAtzkNmiiDfH\ntSgklDh/nixDxtZgqoeykKjbyk4NMhlQnhuMsooy3C66rfaYdefW4dUOr6KVi2p9Ic5prbU6+t69\nwNChtQf5+UGflnh8ComEBDI1Wbrb2gvPvICDmQdVtqmYnKqrqUqjmrpNFRXAQ8jRtX2dH50oJNRi\nil9CzJNQYt48clZrct6NGgXs2QMvt8eQlNVqEi5F2bjVvBSt3Ywst67kuHZ1chWFhDK8mpq4Lva9\netVuU25lpwaZDMjJlqB/u/5qtYlqVo3VZ1YjtkdsvX16Oa2V/RGAXpoEwJ+QqK4GVq0C3njD9GsZ\nyiD/QTh0SzWDTkVIPHgAuLmprdt04wbg4ClHoLeoSehDl9ZdkHrHcCHBGENBaYGYJwEASUmkdk+Z\novkYqRTo1g2BNxJQXVwrJJqVZKHE3aeeOVpvbEWTyMrKwqBBg9CpUyeEhoZi5cqVAIDCwkJERUWh\nQ4cOGDx4MIpq0scBYOnSpQgMDERwcDASExMNHpA+jYb05uxZSlhr1qx2m3IrOzXIZLSwH9BOvcnp\nwM0DaN6kOXr59qq3T6eQKCkBTp9WbQGnh08C4E9IxMdTS9gXXzT9WobSr20/nM45rdLBa8AAIDm5\npuK3Fn9ERgZDdTN5fUegKCTUYqy56cGTB3BxdDEuS7ghwRjwySfA558DTk7aj42OhuzEVpQ/kKKg\nrAB4+hRNn5YA7v7G399WhISjoyO++eYbpKenIzk5GT/88AMuXbqEuLg4REVF4erVq4iMjERcXBwA\nICMjA1u2bEFGRgYSEhIQGxurtmmRJhgj8x9vZauPH69f61mHyUlFSKiJcFp1ehVie8Sq7binM0fi\nzz9JSLm61m6zoCbBGLB4MfDpp5Y3NQFAsybNECYNw8nsk4ptLVqQefHYMWj1R6RdekglbZrUybAU\nhYRaAj0DcbfsLh48NsypL0Y21bB7N4XMv/667mNHjULzE3shKWhBmkRuLu43bQ5vFxNKQSvnSTi4\noKxSoEKidevW6FwTi+rm5oaOHTsiJycHu3btwoQJEwAAEyZMwM6dOwEA8fHxiImJgaOjI/z9/REQ\nEICUlBSN16/LmTP0IuOtXeSxY7X+CGW0mJx8fCgKM8ijE4qeFCGnOEexT/5QjqPyo4gJjVF7rk5N\nQjmqiUMmo6YOeiTUmSok9u+nFfvw4aZdRyPl5To/h1aTkxZNIu2mHF5ObesLZ64rk4gKdhI7dG7d\n2eBQWDGyCfQMz59PKyp9auh7eYF174Hnb2WSkMjJQa6LC9q4Gem0BmqjmxgTtiahzK1bt5CWloZe\nvXohPz8f0pqkEqlUivyaxi+5ubmQKVWLk8lkyMnJqXethQsXKv4lJSUptv/yCyUh87LK5dQSdUKC\na2V36VK9XY6O5DctyLdDv3b9VExOP539CePDx8PVybXeeYCOHAnGap3Wyri4kB3+7l2tH4cPIbFk\nCWnQvAUF1CUykpqArFhB+SlqGOQ/CIcyNQgJLTkSV/Ky1IcTtm6tfWIY09EGr+FijPNa1CRANu+y\nMuDVV/U+xf71aEQ/PEn1m3JykOPqCL/mJmgSTZsiCcDC+fNx4OcDOPbLMeOvZSJ6vS4ePXqE0aNH\n47vvvkMzZfs+KNxOnelFeX9dlIXEwIEDAdDveMsWqp7BC1ev0gtYXYlTOztKhNGgTXABR8p+ifKq\ncqxNW4tp3adpvKVWTYITSB071t+nh1/CVCFx/DiNTx/t2SgeP6ayst99Rz+ygADKSD1wQCURom/b\nvjh355xKclDPnkBmJnB0x13cKvWCkosLAJ0ufyhHsI+aydVmbsrPJ6H82mt8fEJhUFWlqBeki66t\njRASoiYB7NgBjBxp2Gp15EgMfnocjx7kAzk5kDerhn9LEzQJAANbtcLCadPw+vuvI2h0kEnXMgWd\nQqKiogKjR4/Gm2++iREjRgAg7eFOzQ8zLy8P3jV2ZF9fX2Qpveyys7Ph66tfLfWEBEodePZZgz+D\nepRDX9WhxeTE+SUG+tdmXu+4tAMhXiEIbhWs9pyqKkrs1lh2m4tqUvfg6eGXMLV+05IlwJw5ZuzX\nfPYsEBJCasEvvwC3blFhqFmzSGAsXgzk5cHF0QVdfbrimLx2ZeToCGzbBlTn38XOk97w8wPat6ev\naOlS4LffAEcvOQK8DBASBw8CXbtSMsjBg8CTJ2b64GakupqyfTduBD76iPxrLVpQ4209ent38TG8\nhpMoJADs3AnUvOv0plUr/OX6HPqlP0RVdhbkLZ6of14NocZ5LWhzE2MMU6ZMQUhICD766CPF9uHD\nh2P9+vUAgPXr1yuEx/Dhw7F582aUl5cjMzMT165dQ8+ePfUayIYNZGriDXVOa2X69CGb3+X6rR45\nIRHmHYaC0gLceXRHkWGtiTt36DttoikopG7oqzJ65Ep4epIGrMe7oR7nztG/GjeSeThxguaUw90d\n+PvfKQR561ZSY7p1A0pLMeiZ+n6JF18EBnS8i4++JE1izx5azN27B6xdC/gEaTA3eXqS6ZAzKVVV\nAQsXkkq6bh3V/w8LA44eNdtH551164CBA2kOX3qJSkK0aUORNtnZ5OlftkznZTq26gj5QzkelT/S\n+9aNPpHuxg0ye/bubfCpJ2TReD3DEeW3byLL4yECvU3TJDjntbXzJLSuK48fP46NGzciPDwcXWq8\nyUuXLsXcuXMRHR2NtWvXwt/fH1trSl2EhIQgOjoaISEhcHBwwKpVq7SaojiKiqiW0I8/8vCJagcP\nfPCB5v3KUU51mmNzQsLezh7Pt30eq8+sxvXC6/hb0N/qX6e8HLCzg1zuoNnU9OgRcOoUqbHq0DPr\nmls0P/OM1kPrsXQpMGMGVbEwGydPknmpLhIJhat1705CedUqDBozCHMOzKl/bI1Pwt4eCA6mf+PG\n0a7+/1ET/gqQY9HLi86VSCgBxM6ONBsfHzpmyBB6wEztb2tuGKNCcr/+CqxcSXY4T8/6xy1bRgJ3\nwgStkRKO9o4I9Q7F+Tvn0betFq1aiUafSLdjB0V2GNH0PSNwBN7d9y6qqi8hpwsga+Wu+yRtcJrE\ns1LhahLPP/88qqurce7cOaSlpSEtLQ1Dhw6Fh4cHDhw4gKtXryIxMRHuSjVN5s2bh+vXr+Py5csY\nomdxoG3baCWptZyFIdy9SwZ8XXUnNNRy4oQEQH6JJUeX4J2u78DRvn6SF+bOBbp2RWHKdc2/10OH\ngB49VPM1lDFjGOyVK3T7994z7DyDYIyExHPPaT9u4UJg2TL0btEJ6QXpePikTv9SLdFN8ocahARA\nE/PLL/TiHDSIClNxAgKoFRJCpqoKeP990hqOHSOtU52AAKhmzfTpKn2WNWGo87rRNxzauZNUWCNo\n0sYT59q2hFvGNeTatYGjo4kROLZgbrIUXFQTb5w4QeqirtWABpOTipDwHwDGmEpjIRV+/x2IjMTA\n+X0xtGK3+mO0mZq4G5pJSHz1Fb173NwMO88gMjNprnWlm3fqBERGwnn1GvSS9cJReR0TkIY8iarq\nKuSW5ELWXIPDp3Vr4PvvqUXtP/9Z/3vv0YMcOmoi7QTB06ekMmVkUJavVI+V/Jw5QEoK+Vu00NWn\nq0GZ1406uik/n1piKie7GoCnJ7A/JAAAUCDxN308NeamRi8kbt2i38ZLL/F4UV1Oaw4NUU7KQqKb\nTzekvZcG3+ZqHPCZmdS9Z/ly/GtYPKIPx5Lpqqqq9hgu9FWbkDCTJiGXU4b1++/rf45RcFqEPtEg\nCxYA33yDoa2eU/VLVFeTA0JN3aY7j+7Ao6mH5izgb7+lei41kXL1sLcnVdWICgBmp6QEeOUV8qns\n3Qs0b67feU2bkr/lgw+oqqQGDNEkGGON23G9axdFw2l0LGrH0xM4/Exn7AtzAyoNtAmrQ9QkiI0b\nyZStK/PdIPQVEoDaKCeuf0N1NYXwhknD1J/LNWWws8PR8t44svwMOUhfeaW2kdCVK/Qj7tRJ8xhk\nstobasFQIbFsGfD22/SsmZUTJ3SbmjiCgoCXX8brB/JU8yWKiigTXc2DcL3wuvZqmoGBWvtiO4h+\nOwAAIABJREFUAxCmyenePcoteeYZegYNdRqNGkVa1KpVGg8J9Q7FtfvX8KRSd3RXSXkJ7CX2GvOA\nGjw7dhge1aSEpydQUtUWw0aXwqXSRKc1oKJJlFY00n4SjJkhqunJE1pV9qpfW0ktffvSj/VKbde0\nJk0osKSgQMt5AMXt1vhd5HJAGi6lvICQEHLUpqVpD32te8OapERNGCIk8vNJAH/8sX7Hm8TJk6qR\nTbr47DPIfonH/exrKHxcI0w1+CMYY1h8dDHGhY4zbYyDB1PGnrKWZ03kcoq+i4qiiA0jHKWQSCgv\n5YsvNCZjOjs4I9AzEH8V/KXzcjpNTbm5DbfBU3Ex+YJMMGl4egKVD73BwNCs2sTwV0DUJACqdceY\n/u9zvTh7lsJi9DXC62FyUktFBdmPayJmFIl0Dg5kBli6lF5MK1fWz7JWB88Jdd9+C8TE0ELTrDx6\nRAK2a1f9z2nfHpKRIxF3wbu2PpYGf0T8lXhkF2fj/Z4m2sxkMprAM2dMuw4fPHhAAmLqVMofMaXE\nQKdOFO47b57GQ/Q1OWk1NZ0+TX2d/f1JPd2yRWNWvU2ydy99J/qa+9Tg4QGUP6Bn2F3CgyZRIySa\n2DdBZbVmk6K5saqQ2LCBnm9ei81pqtekjehotUJC6zv75ElKEvP2RmkpUFpaZyE8diwJkfBw/Uqu\n6plQp4+QKCkBfvqpfrdFs3D6NJXtNdSOO38+RiTdQcr5P+hvNSU5Hlc8xox9M7By2Er1kWWGIhST\nU1oamZiUco9MYsECCqDQIAD1zbzWqkkcO0ZCbe9eyjvZsIEyX7t3p1ovR46Y8gmsj4mmJqAml+ku\nCQlPRx40iRpzk0QigYujhZrRq8FqQqK8HNi8mccyHByG+CM4OJOTUpSTTk1i3z6FqSkri97x9YRd\np07kOdZndaJHQp2+QmLfPgqx5627nzb0CX1VR7t2KBkxDIFra3JH1Jiblp1Yhi4+XfDiszzVNReK\nkLhxgxYYfOHuThrJ9Olq/Vr6ahIFpQWaNYnkZPqeQ0KADz8koXTvHtXpcnCgsFGVFoM2xNOnZDo2\nsfKlpydQnEdCwttZU+kFA6hTLtxaWE1IJCSQD5O3MhyA9qJ+2uAS65RyJgwREno1G9KFHpqEtzc9\nM1qCWQBQleNXXjFxPPpirJAA4PHFMow8Xoi7men1zE3yh3J8e+pbLB+8nK+RUpmQixdRrziUpbl5\nk+cHH8DEifRgbNxYb1dE6wik301HRZX2QodacyTUfc9OTjSnX3wB9OtHDXpskYMHaUFnom3W3R14\nlNcG3R0mwN21qenj8vCoLRfeGIUE7w5rgGzjbm5kOzWUml61HFqFREEB/SBqfjS8CAk9fBL29hQh\nqs2/XVUF/PGHhYQEl0RniNNaCYe2/jjavx0eLPhHPU1iVuIsTO85Hf6mNG6pi7MzLSD+/JO/axrD\njRtUnIpP7OyA//s/Su4sLlbZ5ebkBr/mfrh8r34JGmU0+iRycqgmjDbtp1074Lb6dr+ChyvoZyL2\n9oC7mzP63l2nMW/WIFq0INtxVVXjExJFRRSyHh3N84V11WvSBlc+PD0dgA4hsX8/xeTXtNnkzE0m\noWeuRJs22gv9JSfTMe3amTgefbh2jcJW27Qx+hJ5709Em51/UnGpGiFxKPMQUnJSMKevmtIdpiIE\nk9ONG/xrEgBFgIwZQ6t6pWg9QD+Tk0afRHIyJadqcx76+1PSk61RVUX5ESb6Izg8PWkaeBESdnZk\nqi4qanxC4r//paAg3spwcBjjj+Cws1PJmdAqJJRMTQCP5iYdPglAt1/i998NKoNvGobkR2igV/e/\nYXNPF3J8enmhsroSHyR8gOWDl6OpIw8qe104IWHNUM6bN/nXJDi+/RaIjaXFkpLpSVfm9bpz63BU\nfhQRUjW9g/UxKdqqJpGcTIsTnnxEnp40DbwICUAlV8JaWEVImMXUBBgX2aQMZ3JiDL6+GhrGVVeT\nGsS3kPD1pep9OuL4dQkJi/sjjDQ1cYRLw/H/+jBUu7oAUilWn14NqasUozqO4mmQdQgOpi9VTfVf\ni1BYSM+QuTIcJRIq1HXgAPkKpkwByso0ahJPK59i2p5piDsWh8MTDyPQM7D+NRuykDChVpM6PDxo\nGngrg6OUK2EtrCIkLl3SXqXCKAoK6J+2zGZd9O5Nsazp6XBxIUtKvVDwCxdIBVQyF/AiJLiWeDrC\nl7QJicxMMu3rWZ3ddExwWnPYSewQFvoCdm/5Anfb++DzI5/ju6Hf6VU92CgkEuuanDgtwtxNxiMi\nKGeovBzo0QPdCpvi/J3zqGa10U/ZxdkYsG4A8h/lI+WdFIR4hdS/Tnk5mQJ79NB+P1sUEozxEvqq\njKcn+Zp50yQaq5CIjeW5DAegf1E/bUgkKpVh1Zqc6piaqqt58klwNzQhV+L334GXXzZje1JlHj6k\nF15ND3RTGOQ/CLuq0vHpofkYHz4enbxNEPT6MHSo9YSEufwR6nBzo+qZs2ahxdDheO+iE67fvwaA\n/D491vTAiOAR+F/0/9C8iYYwba7LoK63nqcnJZg+fKj9OCGRnk5jrmmDwAdc4V6+zU2ujtYrlWIV\nIbFokRkueuQIheOZipLJSa2boI6QuHuXHggXPgS9iQl1FjU1paRQlrWj6Ulug/wHYcelHdh9dTcW\nDFjAw+B0EBlJ/itrdKszpz9CHRIJMGkSkJSE6UfLUT5vLpadWIaY/8Vgw8gNmPv8XO1am77aokRi\ne9oEp0XwqNVxQkI0NwmRpCRgwADTr9OjB708Ll6sr0k8ekQZxkrVRnkxNXGYkFBXXEw+uMGDeRqL\nLnhwWnOEeIXA2cEZXw76Eu7OJjZq0Qd3d+t1q7OkJqFMp06IX/EefH6Nx3/Pb8Kpt0/pl6RoiEnR\nFoUEj/4IwHyahGCFxOTJkyGVShEWVlsFdeHChZDJZOjSpQu6dOmCvXv3KvYtXboUgYGBCA4ORqIl\nyzIXFVE4pi67qT5IJAptop6Q4JoHKS0T5HKeTE2ASZpEYiL5kM3aN0IZHpzWHBKJBOemnsPkLpN5\nuZ5eWMsvYWlNQomB/d9Cma83jgYsRjt3PWOkufBXfbClMNjbt2uLLPII70JC6JrEpEmTkJCQoLJN\nIpFgxowZik51w2o80BkZGdiyZQsyMjKQkJCA2NhYVOsofc0bx46Rt5YvRwcnJHyZqpDYt69esT5e\nNQk9fBKtW5N/vu7U/v67BU1N1dXUjpUnTQIAvF29zeesVoe1hIS1NAkAYdIw+E38AE7xv+t3Ql4e\nJXN16KDf8bakSezeTQ48B60dnA2GC1prNEKiX79+aKkmmYGpiTGPj49HTEwMHB0d4e/vj4CAAKSk\npPA3Um0cPsyPqYmjWzegshLBT8/XFxJK/ojycgrn5e1dqYcm4eREwVXKUVdclrXF8iMuXaKHV03V\nVpuhe3fLd6srL6cwZ95WFUYwahSFfeqzgDt5UncSnTK2JCT++IOEBM/w7pMQurlJE99//z0iIiIw\nZcoUFNXUwcnNzYVMVlvUSiaTIUfDD3DhwoWKf0lJScYMQZXDhzV3JTOGGpNTQNrWWiFx4wb5JMLD\nFYctWkTpDa+/ztN9jUyoO3WKNAyLZFkDvJqarAbXrc6S2sStW6Qt8rx6NYjgYFrmnj6t+1hDTE2A\n7ZibHj8mf1RNmX8+8fSkhRwfRo2kpCQsjI/HwnPn8Od/rFdKxmAhMW3aNGRmZuLcuXPw8fHBzJkz\nNR6ryXygLCQGmvpyLymh/qd8JwdER8PjwFZkZzFKqOO60NV8puPHgZ9/Bv79bx6DI3x8KFyqQnsh\nNq5zHodFTU0AL/kRgsDSobDmqNlkDKNGkdNWF4Z+z7aiSSQlUdgr7yUf6Cc8axY/1xo4cCAWzpyJ\nhW5uGPv3sfxc1AgMFhLe3mQ7lkgkePvttxUmJV9fX2QpmUqys7Pha0yhPUM5fpxMB4a2ftRFly6w\nkwDd7NOoaKiSqamkBHjrLWD1av161uuNgwOZcLQVZwI9iMqH7N5tQVMTwGtkk1UZPJgyky3Vrc4c\n1V+NYeRIYPt27aVJysup74Uhiy+plMLsyqzXRU0v/vjDpA502nB0pKrtvGGLeRJ5SkvYHTt2KCKf\nhg8fjs2bN6O8vByZmZm4du0aeloi9ZdvfwRHjcnpLeetyMksV+lCN2MGWbd4TNSsxcAIp1u3yJFt\nsSzrwkIyiYVp6PttS/j60r/jxy1zP6FoEt26UZh3RobmYy5cIIFmSKc2Ozt6fuVy08doLhgjIcF7\nyQczIQDHtVbjaExMDA4fPox79+7Bz88PixYtQlJSEs6dOweJRIJnnnkGP/74IwAgJCQE0dHRCAkJ\ngYODA1atWmWZaJXDh4EvvzTPtceOxcvfjsTtA8MowsPLC7t3U6Vps/VX0TNX4upV+v/u3bQoMiXR\n3CCSkykM2Jp2dT6ZNg346it+EjF1cfMm7yGXRiGR1GoTmsrYcE5rQ+H8EsHBpozQfFy9SgJSybco\naJpSkUu3Kkv9wOuj9Ze+adOmetsmT9Ycyz5v3jzM09Jrl3dKS2nFY8zDrA/h4ZA4OUK2fjEwcggK\nCoB336WEbN5C3OqipyZxuKY19O+/05gsRkNwWiszeTLZB86cIbOlObFi+Gs9Ro0CPv4Y+Owz9ftP\nnjTOsSt0v8TevbSqsmS4tal4eKDZI+1+SnNi2xnXJ09S7SBeamKoQSLBlYhoyDL2gw0egnffBSZM\noHL9ZsOA+k0lJTQFFsuyBhqO05qjSRNgzhyqmGpOGBOOTwIgjSY7m6pCqsOEtrSCFhJm9EeYDQ8P\nuD0qt9rtbVtI8FWKQwv3XhiLh02lWHe5N27dMlPdKWUM8EkkJtLv2GxaTV2qqqhmk7k0N2vxzjuk\nSaSlme8e+fm0mDHExm9O7O2pp/POnfX33blDhfr0TaJTRshhsI8ekfCLjLT2SAyjZUu4lD612u1t\nW0iYy2mthGuvUAxsdwv/+NQRGzfSwtOs6Ckk7tyxcEE/AEhNpfFxGUMNBWdnYPZs82oTVizHoZFR\no8gvUZfkZOpyZ0w5YSFrEgcPUoSHUAS1vnh4oGnxY6vd3naFxOPHtPIzs31cJgPOXXbGJ58AoaFm\nvRWhh+PaxYWSdXbssHDoa2KihW1bFuTdd2mVeeGCea4vJH8ER2QkcPFi/abpppgUhSwkbNHUBAAt\nW8K5RBQShpOcTGGYZq5oFxgIfP018NFHZr1NLVIphZk+1a5e+vhQdQd/f8sMC0DDFhIuLsDMmeaL\nlBOiJtGkCYWC7tqluj052Xgh4etLMdnl1rOhq8XWQl+V8fCA48NHVru97QoJC5iaAPodzZploUY+\nANmKfXx01hTy8bGwqamkhMxNlggVtRbTptFzlZ7O/7WFqEkAtaGwHBUV1NHO2MQbBwcqCaDDZGpx\nMjLoR9yxo7VHYjgeHrB78MBqtxeFhBDRwy8RGwu8/baFxgPQfPfoQT1dGyqurpQpaQ5tQiiJdHUZ\nNowy6LmOchcukHraooXx1xSiyYkzNdlS6CtHTda1tbBNIfH0KUWj9O1r7ZGYBz38EmPGWPid05BN\nTcrExlK25OXL/F5XSOGvyjRrRtrhnj30Nx8hzu3aCS/CyVb9EYAi69pa2KaQSEmhjE5bi1LQFz00\nCYvTWIREs2bAhx/yW4CntJQaY7Vpw981+US54J+hlV/V4e8vLE3i4UNaVA4aZO2RGIcoJIygIZua\nAL0S6izK7dvA/fuUuNgYmD4dSEiorX1iKpmZ9OK0mGPLQF59lRYBjx/zp0kISUgcOEBWB1s1lYrm\nJiNo6EJCaJrE/v1UokGoLzm+ad6cBMWSJfxcT6j+CI5Wrajo36+/0orV1LpLQhMSe/faZlQTh6hJ\nGEh5OanEZq2NYWX0bD5kMRqLqUmZDz6gwlg3bph+LaH6I5QZNQpYsMD4JDplhJR1zYW+2qo/AhA1\nCYM5cwYICADc3a09EvMhJE2iqoocuWbo4iVo3N3Jic2Hb0LomgRAde9zc/kpueLnR9eyVJ8ObZw/\nT2amwEBrj8R43N1ro8+sgO0JCb5blQoRLy9q3vLYelmWClJTKSnDEg2khMbHH1Oi2fXrpl3HFjQJ\nmYyK/vHx22rShEq36GieZRFsXYsAKHfKikE6tikkGrI/AiB139dXGCanxmhq4mjZksxOn39u2nVs\nQZMAgCNH+FuACcXk1BCEBGCWVqv6YltCorKSoi8asj+CQyh+icTExmdqUubDD8nxaWzeRFUVOXGf\neYbfcZkDPhPNhOC8Liyk5MCGsKj08LDarbUKicmTJ0MqlSpalAJAYWEhoqKi0KFDBwwePBhFRUWK\nfUuXLkVgYCCCg4ORmJjI/2hTU+nha2hVSNUhBL9ESQmVaGjIpTh00aIFZWEbWyM+J4ee15oOY40G\nIQiJ/fvp2XV2tu44+EComsSkSZOQkJCgsi0uLg5RUVG4evUqIiMjERcXBwDIyMjAli1bkJGRgYSE\nBMTGxqK6uprf0TYGUxOHEIREUhJFu9hqfDlfTJ9OZab/+svwc4Vas8ncCCHruqGYmgDhahL9+vVD\nyzoSbNeuXZgwYQIAYMKECdhZ07QkPj4eMTExcHR0hL+/PwICApCSksLvaBuTkBBCQl1j9kco4+ZG\n/SYWLjT8XCFWf7UE1s66Li0VhQRPGNzNPj8/H1KpFAAglUqRX1OLPjc3F72VwudkMhlyNFQyXaj0\nYxs4cCAG6uMsKysDjh8Hfv7Z0CHbJn5+9JBbk8REYPNm645BKMTGAsuXA+fOGZZ5bitOa76xtrnp\nxx9pQWnRWvr8kpSUhKSkJPrDGC2WJwwWEspIJBJItDi7NO1baMyKbNs2Khfg7W34ubaItR3Xt29T\nAk9EhPXGICRcXKgX9oIFQHy8/ufdvGnhzlACoV07QC6nZDZLV159/JiawNQxldsaKgtoNzcsOnbM\nKuMwOLpJKpXizp07AIC8vDx417y0fX19kaVkHsnOzoYvn7H1a9ZQL+LGgp9f7Y/MGjS2Uhz68N57\nlMx55oz+5zRWTcLVlcx0dbveWYI1aygpsCEtcITqk1DH8OHDsX79egDA+vXrMWLECMX2zZs3o7y8\nHJmZmbh27Rp6Gtu4pC6XLlFCk0W77FgZT0+KrLl40Tr3F/0R9WnaFJg3D/jnP/U/xxYS6cyFNUxO\nT54AX30FfPaZZe9rboQa3RQTE4M+ffrgypUr8PPzw3/+8x/MnTsX+/fvR4cOHXDw4EHMnTsXABAS\nEoLo6GiEhIRg2LBhWLVqlVZTlEH8+9/AxImAoyM/17MFJBIgOhrYutXy926spTj04e23yT588qTu\nY4uKqNaYl5f5xyVErCEk1q4Funalfw0JK2oSEsYsa8+QSCQw6JZPn5Lp5eTJxqe2nzkDxMRQyWpL\n2nVTUoDJk63qLBM0P/1EPjJduUCpqcCkSVQ/qDEycyb1bP/HPyxzv6dPqa7b//5nfPtVoXLhAiQR\nEYa9O3lC+AbnnTuBsLDGJyAAKt9cVUURNZZENDVpZ9IkMn8ePar9uMbqj+CwtCaxbh0QGtrwBARg\nWz4Ji9PYHNbKWMvkJAoJ7Tg6ks1bl2+iMfsjAMsKifJyYOlSw/xFtoQoJDRw4wap6iNHWnsk1mPs\nWBISllIzS0qAtLTGXYpDH958E7h7l8xySqVpVBA1CctlXf/yC9Chg+ld9YSKFcu6CFtIrF1LP8Ym\nTaw9EuvRuTOFoaamWuZ+XCkOFxfL3M9WcXAATpygukChoVRSvC6NtSQHB5d1be4FTkUFdRFsqFoE\nYPlcEyWEKyQqKsjG2FhNTRyWNDk9eQKsXy+amvSleXNg1Spq+zljBjBuHGkXHI21JAeHuzstcMzd\nVe3XX0kgPf+8ee/TSBGukNizh1ZhHTtaeyTWhxMS+q7IHj2izGB9tQ/GKECgUycqxz55svFjbYwM\nGEAlqdu0oSCLzZvJRp6bC7Rta+3RWRdz+yUqK6l74IIF5rtHI0e4QqIxO6zrEh4OODnpn+m7eDH1\nQBg1iuLFV6/W3P4wPZ00h08/Bf71LxIWrVrxN/bGgosLsGwZlez44gvKMWnThr63xoy5mw9t2kTz\n3FgKf1oBYQqJrCwgORkYM8baIxEGhpicrl0jAbtzJ5k74uKAQ4doRTdxInDsGGkOhYVUAnvQIGD4\ncAoQEJPnTKdXL9Lg+vcHhg2z9misjzk1iRMnKAfD1M6BIloRZjLdokVAQQHwww+WGZQtcPEilSW5\ndUu7E+uVV+gFVTeBqaAA2LCBstcBEhKjR9MPTNQcRMzFsmXUeOmbb/i97qZN1Fp2/fqGUw5cBwYn\nIvN1X8EJiaoqavW4a5dhJZkbOowBISHkzO/VS/0xe/aQA/XiRc1mDsYoe71FC/JBiIiYk//+F/jt\nN2DHDn6uxxgtbH7+Gdi9m0yxjQRrCQmTSoWbhcRESuUXBYQqnMlpyxb1QuLpU+Cjj4CVK7XbwSUS\noE8f841TREQZfZoPlZaST0dXmOeTJ1Q76+pV4NQpoHVr3oYpohlh+SSuXwe+/FJ0WGsiOppWZura\nwn77LUWCiXZwESGhyycRH0/mzsBA6tdx+rT6KL67d4EXX6TFUFKSKCAsiDCExKlTZB9/7jlypNa0\nRxWpQ6dOZCZKTlbdnpNDTVZWrLDOuERENOHlRU2ASkrq7/vtN+rRcfQoLX4cHIDx40n7mDGDHNPV\n1cDly9Qfon9/0qTFRE+LYj2fRHU12dC//pqa68yYQfH5bm6WHI7t8fnn5HT+9tvabePH04pt8WLr\njUtERBMdO5IQCA2t3fbTT/Qs79un6htjjMKyt22jfw8eUGLtV19RYcVGTONyXK9dS1EPzs7UYH7M\nGFpFiOjm0iVSu7OyKJv12DEqJ375MnUDExERGkOHUrj1yy/T38uWUeTi/v1U2lsbly9TwpyygGmk\nWEtIWMfctHUr8P33wNmz9ILjQUAoGobbEEaNuWNH6lp34gRFgk2fTtqYBQREo5ljK9Pgxsz5JRij\nzOh//5tMTLoEBAAEB5tFQNjiHFsLo4WEv78/wsPD0aVLF0Wb0sLCQkRFRaFDhw4YPHgwijRVx0xI\nACIjeS1aZYtfutFj5hLr1qyh+kFjx/I6Lk00qjm2Ig1uzP7+QGYmNSGKjweOHAFkMksNTS22OMfW\nwmghIZFIkJSUhLS0NKSkpAAA4uLiEBUVhatXryIyMhJxcXG8DVREiTFjSEgsWEAhr1asECkiopN2\n7ci8lJxM2f/e3tYekYgBmGRuqmsf27VrFybURCZNmDABO3fuNOXyIpoICqIQwDFjgIgIa49GREQ7\nvXoBr71GOVAtW1p7NCIGYrTj+tlnn0WLFi1gb2+P9957D++88w5atmyJBzVlgRlj8PDwUPytuKG4\n6hURERExCpvKuD5+/Dh8fHxw9+5dREVFITg4WGW/RCJRKxCs8SFFRERERIzDaHOTj48PAMDLywsj\nR45ESkoKpFIp7ty5AwDIy8uDt2h7FBEREbFpjBISZWVlKKnJoCwtLUViYiLCwsIwfPhwrF+/HgCw\nfv16jBgxgr+RioiIiIhYHKN8EpmZmRg5ciQAoLKyEm+88QY++eQTFBYWIjo6GnK5HP7+/ti6dSvc\n3d15H7SIiIiIiIVgVmLHjh1MIpGwy5cvm3ytWbNmseDgYBYeHs5GjhzJioqKFPuWLFnCAgICWFBQ\nENu3b59i+7x585ifnx9zc3NTudaTJ09YdHQ0CwgIYL169WK3bt1ijDGWlZXFhg8fzgIDA1n79u3Z\nhx9+yMrLy7WO65tvvmFlZWVq940bN44FBQWx0NBQNnnyZFZRUaHYN336dBYQEMDCw8NZamqqYvuk\nSZOYt7c3Cw0NVbnW/fv32YsvvsgCAwNZVFQUe/DgAWNMuHN8+PBh1qVLF+bg4MC2bdum2C7kOd66\ndSsLCQlhdnZ27OzZsyr7hDrPy5cvZyEhISw8PJxFRkay27dvM8aEPc+aPr9Q53j16tUsLCyMde7c\nmfXu3ZudO3eOMSbsOZ4/fz4LDw9nERER7IUXXmByuVzruKwmJKKjo9mrr77KFixYYPC5VVVVKn8n\nJiYqts2ZM4fNmTOHMcZYeno6i4iIYOXl5SwzM5O1b9+eVVdXM8YYO3XqFMvLy6v3pf/www9s2rRp\njDHGNm/ezMaOHcuqq6tZjx492Lp16xT3nzJlCps9e7bWcfr7+7N79+6p3ffHH38o/h8TE8NWr17N\nGGNsz549bNiwYYwxxpKTk1mvXr0Uxx05coSlpqbW+9Jnz57NvvrqK8YYY3FxcYrPL9Q5vnXrFrtw\n4QJ76623FEJC6HN86dIlduXKFTZw4MB6QkKo83zo0CH2+PFjxhi9zGzhWdb0+YU6x8XFxYr/79q1\ni0VGRgp+jpXHvHLlSjZlyhSt47KKkCgpKWHt2rVjt2/fZsHBwYrthw4dYv369WMvv/wyCwoKYlOn\nTlV8Sa6urmzmzJksIiKCHT9+XOO1t2/fzt544w3GGK0K4uLiFPuGDBnCTp48qXJ83S99yJAhLDk5\nmTHGWEVFBWvVqhU7cOAA69+/v8pxxcXFzNPTkz1+/JhVVlaymTNnstDQUBYeHs6+//57tnLlSubk\n5MTCwsLYCy+8oHU+VqxYwebPn88YY+zdd99lmzdvVuwLCgpieXl5ir8zMzPrfelBQUHszp07jDHG\n8vLyWFBQkKDnmGPixIkKISH0OeaoKyRsYZ4ZYyw1NZX17dvXZuZZ+fPbyhz/9ttvbOzYsTY1x0uW\nLFEISU1YpapefHw8hg4dirZt28LLywupqano2rUrAOD06dO4dOkS2rZti6FDh2L79u0YPXo0ysrK\n0Lt3byxbtkzrtX/++WfExMQAAHJzc9G7d2/FPplMhpycHK3n5+TkwM/PDwDg4OCAFi1a4PTp0+jW\nrZvKcc2aNUPbtm1x7do1HDt2DHK5HOfPn4ednR0ePHiAli1bYsWKFUhKSoKHh4fG+1UOA5eJAAAE\nt0lEQVRUVGDjxo1YuXKlYszc/ZXH3FpL/fz8/HxIpVIAgFQqRX5+vqDnWB3p6emCnmNN2Mo8r127\nFi+99JJNzTP3+YU+x6tWrcKKFStQWlqKEydOYPfu3YKf408//RQbNmyAi4sLkuu2HqiDVQr8bdq0\nCWPGjAEAjBkzBps2bVLs69mzJ/z9/WFnZ4eYmBgcO3YMAGBvb4/Ro0drve7ixYvh5OSEcePGaTzG\nmGQ+Xef8+eefeO+992BnR9PZ0oCs0tjYWAwYMAB9+/ZVbGN1YgkMGTOXnyLOcS18z7EytjDPGzdu\nRGpqKmbPnm0z86z8+YU+x7Gxsbh+/TpWrFiByZMn28QcL168GHK5HBMnTsTHH3+s9ViLaxKFhYU4\ndOgQ/vrrL0gkElRVVUEikeDrr78GoPoBGWOKiXR2dtb64detW4c//vgDf/75p2Kbr68vsrKyFH9n\nZ2fD19dX6/h8fX0hl8vRpk0bVFZW4uHDh+jevTs+//xzleOKi4shl8sRUFPJsu4XpQ+LFi3C/fv3\nsWbNGpPGzOWntG7dGnl5efD09BT0HCvD3S8kJATbtm1T2SekOVaH0J9lADhw4ACWLFmCI0eOwNHR\n0SbmWfnz28Icc4wdOxZTp07F/PnzBT/HHOPGjcNLL72k/SCtxigz8OOPP7KpU6eqbBswYAA7cuQI\nO3ToEGvatCnLzMxkVVVVbPDgwWz79u2MMe22wL1797KQkBB29+5dle2cI+rp06fs5s2b7Nlnn1XY\nLDnUOa658W3atImNHTuWMcZY9+7d2S+//MIYY6yyspK9/fbbbNasWYwxxv71r3+x1157jVVWVjLG\nGCssLGSMMRYWFsYyMzPVjnnNmjWsT58+Cscih7Ij6uTJkyqOKMbU2xhnz56tsKUuXbqUDRkyRNBz\nzDFhwgSV6CYhzzHHwIED2ZkzZxhjwn+WU1NTWfv27dn169dVtgt5nut+fqHP8bVr1xT/37VrF3v+\n+ecZY8Ke46tXryr+v3LlSjZ+/Hi19+SwuJAYNGiQSmgZYzTQadOmsaSkJNa/f3+FI4qLMmKMsWbN\nmmm8ZkBAAGvbti3r3Lkz69y5s8p5ixcvZu3bt2dBQUEsISFBsX327NlMJpMxe3t7JpPJ2KJFixhj\nFAI7ZswYRQgs96VlZWWxV199VRHS9sEHHyhC2iorK9mMGTNYSEgIi4iIYD/88ANjjLHvv/+eBQUF\nqXVEOTg4sICAAMWYv/jiC8W+v//976x9+/YsPDxcxUn6+uuvMx8fH+bk5MRkMhn7+eefGWMUAhsZ\nGakIge3Xr5+g5zglJYXJZDLm6urKPD09FQ+xkOd4+/btTCaTMWdnZyaVStnQoUMF/yy/+OKLrHXr\n1opr/e1vfxP8PNf9/L6+voKe4w8//JB16tSJde7cmUVFRSmEhpDnePTo0Sw0NJRFRESwUaNGsfz8\nfI1zxRhjFu9Mp42kpCQsX74cu3fvtvZQGiziHFsGcZ7NjzjHlsE6nek0oKkooAh/iHNsGcR5Nj/i\nHFsGQWkSIiIiIiLCQlCahIiIiIiIsBCFhIiIiIiIRkQhISIiIiKiEVFIiIiIiIhoRBQSIiIiIiIa\nEYWEiIiIiIhG/j8o4CbAT5/8mQAAAABJRU5ErkJggg==\n", + "text": [ + "" + ] + } + ], + "prompt_number": 245 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Relation with Graffiti.. appearance of both in the same month" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "x = []\n", + "for record in graffiti_month_count:\n", + " x.append(record[1])\n", + "\n", + "y = []\n", + "total_yearmonth_count.sort()\n", + "for record in total_yearmonth_count:\n", + " y.append(record[1])\n", + " \n", + "matplotlib.pyplot.scatter(x, y)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 246, + "text": [ + "" + ] + }, + { + "metadata": {}, + "output_type": "display_data", + "png": "iVBORw0KGgoAAAANSUhEUgAAAXgAAAD9CAYAAAC2l2x5AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3XlclOX+//HXICMwKKKpkIwGAbII7pLp0VDDpRRxiaJy\nt0WPZeopO3nOSc9JwbTMFutXuZCWaHW+aKWEplRumEtaUjkaKIuSsriwDTDX7w9qkmOSIHjD8Hk+\nHvN4wDX38rkvH77n5p7rvm6dUkohhBDC5thpXYAQQoi6IQEvhBA2SgJeCCFslAS8EELYKAl4IYSw\nURLwQghho6oM+MmTJ+Pm5kZwcHCl9tdee42AgACCgoKYO3eutT06OhpfX1/8/f1JTEy0th88eJDg\n4GB8fX2ZOXNmLR+CEEKIP1JlwE+aNImEhIRKbTt37mTz5s0cPXqU77//nr/97W8ApKSksGHDBlJS\nUkhISGD69On8NsR+2rRprFy5EpPJhMlkumqbQgghal+VAd+vXz9atmxZqe3NN9/k73//O3q9HoA2\nbdoAsGnTJqKiotDr9Xh6euLj40NycjJnzpzh0qVLhISEADB+/Hji4+Pr4liEEEJcwb66K5hMJr76\n6iuee+45HB0dWbp0KT179iQrK4vevXtblzMajWRmZqLX6zEajdZ2Dw8PMjMzr9quTqer4SEIIUTj\ndq0JCar9JWtZWRl5eXns27ePJUuWEBkZecPF/UYppenr+eef17yG+vKSvpC+kL5oGH1RlWoHvNFo\nZPTo0QD06tULOzs7zp8/j4eHB+np6dblMjIyMBqNeHh4kJGRUandw8OjursVQghRTdUO+IiICHbs\n2AHA8ePHMZvNtG7dmvDwcOLi4jCbzaSmpmIymQgJCcHd3R0XFxeSk5NRSrF27VoiIiJq/UCEEEJU\nVuU1+KioKL788ktycnJo3749//73v5k8eTKTJ08mODiYpk2b8t577wEQGBhIZGQkgYGB2Nvbs2LF\nCut19RUrVjBx4kSKioq45557GDp0aN0fWQ2EhoZqXUK9IX3xO+mL30lf/K4h9IVO/dlFnJtEp9P9\n6fUkIYQQlVWVnXInqxBC2CgJeCGEsFES8EIIYaMk4IUQwkZJwAshhI2SgBdCCBslAS+EEDZKAl4I\nIWyUBLwQQtgoCXghhLBREvBCCGGjJOCFEMJGScALIYSNkoAXQggbJQEvhBA2SgJeCCFslAS8EELY\nKAl4IYSwURLwQghhoyTghRDCRknACyGEjZKAF0IIG2WvdQG2rqioiB07dlBaWkpoaCiurq5alySE\naCSqPIOfPHkybm5uBAcHX/XeSy+9hJ2dHbm5uda26OhofH198ff3JzEx0dp+8OBBgoOD8fX1ZebM\nmbVYfv2Wn59P5853EhUVw/jxb9GxYxdSU1O1LksI0UhUGfCTJk0iISHhqvb09HS2bdvGbbfdZm1L\nSUlhw4YNpKSkkJCQwPTp01FKATBt2jRWrlyJyWTCZDL94TZt0QsvLOb06Z5cuvQVly4lkJv7GE88\n8azWZQkhGokqL9H069ePtLS0q9pnz57Niy++yMiRI61tmzZtIioqCr1ej6enJz4+PiQnJ3Pbbbdx\n6dIlQkJCABg/fjzx8fEMHTr0qu3Onz/f+nNoaCihoaE1O6p64sSJdMzmMEAHQHn5X0hL+0zbooQQ\nDVpSUhJJSUnXtWy1r8Fv2rQJo9FI586dK7VnZWXRu3dv6+9Go5HMzEz0ej1Go9Ha7uHhQWZm5h9u\n+8qAtwUDB/Zm27Z3KCwcBTji6Pg6/fvfoXVZQogG7H9PfhcsWHDNZasV8IWFhSxatIht27ZZ2367\nDCOuNmPGdL79NoW1a90AO/r3H8zSpS9oXZYQopGo1jDJkydPkpaWRpcuXfDy8iIjI4MePXqQnZ2N\nh4cH6enp1mUzMjIwGo14eHiQkZFRqd3Dw6P2jqAes7OzY9WqFVy4kENOzhk+//z/MBgMWpclhGgk\nqhXwwcHBZGdnk5qaSmpqKkajkUOHDuHm5kZ4eDhxcXGYzWZSU1MxmUyEhITg7u6Oi4sLycnJKKVY\nu3YtERERdXU89ZLBYMDFxUXrMoQQjUyVAR8VFUWfPn04fvw47du3Z/Xq1ZXe1+l01p8DAwOJjIwk\nMDCQYcOGsWLFCuv7K1asYOrUqfj6+uLj4/OHX7AKIYSoXTpVTy6i63Q6uZ4vhBDVVFV2ylQFQghh\noyTghRDCRknACyGEjZKAF0IIGyUBL4QQNkoCXgghbJQEvBBC2CgJeCGEsFES8EIIYaMk4IUQwkZJ\nwAshhI2SgBdCCBslAS+EEDaq2o/sE7/77LPP2LnzK9q1c+Oxxx7D2dlZ65KEEMJKpguuoaVLX+H5\n51+jsHAKjo6H8PI6xaFDX+Po6Kh1aUKIRqSq7JSArwGlFE5OLpSUHAW8AEWzZoNYufJxIiMjtS5P\nCNGIyHzwtay8vJyyshKg3a8tOpQycunSJS3LEkKISiTga8De3p4BA+7BweFR4ASwEZ0ugUGDBlVr\nO3v37mXYsPsIDQ0nLm5DndQqhGi85EvWGvr44/eYOvVJdu4Mo21bN959dxOenp7Xvf6BAwe4++5w\nCgsXAq58882zFBcXM3HihDqrWQjRuMg1+GrYt28fr7++EotFMWPGZPr06XPd66alpfH443M4cSKN\nO+/sgZ2d4r33fIC5vy6xjcDA5zl2bE+d1C6EsE1VZaecwV+n3bt3M3hwBIWF8wAdmzZFsGXLh9x1\n111/uu7Fixfp3Xsg589Ppbx8LhkZb+PishO4/YqlLOh0uroqXwjRCEnAX6fo6NcoLHwBeAyAwsJm\nLFz46nUF/N69eykqak95+XMAlJT04MKFtjg5LaWoqAXQEoPh7zzzzH/q8AiEEI1NlV+yTp48GTc3\nN4KDg61tTz/9NAEBAXTp0oXRo0dz4cIF63vR0dH4+vri7+9PYmKitf3gwYMEBwfj6+vLzJkz6+Aw\n6p7ZXApceSNTM0pLy65rXQcHB5S6CFh+bSkCSomPX8/w4V8zaNCHrFmzlPHjx9Vu0UKIxk1V4auv\nvlKHDh1SQUFB1rbExERVXl6ulFJq7ty5au7cuUoppY4dO6a6dOmizGazSk1NVd7e3spisSillOrV\nq5dKTk5WSik1bNgwtXXr1qv29SelaC4+Pl4ZDEYF8Qo2K4Ohg9q48cPrWtdsNquuXfsqR8dIBf9P\nGQx/UQ89NLWOKxZCNAZVZWeVZ/D9+vWjZcuWldrCwsKws6tY7Y477iAjIwOATZs2ERUVhV6vx9PT\nEx8fH5KTkzlz5gyXLl0iJCQEgPHjxxMfH1/7n1R1bOTIkaxe/TI9erxK9+7LePfdxdx339jrWlev\n17Nr1+fMnRvMAw8ks3hxFLGxb9VxxUKIxu6GrsGvWrWKqKgoALKysujdu7f1PaPRSGZmJnq9HqPR\naG338PAgMzPzD7c3f/5868+hoaGEhobeSHm1LjLyPiIj76vRus7Ozsyf/49arkgI0dgkJSWRlJR0\nXcvWOOAXLlxI06ZNefDBB2u6iatcGfBCCCGu9r8nvwsWLLjmsjUK+DVr1rBlyxa++OILa5uHhwfp\n6enW3zMyMjAajXh4eFgv4/zW7uHhUZPdCiGEqIZqT1WQkJDAkiVL2LRpU6WZE8PDw4mLi8NsNpOa\nmorJZCIkJAR3d3dcXFxITk5GKcXatWuJiIio1YMQQghxtSrP4KOiovjyyy85f/487du3Z8GCBURH\nR2M2mwkLCwPgzjvvZMWKFQQGBhIZGUlgYCD29vasWLHCeuPOihUrmDhxIkVFRdxzzz0MHTq07o+s\nAbpw4QIfffQRxcXFDBs2jNtvv/3PVxJCiGuQqQo0ppQiIyODs2fPMmrUQ+TlBWGx3EKTJvHs3LmF\nXr16aV1incjPz+eFFxZz4kQ6AwbcwRNP/NU6OksIcf1kPvh6qqysjMjIiWzd+jnl5faUltoDh4HW\nQCy9er3H/v1f/MlWGp6ioiK6dOnDqVPdMZv7YzC8S2RkEKtXv6l1aUI0ODIfvMa+++47unbtR6tW\n7QkLiyA7OxuAN954k88/z6K4+DSlpVlAODDn17WCOXfufKXtFBQUkJOT0+A/CHfu3MnZswbM5neB\nCRQWfsa6dbEUFBRoXZoQNkUCvo7l5OTQv/8QjhyZSF7e1yQl+TFw4AiUUuzff5TCwkjACdABk4CD\nQC5OTvMZNqxifnmlFLNmPYuraxvatbudkJAB5ObmandQNyA7O5vNmzdTWpoL/HY/hCM6nR1lZdc3\n9YMQ4vpIwNexitFDnYApgCdlZTH8/HMaZ8+eJSjIByenrUBFsNnZbaZJk0yaNm3PyJGtefnlRQCs\nX7+ed95JoKwsHbM5l6NHA5ky5UnNjqmmTp06RWBgD2JjL1Nc3A0IBtbi6DiOu+4aRIsWLbQuUQib\nIgFfx5o3b055eRa/hTjkUl5eiLOzM7NmzaR792KaNeuEi0sv2rXbQFrad5SUFLB+/SrrMNRdu/ZT\nUDAOuAVogtn8BPv2Jd9wbcXFxTz77L/o338Ejz02k7y8vBveZlWefz6a/PzJFBevAz4A5tGs2XNM\nnNiOTZvW1+m+hWiMZLrgOta3b1969vRk//5hFBb2x9l5I48++gQuLi4AfPnlFg4fPkxJSQndunXD\nYDBctQ1v7w44On5FcfEswA6d7kvat+9wQ3UppQgPf4Bdu6CoaArJyZ+TlDSIo0f34uDgcEPbvpaz\nZ3OwWEKvaAkiIMCfN99cVif7E6Kxk1E0N0FpaSmrVq3i5Mk07rijJ6NHj67Wwz2Ki4vp128oP/54\nCTs7N+zsvmXXrm106tSpxjVlZWVx++3BlJScAZoCiubNe/LJJy9f1xz3NfHmm2/zt7+9SWHh/wF6\nDIb7mTcvnOeee6ZO9idEYyBPdNKYXq/nscceu+b7u3fv5vPPE7nlllZMmjTJenb/G0dHR/bs2caX\nX35JQUEBffv2pXXr1jdcV8WHzJUfNHZ1+iH7+OOPkJGRxfLlPbBYypky5RHmzp3z5ysKIWpEzuA1\ntn59HFOnzqaoaDIODibatUvh22/30Lx58zrdr1KKu+8OZ88eB4qLJ6LXf06HDl/x/ffJlaagEELU\nb3KjUz3Wtq0X586tByqmWnZyGsNLL93NtGnT6nzfRUVFzJv3b/buPUxAwO0sWfIfbrnlljrfrxCi\n9sglmnqsoOAi4Gn9vbTUq9JjEOuSk5MTL78cfVP2JYS4+WSYpMbuvXcEjo5PAqeB7ej17zFkyBCt\nyxJC2AAJeI2tXv0GERHNcXW9kw4dZrJx4yq6deumdVlCCBsg1+BrydGjR3njjXcpKyvnkUfGVXp8\noRBC1BX5krWOHT58mH79BlNQ8BTggMHwIp9+uoEBAwZUuV52djbr1q2jpKSEUaNGERAQcHMKFkLY\nDAn4Onb//ZPYuDEYmP1ry3v07/8hX375yTXXyczMpGvXO7l48W4sFleaNl3Ltm2b6NOnz02pWQhh\nG2QUTR0rKioBWl7R0pLi4pIq11m6dDn5+WMpK3sZgLKy7sya9TzJydvqrlAhRKMiX7LWgkcffRCD\n4V/AFuALDIY5PPbYg1Wuc/58PmVl3le0eJOXl1+XZQohGhkJ+FowfPhwVq16iaCgRQQE/IOXX36a\nyZMnVrnO2LH3YjC8BBwCUjEY/s6YMffcjHKFEI2EXIPX0IoVbzF//mLM5hLGjXuQZctisLeXq2ZC\niOsnX7IKIYSNkmeyiqvs37+fPn2G0LFjL5599l+UlpZqXZIQopbJGXwjZDKZ6NatDwUFSwA/DIZ/\nMG5cEG+9tVzr0oQQ1VTjM/jJkyfj5uZGcHCwtS03N5ewsDA6duzI4MGDyc//feRHdHQ0vr6++Pv7\nk5iYaG0/ePAgwcHB+Pr6MnPmzBs9HnGDNm3ahNl8PzARuJPCwljef/8DjasSQtS2KgN+0qRJJCQk\nVGqLiYkhLCyM48ePM2jQIGJiYgBISUlhw4YNpKSkkJCQwPTp062fKtOmTWPlypWYTCZMJtNV2xQ3\nl4ODA02aXDljZT729k01q0cIUTeqDPh+/frRsmXLSm2bN29mwoQJAEyYMIH4+Hig4qwwKioKvV6P\np6cnPj4+JCcnc+bMGS5dukRISAgA48ePt64jtPHAAw/QvPlX2NvPBt7CYBjFv/41V+uyhBC1rNpj\n8rKzs3FzcwPAzc2N7OxsoOIZn1dOsGU0GsnMzESv12M0Gq3tHh4eZGZm/uG258+fb/05NDSU0NDQ\n6pbX4J08eZKJE2dgMp2gS5dg1qx5g1tvvbVW99GmTRuOHNnHiy8uIzv7AKNGRXPffWNrdR9CiLqR\nlJREUlLSdS17Q4OudTpdtR4e/WeuDPjG6PLly/TtG8a5c9OxWJaxY0csd911Dykp39T6+Phbb72V\nZcterNVtCiHq3v+e/C5YsOCay1Z7mKSbmxtnz54F4MyZM7Rt2xaoODNPT0+3LpeRkYHRaMTDw4OM\njIxK7R4eHtXdbaNw+PBhioraYrH8DfCnrGwRWVl5/Pzzz1qXJoRogKod8OHh4cTGxgIQGxtLRESE\ntT0uLg6z2Uxqaiomk4mQkBDc3d1xcXEhOTkZpRRr1661riMqMxgMlJefB34bk15AWdklnJ2dtSxL\nCNFQqSo88MAD6tZbb1V6vV4ZjUa1atUqlZOTowYNGqR8fX1VWFiYysvLsy6/cOFC5e3trfz8/FRC\nQoK1/cCBAyooKEh5e3urJ5544g/39SelNArl5eUqLGykMhjuVrBEOTv3Vg8//IjWZalz586pe++N\nVK1be6pu3fqrI0eOaF2SZn766Sc1evQ49Ze/3KtefvlVVV5ernVJopGrKjvlRqd6prS0lHfeeYdj\nx0z07NmZCRMmYGen3Q3HSil69ryL777rSmnpk8CXtGjxD0ymo7Rp00azurSQkZFBUFAvLl58CqX8\nMBgWMmPGUBYv/o/WpYlGTOaiETWWk5NDu3bemM25/HZFz8XlHt577zFGjhypbXE32fLly5k79ztK\nSt79tSWNZs16cenSOU3rEo2bzEUjaszJyQmLxQzk/NpSjsVyhmbNmmlZliYqRoxd+R9J1eooMiFq\nmwS8qJLBYOCpp2bh7DwQiMHJKZxOnVpx1113aV3aTTdmzBgcHbdgZxcN/BeD4T7++tfHtS5LiGuS\nSzTiTyml+Oijj9izZz+3396BRx99FAcHB63L0oTJZGLevIX88ksuo0cP4YknpstZvNCUXIMXQggb\nJQ/dtlHnzp3j7bff4eLFy0REjODOO+/UuiQhRD0iZ/AN1C+//ELnzneQm3s3paVGnJze5IMP3pKb\nyIRoZGQUjQ165513fw33d4DnKSpay5w587UuSwhRj0jAa0gpxYkTJzh27BhlZWXVWvfixcuUlra/\noqU9BQWXa7dAIUSDJgGvkdLSUu699z46d+5P794jCQq6g19++eW61x85cjhOTiuA7cCPODk9ydix\ncnlGCPE7CXiNvPrq6yQlXaKoKJXLl038/PNdTJs257rX79OnD++//yZeXnNo2/ZeJk/uzLJl0XVY\nsRCioZFRNBo5ePAYRUWjgYrx5KWlUXz77WN/up7FYuGFFxbzwQfxuLg0Z82a1+jfv38dVyuEaIjk\nDF4jXbr44eT0CRVTAyvs7f9Lp05+f7revHkLWLx4Mz/99BLffDOFYcPGcOTIkTqvVwjR8MgwSY2Y\nzWaGDh3N/v3HsLNrRuvWsHt34p8+ns/NzZtfftkMdAJAp5vHc8814YUX/n0TqhZC1Ddyo1M91LRp\nU7Zv38yxY8coKSkhODj4um7/b9rUAbhg/b1Jk3wcHGr3ma1CCNsgZ/AayM3NJTMzEy8vr2rPyrh6\n9RpmzHiewsK52NmdxsXlPb77bn+lB5uLG3fx4kVOnTqF0WikZcuWWpcjxDXJjU71yMqVa/Dw8KZv\n3/tp1+52duzYUa31J02ayIYNb/Dww98ybZqZw4f3SLjXsoSEBNq1u936b/T+++u1LkmIGpEz+Jvo\n559/JijoDoqKdgMdgR00b/4A586lN9rZGeuby5cv4+7uSUHBJqAv8D1OTqEcP/6tfJCKeknO4OuJ\nr776iuJiXyrCHWAg5eUOZGVlaVmWuEJ6ejo6XSsqwh0giKZNAzGZTFqWJUSNSMDfREuXrkCpn4D0\nX1v2U15+CXd3dy3LElfw8PCgvPwc8NvQ01TM5h+4/fbbtSxLiBqRUTS17OTJk6xatYaysnIeeugB\nOnfubH3PZDoG/AvoBvgB3xEVNRYnJycAdu7cycmTJ+ncuTMhISFalN/oubi4sHr120yePAi93g+z\n+SeWLFnIbbfdpnVpQlSbXIOvRT/++CMhIXdRUDAei8URg+Ettm/fbJ2n/bbbAjl9OhroCpgwGJ5h\n9epniYyMZMaMv7FmzSaU+guwneefn80zz8zS8nAatTNnzmAymfD09KRDhw5alyPENckTnW6S8eMf\nY926Dig179eW1XTrtoaDB5PQ6XTs3r2boUNHYWfXE4vlZwYM6Ep8/Af8+OOP9OoVRmHhMcAVyMDB\noRNZWam0atVKwyMSQtR3dfIla3R0NJ06dSI4OJgHH3yQkpIScnNzCQsLo2PHjgwePJj8/PxKy/v6\n+uLv709iYmJNd1uvXbhwGaXaXdHSjiNHfmTMmHFYLBb69u3L8eNHWLv2cTZuXMZttxkZPHgs0dFL\n0Ot9qAh3ACN6fWvOnz+vwVEIIWyGqoHU1FTl5eWliouLlVJKRUZGqjVr1qinn35aLV68WCmlVExM\njJo7d65SSqljx46pLl26KLPZrFJTU5W3t7cqLy+vtM0allKvfPjhR8pg8FKwS8FBBV0UvKyaNeum\n4uPjrcuVlJQof/8eysFhqoKNytExTDVp0lzBVgUWBbGqTZsO1v4VQohrqSo7a3QG7+Ligl6vp7Cw\nkLKyMgoLC2nXrh2bN29mwoQJAEyYMIH4+HgANm3aRFRUFHq9Hk9PT3x8fNi/f39tfUbVG2PHjmHZ\nsueAe4CHfn09RWlpb06fPm1dbt++fWRmWigpeRu4j+LiT7Czg1atpqLT6WnfPprt2z+RsfFCiBtS\no1E0rVq1Ys6cOXTo0AEnJyeGDBlCWFgY2dnZuLm5AeDm5kZ2djYAWVlZ9O7d27q+0WgkMzPzqu3O\nnz/f+nNoaCihoaE1KU9Tjz46lddeW0lKymgslqeBUzRp8gk9ejxsXcZisVC56+1o0sSBo0eTadOm\nDU2bNr3ZZVt98803PPHEc5w7l8Pw4XezZMkLmtYjhKgsKSmJpKSk61u4Jn8SnDhxQgUEBKjz58+r\n0tJSFRERodauXatcXV0rLdeyZUullFIzZsxQ69ats7ZPmTJFffzxx9f9Z0ZD8/PPPysvr07K0fEW\n1bSps3r55VcrvV9YWKi8vIKUXj9LQYJydLxf9e8/VFkslkrb6NdvmHJz81GDB49SmZmZdV73yZMn\nlbNzawWrFSQrJ6dh6uGHH6nz/Qohaq6q7KzRJZoDBw7Qp08fbrnlFuzt7Rk9ejR79+7F3d2ds2fP\nAhXDzNq2bQtU3DySnp5uXT8jIwMPD4+a7LpB8PLy4uTJ70hLO0Z+/jlmzXqi0vtOTk4kJ+/g/vsv\n07PnEh55pD1bt36MTqcDoKCggD597mb37lCysz9hx44A+vcfVu3ntlbXZ599RlnZKGAiEEJR0Xt8\n+GFcne5TCFF3ahTw/v7+7Nu3j6KiIpRSbN++ncDAQEaMGEFsbCwAsbGxRERUPCM0PDycuLg4zGYz\nqampmEwmm7+RR6fT4ebmZr2J6UoWi4WkpCSCgrxZtGgur766BIPBAEBZWRmfffYZBQUtsVieAfwp\nK3uBs2cvceLEiTqt2cHBATu7vCtactHr5XsAIRqsmv5ZsHjxYhUYGKiCgoLU+PHjldlsVjk5OWrQ\noEHK19dXhYWFqby8POvyCxcuVN7e3srPz08lJCRU688MW2KxWNSYMQ8rZ+eeyt5+jjIYvNU///kf\npZRSaWlp6rbbApWjo5sCNwUlCpSCy8rR8RZ1+vTpOq0tNzdX3Xqrt9Lrpyt4XRkMHdWLL75Up/sU\nQtyYqrJTbnS6yb755hsGDHiAgoJjgCOQTdOmPmRnpzN06Fi++WYgFsvfgRFAHjAKg+G/jBwZwAcf\nrKzz+s6dO8eSJcs4ezaHESPu5r777qvzfQohak6e6FSP5ObmYm/vSUW4A7hhb9+C/Px8vv/+WyyW\n9wEdEA8Mp2fPeKZNm8rEiRNvSn1t2rThxRcX3ZR9CSHqlswmeZP16NEDpY4BG4EL2NktoU0bF9q3\nb0+HDrcDW39dsgxn5ws89dQ0Jk+ejJ2d/FMJIapHLtFo4JtvvuH++6eQmfkznTp15+OPY/Hy8uLI\nkSMMGHAPFosPZWXp3H13b/7733US7kKIa5LJxhqQvLw8Dh06hKurK927d7cOnRRCiD8iAS+EEDZK\nHtlnQ8rLy/nXv17A17cn3buHsnPnTq1LEkLUU3IGX4eUUiQlJXHq1Cm6detGly5dqlz2hx9+oLi4\nmE6dOl1zorFnnvkHb7yxk8LCpUA6BsNf2bUrkW7dutXRUQgh6jMZJqkBpRRTpsxg48btQAhK/Z1l\ny17g0UenXLVsaWkp9957H7t3H6ZJk2a0bq1j165E2rWrmFv++PHj7NixAxcXF9aseZ/Cws+AQOBO\nioqO8vHH/ycBL4S4igR8HTlw4AAbNmyhsPA7oBlg4sknuzNu3INXTV/w6quvs2tXMUVFJkBPUdE/\nePTRWXz66QZ27tzJ8OGRKDUSO7s0SkouAGeoCHho0iQXR0fbnddHCFFzEvC1TCnFW2+9zbvvrqe0\n1B64QEXA+2JnZyAvL++qgD9y5EeKisKBiml5y8rG8v33FfPqT506i8LCVVTc2arQ60ei14+ltPTf\nNGlymubNNzFpku3NrS+EuHES8LVs7tx/8sYbWyksnA0cAnoBR4H/w9W1uXW+/Ct16xbIRx/9H0VF\nU4Cm2NvH0blzJwBycn4Bfrt2r6O0tBv33++Mo2MKrq7NmD17r03PzCmEqDn5krUWKaVwcnKhpOQn\n4Ldns9561D+ZAAAQIUlEQVSLTvc5HTr4sXXrRwQEBFy1XllZGSNHRpGUtAc7u2a4uTmya9fnuLu7\nM3r0w3z2mR6zeQVwCoNhCJ98spqBAwfezEMTQtRTMkzyJlLKAvw+AsZgaMWrr75CWtqxPwx3AHt7\nez79dCOHD+9k9+4P+eGHA7i7uwOwevUb3HVXPk2atMBg6MPSpfMk3OuBtLQ0unfvj4ODM15ewSQn\nJ2tdkhBXkTP4WjZ16gzWr0+hsPDv6HRHcXFZSkrKQeuImJqyWCwyZUE9UV5ejo9PZ06fHo/FMg3Y\nRvPm0zlx4jvrQ26EuFnkDP4meuutV5gzZyDdu0dzzz37SU5OuuFwByTc65GsrCyys3OxWOYCLsAY\n7Ow6c/DgQa1LE6ISOYPXWHl5ORkZGbRo0QJXV1etyxHX4eLFi7Ru3Y7SUhNwK1CMs3MQO3Z8YPNP\nKhP1j5zB11OnTp3Cx6cLgYF9cHNrz7x5C7QuSVwHFxcX/vGPeRgMf8Hefg7Ozv0YPLg3vXr10ro0\nISqRM3gN9eo1gEOHBmOxPAv8grNzPz766FWGDh2qdWniOmzfvp1Dhw7h5eXFmDFj5DKa0ITMJllP\nOTm1oLg4FWgFQJMmz/Dvf7vy3HPPaVuYEKLBkEs09ZSHhxeQ+Otv36HTrWfr1iS2b9+uZVlCCBsh\nZ/AaOnDgAIMGDcdi8eLy5aPA34DWODlF8/77bzBq1CitSxSiUSsvL8disaDX67Uu5ZrkDL6e6tmz\nJydPfs/AgUZ0utnAAuAJiore4Z//XKJ1eUI0Wkop5s1bgJNTc5ycmjF8eCSFhYVal1VtEvAaa926\nNW3buqFUiytaW1BSYtasJiEau/Xr1/PKKx9RWnqS8vILfPGFjieeeEbrsqqtxgGfn5/P2LFjCQgI\nIDAwkOTkZHJzcwkLC6Njx44MHjyY/Px86/LR0dH4+vri7+9PYmJiFVtufCZOjMJgWAp8DOzE2fmv\nPP74w1qXJUSjlZj4NYWFj1Fxn4MjxcVz+eKLr7Quq9pqHPAzZ87knnvu4YcffuDo0aP4+/sTExND\nWFgYx48fZ9CgQcTExACQkpLChg0bSElJISEhgenTp2OxWGrtIBqC4uJiHn/8Kdq370S3bv3ZvXu3\n9b2+ffvy8cdr6NHjDQID5/Gf/0xh9uyZGlYrROPWoYM7TZseAH67tn2Adu1u1bKkmlE1kJ+fr7y8\nvK5q9/PzU2fPnlVKKXXmzBnl5+enlFJq0aJFKiYmxrrckCFD1N69eyutW8NSGoyoqMnKyWmEgm8V\nrFfOzq3VTz/9pHVZQog/kJ+fr7y9g1WzZncrZ+f7VfPmbdWRI0e0LusPVZWdNZoPPjU1lTZt2jBp\n0iSOHDlCjx49eOWVV8jOzrbOd+7m5kZ2djZQMXdH7969resbjUYyMzOv2u78+fOtP4eGhhIaGlqT\n8uql//73Q0pKTgJtgC6UlX3J1q1b6dixo9alCSH+R4sWLTh6dB+ffvopRUVFhIW9XCtzStWGpKQk\nkpKSrmvZGgV8WVkZhw4d4vXXX6dXr1489dRT1ssxv9HpdOh0umtu44/euzLgbY2Dg4GSknNUBDzo\ndGdJSbHw448/4u/vr21xQoirGAwGIiMjtS7jKv978rtgwbWnOKnRNXij0YjRaLTOvTF27FgOHTqE\nu7s7Z8+eBeDMmTPWqVM9PDxIT0+3rp+RkdHonkL0n//8E4NhBPAydnaTKCn5gvXrs+jR4y5Wrlyj\ndXlCCBtUo4B3d3enffv2HD9+HKiYk6NTp06MGDGC2NhYAGJjY4mIiAAgPDycuLg4zGYzqampmEym\nRjfr3pNP/pW4uFcYO/YQdnb/RamDXLr0CYWFX/HXvz7J5cuXtS5RCGFjavxM1tdee42HHnoIs9mM\nt7c3q1evpry8nMjISFauXImnpycbN24EIDAwkMjISAIDA7G3t2fFihVVXr6xVSNGjMDe3p5t27K5\ncMH311Y/7O1dOXfuHM2aNdO0PiGEbZGpCm6yjIwM/Py6Uli4BQgBPqJVq6c4c+ZnmjZtqnV5QogG\nRqYqqEeMRiNxcasxGIbi4NCK1q1n8/nn8RLuQohaJ2fwGikrKyM3N5fWrVvLPOJCiBqT+eCFEMJG\nySUaIYRohCTghRDCRknACyGEjZKAF0IIGyUBL4QQNkoCvg5kZWXxwAOT6dlzELNn/53i4mKtSxJC\nNEIyTLKWXbp0iYCAHmRnj6GsbACOjm8RGqpj69aPtS5NCGGDqsrOGs9FI/7Y119/zcWL7Sgriwag\nuPguvviiNXl5ebRs2VLj6oQQjYlcoqllFXellvH7o77KAdUoJ1cTQmhLAr6W9e/fn7ZtL9K06Qxg\nIwZDBCNHjsbV1VXr0oQQjYxcg68DOTk5/POfL3D8+ClCQ0OYO3cOer1e67KEEDZI5qIRQggbJXPR\nCCFEIyQBL4QQNkoCXgghbJQEfD1gNpspLCzUugwhhI2RgNeQUopZs57F2dkFF5dWDB48ioKCAq3L\nEkLYCAl4Da1ZE8vbb2+jrCyT8vKLfP21E08+OVfrsoQQNkICXkM7duyhsHAqcAvQlOLiWSQl7dG6\nLCGEjZCA15CnZzscHPbx27QGOt0+2rdvp21RQgibUeOALy8vp1u3bowYMQKA3NxcwsLC6NixI4MH\nDyY/P9+6bHR0NL6+vvj7+5OYmHjjVduIp5+ezW23HaV581CaN4+gRYto3nxzidZlCSFsRI0Dfvny\n5QQGBlon0YqJiSEsLIzjx48zaNAgYmJiAEhJSWHDhg2kpKSQkJDA9OnTsVgstVN9A+fi4sK33+5h\n7drZvPvugxw/foSAgACtyxJC2IgaBXxGRgZbtmxh6tSp1ltkN2/ezIQJEwCYMGEC8fHxAGzatImo\nqCj0ej2enp74+Piwf//+Wiq/4XNycmLkyJFERkbSpk0brcsRQtiQGs0HP2vWLJYsWcLFixetbdnZ\n2bi5uQHg5uZGdnY2UPF0o969e1uXMxqNZGZm/uF258+fb/05NDSU0NDQmpQnhBA2KykpiaSkpOta\nttoB/+mnn9K2bVu6det2zZ3odLoq5z+/1ntXBrwQQoir/e/J74IFC665bLUDfs+ePWzevJktW7ZQ\nXFzMxYsXGTduHG5ubpw9exZ3d3fOnDlD27ZtAfDw8CA9Pd26fkZGBh4eHtXdrRBCiGqq9jX4RYsW\nkZ6eTmpqKnFxcQwcOJC1a9cSHh5ObGwsALGxsURERAAQHh5OXFwcZrOZ1NRUTCYTISEhtXsUQggh\nrnLDz2T97XLLs88+S2RkJCtXrsTT05ONGzcCEBgYSGRkJIGBgdjb27NixQp5fJ0QQtwE8sAPIYRo\nwOSBH0II0QhJwAshhI2SgBdCCBslAS+EEDZKAl4IIWyUBLwQQtgoCXghhLBREvBCCGGjJOCFEMJG\nScALIYSNkoAXQggbJQEvhBA2SgJeCCFslAS8EELYKAl4IYSwURLwQghhoyTghRDCRknACyGEjZKA\nF0IIGyUBL4QQNkoCXgghbJQEvBBC2CgJ+CskJSVpXUK9IX3xO+mL30lf/K4h9EWNAj49PZ0BAwbQ\nqVMngoKCePXVVwHIzc0lLCyMjh07MnjwYPLz863rREdH4+vri7+/P4mJibVTfS1rCP9gN4v0xe+k\nL34nffG7htAXNQp4vV7PsmXLOHbsGPv27eONN97ghx9+ICYmhrCwMI4fP86gQYOIiYkBICUlhQ0b\nNpCSkkJCQgLTp0/HYrHU6oEIIYSorEYB7+7uTteuXQFo1qwZAQEBZGZmsnnzZiZMmADAhAkTiI+P\nB2DTpk1ERUWh1+vx9PTEx8eH/fv319IhCCGE+EPqBqWmpqoOHTqoixcvKldXV2u7xWKx/j5jxgy1\nbt0663tTpkxRH330UaXtAPKSl7zkJa8avK7Fnhtw+fJlxowZw/Lly2nevHml93Q6HTqd7prr/u97\nFRkvhBCittR4FE1paSljxoxh3LhxREREAODm5sbZs2cBOHPmDG3btgXAw8OD9PR067oZGRl4eHjc\nSN1CCCH+RI0CXinFlClTCAwM5KmnnrK2h4eHExsbC0BsbKw1+MPDw4mLi8NsNpOamorJZCIkJKQW\nyhdCCHEtOlWDayO7du2if//+dO7c2XqpJTo6mpCQECIjIzl9+jSenp5s3LgRV1dXABYtWsSqVauw\nt7dn+fLlDBkypHaPRAghRGU3+iWrrdi6davy8/NTPj4+KiYmRuty6tzp06dVaGioCgwMVJ06dVLL\nly9XSimVk5Oj7r77buXr66vCwsJUXl6edZ1FixYpHx8f5efnpz7//HOtSq8zZWVlqmvXrmr48OFK\nqcbbF3l5eWrMmDHK399fBQQEqH379jXavli0aJEKDAxUQUFBKioqShUXFzeovpCAVxX/sb29vVVq\naqoym82qS5cuKiUlReuy6tSZM2fU4cOHlVJKXbp0SXXs2FGlpKSop59+Wi1evFgppVRMTIyaO3eu\nUkqpY8eOqS5duiiz2axSU1OVt7e3Ki8v16z+uvDSSy+pBx98UI0YMUIppRptX4wfP16tXLlSKaVU\naWmpys/Pb5R9kZqaqry8vFRxcbFSSqnIyEi1Zs2aBtUXEvBKqT179qghQ4ZYf4+OjlbR0dEaVnTz\njRw5Um3btk35+fmps2fPKqUqPgT8/PyUUhVnJlf+ZTNkyBC1d+9eTWqtC+np6WrQoEFqx44d1jP4\nxtgX+fn5ysvL66r2xtgXOTk5qmPHjio3N1eVlpaq4cOHq8TExAbVFzIXDZCZmUn79u2tvxuNRjIz\nMzWs6OZKS0vj8OHD3HHHHWRnZ+Pm5gZUjIrKzs4GICsrC6PRaF3H1vpo1qxZLFmyBDu73/9LNMa+\nSE1NpU2bNkyaNInu3bvzyCOPUFBQ0Cj7olWrVsyZM4cOHTrQrl07XF1dCQsLa1B9IQHP1WPyG5Pa\nvJehofr0009p27Yt3bp1u+b9GI2lL8rKyjh06BDTp0/n0KFDODs7W6cc+U1j6YuTJ0/yyiuvkJaW\nRlZWFpcvX2bdunWVlqnvfSEBz9Xj9NPT0yt9EtsquZehwp49e9i8eTNeXl5ERUWxY8cOxo0b1yj7\nwmg0YjQa6dWrFwBjx47l0KFDuLu7N7q+OHDgAH369OGWW27B3t6e0aNHs3fv3gbVFxLwQM+ePTGZ\nTKSlpWE2m9mwYQPh4eFal1WnlNzLYLVo0SLS09NJTU0lLi6OgQMHsnbt2kbZF+7u7rRv357jx48D\nsH37djp16sSIESMaXV/4+/uzb98+ioqKUEqxfft2AgMDG1ZfaPoNQD2yZcsW1bFjR+Xt7a0WLVqk\ndTl17uuvv1Y6nU516dJFde3aVXXt2lVt3bpV5eTkqEGDBv3hELCFCxcqb29v5efnpxISEjSsvu4k\nJSVZR9E01r749ttvVc+ePVXnzp3VqFGjVH5+fqPti8WLF1uHSY4fP16ZzeYG1Rc1utFJCCFE/SeX\naIQQwkZJwAshhI2SgBdCCBslAS+EEDZKAl4IIWyUBLwQQtio/w/FPWPwzLe4VgAAAABJRU5ErkJg\ngg==\n", + "text": [ + "" + ] + } + ], + "prompt_number": 246 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "x = []\n", + "for record in graffiti_month_count:\n", + " x.append(record[1])\n", + "\n", + "y = []\n", + "type_yearmonth_count['Noise - Commercial'].sort()\n", + "for record in type_yearmonth_count['Noise - Commercial']:\n", + " y.append(record[1])\n", + " \n", + "matplotlib.pyplot.scatter(x, y)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 247, + "text": [ + "" + ] + }, + { + "metadata": {}, + "output_type": "display_data", + "png": "iVBORw0KGgoAAAANSUhEUgAAAXMAAAD9CAYAAABOd5eOAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3XlY1WX+//HngQPowX0BFFRSUcQdDa1+FS5oNomaSqIp\nmZVlNdU42TZTWpNgy1Q2OUtZMTbf0JZRLPccrNTEXLLEkjE09nJBRZAD59y/P3BI08AFOHJ4Pa7L\n6+J81vfnVl/ncJ/7c38sxhiDiIjUaR6uLkBERC6dwlxExA0ozEVE3IDCXETEDSjMRUTcgMJcRMQN\nVBnmBQUFjBs3jm7duhEWFsaWLVs4fPgwUVFRdOnShWHDhlFQUFCxfXx8PCEhIYSGhrJmzZoaLV5E\nRMpVGeYPPPAAN954I3v27GHXrl2EhoaSkJBAVFQUe/fuZciQISQkJACQlpbG4sWLSUtLY9WqVcyY\nMQOn01njFyEiUt9VGuZHjx7ls88+4/bbbwfAarXStGlTkpOTiYuLAyAuLo6lS5cCsGzZMmJjY/Hy\n8iI4OJjOnTuTmppaw5cgIiLWylZmZGTQunVrpk6dyldffUW/fv14+eWXyc/Px9/fHwB/f3/y8/MB\nyMnJYeDAgRX7BwUFkZ2dfcYxLRZLdV+DiEi9UNkN+5V+Mi8rK2P79u3MmDGD7du34+vrW9Gl8j8W\ni6XSgD7XOmOMy/889dRTLq/hcvmjtlBbqB0u/7aoSqVhHhQURFBQEFdeeSUA48aNY/v27QQEBJCX\nlwdAbm4ufn5+AAQGBpKZmVmxf1ZWFoGBgVUWISIil6bSMA8ICKBdu3bs3bsXgHXr1tG9e3dGjhxJ\nYmIiAImJiYwePRqA6OhokpKSsNvtZGRkkJ6eTkRERA1fgoiIVNpnDvDqq68yadIk7HY7nTp14q23\n3sLhcBATE8PChQsJDg5myZIlAISFhRETE0NYWBhWq5UFCxZctn3kkZGRri7hsqG2+Jnaopza4Wd1\npS0s5nw6Y6rzhBbLefX/iIjIz6rKTt0BKiLiBhTmIiJuQGEuIuIGFOYiIm5AYS4i4gYU5iIibkBh\nLiLiBhTmIiJuQGEuIuIGFOYiIm5AYS4i4gYU5iIibkBhLiLiBhTmIiJuQGEuIuIGFOYiIm5AYS4i\n4gYU5iIibkBhLiLiBhTmIiJuQGEuIuIGFOYiIm5AYS4i4gYU5iIibkBhLiLiBhTmIiJuQGEuIuIG\nFOYiIm6gyjAPDg6mV69e9O3bl4iICAAOHz5MVFQUXbp0YdiwYRQUFFRsHx8fT0hICKGhoaxZs6bm\nKhcRkQpVhrnFYiElJYUdO3aQmpoKQEJCAlFRUezdu5chQ4aQkJAAQFpaGosXLyYtLY1Vq1YxY8YM\nnE5nzV6BiIicXzeLMeaM18nJycTFxQEQFxfH0qVLAVi2bBmxsbF4eXkRHBxM586dK94ARESk5lir\n2sBisTB06FA8PT2ZPn06d955J/n5+fj7+wPg7+9Pfn4+ADk5OQwcOLBi36CgILKzs8865uzZsyt+\njoyMJDIy8hIvQ0TEvaSkpJCSknLe21cZ5hs3bqRNmzb89NNPREVFERoaesZ6i8WCxWL51f3Pte70\nMBcRkbP98oPunDlzKt2+ym6WNm3aANC6dWvGjBlDamoq/v7+5OXlAZCbm4ufnx8AgYGBZGZmVuyb\nlZVFYGDgBV+EiIhcmErDvKioiOPHjwNw4sQJ1qxZQ8+ePYmOjiYxMRGAxMRERo8eDUB0dDRJSUnY\n7XYyMjJIT0+vGAEjIiI1p9Julvz8fMaMGQNAWVkZkyZNYtiwYfTv35+YmBgWLlxIcHAwS5YsASAs\nLIyYmBjCwsKwWq0sWLCg0i4Yd1JUVMQrr7xKevoBrr9+AFOmTKk31y4irmcxvxyqUtMntFjOGh1T\n19ntdiIiBvHdd205efI6bLa3mTo1kr/85UVXlyYibqKq7FSYV4M1a9YwduwTFBZuobzn6jBWayBH\njx7CZrO5ujwRcQNVZadu568GRUVFeHi04ufmbIqHhxclJSWuLEtE6hGFeTW49tprsVq/xmJ5FfgK\nb++76ddvAM2bN3d1aSJSTyjMq0HLli3ZuHEd11yzgnbtJjJmjIOVK993dVlncTqdbtfFJSLl1Gde\nDxQXFzNp0p0kJ7+H1erN448/zpNPPubqskTkAqjPXHjwwUdZubIYh+MQJSW7mTdvUcVwUhFxDwrz\nemD16v9w8uQTQCOgPUVF97By5X9cXZaIVCOFeT0QEOAP7Kx47e29k8BAP9cVJCLVTn3m9cD27du5\n/vobcDpvwMPjEK1a7Wf79s9rbbTNxx9/zPr1nxIUFMBdd92Fr69vrZxXxJ3opiEBIDMzk1WrVtGw\nYUNGjx5No0aNauW8zz33Z+bMWUBR0e00aLCNjh0z2bbtUxo0aFAr578UxhgKCwtp1KiRpmYQl1OY\ni8sYY2jQoDF2+zdAMGBo1Ggwb745g/Hjx7u4uspt376dG28cx6FDedhsjfngg38xdOhQV5cl9ZhG\ns4jLlJWV4XDYgTanllgwJpDCwkJXllWlkpIShg0bRX5+PGVlRRw7tpgxYyby448/uro0kV+lMJca\n4+XlRWTkCHx8pgP/BRYDqxk8eLCLK6vcgQMHKCnxBm45tSQST89ufPPNN64sS6RSCnOpUR9+uIiR\nIw2tWkXRvfvLrF2bTIcOHVxdVqVat25NaelBYP+pJYex2/fStm1bF1YlUjn1mYucwyuvvMbjjz+L\nh0ckxmzm7rsn8sILz7q6LKnH9AWoyEXauXMnX3/9NZ07d+aqq65ydTlSzynMRUTcgEaziIjUAwpz\nERE3oDAXEXEDCnMRETegMBcRcQMK81pkjOHkyZOuLkNE3JDCvJasW7eOFi3a4uvbmA4dwti9e7er\nSxIRN6Jx5rUgJyeHLl16c+LEe8D1wJsEBMwlM/M7rFarq8sTkTpA48wvAzt37sRqDQciAQswjWPH\nTpKTk+PawkTEbSjMa0FAQAClpd8Cx08tyaCs7BgtWrRwZVki4kYU5rUgPDyciRNH4evbH1/fOGy2\na3jxxedr7Wk/IuL+zqvP3OFw0L9/f4KCgli+fDmHDx/mlltu4cCBAwQHB7NkyRKaNWsGQHx8PG++\n+Saenp7Mnz+fYcOGnXnCethnDuUjWVJSUsjIyKBPnz6Eh4e7uiQRqUOqZaKtP//5z2zbto3jx4+T\nnJzMrFmzaNWqFbNmzWLevHkcOXKEhIQE0tLSmDhxIlu3biU7O5uhQ4eyd+9ePDx+/gWgvoa5iMil\nuOQvQLOyslixYgV33HFHxYGSk5OJi4sDIC4ujqVLlwKwbNkyYmNj8fLyIjg4mM6dO5Oamlod1yEi\nIpWoclzcQw89xPPPP8+xY8cqluXn5+Pv7w+Av78/+fn5QPkQvIEDB1ZsFxQURHZ29lnHnD17dsXP\nkZGRREZGXmz9IiJuKSUlhZSUlPPevtIw/+ijj/Dz86Nv376/elCLxYLFYvnVY5xr3elhLiIiZ/vl\nB905c+ZUun2lYb5p0yaSk5NZsWIFJ0+e5NixY0yePBl/f3/y8vIICAggNzcXPz8/AAIDA8nMzKzY\nPysri8DAwEu4HBEROR+V9pnPnTuXzMxMMjIySEpKYvDgwSxatIjo6GgSExMBSExMZPTo0QBER0eT\nlJSE3W4nIyOD9PR0IiIiav4qRETquQu6l/x/XSaPPvooMTExLFy4sGJoIkBYWBgxMTGEhYVhtVpZ\nsGBBpV0w4v7Kyso0ZYFILdDcLFIjli9fzuTJd3Ls2EHCwvrz8ceL6dChg6vLEqmz9EBnqXXp6en0\n6XM1RUXJQAQeHs8REvI+3367zdWlidRZmmhLat2WLVvw8BgKXAV44nQ+yr59aRQWFrq6NBG3pTCX\nald+D8I3gP3Ukj1YrV7YbDYXViXi3hTmtejVVxfQunUwzZq15YEHZuFwOFxdUo0YMmQIgwZ1p1Gj\nAdhs02jYcDB/+9trZ0zrICLVS33mteT99z8gLu4RioreB5pgs93GQw8N5U9/etLVpdUIp9PJihUr\nyMnJISIigj59+ri6JJE6TV+AXiZuueV2liwZAEw/teRzQkN/z549X7iyLBGpI/QF6GWidetmeHru\nO23JPpo3b+qyekTEveiTeS3Jysqid++BFBYOx+lsio/PItatW37GxGQiIr9G3SyXkby8PP71r39h\nt9sZM2YMoaGhri5JROoIhbmIiBtQn/ll5uTJk0yf/gCBgaH06HE1GzZscHVJIuIGFObnkJGRwdix\nk4mIiOKJJ+ZQWlpasc4Yw/r161m0aBF79uy54GPfccf9LFqUQU7O++zePZMbbxx3UccRETmdull+\n4eDBg4SG9qWgYDoOR39stj8zZkx73nnnDYwxTJp0B8uXb8Ji6UtZ2TqefHIm6ek/4HA4mD49jquu\nuqrS49tszSku/hYof1KTl9f9xMcHM3PmzFq4OhGpq6rKTs1N+gurV6+mpKQ/DscfACgquoakpFa8\n9dZf2bhxI8nJGzlxYjtgA3bx2GNXAk8BDXjvvVF89NFiBg0a9KvH9/GxUVycz//C3GrNw9e3e01f\nllwCYwxZWVn4+PhUPIhF3IfD4eCdd97h+++/p2/fvowaNapOTt2tbpZfKL/lvOy0JeU/WywWcnJy\n8PDoTXmQA/SkvAnvBX5HUdELzJnzEgClpaXnfBeNj5+NzRYNPIe39zRatPiKCRMm1Nj1HDt2jGnT\n7qNXr2uZMOF2fvzxxxo7lzs6cuQI/ftfT5cu/WnXrgsTJ05z22kY6iNjDNHRE7j33jd4+mnDrbf+\ngd///glXl3VxTC1zwSkvyJEjR0xAQEdjtf7ewGJjs11jpk//rTHGmG+//dbYbK0NbDfgNDDfQIdT\nPxsDS014eKTp1+964+FhNTZbc7No0TtnnWPlypXmvvseMnPmPGMOHTpUY9ficDhMv37XGR+fqQb+\nY6zW35mOHXua4uLiGjunu7nllqnG23u6AYeB48Zmu9b85S+vubosqSZbtmwxvr6dDZSc+j980Hh7\nN67R/5cXq6rsVJifQ05Ojrn99hkmKupm88ILLxmHw1GxbsmS94zN1sxYrQ2Mv39H06CBv4HlBlYb\nm62T6dSpt7FaHzFQauAr07Chv9m2bZtLrmPfvn3GZmtroOzUP1Snady4j9m4caNL6qmLOnbsY2Dr\nqfYzBv5qJk68w9VlSTVZs2aNado08rS/X6ex2dqajIwMV5d2lqqyU33m59CmTRsWLnztnOvGjx/H\n2LE3U1RURKNGjViy5D2effY5HA4HDzzwGPfccw8OxxeUfx3RC2NuZuPGjYSHh9fqNQBYrVaMKaO8\nq8gTMBhTose4XYCQkI4cOLAah6M/4KRBg3V069bP1WVJNenXrx8Wy3fAW8BwPD1fp02bVrRr187V\npV0wjWapZi1bBnH48BLgasBBo0bX8uabDzF+/Phar8UYw4gRY/n0UzvFxbE0aPAxYWFZbNmyXoF+\nng4cOMDAgYMpKmqD03mU0NCWfPrpSho2bOjq0qSa7Nq1i0mTpnPgwD569Qrn3XdfvyzDXHeA1rLk\n5GRiY+8AfoOHRxr9+rVk3bpkl4Wn3W4nIeEFtmzZRc+eIfzxj4/i6+vrklrqquPHj5OamoqPjw8D\nBw7UG6G4hMLcBfbs2cPGjRtp1aoVI0eOxNPT09UlnbfMzEyWL1+Ol5cXY8eOpUWLFq4uSURQmMsF\n+Prrr7nmmqGUld2IxXKCxo2/ZOfOTQQEBLi6NJF6T3OzXAa2bNlCx469aNCgMf37R7J8+XI6depN\ngwaNCQ+/joyMDFeXCMCDD/6BwsKnKC5+i6KiJRw6NJpnn33e1WWJyHlQmFej4uJi7rzzt7Rv34P+\n/QexdetW8vPzGTz4N2Rk/JGSkky2bbuKUaNi+f77xygpyeSrr0YSGXkjZWVlVZ+ghuXl/YQxPSpe\nl5X1IDf3oAsrEpHzpTCvRlOmTOedd7LIzHyHbdumEhk5gh49wikq6gSMB5oBkRgTCkwAmuF0PszB\ng4VkZmbWer27d+8mKSmJ1NRUAEaOHErDhs8Ah4AD+Pq+zMiRQ2q9LhG5cPpavpoYY1i6dAllZT8C\nTYA+FBevoqhoF5AFfAq0AQyQCZwEGgA/UlZWQLNmzWq13n/8YyEPPfQEnp7X4nRu5e67JxEfP5v8\n/N/yf//XAU9PKzNn/p4pUybXal0icnH0Beh5eO21v/L883/FGMPMmXdz//0zzpqIxxiDr28Liou/\nBDqdWjoYCAI+ANoDP1L+y1AxNlsodnskPj7LePDByfzpT0/W2vUcP36c1q2DKCnZBnQGDmOz9WTL\nltX06NEDY0ydnGhIxJ1p1sRL9M9/LmLWrJcpKnobsPDYY7fRuHEjpk6NO2M7i8XCk08+wTPPjKCo\n6F68vXdRVrYNp/MA8DdgMnAM6MOQIVdy1123nZql7S8MHz68Vq/pp59+wmptRklJ51NLWuDl1Y3s\n7Gx69OihIBepiyq717+4uNhERESY3r17m27duplHH33UGGPMoUOHzNChQ01ISIiJiooyR44cqdhn\n7ty5pnPnzqZr165m9erVFzy/wOVm0KBRBpacNnfD++b660f+6vYffPCBmTbtXvPHP842ycnJBqwG\nCiv29/S8zzz//PO1eAVnKykpMS1bBhlYfKquTcZma2Wys7NdWpeI/LqqsrPKZD1x4oQxxpjS0lIz\nYMAA89lnn5mHH37YzJs3zxhjTEJCgnnkkUeMMcbs3r3b9O7d29jtdpORkWE6dep0xiRV51PQ5SY6\nOtbAK6eF+avmppsmnPf+HTv2MhbL30/te8j4+nY1K1eurMGKz8+XX35p/Pw6GG/vJsbXt4X5+OOP\nXV2SiFTiksP8f06cOGH69+9vvvnmG9O1a1eTl5dnjDEmNzfXdO3a1RhT/qk8ISGhYp/hw4ebzZs3\nX1BBl5sdO3YYX99WxmJ53FgsTxhf31YXNAvi7t27TevWHUzjxmGmQYMW5ne/e+ysbdLT083ChQvN\nhx9+aOx2e3WWXymn02kOHTp01huuiFx+qsrOKvvMnU4n4eHh7Nu3j3vuuYfu3buTn5+Pv3/5k3L8\n/f3Jz88HICcnh4EDB1bsGxQURHZ29lnHnD17dsXPkZGRREZGXnQ3UU3r06cPW7d+yttvL8IYJ7fd\ntoGwsLDz3j8sLIwDB/awZ88efvjhB5o2bcqJEycq5kf55JNPiI6egMUyAotlH926zefzz1fj7e1d\nU5dUwWKx6HZ9kctUSkoKKSkp57/D+b4rFBQUmAEDBpj169ebZs2anbGuefPmxhhj7rvvPvPOOz8/\njGHatGnmgw8+uKB3F3dUWFhowsOvNY0a9TBNmgw0QUFdTGZmpjHGmHbtuhlYcaobxmFstijzxhtv\nuLhiEbncVJWd533TUNOmTfnNb37Dtm3b8Pf3Jy8vD4Dc3NyK5yIGBgaecfNLVlYWgYGB5//O4qYS\nEl4gLa0NhYVfcezYZnJzb2HGjIcBOHQoD+h/aksPSkrCK9pWROR8VRrmBw8epKCgACi/VX3t2rX0\n7duX6OhoEhMTAUhMTGT06NEAREdHk5SUhN1uJyMjg/T0dCIiImr4Ei5/e/Z8z8mTw/lfczscN/Dd\nd/sAuPrq6/DyeobyB0ik4+Pzf+zalcawYeP4wx/mcPLkSZfVLSJ1R6V95rm5ucTFxeF0OnE6nUye\nPJkhQ4bQt29fYmJiWLhwIcHBwSxZsgQo7x+OiYkhLCwMq9XKggUL6s2Y5eLiYtLT02nVqhVt27Y9\nY93AgX1YufJfFBVNAHzw8XmLAQP6AvDuu28QHT2RLVtseHs3oEWLAJYt86CkZDyff/4uX3wRw9q1\ny+pNO4rIxdEdoNVg165dDB78G+z2JpSW5vK73z3Is8/+fEdnWVkZEyZM5aOPPsbDw5uwsK588kky\nTZs2rdjGbrezY8cOhg69ncLCryn/FG+nQYP2pKaupXv37hw9epRmzZop2EXqIc1nXguuuKIH+/fP\nAqYAP+LrexUffbTwrFE6eXl52O122rVrd85A3rx5M8OH383x4zsBC+AAWuPhcQKLxYaHRxmNGzdh\n+fL3uPrqq2v+wkTksqH5zGuY0+nkwIE9wMRTS/xwOKLYvXv3WdsGBATQvn37X/1kHR4eTkCAB97e\nDwJrgVuB7jidx3E4xlBaOo7Dh//BiBE3U1hYWENXJCJ1kcL8Enl4eNC2bWdg6aklBXh4rGfPnj28\n/PLLF/TgCR8fHzZtWsstt5ykZcsZQB6wAvAGfgd8AfwGaMW+ffuq90JEpE5TN0s1SE1NZdiwURjT\nDrt9P8Y4sVhuxOlsiLf3v9m4cR29evW6oGPOm/ccs2encvLke5R3ufwdeB94iwYNerJ//7cVN26J\niPtTN0stiIiI4MCBb1m58mVGjbqBsrI7OXnyJez2LAoLC+jX71ree+/9Czrm/fffR5cuOTRufDU+\nPjcAM7HZPLDZInjmmdkK8mqybt06brvtHn7725mXzeP7RC6GPplXs9Gjb2XZsqHAe0BHIAH4hoYN\no9m0aTUNGzbkttvuJyPje8LD+/L2269V3HT1S3a7nXXr1lFUVETTpk05ePAg3bp1o0+fPrV4Re5r\n8eIl3H77QxQVzcLDI4/Gjd9m587NBAcHu7o0kbNoNEstS0z8J/fe+xwnTqQDh4HyOVh8fO5j9uwg\nXnxxAYcOPYwxw7BaX6dr18/YtWszHh76Jam2denSn/T0BGAoAB4eM3nkkYbMnfsn1xYmcg7qZqll\nU6ZM5rHHJlN+P9Y3p5Y6sVp3U1BQQGlpR4y5H+hKWdnzfP/9D2RlZbmu4Hqs/O7a5hWvnc4WFBWV\nuK4gkUugMK9mFouFJ554hCVLEmnYMBofn/vw9R1Ct26GESNG4HD8SPmt+wDHcDhOYLPZXFlyvXX7\n7bHYbPcAm4APsdnmExs7ztVliVwUPTauhowfP46QkM5s2LCBVq2uYvz48Xh6ehIe3oGtW2+iuHgI\nvr6LmTRpKq1atXJ1ufXSk08+htVq5Z//fABfXxsJCf9kwIABri5L5KKoz7yW2e12/vGPf/Ddd98T\nEdGXW2+9Vbfni0iV9AVoDSooKGDKlHvYsCGFVq38eOONlxk0aBAABw4c4O23E7HbS5kwIYaePXu6\nuFoRqcsU5jVo8OCRbNwYgN3+FLADm+12du7chMVioV+//8eJExNwOm00bPg669Ylc9VVV7m6ZBGp\noxTmNcThcODj0xCH4zjgA4DNNpWXXrqKLVu+4u23W+N0zj619dtce+17fPrpx64qV0TqOA1NrCEe\nHh54e9uA/aeWGDw8MmjatClHjxbidLY7bet2HDumibFEpOYozC+SxWLhhRcSsNmGYbH8kYYNo+nY\n0c7o0aOJjR2FzfYssBnYhc02i0mTRru6ZBFxY+pmuUTr168nJWUDAQH+TJ06lYYNGwLwj3+8wTPP\n/JmysjLuumsKTz31uO7yFJGLpj7zy9TRo0eJjb2D9etX0ahRc1577QVuuSXG1WWJyGVKYX6Zuumm\nW1i71obd/mfgOxo2HM2GDcu58sorXV2aiFyG9AXoZWr9+jXY7c9RPjfIQEpLb+WTTz4557Z68xOR\nqijMXaRJkxbAt6deGby999CyZcsztnnppfk0atQSHx9fxo+fQnFxca3XKSJ1g8LcRf72txex2cbh\n7f0ANtuNBAf/xK233lqxPjk5mT/8YT4nTmymtDSXjz46wW9/O8uFFYvI5Ux95i60Y8cOPvnkE5o3\nb87EiRMrRsIA3HPPA/ztb+2BmaeWfE1g4C1kZaW5pFYRca2qslOzJl6kgoICnn32Ofbty2LIkKu4\n557pFzz0sG/fvvTt2/ec69q0aY239zfY7f9b8g2tW2t2RRE5N30yvwjFxcX07n0VBw70w26/Bpvt\ndW699Ur+/vf51XaOI0eO0LfvNfz0U2ecTn88PZeydq3mdxGprzQ0sQYsX76cSZOe5/jxDYAFKMDT\nM4DCwgIaNGhQbec5fvw477//PkVFRdxwww106tSp2o4tInWLullqgN1uBxpTHuQANiwWD8rKyirZ\n68I1btyYqVOnVusxRcQ9aTTLRRg0aBA+Pl/j4fEcsJEGDSYzePBwGjVq5OrSRKSeqjTMMzMzGTRo\nEN27d6dHjx7Mn1/eJ3z48GGioqLo0qULw4YNo6CgoGKf+Ph4QkJCCA0NZc2aNTVbvYu0aNGCL774\nD1FRqYSGzuS229ry73//y9VliUg9VmmfeV5eHnl5efTp04fCwkL69evH0qVLeeutt2jVqhWzZs1i\n3rx5HDlyhISEBNLS0pg4cSJbt24lOzuboUOHsnfv3jNGebhDn7mISG27pNv5AwIC6NOnDwCNGjWi\nW7duZGdnk5ycTFxcHABxcXEsXboUgGXLlhEbG4uXlxfBwcF07tyZ1NTU6roWERH5Fef9Bej+/fvZ\nsWMHAwYMID8/H39/fwD8/f3Jz88HICcnh4EDB1bsExQURHZ29lnHmj17dsXPkZGRREZGXmT5IiLu\nKSUlhZSUlPPe/rzCvLCwkLFjx/LKK6/QuHHjM9ZZLJZKny5/rnWnh7mIiJztlx9058yZU+n2VY5m\nKS0tZezYsUyePJnRo8ufluPv709eXh4Aubm5+Pn5ARAYGEhmZmbFvllZWQQGBl7wRbiTwsJCUlNT\n+f77711dioi4sUrD3BjDtGnTCAsL48EHH6xYHh0dTWJiIgCJiYkVIR8dHU1SUhJ2u52MjAzS09OJ\niIiowfIvb1999RUdOoQSFXU33bsP5N57Z+rLXxGpEZWOZvn888+57rrr6NWrV0V3SXx8PBEREcTE\nxPDDDz8QHBzMkiVLaNasGQBz587lzTffxGq18sorrzB8+PAzT1iPRrN06tSb77+fCdwAzMLDYzWj\nRl3Pv/711hmTaomIVEW387uQ1eqDw5ENXAeMAIZitf6dyEjDmjVLK/2uQUTkdApzFwoJ6ct//zsU\n2AhsOrXUjo+PPz/88F3Fdw0iIlXRY+Nc6N//XkSTJonAMeB/fwkOHI5SkpKS2L59uwurExF3ojCv\nQT169CB9sUNeAAAK+0lEQVQj41vat3fi5XUP8AGenr0xpgWPP/4l1157E/PnL3B1mSLiBtTNUguO\nHDnCE088zdatO/nqqz2Ulu4FmgAZ+Pj05scfs2jSpAlQPtSzuLiY4ODgC37YhYi4L3WzXAaaN2/O\nggUv8cwzj2Cz9aQ8yAGuwNOzKYcOHcLhcDBx4jSuuKI7PXteR+/eV3Pw4EFXli0idYjCvBb17t2b\nsrKdQArlfehv06iRlaCgIF5//Q2WLfuOkpJMiooy+e67gdx554OVH1BE5BSFeS1q06YNS5e+S7Nm\nsXh4+NCu3Tw++WQ5Xl5efPHFToqKJgC+gIXS0qls27bT1SWLSB2hJw1dopKSEowx5/24uKFDh3L4\ncA4nT54848ahsLBONGy4muLiuwErnp4rCAnRY+JE5Pzok/lFcjgcTJ16D76+TWnUqBnjxk0+9Ti5\nqlksFnbv3s3NN09mxIgYli5dygMP3E94uJ1GjXrQpMlV+PktZOHCV2r4KkTEXeiT+UV68cVXWLIk\nDYfjR8DKihUxPPnkn0hIeLrKfXfu3Mn114+gqOiPQHM+/fQBXn+9mA0bVvDll19SXFxM//799Rg6\nETlvGpp4kYYNG8fateOBW04tWU3//s+zdeu6Kve96677ef31tsBjp5asonv3Z/jmm401VK2I1HUa\nmlhDrriiLV5eX1S89vT8gg4d2p7Xvk6nATxPW2J1izc4EXEdfTK/SD/++CP9+l3L0aPtAW8aNtzN\n1q2f0r59+yr3TU1NZdCg31BUNA9ohs02i/nzn2DatKk1XreI1E2aaKsGHT9+nLVr1+JwOBg6dCjN\nmzc/730/++wznn76JYqLS5g+PZbJk2+twUpFpK5TmIuIuAH1mYuI1AMKcxERN6AwFxFxAwpzERE3\noDAXEXEDCnMRETegMBcRcQMKcxERN6AwFxFxAwpzERE3oDAXEXEDejhFLXE6nXz44YdkZGQQHh7O\nkCFDXF2SiLgRTbRVC4wxjB07mTVrvsVuvw4vr6U88sidPPnkY1XvLCKCZk28LGzZsoUhQyZx4sQ3\nQAMgFy+vEA4ezKFJkyauLk9E6oBLmjXx9ttvx9/fn549e1YsO3z4MFFRUXTp0oVhw4ZRUFBQsS4+\nPp6QkBBCQ0NZs2ZNNZTvHg4fPozV2pHyIAdog9XamKNHj7qyLBFxI5WG+dSpU1m1atUZyxISEoiK\nimLv3r0MGTKEhIQEANLS0li8eDFpaWmsWrWKGTNm4HQ6a67yOqRfv344nV8BHwLH8PB4Hj+/FrRt\ne36PmRMRqUqlYX7ttdee9fSc5ORk4uLiAIiLi2Pp0qUALFu2jNjYWLy8vAgODqZz586kpqbWUNl1\ni5+fH2vWLKNDhz/i5RVAr17J/Oc/H+Hp6Vn1ziIi5+GCR7Pk5+fj7+8PgL+/P/n5+QDk5OQwcODA\niu2CgoLIzs4+5zFmz55d8XNkZCSRkZEXWkadM3DgQPbv3+3qMkSkjkhJSSElJeW8t7+koYkWiwWL\nxVLp+nM5PcxFRORsv/ygO2fOnEq3v+Cbhvz9/cnLywMgNzcXPz8/AAIDA8nMzKzYLisri8DAwAs9\nvIiIXIQLDvPo6GgSExMBSExMZPTo0RXLk5KSsNvtZGRkkJ6eTkRERPVWKyIi51RpN0tsbCwbNmzg\n4MGDtGvXjqeffppHH32UmJgYFi5cSHBwMEuWLAEgLCyMmJgYwsLCsFqtLFiwoNIuGBERqT66aUhE\npA64pJuGRESkblCYi4i4AYW5iIgbUJiLiLgBhbmIiBtQmIuIuAGFuYiIG1CYi4i4AYW5iIgbUJiL\niLgBhbmIiBtQmIuIuAGFuYiIG1CYi4i4AYW5iIgbUJiLiLgBhbmIiBtQmIuIuAGFuYiIG1CYi4i4\nAYW5iIgbUJiLiLgBhbmIiBtQmIuIuAGFuYiIG1CYi4i4AYW5iIgbqLdhnpKS4uoSLhtqi5+pLcqp\nHX5WV9qiRsJ81apVhIaGEhISwrx582riFJesrvwF1Qa1xc/UFuXUDj+rK21R7WHucDi47777WLVq\nFWlpabz77rvs2bOnuk8jIiKnqfYwT01NpXPnzgQHB+Pl5cWECRNYtmxZdZ9GREROYzHGmOo84Pvv\nv8/q1at5/fXXAXjnnXfYsmULr776avkJLZbqPJ2ISL1RWVxbq/tkVYV1Nb93iIgINdDNEhgYSGZm\nZsXrzMxMgoKCqvs0IiJymmoP8/79+5Oens7+/fux2+0sXryY6Ojo6j6NiIicptq7WaxWK3/5y18Y\nPnw4DoeDadOm0a1bt+o+jYiInKZGxpmPGDGC7777jv/+97889thjNXGKS1IXxsFXl8zMTAYNGkT3\n7t3p0aMH8+fPB+Dw4cNERUXRpUsXhg0bRkFBQcU+8fHxhISEEBoaypo1a1xVeo1xOBz07duXkSNH\nAvW3LQoKChg3bhzdunUjLCyMLVu21Nu2iI+Pp3v37vTs2ZOJEydSUlJS99rC1DNlZWWmU6dOJiMj\nw9jtdtO7d2+Tlpbm6rJqTG5urtmxY4cxxpjjx4+bLl26mLS0NPPwww+befPmGWOMSUhIMI888ogx\nxpjdu3eb3r17G7vdbjIyMkynTp2Mw+FwWf014cUXXzQTJ040I0eONMaYetsWU6ZMMQsXLjTGGFNa\nWmoKCgrqZVtkZGSYK664wpw8edIYY0xMTIx5++2361xb1Lsw37Rpkxk+fHjF6/j4eBMfH+/CimrX\nqFGjzNq1a03Xrl1NXl6eMaY88Lt27WqMMWbu3LkmISGhYvvhw4ebzZs3u6TWmpCZmWmGDBli1q9f\nb2666SZjjKmXbVFQUGCuuOKKs5bXx7Y4dOiQ6dKlizl8+LApLS01N910k1mzZk2da4t6NzdLdnY2\n7dq1q3gdFBREdna2CyuqPfv372fHjh0MGDCA/Px8/P39AfD39yc/Px+AnJycM0YfuVv7PPTQQzz/\n/PN4ePz8T78+tkVGRgatW7dm6tSphIeHc+edd3LixIl62RYtWrRg5syZtG/fnrZt29KsWTOioqLq\nXFvUuzCvrzctFRYWMnbsWF555RUaN258xjqLxVJpu7hLm3300Uf4+fnRt2/fX73fob60RVlZGdu3\nb2fGjBls374dX19fEhISztimvrTFvn37ePnll9m/fz85OTkUFhbyzjvvnLFNXWiLehfm9XEcfGlp\nKWPHjmXy5MmMHj0aKP+kkZeXB0Bubi5+fn7A2e2TlZVFYGBg7RddAzZt2kRycjJXXHEFsbGxrF+/\nnsmTJ9fLtggKCiIoKIgrr7wSgHHjxrF9+3YCAgLqXVt8+eWXXH311bRs2RKr1crNN9/M5s2b61xb\n1Lswr2/j4I0xTJs2jbCwMB588MGK5dHR0SQmJgKQmJhYEfLR0dEkJSVht9vJyMggPT2diIgIl9Re\n3ebOnUtmZiYZGRkkJSUxePBgFi1aVC/bIiAggHbt2rF3714A1q1bR/fu3Rk5cmS9a4vQ0FC++OIL\niouLMcawbt06wsLC6l5buLjP3iVWrFhhunTpYjp16mTmzp3r6nJq1GeffWYsFovp3bu36dOnj+nT\np49ZuXKlOXTokBkyZIgJCQkxUVFR5siRIxX7PPvss6ZTp06ma9euZtWqVS6svuakpKRUjGapr22x\nc+dO079/f9OrVy8zZswYU1BQUG/bYt68eSYsLMz06NHDTJkyxdjt9jrXFtU+0ZaIiNS+etfNIiLi\njhTmIiJuQGEuIuIGFOYiIm5AYS4i4gYU5iIibuD/A+yC4Om7zwRyAAAAAElFTkSuQmCC\n", + "text": [ + "" + ] + } + ], + "prompt_number": 247 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Noises in 2013" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# Noises in 2013 w/ coordinates\n", + "formatted_noises_2013 = []\n", + "for record in formatted_noises:\n", + " if record[1].year == 2013 and nx.pnpoly(record[2].latitude, record[2].longitude, lower_manhattan) == 1:\n", + " formatted_noises_2013.append(record)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 248 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# build a dict\n", + "formatted_noises_2013_dict = {}\n", + "\n", + "for c in complaint_type:\n", + "\tl = []\n", + "\tfor record in formatted_noises_2013:\n", + "\t\tif record[3] == c:\n", + "\t\t\tl.append(record)\n", + "\tformatted_noises_2013_dict[c] = l\n", + "\n", + "for key, value in formatted_noises_2013_dict.iteritems():\n", + "\tprint key + \": \" + str(len(value))" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "Noise: 3580\n", + "Noise - House of Worship: 14\n", + "Noise - Helicopter: 56\n", + "Noise - Vehicle: 682\n", + "Collection Truck Noise: 10\n", + "Noise - Street/Sidewalk: 1712\n", + "Noise - Commercial: 3147\n", + "Noise - Park: 403\n", + "Noise Survey: 0\n" + ] + } + ], + "prompt_number": 249 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Noises in September 2013 " + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# build a dict for all months in 2013\n", + "formatted_noises_2013_month_dict = {}\n", + "\n", + "for i in range(1, 13):\n", + "\ttemp_dict = {}\n", + "\tfor key, value in formatted_noises_2013_dict.iteritems():\n", + "\t\tl = []\n", + "\t\tfor record in value:\n", + "\t\t\tif record[1].month == i:\n", + "\t\t\t\tl.append(record)\n", + "\t\ttemp_dict[key] = l\n", + "\tformatted_noises_2013_month_dict[i] = temp_dict\n", + "\n", + "\n", + "for key, value in formatted_noises_2013_month_dict[9].iteritems():\n", + "\tprint key + \": \" + str(len(value))" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "Noise: 461\n", + "Noise - House of Worship: 2\n", + "Noise - Helicopter: 11\n", + "Noise - Vehicle: 98\n", + "Collection Truck Noise: 1\n", + "Noise - Street/Sidewalk: 288\n", + "Noise - Park: 63\n", + "Noise - Commercial: 483\n", + "Noise Survey: 0\n" + ] + } + ], + "prompt_number": 250 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Dive into noise complaint types" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Distance between different comlaint type of noise and the centroid of graffitis in September 2013" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# calculate distance for all types\n", + "\n", + "distance_dict = {}\n", + "\n", + "for key, value in formatted_noises_2013_month_dict[9].iteritems():\n", + " if len(value) != 0:\n", + " distances = []\n", + " for record in value:\n", + " distances.append(distance.distance(centroid, record[2]).miles)\n", + " distance_dict[key] = distances" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 251 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# for key, value in formatted_noises_2013_month_dict[8].iteritems():\n", + "# if len(value) != 0:\n", + "# #distances = []\n", + "# for record in value:\n", + "# distance_dict[key].append(distance.distance(centroid, record[2]).miles)\n", + "# #distance_dict[key] = distances" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 252 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "for key, value in distance_dict.iteritems():\n", + " print key + \" - mean: \" + str(numpy.mean(value))" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "Noise - mean: 0.780869846263\n", + "Noise - House of Worship - mean: 0.783178604568\n", + "Noise - Helicopter - mean: 1.00146049432\n", + "Noise - Vehicle - mean: 0.729399316769\n", + "Collection Truck Noise - mean: 1.33744464192\n", + "Noise - Street/Sidewalk - mean: 0.712086097955\n", + "Noise - Commercial - mean: 0.649861312861\n", + "Noise - Park - mean: 0.733286530404\n" + ] + } + ], + "prompt_number": 253 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "for key, value in distance_dict.iteritems():\n", + " print key + \" - std: \" + str(numpy.std(value))" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "Noise - std: 0.369021461233\n", + "Noise - House of Worship - std: 0.100003063577\n", + "Noise - Helicopter - std: 0.403013114789\n", + "Noise - Vehicle - std: 0.35520461345\n", + "Collection Truck Noise - std: 0.0\n", + "Noise - Street/Sidewalk - std: 0.313650111746\n", + "Noise - Commercial - std: 0.299849475091\n", + "Noise - Park - std: 0.241120049921\n" + ] + } + ], + "prompt_number": 254 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "n, bins, patches = pyplot.hist(distance_dict['Noise'])" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "display_data", + "png": "iVBORw0KGgoAAAANSUhEUgAAAXMAAAD9CAYAAABOd5eOAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAF8xJREFUeJzt3X9s1PXhx/HXSZuIG4We0A+/unUDulLKL8Ux3NRj3RXB\n0FRhnbiQGyjxa7IfmGWuzi12+yZyuC0bgkuW6djFbLJmmto5IIO5D/sBWBECCEgNKxZIexPvajtQ\noeXz/YOv3Trbu0+vvftc330+kktqe/d5vz5n3i/u3v1c3z7HcRwBAIa1a7wOAAAYPMocAAxAmQOA\nAShzADAAZQ4ABqDMAcAASct806ZNmj17tsrKyrRp0yZJUiwWUzAYVHFxsSoqKtTe3p72oACA/iUs\n89dee01PPfWUXnnlFR0+fFgvvviiTp06pXA4rGAwqKamJpWXlyscDmcqLwCgDwnL/PXXX9fChQt1\n7bXXatSoUbrtttv03HPPqaGhQaFQSJIUCoVUX1+fkbAAgL7lJPphWVmZHnnkEcViMV177bXavn27\nFixYoGg0KsuyJEmWZSkajX7osT6fLz2JAcBwqXwwP+Er85KSEn37299WRUWFli5dqnnz5mnUqFG9\n7uPz+fotbsdxsv726KOPep7BhIzkJGe234ZLzlQl/QXo2rVrdeDAAe3Zs0f5+fkqLi6WZVlqa2uT\nJLW2tqqgoCDlAACAwUta5v/85z8lSS0tLXr++ed1zz33qLKyUpFIRJIUiURUVVWV3pQAgIQSrplL\n0sqVK/X2228rNzdXP/vZzzR27FjV1NSourpaTz/9tIqKilRXV5eJrGkRCAS8jpDUcMgokXOokXNo\nDZecqfI5g1mkSXRgn29Q6z8AMBKl2p18AhQADECZA4ABKHMAMABlDgAGoMwBwACUOQAYgDIHAANQ\n5gBgAMocAAxAmQOAAShzADAAZQ4ABqDMAcAAlDkAGIAyBwADJC3zDRs2aNasWZo9e7buuecevf/+\n+4rFYgoGgyouLlZFRYXa29szkRUA0I+EZX769Gn94he/0MGDB3X06FF1d3dr27ZtCofDCgaDampq\nUnl5ucLhcKbyAkMiL8/fsxl5pm95eX6vTx8GSljmeXl5ys3N1cWLF9XV1aWLFy9q8uTJamhoUCgU\nkiSFQiHV19dnJCwwVDo745IcT25XxwaGVsI9QP1+v775zW/qYx/7mEaPHq0lS5YoGAwqGo3KsixJ\nkmVZikajfT6+tra25+tAIGD8HnwAMFC2bcu27UEfJ+EeoKdOndLy5cv117/+VWPHjtUXv/hFrVix\nQl/72tcUj//71YXf71csFut9YPYARRbz+Xy6+krZk9GZG+hXWvYAPXDggG6++WZdf/31ysnJ0V13\n3aV9+/Zp4sSJamtrkyS1traqoKAgtdQAgCGRsMxLSkq0f/9+vfvuu3IcR7t371ZpaamWL1+uSCQi\nSYpEIqqqqspIWABA3xIus0jS448/rkgkomuuuUY33HCDnnrqKXV2dqq6ulotLS0qKipSXV2dxo0b\n1/vALLMgi7HMgmyVancmLfNUUebIZpQ5slVa1swBAMMDZQ4ABqDMAcAAlDkAGIAyBwADUOYAYADK\nHAAMQJkDgAEocwAwAGUOAAagzAHAAJQ5ABiAMgcAA1DmAGAAyhwADECZA4ABEpb5yZMnNX/+/J7b\n2LFj9cQTTygWiykYDKq4uFgVFRVqb2/PVF4AQB9c7zR05coVTZkyRY2Njdq8ebPGjx+vhx56SBs3\nblQ8Hlc4HO59YHYaQhZjpyFkq7TvNLR7925Nnz5dhYWFamhoUCgUkiSFQiHV19cPeGAAwNDJcXvH\nbdu2adWqVZKkaDQqy7IkSZZlKRqN9vmY2tranq8DgYACgUDqSQHAQLZty7btQR/H1TLLpUuXNGXK\nFB0/flwTJkxQfn6+4vF4z8/9fr9isVjvA7PMgizGMguyVVqXWXbs2KEbb7xREyZMkHT11XhbW5sk\nqbW1VQUFBQMeGAAwdFyV+bPPPtuzxCJJlZWVikQikqRIJKKqqqr0pAMAuJJ0meXChQv6+Mc/rubm\nZo0ZM0aSFIvFVF1drZaWFhUVFamurk7jxo3rfWCWWZDFWGZBtkq1O11fmjjgA1PmruTl+dXZGU9+\nxzQYMyZfHR2x5Hc0EGWObEWZD1OUijd43pGt0n6dOQAge1HmAGAAyhwADECZA4ABKHMAMABlDgAG\noMwBwACUOQAYgDIHAANQ5gBgAMocAAxAmQOAAShzADAAZQ4ABqDMAcAAScu8vb1dK1eu1MyZM1Va\nWqqXX35ZsVhMwWBQxcXFqqioUHt7eyayAgD6kbTMv/GNb2jZsmU6ceKEjhw5opKSEoXDYQWDQTU1\nNam8vFzhcDgTWQEA/Ui409A777yj+fPn6x//+Eev75eUlGjPnj2yLEttbW0KBAJ6/fXXex+YnYZc\nYccbb/C8I1ul2p05iX7Y3NysCRMmaM2aNTp8+LBuvPFG/fSnP1U0GpVlWZIky7IUjUb7fHxtbW3P\n14FAQIFAYMABAcBktm3Ltu1BHyfhK/MDBw5o0aJF2rt3r2666SatX79eY8aM0ZYtWxSP/3sTYr/f\nr1is98bAvDJ3h1eI3uB5R7ZKyx6gU6dO1dSpU3XTTTdJklauXKmDBw9q4sSJamtrkyS1traqoKAg\nhcgAvJCX55fP5/Pklpfn9/r0jZWwzCdOnKjCwkI1NTVJknbv3q1Zs2Zp+fLlikQikqRIJKKqqqr0\nJwUwJDo747r6riTzt6tjIx0SLrNI0uHDh3Xffffp0qVLmjZtmrZu3aru7m5VV1erpaVFRUVFqqur\n07hx43ofmGUWV3i7742R/LyP5HMfDlLtzqRlnirK3B0mljdG8vM+ks99OEjLmjkAYHigzAHAAJQ5\nABiAMgcAA1DmAGAAyhwADECZA4ABKHMAMABlDgAGoMwBwACUOQAYgDIHAANQ5gBgAMocAAxAmQOA\nAShzADBATrI7FBUVKS8vT6NGjVJubq4aGxsVi8X0pS99SW+++Wa/Ow0BADIn6Stzn88n27Z16NAh\nNTY2SpLC4bCCwaCamppUXl6ucDic9qAAgP65Wmb57y2MGhoaFAqFJEmhUEj19fVDnwwA4FrSZRaf\nz6cvfOELGjVqlO6//36tW7dO0WhUlmVJkizLUjQa7fOxtbW1PV8HAgEFAoEhCQ0AprBtW7ZtD/o4\nSTd0bm1t1aRJk/TWW28pGAxq8+bNqqysVDwe77mP3+9XLBbrfWA2dHaFzXW9MZKf95F87sNB2jZ0\nnjRpkiRpwoQJuvPOO9XY2CjLstTW1ibpatkXFBQMeGBkgxz5fD5Pbnl5fq9PHjBKwjK/ePGiOjs7\nJUkXLlzQH//4R82ePVuVlZWKRCKSpEgkoqqqqvQnRRp06eortMzfOjv//c4OwOAlXGZpbm7WnXfe\nKUnq6urSl7/8ZT388MOKxWKqrq5WS0tLv5cmsszijtdveUfq222vn3fOHf1JtTuTrpmnijJ3x+uJ\nNVIntdfPO+eO/qRtzRwAkP0ocwAwAGUOAAagzAHAAEk/AQpgqOX8/y8hgaFDmQMZ98H1/V7hHxIT\nUeYAMsjbdyVjxuSroyOW/I7DEGUOIIO8fVfS2WnuuxJ+AQoABqDMAcAAlDkAGIAyBwADUOYAYADK\nHAAMwKWJ8AifggSGEmUOj/ApSGAouVpm6e7u1vz587V8+XJJUiwWUzAYVHFxsSoqKtTe3p7WkACA\nxFyV+aZNm1RaWtrztjgcDisYDKqpqUnl5eUKh8NpDQkASCxpmZ89e1bbt2/Xfffd17OVUUNDg0Kh\nkCQpFAqpvr4+vSkBAAklXTN/8MEH9cMf/lAdHR0934tGo7IsS5JkWZai0Wifj62tre35OhAIKBAI\nDC4tABjGtm3Ztj3o4yTc0PnFF1/Ujh079OSTT8q2bf34xz/W73//e+Xn5ysej/fcz+/3Kxbr/ZfI\n2NDZHa831x2ZY3s9PufunezvpVS7M+Er871796qhoUHbt2/Xe++9p46ODq1evVqWZamtrU0TJ05U\na2urCgoKUg4OABi8hGvmjz32mM6cOaPm5mZt27ZNn//85/XMM8+osrJSkUhEkhSJRFRVVZWRsACA\nvg3oE6AfXM1SU1OjXbt2qbi4WC+99JJqamrSEg4A4E7CNfNBHZg1c1dYM/cK5z7yxr46frb3Uqrd\nyd9mAQADjPiP8+fl+dXZGU9+RwDIYiN+mcXbZQ5p5L7l5Xn3zsg+92zvJZZZAGAEo8wBwACUOQAY\ngDIHAANQ5gBgAMocAAxAmQOAAShzADAAZQ4ABqDMAcAAlDkAGIAyBwADJCzz9957TwsXLtS8efNU\nWlqqhx9+WJIUi8UUDAZVXFysiooKtbe3ZyQsAKBvSf9q4sWLF3Xdddepq6tLn/vc5/SjH/1IDQ0N\nGj9+vB566CFt3LhR8Xhc4XC494H5q4luE3g4/kgd2+vxOXfvZH8vpe2vJl533XWSpEuXLqm7u1v5\n+flqaGhQKBSSJIVCIdXX1w94YADA0Em6OcWVK1d0ww036NSpU3rggQc0a9YsRaNRWZYlSbIsS9Fo\ntM/H1tbW9nwdCAQUCASGJDQAmMK2bdm2PejjuN6c4p133tGSJUu0YcMG3XXXXYrH/707j9/vVywW\n631gllncJvBw/JE6ttfjc+7eyf5eSvvmFGPHjtUdd9yhV199VZZlqa2tTZLU2tqqgoKCAQ8MABg6\nCcv8/PnzPVeqvPvuu9q1a5fmz5+vyspKRSIRSVIkElFVVVX6kwIA+pVwmeXo0aMKhUK6cuWKrly5\notWrV+tb3/qWYrGYqqur1dLSoqKiItXV1WncuHG9D8wyi9sEHo4/Usf2enzO3TvZ30updicbOlPm\nI3Bsr8fn3L2T/b3Ehs4AMIJR5gBggKTXmWfCd7/7v3r11de8jgEAw1ZWrJlPnvwptbb+j6TJ6YiS\nxN3yeg1vZK5fer92yrmPtLGvjm/qmnlWvDK/apmkT3kw7t0ejAkAQ4s1cwAwAGUOAAagzAHAAJQ5\nABiAMgcAA1DmAGAAyhwADECZA4ABKHMAMABlDgAGoMwBwAAJy/zMmTNavHixZs2apbKyMj3xxBOS\npFgspmAwqOLiYlVUVPRsLQcA8EbCMs/NzdVPfvITHTt2TPv379eTTz6pEydOKBwOKxgMqqmpSeXl\n5QqHw5nKCwDoQ8IynzhxoubNmydJ+uhHP6qZM2fq3LlzamhoUCgUkiSFQiHV19enPykAoF+u/wTu\n6dOndejQIS1cuFDRaFSWZUmSLMtSNBrt8zG1tbU9XwcCAQUCgUGFBQDT2LYt27YHfRxXm1P861//\n0m233abvfe97qqqqUn5+vuLxeM/P/X6/YrFY7wMPeHOKBnnz98y9/2P5I3OjAJ5374zsczd1c4qk\nV7NcvnxZK1as0OrVq1VVVSXp6qvxtrY2SVJra6sKCgoGPDAAYOgkLHPHcXTvvfeqtLRU69ev7/l+\nZWWlIpGIJCkSifSUPADAGwmXWf72t7/p1ltv1Zw5c+Tz+SRJGzZs0Kc//WlVV1erpaVFRUVFqqur\n07hx43ofmGWWYTD+SB3b6/E5d++Yu8ySRRs6U+aMPVLG59y9Y26Z8wlQADAAZQ4ABqDMAcAAlDkA\nGIAyBwADUOYAYADKHAAMQJkDgAEocwAwAGUOAAagzAHAAJQ5ABiAMgcAA1DmAGAAyhwADECZA4AB\nEpb52rVrZVmWZs+e3fO9WCymYDCo4uJiVVRUqL29Pe0hAQCJJSzzNWvWaOfOnb2+Fw6HFQwG1dTU\npPLycoXD4bQGBAAkl7DMb7nlFuXn5/f6XkNDg0KhkCQpFAqpvr4+fekAAK7kDPQB0WhUlmVJkizL\nUjQa7fe+tbW1PV8HAgEFAoEBBwQAk9m2Ldu2B32cpBs6nz59WsuXL9fRo0clSfn5+YrH4z0/9/v9\nisViHz4wGzoPg/FH6thej8+5e4cNnXtYlqW2tjZJUmtrqwoKCgY8KABgaA24zCsrKxWJRCRJkUhE\nVVVVQx4KADAwCct81apVuvnmm3Xy5EkVFhZq69atqqmp0a5du1RcXKyXXnpJNTU1mcoKAOhH0jXz\nlA/MmvkwGH+kju31+Jy7d1gzBwBksQFfmggAw1eOfD6fJyOPGZOvjo4PX/k3VChzACNIl7xa5uns\nTO8/IiyzAIABKHMAMABlDgAGoMwBwACUOQAYgDIHAANQ5gBgAMocAAxAmQOAAShzADAAZQ4ABqDM\nAcAAlPmwYHsdwCXb6wAu2V4HcMn2OoBLttcBXLK9DpBWKZf5zp07VVJSohkzZmjjxo1DmQkfYnsd\nwCXb6wAu2V4HcMn2OoBLttcBXLK9DpBWKZV5d3e3vvrVr2rnzp06fvy4nn32WZ04cWKoswEAXEqp\nzBsbGzV9+nQVFRUpNzdXd999t1544YWhzgYAcCmlzSnOnTunwsLCnv+eOnWqXn755Q/db2A7epSk\nEmWIeLPzyMDG/76HYw/EQHIOh+fd67H5/z70vBs/nbscpVTmbgJl+6apAGCSlJZZpkyZojNnzvT8\n95kzZzR16tQhCwUAGJiUynzBggV64403dPr0aV26dEm//e1vVVlZOdTZAAAupbTMkpOToy1btmjJ\nkiXq7u7Wvffeq5kzZw51NgCASylfZ7506VKdPHlSW7ZsUSQSSXi9+de//nXNmDFDc+fO1aFDh1IO\nOxjJrov/9a9/rblz52rOnDn67Gc/qyNHjniQ0v31+6+88opycnL0/PPPZzDdVW4y2rat+fPnq6ys\nTIFAILMB/1+ynOfPn9ftt9+uefPmqaysTL/61a8ynnHt2rWyLEuzZ8/u9z7ZMH+S5cyW+ePm+ZS8\nnT+Su5wDnkPOIHR1dTnTpk1zmpubnUuXLjlz5851jh8/3us+f/jDH5ylS5c6juM4+/fvdxYuXDiY\nIdOWc+/evU57e7vjOI6zY8eOrM35wf0WL17s3HHHHc7vfve7rMsYj8ed0tJS58yZM47jOM5bb72V\n0Yxucz766KNOTU1NT0a/3+9cvnw5ozn/8pe/OAcPHnTKysr6/Hk2zB/HSZ4zG+aP4yTP6Tjezp8P\nJMuZyhwa1Mf53Vxv3tDQoFAoJElauHCh2tvbFY1GBzNsWnIuWrRIY8eO7cl59uzZjGZ0m1OSNm/e\nrJUrV2rChAlZmfE3v/mNVqxY0fNL8fHjx2dlzkmTJqmjo0OS1NHRoeuvv145OSmtPKbslltuUX5+\nfr8/z4b5IyXPmQ3zR0qeU/J2/nwgWc5U5tCgyryv683PnTuX9D6Z/h/tJud/evrpp7Vs2bJMROvF\n7fP5wgsv6IEHHpCU3utWU834xhtvKBaLafHixVqwYIGeeeaZjGaU3OVct26djh07psmTJ2vu3Lna\ntGlTpmMmlQ3zZ6C8mj9ueD1/3EplDg3qZYjbJ8L5r2vOM/0EDmS8P//5z/rlL3+pv//972lM1Dc3\nOdevX69wOCyfzyfHcTJ+Pb+bjJcvX9bBgwf1pz/9SRcvXtSiRYv0mc98RjNmzMhAwqvc5Hzsscc0\nb9482batU6dOKRgM6vDhwxozZkwGErrn9fwZCC/njxtezx+3UplDgypzN9eb//d9zp49qylTpgxm\n2AFze138kSNHtG7dOu3cuTPpW7V0cJPz1Vdf1d133y3p6i/wduzYodzc3IxdGuomY2FhocaPH6/R\no0dr9OjRuvXWW3X48OGMlrmbnHv37tUjjzwiSZo2bZo+8YlP6OTJk1qwYEHGciaTDfPHLa/njxte\nzx+3UppDg1nEv3z5svPJT37SaW5udt5///2kvwDdt2+fJ78YcZPzzTffdKZNm+bs27cv4/k+4Cbn\nf/rKV77iPPfccxlM6C7jiRMnnPLycqerq8u5cOGCU1ZW5hw7dizrcj744INObW2t4ziO09bW5kyZ\nMsV5++23M5rTcRynubnZ1S9AvZo/H0iUMxvmzwcS5fxPXsyf/5QoZypzaFCvzPu73vznP/+5JOn+\n++/XsmXLtH37dk2fPl0f+chHtHXr1sEMmbacP/jBDxSPx3vW0nJzc9XY2Jh1Ob3mJmNJSYluv/12\nzZkzR9dcc43WrVun0tLSrMv5ne98R2vWrNHcuXN15coVPf744/L7/RnNuWrVKu3Zs0fnz59XYWGh\nvv/97+vy5cs9GbNh/rjJmQ3zx03ObJEsZypzyOc4WbpoBABwjZ2GAMAAlDkAGIAyBwADUOYAYADK\nHAAMQJkDgAH+Dw8z2CEMwA8SAAAAAElFTkSuQmCC\n", + "text": [ + "" + ] + } + ], + "prompt_number": 255 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "n, bins, patches = pyplot.hist(distance_dict['Noise - House of Worship'])" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "display_data", + "png": "iVBORw0KGgoAAAANSUhEUgAAAXoAAAD9CAYAAACyYrxEAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAEfRJREFUeJzt3X9sVfX9x/HX1ds/mCEiYAi992aV3istLdySlCHbZJc5\ndgnZ7n4wkvLHQliDDVmj21cTjf/Y+gex8y+zJl/LMjFswkqMSTWplwTn3aKE1kyGmXTkirbeNhkD\npam2iS3Xz/cPvlwppZe290fb930+kiY93s855+PH06eHc2/V45xzAgCYdcd8TwAAUFiEHgCMI/QA\nYByhBwDjCD0AGEfoAcC4rKH/1a9+pVWrVmn9+vXTjnnkkUcUCoUUDod15syZvE8QAJCbrKHft2+f\n4vH4tK93d3frww8/VDKZ1KFDh3TgwIG8TxAAkJusoX/wwQd1zz33TPv6a6+9pr1790qSNm/erOHh\nYV28eDG/MwQA5MSby85DQ0MKBAKZbb/fr8HBQa1atWrSOI/Hk8tpAKBk5eM/XpDzm7E3T2K6qDvn\nFs1Xf3+/vvGNcklDBfj6n5u2/1fR6O55/3uej6+nn3563uewUL5Yi/yuxf9Xp0hfhetbvuR0R+/z\n+ZRKpTLbg4OD8vl8OU9qIfB4vJLKC3DkpTcdd3kBzgEAX8vpjj4Wi+nIkSOSpNOnT2vZsmVTHtsA\nAOZX1jv6PXv26G9/+5suX76sQCCg1tZWTUxMSJKampq0c+dOdXd3KxgM6q677tLhw4eLMunFLTLf\nE1gwIpHIfE9hwWAtvsZa5J/H5fNB0HQn8Xjy+ryp0AYGBlRTs1WjowNFONtxRaOvKB4/XoRzAaXh\n2nuFxWpO4fqWr3bym7EAYByhBwDjCD0AGEfoAcA4Qg8AxhF6ADCO0AOAcYQeAIwj9ABgHKEHAOMI\nPQAYR+gBwDhCDwDGEXoAMI7QA4BxhB4AjCP0AGAcoQcA4wg9ABhH6AHAOEIPAMYRegAwjtADgHGE\nHgCMI/QAYByhBwDjCD0AGEfoAcA4Qg8AxhF6ADCO0AOAcYQeAIwj9ABgHKEHAOMIPQAYd9vQx+Nx\nVVVVKRQKqa2tbcrrly9f1o4dO1RXV6fa2lq99NJLhZgnAGCOsoY+nU6rublZ8Xhc586d07Fjx9TX\n1zdpTHt7uzZu3Kh//vOfSiQSeuyxx3T16tWCThoAMHNZQ9/b26tgMKiKigqVlZWpoaFBXV1dk8as\nXr1aIyMjkqSRkRGtWLFCXq+3cDMGAMxK1iIPDQ0pEAhktv1+v3p6eiaN2b9/v77//e+rvLxcn3/+\nuY4fP37LY7W0tGS+j0QiikQic581ABiUSCSUSCTyftysofd4PLc9wMGDB1VXV6dEIqELFy5o+/bt\nOnv2rJYuXTpp3I2hBwBMdfNNcGtra16Om/XRjc/nUyqVymynUin5/f5JY06dOqXdu3dLkiorK3Xf\nfffp/PnzeZkcACB3WUNfX1+vZDKp/v5+jY+Pq7OzU7FYbNKYqqoqnTx5UpJ08eJFnT9/XmvWrCnc\njAEAs5L10Y3X61V7e7ui0ajS6bQaGxtVXV2tjo4OSVJTU5Oeeuop7du3T+FwWF999ZV+97vfafny\n5UWZPADg9jzOOVfwk3g8KsJp8mZgYEA1NVs1OjpQhLMdVzT6iuLxW7+JDWD2rr2/WKzmFK5v+Won\nvxkLAMYRegAwjtADgHGEHgCMI/QAYByhBwDjCD0AGEfoAcA4Qg8AxhF6ADCO0AOAcYQeAIwj9ABg\nHKEHAOMIPQAYR+gBwDhCDwDGEXoAMI7QA4BxhB4AjCP0AGAcoQcA4wg9ABhH6AHAOEIPAMYRegAw\njtADgHGEHgCMI/QAYByhBwDjCD0AGEfoAcA4Qg8AxhF6ADCO0AOAcYQeAIy7bejj8biqqqoUCoXU\n1tZ2yzGJREIbN25UbW2tIpFIvucIAMiBN9uL6XRazc3NOnnypHw+nzZt2qRYLKbq6urMmOHhYf36\n17/WiRMn5Pf7dfny5YJPGgAwc1nv6Ht7exUMBlVRUaGysjI1NDSoq6tr0pijR49q165d8vv9kqSV\nK1cWbrYAgFnLekc/NDSkQCCQ2fb7/erp6Zk0JplMamJiQtu2bdPnn3+uRx99VL/85S+nHKulpSXz\nfSQS4REPANwkkUgokUjk/bhZQ+/xeG57gImJCb333nt68803NTY2pi1btuiBBx5QKBSaNO7G0AMA\nprr5Jri1tTUvx80aep/Pp1QqldlOpVKZRzTXBQIBrVy5UkuWLNGSJUu0detWnT17dkroAQDzI+sz\n+vr6eiWTSfX392t8fFydnZ2KxWKTxvzkJz/R22+/rXQ6rbGxMfX09GjdunUFnTQAYOay3tF7vV61\nt7crGo0qnU6rsbFR1dXV6ujokCQ1NTWpqqpKO3bs0IYNG3THHXdo//79hB4AFhCPc84V/CQej4pw\nmrwZGBhQTc1WjY4OFOFsxxWNvqJ4/HgRzgWUhmvvLxarOYXrW77ayW/GAoBxhB4AjCP0AGAcoQcA\n4wg9ABhH6AHAOEIPAMYRegAwjtADgHGEHgCMI/QAYByhBwDjCD0AGEfoAcA4Qg8AxhF6ADCO0AOA\ncYQeAIwj9ABgHKEHAOMIPQAYR+gBwDhCDwDGEXoAMI7QA4BxhB4AjCP0AGAcoQcA4wg9ABhH6AHA\nOEIPAMYRegAwjtADgHGEHgCMI/QAYByhBwDjbhv6eDyuqqoqhUIhtbW1TTvu3Xffldfr1auvvprX\nCQIAcpM19Ol0Ws3NzYrH4zp37pyOHTumvr6+W4574okntGPHDjnnCjZZAMDsZQ19b2+vgsGgKioq\nVFZWpoaGBnV1dU0Z9/vf/16/+MUvdO+99xZsogCAufFme3FoaEiBQCCz7ff71dPTM2VMV1eX/vrX\nv+rdd9+Vx+O55bFaWloy30ciEUUikbnPGgAMSiQSSiQSeT9u1tBPF+0b/eY3v9Gzzz4rj8cj59y0\nj25uDD0AYKqbb4JbW1vzctysoff5fEqlUpntVColv98/acw//vEPNTQ0SJIuX76sN954Q2VlZYrF\nYnmZIAAgN1lDX19fr2Qyqf7+fpWXl6uzs1PHjh2bNOajjz7KfL9v3z79+Mc/JvIAsIBkDb3X61V7\ne7ui0ajS6bQaGxtVXV2tjo4OSVJTU1NRJgkAmDuPK8LnIa8/v18sBgYGVFOzVaOjA0U423FFo68o\nHj9ehHMBpeHa+4vFak7h+pavdvKbsQBgHKEHAOMIPQAYR+gBwDhCDwDGEXoAMI7QA4BxhB4AjCP0\nAGAcoQcA4wg9ABhH6AHAOEIPAMYRegAwjtADgHGEHgCMI/QAYByhBwDjCD0AGEfoAcA4Qg8AxhF6\nADCO0AOAcYQeAIwj9ABgHKEHAOMIPQAYR+gBwDhCDwDGEXoAMI7QA4BxhB4AjCP0AGAcoQcA4wg9\nABh329DH43FVVVUpFAqpra1tyusvv/yywuGwNmzYoO985zt6//33CzJRAMDceLO9mE6n1dzcrJMn\nT8rn82nTpk2KxWKqrq7OjFmzZo3+/ve/6+6771Y8HtfDDz+s06dPF3ziAICZyXpH39vbq2AwqIqK\nCpWVlamhoUFdXV2TxmzZskV33323JGnz5s0aHBws3GwBALOW9Y5+aGhIgUAgs+33+9XT0zPt+D/+\n8Y/auXPnLV9raWnJfB+JRBSJRGY3UwAwLpFIKJFI5P24WUPv8XhmfKC33npLL774ot55551bvn5j\n6AEAU918E9za2pqX42YNvc/nUyqVymynUin5/f4p495//33t379f8Xhc99xzT14mBgDIj6zP6Ovr\n65VMJtXf36/x8XF1dnYqFotNGvPJJ5/o5z//uf785z8rGAwWdLIAgNnLekfv9XrV3t6uaDSqdDqt\nxsZGVVdXq6OjQ5LU1NSkZ555RleuXNGBAwckSWVlZert7S38zAEAM+JxzrmCn8TjURFOkzcDAwOq\nqdmq0dGBIpztuKLRVxSPHy/CuYDScO39xWI1p3B9y1c7+c1YADCO0AOAcYQeAIwj9ABgHKEHAOMI\nPQAYR+gBwDhCDwDGEXoAMI7QA4BxhB4AjCP0AGAcoQcA4wg9ABhH6AHAOEIPAMYRegAwjtADgHGE\nHgCMI/QAYByhBwDjCD0AGEfoAcA4Qg8AxhF6ADCO0AOAcYQeAIwj9ABgHKEHAOMIPQAYR+gBwDhC\nDwDGEXoAMI7QA4BxhB4AjCP0RZeY7wksGIlEYr6nsGCwFl9jLfLvtqGPx+OqqqpSKBRSW1vbLcc8\n8sgjCoVCCofDOnPmTN4naUtiviewYPAD/TXW4musRf5lDX06nVZzc7Pi8bjOnTunY8eOqa+vb9KY\n7u5uffjhh0omkzp06JAOHDhQ0AkDAGYna+h7e3sVDAZVUVGhsrIyNTQ0qKura9KY1157TXv37pUk\nbd68WcPDw7p48WLhZgwAmBVvtheHhoYUCAQy236/Xz09PbcdMzg4qFWrVk0a5/F48jHfIivUnFsn\nbZ04sVjXJ3etra23H1QiWIuv5WctivcztdB/frOGfqaTd85l3e/m1wEAxZP10Y3P51Mqlcpsp1Ip\n+f3+rGMGBwfl8/nyPE0AwFxlDX19fb2SyaT6+/s1Pj6uzs5OxWKxSWNisZiOHDkiSTp9+rSWLVs2\n5bENAGD+ZH104/V61d7ermg0qnQ6rcbGRlVXV6ujo0OS1NTUpJ07d6q7u1vBYFB33XWXDh8+XJSJ\nAwBmyOXojTfecGvXrnXBYNA9++yztxzz1ltvubq6OldTU+O+973vZf76N7/5Tbd+/XpXV1fnNm3a\nlOtU5t3t1uK5555zdXV1rq6uztXW1ro777zTXblyZUb7Lja5rEWpXReXLl1y0WjUhcNhV1NT4w4f\nPjzjfRebXNai1K6Lzz77zP30pz91GzZscN/61rfcv/71rxnve7OcQn/16lVXWVnpPv74Yzc+Pu7C\n4bA7d+7cpDFXrlxx69atc6lUyjl37R/kdRUVFe7TTz/NZQoLxkzW4kavv/66e+ihh+a070KXy1o4\nV3rXxdNPP+2efPJJ59y1n4/ly5e7iYmJkrwuplsL50rvunj88cfdM88845xz7t///ndOvcjpP4Ew\nk8/ZHz16VLt27cq8ibty5cqb/0SRyxQWjJmsxY2OHj2qPXv2zGnfhS6XtbiulK6L1atXa2RkRJI0\nMjKiFStWyOv1luR1Md1aXFdK10VfX5+2bdsmSVq7dq36+/v13//+d07XRU6hv9Vn6IeGhiaNSSaT\n+uyzz7Rt2zbV19frT3/6U+Y1j8ejH/zgB6qvr9cf/vCHXKYy72ayFteNjY3pxIkT2rVr16z3XQxy\nWQup9K6L/fv364MPPlB5ebnC4bCef/75Ge+7mOSyFlLpXRfhcFivvvqqpGv/YhgYGNDg4OCcrous\nb8bezkw+Zz8xMaH33ntPb775psbGxrRlyxY98MADCoVCevvtt1VeXq5Lly5p+/btqqqq0oMPPpjL\nlObNbH5h4vXXX9d3v/tdLVu2bNb7Lga5rIUkvfPOO1q9enXJXBcHDx5UXV2dEomELly4oO3bt+vs\n2bNFmF1x5bIWS5cuLbnr4sknn9Sjjz6qjRs3av369dq4caPuvPPOOfUipzv6mXzOPhAI6Ic//KGW\nLFmiFStWaOvWrZmLuLy8XJJ077336mc/+5l6e3tzmc68mslaXPeXv/xl0qOK2ey7GOSyFtK1P75L\npXNdnDp1Srt375YkVVZW6r777tP58+fl9/tL7rqYbi2k0rsuli5dqhdffFFnzpzRkSNHdOnSJVVW\nVs6tF7m8oTAxMeHWrFnjPv74Y/fll1/e8k2Bvr4+99BDD7mrV6+60dFRV1tb6z744AM3OjrqRkZG\nnHPOffHFF+7b3/62O3HiRC7TmVczWQvnnBseHnbLly93Y2Njs953schlLUrxuvjtb3/rWlpanHPO\n/ec//3E+n899+umnJXldTLcWpXhdDA8Puy+//NI559yhQ4fc3r17Z7zvzXL+eGV3d7e7//77XWVl\npTt48KBzzrkXXnjBvfDCC5kxzz33nFu3bp2rra11zz//vHPOuQsXLrhwOJz5GNX1fRezmazFSy+9\n5Pbs2TOjfRezua7FRx99VHLXxaVLl9yPfvQjt2HDBldbW+tefvnlrPsuZnNdi1LsxalTp9z999/v\n1q5d63bt2uWGh4ez7puNxzkjb2MDAG6J/8MUABhH6AHAOEIPAMYRegAwjtADgHGEHgCM+z81pcG7\nTUSyMAAAAABJRU5ErkJggg==\n", + "text": [ + "" + ] + } + ], + "prompt_number": 256 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "n, bins, patches = pyplot.hist(distance_dict['Noise - Helicopter'])" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "display_data", + "png": "iVBORw0KGgoAAAANSUhEUgAAAXcAAAD9CAYAAABHnDf0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAFihJREFUeJzt3X9M1Pfhx/HXRyFpDynKnHQ7SHQemZzKcdaFddF5zhgn\nrsSk/SaarGXWGULSov1v3ZYUFmPsZtLYNTGadCTMbDZxf0i2w6TbPJtKkVSZW9pmotH1jnZkiMxf\n7Tjh/f3D9uIJ3J3ccXe8eT4SEo7Pm3u/+Nzn8+Lj++7EMcYYAQCsMifXAQAAmUe5A4CFKHcAsBDl\nDgAWotwBwEKUOwBYKKVyHx0dld/v11NPPTXh9ubmZlVWVsrn86m3tzejAQEADy+lcj948KC8Xq8c\nxxm3LRgM6tKlS+rr69ORI0fU1NSU8ZAAgIeTtNwjkYiCwaB+/OMfa6L3O3V0dKihoUGSVFtbq+Hh\nYQ0MDGQ+KQAgZQXJBrz00kv61a9+pRs3bky4vb+/XxUVFbHb5eXlikQiKisri31toit+AEByU/1P\nBBJeuf/xj3/UokWL5Pf7E07w4LaJytwYM2M/XnnllZxnmIn5v3jk0/x4ZQrfkz/HG8cO+dP5SEfC\ncu/q6lJHR4eWLFmi7du3669//auee+65uDFut1vhcDh2OxKJyO12pxUKAJCehOW+b98+hcNhXbly\nRceOHdP3vvc9tbe3x42pr6+Pfa27u1vz58+PW5IBAGRf0jX3+3253HL48GFJUmNjo+rq6hQMBuXx\neFRUVKS2trbMp8yxQCCQ6whpmdn5A7kOkJaZve/JP5M5Jt2FnVQmcZy0148w89y7GMjF487xBjuk\n0528QxUALES5A4CFKHcAsBDlDgAWotwBwEKUOwBYiHIHAAtR7gBgIcodACxEuQOAhSh3ALAQ5Q4A\nFqLcAcBClDsAWIhyBwALUe4AYCHKHQAsRLkDgIUodwCwUMJy//zzz1VbW6uamhp5vV69/PLL48aE\nQiGVlJTI7/fL7/dr79690xYWAJCagkQbH3nkEZ06dUoul0t3797VmjVr9O6772rNmjVx49atW6eO\njo5pDQoASF3SZRmXyyVJGhkZ0ejoqEpLS8eN4S/NA0B+SXjlLkljY2NatWqVLl++rKamJnm93rjt\njuOoq6tLPp9PbrdbBw4cGDdGklpaWmKfBwIBBQKBtMMDgE1CoZBCoVBG7ssxKV52//e//9WmTZu0\nf//+uGK+efOm5s6dK5fLpc7OTu3evVsXL16Mn8RxuLqfhRzHkZSLx53jDXZIpztTfrVMSUmJtmzZ\novfffz/u68XFxbGlm82bNysajWpoaGhKYQAAmZGw3AcHBzU8PCxJ+uyzz/T222/L7/fHjRkYGIj9\nZunp6ZExZsJ1eQBA9iRcc//000/V0NCgsbExjY2N6dlnn9WGDRt0+PBhSVJjY6OOHz+uQ4cOqaCg\nQC6XS8eOHctKcADA5FJec09rEtbcZyXW3IH0ZGXNHQAwc1DuAGAhyh0ALES5A4CFKHcAsBDlDgAW\notwBwEKUOwBYiHIHAAtR7gBgIcodACxEuQOAhSh3ALAQ5Q4AFqLcAcBClDsAWIhyBwALUe4AYCHK\nHQAslLDcP//8c9XW1qqmpkZer1cvv/zyhOOam5tVWVkpn8+n3t7eaQkKAEhdQaKNjzzyiE6dOiWX\ny6W7d+9qzZo1evfdd7VmzZrYmGAwqEuXLqmvr09nz55VU1OTuru7pz04AGByCctdklwulyRpZGRE\no6OjKi0tjdve0dGhhoYGSVJtba2Gh4c1MDCgsrKyuHEtLS2xzwOBgAKBQJrRAcw2jz1Wqps3r2d9\n3uLiBbpxY2ja5wmFQgqFQhm5r6TlPjY2plWrVuny5ctqamqS1+uN297f36+KiorY7fLyckUikYTl\nDgBTca/YTQ7mdbIyz4MXvq2trVO+r6RPqM6ZM0d/+9vfFIlE9M4770z4W8WY+J3tONnZEQCAiaX8\napmSkhJt2bJF77//ftzX3W63wuFw7HYkEpHb7c5cQgDAQ0tY7oODgxoeHpYkffbZZ3r77bfl9/vj\nxtTX16u9vV2S1N3drfnz549bkgEAZFfCNfdPP/1UDQ0NGhsb09jYmJ599llt2LBBhw8fliQ1Njaq\nrq5OwWBQHo9HRUVFamtry0pwAMDkHPPggvl0TOI449blYb97z73k4nHneLPVbDum0ulO3qEKABai\n3AHAQpQ7AFiIcgcAC1HuAGAhyh0ALES5A4CFKHcAsBDlDgAWotwBwEKUOwBYiHIHAAtR7gBgIcod\nACxEuQOAhSh3ALAQ5Q4AFqLcAcBCCcs9HA5r/fr1Wr58uVasWKHXX3993JhQKKSSkhL5/X75/X7t\n3bt32sICAFKT8A9kFxYW6rXXXlNNTY1u3bqlJ554Qhs3blRVVVXcuHXr1qmjo2NagwIAUpfwyv3x\nxx9XTU2NJGnevHmqqqrSJ598Mm4cf4wYAPJLwiv3+129elW9vb2qra2N+7rjOOrq6pLP55Pb7daB\nAwfk9XrHfX9LS0vs80AgoEAgMOXQAGCjUCikUCiUkftyTAqX3bdu3VIgENDPf/5zbd26NW7bzZs3\nNXfuXLlcLnV2dmr37t26ePFi/CSOw9X9LOQ4jqRcPO4cb7aabcdUOt2ZtNyj0ah+8IMfaPPmzdqz\nZ0/SO1yyZInOnTun0tLSjATEzDXbTkRMv9l2TKXTnQnX3I0x2rlzp7xe76TFPjAwEJu8p6dHxpi4\nYgcAZF/CNfczZ87o6NGjqq6ult/vlyTt27dPH3/8sSSpsbFRx48f16FDh1RQUCCXy6Vjx45Nf2oA\nQEIprbmnPQnLMrPSbPsnNKbfbDumpm1ZBgAwM1HuAGAhyh0ALES5A4CFKHcAsBDlDgAWotwBwEKU\nOwBYiHIHAAtR7gBgIcodACxEuQOAhSh3ALAQ5Q4AFqLcAcBClDsAWIhyBwALUe4AYCHKHQAslLDc\nw+Gw1q9fr+XLl2vFihV6/fXXJxzX3NysyspK+Xw+9fb2TktQAEDqChJtLCws1GuvvaaamhrdunVL\nTzzxhDZu3KiqqqrYmGAwqEuXLqmvr09nz55VU1OTuru7pz04AGByCa/cH3/8cdXU1EiS5s2bp6qq\nKn3yySdxYzo6OtTQ0CBJqq2t1fDwsAYGBqYpLgAgFQmv3O939epV9fb2qra2Nu7r/f39qqioiN0u\nLy9XJBJRWVlZ3LiWlpbY54FAQIFAYGqJM+TcuXPjflFlw6JFi8btQwCQpFAopFAolJH7Sqncb926\npWeeeUYHDx7UvHnzxm03xsTddhxn3Jj7yz0fbNnyf7pzZ4nmzHFlbc6xsRFJ53TjxmDW5gQwczx4\n4dva2jrl+0pa7tFoVE8//bR++MMfauvWreO2u91uhcPh2O1IJCK32z3lQNly9+6Ybt58U9LiLM46\nJJfLk8X5AMxWCdfcjTHauXOnvF6v9uzZM+GY+vp6tbe3S5K6u7s1f/78cUsyAIDsSnjlfubMGR09\nelTV1dXy+/2SpH379unjjz+WJDU2Nqqurk7BYFAej0dFRUVqa2ub/tQAgIQc8+CC+XRM4jjj1uVz\nbeHCxbp2LaRcLMvcvj2UxTlz595zL7l43PPveENmzLZjKp3u5B2qAGAhyh0ALES5A4CFKHcAsBDl\nDgAWotwBwEKUOwBYiHIHAAtR7gBgIcodACxEuQOAhSh3ALAQ5Q4AFqLcAcBClDsAWIhyBwALUe4A\nYCHKHQAsRLkDgIWSlvvzzz+vsrIyrVy5csLtoVBIJSUl8vv98vv92rt3b8ZDAgAeTkGyATt27NCL\nL76o5557btIx69atU0dHR0aDAQCmLumV+9q1a7VgwYKEY/hL8wCQX5JeuSfjOI66urrk8/nkdrt1\n4MABeb3eceNaWlpinwcCAQUCgXSnBgCrhEIhhUKhjNyXY1K47L569aqeeuop/eMf/xi37ebNm5o7\nd65cLpc6Ozu1e/duXbx4MX4Sx8m7q/uFCxfr2rWQpMVZnHVILpdHt28PZXHO3HEcR1IuHvf8O96Q\nGbPtmEqnO9N+tUxxcbFcLpckafPmzYpGoxoamh3lBQD5Ku1yHxgYiP1m6enpkTFGpaWlaQcDAExd\n0jX37du36/Tp0xocHFRFRYVaW1sVjUYlSY2NjTp+/LgOHTqkgoICuVwuHTt2bNpDAwASS2nNPe1J\nWHP/AmvuWZo57443ZMZsO6ZyuuYOAMg/lDsAWIhyBwALUe4AYCHKHQAsRLkDgIUodwCwEOUOABai\n3AHAQpQ7AFiIcgcAC1HuAGAhyh0ALES5A4CFKHcAsBDlDgAWotwBwEKUOwBYiHIHAAslLPfnn39e\nZWVlWrly5aRjmpubVVlZKZ/Pp97e3owHBAA8vITlvmPHDp08eXLS7cFgUJcuXVJfX5+OHDmipqam\njAcEADy8hOW+du1aLViwYNLtHR0damhokCTV1tZqeHhYAwMDmU0IAHhoBel8c39/vyoqKmK3y8vL\nFYlEVFZWNm5sS0tL7PNAIKBAIJDO1AAkPfZYqW7evJ71eYuLF+jGjaGsz5s7BXIcJ9chHkpa5S5J\nxpi425PtgPvLHUBm3Ct2k3Rc5uedWUWXvrvKxX6Wpr6f03q1jNvtVjgcjt2ORCJyu93p3CUAIAPS\nKvf6+nq1t7dLkrq7uzV//vwJl2QAANmVcFlm+/btOn36tAYHB1VRUaHW1lZFo1FJUmNjo+rq6hQM\nBuXxeFRUVKS2trashAYAJOaYBxfNp2MSxxm3Np9rCxcu1rVrIUmLszjrkFwuj27fnh1PRN17/iU3\n65T5drxNl9m2j3P58860/cw7VAHAQpQ7AFiIcgcAC1HuAGAhyh0ALES5A4CFKHcAsBDlDgAWotwB\nwEKUOwBYiHIHAAtR7gBgIcodACxEuQOAhSh3ALAQ5Q4AFqLcAcBClDsAWIhyBwALJS33kydPatmy\nZaqsrNSrr746bnsoFFJJSYn8fr/8fr/27t07LUEBAKkrSLRxdHRUL7zwgv785z/L7XbrW9/6lurr\n61VVVRU3bt26dero6JjWoACA1CW8cu/p6ZHH49HixYtVWFiobdu26cSJE+PGzZa/NA8AM0XCK/f+\n/n5VVFTEbpeXl+vs2bNxYxzHUVdXl3w+n9xutw4cOCCv1zvuvlpaWmKfBwIBBQKB9JIDgHVCX3yk\nL2G5O46T9A5WrVqlcDgsl8ulzs5Obd26VRcvXhw37v5yBwBMJPDFx5dap3xPCZdl3G63wuFw7HY4\nHFZ5eXncmOLiYrlcLknS5s2bFY1GNTQ0NOVAAID0JSz31atXq6+vT1evXtXIyIjeeust1dfXx40Z\nGBiIrbn39PTIGKPS0tLpSwwASCrhskxBQYHeeOMNbdq0SaOjo9q5c6eqqqp0+PBhSVJjY6OOHz+u\nQ4cOqaCgQC6XS8eOHctKcADA5ByThZe6OI6Td6+oWbhwsa5dC0lanMVZh+RyeXT79uxYtrr3nE0u\nHvf8O96my2zbx7n8eWfafuYdqgBgIcodACxEuQOAhSh3ALAQ5Q4AFqLcAcBClDsAWIhyBwALUe4A\nYCHKHQAsRLkDgIUodwCwEOUOABai3AHAQpQ7AFiIcgcAC1HuAGAhyh0ALES5pySU6wBpCYVCuY6Q\nhlCuA6RlZu97aabv/5mff+qSlvvJkye1bNkyVVZW6tVXX51wTHNzsyorK+Xz+dTb25vxkLkXynWA\ntMzsggnlOkBaZva+l2b6/p/5+acuYbmPjo7qhRde0MmTJ/Xhhx/q97//vT766KO4McFgUJcuXVJf\nX5+OHDmipqamaQ0MAEguYbn39PTI4/Fo8eLFKiws1LZt23TixIm4MR0dHWpoaJAk1dbWanh4WAMD\nA9OXGACQVEGijf39/aqoqIjdLi8v19mzZ5OOiUQiKisrixvnOE4m8mbYkocY25qRGe/cyc2+aG3N\nTP6Hl4mf9eGz59PxNv37frp/1onz524fP+y8mdr/+XNMpSJhuaf64BljEn7fg9sBANMr4bKM2+1W\nOByO3Q6HwyovL084JhKJyO12ZzgmAOBhJCz31atXq6+vT1evXtXIyIjeeust1dfXx42pr69Xe3u7\nJKm7u1vz588ftyQDAMiuhMsyBQUFeuONN7Rp0yaNjo5q586dqqqq0uHDhyVJjY2NqqurUzAYlMfj\nUVFRkdra2rISHACQgMmgzs5O881vftN4PB6zf//+cduPHj1qqqurzcqVK813vvMdc+HChUxOn7Zk\n+b/U09Nj5s6da/7whz9kMV1yqeQ/deqUqampMcuXLzfr1q3LbsAkkuX/z3/+YzZt2mR8Pp9Zvny5\naWtry37ISezYscMsWrTIrFixYtIxL774ovF4PKa6utqcP38+i+mSS5Y/n8/dVPa9Mfl73qaSfyrn\nbcbK/e7du2bp0qXmypUrZmRkxPh8PvPhhx/Gjenq6jLDw8PGmHsncm1tbaamT1sq+b8ct379erNl\nyxZz/PjxHCSdWCr5r1+/brxerwmHw8aYe2WZL1LJ/8orr5if/OQnxph72UtLS000Gs1F3HHeeecd\nc/78+UlP0D/96U9m8+bNxhhjuru78+rYNyZ5/nw+d5NlNyZ/z1tjkuef6nmbsf9+IJXXxD/55JMq\nKSmRdO818ZFIJFPTpy2V/JL061//Ws8884y++tWv5iDl5FLJ/7vf/U5PP/107EnxhQsX5iLqhFLJ\n/7WvfU03btyQJN24cUNf+cpXVFCQcGUxa9auXasFCxZMuj3f3w+SLH8+n7vJskv5e95KyfNP9bzN\nWLlP9Hr3/v7+Sce/+eabqqury9T0aUslf39/v06cOBF7F24+vZY6lfx9fX0aGhrS+vXrtXr1av32\nt7/NdsxJpZJ/165d+uCDD/T1r39dPp9PBw8ezHbMKZvs/SAzUb6du8nk83mbiqmetxm77HmYHXbq\n1Cn95je/0ZkzZzI1fdpSyb9nzx7t379fjuPI3FvSykKy1KSSPxqN6vz58/rLX/6iO3fu6Mknn9S3\nv/1tVVZWZiFhYqnk37dvn2pqahQKhXT58mVt3LhRFy5cUHFxcRYSpu/B42WmlYyUn+duMvl83qZi\nqudtxso9ldfES9Lf//537dq1SydPnkz6T6lsSiX/uXPntG3bNknS4OCgOjs7VVhYOO7lobmQSv6K\nigotXLhQjz76qB599FF997vf1YULF/Ki3FPJ39XVpZ/97GeSpKVLl2rJkiX65z//qdWrV2c161TY\n8H6QfD13k8nn8zYVUz5vM/GEgDHGRKNR841vfMNcuXLF/O9//5vwCbF//etfZunSpea9997L1LQZ\nk0r++/3oRz/Kq2fdU8n/0UcfmQ0bNpi7d++a27dvmxUrVpgPPvggR4njpZL/pZdeMi0tLcYYY/79\n738bt9ttrl27lou4E7py5UpKT6i+9957efWE5JcS5c/nc9eYxNnvl2/n7ZcS5Z/qeZuxK/dUXhP/\ni1/8QtevX4+tfRUWFqqnpydTEdKSSv58lkr+ZcuW6fvf/76qq6s1Z84c7dq1S16vN8fJ70kl/09/\n+lPt2LFDPp9PY2Nj+uUvf6nS0tIcJ79n+/btOn36tAYHB1VRUaHW1lZFo1FJM+P9IMny5/O5myx7\nvkuWf6rnrWPMDFuAAgAkxV9iAgALUe4AYCHKHQAsRLkDgIUodwCwEOUOABb6fxRJtn6+7Fr5AAAA\nAElFTkSuQmCC\n", + "text": [ + "" + ] + } + ], + "prompt_number": 257 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "n, bins, patches = pyplot.hist(distance_dict['Noise - Vehicle'])" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "display_data", + "png": "iVBORw0KGgoAAAANSUhEUgAAAXMAAAD9CAYAAABOd5eOAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAEmtJREFUeJzt3W1sjffjx/HPRSV/pmiHw5DUz02oVttphmzsiNXcjFUs\nQhbpMBHJspgHsjtRHlgt82B44oFZt2yyZpubZNNMFhdxs3WhboKZiE7JaenapsU2rV7/B5tqh3Ou\nnnN6ruN73q9EcvQc1/dzzvH9uHx79Xssx3EcAQAea128DgAAiBxlDgAGoMwBwACUOQAYgDIHAANQ\n5gBggKBl/tdff2n8+PHKzs5Wenq63nnnHUlSbW2t8vLyNHLkSE2bNk319fUxCQsAeDgr1HXmt2/f\nVo8ePdTc3KznnntOH330kfbu3au+fftq9erV2rhxo+rq6lRUVBSrzACA/wi5zNKjRw9J0p07d3T3\n7l2lpKRo7969KigokCQVFBRo9+7dnZsSABBUUqgHtLS06Omnn9alS5e0YsUKjRkzRtXV1fL5fJIk\nn8+n6urqdn/GsqzOSQsAhgv3h/JDnpl36dJFJ0+e1NWrV3Xo0CEdOHCg3f2WZT20vB3Hiftfa9eu\n9TwDOclJTjLe+xUJ11ez9O7dW7NmzdLx48fl8/lUVVUlSQoEAurfv39EIQAAkQla5jU1Na1Xqvz5\n55/av3+/cnJyNGfOHBUXF0uSiouLlZ+f3/lJAQCPFHTNPBAIqKCgQC0tLWppadGiRYs0depU5eTk\naP78+dq+fbvS0tJUUlISq7xR5ff7vY7gCjmji5zR9TjkfBwyRirkpYlhHdSyIl7/AYBEE0l38hOg\nAGAAyhwADECZA4ABKHMAMABlDgAGoMwBwACUOQAYgDIHAANQ5gBgAMocAAxAmQOAAShzADAAZQ4A\nBqDMAcAAlDkAGIAyBwADBP2kIXSuXr1S1dhY59n4yckpamio9Wx8ANHDJw15yLIsSV6+TrxPQDzh\nk4YAIMFR5gBgAMocAAxAmQOAAShzADAAZQ4ABqDMAcAAlDkAGIAyBwADUOYAYICgZV5ZWakpU6Zo\nzJgxysjI0ObNmyVJhYWFGjx4sHJycpSTk6PS0tKYhAUAPFzQvVmqqqpUVVWl7Oxs3bx5U+PGjdPu\n3btVUlKi5ORkrVq16uEHZW8WV9ibBUBbkXRn0F0TBwwYoAEDBkiSevbsqdGjR+vatWuSRAkAQBxx\nvQVuRUWFysvLNWHCBB05ckRbtmzRZ599ptzcXG3atEl9+vRp9/jCwsLW236/X36/P1qZAcAItm3L\ntu2oHMvVFrg3b96U3+/X+++/r/z8fF2/fl39+vWTJK1Zs0aBQEDbt2+/f1CWWVxhmQVAW5F0Z8gy\nb2pq0ksvvaQZM2Zo5cqVD9xfUVGh2bNn68yZM1EJlEgocwBtddp+5o7jaOnSpUpPT29X5IFAoPX2\nrl27lJmZGdbgAIDoCHpmfvjwYU2ePFljx4799yxS2rBhg3bu3KmTJ0/KsiwNHTpU27Ztk8/nu39Q\nzsxd4cwcQFuduswS1kEpc1cocwBt8bFxAJDgKHMAMABlDgAGoMwBwACUOQAYgDIHAANQ5gBgAMoc\nAAxAmQOAAShzADAAZQ4ABqDMAcAAlDkAGIAyBwADUOYAYADKHAAMQJkDgAEocwAwAGUOAAagzAHA\nAJQ5ABiAMgcAA1DmAGAAyhwADECZA4ABKHMAMABlDgAGoMwBwABBy7yyslJTpkzRmDFjlJGRoc2b\nN0uSamtrlZeXp5EjR2ratGmqr6+PSVgAwMNZjuM4j7qzqqpKVVVVys7O1s2bNzVu3Djt3r1bO3bs\nUN++fbV69Wpt3LhRdXV1Kioqun9Qy1KQw+JflmVJ8vJ14n0C4kkk3Rn0zHzAgAHKzs6WJPXs2VOj\nR4/WtWvXtHfvXhUUFEiSCgoKtHv37rAGBwBER5LbB1ZUVKi8vFzjx49XdXW1fD6fJMnn86m6uvqB\nxxcWFrbe9vv98vv9EYcFAJPYti3btqNyrKDLLPfcvHlTzz//vNasWaP8/HylpKSorq6u9f7U1FTV\n1tbePyjLLK6wzAKgrU5bZpGkpqYmzZs3T4sWLVJ+fr6kf87Gq6qqJEmBQED9+/cPa3AAQHQELXPH\ncbR06VKlp6dr5cqVrV+fM2eOiouLJUnFxcWtJQ8A8EbQZZbDhw9r8uTJGjt27L9LAtIHH3ygZ555\nRvPnz9eVK1eUlpamkpIS9enT5/5BWWZxhWUWAG1F0p2u1sw7fFDK3BXKHEBbnbpmDgCIf5Q5ABiA\nMgcAA1DmAGAAyhwADECZA4ABKHMAMABlDgAGoMwBwACUOQAYgDIHAANQ5gBgAMocAAxAmQOAAShz\nADAAZQ4ABqDMAcAAlDkAGIAyBwADUOYAYADKHAAMQJkDgAEocwAwAGUOAAagzAHAAJQ5ABiAMgcA\nA1DmAGCAoGW+ZMkS+Xw+ZWZmtn6tsLBQgwcPVk5OjnJyclRaWtrpIQEAwQUt88WLFz9Q1pZladWq\nVSovL1d5ebmmT5/eqQEBAKEFLfNJkyYpJSXlga87jtNpgQAAHZcUzh/asmWLPvvsM+Xm5mrTpk3q\n06fPA48pLCxsve33++X3+8PNCABGsm1btm1H5ViWE+I0u6KiQrNnz9aZM2ckSdevX1e/fv0kSWvW\nrFEgEND27dvbH9SyOHt3wbIsSV6+TrxPQDyJpDs7fDVL//79ZVmWLMvS66+/rrKysrAGBgBET4fL\nPBAItN7etWtXuytdAADeCLpmvnDhQh08eFA1NTUaMmSI1q1bJ9u2dfLkSVmWpaFDh2rbtm2xygoA\neISQa+ZhHZQ1c1dYMwfQVkzXzAEA8YcyBwADhHWdOfC469UrVY2NdZ6Nn5ycooaGWs/Gh3lYM/cQ\na+be4bVHPGLNHAASHGUOAAagzAHAAJQ5ABiAMgcAA1DmAGAAyhwADECZA4ABKHMAMABlDgAGoMwB\nwACUOQAYgDIHAAOwBS484fUWtIBp2ALXQ4m8DWs8PHevx2eO4L/YAhcAEhxlDgAGoMwBwACUOQAY\ngDIHAANQ5gBgAMocAAxAmQOAAShzADBA0DJfsmSJfD6fMjMzW79WW1urvLw8jRw5UtOmTVN9fX2n\nhwQABBe0zBcvXqzS0tJ2XysqKlJeXp5+++03TZ06VUVFRZ0aEAAQWsi9WSoqKjR79mydOXNGkjRq\n1CgdPHhQPp9PVVVV8vv9+vXXX9sflL1ZXImH/UnYm8W78Zkj+K9IurPDuyZWV1fL5/NJknw+n6qr\nqx/6uMLCwtbbfr9ffr8/rIAAzOL1jpnJySlqaKj1bPy2bNuWbdtROVaHz8xTUlJUV3f/jUhNTVVt\nbfsXhjNzd+Lh7JQzc+/GT9Q5Eg/vfby+9jHdNfHe8ookBQIB9e/fP6yBAQDR0+EynzNnjoqLiyVJ\nxcXFys/Pj3ooAEDHBF1mWbhwoQ4ePKiamhr5fD6tX79eL7/8subPn68rV64oLS1NJSUl6tOnT/uD\nssziSiL/dzMenrvX4yfqHImH9z5eX/tIupNPGvJQIv+ljofn7vX4iTpH4uG9j9fXnk8aAoAER5kD\ngAEocwAwAGUOAAagzAHAAJQ5ABiAMgcAA1DmAGAAyhwADNDhLXABREPSvz8J6Y142gYW0UGZA55o\nlpc/0t7Y6N0/JOgcLLMAgAEocwAwAGUOAAagzAHAAJQ5ABiAMgcAAyT0pYm9eqWqsbHO6xge8vZa\nZ3iJ9940Cf2xcfHw8VWJO34iP/dEH9/75x6v/cTHxgFAgqPMAcAAlDkAGIAyBwADUOYAYADKHAAM\nQJkDgAEocwAwAGUOAAagzAHAAGHvzZKWlqZevXqpa9eu6tatm8rKyqKZCwDQAWGXuWVZsm1bqamp\n0cwDAAhDRMss8bpZDQAkmojOzF944QV17dpVy5cv17Jly9rdX1hY2Hrb7/fL7/c/cIxTp05p6tRZ\nam5uCTcGADy2bNuWbdtROVbYW+AGAgENHDhQN27cUF5enrZs2aJJkyb9c1CX2zju379f8+atV2Pj\nV+FEiIJB8norzsQdP5Gfe6KP7/1zj9dVhUi2wA37zHzgwIGSpH79+mnu3LkqKytrLfOO6NLl/yQ9\nFW4MAIDCXDO/ffu2GhsbJUm3bt3SDz/8oMzMzKgGAwC4F9aZeXV1tebOnStJam5u1quvvqpp06ZF\nNRgAwL2wynzo0KE6efJktLMAAMLET4ACgAEocwAwAGUOAAagzAHAAJQ5ABiAMgcAA1DmAGAAyhwA\nDECZA4ABKHMAMABlDgAGoMwBwACUOQAYgDIHAANQ5gBgAMocAAxAmQOAAShzADAAZQ4ABqDMAcAA\nlDkAGIAyBwADUOYAYIAkrwMAQGwlybIsz0ZPTk5RQ0Nt1I9LmQNIMM2SHM9Gb2zsnH9IWGYBAANQ\n5gBgAMr8sWB7HcAl2+sALtleB3DJ9jqAS7bXAVywvQ7Q6cIu89LSUo0aNUojRozQxo0bo5kJD7C9\nDuCS7XUAl2yvA7hkex3AJdvrAC7YXgfodGGV+d27d/XGG2+otLRU586d086dO3X+/PloZwMAuBRW\nmZeVlWn48OFKS0tTt27dtGDBAu3Zsyfa2QAALoV1aeK1a9c0ZMiQ1t8PHjxYP//8c7vHdOw6Tu+u\n+fR27I6Mv87j8d3qSM7H5bX3cvzOet/dju9WR3N68dq3zejte98Z17mHVeahgjiOd9dwAkAiCmuZ\nZdCgQaqsrGz9fWVlpQYPHhy1UACAjgmrzHNzc3Xx4kVVVFTozp07+uqrrzRnzpxoZwMAuBTWMktS\nUpK2bt2qF198UXfv3tXSpUs1evToaGcDALgU9nXmM2bM0IULF7R161YVFxcHvd78zTff1IgRI5SV\nlaXy8vKww0Yi1HXxX3zxhbKysjR27Fg9++yzOn36dNxlvOeXX35RUlKSvv322ximu89NTtu2lZOT\no4yMDPn9/tgG/FeonDU1NZo+fbqys7OVkZGhTz/9NOYZlyxZIp/Pp8zMzEc+Jh7mT6ic8TB/JHev\np+T9HHKTs8NzyIlAc3OzM2zYMOfy5cvOnTt3nKysLOfcuXPtHvPdd985M2bMcBzHcX766Sdn/Pjx\nkQzZaTmPHj3q1NfXO47jOPv27Yt5TjcZ7z1uypQpzqxZs5yvv/46phnd5qyrq3PS09OdyspKx3Ec\n58aNG3GZc+3atc7bb7/dmjE1NdVpamqKac5Dhw45J06ccDIyMh56fzzMH8cJndPr+XNPqJyO4/0c\ncpzQOcOZQxH9OL+b68337t2rgoICSdL48eNVX1+v6urqSIbtlJwTJ05U7969W3NevXo17jJK0pYt\nW/TKK6+oX79+Mc13j5ucX375pebNm9f6TfG+ffvGZc6BAweqoaFBktTQ0KAnn3xSSUmx3Uh00qRJ\nSklJeeT98TB/pNA5vZ4/94TKKXk/h6TQOcOZQxGV+cOuN7927VrIx8T6jXaTs63t27dr5syZsYjW\nyu1ruWfPHq1YsUJS51yrGoqbnBcvXlRtba2mTJmi3Nxcff7557GO6SrnsmXLdPbsWT311FPKysrS\nxx9/HOuYIcXD/OkoL+aPW/Ewh9wIZw5FdBri9oVw/nPdeaxfwI6Md+DAAX3yySc6cuRIJyZ6kJuM\nK1euVFFRkSzLkuM4nlzP7yZnU1OTTpw4oR9//FG3b9/WxIkTNWHCBI0YMSIGCf/hJueGDRuUnZ0t\n27Z16dIl5eXl6dSpU0pOTo5BQve8nj8d4dX8cSse5pAb4cyhiMrczfXm/33M1atXNWjQoEiG7TC3\n18WfPn1ay5YtU2lpacj/qkWbm4zHjx/XggULJP3zzbt9+/apW7duMb0s1E3OIUOGqG/fvurevbu6\nd++uyZMn69SpUzEtczc5jx49qvfee0+SNGzYMA0dOlQXLlxQbm5uzHKGEg/zxy0v549b8TCH3Ahr\nDkWyiN/U1OT873//cy5fvuz8/fffIb8BeuzYMU++MeIm5++//+4MGzbMOXbsWMzzuc3Y1muvveZ8\n8803MUz4Dzc5z58/70ydOtVpbm52bt265WRkZDhnz56Nu5xvvfWWU1hY6DiO41RVVTmDBg1y/vjj\nj5jmdBzHuXz5sqtvgHo1f+4JltPr+dNWsJxteTWH7gmWM5w5FNGZ+aOuN9+2bZskafny5Zo5c6a+\n//57DR8+XE888YR27NgRyZCdlnP9+vWqq6trXUvr1q2bysrK4ipjPHCTc9SoUZo+fbrGjh2rLl26\naNmyZUpPT4+7nO+++64WL16srKwstbS06MMPP1RqampMcy5cuFAHDx5UTU2NhgwZonXr1qmpqak1\nYzzMHzc5vZ4/bnPGi1A5w5lDluPE6aIRAMA1PmkIAAxAmQOAAShzADAAZQ4ABqDMAcAAlDkAGOD/\nAfjp56vr/7AoAAAAAElFTkSuQmCC\n", + "text": [ + "" + ] + } + ], + "prompt_number": 258 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "n, bins, patches = pyplot.hist(distance_dict['Collection Truck Noise'])" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "display_data", + "png": "iVBORw0KGgoAAAANSUhEUgAAAXoAAAD9CAYAAACyYrxEAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAElZJREFUeJzt3F9s1Xf9x/HXwXMuFtDBgKGcc0xHT20PQ1pIsc4Fc2Y0\nRXR1AVyKE2ZXscEsE2OiiTdrvdioxsRJb7pkbiHbKsaZFU05JqBnbmNrJzTjAkLK0mannSGpWQXS\nbG0PHy+Q82tpz7ft+cPpef+ej+QkPft+OOf9ybLnvnzP99TnnHMCAJi1rNgDAAAKi9ADgHGEHgCM\nI/QAYByhBwDjCD0AGOcZ+scee0zr1q3T5z//+YxrnnjiCVVUVKi6ulr9/f15HxAAkBvP0Dc1NSke\nj2c83tPTo0uXLmlgYEDPPvusDh48mPcBAQC58Qz99u3btWrVqozHjx8/rkcffVSSVFdXp7GxMV2+\nfDm/EwIAcuLP5Q+PjIwoHA6nn4dCIQ0PD2vdunUz1vl8vlzeBgD+38rHLy/I+cPYW4fIFHXnXEk/\n/reLDI8nPY5ZeFjen+W9sb/SeGie7uQup9AHg0Elk8n08+HhYQWDwZyHAgDkT06hb2ho0NGjRyVJ\nb7/9tlauXDnrsg0AoLg8r9Hv3btXr732mkZHRxUOh9XW1qbJyUlJUktLi3bu3Kmenh5FIhEtX75c\nzz///G0ZeumJFXuAAosVe4ACihV7gAKLFXuAAosVe4CS4Lsdv6bY5/Pl9XpTMdz47KG09wBgKcrc\nx3y1k2/GAoBxhB4AjCP0AGAcoQcA4wg9ABhH6AHAOEIPAMYRegAwjtADgHGEHgCMI/QAYByhBwDj\nCD0AGEfoAcA4Qg8AxhF6ADCO0AOAcYQeAIwj9ABgHKEHAOMIPQAYR+gBwDhCDwDGEXoAMI7QA4Bx\nhB4AjCP0AGAcoQcA4wg9ABhH6AHAOEIPAMYRegAwjtADgHGEHgCMI/QAYNy8oY/H46qqqlJFRYXa\n29tnHR8dHdWOHTtUU1OjTZs26YUXXijEnACALPmccy7TwVQqpcrKSp08eVLBYFDbtm1TV1eXotFo\nek1ra6s+/vhjPf300xodHVVlZaUuX74sv9//f2/i88njbUqCz+eTVNp7ALAUZe5jvtrpeUbf19en\nSCSisrIyBQIBNTY2qru7e8aaz3zmM7py5Yok6cqVK1q9evWMyAMAisuzyCMjIwqHw+nnoVBIvb29\nM9YcOHBAX/nKV7R+/XpdvXpVf/jDH+Z8rdbW1vTPsVhMsVgs+6kBwKBEIqFEIpH31/UM/Y3LFd6e\neuop1dTUKJFI6L333tPXvvY1vfvuu/rkJz85Y9300AMAZrv1JLitrS0vr+t56SYYDCqZTKafJ5NJ\nhUKhGWtOnz6tb3/725Kk8vJy3XPPPbp48WJehgMA5M4z9LW1tRoYGNDQ0JAmJiZ07NgxNTQ0zFhT\nVVWlkydPSpIuX76sixcvasOGDYWbGACwKJ6Xbvx+vzo6OlRfX69UKqXm5mZFo1F1dnZKklpaWvTz\nn/9cTU1Nqq6u1vXr1/XLX/5Sd911120ZHgAwP8/bK/P2JtxeCQAZFPn2SgBA6SP0AGAcoQcA4wg9\nABhH6AHAOEIPAMYRegAwjtADgHGEHgCMI/QAYByhBwDjCD0AGEfoAcA4Qg8AxhF6ADCO0AOAcYQe\nAIwj9ABgHKEHAOMIPQAYR+gBwDhCDwDGEXoAMI7QA4BxhB4AjCP0AGAcoQcA4wg9ABhH6AHAOEIP\nAMYRegAwjtADgHGEHgCMI/QAYByhBwDjCD0AGDdv6OPxuKqqqlRRUaH29vY51yQSCW3ZskWbNm1S\nLBbL94wAgBz4nHMu08FUKqXKykqdPHlSwWBQ27ZtU1dXl6LRaHrN2NiY7r//fv31r39VKBTS6Oio\n1qxZM/NNfD55vE1J8Pl8kkp7DwCWosx9zFc7Pc/o+/r6FIlEVFZWpkAgoMbGRnV3d89Y8/LLL2v3\n7t0KhUKSNCvyAIDi8nsdHBkZUTgcTj8PhULq7e2dsWZgYECTk5N64IEHdPXqVf3oRz/Svn37Zr1W\na2tr+udYLMYlHgC4RSKRUCKRyPvreob+xuUKb5OTkzp79qxOnTql8fFx3XffffriF7+oioqKGeum\nhx4AMNutJ8FtbW15eV3P0AeDQSWTyfTzZDKZvkRzUzgc1po1a3THHXfojjvu0Je//GW9++67s0IP\nACgOz2v0tbW1GhgY0NDQkCYmJnTs2DE1NDTMWPOtb31Lb7zxhlKplMbHx9Xb26uNGzcWdGgAwMJ5\nntH7/X51dHSovr5eqVRKzc3Nikaj6uzslCS1tLSoqqpKO3bs0ObNm7Vs2TIdOHCA0APAEuJ5e2Xe\n3oTbKwEggyLfXgkAKH2EHgCMI/QAYByhBwDjCD0AGEfoAcA4Qg8AxhF6ADCO0AOAcYQeAIwj9ABg\nHKEHAOMIPQAYR+gBwDhCDwDGEXoAMI7QA4BxhB4AjCP0AGAcoQcA4wg9ABhH6AHAOEIPAMYRegAw\njtADgHGEHgCMI/QAYByhBwDjCD0AGEfoAcA4Qg8AxhF6ADCO0AOAcYQeAIwj9ABgHKEHAOPmDX08\nHldVVZUqKirU3t6ecd0777wjv9+vP/3pT3kdEACQG8/Qp1IpPf7444rH4zp//ry6urp04cKFOdf9\n7Gc/044dO+ScK9iwAIDF8wx9X1+fIpGIysrKFAgE1NjYqO7u7lnrjhw5oj179mjt2rUFGxQAkB2/\n18GRkRGFw+H081AopN7e3llruru79be//U3vvPOOfD7fnK/V2tqa/jkWiykWi2U/NQAYlEgklEgk\n8v66nqHPFO3pDh06pMOHD8vn88k5l/HSzfTQAwBmu/UkuK2tLS+v6xn6YDCoZDKZfp5MJhUKhWas\nOXPmjBobGyVJo6OjOnHihAKBgBoaGvIyIAAgNz7n8enp1NSUKisrderUKa1fv15f+MIX1NXVpWg0\nOuf6pqYmPfjgg9q1a9fMN/nf2X4pu/G3m9LeA4ClKHMf89VOzzN6v9+vjo4O1dfXK5VKqbm5WdFo\nVJ2dnZKklpaWnAcAABSW5xl93t6EM3oAyKDwZ/R8MxYAjCP0AGAcoQcA4wg9ABhH6AHAOEIPAMYR\negAwjtADgHGEHgCMI/QAYByhBwDjCD0AGEfoAcA4Qg8AxhF6ADCO0AOAcYQeAIwj9ABgHKEHAOMI\nPQAYR+gBwDhCDwDGEXoAMI7QA4BxhB4AjCP0AGAcoQcA4wg9ABhH6AHAOEIPAMYRegAwjtADgHGE\nHgCMI/QAYByhBwDj5g19PB5XVVWVKioq1N7ePuv4Sy+9pOrqam3evFn333+/zp07V5BBAQBZch6m\npqZceXm5GxwcdBMTE666utqdP39+xprTp0+7sbEx55xzJ06ccHV1dbNeZ563KQmSnOR48ODBI88P\neXYnHzzP6Pv6+hSJRFRWVqZAIKDGxkZ1d3fPWHPffffpzjvvlCTV1dVpeHi4MP9HAgBkxe91cGRk\nROFwOP08FAqpt7c34/rnnntOO3funPNYa2tr+udYLKZYLLa4SQHAuEQioUQikffX9Qy9z+db8Av9\n/e9/1+9+9zu9+eabcx6fHnoAwGy3ngS3tbXl5XU9Qx8MBpVMJtPPk8mkQqHQrHXnzp3TgQMHFI/H\ntWrVqrwMBgDID89r9LW1tRoYGNDQ0JAmJiZ07NgxNTQ0zFjz/vvva9euXXrxxRcViUQKOiwAYPE8\nz+j9fr86OjpUX1+vVCql5uZmRaNRdXZ2SpJaWlr0i1/8Qh9++KEOHjwoSQoEAurr6yv85ACABfH9\n7xaewr6Jz6fb8DYFdePzitLeA4ClKHMf89VOvhkLAMYRegAwjtADgHGEHgCMI/QAYByhBwDjCD0A\nGEfoAcA4Qg8AxhF6ADCO0AOAcYQeAIwj9ABgHKEHAOMIPQAYR+gBwDhCDwDGEXoAMI7QA4BxhB4A\njCP0AGAcoQcA4wg9ABhH6AHAOEIPAMYRegAwjtADgHGEHgCMI/QAYByhBwDjCD0AGEfoAcA4Qg8A\nxhF6ADCO0AOAcYQ+LxLFHqDAEsUeoIASxR6gwBLFHqDAEsUeoCTMG/p4PK6qqipVVFSovb19zjVP\nPPGEKioqVF1drf7+/rwPufQlij1AgSWKPUABJYo9QIElij1AgSWKPUBJ8Ax9KpXS448/rng8rvPn\nz6urq0sXLlyYsaanp0eXLl3SwMCAnn32WR08eLCgAwMAFscz9H19fYpEIiorK1MgEFBjY6O6u7tn\nrDl+/LgeffRRSVJdXZ3GxsZ0+fLlwk0MAFgUv9fBkZERhcPh9PNQKKTe3t551wwPD2vdunUz1vl8\nvnzMW2Ree2i7bVMUh+X9Wd6bxP6WvkL30TP0C31z55znn7v1OADg9vG8dBMMBpVMJtPPk8mkQqGQ\n55rh4WEFg8E8jwkAyJZn6GtrazUwMKChoSFNTEzo2LFjamhomLGmoaFBR48elSS9/fbbWrly5azL\nNgCA4vG8dOP3+9XR0aH6+nqlUik1NzcrGo2qs7NTktTS0qKdO3eqp6dHkUhEy5cv1/PPP39bBgcA\nLJDLQVNTk7v77rvdpk2b5jz+6quvus2bN7uamhq3detWd+rUKeecc++//76LxWJu48aN7t5773XP\nPPNMLmMUTLb7u2lqasrV1NS4b37zm7dj3EXLZX8ffvih2717t6uqqnLRaNS99dZbt2vsBctlf089\n9ZTbuHGj27Rpk9u7d6/76KOPbtfYCzLf3m7q6+tzn/jEJ9wf//jH9D87ceKEq6ysdJFIxB0+fLjQ\no2Zlsft75ZVXnHN22nLTrfu7abFtySn0//jHP9zZs2czDnvt2rX0z+fOnXPl5eXOOef+9a9/uf7+\nfuecc1evXnWf+9zn3Pnz53MZpSCy3d9Nv/71r913vvMd9+CDDxZ0zmzlsr/9+/e75557zjnn3OTk\npBsbGyvssFnIdn+Dg4PunnvuScf94Ycfdi+88ELhB16E+fbm3I0YPPDAA+4b3/hGOvRTU1OuvLzc\nDQ4OuomJCVddXV2S/+05N/f+rLTFubn3d9Ni25LTr0DYvn27Vq1alfH48uXL0z9fu3ZNa9askSR9\n+tOfVk1NjSRpxYoVikaj+uCDD3IZpSCy3Z9040Ppnp4eff/731+ydx1lu7///Oc/ev311/XYY49J\nunGJ78477yzssFnIdn+f+tSnFAgEND4+rqmpKY2Pjy+5Gwzm25skHTlyRHv27NHatWvT/2wh341Z\nCrLdn5W2SHPvT8quLQX/XTevvvqqotGovv71r+u3v/3trONDQ0Pq7+9XXV1doUcpiEz7+/GPf6xf\n/epXWrastH+d0Fz7Gxwc1Nq1a9XU1KStW7fqwIEDGh8fL/Kk2Zlrf3fddZd+8pOf6LOf/azWr1+v\nlStX6qtf/WqRJ12ckZERdXd3p7+pfvOW57m+9zIyMlKUGXORaX/TlXJbvPaXTVsKXqGHHnpIFy5c\n0J///Gft27dvxrFr165pz549euaZZ7RixYpCj1IQt+7POae//OUvuvvuu7Vly5Yleza/UHP9+5ua\nmtLZs2f1wx/+UGfPntXy5ct1+PDhIk+anbn299577+k3v/mNhoaG9MEHH+jatWt66aWXijzp4hw6\ndEiHDx+Wz+eTu3GJVpKVLy5m3t9Npd6WTPvLti2ed93k0/bt2zU1NaV///vfWr16tSYnJ7V79259\n97vf1UMPPXS7xiiY6fs7ffq0jh8/rp6eHn300Ue6cuWK9u/fn74NtRRN318oFFIoFNK2bdskSXv2\n7CnZ0N90c3+jo6P65z//qS996UtavXq1JGnXrl06ffq0HnnkkSJPuXBnzpxRY2OjJGl0dFQnTpxQ\nIBBY0HdjSkGm/TU0NJhoy1z78/v96u3tza4ti/8YYabBwcGMHyhcunTJXb9+3Tnn3JkzZ9yGDRuc\nc85dv37d7du3zx06dCjXty+4bPY3XSKRWLJ33TiX/f62b9/uLl686Jxz7sknn3Q//elPCz9sFrLZ\nX39/v7v33nvd+Pi4u379utu/f7/r6Oi4bTMvlNfepvve976XvmtjcnLSbdiwwQ0ODrqPP/54yX4Y\n61x2+7PSlumm72+6xbQlpzP6vXv36rXXXtPo6KjC4bDa2to0OTkp6cY99q+88oqOHj2qQCCgFStW\n6Pe//70k6c0339SLL76ozZs3a8uWLZKkp59+Wjt27MhlnLzLdn+3Wqp/Xc5lf0eOHNEjjzyiiYkJ\nlZeXL8nvT2S7v5qaGu3fv1+1tbVatmyZtm7dqh/84AfF3Mos8+0tk0zfjVlqst2flbYs1ELb4nOu\nxC8iAwA8lfYtIQCAeRF6ADCO0AOAcYQeAIwj9ABgHKEHAOP+C/pQ0lt2EtaSAAAAAElFTkSuQmCC\n", + "text": [ + "" + ] + } + ], + "prompt_number": 259 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "n, bins, patches = pyplot.hist(distance_dict['Noise - Street/Sidewalk'])" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "display_data", + "png": "iVBORw0KGgoAAAANSUhEUgAAAXMAAAD9CAYAAABOd5eOAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAE81JREFUeJzt3X9s1PUdx/HXV0sWf1DpDfoFgaQOaUoptEw2Ztz0sF5V\nDF2dpNMYcqIjxmVx+scMbjFW/9Bjm4mK+2N/KF6MmzZqalUgcz++LBvOLpaAUbRGCxTSu8DuahHm\n6I/v/qjtZLZ33971vt/jc89HQlLK9ft5fb/weXG871vOcl3XFQDgrHZO0AEAAPmjzAHAAJQ5ABiA\nMgcAA1DmAGAAyhwADJC1zAcGBrRhwwYtW7ZMtbW1evvtt5VKpRSJRFRdXa2mpiYNDAz4kRUAMIWs\nZf7Tn/5U69at04EDB7R//37V1NQoFospEomop6dHjY2NisVifmQFAEzByvRNQ59++qlWrVqlTz75\n5IzP19TUaPfu3bJtW4lEQuFwWB988EHBwwIAJleW6Rd7e3s1b948bdq0Sfv27dNll12mxx9/XMlk\nUrZtS5Js21YymfzK11qWVZjEAGC4XL4xP+OYZXh4WN3d3frxj3+s7u5uXXDBBV8ZqViWNWVxu65b\n9D8efPDBwDOYkJGc5Cz2H2dLzlxlLPNFixZp0aJF+ta3viVJ2rBhg7q7uzV//nwlEglJUn9/vyor\nK3MOAADIX8Yynz9/vhYvXqyenh5J0h//+EctX75c69evVzwelyTF43G1tLQUPikAYEoZZ+aStG3b\nNt166606ffq0lixZou3bt2tkZEStra16+umnVVVVpfb2dj+yFkQ4HA46QlZnQ0aJnDONnDPrbMmZ\nq4x3s+R1YMvKa/4DAKUo1+7kO0ABwACUOQAYgDIHAANQ5gBgAMocAAxAmQOAAShzADAAZQ4ABqDM\nAcAAlDkAGIAyBwADUOYAYADK3CDl5aGJNwvx40d5eSjoUwbwBf7XRIOMveOTn9ec32NgpvG/JgJA\nCaPMAcAAlDkAGIAyBwADUOYAYADKHAAMQJkDgAEocwAwAGUOAAagzAHAAJQ5ABiAMgcAA1DmAGAA\nyhwADFCW7QFVVVUqLy/Xueeeq1mzZqmrq0upVEo//OEPdejQIVVVVam9vV1z5szxIy8AYBJZn5lb\nliXHcbR37151dXVJkmKxmCKRiHp6etTY2KhYLFbwoACAqXkas/z/f5Te2dmpaDQqSYpGo+ro6Jj5\nZAAAz7KOWSzL0jXXXKNzzz1Xd955pzZv3qxkMinbtiVJtm0rmUxO+rVtbW0TH4fDYYXD4RkJDQCm\ncBxHjuPkfZysbxvX39+vBQsW6NixY4pEItq2bZuam5uVTqcnHhMKhZRKpc48MG8b5zveNg44+xXs\nbeMWLFggSZo3b55uvPFGdXV1ybZtJRIJSWNlX1lZOe2FAQAzJ2OZnzp1SidOnJAknTx5Un/4wx+0\nYsUKNTc3Kx6PS5Li8bhaWloKnxQAMKWMY5be3l7deOONkqTh4WHdeuutuv/++5VKpdTa2qrDhw9P\neWsiYxb/MWYBzn65dmfWmXmuKHP/UebA2a9gM3MAQPHLemsiMLWyL/414J/Zsys0OJjK/kCgxDBm\nMUgQYxZ/1xtbkz9XMBljFgAoYZQ5ABiAMgeyKC8PybIsX3+Ul4eCPm2cZZiZG4SZeYFW9P26Srw2\nULqYmQNACaPMAcAAlDkAGIAyBwADUOYAYADKHAAMQJkDgAEocwAwAGUOAAagzAHAAJQ5ABiAMgcA\nA1DmAGAAyhwADECZA4ABKHMAMABlDgAGoMwBwACUOQAYgDIHAANQ5gBgAE9lPjIyolWrVmn9+vWS\npFQqpUgkourqajU1NWlgYKCgIQEAmXkq8yeeeEK1tbWyLEuSFIvFFIlE1NPTo8bGRsVisYKGBABk\nlrXMjxw5oh07duhHP/qRXNeVJHV2dioajUqSotGoOjo6CpsSAJBRWbYH3HvvvfrVr36lwcHBic8l\nk0nZti1Jsm1byWRy0q9ta2ub+DgcDiscDueXFgAM4ziOHMfJ+ziWO/50exKvv/66du7cqd/85jdy\nHEePPfaYXnvtNVVUVCidTk88LhQKKZVKnXlgy1KGQ6MAxsZgfl5zv9cbW9PvP1f+X1cpiPNEcci1\nOzM+M9+zZ486Ozu1Y8cOff755xocHNTGjRtl27YSiYTmz5+v/v5+VVZW5hwcAJC/jDPzRx55RH19\nfert7dULL7ygq6++Ws8995yam5sVj8clSfF4XC0tLb6EBQBMblr3mY/fzbJlyxa9+eabqq6u1p//\n/Gdt2bKlIOEAAN5knJnndWBm5r5jZl6gFZmZw0e5diffAQoABqDMAcAAlDkAGIAyBwADUOYAYADK\nHAAMQJkDgAEocwAwAGUOAAagzAHAAJQ5ABiAMgcAA1DmAGAAyhwADECZA4ABKHMAMABlDgAGoMwB\nwACUOQAYgDIHAANQ5gBgAMocAAxAmQOAAShzADAAZQ4ABqDMAcAAlDkAGIAyBwADZCzzzz//XGvW\nrFFDQ4Nqa2t1//33S5JSqZQikYiqq6vV1NSkgYEBX8ICACZnua7rZnrAqVOndP7552t4eFjf/e53\n9etf/1qdnZ2aO3eu7rvvPm3dulXpdFqxWOzMA1uWshwaM8yyLEl+XnO/1xtb0+8/V/5fVymI80Rx\nyLU7s45Zzj//fEnS6dOnNTIyooqKCnV2dioajUqSotGoOjo6pr0wAGDmlGV7wOjoqL75zW/q448/\n1l133aXly5crmUzKtm1Jkm3bSiaTk35tW1vbxMfhcFjhcHhGQp8NystDOnEiHXQMAEXOcRw5jpP3\ncbKOWcZ9+umnuvbaa/Xoo4/qBz/4gdLp/xVVKBRSKpU688AlPmYJ6p/mjFkKsCJjFvioYGOWcRdd\ndJFuuOEGvfPOO7JtW4lEQpLU39+vysrKaS8MAJg5Gcv8+PHjE3eq/Pvf/9abb76pVatWqbm5WfF4\nXJIUj8fV0tJS+KQAgCllHLO8++67ikajGh0d1ejoqDZu3Kif/exnSqVSam1t1eHDh1VVVaX29nbN\nmTPnzAMzZhFjlsKsyZgFJsu1Oz3PzKd9YMpclHlh1qTMYbKCz8wBAMWLMgcAA2S9zxwoLmVfjD0A\nfBlljrPMsIJ5LQIoboxZAMAAlDkAGIAyBwADUOYAYADKHAAMQJkDgAEocwAwAGUOAAagzAHAAJQ5\nABiAMgcAA1DmAGAAyhwADECZA4ABKHMAMABlDgAGoMwBwACUOQAYgDIHAANQ5gBgAN7QGShKZbIs\n/95IevbsCg0OpnxbDzOPMgeK0rAk17fVTpzw7y8OFAZjFgAwAGUOAAbIWOZ9fX1au3atli9frrq6\nOj355JOSpFQqpUgkourqajU1NWlgYMCXsACAyVmu6045mEskEkokEmpoaNBnn32myy67TB0dHdq+\nfbvmzp2r++67T1u3blU6nVYsFjvzwJalDIc23tiLV36fv99rlsI5lsqapb1fi0mu3Znxmfn8+fPV\n0NAgSbrwwgu1bNkyHT16VJ2dnYpGo5KkaDSqjo6OHCIDAGaK57tZDh48qL1792rNmjVKJpOybVuS\nZNu2ksnkpF/T1tY28XE4HFY4HM4rbK7Ky0M6cSIdyNoAJhfEvizGWzAdx5HjOHkfJ+OYZdxnn32m\nq666Sg888IBaWlpUUVGhdPp/vwmhUEip1JkXqJjGLKUx8ghizVI4x1JZ0//9GtS+LJZemkpBxiyS\nNDQ0pJtuukkbN25US0uLpLFn44lEQpLU39+vysrKaS8MAJg5GcvcdV3dcccdqq2t1T333DPx+ebm\nZsXjcUlSPB6fKHkAQDAyjln+9re/6corr9TKlSsnvrX40Ucf1be//W21trbq8OHDqqqqUnt7u+bM\nmXPmgRmzlMCapXCOpbImY5ZikWt3epqZ54IyL4U1S+EcS2VNyrxYFGxmDgAofpQ5ABiAMgcAA1Dm\nAGAAyhwADECZA4ABKHMAMABlDgAGoMwBwACUOQAYgDIHAANQ5gBgAMocAAxAmQOAAShzADAAZQ4A\nBqDMAcAAlDkAGIAyBwADUOYAYADKHAAMQJkDgAEocwAwAGUOAAYoCzoAgGJQJsuygg6BPFDmACQN\nS3J9XpO/PGYSYxYAMABlDgAGoMwBwAAZy/z222+XbdtasWLFxOdSqZQikYiqq6vV1NSkgYGBgocE\nAGSWscw3bdqkXbt2nfG5WCymSCSinp4eNTY2KhaLFTQgACA7y3XdjC9hHzx4UOvXr9e7774rSaqp\nqdHu3btl27YSiYTC4bA++OCDrx7YspTl0L4Zu+UqiFfqTV+zFM6xVNYshXMcW7NYemkquXbntG9N\nTCaTsm1bkmTbtpLJ5JSPbWtrm/g4HA4rHA5POyAAmMxxHDmOk/dxpv3MvKKiQul0euLXQ6GQUqnU\nVw/MM/MSWLMUzrFU1iyFcxxbs1h6aSq5due072YZH69IUn9/vyorK6e9KABgZk27zJubmxWPxyVJ\n8XhcLS0tMx4KADA9Gccst9xyi3bv3q3jx4/Ltm09/PDD+v73v6/W1lYdPnxYVVVVam9v15w5c756\nYMYsJbBmKZxjqaxZCuc4tmax9NJUcu3OrDPzXFHmpbBmKZxjqaxZCuc4tmax9NJUfJuZAwCKD2UO\nAAagzAHAAJQ5ABiAMgcAA1DmAGAAyhwADECZA4ABAnlD5+Hh4aK/cR8Azia+l/mxY8d08cULNTpK\nmQPATPG9zE+dOqWvfW2BTp485OOqlo9rAYD/mJkDgAEocwAwAGUOAAagzAHAAJQ5ABiAMgcAA1Dm\nAGAAyhwADECZA4ABKHMAMABlDgAGoMwBwACUOQAYgDIHAANQ5gBgAMocAAxAmcsJOoAHTtABPHKC\nDuCRE3QAj5ygA3jkBB3AIyfoAAWVc5nv2rVLNTU1Wrp0qbZu3TqTmXzmBB3AAyfoAB45QQfwyAk6\ngEdO0AE8coIO4JETdICCyqnMR0ZG9JOf/ES7du3S+++/r9///vc6cODATGcDAHiUU5l3dXXp0ksv\nVVVVlWbNmqWbb75Zr7766kxnAwB4lNMbOh89elSLFy+e+PmiRYv09ttvf+VxlpXpjZT9fpPlTOs9\nFMCa0+U1Y9DXtVDXMtOauZhuziDeFPwh+XM9x+Vzjrnm9P+6Zu6ls1dOZe7lYrium8uhAQA5yGnM\nsnDhQvX19U38vK+vT4sWLZqxUACA6cmpzFevXq2PPvpIBw8e1OnTp/Xiiy+qubl5prMBADzKacxS\nVlamp556Stdee61GRkZ0xx13aNmyZTOdDQDgUc73mV9//fX68MMP9dRTTykej2e83/zuu+/W0qVL\nVV9fr7179+YcNh/Z7ot//vnnVV9fr5UrV+qKK67Q/v37A0jp/f79f/7znyorK9Mrr7ziY7oxXjI6\njqNVq1aprq5O4XDY34BfyJbz+PHjuu6669TQ0KC6ujo9++yzvme8/fbbZdu2VqxYMeVjimH/ZMtZ\nLPvHy/WUgt0/krec095Dbh6Gh4fdJUuWuL29ve7p06fd+vp69/333z/jMW+88YZ7/fXXu67ruv/4\nxz/cNWvW5LNkwXLu2bPHHRgYcF3XdXfu3Fm0Occft3btWveGG25wX3rppaLLmE6n3draWrevr891\nXdc9duyYrxm95nzwwQfdLVu2TGQMhULu0NCQrzn/+te/ut3d3W5dXd2kv14M+8d1s+cshv3jutlz\num6w+2dctpy57KG8vp3fy/3mnZ2dikajkqQ1a9ZoYGBAyWQyn2ULkvPyyy/XRRddNJHzyJEjvmb0\nmlOStm3bpg0bNmjevHlFmfF3v/udbrrppokXxefOnVuUORcsWKDBwUFJ0uDgoL7+9a+rrCynyWPO\nvve976miomLKXy+G/SNlz1kM+0fKnlMKdv+My5Yzlz2UV5lPdr/50aNHsz7G799oLzm/7Omnn9a6\ndev8iHYGr9fz1Vdf1V133SXJ/3tmvWT86KOPlEqltHbtWq1evVrPPfecrxklbzk3b96s9957Txdf\nfLHq6+v1xBNP+B0zq2LYP9MV1P7xIuj941UueyivpyFeL4T7f/ec+30Bp7PeX/7yFz3zzDP6+9//\nXsBEk/OS85577lEsFpNlWXJd1/f7+b1kHBoaUnd3t/70pz/p1KlTuvzyy/Wd73xHS5cu9SHhGC85\nH3nkETU0NMhxHH388ceKRCLat2+fZs+e7UNC74LeP9MR5P7xIuj941UueyivMvdyv/n/P+bIkSNa\nuHBhPstOm9f74vfv36/Nmzdr165dWf+pVghecr7zzju6+eabJY29gLdz507NmjXLt1tDvWRcvHix\n5s6dq/POO0/nnXeerrzySu3bt8/XMveSc8+ePfrFL34hSVqyZIkuueQSffjhh1q9erVvObMphv3j\nVdD7x4ug949XOe2hfIb4Q0ND7je+8Q23t7fX/c9//pP1BdC33norkBdGvOQ8dOiQu2TJEvett97y\nPd84Lzm/7LbbbnNffvllHxN6y3jgwAG3sbHRHR4edk+ePOnW1dW57733XtHlvPfee922tjbXdV03\nkUi4CxcudP/1r3/5mtN1Xbe3t9fTC6BB7Z9xmXIWw/4ZlynnlwWxf74sU85c9lBez8ynut/8t7/9\nrSTpzjvv1Lp167Rjxw5deumluuCCC7R9+/Z8lixYzocffljpdHpiljZr1ix1dXUVXc6geclYU1Oj\n6667TitXrtQ555yjzZs3q7a2tuhy/vznP9emTZtUX1+v0dFR/fKXv1QoFPI15y233KLdu3fr+PHj\nWrx4sR566CENDQ1NZCyG/eMlZzHsHy85i0W2nLnsIct1i3RoBADwjHcaAgADUOYAYADKHAAMQJkD\ngAEocwAwAGUOAAb4L6kEjs8vvRBZAAAAAElFTkSuQmCC\n", + "text": [ + "" + ] + } + ], + "prompt_number": 260 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "n, bins, patches = pyplot.hist(distance_dict['Noise - Commercial'])" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "display_data", + "png": "iVBORw0KGgoAAAANSUhEUgAAAXkAAAD9CAYAAABZVQdHAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAEudJREFUeJzt3X9s1Hfhx/HXYfsHUTp6bL1KW1MHbUopFJQJTHFHmis/\nDKQRbIbJcgIjRqMOviazcVno+ENuzGXDgYlhDC/+2ohboNugUdRDM36JLGUBXAkWKdheZNezbGxQ\nyuf7B1LAQfu5z33uPsf7no+kSbl+7t6v3vF+8eHz02dZliUAgJFGeR0AAJA5lDwAGIySBwCDUfIA\nYDBKHgAMRskDgMGGLfkVK1YoEAhoypQpQ48lEgmFQiFVV1ersbFRyWRy6Gfr169XVVWVampq9Lvf\n/S5zqQEAtgxb8suXL1d7e/stj0UiEYVCIXV2dqqhoUGRSESSdPz4cb3yyis6fvy42tvb9e1vf1tX\nr17NXHIAwIiGLfk5c+aouLj4lsfa2toUDoclSeFwWDt27JAk7dy5U8uWLVNhYaEqKys1ceJEHTp0\nKEOxAQB2FKT6hHg8rkAgIEkKBAKKx+OSpH/961+aNWvW0HLl5eU6d+7cLc/1+XzpZAWAvOX04gRp\n7Xj1+XzDFvftfmZZVs5/rV271vMM5CQnOcl4/SsdKZd8IBBQb2+vJKmnp0clJSWSpLKyMnV3dw8t\nd/bsWZWVlaUVDgCQnpRLfvHixYpGo5KkaDSqpqamocdffvllXb58WV1dXTp58qS+8IUvuJsWAJCS\nYbfJL1u2THv37tX58+dVUVGhdevWqaWlRc3Nzdq6dasqKyu1fft2SVJtba2am5tVW1urgoIC/fSn\nP71rt8EHg0GvI9hCTneR0113Q867IWO6fFa6G3xSGcznS3v7EgDkm3S6kzNeAcBglDwAGIySBwCD\nUfIAYDBKHgAMRskDgMEoeQAwGCUPAAaj5AHAYJQ84JKiIv/QlVmz9VVU5Pf610aO47IGgEuuXasp\n23+/mVP5gMsaAABui5IHAINR8gBgMEoeAAxGyQOAwSh5ADAYJQ8ABqPks4wTZgBkEydDZRknzJiL\nzxaZwslQAIDbouQBwGCUPAAYjJIHAINR8gBgMEoeAAxGyQOAwSh5ADAYJQ8ABqPkAcBglDwAGIyS\nBwCDUfIAYDBKHgAMRskDgMEcl/z69es1efJkTZkyRV//+td16dIlJRIJhUIhVVdXq7GxUclk0s2s\nAIAUOSr506dPa8uWLTpy5IjeeecdDQ4O6uWXX1YkElEoFFJnZ6caGhoUiUTczgsASIGjki8qKlJh\nYaEuXryoK1eu6OLFixo/frza2toUDoclSeFwWDt27HA1LAAgNQVOnuT3+/X9739fn/nMZzR69GjN\nmzdPoVBI8XhcgUBAkhQIBBSPxz/23NbW1qHvg8GggsGgo+AAYKpYLKZYLObKazm6x+upU6e0aNEi\n/eUvf9E999yjr33ta1qyZIm++93vqq+vb2g5v9+vRCJxYzDu8cp9QA3GZ4tMyfo9Xg8fPqwHH3xQ\n48aNU0FBgb761a9q//79Ki0tVW9vrySpp6dHJSUljkIBANzhqORramp04MABffjhh7IsS3v27FFt\nba0WLVqkaDQqSYpGo2pqanI1LAAgNY4210jShg0bFI1GNWrUKH3uc5/Tiy++qAsXLqi5uVlnzpxR\nZWWltm/frrFjx94YjM01/JfeYHy2yJR0utNxyTsajJKnCAzGZ4tMyfo2eQDA3YGSBwCDUfIAYDBH\nJ0MBuayoyK8LF/pGXhDIA+x4zTJ2zmWeN++xJPHZIjPY8QoAuC1KHgAMRskDgMEoeQAwGCUPAAbj\nEEpkDIcyAt7jEMosy6dDKPPrUEavxmVO5QMOoQQA3BYlDwAGo+QBwGCUPAAYjJIHAINR8gBgMEoe\nAAzGyVB5oeC/x6wDyDeUfF64Iu9ODgLgJTbXAIDBKHkAMBglDwAGo+QBwGCUPAAYjJIHAINR8gBg\nMEoeAAxGyQOAwSh5ADAYJQ8ABqPkAcBglDwAGIySBwCDUfIAYDDHJZ9MJrV06VJNmjRJtbW1Onjw\noBKJhEKhkKqrq9XY2KhkMulmVgBAihyX/GOPPaaFCxfqxIkTOnr0qGpqahSJRBQKhdTZ2amGhgZF\nIhE3swIAUuSzLCvlWwb95z//0fTp0/WPf/zjlsdramq0d+9eBQIB9fb2KhgM6u9///uNwXw+ORjO\nKNduw5ft98CLMRk3W2Pm+5zKB+l0p6Pb/3V1dem+++7T8uXL1dHRoc9//vN6/vnnFY/HFQgEJEmB\nQEDxePxjz21tbR36PhgMKhgMOgoOAKaKxWKKxWKuvJajNfnDhw9r9uzZ2rdvnx544AGtXr1aY8aM\n0aZNm9TX1ze0nN/vVyKRuDEYa/KsyTOu62Pm+5zKB+l0p6Nt8uXl5SovL9cDDzwgSVq6dKmOHDmi\n0tJS9fb2SpJ6enpUUlLiKBQAwB2OSr60tFQVFRXq7OyUJO3Zs0eTJ0/WokWLFI1GJUnRaFRNTU3u\nJQUApMzR5hpJ6ujo0KOPPqrLly9rwoQJ2rZtmwYHB9Xc3KwzZ86osrJS27dv19ixY28MxuYaNtcw\nrutj5vucygfpdKfjknc0GCVPyTOu62Pm+5zKB1nfJg8AuDtQ8gBgMEoeAAxGyQOAwSh5ADAYJQ8A\nBqPkAcBglDwAGIySBwCDUfIAYDBKHgAMRskDgMEoeQAwGCUPAAaj5AHAYJQ8ABiMkgcAg1HyAGAw\nSh4ADEbJA4DBKHkAMBglDwAGo+QBwGCUPAAYjJIHAINR8gBgMEoeAAxGyQOAwSh5ADAYJQ8ABqPk\nAcBglDwAGIySBwCDUfIAYDBKHgAMRskDgMEcl/zg4KCmT5+uRYsWSZISiYRCoZCqq6vV2NioZDLp\nWkgAgDOOS37jxo2qra2Vz+eTJEUiEYVCIXV2dqqhoUGRSMS1kAAAZxyV/NmzZ7Vr1y49+uijsixL\nktTW1qZwOCxJCofD2rFjh3spAQCOFDh50po1a/TMM8+ov79/6LF4PK5AICBJCgQCisfjt31ua2vr\n0PfBYFDBYNBJBAAwViwWUywWc+W1fNb1VXGb3njjDe3evVubN29WLBbTs88+q9dff13FxcXq6+sb\nWs7v9yuRSNw6mM+nFIczzrXNW9l+D7wYk3GzNWa+z6l8kE53prwmv2/fPrW1tWnXrl366KOP1N/f\nr0ceeUSBQEC9vb0qLS1VT0+PSkpKHAUCALgn5TX5m+3du1c//vGP9frrr+vxxx/XuHHj9IMf/ECR\nSETJZPJjO19Zk2dNnnHdHzPf51Q+SKc70z5O/vrRNS0tLfr973+v6upq/fGPf1RLS0u6Lw0ASFNa\na/IpD8aaPGvyjOv6mPk+p/KBp2vyAIDcRckDgMEoeQAwGCUPAAaj5AHAYJQ8ABiMkgcAg1HyAGAw\nSh4ADEbJA4DBKHkAMBglDwAGo+QBwGCUPAAYjJIHAINR8gBgMEoeAAxGyQOAwSh5ADAYJQ8ABivw\nOoBXior8unChz+sYAJBRPiuLt3pP547jbvP5fJK8yOLFuPn0u+bbuLkzp5A56XQnm2sAwGCUPAAY\njJIHAIN5vuP1wIEDeuyxJ3X1qtdJAMA8npf8O++8o46OAl269H9ZHnlPlscDgOzzvOQl6ROfKJcU\n8joGABiHbfIAYDBKHgAMRskDgMEoeQAwGCUPAAaj5AHAYJQ8ABjMUcl3d3dr7ty5mjx5surq6vST\nn/xEkpRIJBQKhVRdXa3GxkYlk0lXwwIAUuOo5AsLC/Xcc8/p2LFjOnDggDZv3qwTJ04oEokoFAqp\ns7NTDQ0NikQibucFAKTAUcmXlpZq2rRpkqRPfepTmjRpks6dO6e2tjaFw2FJUjgc1o4dO9xLCgBI\nWdqXNTh9+rTefvttzZw5U/F4XIFAQJIUCAQUj8c/tnxra+vQ98FgMN3hAcA4sVhMsVjMlddK685Q\n77//vh566CE9+eSTampqUnFxsfr6btxSz+/3K5FI3BjsNnc32bJli1avPqSLF7c4jeFQft09KH9+\n13wblztD5QNP7gw1MDCgJUuW6JFHHlFTU5Oka2vvvb29kqSenh6VlJQ4fXkAgAsclbxlWVq5cqVq\na2u1evXqoccXL16saDQqSYpGo0PlDwDwhqNt8m+99ZZ++ctfaurUqZo+fbokaf369WppaVFzc7O2\nbt2qyspKbd++3dWwAIDUOCr5L33pS7p6h1s57dnDzTgAIFdwxisAGIySBwCDUfIAYDBKHgAMRskD\ngMEoeQAwGCUPAAaj5AHAYJQ8ABiMkgcAg6V9PXkAyJaiIr8uXOgbeUGXjRlTrP7+xMgL5iBKHsBd\n41rBZ//6+Rcu+LI+plvYXAMABqPkAcBglDwAGIySBwCDseMVuKsVyOfL/k7Bu/lok3xDyQN3tSvi\naBMMh801AGAwSh4ADEbJA4DBKHkAMBglDwAGo+QBwGCUPAAYjOPkATjgzUlYSB0lD8ABb07CkviH\nJVVsrgEAg1HyAGAwSh4ADEbJA4DBKHkAMBglDwAGo+QBwGCUPAAYjJK/rZjXAWyKeR3AppjXAWyK\neR3AppjXAWyKeR3AhpjXATLO9ZJvb29XTU2Nqqqq9PTTT7v98lkS8zqATTGvA9gU8zqATTGvA9gU\n8zqATTGvA9gQ8zpAxrla8oODg/rOd76j9vZ2HT9+XL/5zW904sQJN4cAAKTA1ZI/dOiQJk6cqMrK\nShUWFurhhx/Wzp073RwCAJACVy9Qdu7cOVVUVAz9uby8XAcPHrxlmTtfue5FN6PYNNzFjp7yaNxU\n2c3p1YWdro+byfdzuHFTlW7ObL3PN+f0+rMdTiY+d7d/X3sZ79arbrpa8iO9CZblxVXrACB/ubq5\npqysTN3d3UN/7u7uVnl5uZtDAABS4GrJz5gxQydPntTp06d1+fJlvfLKK1q8eLGbQwAAUuDq5pqC\nggJt2rRJ8+bN0+DgoFauXKlJkya5OQQAIAWuHye/YMECvfvuu9q0aZOi0eiwx8t/73vfU1VVlerr\n6/X222+7HcWWkY7r/9WvfqX6+npNnTpVX/ziF3X06NGcy3jdX//6VxUUFOi1117LYrob7OSMxWKa\nPn266urqFAwGsxvwv0bKef78ec2fP1/Tpk1TXV2dfv7zn2c944oVKxQIBDRlypQ7LpML82eknLkw\nfyR776fk/RyykzPlOWRlwJUrV6wJEyZYXV1d1uXLl636+nrr+PHjtyzz5ptvWgsWLLAsy7IOHDhg\nzZw5MxNR0s65b98+K5lMWpZlWbt37856TjsZry83d+5c6ytf+Yr129/+NqsZ7ebs6+uzamtrre7u\nbsuyLOvf//53TuZcu3at1dLSMpTR7/dbAwMDWc355z//2Tpy5IhVV1d325/nwvyxrJFzej1/rhsp\np2V5P4csa+ScTuZQRi5rYOd4+ba2NoXDYUnSzJkzlUwmFY/HMxEnrZyzZ8/WPffcM5Tz7NmzOZdR\nkl544QUtXbpU9913X1bzXWcn569//WstWbJkaGf8vffem5M5P/3pT6u/v1+S1N/fr3HjxqmgILu3\nQ54zZ46Ki4vv+PNcmD/SyDm9nj/XjZRT8n4OSSPndDKHMlLytzte/ty5cyMuk+2/AHZy3mzr1q1a\nuHBhNqINsfte7ty5U9/61rckeXM8r52cJ0+eVCKR0Ny5czVjxgz94he/yHZMWzlXrVqlY8eOafz4\n8aqvr9fGjRuzHXNEuTB/UuXF/LErF+aQHU7mUEZWT+y+Qdb/HDef7Tc2lfH+9Kc/6aWXXtJbb72V\nwUQfZyfj6tWrFYlE5PP5ZFmWJ+cj2Mk5MDCgI0eO6A9/+IMuXryo2bNna9asWaqqqspCwmvs5PzR\nj36kadOmKRaL6dSpUwqFQuro6NCYMWOykNA+r+dPKryaP3blwhyyw8kcykjJ2zle/n+XOXv2rMrK\nyjIR547sHtd/9OhRrVq1Su3t7SP+l89tdjL+7W9/08MPPyzp2k7D3bt3q7CwMKuHr9rJWVFRoXvv\nvVejR4/W6NGj9eUvf1kdHR1ZLXk7Offt26cnnnhCkjRhwgR99rOf1bvvvqsZM2ZkLedIcmH+2OXl\n/LErF+aQHY7mkEv7C24xMDBg3X///VZXV5d16dKlEXe87t+/35MdMnZy/vOf/7QmTJhg7d+/P+v5\n7Ga82Te+8Q3r1VdfzWLCa+zkPHHihNXQ0GBduXLF+uCDD6y6ujrr2LFjOZdzzZo1Vmtrq2VZltXb\n22uVlZVZ7733XlZzWpZldXV12drx6tX8uW64nF7Pn5sNl/NmXs2h64bL6WQOZWRN/k7Hy//sZz+T\nJH3zm9/UwoULtWvXLk2cOFGf/OQntW3btkxESTvnunXr1NfXN7StrrCwUIcOHcqpjLnATs6amhrN\nnz9fU6dO1ahRo7Rq1SrV1tbmXM4f/vCHWr58uerr63X16lVt2LBBfr8/qzmXLVumvXv36vz586qo\nqNBTTz2lgYGBoYy5MH/s5PR6/tjNmStGyulkDvksK0c3PgEA0sadoQDAYJQ8ABiMkgcAg1HyAGAw\nSh4ADEbJA4DB/h/moRx8K+84yAAAAABJRU5ErkJggg==\n", + "text": [ + "" + ] + } + ], + "prompt_number": 261 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "n, bins, patches = pyplot.hist(distance_dict['Noise - Park'])" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "display_data", + "png": "iVBORw0KGgoAAAANSUhEUgAAAXMAAAD9CAYAAABOd5eOAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAEQJJREFUeJzt3VtsVFXDxvFnpE0+IkVaoQPSapFDoPQYGpEYcBosL2DA\nEgyBqEEKDa+J8UMujJEQBi6wmHghkC/hArWeiETlkCiNiXHXCGiNlEMAkZhWStNWStu0QCItrO8C\nqVbKzO7MdPaw+v8lk5TpsNfToevJsGetPT5jjBEA4J52n9cBAADRo8wBwAKUOQBYgDIHAAtQ5gBg\nAcocACwQsswbGhpUXFys6dOnKycnR9u3b5ckBYNBZWRkqLCwUIWFhaqqqopLWABA/3yh1pk3Nzer\nublZBQUFunLlimbMmKH9+/dr7969SklJ0fr16+OZFQBwF0mhvjl27FiNHTtWkjRixAhNmzZNjY2N\nkiT2GgFAAjEu1dXVmYcffth0dXWZYDBoHnnkEZOXl2fKyspMe3t7n8dK4saNGzduEdwi5epvdnV1\nmRkzZph9+/YZY4xpaWkxN2/eNDdv3jQbNmwwZWVld5T5vWzTpk1eR4gK+b1Ffu/cy9mNia47w65m\n6e7u1tKlS/X888+rtLRUkpSeni6fzyefz6c1a9aopqYm3GEAAIMoZJkbY7R69WplZ2dr3bp1vfc3\nNTX1fr1v3z7l5uYOXkIAQFgh3wA9fPiwPvroI+Xl5amwsFCStHXrVu3Zs0fHjx+Xz+fThAkTtGvX\nrriEjZdAIOB1hKiQ31vk9869nD1aIZcmRnxQn4/VLgAwQNF0JztAAcAClDkAWIAyBwALUOYAYAHK\nHAAsQJkDgAUocwCwAGUOABagzAHAApQ5AFiAMgcAC1DmAGAByhwALECZA4AFKHMAsABlDgAWoMwB\nwAKUOQBYgDIHAAtQ5gBgAcocACxAmQOABShzALAAZQ4AFqDMAcAClDkAWIAyBwALUOYAYAHKHAAs\nkOR1ACCeRo5MU1dXe9zHTUlJVWdnW9zHxdDhM8aYmB/U59MgHBaIms/nk+TF7yZzAuFF052cZgEA\nC1DmAGAByhwALECZA4AFQpZ5Q0ODiouLNX36dOXk5Gj79u2SpLa2NpWUlGjKlCmaN2+eOjo64hIW\nANC/kKtZmpub1dzcrIKCAl25ckUzZszQ/v379d5772n06NF67bXXtG3bNrW3t6uiouLvg7KaBQmK\n1SxIZIO2mmXs2LEqKCiQJI0YMULTpk1TY2OjDh48qJUrV0qSVq5cqf3790c0OAAgNlxvGqqvr1dt\nba1mzpyplpYW+f1+SZLf71dLS8sdjw8Gg71fBwIBBQKBqMMCgE0cx5HjODE5lqtNQ1euXNGTTz6p\njRs3qrS0VKmpqWpv/3sXXVpamtra/t7dxmkWJCpOsyCRDeqmoe7ubi1dulQvvPCCSktLJd16Nd7c\n3CxJampqUnp6ekSDAwBiI2SZG2O0evVqZWdna926db33L168WJWVlZKkysrK3pIHAHgj5GmW77//\nXnPmzFFeXt5f/z2V3nzzTT322GNatmyZLly4oKysLO3du1ejRo36+6CcZkGC4jQLElk03cmFtjCk\nUOZIZFxoCwCGOMocACxAmQOABShzALAAZQ4AFqDMAcAClDkAWIAyBwALUOYAYAHKHAAsQJkDgAUo\ncwCwAGUOABagzAHAApQ5AFiAMgcAC1DmAGAByhwALECZA4AFKHMAsABlDgAWoMwBwAKUOQBYgDIH\nAAtQ5gBgAcocACxAmQOABShzALAAZQ4AFqDMAcAClDkAWIAyBwALUOYAYAHKHAAsQJkDgAUocwCw\nQMgyLysrk9/vV25ubu99wWBQGRkZKiwsVGFhoaqqqgY9JAAgtJBlvmrVqjvK2ufzaf369aqtrVVt\nba3mz58/qAEBAOGFLPPZs2crNTX1jvuNMYMWCAAwcEmR/KUdO3bogw8+UFFRkd5++22NGjXqjscE\ng8HerwOBgAKBQKQZAcBKjuPIcZyYHMtnwrzMrq+v16JFi3Tq1ClJ0h9//KExY8ZIkjZu3Kimpibt\n3r2770F9Pl69IyH5fD5JXvxuMicQXjTdOeDVLOnp6fL5fPL5fFqzZo1qamoiGhgAEDsDLvOmpqbe\nr/ft29dnpQsAwBshz5mvWLFC1dXVam1tVWZmpjZv3izHcXT8+HH5fD5NmDBBu3btildWAMBdhD1n\nHtFBOWeOBMU5cySyuJ4zBwAkHsocACxAmQOABShzALAAZQ4AFqDMAcAClDkAWIAyBwALUOYAYAHK\nHAAsQJkDgAUocwCwAGUOABagzAHAApQ5AFiAMgcAC1DmAGAByhwALECZA4AFKHMAsABlDgAWoMwB\nwAKUOQBYgDIHAAtQ5gBgAcocACxAmQOABShzALAAZQ4AFqDMAcACSV4HwNA1cmSaurravY4BWMFn\njDExP6jPp0E4LCzj8/kkxfv3xIsxb43LnEA40XQnp1kAwAKUOQBYgDIHAAtQ5gBggZBlXlZWJr/f\nr9zc3N772traVFJSoilTpmjevHnq6OgY9JAAgNBClvmqVatUVVXV576KigqVlJTo119/1dy5c1VR\nUTGoAQEA4YVdmlhfX69Fixbp1KlTkqSpU6equrpafr9fzc3NCgQC+uWXX/oelKWJcIGliUBf0XTn\ngDcNtbS0yO/3S5L8fr9aWlr6fVwwGOz9OhAIKBAIRBQQAGzlOI4cx4nJsQb8yjw1NVXt7X/v2ktL\nS1NbW1vfg/LKHC7wyhzoK66bhm6fXpGkpqYmpaenRzQwACB2BlzmixcvVmVlpSSpsrJSpaWlMQ8F\nABiYkKdZVqxYoerqarW2tsrv92vLli165plntGzZMl24cEFZWVnau3evRo0a1fegnGaBC5xmAfqK\npju50BY8Q5kDfXGhLQAY4ihzALAAZQ4AFqDMAcAClDkAWIAyBwALUOYAYAHKHAAsQJkDgAUocwCw\nAGUOABYY8IdTAIhE0l/XoomflJRUdXa2hX8grMCFtuCZoXahLS9+VubhvYULbQHAEEeZA4AFKHMA\nsABlDgAWoMwBwAKUOQBYgDIHAAuwaQiwVvw3KklsVvIKm4bgGTYN2TjmrXGZ/5Fh0xAADHGUOQBY\ngDIHAAtQ5gBgAcocACxAmQOABShzALAAm4YSzMiRaerqao/7uGz0AO5tbBpKMN5spJG82OjBpiEb\nx7w1LvM/MmwaAoAhjjIHAAtQ5gBgAcocACwQ8WqWrKwsjRw5UsOGDVNycrJqampimQsAMAARl7nP\n55PjOEpLS4tlHgBABKI6zcLyIwBIDFG9Mn/qqac0bNgwrV27VuXl5X2+HwwGe78OBAIKBAKRDgUA\nVnIcR47jxORYEW8aampq0rhx43Tp0iWVlJRox44dmj179q2DsmkoYmwaGvRRPRjTq3GHzu+SLTzZ\nNDRu3DhJ0pgxY7RkyRLeAAUAD0VU5teuXVNXV5ck6erVq/r666+Vm5sb02AAAPciOmfe0tKiJUuW\nSJJ6enr03HPPad68eTENBgBwjwttJRjOmQ/6qB6M6dW4Q+d3yRZcaAsAhjjKHAAsQJkDgAUocwCw\nAGUOABagzAHAApQ5AFiAMgcAC1DmAGAByhwALECZA4AFKHMAsEDEnzQE2yT9deEr4N4zcmSaurra\n4z5uSkqqOjvb4j5uf7hqYoLx8qqJQ+Oqfjy/8Rh3aFyBU4r1z8pVEwFgiKPMAcAClDkAWIAyBwAL\nUOYAYAHKHAAsQJkDgAXYNBSCVxsRAGCg2DQUgjcbEdjUYt+YXo1rx0YaVyOyaYjTLABgA8ocACxA\nmQOABShzALAAZQ4AFqDMAcAClDkAWOCe2DTU3d2t//73f9XRcdXrKADC4lOrvHBPbBq6fPmyxo59\nWD09/xezY7rzoobSRo+h8bPy/No5LpuG7olX5pKUlPQ/6ulZGedRX4zzeAAQGc6ZA4AFKHMAsABl\n3i/H6wBRcrwOECXH6wBRcrwOECXH6wBRcLwO4JmIy7yqqkpTp07V5MmTtW3btlhmSgCO1wGi5Hgd\nIEqO1wGi5HgdIEqO1wGi4HgdwDMRlfmNGzf08ssvq6qqSmfOnNGePXt09uzZWGcDALgUUZnX1NRo\n0qRJysrKUnJyspYvX64DBw7EOhsAwKWIliY2NjYqMzOz988ZGRn68ccf+zxmcDYNxHMjwmYPxrwt\nFmNuDv+QQRk3VmNGkj/aMWOpv/yJ9PyGE+3z7+XPOpi/O/2MmiAbpCIq83DhbfiUIQC4l0R0mmX8\n+PFqaGjo/XNDQ4MyMjJiFgoAMDARlXlRUZHOnz+v+vp6Xb9+XZ9++qkWL14c62wAAJciOs2SlJSk\nnTt36j//+Y9u3Lih1atXa9q0abHOBgBwKeJ15gsWLNC5c+e0c+dOVVZWhlxv/sorr2jy5MnKz89X\nbW1txGEHQ7j18h9//LHy8/OVl5enJ554QidPnvQgZf/crvX/6aeflJSUpC+++CKO6cJzk99xHBUW\nFionJ0eBQCC+AcMIl7+1tVXz589XQUGBcnJy9P7778c/5F2UlZXJ7/crNzf3ro9J5HkbLn8iz1vJ\n3fMvDXDumij09PSYiRMnmrq6OnP9+nWTn59vzpw50+cxX375pVmwYIExxpgffvjBzJw5M5ohY8pN\n/iNHjpiOjg5jjDGHDh1KmPxust9+XHFxsXn66afNZ5995kHS/rnJ397ebrKzs01DQ4MxxphLly55\nEbVfbvJv2rTJvP7668aYW9nT0tJMd3e3F3Hv8N1335ljx46ZnJycfr+fyPPWmPD5E3Xe3hYuvzED\nn7tRbed3s9784MGDWrny1tUOZ86cqY6ODrW0tEQzbMy4yT9r1iw98MADkm7lv3jxohdR7+B2rf+O\nHTv07LPPasyYMR6kvDs3+T/55BMtXbq098310aNHexG1X27yjxs3Tp2dnZKkzs5OPfjgg0pKSowL\nlc6ePVupqal3/X4iz1spfP5Enbe3hcsvDXzuRlXm/a03b2xsDPuYRHli3eT/p927d2vhwoXxiBaW\n2+f+wIEDeumllyQlznpYyV3+8+fPq62tTcXFxSoqKtKHH34Y75h35SZ/eXm5Tp8+rYceekj5+fl6\n55134h0zYok8bwcqkeatW5HM3aheJrgtB/OvdeeJUioDyfHtt9/q3Xff1eHDhwcxkXtusq9bt04V\nFRW9F7z/97+Dl9zk7+7u1rFjx/TNN9/o2rVrmjVrlh5//HFNnjw5DglDc5N/69atKigokOM4+u23\n31RSUqITJ04oJSUlDgmjl6jzdiASbd66FcncjarM3aw3//djLl68qPHjx0czbMy4XS9/8uRJlZeX\nq6qqKux/jeLFTfaff/5Zy5cvl3TrzbhDhw4pOTk5IZaRusmfmZmp0aNHa/jw4Ro+fLjmzJmjEydO\nJESZu8l/5MgRbdiwQZI0ceJETZgwQefOnVNRUVFcs0YikeetW4k4b92KaO5GcxK/u7vbPProo6au\nrs78+eefYd8APXr0aEK9EeEm/++//24mTpxojh496lHK/rnJ/k8vvvii+fzzz+OYMDQ3+c+ePWvm\nzp1renp6zNWrV01OTo45ffq0R4n7cpP/1VdfNcFg0BhjTHNzsxk/fry5fPmyF3H7VVdX5+oN0ESb\nt7eFyp+o8/afQuX/J7dzN6pX5ndbb75r1y5J0tq1a7Vw4UJ99dVXmjRpku6//36999570QwZU27y\nb9myRe3t7b3nrpKTk1VTU+NlbEnusicyN/mnTp2q+fPnKy8vT/fdd5/Ky8uVnZ3tcfJb3OR/4403\ntGrVKuXn5+vmzZt66623lJaW5nHyW1asWKHq6mq1trYqMzNTmzdvVnd3t6TEn7dS+PyJOm9vC5c/\nEoPygc4AgPjik4YAwAKUOQBYgDIHAAtQ5gBgAcocACxAmQOABf4f8hrKC+bHi6gAAAAASUVORK5C\nYII=\n", + "text": [ + "" + ] + } + ], + "prompt_number": 262 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "So the correlation between graffitis and noise complaints.. \n", + "not really.. \n", + "yet..\n", + "\n", + "# Difficulties\n", + "- too many variables(location, time, types, descriptors, departments...)\n", + "- not easy to find correlation of locations(with 2 variables)\n", + "- graffiti takes time to be found but noise complaints are much more in time" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 262 + } + ], + "metadata": {} + } + ] +} \ No newline at end of file diff --git a/FinalProject/Noise and Graffiti test.ipynb b/FinalProject/Noise and Graffiti test.ipynb new file mode 100644 index 0000000..8e4aa38 --- /dev/null +++ b/FinalProject/Noise and Graffiti test.ipynb @@ -0,0 +1,1509 @@ +{ + "metadata": { + "name": "" + }, + "nbformat": 3, + "nbformat_minor": 0, + "worksheets": [ + { + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Exploration of Graffitis and Noises in NYC\n", + "Data source: " + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "from datetime import datetime\n", + "from geopy.point import Point\n", + "from operator import itemgetter" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 108 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "f = open('data/311_Service_Requests_from_2010_to_Present.csv')\n", + "data = f.readlines()\n", + "f.close()" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 109 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "len(data)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 110, + "text": [ + "422998" + ] + } + ], + "prompt_number": 110 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "header_row = data[0]\n", + "print header_row" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "Unique Key,Created Date,Closed Date,Agency,Agency Name,Complaint Type,Descriptor,Location Type,Incident Zip,Incident Address,Street Name,Cross Street 1,Cross Street 2,Intersection Street 1,Intersection Street 2,Address Type,City,Landmark,Facility Type,Status,Due Date,Resolution Action Updated Date,Community Board,Borough,X Coordinate (State Plane),Y Coordinate (State Plane),Park Facility Name,Park Borough,School Name,School Number,School Region,School Code,School Phone Number,School Address,School City,School State,School Zip,School Not Found,School or Citywide Complaint,Vehicle Type,Taxi Company Borough,Taxi Pick Up Location,Bridge Highway Name,Bridge Highway Direction,Road Ramp,Bridge Highway Segment,Garage Lot Name,Ferry Direction,Ferry Terminal Name,Latitude,Longitude,Location\n", + "\n" + ] + } + ], + "prompt_number": 111 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "data = list(set(data)) # this is a hack!\n", + "print len(data)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "422998\n" + ] + } + ], + "prompt_number": 112 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "complaint_type = set()\n", + "descriptor = set()\n", + "\n", + "for record in data:\n", + " complaint_type.add(record.split(',')[5])\n", + " descriptor.add(record.split(',')[6])" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 162 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "print complaint_type\n", + "len(complaint_type)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "set(['Noise', 'Complaint Type', 'Noise - House of Worship', 'Noise - Helicopter', 'Noise - Park', 'Noise - Vehicle', 'Collection Truck Noise', 'Noise - Street/Sidewalk', 'Noise - Commercial', 'Graffiti', 'Noise Survey'])\n" + ] + }, + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 166, + "text": [ + "11" + ] + } + ], + "prompt_number": 166 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "print descriptor\n", + "len(descriptor)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "set(['Noise: Jack Hammering (NC2)', 'News Gathering', 'Passing By', 'Other', 'Noise: Vehicle (NR2)', 'Noise: Other Noise Sources (Use Comments) (NZZ)', 'Loud Television', 'NYPD', 'People Created Noise', 'Loud Music/Party', 'Noise: Alarms (NR3)', 'Loud Talking', '\"Noise', 'Noise: Manufacturing Noise (NK1)', 'Banging/Pounding', 'Noise: Loud Music/Daytime (Mark Date And Time) (NN1)', 'Flying Too Low', 'Noise: air condition/ventilation equipment (NV1)', 'Engine Idling', '\"Noise: Air Condition/Ventilation Equip', 'Noise: lawn care equipment (NCL)', 'Noise: Private Carting Noise (NQ1)', 'Descriptor', 'Hovering', 'Noise: Construction Before/After Hours (NM1)', 'Car/Truck Music', '\"Noise: Boat(Engine', 'Police Report Requested', 'Noise: Loud Music/Nighttime(Mark Date And Time) (NP1)', '21 Collection Truck Noise', 'Horn Honking Sign Requested (NR9)', 'Car/Truck Horn', 'Graffiti', 'Noise: Construction Equipment (NC1)', 'Police Report Not Requested'])\n" + ] + }, + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 167, + "text": [ + "35" + ] + } + ], + "prompt_number": 167 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "graffitis = []\n", + "for record in data:\n", + " # if record.split(',')[5] == 'Graffiti':\n", + " if 'Graffiti' in record.split(',')[5]:\n", + " graffitis.append(record)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 113 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "print len(graffitis)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "62306\n" + ] + } + ], + "prompt_number": 114 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "noises = []\n", + "for record in data:\n", + " if 'Noise' in record.split(',')[5]:\n", + " noises.append(record)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 115 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "print len(noises)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "360691\n" + ] + } + ], + "prompt_number": 116 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "formatted_graffitis = []\n", + "for record in graffitis:\n", + " array = record.split(',')\n", + " formatted_graffitis.append([array[0], \n", + " datetime.strptime(array[1], \"%m/%d/%Y %I:%M:%S %p\"), \n", + " Point((array[49], array[50]))])" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 193 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "formatted_graffitis.sort(key=itemgetter(1), reverse=True)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 118 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "formatted_graffitis[0:10]" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 119, + "text": [ + "[['26453770',\n", + " datetime.datetime(2013, 10, 8, 19, 4, 11),\n", + " Point(40.63851335831146, -74.1329555078984, 0.0)],\n", + " ['26458879',\n", + " datetime.datetime(2013, 10, 8, 18, 55, 6),\n", + " Point(40.71984267342615, -73.76231065988071, 0.0)],\n", + " ['26458878',\n", + " datetime.datetime(2013, 10, 8, 18, 52, 23),\n", + " Point(40.70381678105476, -73.76674269279394, 0.0)],\n", + " ['26458053',\n", + " datetime.datetime(2013, 10, 8, 18, 50, 53),\n", + " Point(0.0, 0.0, 0.0)],\n", + " ['26456289',\n", + " datetime.datetime(2013, 10, 8, 18, 50, 53),\n", + " Point(40.67848929371025, -73.97966256599678, 0.0)],\n", + " ['26455374',\n", + " datetime.datetime(2013, 10, 8, 18, 50, 49),\n", + " Point(40.67948361696117, -73.98421941578526, 0.0)],\n", + " ['26457130',\n", + " datetime.datetime(2013, 10, 8, 18, 50, 47),\n", + " Point(40.67964590787439, -73.98701352465825, 0.0)],\n", + " ['26458023',\n", + " datetime.datetime(2013, 10, 8, 18, 50, 45),\n", + " Point(40.676545831572696, -73.97876546789001, 0.0)],\n", + " ['26459824',\n", + " datetime.datetime(2013, 10, 8, 18, 50, 44),\n", + " Point(40.66263760529504, -73.90308040831593, 0.0)],\n", + " ['26460567',\n", + " datetime.datetime(2013, 10, 8, 18, 50, 43),\n", + " Point(40.67704624548306, -73.98412986225333, 0.0)]]" + ] + } + ], + "prompt_number": 119 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "graffitis_2013 = []\n", + "for record in formatted_graffitis:\n", + " if record[1].year == 2013:\n", + " graffitis_2013.append(record)\n", + " " + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 120 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [], + "language": "python", + "metadata": {}, + "outputs": [] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "len(graffitis_2013)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 121, + "text": [ + "9970" + ] + } + ], + "prompt_number": 121 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "graffitis_2013_no_coordinates = []\n", + "for record in graffitis_2013:\n", + " if record[2].latitude == 0 and record[2].longitude == 0:\n", + " graffitis_2013_no_coordinates.append(record)\n", + "len(graffitis_2013_no_coordinates)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 122, + "text": [ + "529" + ] + } + ], + "prompt_number": 122 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "for record in graffitis_2013_no_coordinates:\n", + " for r in graffitis:\n", + " if record[0] == r.split(',')[0]:\n", + " addr = str(r.split(',')[9]) + \", \" + str(r.split(',')[23])\n", + " try:\n", + " place, (lat, lng) = g.geocode(addr)\n", + " record[2] = Point((lat, lng))\n", + " except ValueError:\n", + " print str(record[0]) + \": Didn't find exactly one placemark!\"\n", + " \n", + " break" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "26451711: Didn't find exactly one placemark!\n", + "26402668: Didn't find exactly one placemark!" + ] + }, + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "\n", + "26375680: Didn't find exactly one placemark!" + ] + }, + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "\n", + "26262970: Didn't find exactly one placemark!" + ] + }, + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "\n", + "26079649: Didn't find exactly one placemark!" + ] + }, + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "\n", + "26076923: Didn't find exactly one placemark!" + ] + }, + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "\n", + "26080611: Didn't find exactly one placemark!" + ] + }, + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "\n", + "26075056: Didn't find exactly one placemark!" + ] + }, + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "\n", + "26019563: Didn't find exactly one placemark!" + ] + }, + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "\n", + "26015168: Didn't find exactly one placemark!" + ] + }, + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "\n", + "26023868: Didn't find exactly one placemark!" + ] + }, + { + "ename": "GTooManyQueriesError", + "evalue": "The given key has gone over the requests limit in the 24 hour period or has submitted too many requests in too short a period of time.", + "output_type": "pyerr", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m\n\u001b[0;31mGTooManyQueriesError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0maddr\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mstr\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mr\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msplit\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m','\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m9\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0;34m\", \"\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0mstr\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mr\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msplit\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m','\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m23\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 6\u001b[0;31m \u001b[0mplace\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m(\u001b[0m\u001b[0mlat\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mlng\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mg\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mgeocode\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0maddr\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 7\u001b[0m \u001b[0mrecord\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m2\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mPoint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mlat\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mlng\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 8\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mValueError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m/Library/Python/2.7/site-packages/geopy-0.95.1-py2.7.egg/geopy/geocoders/googlev3.pyc\u001b[0m in \u001b[0;36mgeocode\u001b[0;34m(self, string, bounds, region, language, sensor, exactly_one)\u001b[0m\n\u001b[1;32m 133\u001b[0m \u001b[0murl\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_signed_url\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mparams\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 134\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 135\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mgeocode_url\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0murl\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mexactly_one\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 136\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 137\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mreverse\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mpoint\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mlanguage\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mNone\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0msensor\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mFalse\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mexactly_one\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mFalse\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m/Library/Python/2.7/site-packages/geopy-0.95.1-py2.7.egg/geopy/geocoders/googlev3.pyc\u001b[0m in \u001b[0;36mgeocode_url\u001b[0;34m(self, url, exactly_one)\u001b[0m\n\u001b[1;32m 89\u001b[0m \u001b[0mpage\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0murlopen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0murl\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 90\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 91\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mparse_json\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mpage\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mexactly_one\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 92\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 93\u001b[0m def geocode(self, string, bounds=None, region=None,\n", + "\u001b[0;32m/Library/Python/2.7/site-packages/geopy-0.95.1-py2.7.egg/geopy/geocoders/googlev3.pyc\u001b[0m in \u001b[0;36mparse_json\u001b[0;34m(self, page, exactly_one)\u001b[0m\n\u001b[1;32m 173\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 174\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0mplaces\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 175\u001b[0;31m \u001b[0mcheck_status\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdoc\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'status'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 176\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mNone\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 177\u001b[0m \u001b[0;32melif\u001b[0m \u001b[0mexactly_one\u001b[0m \u001b[0;32mand\u001b[0m \u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mplaces\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m!=\u001b[0m \u001b[0;36m1\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m/Library/Python/2.7/site-packages/geopy-0.95.1-py2.7.egg/geopy/geocoders/googlev3.pyc\u001b[0m in \u001b[0;36mcheck_status\u001b[0;34m(status)\u001b[0m\n\u001b[1;32m 200\u001b[0m \u001b[0;32melif\u001b[0m \u001b[0mstatus\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0;34m'OVER_QUERY_LIMIT'\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 201\u001b[0m raise GTooManyQueriesError(\n\u001b[0;32m--> 202\u001b[0;31m \u001b[0;34m'The given key has gone over the requests limit in the 24'\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 203\u001b[0m \u001b[0;34m' hour period or has submitted too many requests in too'\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 204\u001b[0m ' short a period of time.')\n", + "\u001b[0;31mGTooManyQueriesError\u001b[0m: The given key has gone over the requests limit in the 24 hour period or has submitted too many requests in too short a period of time." + ] + }, + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "\n" + ] + } + ], + "prompt_number": 192 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "party = []\n", + "for record in noises:\n", + " if record.split(',')[6] == \"Loud Music/Party\":\n", + " array = record.split(',')\n", + " party.append([array[0], datetime.strptime(array[1], \"%m/%d/%Y %I:%M:%S %p\"), Point((array[49], array[50])), array[5], array[6]])" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 168 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "len(party)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 169, + "text": [ + "114788" + ] + } + ], + "prompt_number": 169 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "party_2013 = []\n", + "for record in party:\n", + " if record[1].year == 2013 and record[2].latitude != 0:\n", + " party_2013.append(record)\n", + "len(party_2013)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 170, + "text": [ + "30750" + ] + } + ], + "prompt_number": 170 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "party_2013.sort(key=itemgetter(1), reverse=True)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 172 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [], + "language": "python", + "metadata": {}, + "outputs": [] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "party_2013[0:10]" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 173, + "text": [ + "[['26459248',\n", + " datetime.datetime(2013, 10, 9, 2, 13, 41),\n", + " Point(40.70963674601442, -73.83002487902884, 0.0),\n", + " 'Noise - Commercial',\n", + " 'Loud Music/Party'],\n", + " ['26456792',\n", + " datetime.datetime(2013, 10, 9, 2, 1, 7),\n", + " Point(40.72349367369547, -73.98825325266078, 0.0),\n", + " 'Noise - Commercial',\n", + " 'Loud Music/Party'],\n", + " ['26458429',\n", + " datetime.datetime(2013, 10, 9, 1, 55, 14),\n", + " Point(40.71740349992278, -73.95605472789865, 0.0),\n", + " 'Noise - Commercial',\n", + " 'Loud Music/Party'],\n", + " ['26455695',\n", + " datetime.datetime(2013, 10, 9, 1, 54, 20),\n", + " Point(40.72349367369547, -73.98825325266078, 0.0),\n", + " 'Noise - Commercial',\n", + " 'Loud Music/Party'],\n", + " ['26456528',\n", + " datetime.datetime(2013, 10, 9, 1, 48, 45),\n", + " Point(40.778411831935564, -73.97806500462325, 0.0),\n", + " 'Noise - Commercial',\n", + " 'Loud Music/Party'],\n", + " ['26456832',\n", + " datetime.datetime(2013, 10, 9, 1, 43, 17),\n", + " Point(40.72192109565006, -73.99003931078362, 0.0),\n", + " 'Noise - Commercial',\n", + " 'Loud Music/Party'],\n", + " ['26454161',\n", + " datetime.datetime(2013, 10, 9, 1, 40, 14),\n", + " Point(40.72199557880803, -73.99640318064876, 0.0),\n", + " 'Noise - Commercial',\n", + " 'Loud Music/Party'],\n", + " ['26459344',\n", + " datetime.datetime(2013, 10, 9, 1, 23, 56),\n", + " Point(40.86954933988228, -73.9163483681302, 0.0),\n", + " 'Noise - Commercial',\n", + " 'Loud Music/Party'],\n", + " ['26458473',\n", + " datetime.datetime(2013, 10, 9, 1, 23, 33),\n", + " Point(40.639529600748716, -73.95128855589117, 0.0),\n", + " 'Noise - Commercial',\n", + " 'Loud Music/Party'],\n", + " ['26459537',\n", + " datetime.datetime(2013, 10, 9, 1, 17, 58),\n", + " Point(40.720750766530145, -73.8092926177062, 0.0),\n", + " 'Noise - Commercial',\n", + " 'Loud Music/Party']]" + ] + } + ], + "prompt_number": 173 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "party_201309 = []\n", + "for record in party_2013:\n", + " if record[1].month == 9:\n", + " party_201309.append(record)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 176 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "formatted_noises = []\n", + "for record in noises:\n", + " array = record.split(',')\n", + " formatted_noises.append([array[0], datetime.strptime(array[1], \"%m/%d/%Y %I:%M:%S %p\"), Point((array[49], array[50]))])" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 206 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "len(formatted_noises)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 128, + "text": [ + "360691" + ] + } + ], + "prompt_number": 128 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "formatted_noises.sort(key=itemgetter(1), reverse=True)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 129 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "formatted_noises[0:10]" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 131, + "text": [ + "[['26458610',\n", + " datetime.datetime(2013, 10, 9, 2, 42, 19),\n", + " Point(40.862044580314056, -73.91913792829352, 0.0)],\n", + " ['26456829',\n", + " datetime.datetime(2013, 10, 9, 2, 26),\n", + " Point(40.8002973121431, -73.95550878756912, 0.0)],\n", + " ['26460427',\n", + " datetime.datetime(2013, 10, 9, 2, 23, 40),\n", + " Point(40.8002973121431, -73.95550878756912, 0.0)],\n", + " ['26459527',\n", + " datetime.datetime(2013, 10, 9, 2, 21, 55),\n", + " Point(40.833777083027925, -73.9277584466144, 0.0)],\n", + " ['26459248',\n", + " datetime.datetime(2013, 10, 9, 2, 13, 41),\n", + " Point(40.70963674601442, -73.83002487902884, 0.0)],\n", + " ['26456792',\n", + " datetime.datetime(2013, 10, 9, 2, 1, 7),\n", + " Point(40.72349367369547, -73.98825325266078, 0.0)],\n", + " ['26458429',\n", + " datetime.datetime(2013, 10, 9, 1, 55, 14),\n", + " Point(40.71740349992278, -73.95605472789865, 0.0)],\n", + " ['26455695',\n", + " datetime.datetime(2013, 10, 9, 1, 54, 20),\n", + " Point(40.72349367369547, -73.98825325266078, 0.0)],\n", + " ['26456528',\n", + " datetime.datetime(2013, 10, 9, 1, 48, 45),\n", + " Point(40.778411831935564, -73.97806500462325, 0.0)],\n", + " ['26456832',\n", + " datetime.datetime(2013, 10, 9, 1, 43, 17),\n", + " Point(40.72192109565006, -73.99003931078362, 0.0)]]" + ] + } + ], + "prompt_number": 131 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "noises_2013 = []\n", + "for record in formatted_noises:\n", + " if record[1].year == 2013:\n", + " noises_2013.append(record)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 132 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "len(noises_2013)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 133, + "text": [ + "83908" + ] + } + ], + "prompt_number": 133 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "noises_2013_no_coordinates = []\n", + "for record in noises_2013:\n", + " if record[2].latitude == 0 and record[2].longitude == 0:\n", + " noises_2013_no_coordinates.append(record)\n", + "len(noises_2013_no_coordinates)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 134, + "text": [ + "2320" + ] + } + ], + "prompt_number": 134 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "graffitis_201309 = []\n", + "for record in graffitis_2013:\n", + " if record[2].latitude != 0 and record[2].longitude != 0 and record[1].month == 9:\n", + " graffitis_201309.append(record)\n", + "len(graffitis_201309)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 138, + "text": [ + "537" + ] + } + ], + "prompt_number": 138 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "new_graffitis_2013 = []\n", + "for record in graffitis_2013:\n", + " if record[2].latitude != 0 and record[2].longitude != 0:\n", + " new_graffitis_2013.append(record)\n", + "len(new_graffitis_2013)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 154, + "text": [ + "9456" + ] + } + ], + "prompt_number": 154 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "noises_2013 = []\n", + "for record in noises_2013:\n", + " if record[2].latitude != 0 and record[2].longitude != 0 and record[1].month == 9:\n", + " noises_201309.append(record)\n", + "len(noises_201309)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 151, + "text": [ + "10723" + ] + } + ], + "prompt_number": 151 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "graffitis_201309[-10:]" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 145, + "text": [ + "[['26261373',\n", + " datetime.datetime(2013, 9, 2, 18, 8, 20),\n", + " Point(40.822883897735906, -73.8185204875236, 0.0)],\n", + " ['26260554',\n", + " datetime.datetime(2013, 9, 2, 17, 14, 20),\n", + " Point(40.66147320512542, -73.99209561860235, 0.0)],\n", + " ['26264626',\n", + " datetime.datetime(2013, 9, 2, 15, 10, 22),\n", + " Point(40.660377944238604, -73.99083063560273, 0.0)],\n", + " ['26261142',\n", + " datetime.datetime(2013, 9, 2, 10, 30, 38),\n", + " Point(40.72343915706398, -73.99287114443774, 0.0)],\n", + " ['26261551',\n", + " datetime.datetime(2013, 9, 2, 8, 8, 45),\n", + " Point(40.80589207215749, -73.94511277700752, 0.0)],\n", + " ['26261548',\n", + " datetime.datetime(2013, 9, 1, 21, 25, 50),\n", + " Point(40.846128162504165, -73.78605773796176, 0.0)],\n", + " ['26263728',\n", + " datetime.datetime(2013, 9, 1, 19, 20, 7),\n", + " Point(40.77751691785164, -73.95092042838608, 0.0)],\n", + " ['26260552',\n", + " datetime.datetime(2013, 9, 1, 17, 18, 48),\n", + " Point(40.72282751807597, -73.95022834316555, 0.0)],\n", + " ['26261326',\n", + " datetime.datetime(2013, 9, 1, 13, 58, 3),\n", + " Point(40.72003860013966, -73.99775611239289, 0.0)],\n", + " ['26261325',\n", + " datetime.datetime(2013, 9, 1, 13, 56, 47),\n", + " Point(40.720612239828505, -73.99708869311088, 0.0)]]" + ] + } + ], + "prompt_number": 145 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "import csv\n", + "c = csv.writer(open(\"graffiti_party_2013.csv\", \"wb\"))\n", + "c.writerow([\"id\", \"Latitude\", \"Longitude\", \"Category\"])\n", + "# c.writerows(graffitis_201309)\n", + "for row in new_graffitis_2013:\n", + " c.writerow([row[0], row[2].latitude, row[2].longitude, \"graffiti\"])\n", + "for row in party_2013:\n", + " c.writerow([row[0], row[2].latitude, row[2].longitude, \"noise\"])" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 181 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "d = csv.writer(open(\"graffiti_party_201309.csv\", \"wb\"))\n", + "d.writerow([\"date\", \"Latitude\", \"Longitude\", \"Category\"])\n", + "# c.writerows(graffitis_201309)\n", + "for row in graffitis_201309:\n", + " d.writerow([datetime.strftime(row[1], \"%d\"), row[2].latitude, row[2].longitude, \"graffiti\"])\n", + "for row in party_201309:\n", + " d.writerow([datetime.strftime(row[1], \"%d\"), row[2].latitude, row[2].longitude, \"noise\"])" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 191 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "len(graffitis_201309)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 183, + "text": [ + "537" + ] + } + ], + "prompt_number": 183 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "complaint_type = set()\n", + "descriptor = set()\n", + "\n", + "# Get Complaint Type and Descriptor for noise\n", + "for record in noises:\n", + " complaint_type.add(record.split(',')[5])\n", + " descriptor.add(record.split(',')[6])\n", + "\n", + "# Get id, datetime, point(lat, lng), complaint_type, descriptor\n", + "formatted_noises = []\n", + "for record in noises:\n", + " array = record.split(',')\n", + " formatted_noises.append([array[0], \n", + " datetime.strptime(array[1], \"%m/%d/%Y %I:%M:%S %p\"), \n", + " Point((array[49], array[50])), \n", + " array[5], \n", + " array[6]])\n", + "\n", + "# Noises in 2012 w/ coordinates\n", + "formatted_noises_2012 = []\n", + "for record in formatted_noises:\n", + " if record[1].year == 2013 and record[2].latitude != 0:\n", + " formatted_noises_2012.append(record)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 207 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "formatted_noises_2012_dict = {}\n", + "\n", + "for c in complaint_type:\n", + "\tl = []\n", + "\tfor record in formatted_noises_2012:\n", + "\t\tif record[3] == c:\n", + "\t\t\tl.append(record)\n", + "\tformatted_noises_2012_dict[c] = l" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 208 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "len(formatted_noises_2012_dict)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 209, + "text": [ + "9" + ] + } + ], + "prompt_number": 209 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "formatted_noises_2012_dict.keys()" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 212, + "text": [ + "['Noise',\n", + " 'Noise - House of Worship',\n", + " 'Noise - Helicopter',\n", + " 'Noise - Vehicle',\n", + " 'Collection Truck Noise',\n", + " 'Noise - Street/Sidewalk',\n", + " 'Noise - Commercial',\n", + " 'Noise - Park',\n", + " 'Noise Survey']" + ] + } + ], + "prompt_number": 212 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "for key, value in formatted_noises_2012_dict.iteritems():\n", + " print key + \": \" + str(len(value))\n", + "\n", + "# len(formatted_noises_2012_dict['Noise'])" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "Noise: 20158\n", + "Noise - House of Worship: 812\n", + "Noise - Helicopter: 564\n", + "Noise - Vehicle: 10732\n", + "Collection Truck Noise: 91\n", + "Noise - Street/Sidewalk: 20559\n", + "Noise - Commercial: 19286\n", + "Noise - Park: 2609\n", + "Noise Survey: 0\n" + ] + } + ], + "prompt_number": 221 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# test" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "[(o.split(',')[0], datetime.strptime(o.split(',')[1], \"%m/%d/%Y %I:%M:%S %p\"), o.split(',')[49], o.split(',')[50]) for o in graffitis][1:10]" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 15, + "text": [ + "[('23767486',\n", + " datetime.datetime(2012, 8, 8, 0, 0),\n", + " '40.874042600914045',\n", + " '-73.8692782321943'),\n", + " ('21846611',\n", + " datetime.datetime(2011, 11, 9, 0, 0),\n", + " '40.63918573072475',\n", + " '-74.00502641548135'),\n", + " ('26080612',\n", + " datetime.datetime(2013, 8, 6, 13, 36, 39),\n", + " '40.864555960477',\n", + " '-73.8637002716107'),\n", + " ('22271469',\n", + " datetime.datetime(2011, 12, 6, 0, 0),\n", + " '40.674429952456',\n", + " '-73.9523878472972'),\n", + " ('26416174', datetime.datetime(2013, 10, 1, 18, 50, 34), '', ''),\n", + " ('16553331',\n", + " datetime.datetime(2010, 4, 29, 0, 0),\n", + " '40.7459426650334',\n", + " '-73.91530540532051'),\n", + " ('24281953',\n", + " datetime.datetime(2012, 10, 29, 0, 0),\n", + " '40.71821605993711',\n", + " '-73.9968976035803'),\n", + " ('16405952',\n", + " datetime.datetime(2010, 4, 7, 0, 0),\n", + " '40.74483829325034',\n", + " '-73.88285935447996'),\n", + " ('22445415',\n", + " datetime.datetime(2012, 1, 3, 0, 0),\n", + " '40.66490467170184',\n", + " '-73.92928223757917')]" + ] + } + ], + "prompt_number": 15 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# s = cbook.Sorter()\n", + "# s(graffitis)\n", + "# [(o.split(',')[0], datetime.strptime(o.split(',')[1], \"%m/%d/%Y %I:%M:%S %p\"), o.split(',')[49], o.split(',')[50]) for o in graffitis][1:10]\n", + "from operator import itemgetter\n", + "\n", + "graffitis.sort(key=itemgetter(1), reverse=True)\n", + "[(o.split(',')[0], datetime.strptime(o.split(',')[1], \"%m/%d/%Y %I:%M:%S %p\"), o.split(',')[49], o.split(',')[50]) for o in graffitis][1:10]" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 16, + "text": [ + "[('19291181',\n", + " datetime.datetime(2010, 12, 7, 0, 0),\n", + " '40.84446560992583',\n", + " '-73.93828970876989'),\n", + " ('19668831',\n", + " datetime.datetime(2011, 1, 24, 0, 0),\n", + " '40.83743585179984',\n", + " '-73.84857019616315'),\n", + " ('19963169', datetime.datetime(2011, 3, 4, 0, 0), '', ''),\n", + " ('19251876',\n", + " datetime.datetime(2010, 12, 2, 0, 0),\n", + " '40.834816070158595',\n", + " '-73.93991762386334'),\n", + " ('19762490',\n", + " datetime.datetime(2011, 2, 4, 0, 0),\n", + " '40.85989672443748',\n", + " '-73.90295201210064'),\n", + " ('19678508',\n", + " datetime.datetime(2011, 1, 25, 0, 0),\n", + " '40.641780393781254',\n", + " '-73.90355751343766'),\n", + " ('19913451',\n", + " datetime.datetime(2011, 2, 25, 0, 0),\n", + " '40.69244170823927',\n", + " '-73.92721922201945'),\n", + " ('19347447',\n", + " datetime.datetime(2010, 12, 14, 0, 0),\n", + " '40.6899796310539',\n", + " '-73.93645664784128'),\n", + " ('19745412',\n", + " datetime.datetime(2011, 2, 2, 0, 0),\n", + " '40.67206321782571',\n", + " '-73.9391738191903')]" + ] + } + ], + "prompt_number": 16 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "new_graffitis = []\n", + "for record in graffitis:\n", + " new_graffitis.append((record.split(',')[0], datetime.strptime(o.split(',')[1], \"%m/%d/%Y %I:%M:%S %p\"), o.split(',')[49], o.split(',')[50]))\n", + " \n", + "new_graffitis[1:10]" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 17, + "text": [ + "[('19291181',\n", + " datetime.datetime(2011, 5, 4, 0, 0),\n", + " '40.838536015095094',\n", + " '-73.94159475699887'),\n", + " ('19668831',\n", + " datetime.datetime(2011, 5, 4, 0, 0),\n", + " '40.838536015095094',\n", + " '-73.94159475699887'),\n", + " ('19963169',\n", + " datetime.datetime(2011, 5, 4, 0, 0),\n", + " '40.838536015095094',\n", + " '-73.94159475699887'),\n", + " ('19251876',\n", + " datetime.datetime(2011, 5, 4, 0, 0),\n", + " '40.838536015095094',\n", + " '-73.94159475699887'),\n", + " ('19762490',\n", + " datetime.datetime(2011, 5, 4, 0, 0),\n", + " '40.838536015095094',\n", + " '-73.94159475699887'),\n", + " ('19678508',\n", + " datetime.datetime(2011, 5, 4, 0, 0),\n", + " '40.838536015095094',\n", + " '-73.94159475699887'),\n", + " ('19913451',\n", + " datetime.datetime(2011, 5, 4, 0, 0),\n", + " '40.838536015095094',\n", + " '-73.94159475699887'),\n", + " ('19347447',\n", + " datetime.datetime(2011, 5, 4, 0, 0),\n", + " '40.838536015095094',\n", + " '-73.94159475699887'),\n", + " ('19745412',\n", + " datetime.datetime(2011, 5, 4, 0, 0),\n", + " '40.838536015095094',\n", + " '-73.94159475699887')]" + ] + } + ], + "prompt_number": 17 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "for record in data:\n", + " if record.split(',')[0] == '26416174':\n", + " print record\n", + " break" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "26416174,10/01/2013 06:50:34 PM,,DSNY,Department of Sanitation,Graffiti,Graffiti,,,203 clifon pl,clifon pl,,,,,ADDRESS,,,N/A,Open,,10/01/2013 06:50:34 PM,Unspecified BROOKLYN,BROOKLYN,,,Unspecified,BROOKLYN,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,,,,,,,,,,,,,,,\n", + "\n" + ] + } + ], + "prompt_number": 18 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "from datetime import datetime\n", + "datetime.strptime(\"08/08/2012 12:00:00 AM\", \"%m/%d/%Y %I:%M:%S %p\")" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 19, + "text": [ + "datetime.datetime(2012, 8, 8, 0, 0)" + ] + } + ], + "prompt_number": 19 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "from geopy.point import Point\n", + "#d = \"(\" + str(data[1].split(',')[49]) + \", \" + str(data[1].split(',')[50]) + \")\"\n", + "#print d\n", + "#d.strip('\"')\n", + "p = Point((data[1].split(',')[49], data[1].split(',')[50]))" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 51 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "p.longitude" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 54, + "text": [ + "-73.93759616034959" + ] + } + ], + "prompt_number": 54 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## if doesnt have coordinates" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "from geopy import geocoders\n", + "g = geocoders.GoogleV3()\n", + "\n", + "for record in data:\n", + " if record.split(',')[0] == '26416174':\n", + " print record\n", + " addr = str(record.split(',')[9]) + \", \" + str(record.split(',')[23])\n", + " print addr\n", + " place, (lat, lng) = g.geocode(addr)\n", + " break" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "26416174,10/01/2013 06:50:34 PM,,DSNY,Department of Sanitation,Graffiti,Graffiti,,,203 clifon pl,clifon pl,,,,,ADDRESS,,,N/A,Open,,10/01/2013 06:50:34 PM,Unspecified BROOKLYN,BROOKLYN,,,Unspecified,BROOKLYN,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,,,,,,,,,,,,,,,\n", + "\n", + "203 clifon pl, BROOKLYN\n" + ] + } + ], + "prompt_number": 97 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "from geopy import geocoders\n", + "g = geocoders.GoogleV3()\n", + "place, (lat, lng) = g.geocode(\"1356 farragut rd, brooklyn\")" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 89 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "print \"%s: %f, %f\" % (place, lat, lng)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "203 Clifton Place, Brooklyn, NY 11216, USA: 40.688857, -73.955614\n" + ] + } + ], + "prompt_number": 98 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# lower manhattan\n", + "\n", + "import numpy as np\n", + "import matplotlib.nxutils as nx\n", + "verts = np.array([[40.726809, -73.971311], [40.744207, -74.013583], [40.707618, -74.023968], [40.698574, -74.018990], [40.709375, -73.976590]], float)\n", + "nx.pnpoly(40.716401, -74.028603, verts)\n" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 227, + "text": [ + "0" + ] + } + ], + "prompt_number": 227 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "nx.pnpoly(40.716401, -74.028603, verts)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 226, + "text": [ + "0" + ] + } + ], + "prompt_number": 226 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [], + "language": "python", + "metadata": {}, + "outputs": [] + } + ], + "metadata": {} + } + ] +} \ No newline at end of file diff --git a/FinalProject/data/graffiti2013centroid.png b/FinalProject/data/graffiti2013centroid.png new file mode 100644 index 0000000..5d13f39 Binary files /dev/null and b/FinalProject/data/graffiti2013centroid.png differ diff --git a/FinalProject/data/graffiti_party_2013.csv b/FinalProject/data/graffiti_party_2013.csv new file mode 100644 index 0000000..9fcac1b --- /dev/null +++ b/FinalProject/data/graffiti_party_2013.csv @@ -0,0 +1 @@ +Latitude,Longitude,Category 40.63851336,-74.13295551,graffiti 40.71984267,-73.76231066,graffiti 40.70381678,-73.76674269,graffiti 40.6352778,-73.9581869,graffiti 40.67848929,-73.97966257,graffiti 40.67948362,-73.98421942,graffiti 40.67964591,-73.98701352,graffiti 40.67654583,-73.97876547,graffiti 40.66263761,-73.90308041,graffiti 40.67704625,-73.98412986,graffiti 40.67068491,-73.91659058,graffiti 40.67159617,-73.91658944,graffiti 40.67643763,-73.91245185,graffiti 40.67646824,-73.91299979,graffiti 40.67135719,-73.90240083,graffiti 40.67178,-73.90252638,graffiti 40.67465345,-73.90542428,graffiti 40.72722535,-73.97965852,graffiti 40.72701959,-73.98025028,graffiti 40.72831143,-73.97534304,graffiti 40.73051688,-73.98318263,graffiti 40.72962448,-73.9809206,graffiti 40.72926472,-73.97978778,graffiti 40.66579374,-73.9977327,graffiti 40.66072141,-73.99996035,graffiti 40.88052288,-73.85772243,graffiti 40.66733893,-73.99445599,graffiti 40.72921044,-73.98364118,graffiti 40.72899902,-73.98313611,graffiti 40.72826589,-73.98133952,graffiti 40.7094176,-73.95255763,graffiti 40.70765854,-73.95338125,graffiti 40.70878072,-73.95232724,graffiti 40.62300543,-73.96484884,graffiti 40.71267207,-73.87980653,graffiti 40.89193586,-73.85817542,graffiti 40.64689518,-74.01326839,graffiti 40.64312976,-74.00877783,graffiti 40.64517412,-74.01393829,graffiti 40.87553244,-73.85073619,graffiti 40.73041905,-73.99254206,graffiti 40.81074713,-73.85571856,graffiti 40.82914639,-73.87577671,graffiti 40.82882377,-73.87695168,graffiti 40.69906842,-73.91264212,graffiti 40.8285007,-73.88032721,graffiti 40.8046973,-73.95600432,graffiti 40.82841124,-73.88140778,graffiti 40.70418715,-73.9159752,graffiti 40.70301325,-73.91716686,graffiti 40.66200232,-73.96165642,graffiti 40.85623593,-73.88293428,graffiti 40.82774345,-73.85005567,graffiti 40.66377403,-73.76852998,graffiti 40.800439,-73.9601861,graffiti 40.83835776,-73.923124,graffiti 40.67529892,-73.99931503,graffiti 40.6380315,-74.0776757,graffiti 40.69372312,-73.96892252,graffiti 40.72823708,-73.99438598,graffiti 40.67701931,-73.97233002,graffiti 40.87937288,-73.87429425,graffiti 40.61244483,-73.98291703,graffiti 40.61237896,-73.98298188,graffiti 40.61221155,-73.9831476,graffiti 40.71787845,-74.00315649,graffiti 40.90063328,-73.86463191,graffiti 40.60131525,-73.95468709,graffiti 40.59897962,-73.9551676,graffiti 40.71875681,-73.99855701,graffiti 40.68059948,-73.90645781,graffiti 40.67771589,-73.90791116,graffiti 40.67922478,-73.90699332,graffiti 40.68029711,-73.90591021,graffiti 40.68153731,-73.9087784,graffiti 40.68121405,-73.9168406,graffiti 40.68198231,-73.90921045,graffiti 40.68468655,-73.91361285,graffiti 40.72477717,-73.98048545,graffiti 40.72522512,-73.98415086,graffiti 40.72416514,-73.98082836,graffiti 40.72652913,-73.98605191,graffiti 40.72694375,-73.98747334,graffiti 40.72596418,-73.99075306,graffiti 40.72251307,-73.98256413,graffiti 40.72279616,-73.98523374,graffiti 40.83496102,-73.82050403,graffiti 40.70075747,-73.92583607,graffiti 40.6991443,-73.92700273,graffiti 40.70676722,-73.92386006,graffiti 40.70594156,-73.92464728,graffiti 40.70576327,-73.92482061,graffiti 40.70440486,-73.92956133,graffiti 40.70682822,-73.92479776,graffiti 40.70703395,-73.92459194,graffiti 40.70807615,-73.92337885,graffiti 40.69433383,-73.9642054,graffiti 40.60882525,-73.97283368,graffiti 40.60725767,-73.97158462,graffiti 40.60927988,-73.96887539,graffiti 40.80806895,-73.93043056,graffiti 40.7126985,-73.96245329,graffiti 40.83338767,-73.82728033,graffiti 40.69133597,-73.90855224,graffiti 40.6891829,-73.91415511,graffiti 40.72645734,-73.89196911,graffiti 40.6180335,-73.9318317,graffiti 40.6164487,-73.93008638,graffiti 40.67675541,-73.9475408,graffiti 40.72192124,-73.99190446,graffiti 40.7200741,-73.99320701,graffiti 40.64012571,-74.01915109,graffiti 40.75845928,-73.81668907,graffiti 40.71775494,-73.99675333,graffiti 40.71780984,-73.99690844,graffiti 40.71804041,-73.9976191,graffiti 40.71825177,-73.99822153,graffiti 40.71867996,-73.99860752,graffiti 40.71867996,-73.99860752,graffiti 40.71883366,-73.99851011,graffiti 40.71942105,-74.00031746,graffiti 40.71969278,-74.00093435,graffiti 40.71966259,-74.00082973,graffiti 40.72026094,-74.00113638,graffiti 40.72052993,-73.99866159,graffiti 40.71946222,-73.99877345,graffiti 40.71946769,-73.99774892,graffiti 40.71951984,-73.99784993,graffiti 40.72003038,-73.99833693,graffiti 40.71942377,-73.99761905,graffiti 40.7183368,-73.99588391,graffiti 40.71831484,-73.99591637,graffiti 40.71822152,-73.99596328,graffiti 40.71825446,-73.99592359,graffiti 40.71821329,-73.99594524,graffiti 40.71816937,-73.99597049,graffiti 40.71804037,-73.9960643,graffiti 40.7181282,-73.99599214,graffiti 40.77558078,-73.91964008,graffiti 40.73831329,-73.88214912,graffiti 40.73778958,-73.8826805,graffiti 40.79647051,-73.93653558,graffiti 40.82798886,-73.82368456,graffiti 40.71736759,-73.95547396,graffiti 40.67648098,-73.87349058,graffiti 40.71717242,-73.9481944,graffiti 40.63292484,-74.00578614,graffiti 40.61115614,-73.97533228,graffiti 40.61168549,-73.97355286,graffiti 40.60905804,-73.9707555,graffiti 40.65635831,-73.9144208,graffiti 40.65779692,-73.9148875,graffiti 40.65596473,-73.90944048,graffiti 40.65615312,-73.90817159,graffiti 40.65810459,-73.90145069,graffiti 40.66598811,-73.90204822,graffiti 40.6690875,-73.90597649,graffiti 40.66901643,-73.90634067,graffiti 40.66907594,-73.90866567,graffiti 40.66867389,-73.91049384,graffiti 40.7848535,-73.84124018,graffiti 40.7848535,-73.84124018,graffiti 40.78485076,-73.84124019,graffiti 40.78485076,-73.84124019,graffiti 40.66135843,-73.9169843,graffiti 40.66483755,-73.92306806,graffiti 40.66482657,-73.92305366,graffiti 40.66467803,-73.92258524,graffiti 40.66495758,-73.91425478,graffiti 40.78321408,-73.8446709,graffiti 40.72085578,-73.98655815,graffiti 40.62478718,-74.07459826,graffiti 40.67353977,-73.97607347,graffiti 40.67557061,-73.97469559,graffiti 40.67181085,-73.97749444,graffiti 40.67489614,-73.97831896,graffiti 40.69168745,-73.81160426,graffiti 40.71471895,-73.99132817,graffiti 40.71505927,-73.99092412,graffiti 40.72010392,-73.9884703,graffiti 40.72042228,-73.98817082,graffiti 40.72172048,-73.987514,graffiti 40.72184674,-73.98747069,graffiti 40.72031789,-73.98730503,graffiti 40.72068841,-73.98711375,graffiti 40.72082574,-73.98796512,graffiti 40.71968931,-73.98709591,graffiti 40.71972226,-73.98720774,graffiti 40.71934047,-73.98494952,graffiti 40.71821794,-73.98552335,graffiti 40.71763055,-73.98546215,graffiti 40.69219049,-73.85801613,graffiti 40.70230473,-73.90938474,graffiti 40.71000297,-73.91934762,graffiti 40.67166903,-73.75444694,graffiti 40.85659973,-73.86900886,graffiti 40.73313608,-73.78198237,graffiti 40.6382264,-74.01866052,graffiti 40.63769401,-74.01803704,graffiti 40.63729066,-74.01713977,graffiti 40.6374361,-74.01734518,graffiti 40.63196418,-74.00526365,graffiti 40.72053216,-73.94272993,graffiti 40.79082252,-73.94890992,graffiti 40.7927526,-73.95014356,graffiti 40.79133117,-73.94486476,graffiti 40.86809919,-73.92286183,graffiti 40.68936731,-73.86587214,graffiti 40.68630481,-73.79390817,graffiti 40.75265706,-73.99310984,graffiti 40.67504983,-73.97823599,graffiti 40.68928878,-73.84488249,graffiti 40.66962909,-73.97928676,graffiti 40.67409533,-73.98221268,graffiti 40.68068531,-73.98081563,graffiti 40.69309021,-73.92839049,graffiti 40.69250715,-73.93097305,graffiti 40.69160675,-73.93077204,graffiti 40.6917202,-73.92780779,graffiti 40.69109341,-73.93067161,graffiti 40.6901331,-73.9360274,graffiti 40.68953766,-73.93634529,graffiti 40.68685065,-73.91906553,graffiti 40.69127939,-73.92522278,graffiti 40.704329,-73.913605,graffiti 40.69054972,-73.92590151,graffiti 40.69101283,-73.92473627,graffiti 40.69121177,-73.92678064,graffiti 40.69221089,-73.92680839,graffiti 40.68185841,-73.91977826,graffiti 40.68104225,-73.92238236,graffiti 40.68096264,-73.92236443,graffiti 40.67994505,-73.91942003,graffiti 40.6533672,-73.9208518,graffiti 40.7176312,-73.99209978,graffiti 40.71446676,-73.99947334,graffiti 40.71235313,-73.99394725,graffiti 40.64364458,-74.01878456,graffiti 40.63822771,-74.00672701,graffiti 40.63973414,-74.01230491,graffiti 40.64024473,-74.01177173,graffiti 40.63702816,-74.00795193,graffiti 40.65553652,-73.99948823,graffiti 40.65840068,-73.98212676,graffiti 40.71343424,-73.9893985,graffiti 40.71339311,-73.9898963,graffiti 40.71302836,-73.99428626,graffiti 40.7137059,-73.98864095,graffiti 40.71389512,-73.98708982,graffiti 40.72303618,-73.9503761,graffiti 40.72306913,-73.95039412,graffiti 40.72310207,-73.95041213,graffiti 40.61978159,-73.9824829,graffiti 40.60804207,-74.09229526,graffiti 40.60683962,-74.0925745,graffiti 40.60681217,-74.09258887,graffiti 40.71165487,-73.7935304,graffiti 40.67304414,-73.90772655,graffiti 40.67323906,-73.90778035,graffiti 40.71241628,-73.99436567,graffiti 40.7115133,-73.99523145,graffiti 40.6860129,-73.86561568,graffiti 40.87136986,-73.86269559,graffiti 40.87135819,-73.86212071,graffiti 40.71511134,-73.98998983,graffiti 40.89266488,-73.85511035,graffiti 40.89214706,-73.85805923,graffiti 40.89112947,-73.85862201,graffiti 40.88765978,-73.86054621,graffiti 40.88388557,-73.86262273,graffiti 40.88013887,-73.86477489,graffiti 40.88010047,-73.86479667,graffiti 40.88002642,-73.86484744,graffiti 40.87937641,-73.86525739,graffiti 40.87467407,-73.86704235,graffiti 40.71563011,-73.99004025,graffiti 40.69517862,-73.84455505,graffiti 40.71443616,-73.99029654,graffiti 40.71444989,-73.99041197,graffiti 40.69920017,-73.83311694,graffiti 40.71347811,-73.9889007,graffiti 40.71273429,-73.98901265,graffiti 40.71272058,-73.98915333,graffiti 40.7127151,-73.98923629,graffiti 40.87919834,-73.91830704,graffiti 40.88014461,-73.91739821,graffiti 40.68120823,-73.95597402,graffiti 40.74232895,-73.92915675,graffiti 40.69757668,-73.90083697,graffiti 40.70949717,-73.95248544,graffiti 40.71061987,-73.95271909,graffiti 40.76993784,-73.9088992,graffiti 40.69577882,-73.95964636,graffiti 40.69257256,-73.93993762,graffiti 40.69318198,-73.94008132,graffiti 40.69254844,-73.94105552,graffiti 40.69171722,-73.94192891,graffiti 40.69177461,-73.94143123,graffiti 40.65,-73.95,graffiti 40.69118921,-73.94546322,graffiti 40.69044114,-73.94241682,graffiti 40.68327332,-73.93496313,graffiti 40.75685338,-73.82179376,graffiti 40.75553615,-73.81498622,graffiti 40.69586,-73.959168,graffiti 40.69150978,-73.95026975,graffiti 40.69440228,-73.93797423,graffiti 40.69459135,-73.93737543,graffiti 40.69514549,-73.93200169,graffiti 40.69412089,-73.94604502,graffiti 40.69592014,-73.93797282,graffiti 40.69878741,-73.95325402,graffiti 40.70023624,-73.9460581,graffiti 40.70015704,-73.9469129,graffiti 40.70028824,-73.94572987,graffiti 40.76516845,-73.8190568,graffiti 40.6999838,-73.94063781,graffiti 40.69980523,-73.940317,graffiti 40.69959916,-73.93992408,graffiti 40.69926949,-73.93935817,graffiti 40.69832713,-73.93765322,graffiti 40.69812657,-73.93730359,graffiti 40.69802766,-73.93712697,graffiti 40.69803039,-73.93709451,graffiti 40.69790403,-73.9369071,graffiti 40.69690443,-73.93600287,graffiti 40.69687712,-73.9362373,graffiti 40.69681599,-73.93491386,graffiti 40.69705455,-73.93450972,graffiti 40.75588004,-73.81548338,graffiti 40.69606317,-73.9335911,graffiti 40.69596702,-73.93345416,graffiti 40.69524164,-73.93214223,graffiti 40.6945135,-73.93084475,graffiti 40.69380228,-73.93030818,graffiti 40.83086863,-73.90287872,graffiti 40.7465686,-73.94788282,graffiti 40.68451496,-73.8615804,graffiti 40.61517334,-74.01575097,graffiti 40.84680195,-73.89686637,graffiti 40.57625087,-74.16243972,graffiti 40.84586608,-73.91367099,graffiti 40.87216111,-73.8500893,graffiti 40.83382036,-73.92674656,graffiti 40.83673779,-73.92643978,graffiti 40.84289512,-73.91577109,graffiti 40.66262571,-73.98847303,graffiti 40.83320431,-73.91310923,graffiti 40.70120803,-73.88603763,graffiti 40.86548522,-73.86502161,graffiti 40.86074886,-73.92703504,graffiti 40.84889431,-73.90427291,graffiti 40.76523672,-73.83338828,graffiti 40.85958227,-73.89796001,graffiti 40.85397841,-73.89889399,graffiti 40.76595572,-73.83520955,graffiti 40.76918723,-73.83586583,graffiti 40.85090444,-73.89901072,graffiti 40.85788479,-73.89655637,graffiti 40.86050416,-73.8945495,graffiti 40.85194678,-73.93182331,graffiti 40.72678981,-73.94767099,graffiti 40.83196635,-73.86227823,graffiti 40.70177554,-73.8072587,graffiti 40.88484532,-73.89287262,graffiti 40.71331264,-73.82861231,graffiti 40.7215152,-74.00486307,graffiti 40.7215152,-74.00486307,graffiti 40.74356708,-73.75383189,graffiti 40.64318224,-74.00154945,graffiti 40.84844852,-73.92086773,graffiti 40.73528254,-73.88162405,graffiti 40.6480797,-73.94538314,graffiti 40.67911407,-73.99563395,graffiti 40.59478428,-74.06478505,graffiti 40.74079684,-73.87146669,graffiti 40.68942857,-73.95533757,graffiti 40.68877154,-73.95999315,graffiti 40.68860265,-73.95598356,graffiti 40.688857,-73.955614,graffiti 40.68858425,-73.95119863,graffiti 40.6885717,-73.9554532,graffiti 40.68794903,-73.94849835,graffiti 40.6839193,-73.9540108,graffiti 40.68127312,-73.95348262,graffiti 40.683635,-73.95021433,graffiti 40.68360482,-73.95023238,graffiti 40.68357187,-73.95020356,graffiti 40.67979875,-73.95243088,graffiti 40.6769608,-73.92241956,graffiti 40.67733569,-73.9291645,graffiti 40.67216593,-73.92699982,graffiti 40.67048742,-73.92907084,graffiti 40.71949238,-74.00276696,graffiti 40.66947288,-73.92633227,graffiti 40.72015933,-74.00381317,graffiti 40.71974489,-74.00329006,graffiti 40.71822981,-74.00163417,graffiti 40.71853173,-74.00230516,graffiti 40.76252247,-73.83550683,graffiti 40.76226189,-73.83371339,graffiti 40.74785648,-73.76134454,graffiti 40.85204281,-73.93175454,graffiti 40.69422224,-73.93032938,graffiti 40.76225269,-73.91631708,graffiti 40.71078888,-73.96477008,graffiti 40.83893542,-73.88232504,graffiti 40.74137243,-73.82502165,graffiti 40.72186675,-73.9567697,graffiti 40.69145454,-73.84497842,graffiti 40.76113043,-73.835189,graffiti 40.85686813,-73.90481452,graffiti 40.85452842,-73.90667951,graffiti 40.84766377,-73.91353854,graffiti 40.85383867,-73.90907709,graffiti 40.84609959,-73.92164762,graffiti 40.85255129,-73.93296495,graffiti 40.85568963,-73.86290509,graffiti 40.85449499,-73.86700316,graffiti 40.84951413,-73.86768543,graffiti 40.84702639,-73.86678677,graffiti 40.84493297,-73.86747406,graffiti 40.75866767,-73.82904428,graffiti 40.84124969,-73.86999321,graffiti 40.75868141,-73.82905868,graffiti 40.75868141,-73.82905868,graffiti 40.75867596,-73.82908396,graffiti 40.84284937,-73.86956361,graffiti 40.84185994,-73.87081243,graffiti 40.64619653,-74.02268071,graffiti 40.67630987,-73.91050162,graffiti 40.67631266,-73.9105593,graffiti 40.6858338,-73.8650247,graffiti 40.71914108,-74.00150793,graffiti 40.73878235,-73.80838578,graffiti 40.73878235,-73.80838578,graffiti 40.7388482,-73.81002749,graffiti 40.73882221,-73.80924811,graffiti 40.7388166,-73.80917956,graffiti 40.73787721,-73.97688033,graffiti 40.71854187,-73.76508944,graffiti 40.7111038,-73.7648552,graffiti 40.7111038,-73.7648552,graffiti 40.73547264,-73.73760962,graffiti 40.6764231,-73.94144471,graffiti 40.67626789,-73.94988815,graffiti 40.6713743,-73.93921771,graffiti 40.6777555,-73.94974643,graffiti 40.6775904,-73.94882001,graffiti 40.69779921,-73.95305636,graffiti 40.67790155,-73.93954344,graffiti 40.67833354,-73.94727998,graffiti 40.70809068,-74.00028494,graffiti 40.75104377,-73.87979865,graffiti 40.68477669,-73.85567744,graffiti 40.70710216,-73.93768829,graffiti 40.74269672,-73.92070464,graffiti 40.68100055,-73.86296136,graffiti 40.82744823,-73.88178167,graffiti 40.60742745,-74.0920315,graffiti 40.72712561,-73.89335707,graffiti 40.68207943,-73.8702206,graffiti 40.70169586,-73.92533011,graffiti 40.71402296,-73.92589345,graffiti 40.73744003,-73.99109067,graffiti 40.77263775,-73.92687524,graffiti 40.66371104,-73.9776017,graffiti 40.71212189,-73.79376342,graffiti 40.67985804,-73.85135082,graffiti 40.71893504,-73.993438,graffiti 40.7304628,-73.9902437,graffiti 40.69846552,-73.80091383,graffiti 40.70692041,-73.79064517,graffiti 40.70726668,-73.78937086,graffiti 40.7079415,-73.78470862,graffiti 40.70794191,-73.78492864,graffiti 40.70794144,-73.78467977,graffiti 40.70882262,-73.78473463,graffiti 40.7080228,-73.78269211,graffiti 40.70935722,-73.78004745,graffiti 40.70885656,-73.77803643,graffiti 40.70748202,-73.78855503,graffiti 40.70759625,-73.78798839,graffiti 40.70774068,-73.78742165,graffiti 40.70315578,-73.7738645,graffiti 40.70463418,-73.77473592,graffiti 40.70547742,-73.7764535,graffiti 40.70547742,-73.7764535,graffiti 40.70553477,-73.77914395,graffiti 40.70542546,-73.78227858,graffiti 40.70460673,-73.7847771,graffiti 40.70460398,-73.78477711,graffiti 40.70343439,-73.79206992,graffiti 40.71040499,-73.79145302,graffiti 40.69063439,-73.94468119,graffiti 40.67346256,-73.99512602,graffiti 40.71527646,-73.99959238,graffiti 40.71591598,-73.99832981,graffiti 40.71751616,-73.99733774,graffiti 40.71745299,-73.99594889,graffiti 40.71722245,-73.99654773,graffiti 40.71538898,-73.99783924,graffiti 40.79870121,-73.82098465,graffiti 40.68097222,-73.92868112,graffiti 40.68092006,-73.92867036,graffiti 40.68086791,-73.9286596,graffiti 40.68076634,-73.92863808,graffiti 40.78471016,-73.9740294,graffiti 40.83601285,-73.84763023,graffiti 40.68871062,-73.96695607,graffiti 40.68871062,-73.96695607,graffiti 40.72252406,-73.76086163,graffiti 40.840006,-73.8372506,graffiti 40.8149326,-73.86226651,graffiti 40.82496244,-73.86989496,graffiti 40.7801556,-73.94696827,graffiti 40.78035041,-73.9468273,graffiti 40.78337277,-73.94771318,graffiti 40.78324062,-73.94682499,graffiti 40.78044372,-73.94678389,graffiti 40.83447483,-73.82929398,graffiti 40.5815142,-73.96208063,graffiti 40.58158271,-73.96175659,graffiti 40.58157175,-73.96180699,graffiti 40.63197616,-73.96741649,graffiti 40.6289949,-73.96598411,graffiti 40.63124578,-73.96650536,graffiti 40.62587389,-73.96536968,graffiti 40.6253002,-73.96528352,graffiti 40.62458377,-73.9651506,graffiti 40.62116082,-73.96450039,graffiti 40.6196658,-73.9642859,graffiti 40.62511802,-73.96203424,graffiti 40.61394385,-73.95415625,graffiti 40.67993081,-73.86126904,graffiti 40.67991988,-73.86131232,graffiti 40.67946514,-73.87153803,graffiti 40.74686547,-73.94301406,graffiti 40.63195055,-74.00247511,graffiti 40.68595733,-73.86504248,graffiti 40.68594918,-73.86511461,graffiti 40.73444559,-73.99235759,graffiti 40.73383064,-73.99061125,graffiti 40.73670799,-73.95770188,graffiti 40.76211747,-73.7299204,graffiti 40.78169818,-73.84206015,graffiti 40.70186516,-73.88171945,graffiti 40.76139909,-73.73259456,graffiti 40.71655474,-73.90171057,graffiti 40.76180824,-73.72914554,graffiti 40.6640261,-73.99757777,graffiti 40.73221979,-74.00390046,graffiti 40.7560493,-73.89887299,graffiti 40.75083249,-73.89383885,graffiti 40.67600167,-73.97526504,graffiti 40.87990313,-73.92140527,graffiti 40.87990313,-73.92140527,graffiti 40.67135722,-73.92859046,graffiti 40.6728637,-73.95491246,graffiti 40.67473511,-73.95359173,graffiti 40.67871904,-73.964906,graffiti 40.67785036,-73.96076762,graffiti 40.67773486,-73.96012956,graffiti 40.67775961,-73.96025213,graffiti 40.67941354,-73.96513998,graffiti 40.58112524,-73.96461168,graffiti 40.62440907,-73.94627429,graffiti 40.62431887,-73.9470993,graffiti 40.62495541,-73.94654043,graffiti 40.62908424,-73.94798897,graffiti 40.63111791,-73.94751543,graffiti 40.63661871,-73.94804435,graffiti 40.63563962,-73.94985741,graffiti 40.63846724,-73.95098667,graffiti 40.63805833,-73.95113109,graffiti 40.63463492,-73.94959876,graffiti 40.63502759,-73.94999118,graffiti 40.63628527,-73.95129813,graffiti 40.63730954,-73.95240352,graffiti 40.63811411,-73.95326409,graffiti 40.7147303,-73.94981956,graffiti 40.74998689,-73.94431069,graffiti 40.7472023,-73.82868032,graffiti 40.767812,-73.962014,graffiti 40.86923384,-73.89934083,graffiti 40.8740665,-73.90165492,graffiti 40.87569173,-73.90209367,graffiti 40.73338708,-73.79459606,graffiti 40.6248264,-74.1318079,graffiti 40.67657143,-73.9151844,graffiti 40.69042229,-73.84080153,graffiti 40.7241964,-73.90868033,graffiti 40.69588987,-73.96341841,graffiti 40.69514848,-73.96247038,graffiti 40.7243369,-74.00150444,graffiti 40.69131923,-73.85058965,graffiti 40.75596033,-73.87787314,graffiti 40.72647217,-73.99376197,graffiti 40.61880029,-73.99909228,graffiti 40.6321892,-73.97408875,graffiti 40.72661742,-73.80502572,graffiti 40.62876428,-73.97677042,graffiti 40.63009281,-73.97702935,graffiti 40.63004889,-73.97701856,graffiti 40.63377014,-73.96370106,graffiti 40.63892746,-73.9732502,graffiti 40.61361029,-74.0657686,graffiti 40.64298991,-73.96382936,graffiti 40.63844089,-73.95363138,graffiti 40.63843533,-73.95345483,graffiti 40.63846997,-73.95095784,graffiti 40.64460722,-73.95761973,graffiti 40.61763249,-73.93138546,graffiti 40.64914738,-73.95841687,graffiti 40.65042905,-73.95803046,graffiti 40.65043724,-73.95788991,graffiti 40.65044269,-73.9577854,graffiti 40.65423113,-73.95956697,graffiti 40.6542723,-73.95957415,graffiti 40.65637421,-73.93445234,graffiti 40.6551714,-73.95632638,graffiti 40.66741733,-73.93124413,graffiti 40.66194588,-73.94443104,graffiti 40.66197324,-73.94423999,graffiti 40.66196779,-73.94433731,graffiti 40.66073667,-73.96076687,graffiti 40.66141721,-73.95299186,graffiti 40.66259365,-73.93403533,graffiti 40.66259093,-73.93408219,graffiti 40.6626074,-73.93407857,graffiti 40.66474968,-73.95375367,graffiti 40.6662939,-73.95111041,graffiti 40.66421375,-73.94587096,graffiti 40.83006332,-73.84427967,graffiti 40.67431899,-73.82049656,graffiti 40.67431899,-73.82049656,graffiti 40.71517484,-73.9495631,graffiti 40.83290466,-73.87145859,graffiti 40.77795677,-73.80919016,graffiti 40.84726419,-73.8683152,graffiti 40.84281407,-73.86748913,graffiti 40.84351172,-73.86791422,graffiti 40.72191329,-74.00007937,graffiti 40.72024722,-73.99950216,graffiti 40.72030761,-73.99962481,graffiti 40.69025962,-73.93648883,graffiti 40.68975727,-73.93639195,graffiti 40.74324783,-73.9281814,graffiti 40.75252814,-73.94941572,graffiti 40.7848535,-73.84124018,graffiti 40.7848535,-73.84124018,graffiti 40.78485076,-73.84124019,graffiti 40.78485076,-73.84124019,graffiti 40.7847599,-73.84920638,graffiti 40.66699367,-73.95076024,graffiti 40.66871501,-73.95866421,graffiti 40.66846048,-73.95340504,graffiti 40.66679432,-73.93132408,graffiti 40.68048086,-73.99335525,graffiti 40.72069182,-74.00368333,graffiti 40.72302766,-74.00099933,graffiti 40.62039502,-74.00015129,graffiti 40.71274238,-73.82721421,graffiti 40.71297377,-73.8277655,graffiti 40.71919204,-73.96077215,graffiti 40.86355823,-73.89369144,graffiti 40.67971292,-73.82981993,graffiti 40.76671683,-73.73908218,graffiti 40.8570276,-73.93245434,graffiti 40.68693139,-73.82235924,graffiti 40.85701822,-73.93052396,graffiti 40.84540917,-73.86866223,graffiti 40.84588125,-73.86865407,graffiti 40.84556842,-73.86871613,graffiti 40.84431171,-73.86903667,graffiti 40.84360762,-73.870191,graffiti 40.82100066,-73.9375419,graffiti 40.70780842,-73.81728282,graffiti 40.720814,-73.998797,graffiti 40.72182818,-73.99755042,graffiti 40.72014282,-73.99516589,graffiti 40.71886654,-73.99593438,graffiti 40.71872105,-73.99557003,graffiti 40.72298089,-73.99480131,graffiti 40.62749782,-73.92780521,graffiti 40.7455698,-73.91220582,graffiti 40.69403577,-73.9679956,graffiti 40.72117642,-73.98288195,graffiti 40.75663798,-73.83376713,graffiti 40.60469479,-73.99935897,graffiti 40.79911761,-73.93871821,graffiti 40.63236589,-74.02088902,graffiti 40.63245368,-74.02112323,graffiti 40.82152938,-73.89169554,graffiti 40.69448916,-73.74684764,graffiti 40.6548167,-73.88147851,graffiti 40.70010297,-73.84270066,graffiti 40.60111559,-73.95652019,graffiti 40.68762078,-73.97768742,graffiti 40.8745474,-73.87401048,graffiti 40.73426099,-73.86613178,graffiti 40.82005851,-73.81784534,graffiti 40.71179116,-73.78997698,graffiti 40.7125272,-73.8011825,graffiti 40.6987995,-73.8442611,graffiti 40.71010859,-73.7945199,graffiti 40.70889451,-73.79867884,graffiti 40.70801867,-73.80168964,graffiti 40.79568087,-73.82743956,graffiti 40.70519189,-73.81169954,graffiti 40.70494081,-73.81257669,graffiti 40.70518642,-73.81171038,graffiti 40.70493536,-73.81260195,graffiti 40.71102666,-73.79526013,graffiti 40.70983289,-73.79537561,graffiti 40.70972163,-73.79455356,graffiti 40.70977933,-73.79458584,graffiti 40.72625518,-73.99144213,graffiti 40.72528909,-73.99239111,graffiti 40.72374107,-73.99275927,graffiti 40.6320417,-74.02251017,graffiti 40.67714729,-73.91083938,graffiti 40.71926719,-73.99398631,graffiti 40.75454601,-73.91709195,graffiti 40.75459262,-73.91703053,graffiti 40.70914119,-73.95457772,graffiti 40.83955647,-73.83196255,graffiti 40.78061902,-73.95223248,graffiti 40.7810747,-73.95235853,graffiti 40.7810747,-73.95235853,graffiti 40.78112958,-73.95231877,graffiti 40.77987253,-73.95240994,graffiti 40.77987253,-73.95240994,graffiti 40.62250301,-73.99891932,graffiti 40.62565402,-73.99827083,graffiti 40.62566226,-73.99826002,graffiti 40.66916966,-73.91641584,graffiti 40.80401742,-73.95820092,graffiti 40.63513491,-74.02332187,graffiti 40.59269439,-74.08720072,graffiti 40.57297415,-74.11126707,graffiti 40.87356236,-73.85553525,graffiti 40.87702362,-73.90625379,graffiti 40.66363665,-73.95722917,graffiti 40.71625193,-73.95941391,graffiti 40.69403577,-73.9679956,graffiti 40.82915562,-73.87167903,graffiti 40.62729195,-73.92778381,graffiti 40.80269019,-73.91170787,graffiti 40.82781612,-73.94942714,graffiti 40.78831178,-73.97650169,graffiti 40.69234628,-73.76400977,graffiti 40.72037244,-73.76099922,graffiti 40.69944134,-73.93734924,graffiti 40.83818011,-73.82923749,graffiti 40.7929692,-73.94366439,graffiti 40.77460269,-73.91828011,graffiti 40.77481727,-73.91896223,graffiti 40.6127987,-73.98161671,graffiti 40.63097475,-74.11655169,graffiti 40.72232572,-73.97836486,graffiti 40.72257245,-73.97685317,graffiti 40.64109808,-73.98581393,graffiti 40.72113285,-73.74817144,graffiti 40.61469091,-73.97299698,graffiti 40.77424455,-73.91272042,graffiti 40.71387398,-73.93858376,graffiti 40.75866037,-73.82967959,graffiti 40.77125115,-73.90378159,graffiti 40.76045771,-73.76269996,graffiti 40.75860845,-73.76843866,graffiti 40.74928789,-73.88875606,graffiti 40.68044837,-73.96529086,graffiti 40.62672423,-74.00791107,graffiti 40.62795123,-74.00665753,graffiti 40.8248241,-73.87637373,graffiti 40.70579348,-73.94414563,graffiti 40.70579348,-73.94414563,graffiti 40.67701931,-73.97233002,graffiti 40.83796377,-73.82589154,graffiti 40.64795816,-73.9984144,graffiti 40.71674143,-73.90176441,graffiti 40.82975845,-73.91512283,graffiti 40.76978376,-73.90843369,graffiti 40.76228399,-73.86534266,graffiti 40.75360323,-73.86145489,graffiti 40.75866196,-73.8638953,graffiti 40.75217331,-73.85704371,graffiti 40.73032187,-73.95299015,graffiti 40.60621147,-73.96080252,graffiti 40.82976944,-73.91514089,graffiti 40.8297365,-73.91513732,graffiti 40.73557815,-73.92263637,graffiti 40.83035304,-73.91375616,graffiti 40.62737479,-74.00723388,graffiti 40.83136642,-73.9264927,graffiti 40.65573262,-73.98130214,graffiti 40.6968258,-73.8018744,graffiti 40.83763799,-73.83582344,graffiti 40.87617676,-73.88352112,graffiti 40.87545202,-73.88613312,graffiti 40.74532953,-73.94531786,graffiti 40.6789854,-73.96526999,graffiti 40.7848663,-73.84663868,graffiti 40.85284072,-73.88846719,graffiti 40.65856821,-73.98275384,graffiti 40.70556886,-73.794588,graffiti 40.84770215,-73.91348789,graffiti 40.86950167,-73.90443849,graffiti 40.63440959,-74.02657144,graffiti 40.63468134,-74.02647427,graffiti 40.72787405,-73.98593617,graffiti 40.78465973,-73.824944,graffiti 40.72476954,-73.98445763,graffiti 40.65987828,-73.98948631,graffiti 40.7677393,-73.99125268,graffiti 40.74765629,-73.99678074,graffiti 40.74660502,-73.99565479,graffiti 40.83018151,-73.83264388,graffiti 40.61867163,-74.02351063,graffiti 40.67719943,-73.9108321,graffiti 40.63444802,-74.02655705,graffiti 40.63448919,-74.02653905,graffiti 40.63452762,-74.02652105,graffiti 40.63456605,-74.02650305,graffiti 40.84869913,-73.8654605,graffiti 40.84782271,-73.86012732,graffiti 40.8485838,-73.86541736,graffiti 40.72089391,-73.85043677,graffiti 40.59880739,-74.06613932,graffiti 40.82975534,-73.82117934,graffiti 40.72734476,-73.99030549,graffiti 40.71709345,-73.99665235,graffiti 40.83443607,-73.82540207,graffiti 40.76473539,-73.94077865,graffiti 40.8266697,-73.87489607,graffiti 40.60085875,-73.98104022,graffiti 40.60085875,-73.98104022,graffiti 40.67749384,-73.93196921,graffiti 40.84653059,-73.89128616,graffiti 40.8078233,-73.91986846,graffiti 40.62759458,-73.99802941,graffiti 40.86576421,-73.89586803,graffiti 40.66842443,-73.77164277,graffiti 40.69313088,-73.98623198,graffiti 40.73906252,-73.99932881,graffiti 40.70691976,-73.95229611,graffiti 40.77375726,-73.90732704,graffiti 40.77527958,-73.9095093,graffiti 40.84732608,-73.89078607,graffiti 40.63054299,-74.02278347,graffiti 40.72431213,-73.99572119,graffiti 40.72144278,-73.9836972,graffiti 40.71608068,-73.99976913,graffiti 40.71689313,-73.9997042,graffiti 40.7169343,-73.99967894,graffiti 40.7169096,-73.99971863,graffiti 40.71697272,-73.9996573,graffiti 40.66049871,-73.9907297,graffiti 40.68444173,-73.8693795,graffiti 40.59438524,-73.96417256,graffiti 40.66478288,-73.73489591,graffiti 40.71654708,-73.99301618,graffiti 40.71973627,-73.99008293,graffiti 40.71590199,-73.99204948,graffiti 40.63204487,-74.1221739,graffiti 40.82948818,-73.82963199,graffiti 40.75552514,-73.81496821,graffiti 40.63448435,-74.02358466,graffiti 40.63327721,-74.02061188,graffiti 40.72924248,-73.90022339,graffiti 40.70063155,-73.90400614,graffiti 40.78120789,-73.94930005,graffiti 40.73206279,-73.98809298,graffiti 40.7207495,-73.998474,graffiti 40.87477826,-73.87943395,graffiti 40.84856183,-73.86541018,graffiti 40.84935838,-73.86590737,graffiti 40.71365682,-73.96369362,graffiti 40.67771223,-73.88549012,graffiti 40.56639253,-74.12920912,graffiti 40.72028458,-73.91150679,graffiti 40.70266723,-73.87201267,graffiti 40.70256428,-73.8732355,graffiti 40.73765748,-73.87707313,graffiti 40.65432591,-74.00594297,graffiti 40.83760466,-73.88548235,graffiti 40.66994079,-73.99138807,graffiti 40.64006936,-74.00839549,graffiti 40.82574358,-73.94879278,graffiti 40.70151259,-73.8859253,graffiti 40.69540052,-73.84023068,graffiti 40.73302369,-73.99068713,graffiti 40.72089464,-73.99103516,graffiti 40.71906941,-73.99148273,graffiti 40.72129273,-73.99241321,graffiti 40.71805944,-73.99301241,graffiti 40.71941522,-73.99108947,graffiti 40.81461839,-73.89796031,graffiti 40.63822497,-74.00670179,graffiti 40.86645171,-73.8973493,graffiti 40.63051556,-74.02267898,graffiti 40.63057043,-74.02283752,graffiti 40.84507977,-73.82886557,graffiti 40.60265256,-73.99498354,graffiti 40.59678474,-74.07031434,graffiti 40.54692889,-74.14103114,graffiti 40.86677515,-73.86732207,graffiti 40.83136106,-73.87805635,graffiti 40.78411658,-73.84840258,graffiti 40.61862346,-73.98365748,graffiti 40.85391091,-73.89108251,graffiti 40.70802087,-73.95341707,graffiti 40.84503231,-73.78567453,graffiti 40.79817489,-73.97022817,graffiti 40.79806503,-73.96996818,graffiti 40.79815567,-73.97018484,graffiti 40.79814743,-73.97016317,graffiti 40.71497161,-74.00655079,graffiti 40.88302431,-73.86310187,graffiti 40.6630612,-73.91098797,graffiti 40.70631818,-73.93960423,graffiti 40.70710517,-73.78222981,graffiti 40.66522077,-73.97814909,graffiti 40.81738142,-73.88531121,graffiti 40.72231372,-73.94903098,graffiti 40.71126973,-73.96650843,graffiti 40.66117889,-73.98562584,graffiti 40.86388391,-73.88977189,graffiti 40.81078703,-73.88932879,graffiti 40.84964277,-73.93447515,graffiti 40.75688742,-73.73888607,graffiti 40.69770148,-73.97372069,graffiti 40.69216578,-73.85800897,graffiti 40.62564346,-74.13494363,graffiti 40.71818041,-74.00156563,graffiti 40.72221517,-73.9968902,graffiti 40.72521237,-73.99479031,graffiti 40.72421592,-73.99285663,graffiti 40.71490588,-73.99690858,graffiti 40.7200522,-73.994163,graffiti 40.71919856,-73.99382037,graffiti 40.7172004,-73.99431837,graffiti 40.68629698,-73.83888954,graffiti 40.76640046,-73.90965132,graffiti 40.7626194,-73.87308511,graffiti 40.70483013,-73.93389615,graffiti 40.74977735,-73.88409222,graffiti 40.7194296,-73.9573052,graffiti 40.63916865,-74.01292095,graffiti 40.71773163,-73.94100078,graffiti 40.75715966,-73.87022592,graffiti 40.8493612,-73.83050641,graffiti 40.69141439,-73.797877,graffiti 40.71182081,-73.76960397,graffiti 40.6273558,-74.00008286,graffiti 40.65257459,-73.9634854,graffiti 40.74347611,-73.90264524,graffiti 40.60509553,-74.00013325,graffiti 40.74443391,-73.99540953,graffiti 40.74443391,-73.99540953,graffiti 40.74426099,-73.99553586,graffiti 40.74457668,-73.99675563,graffiti 40.76190269,-73.92212569,graffiti 40.76190269,-73.92212569,graffiti 40.82000632,-73.81781658,graffiti 40.8228839,-73.81852049,graffiti 40.66147321,-73.99209562,graffiti 40.66037794,-73.99083064,graffiti 40.72343916,-73.99287114,graffiti 40.80589207,-73.94511278,graffiti 40.84612816,-73.78605774,graffiti 40.77751692,-73.95092043,graffiti 40.72282752,-73.95022834,graffiti 40.7200386,-73.99775611,graffiti 40.72061224,-73.99708869,graffiti 40.80680718,-73.88932457,graffiti 40.74396918,-73.93183637,graffiti 40.67747675,-73.94636133,graffiti 40.8808185,-73.90840011,graffiti 40.69731398,-73.80977438,graffiti 40.5441127,-74.14325238,graffiti 40.65937352,-73.92024862,graffiti 40.837997,-73.87226551,graffiti 40.8544319,-73.86467172,graffiti 40.85450935,-73.86755258,graffiti 40.85446291,-73.86537293,graffiti 40.85445534,-73.86594771,graffiti 40.6399189,-73.97579367,graffiti 40.7495972,-73.88237819,graffiti 40.80151471,-73.96828706,graffiti 40.72498065,-73.98279799,graffiti 40.73337768,-74.01025106,graffiti 40.80703392,-73.93970068,graffiti 40.73917081,-73.918338,graffiti 40.75426413,-73.85649059,graffiti 40.75196069,-73.86276486,graffiti 40.761688,-73.8969007,graffiti 40.76259394,-73.89111994,graffiti 40.74244817,-73.72170358,graffiti 40.57557728,-73.844693,graffiti 40.72006325,-73.99576475,graffiti 40.71445852,-73.99934709,graffiti 40.71943746,-73.99633838,graffiti 40.71965155,-73.99625179,graffiti 40.71972566,-73.99622293,graffiti 40.71474946,-73.99882043,graffiti 40.71602028,-73.99826488,graffiti 40.71756556,-73.99730888,graffiti 40.71908065,-73.99660536,graffiti 40.7223002,-73.99520903,graffiti 40.72307966,-73.99401843,graffiti 40.72312906,-73.99397513,graffiti 40.72380151,-73.99370089,graffiti 40.7237576,-73.99371893,graffiti 40.72353253,-73.9938344,graffiti 40.72342,-73.99388131,graffiti 40.72346392,-73.99383801,graffiti 40.72334315,-73.99391018,graffiti 40.72330747,-73.99392461,graffiti 40.72340896,-73.99286032,graffiti 40.72335956,-73.99287837,graffiti 40.71884465,-74.00109306,graffiti 40.71860311,-73.99923161,graffiti 40.7185537,-73.99903681,graffiti 40.71925349,-73.99449136,graffiti 40.71914645,-73.99453466,graffiti 40.71903666,-73.99458156,graffiti 40.75908381,-73.7686969,graffiti 40.8589531,-73.86762327,graffiti 40.85869587,-73.86829256,graffiti 40.8440032,-73.86569047,graffiti 40.85327044,-73.90898388,graffiti 40.69257899,-73.94747066,graffiti 40.68676949,-73.83722975,graffiti 40.68657011,-73.83792975,graffiti 40.83959715,-73.86738712,graffiti 40.67582482,-73.98414818,graffiti 40.74283522,-73.92255216,graffiti 40.83776019,-73.85978708,graffiti 40.81622366,-73.88308414,graffiti 40.8203364,-73.88422584,graffiti 40.81838433,-73.8836584,graffiti 40.81855455,-73.88370146,graffiti 40.81880987,-73.88376605,graffiti 40.8190652,-73.88383425,graffiti 40.82102834,-73.884492,graffiti 40.82057804,-73.88433381,graffiti 40.81929939,-73.88471539,graffiti 40.8191794,-73.8854996,graffiti 40.81921746,-73.88513463,graffiti 40.81939212,-73.88412994,graffiti 40.81924485,-73.88506955,graffiti 40.82158889,-73.88239908,graffiti 40.81938104,-73.88679268,graffiti 40.81867823,-73.88662768,graffiti 40.84406283,-73.82977537,graffiti 40.76462524,-73.79775229,graffiti 40.90197337,-73.86521882,graffiti 40.72085819,-73.80622947,graffiti 40.72102753,-73.80573473,graffiti 40.68438839,-73.95337228,graffiti 40.66050134,-73.93267857,graffiti 40.66117175,-73.93385291,graffiti 40.88526524,-73.86186041,graffiti 40.71602265,-73.96321977,graffiti 40.71264424,-73.95647629,graffiti 40.84501438,-73.83484383,graffiti 40.74516853,-73.86139303,graffiti 40.70595774,-73.89915457,graffiti 40.70595774,-73.89915457,graffiti 40.71875892,-73.81657459,graffiti 40.74162248,-73.92321036,graffiti 40.74367554,-73.92318634,graffiti 40.72114382,-73.94188523,graffiti 40.69164103,-73.85110098,graffiti 40.83972074,-73.87231641,graffiti 40.83949789,-73.86939671,graffiti 40.84038452,-73.86707112,graffiti 40.8404174,-73.86701685,graffiti 40.83988857,-73.87519286,graffiti 40.83992543,-73.87629146,graffiti 40.83992549,-73.87634567,graffiti 40.8399283,-73.87640349,graffiti 40.84200545,-73.8837472,graffiti 40.84207466,-73.8843398,graffiti 40.84522637,-73.89077144,graffiti 40.8474798,-73.89987254,graffiti 40.84888887,-73.90432713,graffiti 40.85173623,-73.9090908,graffiti 40.85209019,-73.90895658,graffiti 40.85216024,-73.91078913,graffiti 40.73972847,-73.92301046,graffiti 40.68641888,-73.91787256,graffiti 40.79039744,-73.97489751,graffiti 40.76864212,-73.98889151,graffiti 40.76869426,-73.98885179,graffiti 40.76784053,-73.98764976,graffiti 40.77681248,-73.98293986,graffiti 40.7893299,-73.97567796,graffiti 40.7688507,-73.98873985,graffiti 40.78536177,-73.97950715,graffiti 40.78668443,-73.9778745,graffiti 40.77446908,-73.98778212,graffiti 40.78525215,-73.98048939,graffiti 40.78746686,-73.97887454,graffiti 40.78819956,-73.97808706,graffiti 40.78858913,-73.97714078,graffiti 40.79347964,-73.97429323,graffiti 40.87666176,-73.84749368,graffiti 40.79347964,-73.97429323,graffiti 40.71885978,-73.76218069,graffiti 40.79360549,-73.97253798,graffiti 40.79177781,-73.97386774,graffiti 40.79074321,-73.97462292,graffiti 40.78991718,-73.97522271,graffiti 40.78618769,-73.97822133,graffiti 40.78123398,-73.98122718,graffiti 40.78016288,-73.84133441,graffiti 40.77760831,-73.98205504,graffiti 40.77641711,-73.98212397,graffiti 40.77437858,-73.98845007,graffiti 40.77357839,-73.91380081,graffiti 40.78347926,-73.9818043,graffiti 40.78935498,-73.97752332,graffiti 40.79166296,-73.97583962,graffiti 40.60610245,-74.00981736,graffiti 40.69189598,-73.91969406,graffiti 40.86380294,-73.83366195,graffiti 40.87104865,-73.84734385,graffiti 40.87321108,-73.8533882,graffiti 40.87210917,-73.85454045,graffiti 40.87055814,-73.85651802,graffiti 40.84588686,-73.86636978,graffiti 40.84572757,-73.86629059,graffiti 40.84038427,-73.86925402,graffiti 40.84409253,-73.8693913,graffiti 40.84411175,-73.86939849,graffiti 40.84601572,-73.86863935,graffiti 40.84442057,-73.86584143,graffiti 40.84257811,-73.86519098,graffiti 40.84134341,-73.86322017,graffiti 40.83971473,-73.87184659,graffiti 40.86392075,-73.86739284,graffiti 40.86547664,-73.86472155,graffiti 40.8659034,-73.86352035,graffiti 40.85980775,-73.86853619,graffiti 40.86365452,-73.8674006,graffiti 40.86194738,-73.86745462,graffiti 40.86208189,-73.86747243,graffiti 40.86367099,-73.86740057,graffiti 40.86404702,-73.86741067,graffiti 40.86521747,-73.84421182,graffiti 40.86899069,-73.85855338,graffiti 40.86455596,-73.86370027,graffiti 40.86383522,-73.86464897,graffiti 40.85584337,-73.86763669,graffiti 40.85548383,-73.86765186,graffiti 40.8554125,-73.86767731,graffiti 40.85528073,-73.86765949,graffiti 40.84404266,-73.86423384,graffiti 40.84228324,-73.86892863,graffiti 40.87166179,-73.85454866,graffiti 40.84591981,-73.86638417,graffiti 40.84573514,-73.86809775,graffiti 40.84593787,-73.8653938,graffiti 40.84590492,-73.86538302,graffiti 40.84417616,-73.86572988,graffiti 40.84338264,-73.86547126,graffiti 40.84292132,-73.86529871,graffiti 40.84411301,-73.86570832,graffiti 40.84136751,-73.86980866,graffiti 40.84134007,-73.86981956,graffiti 40.84134559,-73.86984484,graffiti 40.84139216,-73.86976886,graffiti 40.82650906,-73.8146841,graffiti 40.84225167,-73.86772156,graffiti 40.86357769,-73.86742245,graffiti 40.8589531,-73.86762327,graffiti 40.64342912,-74.00604289,graffiti 40.64347858,-74.00485017,graffiti 40.6300666,-73.96121723,graffiti 40.89732064,-73.8671562,graffiti 40.73100552,-73.96089869,graffiti 40.67724423,-74.01301485,graffiti 40.7120592,-73.92824026,graffiti 40.70545369,-73.78124335,graffiti 40.70543475,-73.77994859,graffiti 40.84131613,-73.78429145,graffiti 40.84342828,-73.78507612,graffiti 40.84337884,-73.78505821,graffiti 40.84332941,-73.7850403,graffiti 40.84327997,-73.78502239,graffiti 40.84323053,-73.78500447,graffiti 40.89691432,-73.86706658,graffiti 40.76487896,-73.90510844,graffiti 40.63139531,-74.01380572,graffiti 40.75632425,-73.80359603,graffiti 40.75639994,-73.80452706,graffiti 40.78947678,-73.96997927,graffiti 40.78747349,-73.97144271,graffiti 40.78671848,-73.97060163,graffiti 40.78682036,-73.97191605,graffiti 40.78670236,-73.97200277,graffiti 40.78906879,-73.97401686,graffiti 40.70088889,-73.94477366,graffiti 40.79015278,-73.97322556,graffiti 40.79035593,-73.9733916,graffiti 40.79103094,-73.97258599,graffiti 40.6516813,-73.8380073,graffiti 40.86174999,-73.92596745,graffiti 40.87111314,-73.88662145,graffiti 40.63370321,-73.98274946,graffiti 40.63370321,-73.98274946,graffiti 40.72051028,-74.01012282,graffiti 40.87099589,-73.88740626,graffiti 40.72384834,-73.99923877,graffiti 40.69447755,-73.85415267,graffiti 40.75325484,-73.88398871,graffiti 40.61848441,-73.99267343,graffiti 40.8416677,-73.78442403,graffiti 40.71827922,-73.9983045,graffiti 40.71826549,-73.99821432,graffiti 40.71454526,-73.98409568,graffiti 40.87343359,-73.87966057,graffiti 40.87339524,-73.87973296,graffiti 40.84142915,-73.86376573,graffiti 40.84135973,-73.86309364,graffiti 40.84197902,-73.85772174,graffiti 40.84210934,-73.85656492,graffiti 40.8422614,-73.85525265,graffiti 40.84274633,-73.85455044,graffiti 40.84251927,-73.85297516,graffiti 40.84254912,-73.85270764,graffiti 40.84267923,-73.85143516,graffiti 40.84273373,-73.85112422,graffiti 40.84281784,-73.85037227,graffiti 40.8428014,-73.84829053,graffiti 40.84261393,-73.84559477,graffiti 40.84210952,-73.84402017,graffiti 40.87661629,-73.90489835,graffiti 40.74592797,-73.95164744,graffiti 40.74455255,-73.95093749,graffiti 40.87948773,-73.91245208,graffiti 40.74491455,-73.95021545,graffiti 40.88003495,-73.84540661,graffiti 40.72122254,-73.97954851,graffiti 40.64385191,-73.99617317,graffiti 40.62554221,-74.03314234,graffiti 40.59959962,-73.7613163,graffiti 40.73470109,-74.00217221,graffiti 40.86992406,-73.83587751,graffiti 40.79185971,-73.97197893,graffiti 40.79317968,-73.97101771,graffiti 40.79347063,-73.97105009,graffiti 40.78896361,-73.97037674,graffiti 40.7886096,-73.97061163,graffiti 40.78526987,-73.97307225,graffiti 40.78528642,-73.97342973,graffiti 40.7897137,-73.97354714,graffiti 40.78686787,-73.97562469,graffiti 40.78483158,-73.9770843,graffiti 40.7874085,-73.97522726,graffiti 40.85727455,-73.93232757,graffiti 40.7937203,-73.97062382,graffiti 40.79262711,-73.96770985,graffiti 40.79137302,-73.96862053,graffiti 40.78793453,-73.97113194,graffiti 40.78633464,-73.97229542,graffiti 40.79100898,-73.97257516,graffiti 40.79202984,-73.9718344,graffiti 40.79306362,-73.96804189,graffiti 40.78345958,-73.97905275,graffiti 40.78290803,-73.97984733,graffiti 40.78012241,-73.98155247,graffiti 40.78412629,-73.97762258,graffiti 40.78455446,-73.97760077,graffiti 40.78480963,-73.97712764,graffiti 40.78594303,-73.9763003,graffiti 40.78616532,-73.97613772,graffiti 40.78541337,-73.9766616,graffiti 40.78537472,-73.97556023,graffiti 40.78607201,-73.97618109,graffiti 40.78685414,-73.97561025,graffiti 40.78816043,-73.97465641,graffiti 40.85707699,-73.93242899,graffiti 40.8375246,-73.86713466,graffiti 40.83754358,-73.86692863,graffiti 40.83712119,-73.86718245,graffiti 40.83681821,-73.86626513,graffiti 40.82522441,-73.85924622,graffiti 40.83695597,-73.86436395,graffiti 40.83777665,-73.86437312,graffiti 40.83776633,-73.86730042,graffiti 40.83771967,-73.8672969,graffiti 40.8347147,-73.8630242,graffiti 40.83763455,-73.86726815,graffiti 40.8263062,-73.85955106,graffiti 40.82711927,-73.86007328,graffiti 40.82714948,-73.86008767,graffiti 40.83490684,-73.86303464,graffiti 40.83204873,-73.86231419,graffiti 40.83200754,-73.86229621,graffiti 40.82772621,-73.86037191,graffiti 40.82769601,-73.86035752,graffiti 40.82674856,-73.85992952,graffiti 40.82479707,-73.85993725,graffiti 40.82498377,-73.85998021,graffiti 40.82452688,-73.85894057,graffiti 40.81495318,-73.85663068,graffiti 40.81501358,-73.856645,graffiti 40.81498338,-73.85663784,graffiti 40.81158216,-73.85622611,graffiti 40.81157395,-73.85624781,graffiti 40.80994258,-73.85544576,graffiti 40.80990963,-73.85543861,graffiti 40.80980256,-73.85541356,graffiti 40.80970921,-73.85539208,graffiti 40.83818321,-73.84301024,graffiti 40.59025278,-73.9595553,graffiti 40.70805539,-73.95062892,graffiti 40.70807711,-73.95688685,graffiti 40.709248,-73.96143446,graffiti 40.71214925,-73.961541,graffiti 40.71136228,-73.9560551,graffiti 40.67611976,-73.88498092,graffiti 40.67860761,-73.88888477,graffiti 40.7551404,-73.80470762,graffiti 40.80010122,-73.9524605,graffiti 40.71585511,-73.96287357,graffiti 40.71525635,-73.96164742,graffiti 40.71579743,-73.96275816,graffiti 40.71545972,-73.96242648,graffiti 40.7147125,-73.96050063,graffiti 40.75086281,-73.85824478,graffiti 40.72365475,-73.9527351,graffiti 40.67760285,-73.89452865,graffiti 40.61250809,-73.98387868,graffiti 40.71517058,-73.94621556,graffiti 40.66867982,-73.98178155,graffiti 40.71677437,-73.90177518,graffiti 40.71677437,-73.90177518,graffiti 40.71691661,-73.85033026,graffiti 40.7182151,-73.93656681,graffiti 40.63537018,-74.00969917,graffiti 40.63926805,-74.00562094,graffiti 40.63874925,-74.00616137,graffiti 40.63818654,-74.00674502,graffiti 40.63648191,-74.00852114,graffiti 40.6340938,-74.01032588,graffiti 40.63233284,-74.02148707,graffiti 40.63237127,-74.02146907,graffiti 40.63458099,-74.02056905,graffiti 40.90011529,-73.86765342,graffiti 40.75866222,-73.98873796,graffiti 40.87780139,-73.86563666,graffiti 40.87781785,-73.8656294,graffiti 40.87778209,-73.86555353,graffiti 40.87774347,-73.8653945,graffiti 40.87776278,-73.86547401,graffiti 40.87824366,-73.8659576,graffiti 40.86802395,-73.86728342,graffiti 40.87626318,-73.8669777,graffiti 40.87504187,-73.86705246,graffiti 40.87405382,-73.86708336,graffiti 40.87213535,-73.86714505,graffiti 40.87208594,-73.86714515,graffiti 40.87211064,-73.8671451,graffiti 40.87183344,-73.86715288,graffiti 40.86566909,-73.86736405,graffiti 40.86240026,-73.86746095,graffiti 40.84768946,-73.86816978,graffiti 40.85980112,-73.86753843,graffiti 40.84888873,-73.86802282,graffiti 40.84774049,-73.86719377,graffiti 40.84758408,-73.86722661,graffiti 40.84402788,-73.86567596,graffiti 40.84099127,-73.86485447,graffiti 40.84080678,-73.86434525,graffiti 40.84082323,-73.86433076,graffiti 40.84074636,-73.86431285,graffiti 40.84059802,-73.86421196,graffiti 40.84048542,-73.86415436,graffiti 40.83937892,-73.86383136,graffiti 40.84118028,-73.86453604,graffiti 40.83840435,-73.86365989,graffiti 40.71421685,-73.94940872,graffiti 40.65278298,-74.01093423,graffiti 40.6795365,-73.87913436,graffiti 40.67766307,-73.88573176,graffiti 40.67766307,-73.88573176,graffiti 40.67777787,-73.88525206,graffiti 40.67777787,-73.88525206,graffiti 40.67972672,-73.88530639,graffiti 40.67986906,-73.88492037,graffiti 40.72271198,-73.99696955,graffiti 40.70277418,-73.93368179,graffiti 40.74605824,-73.85287045,graffiti 40.69803214,-73.82115399,graffiti 40.69948409,-73.82113206,graffiti 40.7009814,-73.82204049,graffiti 40.60983169,-73.93123141,graffiti 40.83497964,-73.86193952,graffiti 40.86801663,-73.88894069,graffiti 40.66576472,-73.72983473,graffiti 40.82817612,-73.85140611,graffiti 40.83973271,-73.865934,graffiti 40.61976384,-73.93374986,graffiti 40.69816533,-73.82031695,graffiti 40.85853001,-73.89083274,graffiti 40.63687298,-73.92200858,graffiti 40.77451396,-73.92092309,graffiti 40.77874868,-73.79102594,graffiti 40.69563195,-73.80035612,graffiti 40.74582031,-73.83526296,graffiti 40.89610046,-73.87310876,graffiti 40.6363642,-74.00064494,graffiti 40.63490668,-74.00286073,graffiti 40.62134408,-73.98792542,graffiti 40.71790333,-73.90279442,graffiti 40.70362289,-73.93469803,graffiti 40.70753802,-73.93185198,graffiti 40.71181914,-73.93538256,graffiti 40.71190132,-73.9350867,graffiti 40.71217668,-73.93668077,graffiti 40.71245334,-73.93567051,graffiti 40.71678549,-73.74213469,graffiti 40.71082036,-73.93594622,graffiti 40.71023838,-73.93577004,graffiti 40.71045447,-73.93444966,graffiti 40.71009152,-73.93333185,graffiti 40.7078265,-73.93232058,graffiti 40.90660252,-73.84879607,graffiti 40.90127661,-73.85208191,graffiti 40.90121902,-73.85212183,graffiti 40.89742689,-73.85509635,graffiti 40.88950571,-73.8595188,graffiti 40.87016471,-73.86719237,graffiti 40.88685611,-73.86098189,graffiti 40.88524604,-73.8618713,graffiti 40.8400897,-73.87338184,graffiti 40.829413,-73.91948834,graffiti 40.77618463,-73.90860181,graffiti 40.74421818,-73.91064136,graffiti 40.70391588,-73.93841621,graffiti 40.70522366,-73.93570995,graffiti 40.70722225,-73.9364366,graffiti 40.70686184,-73.93491848,graffiti 40.70793829,-73.93106527,graffiti 40.70794923,-73.93101116,graffiti 40.70804494,-73.93040871,graffiti 40.70807228,-73.93024276,graffiti 40.70900736,-73.9244815,graffiti 40.6418479,-74.00942986,graffiti 40.71535649,-73.96586428,graffiti 40.68628605,-73.83892922,graffiti 40.70005267,-73.82861755,graffiti 40.82545425,-73.92640529,graffiti 40.73674484,-73.95360627,graffiti 40.78888522,-73.9754795,graffiti 40.78360227,-73.95156592,graffiti 40.60558022,-73.98379032,graffiti 40.70791946,-73.90467374,graffiti 40.82006697,-73.90146736,graffiti 40.82005829,-73.90419516,graffiti 40.87627143,-73.86699938,graffiti 40.84093466,-73.87300798,graffiti 40.614473,-74.03124229,graffiti 40.87758424,-73.90377959,graffiti 40.85478061,-73.8647903,graffiti 40.85445418,-73.86495363,graffiti 40.85444644,-73.86537297,graffiti 40.85443962,-73.86423431,graffiti 40.85445828,-73.86611398,graffiti 40.85437777,-73.86769744,graffiti 40.6745351,-74.01336401,graffiti 40.71284759,-73.95708577,graffiti 40.71262776,-73.95643302,graffiti 40.70758681,-73.94064907,graffiti 40.7078336,-73.94573094,graffiti 40.70823868,-73.94336088,graffiti 40.70867514,-73.94343265,graffiti 40.71319063,-73.9441755,graffiti 40.68741348,-73.87106478,graffiti 40.6355543,-73.97401178,graffiti 40.71446168,-73.96581063,graffiti 40.68059629,-73.86462429,graffiti 40.76352625,-73.87158527,graffiti 40.77459965,-73.90368649,graffiti 40.68901686,-73.92393442,graffiti 40.71651662,-73.96293452,graffiti 40.75263486,-73.9375663,graffiti 40.7014457,-73.84109258,graffiti 40.84106131,-73.87335831,graffiti 40.87763043,-73.86732572,graffiti 40.75818041,-73.8024066,graffiti 40.75838666,-73.80424329,graffiti 40.75838391,-73.8042433,graffiti 40.76136289,-73.96222732,graffiti 40.72211141,-73.95086382,graffiti 40.64115088,-74.007275,graffiti 40.63396792,-74.00426221,graffiti 40.63844198,-74.00231681,graffiti 40.63792315,-74.00444622,graffiti 40.6372864,-74.00342291,graffiti 40.63731104,-74.00497943,graffiti 40.83945442,-73.86738379,graffiti 40.85506943,-73.86769245,graffiti 40.84572177,-73.86368103,graffiti 40.63169911,-73.9680363,graffiti 40.73613172,-73.89103328,graffiti 40.72176334,-73.9403298,graffiti 40.73673465,-73.89597586,graffiti 40.73823596,-73.89589413,graffiti 40.73960131,-73.89421039,graffiti 40.73965195,-73.892572,graffiti 40.73987534,-73.8937264,graffiti 40.73816215,-73.88468257,graffiti 40.7375607,-73.87640935,graffiti 40.74357234,-73.88775152,graffiti 40.72242119,-73.94999415,graffiti 40.7225662,-73.94894421,graffiti 40.72771232,-73.9424676,graffiti 40.72587575,-73.94183059,graffiti 40.72347599,-73.94018757,graffiti 40.72596859,-73.94088164,graffiti 40.72597942,-73.94059661,graffiti 40.72669718,-73.93799107,graffiti 40.71797868,-73.94667504,graffiti 40.86549653,-73.85842343,graffiti 40.87815343,-73.88130821,graffiti 40.61077523,-74.13229879,graffiti 40.68174225,-73.92250053,graffiti 40.69515462,-73.84507079,graffiti 40.75793472,-73.79531447,graffiti 40.6830846,-73.92273693,graffiti 40.83199348,-73.92850117,graffiti 40.67822841,-73.92171145,graffiti 40.68110814,-73.9223931,graffiti 40.68127284,-73.92242536,graffiti 40.78914603,-73.97578997,graffiti 40.76757389,-73.89514429,graffiti 40.70880545,-73.95239936,graffiti 40.70870378,-73.9521181,graffiti 40.84917199,-73.88944566,graffiti 40.7602029,-73.73163917,graffiti 40.71298985,-73.94920404,graffiti 40.75828238,-73.80425803,graffiti 40.71886368,-73.99347408,graffiti 40.72131194,-73.99242042,graffiti 40.72116914,-73.99141753,graffiti 40.72091111,-73.99108927,graffiti 40.72012061,-73.99097033,graffiti 40.71870989,-73.99218623,graffiti 40.7189953,-73.99154407,graffiti 40.71901726,-73.9915116,graffiti 40.89550075,-73.87691506,graffiti 40.63571301,-74.14703038,graffiti 40.63595239,-74.14657333,graffiti 40.68205066,-73.83683385,graffiti 40.63128864,-74.02708179,graffiti 40.73881332,-73.88813483,graffiti 40.86546242,-73.85747264,graffiti 40.74034924,-73.70333707,graffiti 40.76409038,-73.88882519,graffiti 40.74067479,-73.85865619,graffiti 40.66522244,-73.99037219,graffiti 40.8456801,-73.91455675,graffiti 40.78014004,-73.84676872,graffiti 40.78480282,-73.84844796,graffiti 40.77859756,-73.8468156,graffiti 40.6726192,-73.95435385,graffiti 40.69585936,-73.97209501,graffiti 40.67595208,-73.95622985,graffiti 40.67631977,-73.95593759,graffiti 40.67773087,-73.96471544,graffiti 40.67871904,-73.964906,graffiti 40.67830701,-73.9638715,graffiti 40.68074399,-73.96269481,graffiti 40.68062851,-73.96206754,graffiti 40.68080997,-73.96300484,graffiti 40.67815413,-73.9582041,graffiti 40.67866554,-73.96072027,graffiti 40.67884421,-73.9614881,graffiti 40.72516826,-73.95562749,graffiti 40.72360025,-73.95371283,graffiti 40.6673541,-73.78305891,graffiti 40.67247224,-73.9576561,graffiti 40.6728637,-73.95491246,graffiti 40.72142742,-73.99648619,graffiti 40.72077412,-73.99537869,graffiti 40.6533845,-73.97437965,graffiti 40.73463393,-73.95312062,graffiti 40.89880031,-73.86740645,graffiti 40.75882255,-73.92545738,graffiti 40.7225116,-73.95632915,graffiti 40.72530896,-73.95752151,graffiti 40.72574809,-73.95744185,graffiti 40.72771232,-73.9424676,graffiti 40.84195331,-73.88376537,graffiti 40.75839215,-73.80424327,graffiti 40.75216628,-73.89978842,graffiti 40.69795184,-73.83540288,graffiti 40.69393366,-73.85382209,graffiti 40.66522136,-73.9599496,graffiti 40.66291914,-73.95433165,graffiti 40.73505464,-73.95504357,graffiti 40.7347829,-73.95500046,graffiti 40.68687623,-73.91644052,graffiti 40.74502413,-73.8875542,graffiti 40.72307869,-73.98390605,graffiti 40.69453318,-73.9189372,graffiti 40.67756886,-73.97493638,graffiti 40.7059876,-73.87888443,graffiti 40.72102753,-73.80573473,graffiti 40.70335731,-73.8781282,graffiti 40.70607547,-73.87892033,graffiti 40.69904188,-73.91384669,graffiti 40.69364382,-73.92285452,graffiti 40.75562165,-73.866984,graffiti 40.70750658,-73.92542099,graffiti 40.90007312,-73.85758653,graffiti 40.58880595,-73.95160639,graffiti 40.58768129,-73.95333539,graffiti 40.58845117,-73.94999006,graffiti 40.58818863,-73.95224051,graffiti 40.7084173,-73.95645741,graffiti 40.74533227,-73.90349423,graffiti 40.69797651,-73.92094175,graffiti 40.70301325,-73.91716686,graffiti 40.70448122,-73.91650501,graffiti 40.69987816,-73.92024705,graffiti 40.86215541,-73.90271372,graffiti 40.88562559,-73.90984371,graffiti 40.80212313,-73.95703183,graffiti 40.87704454,-73.83834778,graffiti 40.87634511,-73.83672951,graffiti 40.88559855,-73.85610583,graffiti 40.59245835,-73.99449101,graffiti 40.72581122,-73.95057608,graffiti 40.69916165,-73.85319033,graffiti 40.7082118,-73.92948156,graffiti 40.8893236,-73.85216276,graffiti 40.69916165,-73.85319033,graffiti 40.75829061,-73.80425801,graffiti 40.6323014,-73.98913397,graffiti 40.75089483,-73.90895051,graffiti 40.81129101,-73.85606418,graffiti 40.76025236,-73.80381908,graffiti 40.67194281,-73.91394659,graffiti 40.70850633,-73.75169983,graffiti 40.85556074,-73.7915112,graffiti 40.85233995,-73.7893127,graffiti 40.81547713,-73.91816489,graffiti 40.76229605,-73.87108949,graffiti 40.74818837,-73.98988019,graffiti 40.82769725,-73.94752298,graffiti 40.71222572,-73.95312195,graffiti 40.72128904,-73.759607,graffiti 40.63676529,-74.13500215,graffiti 40.76042868,-73.81757886,graffiti 40.72552826,-73.87440406,graffiti 40.69752127,-73.93469318,graffiti 40.84200073,-73.8575193,graffiti 40.59492897,-74.08678954,graffiti 40.61004713,-74.00160991,graffiti 40.70768119,-73.96282401,graffiti 40.71785922,-73.99617253,graffiti 40.71433208,-73.99348535,graffiti 40.64007063,-74.02019241,graffiti 40.63943403,-74.01912928,graffiti 40.67936582,-73.9860113,graffiti 40.69458053,-73.9429722,graffiti 40.754464,-73.87240403,graffiti 40.74978444,-73.87767514,graffiti 40.75154416,-73.87799313,graffiti 40.75442379,-73.87835962,graffiti 40.75579578,-73.80273492,graffiti 40.85499852,-73.93120205,graffiti 40.8505101,-73.93448514,graffiti 40.85131893,-73.93298788,graffiti 40.85622365,-73.93288172,graffiti 40.68507728,-73.96056145,graffiti 40.75158542,-73.9358565,graffiti 40.62036481,-73.99864559,graffiti 40.62068047,-73.99890854,graffiti 40.73309174,-73.95401294,graffiti 40.63743647,-74.01472215,graffiti 40.71114444,-73.9608887,graffiti 40.69870887,-73.8331326,graffiti 40.7246225,-73.9568076,graffiti 40.7075012,-73.78854054,graffiti 40.59951825,-73.9500898,graffiti 40.59822688,-73.94147728,graffiti 40.71095507,-73.94718204,graffiti 40.87300431,-73.88952897,graffiti 40.86895388,-73.89624267,graffiti 40.86516883,-73.8992096,graffiti 40.86095016,-73.90232866,graffiti 40.67282257,-73.98860105,graffiti 40.66977729,-73.97918578,graffiti 40.66973064,-73.97922545,graffiti 40.67543511,-73.98449436,graffiti 40.67446308,-73.98190615,graffiti 40.67488585,-73.98238191,graffiti 40.6721785,-73.97674809,graffiti 40.67769447,-73.98791882,graffiti 40.69739324,-73.93163876,graffiti 40.70229367,-73.92448911,graffiti 40.8668337,-73.8978838,graffiti 40.86378552,-73.89613504,graffiti 40.86641312,-73.89413158,graffiti 40.86998951,-73.89123335,graffiti 40.87225237,-73.88963508,graffiti 40.87490556,-73.88867607,graffiti 40.87403313,-73.88906804,graffiti 40.71095507,-73.94718204,graffiti 40.74211821,-73.91393534,graffiti 40.74601794,-73.91317964,graffiti 40.71828718,-73.99191212,graffiti 40.71828718,-73.99191212,graffiti 40.86271762,-73.88998351,graffiti 40.79318171,-73.96827297,graffiti 40.79316248,-73.96823326,graffiti 40.793146,-73.96819354,graffiti 40.86218106,-73.89146665,graffiti 40.63020666,-74.01504119,graffiti 40.63527533,-74.0211025,graffiti 40.63812617,-74.02594598,graffiti 40.64007485,-74.00836306,graffiti 40.63781295,-74.01074081,graffiti 40.63779648,-74.01075883,graffiti 40.63731334,-74.01126318,graffiti 40.63718149,-74.01233326,graffiti 40.6372007,-74.0123657,graffiti 40.69683144,-73.89921886,graffiti 40.69737154,-73.89851481,graffiti 40.79312952,-73.96815382,graffiti 40.87585921,-73.88435336,graffiti 40.87545202,-73.88613312,graffiti 40.76645082,-73.90739858,graffiti 40.74615216,-73.99651375,graffiti 40.74754365,-73.99406315,graffiti 40.70949717,-73.95248544,graffiti 40.82496244,-73.86989496,graffiti 40.6986556,-73.94116552,graffiti 40.6961224,-73.95364897,graffiti 40.69121619,-73.95736293,graffiti 40.69932846,-73.9540759,graffiti 40.69954973,-73.93987003,graffiti 40.69867877,-73.93822991,graffiti 40.69803039,-73.93709451,graffiti 40.69794797,-73.93694673,graffiti 40.69659084,-73.93478064,graffiti 40.69492292,-73.93160163,graffiti 40.69380228,-73.93030818,graffiti 40.69361115,-73.93198883,graffiti 40.69270343,-73.93335645,graffiti 40.69196778,-73.93326703,graffiti 40.69132216,-73.92772528,graffiti 40.68911694,-73.93027702,graffiti 40.68264426,-73.92944731,graffiti 40.68247654,-73.92897516,graffiti 40.60741428,-74.06749479,graffiti 40.74648288,-73.85659036,graffiti 40.68609237,-73.8678799,graffiti 40.68662207,-73.86783918,graffiti 40.731052,-73.96036466,graffiti 40.86169962,-73.85762532,graffiti 40.86334746,-73.86532602,graffiti 40.86694258,-73.86731812,graffiti 40.74777918,-73.87877236,graffiti 40.74779015,-73.87876512,graffiti 40.74754644,-73.88466272,graffiti 40.7473507,-73.8865614,graffiti 40.64501559,-73.9935786,graffiti 40.74052534,-73.89025384,graffiti 40.83647171,-73.94668848,graffiti 40.83573624,-73.94691313,graffiti 40.66985951,-73.91767666,graffiti 40.67631819,-73.91061697,graffiti 40.67630429,-73.91038265,graffiti 40.87844814,-73.91704593,graffiti 40.71861655,-73.99187961,graffiti 40.71828718,-73.99191212,graffiti 40.59804688,-74.06648786,graffiti 40.85812478,-73.86812379,graffiti 40.76025236,-73.80381908,graffiti 40.78396854,-73.84853291,graffiti 40.75276515,-73.87253722,graffiti 40.72576132,-73.99477584,graffiti 40.70571793,-73.92687651,graffiti 40.84253297,-73.84256266,graffiti 40.72125515,-73.75914896,graffiti 40.75085141,-73.91685834,graffiti 40.69274974,-73.94289804,graffiti 40.68862331,-73.95996439,graffiti 40.68859987,-73.95588621,graffiti 40.68861354,-73.95575639,graffiti 40.68862996,-73.95562296,graffiti 40.68915243,-73.95122346,graffiti 40.68902345,-73.95128485,graffiti 40.68858425,-73.95119863,graffiti 40.68775404,-73.95477258,graffiti 40.67394748,-73.95387707,graffiti 40.6893811,-73.93615432,graffiti 40.68978683,-73.95207038,graffiti 40.69080679,-73.95621289,graffiti 40.69075213,-73.95685118,graffiti 40.68403184,-73.95403235,graffiti 40.68414713,-73.95405751,graffiti 40.6800387,-73.94290171,graffiti 40.68197663,-73.93783075,graffiti 40.68292804,-73.95304159,graffiti 40.68001653,-73.94247269,graffiti 40.67966471,-73.93633308,graffiti 40.67974812,-73.94956827,graffiti 40.67979875,-73.95243088,graffiti 40.68071402,-73.95557775,graffiti 40.86131043,-73.90994536,graffiti 40.86127478,-73.90998518,graffiti 40.760945,-73.83035238,graffiti 40.78103378,-73.84598672,graffiti 40.78294944,-73.84585952,graffiti 40.78403903,-73.84580644,graffiti 40.61671081,-73.95470545,graffiti 40.87888993,-73.90615352,graffiti 40.72253229,-73.98261102,graffiti 40.7002897,-73.9124602,graffiti 40.7583123,-73.91403353,graffiti 40.7601617,-73.7316249,graffiti 40.72256363,-73.9937479,graffiti 40.7154559,-73.82113248,graffiti 40.55101674,-74.1552859,graffiti 40.72630441,-73.74093612,graffiti 40.72633742,-73.74096846,graffiti 40.72633742,-73.74096846,graffiti 40.80004623,-73.96812884,graffiti 40.80057536,-73.96601562,graffiti 40.70715171,-73.91258824,graffiti 40.81849559,-73.89984028,graffiti 40.6409498,-74.07678549,graffiti 40.74540437,-73.71500388,graffiti 40.8418784,-73.85848092,graffiti 40.67638908,-73.82083709,graffiti 40.84702639,-73.86678677,graffiti 40.84636865,-73.86065085,graffiti 40.84561533,-73.86419087,graffiti 40.84124969,-73.86999321,graffiti 40.82127594,-73.9505124,graffiti 40.84446509,-73.86875807,graffiti 40.84284937,-73.86956361,graffiti 40.84271962,-73.87133482,graffiti 40.84185994,-73.87081243,graffiti 40.87701479,-73.90223636,graffiti 40.81829615,-73.95284491,graffiti 40.64041262,-73.99432131,graffiti 40.6404236,-73.99432131,graffiti 40.75101809,-73.87886752,graffiti 40.61220338,-74.15160681,graffiti 40.7928124,-73.97310892,graffiti 40.7384073,-73.93482271,graffiti 40.71814022,-73.79943734,graffiti 40.83194014,-73.88886359,graffiti 40.83194014,-73.88886359,graffiti 40.82087714,-73.88986119,graffiti 40.72285427,-73.98957017,graffiti 40.87417861,-73.87818755,graffiti 40.624817,-74.02455749,graffiti 40.87559651,-73.90986093,graffiti 40.62301615,-74.00576007,graffiti 40.73969503,-73.98124249,graffiti 40.73973622,-73.98133631,graffiti 40.82694858,-73.84671151,graffiti 40.72383175,-73.89928987,graffiti 40.72473049,-73.89753873,graffiti 40.70874171,-73.7991951,graffiti 40.70556886,-73.794588,graffiti 40.70440085,-73.79684939,graffiti 40.69734295,-73.81237446,graffiti 40.77333403,-73.90011039,graffiti 40.85518789,-73.89478928,graffiti 40.66572691,-73.96142358,graffiti 40.66568298,-73.96141279,graffiti 40.66490467,-73.92928224,graffiti 40.64640999,-74.00539092,graffiti 40.71592136,-74.00535325,graffiti 40.70764798,-73.91937572,graffiti 40.72887515,-73.98084866,graffiti 40.820809,-73.89938879,graffiti 40.69170674,-73.91990705,graffiti 40.6379608,-74.01414937,graffiti 40.86677515,-73.86732207,graffiti 40.71268815,-73.99877718,graffiti 40.71992849,-73.99107136,graffiti 40.71959642,-73.99168108,graffiti 40.71941522,-73.99108947,graffiti 40.71923416,-73.99240984,graffiti 40.7158583,-73.7737204,graffiti 40.69610116,-73.81335524,graffiti 40.68332109,-73.80647195,graffiti 40.68332109,-73.80647195,graffiti 40.68332383,-73.80647194,graffiti 40.71495091,-73.77429343,graffiti 40.71519057,-73.7733403,graffiti 40.76244258,-73.92935917,graffiti 40.69595709,-73.83782759,graffiti 40.70568135,-73.91010511,graffiti 40.67363209,-73.88408756,graffiti 40.75840216,-73.92910717,graffiti 40.84689997,-73.78635164,graffiti 40.84697688,-73.78638031,graffiti 40.67887735,-73.98678654,graffiti 40.88243666,-73.89718719,graffiti 40.86737622,-73.86730279,graffiti 40.86695195,-73.86830875,graffiti 40.86669395,-73.86831288,graffiti 40.72208167,-73.97967091,graffiti 40.60763717,-74.00329534,graffiti 40.75235477,-73.87627001,graffiti 40.68296274,-73.91720979,graffiti 40.73841338,-73.98217746,graffiti 40.63530979,-74.00973519,graffiti 40.83998128,-73.83726689,graffiti 40.71072993,-73.95336828,graffiti 40.7446781,-73.91635359,graffiti 40.70685712,-73.95349362,graffiti 40.73529584,-73.98573254,graffiti 40.83159083,-73.86739585,graffiti 40.76472434,-73.82293872,graffiti 40.68566931,-73.8651945,graffiti 40.8275772,-73.90897566,graffiti 40.82868558,-73.90836348,graffiti 40.82868556,-73.9083418,graffiti 40.82899832,-73.90816792,graffiti 40.84270902,-73.90252531,graffiti 40.68111729,-73.98875466,graffiti 40.7041637,-73.93017472,graffiti 40.7261527,-73.89497135,graffiti 40.63391001,-73.96336951,graffiti 40.67191171,-73.99394371,graffiti 40.84704705,-73.8321388,graffiti 40.86407943,-73.89337969,graffiti 40.67099333,-73.92193624,graffiti 40.67657143,-73.9151844,graffiti 40.83144712,-73.84462334,graffiti 40.83006332,-73.84427967,graffiti 40.64778913,-74.01927942,graffiti 40.64299075,-74.02199497,graffiti 40.64395687,-74.02224753,graffiti 40.68506583,-73.91427579,graffiti 40.66348433,-73.88934971,graffiti 40.65704023,-73.9021803,graffiti 40.7741849,-73.84542488,graffiti 40.76205096,-73.8340027,graffiti 40.76202079,-73.83401722,graffiti 40.76117358,-73.83465826,graffiti 40.76127872,-73.83523917,graffiti 40.76091624,-73.83512095,graffiti 40.760054,-73.83484874,graffiti 40.86226786,-73.92051507,graffiti 40.62911408,-74.01617937,graffiti 40.67683791,-73.91551214,graffiti 40.67030669,-73.90660923,graffiti 40.78297414,-73.84585946,graffiti 40.88302431,-73.86310187,graffiti 40.837997,-73.87226551,graffiti 40.61892775,-74.07769309,graffiti 40.67684067,-73.91553376,graffiti 40.68652161,-73.82907059,graffiti 40.83319889,-73.85135153,graffiti 40.8363828,-73.84718849,graffiti 40.83291223,-73.86370728,graffiti 40.8669056,-73.92339108,graffiti 40.83760575,-73.86610453,graffiti 40.83762746,-73.86589127,graffiti 40.66015462,-73.73946295,graffiti 40.83067043,-73.91612262,graffiti 40.71045447,-73.93444966,graffiti 40.71024528,-73.93342187,graffiti 40.66973062,-73.91048161,graffiti 40.66889904,-73.90712307,graffiti 40.87318483,-73.87543409,graffiti 40.71008937,-73.79451636,graffiti 40.75211678,-73.83526905,graffiti 40.90487404,-73.90638091,graffiti 40.73016127,-74.00191589,graffiti 40.82623724,-73.9479252,graffiti 40.78169373,-73.84484416,graffiti 40.71041841,-73.96500473,graffiti 40.67103913,-73.93368091,graffiti 40.87962274,-73.91687089,graffiti 40.66135843,-73.9169843,graffiti 40.66907594,-73.90866567,graffiti 40.66521503,-73.89090041,graffiti 40.66858649,-73.90756329,graffiti 40.66847586,-73.90997142,graffiti 40.66276869,-73.90898429,graffiti 40.66775911,-73.9060793,graffiti 40.6690602,-73.90616037,graffiti 40.66906838,-73.90609908,graffiti 40.6690055,-73.90640197,graffiti 40.66598811,-73.90204822,graffiti 40.66828039,-73.90251347,graffiti 40.72093328,-73.93816599,graffiti 40.71356642,-73.95631698,graffiti 40.58335797,-74.0957893,graffiti 40.59675699,-74.07920847,graffiti 40.65481731,-73.95628697,graffiti 40.70402505,-73.9483056,graffiti 40.70409645,-73.94838489,graffiti 40.82006641,-73.90081703,graffiti 40.85102388,-73.93067842,graffiti 40.81548486,-73.90332024,graffiti 40.82323873,-73.9001511,graffiti 40.82198996,-73.89710716,graffiti 40.82236262,-73.89641648,graffiti 40.82255988,-73.89601874,graffiti 40.82291059,-73.89533892,graffiti 40.82325602,-73.89489396,graffiti 40.828563,-73.87953214,graffiti 40.82317084,-73.89479654,graffiti 40.82896346,-73.87927125,graffiti 40.82330239,-73.89457955,graffiti 40.82395002,-73.89443761,graffiti 40.82592328,-73.87758937,graffiti 40.82411887,-73.89300291,graffiti 40.82554785,-73.89191302,graffiti 40.82927066,-73.8764811,graffiti 40.82546676,-73.89033777,graffiti 40.82882377,-73.87695168,graffiti 40.82880197,-73.87709626,graffiti 40.82914639,-73.87577671,graffiti 40.82600506,-73.88782565,graffiti 40.8292713,-73.87453344,graffiti 40.82928859,-73.87529585,graffiti 40.82990825,-73.87469485,graffiti 40.82952591,-73.86901519,graffiti 40.74974067,-73.85421936,graffiti 40.7018906,-73.90980727,graffiti 40.84221797,-73.85563585,graffiti 40.85851697,-73.85203241,graffiti 40.85851697,-73.85203241,graffiti 40.70124595,-73.82451386,graffiti 40.7074917,-73.79698064,graffiti 40.62134683,-73.98795063,graffiti 40.62019162,-73.991924,graffiti 40.82988515,-73.86634049,graffiti 40.68349964,-73.95474662,graffiti 40.68643738,-73.92919089,graffiti 40.68683303,-73.92984672,graffiti 40.59649118,-73.97772147,graffiti 40.6469255,-74.01211525,graffiti 40.65123092,-73.91800237,graffiti 40.67878959,-73.866427,graffiti 40.72525837,-73.87867983,graffiti 40.80764622,-73.8856531,graffiti 40.81044202,-73.88734614,graffiti 40.80923494,-73.88796229,graffiti 40.8124005,-73.89176819,graffiti 40.76257918,-73.8017871,graffiti 40.68694204,-73.99314908,graffiti 40.75539674,-73.83334432,graffiti 40.73813455,-73.88453106,graffiti 40.6546047,-73.96038485,graffiti 40.68293852,-73.91052156,graffiti 40.88236328,-73.8634721,graffiti 40.84637632,-73.93404826,graffiti 40.85956646,-73.89870836,graffiti 40.86979209,-73.89143976,graffiti 40.729275,-73.7809631,graffiti 40.85342184,-73.89959611,graffiti 40.84478528,-73.94074352,graffiti 40.7135494,-73.80983987,graffiti 40.68112442,-73.98051625,graffiti 40.6807327,-73.97114951,graffiti 40.67982074,-73.98099975,graffiti 40.68017681,-73.86042126,graffiti 40.69843231,-73.93430641,graffiti 40.74391446,-73.85713,graffiti 40.65344694,-73.88680756,graffiti 40.82174252,-73.93901171,graffiti 40.8294571,-73.84867146,graffiti 40.68282657,-73.96058081,graffiti 40.67138099,-73.983832,graffiti 40.72361229,-73.99832601,graffiti 40.74495204,-73.98711267,graffiti 40.80694613,-73.93977662,graffiti 40.72113488,-73.90394053,graffiti 40.77788891,-73.90834672,graffiti 40.70379999,-73.98810164,graffiti 40.69217562,-73.98556507,graffiti 40.68303731,-73.97926096,graffiti 40.70292711,-73.98759326,graffiti 40.702666,-73.98467557,graffiti 40.69344422,-73.99057727,graffiti 40.71254324,-73.8969695,graffiti 40.70891178,-73.96583512,graffiti 40.58418062,-73.9508141,graffiti 40.7074735,-73.92954366,graffiti 40.60867388,-74.01410715,graffiti 40.71568445,-73.74196219,graffiti 40.52405395,-74.20305932,graffiti 40.69652846,-73.92688659,graffiti 40.83136106,-73.87805635,graffiti 40.82543937,-73.89039201,graffiti 40.67731327,-73.99155296,graffiti 40.74871777,-73.87608548,graffiti 40.75372903,-73.91843565,graffiti 40.75454601,-73.91709195,graffiti 40.71548755,-73.99228761,graffiti 40.71556715,-73.99224792,graffiti 40.71633843,-73.99238131,graffiti 40.61484603,-73.95206656,graffiti 40.83423339,-73.9245345,graffiti 40.63460176,-73.93792533,graffiti 40.69589997,-73.82871477,graffiti 40.54011277,-74.17721811,graffiti 40.71971922,-73.98473298,graffiti 40.66360365,-73.93391178,graffiti 40.67611034,-73.97053863,graffiti 40.66375583,-73.96046953,graffiti 40.66474968,-73.95375367,graffiti 40.66559355,-73.95689629,graffiti 40.66658593,-73.96114553,graffiti 40.71420249,-73.75982014,graffiti 40.7627878,-73.87397281,graffiti 40.69098734,-73.95466221,graffiti 40.71665985,-73.96453611,graffiti 40.60992006,-74.06304576,graffiti 40.75449783,-73.92701787,graffiti 40.6919858,-73.98249639,graffiti 40.63946943,-74.02074351,graffiti 40.60736816,-74.00377432,graffiti 40.77967523,-73.84606208,graffiti 40.7797411,-73.84605832,graffiti 40.78150858,-73.84596035,graffiti 40.78296042,-73.84585949,graffiti 40.61656415,-73.95882618,graffiti 40.76960117,-73.90331826,graffiti 40.61037792,-73.98242054,graffiti 40.70395365,-73.94822631,graffiti 40.69144833,-73.86628625,graffiti 40.72286837,-74.00477658,graffiti 40.72286837,-74.00477658,graffiti 40.72117323,-73.90384668,graffiti 40.721165,-73.90385751,graffiti 40.60447245,-73.99800488,graffiti 40.71839172,-73.99680019,graffiti 40.71869364,-73.99661981,graffiti 40.719679,-73.99621932,graffiti 40.71986838,-73.9961652,graffiti 40.72057652,-73.99588738,graffiti 40.72118859,-73.99562398,graffiti 40.72251155,-73.99510439,graffiti 40.72247587,-73.99514047,graffiti 40.72416386,-73.99442601,graffiti 40.72436417,-73.99328594,graffiti 40.72167716,-73.99558066,graffiti 40.72374382,-73.99275927,graffiti 40.7235709,-73.99282423,graffiti 40.72352699,-73.99283867,graffiti 40.72339524,-73.99288558,graffiti 40.72331016,-73.99291806,graffiti 40.71933576,-73.99321069,graffiti 40.71862497,-73.99524898,graffiti 40.72191036,-73.9934341,graffiti 40.72185272,-73.99345575,graffiti 40.72123791,-73.99369031,graffiti 40.72054075,-73.99396094,graffiti 40.71979145,-73.99424961,graffiti 40.7230055,-73.99302993,graffiti 40.71796897,-73.99505422,graffiti 40.71792231,-73.99510112,graffiti 40.71687109,-73.99568559,graffiti 40.71576223,-73.99637827,graffiti 40.71594341,-73.99734141,graffiti 40.71195254,-73.99803052,graffiti 40.71188942,-73.99864734,graffiti 40.71407971,-73.99692665,graffiti 40.71407971,-73.99692665,graffiti 40.714162,-73.99546573,graffiti 40.71421412,-73.99463245,graffiti 40.71806514,-73.99897549,graffiti 40.71808435,-73.99898631,graffiti 40.71814199,-73.99895384,graffiti 40.71883366,-73.99851011,graffiti 40.71890777,-73.99845961,graffiti 40.7191548,-73.99834056,graffiti 40.71272644,-73.99440893,graffiti 40.71275401,-73.99773832,graffiti 40.71163687,-73.99683659,graffiti 40.71174666,-73.99686183,graffiti 40.71181802,-73.99687626,graffiti 40.71287474,-73.99633153,graffiti 40.71288571,-73.99617642,graffiti 40.71288022,-73.99605017,graffiti 40.71289943,-73.99602131,graffiti 40.71294333,-73.99548024,graffiti 40.71295978,-73.99507984,graffiti 40.71370632,-73.99434031,graffiti 40.71312163,-73.99333036,graffiti 40.66204416,-73.99268307,graffiti 40.85013158,-73.91037256,graffiti 40.76154188,-73.81342094,graffiti 40.63395523,-74.02028063,graffiti 40.62999859,-74.01016313,graffiti 40.6299629,-74.01020996,graffiti 40.62757456,-74.01378331,graffiti 40.84966835,-73.90431156,graffiti 40.63543349,-74.0261467,graffiti 40.63541976,-74.0261539,graffiti 40.73412998,-74.0072166,graffiti 40.82783284,-73.92473689,graffiti 40.74754944,-73.82956003,graffiti 40.83314399,-73.92926965,graffiti 40.60506489,-73.94291901,graffiti 40.69346632,-73.85111494,graffiti 40.76276279,-73.79689519,graffiti 40.71888943,-73.87764887,graffiti 40.70519536,-73.92521799,graffiti 40.70545641,-73.92567575,graffiti 40.7226479,-73.98493434,graffiti 40.71821406,-73.95835213,graffiti 40.66871501,-73.95866421,graffiti 40.66741733,-73.93124413,graffiti 40.66745028,-73.93126212,graffiti 40.66745028,-73.93126212,graffiti 40.63157522,-74.02179306,graffiti 40.84375779,-73.88775234,graffiti 40.73186884,-73.858029,graffiti 40.68868069,-73.84377691,graffiti 40.61385961,-74.00338929,graffiti 40.68730573,-73.95970196,graffiti 40.64931576,-74.01580228,graffiti 40.72190114,-73.98353835,graffiti 40.83343626,-73.941433,graffiti 40.75056212,-73.98559212,graffiti 40.75187426,-73.98679011,graffiti 40.62518867,-74.03121488,graffiti 40.66563632,-73.96140561,graffiti 40.8702596,-73.86617618,graffiti 40.70383631,-73.80049024,graffiti 40.72999085,-73.99222099,graffiti 40.59882276,-73.93678827,graffiti 40.7019774,-73.94817014,graffiti 40.74276575,-73.92542843,graffiti 40.74276575,-73.92542843,graffiti 40.74276575,-73.92542843,graffiti 40.8579869,-73.86756373,graffiti 40.85957747,-73.86638566,graffiti 40.78029276,-73.84602815,graffiti 40.57629193,-74.16252262,graffiti 40.57625087,-74.16243972,graffiti 40.73254582,-73.87368362,graffiti 40.74723541,-73.82879933,graffiti 40.74615165,-73.98858128,graffiti 40.74718481,-73.97762777,graffiti 40.6745727,-73.92220243,graffiti 40.73232807,-73.95968195,graffiti 40.82628285,-73.84973377,graffiti 40.82638992,-73.84975882,graffiti 40.82657113,-73.84980177,graffiti 40.80278535,-73.91790959,graffiti 40.81593799,-73.91043668,graffiti 40.81180037,-73.92386995,graffiti 40.81647695,-73.91920413,graffiti 40.8095925,-73.90734578,graffiti 40.81883608,-73.90322505,graffiti 40.81767485,-73.91703137,graffiti 40.81587788,-73.91440354,graffiti 40.70993683,-73.81632113,graffiti 40.61807948,-73.95942678,graffiti 40.61798643,-73.96017966,graffiti 40.75249225,-73.92405684,graffiti 40.69649909,-73.91988326,graffiti 40.70530805,-73.92545591,graffiti 40.70428204,-73.92627577,graffiti 40.84300101,-73.8456517,graffiti 40.76261338,-73.92598739,graffiti 40.73839632,-73.93482272,graffiti 40.62858317,-74.02302057,graffiti 40.62941367,-73.96219032,graffiti 40.62944661,-73.9621975,graffiti 40.67718599,-73.98250388,graffiti 40.85439521,-73.86855412,graffiti 40.83858182,-73.83557536,graffiti 40.83922795,-73.83636523,graffiti 40.83934343,-73.8365059,graffiti 40.65547328,-74.00485104,graffiti 40.68308926,-73.86522496,graffiti 40.69595709,-73.83782759,graffiti 40.68675262,-73.99266233,graffiti 40.71292175,-73.95723722,graffiti 40.89774615,-73.86723493,graffiti 40.89769671,-73.86720247,graffiti 40.81685874,-73.94255311,graffiti 40.77980989,-73.94724658,graffiti 40.72042995,-73.9471132,graffiti 40.81455446,-73.8225641,graffiti 40.81455446,-73.8225641,graffiti 40.72395999,-73.73354931,graffiti 40.87397901,-73.86412571,graffiti 40.61822392,-73.95658829,graffiti 40.63009556,-73.97705096,graffiti 40.63371253,-73.96382358,graffiti 40.74203507,-73.87426107,graffiti 40.70285405,-73.86972212,graffiti 40.75919241,-73.83124482,graffiti 40.75998696,-73.82841641,graffiti 40.75992977,-73.82871616,graffiti 40.75838849,-73.829572,graffiti 40.75841839,-73.82938061,graffiti 40.75792576,-73.8284903,graffiti 40.75919874,-73.82994533,graffiti 40.76128081,-73.83099768,graffiti 40.76132475,-73.83101922,graffiti 40.76223949,-73.83151867,graffiti 40.76252522,-73.83171288,graffiti 40.76219557,-73.83151517,graffiti 40.76132747,-73.83099756,graffiti 40.75993936,-73.83150283,graffiti 40.76002872,-73.83254581,graffiti 40.74180427,-73.85979054,graffiti 40.77508201,-73.92485427,graffiti 40.8394589,-73.83664295,graffiti 40.67249771,-73.89173567,graffiti 40.8248422,-73.9407396,graffiti 40.62347193,-74.02510455,graffiti 40.80126142,-73.96559268,graffiti 40.68582929,-73.96039515,graffiti 40.62272544,-73.96479855,graffiti 40.62440907,-73.94627429,graffiti 40.61313525,-73.94426638,graffiti 40.63804058,-73.9482162,graffiti 40.63496994,-73.9499588,graffiti 40.63477221,-73.94972115,graffiti 40.63846997,-73.95095784,graffiti 40.67637077,-73.95302458,graffiti 40.63671639,-73.95176261,graffiti 40.63665049,-73.95169059,graffiti 40.63651594,-73.95157179,graffiti 40.63864681,-73.95379698,graffiti 40.60962598,-74.14954445,graffiti 40.62922424,-74.02842113,graffiti 40.70783441,-73.9538933,graffiti 40.74079684,-73.87146669,graffiti 40.71873559,-73.8775265,graffiti 40.76731121,-73.90560678,graffiti 40.84957517,-73.83042996,graffiti 40.82757848,-73.94590428,graffiti 40.70941271,-73.93669422,graffiti 40.68373328,-73.79256763,graffiti 40.71704926,-73.9914866,graffiti 40.70903956,-73.9276159,graffiti 40.82599325,-73.88697655,graffiti 40.75228062,-73.87623406,graffiti 40.71713991,-73.99247501,graffiti 40.62508887,-73.97608364,graffiti 40.62508887,-73.97608364,graffiti 40.6471155,-73.99747748,graffiti 40.73852724,-74.00369153,graffiti 40.81912221,-73.95260949,graffiti 40.82468691,-73.85518971,graffiti 40.69611235,-73.99368186,graffiti 40.69595709,-73.83782759,graffiti 40.69595709,-73.83782759,graffiti 40.63080987,-73.96828892,graffiti 40.7475958,-73.99418585,graffiti 40.69745049,-73.93098235,graffiti 40.65420076,-73.91061777,graffiti 40.90359897,-73.85023182,graffiti 40.71145876,-73.95715159,graffiti 40.71135191,-73.9576855,graffiti 40.63545327,-74.08285737,graffiti 40.68001917,-73.98678631,graffiti 40.68150142,-73.98738452,graffiti 40.72259395,-73.99701645,graffiti 40.67795431,-73.83222913,graffiti 40.64983559,-74.0018307,graffiti 40.69916382,-73.93199759,graffiti 40.69840756,-73.93421988,graffiti 40.6986411,-73.93463799,graffiti 40.85803185,-73.93192914,graffiti 40.75647012,-73.92953515,graffiti 40.72982697,-73.87994517,graffiti 40.7444547,-73.88083907,graffiti 40.8680588,-73.91997666,graffiti 40.84365494,-73.90133846,graffiti 40.84267554,-73.90188204,graffiti 40.84270902,-73.90252531,graffiti 40.83597764,-73.90755839,graffiti 40.83030683,-73.91074255,graffiti 40.84686554,-73.8300176,graffiti 40.74969457,-73.90455621,graffiti 40.7494092,-73.90466129,graffiti 40.74339589,-73.89874063,graffiti 40.61946343,-73.90803836,graffiti 40.69883369,-73.91818184,graffiti 40.69882825,-73.91823955,graffiti 40.87412641,-73.88902811,graffiti 40.66756524,-73.8859401,graffiti 40.70344017,-73.79997568,graffiti 40.70980015,-73.79548753,graffiti 40.70624535,-73.80641261,graffiti 40.70983289,-73.79537561,graffiti 40.70322013,-73.80612926,graffiti 40.70219632,-73.81107325,graffiti 40.70179296,-73.80619472,graffiti 40.70182568,-73.80606479,graffiti 40.70209121,-73.81057944,graffiti 40.70196633,-73.80975029,graffiti 40.70194431,-73.80971429,graffiti 40.7017908,-73.80653735,graffiti 40.72578615,-73.99974745,graffiti 40.71983544,-74.00406929,graffiti 40.82196569,-73.95247739,graffiti 40.82151005,-73.95243798,graffiti 40.82129027,-73.9519576,graffiti 40.88755827,-73.86058259,graffiti 40.89470612,-73.85666483,graffiti 40.90363187,-73.85020642,graffiti 40.76466209,-73.91197488,graffiti 40.87680944,-73.84709196,graffiti 40.87650054,-73.84804007,graffiti 40.87470841,-73.85025712,graffiti 40.87470841,-73.85025712,graffiti 40.77338581,-73.91693491,graffiti 40.63812538,-74.16350913,graffiti 40.69798995,-73.92892618,graffiti 40.71260755,-73.94746569,graffiti 40.8587694,-73.8857821,graffiti 40.69833286,-73.9935915,graffiti 40.87454023,-73.9036032,graffiti 40.8746198,-73.90357416,graffiti 40.70814173,-73.79516078,graffiti 40.68943547,-73.9219471,graffiti 40.71142497,-73.79543926,graffiti 40.71072167,-73.79508071,graffiti 40.71091951,-73.79520274,graffiti 40.83213478,-73.87521824,graffiti 40.76157338,-73.81766958,graffiti 40.76158987,-73.81768036,graffiti 40.76373087,-73.81430285,graffiti 40.75259599,-73.87345431,graffiti 40.75256581,-73.8734688,graffiti 40.74200553,-73.86750197,graffiti 40.74200553,-73.86750197,graffiti 40.73709345,-73.86601423,graffiti 40.74200553,-73.86750197,graffiti 40.75294802,-73.87921773,graffiti 40.75374864,-73.87332218,graffiti 40.75511356,-73.86910737,graffiti 40.75574126,-73.86598755,graffiti 40.75792253,-73.85842828,graffiti 40.75784239,-73.86022964,graffiti 40.75783495,-73.8608866,graffiti 40.75759547,-73.8603204,graffiti 40.70777858,-73.80253797,graffiti 40.75987854,-73.8621349,graffiti 40.70897485,-73.79290749,graffiti 40.75735242,-73.86363809,graffiti 40.71039817,-73.79376154,graffiti 40.75497583,-73.86394615,graffiti 40.75497038,-73.86397865,graffiti 40.71116317,-73.79179332,graffiti 40.75450502,-73.86504076,graffiti 40.71116853,-73.79172477,graffiti 40.75374168,-73.87199395,graffiti 40.71112758,-73.79184393,graffiti 40.70980834,-73.79546225,graffiti 40.75094592,-73.87302434,graffiti 40.75316308,-73.87247871,graffiti 40.70492444,-73.81263805,graffiti 40.75459369,-73.86576246,graffiti 40.72084816,-73.99384186,graffiti 40.72722359,-73.98635122,graffiti 40.72098234,-73.98947667,graffiti 40.72076277,-73.98958493,graffiti 40.72058989,-73.99003951,graffiti 40.71995584,-73.98999271,graffiti 40.71990644,-73.99001797,graffiti 40.65527302,-73.99975853,graffiti 40.83335871,-73.87251653,graffiti 40.78533902,-73.9754808,graffiti 40.74915027,-73.8775572,graffiti 40.75240149,-73.87891193,graffiti 40.74786468,-73.88181102,graffiti 40.75190279,-73.87711542,graffiti 40.75063603,-73.87578957,graffiti 40.74658503,-73.8894968,graffiti 40.74329692,-73.88961413,graffiti 40.74316602,-73.8904985,graffiti 40.74793791,-73.88095554,graffiti 40.74812816,-73.87915067,graffiti 40.74959329,-73.87860664,graffiti 40.75035632,-73.87859443,graffiti 40.75150298,-73.87798598,graffiti 40.75125316,-73.87793952,graffiti 40.75132629,-73.86246299,graffiti 40.74869913,-73.86915967,graffiti 40.74825879,-73.87808576,graffiti 40.75716782,-73.87016093,graffiti 40.75725181,-73.8691898,graffiti 40.75625483,-73.87864143,graffiti 40.75625483,-73.87864143,graffiti 40.61442506,-74.00277701,graffiti 40.62620733,-74.02995089,graffiti 40.80561285,-73.9225044,graffiti 40.86813967,-73.93041833,graffiti 40.69590356,-73.90891742,graffiti 40.69713193,-73.9262945,graffiti 40.68296475,-73.97342724,graffiti 40.71716485,-73.99887089,graffiti 40.71819963,-73.99891777,graffiti 40.90123145,-73.86216364,graffiti 40.90120942,-73.86210581,graffiti 40.65024578,-73.95978922,graffiti 40.65011708,-73.9606578,graffiti 40.64167778,-73.96342651,graffiti 40.64672735,-73.97001828,graffiti 40.64642561,-73.97075354,graffiti 40.66835453,-73.99504709,graffiti 40.66864242,-73.99015901,graffiti 40.6660805,-73.9816561,graffiti 40.67109365,-73.99202238,graffiti 40.58927113,-73.94254366,graffiti 40.82444014,-73.82026503,graffiti 40.64018689,-74.02855912,graffiti 40.7194154,-73.95603897,graffiti 40.61406827,-73.99917879,graffiti 40.70839056,-73.92566527,graffiti 40.70546723,-73.93945713,graffiti 40.70690743,-73.93305009,graffiti 40.70599602,-73.94297325,graffiti 40.70579348,-73.94414563,graffiti 40.70735854,-73.93977642,graffiti 40.7073875,-73.94274483,graffiti 40.70696142,-73.94714192,graffiti 40.70836106,-73.94672963,graffiti 40.74746234,-73.88565173,graffiti 40.74908586,-73.88704207,graffiti 40.90982838,-73.90328429,graffiti 40.71357535,-73.95818549,graffiti 40.72650653,-73.94081262,graffiti 40.6892589,-73.95665382,graffiti 40.71412085,-73.99610421,graffiti 40.83752764,-73.93952487,graffiti 40.70406123,-73.94942725,graffiti 40.70396797,-73.94957158,graffiti 40.624136,-74.00613481,graffiti 40.75964803,-73.73381806,graffiti 40.68068531,-73.98081563,graffiti 40.68039486,-73.98405335,graffiti 40.67552931,-73.97409715,graffiti 40.67742159,-73.97976384,graffiti 40.67853639,-73.98229802,graffiti 40.67848699,-73.98233048,graffiti 40.67837995,-73.98237738,graffiti 40.67285562,-73.98986999,graffiti 40.67149634,-73.98435469,graffiti 40.67065274,-73.97845372,graffiti 40.67093541,-73.97822292,graffiti 40.83910697,-73.83621736,graffiti 40.60273146,-73.98639107,graffiti 40.60174676,-73.97433104,graffiti 40.85742635,-73.84707868,graffiti 40.72181706,-73.94344675,graffiti 40.62775918,-74.16860297,graffiti 40.61537319,-74.15193817,graffiti 40.85859335,-73.90338411,graffiti 40.84698976,-73.91514422,graffiti 40.73613172,-73.89103328,graffiti 40.74494997,-73.86455487,graffiti 40.74165138,-73.87478866,graffiti 40.74018505,-73.87421404,graffiti 40.74082532,-73.86753319,graffiti 40.6739544,-73.89089333,graffiti 40.73753924,-73.92056282,graffiti 40.7324995,-73.90225354,graffiti 40.90393249,-73.85347237,graffiti 40.67004593,-73.92127766,graffiti 40.61797398,-73.95616341,graffiti 40.61881944,-73.95632495,graffiti 40.61811625,-73.95496745,graffiti 40.79965112,-73.95976759,graffiti 40.60831235,-74.00440463,graffiti 40.60831235,-74.00440463,graffiti 40.70871703,-73.79921321,graffiti 40.7002685,-73.80231137,graffiti 40.69978425,-73.80484093,graffiti 40.74609168,-73.99418599,graffiti 40.74538346,-73.99277136,graffiti 40.74523248,-73.9924574,graffiti 40.74502384,-73.9919197,graffiti 40.7466155,-73.98847293,graffiti 40.74650022,-73.98849461,graffiti 40.74685431,-73.98863169,graffiti 40.74713425,-73.98839705,graffiti 40.7468982,-73.98841875,graffiti 40.86516096,-73.92490072,graffiti 40.83183364,-73.84630638,graffiti 40.74326787,-73.87463406,graffiti 40.74192834,-73.92937009,graffiti 40.7401223,-73.94439471,graffiti 40.74329115,-73.92722141,graffiti 40.75613011,-73.92569501,graffiti 40.75053251,-73.94898774,graffiti 40.71923707,-73.99552671,graffiti 40.70727997,-73.95387926,graffiti 40.70693126,-73.95356931,graffiti 40.71126413,-73.96614051,graffiti 40.71073393,-73.96460779,graffiti 40.71423147,-73.9669867,graffiti 40.71362733,-73.96599863,graffiti 40.71299611,-73.96625146,graffiti 40.71436483,-73.96327119,graffiti 40.71603942,-73.96416849,graffiti 40.71579743,-73.96275816,graffiti 40.85751875,-73.93219718,graffiti 40.83398481,-73.91823247,graffiti 40.68898754,-73.84953115,graffiti 40.74691465,-73.92365538,graffiti 40.68971552,-73.85000548,graffiti 40.74380774,-73.85518868,graffiti 40.6242076,-74.02478421,graffiti 40.73074986,-73.94627875,graffiti 40.90648613,-73.90421166,graffiti 40.72807937,-73.98206838,graffiti 40.70475728,-73.7966283,graffiti 40.70485293,-73.79638996,graffiti 40.7057951,-73.79218519,graffiti 40.70665641,-73.79804359,graffiti 40.71078083,-73.7928622,graffiti 40.70910172,-73.79788469,graffiti 40.70609408,-73.79981262,graffiti 40.717224,-73.98308858,graffiti 40.79955772,-73.96829883,graffiti 40.75018719,-73.95015737,graffiti 40.69577559,-73.95828681,graffiti 40.69577559,-73.95828681,graffiti 40.67600092,-74.01236568,graffiti 40.74190396,-73.85826745,graffiti 40.71934054,-73.961609,graffiti 40.74471001,-73.90444426,graffiti 40.70289469,-73.86925678,graffiti 40.74938462,-73.87854567,graffiti 40.85207256,-73.89468215,graffiti 40.85216162,-73.884503,graffiti 40.85583845,-73.8834266,graffiti 40.85627644,-73.88500917,graffiti 40.85657503,-73.88441942,graffiti 40.85687151,-73.88448036,graffiti 40.8571388,-73.88553185,graffiti 40.75314169,-73.86340489,graffiti 40.74022321,-73.86430105,graffiti 40.85539108,-73.88901599,graffiti 40.85536366,-73.88904134,graffiti 40.85413491,-73.88995794,graffiti 40.85404427,-73.88989302,graffiti 40.63263079,-74.02732732,graffiti 40.72567065,-73.95589053,graffiti 40.85391091,-73.89108251,graffiti 40.73042846,-73.95188961,graffiti 40.82544484,-73.89037755,graffiti 40.72463054,-73.99623347,graffiti 40.71828718,-73.99191212,graffiti 40.70506934,-73.79460396,graffiti 40.70738037,-73.79611173,graffiti 40.70814979,-73.79661073,graffiti 40.71010855,-73.79145034,graffiti 40.70523834,-73.7954871,graffiti 40.7256716,-73.74026391,graffiti 40.57747518,-73.96636313,graffiti 40.8228839,-73.81852049,graffiti 40.883145,-73.86303291,graffiti 40.74573352,-73.85437248,graffiti 40.61189849,-73.9410547,graffiti 40.712329,-73.94463072,graffiti 40.68058965,-73.96990571,graffiti 40.70873158,-73.95296931,graffiti 40.61060985,-73.93850589,graffiti 40.60311097,-73.93833633,graffiti 40.69342107,-73.83031504,graffiti 40.71235586,-73.9936695,graffiti 40.73695883,-73.8782616,graffiti 40.67231498,-73.89297967,graffiti 40.71488885,-73.94256524,graffiti 40.79634639,-73.9461283,graffiti 40.61700536,-73.95692046,graffiti 40.69576899,-73.84678232,graffiti 40.67428364,-73.87974593,graffiti 40.67413363,-73.88066188,graffiti 40.6738338,-73.88270648,graffiti 40.74690162,-73.89642554,graffiti 40.67254954,-73.89138951,graffiti 40.67252225,-73.89156259,graffiti 40.73895325,-73.85818712,graffiti 40.83494729,-73.82049684,graffiti 40.7435928,-73.90433399,graffiti 40.72079044,-73.99248542,graffiti 40.71825727,-73.99888169,graffiti 40.72512429,-73.99078565,graffiti 40.72426244,-73.99081463,graffiti 40.72394407,-73.99108165,graffiti 40.72275024,-73.99312376,graffiti 40.71848203,-73.99143952,graffiti 40.72143278,-73.99361453,graffiti 40.72138338,-73.99363257,graffiti 40.6248644,-74.12226523,graffiti 40.78617081,-73.97610883,graffiti 40.59859232,-74.08056102,graffiti 40.75414784,-73.85568234,graffiti 40.66176662,-73.90870812,graffiti 40.65720605,-73.90351359,graffiti 40.66075666,-73.91238232,graffiti 40.65635831,-73.9144208,graffiti 40.66135843,-73.9169843,graffiti 40.67203109,-73.92227749,graffiti 40.67222321,-73.92225924,graffiti 40.74433379,-73.85885413,graffiti 40.74433654,-73.85885774,graffiti 40.63766445,-74.13361678,graffiti 40.63369097,-74.15267884,graffiti 40.73656882,-73.8977659,graffiti 40.73578303,-73.89687223,graffiti 40.61809943,-73.98532174,graffiti 40.83579259,-73.90955347,graffiti 40.90554288,-73.84865016,graffiti 40.8351177,-73.90995191,graffiti 40.83520757,-73.91260792,graffiti 40.83400893,-73.91367192,graffiti 40.83341664,-73.91443518,graffiti 40.83333308,-73.9128019,graffiti 40.8286158,-73.90691098,graffiti 40.83569398,-73.90305237,graffiti 40.83965395,-73.91622694,graffiti 40.83951092,-73.9158079,graffiti 40.84151799,-73.90947702,graffiti 40.82758059,-73.92513464,graffiti 40.82740455,-73.92455309,graffiti 40.8351908,-73.91974516,graffiti 40.83655119,-73.91833411,graffiti 40.83772156,-73.91993726,graffiti 40.83935078,-73.91831261,graffiti 40.84014341,-73.91748763,graffiti 40.83983265,-73.9166351,graffiti 40.83977768,-73.91653759,graffiti 40.82614034,-73.87779854,graffiti 40.82651255,-73.87678974,graffiti 40.72216062,-73.95724212,graffiti 40.88632478,-73.9022299,graffiti 40.72568825,-73.95187138,graffiti 40.75663798,-73.83376713,graffiti 40.71625193,-73.95941391,graffiti 40.75525038,-73.81998972,graffiti 40.73481337,-73.99205444,graffiti 40.82854597,-73.86655637,graffiti 40.82876009,-73.86658485,graffiti 40.82888092,-73.8666352,graffiti 40.83021246,-73.86694329,graffiti 40.83325991,-73.8676527,graffiti 40.83478284,-73.86972397,graffiti 40.83472046,-73.8703818,graffiti 40.83467147,-73.87075773,graffiti 40.83461706,-73.87118425,graffiti 40.834598,-73.87132523,graffiti 40.83435938,-73.87909161,graffiti 40.83595598,-73.88362768,graffiti 40.83611834,-73.88405021,graffiti 40.83540814,-73.88472362,graffiti 40.83717263,-73.88713102,graffiti 40.83723319,-73.88731523,graffiti 40.87176716,-73.8874158,graffiti 40.66531674,-73.73429903,graffiti 40.74577179,-73.85424609,graffiti 40.87535754,-73.86011279,graffiti 40.87501993,-73.85785714,graffiti 40.8715688,-73.8484093,graffiti 40.87138441,-73.84803007,graffiti 40.8694994,-73.84436088,graffiti 40.86954385,-73.8427265,graffiti 40.85910763,-73.88642501,graffiti 40.85916217,-73.8917644,graffiti 40.85904716,-73.89205379,graffiti 40.85750819,-73.89291304,graffiti 40.85629031,-73.89374282,graffiti 40.85363248,-73.89570266,graffiti 40.84718793,-73.89881034,graffiti 40.84748897,-73.89781229,graffiti 40.66481588,-73.73492461,graffiti 40.84867684,-73.89714901,graffiti 40.84991406,-73.89643503,graffiti 40.85004299,-73.89635892,graffiti 40.85018292,-73.89630448,graffiti 40.85171174,-73.89632017,graffiti 40.85040634,-73.89752949,graffiti 40.84961078,-73.89798253,graffiti 40.84843937,-73.89864578,graffiti 40.84835707,-73.8986929,graffiti 40.84782212,-73.89899733,graffiti 40.8440098,-73.90227041,graffiti 40.84560039,-73.90069944,graffiti 40.76386796,-73.90397998,graffiti 40.76275317,-73.80081914,graffiti 40.71192549,-73.96570733,graffiti 40.70181463,-73.80602154,graffiti 40.70176131,-73.8069594,graffiti 40.7088346,-73.74740995,graffiti 40.73044486,-73.95173084,graffiti 40.72267837,-73.90845151,graffiti 40.72135875,-73.91278246,graffiti 40.77011319,-73.96242092,graffiti 40.89842698,-73.86736017,graffiti 40.89644176,-73.87149488,graffiti 40.89884975,-73.86743891,graffiti 40.56152992,-74.10958168,graffiti 40.67750398,-73.91067307,graffiti 40.67840628,-73.91330372,graffiti 40.72783318,-73.93739109,graffiti 40.83849451,-73.91100984,graffiti 40.75742775,-73.92905406,graffiti 40.70795696,-73.93989851,graffiti 40.72308555,-73.94428627,graffiti 40.83479008,-73.8688422,graffiti 40.72046108,-73.93797523,graffiti 40.84636655,-73.88907442,graffiti 40.72463423,-73.93502739,graffiti 40.84388452,-73.88544262,graffiti 40.84234148,-73.88492122,graffiti 40.84157961,-73.88334678,graffiti 40.84035668,-73.88183463,graffiti 40.84053174,-73.88124884,graffiti 40.84033919,-73.88084441,graffiti 40.84002673,-73.87863317,graffiti 40.83987491,-73.87525432,graffiti 40.84480887,-73.88210502,graffiti 40.84533144,-73.8831631,graffiti 40.84917616,-73.89093846,graffiti 40.67181085,-73.97749444,graffiti 40.6664328,-73.98937353,graffiti 40.68280932,-73.97833802,graffiti 40.67895428,-73.98747874,graffiti 40.66626531,-73.98874275,graffiti 40.72332021,-73.95352903,graffiti 40.72334708,-73.9521184,graffiti 40.58809299,-73.9532739,graffiti 40.73790359,-73.74827044,graffiti 40.64471353,-73.99152465,graffiti 40.64480137,-73.99166878,graffiti 40.83760466,-73.88548235,graffiti 40.69647031,-73.91422146,graffiti 40.71607366,-73.94634109,graffiti 40.84080203,-73.88805369,graffiti 40.76811189,-73.93170336,graffiti 40.76937138,-73.93112443,graffiti 40.76965944,-73.93089308,graffiti 40.76976643,-73.93080271,graffiti 40.76990909,-73.93068704,graffiti 40.71362952,-73.99541165,graffiti 40.69374759,-73.93064721,graffiti 40.69356007,-73.92920497,graffiti 40.64659125,-73.99802885,graffiti 40.74452984,-73.99270649,graffiti 40.72312732,-73.8562546,graffiti 40.91026502,-73.89720564,graffiti 40.83878665,-73.93799502,graffiti 40.69508612,-73.90955683,graffiti 40.69433202,-73.910463,graffiti 40.69676933,-73.91040563,graffiti 40.84361483,-73.8875032,graffiti 40.84399434,-73.88826878,graffiti 40.84412635,-73.88853963,graffiti 40.83463534,-73.94072365,graffiti 40.84511083,-73.89050056,graffiti 40.84477533,-73.88982162,graffiti 40.84552851,-73.89101311,graffiti 40.84692887,-73.89760713,graffiti 40.84662327,-73.89967143,graffiti 40.84648061,-73.89974754,graffiti 40.70190739,-73.95128626,graffiti 40.7841028,-73.84836289,graffiti 40.7847599,-73.84920638,graffiti 40.67704951,-73.97235164,graffiti 40.6336941,-73.97769464,graffiti 40.74032084,-73.91830772,graffiti 40.63577074,-74.011598,graffiti 40.63842784,-74.01007794,graffiti 40.63435739,-74.00922704,graffiti 40.63548533,-74.01112596,graffiti 40.71396687,-73.9910938,graffiti 40.82355237,-73.891844,graffiti 40.60386551,-73.99090322,graffiti 40.62037909,-73.93447689,graffiti 40.61250709,-73.92557034,graffiti 40.62662433,-73.94110654,graffiti 40.72568732,-74.00194102,graffiti 40.70028544,-73.94562168,graffiti 40.57960448,-73.96414809,graffiti 40.74350985,-73.73425424,graffiti 40.69887142,-73.90989791,graffiti 40.83521813,-73.84857886,graffiti 40.73477598,-73.95147873,graffiti 40.82948818,-73.82963199,graffiti 40.69572485,-73.80983662,graffiti 40.68176546,-73.99427091,graffiti 40.71727504,-73.79753885,graffiti 40.7165645,-73.79774302,graffiti 40.69874665,-73.93686303,graffiti 40.73514513,-73.98791562,graffiti 40.67050483,-73.89450023,graffiti 40.67039226,-73.89446796,graffiti 40.6642789,-73.92500073,graffiti 40.65667164,-73.9607116,graffiti 40.66073667,-73.96076687,graffiti 40.66017943,-73.96060861,graffiti 40.66001761,-73.96096553,graffiti 40.77002445,-73.91085584,graffiti 40.71607366,-73.94634109,graffiti 40.69642179,-73.85061067,graffiti 40.66821675,-73.98781961,graffiti 40.81111793,-73.95792914,graffiti 40.88541225,-73.91821261,graffiti 40.81100534,-73.92530862,graffiti 40.83518799,-73.84861506,graffiti 40.66022142,-73.9900269,graffiti 40.6480797,-73.94538314,graffiti 40.67808211,-74.00182426,graffiti 40.74676968,-74.00485047,graffiti 40.7447879,-74.00626862,graffiti 40.78796485,-73.97165556,graffiti 40.61192339,-73.9834142,graffiti 40.74934374,-73.7075919,graffiti 40.70439661,-73.79755992,graffiti 40.71137473,-73.9042107,graffiti 40.89805475,-73.85898347,graffiti 40.89824949,-73.85887816,graffiti 40.89819588,-73.85768098,graffiti 40.7031305,-73.93282667,graffiti 40.88765978,-73.86054621,graffiti 40.85612079,-73.88861352,graffiti 40.83203477,-73.85107588,graffiti 40.87044844,-73.90426357,graffiti 40.69974093,-73.99373201,graffiti 40.90564234,-73.89958957,graffiti 40.70464874,-73.92889023,graffiti 40.73043666,-73.95181022,graffiti 40.7188968,-74.00009379,graffiti 40.7505574,-73.8766848,graffiti 40.75187808,-73.87710825,graffiti 40.76270243,-73.87623635,graffiti 40.7684549,-73.87324366,graffiti 40.83356959,-73.82779662,graffiti 40.82895969,-73.82138384,graffiti 40.70025979,-73.91653915,graffiti 40.72006861,-73.99318536,graffiti 40.63875024,-74.02103154,graffiti 40.63583489,-74.02303388,graffiti 40.76095331,-73.81782289,graffiti 40.76072738,-73.81727843,graffiti 40.77020331,-73.90130647,graffiti 40.74182759,-73.90728124,graffiti 40.75603236,-73.79985745,graffiti 40.74738484,-73.85356045,graffiti 40.70789663,-73.951657,graffiti 40.70945532,-73.95088037,graffiti 40.8123888,-73.95112953,graffiti 40.74785648,-73.76134454,graffiti 40.67448863,-73.88984698,graffiti 40.64115892,-74.00983693,graffiti 40.63532077,-74.0097532,graffiti 40.63411341,-74.03573708,graffiti 40.71828718,-73.99191212,graffiti 40.71828718,-73.99191212,graffiti 40.73363247,-73.71185729,graffiti 40.83857619,-73.81724893,graffiti 40.66391733,-73.9403419,graffiti 40.66404063,-73.93992366,graffiti 40.66417237,-73.93991273,graffiti 40.76677361,-73.74606747,graffiti 40.60072505,-74.09153611,graffiti 40.75868141,-73.82905868,graffiti 40.83962157,-73.93898448,graffiti 40.59449812,-73.95716543,graffiti 40.54964401,-74.21506201,graffiti 40.70424638,-73.92631188,graffiti 40.7043177,-73.92624327,graffiti 40.70435061,-73.92620717,graffiti 40.73353905,-73.75966023,graffiti 40.73773216,-73.85190371,graffiti 40.70957758,-73.95450528,graffiti 40.71008679,-73.95127667,graffiti 40.86427813,-73.90398684,graffiti 40.64896659,-73.95227629,graffiti 40.75224196,-73.93201559,graffiti 40.6380793,-74.13328253,graffiti 40.63967815,-74.13208586,graffiti 40.63429049,-73.9821116,graffiti 40.81917972,-73.95947759,graffiti 40.81814803,-73.96041034,graffiti 40.65846391,-73.9605015,graffiti 40.62108974,-73.93901855,graffiti 40.86726174,-73.92239279,graffiti 40.86282911,-73.92667846,graffiti 40.67540871,-74.00015502,graffiti 40.86288752,-73.92789674,graffiti 40.86270554,-73.92657375,graffiti 40.86731657,-73.92228787,graffiti 40.8630151,-73.92566597,graffiti 40.86500306,-73.92691468,graffiti 40.64109808,-73.98581393,graffiti 40.85247808,-73.88531576,graffiti 40.70365554,-73.89991905,graffiti 40.81738142,-73.88531121,graffiti 40.58684383,-73.95261231,graffiti 40.70767226,-73.95337403,graffiti 40.70844345,-73.95315347,graffiti 40.70844345,-73.95315347,graffiti 40.70759534,-73.95319374,graffiti 40.70759534,-73.95319374,graffiti 40.70758158,-73.95310718,graffiti 40.83636137,-73.86999915,graffiti 40.83184251,-73.88447684,graffiti 40.74608471,-73.71375227,graffiti 40.71460937,-73.9494481,graffiti 40.76890492,-73.83615173,graffiti 40.64377115,-73.96978178,graffiti 40.6842489,-73.95459107,graffiti 40.8497398,-73.93621005,graffiti 40.85179168,-73.93413326,graffiti 40.6320228,-73.95880583,graffiti 40.699378,-73.81141663,graffiti 40.7000566,-73.81180782,graffiti 40.7000566,-73.81180782,graffiti 40.62785849,-74.02329411,graffiti 40.84988227,-73.84792377,graffiti 40.84368957,-73.85380746,graffiti 40.82562821,-73.94856884,graffiti 40.82688979,-73.9464071,graffiti 40.82606555,-73.95070396,graffiti 40.83035789,-73.94384593,graffiti 40.82732499,-73.94980691,graffiti 40.8285452,-73.94148067,graffiti 40.82819401,-73.94173753,graffiti 40.82996179,-73.94786086,graffiti 40.82786209,-73.94786251,graffiti 40.83180063,-73.94758479,graffiti 40.82940206,-73.94826962,graffiti 40.83032597,-73.94596348,graffiti 40.8308499,-73.94531984,graffiti 40.66392443,-73.99440942,graffiti 40.854061,-73.86671846,graffiti 40.85382768,-73.86670085,graffiti 40.85448428,-73.86723453,graffiti 40.85487179,-73.86767838,graffiti 40.85443962,-73.86423431,graffiti 40.85445418,-73.86495363,graffiti 40.85449499,-73.86700316,graffiti 40.84588766,-73.92079488,graffiti 40.70403106,-73.94947776,graffiti 40.59847614,-73.9802883,graffiti 40.74803661,-73.9469361,graffiti 40.69702274,-73.93172209,graffiti 40.87266192,-73.87666445,graffiti 40.74836032,-73.82667069,graffiti 40.63843677,-74.0347053,graffiti 40.73985024,-74.00243942,graffiti 40.82129027,-73.9519576,graffiti 40.82196569,-73.95247739,graffiti 40.71328201,-73.93521882,graffiti 40.7138281,-73.93501989,graffiti 40.68284687,-73.96390149,graffiti 40.68274241,-73.96340398,graffiti 40.68211009,-73.96030361,graffiti 40.68212384,-73.96037211,graffiti 40.68431842,-73.96504727,graffiti 40.68425834,-73.96604966,graffiti 40.68716729,-73.97475969,graffiti 40.68718376,-73.97476329,graffiti 40.87417836,-73.87795975,graffiti 40.72108972,-73.99419177,graffiti 40.72134776,-73.99482308,graffiti 40.72306053,-73.99583671,graffiti 40.68298429,-73.9644783,graffiti 40.64440181,-73.9518075,graffiti 40.75817137,-73.83503389,graffiti 40.74242912,-73.72176861,graffiti 40.70976736,-73.79250104,graffiti 40.71042004,-73.79370736,graffiti 40.73358131,-73.95660695,graffiti 40.69858192,-73.95415936,graffiti 40.69805213,-73.95405514,graffiti 40.68729382,-73.93888589,graffiti 40.67611394,-73.95600983,graffiti 40.68399368,-73.86642019,graffiti 40.7920615,-73.80725012,graffiti 40.73879707,-73.80088715,graffiti 40.77827945,-73.95648394,graffiti 40.75014403,-73.70605087,graffiti 40.72131194,-73.99242042,graffiti 40.72627714,-73.99149985,graffiti 40.72527262,-73.99233338,graffiti 40.63214383,-74.11675189,graffiti 40.71413457,-73.99591302,graffiti 40.71411811,-73.99616914,graffiti 40.65983484,-73.99869525,graffiti 40.71300542,-73.93635895,graffiti 40.75480191,-73.91799038,graffiti 40.78153146,-73.94861012,graffiti 40.54078205,-74.17572677,graffiti 40.54078205,-74.17572677,graffiti 40.6699957,-73.92007731,graffiti 40.6647972,-73.92024214,graffiti 40.76464369,-73.8848822,graffiti 40.76515718,-73.88788842,graffiti 40.70700979,-73.80238876,graffiti 40.66770472,-73.88271005,graffiti 40.85889306,-73.8703383,graffiti 40.62769103,-73.97658346,graffiti 40.70778678,-73.8025127,graffiti 40.62415545,-74.02480581,graffiti 40.71392915,-73.753862,graffiti 40.71121565,-73.79971428,graffiti 40.69698743,-73.81487462,graffiti 40.69697105,-73.81492876,graffiti 40.87265324,-73.88418899,graffiti 40.6310361,-73.92818327,graffiti 40.63242505,-73.92832949,graffiti 40.63279608,-73.9291073,graffiti 40.67701931,-73.97233002,graffiti 40.66695052,-73.94635177,graffiti 40.67695831,-74.0166236,graffiti 40.70916527,-73.77587483,graffiti 40.67695831,-74.0166236,graffiti 40.72102302,-73.98503572,graffiti 40.72106693,-73.98501046,graffiti 40.8294571,-73.84867146,graffiti 40.72358205,-73.99657627,graffiti 40.8477943,-73.85933581,graffiti 40.58886423,-74.10194677,graffiti 40.85932744,-73.8685516,graffiti 40.67239518,-73.95027319,graffiti 40.75457983,-73.98137907,graffiti 40.69142371,-73.9545357,graffiti 40.72247027,-73.94925093,graffiti 40.83857841,-73.92475726,graffiti 40.65553572,-73.96198089,graffiti 40.59678474,-74.07031434,graffiti 40.59828742,-74.07267455,graffiti 40.59828742,-74.07267455,graffiti 40.7472682,-73.94718934,graffiti 40.6962555,-73.93394072,graffiti 40.83897646,-73.84102429,graffiti 40.69750588,-73.9849869,graffiti 40.63471602,-73.93606251,graffiti 40.73530147,-73.73838249,graffiti 40.67446636,-74.01433376,graffiti 40.84972852,-73.94077888,graffiti 40.73461746,-73.95310981,graffiti 40.71344911,-73.76050822,graffiti 40.62853879,-74.00185894,graffiti 40.62854697,-74.00415739,graffiti 40.74369841,-73.99966077,graffiti 40.91047872,-73.90310969,graffiti 40.91026502,-73.89720564,graffiti 40.91026502,-73.89720564,graffiti 40.70757906,-73.92715581,graffiti 40.70774695,-73.92788421,graffiti 40.63871207,-74.12960138,graffiti 40.73542994,-73.89492425,graffiti 40.73502977,-73.89554191,graffiti 40.86757662,-73.888052,graffiti 40.74482098,-73.94963449,graffiti 40.69777488,-73.93664396,graffiti 40.67950612,-73.82372381,graffiti 40.67950612,-73.82372381,graffiti 40.73053125,-73.8957005,graffiti 40.69042229,-73.84080153,graffiti 40.69740417,-73.93155941,graffiti 40.71562708,-73.96222438,graffiti 40.76037925,-73.92196865,graffiti 40.75968957,-73.8296192,graffiti 40.71405824,-73.95077597,graffiti 40.71337338,-73.94756609,graffiti 40.67242493,-73.99303161,graffiti 40.63685622,-73.97834934,graffiti 40.74512981,-73.89187026,graffiti 40.60174676,-73.97433104,graffiti 40.61415042,-74.00667056,graffiti 40.69719037,-73.93206091,graffiti 40.70616558,-73.89829223,graffiti 40.87265198,-73.88848097,graffiti 40.7142773,-73.92878977,graffiti 40.69565171,-73.83927443,graffiti 40.63864517,-74.03537559,graffiti 40.7193743,-73.99544733,graffiti 40.70883944,-73.82913239,graffiti 40.70923574,-73.82984555,graffiti 40.84804868,-73.88868487,graffiti 40.84951719,-73.89166804,graffiti 40.7120599,-73.95726302,graffiti 40.71192544,-73.95734607,graffiti 40.71731831,-73.99240645,graffiti 40.71687917,-73.99263015,graffiti 40.71611066,-73.99299818,graffiti 40.71596519,-73.99307756,graffiti 40.71571817,-73.99320384,graffiti 40.71566877,-73.9932291,graffiti 40.71567426,-73.99324713,graffiti 40.71482615,-73.99368731,graffiti 40.71477126,-73.99371617,graffiti 40.71471911,-73.99374142,graffiti 40.71461206,-73.99379554,graffiti 40.7146203,-73.99377029,graffiti 40.71941276,-73.99632395,graffiti 40.71974487,-73.99619407,graffiti 40.71986838,-73.9961652,graffiti 40.72042831,-73.99592346,graffiti 40.72050516,-73.99591624,graffiti 40.72076589,-73.99540756,graffiti 40.72212729,-73.99527759,graffiti 40.72257467,-73.99507913,graffiti 40.72236059,-73.99518738,graffiti 40.72241823,-73.99516212,graffiti 40.72253625,-73.99511882,graffiti 40.72298089,-73.99480131,graffiti 40.72326909,-73.99479407,graffiti 40.7236506,-73.99462809,graffiti 40.71654708,-73.99301618,graffiti 40.71656904,-73.99308471,graffiti 40.71658826,-73.99315325,graffiti 40.71663218,-73.99329033,graffiti 40.71698078,-73.99356806,graffiti 40.71709606,-73.99350672,graffiti 40.71715644,-73.99347786,graffiti 40.7173321,-73.99338765,graffiti 40.71805944,-73.99301241,graffiti 40.71822697,-73.99492073,graffiti 40.71861655,-73.99187961,graffiti 40.72625188,-73.98579581,graffiti 40.71843531,-73.99079018,graffiti 40.71843535,-73.99129162,graffiti 40.71928631,-73.99238097,graffiti 40.71486199,-73.99818555,graffiti 40.71462319,-73.99809177,graffiti 40.87806969,-73.91748396,graffiti 40.61816198,-74.15997706,graffiti 40.8776289,-73.91905027,graffiti 40.8776289,-73.91905027,graffiti 40.8776289,-73.91905027,graffiti 40.77004459,-73.9624715,graffiti 40.67868449,-73.91841567,graffiti 40.68818672,-73.95944902,graffiti 40.75866222,-73.98873796,graffiti 40.69413301,-73.95507477,graffiti 40.69179141,-73.9478427,graffiti 40.69074392,-73.9569233,graffiti 40.69253478,-73.94118896,graffiti 40.69253759,-73.94131156,graffiti 40.69959916,-73.93992408,graffiti 40.69945442,-73.94133071,graffiti 40.69468677,-73.93142517,graffiti 40.69446132,-73.93079072,graffiti 40.71574581,-73.77096479,graffiti 40.63724472,-74.0113064,graffiti 40.63949016,-74.00896832,graffiti 40.63952584,-74.00896112,graffiti 40.67716498,-73.99054712,graffiti 40.70418715,-73.9159752,graffiti 40.68739273,-73.90638337,graffiti 40.57923724,-73.96600945,graffiti 40.77190076,-73.92903865,graffiti 40.6843742,-73.98029896,graffiti 40.7128642,-73.74628367,graffiti 40.75459262,-73.91703053,graffiti 40.59206377,-73.9774529,graffiti 40.71386011,-73.94366632,graffiti 40.83376441,-73.92098999,graffiti 40.61751189,-74.15155403,graffiti 40.6226841,-74.02543566,graffiti 40.62853101,-74.02303856,graffiti 40.62631029,-74.02394562,graffiti 40.83432321,-73.85057206,graffiti 40.71655788,-73.94300029,graffiti 40.78671848,-73.97060163,graffiti 40.62098341,-74.03208464,graffiti 40.76258849,-73.89115966,graffiti 40.62628559,-74.0239348,graffiti 40.68875816,-73.9610028,graffiti 40.62408682,-74.02485622,graffiti 40.59621716,-73.98022055,graffiti 40.61835474,-74.02892079,graffiti 40.66103685,-73.92023943,graffiti 40.62258184,-74.02845072,graffiti 40.63301763,-74.02803003,graffiti 40.82947481,-73.85829772,graffiti 40.69599995,-73.94372108,graffiti 40.62203901,-74.0257344,graffiti 40.59846792,-73.98040713,graffiti 40.61808115,-73.99931201,graffiti 40.69917254,-73.9554212,graffiti 40.7061458,-73.93553593,graffiti 40.68720556,-73.9935529,graffiti 40.56507317,-74.1813442,graffiti 40.68769516,-73.87014837,graffiti 40.7061458,-73.93553593,graffiti 40.68408569,-73.9785936,graffiti 40.57492275,-73.97887697,graffiti 40.70576225,-73.93683474,graffiti 40.70299353,-73.9947091,graffiti 40.68585912,-73.98032737,graffiti 40.73248569,-74.00968804,graffiti 40.68745508,-73.98996153,graffiti 40.77972691,-73.95206341,graffiti 40.62704321,-74.02365048,graffiti 40.7152078,-73.99669213,graffiti 40.69385321,-73.99088734,graffiti 40.72349695,-73.99599543,graffiti 40.7646813,-73.91197486,graffiti 40.57549918,-73.97899558,graffiti 40.70764188,-73.9466256,graffiti 40.62858317,-74.02302057,graffiti 40.87898152,-73.86092241,graffiti 40.69455605,-73.99346925,graffiti 40.76751296,-73.77991676,graffiti 40.5750217,-73.97963288,graffiti 40.62782829,-74.02330491,graffiti 40.90376469,-73.85103815,graffiti 40.61804822,-73.99931922,graffiti 40.85036248,-73.83013879,graffiti 40.88316838,-73.85965153,graffiti 40.74750541,-73.89335693,graffiti 40.72809115,-73.98836429,graffiti 40.84075637,-73.86583436,graffiti 40.70140608,-73.92293209,graffiti 40.63786785,-74.01065795,graffiti 40.74541268,-73.88914868,graffiti 40.70725225,-73.74184695,graffiti 40.71317178,-73.95794046,graffiti 40.64090832,-74.01695333,graffiti 40.85510686,-73.93339977,graffiti 40.71245652,-73.95369893,graffiti 40.82904733,-73.89187481,graffiti 40.69926577,-73.93752611,graffiti 40.71287504,-73.95711461,graffiti 40.68818827,-73.92036921,graffiti 40.86645691,-73.92145732,graffiti 40.7825847,-73.95332157,graffiti 40.7790994,-73.95462027,graffiti 40.78222524,-73.95358181,graffiti 40.63973062,-74.0181601,graffiti 40.63668198,-74.0118936,graffiti 40.73232648,-73.89587449,graffiti 40.78336036,-73.95068141,graffiti 40.83076924,-73.86899467,graffiti 40.71257929,-73.95190249,graffiti 40.72783588,-73.98823445,graffiti 40.78167126,-73.95472684,graffiti 40.87002345,-73.86143288,graffiti 40.62925157,-74.13604253,graffiti 40.74733469,-73.92805068,graffiti 40.68049941,-73.89245097,graffiti 40.70440085,-73.79684939,graffiti 40.87763461,-73.90166772,graffiti 40.72979368,-73.8601694,graffiti 40.71910067,-73.95849588,graffiti 40.60096281,-73.97961416,graffiti 40.71704926,-73.9914866,graffiti 40.76662196,-73.98859943,graffiti 40.69423362,-73.91840746,graffiti 40.87716146,-73.91786115,graffiti 40.70614267,-73.95153203,graffiti 40.71082716,-73.7926817,graffiti 40.74063277,-73.75894539,graffiti 40.70780041,-73.80245856,graffiti 40.60978938,-73.944334,graffiti 40.65511554,-73.96129997,graffiti 40.70353606,-73.79519657,graffiti 40.88074085,-73.91829068,graffiti 40.87876957,-73.91747224,graffiti 40.760945,-73.83035238,graffiti 40.81239973,-73.90324525,graffiti 40.70896779,-73.79203463,graffiti 40.7170084,-73.99835504,graffiti 40.82029671,-73.90709242,graffiti 40.68666587,-73.87766833,graffiti 40.67462917,-73.99754134,graffiti 40.71574582,-73.99938676,graffiti 40.72049967,-73.9958946,graffiti 40.6872752,-73.93496644,graffiti 40.73063836,-73.98912516,graffiti 40.69590337,-73.83866437,graffiti 40.68800841,-73.82484438,graffiti 40.68157615,-73.92880306,graffiti 40.87453769,-73.88036368,graffiti 40.78030096,-73.84600647,graffiti 40.87334871,-73.87985598,graffiti 40.78098164,-73.84599045,graffiti 40.53287517,-74.19226861,graffiti 40.68179025,-73.92882086,graffiti 40.84131548,-73.82984746,graffiti 40.6811812,-73.929283,graffiti 40.69210649,-73.92665705,graffiti 40.8810809,-73.91788163,graffiti 40.65519519,-73.95397654,graffiti 40.72118589,-73.851237,graffiti 40.69002895,-73.9150555,graffiti 40.7001578,-73.91978509,graffiti 40.70472988,-73.89206203,graffiti 40.67881452,-73.88167742,graffiti 40.7607107,-73.92944403,graffiti 40.68627938,-73.82316505,graffiti 40.70862029,-73.95612184,graffiti 40.74411559,-73.99777695,graffiti 40.71792509,-73.99610759,graffiti 40.68554575,-73.84147301,graffiti 40.71820238,-74.0001948,graffiti 40.69282854,-73.82504447,graffiti 40.64141412,-74.01055763,graffiti 40.71831766,-74.00035714,graffiti 40.71157992,-73.95122869,graffiti 40.67736264,-73.99099775,graffiti 40.76159213,-73.81564804,graffiti 40.75593711,-73.99455329,graffiti 40.70465666,-73.9489976,graffiti 40.61881127,-73.99908868,graffiti 40.70844443,-73.95561338,graffiti 40.71826276,-74.00067098,graffiti 40.70805265,-73.95065056,graffiti 40.71745031,-73.99913422,graffiti 40.71768362,-74.00023448,graffiti 40.84686554,-73.8300176,graffiti 40.72407335,-73.99616856,graffiti 40.64144706,-74.0105252,graffiti 40.87715592,-73.90360302,graffiti 40.71698918,-73.99824682,graffiti 40.74586014,-73.85907104,graffiti 40.85690893,-73.85666315,graffiti 40.7167339,-73.99750732,graffiti 40.82838394,-73.88154875,graffiti 40.64212993,-73.98436157,graffiti 40.64140589,-74.01056483,graffiti 40.7076222,-73.94008637,graffiti 40.71871839,-73.99940477,graffiti 40.64083221,-74.01077373,graffiti 40.69433315,-73.93219003,graffiti 40.67021817,-73.99367711,graffiti 40.68233748,-73.9797299,graffiti 40.64111894,-74.02131334,graffiti 40.66713279,-73.87649659,graffiti 40.64112443,-74.02130974,graffiti 40.80174158,-73.95694177,graffiti 40.64120678,-74.02125932,graffiti 40.6946596,-73.91916424,graffiti 40.68547009,-73.86618286,graffiti 40.70599328,-73.9429949,graffiti 40.68559127,-73.86892293,graffiti 40.66016218,-73.92156686,graffiti 40.60208396,-73.97253753,graffiti 40.8555128,-73.89000627,graffiti 40.63059794,-73.97750473,graffiti 40.5517943,-74.15058092,graffiti 40.73875381,-73.94116981,graffiti 40.63024783,-74.01500157,graffiti 40.79891633,-73.96211933,graffiti 40.69541151,-73.97027406,graffiti 40.61243328,-73.94020062,graffiti 40.77508233,-73.97734039,graffiti 40.81659597,-73.81181787,graffiti 40.60910027,-74.14854565,graffiti 40.87937617,-73.87229088,graffiti 40.68328347,-73.95647022,graffiti 40.77233781,-73.82624725,graffiti 40.80149159,-73.95634596,graffiti 40.74605697,-73.89126606,graffiti 40.73882221,-73.80924811,graffiti 40.59865013,-73.94258241,graffiti 40.82545307,-73.89036309,graffiti 40.87477826,-73.87943395,graffiti 40.70848204,-73.9535502,graffiti 40.68219245,-73.95306014,graffiti 40.87192138,-73.8493703,graffiti 40.77162294,-73.82542956,graffiti 40.74744053,-73.85637537,graffiti 40.71827895,-73.99189047,graffiti 40.83777436,-73.84717806,graffiti 40.78032484,-73.97769968,graffiti 40.7205378,-73.99073578,graffiti 40.71168253,-73.96122384,graffiti 40.70654653,-73.95245147,graffiti 40.58665208,-73.93635695,graffiti 40.74499094,-73.89305781,graffiti 40.85368817,-73.93395787,graffiti 40.85653097,-73.9327332,graffiti 40.8479701,-73.85944748,graffiti 40.85354623,-73.9306288,graffiti 40.84626959,-73.92140525,graffiti 40.78485076,-73.84124019,graffiti 40.73671143,-73.93551719,graffiti 40.78485076,-73.84124019,graffiti 40.73655698,-73.93420387,graffiti 40.7848535,-73.84124018,graffiti 40.78943741,-73.84542197,graffiti 40.85692626,-73.9282647,graffiti 40.84942637,-73.9352525,graffiti 40.67480342,-73.95280938,graffiti 40.60843646,-73.75030368,graffiti 40.7848535,-73.84124018,graffiti 40.69790998,-73.9124525,graffiti 40.69341653,-73.84257219,graffiti 40.87124402,-73.84771582,graffiti 40.85701822,-73.93052396,graffiti 40.87193279,-73.87757337,graffiti 40.67856953,-74.01636803,graffiti 40.72645734,-73.89196911,graffiti 40.71413396,-73.96229737,graffiti 40.61700316,-74.03315251,graffiti 40.74142273,-73.8845001,graffiti 40.6900181,-73.91903644,graffiti 40.75249225,-73.92405684,graffiti 40.83740259,-73.83435316,graffiti 40.62889265,-73.97382704,graffiti 40.65252106,-73.9522305,graffiti 40.72399343,-74.00945231,graffiti 40.72653067,-73.95132598,graffiti 40.66117175,-73.93385291,graffiti 40.6900181,-73.91903644,graffiti 40.70340436,-73.94747295,graffiti 40.90265586,-73.85105149,graffiti 40.6872794,-73.85526096,graffiti 40.68131379,-73.98039,graffiti 40.74609315,-73.90418965,graffiti 40.75674508,-73.80901992,graffiti 40.71008937,-73.79451636,graffiti 40.71269435,-73.9583664,graffiti 40.75887531,-73.80592034,graffiti 40.72816364,-73.89391465,graffiti 40.71925081,-73.94364012,graffiti 40.72702129,-74.00007216,graffiti 40.71946769,-73.99774892,graffiti 40.69342668,-73.960012,graffiti 40.59863762,-73.95810263,graffiti 40.64438158,-73.99427412,graffiti 40.72710919,-73.89341483,graffiti 40.72816364,-73.89391465,graffiti 40.87211062,-73.8671234,graffiti 40.69347609,-73.96001918,graffiti 40.84064758,-73.83679543,graffiti 40.61956208,-73.92693127,graffiti 40.68644181,-73.96169645,graffiti 40.72371063,-73.98946541,graffiti 40.84843864,-73.85656212,graffiti 40.67839098,-74.01729094,graffiti 40.82029671,-73.90709242,graffiti 40.67702434,-74.0155024,graffiti 40.83570354,-73.9230042,graffiti 40.67725763,-74.01562143,graffiti 40.70714463,-73.95183428,graffiti 40.74084467,-73.92580949,graffiti 40.75137021,-73.8624629,graffiti 40.70788028,-73.95195638,graffiti 40.74626418,-73.98853795,graffiti 40.67591384,-73.9499425,graffiti 40.71019416,-73.95204849,graffiti 40.85653315,-73.88372181,graffiti 40.70730952,-73.95231026,graffiti 40.71850201,-73.83739756,graffiti 40.69348467,-73.92713514,graffiti 40.68219739,-73.92591079,graffiti 40.69423478,-73.89601692,graffiti 40.61863422,-74.1341226,graffiti 40.72673222,-73.98590394,graffiti 40.73256711,-73.85669969,graffiti 40.84597218,-73.91242028,graffiti 40.81910006,-73.92196844,graffiti 40.67165528,-73.9531036,graffiti 40.67392121,-73.95012785,graffiti 40.7573985,-73.9404206,graffiti 40.83496102,-73.82050403,graffiti 40.67115858,-73.94137002,graffiti 40.87995433,-73.90549748,graffiti 40.67094208,-73.94204072,graffiti 40.69316111,-73.95443715,graffiti 40.85861262,-73.90344192,graffiti 40.68223346,-73.92651648,graffiti 40.62014329,-74.15011914,graffiti 40.70893074,-73.90958133,graffiti 40.72663578,-73.78897771,graffiti 40.67871904,-73.964906,graffiti 40.67321018,-73.95656692,graffiti 40.74851969,-73.90777359,graffiti 40.67415603,-73.96118077,graffiti 40.67416703,-73.96122763,graffiti 40.67803695,-74.01699161,graffiti 40.68795544,-73.86732812,graffiti 40.67605905,-73.95600987,graffiti 40.6505849,-74.00280014,graffiti 40.67606614,-73.95312213,graffiti 40.69593305,-73.81463593,graffiti 40.72124473,-73.98091218,graffiti 40.69597769,-73.93292043,graffiti 40.67316371,-73.95707886,graffiti 40.62749851,-73.9978745,graffiti 40.60101489,-73.97922882,graffiti 40.72122827,-73.98094826,graffiti 40.65053,-74.00270644,graffiti 40.68437092,-73.86746145,graffiti 40.67788607,-73.96085413,graffiti 40.67495102,-73.96675379,graffiti 40.83524715,-73.94577518,graffiti 40.70797147,-73.78312871,graffiti 40.72451543,-73.93861725,graffiti 40.70844082,-73.95343841,graffiti 40.62757537,-73.99799699,graffiti 40.67971673,-73.96959965,graffiti 40.64591213,-74.0164393,graffiti 40.74269569,-73.83072364,graffiti 40.66456471,-73.88824854,graffiti 40.72950938,-73.86813297,graffiti 40.68852204,-73.85467051,graffiti 40.65054922,-74.00273527,graffiti 40.6875602,-73.85813416,graffiti 40.67535923,-73.95628432,graffiti 40.72463054,-73.99623347,graffiti 40.68980405,-73.86614892,graffiti 40.78987913,-73.81373877,graffiti 40.67555682,-73.95619046,graffiti 40.61324741,-74.08724197,graffiti 40.72724207,-73.89168281,graffiti 40.87568915,-73.87909963,graffiti 40.67857611,-73.96423549,graffiti 40.85913838,-73.81823357,graffiti 40.7234366,-73.99734111,graffiti 40.6808597,-73.99442963,graffiti 40.71358287,-73.99580845,graffiti 40.71650329,-73.9957253,graffiti 40.83122276,-73.86715447,graffiti 40.71871538,-73.99214655,graffiti 40.62495684,-73.99818799,graffiti 40.72116914,-73.99141753,graffiti 40.71891296,-73.99156572,graffiti 40.71407148,-73.9971503,graffiti 40.68119455,-73.99420246,graffiti 40.61958795,-74.16287298,graffiti 40.72140541,-74.00473318,graffiti 40.68682107,-73.9903907,graffiti 40.64725551,-74.00026306,graffiti 40.71789653,-73.96080538,graffiti 40.74039926,-73.80526326,graffiti 40.86962645,-73.86225446,graffiti 40.61948993,-74.16231441,graffiti 40.78306127,-73.95089829,graffiti 40.78378927,-73.95243603,graffiti 40.78022409,-73.95297659,graffiti 40.61958523,-74.16285496,graffiti 40.62878857,-74.00154552,graffiti 40.87436964,-73.88514783,graffiti 40.84407784,-73.8526392,graffiti 40.67720522,-73.92681404,graffiti 40.84861374,-73.89718525,graffiti 40.64473009,-74.00713846,graffiti 40.85277939,-73.85328503,graffiti 40.68840871,-73.93014074,graffiti 40.73355894,-73.99104789,graffiti 40.66036068,-73.9534972,graffiti 40.61316222,-74.13075836,graffiti 40.66130517,-73.94777282,graffiti 40.64767525,-74.00700544,graffiti 40.63253354,-74.1167994,graffiti 40.75531571,-73.76891933,graffiti 40.66399754,-73.93157927,graffiti 40.66453304,-73.89543604,graffiti 40.66451668,-73.89555141,graffiti 40.73488848,-73.79460226,graffiti 40.63843607,-74.01007073,graffiti 40.7364899,-73.80477311,graffiti 40.6814157,-73.94680163,graffiti 40.88592598,-73.84816319,graffiti 40.84110208,-73.86338691,graffiti 40.66121184,-73.94776208,graffiti 40.88399263,-73.84943336,graffiti 40.7349022,-73.79460221,graffiti 40.83424438,-73.85116489,graffiti 40.63843607,-74.01009596,graffiti 40.70256518,-73.74352775,graffiti 40.8756192,-73.86086797,graffiti 40.62637789,-74.13360139,graffiti 40.85377135,-73.93071893,graffiti 40.68011934,-73.93454077,graffiti 40.69507911,-73.96921399,graffiti 40.63007755,-73.96112715,graffiti 40.67947648,-73.93847483,graffiti 40.62192619,-73.99018031,graffiti 40.71606968,-73.94968147,graffiti 40.7181599,-73.95311778,graffiti 40.74855111,-73.93838578,graffiti 40.85598483,-73.92827295,graffiti 40.8158955,-73.8254182,graffiti 40.74702651,-73.94120581,graffiti 40.68906216,-73.85859252,graffiti 40.61694532,-73.97730402,graffiti 40.74787687,-73.94022701,graffiti 40.84726419,-73.8683152,graffiti 40.74651257,-73.94542876,graffiti 40.7081436,-73.95152336,graffiti 40.74982362,-73.93644648,graffiti 40.87590101,-73.87959463,graffiti 40.75114404,-73.94201064,graffiti 40.6299276,-74.02544563,graffiti 40.74814002,-73.93956271,graffiti 40.76491009,-73.83337827,graffiti 40.75274152,-73.94208144,graffiti 40.67837751,-73.90806527,graffiti 40.70830735,-73.78809794,graffiti 40.829413,-73.91948834,graffiti 40.7501691,-73.94092874,graffiti 40.7469304,-73.94112289,graffiti 40.75064467,-73.93711701,graffiti 40.64221806,-74.01333592,graffiti 40.66452074,-73.89399424,graffiti 40.61478175,-73.97412432,graffiti 40.70749307,-73.78859828,graffiti 40.7008016,-73.82652746,graffiti 40.66208753,-73.89255274,graffiti 40.74962861,-73.93619764,graffiti 40.66207106,-73.89254556,graffiti 40.73790055,-73.80468237,graffiti 40.85328286,-73.93082065,graffiti 40.71052921,-73.95252077,graffiti 40.63729181,-73.99464945,graffiti 40.88014461,-73.91739821,graffiti 40.72285388,-73.98585425,graffiti 40.72651394,-73.86733795,graffiti 40.66532411,-73.89015769,graffiti 40.74546784,-73.9853442,graffiti 40.76124899,-73.76985534,graffiti 40.66646398,-73.8826113,graffiti 40.71004872,-73.95213877,graffiti 40.74879067,-73.75656273,graffiti 40.84034412,-73.91058452,graffiti 40.66633318,-73.88355234,graffiti 40.90235274,-73.84802075,graffiti 40.76406891,-73.97062968,graffiti 40.64012526,-73.966836,graffiti 40.85193854,-73.93180525,graffiti 40.69598078,-73.974897,graffiti 40.76749255,-73.73862066,graffiti 40.76112678,-73.76371554,graffiti 40.85138929,-73.93128892,graffiti 40.74875457,-73.75766364,graffiti 40.7001092,-73.95726708,graffiti 40.72342009,-73.99581505,graffiti 40.64011978,-73.96684681,graffiti 40.69157377,-73.7979847,graffiti 40.66448121,-73.89578215,graffiti 40.7699566,-73.9544171,graffiti 40.72431213,-73.99572119,graffiti 40.66398829,-73.88822427,graffiti 40.66228474,-73.89210908,graffiti 40.8507458,-73.90617154,graffiti 40.69164222,-73.85202051,graffiti 40.67012192,-73.8900849,graffiti 40.78465381,-73.84577974,graffiti 40.62499388,-74.13177221,graffiti 40.66231213,-73.89204416,graffiti 40.6665789,-73.88226505,graffiti 40.69162846,-73.8519953,graffiti 40.71252014,-73.94260335,graffiti 40.7128,-73.94240472,graffiti 40.84798921,-73.90845978,graffiti 40.7179743,-73.94325521,graffiti 40.8303523,-73.87166227,graffiti 40.66308996,-73.8902659,graffiti 40.86135135,-73.9061855,graffiti 40.61790951,-74.06895702,graffiti 40.86129101,-73.90623981,graffiti 40.75662348,-73.86938233,graffiti 40.86580606,-73.90294339,graffiti 40.71689616,-73.9653765,graffiti 40.71656119,-73.95693187,graffiti 40.66205736,-73.89257802,graffiti 40.82473076,-73.87635223,graffiti 40.71669036,-73.96558583,graffiti 40.82004855,-73.8961166,graffiti 40.66849643,-73.88121989,graffiti 40.84652824,-73.91459181,graffiti 40.6927413,-73.95479804,graffiti 40.69870887,-73.8331326,graffiti 40.68120281,-73.99483341,graffiti 40.66660354,-73.88220373,graffiti 40.75015404,-73.87679382,graffiti 40.82890769,-73.92309156,graffiti 40.61008743,-74.06316477,graffiti 40.86943289,-73.89182361,graffiti 40.66242716,-73.89178085,graffiti 40.83325714,-73.88017772,graffiti 40.70455785,-73.79715909,graffiti 40.6642923,-73.88755332,graffiti 40.83684554,-73.92330644,graffiti 40.704275,-73.79399327,graffiti 40.66662819,-73.88214601,graffiti 40.84201878,-73.91108102,graffiti 40.82841979,-73.92003517,graffiti 40.67082285,-73.88549834,graffiti 40.66225461,-73.89217401,graffiti 40.66509726,-73.89411948,graffiti 40.6618958,-73.89298918,graffiti 40.83332805,-73.91714917,graffiti 40.86063278,-73.90686255,graffiti 40.66261063,-73.89131918,graffiti 40.61651685,-74.02408258,graffiti 40.86199996,-73.90390337,graffiti 40.88021289,-73.86706743,graffiti 40.71392153,-73.94027189,graffiti 40.662334,-73.89195041,graffiti 40.66505885,-73.89413036,graffiti 40.66203001,-73.89268259,graffiti 40.66284069,-73.89078895,graffiti 40.70533114,-73.79830368,graffiti 40.67001282,-73.89081326,graffiti 40.7167121,-73.9567983,graffiti 40.83715569,-73.92329885,graffiti 40.73455233,-73.95498618,graffiti 40.85409855,-73.91514961,graffiti 40.66334739,-73.88965272,graffiti 40.68166161,-73.84735555,graffiti 40.75905264,-73.88766046,graffiti 40.66391654,-73.89972636,graffiti 40.7176312,-73.99209978,graffiti 40.80010122,-73.9524605,graffiti 40.71445287,-73.99387852,graffiti 40.71586638,-73.99312807,graffiti 40.71350333,-73.99782126,graffiti 40.6614329,-73.89403519,graffiti 40.8067787,-73.91384451,graffiti 40.76534523,-73.78905001,graffiti 40.67852815,-73.98227639,graffiti 40.64623497,-73.9297813,graffiti 40.73212437,-73.89698974,graffiti 40.75648069,-73.92046444,graffiti 40.71357739,-73.99606456,graffiti 40.71807035,-73.99202037,graffiti 40.71581698,-73.99315333,graffiti 40.71620947,-73.99294767,graffiti 40.74608822,-73.89536578,graffiti 40.71462868,-73.99811341,graffiti 40.6708065,-73.88561373,graffiti 40.71709874,-73.9925183,graffiti 40.70891178,-73.96583512,graffiti 40.71884465,-74.00109306,graffiti 40.71232354,-73.94470287,graffiti 40.71676938,-73.99268428,graffiti 40.7211885,-73.99370835,graffiti 40.7601617,-73.7316249,graffiti 40.71851528,-74.00063491,graffiti 40.66616815,-73.88320658,graffiti 40.68166161,-73.84735555,graffiti 40.66141727,-73.89799281,graffiti 40.71467519,-73.99374143,graffiti 40.8002961,-73.9524748,graffiti 40.71682427,-73.99265902,graffiti 40.71456266,-73.99379915,graffiti 40.66092886,-73.8951209,graffiti 40.71572366,-73.99322188,graffiti 40.67108185,-73.88374953,graffiti 40.66130143,-73.89433456,graffiti 40.71591579,-73.99310282,graffiti 40.72052993,-73.99866159,graffiti 40.64303677,-73.99932617,graffiti 40.71951984,-73.99784993,graffiti 40.63601794,-74.02696841,graffiti 40.63679411,-74.029426,graffiti 40.66270379,-73.89711136,graffiti 40.80725401,-73.92640374,graffiti 40.59573218,-73.77491607,graffiti 40.80733132,-73.92711888,graffiti 40.85440062,-73.88657764,graffiti 40.86696761,-73.83948947,graffiti 40.77532791,-73.91166111,graffiti 40.68352397,-73.89523319,graffiti 40.63587013,-74.00141597,graffiti 40.85436222,-73.88661024,graffiti 40.85430528,-73.88731522,graffiti 40.80998095,-73.92868015,graffiti 40.81131183,-73.94291553,graffiti 40.63631479,-74.000717,graffiti 40.63275407,-74.15337564,graffiti 40.80718866,-73.92722379,graffiti 40.74660502,-73.99565479,graffiti 40.81127572,-73.85700707,graffiti 40.78134937,-73.84594627,graffiti 40.6474553,-74.01156759,graffiti 40.78145369,-73.84596408,graffiti 40.63892472,-74.00916281,graffiti 40.85472515,-73.89601183,graffiti 40.62074852,-73.98853069,graffiti 40.81447472,-73.9135925,graffiti 40.84597349,-73.90048925,graffiti 40.85496885,-73.89537523,graffiti 40.81414861,-73.85855795,graffiti 40.61964248,-73.98965114,graffiti 40.8484096,-73.89911933,graffiti 40.69093118,-73.94543098,graffiti 40.62554692,-73.99618143,graffiti 40.81707965,-73.92153004,graffiti 40.81267533,-73.90134464,graffiti 40.66971415,-73.91047802,graffiti 40.85211081,-73.8975377,graffiti 40.58944494,-74.14625522,graffiti 40.85780784,-73.8934295,graffiti 40.61642793,-73.98597046,graffiti 40.81481033,-73.91460361,graffiti 40.85266724,-73.89670546,graffiti 40.81690903,-73.92087994,graffiti 40.81703566,-73.92142894,graffiti 40.81541253,-73.91610934,graffiti 40.70553247,-73.93335084,graffiti 40.81472851,-73.85918171,graffiti 40.72499565,-74.0004149,graffiti 40.81921804,-73.9219141,graffiti 40.62132519,-73.99160327,graffiti 40.63918776,-73.9543551,graffiti 40.8184608,-73.90411437,graffiti 40.81157395,-73.85624781,graffiti 40.59923897,-73.97905293,graffiti 40.82542934,-73.91796114,graffiti 40.85742635,-73.84707868,graffiti 40.62453578,-74.03900651,graffiti 40.8295359,-73.89189208,graffiti 40.71702487,-74.00099203,graffiti 40.81086524,-73.85579417,graffiti 40.82006697,-73.90146736,graffiti 40.61485435,-73.98039152,graffiti 40.81298818,-73.90792629,graffiti 40.68296241,-73.92905036,graffiti 40.82422388,-73.87718781,graffiti 40.84928198,-73.89862281,graffiti 40.71380525,-73.99783929,graffiti 40.81794489,-73.92249365,graffiti 40.78296591,-73.84585948,graffiti 40.74396918,-73.93183637,graffiti 40.82432055,-73.91429512,graffiti 40.6802557,-73.95572588,graffiti 40.71467172,-73.9541483,graffiti 40.81644672,-73.91915359,graffiti 40.81253353,-73.90573049,graffiti 40.62185742,-73.9885341,graffiti 40.83223832,-73.89664683,graffiti 40.82387475,-73.91274926,graffiti 40.83206793,-73.86230331,graffiti 40.78029822,-73.84600648,graffiti 40.61087574,-73.97340191,graffiti 40.63618844,-74.00462986,graffiti 40.82090456,-73.86645608,graffiti 40.86749071,-73.89597017,graffiti 40.75683144,-73.86642933,graffiti 40.66345003,-73.8937184,graffiti 40.70602425,-73.92106205,graffiti 40.84576469,-73.9102917,graffiti 40.83398481,-73.91823247,graffiti 40.81325605,-73.9297243,graffiti 40.66710987,-73.88902288,graffiti 40.83559481,-73.91663319,graffiti 40.84878231,-73.88392332,graffiti 40.835998,-73.916246,graffiti 40.82264526,-73.90937624,graffiti 40.81408462,-73.92917791,graffiti 40.82261235,-73.9026776,graffiti 40.83495026,-73.91726279,graffiti 40.82380437,-73.91405732,graffiti 40.82783284,-73.92473689,graffiti 40.71607366,-73.94634109,graffiti 40.75888064,-73.94037957,graffiti 40.83753432,-73.85470278,graffiti 40.82297959,-73.9122446,graffiti 40.82388206,-73.90803045,graffiti 40.82624234,-73.89802559,graffiti 40.82366717,-73.91410808,graffiti 40.85208609,-73.903896,graffiti 40.82100694,-73.89664983,graffiti 40.73563155,-73.74730115,graffiti 40.68205893,-73.83685907,graffiti 40.7020792,-73.87902858,graffiti 40.85644459,-73.9005495,graffiti 40.82660955,-73.92188375,graffiti 40.82336563,-73.91097949,graffiti 40.66931192,-73.89567728,graffiti 40.66920553,-73.89639479,graffiti 40.72998331,-73.95762316,graffiti 40.66903911,-73.89753416,graffiti 40.86760247,-73.89817548,graffiti 40.76113878,-73.92494942,graffiti 40.67520115,-73.74417735,graffiti 40.61542131,-73.97424654,graffiti 40.8588667,-73.90533585,graffiti 40.82614808,-73.92136037,graffiti 40.67517648,-73.74419187,graffiti 40.82178755,-73.95314955,graffiti 40.67058196,-73.98180266,graffiti 40.61610745,-73.9932464,graffiti 40.61724647,-73.99209365,graffiti 40.57031329,-74.12055282,graffiti 40.59676009,-74.18253573,graffiti 40.75479756,-73.92790185,graffiti 40.66792999,-73.89424476,graffiti 40.66791089,-73.89437095,graffiti 40.63995137,-74.00784058,graffiti 40.78416627,-73.8465464,graffiti 40.61173129,-73.98364476,graffiti 40.61722451,-73.99211887,graffiti 40.61183283,-73.98353668,graffiti 40.66856267,-73.88986398,graffiti 40.66857085,-73.88980629,graffiti 40.61664814,-73.99270245,graffiti 40.60627794,-73.98828468,graffiti 40.61160618,-74.00113093,graffiti 40.61322618,-74.06548368,graffiti 40.61400788,-74.00045383,graffiti 40.61770762,-73.99244299,graffiti 40.60615711,-73.98769408,graffiti 40.61703171,-73.98534359,graffiti 40.66415834,-73.94477163,graffiti 40.61158697,-74.00115614,graffiti 40.60989827,-74.0122742,graffiti 40.6156081,-73.99998199,graffiti 40.61179715,-73.98357271,graffiti 40.71775824,-73.95782213,graffiti 40.62068047,-73.99890854,graffiti 40.62227518,-74.00177951,graffiti 40.62102905,-73.99846187,graffiti 40.74137243,-73.82502165,graffiti 40.61224847,-74.00094005,graffiti 40.72188397,-73.97924888,graffiti 40.66421375,-73.94587096,graffiti 40.622772,-74.00129322,graffiti 40.75881942,-73.82053957,graffiti 40.61274899,-74.12721704,graffiti 40.61221553,-74.00095085,graffiti 40.78321112,-73.84655944,graffiti 40.61648369,-73.99975867,graffiti 40.66599705,-73.92921259,graffiti 40.61668656,-73.99263401,graffiti 40.61614039,-73.99321398,graffiti 40.61277148,-74.12673805,graffiti 40.74630561,-73.76397021,graffiti 40.63710777,-74.00789069,graffiti 40.61440851,-73.99496825,graffiti 40.73434411,-73.87412042,graffiti 40.67751209,-73.91051082,graffiti 40.61640134,-73.99978028,graffiti 40.73416965,-73.88307296,graffiti 40.78403357,-73.84582812,graffiti 40.71718649,-73.94312601,graffiti 40.73203315,-73.88472565,graffiti 40.64875382,-74.00879298,graffiti 40.84117997,-73.93787352,graffiti 40.69734295,-73.81237446,graffiti 40.73325658,-73.88399106,graffiti 40.73235955,-73.87915401,graffiti 40.6777511,-73.9107845,graffiti 40.66839393,-73.75676244,graffiti 40.65492181,-73.95002312,graffiti 40.64890477,-74.00904526,graffiti 40.65695281,-73.99801052,graffiti 40.73306801,-73.87685067,graffiti 40.73272486,-73.87939871,graffiti 40.73221979,-74.00390046,graffiti 40.72809269,-73.87019954,graffiti 40.69164103,-73.85110098,graffiti 40.61646996,-73.99974066,graffiti 40.73279357,-73.87948518,graffiti 40.69433383,-73.9642054,graffiti 40.73405182,-73.8832644,graffiti 40.60440649,-74.00482573,graffiti 40.61601158,-74.00030616,graffiti 40.73255134,-73.87623823,graffiti 40.73133597,-73.8820027,graffiti 40.69659635,-73.81236574,graffiti 40.73248562,-73.87896977,graffiti 40.73109509,-73.88537313,graffiti 40.6187948,-73.99907067,graffiti 40.73555925,-73.87592593,graffiti 40.73414352,-73.88714317,graffiti 40.81497242,-73.88344038,graffiti 40.64879225,-74.00885425,graffiti 40.73597434,-73.87651332,graffiti 40.6881561,-73.85182271,graffiti 40.66160547,-73.89364564,graffiti 40.67092301,-73.84052364,graffiti 40.6488883,-74.00901283,graffiti 40.61534183,-73.99785688,graffiti 40.64870442,-74.00874253,graffiti 40.59967646,-73.9369243,graffiti 40.60723372,-74.00166387,graffiti 40.67704574,-73.91085033,graffiti 40.66157807,-73.89370696,graffiti 40.64886909,-74.00898039,graffiti 40.66198341,-73.89274394,graffiti 40.79636652,-73.94812554,graffiti 40.64854525,-74.008447,graffiti 40.73451107,-73.87621654,graffiti 40.64892398,-74.00907409,graffiti 40.73254337,-73.88442168,graffiti 40.7327744,-73.87692698,graffiti 40.73186884,-73.858029,graffiti 40.67507388,-73.95655128,graffiti 40.81568207,-73.90283947,graffiti 40.7328187,-73.88255574,graffiti 40.61921475,-73.99945969,graffiti 40.61880029,-73.99909228,graffiti 40.72743912,-73.86991939,graffiti 40.73285844,-73.88384742,graffiti 40.66248468,-73.89164739,graffiti 40.76705035,-73.92829292,graffiti 40.74966032,-73.88508494,graffiti 40.7079661,-73.78319004,graffiti 40.70816413,-73.78195584,graffiti 40.70801761,-73.79025578,graffiti 40.66525621,-73.88526639,graffiti 40.71344469,-73.76102046,graffiti 40.76705035,-73.92829292,graffiti 40.70888109,-73.77794618,graffiti 40.75454601,-73.91709195,graffiti 40.62901307,-74.01166527,graffiti 40.70843032,-73.78048334,graffiti 40.77125115,-73.90378159,graffiti 40.70822121,-73.78165988,graffiti 40.7079397,-73.7837492,graffiti 40.71344488,-73.76111424,graffiti 40.70796073,-73.78325498,graffiti 40.71339317,-73.76265109,graffiti 40.82829224,-73.87527604,graffiti 40.70820489,-73.78173568,graffiti 40.7121714,-73.76923123,graffiti 40.66247642,-73.89162578,graffiti 40.61186529,-74.13666981,graffiti 40.76600183,-73.90884683,graffiti 40.70850117,-73.78021259,graffiti 40.70793967,-73.78373116,graffiti 40.68244662,-73.9763479,graffiti 40.70794144,-73.78467977,graffiti 40.63997165,-73.97887079,graffiti 40.70796849,-73.78300248,graffiti 40.61209628,-73.98323407,graffiti 40.70868576,-73.77914072,graffiti 40.8689823,-73.90704248,graffiti 40.66120278,-73.89450773,graffiti 40.70794055,-73.78420366,graffiti 40.70813151,-73.78212186,graffiti 40.67903431,-73.97378573,graffiti 40.7522017,-73.89045477,graffiti 40.71329828,-73.76456324,graffiti 40.72942883,-73.85371176,graffiti 40.6763028,-73.97180757,graffiti 40.70794062,-73.78423973,graffiti 40.7088838,-73.77792813,graffiti 40.72404042,-73.99616857,graffiti 40.70794192,-73.78493586,graffiti 40.6694756,-73.89457395,graffiti 40.71151128,-73.76991886,graffiti 40.73458697,-73.9524026,graffiti 40.630189,-74.02236183,graffiti 40.85646574,-73.86945015,graffiti 40.7080228,-73.78269211,graffiti 40.70849573,-73.78024146,graffiti 40.76015716,-73.81945305,graffiti 40.70793969,-73.78374198,graffiti 40.71142638,-73.77000933,graffiti 40.63149562,-74.02182546,graffiti 40.61206509,-74.13714924,graffiti 40.71868262,-73.99546542,graffiti 40.71977238,-73.99932539,graffiti 40.71920962,-73.99551228,graffiti 40.71972846,-73.99933622,graffiti 40.72011254,-73.99332966,graffiti 40.72018684,-73.99937589,graffiti 40.71995344,-73.99544729,graffiti 40.68651955,-74.00001803,graffiti 40.71886654,-73.99593438,graffiti 40.7183368,-73.99588391,graffiti 40.71936616,-74.00023809,graffiti 40.719893,-73.99420631,graffiti 40.74396918,-73.93183637,graffiti 40.67135381,-73.8253171,graffiti 40.83018151,-73.83264388,graffiti 40.71459308,-73.93853621,graffiti 40.71467638,-73.94035418,graffiti 40.63938436,-74.02060296,graffiti 40.71473206,-73.9418836,graffiti 40.71945111,-73.99439033,graffiti 40.6035902,-74.1315535,graffiti 40.71473483,-73.94194132,graffiti 40.71462938,-73.93971213,graffiti 40.71457385,-73.94387133,graffiti 40.71463936,-73.94314622,graffiti 40.71462365,-73.9392468,graffiti 40.68006204,-73.82289671,graffiti 40.60359023,-74.13153189,graffiti 40.71469393,-73.94249326,graffiti 40.71473481,-73.94191246,graffiti 40.8478323,-73.89205392,graffiti 40.66903548,-73.9028332,graffiti 40.6501226,-73.96075149,graffiti 40.75766096,-73.78223418,graffiti 40.62819778,-74.07639615,graffiti 40.67228083,-73.91088554,graffiti 40.71755134,-73.94270724,graffiti 40.7797411,-73.84605832,graffiti 40.67495208,-73.9047533,graffiti 40.59825759,-73.98776395,graffiti 40.66859391,-73.90656476,graffiti 40.67206337,-73.91365803,graffiti 40.66703093,-73.98707366,graffiti 40.59997062,-73.99061207,graffiti 40.65514915,-73.92002662,graffiti 40.6695741,-73.94543043,graffiti 40.67478222,-73.90513569,graffiti 40.60415114,-74.00658673,graffiti 40.61288322,-74.06523122,graffiti 40.75043901,-73.98929516,graffiti 40.67106976,-73.91366293,graffiti 40.73665466,-73.90843953,graffiti 40.71884114,-73.95448092,graffiti 40.82289837,-73.86046876,graffiti 40.61556113,-73.95568595,graffiti 40.71335984,-73.96201284,graffiti 40.71999958,-73.98806628,graffiti 40.83914845,-73.85272601,graffiti 40.83601285,-73.84763023,graffiti 40.61864698,-73.95754616,graffiti 40.83595768,-73.87732516,graffiti 40.82289837,-73.86046876,graffiti 40.6828101,-73.96057722,graffiti 40.70740118,-73.9549973,graffiti 40.83927747,-73.85274741,graffiti 40.71460031,-73.96150351,graffiti 40.61978159,-73.9824829,graffiti 40.71725319,-73.94482143,graffiti 40.74398471,-73.90696066,graffiti 40.71067516,-73.90799187,graffiti 40.7446781,-73.91635359,graffiti 40.68209912,-73.96033246,graffiti 40.69543397,-73.97230434,graffiti 40.61910492,-73.95637879,graffiti 40.71824255,-73.96135711,graffiti 40.71210527,-73.96137149,graffiti 40.71188001,-73.96080891,graffiti 40.73569247,-73.89689762,graffiti 40.71439703,-73.96100944,graffiti 40.72141631,-73.99359649,graffiti 40.73053249,-73.95822897,graffiti 40.60137629,-73.9968094,graffiti 40.73022969,-73.88733742,graffiti 40.76422502,-73.98239076,graffiti 40.74665422,-73.99195198,graffiti 40.72523136,-73.99104179,graffiti 40.68107826,-73.84833035,graffiti 40.66706622,-73.83443374,graffiti 40.63378111,-73.96367943,graffiti 40.76366771,-73.9815859,graffiti 40.84773707,-73.89904083,graffiti 40.63521397,-73.96395608,graffiti 40.73754819,-73.85400065,graffiti 40.67678827,-73.88934567,graffiti 40.68207943,-73.8702206,graffiti 40.7225116,-73.95632915,graffiti 40.73629427,-73.95254571,graffiti 40.83466885,-73.8893505,graffiti 40.71875095,-73.99062059,graffiti 40.68698666,-73.9508825,graffiti 40.63336966,-73.96452993,graffiti 40.72272214,-73.95424016,graffiti 40.5536918,-74.13205261,graffiti 40.63296141,-73.96698367,graffiti 40.85492729,-73.89494874,graffiti 40.63196757,-73.97740339,graffiti 40.79016426,-73.81185285,graffiti 40.75972836,-73.91372488,graffiti 40.6173041,-73.99203601,graffiti 40.63521348,-74.02797331,graffiti 40.85396304,-73.89703239,graffiti 40.62145549,-73.94588042,graffiti 40.66703861,-73.83432207,graffiti 40.72452969,-73.951212,graffiti 40.77305738,-73.91446941,graffiti 40.70999033,-73.82065299,graffiti 40.68687623,-73.91644052,graffiti 40.83353656,-73.91701882,graffiti 40.88260252,-73.88395468,graffiti 40.56722784,-74.12341229,graffiti 40.54331113,-74.16575976,graffiti 40.85439521,-73.86855412,graffiti 40.70683801,-73.89824792,graffiti 40.70821499,-73.93994156,graffiti 40.77517019,-73.90324518,graffiti 40.69066172,-73.94443957,graffiti 40.74080058,-73.86750076,graffiti 40.7469564,-73.70140931,graffiti 40.73935474,-73.86806297,graffiti 40.64263921,-73.95762098,graffiti 40.85439521,-73.86855412,graffiti 40.69590337,-73.83866437,graffiti 40.78211427,-73.79437352,graffiti 40.7473743,-73.90341187,graffiti 40.60566574,-74.07218559,graffiti 40.68343166,-74.00232198,graffiti 40.74674048,-73.92178613,graffiti 40.64950849,-73.9629213,graffiti 40.70673134,-73.8986809,graffiti 40.77260135,-73.91392483,graffiti 40.86547836,-73.88670698,graffiti 40.69939962,-73.8343859,graffiti 40.74170952,-73.98026036,graffiti 40.68344538,-74.00237246,graffiti 40.61862346,-73.98365748,graffiti 40.71183865,-73.78743383,graffiti 40.67995177,-73.84955514,graffiti 40.70553476,-73.77913673,graffiti 40.71183865,-73.78743383,graffiti 40.72291775,-73.99464979,graffiti 40.7043627,-73.77069373,graffiti 40.61027112,-73.92298688,graffiti 40.77925243,-73.95293756,graffiti 40.67839334,-73.88315633,graffiti 40.70486075,-73.78411625,graffiti 40.75356376,-73.79457716,graffiti 40.66661815,-73.94025297,graffiti 40.75057371,-73.8765404,graffiti 40.79167773,-73.84588265,graffiti 40.70435177,-73.77071901,graffiti 40.70383699,-73.78708425,graffiti 40.7823126,-73.9524082,graffiti 40.70553477,-73.77914395,graffiti 40.70402486,-73.79843748,graffiti 40.66560526,-73.9793601,graffiti 40.75356376,-73.79457716,graffiti 40.72258421,-73.94069705,graffiti 40.70487177,-73.78413785,graffiti 40.70399479,-73.76926675,graffiti 40.61324741,-74.08724197,graffiti 40.80590426,-73.92320483,graffiti 40.70387257,-73.78702643,graffiti 40.70385347,-73.78709141,graffiti 40.60568014,-73.99714773,graffiti 40.70358328,-73.78792541,graffiti 40.70383154,-73.78710591,graffiti 40.77004021,-73.79288006,graffiti 40.75110361,-73.88741039,graffiti 40.60983169,-73.93123141,graffiti 40.70706888,-73.79690979,graffiti 40.74716131,-73.89227478,graffiti 40.6119692,-74.13231917,graffiti 40.66333624,-73.94763066,graffiti 40.66823718,-73.93951255,graffiti 40.7047809,-73.77258221,graffiti 40.70421071,-73.77017849,graffiti 40.71233331,-73.96204589,graffiti 40.85980775,-73.86853619,graffiti 40.69762604,-73.90079002,graffiti 40.70378517,-73.78726114,graffiti 40.67995712,-73.84945057,graffiti 40.70460673,-73.7847771,graffiti 40.70548577,-73.77651118,graffiti 40.63975066,-73.954906,graffiti 40.70459241,-73.77164872,graffiti 40.6826468,-73.95002037,graffiti 40.72595102,-73.95015385,graffiti 40.704792,-73.77264349,graffiti 40.66511103,-73.93980375,graffiti 40.70553748,-73.77912591,graffiti 40.75327861,-73.7932137,graffiti 40.71429527,-73.94679703,graffiti 40.72138338,-73.99363257,graffiti 40.69194251,-73.95463992,graffiti 40.87143855,-73.86745378,graffiti 40.72147944,-73.99359288,graffiti 40.72185272,-73.99345575,graffiti 40.74272431,-73.88506803,graffiti 40.72006861,-73.99318536,graffiti 40.63955305,-74.01171035,graffiti 40.75352491,-73.79433906,graffiti 40.63600978,-73.99108619,graffiti 40.75196569,-73.79422837,graffiti 40.6734956,-74.00018025,graffiti 40.75295252,-73.79198754,graffiti 40.73099798,-73.98972765,graffiti 40.67916081,-73.99936186,graffiti 40.7308689,-73.98895914,graffiti 40.71216561,-73.9473939,graffiti 40.88088687,-73.91160041,graffiti 40.73102809,-73.98884366,graffiti 40.73591603,-73.89224605,graffiti 40.78734443,-73.94777145,graffiti 40.7357795,-73.89300404,graffiti 40.70773385,-74.00137061,graffiti 40.83769214,-73.84727221,graffiti 40.67814152,-73.98493358,graffiti 40.70888648,-73.77789566,graffiti 40.67726569,-73.9831564,graffiti 40.67859977,-73.98400331,graffiti 40.70997753,-73.77297207,graffiti 40.67704625,-73.98412986,graffiti 40.7068491,-73.7832586,graffiti 40.70888112,-73.7779606,graffiti 40.78012685,-73.94419521,graffiti 40.71249294,-73.88175831,graffiti 40.67145958,-73.97778295,graffiti 40.67864111,-73.98523991,graffiti 40.70519727,-73.79554493,graffiti 40.85563987,-73.88521271,graffiti 40.57111022,-74.11966519,graffiti 40.73613172,-73.89103328,graffiti 40.67783674,-73.98411525,graffiti 40.7144676,-73.95168109,graffiti 40.69173966,-73.91987455,graffiti 40.71332909,-73.82860145,graffiti 40.68079382,-73.9944729,graffiti 40.75610816,-73.92571308,graffiti 40.68630079,-73.93024751,graffiti 40.69118991,-73.83817815,graffiti 40.68441943,-73.99077325,graffiti 40.69752009,-73.97271099,graffiti 40.69287153,-73.92135889,graffiti 40.88295188,-73.89631123,graffiti 40.86717931,-73.89764103,graffiti 40.67702247,-73.99379904,graffiti 40.74014885,-73.95489579,graffiti 40.68994942,-73.91895359,graffiti 40.79912244,-73.9427779,graffiti 40.77562765,-73.7679426,graffiti 40.69082883,-73.92050308,graffiti 40.82543937,-73.89039201,graffiti 40.71625193,-73.95941391,graffiti 40.68577819,-73.99215764,graffiti 40.81738142,-73.88531121,graffiti 40.70050134,-73.91284942,graffiti 40.69888291,-73.91415705,graffiti 40.69860218,-73.9131332,graffiti 40.68677204,-73.79425288,graffiti 40.68972676,-73.92245158,graffiti 40.73058282,-73.86362793,graffiti 40.8239546,-73.91307796,graffiti 40.86455596,-73.86370027,graffiti 40.63382579,-74.14608587,graffiti 40.63356496,-74.14614655,graffiti 40.85107429,-73.84854999,graffiti 40.6867391,-73.79425298,graffiti 40.71963513,-74.00167028,graffiti 40.8702596,-73.86617618,graffiti 40.68675554,-73.7942385,graffiti 40.71392915,-73.753862,graffiti 40.86578159,-73.86733851,graffiti 40.69237853,-73.92714356,graffiti 40.7145828,-73.93014577,graffiti 40.71965155,-73.99625179,graffiti 40.71182081,-73.76960397,graffiti 40.81734245,-73.93848105,graffiti 40.71922063,-73.99642137,graffiti 40.83740979,-73.91763558,graffiti 40.84466938,-73.85816054,graffiti 40.68672106,-73.80599333,graffiti 40.67970262,-73.92210991,graffiti 40.68820737,-73.92021414,graffiti 40.84492488,-73.86759697,graffiti 40.86387409,-73.86739293,graffiti 40.7399993,-73.7579084,graffiti 40.67918273,-73.92045928,graffiti 40.67960928,-73.92208839,graffiti 40.68968005,-73.92237231,graffiti 40.86574866,-73.86733858,graffiti 40.72001385,-73.99611108,graffiti 40.63429809,-74.14593559,graffiti 40.68716069,-73.92288005,graffiti 40.82223568,-73.92795886,graffiti 40.82048235,-73.91284042,graffiti 40.83858182,-73.83557536,graffiti 40.72156294,-73.9106068,graffiti 40.82956988,-73.91623964,graffiti 40.6867238,-73.80598972,graffiti 40.60257775,-73.9863839,graffiti 40.78520212,-73.9771275,graffiti 40.69080945,-73.92433263,graffiti 40.67991795,-74.00990755,graffiti 40.73990222,-73.92427327,graffiti 40.69138371,-73.94468417,graffiti 40.68956463,-73.92217412,graffiti 40.82673458,-73.94324918,graffiti 40.69766248,-73.9861481,graffiti 40.68868249,-73.920603,graffiti 40.686144,-73.9296924,graffiti 40.67715525,-73.92592721,graffiti 40.70880641,-73.95478715,graffiti 40.69054843,-73.92391825,graffiti 40.68788554,-73.91922293,graffiti 40.69254844,-73.94105913,graffiti 40.75748527,-74.00072913,graffiti 40.68755576,-73.91863559,graffiti 40.67710804,-73.92508725,graffiti 40.75452439,-73.92149906,graffiti 40.69098535,-73.92468942,graffiti 40.71645389,-73.99570366,graffiti 40.67296169,-73.98189935,graffiti 40.59115883,-73.95303051,graffiti 40.67917055,-73.92692004,graffiti 40.69101283,-73.92473627,graffiti 40.69117222,-73.92502817,graffiti 40.69057866,-73.92397591,graffiti 40.62122651,-73.99363492,graffiti 40.68051377,-73.94335919,graffiti 40.62135063,-74.02307931,graffiti 40.70949717,-73.95248544,graffiti 40.59746956,-73.98539109,graffiti 40.68049156,-73.93756173,graffiti 40.7038082,-73.98779507,graffiti 40.6896086,-73.9222534,graffiti 40.66313031,-73.98470628,graffiti 40.67300837,-73.98199667,graffiti 40.7681073,-73.81340977,graffiti 40.6889687,-73.93024833,graffiti 40.7445745,-73.89690192,graffiti 40.72790497,-73.99466743,graffiti 40.73659393,-73.71179757,graffiti 40.888476,-73.91168435,graffiti 40.7572108,-74.00093487,graffiti 40.69105678,-73.92477949,graffiti 40.74379337,-73.81972836,graffiti 40.74631945,-74.00670545,graffiti 40.68798175,-73.91942474,graffiti 40.69103754,-73.92474345,graffiti 40.67974772,-73.93755161,graffiti 40.69145682,-73.94263951,graffiti 40.67235872,-74.01122944,graffiti 40.85867044,-73.88563044,graffiti 40.73373207,-73.99431335,graffiti 40.59845423,-73.98058358,graffiti 40.68791555,-73.98417415,graffiti 40.63197526,-74.00244628,graffiti 40.7128527,-73.99442696,graffiti 40.64106845,-73.99157196,graffiti 40.75294802,-73.87921773,graffiti 40.60568837,-73.99714052,graffiti 40.74183541,-73.82087401,graffiti 40.72443297,-74.00166679,graffiti 40.68708396,-73.98473685,graffiti 40.84904065,-73.93756617,graffiti 40.71831936,-73.98450964,graffiti 40.84901037,-73.93741439,graffiti 40.82840722,-73.84970729,graffiti 40.63765951,-74.00729264,graffiti 40.87602124,-73.87395345,graffiti 40.81010712,-73.90563639,graffiti 40.81380284,-73.90391154,graffiti 40.62764319,-74.01368245,graffiti 40.75376134,-73.87745127,graffiti 40.87525772,-73.8735029,graffiti 40.5984515,-73.9806448,graffiti 40.75240149,-73.87891193,graffiti 40.7175674,-73.98526737,graffiti 40.71992849,-73.99107136,graffiti 40.61899477,-73.99033563,graffiti 40.61198205,-73.9936322,graffiti 40.75452706,-73.87739211,graffiti 40.75190279,-73.87711542,graffiti 40.74985653,-73.87579463,graffiti 40.75187908,-73.87805387,graffiti 40.73899918,-73.99298856,graffiti 40.77026944,-73.92751686,graffiti 40.6396901,-74.01341469,graffiti 40.84902963,-73.93750474,graffiti 40.62162435,-73.99129344,graffiti 40.71810528,-73.98462152,graffiti 40.74825879,-73.87808576,graffiti 40.76856018,-73.78068588,graffiti 40.74825879,-73.87808576,graffiti 40.72777901,-73.7449208,graffiti 40.71231956,-73.96196293,graffiti 40.596854,-73.98049403,graffiti 40.80684024,-73.92749148,graffiti 40.71278065,-73.78330785,graffiti 40.71430276,-73.77691448,graffiti 40.78629309,-73.81628382,graffiti 40.71431638,-73.77686033,graffiti 40.71369284,-73.77946321,graffiti 40.71482278,-73.77474117,graffiti 40.8710471,-73.89821721,graffiti 40.71278051,-73.7832357,graffiti 40.80668082,-73.92713043,graffiti 40.63547801,-74.08280696,graffiti 40.75596033,-73.87787314,graffiti 40.71430548,-73.77690004,graffiti 40.71431366,-73.77687476,graffiti 40.72285851,-73.86785391,graffiti 40.71366015,-73.77959318,graffiti 40.71367921,-73.77951015,graffiti 40.71492898,-73.77430793,graffiti 40.72058989,-73.99003951,graffiti 40.71615521,-73.94466001,graffiti 40.71429188,-73.77696502,graffiti 40.71970349,-73.9920346,graffiti 40.7143191,-73.77684589,graffiti 40.71318087,-73.78158592,graffiti 40.71304198,-73.78216352,graffiti 40.83018151,-73.83264388,graffiti 40.82701875,-73.94631304,graffiti 40.64010649,-74.01920153,graffiti 40.74352525,-73.82929966,graffiti 40.82216769,-73.949865,graffiti 40.73981442,-73.81513092,graffiti 40.59816695,-74.07644101,graffiti 40.83105109,-73.94708671,graffiti 40.74352805,-73.82933574,graffiti 40.74352806,-73.82934296,graffiti 40.73879965,-73.80723821,graffiti 40.71234154,-73.96202063,graffiti 40.82606555,-73.95070396,graffiti 40.74352805,-73.82933935,graffiti 40.7087699,-73.86338039,graffiti 40.67219372,-73.92754774,graffiti 40.78920984,-73.84559946,graffiti 40.63057543,-74.00143027,graffiti 40.68799004,-73.94813774,graffiti 40.70810405,-73.94306884,graffiti 40.69774297,-73.96463993,graffiti 40.68675847,-73.95680689,graffiti 40.71475752,-73.75360282,graffiti 40.66760266,-73.92474827,graffiti 40.6954502,-73.97130903,graffiti 40.64451758,-73.98216291,graffiti 40.73531471,-73.95331499,graffiti 40.71475752,-73.75360282,graffiti 40.67931996,-73.94962267,graffiti 40.71475752,-73.75360282,graffiti 40.63199444,-74.00374689,graffiti 40.69571006,-73.96793349,graffiti 40.71325199,-73.75167854,graffiti 40.74483331,-73.98187621,graffiti 40.68071402,-73.95557775,graffiti 40.70668103,-73.91085759,graffiti 40.67171267,-73.93083595,graffiti 40.63053152,-74.00132219,graffiti 40.67445689,-73.9581271,graffiti 40.6698223,-73.88136172,graffiti 40.68041004,-73.92948933,graffiti 40.71968451,-73.99715006,graffiti 40.69006837,-73.99377259,graffiti 40.67147382,-73.93075689,graffiti 40.87283464,-73.87648696,graffiti 40.76228482,-73.91155567,graffiti 40.71331361,-73.99104339,graffiti 40.7132999,-73.99118768,graffiti 40.6319368,-74.00365321,graffiti 40.68888474,-73.9479243,graffiti 40.78796485,-73.97165556,graffiti 40.63815102,-73.99727245,graffiti 40.64163868,-74.01512664,graffiti 40.69371756,-73.93091049,graffiti 40.69415838,-73.93373364,graffiti 40.64074887,-74.01853512,graffiti 40.7741849,-73.84542488,graffiti 40.78321408,-73.8446709,graffiti 40.75808847,-73.98777068,graffiti 40.78403906,-73.84582811,graffiti 40.7848535,-73.84124018,graffiti 40.69459135,-73.93737543,graffiti 40.71705504,-74.00271275,graffiti 40.60736816,-74.00377432,graffiti 40.69694299,-73.9607636,graffiti 40.6922451,-73.94372425,graffiti 40.57860156,-73.96087272,graffiti 40.78297414,-73.84585946,graffiti 40.693172,-73.95420996,graffiti 40.70671029,-73.7913167,graffiti 40.78485076,-73.84124019,graffiti 40.78016431,-73.84038838,graffiti 40.81919365,-73.89172463,graffiti 40.78403631,-73.84582811,graffiti 40.69339186,-73.95492742,graffiti 40.7848535,-73.84124018,graffiti 40.71693406,-73.99260129,graffiti 40.69466735,-73.93583553,graffiti 40.57784383,-73.96040158,graffiti 40.78765187,-73.97133429,graffiti 40.78296868,-73.84588114,graffiti 40.73463561,-73.88243347,graffiti 40.74174056,-73.86157699,graffiti 40.6937394,-73.93071213,graffiti 40.69543292,-73.94053007,graffiti 40.64084012,-74.01380767,graffiti 40.64177947,-74.00659405,graffiti 40.58016605,-73.98326729,graffiti 40.77430454,-73.84663773,graffiti 40.71928375,-74.00395021,graffiti 40.67866331,-73.91201629,graffiti 40.76856018,-73.78068588,graffiti 40.7179855,-74.00294005,graffiti 40.64131419,-74.01923071,graffiti 40.63838117,-74.0101536,graffiti 40.76188591,-73.75917891,graffiti 40.64123048,-74.00719214,graffiti 40.63967418,-74.00737934,graffiti 40.64063757,-74.00780463,graffiti 40.63953673,-74.01013936,graffiti 40.81466891,-73.85758504,graffiti 40.78485076,-73.84124019,graffiti 40.63963576,-74.00727844,graffiti 40.69634995,-73.96029153,graffiti 40.78318033,-73.84204942,graffiti 40.64220673,-74.01606724,graffiti 40.7139971,-73.92411513,graffiti 40.6384196,-74.01011037,graffiti 40.64183873,-74.01740398,graffiti 40.69318846,-73.95420274,graffiti 40.69360014,-73.93193475,graffiti 40.6245861,-73.99308344,graffiti 40.84014341,-73.91748763,graffiti 40.67574618,-73.95612183,graffiti 40.76117358,-73.83465826,graffiti 40.83983265,-73.9166351,graffiti 40.58171258,-73.95646442,graffiti 40.80706446,-73.91803074,graffiti 40.63818701,-73.97615461,graffiti 40.58150008,-73.96090702,graffiti 40.67866554,-73.96072027,graffiti 40.83977768,-73.91653759,graffiti 40.80919189,-73.90750529,graffiti 40.8397639,-73.91646172,graffiti 40.81929096,-73.90234645,graffiti 40.60332511,-73.99720545,graffiti 40.83965395,-73.91622694,graffiti 40.69295005,-73.92810576,graffiti 40.67287275,-73.95022957,graffiti 40.65981252,-73.99089199,graffiti 40.84007188,-73.91725642,graffiti 40.74163495,-73.8225923,graffiti 40.69246918,-73.92726246,graffiti 40.63812617,-74.02594598,graffiti 40.67773331,-73.96373842,graffiti 40.76010212,-73.80103643,graffiti 40.84054901,-73.92051211,graffiti 40.69243074,-73.92723005,graffiti 40.84013788,-73.91742981,graffiti 40.81081247,-73.92846252,graffiti 40.60828223,-74.00136497,graffiti 40.75683444,-73.8099437,graffiti 40.69267526,-73.92761563,graffiti 40.69119418,-73.92503176,graffiti 40.7014457,-73.84109258,graffiti 40.69240326,-73.92718681,graffiti 40.83951092,-73.9158079,graffiti 40.67562565,-73.94997155,graffiti 40.76918723,-73.83586583,graffiti 40.67458816,-73.95004443,graffiti 40.85194678,-73.93182331,graffiti 40.6912354,-73.92510383,graffiti 40.6911997,-73.92507863,graffiti 40.69374195,-73.80747666,graffiti 40.68469536,-73.96816234,graffiti 40.82953894,-73.84417972,graffiti 40.70894732,-73.86026724,graffiti 40.83611834,-73.88405021,graffiti 40.83489901,-73.9410848,graffiti 40.83715891,-73.88713827,graffiti 40.66022221,-73.950567,graffiti 40.74985205,-73.87673663,graffiti 40.68497597,-73.96129706,graffiti 40.71804041,-73.9976191,graffiti 40.83639361,-73.88484116,graffiti 40.72040911,-73.99657282,graffiti 40.71959119,-73.99718614,graffiti 40.8147548,-73.92995031,graffiti 40.71819428,-73.950037,graffiti 40.71736783,-73.99423539,graffiti 40.71680242,-73.99451681,graffiti 40.65829377,-73.95327518,graffiti 40.71747761,-73.99417766,graffiti 40.84764386,-73.93315062,graffiti 40.76021179,-73.82642327,graffiti 40.81533223,-73.92719682,graffiti 40.83915067,-73.91486871,graffiti 40.69267824,-73.83287723,graffiti 40.65615384,-73.93798456,graffiti 40.71791676,-73.99395396,graffiti 40.75453537,-73.87746067,graffiti 40.72185558,-73.99601717,graffiti 40.71329305,-73.76468951,graffiti 40.71740419,-73.76713164,graffiti 40.7465686,-73.94788282,graffiti 40.83540814,-73.88472362,graffiti 40.71778239,-73.99682908,graffiti 40.65763522,-73.94169908,graffiti 40.71179663,-73.78996254,graffiti 40.88388557,-73.86262273,graffiti 40.83156,-73.87671173,graffiti 40.7472023,-73.82868032,graffiti 40.8325304,-73.9412206,graffiti 40.71328923,-73.76550835,graffiti 40.60355294,-73.99813096,graffiti 40.75047046,-73.87752229,graffiti 40.70894942,-73.79712408,graffiti 40.70753802,-73.93185198,graffiti 40.75984653,-73.80404769,graffiti 40.90378127,-73.85112493,graffiti 40.70983289,-73.79537561,graffiti 40.71010859,-73.7945199,graffiti 40.64432786,-73.94597718,graffiti 40.83906816,-73.91464836,graffiti 40.71770004,-73.99659461,graffiti 40.71257072,-73.76852645,graffiti 40.7535918,-73.90753557,graffiti 40.70814455,-73.79520406,graffiti 40.66495459,-73.93983994,graffiti 40.71460163,-73.93912418,graffiti 40.75460604,-73.87681085,graffiti 40.7389704,-73.89166735,graffiti 40.83189723,-73.85735302,graffiti 40.70915289,-73.79423069,graffiti 40.71025341,-73.79415876,graffiti 40.83593073,-73.88862925,graffiti 40.71733576,-73.76722567,graffiti 40.71596871,-73.76987822,graffiti 40.88890709,-73.91191525,graffiti 40.71786187,-73.99398283,graffiti 40.75519355,-73.83520008,graffiti 40.71039817,-73.79376154,graffiti 40.81679847,-73.92808758,graffiti 40.73790359,-73.74827044,graffiti 40.66122137,-73.95069962,graffiti 40.71067058,-73.78958374,graffiti 40.68999985,-73.99614528,graffiti 40.88894616,-73.85982379,graffiti 40.66238977,-73.93758228,graffiti 40.7172004,-73.99431837,graffiti 40.85208888,-73.93077491,graffiti 40.71731019,-73.99426425,graffiti 40.656162,-73.9378476,graffiti 40.73051434,-73.98470164,graffiti 40.71794983,-73.99730886,graffiti 40.71259541,-73.76851915,graffiti 40.83634934,-73.88726252,graffiti 40.71025879,-73.79409742,graffiti 40.66054184,-73.9535187,graffiti 40.88902848,-73.85980191,graffiti 40.8318733,-73.88786996,graffiti 40.71393187,-73.75384756,graffiti 40.6626074,-73.93407857,graffiti 40.66099475,-73.95356524,graffiti 40.84600148,-73.93614496,graffiti 40.70815547,-73.79517156,graffiti 40.71780698,-73.99401169,graffiti 40.83701301,-73.88669763,graffiti 40.65614568,-73.93812513,graffiti 40.75886513,-73.88959916,graffiti 40.83018151,-73.83264388,graffiti 40.61156113,-73.98381047,graffiti 40.69761779,-73.900772,graffiti 40.74564888,-73.9845105,graffiti 40.83184048,-73.87464785,graffiti 40.8572744,-73.88949003,graffiti 40.74975815,-73.88410308,graffiti 40.83025969,-73.87479898,graffiti 40.83115137,-73.87962864,graffiti 40.83123594,-73.87913343,graffiti 40.71527613,-74.00872601,graffiti 40.71410961,-73.94897954,graffiti 40.83222437,-73.87430744,graffiti 40.71376928,-73.76268943,graffiti 40.76405926,-73.88787222,graffiti 40.65063112,-74.01039691,graffiti 40.74306399,-73.82554409,graffiti 40.83350119,-73.82793773,graffiti 40.7315082,-73.9544867,graffiti 40.86044837,-73.86710694,graffiti 40.66865561,-73.93668964,graffiti 40.73878216,-73.80178572,graffiti 40.68091477,-73.73883381,graffiti 40.7499785,-73.88216458,graffiti 40.69011379,-73.8611577,graffiti 40.83476338,-73.91320477,graffiti 40.67833443,-73.99301297,graffiti 40.75175831,-73.87805409,graffiti 40.66487844,-73.94120253,graffiti 40.61720801,-73.99161459,graffiti 40.8316662,-73.875931,graffiti 40.76987609,-73.87271386,graffiti 40.74836201,-73.87706781,graffiti 40.64200351,-73.96069141,graffiti 40.75187636,-73.87807553,graffiti 40.83338499,-73.86662978,graffiti 40.8716477,-73.91831632,graffiti 40.66646494,-73.96049676,graffiti 40.73881354,-73.8008871,graffiti 40.66846048,-73.95340504,graffiti 40.83173428,-73.87542858,graffiti 40.74376132,-73.82565053,graffiti 40.67818361,-73.99612794,graffiti 40.66871501,-73.95866421,graffiti 40.73882683,-73.79905752,graffiti 40.7501605,-73.88031997,graffiti 40.73881351,-73.80086545,graffiti 40.74402446,-73.82723412,graffiti 40.74976358,-73.88404893,graffiti 40.66898928,-73.92553254,graffiti 40.69837656,-73.93770727,graffiti 40.71572308,-73.94796105,graffiti 40.76078059,-73.92287061,graffiti 40.71850124,-73.99144673,graffiti 40.71852046,-73.99150805,graffiti 40.68091477,-73.73883381,graffiti 40.72937855,-73.98947534,graffiti 40.72322474,-73.7278304,graffiti 40.71811701,-73.99197346,graffiti 40.74585781,-73.91196003,graffiti 40.74371893,-73.72054344,graffiti 40.8327416,-73.86803317,graffiti 40.71863027,-73.99187239,graffiti 40.70914336,-73.96045704,graffiti 40.69380228,-73.93030818,graffiti 40.83472046,-73.8703818,graffiti 40.8326367,-73.86750578,graffiti 40.83248576,-73.86993806,graffiti 40.64068025,-74.01857834,graffiti 40.72937855,-73.98947534,graffiti 40.71901707,-73.95515901,graffiti 40.72330747,-73.99392461,graffiti 40.83516857,-73.87103141,graffiti 40.8363559,-73.88836112,graffiti 40.69251826,-73.85894579,graffiti 40.67544254,-73.8193399,graffiti 40.83510269,-73.87101708,graffiti 40.69393648,-73.92981761,graffiti 40.74534125,-73.95323579,graffiti 40.83334107,-73.86662264,graffiti 40.75194967,-73.70267905,graffiti 40.7189953,-73.99154407,graffiti 40.69395573,-73.9298861,graffiti 40.71651662,-73.96293452,graffiti 40.70969273,-73.96167948,graffiti 40.69412607,-73.93015638,graffiti 40.83043492,-73.90613514,graffiti 40.70921226,-73.9612866,graffiti 40.69010003,-73.86112888,graffiti 40.83362168,-73.87968922,graffiti 40.74444547,-73.929685,graffiti 40.74584952,-73.91188425,graffiti 40.68017718,-73.94546862,graffiti 40.75191416,-73.70274778,graffiti 40.76549367,-73.9321609,graffiti 40.68330589,-73.96601409,graffiti 40.75240731,-73.78212864,graffiti 40.76420099,-73.91567206,graffiti 40.64069672,-74.01856032,graffiti 40.62338409,-74.02511892,graffiti 40.78560465,-73.82183598,graffiti 40.71823025,-73.95070796,graffiti 40.69269329,-73.95849068,graffiti 40.83813391,-73.90622185,graffiti 40.61296987,-73.98954052,graffiti 40.8314638,-73.90566031,graffiti 40.61298086,-73.98955852,graffiti 40.61742803,-74.15269927,graffiti 40.61488605,-73.99383363,graffiti 40.7449543,-73.95336959,graffiti 40.62228342,-74.00177231,graffiti 40.68052341,-73.94629398,graffiti 40.61923122,-73.99952452,graffiti 40.83379932,-73.90878285,graffiti 40.61247586,-73.99005564,graffiti 40.78560465,-73.82183598,graffiti 40.68380401,-73.95398564,graffiti 40.83537682,-73.90789531,graffiti 40.72146177,-73.98214231,graffiti 40.74122107,-73.98098946,graffiti 40.83168329,-73.9055552,graffiti 40.83170798,-73.90894833,graffiti 40.83608899,-73.90277352,graffiti 40.61298909,-73.98955132,graffiti 40.65826353,-73.96046918,graffiti 40.8368433,-73.90220504,graffiti 40.71325861,-73.80827879,graffiti 40.74380992,-73.81977884,graffiti 40.74451199,-73.81940161,graffiti 40.633972,-74.12190721,graffiti 40.82898145,-73.89187492,graffiti 40.72114475,-73.99840905,graffiti 40.74393445,-74.00103934,graffiti 40.75299988,-73.79237359,graffiti 40.84774031,-73.88769502,graffiti 40.76103367,-73.86883583,graffiti 40.73224961,-73.95530886,graffiti 40.84491614,-73.88232169,graffiti 40.86010107,-73.90117668,graffiti 40.76617133,-73.91514972,graffiti 40.84785155,-73.89209364,graffiti 40.69010003,-73.86113249,graffiti 40.6332634,-74.02110907,graffiti 40.84165937,-73.88350566,graffiti 40.74064965,-73.85609049,graffiti 40.68093907,-73.93777403,graffiti 40.74053733,-73.85625673,graffiti 40.70646774,-73.93698195,graffiti 40.79459199,-73.93955304,graffiti 40.74754644,-73.88466272,graffiti 40.85914234,-73.90344115,graffiti 40.71625053,-73.94899233,graffiti 40.7376159,-73.88193024,graffiti 40.85328408,-73.89589841,graffiti 40.70744881,-73.93421096,graffiti 40.7207328,-73.99251428,graffiti 40.84249464,-73.86658261,graffiti 40.8012387,-73.93762907,graffiti 40.70913379,-73.93366825,graffiti 40.84734793,-73.85571146,graffiti 40.74141459,-74.00649565,graffiti 40.84404266,-73.86423384,graffiti 40.84179214,-73.86910669,graffiti 40.84227818,-73.8669047,graffiti 40.84228324,-73.86892863,graffiti 40.71450399,-73.93622766,graffiti 40.7087892,-73.93587604,graffiti 40.70643499,-73.93732824,graffiti 40.89752289,-73.8550455,graffiti 40.85372849,-73.89564829,graffiti 40.63608629,-74.01254204,graffiti 40.67582113,-73.81922351,graffiti 40.84557098,-73.86151273,graffiti 40.63591918,-74.00912997,graffiti 40.66121184,-73.94776208,graffiti 40.70706396,-73.93810311,graffiti 40.71445914,-73.94506182,graffiti 40.71464309,-73.93967605,graffiti 40.85376141,-73.89563017,graffiti 40.7494754,-73.88682486,graffiti 40.83938292,-73.86966798,graffiti 40.70864174,-73.93725763,graffiti 40.63598506,-74.00906153,graffiti 40.62935554,-74.01671622,graffiti 40.8314732,-73.86773576,graffiti 40.77262155,-73.88935973,graffiti 40.82852542,-73.91062931,graffiti 40.73949063,-73.99594755,graffiti 40.60521466,-73.95951383,graffiti 40.70860089,-73.9378492,graffiti 40.85785151,-73.88461964,graffiti 40.70794831,-73.94452976,graffiti 40.70889723,-73.93279922,graffiti 40.84037734,-73.87041053,graffiti 40.74115874,-73.89249379,graffiti 40.89696619,-73.85541928,graffiti 40.83151421,-73.86759836,graffiti 40.71460718,-73.9392396,graffiti 40.82937617,-73.87506081,graffiti 40.72402126,-74.00080814,graffiti 40.67134275,-73.82526305,graffiti 40.70817146,-73.83030995,graffiti 40.68017441,-73.94541094,graffiti 40.61925647,-74.02251306,graffiti 40.71410356,-73.94771341,graffiti 40.8555568,-73.89602137,graffiti 40.82970431,-73.87393279,graffiti 40.84433819,-73.86580907,graffiti 40.78918788,-73.84559951,graffiti 40.61755442,-74.15260591,graffiti 40.78934953,-73.84953183,graffiti 40.74966576,-73.8850344,graffiti 40.65934972,-73.89121276,graffiti 40.71471568,-73.96178842,graffiti 40.63795336,-74.0254667,graffiti 40.6123796,-74.08783872,graffiti 40.63984587,-74.0183475,graffiti 40.84222779,-73.86843359,graffiti 40.66139386,-73.99804283,graffiti 40.6702684,-73.82095086,graffiti 40.63980197,-74.01824299,graffiti 40.64089013,-73.94924091,graffiti 40.73463393,-73.95312062,graffiti 40.84124969,-73.86999321,graffiti 40.63961263,-74.01792946,graffiti 40.84365242,-73.86616103,graffiti 40.71365682,-73.96369362,graffiti 40.76004776,-73.87834935,graffiti 40.63864945,-74.01633662,graffiti 40.82840041,-73.88155234,graffiti 40.84431622,-73.86580188,graffiti 40.76548474,-73.92654375,graffiti 40.76051567,-73.9757715,graffiti 40.78918788,-73.84559951,graffiti 40.86173233,-73.86661632,graffiti 40.67135104,-73.82529908,graffiti 40.84417616,-73.86572988,graffiti 40.85885307,-73.86895743,graffiti 40.76014288,-73.87745036,graffiti 40.61732262,-73.98504096,graffiti 40.69088647,-73.86939211,graffiti 40.66036445,-73.99443134,graffiti 40.65987042,-73.99497563,graffiti 40.87553238,-73.90858819,graffiti 40.66968773,-73.98586553,graffiti 40.61060985,-73.93850589,graffiti 40.69401517,-73.94894804,graffiti 40.83079433,-73.87681433,graffiti 40.8452687,-73.86585779,graffiti 40.63957421,-74.0178682,graffiti 40.74411071,-73.95108578,graffiti 40.66183008,-73.9929354,graffiti 40.87913895,-73.90524551,graffiti 40.61311558,-74.08733905,graffiti 40.704949,-73.81255142,graffiti 40.70232685,-73.80702989,graffiti 40.74557619,-73.95057585,graffiti 40.75138701,-73.94493391,graffiti 40.70665916,-73.79804719,graffiti 40.71157365,-73.9945497,graffiti 40.71336608,-73.9972838,graffiti 40.7023241,-73.8070263,graffiti 40.70491897,-73.81265249,graffiti 40.70664813,-73.79801476,graffiti 40.70517269,-73.81170321,graffiti 40.70518642,-73.81171038,graffiti 40.70372751,-73.8091682,graffiti 40.72120775,-73.99443347,graffiti 40.69509083,-73.82363933,graffiti 40.70580041,-73.80953015,graffiti 40.70177779,-73.80696296,graffiti 40.70493536,-73.81260195,graffiti 40.70519189,-73.81169954,graffiti 40.70516342,-73.80940574,graffiti 40.75849097,-73.88588908,graffiti 40.58083756,-74.15234201,graffiti 40.764918,-73.78658936,graffiti 40.72581455,-73.9519651,graffiti 40.70520282,-73.79557737,graffiti 40.64225326,-73.96966716,graffiti 40.7244638,-73.95117236,graffiti 40.75947597,-73.77266258,graffiti 40.7062293,-73.92820686,graffiti 40.7248509,-73.95139576,graffiti 40.74594267,-73.91530541,graffiti 40.7248281,-73.9945847,graffiti 40.71439632,-73.94572199,graffiti 40.58944414,-74.09464947,graffiti 40.68283055,-73.99745811,graffiti 40.72578161,-73.95194708,graffiti 40.72343153,-73.9506031,graffiti 40.64359867,-73.97151149,graffiti 40.8643408,-73.89110159,graffiti 40.66544599,-73.92173366,graffiti 40.71950537,-73.95446243,graffiti 40.74523561,-73.90952484,graffiti 40.63840233,-73.96970855,graffiti 40.72611928,-73.95211641,graffiti 40.72581455,-73.9519651,graffiti 40.6810255,-73.90717469,graffiti 40.87648038,-73.87466494,graffiti 40.67348748,-73.86951631,graffiti 40.70886278,-73.93492734,graffiti 40.72440065,-73.95113633,graffiti 40.72343426,-73.95058145,graffiti 40.72443085,-73.95115434,graffiti 40.679989,-73.90844883,graffiti 40.86433359,-73.88929753,graffiti 40.82231543,-73.89890958,graffiti 40.72602045,-73.95205875,graffiti 40.67027118,-73.82097248,graffiti 40.72346721,-73.95060307,graffiti 40.72628675,-73.95221009,graffiti 40.70819024,-73.86294154,graffiti 40.86266223,-73.8923733,graffiti 40.70108082,-73.80872856,graffiti 40.70897497,-73.9343357,graffiti 40.68488169,-73.91395513,graffiti 40.68200971,-73.90915994,graffiti 40.66847586,-73.90997142,graffiti 40.62140233,-73.99786029,graffiti 40.64534954,-73.97031799,graffiti 40.71741157,-73.94314025,graffiti 40.68246849,-73.9096713,graffiti 40.74616454,-73.89783418,graffiti 40.71650277,-73.95490097,graffiti 40.74339589,-73.89874063,graffiti 40.72443086,-73.9511796,graffiti 40.7245297,-73.95123364,graffiti 40.72506506,-73.95153991,graffiti 40.57855715,-74.16959473,graffiti 40.76085033,-73.76543837,graffiti 40.7204595,-73.95899648,graffiti 40.74353771,-73.91455061,graffiti 40.77613445,-73.95302641,graffiti 40.71169697,-73.94899221,graffiti 40.82906015,-73.91000347,graffiti 40.66712003,-73.9033118,graffiti 40.72389276,-73.95087333,graffiti 40.72582003,-73.95194705,graffiti 40.74987458,-73.9031953,graffiti 40.86175944,-73.90184665,graffiti 40.64212993,-73.98436157,graffiti 40.67074334,-73.91768639,graffiti 40.61770476,-73.99092655,graffiti 40.63794041,-73.97830935,graffiti 40.74950271,-73.89846427,graffiti 40.63731188,-73.97846809,graffiti 40.71482558,-73.96211301,graffiti 40.65682031,-73.90843017,graffiti 40.74950546,-73.89846427,graffiti 40.64200126,-73.98703887,graffiti 40.6611569,-73.91538062,graffiti 40.65783337,-73.9020602,graffiti 40.87490556,-73.88867607,graffiti 40.72319815,-73.95044453,graffiti 40.63903292,-73.97875939,graffiti 40.87393711,-73.88911159,graffiti 40.86878109,-73.89637672,graffiti 40.64398048,-73.98925459,graffiti 40.87374781,-73.88919869,graffiti 40.6184184,-73.99089043,graffiti 40.63515712,-73.97794275,graffiti 40.72302794,-73.95034725,graffiti 40.78872874,-73.94398216,graffiti 40.72262435,-73.95010944,graffiti 40.8669928,-73.89778594,graffiti 40.61841017,-73.99089764,graffiti 40.64309403,-73.99062041,graffiti 40.72333268,-73.9505238,graffiti 40.71579743,-73.96275816,graffiti 40.63892076,-73.9809069,graffiti 40.71571324,-73.74133441,graffiti 40.86095016,-73.90232866,graffiti 40.64242144,-73.98924763,graffiti 40.65728582,-73.9004932,graffiti 40.7226573,-73.95013106,graffiti 40.87174702,-73.89220311,graffiti 40.86823802,-73.89680059,graffiti 40.72252277,-73.95005179,graffiti 40.6401154,-73.98546463,graffiti 40.72336563,-73.95054181,graffiti 40.75990353,-73.77096456,graffiti 40.87492203,-73.88866881,graffiti 40.71418181,-73.74758808,graffiti 40.72279663,-73.98959904,graffiti 40.63946961,-73.98030862,graffiti 40.87447108,-73.88782344,graffiti 40.63164368,-73.97734586,graffiti 40.63892076,-73.9809069,graffiti 40.72275888,-73.95018871,graffiti 40.8683288,-73.89400198,graffiti 40.71920687,-73.94360769,graffiti 40.640206,-73.98557631,graffiti 40.71362733,-73.96599863,graffiti 40.72255572,-73.95007342,graffiti 40.75764088,-73.93202452,graffiti 40.63842423,-73.98266537,graffiti 40.63876191,-73.98318413,graffiti 40.63699621,-73.97838532,graffiti 40.65783337,-73.9020602,graffiti 40.72306363,-73.95036526,graffiti 40.6363292,-73.97821259,graffiti 40.61840194,-73.99090844,graffiti 40.66598811,-73.90204822,graffiti 40.6628548,-73.90683593,graffiti 40.6184184,-73.99089043,graffiti 40.72329975,-73.95052743,graffiti 40.72259141,-73.95009143,graffiti 40.72290715,-73.95030044,graffiti 40.70741237,-73.86202699,graffiti 40.65779692,-73.9148875,graffiti 40.63895685,-73.9835444,graffiti 40.72316796,-73.95045177,graffiti 40.61023097,-74.14652766,graffiti 40.76139119,-73.87693908,graffiti 40.65969713,-73.9160024,graffiti 40.72313502,-73.95043375,graffiti 40.67007632,-73.92156962,graffiti 40.747388,-73.9033902,graffiti 40.64236368,-73.98805494,graffiti 40.80062738,-73.96558578,graffiti 40.63641983,-73.95147098,graffiti 40.6975331,-73.93621864,graffiti 40.69803039,-73.93709451,graffiti 40.74727876,-73.92641947,graffiti 40.69415904,-73.93021405,graffiti 40.69540052,-73.84023068,graffiti 40.69374963,-73.92949325,graffiti 40.63783126,-73.98204219,graffiti 40.696612,-73.83900525,graffiti 40.69440359,-73.93064653,graffiti 40.69564077,-73.83930692,graffiti 40.69621703,-73.93386863,graffiti 40.6930105,-73.92821388,graffiti 40.69494765,-73.93164488,graffiti 40.69373317,-73.92950048,graffiti 40.69754137,-73.93626912,graffiti 40.74890789,-73.87173977,graffiti 40.69765399,-73.93643491,graffiti 40.69743147,-73.93607088,graffiti 40.62841415,-73.94719333,graffiti 40.69726109,-73.93571763,graffiti 40.63623199,-73.94871481,graffiti 40.69443107,-73.93069699,graffiti 40.80343187,-73.96354352,graffiti 40.69370569,-73.92945003,graffiti 40.61300579,-73.97378285,graffiti 40.85316232,-73.93121117,graffiti 40.69519254,-73.84267618,graffiti 40.69370018,-73.92940676,graffiti 40.63644455,-73.95149618,graffiti 40.69792875,-73.93695035,graffiti 40.72480899,-74.00244969,graffiti 40.69592579,-73.93334241,graffiti 40.70171605,-73.98282203,graffiti 40.69605769,-73.93361996,graffiti 40.73883426,-73.98986718,graffiti 40.72428749,-73.9979111,graffiti 40.69795348,-73.93699361,graffiti 40.74901655,-73.87072901,graffiti 40.69734902,-73.93588343,graffiti 40.69462615,-73.93104298,graffiti 40.69936454,-73.91590193,graffiti 40.8363828,-73.84718849,graffiti 40.69543608,-73.84014405,graffiti 40.69487346,-73.93151152,graffiti 40.73810692,-73.99003328,graffiti 40.69684348,-73.93499677,graffiti 40.69768422,-73.93648897,graffiti 40.69826392,-73.93750542,graffiti 40.63663128,-73.95169781,graffiti 40.69565171,-73.83927443,graffiti 40.69687712,-73.9362373,graffiti 40.6959615,-73.93340728,graffiti 40.69789302,-73.93684941,graffiti 40.8007653,-73.96793345,graffiti 40.69723362,-73.93566356,graffiti 40.69779413,-73.93670886,graffiti 40.77692016,-73.81478961,graffiti 40.85758732,-73.92760606,graffiti 40.63803174,-73.9532029,graffiti 40.69856888,-73.93803887,graffiti 40.69603019,-73.93352983,graffiti 40.69310392,-73.92837605,graffiti 40.69705455,-73.93450972,graffiti 40.74188146,-73.85344985,graffiti 40.72566796,-73.99387028,graffiti 40.90523938,-73.84953354,graffiti 40.69756058,-73.93627271,graffiti 40.69476511,-73.84323254,graffiti 40.68260043,-73.90990547,graffiti 40.67131053,-73.95587962,graffiti 40.6930737,-73.92832199,graffiti 40.69437337,-73.93059968,graffiti 40.63863308,-73.95378258,graffiti 40.69689294,-73.93508328,graffiti 40.80133537,-73.96506529,graffiti 40.69358754,-73.92925182,graffiti 40.63674936,-73.95182383,graffiti 40.69562632,-73.93284866,graffiti 40.75583934,-73.930366,graffiti 40.80193083,-73.96460987,graffiti 40.6938213,-73.92999082,graffiti 40.89876358,-73.85511876,graffiti 40.81983839,-73.94592864,graffiti 40.69771444,-73.93653943,graffiti 40.69419202,-73.93027171,graffiti 40.90576268,-73.85307039,graffiti 40.69362324,-73.92927341,graffiti 40.69364797,-73.92931666,graffiti 40.80120914,-73.96515927,graffiti 40.69752214,-73.93623669,graffiti 40.84895015,-73.932824,graffiti 40.69483497,-73.93140338,graffiti 40.69611814,-73.93372808,graffiti 40.69848646,-73.9378983,graffiti 40.6943624,-73.93061051,graffiti 40.76383781,-73.90402695,graffiti 40.69635245,-73.83790597,graffiti 40.85399285,-73.92935592,graffiti 40.69540325,-73.84021986,graffiti 40.69532681,-73.9322936,graffiti 40.63672739,-73.95179863,graffiti 40.69489819,-73.93155477,graffiti 40.69828866,-73.93758473,graffiti 40.76276892,-73.92889315,graffiti 40.69608792,-73.93367402,graffiti 40.63628527,-73.95129813,graffiti 40.71465055,-73.94947693,graffiti 40.81471116,-73.95901428,graffiti 40.63716401,-73.95227392,graffiti 40.69367547,-73.92940318,graffiti 40.57867695,-74.16267602,graffiti 40.69626458,-73.83983914,graffiti 40.69895304,-73.93784377,graffiti 40.72312645,-74.00256868,graffiti 40.70636949,-73.9380172,graffiti 40.69541476,-73.93248464,graffiti 40.63732328,-73.95244675,graffiti 40.73878211,-73.98985997,graffiti 40.69599724,-73.93350822,graffiti 40.63668344,-73.9517266,graffiti 40.69599448,-73.93346856,graffiti 40.69458771,-73.93101056,graffiti 40.69364525,-73.92935273,graffiti 40.6975908,-73.93632317,graffiti 40.73199496,-73.87699337,graffiti 40.6937249,-73.92945001,graffiti 40.6348949,-73.94785834,graffiti 40.6936727,-73.92936351,graffiti 40.7423042,-73.929081,graffiti 40.79833105,-73.96911568,graffiti 40.69690443,-73.93600287,graffiti 40.79928013,-73.96699509,graffiti 40.71586658,-73.99836228,graffiti 40.71771292,-73.98570744,graffiti 40.71758936,-73.9853359,graffiti 40.6952124,-73.94413646,graffiti 40.61303017,-73.91223606,graffiti 40.72081227,-73.99075378,graffiti 40.81838809,-73.9563132,graffiti 40.57567658,-73.99349527,graffiti 40.83714174,-73.90797599,graffiti 40.62962892,-73.97693944,graffiti 40.74038817,-74.00405611,graffiti 40.6425406,-73.96656094,graffiti 40.5756464,-73.99362846,graffiti 40.5756656,-73.99344848,graffiti 40.67775731,-74.01461207,graffiti 40.59754916,-73.98540908,graffiti 40.64151896,-73.95661998,graffiti 40.8141404,-73.9594337,graffiti 40.82753351,-73.94963331,graffiti 40.73598224,-73.98761958,graffiti 40.69828782,-73.953157,graffiti 40.71997487,-73.98798692,graffiti 40.6838903,-73.95028986,graffiti 40.81424742,-73.95935415,graffiti 40.61172117,-73.97353844,graffiti 40.72071069,-73.99042911,graffiti 40.71643199,-73.99800875,graffiti 40.73913659,-74.00319358,graffiti 40.83856918,-73.94204647,graffiti 40.73799206,-73.99836895,graffiti 40.71437343,-73.99876272,graffiti 40.70721561,-73.96613896,graffiti 40.7202412,-73.98892483,graffiti 40.81176759,-73.94317885,graffiti 40.59765347,-73.98542706,graffiti 40.57503448,-73.99855652,graffiti 40.63949804,-73.95466116,graffiti 40.8369808,-73.90923745,graffiti 40.85150021,-73.90239315,graffiti 40.64218345,-73.95729337,graffiti 40.83855118,-73.91334077,graffiti 40.71881626,-73.98522019,graffiti 40.84123595,-73.86997878,graffiti 40.71843201,-73.98541508,graffiti 40.69745883,-73.94668785,graffiti 40.71847593,-73.98539343,graffiti 40.76367381,-73.77045704,graffiti 40.71829204,-73.98546201,graffiti 40.62217652,-73.97552273,graffiti 40.83819548,-73.91118371,graffiti 40.7401192,-74.00341376,graffiti 40.86843373,-73.85873173,graffiti 40.69559633,-73.94343293,graffiti 40.71992545,-73.98788231,graffiti 40.6467438,-73.96997503,graffiti 40.63009281,-73.97702935,graffiti 40.71118502,-73.79173554,graffiti 40.6443953,-73.9942525,graffiti 40.84378439,-73.83080615,graffiti 40.70882639,-73.7474208,graffiti 40.85302045,-73.90529717,graffiti 40.71466792,-73.82097949,graffiti 40.6231894,-73.9757349,graffiti 40.71884644,-73.98518051,graffiti 40.61354379,-73.97388709,graffiti 40.71213914,-73.99610793,graffiti 40.72020001,-73.98873003,graffiti 40.71864609,-73.98528156,graffiti 40.74320224,-73.87485432,graffiti 40.85889696,-73.90541895,graffiti 40.81560604,-73.94037211,graffiti 40.76200543,-73.99001527,graffiti 40.57807276,-73.99292266,graffiti 40.83740162,-73.9103608,graffiti 40.63954198,-73.95470437,graffiti 40.57758438,-73.99740451,graffiti 40.84199552,-73.84293258,graffiti 40.74351451,-73.9997943,graffiti 40.83708185,-73.9426549,graffiti 40.65013081,-73.96067941,graffiti 40.71225437,-73.9948779,graffiti 40.71515569,-73.99878435,graffiti 40.63393229,-74.03561809,graffiti 40.57565189,-73.99356727,graffiti 40.71879704,-73.98520577,graffiti 40.71834693,-73.98545839,graffiti 40.7185171,-73.98537177,graffiti 40.71219676,-73.99565704,graffiti 40.71830302,-73.98548004,graffiti 40.71824263,-73.98548727,graffiti 40.69336255,-73.93400128,graffiti 40.8384054,-73.91292536,graffiti 40.69319736,-73.99292486,graffiti 40.70881546,-73.74744248,graffiti 40.83751754,-73.90770442,graffiti 40.57934219,-73.98060714,graffiti 40.71915387,-73.98528145,graffiti 40.65527423,-73.959797,graffiti 40.73488416,-73.98600686,graffiti 40.64100214,-73.98689853,graffiti 40.81083804,-73.95813161,graffiti 40.71990348,-73.98781016,graffiti 40.8382891,-73.94180097,graffiti 40.6225663,-73.97559463,graffiti 40.83101839,-73.9476107,graffiti 40.71826185,-73.9855017,graffiti 40.71864609,-73.98530681,graffiti 40.57589878,-73.99146139,graffiti 40.57590427,-73.99140019,graffiti 40.76031443,-73.98755369,graffiti 40.71219401,-73.99552357,graffiti 40.81592674,-73.95810673,graffiti 40.84025977,-73.87080831,graffiti 40.62613192,-73.97625618,graffiti 40.6244493,-73.97594338,graffiti 40.72004625,-73.98822861,graffiti 40.84433819,-73.86580907,graffiti 40.57892294,-73.98540955,graffiti 40.63997834,-73.98695639,graffiti 40.57855552,-73.98875393,graffiti 40.61343674,-73.97386552,graffiti 40.85853384,-73.90442533,graffiti 40.72017255,-73.98863985,graffiti 40.59819146,-73.98552777,graffiti 40.61195449,-73.97358156,graffiti 40.81155421,-73.95758567,graffiti 40.83731361,-73.91013686,graffiti 40.62867919,-73.97675243,graffiti 40.85891072,-73.90546231,graffiti 40.71227358,-73.9948274,graffiti 40.71992544,-73.98782459,graffiti 40.71982101,-73.98661969,graffiti 40.64145032,-73.95655516,graffiti 40.74118223,-73.88014483,graffiti 40.82773007,-73.85460856,graffiti 40.71788865,-73.98622326,graffiti 40.61205605,-73.97359953,graffiti 40.82771648,-73.85471338,graffiti 40.61333793,-73.97386916,graffiti 40.57553666,-73.9945716,graffiti 40.83620056,-73.94218225,graffiti 40.6456751,-73.95806949,graffiti 40.84360762,-73.870191,graffiti 40.69478724,-73.73898142,graffiti 40.79262711,-73.96770985,graffiti 40.85888325,-73.90543704,graffiti 40.85158261,-73.90247255,graffiti 40.61199017,-73.97358875,graffiti 40.66859884,-73.99558418,graffiti 40.71638259,-73.99804122,graffiti 40.82419423,-73.95207112,graffiti 40.73643152,-73.95256727,graffiti 40.63225304,-73.97745734,graffiti 40.7191374,-73.98527784,graffiti 40.72403773,-74.00017678,graffiti 40.714959,-73.83199891,graffiti 40.60109165,-73.97872465,graffiti 40.57670495,-73.98399171,graffiti 40.60068739,-74.00042853,graffiti 40.57623062,-73.98829355,graffiti 40.59734414,-73.99560689,graffiti 40.57589877,-73.9913066,graffiti 40.59636693,-73.99415581,graffiti 40.60026932,-73.98591984,graffiti 40.59848328,-73.99722365,graffiti 40.57683381,-73.98294774,graffiti 40.69769186,-73.900725,graffiti 40.85391091,-73.89108251,graffiti 40.60111909,-73.97866342,graffiti 40.5767077,-73.98395931,graffiti 40.57659255,-73.98499608,graffiti 40.59138776,-73.99233075,graffiti 40.57599202,-73.99044625,graffiti 40.69821818,-73.89994525,graffiti 40.60123142,-73.97759745,graffiti 40.60075671,-73.97832143,graffiti 40.60552245,-73.98292961,graffiti 40.59955577,-73.98674822,graffiti 40.60086148,-73.98097901,graffiti 40.57671592,-73.98388372,graffiti 40.78323225,-73.84389811,graffiti 40.60121772,-73.97772349,graffiti 40.67010946,-73.97945965,graffiti 40.68543105,-73.98100176,graffiti 40.59925372,-73.9857256,graffiti 40.57590701,-73.99138579,graffiti 40.59845771,-73.98557452,graffiti 40.57693795,-73.98188217,graffiti 40.60286321,-73.98641625,graffiti 40.57659255,-73.98500328,graffiti 40.59838085,-73.98556374,graffiti 40.57684203,-73.98287214,graffiti 40.66204416,-73.99268307,graffiti 40.59791234,-73.99642787,graffiti 40.60165608,-73.97388813,graffiti 40.6053906,-73.98224899,graffiti 40.57683105,-73.98283975,graffiti 40.85659973,-73.86900886,graffiti 40.57659804,-73.98496008,graffiti 40.85261417,-73.92801271,graffiti 40.60560571,-74.00902859,graffiti 40.5989856,-73.99795103,graffiti 40.59742924,-73.99572932,graffiti 40.86442233,-73.92874108,graffiti 40.60117388,-73.97810523,graffiti 40.60171393,-74.00202024,graffiti 40.74251018,-73.91695175,graffiti 40.72990786,-73.95411256,graffiti 40.60253108,-73.9863515,graffiti 40.69683144,-73.89921886,graffiti 40.60124256,-73.9784149,graffiti 40.60431294,-73.97340812,graffiti 40.60044774,-73.98597742,graffiti 40.61625769,-73.98544101,graffiti 40.60156021,-73.97475965,graffiti 40.60561943,-74.0090502,graffiti 40.62584698,-74.13459461,graffiti 40.57623336,-73.98826475,graffiti 40.67117875,-73.99219901,graffiti 40.60157939,-73.97459399,graffiti 40.60020345,-73.98593065,graffiti 40.60515418,-73.98001623,graffiti 40.60544843,-73.98349864,graffiti 40.84752725,-73.89459899,graffiti 40.7256716,-73.74026391,graffiti 40.57648015,-73.98601844,graffiti 40.59989963,-73.9993158,graffiti 40.59627635,-73.99402619,graffiti 40.59633674,-73.99411261,graffiti 40.61394745,-74.00329925,graffiti 40.68677424,-73.98852294,graffiti 40.72990786,-73.95411256,graffiti 40.77980989,-73.94724658,graffiti 40.6737806,-73.96300153,graffiti 40.72781954,-73.98955857,graffiti 40.72797053,-73.98992656,graffiti 40.72262919,-73.8551914,graffiti 40.71932647,-73.94691206,graffiti 40.70375868,-73.94801006,graffiti 40.72569789,-73.99016502,graffiti 40.7148071,-73.99882764,graffiti 40.71446127,-73.99928577,graffiti 40.72825916,-73.99880215,graffiti 40.63549474,-74.16621212,graffiti 40.56071928,-74.10764772,graffiti 40.75736665,-73.93244351,graffiti 40.7158583,-73.7737204,graffiti 40.69463612,-73.85366549,graffiti 40.71586658,-73.77374562,graffiti 40.72439346,-73.86602172,graffiti 40.71635186,-73.77486586,graffiti 40.87685194,-73.86347257,graffiti 40.71025784,-73.769007,graffiti 40.74839321,-73.73683331,graffiti 40.56121067,-74.16147462,graffiti 40.7540437,-73.92942222,graffiti 40.69401684,-73.85232897,graffiti 40.71654239,-73.77404635,graffiti 40.71918809,-73.80065713,graffiti 40.66990792,-73.99232893,graffiti 40.63161131,-73.96818046,graffiti 40.67047057,-73.991835,graffiti 40.72384447,-73.98382649,graffiti 40.82887718,-73.89189677,graffiti 40.67123906,-73.99119324,graffiti 40.79997773,-73.93554981,graffiti 40.7075202,-73.78842506,graffiti 40.83045137,-73.88769168,graffiti 40.70801867,-73.80168964,graffiti 40.82914614,-73.89187465,graffiti 40.82903635,-73.88898407,graffiti 40.6471155,-73.99747748,graffiti 40.7257087,-73.98830698,graffiti 40.84582971,-73.88462242,graffiti 40.72539047,-73.98999189,graffiti 40.67695596,-73.98640477,graffiti 40.74516009,-73.87820331,graffiti 40.67295467,-73.99310005,graffiti 40.72526345,-73.98344011,graffiti 40.68211012,-73.96039015,graffiti 40.7260542,-73.98532322,graffiti 40.66985303,-73.9923758,graffiti 40.79563069,-73.93665918,graffiti 40.83591216,-73.88930507,graffiti 40.64431309,-74.00143417,graffiti 40.63002961,-73.97668712,graffiti 40.82765577,-73.89189153,graffiti 40.84609959,-73.92164762,graffiti 40.83049997,-73.88970433,graffiti 40.72926285,-73.98557507,graffiti 40.72809115,-73.98836429,graffiti 40.84138774,-73.88635045,graffiti 40.83122344,-73.8913979,graffiti 40.82500662,-73.89136469,graffiti 40.72748477,-73.99063379,graffiti 40.83082541,-73.88847158,graffiti 40.79488225,-73.96421996,graffiti 40.8018571,-73.93420434,graffiti 40.84388452,-73.88544262,graffiti 40.8714209,-73.86642694,graffiti 40.74866727,-73.9069866,graffiti 40.63765127,-74.00729984,graffiti 40.72463423,-73.93502739,graffiti 40.7240586,-73.76362328,graffiti 40.83013314,-73.88785844,graffiti 40.84157667,-73.88589836,graffiti 40.5766786,-74.11233158,graffiti 40.72719589,-73.98437047,graffiti 40.71853245,-73.76585426,graffiti 40.63929996,-74.01636921,graffiti 40.72520675,-73.76537622,graffiti 40.79559448,-73.93569491,graffiti 40.67058878,-73.99507936,graffiti 40.67109365,-73.99202238,graffiti 40.82679968,-73.89217114,graffiti 40.79356037,-73.94030517,graffiti 40.80233999,-73.93388601,graffiti 40.84726952,-73.88347054,graffiti 40.6394425,-74.01764837,graffiti 40.72694375,-73.98747334,graffiti 40.72962448,-73.9809206,graffiti 40.57769602,-74.11043617,graffiti 40.79688947,-73.93477267,graffiti 40.72253829,-73.85493906,graffiti 40.70692588,-73.79063072,graffiti 40.79512099,-73.96404647,graffiti 40.83040594,-73.89185454,graffiti 40.79855108,-73.9366564,graffiti 40.80527523,-73.94101349,graffiti 40.63942329,-74.01761954,graffiti 40.67211473,-73.99239357,graffiti 40.57577431,-74.11360077,graffiti 40.82724683,-73.89191748,graffiti 40.76515145,-73.91302474,graffiti 40.67034999,-73.99527765,graffiti 40.8263972,-73.89030733,graffiti 40.82891833,-73.89187502,graffiti 40.63948091,-74.01771324,graffiti 40.82917907,-73.8918746,graffiti 40.72565653,-73.98817711,graffiti 40.71918809,-73.80065713,graffiti 40.83089154,-73.89161887,graffiti 40.81288399,-73.94176538,graffiti 40.57345318,-74.11537503,graffiti 40.72020178,-73.94074246,graffiti 40.82768598,-73.89190954,graffiti 40.83108526,-73.89040439,graffiti 40.83003165,-73.88792004,graffiti 40.67034432,-73.99193956,graffiti 40.82545931,-73.89115799,graffiti 40.74502413,-73.8875542,graffiti 40.72366101,-73.98737654,graffiti 40.72352597,-73.98312667,graffiti 40.7021634,-73.93599061,graffiti 40.68221184,-73.96087683,graffiti 40.68231078,-73.96125895,graffiti 40.72233705,-73.98032021,graffiti 40.71706547,-73.76794088,graffiti 40.66988048,-73.99232533,graffiti 40.72946025,-73.98391894,graffiti 40.72730618,-73.98859533,graffiti 40.72983031,-73.98079426,graffiti 40.72123661,-73.98156877,graffiti 40.69572795,-73.99172733,graffiti 40.72476954,-73.98445763,graffiti 40.5601922,-74.16543816,graffiti 40.86919189,-73.88390215,graffiti 40.66851648,-73.99537871,graffiti 40.89769671,-73.86720247,graffiti 40.71940442,-73.95602094,graffiti 40.72197459,-73.9794617,graffiti 40.80258969,-73.9387114,graffiti 40.72423897,-73.97920846,graffiti 40.83087231,-73.89160444,graffiti 40.64718411,-73.99738018,graffiti 40.85694314,-73.90592421,graffiti 40.85651082,-73.90758408,graffiti 40.85760569,-73.8858311,graffiti 40.80942763,-73.8914154,graffiti 40.85410755,-73.90224111,graffiti 40.85010282,-73.78771128,graffiti 40.80976764,-73.89105361,graffiti 40.6404264,-74.00441396,graffiti 40.7041439,-73.78829872,graffiti 40.85767974,-73.88576951,graffiti 40.8554844,-73.89190052,graffiti 40.69925026,-73.93931852,graffiti 40.80884235,-73.88785819,graffiti 40.85727747,-73.90528027,graffiti 40.69954971,-73.93983757,graffiti 40.84749324,-73.78657383,graffiti 40.63606708,-74.01253122,graffiti 40.8457299,-73.78590722,graffiti 40.8087225,-73.88881205,graffiti 40.87705895,-73.90924783,graffiti 40.67366263,-73.99034213,graffiti 40.88143508,-73.82634184,graffiti 40.85287861,-73.78969777,graffiti 40.88124554,-73.82623385,graffiti 40.81497773,-73.94083148,graffiti 40.69980523,-73.940317,graffiti 40.81764373,-73.88972203,graffiti 40.85770102,-73.89980293,graffiti 40.87993777,-73.82357211,graffiti 40.84708679,-73.78644501,graffiti 40.69930244,-73.93937978,graffiti 40.8512429,-73.88526006,graffiti 40.86226172,-73.89866449,graffiti 40.64769466,-73.99801801,graffiti 40.64043463,-74.00440675,graffiti 40.70720408,-73.78966321,graffiti 40.80923494,-73.88796229,graffiti 40.80922316,-73.88166233,graffiti 40.69882439,-73.93850386,graffiti 40.80838062,-73.88723403,graffiti 40.81783047,-73.88983372,graffiti 40.63153882,-73.99689803,graffiti 40.71359384,-73.99567137,graffiti 40.80922852,-73.89274869,graffiti 40.8797811,-73.90511079,graffiti 40.63787099,-73.99530517,graffiti 40.7026158,-73.80584249,graffiti 40.63850502,-73.99487995,graffiti 40.70729124,-73.95461505,graffiti 40.84492559,-73.94139036,graffiti 40.8121515,-73.88968778,graffiti 40.85279208,-73.93650353,graffiti 40.69917059,-73.93917433,graffiti 40.71362677,-73.99546937,graffiti 40.70021183,-73.94104514,graffiti 40.83516156,-73.88244375,graffiti 40.87571989,-73.90970166,graffiti 40.84713557,-73.94235347,graffiti 40.90024587,-73.8574487,graffiti 40.85391887,-73.88793039,graffiti 40.71353349,-73.99659843,graffiti 40.8173636,-73.88955269,graffiti 40.81224213,-73.88973459,graffiti 40.85699158,-73.79046198,graffiti 40.70720332,-73.95440952,graffiti 40.69878867,-73.93843537,graffiti 40.67075636,-73.9750579,graffiti 40.80764622,-73.8856531,graffiti 40.85684922,-73.90859218,graffiti 40.81779752,-73.88981571,graffiti 40.81767394,-73.88974004,graffiti 40.70729401,-73.95467636,graffiti 40.71595014,-73.94631954,graffiti 40.71355818,-73.99607899,graffiti 40.88053057,-73.82716871,graffiti 40.63726709,-73.99430716,graffiti 40.81287906,-73.88989971,graffiti 40.7073105,-73.95473045,graffiti 40.89130757,-73.86292205,graffiti 40.87618079,-73.90942621,graffiti 40.75900742,-73.81446401,graffiti 40.68734414,-73.91825003,graffiti 40.68266506,-73.98620891,graffiti 40.85377096,-73.89406495,graffiti 40.81051982,-73.88831775,graffiti 40.85578849,-73.79147795,graffiti 40.8571179,-73.90482501,graffiti 40.85697332,-73.90590248,graffiti 40.69936566,-73.93954201,graffiti 40.81116904,-73.89275279,graffiti 40.67966256,-73.98880538,graffiti 40.69888209,-73.938612,graffiti 40.81144769,-73.8943021,graffiti 40.8814104,-73.82635275,graffiti 40.87758713,-73.90730889,graffiti 40.63729066,-74.01713977,graffiti 40.69926949,-73.93935817,graffiti 40.84612816,-73.78605774,graffiti 40.66979333,-73.9099408,graffiti 40.81044761,-73.88467292,graffiti 40.80688763,-73.88737383,graffiti 40.85658827,-73.88953816,graffiti 40.83569649,-73.88216454,graffiti 40.87696843,-73.90932028,graffiti 40.81761077,-73.88970402,graffiti 40.8124343,-73.88978485,graffiti 40.71362129,-73.99553069,graffiti 40.69976949,-73.94021965,graffiti 40.8756733,-73.90979212,graffiti 40.87733335,-73.90916429,graffiti 40.7074369,-73.95510548,graffiti 40.88138842,-73.82633835,graffiti 40.70737208,-73.7960829,graffiti 40.63586162,-74.02640628,graffiti 40.69964861,-73.94000698,graffiti 40.69915135,-73.93913468,graffiti 40.69923103,-73.93928247,graffiti 40.85478348,-73.88517081,graffiti 40.90087656,-73.85697347,graffiti 40.80942333,-73.88417619,graffiti 40.85467153,-73.88575661,graffiti 40.85395972,-73.89338506,graffiti 40.85894098,-73.90554903,graffiti 40.71356366,-73.99601045,graffiti 40.7000662,-73.94074954,graffiti 40.70722256,-73.95446361,graffiti 40.6404511,-74.00438874,graffiti 40.8084679,-73.88667036,graffiti 40.90246789,-73.85649978,graffiti 40.84678186,-73.78630503,graffiti 40.88154126,-73.8964834,graffiti 40.85233995,-73.7893127,graffiti 40.70725828,-73.95457179,graffiti 40.9029258,-73.85613704,graffiti 40.84503231,-73.78567453,graffiti 40.85663555,-73.9056969,graffiti 40.90442269,-73.85477722,graffiti 40.90186093,-73.85619361,graffiti 40.69954973,-73.93987003,graffiti 40.85505056,-73.88601984,graffiti 40.80693979,-73.88738819,graffiti 40.81717686,-73.889441,graffiti 40.90225401,-73.85667026,graffiti 40.88071907,-73.82657515,graffiti 40.81235102,-73.88880237,graffiti 40.70097552,-73.94232477,graffiti 40.81752014,-73.88964636,graffiti 40.80692537,-73.88391323,graffiti 40.75993636,-73.7709103,graffiti 40.70738857,-73.79609367,graffiti 40.7760119,-73.90884396,graffiti 40.70009917,-73.94080721,graffiti 40.80672086,-73.88525734,graffiti 40.88053595,-73.82709637,graffiti 40.8753799,-73.91014327,graffiti 40.62757537,-73.99799699,graffiti 40.74752992,-73.99407398,graffiti 40.68401066,-73.99384887,graffiti 40.89805475,-73.85898347,graffiti 40.80994615,-73.89411303,graffiti 40.81395512,-73.8900316,graffiti 40.85554153,-73.79151126,graffiti 40.80941672,-73.89148405,graffiti 40.66603779,-73.99230775,graffiti 40.68917923,-73.99918147,graffiti 40.69252146,-73.91540211,graffiti 40.85588981,-73.8881765,graffiti 40.70737917,-73.9548819,graffiti 40.71354447,-73.99647939,graffiti 40.80994888,-73.89409135,graffiti 40.70120353,-73.9427249,graffiti 40.87686967,-73.90938188,graffiti 40.81821849,-73.89089887,graffiti 40.88398035,-73.86619557,graffiti 40.85462717,-73.88530121,graffiti 40.81076414,-73.88836069,graffiti 40.88153209,-73.88394931,graffiti 40.85217226,-73.78916864,graffiti 40.85660023,-73.90613436,graffiti 40.68641888,-73.91787256,graffiti 40.69901396,-73.93884269,graffiti 40.8512429,-73.88526006,graffiti 40.81770415,-73.88975806,graffiti 40.64170266,-73.9941014,graffiti 40.69974477,-73.9401764,graffiti 40.90072849,-73.85709316,graffiti 40.71354171,-73.99628099,graffiti 40.70739841,-73.95493599,graffiti 40.83523835,-73.88238218,graffiti 40.70718683,-73.95435903,graffiti 40.81179281,-73.8905915,graffiti 40.87920215,-73.90533221,graffiti 40.88248089,-73.89448933,graffiti 40.81724002,-73.88947703,graffiti 40.87753741,-73.91038263,graffiti 40.69940135,-73.93956362,graffiti 40.81033586,-73.88824943,graffiti 40.713528,-73.99665975,graffiti 40.88108623,-73.87746249,graffiti 40.84977631,-73.88711325,graffiti 40.81730044,-73.88951667,graffiti 40.88366763,-73.86634809,graffiti 40.70027477,-73.81094525,graffiti 40.80951395,-73.88421938,graffiti 40.6992365,-73.93925722,graffiti 40.7135033,-73.99675714,graffiti 40.85006983,-73.78768609,graffiti 40.85755252,-73.7895167,graffiti 40.84006088,-73.78380039,graffiti 40.80881584,-73.88883357,graffiti 40.80664984,-73.88560424,graffiti 40.8768724,-73.90936018,graffiti 40.66081473,-74.00011173,graffiti 40.81132044,-73.88467502,graffiti 40.62770987,-73.99821674,graffiti 40.69920905,-73.93924643,graffiti 40.84713834,-73.82704583,graffiti 40.72034509,-73.94188232,graffiti 40.87587388,-73.90327221,graffiti 40.81138986,-73.89409628,graffiti 40.85576005,-73.88740313,graffiti 40.89058893,-73.86331415,graffiti 40.85690874,-73.89173553,graffiti 40.71417297,-73.99527454,graffiti 40.71359933,-73.99560284,graffiti 40.70195801,-73.80969982,graffiti 40.87517314,-73.91254454,graffiti 40.85420865,-73.88674425,graffiti 40.69918982,-73.93921038,graffiti 40.80981214,-73.88879217,graffiti 40.81755035,-73.88966438,graffiti 40.81020757,-73.8861725,graffiti 40.67001458,-73.90857427,graffiti 40.87789467,-73.91096072,graffiti 40.81733339,-73.88953468,graffiti 40.70736384,-73.79607931,graffiti 40.81032855,-73.88921035,graffiti 40.70743413,-73.95504056,graffiti 40.6374361,-74.01734518,graffiti 40.80854037,-73.8878009,graffiti 40.81720981,-73.88945901,graffiti 40.80763148,-73.8792666,graffiti 40.71364598,-73.99523129,graffiti 40.8509416,-73.89453213,graffiti 40.65629124,-74.0046709,graffiti 40.63987355,-74.01680173,graffiti 40.85382563,-73.88800646,graffiti 40.66166545,-73.99393743,graffiti 40.83513414,-73.88246909,graffiti 40.81727023,-73.88949865,graffiti 40.84079976,-73.78409796,graffiti 40.71342373,-73.99761926,graffiti 40.84592495,-73.78600056,graffiti 40.8077968,-73.87987316,graffiti 40.81081633,-73.88839673,graffiti 40.8461776,-73.78607565,graffiti 40.65778721,-74.00265267,graffiti 40.71356641,-73.9961836,graffiti 40.83561632,-73.88991991,graffiti 40.66027126,-74.00069203,graffiti 40.84733947,-73.78653818,graffiti 40.69967334,-73.94005024,graffiti 40.70117607,-73.94268164,graffiti 40.87461477,-73.91096873,graffiti 40.81129725,-73.89190004,graffiti 40.87844171,-73.90513802,graffiti 40.76411864,-73.82714229,graffiti 40.8462666,-73.91338855,graffiti 40.71416156,-73.9889078,graffiti 40.70545254,-73.92395534,graffiti 40.70746756,-73.94960861,graffiti 40.70518915,-73.81169955,graffiti 40.87271879,-73.90485692,graffiti 40.88353571,-73.89851633,graffiti 40.70373629,-73.92699771,graffiti 40.73339375,-73.88392948,graffiti 40.71270139,-73.98940222,graffiti 40.73338824,-73.88390784,graffiti 40.69967932,-73.93586677,graffiti 40.71391202,-73.99172868,graffiti 40.71401899,-73.9906934,graffiti 40.71377216,-73.99371626,graffiti 40.68017681,-73.86042126,graffiti 40.76024533,-73.82143454,graffiti 40.8784501,-73.90203898,graffiti 40.89447154,-73.89654645,graffiti 40.70789924,-73.92152872,graffiti 40.70946534,-74.01029067,graffiti 40.71390655,-73.99197758,graffiti 40.84591272,-73.9136384,graffiti 40.71389512,-73.98708982,graffiti 40.71377765,-73.99364051,graffiti 40.70676722,-73.92386006,graffiti 40.89809596,-73.8545921,graffiti 40.62095742,-73.99201396,graffiti 40.71426024,-73.98769937,graffiti 40.70329666,-73.92626243,graffiti 40.71393944,-73.99141124,graffiti 40.86904758,-73.90298204,graffiti 40.71402447,-73.99061764,graffiti 40.64431035,-74.00039998,graffiti 40.87378956,-73.90526036,graffiti 40.8401434,-73.92139442,graffiti 40.64214743,-74.00262322,graffiti 40.71398608,-73.99106855,graffiti 40.712995,-73.98852925,graffiti 40.70351075,-73.93068394,graffiti 40.84075571,-73.92174788,graffiti 40.84611846,-73.91349718,graffiti 40.71407107,-73.98991784,graffiti 40.71397237,-73.99122006,graffiti 40.70705521,-73.78781337,graffiti 40.67402258,-73.99813259,graffiti 40.81661566,-73.81897473,graffiti 40.84631597,-73.91335234,graffiti 40.84700178,-73.91285989,graffiti 40.67739845,-73.9928292,graffiti 40.69742237,-73.92988246,graffiti 40.8091039,-73.88314,graffiti 40.71378312,-73.99340965,graffiti 40.71389831,-73.9918874,graffiti 40.71397785,-73.9911443,graffiti 40.80892041,-73.88354129,graffiti 40.59022855,-73.95352804,graffiti 40.89907202,-73.85376161,graffiti 40.7334993,-73.95748742,graffiti 40.7063166,-73.923132,graffiti 40.70201613,-73.92400614,graffiti 40.62786084,-73.99846891,graffiti 40.83537699,-73.91527829,graffiti 40.90112856,-73.85221247,graffiti 40.58675588,-73.93545676,graffiti 40.84181701,-73.91654226,graffiti 40.64434329,-74.00036755,graffiti 40.71406284,-73.98999359,graffiti 40.68326804,-73.86092678,graffiti 40.69769642,-73.96501141,graffiti 40.7141014,-73.77782057,graffiti 40.71078083,-73.7928622,graffiti 40.67845658,-73.91088811,graffiti 40.6917202,-73.92780779,graffiti 40.74386923,-73.83366186,graffiti 40.70211045,-73.81059382,graffiti 40.74346817,-73.82967873,graffiti 40.6828256,-73.93440111,graffiti 40.74866378,-73.81701557,graffiti 40.70196909,-73.8097611,graffiti 40.70217121,-73.80426049,graffiti 40.71151546,-73.79080748,graffiti 40.71495621,-73.77419962,graffiti 40.68665637,-73.93278197,graffiti 40.70197463,-73.80978994,graffiti 40.60645102,-74.12599857,graffiti 40.69344467,-73.92900675,graffiti 40.68591615,-73.92964216,graffiti 40.68246849,-73.9096713,graffiti 40.6761007,-73.90634515,graffiti 40.70181756,-73.80612973,graffiti 40.62034286,-73.99864919,graffiti 40.71114678,-73.79183665,graffiti 40.61529053,-73.91408085,graffiti 40.71079713,-73.79276836,graffiti 40.70482014,-73.79647662,graffiti 40.82923741,-73.87118022,graffiti 40.70192604,-73.80535761,graffiti 40.63397327,-74.00706165,graffiti 40.8046973,-73.95600432,graffiti 40.81645568,-73.89608608,graffiti 40.82087714,-73.88986119,graffiti 40.6790208,-73.92455512,graffiti 40.6885883,-73.92336879,graffiti 40.68626688,-73.85550114,graffiti 40.68677283,-73.97863601,graffiti 40.71407949,-73.77784589,graffiti 40.70242364,-73.81244671,graffiti 40.71177752,-73.79002031,graffiti 40.70195816,-73.80979359,graffiti 40.69350237,-73.92910406,graffiti 40.71116853,-73.79172477,graffiti 40.68141959,-74.00630232,graffiti 40.68369115,-73.92686461,graffiti 40.66304841,-73.91971798,graffiti 40.71573366,-73.77175844,graffiti 40.63530979,-74.00973519,graffiti 40.76152296,-73.79424939,graffiti 40.82545307,-73.89036309,graffiti 40.70179721,-73.80873372,graffiti 40.70455785,-73.79715909,graffiti 40.70177806,-73.80712886,graffiti 40.71191413,-73.78967721,graffiti 40.7250641,-74.00638943,graffiti 40.70211321,-73.81060823,graffiti 40.70212152,-73.81065149,graffiti 40.71235034,-73.7851056,graffiti 40.68818827,-73.92036921,graffiti 40.69309021,-73.92839049,graffiti 40.75084409,-73.81937362,graffiti 40.70891178,-73.96583512,graffiti 40.71115224,-73.79182221,graffiti 40.63292484,-74.00578614,graffiti 40.78594625,-73.84758952,graffiti 40.71518842,-74.00702697,graffiti 40.75681267,-73.96399857,graffiti 40.74685379,-73.90134828,graffiti 40.70393413,-73.94755188,graffiti 40.7542912,-73.96715815,graffiti 40.72265159,-73.9969912,graffiti 40.77662207,-73.95769458,graffiti 40.71505927,-73.99092412,graffiti 40.71626142,-73.9903071,graffiti 40.70376107,-73.94724184,graffiti 40.71518842,-74.00702697,graffiti 40.71978293,-73.99005767,graffiti 40.72287114,-73.99591249,graffiti 40.72723182,-73.98632957,graffiti 40.71679383,-73.98943765,graffiti 40.80583608,-73.90873448,graffiti 40.74519171,-73.97558941,graffiti 40.7462318,-74.00150133,graffiti 40.70294521,-73.94579984,graffiti 40.83575017,-73.84824518,graffiti 40.70701919,-73.95381812,graffiti 40.74972364,-73.97728766,graffiti 40.70193975,-73.94398295,graffiti 40.74316637,-73.97699397,graffiti 40.74445318,-74.00282574,graffiti 40.7036598,-73.94786948,graffiti 40.68827973,-73.85845355,graffiti 40.66664435,-73.99179942,graffiti 40.85669319,-73.86437792,graffiti 40.75935921,-73.96216709,graffiti 40.74738735,-74.00068571,graffiti 40.71443616,-73.99029654,graffiti 40.70133814,-73.94294117,graffiti 40.71914108,-74.00150793,graffiti 40.71570149,-73.99028193,graffiti 40.78594625,-73.84758952,graffiti 40.70157986,-73.94331244,graffiti 40.69748642,-73.83623709,graffiti 40.74253792,-73.97746694,graffiti 40.70572238,-73.95074245,graffiti 40.73869579,-73.9803262,graffiti 40.70201118,-73.94411273,graffiti 40.74734069,-74.0007218,graffiti 40.70562073,-73.95050448,graffiti 40.71990644,-73.99001797,graffiti 40.67010022,-73.99545791,graffiti 40.71527342,-73.99168522,graffiti 40.69293633,-73.9281202,graffiti 40.71661548,-73.99012307,graffiti 40.71877532,-73.98714659,graffiti 40.70403852,-73.94773934,graffiti 40.69448363,-73.93137489,graffiti 40.70386546,-73.9474293,graffiti 40.70557954,-73.95046123,graffiti 40.7030908,-73.9460594,graffiti 40.84734745,-73.93809186,graffiti 40.71995584,-73.98999271,graffiti 40.75365418,-73.96633192,graffiti 40.75265706,-73.99310984,graffiti 40.72843203,-74.00361521,graffiti 40.76158053,-73.92902798,graffiti 40.70159636,-73.94337734,graffiti 40.7231182,-73.99680718,graffiti 40.70396984,-73.94761677,graffiti 40.74985762,-73.99888838,graffiti 40.75389501,-73.97424715,graffiti 40.7202582,-74.00116524,graffiti 40.72237441,-74.00047982,graffiti 40.83429068,-73.85088292,graffiti 40.72217126,-73.99715356,graffiti 40.72139592,-73.90428648,graffiti 40.7012832,-73.94285466,graffiti 40.83728985,-73.84609139,graffiti 40.70169799,-73.94352152,graffiti 40.69250715,-73.93097305,graffiti 40.70131067,-73.94289792,graffiti 40.84710958,-73.93983423,graffiti 40.75832738,-73.98897986,graffiti 40.7238428,-73.99635618,graffiti 40.83828492,-73.82590515,graffiti 40.7278392,-74.00232713,graffiti 40.70290722,-73.94673398,graffiti 40.8694747,-73.84435732,graffiti 40.75510283,-73.99878001,graffiti 40.87715592,-73.90360302,graffiti 40.83700211,-73.84643899,graffiti 40.86959026,-73.84457037,graffiti 40.70725551,-73.95451047,graffiti 40.72012096,-74.00128068,graffiti 40.71602813,-73.99042617,graffiti 40.71900932,-74.00220417,graffiti 40.7194228,-73.98488456,graffiti 40.71356114,-73.95687249,graffiti 40.75527597,-73.9651472,graffiti 40.74140999,-73.97834784,graffiti 40.68824724,-73.92649543,graffiti 40.7739637,-73.91902826,graffiti 40.7606407,-73.96123505,graffiti 40.8372186,-73.84617829,graffiti 40.67728284,-73.92377475,graffiti 40.70654378,-73.95243705,graffiti 40.74476334,-74.00257674,graffiti 40.74733519,-74.00127037,graffiti 40.83645131,-73.84710521,graffiti 40.71763055,-73.98546215,graffiti 40.72244845,-73.99608207,graffiti 40.75874179,-73.96262225,graffiti 40.75310735,-73.99652061,graffiti 40.71629162,-73.99031431,graffiti 40.75657669,-73.96419361,graffiti 40.75049165,-73.99840474,graffiti 40.70253039,-73.94505001,graffiti 40.72275024,-73.99312376,graffiti 40.72210788,-73.99181064,graffiti 40.71937952,-73.9909091,graffiti 40.55936006,-74.16952081,graffiti 40.64878593,-74.01640397,graffiti 40.7230055,-73.99302993,graffiti 40.71632957,-73.94201568,graffiti 40.80173051,-73.94990929,graffiti 40.7220475,-73.99183951,graffiti 40.73831443,-73.90743408,graffiti 40.67639277,-73.92682214,graffiti 40.69814607,-73.99144213,graffiti 40.68662621,-73.99052054,graffiti 40.67118506,-73.9254652,graffiti 40.67455536,-73.92502522,graffiti 40.67833896,-73.94711774,graffiti 40.70326461,-73.98664826,graffiti 40.69992718,-73.93253056,graffiti 40.70282245,-73.98466472,graffiti 40.68303731,-73.97926096,graffiti 40.67689109,-73.92082254,graffiti 40.67034045,-73.92668459,graffiti 40.68317491,-73.98134493,graffiti 40.680098,-73.98123762,graffiti 40.67028862,-73.90802956,graffiti 40.68651636,-73.98990758,graffiti 40.67857428,-73.95170349,graffiti 40.68308155,-73.98115386,graffiti 40.67368092,-73.98255887,graffiti 40.6835181,-73.98193975,graffiti 40.85188652,-73.89534032,graffiti 40.67281802,-73.92518219,graffiti 40.65893146,-73.91617277,graffiti 40.68176114,-73.98010865,graffiti 40.69848873,-73.98678626,graffiti 40.6872657,-73.99008776,graffiti 40.6739142,-73.98236414,graffiti 40.68400415,-73.98347199,graffiti 40.71690952,-73.95625707,graffiti 40.82065669,-73.89785711,graffiti 40.83633549,-73.85518966,graffiti 40.68673698,-73.80894639,graffiti 40.83620992,-73.85356009,graffiti 40.67427314,-73.90035249,graffiti 40.65606294,-73.90867268,graffiti 40.67938962,-73.86317378,graffiti 40.82909382,-73.85002734,graffiti 40.83409254,-73.85261795,graffiti 40.80000805,-73.95282175,graffiti 40.82065669,-73.89785711,graffiti 40.82649974,-73.84978386,graffiti 40.65516159,-73.90399588,graffiti 40.58714542,-74.16215299,graffiti 40.78671848,-73.97060163,graffiti 40.8341061,-73.85248421,graffiti 40.87627491,-73.86293135,graffiti 40.71690952,-73.95625707,graffiti 40.81218792,-73.94994476,graffiti 40.67838319,-73.94780631,graffiti 40.71690952,-73.95625707,graffiti 40.83504618,-73.85796784,graffiti 40.83627768,-73.85288415,graffiti 40.83611787,-73.85456494,graffiti 40.83461055,-73.86085616,graffiti 40.87242291,-73.85090588,graffiti 40.83462688,-73.8607441,graffiti 40.83616924,-73.85395047,graffiti 40.64593332,-73.97882206,graffiti 40.6040099,-73.76635313,graffiti 40.83601443,-73.85525179,graffiti 40.81220716,-73.94999533,graffiti 40.82588748,-73.84964072,graffiti 40.705565,-73.9238434,graffiti 40.88131228,-73.87839507,graffiti 40.87216111,-73.8500893,graffiti 40.69683144,-73.89921886,graffiti 40.65748549,-73.90288606,graffiti 40.672761,-73.97998155,graffiti 40.83408712,-73.85267217,graffiti 40.7630404,-73.79402089,graffiti 40.83922532,-73.8527403,graffiti 40.87136692,-73.86253289,graffiti 40.79276522,-73.81289283,graffiti 40.66821675,-73.98781961,graffiti 40.68858425,-73.95119863,graffiti 40.68687961,-73.95779478,graffiti 40.82265479,-73.89177681,graffiti 40.72398284,-74.00022368,graffiti 40.73999573,-74.00094185,graffiti 40.64574785,-74.013315,graffiti 40.8940296,-73.89648927,graffiti 40.85687309,-73.89176089,graffiti 40.68090098,-73.94968637,graffiti 40.84867684,-73.89714901,graffiti 40.83210887,-73.8510721,graffiti 40.83631997,-73.84331459,graffiti 40.69459135,-73.93737543,graffiti 40.68090098,-73.94968637,graffiti 40.87785968,-73.84029127,graffiti 40.81682384,-73.90279083,graffiti 40.821074,-73.86582346,graffiti 40.71177401,-73.99427916,graffiti 40.69795345,-73.96192425,graffiti 40.8324466,-73.85117253,graffiti 40.72476306,-73.95136696,graffiti 40.81669552,-73.86526508,graffiti 40.69707718,-73.9598944,graffiti 40.82495122,-73.84940074,graffiti 40.83244759,-73.87016218,graffiti 40.82115495,-73.864631,graffiti 40.71347263,-73.98896924,graffiti 40.63186269,-74.00352711,graffiti 40.82318458,-73.89480736,graffiti 40.68357187,-73.95020356,graffiti 40.84692887,-73.89760713,graffiti 40.823225,-73.90013305,graffiti 40.80770742,-73.85252466,graffiti 40.83247212,-73.87001398,graffiti 40.72871644,-73.95361186,graffiti 40.85613805,-73.89234409,graffiti 40.6878666,-73.95481938,graffiti 40.83112003,-73.9192261,graffiti 40.82581335,-73.84962282,graffiti 40.82084754,-73.86699092,graffiti 40.83141414,-73.84459089,graffiti 40.83284196,-73.8512656,graffiti 40.835127,-73.84404015,graffiti 40.88569174,-73.91020166,graffiti 40.71563011,-73.99004025,graffiti 40.82774345,-73.85005567,graffiti 40.69829086,-73.96132901,graffiti 40.83576614,-73.85208663,graffiti 40.82694858,-73.84671151,graffiti 40.7219938,-73.9794653,graffiti 40.80936751,-73.90744363,graffiti 40.82182072,-73.91511128,graffiti 40.8520456,-73.8952244,graffiti 40.83249677,-73.91030598,graffiti 40.76918723,-73.83586583,graffiti 40.74931965,-73.99928178,graffiti 40.83081574,-73.85078591,graffiti 40.67979875,-73.95243088,graffiti 40.80792538,-73.9167437,graffiti 40.82818548,-73.85015585,graffiti 40.64002818,-74.00843872,graffiti 40.7992668,-73.95241053,graffiti 40.68722781,-73.90609154,graffiti 40.67805742,-73.94973899,graffiti 40.87844814,-73.91704593,graffiti 40.68438839,-73.95337228,graffiti 40.85489472,-73.89236779,graffiti 40.84748897,-73.89781229,graffiti 40.82444607,-73.84930433,graffiti 40.83292716,-73.86949633,graffiti 40.88010326,-73.85798008,graffiti 40.86037578,-73.89224324,graffiti 40.83243669,-73.87023448,graffiti 40.71235313,-73.99394725,graffiti 40.83743536,-73.85242624,graffiti 40.71557549,-73.99414897,graffiti 40.8211468,-73.86470328,graffiti 40.82865907,-73.89649702,graffiti 40.82865266,-73.90838159,graffiti 40.84861374,-73.89718525,graffiti 40.82281518,-73.84890336,graffiti 40.83202514,-73.92227489,graffiti 40.833262,-73.85134416,graffiti 40.82687945,-73.91174804,graffiti 40.83121766,-73.91020652,graffiti 40.8852188,-73.90910288,graffiti 40.82770504,-73.8500666,graffiti 40.71347811,-73.9889007,graffiti 40.70996498,-73.99078414,graffiti 40.8809422,-73.90863861,graffiti 40.68482241,-73.95421209,graffiti 40.68140027,-73.95573233,graffiti 40.83171354,-73.85100072,graffiti 40.82298339,-73.89390801,graffiti 40.69484229,-73.95807824,graffiti 40.86084513,-73.89225332,graffiti 40.67925957,-73.94960829,graffiti 40.68175986,-73.95578617,graffiti 40.80776135,-73.91764337,graffiti 40.80978671,-73.9065255,graffiti 40.83245565,-73.87000678,graffiti 40.85439987,-73.89447242,graffiti 40.88175004,-73.91710329,graffiti 40.83584295,-73.91440315,graffiti 40.83148281,-73.84463048,graffiti 40.8326654,-73.86860428,graffiti 40.82385316,-73.8965876,graffiti 40.60955521,-73.93733275,graffiti 40.83528567,-73.85197205,graffiti 40.8218631,-73.89953894,graffiti 40.83252056,-73.8427851,graffiti 40.683635,-73.95021433,graffiti 40.8211317,-73.86588115,graffiti 40.82726222,-73.89370968,graffiti 40.81942815,-73.91623434,graffiti 40.69720339,-73.93560949,graffiti 40.82194691,-73.91502079,graffiti 40.83601717,-73.85524094,graffiti 40.68347186,-73.95392096,graffiti 40.82089912,-73.86650306,graffiti 40.85455016,-73.89374199,graffiti 40.7630404,-73.79402089,graffiti 40.67833354,-73.94727998,graffiti 40.86929876,-73.88372841,graffiti 40.88732079,-73.90515066,graffiti 40.82090742,-73.86655363,graffiti 40.67973526,-73.95155843,graffiti 40.7472158,-73.80280364,graffiti 40.86895559,-73.88921752,graffiti 40.82531123,-73.92593934,graffiti 40.71781239,-73.99276352,graffiti 40.82831312,-73.85336428,graffiti 40.68201498,-73.90888231,graffiti 40.65067724,-74.01526924,graffiti 40.7848535,-73.84124018,graffiti 40.85523156,-73.88586771,graffiti 40.72401514,-73.98791042,graffiti 40.67789323,-73.939374,graffiti 40.64472185,-74.00714567,graffiti 40.72180617,-73.99589091,graffiti 40.71208549,-73.8753997,graffiti 40.7079415,-73.78470862,graffiti 40.64855847,-74.01368674,graffiti 40.71689816,-73.98975508,graffiti 40.64461397,-74.01556694,graffiti 40.67073447,-73.95000046,graffiti 40.68256747,-73.90988028,graffiti 40.7177465,-73.99248215,graffiti 40.71467126,-73.9823281,graffiti 40.88840859,-73.86014681,graffiti 40.68246849,-73.9096713,graffiti 40.82557521,-73.92670144,graffiti 40.67733569,-73.9291645,graffiti 40.82693403,-73.89498571,graffiti 40.72154275,-74.00007576,graffiti 40.64741138,-74.0115856,graffiti 40.78265361,-73.84224566,graffiti 40.67769337,-73.93527862,graffiti 40.57511821,-74.11368964,graffiti 40.7172139,-73.99077953,graffiti 40.72007976,-74.00283192,graffiti 40.68241905,-73.90961728,graffiti 40.67084827,-73.93593775,graffiti 40.88388557,-73.86262273,graffiti 40.730257,-73.88720387,graffiti 40.78485076,-73.84124019,graffiti 40.67719956,-73.95269592,graffiti 40.64804823,-74.01094427,graffiti 40.71751315,-73.99177152,graffiti 40.73560854,-73.88101726,graffiti 40.68197101,-73.90880305,graffiti 40.71403797,-73.76522075,graffiti 40.6487122,-74.01350299,graffiti 40.71776572,-73.99255069,graffiti 40.64141453,-74.00419062,graffiti 40.71474541,-73.98260584,graffiti 40.82395002,-73.89443761,graffiti 40.64271013,-74.00206472,graffiti 40.78321408,-73.8446709,graffiti 40.67038198,-73.93652579,graffiti 40.71465479,-73.98233893,graffiti 40.87469603,-73.8670423,graffiti 40.64396439,-74.00538712,graffiti 40.64750433,-74.01477842,graffiti 40.71201208,-73.87351693,graffiti 40.67062082,-73.93179598,graffiti 40.55984444,-74.12070308,graffiti 40.88010047,-73.86479667,graffiti 40.63724135,-74.08114453,graffiti 40.72084816,-73.99384186,graffiti 40.71218782,-73.76920953,graffiti 40.82696274,-73.89638764,graffiti 40.67040902,-73.86114465,graffiti 40.67033486,-73.93096355,graffiti 40.77414364,-73.95093014,graffiti 40.71337233,-73.76319585,graffiti 40.71959944,-74.00218976,graffiti 40.71160788,-73.87537534,graffiti 40.55995199,-74.12281223,graffiti 40.86879928,-73.88936964,graffiti 40.71344481,-73.76108178,graffiti 40.72078503,-73.99386712,graffiti 40.82848204,-73.85454188,graffiti 40.82317084,-73.89479654,graffiti 40.82890096,-73.88526245,graffiti 40.67015921,-73.93098176,graffiti 40.65180238,-74.01685519,graffiti 40.64208156,-74.00268808,graffiti 40.71227217,-73.87543181,graffiti 40.82545425,-73.92640529,graffiti 40.71946495,-74.00183983,graffiti 40.71699974,-73.9900653,graffiti 40.71785357,-73.9929006,graffiti 40.88439029,-73.86236853,graffiti 40.82652496,-73.8919042,graffiti 40.71603942,-73.96416849,graffiti 40.71673892,-73.98927533,graffiti 40.88171595,-73.86382783,graffiti 40.70550557,-73.93429944,graffiti 40.6895368,-73.97857022,graffiti 40.6706789,-73.93254934,graffiti 40.7207495,-73.998474,graffiti 40.67963741,-73.90475022,graffiti 40.71972295,-74.00235932,graffiti 40.67176483,-73.93085392,graffiti 40.71063414,-73.9853194,graffiti 40.71463008,-73.98225236,graffiti 40.68233384,-73.90946957,graffiti 40.71631609,-73.98790461,graffiti 40.71091148,-73.7705702,graffiti 40.67009883,-73.93098903,graffiti 40.67071497,-73.93321259,graffiti 40.82679899,-73.89143764,graffiti 40.88564352,-73.86145096,graffiti 40.6469255,-74.01211525,graffiti 40.87066673,-73.88483605,graffiti 40.66934406,-73.9310583,graffiti 40.77514918,-73.9532654,graffiti 40.87558107,-73.86813256,graffiti 40.78485076,-73.84124019,graffiti 40.71958846,-74.00217172,graffiti 40.71456417,-73.98202873,graffiti 40.7236864,-74.00151886,graffiti 40.68059948,-73.90645781,graffiti 40.60994982,-73.76778739,graffiti 40.72148511,-73.99915221,graffiti 40.67186911,-73.93082497,graffiti 40.71087038,-73.87615584,graffiti 40.85536045,-73.88575542,graffiti 40.7472158,-73.80280364,graffiti 40.71782886,-73.99275631,graffiti 40.60517955,-73.76925172,graffiti 40.57945459,-73.96779851,graffiti 40.7848535,-73.84124018,graffiti 40.71455593,-73.98199987,graffiti 40.64797686,-74.01101993,graffiti 40.72293709,-74.00000722,graffiti 40.64346211,-74.00486819,graffiti 40.64753453,-74.014746,graffiti 40.68453693,-73.9541582,graffiti 40.68233656,-73.90943712,graffiti 40.72072465,-73.99388877,graffiti 40.70268958,-73.83947747,graffiti 40.66086946,-73.99390867,graffiti 40.78496159,-73.84199464,graffiti 40.7854255,-73.84003994,graffiti 40.68749807,-73.91856715,graffiti 40.65922697,-73.96053709,graffiti 40.69038446,-73.93398259,graffiti 40.78452419,-73.8494633,graffiti 40.76117358,-73.83465826,graffiti 40.68528017,-73.91461445,graffiti 40.67977997,-73.969989,graffiti 40.68303468,-73.91065123,graffiti 40.77426103,-73.91274567,graffiti 40.68703909,-73.91772757,graffiti 40.78298873,-73.840443,graffiti 40.78378981,-73.85687111,graffiti 40.68424131,-73.91283101,graffiti 40.7846041,-73.8539733,graffiti 40.78504159,-73.84029725,graffiti 40.80915382,-73.90794605,graffiti 40.78015224,-73.80248584,graffiti 40.77424455,-73.91272042,graffiti 40.67936139,-73.9651364,graffiti 40.68950891,-73.86490548,graffiti 40.6862309,-73.8642667,graffiti 40.78699072,-73.82541094,graffiti 40.78167117,-73.84852009,graffiti 40.78486448,-73.84123655,graffiti 40.78480282,-73.84844796,graffiti 40.78478898,-73.84835772,graffiti 40.78503884,-73.84029725,graffiti 40.78297347,-73.84132411,graffiti 40.68612667,-73.91612415,graffiti 40.68429628,-73.91292829,graffiti 40.68468655,-73.91361285,graffiti 40.8188941,-73.9141034,graffiti 40.77978957,-73.80227388,graffiti 40.68165487,-73.84848408,graffiti 40.67806342,-73.95785805,graffiti 40.7742143,-73.91264463,graffiti 40.78396024,-73.8527217,graffiti 40.655375,-73.95073638,graffiti 40.67527206,-73.95110022,graffiti 40.68587658,-73.91568458,graffiti 40.72241528,-73.93785797,graffiti 40.7116148,-73.99412767,graffiti 40.72125444,-73.95617845,graffiti 40.68555776,-73.91511168,graffiti 40.81290821,-73.90745316,graffiti 40.68744585,-73.91846985,graffiti 40.78322444,-73.84832517,graffiti 40.65573262,-73.98130214,graffiti 40.68250148,-73.90972894,graffiti 40.58934611,-74.14626581,graffiti 40.68334527,-73.91120607,graffiti 40.68590681,-73.91573862,graffiti 40.78518262,-73.84105884,graffiti 40.65559157,-73.9500947,graffiti 40.78567846,-73.854899,graffiti 40.81180037,-73.92386995,graffiti 40.68501911,-73.91419653,graffiti 40.78298598,-73.840443,graffiti 40.6848954,-73.91394429,graffiti 40.78484802,-73.8412402,graffiti 40.78448393,-73.8566349,graffiti 40.67800015,-73.95747232,graffiti 40.78014004,-73.84676872,graffiti 40.71174921,-73.99260186,graffiti 40.75998696,-73.82841641,graffiti 40.78298753,-73.84767574,graffiti 40.64438296,-74.09583366,graffiti 40.81473197,-73.92016361,graffiti 40.78541511,-73.83849442,graffiti 40.81964047,-73.91384231,graffiti 40.55412301,-74.17853637,graffiti 40.78456028,-73.84768297,graffiti 40.7735978,-73.91046474,graffiti 40.68741837,-73.91842301,graffiti 40.68617065,-73.91620342,graffiti 40.68303468,-73.91065123,graffiti 40.78625959,-73.83591763,graffiti 40.68755304,-73.91866804,graffiti 40.78473001,-73.83927607,graffiti 40.78016125,-73.84214685,graffiti 40.65973297,-73.99150112,graffiti 40.66003784,-73.99479901,graffiti 40.78145576,-73.84141438,graffiti 40.67875815,-73.95868322,graffiti 40.7847599,-73.84920638,graffiti 40.78470741,-73.85105174,graffiti 40.78298174,-73.84134575,graffiti 40.6858436,-73.91563053,graffiti 40.7247153,-73.99048626,graffiti 40.72210757,-73.86884029,graffiti 40.78184907,-73.98297107,graffiti 40.78454761,-73.84034899,graffiti 40.78475719,-73.84923166,graffiti 40.81800547,-73.90121029,graffiti 40.67871904,-73.964906,graffiti 40.68492014,-73.91398753,graffiti 40.68551104,-73.91502881,graffiti 40.59932907,-73.95743601,graffiti 40.85042476,-73.9209449,graffiti 40.70716268,-73.86209604,graffiti 40.68697313,-73.91760866,graffiti 40.78447923,-73.83855447,graffiti 40.68573916,-73.91544317,graffiti 40.65604771,-73.9397038,graffiti 40.68499712,-73.91415329,graffiti 40.65615537,-73.9600019,graffiti 40.78013849,-73.84767503,graffiti 40.65519354,-73.95003012,graffiti 40.68418634,-73.91273373,graffiti 40.65609388,-73.95013036,graffiti 40.68752555,-73.91861759,graffiti 40.68371358,-73.9118618,graffiti 40.782964,-73.840425,graffiti 40.82333986,-73.88224062,graffiti 40.78296527,-73.84134579,graffiti 40.68415886,-73.91268328,graffiti 40.68789985,-73.83883518,graffiti 40.6850411,-73.91423616,graffiti 40.68749804,-73.91853109,graffiti 40.78460143,-73.84766482,graffiti 40.78015802,-73.84584793,graffiti 40.78453225,-73.85576454,graffiti 40.77252354,-73.90910146,graffiti 40.69038446,-73.93398259,graffiti 40.8202755,-73.90138396,graffiti 40.7837956,-73.85711303,graffiti 40.82248107,-73.90322336,graffiti 40.68421382,-73.91278056,graffiti 40.77088368,-73.9184363,graffiti 40.79046055,-73.94968664,graffiti 40.72985986,-73.8798982,graffiti 40.71822981,-74.00163417,graffiti 40.68578036,-73.98602077,graffiti 40.7757659,-73.91015493,graffiti 40.81306854,-73.91997775,graffiti 40.78457216,-73.85475697,graffiti 40.61194824,-73.98446589,graffiti 40.85089161,-73.89389242,graffiti 40.77491933,-73.9121599,graffiti 40.77289205,-73.92126079,graffiti 40.78968897,-73.94310741,graffiti 40.73934943,-73.98278346,graffiti 40.77235415,-73.90665386,graffiti 40.82827743,-73.85335351,graffiti 40.84198529,-73.89121769,graffiti 40.77256806,-73.90642249,graffiti 40.74156673,-73.97992118,graffiti 40.77498788,-73.91207677,graffiti 40.74856607,-73.94073527,graffiti 40.67317945,-73.9628829,graffiti 40.79624566,-73.9714859,graffiti 40.77575219,-73.91016578,graffiti 40.86790878,-73.9213399,graffiti 40.77065014,-73.91809361,graffiti 40.68697189,-73.85301885,graffiti 40.74242343,-73.98194904,graffiti 40.7087373,-73.96091897,graffiti 40.6881561,-73.85182271,graffiti 40.75588303,-73.91380205,graffiti 40.72351001,-73.98700137,graffiti 40.81279949,-73.91987331,graffiti 40.77329561,-73.90667059,graffiti 40.8751213,-73.88754391,graffiti 40.77473549,-73.9087085,graffiti 40.68340852,-73.91135382,graffiti 40.7105635,-73.90910299,graffiti 40.71429602,-73.95498904,graffiti 40.69683144,-73.89921886,graffiti 40.77476574,-73.90878428,graffiti 40.77243093,-73.90655988,graffiti 40.71745296,-73.99532481,graffiti 40.71856157,-73.99072162,graffiti 40.71349599,-73.95884205,graffiti 40.71290803,-73.95725527,graffiti 40.716259,-73.99560627,graffiti 40.63135434,-74.02782398,graffiti 40.72424808,-73.86610139,graffiti 40.71289429,-73.95721199,graffiti 40.63128864,-74.02708179,graffiti 40.60797141,-74.12621033,graffiti 40.86076335,-73.91991675,graffiti 40.67991988,-73.86131232,graffiti 40.84218194,-73.85104594,graffiti 40.66197324,-73.94423999,graffiti 40.86749051,-73.84050418,graffiti 40.84056947,-73.85215184,graffiti 40.84575957,-73.83388779,graffiti 40.85135677,-73.89532308,graffiti 40.85086733,-73.89435513,graffiti 40.66871501,-73.95866421,graffiti 40.63607806,-74.01254924,graffiti 40.64007759,-74.00838828,graffiti 40.72404318,-74.00331553,graffiti 40.63779648,-74.01075883,graffiti 40.80617369,-73.90875208,graffiti 40.8463842,-73.83308383,graffiti 40.87512281,-73.88628556,graffiti 40.84881315,-73.89019807,graffiti 40.85033918,-73.89309085,graffiti 40.836919,-73.83399659,graffiti 40.80583608,-73.90873448,graffiti 40.66951332,-73.91718323,graffiti 40.71267207,-73.87980653,graffiti 40.83763734,-73.84733739,graffiti 40.64006936,-74.00839549,graffiti 40.74042517,-73.85655649,graffiti 40.66741733,-73.93124413,graffiti 40.7387027,-73.99228493,graffiti 40.59839583,-73.96559999,graffiti 40.84917199,-73.88944566,graffiti 40.63899606,-74.00951233,graffiti 40.66493345,-73.93147378,graffiti 40.64003642,-74.00842791,graffiti 40.84910282,-73.89175185,graffiti 40.8206459,-73.82136279,graffiti 40.66745028,-73.93126212,graffiti 40.85352593,-73.92884673,graffiti 40.63947643,-74.00901156,graffiti 40.63731334,-74.01126318,graffiti 40.64045105,-73.9943213,graffiti 40.79860294,-73.95329589,graffiti 40.67705876,-73.74514004,graffiti 40.73139904,-74.00554573,graffiti 40.60983596,-73.7657853,graffiti 40.68769516,-73.87014837,graffiti 40.80519638,-73.95481559,graffiti 40.69746414,-73.93087054,graffiti 40.60730581,-73.76606068,graffiti 40.71980295,-73.73292018,graffiti 40.85565927,-73.86987106,graffiti 40.81756936,-73.94203586,graffiti 40.60726343,-73.76412325,graffiti 40.62850509,-74.01336921,graffiti 40.64815682,-74.01992458,graffiti 40.67705876,-73.74514004,graffiti 40.76362316,-73.7869581,graffiti 40.75765905,-73.88289456,graffiti 40.71868488,-73.73488713,graffiti 40.86639465,-73.86347957,graffiti 40.69388252,-73.93615001,graffiti 40.720911,-73.95526957,graffiti 40.83361533,-73.85727345,graffiti 40.7378658,-74.00189085,graffiti 40.64282612,-74.02172107,graffiti 40.87748773,-73.84530044,graffiti 40.75573812,-73.93567202,graffiti 40.86392075,-73.86739284,graffiti 40.87708826,-73.84623793,graffiti 40.64284258,-74.0217535,graffiti 40.84726419,-73.8683152,graffiti 40.71133005,-73.96628116,graffiti 40.76084722,-73.9908529,graffiti 40.64286179,-74.02178233,graffiti 40.74623768,-73.75125244,graffiti 40.86720969,-73.92253385,graffiti 40.69392622,-73.93576051,graffiti 40.73768492,-73.73402127,graffiti 40.64198918,-74.02051008,graffiti 40.7626653,-73.7855064,graffiti 40.85646574,-73.86945015,graffiti 40.70057323,-73.91354177,graffiti 40.62172117,-73.92117256,graffiti 40.60959106,-73.76818841,graffiti 40.85449499,-73.86700316,graffiti 40.67786828,-73.82971648,graffiti 40.76122934,-73.91692119,graffiti 40.74729399,-73.99702256,graffiti 40.85478061,-73.8647903,graffiti 40.85442769,-73.86343184,graffiti 40.66362421,-73.98357076,graffiti 40.64725551,-74.00026306,graffiti 40.85218422,-73.8648751,graffiti 40.59951217,-73.9898091,graffiti 40.72543182,-74.00761613,graffiti 40.67645927,-73.87123378,graffiti 40.84148566,-73.89112454,graffiti 40.59952864,-73.98983791,graffiti 40.77357839,-73.91380081,graffiti 40.72036799,-73.99975108,graffiti 40.7491494,-73.99569072,graffiti 40.73560174,-73.74747447,graffiti 40.72139727,-74.00133842,graffiti 40.85445418,-73.86495363,graffiti 40.70112007,-73.7715452,graffiti 40.63093613,-73.96829246,graffiti 40.61138581,-73.76938154,graffiti 40.67679345,-73.82318299,graffiti 40.76204108,-73.91980442,graffiti 40.70112007,-73.7715452,graffiti 40.72096628,-74.00407297,graffiti 40.85442185,-73.86313544,graffiti 40.63155645,-73.96829577,graffiti 40.69777448,-73.96923438,graffiti 40.63400575,-73.91957277,graffiti 40.74529299,-73.99476348,graffiti 40.67523334,-73.95041528,graffiti 40.85443962,-73.86423431,graffiti 40.59949569,-73.9897803,graffiti 40.68344109,-73.87290048,graffiti 40.84916374,-73.88942398,graffiti 40.85445828,-73.86611398,graffiti 40.72279331,-73.95375308,graffiti 40.71444726,-73.99185847,graffiti 40.72429017,-73.99571758,graffiti 40.70924234,-73.95354246,graffiti 40.72424808,-73.86610139,graffiti 40.72161673,-73.99459578,graffiti 40.70705476,-73.90455595,graffiti 40.81232543,-73.88509956,graffiti 40.71645389,-73.99570366,graffiti 40.68990851,-73.86163772,graffiti 40.71175401,-73.95408538,graffiti 40.86315216,-73.85810666,graffiti 40.77785058,-73.95470777,graffiti 40.72798151,-73.98995181,graffiti 40.72338157,-73.9938741,graffiti 40.84838969,-73.88937828,graffiti 40.70764459,-73.90420884,graffiti 40.73256527,-74.00986847,graffiti 40.72037244,-73.76099922,graffiti 40.72342,-73.99388131,graffiti 40.71438813,-73.94581579,graffiti 40.77737906,-73.90919232,graffiti 40.88065617,-73.88359645,graffiti 40.70714463,-73.95183428,graffiti 40.68982963,-73.95615584,graffiti 40.73618467,-73.95300406,graffiti 40.72920196,-73.95287188,graffiti 40.7094176,-73.95255763,graffiti 40.8811469,-73.86076962,graffiti 40.88351398,-73.85946275,graffiti 40.87779854,-73.86554626,graffiti 40.72006861,-73.99318536,graffiti 40.68683183,-73.96248588,graffiti 40.6856482,-73.98297039,graffiti 40.87958025,-73.86354652,graffiti 40.82314037,-73.94053517,graffiti 40.77151052,-73.90883568,graffiti 40.87895402,-73.865515,graffiti 40.72027737,-74.00310971,graffiti 40.80985649,-73.90458915,graffiti 40.80978671,-73.9065255,graffiti 40.6344339,-74.11853933,graffiti 40.6839052,-73.94113527,graffiti 40.80905057,-73.90584018,graffiti 40.81269611,-73.9065178,graffiti 40.71974765,-74.00239539,graffiti 40.72017857,-74.00296901,graffiti 40.81595783,-73.90774516,graffiti 40.81350102,-73.90404203,graffiti 40.81238104,-73.92623189,graffiti 40.81494848,-73.91969731,graffiti 40.81290286,-73.90425965,graffiti 40.80908346,-73.90578956,graffiti 40.7178483,-73.99973666,graffiti 40.6344339,-74.11853933,graffiti 40.81017412,-73.90703069,graffiti 40.7202115,-74.00301591,graffiti 40.81071842,-73.90470351,graffiti 40.80940433,-73.92830508,graffiti 40.81371597,-73.91567074,graffiti 40.81192128,-73.92837462,graffiti 40.80658944,-73.9104023,graffiti 40.72014563,-74.00292211,graffiti 40.71978333,-74.0024459,graffiti 40.81101095,-73.92987478,graffiti 40.81390957,-73.90688097,graffiti 40.83116181,-73.83105867,graffiti 40.62025799,-74.02414157,graffiti 40.76640046,-73.90965132,graffiti 40.81239371,-73.88475625,graffiti 40.61959339,-74.16290901,graffiti 40.82697903,-73.8874157,graffiti 40.80670439,-73.88525376,graffiti 40.85726019,-73.9042934,graffiti 40.66255132,-73.91182488,graffiti 40.6706352,-73.99107075,graffiti 40.62544092,-74.03220566,graffiti 40.82798886,-73.82368456,graffiti 40.81101393,-73.88558229,graffiti 40.83107805,-73.89148125,graffiti 40.81722383,-73.88417345,graffiti 40.66945631,-73.91069466,graffiti 40.66801465,-73.90642138,graffiti 40.65699102,-73.90240743,graffiti 40.81974155,-73.88497476,graffiti 40.83382408,-73.8272792,graffiti 40.87959365,-73.87796066,graffiti 40.68170435,-73.98585577,graffiti 40.78297524,-73.83864116,graffiti 40.82705731,-73.88888259,graffiti 40.90124644,-73.85210369,graffiti 40.66889639,-73.90724924,graffiti 40.83398553,-73.82695716,graffiti 40.82781222,-73.89188766,graffiti 40.82240097,-73.89633694,graffiti 40.83414301,-73.82581842,graffiti 40.8311576,-73.89143775,graffiti 40.81324326,-73.88902125,graffiti 40.81424546,-73.89835104,graffiti 40.85584462,-73.88970568,graffiti 40.8204364,-73.88821801,graffiti 40.66889904,-73.90712307,graffiti 40.82097459,-73.8942689,graffiti 40.82959682,-73.82519796,graffiti 40.85884332,-73.90362234,graffiti 40.83340584,-73.82842221,graffiti 40.81708909,-73.91931177,graffiti 40.81240788,-73.90315492,graffiti 40.8668337,-73.8978838,graffiti 40.8211543,-73.89877767,graffiti 40.69387809,-73.90242917,graffiti 40.82537017,-73.90522813,graffiti 40.66907594,-73.90866567,graffiti 40.66483755,-73.92306806,graffiti 40.6724112,-73.99295951,graffiti 40.83095186,-73.89155734,graffiti 40.86404702,-73.86741067,graffiti 40.60002861,-74.00257115,graffiti 40.81708478,-73.88509857,graffiti 40.8180439,-73.88357229,graffiti 40.81057577,-73.883831,graffiti 40.72009546,-73.90168371,graffiti 40.83356959,-73.82779662,graffiti 40.81882869,-73.91852205,graffiti 40.67356767,-73.90683899,graffiti 40.82325602,-73.89489396,graffiti 40.81445112,-73.89813397,graffiti 40.66689036,-73.90113131,graffiti 40.90513511,-73.8495591,graffiti 40.71448838,-73.99115506,graffiti 40.82057754,-73.84838094,graffiti 40.8128415,-73.8879526,graffiti 40.62255931,-74.03068412,graffiti 40.82735104,-73.82300694,graffiti 40.81087578,-73.88743572,graffiti 40.82130635,-73.88529,graffiti 40.82197321,-73.88246343,graffiti 40.81747035,-73.89817632,graffiti 40.90226379,-73.85137794,graffiti 40.82123648,-73.8485348,graffiti 40.81537548,-73.88576626,graffiti 40.8052844,-73.95529595,graffiti 40.66355732,-73.92134659,graffiti 40.83373104,-73.82746735,graffiti 40.7188408,-73.90133563,graffiti 40.80911598,-73.88699798,graffiti 40.78446274,-73.83853645,graffiti 40.57758163,-73.99741171,graffiti 40.85882548,-73.90527445,graffiti 40.81407761,-73.89482537,graffiti 40.64466688,-74.09766463,graffiti 40.82232461,-73.89688624,graffiti 40.6350633,-74.02450361,graffiti 40.66480877,-73.97668577,graffiti 40.83099849,-73.89152835,graffiti 40.90665461,-73.84875254,graffiti 40.81742362,-73.89809691,graffiti 40.85904728,-73.90464149,graffiti 40.66843745,-73.90654696,graffiti 40.66844855,-73.91015169,graffiti 40.8228174,-73.89547998,graffiti 40.668768,-73.90800642,graffiti 40.83112743,-73.89145587,graffiti 40.81203103,-73.88715921,graffiti 40.84211409,-73.8939534,graffiti 40.80915606,-73.88315435,graffiti 40.64466688,-74.09766463,graffiti 40.80897871,-73.88696209,graffiti 40.67860099,-73.90609287,graffiti 40.81400696,-73.88970999,graffiti 40.81970036,-73.88496399,graffiti 40.81355452,-73.89918661,graffiti 40.81265148,-73.90234536,graffiti 40.82949261,-73.90179307,graffiti 40.61849361,-74.03307761,graffiti 40.89742689,-73.85509635,graffiti 40.63417883,-74.01091317,graffiti 40.66598811,-73.90204822,graffiti 40.68052112,-73.81634086,graffiti 40.61069765,-74.00157031,graffiti 40.61959067,-74.162891,graffiti 40.84284954,-73.91726381,graffiti 40.6618432,-73.91553473,graffiti 40.83340975,-73.89010424,graffiti 40.81987466,-73.90125087,graffiti 40.74974067,-73.85421936,graffiti 40.87932647,-73.8770788,graffiti 40.81644469,-73.89606803,graffiti 40.82267779,-73.91609656,graffiti 40.82927249,-73.82489528,graffiti 40.83400743,-73.82691735,graffiti 40.81892747,-73.91847858,graffiti 40.90107643,-73.85222344,graffiti 40.81899332,-73.9184496,graffiti 40.7887122,-73.9438305,graffiti 40.86490396,-73.88874342,graffiti 40.68235583,-73.90950559,graffiti 40.85812478,-73.86812379,graffiti 40.86309017,-73.89212315,graffiti 40.68216343,-73.90917055,graffiti 40.68222112,-73.90923537,graffiti 40.6772516,-73.91085006,graffiti 40.82689145,-73.9500963,graffiti 40.78498466,-73.94344365,graffiti 40.67704575,-73.91086836,graffiti 40.81621553,-73.91825069,graffiti 40.68222024,-73.91162941,graffiti 40.82281976,-73.95361491,graffiti 40.86506024,-73.88856962,graffiti 40.86386341,-73.89426218,graffiti 40.71354881,-73.77878553,graffiti 40.74964898,-73.89937355,graffiti 40.67948362,-73.98421942,graffiti 40.61447164,-73.99487459,graffiti 40.85612079,-73.88861352,graffiti 40.66589681,-73.9830223,graffiti 40.85173079,-73.89313922,graffiti 40.67017141,-73.99210901,graffiti 40.68231185,-73.90942994,graffiti 40.76218357,-73.96223407,graffiti 40.84879233,-73.90375979,graffiti 40.66153589,-73.91567569,graffiti 40.67753713,-73.91095423,graffiti 40.86358068,-73.89423009,graffiti 40.7929692,-73.94366439,graffiti 40.85623228,-73.89039911,graffiti 40.86749071,-73.89597017,graffiti 40.8571388,-73.88553185,graffiti 40.68216259,-73.91161867,graffiti 40.82108797,-73.95393045,graffiti 40.81734245,-73.93848105,graffiti 40.74607482,-73.90197739,graffiti 40.61681699,-74.15191265,graffiti 40.86489246,-73.89402554,graffiti 40.62290818,-74.14944093,graffiti 40.65620498,-73.90781471,graffiti 40.82196569,-73.95247739,graffiti 40.6168472,-74.15189831,graffiti 40.68100462,-73.97189211,graffiti 40.79422583,-73.94273877,graffiti 40.82006653,-73.95294482,graffiti 40.82169026,-73.95021221,graffiti 40.8231862,-73.95037007,graffiti 40.62186649,-74.03466787,graffiti 40.7881379,-73.94252372,graffiti 40.68740132,-73.8583869,graffiti 40.69586963,-73.92675749,graffiti 40.66586408,-73.88655219,graffiti 40.69578445,-73.92660612,graffiti 40.68192169,-73.82204448,graffiti 40.78942202,-73.94169562,graffiti 40.82287716,-73.95303316,graffiti 40.86547281,-73.89237598,graffiti 40.85532798,-73.88904502,graffiti 40.65783337,-73.9020602,graffiti 40.67629291,-73.90987434,graffiti 40.82896751,-73.860933,graffiti 40.79352194,-73.94030882,graffiti 40.84889431,-73.90427291,graffiti 40.83055445,-73.94742677,graffiti 40.86302891,-73.89413335,graffiti 40.65721423,-73.90345231,graffiti 40.76624852,-73.9621704,graffiti 40.63681227,-74.08613782,graffiti 40.85544867,-73.88896529,graffiti 40.86427417,-73.89322753,graffiti 40.79342591,-73.94037753,graffiti 40.70143413,-73.90534661,graffiti 40.60034274,-73.981134,graffiti 40.65635831,-73.9144208,graffiti 40.85494407,-73.88940714,graffiti 40.85347126,-73.8876998,graffiti 40.81553076,-73.91639098,graffiti 40.86362735,-73.89423724,graffiti 40.7920991,-73.93826963,graffiti 40.72320273,-73.98827856,graffiti 40.6810266,-73.97199305,graffiti 40.66166001,-73.91650454,graffiti 40.67446308,-73.98190615,graffiti 40.60761417,-73.76787475,graffiti 40.66108694,-73.91731264,graffiti 40.82187839,-73.95378538,graffiti 40.85010645,-73.93917366,graffiti 40.85518789,-73.89478928,graffiti 40.66819071,-73.91036832,graffiti 40.66874897,-73.90824436,graffiti 40.6686588,-73.90874916,graffiti 40.82901189,-73.91147421,graffiti 40.8535392,-73.89575342,graffiti 40.74740177,-73.9034407,graffiti 40.83745967,-73.922283,graffiti 40.83255377,-73.90947838,graffiti 40.85363248,-73.89570266,graffiti 40.73644571,-73.8892935,graffiti 40.85130066,-73.89702206,graffiti 40.84393164,-73.83015521,graffiti 40.61287569,-73.98244149,graffiti 40.73656577,-73.88855718,graffiti 40.84806902,-73.89885599,graffiti 40.82974135,-73.85632058,graffiti 40.74866291,-73.87611807,graffiti 40.84986203,-73.89967016,graffiti 40.72568825,-73.95187138,graffiti 40.66906977,-73.91494161,graffiti 40.74264193,-73.89359929,graffiti 40.8319392,-73.90980082,graffiti 40.70797959,-73.78306736,graffiti 40.77788891,-73.90834672,graffiti 40.63498251,-73.96117834,graffiti 40.76624325,-73.78931792,graffiti 40.62651346,-73.96549183,graffiti 40.62516813,-73.96423889,graffiti 40.71369512,-73.75480795,graffiti 40.85079589,-73.89730839,graffiti 40.70849844,-73.78021981,graffiti 40.7080228,-73.78269211,graffiti 40.66976877,-73.91012107,graffiti 40.6656029,-73.92239672,graffiti 40.8511184,-73.89887304,graffiti 40.75663798,-73.83376713,graffiti 40.74871777,-73.87608548,graffiti 40.84560039,-73.90069944,graffiti 40.66177712,-73.94744445,graffiti 40.73591603,-73.89224605,graffiti 40.77750971,-73.90781287,graffiti 40.84934193,-73.89813476,graffiti 40.85324424,-73.86773223,graffiti 40.72568825,-73.95187138,graffiti 40.6686233,-73.90898351,graffiti 40.66860702,-73.90922145,graffiti 40.69355391,-73.92813396,graffiti 40.7222615,-73.94300984,graffiti 40.84626367,-73.89962137,graffiti 40.84928198,-73.89862281,graffiti 40.66485381,-73.92275084,graffiti 40.70916242,-73.77581713,graffiti 40.85203388,-73.8677744,graffiti 40.67194281,-73.91394659,graffiti 40.7486492,-73.87612531,graffiti 40.73613172,-73.89103328,graffiti 40.747388,-73.9033902,graffiti 40.83655994,-73.92731453,graffiti 40.84961078,-73.89798253,graffiti 40.66933739,-73.91311003,graffiti 40.78500125,-73.974719,graffiti 40.84710219,-73.86825407,graffiti 40.85040634,-73.89752949,graffiti 40.75299988,-73.79237359,graffiti 40.85241217,-73.86736157,graffiti 40.63073521,-73.96636151,graffiti 40.70996651,-73.77295047,graffiti 40.61979096,-73.99322802,graffiti 40.77749325,-73.90782011,graffiti 40.85519675,-73.93707962,graffiti 40.83679821,-73.92230545,graffiti 40.85555864,-73.89501643,graffiti 40.6688895,-73.91615304,graffiti 40.85328408,-73.89589841,graffiti 40.66177712,-73.94744445,graffiti 40.74134632,-73.92072068,graffiti 40.84843937,-73.89864578,graffiti 40.85357807,-73.93835355,graffiti 40.62187176,-73.9646369,graffiti 40.83382036,-73.92674656,graffiti 40.70847926,-73.78023791,graffiti 40.59609654,-73.9811424,graffiti 40.83941459,-73.86381683,graffiti 40.83655119,-73.91833411,graffiti 40.57548313,-74.0957852,graffiti 40.62323826,-73.99085735,graffiti 40.85113199,-73.90189486,graffiti 40.84661166,-73.89586186,graffiti 40.6079006,-73.99481748,graffiti 40.60723362,-73.99493637,graffiti 40.8352348,-73.91986797,graffiti 40.83840435,-73.86365989,graffiti 40.83405779,-73.92462866,graffiti 40.84473686,-73.88977831,graffiti 40.60786766,-73.99484989,graffiti 40.8467413,-73.89656647,graffiti 40.82835153,-73.85334974,graffiti 40.85380752,-73.90787702,graffiti 40.83570354,-73.9230042,graffiti 40.60790883,-73.99480667,graffiti 40.84059802,-73.86421196,graffiti 40.89600782,-73.86641732,graffiti 40.71716485,-73.99887089,graffiti 40.78484802,-73.8412402,graffiti 40.85381642,-73.90870841,graffiti 40.66651802,-73.9240574,graffiti 40.60791707,-73.99479947,graffiti 40.81669717,-73.92012874,graffiti 40.60340359,-74.13152792,graffiti 40.60791707,-73.99479947,graffiti 40.6078979,-73.99603477,graffiti 40.81671093,-73.92018291,graffiti 40.85319098,-73.90573432,graffiti 40.60784296,-73.9948751,graffiti 40.60785119,-73.9948643,graffiti 40.78484253,-73.84124021,graffiti 40.84646974,-73.89372959,graffiti 40.83562259,-73.92100585,graffiti 40.83680082,-73.91813866,graffiti 40.62346335,-73.99119234,graffiti 40.62371865,-73.99161378,graffiti 40.8351908,-73.91974516,graffiti 40.60788413,-73.99483188,graffiti 40.57628371,-74.1625082,graffiti 40.84513833,-73.89055473,graffiti 40.66146493,-73.91253998,graffiti 40.71787861,-73.94998313,graffiti 40.83590036,-73.92181141,graffiti 40.66019278,-73.90734785,graffiti 40.84511083,-73.89050056,graffiti 40.83520608,-73.86308824,graffiti 40.84021278,-73.86338151,graffiti 40.60785943,-73.99485709,graffiti 40.75470275,-73.93460825,graffiti 40.85233793,-73.90986353,graffiti 40.81672739,-73.92017567,graffiti 40.85045874,-73.90095967,graffiti 40.6078759,-73.99483909,graffiti 40.85288017,-73.90493228,graffiti 40.71639353,-73.99651531,graffiti 40.84737388,-73.90117752,graffiti 40.72309621,-73.99580064,graffiti 40.84782728,-73.86629721,graffiti 40.72351349,-73.99977632,graffiti 40.68745051,-73.85821372,graffiti 40.68770782,-73.85544753,graffiti 40.84688276,-73.91520219,graffiti 40.62949371,-74.13079757,graffiti 40.7379305,-73.91878697,graffiti 40.69916382,-73.93199759,graffiti 40.68806848,-73.85631575,graffiti 40.67150883,-73.82618548,graffiti 40.84152425,-73.91045644,graffiti 40.60563316,-74.00907541,graffiti 40.72891767,-73.89606744,graffiti 40.8456801,-73.91455675,graffiti 40.72184998,-73.99343411,graffiti 40.71980763,-73.99006849,graffiti 40.71975823,-73.99009375,graffiti 40.61406827,-73.99917879,graffiti 40.72082875,-73.9908115,graffiti 40.72108938,-73.98942254,graffiti 40.71985704,-73.99004323,graffiti 40.72213268,-73.9933511,graffiti 40.69791735,-73.92694277,graffiti 40.59187019,-73.9541498,graffiti 40.74497472,-73.90934475,graffiti 40.75304432,-73.93355234,graffiti 40.59493034,-73.9698687,graffiti 40.62110032,-74.02558275,graffiti 40.62484719,-74.02454309,graffiti 40.75316307,-73.93481188,graffiti 40.75303883,-73.93354152,graffiti 40.63552407,-74.02613593,graffiti 40.89978312,-73.86759259,graffiti 40.75316307,-73.93481188,graffiti 40.75303333,-73.9335307,graffiti 40.62084516,-74.02512517,graffiti 40.63468958,-74.02647067,graffiti 40.75302784,-73.93351988,graffiti 40.75158236,-73.9459299,graffiti 40.63468134,-74.02647427,graffiti 40.63465115,-74.02648867,graffiti 40.59187019,-73.9541498,graffiti 40.82884667,-73.86087906,graffiti 40.80990963,-73.85543861,graffiti 40.72007136,-73.99325751,graffiti 40.86588042,-73.86735639,graffiti 40.71863865,-73.95606834,graffiti 40.8347147,-73.8630242,graffiti 40.80970921,-73.85539208,graffiti 40.83204873,-73.86231419,graffiti 40.61487441,-73.95435372,graffiti 40.58678143,-73.97141692,graffiti 40.61168549,-73.97355286,graffiti 40.8440032,-73.86569047,graffiti 40.83111779,-73.86190417,graffiti 40.72205322,-73.99649337,graffiti 40.6428102,-74.01859695,graffiti 40.69295521,-73.9862212,graffiti 40.86422327,-73.9264383,graffiti 40.63490678,-73.94989039,graffiti 40.69313088,-73.98623198,graffiti 40.86564342,-73.91991087,graffiti 40.63526375,-73.950236,graffiti 40.85089485,-73.86779835,graffiti 40.7646236,-73.91189551,graffiti 40.80994258,-73.85544576,graffiti 40.83694875,-73.87000884,graffiti 40.81495318,-73.85663068,graffiti 40.71863865,-73.95606834,graffiti 40.86499209,-73.92692915,graffiti 40.85954175,-73.89870117,graffiti 40.70727878,-73.94492707,graffiti 40.84774049,-73.86719377,graffiti 40.87648681,-73.84803287,graffiti 40.86677515,-73.86732207,graffiti 40.72616612,-73.72624535,graffiti 40.71239746,-73.93889173,graffiti 40.63846997,-73.95095784,graffiti 40.77795677,-73.80919016,graffiti 40.71754609,-73.99188335,graffiti 40.76066548,-73.90813218,graffiti 40.71433208,-73.99348535,graffiti 40.87213535,-73.86714505,graffiti 40.86506622,-73.92695438,graffiti 40.83083493,-73.86177829,graffiti 40.62440907,-73.94627429,graffiti 40.70729738,-73.94366826,graffiti 40.70796143,-73.94329259,graffiti 40.73969884,-73.89282453,graffiti 40.86421776,-73.926413,graffiti 40.86549787,-73.91979174,graffiti 40.72717046,-73.97969822,graffiti 40.83789949,-73.9420832,graffiti 40.67041037,-73.99522718,graffiti 40.72276839,-73.98290679,graffiti 40.83670344,-73.94337439,graffiti 40.73952089,-73.99898959,graffiti 40.72488161,-73.98134047,graffiti 40.84259441,-73.93960339,graffiti 40.88657862,-73.82633202,graffiti 40.88442285,-73.83296301,graffiti 40.72355119,-73.98710959,graffiti 40.71914062,-73.96297635,graffiti 40.73103817,-73.98181862,graffiti 40.74024277,-73.99958862,graffiti 40.64428814,-73.99237512,graffiti 40.86727173,-73.92092849,graffiti 40.85528755,-73.93749524,graffiti 40.70617976,-73.75731707,graffiti 40.88248141,-73.83613582,graffiti 40.65044813,-73.95766287,graffiti 40.73314408,-73.98680825,graffiti 40.86493807,-73.92832114,graffiti 40.72894882,-73.97836993,graffiti 40.70704234,-73.75249879,graffiti 40.72890217,-73.97843128,graffiti 40.72895706,-73.97838797,graffiti 40.85727455,-73.93232757,graffiti 40.64210108,-73.95721775,graffiti 40.83435116,-73.82552155,graffiti 40.88267323,-73.83592198,graffiti 40.70617974,-73.75730625,graffiti 40.72277419,-73.98517963,graffiti 40.73978988,-73.99879112,graffiti 40.83624227,-73.94327359,graffiti 40.73797559,-73.99832926,graffiti 40.64420933,-73.95791546,graffiti 40.72979704,-73.97887478,graffiti 40.64526611,-73.9580229,graffiti 40.73759954,-73.99743437,graffiti 40.73654547,-73.99487964,graffiti 40.72898724,-73.97834105,graffiti 40.84360969,-73.93910371,graffiti 40.73795637,-73.99823544,graffiti 40.73109034,-73.9819485,graffiti 40.85751875,-73.93219718,graffiti 40.73865904,-73.99961749,graffiti 40.85474384,-73.93701498,graffiti 40.76960117,-73.90331826,graffiti 40.72237319,-73.98319551,graffiti 40.72786479,-73.97918929,graffiti 40.85862692,-73.8656284,graffiti 40.72983823,-73.97896858,graffiti 40.72727749,-73.97962242,graffiti 40.86753295,-73.92163321,graffiti 40.73299583,-73.98649797,graffiti 40.84442752,-73.93892224,graffiti 40.72906134,-73.97828691,graffiti 40.67226571,-73.99266392,graffiti 40.65418995,-73.95955979,graffiti 40.85688768,-73.93255209,graffiti 40.72279616,-73.98523374,graffiti 40.8872022,-73.82486928,graffiti 40.72316628,-73.98227895,graffiti 40.72276015,-73.98288876,graffiti 40.72775775,-73.97924344,graffiti 40.6258024,-74.07514696,graffiti 40.67046499,-73.9907175,graffiti 40.64026962,-73.95542091,graffiti 40.83869242,-73.94150427,graffiti 40.70617969,-73.75728461,graffiti 40.73112604,-73.98203148,graffiti 40.72722535,-73.97965852,graffiti 40.73082949,-73.98130994,graffiti 40.64437324,-73.99251204,graffiti 40.72304325,-73.98571351,graffiti 40.65360232,-73.95886458,graffiti 40.83344275,-73.94343137,graffiti 40.86435404,-73.92926899,graffiti 40.72252688,-73.98308363,graffiti 40.86706853,-73.92079857,graffiti 40.86661033,-73.92104135,graffiti 40.72464285,-73.98153896,graffiti 40.72988216,-73.97906237,graffiti 40.72738178,-73.97954301,graffiti 40.6732335,-73.982422,graffiti 40.722214,-73.98328935,graffiti 40.64386001,-73.99313909,graffiti 40.7070342,-73.7525421,graffiti 40.73793716,-73.99819575,graffiti 40.66767378,-73.99419643,graffiti 40.78222524,-73.95358181,graffiti 40.88506487,-73.82538484,graffiti 40.70848386,-73.95131031,graffiti 40.63776765,-74.03261516,graffiti 40.83273085,-73.86351613,graffiti 40.67919532,-73.98353087,graffiti 40.80803893,-73.94612968,graffiti 40.84483147,-73.88005929,graffiti 40.70729023,-73.93057181,graffiti 40.71821406,-73.95835213,graffiti 40.73658479,-73.89417187,graffiti 40.67282257,-73.98860105,graffiti 40.84457022,-73.87957906,graffiti 40.67832297,-73.98742118,graffiti 40.6789475,-73.97873226,graffiti 40.62735832,-74.00728071,graffiti 40.81826491,-73.91695838,graffiti 40.68068531,-73.98081563,graffiti 40.72702905,-73.94865576,graffiti 40.71462087,-73.93918548,graffiti 40.80989084,-73.95051725,graffiti 40.71654225,-73.94472822,graffiti 40.67428828,-73.9886729,graffiti 40.72160865,-73.9384648,graffiti 40.68340209,-73.96647195,graffiti 40.83213478,-73.87521824,graffiti 40.83159083,-73.86739585,graffiti 40.87403086,-73.85269214,graffiti 40.85135235,-73.89348684,graffiti 40.70729918,-73.95389367,graffiti 40.63773749,-74.03251426,graffiti 40.80930835,-73.94913776,graffiti 40.6787755,-73.98445393,graffiti 40.72160317,-73.93848284,graffiti 40.6785523,-73.97899917,graffiti 40.68973521,-73.87075379,graffiti 40.85296585,-73.89607964,graffiti 40.69079631,-73.86975289,graffiti 40.87553244,-73.85073619,graffiti 40.83214811,-73.88001711,graffiti 40.83074835,-73.87489201,graffiti 40.6769642,-73.98642279,graffiti 40.80725855,-73.94428805,graffiti 40.84756784,-73.88536399,graffiti 40.68119793,-73.97723168,graffiti 40.63178547,-74.00981754,graffiti 40.83097347,-73.87494579,graffiti 40.8299381,-73.94415343,graffiti 40.83254572,-73.86956574,graffiti 40.83461706,-73.87118425,graffiti 40.67965357,-73.98265465,graffiti 40.72457123,-73.98004175,graffiti 40.87572477,-73.85303914,graffiti 40.69074164,-73.86995853,graffiti 40.62801153,-74.00799408,graffiti 40.72446313,-74.00296198,graffiti 40.73572967,-73.98706033,graffiti 40.86108591,-73.92617064,graffiti 40.72981901,-73.97892168,graffiti 40.73843809,-73.9822388,graffiti 40.86542188,-73.92103915,graffiti 40.86111875,-73.92603322,graffiti 40.72980802,-73.97890003,graffiti 40.73564893,-73.9792915,graffiti 40.8655643,-73.92060513,graffiti 40.73800827,-73.99216953,graffiti 40.86460819,-73.92323827,graffiti 40.73209766,-73.98189411,graffiti 40.86238729,-73.92259008,graffiti 40.71136228,-73.9560551,graffiti 40.73520276,-73.98789757,graffiti 40.70807711,-73.95688685,graffiti 40.84261393,-73.84559477,graffiti 40.80724206,-73.94424833,graffiti 40.86195246,-73.92498388,graffiti 40.80555477,-73.94019328,graffiti 40.83490684,-73.86303464,graffiti 40.82441231,-73.87629862,graffiti 40.74127292,-73.9792284,graffiti 40.73687118,-73.98456306,graffiti 40.87669735,-73.84743213,graffiti 40.67412964,-74.00077509,graffiti 40.62727872,-74.00733474,graffiti 40.80664027,-73.94281839,graffiti 40.73514513,-73.98791562,graffiti 40.86229844,-73.92520402,graffiti 40.86201011,-73.92499827,graffiti 40.7385134,-73.99362372,graffiti 40.73734943,-73.99082726,graffiti 40.73248486,-73.98317131,graffiti 40.73693372,-73.98068396,graffiti 40.74035798,-73.99622176,graffiti 40.71455281,-73.9590903,graffiti 40.7121586,-73.95694193,graffiti 40.72864646,-73.97617636,graffiti 40.71875524,-73.95247523,graffiti 40.68466402,-74.00395897,graffiti 40.86243572,-73.92526894,graffiti 40.73470851,-73.98615844,graffiti 40.71470075,-73.95830022,graffiti 40.86392871,-73.92507565,graffiti 40.74373935,-73.99274988,graffiti 40.74333329,-73.9961855,graffiti 40.86447905,-73.91902289,graffiti 40.86385196,-73.92523119,graffiti 40.76293073,-73.96404941,graffiti 40.73510643,-73.98557742,graffiti 40.73771455,-73.99175459,graffiti 40.73571868,-73.98702785,graffiti 40.73800278,-73.99215149,graffiti 40.7174554,-73.96316127,graffiti 40.86405924,-73.91921502,graffiti 40.8611818,-73.92590301,graffiti 40.86272679,-73.9254783,graffiti 40.74018779,-73.99581399,graffiti 40.8661232,-73.91913658,graffiti 40.7350737,-73.98731665,graffiti 40.7076787,-73.95576177,graffiti 40.86208426,-73.92506688,graffiti 40.73766245,-73.99240052,graffiti 40.71297166,-73.94545262,graffiti 40.86345037,-73.91986651,graffiti 40.73818672,-73.9928407,graffiti 40.68559168,-73.95610454,graffiti 40.74387661,-73.99307466,graffiti 40.72446313,-74.00296198,graffiti 40.73576005,-73.9889439,graffiti 40.86535061,-73.92118024,graffiti 40.71245652,-73.95369893,graffiti 40.76416947,-73.77126396,graffiti 40.73822516,-73.99293091,graffiti 40.66182185,-73.99291738,graffiti 40.80679415,-73.94318671,graffiti 40.72933847,-73.97782499,graffiti 40.72502032,-73.99713179,graffiti 40.74396918,-73.93183637,graffiti 40.83678455,-73.9265879,graffiti 40.8284734,-73.88046818,graffiti 40.64285631,-74.02173909,graffiti 40.82853594,-73.87989715,graffiti 40.7015217,-73.94226659,graffiti 40.83400424,-73.8780768,graffiti 40.71655788,-73.94300029,graffiti 40.76948611,-73.79003692,graffiti 40.82968783,-73.87392559,graffiti 40.66653628,-73.98259679,graffiti 40.83235751,-73.8589059,graffiti 40.63727217,-74.01130641,graffiti 40.82845983,-73.88061636,graffiti 40.73323192,-73.8840344,graffiti 40.8292713,-73.87453344,graffiti 40.84231636,-73.92423259,graffiti 40.72259395,-73.99701645,graffiti 40.71663419,-73.94191802,graffiti 40.82865243,-73.87844073,graffiti 40.82802319,-73.8752115,graffiti 40.66322759,-73.76842014,graffiti 40.63976708,-74.01227249,graffiti 40.72358205,-73.99657627,graffiti 40.83870934,-73.92776755,graffiti 40.7244659,-74.00173534,graffiti 40.8284519,-73.88090906,graffiti 40.64061286,-74.00782985,graffiti 40.88180098,-73.86378064,graffiti 40.63892194,-74.00956276,graffiti 40.82911365,-73.87595744,graffiti 40.8579869,-73.86756373,graffiti 40.84515143,-73.86650138,graffiti 40.8595963,-73.86605664,graffiti 40.83194612,-73.86607617,graffiti 40.83677355,-73.92655178,graffiti 40.82841124,-73.88140778,graffiti 40.64282064,-74.02167782,graffiti 40.5790326,-73.98440155,graffiti 40.82660053,-73.87438672,graffiti 40.64025296,-74.01176452,graffiti 40.83232799,-73.87621886,graffiti 40.88803004,-73.8603212,graffiti 40.72276962,-73.9969479,graffiti 40.87937641,-73.86525739,graffiti 40.63893292,-74.00957718,graffiti 40.82835438,-73.88216309,graffiti 40.64058816,-74.00785507,graffiti 40.83733951,-73.92742571,graffiti 40.72468814,-73.99502847,graffiti 40.61236798,-73.98296388,graffiti 40.74312889,-73.91854607,graffiti 40.84096829,-73.92359081,graffiti 40.84702639,-73.86678677,graffiti 40.63951761,-74.00896832,graffiti 40.82838394,-73.88154875,graffiti 40.83097402,-73.86805113,graffiti 40.85009077,-73.86790477,graffiti 40.63671492,-74.01185758,graffiti 40.83849131,-73.92588491,graffiti 40.82864159,-73.87857083,graffiti 40.83182858,-73.86648836,graffiti 40.84334257,-73.92376157,graffiti 40.63920708,-74.01288132,graffiti 40.7203724,-73.9416009,graffiti 40.82896346,-73.87927125,graffiti 40.67027118,-73.82097248,graffiti 40.63413364,-74.12218853,graffiti 40.67508373,-73.80959625,graffiti 40.67027118,-73.82097248,graffiti 40.74417042,-73.94952311,graffiti 40.72360132,-73.9999531,graffiti 40.67508373,-73.80959625,graffiti 40.72192975,-73.99858941,graffiti 40.72349426,-74.0016812,graffiti 40.59438249,-73.96415816,graffiti 40.71923707,-73.99552671,graffiti 40.70870378,-73.9521181,graffiti 40.84698607,-73.82800405,graffiti 40.72290413,-73.99778849,graffiti 40.70783441,-73.9538933,graffiti 40.84684045,-73.82790684,graffiti 40.8526398,-73.82775809,graffiti 40.71012087,-73.7705116,graffiti 40.71329835,-73.7645957,graffiti 40.73948512,-73.99530162,graffiti 40.69496141,-73.85261538,graffiti 40.74754944,-73.82956003,graffiti 40.72147791,-73.98015451,graffiti 40.71338974,-73.76231924,graffiti 40.71290429,-73.76788683,graffiti 40.72243032,-73.98004961,graffiti 40.74638785,-73.99025219,graffiti 40.71254884,-73.76856621,graffiti 40.7226142,-73.97991607,graffiti 40.74532951,-73.97839709,graffiti 40.74233556,-73.98174697,graffiti 40.73960863,-73.99521139,graffiti 40.85609861,-73.86762533,graffiti 40.74625885,-73.99034604,graffiti 40.82860887,-73.87877324,graffiti 40.73945495,-73.99586817,graffiti 40.7390844,-73.99559394,graffiti 40.72148889,-73.98017976,graffiti 40.72132981,-73.98087247,graffiti 40.74206643,-73.98080156,graffiti 40.73571665,-73.99805147,graffiti 40.82893311,-73.87653232,graffiti 40.82882377,-73.87695168,graffiti 40.73784929,-73.99646728,graffiti 40.73697099,-73.99713489,graffiti 40.71607908,-73.95959799,graffiti 40.7462862,-73.9891623,graffiti 40.72187046,-73.98045383,graffiti 40.71259533,-73.76847947,graffiti 40.72117887,-73.98098435,graffiti 40.72213934,-73.97980798,graffiti 40.71699148,-73.94868153,graffiti 40.71344462,-73.76098799,graffiti 40.73687492,-73.99720345,graffiti 40.73780812,-73.99649976,graffiti 40.72243033,-73.98007486,graffiti 40.63378613,-74.01284064,graffiti 40.71368423,-73.75485128,graffiti 40.71329298,-73.76465704,graffiti 40.7471157,-73.81527307,graffiti 40.82000985,-73.91598793,graffiti 40.63829887,-74.00963474,graffiti 40.74719393,-73.83044514,graffiti 40.82262612,-73.90273177,graffiti 40.59245835,-73.99449101,graffiti 40.72285295,-73.97965985,graffiti 40.72860182,-73.98984709,graffiti 40.6375963,-74.00846724,graffiti 40.81305095,-73.90086361,graffiti 40.63322095,-74.01035817,graffiti 40.84088466,-73.87497414,graffiti 40.89884975,-73.86743891,graffiti 40.84090114,-73.86523774,graffiti 40.8554125,-73.86767731,graffiti 40.74718557,-73.83035855,graffiti 40.84053486,-73.86653232,graffiti 40.814005,-73.89957971,graffiti 40.84556285,-73.86625477,graffiti 40.85548383,-73.86765186,graffiti 40.74795129,-73.83219,graffiti 40.89187952,-73.85263812,graffiti 40.72553423,-73.97780461,graffiti 40.83966493,-73.86904943,graffiti 40.8469994,-73.86482057,graffiti 40.82330239,-73.89457955,graffiti 40.85575831,-73.86766216,graffiti 40.89266488,-73.85511035,graffiti 40.7237641,-73.97907873,graffiti 40.63748378,-74.00824383,graffiti 40.82320691,-73.88934427,graffiti 40.64190187,-74.01733914,graffiti 40.72388211,-73.9789921,graffiti 40.84106131,-73.87335831,graffiti 40.70215311,-73.91575055,graffiti 40.85487179,-73.86767838,graffiti 40.88418882,-73.85693704,graffiti 40.84133353,-73.87634305,graffiti 40.85437777,-73.86769744,graffiti 40.85565951,-73.86766597,graffiti 40.8220185,-73.88939683,graffiti 40.72620386,-73.97729928,graffiti 40.63765942,-74.00857534,graffiti 40.81304279,-73.90095755,graffiti 40.75412797,-73.93264531,graffiti 40.89644176,-73.87149488,graffiti 40.84431171,-73.86903667,graffiti 40.85528073,-73.86765949,graffiti 40.72440629,-73.97860951,graffiti 40.71890949,-73.98453115,graffiti 40.72426358,-73.97871419,graffiti 40.63787623,-74.00893207,graffiti 40.74724092,-73.82881375,graffiti 40.89392961,-73.85908265,graffiti 40.82462195,-73.91359739,graffiti 40.81625181,-73.90811687,graffiti 40.8398429,-73.86867322,graffiti 40.63789544,-74.0089681,graffiti 40.8178971,-73.91692993,graffiti 40.72604479,-73.97795957,graffiti 40.83949789,-73.86939671,graffiti 40.84047973,-73.87616755,graffiti 40.66119533,-73.91539138,graffiti 40.85584337,-73.86763669,graffiti 40.60567639,-73.98455018,graffiti 40.84038452,-73.86707112,graffiti 40.81644672,-73.91915359,graffiti 40.85446599,-73.86804429,graffiti 40.63955305,-74.01171035,graffiti 40.81572213,-73.9081754,graffiti 40.85590652,-73.86765463,graffiti 40.73146623,-73.94626374,graffiti 40.81757302,-73.90595457,graffiti 40.73313558,-73.82513349,graffiti 40.82937675,-73.85890861,graffiti 40.77762856,-73.90885619,graffiti 40.71374488,-73.9991487,graffiti 40.71093679,-74.00690027,graffiti 40.87394984,-73.88808828,graffiti 40.75560203,-73.99099439,graffiti 40.8197541,-73.90149673,graffiti 40.77760114,-73.90888872,graffiti 40.80739991,-73.91886837,graffiti 40.81548486,-73.90332024,graffiti 40.81807227,-73.90229766,graffiti 40.81577816,-73.90286823,graffiti 40.74239739,-74.00058823,graffiti 40.80733115,-73.91866256,graffiti 40.74756572,-73.99682406,graffiti 40.84754975,-73.88931823,graffiti 40.70996782,-74.00797866,graffiti 40.71609165,-73.99920278,graffiti 40.86992679,-73.83395035,graffiti 40.72252483,-73.98879818,graffiti 40.63434226,-74.119566,graffiti 40.87225237,-73.88963508,graffiti 40.80578552,-73.91438401,graffiti 40.71539449,-73.99954187,graffiti 40.70993683,-73.81632113,graffiti 40.77752436,-73.9089827,graffiti 40.61054788,-73.98103027,graffiti 40.73313558,-73.82513349,graffiti 40.84278322,-73.89332346,graffiti 40.81501695,-73.90844371,graffiti 40.81568207,-73.90283947,graffiti 40.77768066,-73.90879112,graffiti 40.8101301,-73.9177163,graffiti 40.74495824,-73.99871885,graffiti 40.65637461,-73.89440364,graffiti 40.80995999,-73.91781404,graffiti 40.74308866,-73.92821405,graffiti 40.71527646,-73.99959238,graffiti 40.74678897,-73.9973907,graffiti 40.63472639,-73.97898774,graffiti 40.74876514,-73.99594699,graffiti 40.86355823,-73.89369144,graffiti 40.8090656,-73.91836061,graffiti 40.77757646,-73.90892125,graffiti 40.80783645,-73.91904846,graffiti 40.71648141,-73.99898634,graffiti 40.7188985,-73.98443735,graffiti 40.71616302,-73.99918114,graffiti 40.79903661,-73.94130435,graffiti 40.86142018,-73.92527008,graffiti 40.71806486,-73.99200233,graffiti 40.72126979,-73.98318135,graffiti 40.7163277,-73.99905488,graffiti 40.7177385,-73.99820351,graffiti 40.80412066,-73.93761914,graffiti 40.79896635,-73.94349678,graffiti 40.72386712,-73.98988389,graffiti 40.79404326,-73.93995442,graffiti 40.71880889,-73.99581894,graffiti 40.72047227,-74.00209599,graffiti 40.86500306,-73.92691468,graffiti 40.71872105,-73.99557003,graffiti 40.71886654,-73.99593438,graffiti 40.80178519,-73.94352329,graffiti 40.72270927,-74.00022728,graffiti 40.71965636,-73.98698408,graffiti 40.72186114,-74.00091634,graffiti 40.71864694,-73.99536441,graffiti 40.71609989,-73.99922082,graffiti 40.72158009,-73.98420584,graffiti 40.71892321,-73.98452032,graffiti 40.79973493,-73.93826977,graffiti 40.71780164,-73.99967173,graffiti 40.72359033,-74.00159822,graffiti 40.72279376,-73.98820648,graffiti 40.65992531,-73.99491796,graffiti 40.71834497,-73.99443011,graffiti 40.71946965,-73.98637445,graffiti 40.80558777,-73.94031245,graffiti 40.80037041,-73.94666322,graffiti 40.71859762,-74.00075035,graffiti 40.83184251,-73.88447684,graffiti 40.71735973,-73.99841636,graffiti 40.8669056,-73.92339108,graffiti 40.71826536,-73.99423531,graffiti 40.80525765,-73.93887511,graffiti 40.86958974,-73.91529255,graffiti 40.60174676,-73.97433104,graffiti 40.80477929,-73.95509401,graffiti 40.71662414,-73.9988709,graffiti 40.72014161,-73.98260083,graffiti 40.86128591,-73.92561729,graffiti 40.63391115,-74.11707203,graffiti 40.80443755,-73.9516519,graffiti 40.71622615,-73.99914146,graffiti 40.71987041,-73.98661968,graffiti 40.71836968,-73.99450586,graffiti 40.71898637,-73.98478365,graffiti 40.8029738,-73.93843292,graffiti 40.71832027,-73.99440846,graffiti 40.86149192,-73.93025537,graffiti 40.63108454,-74.11654828,graffiti 40.7502493,-73.89540616,graffiti 40.86743073,-73.91675236,graffiti 40.77932835,-73.95069884,graffiti 40.71882407,-73.98224042,graffiti 40.70824593,-73.9413879,graffiti 40.72254115,-73.98739479,graffiti 40.72128352,-73.98323547,graffiti 40.86270554,-73.92657375,graffiti 40.80671453,-73.93781177,graffiti 40.72421592,-73.99285663,graffiti 40.89639579,-73.89680027,graffiti 40.72138078,-74.00242431,graffiti 40.71897538,-73.98468986,graffiti 40.81370791,-73.94859973,graffiti 40.80826217,-73.92348748,graffiti 40.80487051,-73.93862261,graffiti 40.80264853,-73.95295352,graffiti 40.72396869,-73.99007508,graffiti 40.71673667,-73.99882761,graffiti 40.86833894,-73.91636074,graffiti 40.71654454,-73.99894665,graffiti 40.79741128,-73.94042091,graffiti 40.72167594,-73.98265093,graffiti 40.7213,-73.98328597,graffiti 40.80892752,-73.94465512,graffiti 40.72136316,-73.98349519,graffiti 40.71628928,-73.99910177,graffiti 40.72181173,-74.00098488,graffiti 40.71904776,-74.00137445,graffiti 40.80322427,-73.93471951,graffiti 40.71732954,-73.99894303,graffiti 40.82585851,-73.94224905,graffiti 40.72137532,-74.00021646,graffiti 40.71822697,-73.99492073,graffiti 40.79813148,-73.9425476,graffiti 40.71635515,-73.99906209,graffiti 40.72472378,-73.99429248,graffiti 40.72001057,-73.98816729,graffiti 40.71829281,-73.99432189,graffiti 40.72038313,-73.98247811,graffiti 40.63097475,-74.11655169,graffiti 40.71888719,-73.98220794,graffiti 40.71622614,-73.99813862,graffiti 40.71892693,-73.99616165,graffiti 40.8144899,-73.94802833,graffiti 40.81125696,-73.94295531,graffiti 40.79408416,-73.94492027,graffiti 40.81410952,-73.94458939,graffiti 40.72436417,-73.99328594,graffiti 40.71845081,-73.98241368,graffiti 40.57548313,-74.0957852,graffiti 40.72620884,-73.99941553,graffiti 40.86486569,-73.92248958,graffiti 40.60273146,-73.98639107,graffiti 40.80865485,-73.94854583,graffiti 40.71701221,-73.98028571,graffiti 40.86375473,-73.91943231,graffiti 40.81019032,-73.92141534,graffiti 40.71742011,-73.99840192,graffiti 40.80468724,-73.9514675,graffiti 40.71911088,-74.00146464,graffiti 40.64084632,-73.97433402,graffiti 40.72187666,-73.98517983,graffiti 40.63412519,-74.11711564,graffiti 40.71930764,-73.98578286,graffiti 40.71972226,-73.98720774,graffiti 40.71765215,-73.98284678,graffiti 40.87933871,-73.90450752,graffiti 40.72299472,-74.00104984,graffiti 40.71899281,-73.99629512,graffiti 40.71890771,-73.99605342,graffiti 40.79530771,-73.94366602,graffiti 40.79877851,-73.93596633,graffiti 40.71853069,-73.98439776,graffiti 40.71772351,-73.98280708,graffiti 40.8961158,-73.89676092,graffiti 40.79531221,-73.94167602,graffiti 40.84379013,-73.93775904,graffiti 40.83327172,-73.94172224,graffiti 40.63653132,-74.0084707,graffiti 40.84742555,-73.93536288,graffiti 40.84821207,-73.93323679,graffiti 40.70476695,-73.79434521,graffiti 40.70665367,-73.7980436,graffiti 40.84939964,-73.93654292,graffiti 40.85290948,-73.93065476,graffiti 40.66291914,-73.95433165,graffiti 40.70476695,-73.79434521,graffiti 40.85328286,-73.93082065,graffiti 40.72374083,-73.98954117,graffiti 40.85195695,-73.93046056,graffiti 40.84062574,-73.93825352,graffiti 40.8073135,-73.94441444,graffiti 40.67671184,-73.90519062,graffiti 40.84572833,-73.9385813,graffiti 40.84809759,-73.93463571,graffiti 40.84587104,-73.93855948,graffiti 40.84133634,-73.93773242,graffiti 40.7183368,-73.99588391,graffiti 40.8552033,-73.92941609,graffiti 40.84220908,-73.91228429,graffiti 40.80689855,-73.94338529,graffiti 40.80440912,-73.94936545,graffiti 40.63606982,-74.01255644,graffiti 40.85585323,-73.93308091,graffiti 40.71061303,-73.80686162,graffiti 40.85701822,-73.93052396,graffiti 40.66113312,-73.73405978,graffiti 40.67671184,-73.90519062,graffiti 40.85598483,-73.92827295,graffiti 40.85438041,-73.93027367,graffiti 40.84857828,-73.93056169,graffiti 40.84343416,-73.93432586,graffiti 40.84890345,-73.93275898,graffiti 40.64841927,-73.97477075,graffiti 40.84957408,-73.93435233,graffiti 40.83771099,-73.93849835,graffiti 40.76598964,-73.9263302,graffiti 40.85390014,-73.93036816,graffiti 40.85262606,-73.92948027,graffiti 40.85415967,-73.92838336,graffiti 40.7052507,-73.79471882,graffiti 40.71060149,-73.95478954,graffiti 40.85584803,-73.92896716,graffiti 40.70406123,-73.94942725,graffiti 40.80552454,-73.94012106,graffiti 40.84304311,-73.9369104,graffiti 40.83826245,-73.9380714,graffiti 40.84828414,-73.93447649,graffiti 40.85236748,-73.93312418,graffiti 40.80734923,-73.94449749,graffiti 40.85497849,-73.92983204,graffiti 40.71061303,-73.80686162,graffiti 40.7055225,-73.79475766,graffiti 40.85583978,-73.92894909,graffiti 40.84436903,-73.93733563,graffiti 40.85274513,-73.93121522,graffiti 40.8442409,-73.93896579,graffiti 40.84821759,-73.933291,graffiti 40.80627476,-73.94190482,graffiti 40.83878665,-73.93799502,graffiti 40.71066163,-73.95417991,graffiti 40.85149459,-73.92841515,graffiti 40.80545859,-73.93996941,graffiti 40.76721861,-73.92964652,graffiti 40.80617036,-73.94170263,graffiti 40.85207093,-73.9329076,graffiti 40.8354351,-73.93751389,graffiti 40.84576676,-73.93859211,graffiti 40.85670398,-73.9283264,graffiti 40.84895251,-73.93216615,graffiti 40.85622365,-73.93288172,graffiti 40.84913909,-73.93205391,graffiti 40.84700716,-73.93819338,graffiti 40.68171613,-73.92880652,graffiti 40.68149653,-73.92876709,graffiti 40.68130941,-73.92801375,graffiti 40.67324952,-73.85205771,graffiti 40.72287943,-74.00205278,graffiti 40.71945948,-74.00044372,graffiti 40.74671923,-73.98373432,graffiti 40.74599743,-73.98423253,graffiti 40.74698814,-73.98320734,graffiti 40.83853807,-73.92187336,graffiti 40.74549529,-73.98536585,graffiti 40.68146085,-73.92878155,graffiti 40.6397182,-73.99445829,graffiti 40.66993153,-73.98234717,graffiti 40.85446291,-73.86537293,graffiti 40.71350055,-73.95633145,graffiti 40.82982183,-73.8505352,graffiti 40.73495481,-73.95249615,graffiti 40.81442924,-73.91900431,graffiti 40.8279348,-73.890901,graffiti 40.82713884,-73.89091315,graffiti 40.82005851,-73.81784534,graffiti 40.80815243,-73.92356708,graffiti 40.81506019,-73.91852306,graffiti 40.67883552,-73.88342595,graffiti 40.62795123,-74.00663231,graffiti 40.82696274,-73.89638764,graffiti 40.71843657,-73.87261369,graffiti 40.63860005,-74.01628977,graffiti 40.8300421,-73.82561596,graffiti 40.82884401,-73.89461051,graffiti 40.81203705,-73.92073762,graffiti 40.75525038,-73.81998972,graffiti 40.80811677,-73.92359602,graffiti 40.82258068,-73.89177331,graffiti 40.82532455,-73.89683462,graffiti 40.82833166,-73.89561585,graffiti 40.88354816,-73.91021902,graffiti 40.83595193,-73.83335213,graffiti 40.85083838,-73.84452382,graffiti 40.83305484,-73.88922309,graffiti 40.87157489,-73.84886126,graffiti 40.82006704,-73.8923338,graffiti 40.64084632,-73.97433402,graffiti 40.71605362,-73.95750576,graffiti 40.62530457,-73.9275446,graffiti 40.79960162,-73.94608955,graffiti 40.82728635,-73.89609446,graffiti 40.63224145,-74.00415402,graffiti 40.6376041,-74.01307197,graffiti 40.6323183,-74.00428012,graffiti 40.82859306,-73.82392506,graffiti 40.82412151,-73.82011053,graffiti 40.84072963,-73.84051774,graffiti 40.81216599,-73.92064354,graffiti 40.87201883,-73.87589187,graffiti 40.8277189,-73.89188781,graffiti 40.83309324,-73.88920135,graffiti 40.7954189,-73.93584677,graffiti 40.8478708,-73.89213337,graffiti 40.81607452,-73.89648046,graffiti 40.83674262,-73.83349471,graffiti 40.77861588,-73.98375181,graffiti 40.86192681,-73.89860715,graffiti 40.64226807,-74.00611125,graffiti 40.8613462,-73.90327527,graffiti 40.83022926,-73.8720889,graffiti 40.87606654,-73.90391196,graffiti 40.87406806,-73.85607292,graffiti 40.86123341,-73.9062905,graffiti 40.84957517,-73.83042996,graffiti 40.64324662,-73.92653419,graffiti 40.85174503,-73.82960751,graffiti 40.61929035,-73.98299093,graffiti 40.61181999,-73.97355641,graffiti 40.83363976,-73.85705297,graffiti 40.64347858,-74.00485017,graffiti 40.76343095,-73.80716692,graffiti 40.82985755,-73.85056403,graffiti 40.62785849,-74.02329411,graffiti 40.8011949,-73.96348334,graffiti 40.79331737,-73.94284428,graffiti 40.71972185,-73.95356762,graffiti 40.86954385,-73.8427265,graffiti 40.83432321,-73.85057206,graffiti 40.76068493,-73.76643525,graffiti 40.78439622,-73.94697212,graffiti 40.61919979,-73.9830846,graffiti 40.88399263,-73.84943336,graffiti 40.84312762,-73.83027291,graffiti 40.72568277,-73.95188943,graffiti 40.8343909,-73.84986001,graffiti 40.8331841,-73.85266333,graffiti 40.61282737,-73.9737469,graffiti 40.83398139,-73.85370231,graffiti 40.87504187,-73.86705246,graffiti 40.83204187,-73.86580496,graffiti 40.75792576,-73.8284903,graffiti 40.63086833,-73.89552481,graffiti 40.71867116,-73.98856074,graffiti 40.64342912,-74.00604289,graffiti 40.83196525,-73.86600747,graffiti 40.88297343,-73.89894392,graffiti 40.64454635,-74.00374399,graffiti 40.85700624,-73.90588435,graffiti 40.62850631,-74.02302775,graffiti 40.84583292,-73.83147321,graffiti 40.83111776,-73.86893617,graffiti 40.87350862,-73.90407114,graffiti 40.82171048,-73.90078929,graffiti 40.61460333,-73.97409198,graffiti 40.83314339,-73.86656883,graffiti 40.71803492,-73.99755416,graffiti 40.7901523,-73.94779092,graffiti 40.87776917,-73.86625146,graffiti 40.85802409,-73.88989367,graffiti 40.83440984,-73.84965037,graffiti 40.85978184,-73.90019384,graffiti 40.8619139,-73.89341569,graffiti 40.86120373,-73.89722002,graffiti 40.85989465,-73.90051904,graffiti 40.82323873,-73.9001511,graffiti 40.87562098,-73.86703322,graffiti 40.8751343,-73.8593539,graffiti 40.86119266,-73.8971152,graffiti 40.61520721,-73.97422861,graffiti 40.85819222,-73.90621887,graffiti 40.63635214,-73.93646448,graffiti 40.86089245,-73.8959588,graffiti 40.79877451,-73.94410373,graffiti 40.64340722,-74.00492584,graffiti 40.82259589,-73.90267762,graffiti 40.63981977,-74.0050697,graffiti 40.83410068,-73.85253843,graffiti 40.79884288,-73.94358718,graffiti 40.8341088,-73.8524553,graffiti 40.63418811,-74.02256493,graffiti 40.82817743,-73.8980985,graffiti 40.61289874,-73.97376128,graffiti 40.83424438,-73.85116489,graffiti 40.61471038,-73.97411355,graffiti 40.83037144,-73.87159358,graffiti 40.87288833,-73.88879515,graffiti 40.86067406,-73.90365222,graffiti 40.87604939,-73.84935371,graffiti 40.86973061,-73.84281645,graffiti 40.87469603,-73.8670423,graffiti 40.79165737,-73.93859146,graffiti 40.85601941,-73.88598565,graffiti 40.72997423,-73.93276353,graffiti 40.63631464,-74.02581917,graffiti 40.61524015,-73.9742322,graffiti 40.80042978,-73.94451409,graffiti 40.87956017,-73.8651413,graffiti 40.83126539,-73.85040909,graffiti 40.57957867,-73.95341305,graffiti 40.76070661,-73.766298,graffiti 40.8247423,-73.89952737,graffiti 40.79971366,-73.9450348,graffiti 40.83505645,-73.84877437,graffiti 40.83202274,-73.86587727,graffiti 40.84623957,-73.83177217,graffiti 40.64123872,-74.00718493,graffiti 40.87833417,-73.86589956,graffiti 40.85904728,-73.90464149,graffiti 40.64344015,-74.00489341,graffiti 40.85849313,-73.9049821,graffiti 40.86050416,-73.8945495,graffiti 40.79430639,-73.9392716,graffiti 40.83147054,-73.86781165,graffiti 40.83208288,-73.86566756,graffiti 40.83078976,-73.87014374,graffiti 40.6418479,-74.00942986,graffiti 40.88025131,-73.86470234,graffiti 40.68310626,-73.98116827,graffiti 40.6859665,-73.98237177,graffiti 40.6843742,-73.98029896,graffiti 40.75345027,-73.8274515,graffiti 40.70169586,-73.92533011,graffiti 40.62060953,-74.15249042,graffiti 40.80110857,-73.95254285,graffiti 40.63500105,-73.98001089,graffiti 40.85204388,-73.82939348,graffiti 40.6313088,-74.02272608,graffiti 40.74232895,-73.92915675,graffiti 40.61316222,-74.13075836,graffiti 40.62584498,-73.98343596,graffiti 40.61169676,-74.00112372,graffiti 40.62470407,-73.99208917,graffiti 40.74032084,-73.91830772,graffiti 40.62971127,-73.97695743,graffiti 40.83518799,-73.84861506,graffiti 40.62134683,-73.98795063,graffiti 40.6080198,-73.98029268,graffiti 40.66803312,-73.99064214,graffiti 40.73558763,-74.00304908,graffiti 40.72596019,-73.90731414,graffiti 40.60789511,-73.99484989,graffiti 40.82463823,-73.90632759,graffiti 40.81497242,-73.88344038,graffiti 40.6379608,-74.01414937,graffiti 40.66579569,-73.98630611,graffiti 40.71944494,-73.98629148,graffiti 40.67288051,-73.99217718,graffiti 40.64115088,-74.007275,graffiti 40.8428014,-73.84829053,graffiti 40.68787283,-73.83335803,graffiti 40.73363551,-73.9548136,graffiti 40.74536172,-74.0006893,graffiti 40.67646508,-73.99086087,graffiti 40.61125727,-73.99134882,graffiti 40.6346057,-74.02055825,graffiti 40.64844687,-73.97546985,graffiti 40.72260197,-73.99237337,graffiti 40.70294236,-73.79167112,graffiti 40.87088928,-73.86716562,graffiti 40.70639985,-73.8020371,graffiti 40.71928631,-73.99238097,graffiti 40.71591589,-73.99512652,graffiti 40.87625413,-73.90846425,graffiti 40.70889451,-73.79867884,graffiti 40.62938068,-74.08056215,graffiti 40.63899465,-74.02035783,graffiti 40.71959642,-73.99168108,graffiti 40.74225286,-73.91791561,graffiti 40.70709561,-73.7980639,graffiti 40.71722245,-73.99654773,graffiti 40.71745299,-73.99594889,graffiti 40.62915042,-74.08012596,graffiti 40.62929692,-74.07864185,graffiti 40.61843893,-74.16016864,graffiti 40.60218741,-74.06881474,graffiti 40.90355291,-73.90522879,graffiti 40.66767378,-73.99419643,graffiti 40.6842489,-73.95459107,graffiti 40.6807742,-73.96274888,graffiti 40.84087895,-73.84332192,graffiti 40.84309192,-73.84797543,graffiti 40.67656596,-73.90806417,graffiti 40.79274494,-73.94534753,graffiti 40.82806857,-73.82376023,graffiti 40.82822799,-73.82391157,graffiti 40.66300232,-73.89046068,graffiti 40.61951135,-73.90961961,graffiti 40.61554758,-73.97428971,graffiti 40.74267253,-73.77544094,graffiti 40.61412591,-73.99912116,graffiti 40.67652631,-73.91000021,graffiti 40.65872467,-73.96052297,graffiti 40.81669987,-73.92006732,graffiti 40.81690903,-73.92087994,graffiti 40.66394956,-73.95040564,graffiti 40.67667929,-73.95580757,graffiti 40.81683752,-73.92067049,graffiti 40.65756889,-73.89777164,graffiti 40.6588921,-73.96053729,graffiti 40.67209443,-73.95306364,graffiti 40.66186637,-73.91346218,graffiti 40.82863673,-73.924259,graffiti 40.60224902,-73.75381997,graffiti 40.61182814,-73.99072925,graffiti 40.75382388,-73.93859024,graffiti 40.66369043,-73.95434915,graffiti 40.6258132,-73.99707842,graffiti 40.64009383,-74.0110979,graffiti 40.61555869,-73.9999964,graffiti 40.61094436,-73.97341269,graffiti 40.81686775,-73.92071742,graffiti 40.63004889,-73.97701856,graffiti 40.62558294,-73.97615191,graffiti 40.63869742,-73.97558153,graffiti 40.62769103,-73.97658346,graffiti 40.61622293,-73.9990671,graffiti 40.6087376,-73.97362245,graffiti 40.81684023,-73.92060907,graffiti 40.60871294,-73.97384216,graffiti 40.61413641,-73.98954394,graffiti 40.82212226,-73.89172348,graffiti 40.82122466,-73.89163461,graffiti 40.67667079,-73.95512259,graffiti 40.60945936,-73.97310715,graffiti 40.61317618,-73.99727347,graffiti 40.82532456,-73.8968563,graffiti 40.74880629,-74.00473152,graffiti 40.67605333,-73.90547997,graffiti 40.62362818,-73.99320962,graffiti 40.65895798,-73.96054085,graffiti 40.62685383,-73.97640723,graffiti 40.67750021,-73.99825146,graffiti 40.66367417,-73.95485739,graffiti 40.90303843,-73.90374998,graffiti 40.91047872,-73.90310969,graffiti 40.65892504,-73.96053727,graffiti 40.62303568,-73.97568452,graffiti 40.66912762,-73.95379389,graffiti 40.60874307,-73.97356843,graffiti 40.62258808,-73.99753965,graffiti 40.75601397,-73.99469406,graffiti 40.85503892,-73.8910156,graffiti 40.63444802,-74.02655705,graffiti 40.84917616,-73.89093846,graffiti 40.63020666,-74.01504119,graffiti 40.85163537,-73.89382978,graffiti 40.85061819,-73.89503869,graffiti 40.85178838,-73.89308491,graffiti 40.8175998,-73.92361042,graffiti 40.76521889,-73.93642096,graffiti 40.81698058,-73.92115082,graffiti 40.85391495,-73.89246336,graffiti 40.88435877,-73.85898721,graffiti 40.91026502,-73.89720564,graffiti 40.81496131,-73.96011599,graffiti 40.71964643,-73.89073916,graffiti 40.8479899,-73.89630429,graffiti 40.81707965,-73.92153004,graffiti 40.54462357,-74.16546438,graffiti 40.88707267,-73.85409542,graffiti 40.73016127,-74.00191589,graffiti 40.78622549,-73.94387232,graffiti 40.6336542,-73.94774042,graffiti 40.64413704,-73.94884567,graffiti 40.84934994,-73.89482743,graffiti 40.63466433,-73.94785492,graffiti 40.72163549,-73.98841953,graffiti 40.64163704,-73.95676763,graffiti 40.71992849,-73.99107136,graffiti 40.68968951,-73.99236272,graffiti 40.63611754,-73.95060648,graffiti 40.84860922,-73.89520812,graffiti 40.79268396,-73.96499399,graffiti 40.70843895,-73.95564945,graffiti 40.64081766,-73.98251701,graffiti 40.70853236,-73.95586941,graffiti 40.74508694,-73.92004136,graffiti 40.878322,-73.87460722,graffiti 40.64362465,-73.95780773,graffiti 40.64303449,-73.95771442,graffiti 40.64230701,-73.9574122,graffiti 40.720839,-73.98414469,graffiti 40.72012061,-73.99097033,graffiti 40.74903948,-74.00690061,graffiti 40.64331447,-73.95774667,graffiti 40.72079235,-73.9841952,graffiti 40.72111662,-73.98735538,graffiti 40.64080119,-73.98253504,graffiti 40.71823229,-73.99193737,graffiti 40.72068256,-73.98425295,graffiti 40.64329526,-73.9577647,graffiti 40.72109754,-73.98869741,graffiti 40.84873267,-73.89514648,graffiti 40.85861262,-73.90344192,graffiti 40.63515292,-73.94788696,graffiti 40.72122599,-73.98396422,graffiti 40.62908424,-73.94798897,graffiti 40.59242421,-73.95308723,graffiti 40.74341516,-73.71641622,graffiti 40.72133294,-73.98333647,graffiti 40.7211525,-73.98936841,graffiti 40.71954134,-73.98949493,graffiti 40.85623166,-73.90519138,graffiti 40.63477138,-73.94786565,graffiti 40.72066389,-73.98891754,graffiti 40.72046574,-73.98436484,graffiti 40.64292228,-73.97877256,graffiti 40.64083413,-73.98249899,graffiti 40.72103716,-73.98872989,graffiti 40.72118252,-73.98757182,graffiti 40.81738142,-73.88531121,graffiti 40.7939274,-73.94426671,graffiti 40.73659393,-73.71179757,graffiti 40.72043565,-73.985108,graffiti 40.72037799,-73.98497814,graffiti 40.71795508,-73.99205645,graffiti 40.6438351,-73.94883509,graffiti 40.86102423,-73.90228517,graffiti 40.85955932,-73.90318387,graffiti 40.85847056,-73.90424105,graffiti 40.63621552,-73.94871483,graffiti 40.72072702,-73.98888867,graffiti 40.63611755,-73.95062089,graffiti 40.71447007,-73.94496802,graffiti 40.64350662,-73.95778258,graffiti 40.64292469,-73.95769286,graffiti 40.64210108,-73.95721775,graffiti 40.72111071,-73.98400393,graffiti 40.71812525,-73.99199511,graffiti 40.71980483,-73.98935781,graffiti 40.6423787,-73.97817098,graffiti 40.74286018,-73.89819652,graffiti 40.64402175,-73.94883495,graffiti 40.64351761,-73.9578078,graffiti 40.64084236,-73.98249179,graffiti 40.64205989,-73.95717814,graffiti 40.64461465,-73.94889935,graffiti 40.7197911,-73.98939027,graffiti 40.79397413,-73.94441835,graffiti 40.72058667,-73.98560942,graffiti 40.85282835,-73.93759515,graffiti 40.64214227,-73.95725736,graffiti 40.63452433,-73.947819,graffiti 40.65465111,-73.95964961,graffiti 40.6450247,-73.95836899,graffiti 40.72001891,-73.98924954,graffiti 40.71901726,-73.9915116,graffiti 40.86684195,-73.89790187,graffiti 40.72087774,-73.98662669,graffiti 40.86582162,-73.89869883,graffiti 40.86022043,-73.90275271,graffiti 40.84763834,-73.93801568,graffiti 40.63401917,-73.94755999,graffiti 40.72062767,-73.98428183,graffiti 40.72669463,-74.00277086,graffiti 40.64225209,-73.95733296,graffiti 40.74720862,-73.99139252,graffiti 40.64212304,-73.95721413,graffiti 40.63456276,-73.94782257,graffiti 40.79323864,-73.94461038,graffiti 40.64160135,-73.95673162,graffiti 40.65366099,-74.01389322,graffiti 40.72527262,-73.99233338,graffiti 40.80769095,-73.90803115,graffiti 40.71868262,-73.99546542,graffiti 40.74481352,-73.91029411,graffiti 40.71405624,-73.95252908,graffiti 40.70767855,-73.93278963,graffiti 40.72374382,-73.99275927,graffiti 40.71628772,-73.98106511,graffiti 40.7831085,-73.77700533,graffiti 40.72627714,-73.99149985,graffiti 40.71861655,-73.99187961,graffiti 40.71906941,-73.99148273,graffiti 40.71867146,-73.99206358,graffiti 40.69462797,-73.85372681,graffiti 40.72037319,-73.99182889,graffiti 40.60755134,-74.15943303,graffiti 40.71827895,-73.99189047,graffiti 40.71886368,-73.99347408,graffiti 40.71869342,-73.99207801,graffiti 40.63173197,-74.03224473,graffiti 40.63185808,-74.0327744,graffiti 40.82541745,-73.8904318,graffiti 40.82543115,-73.89040648,graffiti 40.82539553,-73.89047519,graffiti 40.82545307,-73.89036309,graffiti 40.69484265,-73.85204226,graffiti 40.69442326,-73.85247953,graffiti 40.71907509,-73.94353926,graffiti 40.72211141,-73.95086382,graffiti 40.87520628,-73.85109128,graffiti 40.71752962,-73.99182563,graffiti 40.71756805,-73.99189056,graffiti 40.87470841,-73.85025712,graffiti 40.71760923,-73.99202764,graffiti 40.76068493,-73.76643525,graffiti 40.87645948,-73.8635023,graffiti 40.79398712,-73.94290872,graffiti 40.71817453,-73.99042226,graffiti 40.85859335,-73.90338411,graffiti 40.85794947,-73.90146908,graffiti 40.8729631,-73.87855859,graffiti 40.71754609,-73.99181841,graffiti 40.65302215,-73.95609714,graffiti 40.73314172,-73.89592013,graffiti 40.78153144,-73.94856679,graffiti 40.85644459,-73.9005495,graffiti 40.87540351,-73.85079433,graffiti 40.87595642,-73.84962151,graffiti 40.71720853,-73.99246057,graffiti 40.75829614,-73.80427965,graffiti 40.87650054,-73.84804007,graffiti 40.91025659,-73.8969922,graffiti 40.71723597,-73.99242449,graffiti 40.71948645,-73.98952019,graffiti 40.73583795,-73.74630084,graffiti 40.87575492,-73.85086586,graffiti 40.74756209,-73.76233447,graffiti 40.60096419,-73.75369867,graffiti 40.79395941,-73.94237784,graffiti 40.87116263,-73.88671175,graffiti 40.8311025,-73.87497446,graffiti 40.72535081,-73.94604499,graffiti 40.87437384,-73.85697262,graffiti 40.87624632,-73.84882894,graffiti 40.87580869,-73.8499979,graffiti 40.73748118,-73.89592778,graffiti 40.8730168,-73.87487395,graffiti 40.72749968,-73.85188677,graffiti 40.8498344,-73.83126427,graffiti 40.67937759,-73.94959739,graffiti 40.66962284,-73.9291042,graffiti 40.72640096,-74.00135296,graffiti 40.82236262,-73.89641648,graffiti 40.68284687,-73.96390149,graffiti 40.81110798,-73.8060787,graffiti 40.66965615,-73.92971699,graffiti 40.72916768,-73.99903305,graffiti 40.72320881,-73.99866876,graffiti 40.67966471,-73.93633308,graffiti 40.84406283,-73.82977537,graffiti 40.74816388,-73.99269526,graffiti 40.83097496,-73.86181774,graffiti 40.82132765,-73.89025065,graffiti 40.67990571,-73.94045739,graffiti 40.75540384,-73.80467436,graffiti 40.72383187,-74.00142145,graffiti 40.83126355,-73.88742652,graffiti 40.68822906,-73.98943136,graffiti 40.84592362,-73.83155972,graffiti 40.74413262,-73.8354945,graffiti 40.82102212,-73.89829372,graffiti 40.82219924,-73.90102341,graffiti 40.62861775,-74.01225603,graffiti 40.82269631,-73.88643657,graffiti 40.70450249,-73.98657227,graffiti 40.7430945,-73.99636234,graffiti 40.65060093,-74.01034646,graffiti 40.82098392,-73.89248406,graffiti 40.70654134,-73.95316562,graffiti 40.71633507,-73.94203732,graffiti 40.8435347,-73.83274402,graffiti 40.84281784,-73.85037227,graffiti 40.73656448,-73.89598334,graffiti 40.72217101,-73.99177816,graffiti 40.69632959,-73.90967055,graffiti 40.84644174,-73.8330114,graffiti 40.67937759,-73.94959739,graffiti 40.6871367,-73.99017431,graffiti 40.72244845,-73.99608207,graffiti 40.7360128,-73.89600224,graffiti 40.82100694,-73.89664983,graffiti 40.7287944,-73.99935056,graffiti 40.74319057,-73.99629016,graffiti 40.63471602,-73.93606251,graffiti 40.6694796,-73.92828246,graffiti 40.66967834,-73.93009547,graffiti 40.77774481,-73.90009655,graffiti 40.66397035,-73.92328173,graffiti 40.8304756,-73.82370327,graffiti 40.68901345,-73.98413062,graffiti 40.83392632,-73.87966698,graffiti 40.75491539,-73.80474076,graffiti 40.74323723,-73.99625407,graffiti 40.70614267,-73.95153203,graffiti 40.6899662,-73.9865752,graffiti 40.84476144,-73.83076391,graffiti 40.84404909,-73.82976457,graffiti 40.72694235,-73.95823844,graffiti 40.73527202,-74.00053765,graffiti 40.70221586,-73.98470092,graffiti 40.82613759,-73.89751266,graffiti 40.82496244,-73.86989496,graffiti 40.71072834,-73.99660939,graffiti 40.90376348,-73.85010483,graffiti 40.71364434,-73.9592135,graffiti 40.74142273,-73.8845001,graffiti 40.82908026,-73.89187476,graffiti 40.71162868,-73.99987015,graffiti 40.81957212,-73.95919554,graffiti 40.83612549,-73.8885169,graffiti 40.8315544,-73.8643858,graffiti 40.71982727,-74.00040044,graffiti 40.65269831,-73.95620547,graffiti 40.71162868,-73.99987015,graffiti 40.87276553,-73.90494724,graffiti 40.83079276,-73.89165155,graffiti 40.81814803,-73.96041034,graffiti 40.87294627,-73.904448,graffiti 40.83592522,-73.88860758,graffiti 40.81658079,-73.94675861,graffiti 40.82020323,-73.95871463,graffiti 40.86650561,-73.92450511,graffiti 40.70563722,-73.950573,graffiti 40.87453702,-73.90982259,graffiti 40.83225184,-73.82760128,graffiti 40.70651632,-73.95241182,graffiti 40.83120698,-73.89140877,graffiti 40.82021147,-73.95873269,graffiti 40.86511344,-73.91954635,graffiti 40.88486535,-73.89989942,graffiti 40.86553417,-73.92068832,graffiti 40.82354412,-73.89181872,graffiti 40.88475248,-73.89951262,graffiti 40.90514917,-73.90059962,graffiti 40.81917972,-73.95947759,graffiti 40.71076952,-73.99662021,graffiti 40.82432096,-73.8919114,graffiti 40.86590678,-73.91972617,graffiti 40.86756312,-73.92160063,graffiti 40.9053613,-73.90152179,graffiti 40.70729565,-73.80422741,graffiti 40.83244146,-73.82775979,graffiti 40.83248815,-73.82777773,graffiti 40.86965549,-73.91511891,graffiti 40.69214876,-73.95564586,graffiti 40.86412167,-73.92637334,graffiti 40.67589608,-73.85039347,graffiti 40.83818576,-73.88747263,graffiti 40.85127032,-73.88522748,graffiti 40.85103423,-73.93930656,graffiti 40.86666742,-73.92861574,graffiti 40.73756937,-74.00147948,graffiti 40.83668993,-73.89036625,graffiti 40.86240797,-73.92914091,graffiti 40.86027642,-73.93092545,graffiti 40.86467358,-73.92672704,graffiti 40.86498898,-73.92216044,graffiti 40.8550435,-73.93790395,graffiti 40.86080095,-73.9269446,graffiti 40.86625576,-73.9203006,graffiti 40.8605242,-73.92768963,graffiti 40.55872067,-74.17670246,graffiti 40.69724183,-73.9109207,graffiti 40.83740562,-73.9424414,graffiti 40.69214876,-73.95564586,graffiti 40.82242066,-73.89686442,graffiti 40.71876657,-73.95331215,graffiti 40.86476197,-73.91933709,graffiti 40.84567817,-73.94243424,graffiti 40.84929762,-73.88323204,graffiti 40.82663818,-73.8987079,graffiti 40.86371325,-73.92721617,graffiti 40.86663821,-73.93023551,graffiti 40.71843251,-73.99006508,graffiti 40.87033628,-73.91526629,graffiti 40.76506089,-73.92065635,graffiti 40.82657872,-73.90296809,graffiti 40.7213506,-73.99794006,graffiti 40.86323663,-73.92035484,graffiti 40.73597777,-73.7145715,graffiti 40.86358706,-73.86841303,graffiti 40.86074886,-73.92703504,graffiti 40.8630151,-73.92566597,graffiti 40.86332044,-73.9267213,graffiti 40.74242912,-73.72176861,graffiti 40.68480308,-73.97070065,graffiti 40.83768635,-73.88760719,graffiti 40.86274774,-73.92821865,graffiti 40.864647,-73.9197783,graffiti 40.84555393,-73.94098861,graffiti 40.71519057,-73.7733403,graffiti 40.83110065,-73.8524981,graffiti 40.72702905,-73.94865576,graffiti 40.7017908,-73.80653735,graffiti 40.72581122,-73.95057608,graffiti 40.80693325,-73.9414202,graffiti 40.72392791,-73.99708133,graffiti 40.75330363,-73.77719173,graffiti 40.71625887,-73.99292242,graffiti 40.70609408,-73.79981262,graffiti 40.69802638,-73.92575256,graffiti 40.75702775,-73.72951872,graffiti 40.70624591,-73.80031351,graffiti 40.76514339,-73.81366716,graffiti 40.62784686,-74.0077563,graffiti 40.70279481,-73.79821398,graffiti 40.6981048,-73.80183814,graffiti 40.7049414,-73.79988461,graffiti 40.75022182,-73.77186405,graffiti 40.69942401,-73.93104883,graffiti 40.7219423,-73.98348423,graffiti 40.72459492,-74.00075042,graffiti 40.71895905,-73.83839933,graffiti 40.71836938,-73.99009756,graffiti 40.71771126,-73.96508387,graffiti 40.82989598,-73.85057117,graffiti 40.63967815,-74.13208586,graffiti 40.70178816,-73.80660227,graffiti 40.71237782,-73.99362261,graffiti 40.81408055,-73.86127119,graffiti 40.76516851,-73.81392701,graffiti 40.70411232,-73.79357901,graffiti 40.70191775,-73.80532157,graffiti 40.6380793,-74.13328253,graffiti 40.71279791,-73.99725136,graffiti 40.68451496,-73.8615804,graffiti 40.71235586,-73.9936695,graffiti 40.67701931,-73.97233002,graffiti 40.84580819,-73.83145881,graffiti 40.70814881,-73.92534452,graffiti 40.76661267,-73.90729366,graffiti 40.71204039,-73.99942647,graffiti 40.72858781,-73.95455003,graffiti 40.63543623,-74.02616832,graffiti 40.6286104,-74.07912019,graffiti 40.711634,-73.99391485,graffiti 40.82744823,-73.88178167,graffiti 40.71019416,-73.95204849,graffiti 40.68554171,-73.96224863,graffiti 40.63791278,-74.13249311,graffiti 40.68628605,-73.83892922,graffiti 40.84422312,-73.83052312,graffiti 40.7479546,-73.98549884,graffiti 40.71867996,-74.00086579,graffiti 40.72594534,-73.99961035,graffiti 40.62759883,-74.07726368,graffiti 40.7256948,-73.98667985,graffiti 40.62343348,-73.99778818,graffiti 40.68340726,-73.86725064,graffiti 40.75820966,-73.99278079,graffiti 40.62826499,-74.07848933,graffiti 40.82531525,-73.81477414,graffiti 40.71895905,-73.83839933,graffiti 40.62879379,-74.07986254,graffiti 40.71867996,-74.00086579,graffiti 40.8199615,-73.81044626,graffiti 40.68769768,-73.97788932,graffiti 40.65447361,-73.8897611,graffiti 40.74914104,-74.00682483,graffiti 40.712982,-73.94411796,graffiti 40.67191171,-73.99394371,graffiti 40.71477121,-73.94923154,graffiti 40.82407589,-73.81901947,graffiti 40.83496102,-73.82050403,graffiti 40.75066718,-74.0057314,graffiti 40.67170021,-73.99154285,graffiti 40.69245547,-73.9272733,graffiti 40.72363151,-74.00001082,graffiti 40.73415655,-73.93639287,graffiti 40.55093562,-74.15024073,graffiti 40.69002632,-73.92301015,graffiti 40.73711352,-73.87919952,graffiti 40.69035332,-73.92357951,graffiti 40.62999353,-74.00198867,graffiti 40.82928859,-73.87529585,graffiti 40.63237594,-74.0043738,graffiti 40.82968517,-73.87400148,graffiti 40.63870259,-74.00623703,graffiti 40.69180695,-73.92608763,graffiti 40.54939677,-74.21663368,graffiti 40.68281418,-73.92902167,graffiti 40.679018,-73.9244722,graffiti 40.66482657,-73.92305366,graffiti 40.82870666,-73.87780466,graffiti 40.82914639,-73.87577671,graffiti 40.6918874,-73.92743979,graffiti 40.73573362,-73.93431293,graffiti 40.69256017,-73.92791145,graffiti 40.69183717,-73.92614168,graffiti 40.68730841,-73.91819238,graffiti 40.82927066,-73.8764811,graffiti 40.8267845,-73.89656859,graffiti 40.6832183,-73.86525715,graffiti 40.64013668,-74.01916911,graffiti 40.69216695,-73.92676877,graffiti 40.69175476,-73.9260336,graffiti 40.69252139,-73.92734895,graffiti 40.6911557,-73.92495968,graffiti 40.70965774,-73.94927151,graffiti 40.84188457,-73.88921923,graffiti 40.69109525,-73.92485157,graffiti 40.68399368,-73.86642019,graffiti 40.54998843,-74.21727971,graffiti 40.69008678,-73.92312186,graffiti 40.69221089,-73.92680839,graffiti 40.82990825,-73.87469485,graffiti 40.82970431,-73.87393279,graffiti 40.63214539,-74.00399909,graffiti 40.69031485,-73.92351465,graffiti 40.54939677,-74.21663368,graffiti 40.69006479,-73.92308583,graffiti 40.69072427,-73.92418849,graffiti 40.76672475,-73.95126412,graffiti 40.69111723,-73.9248876,graffiti 40.69000708,-73.92297411,graffiti 40.6427877,-74.0216598,graffiti 40.54996907,-74.21735881,graffiti 40.69182895,-73.92616333,graffiti 40.73693685,-73.8782436,graffiti 40.71134691,-73.81585915,graffiti 40.69147996,-73.92552546,graffiti 40.73643521,-73.93247555,graffiti 40.63993204,-74.00931789,graffiti 40.72541775,-73.94256338,graffiti 40.63647894,-74.01117296,graffiti 40.63955604,-74.00892869,graffiti 40.8217841,-73.90678324,graffiti 40.87518044,-73.88628184,graffiti 40.64442289,-74.00014053,graffiti 40.76680105,-73.90604432,graffiti 40.7059668,-73.8089021,graffiti 40.73328827,-73.73781307,graffiti 40.73967789,-73.78993238,graffiti 40.74297377,-74.00243232,graffiti 40.64356059,-73.98992129,graffiti 40.70776778,-73.802639,graffiti 40.822023,-73.94000866,graffiti 40.8564195,-73.89100249,graffiti 40.61229879,-73.97948104,graffiti 40.71008937,-73.79451636,graffiti 40.85705568,-73.8903869,graffiti 40.85409913,-73.8842466,graffiti 40.78498203,-73.97467928,graffiti 40.71544339,-74.01075693,graffiti 40.87653438,-73.87638245,graffiti 40.63820301,-74.00672701,graffiti 40.82117217,-73.94007446,graffiti 40.5966994,-73.97583094,graffiti 40.84355705,-73.90572628,graffiti 40.69656818,-73.84713029,graffiti 40.76726001,-73.90677291,graffiti 40.70801049,-73.80172213,graffiti 40.8558761,-73.88819098,graffiti 40.70295042,-73.9256533,graffiti 40.84267923,-73.85143516,graffiti 40.7666639,-73.90615281,graffiti 40.83795519,-73.84693552,graffiti 40.64041816,-74.00442477,graffiti 40.7388482,-73.81002749,graffiti 40.7671429,-73.90791386,graffiti 40.76849122,-73.90872428,graffiti 40.6038927,-73.97222708,graffiti 40.76660628,-73.90617455,graffiti 40.62308474,-73.99380045,graffiti 40.86703743,-73.88402884,graffiti 40.81657238,-73.94077226,graffiti 40.83813112,-73.84508116,graffiti 40.76750862,-73.9087509,graffiti 40.59709957,-73.97323095,graffiti 40.61232624,-73.97948463,graffiti 40.8283003,-73.90374607,graffiti 40.74502413,-73.8875542,graffiti 40.76725264,-73.90784873,graffiti 40.76712561,-73.9068814,graffiti 40.71775494,-73.99675333,graffiti 40.76850332,-73.91015028,graffiti 40.63818654,-74.00674502,graffiti 40.69802027,-73.92071089,graffiti 40.75038735,-73.99847693,graffiti 40.6485236,-73.99961441,graffiti 40.82180062,-73.90685547,graffiti 40.87835718,-73.8716564,graffiti 40.69215166,-73.8621956,graffiti 40.83710733,-73.847129,graffiti 40.67761234,-73.97298593,graffiti 40.67496155,-73.89664182,graffiti 40.69604156,-73.9134647,graffiti 40.67565182,-73.89813327,graffiti 40.67707903,-73.89805178,graffiti 40.63386297,-74.01296676,graffiti 40.6534954,-73.93056292,graffiti 40.69471855,-73.78990815,graffiti 40.6753322,-73.89676021,graffiti 40.7059847,-73.9234606,graffiti 40.68041761,-73.91622147,graffiti 40.67421237,-73.90644153,graffiti 40.64494714,-73.99975136,graffiti 40.7074735,-73.92954366,graffiti 40.73787579,-73.98484068,graffiti 40.57847011,-73.96176557,graffiti 40.64036329,-74.00395635,graffiti 40.66162488,-73.91353458,graffiti 40.67488742,-73.8966239,graffiti 40.63817013,-73.99429267,graffiti 40.83204996,-73.94100059,graffiti 40.82628285,-73.84973377,graffiti 40.63779042,-74.1616347,graffiti 40.67498802,-73.89863179,graffiti 40.7000615,-73.77200685,graffiti 40.69991381,-73.93803762,graffiti 40.63707016,-74.15032657,graffiti 40.69864829,-73.91993838,graffiti 40.676243,-73.90923269,graffiti 40.70697305,-73.93262803,graffiti 40.64097263,-74.00387351,graffiti 40.63762885,-73.98738561,graffiti 40.67567882,-73.89763572,graffiti 40.65384078,-73.92980933,graffiti 40.67563828,-73.898346,graffiti 40.67761868,-73.93425481,graffiti 40.63761542,-74.14681479,graffiti 40.65383553,-73.93019856,graffiti 40.67188022,-73.8978254,graffiti 40.64099733,-74.00384828,graffiti 40.64322341,-74.00153144,graffiti 40.67364248,-73.90769688,graffiti 40.63749098,-74.14753873,graffiti 40.8843695,-73.90760321,graffiti 40.63871207,-74.12960138,graffiti 40.70715392,-73.9321301,graffiti 40.67451579,-73.8984847,graffiti 40.83319889,-73.85135153,graffiti 40.6409891,-74.00385549,graffiti 40.63290544,-74.00865039,graffiti 40.66867389,-73.91049384,graffiti 40.69634114,-73.91399443,graffiti 40.62765499,-73.99976583,graffiti 40.63255345,-73.9849835,graffiti 40.85337995,-73.93743558,graffiti 40.63737228,-74.12494,graffiti 40.64472577,-74.09940519,graffiti 40.61302751,-73.98948288,graffiti 40.63988057,-74.13028826,graffiti 40.72336424,-73.98462752,graffiti 40.68145242,-73.95574311,graffiti 40.637887,-74.13342627,graffiti 40.64395687,-74.02224753,graffiti 40.68967402,-73.95143943,graffiti 40.64571464,-74.09190774,graffiti 40.60745528,-74.15942559,graffiti 40.6363486,-74.13455814,graffiti 40.63080235,-74.01445048,graffiti 40.86822977,-73.86725409,graffiti 40.64030731,-74.13393556,graffiti 40.64485619,-74.10991672,graffiti 40.68851013,-73.95118426,graffiti 40.66850261,-73.8576484,graffiti 40.64488832,-74.09544882,graffiti 40.68799004,-73.94813774,graffiti 40.68696695,-74.00077524,graffiti 40.72845683,-73.85780536,graffiti 40.63719777,-74.12639531,graffiti 40.64515407,-74.10840014,graffiti 40.68535104,-73.9515183,graffiti 40.63949768,-74.12150654,graffiti 40.70375228,-73.82838803,graffiti 40.73212437,-73.89698974,graffiti 40.72354367,-74.00164152,graffiti 40.64613038,-74.09029392,graffiti 40.65400758,-74.0047248,graffiti 40.6254896,-74.0749845,graffiti 40.63044497,-74.03113808,graffiti 40.63840326,-74.07584935,graffiti 40.64467528,-74.09747005,graffiti 40.6936298,-73.96005154,graffiti 40.64047032,-74.12056787,graffiti 40.72779223,-73.99122545,graffiti 40.61387146,-74.03276917,graffiti 40.66859055,-73.90921787,graffiti 40.64602852,-74.09068657,graffiti 40.6687326,-73.90835974,graffiti 40.68186605,-73.95362282,graffiti 40.63038358,-74.13030574,graffiti 40.62656791,-74.07557652,graffiti 40.63797447,-74.12893697,graffiti 40.82093178,-73.86626454,graffiti 40.63464556,-74.13564279,graffiti 40.64299075,-74.02199497,graffiti 40.6378063,-74.1456478,graffiti 40.62757537,-73.99799699,graffiti 40.73849072,-73.90157357,graffiti 40.66141916,-73.88821776,graffiti 40.63128147,-73.96651615,graffiti 40.6689841,-73.9105511,graffiti 40.65362507,-74.01578168,graffiti 40.64303209,-73.97885901,graffiti 40.70023624,-73.9460581,graffiti 40.6991376,-73.93907338,graffiti 40.69622255,-73.93391551,graffiti 40.6689951,-73.91057632,graffiti 40.64262604,-73.97986808,graffiti 40.65035376,-74.01182036,graffiti 40.63558528,-73.97778768,graffiti 40.8649769,-73.89039192,graffiti 40.66164251,-73.91509525,graffiti 40.79628131,-73.93204285,graffiti 40.65354271,-74.01586455,graffiti 40.70584518,-73.80839389,graffiti 40.63654664,-73.96891672,graffiti 40.63582446,-73.96780734,graffiti 40.69353974,-73.95406907,graffiti 40.6941783,-73.93028615,graffiti 40.64225814,-73.97931688,graffiti 40.70730952,-73.95231026,graffiti 40.63342532,-73.96711675,graffiti 40.65336717,-74.01495992,graffiti 40.77125115,-73.90378159,graffiti 40.65158066,-74.01198275,graffiti 40.6312101,-73.96649817,graffiti 40.86962645,-73.86225446,graffiti 40.84709241,-73.93354876,graffiti 40.65320505,-74.01621765,graffiti 40.64404191,-73.97751822,graffiti 40.6503318,-74.01184558,graffiti 40.66842943,-73.91027067,graffiti 40.85227325,-73.93155911,graffiti 40.69657001,-73.96169063,graffiti 40.64788537,-74.01816953,graffiti 40.7263886,-73.72746751,graffiti 40.65358415,-74.01376706,graffiti 40.64181073,-73.97924135,graffiti 40.6253002,-73.96528352,graffiti 40.62458377,-73.9651506,graffiti 40.66009025,-73.9131437,graffiti 40.70583383,-73.92360505,graffiti 40.63544826,-73.97894788,graffiti 40.63578799,-73.97579517,graffiti 40.64195621,-73.97927373,graffiti 40.69596702,-73.93345416,graffiti 40.63559076,-73.97775526,graffiti 40.66901704,-73.91055826,graffiti 40.6421209,-73.97928449,graffiti 40.70691976,-73.95229611,graffiti 40.6942415,-73.93039787,graffiti 40.85263813,-73.93129124,graffiti 40.64243946,-73.9802681,graffiti 40.63066933,-73.96634353,graffiti 40.70767226,-73.95337403,graffiti 40.66847586,-73.90997142,graffiti 40.65039494,-74.01178073,graffiti 40.85692626,-73.9282647,graffiti 40.86529326,-73.88828723,graffiti 40.63124578,-73.96650536,graffiti 40.66012692,-73.91445562,graffiti 40.65037847,-74.01179514,graffiti 40.69471487,-73.94846788,graffiti 40.65092199,-74.01123304,graffiti 40.63558251,-73.97765438,graffiti 40.69253727,-73.95971323,graffiti 40.72299266,-73.94518827,graffiti 40.64415968,-73.97622815,graffiti 40.66850317,-73.90979475,graffiti 40.65339217,-74.01243717,graffiti 40.75824098,-73.91409138,graffiti 40.69332791,-73.95287921,graffiti 40.64268366,-73.97973113,graffiti 40.64032707,-74.01171409,graffiti 40.63559898,-73.97765797,graffiti 40.63875024,-74.02103154,graffiti 40.69053598,-73.95872641,graffiti 40.69867877,-73.93822991,graffiti 40.65087532,-74.01128349,graffiti 40.86423409,-73.89145968,graffiti 40.86502185,-73.88861307,graffiti 40.62889265,-73.97382704,graffiti 40.64427765,-73.97594704,graffiti 40.63645629,-73.96974906,graffiti 40.72307869,-73.98390605,graffiti 40.71421412,-73.99463245,graffiti 40.65186333,-74.0124477,graffiti 40.64293602,-73.97885904,graffiti 40.66022804,-73.9138788,graffiti 40.67131795,-73.98453137,graffiti 40.84504123,-73.93687236,graffiti 40.70034017,-73.9452682,graffiti 40.65093023,-74.01122584,graffiti 40.62905452,-73.97349554,graffiti 40.63559076,-73.97774084,graffiti 40.63743584,-74.03149805,graffiti 40.66891546,-73.91053317,graffiti 40.71212189,-73.79376342,graffiti 40.66895941,-73.91056555,graffiti 40.63580169,-73.97567266,graffiti 40.61641108,-74.03028868,graffiti 40.69422224,-73.93032938,graffiti 40.643998,-73.97753264,graffiti 40.5982884,-73.99694279,graffiti 40.64466266,-73.97978458,graffiti 40.65155047,-74.01196473,graffiti 40.6289949,-73.96598411,graffiti 40.65086709,-74.01129069,graffiti 40.68913318,-73.91748339,graffiti 40.6425986,-73.97993655,graffiti 40.64539279,-73.9799249,graffiti 40.86502457,-73.88858414,graffiti 40.64338327,-73.97807336,graffiti 40.87147531,-73.86136477,graffiti 40.65348506,-74.0159258,graffiti 40.64274127,-73.97959419,graffiti 40.63645903,-73.96972384,graffiti 40.65195599,-74.01752555,graffiti 40.65163829,-74.01207286,graffiti 40.85057515,-73.93305369,graffiti 40.85625143,-73.92885466,graffiti 40.69606317,-73.9335911,graffiti 40.69075213,-73.95685118,graffiti 40.71743098,-74.00522351,graffiti 40.89026678,-73.85570873,graffiti 40.71743098,-74.00522351,graffiti 40.72003038,-73.99833693,graffiti 40.71946222,-73.99877345,graffiti 40.82462141,-73.82033681,graffiti 40.5786458,-73.96183387,graffiti 40.84939268,-73.93392237,graffiti 40.85056646,-73.93712376,graffiti 40.76070756,-73.86222342,graffiti 40.85055268,-73.93701172,graffiti 40.85138929,-73.93128892,graffiti 40.64265951,-73.96976427,graffiti 40.83122276,-73.86715447,graffiti 40.85118957,-73.93237713,graffiti 40.84951361,-73.9342078,graffiti 40.86710691,-73.92917568,graffiti 40.86733214,-73.9294466,graffiti 40.72140549,-73.9383748,graffiti 40.85059161,-73.93304283,graffiti 40.86770844,-73.92990176,graffiti 40.72083687,-73.98952359,graffiti 40.86646415,-73.92836649,graffiti 40.66152561,-73.99823025,graffiti 40.90071997,-73.85249915,graffiti 40.65088081,-74.01127268,graffiti 40.67145958,-73.97778295,graffiti 40.67499309,-73.95349782,graffiti 40.67683944,-73.93473507,graffiti 40.65387277,-74.00975231,graffiti 40.66546424,-73.99419301,graffiti 40.64178498,-74.00631659,graffiti 40.86465335,-73.89073954,graffiti 40.67039321,-73.92765063,graffiti 40.6605951,-73.99672007,graffiti 40.90050879,-73.85262622,graffiti 40.66177265,-73.99867359,graffiti 40.86185192,-73.89170579,graffiti 40.68428452,-73.86398221,graffiti 40.6363366,-74.02580837,graffiti 40.61431194,-73.93733188,graffiti 40.82642561,-73.84976597,graffiti 40.85913789,-73.88648641,graffiti 40.64872043,-74.0135174,graffiti 40.64920082,-74.01301298,graffiti 40.70737917,-73.9548819,graffiti 40.83641843,-73.84714504,graffiti 40.66145699,-73.99811492,graffiti 40.74888803,-73.89256793,graffiti 40.67730693,-73.94146196,graffiti 40.78485076,-73.84124019,graffiti 40.86597225,-73.88937073,graffiti 40.83641565,-73.84711975,graffiti 40.66830787,-73.99498941,graffiti 40.78485076,-73.84124019,graffiti 40.7848535,-73.84124018,graffiti 40.66528298,-73.99237272,graffiti 40.72121063,-74.00036076,graffiti 40.70412831,-73.81424165,graffiti 40.67783222,-73.93820595,graffiti 40.64619503,-74.01512407,graffiti 40.75553615,-73.81498622,graffiti 40.65953016,-73.99798161,graffiti 40.67098442,-73.95040762,graffiti 40.83618732,-73.86425349,graffiti 40.63049858,-74.00130418,graffiti 40.61431194,-73.93733188,graffiti 40.77892354,-73.91168884,graffiti 40.63581772,-74.02631979,graffiti 40.83439224,-73.82546001,graffiti 40.6628788,-73.99878891,graffiti 40.65763076,-73.99782309,graffiti 40.65854754,-74.00003965,graffiti 40.66497296,-73.99489955,graffiti 40.76667662,-73.90831883,graffiti 40.90273811,-73.85098257,graffiti 40.86657747,-73.88797052,graffiti 40.67444544,-73.95008059,graffiti 40.78296591,-73.84585948,graffiti 40.66624935,-73.99703339,graffiti 40.66524196,-73.9953501,graffiti 40.86510579,-73.89028325,graffiti 40.64631395,-74.00478551,graffiti 40.81345129,-73.95890668,graffiti 40.6640892,-73.99644235,graffiti 40.62759377,-74.01378692,graffiti 40.62812087,-74.01296924,graffiti 40.86631304,-73.88984379,graffiti 40.63193117,-74.00671197,graffiti 40.61195458,-74.1377541,graffiti 40.64178498,-74.00631659,graffiti 40.84742029,-73.94091828,graffiti 40.67612535,-73.95032809,graffiti 40.66077352,-73.99701561,graffiti 40.72508894,-73.99704881,graffiti 40.7848535,-73.84124018,graffiti 40.64842478,-74.0006919,graffiti 40.86690629,-73.88741318,graffiti 40.88328217,-73.85621571,graffiti 40.85707699,-73.93242899,graffiti 40.70810163,-73.78228788,graffiti 40.7875365,-73.94763047,graffiti 40.70862873,-73.77945832,graffiti 40.78759961,-73.94758708,graffiti 40.79128453,-73.9448973,graffiti 40.55514623,-74.17715003,graffiti 40.79243965,-73.94405126,graffiti 40.74756012,-73.99410285,graffiti 40.67562429,-73.95327386,graffiti 40.65615537,-73.9600019,graffiti 40.67640574,-73.95830974,graffiti 40.67433198,-73.96202425,graffiti 40.65585712,-73.94272779,graffiti 40.71135362,-73.91966702,graffiti 40.67871904,-73.964906,graffiti 40.65992027,-73.95053479,graffiti 40.65762944,-73.96033981,graffiti 40.78909773,-73.94649169,graffiti 40.7681073,-73.81340977,graffiti 40.76918723,-73.83586583,graffiti 40.67306027,-73.93070838,graffiti 40.66026614,-73.9505958,graffiti 40.67936139,-73.9651364,graffiti 40.78997881,-73.94092953,graffiti 40.79046414,-73.94549385,graffiti 40.83752813,-73.84778215,graffiti 40.65996694,-73.95054196,graffiti 40.79323808,-73.94346914,graffiti 40.55516809,-74.17721846,graffiti 40.71354881,-73.77878553,graffiti 40.81717888,-73.93075341,graffiti 40.79123514,-73.94493346,graffiti 40.71429602,-73.95498904,graffiti 40.66049396,-73.95059924,graffiti 40.7914711,-73.94475991,graffiti 40.67866554,-73.96072027,graffiti 40.65651211,-73.95975661,graffiti 40.81717888,-73.93075341,graffiti 40.71328634,-73.76543622,graffiti 40.70787561,-73.95396181,graffiti 40.71320693,-73.76688298,graffiti 40.88586807,-73.91106577,graffiti 40.70935722,-73.78004745,graffiti 40.65563548,-73.95008025,graffiti 40.65559157,-73.9500947,graffiti 40.71320693,-73.76688298,graffiti 40.80697277,-73.94360919,graffiti 40.66130517,-73.94777282,graffiti 40.63705644,-74.15032293,graffiti 40.70809332,-73.78224462,graffiti 40.65720831,-73.95024847,graffiti 40.65596762,-73.95013767,graffiti 40.7909072,-73.94224325,graffiti 40.66785398,-73.93162938,graffiti 40.66517767,-73.98300085,graffiti 40.82245445,-73.94103439,graffiti 40.88257174,-73.86335595,graffiti 40.76010212,-73.80103643,graffiti 40.71345156,-73.76036753,graffiti 40.87223687,-73.86711954,graffiti 40.76113043,-73.835189,graffiti 40.66420288,-73.94610166,graffiti 40.76162193,-73.83532135,graffiti 40.71099632,-73.77044727,graffiti 40.87135923,-73.86298849,graffiti 40.6662939,-73.95111041,graffiti 40.76129887,-73.80265726,graffiti 40.76124391,-73.8026141,graffiti 40.66741733,-73.93124413,graffiti 40.75792576,-73.8284903,graffiti 40.70492444,-73.81263805,graffiti 40.88679017,-73.85425155,graffiti 40.66646494,-73.96049676,graffiti 40.88668334,-73.8611016,graffiti 40.66919663,-73.95477074,graffiti 40.81881958,-73.94484199,graffiti 40.66375583,-73.96046953,graffiti 40.66745028,-73.93126212,graffiti 40.70353606,-73.79519657,graffiti 40.66394956,-73.95040564,graffiti 40.60469479,-73.99935897,graffiti 40.66488676,-73.98326766,graffiti 40.87562098,-73.86703322,graffiti 40.66757653,-73.93124757,graffiti 40.6673597,-73.93124779,graffiti 40.734582,-73.9536583,graffiti 40.66360084,-73.93378562,graffiti 40.66679432,-73.93132408,graffiti 40.89214706,-73.85805923,graffiti 40.66450823,-73.95398092,graffiti 40.83195286,-73.88782285,graffiti 40.80657658,-73.91899219,graffiti 40.80862607,-73.9217712,graffiti 40.88167481,-73.86384961,graffiti 40.71350419,-73.75797216,graffiti 40.66724717,-73.93125872,graffiti 40.87535754,-73.86011279,graffiti 40.66871501,-73.95866421,graffiti 40.66121184,-73.94776208,graffiti 40.70518642,-73.81171038,graffiti 40.70660203,-73.75452746,graffiti 40.66846048,-73.95340504,graffiti 40.66713465,-73.93129128,graffiti 40.7126036,-73.76850109,graffiti 40.70839886,-73.79776779,graffiti 40.71344911,-73.76050822,graffiti 40.88095073,-73.86429589,graffiti 40.89281643,-73.85558022,graffiti 40.71257072,-73.76852645,graffiti 40.70619006,-73.75830169,graffiti 40.64470036,-73.90297314,graffiti 40.74888803,-73.89256793,graffiti 40.69179313,-73.95883742,graffiti 40.8819299,-73.86370805,graffiti 40.88344612,-73.86237049,graffiti 40.84424468,-73.85217982,graffiti 40.66650063,-73.93133159,graffiti 40.76117358,-73.83465826,graffiti 40.70440085,-73.79684939,graffiti 40.71328547,-73.76501057,graffiti 40.70491888,-73.81259478,graffiti 40.70781067,-74.00322094,graffiti 40.70730939,-73.80423819,graffiti 40.8893236,-73.85216276,graffiti 40.71339845,-73.76255007,graffiti 40.8811153,-73.86419792,graffiti 40.71350547,-73.75597738,graffiti 40.87469603,-73.8670423,graffiti 40.88388557,-73.86262273,graffiti 40.64322777,-73.90135375,graffiti 40.77098314,-73.79370749,graffiti 40.71292624,-73.76788314,graffiti 40.60723362,-73.99493637,graffiti 40.66422722,-73.9584363,graffiti 40.87504187,-73.86705246,graffiti 40.89219642,-73.85362844,graffiti 40.66718953,-73.93126239,graffiti 40.71120173,-73.77022292,graffiti 40.66521031,-73.93088234,graffiti 40.81909672,-73.94466472,graffiti 40.70300562,-73.79174666,graffiti 40.81738142,-73.88531121,graffiti 40.62615791,-74.02997248,graffiti 40.71794286,-73.73687418,graffiti 40.62580353,-73.92660742,graffiti 40.63544995,-74.02616472,graffiti 40.63406919,-74.02674064,graffiti 40.62550734,-74.03021355,graffiti 40.70963675,-73.83002488,noise 40.72349367,-73.98825325,noise 40.7174035,-73.95605473,noise 40.72349367,-73.98825325,noise 40.77841183,-73.978065,noise 40.7219211,-73.99003931,noise 40.72199558,-73.99640318,noise 40.86954934,-73.91634837,noise 40.6395296,-73.95128856,noise 40.72075077,-73.80929262,noise 40.84097674,-73.91600843,noise 40.86620047,-73.92805946,noise 40.83940401,-73.9376222,noise 40.72979695,-73.95838458,noise 40.80150481,-73.9484719,noise 40.82447734,-73.92672794,noise 40.72979695,-73.95838458,noise 40.79892213,-73.96308729,noise 40.76010264,-73.9839729,noise 40.72353759,-73.98822078,noise 40.81617096,-73.95792955,noise 40.85723958,-73.89942405,noise 40.7174035,-73.95605473,noise 40.85723958,-73.89942405,noise 40.73234787,-73.98493936,noise 40.85742119,-73.89995518,noise 40.68499326,-73.9285975,noise 40.72570723,-73.86519289,noise 40.85742119,-73.89995518,noise 40.66071028,-73.99409972,noise 40.77683657,-73.97921731,noise 40.73021752,-73.98200647,noise 40.61758878,-74.02955441,noise 40.72134726,-73.98814901,noise 40.80313018,-73.95632322,noise 40.8234803,-73.95134901,noise 40.80320163,-73.9565435,noise 40.71670872,-73.98915629,noise 40.83879622,-73.91813259,noise 40.8061208,-73.95342065,noise 40.72579037,-73.98293127,noise 40.72597827,-74.00133491,noise 40.70585178,-73.92171868,noise 40.82511601,-73.92540118,noise 40.76052809,-73.92288534,noise 40.76457045,-73.97989259,noise 40.66255118,-73.94751593,noise 40.74281404,-73.9886432,noise 40.72428492,-73.97559346,noise 40.77958449,-73.9818487,noise 40.77879404,-73.98205472,noise 40.72951901,-73.99981238,noise 40.71897538,-73.98468986,noise 40.73141011,-73.99697276,noise 40.6836583,-73.90787772,noise 40.71296515,-73.96372646,noise 40.68372976,-73.90798578,noise 40.69021387,-73.90577722,noise 40.69364957,-73.98570539,noise 40.69628785,-73.99118632,noise 40.6998478,-73.99103077,noise 40.69977918,-73.99107406,noise 40.6998478,-73.99103077,noise 40.62634586,-74.07515838,noise 40.82357411,-73.95253405,noise 40.8014616,-73.96497493,noise 40.63367687,-74.00656803,noise 40.63575526,-74.13495687,noise 40.68121511,-73.88062397,noise 40.63477463,-74.1355818,noise 40.68334267,-73.9608365,noise 40.86323823,-73.92692385,noise 40.57872982,-74.10859112,noise 40.72529184,-73.99247409,noise 40.74347374,-73.97675929,noise 40.74794728,-74.00084091,noise 40.73560939,-73.99266777,noise 40.70277711,-73.92938633,noise 40.69064663,-73.90804115,noise 40.85429249,-73.90025992,noise 40.68334267,-73.9608365,noise 40.73046017,-74.00818317,noise 40.74281404,-73.9886432,noise 40.76879865,-73.95525907,noise 40.76879865,-73.95525907,noise 40.76285899,-73.98940146,noise 40.68334267,-73.9608365,noise 40.70575447,-74.00975269,noise 40.80210822,-73.95395081,noise 40.80210822,-73.95395081,noise 40.85682624,-73.93077359,noise 40.85440019,-73.88339298,noise 40.68596764,-73.82572953,noise 40.88713601,-73.90407679,noise 40.77075354,-73.95694015,noise 40.72821933,-73.98196732,noise 40.80682079,-73.96105283,noise 40.6471319,-74.00462341,noise 40.84861945,-73.91801929,noise 40.85472527,-73.91642485,noise 40.82732499,-73.94980691,noise 40.62634586,-74.07515838,noise 40.58073897,-73.83395295,noise 40.66904352,-74.00357954,noise 40.63579097,-74.13493533,noise 40.86627931,-73.88619945,noise 40.71146699,-73.95712994,noise 40.81620511,-73.94179499,noise 40.71149171,-73.95719485,noise 40.71144226,-73.95706142,noise 40.80285303,-73.95650039,noise 40.85230079,-73.9272395,noise 40.62666393,-74.07564508,noise 40.84151083,-73.92223128,noise 40.84589889,-73.83154171,noise 40.86954934,-73.91634837,noise 40.65523619,-73.9609431,noise 40.6903513,-73.84107575,noise 40.68643738,-73.92919089,noise 40.71144313,-73.94609232,noise 40.61136982,-73.97348455,noise 40.69177546,-73.86205935,noise 40.68220447,-73.93787741,noise 40.81888134,-73.95424269,noise 40.66064331,-73.96062997,noise 40.62359289,-73.97579959,noise 40.82720886,-73.89538636,noise 40.84625814,-73.93873623,noise 40.82720886,-73.89538636,noise 40.72579598,-73.98373582,noise 40.75256615,-73.90524869,noise 40.67596498,-73.81819204,noise 40.86222644,-73.92015359,noise 40.82009757,-73.95507645,noise 40.72570723,-73.86519289,noise 40.72570723,-73.86519289,noise 40.8817295,-73.88374645,noise 40.75256615,-73.90524869,noise 40.62863721,-74.08003528,noise 40.81645343,-73.890685,noise 40.71881923,-73.98712494,noise 40.81645343,-73.890685,noise 40.70410551,-73.93390408,noise 40.61136982,-73.97348455,noise 40.70547174,-73.94290878,noise 40.7562659,-73.97179177,noise 40.66064331,-73.96062997,noise 40.85078176,-73.93938631,noise 40.51770136,-74.24054207,noise 40.6631617,-73.95017554,noise 40.71593199,-73.98957125,noise 40.68585026,-73.86501746,noise 40.77593675,-73.90093331,noise 40.6471319,-74.00462341,noise 40.64164982,-74.01390152,noise 40.66064331,-73.96062997,noise 40.61711479,-73.92862328,noise 40.82517196,-73.9415017,noise 40.82473022,-73.94181283,noise 40.74539709,-73.90552595,noise 40.68186975,-73.94937197,noise 40.75911212,-73.84237722,noise 40.82641485,-73.94059367,noise 40.76155088,-73.96658422,noise 40.76889103,-73.98209349,noise 40.70495019,-73.94282267,noise 40.65218651,-73.94106235,noise 40.82622167,-73.92469174,noise 40.70691586,-74.003697,noise 40.70381897,-73.94207345,noise 40.82455463,-73.9419539,noise 40.68017456,-73.9457174,noise 40.82486192,-73.94172961,noise 40.84459402,-73.93719807,noise 40.83015919,-73.94166715,noise 40.70585178,-73.92171868,noise 40.72279616,-73.98523374,noise 40.79465105,-73.97178273,noise 40.82557253,-73.94119784,noise 40.82486192,-73.94172961,noise 40.80256169,-73.94299166,noise 40.70381888,-73.94188591,noise 40.75979023,-73.98792559,noise 40.76165925,-73.98656075,noise 40.71281811,-73.90376855,noise 40.87091201,-73.89153556,noise 40.79465105,-73.97178273,noise 40.79532613,-73.97128765,noise 40.71278722,-73.90293535,noise 40.86466396,-73.92889266,noise 40.7959573,-73.9708287,noise 40.58740438,-73.80982103,noise 40.58740438,-73.80982103,noise 40.58740438,-73.80982103,noise 40.61019502,-74.16303374,noise 40.58740438,-73.80982103,noise 40.58740438,-73.80982103,noise 40.58740438,-73.80982103,noise 40.79465105,-73.97178273,noise 40.59803021,-73.9637781,noise 40.82455463,-73.9419539,noise 40.79532613,-73.97128765,noise 40.60834433,-74.16543863,noise 40.85358286,-73.93222649,noise 40.82517196,-73.9415017,noise 40.58740438,-73.80982103,noise 40.85372003,-73.93211429,noise 40.85372003,-73.93211429,noise 40.78051818,-73.9539838,noise 40.86553576,-73.9272684,noise 40.86553576,-73.9272684,noise 40.86553576,-73.9272684,noise 40.86553576,-73.9272684,noise 40.68209912,-73.96033246,noise 40.78311615,-73.95085853,noise 40.71455156,-73.93789415,noise 40.83565395,-73.89494665,noise 40.74218007,-73.85086894,noise 40.66757643,-73.89184098,noise 40.84072114,-73.93702103,noise 40.81848754,-73.93950243,noise 40.7440955,-73.98561878,noise 40.88956629,-73.89907857,noise 40.67386906,-73.95013149,noise 40.84700608,-73.83227987,noise 40.68327789,-73.99546783,noise 40.82878769,-73.91260912,noise 40.68186975,-73.94937197,noise 40.85154584,-73.86584874,noise 40.72473421,-73.98739077,noise 40.68111224,-73.97435457,noise 40.85059339,-73.9011402,noise 40.85219466,-73.89022864,noise 40.65942046,-73.93860146,noise 40.86627931,-73.88619945,noise 40.8384769,-73.91310235,noise 40.7111325,-73.96654457,noise 40.80996679,-73.9550291,noise 40.63283667,-74.02723013,noise 40.72597827,-74.00133491,noise 40.71472477,-73.99960681,noise 40.70963675,-73.83002488,noise 40.71396775,-73.95790388,noise 40.62634586,-74.07515838,noise 40.70478512,-74.01409863,noise 40.77632971,-73.90147431,noise 40.6395296,-73.95128856,noise 40.7175186,-73.9912232,noise 40.76667465,-73.82574578,noise 40.65067197,-74.01349978,noise 40.66812494,-73.95176873,noise 40.61655033,-73.93020153,noise 40.84628833,-73.93872536,noise 40.76282852,-73.97156157,noise 40.68935074,-73.81613264,noise 40.61655033,-73.93020153,noise 40.7107541,-73.96785411,noise 40.75863203,-73.98878489,noise 40.69318384,-73.99858642,noise 40.7296035,-73.98823774,noise 40.73322991,-73.99867938,noise 40.81364386,-73.86333851,noise 40.69601188,-73.9675619,noise 40.66735677,-73.89176204,noise 40.7055759,-74.01144784,noise 40.72395097,-73.98036663,noise 40.74726128,-73.87444248,noise 40.68187917,-73.7660803,noise 40.70882078,-73.99896842,noise 40.76045412,-73.91527612,noise 40.82415421,-73.9483821,noise 40.80833502,-73.95861001,noise 40.68186975,-73.94937197,noise 40.755483,-73.88616134,noise 40.72281586,-73.98976139,noise 40.76125128,-73.97585426,noise 40.72488931,-73.97828105,noise 40.69093118,-73.94542377,noise 40.75216174,-73.93571157,noise 40.78131764,-73.94922052,noise 40.69313305,-73.96912113,noise 40.82018899,-73.89067525,noise 40.80281446,-73.95612476,noise 40.8301891,-73.91855512,noise 40.65048278,-74.01167623,noise 40.73234787,-73.98493936,noise 40.67962217,-73.96520477,noise 40.70518692,-73.90619969,noise 40.79100712,-73.93906876,noise 40.6277839,-74.00448517,noise 40.71258522,-73.96023496,noise 40.71779715,-73.95917128,noise 40.75300396,-73.93496002,noise 40.74736717,-73.88656498,noise 40.68220124,-73.83656667,noise 40.74258786,-73.98041167,noise 40.71226271,-73.99877719,noise 40.82964543,-73.94069196,noise 40.79081232,-73.93920978,noise 40.68821529,-73.96278078,noise 40.72934923,-73.95749728,noise 40.75979023,-73.98792559,noise 40.71757069,-73.99050532,noise 40.64146315,-74.01410687,noise 40.71153872,-73.94507144,noise 40.65202582,-74.00518595,noise 40.76103983,-73.97537424,noise 40.69898345,-73.92875201,noise 40.66253464,-73.9537516,noise 40.72612272,-73.79059206,noise 40.69313307,-73.96920047,noise 40.80204282,-73.9551392,noise 40.83369619,-73.94535364,noise 40.70336533,-73.92634531,noise 40.73645654,-73.98328577,noise 40.66253464,-73.9537516,noise 40.85180412,-73.93192829,noise 40.64018175,-73.95530567,noise 40.74253837,-73.85416655,noise 40.81613045,-73.88594199,noise 40.64018175,-73.95530567,noise 40.69200105,-73.93384396,noise 40.63276295,-74.11792389,noise 40.75228245,-73.935614,noise 40.85219466,-73.89022864,noise 40.76579016,-73.98728192,noise 40.6395296,-73.95128856,noise 40.58485012,-73.81903413,noise 40.67915413,-73.98342993,noise 40.62343625,-74.02509733,noise 40.70963675,-73.83002488,noise 40.77593675,-73.90093331,noise 40.8020711,-73.96555975,noise 40.79186116,-73.94539159,noise 40.62641172,-74.07518007,noise 40.76045412,-73.91527612,noise 40.62641172,-74.07518007,noise 40.70889971,-73.95472216,noise 40.80649425,-73.95384302,noise 40.69300804,-73.99418701,noise 40.71230924,-73.99436207,noise 40.72111717,-73.99421703,noise 40.61591319,-74.0341461,noise 40.68723335,-73.95690033,noise 40.67915413,-73.98342993,noise 40.7221652,-73.98815969,noise 40.87513038,-73.91046542,noise 40.8610658,-73.8934279,noise 40.76754686,-73.91203244,noise 40.73645654,-73.98328577,noise 40.64018175,-73.95530567,noise 40.72111717,-73.99421703,noise 40.61283368,-74.03364748,noise 40.70518692,-73.90619969,noise 40.72089464,-73.99103516,noise 40.75007365,-73.98636819,noise 40.72022229,-73.99275244,noise 40.72559992,-73.97687376,noise 40.69278919,-73.97771814,noise 40.82720886,-73.89538636,noise 40.86720969,-73.92253385,noise 40.71965964,-73.99306996,noise 40.86720969,-73.92253385,noise 40.67141401,-73.9844268,noise 40.83138719,-73.92897159,noise 40.69278919,-73.97771814,noise 40.68681048,-74.00182811,noise 40.67915413,-73.98342993,noise 40.86208686,-73.86942465,noise 40.83199655,-73.94397464,noise 40.76121189,-73.98690016,noise 40.68689522,-73.99090992,noise 40.79135655,-73.94628763,noise 40.73249706,-74.00183297,noise 40.67486925,-73.98154192,noise 40.70518692,-73.90619969,noise 40.70518692,-73.90619969,noise 40.79892213,-73.96308729,noise 40.72386918,-73.98388421,noise 40.75007365,-73.98636819,noise 40.67460305,-73.98177633,noise 40.68344291,-73.97605189,noise 40.61682225,-73.93050381,noise 40.8381204,-73.94479707,noise 40.80737194,-73.94050952,noise 40.8658736,-73.92765489,noise 40.80078776,-73.95334131,noise 40.77096261,-73.92142192,noise 40.76527581,-73.91791611,noise 40.59812047,-73.96278419,noise 40.51320075,-74.19685136,noise 40.70495019,-73.94282267,noise 40.79132083,-73.9462046,noise 40.72386918,-73.98388421,noise 40.63448326,-73.90179903,noise 40.77683657,-73.97921731,noise 40.83255063,-73.94325867,noise 40.80313018,-73.95632322,noise 40.64460505,-73.95210284,noise 40.51373631,-74.19666593,noise 40.72614282,-74.00569321,noise 40.72532531,-73.97621002,noise 40.76426695,-73.9157911,noise 40.72239575,-73.98801534,noise 40.67915413,-73.98342993,noise 40.7221652,-73.98815969,noise 40.83255063,-73.94325867,noise 40.80122686,-73.95321097,noise 40.86458244,-73.89417426,noise 40.73291421,-74.00397627,noise 40.51373631,-74.19666593,noise 40.72532531,-73.97621002,noise 40.7448016,-73.99330192,noise 40.75444761,-73.93013645,noise 40.85797909,-73.93090253,noise 40.83369974,-73.91876764,noise 40.83369974,-73.91876764,noise 40.69562294,-73.92306139,noise 40.76431686,-73.9957836,noise 40.74736158,-73.88645672,noise 40.69623474,-73.90438391,noise 40.71490799,-73.96231136,noise 40.63201296,-74.01317536,noise 40.76331469,-73.92819586,noise 40.8506451,-73.94049974,noise 40.74908619,-73.99389339,noise 40.71829162,-73.98247866,noise 40.70580672,-73.92005962,noise 40.6471319,-74.00462341,noise 40.68529311,-73.88808399,noise 40.70585633,-73.92035893,noise 40.70314672,-73.98786372,noise 40.77683205,-73.91169522,noise 40.72239575,-73.98801534,noise 40.67915413,-73.98342993,noise 40.78065121,-73.97641773,noise 40.72532531,-73.97621002,noise 40.72239575,-73.98801534,noise 40.66086081,-73.89881906,noise 40.85427704,-73.90809687,noise 40.76003757,-73.99144861,noise 40.70568851,-73.91979287,noise 40.77298743,-73.91638663,noise 40.67828369,-73.87800818,noise 40.76743782,-73.92062464,noise 40.6814767,-73.83470443,noise 40.6471319,-74.00462341,noise 40.72417851,-73.9788008,noise 40.84760833,-73.93834824,noise 40.66086081,-73.89881906,noise 40.86380937,-73.92730283,noise 40.65585434,-73.90528154,noise 40.65692084,-73.92609024,noise 40.76889103,-73.98209349,noise 40.87492967,-73.86497351,noise 40.64850164,-74.00081803,noise 40.71845487,-73.99775977,noise 40.70535918,-73.9428692,noise 40.8506451,-73.94049974,noise 40.73243667,-74.00193039,noise 40.78065121,-73.97641773,noise 40.70051536,-73.88782402,noise 40.73431954,-74.00324387,noise 40.86437703,-73.92653575,noise 40.64846321,-74.00075677,noise 40.80963622,-73.94584301,noise 40.68973631,-73.89032301,noise 40.68973631,-73.89032301,noise 40.75189516,-73.96758883,noise 40.75189516,-73.96758883,noise 40.75567863,-73.88416497,noise 40.80077953,-73.95334854,noise 40.80934133,-73.94921721,noise 40.7309737,-74.00286485,noise 40.65488243,-73.96188035,noise 40.63310155,-74.14138618,noise 40.81329512,-73.94623019,noise 40.81711658,-73.94800821,noise 40.75257621,-73.96889867,noise 40.87575492,-73.85086586,noise 40.70535918,-73.9428692,noise 40.61505292,-74.01290187,noise 40.85418396,-73.84233988,noise 40.79621626,-73.94969673,noise 40.81261065,-73.95682636,noise 40.83378703,-73.94035943,noise 40.58740438,-73.80982103,noise 40.82574418,-73.90955268,noise 40.7440955,-73.98561878,noise 40.83288941,-73.94016509,noise 40.83300209,-73.94044686,noise 40.78229519,-73.96512584,noise 40.87505157,-73.86594234,noise 40.76484228,-73.98052786,noise 40.65488243,-73.96188035,noise 40.82584877,-73.90991748,noise 40.68464082,-73.88908745,noise 40.71288274,-73.96350286,noise 40.67546383,-73.90966636,noise 40.61466861,-74.01328719,noise 40.79961505,-73.93994217,noise 40.75879658,-73.98747456,noise 40.79993107,-73.94066426,noise 40.77541622,-73.91982803,noise 40.71409849,-73.98961483,noise 40.61466861,-74.01328719,noise 40.75299917,-73.96988743,noise 40.61505292,-74.01290187,noise 40.83288941,-73.94016509,noise 40.80021861,-73.93940707,noise 40.69624384,-73.99003593,noise 40.6989049,-73.93517148,noise 40.75256249,-73.96890951,noise 40.81851125,-73.93764539,noise 40.78396642,-73.8117187,noise 40.75789526,-73.96789273,noise 40.70381897,-73.94207345,noise 40.73907895,-74.00308172,noise 40.58740438,-73.80982103,noise 40.6754806,-73.91005569,noise 40.76484228,-73.98052786,noise 40.70133452,-73.92683804,noise 40.6812966,-73.83931985,noise 40.68920148,-73.95722359,noise 40.69628785,-73.99118632,noise 40.70023812,-73.92492421,noise 40.70381897,-73.94207345,noise 40.6998478,-73.99103077,noise 40.70381897,-73.94207345,noise 40.70381897,-73.94207345,noise 40.68958209,-73.9721373,noise 40.70535918,-73.9428692,noise 40.68129694,-73.93471268,noise 40.74480335,-73.95340939,noise 40.7657348,-73.98360333,noise 40.66919734,-73.89645248,noise 40.78768567,-73.97501409,noise 40.60222094,-73.7548104,noise 40.72712725,-73.9841937,noise 40.61580613,-74.03418927,noise 40.68327789,-73.99546783,noise 40.77599307,-73.96446118,noise 40.81735629,-73.93869419,noise 40.7516232,-73.88274636,noise 40.80416841,-73.96670009,noise 40.63548533,-73.92380448,noise 40.72111717,-73.99421703,noise 40.62634586,-74.07515838,noise 40.69822499,-73.80633492,noise 40.72775865,-73.8922845,noise 40.68198773,-73.83697462,noise 40.70499369,-73.92323452,noise 40.62526616,-73.92756266,noise 40.79186116,-73.94539159,noise 40.77100777,-73.96179583,noise 40.73260346,-73.98768155,noise 40.66820407,-73.9506476,noise 40.64814187,-73.94928585,noise 40.73396767,-73.93732399,noise 40.81301788,-73.94619429,noise 40.75648094,-73.85573865,noise 40.76110313,-73.86021919,noise 40.75940857,-73.85712564,noise 40.75807766,-73.8573559,noise 40.85162892,-73.88426897,noise 40.80311646,-73.95631961,noise 40.83509471,-73.88696109,noise 40.80311646,-73.95631961,noise 40.69464039,-73.84847981,noise 40.6395296,-73.95128856,noise 40.72253032,-73.98881983,noise 40.68169389,-73.93778775,noise 40.83940401,-73.9376222,noise 40.81848754,-73.93950243,noise 40.70868263,-73.95410192,noise 40.76494318,-73.91720536,noise 40.68186975,-73.94937197,noise 40.68334267,-73.9608365,noise 40.68158489,-73.97696835,noise 40.66099446,-73.96012155,noise 40.62058398,-74.0269982,noise 40.70889971,-73.95472216,noise 40.70297231,-73.9299199,noise 40.6395296,-73.95128856,noise 40.70159926,-73.7524108,noise 40.66990909,-73.95895546,noise 40.83643871,-73.91841014,noise 40.88013419,-73.90393863,noise 40.68334267,-73.9608365,noise 40.69822499,-73.80633492,noise 40.88949966,-73.89821789,noise 40.75062716,-73.97999424,noise 40.72483716,-73.97832075,noise 40.75155382,-74.0036309,noise 40.71882438,-73.96116918,noise 40.59915804,-73.9892546,noise 40.81726755,-73.9422565,noise 40.70568851,-73.91979287,noise 40.83114266,-73.92857074,noise 40.84572834,-73.92061073,noise 40.79585513,-73.93552852,noise 40.84015935,-73.92474463,noise 40.76705538,-73.98632501,noise 40.85180412,-73.93192829,noise 40.68334267,-73.9608365,noise 40.79585513,-73.93552852,noise 40.7295519,-73.99657235,noise 40.75826062,-73.8419172,noise 40.77631597,-73.90145267,noise 40.83116528,-73.92114846,noise 40.77578986,-73.90248607,noise 40.72228596,-73.98807308,noise 40.67338315,-73.95669659,noise 40.67915413,-73.98342993,noise 40.82442248,-73.92258728,noise 40.84589492,-73.89851954,noise 40.67915413,-73.98342993,noise 40.80198594,-73.96531779,noise 40.79339574,-73.9404245,noise 40.79585513,-73.93552852,noise 40.73748027,-73.88350738,noise 40.68592584,-73.92332497,noise 40.67915413,-73.98342993,noise 40.87959654,-73.90430103,noise 40.70509894,-73.90601587,noise 40.82925663,-73.94837452,noise 40.68947714,-73.96958077,noise 40.6631617,-73.95017554,noise 40.79764894,-73.93333807,noise 40.80148664,-73.96612352,noise 40.80077953,-73.95334854,noise 40.75687622,-73.94435185,noise 40.71571817,-73.99320384,noise 40.83363944,-73.91888697,noise 40.73249706,-74.00183297,noise 40.6729525,-73.92516041,noise 40.68142275,-73.95710239,noise 40.64062862,-74.01497148,noise 40.71571817,-73.99320384,noise 40.66831596,-73.97376111,noise 40.80081799,-73.95343159,noise 40.80193926,-73.96524919,noise 40.51478878,-74.24842226,noise 40.78536042,-73.97298193,noise 40.64018175,-73.95530567,noise 40.85543338,-73.85535051,noise 40.80746061,-73.919309,noise 40.68035203,-73.97476588,noise 40.72804064,-73.98023554,noise 40.63597511,-73.97814065,noise 40.68924657,-73.96954482,noise 40.73234787,-73.98493936,noise 40.80196946,-73.96527807,noise 40.83369974,-73.91876764,noise 40.67973435,-73.97431184,noise 40.80200242,-73.9653539,noise 40.82401775,-73.84919329,noise 40.75365328,-73.97339182,noise 40.73234787,-73.98493936,noise 40.79859323,-73.93351771,noise 40.73234787,-73.98493936,noise 40.68935074,-73.81613264,noise 40.85701115,-73.93248689,noise 40.79823931,-73.93378172,noise 40.64018175,-73.95530567,noise 40.86093855,-73.92753011,noise 40.82545642,-73.84952968,noise 40.65523653,-73.96193061,noise 40.80640354,-73.95350715,noise 40.65528948,-74.0015173,noise 40.86233046,-73.91974856,noise 40.836905,-73.90376615,noise 40.65601811,-73.95994792,noise 40.71959478,-73.93996017,noise 40.71961944,-73.93986635,noise 40.69922445,-73.93724846,noise 40.68336182,-73.8731999,noise 40.80071126,-73.9319697,noise 40.61252618,-74.03392466,noise 40.63437841,-73.96946177,noise 40.79789784,-73.93184977,noise 40.64051333,-74.01508315,noise 40.80603558,-73.94677066,noise 40.82837372,-73.8240774,noise 40.64051333,-74.01508315,noise 40.6731273,-73.87388268,noise 40.64051333,-74.01508315,noise 40.62240577,-74.08856877,noise 40.67296764,-73.94185871,noise 40.82588748,-73.84964072,noise 40.61859756,-74.13259165,noise 40.68124733,-73.97719921,noise 40.64051333,-74.01508315,noise 40.83750335,-73.91059557,noise 40.68344109,-73.87290048,noise 40.68634094,-73.955949,noise 40.74315645,-73.91870121,noise 40.65523653,-73.96193061,noise 40.86049954,-73.92775111,noise 40.73249706,-74.00183297,noise 40.73243667,-74.00193039,noise 40.68634094,-73.955949,noise 40.68344109,-73.87290048,noise 40.85228823,-73.89048513,noise 40.75964376,-73.98062684,noise 40.65488243,-73.96188035,noise 40.760405,-73.98747426,noise 40.67004166,-73.93656937,noise 40.71795041,-73.95792662,noise 40.73588925,-73.99120995,noise 40.77621837,-73.97595354,noise 40.67532483,-73.86806346,noise 40.73443443,-73.98990393,noise 40.77368111,-73.97108758,noise 40.70665882,-73.72964735,noise 40.70968754,-74.01167217,noise 40.76975028,-73.96059435,noise 40.82290375,-73.89688173,noise 40.6471319,-74.00462341,noise 40.60998609,-73.9623778,noise 40.72531106,-73.99247769,noise 40.62633744,-74.07543576,noise 40.72934923,-73.95749728,noise 40.67293525,-73.96312818,noise 40.62633744,-74.07543576,noise 40.85236191,-73.88442313,noise 40.77735274,-73.95213373,noise 40.77740776,-73.95243337,noise 40.72349367,-73.98825325,noise 40.73252451,-74.00168864,noise 40.85237109,-73.9346279,noise 40.70701251,-73.76579012,noise 40.69742251,-73.93479065,noise 40.7167266,-73.9589122,noise 40.8234321,-73.90158523,noise 40.72349367,-73.98825325,noise 40.63423412,-73.9640647,noise 40.72099783,-73.94087523,noise 40.74036065,-74.00578104,noise 40.52770124,-74.23095204,noise 40.71450243,-73.99812784,noise 40.81453554,-73.95914444,noise 40.69295561,-73.95534963,noise 40.7572476,-73.96828648,noise 40.79363516,-73.9416486,noise 40.64013899,-73.9668468,noise 40.61960115,-74.02782628,noise 40.72953107,-73.9804155,noise 40.70336533,-73.92634531,noise 40.76227854,-73.92601303,noise 40.69742251,-73.93479065,noise 40.61960115,-74.02782628,noise 40.72054079,-73.99468245,noise 40.85797909,-73.93090253,noise 40.71872314,-73.98690851,noise 40.72349367,-73.98825325,noise 40.71206751,-73.96340953,noise 40.63602447,-74.13477006,noise 40.75614579,-73.92879555,noise 40.66698209,-73.99400183,noise 40.66820407,-73.9506476,noise 40.6922899,-73.93029173,noise 40.68021313,-73.82120538,noise 40.70738147,-73.83634263,noise 40.71177784,-73.95193553,noise 40.59959958,-73.98581555,noise 40.7221652,-73.98815969,noise 40.76532077,-73.77189536,noise 40.69720289,-73.92153771,noise 40.76568266,-73.98364305,noise 40.6636087,-73.95592076,noise 40.70279939,-73.92990926,noise 40.71522127,-73.99171409,noise 40.81903204,-73.91140077,noise 40.76743782,-73.92062464,noise 40.73342881,-73.73685633,noise 40.81903204,-73.91140077,noise 40.72136411,-73.99266213,noise 40.81453554,-73.95914444,noise 40.755483,-73.88616134,noise 40.75024188,-73.99859603,noise 40.79960781,-73.94187452,noise 40.64460505,-73.95210284,noise 40.64160011,-73.96094027,noise 40.7327221,-74.00327627,noise 40.79859323,-73.93351771,noise 40.79859323,-73.93351771,noise 40.74102858,-73.92167375,noise 40.82290375,-73.89688173,noise 40.80444141,-73.94790614,noise 40.66151277,-73.95176991,noise 40.74736717,-73.88656498,noise 40.74736158,-73.88645672,noise 40.69815738,-73.9246092,noise 40.77659153,-73.95673418,noise 40.66445137,-73.99332441,noise 40.86720969,-73.92253385,noise 40.77546982,-73.95206287,noise 40.86720969,-73.92253385,noise 40.86720969,-73.92253385,noise 40.71606648,-73.98949909,noise 40.82290375,-73.89688173,noise 40.8313358,-73.92166139,noise 40.6949232,-73.98617031,noise 40.8370522,-73.93839055,noise 40.79843224,-73.93517929,noise 40.6949232,-73.98617031,noise 40.68344109,-73.87290048,noise 40.66122314,-73.98866791,noise 40.65692084,-73.92609024,noise 40.6471319,-74.00462341,noise 40.74494513,-73.9213696,noise 40.87678755,-73.8744474,noise 40.70381897,-73.94207345,noise 40.73443443,-73.98990393,noise 40.75171837,-73.85539165,noise 40.81384588,-73.94428254,noise 40.73693224,-73.99091392,noise 40.68180215,-73.93033154,noise 40.73595507,-73.99047744,noise 40.67893494,-73.96195674,noise 40.73693224,-73.99091392,noise 40.79837608,-73.93297977,noise 40.70840805,-73.79675422,noise 40.70968754,-74.01167217,noise 40.76041961,-73.97582929,noise 40.79789784,-73.93184977,noise 40.71331062,-74.01169085,noise 40.71331062,-74.01169085,noise 40.78536042,-73.97298193,noise 40.70619093,-74.00916485,noise 40.6471319,-74.00462341,noise 40.61915435,-73.99787117,noise 40.82577766,-73.84961567,noise 40.74151084,-74.00061348,noise 40.72913096,-73.95378476,noise 40.75338229,-73.93917536,noise 40.83215401,-73.93541385,noise 40.76346859,-73.99281632,noise 40.85237109,-73.9346279,noise 40.84037935,-73.86265474,noise 40.7212051,-73.99670626,noise 40.63597511,-73.97814065,noise 40.68158489,-73.97696835,noise 40.7402949,-74.00166358,noise 40.70827533,-73.79160396,noise 40.68138729,-73.97707658,noise 40.74003415,-74.00166357,noise 40.82570934,-73.93527557,noise 40.7263875,-73.78979388,noise 40.68334267,-73.9608365,noise 40.79793202,-73.93399151,noise 40.71461498,-73.99959599,noise 40.77593675,-73.90093331,noise 40.82720886,-73.89538636,noise 40.80071126,-73.9319697,noise 40.71778618,-73.94032975,noise 40.78536042,-73.97298193,noise 40.77683657,-73.97921731,noise 40.82720886,-73.89538636,noise 40.82720886,-73.89538636,noise 40.61655033,-73.93020153,noise 40.72998331,-73.95762316,noise 40.68138729,-73.97707658,noise 40.76346859,-73.99281632,noise 40.76282547,-73.81624387,noise 40.70889971,-73.95472216,noise 40.83573106,-73.91162427,noise 40.72953107,-73.9804155,noise 40.7215366,-73.98762948,noise 40.72159972,-73.987597,noise 40.76879865,-73.95525907,noise 40.82964818,-73.94630008,noise 40.70336533,-73.92634531,noise 40.76346859,-73.99281632,noise 40.73051434,-73.98470164,noise 40.58740438,-73.80982103,noise 40.72211359,-74.0040081,noise 40.73234787,-73.98493936,noise 40.83985867,-73.9224609,noise 40.65123618,-73.95846962,noise 40.69817437,-73.92129133,noise 40.67915413,-73.98342993,noise 40.81113144,-73.95048021,noise 40.81113144,-73.95048021,noise 40.81113144,-73.95048021,noise 40.7985614,-73.93545728,noise 40.72666597,-73.9830898,noise 40.64800706,-74.01096228,noise 40.81453554,-73.95914444,noise 40.84348354,-73.93428967,noise 40.79789784,-73.93184977,noise 40.63975221,-73.96766852,noise 40.79823931,-73.93378172,noise 40.76019044,-73.9837202,noise 40.73963427,-73.87009406,noise 40.72423534,-73.99778483,noise 40.73321576,-73.98992216,noise 40.67048825,-73.80265558,noise 40.81823824,-73.85414156,noise 40.78311615,-73.95085853,noise 40.6471319,-74.00462341,noise 40.81676438,-73.88583613,noise 40.67896315,-73.94964818,noise 40.70383808,-73.94186064,noise 40.81113144,-73.95048021,noise 40.76109628,-73.98425784,noise 40.7129296,-73.96415573,noise 40.76142288,-73.98404839,noise 40.68380729,-73.97297621,noise 40.82410397,-73.9528408,noise 40.86605105,-73.88573706,noise 40.721249,-73.93830279,noise 40.77376928,-73.97247756,noise 40.77376928,-73.97247756,noise 40.70968754,-74.01167217,noise 40.70140101,-73.88144258,noise 40.70623441,-73.83460336,noise 40.72088393,-73.99571419,noise 40.73280725,-73.9749589,noise 40.80202409,-73.94968151,noise 40.80133264,-73.9501877,noise 40.80186016,-73.9514226,noise 40.72953107,-73.9804155,noise 40.72986179,-73.99143445,noise 40.86595937,-73.86443495,noise 40.68765152,-73.87039725,noise 40.7733522,-73.99012188,noise 40.71778618,-73.94032975,noise 40.65675108,-73.96027185,noise 40.72844754,-73.98467686,noise 40.81987225,-73.93693598,noise 40.7566294,-73.92530101,noise 40.61023813,-73.98370275,noise 40.59177928,-73.96068497,noise 40.76010264,-73.9839729,noise 40.70827533,-73.79160396,noise 40.76754135,-73.9120144,noise 40.75686026,-73.96709552,noise 40.74157946,-74.00037531,noise 40.78666696,-73.94883727,noise 40.79954126,-73.95955456,noise 40.70580148,-73.92041309,noise 40.64768341,-73.95573308,noise 40.80519181,-73.95722851,noise 40.85702748,-73.92773319,noise 40.85193651,-73.90556259,noise 40.78999865,-73.94791744,noise 40.86597584,-73.86443491,noise 40.8381204,-73.94479707,noise 40.75444761,-73.93013645,noise 40.75454927,-73.93029877,noise 40.74494513,-73.9213696,noise 40.73029727,-73.95326078,noise 40.80081799,-73.95343159,noise 40.63131316,-74.02784198,noise 40.86340822,-73.91846744,noise 40.81986735,-73.92017551,noise 40.72933786,-74.0010319,noise 40.68523624,-73.92652759,noise 40.75952137,-73.98926844,noise 40.71101458,-73.95843959,noise 40.72408245,-73.97885855,noise 40.68958479,-73.97198946,noise 40.73249706,-74.00183297,noise 40.64097516,-74.09435143,noise 40.69606959,-73.8457863,noise 40.81431803,-73.94440859,noise 40.73515643,-73.99159253,noise 40.74705161,-73.88665213,noise 40.73243667,-74.00193039,noise 40.74705161,-73.88665213,noise 40.76889103,-73.98209349,noise 40.75964376,-73.98062684,noise 40.88483775,-73.87962546,noise 40.760405,-73.98747426,noise 40.75171837,-73.85539165,noise 40.678639,-73.97350828,noise 40.74416182,-73.98986637,noise 40.84756211,-73.89370977,noise 40.78654778,-73.95255323,noise 40.70644156,-73.94480152,noise 40.73715174,-73.99002982,noise 40.68535458,-73.84217297,noise 40.70483013,-73.93389615,noise 40.85816685,-73.89583654,noise 40.70711579,-74.01067624,noise 40.68596764,-73.82572953,noise 40.67238623,-73.98945189,noise 40.89016183,-73.842609,noise 40.78229519,-73.96512584,noise 40.75596635,-73.80457526,noise 40.7159289,-73.96191037,noise 40.61330357,-73.98052524,noise 40.82388692,-73.9523062,noise 40.74642855,-73.8953472,noise 40.84483116,-73.93924716,noise 40.84486687,-73.9392905,noise 40.84498504,-73.93957231,noise 40.6277839,-74.00448517,noise 40.62633744,-74.07543576,noise 40.70247911,-73.92687285,noise 40.77187827,-73.99006794,noise 40.83122484,-73.8508934,noise 40.69313305,-73.96912113,noise 40.77187827,-73.99006794,noise 40.82796013,-73.94620388,noise 40.6808768,-73.9448371,noise 40.72605395,-73.98353372,noise 40.7600999,-73.98395847,noise 40.80441984,-73.95536877,noise 40.82703833,-73.89499639,noise 40.70278017,-73.92990207,noise 40.6776512,-73.94976814,noise 40.82733479,-73.89502121,noise 40.71728083,-73.95832025,noise 40.71715462,-73.95846823,noise 40.81645343,-73.890685,noise 40.80210822,-73.95395081,noise 40.80313018,-73.95632322,noise 40.80210822,-73.95395081,noise 40.80313018,-73.95632322,noise 40.80241317,-73.95467661,noise 40.71531994,-73.98988518,noise 40.74883018,-73.98551309,noise 40.76010264,-73.9839729,noise 40.74883018,-73.98551309,noise 40.76879865,-73.95525907,noise 40.69864338,-73.95696508,noise 40.80313018,-73.95632322,noise 40.74883018,-73.98551309,noise 40.80313018,-73.95632322,noise 40.80248234,-73.95609608,noise 40.66919734,-73.89645248,noise 40.68334267,-73.9608365,noise 40.8323232,-73.91675292,noise 40.72605395,-73.98353372,noise 40.69897278,-73.95701897,noise 40.63613537,-74.11613915,noise 40.65014565,-74.00507409,noise 40.80275684,-73.95617176,noise 40.80272942,-73.95623318,noise 40.80246314,-73.95612499,noise 40.71444753,-73.99813145,noise 40.80255103,-73.95627664,noise 40.83811767,-73.94483683,noise 40.63613537,-74.11613915,noise 40.76019873,-73.91509596,noise 40.71444753,-73.99813145,noise 40.80535387,-73.96582174,noise 40.68883365,-73.95716613,noise 40.64846321,-74.00075677,noise 40.82455463,-73.9419539,noise 40.73225273,-73.99635211,noise 40.82517196,-73.9415017,noise 40.80210822,-73.95395081,noise 40.83354449,-73.8963015,noise 40.82619113,-73.94326771,noise 40.74736717,-73.88656498,noise 40.74736717,-73.88656498,noise 40.80279815,-73.95654015,noise 40.80275684,-73.95617176,noise 40.7060021,-73.95696755,noise 40.73713256,-73.99032932,noise 40.82754158,-73.90234157,noise 40.72556247,-73.98237572,noise 40.67843036,-74.00891948,noise 40.73141011,-73.99697276,noise 40.7295792,-73.99326016,noise 40.7295792,-73.99326016,noise 40.73652172,-73.87009291,noise 40.76109628,-73.98425784,noise 40.83756628,-73.94546972,noise 40.68340223,-73.97853974,noise 40.62429808,-73.99753598,noise 40.76167795,-73.96045834,noise 40.70483013,-73.93389615,noise 40.61063282,-73.98018026,noise 40.84799881,-73.93469364,noise 40.84459402,-73.93719807,noise 40.73035883,-74.00423951,noise 40.66685388,-73.73671164,noise 40.5983312,-73.96091877,noise 40.6395296,-73.95128856,noise 40.69822499,-73.80633492,noise 40.6395296,-73.95128856,noise 40.66685388,-73.73671164,noise 40.86623261,-73.88615252,noise 40.63597511,-73.97814065,noise 40.74486372,-73.86356621,noise 40.75592421,-73.92149019,noise 40.75207474,-73.85946935,noise 40.70695322,-73.94721407,noise 40.82700844,-73.94776923,noise 40.81239973,-73.90324525,noise 40.85331763,-73.90289655,noise 40.72507372,-73.98121053,noise 40.71796862,-73.98974409,noise 40.6395296,-73.95128856,noise 40.72353759,-73.98822078,noise 40.8024656,-73.95539898,noise 40.69822499,-73.80633492,noise 40.77631597,-73.90145267,noise 40.75729157,-73.83400373,noise 40.72279616,-73.98523374,noise 40.75846663,-73.84203222,noise 40.75846663,-73.84203222,noise 40.75846663,-73.84203222,noise 40.74391735,-73.98786712,noise 40.80314119,-73.95639184,noise 40.74578928,-73.98802918,noise 40.70568851,-73.91979287,noise 40.67669572,-73.9635479,noise 40.83389969,-73.94060144,noise 40.86389109,-73.89155424,noise 40.82290375,-73.89688173,noise 40.6765475,-73.96352996,noise 40.80311646,-73.95631961,noise 40.83663571,-73.94521751,noise 40.66919734,-73.89645248,noise 40.82733204,-73.89502122,noise 40.76579016,-73.98728192,noise 40.86466396,-73.92889266,noise 40.82744171,-73.89488374,noise 40.5923394,-73.98439484,noise 40.72409257,-73.99612888,noise 40.63283667,-74.02723013,noise 40.7003101,-73.9455315,noise 40.82290375,-73.89688173,noise 40.86480865,-73.91936234,noise 40.70872939,-73.77898909,noise 40.72972315,-73.95924335,noise 40.63283667,-74.02723013,noise 40.82710229,-73.8816775,noise 40.69106211,-73.99727749,noise 40.814442,-73.9514929,noise 40.66445137,-73.99332441,noise 40.72628127,-73.98033348,noise 40.71933772,-73.98492787,noise 40.71933772,-73.98492787,noise 40.85442547,-73.86387285,noise 40.75752223,-73.83407535,noise 40.73234787,-73.98493936,noise 40.72568573,-73.98076659,noise 40.65662476,-73.96009532,noise 40.6411861,-73.91955691,noise 40.75470266,-73.84539791,noise 40.80275152,-73.93357496,noise 40.68383168,-73.93222956,noise 40.80311646,-73.95631961,noise 40.68220447,-73.93787741,noise 40.86618344,-73.91893043,noise 40.80311646,-73.95631961,noise 40.78229519,-73.96512584,noise 40.81348361,-73.91696795,noise 40.87132564,-73.87703574,noise 40.81296697,-73.91609074,noise 40.82571947,-73.90953103,noise 40.72568573,-73.98076659,noise 40.80356744,-73.96714106,noise 40.83717337,-73.86721487,noise 40.75873427,-73.86009782,noise 40.67596498,-73.81819204,noise 40.71933772,-73.98492787,noise 40.66064331,-73.96062997,noise 40.67145863,-73.99102378,noise 40.72224762,-73.98889924,noise 40.6395296,-73.95128856,noise 40.85650354,-73.93276214,noise 40.6716332,-73.8460555,noise 40.71933772,-73.98492787,noise 40.89755817,-73.87589482,noise 40.71933772,-73.98492787,noise 40.6395296,-73.95128856,noise 40.76889103,-73.98209349,noise 40.71795041,-73.95792662,noise 40.73595507,-73.99047744,noise 40.80275152,-73.93357496,noise 40.82599151,-73.8968372,noise 40.82634975,-73.89844095,noise 40.73428366,-73.99249472,noise 40.75889846,-73.87145342,noise 40.82584877,-73.90991748,noise 40.72174942,-73.97893145,noise 40.82923393,-73.87550553,noise 40.68280313,-74.00004687,noise 40.73416286,-74.00798156,noise 40.74310102,-73.89741304,noise 40.69489819,-73.93155477,noise 40.73321576,-73.98992216,noise 40.74102762,-73.99416117,noise 40.86618344,-73.91893043,noise 40.68400807,-74.00164775,noise 40.68297056,-74.00062736,noise 40.68198238,-73.99609527,noise 40.58740438,-73.80982103,noise 40.58740438,-73.80982103,noise 40.76804592,-73.9839385,noise 40.80311646,-73.95631961,noise 40.73597702,-73.99038001,noise 40.7138099,-73.96174926,noise 40.76492947,-73.91721981,noise 40.58740438,-73.80982103,noise 40.72155867,-73.98880917,noise 40.83089018,-73.94347329,noise 40.68419025,-73.87029581,noise 40.58756594,-73.81125353,noise 40.73350709,-74.00341342,noise 40.83680331,-73.94558599,noise 40.76963125,-73.95776761,noise 40.81119422,-73.94374289,noise 40.83774409,-73.83136721,noise 40.79590071,-73.94992812,noise 40.69357091,-73.96460248,noise 40.86233046,-73.91974856,noise 40.79551113,-73.95031847,noise 40.78229519,-73.96512584,noise 40.84682457,-73.93556225,noise 40.7217706,-73.94386166,noise 40.72567368,-73.94392693,noise 40.73596084,-74.00512753,noise 40.72154413,-73.98229381,noise 40.77368111,-73.97108758,noise 40.62693142,-74.07790055,noise 40.72561632,-73.94449701,noise 40.76296633,-73.97396929,noise 40.63931643,-74.0163512,noise 40.71418662,-74.0062946,noise 40.87555239,-73.90616908,noise 40.69386415,-73.96315988,noise 40.76479323,-73.77161559,noise 40.85479652,-73.93798371,noise 40.82642587,-73.95253202,noise 40.76399848,-73.99600382,noise 40.71364602,-74.00360358,noise 40.62693142,-74.07790055,noise 40.77541622,-73.91982803,noise 40.74705161,-73.88665213,noise 40.74705161,-73.88665213,noise 40.72167835,-73.98060541,noise 40.76943955,-73.95185782,noise 40.83620056,-73.94218225,noise 40.76349768,-73.87813729,noise 40.75873427,-73.86009782,noise 40.84974868,-73.93738116,noise 40.88046703,-73.88383183,noise 40.71582811,-74.00353877,noise 40.71558384,-74.00303013,noise 40.71558384,-74.00303013,noise 40.71558384,-74.00303013,noise 40.71558384,-74.00303013,noise 40.71558384,-74.00303013,noise 40.71558384,-74.00303013,noise 40.71558384,-74.00303013,noise 40.71111076,-73.9455371,noise 40.61978471,-73.98510164,noise 40.74464685,-73.98309967,noise 40.65146751,-73.93617619,noise 40.71922843,-73.96289694,noise 40.74098494,-73.9804807,noise 40.83226655,-73.88864623,noise 40.67020531,-73.93975229,noise 40.83017836,-73.87573865,noise 40.656725,-74.00086138,noise 40.77350816,-73.91167435,noise 40.85237681,-73.93502913,noise 40.7577348,-73.79402646,noise 40.76579016,-73.98728192,noise 40.80151565,-73.96229483,noise 40.85702748,-73.92773319,noise 40.74102858,-73.92167375,noise 40.71522156,-73.99874467,noise 40.73947592,-73.87084134,noise 40.72072702,-73.98888867,noise 40.74102858,-73.92167375,noise 40.6395296,-73.95128856,noise 40.6395296,-73.95128856,noise 40.84145055,-73.93577346,noise 40.74736158,-73.88645672,noise 40.80293682,-73.96956143,noise 40.82392982,-73.93856168,noise 40.80655914,-73.96695897,noise 40.81726755,-73.9422565,noise 40.8059225,-73.96743248,noise 40.85623771,-73.92886552,noise 40.69318384,-73.99858642,noise 40.76494318,-73.91720536,noise 40.75618226,-73.93008771,noise 40.6929972,-73.99867657,noise 40.71779715,-73.95917128,noise 40.76494318,-73.91720536,noise 40.7455572,-73.97774741,noise 40.58400047,-73.93612906,noise 40.69822499,-73.80633492,noise 40.58073897,-73.83395295,noise 40.68792131,-73.96188671,noise 40.62633744,-74.07543576,noise 40.79845083,-73.93908362,noise 40.71877757,-73.96072549,noise 40.84195852,-73.936138,noise 40.62526616,-73.92756266,noise 40.72597827,-74.00133491,noise 40.79438124,-73.93556968,noise 40.69318384,-73.99858642,noise 40.58485012,-73.81903413,noise 40.85140855,-73.88348136,noise 40.75548196,-73.81543034,noise 40.86789114,-73.89564053,noise 40.79840964,-73.93902948,noise 40.85661424,-73.9296821,noise 40.76045412,-73.91527612,noise 40.75729157,-73.83400373,noise 40.68947714,-73.96958077,noise 40.82000567,-73.95887372,noise 40.70369027,-73.92802565,noise 40.60355361,-73.97804323,noise 40.80119567,-73.96602975,noise 40.79799434,-73.97264452,noise 40.72072702,-73.98888867,noise 40.68142275,-73.95710239,noise 40.72612272,-73.79059206,noise 40.58485012,-73.81903413,noise 40.58400047,-73.93612906,noise 40.72483716,-73.97832075,noise 40.73234787,-73.98493936,noise 40.84544019,-73.93867915,noise 40.85766247,-73.89353457,noise 40.64342089,-74.00599965,noise 40.85180412,-73.93192829,noise 40.83879622,-73.91813259,noise 40.72113338,-73.99042905,noise 40.63559076,-73.97774084,noise 40.84628833,-73.93872536,noise 40.80292804,-73.96757482,noise 40.67596498,-73.81819204,noise 40.61301907,-74.12369864,noise 40.77767117,-73.91068673,noise 40.68187917,-73.7660803,noise 40.87034132,-73.8947183,noise 40.72578709,-73.95192543,noise 40.72062589,-73.99497105,noise 40.67589301,-73.94635539,noise 40.61301907,-74.12369864,noise 40.72953107,-73.9804155,noise 40.79651878,-73.93450577,noise 40.75006808,-73.88119355,noise 40.81092587,-73.94505444,noise 40.66152817,-73.99322378,noise 40.77778633,-73.97971167,noise 40.73560607,-73.71632317,noise 40.72687852,-74.00312084,noise 40.72951901,-73.99981238,noise 40.76154468,-73.92445081,noise 40.73560607,-73.71632317,noise 40.73292718,-73.98629593,noise 40.79100712,-73.93906876,noise 40.63559076,-73.97774084,noise 40.75066178,-74.00343234,noise 40.72597827,-74.00133491,noise 40.84171392,-73.9355672,noise 40.88674715,-73.85716662,noise 40.71175719,-73.94278797,noise 40.58924884,-74.1015729,noise 40.7113795,-73.96644706,noise 40.70863282,-73.92679757,noise 40.82854734,-73.94028824,noise 40.70568851,-73.91979287,noise 40.71110869,-73.95333555,noise 40.78536042,-73.97298193,noise 40.68142275,-73.95710239,noise 40.68593184,-73.8428026,noise 40.82000567,-73.95887372,noise 40.75374391,-73.97362278,noise 40.69268604,-73.96131423,noise 40.85978272,-73.9270361,noise 40.68151349,-73.95753859,noise 40.73753336,-73.99127108,noise 40.71249461,-73.78446306,noise 40.75365603,-73.97340987,noise 40.80200242,-73.9653539,noise 40.75676421,-73.96715332,noise 40.73753336,-73.99127108,noise 40.86321921,-73.89514172,noise 40.58966104,-74.06730402,noise 40.75369448,-73.97350009,noise 40.83820984,-73.93722217,noise 40.76516441,-73.9877369,noise 40.81453554,-73.95914444,noise 40.58989,-73.80747002,noise 40.75331823,-73.97258707,noise 40.70336533,-73.92634531,noise 40.71175719,-73.94278797,noise 40.7612619,-73.9942713,noise 40.83129116,-73.92903312,noise 40.73249706,-74.00183297,noise 40.75779259,-73.91646706,noise 40.84999364,-73.93865327,noise 40.75007365,-73.98636819,noise 40.8381204,-73.94479707,noise 40.86852503,-73.89549491,noise 40.75399381,-73.97418936,noise 40.83774446,-73.91738219,noise 40.65162237,-74.00447957,noise 40.62863721,-74.08003528,noise 40.68400462,-73.93227625,noise 40.67915413,-73.98342993,noise 40.62618272,-74.02958703,noise 40.65955916,-73.95341126,noise 40.66467097,-73.99363077,noise 40.71387984,-73.95769833,noise 40.74634666,-73.91600503,noise 40.77576533,-73.91298199,noise 40.7826508,-73.84833731,noise 40.85838481,-73.89111134,noise 40.63606328,-73.96787928,noise 40.73468739,-73.99997113,noise 40.73888085,-73.98904803,noise 40.7290798,-74.00349257,noise 40.86620047,-73.92805946,noise 40.76879865,-73.95525907,noise 40.75378236,-73.973713,noise 40.76494318,-73.91720536,noise 40.72642799,-73.99001699,noise 40.62237772,-74.13446153,noise 40.75399381,-73.97418936,noise 40.66445137,-73.99332441,noise 40.77596729,-73.91512641,noise 40.74578928,-73.98802918,noise 40.77576533,-73.91298199,noise 40.68154416,-73.97926864,noise 40.74268834,-74.0003717,noise 40.67299989,-73.93071565,noise 40.65514879,-73.9546325,noise 40.7107541,-73.96785411,noise 40.73831505,-73.98561642,noise 40.7290798,-74.00349257,noise 40.82697793,-73.89497119,noise 40.62075694,-74.02683617,noise 40.73831505,-73.98561642,noise 40.72591124,-73.9836492,noise 40.67915413,-73.98342993,noise 40.67135851,-73.88319749,noise 40.69198293,-73.91843546,noise 40.6872498,-73.87197015,noise 40.68152493,-73.97922177,noise 40.82837372,-73.8240774,noise 40.62084753,-74.02677137,noise 40.61014648,-74.09987953,noise 40.75177243,-73.98462818,noise 40.85337995,-73.93743558,noise 40.77679778,-73.97731814,noise 40.5807417,-73.83394214,noise 40.75177243,-73.98462818,noise 40.84361298,-73.94013015,noise 40.84361298,-73.94013015,noise 40.7107541,-73.96785411,noise 40.72201915,-73.98344452,noise 40.84361298,-73.94013015,noise 40.80369104,-73.96745525,noise 40.62075694,-74.02683617,noise 40.6371927,-74.10705407,noise 40.6807253,-74.0028014,noise 40.57856724,-74.10926404,noise 40.82669141,-73.93933238,noise 40.67135844,-73.8831254,noise 40.62075694,-74.02683617,noise 40.85521919,-73.8666583,noise 40.70054838,-73.91706894,noise 40.71026351,-73.95385555,noise 40.70855985,-73.9380909,noise 40.67135029,-73.88320472,noise 40.74431672,-73.95845851,noise 40.72952612,-73.98387202,noise 40.67350675,-73.95693444,noise 40.89187242,-73.86016845,noise 40.8315846,-73.86439297,noise 40.67925298,-73.98368228,noise 40.86796765,-73.89525716,noise 40.71554439,-74.01560154,noise 40.76431686,-73.9957836,noise 40.76431686,-73.9957836,noise 40.68022438,-73.98200193,noise 40.86703815,-73.89631435,noise 40.73249706,-74.00183297,noise 40.84967442,-73.9370993,noise 40.78229519,-73.96512584,noise 40.86233046,-73.91974856,noise 40.72512007,-73.97941022,noise 40.80862222,-73.92423843,noise 40.60307802,-74.00463477,noise 40.8831331,-73.88208769,noise 40.71043661,-73.95429188,noise 40.62075694,-74.02683617,noise 40.75519256,-73.97121832,noise 40.7286749,-73.90089533,noise 40.83526702,-73.91502546,noise 40.79438124,-73.93556968,noise 40.71554439,-74.01560154,noise 40.74048176,-73.9028553,noise 40.75979023,-73.98792559,noise 40.69440359,-73.93064653,noise 40.81294075,-73.95176855,noise 40.83805076,-73.94271189,noise 40.7733412,-73.91596737,noise 40.74705161,-73.88665213,noise 40.72901743,-73.90024177,noise 40.63606399,-73.88941319,noise 40.836639,-73.8542783,noise 40.86404894,-73.90234219,noise 40.87427114,-73.91027132,noise 40.759412,-73.99561425,noise 40.72933786,-74.0010319,noise 40.86174104,-73.86943618,noise 40.80174149,-73.96475806,noise 40.63930819,-74.016362,noise 40.70725091,-73.94405423,noise 40.70412645,-73.90171808,noise 40.87678755,-73.8744474,noise 40.79961505,-73.93994217,noise 40.7150942,-74.01595134,noise 40.73350709,-74.00341342,noise 40.78229519,-73.96512584,noise 40.74248108,-73.98204646,noise 40.77553229,-73.97645926,noise 40.66297225,-73.91683091,noise 40.69600718,-73.93172673,noise 40.71021781,-73.99632807,noise 40.75840162,-73.99044896,noise 40.75850595,-73.99074493,noise 40.73597702,-73.99038001,noise 40.77580088,-73.92878536,noise 40.70849588,-74.0153438,noise 40.58534289,-73.8097405,noise 40.68973631,-73.89032301,noise 40.70324304,-73.99066965,noise 40.87693194,-73.844282,noise 40.8635725,-73.92601242,noise 40.74212017,-73.99854568,noise 40.84201878,-73.91108102,noise 40.58537563,-73.8096216,noise 40.56590514,-74.10058002,noise 40.5811842,-73.82508853,noise 40.70855985,-73.9380909,noise 40.7086008,-73.93767607,noise 40.84785476,-73.89557799,noise 40.86769186,-73.92121362,noise 40.77677318,-73.93452519,noise 40.82812142,-73.93935637,noise 40.64846321,-74.00075677,noise 40.75550463,-73.96806713,noise 40.5811842,-73.82508853,noise 40.64943992,-73.96307629,noise 40.71240883,-73.97801819,noise 40.80777238,-73.94548329,noise 40.75354311,-73.88405679,noise 40.7440955,-73.98561878,noise 40.86769186,-73.92121362,noise 40.7043382,-73.99055409,noise 40.5811842,-73.82508853,noise 40.76124525,-73.99134017,noise 40.72785198,-73.9850883,noise 40.69574707,-73.84476288,noise 40.61007711,-74.00731124,noise 40.70066107,-73.92966987,noise 40.74230952,-73.99693618,noise 40.71838331,-73.99284643,noise 40.67696653,-73.98333313,noise 40.64978822,-73.96218598,noise 40.90843715,-73.90367342,noise 40.62058398,-74.0269982,noise 40.74294904,-73.99646701,noise 40.66146989,-73.98612318,noise 40.72605395,-73.98353372,noise 40.72181954,-73.99007901,noise 40.68908653,-73.95812873,noise 40.65692084,-73.92609024,noise 40.87492967,-73.86497351,noise 40.78229519,-73.96512584,noise 40.72074594,-73.98615774,noise 40.72074594,-73.98615774,noise 40.7219211,-73.99003931,noise 40.7063803,-74.00950391,noise 40.82287393,-73.95185529,noise 40.72074594,-73.98615774,noise 40.90843715,-73.90367342,noise 40.87302289,-73.91845926,noise 40.83756628,-73.94546972,noise 40.72395539,-74.00071433,noise 40.77672953,-73.97927872,noise 40.68908106,-73.95818282,noise 40.73595507,-73.99047744,noise 40.85764126,-73.93523004,noise 40.77395281,-73.9709647,noise 40.71086346,-73.95800323,noise 40.69148449,-73.99107878,noise 40.67915413,-73.98342993,noise 40.80639122,-73.94430323,noise 40.83493674,-73.84542829,noise 40.65008151,-73.96100738,noise 40.77712494,-73.98022458,noise 40.74705161,-73.88665213,noise 40.69357091,-73.96460248,noise 40.60958035,-74.00649002,noise 40.70535918,-73.9428692,noise 40.70334705,-73.98758597,noise 40.7657348,-73.98360333,noise 40.6471319,-74.00462341,noise 40.89636259,-73.87187844,noise 40.75849777,-73.82556864,noise 40.63924657,-73.96560055,noise 40.81435097,-73.94441217,noise 40.82403176,-73.94475818,noise 40.77010709,-73.98299573,noise 40.66820407,-73.9506476,noise 40.80286645,-73.95570934,noise 40.7455572,-73.97774741,noise 40.6395296,-73.95128856,noise 40.80770336,-73.92954593,noise 40.68112057,-73.96442161,noise 40.8384769,-73.91310235,noise 40.57279739,-73.99573449,noise 40.87298432,-73.90075618,noise 40.63980683,-73.95130637,noise 40.69451199,-73.90895178,noise 40.69357091,-73.96460248,noise 40.76494318,-73.91720536,noise 40.71363608,-73.95914497,noise 40.76494318,-73.91720536,noise 40.77596729,-73.91512641,noise 40.74412074,-73.97327654,noise 40.73434974,-74.00300933,noise 40.60719033,-74.16242136,noise 40.83383763,-73.91585844,noise 40.8600453,-73.86276235,noise 40.83436713,-73.91553615,noise 40.65780242,-73.98277206,noise 40.75807766,-73.8573559,noise 40.67181585,-73.84309182,noise 40.84394176,-73.93902389,noise 40.75830604,-73.85560836,noise 40.69357091,-73.96460248,noise 40.69357091,-73.96460248,noise 40.74967829,-73.98542629,noise 40.70590845,-73.92030476,noise 40.72386918,-73.98388421,noise 40.63331431,-74.02702136,noise 40.76115165,-73.92364989,noise 40.72514351,-73.99082894,noise 40.68272042,-73.96329223,noise 40.85149947,-73.88382098,noise 40.71696661,-73.95482851,noise 40.71340571,-73.7620775,noise 40.65488243,-73.96188035,noise 40.80754154,-73.95095609,noise 40.63283667,-74.02723013,noise 40.70588897,-73.94296613,noise 40.83383763,-73.91585844,noise 40.77902925,-73.95089043,noise 40.69355996,-73.96468543,noise 40.69360357,-73.99274451,noise 40.69347179,-73.99223607,noise 40.85797909,-73.93090253,noise 40.6944434,-73.90899154,noise 40.69327687,-73.991587,noise 40.86954934,-73.91634837,noise 40.87148988,-73.90242165,noise 40.71175719,-73.94278797,noise 40.69340315,-73.99198365,noise 40.7295519,-73.99657235,noise 40.68142275,-73.95710239,noise 40.67865203,-73.97065288,noise 40.67486925,-73.98154192,noise 40.63283667,-74.02723013,noise 40.68186975,-73.94937197,noise 40.59916024,-73.96126399,noise 40.65162237,-74.00447957,noise 40.86954934,-73.91634837,noise 40.70583161,-73.94352523,noise 40.86941776,-73.91657993,noise 40.73323772,-73.98991494,noise 40.84343534,-73.94163383,noise 40.71299888,-73.96633081,noise 40.71397844,-73.9443047,noise 40.62343625,-74.02509733,noise 40.7562659,-73.97179177,noise 40.80512063,-73.96601691,noise 40.69284604,-73.9931016,noise 40.73506048,-74.00663215,noise 40.85140855,-73.88348136,noise 40.72349367,-73.98825325,noise 40.61758878,-74.02955441,noise 40.63419461,-73.96986898,noise 40.77631597,-73.90145267,noise 40.79333374,-73.93737283,noise 40.59279825,-73.98837706,noise 40.72349367,-73.98825325,noise 40.72386918,-73.98388421,noise 40.81341446,-73.9432497,noise 40.62863721,-74.08003528,noise 40.6695516,-73.95712804,noise 40.61027378,-73.98352986,noise 40.71547279,-73.7622072,noise 40.70568851,-73.91979287,noise 40.58705446,-73.96607388,noise 40.70580148,-73.92041309,noise 40.72763258,-73.89248675,noise 40.74170174,-73.98316176,noise 40.75676421,-73.96715332,noise 40.68272042,-73.96329223,noise 40.8221488,-73.94456825,noise 40.72111717,-73.99421703,noise 40.74293251,-73.99492967,noise 40.76848584,-73.95550116,noise 40.87466152,-73.91108799,noise 40.7062557,-73.90415674,noise 40.67596498,-73.81819204,noise 40.73240037,-73.98784396,noise 40.68282211,-73.93799942,noise 40.83131818,-73.85090765,noise 40.82622167,-73.92469174,noise 40.75687622,-73.94435185,noise 40.69357091,-73.96460248,noise 40.81271726,-73.9556775,noise 40.72104319,-73.95643113,noise 40.71493868,-74.00648225,noise 40.63597511,-73.97814065,noise 40.85199617,-73.93178712,noise 40.75548196,-73.81543034,noise 40.75177243,-73.98462818,noise 40.74002306,-74.00529023,noise 40.68924657,-73.96954482,noise 40.63914998,-74.07565203,noise 40.7581599,-73.9625937,noise 40.75739823,-73.90354533,noise 40.65108755,-73.94447252,noise 40.68935074,-73.81613264,noise 40.58073897,-73.83395295,noise 40.86456039,-73.92154994,noise 40.58073897,-73.83395295,noise 40.68958479,-73.97198946,noise 40.84095347,-73.92196087,noise 40.63765525,-74.07798873,noise 40.5995808,-73.98996033,noise 40.80878957,-73.91618271,noise 40.7221652,-73.98815969,noise 40.85654487,-73.92846393,noise 40.67915413,-73.98342993,noise 40.79246871,-73.97066049,noise 40.64269519,-73.96977506,noise 40.79339574,-73.9404245,noise 40.68793773,-73.96176049,noise 40.70491688,-73.92331035,noise 40.75444761,-73.93013645,noise 40.63809721,-74.07792079,noise 40.73294139,-73.95558263,noise 40.82310186,-73.89143644,noise 40.70347321,-73.8955048,noise 40.73011739,-73.86231193,noise 40.74028666,-74.00212188,noise 40.82574216,-73.92596054,noise 40.51358865,-74.25123739,noise 40.85723958,-73.89942405,noise 40.6410404,-74.01453197,noise 40.77683657,-73.97921731,noise 40.76580221,-73.97656017,noise 40.74985425,-73.98793822,noise 40.85199617,-73.93178712,noise 40.85723958,-73.89942405,noise 40.70484746,-73.80111118,noise 40.76081394,-73.98718902,noise 40.76550199,-73.98746608,noise 40.70872939,-73.77898909,noise 40.77683657,-73.97921731,noise 40.76580221,-73.97656017,noise 40.73141011,-73.99697276,noise 40.73597702,-73.99038001,noise 40.81305086,-73.94627735,noise 40.76338296,-73.98673729,noise 40.6471319,-74.00462341,noise 40.74033035,-73.9924796,noise 40.70484746,-73.80111118,noise 40.84336697,-73.91544521,noise 40.77683657,-73.97921731,noise 40.70543822,-73.8014773,noise 40.84761752,-73.9036639,noise 40.86726887,-73.89347942,noise 40.59835595,-73.74832123,noise 40.84761752,-73.9036639,noise 40.75552285,-73.91298678,noise 40.6936969,-73.80036912,noise 40.73595507,-73.99047744,noise 40.73588925,-73.99120995,noise 40.65942046,-73.93860146,noise 40.68824738,-73.98219808,noise 40.651755,-73.93022957,noise 40.70381897,-73.94207345,noise 40.86637626,-73.92825812,noise 40.80934133,-73.94921721,noise 40.69120878,-73.94622046,noise 40.755483,-73.88616134,noise 40.67881799,-73.96534219,noise 40.83067651,-73.89062188,noise 40.72619562,-73.97728124,noise 40.65108755,-73.94447252,noise 40.72353759,-73.98822078,noise 40.77740776,-73.95243337,noise 40.62633744,-74.07543576,noise 40.76357408,-73.92188187,noise 40.71522127,-73.99171409,noise 40.81453554,-73.95914444,noise 40.79323054,-73.96627579,noise 40.71843716,-73.98293316,noise 40.70889971,-73.95472216,noise 40.79892213,-73.96308729,noise 40.78435473,-73.98116491,noise 40.68271664,-73.74802808,noise 40.83313867,-73.94464943,noise 40.86618344,-73.91893043,noise 40.73429466,-74.00716249,noise 40.69957784,-73.83235864,noise 40.70215493,-73.81093992,noise 40.7455572,-73.97774741,noise 40.76557288,-73.9837225,noise 40.76403219,-73.92149508,noise 40.71121192,-73.96593854,noise 40.84961933,-73.93673428,noise 40.68151349,-73.95753859,noise 40.86292586,-73.92776655,noise 40.84961933,-73.93673428,noise 40.52770124,-74.23095204,noise 40.52770124,-74.23095204,noise 40.76494318,-73.91720536,noise 40.75548823,-73.82471747,noise 40.71102508,-73.95029487,noise 40.77105456,-73.98714372,noise 40.59650761,-73.97750541,noise 40.79978541,-73.94029959,noise 40.83313867,-73.94464943,noise 40.76948307,-73.95786518,noise 40.77041509,-73.98761679,noise 40.52770124,-74.23095204,noise 40.79428249,-73.96879612,noise 40.71604975,-73.96214117,noise 40.76233478,-73.98980224,noise 40.7318022,-73.98977083,noise 40.71531994,-73.98988518,noise 40.72054079,-73.99468245,noise 40.771024,-73.95364738,noise 40.87132564,-73.87703574,noise 40.65936338,-73.93965756,noise 40.6716626,-73.95091902,noise 40.66103967,-73.99443849,noise 40.76879865,-73.95525907,noise 40.7622605,-73.98800456,noise 40.63980683,-73.95130637,noise 40.76213717,-73.98992139,noise 40.84158852,-73.88401538,noise 40.76324872,-73.98913066,noise 40.77073345,-73.98738206,noise 40.76568266,-73.98364305,noise 40.68958479,-73.97198946,noise 40.80196946,-73.96527807,noise 40.72529184,-73.99247409,noise 40.81620511,-73.94179499,noise 40.771024,-73.95364738,noise 40.73258489,-74.00174998,noise 40.77073345,-73.98738206,noise 40.81453554,-73.95914444,noise 40.68054242,-73.9678146,noise 40.74860668,-73.97810369,noise 40.61567436,-74.03423242,noise 40.74736158,-73.88645672,noise 40.74622608,-73.85980289,noise 40.72933786,-74.0010319,noise 40.72933786,-74.0010319,noise 40.65380695,-73.85320364,noise 40.77075354,-73.95694015,noise 40.72115008,-73.99370114,noise 40.73243667,-74.00193039,noise 40.76092854,-73.96913302,noise 40.78246595,-73.97882196,noise 40.77054595,-73.95252492,noise 40.76804592,-73.9839385,noise 40.83881428,-73.89933265,noise 40.74562238,-73.99525427,noise 40.7462197,-73.91505604,noise 40.80373194,-73.95113588,noise 40.66602191,-73.92946128,noise 40.71139531,-73.99618733,noise 40.7327221,-74.00327627,noise 40.71103055,-73.95024797,noise 40.81620511,-73.94179499,noise 40.76771349,-73.98179056,noise 40.8477632,-73.90727816,noise 40.84342648,-73.91426328,noise 40.73249706,-74.00183297,noise 40.6471319,-74.00462341,noise 40.84727468,-73.90732221,noise 40.73713256,-73.99032932,noise 40.73164813,-73.95434589,noise 40.80934133,-73.94921721,noise 40.83837628,-73.94612318,noise 40.6936969,-73.80036912,noise 40.64345648,-73.99250133,noise 40.77541031,-73.98582865,noise 40.68376458,-73.97875956,noise 40.68340223,-73.97853974,noise 40.54594255,-74.17376137,noise 40.68327789,-73.99546783,noise 40.59633345,-73.93720112,noise 40.77384048,-73.97180599,noise 40.66652606,-73.9550393,noise 40.67796304,-73.98443609,noise 40.6372782,-74.00189161,noise 40.7519224,-73.83370311,noise 40.86437703,-73.92653575,noise 40.61023813,-73.98370275,noise 40.74166025,-73.98108677,noise 40.86019986,-73.92694526,noise 40.75679222,-73.9691963,noise 40.85652475,-73.89202173,noise 40.68151921,-73.88007901,noise 40.8766367,-73.8797054,noise 40.74100707,-73.98154886,noise 40.74036888,-74.00579908,noise 40.7111325,-73.96654457,noise 40.7455572,-73.97774741,noise 40.73831505,-73.98561642,noise 40.52313781,-74.21623925,noise 40.78417568,-73.97758645,noise 40.80907008,-73.92494956,noise 40.76516441,-73.9877369,noise 40.71102508,-73.95029487,noise 40.72349367,-73.98825325,noise 40.79428249,-73.96879612,noise 40.5995808,-73.98996033,noise 40.7287944,-74.00043657,noise 40.83940401,-73.9376222,noise 40.72997163,-73.99219574,noise 40.60356183,-73.9779784,noise 40.76233478,-73.98980224,noise 40.79892213,-73.96308729,noise 40.8473396,-73.88492342,noise 40.79429621,-73.96878528,noise 40.72870931,-74.00024174,noise 40.73991339,-74.00079029,noise 40.79892213,-73.96308729,noise 40.73234787,-73.98493936,noise 40.79438124,-73.93556968,noise 40.72568792,-73.9776891,noise 40.72568792,-73.9776891,noise 40.72306557,-73.98907949,noise 40.6479491,-73.96184107,noise 40.66296814,-73.95330075,noise 40.71902535,-73.98976918,noise 40.73249706,-74.00183297,noise 40.71902535,-73.98976918,noise 40.72953107,-73.9804155,noise 40.72506594,-73.98426995,noise 40.85503892,-73.8910156,noise 40.82574216,-73.92596054,noise 40.82543701,-73.92520932,noise 40.74294904,-73.99646701,noise 40.70794983,-73.95422866,noise 40.68293027,-73.93505,noise 40.77603408,-73.95603048,noise 40.72933786,-74.0010319,noise 40.80682249,-73.85819423,noise 40.77654994,-73.95564019,noise 40.72529184,-73.99247409,noise 40.82574216,-73.92596054,noise 40.68293027,-73.93505,noise 40.83436135,-73.94168154,noise 40.84348354,-73.93428967,noise 40.71927627,-73.95833704,noise 40.76743782,-73.92062464,noise 40.65778597,-73.95324671,noise 40.75172244,-73.98071577,noise 40.71918133,-73.98536441,noise 40.64846321,-74.00075677,noise 40.71918133,-73.98536441,noise 40.71918133,-73.98536441,noise 40.74294904,-73.99646701,noise 40.71905555,-73.98983772,noise 40.71918133,-73.98536441,noise 40.71918133,-73.98536441,noise 40.80081799,-73.95343159,noise 40.82574216,-73.92596054,noise 40.68085221,-73.94506427,noise 40.71918133,-73.98536441,noise 40.82574216,-73.92596054,noise 40.71920604,-73.98544738,noise 40.85009657,-73.93135531,noise 40.76743782,-73.92062464,noise 40.69606959,-73.8457863,noise 40.62429808,-73.99753598,noise 40.81305086,-73.94627735,noise 40.7170331,-73.95643735,noise 40.75767022,-73.94595023,noise 40.71102508,-73.95029487,noise 40.73243667,-74.00193039,noise 40.65989187,-73.91213836,noise 40.71920879,-73.98549428,noise 40.73713256,-73.99032932,noise 40.73713256,-73.99032932,noise 40.73713256,-73.99032932,noise 40.71763055,-73.98546215,noise 40.7540773,-73.97993546,noise 40.71300098,-74.00418069,noise 40.64511031,-74.08540261,noise 40.70585178,-73.92171868,noise 40.82410397,-73.9528408,noise 40.63693076,-73.94618854,noise 40.69687592,-73.96562852,noise 40.67457388,-73.96313809,noise 40.70520011,-74.00868501,noise 40.83671019,-73.90384955,noise 40.83334462,-73.89383006,noise 40.8670152,-73.92310895,noise 40.85237109,-73.9346279,noise 40.71908248,-73.98507223,noise 40.71908248,-73.98507223,noise 40.71918133,-73.98536441,noise 40.73234787,-73.98493936,noise 40.71920604,-73.98544738,noise 40.71908248,-73.98507223,noise 40.7202352,-73.98447673,noise 40.66039859,-73.98037092,noise 40.71942023,-73.98620852,noise 40.71908248,-73.98507223,noise 40.71908248,-73.98507223,noise 40.7202352,-73.98447673,noise 40.71942023,-73.98620852,noise 40.71918133,-73.98536441,noise 40.73235422,-73.99472481,noise 40.71918133,-73.98536441,noise 40.71908248,-73.98507223,noise 40.71918133,-73.98536441,noise 40.71987278,-73.9837048,noise 40.71918133,-73.98536441,noise 40.70336533,-73.92634531,noise 40.72306557,-73.98907949,noise 40.71330642,-73.95834077,noise 40.76010264,-73.9839729,noise 40.75033795,-73.99851663,noise 40.59013616,-73.97389624,noise 40.62040195,-73.9604844,noise 40.68138729,-73.97707658,noise 40.68148609,-73.97702246,noise 40.64245762,-74.00141611,noise 40.68148609,-73.97702246,noise 40.69313307,-73.96920047,noise 40.7138099,-73.96174926,noise 40.71103931,-73.9585045,noise 40.72093245,-73.98508264,noise 40.72438594,-74.00936217,noise 40.72581331,-73.99199058,noise 40.65925237,-73.98843036,noise 40.67400649,-73.94454357,noise 40.74350339,-73.99422591,noise 40.71108876,-73.95863793,noise 40.77035053,-73.95120731,noise 40.86241052,-73.9204209,noise 40.71478752,-74.0093536,noise 40.74036888,-74.00579908,noise 40.73029727,-73.95326078,noise 40.71103931,-73.9585045,noise 40.74036888,-74.00579908,noise 40.68378565,-73.95619226,noise 40.67839878,-73.96789495,noise 40.85009657,-73.93135531,noise 40.84992098,-73.93147116,noise 40.72093245,-73.98508264,noise 40.85009657,-73.93135531,noise 40.68824738,-73.98219808,noise 40.7640329,-73.98247023,noise 40.74967829,-73.98542629,noise 40.81321174,-73.91676238,noise 40.75074334,-73.9860721,noise 40.73421762,-73.99025758,noise 40.65840068,-73.98212676,noise 40.75171837,-73.85539165,noise 40.77958449,-73.9818487,noise 40.62950457,-73.89904673,noise 40.76422502,-73.98239076,noise 40.73713256,-73.99032932,noise 40.8112604,-73.95038619,noise 40.73713256,-73.99032932,noise 40.74764977,-73.88370253,noise 40.73713256,-73.99032932,noise 40.8112604,-73.95038619,noise 40.8112661,-73.95780983,noise 40.68586397,-73.92112558,noise 40.76427503,-73.986914,noise 40.77294254,-73.98392288,noise 40.76769979,-73.98195663,noise 40.6298778,-74.01035405,noise 40.69957784,-73.83235864,noise 40.71674748,-73.99369795,noise 40.7158555,-73.99495337,noise 40.73021344,-74.00031751,noise 40.7609485,-73.83274564,noise 40.75592421,-73.92149019,noise 40.84151083,-73.92223128,noise 40.7174035,-73.95605473,noise 40.62633744,-74.07543576,noise 40.75635888,-73.94736261,noise 40.76570601,-73.9570481,noise 40.72529184,-73.99247409,noise 40.86954934,-73.91634837,noise 40.85499223,-73.92987178,noise 40.82743256,-73.94495409,noise 40.72279616,-73.98523374,noise 40.68272042,-73.96329223,noise 40.84628333,-73.92141969,noise 40.64441466,-74.00014774,noise 40.7214391,-73.78117645,noise 40.64427193,-73.99991352,noise 40.72844754,-73.98467686,noise 40.81379673,-73.94481725,noise 40.76192061,-73.99379114,noise 40.79649132,-73.93448413,noise 40.76386068,-73.98791763,noise 40.7230555,-73.94458212,noise 40.72859612,-73.98767147,noise 40.60941679,-73.96768682,noise 40.72306642,-73.94446306,noise 40.59377961,-73.78441057,noise 40.7331091,-74.00339897,noise 40.73029441,-73.98223737,noise 40.62945106,-73.97986124,noise 40.63012921,-73.98097066,noise 40.74462887,-73.99897147,noise 40.7577196,-73.94590326,noise 40.6044688,-74.14060529,noise 40.67400649,-73.94454357,noise 40.58886785,-73.80198947,noise 40.6816128,-73.97939481,noise 40.73234787,-73.98493936,noise 40.7230555,-73.94458212,noise 40.60564546,-73.95911381,noise 40.74883018,-73.98551309,noise 40.74883018,-73.98551309,noise 40.64245762,-74.00141611,noise 40.77155933,-73.96138755,noise 40.58882417,-73.80212282,noise 40.72141089,-73.9949746,noise 40.81904517,-73.95214348,noise 40.63558162,-73.99154022,noise 40.62549285,-73.95853968,noise 40.76010264,-73.9839729,noise 40.74227338,-73.98926761,noise 40.58886785,-73.80198947,noise 40.81912221,-73.95260949,noise 40.7170331,-73.95643735,noise 40.76881394,-73.91075637,noise 40.7222742,-73.9820483,noise 40.7170331,-73.95643735,noise 40.85021454,-73.9312576,noise 40.84992098,-73.93147116,noise 40.64846321,-74.00075677,noise 40.61421455,-73.9455081,noise 40.82574216,-73.92596054,noise 40.73249706,-74.00183297,noise 40.73243667,-74.00193039,noise 40.8325045,-73.89658499,noise 40.61756371,-73.94098846,noise 40.70381897,-73.94207345,noise 40.70381897,-73.94207345,noise 40.8381204,-73.94479707,noise 40.71274564,-74.0060095,noise 40.70176329,-73.92352676,noise 40.69670481,-73.91968106,noise 40.68908653,-73.95812873,noise 40.70585178,-73.92171868,noise 40.8130014,-73.94615095,noise 40.84151083,-73.92223128,noise 40.70176329,-73.92352676,noise 40.76004503,-73.87836379,noise 40.7158555,-73.99495337,noise 40.78424625,-73.97382014,noise 40.71562216,-73.99427522,noise 40.71934917,-73.84262277,noise 40.78424625,-73.97382014,noise 40.71085754,-73.96491072,noise 40.76881831,-73.93344635,noise 40.63980683,-73.95130637,noise 40.80563943,-73.96618642,noise 40.88674715,-73.85716662,noise 40.84706204,-73.93817525,noise 40.72597827,-74.00133491,noise 40.76045412,-73.91527612,noise 40.71175719,-73.94278797,noise 40.88674715,-73.85716662,noise 40.66797516,-73.98730057,noise 40.69957784,-73.83235864,noise 40.72400263,-73.95106807,noise 40.69912315,-73.91611502,noise 40.6395296,-73.95128856,noise 40.58073897,-73.83395295,noise 40.76045412,-73.91527612,noise 40.61256462,-74.03388146,noise 40.76299834,-73.98387835,noise 40.64510255,-73.97047305,noise 40.72581057,-73.99199058,noise 40.85359837,-73.93061428,noise 40.75897464,-73.91899955,noise 40.84337525,-73.90493864,noise 40.68643832,-73.96826246,noise 40.87557312,-73.9115677,noise 40.71144313,-73.94609232,noise 40.68280563,-73.96366355,noise 40.84337525,-73.90493864,noise 40.6864027,-73.96848964,noise 40.5995808,-73.98996033,noise 40.68642736,-73.9683418,noise 40.6864027,-73.96848964,noise 40.70727997,-73.95387926,noise 40.76010264,-73.9839729,noise 40.68935074,-73.81613264,noise 40.79585513,-73.93552852,noise 40.87588669,-73.9124532,noise 40.66064331,-73.96062997,noise 40.81455213,-73.92624755,noise 40.70314672,-73.98786372,noise 40.75846663,-73.84203222,noise 40.65780242,-73.98277206,noise 40.76045412,-73.91527612,noise 40.66257854,-73.94732487,noise 40.80279815,-73.95654015,noise 40.90085199,-73.85487908,noise 40.75846663,-73.84203222,noise 40.67696653,-73.98333313,noise 40.75846663,-73.84203222,noise 40.6716626,-73.95091902,noise 40.75846663,-73.84203222,noise 40.68672159,-73.98426818,noise 40.89119556,-73.89480824,noise 40.73052807,-73.98473411,noise 40.7118486,-73.78986498,noise 40.63597511,-73.97814065,noise 40.64269519,-73.96977506,noise 40.58756594,-73.81125353,noise 40.82326405,-73.9527619,noise 40.58537563,-73.8096216,noise 40.84858654,-73.91805909,noise 40.80285303,-73.95650039,noise 40.76676988,-73.97118444,noise 40.82293267,-73.94806509,noise 40.71032776,-73.94994912,noise 40.65941369,-73.87079092,noise 40.66973654,-73.93103266,noise 40.66364414,-73.87393665,noise 40.85359837,-73.93061428,noise 40.66179374,-73.98583116,noise 40.87177985,-73.9188983,noise 40.80285303,-73.95650039,noise 40.70314672,-73.98786372,noise 40.88668276,-73.90039215,noise 40.84348354,-73.93428967,noise 40.65764509,-73.87489588,noise 40.66079821,-73.87182268,noise 40.70964128,-74.0066188,noise 40.83780043,-73.9114336,noise 40.76331469,-73.92819586,noise 40.7118486,-73.78986498,noise 40.76889103,-73.98209349,noise 40.86553576,-73.9272684,noise 40.86596553,-73.92985298,noise 40.86565753,-73.92888075,noise 40.86553576,-73.9272684,noise 40.86553576,-73.9272684,noise 40.86565753,-73.92888075,noise 40.86553576,-73.9272684,noise 40.86526983,-73.92775677,noise 40.79532613,-73.97128765,noise 40.80271872,-73.96510069,noise 40.86553576,-73.9272684,noise 40.80444141,-73.94790614,noise 40.70314672,-73.98786372,noise 40.80854614,-73.9449372,noise 40.6652156,-73.77155643,noise 40.7332432,-73.98990772,noise 40.69286843,-73.82064496,noise 40.73321576,-73.98992216,noise 40.82574216,-73.92596054,noise 40.82574216,-73.92596054,noise 40.82574216,-73.92596054,noise 40.7642781,-73.97301575,noise 40.80444141,-73.94790614,noise 40.73141011,-73.99697276,noise 40.72964017,-73.89375354,noise 40.76235002,-73.92618623,noise 40.70145292,-73.88665032,noise 40.74431672,-73.95845851,noise 40.87678755,-73.8744474,noise 40.83819186,-73.94501385,noise 40.77949937,-73.98163208,noise 40.7863726,-73.93165574,noise 40.8381204,-73.94479707,noise 40.86553576,-73.9272684,noise 40.76331469,-73.92819586,noise 40.68305958,-73.9810457,noise 40.7129296,-73.96415573,noise 40.84682457,-73.93556225,noise 40.74294904,-73.99646701,noise 40.79711518,-73.93592459,noise 40.77680945,-73.95253489,noise 40.63364395,-73.96394252,noise 40.72953107,-73.9804155,noise 40.74294904,-73.99646701,noise 40.84000215,-73.93724939,noise 40.76331469,-73.92819586,noise 40.8859205,-73.91142736,noise 40.77395281,-73.9709647,noise 40.77936412,-73.97736782,noise 40.76331469,-73.92819586,noise 40.79956873,-73.95961594,noise 40.76272656,-73.9269872,noise 40.7746797,-73.98220025,noise 40.77156786,-73.97189721,noise 40.84963398,-73.93351369,noise 40.79947531,-73.95934872,noise 40.82574216,-73.92596054,noise 40.76331469,-73.92819586,noise 40.73618847,-74.008321,noise 40.86281834,-73.90782477,noise 40.84183266,-73.88387762,noise 40.7827097,-73.96530978,noise 40.69396945,-73.92987527,noise 40.73586715,-73.95519097,noise 40.80934133,-73.94921721,noise 40.67822373,-73.88371905,noise 40.67841521,-73.88307337,noise 40.63930819,-74.016362,noise 40.88316838,-73.85965153,noise 40.67847535,-73.88283532,noise 40.66850549,-73.97439186,noise 40.67117623,-73.97469725,noise 40.63754155,-74.0360704,noise 40.73240037,-73.98784396,noise 40.71836342,-73.95414215,noise 40.72067536,-73.99678205,noise 40.79573272,-73.932661,noise 40.68214733,-73.81204584,noise 40.72573834,-73.98377913,noise 40.8221908,-73.91449297,noise 40.75033792,-74.00261665,noise 40.79995879,-73.9605259,noise 40.68497144,-73.8600146,noise 40.66321801,-73.86604367,noise 40.79513631,-73.96959389,noise 40.76723794,-73.91741911,noise 40.71631921,-74.0077702,noise 40.755483,-73.88616134,noise 40.743596,-73.98600864,noise 40.69253774,-73.9610691,noise 40.72925895,-73.90022336,noise 40.75498745,-73.99512727,noise 40.68142275,-73.95710239,noise 40.69276821,-73.96082375,noise 40.71602271,-73.99130997,noise 40.81726755,-73.9422565,noise 40.8629543,-73.89065556,noise 40.72457503,-73.98749182,noise 40.6395296,-73.95128856,noise 40.84706204,-73.93817525,noise 40.69822499,-73.80633492,noise 40.64496728,-73.95897801,noise 40.72148775,-73.99511529,noise 40.61488236,-73.93643088,noise 40.68117681,-73.96015274,noise 40.73029441,-73.98223737,noise 40.65303518,-73.92758296,noise 40.68230634,-73.92894289,noise 40.72231555,-73.98321356,noise 40.7158498,-73.99138935,noise 40.68142275,-73.95710239,noise 40.68821529,-73.96278078,noise 40.8065972,-73.95748408,noise 40.74908619,-73.99389339,noise 40.59916024,-73.96126399,noise 40.6780833,-73.90741673,noise 40.73434974,-74.00300933,noise 40.76154468,-73.92445081,noise 40.73260346,-73.98768155,noise 40.63340862,-73.95103722,noise 40.70097726,-73.9071974,noise 40.626026,-74.17672214,noise 40.63283667,-74.02723013,noise 40.62868376,-73.92384106,noise 40.70336533,-73.92634531,noise 40.70097726,-73.9071974,noise 40.80746061,-73.919309,noise 40.67940639,-73.98167767,noise 40.88956351,-73.89903879,noise 40.69069393,-73.95537999,noise 40.720604,-73.99678566,noise 40.68789023,-73.90723725,noise 40.87959654,-73.90430103,noise 40.72544004,-73.99214576,noise 40.71631921,-74.0077702,noise 40.72046401,-73.99671351,noise 40.7578241,-73.86099852,noise 40.67347685,-73.79149639,noise 40.82388692,-73.9523062,noise 40.68138729,-73.97707658,noise 40.68148609,-73.97702246,noise 40.64018175,-73.95530567,noise 40.74055034,-73.97559833,noise 40.67085414,-73.98491359,noise 40.59013616,-73.97389624,noise 40.77311223,-73.91440074,noise 40.64631775,-73.9519899,noise 40.72597827,-74.00133491,noise 40.68272042,-73.96329223,noise 40.6307461,-73.97716603,noise 40.70219632,-73.81107325,noise 40.70215493,-73.81093992,noise 40.61682225,-73.93050381,noise 40.70827323,-73.94109211,noise 40.5880379,-73.9600391,noise 40.79578676,-73.94676079,noise 40.7622605,-73.98800456,noise 40.76379687,-73.9825822,noise 40.76213717,-73.98992139,noise 40.76324872,-73.98913066,noise 40.76809013,-73.9861479,noise 40.76334753,-73.98905845,noise 40.82136807,-73.95428795,noise 40.72100987,-73.95542824,noise 40.72605395,-73.98353372,noise 40.72136411,-73.99266213,noise 40.68540207,-73.97326762,noise 40.75676421,-73.96715332,noise 40.72222284,-73.98813082,noise 40.8551291,-73.90617258,noise 40.58966104,-74.06730402,noise 40.76121189,-73.98690016,noise 40.80746061,-73.919309,noise 40.59034214,-74.06662421,noise 40.72959583,-74.00282511,noise 40.80285303,-73.95650039,noise 40.64460505,-73.95210284,noise 40.69601188,-73.9675619,noise 40.84968263,-73.93705592,noise 40.67718081,-74.01531857,noise 40.59034214,-74.06662421,noise 40.59034214,-74.06662421,noise 40.7221652,-73.98815969,noise 40.78168807,-73.94896026,noise 40.73520875,-74.00563625,noise 40.59034214,-74.06662421,noise 40.86241052,-73.9204209,noise 40.84008697,-73.93676503,noise 40.84711145,-73.93818244,noise 40.68584954,-73.97358834,noise 40.64655936,-73.95927252,noise 40.84413857,-73.93751656,noise 40.84999364,-73.93865327,noise 40.7274952,-73.98535176,noise 40.69489819,-73.93155477,noise 40.80095852,-73.93723563,noise 40.70822427,-74.0143807,noise 40.73787622,-73.98850331,noise 40.72386918,-73.98388421,noise 40.86804163,-73.92297398,noise 40.86241052,-73.9204209,noise 40.73214848,-74.00151905,noise 40.76459406,-73.91646214,noise 40.83418694,-73.90957373,noise 40.59657008,-73.77250066,noise 40.84967442,-73.9370993,noise 40.73243667,-74.00193039,noise 40.62863721,-74.08003528,noise 40.74268834,-74.0003717,noise 40.68958479,-73.97198946,noise 40.77212639,-73.929941,noise 40.73211582,-73.86718968,noise 40.6639504,-73.98072312,noise 40.72870931,-74.00024174,noise 40.7428393,-74.00027427,noise 40.72473066,-73.98145235,noise 40.73211582,-73.86718968,noise 40.77683657,-73.97921731,noise 40.71169246,-73.95123582,noise 40.75889846,-73.87145342,noise 40.72933786,-74.0010319,noise 40.66375369,-73.93715928,noise 40.85059339,-73.9011402,noise 40.82176574,-73.94144328,noise 40.67938027,-74.00542243,noise 40.73877432,-74.00018404,noise 40.63083172,-74.07797355,noise 40.71574278,-74.00824269,noise 40.8571179,-73.90482501,noise 40.75007365,-73.98636819,noise 40.69615898,-73.7866075,noise 40.77632971,-73.90147431,noise 40.78869209,-73.94776317,noise 40.75444761,-73.93013645,noise 40.76213717,-73.98992139,noise 40.64062044,-74.01458232,noise 40.72723158,-73.98445345,noise 40.71589488,-73.94002482,noise 40.70083833,-73.81316526,noise 40.87367193,-73.87922985,noise 40.81711658,-73.94800821,noise 40.70330246,-73.92255481,noise 40.69615898,-73.7866075,noise 40.71071743,-73.96451041,noise 40.87337059,-73.87977639,noise 40.86546922,-73.89147213,noise 40.68722405,-73.98555893,noise 40.67135844,-73.8831254,noise 40.59332691,-73.94050578,noise 40.86688884,-73.91895488,noise 40.83035789,-73.94384593,noise 40.81711658,-73.94800821,noise 40.67135029,-73.88320472,noise 40.86067578,-73.92868725,noise 40.7622605,-73.98800456,noise 40.79478404,-73.93938673,noise 40.62222627,-74.08265723,noise 40.87367193,-73.87922985,noise 40.71428856,-73.96514338,noise 40.743596,-73.98600864,noise 40.67685075,-73.98015337,noise 40.73250431,-73.9848383,noise 40.70477459,-74.00974533,noise 40.62838143,-74.02904041,noise 40.83811767,-73.94483683,noise 40.69406639,-73.96054171,noise 40.83821932,-73.94502828,noise 40.81711658,-73.94800821,noise 40.82574216,-73.92596054,noise 40.79492925,-73.93889543,noise 40.86324507,-73.86937538,noise 40.71589488,-73.94002482,noise 40.76330097,-73.92820671,noise 40.77758314,-73.97922791,noise 40.64018175,-73.95530567,noise 40.7640329,-73.98247023,noise 40.81711658,-73.94800821,noise 40.8381204,-73.94479707,noise 40.87336241,-73.87983064,noise 40.87367193,-73.87922985,noise 40.81663976,-73.86688372,noise 40.67685075,-73.98015337,noise 40.87367193,-73.87922985,noise 40.69391913,-73.92004863,noise 40.86324507,-73.86937538,noise 40.68220447,-73.93787741,noise 40.81926097,-73.89628763,noise 40.8179243,-73.94973091,noise 40.72196525,-73.99341245,noise 40.81711658,-73.94800821,noise 40.71527342,-73.99168522,noise 40.80444141,-73.94790614,noise 40.72933786,-74.0010319,noise 40.86324507,-73.86937538,noise 40.76804592,-73.9839385,noise 40.73249706,-74.00183297,noise 40.83882344,-73.94563493,noise 40.86324507,-73.86937538,noise 40.69396945,-73.92987527,noise 40.86549036,-73.92085107,noise 40.58756594,-73.81125353,noise 40.80165958,-73.95093152,noise 40.78869209,-73.94776317,noise 40.80143455,-73.93443231,noise 40.79127409,-73.94604573,noise 40.75171837,-73.85539165,noise 40.62863721,-74.08003528,noise 40.71514546,-73.94534262,noise 40.81711658,-73.94800821,noise 40.73249706,-74.00183297,noise 40.86324507,-73.86937538,noise 40.73243667,-74.00193039,noise 40.75790747,-73.98929757,noise 40.6542813,-73.96180501,noise 40.68605695,-73.82489638,noise 40.67994535,-73.98955886,noise 40.62859349,-73.90573813,noise 40.75791171,-73.85856186,noise 40.85677914,-73.89109589,noise 40.82040887,-73.8969687,noise 40.82040887,-73.8969687,noise 40.72280904,-73.95904915,noise 40.73434974,-74.00300933,noise 40.78229519,-73.96512584,noise 40.66965542,-73.99252723,noise 40.87678755,-73.8744474,noise 40.68464447,-73.83490931,noise 40.85157328,-73.86584146,noise 40.6542813,-73.96180501,noise 40.68206742,-73.89325246,noise 40.57119135,-74.0910565,noise 40.86233869,-73.91975578,noise 40.67443631,-73.91945552,noise 40.72961104,-73.96048459,noise 40.81388326,-73.91181224,noise 40.6542813,-73.96180501,noise 40.80825065,-73.91488656,noise 40.7640329,-73.98247023,noise 40.82671891,-73.92538854,noise 40.73476935,-73.99063277,noise 40.7440955,-73.98561878,noise 40.72306557,-73.98907949,noise 40.72267233,-73.98296454,noise 40.65972716,-73.98791847,noise 40.72349367,-73.98825325,noise 40.67675195,-73.9802183,noise 40.72532531,-73.97621002,noise 40.78175851,-73.98305053,noise 40.81711658,-73.94800821,noise 40.73597702,-73.99038001,noise 40.68789023,-73.90723725,noise 40.79513631,-73.96959389,noise 40.72255151,-73.98265431,noise 40.79513631,-73.96959389,noise 40.72134943,-73.98344469,noise 40.83215698,-73.94094629,noise 40.72968804,-73.98376734,noise 40.72698284,-74.0019591,noise 40.77350816,-73.91167435,noise 40.71047784,-73.98657107,noise 40.63606328,-73.96787928,noise 40.80849939,-73.93929477,noise 40.74705161,-73.88665213,noise 40.72234137,-73.94948914,noise 40.82724502,-73.9240474,noise 40.6753608,-73.96969176,noise 40.84960654,-73.93352094,noise 40.72084647,-73.95180273,noise 40.7221796,-73.94986445,noise 40.73595507,-73.99047744,noise 40.73609782,-74.00919422,noise 40.79513631,-73.96959389,noise 40.70297132,-73.90548869,noise 40.71446308,-73.98534381,noise 40.83477927,-73.88716399,noise 40.81031859,-73.94362442,noise 40.58578658,-73.81934121,noise 40.68674495,-73.96552557,noise 40.73534843,-73.98991823,noise 40.73243667,-74.00193039,noise 40.8604283,-73.92794279,noise 40.72234137,-73.94948914,noise 40.7657348,-73.98360333,noise 40.66802068,-73.95892779,noise 40.59037722,-73.97184024,noise 40.72436223,-73.95113996,noise 40.6798188,-73.90842382,noise 40.69706138,-73.91932,noise 40.76299834,-73.98392167,noise 40.7472504,-73.8625111,noise 40.66063155,-73.93980419,noise 40.66590292,-73.94253172,noise 40.6746243,-73.93956444,noise 40.73186463,-73.9837596,noise 40.62863721,-74.08003528,noise 40.83615034,-73.85419264,noise 40.74736158,-73.88645672,noise 40.8128971,-73.92213828,noise 40.85205828,-73.93477641,noise 40.60340463,-73.75384452,noise 40.75548196,-73.81543034,noise 40.74203508,-73.99834359,noise 40.82924468,-73.91443332,noise 40.82447734,-73.92672794,noise 40.72591124,-73.9836492,noise 40.82919528,-73.914437,noise 40.67592902,-73.81801549,noise 40.75922931,-73.92629437,noise 40.59655143,-73.97703729,noise 40.73260346,-73.98768155,noise 40.69957784,-73.83235864,noise 40.70685211,-73.9481952,noise 40.8314843,-73.92209123,noise 40.81884287,-73.95415239,noise 40.74736158,-73.88645672,noise 40.85978272,-73.9270361,noise 40.85205828,-73.93477641,noise 40.71926915,-73.96152968,noise 40.67653648,-73.74727631,noise 40.75826062,-73.8419172,noise 40.59959958,-73.98581555,noise 40.7630598,-73.99668614,noise 40.7139009,-73.90880986,noise 40.74203508,-73.99834359,noise 40.83215401,-73.93541385,noise 40.69822499,-73.80633492,noise 40.72239575,-73.98801534,noise 40.85059339,-73.9011402,noise 40.69957784,-73.83235864,noise 40.68138125,-74.00444551,noise 40.71102508,-73.95029487,noise 40.77603325,-73.91523464,noise 40.87645001,-73.89976745,noise 40.72188599,-73.95683824,noise 40.70792233,-73.95409523,noise 40.85205828,-73.93477641,noise 40.76494318,-73.91720536,noise 40.60355361,-73.97804323,noise 40.73566313,-73.71608838,noise 40.72110344,-73.99418095,noise 40.74203508,-73.99834359,noise 40.71618337,-73.98074408,noise 40.85706015,-73.90468411,noise 40.78536042,-73.97298193,noise 40.80240327,-73.9506059,noise 40.7058125,-73.94374887,noise 40.84628291,-73.93885187,noise 40.70889971,-73.95472216,noise 40.73234787,-73.98493936,noise 40.80238678,-73.95056979,noise 40.80285303,-73.95650039,noise 40.72386918,-73.98388421,noise 40.67522475,-73.95630964,noise 40.69780518,-73.92329328,noise 40.673466,-73.95111596,noise 40.85140855,-73.88348136,noise 40.69747135,-73.97566098,noise 40.85205828,-73.93477641,noise 40.82687657,-73.94750556,noise 40.72597827,-74.00133491,noise 40.58966104,-74.06730402,noise 40.68924657,-73.96954482,noise 40.75624515,-73.92120466,noise 40.84682457,-73.93556225,noise 40.7451164,-73.98446732,noise 40.76153341,-73.77488641,noise 40.77870048,-73.91435745,noise 40.6808768,-73.9448371,noise 40.83131818,-73.85090765,noise 40.68272042,-73.96329223,noise 40.70383481,-73.93097214,noise 40.64018175,-73.95530567,noise 40.81726755,-73.9422565,noise 40.69313307,-73.96920047,noise 40.71986468,-73.98467883,noise 40.81699537,-73.96076146,noise 40.71982113,-73.96236991,noise 40.82447734,-73.92672794,noise 40.64018175,-73.95530567,noise 40.85016672,-73.93397221,noise 40.72136411,-73.99266213,noise 40.77867848,-73.91429249,noise 40.80285303,-73.95650039,noise 40.70808154,-74.01444559,noise 40.76330097,-73.92820671,noise 40.74333499,-73.86599446,noise 40.59013616,-73.97389624,noise 40.74736716,-73.88655054,noise 40.76334753,-73.98905845,noise 40.82717916,-73.88169543,noise 40.70383481,-73.93097214,noise 40.80189077,-73.96842414,noise 40.69357091,-73.96460248,noise 40.76324872,-73.98913066,noise 40.79978541,-73.94029959,noise 40.7475205,-73.9824024,noise 40.85205828,-73.93477641,noise 40.7622605,-73.98800456,noise 40.78131764,-73.94922052,noise 40.81726755,-73.9422565,noise 40.85797909,-73.93090253,noise 40.73015573,-73.99606358,noise 40.65162237,-74.00447957,noise 40.72095176,-73.85059537,noise 40.71728083,-73.95832025,noise 40.72279616,-73.98523374,noise 40.71845081,-73.98241368,noise 40.74252091,-74.00051966,noise 40.68924657,-73.96954482,noise 40.84503065,-73.93759885,noise 40.8372988,-73.94289685,noise 40.58488412,-73.92664159,noise 40.74487368,-73.95785548,noise 40.77303423,-73.95642599,noise 40.74487368,-73.95785548,noise 40.77596729,-73.91512641,noise 40.70579274,-73.91968814,noise 40.73243667,-74.00193039,noise 40.68272042,-73.96329223,noise 40.8270579,-73.94788843,noise 40.75082371,-74.00381854,noise 40.75064532,-74.00334572,noise 40.87674378,-73.90307568,noise 40.82574216,-73.92596054,noise 40.77596729,-73.91512641,noise 40.68789023,-73.90723725,noise 40.6636087,-73.95592076,noise 40.64998168,-73.83758618,noise 40.76082351,-73.95813778,noise 40.74297597,-73.98853852,noise 40.76385801,-73.98869015,noise 40.76174981,-73.98648132,noise 40.69058524,-73.95831169,noise 40.71999196,-74.00024531,noise 40.82763977,-73.94212103,noise 40.78759753,-73.94319587,noise 40.71613509,-73.98946661,noise 40.68272042,-73.96329223,noise 40.76430472,-73.98309468,noise 40.72951901,-73.99981238,noise 40.67530914,-73.9620922,noise 40.74297597,-73.98853852,noise 40.69316922,-73.97101431,noise 40.74297597,-73.98853852,noise 40.78869209,-73.94776317,noise 40.80603558,-73.94677066,noise 40.76081394,-73.98718902,noise 40.67915413,-73.98342993,noise 40.77503381,-73.95304163,noise 40.69394937,-73.96359256,noise 40.84711145,-73.93818244,noise 40.77503381,-73.95304163,noise 40.7475205,-73.9824024,noise 40.74736716,-73.88655054,noise 40.82574216,-73.92596054,noise 40.61567436,-74.03423242,noise 40.73243667,-74.00193039,noise 40.6410404,-74.01453197,noise 40.74494878,-73.86124552,noise 40.82574216,-73.92596054,noise 40.79835554,-73.95237145,noise 40.67336696,-73.96565505,noise 40.80269908,-73.94918615,noise 40.82782361,-73.94199802,noise 40.69394937,-73.96359256,noise 40.76385801,-73.98869015,noise 40.70889971,-73.95472216,noise 40.82410397,-73.9528408,noise 40.85797909,-73.93090253,noise 40.76081394,-73.98718902,noise 40.68789023,-73.90723725,noise 40.74705161,-73.88665213,noise 40.73249706,-74.00183297,noise 40.82755197,-73.94218615,noise 40.67444808,-73.90944062,noise 40.72806703,-73.99895369,noise 40.65504788,-73.95630123,noise 40.70412645,-73.90171808,noise 40.84336697,-73.91544521,noise 40.71795041,-73.95792662,noise 40.78869209,-73.94776317,noise 40.82246133,-73.87677556,noise 40.79640523,-73.96310674,noise 40.6493772,-74.00228836,noise 40.61837506,-73.90969319,noise 40.86095467,-73.90780566,noise 40.76327781,-73.98070881,noise 40.70539247,-73.93331852,noise 40.73240906,-74.00639735,noise 40.74980777,-73.98985468,noise 40.71589488,-73.94002482,noise 40.78698712,-73.96929066,noise 40.71562216,-73.99427522,noise 40.67450812,-73.9734955,noise 40.62916131,-74.01142752,noise 40.7158555,-73.99495337,noise 40.69440359,-73.93064653,noise 40.7326191,-73.98150067,noise 40.72982208,-73.98077622,noise 40.69822499,-73.80633492,noise 40.70252976,-73.81356446,noise 40.71810942,-73.95742869,noise 40.52770124,-74.23095204,noise 40.6721373,-73.9574292,noise 40.64510255,-73.97047305,noise 40.71839401,-73.98920652,noise 40.59959958,-73.98581555,noise 40.81453554,-73.95914444,noise 40.64018175,-73.95530567,noise 40.73426727,-74.00622072,noise 40.77683657,-73.97921731,noise 40.73426727,-74.00622072,noise 40.70285592,-73.81159434,noise 40.73452819,-74.00101033,noise 40.76627668,-73.95641958,noise 40.69394937,-73.96359256,noise 40.80932963,-73.94188048,noise 40.74860668,-73.97810369,noise 40.76334753,-73.98905845,noise 40.82755197,-73.94218615,noise 40.80444141,-73.94790614,noise 40.66770993,-73.95733109,noise 40.73249706,-74.00183297,noise 40.73243667,-74.00193039,noise 40.62526616,-73.92756266,noise 40.73398154,-73.98987513,noise 40.73595507,-73.99047744,noise 40.83775531,-73.90643561,noise 40.71344378,-73.95866172,noise 40.77302243,-73.97132254,noise 40.71141178,-73.99619093,noise 40.67181585,-73.84309182,noise 40.81824845,-73.93893543,noise 40.77156786,-73.97189721,noise 40.81884287,-73.95415239,noise 40.86511344,-73.91954635,noise 40.71302408,-73.76335941,noise 40.72404042,-73.99616857,noise 40.61905279,-73.99799364,noise 40.7599125,-73.95880976,noise 40.61915435,-73.99787117,noise 40.61859442,-73.99845832,noise 40.72277419,-73.98517963,noise 40.86437703,-73.92653575,noise 40.7786131,-73.77583968,noise 40.71055807,-73.99414219,noise 40.84693233,-73.9117612,noise 40.76343016,-73.99270081,noise 40.72483716,-73.97832075,noise 40.71965964,-73.99306996,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.88470275,-73.92017,noise 40.67786527,-73.99806758,noise 40.71121192,-73.96593854,noise 40.72306557,-73.98907949,noise 40.85108799,-73.93718833,noise 40.72581057,-73.99199058,noise 40.85978272,-73.9270361,noise 40.81456933,-73.947667,noise 40.86097423,-73.92752645,noise 40.7604832,-73.9582499,noise 40.74908359,-74.00158801,noise 40.74462061,-74.00269222,noise 40.73234787,-73.98493936,noise 40.83414249,-73.94311999,noise 40.73051434,-73.98470164,noise 40.86292586,-73.92776655,noise 40.77683657,-73.97921731,noise 40.66459817,-73.95239847,noise 40.74621419,-73.91503078,noise 40.86019986,-73.92694526,noise 40.67821199,-73.97923002,noise 40.6605783,-73.99063597,noise 40.72870931,-74.00024174,noise 40.76053814,-73.95835454,noise 40.8604283,-73.92794279,noise 40.68153609,-73.98024933,noise 40.7599125,-73.95880976,noise 40.7604832,-73.9582499,noise 40.76022532,-73.95858576,noise 40.85701115,-73.93248689,noise 40.64460505,-73.95210284,noise 40.67685075,-73.98015337,noise 40.64519769,-73.95154747,noise 40.81828243,-73.95285576,noise 40.72398003,-73.99624433,noise 40.76167795,-73.96045834,noise 40.80311646,-73.95631961,noise 40.77623713,-73.95586787,noise 40.72304635,-73.98902538,noise 40.81986557,-73.95852336,noise 40.79438124,-73.93556968,noise 40.71963414,-73.98477629,noise 40.71963414,-73.98477629,noise 40.71963414,-73.98477629,noise 40.77683657,-73.97921731,noise 40.72398003,-73.99624433,noise 40.77494924,-73.94784978,noise 40.71026351,-73.95385555,noise 40.74928842,-73.98454214,noise 40.71026351,-73.95385555,noise 40.68980567,-73.9779391,noise 40.77795656,-73.90379357,noise 40.7205353,-73.99466441,noise 40.83073495,-73.92202706,noise 40.73249706,-74.00183297,noise 40.71963414,-73.98477629,noise 40.72579798,-73.97916828,noise 40.85008591,-73.93188667,noise 40.85093301,-73.93018692,noise 40.66298282,-73.94909074,noise 40.76022532,-73.95858576,noise 40.82574216,-73.92596054,noise 40.7604832,-73.9582499,noise 40.72894882,-73.97836993,noise 40.85199617,-73.93178712,noise 40.71963414,-73.98477629,noise 40.82574216,-73.92596054,noise 40.68735944,-74.0015649,noise 40.74887754,-73.97392427,noise 40.76103983,-73.97537424,noise 40.85021454,-73.9312576,noise 40.64846321,-74.00075677,noise 40.71997982,-73.98364344,noise 40.78203801,-73.91425927,noise 40.68118042,-73.90868515,noise 40.6936969,-73.80036912,noise 40.63613587,-74.02735398,noise 40.73007872,-73.99284157,noise 40.7302187,-73.99273692,noise 40.7302187,-73.99273692,noise 40.73697612,-73.99045203,noise 40.79585513,-73.93552852,noise 40.74980777,-73.98985468,noise 40.7640329,-73.98247023,noise 40.73521408,-73.99171521,noise 40.86511607,-73.91938366,noise 40.71339097,-73.78976273,noise 40.75050229,-73.99096621,noise 40.74406555,-73.987748,noise 40.6907193,-73.95713607,noise 40.6471319,-74.00462341,noise 40.66046172,-73.98033486,noise 40.7293845,-74.00232719,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.7295146,-73.98038304,noise 40.73971565,-74.00534434,noise 40.75276515,-73.87253722,noise 40.70383481,-73.93097214,noise 40.67087122,-73.91999335,noise 40.68187917,-73.7660803,noise 40.83940401,-73.9376222,noise 40.70383481,-73.93097214,noise 40.64018175,-73.95530567,noise 40.75479786,-73.99155396,noise 40.70345053,-73.92651833,noise 40.78417568,-73.97758645,noise 40.64998168,-73.83758618,noise 40.69453666,-73.96330014,noise 40.68142275,-73.95710239,noise 40.70585178,-73.92171868,noise 40.75861214,-73.98323329,noise 40.75395943,-73.93077582,noise 40.72588105,-73.98364921,noise 40.72277419,-73.98517963,noise 40.81833313,-73.92028935,noise 40.84681098,-73.93580082,noise 40.84672579,-73.93562018,noise 40.72587728,-73.9775339,noise 40.81935825,-73.91828295,noise 40.72970289,-73.77936693,noise 40.74736716,-73.88655054,noise 40.72973287,-73.72794814,noise 40.70607594,-74.0042019,noise 40.67915413,-73.98342993,noise 40.63284777,-73.92836506,noise 40.72279616,-73.98523374,noise 40.85061712,-73.93947321,noise 40.83985867,-73.9224609,noise 40.82596179,-73.95198313,noise 40.65287906,-73.9198059,noise 40.67915413,-73.98342993,noise 40.64636893,-74.00183421,noise 40.84537703,-73.88210763,noise 40.84048998,-73.9185136,noise 40.84992098,-73.93147116,noise 40.82574216,-73.92596054,noise 40.85009657,-73.93135531,noise 40.71376472,-73.96650718,noise 40.83896311,-73.91363658,noise 40.65052979,-73.95582489,noise 40.70870503,-74.01040237,noise 40.74980777,-73.98985468,noise 40.74089181,-73.98165715,noise 40.80934133,-73.94921721,noise 40.73051434,-73.98470164,noise 40.77395281,-73.9709647,noise 40.80077953,-73.95334854,noise 40.7505438,-73.99836504,noise 40.73390771,-74.00625677,noise 40.62964721,-74.01069987,noise 40.7158555,-73.99495337,noise 40.81548486,-73.90332024,noise 40.71674748,-73.99369795,noise 40.77370864,-73.94789046,noise 40.71762871,-73.99826123,noise 40.73010795,-73.98347499,noise 40.59279825,-73.98837706,noise 40.71205636,-73.96285765,noise 40.78017633,-73.95719764,noise 40.72674376,-73.99168018,noise 40.64024765,-73.95537048,noise 40.7703909,-73.91268214,noise 40.64018175,-73.95530567,noise 40.68640518,-73.86081567,noise 40.86941776,-73.91657993,noise 40.82574216,-73.92596054,noise 40.81281244,-73.95344487,noise 40.63278486,-73.99445166,noise 40.75676328,-73.9945424,noise 40.76879865,-73.95525907,noise 40.67802347,-73.9706135,noise 40.80282928,-73.96774463,noise 40.60997546,-74.0086078,noise 40.58882417,-73.80212282,noise 40.89636259,-73.87187844,noise 40.72674376,-73.99168018,noise 40.74883018,-73.98551309,noise 40.76165925,-73.98656075,noise 40.68334267,-73.9608365,noise 40.74967829,-73.98542629,noise 40.72933786,-74.0010319,noise 40.6857855,-73.96077377,noise 40.81923213,-73.95293457,noise 40.74883018,-73.98551309,noise 40.58886785,-73.80198947,noise 40.74883018,-73.98551309,noise 40.74883018,-73.98551309,noise 40.74883018,-73.98551309,noise 40.75849777,-73.82556864,noise 40.74883018,-73.98551309,noise 40.74883018,-73.98551309,noise 40.74883018,-73.98551309,noise 40.67486925,-73.98154192,noise 40.77680945,-73.95253489,noise 40.68237343,-73.98134515,noise 40.7170331,-73.95643735,noise 40.58882417,-73.80212282,noise 40.79578676,-73.94676079,noise 40.64982152,-74.00908863,noise 40.64982152,-74.00908863,noise 40.81348361,-73.91696795,noise 40.6471319,-74.00462341,noise 40.64968705,-74.00884356,noise 40.76889103,-73.98209349,noise 40.6613542,-73.9696801,noise 40.7295792,-73.99326016,noise 40.87046513,-73.91506364,noise 40.72720182,-73.98803973,noise 40.71039614,-74.00559809,noise 40.77683657,-73.97921731,noise 40.6064722,-73.98326069,noise 40.75635718,-73.82577277,noise 40.78424625,-73.97382014,noise 40.7786131,-73.77583968,noise 40.74201753,-73.91891912,noise 40.70383481,-73.93097214,noise 40.84706204,-73.93817525,noise 40.85354567,-73.91729026,noise 40.79578676,-73.94676079,noise 40.73141011,-73.99697276,noise 40.73434974,-74.00300933,noise 40.62637037,-74.07545381,noise 40.75624515,-73.92120466,noise 40.69247763,-73.85938942,noise 40.71144313,-73.94609232,noise 40.63597511,-73.97814065,noise 40.86089959,-73.9266842,noise 40.80101023,-73.94730202,noise 40.68266295,-73.99320721,noise 40.72606136,-73.93980642,noise 40.73234787,-73.98493936,noise 40.75624515,-73.92120466,noise 40.63278486,-73.99445166,noise 40.67522475,-73.95630964,noise 40.67601586,-73.89397597,noise 40.67709846,-74.01540147,noise 40.64018175,-73.95530567,noise 40.656725,-74.00086138,noise 40.77596729,-73.91512641,noise 40.75066178,-74.00343234,noise 40.60089325,-74.00073102,noise 40.5995808,-73.98996033,noise 40.73619707,-73.84103136,noise 40.85414949,-73.88247887,noise 40.74274833,-73.84471111,noise 40.86522878,-73.91964383,noise 40.74059946,-73.82753891,noise 40.77226801,-73.91982821,noise 40.6395296,-73.95128856,noise 40.75184014,-73.90357142,noise 40.77596729,-73.91512641,noise 40.68449717,-73.93941487,noise 40.68935074,-73.81613264,noise 40.75470266,-73.84539791,noise 40.75007365,-73.98636819,noise 40.89686984,-73.87643868,noise 40.67596498,-73.81819204,noise 40.73243667,-74.00193039,noise 40.76362248,-73.99701462,noise 40.72100987,-73.95542824,noise 40.7068971,-73.90311705,noise 40.85461992,-73.90119929,noise 40.74252091,-74.00051966,noise 40.80275151,-73.95659798,noise 40.66064331,-73.96062997,noise 40.70251036,-73.99306814,noise 40.80603296,-73.94137765,noise 40.80285303,-73.95650039,noise 40.83337398,-73.91614451,noise 40.69528435,-73.925752,noise 40.81231515,-73.95222779,noise 40.86233869,-73.91975578,noise 40.85359837,-73.93061428,noise 40.74414557,-73.87406582,noise 40.87130264,-73.89853862,noise 40.68643738,-73.92919089,noise 40.68643738,-73.92919089,noise 40.75846663,-73.84203222,noise 40.65385069,-73.95509109,noise 40.75846663,-73.84203222,noise 40.70251036,-73.99306814,noise 40.75846663,-73.84203222,noise 40.71086346,-73.95800323,noise 40.71992609,-74.0002886,noise 40.7205353,-73.99466441,noise 40.70262842,-73.99373174,noise 40.74705161,-73.88665213,noise 40.70251036,-73.99306814,noise 40.72933786,-74.0010319,noise 40.70855985,-73.9380909,noise 40.86931906,-73.91673192,noise 40.75752223,-73.83407535,noise 40.72933786,-74.0010319,noise 40.6411861,-73.91955691,noise 40.75256615,-73.90524869,noise 40.85588916,-73.92891289,noise 40.83719401,-73.93669189,noise 40.85588916,-73.92891289,noise 40.84266293,-73.90653351,noise 40.7581599,-73.9625937,noise 40.63005739,-74.1144137,noise 40.68644558,-73.92912959,noise 40.79513631,-73.96959389,noise 40.69487346,-73.93151152,noise 40.83719401,-73.93669189,noise 40.82538549,-73.92618134,noise 40.70859535,-73.93774461,noise 40.79513631,-73.96959389,noise 40.78699941,-73.94961703,noise 40.86811354,-73.91975243,noise 40.74705161,-73.88665213,noise 40.51478878,-74.24842226,noise 40.68643738,-73.92919089,noise 40.71992609,-74.0002886,noise 40.79600328,-73.93540919,noise 40.71795041,-73.95792662,noise 40.81348361,-73.91696795,noise 40.67457388,-73.96313809,noise 40.75979023,-73.98792559,noise 40.71992609,-74.0002886,noise 40.80215017,-73.95595544,noise 40.77333932,-73.92108335,noise 40.72932365,-73.98938876,noise 40.7170331,-73.95643735,noise 40.85677914,-73.89109589,noise 40.64519769,-73.95154747,noise 40.58413031,-73.93277355,noise 40.6483449,-74.00814787,noise 40.7009771,-73.91781856,noise 40.6483449,-74.00814787,noise 40.79358813,-73.93577991,noise 40.58740438,-73.80982103,noise 40.64519769,-73.95154747,noise 40.58740438,-73.80982103,noise 40.6440033,-73.97657773,noise 40.6440033,-73.97657773,noise 40.62770721,-74.07933887,noise 40.71957476,-73.99950577,noise 40.72440301,-73.97589647,noise 40.7863726,-73.93165574,noise 40.86728284,-73.89988973,noise 40.73714338,-73.98859365,noise 40.76889103,-73.98209349,noise 40.66458131,-73.97853498,noise 40.67759046,-73.74478108,noise 40.68500302,-73.98191771,noise 40.65720879,-73.90029509,noise 40.80077953,-73.95334854,noise 40.67759046,-73.74478108,noise 40.79483376,-73.92169712,noise 40.79483376,-73.92169712,noise 40.83036236,-73.86602154,noise 40.68958774,-73.86425265,noise 40.63746939,-73.91917226,noise 40.81617096,-73.95792955,noise 40.77659153,-73.95673418,noise 40.79155859,-73.93864933,noise 40.6884631,-73.95713031,noise 40.6884631,-73.95713031,noise 40.8165174,-73.94059528,noise 40.69772137,-73.84133227,noise 40.73249706,-74.00183297,noise 40.69897825,-73.92921724,noise 40.76743782,-73.92062464,noise 40.79483376,-73.92169712,noise 40.72416393,-73.9960928,noise 40.69528435,-73.925752,noise 40.76743782,-73.92062464,noise 40.7863726,-73.93165574,noise 40.83460465,-73.87487031,noise 40.86210781,-73.91928608,noise 40.81919482,-73.91249888,noise 40.70279083,-73.92937189,noise 40.5841905,-73.93245308,noise 40.68853147,-73.95647761,noise 40.76889103,-73.98209349,noise 40.77235004,-73.97159361,noise 40.58414951,-73.93276274,noise 40.71888381,-73.95142536,noise 40.64602446,-74.08143268,noise 40.759412,-73.99561425,noise 40.68853147,-73.95647761,noise 40.83733304,-73.94005991,noise 40.76296633,-73.97396929,noise 40.82574216,-73.92596054,noise 40.87206888,-73.90226894,noise 40.71079436,-73.96473401,noise 40.87091201,-73.89153556,noise 40.74294904,-73.99646701,noise 40.68464447,-73.83490931,noise 40.86233869,-73.91975578,noise 40.61179689,-73.90762392,noise 40.75873427,-73.86009782,noise 40.75831102,-73.82549694,noise 40.77376928,-73.97247756,noise 40.79281518,-73.93773447,noise 40.79192349,-73.93837091,noise 40.68858621,-73.95605569,noise 40.6967783,-73.91880465,noise 40.74921912,-73.98009933,noise 40.79748392,-73.94878562,noise 40.58098487,-73.82577666,noise 40.68835329,-73.95709793,noise 40.64790578,-74.00740547,noise 40.70528586,-73.90635103,noise 40.77246136,-73.96704088,noise 40.74966676,-73.98157173,noise 40.74892229,-73.97788704,noise 40.7981012,-73.9622751,noise 40.70172438,-73.94140806,noise 40.75635718,-73.82577277,noise 40.75635718,-73.82577277,noise 40.80930835,-73.94913776,noise 40.80934133,-73.94921721,noise 40.6471319,-74.00462341,noise 40.83493674,-73.84542829,noise 40.80897314,-73.94832523,noise 40.75296819,-73.81741882,noise 40.6471319,-74.00462341,noise 40.84394176,-73.93902389,noise 40.70048568,-73.93983312,noise 40.83599147,-73.91481855,noise 40.60534388,-73.98183485,noise 40.69908568,-73.82086265,noise 40.85205434,-73.82903921,noise 40.85687469,-73.88770129,noise 40.7216031,-73.99733758,noise 40.81095054,-73.95805207,noise 40.75444761,-73.93013645,noise 40.77603325,-73.91523464,noise 40.75729157,-73.83400373,noise 40.68321658,-73.95387066,noise 40.79578676,-73.94676079,noise 40.73875493,-74.0064593,noise 40.77116239,-73.9566294,noise 40.68187917,-73.7660803,noise 40.73029441,-73.98223737,noise 40.77116239,-73.9566294,noise 40.83811767,-73.94483683,noise 40.74135013,-73.98131059,noise 40.68935074,-73.81613264,noise 40.77138741,-73.95647762,noise 40.67690761,-73.9503239,noise 40.7147337,-73.96677363,noise 40.68296065,-73.95939451,noise 40.75753426,-73.86656869,noise 40.79578676,-73.94676079,noise 40.58774206,-73.80986688,noise 40.64631775,-73.9519899,noise 40.77138741,-73.95647762,noise 40.63654164,-73.9116899,noise 40.82943385,-73.94579076,noise 40.68272042,-73.96329223,noise 40.88945854,-73.8982722,noise 40.75624515,-73.92120466,noise 40.81289,-73.8870277,noise 40.69822499,-73.80633492,noise 40.86941776,-73.91657993,noise 40.76494318,-73.91720536,noise 40.82720886,-73.89538636,noise 40.75739823,-73.90354533,noise 40.84145055,-73.93577346,noise 40.75274596,-73.8725553,noise 40.82326405,-73.9527619,noise 40.82415421,-73.9483821,noise 40.64416442,-74.01024817,noise 40.69249038,-73.95197829,noise 40.68592584,-73.92332497,noise 40.70409077,-73.92764291,noise 40.68138125,-74.00444551,noise 40.69983659,-73.91583642,noise 40.72488931,-73.97828105,noise 40.76743782,-73.92062464,noise 40.6856248,-73.91299506,noise 40.69957784,-73.83235864,noise 40.8384769,-73.91310235,noise 40.67596498,-73.81819204,noise 40.78536042,-73.97298193,noise 40.75007365,-73.98636819,noise 40.77850171,-73.95632493,noise 40.68672121,-73.9527757,noise 40.74258786,-73.98041167,noise 40.74258786,-73.98041167,noise 40.6294172,-73.89648538,noise 40.62912729,-73.92215453,noise 40.58774206,-73.80986688,noise 40.69032793,-73.96926667,noise 40.743596,-73.98600864,noise 40.7475205,-73.9824024,noise 40.76299834,-73.98392167,noise 40.75007365,-73.98636819,noise 40.71817453,-73.99037175,noise 40.76045412,-73.91527612,noise 40.69969366,-73.91556612,noise 40.71534375,-73.88621546,noise 40.74258786,-73.98041167,noise 40.75729157,-73.83400373,noise 40.76743782,-73.92062464,noise 40.8975924,-73.86719545,noise 40.70701054,-73.94652151,noise 40.73434974,-74.00300933,noise 40.78536042,-73.97298193,noise 40.78536042,-73.97298193,noise 40.75045253,-73.98729207,noise 40.75979055,-73.84272936,noise 40.75979055,-73.84272936,noise 40.75007365,-73.98636819,noise 40.74586649,-73.99204952,noise 40.65514879,-73.9546325,noise 40.83736937,-73.94698411,noise 40.69276821,-73.96082375,noise 40.87586212,-73.88451607,noise 40.71765748,-73.96007321,noise 40.63559076,-73.97774084,noise 40.82343439,-73.953152,noise 40.77090216,-73.7352894,noise 40.72663402,-73.99231158,noise 40.69961666,-73.90819828,noise 40.7009771,-73.91781856,noise 40.77480809,-73.91028259,noise 40.6311817,-74.02661699,noise 40.72663402,-73.99231158,noise 40.70872939,-73.77898909,noise 40.82720886,-73.89538636,noise 40.69400801,-73.91764685,noise 40.74585001,-73.99200982,noise 40.77480809,-73.91028259,noise 40.80285303,-73.95650039,noise 40.81237835,-73.95240115,noise 40.76743782,-73.92062464,noise 40.69357091,-73.96460248,noise 40.69682395,-73.76180129,noise 40.62214058,-74.02566239,noise 40.67325789,-73.93069736,noise 40.69961666,-73.90819828,noise 40.79186116,-73.94539159,noise 40.68433882,-73.91475627,noise 40.83940401,-73.9376222,noise 40.73250431,-73.9848383,noise 40.78536042,-73.97298193,noise 40.65958686,-73.94760116,noise 40.74031955,-74.0038432,noise 40.82326405,-73.9527619,noise 40.67915413,-73.98342993,noise 40.86097423,-73.92752645,noise 40.75045253,-73.98729207,noise 40.64460505,-73.95210284,noise 40.76589124,-73.98346611,noise 40.75380236,-73.92537637,noise 40.82410397,-73.9528408,noise 40.67141401,-73.9844268,noise 40.6723659,-73.93079201,noise 40.73349828,-73.95481369,noise 40.67128776,-73.98454219,noise 40.67141401,-73.9844268,noise 40.67299989,-73.93071565,noise 40.74978836,-73.9877686,noise 40.60821635,-73.99808401,noise 40.67915413,-73.98342993,noise 40.61634587,-74.01154419,noise 40.62937673,-73.94540205,noise 40.75849777,-73.82556864,noise 40.76449114,-73.98165065,noise 40.6860348,-73.95226057,noise 40.7111325,-73.96654457,noise 40.7041308,-73.93023607,noise 40.7029332,-73.92879468,noise 40.73391567,-73.98987154,noise 40.8961686,-73.86308565,noise 40.74536798,-73.94536474,noise 40.705353,-73.91506122,noise 40.68952199,-73.91616676,noise 40.54195147,-74.17742807,noise 40.63613537,-74.11613915,noise 40.67332298,-73.96543877,noise 40.83655119,-73.91833411,noise 40.73643704,-73.98142744,noise 40.59241925,-74.09157874,noise 40.69276821,-73.96082375,noise 40.68802032,-73.88979218,noise 40.68431678,-73.89475961,noise 40.7855354,-73.98399928,noise 40.78069388,-73.98551338,noise 40.80662432,-73.95659184,noise 40.60624006,-73.99654267,noise 40.73595507,-73.99047744,noise 40.78867286,-73.94771624,noise 40.78869209,-73.94776317,noise 40.86797939,-73.92024792,noise 40.71795041,-73.95792662,noise 40.67750006,-73.82759393,noise 40.72393771,-73.94135606,noise 40.82518643,-73.93768972,noise 40.77730373,-73.98258228,noise 40.62058398,-74.0269982,noise 40.84460906,-73.93462468,noise 40.86414834,-73.92951867,noise 40.62429808,-73.99753598,noise 40.67444808,-73.90944062,noise 40.79123014,-73.94597354,noise 40.6877713,-73.95004177,noise 40.70523053,-74.00475007,noise 40.68672121,-73.9527757,noise 40.68305661,-73.95198508,noise 40.78702964,-73.94968562,noise 40.62075694,-74.02683617,noise 40.72170509,-73.95064767,noise 40.78537369,-73.84028923,noise 40.70105484,-73.90472683,noise 40.67714818,-73.82540647,noise 40.69817381,-73.92454066,noise 40.85954453,-73.92797628,noise 40.68368095,-73.96284461,noise 40.72736337,-73.98476731,noise 40.84048998,-73.9185136,noise 40.58470428,-73.81197446,noise 40.75112211,-73.97126339,noise 40.74023996,-74.00370606,noise 40.65488243,-73.96188035,noise 40.86402657,-73.89867626,noise 40.68196014,-73.82206241,noise 40.67609498,-73.94991352,noise 40.70777815,-73.95059666,noise 40.77838315,-73.98848549,noise 40.73588925,-73.99120995,noise 40.72532531,-73.97621002,noise 40.71945078,-74.01029221,noise 40.70130167,-73.90448845,noise 40.84036065,-73.918062,noise 40.68259395,-73.9626433,noise 40.84682457,-73.93556225,noise 40.71934657,-74.0092857,noise 40.71945078,-74.01029221,noise 40.73588925,-73.99120995,noise 40.62429808,-73.99753598,noise 40.6858093,-73.92145736,noise 40.74294904,-73.99646701,noise 40.82608506,-73.93977375,noise 40.85235714,-73.86488198,noise 40.70130167,-73.90448845,noise 40.71495071,-73.95175288,noise 40.81017541,-73.93740756,noise 40.77395281,-73.9709647,noise 40.83650562,-73.92393926,noise 40.63468458,-73.96508408,noise 40.65621486,-73.8825104,noise 40.82087828,-73.94516184,noise 40.7073094,-73.8042454,noise 40.74294904,-73.99646701,noise 40.6555166,-73.88415147,noise 40.70630347,-73.94304513,noise 40.71783505,-73.95772468,noise 40.75575421,-73.97924193,noise 40.59720135,-73.94942536,noise 40.62526616,-73.92756266,noise 40.80340346,-73.94693892,noise 40.77235004,-73.97159361,noise 40.70153087,-73.92077524,noise 40.68631085,-73.97443911,noise 40.71934657,-74.0092857,noise 40.82590477,-73.94711609,noise 40.7657348,-73.98360333,noise 40.64480653,-73.92367132,noise 40.69382304,-73.94309906,noise 40.71440596,-73.9902208,noise 40.71770742,-73.9367657,noise 40.79553307,-73.93886237,noise 40.70032651,-73.94540165,noise 40.79186116,-73.94539159,noise 40.7003101,-73.9455315,noise 40.71461498,-73.99959599,noise 40.75413091,-73.949068,noise 40.78536042,-73.97298193,noise 40.69577119,-73.79066936,noise 40.63597511,-73.97814065,noise 40.63597511,-73.97814065,noise 40.86954934,-73.91634837,noise 40.80052438,-73.93156536,noise 40.75006808,-73.88119355,noise 40.80098012,-73.93177438,noise 40.86954934,-73.91634837,noise 40.86384433,-73.92617119,noise 40.73030401,-73.99988454,noise 40.58073897,-73.83395295,noise 40.83643114,-73.90833113,noise 40.71395678,-73.95793275,noise 40.85310069,-73.92914721,noise 40.7296035,-73.98823774,noise 40.69118922,-73.94548486,noise 40.70759352,-73.95554181,noise 40.74736716,-73.88655054,noise 40.84385794,-73.83043008,noise 40.77596729,-73.91512641,noise 40.74835619,-74.00368847,noise 40.75276515,-73.87253722,noise 40.6710134,-73.90822683,noise 40.67119301,-73.95037863,noise 40.82574216,-73.92596054,noise 40.71814583,-73.95229529,noise 40.6716626,-73.95091902,noise 40.70383481,-73.93097214,noise 40.61558652,-74.03426479,noise 40.68998883,-73.95618819,noise 40.77850171,-73.95632493,noise 40.71329837,-73.96741642,noise 40.84322273,-73.93917635,noise 40.82574216,-73.92596054,noise 40.67685779,-73.94937217,noise 40.86019986,-73.92694526,noise 40.69822499,-73.80633492,noise 40.68950162,-73.78299406,noise 40.77348929,-73.98848633,noise 40.73192062,-73.99660831,noise 40.82574216,-73.92596054,noise 40.82417266,-73.95300695,noise 40.7295519,-73.99657235,noise 40.68138125,-74.00444551,noise 40.7081023,-73.92557902,noise 40.69161916,-73.90573918,noise 40.73250431,-73.9848383,noise 40.66217506,-73.95370139,noise 40.72553423,-73.97780461,noise 40.71175719,-73.94278797,noise 40.73945487,-74.00597582,noise 40.64020372,-73.9553561,noise 40.72349367,-73.98825325,noise 40.88956351,-73.89903879,noise 40.71359488,-73.95907285,noise 40.72349367,-73.98825325,noise 40.73141011,-73.99697276,noise 40.84992098,-73.93147116,noise 40.71802667,-74.00304467,noise 40.73088313,-73.99759338,noise 40.83654003,-73.91429745,noise 40.77090216,-73.7352894,noise 40.73298283,-74.00373453,noise 40.68924657,-73.96954482,noise 40.72104319,-73.95643113,noise 40.71190382,-73.95128256,noise 40.68924657,-73.96954482,noise 40.72894882,-73.97836993,noise 40.68813025,-73.98949988,noise 40.68261354,-73.99323967,noise 40.8120984,-73.92215005,noise 40.75826062,-73.8419172,noise 40.68035203,-73.97476588,noise 40.73015573,-73.99606358,noise 40.62986376,-74.02845743,noise 40.79978541,-73.94029959,noise 40.68947714,-73.96958077,noise 40.83940401,-73.9376222,noise 40.76516441,-73.9877369,noise 40.68142275,-73.95710239,noise 40.82975876,-73.94803447,noise 40.76568038,-73.98736136,noise 40.79943395,-73.96738148,noise 40.71884964,-73.98921727,noise 40.71185715,-73.95824428,noise 40.82979716,-73.94798023,noise 40.82979716,-73.94798023,noise 40.72488931,-73.97828105,noise 40.61682225,-73.93050381,noise 40.68026692,-73.9746902,noise 40.72023767,-73.98255029,noise 40.73088313,-73.99759338,noise 40.72784609,-73.98222719,noise 40.73088313,-73.99759338,noise 40.82283051,-73.95306933,noise 40.79933508,-73.96716843,noise 40.83131818,-73.85090765,noise 40.64466793,-73.95150822,noise 40.6938318,-73.90960541,noise 40.67793976,-73.96565991,noise 40.60220284,-74.16827555,noise 40.67915413,-73.98342993,noise 40.82538549,-73.92618134,noise 40.82925663,-73.94837452,noise 40.71153872,-73.94507144,noise 40.65599372,-73.96085616,noise 40.75739823,-73.90354533,noise 40.71339279,-73.954463,noise 40.73249706,-74.00183297,noise 40.72386918,-73.98388421,noise 40.71205142,-73.95659572,noise 40.67444808,-73.90944062,noise 40.85954453,-73.92797628,noise 40.71205142,-73.95659572,noise 40.67786527,-73.99806758,noise 40.70105133,-73.91421917,noise 40.83774446,-73.91738219,noise 40.58740438,-73.80982103,noise 40.68174168,-73.95858403,noise 40.84639448,-73.79058934,noise 40.70252976,-73.81356446,noise 40.70585178,-73.92171868,noise 40.80119115,-73.95313515,noise 40.82563359,-73.8594224,noise 40.68598692,-73.99416238,noise 40.84639448,-73.79058934,noise 40.84361298,-73.94013015,noise 40.854288,-73.90807517,noise 40.73071564,-73.99556202,noise 40.70552375,-73.93251047,noise 40.81348361,-73.91696795,noise 40.65972716,-73.98791847,noise 40.67775273,-73.99811085,noise 40.73029441,-73.98223737,noise 40.7663204,-73.91631918,noise 40.70279083,-73.92937189,noise 40.78869209,-73.94776317,noise 40.82543701,-73.92520932,noise 40.51358865,-74.25123739,noise 40.77800874,-73.98021349,noise 40.87466152,-73.91108799,noise 40.65251377,-73.92349672,noise 40.67384945,-73.79570592,noise 40.70553708,-73.80150947,noise 40.79834497,-73.96075801,noise 40.72839362,-74.00312813,noise 40.67321228,-73.79704173,noise 40.82837372,-73.8240774,noise 40.67629108,-73.85232496,noise 40.63288564,-73.94769779,noise 40.58017429,-73.82885317,noise 40.6936969,-73.80036912,noise 40.67786527,-73.99806758,noise 40.67629108,-73.85232496,noise 40.82179871,-73.94151912,noise 40.67626124,-73.85260262,noise 40.81423588,-73.86034964,noise 40.86797939,-73.92024792,noise 40.84467117,-73.78779006,noise 40.7463425,-73.89134499,noise 40.82690955,-73.94758503,noise 40.6806071,-73.94337714,noise 40.79438124,-73.93556968,noise 40.78867286,-73.94771624,noise 40.74519404,-73.99232748,noise 40.68161732,-74.00394798,noise 40.78869209,-73.94776317,noise 40.73521408,-73.99171521,noise 40.63606328,-73.96787928,noise 40.67685075,-73.98015337,noise 40.71356059,-73.7879622,noise 40.71240883,-73.97801819,noise 40.77246136,-73.96704088,noise 40.73595507,-73.99047744,noise 40.86637626,-73.92825812,noise 40.74281404,-73.9886432,noise 40.68829092,-73.95204982,noise 40.68829092,-73.95204982,noise 40.65251377,-73.92349672,noise 40.7985263,-73.9417021,noise 40.59232552,-73.96073506,noise 40.84348354,-73.93428967,noise 40.73757207,-74.00355075,noise 40.70252976,-73.81356446,noise 40.69272543,-73.85557729,noise 40.71468085,-73.99962485,noise 40.86385196,-73.92523119,noise 40.6946875,-73.95519701,noise 40.78536042,-73.97298193,noise 40.73941098,-74.00539123,noise 40.74108149,-73.983613,noise 40.70711579,-74.01067624,noise 40.70711579,-74.01067624,noise 40.74203508,-73.99834359,noise 40.68321658,-73.95387066,noise 40.84727468,-73.90732221,noise 40.84571889,-73.93635125,noise 40.76034977,-73.98471284,noise 40.72306557,-73.98907949,noise 40.86954934,-73.91634837,noise 40.72488931,-73.97828105,noise 40.78131764,-73.94922052,noise 40.78131764,-73.94922052,noise 40.7327221,-74.00327627,noise 40.69472304,-73.95482916,noise 40.65778597,-73.95324671,noise 40.78124208,-73.95223925,noise 40.69055329,-73.97034113,noise 40.72004411,-73.99906204,noise 40.69322784,-73.73402913,noise 40.73243667,-74.00193039,noise 40.71823482,-73.98931116,noise 40.67075399,-73.93423273,noise 40.66770993,-73.95733109,noise 40.80934133,-73.94921721,noise 40.63523221,-73.91892277,noise 40.59655143,-73.97703729,noise 40.77666667,-73.78279666,noise 40.80934133,-73.94921721,noise 40.80897314,-73.94832523,noise 40.71039614,-74.00559809,noise 40.71039614,-74.00559809,noise 40.7985263,-73.9417021,noise 40.67025288,-73.76638784,noise 40.70619093,-74.00916485,noise 40.79884859,-73.95002703,noise 40.74238268,-73.87090067,noise 40.6638957,-73.89482427,noise 40.8403112,-73.86305243,noise 40.84710705,-73.9105429,noise 40.7174035,-73.95605473,noise 40.83881924,-73.94262811,noise 40.80754663,-73.95680436,noise 40.73198106,-73.99984846,noise 40.72488931,-73.97828105,noise 40.81989453,-73.95523555,noise 40.51770136,-74.24054207,noise 40.67287482,-73.92390236,noise 40.85235714,-73.86488198,noise 40.51478878,-74.24842226,noise 40.85235714,-73.86488198,noise 40.65587409,-73.95638719,noise 40.67915413,-73.98342993,noise 40.64269519,-73.96977506,noise 40.85414949,-73.88247887,noise 40.76879865,-73.95525907,noise 40.51478878,-74.24842226,noise 40.67915413,-73.98342993,noise 40.84503065,-73.93759885,noise 40.67915413,-73.98342993,noise 40.67915413,-73.98342993,noise 40.68629444,-73.9563745,noise 40.51478878,-74.24842226,noise 40.81986557,-73.95852336,noise 40.51478878,-74.24842226,noise 40.69979686,-73.91782723,noise 40.73243667,-74.00193039,noise 40.67915413,-73.98342993,noise 40.67075399,-73.93423273,noise 40.6434757,-73.99253376,noise 40.84564168,-73.89770309,noise 40.6471319,-74.00462341,noise 40.78744962,-73.94976475,noise 40.82447734,-73.92672794,noise 40.74840747,-73.97093614,noise 40.83137895,-73.92895353,noise 40.68612208,-73.95785656,noise 40.82410397,-73.9528408,noise 40.67553068,-73.88884303,noise 40.70346233,-73.98757873,noise 40.76213717,-73.98992139,noise 40.65509246,-73.91749306,noise 40.72134943,-73.98344469,noise 40.67791003,-73.91780012,noise 40.72845741,-73.97786497,noise 40.85009965,-73.93191919,noise 40.80416841,-73.96670009,noise 40.8633298,-73.92014142,noise 40.76273119,-73.97834091,noise 40.74315645,-73.91870121,noise 40.80934133,-73.94921721,noise 40.78229519,-73.96512584,noise 40.75562797,-73.97933221,noise 40.71447021,-73.80246765,noise 40.7212051,-73.99670626,noise 40.72349367,-73.98825325,noise 40.86954934,-73.91634837,noise 40.74011361,-74.00596145,noise 40.77149595,-73.95329324,noise 40.7327221,-74.00327627,noise 40.74011361,-74.00596145,noise 40.82447734,-73.92672794,noise 40.72628127,-73.98033348,noise 40.65988644,-73.96270287,noise 40.8633298,-73.92014142,noise 40.81348361,-73.91696795,noise 40.82038915,-73.94397718,noise 40.8066392,-73.94630058,noise 40.78124208,-73.95223925,noise 40.81904732,-73.94468644,noise 40.66284813,-73.94282992,noise 40.66238332,-73.89185661,noise 40.73249706,-74.00183297,noise 40.85651686,-73.92756746,noise 40.75007365,-73.98636819,noise 40.80531268,-73.95750296,noise 40.71461498,-73.99959599,noise 40.80503246,-73.95682044,noise 40.72568573,-73.98076659,noise 40.70511489,-74.01028639,noise 40.72916768,-74.00119065,noise 40.72428523,-73.95772059,noise 40.7230834,-73.95874954,noise 40.75858018,-73.82561174,noise 40.72087196,-73.96112831,noise 40.81348361,-73.91696795,noise 40.72428523,-73.95772059,noise 40.83573106,-73.91162427,noise 40.68676212,-73.9459428,noise 40.84564168,-73.89770309,noise 40.68900997,-73.95895452,noise 40.71823482,-73.98931116,noise 40.73243667,-74.00193039,noise 40.86346131,-73.91979781,noise 40.72630655,-73.98411452,noise 40.82417266,-73.95300695,noise 40.79532613,-73.97128765,noise 40.80934133,-73.94921721,noise 40.7540773,-73.97993546,noise 40.6613542,-73.9696801,noise 40.76889103,-73.98209349,noise 40.79532613,-73.97128765,noise 40.60179576,-73.97256646,noise 40.80934133,-73.94921721,noise 40.80934133,-73.94921721,noise 40.77235004,-73.97159361,noise 40.60656553,-73.98327868,noise 40.80897314,-73.94832523,noise 40.80934133,-73.94921721,noise 40.86637626,-73.92825812,noise 40.86637626,-73.92825812,noise 40.86637626,-73.92825812,noise 40.86564533,-73.92693205,noise 40.74538714,-73.97835376,noise 40.71717512,-74.01286753,noise 40.71922843,-73.96289694,noise 40.85654487,-73.92846393,noise 40.74538714,-73.97835376,noise 40.74505782,-73.97860649,noise 40.71976847,-73.96084757,noise 40.64018175,-73.95530567,noise 40.81700866,-73.95949336,noise 40.72588105,-73.98364921,noise 40.77478495,-73.90877704,noise 40.68416419,-73.94894837,noise 40.83933002,-73.8990319,noise 40.83940401,-73.9376222,noise 40.61023813,-73.98370275,noise 40.77478495,-73.90877704,noise 40.7212051,-73.99670626,noise 40.75007365,-73.98636819,noise 40.78124208,-73.95223925,noise 40.71134933,-73.95117114,noise 40.68237476,-73.99342718,noise 40.64178654,-73.9603204,noise 40.66503008,-73.86648339,noise 40.76879865,-73.95525907,noise 40.58882417,-73.80212282,noise 40.86074371,-73.89537699,noise 40.58667428,-73.80171515,noise 40.58882417,-73.80212282,noise 40.64460505,-73.95210284,noise 40.66503008,-73.86648339,noise 40.86720969,-73.92253385,noise 40.69364925,-73.98332175,noise 40.76258226,-74.00038625,noise 40.76202507,-74.00115153,noise 40.82574216,-73.92596054,noise 40.80334837,-73.93102065,noise 40.7613883,-73.99968234,noise 40.71352894,-73.95887449,noise 40.68511003,-73.79810524,noise 40.58882417,-73.80212282,noise 40.68629541,-73.93043862,noise 40.73243667,-74.00193039,noise 40.64846321,-74.00075677,noise 40.7170331,-73.95643735,noise 40.7170331,-73.95643735,noise 40.72547597,-74.00214305,noise 40.58886785,-73.80198947,noise 40.70476356,-74.01032601,noise 40.743596,-73.98600864,noise 40.67074844,-73.93413901,noise 40.80081799,-73.95343159,noise 40.73457653,-73.95372686,noise 40.79532613,-73.97128765,noise 40.74173312,-74.00308184,noise 40.62429808,-73.99753598,noise 40.65935278,-73.95926111,noise 40.80934133,-73.94921721,noise 40.83957145,-73.89890866,noise 40.65935825,-73.95919983,noise 40.74919544,-73.8896621,noise 40.73595507,-73.99047744,noise 40.68535087,-73.81227839,noise 40.68876043,-73.98084215,noise 40.71783505,-73.95772468,noise 40.77376928,-73.97247756,noise 40.695786,-73.73167487,noise 40.80934133,-73.94921721,noise 40.81307341,-73.96149352,noise 40.74979357,-73.88384677,noise 40.72959583,-74.00282511,noise 40.60653259,-73.98327508,noise 40.68526388,-73.98263877,noise 40.85951508,-73.89347015,noise 40.86463882,-73.919847,noise 40.75911705,-73.83416162,noise 40.66820407,-73.9506476,noise 40.7505243,-73.86202432,noise 40.67315502,-73.91264001,noise 40.824332,-73.95337539,noise 40.76415024,-73.77125319,noise 40.83646932,-73.88927884,noise 40.87874517,-73.87254522,noise 40.70753056,-73.78659995,noise 40.67462684,-73.87725059,noise 40.88956351,-73.89903879,noise 40.66408306,-73.94816714,noise 40.69940259,-73.92745325,noise 40.69058524,-73.95831169,noise 40.69940259,-73.92745325,noise 40.86637626,-73.92825812,noise 40.68266295,-73.99320721,noise 40.63949623,-73.93391764,noise 40.70279083,-73.92937189,noise 40.84266015,-73.90649015,noise 40.8302701,-73.94392189,noise 40.75752223,-73.83407535,noise 40.73619707,-73.84103136,noise 40.63367687,-74.00656803,noise 40.66362228,-73.95553146,noise 40.86941776,-73.91657993,noise 40.7590692,-73.84513509,noise 40.70855926,-74.01334919,noise 40.73106678,-74.00800645,noise 40.76118509,-73.85765969,noise 40.63367687,-74.00656803,noise 40.85359837,-73.93061428,noise 40.77622111,-73.97595354,noise 40.77622111,-73.97595354,noise 40.66351861,-73.95720762,noise 40.73030401,-73.99988454,noise 40.73211582,-73.86718968,noise 40.86954934,-73.91634837,noise 40.63727718,-73.9317652,noise 40.72253466,-73.95934515,noise 40.75911212,-73.84237722,noise 40.8426685,-73.90662386,noise 40.66469613,-73.9572357,noise 40.75150185,-73.90275622,noise 40.72353705,-73.96094276,noise 40.75911212,-73.84237722,noise 40.66362228,-73.95553146,noise 40.7584045,-73.84479012,noise 40.7590692,-73.84513509,noise 40.67575575,-73.95975942,noise 40.86233869,-73.91975578,noise 40.6368429,-73.93075319,noise 40.86233869,-73.91975578,noise 40.67898081,-73.96838499,noise 40.84430651,-73.89329933,noise 40.84266867,-73.90684433,noise 40.80923226,-73.92531784,noise 40.70547174,-73.94290878,noise 40.72142619,-73.96053273,noise 40.61018676,-73.97325812,noise 40.69093118,-73.94542377,noise 40.82029573,-73.94377494,noise 40.67928819,-73.96826226,noise 40.80285303,-73.95650039,noise 40.85459367,-73.9289215,noise 40.84183266,-73.88387762,noise 40.67904393,-73.96835251,noise 40.76331469,-73.92819586,noise 40.66064331,-73.96062997,noise 40.67596498,-73.81819204,noise 40.58634458,-73.93144641,noise 40.75752223,-73.83407535,noise 40.72598213,-73.98055364,noise 40.86592029,-73.92770907,noise 40.86618344,-73.91893043,noise 40.69869881,-73.93476055,noise 40.72362601,-73.99830076,noise 40.70718266,-73.89690926,noise 40.73683863,-73.98783593,noise 40.8692067,-73.9169743,noise 40.6912688,-73.85406954,noise 40.77753289,-73.97499624,noise 40.72933786,-74.0010319,noise 40.85154513,-73.90359315,noise 40.6636087,-73.95592076,noise 40.51478878,-74.24842226,noise 40.70717992,-73.89691648,noise 40.68467596,-73.7978794,noise 40.82945266,-73.90657014,noise 40.76481071,-73.92006822,noise 40.67833142,-73.98954108,noise 40.76331469,-73.92819586,noise 40.76331469,-73.92819586,noise 40.76331469,-73.92819586,noise 40.68464082,-73.88908745,noise 40.71957476,-73.99950577,noise 40.8725171,-73.90325178,noise 40.75155382,-74.0036309,noise 40.8725171,-73.90325178,noise 40.71957476,-73.99950577,noise 40.82410397,-73.9528408,noise 40.7327221,-74.00327627,noise 40.87091201,-73.89153556,noise 40.67319947,-73.97632234,noise 40.85495332,-73.89339793,noise 40.80086446,-73.95295117,noise 40.80008772,-73.95301312,noise 40.83672087,-73.94538368,noise 40.70300778,-73.9098815,noise 40.82420408,-73.89021339,noise 40.73243667,-74.00193039,noise 40.70973846,-73.77846633,noise 40.82416166,-73.95297806,noise 40.82858255,-73.89383404,noise 40.6683978,-73.92346769,noise 40.67319947,-73.97632234,noise 40.82410397,-73.9528408,noise 40.86827722,-73.92230844,noise 40.7327221,-74.00327627,noise 40.61188547,-74.01259872,noise 40.76331469,-73.92819586,noise 40.85009965,-73.93191919,noise 40.5012025,-74.24039642,noise 40.76331469,-73.92819586,noise 40.64846321,-74.00075677,noise 40.82076984,-73.95458462,noise 40.71563327,-73.99849215,noise 40.66850918,-73.95874004,noise 40.76788911,-73.98151253,noise 40.7591044,-73.99214179,noise 40.65467493,-73.91703947,noise 40.72304635,-73.98902538,noise 40.81919482,-73.91249888,noise 40.62192825,-73.92718444,noise 40.83933002,-73.8990319,noise 40.76948307,-73.95786518,noise 40.62192825,-73.92718444,noise 40.6683978,-73.92346769,noise 40.7585032,-73.99071967,noise 40.71612329,-73.9360277,noise 40.81551017,-73.93563231,noise 40.77184398,-73.95906232,noise 40.78930759,-73.94339664,noise 40.72974957,-73.99961394,noise 40.66776982,-73.96388081,noise 40.7309737,-74.00286485,noise 40.6542813,-73.96180501,noise 40.81575645,-73.94479395,noise 40.67164502,-73.96257373,noise 40.67164502,-73.96257373,noise 40.70911878,-73.89810377,noise 40.82748828,-73.94106245,noise 40.82517196,-73.9415017,noise 40.82517196,-73.9415017,noise 40.72348686,-73.95164569,noise 40.82455463,-73.9419539,noise 40.72468275,-73.9987048,noise 40.87091201,-73.89153556,noise 40.78869209,-73.94776317,noise 40.6542813,-73.96180501,noise 40.60507347,-74.00493381,noise 40.70241603,-73.92695948,noise 40.83436135,-73.94168154,noise 40.67861842,-73.76208985,noise 40.76943288,-73.95575685,noise 40.70172438,-73.94140806,noise 40.72997724,-73.99406472,noise 40.71415597,-73.94830135,noise 40.78229519,-73.96512584,noise 40.76743782,-73.92062464,noise 40.80934133,-73.94921721,noise 40.71082608,-74.0160946,noise 40.8454299,-73.91397516,noise 40.80934133,-73.94921721,noise 40.64797458,-74.00370094,noise 40.77816682,-73.97453383,noise 40.77785398,-73.97477226,noise 40.77926454,-73.97374266,noise 40.86581797,-73.92648716,noise 40.75849777,-73.82556864,noise 40.68308393,-73.82642212,noise 40.84421672,-73.91034439,noise 40.61859442,-73.99845832,noise 40.71758787,-73.95731359,noise 40.83287211,-73.94397029,noise 40.75729157,-73.83400373,noise 40.75729157,-73.83400373,noise 40.76214333,-73.86244787,noise 40.65014565,-74.00507409,noise 40.7590692,-73.84513509,noise 40.68913325,-73.95131722,noise 40.6716626,-73.95091902,noise 40.836905,-73.90376615,noise 40.82687657,-73.94750556,noise 40.85702748,-73.92773319,noise 40.68187917,-73.7660803,noise 40.70342134,-73.90874124,noise 40.65467493,-73.91703947,noise 40.83149125,-73.86437147,noise 40.67775028,-73.85153578,noise 40.85067577,-73.93145954,noise 40.6716626,-73.95091902,noise 40.72483716,-73.97832075,noise 40.83588065,-73.94467245,noise 40.71892321,-73.98452032,noise 40.81986557,-73.95852336,noise 40.6938318,-73.90960541,noise 40.74274048,-73.99824975,noise 40.69822499,-73.80633492,noise 40.69889571,-73.92889997,noise 40.8423945,-73.93536415,noise 40.85702748,-73.92773319,noise 40.83672087,-73.94538368,noise 40.83235751,-73.8589059,noise 40.74287911,-73.98227371,noise 40.82312038,-73.95049658,noise 40.62986376,-74.02845743,noise 40.6718281,-73.77449704,noise 40.83341441,-73.85905543,noise 40.72483716,-73.97832075,noise 40.67338669,-73.77567062,noise 40.74537213,-73.97235576,noise 40.83229488,-73.85931437,noise 40.72953107,-73.9804155,noise 40.73777082,-73.83019488,noise 40.66196937,-73.96163481,noise 40.74736716,-73.88655054,noise 40.67005924,-73.89055724,noise 40.73813899,-73.82494354,noise 40.68689522,-73.99090992,noise 40.69455871,-73.94324268,noise 40.68689522,-73.99090992,noise 40.75021344,-73.984809,noise 40.6716626,-73.95091902,noise 40.74014144,-73.85795364,noise 40.71807807,-73.83651477,noise 40.74736158,-73.88645672,noise 40.7581599,-73.9625937,noise 40.6311111,-73.89387438,noise 40.74067576,-73.98749601,noise 40.65162237,-74.00447957,noise 40.7296035,-73.98823774,noise 40.656725,-74.00086138,noise 40.75578209,-73.883331,noise 40.70168887,-73.91905112,noise 40.72277419,-73.98517963,noise 40.7152035,-73.74913174,noise 40.75021344,-73.984809,noise 40.7475205,-73.9824024,noise 40.80285303,-73.95650039,noise 40.67301996,-73.98651012,noise 40.6716626,-73.95091902,noise 40.69427559,-73.9018516,noise 40.83544471,-73.91782231,noise 40.85702748,-73.92773319,noise 40.67915413,-73.98342993,noise 40.87167061,-73.84859709,noise 40.80238678,-73.95056979,noise 40.80085914,-73.96073486,noise 40.75007365,-73.98636819,noise 40.68689522,-73.99090992,noise 40.65773883,-73.95208259,noise 40.7378916,-73.71046402,noise 40.82804069,-73.9425037,noise 40.75050447,-73.98545498,noise 40.86019986,-73.92694526,noise 40.75803956,-73.79561736,noise 40.70236234,-73.91290469,noise 40.656725,-74.00086138,noise 40.75045253,-73.98729207,noise 40.68578888,-73.87381546,noise 40.88956351,-73.89903879,noise 40.58413031,-73.93277355,noise 40.80452411,-73.95530368,noise 40.72386918,-73.98388421,noise 40.69128975,-73.94336807,noise 40.67915413,-73.98342993,noise 40.75686026,-73.96709552,noise 40.63597511,-73.97814065,noise 40.81532472,-73.93780373,noise 40.71102508,-73.95029487,noise 40.67301996,-73.98651012,noise 40.67397505,-73.98569879,noise 40.71035235,-73.94968939,noise 40.82312038,-73.95049658,noise 40.84622777,-73.9204511,noise 40.62895947,-73.89720301,noise 40.7505438,-73.99836504,noise 40.67301996,-73.98651012,noise 40.66965542,-73.99252723,noise 40.82417266,-73.95300695,noise 40.67299989,-73.93071565,noise 40.65514879,-73.9546325,noise 40.6944434,-73.90899154,noise 40.71002812,-74.00910405,noise 40.74429603,-73.91943242,noise 40.7036676,-73.92689319,noise 40.67915413,-73.98342993,noise 40.74492031,-73.92120362,noise 40.81715149,-73.89764211,noise 40.60578662,-73.81848759,noise 40.90495654,-73.85369802,noise 40.86269808,-73.89554022,noise 40.73683863,-73.98783593,noise 40.6732163,-73.93000885,noise 40.75007365,-73.98636819,noise 40.83470394,-73.91825688,noise 40.86581797,-73.92648716,noise 40.83129116,-73.92903312,noise 40.75007365,-73.98636819,noise 40.74336069,-74.0051281,noise 40.7267185,-73.98594002,noise 40.74429603,-73.91943242,noise 40.74429603,-73.91943242,noise 40.66344835,-73.88348529,noise 40.67823516,-73.95472856,noise 40.85438041,-73.93027367,noise 40.66239571,-73.99822663,noise 40.8361059,-73.9174312,noise 40.75007365,-73.98636819,noise 40.80692247,-73.94752491,noise 40.66196937,-73.96163481,noise 40.63351653,-73.96939011,noise 40.85710714,-73.88966021,noise 40.74334967,-73.9202708,noise 40.67915413,-73.98342993,noise 40.75372992,-73.86885743,noise 40.8014262,-73.96593573,noise 40.74846082,-73.97612597,noise 40.76527581,-73.91791611,noise 40.85070663,-73.88419828,noise 40.58485012,-73.81903413,noise 40.77241259,-73.98246803,noise 40.69489819,-73.93155477,noise 40.54195147,-74.17742807,noise 40.64088241,-73.95725096,noise 40.7009771,-73.91781856,noise 40.75975321,-73.73779192,noise 40.84711145,-73.93818244,noise 40.6395296,-73.95128856,noise 40.80746061,-73.919309,noise 40.60914984,-73.75657492,noise 40.71321949,-73.98377135,noise 40.72951901,-73.99981238,noise 40.69253774,-73.9610691,noise 40.60578662,-73.81848759,noise 40.67234347,-73.91384153,noise 40.80207824,-73.93698896,noise 40.77090216,-73.7352894,noise 40.69962103,-73.91760385,noise 40.60585833,-74.00771773,noise 40.70305086,-73.81162985,noise 40.64423325,-74.0076537,noise 40.65069016,-73.95192549,noise 40.83129116,-73.92903312,noise 40.6485135,-73.97931494,noise 40.8232596,-73.94292335,noise 40.74536798,-73.94536474,noise 40.89610922,-73.8506104,noise 40.78869209,-73.94776317,noise 40.80750935,-73.94085618,noise 40.63009212,-73.90571079,noise 40.85525231,-73.89621344,noise 40.64882,-74.00286853,noise 40.83959363,-73.93806654,noise 40.69357091,-73.96460248,noise 40.73321576,-73.98992216,noise 40.82117481,-73.92573438,noise 40.75979023,-73.98792559,noise 40.81006558,-73.95496762,noise 40.80141125,-73.96200232,noise 40.70183179,-73.91932144,noise 40.61683962,-74.02890212,noise 40.72234313,-73.9841768,noise 40.68371171,-73.75896006,noise 40.59193341,-74.06785001,noise 40.8574269,-73.89110568,noise 40.81231762,-73.90353076,noise 40.82097259,-73.8231901,noise 40.74403166,-73.85868155,noise 40.72031794,-74.01216827,noise 40.73416286,-74.00798156,noise 40.72393771,-73.94135606,noise 40.68344291,-73.97605189,noise 40.72014518,-74.01055206,noise 40.68569456,-73.93558816,noise 40.7212926,-73.94887303,noise 40.68497424,-73.92890039,noise 40.86992768,-73.91576215,noise 40.83527045,-73.92386478,noise 40.65682929,-74.00180566,noise 40.68282211,-73.93799942,noise 40.67376876,-73.77595052,noise 40.68835329,-73.95709793,noise 40.69966176,-73.92497896,noise 40.72232441,-74.01174654,noise 40.64846321,-74.00075677,noise 40.67385965,-73.94177502,noise 40.84506008,-73.89801843,noise 40.84822967,-73.90711847,noise 40.80174149,-73.96475806,noise 40.51358865,-74.25123739,noise 40.71749685,-74.00536781,noise 40.78190885,-73.91404279,noise 40.68983656,-73.91469876,noise 40.63457171,-74.02575364,noise 40.64846321,-74.00075677,noise 40.68753566,-73.97749634,noise 40.78668278,-73.97051859,noise 40.67235557,-73.8838879,noise 40.86612043,-73.91910043,noise 40.83527045,-73.92386478,noise 40.72196515,-74.00823264,noise 40.71735862,-74.016006,noise 40.86992768,-73.91576215,noise 40.67339992,-73.96573434,noise 40.84413857,-73.93751656,noise 40.83527045,-73.92386478,noise 40.63613946,-74.11479884,noise 40.82117481,-73.92573438,noise 40.67824418,-73.77109719,noise 40.87678755,-73.8744474,noise 40.68304372,-73.97082762,noise 40.87805847,-73.85798444,noise 40.67899647,-73.95051703,noise 40.800664,-73.94646072,noise 40.67336696,-73.96565505,noise 40.66785268,-73.92102071,noise 40.84329992,-73.90679646,noise 40.84416437,-73.93957305,noise 40.64846321,-74.00075677,noise 40.82721539,-73.95024421,noise 40.75144942,-73.88461265,noise 40.7640329,-73.98247023,noise 40.76454385,-73.98560353,noise 40.85474477,-73.90277517,noise 40.80546707,-73.94602701,noise 40.86606238,-73.92249904,noise 40.80546707,-73.94602701,noise 40.70989253,-73.75819088,noise 40.68839467,-73.9576568,noise 40.64219904,-74.01154867,noise 40.72348686,-73.95164569,noise 40.65387516,-73.95449642,noise 40.87678755,-73.8744474,noise 40.80864341,-73.94752355,noise 40.70430598,-73.92510718,noise 40.70279083,-73.92937189,noise 40.66046172,-73.98033486,noise 40.66312633,-73.95089286,noise 40.64846321,-74.00075677,noise 40.648444,-74.00072434,noise 40.74703827,-73.85515278,noise 40.64846321,-74.00075677,noise 40.6294172,-73.89648538,noise 40.62918697,-73.896846,noise 40.62988317,-73.89576773,noise 40.84228567,-73.89250384,noise 40.72136411,-73.99266213,noise 40.57278642,-73.99596127,noise 40.71240883,-73.97801819,noise 40.72164379,-73.98913023,noise 40.7640329,-73.98247023,noise 40.86510132,-73.92188192,noise 40.62796489,-74.07981832,noise 40.75873427,-73.86009782,noise 40.7440955,-73.98561878,noise 40.65868133,-73.91952861,noise 40.86943289,-73.89182361,noise 40.70236596,-73.91407322,noise 40.66586562,-73.95088723,noise 40.81584208,-73.90715283,noise 40.66867158,-73.98175271,noise 40.71639867,-74.00964963,noise 40.71639867,-74.00964963,noise 40.72482385,-73.98063696,noise 40.6884631,-73.95713031,noise 40.67687447,-73.94984443,noise 40.75873427,-73.86009782,noise 40.82416166,-73.95297806,noise 40.71079436,-73.96473401,noise 40.77285143,-73.96817074,noise 40.77314599,-73.97152106,noise 40.82082868,-73.95082706,noise 40.75873427,-73.86009782,noise 40.71362128,-73.9953323,noise 40.77395281,-73.9709647,noise 40.59828742,-74.07267455,noise 40.68231129,-73.82194249,noise 40.74819271,-73.8976037,noise 40.78229519,-73.96512584,noise 40.68722886,-73.92221651,noise 40.63486526,-74.02638067,noise 40.68900794,-73.75970175,noise 40.86596553,-73.92985298,noise 40.75470729,-73.99163338,noise 40.81313558,-73.95164197,noise 40.81316331,-73.95232472,noise 40.75894564,-73.86011542,noise 40.74294904,-73.99646701,noise 40.63930478,-73.95896708,noise 40.81294075,-73.95176855,noise 40.66917217,-73.97304342,noise 40.80111034,-73.96521711,noise 40.75873427,-73.86009782,noise 40.67632278,-73.9498809,noise 40.74294904,-73.99646701,noise 40.77395281,-73.9709647,noise 40.68598692,-73.99416238,noise 40.72482385,-73.98063696,noise 40.69511525,-73.93192959,noise 40.70107611,-73.94042045,noise 40.67075399,-73.93423273,noise 40.74294904,-73.99646701,noise 40.86637626,-73.92825812,noise 40.86637626,-73.92825812,noise 40.74804883,-74.0010358,noise 40.86553576,-73.9272684,noise 40.66917217,-73.97304342,noise 40.6301397,-74.10879366,noise 40.86553576,-73.9272684,noise 40.86565753,-73.92888075,noise 40.79775086,-73.9443863,noise 40.7944362,-73.93570325,noise 40.86553576,-73.9272684,noise 40.7985263,-73.9417021,noise 40.84822967,-73.90711847,noise 40.68666048,-73.94022419,noise 40.88046703,-73.88383183,noise 40.70226789,-73.91888091,noise 40.66863149,-73.90892222,noise 40.83113371,-73.94196622,noise 40.80897314,-73.94832523,noise 40.78229519,-73.96512584,noise 40.72153564,-73.98069925,noise 40.6471319,-74.00462341,noise 40.71039614,-74.00559809,noise 40.73457653,-73.95372686,noise 40.64797458,-74.00370094,noise 40.75394727,-73.99764308,noise 40.82216421,-73.94241123,noise 40.87601966,-73.87502379,noise 40.65989445,-73.87874825,noise 40.65686097,-73.92688321,noise 40.65686097,-73.92688321,noise 40.78027896,-73.95293322,noise 40.7158126,-73.95891637,noise 40.83279517,-73.94378967,noise 40.81252322,-73.95096325,noise 40.82272816,-73.93955278,noise 40.79578676,-73.94676079,noise 40.85072806,-73.93650912,noise 40.8238539,-73.94033581,noise 40.69822499,-73.80633492,noise 40.71522127,-73.99171409,noise 40.71838626,-73.99777781,noise 40.81345129,-73.95890668,noise 40.88013834,-73.87654933,noise 40.86241327,-73.92043536,noise 40.86174999,-73.92596745,noise 40.85352623,-73.91696857,noise 40.70676252,-73.95043511,noise 40.83418694,-73.90957373,noise 40.82391159,-73.94044054,noise 40.63980683,-73.95130637,noise 40.71973933,-73.99495669,noise 40.846644,-73.90468819,noise 40.51478878,-74.24842226,noise 40.73434974,-74.00300933,noise 40.84651959,-73.94006247,noise 40.63283667,-74.02723013,noise 40.80238678,-73.95056979,noise 40.6395296,-73.95128856,noise 40.71522127,-73.99171409,noise 40.63838006,-73.96854835,noise 40.75548196,-73.81543034,noise 40.65941518,-73.93898351,noise 40.68935074,-73.81613264,noise 40.7296035,-73.98823774,noise 40.67973117,-73.9373966,noise 40.84651959,-73.94006247,noise 40.63448326,-73.90179903,noise 40.84710705,-73.9105429,noise 40.72349367,-73.98825325,noise 40.62204852,-74.03163848,noise 40.66329788,-73.89848735,noise 40.69332462,-73.96710163,noise 40.64516101,-73.97384228,noise 40.71879472,-73.98901165,noise 40.84162061,-73.91447161,noise 40.72483716,-73.97832075,noise 40.78536042,-73.97298193,noise 40.76337544,-73.9964587,noise 40.63597511,-73.97814065,noise 40.87810908,-73.90124394,noise 40.81726755,-73.9422565,noise 40.82710462,-73.94803293,noise 40.69313307,-73.96920047,noise 40.80765418,-73.95120525,noise 40.68035203,-73.97476588,noise 40.51478878,-74.24842226,noise 40.51478878,-74.24842226,noise 40.80735153,-73.94951132,noise 40.67341154,-73.8609257,noise 40.58989,-73.80747002,noise 40.66071028,-73.99409972,noise 40.74824676,-73.97628845,noise 40.77593675,-73.90093331,noise 40.69355175,-73.96476476,noise 40.68334267,-73.9608365,noise 40.76115165,-73.92364989,noise 40.74237706,-73.84215698,noise 40.86751875,-73.88502589,noise 40.51770136,-74.24054207,noise 40.74162282,-73.8309465,noise 40.70574915,-73.92015708,noise 40.82574216,-73.92596054,noise 40.70574915,-73.92015708,noise 40.73813899,-73.82494354,noise 40.73619707,-73.84103136,noise 40.78867286,-73.94771624,noise 40.70586461,-74.00376907,noise 40.83092587,-73.89311121,noise 40.81331489,-73.96131636,noise 40.83578868,-73.91159167,noise 40.76373637,-73.91464744,noise 40.72100987,-73.95542824,noise 40.54287132,-74.1958018,noise 40.72953107,-73.9804155,noise 40.73566544,-73.84569466,noise 40.80927533,-73.943069,noise 40.78147953,-73.94910124,noise 40.74736716,-73.88655054,noise 40.69892307,-73.91280099,noise 40.7165564,-73.94560841,noise 40.72894882,-73.97836993,noise 40.76449114,-73.98165065,noise 40.87959654,-73.90430103,noise 40.62343625,-74.02509733,noise 40.59013616,-73.97389624,noise 40.85256252,-73.78944935,noise 40.7116774,-73.96229515,noise 40.86302057,-73.91755686,noise 40.6410404,-74.01453197,noise 40.62343625,-74.02509733,noise 40.71522127,-73.99171409,noise 40.63555239,-73.97802189,noise 40.86311329,-73.92061167,noise 40.7602542,-73.98904452,noise 40.75826062,-73.8419172,noise 40.73029441,-73.98223737,noise 40.86233869,-73.91975578,noise 40.72325502,-73.98970359,noise 40.86177238,-73.91846944,noise 40.74075481,-73.88356301,noise 40.69489819,-73.93155477,noise 40.77090216,-73.7352894,noise 40.7410481,-73.91817331,noise 40.75624515,-73.92120466,noise 40.86720969,-73.92253385,noise 40.74527188,-73.97844042,noise 40.71407672,-73.95571063,noise 40.64998168,-73.83758618,noise 40.7140933,-73.95599559,noise 40.8370522,-73.93839055,noise 40.7140795,-73.95580441,noise 40.71030317,-73.95020884,noise 40.69357091,-73.96460248,noise 40.65972716,-73.98791847,noise 40.73715204,-73.97424279,noise 40.84458982,-73.9345741,noise 40.85235714,-73.86488198,noise 40.79909392,-73.94065778,noise 40.6903513,-73.84107575,noise 40.68052302,-73.93490092,noise 40.73249706,-74.00183297,noise 40.78869209,-73.94776317,noise 40.7475205,-73.9824024,noise 40.71408219,-73.95566373,noise 40.79850616,-73.96712189,noise 40.71749685,-74.00536781,noise 40.73249706,-74.00183297,noise 40.84361298,-73.94013015,noise 40.86016587,-73.89379447,noise 40.6527363,-73.96274291,noise 40.68241996,-73.80760669,noise 40.69355175,-73.96476476,noise 40.72953107,-73.9804155,noise 40.68545201,-73.91316475,noise 40.7140795,-73.95580441,noise 40.71086346,-73.95800323,noise 40.68555676,-73.84149102,noise 40.82465432,-73.93835867,noise 40.82201832,-73.95366967,noise 40.85256252,-73.78944935,noise 40.84711145,-73.93818244,noise 40.84571482,-73.9208999,noise 40.81829615,-73.95284491,noise 40.8658736,-73.92765489,noise 40.6868331,-73.95820226,noise 40.77090216,-73.7352894,noise 40.83811767,-73.94483683,noise 40.70495529,-73.92327423,noise 40.72162233,-74.00220786,noise 40.6471319,-74.00462341,noise 40.71749685,-74.00536781,noise 40.79842081,-73.92972551,noise 40.81220079,-73.94225006,noise 40.75530574,-73.99305182,noise 40.69355175,-73.96476476,noise 40.7220862,-74.00180743,noise 40.72110014,-74.01275645,noise 40.79944014,-73.95343255,noise 40.68814874,-73.96985181,noise 40.80065918,-73.95439247,noise 40.71777332,-74.014206,noise 40.68814874,-73.96985181,noise 40.70499369,-73.92323452,noise 40.63661688,-73.91317425,noise 40.71957476,-73.99950577,noise 40.83353705,-73.90031994,noise 40.72031794,-74.01216827,noise 40.86612043,-73.91910043,noise 40.72031794,-74.01216827,noise 40.79438124,-73.93556968,noise 40.8363205,-73.94055592,noise 40.8363205,-73.94055592,noise 40.83811767,-73.94483683,noise 40.78867286,-73.94771624,noise 40.78869209,-73.94776317,noise 40.83811767,-73.94483683,noise 40.78867286,-73.94771624,noise 40.84822967,-73.90711847,noise 40.83037632,-73.94802676,noise 40.83819186,-73.94501385,noise 40.8363205,-73.94055592,noise 40.8381204,-73.94479707,noise 40.8363205,-73.94055592,noise 40.72162233,-74.00220786,noise 40.71455156,-73.93789415,noise 40.76889103,-73.98209349,noise 40.7009771,-73.91781856,noise 40.79511904,-73.94515416,noise 40.83659592,-73.91565258,noise 40.74954684,-73.98797797,noise 40.73595507,-73.99047744,noise 40.73588925,-73.99120995,noise 40.73249706,-74.00183297,noise 40.82410397,-73.9528408,noise 40.66741545,-73.9896221,noise 40.7648659,-73.93842844,noise 40.76889103,-73.98209349,noise 40.73243667,-74.00193039,noise 40.84606086,-73.91353701,noise 40.74991324,-73.85833703,noise 40.74135662,-73.98912702,noise 40.65555556,-73.84095321,noise 40.73739885,-73.99099685,noise 40.76788911,-73.98151253,noise 40.76398997,-73.93286998,noise 40.72781989,-73.99475042,noise 40.76730974,-73.98014086,noise 40.73595507,-73.99047744,noise 40.7036085,-73.92462106,noise 40.65288797,-73.97565922,noise 40.69196086,-73.86331386,noise 40.70333528,-73.94648839,noise 40.85437097,-73.8843618,noise 40.77395281,-73.9709647,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.72572296,-73.99651121,noise 40.70381897,-73.94207345,noise 40.72576413,-73.99647874,noise 40.72502032,-73.99713179,noise 40.72543203,-73.99677099,noise 40.75797293,-73.98553637,noise 40.70381897,-73.94207345,noise 40.70381897,-73.94207345,noise 40.7174035,-73.95605473,noise 40.7101683,-73.89926001,noise 40.64595269,-73.95197214,noise 40.74736716,-73.88655054,noise 40.86385196,-73.92523119,noise 40.74195612,-73.97792905,noise 40.86941776,-73.91657993,noise 40.86954934,-73.91634837,noise 40.84337525,-73.90493864,noise 40.59916024,-73.96126399,noise 40.67462684,-73.87725059,noise 40.73913663,-74.00108618,noise 40.80077953,-73.95334854,noise 40.69363001,-73.98309096,noise 40.73915309,-74.00112587,noise 40.71286133,-73.95712905,noise 40.68035203,-73.97476588,noise 40.85235714,-73.86488198,noise 40.82272816,-73.93955278,noise 40.78746014,-73.94872472,noise 40.69892307,-73.91280099,noise 40.70153087,-73.92077524,noise 40.69822499,-73.80633492,noise 40.76227854,-73.92601303,noise 40.70607594,-74.0042019,noise 40.72670835,-74.00275643,noise 40.80503246,-73.95682044,noise 40.86177238,-73.91846944,noise 40.58989,-73.80747002,noise 40.86385196,-73.92523119,noise 40.68935074,-73.81613264,noise 40.58488412,-73.92664159,noise 40.86233869,-73.91975578,noise 40.75686026,-73.96709552,noise 40.75484099,-73.98411855,noise 40.72934329,-74.00365494,noise 40.6944434,-73.90899154,noise 40.70626466,-73.83463936,noise 40.73029441,-73.98223737,noise 40.78867286,-73.94771624,noise 40.72236135,-73.97809067,noise 40.75826062,-73.8419172,noise 40.72711397,-73.987881,noise 40.71361123,-73.96727919,noise 40.7188661,-74.01084406,noise 40.8627956,-73.9068559,noise 40.83899658,-73.91072367,noise 40.72399101,-73.99621186,noise 40.6938318,-73.90960541,noise 40.66770993,-73.95733109,noise 40.77596729,-73.91512641,noise 40.58774206,-73.80986688,noise 40.78752607,-73.94885828,noise 40.86534722,-73.85101574,noise 40.77090216,-73.7352894,noise 40.74985425,-73.98793822,noise 40.69364925,-73.98332175,noise 40.71867831,-73.94049129,noise 40.72031794,-74.01216827,noise 40.65972716,-73.98791847,noise 40.743596,-73.98600864,noise 40.73225273,-73.99635211,noise 40.79984321,-73.95245707,noise 40.86233869,-73.91975578,noise 40.73206339,-74.00144327,noise 40.54420877,-74.14103979,noise 40.68958479,-73.97198946,noise 40.70346233,-73.98757873,noise 40.70346233,-73.98757873,noise 40.65778597,-73.95324671,noise 40.88619099,-73.85798515,noise 40.6471319,-74.00462341,noise 40.7490226,-73.98803942,noise 40.70381897,-73.94207345,noise 40.72881076,-73.99506063,noise 40.73141011,-73.99697276,noise 40.82536506,-73.93809785,noise 40.86238154,-73.86551236,noise 40.72707618,-74.000184,noise 40.70717992,-73.89692008,noise 40.70717992,-73.89692008,noise 40.72543203,-73.99677099,noise 40.70381897,-73.94207345,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.85437097,-73.8843618,noise 40.70381897,-73.94207345,noise 40.66131223,-73.92568889,noise 40.6471319,-74.00462341,noise 40.80897314,-73.94832523,noise 40.62964721,-74.01069987,noise 40.7989823,-73.94244934,noise 40.68151921,-73.88007901,noise 40.7174035,-73.95605473,noise 40.75869189,-73.91148825,noise 40.67631312,-73.89190973,noise 40.51770136,-74.24054207,noise 40.70383481,-73.93097214,noise 40.86645691,-73.92145732,noise 40.88564352,-73.86145096,noise 40.72591124,-73.9836492,noise 40.61655033,-73.93020153,noise 40.62343625,-74.02509733,noise 40.71879472,-73.98901165,noise 40.51478878,-74.24842226,noise 40.78861659,-73.97723105,noise 40.82000567,-73.95887372,noise 40.71102508,-73.95029487,noise 40.71102508,-73.95029487,noise 40.8027401,-73.95545297,noise 40.72477604,-74.00269502,noise 40.80311646,-73.95631961,noise 40.68613029,-73.95779886,noise 40.80645153,-73.96504816,noise 40.80077953,-73.95334854,noise 40.71795041,-73.95792662,noise 40.83215401,-73.93541385,noise 40.70800542,-74.00616417,noise 40.70383481,-73.93097214,noise 40.73249706,-74.00183297,noise 40.80633585,-73.95586958,noise 40.61943689,-73.93811593,noise 40.8027401,-73.95545297,noise 40.83320462,-73.94480477,noise 40.82410397,-73.9528408,noise 40.84662805,-73.78624769,noise 40.61683471,-74.07988065,noise 40.85607396,-73.93039842,noise 40.85632085,-73.93017765,noise 40.85567264,-73.92941921,noise 40.66858865,-73.87755009,noise 40.74294904,-73.99646701,noise 40.61742376,-73.93116956,noise 40.81986557,-73.95852336,noise 40.7208143,-73.98417355,noise 40.70495019,-73.94282267,noise 40.86368678,-73.89621112,noise 40.72213557,-73.9967459,noise 40.86720969,-73.92253385,noise 40.72849789,-74.00422135,noise 40.68755779,-73.95840373,noise 40.71043661,-73.95429188,noise 40.77680945,-73.95253489,noise 40.86137705,-73.90742548,noise 40.6917582,-73.94155385,noise 40.74294904,-73.99646701,noise 40.86720969,-73.92253385,noise 40.86769186,-73.92121362,noise 40.86720969,-73.92253385,noise 40.82410397,-73.9528408,noise 40.74928842,-73.98454214,noise 40.82578413,-73.90800615,noise 40.6471319,-74.00462341,noise 40.82835528,-73.94042934,noise 40.86026614,-73.90163195,noise 40.74306706,-73.99640565,noise 40.83518986,-73.92656798,noise 40.66073815,-73.92503354,noise 40.64846321,-74.00075677,noise 40.79896649,-73.93841135,noise 40.90378689,-73.89953811,noise 40.76946225,-73.75308273,noise 40.64846321,-74.00075677,noise 40.70346233,-73.98757873,noise 40.86363326,-73.88884678,noise 40.64846321,-74.00075677,noise 40.73249706,-74.00183297,noise 40.73243667,-74.00193039,noise 40.86690289,-73.92344532,noise 40.85423374,-73.9021614,noise 40.8496192,-73.9317028,noise 40.83795384,-73.84592362,noise 40.76889103,-73.98209349,noise 40.7640329,-73.98247023,noise 40.82239574,-73.87964448,noise 40.70535918,-73.9428692,noise 40.78881295,-73.94220896,noise 40.68018878,-73.79201621,noise 40.80934133,-73.94921721,noise 40.84887872,-73.93269756,noise 40.77376928,-73.97247756,noise 40.71039614,-74.00559809,noise 40.72502032,-73.99713179,noise 40.7093912,-73.94861164,noise 40.6471319,-74.00462341,noise 40.83215401,-73.93541385,noise 40.62979198,-73.92703536,noise 40.85599501,-73.9314649,noise 40.72349367,-73.98825325,noise 40.83215401,-73.93541385,noise 40.83320462,-73.94480477,noise 40.81153076,-73.93643091,noise 40.7327221,-74.00327627,noise 40.65941518,-73.93898351,noise 40.63597511,-73.97814065,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.73249706,-74.00183297,noise 40.7327221,-74.00327627,noise 40.74934479,-73.9769377,noise 40.75612923,-73.994297,noise 40.76579016,-73.98728192,noise 40.75758919,-73.99061873,noise 40.83073495,-73.92202706,noise 40.57454006,-73.99088562,noise 40.86445949,-73.90098221,noise 40.83215401,-73.93541385,noise 40.7558686,-73.9982097,noise 40.76001757,-73.9840379,noise 40.75612923,-73.994297,noise 40.82682155,-73.94153639,noise 40.6813378,-73.97666197,noise 40.74985425,-73.98793822,noise 40.73029727,-73.95326078,noise 40.64345624,-73.97271869,noise 40.82458434,-73.9266664,noise 40.74985425,-73.98793822,noise 40.88233675,-73.87905861,noise 40.6471319,-74.00462341,noise 40.7505431,-73.98721626,noise 40.73249706,-74.00183297,noise 40.72114459,-73.99370114,noise 40.7170331,-73.95643735,noise 40.80311646,-73.95631961,noise 40.7170331,-73.95643735,noise 40.80578479,-73.95065396,noise 40.86838741,-73.90792551,noise 40.70346233,-73.98757873,noise 40.82409702,-73.89020273,noise 40.62497843,-73.96324833,noise 40.8688507,-73.90722344,noise 40.84066617,-73.93688374,noise 40.82409702,-73.89020273,noise 40.73029727,-73.95326078,noise 40.73890263,-73.98730149,noise 40.78229519,-73.96512584,noise 40.62798956,-74.07986158,noise 40.80934133,-73.94921721,noise 40.62429808,-73.99753598,noise 40.71039614,-74.00559809,noise 40.80958115,-73.93994763,noise 40.82605772,-73.89720927,noise 40.86954934,-73.91634837,noise 40.80934133,-73.94921721,noise 40.67515862,-73.94901294,noise 40.71577269,-74.01152173,noise 40.83215401,-73.93541385,noise 40.78342347,-73.95063442,noise 40.88013834,-73.87654933,noise 40.81823376,-73.9546839,noise 40.64032479,-73.90581884,noise 40.79823931,-73.93378172,noise 40.83306527,-73.93544549,noise 40.64091417,-73.90491359,noise 40.64269519,-73.96977506,noise 40.8226489,-73.91052159,noise 40.86954934,-73.91634837,noise 40.67042923,-73.9281805,noise 40.86954934,-73.91634837,noise 40.8641324,-73.89131162,noise 40.68643738,-73.92919089,noise 40.6826897,-73.96166976,noise 40.84626742,-73.91449455,noise 40.8221488,-73.94456825,noise 40.63733699,-73.93079592,noise 40.82374571,-73.94943384,noise 40.81832442,-73.95490061,noise 40.77756088,-73.95102149,noise 40.72043656,-73.99664136,noise 40.5995808,-73.98996033,noise 40.88614404,-73.82754832,noise 40.84626742,-73.91449455,noise 40.87016793,-73.8652399,noise 40.6859116,-73.84204906,noise 40.8641324,-73.89131162,noise 40.720604,-73.99678566,noise 40.84249078,-73.86799576,noise 40.73249706,-74.00183297,noise 40.65059241,-73.95452388,noise 40.58485012,-73.81903413,noise 40.65148242,-73.9245322,noise 40.8422716,-73.86834677,noise 40.66344835,-73.88348529,noise 40.70590845,-73.92030476,noise 40.74978836,-73.9877686,noise 40.83450977,-73.94208615,noise 40.58479432,-73.81673733,noise 40.74091496,-73.99208259,noise 40.81268459,-73.90928142,noise 40.73243667,-74.00193039,noise 40.7111325,-73.96654457,noise 40.74091496,-73.99208259,noise 40.64846576,-74.00682174,noise 40.71795041,-73.95792662,noise 40.75007365,-73.98636819,noise 40.71119498,-73.95639428,noise 40.74985425,-73.98793822,noise 40.6903467,-73.91418246,noise 40.82763977,-73.94212103,noise 40.6792069,-73.87633722,noise 40.74705161,-73.88665213,noise 40.65601334,-73.96205991,noise 40.74985425,-73.98793822,noise 40.87512779,-73.87517372,noise 40.66300531,-73.95713946,noise 40.68384715,-73.94035652,noise 40.66986734,-73.95050218,noise 40.63081904,-74.01262391,noise 40.7113233,-73.95463755,noise 40.70994851,-73.95549695,noise 40.70897306,-73.95282847,noise 40.7009771,-73.91781856,noise 40.82920581,-73.94529229,noise 40.66344835,-73.88348529,noise 40.72573834,-73.98377913,noise 40.64779609,-74.00572617,noise 40.6792184,-73.94961193,noise 40.66380463,-73.93028185,noise 40.68384715,-73.94035652,noise 40.72573834,-73.98377913,noise 40.65692084,-73.92609024,noise 40.73619707,-73.84103136,noise 40.65477844,-73.91595454,noise 40.64208428,-73.94962196,noise 40.64779609,-74.00572617,noise 40.7967208,-73.96288625,noise 40.8286292,-73.89383035,noise 40.675832,-73.96643249,noise 40.84877925,-73.9079129,noise 40.7515446,-73.87084321,noise 40.67178977,-73.95310351,noise 40.67731336,-73.9433583,noise 40.87529249,-73.86779685,noise 40.80416841,-73.96670009,noise 40.88599088,-73.82791399,noise 40.63597511,-73.97814065,noise 40.65520328,-73.96102241,noise 40.74954684,-73.98797797,noise 40.70381897,-73.94207345,noise 40.70502935,-73.92319841,noise 40.70499369,-73.92323452,noise 40.76427778,-73.98696453,noise 40.70381897,-73.94207345,noise 40.70499369,-73.92323452,noise 40.67217259,-73.9643651,noise 40.65523619,-73.9609431,noise 40.66604978,-73.93016055,noise 40.80934133,-73.94921721,noise 40.66791806,-73.9560657,noise 40.74705161,-73.88665213,noise 40.71117664,-73.77985388,noise 40.84822967,-73.90711847,noise 40.84675948,-73.89243878,noise 40.83599418,-73.92255936,noise 40.71175719,-73.94278797,noise 40.65692084,-73.92609024,noise 40.76349768,-73.87813729,noise 40.70330246,-73.92255481,noise 40.68672121,-73.9527757,noise 40.65409877,-73.95094635,noise 40.65723141,-73.96024273,noise 40.66174728,-73.92783302,noise 40.67164502,-73.96257373,noise 40.67114208,-73.86131616,noise 40.67503199,-73.97192347,noise 40.6694586,-73.86283007,noise 40.66468267,-73.95100345,noise 40.66955466,-73.94496182,noise 40.66162112,-73.92799896,noise 40.66217506,-73.95370139,noise 40.67203599,-73.8605825,noise 40.87527792,-73.90616585,noise 40.66223184,-73.93996494,noise 40.85311597,-73.92723861,noise 40.60089325,-74.00073102,noise 40.67644222,-73.89803112,noise 40.82941737,-73.94575102,noise 40.66294637,-73.95378376,noise 40.65953413,-73.95981245,noise 40.67266989,-73.96599788,noise 40.66268286,-73.95374429,noise 40.65241665,-73.92608081,noise 40.65089965,-73.94765483,noise 40.6628358,-73.8830322,noise 40.67564094,-73.90140675,noise 40.85394175,-73.91467627,noise 40.67164502,-73.96257373,noise 40.75911705,-73.83416162,noise 40.65904306,-73.96052639,noise 40.66380463,-73.93028185,noise 40.82574216,-73.92596054,noise 40.75618226,-73.93008771,noise 40.68386399,-73.9111549,noise 40.8384769,-73.91310235,noise 40.73753636,-74.00419306,noise 40.75618226,-73.93008771,noise 40.67546383,-73.90966636,noise 40.86954934,-73.91634837,noise 40.67983122,-73.95829318,noise 40.66996391,-73.9349689,noise 40.71879472,-73.98901165,noise 40.63554232,-73.92283161,noise 40.75524246,-73.97327568,noise 40.60116498,-74.00115956,noise 40.72349367,-73.98825325,noise 40.66082465,-73.96119213,noise 40.66637963,-73.95264952,noise 40.72306557,-73.98907949,noise 40.72349367,-73.98825325,noise 40.72127152,-73.9393634,noise 40.86437703,-73.92653575,noise 40.72349367,-73.98825325,noise 40.82000567,-73.95887372,noise 40.71696661,-73.95482851,noise 40.82849131,-73.94940133,noise 40.68673683,-73.76310294,noise 40.85207391,-73.93331605,noise 40.7590692,-73.84513509,noise 40.86368678,-73.89621112,noise 40.81383011,-73.95192686,noise 40.69161916,-73.90573918,noise 40.69292612,-73.94437277,noise 40.70511489,-74.01028639,noise 40.74751084,-73.87678788,noise 40.81404952,-73.93482088,noise 40.8321571,-73.91861775,noise 40.83477457,-73.92526387,noise 40.66769072,-73.95731669,noise 40.81383011,-73.95192686,noise 40.76035852,-73.98928635,noise 40.86383829,-73.92531798,noise 40.67973775,-73.95788944,noise 40.58485012,-73.81903413,noise 40.67540266,-73.87635509,noise 40.82771865,-73.92223295,noise 40.77644949,-73.90032235,noise 40.64450907,-73.93544054,noise 40.72483716,-73.97832075,noise 40.82634975,-73.89844095,noise 40.64450907,-73.93544054,noise 40.81160127,-73.93489192,noise 40.83116192,-73.9163894,noise 40.83043564,-73.93508669,noise 40.6792184,-73.94961193,noise 40.79585513,-73.93552852,noise 40.8635725,-73.92601242,noise 40.67845538,-73.9496774,noise 40.6838335,-73.94048633,noise 40.66955466,-73.94496182,noise 40.73234787,-73.98493936,noise 40.74877996,-73.98009224,noise 40.70003481,-73.78672132,noise 40.8645253,-73.92661874,noise 40.58485012,-73.81903413,noise 40.81160127,-73.93489192,noise 40.84771963,-73.91119991,noise 40.71100083,-73.95835664,noise 40.73883253,-73.86275581,noise 40.8121482,-73.93620996,noise 40.66415167,-73.93713367,noise 40.71992609,-74.0002886,noise 40.81160127,-73.93489192,noise 40.73249706,-74.00183297,noise 40.8332634,-73.91886213,noise 40.81986557,-73.95852336,noise 40.81160127,-73.93489192,noise 40.66053457,-73.89317519,noise 40.64779609,-74.00572617,noise 40.58485012,-73.81903413,noise 40.81986557,-73.95852336,noise 40.68413717,-73.82412261,noise 40.79585513,-73.93552852,noise 40.82602887,-73.89872328,noise 40.83477457,-73.92526387,noise 40.6542813,-73.96180501,noise 40.67596498,-73.81819204,noise 40.66344835,-73.88348529,noise 40.85438041,-73.93027367,noise 40.72001891,-73.98924954,noise 40.65692084,-73.92609024,noise 40.67089569,-73.94835651,noise 40.83163583,-73.91893277,noise 40.84329992,-73.90679646,noise 40.79975275,-73.94645061,noise 40.71879472,-73.98901165,noise 40.76449114,-73.98165065,noise 40.86437703,-73.92653575,noise 40.82684887,-73.9226784,noise 40.82684887,-73.9226784,noise 40.85040137,-73.90452738,noise 40.82835792,-73.92187086,noise 40.85592711,-73.92813203,noise 40.69672438,-73.91263437,noise 40.86184209,-73.92408742,noise 40.66947429,-73.94336496,noise 40.71957476,-73.99950577,noise 40.75256615,-73.90524869,noise 40.68004986,-73.94326224,noise 40.73750535,-73.92744424,noise 40.74241107,-73.9563125,noise 40.6800387,-73.94290171,noise 40.68973631,-73.89032301,noise 40.78869209,-73.94776317,noise 40.83767128,-73.78290106,noise 40.85114171,-73.78846705,noise 40.85114171,-73.78846705,noise 40.80880336,-73.9558824,noise 40.83767128,-73.78290106,noise 40.81006558,-73.95496762,noise 40.85114171,-73.78846705,noise 40.81569237,-73.94867768,noise 40.87839515,-73.86406244,noise 40.85423374,-73.9021614,noise 40.78869209,-73.94776317,noise 40.83933002,-73.8990319,noise 40.62975533,-73.95805427,noise 40.83476792,-73.90175276,noise 40.67135851,-73.88319749,noise 40.81569237,-73.94867768,noise 40.81569237,-73.94867768,noise 40.70502935,-73.92319841,noise 40.86838741,-73.90792551,noise 40.65972716,-73.98791847,noise 40.74705161,-73.88665213,noise 40.66917217,-73.97304342,noise 40.82154175,-73.89026836,noise 40.65692084,-73.92609024,noise 40.6636087,-73.95592076,noise 40.83428758,-73.91560852,noise 40.82541392,-73.92347498,noise 40.76339159,-73.9906865,noise 40.7111325,-73.96654457,noise 40.86437703,-73.92653575,noise 40.8112493,-73.93871788,noise 40.76427778,-73.98696453,noise 40.6471319,-74.00462341,noise 40.65981773,-73.98783916,noise 40.70999601,-73.95771883,noise 40.80907019,-73.9445394,noise 40.71992609,-74.0002886,noise 40.67136935,-73.88305688,noise 40.64748734,-73.95274221,noise 40.67135029,-73.88320472,noise 40.75687178,-73.87297694,noise 40.71426481,-73.980925,noise 40.87194126,-73.88040812,noise 40.71957476,-73.99950577,noise 40.70740912,-73.91545175,noise 40.64846321,-74.00075677,noise 40.82174875,-73.93533362,noise 40.82174875,-73.93533362,noise 40.76331469,-73.92819586,noise 40.65925237,-73.98843036,noise 40.65972716,-73.98791847,noise 40.73138812,-73.77229296,noise 40.76889103,-73.98209349,noise 40.6850442,-73.98202587,noise 40.81868641,-73.9419265,noise 40.73588925,-73.99120995,noise 40.82101078,-73.86574772,noise 40.70549476,-73.92992446,noise 40.72055733,-74.00351016,noise 40.65972716,-73.98791847,noise 40.80907019,-73.9445394,noise 40.69396945,-73.92987527,noise 40.67018833,-73.79135166,noise 40.62084753,-74.02677137,noise 40.63440036,-73.96943654,noise 40.71105968,-73.94210684,noise 40.74705161,-73.88665213,noise 40.68035215,-73.96478977,noise 40.62116874,-74.02649413,noise 40.68365638,-73.88175175,noise 40.70763173,-73.91584101,noise 40.79941266,-73.95336033,noise 40.68317178,-73.84985434,noise 40.65972716,-73.98791847,noise 40.84385794,-73.83043008,noise 40.79949235,-73.9535806,noise 40.79941266,-73.95336033,noise 40.67853426,-73.87617984,noise 40.74294904,-73.99646701,noise 40.67588621,-73.97447916,noise 40.73443443,-73.98990393,noise 40.68983865,-73.94519749,noise 40.58366904,-73.94842756,noise 40.62116874,-74.02649413,noise 40.80990996,-73.95715684,noise 40.63419461,-73.96986898,noise 40.57915216,-73.96603829,noise 40.80140974,-73.96594657,noise 40.66901153,-73.80264193,noise 40.82574216,-73.92596054,noise 40.62075694,-74.02683617,noise 40.82517196,-73.9415017,noise 40.76889103,-73.98209349,noise 40.70482441,-73.92458723,noise 40.65972716,-73.98791847,noise 40.80897314,-73.94832523,noise 40.68304883,-73.85028368,noise 40.78229519,-73.96512584,noise 40.80140974,-73.96594657,noise 40.80140974,-73.96594657,noise 40.85423374,-73.9021614,noise 40.82574216,-73.92596054,noise 40.80111034,-73.96521711,noise 40.76213717,-73.98992139,noise 40.77395281,-73.9709647,noise 40.77395281,-73.9709647,noise 40.77284958,-73.97161145,noise 40.80934133,-73.94921721,noise 40.77250913,-73.97118557,noise 40.7728139,-73.97158258,noise 40.8448533,-73.81548959,noise 40.7612619,-73.9942713,noise 40.64797458,-74.00370094,noise 40.6368429,-73.93075319,noise 40.75858018,-73.82561174,noise 40.74190477,-73.98260236,noise 40.71795041,-73.95792662,noise 40.8711945,-73.91409008,noise 40.6482915,-73.96861215,noise 40.8278237,-73.91933489,noise 40.84079137,-73.91401007,noise 40.70327139,-73.93439902,noise 40.70404255,-73.93419268,noise 40.7590692,-73.84513509,noise 40.84394176,-73.93902389,noise 40.67341154,-73.8609257,noise 40.61891623,-73.9582628,noise 40.83674443,-73.93770781,noise 40.63913924,-73.90606193,noise 40.83674443,-73.93770781,noise 40.63358088,-74.00482063,noise 40.63597511,-73.97814065,noise 40.83112975,-73.9174446,noise 40.83674443,-73.93770781,noise 40.88228797,-73.82769936,noise 40.82425069,-73.94932145,noise 40.90414424,-73.84536862,noise 40.81878033,-73.91614483,noise 40.69560593,-73.90407468,noise 40.6938318,-73.90960541,noise 40.75628671,-73.86072018,noise 40.75911212,-73.84237722,noise 40.72979695,-73.95838458,noise 40.82543701,-73.92520932,noise 40.65904306,-73.96052639,noise 40.72349367,-73.98825325,noise 40.74242106,-73.72184082,noise 40.81986872,-73.95247528,noise 40.72349367,-73.98825325,noise 40.82407758,-73.94888439,noise 40.84014504,-73.93754561,noise 40.64891838,-73.96297568,noise 40.68272042,-73.96329223,noise 40.76449114,-73.98165065,noise 40.72127152,-73.9393634,noise 40.87602314,-73.90790771,noise 40.83477457,-73.92526387,noise 40.70986855,-73.96216632,noise 40.57724405,-74.0000324,noise 40.65507713,-73.96134685,noise 40.64200351,-73.96069141,noise 40.68187917,-73.7660803,noise 40.74978812,-73.98568612,noise 40.70590845,-73.92030476,noise 40.66584129,-73.89433098,noise 40.67775273,-73.99811085,noise 40.84361298,-73.94013015,noise 40.68642817,-73.86869412,noise 40.68174168,-73.95858403,noise 40.61655033,-73.93020153,noise 40.7590692,-73.84513509,noise 40.71082016,-73.96852499,noise 40.69957784,-73.83235864,noise 40.63934843,-73.91756657,noise 40.70590845,-73.92030476,noise 40.69204047,-73.91451564,noise 40.81537693,-73.9379229,noise 40.51478878,-74.24842226,noise 40.6636087,-73.95592076,noise 40.71015867,-73.96853252,noise 40.67966615,-73.90975441,noise 40.75729157,-73.83400373,noise 40.87493809,-73.90345437,noise 40.69489819,-73.93155477,noise 40.7019866,-73.9132983,noise 40.68142275,-73.95710239,noise 40.75911212,-73.84237722,noise 40.72001616,-73.98927119,noise 40.72278878,-74.00459619,noise 40.63559076,-73.97774084,noise 40.7475205,-73.9824024,noise 40.68995015,-73.93776562,noise 40.72349367,-73.98825325,noise 40.75108103,-73.98685162,noise 40.82074483,-73.92721619,noise 40.61675785,-73.93787348,noise 40.72271742,-74.00444827,noise 40.70383481,-73.93097214,noise 40.72278878,-74.00459619,noise 40.8296954,-73.85469461,noise 40.65276799,-73.9304952,noise 40.72349367,-73.98825325,noise 40.73250431,-73.9848383,noise 40.81080343,-73.91895815,noise 40.64467433,-74.07700238,noise 40.82536324,-73.87747838,noise 40.6434682,-74.02276986,noise 40.84361298,-73.94013015,noise 40.87584082,-73.90313124,noise 40.84386815,-73.93491455,noise 40.68793826,-73.76540279,noise 40.68793826,-73.76540279,noise 40.83022246,-73.94768359,noise 40.74860668,-73.97810369,noise 40.71037825,-73.96853241,noise 40.72532531,-73.97621002,noise 40.7056051,-73.94626295,noise 40.79829144,-73.93374556,noise 40.83513835,-73.87100256,noise 40.80077953,-73.95334854,noise 40.70277711,-73.92938633,noise 40.69064663,-73.90804115,noise 40.69625061,-73.89428639,noise 40.68789023,-73.90723725,noise 40.57358621,-74.11682231,noise 40.86437703,-73.92653575,noise 40.86210781,-73.91928608,noise 40.69403903,-73.96078695,noise 40.67319947,-73.97632234,noise 40.67135029,-73.88320472,noise 40.67135029,-73.88320472,noise 40.62863721,-74.08003528,noise 40.67135029,-73.88320472,noise 40.81711658,-73.94800821,noise 40.88340238,-73.8472323,noise 40.67899647,-73.95051703,noise 40.64478449,-74.01282114,noise 40.64460505,-73.95210284,noise 40.62863721,-74.08003528,noise 40.82115996,-73.95552736,noise 40.82467379,-73.95027501,noise 40.8112956,-73.92019302,noise 40.78322116,-73.84585528,noise 40.63528888,-73.95819852,noise 40.68339747,-73.93610597,noise 40.83520152,-73.87103857,noise 40.83029434,-73.8738594,noise 40.69026194,-73.85444315,noise 40.66770245,-73.80760949,noise 40.77090216,-73.7352894,noise 40.81534395,-73.93784345,noise 40.68294092,-73.9066384,noise 40.67772374,-73.91451957,noise 40.61336789,-73.96302421,noise 40.84361298,-73.94013015,noise 40.61336789,-73.96302421,noise 40.83116528,-73.92114846,noise 40.82574216,-73.92596054,noise 40.83428758,-73.91560852,noise 40.74985425,-73.98793822,noise 40.64456088,-73.95150109,noise 40.6636087,-73.95592076,noise 40.81151832,-73.95019814,noise 40.71032834,-73.77550661,noise 40.58055871,-73.83457619,noise 40.84361298,-73.94013015,noise 40.85581559,-73.92978416,noise 40.83012392,-73.85497191,noise 40.74985425,-73.98793822,noise 40.67130461,-73.87627257,noise 40.72123352,-73.97957376,noise 40.66099446,-73.96012155,noise 40.67169437,-73.81662833,noise 40.6442512,-73.95264,noise 40.70763173,-73.91584101,noise 40.86813967,-73.93041833,noise 40.58051505,-73.8347563,noise 40.86233869,-73.91975578,noise 40.71010488,-73.94870848,noise 40.63528888,-73.95819852,noise 40.82938323,-73.89908675,noise 40.78867286,-73.94771624,noise 40.62918697,-73.896846,noise 40.84621384,-73.9056177,noise 40.63355164,-73.95172887,noise 40.86230944,-73.90986809,noise 40.83767128,-73.78290106,noise 40.66220083,-73.91663363,noise 40.66244188,-73.98921918,noise 40.7310643,-74.00141078,noise 40.8506451,-73.94049974,noise 40.81271726,-73.9556775,noise 40.67661244,-73.89807412,noise 40.83546506,-73.87107781,noise 40.79928563,-73.94536022,noise 40.82782361,-73.94199802,noise 40.64747529,-73.95019446,noise 40.64924948,-73.96879188,noise 40.86230944,-73.90986809,noise 40.67135029,-73.88320472,noise 40.67826236,-73.92745462,noise 40.62567213,-74.14301676,noise 40.86233869,-73.91975578,noise 40.82467379,-73.95027501,noise 40.70549476,-73.92992446,noise 40.85064236,-73.94049974,noise 40.64001131,-73.94815701,noise 40.63528888,-73.95819852,noise 40.82847481,-73.94932185,noise 40.83022246,-73.94768359,noise 40.83364975,-73.94583069,noise 40.79567846,-73.95007997,noise 40.87575492,-73.85086586,noise 40.82755197,-73.94218615,noise 40.82410397,-73.9528408,noise 40.83022246,-73.94768359,noise 40.68056066,-73.9384522,noise 40.74786462,-73.87397939,noise 40.66833709,-73.78915855,noise 40.79558791,-73.9501595,noise 40.64448984,-73.95227588,noise 40.82513813,-73.95139477,noise 40.64800706,-74.01096228,noise 40.79490926,-73.94855646,noise 40.85064236,-73.94049974,noise 40.6442512,-73.95264,noise 40.84045916,-73.89114791,noise 40.79490926,-73.94855646,noise 40.69825571,-73.90877356,noise 40.82467379,-73.95027501,noise 40.8269187,-73.94371514,noise 40.83719401,-73.93669189,noise 40.79536812,-73.94966126,noise 40.66206268,-73.8866776,noise 40.70393245,-73.743692,noise 40.76889103,-73.98209349,noise 40.82755197,-73.94218615,noise 40.67264855,-73.95227376,noise 40.678484,-73.89461018,noise 40.6333314,-73.92083459,noise 40.79838018,-73.94601108,noise 40.70932835,-73.95588692,noise 40.6442512,-73.95264,noise 40.83692357,-73.93908092,noise 40.60746692,-73.99486793,noise 40.79524722,-73.94935798,noise 40.64429756,-73.95193009,noise 40.79660589,-73.94942195,noise 40.6444625,-73.95253175,noise 40.79558791,-73.9501595,noise 40.678484,-73.89461018,noise 40.79715191,-73.94901341,noise 40.67782331,-73.86870386,noise 40.69403903,-73.96078695,noise 40.67867287,-73.81742754,noise 40.67288741,-73.95963137,noise 40.70478512,-74.01409863,noise 40.71043154,-73.94877315,noise 40.65008151,-73.96100738,noise 40.6333314,-73.92083459,noise 40.789368,-73.949348,noise 40.66568283,-73.98380455,noise 40.80934133,-73.94921721,noise 40.81803684,-73.93843705,noise 40.65415048,-73.94992999,noise 40.7212926,-73.94887303,noise 40.7212926,-73.94887303,noise 40.76227032,-73.9260347,noise 40.75647412,-73.94726506,noise 40.74126877,-73.98893938,noise 40.79567846,-73.95007997,noise 40.67706967,-73.88248808,noise 40.65008151,-73.96100738,noise 40.67710262,-73.88249523,noise 40.66023486,-73.93711213,noise 40.82864517,-73.9497481,noise 40.73306206,-73.85965739,noise 40.82574216,-73.92596054,noise 40.83706074,-73.9389543,noise 40.79483376,-73.92169712,noise 40.82574216,-73.92596054,noise 40.83706074,-73.9389543,noise 40.72350613,-73.97928084,noise 40.82458314,-73.95009081,noise 40.76227032,-73.9260347,noise 40.79524722,-73.94935798,noise 40.77384048,-73.97180599,noise 40.72346769,-73.97916541,noise 40.74135662,-73.98912702,noise 40.85418396,-73.84233988,noise 40.79730064,-73.95020517,noise 40.83657605,-73.94112668,noise 40.80934133,-73.94921721,noise 40.70140307,-73.9185718,noise 40.82092673,-73.90895224,noise 40.70140307,-73.9185718,noise 40.75170273,-73.88540624,noise 40.65692084,-73.92609024,noise 40.83706074,-73.9389543,noise 40.70968754,-74.01167217,noise 40.83022246,-73.94768359,noise 40.80934133,-73.94921721,noise 40.83946691,-73.93720653,noise 40.7334606,-73.86011119,noise 40.80897314,-73.94832523,noise 40.67074838,-73.95041861,noise 40.66736527,-73.9227263,noise 40.67163765,-73.95033504,noise 40.66075517,-73.95165872,noise 40.67217259,-73.9643651,noise 40.67163765,-73.95033504,noise 40.67163765,-73.95033504,noise 40.67751742,-73.83190215,noise 40.68928131,-73.79610216,noise 40.64812468,-73.94766422,noise 40.65426231,-73.94831533,noise 40.66736527,-73.9227263,noise 40.82091856,-73.94332278,noise 40.6394111,-73.95697085,noise 40.85706015,-73.90468411,noise 40.65514524,-73.90414367,noise 40.88833768,-73.85171287,noise 40.71933181,-73.96013354,noise 40.85607396,-73.93039842,noise 40.7003101,-73.9455315,noise 40.64752851,-73.95274578,noise 40.68935074,-73.81613264,noise 40.69822499,-73.80633492,noise 40.79447782,-73.94169842,noise 40.6716626,-73.95091902,noise 40.61912817,-73.90419899,noise 40.7003101,-73.9455315,noise 40.76978153,-73.80835435,noise 40.83215401,-73.93541385,noise 40.75826062,-73.8419172,noise 40.83865994,-73.91565719,noise 40.67620633,-73.94156748,noise 40.69961893,-73.83230084,noise 40.72349367,-73.98825325,noise 40.75752223,-73.83407535,noise 40.5995808,-73.98996033,noise 40.7592274,-73.98657207,noise 40.69515458,-73.84504554,noise 40.83865994,-73.91565719,noise 40.83865994,-73.91565719,noise 40.82126004,-73.95187091,noise 40.6368429,-73.93075319,noise 40.86437703,-73.92653575,noise 40.72349367,-73.98825325,noise 40.75826062,-73.8419172,noise 40.84955882,-73.8836834,noise 40.68032799,-73.94514762,noise 40.68789023,-73.90723725,noise 40.7110688,-73.94984756,noise 40.74736716,-73.88655054,noise 40.58413031,-73.93277355,noise 40.72320273,-73.98827856,noise 40.81884287,-73.95415239,noise 40.68711215,-73.95576099,noise 40.7110688,-73.94984756,noise 40.68032799,-73.94514762,noise 40.76373637,-73.91464744,noise 40.59013616,-73.97389624,noise 40.76373637,-73.91464744,noise 40.75287674,-73.99511299,noise 40.83457572,-73.94224148,noise 40.82201832,-73.95366967,noise 40.7137782,-73.95746753,noise 40.70383481,-73.93097214,noise 40.72278878,-74.00459619,noise 40.84637919,-73.91721243,noise 40.8565581,-73.92767948,noise 40.82271169,-73.93956363,noise 40.86954934,-73.91634837,noise 40.83153485,-73.85952195,noise 40.81316331,-73.95232472,noise 40.8302154,-73.91694346,noise 40.86708854,-73.88573889,noise 40.59034214,-74.06662421,noise 40.66196937,-73.96163481,noise 40.85928239,-73.88551371,noise 40.68035169,-73.85977553,noise 40.79186116,-73.94539159,noise 40.7612619,-73.9942713,noise 40.74742033,-73.87685301,noise 40.63998673,-73.94841286,noise 40.72953107,-73.9804155,noise 40.78663571,-73.9409,noise 40.80396734,-73.95637324,noise 40.80770187,-73.85247771,noise 40.58488412,-73.92664159,noise 40.8322155,-73.91969093,noise 40.74846082,-73.97612597,noise 40.80768816,-73.85249219,noise 40.74742033,-73.87685301,noise 40.83215401,-73.93541385,noise 40.83215401,-73.93541385,noise 40.67775063,-73.95119574,noise 40.83215401,-73.93541385,noise 40.680098,-73.98123762,noise 40.51478878,-74.24842226,noise 40.6813378,-73.97666197,noise 40.64269519,-73.96977506,noise 40.82290375,-73.89688173,noise 40.85235714,-73.86488198,noise 40.67192598,-73.93917755,noise 40.73071564,-73.99556202,noise 40.76081394,-73.98718902,noise 40.85736721,-73.9312249,noise 40.73413637,-73.95829166,noise 40.65524968,-73.95296016,noise 40.85072806,-73.93650912,noise 40.72828324,-73.98789883,noise 40.83744196,-73.91657666,noise 40.85651686,-73.92756746,noise 40.61946981,-73.93806547,noise 40.86645171,-73.8973493,noise 40.84711145,-73.93818244,noise 40.80174149,-73.96475806,noise 40.81331489,-73.96131636,noise 40.82082868,-73.95082706,noise 40.71948025,-73.74556224,noise 40.71776494,-73.74564093,noise 40.71921314,-73.74641463,noise 40.70551683,-73.80250139,noise 40.63746939,-73.91917226,noise 40.58488412,-73.92664159,noise 40.66479938,-73.73491026,noise 40.74252091,-74.00051966,noise 40.86722009,-73.88553981,noise 40.73899323,-73.91952182,noise 40.68149095,-73.77232272,noise 40.80077953,-73.95334854,noise 40.80482562,-73.95424874,noise 40.62701746,-73.92775529,noise 40.6936969,-73.80036912,noise 40.7036598,-73.94786948,noise 40.83137895,-73.92895353,noise 40.64460505,-73.95210284,noise 40.5923394,-73.98439484,noise 40.76081394,-73.98718902,noise 40.85736721,-73.9312249,noise 40.6636087,-73.95592076,noise 40.76081394,-73.98718902,noise 40.67801383,-73.88794839,noise 40.72071262,-73.98327529,noise 40.85644459,-73.9005495,noise 40.63638725,-73.94610971,noise 40.6307861,-74.01258427,noise 40.79830689,-73.93682278,noise 40.63746939,-73.91917226,noise 40.83903643,-73.78344232,noise 40.83436713,-73.91553615,noise 40.63809689,-74.16231283,noise 40.83767128,-73.78290106,noise 40.85114171,-73.78846705,noise 40.83869854,-73.78329164,noise 40.83767128,-73.78290106,noise 40.82755197,-73.94218615,noise 40.85135053,-73.78858928,noise 40.74255846,-73.95417963,noise 40.69624384,-73.99003593,noise 40.67767695,-73.95936889,noise 40.81452987,-73.86521889,noise 40.79896649,-73.93841135,noise 40.82410397,-73.9528408,noise 40.83657605,-73.94112668,noise 40.82225992,-73.93651821,noise 40.82410397,-73.9528408,noise 40.83657605,-73.94112668,noise 40.82225992,-73.93651821,noise 40.67135851,-73.88319749,noise 40.66270121,-73.93999335,noise 40.86539065,-73.88683367,noise 40.82596179,-73.95198313,noise 40.83428758,-73.91560852,noise 40.8475587,-73.91622422,noise 40.72507247,-74.00299448,noise 40.66023486,-73.93711213,noise 40.85418396,-73.84233988,noise 40.82863657,-73.86657787,noise 40.62701746,-73.92775529,noise 40.7585032,-73.99071967,noise 40.7585032,-73.99071967,noise 40.83194663,-73.91986109,noise 40.65468827,-73.92874526,noise 40.79945662,-73.95346505,noise 40.66919734,-73.89645248,noise 40.66301962,-73.94002911,noise 40.67114208,-73.86131616,noise 40.66301962,-73.94002911,noise 40.6998478,-73.99103077,noise 40.77395281,-73.9709647,noise 40.72572296,-73.99651121,noise 40.80934133,-73.94921721,noise 40.74744087,-73.9821967,noise 40.72543203,-73.99677099,noise 40.72569826,-73.99655812,noise 40.77921397,-73.95284009,noise 40.86954934,-73.91634837,noise 40.80934133,-73.94921721,noise 40.65264353,-73.94976895,noise 40.62729122,-73.95280695,noise 40.88597888,-73.844608,noise 40.75028401,-73.82280747,noise 40.72349367,-73.98825325,noise 40.72907382,-73.98878626,noise 40.6938318,-73.90960541,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.67466847,-73.90045645,noise 40.71879472,-73.98901165,noise 40.74297597,-73.98853852,noise 40.67080938,-73.93510866,noise 40.72277743,-73.9896712,noise 40.80238951,-73.95052644,noise 40.64747529,-73.95019446,noise 40.66362228,-73.95553146,noise 40.77933383,-73.95066995,noise 40.72581057,-73.99199058,noise 40.66464296,-73.93707553,noise 40.76494318,-73.91720536,noise 40.80238678,-73.95056979,noise 40.63283667,-74.02723013,noise 40.66454875,-73.93547881,noise 40.66419832,-73.93711921,noise 40.67031181,-73.93376094,noise 40.86146109,-73.92921784,noise 40.83215401,-73.93541385,noise 40.68334267,-73.9608365,noise 40.60079418,-73.91264826,noise 40.82000567,-73.95887372,noise 40.61896738,-74.00883229,noise 40.68161246,-73.95797118,noise 40.6938318,-73.90960541,noise 40.82469135,-73.92660486,noise 40.82962826,-73.92117919,noise 40.70229931,-73.82409994,noise 40.61943689,-73.93811593,noise 40.64269245,-73.96978587,noise 40.73941098,-74.00539123,noise 40.70629759,-73.92769101,noise 40.68935074,-73.81613264,noise 40.75621176,-73.92895429,noise 40.72507247,-74.00303417,noise 40.63520686,-74.02028461,noise 40.73797725,-73.88368694,noise 40.60820274,-73.92070952,noise 40.63520686,-74.02028461,noise 40.73924884,-73.88445696,noise 40.65533416,-73.95151488,noise 40.79186116,-73.94539159,noise 40.86954934,-73.91634837,noise 40.73955932,-73.99893907,noise 40.86954934,-73.91634837,noise 40.82417266,-73.95300695,noise 40.60980967,-73.9224976,noise 40.72278878,-74.00459619,noise 40.78131764,-73.94922052,noise 40.60030156,-73.93089912,noise 40.79823931,-73.93378172,noise 40.59777739,-73.92813262,noise 40.70030514,-73.92669491,noise 40.54409609,-74.14115469,noise 40.73810305,-73.88323205,noise 40.67141401,-73.9844268,noise 40.72937855,-73.98947534,noise 40.72556247,-73.98237572,noise 40.86718443,-73.88556156,noise 40.73770686,-73.88230175,noise 40.60106237,-73.93173379,noise 40.72598213,-73.98055364,noise 40.68174168,-73.95858403,noise 40.77090216,-73.7352894,noise 40.82047682,-73.94365555,noise 40.73675234,-73.87767019,noise 40.63520686,-74.02028461,noise 40.81465774,-73.86425405,noise 40.73797725,-73.88368694,noise 40.54420877,-74.14103979,noise 40.67287759,-73.92394922,noise 40.74978836,-73.9877686,noise 40.60187262,-73.93264405,noise 40.60187262,-73.93264405,noise 40.67983122,-73.95829318,noise 40.80369835,-73.94962606,noise 40.71791187,-73.95762723,noise 40.86404894,-73.90234219,noise 40.57807818,-73.83511512,noise 40.80728488,-73.95422537,noise 40.65136695,-74.00747073,noise 40.65692084,-73.92609024,noise 40.68487465,-73.7833805,noise 40.74985425,-73.98793822,noise 40.83669583,-73.93922206,noise 40.54409609,-74.14115469,noise 40.68111072,-73.88875081,noise 40.72049057,-73.98532083,noise 40.81435097,-73.94441217,noise 40.72979348,-73.99884181,noise 40.6781304,-73.96097656,noise 40.67767695,-73.95936889,noise 40.64107637,-73.96247918,noise 40.74860668,-73.97810369,noise 40.75962609,-73.99547346,noise 40.65692084,-73.92609024,noise 40.67771564,-73.96012236,noise 40.6542813,-73.96180501,noise 40.6542813,-73.96180501,noise 40.81896801,-73.90343802,noise 40.85135053,-73.78858928,noise 40.82574216,-73.92596054,noise 40.81548486,-73.90332024,noise 40.80322395,-73.94459845,noise 40.61949326,-73.94651238,noise 40.82574216,-73.92596054,noise 40.65468827,-73.92874526,noise 40.82574216,-73.92596054,noise 40.79896649,-73.93841135,noise 40.74135662,-73.98912702,noise 40.65005176,-73.97190875,noise 40.82410397,-73.9528408,noise 40.63612216,-74.02731074,noise 40.6542813,-73.96180501,noise 40.6542813,-73.96180501,noise 40.73829469,-73.88547982,noise 40.6542813,-73.96180501,noise 40.6542813,-73.96180501,noise 40.71791187,-73.95762723,noise 40.58537563,-73.8096216,noise 40.68454625,-73.96508321,noise 40.70729406,-74.01209015,noise 40.66721468,-73.96172912,noise 40.77395281,-73.9709647,noise 40.75797293,-73.98553637,noise 40.73697612,-73.99045203,noise 40.83022246,-73.94768359,noise 40.83068342,-73.94735801,noise 40.62964721,-74.01069987,noise 40.86637626,-73.92825812,noise 40.68629884,-73.87582288,noise 40.86437703,-73.92653575,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.72278878,-74.00459619,noise 40.86954934,-73.91634837,noise 40.76010264,-73.9839729,noise 40.66893158,-73.93946866,noise 40.86465335,-73.89073954,noise 40.79904275,-73.94259015,noise 40.73434974,-74.00300933,noise 40.68829638,-73.95199573,noise 40.74252091,-74.00051966,noise 40.78869209,-73.94776317,noise 40.79948136,-73.95356616,noise 40.68684348,-73.90943821,noise 40.72349367,-73.98825325,noise 40.72446118,-73.97859507,noise 40.67983122,-73.95829318,noise 40.59034214,-74.06662421,noise 40.73234787,-73.98493936,noise 40.69174454,-73.94168007,noise 40.63597511,-73.97814065,noise 40.65129021,-74.00543816,noise 40.65533416,-73.95151488,noise 40.82674247,-73.90854321,noise 40.75873427,-73.86009782,noise 40.77591608,-73.95610277,noise 40.77591608,-73.95610277,noise 40.72252483,-73.98879818,noise 40.76971859,-73.95643538,noise 40.79513631,-73.96959389,noise 40.79513631,-73.96959389,noise 40.66350409,-73.94274645,noise 40.8658736,-73.92765489,noise 40.64440181,-73.9518075,noise 40.71325414,-73.97758505,noise 40.71938176,-73.8506061,noise 40.68209912,-73.96033246,noise 40.58740438,-73.80982103,noise 40.68634094,-73.955949,noise 40.719006,-73.84663871,noise 40.64759025,-74.00539822,noise 40.6542813,-73.96180501,noise 40.65005176,-73.97190875,noise 40.71891263,-73.84659564,noise 40.6707623,-73.93436971,noise 40.6542813,-73.96180501,noise 40.71325414,-73.97758505,noise 40.58989,-73.80747002,noise 40.72706511,-73.99537826,noise 40.72721058,-73.99527001,noise 40.72721058,-73.99527001,noise 40.69313307,-73.96920047,noise 40.72543203,-73.99677099,noise 40.68593704,-73.91579267,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.72652715,-73.99584371,noise 40.72572296,-73.99651121,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.77614558,-73.98343829,noise 40.75940563,-73.9851029,noise 40.7187623,-74.00098123,noise 40.77614558,-73.98343829,noise 40.77677955,-73.9829868,noise 40.61324014,-73.90699881,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.71184807,-74.00653245,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.87918072,-73.88206939,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.72569826,-73.99655812,noise 40.72543203,-73.99677099,noise 40.6471319,-74.00462341,noise 40.83786306,-73.90730641,noise 40.67282621,-73.93907579,noise 40.74371747,-74.00597259,noise 40.7114251,-73.78497151,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.73187624,-73.81491841,noise 40.66628829,-73.95083646,noise 40.86019986,-73.92694526,noise 40.67545279,-73.90959788,noise 40.67288037,-73.92399969,noise 40.72349367,-73.98825325,noise 40.64107637,-73.96247918,noise 40.68829638,-73.95199573,noise 40.72349367,-73.98825325,noise 40.70508472,-74.0100267,noise 40.67149688,-73.89281156,noise 40.58030444,-74.00386999,noise 40.67603066,-73.94157484,noise 40.74860668,-73.97810369,noise 40.86117081,-73.92588494,noise 40.83527045,-73.92386478,noise 40.58774206,-73.80986688,noise 40.66016406,-73.92438181,noise 40.66889889,-73.95861003,noise 40.65680128,-73.92799335,noise 40.83527045,-73.92386478,noise 40.59299904,-73.99364121,noise 40.70492054,-73.96466498,noise 40.64969367,-73.95160187,noise 40.82945034,-73.94583049,noise 40.70492054,-73.96466498,noise 40.72979348,-73.99884181,noise 40.80285303,-73.95650039,noise 40.71838626,-73.99777781,noise 40.6917582,-73.94155385,noise 40.70279083,-73.92937189,noise 40.87287791,-73.84624405,noise 40.82946683,-73.94587023,noise 40.80077953,-73.95334854,noise 40.90223438,-73.84366202,noise 40.86019986,-73.92694526,noise 40.72656789,-73.98913304,noise 40.70439608,-73.96399081,noise 40.67667785,-73.98029403,noise 40.81344194,-73.9433147,noise 40.82417266,-73.95300695,noise 40.76197486,-73.98633327,noise 40.81280465,-73.91557435,noise 40.71070267,-73.98470258,noise 40.82755197,-73.94218615,noise 40.84946333,-73.91226388,noise 40.65571306,-73.95884887,noise 40.71240883,-73.97801819,noise 40.66845978,-73.95876891,noise 40.69369414,-73.96368646,noise 40.64646448,-74.01107734,noise 40.67091481,-73.93714892,noise 40.83527045,-73.92386478,noise 40.86381074,-73.92104468,noise 40.7170331,-73.95643735,noise 40.71240883,-73.97801819,noise 40.74066135,-73.92252221,noise 40.74101021,-73.92292598,noise 40.74158653,-73.92280983,noise 40.74089156,-73.92200229,noise 40.82671692,-73.94651202,noise 40.74158653,-73.92280983,noise 40.83053832,-73.91946891,noise 40.74158653,-73.92280983,noise 40.71325414,-73.97758505,noise 40.74158653,-73.92280983,noise 40.70894329,-73.9417588,noise 40.79896649,-73.93841135,noise 40.71220895,-73.98071277,noise 40.74089156,-73.92200229,noise 40.75804782,-73.86216034,noise 40.7960734,-73.94348479,noise 40.82895584,-73.89385151,noise 40.82880488,-73.89385175,noise 40.8268404,-73.94643243,noise 40.73986626,-73.98958194,noise 40.85291783,-73.88873455,noise 40.71240883,-73.97801819,noise 40.77342824,-73.96969045,noise 40.70286634,-74.01551923,noise 40.75732873,-73.92034792,noise 40.79532613,-73.97128765,noise 40.68031837,-73.94805718,noise 40.84459402,-73.93719807,noise 40.80934133,-73.94921721,noise 40.80852005,-73.92329573,noise 40.73380013,-73.81480121,noise 40.73356283,-73.81746117,noise 40.86954934,-73.91634837,noise 40.71823482,-73.98931116,noise 40.64995727,-73.89739409,noise 40.74424994,-73.99396601,noise 40.73699571,-73.99813804,noise 40.86954934,-73.91634837,noise 40.86954934,-73.91634837,noise 40.68672159,-73.98426818,noise 40.64969367,-73.95160187,noise 40.72271742,-74.00444827,noise 40.68629884,-73.87582288,noise 40.82469135,-73.92660486,noise 40.59811137,-73.79670826,noise 40.72409257,-73.99612888,noise 40.58886785,-73.80198947,noise 40.72149603,-73.99646093,noise 40.67179579,-73.93696785,noise 40.60447245,-73.97479456,noise 40.67350675,-73.95693444,noise 40.82574216,-73.92596054,noise 40.77680945,-73.95253489,noise 40.69174454,-73.94168007,noise 40.7938682,-73.7964572,noise 40.82407758,-73.94888439,noise 40.75979023,-73.98792559,noise 40.80822094,-73.95449204,noise 40.64825654,-73.97139779,noise 40.65005176,-73.97190875,noise 40.78898921,-73.97406384,noise 40.78744962,-73.94976475,noise 40.71240883,-73.97801819,noise 40.78835802,-73.97452271,noise 40.7896149,-73.97360857,noise 40.7985263,-73.9417021,noise 40.64095281,-73.94822835,noise 40.71184807,-74.00653245,noise 40.81952693,-73.9162017,noise 40.74675269,-73.89871387,noise 40.7052507,-73.79471882,noise 40.71039614,-74.00559809,noise 40.71140621,-74.00557292,noise 40.77376928,-73.97247756,noise 40.75562797,-73.97933221,noise 40.77181716,-73.98369931,noise 40.82705245,-73.8710363,noise 40.68124733,-73.97719921,noise 40.79960785,-73.96167106,noise 40.74534875,-73.90350864,noise 40.79578676,-73.94676079,noise 40.75729157,-73.83400373,noise 40.83215401,-73.93541385,noise 40.75676421,-73.96715332,noise 40.7590692,-73.84513509,noise 40.72953107,-73.9804155,noise 40.75680596,-73.96922878,noise 40.73306797,-73.9982933,noise 40.68935074,-73.81613264,noise 40.68187917,-73.7660803,noise 40.85279283,-73.92842098,noise 40.85273512,-73.92830537,noise 40.85248772,-73.92769475,noise 40.68187917,-73.7660803,noise 40.82276244,-73.91932296,noise 40.75354005,-73.90466981,noise 40.74689077,-73.92079709,noise 40.67596498,-73.81819204,noise 40.76619811,-73.8301224,noise 40.85277635,-73.92839931,noise 40.85248772,-73.92769475,noise 40.80203814,-73.96548391,noise 40.85352623,-73.91696857,noise 40.82276244,-73.91932296,noise 40.76045523,-73.84305628,noise 40.85996987,-73.90849028,noise 40.81383011,-73.95192686,noise 40.72277419,-73.98517963,noise 40.83584386,-73.92351358,noise 40.75895636,-73.84288294,noise 40.75774256,-73.84444875,noise 40.65869331,-73.95041676,noise 40.64460505,-73.95210284,noise 40.84687837,-73.92060575,noise 40.68035203,-73.97476588,noise 40.67287482,-73.92390236,noise 40.83866819,-73.91567525,noise 40.68035203,-73.97476588,noise 40.68583916,-73.97632146,noise 40.68250975,-73.97631543,noise 40.82000567,-73.95887372,noise 40.72933786,-74.0010319,noise 40.69355175,-73.96476476,noise 40.86954934,-73.91634837,noise 40.5995808,-73.98996033,noise 40.7757179,-73.92776005,noise 40.83836168,-73.92491651,noise 40.70354066,-73.92582937,noise 40.72233005,-73.98984083,noise 40.64969367,-73.95160187,noise 40.82000567,-73.95887372,noise 40.72404318,-74.00331553,noise 40.84995029,-73.93972684,noise 40.86926185,-73.91732134,noise 40.51478878,-74.24842226,noise 40.85996987,-73.90849028,noise 40.68238292,-73.90564046,noise 40.68624495,-73.7575627,noise 40.79546254,-73.94602789,noise 40.85358286,-73.93222649,noise 40.86004132,-73.90860948,noise 40.6707335,-73.94208056,noise 40.83839751,-73.92514054,noise 40.83392234,-73.91168088,noise 40.83295123,-73.86654754,noise 40.82746324,-73.94597664,noise 40.68160109,-73.97567759,noise 40.66000933,-73.96082497,noise 40.6613542,-73.9696801,noise 40.68241996,-73.80760669,noise 40.86618344,-73.91893043,noise 40.8658736,-73.92765489,noise 40.67266495,-73.88045182,noise 40.7009771,-73.91781856,noise 40.72732217,-73.85474825,noise 40.67266495,-73.88045182,noise 40.66064331,-73.96062997,noise 40.8589973,-73.93078218,noise 40.64871024,-74.00118561,noise 40.83774446,-73.91738219,noise 40.6738745,-73.95680081,noise 40.58485012,-73.81903413,noise 40.68505234,-73.87050326,noise 40.78867286,-73.94771624,noise 40.83815288,-73.94386103,noise 40.76889103,-73.98209349,noise 40.62911405,-73.97000097,noise 40.67915413,-73.98342993,noise 40.86792318,-73.92653906,noise 40.68894551,-73.97300297,noise 40.83142128,-73.92642398,noise 40.76081394,-73.98718902,noise 40.7058317,-73.94372,noise 40.83729554,-73.93665565,noise 40.84760638,-73.88547236,noise 40.75853323,-73.98884266,noise 40.58485012,-73.81903413,noise 40.58485012,-73.81903413,noise 40.76081394,-73.98718902,noise 40.82817421,-73.87526903,noise 40.67968027,-73.9782489,noise 40.69278919,-73.97771814,noise 40.76023759,-73.88686433,noise 40.83137895,-73.92895353,noise 40.81020946,-73.93949551,noise 40.84822967,-73.90711847,noise 40.68115298,-73.97251579,noise 40.85671481,-73.93263179,noise 40.64846321,-74.00075677,noise 40.69808101,-73.92535219,noise 40.7461787,-73.90812329,noise 40.68775073,-73.96978348,noise 40.62333369,-73.92734861,noise 40.84822967,-73.90711847,noise 40.62349902,-73.9283751,noise 40.7009771,-73.91781856,noise 40.75687178,-73.87297694,noise 40.64986293,-74.00536958,noise 40.86237169,-73.91983889,noise 40.67826236,-73.92745462,noise 40.84732664,-73.90374023,noise 40.58485012,-73.81903413,noise 40.85709322,-73.92752345,noise 40.6213573,-73.92713463,noise 40.81919482,-73.91249888,noise 40.65778597,-73.95324671,noise 40.68464082,-73.88908745,noise 40.86237169,-73.91983889,noise 40.83774446,-73.91738219,noise 40.70915516,-74.01054311,noise 40.69357091,-73.96460248,noise 40.69189711,-73.97754535,noise 40.64146676,-73.99975858,noise 40.6350276,-73.9500164,noise 40.6350276,-73.9500164,noise 40.69546735,-73.90918488,noise 40.64882,-74.00286853,noise 40.6738745,-73.95680081,noise 40.84432303,-73.90940815,noise 40.58485012,-73.81903413,noise 40.73595507,-73.99047744,noise 40.68973631,-73.89032301,noise 40.83142128,-73.92642398,noise 40.7540907,-73.78113416,noise 40.85153916,-73.92948143,noise 40.70850905,-73.94624618,noise 40.71043661,-73.95429188,noise 40.80509759,-73.95487345,noise 40.7501623,-73.89632664,noise 40.70763173,-73.91584101,noise 40.82817421,-73.87526903,noise 40.81627602,-73.95281383,noise 40.63419461,-73.96986898,noise 40.84766965,-73.90364937,noise 40.69389029,-73.96798846,noise 40.68800567,-73.75688561,noise 40.6885297,-73.75548103,noise 40.74873564,-73.89398655,noise 40.71186472,-73.99875555,noise 40.81916263,-73.8798129,noise 40.74859138,-73.89531132,noise 40.69700962,-73.91235631,noise 40.79547986,-73.96190097,noise 40.79547986,-73.96190097,noise 40.63419461,-73.96986898,noise 40.80509759,-73.95487345,noise 40.84664241,-73.91310614,noise 40.68640518,-73.86081567,noise 40.64846321,-74.00075677,noise 40.79376233,-73.94938077,noise 40.70439847,-73.92383391,noise 40.84637919,-73.91721243,noise 40.73091332,-74.00281795,noise 40.80003082,-73.95485522,noise 40.74859138,-73.89531132,noise 40.72278878,-74.00459619,noise 40.69343406,-73.96590435,noise 40.73435249,-74.00298768,noise 40.7501623,-73.89632664,noise 40.74840957,-73.89763224,noise 40.7309737,-74.00286485,noise 40.77622111,-73.97595354,noise 40.77891092,-73.95017198,noise 40.77284043,-73.9680877,noise 40.86720969,-73.92253385,noise 40.61573083,-74.08438891,noise 40.64077412,-74.02916111,noise 40.77395281,-73.9709647,noise 40.8405004,-73.89122012,noise 40.62794296,-74.07977506,noise 40.86550816,-73.86352116,noise 40.77284043,-73.9680877,noise 40.57800727,-73.95692402,noise 40.68587938,-73.75731884,noise 40.74861328,-73.89524993,noise 40.74705161,-73.88665213,noise 40.64850164,-74.00081803,noise 40.73610606,-74.00912566,noise 40.6424618,-73.96044972,noise 40.85035422,-73.94060482,noise 40.57625872,-73.95664796,noise 40.77395281,-73.9709647,noise 40.81964456,-73.87613406,noise 40.70381897,-73.94207345,noise 40.81964456,-73.87613406,noise 40.68587938,-73.75731884,noise 40.74892642,-73.89550568,noise 40.71379452,-73.94426517,noise 40.68587938,-73.75731884,noise 40.70346233,-73.98757873,noise 40.74087343,-73.98798315,noise 40.80934133,-73.94921721,noise 40.80275152,-73.93357496,noise 40.8630334,-73.90905367,noise 40.75635718,-73.82577277,noise 40.85497849,-73.92983204,noise 40.90151967,-73.84693744,noise 40.83865994,-73.91565719,noise 40.7590692,-73.84513509,noise 40.83699725,-73.93827857,noise 40.75774256,-73.84444875,noise 40.8711945,-73.91409008,noise 40.81500947,-73.88758046,noise 40.68153466,-73.76538926,noise 40.73170658,-74.00095616,noise 40.67843595,-73.9491871,noise 40.75911212,-73.84237722,noise 40.89141199,-73.89741202,noise 40.75911212,-73.84237722,noise 40.75846663,-73.84203222,noise 40.88676283,-73.81763725,noise 40.75618226,-73.93008771,noise 40.67411622,-73.96545278,noise 40.58073897,-73.83395295,noise 40.85600325,-73.93148658,noise 40.67658577,-73.88998773,noise 40.65162237,-74.00447957,noise 40.7092334,-73.77562212,noise 40.67462684,-73.87725059,noise 40.67705878,-73.96597401,noise 40.8245224,-73.93804444,noise 40.71465855,-73.99107207,noise 40.68801068,-73.7769772,noise 40.66196937,-73.96163481,noise 40.72641824,-73.97885421,noise 40.67596498,-73.81819204,noise 40.68282211,-73.93799942,noise 40.82847481,-73.94932185,noise 40.82462131,-73.93822862,noise 40.68935074,-73.81613264,noise 40.84097674,-73.91600843,noise 40.72178152,-73.9975901,noise 40.76579016,-73.98728192,noise 40.70304638,-73.92984408,noise 40.70281008,-73.929444,noise 40.72349367,-73.98825325,noise 40.58073897,-73.83395295,noise 40.79546254,-73.94602789,noise 40.67033341,-73.86683687,noise 40.65162237,-74.00447957,noise 40.68161246,-73.95797118,noise 40.86124818,-73.92670189,noise 40.67556206,-73.96333222,noise 40.65941369,-73.87079092,noise 40.90151967,-73.84693744,noise 40.73211582,-73.86718968,noise 40.68935074,-73.81613264,noise 40.7505925,-73.98718376,noise 40.83731252,-73.94288961,noise 40.64992004,-74.01225634,noise 40.74091496,-73.99208259,noise 40.86088041,-73.92673483,noise 40.83200082,-73.86590983,noise 40.75444761,-73.93013645,noise 40.62481473,-73.92555301,noise 40.85495433,-73.88311366,noise 40.72178152,-73.9975901,noise 40.80369973,-73.93581711,noise 40.62338138,-73.93851573,noise 40.67250249,-73.95780388,noise 40.75760949,-73.82263999,noise 40.8549922,-73.92982479,noise 40.79786677,-73.9675809,noise 40.72101026,-73.99936867,noise 40.85592711,-73.92813203,noise 40.7590692,-73.84513509,noise 40.71177964,-73.99970061,noise 40.85312519,-73.9165353,noise 40.6765475,-73.96352996,noise 40.83166292,-73.91100091,noise 40.69362838,-73.96405432,noise 40.69357091,-73.96460248,noise 40.86379445,-73.92544095,noise 40.82166253,-73.890279,noise 40.87898695,-73.9073431,noise 40.69357912,-73.96452314,noise 40.84361298,-73.94013015,noise 40.65941369,-73.87079092,noise 40.80096061,-73.95316782,noise 40.67659437,-73.89036986,noise 40.82193705,-73.89032552,noise 40.69357091,-73.96460248,noise 40.84466953,-73.9347692,noise 40.84171392,-73.9355672,noise 40.86174893,-73.92433698,noise 40.80279134,-73.93603471,noise 40.51770136,-74.24054207,noise 40.67659437,-73.89036986,noise 40.81913872,-73.9526998,noise 40.72104319,-73.95643113,noise 40.75083163,-73.87391964,noise 40.72349367,-73.98825325,noise 40.68706292,-73.95620453,noise 40.7041308,-73.93023607,noise 40.8221488,-73.94456825,noise 40.69357091,-73.96460248,noise 40.82746873,-73.94598387,noise 40.63733699,-73.93079592,noise 40.82847481,-73.94932185,noise 40.68152493,-73.97922177,noise 40.69321061,-73.97187254,noise 40.58473938,-73.81670507,noise 40.72271742,-74.00444827,noise 40.58485012,-73.81903413,noise 40.68113675,-73.95566761,noise 40.82473861,-73.95434706,noise 40.72071262,-73.98327529,noise 40.72483716,-73.97832075,noise 40.69402875,-73.96288572,noise 40.70554013,-73.77203861,noise 40.68371983,-74.00333515,noise 40.83749389,-73.94331951,noise 40.69396853,-73.96341946,noise 40.83477457,-73.92526387,noise 40.78884871,-73.94813501,noise 40.83435759,-73.9255968,noise 40.6427849,-73.91382204,noise 40.66105078,-73.99897997,noise 40.67139643,-73.93953131,noise 40.72349367,-73.98825325,noise 40.65533416,-73.95151488,noise 40.7505431,-73.98721626,noise 40.87422023,-73.90496686,noise 40.7475205,-73.9824024,noise 40.67390456,-73.96443267,noise 40.72349367,-73.98825325,noise 40.83137895,-73.92895353,noise 40.84556386,-73.93897542,noise 40.82847481,-73.94932185,noise 40.70963675,-73.83002488,noise 40.69277808,-73.95767926,noise 40.78884871,-73.94813501,noise 40.84361298,-73.94013015,noise 40.69238319,-73.92169483,noise 40.84466953,-73.9347692,noise 40.58485012,-73.81903413,noise 40.80164856,-73.94476953,noise 40.62863721,-74.08003528,noise 40.80342765,-73.93519971,noise 40.63597511,-73.97814065,noise 40.80285303,-73.95650039,noise 40.78865088,-73.94766931,noise 40.69321061,-73.97187254,noise 40.63597511,-73.97814065,noise 40.78867286,-73.94771624,noise 40.75598053,-73.88144289,noise 40.85399285,-73.92935592,noise 40.63597511,-73.97814065,noise 40.84695384,-73.91862495,noise 40.76045412,-73.91527612,noise 40.84466953,-73.9347692,noise 40.67267534,-73.9099333,noise 40.67238021,-73.94747936,noise 40.84466953,-73.9347692,noise 40.68866995,-73.8754723,noise 40.69357091,-73.96460248,noise 40.69357091,-73.96460248,noise 40.76477763,-73.99005095,noise 40.69761789,-73.76214106,noise 40.68564572,-73.91528824,noise 40.7193216,-73.98781748,noise 40.80269441,-73.94499261,noise 40.73748845,-73.88345324,noise 40.66997795,-73.93553845,noise 40.65357944,-74.00320751,noise 40.86237169,-73.91983889,noise 40.85390912,-73.8836288,noise 40.51478878,-74.24842226,noise 40.58485012,-73.81903413,noise 40.7581599,-73.9625937,noise 40.80791636,-73.95470176,noise 40.83129116,-73.92903312,noise 40.80785873,-73.95474154,noise 40.74739575,-73.90955439,noise 40.67993408,-73.75211988,noise 40.69480357,-73.91333288,noise 40.83933002,-73.8990319,noise 40.7329472,-73.9979866,noise 40.74860668,-73.97810369,noise 40.64272962,-73.9571705,noise 40.80269165,-73.94497094,noise 40.71189366,-73.94126205,noise 40.78536042,-73.97298193,noise 40.62501047,-74.03042587,noise 40.65218375,-73.83426165,noise 40.76623183,-73.91529765,noise 40.84345572,-73.92470475,noise 40.84466953,-73.9347692,noise 40.5923394,-73.98439484,noise 40.68152493,-73.97922177,noise 40.81452987,-73.86521889,noise 40.78869209,-73.94776317,noise 40.70495019,-73.94282267,noise 40.60170999,-73.9833087,noise 40.83749389,-73.94331951,noise 40.82854734,-73.94028824,noise 40.82641485,-73.94059367,noise 40.65524968,-73.95296016,noise 40.63448326,-73.90179903,noise 40.68212846,-73.81911266,noise 40.85887711,-73.89515218,noise 40.80687299,-73.9473624,noise 40.69422002,-73.91857336,noise 40.69617672,-73.98035678,noise 40.7387215,-73.861724,noise 40.86174999,-73.92596745,noise 40.7387133,-73.86174566,noise 40.7192993,-73.98497117,noise 40.69638477,-73.97738877,noise 40.87548571,-73.85068928,noise 40.89041615,-73.86343024,noise 40.74457668,-73.99680615,noise 40.7475205,-73.9824024,noise 40.54008844,-74.14787056,noise 40.64625113,-73.94425673,noise 40.764709,-73.98991378,noise 40.69321061,-73.97187254,noise 40.75575482,-73.88350791,noise 40.7417991,-73.92466446,noise 40.83777968,-73.94402036,noise 40.6826897,-73.96166976,noise 40.79358813,-73.93577991,noise 40.86404894,-73.90234219,noise 40.80342765,-73.93519971,noise 40.60232312,-73.7589982,noise 40.78869209,-73.94776317,noise 40.70016793,-73.94672175,noise 40.58485012,-73.81903413,noise 40.87153741,-73.92569983,noise 40.68212846,-73.81911266,noise 40.68271354,-73.8193887,noise 40.86399121,-73.85967031,noise 40.80259837,-73.94505048,noise 40.7212143,-73.97948719,noise 40.66546535,-73.95200135,noise 40.80194298,-73.95257476,noise 40.68986342,-73.95146453,noise 40.8693264,-73.9321309,noise 40.86813967,-73.93041833,noise 40.82765167,-73.91671179,noise 40.68438882,-73.9865619,noise 40.80322426,-73.93469784,noise 40.86813967,-73.93041833,noise 40.72423459,-73.88960962,noise 40.87367193,-73.87922985,noise 40.64846194,-73.96959947,noise 40.51358865,-74.25123739,noise 40.68480615,-73.9876399,noise 40.84850675,-73.9140254,noise 40.61400643,-73.9224531,noise 40.8693264,-73.9321309,noise 40.70345053,-73.92651833,noise 40.66965542,-73.99252723,noise 40.70880202,-73.95076182,noise 40.70515518,-73.90767128,noise 40.65720809,-74.00016939,noise 40.79376833,-73.9341076,noise 40.67598976,-73.91931305,noise 40.66673879,-73.82106487,noise 40.7003101,-73.9455315,noise 40.67319947,-73.97632234,noise 40.66764412,-73.82078127,noise 40.70572288,-73.90709341,noise 40.69664817,-73.76174422,noise 40.65097912,-73.96119065,noise 40.67135851,-73.88319749,noise 40.67639601,-73.91186786,noise 40.80965751,-73.91330253,noise 40.57092387,-73.85444404,noise 40.67358845,-73.96295477,noise 40.70893582,-73.94916385,noise 40.58458746,-73.81957487,noise 40.80695267,-73.94755378,noise 40.76743782,-73.92062464,noise 40.68383168,-73.93222956,noise 40.68674356,-73.98437274,noise 40.75934849,-73.91980044,noise 40.67358845,-73.96295477,noise 40.68672159,-73.98426818,noise 40.74705161,-73.88665213,noise 40.64846321,-74.00075677,noise 40.86335219,-73.92922306,noise 40.67288741,-73.95963137,noise 40.60978901,-73.99465886,noise 40.64711224,-73.9725262,noise 40.7327221,-74.00327627,noise 40.65778597,-73.95324671,noise 40.86341501,-73.92871685,noise 40.64794386,-73.97229883,noise 40.73288126,-73.95623936,noise 40.68438882,-73.9865619,noise 40.80603558,-73.94677066,noise 40.7442523,-73.91217507,noise 40.80164856,-73.94476953,noise 40.82837372,-73.8240774,noise 40.65368874,-73.9627568,noise 40.68546412,-73.93105966,noise 40.78869209,-73.94776317,noise 40.64846321,-74.00075677,noise 40.65807037,-73.86979876,noise 40.86720969,-73.92253385,noise 40.69664817,-73.76174422,noise 40.7212143,-73.97948719,noise 40.68478983,-73.92381304,noise 40.83528966,-73.93756823,noise 40.74447137,-73.91150714,noise 40.58413031,-73.93277355,noise 40.80880336,-73.9558824,noise 40.64797458,-74.00370094,noise 40.66584366,-73.95088004,noise 40.8658736,-73.92765489,noise 40.71879472,-73.98901165,noise 40.74860668,-73.97810369,noise 40.81919482,-73.91249888,noise 40.69355181,-73.92917252,noise 40.65682381,-74.00179125,noise 40.75329019,-73.8892222,noise 40.8028942,-73.94379686,noise 40.71839544,-73.97954217,noise 40.80603558,-73.94677066,noise 40.82755197,-73.94218615,noise 40.70314672,-73.98786372,noise 40.68484936,-73.9692115,noise 40.71728083,-73.95832025,noise 40.80603558,-73.94677066,noise 40.82015108,-73.87246957,noise 40.71728083,-73.95832025,noise 40.81383011,-73.95192686,noise 40.69440359,-73.93064653,noise 40.83774446,-73.91738219,noise 40.64655496,-73.97213725,noise 40.6738716,-73.96435698,noise 40.76743782,-73.92062464,noise 40.71728083,-73.95832025,noise 40.67358845,-73.96295477,noise 40.71216486,-73.9590629,noise 40.7210631,-73.7402494,noise 40.59781359,-73.93847446,noise 40.58485012,-73.81903413,noise 40.84825646,-73.90974978,noise 40.69817381,-73.92454066,noise 40.75497436,-73.89094831,noise 40.80965751,-73.91330253,noise 40.70450001,-73.94855049,noise 40.70549476,-73.92992446,noise 40.63236604,-73.90722796,noise 40.69940684,-73.92988758,noise 40.69940684,-73.92988758,noise 40.57505126,-73.84339833,noise 40.8759857,-73.85103891,noise 40.69816561,-73.92460558,noise 40.65647759,-73.93284481,noise 40.74447137,-73.91150714,noise 40.57582867,-73.84385727,noise 40.82307588,-73.91254075,noise 40.6982463,-73.9805437,noise 40.60978901,-73.99465886,noise 40.58411122,-73.93298959,noise 40.83137895,-73.92895353,noise 40.7440955,-73.98561878,noise 40.6568122,-73.95481158,noise 40.69664817,-73.76174422,noise 40.67387708,-73.9643029,noise 40.83264129,-73.94342843,noise 40.70381897,-73.94207345,noise 40.86336609,-73.92950142,noise 40.69467288,-73.9311439,noise 40.87575492,-73.85086586,noise 40.67226734,-73.86352726,noise 40.8028942,-73.94379686,noise 40.83569029,-73.93738355,noise 40.6363119,-74.02579755,noise 40.67383035,-73.96407941,noise 40.69891057,-73.93076806,noise 40.68986342,-73.95146453,noise 40.67387708,-73.9643029,noise 40.68975614,-73.93938846,noise 40.66235227,-73.95081052,noise 40.86336609,-73.92950142,noise 40.66550968,-73.95299979,noise 40.66241775,-73.94989856,noise 40.83165554,-73.88145259,noise 40.70893582,-73.94916385,noise 40.68035203,-73.97476588,noise 40.82720983,-73.92069425,noise 40.68035203,-73.97476588,noise 40.8782876,-73.9080239,noise 40.65691583,-73.95313919,noise 40.66924933,-73.73638497,noise 40.86828292,-73.9010669,noise 40.71648816,-73.94641651,noise 40.6818451,-74.00482772,noise 40.69440359,-73.93064653,noise 40.68438882,-73.9865619,noise 40.71446308,-73.98534381,noise 40.6363366,-74.02580837,noise 40.74294904,-73.99646701,noise 40.68557834,-73.91697578,noise 40.6989049,-73.93517148,noise 40.83137895,-73.92895353,noise 40.72284161,-73.97772613,noise 40.6824944,-73.91121802,noise 40.70456466,-73.91065484,noise 40.70386546,-73.9474293,noise 40.75314604,-73.89061203,noise 40.82003909,-73.94664023,noise 40.77395281,-73.9709647,noise 40.67132211,-73.94456382,noise 40.8782876,-73.9080239,noise 40.79157086,-73.94677139,noise 40.81337978,-73.95146477,noise 40.8002938,-73.94150551,noise 40.79325425,-73.94869497,noise 40.66924933,-73.73638497,noise 40.8028942,-73.94379686,noise 40.79899331,-73.94252157,noise 40.66023486,-73.93711213,noise 40.88046703,-73.88383183,noise 40.71198627,-73.9585472,noise 40.67132211,-73.94456382,noise 40.70439847,-73.92383391,noise 40.63448326,-73.90179903,noise 40.82543701,-73.92520932,noise 40.63448326,-73.90179903,noise 40.77373606,-73.97130057,noise 40.84271181,-73.85115679,noise 40.86342405,-73.93002558,noise 40.86553576,-73.9272684,noise 40.79122934,-73.93888076,noise 40.64748734,-73.95274221,noise 40.86342405,-73.93002558,noise 40.70588897,-73.94296613,noise 40.66629113,-73.95104553,noise 40.66584366,-73.95088004,noise 40.67238021,-73.94747936,noise 40.68322951,-73.90712475,noise 40.66001841,-73.99121634,noise 40.67241448,-73.9573389,noise 40.78244609,-73.77652368,noise 40.83038146,-73.93638399,noise 40.66255671,-73.88389414,noise 40.67241448,-73.9573389,noise 40.70559215,-73.92763407,noise 40.82720983,-73.92069425,noise 40.66919734,-73.89645248,noise 40.81860387,-73.95362508,noise 40.81884287,-73.95415239,noise 40.66172993,-73.88330086,noise 40.75718273,-73.8550477,noise 40.63880538,-73.91438206,noise 40.68775073,-73.96978348,noise 40.69515458,-73.84504554,noise 40.64460505,-73.95210284,noise 40.68815886,-73.81919006,noise 40.85312519,-73.9165353,noise 40.80703873,-73.94973913,noise 40.69453116,-73.90890487,noise 40.73317773,-74.00317887,noise 40.7159289,-73.96191037,noise 40.72349367,-73.98825325,noise 40.8077127,-73.94131837,noise 40.70383481,-73.93097214,noise 40.82482439,-73.87923902,noise 40.85650354,-73.93276214,noise 40.6944434,-73.90899154,noise 40.7296035,-73.98823774,noise 40.64748734,-73.95274221,noise 40.72349367,-73.98825325,noise 40.79236783,-73.97345941,noise 40.86019986,-73.92694526,noise 40.73294091,-73.98632479,noise 40.76754135,-73.9120144,noise 40.73428487,-73.71704685,noise 40.71610813,-73.99984849,noise 40.82222742,-73.94258099,noise 40.85065431,-73.90504752,noise 40.83255063,-73.94325867,noise 40.85004693,-73.88598865,noise 40.67250249,-73.95780388,noise 40.879807,-73.90657532,noise 40.84931017,-73.88480073,noise 40.86779358,-73.92998844,noise 40.7572323,-73.98979219,noise 40.80238678,-73.95056979,noise 40.84941716,-73.88474271,noise 40.88260252,-73.88395468,noise 40.86708854,-73.88573889,noise 40.80238678,-73.95056979,noise 40.76197486,-73.98633327,noise 40.86708854,-73.88573889,noise 40.64969367,-73.95160187,noise 40.71795041,-73.95792662,noise 40.75942557,-73.87658536,noise 40.66206355,-73.99637037,noise 40.84572834,-73.92061073,noise 40.87877029,-73.90754952,noise 40.87877029,-73.90754952,noise 40.81294075,-73.95176855,noise 40.8259588,-73.95139417,noise 40.81294075,-73.95176855,noise 40.8338819,-73.87659541,noise 40.63998487,-73.9063598,noise 40.70752169,-73.80642694,noise 40.64018175,-73.95530567,noise 40.80103445,-73.95251762,noise 40.58485012,-73.81903413,noise 40.80809268,-73.93837039,noise 40.83661749,-73.91894839,noise 40.80652816,-73.9563535,noise 40.85550894,-73.93104608,noise 40.77850171,-73.95632493,noise 40.70383481,-73.93097214,noise 40.69770842,-73.78587767,noise 40.63948114,-74.01616747,noise 40.6813378,-73.97666197,noise 40.6813378,-73.97666197,noise 40.8381204,-73.94479707,noise 40.72100987,-73.95542824,noise 40.67821199,-73.97923002,noise 40.70311348,-73.90818264,noise 40.591162,-74.07253717,noise 40.83435759,-73.9255968,noise 40.77631597,-73.90145267,noise 40.73924884,-73.88445696,noise 40.70620359,-73.90420731,noise 40.75155382,-74.0036309,noise 40.8361059,-73.9174312,noise 40.67842703,-73.9274292,noise 40.67915413,-73.98342993,noise 40.71176537,-73.94268697,noise 40.8283617,-73.92340655,noise 40.63827866,-74.03088952,noise 40.73748845,-73.88345324,noise 40.84573207,-73.92206008,noise 40.80938068,-73.92563917,noise 40.70029496,-73.91967673,noise 40.85559142,-73.9312665,noise 40.68152493,-73.97922177,noise 40.8221488,-73.94456825,noise 40.67915413,-73.98342993,noise 40.5995808,-73.98996033,noise 40.65524968,-73.95296016,noise 40.51770136,-74.24054207,noise 40.72234085,-73.98804421,noise 40.77850171,-73.95632493,noise 40.58488412,-73.92664159,noise 40.73234787,-73.98493936,noise 40.68230634,-73.92894289,noise 40.89559752,-73.85616014,noise 40.83227753,-73.93542096,noise 40.8372988,-73.94289685,noise 40.65824011,-74.00189581,noise 40.67915413,-73.98342993,noise 40.69461893,-73.9088182,noise 40.63561266,-73.9774562,noise 40.73924884,-73.88445696,noise 40.73924884,-73.88445696,noise 40.73924884,-73.88445696,noise 40.70383481,-73.93097214,noise 40.63597511,-73.97814065,noise 40.74736716,-73.88655054,noise 40.63597511,-73.97814065,noise 40.68044536,-73.97483795,noise 40.74985425,-73.98793822,noise 40.84027182,-73.91294099,noise 40.82860212,-73.92174771,noise 40.73924884,-73.88445696,noise 40.73973174,-73.98924276,noise 40.65824011,-74.00189581,noise 40.63559076,-73.97774084,noise 40.6917582,-73.94155385,noise 40.66384586,-73.95182589,noise 40.6813378,-73.97666197,noise 40.71602813,-73.99042617,noise 40.78931509,-73.97095439,noise 40.65524968,-73.95296016,noise 40.6781665,-73.96222757,noise 40.74824676,-73.97628845,noise 40.671729,-73.95215546,noise 40.68856316,-73.87570688,noise 40.55515853,-74.14269309,noise 40.6863616,-73.91459143,noise 40.82176574,-73.94144328,noise 40.73071564,-73.99556202,noise 40.71129554,-73.96129982,noise 40.83137895,-73.92895353,noise 40.64643727,-73.94909255,noise 40.85072806,-73.93650912,noise 40.82176574,-73.94144328,noise 40.80880336,-73.9558824,noise 40.8068895,-73.94744908,noise 40.63559076,-73.97774084,noise 40.63980197,-74.01824299,noise 40.71563016,-73.9906571,noise 40.82410397,-73.9528408,noise 40.63363819,-74.03692577,noise 40.82671692,-73.94651202,noise 40.63955774,-74.01786099,noise 40.69937003,-73.93744668,noise 40.69723292,-73.97744979,noise 40.67751492,-73.95912383,noise 40.71135048,-73.96142243,noise 40.76249226,-73.87228757,noise 40.67751492,-73.95912383,noise 40.73535385,-73.95511554,noise 40.75853323,-73.98884266,noise 40.72224762,-73.98889924,noise 40.76397109,-73.82575646,noise 40.79896649,-73.93841135,noise 40.79122935,-73.9388916,noise 40.79899331,-73.94252157,noise 40.68501775,-73.99023232,noise 40.7746797,-73.98220025,noise 40.84822967,-73.90711847,noise 40.64643727,-73.94909255,noise 40.68330849,-73.97640529,noise 40.7223651,-73.98423091,noise 40.64826005,-73.92885303,noise 40.8529343,-73.88873091,noise 40.8196938,-73.90160159,noise 40.64643727,-73.94909255,noise 40.68671564,-73.94633226,noise 40.72324724,-73.99861103,noise 40.77376928,-73.97247756,noise 40.70585178,-73.92171868,noise 40.70968754,-74.01167217,noise 40.72338722,-73.99848837,noise 40.81901533,-73.84802682,noise 40.71290425,-73.98692769,noise 40.72348328,-73.99840899,noise 40.72302217,-73.99881307,noise 40.72543203,-73.99677099,noise 40.72468803,-73.84899235,noise 40.72569826,-73.99655812,noise 40.85930241,-73.89807612,noise 40.82817421,-73.87526903,noise 40.88439029,-73.86236853,noise 40.68582929,-73.96039515,noise 40.86361231,-73.92820688,noise 40.86292586,-73.92776655,noise 40.86361231,-73.92820688,noise 40.57572784,-73.96113718,noise 40.64771492,-73.95216547,noise 40.67080374,-73.93484551,noise 40.83104834,-73.93143278,noise 40.84151869,-73.9177353,noise 40.72349367,-73.98825325,noise 40.83856918,-73.94204647,noise 40.77596729,-73.91512641,noise 40.84731911,-73.91147153,noise 40.8423355,-73.91618381,noise 40.70570827,-73.81531207,noise 40.79186116,-73.94539159,noise 40.82700844,-73.94776923,noise 40.82469135,-73.92660486,noise 40.72278878,-74.00459619,noise 40.74091496,-73.99208259,noise 40.7148974,-73.99189088,noise 40.73740361,-73.98419848,noise 40.65524968,-73.95296016,noise 40.57572784,-73.96113718,noise 40.69781909,-73.92781922,noise 40.74967829,-73.98542629,noise 40.62746563,-73.89955056,noise 40.51770136,-74.24054207,noise 40.84682457,-73.93556225,noise 40.64969367,-73.95160187,noise 40.72278878,-74.00459619,noise 40.73376187,-73.93742161,noise 40.75948568,-73.98913488,noise 40.74928842,-73.98454214,noise 40.64436887,-73.95886667,noise 40.6801084,-73.86059446,noise 40.72674376,-73.99168018,noise 40.74036888,-74.00579908,noise 40.65542412,-73.95006599,noise 40.74026183,-74.00586403,noise 40.74026183,-74.00586403,noise 40.81823376,-73.9546839,noise 40.65968051,-73.98799417,noise 40.74889105,-73.89286388,noise 40.67915413,-73.98342993,noise 40.68035203,-73.97476588,noise 40.72049057,-73.98532083,noise 40.66673998,-73.87621255,noise 40.68044536,-73.97483795,noise 40.83774446,-73.91738219,noise 40.74985425,-73.98793822,noise 40.74985425,-73.98793822,noise 40.76723794,-73.91741911,noise 40.70794647,-73.95270656,noise 40.65524968,-73.95296016,noise 40.74928842,-73.98454214,noise 40.74033035,-73.9924796,noise 40.64445946,-73.95889184,noise 40.66772093,-73.95738516,noise 40.77742181,-73.92264914,noise 40.72006586,-73.84084977,noise 40.71220895,-73.98071277,noise 40.81190067,-73.95930501,noise 40.65972716,-73.98791847,noise 40.75873427,-73.86009782,noise 40.68131583,-73.97660429,noise 40.7994024,-73.93748631,noise 40.75853323,-73.98884266,noise 40.75643171,-73.92108172,noise 40.73249706,-74.00183297,noise 40.83019037,-73.8766962,noise 40.75705241,-73.92165851,noise 40.71745207,-73.98493551,noise 40.7184168,-73.97641089,noise 40.78842918,-73.94906343,noise 40.79711518,-73.93592459,noise 40.79896649,-73.93841135,noise 40.67324261,-73.8739113,noise 40.63555239,-73.97802189,noise 40.70299353,-73.9947091,noise 40.80935781,-73.94925693,noise 40.86637626,-73.92825812,noise 40.86637626,-73.92825812,noise 40.86637626,-73.92825812,noise 40.86954934,-73.91634837,noise 40.80935781,-73.94925693,noise 40.77631597,-73.90145267,noise 40.72349367,-73.98825325,noise 40.7326191,-73.98150067,noise 40.88438128,-73.87880897,noise 40.6716626,-73.95091902,noise 40.82596179,-73.95198313,noise 40.68793773,-73.96176049,noise 40.72349367,-73.98825325,noise 40.72211005,-73.98585802,noise 40.72234313,-73.9841768,noise 40.6631617,-73.95017554,noise 40.85414949,-73.88247887,noise 40.85358286,-73.93222649,noise 40.65670997,-73.96044848,noise 40.82410397,-73.9528408,noise 40.68793773,-73.96176049,noise 40.86091822,-73.90351449,noise 40.67515321,-73.94920762,noise 40.84572834,-73.92061073,noise 40.86586537,-73.92766574,noise 40.65524968,-73.95296016,noise 40.72285427,-73.98957017,noise 40.6882663,-73.95226619,noise 40.83215401,-73.93541385,noise 40.74091496,-73.99208259,noise 40.80248809,-73.95677875,noise 40.72727826,-73.98456889,noise 40.70963675,-73.83002488,noise 40.86437703,-73.92653575,noise 40.80866559,-73.92766288,noise 40.68692751,-73.98478015,noise 40.75853323,-73.98884266,noise 40.6927436,-73.75839731,noise 40.65524968,-73.95296016,noise 40.77619507,-73.90129759,noise 40.87964991,-73.88191306,noise 40.82895479,-73.91971654,noise 40.65533416,-73.95151488,noise 40.81056065,-73.93924954,noise 40.83457572,-73.94224148,noise 40.7317752,-74.00116544,noise 40.88434563,-73.87883435,noise 40.65524968,-73.95296016,noise 40.68650742,-73.9837454,noise 40.80311646,-73.95631961,noise 40.80132189,-73.95761748,noise 40.70256844,-73.95025068,noise 40.68650742,-73.9837454,noise 40.84969059,-73.78743066,noise 40.67179579,-73.93696785,noise 40.71544206,-73.95184271,noise 40.69834298,-73.79521253,noise 40.70012066,-73.91396431,noise 40.71544206,-73.95184271,noise 40.74985425,-73.98793822,noise 40.72579798,-73.97916828,noise 40.77623713,-73.95586787,noise 40.8414961,-73.92484792,noise 40.88434563,-73.87883435,noise 40.80094422,-73.95336287,noise 40.68674355,-73.98432587,noise 40.67238021,-73.94747936,noise 40.74447137,-73.91150714,noise 40.85486958,-73.88618643,noise 40.6471319,-74.00462341,noise 40.68515671,-73.98182753,noise 40.67751492,-73.95912383,noise 40.73376187,-73.93742161,noise 40.79896649,-73.93841135,noise 40.68496733,-73.98187085,noise 40.72224762,-73.98889924,noise 40.67751492,-73.95912383,noise 40.78869209,-73.94776317,noise 40.8070011,-73.95159946,noise 40.68166337,-73.90514032,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.69734722,-73.75351209,noise 40.72543203,-73.99677099,noise 40.73411064,-73.93776768,noise 40.6471319,-74.00462341,noise 40.72937008,-73.9871229,noise 40.70223509,-73.81128232,noise 40.58146989,-73.96092504,noise 40.84259888,-73.93768426,noise 40.68187917,-73.7660803,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.70827533,-73.79160396,noise 40.68004986,-73.94326224,noise 40.68021313,-73.82120538,noise 40.71144313,-73.94609232,noise 40.86019986,-73.92694526,noise 40.68334267,-73.9608365,noise 40.82201188,-73.85826303,noise 40.64998168,-73.83758618,noise 40.71103335,-73.95038504,noise 40.65524968,-73.95296016,noise 40.76256751,-73.96125198,noise 40.83214368,-73.92728322,noise 40.81512001,-73.95870333,noise 40.82130491,-73.95420128,noise 40.81860387,-73.95362508,noise 40.81884287,-73.95415239,noise 40.83801955,-73.94070257,noise 40.63698444,-74.00442094,noise 40.74648175,-73.75889535,noise 40.6809294,-73.95906405,noise 40.79984321,-73.95245707,noise 40.65524968,-73.95296016,noise 40.79984321,-73.95245707,noise 40.68978331,-73.96518865,noise 40.68827177,-73.9522121,noise 40.81980278,-73.95231997,noise 40.76464311,-73.98972608,noise 40.73641091,-73.99355536,noise 40.83241801,-73.92705888,noise 40.72271742,-74.00444827,noise 40.8255794,-73.93857461,noise 40.83259909,-73.92694666,noise 40.77680945,-73.95253489,noise 40.67287482,-73.92390236,noise 40.69394937,-73.96359256,noise 40.72278878,-74.00459619,noise 40.6723331,-73.94649524,noise 40.72488035,-74.00261926,noise 40.67751492,-73.95912383,noise 40.68983656,-73.91469876,noise 40.74667014,-73.94783582,noise 40.67751492,-73.95912383,noise 40.81077377,-73.94852613,noise 40.67751492,-73.95912383,noise 40.84364297,-73.90675622,noise 40.67751492,-73.95912383,noise 40.79892801,-73.93831386,noise 40.71286148,-73.96578259,noise 40.64460505,-73.95210284,noise 40.67413684,-73.95380845,noise 40.83406007,-73.94295022,noise 40.82892541,-73.95039469,noise 40.83460465,-73.87487031,noise 40.67118381,-73.87624395,noise 40.59143142,-73.78958501,noise 40.81964456,-73.87613406,noise 40.79585513,-73.93552852,noise 40.7439732,-73.88509474,noise 40.79578676,-73.94676079,noise 40.75797293,-73.98553637,noise 40.63597511,-73.97814065,noise 40.71140621,-74.00557292,noise 40.72543203,-73.99677099,noise 40.67154075,-73.87635144,noise 40.70237091,-73.81209342,noise 40.72543203,-73.99677099,noise 40.72502032,-73.99713179,noise 40.72543203,-73.99677099,noise 40.7896149,-73.97360857,noise 40.71728557,-73.83510983,noise 40.81953104,-73.81753607,noise 40.6698223,-73.88136172,noise 40.8551291,-73.90617258,noise 40.70889971,-73.95472216,noise 40.72906957,-73.97830494,noise 40.72906957,-73.97830494,noise 40.67287759,-73.92394922,noise 40.7158126,-73.95891637,noise 40.64631775,-73.9519899,noise 40.57454006,-73.99088562,noise 40.86954934,-73.91634837,noise 40.79240625,-73.97341967,noise 40.80663968,-73.95373456,noise 40.71823482,-73.98931116,noise 40.72547597,-74.00214305,noise 40.63178044,-73.88490242,noise 40.69623697,-73.92188865,noise 40.64631775,-73.9519899,noise 40.69173908,-73.94174138,noise 40.70544562,-73.95181026,noise 40.80207824,-73.93698896,noise 40.59608833,-73.98128284,noise 40.72870931,-74.00024174,noise 40.68155745,-73.95766475,noise 40.755483,-73.88616134,noise 40.68230634,-73.92894289,noise 40.59522863,-73.97800635,noise 40.70279083,-73.92937189,noise 40.59508322,-73.97837368,noise 40.72293378,-73.98863937,noise 40.68230634,-73.92894289,noise 40.86361231,-73.92820688,noise 40.80135906,-73.96187955,noise 40.65524968,-73.95296016,noise 40.80682263,-73.94530707,noise 40.65972716,-73.98791847,noise 40.77161206,-73.99045429,noise 40.81337161,-73.95866829,noise 40.72522408,-73.977848,noise 40.81954484,-73.94061787,noise 40.6723331,-73.94649524,noise 40.6917582,-73.94155385,noise 40.64846321,-74.00075677,noise 40.77680945,-73.95253489,noise 40.58886785,-73.80198947,noise 40.8309032,-73.86613609,noise 40.67767695,-73.95936889,noise 40.68379317,-73.96187825,noise 40.6471319,-74.00462341,noise 40.8247718,-73.91580487,noise 40.77680945,-73.95253489,noise 40.73249706,-74.00183297,noise 40.68876043,-73.98084215,noise 40.81106833,-73.95052721,noise 40.73457653,-73.95372686,noise 40.81113144,-73.95048021,noise 40.80117228,-73.96145706,noise 40.72002981,-73.98851361,noise 40.73249706,-74.00183297,noise 40.80684278,-73.94733352,noise 40.70495019,-73.94282267,noise 40.76402013,-73.97318913,noise 40.70279789,-74.01424608,noise 40.70968754,-74.01167217,noise 40.72605395,-73.98353372,noise 40.72953107,-73.9804155,noise 40.81784549,-73.93991127,noise 40.70134269,-73.9823136,noise 40.71039614,-74.00559809,noise 40.82574216,-73.92596054,noise 40.69937868,-73.91277154,noise 40.72844754,-73.98467686,noise 40.84115439,-73.93626527,noise 40.82507829,-73.90407954,noise 40.86335845,-73.86534046,noise 40.82462131,-73.93822862,noise 40.62780041,-74.0795119,noise 40.62798956,-74.07986158,noise 40.84304645,-73.90903401,noise 40.68629884,-73.87582288,noise 40.62858503,-74.08008565,noise 40.84740192,-73.90187506,noise 40.66205702,-73.95367624,noise 40.63571613,-74.00837692,noise 40.70058459,-73.90699238,noise 40.75624515,-73.92120466,noise 40.70056808,-73.9069383,noise 40.66217506,-73.95370139,noise 40.86437703,-73.92653575,noise 40.84342648,-73.91426328,noise 40.86437703,-73.92653575,noise 40.82130491,-73.95420128,noise 40.64018175,-73.95530567,noise 40.86437703,-73.92653575,noise 40.86980158,-73.84455541,noise 40.8341984,-73.90016718,noise 40.80207824,-73.93698896,noise 40.76010264,-73.9839729,noise 40.67596498,-73.81819204,noise 40.6395296,-73.95128856,noise 40.73619707,-73.84103136,noise 40.7003584,-73.9125683,noise 40.88599088,-73.82791399,noise 40.84589512,-73.93252347,noise 40.7590692,-73.84513509,noise 40.65045904,-73.95746105,noise 40.65956345,-73.95052064,noise 40.68364723,-73.94687196,noise 40.6834941,-73.94812681,noise 40.82423254,-73.92591886,noise 40.60079418,-73.91264826,noise 40.85978272,-73.9270361,noise 40.58485012,-73.81903413,noise 40.66064331,-73.96062997,noise 40.86146392,-73.92499889,noise 40.62863721,-74.08003528,noise 40.70374839,-73.92448385,noise 40.64507599,-73.89322516,noise 40.74241107,-73.95631972,noise 40.63263335,-74.01253418,noise 40.80256169,-73.94299166,noise 40.63263335,-74.01253418,noise 40.6542813,-73.96180501,noise 40.72278878,-74.00459619,noise 40.65648477,-73.96007378,noise 40.67805575,-73.80596807,noise 40.68400462,-73.93227625,noise 40.70649924,-73.89693917,noise 40.81954484,-73.94061787,noise 40.66209289,-73.73248443,noise 40.79698653,-73.93174236,noise 40.71085754,-73.96491072,noise 40.68635711,-73.94279174,noise 40.74285084,-73.95102175,noise 40.8028942,-73.94379686,noise 40.74705161,-73.88665213,noise 40.72933786,-74.0010319,noise 40.84962104,-73.93993317,noise 40.88130921,-73.90429133,noise 40.75586845,-73.85540429,noise 40.86811354,-73.91975243,noise 40.58485012,-73.81903413,noise 40.81331489,-73.96131636,noise 40.58485012,-73.81903413,noise 40.67767695,-73.95936889,noise 40.65972716,-73.98791847,noise 40.87558474,-73.90215168,noise 40.85887711,-73.89515218,noise 40.83206595,-73.94007549,noise 40.58740438,-73.80982103,noise 40.63472252,-74.02643466,noise 40.8028942,-73.94379686,noise 40.70310821,-73.9871424,noise 40.80256169,-73.94299166,noise 40.71774725,-73.9578041,noise 40.72417851,-73.9788008,noise 40.84822967,-73.90711847,noise 40.86237169,-73.91983889,noise 40.81534395,-73.93784345,noise 40.80088245,-73.92911611,noise 40.83460465,-73.87487031,noise 40.89969498,-73.87219396,noise 40.58485012,-73.81903413,noise 40.83607719,-73.93720611,noise 40.70241156,-73.99325208,noise 40.63439491,-73.92270323,noise 40.6707705,-73.86982083,noise 40.70495019,-73.94282267,noise 40.86596553,-73.92985298,noise 40.67135029,-73.88320472,noise 40.82763977,-73.94212103,noise 40.6358055,-73.92236292,noise 40.76859504,-73.98521637,noise 40.70495019,-73.94282267,noise 40.70495019,-73.94282267,noise 40.58485012,-73.81903413,noise 40.85014363,-73.93202035,noise 40.69814607,-73.99144213,noise 40.85871394,-73.89381125,noise 40.83291625,-73.92938553,noise 40.80603558,-73.94677066,noise 40.87230054,-73.92585807,noise 40.83033484,-73.9189452,noise 40.87302289,-73.91845926,noise 40.69977847,-73.92721121,noise 40.73841163,-73.84676726,noise 40.8160255,-73.93945771,noise 40.69701248,-73.99136654,noise 40.63419461,-73.96986898,noise 40.64846321,-74.00075677,noise 40.81310186,-73.93848136,noise 40.80603558,-73.94677066,noise 40.58485012,-73.81903413,noise 40.63419461,-73.96986898,noise 40.69859629,-73.99245185,noise 40.71677946,-73.93634091,noise 40.80603558,-73.94677066,noise 40.63419461,-73.96986898,noise 40.82423693,-73.94924197,noise 40.63419461,-73.96986898,noise 40.74087343,-73.98798315,noise 40.6983848,-73.99056214,noise 40.63419461,-73.96986898,noise 40.6346061,-73.96900049,noise 40.69304841,-73.83838279,noise 40.63419461,-73.96986898,noise 40.63419461,-73.96986898,noise 40.80135906,-73.96187955,noise 40.62796489,-74.07981832,noise 40.71871013,-74.00248194,noise 40.71862779,-74.00253965,noise 40.58485012,-73.81903413,noise 40.71791417,-73.99909454,noise 40.73588925,-73.99120995,noise 40.71871013,-74.00248194,noise 40.71862779,-74.00253965,noise 40.86237169,-73.91983889,noise 40.80276299,-73.94492031,noise 40.84564168,-73.89770309,noise 40.74294904,-73.99646701,noise 40.71678366,-73.96552085,noise 40.76324872,-73.98913066,noise 40.72126921,-73.97961344,noise 40.69357091,-73.96460248,noise 40.68416542,-73.87770176,noise 40.6860405,-73.82490724,noise 40.7452427,-73.98479209,noise 40.69778102,-73.99142414,noise 40.85840057,-73.85330878,noise 40.74678784,-73.98367295,noise 40.69628785,-73.99118632,noise 40.74361057,-73.99970047,noise 40.71871013,-74.00248194,noise 40.71862779,-74.00253965,noise 40.76362248,-73.99701462,noise 40.69367772,-73.81011652,noise 40.6707705,-73.86982083,noise 40.7592336,-73.99577309,noise 40.77224291,-73.97127594,noise 40.71074018,-73.94547608,noise 40.77295114,-73.97159696,noise 40.67668957,-73.78184964,noise 40.77338229,-73.97255715,noise 40.86237169,-73.91983889,noise 40.77275348,-73.97145985,noise 40.74747049,-73.88556871,noise 40.77373606,-73.97130057,noise 40.74966676,-73.98157173,noise 40.77373606,-73.97130057,noise 40.77531361,-73.96871114,noise 40.71821607,-74.00290038,noise 40.8475146,-73.90874236,noise 40.7804436,-73.95281395,noise 40.75018266,-73.98089306,noise 40.67195343,-73.95751583,noise 40.6471319,-74.00462341,noise 40.74561869,-73.9845069,noise 40.69054036,-73.99194794,noise 40.83477457,-73.92526387,noise 40.69054036,-73.99194794,noise 40.64779609,-74.00572617,noise 40.74035281,-73.95711857,noise 40.86823802,-73.89680059,noise 40.71348388,-73.758755,noise 40.76401988,-73.92785577,noise 40.83856918,-73.94204647,noise 40.71110869,-73.95333555,noise 40.68021313,-73.82120538,noise 40.86987642,-73.92089647,noise 40.85482292,-73.91119404,noise 40.82388692,-73.9523062,noise 40.81207812,-73.94395889,noise 40.70029911,-73.94549544,noise 40.7296035,-73.98823774,noise 40.84787323,-73.91106236,noise 40.8486833,-73.91903851,noise 40.69561595,-73.78244405,noise 40.82292248,-73.92464127,noise 40.6781665,-73.96222757,noise 40.75807766,-73.8573559,noise 40.81705945,-73.95580106,noise 40.85530434,-73.92859179,noise 40.72523837,-73.89766062,noise 40.66671709,-73.89161168,noise 40.7630598,-73.99668614,noise 40.87986598,-73.87595678,noise 40.85462116,-73.92898654,noise 40.75841535,-73.80990671,noise 40.83098801,-73.91138485,noise 40.71836687,-73.94927209,noise 40.65686097,-73.92688321,noise 40.67474823,-73.73806123,noise 40.84843834,-73.91067485,noise 40.73250431,-73.9848383,noise 40.82687657,-73.94750556,noise 40.82700844,-73.94776923,noise 40.83812925,-73.88864003,noise 40.72349367,-73.98825325,noise 40.88781793,-73.83100873,noise 40.82694252,-73.94766449,noise 40.75927139,-73.96221046,noise 40.75287136,-73.8742731,noise 40.72349367,-73.98825325,noise 40.85495433,-73.88311366,noise 40.83222845,-73.91858876,noise 40.63572999,-73.8932257,noise 40.64303009,-73.96988301,noise 40.80927533,-73.943069,noise 40.60502681,-74.00486539,noise 40.71977238,-73.99932539,noise 40.54409609,-74.14115469,noise 40.80149159,-73.95634596,noise 40.63949623,-73.93391764,noise 40.79893717,-73.94560249,noise 40.67915413,-73.98342993,noise 40.67915413,-73.98342993,noise 40.83054079,-73.86604286,noise 40.57799369,-73.9655025,noise 40.71977238,-73.99932539,noise 40.65853217,-73.85434299,noise 40.7505431,-73.98721626,noise 40.84221221,-73.92038362,noise 40.69476665,-73.7469692,noise 40.84572834,-73.92061073,noise 40.84572834,-73.92061073,noise 40.67508646,-73.96102521,noise 40.62868311,-73.93153622,noise 40.88328234,-73.83771421,noise 40.67915413,-73.98342993,noise 40.76058323,-73.98592204,noise 40.68376718,-73.96658354,noise 40.68155745,-73.95766475,noise 40.68025683,-73.84166586,noise 40.69638477,-73.97738877,noise 40.7180295,-73.95657378,noise 40.84768671,-73.91122164,noise 40.80185697,-73.95723788,noise 40.6710402,-73.95968656,noise 40.67358845,-73.96295477,noise 40.68376718,-73.96658354,noise 40.77603325,-73.91523464,noise 40.70240769,-73.92259552,noise 40.82664391,-73.94305775,noise 40.68230634,-73.92894289,noise 40.83083941,-73.91450354,noise 40.72349367,-73.98825325,noise 40.74203508,-73.99834359,noise 40.82782361,-73.94199802,noise 40.88314154,-73.83328447,noise 40.65972716,-73.98791847,noise 40.82127913,-73.92576678,noise 40.77603325,-73.91523464,noise 40.72349367,-73.98825325,noise 40.80103445,-73.95251762,noise 40.79365992,-73.97066719,noise 40.75045253,-73.98729207,noise 40.82230077,-73.87299296,noise 40.7590692,-73.84513509,noise 40.67796305,-73.96121461,noise 40.6975713,-73.90756999,noise 40.80135906,-73.96187955,noise 40.626026,-74.17672214,noise 40.51478878,-74.24842226,noise 40.80072787,-73.95458024,noise 40.74736158,-73.88645672,noise 40.80185697,-73.95723788,noise 40.63679028,-73.89711529,noise 40.74985425,-73.98793822,noise 40.67085414,-73.98491359,noise 40.80149159,-73.95634596,noise 40.67775273,-73.99811085,noise 40.83685217,-73.86715407,noise 40.86954934,-73.91634837,noise 40.88314154,-73.83328447,noise 40.83685217,-73.86715407,noise 40.60804776,-73.98353761,noise 40.87802224,-73.90240484,noise 40.80279815,-73.95654015,noise 40.51478878,-74.24842226,noise 40.77644949,-73.90032235,noise 40.83685217,-73.86715407,noise 40.72388232,-73.98015019,noise 40.70128467,-73.91426936,noise 40.68372857,-73.965967,noise 40.76362248,-73.99701462,noise 40.68405011,-73.82105808,noise 40.69506976,-73.96528325,noise 40.70701054,-73.94652151,noise 40.72071262,-73.98327529,noise 40.84614723,-73.90471782,noise 40.82002534,-73.92662445,noise 40.76730974,-73.98014086,noise 40.83435759,-73.9255968,noise 40.83859352,-73.89493117,noise 40.66807588,-73.93564843,noise 40.68584123,-73.97327465,noise 40.68326742,-73.96586628,noise 40.83685217,-73.86715407,noise 40.68609115,-73.97391276,noise 40.65164646,-73.93232352,noise 40.84417537,-73.91745371,noise 40.66756587,-73.96131438,noise 40.71894075,-73.95653712,noise 40.73007267,-73.98658516,noise 40.85474477,-73.90277517,noise 40.72802505,-73.98629693,noise 40.69964253,-73.82600754,noise 40.65023078,-73.96421825,noise 40.70423268,-73.92635157,noise 40.84092082,-73.88602959,noise 40.80077953,-73.95334854,noise 40.65424317,-73.94848473,noise 40.73748845,-73.88345324,noise 40.82420408,-73.89021339,noise 40.85575359,-73.93165674,noise 40.87289918,-73.918181,noise 40.67413684,-73.95380845,noise 40.67915413,-73.98342993,noise 40.74075011,-73.92390783,noise 40.671225,-73.87625469,noise 40.69863509,-73.9131007,noise 40.83045769,-73.94034796,noise 40.67507547,-73.96098196,noise 40.82114424,-73.95752175,noise 40.8130014,-73.94615095,noise 40.77596729,-73.91512641,noise 40.69093915,-73.90659836,noise 40.6710101,-73.92238322,noise 40.75286058,-73.87445358,noise 40.85592711,-73.92813203,noise 40.63527616,-73.90802377,noise 40.68376692,-73.96567854,noise 40.69742251,-73.93479065,noise 40.68333274,-73.95611324,noise 40.68349251,-73.96592025,noise 40.75287136,-73.8742731,noise 40.73595507,-73.99047744,noise 40.83749389,-73.94331951,noise 40.80322395,-73.94459845,noise 40.65064281,-73.96526313,noise 40.71909137,-73.99149355,noise 40.68723335,-73.95690033,noise 40.80923686,-73.94298233,noise 40.66887316,-73.9492052,noise 40.69357091,-73.96460248,noise 40.8302701,-73.94392189,noise 40.67915413,-73.98342993,noise 40.72532531,-73.97621002,noise 40.76742353,-73.9897798,noise 40.59178345,-73.9757247,noise 40.80266928,-73.96498152,noise 40.64590981,-74.01316009,noise 40.83166292,-73.91100091,noise 40.83685217,-73.86715407,noise 40.6368429,-73.93075319,noise 40.63109711,-73.92919557,noise 40.82700844,-73.94776923,noise 40.66637963,-73.95264952,noise 40.87982338,-73.8672671,noise 40.77090216,-73.7352894,noise 40.54195147,-74.17742807,noise 40.87172576,-73.86424602,noise 40.85650354,-73.93276214,noise 40.82470338,-73.85519329,noise 40.8563694,-73.89027597,noise 40.76516441,-73.9877369,noise 40.65183313,-73.9235912,noise 40.60410754,-73.93872795,noise 40.85212858,-73.93781992,noise 40.61206509,-74.13714924,noise 40.69280877,-73.91059486,noise 40.68276282,-73.93500689,noise 40.67915413,-73.98342993,noise 40.69343406,-73.96590435,noise 40.75483922,-73.79719367,noise 40.69357091,-73.96460248,noise 40.87536698,-73.88618028,noise 40.69357091,-73.96460248,noise 40.64520727,-74.01199962,noise 40.85024051,-73.89624656,noise 40.80256169,-73.94299166,noise 40.63527616,-73.90802377,noise 40.68370943,-73.96619417,noise 40.73588925,-73.99120995,noise 40.8320461,-73.88774319,noise 40.64468365,-74.09731151,noise 40.67915413,-73.98342993,noise 40.84961622,-73.90770932,noise 40.84295677,-73.93466968,noise 40.6718281,-73.77449704,noise 40.85135053,-73.78858928,noise 40.71279601,-73.95866573,noise 40.83014359,-73.92857182,noise 40.67133677,-73.88341022,noise 40.78650206,-73.94835351,noise 40.78580504,-73.94284712,noise 40.84766965,-73.90364937,noise 40.67319947,-73.97632234,noise 40.71728083,-73.95832025,noise 40.67376876,-73.77595052,noise 40.80186645,-73.94135242,noise 40.68594175,-73.95292409,noise 40.80770187,-73.85247771,noise 40.85459367,-73.9289215,noise 40.86708872,-73.83974227,noise 40.66940234,-73.94219707,noise 40.51358865,-74.25123739,noise 40.81941062,-73.91115459,noise 40.66383723,-73.7685658,noise 40.6857804,-73.95439171,noise 40.83213113,-73.88769246,noise 40.82880488,-73.89385175,noise 40.82763977,-73.94212103,noise 40.73619707,-73.84103136,noise 40.70889971,-73.95472216,noise 40.78106247,-73.94941932,noise 40.72428492,-73.97559346,noise 40.69184204,-73.95748513,noise 40.87568317,-73.90837826,noise 40.67050431,-73.94487092,noise 40.80624132,-73.95281733,noise 40.6493772,-74.00228836,noise 40.55867433,-74.13145066,noise 40.68776083,-73.8337261,noise 40.6493772,-74.00228836,noise 40.85232122,-73.93877402,noise 40.66833709,-73.78915855,noise 40.71795041,-73.95792662,noise 40.81331606,-73.90951177,noise 40.83777968,-73.94402036,noise 40.83232235,-73.92769498,noise 40.83477457,-73.92526387,noise 40.65151363,-73.93520311,noise 40.67656143,-73.77657926,noise 40.79734154,-73.96425114,noise 40.84999894,-73.90249656,noise 40.67338669,-73.77567062,noise 40.68588517,-73.97337559,noise 40.58537563,-73.8096216,noise 40.6827229,-73.9483149,noise 40.71285071,-73.93456273,noise 40.75329748,-73.93466377,noise 40.68835816,-73.99057077,noise 40.76601126,-73.9399472,noise 40.68370669,-73.96620498,noise 40.81666203,-73.93899108,noise 40.64022874,-73.95617762,noise 40.67147053,-73.93953125,noise 40.86485529,-73.90491517,noise 40.71239152,-74.00684271,noise 40.8320461,-73.88774319,noise 40.78869209,-73.94776317,noise 40.71871013,-74.00248194,noise 40.76199425,-73.94247047,noise 40.81803509,-73.94032296,noise 40.76306445,-73.88387777,noise 40.78717249,-73.94998163,noise 40.83729554,-73.93665565,noise 40.81800138,-73.9131905,noise 40.68584123,-73.97327465,noise 40.7255613,-73.87964258,noise 40.83053832,-73.91946891,noise 40.8160255,-73.93945771,noise 40.70531579,-73.77102227,noise 40.81784549,-73.93991127,noise 40.7453522,-73.94683719,noise 40.83819186,-73.94501385,noise 40.67319947,-73.97632234,noise 40.71262291,-73.95816445,noise 40.7255613,-73.87964258,noise 40.64643727,-73.94909255,noise 40.67482828,-73.92686712,noise 40.83811767,-73.94483683,noise 40.81847205,-73.94139198,noise 40.83811767,-73.94483683,noise 40.72532531,-73.97621002,noise 40.68598954,-73.97366401,noise 40.71632593,-73.770079,noise 40.65173314,-73.93038096,noise 40.68784756,-73.98971988,noise 40.64846321,-74.00075677,noise 40.7655311,-73.94027254,noise 40.72404318,-74.00331553,noise 40.79733087,-73.95027738,noise 40.70932835,-73.95588692,noise 40.79376833,-73.9341076,noise 40.68202229,-73.98255308,noise 40.79434552,-73.93551193,noise 40.68448095,-73.86069709,noise 40.79736109,-73.95034959,noise 40.68598954,-73.97366401,noise 40.79469732,-73.93636031,noise 40.823746,-73.94410082,noise 40.70717992,-73.89692008,noise 40.8251992,-73.91475287,noise 40.83811767,-73.94483683,noise 40.70932835,-73.95588692,noise 40.64060016,-74.08228364,noise 40.65168983,-73.93139008,noise 40.62116256,-74.08087643,noise 40.81261065,-73.95682636,noise 40.6493772,-74.00228836,noise 40.79376833,-73.9341076,noise 40.71879472,-73.98901165,noise 40.85855469,-73.92960413,noise 40.64590981,-74.01316009,noise 40.7440955,-73.98561878,noise 40.83795384,-73.84592362,noise 40.64256506,-74.0865236,noise 40.71085754,-73.96491072,noise 40.65456868,-73.93068794,noise 40.65533416,-73.95151488,noise 40.65983318,-73.89759876,noise 40.83811767,-73.94483683,noise 40.86456039,-73.92154994,noise 40.82054673,-73.91450954,noise 40.823746,-73.94410082,noise 40.75737639,-73.90367891,noise 40.70381897,-73.94207345,noise 40.77395281,-73.9709647,noise 40.77253109,-73.97117834,noise 40.75647412,-73.94726506,noise 40.77686301,-73.96399856,noise 40.71485869,-73.94262659,noise 40.61698544,-74.02749021,noise 40.71840271,-74.00274166,noise 40.81377819,-73.9596868,noise 40.67288741,-73.95963137,noise 40.78580504,-73.94284712,noise 40.77391665,-73.96911978,noise 40.77582768,-73.97182681,noise 40.87466152,-73.91108799,noise 40.87367193,-73.87922985,noise 40.71446255,-73.98165,noise 40.68954331,-73.82342323,noise 40.74294904,-73.99646701,noise 40.72391971,-74.00063857,noise 40.71285071,-73.93456273,noise 40.84433921,-73.9380296,noise 40.72342524,-73.99027359,noise 40.68598168,-73.93862748,noise 40.66919653,-73.96211009,noise 40.71258172,-73.95810676,noise 40.67538032,-73.90819559,noise 40.6655658,-73.99432277,noise 40.6721416,-73.76119008,noise 40.65868133,-73.91952861,noise 40.67921811,-73.96334823,noise 40.81543189,-73.93803484,noise 40.62794296,-74.07977506,noise 40.69054316,-73.82391459,noise 40.68631085,-73.97443911,noise 40.68535855,-73.93851267,noise 40.7177714,-74.00327192,noise 40.79861514,-73.94374268,noise 40.74705161,-73.88665213,noise 40.78680803,-73.94522962,noise 40.79775086,-73.9443863,noise 40.6861438,-73.96539247,noise 40.68204426,-73.98261437,noise 40.71821607,-74.00290038,noise 40.79896085,-73.94348956,noise 40.78229519,-73.96512584,noise 40.7144945,-73.83535842,noise 40.8097918,-73.94402584,noise 40.78640213,-73.94035132,noise 40.77473537,-73.98817561,noise 40.67062614,-73.94713467,noise 40.80766707,-73.94927989,noise 40.79358813,-73.93577991,noise 40.6609399,-73.89824945,noise 40.80641492,-73.94226231,noise 40.79688947,-73.93477267,noise 40.63597511,-73.97814065,noise 40.71821607,-74.00290038,noise 40.66086081,-73.89881906,noise 40.73005401,-73.9926287,noise 40.73291933,-73.98998354,noise 40.71577269,-74.01152173,noise 40.65173314,-73.93038096,noise 40.71332415,-73.76379121,noise 40.67442566,-73.96312014,noise 40.82609299,-73.95069671,noise 40.67782628,-73.798614,noise 40.75773332,-73.94589242,noise 40.82194768,-73.89288355,noise 40.76001757,-73.9840379,noise 40.86045296,-73.92787769,noise 40.79994581,-73.93254116,noise 40.83215401,-73.93541385,noise 40.82976927,-73.87562016,noise 40.82976927,-73.87562016,noise 40.85382231,-73.88741726,noise 40.81566293,-73.90623545,noise 40.83215401,-73.93541385,noise 40.84235725,-73.91222265,noise 40.82976927,-73.87562016,noise 40.74736158,-73.88645672,noise 40.75274321,-73.87255531,noise 40.85978272,-73.9270361,noise 40.85065431,-73.90504752,noise 40.58073897,-73.83395295,noise 40.64361353,-73.92949939,noise 40.83045842,-73.94749912,noise 40.88589065,-73.86154085,noise 40.75624515,-73.92120466,noise 40.75826062,-73.8419172,noise 40.824332,-73.95337539,noise 40.70383481,-73.93097214,noise 40.67063975,-73.95320165,noise 40.63447503,-73.88411234,noise 40.86437703,-73.92653575,noise 40.82772833,-73.9495067,noise 40.82000567,-73.95887372,noise 40.68515224,-73.96313584,noise 40.67697761,-73.96103853,noise 40.67915413,-73.98342993,noise 40.69959035,-73.94423377,noise 40.65656389,-73.95870778,noise 40.72844754,-73.98467686,noise 40.67315715,-73.79846948,noise 40.6395296,-73.95128856,noise 40.81383011,-73.95192686,noise 40.68947714,-73.96958077,noise 40.82029573,-73.94377494,noise 40.72349367,-73.98825325,noise 40.63416265,-74.00735711,noise 40.80923226,-73.92531784,noise 40.82574197,-73.84960852,noise 40.83800924,-73.92746112,noise 40.72349367,-73.98825325,noise 40.70427033,-73.92514328,noise 40.62795936,-73.94321286,noise 40.68413952,-73.94902411,noise 40.81903204,-73.91140077,noise 40.74203508,-73.99834359,noise 40.6682018,-73.95885197,noise 40.82835694,-73.88198241,noise 40.58966104,-74.06730402,noise 40.68935074,-73.81613264,noise 40.85237109,-73.9346279,noise 40.75276515,-73.87253722,noise 40.63520686,-74.02028461,noise 40.64018175,-73.95530567,noise 40.68272042,-73.96329223,noise 40.755483,-73.88616134,noise 40.76330097,-73.92820671,noise 40.86392257,-73.85965238,noise 40.84361298,-73.94013015,noise 40.64405434,-74.01312369,noise 40.59383366,-73.7617402,noise 40.79829144,-73.93374556,noise 40.70383481,-73.93097214,noise 40.82130491,-73.95420128,noise 40.82055677,-73.94437808,noise 40.64998168,-73.83758618,noise 40.7525149,-73.85583747,noise 40.66584366,-73.95088004,noise 40.51770136,-74.24054207,noise 40.6869965,-73.93724194,noise 40.87211558,-73.91627644,noise 40.67915413,-73.98342993,noise 40.62863721,-74.08003528,noise 40.70889971,-73.95472216,noise 40.62986376,-74.02845743,noise 40.58485012,-73.81903413,noise 40.85583845,-73.8834266,noise 40.63367687,-74.00656803,noise 40.79698653,-73.93174236,noise 40.6958449,-73.91113173,noise 40.84345382,-73.9141259,noise 40.72320273,-73.98827856,noise 40.73250431,-73.9848383,noise 40.69093915,-73.90659836,noise 40.81188374,-73.90659842,noise 40.77632971,-73.90147431,noise 40.83777968,-73.94402036,noise 40.67344823,-73.96224466,noise 40.75826062,-73.8419172,noise 40.69515464,-73.84508882,noise 40.86019986,-73.92694526,noise 40.85550894,-73.93104608,noise 40.76473551,-73.98221735,noise 40.74705161,-73.88665213,noise 40.70889971,-73.95472216,noise 40.59034214,-74.06662421,noise 40.642134,-73.92935321,noise 40.62863721,-74.08003528,noise 40.70574915,-73.92015708,noise 40.67915413,-73.98342993,noise 40.70813583,-73.95265232,noise 40.81132351,-73.95034279,noise 40.82574216,-73.92596054,noise 40.86275012,-73.90493264,noise 40.71636404,-73.96663934,noise 40.71132564,-73.94724307,noise 40.68755779,-73.95840373,noise 40.84361298,-73.94013015,noise 40.58320387,-73.81770293,noise 40.7691197,-73.95503863,noise 40.74705161,-73.88665213,noise 40.82574216,-73.92596054,noise 40.73141011,-73.99697276,noise 40.67695838,-73.96099167,noise 40.73088313,-73.99759338,noise 40.69552498,-73.92435613,noise 40.86267932,-73.90903969,noise 40.86426209,-73.90787338,noise 40.6792069,-73.87633722,noise 40.74306706,-73.99640565,noise 40.70796259,-73.75541696,noise 40.58832835,-73.80430615,noise 40.78876351,-73.94788951,noise 40.74306706,-73.99640565,noise 40.73908435,-74.00545255,noise 40.86414834,-73.92951867,noise 40.81942531,-73.95556464,noise 40.8068895,-73.94744908,noise 40.7508539,-74.00389072,noise 40.78867286,-73.94771624,noise 40.78867286,-73.94771624,noise 40.5811842,-73.82508853,noise 40.78867286,-73.94771624,noise 40.82837372,-73.8240774,noise 40.84361298,-73.94013015,noise 40.78869209,-73.94776317,noise 40.6631617,-73.95017554,noise 40.62701746,-73.92775529,noise 40.78867286,-73.94771624,noise 40.83411377,-73.93548061,noise 40.73075649,-73.85307382,noise 40.6631617,-73.95017554,noise 40.74985425,-73.98793822,noise 40.72532531,-73.97621002,noise 40.74985425,-73.98793822,noise 40.74985425,-73.98793822,noise 40.8627616,-73.90554722,noise 40.65257008,-73.95131147,noise 40.74985425,-73.98793822,noise 40.70687392,-73.94787057,noise 40.64269519,-73.96977506,noise 40.8759857,-73.85103891,noise 40.74985425,-73.98793822,noise 40.85607396,-73.93039842,noise 40.84576469,-73.9102917,noise 40.811642,-73.95059181,noise 40.70685211,-73.9481952,noise 40.67932075,-73.95845934,noise 40.71074018,-73.94547608,noise 40.70495019,-73.94282267,noise 40.65723141,-73.96024273,noise 40.68363488,-73.86472629,noise 40.81733899,-73.90506254,noise 40.82846641,-73.89290197,noise 40.82653035,-73.94666032,noise 40.8089051,-73.93833713,noise 40.71426481,-73.980925,noise 40.86210781,-73.91928608,noise 40.86277857,-73.90615818,noise 40.63860603,-73.9482662,noise 40.82571947,-73.90953103,noise 40.83354449,-73.8963015,noise 40.82465432,-73.93835867,noise 40.82837372,-73.8240774,noise 40.83078152,-73.88850056,noise 40.63860603,-73.9482662,noise 40.89081384,-73.86319071,noise 40.84653186,-73.94261061,noise 40.67700788,-73.96126203,noise 40.73249706,-74.00183297,noise 40.89111283,-73.86303819,noise 40.82565549,-73.88135127,noise 40.80927626,-73.944998,noise 40.7984576,-73.96103244,noise 40.86237169,-73.91983889,noise 40.86237169,-73.91983889,noise 40.69928596,-73.90654699,noise 40.76331469,-73.92819586,noise 40.72067335,-73.97823192,noise 40.83306527,-73.93544549,noise 40.71992609,-74.0002886,noise 40.82410397,-73.9528408,noise 40.85212858,-73.93781992,noise 40.70386264,-73.94157569,noise 40.87575492,-73.85086586,noise 40.6936969,-73.80036912,noise 40.77860733,-73.98162149,noise 40.8381204,-73.94479707,noise 40.74645161,-73.97588128,noise 40.71821607,-74.00290038,noise 40.71871013,-74.00248194,noise 40.71802667,-74.00304467,noise 40.72543203,-73.99677099,noise 40.71871013,-74.00248194,noise 40.72543203,-73.99677099,noise 40.71871013,-74.00248194,noise 40.84492733,-73.9394314,noise 40.72435324,-74.00563894,noise 40.72543203,-73.99677099,noise 40.71871013,-74.00248194,noise 40.75105577,-73.98266494,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.64882,-74.00286853,noise 40.71871013,-74.00248194,noise 40.84025602,-73.86513424,noise 40.66172169,-73.91452566,noise 40.7174035,-73.95605473,noise 40.72114459,-73.99370114,noise 40.83215401,-73.93541385,noise 40.82921429,-73.88028618,noise 40.79856266,-73.96336198,noise 40.86980158,-73.84455541,noise 40.71010746,-73.84870075,noise 40.71830069,-73.98926425,noise 40.80135906,-73.96187955,noise 40.83215401,-73.93541385,noise 40.86633485,-73.92788216,noise 40.64018175,-73.95530567,noise 40.82057145,-73.94640134,noise 40.72579598,-73.98373582,noise 40.81726755,-73.9422565,noise 40.78417568,-73.97758645,noise 40.78417568,-73.97758645,noise 40.72961448,-73.98825939,noise 40.8238539,-73.94033581,noise 40.73434974,-74.00300933,noise 40.8088405,-73.92228029,noise 40.82294018,-73.90411152,noise 40.72349367,-73.98825325,noise 40.83671019,-73.90384955,noise 40.76010264,-73.9839729,noise 40.80141125,-73.96200232,noise 40.7097167,-73.95235904,noise 40.7219211,-73.99003931,noise 40.70583161,-73.94352523,noise 40.6700277,-73.93615122,noise 40.73250431,-73.9848383,noise 40.77850171,-73.95632493,noise 40.66217506,-73.95370139,noise 40.76346859,-73.99281632,noise 40.76227854,-73.92601303,noise 40.83007156,-73.94780657,noise 40.82353511,-73.93957372,noise 40.75624515,-73.92120466,noise 40.74196095,-73.99721407,noise 40.8235461,-73.93959178,noise 40.54420877,-74.14103979,noise 40.71010746,-73.84870075,noise 40.76362248,-73.99701462,noise 40.72239575,-73.98801534,noise 40.68272042,-73.96329223,noise 40.81313558,-73.95164197,noise 40.74216958,-74.00077588,noise 40.68870464,-73.95714818,noise 40.68230634,-73.92894289,noise 40.75614579,-73.92879555,noise 40.81006558,-73.95496762,noise 40.68230634,-73.92894289,noise 40.73029441,-73.98223737,noise 40.68230634,-73.92894289,noise 40.88289209,-73.87993276,noise 40.85607396,-73.93039842,noise 40.6395296,-73.95128856,noise 40.68230634,-73.92894289,noise 40.51478878,-74.24842226,noise 40.70872939,-73.77898909,noise 40.70904152,-73.94062614,noise 40.82911393,-73.91964047,noise 40.75667858,-73.92086486,noise 40.68272042,-73.96329223,noise 40.50967447,-74.24747184,noise 40.68151921,-73.88007901,noise 40.67287759,-73.92394922,noise 40.83227753,-73.93542096,noise 40.82410397,-73.9528408,noise 40.85381811,-73.93087793,noise 40.75286058,-73.87445358,noise 40.78131764,-73.94922052,noise 40.82130491,-73.95420128,noise 40.76045412,-73.91527612,noise 40.56679913,-73.88674563,noise 40.77090216,-73.7352894,noise 40.69215261,-73.7659469,noise 40.87223036,-73.88958088,noise 40.72049057,-73.98532083,noise 40.86404894,-73.90234219,noise 40.81331489,-73.96131636,noise 40.51358865,-74.25123739,noise 40.69174454,-73.94168007,noise 40.77090216,-73.7352894,noise 40.86720969,-73.92253385,noise 40.74985425,-73.98793822,noise 40.80264394,-73.95522548,noise 40.68259159,-73.99326851,noise 40.74985425,-73.98793822,noise 40.68311048,-73.76021336,noise 40.66772093,-73.95738516,noise 40.71963414,-73.98477629,noise 40.69173908,-73.94174138,noise 40.74978836,-73.9877686,noise 40.74978836,-73.9877686,noise 40.76007077,-73.99654912,noise 40.84649962,-73.86001444,noise 40.7077303,-74.01370611,noise 40.77298743,-73.91638663,noise 40.67771564,-73.96012236,noise 40.71963414,-73.98477629,noise 40.72802505,-73.98629693,noise 40.8670152,-73.92310895,noise 40.72303579,-73.99490954,noise 40.68005978,-73.86353655,noise 40.85899327,-73.90572248,noise 40.71777332,-74.014206,noise 40.72259389,-73.99509356,noise 40.71777332,-74.014206,noise 40.67767695,-73.95936889,noise 40.8564861,-73.90756242,noise 40.83053832,-73.91946891,noise 40.86797939,-73.92024792,noise 40.57517193,-73.97585673,noise 40.62794296,-74.07977506,noise 40.82410397,-73.9528408,noise 40.89111283,-73.86303819,noise 40.69448451,-73.96328935,noise 40.80549657,-73.96572052,noise 40.80122686,-73.95321097,noise 40.80952516,-73.93788139,noise 40.85474477,-73.90277517,noise 40.80570748,-73.95632514,noise 40.88042713,-73.87711293,noise 40.68468318,-74.00531469,noise 40.75170273,-73.88540624,noise 40.82671692,-73.94651202,noise 40.70411868,-73.92409391,noise 40.88049916,-73.8830362,noise 40.71871013,-74.00248194,noise 40.63597511,-73.97814065,noise 40.82813577,-73.87525827,noise 40.89931429,-73.85653553,noise 40.88028472,-73.88268581,noise 40.65682931,-73.90939606,noise 40.80122686,-73.95321097,noise 40.82802319,-73.8752115,noise 40.70974831,-74.00679194,noise 40.80897314,-73.94832523,noise 40.81540252,-73.90332759,noise 40.69795036,-73.91141743,noise 40.81542722,-73.90332033,noise 40.81548486,-73.90332024,noise 40.82837372,-73.8240774,noise 40.76963871,-73.99189144,noise 40.80957644,-73.95351577,noise 40.85307197,-73.904538,noise 40.70724156,-73.95392978,noise 40.88945854,-73.8982722,noise 40.71879472,-73.98901165,noise 40.75566577,-73.92496642,noise 40.72278878,-74.00459619,noise 40.72349367,-73.98825325,noise 40.71305306,-73.99411672,noise 40.51478878,-74.24842226,noise 40.75548198,-73.92513266,noise 40.71884964,-73.98921727,noise 40.79560464,-73.96596037,noise 40.6716626,-73.95091902,noise 40.64018175,-73.95530567,noise 40.680298,-73.93030787,noise 40.75566577,-73.92496642,noise 40.86019986,-73.92694526,noise 40.76010264,-73.9839729,noise 40.78536042,-73.97298193,noise 40.72315283,-73.98412971,noise 40.6870848,-73.95601341,noise 40.68555676,-73.84149102,noise 40.75508491,-73.92655522,noise 40.57454006,-73.99088562,noise 40.64468364,-73.9990631,noise 40.62084753,-74.02677137,noise 40.80597242,-73.95302703,noise 40.7190885,-73.99001087,noise 40.75566577,-73.92496642,noise 40.71688453,-73.99085533,noise 40.7190885,-73.99001087,noise 40.6917582,-73.94155385,noise 40.61655033,-73.93020153,noise 40.76464311,-73.98972608,noise 40.80450501,-73.95559267,noise 40.68137206,-73.9317309,noise 40.6716626,-73.95091902,noise 40.75612923,-73.994297,noise 40.83856918,-73.94204647,noise 40.67522805,-73.89097056,noise 40.80275151,-73.95659798,noise 40.69173908,-73.94174138,noise 40.67085414,-73.98491359,noise 40.51478878,-74.24842226,noise 40.70449453,-74.0107732,noise 40.70449453,-74.0107732,noise 40.65524968,-73.95296016,noise 40.6813378,-73.97666197,noise 40.75562188,-73.92500256,noise 40.69173908,-73.94174138,noise 40.68883365,-73.95716613,noise 40.63559076,-73.97774084,noise 40.72579798,-73.97916828,noise 40.82318058,-73.93869244,noise 40.83353705,-73.90031994,noise 40.83777968,-73.94402036,noise 40.68555676,-73.84149102,noise 40.72979348,-73.99884181,noise 40.66294637,-73.95378376,noise 40.67775273,-73.99811085,noise 40.70964128,-74.0066188,noise 40.83227753,-73.93542096,noise 40.72231555,-73.98321356,noise 40.74227338,-73.98926761,noise 40.7493029,-74.00806278,noise 40.77303423,-73.95642599,noise 40.77680945,-73.95253489,noise 40.8221488,-73.94456825,noise 40.72933786,-74.0010319,noise 40.85482292,-73.91119404,noise 40.85491622,-73.9360388,noise 40.80135906,-73.96187955,noise 40.71992609,-74.0002886,noise 40.71992609,-74.0002886,noise 40.80110856,-73.95252118,noise 40.73249706,-74.00183297,noise 40.67384945,-73.79570592,noise 40.80094422,-73.95336287,noise 40.8089051,-73.93833713,noise 40.71909124,-73.95529965,noise 40.71098985,-73.95837107,noise 40.67734203,-73.95919604,noise 40.83029222,-73.92079899,noise 40.85644698,-73.8910386,noise 40.72275134,-73.97937127,noise 40.67998288,-73.86349705,noise 40.80570748,-73.95632514,noise 40.82410397,-73.9528408,noise 40.76121189,-73.98690016,noise 40.72953107,-73.9804155,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.72508894,-73.99704881,noise 40.72543203,-73.99677099,noise 40.68636624,-73.81384763,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.77161206,-73.99045429,noise 40.77822841,-73.98070809,noise 40.72401301,-73.99798687,noise 40.77631597,-73.90145267,noise 40.66172169,-73.91452566,noise 40.74102858,-73.92167375,noise 40.764709,-73.98991378,noise 40.74910473,-73.98616989,noise 40.72349367,-73.98825325,noise 40.86437703,-73.92653575,noise 40.75455557,-73.91149736,noise 40.8645253,-73.92661874,noise 40.72953107,-73.9804155,noise 40.73656205,-74.00109335,noise 40.71810942,-73.95742869,noise 40.83215401,-73.93541385,noise 40.69822499,-73.80633492,noise 40.75612923,-73.994297,noise 40.72349367,-73.98825325,noise 40.71346027,-73.95874828,noise 40.80203814,-73.96548391,noise 40.71160986,-73.95753384,noise 40.81006558,-73.95496762,noise 40.64018175,-73.95530567,noise 40.69402875,-73.96288572,noise 40.70646226,-73.9194024,noise 40.84541307,-73.92115326,noise 40.72473066,-73.98145235,noise 40.75612923,-73.994297,noise 40.81980278,-73.95231997,noise 40.65725379,-73.98512931,noise 40.83073495,-73.92202706,noise 40.72802505,-73.98629693,noise 40.65680129,-73.92800416,noise 40.65524968,-73.95296016,noise 40.78869209,-73.94776317,noise 40.74928842,-73.98454214,noise 40.6917582,-73.94155385,noise 40.89931429,-73.85653553,noise 40.74227338,-73.98926761,noise 40.85486828,-73.89344506,noise 40.82975348,-73.94848977,noise 40.8089051,-73.93833713,noise 40.68497424,-73.92890039,noise 40.80203538,-73.96543335,noise 40.67751492,-73.95912383,noise 40.85640862,-73.93006911,noise 40.80077953,-73.95334854,noise 40.7170331,-73.95643735,noise 40.70187929,-73.82586105,noise 40.80921239,-73.93810926,noise 40.72605395,-73.98353372,noise 40.73996517,-73.99072225,noise 40.68636624,-73.81384763,noise 40.6707623,-73.93436971,noise 40.85468036,-73.88636027,noise 40.72652715,-73.99584371,noise 40.73723136,-73.99028961,noise 40.57760753,-73.94629034,noise 40.71173825,-74.00698693,noise 40.68636624,-73.81384763,noise 40.80116229,-73.94976524,noise 40.80897314,-73.94832523,noise 40.80934133,-73.94921721,noise 40.71302408,-73.76335941,noise 40.68742553,-73.86717773,noise 40.66309801,-73.76274715,noise 40.66309801,-73.76274715,noise 40.81515889,-73.95999665,noise 40.83306527,-73.93544549,noise 40.83320462,-73.94480477,noise 40.69388252,-73.93615001,noise 40.65524968,-73.95296016,noise 40.73524167,-74.00606204,noise 40.85237109,-73.9346279,noise 40.69332462,-73.96710163,noise 40.8505607,-73.8837431,noise 40.82469135,-73.92660486,noise 40.70530067,-73.94113802,noise 40.86191188,-73.90694752,noise 40.66353704,-73.94276445,noise 40.7097167,-73.95235904,noise 40.77001148,-73.95437735,noise 40.80238678,-73.95056979,noise 40.80238678,-73.95056979,noise 40.72072702,-73.98888867,noise 40.79946159,-73.95936318,noise 40.66002846,-73.96060149,noise 40.86237169,-73.91983889,noise 40.68155745,-73.95766475,noise 40.82524801,-73.92579126,noise 40.69050936,-73.97031952,noise 40.86895885,-73.91583208,noise 40.76010264,-73.9839729,noise 40.6917582,-73.94155385,noise 40.78666696,-73.94883727,noise 40.85059431,-73.90892609,noise 40.86620047,-73.92805946,noise 40.77680945,-73.95253489,noise 40.86637626,-73.92825812,noise 40.67771564,-73.96012236,noise 40.73249706,-74.00183297,noise 40.63965421,-73.95393681,noise 40.83043384,-73.91920887,noise 40.80078776,-73.95334131,noise 40.73249706,-74.00183297,noise 40.73243667,-74.00193039,noise 40.61121824,-74.13836486,noise 40.71802667,-74.00304467,noise 40.6707623,-73.93436971,noise 40.66254846,-73.94756639,noise 40.80565025,-73.96563375,noise 40.75562797,-73.97933221,noise 40.71173825,-74.00698693,noise 40.84822967,-73.90711847,noise 40.75562797,-73.97933221,noise 40.86813967,-73.93041833,noise 40.68202988,-73.93486339,noise 40.80934133,-73.94921721,noise 40.75797293,-73.98553637,noise 40.7118254,-73.87349203,noise 40.67135029,-73.88320472,noise 40.7174035,-73.95605473,noise 40.59915804,-73.9892546,noise 40.63597511,-73.97814065,noise 40.63597511,-73.97814065,noise 40.71446634,-73.90213931,noise 40.69871474,-73.92919228,noise 40.8642891,-73.89158613,noise 40.86437703,-73.92653575,noise 40.79578676,-73.94676079,noise 40.69995618,-73.93052535,noise 40.83352824,-73.92490751,noise 40.64978059,-73.94946479,noise 40.86472325,-73.9229236,noise 40.69058524,-73.95831169,noise 40.87980034,-73.90515054,noise 40.80996679,-73.9550291,noise 40.65162479,-73.93281366,noise 40.86941776,-73.91657993,noise 40.82275762,-73.91271098,noise 40.82386487,-73.94031412,noise 40.85354567,-73.91729026,noise 40.86679432,-73.92531104,noise 40.80617886,-73.95449344,noise 40.6938318,-73.90960541,noise 40.86437703,-73.92653575,noise 40.755483,-73.88616134,noise 40.66217506,-73.95370139,noise 40.82388687,-73.94041166,noise 40.84572834,-73.92061073,noise 40.86679432,-73.92531104,noise 40.82930449,-73.92134579,noise 40.86825077,-73.89272219,noise 40.73893996,-73.85413834,noise 40.58485012,-73.81903413,noise 40.63196155,-73.88762941,noise 40.72952612,-73.98387202,noise 40.86748006,-73.89332,noise 40.82541392,-73.92347498,noise 40.64435144,-73.92041432,noise 40.84145055,-73.93577346,noise 40.78663571,-73.9409,noise 40.83859944,-73.91549463,noise 40.72591919,-73.74295802,noise 40.62838763,-73.92429893,noise 40.65162479,-73.93281366,noise 40.65153829,-73.95899199,noise 40.68688981,-73.97358072,noise 40.69678198,-73.9125802,noise 40.63448326,-73.90179903,noise 40.82682155,-73.94153639,noise 40.69101141,-73.90769808,noise 40.86605295,-73.92483463,noise 40.75826062,-73.8419172,noise 40.72642524,-73.99001338,noise 40.71992609,-74.0002886,noise 40.84651959,-73.94006247,noise 40.81840606,-73.95315193,noise 40.76494318,-73.91720536,noise 40.75274321,-73.87255531,noise 40.88923532,-73.90039556,noise 40.86724342,-73.92799325,noise 40.66320531,-73.94946904,noise 40.69311924,-73.96881101,noise 40.58485012,-73.81903413,noise 40.70067644,-73.82725269,noise 40.81029045,-73.94222282,noise 40.71992609,-74.0002886,noise 40.86553576,-73.9272684,noise 40.86333019,-73.92915078,noise 40.80186645,-73.94135242,noise 40.86631495,-73.91859765,noise 40.73249706,-74.00183297,noise 40.8028942,-73.94379686,noise 40.70256469,-73.7372234,noise 40.65683117,-73.92751036,noise 40.8505607,-73.8837431,noise 40.68584199,-73.86498863,noise 40.80203814,-73.96548391,noise 40.8670152,-73.92310895,noise 40.87753927,-73.86213682,noise 40.65162479,-73.93281366,noise 40.84266867,-73.90684433,noise 40.75256615,-73.90524869,noise 40.78942768,-73.97117824,noise 40.86679432,-73.92531104,noise 40.82434663,-73.92409407,noise 40.71169593,-73.96028239,noise 40.81883608,-73.90322505,noise 40.68432691,-73.86978716,noise 40.86107265,-73.90112824,noise 40.65162479,-73.93281366,noise 40.84492733,-73.9394314,noise 40.67135029,-73.88320472,noise 40.7925981,-73.93726518,noise 40.85462116,-73.92898654,noise 40.69976763,-73.8270603,noise 40.7863726,-73.93165574,noise 40.73666907,-73.99734058,noise 40.68973631,-73.89032301,noise 40.68157336,-73.89625299,noise 40.84492733,-73.9394314,noise 40.82849131,-73.94940133,noise 40.71992609,-74.0002886,noise 40.85594564,-73.93152641,noise 40.82123088,-73.92758058,noise 40.63556645,-74.02015141,noise 40.85327778,-73.93152192,noise 40.80322395,-73.94459845,noise 40.67160992,-73.94968257,noise 40.63152083,-73.94629738,noise 40.62950788,-73.94415543,noise 40.80119115,-73.95313515,noise 40.86437703,-73.92653575,noise 40.63870466,-73.9861135,noise 40.86437703,-73.92653575,noise 40.58485012,-73.81903413,noise 40.58485012,-73.81903413,noise 40.81412673,-73.91075703,noise 40.71992609,-74.0002886,noise 40.69370018,-73.92940676,noise 40.86735216,-73.9221649,noise 40.86381074,-73.92104468,noise 40.84809308,-73.91507414,noise 40.82225992,-73.93651821,noise 40.82225992,-73.93651821,noise 40.82225992,-73.93651821,noise 40.80801887,-73.92932886,noise 40.6937249,-73.92945001,noise 40.64059288,-73.96125795,noise 40.75900812,-73.82009868,noise 40.85206117,-73.88840705,noise 40.85058821,-73.88380811,noise 40.68937702,-73.89061207,noise 40.68958479,-73.97198946,noise 40.76331469,-73.92819586,noise 40.72532531,-73.97621002,noise 40.8658736,-73.92765489,noise 40.86605295,-73.92483463,noise 40.83495821,-73.87190996,noise 40.70586461,-74.00376907,noise 40.80322395,-73.94459845,noise 40.86679432,-73.92531104,noise 40.7572323,-73.98979219,noise 40.88471137,-73.83130232,noise 40.81666203,-73.93899108,noise 40.83857841,-73.92475726,noise 40.63419461,-73.96986898,noise 40.68024665,-73.98413992,noise 40.86237169,-73.91983889,noise 40.63980683,-73.95130637,noise 40.63419461,-73.96986898,noise 40.82993131,-73.86591401,noise 40.68973631,-73.89032301,noise 40.86237169,-73.91983889,noise 40.65456868,-73.93068794,noise 40.76449114,-73.98165065,noise 40.7205427,-73.96146761,noise 40.69357091,-73.96460248,noise 40.70932835,-73.95588692,noise 40.64460505,-73.95210284,noise 40.86679432,-73.92531104,noise 40.72532531,-73.97621002,noise 40.76331469,-73.92819586,noise 40.81344554,-73.91011851,noise 40.74294904,-73.99646701,noise 40.69257547,-73.90379416,noise 40.74368288,-73.97962462,noise 40.8506451,-73.94049974,noise 40.79861514,-73.94374268,noise 40.71802667,-74.00304467,noise 40.71862779,-74.00253965,noise 40.71802667,-74.00304467,noise 40.65456868,-73.93068794,noise 40.73767999,-73.92169212,noise 40.71862779,-74.00253965,noise 40.71199344,-74.00810155,noise 40.72391971,-74.00063857,noise 40.65972716,-73.98791847,noise 40.75738784,-73.98225541,noise 40.74705161,-73.88665213,noise 40.67485958,-73.99364422,noise 40.85564338,-73.88879506,noise 40.82653035,-73.94666032,noise 40.75061925,-73.98192516,noise 40.689262,-73.86977031,noise 40.80934133,-73.94921721,noise 40.67634314,-73.91092698,noise 40.7654307,-73.82718943,noise 40.85716777,-73.92823191,noise 40.82173178,-73.95103595,noise 40.69183513,-73.90806114,noise 40.69569941,-73.90425846,noise 40.82635833,-73.89883479,noise 40.85520796,-73.9159037,noise 40.75063656,-73.86409577,noise 40.72959583,-74.00282511,noise 40.85529304,-73.91588914,noise 40.85565618,-73.92943007,noise 40.72124139,-73.93947887,noise 40.85465644,-73.91612852,noise 40.79365992,-73.97066719,noise 40.73619707,-73.84103136,noise 40.81716645,-73.89904385,noise 40.74072541,-73.92391147,noise 40.75941962,-73.93226455,noise 40.73096407,-73.8459942,noise 40.68827177,-73.9522121,noise 40.7429683,-74.000166,noise 40.79578676,-73.94676079,noise 40.72301527,-73.98192183,noise 40.69041005,-73.75556428,noise 40.86390569,-73.92345961,noise 40.8088405,-73.92228029,noise 40.86408584,-73.91800384,noise 40.85701873,-73.9313807,noise 40.74762057,-73.87673715,noise 40.80927533,-73.943069,noise 40.88674715,-73.85716662,noise 40.73883253,-73.86275581,noise 40.86006223,-73.92214813,noise 40.73103403,-73.99543571,noise 40.79850616,-73.96712189,noise 40.79365992,-73.97066719,noise 40.69627186,-73.90955162,noise 40.72288347,-73.9816116,noise 40.88593838,-73.86243404,noise 40.80015915,-73.94684037,noise 40.82128792,-73.90094167,noise 40.72349367,-73.98825325,noise 40.72224762,-73.98889924,noise 40.75045253,-73.98729207,noise 40.78131764,-73.94922052,noise 40.80280155,-73.9397009,noise 40.83049999,-73.94837356,noise 40.71105952,-73.95390911,noise 40.7296035,-73.98823774,noise 40.72349367,-73.98825325,noise 40.68072085,-73.93526487,noise 40.72101229,-73.98707762,noise 40.74978836,-73.9877686,noise 40.74736158,-73.88645672,noise 40.7219211,-73.99003931,noise 40.72133686,-73.99708866,noise 40.7666765,-73.970939,noise 40.81301769,-73.95197441,noise 40.71673152,-73.96554613,noise 40.69719331,-73.92361134,noise 40.82128792,-73.90094167,noise 40.67250249,-73.95780388,noise 40.85459367,-73.9289215,noise 40.83049999,-73.94837356,noise 40.74928842,-73.98454214,noise 40.59603529,-73.74400895,noise 40.71839401,-73.98920652,noise 40.68152493,-73.97922177,noise 40.60089325,-74.00073102,noise 40.75290948,-73.87399511,noise 40.80203814,-73.96548391,noise 40.82469135,-73.92660486,noise 40.8640265,-73.88963065,noise 40.86399631,-73.8896307,noise 40.83777968,-73.94402036,noise 40.84171392,-73.9355672,noise 40.64636893,-74.00183421,noise 40.86333019,-73.92915078,noise 40.67350675,-73.95693444,noise 40.6840001,-73.95030059,noise 40.74949194,-73.98797437,noise 40.6840001,-73.95030059,noise 40.6944434,-73.90899154,noise 40.69959035,-73.94423377,noise 40.71250448,-73.95024327,noise 40.69394937,-73.96359256,noise 40.76330097,-73.92820671,noise 40.66619668,-73.93254305,noise 40.85725572,-73.92842702,noise 40.84742029,-73.94091828,noise 40.85333707,-73.92968918,noise 40.83007156,-73.94780657,noise 40.78536042,-73.97298193,noise 40.85594564,-73.93152641,noise 40.7220782,-73.97587927,noise 40.68751285,-73.85537584,noise 40.58411122,-73.93298959,noise 40.86550223,-73.92214899,noise 40.72483716,-73.97832075,noise 40.83724684,-73.87149719,noise 40.87959654,-73.90430103,noise 40.62863721,-74.08003528,noise 40.72286008,-73.99407978,noise 40.7612619,-73.9942713,noise 40.70954237,-73.99190236,noise 40.72104319,-73.95643113,noise 40.51770136,-74.24054207,noise 40.82138121,-73.90090178,noise 40.76743782,-73.92062464,noise 40.69186791,-73.94706013,noise 40.57578043,-73.98787246,noise 40.76134637,-73.98679184,noise 40.85575359,-73.93165674,noise 40.80709742,-73.94597872,noise 40.83637983,-73.92898433,noise 40.75083163,-73.87391964,noise 40.58413031,-73.93277355,noise 40.70256374,-73.90062398,noise 40.68152493,-73.97922177,noise 40.69018195,-73.91786071,noise 40.67373503,-73.93964455,noise 40.79850616,-73.96712189,noise 40.64850164,-74.00081803,noise 40.86006223,-73.92214813,noise 40.68272042,-73.96329223,noise 40.67319971,-73.92980698,noise 40.82674141,-73.95227525,noise 40.67319971,-73.92980698,noise 40.86674159,-73.92872051,noise 40.84201878,-73.91108102,noise 40.83321192,-73.94288228,noise 40.83378703,-73.94035943,noise 40.71992609,-74.0002886,noise 40.67901955,-73.88911122,noise 40.83022246,-73.94768359,noise 40.6368429,-73.93075319,noise 40.78536042,-73.97298193,noise 40.78536042,-73.97298193,noise 40.84811046,-73.90906323,noise 40.73823512,-73.91872526,noise 40.80311646,-73.95631961,noise 40.70731657,-74.00427051,noise 40.67331368,-73.90841834,noise 40.84711145,-73.93818244,noise 40.69186791,-73.94706013,noise 40.69185156,-73.94731978,noise 40.70723973,-74.00392064,noise 40.67850873,-73.81433825,noise 40.6972536,-73.91561609,noise 40.62863721,-74.08003528,noise 40.67622313,-73.9620376,noise 40.86957182,-73.90631853,noise 40.63746939,-73.91917226,noise 40.84153234,-73.92157348,noise 40.84711145,-73.93818244,noise 40.74742033,-73.87685301,noise 40.88049256,-73.87669332,noise 40.76253585,-73.92493702,noise 40.67289148,-73.92419074,noise 40.74194871,-73.98275391,noise 40.82016359,-73.93767636,noise 40.85093348,-73.91457531,noise 40.86399121,-73.85967031,noise 40.82290375,-73.89688173,noise 40.68055584,-73.93468816,noise 40.64531054,-73.94607368,noise 40.6368429,-73.93075319,noise 40.86550223,-73.92214899,noise 40.69018195,-73.91786071,noise 40.65972716,-73.98791847,noise 40.7378916,-73.71046402,noise 40.64850164,-74.00081803,noise 40.8214864,-73.91216708,noise 40.6943624,-73.93061051,noise 40.67322521,-73.81616268,noise 40.82740714,-73.90239597,noise 40.74860668,-73.97810369,noise 40.6368429,-73.93075319,noise 40.78869209,-73.94776317,noise 40.8424349,-73.92091464,noise 40.59898609,-73.756702,noise 40.82669141,-73.93933238,noise 40.91092049,-73.896633,noise 40.54889704,-74.16937192,noise 40.87468241,-73.84308678,noise 40.62352798,-73.94624978,noise 40.8424349,-73.92091464,noise 40.83022246,-73.94768359,noise 40.81337978,-73.95146477,noise 40.81313558,-73.95164197,noise 40.85040362,-73.94060116,noise 40.61359795,-73.93190826,noise 40.71728932,-73.76733405,noise 40.65280451,-73.96151394,noise 40.5995808,-73.98996033,noise 40.68198721,-73.91564983,noise 40.68557267,-73.91302037,noise 40.71795041,-73.95792662,noise 40.67625063,-73.96217458,noise 40.69382304,-73.94309906,noise 40.82687657,-73.94750556,noise 40.51358865,-74.25123739,noise 40.8658736,-73.92765489,noise 40.8714777,-73.91856602,noise 40.57885798,-73.99809925,noise 40.78876351,-73.94788951,noise 40.64795817,-74.00018739,noise 40.75849777,-73.82556864,noise 40.680146,-73.84290998,noise 40.6439859,-74.01148411,noise 40.86967392,-73.86526621,noise 40.71775824,-73.95782213,noise 40.70549557,-73.94117391,noise 40.75132403,-73.77545147,noise 40.63275535,-73.92983511,noise 40.83007156,-73.94780657,noise 40.74164256,-73.99743421,noise 40.67141401,-73.9844268,noise 40.83362549,-73.91856898,noise 40.58485012,-73.81903413,noise 40.61357623,-73.98713443,noise 40.82740714,-73.90239597,noise 40.75470661,-73.82155046,noise 40.78869209,-73.94776317,noise 40.68183447,-73.91697684,noise 40.85297976,-73.92888347,noise 40.8589978,-73.92291216,noise 40.85529304,-73.91588914,noise 40.78867286,-73.94771624,noise 40.86381074,-73.92104468,noise 40.78869209,-73.94776317,noise 40.83022246,-73.94768359,noise 40.67089775,-73.95318705,noise 40.73555275,-73.95852532,noise 40.85019122,-73.93858441,noise 40.82740714,-73.90239597,noise 40.86230944,-73.90986809,noise 40.66245488,-73.92696359,noise 40.68804201,-73.94774827,noise 40.73588925,-73.99120995,noise 40.69322877,-73.96784453,noise 40.68045833,-73.90503748,noise 40.86782618,-73.91705918,noise 40.71090763,-73.95164399,noise 40.71090763,-73.95164399,noise 40.6621404,-73.99627665,noise 40.84761242,-73.9357892,noise 40.68712044,-73.94924538,noise 40.6493772,-74.00228836,noise 40.71076002,-73.9531302,noise 40.6696396,-73.95756057,noise 40.88340238,-73.8472323,noise 40.71033685,-73.95196904,noise 40.79734154,-73.96425114,noise 40.71033685,-73.95196904,noise 40.61100454,-74.01113628,noise 40.65072855,-73.94566568,noise 40.82410397,-73.9528408,noise 40.83311944,-73.94460247,noise 40.67229269,-73.793901,noise 40.68659479,-73.86798707,noise 40.82410397,-73.9528408,noise 40.84858654,-73.91805909,noise 40.84834877,-73.90845928,noise 40.62429808,-73.99753598,noise 40.59603529,-73.74400895,noise 40.80933294,-73.9554883,noise 40.70391444,-73.94089399,noise 40.7440955,-73.98561878,noise 40.79428092,-73.949012,noise 40.85418396,-73.84233988,noise 40.67640456,-73.96286308,noise 40.80051156,-73.96379795,noise 40.63746939,-73.91917226,noise 40.74566749,-73.94606823,noise 40.70299353,-73.9947091,noise 40.73588925,-73.99120995,noise 40.7640329,-73.98247023,noise 40.81452987,-73.86521889,noise 40.81569237,-73.94867768,noise 40.87602314,-73.90790771,noise 40.79320109,-73.94648116,noise 40.67999399,-73.79358877,noise 40.65779607,-73.95113826,noise 40.68958209,-73.9721373,noise 40.80505219,-73.95821472,noise 40.80515375,-73.95821827,noise 40.69750596,-73.84642491,noise 40.80156507,-73.96236704,noise 40.77230057,-73.98623728,noise 40.82324258,-73.8660431,noise 40.73978257,-73.97951395,noise 40.6386746,-73.97181265,noise 40.74017168,-73.97614698,noise 40.87367193,-73.87922985,noise 40.85064236,-73.94049974,noise 40.7191814,-73.76241764,noise 40.79320109,-73.94648116,noise 40.75396075,-73.92415623,noise 40.78229519,-73.96512584,noise 40.73535385,-73.95511554,noise 40.68112759,-73.93618025,noise 40.68108112,-73.93653724,noise 40.65005176,-73.97190875,noise 40.65021646,-73.97196634,noise 40.59599554,-73.74218707,noise 40.81569237,-73.94867768,noise 40.75426122,-73.93054451,noise 40.74294904,-73.99646701,noise 40.67089775,-73.95318705,noise 40.7309737,-74.00286485,noise 40.80389391,-73.95820461,noise 40.80559563,-73.95818187,noise 40.81569237,-73.94867768,noise 40.80503246,-73.95682044,noise 40.8047146,-73.95825466,noise 40.62429808,-73.99753598,noise 40.80503246,-73.95682044,noise 40.70588897,-73.94296613,noise 40.68937702,-73.89061207,noise 40.74640187,-74.00510668,noise 40.83870773,-73.909882,noise 40.64846321,-74.00075677,noise 40.6386746,-73.97181265,noise 40.6386746,-73.97181265,noise 40.88692792,-73.8524972,noise 40.63747782,-73.97158977,noise 40.80051156,-73.96379795,noise 40.8006488,-73.93803054,noise 40.83870773,-73.909882,noise 40.79652654,-73.96486556,noise 40.6386746,-73.97181265,noise 40.77942642,-73.96343751,noise 40.6386746,-73.97181265,noise 40.64825654,-73.97139779,noise 40.87974875,-73.8846612,noise 40.6386746,-73.97181265,noise 40.76788911,-73.98151253,noise 40.6386746,-73.97181265,noise 40.6386746,-73.97181265,noise 40.79896085,-73.94348956,noise 40.69196363,-73.96856635,noise 40.79532613,-73.97128765,noise 40.7073419,-73.7960866,noise 40.78229519,-73.96512584,noise 40.7985263,-73.9417021,noise 40.68416545,-73.87773061,noise 40.68464082,-73.88908745,noise 40.71802667,-74.00304467,noise 40.67529849,-74.00992128,noise 40.72035067,-73.96176715,noise 40.72996889,-73.99214161,noise 40.79320109,-73.94648116,noise 40.71862779,-74.00253965,noise 40.71862779,-74.00253965,noise 40.74214141,-73.98705547,noise 40.84444801,-73.93621513,noise 40.80930835,-73.94913776,noise 40.73275739,-73.99002687,noise 40.80934133,-73.94921721,noise 40.84822967,-73.90711847,noise 40.65173314,-73.93038096,noise 40.77797338,-73.98215604,noise 40.63028915,-74.16532371,noise 40.83215401,-73.93541385,noise 40.78131764,-73.94922052,noise 40.67611116,-74.00701204,noise 40.7449047,-73.98208911,noise 40.86437703,-73.92653575,noise 40.86437703,-73.92653575,noise 40.86708854,-73.88573889,noise 40.85702748,-73.92773319,noise 40.67530914,-73.9620922,noise 40.83452626,-73.94212588,noise 40.824332,-73.95337539,noise 40.86437703,-73.92653575,noise 40.69959035,-73.94423377,noise 40.86437703,-73.92653575,noise 40.86437703,-73.92653575,noise 40.86437703,-73.92653575,noise 40.75548196,-73.81543034,noise 40.72483716,-73.97832075,noise 40.73250431,-73.9848383,noise 40.71522127,-73.99171409,noise 40.82410397,-73.9528408,noise 40.8645253,-73.92661874,noise 40.69627186,-73.90955162,noise 40.71380018,-73.95752884,noise 40.85396304,-73.89703239,noise 40.71879472,-73.98901165,noise 40.68128957,-73.94140799,noise 40.86553576,-73.9272684,noise 40.70128467,-73.91426936,noise 40.7138099,-73.96174926,noise 40.86437703,-73.92653575,noise 40.67250249,-73.95780388,noise 40.76362248,-73.99701462,noise 40.69959035,-73.94423377,noise 40.8413715,-73.93677104,noise 40.70808154,-74.01444559,noise 40.75296112,-73.87352941,noise 40.65722787,-73.91744717,noise 40.76494318,-73.91720536,noise 40.78876351,-73.94788951,noise 40.72488931,-73.97828105,noise 40.82642774,-73.95045076,noise 40.85339205,-73.92984455,noise 40.69436403,-73.93830603,noise 40.69173908,-73.94174138,noise 40.84967442,-73.9370993,noise 40.80078776,-73.95334131,noise 40.67407979,-73.96304823,noise 40.72349367,-73.98825325,noise 40.78663571,-73.9409,noise 40.6631617,-73.95017554,noise 40.76742353,-73.9897798,noise 40.78869209,-73.94776317,noise 40.63283667,-74.02723013,noise 40.73234061,-74.00177884,noise 40.84027182,-73.91294099,noise 40.85467153,-73.88575661,noise 40.73561763,-73.99271107,noise 40.82888174,-73.89385163,noise 40.64460505,-73.95210284,noise 40.86556099,-73.9238301,noise 40.74072541,-73.92391147,noise 40.83353705,-73.90031994,noise 40.58488412,-73.92664159,noise 40.85284555,-73.9293463,noise 40.69162426,-73.94266101,noise 40.68230634,-73.92894289,noise 40.68659479,-73.86798707,noise 40.58486926,-73.81899087,noise 40.71795041,-73.95792662,noise 40.83079781,-73.85392974,noise 40.81331489,-73.96131636,noise 40.85804235,-73.93112298,noise 40.64269519,-73.96977506,noise 40.78867286,-73.94771624,noise 40.69059781,-73.82375218,noise 40.74860668,-73.97810369,noise 40.63533928,-73.91895506,noise 40.58486926,-73.81899087,noise 40.69394881,-73.91183384,noise 40.70966826,-73.95475771,noise 40.70863079,-73.95490269,noise 40.70279083,-73.92937189,noise 40.70563641,-73.79094496,noise 40.85051084,-73.93104403,noise 40.87526178,-73.88526923,noise 40.69069058,-73.82339495,noise 40.76239004,-73.87168854,noise 40.76331469,-73.92819586,noise 40.74860668,-73.97810369,noise 40.71090763,-73.95164399,noise 40.71088367,-73.95346556,noise 40.7212143,-73.97948719,noise 40.69872126,-73.94633702,noise 40.8658736,-73.92765489,noise 40.71066888,-73.95177041,noise 40.74705161,-73.88665213,noise 40.71071828,-73.95174152,noise 40.64846321,-74.00075677,noise 40.65686381,-73.92703458,noise 40.71033685,-73.95196904,noise 40.67358845,-73.96295477,noise 40.67826236,-73.92745462,noise 40.64846321,-74.00075677,noise 40.64846321,-74.00075677,noise 40.70874352,-73.89290315,noise 40.66250214,-73.94831976,noise 40.67770929,-73.9507992,noise 40.62429808,-73.99753598,noise 40.72953107,-73.9804155,noise 40.70549476,-73.92992446,noise 40.87436643,-73.85543226,noise 40.86605105,-73.88573706,noise 40.72401301,-73.99798687,noise 40.75157722,-73.982275,noise 40.72543203,-73.99677099,noise 40.72569826,-73.99655812,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.81793343,-73.94012435,noise 40.71110869,-73.95333555,noise 40.76750843,-73.91203971,noise 40.72483716,-73.97832075,noise 40.71795041,-73.95792662,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.71446634,-73.90213931,noise 40.73434974,-74.00300933,noise 40.69844758,-73.91562901,noise 40.69848598,-73.91559289,noise 40.76494318,-73.91720536,noise 40.69844758,-73.91562901,noise 40.71701221,-73.98028571,noise 40.75056212,-73.98559212,noise 40.63579097,-74.13493533,noise 40.78663571,-73.9409,noise 40.71920381,-73.99036439,noise 40.80695267,-73.94755378,noise 40.64631775,-73.9519899,noise 40.73234787,-73.98493936,noise 40.6395296,-73.95128856,noise 40.64631775,-73.9519899,noise 40.76010264,-73.9839729,noise 40.81491422,-73.86529398,noise 40.78131764,-73.94922052,noise 40.67337243,-73.96560458,noise 40.64692855,-73.96342723,noise 40.77383211,-73.98609254,noise 40.73434974,-74.00300933,noise 40.80275151,-73.95659798,noise 40.68230634,-73.92894289,noise 40.66217506,-73.95370139,noise 40.68230634,-73.92894289,noise 40.78905477,-73.94860432,noise 40.65686381,-73.92703458,noise 40.83655119,-73.91833411,noise 40.81453554,-73.95914444,noise 40.78876351,-73.94788951,noise 40.68958479,-73.97198946,noise 40.78869209,-73.94776317,noise 40.68230634,-73.92894289,noise 40.76139379,-73.99967873,noise 40.78867286,-73.94771624,noise 40.67282334,-73.78686962,noise 40.76311474,-73.99964984,noise 40.64779609,-74.00572617,noise 40.75866478,-73.88402983,noise 40.81698672,-73.8858502,noise 40.71033685,-73.95196904,noise 40.87575492,-73.85086586,noise 40.71029013,-73.95181757,noise 40.62706332,-73.94635861,noise 40.71033685,-73.95196904,noise 40.68152493,-73.97922177,noise 40.82674247,-73.90854321,noise 40.6707623,-73.93436971,noise 40.8454299,-73.91397516,noise 40.73981442,-73.81513092,noise 40.86358368,-73.86547739,noise 40.854742,-73.90274987,noise 40.75188459,-73.98205115,noise 40.71802667,-74.00304467,noise 40.75378938,-73.98159946,noise 40.68307402,-73.91931529,noise 40.67615692,-73.94157112,noise 40.71862779,-74.00253965,noise 40.71862779,-74.00253965,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.64586326,-73.97208709,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.7770445,-73.90958272,noise 40.849245,-73.91031231,noise 40.68485714,-73.97952361,noise 40.79571837,-73.97027983,noise 40.67680519,-73.87130882,noise 40.6716626,-73.95091902,noise 40.72285427,-73.98957017,noise 40.84682457,-73.93556225,noise 40.79829144,-73.93374556,noise 40.72349367,-73.98825325,noise 40.84682457,-73.93556225,noise 40.74896412,-73.89175215,noise 40.71121192,-73.96593854,noise 40.64018175,-73.95530567,noise 40.68148609,-73.97702246,noise 40.72961925,-73.96039077,noise 40.79318722,-73.94056193,noise 40.72099888,-73.95539578,noise 40.72100987,-73.95542824,noise 40.69810842,-73.9211724,noise 40.85552544,-73.93108582,noise 40.81890185,-73.90310212,noise 40.82771865,-73.92223295,noise 40.82684887,-73.9226784,noise 40.82782291,-73.92217862,noise 40.64602911,-73.92977431,noise 40.7274952,-73.98535176,noise 40.64228345,-73.92693162,noise 40.59034214,-74.06662421,noise 40.80624132,-73.95281733,noise 40.7274952,-73.98535176,noise 40.69523654,-73.78210991,noise 40.61655033,-73.93020153,noise 40.7111325,-73.96654457,noise 40.64269519,-73.96977506,noise 40.76010264,-73.9839729,noise 40.65608035,-73.93914154,noise 40.60220284,-74.16827555,noise 40.74956279,-73.98372641,noise 40.75979023,-73.98792559,noise 40.74566749,-73.94606823,noise 40.75979023,-73.98792559,noise 40.74956279,-73.98372641,noise 40.7592274,-73.98657207,noise 40.74956279,-73.98372641,noise 40.63594845,-73.96052924,noise 40.74717218,-73.89215927,noise 40.67231855,-73.97705806,noise 40.64269519,-73.96977506,noise 40.74928842,-73.98454214,noise 40.63174942,-74.01345272,noise 40.6717483,-73.95237534,noise 40.65683117,-73.92751036,noise 40.74723744,-73.89150594,noise 40.77265681,-73.90095624,noise 40.80513733,-73.94523982,noise 40.72648555,-73.98921603,noise 40.80607745,-73.94251184,noise 40.86941776,-73.91657993,noise 40.6901976,-73.92901021,noise 40.74522723,-74.00039337,noise 40.83611815,-73.94203777,noise 40.8506451,-73.94049974,noise 40.80010122,-73.9524605,noise 40.80788207,-73.93976855,noise 40.73243667,-74.00193039,noise 40.73243667,-74.00193039,noise 40.7170331,-73.95643735,noise 40.85064236,-73.94049974,noise 40.69008943,-73.93646736,noise 40.73249706,-74.00183297,noise 40.63446407,-73.90182788,noise 40.69396945,-73.92987527,noise 40.85064236,-73.94049974,noise 40.8506451,-73.94049974,noise 40.68651009,-73.85464605,noise 40.77902925,-73.95089043,noise 40.82880488,-73.89385175,noise 40.7249181,-73.98725364,noise 40.7249181,-73.98725364,noise 40.73723136,-73.99028961,noise 40.70968754,-74.01167217,noise 40.75826661,-73.98546772,noise 40.70549476,-73.92992446,noise 40.70585178,-73.92171868,noise 40.68358846,-73.81044812,noise 40.67077877,-73.9343733,noise 40.63453887,-74.00339034,noise 40.79295236,-73.97303302,noise 40.58485012,-73.81903413,noise 40.70211598,-73.81062265,noise 40.70863044,-73.95400457,noise 40.71665985,-73.96453611,noise 40.8341834,-73.948396,noise 40.68187917,-73.7660803,noise 40.69308414,-73.96164936,noise 40.57432596,-73.99084605,noise 40.6870848,-73.95601341,noise 40.74908619,-73.99389339,noise 40.83352824,-73.92490751,noise 40.72662405,-73.89415161,noise 40.74291853,-73.99076875,noise 40.58989,-73.80747002,noise 40.67774235,-73.95107678,noise 40.63970284,-73.96778025,noise 40.85352623,-73.91696857,noise 40.71531994,-73.98988518,noise 40.65160586,-73.93329659,noise 40.64978059,-73.94946479,noise 40.77528042,-73.935191,noise 40.86954934,-73.91634837,noise 40.73249706,-74.00183297,noise 40.83006694,-73.94976148,noise 40.72802505,-73.98629693,noise 40.71324634,-73.79633907,noise 40.83269635,-73.94971252,noise 40.90550703,-73.84851639,noise 40.8372988,-73.94289685,noise 40.6902653,-73.91545185,noise 40.75612923,-73.994297,noise 40.68095574,-73.9286559,noise 40.68230634,-73.92894289,noise 40.81632778,-73.94014386,noise 40.71795041,-73.95792662,noise 40.78384401,-73.97998787,noise 40.75612923,-73.994297,noise 40.76449114,-73.98165065,noise 40.81661909,-73.94086615,noise 40.86726887,-73.89347942,noise 40.67333008,-73.93208521,noise 40.71213112,-73.9568698,noise 40.80077953,-73.95334854,noise 40.69599535,-73.78277098,noise 40.72979348,-73.99884181,noise 40.66408306,-73.94816714,noise 40.68464082,-73.88908745,noise 40.72933786,-74.0010319,noise 40.8623119,-73.86940613,noise 40.74723744,-73.89150594,noise 40.8336653,-73.92896193,noise 40.82410397,-73.9528408,noise 40.65385069,-73.95509109,noise 40.82410397,-73.9528408,noise 40.82410397,-73.9528408,noise 40.5595586,-74.1490653,noise 40.72195166,-73.9962697,noise 40.70377886,-73.96514527,noise 40.81249606,-73.95871219,noise 40.81261065,-73.95682636,noise 40.58486106,-73.8190125,noise 40.670887,-73.93648926,noise 40.789368,-73.949348,noise 40.81964456,-73.87613406,noise 40.80077953,-73.95334854,noise 40.7054412,-73.94797989,noise 40.811604,-73.95863688,noise 40.80481188,-73.95421624,noise 40.81345129,-73.95890668,noise 40.62429808,-73.99753598,noise 40.66772093,-73.95738516,noise 40.82008848,-73.94661851,noise 40.81377819,-73.9596868,noise 40.7054412,-73.94797989,noise 40.81162556,-73.95756034,noise 40.70549476,-73.92992446,noise 40.82574216,-73.92596054,noise 40.80322395,-73.94459845,noise 40.84066617,-73.93688374,noise 40.58039394,-73.95356728,noise 40.71346027,-73.95874828,noise 40.81377819,-73.9596868,noise 40.67687541,-73.81254019,noise 40.66560972,-73.9944309,noise 40.66560972,-73.9944309,noise 40.81916263,-73.8798129,noise 40.67073448,-73.93372447,noise 40.70259527,-73.85529263,noise 40.70588897,-73.94296613,noise 40.62429808,-73.99753598,noise 40.65810733,-73.91523311,noise 40.64797458,-74.00370094,noise 40.82880488,-73.89385175,noise 40.67296764,-73.94185871,noise 40.86553576,-73.9272684,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.85635634,-73.89097729,noise 40.8006641,-73.96924823,noise 40.78461033,-73.96983341,noise 40.67548447,-74.01583011,noise 40.86275723,-73.91776326,noise 40.7240446,-73.95296933,noise 40.64364296,-73.94881362,noise 40.84528618,-73.92023537,noise 40.84672579,-73.93562018,noise 40.86369361,-73.9223608,noise 40.66990909,-73.95895546,noise 40.76010264,-73.9839729,noise 40.81435097,-73.94441217,noise 40.63533928,-73.91895506,noise 40.80136246,-73.95600652,noise 40.80177109,-73.96287983,noise 40.72781936,-73.98776542,noise 40.68152493,-73.97922177,noise 40.85607396,-73.93039842,noise 40.84342648,-73.91426328,noise 40.79365992,-73.97066719,noise 40.76010264,-73.9839729,noise 40.73507133,-73.99139408,noise 40.84262953,-73.90595891,noise 40.6936969,-73.80036912,noise 40.63597511,-73.97814065,noise 40.72781936,-73.98776542,noise 40.81294075,-73.95176855,noise 40.63597511,-73.97814065,noise 40.69445439,-73.90900956,noise 40.76630943,-73.91633003,noise 40.80133776,-73.9560246,noise 40.51478878,-74.24842226,noise 40.68598692,-73.99416238,noise 40.82915013,-73.90250904,noise 40.77680945,-73.95253489,noise 40.69173908,-73.94174138,noise 40.68115298,-73.97251579,noise 40.65658845,-73.95831852,noise 40.68598692,-73.99416238,noise 40.86237169,-73.91983889,noise 40.8308696,-73.91450711,noise 40.84313178,-73.90591844,noise 40.671729,-73.95215546,noise 40.74910473,-73.98616989,noise 40.80690598,-73.94748519,noise 40.79829144,-73.93374556,noise 40.58598533,-73.81658644,noise 40.6471319,-74.00462341,noise 40.85188652,-73.89534032,noise 40.64746136,-73.99913153,noise 40.67821199,-73.97923002,noise 40.57332719,-74.00254853,noise 40.65683117,-73.92751036,noise 40.65683117,-73.92751036,noise 40.79829144,-73.93374556,noise 40.83810698,-73.93992188,noise 40.80760886,-73.92338347,noise 40.80760886,-73.92338347,noise 40.68529311,-73.88808399,noise 40.66250214,-73.94831976,noise 40.71476307,-73.96406096,noise 40.69676167,-73.84608763,noise 40.71308337,-73.99720806,noise 40.83507129,-73.94535974,noise 40.74978945,-73.89379359,noise 40.79726441,-73.94893387,noise 40.73249706,-74.00183297,noise 40.73234061,-74.00177884,noise 40.56017763,-74.14794742,noise 40.82574216,-73.92596054,noise 40.76402013,-73.97318913,noise 40.79748392,-73.94878562,noise 40.67073448,-73.93372447,noise 40.83610166,-73.94199803,noise 40.63127747,-74.02787799,noise 40.8423355,-73.91618381,noise 40.70548377,-73.90670421,noise 40.68908106,-73.95818282,noise 40.86813967,-73.93041833,noise 40.81989365,-73.94671983,noise 40.71274564,-74.0060095,noise 40.68716729,-73.97475969,noise 40.71802667,-74.00304467,noise 40.71862779,-74.00253965,noise 40.71802667,-74.00304467,noise 40.86358368,-73.86547739,noise 40.74768457,-73.9787861,noise 40.71173825,-74.00698693,noise 40.69937868,-73.91277154,noise 40.75635718,-73.82577277,noise 40.73005973,-73.99936498,noise 40.84994234,-73.93519055,noise 40.80202166,-73.96544419,noise 40.70753056,-73.78659995,noise 40.74061753,-73.92265217,noise 40.74061753,-73.92265217,noise 40.70393413,-73.94755188,noise 40.85959342,-73.89509682,noise 40.68138831,-73.98294985,noise 40.86437703,-73.92653575,noise 40.76494318,-73.91720536,noise 40.90261473,-73.85108414,noise 40.86437703,-73.92653575,noise 40.84849164,-73.90524579,noise 40.58485012,-73.81903413,noise 40.81217099,-73.91608091,noise 40.72662405,-73.89415161,noise 40.63597511,-73.97814065,noise 40.79770759,-73.94018227,noise 40.71879472,-73.98901165,noise 40.80238951,-73.95052644,noise 40.7808738,-73.91740581,noise 40.71879472,-73.98901165,noise 40.64751329,-73.94922146,noise 40.86088885,-73.90124058,noise 40.69494765,-73.93164488,noise 40.86984817,-73.91588157,noise 40.86557144,-73.92727198,noise 40.86727603,-73.91921472,noise 40.71324634,-73.79633907,noise 40.74102858,-73.92167375,noise 40.71879472,-73.98901165,noise 40.74102858,-73.92167375,noise 40.71474541,-73.98260584,noise 40.74102858,-73.92167375,noise 40.758151,-73.8567385,noise 40.58485012,-73.81903413,noise 40.84975661,-73.90483193,noise 40.75624515,-73.92120466,noise 40.87299332,-73.85265828,noise 40.86813967,-73.93041833,noise 40.86813967,-73.93041833,noise 40.73697856,-73.89863852,noise 40.85328343,-73.91523379,noise 40.83022246,-73.94768359,noise 40.68400462,-73.93227625,noise 40.58485012,-73.81903413,noise 40.86437703,-73.92653575,noise 40.7378916,-73.71046402,noise 40.7174035,-73.95605473,noise 40.76346859,-73.99281632,noise 40.6368429,-73.93075319,noise 40.51462049,-74.24881725,noise 40.83352824,-73.92490751,noise 40.75826062,-73.8419172,noise 40.83295479,-73.92521171,noise 40.83153025,-73.91339689,noise 40.85180149,-73.88951719,noise 40.87156343,-73.91947708,noise 40.87100884,-73.91925358,noise 40.79818993,-73.93381789,noise 40.76331469,-73.92819586,noise 40.58485012,-73.81903413,noise 40.86651175,-73.92550659,noise 40.5827861,-73.95729175,noise 40.61413155,-74.03503844,noise 40.76045523,-73.84305628,noise 40.72933786,-74.0010319,noise 40.83022246,-73.94768359,noise 40.75607293,-73.88055479,noise 40.68390142,-73.96572174,noise 40.75453458,-73.99545576,noise 40.85525229,-73.91276232,noise 40.72559817,-73.98247673,noise 40.85459367,-73.9289215,noise 40.86813967,-73.93041833,noise 40.84694038,-73.91518404,noise 40.85459367,-73.9289215,noise 40.8322633,-73.91368142,noise 40.77242188,-73.95570793,noise 40.75846663,-73.84203222,noise 40.77638709,-73.98324687,noise 40.8166622,-73.88799675,noise 40.73243667,-74.00193039,noise 40.76045523,-73.84305628,noise 40.79038043,-73.97251403,noise 40.73883253,-73.86275581,noise 40.64302542,-73.99072492,noise 40.68491161,-73.8799431,noise 40.85455791,-73.92879502,noise 40.78975348,-73.96806876,noise 40.7260542,-73.98532322,noise 40.73249706,-74.00183297,noise 40.63385364,-73.93043924,noise 40.70068793,-73.95615952,noise 40.86592029,-73.92770907,noise 40.68249863,-73.96501217,noise 40.86237169,-73.91983889,noise 40.84803804,-73.91487541,noise 40.70085801,-73.95591416,noise 40.70068793,-73.95615952,noise 40.70685211,-73.9481952,noise 40.68249863,-73.96501217,noise 40.83353705,-73.90031994,noise 40.57800145,-73.99371104,noise 40.63050631,-73.92811539,noise 40.84896845,-73.91481277,noise 40.83117768,-73.94207459,noise 40.86702889,-73.9190451,noise 40.72488035,-74.00261926,noise 40.86782618,-73.91705918,noise 40.86830634,-73.88488352,noise 40.75979055,-73.84272936,noise 40.90307872,-73.89638474,noise 40.86568682,-73.92743455,noise 40.79514212,-73.97082183,noise 40.80119115,-73.95313515,noise 40.83130723,-73.94315855,noise 40.68244394,-73.96570085,noise 40.78516561,-73.91608245,noise 40.82904613,-73.87443631,noise 40.82653035,-73.94666032,noise 40.68319597,-73.96556706,noise 40.68398926,-73.96573972,noise 40.82416316,-73.89048083,noise 40.84621384,-73.9056177,noise 40.68319597,-73.96556706,noise 40.69396945,-73.92987527,noise 40.74173312,-74.00308184,noise 40.74705161,-73.88665213,noise 40.67578137,-74.0120592,noise 40.71862779,-74.00253965,noise 40.89546803,-73.87712129,noise 40.71904812,-73.93908765,noise 40.64116274,-73.95825249,noise 40.71678366,-73.96552085,noise 40.90343278,-73.89638057,noise 40.6967783,-73.91880465,noise 40.74725134,-73.95259565,noise 40.68464082,-73.88908745,noise 40.70754483,-73.95056437,noise 40.7746797,-73.98220025,noise 40.58485012,-73.81903413,noise 40.70685211,-73.9481952,noise 40.6989049,-73.93517148,noise 40.58485012,-73.81903413,noise 40.70805265,-73.95065056,noise 40.8184109,-73.90352915,noise 40.69339389,-73.91122154,noise 40.79893518,-73.93635987,noise 40.76449114,-73.98165065,noise 40.68134323,-73.96551033,noise 40.68185171,-73.98003651,noise 40.85114171,-73.78846705,noise 40.63419461,-73.96986898,noise 40.75847623,-73.9247178,noise 40.68152493,-73.97922177,noise 40.71410978,-73.95603165,noise 40.71085754,-73.96491072,noise 40.71884964,-73.98921727,noise 40.74705161,-73.88665213,noise 40.72342524,-73.99027359,noise 40.71410978,-73.95603165,noise 40.72342524,-73.99027359,noise 40.72342524,-73.99027359,noise 40.72342524,-73.99027359,noise 40.70743735,-74.00405771,noise 40.74840957,-73.89763224,noise 40.70619093,-74.00916485,noise 40.72605395,-73.98353372,noise 40.72643794,-73.9816936,noise 40.57489372,-73.98660913,noise 40.82634975,-73.89844095,noise 40.82182953,-73.95516922,noise 40.87492967,-73.86497351,noise 40.7501623,-73.89632664,noise 40.78311615,-73.95085853,noise 40.66970559,-73.95788496,noise 40.71802667,-74.00304467,noise 40.82880488,-73.89385175,noise 40.68369261,-73.87963161,noise 40.63227974,-73.97389777,noise 40.78915097,-73.94304648,noise 40.71678366,-73.96552085,noise 40.78930759,-73.94339664,noise 40.56011322,-74.14893697,noise 40.84628291,-73.93885187,noise 40.57687644,-74.10333239,noise 40.71678366,-73.96552085,noise 40.84624988,-73.93868925,noise 40.84624988,-73.93868925,noise 40.84624988,-73.93868925,noise 40.84628291,-73.93885187,noise 40.84628291,-73.93885187,noise 40.84626094,-73.93883382,noise 40.71678366,-73.96552085,noise 40.84626094,-73.93883382,noise 40.84626094,-73.93883382,noise 40.84222972,-73.91795127,noise 40.8642891,-73.89158613,noise 40.63005842,-73.96136854,noise 40.66124868,-73.92936901,noise 40.67843595,-73.9491871,noise 40.85709322,-73.92752345,noise 40.67725598,-73.90601545,noise 40.88049256,-73.87669332,noise 40.59366229,-73.98366718,noise 40.71856805,-73.83751645,noise 40.83352824,-73.92490751,noise 40.82642774,-73.95045076,noise 40.64606398,-73.94907482,noise 40.86302057,-73.91755686,noise 40.75846663,-73.84203222,noise 40.70459296,-73.90824552,noise 40.72612272,-73.79059206,noise 40.69959035,-73.94423377,noise 40.7584045,-73.84479012,noise 40.86408584,-73.91800384,noise 40.76346859,-73.99281632,noise 40.62258623,-73.91053043,noise 40.59550664,-73.73961077,noise 40.86437703,-73.92653575,noise 40.73249706,-74.00183297,noise 40.51372147,-74.25074877,noise 40.6527363,-73.96274291,noise 40.57978851,-73.84318202,noise 40.7132428,-73.9388152,noise 40.86941776,-73.91657993,noise 40.81166481,-73.95260757,noise 40.82902908,-73.88714845,noise 40.85702748,-73.92773319,noise 40.75538176,-73.9272046,noise 40.78867286,-73.94771624,noise 40.66329459,-73.91472189,noise 40.67147861,-73.93922122,noise 40.71522127,-73.99171409,noise 40.73905772,-73.86286,noise 40.67338315,-73.95669659,noise 40.63331431,-74.02702136,noise 40.84556386,-73.93897542,noise 40.85354567,-73.91729026,noise 40.51478878,-74.24842226,noise 40.81823571,-73.95272212,noise 40.59355263,-73.9846394,noise 40.66458204,-73.89202606,noise 40.87752551,-73.86442221,noise 40.67250249,-73.95780388,noise 40.79365992,-73.97066719,noise 40.69357091,-73.96460248,noise 40.64710543,-73.96745235,noise 40.85237109,-73.9346279,noise 40.69357091,-73.96460248,noise 40.69822499,-73.80633492,noise 40.69357091,-73.96460248,noise 40.8642891,-73.89158613,noise 40.81879549,-73.92211692,noise 40.81267027,-73.9195664,noise 40.6368429,-73.93075319,noise 40.85234828,-73.90234491,noise 40.84805726,-73.914879,noise 40.83435759,-73.9255968,noise 40.80369835,-73.94962606,noise 40.84433921,-73.9380296,noise 40.61336789,-73.96302421,noise 40.63623142,-74.11616094,noise 40.51478878,-74.24842226,noise 40.83192699,-73.86614848,noise 40.68740156,-73.94022353,noise 40.69362838,-73.96405432,noise 40.69362838,-73.96405432,noise 40.86126018,-73.91241823,noise 40.69959035,-73.94423377,noise 40.75880977,-73.79044237,noise 40.69970015,-73.9442445,noise 40.69357091,-73.96460248,noise 40.83049999,-73.94837356,noise 40.656725,-74.00086138,noise 40.86917,-73.90497408,noise 40.72306557,-73.98907949,noise 40.757794,-73.79183887,noise 40.74072541,-73.92391147,noise 40.69871474,-73.92919228,noise 40.83022246,-73.94768359,noise 40.63385364,-73.93043924,noise 40.69357091,-73.96460248,noise 40.79589753,-73.94892047,noise 40.69357091,-73.96460248,noise 40.84123409,-73.93645312,noise 40.79984321,-73.95245707,noise 40.83555915,-73.92464141,noise 40.82388687,-73.94041166,noise 40.7296035,-73.98823774,noise 40.58485012,-73.81903413,noise 40.58073897,-73.83395295,noise 40.86311658,-73.91747359,noise 40.67613412,-73.84566296,noise 40.74016429,-73.83022486,noise 40.68821529,-73.96278078,noise 40.57343122,-73.99174248,noise 40.76058323,-73.98592204,noise 40.7054412,-73.94797989,noise 40.74016429,-73.83022486,noise 40.7251633,-73.81031904,noise 40.71886081,-73.99159098,noise 40.71177784,-73.95193553,noise 40.72612272,-73.79059206,noise 40.81240296,-73.95217716,noise 40.76550199,-73.98746608,noise 40.83022246,-73.94768359,noise 40.68207438,-73.9602135,noise 40.61843371,-73.90092573,noise 40.69451199,-73.90895178,noise 40.86165878,-73.92932247,noise 40.72583304,-73.81033157,noise 40.69785901,-73.80416136,noise 40.8216015,-73.95461657,noise 40.78867286,-73.94771624,noise 40.69282238,-73.95875023,noise 40.7054412,-73.94797989,noise 40.69534701,-73.90297877,noise 40.63572999,-73.8932257,noise 40.69337649,-73.95781591,noise 40.8066392,-73.94630058,noise 40.87644142,-73.91285023,noise 40.83037632,-73.94802676,noise 40.81337978,-73.95146477,noise 40.85222757,-73.90241377,noise 40.85230074,-73.89509387,noise 40.84109426,-73.88110689,noise 40.63820736,-74.01750752,noise 40.67474891,-73.94169493,noise 40.69174454,-73.94168007,noise 40.58073897,-73.83395295,noise 40.77090216,-73.7352894,noise 40.76045412,-73.91527612,noise 40.59034214,-74.06662421,noise 40.73722507,-73.87569549,noise 40.65999841,-73.96099798,noise 40.81231515,-73.95222779,noise 40.67796683,-74.00135197,noise 40.78867286,-73.94771624,noise 40.67222795,-73.94471087,noise 40.72452142,-73.93956609,noise 40.80078776,-73.95334131,noise 40.58294771,-74.156865,noise 40.71589488,-73.94002482,noise 40.76743782,-73.92062464,noise 40.69317193,-73.97085925,noise 40.72436787,-73.97866364,noise 40.79904275,-73.94259015,noise 40.72583304,-73.81033157,noise 40.82392982,-73.93856168,noise 40.70060535,-73.92405463,noise 40.80135148,-73.95601737,noise 40.64814187,-73.94928585,noise 40.67435858,-73.91821187,noise 40.86379932,-73.90251971,noise 40.82418436,-73.93722456,noise 40.8506451,-73.94049974,noise 40.70685211,-73.9481952,noise 40.7054412,-73.94797989,noise 40.74527188,-73.97844042,noise 40.82469135,-73.92660486,noise 40.68230634,-73.92894289,noise 40.86771566,-73.88161247,noise 40.74527188,-73.97844042,noise 40.74527188,-73.97844042,noise 40.79340078,-73.95113263,noise 40.84711145,-73.93818244,noise 40.82176574,-73.94144328,noise 40.8897167,-73.86380782,noise 40.68230634,-73.92894289,noise 40.71882915,-73.95198456,noise 40.76550199,-73.98746608,noise 40.70690124,-73.9475784,noise 40.63448326,-73.90179903,noise 40.79793202,-73.93399151,noise 40.7215881,-73.73101181,noise 40.81539342,-73.93796262,noise 40.86404894,-73.90234219,noise 40.78869209,-73.94776317,noise 40.86333019,-73.92915078,noise 40.79861876,-73.96736743,noise 40.8506451,-73.94049974,noise 40.68816916,-74.00029568,noise 40.63448326,-73.90179903,noise 40.6566213,-73.95806621,noise 40.6769626,-73.88245943,noise 40.82043727,-73.9362273,noise 40.86390903,-73.90242555,noise 40.70532934,-73.93331136,noise 40.55078942,-74.20097073,noise 40.85246621,-73.90223629,noise 40.54643117,-74.20988469,noise 40.7212143,-73.97948719,noise 40.69314663,-74.0187985,noise 40.74985425,-73.98793822,noise 40.72100987,-73.95542824,noise 40.87575492,-73.85086586,noise 40.68823778,-74.00050121,noise 40.86357715,-73.90269718,noise 40.56347792,-74.10753699,noise 40.71795041,-73.95792662,noise 40.75979055,-73.84272936,noise 40.6881472,-74.00028486,noise 40.69575927,-73.84567162,noise 40.78869209,-73.94776317,noise 40.86404894,-73.90234219,noise 40.80269908,-73.94918615,noise 40.84657657,-73.9131496,noise 40.68115298,-73.97251579,noise 40.69335973,-73.97584639,noise 40.70685211,-73.9481952,noise 40.79326889,-73.95080408,noise 40.79789147,-73.96757366,noise 40.85375144,-73.91716349,noise 40.68177374,-73.94359969,noise 40.78869209,-73.94776317,noise 40.74985425,-73.98793822,noise 40.87892449,-73.90478656,noise 40.54620814,-74.21176223,noise 40.87563443,-73.9127862,noise 40.72523739,-73.77523271,noise 40.83255063,-73.94325867,noise 40.7054412,-73.94797989,noise 40.68295573,-73.88929217,noise 40.78847688,-73.96701128,noise 40.65370611,-73.95745898,noise 40.69321102,-73.91255604,noise 40.8239852,-73.89389558,noise 40.76455836,-73.9164297,noise 40.70387024,-73.81937827,noise 40.70859535,-73.93774461,noise 40.82317133,-73.92748814,noise 40.71029545,-73.75148035,noise 40.68115298,-73.97251579,noise 40.58460611,-73.81236356,noise 40.81666203,-73.93899108,noise 40.80203814,-73.96548391,noise 40.81356636,-73.95132013,noise 40.86812594,-73.93040388,noise 40.67522241,-73.93411657,noise 40.67117999,-73.88308245,noise 40.68079091,-73.99172918,noise 40.75018906,-73.98751227,noise 40.68079091,-73.99172918,noise 40.7212143,-73.97948719,noise 40.82763977,-73.94212103,noise 40.75647412,-73.94726506,noise 40.68115298,-73.97251579,noise 40.82117097,-73.94312385,noise 40.86522282,-73.83618558,noise 40.79861876,-73.96736743,noise 40.86053026,-73.92859702,noise 40.6830057,-73.96273321,noise 40.84336697,-73.91544521,noise 40.68079091,-73.99172918,noise 40.82892541,-73.95039469,noise 40.74431506,-73.98547077,noise 40.84285123,-73.91581813,noise 40.6983848,-73.99056214,noise 40.7041637,-73.93017472,noise 40.82892541,-73.95039469,noise 40.83410524,-73.87499411,noise 40.80827954,-73.93879286,noise 40.854742,-73.90274987,noise 40.84329992,-73.90679646,noise 40.64635842,-73.90654185,noise 40.87684293,-73.85172404,noise 40.70685211,-73.9481952,noise 40.82166745,-73.95481163,noise 40.68494536,-73.98181677,noise 40.65123618,-73.95846962,noise 40.66947464,-73.95683611,noise 40.81539342,-73.93796262,noise 40.8216015,-73.95461657,noise 40.83268605,-73.93967743,noise 40.7438043,-73.98373864,noise 40.70890415,-73.95925247,noise 40.83247581,-73.85254203,noise 40.64508744,-73.90636706,noise 40.67893494,-73.96195674,noise 40.812074,-73.93603301,noise 40.87575492,-73.85086586,noise 40.68819386,-74.00040385,noise 40.7889962,-73.94655677,noise 40.71752196,-73.95720541,noise 40.66947464,-73.95683611,noise 40.74705161,-73.88665213,noise 40.74705161,-73.88665213,noise 40.71495071,-73.95175288,noise 40.72568573,-73.98076659,noise 40.87925255,-73.87469587,noise 40.66947464,-73.95683611,noise 40.83723085,-73.9388385,noise 40.73275739,-73.99002687,noise 40.69834264,-73.9822026,noise 40.79212864,-73.97177296,noise 40.76516846,-73.81906763,noise 40.8670152,-73.92310895,noise 40.64215311,-73.92918744,noise 40.73275739,-73.99002687,noise 40.6471319,-74.00462341,noise 40.60207896,-74.00326986,noise 40.78857284,-73.93963795,noise 40.69318573,-73.94204302,noise 40.82849131,-73.94940133,noise 40.69321061,-73.97187254,noise 40.72349367,-73.98825325,noise 40.7584045,-73.84479012,noise 40.82849131,-73.94940133,noise 40.86128138,-73.90453706,noise 40.72386918,-73.98388421,noise 40.82609299,-73.95069671,noise 40.82849131,-73.94940133,noise 40.85937291,-73.90679562,noise 40.68935074,-73.81613264,noise 40.79024334,-73.97314607,noise 40.84123409,-73.93645312,noise 40.72228596,-73.98807308,noise 40.71299888,-73.96633081,noise 40.82848305,-73.94933991,noise 40.80135906,-73.96187955,noise 40.79904275,-73.94259015,noise 40.7943569,-73.9414096,noise 40.75354978,-73.82609052,noise 40.74252091,-74.00051966,noise 40.65160586,-73.93329659,noise 40.70118996,-73.93772267,noise 40.76879592,-73.98992038,noise 40.86711239,-73.92915398,noise 40.85827332,-73.93181683,noise 40.74736158,-73.88645672,noise 40.72488931,-73.97828105,noise 40.71299888,-73.96633081,noise 40.62863721,-74.08003528,noise 40.64160011,-73.96094027,noise 40.51770136,-74.24054207,noise 40.68272042,-73.96329223,noise 40.51478878,-74.24842226,noise 40.59013616,-73.97389624,noise 40.73817104,-73.97760193,noise 40.82849131,-73.94940133,noise 40.79823931,-73.93378172,noise 40.67250249,-73.95780388,noise 40.64018175,-73.95530567,noise 40.58413031,-73.93277355,noise 40.69372155,-73.96357105,noise 40.57331323,-73.99226083,noise 40.57358775,-73.99285474,noise 40.86941776,-73.91657993,noise 40.72393644,-73.95031771,noise 40.72306557,-73.98907949,noise 40.72349367,-73.98825325,noise 40.89297597,-73.84941301,noise 40.71795041,-73.95792662,noise 40.67276747,-73.98670844,noise 40.80065918,-73.95439247,noise 40.72114459,-73.99370114,noise 40.79793202,-73.93399151,noise 40.79829144,-73.93374556,noise 40.67344823,-73.96224466,noise 40.68599628,-73.86785845,noise 40.73178067,-73.9977052,noise 40.82176574,-73.94144328,noise 40.66712768,-73.9496499,noise 40.73249706,-74.00183297,noise 40.85797909,-73.93090253,noise 40.59034214,-74.06662421,noise 40.88049256,-73.87669332,noise 40.85986166,-73.90368593,noise 40.65488243,-73.96188035,noise 40.79640523,-73.96310674,noise 40.79556431,-73.93574189,noise 40.656725,-74.00086138,noise 40.656725,-74.00086138,noise 40.82176574,-73.94144328,noise 40.6995931,-73.82599324,noise 40.70614247,-73.83176505,noise 40.86732269,-73.91921467,noise 40.79599921,-73.94332955,noise 40.76743782,-73.92062464,noise 40.70499369,-73.92323452,noise 40.8475587,-73.91622422,noise 40.70499369,-73.92323452,noise 40.63131316,-74.02784198,noise 40.68230634,-73.92894289,noise 40.81337978,-73.95146477,noise 40.68295819,-73.95293701,noise 40.62586437,-74.07689062,noise 40.67420693,-73.96589616,noise 40.57319798,-73.99277199,noise 40.6599508,-73.91759157,noise 40.63623142,-74.11616094,noise 40.83353705,-73.90031994,noise 40.73748845,-73.88345324,noise 40.69541704,-73.90804899,noise 40.6944434,-73.90899154,noise 40.79578759,-73.94276632,noise 40.87959654,-73.90430103,noise 40.76058323,-73.98592204,noise 40.72951901,-73.99981238,noise 40.67411622,-73.96545278,noise 40.79599921,-73.94332955,noise 40.59812047,-73.96278419,noise 40.64814187,-73.94928585,noise 40.68230634,-73.92894289,noise 40.75286058,-73.87445358,noise 40.76045412,-73.91527612,noise 40.76330097,-73.92820671,noise 40.70999814,-73.79262296,noise 40.86582691,-73.9276007,noise 40.82576413,-73.92597135,noise 40.82309587,-73.89687782,noise 40.64552202,-74.07767001,noise 40.89931429,-73.85653553,noise 40.65514879,-73.9546325,noise 40.82576413,-73.92597135,noise 40.82576413,-73.92597135,noise 40.80058026,-73.95612985,noise 40.86732269,-73.91921467,noise 40.86676099,-73.92061093,noise 40.68659479,-73.86798707,noise 40.72114459,-73.99370114,noise 40.84727468,-73.90732221,noise 40.86702889,-73.9190451,noise 40.79648206,-73.96304891,noise 40.65680128,-73.92799335,noise 40.87100884,-73.91925358,noise 40.83142128,-73.92642398,noise 40.82455463,-73.9419539,noise 40.86702889,-73.9190451,noise 40.74418006,-73.87051465,noise 40.83777968,-73.94402036,noise 40.70753056,-73.78659995,noise 40.82991286,-73.94306218,noise 40.66917217,-73.97304342,noise 40.69658408,-73.78348671,noise 40.86782618,-73.91705918,noise 40.73071216,-73.9543321,noise 40.71829162,-73.98247866,noise 40.82763977,-73.94212103,noise 40.82945034,-73.94583049,noise 40.83170407,-73.91097917,noise 40.54154749,-74.1466613,noise 40.74705161,-73.88665213,noise 40.86620047,-73.92805946,noise 40.57497908,-73.96286188,noise 40.6904484,-73.95942962,noise 40.66575795,-73.9946688,noise 40.68480857,-73.97070786,noise 40.82220611,-73.94389255,noise 40.83527045,-73.92386478,noise 40.84815054,-73.94122848,noise 40.70498071,-73.92028784,noise 40.80482562,-73.95424874,noise 40.78869209,-73.94776317,noise 40.87598366,-73.87473458,noise 40.70830264,-73.94505968,noise 40.87595263,-73.86197016,noise 40.76331469,-73.92819586,noise 40.74860668,-73.97810369,noise 40.88130921,-73.90429133,noise 40.87601046,-73.86212914,noise 40.70731657,-74.00427051,noise 40.69034714,-73.9602915,noise 40.85887711,-73.89515218,noise 40.87640993,-73.86337946,noise 40.8906527,-73.86155625,noise 40.65161057,-73.94771554,noise 40.86582691,-73.9276007,noise 40.68460258,-73.97017071,noise 40.70084493,-73.76441247,noise 40.77741014,-73.9787983,noise 40.79597462,-73.94354627,noise 40.74908619,-73.99389339,noise 40.67213102,-73.87648733,noise 40.81268459,-73.90928142,noise 40.85467211,-73.88634221,noise 40.83137895,-73.92895353,noise 40.70409077,-73.92764291,noise 40.86758287,-73.91841532,noise 40.75763866,-73.96340976,noise 40.67844656,-73.92793032,noise 40.85607396,-73.93039842,noise 40.68884235,-73.81747542,noise 40.81349574,-73.95310842,noise 40.8136165,-73.95309389,noise 40.7623893,-73.91179739,noise 40.729766,-73.99702696,noise 40.72543203,-73.99677099,noise 40.72569826,-73.99655812,noise 40.72543203,-73.99677099,noise 40.72452902,-73.99754671,noise 40.73104235,-73.99960311,noise 40.72423534,-73.99778483,noise 40.72423534,-73.99778483,noise 40.70524759,-73.9296975,noise 40.63597511,-73.97814065,noise 40.743771,-73.98132435,noise 40.79834497,-73.96075801,noise 40.84731011,-73.93508468,noise 40.86437703,-73.92653575,noise 40.86437703,-73.92653575,noise 40.74936074,-73.99552469,noise 40.72114459,-73.99370114,noise 40.86191188,-73.90694752,noise 40.64018175,-73.95530567,noise 40.67750174,-73.94699943,noise 40.72386918,-73.98388421,noise 40.86437703,-73.92653575,noise 40.72972315,-73.95924335,noise 40.85706015,-73.90468411,noise 40.77033581,-73.91996772,noise 40.75676421,-73.96715332,noise 40.63195828,-73.94273028,noise 40.63914998,-74.07565203,noise 40.63346927,-74.02101186,noise 40.73748845,-73.88345324,noise 40.62569125,-74.03014879,noise 40.68230634,-73.92894289,noise 40.85237109,-73.9346279,noise 40.76922506,-73.92123624,noise 40.64460505,-73.95210284,noise 40.68230634,-73.92894289,noise 40.61670722,-73.95979141,noise 40.85706015,-73.90468411,noise 40.68272042,-73.96329223,noise 40.68230634,-73.92894289,noise 40.68507642,-73.97789379,noise 40.82517196,-73.9415017,noise 40.80597242,-73.95302703,noise 40.6895765,-73.97175508,noise 40.84348354,-73.93428967,noise 40.74705161,-73.88665213,noise 40.64269519,-73.96977506,noise 40.80080026,-73.96545927,noise 40.72729198,-73.98455085,noise 40.71077065,-73.96815349,noise 40.6936969,-73.80036912,noise 40.76331469,-73.92819586,noise 40.77860733,-73.98162149,noise 40.66108263,-73.90802423,noise 40.82662544,-73.93914816,noise 40.76544717,-73.82718577,noise 40.68596764,-73.82572953,noise 40.7985263,-73.9417021,noise 40.63746748,-74.02566469,noise 40.82837372,-73.8240774,noise 40.75168549,-73.85543864,noise 40.62246996,-74.00516204,noise 40.63597511,-73.97814065,noise 40.82417266,-73.95300695,noise 40.82417266,-73.95300695,noise 40.78967436,-73.96984918,noise 40.86437703,-73.92653575,noise 40.7623246,-73.9764531,noise 40.71879472,-73.98901165,noise 40.69173908,-73.94174138,noise 40.64631775,-73.9519899,noise 40.89931429,-73.85653553,noise 40.86437703,-73.92653575,noise 40.81160127,-73.93489192,noise 40.77297571,-73.98572807,noise 40.70963675,-73.83002488,noise 40.80203814,-73.96548391,noise 40.64998168,-73.83758618,noise 40.76115165,-73.92364989,noise 40.69132132,-73.90739474,noise 40.68773732,-73.94769803,noise 40.72349367,-73.98825325,noise 40.86153731,-73.91985074,noise 40.51478878,-74.24842226,noise 40.72349367,-73.98825325,noise 40.88233675,-73.87905861,noise 40.76897497,-73.77376015,noise 40.73620797,-73.99823549,noise 40.69338205,-73.96635514,noise 40.86782618,-73.91705918,noise 40.74928842,-73.98454214,noise 40.70279083,-73.92937189,noise 40.83688234,-73.86713594,noise 40.6917582,-73.94155385,noise 40.51373631,-74.19666593,noise 40.86782618,-73.91705918,noise 40.58231678,-73.96558667,noise 40.74978836,-73.9877686,noise 40.81548863,-73.94726888,noise 40.72579798,-73.97916828,noise 40.70986855,-73.96216632,noise 40.73521408,-73.99171521,noise 40.69043308,-73.83292253,noise 40.82382209,-73.85070404,noise 40.77860733,-73.98162149,noise 40.51320075,-74.19685136,noise 40.66947464,-73.95683611,noise 40.80078776,-73.95334131,noise 40.67915413,-73.98342993,noise 40.8506451,-73.94049974,noise 40.83733075,-73.94656854,noise 40.6298778,-74.01035405,noise 40.67915413,-73.98342993,noise 40.73823082,-73.99675955,noise 40.75700362,-73.98252622,noise 40.84809443,-73.91320545,noise 40.83163583,-73.91893277,noise 40.79748392,-73.94878562,noise 40.854742,-73.90274987,noise 40.86722009,-73.88553981,noise 40.82389366,-73.89584683,noise 40.75627402,-73.87861613,noise 40.78642512,-73.94238075,noise 40.75857397,-73.98504894,noise 40.80482562,-73.95424874,noise 40.76788911,-73.98151253,noise 40.84952496,-73.93991518,noise 40.69679084,-73.92949364,noise 40.70968754,-74.01167217,noise 40.69718424,-73.95994122,noise 40.7461181,-73.88360055,noise 40.72302217,-73.99881307,noise 40.72423534,-73.99778483,noise 40.7111437,-73.95877136,noise 40.76122253,-73.98420727,noise 40.72732217,-73.85474825,noise 40.85474477,-73.90277517,noise 40.85474477,-73.90277517,noise 40.78698746,-73.94173387,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.77850171,-73.95632493,noise 40.70710906,-73.79480327,noise 40.84849164,-73.90524579,noise 40.72662405,-73.89415161,noise 40.7212051,-73.99670626,noise 40.63597511,-73.97814065,noise 40.85695995,-73.88787828,noise 40.72114459,-73.99370114,noise 40.82830508,-73.92085917,noise 40.85652705,-73.90392935,noise 40.79365992,-73.97066719,noise 40.72926369,-74.00389307,noise 40.82687657,-73.94750556,noise 40.6917582,-73.94155385,noise 40.75177243,-73.98462818,noise 40.74910473,-73.98616989,noise 40.71865809,-73.81360953,noise 40.71308054,-73.96407269,noise 40.74978836,-73.9877686,noise 40.74978836,-73.9877686,noise 40.8003128,-73.94672106,noise 40.84348354,-73.93428967,noise 40.844968,-73.93849887,noise 40.68422056,-73.91082271,noise 40.85429249,-73.90025992,noise 40.85429249,-73.90025992,noise 40.73341927,-74.00293352,noise 40.6841916,-73.91611577,noise 40.62503355,-74.00609526,noise 40.72473421,-73.98739077,noise 40.8221488,-73.94456825,noise 40.8506451,-73.94049974,noise 40.64018175,-73.95530567,noise 40.64580253,-73.97069255,noise 40.64637897,-73.97084004,noise 40.82700844,-73.94776923,noise 40.7943569,-73.9414096,noise 40.86824707,-73.89170261,noise 40.7593841,-73.98889305,noise 40.85461992,-73.90119929,noise 40.72473421,-73.98739077,noise 40.70985573,-73.96500864,noise 40.89931429,-73.85653553,noise 40.79131187,-73.96591923,noise 40.85064236,-73.94049974,noise 40.82380305,-73.85083777,noise 40.6574059,-73.74506014,noise 40.68358446,-73.89534126,noise 40.85816685,-73.89583654,noise 40.85601955,-73.8657132,noise 40.68212162,-73.92762709,noise 40.78882585,-73.94617411,noise 40.7170331,-73.95643735,noise 40.70745053,-74.0119459,noise 40.70835349,-74.01258449,noise 40.7170331,-73.95643735,noise 40.79877959,-73.93794199,noise 40.77879404,-73.98205472,noise 40.80077953,-73.95334854,noise 40.71452882,-74.01567706,noise 40.61826878,-74.16595311,noise 40.85849863,-73.90500017,noise 40.80140226,-73.9525607,noise 40.66311703,-73.91587554,noise 40.77976188,-73.944358,noise 40.76079439,-73.98451059,noise 40.76272656,-73.9269872,noise 40.73159668,-73.99478981,noise 40.76226482,-73.92602388,noise 40.63937267,-73.95696367,noise 40.814442,-73.9514929,noise 40.69593452,-73.90989467,noise 40.85237109,-73.9346279,noise 40.71531994,-73.98988518,noise 40.76368559,-73.99623126,noise 40.65387516,-73.95449642,noise 40.67413839,-73.72954485,noise 40.63520686,-74.02028461,noise 40.72452071,-73.99511146,noise 40.69338205,-73.96635514,noise 40.81980278,-73.95231997,noise 40.7097167,-73.95235904,noise 40.868598,-73.92178019,noise 40.69173908,-73.94174138,noise 40.67336696,-73.96565505,noise 40.67338343,-73.96564783,noise 40.67323227,-73.96500982,noise 40.6917582,-73.94155385,noise 40.82538549,-73.92618134,noise 40.72556247,-73.98237572,noise 40.58886785,-73.80198947,noise 40.65049302,-73.89797708,noise 40.82552268,-73.92611254,noise 40.64846321,-74.00075677,noise 40.70513712,-73.9434104,noise 40.70091134,-73.92608475,noise 40.66209295,-73.94210608,noise 40.74423073,-73.99387218,noise 40.6298778,-74.01035405,noise 40.68337716,-73.76042513,noise 40.58886785,-73.80198947,noise 40.78867518,-73.94680259,noise 40.64846321,-74.00075677,noise 40.85661424,-73.9296821,noise 40.71202671,-73.9565813,noise 40.7170331,-73.95643735,noise 40.83754232,-73.85451845,noise 40.76276594,-73.91259828,noise 40.57281119,-73.9991541,noise 40.70745053,-74.0119459,noise 40.86347533,-73.92860832,noise 40.88054197,-73.87669685,noise 40.68923061,-73.8424739,noise 40.73154464,-73.99919177,noise 40.78397641,-73.97029952,noise 40.7985263,-73.9417021,noise 40.7415488,-73.98957446,noise 40.75797293,-73.98553637,noise 40.82837372,-73.8240774,noise 40.72452902,-73.99754671,noise 40.72423534,-73.99778483,noise 40.72423534,-73.99778483,noise 40.72423534,-73.99778483,noise 40.72379069,-73.99817448,noise 40.76142288,-73.98404839,noise 40.76142288,-73.98404839,noise 40.76109628,-73.98425784,noise 40.72084565,-73.95662967,noise 40.63597511,-73.97814065,noise 40.70393413,-73.94755188,noise 40.69489819,-73.93155477,noise 40.82197298,-73.93883446,noise 40.86954934,-73.91634837,noise 40.67515875,-73.94931577,noise 40.73980486,-73.98145537,noise 40.67516693,-73.94918598,noise 40.86769186,-73.92121362,noise 40.7620304,-73.9937081,noise 40.64269519,-73.96977506,noise 40.83764297,-73.90333864,noise 40.86437703,-73.92653575,noise 40.72932139,-74.00000361,noise 40.67915413,-73.98342993,noise 40.80043804,-73.96571229,noise 40.69051172,-73.80283071,noise 40.66064331,-73.96062997,noise 40.85237109,-73.9346279,noise 40.85328195,-73.90290021,noise 40.82809878,-73.92020177,noise 40.83160782,-73.92627562,noise 40.66064331,-73.96062997,noise 40.86693357,-73.9201154,noise 40.67350675,-73.95693444,noise 40.82401176,-73.9490109,noise 40.71176537,-73.94268697,noise 40.65237812,-73.97911553,noise 40.79904275,-73.94259015,noise 40.64413371,-74.01499388,noise 40.86727603,-73.91921472,noise 40.64422979,-74.01490742,noise 40.76173407,-73.76007109,noise 40.89041615,-73.86343024,noise 40.6765475,-73.96352996,noise 40.75453458,-73.99545576,noise 40.87505157,-73.86594234,noise 40.83142128,-73.92642398,noise 40.79155859,-73.93864933,noise 40.6411861,-73.91955691,noise 40.7728776,-73.99341102,noise 40.89041615,-73.86343024,noise 40.74072541,-73.92391147,noise 40.67915413,-73.98342993,noise 40.78251407,-73.9197581,noise 40.67938027,-74.00542243,noise 40.68340517,-73.94020908,noise 40.69044969,-73.84076901,noise 40.89041615,-73.86343024,noise 40.84348354,-73.93428967,noise 40.71983527,-74.00746397,noise 40.82943199,-73.94195325,noise 40.82412473,-73.89047728,noise 40.72031794,-74.01216827,noise 40.83050507,-73.94746295,noise 40.72031794,-74.01216827,noise 40.71905807,-74.01244221,noise 40.83021267,-73.91696876,noise 40.7216382,-74.01189073,noise 40.72031794,-74.01216827,noise 40.67938027,-74.00542243,noise 40.72031794,-74.01216827,noise 40.72031794,-74.01216827,noise 40.67833142,-73.98954108,noise 40.59799328,-73.79667261,noise 40.68973631,-73.89032301,noise 40.71768949,-73.95747225,noise 40.67938027,-74.00542243,noise 40.87141517,-73.91941579,noise 40.72031794,-74.01216827,noise 40.70513712,-73.9434104,noise 40.82959223,-73.95005814,noise 40.87492967,-73.86497351,noise 40.82126004,-73.95187091,noise 40.70259527,-73.85529263,noise 40.89041615,-73.86343024,noise 40.84727468,-73.90732221,noise 40.85040362,-73.94060116,noise 40.68209912,-73.96033246,noise 40.83147089,-73.94676838,noise 40.87505157,-73.86594234,noise 40.76449114,-73.98165065,noise 40.80897314,-73.94832523,noise 40.71760353,-74.0106671,noise 40.7216382,-74.01189073,noise 40.7188661,-74.01084406,noise 40.72031794,-74.01216827,noise 40.70131244,-73.98194935,noise 40.70859535,-73.93774461,noise 40.74400768,-73.98569458,noise 40.71905807,-74.01244221,noise 40.81562563,-73.96037932,noise 40.65407958,-73.95098961,noise 40.72354594,-74.01058507,noise 40.82930538,-73.87060554,noise 40.82138173,-73.95413258,noise 40.73867255,-73.84689296,noise 40.73709869,-73.8460558,noise 40.73841163,-73.84676726,noise 40.83024257,-73.94968908,noise 40.72507372,-73.98121053,noise 40.79736777,-73.96052382,noise 40.57526084,-73.96889125,noise 40.74705161,-73.88665213,noise 40.57604964,-73.973027,noise 40.86637626,-73.92825812,noise 40.86637626,-73.92825812,noise 40.73007267,-73.98658516,noise 40.57526084,-73.96889125,noise 40.57526084,-73.96889125,noise 40.71085754,-73.96491072,noise 40.74705161,-73.88665213,noise 40.68209912,-73.96033246,noise 40.57565643,-73.97019777,noise 40.57558225,-73.96992062,noise 40.57604964,-73.973027,noise 40.57526084,-73.96889125,noise 40.57565643,-73.97019777,noise 40.57526084,-73.96889125,noise 40.57557095,-73.96869312,noise 40.57604964,-73.973027,noise 40.57584058,-73.97116242,noise 40.80897314,-73.94832523,noise 40.75444761,-73.93013645,noise 40.72318137,-73.9991125,noise 40.71455156,-73.93789415,noise 40.57526084,-73.96889125,noise 40.57565643,-73.97019777,noise 40.73645948,-73.84836667,noise 40.87249774,-73.9171763,noise 40.59013616,-73.97389624,noise 40.87249774,-73.9171763,noise 40.8711945,-73.91409008,noise 40.80202409,-73.94968151,noise 40.87249774,-73.9171763,noise 40.8719286,-73.91580662,noise 40.69011864,-73.94524414,noise 40.87249774,-73.9171763,noise 40.8302701,-73.94392189,noise 40.87249774,-73.9171763,noise 40.87211558,-73.91627644,noise 40.83526702,-73.91502546,noise 40.75854115,-73.84435303,noise 40.84752393,-73.93964229,noise 40.75854116,-73.84435664,noise 40.72094153,-73.99485919,noise 40.66196937,-73.96163481,noise 40.6219442,-74.03167085,noise 40.7296035,-73.98823774,noise 40.63385364,-73.93043924,noise 40.82000567,-73.95887372,noise 40.68840034,-73.95117353,noise 40.71387984,-73.95769833,noise 40.86019986,-73.92694526,noise 40.62910619,-74.07655931,noise 40.82000567,-73.95887372,noise 40.82000567,-73.95887372,noise 40.72708959,-73.99154665,noise 40.82000567,-73.95887372,noise 40.86408584,-73.91800384,noise 40.72062589,-73.99497105,noise 40.79318186,-73.94643062,noise 40.7584045,-73.84479012,noise 40.68829638,-73.95199573,noise 40.85202686,-73.91223158,noise 40.6938318,-73.90960541,noise 40.69541704,-73.90804899,noise 40.75898052,-73.96243442,noise 40.72885466,-74.0052677,noise 40.82080358,-73.9026694,noise 40.68935074,-73.81613264,noise 40.71768949,-73.95747225,noise 40.67643874,-73.95846474,noise 40.7475205,-73.9824024,noise 40.70273581,-73.93378282,noise 40.8130014,-73.94615095,noise 40.57672691,-73.98393411,noise 40.76330097,-73.92820671,noise 40.82746873,-73.94598387,noise 40.82104789,-73.90270518,noise 40.85717578,-73.93239997,noise 40.67646073,-73.95856928,noise 40.68637077,-73.94265831,noise 40.7113011,-73.94758936,noise 40.82959223,-73.95005814,noise 40.80238678,-73.95056979,noise 40.85013254,-73.91161598,noise 40.69183002,-73.92784012,noise 40.64814187,-73.94928585,noise 40.83192699,-73.86614848,noise 40.69179617,-73.95968483,noise 40.85482842,-73.93131428,noise 40.82415421,-73.9483821,noise 40.83200082,-73.86590983,noise 40.69171804,-73.92873814,noise 40.72114459,-73.99370114,noise 40.76058323,-73.98592204,noise 40.73924884,-73.88445696,noise 40.71085754,-73.96491072,noise 40.82104789,-73.90270518,noise 40.71254873,-73.95796249,noise 40.80729251,-73.94645539,noise 40.64560541,-73.97274304,noise 40.68984412,-73.92560301,noise 40.85459367,-73.9289215,noise 40.70409077,-73.92764291,noise 40.85114171,-73.78846705,noise 40.74883018,-73.98551309,noise 40.71158055,-73.9357471,noise 40.67633703,-73.95806103,noise 40.72443564,-73.86929389,noise 40.755483,-73.88616134,noise 40.70164087,-73.91717939,noise 40.74736158,-73.88645672,noise 40.86437703,-73.92653575,noise 40.8463816,-73.90945595,noise 40.70137579,-73.98345326,noise 40.74566743,-73.92200031,noise 40.868598,-73.92178019,noise 40.70919372,-74.00904623,noise 40.72104319,-73.95643113,noise 40.83087135,-73.90284981,noise 40.7077233,-73.93922424,noise 40.82410397,-73.9528408,noise 40.6938318,-73.90960541,noise 40.71272883,-73.93750628,noise 40.71677946,-73.93634091,noise 40.67915413,-73.98342993,noise 40.83509622,-73.94585119,noise 40.84770968,-73.93797586,noise 40.83399685,-73.94276597,noise 40.63597511,-73.97814065,noise 40.59034214,-74.06662421,noise 40.63597511,-73.97814065,noise 40.8309032,-73.86613609,noise 40.80387793,-73.94613304,noise 40.74621419,-73.91503078,noise 40.78905477,-73.94860432,noise 40.66262613,-73.9940599,noise 40.85657227,-73.93296089,noise 40.69496964,-73.93168813,noise 40.73924884,-73.88445696,noise 40.68723335,-73.95690033,noise 40.67386906,-73.95013149,noise 40.83435759,-73.9255968,noise 40.72100987,-73.95542824,noise 40.57818799,-73.99202988,noise 40.70430345,-73.92979948,noise 40.63820736,-74.01750752,noise 40.83352824,-73.92490751,noise 40.66615194,-73.98218235,noise 40.84342648,-73.91426328,noise 40.67386906,-73.95013149,noise 40.83680331,-73.94558599,noise 40.88443615,-73.87878355,noise 40.73748845,-73.88345324,noise 40.72369215,-73.97603382,noise 40.78905477,-73.94860432,noise 40.8027236,-73.9553663,noise 40.88945854,-73.8982722,noise 40.86019986,-73.92694526,noise 40.69090398,-73.98016361,noise 40.71612329,-73.9360277,noise 40.69821465,-73.92405015,noise 40.73378972,-73.99445046,noise 40.6151237,-73.93605606,noise 40.72142619,-73.96053273,noise 40.66265358,-73.99411036,noise 40.6395296,-73.95128856,noise 40.73146214,-73.97412592,noise 40.77090216,-73.7352894,noise 40.84711145,-73.93818244,noise 40.85180241,-73.93866244,noise 40.84348354,-73.93428967,noise 40.80770187,-73.85247771,noise 40.87796751,-73.85767727,noise 40.78905477,-73.94860432,noise 40.68411194,-73.94289822,noise 40.75780848,-73.86170242,noise 40.83922638,-73.87708061,noise 40.87801695,-73.85549665,noise 40.67938027,-74.00542243,noise 40.68658837,-73.84118208,noise 40.79440872,-73.93563827,noise 40.68575338,-73.84076941,noise 40.86811606,-73.89547748,noise 40.69403903,-73.96078695,noise 40.6151237,-73.93605606,noise 40.87604477,-73.88059601,noise 40.73064185,-73.95708153,noise 40.85635634,-73.89097729,noise 40.62345781,-74.00952452,noise 40.72932139,-74.00000361,noise 40.81262378,-73.96301466,noise 40.6982463,-73.9805437,noise 40.82507829,-73.90407954,noise 40.88270955,-73.88124583,noise 40.71118088,-73.93768087,noise 40.82333675,-73.90573325,noise 40.82231741,-73.85026301,noise 40.73259304,-73.97441053,noise 40.71768949,-73.95747225,noise 40.8515364,-73.93909645,noise 40.73765424,-73.97386731,noise 40.83035789,-73.94384593,noise 40.6470955,-74.0136396,noise 40.71106169,-73.91826783,noise 40.78905477,-73.94860432,noise 40.75780848,-73.86170242,noise 40.85035422,-73.94060482,noise 40.82176574,-73.94144328,noise 40.67938027,-74.00542243,noise 40.68723335,-73.95690033,noise 40.71884964,-73.98921727,noise 40.71884964,-73.98921727,noise 40.74698024,-73.88663782,noise 40.68340517,-73.94020908,noise 40.87078267,-73.90685195,noise 40.82388692,-73.9523062,noise 40.71879472,-73.98901165,noise 40.8712826,-73.84783143,noise 40.67223859,-73.80539378,noise 40.88528505,-73.84503275,noise 40.79358813,-73.93577991,noise 40.79318186,-73.94643062,noise 40.82613759,-73.89751266,noise 40.6894411,-73.81771898,noise 40.72979897,-73.97480128,noise 40.71029013,-73.95181757,noise 40.6519488,-74.00807984,noise 40.87178904,-73.85754225,noise 40.82687719,-73.84669361,noise 40.67367804,-73.86575589,noise 40.5452723,-74.14872039,noise 40.68848787,-73.95047033,noise 40.66129557,-73.91735563,noise 40.54452762,-74.14067346,noise 40.71135984,-73.9568703,noise 40.73243667,-74.00193039,noise 40.63820736,-74.01750752,noise 40.63820736,-74.01750752,noise 40.73249706,-74.00183297,noise 40.7353901,-73.97510948,noise 40.78905477,-73.94860432,noise 40.72847619,-73.97569656,noise 40.69403903,-73.96078695,noise 40.72979897,-73.97480128,noise 40.87413947,-73.87751506,noise 40.72979897,-73.97480128,noise 40.73496283,-73.97978966,noise 40.73421803,-73.97482125,noise 40.68627533,-73.96467126,noise 40.84201878,-73.91108102,noise 40.68494536,-73.98181677,noise 40.83374048,-73.93547013,noise 40.82410397,-73.9528408,noise 40.68877397,-73.81762705,noise 40.73543266,-73.98269426,noise 40.72416094,-73.97348658,noise 40.8558127,-73.89077575,noise 40.72124725,-73.97956294,noise 40.68500302,-73.98191771,noise 40.57092387,-73.85444404,noise 40.73830772,-73.9998737,noise 40.71033685,-73.95196904,noise 40.73150889,-74.00400866,noise 40.78838159,-73.94700145,noise 40.65923677,-73.9762408,noise 40.72124725,-73.97956294,noise 40.58756594,-73.81125353,noise 40.68747746,-73.99826562,noise 40.85499223,-73.92987178,noise 40.80559563,-73.95818187,noise 40.7487336,-73.82127412,noise 40.79620547,-73.93378736,noise 40.69188163,-73.94706012,noise 40.73222254,-74.00355407,noise 40.72253466,-73.95934515,noise 40.82206054,-73.92040051,noise 40.83352824,-73.92490751,noise 40.61921885,-73.9225407,noise 40.86053026,-73.92859702,noise 40.82959223,-73.95005814,noise 40.74705161,-73.88665213,noise 40.70775423,-73.96841463,noise 40.71169312,-73.93580832,noise 40.86091822,-73.90351449,noise 40.72069256,-73.97820666,noise 40.68641745,-73.9086888,noise 40.58411122,-73.93298959,noise 40.67843036,-74.00891948,noise 40.82532651,-73.87649204,noise 40.70289504,-73.94421658,noise 40.7908949,-73.94516848,noise 40.72342524,-73.99027359,noise 40.87302289,-73.91845926,noise 40.80054389,-73.96191613,noise 40.76449114,-73.98165065,noise 40.80770336,-73.92954593,noise 40.68536135,-73.88220304,noise 40.6846667,-73.96403391,noise 40.72249835,-73.97689288,noise 40.82837372,-73.8240774,noise 40.6868654,-73.96446902,noise 40.72438348,-73.97442811,noise 40.8299061,-73.88042225,noise 40.79495957,-73.95062948,noise 40.72566263,-73.99984847,noise 40.72106363,-73.75944187,noise 40.74245154,-73.98681724,noise 40.72342524,-73.99027359,noise 40.72398009,-74.00075041,noise 40.72423687,-73.96065734,noise 40.79730064,-73.95020517,noise 40.80321651,-73.95253051,noise 40.85354567,-73.91729026,noise 40.75647412,-73.94726506,noise 40.79495957,-73.95062948,noise 40.88296989,-73.88353453,noise 40.74425669,-73.98051222,noise 40.86016587,-73.89379447,noise 40.59635584,-73.77242937,noise 40.68369261,-73.87963161,noise 40.6613542,-73.9696801,noise 40.71179396,-73.95806397,noise 40.71160986,-73.95753384,noise 40.68369261,-73.87963161,noise 40.74173312,-74.00308184,noise 40.68395546,-73.98955823,noise 40.72192991,-73.97557268,noise 40.79462162,-73.94981712,noise 40.64013623,-73.95135297,noise 40.68595407,-73.9642784,noise 40.80441984,-73.95536877,noise 40.83811767,-73.94483683,noise 40.7188271,-73.98423175,noise 40.75940563,-73.9851029,noise 40.74237799,-73.88187849,noise 40.70019096,-73.90560444,noise 40.82009873,-73.90332077,noise 40.7996413,-73.94298694,noise 40.77473537,-73.98817561,noise 40.72204604,-73.91063501,noise 40.73841163,-73.84676726,noise 40.84348354,-73.93428967,noise 40.84348354,-73.93428967,noise 40.68209912,-73.96033246,noise 40.60711787,-73.98842139,noise 40.78311615,-73.95085853,noise 40.78311615,-73.95085853,noise 40.62964721,-74.01069987,noise 40.87211558,-73.91627644,noise 40.87141935,-73.91380414,noise 40.87141935,-73.91380414,noise 40.8692067,-73.9169743,noise 40.87468661,-73.88649964,noise 40.87211558,-73.91627644,noise 40.87249774,-73.9171763,noise 40.87249774,-73.9171763,noise 40.87211558,-73.91627644,noise 40.67361106,-73.95015692,noise 40.80210625,-73.93802918,noise 40.66031861,-73.9397504,noise 40.76462701,-73.99554532,noise 40.6395296,-73.95128856,noise 40.65162493,-73.93305512,noise 40.86437703,-73.92653575,noise 40.64403031,-74.00425204,noise 40.76362248,-73.99701462,noise 40.755483,-73.88616134,noise 40.6395296,-73.95128856,noise 40.82572712,-73.94880363,noise 40.67946257,-74.00619398,noise 40.86146109,-73.92921784,noise 40.86437703,-73.92653575,noise 40.836905,-73.90376615,noise 40.85874439,-73.93011727,noise 40.70273581,-73.93378282,noise 40.76004503,-73.87836379,noise 40.81726755,-73.9422565,noise 40.83104431,-73.92085591,noise 40.78075614,-73.92186894,noise 40.7349487,-73.8454257,noise 40.71302631,-73.93945748,noise 40.72894882,-73.97836993,noise 40.73250431,-73.9848383,noise 40.70273581,-73.93378282,noise 40.72612272,-73.79059206,noise 40.76118509,-73.85765969,noise 40.73566544,-73.84569466,noise 40.84635448,-73.93925661,noise 40.67127809,-73.95035693,noise 40.85885672,-73.92979179,noise 40.83022246,-73.94768359,noise 40.71286472,-73.94012855,noise 40.83237927,-73.94088466,noise 40.84628291,-73.93885187,noise 40.83502422,-73.9250829,noise 40.81942531,-73.95556464,noise 40.83419292,-73.90018164,noise 40.770663,-73.95701963,noise 40.79850616,-73.96712189,noise 40.6519488,-74.00807984,noise 40.78451552,-73.94982474,noise 40.7296035,-73.98823774,noise 40.79611282,-73.94555785,noise 40.73250431,-73.9848383,noise 40.75826062,-73.8419172,noise 40.76330097,-73.92820671,noise 40.70273581,-73.93378282,noise 40.75854116,-73.84435664,noise 40.82935419,-73.94564628,noise 40.75720095,-73.83397508,noise 40.74436806,-74.00393365,noise 40.86333019,-73.92915078,noise 40.82416166,-73.95297806,noise 40.78298786,-73.84585582,noise 40.79585513,-73.93552852,noise 40.75854116,-73.84435664,noise 40.68282211,-73.93799942,noise 40.66947464,-73.95683611,noise 40.70262048,-73.92909075,noise 40.66820407,-73.9506476,noise 40.76338225,-73.83029564,noise 40.81884287,-73.95415239,noise 40.79585513,-73.93552852,noise 40.84628291,-73.93885187,noise 40.85702748,-73.92773319,noise 40.69726627,-73.96765506,noise 40.81252322,-73.95096325,noise 40.65109416,-73.89496698,noise 40.85459367,-73.9289215,noise 40.72114459,-73.99370114,noise 40.76362248,-73.99701462,noise 40.68866995,-73.8754723,noise 40.71751616,-73.99733774,noise 40.70701054,-73.94652151,noise 40.79585513,-73.93552852,noise 40.71828718,-73.99191212,noise 40.75895636,-73.84288294,noise 40.80482562,-73.95424874,noise 40.70388783,-73.91963273,noise 40.83516962,-73.92497071,noise 40.83473373,-73.94543229,noise 40.75895636,-73.84288294,noise 40.81726755,-73.9422565,noise 40.770663,-73.95701963,noise 40.7193687,-73.9932179,noise 40.76330097,-73.92820671,noise 40.75326051,-73.92365533,noise 40.84711145,-73.93818244,noise 40.87959654,-73.90430103,noise 40.69956963,-73.83237309,noise 40.87085734,-73.89779084,noise 40.84944039,-73.91840865,noise 40.83811767,-73.94483683,noise 40.626026,-74.17672214,noise 40.72974403,-73.99639915,noise 40.67052369,-73.9300297,noise 40.83247708,-73.90624789,noise 40.74888619,-73.97584069,noise 40.71450243,-73.99812784,noise 40.66071028,-73.99409972,noise 40.76347787,-73.82999216,noise 40.79438124,-73.93556968,noise 40.7219211,-73.99003931,noise 40.70958433,-73.95089831,noise 40.82700844,-73.94776923,noise 40.82380562,-73.85070046,noise 40.85433208,-73.93208114,noise 40.85427984,-73.93192214,noise 40.68935074,-73.81613264,noise 40.68507642,-73.97789379,noise 40.8381204,-73.94479707,noise 40.63597511,-73.97814065,noise 40.81772488,-73.91791645,noise 40.83819186,-73.94501385,noise 40.75453458,-73.99545576,noise 40.58447106,-73.94372146,noise 40.72110344,-73.99418095,noise 40.78754805,-73.94890521,noise 40.83821932,-73.94502828,noise 40.83933002,-73.8990319,noise 40.78711943,-73.9479233,noise 40.6852898,-73.96414535,noise 40.63385364,-73.93043924,noise 40.82417634,-73.90537074,noise 40.8289654,-73.90818603,noise 40.84696338,-73.93846088,noise 40.51478878,-74.24842226,noise 40.83777968,-73.94402036,noise 40.6917582,-73.94155385,noise 40.76331469,-73.92819586,noise 40.83137895,-73.92895353,noise 40.66941132,-73.8904033,noise 40.69750355,-73.93738351,noise 40.71768949,-73.95747225,noise 40.67915413,-73.98342993,noise 40.86333019,-73.92915078,noise 40.82979716,-73.94798023,noise 40.75650391,-73.9264959,noise 40.73249706,-74.00183297,noise 40.68343083,-73.96180635,noise 40.6917582,-73.94155385,noise 40.729766,-73.99702696,noise 40.80325785,-73.94663562,noise 40.80996679,-73.9550291,noise 40.65822597,-73.7280127,noise 40.84610005,-73.90745758,noise 40.84589512,-73.93252347,noise 40.78869209,-73.94776317,noise 40.80482562,-73.95424874,noise 40.69389983,-73.96316707,noise 40.74860668,-73.97810369,noise 40.83811767,-73.94483683,noise 40.66929051,-73.89036384,noise 40.77738763,-73.9442625,noise 40.64575255,-73.9810563,noise 40.70685211,-73.9481952,noise 40.82763977,-73.94212103,noise 40.64269519,-73.96977506,noise 40.8300832,-73.94929533,noise 40.79435375,-73.93550469,noise 40.58488412,-73.92664159,noise 40.83313867,-73.94464943,noise 40.71905807,-74.01244221,noise 40.87085734,-73.89779084,noise 40.73249706,-74.00183297,noise 40.76331469,-73.92819586,noise 40.85024051,-73.89624656,noise 40.71090763,-73.95164399,noise 40.84432303,-73.90940815,noise 40.71090763,-73.95164399,noise 40.71029013,-73.95181757,noise 40.71033685,-73.95196904,noise 40.72232441,-74.01174654,noise 40.74978945,-73.89379359,noise 40.80482562,-73.95424874,noise 40.72031794,-74.01216827,noise 40.72031794,-74.01216827,noise 40.72031794,-74.01216827,noise 40.72232441,-74.01174654,noise 40.73258489,-74.00174998,noise 40.72031794,-74.01216827,noise 40.72014518,-74.01055206,noise 40.7216382,-74.01189073,noise 40.62483204,-74.03050864,noise 40.82836953,-73.9471322,noise 40.71103729,-73.96057856,noise 40.82782361,-73.94199802,noise 40.86111875,-73.92603322,noise 40.7582176,-73.98907012,noise 40.71033685,-73.95196904,noise 40.65902953,-73.91897674,noise 40.76331469,-73.92819586,noise 40.82410397,-73.9528408,noise 40.82410397,-73.9528408,noise 40.82410397,-73.9528408,noise 40.84713557,-73.94235347,noise 40.81009718,-73.91773801,noise 40.76331469,-73.92819586,noise 40.80934133,-73.94921721,noise 40.74860668,-73.97810369,noise 40.83258334,-73.8763015,noise 40.78869541,-73.9378611,noise 40.79648206,-73.96304891,noise 40.75551613,-73.98362389,noise 40.6942307,-73.94607739,noise 40.76331469,-73.92819586,noise 40.823746,-73.94410082,noise 40.84827805,-73.93343552,noise 40.73221435,-73.99861084,noise 40.71760353,-74.0106671,noise 40.66671709,-73.89161168,noise 40.72232441,-74.01174654,noise 40.72031794,-74.01216827,noise 40.72031794,-74.01216827,noise 40.76109731,-73.996892,noise 40.78229519,-73.96512584,noise 40.73531838,-73.99165025,noise 40.72423534,-73.99778483,noise 40.63860603,-73.9482662,noise 40.72423534,-73.99778483,noise 40.72401301,-73.99798687,noise 40.7073419,-73.7960866,noise 40.74033035,-73.9924796,noise 40.84731011,-73.93508468,noise 40.65292727,-73.9593299,noise 40.7111325,-73.96654457,noise 40.77795656,-73.90379357,noise 40.7610035,-73.98889639,noise 40.76069601,-73.9881384,noise 40.68011108,-73.92548047,noise 40.7259002,-73.98319101,noise 40.82107204,-73.95532147,noise 40.64284238,-73.9448217,noise 40.80090857,-73.96081068,noise 40.64595269,-73.95197214,noise 40.86437703,-73.92653575,noise 40.80090034,-73.96083235,noise 40.74202303,-73.91894077,noise 40.72349367,-73.98825325,noise 40.76449924,-73.82471542,noise 40.70760541,-73.94495205,noise 40.68230634,-73.92894289,noise 40.7205353,-73.99466441,noise 40.86437703,-73.92653575,noise 40.84731011,-73.93508468,noise 40.68112057,-73.96442161,noise 40.75676421,-73.96715332,noise 40.72726727,-73.98449673,noise 40.87145421,-73.90243255,noise 40.86437703,-73.92653575,noise 40.75676421,-73.96715332,noise 40.7612619,-73.9942713,noise 40.66920804,-73.99291299,noise 40.75676421,-73.96715332,noise 40.75707705,-73.96693659,noise 40.84348354,-73.93428967,noise 40.74102858,-73.92167375,noise 40.74102858,-73.92167375,noise 40.770663,-73.95701963,noise 40.74102858,-73.92167375,noise 40.74102858,-73.92167375,noise 40.74102858,-73.92167375,noise 40.74102858,-73.92167375,noise 40.74102858,-73.92167375,noise 40.74102858,-73.92167375,noise 40.74102858,-73.92167375,noise 40.74102858,-73.92167375,noise 40.75029401,-74.0025589,noise 40.74102858,-73.92167375,noise 40.70925959,-74.00908231,noise 40.76579016,-73.98728192,noise 40.63131316,-74.02784198,noise 40.77159735,-73.90757916,noise 40.51478878,-74.24842226,noise 40.73249706,-74.00183297,noise 40.70233653,-73.98397597,noise 40.68230634,-73.92894289,noise 40.68272042,-73.96329223,noise 40.68230634,-73.92894289,noise 40.71828718,-73.99191212,noise 40.70191223,-73.820498,noise 40.67915413,-73.98342993,noise 40.74093692,-73.9921295,noise 40.80270711,-73.95533019,noise 40.70233653,-73.98397597,noise 40.80597242,-73.95302703,noise 40.85462116,-73.92898654,noise 40.7669823,-73.91689597,noise 40.76473551,-73.98221735,noise 40.72063147,-74.00196252,noise 40.82733565,-73.88173129,noise 40.73915309,-74.00112587,noise 40.70254039,-73.99069861,noise 40.83764297,-73.90333864,noise 40.7508539,-74.00389072,noise 40.6717427,-73.95211579,noise 40.67828062,-73.95884576,noise 40.74705161,-73.88665213,noise 40.80482562,-73.95424874,noise 40.68844342,-73.99297945,noise 40.74244241,-73.98050554,noise 40.78867286,-73.94771624,noise 40.86797939,-73.92024792,noise 40.86393907,-73.85967404,noise 40.59811137,-73.79670826,noise 40.82574216,-73.92596054,noise 40.74705161,-73.88665213,noise 40.69277808,-73.95767926,noise 40.69180911,-73.95750318,noise 40.64460505,-73.95210284,noise 40.7517478,-73.97080475,noise 40.69322877,-73.96784453,noise 40.78867286,-73.94771624,noise 40.78869209,-73.94776317,noise 40.78867286,-73.94771624,noise 40.73955932,-73.99893907,noise 40.71094045,-73.95138065,noise 40.71029013,-73.95181757,noise 40.69173499,-73.95747799,noise 40.78311615,-73.95085853,noise 40.8361841,-73.9421931,noise 40.69564084,-73.8393538,noise 40.82664209,-73.9254356,noise 40.71073539,-73.95331056,noise 40.69173499,-73.95747799,noise 40.70401386,-73.94210214,noise 40.84768209,-73.91236382,noise 40.81075507,-73.96442456,noise 40.65778597,-73.95324671,noise 40.77741014,-73.9787983,noise 40.67117181,-73.88313654,noise 40.66000933,-73.96082497,noise 40.83585434,-73.94141281,noise 40.69564084,-73.8393538,noise 40.69564084,-73.8393538,noise 40.76710753,-73.98631416,noise 40.69553418,-73.83963534,noise 40.67885012,-74.01115482,noise 40.70915516,-74.01054311,noise 40.70915516,-74.01054311,noise 40.76079439,-73.98451059,noise 40.62558409,-73.98253902,noise 40.71274564,-74.0060095,noise 40.75971314,-73.98585364,noise 40.68209912,-73.96033246,noise 40.75627402,-73.87861613,noise 40.75797293,-73.98553637,noise 40.76299938,-73.9641685,noise 40.71296773,-74.00949042,noise 40.70273497,-73.94243505,noise 40.71383783,-73.93772167,noise 40.6882267,-73.99533408,noise 40.68151921,-73.88007901,noise 40.86437703,-73.92653575,noise 40.51478878,-74.24842226,noise 40.76338296,-73.98673729,noise 40.77108702,-73.98342149,noise 40.82000567,-73.95887372,noise 40.73753366,-73.99727199,noise 40.755483,-73.88616134,noise 40.83441084,-73.94185134,noise 40.61655033,-73.93020153,noise 40.73908435,-74.00545255,noise 40.7193932,-74.00960317,noise 40.85327112,-73.92957719,noise 40.72855835,-73.99997474,noise 40.67195343,-73.95751583,noise 40.6917582,-73.94155385,noise 40.74928842,-73.98454214,noise 40.86357715,-73.90269718,noise 40.86404894,-73.90234219,noise 40.61323961,-73.93897169,noise 40.63550136,-73.96143024,noise 40.67532349,-74.00545094,noise 40.84348354,-73.93428967,noise 40.83657605,-73.94112668,noise 40.51478878,-74.24842226,noise 40.82650102,-73.9485501,noise 40.86357715,-73.90269718,noise 40.68490321,-73.92945213,noise 40.57754322,-73.99787609,noise 40.72729198,-73.98455085,noise 40.68388784,-73.95787961,noise 40.88049256,-73.87669332,noise 40.83247708,-73.90624789,noise 40.72283569,-73.95686648,noise 40.86404894,-73.90234219,noise 40.64846321,-74.00075677,noise 40.79589753,-73.94892047,noise 40.82599151,-73.8968372,noise 40.83264129,-73.94342843,noise 40.68294838,-73.78222577,noise 40.70531569,-74.00273391,noise 40.66880349,-73.90777207,noise 40.75797293,-73.98553637,noise 40.73945487,-74.00597582,noise 40.73963051,-74.00633309,noise 40.75797293,-73.98553637,noise 40.83819186,-73.94501385,noise 40.72423534,-73.99778483,noise 40.72423534,-73.99778483,noise 40.72423534,-73.99778483,noise 40.72423534,-73.99778483,noise 40.63852557,-73.98130336,noise 40.66172169,-73.91452566,noise 40.80325091,-73.95620755,noise 40.64018175,-73.95530567,noise 40.67065806,-73.95797448,noise 40.72349367,-73.98825325,noise 40.80525774,-73.9573874,noise 40.83811767,-73.94483683,noise 40.72349367,-73.98825325,noise 40.80184394,-73.95914862,noise 40.80525774,-73.9573874,noise 40.74992339,-73.99510238,noise 40.72349367,-73.98825325,noise 40.7791528,-73.97750871,noise 40.69726627,-73.96765506,noise 40.71906146,-73.95639274,noise 40.72072702,-73.98888867,noise 40.68334267,-73.9608365,noise 40.76263852,-73.98214571,noise 40.74705161,-73.88665213,noise 40.72473421,-73.98739077,noise 40.7593841,-73.98889305,noise 40.7354257,-73.97474863,noise 40.8605242,-73.92768963,noise 40.75955431,-73.98929731,noise 40.80320163,-73.9565435,noise 40.71905807,-74.01244221,noise 40.7200577,-74.00565662,noise 40.72232441,-74.01174654,noise 40.83759652,-73.94556004,noise 40.7353901,-73.97510948,noise 40.76430472,-73.98309468,noise 40.72227506,-74.01119456,noise 40.7188661,-74.01084406,noise 40.7204196,-73.86889051,noise 40.72031794,-74.01216827,noise 40.73421803,-73.97482125,noise 40.71995321,-74.00858232,noise 40.72031794,-74.01216827,noise 40.76430472,-73.98309468,noise 40.82939027,-73.94087286,noise 40.72064183,-74.01209979,noise 40.71577269,-74.01152173,noise 40.73259304,-73.97441053,noise 40.73447345,-73.97555725,noise 40.7353901,-73.97510948,noise 40.76430472,-73.98309468,noise 40.69273425,-73.93945426,noise 40.81602253,-73.95734438,noise 40.72072702,-73.98888867,noise 40.78311615,-73.95085853,noise 40.83946691,-73.93720653,noise 40.75978164,-73.98495121,noise 40.6776041,-73.94875871,noise 40.72031794,-74.01216827,noise 40.73713256,-73.99032932,noise 40.70585178,-73.92171868,noise 40.88752986,-73.89922633,noise 40.67051133,-73.98727125,noise 40.84533229,-73.94234057,noise 40.7699034,-73.92596124,noise 40.75582305,-73.98049079,noise 40.80927626,-73.944998,noise 40.57320658,-74.09709939,noise 40.85467153,-73.88575661,noise 40.76010264,-73.9839729,noise 40.67962217,-73.96520477,noise 40.64006368,-73.95520486,noise 40.71450243,-73.99812784,noise 40.75624515,-73.92120466,noise 40.72781936,-73.98776542,noise 40.74597857,-73.94806734,noise 40.60244879,-74.08801292,noise 40.72224762,-73.98889924,noise 40.74566749,-73.94606823,noise 40.68230634,-73.92894289,noise 40.72031794,-74.01216827,noise 40.73963051,-74.00633309,noise 40.72031794,-74.01216827,noise 40.72031794,-74.01216827,noise 40.7216382,-74.01189073,noise 40.73249706,-74.00183297,noise 40.58886785,-73.80198947,noise 40.7216382,-74.01189073,noise 40.7188661,-74.01084406,noise 40.72031794,-74.01216827,noise 40.71686229,-74.01220732,noise 40.72051028,-74.01012282,noise 40.64846321,-74.00075677,noise 40.71686229,-74.01220732,noise 40.71905807,-74.01244221,noise 40.7216382,-74.01189073,noise 40.72031794,-74.01216827,noise 40.76402013,-73.97318913,noise 40.7216382,-74.01189073,noise 40.73870015,-74.00386836,noise 40.83306527,-73.93544549,noise 40.71717512,-74.01286753,noise 40.82892541,-73.95039469,noise 40.7216382,-74.01189073,noise 40.72064183,-74.01209979,noise 40.72031794,-74.01216827,noise 40.72031794,-74.01216827,noise 40.66765552,-73.74781101,noise 40.73713256,-73.99032932,noise 40.86637626,-73.92825812,noise 40.75797293,-73.98553637,noise 40.86637626,-73.92825812,noise 40.77298599,-73.94619414,noise 40.7985263,-73.9417021,noise 40.85232122,-73.93877402,noise 40.84727468,-73.90732221,noise 40.64322593,-73.94921752,noise 40.6960932,-73.74362117,noise 40.72306913,-73.95039412,noise 40.63597511,-73.97814065,noise 40.70383481,-73.93097214,noise 40.69970015,-73.9442445,noise 40.64018175,-73.95530567,noise 40.66117997,-73.95695681,noise 40.86909602,-73.90512242,noise 40.83949666,-73.90454664,noise 40.68935074,-73.81613264,noise 40.75634456,-73.90726464,noise 40.75578209,-73.883331,noise 40.85072196,-73.9181143,noise 40.86437703,-73.92653575,noise 40.64532594,-73.91297914,noise 40.86437703,-73.92653575,noise 40.84191118,-73.92582689,noise 40.65003867,-74.00339113,noise 40.80135906,-73.96187955,noise 40.65595853,-73.89564049,noise 40.84191118,-73.92582689,noise 40.75624515,-73.92120466,noise 40.63695463,-74.11754937,noise 40.84372603,-73.93598451,noise 40.82144605,-73.95037859,noise 40.86437703,-73.92653575,noise 40.84696338,-73.93846088,noise 40.75413091,-73.949068,noise 40.86795092,-73.92700182,noise 40.65070561,-74.00449032,noise 40.6274743,-73.90325396,noise 40.84263811,-73.90638898,noise 40.8605242,-73.92768963,noise 40.63765525,-74.07798873,noise 40.86437703,-73.92653575,noise 40.770663,-73.95701963,noise 40.83989319,-73.93879269,noise 40.66169921,-73.89713093,noise 40.71055807,-73.99414219,noise 40.84266867,-73.90684433,noise 40.71057593,-73.95264698,noise 40.84348354,-73.93428967,noise 40.66064331,-73.96062997,noise 40.66064331,-73.96062997,noise 40.60244879,-74.08801292,noise 40.76115165,-73.92364989,noise 40.87614258,-73.90294638,noise 40.82945034,-73.94583049,noise 40.84967442,-73.9370993,noise 40.80265766,-73.95521464,noise 40.80929793,-73.94438388,noise 40.8475006,-73.91191948,noise 40.88025935,-73.87678054,noise 40.83477457,-73.92526387,noise 40.65588441,-73.9423998,noise 40.68152493,-73.97922177,noise 40.72007105,-73.98922068,noise 40.84967442,-73.9370993,noise 40.84259884,-73.9159847,noise 40.65070561,-74.00449032,noise 40.84795641,-73.91216827,noise 40.67382676,-73.89532413,noise 40.8027236,-73.9553663,noise 40.65006337,-74.00344158,noise 40.71176566,-73.99232051,noise 40.65012101,-74.00353528,noise 40.86355918,-73.90753813,noise 40.74985425,-73.98793822,noise 40.65003867,-74.00339113,noise 40.84967442,-73.9370993,noise 40.65695238,-73.89590564,noise 40.71678366,-73.96552085,noise 40.64203125,-74.09514565,noise 40.90450323,-73.89641146,noise 40.65012101,-74.00353528,noise 40.63652287,-73.88993487,noise 40.82892541,-73.95039469,noise 40.74060843,-73.84960222,noise 40.80135906,-73.96187955,noise 40.61939303,-73.93820963,noise 40.60079418,-73.91264826,noise 40.83024257,-73.94968908,noise 40.83159568,-73.92880153,noise 40.82892541,-73.95039469,noise 40.69357091,-73.96460248,noise 40.63746939,-73.91917226,noise 40.83856005,-73.9458556,noise 40.51478878,-74.24842226,noise 40.80342652,-73.95608101,noise 40.82992704,-73.9130015,noise 40.862748,-73.91267295,noise 40.76331469,-73.92819586,noise 40.63746939,-73.91917226,noise 40.70863554,-73.9530307,noise 40.86210781,-73.91928608,noise 40.6298778,-74.01035405,noise 40.69222715,-73.93090843,noise 40.82557253,-73.94119784,noise 40.82486192,-73.94172961,noise 40.82486192,-73.94172961,noise 40.87937617,-73.87229088,noise 40.82755316,-73.86722322,noise 40.85701115,-73.93248689,noise 40.87928561,-73.87230552,noise 40.63085298,-73.89081608,noise 40.68973631,-73.89032301,noise 40.673438,-73.84511042,noise 40.69357091,-73.96460248,noise 40.71678366,-73.96552085,noise 40.73619707,-73.84103136,noise 40.70932835,-73.95588692,noise 40.73841163,-73.84676726,noise 40.75655776,-73.84513732,noise 40.75647412,-73.94726506,noise 40.59081097,-73.78951855,noise 40.74252091,-74.00051966,noise 40.68973631,-73.89032301,noise 40.87678755,-73.8744474,noise 40.73892435,-73.83833647,noise 40.83280618,-73.94385832,noise 40.85701115,-73.93248689,noise 40.71829162,-73.98247866,noise 40.82962826,-73.92117919,noise 40.67504911,-73.95638546,noise 40.71992609,-74.0002886,noise 40.68473576,-73.95044427,noise 40.85047992,-73.93953117,noise 40.65691583,-73.95313919,noise 40.86563253,-73.92839993,noise 40.6302496,-73.89131784,noise 40.8110586,-73.94148521,noise 40.73841163,-73.84676726,noise 40.71992609,-74.0002886,noise 40.72251336,-73.98459886,noise 40.83260284,-73.94337788,noise 40.83266602,-73.94348985,noise 40.74623811,-73.89722415,noise 40.72251336,-73.98459886,noise 40.73534843,-73.98991823,noise 40.83142128,-73.92642398,noise 40.73141011,-73.99697276,noise 40.83857841,-73.92475726,noise 40.71085754,-73.96491072,noise 40.68082203,-73.9511971,noise 40.76331469,-73.92819586,noise 40.82834843,-73.94905094,noise 40.67901955,-73.88911122,noise 40.68172816,-73.8678597,noise 40.76331469,-73.92819586,noise 40.717489,-73.95715493,noise 40.67901955,-73.88911122,noise 40.717489,-73.95715493,noise 40.65671128,-73.95647674,noise 40.85858465,-73.89349695,noise 40.717489,-73.95715493,noise 40.72348686,-73.95164569,noise 40.71752196,-73.95720541,noise 40.82930449,-73.92134579,noise 40.76331469,-73.92819586,noise 40.82930449,-73.92134579,noise 40.82962826,-73.92117919,noise 40.64846321,-74.00075677,noise 40.86605105,-73.88573706,noise 40.83264129,-73.94342843,noise 40.6568122,-73.95481158,noise 40.72391971,-74.00063857,noise 40.72532531,-73.97621002,noise 40.84710813,-73.90842484,noise 40.67604829,-73.95660112,noise 40.68606918,-73.86681265,noise 40.74840957,-73.89763224,noise 40.68586601,-73.86676258,noise 40.68597581,-73.86676957,noise 40.68595934,-73.86676239,noise 40.71455156,-73.93789415,noise 40.74278773,-73.882632,noise 40.75444761,-73.93013645,noise 40.73303226,-74.00313917,noise 40.82179224,-73.95122017,noise 40.61657464,-73.9766558,noise 40.76378192,-73.83332694,noise 40.72981819,-74.00065667,noise 40.80135906,-73.96187955,noise 40.66850625,-73.92560518,noise 40.68272042,-73.96329223,noise 40.75979023,-73.98792559,noise 40.67127809,-73.95035693,noise 40.85333707,-73.92968918,noise 40.86613852,-73.92558294,noise 40.7572323,-73.98979219,noise 40.72173744,-73.9934738,noise 40.71136535,-73.95690276,noise 40.72953107,-73.9804155,noise 40.68941497,-73.99156585,noise 40.84171392,-73.9355672,noise 40.71136535,-73.95690276,noise 40.85072806,-73.93650912,noise 40.6716626,-73.95091902,noise 40.85702748,-73.92773319,noise 40.69859264,-73.93154016,noise 40.83889386,-73.93829849,noise 40.85044819,-73.9366612,noise 40.6716626,-73.95091902,noise 40.67388884,-73.89123231,noise 40.72584679,-73.81034596,noise 40.85044819,-73.9366612,noise 40.85044819,-73.9366612,noise 40.77129783,-73.98002053,noise 40.7593841,-73.98889305,noise 40.7254095,-73.85079102,noise 40.69908568,-73.82086265,noise 40.72104319,-73.95643113,noise 40.73619707,-73.84103136,noise 40.64209482,-73.94863824,noise 40.89041615,-73.86343024,noise 40.69957784,-73.83235864,noise 40.68723335,-73.95690033,noise 40.85607396,-73.93039842,noise 40.84753978,-73.90591943,noise 40.73620089,-73.84586302,noise 40.83022246,-73.94768359,noise 40.82388692,-73.9523062,noise 40.63486348,-74.07845385,noise 40.83022246,-73.94768359,noise 40.79440872,-73.93563827,noise 40.51770136,-74.24054207,noise 40.8382119,-73.91855614,noise 40.87959654,-73.90430103,noise 40.76330097,-73.92820671,noise 40.74447137,-73.91150714,noise 40.67844363,-73.92763469,noise 40.83856005,-73.9458556,noise 40.86437703,-73.92653575,noise 40.83685217,-73.86715407,noise 40.84339049,-73.9067891,noise 40.61182952,-74.10548268,noise 40.74832568,-73.89899299,noise 40.84944039,-73.91840865,noise 40.74425235,-73.91224003,noise 40.85090643,-73.93644388,noise 40.51358865,-74.25123739,noise 40.83685217,-73.86715407,noise 40.86553576,-73.9272684,noise 40.82700844,-73.94776923,noise 40.67915413,-73.98342993,noise 40.86724744,-73.91760585,noise 40.86437703,-73.92653575,noise 40.86437703,-73.92653575,noise 40.86437703,-73.92653575,noise 40.86914718,-73.92214111,noise 40.82853501,-73.94890264,noise 40.62863721,-74.08003528,noise 40.63528628,-74.07830302,noise 40.79648206,-73.96304891,noise 40.81309737,-73.95216943,noise 40.81313558,-73.95164197,noise 40.78967436,-73.96984918,noise 40.83821932,-73.94502828,noise 40.77270651,-73.92710623,noise 40.83685217,-73.86715407,noise 40.85199617,-73.93178712,noise 40.74860668,-73.97810369,noise 40.85632085,-73.93017765,noise 40.74860668,-73.97810369,noise 40.82096605,-73.95113407,noise 40.62511344,-73.92074707,noise 40.85455904,-73.93065305,noise 40.8381204,-73.94479707,noise 40.65972716,-73.98791847,noise 40.84266867,-73.90684433,noise 40.81370491,-73.96214342,noise 40.81323338,-73.90907476,noise 40.80880336,-73.9558824,noise 40.78922395,-73.96880572,noise 40.67194919,-73.82336526,noise 40.85459367,-73.9289215,noise 40.64173511,-73.91962471,noise 40.81006558,-73.95496762,noise 40.85482842,-73.93131428,noise 40.83617893,-73.88424887,noise 40.86091822,-73.90351449,noise 40.7746797,-73.98220025,noise 40.85438041,-73.93027367,noise 40.74860668,-73.97810369,noise 40.65972716,-73.98791847,noise 40.8381204,-73.94479707,noise 40.8006462,-73.95631401,noise 40.67643054,-73.89126782,noise 40.83617893,-73.88424887,noise 40.85438041,-73.93027367,noise 40.83450977,-73.94208615,noise 40.82773021,-73.94757715,noise 40.85452115,-73.90787964,noise 40.7230834,-73.95874954,noise 40.6471319,-74.00462341,noise 40.63597511,-73.97814065,noise 40.83314415,-73.9446169,noise 40.66248862,-73.94877753,noise 40.71775824,-73.95782213,noise 40.82103046,-73.85480746,noise 40.74705161,-73.88665213,noise 40.82849131,-73.94940133,noise 40.80913812,-73.95562931,noise 40.86210781,-73.91928608,noise 40.80603558,-73.94677066,noise 40.79281518,-73.93773447,noise 40.83404309,-73.92739679,noise 40.6822862,-73.80804695,noise 40.80603558,-73.94677066,noise 40.69651055,-73.79893622,noise 40.6999482,-73.9223315,noise 40.80911343,-73.95565823,noise 40.80942898,-73.95543044,noise 40.68720987,-73.8342395,noise 40.86111875,-73.92603322,noise 40.88133121,-73.90433108,noise 40.86094677,-73.92750841,noise 40.71677946,-73.93634091,noise 40.6493772,-74.00228836,noise 40.82565654,-73.94456171,noise 40.62393952,-74.04083255,noise 40.85887711,-73.89515218,noise 40.78905143,-73.97030087,noise 40.86584975,-73.92469748,noise 40.87575492,-73.85086586,noise 40.67797595,-73.86776979,noise 40.67294362,-73.96355356,noise 40.69296008,-73.93105191,noise 40.71148133,-73.94559451,noise 40.72365037,-73.99102396,noise 40.68081719,-73.89179427,noise 40.64176472,-73.89209902,noise 40.6493772,-74.00228836,noise 40.6809233,-73.83543049,noise 40.63735885,-73.92206566,noise 40.85248772,-73.92769475,noise 40.68316249,-73.80846988,noise 40.70932835,-73.95588692,noise 40.67634363,-73.77608248,noise 40.63602447,-74.13477006,noise 40.67936814,-73.93132555,noise 40.65551664,-73.92785417,noise 40.58507796,-73.81053691,noise 40.71148133,-73.94559451,noise 40.86210781,-73.91928608,noise 40.85331763,-73.90289655,noise 40.72970008,-74.0044776,noise 40.72391971,-74.00063857,noise 40.75647412,-73.94726506,noise 40.64117396,-73.89142616,noise 40.86430238,-73.89111611,noise 40.76034977,-73.98471284,noise 40.79975275,-73.94645061,noise 40.79896085,-73.94348956,noise 40.58769924,-73.81730902,noise 40.81971325,-73.91959763,noise 40.6170167,-73.97738324,noise 40.83428758,-73.91560852,noise 40.83129116,-73.92903312,noise 40.82700844,-73.94776923,noise 40.69871474,-73.92919228,noise 40.82590477,-73.94711609,noise 40.81101555,-73.94909672,noise 40.68941497,-73.99156585,noise 40.85199617,-73.93178712,noise 40.85620504,-73.89354414,noise 40.85613623,-73.8933382,noise 40.61243558,-74.03397864,noise 40.86368678,-73.89621112,noise 40.8308696,-73.91450711,noise 40.86094677,-73.92750841,noise 40.75826062,-73.8419172,noise 40.72205788,-73.98570651,noise 40.73132176,-73.98861269,noise 40.86218067,-73.90670492,noise 40.7623246,-73.9764531,noise 40.86368678,-73.89621112,noise 40.82687657,-73.94750556,noise 40.75895636,-73.84288294,noise 40.72455984,-73.93955162,noise 40.67127809,-73.95035693,noise 40.83784983,-73.93638408,noise 40.83129116,-73.92903312,noise 40.76330097,-73.92820671,noise 40.82107204,-73.95532147,noise 40.61967141,-74.15814,noise 40.84407366,-73.93931652,noise 40.83729554,-73.93665565,noise 40.84922634,-73.91466425,noise 40.83037632,-73.94802676,noise 40.71176537,-73.94268697,noise 40.83362549,-73.91856898,noise 40.83037632,-73.94802676,noise 40.6609458,-73.93718715,noise 40.83865994,-73.91565719,noise 40.83733075,-73.94656854,noise 40.63733699,-73.93079592,noise 40.79750218,-73.94667635,noise 40.69959035,-73.94423377,noise 40.51770136,-74.24054207,noise 40.84146778,-73.91565363,noise 40.80695267,-73.94755378,noise 40.85339205,-73.92984455,noise 40.74394427,-73.98362673,noise 40.7358592,-73.99324509,noise 40.85114171,-73.78846705,noise 40.64992004,-74.01225634,noise 40.76130522,-73.96213711,noise 40.86399121,-73.85967031,noise 40.72660323,-73.98602303,noise 40.70922862,-73.95355329,noise 40.58413031,-73.93277355,noise 40.83757555,-73.88939626,noise 40.88754313,-73.86400034,noise 40.51358865,-74.25123739,noise 40.72279663,-73.98959904,noise 40.82082868,-73.95082706,noise 40.64992004,-74.01225634,noise 40.65074897,-73.96242689,noise 40.76431686,-73.9957836,noise 40.80037041,-73.94666322,noise 40.85934499,-73.89355718,noise 40.83733075,-73.94656854,noise 40.82097697,-73.91001079,noise 40.67574204,-73.73935879,noise 40.84711145,-73.93818244,noise 40.84811046,-73.90906323,noise 40.7943569,-73.9414096,noise 40.86404894,-73.90234219,noise 40.70812241,-73.95337732,noise 40.79750218,-73.94667635,noise 40.84711145,-73.93818244,noise 40.86368678,-73.89621112,noise 40.67482164,-73.97635782,noise 40.58534289,-73.8097405,noise 40.68973631,-73.89032301,noise 40.83313867,-73.94464943,noise 40.73249706,-74.00183297,noise 40.83054079,-73.86604286,noise 40.6884631,-73.95713031,noise 40.68294838,-73.78222577,noise 40.83137895,-73.92895353,noise 40.8371105,-73.91372572,noise 40.86019986,-73.92694526,noise 40.66982501,-73.88677256,noise 40.72124725,-73.97956294,noise 40.8371105,-73.91372572,noise 40.85114171,-73.78846705,noise 40.6936969,-73.80036912,noise 40.66889889,-73.95861003,noise 40.83311944,-73.94460247,noise 40.83320462,-73.94480477,noise 40.83248725,-73.87627999,noise 40.85288754,-73.88862978,noise 40.76331469,-73.92819586,noise 40.75797293,-73.98553637,noise 40.80897314,-73.94832523,noise 40.86214079,-73.9193475,noise 40.7623246,-73.9764531,noise 40.84739325,-73.90462206,noise 40.86437703,-73.92653575,noise 40.72842386,-73.99967889,noise 40.72114459,-73.99370114,noise 40.86600945,-73.8909687,noise 40.82892541,-73.95039469,noise 40.86782618,-73.91705918,noise 40.84824468,-73.90532205,noise 40.85016672,-73.93397221,noise 40.84821712,-73.90517751,noise 40.73434974,-74.00300933,noise 40.68272042,-73.96329223,noise 40.59487733,-73.97822252,noise 40.70939744,-73.79438142,noise 40.8027236,-73.9553663,noise 40.80277306,-73.9555288,noise 40.63623142,-74.11616094,noise 40.68094048,-73.88868619,noise 40.78795629,-73.9472979,noise 40.63623142,-74.11616094,noise 40.64642057,-74.01096922,noise 40.80777238,-73.94548329,noise 40.83148154,-73.92205871,noise 40.67915413,-73.98342993,noise 40.7068663,-74.00699002,noise 40.80844735,-73.94499508,noise 40.68272042,-73.96329223,noise 40.68328577,-73.99000182,noise 40.85391396,-73.90376684,noise 40.75643504,-73.97996723,noise 40.85131893,-73.93298788,noise 40.83383763,-73.91585844,noise 40.82670115,-73.9083626,noise 40.68230634,-73.92894289,noise 40.76130522,-73.96213711,noise 40.68272042,-73.96329223,noise 40.68272042,-73.96329223,noise 40.86404894,-73.90234219,noise 40.78293275,-73.97994843,noise 40.80135906,-73.96187955,noise 40.74860668,-73.97810369,noise 40.67915413,-73.98342993,noise 40.84266867,-73.90684433,noise 40.83492955,-73.91521019,noise 40.76130522,-73.96213711,noise 40.71963414,-73.98477629,noise 40.66559325,-73.99436602,noise 40.86404894,-73.90234219,noise 40.86357715,-73.90269718,noise 40.66559325,-73.99436602,noise 40.84854504,-73.90678188,noise 40.69384088,-73.96795603,noise 40.66206355,-73.99637037,noise 40.74860668,-73.97810369,noise 40.88133121,-73.90433108,noise 40.67885012,-74.01115482,noise 40.8325045,-73.89658499,noise 40.70807123,-73.94332135,noise 40.90495654,-73.85369802,noise 40.70386546,-73.9474293,noise 40.85288754,-73.88862978,noise 40.76296633,-73.97396929,noise 40.84268397,-73.92395749,noise 40.63597511,-73.97814065,noise 40.82946792,-73.94824789,noise 40.7985263,-73.9417021,noise 40.62964721,-74.01069987,noise 40.71849034,-73.9636982,noise 40.74817503,-74.00382921,noise 40.7476892,-74.00416843,noise 40.82382294,-73.94428864,noise 40.71395678,-73.95793275,noise 40.69020374,-73.9452621,noise 40.84342648,-73.91426328,noise 40.86437703,-73.92653575,noise 40.76579016,-73.98728192,noise 40.51478878,-74.24842226,noise 40.83235368,-73.92106033,noise 40.7623246,-73.9764531,noise 40.83321192,-73.94288228,noise 40.51770136,-74.24054207,noise 40.63606328,-73.96787928,noise 40.51437676,-74.24856099,noise 40.80149916,-73.96225511,noise 40.71387984,-73.95769833,noise 40.84342648,-73.91426328,noise 40.80156507,-73.96236704,noise 40.83419292,-73.90018164,noise 40.80525774,-73.9573874,noise 40.80525774,-73.9573874,noise 40.51478878,-74.24842226,noise 40.80135906,-73.96187955,noise 40.66001761,-73.96096553,noise 40.84134981,-73.91572606,noise 40.78838599,-73.93923728,noise 40.83526702,-73.91502546,noise 40.86404894,-73.90234219,noise 40.83808101,-73.9428239,noise 40.86582691,-73.9276007,noise 40.80093392,-73.95506771,noise 40.64269519,-73.96977506,noise 40.84811513,-73.91520062,noise 40.71783505,-73.95772468,noise 40.72031794,-74.01216827,noise 40.70560378,-73.92030513,noise 40.72031794,-74.01216827,noise 40.83365292,-73.91854365,noise 40.67915413,-73.98342993,noise 40.72031794,-74.01216827,noise 40.83021267,-73.91696876,noise 40.71905807,-74.01244221,noise 40.82945034,-73.94583049,noise 40.70576011,-73.92013181,noise 40.72232441,-74.01174654,noise 40.7216382,-74.01189073,noise 40.72031794,-74.01216827,noise 40.85024051,-73.89624656,noise 40.80690598,-73.94748519,noise 40.82946792,-73.94824789,noise 40.72279663,-73.98959904,noise 40.80692247,-73.94752491,noise 40.74568199,-73.98585301,noise 40.79861876,-73.96736743,noise 40.75647412,-73.94726506,noise 40.76710753,-73.98631416,noise 40.74546621,-73.95692762,noise 40.90495654,-73.85369802,noise 40.76374898,-73.83332342,noise 40.73628471,-74.00522138,noise 40.87602186,-73.9030008,noise 40.77730373,-73.98258228,noise 40.75797293,-73.98553637,noise 40.71296773,-74.00949042,noise 40.74278773,-73.882632,noise 40.74278773,-73.882632,noise 40.72301527,-73.98192183,noise 40.84502287,-73.93844461,noise 40.69726627,-73.96765506,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.62432183,-73.98496374,noise 40.59330244,-73.78907501,noise 40.7174035,-73.95605473,noise 40.71531994,-73.98988518,noise 40.69726627,-73.96765506,noise 40.67288037,-73.92399969,noise 40.7212051,-73.99670626,noise 40.68217176,-73.99597988,noise 40.66947464,-73.95683611,noise 40.85352333,-73.90272274,noise 40.85016672,-73.93397221,noise 40.85016672,-73.93397221,noise 40.82631552,-73.89698484,noise 40.67699688,-73.96120796,noise 40.74992339,-73.99510238,noise 40.85199617,-73.93178712,noise 40.68230634,-73.92894289,noise 40.80709742,-73.94597872,noise 40.64152705,-73.9495431,noise 40.59593451,-73.759619,noise 40.82832157,-73.92088444,noise 40.86063278,-73.90686255,noise 40.63914998,-74.07565203,noise 40.86191188,-73.90694752,noise 40.82387037,-73.9261216,noise 40.83777968,-73.94402036,noise 40.82942013,-73.94580161,noise 40.80353151,-73.93943295,noise 40.85447423,-73.88333139,noise 40.69058524,-73.95831169,noise 40.76431686,-73.9957836,noise 40.72979348,-73.99884181,noise 40.76431686,-73.9957836,noise 40.68962075,-73.9731253,noise 40.86782618,-73.91705918,noise 40.69343698,-73.97782611,noise 40.83033105,-73.8538079,noise 40.68856316,-73.87570688,noise 40.75781014,-73.945831,noise 40.74982408,-73.97220233,noise 40.77161206,-73.99045429,noise 40.77041509,-73.98761679,noise 40.87584082,-73.90313124,noise 40.66408306,-73.94816714,noise 40.86605105,-73.88573706,noise 40.76257625,-73.91220145,noise 40.86063278,-73.90686255,noise 40.69199308,-73.9031928,noise 40.80235884,-73.9494248,noise 40.76105786,-73.98433004,noise 40.68384667,-73.91004801,noise 40.71296773,-74.00949042,noise 40.75797293,-73.98553637,noise 40.63597511,-73.97814065,noise 40.63597511,-73.97814065,noise 40.7174035,-73.95605473,noise 40.90127661,-73.85208191,noise 40.86972157,-73.89532671,noise 40.85239303,-73.93460257,noise 40.83399685,-73.94276597,noise 40.6493772,-74.00228836,noise 40.7329472,-73.9979866,noise 40.68829334,-73.83185335,noise 40.836905,-73.90376615,noise 40.65365309,-73.96285052,noise 40.82753695,-73.86745451,noise 40.82166745,-73.95481163,noise 40.83428758,-73.91560852,noise 40.83355029,-73.91703325,noise 40.83455095,-73.91544196,noise 40.79376833,-73.9341076,noise 40.80615796,-73.9503936,noise 40.79792982,-73.95169274,noise 40.68635971,-73.90856989,noise 40.86210781,-73.91928608,noise 40.70134269,-73.9823136,noise 40.83428758,-73.91560852,noise 40.83383763,-73.91585844,noise 40.68641745,-73.9086888,noise 40.84153234,-73.92157348,noise 40.58886785,-73.80198947,noise 40.85053726,-73.91698676,noise 40.6806071,-73.94337714,noise 40.82578413,-73.90800615,noise 40.74705161,-73.88665213,noise 40.63011388,-74.01000463,noise 40.74278773,-73.882632,noise 40.82945034,-73.94583049,noise 40.76252992,-73.93804435,noise 40.67885012,-74.01115482,noise 40.57312788,-73.98018779,noise 40.7985263,-73.9417021,noise 40.86637626,-73.92825812,noise 40.82743553,-73.95157737,noise 40.757795,-73.86190458,noise 40.86648484,-73.90395473,noise 40.85567264,-73.92941921,noise 40.83138719,-73.92897159,noise 40.80770187,-73.85247771,noise 40.71768949,-73.95747225,noise 40.8412613,-73.92678897,noise 40.82417266,-73.95300695,noise 40.82000567,-73.95887372,noise 40.85598483,-73.92827295,noise 40.770663,-73.95701963,noise 40.70605964,-73.83143704,noise 40.74534875,-73.90350864,noise 40.69970015,-73.9442445,noise 40.69959035,-73.94423377,noise 40.75716677,-73.82211056,noise 40.63597511,-73.97814065,noise 40.83477457,-73.92526387,noise 40.66064331,-73.96062997,noise 40.7258468,-73.81034957,noise 40.83477457,-73.92526387,noise 40.84910577,-73.89494709,noise 40.51478878,-74.24842226,noise 40.51478878,-74.24842226,noise 40.86613852,-73.92558294,noise 40.51478878,-74.24842226,noise 40.86613852,-73.92558294,noise 40.51478878,-74.24842226,noise 40.82286841,-73.95179387,noise 40.51478878,-74.24842226,noise 40.51478878,-74.24842226,noise 40.8308696,-73.91450711,noise 40.86437703,-73.92653575,noise 40.51478878,-74.24842226,noise 40.84422902,-73.88410475,noise 40.82507829,-73.90407954,noise 40.81723229,-73.89900401,noise 40.8605242,-73.92768963,noise 40.68788294,-73.96208144,noise 40.87802224,-73.90240484,noise 40.80135906,-73.96187955,noise 40.86404014,-73.89243976,noise 40.68681941,-73.9781997,noise 40.80615796,-73.9503936,noise 40.67922633,-73.96330857,noise 40.8373136,-73.91011517,noise 40.80996679,-73.9550291,noise 40.67938027,-74.00542243,noise 40.7957152,-73.93560811,noise 40.68681941,-73.9781997,noise 40.83490545,-73.9429784,noise 40.68676735,-73.9786901,noise 40.83733075,-73.94656854,noise 40.87128784,-73.88023574,noise 40.6519488,-74.00807984,noise 40.79763949,-73.93126855,noise 40.68290997,-73.99305215,noise 40.84945726,-73.93650672,noise 40.68206742,-73.89325246,noise 40.86404894,-73.90234219,noise 40.86357715,-73.90269718,noise 40.62964721,-74.01069987,noise 40.66082847,-73.89340179,noise 40.67833142,-73.98954108,noise 40.83007156,-73.94780657,noise 40.76449114,-73.98165065,noise 40.67413485,-73.87159877,noise 40.65958686,-73.94760116,noise 40.71992609,-74.0002886,noise 40.75600703,-73.86325102,noise 40.71448502,-73.98515983,noise 40.68295573,-73.88929217,noise 40.80270711,-73.95533019,noise 40.82225992,-73.93651821,noise 40.85114171,-73.78846705,noise 40.8551555,-73.93209114,noise 40.76449114,-73.98165065,noise 40.82393497,-73.94914464,noise 40.6861438,-73.96539247,noise 40.84687837,-73.92060575,noise 40.78842026,-73.97076339,noise 40.83354449,-73.8963015,noise 40.68681941,-73.9781997,noise 40.88006589,-73.86812728,noise 40.71143403,-73.95709029,noise 40.73924884,-73.88445696,noise 40.82230605,-73.94067683,noise 40.70932835,-73.95588692,noise 40.86210781,-73.91928608,noise 40.84175838,-73.88370788,noise 40.65680128,-73.92799335,noise 40.68990051,-73.91582372,noise 40.73095218,-73.73291158,noise 40.75647412,-73.94726506,noise 40.86210781,-73.91928608,noise 40.7541306,-73.98833448,noise 40.7090018,-73.95609994,noise 40.83793321,-73.87166571,noise 40.69486155,-73.7977223,noise 40.6806071,-73.94337714,noise 40.68987335,-73.84281134,noise 40.80934133,-73.94921721,noise 40.66050954,-73.96281426,noise 40.7092178,-73.7921673,noise 40.6704213,-73.94349033,noise 40.71455156,-73.93789415,noise 40.86200162,-73.85768613,noise 40.76378192,-73.83332694,noise 40.58534289,-73.8097405,noise 40.67504911,-73.95638546,noise 40.88852287,-73.91563732,noise 40.84432303,-73.90940815,noise 40.82700844,-73.94776923,noise 40.83280618,-73.94385832,noise 40.82977093,-73.89374542,noise 40.70646226,-73.9194024,noise 40.72197601,-73.99025937,noise 40.86613852,-73.92558294,noise 40.65052979,-73.95582489,noise 40.82062949,-73.92711516,noise 40.71093588,-74.01605134,noise 40.6571417,-73.91980078,noise 40.86904669,-73.90522012,noise 40.71254873,-73.95796249,noise 40.77762856,-73.90885619,noise 40.71762841,-73.96344255,noise 40.64590981,-74.01316009,noise 40.67441768,-73.87419388,noise 40.6764204,-73.94153484,noise 40.86437703,-73.92653575,noise 40.57522882,-73.98884088,noise 40.68383168,-73.93222956,noise 40.88355217,-73.89849823,noise 40.86437703,-73.92653575,noise 40.72488931,-73.97828105,noise 40.80899407,-73.94051169,noise 40.71760489,-73.95882508,noise 40.8710471,-73.89821721,noise 40.62905326,-73.93087656,noise 40.7508539,-74.00389072,noise 40.69615898,-73.7866075,noise 40.8645253,-73.92661874,noise 40.84139018,-73.93580605,noise 40.8645253,-73.92661874,noise 40.76103624,-73.9870157,noise 40.86225027,-73.92291562,noise 40.70578481,-73.92012097,noise 40.83282537,-73.90932623,noise 40.8423945,-73.93536415,noise 40.68699728,-73.95684279,noise 40.7994951,-73.95360227,noise 40.68729923,-73.95691111,noise 40.78759753,-73.94319587,noise 40.73161487,-73.84417057,noise 40.81986557,-73.95852336,noise 40.76288279,-73.80929111,noise 40.73619707,-73.84103136,noise 40.76118509,-73.85765969,noise 40.68383168,-73.93222956,noise 40.84361298,-73.94013015,noise 40.84361298,-73.94013015,noise 40.86941776,-73.91657993,noise 40.74715043,-73.87600178,noise 40.84361298,-73.94013015,noise 40.68729923,-73.95691111,noise 40.84361298,-73.94013015,noise 40.72525963,-73.83935816,noise 40.71106169,-73.91826783,noise 40.67070111,-73.93297829,noise 40.84361298,-73.94013015,noise 40.75393018,-73.91203599,noise 40.84361298,-73.94013015,noise 40.51770136,-74.24054207,noise 40.67287482,-73.92390236,noise 40.68159358,-73.97934794,noise 40.84361298,-73.94013015,noise 40.69729772,-73.92377711,noise 40.83037632,-73.94802676,noise 40.66065514,-73.99054225,noise 40.84361298,-73.94013015,noise 40.85486958,-73.88618643,noise 40.68204501,-73.87382615,noise 40.66065514,-73.99054225,noise 40.70210496,-73.92141292,noise 40.70218073,-73.98965636,noise 40.85199617,-73.93178712,noise 40.51478878,-74.24842226,noise 40.68419677,-73.9323049,noise 40.68945892,-73.91625699,noise 40.68723335,-73.95690033,noise 40.82709087,-73.94796428,noise 40.88035134,-73.90431802,noise 40.67518658,-73.95699824,noise 40.67207496,-73.84390593,noise 40.83096158,-73.94946088,noise 40.84796958,-73.92290325,noise 40.85545961,-73.8918138,noise 40.84361298,-73.94013015,noise 40.74102858,-73.92167375,noise 40.65023113,-73.91332952,noise 40.76449114,-73.98165065,noise 40.84817985,-73.89692568,noise 40.7581599,-73.9625937,noise 40.72894882,-73.97836993,noise 40.83819548,-73.91118371,noise 40.68021313,-73.82120538,noise 40.76331469,-73.92819586,noise 40.86333019,-73.92915078,noise 40.73748845,-73.88345324,noise 40.76058323,-73.98592204,noise 40.88216854,-73.86358822,noise 40.78744229,-73.95189174,noise 40.67915413,-73.98342993,noise 40.63941073,-73.94933572,noise 40.63992945,-73.94923444,noise 40.83306527,-73.93544549,noise 40.8372988,-73.94289685,noise 40.67287482,-73.92390236,noise 40.68459565,-73.9441742,noise 40.87015945,-73.8909872,noise 40.62863721,-74.08003528,noise 40.70281008,-73.929444,noise 40.6990715,-73.90609289,noise 40.82849131,-73.94940133,noise 40.70542601,-73.78256712,noise 40.68459565,-73.9441742,noise 40.68945892,-73.91625699,noise 40.88124837,-73.86070069,noise 40.70646226,-73.9194024,noise 40.85293968,-73.93067642,noise 40.66559325,-73.99436602,noise 40.68945892,-73.91625699,noise 40.74860668,-73.97810369,noise 40.8713487,-73.88894959,noise 40.78112593,-73.77235035,noise 40.68723335,-73.95690033,noise 40.74860668,-73.97810369,noise 40.84651959,-73.94006247,noise 40.84361298,-73.94013015,noise 40.84512367,-73.94230822,noise 40.6990715,-73.90609289,noise 40.84628291,-73.93885187,noise 40.76358389,-73.993069,noise 40.68400462,-73.93227625,noise 40.88340238,-73.8472323,noise 40.80232908,-73.95043257,noise 40.81540991,-73.93800235,noise 40.82015108,-73.87246957,noise 40.83811767,-73.94483683,noise 40.82410397,-73.9528408,noise 40.66559325,-73.99436602,noise 40.85004693,-73.88598865,noise 40.76527581,-73.91791611,noise 40.67331613,-73.98436868,noise 40.6938318,-73.90960541,noise 40.59034214,-74.06662421,noise 40.83819186,-73.94501385,noise 40.80205342,-73.96169855,noise 40.83811767,-73.94483683,noise 40.83811767,-73.94483683,noise 40.87911388,-73.87590394,noise 40.83811767,-73.94483683,noise 40.84361298,-73.94013015,noise 40.81343821,-73.94134584,noise 40.74860668,-73.97810369,noise 40.88296989,-73.88353453,noise 40.83301777,-73.94436405,noise 40.85199617,-73.93178712,noise 40.83777968,-73.94402036,noise 40.79339574,-73.9404245,noise 40.83306527,-73.93544549,noise 40.83264129,-73.94342843,noise 40.83811767,-73.94483683,noise 40.8335405,-73.82853389,noise 40.79736576,-73.94848594,noise 40.79566308,-73.93566956,noise 40.83306527,-73.93544549,noise 40.8366063,-73.94122422,noise 40.824757,-73.94051566,noise 40.85961825,-73.89523054,noise 40.6471319,-74.00462341,noise 40.69225086,-73.95026559,noise 40.86210781,-73.91928608,noise 40.62863721,-74.08003528,noise 40.83306527,-73.93544549,noise 40.80603558,-73.94677066,noise 40.62916131,-74.01142752,noise 40.82001485,-73.91532313,noise 40.71612329,-73.9360277,noise 40.82225992,-73.93651821,noise 40.72136411,-73.99266213,noise 40.82225992,-73.93651821,noise 40.68295573,-73.88929217,noise 40.8605242,-73.92768963,noise 40.8160255,-73.93945771,noise 40.77161206,-73.99045429,noise 40.64914464,-73.93010257,noise 40.81280465,-73.91557435,noise 40.70277711,-73.92938633,noise 40.75647412,-73.94726506,noise 40.84785476,-73.89557799,noise 40.78654228,-73.94068341,noise 40.83528966,-73.93756823,noise 40.64846321,-74.00075677,noise 40.78087722,-73.94644052,noise 40.72408245,-73.97885855,noise 40.69388651,-73.9992355,noise 40.68200681,-73.8349591,noise 40.74471995,-73.95086159,noise 40.84208302,-73.92010549,noise 40.71581254,-73.94002129,noise 40.79293276,-73.94790069,noise 40.64321549,-73.90305457,noise 40.79967479,-73.94411381,noise 40.73588925,-73.99120995,noise 40.74566749,-73.94606823,noise 40.84767534,-73.92208672,noise 40.81280465,-73.91557435,noise 40.84796958,-73.92290325,noise 40.72079616,-74.00183626,noise 40.68266295,-73.99320721,noise 40.83306527,-73.93544549,noise 40.62988317,-73.89576773,noise 40.71148133,-73.94559451,noise 40.69388651,-73.9992355,noise 40.67358845,-73.96295477,noise 40.83646959,-73.93702505,noise 40.83130006,-73.92158193,noise 40.8338819,-73.87659541,noise 40.58888681,-73.78949221,noise 40.8424349,-73.92091464,noise 40.74471995,-73.95086159,noise 40.69564084,-73.8393538,noise 40.68248458,-73.89028446,noise 40.68255667,-73.88818954,noise 40.82410397,-73.9528408,noise 40.67335478,-73.96183375,noise 40.84104404,-73.92194631,noise 40.72012094,-74.00241344,noise 40.78069065,-73.94659232,noise 40.64173511,-73.91962471,noise 40.67918426,-73.94127644,noise 40.7038279,-73.99402016,noise 40.78069065,-73.94659232,noise 40.71495071,-73.95175288,noise 40.69447388,-73.99831953,noise 40.88054197,-73.87669685,noise 40.6848678,-73.81229057,noise 40.80820107,-73.91102506,noise 40.67335478,-73.96183375,noise 40.8897167,-73.86380782,noise 40.73141011,-73.99697276,noise 40.83024257,-73.94968908,noise 40.82892541,-73.95039469,noise 40.71072993,-73.95336828,noise 40.67792079,-73.97786372,noise 40.69388651,-73.9992355,noise 40.68312555,-73.88892412,noise 40.74920895,-73.88944192,noise 40.84324789,-73.91040714,noise 40.79896085,-73.94348956,noise 40.78069065,-73.94659232,noise 40.69322877,-73.96784453,noise 40.78087722,-73.94644052,noise 40.69339794,-73.99948793,noise 40.82541392,-73.92347498,noise 40.63556645,-74.02015141,noise 40.78069065,-73.94659232,noise 40.69388651,-73.9992355,noise 40.69388651,-73.9992355,noise 40.692785,-73.91180653,noise 40.69339794,-73.99948793,noise 40.71153872,-73.94507144,noise 40.6806071,-73.94337714,noise 40.82959223,-73.95005814,noise 40.77013454,-73.98304266,noise 40.83024257,-73.94968908,noise 40.82959223,-73.95005814,noise 40.74777763,-73.88256907,noise 40.87997269,-73.88353617,noise 40.69396945,-73.92987527,noise 40.71106169,-73.91826783,noise 40.69317245,-73.94876838,noise 40.80036497,-73.93121156,noise 40.78069065,-73.94659232,noise 40.72605395,-73.98353372,noise 40.87974875,-73.8846612,noise 40.86605105,-73.88573706,noise 40.82829707,-73.95085768,noise 40.70793407,-73.92027709,noise 40.6806071,-73.94337714,noise 40.69599997,-73.99824016,noise 40.88923532,-73.90039556,noise 40.67973117,-73.9373966,noise 40.78052304,-73.9462061,noise 40.69447388,-73.99831953,noise 40.61017702,-74.16022085,noise 40.65072855,-73.94566568,noise 40.85569572,-73.89188571,noise 40.78069065,-73.94659232,noise 40.57788073,-73.99475861,noise 40.6806071,-73.94337714,noise 40.78069065,-73.94659232,noise 40.7985263,-73.9417021,noise 40.71274564,-74.0060095,noise 40.65559058,-73.91186291,noise 40.64183181,-74.00037835,noise 40.76973914,-73.77016897,noise 40.69434487,-73.99784352,noise 40.8203634,-73.84834169,noise 40.74705161,-73.88665213,noise 40.60735642,-73.98625688,noise 40.75858018,-73.82561174,noise 40.84777934,-73.93487097,noise 40.61653894,-73.97659097,noise 40.72488931,-73.97828105,noise 40.79500284,-73.93301928,noise 40.70605964,-73.83143704,noise 40.72893887,-73.98485715,noise 40.72349367,-73.98825325,noise 40.70548275,-73.92825455,noise 40.72201471,-73.9944298,noise 40.71942599,-73.9887013,noise 40.90031296,-73.86770005,noise 40.85434768,-73.90059963,noise 40.71299888,-73.96633081,noise 40.88674715,-73.85716662,noise 40.85467153,-73.88575661,noise 40.70507626,-73.92784021,noise 40.85205434,-73.82903921,noise 40.63597511,-73.97814065,noise 40.71884964,-73.98921727,noise 40.6368429,-73.93075319,noise 40.69496964,-73.93168813,noise 40.62816759,-73.92786573,noise 40.7296035,-73.98823774,noise 40.70558122,-73.92770982,noise 40.68272042,-73.96329223,noise 40.69126455,-73.90509421,noise 40.72349367,-73.98825325,noise 40.7170331,-73.95643735,noise 40.84711145,-73.93818244,noise 40.71692062,-73.9565709,noise 40.70605964,-73.83143704,noise 40.71522127,-73.99171409,noise 40.78536042,-73.97298193,noise 40.76459406,-73.91646214,noise 40.72674376,-73.99168018,noise 40.70605964,-73.83143704,noise 40.68241996,-73.80760669,noise 40.70614247,-73.83176505,noise 40.8309032,-73.86613609,noise 40.6927436,-73.75839731,noise 40.69726627,-73.96765506,noise 40.78536042,-73.97298193,noise 40.72349367,-73.98825325,noise 40.73945487,-74.00597582,noise 40.76181083,-73.99387056,noise 40.73748845,-73.88345324,noise 40.76743782,-73.92062464,noise 40.71176537,-73.94268697,noise 40.68152493,-73.97922177,noise 40.76331469,-73.92819586,noise 40.84711145,-73.93818244,noise 40.77075354,-73.95694015,noise 40.74294904,-73.99646701,noise 40.76331469,-73.92819586,noise 40.83303149,-73.9443532,noise 40.770663,-73.95701963,noise 40.62863721,-74.08003528,noise 40.74888619,-73.97584069,noise 40.70277711,-73.92938633,noise 40.83313867,-73.94464943,noise 40.74294904,-73.99646701,noise 40.83313867,-73.94464943,noise 40.83287211,-73.94397029,noise 40.72674376,-73.99168018,noise 40.69541704,-73.90804899,noise 40.74294904,-73.99646701,noise 40.84711145,-73.93818244,noise 40.74294904,-73.99646701,noise 40.82344812,-73.9531809,noise 40.74294904,-73.99646701,noise 40.76330098,-73.92821032,noise 40.76058323,-73.98592204,noise 40.76331469,-73.92819586,noise 40.86404014,-73.89243976,noise 40.71662604,-73.96179814,noise 40.72674376,-73.99168018,noise 40.7073419,-73.7960866,noise 40.51478878,-74.24842226,noise 40.70351209,-73.80510051,noise 40.74568843,-73.97522834,noise 40.51770136,-74.24054207,noise 40.73053099,-73.95429614,noise 40.63597511,-73.97814065,noise 40.60735642,-73.98625688,noise 40.72197601,-73.99025937,noise 40.72197601,-73.99025937,noise 40.84222972,-73.91795127,noise 40.73398138,-73.95489275,noise 40.755483,-73.88616134,noise 40.87026634,-73.89082432,noise 40.86437703,-73.92653575,noise 40.68298655,-73.86194413,noise 40.51478878,-74.24842226,noise 40.68941497,-73.99156585,noise 40.76186572,-73.99384168,noise 40.72979348,-73.99884181,noise 40.86437703,-73.92653575,noise 40.74795437,-73.88094469,noise 40.51478878,-74.24842226,noise 40.57485805,-73.98676392,noise 40.86437703,-73.92653575,noise 40.82746873,-73.94598387,noise 40.70963675,-73.83002488,noise 40.67290293,-73.95020432,noise 40.7096731,-73.94117023,noise 40.67614122,-74.00890835,noise 40.51770136,-74.24054207,noise 40.74664172,-73.89139142,noise 40.72342524,-73.99027359,noise 40.83450977,-73.94208615,noise 40.73165944,-73.98941364,noise 40.86437703,-73.92653575,noise 40.7581599,-73.9625937,noise 40.65920401,-73.90998753,noise 40.86437703,-73.92653575,noise 40.68152493,-73.97922177,noise 40.87937617,-73.87229088,noise 40.73416286,-74.00798156,noise 40.51478878,-74.24842226,noise 40.69176837,-73.9069578,noise 40.83454275,-73.94216201,noise 40.63597511,-73.97814065,noise 40.68152493,-73.97922177,noise 40.68241996,-73.80760669,noise 40.61602089,-73.98037317,noise 40.8645253,-73.92661874,noise 40.68272042,-73.96329223,noise 40.68272042,-73.96329223,noise 40.66920804,-73.99291299,noise 40.68230634,-73.92894289,noise 40.74708524,-73.99345688,noise 40.81370491,-73.96214342,noise 40.83337398,-73.91614451,noise 40.51478878,-74.24842226,noise 40.66001761,-73.96096553,noise 40.68272042,-73.96329223,noise 40.6471319,-74.00462341,noise 40.68230634,-73.92894289,noise 40.86260529,-73.92027606,noise 40.78091958,-73.94905834,noise 40.7202352,-73.98447673,noise 40.76473551,-73.98221735,noise 40.68157435,-73.97929747,noise 40.68947714,-73.96958077,noise 40.74089181,-73.98165715,noise 40.82959223,-73.95005814,noise 40.85104623,-73.91487156,noise 40.80615796,-73.9503936,noise 40.77090216,-73.7352894,noise 40.68400462,-73.93227625,noise 40.68272042,-73.96329223,noise 40.85090599,-73.91451028,noise 40.76009487,-73.98770173,noise 40.67337243,-73.96560458,noise 40.64304917,-74.01750519,noise 40.51770136,-74.24054207,noise 40.81796659,-73.89450129,noise 40.69058524,-73.95831169,noise 40.67481811,-73.88712099,noise 40.68733923,-73.84842789,noise 40.73538978,-73.99216263,noise 40.6471319,-74.00462341,noise 40.71153872,-73.94507144,noise 40.86381074,-73.92104468,noise 40.7144465,-74.01549307,noise 40.7479846,-73.89815981,noise 40.80660795,-73.95006455,noise 40.81796659,-73.89450129,noise 40.69058524,-73.95831169,noise 40.86210781,-73.91928608,noise 40.81796659,-73.89450129,noise 40.65810733,-73.91523311,noise 40.76130522,-73.96213711,noise 40.74705161,-73.88665213,noise 40.74860668,-73.97810369,noise 40.67752744,-73.96370969,noise 40.7479846,-73.89815981,noise 40.64810387,-73.95025886,noise 40.68194587,-73.90487672,noise 40.72067335,-73.97823192,noise 40.6806071,-73.94337714,noise 40.86404894,-73.90234219,noise 40.78311615,-73.95085853,noise 40.64625884,-73.96346003,noise 40.75059207,-73.9837442,noise 40.8759857,-73.85103891,noise 40.71865145,-73.98431115,noise 40.86426508,-73.89231286,noise 40.74860668,-73.97810369,noise 40.64354189,-73.94396352,noise 40.70223262,-73.80812657,noise 40.78898921,-73.97406384,noise 40.7985263,-73.9417021,noise 40.70669896,-74.00520824,noise 40.73425341,-73.99160708,noise 40.81869187,-73.85044458,noise 40.71461498,-73.99959599,noise 40.62586437,-74.07689062,noise 40.6716626,-73.95091902,noise 40.51478878,-74.24842226,noise 40.78536042,-73.97298193,noise 40.69431547,-73.94541379,noise 40.86054469,-73.89385171,noise 40.62586437,-74.07689062,noise 40.51770136,-74.24054207,noise 40.66608585,-73.93080213,noise 40.70605964,-73.83143704,noise 40.62586437,-74.07689062,noise 40.82462134,-73.93827921,noise 40.84776714,-73.91231672,noise 40.72201471,-73.9944298,noise 40.66320531,-73.94946904,noise 40.51478878,-74.24842226,noise 40.75955431,-73.98929731,noise 40.78863102,-73.85212273,noise 40.86553576,-73.9272684,noise 40.51478878,-74.24842226,noise 40.51478878,-74.24842226,noise 40.83027301,-73.91691087,noise 40.68272042,-73.96329223,noise 40.84118523,-73.91587083,noise 40.51478878,-74.24842226,noise 40.77283496,-73.91071488,noise 40.73349828,-73.95481369,noise 40.67467124,-73.94010155,noise 40.51478878,-74.24842226,noise 40.72436999,-73.97551767,noise 40.7572476,-73.96828648,noise 40.74089156,-73.92200229,noise 40.68840579,-73.97767634,noise 40.77410117,-73.98671349,noise 40.86111875,-73.92603322,noise 40.8605242,-73.92768963,noise 40.7585032,-73.99071967,noise 40.62710223,-74.02957303,noise 40.78311615,-73.95085853,noise 40.82264393,-73.95321759,noise 40.86057518,-73.90691324,noise 40.65668753,-73.92607608,noise 40.86210781,-73.91928608,noise 40.57657124,-73.99124532,noise 40.70520018,-74.00766792,noise 40.70585178,-73.92171868,noise 40.64911954,-73.83738647,noise 40.75930953,-73.98485746,noise 40.83390436,-73.9097295,noise 40.80235884,-73.9494248,noise 40.74223268,-74.00249364,noise 40.7985263,-73.9417021,noise 40.82123088,-73.92758058,noise 40.74278773,-73.882632,noise 40.60745787,-73.98533128,noise 40.85959342,-73.89509682,noise 40.7623246,-73.9764531,noise 40.83502422,-73.9250829,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.70774372,-73.95360482,noise 40.79878494,-73.96321378,noise 40.83320462,-73.94480477,noise 40.70605964,-73.83143704,noise 40.64998168,-73.83758618,noise 40.83530941,-73.94396823,noise 40.72342524,-73.99027359,noise 40.69726627,-73.96765506,noise 40.82447734,-73.92672794,noise 40.69726627,-73.96765506,noise 40.70985685,-73.95277013,noise 40.67937838,-73.95844128,noise 40.82465841,-73.92659767,noise 40.63597511,-73.97814065,noise 40.86132105,-73.92910592,noise 40.75057632,-73.87641407,noise 40.84342648,-73.91426328,noise 40.83657605,-73.94112668,noise 40.64033397,-73.97892472,noise 40.71037603,-73.94171427,noise 40.84854504,-73.90678188,noise 40.82423254,-73.92591886,noise 40.84086347,-73.91136447,noise 40.82465429,-73.93830808,noise 40.81971325,-73.91959763,noise 40.69621969,-73.74996049,noise 40.74992339,-73.99510238,noise 40.80271872,-73.96510069,noise 40.88458052,-73.86078412,noise 40.71758787,-73.95731359,noise 40.81986735,-73.92017551,noise 40.81986735,-73.92017551,noise 40.6934153,-73.94011717,noise 40.78311615,-73.95085853,noise 40.57206459,-73.99791946,noise 40.66453345,-73.91235573,noise 40.67547358,-73.97064707,noise 40.77730373,-73.98258228,noise 40.72766551,-73.87356659,noise 40.63597511,-73.97814065,noise 40.60745787,-73.98533128,noise 40.74900293,-73.7773613,noise 40.74436325,-73.91370508,noise 40.67288296,-73.92375815,noise 40.76330097,-73.92820671,noise 40.76330097,-73.92820671,noise 40.75624515,-73.92120466,noise 40.66002846,-73.96060149,noise 40.82907425,-73.88022861,noise 40.86399121,-73.85967031,noise 40.70605964,-73.83143704,noise 40.6859248,-73.94007702,noise 40.76330097,-73.92820671,noise 40.72953107,-73.9804155,noise 40.7174035,-73.95605473,noise 40.77604514,-73.94953866,noise 40.81475619,-73.94237067,noise 40.76010264,-73.9839729,noise 40.68058209,-73.98912971,noise 40.67336419,-73.96556132,noise 40.73768193,-73.8622999,noise 40.82700844,-73.94776923,noise 40.69357091,-73.96460248,noise 40.67135954,-73.8762977,noise 40.77592878,-73.94712328,noise 40.5966172,-73.97650794,noise 40.83777968,-73.94402036,noise 40.82230605,-73.94067683,noise 40.72436999,-73.97551767,noise 40.6936969,-73.80036912,noise 40.58886785,-73.80198947,noise 40.63597511,-73.97814065,noise 40.72847224,-73.98464799,noise 40.70958887,-74.01018609,noise 40.82817421,-73.87526903,noise 40.76105786,-73.98433004,noise 40.62964721,-74.01069987,noise 40.84222972,-73.91795127,noise 40.76118509,-73.85765969,noise 40.71346027,-73.95874828,noise 40.75854116,-73.84435664,noise 40.66186402,-73.93992562,noise 40.69644309,-73.92227067,noise 40.86390569,-73.92345961,noise 40.6621404,-73.99627665,noise 40.66206355,-73.99637037,noise 40.83365292,-73.91854365,noise 40.83723085,-73.9388385,noise 40.82567394,-73.94654177,noise 40.82523253,-73.94760441,noise 40.84881318,-73.91272016,noise 40.67774235,-73.95107678,noise 40.78073727,-73.9146112,noise 40.64992004,-74.01225634,noise 40.63597511,-73.97814065,noise 40.86613852,-73.92558294,noise 40.67774235,-73.95107678,noise 40.86613852,-73.92558294,noise 40.52403273,-74.21471703,noise 40.83502422,-73.9250829,noise 40.85202686,-73.91223158,noise 40.84945291,-73.90599986,noise 40.7572323,-73.98979219,noise 40.85702748,-73.92773319,noise 40.70501839,-73.92323809,noise 40.84429631,-73.91033705,noise 40.85702748,-73.92773319,noise 40.77425465,-73.90806289,noise 40.81370491,-73.96214342,noise 40.84429631,-73.91033705,noise 40.82096605,-73.93956521,noise 40.66223184,-73.93996494,noise 40.68866995,-73.8754723,noise 40.84256154,-73.91378732,noise 40.71768949,-73.95747225,noise 40.68721224,-73.91804466,noise 40.70953429,-73.96402771,noise 40.74985425,-73.98793822,noise 40.83811767,-73.94483683,noise 40.82959223,-73.95005814,noise 40.71768949,-73.95747225,noise 40.70585178,-73.92171868,noise 40.67855833,-73.88900744,noise 40.70808363,-73.9525153,noise 40.65141983,-73.94482182,noise 40.70387443,-73.91254926,noise 40.67347971,-73.95106548,noise 40.76312707,-73.88611217,noise 40.82955313,-73.90524024,noise 40.86292586,-73.92776655,noise 40.8027236,-73.9553663,noise 40.6411861,-73.91955691,noise 40.68220447,-73.93787741,noise 40.82123088,-73.92758058,noise 40.72228696,-73.9574621,noise 40.84860826,-73.91396744,noise 40.67413485,-73.87159877,noise 40.58413031,-73.93277355,noise 40.69210198,-73.90542837,noise 40.86172321,-73.92700505,noise 40.74765332,-73.94908739,noise 40.84044868,-73.90744014,noise 40.81507458,-73.91946595,noise 40.72681157,-73.77596341,noise 40.65943588,-73.94757245,noise 40.83759652,-73.94556004,noise 40.84839623,-73.90604473,noise 40.83882344,-73.94563493,noise 40.72979348,-73.99884181,noise 40.69396945,-73.92987527,noise 40.64779609,-74.00572617,noise 40.82811584,-73.94463554,noise 40.83007156,-73.94780657,noise 40.66070212,-73.89331188,noise 40.76331469,-73.92819586,noise 40.83052153,-73.8758175,noise 40.73892435,-73.83833647,noise 40.86565753,-73.92888075,noise 40.81262378,-73.96301466,noise 40.70867525,-73.95630575,noise 40.62436494,-74.02029212,noise 40.66070212,-73.89331188,noise 40.76331469,-73.92819586,noise 40.80848781,-73.95611741,noise 40.86210781,-73.91928608,noise 40.80313145,-73.94633231,noise 40.63181,-73.89277082,noise 40.70932835,-73.95588692,noise 40.84777934,-73.93487097,noise 40.80817225,-73.95634519,noise 40.65692084,-73.92609024,noise 40.72306557,-73.98907949,noise 40.68068412,-73.99669745,noise 40.78022995,-73.96136808,noise 40.63999545,-74.00487514,noise 40.74900293,-73.7773613,noise 40.80384339,-73.96295814,noise 40.85283375,-73.88417289,noise 40.67052369,-73.9300297,noise 40.80536997,-73.9565746,noise 40.83466267,-73.89150431,noise 40.76330097,-73.92820671,noise 40.80270711,-73.95533019,noise 40.81565843,-73.96000719,noise 40.65162493,-73.93305512,noise 40.81458044,-73.94794878,noise 40.87932647,-73.8770788,noise 40.75178639,-73.94792566,noise 40.83425122,-73.92244936,noise 40.82587669,-73.85190627,noise 40.63820736,-74.01750752,noise 40.8351065,-73.92499246,noise 40.81206367,-73.9156945,noise 40.69235624,-73.91105344,noise 40.65164646,-73.93232352,noise 40.86349291,-73.90704292,noise 40.65162493,-73.93305512,noise 40.7458977,-73.87496113,noise 40.69089134,-73.9425174,noise 40.701891,-73.92159711,noise 40.66713556,-73.88174139,noise 40.84830248,-73.90551715,noise 40.84588909,-73.91508057,noise 40.65162493,-73.93305512,noise 40.63257041,-74.16122215,noise 40.79589753,-73.94892047,noise 40.83137895,-73.92895353,noise 40.65162493,-73.93305512,noise 40.85199617,-73.93178712,noise 40.81717607,-73.94605364,noise 40.68272042,-73.96329223,noise 40.65821334,-73.95826705,noise 40.85296593,-73.90575632,noise 40.86018661,-73.9049833,noise 40.69040207,-73.94676922,noise 40.64269519,-73.96977506,noise 40.701891,-73.92159711,noise 40.83006694,-73.94976148,noise 40.65675108,-73.96027185,noise 40.65670997,-73.96044848,noise 40.68852889,-73.95010971,noise 40.51770136,-74.24054207,noise 40.68811462,-73.92103277,noise 40.6861438,-73.96539247,noise 40.82622076,-73.94788547,noise 40.86399121,-73.85967031,noise 40.75895909,-73.8428721,noise 40.67915413,-73.98342993,noise 40.83399685,-73.94276597,noise 40.84125035,-73.91120493,noise 40.67990325,-73.90761971,noise 40.85133577,-73.92901897,noise 40.83792612,-73.9404822,noise 40.71348621,-73.91570015,noise 40.8459114,-73.90836866,noise 40.67163765,-73.95033504,noise 40.701891,-73.92159711,noise 40.73748845,-73.88345324,noise 40.66671709,-73.89161168,noise 40.7015033,-73.92900178,noise 40.69040207,-73.94676922,noise 40.75979055,-73.84272936,noise 40.64811813,-73.94538672,noise 40.83777968,-73.94402036,noise 40.80174149,-73.96475806,noise 40.80729251,-73.94645539,noise 40.59154618,-74.07269601,noise 40.66671709,-73.89161168,noise 40.69726627,-73.96765506,noise 40.83352824,-73.92490751,noise 40.69641847,-73.9041817,noise 40.86019986,-73.92694526,noise 40.75911212,-73.84237722,noise 40.82393497,-73.94914464,noise 40.88397552,-73.85105356,noise 40.84679515,-73.91183367,noise 40.679887,-73.90790095,noise 40.84679515,-73.91183367,noise 40.75596004,-73.92585763,noise 40.68174168,-73.95858403,noise 40.8532216,-73.90294729,noise 40.8645253,-73.92661874,noise 40.79589753,-73.94892047,noise 40.81916263,-73.8798129,noise 40.68423603,-73.81199669,noise 40.69475141,-73.843247,noise 40.83130723,-73.94315855,noise 40.74860668,-73.97810369,noise 40.74847229,-73.87001547,noise 40.83363344,-73.93546662,noise 40.80833552,-73.94085906,noise 40.72192991,-73.97557268,noise 40.62863721,-74.08003528,noise 40.82689678,-73.90258822,noise 40.74457176,-73.94484572,noise 40.83856005,-73.9458556,noise 40.63293436,-74.07776705,noise 40.67285706,-73.97991663,noise 40.56152225,-74.17185124,noise 40.69788142,-73.8947382,noise 40.71286148,-73.96578259,noise 40.72028707,-73.98252503,noise 40.84858165,-73.91144093,noise 40.75858018,-73.82561174,noise 40.87376639,-73.88574188,noise 40.68354957,-73.8692875,noise 40.66575795,-73.9946688,noise 40.61352133,-73.9870588,noise 40.85505679,-73.88400274,noise 40.8759857,-73.85103891,noise 40.74954454,-73.82207317,noise 40.87492967,-73.86497351,noise 40.81540269,-73.93990986,noise 40.8273166,-73.90243585,noise 40.70867525,-73.95630575,noise 40.64697782,-74.01038193,noise 40.82743579,-73.94598389,noise 40.74860668,-73.97810369,noise 40.67118381,-73.87624395,noise 40.62429808,-73.99753598,noise 40.84800366,-73.89634402,noise 40.83262757,-73.94343929,noise 40.83264129,-73.94342843,noise 40.71778618,-73.94032975,noise 40.58534289,-73.8097405,noise 40.7303232,-74.00246794,noise 40.57276448,-73.99640402,noise 40.87302289,-73.91845926,noise 40.73045771,-74.00145767,noise 40.82817421,-73.87526903,noise 40.71309505,-73.96669509,noise 40.57276448,-73.99640402,noise 40.85004693,-73.88598865,noise 40.62871916,-74.08443055,noise 40.57275076,-73.99682517,noise 40.68400462,-73.93227625,noise 40.63912311,-74.08278266,noise 40.85215418,-73.92982417,noise 40.83255063,-73.94325867,noise 40.83264129,-73.94342843,noise 40.83261656,-73.94336702,noise 40.83264129,-73.94342843,noise 40.85578733,-73.90557158,noise 40.75560446,-73.9195198,noise 40.71392684,-73.96713475,noise 40.72781989,-73.99475042,noise 40.68354957,-73.8692875,noise 40.68852336,-73.95001957,noise 40.69958817,-73.93484984,noise 40.7257038,-73.999816,noise 40.84800366,-73.89634402,noise 40.74278773,-73.882632,noise 40.67793913,-73.99219461,noise 40.65518147,-73.95397655,noise 40.65808434,-73.90679573,noise 40.74278773,-73.882632,noise 40.72443297,-73.99818529,noise 40.72224762,-73.98889924,noise 40.76365789,-73.97346363,noise 40.67300949,-73.78808752,noise 40.57278642,-73.99596127,noise 40.79861514,-73.94374268,noise 40.78373973,-73.94589657,noise 40.66572954,-73.9536845,noise 40.78373973,-73.94589657,noise 40.81452987,-73.86521889,noise 40.72781989,-73.99475042,noise 40.7272901,-73.99363922,noise 40.66865572,-73.94783916,noise 40.68420402,-73.9680544,noise 40.79896085,-73.94348956,noise 40.71135984,-73.9568703,noise 40.71144226,-73.95706142,noise 40.7187276,-73.94027119,noise 40.71136535,-73.95690276,noise 40.78311615,-73.95085853,noise 40.62940288,-74.0110673,noise 40.86565753,-73.92888075,noise 40.81271726,-73.9556775,noise 40.88434563,-73.87883435,noise 40.83441084,-73.94185134,noise 40.76945176,-73.98831374,noise 40.85702748,-73.92773319,noise 40.85249568,-73.93174323,noise 40.85702748,-73.92773319,noise 40.68714819,-73.79586349,noise 40.82847481,-73.94932185,noise 40.85702748,-73.92773319,noise 40.67127809,-73.95035693,noise 40.67216709,-73.94373038,noise 40.7590692,-73.84513509,noise 40.82123088,-73.92758058,noise 40.85333434,-73.92972171,noise 40.85702748,-73.92773319,noise 40.75854116,-73.84435664,noise 40.7757008,-73.84602794,noise 40.72349367,-73.98825325,noise 40.83487248,-73.94289893,noise 40.79859323,-73.93351771,noise 40.72349367,-73.98825325,noise 40.85199617,-73.93178712,noise 40.65641242,-73.90636918,noise 40.79859323,-73.93351771,noise 40.66820407,-73.9506476,noise 40.79859323,-73.93351771,noise 40.85368616,-73.93053828,noise 40.85339205,-73.92984455,noise 40.86633485,-73.92788216,noise 40.82513729,-73.94944724,noise 40.61896738,-74.00883229,noise 40.83811767,-73.94483683,noise 40.85249568,-73.93174323,noise 40.8423355,-73.91618381,noise 40.51770136,-74.24054207,noise 40.84110707,-73.86766601,noise 40.84228663,-73.91693562,noise 40.76058323,-73.98592204,noise 40.80615796,-73.9503936,noise 40.81119422,-73.94374289,noise 40.83811767,-73.94483683,noise 40.65232958,-73.92727379,noise 40.82605852,-73.87829732,noise 40.85467153,-73.88575661,noise 40.70863044,-73.95400457,noise 40.68126625,-73.96509214,noise 40.80979098,-73.9423533,noise 40.80615796,-73.9503936,noise 40.85368616,-73.93053828,noise 40.82990008,-73.94499541,noise 40.68272042,-73.96329223,noise 40.83398039,-73.94277683,noise 40.84457605,-73.93449822,noise 40.86425895,-73.92643827,noise 40.83130723,-73.94315855,noise 40.68272042,-73.96329223,noise 40.76155018,-73.92446164,noise 40.83386495,-73.94245169,noise 40.87589768,-73.91246765,noise 40.76159967,-73.92458792,noise 40.72409866,-73.95097781,noise 40.85199617,-73.93178712,noise 40.59177928,-73.96068497,noise 40.83389792,-73.94253117,noise 40.63597511,-73.97814065,noise 40.88747888,-73.90381952,noise 40.83389792,-73.94253117,noise 40.58488412,-73.92664159,noise 40.84941716,-73.88474271,noise 40.82837372,-73.8240774,noise 40.60050058,-74.00608942,noise 40.85131893,-73.93298788,noise 40.63597511,-73.97814065,noise 40.83313867,-73.94464943,noise 40.811642,-73.95059181,noise 40.75256716,-73.87724774,noise 40.69976144,-73.93074554,noise 40.62863721,-74.08003528,noise 40.83867358,-73.94225238,noise 40.636957,-73.92881463,noise 40.8872526,-73.90236597,noise 40.72293378,-73.98863937,noise 40.80276299,-73.94492031,noise 40.70585081,-73.94351079,noise 40.63868554,-73.97165051,noise 40.83777968,-73.94402036,noise 40.83811767,-73.94483683,noise 40.6943624,-73.93061051,noise 40.69357091,-73.96460248,noise 40.84069366,-73.93695238,noise 40.71110869,-73.95333555,noise 40.87027433,-73.8996249,noise 40.84118523,-73.91587083,noise 40.88434563,-73.87883435,noise 40.58413031,-73.93277355,noise 40.8872526,-73.90236597,noise 40.62863721,-74.08003528,noise 40.7735301,-73.98533081,noise 40.84107409,-73.86762993,noise 40.70847605,-73.95950521,noise 40.64982152,-74.00908863,noise 40.63075317,-74.02807952,noise 40.83148154,-73.92205871,noise 40.65295191,-73.93052384,noise 40.82817612,-73.85140611,noise 40.88652853,-73.89978118,noise 40.69491177,-73.953181,noise 40.70576011,-73.92013181,noise 40.64711463,-73.96167218,noise 40.8281031,-73.88894227,noise 40.70509335,-73.94370619,noise 40.73734837,-73.86339396,noise 40.88871736,-73.90130051,noise 40.78515582,-73.97900166,noise 40.70427851,-73.94443543,noise 40.6333314,-73.92083459,noise 40.51478878,-74.24842226,noise 40.66065514,-73.99054225,noise 40.70294413,-73.94357096,noise 40.75956957,-73.83013931,noise 40.59039134,-73.99153875,noise 40.63597511,-73.97814065,noise 40.60743593,-73.98546814,noise 40.84937857,-73.89020437,noise 40.6471319,-74.00462341,noise 40.85482292,-73.91119404,noise 40.78918317,-73.83816749,noise 40.82849131,-73.94940133,noise 40.82849131,-73.94940133,noise 40.72380192,-73.97593998,noise 40.76046448,-73.82654173,noise 40.75979055,-73.84272936,noise 40.7744127,-73.84541713,noise 40.76118509,-73.85765969,noise 40.77098,-73.79970422,noise 40.82767568,-73.87119408,noise 40.82371576,-73.90271211,noise 40.70964371,-73.83481132,noise 40.67390456,-73.96443267,noise 40.85131893,-73.93298788,noise 40.6740867,-73.9458305,noise 40.86357715,-73.90269718,noise 40.69029822,-73.94776453,noise 40.51478878,-74.24842226,noise 40.77436363,-73.84362645,noise 40.83352824,-73.92490751,noise 40.65162479,-73.93281366,noise 40.85327778,-73.93152192,noise 40.85327112,-73.92957719,noise 40.83022246,-73.94768359,noise 40.85333707,-73.92968918,noise 40.84832289,-73.90699545,noise 40.82293437,-73.9519817,noise 40.6716626,-73.95091902,noise 40.71993511,-73.97875164,noise 40.69598987,-73.85412051,noise 40.85459367,-73.9289215,noise 40.8384767,-73.9437415,noise 40.84962139,-73.93077747,noise 40.66278821,-73.95643673,noise 40.63597511,-73.97814065,noise 40.81567575,-73.94252523,noise 40.85858465,-73.89349695,noise 40.83049999,-73.94837356,noise 40.8718791,-73.86163511,noise 40.83022246,-73.94768359,noise 40.83839751,-73.92514054,noise 40.85333707,-73.92968918,noise 40.85739866,-73.9333541,noise 40.83378703,-73.94035943,noise 40.6716626,-73.95091902,noise 40.83037632,-73.94802676,noise 40.83151364,-73.87699368,noise 40.82717916,-73.88169543,noise 40.85335356,-73.92972531,noise 40.6428371,-74.02170666,noise 40.81830067,-73.89667932,noise 40.83811767,-73.94483683,noise 40.87141377,-73.86502043,noise 40.72387852,-73.99809872,noise 40.7569473,-73.99880885,noise 40.83917372,-73.94346625,noise 40.74578316,-73.91124556,noise 40.83578868,-73.91159167,noise 40.83022246,-73.94768359,noise 40.70113456,-73.91176664,noise 40.85866295,-73.93162122,noise 40.63906925,-73.95314452,noise 40.82284094,-73.95172885,noise 40.83352824,-73.92490751,noise 40.83839751,-73.92514054,noise 40.83573106,-73.91162427,noise 40.75539521,-73.91859965,noise 40.73311602,-73.87057223,noise 40.86292586,-73.92776655,noise 40.70828142,-73.94101997,noise 40.8136624,-73.95126226,noise 40.81158623,-73.90867963,noise 40.86679432,-73.92531104,noise 40.80615796,-73.9503936,noise 40.84670201,-73.91575181,noise 40.83543785,-73.86411408,noise 40.82459453,-73.87729914,noise 40.71113547,-73.95877497,noise 40.65332688,-73.93828992,noise 40.8501601,-73.93202033,noise 40.84866522,-73.88763924,noise 40.86390569,-73.92345961,noise 40.83352824,-73.92490751,noise 40.84536979,-73.94051891,noise 40.83573106,-73.91162427,noise 40.83137895,-73.92895353,noise 40.69843367,-73.93191178,noise 40.84811046,-73.90906323,noise 40.82278876,-73.95165302,noise 40.68215519,-73.84291606,noise 40.73287579,-73.95630071,noise 40.66671709,-73.89161168,noise 40.83685217,-73.86715407,noise 40.84866522,-73.88763924,noise 40.83811767,-73.94483683,noise 40.83811767,-73.94483683,noise 40.85276059,-73.86485947,noise 40.65791001,-73.83662979,noise 40.63746939,-73.91917226,noise 40.72104265,-73.98874792,noise 40.83756717,-73.91896169,noise 40.66943391,-73.92549239,noise 40.63746939,-73.91917226,noise 40.83811767,-73.94483683,noise 40.83811767,-73.94483683,noise 40.72661869,-73.9792907,noise 40.8759857,-73.85103891,noise 40.80090034,-73.96083235,noise 40.80540015,-73.95653846,noise 40.67339523,-73.88060913,noise 40.61621493,-74.07910189,noise 40.66947464,-73.95683611,noise 40.85276059,-73.86485947,noise 40.82473727,-73.87730972,noise 40.79648206,-73.96304891,noise 40.85827332,-73.93181683,noise 40.68747325,-73.82670276,noise 40.6615155,-73.95172305,noise 40.83777968,-73.94402036,noise 40.64231608,-73.92644513,noise 40.68835363,-73.95800299,noise 40.8115044,-73.92457111,noise 40.54195147,-74.17742807,noise 40.75180119,-73.7838378,noise 40.54195147,-74.17742807,noise 40.80117228,-73.96145706,noise 40.69031695,-73.94107552,noise 40.67795709,-73.83225076,noise 40.8273166,-73.90243585,noise 40.84366118,-73.92003492,noise 40.669391,-73.82512758,noise 40.82004257,-73.91202447,noise 40.85459367,-73.9289215,noise 40.85936636,-73.90219362,noise 40.81636744,-73.89870547,noise 40.67415454,-73.76839661,noise 40.72380192,-73.97593998,noise 40.66245488,-73.92696359,noise 40.68835363,-73.95800299,noise 40.82532224,-73.94572907,noise 40.80090034,-73.96083235,noise 40.75180119,-73.7838378,noise 40.824757,-73.94051566,noise 40.7354257,-73.97474863,noise 40.71768949,-73.95747225,noise 40.62940288,-74.0110673,noise 40.75053016,-73.87687613,noise 40.72786606,-73.97219706,noise 40.68965957,-74.00046877,noise 40.79788748,-73.97346082,noise 40.72943183,-73.97802701,noise 40.80680981,-73.94725769,noise 40.74149153,-73.99528343,noise 40.83137895,-73.92895353,noise 40.84151869,-73.9177353,noise 40.65136706,-74.00558953,noise 40.72979897,-73.97480128,noise 40.87166977,-73.89779683,noise 40.81356463,-73.94167809,noise 40.8315271,-73.92886303,noise 40.80387793,-73.94613304,noise 40.75053822,-73.87672092,noise 40.83477457,-73.92526387,noise 40.75053822,-73.87672092,noise 40.75053822,-73.87672092,noise 40.66375369,-73.93715928,noise 40.8768832,-73.84683505,noise 40.79827425,-73.96267229,noise 40.8273166,-73.90243585,noise 40.71136535,-73.95690276,noise 40.58537563,-73.8096216,noise 40.70601326,-73.92104403,noise 40.85871394,-73.89381125,noise 40.83024257,-73.94968908,noise 40.89072709,-73.86179119,noise 40.82801625,-73.88996139,noise 40.63783106,-73.96839007,noise 40.82892541,-73.95039469,noise 40.82892541,-73.95039469,noise 40.64758742,-74.00689372,noise 40.73259304,-73.97441053,noise 40.73280725,-73.9749589,noise 40.75647412,-73.94726506,noise 40.71255605,-73.99102185,noise 40.66182741,-73.9942474,noise 40.83811767,-73.94483683,noise 40.75962609,-73.99547346,noise 40.66182741,-73.9942474,noise 40.72532531,-73.97621002,noise 40.7342013,-74.00783002,noise 40.85609364,-73.88611566,noise 40.62429808,-73.99753598,noise 40.82959223,-73.95005814,noise 40.83024257,-73.94968908,noise 40.66154581,-73.9219509,noise 40.83793321,-73.87166571,noise 40.68777081,-73.78653699,noise 40.73366077,-74.00438766,noise 40.80503246,-73.95682044,noise 40.66689467,-73.88509416,noise 40.64758742,-74.00689372,noise 40.72062589,-73.99497105,noise 40.84361298,-73.94013015,noise 40.65601004,-73.90437309,noise 40.71829162,-73.98247866,noise 40.81452987,-73.86521889,noise 40.84781595,-73.92302271,noise 40.70571262,-73.83440268,noise 40.87187533,-73.8416254,noise 40.678484,-73.89461018,noise 40.73259304,-73.97441053,noise 40.86759551,-73.890572,noise 40.70585178,-73.92171868,noise 40.86752421,-73.89064081,noise 40.72559992,-73.97687376,noise 40.81359211,-73.94173948,noise 40.8759857,-73.85103891,noise 40.72532531,-73.97621002,noise 40.79532613,-73.97128765,noise 40.68415079,-73.88479761,noise 40.81461243,-73.91060826,noise 40.76211764,-73.86627433,noise 40.81343821,-73.94134584,noise 40.81359211,-73.94173948,noise 40.70092485,-73.93013844,noise 40.74811902,-73.8980766,noise 40.78311615,-73.95085853,noise 40.60745787,-73.98533128,noise 40.76426695,-73.9157911,noise 40.86390569,-73.92345961,noise 40.82382294,-73.94428864,noise 40.6368429,-73.93075319,noise 40.86425895,-73.92643827,noise 40.74664172,-73.89139142,noise 40.66820407,-73.9506476,noise 40.80040014,-73.95183542,noise 40.77436363,-73.84362645,noise 40.80015915,-73.94684037,noise 40.83454275,-73.94216201,noise 40.65462809,-73.94996928,noise 40.85459367,-73.9289215,noise 40.51478878,-74.24842226,noise 40.64271518,-73.94871343,noise 40.7207656,-73.99062752,noise 40.84783951,-73.93952273,noise 40.86437703,-73.92653575,noise 40.63971639,-73.94548367,noise 40.6631617,-73.95017554,noise 40.64117396,-73.89142616,noise 40.66099446,-73.96012155,noise 40.67215043,-73.94333024,noise 40.76045412,-73.91527612,noise 40.7593841,-73.98889305,noise 40.86337428,-73.92943634,noise 40.63597511,-73.97814065,noise 40.82959223,-73.95005814,noise 40.67284575,-73.93969583,noise 40.74345678,-73.87673042,noise 40.67270617,-73.75814905,noise 40.79589753,-73.94892047,noise 40.68151349,-73.95753859,noise 40.83064845,-73.9283111,noise 40.85324089,-73.92950493,noise 40.85199617,-73.93178712,noise 40.76330097,-73.92820671,noise 40.86437703,-73.92653575,noise 40.82849131,-73.94940133,noise 40.52403273,-74.21471703,noise 40.80210822,-73.95395081,noise 40.82482439,-73.87923902,noise 40.51478878,-74.24842226,noise 40.770663,-73.95701963,noise 40.71135036,-74.01588552,noise 40.82532224,-73.94572907,noise 40.72380192,-73.97593998,noise 40.51770136,-74.24054207,noise 40.72763258,-73.89248675,noise 40.51478878,-74.24842226,noise 40.79589753,-73.94892047,noise 40.7111325,-73.96654457,noise 40.86292586,-73.92776655,noise 40.79993107,-73.94066426,noise 40.86582691,-73.9276007,noise 40.83022246,-73.94768359,noise 40.67194825,-73.93976153,noise 40.85072806,-73.93650912,noise 40.86582691,-73.9276007,noise 40.77090216,-73.7352894,noise 40.82943199,-73.94195325,noise 40.64846321,-74.00075677,noise 40.83856005,-73.9458556,noise 40.65993575,-73.98772741,noise 40.72579798,-73.97916828,noise 40.82855238,-73.82424676,noise 40.82837372,-73.8240774,noise 40.72124725,-73.97956294,noise 40.64127255,-73.95829566,noise 40.72986179,-73.99143445,noise 40.83024257,-73.94968908,noise 40.66919734,-73.89645248,noise 40.77763581,-73.98237277,noise 40.72380192,-73.97593998,noise 40.74329317,-73.97988457,noise 40.82849131,-73.94940133,noise 40.69342365,-73.84580324,noise 40.83561763,-73.94565201,noise 40.68209912,-73.96033246,noise 40.75635718,-73.82577277,noise 40.75635718,-73.82577277,noise 40.75635718,-73.82577277,noise 40.84941176,-73.93367656,noise 40.6471319,-74.00462341,noise 40.62964721,-74.01069987,noise 40.71299888,-73.96633081,noise 40.69048358,-73.93953203,noise 40.68564985,-73.95063829,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.84348354,-73.93428967,noise 40.7212051,-73.99670626,noise 40.70393413,-73.94755188,noise 40.67259306,-73.96607723,noise 40.73888085,-73.98904803,noise 40.67616067,-74.00502199,noise 40.72953107,-73.9804155,noise 40.72380192,-73.97593998,noise 40.63249702,-73.93392817,noise 40.66064331,-73.96062997,noise 40.90151967,-73.84693744,noise 40.68058209,-73.98912971,noise 40.8670152,-73.92310895,noise 40.8642465,-73.92416422,noise 40.72241571,-73.95001219,noise 40.76010264,-73.9839729,noise 40.72581057,-73.99199058,noise 40.72473421,-73.98739077,noise 40.83680331,-73.94558599,noise 40.70753056,-73.78659995,noise 40.83306527,-73.93544549,noise 40.72380192,-73.97593998,noise 40.70383481,-73.93097214,noise 40.64269519,-73.96977506,noise 40.79092846,-73.96892771,noise 40.82469135,-73.92660486,noise 40.64277051,-73.95642458,noise 40.84336697,-73.91544521,noise 40.78311615,-73.95085853,noise 40.66070883,-73.95243008,noise 40.71186992,-74.00821696,noise 40.85578733,-73.90557158,noise 40.69804853,-73.90711853,noise 40.7415488,-73.98957446,noise 40.70711579,-74.01067624,noise 40.72746281,-73.78646036,noise 40.64779609,-74.00572617,noise 40.72380192,-73.97593998,noise 40.72953107,-73.9804155,noise 40.72141089,-73.9949746,noise 40.81435097,-73.94441217,noise 40.86941776,-73.91657993,noise 40.81561858,-73.94348264,noise 40.69082941,-73.79612988,noise 40.73250431,-73.9848383,noise 40.86111875,-73.92603322,noise 40.83502422,-73.9250829,noise 40.6801084,-73.86059446,noise 40.67051155,-73.91983877,noise 40.71098985,-73.95837107,noise 40.8515364,-73.93909645,noise 40.63555239,-73.97802189,noise 40.67926586,-73.95848101,noise 40.85797909,-73.93090253,noise 40.67926586,-73.95848101,noise 40.67602702,-73.80904557,noise 40.74091496,-73.99208259,noise 40.67940857,-73.95844126,noise 40.67019859,-73.92379726,noise 40.70722434,-73.9520903,noise 40.81120362,-73.95963417,noise 40.6471319,-74.00462341,noise 40.59116734,-73.98420428,noise 40.75828849,-73.87336047,noise 40.83811767,-73.94483683,noise 40.86727603,-73.91921472,noise 40.83811767,-73.94483683,noise 40.67329269,-73.95702109,noise 40.58886785,-73.80198947,noise 40.68321035,-73.81765669,noise 40.68507642,-73.97789379,noise 40.71613509,-73.98946661,noise 40.72380192,-73.97593998,noise 40.70509335,-73.94370619,noise 40.73010035,-73.72781675,noise 40.68507642,-73.97789379,noise 40.70775443,-73.94665797,noise 40.75694603,-73.84404273,noise 40.86754089,-73.92969947,noise 40.86637626,-73.92825812,noise 40.86637626,-73.92825812,noise 40.75569109,-73.97928527,noise 40.76227203,-73.99580538,noise 40.7985263,-73.9417021,noise 40.7318269,-73.98978165,noise 40.85333707,-73.92968918,noise 40.85322714,-73.92946879,noise 40.7993519,-73.95243936,noise 40.88674715,-73.85716662,noise 40.67467124,-73.94010155,noise 40.86510132,-73.92188192,noise 40.86871007,-73.92523658,noise 40.74534875,-73.90350864,noise 40.66568721,-73.95088376,noise 40.71783505,-73.95772468,noise 40.63836765,-73.95583294,noise 40.85903026,-73.93082191,noise 40.66584366,-73.95088004,noise 40.84191799,-73.93730541,noise 40.7452931,-73.99848787,noise 40.71121633,-73.94830724,noise 40.72279663,-73.98959904,noise 40.60220284,-74.16827555,noise 40.6368429,-73.93075319,noise 40.72763258,-73.89248675,noise 40.86292586,-73.92776655,noise 40.75230227,-73.87342238,noise 40.82093162,-73.95419431,noise 40.72342524,-73.99027359,noise 40.83036236,-73.86602154,noise 40.59475139,-73.9305988,noise 40.76385801,-73.98869015,noise 40.72611636,-73.82637497,noise 40.73443443,-73.98990393,noise 40.76385801,-73.98869015,noise 40.70055026,-73.91588241,noise 40.73443443,-73.98990393,noise 40.80181598,-73.93928642,noise 40.7111325,-73.96654457,noise 40.77075354,-73.95694015,noise 40.8605242,-73.92768963,noise 40.79892213,-73.96308729,noise 40.8670152,-73.92310895,noise 40.60220284,-74.16827555,noise 40.86837463,-73.92432221,noise 40.6926781,-73.97177901,noise 40.74294904,-73.99646701,noise 40.74742033,-73.87685301,noise 40.72031794,-74.01216827,noise 40.79483376,-73.92169712,noise 40.72234313,-73.9841768,noise 40.72031794,-74.01216827,noise 40.84825564,-73.90529311,noise 40.7216382,-74.01189073,noise 40.79483376,-73.92169712,noise 40.76338296,-73.98673729,noise 40.84854504,-73.90678188,noise 40.63746939,-73.91917226,noise 40.66931916,-73.85006216,noise 40.63746939,-73.91917226,noise 40.68637903,-73.91222606,noise 40.75124666,-73.87699392,noise 40.70897435,-73.95610357,noise 40.66887321,-73.94931695,noise 40.74294904,-73.99646701,noise 40.76743782,-73.92062464,noise 40.69033764,-73.90952361,noise 40.68220447,-73.93787741,noise 40.86385196,-73.92523119,noise 40.86638305,-73.93038402,noise 40.58412211,-73.93284557,noise 40.84265734,-73.90640341,noise 40.64495035,-73.92121718,noise 40.71717512,-74.01286753,noise 40.85930241,-73.89807612,noise 40.58411122,-73.93298959,noise 40.79224583,-73.94627969,noise 40.7216382,-74.01189073,noise 40.65778597,-73.95324671,noise 40.71717512,-74.01286753,noise 40.58411122,-73.93298959,noise 40.6471319,-74.00462341,noise 40.68180409,-73.94986236,noise 40.71518984,-73.93561376,noise 40.71963414,-73.98477629,noise 40.85053726,-73.91698676,noise 40.72031794,-74.01216827,noise 40.84334691,-73.91429591,noise 40.71677946,-73.93634091,noise 40.72031794,-74.01216827,noise 40.71760353,-74.0106671,noise 40.79355188,-73.9453252,noise 40.72031794,-74.01216827,noise 40.68013773,-73.9637299,noise 40.75231606,-73.98594545,noise 40.68945892,-73.91625699,noise 40.897649,-73.84643995,noise 40.83341008,-73.91300056,noise 40.71927777,-73.98875544,noise 40.67938027,-74.00542243,noise 40.7110115,-73.95063394,noise 40.7110115,-73.95063394,noise 40.68420786,-73.91583091,noise 40.83561763,-73.94565201,noise 40.84336697,-73.91544521,noise 40.72110014,-74.01275645,noise 40.83406101,-73.94487994,noise 40.83406101,-73.94487994,noise 40.82138173,-73.95413258,noise 40.74345077,-73.98819199,noise 40.67300949,-73.78808752,noise 40.70897435,-73.95610357,noise 40.74294904,-73.99646701,noise 40.67282334,-73.78686962,noise 40.75050345,-73.97886461,noise 40.72031794,-74.01216827,noise 40.74705161,-73.88665213,noise 40.75018266,-73.98089306,noise 40.75473942,-73.82146735,noise 40.74855413,-73.97606458,noise 40.74705161,-73.88665213,noise 40.85474477,-73.90277517,noise 40.85458755,-73.90186085,noise 40.72031794,-74.01216827,noise 40.75034222,-73.98317401,noise 40.65656278,-74.00815248,noise 40.72031794,-74.01216827,noise 40.72232441,-74.01174654,noise 40.90035762,-73.87077831,noise 40.72031794,-74.01216827,noise 40.63474492,-73.96493633,noise 40.82616135,-73.91679676,noise 40.6982801,-73.92339732,noise 40.69160115,-73.77291925,noise 40.85199617,-73.93178712,noise 40.63951601,-73.94546222,noise 40.74036888,-74.00579908,noise 40.74194871,-73.98275391,noise 40.83115922,-73.9203318,noise 40.80150481,-73.9484719,noise 40.75566577,-73.92496642,noise 40.67106576,-73.87621533,noise 40.83269269,-73.86846329,noise 40.68065186,-73.9255736,noise 40.68187917,-73.7660803,noise 40.75655776,-73.84513732,noise 40.65160847,-73.93306594,noise 40.74011361,-74.00596145,noise 40.65162479,-73.93281366,noise 40.82234039,-73.95606492,noise 40.83320462,-73.94480477,noise 40.660557,-73.92937335,noise 40.85272002,-73.90712304,noise 40.8375378,-73.9242055,noise 40.84737588,-73.91035097,noise 40.67057821,-73.95044397,noise 40.75895636,-73.84288294,noise 40.89220948,-73.84677804,noise 40.75413091,-73.949068,noise 40.71768949,-73.95747225,noise 40.64505314,-73.97045865,noise 40.8605242,-73.92768963,noise 40.83685217,-73.86715407,noise 40.76473551,-73.98221735,noise 40.77723257,-73.922866,noise 40.72612272,-73.79059206,noise 40.83314415,-73.9446169,noise 40.65074897,-73.96242689,noise 40.67962217,-73.96520477,noise 40.65773376,-73.91484433,noise 40.8375378,-73.9242055,noise 40.57509992,-73.98990642,noise 40.83685217,-73.86715407,noise 40.83320462,-73.94480477,noise 40.85272002,-73.90712304,noise 40.85282972,-73.90702529,noise 40.73893077,-74.00059902,noise 40.75899798,-73.87458279,noise 40.6365646,-73.90944879,noise 40.83454275,-73.94216201,noise 40.76346859,-73.99281632,noise 40.78536042,-73.97298193,noise 40.86094677,-73.92750841,noise 40.69414823,-73.94026436,noise 40.66240391,-73.99673079,noise 40.51478878,-74.24842226,noise 40.7296035,-73.98823774,noise 40.51478878,-74.24842226,noise 40.73296703,-73.95809033,noise 40.51478878,-74.24842226,noise 40.63927073,-73.94929979,noise 40.82744432,-73.88889278,noise 40.69726627,-73.96765506,noise 40.75945029,-73.99293948,noise 40.83404888,-73.91572447,noise 40.51478878,-74.24842226,noise 40.68296862,-73.8282324,noise 40.80886038,-73.94208679,noise 40.79960131,-73.93990607,noise 40.86019986,-73.92694526,noise 40.7818107,-73.91873706,noise 40.79368559,-73.94370712,noise 40.73748845,-73.88345324,noise 40.57586737,-73.96863898,noise 40.79993107,-73.94066426,noise 40.72494145,-73.97824496,noise 40.86724744,-73.91760585,noise 40.70128467,-73.91426936,noise 40.79973352,-73.94079808,noise 40.51462049,-74.24881725,noise 40.79960131,-73.93990607,noise 40.86094677,-73.92750841,noise 40.67915413,-73.98342993,noise 40.70357226,-74.01107961,noise 40.69095235,-73.92889762,noise 40.64269519,-73.96977506,noise 40.85199617,-73.93178712,noise 40.7495058,-73.95515292,noise 40.81522692,-73.90339649,noise 40.82538549,-73.92618134,noise 40.7495058,-73.95515292,noise 40.63906925,-73.95314452,noise 40.81537693,-73.9379229,noise 40.83277044,-73.94372826,noise 40.69694075,-73.92779853,noise 40.75407328,-73.8575269,noise 40.7495058,-73.95515292,noise 40.62783868,-73.93317625,noise 40.81069039,-73.94065828,noise 40.77620501,-73.90330506,noise 40.84171392,-73.9355672,noise 40.72104319,-73.95643113,noise 40.58852863,-73.9583718,noise 40.80028079,-73.93762274,noise 40.62429808,-73.99753598,noise 40.6527363,-73.96274291,noise 40.69479959,-73.947642,noise 40.82487791,-73.95267765,noise 40.67774168,-73.9562431,noise 40.86574201,-73.90186246,noise 40.67700788,-73.96126203,noise 40.80729548,-73.95327173,noise 40.8811828,-73.90409985,noise 40.81119658,-73.90881022,noise 40.67413485,-73.87159877,noise 40.68882469,-73.84883558,noise 40.79513631,-73.96959389,noise 40.84702808,-73.8980624,noise 40.79513631,-73.96959389,noise 40.78767804,-73.95119822,noise 40.84466953,-73.9347692,noise 40.86094677,-73.92750841,noise 40.84734357,-73.89789565,noise 40.84824468,-73.90532205,noise 40.83314415,-73.9446169,noise 40.63083172,-74.07797355,noise 40.51358865,-74.25123739,noise 40.67915413,-73.98342993,noise 40.59512619,-73.75125005,noise 40.6677347,-73.94459925,noise 40.83856005,-73.9458556,noise 40.80615796,-73.9503936,noise 40.8014262,-73.96593573,noise 40.83749389,-73.94331951,noise 40.78821929,-73.95247259,noise 40.83054079,-73.86604286,noise 40.67508646,-73.96102521,noise 40.74313633,-73.90664788,noise 40.68350056,-73.97607711,noise 40.81356636,-73.95132013,noise 40.76331469,-73.92819586,noise 40.67915413,-73.98342993,noise 40.83793321,-73.87166571,noise 40.72380192,-73.97593998,noise 40.6730273,-73.96805615,noise 40.8115044,-73.92457111,noise 40.68648338,-73.83677252,noise 40.70117009,-73.78615146,noise 40.68539957,-73.82945927,noise 40.71116518,-73.84328415,noise 40.74174456,-73.86971824,noise 40.81426839,-73.91295333,noise 40.8605242,-73.92768963,noise 40.81427588,-73.91949221,noise 40.86168523,-73.90839031,noise 40.72953107,-73.9804155,noise 40.86094677,-73.92750841,noise 40.70177834,-73.92992476,noise 40.84941716,-73.88474271,noise 40.66525482,-73.98514916,noise 40.72031794,-74.01216827,noise 40.85114171,-73.78846705,noise 40.85064236,-73.94049974,noise 40.83299419,-73.8705261,noise 40.8605242,-73.92768963,noise 40.7942713,-73.93530614,noise 40.74860668,-73.97810369,noise 40.72031794,-74.01216827,noise 40.63771907,-73.95377961,noise 40.70229061,-73.85529689,noise 40.72031794,-74.01216827,noise 40.67699688,-73.96120796,noise 40.79723288,-73.9404319,noise 40.79723288,-73.9404319,noise 40.71717512,-74.01286753,noise 40.72592084,-73.97578408,noise 40.54452762,-74.14067346,noise 40.72646457,-73.97708994,noise 40.682846,-73.94738819,noise 40.82624734,-73.94601015,noise 40.68651631,-73.83676523,noise 40.66442612,-73.98695161,noise 40.88735651,-73.91580878,noise 40.59425326,-73.75121009,noise 40.61962585,-74.0278335,noise 40.68750458,-73.876549,noise 40.72592084,-73.97578408,noise 40.80090034,-73.96083235,noise 40.75454734,-73.86602604,noise 40.72031794,-74.01216827,noise 40.7188661,-74.01084406,noise 40.81183593,-73.91212563,noise 40.8426242,-73.92079153,noise 40.72031794,-74.01216827,noise 40.83472438,-73.88717131,noise 40.72031794,-74.01216827,noise 40.57996565,-73.96969905,noise 40.72587728,-73.9775339,noise 40.68013857,-73.94507206,noise 40.72031794,-74.01216827,noise 40.75647412,-73.94726506,noise 40.69564084,-73.8393538,noise 40.72355279,-73.97925918,noise 40.70805265,-73.95065056,noise 40.74775139,-73.89826483,noise 40.80060709,-73.94227095,noise 40.70553213,-73.94291955,noise 40.76332462,-73.96884312,noise 40.68251083,-73.90431345,noise 40.62429808,-73.99753598,noise 40.8039566,-73.95019296,noise 40.86111875,-73.92603322,noise 40.85930241,-73.89807612,noise 40.72031794,-74.01216827,noise 40.68564985,-73.95063829,noise 40.85930241,-73.89807612,noise 40.61962585,-74.0278335,noise 40.81183593,-73.91212563,noise 40.72031794,-74.01216827,noise 40.77505024,-73.98217127,noise 40.70259527,-73.85529263,noise 40.67760964,-73.94886686,noise 40.6762455,-73.90892264,noise 40.72592084,-73.97578408,noise 40.74566749,-73.94606823,noise 40.72532531,-73.97621002,noise 40.68702487,-73.97620565,noise 40.71905807,-74.01244221,noise 40.73974628,-73.74996675,noise 40.74212017,-73.99854568,noise 40.74974463,-73.88430882,noise 40.74019401,-73.75139048,noise 40.83811767,-73.94483683,noise 40.71777332,-74.014206,noise 40.70962002,-73.95090549,noise 40.79930656,-73.94323283,noise 40.72224762,-73.98889924,noise 40.63122016,-74.11266837,noise 40.68549926,-73.91770062,noise 40.8759857,-73.85103891,noise 40.66740131,-73.92327418,noise 40.72031794,-74.01216827,noise 40.67296764,-73.94185871,noise 40.62075694,-74.02683617,noise 40.70588897,-73.94296613,noise 40.88296989,-73.88353453,noise 40.68800646,-73.91943192,noise 40.77508318,-73.9821857,noise 40.65222081,-73.94971161,noise 40.71360468,-73.96372612,noise 40.82939027,-73.94087286,noise 40.69986543,-73.91775862,noise 40.7001674,-73.93031595,noise 40.8551555,-73.93209114,noise 40.84610902,-73.908372,noise 40.86553576,-73.9272684,noise 40.84457605,-73.93449822,noise 40.65736289,-73.91441231,noise 40.6812161,-73.98870056,noise 40.642534,-73.94867394,noise 40.58411122,-73.93298959,noise 40.70383481,-73.93097214,noise 40.86408584,-73.91800384,noise 40.88390447,-73.82578569,noise 40.75565695,-73.88443932,noise 40.71023318,-74.01633252,noise 40.72279663,-73.98959904,noise 40.83108218,-73.92840097,noise 40.72325502,-73.98970359,noise 40.83646959,-73.93702505,noise 40.71354217,-73.96575339,noise 40.86094677,-73.92750841,noise 40.84788381,-73.9218913,noise 40.58413031,-73.93277355,noise 40.86634606,-73.92825092,noise 40.82382294,-73.94428864,noise 40.65222081,-73.94971161,noise 40.82746873,-73.94598387,noise 40.68946878,-73.9691048,noise 40.70149521,-73.92081135,noise 40.51462049,-74.24881725,noise 40.83800924,-73.92746112,noise 40.80456846,-73.94970126,noise 40.82387158,-73.93743803,noise 40.75524246,-73.97327568,noise 40.85651082,-73.90758408,noise 40.72380192,-73.97593998,noise 40.73123668,-73.98868847,noise 40.80770187,-73.85247771,noise 40.79462162,-73.94981712,noise 40.72953107,-73.9804155,noise 40.81568207,-73.90283947,noise 40.7623246,-73.9764531,noise 40.82798856,-73.9236274,noise 40.86299705,-73.89531199,noise 40.5983312,-73.96093318,noise 40.68421025,-73.86856869,noise 40.71387984,-73.95769833,noise 40.84651959,-73.94006247,noise 40.62329256,-73.93190558,noise 40.63423412,-73.9640647,noise 40.82326067,-73.9451129,noise 40.62329256,-73.93190558,noise 40.79495957,-73.95062948,noise 40.86179771,-73.90833231,noise 40.74992339,-73.99510238,noise 40.83314972,-73.91726141,noise 40.72741247,-73.98255924,noise 40.71631889,-73.96262079,noise 40.63475316,-73.96495794,noise 40.70273581,-73.93378282,noise 40.72104319,-73.95643113,noise 40.8790645,-73.87340526,noise 40.79768742,-73.93343555,noise 40.59915804,-73.9892546,noise 40.67508646,-73.96102521,noise 40.70273581,-73.93378282,noise 40.80090857,-73.96081068,noise 40.67514677,-73.95344003,noise 40.82867586,-73.89383028,noise 40.76058323,-73.98592204,noise 40.75586619,-73.8823599,noise 40.71153872,-73.94507144,noise 40.80275151,-73.95659798,noise 40.66552909,-73.95348279,noise 40.75461951,-73.97373433,noise 40.74294904,-73.99646701,noise 40.84768118,-73.90767948,noise 40.82497122,-73.9222759,noise 40.80238678,-73.95056979,noise 40.68138125,-74.00444551,noise 40.84266867,-73.90684433,noise 40.81814193,-73.88553029,noise 40.88011917,-73.85977007,noise 40.80234005,-73.95041089,noise 40.86210781,-73.91928608,noise 40.85709322,-73.92752345,noise 40.86882242,-73.92083987,noise 40.80482562,-73.95424874,noise 40.89869324,-73.86738858,noise 40.68272042,-73.96329223,noise 40.74294904,-73.99646701,noise 40.73619055,-73.98508283,noise 40.86019986,-73.92694526,noise 40.8605242,-73.92768963,noise 40.76331469,-73.92819586,noise 40.79428819,-73.94122908,noise 40.74294904,-73.99646701,noise 40.72031794,-74.01216827,noise 40.86679432,-73.92531104,noise 40.51478878,-74.24842226,noise 40.65972716,-73.98791847,noise 40.7248777,-73.97516392,noise 40.86381074,-73.92104468,noise 40.86275723,-73.91776326,noise 40.80240418,-73.94650989,noise 40.74860668,-73.97810369,noise 40.74860668,-73.97810369,noise 40.74294904,-73.99646701,noise 40.70277711,-73.92938633,noise 40.78867286,-73.94771624,noise 40.83811767,-73.94483683,noise 40.8381204,-73.94479707,noise 40.75849777,-73.82556864,noise 40.80307499,-73.9489258,noise 40.74860668,-73.97810369,noise 40.74860668,-73.97810369,noise 40.80709742,-73.94597872,noise 40.84627367,-73.90833563,noise 40.80307499,-73.9489258,noise 40.67206924,-73.88575936,noise 40.8474134,-73.93330627,noise 40.65778597,-73.95324671,noise 40.79532613,-73.97128765,noise 40.84832289,-73.90699545,noise 40.67218356,-73.94373036,noise 40.66919734,-73.89645248,noise 40.76340926,-73.91398724,noise 40.76313983,-73.91339557,noise 40.79823916,-73.96457211,noise 40.69564357,-73.83934658,noise 40.68209912,-73.96033246,noise 40.73531838,-73.99165025,noise 40.63470802,-74.10773825,noise 40.6347049,-74.10813817,noise 40.63908364,-73.94830546,noise 40.76338296,-73.98673729,noise 40.83437975,-73.94563134,noise 40.71933772,-73.98492787,noise 40.6916998,-73.90702641,noise 40.74591972,-73.89125185,noise 40.78884172,-73.81380307,noise 40.70273581,-73.93378282,noise 40.76010264,-73.9839729,noise 40.72496685,-73.90428857,noise 40.83839751,-73.92514054,noise 40.72279663,-73.98959904,noise 40.69171804,-73.92873814,noise 40.79365992,-73.97066719,noise 40.71100589,-73.96536874,noise 40.79365992,-73.97066719,noise 40.7572476,-73.96828648,noise 40.85072806,-73.93650912,noise 40.85131755,-73.7885677,noise 40.75676421,-73.96715332,noise 40.85131755,-73.7885677,noise 40.51478878,-74.24842226,noise 40.67163765,-73.95033504,noise 40.7581599,-73.9625937,noise 40.68227436,-73.97977318,noise 40.51478878,-74.24842226,noise 40.51478878,-74.24842226,noise 40.51478878,-74.24842226,noise 40.82798856,-73.9236274,noise 40.76527581,-73.91791611,noise 40.72736163,-73.99956705,noise 40.68220447,-73.93787741,noise 40.68814874,-73.96985181,noise 40.80301462,-73.94895835,noise 40.75676421,-73.96715332,noise 40.60776649,-73.76051279,noise 40.8134565,-73.91009682,noise 40.82605772,-73.89720927,noise 40.61950962,-73.94628904,noise 40.71366785,-73.94931535,noise 40.82869712,-73.89015177,noise 40.68358446,-73.89534126,noise 40.82869712,-73.89015177,noise 40.6936969,-73.80036912,noise 40.74860668,-73.97810369,noise 40.83027301,-73.91691087,noise 40.71760353,-74.0106671,noise 40.80015004,-73.95106266,noise 40.72273495,-73.97982945,noise 40.71905807,-74.01244221,noise 40.72031794,-74.01216827,noise 40.86404894,-73.90234219,noise 40.80307499,-73.9489258,noise 40.73088313,-73.99759338,noise 40.76272656,-73.9269872,noise 40.7111325,-73.96654457,noise 40.51478878,-74.24842226,noise 40.71452882,-74.01567706,noise 40.51478878,-74.24842226,noise 40.76079439,-73.98451059,noise 40.76105786,-73.98433004,noise 40.62964721,-74.01069987,noise 40.63597511,-73.97814065,noise 40.72498065,-73.98279799,noise 40.84076679,-73.86301897,noise 40.72516461,-73.98320923,noise 40.72349367,-73.98825325,noise 40.71346027,-73.95874828,noise 40.71417056,-73.96520837,noise 40.51478878,-74.24842226,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.51478878,-74.24842226,noise 40.51770136,-74.24054207,noise 40.86553576,-73.9272684,noise 40.72769716,-73.85177809,noise 40.51478878,-74.24842226,noise 40.64018175,-73.95530567,noise 40.73235983,-73.99888867,noise 40.83343506,-73.91710567,noise 40.85238025,-73.93149393,noise 40.72953107,-73.9804155,noise 40.66315501,-73.98470988,noise 40.72342524,-73.99027359,noise 40.51478878,-74.24842226,noise 40.83457572,-73.94224148,noise 40.51478878,-74.24842226,noise 40.75955431,-73.98929731,noise 40.83314415,-73.9446169,noise 40.84822967,-73.90711847,noise 40.69357088,-73.96451954,noise 40.8592026,-73.9000718,noise 40.86502779,-73.92694719,noise 40.84193429,-73.92339815,noise 40.64293877,-73.97886985,noise 40.71613509,-73.98946661,noise 40.83228215,-73.90961968,noise 40.72741499,-73.98118462,noise 40.82442248,-73.92258728,noise 40.65370794,-73.96270993,noise 40.79589753,-73.94892047,noise 40.51478878,-74.24842226,noise 40.67760964,-73.94886686,noise 40.82605772,-73.89720927,noise 40.8710471,-73.89821721,noise 40.86085976,-73.92882081,noise 40.8710471,-73.89821721,noise 40.68272042,-73.96329223,noise 40.70607594,-74.0042019,noise 40.68483201,-73.86047281,noise 40.7357494,-73.99302499,noise 40.76296785,-73.98189293,noise 40.76331469,-73.92819586,noise 40.67338669,-73.77567062,noise 40.51363326,-74.25092467,noise 40.82837372,-73.8240774,noise 40.76331469,-73.92819586,noise 40.79564993,-73.9367025,noise 40.70277711,-73.92938633,noise 40.69678503,-73.95658041,noise 40.76331469,-73.92819586,noise 40.65689135,-73.95368704,noise 40.86002675,-73.92664539,noise 40.87717709,-73.86456034,noise 40.65691583,-73.95313919,noise 40.59512619,-73.75125005,noise 40.64846321,-74.00075677,noise 40.74037719,-74.00402724,noise 40.67354231,-73.76028381,noise 40.71082016,-73.96852499,noise 40.85391396,-73.90376684,noise 40.81119658,-73.90881022,noise 40.70955916,-73.81529779,noise 40.62329256,-73.93190558,noise 40.80210822,-73.95395081,noise 40.70277711,-73.92938633,noise 40.80680981,-73.94725769,noise 40.80270713,-73.95537714,noise 40.70571262,-73.83440268,noise 40.85602767,-73.88327083,noise 40.81263138,-73.9150941,noise 40.83618148,-73.9084688,noise 40.81280465,-73.91557435,noise 40.74020295,-73.98213729,noise 40.75635718,-73.82577277,noise 40.82724243,-73.87405669,noise 40.75984532,-73.99004086,noise 40.71140621,-74.00557292,noise 40.63597511,-73.97814065,noise 40.75635718,-73.82577277,noise 40.74595183,-73.99800787,noise 40.84963398,-73.93351369,noise 40.84682457,-73.93556225,noise 40.75635718,-73.82577277,noise 40.78842026,-73.97076339,noise 40.68187917,-73.7660803,noise 40.78905143,-73.97030087,noise 40.86304232,-73.85805989,noise 40.84555949,-73.79025945,noise 40.64200351,-73.96069141,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.69625338,-73.93034889,noise 40.85352333,-73.90272274,noise 40.81567071,-73.94344647,noise 40.81119658,-73.90881022,noise 40.81726755,-73.9422565,noise 40.81986557,-73.95852336,noise 40.8450284,-73.78951296,noise 40.83282537,-73.90932623,noise 40.85889512,-73.92973753,noise 40.87779544,-73.9069506,noise 40.84504747,-73.78943338,noise 40.8450284,-73.78951296,noise 40.85331763,-73.90289655,noise 40.66001761,-73.96096553,noise 40.67110792,-73.95037509,noise 40.85331763,-73.90289655,noise 40.77389508,-73.93653905,noise 40.77224628,-73.95586329,noise 40.65222081,-73.94971161,noise 40.65277545,-73.96507101,noise 40.81119658,-73.90881022,noise 40.7111325,-73.96654457,noise 40.74457176,-73.94484572,noise 40.8450284,-73.78951296,noise 40.75858018,-73.82561174,noise 40.8351065,-73.92499246,noise 40.71923344,-73.96143951,noise 40.87723133,-73.91210429,noise 40.84618586,-73.90836467,noise 40.67625884,-73.9621205,noise 40.81412673,-73.91075703,noise 40.86381074,-73.92104468,noise 40.81412673,-73.91075703,noise 40.79960131,-73.93990607,noise 40.69564084,-73.8393538,noise 40.83819186,-73.94501385,noise 40.81412673,-73.91075703,noise 40.82959223,-73.95005814,noise 40.69079824,-73.95540156,noise 40.81567071,-73.94344647,noise 40.76437033,-73.98136189,noise 40.7036598,-73.94786948,noise 40.84336697,-73.91544521,noise 40.70513712,-73.9434104,noise 40.72031794,-74.01216827,noise 40.7216382,-74.01189073,noise 40.76331469,-73.92819586,noise 40.87806969,-73.91748396,noise 40.63478473,-74.08119198,noise 40.82520323,-73.94960256,noise 40.84654431,-73.8856043,noise 40.68564985,-73.95063829,noise 40.7534668,-73.81682913,noise 40.79736777,-73.96052382,noise 40.74932933,-73.98266538,noise 40.836905,-73.90376615,noise 40.7174035,-73.95605473,noise 40.72072702,-73.98888867,noise 40.72050519,-73.99683617,noise 40.68757931,-73.82068442,noise 40.64023708,-73.9059739,noise 40.69334103,-73.96688165,noise 40.86201011,-73.92499827,noise 40.8692067,-73.9169743,noise 40.85410221,-73.93818678,noise 40.67005561,-73.93698391,noise 40.85325159,-73.92904945,noise 40.64173176,-73.96066274,noise 40.82959223,-73.95005814,noise 40.82892541,-73.95039469,noise 40.64775748,-74.00865231,noise 40.6936969,-73.80036912,noise 40.73888085,-73.98904803,noise 40.76331469,-73.92819586,noise 40.83472438,-73.88717131,noise 40.59602211,-73.74302237,noise 40.66756178,-73.8604008,noise 40.62204852,-74.03163848,noise 40.76331469,-73.92819586,noise 40.82015108,-73.87246957,noise 40.74527188,-73.97844042,noise 40.86292586,-73.92776655,noise 40.57885798,-73.99809925,noise 40.691916,-73.92085878,noise 40.8450284,-73.78951296,noise 40.76331469,-73.92819586,noise 40.82802319,-73.8752115,noise 40.74288949,-73.8828303,noise 40.84953795,-73.93356077,noise 40.83922638,-73.87708061,noise 40.69973307,-73.91319303,noise 40.83353705,-73.90031994,noise 40.58886785,-73.80198947,noise 40.64846321,-74.00075677,noise 40.73141011,-73.99697276,noise 40.82867586,-73.89383028,noise 40.76141278,-73.88453763,noise 40.76277959,-73.97354701,noise 40.68852336,-73.95001957,noise 40.76331469,-73.92819586,noise 40.83227753,-73.93542096,noise 40.74173312,-74.00308184,noise 40.67870927,-73.87813719,noise 40.65778597,-73.95324671,noise 40.75328254,-73.98896987,noise 40.8379371,-73.94606933,noise 40.68259395,-73.9626433,noise 40.75328254,-73.98896987,noise 40.62429808,-73.99753598,noise 40.62429808,-73.99753598,noise 40.75328254,-73.98896987,noise 40.75328254,-73.98896987,noise 40.75328254,-73.98896987,noise 40.7111325,-73.96654457,noise 40.77506478,-73.98863409,noise 40.7111325,-73.96654457,noise 40.7111325,-73.96654457,noise 40.85915787,-73.90232045,noise 40.68945892,-73.91625699,noise 40.67444808,-73.90944062,noise 40.62329256,-73.93190558,noise 40.71286168,-73.977798,noise 40.78229519,-73.96512584,noise 40.63597511,-73.97814065,noise 40.70060568,-73.78230154,noise 40.6471319,-74.00462341,noise 40.65100579,-73.94570509,noise 40.7472499,-73.97391047,noise 40.82000567,-73.95887372,noise 40.84260303,-73.91798695,noise 40.82627619,-73.85970288,noise 40.71814583,-73.95229529,noise 40.86019986,-73.92694526,noise 40.83529861,-73.91694796,noise 40.8794996,-73.8722147,noise 40.82642315,-73.85867278,noise 40.86480865,-73.91936234,noise 40.86813967,-73.93041833,noise 40.85702748,-73.92773319,noise 40.70547174,-73.94290878,noise 40.66054561,-73.94354555,noise 40.86857089,-73.93092045,noise 40.84185518,-73.93788735,noise 40.69822499,-73.80633492,noise 40.81631549,-73.94297627,noise 40.85467153,-73.88575661,noise 40.67408126,-73.94593145,noise 40.74534875,-73.90350864,noise 40.87933502,-73.87230904,noise 40.84185518,-73.93788735,noise 40.69345879,-73.90995932,noise 40.70383481,-73.93097214,noise 40.87422023,-73.90496686,noise 40.86620047,-73.92805946,noise 40.83024257,-73.94968908,noise 40.70607594,-74.0042019,noise 40.67769824,-73.95062976,noise 40.76181083,-73.99387056,noise 40.86168523,-73.90839031,noise 40.8370522,-73.93839055,noise 40.70252976,-73.81356446,noise 40.85585929,-73.9097467,noise 40.86553576,-73.9272684,noise 40.86368678,-73.89621112,noise 40.63559076,-73.97774084,noise 40.59655143,-73.97703729,noise 40.84637919,-73.91721243,noise 40.67760964,-73.94886686,noise 40.6741615,-73.94731212,noise 40.6740867,-73.9458305,noise 40.8221488,-73.94456825,noise 40.62631656,-73.90069788,noise 40.6522812,-73.94974039,noise 40.85331763,-73.90289655,noise 40.88296989,-73.88353453,noise 40.59655143,-73.97703729,noise 40.67565151,-73.91100361,noise 40.67565151,-73.91100361,noise 40.8221488,-73.94456825,noise 40.85352333,-73.90272274,noise 40.82153653,-73.95698316,noise 40.86019986,-73.92694526,noise 40.70383481,-73.93097214,noise 40.8831331,-73.88208769,noise 40.85007654,-73.92999263,noise 40.75274321,-73.87255531,noise 40.62863721,-74.08003528,noise 40.62277671,-73.93701774,noise 40.65999841,-73.96099798,noise 40.86202707,-73.90684252,noise 40.69679084,-73.92949364,noise 40.770663,-73.95701963,noise 40.80680981,-73.94725769,noise 40.85064236,-73.94049974,noise 40.73249706,-74.00183297,noise 40.79483376,-73.92169712,noise 40.65999841,-73.96099798,noise 40.82161249,-73.95464186,noise 40.86404894,-73.90234219,noise 40.80088245,-73.92911611,noise 40.6748394,-73.9535556,noise 40.68279192,-73.93800666,noise 40.77075354,-73.95694015,noise 40.87378956,-73.90526036,noise 40.77075354,-73.95694015,noise 40.68180409,-73.94986236,noise 40.8208402,-73.8726489,noise 40.8854327,-73.84258765,noise 40.69437337,-73.93059968,noise 40.8592292,-73.90228058,noise 40.84263811,-73.90638898,noise 40.73349828,-73.95481369,noise 40.83353705,-73.90031994,noise 40.72205102,-73.97723215,noise 40.6493772,-74.00228836,noise 40.72205102,-73.97723215,noise 40.62429808,-73.99753598,noise 40.73483798,-73.99075544,noise 40.622739,-73.99616718,noise 40.70805265,-73.95065056,noise 40.85459367,-73.9289215,noise 40.68242682,-73.93793128,noise 40.86813967,-73.93041833,noise 40.74797909,-73.89813817,noise 40.86813967,-73.93041833,noise 40.6493772,-74.00228836,noise 40.70999601,-73.95771883,noise 40.72205102,-73.97723215,noise 40.86165878,-73.92932247,noise 40.68180409,-73.94986236,noise 40.84355044,-73.93612563,noise 40.62452041,-73.99748554,noise 40.68973631,-73.89032301,noise 40.62429808,-73.99753598,noise 40.85064236,-73.94049974,noise 40.64393084,-73.97172755,noise 40.70212152,-73.81065149,noise 40.74742033,-73.87685301,noise 40.75525314,-73.90849698,noise 40.70817068,-73.95065769,noise 40.68759615,-73.95822342,noise 40.62409771,-73.99760083,noise 40.70932835,-73.95588692,noise 40.64696344,-73.94723991,noise 40.72652715,-73.99584371,noise 40.71979651,-73.98851004,noise 40.67703277,-73.87866301,noise 40.74675239,-73.89232236,noise 40.82955322,-73.81484545,noise 40.63847164,-73.90871477,noise 40.82782826,-73.87516489,noise 40.8854327,-73.84258765,noise 40.74592881,-73.8921649,noise 40.82782826,-73.87516489,noise 40.83227753,-73.93542096,noise 40.70549476,-73.92992446,noise 40.83819186,-73.94501385,noise 40.8208402,-73.8726489,noise 40.7090018,-73.95609994,noise 40.64591783,-73.96145305,noise 40.72391971,-74.00063857,noise 40.82923393,-73.87550553,noise 40.80416841,-73.96670009,noise 40.79940789,-73.9374827,noise 40.82873078,-73.89385187,noise 40.68852336,-73.95001957,noise 40.75358614,-73.98082351,noise 40.79988333,-73.93860193,noise 40.72391971,-74.00063857,noise 40.71515842,-74.00211386,noise 40.83324729,-73.86861397,noise 40.70381888,-73.94188591,noise 40.81964456,-73.87613406,noise 40.71515842,-74.00211386,noise 40.74717706,-73.89150604,noise 40.68595658,-73.82567908,noise 40.82782554,-73.87518658,noise 40.86612043,-73.91910043,noise 40.80008723,-73.95890048,noise 40.73550095,-73.92212046,noise 40.71464712,-74.01355242,noise 40.63063271,-74.00922292,noise 40.61873797,-73.93027489,noise 40.6471319,-74.00462341,noise 40.85375166,-73.90334053,noise 40.8671589,-73.88473004,noise 40.85438041,-73.93027367,noise 40.83388447,-73.90546173,noise 40.7410231,-73.92169179,noise 40.82346856,-73.92446,noise 40.72806703,-73.99895369,noise 40.81683571,-73.9038602,noise 40.75447234,-73.93017974,noise 40.82964818,-73.94630008,noise 40.69332486,-73.95214356,noise 40.67195343,-73.95751583,noise 40.75076262,-73.86627547,noise 40.81197868,-73.92372525,noise 40.8986109,-73.86738512,noise 40.83455923,-73.94220174,noise 40.69332486,-73.95214356,noise 40.58904281,-73.98380153,noise 40.68180409,-73.94986236,noise 40.63634121,-73.91906554,noise 40.85459367,-73.9289215,noise 40.83484742,-73.9049183,noise 40.85660522,-73.92840965,noise 40.70273581,-73.93378282,noise 40.63448676,-73.92462708,noise 40.66546535,-73.95200135,noise 40.85205434,-73.82903921,noise 40.76331469,-73.92819586,noise 40.68358167,-73.95395334,noise 40.71752852,-73.96019594,noise 40.85455791,-73.92879502,noise 40.68326742,-73.96586628,noise 40.72612272,-73.79059206,noise 40.72488931,-73.97828105,noise 40.72349367,-73.98825325,noise 40.8308641,-73.91448544,noise 40.74371747,-74.00597259,noise 40.72350613,-73.97928084,noise 40.72349367,-73.98825325,noise 40.72612272,-73.79059206,noise 40.79365992,-73.97066719,noise 40.51478878,-74.24842226,noise 40.84145055,-73.93577346,noise 40.81337978,-73.95146477,noise 40.65923089,-73.89327819,noise 40.65503814,-73.93557811,noise 40.67975111,-73.96499559,noise 40.69791357,-73.80721577,noise 40.79365992,-73.97066719,noise 40.74011361,-74.00596145,noise 40.66067821,-73.93981135,noise 40.71100589,-73.96536874,noise 40.63934569,-73.95126707,noise 40.76330097,-73.92820671,noise 40.83825934,-73.93738836,noise 40.86681353,-73.92529656,noise 40.70273581,-73.93378282,noise 40.69254265,-73.91436715,noise 40.7508539,-74.00389072,noise 40.58956855,-74.18773679,noise 40.70669432,-73.92156621,noise 40.84491655,-73.81556531,noise 40.75803956,-73.79561736,noise 40.88260252,-73.88395468,noise 40.80574747,-73.94697678,noise 40.83425122,-73.92244936,noise 40.86184209,-73.92408742,noise 40.68161246,-73.95797118,noise 40.67946257,-74.00619398,noise 40.88168675,-73.90282256,noise 40.58794282,-74.1040732,noise 40.74762928,-73.97673619,noise 40.78962999,-73.8141331,noise 40.78385437,-73.81034323,noise 40.79564993,-73.9367025,noise 40.77452286,-73.81751859,noise 40.86549036,-73.92085107,noise 40.71121192,-73.96593854,noise 40.76120655,-73.84052045,noise 40.75911212,-73.84237722,noise 40.66217506,-73.95370139,noise 40.6527363,-73.96274291,noise 40.57746783,-73.98277839,noise 40.84361298,-73.94013015,noise 40.79365992,-73.97066719,noise 40.57746783,-73.98277839,noise 40.63597511,-73.97814065,noise 40.73748027,-73.88350738,noise 40.85199617,-73.93178712,noise 40.70427792,-73.93300946,noise 40.80574747,-73.94697678,noise 40.82962826,-73.92117919,noise 40.81356636,-73.95132013,noise 40.79365992,-73.97066719,noise 40.76058323,-73.98592204,noise 40.75509306,-73.8321323,noise 40.63555239,-73.97802189,noise 40.78884044,-73.94229921,noise 40.67946257,-74.00619398,noise 40.83539612,-73.92721462,noise 40.69904262,-73.92681531,noise 40.83819186,-73.94501385,noise 40.61896738,-74.00883229,noise 40.770663,-73.95701963,noise 40.81921839,-73.95289484,noise 40.83111733,-73.94789609,noise 40.61896738,-74.00883229,noise 40.83922638,-73.87708061,noise 40.77591365,-73.93377143,noise 40.76338296,-73.98673729,noise 40.72279663,-73.98959904,noise 40.84953684,-73.88365814,noise 40.76434105,-73.9883363,noise 40.82873078,-73.89385187,noise 40.80103445,-73.95251762,noise 40.61896738,-74.00883229,noise 40.78867286,-73.94771624,noise 40.86381074,-73.92104468,noise 40.76438496,-73.9883038,noise 40.72104319,-73.95643113,noise 40.76550199,-73.98746608,noise 40.84618586,-73.90836467,noise 40.86679432,-73.92531104,noise 40.86093855,-73.92753011,noise 40.81356636,-73.95132013,noise 40.70128467,-73.91426936,noise 40.80452535,-73.95157237,noise 40.8136624,-73.95126226,noise 40.7645414,-73.98816298,noise 40.76444534,-73.9882352,noise 40.72100987,-73.95542824,noise 40.87959654,-73.90430103,noise 40.76429988,-73.98834352,noise 40.79911363,-73.96115486,noise 40.82962826,-73.92117919,noise 40.81356636,-73.95132013,noise 40.82942013,-73.94580161,noise 40.72428492,-73.97559346,noise 40.86425895,-73.92643827,noise 40.77075354,-73.95694015,noise 40.68431678,-73.89475961,noise 40.72629802,-73.81268619,noise 40.73609748,-73.98721542,noise 40.59655143,-73.97703729,noise 40.82469384,-73.95225504,noise 40.6789475,-73.97873226,noise 40.72437823,-73.9755357,noise 40.67615869,-73.95127262,noise 40.84361298,-73.94013015,noise 40.83922638,-73.87708061,noise 40.72591124,-73.9836492,noise 40.81344194,-73.9433147,noise 40.55561159,-74.14255731,noise 40.84837564,-73.94128973,noise 40.79861876,-73.96736743,noise 40.70784081,-73.92037098,noise 40.67244867,-73.89212508,noise 40.59611573,-73.98096595,noise 40.6716626,-73.95091902,noise 40.84361298,-73.94013015,noise 40.72894882,-73.97836993,noise 40.71010746,-73.84870075,noise 40.83777968,-73.94402036,noise 40.85064236,-73.94049974,noise 40.78884044,-73.94229921,noise 40.70790389,-73.92030598,noise 40.63597511,-73.97814065,noise 40.73203818,-73.81491796,noise 40.66735888,-73.90338355,noise 40.84323591,-73.86440174,noise 40.67685779,-73.94937217,noise 40.85241498,-73.88534479,noise 40.84357175,-73.94002537,noise 40.66427143,-73.93059495,noise 40.80133023,-73.95791004,noise 40.70817068,-73.95065769,noise 40.6730273,-73.96805615,noise 40.70670729,-74.00233,noise 40.84348104,-73.93976884,noise 40.83365292,-73.91854365,noise 40.76426695,-73.9157911,noise 40.84357175,-73.94002537,noise 40.63597511,-73.97814065,noise 40.72285427,-73.98957017,noise 40.68973631,-73.89032301,noise 40.65668753,-73.92607608,noise 40.84357175,-73.94002537,noise 40.80880336,-73.9558824,noise 40.88296989,-73.88353453,noise 40.70932835,-73.95588692,noise 40.88328518,-73.88319042,noise 40.81369795,-73.94487874,noise 40.85064236,-73.94049974,noise 40.84711145,-73.93818244,noise 40.83130723,-73.94315855,noise 40.79861053,-73.96738911,noise 40.85377853,-73.88756192,noise 40.86392257,-73.85965238,noise 40.67751492,-73.95912383,noise 40.83163583,-73.91893277,noise 40.73029441,-73.98223737,noise 40.70017003,-73.91391376,noise 40.82962826,-73.92117919,noise 40.80256153,-73.95503049,noise 40.76331469,-73.92819586,noise 40.84361298,-73.94013015,noise 40.77506059,-73.91385666,noise 40.80123134,-73.957697,noise 40.79513631,-73.96959389,noise 40.8381204,-73.94479707,noise 40.82293437,-73.9519817,noise 40.8379371,-73.94606933,noise 40.70585678,-73.79753024,noise 40.6059406,-73.99128828,noise 40.77532164,-73.93528483,noise 40.84361298,-73.94013015,noise 40.76743782,-73.92062464,noise 40.67305942,-73.95711498,noise 40.75836809,-73.90470622,noise 40.83819186,-73.94501385,noise 40.79513631,-73.96959389,noise 40.67339992,-73.96573434,noise 40.8392098,-73.87698306,noise 40.76527581,-73.91791611,noise 40.76527581,-73.91791611,noise 40.79513631,-73.96959389,noise 40.80524126,-73.95734768,noise 40.67338343,-73.96564783,noise 40.60837795,-74.00907939,noise 40.75858018,-73.82561174,noise 40.69028273,-73.90607281,noise 40.82782361,-73.94199802,noise 40.71936801,-73.96167031,noise 40.83365292,-73.91854365,noise 40.82873078,-73.89385187,noise 40.79798751,-73.96750138,noise 40.85427984,-73.93192214,noise 40.8381204,-73.94479707,noise 40.76788911,-73.98151253,noise 40.77677318,-73.93452519,noise 40.87555239,-73.90616908,noise 40.79789147,-73.96757366,noise 40.87677618,-73.85980967,noise 40.74811902,-73.8980766,noise 40.84237889,-73.89239888,noise 40.57969068,-73.83602553,noise 40.82871563,-73.92319295,noise 40.85427984,-73.93192214,noise 40.85427984,-73.93192214,noise 40.83757377,-73.92054819,noise 40.76429988,-73.98834352,noise 40.68316249,-73.80846988,noise 40.84136393,-73.91256369,noise 40.86985318,-73.8893028,noise 40.85555721,-73.9291699,noise 40.76429988,-73.98834352,noise 40.67288816,-73.95428157,noise 40.84804607,-73.91096815,noise 40.76233478,-73.98980224,noise 40.73486403,-73.97984743,noise 40.6471319,-74.00462341,noise 40.66460568,-73.97684445,noise 40.69239415,-73.84160819,noise 40.72275134,-73.97937127,noise 40.8015277,-73.95749093,noise 40.58608126,-73.81309388,noise 40.84329992,-73.90679646,noise 40.6786916,-73.94409261,noise 40.78867286,-73.94771624,noise 40.6861438,-73.96539247,noise 40.83477457,-73.92526387,noise 40.84804607,-73.91096815,noise 40.64846321,-74.00075677,noise 40.78145576,-73.84141438,noise 40.80148928,-73.95751985,noise 40.67856564,-73.88255394,noise 40.6471319,-74.00462341,noise 40.84804607,-73.91096815,noise 40.6982463,-73.9805437,noise 40.74985425,-73.98793822,noise 40.69463828,-73.94905935,noise 40.64846321,-74.00075677,noise 40.59425326,-73.75121009,noise 40.76324872,-73.98913066,noise 40.81331606,-73.90951177,noise 40.78253243,-73.98247619,noise 40.6613542,-73.9696801,noise 40.69808641,-73.97678593,noise 40.66460568,-73.97684445,noise 40.71700672,-73.98026767,noise 40.6861438,-73.96539247,noise 40.81020946,-73.93949551,noise 40.84584914,-73.90272673,noise 40.81840606,-73.95315193,noise 40.66997795,-73.93553845,noise 40.66759276,-73.98100684,noise 40.83947685,-73.87774513,noise 40.85195287,-73.91237988,noise 40.84734357,-73.89789565,noise 40.67214497,-73.7737173,noise 40.83821932,-73.94502828,noise 40.64308487,-73.96946139,noise 40.81089655,-73.94692211,noise 40.8381204,-73.94479707,noise 40.81163357,-73.92482023,noise 40.73595507,-73.99047744,noise 40.823746,-73.94410082,noise 40.70907793,-74.01405626,noise 40.71239152,-74.00684271,noise 40.69970376,-73.98046394,noise 40.79930002,-73.94112714,noise 40.80277749,-73.95284868,noise 40.77677318,-73.93452519,noise 40.66993903,-73.95824529,noise 40.76010264,-73.9839729,noise 40.70805265,-73.95065056,noise 40.65692084,-73.92609024,noise 40.75074217,-73.86288647,noise 40.86584939,-73.89297553,noise 40.8381204,-73.94479707,noise 40.8266972,-73.90352075,noise 40.79930002,-73.94112714,noise 40.63181,-73.89277082,noise 40.80777238,-73.94548329,noise 40.77311223,-73.91440074,noise 40.77311223,-73.91440074,noise 40.69160184,-73.97054982,noise 40.67214497,-73.7737173,noise 40.79227656,-73.93653236,noise 40.71559394,-73.98550228,noise 40.59451312,-73.92700549,noise 40.63127196,-74.07637445,noise 40.71595365,-73.98672147,noise 40.72605395,-73.98353372,noise 40.86612043,-73.91910043,noise 40.71160986,-73.95753384,noise 40.72391971,-74.00063857,noise 40.8427932,-73.93666487,noise 40.58470428,-73.81197446,noise 40.66568721,-73.95088376,noise 40.66539902,-73.95092002,noise 40.7170331,-73.95643735,noise 40.82401247,-73.95064044,noise 40.68789128,-73.9424695,noise 40.69160184,-73.97054982,noise 40.57612836,-73.84023161,noise 40.66255454,-73.9089197,noise 40.6936969,-73.80036912,noise 40.7350324,-73.81472562,noise 40.68192007,-73.93483105,noise 40.6471319,-74.00462341,noise 40.7612619,-73.9942713,noise 40.83092919,-73.91344465,noise 40.75613912,-73.98316894,noise 40.64968702,-74.00921474,noise 40.74765332,-73.94908739,noise 40.72716754,-73.97873491,noise 40.82700844,-73.94776923,noise 40.81130234,-73.95221407,noise 40.64242422,-73.94868123,noise 40.84756211,-73.89370977,noise 40.82700844,-73.94776923,noise 40.82942013,-73.94580161,noise 40.83972074,-73.87231641,noise 40.86437703,-73.92653575,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.86390569,-73.92345961,noise 40.85357934,-73.90405651,noise 40.71944089,-73.95815656,noise 40.72980788,-73.95826551,noise 40.75461951,-73.97373433,noise 40.72228596,-73.98807308,noise 40.76362248,-73.99701462,noise 40.69345879,-73.90995932,noise 40.83826484,-73.90522783,noise 40.75524246,-73.97327568,noise 40.77761333,-73.97925678,noise 40.86404753,-73.92631558,noise 40.83627203,-73.8896261,noise 40.85462116,-73.92898654,noise 40.75826136,-73.82714666,noise 40.642547,-74.01665107,noise 40.77632971,-73.90147431,noise 40.71818704,-73.95238184,noise 40.65391056,-73.95380083,noise 40.79932766,-73.96098498,noise 40.75546118,-73.88629853,noise 40.7604832,-73.9582499,noise 40.67750508,-73.96245508,noise 40.83313867,-73.94464943,noise 40.70353674,-73.91997939,noise 40.73941098,-74.00539123,noise 40.68138125,-74.00444551,noise 40.63555239,-73.97802189,noise 40.79892112,-73.96003892,noise 40.66974067,-73.99576074,noise 40.86426297,-73.92417143,noise 40.81986557,-73.95852336,noise 40.72736686,-73.99213471,noise 40.86343933,-73.92810583,noise 40.82880488,-73.89385175,noise 40.71977238,-73.99932539,noise 40.75979055,-73.84272936,noise 40.72571638,-73.98376831,noise 40.82964818,-73.94630008,noise 40.75942714,-73.84393224,noise 40.67058189,-73.93095248,noise 40.85744199,-73.9278195,noise 40.81726755,-73.9422565,noise 40.78536042,-73.97298193,noise 40.77620501,-73.90330506,noise 40.78215858,-73.97906038,noise 40.7612619,-73.9942713,noise 40.84407366,-73.93931652,noise 40.83386495,-73.94245169,noise 40.86486569,-73.92248958,noise 40.67344823,-73.96224466,noise 40.88224349,-73.87911302,noise 40.75354005,-73.90466981,noise 40.70383481,-73.93097214,noise 40.86385196,-73.92523119,noise 40.83025108,-73.91694703,noise 40.85455791,-73.92879502,noise 40.72708959,-73.99154665,noise 40.59655143,-73.97703729,noise 40.81698493,-73.90507027,noise 40.72488931,-73.97828105,noise 40.6864564,-73.97477078,noise 40.84967442,-73.9370993,noise 40.86425895,-73.92643827,noise 40.67351839,-73.96726281,noise 40.8648164,-73.92267041,noise 40.72488931,-73.97828105,noise 40.78536042,-73.97298193,noise 40.66071028,-73.99409972,noise 40.73748845,-73.88345324,noise 40.80889004,-73.9529744,noise 40.81158623,-73.90867963,noise 40.755483,-73.88616134,noise 40.86888691,-73.92284646,noise 40.76426695,-73.9157911,noise 40.80889004,-73.9529744,noise 40.74554717,-73.90120947,noise 40.78867286,-73.94771624,noise 40.67399931,-73.96039136,noise 40.67102701,-73.81298561,noise 40.70518692,-73.90619969,noise 40.68555676,-73.84149102,noise 40.84832289,-73.90699545,noise 40.8266449,-73.90333294,noise 40.88207886,-73.87916757,noise 40.84484542,-73.93518105,noise 40.84042677,-73.92238795,noise 40.78874979,-73.94790036,noise 40.84424624,-73.93371424,noise 40.83022246,-73.94768359,noise 40.67102701,-73.81298561,noise 40.67915413,-73.98342993,noise 40.72747747,-73.97751893,noise 40.8532216,-73.90294729,noise 40.76429988,-73.98834352,noise 40.72747747,-73.97751893,noise 40.76331469,-73.92819586,noise 40.81955851,-73.81755045,noise 40.6917582,-73.94155385,noise 40.85459367,-73.9289215,noise 40.85499223,-73.92987178,noise 40.80839598,-73.95295307,noise 40.81823571,-73.95272212,noise 40.79186116,-73.94539159,noise 40.79186116,-73.94539159,noise 40.81921839,-73.95289484,noise 40.70549557,-73.94117391,noise 40.80839598,-73.95295307,noise 40.67915413,-73.98342993,noise 40.83399685,-73.94276597,noise 40.84466953,-73.9347692,noise 40.8635725,-73.92601242,noise 40.58412211,-73.93284557,noise 40.79962158,-73.96168189,noise 40.67106576,-73.87621533,noise 40.67184032,-73.99351834,noise 40.83353705,-73.90031994,noise 40.76233478,-73.98980224,noise 40.87221115,-73.88958453,noise 40.74294904,-73.99646701,noise 40.76233478,-73.98980224,noise 40.69928596,-73.90654699,noise 40.66990909,-73.95895546,noise 40.85465602,-73.93704036,noise 40.88207886,-73.87916757,noise 40.63492412,-74.02039982,noise 40.79984321,-73.95245707,noise 40.76642463,-73.99202179,noise 40.70512877,-74.00842893,noise 40.75849777,-73.82556864,noise 40.72100987,-73.95542824,noise 40.76058323,-73.98592204,noise 40.70966328,-73.94939775,noise 40.74089181,-73.98165715,noise 40.63528372,-74.02025221,noise 40.68723335,-73.95690033,noise 40.78867286,-73.94771624,noise 40.7743507,-73.98475295,noise 40.68497144,-73.8600146,noise 40.81964456,-73.87613406,noise 40.82410397,-73.9528408,noise 40.68707358,-73.99021759,noise 40.90633949,-73.8964918,noise 40.66246397,-73.94889289,noise 40.87588669,-73.9124532,noise 40.68026692,-73.9746902,noise 40.83248354,-73.94084121,noise 40.83077582,-73.87492087,noise 40.82328483,-73.88760983,noise 40.61642046,-73.97444426,noise 40.77602796,-73.98655063,noise 40.75955431,-73.98929731,noise 40.81569237,-73.94867768,noise 40.83477457,-73.92526387,noise 40.7170331,-73.95643735,noise 40.68736451,-73.99003366,noise 40.72937008,-73.9871229,noise 40.7170331,-73.95643735,noise 40.76615269,-73.91977781,noise 40.74875916,-73.70869524,noise 40.80311646,-73.95631961,noise 40.82720627,-73.94245384,noise 40.66341442,-73.97669347,noise 40.76615269,-73.91977781,noise 40.63533928,-73.91895506,noise 40.72100987,-73.95542824,noise 40.85474384,-73.93701498,noise 40.83819186,-73.94501385,noise 40.76165925,-73.98656075,noise 40.80285303,-73.95650039,noise 40.80285303,-73.95650039,noise 40.74462609,-73.99687833,noise 40.80450501,-73.95559267,noise 40.7200413,-74.00391778,noise 40.80285303,-73.95650039,noise 40.63473648,-74.10957218,noise 40.68707358,-73.99021759,noise 40.63520686,-74.02028461,noise 40.89724177,-73.8541165,noise 40.74457668,-73.99675563,noise 40.89404526,-73.85938985,noise 40.7786455,-73.91424198,noise 40.72160639,-73.95783773,noise 40.80441984,-73.95536877,noise 40.83408983,-73.92751237,noise 40.68212005,-73.9765968,noise 40.72429004,-73.99302258,noise 40.71758732,-73.95584538,noise 40.74469471,-73.99706599,noise 40.80279815,-73.95654015,noise 40.67931308,-73.98175341,noise 40.71768871,-73.99044397,noise 40.71879472,-73.98901165,noise 40.71946763,-74.0043723,noise 40.74016248,-73.85284738,noise 40.80285303,-73.95650039,noise 40.8474134,-73.93330627,noise 40.74838216,-73.70940066,noise 40.71751855,-73.99055583,noise 40.80441984,-73.95536877,noise 40.72887525,-73.98146563,noise 40.80285303,-73.95650039,noise 40.66886152,-73.98564581,noise 40.69479214,-73.99429864,noise 40.8028009,-73.95655099,noise 40.8315271,-73.92886303,noise 40.80248809,-73.95677875,noise 40.8028009,-73.95655099,noise 40.73390771,-74.00625677,noise 40.86165878,-73.92932247,noise 40.6818017,-73.97680963,noise 40.68747746,-73.99826562,noise 40.68095093,-73.97740122,noise 40.73396809,-74.00624595,noise 40.83077582,-73.87492087,noise 40.71946763,-74.0043723,noise 40.69357912,-73.96452314,noise 40.80285303,-73.95650039,noise 40.74985425,-73.98793822,noise 40.68193069,-73.97673748,noise 40.823746,-73.94410082,noise 40.74384317,-73.98719589,noise 40.80279815,-73.95654015,noise 40.71946763,-74.0043723,noise 40.72225349,-74.00591295,noise 40.80279815,-73.95654015,noise 40.80285303,-73.95650039,noise 40.71997982,-73.98364344,noise 40.80801887,-73.92932886,noise 40.74384317,-73.98719589,noise 40.69343406,-73.96590435,noise 40.74435166,-74.00025984,noise 40.68921668,-73.91529452,noise 40.74492031,-73.92120362,noise 40.77298743,-73.91638663,noise 40.72555824,-74.00455309,noise 40.69869881,-73.93476055,noise 40.80801887,-73.92932886,noise 40.57275354,-73.99808862,noise 40.80285303,-73.95650039,noise 40.72555824,-74.00455309,noise 40.7255116,-74.00402995,noise 40.72342524,-73.99027359,noise 40.57206459,-73.99791946,noise 40.77287773,-73.91650591,noise 40.7255116,-74.00402995,noise 40.74291044,-73.9928041,noise 40.74316574,-73.99343922,noise 40.80801887,-73.92932886,noise 40.82644442,-73.89686902,noise 40.71745816,-73.99058469,noise 40.63860603,-73.9482662,noise 40.79506957,-73.94503141,noise 40.68272017,-73.91579673,noise 40.73876057,-74.0024069,noise 40.79664287,-73.96847719,noise 40.72332399,-74.00490288,noise 40.72362592,-74.00478746,noise 40.8078954,-73.92939401,noise 40.76331469,-73.92819586,noise 40.82410397,-73.9528408,noise 40.70549476,-73.92992446,noise 40.71856661,-73.98628445,noise 40.71856661,-73.98628445,noise 40.67551194,-73.97038027,noise 40.79664287,-73.96847719,noise 40.72523436,-74.00459997,noise 40.72249779,-74.00549087,noise 40.72365037,-73.99102396,noise 40.74291044,-73.9928041,noise 40.68026692,-73.9746902,noise 40.7493558,-73.8880269,noise 40.84336697,-73.91544521,noise 40.82410397,-73.9528408,noise 40.68140749,-73.94686293,noise 40.73005973,-73.99936498,noise 40.7642781,-73.97301575,noise 40.67609498,-73.94991352,noise 40.73366075,-73.99531285,noise 40.76445373,-73.97287128,noise 40.7329472,-73.9979866,noise 40.87875542,-73.89961571,noise 40.51124362,-74.24014123,noise 40.86637626,-73.92825812,noise 40.86637626,-73.92825812,noise 40.82835694,-73.88198241,noise 40.80075136,-73.95865085,noise 40.65573873,-73.92325155,noise 40.69139492,-73.82092298,noise 40.86022686,-73.90722824,noise 40.81998411,-73.95274978,noise 40.69572285,-73.76158885,noise 40.72311309,-73.9764417,noise 40.72349367,-73.98825325,noise 40.59959958,-73.98581555,noise 40.71085754,-73.96491072,noise 40.8794996,-73.8722147,noise 40.72100987,-73.95542824,noise 40.83455923,-73.94220174,noise 40.8368363,-73.94569076,noise 40.86022135,-73.90720656,noise 40.74011361,-74.00596145,noise 40.72349367,-73.98825325,noise 40.8360394,-73.94375079,noise 40.77850171,-73.95632493,noise 40.63326889,-74.02108025,noise 40.74928842,-73.98454214,noise 40.76279282,-73.97148578,noise 40.86437703,-73.92653575,noise 40.64274325,-73.95693627,noise 40.72100987,-73.95542824,noise 40.71896706,-73.96102841,noise 40.72097692,-73.95537775,noise 40.6826897,-73.96166976,noise 40.72100987,-73.95542824,noise 40.70963675,-73.83002488,noise 40.71985693,-73.95505743,noise 40.72097692,-73.95537775,noise 40.77933383,-73.95066995,noise 40.67305942,-73.95711498,noise 40.70619093,-74.00916485,noise 40.70863353,-73.95487383,noise 40.68270163,-73.92900737,noise 40.68296517,-73.92907199,noise 40.72099888,-73.95539578,noise 40.70963675,-73.83002488,noise 40.68400462,-73.93227625,noise 40.73250431,-73.9848383,noise 40.81330917,-73.94693824,noise 40.76279282,-73.97148578,noise 40.80238951,-73.95052644,noise 40.86088807,-73.90033318,noise 40.74696696,-73.98984429,noise 40.71010746,-73.84870075,noise 40.71728083,-73.95832025,noise 40.76743782,-73.92062464,noise 40.71010746,-73.84870075,noise 40.72568792,-73.9776891,noise 40.67915413,-73.98342993,noise 40.76743782,-73.92062464,noise 40.72100987,-73.95542824,noise 40.67942267,-73.96822614,noise 40.6301397,-74.10879366,noise 40.84923893,-73.92077643,noise 40.73326824,-74.0050732,noise 40.59655143,-73.97703729,noise 40.72841273,-73.99425247,noise 40.68272042,-73.96329223,noise 40.71886218,-73.9593546,noise 40.7581599,-73.9625937,noise 40.76263852,-73.98214571,noise 40.76227925,-73.77034272,noise 40.63606328,-73.96787928,noise 40.76753406,-73.92087723,noise 40.71893358,-73.95947,noise 40.68787779,-73.84475236,noise 40.73321576,-73.98992216,noise 40.70619093,-74.00916485,noise 40.67915413,-73.98342993,noise 40.71530535,-73.96043535,noise 40.66271484,-73.97843466,noise 40.74859138,-73.89531132,noise 40.73314165,-73.98995104,noise 40.74855066,-73.89581304,noise 40.7491781,-73.89763828,noise 40.6895765,-73.97175508,noise 40.75658005,-73.9297516,noise 40.7743563,-73.90818912,noise 40.68707358,-73.99021759,noise 40.75986843,-73.88008233,noise 40.71963732,-73.98859304,noise 40.75637885,-73.99176672,noise 40.78434683,-73.94700827,noise 40.68220447,-73.93787741,noise 40.74917262,-73.89764189,noise 40.73409421,-74.00849032,noise 40.85760543,-73.89123552,noise 40.85205434,-73.82903921,noise 40.7193216,-73.98781748,noise 40.76311474,-73.99964984,noise 40.68035203,-73.97476588,noise 40.76997974,-73.95751829,noise 40.66773193,-73.95743922,noise 40.85114171,-73.78846705,noise 40.70498896,-73.9203239,noise 40.76804592,-73.9839385,noise 40.76207324,-73.91868534,noise 40.71882648,-73.95929691,noise 40.72982208,-73.98077622,noise 40.64623259,-73.95887994,noise 40.67856564,-73.88255394,noise 40.72565308,-73.9826066,noise 40.68853983,-73.95002316,noise 40.72726152,-73.98265669,noise 40.73940544,-74.00644854,noise 40.72556247,-73.98237572,noise 40.72666597,-73.9830898,noise 40.80608294,-73.94251906,noise 40.72841273,-73.99425247,noise 40.65074897,-73.96242689,noise 40.65692084,-73.92609024,noise 40.64174648,-73.97378957,noise 40.80084248,-73.95290423,noise 40.81370491,-73.96214342,noise 40.7192426,-73.99702743,noise 40.78311615,-73.95085853,noise 40.82803564,-73.94927882,noise 40.79578759,-73.94276632,noise 40.76598331,-73.96544484,noise 40.71883334,-74.00877337,noise 40.7985263,-73.9417021,noise 40.72368086,-74.0036366,noise 40.75951028,-73.98812056,noise 40.70805265,-73.95065056,noise 40.70805265,-73.95065056,noise 40.85582268,-73.89263018,noise 40.8065972,-73.95748408,noise 40.86507792,-73.92810768,noise 40.6936969,-73.80036912,noise 40.67729893,-73.95407665,noise 40.72543203,-73.99677099,noise 40.75955431,-73.98929731,noise 40.72977627,-73.98680892,noise 40.68209912,-73.96033246,noise 40.75763536,-73.98580355,noise 40.75685587,-73.98597337,noise 40.6471319,-74.00462341,noise 40.62964721,-74.01069987,noise 40.73250431,-73.9848383,noise 40.86111875,-73.92603322,noise 40.76557288,-73.9837225,noise 40.70247911,-73.92687285,noise 40.68220447,-73.93787741,noise 40.86437703,-73.92653575,noise 40.86422327,-73.9264383,noise 40.74250855,-73.98215111,noise 40.86260529,-73.92027606,noise 40.86422327,-73.9264383,noise 40.86437703,-73.92653575,noise 40.76058323,-73.98592204,noise 40.72694375,-73.98747334,noise 40.68220447,-73.93787741,noise 40.72341408,-73.98833624,noise 40.72386918,-73.98388421,noise 40.70285592,-73.81159434,noise 40.83856918,-73.94204647,noise 40.86260529,-73.92027606,noise 40.81986557,-73.95852336,noise 40.8221488,-73.94456825,noise 40.58989,-73.80747002,noise 40.86422327,-73.9264383,noise 40.81273909,-73.93761829,noise 40.86422327,-73.9264383,noise 40.86437703,-73.92653575,noise 40.70183209,-74.01099637,noise 40.74849895,-74.00209687,noise 40.71177784,-73.95193553,noise 40.68039869,-73.97480192,noise 40.7572323,-73.98979219,noise 40.76077769,-73.91864721,noise 40.75064532,-74.00334572,noise 40.63804649,-73.95578631,noise 40.72774035,-74.00386773,noise 40.89597196,-73.85933152,noise 40.86292586,-73.92776655,noise 40.8196729,-73.94423069,noise 40.73465934,-73.98828737,noise 40.80513983,-73.96599162,noise 40.57586192,-73.95993119,noise 40.66359798,-73.93359459,noise 40.69519509,-73.84253554,noise 40.856423,-73.93116804,noise 40.62503355,-74.00609526,noise 40.80278678,-73.95552157,noise 40.83365292,-73.91854365,noise 40.67110792,-73.95037509,noise 40.66141225,-73.92334234,noise 40.67085414,-73.98491359,noise 40.53524581,-74.23945759,noise 40.80775859,-73.95146887,noise 40.80189077,-73.96842414,noise 40.74294904,-73.99646701,noise 40.74294904,-73.99646701,noise 40.74705161,-73.88665213,noise 40.82964818,-73.94630008,noise 40.71440596,-73.9902208,noise 40.80991804,-73.80358599,noise 40.67915413,-73.98342993,noise 40.80760279,-73.94108006,noise 40.71193053,-73.95626394,noise 40.80940528,-73.93955043,noise 40.84466953,-73.9347692,noise 40.86210781,-73.91928608,noise 40.6471319,-74.00462341,noise 40.71906927,-73.95527802,noise 40.84420068,-73.93565154,noise 40.70403974,-73.90978994,noise 40.72648555,-73.98921603,noise 40.82684358,-73.94737912,noise 40.71768949,-73.95747225,noise 40.6808768,-73.9448371,noise 40.8605242,-73.92768963,noise 40.71768949,-73.95747225,noise 40.70549476,-73.92992446,noise 40.71202671,-73.9565813,noise 40.84822967,-73.90711847,noise 40.75431709,-73.98686542,noise 40.7461181,-73.88360055,noise 40.63868554,-73.97165051,noise 40.75215979,-73.98749025,noise 40.79585513,-73.93552852,noise 40.67007653,-73.92187963,noise 40.71562216,-73.99427522,noise 40.6335168,-74.01560038,noise 40.74705161,-73.88665213,noise 40.72349367,-73.98825325,noise 40.68187917,-73.7660803,noise 40.81200744,-73.95150551,noise 40.75546118,-73.88629853,noise 40.7205353,-73.99466441,noise 40.71450243,-73.99812784,noise 40.72349367,-73.98825325,noise 40.72897214,-73.82719377,noise 40.72349367,-73.98825325,noise 40.76743782,-73.92062464,noise 40.86592029,-73.92770907,noise 40.7235816,-73.98916238,noise 40.86592029,-73.92770907,noise 40.69619706,-73.98876294,noise 40.65108755,-73.94447252,noise 40.67518658,-73.95699824,noise 40.79365992,-73.97066719,noise 40.73294091,-73.98632479,noise 40.79365992,-73.97066719,noise 40.70963675,-73.83002488,noise 40.72440629,-73.97860951,noise 40.7235816,-73.98916238,noise 40.76323255,-73.99285606,noise 40.6801084,-73.86059446,noise 40.59655143,-73.97703729,noise 40.71750776,-73.95594283,noise 40.67537444,-73.81280038,noise 40.75961134,-73.9270989,noise 40.71959321,-73.98674961,noise 40.86829008,-73.89981952,noise 40.74705161,-73.88665213,noise 40.69575527,-73.84473762,noise 40.71082016,-73.96852499,noise 40.6613542,-73.9696801,noise 40.66460568,-73.97684445,noise 40.7995601,-73.95147124,noise 40.79959031,-73.93986635,noise 40.76273119,-73.97834091,noise 40.75826661,-73.98546772,noise 40.7908949,-73.94516848,noise 40.78311615,-73.95085853,noise 40.66785018,-73.95803392,noise 40.74756137,-73.89155955,noise 40.75678097,-73.82650079,noise 40.75562797,-73.97933221,noise 40.58813067,-73.95147727,noise 40.77501557,-73.99076791,noise 40.78311615,-73.95085853,noise 40.82765774,-73.93968922,noise 40.64631775,-73.9519899,noise 40.72954479,-73.98040467,noise 40.83671019,-73.90384955,noise 40.84234861,-73.89835147,noise 40.82612184,-73.94765068,noise 40.70259361,-73.73787248,noise 40.88224349,-73.87911302,noise 40.67305942,-73.95711498,noise 40.8379371,-73.94606933,noise 40.81567071,-73.94344647,noise 40.64269519,-73.96977506,noise 40.86724744,-73.91760585,noise 40.64269519,-73.96977506,noise 40.68272042,-73.96329223,noise 40.59655143,-73.97703729,noise 40.87429826,-73.88792497,noise 40.86888602,-73.91759297,noise 40.69467288,-73.9311439,noise 40.59077975,-73.96818551,noise 40.8019063,-73.96516974,noise 40.81206367,-73.9156945,noise 40.80709742,-73.94597872,noise 40.88207886,-73.87916757,noise 40.69333284,-73.96702951,noise 40.68230634,-73.92894289,noise 40.82700844,-73.94776923,noise 40.67110792,-73.95037509,noise 40.87449179,-73.90149519,noise 40.83036236,-73.86602154,noise 40.6897524,-73.91596815,noise 40.70137091,-73.90524211,noise 40.67971591,-73.95123396,noise 40.83436713,-73.91553615,noise 40.68152493,-73.97922177,noise 40.82208568,-73.94460082,noise 40.75858018,-73.82561174,noise 40.74683763,-73.98664314,noise 40.87432431,-73.8568751,noise 40.62940288,-74.0110673,noise 40.65675108,-73.96027185,noise 40.8661155,-73.89284495,noise 40.82880488,-73.89385175,noise 40.69459975,-73.90886511,noise 40.68081719,-73.89179427,noise 40.71909124,-73.95529965,noise 40.68081719,-73.89179427,noise 40.75301448,-73.90308246,noise 40.78229519,-73.96512584,noise 40.80073764,-73.95866169,noise 40.79984321,-73.95245707,noise 40.83436713,-73.91553615,noise 40.68945892,-73.91625699,noise 40.74173312,-74.00308184,noise 40.77133677,-73.7889155,noise 40.82653035,-73.94666032,noise 40.82276244,-73.91932296,noise 40.770663,-73.95701963,noise 40.88042713,-73.87711293,noise 40.74877829,-73.80976097,noise 40.88042713,-73.87711293,noise 40.79492943,-73.94468481,noise 40.88042713,-73.87711293,noise 40.6335168,-74.01560038,noise 40.65667164,-73.9607116,noise 40.70967188,-73.96517105,noise 40.65675108,-73.96027185,noise 40.65675108,-73.96027185,noise 40.75252317,-73.85586633,noise 40.65676202,-73.96013489,noise 40.85109628,-73.93243506,noise 40.65676202,-73.96013489,noise 40.70547174,-73.94290878,noise 40.64018175,-73.95530567,noise 40.65675108,-73.96027185,noise 40.82044164,-73.85365621,noise 40.80246957,-73.95868951,noise 40.83689605,-73.90967123,noise 40.86613852,-73.92558294,noise 40.64490991,-73.95255665,noise 40.85532908,-73.9286496,noise 40.72677922,-73.98898508,noise 40.63765525,-74.07798873,noise 40.82294018,-73.90411152,noise 40.72686979,-73.9889093,noise 40.80246957,-73.95868951,noise 40.85205434,-73.82903921,noise 40.72301031,-73.9857532,noise 40.70909238,-74.00551141,noise 40.86613852,-73.92558294,noise 40.87376639,-73.88574188,noise 40.86613852,-73.92558294,noise 40.72693017,-73.98886238,noise 40.85438041,-73.93027367,noise 40.83313867,-73.94464943,noise 40.69226659,-73.94857796,noise 40.82942013,-73.94580161,noise 40.86813967,-73.93041833,noise 40.74810921,-74.00122347,noise 40.72301031,-73.9857532,noise 40.81986557,-73.95852336,noise 40.8605242,-73.92768963,noise 40.79818993,-73.93381789,noise 40.63733699,-73.93079592,noise 40.70794983,-73.95422866,noise 40.80043804,-73.96571229,noise 40.83279517,-73.94378967,noise 40.83314415,-73.9446169,noise 40.61254776,-73.92072237,noise 40.82700844,-73.94776923,noise 40.83669583,-73.93922206,noise 40.83669583,-73.93922206,noise 40.68594937,-73.93982821,noise 40.84562707,-73.93913439,noise 40.81453554,-73.95914444,noise 40.83279517,-73.94378967,noise 40.79567846,-73.95007997,noise 40.74951583,-73.88333114,noise 40.64018175,-73.95530567,noise 40.82316686,-73.93869968,noise 40.59655143,-73.97703729,noise 40.8637895,-73.92209677,noise 40.72998331,-73.95762316,noise 40.70967188,-73.96517105,noise 40.70967188,-73.96517105,noise 40.68287578,-73.85018672,noise 40.70967188,-73.96517105,noise 40.67085414,-73.98491359,noise 40.79859323,-73.93351771,noise 40.80077282,-73.96546651,noise 40.79381749,-73.94401399,noise 40.67329706,-73.96159224,noise 40.88923532,-73.90039556,noise 40.86333019,-73.92915078,noise 40.67085414,-73.98491359,noise 40.57485805,-73.98676392,noise 40.87091201,-73.89153556,noise 40.75752223,-73.83407535,noise 40.79381749,-73.94401399,noise 40.83657605,-73.94112668,noise 40.79417746,-73.94486602,noise 40.8235461,-73.93959178,noise 40.88179583,-73.89880468,noise 40.82316409,-73.93865271,noise 40.82348565,-73.93946176,noise 40.82964818,-73.94630008,noise 40.65168983,-73.93139008,noise 40.6700277,-73.93615122,noise 40.80088245,-73.92911611,noise 40.80559563,-73.95818187,noise 40.85598441,-73.86383351,noise 40.64200351,-73.96069141,noise 40.77425465,-73.90806289,noise 40.8214311,-73.91528882,noise 40.86146109,-73.92921784,noise 40.86193593,-73.92077215,noise 40.84734357,-73.89789565,noise 40.65010812,-73.93020607,noise 40.83454275,-73.94216201,noise 40.65570032,-73.91545241,noise 40.86091732,-73.920307,noise 40.83657605,-73.94112668,noise 40.82950194,-73.87460889,noise 40.6861438,-73.96539247,noise 40.70284596,-73.91004762,noise 40.81356636,-73.95132013,noise 40.74951583,-73.88333114,noise 40.85394175,-73.91467627,noise 40.71992609,-74.0002886,noise 40.82206054,-73.92040051,noise 40.71992609,-74.0002886,noise 40.86440268,-73.92376635,noise 40.64016872,-73.9571253,noise 40.69083928,-73.9888612,noise 40.67024551,-73.80356112,noise 40.83455923,-73.94220174,noise 40.85598441,-73.86383351,noise 40.65667164,-73.9607116,noise 40.70148563,-73.91142355,noise 40.82942988,-73.87650971,noise 40.83420805,-73.91953675,noise 40.58411122,-73.93298959,noise 40.86613852,-73.92558294,noise 40.86649302,-73.9181238,noise 40.82235075,-73.95447877,noise 40.80336774,-73.94685226,noise 40.8567527,-73.93172801,noise 40.8208402,-73.8726489,noise 40.66766022,-73.87689934,noise 40.68020687,-73.86031304,noise 40.82930538,-73.87060554,noise 40.67330597,-73.7926289,noise 40.69065298,-73.93807508,noise 40.83657605,-73.94112668,noise 40.76331469,-73.92819586,noise 40.82015108,-73.87246957,noise 40.70832296,-73.90143777,noise 40.81884287,-73.95415239,noise 40.83116528,-73.92114846,noise 40.65644155,-73.96213175,noise 40.82117481,-73.92573438,noise 40.85702993,-73.90139091,noise 40.83256203,-73.86942116,noise 40.70657036,-73.79906097,noise 40.83256203,-73.86942116,noise 40.82993131,-73.86591401,noise 40.73689253,-73.98058294,noise 40.65051837,-73.9235855,noise 40.71992609,-74.0002886,noise 40.85822857,-73.89429282,noise 40.78640213,-73.94035132,noise 40.65778597,-73.95324671,noise 40.71992609,-74.0002886,noise 40.71789448,-73.98947355,noise 40.75317252,-73.90498435,noise 40.63746939,-73.91917226,noise 40.85898567,-73.89381082,noise 40.71992609,-74.0002886,noise 40.67362751,-73.95688749,noise 40.67518658,-73.95699824,noise 40.76449114,-73.98165065,noise 40.65074897,-73.96242689,noise 40.87323868,-73.89972166,noise 40.71113547,-73.95877497,noise 40.67702663,-73.95267802,noise 40.82423254,-73.92591886,noise 40.69110603,-73.99743255,noise 40.71992609,-74.0002886,noise 40.68018857,-73.98117631,noise 40.67885012,-74.01115482,noise 40.87091201,-73.89153556,noise 40.69039445,-74.01284433,noise 40.64529023,-73.99852257,noise 40.69082236,-73.9366109,noise 40.78203801,-73.91425927,noise 40.80880336,-73.9558824,noise 40.64051333,-74.01508315,noise 40.65691583,-73.95313919,noise 40.67816791,-73.74649499,noise 40.82904613,-73.87443631,noise 40.76331469,-73.92819586,noise 40.71992609,-74.0002886,noise 40.86868693,-73.92343242,noise 40.77058321,-73.95651424,noise 40.67518658,-73.95699824,noise 40.77075354,-73.95694015,noise 40.71864609,-73.98530681,noise 40.76975355,-73.95457609,noise 40.76711934,-73.95649484,noise 40.76975355,-73.95457609,noise 40.80916897,-73.95737406,noise 40.6568122,-73.95481158,noise 40.68164202,-73.92879578,noise 40.71113547,-73.95877497,noise 40.66562907,-73.84714352,noise 40.83599147,-73.91481855,noise 40.79473565,-73.96987216,noise 40.63733699,-73.93079592,noise 40.72060064,-73.9547539,noise 40.88436955,-73.90104296,noise 40.86553576,-73.9272684,noise 40.72342524,-73.99027359,noise 40.70867525,-73.95630575,noise 40.67518658,-73.95699824,noise 40.70897435,-73.95610357,noise 40.78865088,-73.94766931,noise 40.68721688,-73.86713849,noise 40.76003182,-73.98851754,noise 40.83811767,-73.94483683,noise 40.68197143,-73.92886754,noise 40.82455463,-73.9419539,noise 40.68050144,-73.9809635,noise 40.68197143,-73.92886754,noise 40.83811767,-73.94483683,noise 40.79866694,-73.96329691,noise 40.83268605,-73.93967743,noise 40.67517287,-73.95701988,noise 40.68622545,-73.91238852,noise 40.67515359,-73.95684685,noise 40.59651786,-73.77246483,noise 40.74765332,-73.94908739,noise 40.59651786,-73.77246483,noise 40.87156453,-73.88511652,noise 40.81062675,-73.95827263,noise 40.65943588,-73.94757245,noise 40.5789466,-73.93993181,noise 40.63746939,-73.91917226,noise 40.59651786,-73.77246483,noise 40.85600418,-73.86665672,noise 40.67995254,-73.98132419,noise 40.67995254,-73.98132419,noise 40.77025355,-73.95575992,noise 40.76331469,-73.92819586,noise 40.6566881,-73.96070438,noise 40.85520796,-73.9159037,noise 40.66965542,-73.99252723,noise 40.85779461,-73.88262787,noise 40.65667164,-73.9607116,noise 40.82316409,-73.93865271,noise 40.65670997,-73.96044848,noise 40.63746939,-73.91917226,noise 40.76239004,-73.87168854,noise 40.83811767,-73.94483683,noise 40.84825646,-73.90974978,noise 40.70701635,-73.79825891,noise 40.67995254,-73.98132419,noise 40.87126009,-73.91747071,noise 40.87126009,-73.91747071,noise 40.68971686,-73.91247408,noise 40.67518658,-73.95699824,noise 40.65667164,-73.9607116,noise 40.82781896,-73.87418207,noise 40.79598975,-73.96895424,noise 40.71532327,-73.93869425,noise 40.82455463,-73.9419539,noise 40.71532327,-73.93869425,noise 40.67518658,-73.95699824,noise 40.71518984,-73.93561376,noise 40.76239004,-73.87168854,noise 40.68023248,-73.98114745,noise 40.71677946,-73.93634091,noise 40.70294413,-73.94357096,noise 40.76233478,-73.98980224,noise 40.78867286,-73.94771624,noise 40.73376187,-73.93742161,noise 40.65532674,-73.91506004,noise 40.59560812,-74.06881516,noise 40.78867286,-73.94771624,noise 40.72348328,-73.99840899,noise 40.79473565,-73.96987216,noise 40.759412,-73.99561425,noise 40.84825646,-73.90974978,noise 40.6568122,-73.95481158,noise 40.78804685,-73.94725811,noise 40.79473565,-73.96987216,noise 40.71677946,-73.93634091,noise 40.78711943,-73.9479233,noise 40.66010486,-73.90390587,noise 40.61090099,-73.93390272,noise 40.7942713,-73.93530614,noise 40.79376833,-73.9341076,noise 40.87147953,-73.88520344,noise 40.78711943,-73.9479233,noise 40.76331469,-73.92819586,noise 40.83694699,-73.91531604,noise 40.80503246,-73.95682044,noise 40.83666177,-73.91561635,noise 40.79631356,-73.96871933,noise 40.78769273,-73.94147685,noise 40.67518658,-73.95699824,noise 40.67518658,-73.95699824,noise 40.78759961,-73.94758708,noise 40.67518658,-73.95699824,noise 40.70289504,-73.94421658,noise 40.78711943,-73.9479233,noise 40.67518658,-73.95699824,noise 40.67518658,-73.95699824,noise 40.67518658,-73.95699824,noise 40.70711579,-74.01067624,noise 40.66010486,-73.90390587,noise 40.81916263,-73.8798129,noise 40.83987361,-73.89017307,noise 40.79190511,-73.94547823,noise 40.71077065,-73.96815349,noise 40.72566263,-73.99984847,noise 40.67771471,-73.95064777,noise 40.70711579,-74.01067624,noise 40.78311615,-73.95085853,noise 40.78311615,-73.95085853,noise 40.6471319,-74.00462341,noise 40.61901245,-73.92587647,noise 40.76155088,-73.96658422,noise 40.70119335,-73.92933391,noise 40.74493348,-73.82941875,noise 40.6471319,-74.00462341,noise 40.86341143,-73.9231348,noise 40.81119658,-73.90881022,noise 40.81158623,-73.90867963,noise 40.87316122,-73.88716756,noise 40.75870318,-73.83266826,noise 40.66339287,-73.91399727,noise 40.67197264,-73.9575014,noise 40.69976763,-73.8270603,noise 40.70753056,-73.78659995,noise 40.8235731,-73.90279542,noise 40.67648934,-73.7969236,noise 40.64551221,-73.9633199,noise 40.64551221,-73.9633199,noise 40.71932169,-73.98875543,noise 40.68187917,-73.7660803,noise 40.84971554,-73.8839506,noise 40.81783843,-73.92762401,noise 40.68678831,-73.87924742,noise 40.69278668,-73.74036677,noise 40.61015962,-73.94370341,noise 40.86613852,-73.92558294,noise 40.86613852,-73.92558294,noise 40.65164646,-73.93232352,noise 40.86613852,-73.92558294,noise 40.75015675,-73.81863921,noise 40.85567264,-73.92941921,noise 40.57251886,-73.8659304,noise 40.85146952,-73.89556508,noise 40.82300792,-73.95067009,noise 40.69822499,-73.80633492,noise 40.85567264,-73.92941921,noise 40.61894996,-73.92687791,noise 40.82043727,-73.9362273,noise 40.85567264,-73.92941921,noise 40.67962217,-73.96520477,noise 40.61171188,-73.94675633,noise 40.66067297,-73.91424587,noise 40.7296035,-73.98823774,noise 40.67462684,-73.87725059,noise 40.70369027,-73.92802565,noise 40.7087892,-73.93587604,noise 40.83431245,-73.90521901,noise 40.73029441,-73.98223737,noise 40.6700277,-73.93615122,noise 40.84171392,-73.9355672,noise 40.81672972,-73.86635607,noise 40.88919344,-73.83129818,noise 40.70863079,-73.95490269,noise 40.68161246,-73.95797118,noise 40.72349367,-73.98825325,noise 40.69599535,-73.78277098,noise 40.86064137,-73.93076962,noise 40.80852334,-73.94321774,noise 40.72349367,-73.98825325,noise 40.76002338,-73.98659357,noise 40.60614362,-73.94296131,noise 40.79770759,-73.94018227,noise 40.63038477,-73.89499957,noise 40.82741013,-73.93858737,noise 40.76058323,-73.98592204,noise 40.5996194,-73.94916426,noise 40.83457572,-73.94224148,noise 40.72061916,-73.8460614,noise 40.64764435,-73.91923201,noise 40.78536042,-73.97298193,noise 40.72488931,-73.97828105,noise 40.86437703,-73.92653575,noise 40.76114388,-73.90914948,noise 40.78536042,-73.97298193,noise 40.70889971,-73.95471855,noise 40.7274881,-73.80700755,noise 40.58924884,-74.1015729,noise 40.63533928,-73.91895506,noise 40.80535859,-73.95551985,noise 40.81356636,-73.95132013,noise 40.86355918,-73.90753813,noise 40.69726627,-73.96765506,noise 40.69083928,-73.9888612,noise 40.75752223,-73.83407535,noise 40.85567264,-73.92941921,noise 40.81537693,-73.9379229,noise 40.80509759,-73.95487345,noise 40.67482164,-73.97635782,noise 40.79560896,-73.96218622,noise 40.63555239,-73.97802189,noise 40.85371678,-73.92680056,noise 40.86210781,-73.91928608,noise 40.62501047,-74.03042587,noise 40.80232357,-73.95037479,noise 40.82700844,-73.94776923,noise 40.85643125,-73.9311861,noise 40.7137782,-73.95746753,noise 40.82964818,-73.94630008,noise 40.67197264,-73.9575014,noise 40.6739703,-73.97421672,noise 40.83459574,-73.89632516,noise 40.72084565,-73.95662967,noise 40.6919117,-73.94679686,noise 40.85354567,-73.91729026,noise 40.85249568,-73.93174323,noise 40.81572145,-73.94064296,noise 40.76434105,-73.9883363,noise 40.75911212,-73.84237722,noise 40.72061916,-73.8460614,noise 40.72104319,-73.95643113,noise 40.73425341,-73.99160708,noise 40.69321061,-73.97187254,noise 40.67462684,-73.87725059,noise 40.70887841,-73.99855723,noise 40.76550199,-73.98746608,noise 40.74547505,-73.86526115,noise 40.71450243,-73.99812784,noise 40.65962562,-73.98805545,noise 40.75258054,-73.86704782,noise 40.76444534,-73.9882352,noise 40.64255331,-74.00940113,noise 40.81986557,-73.95852336,noise 40.63818153,-73.97621947,noise 40.7645414,-73.98816298,noise 40.76272177,-73.989517,noise 40.84241648,-73.93541111,noise 40.75556778,-73.82288726,noise 40.76324872,-73.98913066,noise 40.69393526,-73.9720273,noise 40.85618097,-73.93033324,noise 40.84822538,-73.90521364,noise 40.84668865,-73.90558811,noise 40.65074897,-73.96242689,noise 40.67110792,-73.95037509,noise 40.68668653,-73.87903487,noise 40.71073706,-73.95762458,noise 40.69459975,-73.90886511,noise 40.87341038,-73.87588565,noise 40.80090034,-73.96083235,noise 40.63328456,-73.89049865,noise 40.78699941,-73.94961703,noise 40.71450243,-73.99812784,noise 40.72894882,-73.97836993,noise 40.8571489,-73.90250415,noise 40.87341038,-73.87588565,noise 40.83054079,-73.86604286,noise 40.82410397,-73.9528408,noise 40.67089775,-73.95318705,noise 40.65074897,-73.96242689,noise 40.63821716,-73.97595282,noise 40.84118523,-73.91587083,noise 40.82410397,-73.9528408,noise 40.7652652,-73.88334327,noise 40.84621384,-73.9056177,noise 40.85140855,-73.88348136,noise 40.85205434,-73.82903921,noise 40.6864564,-73.97477078,noise 40.82416166,-73.95297806,noise 40.7235816,-73.98916238,noise 40.65667164,-73.9607116,noise 40.83061263,-73.94862281,noise 40.74072541,-73.92391147,noise 40.70867525,-73.95630575,noise 40.78699941,-73.94961703,noise 40.70897435,-73.95610357,noise 40.68230634,-73.92894289,noise 40.88102088,-73.84379869,noise 40.83757377,-73.92054819,noise 40.84208302,-73.92010549,noise 40.70700314,-73.93244766,noise 40.80238951,-73.95052644,noise 40.73748845,-73.88345324,noise 40.71153872,-73.94507144,noise 40.70932835,-73.95588692,noise 40.86422327,-73.9264383,noise 40.70607594,-74.0042019,noise 40.69423406,-73.82337474,noise 40.80093054,-73.96086484,noise 40.63555239,-73.97802189,noise 40.70383481,-73.93097214,noise 40.85659934,-73.92778065,noise 40.69742251,-73.93479065,noise 40.80090034,-73.96083235,noise 40.8637895,-73.92209677,noise 40.69440401,-73.91870656,noise 40.66133698,-73.8883873,noise 40.8008866,-73.96079985,noise 40.76331469,-73.92819586,noise 40.63169089,-73.9262767,noise 40.68230634,-73.92894289,noise 40.67638649,-73.9582052,noise 40.74949723,-73.89846789,noise 40.76753406,-73.92087723,noise 40.68230634,-73.92894289,noise 40.71387984,-73.95769833,noise 40.59655143,-73.97703729,noise 40.71010746,-73.84870075,noise 40.80227581,-73.95435524,noise 40.68327789,-73.99546783,noise 40.81709274,-73.90270373,noise 40.68395335,-73.96497535,noise 40.86333019,-73.92915078,noise 40.66965542,-73.99252723,noise 40.86390569,-73.92345961,noise 40.8463906,-73.94009873,noise 40.68045833,-73.90503748,noise 40.76331469,-73.92819586,noise 40.76426695,-73.9157911,noise 40.67482164,-73.97635782,noise 40.84651959,-73.94006247,noise 40.83470394,-73.91825688,noise 40.64575255,-73.9810563,noise 40.72746685,-73.97947083,noise 40.81540991,-73.93800235,noise 40.78867286,-73.94771624,noise 40.7532637,-73.86444774,noise 40.75865965,-73.87645683,noise 40.86168523,-73.90839031,noise 40.70750589,-73.94938135,noise 40.86324712,-73.92796143,noise 40.83680331,-73.94558599,noise 40.86404894,-73.90234219,noise 40.86303294,-73.92782428,noise 40.69313324,-73.96983153,noise 40.8605242,-73.92768963,noise 40.69807038,-73.93027847,noise 40.7129296,-73.96415573,noise 40.86390569,-73.92345961,noise 40.71072834,-73.99660939,noise 40.76331469,-73.92819586,noise 40.62056184,-73.90198881,noise 40.7270295,-74.00191941,noise 40.71308054,-73.96407269,noise 40.61896828,-73.90015769,noise 40.70775443,-73.94665797,noise 40.86528183,-73.84718716,noise 40.82849131,-73.94940133,noise 40.78865088,-73.94766931,noise 40.85700997,-73.93049866,noise 40.7581599,-73.9625937,noise 40.86111875,-73.92603322,noise 40.72933786,-74.0010319,noise 40.85205434,-73.82903921,noise 40.7127399,-73.96316026,noise 40.82613759,-73.89751266,noise 40.83729781,-73.94092005,noise 40.69058524,-73.95831169,noise 40.83780345,-73.9421411,noise 40.67268179,-73.95301997,noise 40.67089775,-73.95318705,noise 40.69216351,-73.79466175,noise 40.66253489,-73.94791243,noise 40.70000973,-73.91613554,noise 40.84960878,-73.93264983,noise 40.811664,-73.8053907,noise 40.66947464,-73.95683611,noise 40.71387984,-73.95769833,noise 40.6454304,-73.94417093,noise 40.61466861,-74.01328719,noise 40.80245986,-73.95474882,noise 40.8027236,-73.9553663,noise 40.83793321,-73.87166571,noise 40.68371565,-73.95269851,noise 40.69378652,-73.96995024,noise 40.71749685,-74.00536781,noise 40.69804568,-73.9302785,noise 40.71749685,-74.00536781,noise 40.7188155,-73.95931134,noise 40.74609541,-73.91400238,noise 40.71749685,-74.00536781,noise 40.83036236,-73.86602154,noise 40.69945525,-73.92398742,noise 40.63746939,-73.91917226,noise 40.82741013,-73.93858737,noise 40.72439052,-73.90436877,noise 40.86553576,-73.9272684,noise 40.67643874,-73.95846474,noise 40.83142128,-73.92642398,noise 40.6851111,-73.78652747,noise 40.69378652,-73.96995024,noise 40.68800646,-73.91943192,noise 40.67462134,-73.93916067,noise 40.75249627,-73.86306333,noise 40.63085298,-73.89081608,noise 40.69324928,-73.97291108,noise 40.77954413,-73.98799422,noise 40.61950962,-73.94628904,noise 40.71992609,-74.0002886,noise 40.68371565,-73.95269851,noise 40.85930241,-73.89807612,noise 40.70897435,-73.95610357,noise 40.65887294,-73.95333605,noise 40.70932835,-73.95588692,noise 40.68371565,-73.95269851,noise 40.83142128,-73.92642398,noise 40.85930241,-73.89807612,noise 40.84225931,-73.92512897,noise 40.68371565,-73.95269851,noise 40.71066514,-74.00532397,noise 40.57251886,-73.8659304,noise 40.67399723,-73.92784139,noise 40.70897435,-73.95610357,noise 40.77133954,-73.93142927,noise 40.70775443,-73.94665797,noise 40.76385801,-73.98869015,noise 40.82959223,-73.95005814,noise 40.76444534,-73.9882352,noise 40.76550199,-73.98746608,noise 40.71749685,-74.00536781,noise 40.76338296,-73.98673729,noise 40.76382498,-73.98778768,noise 40.83811767,-73.94483683,noise 40.67462134,-73.93916067,noise 40.76270804,-73.98950256,noise 40.76265315,-73.98954228,noise 40.78874515,-73.94981072,noise 40.76233478,-73.98980224,noise 40.76324872,-73.98913066,noise 40.84929762,-73.88323204,noise 40.71280033,-73.96331173,noise 40.75902186,-73.82010947,noise 40.73486403,-73.97984743,noise 40.67461579,-73.9390381,noise 40.8492063,-73.91354738,noise 40.63597511,-73.97814065,noise 40.669391,-73.82512758,noise 40.71528328,-73.90422312,noise 40.6851111,-73.78652747,noise 40.68672121,-73.9527757,noise 40.71528328,-73.90422312,noise 40.84554119,-73.93276961,noise 40.78909536,-73.97038391,noise 40.88078114,-73.85139703,noise 40.83768319,-73.93784065,noise 40.85838974,-73.90278069,noise 40.66965542,-73.99252723,noise 40.83733075,-73.94656854,noise 40.65431622,-73.95958494,noise 40.82892541,-73.95039469,noise 40.82849131,-73.94940133,noise 40.84800366,-73.89634402,noise 40.63564847,-73.95825594,noise 40.77888268,-73.98831209,noise 40.85594418,-73.8995453,noise 40.68672121,-73.9527757,noise 40.83811767,-73.94483683,noise 40.57251886,-73.8659304,noise 40.72224762,-73.98889924,noise 40.5822983,-73.82854171,noise 40.65972716,-73.98791847,noise 40.82892541,-73.95039469,noise 40.80008723,-73.95890048,noise 40.61967338,-74.08297466,noise 40.84962483,-73.93677042,noise 40.75662327,-73.99396128,noise 40.81281231,-73.95311252,noise 40.68973631,-73.89032301,noise 40.80008723,-73.95890048,noise 40.6870848,-73.95601341,noise 40.84263811,-73.90638898,noise 40.78032642,-73.98844543,noise 40.83194709,-73.94385543,noise 40.83194709,-73.94385543,noise 40.6493772,-74.00228836,noise 40.63181,-73.89277082,noise 40.7010846,-73.9465443,noise 40.72348686,-73.95164569,noise 40.83811767,-73.94483683,noise 40.68672121,-73.9527757,noise 40.73034475,-73.98996228,noise 40.83615112,-73.94211363,noise 40.73443443,-73.98990393,noise 40.82964543,-73.94069196,noise 40.72972315,-73.95924335,noise 40.66740131,-73.92327418,noise 40.67110792,-73.95037509,noise 40.82959223,-73.95005814,noise 40.6493772,-74.00228836,noise 40.8005019,-73.94609966,noise 40.68742105,-73.78887826,noise 40.80356744,-73.96714106,noise 40.81569237,-73.94867768,noise 40.74773415,-73.88299862,noise 40.71778618,-73.94032975,noise 40.83820984,-73.93722217,noise 40.82789691,-73.88578451,noise 40.64792892,-73.89147283,noise 40.7979463,-73.94002314,noise 40.84999364,-73.93865327,noise 40.67321962,-73.75563449,noise 40.65008151,-73.96100738,noise 40.7212143,-73.97948719,noise 40.73007724,-73.95930086,noise 40.79930656,-73.94323283,noise 40.81785476,-73.94766803,noise 40.58406113,-73.81825502,noise 40.72972315,-73.95924335,noise 40.80008723,-73.95890048,noise 40.83811767,-73.94483683,noise 40.76445373,-73.97287128,noise 40.68081719,-73.89179427,noise 40.79930656,-73.94323283,noise 40.58406512,-73.93396528,noise 40.78586641,-73.95092872,noise 40.74315645,-73.91870121,noise 40.59425326,-73.75121009,noise 40.7865414,-73.95043349,noise 40.68081719,-73.89179427,noise 40.68081719,-73.89179427,noise 40.6613542,-73.9696801,noise 40.59512619,-73.75125005,noise 40.81119422,-73.94374289,noise 40.78494225,-73.94658891,noise 40.6511718,-73.88993593,noise 40.5977499,-74.08406731,noise 40.86905269,-73.89030928,noise 40.68702487,-73.97620565,noise 40.8470806,-73.88669494,noise 40.80641492,-73.94226231,noise 40.65406994,-73.96176189,noise 40.78586641,-73.95092872,noise 40.78311615,-73.95085853,noise 40.75755914,-73.99254985,noise 40.84821153,-73.90506546,noise 40.84777934,-73.93487097,noise 40.84295677,-73.93466968,noise 40.75755914,-73.99254985,noise 40.72197601,-73.99025937,noise 40.70630593,-73.91957571,noise 40.78893747,-73.95024031,noise 40.87052663,-73.890343,noise 40.81753595,-73.95305138,noise 40.7196896,-73.81328919,noise 40.7216304,-73.99352432,noise 40.67153627,-73.95765669,noise 40.83729781,-73.94092005,noise 40.84700935,-73.93231632,noise 40.73945487,-74.00597582,noise 40.704234,-73.9330095,noise 40.72953107,-73.9804155,noise 40.61580613,-74.03418927,noise 40.70522812,-73.90623209,noise 40.61742376,-73.93116956,noise 40.82798856,-73.9236274,noise 40.73941928,-74.0038648,noise 40.68497144,-73.8600146,noise 40.75624515,-73.92120466,noise 40.73941928,-74.0038648,noise 40.68138125,-74.00444551,noise 40.63790849,-73.92307749,noise 40.67293717,-73.94131439,noise 40.73560607,-73.71632317,noise 40.72349367,-73.98825325,noise 40.71121192,-73.96593854,noise 40.6368429,-73.93075319,noise 40.72349367,-73.98825325,noise 40.74391839,-73.92518535,noise 40.78905143,-73.97030087,noise 40.71982663,-73.96240959,noise 40.63721737,-73.93273449,noise 40.78942768,-73.97117824,noise 40.59915804,-73.9892546,noise 40.65854748,-73.99633452,noise 40.86422327,-73.9264383,noise 40.70670729,-74.00233,noise 40.82798856,-73.9236274,noise 40.68935074,-73.81613264,noise 40.79990791,-73.96443035,noise 40.61721584,-73.93716347,noise 40.81986557,-73.95852336,noise 40.65972716,-73.98791847,noise 40.74855413,-73.97606458,noise 40.75911212,-73.84237722,noise 40.61023813,-73.98370275,noise 40.72349367,-73.98825325,noise 40.71828718,-73.99191212,noise 40.82343066,-73.93928838,noise 40.79292081,-73.94578437,noise 40.63733699,-73.93079592,noise 40.76362248,-73.99701462,noise 40.76081394,-73.98718902,noise 40.76346859,-73.99281632,noise 40.62343625,-74.02509733,noise 40.80695267,-73.94755378,noise 40.72349367,-73.98825325,noise 40.68272042,-73.96329223,noise 40.72349367,-73.98825325,noise 40.68272042,-73.96329223,noise 40.72894882,-73.97836993,noise 40.65162237,-74.00447957,noise 40.68564985,-73.95063829,noise 40.71527342,-73.99168522,noise 40.65108755,-73.94447252,noise 40.71527342,-73.99168522,noise 40.85114171,-73.78846705,noise 40.76240149,-73.97663717,noise 40.72306557,-73.98907949,noise 40.85114171,-73.78846705,noise 40.71522127,-73.99171409,noise 40.68272042,-73.96329223,noise 40.82946683,-73.94587023,noise 40.85114171,-73.78846705,noise 40.72342524,-73.99027359,noise 40.75911212,-73.84237722,noise 40.76330097,-73.92820671,noise 40.74846082,-73.97612597,noise 40.75548196,-73.81543034,noise 40.67695243,-73.78151349,noise 40.84533366,-73.88817256,noise 40.71121192,-73.96593854,noise 40.82000567,-73.95887372,noise 40.72104319,-73.95643113,noise 40.73434974,-74.00300933,noise 40.59925412,-73.98939502,noise 40.76753406,-73.92087723,noise 40.74705161,-73.88665213,noise 40.70287531,-73.90227534,noise 40.71875652,-73.99166675,noise 40.76338296,-73.98673729,noise 40.64271518,-73.94871343,noise 40.72279663,-73.98959904,noise 40.71399069,-73.98319041,noise 40.80139477,-73.96195899,noise 40.86954934,-73.91634837,noise 40.86437703,-73.92653575,noise 40.76331469,-73.92819586,noise 40.82379026,-73.9172875,noise 40.76391016,-73.98865404,noise 40.70277711,-73.92938633,noise 40.76429714,-73.98836879,noise 40.83365292,-73.91854365,noise 40.76434105,-73.9883363,noise 40.68564985,-73.95063829,noise 40.64018175,-73.95530567,noise 40.63404998,-74.02674784,noise 40.76438496,-73.9883038,noise 40.68261354,-73.99323967,noise 40.76444534,-73.9882352,noise 40.67482164,-73.97635782,noise 40.82369397,-73.91697328,noise 40.7645908,-73.98812688,noise 40.76488996,-73.98793549,noise 40.76545533,-73.98750219,noise 40.83738025,-73.94111874,noise 40.76550199,-73.98746608,noise 40.84423725,-73.9236232,noise 40.67321267,-73.99287651,noise 40.76270804,-73.98950256,noise 40.82271169,-73.93956363,noise 40.76331469,-73.92819586,noise 40.8692067,-73.9169743,noise 40.76265315,-73.98954228,noise 40.76233478,-73.98980224,noise 40.77075354,-73.95694015,noise 40.85267001,-73.86485965,noise 40.76272177,-73.989517,noise 40.77632971,-73.90147431,noise 40.67915413,-73.98342993,noise 40.76334753,-73.98905845,noise 40.84711145,-73.93818244,noise 40.69351613,-73.96498476,noise 40.83446031,-73.94196694,noise 40.76331469,-73.92819586,noise 40.83007156,-73.94780657,noise 40.84881397,-73.93466031,noise 40.676882,-74.01227571,noise 40.75413091,-73.949068,noise 40.73249706,-74.00183297,noise 40.83608517,-73.94195829,noise 40.77090216,-73.7352894,noise 40.69357912,-73.96452314,noise 40.68330849,-73.97640529,noise 40.69817381,-73.92454066,noise 40.75883508,-73.88692085,noise 40.78112593,-73.77235035,noise 40.74934479,-73.9769377,noise 40.6519488,-74.00807984,noise 40.73249706,-74.00183297,noise 40.77090216,-73.7352894,noise 40.76331469,-73.92819586,noise 40.67909726,-74.00988219,noise 40.76331469,-73.92819586,noise 40.78871681,-73.94780649,noise 40.76331469,-73.92819586,noise 40.67420666,-73.95691235,noise 40.64269519,-73.96977506,noise 40.82733455,-73.94665606,noise 40.71574278,-74.00824269,noise 40.85099248,-73.82742619,noise 40.67915413,-73.98342993,noise 40.74294904,-73.99646701,noise 40.76331469,-73.92819586,noise 40.83477457,-73.92526387,noise 40.74928842,-73.98454214,noise 40.6975713,-73.90756999,noise 40.86210781,-73.91928608,noise 40.74705161,-73.88665213,noise 40.81162556,-73.95756034,noise 40.69817381,-73.92454066,noise 40.72164379,-73.98913023,noise 40.8381204,-73.94479707,noise 40.74705161,-73.88665213,noise 40.72736163,-73.99956705,noise 40.85288754,-73.88862978,noise 40.77135461,-73.92478266,noise 40.85860258,-73.90457344,noise 40.67885012,-74.01115482,noise 40.85341501,-73.92702139,noise 40.73595507,-73.99047744,noise 40.87091201,-73.89153556,noise 40.612237,-73.98941817,noise 40.74816566,-73.89805487,noise 40.74436806,-74.00393365,noise 40.8112604,-73.95038619,noise 40.76365789,-73.97346363,noise 40.67551194,-73.97038027,noise 40.71562216,-73.99427522,noise 40.75550448,-73.97942609,noise 40.75575421,-73.97924193,noise 40.74919544,-73.8896621,noise 40.77624717,-73.91881968,noise 40.79492943,-73.94468481,noise 40.75732873,-73.92034792,noise 40.86637626,-73.92825812,noise 40.63148589,-74.01372648,noise 40.78311615,-73.95085853,noise 40.67504911,-73.95638546,noise 40.76240149,-73.97663717,noise 40.86422327,-73.9264383,noise 40.86422327,-73.9264383,noise 40.83022246,-73.94768359,noise 40.68668625,-73.9545858,noise 40.71522127,-73.99171409,noise 40.73908435,-74.00545255,noise 40.86422327,-73.9264383,noise 40.69822499,-73.80633492,noise 40.81453554,-73.95914444,noise 40.71948409,-73.99540404,noise 40.71948409,-73.99540404,noise 40.73434974,-74.00300933,noise 40.67171741,-73.9576025,noise 40.63597511,-73.97814065,noise 40.72959583,-74.00282511,noise 40.7581599,-73.9625937,noise 40.74390923,-73.98900029,noise 40.74705161,-73.88665213,noise 40.86165878,-73.92932247,noise 40.7612619,-73.9942713,noise 40.74408335,-73.97818096,noise 40.76579016,-73.98728192,noise 40.6613542,-73.9696801,noise 40.61714611,-73.94576145,noise 40.77096387,-73.96182474,noise 40.62545736,-73.93050203,noise 40.7222742,-73.9820483,noise 40.79365992,-73.97066719,noise 40.79365992,-73.97066719,noise 40.80729251,-73.94645539,noise 40.82869712,-73.89015177,noise 40.78311615,-73.95085853,noise 40.74705161,-73.88665213,noise 40.73344943,-74.00397631,noise 40.74811902,-73.8980766,noise 40.87816196,-73.86415332,noise 40.6936969,-73.80036912,noise 40.63556645,-74.02015141,noise 40.7985263,-73.9417021,noise 40.60220284,-74.16827555,noise 40.7612619,-73.9942713,noise 40.78311615,-73.95085853,noise 40.83436713,-73.91553615,noise 40.84778512,-73.88580819,noise 40.86286559,-73.92794738,noise 40.71107972,-74.00039678,noise 40.6716626,-73.95091902,noise 40.69822499,-73.80633492,noise 40.75992974,-73.98409929,noise 40.85705837,-73.90256212,noise 40.71010746,-73.84870075,noise 40.74734137,-73.95130356,noise 40.85659934,-73.92778065,noise 40.73199094,-73.98410956,noise 40.85655859,-73.90227366,noise 40.87148463,-73.86935196,noise 40.7572323,-73.98979219,noise 40.83320462,-73.94480477,noise 40.76058323,-73.98592204,noise 40.70801379,-73.9643279,noise 40.72664051,-73.89414076,noise 40.84854504,-73.90678188,noise 40.73051434,-73.98470164,noise 40.71789448,-73.98947355,noise 40.72266259,-73.9979797,noise 40.70995727,-73.9387064,noise 40.83695823,-73.84646439,noise 40.8006462,-73.95631401,noise 40.80578479,-73.95065396,noise 40.86168523,-73.90839031,noise 40.86292586,-73.92776655,noise 40.66812443,-73.9171453,noise 40.6364104,-74.16507585,noise 40.71121192,-73.96593854,noise 40.86210781,-73.91928608,noise 40.79968413,-73.94083424,noise 40.59457757,-73.97535281,noise 40.79960131,-73.93990607,noise 40.84599022,-73.84788568,noise 40.76331469,-73.92819586,noise 40.79961505,-73.93994217,noise 40.72308118,-73.82672561,noise 40.68983099,-73.86337592,noise 40.67324261,-73.8739113,noise 40.73540013,-73.98565674,noise 40.68261354,-73.99323967,noise 40.82416166,-73.95297806,noise 40.67987442,-73.97471558,noise 40.8450284,-73.78951296,noise 40.82880488,-73.89385175,noise 40.86592029,-73.92770907,noise 40.68082671,-73.91270207,noise 40.76508175,-73.98499694,noise 40.64459499,-73.90172649,noise 40.80911343,-73.95565823,noise 40.59808125,-74.06871688,noise 40.67350675,-73.95693444,noise 40.75561548,-73.98803824,noise 40.84854504,-73.90678188,noise 40.76331469,-73.92819586,noise 40.86194438,-73.89372656,noise 40.81563029,-73.89693997,noise 40.72674117,-73.99406501,noise 40.76331469,-73.92819586,noise 40.81323338,-73.90907476,noise 40.6364104,-74.16507585,noise 40.74446965,-73.85553008,noise 40.64870704,-74.01024886,noise 40.64870704,-74.01024886,noise 40.84854504,-73.90678188,noise 40.73653149,-73.9907516,noise 40.84854504,-73.90678188,noise 40.68266295,-73.99320721,noise 40.74231727,-73.98900777,noise 40.82599151,-73.8968372,noise 40.7170331,-73.95643735,noise 40.71202671,-73.9565813,noise 40.82272816,-73.93955278,noise 40.7871634,-73.97168118,noise 40.58989,-73.80747002,noise 40.81342314,-73.82584014,noise 40.82208802,-73.89033972,noise 40.82862812,-73.94261883,noise 40.7113923,-74.00859925,noise 40.7113923,-74.00859925,noise 40.71562216,-73.99427522,noise 40.8138276,-73.82467581,noise 40.7113923,-74.00859925,noise 40.79295236,-73.97303302,noise 40.71562216,-73.99427522,noise 40.8759857,-73.85103891,noise 40.64200351,-73.96069141,noise 40.63597511,-73.97814065,noise 40.80072787,-73.95458024,noise 40.63555239,-73.97802189,noise 40.72349367,-73.98825325,noise 40.71107972,-74.00039678,noise 40.73444309,-74.00171756,noise 40.68187917,-73.7660803,noise 40.86592029,-73.92770907,noise 40.7205353,-73.99466441,noise 40.72664051,-73.89414076,noise 40.72349367,-73.98825325,noise 40.82798856,-73.9236274,noise 40.72349367,-73.98825325,noise 40.67633971,-73.97736673,noise 40.5889959,-73.81628654,noise 40.83337398,-73.91614451,noise 40.63523221,-73.91892277,noise 40.69726627,-73.96765506,noise 40.74486372,-73.86356621,noise 40.58124223,-74.09843949,noise 40.71750776,-73.95594283,noise 40.69726627,-73.96765506,noise 40.7235816,-73.98916238,noise 40.69496964,-73.93168813,noise 40.72354087,-73.99614695,noise 40.71077065,-73.96815349,noise 40.8605242,-73.92768963,noise 40.63597511,-73.97814065,noise 40.75676421,-73.96715332,noise 40.6218893,-74.03171405,noise 40.72082574,-73.98796512,noise 40.73680019,-73.98774572,noise 40.66957638,-73.9573335,noise 40.66141225,-73.92334234,noise 40.66957638,-73.9573335,noise 40.80294945,-73.96567488,noise 40.74033035,-73.9924796,noise 40.8221488,-73.94456825,noise 40.85583845,-73.8834266,noise 40.72674117,-73.99406501,noise 40.75846113,-73.98286876,noise 40.76550199,-73.98746608,noise 40.71149506,-73.91785249,noise 40.73963051,-74.00633309,noise 40.89508604,-73.85983254,noise 40.72663962,-73.99412996,noise 40.77303423,-73.95642599,noise 40.74294904,-73.99646701,noise 40.74311921,-73.99635513,noise 40.84501467,-73.78950938,noise 40.84502282,-73.78946599,noise 40.69726627,-73.96765506,noise 40.72618639,-73.98942894,noise 40.84501467,-73.78950938,noise 40.84501467,-73.78950938,noise 40.72933786,-74.0010319,noise 40.72581057,-73.99199058,noise 40.7170331,-73.95643735,noise 40.72951901,-73.99981238,noise 40.7170331,-73.95643735,noise 40.79984321,-73.95245707,noise 40.68983865,-73.94519749,noise 40.65972716,-73.98791847,noise 40.69024077,-73.94818647,noise 40.73989692,-74.00075059,noise 40.6716626,-73.95091902,noise 40.86111875,-73.92603322,noise 40.83303149,-73.9443532,noise 40.79751485,-73.93901585,noise 40.63533928,-73.91895506,noise 40.78311615,-73.95085853,noise 40.80301462,-73.94895835,noise 40.81162556,-73.95756034,noise 40.71562216,-73.99427522,noise 40.73141011,-73.99697276,noise 40.7415488,-73.98957446,noise 40.70230473,-73.90938474,noise 40.78311615,-73.95085853,noise 40.67444808,-73.90944062,noise 40.75635718,-73.82577277,noise 40.6879651,-73.96150447,noise 40.71562216,-73.99427522,noise 40.71562216,-73.99427522,noise 40.71562216,-73.99427522,noise 40.64657743,-74.00520355,noise 40.6924802,-73.92731654,noise 40.70963675,-73.83002488,noise 40.7540214,-73.99956687,noise 40.77850171,-73.95632493,noise 40.75546118,-73.88629853,noise 40.90127661,-73.85208191,noise 40.75484099,-73.98411855,noise 40.75604878,-73.98489069,noise 40.80930514,-73.94808295,noise 40.63555239,-73.97802189,noise 40.72516529,-73.98886268,noise 40.71077065,-73.96815349,noise 40.74705161,-73.88665213,noise 40.74883018,-73.98551309,noise 40.64269519,-73.96977506,noise 40.74744052,-73.88578891,noise 40.67885012,-74.01115482,noise 40.74705161,-73.88665213,noise 40.75609656,-73.8769236,noise 40.67892423,-74.01105389,noise 40.82712696,-73.88712277,noise 40.66442612,-73.98695161,noise 40.78311615,-73.95085853,noise 40.6471319,-74.00462341,noise 40.68019235,-74.0107188,noise 40.66263769,-73.77405233,noise 40.86837463,-73.92432221,noise 40.83045842,-73.94749912,noise 40.79155859,-73.93864933,noise 40.78508239,-73.94694991,noise 40.78435341,-73.94942043,noise 40.78869541,-73.9378611,noise 40.78423707,-73.94706974,noise 40.78423707,-73.94706974,noise 40.79483376,-73.92169712,noise 40.78423707,-73.94706974,noise 40.83457572,-73.94224148,noise 40.82000567,-73.95887372,noise 40.82000567,-73.95887372,noise 40.75413091,-73.949068,noise 40.8635725,-73.92601242,noise 40.86613852,-73.92558294,noise 40.74934479,-73.9769377,noise 40.82000567,-73.95887372,noise 40.68879725,-73.923895,noise 40.70427792,-73.93300946,noise 40.75655776,-73.84513732,noise 40.86613852,-73.92558294,noise 40.76392999,-73.81352977,noise 40.7827225,-73.91951591,noise 40.75944996,-73.84255329,noise 40.69494765,-73.93164488,noise 40.7235816,-73.98916238,noise 40.7235816,-73.98916238,noise 40.86613852,-73.92558294,noise 40.86717867,-73.917389,noise 40.84357175,-73.94002537,noise 40.69496964,-73.93168813,noise 40.84361298,-73.94013015,noise 40.78166424,-73.81897948,noise 40.68990886,-73.90877056,noise 40.82310359,-73.92457242,noise 40.86813967,-73.93041833,noise 40.65752874,-73.95521836,noise 40.82310359,-73.92457242,noise 40.86633485,-73.92788216,noise 40.87224959,-73.91945817,noise 40.69959035,-73.94423377,noise 40.62585621,-74.07678614,noise 40.84357175,-73.94002537,noise 40.71353092,-73.78824366,noise 40.72617622,-73.86488527,noise 40.84679726,-73.93581167,noise 40.62585621,-74.07678614,noise 40.62585621,-74.07678614,noise 40.84182769,-73.93782232,noise 40.85934499,-73.89355718,noise 40.7212143,-73.97948719,noise 40.62587821,-74.07672492,noise 40.83327863,-73.93915653,noise 40.76005873,-73.9840054,noise 40.67328012,-73.95295105,noise 40.76334753,-73.98905845,noise 40.72110344,-73.99418095,noise 40.84413857,-73.93751656,noise 40.83411404,-73.94111801,noise 40.76334753,-73.98905845,noise 40.76367143,-73.98936885,noise 40.69262759,-73.95899196,noise 40.72110344,-73.99418095,noise 40.86681353,-73.92529656,noise 40.70521703,-73.9206843,noise 40.72037147,-73.97845929,noise 40.68866995,-73.8754723,noise 40.82057145,-73.94640134,noise 40.6528825,-73.95697298,noise 40.87157067,-73.88858041,noise 40.66136641,-73.99796353,noise 40.69926969,-73.93002116,noise 40.68905609,-73.86972383,noise 40.70412492,-73.90991606,noise 40.70630593,-73.91957571,noise 40.70630593,-73.91957571,noise 40.71933181,-73.96013354,noise 40.82436881,-73.94954899,noise 40.75897464,-73.91899955,noise 40.69921152,-73.92073832,noise 40.68966527,-73.79285568,noise 40.82298935,-73.8678032,noise 40.64470794,-73.91994905,noise 40.56992873,-74.09106918,noise 40.63708146,-73.93504778,noise 40.83811767,-73.94483683,noise 40.80065073,-73.9365316,noise 40.71141876,-73.95312613,noise 40.61653312,-74.08698692,noise 40.77075354,-73.95694015,noise 40.84971554,-73.8839506,noise 40.7111325,-73.96654457,noise 40.82206054,-73.92040051,noise 40.7235816,-73.98916238,noise 40.69455946,-73.9065464,noise 40.71992609,-74.0002886,noise 40.82674247,-73.90854321,noise 40.7222742,-73.9820483,noise 40.83811767,-73.94483683,noise 40.71141876,-73.95312613,noise 40.84846022,-73.94030289,noise 40.86269808,-73.89554022,noise 40.66507458,-73.99656846,noise 40.81884287,-73.95415239,noise 40.61736965,-74.12362746,noise 40.85321491,-73.92745177,noise 40.67482164,-73.97635782,noise 40.70048069,-73.92652161,noise 40.82174875,-73.93533362,noise 40.7077233,-73.93922424,noise 40.74705161,-73.88665213,noise 40.68884496,-73.94501802,noise 40.68230634,-73.92894289,noise 40.82230077,-73.87299296,noise 40.72110344,-73.99418095,noise 40.8236241,-73.92307237,noise 40.69094284,-73.90776668,noise 40.70601326,-73.92104403,noise 40.64296607,-74.0219229,noise 40.86680884,-73.93099821,noise 40.8605242,-73.92768963,noise 40.71992609,-74.0002886,noise 40.72473084,-73.9043286,noise 40.6830379,-73.88911175,noise 40.85372346,-73.92869109,noise 40.84711145,-73.93818244,noise 40.83811767,-73.94483683,noise 40.66448197,-73.93389288,noise 40.70430345,-73.92979948,noise 40.67518658,-73.95699824,noise 40.71110869,-73.95333555,noise 40.83155116,-73.85939183,noise 40.82581949,-73.95301302,noise 40.84343866,-73.88982022,noise 40.71141876,-73.95312613,noise 40.82563293,-73.95321549,noise 40.83811767,-73.94483683,noise 40.71088367,-73.95346556,noise 40.73249706,-74.00183297,noise 40.67477412,-73.95503734,noise 40.70024639,-73.92088135,noise 40.72052443,-74.00207796,noise 40.81698493,-73.90507027,noise 40.72228696,-73.9574621,noise 40.69426876,-73.90684612,noise 40.71919324,-73.99984127,noise 40.67340775,-73.93346946,noise 40.64812985,-73.96065176,noise 40.71992609,-74.0002886,noise 40.70924866,-73.9556453,noise 40.69916619,-73.91491403,noise 40.87589768,-73.91246765,noise 40.83134437,-73.86088467,noise 40.74168098,-74.00298801,noise 40.68050665,-73.89139097,noise 40.7581599,-73.9625937,noise 40.82964818,-73.94630008,noise 40.67518658,-73.95699824,noise 40.86381074,-73.92104468,noise 40.69926611,-73.99423695,noise 40.86553576,-73.9272684,noise 40.7086008,-73.93767607,noise 40.71992609,-74.0002886,noise 40.83983219,-73.92391015,noise 40.83647622,-73.88510845,noise 40.58178594,-73.94807261,noise 40.69324206,-73.91368109,noise 40.82679217,-73.87393831,noise 40.87589768,-73.91246765,noise 40.71879472,-73.98901165,noise 40.7086008,-73.93767607,noise 40.86565753,-73.92888075,noise 40.7111325,-73.96654457,noise 40.67518658,-73.95699824,noise 40.67521683,-73.95714964,noise 40.65778597,-73.95324671,noise 40.67504911,-73.95638546,noise 40.82892541,-73.95039469,noise 40.67518658,-73.95699824,noise 40.80322395,-73.94459845,noise 40.8253477,-73.95375407,noise 40.6429496,-74.02189046,noise 40.78453714,-73.97359614,noise 40.67518658,-73.95699824,noise 40.76003182,-73.98851754,noise 40.79184235,-73.93555408,noise 40.74742033,-73.87685301,noise 40.71992609,-74.0002886,noise 40.76003182,-73.98851754,noise 40.58534289,-73.8097405,noise 40.70588897,-73.94296613,noise 40.70583161,-73.94352523,noise 40.70630593,-73.91957571,noise 40.7086008,-73.93767607,noise 40.72179252,-73.99985209,noise 40.6936723,-73.99482884,noise 40.79648206,-73.96304891,noise 40.73095218,-73.73291158,noise 40.82888174,-73.89385163,noise 40.72549793,-74.00211058,noise 40.84222972,-73.91795127,noise 40.70793407,-73.92027709,noise 40.76045412,-73.91527612,noise 40.63512814,-73.90162514,noise 40.87176835,-73.91815708,noise 40.80574747,-73.94697678,noise 40.72342524,-73.99027359,noise 40.69436954,-73.84501491,noise 40.87126009,-73.91747071,noise 40.80583802,-73.94690085,noise 40.84472814,-73.87836798,noise 40.87211558,-73.91627644,noise 40.70646226,-73.9194024,noise 40.80574747,-73.94697678,noise 40.70092485,-73.93013844,noise 40.66138727,-73.95361543,noise 40.83612678,-73.88986124,noise 40.83509471,-73.88696109,noise 40.64625884,-73.96346003,noise 40.83024257,-73.94968908,noise 40.76331469,-73.92819586,noise 40.82959223,-73.95005814,noise 40.70630593,-73.91957571,noise 40.72110344,-73.99418095,noise 40.83006694,-73.94976148,noise 40.82892541,-73.95039469,noise 40.65579043,-73.95303186,noise 40.68152493,-73.97922177,noise 40.87376639,-73.88574188,noise 40.72547597,-74.00214305,noise 40.86567167,-73.90307012,noise 40.72110344,-73.99418095,noise 40.82829707,-73.95085768,noise 40.82651641,-73.95244524,noise 40.81884287,-73.95415239,noise 40.71992609,-74.0002886,noise 40.67348811,-73.93479963,noise 40.82581949,-73.95301302,noise 40.80574747,-73.94697678,noise 40.8253477,-73.95375407,noise 40.80574747,-73.94697678,noise 40.74414557,-73.87406582,noise 40.70277711,-73.92938633,noise 40.72279663,-73.98959904,noise 40.82959223,-73.95005814,noise 40.78405747,-73.91710576,noise 40.82892541,-73.95039469,noise 40.72726152,-73.98265669,noise 40.80574747,-73.94697678,noise 40.74570096,-73.9839908,noise 40.59541366,-73.98501706,noise 40.69532292,-73.82284896,noise 40.82705969,-73.95201125,noise 40.59429113,-73.98576986,noise 40.74294904,-73.99646701,noise 40.82959223,-73.95005814,noise 40.81337978,-73.95146477,noise 40.69336548,-73.91356193,noise 40.83961793,-73.88972897,noise 40.70062134,-73.8130721,noise 40.70756214,-73.94071402,noise 40.70012066,-73.91396431,noise 40.74329317,-73.97988457,noise 40.59444487,-73.98601828,noise 40.59444487,-73.98601828,noise 40.85090599,-73.91451028,noise 40.8346953,-73.94543955,noise 40.6815201,-73.98326349,noise 40.68209912,-73.96033246,noise 40.72395539,-74.00071433,noise 40.70335161,-73.92635615,noise 40.71077065,-73.96815349,noise 40.71239152,-74.00684271,noise 40.83811767,-73.94483683,noise 40.66392491,-73.95054984,noise 40.6899175,-73.9958496,noise 40.73095218,-73.73291158,noise 40.75454927,-73.93029877,noise 40.78311615,-73.95085853,noise 40.76331469,-73.92819586,noise 40.85405749,-73.93186814,noise 40.67917513,-73.88541911,noise 40.6471319,-74.00462341,noise 40.74705161,-73.88665213,noise 40.68668747,-73.83746072,noise 40.6867476,-73.83727668,noise 40.73199094,-73.98410956,noise 40.75433495,-73.92992,noise 40.85465602,-73.93704036,noise 40.65245569,-73.93628336,noise 40.85524401,-73.89313719,noise 40.83303149,-73.9443532,noise 40.86156733,-73.92790902,noise 40.74244241,-73.98050554,noise 40.7186062,-73.81376841,noise 40.85702748,-73.92773319,noise 40.68187917,-73.7660803,noise 40.77674693,-73.92313375,noise 40.71590598,-73.95910029,noise 40.71475485,-73.94948046,noise 40.62469245,-73.92749483,noise 40.69844758,-73.91562901,noise 40.75546118,-73.88629853,noise 40.59047547,-73.96058132,noise 40.85198792,-73.93176905,noise 40.85556235,-73.90237634,noise 40.73960306,-74.00635835,noise 40.67928681,-73.96360417,noise 40.7581599,-73.9625937,noise 40.68935074,-73.81613264,noise 40.68348181,-73.96689015,noise 40.85198792,-73.93176905,noise 40.74700906,-73.97718753,noise 40.71894075,-73.95653712,noise 40.61536473,-73.94573768,noise 40.77085114,-73.91899955,noise 40.72349367,-73.98825325,noise 40.83733075,-73.94656854,noise 40.82107204,-73.95532147,noise 40.69707646,-73.80561339,noise 40.72349367,-73.98825325,noise 40.86924949,-73.91542314,noise 40.77620501,-73.90330506,noise 40.71522127,-73.99171409,noise 40.63906925,-73.95314452,noise 40.68706292,-73.95620453,noise 40.86940311,-73.91530725,noise 40.81816194,-73.91882274,noise 40.75533653,-73.8432452,noise 40.72279663,-73.98959904,noise 40.68348181,-73.96689015,noise 40.83045842,-73.94749912,noise 40.76346859,-73.99281632,noise 40.84106918,-73.93604127,noise 40.87772285,-73.87386344,noise 40.69622255,-73.93391551,noise 40.62075694,-74.02683617,noise 40.78884044,-73.94229921,noise 40.71268752,-73.96243887,noise 40.59536248,-74.00062654,noise 40.67904296,-73.8054244,noise 40.83280618,-73.94385832,noise 40.7596013,-73.87663918,noise 40.67462684,-73.87725059,noise 40.71531994,-73.98988518,noise 40.69976763,-73.8270603,noise 40.82674247,-73.90854321,noise 40.68272042,-73.96329223,noise 40.86385196,-73.92523119,noise 40.70873126,-73.95219021,noise 40.65662476,-73.96009532,noise 40.7296035,-73.98823774,noise 40.86954934,-73.91634837,noise 40.71461019,-73.96681698,noise 40.8589973,-73.93078218,noise 40.82009757,-73.95507645,noise 40.86440268,-73.92376635,noise 40.6837264,-73.96796089,noise 40.71326929,-73.96208143,noise 40.63733699,-73.93079592,noise 40.81921839,-73.95289484,noise 40.61250185,-74.06496072,noise 40.71461019,-73.96681698,noise 40.7235816,-73.98916238,noise 40.7378916,-73.71046402,noise 40.76609259,-73.86675371,noise 40.87157067,-73.88858041,noise 40.86440268,-73.92376635,noise 40.8180587,-73.9057877,noise 40.75911212,-73.84237722,noise 40.72488931,-73.97828105,noise 40.8423945,-73.93536415,noise 40.76449114,-73.98165065,noise 40.65662476,-73.96009532,noise 40.67215043,-73.94333024,noise 40.67462684,-73.87725059,noise 40.72349367,-73.98825325,noise 40.73945487,-74.00597582,noise 40.70258015,-73.90055904,noise 40.72104319,-73.95643113,noise 40.7909056,-73.93913025,noise 40.85173577,-73.92785823,noise 40.73941928,-74.0038648,noise 40.86385196,-73.92523119,noise 40.86940311,-73.91530725,noise 40.81921839,-73.95289484,noise 40.81542736,-73.89714621,noise 40.78884044,-73.94229921,noise 40.84967442,-73.9370993,noise 40.72527812,-73.99242358,noise 40.78884044,-73.94229921,noise 40.59574094,-73.97342234,noise 40.80340346,-73.94693892,noise 40.6815149,-73.8923664,noise 40.84021011,-73.8834576,noise 40.86168523,-73.90839031,noise 40.6870848,-73.95601341,noise 40.81246627,-73.95261423,noise 40.72114459,-73.99370114,noise 40.85205434,-73.82903921,noise 40.80189077,-73.96842414,noise 40.69417823,-73.90690755,noise 40.72349367,-73.98825325,noise 40.6870848,-73.95601341,noise 40.82511601,-73.92540118,noise 40.73433329,-74.00248252,noise 40.8192651,-73.95301403,noise 40.6820927,-73.92120575,noise 40.68555676,-73.84149102,noise 40.84466953,-73.9347692,noise 40.71534657,-73.88629843,noise 40.74320151,-74.00474556,noise 40.69338205,-73.96635514,noise 40.81921839,-73.95289484,noise 40.83045842,-73.94749912,noise 40.7562659,-73.97179177,noise 40.71703802,-73.9549475,noise 40.82605772,-73.89720927,noise 40.78529363,-73.96933478,noise 40.75911212,-73.84237722,noise 40.70281008,-73.929444,noise 40.67863637,-73.80520926,noise 40.81921839,-73.95289484,noise 40.86437703,-73.92653575,noise 40.65603461,-73.82859368,noise 40.72342524,-73.99027359,noise 40.85324303,-73.90903452,noise 40.77593675,-73.90093331,noise 40.79435688,-73.94136626,noise 40.74261621,-73.98669811,noise 40.86256277,-73.92650883,noise 40.69249038,-73.95197829,noise 40.72100987,-73.95542824,noise 40.79275979,-73.84842985,noise 40.76331469,-73.92819586,noise 40.79053037,-73.9462558,noise 40.80746263,-73.94074063,noise 40.74320151,-74.00474556,noise 40.7581599,-73.9625937,noise 40.72953107,-73.9804155,noise 40.66248862,-73.94877753,noise 40.78321964,-73.84677608,noise 40.79236783,-73.97345941,noise 40.79053037,-73.9462558,noise 40.83733075,-73.94656854,noise 40.85135053,-73.78858928,noise 40.76527581,-73.91791611,noise 40.85114171,-73.78846705,noise 40.75399381,-73.97418936,noise 40.72737169,-73.98544199,noise 40.67915413,-73.98342993,noise 40.69054604,-73.99543488,noise 40.85205434,-73.82903921,noise 40.87325631,-73.87554605,noise 40.86782618,-73.91705918,noise 40.58402528,-73.81471613,noise 40.67482164,-73.97635782,noise 40.85600418,-73.86665672,noise 40.69641847,-73.9041817,noise 40.83365292,-73.91854365,noise 40.76331469,-73.92819586,noise 40.81884287,-73.95415239,noise 40.66740131,-73.92327418,noise 40.63533928,-73.91895506,noise 40.70670043,-73.95291303,noise 40.74294904,-73.99646701,noise 40.64107637,-73.96247918,noise 40.68057626,-73.90491833,noise 40.68230634,-73.92894289,noise 40.72354087,-73.99614695,noise 40.78865088,-73.94766931,noise 40.76331469,-73.92819586,noise 40.79342001,-73.95117957,noise 40.71072834,-73.99660939,noise 40.67207837,-73.94194601,noise 40.82866045,-73.87823475,noise 40.80746263,-73.94074063,noise 40.70646226,-73.9194024,noise 40.78884044,-73.94229921,noise 40.83155116,-73.85939183,noise 40.86858473,-73.88331748,noise 40.84466953,-73.9347692,noise 40.68230634,-73.92894289,noise 40.83063921,-73.94671123,noise 40.76331469,-73.92819586,noise 40.63533928,-73.91895506,noise 40.87295923,-73.87493915,noise 40.82511601,-73.92540118,noise 40.80603558,-73.94677066,noise 40.80917917,-73.94288846,noise 40.71212547,-73.99873751,noise 40.73908435,-74.00545255,noise 40.78865088,-73.94766931,noise 40.80135906,-73.96187955,noise 40.70499369,-73.92323452,noise 40.72114459,-73.99370114,noise 40.79600328,-73.93540919,noise 40.79053037,-73.9462558,noise 40.64107637,-73.96247918,noise 40.82645797,-73.88786102,noise 40.78867286,-73.94771624,noise 40.64107637,-73.96247918,noise 40.80235884,-73.9494248,noise 40.87202666,-73.85659802,noise 40.82550086,-73.94617697,noise 40.82550086,-73.94617697,noise 40.82550086,-73.94617697,noise 40.67551815,-73.96333585,noise 40.64107637,-73.96247918,noise 40.82550086,-73.94617697,noise 40.78871681,-73.94780649,noise 40.64107637,-73.96247918,noise 40.70867525,-73.95630575,noise 40.71749685,-74.00536781,noise 40.70174758,-73.92059105,noise 40.71755754,-73.93876435,noise 40.80746263,-73.94074063,noise 40.86379315,-73.91941418,noise 40.72114459,-73.99370114,noise 40.73029441,-73.98223737,noise 40.5754516,-73.99538155,noise 40.66173132,-73.8874495,noise 40.62573627,-74.02559173,noise 40.82809878,-73.92020177,noise 40.79066041,-73.94853085,noise 40.80301462,-73.94895835,noise 40.5754516,-73.99538155,noise 40.64205782,-74.02042002,noise 40.78867286,-73.94771624,noise 40.65385069,-73.95509109,noise 40.68723335,-73.95690033,noise 40.68152493,-73.97922177,noise 40.79566249,-73.9346258,noise 40.80307499,-73.9489258,noise 40.66066522,-73.88088061,noise 40.65587277,-73.95303901,noise 40.70794955,-73.76229896,noise 40.80086993,-73.95292227,noise 40.75725742,-73.86929446,noise 40.80307499,-73.9489258,noise 40.70941105,-73.76291776,noise 40.78865088,-73.94766931,noise 40.86793266,-73.86906246,noise 40.7170331,-73.95643735,noise 40.80301462,-73.94895835,noise 40.75790747,-73.98929757,noise 40.83448306,-73.92439329,noise 40.68400462,-73.93227625,noise 40.66182741,-73.9942474,noise 40.65225598,-73.97258535,noise 40.84332542,-73.87064333,noise 40.68747746,-73.99826562,noise 40.72224762,-73.98889924,noise 40.66201889,-73.7585915,noise 40.84619212,-73.93845075,noise 40.87757057,-73.84773387,noise 40.62049264,-73.92705273,noise 40.79053037,-73.9462558,noise 40.62078087,-73.92708483,noise 40.67518658,-73.95699824,noise 40.65264027,-73.9726825,noise 40.76331469,-73.92819586,noise 40.79053037,-73.9462558,noise 40.67504911,-73.95638546,noise 40.67518658,-73.95699824,noise 40.68829839,-73.95708715,noise 40.83343626,-73.941433,noise 40.67518658,-73.95699824,noise 40.67518658,-73.95699824,noise 40.69372684,-73.84470268,noise 40.83169433,-73.94925435,noise 40.82959223,-73.95005814,noise 40.82959223,-73.95005814,noise 40.68085213,-73.97745533,noise 40.72228696,-73.9574621,noise 40.68809527,-73.95706204,noise 40.87302289,-73.91845926,noise 40.73332317,-74.00422166,noise 40.86865323,-73.8832089,noise 40.72288829,-73.97784156,noise 40.67931409,-73.98998438,noise 40.78867286,-73.94771624,noise 40.78867286,-73.94771624,noise 40.70070389,-74.01199158,noise 40.73413843,-73.99918452,noise 40.78867286,-73.94771624,noise 40.80746263,-73.94074063,noise 40.73356518,-73.97676997,noise 40.64646981,-74.01257642,noise 40.81566293,-73.90623545,noise 40.73595507,-73.99047744,noise 40.71406684,-73.95162366,noise 40.85882794,-73.86857789,noise 40.70917742,-73.95597358,noise 40.75676328,-73.9945424,noise 40.65778597,-73.95324671,noise 40.7428118,-73.99657889,noise 40.71662604,-73.96179814,noise 40.74294904,-73.99646701,noise 40.70775443,-73.94665797,noise 40.74361057,-73.99970047,noise 40.74494358,-73.85699426,noise 40.74294904,-73.99646701,noise 40.67219344,-73.98378494,noise 40.74311921,-73.99635513,noise 40.79123014,-73.94597354,noise 40.74294904,-73.99646701,noise 40.74294904,-73.99646701,noise 40.87868806,-73.86341094,noise 40.74705161,-73.88665213,noise 40.78586641,-73.95092872,noise 40.79988333,-73.93860193,noise 40.84626861,-73.89290222,noise 40.65377699,-73.95616511,noise 40.79912244,-73.9427779,noise 40.8005019,-73.94609966,noise 40.79123014,-73.94597354,noise 40.72453756,-73.97617422,noise 40.70381897,-73.94207345,noise 40.71077065,-73.96815349,noise 40.78311615,-73.95085853,noise 40.7612619,-73.9942713,noise 40.68019235,-74.0107188,noise 40.74238268,-73.87090067,noise 40.70324817,-73.90843131,noise 40.71085754,-73.96491072,noise 40.70383481,-73.93097214,noise 40.71299888,-73.96633081,noise 40.73758905,-73.87725007,noise 40.71522127,-73.99171409,noise 40.79502253,-73.9442369,noise 40.83045842,-73.94749912,noise 40.72349367,-73.98825325,noise 40.73908435,-74.00545255,noise 40.72488931,-73.97828105,noise 40.81914228,-73.93717874,noise 40.72349367,-73.98825325,noise 40.72488931,-73.97828105,noise 40.63415357,-74.0296338,noise 40.88923532,-73.90039556,noise 40.68187917,-73.7660803,noise 40.71670872,-73.98915629,noise 40.7581599,-73.9625937,noise 40.86232547,-73.92047162,noise 40.67349156,-73.98271754,noise 40.76227854,-73.92601303,noise 40.7195528,-74.00062049,noise 40.79904275,-73.94259015,noise 40.65662476,-73.96009532,noise 40.65662476,-73.96009532,noise 40.65662476,-73.96009532,noise 40.86437703,-73.92653575,noise 40.65662476,-73.96009532,noise 40.63597511,-73.97814065,noise 40.77761333,-73.97925678,noise 40.71765265,-73.95444927,noise 40.7235816,-73.98916238,noise 40.66248862,-73.94877753,noise 40.63597511,-73.97814065,noise 40.68236534,-73.8077727,noise 40.77425465,-73.90806289,noise 40.71121192,-73.96593854,noise 40.63597511,-73.97814065,noise 40.69742251,-73.93479065,noise 40.78536042,-73.97298193,noise 40.83053251,-73.9474557,noise 40.72349367,-73.98825325,noise 40.72114459,-73.99370114,noise 40.67444808,-73.90944062,noise 40.68241996,-73.80760669,noise 40.67444808,-73.90944062,noise 40.67444808,-73.90944062,noise 40.74705161,-73.88665213,noise 40.64107637,-73.96247918,noise 40.6807742,-73.96274888,noise 40.7581599,-73.9625937,noise 40.84191799,-73.93730541,noise 40.7581599,-73.9625937,noise 40.73249706,-74.00183297,noise 40.78871681,-73.94780649,noise 40.78867286,-73.94771624,noise 40.7246941,-73.97659267,noise 40.70586461,-74.00376907,noise 40.69077359,-73.99102118,noise 40.70386546,-73.9474293,noise 40.73249706,-74.00183297,noise 40.70852953,-74.00842575,noise 40.78311615,-73.95085853,noise 40.76749366,-73.9593177,noise 40.69119013,-73.82161227,noise 40.68230634,-73.92894289,noise 40.88597888,-73.844608,noise 40.75338229,-73.93917536,noise 40.78311615,-73.95085853,noise 40.69822499,-73.80633492,noise 40.83045842,-73.94749912,noise 40.76154468,-73.92445081,noise 40.86210383,-73.93000166,noise 40.76136314,-73.91596804,noise 40.63606328,-73.96787928,noise 40.776993,-73.97910533,noise 40.62343625,-74.02509733,noise 40.59959958,-73.98581555,noise 40.72363905,-73.98732243,noise 40.86318809,-73.92577785,noise 40.63597511,-73.97814065,noise 40.69163144,-73.91820871,noise 40.74390923,-73.98900029,noise 40.72349367,-73.98825325,noise 40.68220447,-73.93787741,noise 40.86318809,-73.92577785,noise 40.86281834,-73.90782477,noise 40.67462684,-73.87725059,noise 40.86437703,-73.92653575,noise 40.71077065,-73.96815349,noise 40.70512877,-74.00842893,noise 40.71077065,-73.96815349,noise 40.72568792,-73.9776891,noise 40.80639116,-73.9650807,noise 40.76730974,-73.98014086,noise 40.72974957,-73.99961394,noise 40.75644863,-73.96738087,noise 40.71725826,-73.94990062,noise 40.65181872,-73.96029281,noise 40.73209906,-74.00226233,noise 40.75846113,-73.98286876,noise 40.62863721,-74.08003528,noise 40.71838626,-73.99777781,noise 40.69268155,-73.76963044,noise 40.67515869,-74.00746618,noise 40.67349156,-73.98271754,noise 40.71692886,-73.94984676,noise 40.71725826,-73.94990062,noise 40.75851818,-73.967434,noise 40.84604759,-73.94024,noise 40.67524607,-74.01268639,noise 40.73029441,-73.98223737,noise 40.71620379,-73.99033597,noise 40.81555074,-73.89699428,noise 40.84546857,-73.94046823,noise 40.84604759,-73.94024,noise 40.7276114,-74.00127,noise 40.84604759,-73.94024,noise 40.70544719,-74.00800698,noise 40.71620379,-73.99033597,noise 40.64898704,-74.00995701,noise 40.69347455,-73.73389112,noise 40.63322848,-73.9699739,noise 40.78311615,-73.95085853,noise 40.67444808,-73.90944062,noise 40.67444808,-73.90944062,noise 40.78311615,-73.95085853,noise 40.68469252,-73.89443451,noise 40.60026868,-74.12941872,noise 40.75962609,-73.99547346,noise 40.74723744,-73.89150594,noise 40.72345029,-74.00382779,noise 40.72273884,-73.9880261,noise 40.76334753,-73.98905845,noise 40.74113162,-73.98987044,noise 40.7415488,-73.98957446,noise 40.73859931,-73.87743225,noise 40.69363001,-73.98309096,noise 40.7415488,-73.98957446,noise 40.76516846,-73.81906763,noise 40.74113162,-73.98987044,noise 40.75603139,-73.97902528,noise 40.68209912,-73.96033246,noise 40.74014933,-73.99480719,noise 40.63119765,-74.01402544,noise 40.74466035,-73.95272381,noise 40.75546118,-73.88629853,noise 40.59959958,-73.98581555,noise 40.68959089,-73.82582823,noise 40.67984155,-73.85133644,noise 40.67695472,-73.77139004,noise 40.71775427,-73.95461514,noise 40.82238679,-73.91986177,noise 40.86156733,-73.92790902,noise 40.72201471,-73.9944298,noise 40.82000567,-73.95887372,noise 40.72349367,-73.98825325,noise 40.71822689,-73.8151403,noise 40.67607304,-73.95672368,noise 40.71142394,-73.95953228,noise 40.66090142,-73.9535545,noise 40.71961867,-73.99945166,noise 40.75624515,-73.92120466,noise 40.8130239,-73.94163521,noise 40.64954369,-73.83456011,noise 40.63597511,-73.97814065,noise 40.66820407,-73.9506476,noise 40.69009815,-73.82548074,noise 40.7640329,-73.98247023,noise 40.84095829,-73.92097061,noise 40.71387984,-73.95769833,noise 40.68230634,-73.92894289,noise 40.6613542,-73.9696801,noise 40.64511007,-73.97988174,noise 40.63084804,-74.14796358,noise 40.83627203,-73.8896261,noise 40.77152041,-73.92651543,noise 40.76058323,-73.98592204,noise 40.723084,-73.98267582,noise 40.71688453,-73.99085533,noise 40.71688453,-73.99085533,noise 40.90141806,-73.84689427,noise 40.67515869,-74.00746618,noise 40.67432708,-74.0066225,noise 40.70621113,-73.93959712,noise 40.88260252,-73.88395468,noise 40.70670308,-73.93570852,noise 40.86874844,-73.92102435,noise 40.77090216,-73.7352894,noise 40.71077065,-73.96815349,noise 40.53540268,-74.24056981,noise 40.6536951,-73.95736168,noise 40.71749685,-74.00536781,noise 40.77425465,-73.90806289,noise 40.58411122,-73.93298959,noise 40.73637802,-73.99452963,noise 40.6674138,-73.9034051,noise 40.6514054,-73.97386506,noise 40.69339305,-73.96643447,noise 40.83627203,-73.8896261,noise 40.80614827,-73.95348927,noise 40.85670443,-73.92906385,noise 40.67702663,-73.95267802,noise 40.73321576,-73.98992216,noise 40.79465105,-73.97178273,noise 40.77152699,-73.90883204,noise 40.58412211,-73.93284557,noise 40.79497237,-73.97254825,noise 40.67444808,-73.90944062,noise 40.76233478,-73.98980224,noise 40.90107591,-73.89728859,noise 40.76334753,-73.98905845,noise 40.76233478,-73.98980224,noise 40.64838046,-74.00968664,noise 40.87325631,-73.87554605,noise 40.76334753,-73.98905845,noise 40.65988644,-73.96270287,noise 40.67987442,-73.97471558,noise 40.65778597,-73.95324671,noise 40.65587277,-73.95303901,noise 40.87341038,-73.87588565,noise 40.69863692,-73.93697132,noise 40.81278611,-73.94363678,noise 40.6837913,-73.76694975,noise 40.74251382,-73.90733081,noise 40.82819609,-73.90385101,noise 40.85141102,-73.78864692,noise 40.86394112,-73.86840148,noise 40.67461832,-73.9753737,noise 40.63520686,-74.02028461,noise 40.76302484,-73.97813866,noise 40.69425145,-73.84496831,noise 40.76508547,-73.97487095,noise 40.86631583,-73.92818588,noise 40.76105786,-73.98433004,noise 40.75575421,-73.97924193,noise 40.63927073,-73.94929979,noise 40.7415488,-73.98957446,noise 40.85898567,-73.89381082,noise 40.75444761,-73.93013645,noise 40.84682457,-73.93556225,noise 40.68209912,-73.96033246,noise 40.64277051,-73.95642458,noise 40.72632398,-74.00568601,noise 40.68251643,-73.9078216,noise 40.74524321,-73.90872005,noise 40.63597511,-73.97814065,noise 40.84682457,-73.93556225,noise 40.85198792,-73.93176905,noise 40.85198792,-73.93176905,noise 40.85198792,-73.93176905,noise 40.58413031,-73.93277355,noise 40.6634478,-73.94553637,noise 40.68187917,-73.7660803,noise 40.58413031,-73.93277355,noise 40.61023813,-73.98370275,noise 40.72241571,-73.95001219,noise 40.73199094,-73.98410956,noise 40.83022246,-73.94768359,noise 40.70614247,-73.83176505,noise 40.63902032,-73.91934694,noise 40.6717483,-73.95237534,noise 40.85035422,-73.94060482,noise 40.75676421,-73.96715332,noise 40.7235816,-73.98916238,noise 40.85035422,-73.94060482,noise 40.68966527,-73.79285568,noise 40.82052911,-73.93855036,noise 40.84727468,-73.90732221,noise 40.7235816,-73.98916238,noise 40.83856918,-73.94204647,noise 40.64591783,-73.96144584,noise 40.83209897,-73.86071687,noise 40.63249702,-73.93392817,noise 40.80151671,-73.95059572,noise 40.74033035,-73.9924796,noise 40.79904275,-73.94259015,noise 40.76323255,-73.99285606,noise 40.76323255,-73.99285606,noise 40.63618579,-74.02511293,noise 40.77200494,-73.93343594,noise 40.80133264,-73.9501877,noise 40.74194871,-73.98275391,noise 40.86749071,-73.89597017,noise 40.69726627,-73.96765506,noise 40.80723021,-73.94825434,noise 40.76323255,-73.99285606,noise 40.67515869,-74.00746618,noise 40.79236783,-73.97345941,noise 40.69726627,-73.96765506,noise 40.66438212,-73.93209793,noise 40.83322564,-73.94287143,noise 40.8676196,-73.89584343,noise 40.67178977,-73.95310351,noise 40.86703815,-73.89631435,noise 40.67429883,-73.80637195,noise 40.82625647,-73.9016497,noise 40.74102762,-73.99416117,noise 40.83337398,-73.91614451,noise 40.81726755,-73.9422565,noise 40.676882,-74.01227571,noise 40.80766707,-73.94927989,noise 40.80766707,-73.94927989,noise 40.75081822,-74.00376079,noise 40.75081822,-74.00376079,noise 40.82423254,-73.92591886,noise 40.81958323,-73.81756483,noise 40.79360683,-73.95160198,noise 40.69726627,-73.96765506,noise 40.81955851,-73.81755045,noise 40.72959583,-74.00282511,noise 40.65467493,-73.91703947,noise 40.81955851,-73.81755045,noise 40.72933786,-74.0010319,noise 40.8112604,-73.95038619,noise 40.8266449,-73.90333294,noise 40.81853793,-73.90782468,noise 40.79018504,-73.94735031,noise 40.8266449,-73.90333294,noise 40.66905434,-73.99302836,noise 40.82959223,-73.95005814,noise 40.85862692,-73.8656284,noise 40.86113519,-73.92598259,noise 40.86094677,-73.92750841,noise 40.71887029,-73.76328454,noise 40.83512351,-73.94551147,noise 40.87588669,-73.9124532,noise 40.76190888,-73.96158085,noise 40.85371678,-73.92680056,noise 40.81162556,-73.95756034,noise 40.68478983,-73.92381304,noise 40.67470858,-73.87668084,noise 40.73483798,-73.99075544,noise 40.85311597,-73.92723861,noise 40.83419292,-73.90018164,noise 40.63081904,-74.01262391,noise 40.7541746,-73.88985237,noise 40.76372078,-73.98876598,noise 40.75546118,-73.88629853,noise 40.83108436,-73.947813,noise 40.73971565,-74.00534434,noise 40.8266449,-73.90333294,noise 40.70963675,-73.83002488,noise 40.79904275,-73.94259015,noise 40.69354574,-73.9239581,noise 40.86437703,-73.92653575,noise 40.85286405,-73.88705379,noise 40.68272042,-73.96329223,noise 40.73853272,-74.00387196,noise 40.70574915,-73.92015708,noise 40.75624134,-73.87886163,noise 40.63975482,-73.94549085,noise 40.80189077,-73.96842414,noise 40.8692067,-73.9169743,noise 40.86931906,-73.91673192,noise 40.67890459,-73.82344419,noise 40.74705161,-73.88665213,noise 40.8692067,-73.9169743,noise 40.76550199,-73.98746608,noise 40.8692067,-73.9169743,noise 40.8692067,-73.9169743,noise 40.78722638,-73.95416333,noise 40.8692067,-73.9169743,noise 40.80133264,-73.9501877,noise 40.76688601,-73.82395102,noise 40.6471319,-74.00462341,noise 40.85930241,-73.89807612,noise 40.85064236,-73.94049974,noise 40.6806071,-73.94337714,noise 40.83024257,-73.94968908,noise 40.85064236,-73.94049974,noise 40.74466035,-73.95272381,noise 40.83024257,-73.94968908,noise 40.83508938,-73.94889038,noise 40.83226807,-73.9494635,noise 40.72543203,-73.99677099,noise 40.73561763,-73.99271107,noise 40.72543203,-73.99677099,noise 40.78520172,-73.97515586,noise 40.73588925,-73.99120995,noise 40.68651009,-73.85464605,noise 40.73487375,-73.99199309,noise 40.75098845,-74.00177934,noise 40.81342227,-73.9371444,noise 40.78311615,-73.95085853,noise 40.67426428,-73.87700972,noise 40.83348848,-73.94157751,noise 40.8598744,-73.89321652,noise 40.63709769,-73.93463702,noise 40.66820407,-73.9506476,noise 40.84182769,-73.93782232,noise 40.82130491,-73.95420128,noise 40.73000207,-73.95640362,noise 40.61382186,-73.95119566,noise 40.86437703,-73.92653575,noise 40.86613852,-73.92558294,noise 40.86613852,-73.92558294,noise 40.68326742,-73.96586628,noise 40.63874586,-73.91556037,noise 40.77075354,-73.95694015,noise 40.68216496,-73.88900864,noise 40.67915413,-73.98342993,noise 40.67959253,-73.93487298,noise 40.86381074,-73.92104468,noise 40.71678366,-73.96552085,noise 40.75337044,-73.8530095,noise 40.82290375,-73.89688173,noise 40.85306338,-73.93099439,noise 40.83037632,-73.94802676,noise 40.64289406,-73.90270191,noise 40.83022246,-73.94768359,noise 40.72003253,-73.98823583,noise 40.69453318,-73.9189372,noise 40.7221796,-73.94986445,noise 40.87892449,-73.90478656,noise 40.71795041,-73.95792662,noise 40.71071783,-73.95757048,noise 40.71992609,-74.0002886,noise 40.84209808,-73.92623146,noise 40.67518658,-73.95699824,noise 40.67518658,-73.95699824,noise 40.67771483,-73.95091456,noise 40.73409421,-74.00849032,noise 40.83945324,-73.91207831,noise 40.81884287,-73.95415239,noise 40.8507458,-73.90617154,noise 40.75006808,-73.88119355,noise 40.83037632,-73.94802676,noise 40.84339049,-73.9067891,noise 40.72228696,-73.9574621,noise 40.79916755,-73.93001006,noise 40.85608577,-73.89518188,noise 40.71992609,-74.0002886,noise 40.84651623,-73.91320751,noise 40.62114141,-73.93810715,noise 40.67504911,-73.95638546,noise 40.79483376,-73.92169712,noise 40.67337174,-73.7561819,noise 40.82138178,-73.91173727,noise 40.59193341,-74.06785001,noise 40.86381074,-73.92104468,noise 40.68789023,-73.90723725,noise 40.81346151,-73.90604709,noise 40.86592029,-73.92770907,noise 40.78878549,-73.94793644,noise 40.84344388,-73.91186341,noise 40.67518658,-73.95699824,noise 40.78867286,-73.94771624,noise 40.78871681,-73.94780649,noise 40.87891388,-73.87371292,noise 40.78905477,-73.94860432,noise 40.68194587,-73.90487672,noise 40.70102768,-73.94811678,noise 40.85035422,-73.94060482,noise 40.78869209,-73.94776317,noise 40.69639487,-73.91998796,noise 40.79842081,-73.92972551,noise 40.80071126,-73.9319697,noise 40.83435759,-73.9255968,noise 40.70548141,-73.80265659,noise 40.71726933,-73.96499753,noise 40.71160986,-73.95753384,noise 40.72774509,-73.94213564,noise 40.70999601,-73.95771883,noise 40.79773122,-73.94939943,noise 40.86618344,-73.91893043,noise 40.59444487,-73.98601828,noise 40.74705161,-73.88665213,noise 40.73211217,-73.73245951,noise 40.68406402,-73.86321107,noise 40.70862655,-73.94512433,noise 40.89579369,-73.85944402,noise 40.65587277,-73.95303901,noise 40.76550199,-73.98746608,noise 40.68135181,-73.86289574,noise 40.80765399,-73.93924858,noise 40.85035422,-73.94060482,noise 40.8505101,-73.93448514,noise 40.76011649,-73.98483562,noise 40.84462278,-73.93461383,noise 40.84651623,-73.91320751,noise 40.79648206,-73.96304891,noise 40.71992609,-74.0002886,noise 40.73595507,-73.99047744,noise 40.66460568,-73.97684445,noise 40.65843913,-73.90432275,noise 40.70181691,-73.81068842,noise 40.74294904,-73.99646701,noise 40.72237268,-73.91064539,noise 40.7428118,-73.99657889,noise 40.74294904,-73.99646701,noise 40.74294904,-73.99646701,noise 40.79480852,-73.94440682,noise 40.71829162,-73.98247866,noise 40.70381897,-73.94207345,noise 40.74754223,-73.88875536,noise 40.70381897,-73.94207345,noise 40.70230473,-73.90938474,noise 40.76788911,-73.98151253,noise 40.72234313,-73.9841768,noise 40.70381897,-73.94207345,noise 40.71515842,-74.00211386,noise 40.70711579,-74.01067624,noise 40.86267932,-73.90903969,noise 40.75873427,-73.86009782,noise 40.86642675,-73.92149351,noise 40.68209912,-73.96033246,noise 40.66940234,-73.94219707,noise 40.63148589,-74.01372648,noise 40.58188951,-73.95994557,noise 40.84576469,-73.9102917,noise 40.80090857,-73.96081068,noise 40.84576469,-73.9102917,noise 40.80090857,-73.96081068,noise 40.84576469,-73.9102917,noise 40.87466152,-73.91108799,noise 40.63995384,-73.95508242,noise 40.58188951,-73.95994557,noise 40.71107972,-74.00039678,noise 40.66917237,-73.93804455,noise 40.84592382,-73.88822217,noise 40.76372078,-73.98876598,noise 40.80072787,-73.95458024,noise 40.84063304,-73.91517763,noise 40.76330097,-73.92820671,noise 40.84106918,-73.93604127,noise 40.67984155,-73.85133644,noise 40.67725097,-73.95784775,noise 40.62075694,-74.02683617,noise 40.67634314,-73.91092698,noise 40.82830508,-73.92085917,noise 40.75074961,-74.00364168,noise 40.70273581,-73.93378282,noise 40.69440359,-73.93064653,noise 40.65946155,-73.94973138,noise 40.72283569,-73.95686648,noise 40.72349367,-73.98825325,noise 40.69803473,-73.93033261,noise 40.83450634,-73.89764793,noise 40.58413031,-73.93277355,noise 40.7235816,-73.98916238,noise 40.75337044,-73.8530095,noise 40.81726755,-73.9422565,noise 40.79440912,-73.94153596,noise 40.7296035,-73.98823774,noise 40.71299888,-73.96633081,noise 40.75510246,-73.97320355,noise 40.84457605,-73.93449822,noise 40.82830508,-73.92085917,noise 40.72124619,-73.99457056,noise 40.71299888,-73.96633081,noise 40.71387984,-73.95769833,noise 40.86292586,-73.92776655,noise 40.83638014,-73.94457446,noise 40.76775427,-73.83192349,noise 40.78646091,-73.94839687,noise 40.65213268,-74.00838259,noise 40.64133791,-74.08682829,noise 40.85717578,-73.93239997,noise 40.76045523,-73.84305628,noise 40.6301397,-74.10879366,noise 40.83801723,-73.90450901,noise 40.86437703,-73.92653575,noise 40.85685917,-73.9307591,noise 40.63816785,-73.97641404,noise 40.72110344,-73.99418095,noise 40.71299888,-73.96633081,noise 40.64595269,-73.95197214,noise 40.82338947,-73.93923422,noise 40.71875652,-73.99166675,noise 40.81537693,-73.9379229,noise 40.64018175,-73.95530567,noise 40.73830682,-73.98559837,noise 40.87048828,-73.89042623,noise 40.83930621,-73.87730092,noise 40.82691633,-73.87203023,noise 40.76432553,-73.78532416,noise 40.79978541,-73.94029959,noise 40.75803956,-73.79561736,noise 40.73465366,-73.78184029,noise 40.86940311,-73.91530725,noise 40.79381749,-73.94401399,noise 40.71066973,-73.93653431,noise 40.78717249,-73.94998163,noise 40.82964818,-73.94630008,noise 40.78717249,-73.94998163,noise 40.83801723,-73.90450901,noise 40.78702964,-73.94968562,noise 40.8351065,-73.92499246,noise 40.83850425,-73.90597919,noise 40.73748845,-73.88345324,noise 40.62863721,-74.08003528,noise 40.84182769,-73.93782232,noise 40.69803473,-73.93033261,noise 40.84545288,-73.9047911,noise 40.69462168,-73.90882902,noise 40.86940311,-73.91530725,noise 40.86093855,-73.92753011,noise 40.85840628,-73.89060158,noise 40.67366867,-73.95687305,noise 40.70401797,-73.92538882,noise 40.86334402,-73.92931345,noise 40.78884044,-73.94229921,noise 40.69742251,-73.93479065,noise 40.78699941,-73.94961703,noise 40.78631421,-73.94018528,noise 40.63271322,-73.9488256,noise 40.82809878,-73.92020177,noise 40.67915413,-73.98342993,noise 40.84971554,-73.8839506,noise 40.85958312,-73.86652663,noise 40.71122368,-73.77298586,noise 40.78472571,-73.85035116,noise 40.61462824,-74.07938456,noise 40.67915413,-73.98342993,noise 40.76449114,-73.98165065,noise 40.78867286,-73.94771624,noise 40.67427182,-73.82551855,noise 40.71299888,-73.96633081,noise 40.81952339,-73.91145792,noise 40.84550891,-73.93888149,noise 40.83547604,-73.9156034,noise 40.85331763,-73.90289655,noise 40.69742251,-73.93479065,noise 40.84457605,-73.93449822,noise 40.66077533,-73.96144086,noise 40.83450977,-73.94208615,noise 40.64032402,-73.97103366,noise 40.71071783,-73.95757048,noise 40.83472211,-73.92068891,noise 40.73029441,-73.98223737,noise 40.67338343,-73.96564783,noise 40.85321491,-73.92745177,noise 40.72992594,-73.73185852,noise 40.83472211,-73.92068891,noise 40.74294904,-73.99646701,noise 40.82830508,-73.92085917,noise 40.71158055,-73.9357471,noise 40.70146764,-73.92903788,noise 40.58981601,-73.7902886,noise 40.87107464,-73.91914141,noise 40.77576533,-73.91298199,noise 40.77075354,-73.95694015,noise 40.68623121,-73.97421559,noise 40.68035203,-73.97476588,noise 40.76331469,-73.92819586,noise 40.76347787,-73.82999216,noise 40.80093054,-73.96086484,noise 40.83645791,-73.94088465,noise 40.76331469,-73.92819586,noise 40.65901112,-73.91625917,noise 40.84854504,-73.90678188,noise 40.70277711,-73.92938633,noise 40.78699941,-73.94961703,noise 40.67174824,-73.95222033,noise 40.68026692,-73.9746902,noise 40.76347787,-73.82999216,noise 40.67915413,-73.98342993,noise 40.76527581,-73.91791611,noise 40.86404894,-73.90234219,noise 40.76347787,-73.82999216,noise 40.67324533,-73.87388966,noise 40.65878679,-73.97701947,noise 40.83627203,-73.8896261,noise 40.76550199,-73.98746608,noise 40.66820407,-73.9506476,noise 40.85524879,-73.93203682,noise 40.87589768,-73.91246765,noise 40.69575363,-73.89408883,noise 40.87605944,-73.9122324,noise 40.75827804,-73.94283103,noise 40.68268743,-73.96313,noise 40.68138125,-74.00444551,noise 40.76331469,-73.92819586,noise 40.76331469,-73.92819586,noise 40.67444808,-73.90944062,noise 40.67192598,-73.93917755,noise 40.76272656,-73.9269872,noise 40.59788162,-73.9723268,noise 40.67444808,-73.90944062,noise 40.74345576,-73.86599061,noise 40.67444808,-73.90944062,noise 40.83819186,-73.94501385,noise 40.67504911,-73.95638546,noise 40.64296607,-74.0219229,noise 40.82809878,-73.92020177,noise 40.6939083,-73.99382271,noise 40.73249706,-74.00183297,noise 40.66455965,-73.93533462,noise 40.68035203,-73.97476588,noise 40.85840628,-73.89060158,noise 40.78535707,-73.85040029,noise 40.81543189,-73.93803484,noise 40.86659828,-73.89253685,noise 40.83922638,-73.87708061,noise 40.78867286,-73.94771624,noise 40.67973435,-73.97431184,noise 40.69386164,-73.99368208,noise 40.69360357,-73.99274451,noise 40.80276299,-73.94492031,noise 40.80256169,-73.94299166,noise 40.84768209,-73.91236382,noise 40.68194587,-73.90487672,noise 40.85064236,-73.94049974,noise 40.87589768,-73.91246765,noise 40.84388065,-73.91988647,noise 40.67518658,-73.95699824,noise 40.68403664,-73.86327242,noise 40.67219344,-73.98378494,noise 40.87172576,-73.86424602,noise 40.68413808,-73.87780277,noise 40.84731011,-73.93508468,noise 40.84635448,-73.93925661,noise 40.75873427,-73.86009782,noise 40.86865323,-73.8832089,noise 40.68067675,-73.91402906,noise 40.68424989,-73.86256528,noise 40.68419526,-73.86278173,noise 40.67221048,-73.92801276,noise 40.85004543,-73.88447776,noise 40.64277051,-73.95642458,noise 40.68406402,-73.86321107,noise 40.84366118,-73.92003492,noise 40.87137814,-73.88536633,noise 40.81569237,-73.94867768,noise 40.68651009,-73.85464605,noise 40.71446308,-73.98534381,noise 40.85064236,-73.94049974,noise 40.73595507,-73.99047744,noise 40.68026692,-73.9746902,noise 40.68404152,-73.80888921,noise 40.76847556,-73.8278133,noise 40.72953107,-73.9804155,noise 40.68035203,-73.97476588,noise 40.52337966,-74.21461062,noise 40.68717022,-73.95688595,noise 40.68026692,-73.9746902,noise 40.71375771,-73.98562172,noise 40.80322395,-73.94459845,noise 40.78947222,-73.94328816,noise 40.70775443,-73.94665797,noise 40.68035203,-73.97476588,noise 40.80322395,-73.94459845,noise 40.80322395,-73.94459845,noise 40.85331763,-73.90289655,noise 40.80322395,-73.94459845,noise 40.69386164,-73.99368208,noise 40.68510051,-73.95647624,noise 40.83111733,-73.94789609,noise 40.73141011,-73.99697276,noise 40.85331763,-73.90289655,noise 40.7642781,-73.97301575,noise 40.70381897,-73.94207345,noise 40.83819186,-73.94501385,noise 40.60648435,-74.00347175,noise 40.73595507,-73.99047744,noise 40.82788149,-73.9195444,noise 40.68747746,-73.99826562,noise 40.71495071,-73.95175288,noise 40.69411969,-73.99461965,noise 40.82849131,-73.94940133,noise 40.7205353,-73.99466441,noise 40.71169312,-73.93580832,noise 40.8351065,-73.92499246,noise 40.759412,-73.99561425,noise 40.85064236,-73.94049974,noise 40.75962609,-73.99547346,noise 40.84175838,-73.88370788,noise 40.6822862,-73.80804695,noise 40.58334921,-73.95144474,noise 40.74036616,-74.00523252,noise 40.83345625,-73.92824303,noise 40.80224019,-73.94224425,noise 40.68236534,-73.8077727,noise 40.82712696,-73.88712277,noise 40.68236534,-73.8077727,noise 40.84472814,-73.87836798,noise 40.73595507,-73.99047744,noise 40.6871362,-73.98538587,noise 40.72532531,-73.97621002,noise 40.78202252,-73.97172308,noise 40.80727702,-73.95518263,noise 40.69119387,-73.9977679,noise 40.87910982,-73.84324268,noise 40.759412,-73.99561425,noise 40.759412,-73.99561425,noise 40.80447239,-73.94375218,noise 40.70092485,-73.93013844,noise 40.68510051,-73.95647624,noise 40.87844402,-73.84410127,noise 40.66572954,-73.9536845,noise 40.87844402,-73.84410127,noise 40.76295376,-73.83195727,noise 40.76331469,-73.92819586,noise 40.87844402,-73.84410127,noise 40.72532531,-73.97621002,noise 40.70381897,-73.94207345,noise 40.80570748,-73.95632514,noise 40.57808888,-73.9723854,noise 40.68752755,-73.96669704,noise 40.69835079,-73.9110238,noise 40.68954341,-73.97114209,noise 40.70234976,-73.74292988,noise 40.79909392,-73.94065778,noise 40.63998673,-73.94841286,noise 40.63733699,-73.93079592,noise 40.63148589,-74.01372648,noise 40.63597511,-73.97814065,noise 40.83717789,-73.942597,noise 40.84443114,-73.9354959,noise 40.7470294,-73.78455343,noise 40.67324533,-73.87388966,noise 40.7158126,-73.95891637,noise 40.76720272,-73.92202563,noise 40.76408388,-73.83335146,noise 40.72488931,-73.97828105,noise 40.71590598,-73.95910029,noise 40.76413294,-73.83311308,noise 40.63721737,-73.93273449,noise 40.65164646,-73.93232352,noise 40.7909056,-73.93913025,noise 40.74678287,-73.89869939,noise 40.76876883,-73.82753095,noise 40.69726627,-73.96765506,noise 40.70149521,-73.92081135,noise 40.66815641,-73.93733176,noise 40.63955774,-74.01786099,noise 40.83519881,-73.91558568,noise 40.76162419,-73.82207339,noise 40.86256277,-73.92650883,noise 40.71830069,-73.98926425,noise 40.81726755,-73.9422565,noise 40.72756386,-73.78618943,noise 40.67934096,-73.88657253,noise 40.70273581,-73.93378282,noise 40.68272042,-73.96329223,noise 40.75655946,-73.98610698,noise 40.71942599,-73.9887013,noise 40.8532216,-73.90294729,noise 40.81713628,-73.86198376,noise 40.70273581,-73.93378282,noise 40.72349367,-73.98825325,noise 40.82382294,-73.94428864,noise 40.72349367,-73.98825325,noise 40.67934096,-73.88657253,noise 40.69324937,-73.97326808,noise 40.75577379,-73.88326243,noise 40.76330097,-73.92820671,noise 40.79435688,-73.94136626,noise 40.69109278,-73.82078676,noise 40.71758732,-73.95584538,noise 40.70499369,-73.92323452,noise 40.67325599,-73.98629016,noise 40.79434316,-73.94137711,noise 40.77029014,-73.81731718,noise 40.66031861,-73.9397504,noise 40.68723335,-73.95690033,noise 40.84182769,-73.93782232,noise 40.68310321,-73.93508588,noise 40.76305922,-73.98795749,noise 40.79434316,-73.94137711,noise 40.76265315,-73.98954228,noise 40.76103624,-73.9870157,noise 40.76335826,-73.98668314,noise 40.76434105,-73.9883363,noise 40.70499369,-73.92323452,noise 40.67928681,-73.96360417,noise 40.70963675,-73.83002488,noise 40.81423607,-73.94520344,noise 40.75870318,-73.83266826,noise 40.76593382,-73.82774045,noise 40.70273581,-73.93378282,noise 40.8678179,-73.91699411,noise 40.76610392,-73.82768947,noise 40.79440912,-73.94153596,noise 40.75803956,-73.79561736,noise 40.86179771,-73.90833231,noise 40.80174149,-73.96475806,noise 40.57692409,-73.95256175,noise 40.68272042,-73.96329223,noise 40.83155883,-73.86820897,noise 40.67934096,-73.88657253,noise 40.70277711,-73.92938633,noise 40.71147126,-73.93665258,noise 40.8112661,-73.95780983,noise 40.68272042,-73.96329223,noise 40.75911212,-73.84237722,noise 40.80927626,-73.944998,noise 40.80927626,-73.944998,noise 40.85331763,-73.90289655,noise 40.67934096,-73.88657253,noise 40.75356376,-73.79457716,noise 40.69726627,-73.96765506,noise 40.68723335,-73.95690033,noise 40.81709964,-73.86582425,noise 40.82103631,-73.95519143,noise 40.63597511,-73.97814065,noise 40.74578928,-73.98802918,noise 40.65074897,-73.96242689,noise 40.7112241,-73.96105819,noise 40.8245224,-73.93804444,noise 40.67984155,-73.85133644,noise 40.71177784,-73.95193553,noise 40.84443114,-73.9354959,noise 40.74514979,-73.98838296,noise 40.79589753,-73.94892047,noise 40.63533928,-73.91895506,noise 40.58488412,-73.92664159,noise 40.75803956,-73.79561736,noise 40.63189855,-74.09715597,noise 40.70772875,-73.93914127,noise 40.83638014,-73.94457446,noise 40.83770759,-73.83458731,noise 40.82511601,-73.92540118,noise 40.70499369,-73.92323452,noise 40.82667466,-73.82223549,noise 40.7671072,-73.98378349,noise 40.6658646,-73.98904921,noise 40.70512877,-74.00842893,noise 40.64575255,-73.9810563,noise 40.83856005,-73.9458556,noise 40.68723335,-73.95690033,noise 40.76593382,-73.82774045,noise 40.79984321,-73.95245707,noise 40.80085347,-73.95292951,noise 40.65778597,-73.95324671,noise 40.82048158,-73.81808625,noise 40.66818137,-73.88179,noise 40.70851675,-73.94511721,noise 40.7508539,-74.00389072,noise 40.67984155,-73.85133644,noise 40.88664289,-73.8594272,noise 40.83578868,-73.91159167,noise 40.68326742,-73.96586628,noise 40.70775443,-73.94665797,noise 40.64575255,-73.9810563,noise 40.77075354,-73.95694015,noise 40.80746263,-73.94074063,noise 40.87981245,-73.89686218,noise 40.67774235,-73.95107678,noise 40.66990909,-73.95895546,noise 40.76331469,-73.92819586,noise 40.84466953,-73.9347692,noise 40.76331469,-73.92819586,noise 40.63852397,-73.97318551,noise 40.76233478,-73.98980224,noise 40.68973631,-73.89032301,noise 40.70862655,-73.94512433,noise 40.75764906,-73.82518464,noise 40.65074897,-73.96242689,noise 40.7367168,-73.98019688,noise 40.74136536,-73.99861426,noise 40.83137895,-73.92895353,noise 40.82964818,-73.94630008,noise 40.8831353,-73.84660005,noise 40.67296764,-73.94185871,noise 40.68970195,-73.86334734,noise 40.69241818,-73.9027883,noise 40.84361298,-73.94013015,noise 40.69322877,-73.96784453,noise 40.84357175,-73.94002537,noise 40.7151278,-74.01010036,noise 40.82323098,-73.95243313,noise 40.67444808,-73.90944062,noise 40.69357091,-73.96460248,noise 40.83435759,-73.9255968,noise 40.82404627,-73.95269992,noise 40.83417102,-73.92571626,noise 40.69455946,-73.9065464,noise 40.78804119,-73.94123098,noise 40.64566587,-74.0097367,noise 40.84733412,-73.83136459,noise 40.85736349,-73.89677047,noise 40.83052657,-73.94648728,noise 40.80307499,-73.9489258,noise 40.73595507,-73.99047744,noise 40.756347,-73.978805,noise 40.87723827,-73.91779959,noise 40.67444808,-73.90944062,noise 40.67444808,-73.90944062,noise 40.67444808,-73.90944062,noise 40.87723133,-73.91210429,noise 40.84946767,-73.89154522,noise 40.70685211,-73.9481952,noise 40.72707618,-74.000184,noise 40.87302289,-73.91845926,noise 40.78840963,-73.95484865,noise 40.86404753,-73.92631558,noise 40.67138424,-73.87629405,noise 40.59522458,-73.93241311,noise 40.71361843,-74.00675266,noise 40.70181691,-73.81068842,noise 40.60362219,-73.74909725,noise 40.64998168,-73.83758618,noise 40.78311615,-73.95085853,noise 40.86111875,-73.92603322,noise 40.76362248,-73.99701462,noise 40.76362248,-73.99701462,noise 40.71474111,-73.77508413,noise 40.7242673,-73.98483656,noise 40.7235816,-73.98916238,noise 40.76362248,-73.99701462,noise 40.70612379,-73.92213675,noise 40.76362248,-73.99701462,noise 40.72894882,-73.97836993,noise 40.68294054,-73.86716143,noise 40.69362838,-73.96405432,noise 40.82943385,-73.94579076,noise 40.67462684,-73.87725059,noise 40.86168523,-73.90839031,noise 40.72377308,-73.9836822,noise 40.80629635,-73.93601689,noise 40.70951736,-73.89877406,noise 40.76362248,-73.99701462,noise 40.78861959,-73.93979681,noise 40.71641405,-73.95991523,noise 40.70137579,-73.98345326,noise 40.70963675,-73.83002488,noise 40.66302947,-73.99167371,noise 40.67462684,-73.87725059,noise 40.66315571,-73.99152591,noise 40.85765561,-73.88917127,noise 40.8364668,-73.90830939,noise 40.82050518,-73.9177685,noise 40.79770759,-73.94018227,noise 40.81726755,-73.9422565,noise 40.71160986,-73.95753384,noise 40.83573106,-73.91162427,noise 40.68230634,-73.92894289,noise 40.7581599,-73.9625937,noise 40.67222795,-73.94471087,noise 40.81560604,-73.94037211,noise 40.86399121,-73.85967031,noise 40.85198792,-73.93176905,noise 40.85840628,-73.89060158,noise 40.78882585,-73.94617411,noise 40.85198792,-73.93176905,noise 40.57782703,-73.96817368,noise 40.67349156,-73.98271754,noise 40.7623246,-73.9764531,noise 40.81204858,-73.91025045,noise 40.70806712,-73.95241071,noise 40.67915413,-73.98342993,noise 40.85840628,-73.89060158,noise 40.7581599,-73.9625937,noise 40.83578868,-73.91159167,noise 40.83715455,-73.9257563,noise 40.6895765,-73.97175508,noise 40.84466953,-73.9347692,noise 40.65999191,-73.9101775,noise 40.82898661,-73.89447298,noise 40.84466953,-73.9347692,noise 40.86179771,-73.90833231,noise 40.76550199,-73.98746608,noise 40.80115778,-73.96788631,noise 40.83573106,-73.91162427,noise 40.83099691,-73.92810837,noise 40.71620379,-73.99033597,noise 40.66248862,-73.94877753,noise 40.72953107,-73.9804155,noise 40.71202671,-73.9565813,noise 40.75050114,-73.82300179,noise 40.65972716,-73.98791847,noise 40.65467493,-73.91703947,noise 40.83027212,-73.89555861,noise 40.84403264,-73.91745389,noise 40.64911954,-73.83738647,noise 40.85840628,-73.89060158,noise 40.7581599,-73.9625937,noise 40.7588322,-73.96210242,noise 40.76294956,-73.98932203,noise 40.68388363,-73.86385323,noise 40.81563029,-73.89693997,noise 40.64107637,-73.96247918,noise 40.72653095,-73.72846993,noise 40.82835528,-73.94042934,noise 40.7170331,-73.95643735,noise 40.85064236,-73.94049974,noise 40.83024257,-73.94968908,noise 40.82892541,-73.95039469,noise 40.70530638,-73.9316054,noise 40.85064236,-73.94049974,noise 40.83024257,-73.94968908,noise 40.74531217,-74.00588612,noise 40.61949326,-73.94651238,noise 40.69686457,-73.90262675,noise 40.8759857,-73.85103891,noise 40.81106833,-73.95052721,noise 40.82959223,-73.95005814,noise 40.82892541,-73.95039469,noise 40.7091424,-73.9508301,noise 40.62704865,-73.97611536,noise 40.71678366,-73.96552085,noise 40.83448306,-73.92439329,noise 40.67362751,-73.95688749,noise 40.68747746,-73.99826562,noise 40.78311615,-73.95085853,noise 40.67709792,-73.91828422,noise 40.86431714,-73.86840435,noise 40.68211584,-73.95366231,noise 40.77303219,-73.9782834,noise 40.67843627,-73.80056262,noise 40.73595507,-73.99047744,noise 40.75263451,-73.85491323,noise 40.73511251,-73.99145903,noise 40.71300098,-74.00418069,noise 40.82157262,-73.85817364,noise 40.75897686,-73.98108907,noise 40.85668713,-73.93709628,noise 40.6471319,-74.00462341,noise 40.74198567,-73.99827142,noise 40.64779609,-74.00572617,noise 40.68507642,-73.97789379,noise 40.81188938,-73.92566888,noise 40.83856918,-73.94204647,noise 40.83842627,-73.94168882,noise 40.83865986,-73.94225962,noise 40.8090024,-73.94629868,noise 40.86049954,-73.92775111,noise 40.86553576,-73.9272684,noise 40.76357408,-73.92188187,noise 40.6870848,-73.95601341,noise 40.90534678,-73.89745563,noise 40.83842627,-73.94168882,noise 40.66820407,-73.9506476,noise 40.86980158,-73.84455541,noise 40.68510658,-73.97773153,noise 40.90534678,-73.89745563,noise 40.7581599,-73.9625937,noise 40.66930171,-73.7670112,noise 40.83856918,-73.94204647,noise 40.7581599,-73.9625937,noise 40.78882585,-73.94617411,noise 40.68020767,-73.82122342,noise 40.82951027,-73.92123353,noise 40.67342992,-73.95698135,noise 40.73991339,-74.00079029,noise 40.64018175,-73.95530567,noise 40.85556235,-73.90237634,noise 40.80189077,-73.96842414,noise 40.73677571,-73.95532748,noise 40.84466953,-73.9347692,noise 40.74781279,-74.00048,noise 40.74102762,-73.99416117,noise 40.74102762,-73.99416117,noise 40.84466953,-73.9347692,noise 40.71076002,-73.9531302,noise 40.86592029,-73.92770907,noise 40.83856918,-73.94204647,noise 40.68712039,-73.95576459,noise 40.60388939,-73.95348612,noise 40.59034214,-74.06662421,noise 40.68983099,-73.86337592,noise 40.87323038,-73.80848286,noise 40.72915618,-73.98895582,noise 40.68296065,-73.95939451,noise 40.60283206,-73.95206798,noise 40.85559804,-73.90237629,noise 40.82808542,-73.93874573,noise 40.76265315,-73.98954228,noise 40.76385801,-73.98869015,noise 40.69463455,-73.89799608,noise 40.74810921,-74.00122347,noise 40.76334753,-73.98905845,noise 40.82622076,-73.94788547,noise 40.85545266,-73.90248495,noise 40.82086308,-73.92757014,noise 40.73199094,-73.98410956,noise 40.76233478,-73.98980224,noise 40.723084,-73.98267582,noise 40.85321491,-73.92745177,noise 40.64018175,-73.95530567,noise 40.6568122,-73.95481158,noise 40.80690598,-73.94748519,noise 40.83856918,-73.94204647,noise 40.81941062,-73.91115459,noise 40.86292586,-73.92776655,noise 40.82735269,-73.93896321,noise 40.83856918,-73.94204647,noise 40.86345121,-73.90639584,noise 40.83856918,-73.94204647,noise 40.75933003,-73.82596714,noise 40.75752223,-73.83407535,noise 40.87323038,-73.80848286,noise 40.83733075,-73.94656854,noise 40.82317133,-73.92748814,noise 40.72435638,-73.94429963,noise 40.84382801,-73.93676147,noise 40.84382801,-73.93676147,noise 40.71165598,-74.00582905,noise 40.71140069,-74.00620416,noise 40.87323038,-73.80848286,noise 40.86333019,-73.92915078,noise 40.71313548,-74.00405806,noise 40.79231584,-73.97415283,noise 40.78882585,-73.94617411,noise 40.71919324,-73.99984127,noise 40.63597511,-73.97814065,noise 40.82300988,-73.89586628,noise 40.85064236,-73.94049974,noise 40.71783505,-73.95772468,noise 40.66306672,-73.89476791,noise 40.66306672,-73.89476791,noise 40.68847875,-73.93737756,noise 40.86954934,-73.91634837,noise 40.73595507,-73.99047744,noise 40.8462666,-73.91338855,noise 40.84685913,-73.91296128,noise 40.84768209,-73.91236382,noise 40.72543203,-73.99677099,noise 40.84682457,-73.93556225,noise 40.71181787,-74.00663344,noise 40.78311615,-73.95085853,noise 40.68064178,-73.95337129,noise 40.86049954,-73.92775111,noise 40.66217506,-73.95370139,noise 40.72349367,-73.98825325,noise 40.86592029,-73.92770907,noise 40.72349367,-73.98825325,noise 40.8088405,-73.92228029,noise 40.66274527,-73.92193147,noise 40.69726627,-73.96765506,noise 40.72349367,-73.98825325,noise 40.74194871,-73.98275391,noise 40.73199094,-73.98410956,noise 40.82130491,-73.95420128,noise 40.72817583,-73.98485732,noise 40.68119469,-73.99873089,noise 40.63597511,-73.97814065,noise 40.63597511,-73.97814065,noise 40.72688024,-73.9473426,noise 40.69726627,-73.96765506,noise 40.71014476,-73.95207738,noise 40.68555676,-73.84149102,noise 40.7314266,-74.00215768,noise 40.67271631,-73.95024411,noise 40.75371653,-73.99307003,noise 40.74383196,-73.98525434,noise 40.75371653,-73.99307003,noise 40.69598987,-73.85412051,noise 40.78311615,-73.95085853,noise 40.7074366,-73.915495,noise 40.80409248,-73.91500747,noise 40.75635718,-73.82577277,noise 40.70711579,-74.01067624,noise 40.64689518,-74.01326839,noise 40.71562216,-73.99427522,noise 40.71562216,-73.99427522,noise 40.71562216,-73.99427522,noise 40.83300756,-73.94041794,noise 40.78311615,-73.95085853,noise 40.76018852,-73.93289547,noise 40.84319426,-73.93727168,noise 40.65541519,-73.91589246,noise 40.68328577,-73.99000182,noise 40.68318148,-73.99007394,noise 40.68318148,-73.99007394,noise 40.68328577,-73.99000182,noise 40.68328577,-73.99000182,noise 40.69751854,-73.93472204,noise 40.86941776,-73.91657993,noise 40.59931411,-73.98574719,noise 40.63307759,-73.97028742,noise 40.83733075,-73.94656854,noise 40.86942675,-73.92156228,noise 40.82832377,-73.92008949,noise 40.86437703,-73.92653575,noise 40.69323818,-73.9723918,noise 40.85481908,-73.90978426,noise 40.80745911,-73.95075747,noise 40.82959962,-73.94813938,noise 40.75624515,-73.92120466,noise 40.8167892,-73.9525967,noise 40.76459406,-73.91646214,noise 40.72688024,-73.9473426,noise 40.68353643,-73.96593105,noise 40.85723958,-73.89942405,noise 40.64298527,-74.02195173,noise 40.81816194,-73.91882274,noise 40.71366785,-73.94931535,noise 40.70583161,-73.94352523,noise 40.66732153,-73.7371676,noise 40.83883943,-73.94462662,noise 40.80527374,-73.94942259,noise 40.81085696,-73.93901808,noise 40.74982408,-73.97220233,noise 40.76004232,-73.87838907,noise 40.64018175,-73.95530567,noise 40.71444753,-73.99813145,noise 40.84424624,-73.93371424,noise 40.78874428,-73.94784619,noise 40.7015033,-73.92900178,noise 40.70583161,-73.94352523,noise 40.86984817,-73.91588157,noise 40.86914718,-73.92214111,noise 40.80800596,-73.91433058,noise 40.68477547,-73.84421513,noise 40.86386819,-73.89348848,noise 40.83883943,-73.94462662,noise 40.71917411,-73.93857527,noise 40.74911653,-74.00166741,noise 40.79517029,-73.94329414,noise 40.82743256,-73.94495409,noise 40.80522478,-73.95730796,noise 40.66947464,-73.95683611,noise 40.86888602,-73.91759297,noise 40.70279073,-73.94418782,noise 40.71972015,-74.00415947,noise 40.79462162,-73.94981712,noise 40.71150547,-73.95727781,noise 40.67625573,-73.94156022,noise 40.78867286,-73.94771624,noise 40.86865323,-73.8832089,noise 40.82743256,-73.94495409,noise 40.80952516,-73.93788139,noise 40.82777603,-73.94574875,noise 40.68326742,-73.96586628,noise 40.86941776,-73.91657993,noise 40.83856918,-73.94204647,noise 40.8645253,-73.92661874,noise 40.86437703,-73.92653575,noise 40.82340595,-73.93927033,noise 40.63965653,-74.01803757,noise 40.82832377,-73.92008949,noise 40.63331431,-74.02702136,noise 40.8077127,-73.94131837,noise 40.704234,-73.9330095,noise 40.83449226,-73.94004801,noise 40.71958002,-73.95586209,noise 40.65364053,-73.95825549,noise 40.75607293,-73.88055479,noise 40.704234,-73.9330095,noise 40.81356636,-73.95132013,noise 40.75752223,-73.83407535,noise 40.81453554,-73.95914444,noise 40.86174893,-73.92433698,noise 40.87638296,-73.9015864,noise 40.87587388,-73.90327221,noise 40.80746263,-73.94074063,noise 40.63143794,-73.91022674,noise 40.59741741,-73.9853839,noise 40.59741741,-73.9853839,noise 40.72589061,-73.85139246,noise 40.8692067,-73.9169743,noise 40.69059197,-73.97135439,noise 40.63848027,-74.03605289,noise 40.79969995,-73.94506732,noise 40.66001761,-73.96096553,noise 40.6836325,-73.96594903,noise 40.66320531,-73.94946904,noise 40.59741741,-73.9853839,noise 40.83816562,-73.92735615,noise 40.66151822,-73.95167619,noise 40.68632157,-73.86908375,noise 40.71252561,-73.96255078,noise 40.80336774,-73.94685226,noise 40.75533653,-73.8432452,noise 40.81453554,-73.95914444,noise 40.88739963,-73.856554,noise 40.82310359,-73.92457242,noise 40.64631775,-73.9519899,noise 40.84337,-73.92373624,noise 40.65810733,-73.91523311,noise 40.7998424,-73.94448569,noise 40.61928612,-74.02513899,noise 40.78874979,-73.94790036,noise 40.74115116,-74.00520372,noise 40.67089775,-73.95318705,noise 40.66748307,-73.89180869,noise 40.66303408,-73.88642364,noise 40.62838143,-74.02904041,noise 40.68051755,-73.93494058,noise 40.76914923,-73.82862025,noise 40.82579203,-73.9410495,noise 40.6826897,-73.96166976,noise 40.65690581,-73.90555396,noise 40.85427984,-73.93192214,noise 40.72332523,-73.98070234,noise 40.8266449,-73.90333294,noise 40.83712341,-73.890174,noise 40.80165958,-73.95093152,noise 40.77025552,-73.95377066,noise 40.83200422,-73.90870943,noise 40.78865088,-73.94766931,noise 40.78871681,-73.94780649,noise 40.80527374,-73.94942259,noise 40.74039091,-74.00405611,noise 40.82743256,-73.94495409,noise 40.69278919,-73.97771814,noise 40.88789237,-73.82937019,noise 40.76331469,-73.92819586,noise 40.63406,-73.94680695,noise 40.71520538,-73.96536295,noise 40.67702663,-73.95267802,noise 40.73713256,-73.99032932,noise 40.83800924,-73.92746112,noise 40.68463709,-73.92529152,noise 40.82703767,-73.94013783,noise 40.65972716,-73.98791847,noise 40.68821033,-74.00047957,noise 40.64581109,-73.96239003,noise 40.83883943,-73.94462662,noise 40.80128754,-73.95393332,noise 40.86914718,-73.92214111,noise 40.86914718,-73.92214111,noise 40.76331469,-73.92819586,noise 40.67089775,-73.95318705,noise 40.84317874,-73.92505926,noise 40.73464291,-73.95500055,noise 40.76331469,-73.92819586,noise 40.86847325,-73.92403647,noise 40.68829638,-73.95199573,noise 40.71328903,-73.87161713,noise 40.74705161,-73.88665213,noise 40.68033553,-73.86936591,noise 40.76550199,-73.98746608,noise 40.68174168,-73.95858403,noise 40.68463709,-73.92529152,noise 40.6927094,-73.80716952,noise 40.83060207,-73.94957679,noise 40.76334753,-73.98905845,noise 40.82959223,-73.95005814,noise 40.67617239,-73.95120411,noise 40.68257573,-73.95757757,noise 40.68372857,-73.965967,noise 40.85064236,-73.94049974,noise 40.8287394,-73.94015076,noise 40.66319107,-73.93726434,noise 40.78805645,-73.94432218,noise 40.82332627,-73.91335699,noise 40.68672121,-73.9527757,noise 40.64882924,-73.96777224,noise 40.7630701,-73.92770879,noise 40.84118523,-73.91587083,noise 40.71744753,-73.93835681,noise 40.64846321,-74.00075677,noise 40.7317612,-73.73261607,noise 40.81561858,-73.94348264,noise 40.68456462,-73.93237664,noise 40.66208054,-73.92120776,noise 40.72231555,-73.98321356,noise 40.71027215,-73.7652268,noise 40.68499874,-73.83313806,noise 40.71153872,-73.94507144,noise 40.68829638,-73.95199573,noise 40.83748109,-73.9452385,noise 40.65577708,-73.91531536,noise 40.63016261,-73.97020225,noise 40.67521683,-73.95714964,noise 40.67284558,-73.93935696,noise 40.71677946,-73.93634091,noise 40.85064236,-73.94049974,noise 40.76331469,-73.92819586,noise 40.62218786,-74.08263557,noise 40.63489741,-74.14076308,noise 40.63520686,-74.02028461,noise 40.72152043,-73.94889811,noise 40.76331469,-73.92819586,noise 40.83028197,-73.94023248,noise 40.800664,-73.94646072,noise 40.86290732,-73.92452004,noise 40.76331469,-73.92819586,noise 40.69679084,-73.92949364,noise 40.65972716,-73.98791847,noise 40.69349801,-73.91460392,noise 40.87409683,-73.87872647,noise 40.8351177,-73.90995191,noise 40.65575128,-73.958283,noise 40.86193593,-73.92077215,noise 40.83489177,-73.93775291,noise 40.85440335,-73.91533719,noise 40.65972716,-73.98791847,noise 40.68192949,-73.9421826,noise 40.87289918,-73.918181,noise 40.89717873,-73.85418898,noise 40.80419097,-73.95272487,noise 40.68672121,-73.9527757,noise 40.69004789,-73.79810471,noise 40.61883849,-73.92857101,noise 40.83028197,-73.94023248,noise 40.87387478,-73.87897999,noise 40.65972716,-73.98791847,noise 40.8614356,-73.91963395,noise 40.65972716,-73.98791847,noise 40.83045769,-73.94034796,noise 40.71485869,-73.94262659,noise 40.83386222,-73.94829145,noise 40.83028197,-73.94023248,noise 40.70811627,-73.90703958,noise 40.83610163,-73.94194744,noise 40.67770929,-73.9507992,noise 40.70826984,-73.90686984,noise 40.68081719,-73.89179427,noise 40.68829638,-73.95199573,noise 40.87674378,-73.90307568,noise 40.80018658,-73.94679701,noise 40.76341639,-73.92842679,noise 40.68431678,-73.89475961,noise 40.75940563,-73.9851029,noise 40.70977523,-73.9480739,noise 40.84981231,-73.93338338,noise 40.67510131,-73.81362672,noise 40.68672121,-73.9527757,noise 40.79512498,-73.93543894,noise 40.68829092,-73.95204982,noise 40.84981231,-73.93338338,noise 40.75148246,-74.00345765,noise 40.73700092,-73.70991579,noise 40.73483798,-73.99075544,noise 40.73443443,-73.98990393,noise 40.81119422,-73.94374289,noise 40.69672438,-73.91263437,noise 40.87516054,-73.91042561,noise 40.67577767,-73.98088914,noise 40.83047336,-73.88222076,noise 40.84963398,-73.93351369,noise 40.68711774,-73.94933553,noise 40.78229519,-73.96512584,noise 40.6615155,-73.95172305,noise 40.72566263,-73.99984847,noise 40.76331469,-73.92819586,noise 40.72132255,-73.98802996,noise 40.73534843,-73.98991823,noise 40.76331469,-73.92819586,noise 40.68469163,-73.92474701,noise 40.69611952,-73.93616951,noise 40.83126583,-73.87884429,noise 40.76331469,-73.92819586,noise 40.81986557,-73.95852336,noise 40.69491583,-73.93354176,noise 40.59525512,-73.97347655,noise 40.6815201,-73.98326349,noise 40.6861438,-73.96539247,noise 40.78905477,-73.94860432,noise 40.76683505,-73.98104352,noise 40.74194871,-73.98275391,noise 40.78311615,-73.95085853,noise 40.78311615,-73.95085853,noise 40.71025074,-73.99616575,noise 40.63148589,-74.01372648,noise 40.69496362,-73.94622465,noise 40.75635718,-73.82577277,noise 40.68603744,-73.86784395,noise 40.68702487,-73.97620565,noise 40.6876151,-73.97668501,noise 40.86727603,-73.91921472,noise 40.74194871,-73.98275391,noise 40.65753332,-73.90764348,noise 40.73199094,-73.98410956,noise 40.68791358,-73.83884236,noise 40.7137782,-73.95746753,noise 40.64422979,-74.01490742,noise 40.73029029,-74.00025257,noise 40.85198792,-73.93176905,noise 40.75546118,-73.88629853,noise 40.75296188,-73.85119491,noise 40.66010647,-73.90926546,noise 40.88619099,-73.85798515,noise 40.70646226,-73.9194024,noise 40.6716626,-73.95091902,noise 40.72488931,-73.97828105,noise 40.82602863,-73.87857921,noise 40.70383481,-73.93097214,noise 40.66761945,-73.89089288,noise 40.73500252,-73.98910279,noise 40.66517839,-73.76941183,noise 40.70393413,-73.94755188,noise 40.70630593,-73.91957571,noise 40.75296188,-73.85119491,noise 40.76338225,-73.83029564,noise 40.84457605,-73.93449822,noise 40.74486372,-73.86356621,noise 40.72114459,-73.99370114,noise 40.75870318,-73.83266826,noise 40.70547174,-73.94290878,noise 40.78872504,-73.94779926,noise 40.86292586,-73.92776655,noise 40.66205702,-73.95367624,noise 40.7137782,-73.95746753,noise 40.77433717,-73.95432745,noise 40.61690418,-74.03373958,noise 40.65339527,-73.96345252,noise 40.77427405,-73.95435999,noise 40.88956629,-73.89907857,noise 40.65982645,-73.90920096,noise 40.68126625,-73.96509214,noise 40.61871889,-73.93048743,noise 40.70526304,-73.95508531,noise 40.70574915,-73.92015708,noise 40.62709755,-73.90241152,noise 40.61871889,-73.93048743,noise 40.66205702,-73.95367624,noise 40.66205702,-73.95367624,noise 40.83679367,-73.92371848,noise 40.7185836,-73.99174614,noise 40.70581222,-73.92006683,noise 40.57748673,-73.95960623,noise 40.7137782,-73.95746753,noise 40.70249937,-73.91632356,noise 40.69726627,-73.96765506,noise 40.83280618,-73.94385832,noise 40.68137736,-73.94698914,noise 40.72141089,-73.9949746,noise 40.62558409,-73.98253902,noise 40.76058323,-73.98592204,noise 40.63597511,-73.97814065,noise 40.59162899,-73.92380051,noise 40.74244241,-73.98050554,noise 40.69024832,-73.82496109,noise 40.71901726,-73.9915116,noise 40.64520137,-73.97050183,noise 40.76362248,-73.99701462,noise 40.71409875,-73.95589458,noise 40.69726627,-73.96765506,noise 40.72242119,-73.94999415,noise 40.73668513,-73.95531311,noise 40.64397476,-74.01295431,noise 40.86613852,-73.92558294,noise 40.67251574,-73.93355326,noise 40.74391839,-73.92518535,noise 40.59064831,-73.96929814,noise 40.67087122,-73.91999335,noise 40.86613852,-73.92558294,noise 40.86437703,-73.92653575,noise 40.776993,-73.97910533,noise 40.72114459,-73.99370114,noise 40.66064331,-73.96062997,noise 40.6868654,-73.96446902,noise 40.86613852,-73.92558294,noise 40.7607762,-74.00218389,noise 40.79565484,-73.93565151,noise 40.71958002,-73.95586209,noise 40.79775086,-73.9443863,noise 40.84711145,-73.93818244,noise 40.61871889,-73.93048743,noise 40.81151832,-73.95019814,noise 40.88956351,-73.89903879,noise 40.78198856,-73.91419434,noise 40.69332462,-73.96710163,noise 40.84613626,-73.83057246,noise 40.71159894,-73.76983199,noise 40.81978742,-73.91215848,noise 40.8071318,-73.95582932,noise 40.67099424,-73.9420587,noise 40.69587316,-73.97240153,noise 40.70762333,-73.96213153,noise 40.80278788,-73.95846898,noise 40.75445009,-73.87473212,noise 40.58909637,-73.92095903,noise 40.85118459,-73.92866128,noise 40.61196492,-74.08811911,noise 40.81453554,-73.95914444,noise 40.78865088,-73.94766931,noise 40.6821486,-73.98285591,noise 40.73489594,-74.00315369,noise 40.81711658,-73.94800821,noise 40.71612329,-73.9360277,noise 40.63328456,-73.89049865,noise 40.63564847,-73.95825594,noise 40.67737313,-73.98611266,noise 40.71518984,-73.93561376,noise 40.81674338,-73.94818192,noise 40.68220447,-73.93787741,noise 40.74186913,-73.98285498,noise 40.81711658,-73.94800821,noise 40.66248805,-73.88385822,noise 40.71677946,-73.93634091,noise 40.75445009,-73.87473212,noise 40.81453554,-73.95914444,noise 40.68681527,-73.95461096,noise 40.67251574,-73.93355326,noise 40.7567221,-73.99444494,noise 40.86111875,-73.92603322,noise 40.66064331,-73.96062997,noise 40.68638473,-73.95562085,noise 40.69945525,-73.92398742,noise 40.81132165,-73.91819528,noise 40.70588897,-73.94296613,noise 40.7230834,-73.95874954,noise 40.71677946,-73.93634091,noise 40.6925954,-73.94733722,noise 40.73621428,-73.95863677,noise 40.68131452,-73.94763096,noise 40.76393458,-73.98610183,noise 40.79525545,-73.94935436,noise 40.84006382,-73.90335681,noise 40.71829131,-73.95230962,noise 40.71677946,-73.93634091,noise 40.6707335,-73.94208056,noise 40.82839043,-73.89384519,noise 40.73560939,-73.99266777,noise 40.7230834,-73.95874954,noise 40.70876127,-73.95881612,noise 40.72261972,-73.95926573,noise 40.72100139,-73.9878785,noise 40.7565272,-73.99401904,noise 40.73595507,-73.99047744,noise 40.76449114,-73.98165065,noise 40.62529671,-73.91598806,noise 40.73991339,-74.00079029,noise 40.73991339,-74.00079029,noise 40.68739949,-74.01616467,noise 40.70174433,-73.91232845,noise 40.86182903,-73.92945605,noise 40.68507642,-73.97789379,noise 40.75667818,-73.9943511,noise 40.71518984,-73.93561376,noise 40.7567221,-73.99444494,noise 40.73443443,-73.98990393,noise 40.80111034,-73.96521711,noise 40.74360783,-73.99972573,noise 40.7230834,-73.95874954,noise 40.72179252,-73.99985209,noise 40.72739987,-73.85762,noise 40.73339178,-74.00427579,noise 40.63727718,-73.9317652,noise 40.67338308,-73.81705268,noise 40.68741553,-73.95971272,noise 40.80111034,-73.96521711,noise 40.80113995,-73.96333889,noise 40.86165878,-73.92932247,noise 40.73769902,-73.72598867,noise 40.83280618,-73.94385832,noise 40.72234313,-73.9841768,noise 40.84948028,-73.88473899,noise 40.68043307,-73.98256432,noise 40.71138031,-73.94674525,noise 40.67354231,-73.76028381,noise 40.54195147,-74.17742807,noise 40.70180852,-73.92989588,noise 40.77772598,-73.91058917,noise 40.82781896,-73.87418207,noise 40.74430733,-73.99020919,noise 40.63509877,-73.96421555,noise 40.66919734,-73.89645248,noise 40.72255108,-73.97996299,noise 40.7230834,-73.95874954,noise 40.87156453,-73.88511652,noise 40.73588925,-73.99120995,noise 40.759412,-73.99561425,noise 40.65668753,-73.92607608,noise 40.86187082,-73.92606854,noise 40.64578144,-73.99484336,noise 40.73595507,-73.99047744,noise 40.80292804,-73.96757482,noise 40.80113995,-73.96333889,noise 40.80051156,-73.96379795,noise 40.80694598,-73.91738068,noise 40.80174149,-73.96475806,noise 40.76001757,-73.9840379,noise 40.8692067,-73.9169743,noise 40.73339178,-74.00427579,noise 40.78229519,-73.96512584,noise 40.77622111,-73.97595354,noise 40.75635718,-73.82577277,noise 40.63331431,-74.02702136,noise 40.72124619,-73.99457056,noise 40.67915413,-73.98342993,noise 40.7235816,-73.98916238,noise 40.72124619,-73.99457056,noise 40.80729548,-73.95327173,noise 40.67962217,-73.96520477,noise 40.78671818,-73.94113826,noise 40.88956629,-73.89907857,noise 40.80698267,-73.95349952,noise 40.71299888,-73.96633081,noise 40.90534678,-73.89745563,noise 40.75433495,-73.92992,noise 40.80635431,-73.9539551,noise 40.79564993,-73.9367025,noise 40.74883018,-73.98551309,noise 40.76134637,-73.98679184,noise 40.70753056,-73.78659995,noise 40.76276594,-73.91259828,noise 40.86437703,-73.92653575,noise 40.78536042,-73.97298193,noise 40.65628533,-73.92384199,noise 40.86369361,-73.9223608,noise 40.69726627,-73.96765506,noise 40.71159894,-73.76983199,noise 40.75624515,-73.92120466,noise 40.85256252,-73.78944935,noise 40.71763107,-73.99047284,noise 40.72242119,-73.94999415,noise 40.74436325,-73.91370508,noise 40.86613852,-73.92558294,noise 40.67099424,-73.9420587,noise 40.83627203,-73.8896261,noise 40.72488931,-73.97828105,noise 40.71169202,-73.76970902,noise 40.63733699,-73.93079592,noise 40.62172831,-73.98755432,noise 40.67915413,-73.98342993,noise 40.69064663,-73.90804115,noise 40.626026,-74.17672214,noise 40.70993752,-73.77637,noise 40.83332403,-73.92747707,noise 40.67946257,-74.00619398,noise 40.80635431,-73.9539551,noise 40.71810371,-73.95004428,noise 40.6368429,-73.93075319,noise 40.71444753,-73.99813145,noise 40.86437703,-73.92653575,noise 40.68186975,-73.94937197,noise 40.72349367,-73.98825325,noise 40.83573106,-73.91162427,noise 40.71522127,-73.99171409,noise 40.72349367,-73.98825325,noise 40.63518648,-73.92861115,noise 40.87823133,-73.90299396,noise 40.72349367,-73.98825325,noise 40.78867286,-73.94771624,noise 40.66364413,-73.98968396,noise 40.71763107,-73.99047284,noise 40.78536042,-73.97298193,noise 40.66364413,-73.98968396,noise 40.67915413,-73.98342993,noise 40.90141806,-73.84689427,noise 40.73831505,-73.98561642,noise 40.71093446,-73.96513432,noise 40.74206643,-73.98080156,noise 40.66974067,-73.99576074,noise 40.72860489,-74.00531458,noise 40.70986855,-73.96216632,noise 40.72201915,-73.98344452,noise 40.67915413,-73.98342993,noise 40.63597511,-73.97814065,noise 40.73831505,-73.98561642,noise 40.84493615,-73.8631405,noise 40.7863726,-73.93165574,noise 40.73911741,-74.00104649,noise 40.80635431,-73.9539551,noise 40.71153872,-73.94507144,noise 40.85186221,-73.92815088,noise 40.63733699,-73.93079592,noise 40.73249706,-74.00183297,noise 40.88956351,-73.89903879,noise 40.67486925,-73.98154192,noise 40.67915413,-73.98342993,noise 40.74950355,-74.00056302,noise 40.85199617,-73.93178712,noise 40.61896738,-74.00883229,noise 40.63331431,-74.02702136,noise 40.85654487,-73.92846393,noise 40.73249706,-74.00183297,noise 40.72417851,-73.9788008,noise 40.72408245,-73.97885855,noise 40.73249706,-74.00183297,noise 40.67915413,-73.98342993,noise 40.74705161,-73.88665213,noise 40.75557799,-73.88508195,noise 40.70066107,-73.92966987,noise 40.66919734,-73.89645248,noise 40.67915413,-73.98342993,noise 40.84711145,-73.93818244,noise 40.73029441,-73.98223737,noise 40.61655033,-73.93020153,noise 40.84711145,-73.93818244,noise 40.72114459,-73.99370114,noise 40.85072806,-73.93650912,noise 40.67899951,-73.79310873,noise 40.86475314,-73.88889552,noise 40.74705161,-73.88665213,noise 40.78884044,-73.94229921,noise 40.7415697,-73.71380415,noise 40.85659332,-73.8919674,noise 40.7581599,-73.9625937,noise 40.74361714,-73.87526855,noise 40.75260613,-73.86311724,noise 40.84690348,-73.84942333,noise 40.66200565,-73.99150443,noise 40.86797939,-73.92024792,noise 40.72408245,-73.97885855,noise 40.72124725,-73.97956294,noise 40.67338343,-73.96564783,noise 40.84563723,-73.93271168,noise 40.66700159,-73.74625626,noise 40.84459402,-73.93719807,noise 40.73770385,-73.99767613,noise 40.70381897,-73.94207345,noise 40.72408245,-73.97885855,noise 40.76971859,-73.95643538,noise 40.65692084,-73.92609024,noise 40.65587409,-73.95638719,noise 40.86416104,-73.92360032,noise 40.7581599,-73.9625937,noise 40.68533044,-73.90859293,noise 40.80275151,-73.95659798,noise 40.70381897,-73.94207345,noise 40.72709028,-73.97663873,noise 40.75131386,-73.88910999,noise 40.7612619,-73.9942713,noise 40.72184674,-73.98747069,noise 40.71077065,-73.96815349,noise 40.5977499,-74.08406731,noise 40.78311615,-73.95085853,noise 40.78311615,-73.95085853,noise 40.85658874,-73.88440855,noise 40.67304533,-73.96403657,noise 40.76885251,-73.91094044,noise 40.73199094,-73.98410956,noise 40.85658874,-73.88440855,noise 40.84394176,-73.93902389,noise 40.7621841,-73.99361062,noise 40.72448395,-73.9834872,noise 40.74736158,-73.88645672,noise 40.74475641,-73.86334268,noise 40.75546118,-73.88629853,noise 40.70383481,-73.93097214,noise 40.68187917,-73.7660803,noise 40.63249702,-73.93392817,noise 40.72042228,-73.98817082,noise 40.73815366,-74.0090249,noise 40.7623246,-73.9764531,noise 40.68664871,-73.92073883,noise 40.66820407,-73.9506476,noise 40.76494318,-73.91720536,noise 40.64018175,-73.95530567,noise 40.68497144,-73.8600146,noise 40.74244241,-73.98050554,noise 40.85930241,-73.89807612,noise 40.73434974,-74.00300933,noise 40.65830721,-73.91834328,noise 40.76349768,-73.87813729,noise 40.86924949,-73.91542314,noise 40.69959035,-73.94423377,noise 40.72488931,-73.97828105,noise 40.76115165,-73.92364989,noise 40.71121192,-73.96593854,noise 40.85072806,-73.93650912,noise 40.71169202,-73.76970902,noise 40.70774327,-73.78733507,noise 40.72124619,-73.99457056,noise 40.76568038,-73.98736136,noise 40.6796556,-73.88555529,noise 40.72124619,-73.99457056,noise 40.86437703,-73.92653575,noise 40.83669583,-73.93922206,noise 40.67290293,-73.95020432,noise 40.76753406,-73.92087723,noise 40.84413857,-73.93751656,noise 40.86941776,-73.91657993,noise 40.72124619,-73.99457056,noise 40.61954729,-73.91726324,noise 40.71093446,-73.96513432,noise 40.78546745,-73.97293133,noise 40.69694734,-73.90645651,noise 40.71958002,-73.95586209,noise 40.71153872,-73.94507144,noise 40.76349768,-73.87813729,noise 40.64058264,-73.95571617,noise 40.72844754,-73.98467686,noise 40.58317412,-73.96005281,noise 40.76115165,-73.92364989,noise 40.86581797,-73.92648716,noise 40.71387984,-73.95769833,noise 40.72100917,-73.98407971,noise 40.68388363,-73.86385323,noise 40.68555676,-73.84149102,noise 40.68048906,-73.94333397,noise 40.64018175,-73.95530567,noise 40.84711145,-73.93818244,noise 40.80635431,-73.9539551,noise 40.82852084,-73.91180729,noise 40.72849789,-74.00422135,noise 40.84711145,-73.93818244,noise 40.74705161,-73.88665213,noise 40.73249706,-74.00183297,noise 40.71613609,-73.751372,noise 40.82310059,-73.9491778,noise 40.70386546,-73.9474293,noise 40.73624077,-73.99420128,noise 40.6936969,-73.80036912,noise 40.66820407,-73.9506476,noise 40.73571319,-73.98697373,noise 40.76410626,-73.92143723,noise 40.73595507,-73.99047744,noise 40.67859929,-73.74794989,noise 40.79873413,-73.9676816,noise 40.76167795,-73.96045834,noise 40.74478006,-73.97588188,noise 40.76516845,-73.81906041,noise 40.78229519,-73.96512584,noise 40.6471319,-74.00462341,noise 40.78311615,-73.95085853,noise 40.8098245,-73.80345983,noise 40.72953107,-73.9804155,noise 40.87823133,-73.90299396,noise 40.69288479,-73.95677407,noise 40.64018175,-73.95530567,noise 40.810332,-73.92823906,noise 40.71795041,-73.95792662,noise 40.72114459,-73.99370114,noise 40.72483716,-73.97832075,noise 40.83027301,-73.91691087,noise 40.77850171,-73.95632493,noise 40.71121192,-73.96593854,noise 40.86924949,-73.91542314,noise 40.73668513,-73.95531311,noise 40.79775941,-73.93955378,noise 40.72440629,-73.97860951,noise 40.80899154,-73.91463997,noise 40.73853272,-74.00387196,noise 40.64269519,-73.96977506,noise 40.80597242,-73.95302703,noise 40.70313001,-73.89539353,noise 40.72951901,-73.99981238,noise 40.7581599,-73.9625937,noise 40.71934917,-73.84262277,noise 40.74934479,-73.9769377,noise 40.82295125,-73.95299336,noise 40.67246658,-73.83927623,noise 40.70328651,-73.89544738,noise 40.76568038,-73.98736136,noise 40.67338343,-73.96564783,noise 40.67915413,-73.98342993,noise 40.6895765,-73.97175508,noise 40.70022254,-73.88872252,noise 40.74718652,-73.98969629,noise 40.71527342,-73.99168522,noise 40.7581599,-73.9625937,noise 40.78867286,-73.94771624,noise 40.7367168,-73.98019688,noise 40.82130491,-73.95420128,noise 40.63406,-73.94680695,noise 40.63494936,-73.94691073,noise 40.79564993,-73.9367025,noise 40.68220447,-73.93787741,noise 40.78434683,-73.94700827,noise 40.69054316,-73.82391459,noise 40.74416182,-73.98986637,noise 40.78311615,-73.95085853,noise 40.78311615,-73.95085853,noise 40.73240906,-74.00639735,noise 40.70381897,-73.94207345,noise 40.68180409,-73.94986236,noise 40.60055241,-73.97273982,noise 40.75385066,-73.98855109,noise 40.74198567,-73.99827142,noise 40.59992332,-73.96132116,noise 40.68195325,-73.9799824,noise 40.90141806,-73.84689427,noise 40.72306913,-73.95039412,noise 40.90534678,-73.89745563,noise 40.63836084,-73.96851953,noise 40.64595269,-73.95197214,noise 40.64018175,-73.95530567,noise 40.86612043,-73.91910043,noise 40.71093446,-73.96513432,noise 40.73991339,-74.00079029,noise 40.82133081,-73.95047623,noise 40.67165983,-73.95086855,noise 40.82103631,-73.95519143,noise 40.83533045,-73.9421035,noise 40.77578986,-73.90248607,noise 40.68447727,-73.97407925,noise 40.67383587,-73.96418756,noise 40.67774235,-73.95107678,noise 40.65467493,-73.91703947,noise 40.72979971,-73.95842066,noise 40.67774235,-73.95107678,noise 40.81216129,-73.95187026,noise 40.63488621,-73.94688195,noise 40.84466953,-73.9347692,noise 40.86596699,-73.92776686,noise 40.73991339,-74.00079029,noise 40.73199094,-73.98410956,noise 40.64519867,-74.10469222,noise 40.72933786,-74.0010319,noise 40.83669583,-73.93922206,noise 40.84378404,-73.93665309,noise 40.64519867,-74.10469222,noise 40.74753497,-73.98830676,noise 40.72223429,-73.99433237,noise 40.86249488,-73.89244949,noise 40.6895765,-73.97175508,noise 40.74603637,-73.98859213,noise 40.70252976,-73.81356446,noise 40.72110344,-73.99418095,noise 40.64424178,-74.10654649,noise 40.74678842,-73.98845125,noise 40.84466953,-73.9347692,noise 40.64018175,-73.95530567,noise 40.8196729,-73.94423069,noise 40.72110344,-73.99418095,noise 40.72110344,-73.99418095,noise 40.80133776,-73.9560246,noise 40.72110344,-73.99418095,noise 40.70588897,-73.94296613,noise 40.66820407,-73.9506476,noise 40.71387984,-73.95769833,noise 40.75614579,-73.92879555,noise 40.80991804,-73.80358599,noise 40.87323038,-73.80848286,noise 40.82962826,-73.92117919,noise 40.72110344,-73.99418095,noise 40.82130491,-73.95420128,noise 40.68915963,-73.84275532,noise 40.68915963,-73.84275532,noise 40.78838599,-73.93923728,noise 40.64519867,-74.10469222,noise 40.67461086,-73.95885163,noise 40.72916768,-74.00119065,noise 40.67587284,-73.78689232,noise 40.74864439,-74.00348999,noise 40.72933786,-74.0010319,noise 40.72933786,-74.0010319,noise 40.72110344,-73.99418095,noise 40.72933786,-74.0010319,noise 40.68403664,-73.86327242,noise 40.84975661,-73.90483193,noise 40.7680624,-73.98397821,noise 40.85455379,-73.88329149,noise 40.82374571,-73.94943384,noise 40.74214141,-73.98705547,noise 40.71373506,-73.93552138,noise 40.71838248,-73.9844519,noise 40.67508646,-73.96102521,noise 40.80340346,-73.94693892,noise 40.7170331,-73.95643735,noise 40.71690963,-73.95655648,noise 40.82880488,-73.89385175,noise 40.70963675,-73.83002488,noise 40.80991804,-73.80358599,noise 40.7883183,-73.94101768,noise 40.7326191,-73.98150067,noise 40.71100589,-73.96536874,noise 40.7235816,-73.98916238,noise 40.76779146,-73.99142596,noise 40.6471319,-74.00462341,noise 40.85311597,-73.92723861,noise 40.65153143,-73.96302108,noise 40.8760793,-73.86231341,noise 40.76105786,-73.98433004,noise 40.82873078,-73.89385187,noise 40.75635718,-73.82577277,noise 40.73374302,-74.00629284,noise 40.84487569,-73.86778862,noise 40.86801612,-73.89127996,noise 40.75635718,-73.82577277,noise 40.68874113,-73.86092979,noise 40.86486569,-73.92248958,noise 40.64998168,-73.83758618,noise 40.75635718,-73.82577277,noise 40.74238268,-73.87090067,noise 40.7281591,-73.98295592,noise 40.6471319,-74.00462341,noise 40.72349367,-73.98825325,noise 40.77495448,-73.98432316,noise 40.74934479,-73.9769377,noise 40.76402013,-73.97318913,noise 40.86225027,-73.92291562,noise 40.76505522,-73.9965633,noise 40.70393453,-73.94263238,noise 40.7170331,-73.95643735,noise 40.79936802,-73.95161224,noise 40.78311615,-73.95085853,noise 40.83287211,-73.94397029,noise 40.82764851,-73.90549227,noise 40.69152702,-73.90719252,noise 40.67482666,-74.00598806,noise 40.63606328,-73.96787928,noise 40.64424963,-74.00887887,noise 40.78151772,-73.94857764,noise 40.86627739,-73.92816784,noise 40.80128754,-73.95393332,noise 40.82743256,-73.94495409,noise 40.86475314,-73.88889552,noise 40.74245703,-73.98682806,noise 40.64623259,-73.95887994,noise 40.76579016,-73.98728192,noise 40.74445865,-73.99652106,noise 40.74033035,-73.9924796,noise 40.71144313,-73.94609232,noise 40.81227011,-73.85989497,noise 40.76851568,-73.9871406,noise 40.87587388,-73.90327221,noise 40.67135954,-73.8762977,noise 40.75932079,-73.96217433,noise 40.79904275,-73.94259015,noise 40.78605006,-73.97620999,noise 40.83247693,-73.90950016,noise 40.75932079,-73.96217433,noise 40.64282425,-73.96085668,noise 40.811642,-73.95059181,noise 40.67575575,-73.95975942,noise 40.85427984,-73.93192214,noise 40.73624077,-73.99420128,noise 40.76827682,-73.98659191,noise 40.69233609,-73.96567773,noise 40.77958449,-73.9818487,noise 40.75382654,-73.90935436,noise 40.7287779,-74.00264106,noise 40.78838599,-73.93923728,noise 40.71620379,-73.99033597,noise 40.79899984,-73.94464531,noise 40.80268987,-73.95337249,noise 40.68877184,-73.96087298,noise 40.64293877,-73.97886985,noise 40.81813076,-73.89100017,noise 40.82130491,-73.95420128,noise 40.76550199,-73.98746608,noise 40.76753312,-73.91201802,noise 40.71604975,-73.96214117,noise 40.64107637,-73.96247918,noise 40.72062702,-73.9592453,noise 40.86759768,-73.89588323,noise 40.66205702,-73.95367624,noise 40.67250249,-73.95780388,noise 40.80189077,-73.96842414,noise 40.65436613,-73.96103011,noise 40.86063278,-73.90686255,noise 40.71127193,-73.95665394,noise 40.64998168,-73.83758618,noise 40.86475314,-73.88889552,noise 40.72241571,-73.95001219,noise 40.69383064,-73.82886433,noise 40.723084,-73.98267582,noise 40.67171741,-73.9576025,noise 40.723084,-73.98267582,noise 40.75624515,-73.92120466,noise 40.74486372,-73.86356621,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.64018175,-73.95530567,noise 40.74195612,-73.97792905,noise 40.64018175,-73.95530567,noise 40.85331624,-73.93156888,noise 40.68241996,-73.80760669,noise 40.70547174,-73.94290878,noise 40.70707965,-73.95401646,noise 40.83434913,-73.91722017,noise 40.67922633,-73.96330857,noise 40.72072914,-73.96087947,noise 40.88923532,-73.90039556,noise 40.76753406,-73.92087723,noise 40.72349367,-73.98825325,noise 40.64018175,-73.95530567,noise 40.758537,-73.97720163,noise 40.74486372,-73.86356621,noise 40.69222189,-73.91487601,noise 40.74391839,-73.92518535,noise 40.7993517,-73.95907791,noise 40.67915413,-73.98342993,noise 40.68383168,-73.93222956,noise 40.71153872,-73.94507144,noise 40.84484542,-73.93518105,noise 40.7657348,-73.98360333,noise 40.64531666,-73.97054502,noise 40.76234382,-73.9765289,noise 40.86611677,-73.88558509,noise 40.67653128,-73.88207804,noise 40.69007747,-73.94523696,noise 40.73784631,-74.00818047,noise 40.82000567,-73.95887372,noise 40.73784631,-74.00816965,noise 40.74851214,-73.98871441,noise 40.79743099,-73.93143129,noise 40.70381897,-73.94207345,noise 40.75791129,-73.97765304,noise 40.87091201,-73.89153556,noise 40.759412,-73.99561425,noise 40.72349367,-73.98825325,noise 40.80428651,-73.96698538,noise 40.64018175,-73.95530567,noise 40.759412,-73.99561425,noise 40.63992952,-73.94938217,noise 40.758537,-73.97720163,noise 40.81561858,-73.94348264,noise 40.76154468,-73.92445081,noise 40.80356744,-73.96714106,noise 40.86165878,-73.92932247,noise 40.72193981,-73.98539267,noise 40.64510255,-73.97047305,noise 40.7883183,-73.94101768,noise 40.73853272,-74.00387196,noise 40.70547174,-73.94290878,noise 40.66797516,-73.98730057,noise 40.74477423,-73.86683965,noise 40.63011491,-74.10888369,noise 40.758537,-73.97720163,noise 40.7121838,-73.93972156,noise 40.68296065,-73.95939451,noise 40.74361057,-73.99970047,noise 40.69726627,-73.96765506,noise 40.86637626,-73.92825812,noise 40.68220447,-73.93787741,noise 40.64531666,-73.97054502,noise 40.76052471,-73.97997322,noise 40.81986557,-73.95852336,noise 40.64018175,-73.95530567,noise 40.71189525,-73.95734249,noise 40.83627203,-73.8896261,noise 40.88923532,-73.90039556,noise 40.8631922,-73.92792533,noise 40.72306913,-73.95039412,noise 40.74072541,-73.92391147,noise 40.74521326,-73.99236718,noise 40.69015004,-73.97127525,noise 40.86437703,-73.92653575,noise 40.86637626,-73.92825812,noise 40.74072541,-73.92391147,noise 40.64531666,-73.97054502,noise 40.73697856,-73.89863852,noise 40.76753406,-73.92087723,noise 40.80428651,-73.96698538,noise 40.66569819,-73.95090178,noise 40.71881923,-73.98712494,noise 40.68406402,-73.86321107,noise 40.75667818,-73.9943511,noise 40.759412,-73.99561425,noise 40.72488931,-73.97828105,noise 40.63857068,-73.94900487,noise 40.68249584,-73.95680965,noise 40.69403903,-73.96078695,noise 40.76753406,-73.92087723,noise 40.75791129,-73.97765304,noise 40.70963675,-73.83002488,noise 40.82951233,-73.88733553,noise 40.86225924,-73.89588436,noise 40.72110344,-73.99418095,noise 40.73434974,-74.00300933,noise 40.80966646,-73.94594413,noise 40.63998673,-73.94841286,noise 40.78229519,-73.96512584,noise 40.65504788,-73.95630123,noise 40.7993517,-73.95907791,noise 40.81726755,-73.9422565,noise 40.80389399,-73.96688805,noise 40.67462684,-73.87725059,noise 40.63540767,-74.12433103,noise 40.73784631,-74.00816965,noise 40.71159894,-73.76983199,noise 40.73425368,-74.00296964,noise 40.76037379,-73.92200114,noise 40.8554265,-73.93087265,noise 40.75624515,-73.92120466,noise 40.68388363,-73.86385323,noise 40.86165878,-73.92932247,noise 40.75546118,-73.88629853,noise 40.70252976,-73.81356446,noise 40.84264603,-73.91298848,noise 40.82897689,-73.87640215,noise 40.68158489,-73.97696835,noise 40.68403664,-73.86327242,noise 40.62973118,-73.92221507,noise 40.65380558,-73.93060584,noise 40.73600113,-73.95389186,noise 40.71118088,-73.93768087,noise 40.73687487,-73.99566265,noise 40.68230634,-73.92894289,noise 40.69058524,-73.95831169,noise 40.7221796,-73.94986445,noise 40.83627203,-73.8896261,noise 40.76134637,-73.98679184,noise 40.74578928,-73.98802918,noise 40.64702981,-74.01199635,noise 40.86418244,-73.90118146,noise 40.75791129,-73.97765304,noise 40.76343016,-73.99270081,noise 40.64678858,-74.0085693,noise 40.76753406,-73.92087723,noise 40.7394275,-74.00409214,noise 40.62856584,-73.92400332,noise 40.76723076,-73.9841192,noise 40.71153872,-73.94507144,noise 40.7993517,-73.95907791,noise 40.72114459,-73.99370114,noise 40.68403664,-73.86327242,noise 40.71072385,-73.96765574,noise 40.67344823,-73.96224466,noise 40.71205813,-73.95272529,noise 40.64510255,-73.97047305,noise 40.81802544,-73.91602656,noise 40.73029441,-73.98223737,noise 40.88956351,-73.89903879,noise 40.68406402,-73.86321107,noise 40.75754644,-73.97873965,noise 40.80416841,-73.96670009,noise 40.71118405,-73.94384533,noise 40.73784631,-74.00816965,noise 40.73552925,-73.93697251,noise 40.84276852,-73.93670827,noise 40.72201471,-73.9944298,noise 40.68592584,-73.92332497,noise 40.86396252,-73.89459101,noise 40.70669432,-73.92156621,noise 40.67653128,-73.88207804,noise 40.82000567,-73.95887372,noise 40.83573106,-73.91162427,noise 40.72072702,-73.98888867,noise 40.80416841,-73.96670009,noise 40.77458198,-73.93295678,noise 40.72981901,-73.97892168,noise 40.7778453,-73.9486563,noise 40.67303986,-73.96409426,noise 40.68496702,-73.86318397,noise 40.78311615,-73.95085853,noise 40.82415421,-73.9483821,noise 40.63606328,-73.96787928,noise 40.78540982,-73.9729458,noise 40.7168144,-73.95883279,noise 40.72258492,-73.98607077,noise 40.76753406,-73.92087723,noise 40.64330489,-73.94779051,noise 40.78229519,-73.96512584,noise 40.70295994,-73.74330623,noise 40.80448987,-73.96786664,noise 40.75444761,-73.93013645,noise 40.75791129,-73.97765304,noise 40.82642774,-73.95045076,noise 40.78311615,-73.95085853,noise 40.69405169,-73.82800911,noise 40.78229519,-73.96512584,noise 40.60328232,-73.98051736,noise 40.54938693,-74.15070863,noise 40.84797615,-73.89626816,noise 40.79904275,-73.94259015,noise 40.74519679,-73.99237801,noise 40.7993517,-73.95907791,noise 40.70358331,-73.92815921,noise 40.79965388,-73.95980371,noise 40.85072806,-73.93650912,noise 40.74517928,-73.98272782,noise 40.71138031,-73.94674525,noise 40.68114676,-73.84012783,noise 40.87052663,-73.890343,noise 40.83464715,-73.90503423,noise 40.65467493,-73.91703947,noise 40.80597242,-73.95302703,noise 40.80899154,-73.91463997,noise 40.72261464,-73.9411588,noise 40.73104235,-73.99960311,noise 40.81726755,-73.9422565,noise 40.75655776,-73.84513732,noise 40.69817381,-73.92454066,noise 40.80149916,-73.96225511,noise 40.79952439,-73.81907177,noise 40.73197541,-73.9938697,noise 40.740212,-73.98846682,noise 40.74042614,-73.9889756,noise 40.73957234,-73.98722919,noise 40.67836486,-73.77947909,noise 40.63765525,-74.07798873,noise 40.65166815,-73.9318586,noise 40.66460568,-73.97684445,noise 40.73273021,-73.9938155,noise 40.82679836,-73.82236162,noise 40.64738176,-73.99898378,noise 40.77596729,-73.91512641,noise 40.82642587,-73.95253202,noise 40.73481337,-73.99205444,noise 40.67915413,-73.98342993,noise 40.75655776,-73.84513732,noise 40.75483229,-73.85430928,noise 40.79892213,-73.96308729,noise 40.67934096,-73.88657253,noise 40.75655776,-73.84513732,noise 40.84459402,-73.93719807,noise 40.73595507,-73.99047744,noise 40.68563615,-73.92959197,noise 40.72981901,-73.97892168,noise 40.63083172,-74.07797355,noise 40.72488931,-73.97828105,noise 40.71444753,-73.99813145,noise 40.64183599,-74.01737876,noise 40.79206912,-73.9755325,noise 40.62573115,-73.92937058,noise 40.75655776,-73.84513732,noise 40.74457176,-73.94484572,noise 40.8088405,-73.92228029,noise 40.87772304,-73.86434949,noise 40.71153872,-73.94507144,noise 40.81541049,-73.90633696,noise 40.6613542,-73.9696801,noise 40.8458189,-73.93857399,noise 40.82500415,-73.80749072,noise 40.68428143,-73.98389738,noise 40.73443443,-73.98990393,noise 40.76428125,-73.9985813,noise 40.61525441,-74.08277827,noise 40.7168144,-73.95883279,noise 40.74553687,-73.92377605,noise 40.7308857,-73.99313013,noise 40.66317053,-73.93020321,noise 40.69338205,-73.96635514,noise 40.88767876,-73.86264382,noise 40.76753406,-73.92087723,noise 40.7205353,-73.99466441,noise 40.76753406,-73.92087723,noise 40.75906368,-73.8877182,noise 40.68186975,-73.94937197,noise 40.64319918,-73.95772512,noise 40.86269906,-73.92503365,noise 40.79084201,-73.9745651,noise 40.62863721,-74.08003528,noise 40.86606238,-73.92249904,noise 40.75873427,-73.86009782,noise 40.84245877,-73.91217553,noise 40.8238539,-73.94033581,noise 40.71795041,-73.95792662,noise 40.67486925,-73.98154192,noise 40.82572712,-73.94880363,noise 40.75718273,-73.8550477,noise 40.57543035,-73.97786888,noise 40.7816918,-73.84141021,noise 40.84350205,-73.93798339,noise 40.73566544,-73.84569466,noise 40.7312755,-73.99403574,noise 40.71387984,-73.95769833,noise 40.83627203,-73.8896261,noise 40.7349487,-73.8454257,noise 40.72037837,-73.98821412,noise 40.81533153,-73.81923111,noise 40.68129694,-73.93471268,noise 40.86676099,-73.92061093,noise 40.67915413,-73.98342993,noise 40.6471319,-74.00462341,noise 40.83464715,-73.90503423,noise 40.7152078,-73.99669213,noise 40.76373777,-73.99732506,noise 40.76375973,-73.99738282,noise 40.72951901,-73.99981238,noise 40.68768193,-73.87305466,noise 40.75753796,-73.82252828,noise 40.73619707,-73.84103136,noise 40.76943955,-73.95185782,noise 40.72123626,-73.97953769,noise 40.84550891,-73.93888149,noise 40.74087343,-73.98798315,noise 40.740212,-73.98846682,noise 40.7260542,-73.98536651,noise 40.71881923,-73.98712494,noise 40.65488243,-73.96188035,noise 40.68428143,-73.98389738,noise 40.84711145,-73.93818244,noise 40.74486372,-73.86356621,noise 40.67915413,-73.98342993,noise 40.76753406,-73.92087723,noise 40.69200105,-73.93384396,noise 40.7923959,-73.97631245,noise 40.80135906,-73.96187955,noise 40.7923959,-73.97631245,noise 40.6706508,-73.87575468,noise 40.66100598,-73.94775143,noise 40.79206912,-73.9755325,noise 40.82334822,-73.93908973,noise 40.75655776,-73.84513732,noise 40.60843515,-74.15543746,noise 40.72463334,-73.99858575,noise 40.71177784,-73.95193553,noise 40.7923959,-73.97631245,noise 40.76135772,-73.9905099,noise 40.85199617,-73.93178712,noise 40.74059086,-73.98939057,noise 40.86437703,-73.92653575,noise 40.79311047,-73.81941063,noise 40.69338205,-73.96635514,noise 40.73915035,-74.00110422,noise 40.70963675,-73.83002488,noise 40.65135315,-74.00856629,noise 40.68962075,-73.9731253,noise 40.70711579,-74.01067624,noise 40.87323038,-73.80848286,noise 40.77588308,-73.90235956,noise 40.71828718,-73.99191212,noise 40.72797585,-73.98811897,noise 40.75655776,-73.84513732,noise 40.72402675,-73.99909806,noise 40.73619707,-73.84103136,noise 40.68205648,-73.99603397,noise 40.79582739,-73.93501208,noise 40.73952289,-73.98685029,noise 40.64579768,-73.96335218,noise 40.84182637,-73.91433762,noise 40.68272042,-73.96329223,noise 40.83573106,-73.91162427,noise 40.57543035,-73.97786888,noise 40.74705161,-73.88665213,noise 40.75655776,-73.84513732,noise 40.6613542,-73.9696801,noise 40.65162237,-74.00447957,noise 40.75655776,-73.84513732,noise 40.70252976,-73.81356446,noise 40.80677147,-73.85469408,noise 40.58413031,-73.93277355,noise 40.71795041,-73.95792662,noise 40.79685118,-73.82093545,noise 40.62246173,-74.00516925,noise 40.79206912,-73.9755325,noise 40.83275397,-73.94373911,noise 40.79904275,-73.94259015,noise 40.83627203,-73.8896261,noise 40.73321576,-73.98992216,noise 40.77387325,-73.95418696,noise 40.73579626,-74.00155161,noise 40.79236783,-73.97345941,noise 40.65126557,-74.00390654,noise 40.68052296,-73.93479275,noise 40.64881234,-73.97748778,noise 40.67821199,-73.97923002,noise 40.76753406,-73.92087723,noise 40.90367938,-73.8508647,noise 40.7622605,-73.98800456,noise 40.81462181,-73.90857793,noise 40.73443443,-73.98990393,noise 40.81252322,-73.95096325,noise 40.70259527,-73.85529263,noise 40.69822499,-73.80633492,noise 40.82300988,-73.89586628,noise 40.81195594,-73.82665679,noise 40.71291268,-73.95503686,noise 40.83192699,-73.86614848,noise 40.72605395,-73.98353372,noise 40.68962075,-73.9731253,noise 40.65067379,-73.95214893,noise 40.71387984,-73.95769833,noise 40.819459,-73.95755896,noise 40.82869712,-73.89015177,noise 40.76223598,-73.98986362,noise 40.75655776,-73.84513732,noise 40.66059775,-73.99421506,noise 40.68272042,-73.96329223,noise 40.71923344,-73.96143951,noise 40.6942415,-73.93039787,noise 40.82833102,-73.8502025,noise 40.57530384,-73.97660903,noise 40.71667559,-73.98728768,noise 40.85404094,-73.88645173,noise 40.72097137,-73.93754184,noise 40.73875757,-74.0081048,noise 40.7296035,-73.98823774,noise 40.75546118,-73.88629853,noise 40.75873427,-73.86009782,noise 40.69878206,-73.76232444,noise 40.69054691,-73.95857856,noise 40.86463882,-73.919847,noise 40.76330097,-73.92820671,noise 40.84682457,-73.93556225,noise 40.86612043,-73.91910043,noise 40.84758002,-73.92318924,noise 40.83573106,-73.91162427,noise 40.81986557,-73.95852336,noise 40.73535385,-73.95511554,noise 40.71795041,-73.95792662,noise 40.58590694,-73.96545521,noise 40.74033035,-73.9924796,noise 40.76316922,-73.99015949,noise 40.65161949,-73.93313801,noise 40.84116095,-73.91645273,noise 40.84804607,-73.91096815,noise 40.80015915,-73.94684037,noise 40.71337461,-73.76296859,noise 40.68665145,-73.91313795,noise 40.8014262,-73.96593573,noise 40.69742251,-73.93479065,noise 40.5841823,-73.93249629,noise 40.84711145,-73.93818244,noise 40.84276852,-73.93670827,noise 40.68795657,-73.86831611,noise 40.84094371,-73.94275277,noise 40.75655776,-73.84513732,noise 40.71387984,-73.95769833,noise 40.73321576,-73.98992216,noise 40.79585513,-73.93552852,noise 40.79206912,-73.9755325,noise 40.75296188,-73.85119491,noise 40.76753406,-73.92087723,noise 40.75655776,-73.84513732,noise 40.81457807,-73.81488712,noise 40.72615804,-73.88614649,noise 40.77159735,-73.90757916,noise 40.68209912,-73.96033246,noise 40.75655776,-73.84513732,noise 40.74361057,-73.99970047,noise 40.68186975,-73.94937197,noise 40.80597242,-73.95302703,noise 40.64018175,-73.95530567,noise 40.72696348,-73.99388459,noise 40.84443114,-73.9354959,noise 40.72114459,-73.99370114,noise 40.71738274,-73.95216597,noise 40.70963675,-73.83002488,noise 40.79146905,-73.84998208,noise 40.80597242,-73.95302703,noise 40.846153,-73.93232442,noise 40.78867286,-73.94771624,noise 40.67915413,-73.98342993,noise 40.72725629,-73.98447148,noise 40.82300988,-73.89586628,noise 40.72349367,-73.98825325,noise 40.7923959,-73.97631245,noise 40.83455386,-73.90506327,noise 40.79904275,-73.94259015,noise 40.78536042,-73.97298193,noise 40.67376876,-73.77595052,noise 40.75655776,-73.84513732,noise 40.83578868,-73.91159167,noise 40.71953123,-73.81043608,noise 40.63722178,-73.95979706,noise 40.74883018,-73.98551309,noise 40.76334753,-73.98905845,noise 40.83255063,-73.94325867,noise 40.71944057,-73.84525604,noise 40.71814457,-73.99382768,noise 40.71810277,-73.93694931,noise 40.78536042,-73.97298193,noise 40.82130491,-73.95420128,noise 40.71562216,-73.99427522,noise 40.66071028,-73.99409972,noise 40.67486925,-73.98154192,noise 40.86475314,-73.88889552,noise 40.72279663,-73.98959904,noise 40.71138031,-73.94674525,noise 40.66364413,-73.98968396,noise 40.67700788,-73.96126203,noise 40.70287531,-73.90227534,noise 40.84191799,-73.93730541,noise 40.68230634,-73.92894289,noise 40.8226489,-73.91052159,noise 40.76270804,-73.98950256,noise 40.67467124,-73.94010155,noise 40.67700788,-73.96126203,noise 40.71574278,-74.00824269,noise 40.68597382,-73.97716875,noise 40.86450301,-73.88851271,noise 40.86437703,-73.92653575,noise 40.86437703,-73.92653575,noise 40.76233478,-73.98980224,noise 40.79604549,-73.93243315,noise 40.83738025,-73.94111874,noise 40.78909868,-73.90869242,noise 40.84804607,-73.91096815,noise 40.6613542,-73.9696801,noise 40.75272439,-73.98145177,noise 40.71144226,-73.95706142,noise 40.75655776,-73.84513732,noise 40.65675108,-73.96027185,noise 40.83738025,-73.94111874,noise 40.68379812,-73.8756112,noise 40.75655776,-73.84513732,noise 40.76334753,-73.98905845,noise 40.73767999,-73.92169212,noise 40.71531994,-73.98988518,noise 40.76270804,-73.98950256,noise 40.71961867,-73.99945166,noise 40.71574278,-74.00824269,noise 40.78025277,-73.94941993,noise 40.64006586,-74.01556228,noise 40.76233478,-73.98980224,noise 40.83130723,-73.94315855,noise 40.78893287,-73.94054045,noise 40.73524167,-74.00606204,noise 40.77425465,-73.90806289,noise 40.78865088,-73.94766931,noise 40.58327018,-73.96004915,noise 40.83738025,-73.94111874,noise 40.70963675,-73.83002488,noise 40.86437703,-73.92653575,noise 40.61466861,-74.01328719,noise 40.76324872,-73.98913066,noise 40.61254709,-74.01142108,noise 40.73713914,-73.70921876,noise 40.76331469,-73.92819586,noise 40.76265315,-73.98954228,noise 40.7424852,-73.99764349,noise 40.67676002,-73.97926652,noise 40.79564993,-73.9367025,noise 40.70547174,-73.94290878,noise 40.70933664,-74.0060164,noise 40.84454583,-73.93445126,noise 40.7737663,-73.90494414,noise 40.80137554,-73.96191927,noise 40.7168144,-73.95883279,noise 40.68464082,-73.88908745,noise 40.68272042,-73.96329223,noise 40.83819186,-73.94501385,noise 40.68272042,-73.96329223,noise 40.83738025,-73.94111874,noise 40.67934096,-73.88657253,noise 40.68510658,-73.97773153,noise 40.76627668,-73.95641958,noise 40.72856129,-73.85141537,noise 40.77138741,-73.95647762,noise 40.83738025,-73.94111874,noise 40.71574278,-74.00824269,noise 40.79564993,-73.9367025,noise 40.8531497,-73.90560063,noise 40.68230634,-73.92894289,noise 40.81056065,-73.93924954,noise 40.76627668,-73.95641958,noise 40.86394112,-73.86840148,noise 40.76550199,-73.98746608,noise 40.73595507,-73.99047744,noise 40.67747682,-73.9689373,noise 40.7215366,-73.98762948,noise 40.76324872,-73.98913066,noise 40.85199617,-73.93178712,noise 40.75474813,-73.98789041,noise 40.63327787,-73.96990903,noise 40.80003082,-73.95485522,noise 40.8645253,-73.92661874,noise 40.82930538,-73.87060554,noise 40.67567478,-73.96391619,noise 40.73141011,-73.99697276,noise 40.69803039,-73.93709451,noise 40.52320824,-74.23487515,noise 40.71719996,-73.83861643,noise 40.79648206,-73.96304891,noise 40.64018175,-73.95530567,noise 40.76367143,-73.98936885,noise 40.85035422,-73.94060482,noise 40.752541,-73.85260348,noise 40.71983209,-73.98754322,noise 40.65146751,-73.93617619,noise 40.79339574,-73.9404245,noise 40.83738025,-73.94111874,noise 40.78909868,-73.90869242,noise 40.73560607,-73.71632317,noise 40.70097792,-73.89220875,noise 40.70383481,-73.93097214,noise 40.67508646,-73.96102521,noise 40.86611677,-73.88558509,noise 40.8752597,-73.85424067,noise 40.76579016,-73.98728192,noise 40.71783505,-73.95772468,noise 40.85205828,-73.93477641,noise 40.68220447,-73.93787741,noise 40.71919324,-73.99984127,noise 40.76331469,-73.92819586,noise 40.71355468,-73.96188648,noise 40.76331469,-73.92819586,noise 40.81548863,-73.94726888,noise 40.80340346,-73.94693892,noise 40.65972716,-73.98791847,noise 40.76761182,-73.91825619,noise 40.85518782,-73.93106087,noise 40.71795041,-73.95792662,noise 40.8656487,-73.92364561,noise 40.78884172,-73.81380307,noise 40.70716899,-73.96630851,noise 40.82538549,-73.92618134,noise 40.76568266,-73.98364305,noise 40.66364413,-73.98968396,noise 40.67700788,-73.96126203,noise 40.75320484,-73.98223126,noise 40.79585513,-73.93552852,noise 40.66364413,-73.98968396,noise 40.64693402,-73.96336957,noise 40.83738025,-73.94111874,noise 40.86690289,-73.92344532,noise 40.71111622,-73.95867038,noise 40.71838653,-73.95713271,noise 40.80468946,-73.95705907,noise 40.65954358,-73.90230638,noise 40.71562216,-73.99427522,noise 40.80729251,-73.94645539,noise 40.86611677,-73.88558509,noise 40.74034957,-73.99255538,noise 40.72110344,-73.99418095,noise 40.86475314,-73.88889552,noise 40.67628864,-73.98379116,noise 40.85064236,-73.94049974,noise 40.69956072,-73.94540589,noise 40.86394112,-73.86840148,noise 40.76233478,-73.98980224,noise 40.71121192,-73.96593854,noise 40.83083819,-73.91659217,noise 40.76349768,-73.87813729,noise 40.76848584,-73.95550116,noise 40.76349768,-73.87813729,noise 40.71355468,-73.96188648,noise 40.73240906,-74.00639735,noise 40.74392103,-73.91329425,noise 40.8656487,-73.92364561,noise 40.76265315,-73.98954228,noise 40.83529861,-73.91694796,noise 40.7215366,-73.98762948,noise 40.86437703,-73.92653575,noise 40.87618635,-73.86699955,noise 40.73002665,-73.99418378,noise 40.75655776,-73.84513732,noise 40.85512964,-73.93014998,noise 40.71954389,-73.84250687,noise 40.85064236,-73.94049974,noise 40.78706442,-73.94193603,noise 40.75686026,-73.96709552,noise 40.76753406,-73.92087723,noise 40.75846113,-73.98286876,noise 40.81726755,-73.9422565,noise 40.76154468,-73.92445081,noise 40.75546118,-73.88629853,noise 40.81726755,-73.9422565,noise 40.72278878,-74.00459619,noise 40.76227854,-73.92601303,noise 40.80597242,-73.95302703,noise 40.69089516,-73.80075614,noise 40.80253328,-73.95302584,noise 40.74744711,-73.78778217,noise 40.869552,-73.88174298,noise 40.84855984,-73.91911818,noise 40.68242682,-73.93793128,noise 40.7454433,-73.98673003,noise 40.72933786,-74.0010319,noise 40.73937514,-74.00805075,noise 40.71562216,-73.99427522,noise 40.73249706,-74.00183297,noise 40.79925228,-73.93906121,noise 40.7221652,-73.98815969,noise 40.73358925,-74.00734283,noise 40.68829092,-73.95204982,noise 40.8061098,-73.95338454,noise 40.74386434,-73.71270803,noise 40.72603306,-73.99485519,noise 40.74420325,-74.00669441,noise 40.71299888,-73.96633081,noise 40.76294956,-73.98932203,noise 40.87176835,-73.91815708,noise 40.61596635,-74.08511679,noise 40.68383109,-73.87563998,noise 40.61419357,-74.10157124,noise 40.74263781,-73.95358052,noise 40.66847721,-73.93670423,noise 40.80597242,-73.95302703,noise 40.73293592,-73.95564036,noise 40.6917582,-73.94155385,noise 40.58966104,-74.06730402,noise 40.73358925,-74.00734283,noise 40.86941776,-73.91657993,noise 40.71986976,-73.76080983,noise 40.82951233,-73.88733553,noise 40.86281537,-73.90755001,noise 40.7272901,-73.99363922,noise 40.82513729,-73.94944724,noise 40.71676695,-73.96471281,noise 40.76233478,-73.98980224,noise 40.84682457,-73.93556225,noise 40.76242266,-73.99028594,noise 40.74173312,-74.00308184,noise 40.76804592,-73.9839385,noise 40.58340744,-73.96010667,noise 40.64018175,-73.95530567,noise 40.87100884,-73.91925358,noise 40.68379812,-73.8756112,noise 40.76550199,-73.98746608,noise 40.69814607,-73.99144213,noise 40.82130491,-73.95420128,noise 40.7170331,-73.95643735,noise 40.76804592,-73.9839385,noise 40.76038872,-73.98934771,noise 40.77523744,-73.91180204,noise 40.76568266,-73.98364305,noise 40.74391735,-73.98786712,noise 40.52320824,-74.23487515,noise 40.76155558,-73.99406912,noise 40.61901245,-73.92587647,noise 40.71422189,-73.9625859,noise 40.75648094,-73.85573865,noise 40.71676695,-73.96471281,noise 40.59034214,-74.06662421,noise 40.78423707,-73.94706974,noise 40.70340619,-73.91777589,noise 40.68272042,-73.96329223,noise 40.68829839,-73.95708715,noise 40.57912479,-73.83570293,noise 40.84963398,-73.93351369,noise 40.76038872,-73.98934771,noise 40.72114459,-73.99370114,noise 40.63256821,-74.11778664,noise 40.7666057,-73.91610222,noise 40.78423707,-73.94706974,noise 40.68844342,-73.99297945,noise 40.75546118,-73.88629853,noise 40.79946159,-73.95936318,noise 40.71690963,-73.95655648,noise 40.76753406,-73.92087723,noise 40.61049437,-74.16483889,noise 40.78838599,-73.93923728,noise 40.68220447,-73.93787741,noise 40.71574278,-74.00824269,noise 40.8735232,-73.85064668,noise 40.80927533,-73.943069,noise 40.72663962,-73.99412996,noise 40.8088405,-73.92228029,noise 40.81726755,-73.9422565,noise 40.64998168,-73.83758618,noise 40.73595507,-73.99047744,noise 40.76808008,-73.79115328,noise 40.70299353,-73.9947091,noise 40.73595507,-73.99047744,noise 40.85357934,-73.90405651,noise 40.81453554,-73.95914444,noise 40.84382801,-73.93676147,noise 40.75064532,-74.00339625,noise 40.70383481,-73.93097214,noise 40.82382294,-73.94428864,noise 40.67163765,-73.95033504,noise 40.71562216,-73.99427522,noise 40.71690963,-73.95655648,noise 40.74322006,-73.91556148,noise 40.7348848,-73.99312611,noise 40.77090216,-73.7352894,noise 40.71121192,-73.96593854,noise 40.72114459,-73.99370114,noise 40.71302067,-73.79140155,noise 40.64018175,-73.95530567,noise 40.67458886,-73.95874709,noise 40.75033795,-73.99851663,noise 40.73557337,-73.9885001,noise 40.64492688,-73.97043349,noise 40.81726755,-73.9422565,noise 40.71308054,-73.96407269,noise 40.71299888,-73.96633081,noise 40.82469691,-73.8918313,noise 40.74297597,-73.98853852,noise 40.6895046,-73.85245796,noise 40.69735702,-73.79182561,noise 40.85860258,-73.90457344,noise 40.76550199,-73.98746608,noise 40.86385196,-73.92523119,noise 40.69511525,-73.93192959,noise 40.75732873,-73.92034792,noise 40.67770929,-73.9507992,noise 40.6817035,-73.98012308,noise 40.68804201,-73.94774827,noise 40.71025074,-73.99616575,noise 40.83811767,-73.94483683,noise 40.77620501,-73.90330506,noise 40.7276114,-74.00127,noise 40.68335734,-73.99273842,noise 40.73595507,-73.99047744,noise 40.71138031,-73.94674525,noise 40.78084021,-73.94957114,noise 40.71070456,-73.96739965,noise 40.71894075,-73.95653712,noise 40.79694199,-73.96827479,noise 40.7572323,-73.98979219,noise 40.82130491,-73.95420128,noise 40.69334103,-73.96688165,noise 40.71562216,-73.99427522,noise 40.71690963,-73.95655648,noise 40.73196601,-73.85892724,noise 40.72349367,-73.98825325,noise 40.61755327,-73.94205466,noise 40.74910473,-73.9861735,noise 40.74705161,-73.88665213,noise 40.69365347,-73.90627722,noise 40.71299888,-73.96633081,noise 40.87100884,-73.91925358,noise 40.69769883,-73.99386924,noise 40.72349367,-73.98825325,noise 40.71562216,-73.99427522,noise 40.81726755,-73.9422565,noise 40.82840847,-73.90849394,noise 40.86221618,-73.92969425,noise 40.84657657,-73.9131496,noise 40.72349367,-73.98825325,noise 40.74910473,-73.9861735,noise 40.68180409,-73.94986236,noise 40.85366987,-73.90400216,noise 40.82772698,-73.9408888,noise 40.67358024,-73.97287941,noise 40.86437703,-73.92653575,noise 40.7623246,-73.9764531,noise 40.760487,-73.98464783,noise 40.6783534,-74.01023179,noise 40.77442128,-73.97965854,noise 40.87378956,-73.90526036,noise 40.77224057,-73.98999568,noise 40.6657601,-73.88412287,noise 40.86437703,-73.92653575,noise 40.8208402,-73.8726489,noise 40.82130491,-73.95420128,noise 40.76075309,-73.98352514,noise 40.76105786,-73.98433004,noise 40.82469691,-73.8918313,noise 40.71025074,-73.99616575,noise 40.76011649,-73.98483562,noise 40.86437703,-73.92653575,noise 40.68111021,-73.91015626,noise 40.76116764,-73.98424699,noise 40.75607293,-73.88055479,noise 40.72579798,-73.97916828,noise 40.64575255,-73.9810563,noise 40.83022246,-73.94768359,noise 40.71308054,-73.96407269,noise 40.66340092,-73.9778433,noise 40.82788933,-73.89820373,noise 40.71562216,-73.99427522,noise 40.85737258,-73.88601586,noise 40.86437703,-73.92653575,noise 40.71308054,-73.96407269,noise 40.75725199,-73.86935222,noise 40.72381265,-73.99813119,noise 40.71758787,-73.95731359,noise 40.67767862,-73.9981469,noise 40.71562216,-73.99427522,noise 40.82469691,-73.8918313,noise 40.57284687,-73.99940247,noise 40.84854504,-73.90678188,noise 40.76755781,-73.91199994,noise 40.71252561,-73.96255078,noise 40.84356338,-73.91756651,noise 40.75059207,-73.9837442,noise 40.75689594,-73.96707023,noise 40.70285592,-73.81159434,noise 40.72579798,-73.97916828,noise 40.79360683,-73.95160198,noise 40.69222715,-73.93090843,noise 40.82959873,-73.94620979,noise 40.75113666,-74.00165663,noise 40.71758787,-73.95731359,noise 40.78311615,-73.95085853,noise 40.68234745,-73.94370016,noise 40.90348109,-73.85034061,noise 40.8645253,-73.92661874,noise 40.73024637,-74.00101748,noise 40.82130491,-73.95420128,noise 40.76550199,-73.98746608,noise 40.86165579,-73.92459738,noise 40.83573106,-73.91162427,noise 40.71159894,-73.76983199,noise 40.67767862,-73.9981469,noise 40.63602447,-74.13477006,noise 40.86358368,-73.86547739,noise 40.71159894,-73.76983199,noise 40.71162426,-73.95939148,noise 40.77230057,-73.98623728,noise 40.70554601,-74.00794928,noise 40.86613852,-73.92558294,noise 40.75605517,-73.91276951,noise 40.76761182,-73.91825619,noise 40.86609468,-73.92570591,noise 40.74783445,-73.83300233,noise 40.72998837,-74.00049791,noise 40.70543919,-73.95633673,noise 40.66881463,-73.93158154,noise 40.77230057,-73.98623728,noise 40.85169711,-73.93199346,noise 40.71138031,-73.94674525,noise 40.77230057,-73.98623728,noise 40.64018175,-73.95530567,noise 40.55684448,-74.15491438,noise 40.58832109,-73.97075378,noise 40.83692357,-73.93908092,noise 40.8648164,-73.92267041,noise 40.77171576,-73.98485464,noise 40.86941776,-73.91657993,noise 40.71996962,-73.95544697,noise 40.66820407,-73.9506476,noise 40.77294254,-73.98392288,noise 40.68630361,-73.93037731,noise 40.8645253,-73.92661874,noise 40.80031134,-73.93830175,noise 40.66064331,-73.96062997,noise 40.77425465,-73.90806289,noise 40.72068841,-73.98711375,noise 40.7192033,-73.98549789,noise 40.75624515,-73.92120466,noise 40.85032261,-73.93301057,noise 40.85382274,-73.91707665,noise 40.68651009,-73.85464605,noise 40.71048673,-73.99465079,noise 40.75014671,-73.8607258,noise 40.71138031,-73.94674525,noise 40.68272042,-73.96329223,noise 40.72726152,-73.98265669,noise 40.62838143,-74.02904041,noise 40.75624515,-73.92120466,noise 40.70242315,-73.76574494,noise 40.67105561,-73.93370252,noise 40.71138031,-73.94674525,noise 40.85433322,-73.88503422,noise 40.83707717,-73.94429561,noise 40.86437703,-73.92653575,noise 40.73024637,-74.00101748,noise 40.66919734,-73.89645248,noise 40.72998837,-74.00049791,noise 40.85941127,-73.88538695,noise 40.85032261,-73.93301057,noise 40.71708494,-73.9914433,noise 40.82382294,-73.94428864,noise 40.7063803,-74.00950391,noise 40.71563219,-73.95366786,noise 40.66064331,-73.96062997,noise 40.82849131,-73.94940133,noise 40.6508673,-73.9633602,noise 40.81231515,-73.95222779,noise 40.64029208,-73.95673247,noise 40.68244394,-73.96570085,noise 40.76135772,-73.9905099,noise 40.75655776,-73.84513732,noise 40.82781896,-73.87418207,noise 40.64440181,-73.9518075,noise 40.71357016,-73.95902597,noise 40.84711145,-73.93818244,noise 40.87303202,-73.87625879,noise 40.72592307,-74.00851093,noise 40.86637626,-73.92825812,noise 40.70281484,-73.90217444,noise 40.86637626,-73.92825812,noise 40.69688086,-73.99328871,noise 40.75989235,-73.99612319,noise 40.69205443,-73.98253964,noise 40.6504442,-74.01309972,noise 40.82309091,-73.9404196,noise 40.84854504,-73.90678188,noise 40.655975,-73.95471844,noise 40.75036813,-74.00223047,noise 40.70066107,-73.92966987,noise 40.71823482,-73.98931116,noise 40.81586533,-73.91985878,noise 40.65216866,-73.94971885,noise 40.71299888,-73.96633081,noise 40.72349367,-73.98825325,noise 40.83181519,-73.94354477,noise 40.84963398,-73.93351369,noise 40.59193341,-74.06785001,noise 40.759412,-73.99561425,noise 40.75391127,-73.92402995,noise 40.69177972,-73.96853037,noise 40.82302379,-73.93804945,noise 40.69347455,-73.73389112,noise 40.70954259,-73.99616219,noise 40.73653149,-73.9907516,noise 40.85321491,-73.92745177,noise 40.85186221,-73.92815088,noise 40.63820736,-74.01750752,noise 40.83561763,-73.94565201,noise 40.65577708,-73.91531536,noise 40.68548265,-73.88006467,noise 40.84191799,-73.93730541,noise 40.66919734,-73.89645248,noise 40.76320025,-73.92108092,noise 40.625536,-73.99840773,noise 40.6658646,-73.98904921,noise 40.73853272,-74.00387196,noise 40.75989235,-73.99612319,noise 40.72193981,-73.98539267,noise 40.67094629,-73.92137753,noise 40.65106573,-73.94477166,noise 40.63980683,-73.95130637,noise 40.89864108,-73.86737783,noise 40.76007077,-73.99654912,noise 40.75635274,-73.87025997,noise 40.7657348,-73.98360333,noise 40.67499651,-73.97273102,noise 40.69628785,-73.99118632,noise 40.74216273,-73.8044317,noise 40.82094842,-73.95502529,noise 40.69624384,-73.99003593,noise 40.69011864,-73.94524414,noise 40.69958396,-73.92779567,noise 40.88694359,-73.90707161,noise 40.85966453,-73.9042791,noise 40.78889815,-73.94243278,noise 40.56109158,-74.16982752,noise 40.71176537,-73.94268697,noise 40.72326039,-73.98843007,noise 40.76157383,-73.98396172,noise 40.59915804,-73.9892546,noise 40.69962771,-73.93202957,noise 40.75237424,-73.87910327,noise 40.69002993,-73.99356705,noise 40.69624384,-73.99003593,noise 40.81401074,-73.94464728,noise 40.69192208,-73.97894808,noise 40.70655072,-73.94349216,noise 40.7042186,-73.92165207,noise 40.75800513,-73.96819227,noise 40.7205353,-73.99466441,noise 40.68187917,-73.7660803,noise 40.72349367,-73.98825325,noise 40.76753406,-73.92087723,noise 40.80238678,-73.95056979,noise 40.84954229,-73.9363982,noise 40.67486925,-73.98154192,noise 40.79314442,-73.93749941,noise 40.69336015,-73.96658234,noise 40.71678366,-73.96552085,noise 40.72970289,-73.77936693,noise 40.85654487,-73.92846393,noise 40.72607043,-73.94710151,noise 40.8216015,-73.95461657,noise 40.88956351,-73.89903879,noise 40.76223598,-73.98986362,noise 40.74578928,-73.98802918,noise 40.76220951,-73.87225202,noise 40.67350675,-73.95693444,noise 40.72579798,-73.97916828,noise 40.70172438,-73.94140806,noise 40.82326405,-73.9527619,noise 40.76331469,-73.92819586,noise 40.7428118,-73.99657889,noise 40.70522812,-73.90623209,noise 40.74705161,-73.88665213,noise 40.69701248,-73.99136654,noise 40.69214754,-73.96860593,noise 40.71796862,-73.98974409,noise 40.81895023,-73.93730898,noise 40.86437703,-73.92653575,noise 40.7110115,-73.95063394,noise 40.67801438,-73.86777693,noise 40.71680457,-73.95458693,noise 40.71962089,-73.81323166,noise 40.63975499,-73.95203425,noise 40.65809491,-73.95034512,noise 40.69541016,-73.82068861,noise 40.76330097,-73.92820671,noise 40.74729178,-73.86501567,noise 40.69685616,-73.99332117,noise 40.81337978,-73.95146477,noise 40.75729157,-73.83400373,noise 40.7657348,-73.98360333,noise 40.7296035,-73.98823774,noise 40.74521022,-73.97246049,noise 40.59655143,-73.97703729,noise 40.68865836,-73.951213,noise 40.84261213,-73.93680961,noise 40.73249706,-74.00183297,noise 40.84632986,-73.90652836,noise 40.64029208,-73.95673247,noise 40.70252976,-73.81356446,noise 40.6776512,-73.94976814,noise 40.68244394,-73.96570085,noise 40.72124619,-73.99457056,noise 40.71558384,-74.00303013,noise 40.84963398,-73.93351369,noise 40.65216866,-73.94971885,noise 40.69462976,-73.91583578,noise 40.77279783,-73.91610164,noise 40.66064331,-73.96062997,noise 40.83627203,-73.8896261,noise 40.82668591,-73.93931793,noise 40.67338343,-73.96564783,noise 40.81726755,-73.9422565,noise 40.83327569,-73.92919362,noise 40.71796862,-73.98974409,noise 40.6538725,-73.95470905,noise 40.81285417,-73.91572602,noise 40.72488931,-73.97828105,noise 40.76346859,-73.99281632,noise 40.67861423,-73.91244178,noise 40.73249706,-74.00183297,noise 40.64739883,-73.95113146,noise 40.73653149,-73.9907516,noise 40.85572177,-73.85550532,noise 40.7009771,-73.91781856,noise 40.74406051,-74.00680988,noise 40.66065514,-73.99054225,noise 40.76223598,-73.98986362,noise 40.64090408,-74.00034231,noise 40.7454433,-73.98673003,noise 40.70277711,-73.92938633,noise 40.72114459,-73.99370114,noise 40.7261759,-74.00054479,noise 40.76753406,-73.92087723,noise 40.73249706,-74.00183297,noise 40.85134869,-73.9322613,noise 40.84183761,-73.93588874,noise 40.70071878,-73.92978883,noise 40.73659773,-73.99911954,noise 40.759412,-73.99561425,noise 40.73434974,-74.00300933,noise 40.87823133,-73.90299396,noise 40.66919734,-73.89645248,noise 40.67551815,-73.96333585,noise 40.72349367,-73.98825325,noise 40.74527188,-73.97844042,noise 40.70281027,-73.92539017,noise 40.86437703,-73.92653575,noise 40.72591124,-73.9836492,noise 40.65406994,-73.96175828,noise 40.73186463,-73.9837596,noise 40.69440035,-73.84753554,noise 40.54299487,-74.17719338,noise 40.73186463,-73.9837596,noise 40.80991804,-73.80358599,noise 40.73540013,-73.98565674,noise 40.87091201,-73.89153556,noise 40.6742001,-73.98550046,noise 40.71086346,-73.95800323,noise 40.64631775,-73.9519899,noise 40.87308706,-73.85298712,noise 40.67397505,-73.98569879,noise 40.76349768,-73.87813729,noise 40.76331469,-73.92819586,noise 40.733702,-74.00221909,noise 40.86256277,-73.92650883,noise 40.72568792,-73.9776891,noise 40.70999601,-73.95771883,noise 40.65662476,-73.96009532,noise 40.7137782,-73.95746753,noise 40.86581797,-73.92648716,noise 40.71387984,-73.95769833,noise 40.7690047,-73.99235001,noise 40.72411653,-73.98638072,noise 40.67338343,-73.96564783,noise 40.69464039,-73.84847981,noise 40.71977238,-73.99932539,noise 40.76568266,-73.98364305,noise 40.71744753,-73.93835681,noise 40.84273704,-73.88524582,noise 40.70831888,-73.87217134,noise 40.77216233,-73.92596956,noise 40.63597511,-73.97814065,noise 40.76349768,-73.87813729,noise 40.68258088,-73.96470206,noise 40.74392103,-73.91329425,noise 40.76135772,-73.9905099,noise 40.71379269,-73.95958495,noise 40.70066107,-73.92966987,noise 40.74527188,-73.97844042,noise 40.63597511,-73.97814065,noise 40.70383481,-73.93097214,noise 40.90367938,-73.8508647,noise 40.72579598,-73.98373582,noise 40.67915413,-73.98342993,noise 40.8645253,-73.92661874,noise 40.69999177,-73.91411595,noise 40.8069869,-73.96554276,noise 40.76243913,-73.99032565,noise 40.7226142,-73.97991607,noise 40.65662476,-73.96009532,noise 40.68719196,-73.97461545,noise 40.84627367,-73.90833563,noise 40.68428143,-73.98389738,noise 40.69898345,-73.92875201,noise 40.76788911,-73.98151253,noise 40.75624515,-73.92120466,noise 40.85490701,-73.92964414,noise 40.76568266,-73.98364305,noise 40.71455156,-73.93789415,noise 40.69459975,-73.90886511,noise 40.68782001,-73.96269446,noise 40.79431351,-73.97203568,noise 40.86437703,-73.92653575,noise 40.71965964,-73.99306996,noise 40.73249706,-74.00183297,noise 40.76331469,-73.92819586,noise 40.76242266,-73.99028594,noise 40.76815093,-73.99028511,noise 40.84941176,-73.93367656,noise 40.76753406,-73.92087723,noise 40.71527342,-73.99168522,noise 40.5991961,-73.98586965,noise 40.71010746,-73.84870075,noise 40.70071878,-73.92978883,noise 40.69486581,-73.89572023,noise 40.8458189,-73.93857399,noise 40.76753406,-73.92087723,noise 40.6742001,-73.98550046,noise 40.7700435,-73.93056415,noise 40.70071878,-73.92978883,noise 40.76685203,-73.95374775,noise 40.67737922,-73.96369174,noise 40.70071878,-73.92978883,noise 40.79971671,-73.94013712,noise 40.76462701,-73.99554532,noise 40.70605642,-73.94300566,noise 40.82572712,-73.94880363,noise 40.67964429,-73.90989144,noise 40.85680824,-73.92826483,noise 40.79546254,-73.94602789,noise 40.63404998,-74.02674784,noise 40.69401094,-73.86309329,noise 40.66919734,-73.89645248,noise 40.88609817,-73.90700408,noise 40.76135772,-73.9905099,noise 40.73249706,-74.00183297,noise 40.7475205,-73.9824024,noise 40.72114459,-73.99370114,noise 40.69970015,-73.9442445,noise 40.8343253,-73.94095159,noise 40.67618659,-73.98062585,noise 40.86244343,-73.92038471,noise 40.69898345,-73.92875201,noise 40.74276218,-73.8960278,noise 40.72951901,-73.99981238,noise 40.63521926,-73.99091696,noise 40.63404998,-74.02674784,noise 40.79971671,-73.94013712,noise 40.80690598,-73.94748519,noise 40.81986557,-73.95852336,noise 40.76568266,-73.98364305,noise 40.69747888,-73.93744124,noise 40.87330197,-73.8536375,noise 40.70676194,-73.9491114,noise 40.72136411,-73.99266213,noise 40.76753406,-73.92087723,noise 40.88956351,-73.89903879,noise 40.77402161,-73.95455874,noise 40.82679836,-73.82236162,noise 40.79301062,-73.97582468,noise 40.71299888,-73.96633081,noise 40.71455156,-73.93789415,noise 40.54049965,-74.17730909,noise 40.71138031,-73.94674525,noise 40.7938415,-73.97239342,noise 40.76349768,-73.87813729,noise 40.71205737,-73.96614372,noise 40.85306338,-73.93099439,noise 40.72327886,-73.98252424,noise 40.77855182,-73.95124824,noise 40.71909137,-73.99149355,noise 40.71357016,-73.95902597,noise 40.70241603,-73.92695948,noise 40.72349367,-73.98825325,noise 40.67915413,-73.98342993,noise 40.71388608,-73.95979772,noise 40.72488931,-73.97828105,noise 40.71881923,-73.98712494,noise 40.65972716,-73.98791847,noise 40.79187048,-73.97113746,noise 40.71357016,-73.95902597,noise 40.77949694,-73.95349344,noise 40.71796862,-73.98974409,noise 40.74294904,-73.99646701,noise 40.71299888,-73.96633081,noise 40.69451199,-73.90895178,noise 40.72951901,-73.99981238,noise 40.73883925,-73.9852338,noise 40.77850171,-73.95632493,noise 40.81904474,-73.81723392,noise 40.67444808,-73.90944062,noise 40.67551815,-73.96333585,noise 40.71815017,-73.88473884,noise 40.7261759,-74.00054479,noise 40.86437703,-73.92653575,noise 40.83627203,-73.8896261,noise 40.70110378,-73.92238425,noise 40.81955851,-73.81755045,noise 40.70071878,-73.92978883,noise 40.7102771,-74.0163145,noise 40.76362248,-73.99701462,noise 40.61838507,-73.93224197,noise 40.74102762,-73.99416117,noise 40.83198006,-73.9439349,noise 40.60323171,-74.00491207,noise 40.79398146,-73.97228141,noise 40.7159289,-73.96191037,noise 40.86465459,-73.86354822,noise 40.7623246,-73.9764531,noise 40.71752978,-74.00543996,noise 40.7170331,-73.95643735,noise 40.66917217,-73.97304342,noise 40.7170331,-73.95643735,noise 40.79934282,-73.93898167,noise 40.74771117,-73.85550501,noise 40.72130932,-73.99470404,noise 40.83022246,-73.94768359,noise 40.67259836,-73.95728471,noise 40.66917217,-73.97304342,noise 40.84385794,-73.83043008,noise 40.86980158,-73.84455541,noise 40.70071878,-73.92978883,noise 40.71138031,-73.94674525,noise 40.6670974,-73.99465067,noise 40.71749685,-74.00536781,noise 40.69459975,-73.90886511,noise 40.67915413,-73.98342993,noise 40.70077618,-73.91332872,noise 40.6322325,-74.1614375,noise 40.76753406,-73.92087723,noise 40.74527188,-73.97844042,noise 40.7192033,-73.98549789,noise 40.72847641,-73.86495276,noise 40.80174149,-73.96475806,noise 40.62856584,-73.92400332,noise 40.70685211,-73.9481952,noise 40.86645691,-73.92145732,noise 40.72114459,-73.99370114,noise 40.81986557,-73.95852336,noise 40.75657744,-73.96669139,noise 40.78084021,-73.94957114,noise 40.84963398,-73.93351369,noise 40.6677347,-73.94459925,noise 40.77427405,-73.95435999,noise 40.62868376,-73.92384106,noise 40.72981901,-73.97892168,noise 40.63436537,-74.13582957,noise 40.63437841,-73.96946177,noise 40.67106242,-73.73111464,noise 40.74527188,-73.97844042,noise 40.68101243,-73.85474456,noise 40.87308706,-73.85298712,noise 40.75686026,-73.96709552,noise 40.62501047,-74.03042587,noise 40.85654487,-73.92846393,noise 40.76963871,-73.99189144,noise 40.72469171,-73.9784146,noise 40.8512885,-73.89878603,noise 40.76931759,-73.9921117,noise 40.78311615,-73.95085853,noise 40.7690047,-73.99235001,noise 40.67856564,-73.88255394,noise 40.74507493,-73.90428495,noise 40.74202303,-73.91894077,noise 40.71558384,-74.00303013,noise 40.76963871,-73.99189144,noise 40.75064532,-74.00339625,noise 40.71299888,-73.96633081,noise 40.70383481,-73.93097214,noise 40.76227854,-73.92601303,noise 40.71895909,-73.98608957,noise 40.82328483,-73.88760983,noise 40.69451199,-73.90895178,noise 40.61023813,-73.98370275,noise 40.88071754,-73.87661696,noise 40.69005181,-73.99220401,noise 40.76331469,-73.92819586,noise 40.62518867,-74.03121488,noise 40.73540013,-73.98565674,noise 40.86437703,-73.92653575,noise 40.63597511,-73.97814065,noise 40.79756981,-73.93914582,noise 40.72784609,-73.98222719,noise 40.76932033,-73.99212253,noise 40.85860258,-73.90457344,noise 40.76349768,-73.87813729,noise 40.85680824,-73.92826483,noise 40.70826897,-74.00508934,noise 40.75158734,-73.82612812,noise 40.63597511,-73.97814065,noise 40.67575575,-73.95975942,noise 40.76932033,-73.99212253,noise 40.85654487,-73.92846393,noise 40.74298081,-73.98327331,noise 40.73949114,-73.92111983,noise 40.71299888,-73.96633081,noise 40.76368791,-73.98940855,noise 40.77242188,-73.95570793,noise 40.7556172,-73.8564191,noise 40.84782013,-73.91342629,noise 40.69042813,-73.93354262,noise 40.79843224,-73.93517929,noise 40.68237476,-73.99342718,noise 40.72951901,-73.99981238,noise 40.7690047,-73.99235001,noise 40.74383196,-73.98525434,noise 40.7107541,-73.96785411,noise 40.76334753,-73.98905845,noise 40.7264366,-74.00353573,noise 40.76963871,-73.99189144,noise 40.63326889,-74.02108025,noise 40.6742001,-73.98550046,noise 40.6864173,-73.94239866,noise 40.75930953,-73.98485746,noise 40.76349768,-73.87813729,noise 40.61567436,-74.03423242,noise 40.76843902,-73.98905039,noise 40.88474816,-73.90747611,noise 40.76942471,-73.99333916,noise 40.73006509,-73.99451572,noise 40.76843902,-73.98905039,noise 40.78311615,-73.95085853,noise 40.86606238,-73.92249904,noise 40.705667,-73.9334012,noise 40.62269783,-74.02540685,noise 40.75897464,-73.91899955,noise 40.643962,-73.89072256,noise 40.77850171,-73.95632493,noise 40.83771453,-73.93999451,noise 40.76227854,-73.92601303,noise 40.7690047,-73.99235001,noise 40.73481857,-73.98864096,noise 40.72931039,-73.99788569,noise 40.72617622,-73.86488527,noise 40.68230634,-73.92894289,noise 40.79930002,-73.94112714,noise 40.78311615,-73.95085853,noise 40.7690047,-73.99235001,noise 40.83036236,-73.86602154,noise 40.76932033,-73.99212253,noise 40.71299888,-73.96633081,noise 40.76943012,-73.99203226,noise 40.72273495,-73.97982945,noise 40.73841163,-73.84676726,noise 40.7690047,-73.99235001,noise 40.72951901,-73.99981238,noise 40.84711145,-73.93818244,noise 40.76331469,-73.92819586,noise 40.63482269,-73.95224677,noise 40.68230634,-73.92894289,noise 40.63597511,-73.97814065,noise 40.72279663,-73.98959904,noise 40.7690047,-73.99235001,noise 40.67358845,-73.96295477,noise 40.85951961,-73.93214814,noise 40.63606328,-73.96787928,noise 40.76550199,-73.98746608,noise 40.75676421,-73.96715332,noise 40.7690047,-73.99235001,noise 40.86567825,-73.92689224,noise 40.73349614,-73.997467,noise 40.62432183,-73.98496374,noise 40.76963871,-73.99189144,noise 40.76294956,-73.98932203,noise 40.69822499,-73.80633492,noise 40.76779146,-73.99142596,noise 40.63172904,-74.12489341,noise 40.7623246,-73.9764531,noise 40.84133806,-73.9358567,noise 40.72411653,-73.98638072,noise 40.7577196,-73.94590326,noise 40.76848037,-73.99111901,noise 40.71522127,-73.99171409,noise 40.77031388,-73.99140036,noise 40.76963871,-73.99189144,noise 40.83826484,-73.90522783,noise 40.67915413,-73.98342993,noise 40.69310221,-73.9068189,noise 40.75624515,-73.92120466,noise 40.72349367,-73.98825325,noise 40.73733035,-73.99265315,noise 40.69399904,-73.99919583,noise 40.72440629,-73.97860951,noise 40.71987041,-73.98661968,noise 40.76155018,-73.92446164,noise 40.86637626,-73.92825812,noise 40.86581797,-73.92648716,noise 40.69722663,-73.99212384,noise 40.78805645,-73.94432218,noise 40.71582117,-73.9598723,noise 40.82130491,-73.95420128,noise 40.68255052,-74.0046475,noise 40.70299353,-73.9947091,noise 40.72146258,-73.98852418,noise 40.71558384,-74.00303013,noise 40.74371747,-74.00597259,noise 40.70299353,-73.9947091,noise 40.71211969,-73.96349968,noise 40.70299353,-73.9947091,noise 40.73240906,-74.00639735,noise 40.87468661,-73.88649964,noise 40.67647718,-73.97859244,noise 40.76058323,-73.98592204,noise 40.73321576,-73.98992216,noise 40.7024885,-73.99502291,noise 40.84723219,-73.93812449,noise 40.75686026,-73.96709552,noise 40.82494223,-73.94902464,noise 40.71144313,-73.94609232,noise 40.78345666,-73.97808501,noise 40.71299888,-73.96633081,noise 40.74041294,-73.99999639,noise 40.71218014,-73.96370525,noise 40.70299353,-73.9947091,noise 40.83314415,-73.9446169,noise 40.69455946,-73.9065464,noise 40.72388263,-73.98208394,noise 40.85209219,-73.93171834,noise 40.7038279,-73.99402016,noise 40.78311615,-73.95085853,noise 40.76430472,-73.98309468,noise 40.62432183,-73.98496374,noise 40.70290843,-73.99443861,noise 40.69900818,-73.9960005,noise 40.79830689,-73.93682278,noise 40.80163495,-73.96645213,noise 40.7001637,-73.99543783,noise 40.54154749,-74.1466613,noise 40.68052296,-73.93479275,noise 40.88553954,-73.84243911,noise 40.74279466,-73.91560894,noise 40.68579669,-73.91163549,noise 40.82130491,-73.95420128,noise 40.73831505,-73.98561642,noise 40.72677922,-73.98898508,noise 40.71582117,-73.9598723,noise 40.69399904,-73.99919583,noise 40.72998331,-73.95762316,noise 40.76227854,-73.92601303,noise 40.67491411,-73.97251836,noise 40.73595507,-73.99047744,noise 40.76223598,-73.98986362,noise 40.83142462,-73.82689877,noise 40.81432151,-73.95929992,noise 40.80991804,-73.80358599,noise 40.70203016,-73.99574426,noise 40.61256832,-74.08870699,noise 40.54938693,-74.15070863,noise 40.68239408,-73.99588252,noise 40.72193981,-73.98539267,noise 40.855513,-73.90244148,noise 40.7193687,-73.9932179,noise 40.76227854,-73.92601303,noise 40.70487627,-73.95570231,noise 40.76154468,-73.92445081,noise 40.73249706,-74.00183297,noise 40.86882673,-73.8922657,noise 40.70299353,-73.9947091,noise 40.70299353,-73.9947091,noise 40.68915963,-73.84275532,noise 40.68255052,-74.0046475,noise 40.733702,-74.00221909,noise 40.76550199,-73.98746608,noise 40.85209219,-73.93171834,noise 40.78311615,-73.95085853,noise 40.78311615,-73.95085853,noise 40.72349367,-73.98825325,noise 40.70383481,-73.93097214,noise 40.67349156,-73.98271754,noise 40.54938693,-74.15070863,noise 40.82130491,-73.95420128,noise 40.81453554,-73.95914444,noise 40.67444808,-73.90944062,noise 40.80468946,-73.95705907,noise 40.72193981,-73.98539267,noise 40.76270804,-73.98950256,noise 40.69726627,-73.96765506,noise 40.64434329,-74.00036755,noise 40.76270804,-73.98950256,noise 40.79892736,-73.94236632,noise 40.86581797,-73.92648716,noise 40.65683338,-73.96013845,noise 40.77139424,-73.98215781,noise 40.81726755,-73.9422565,noise 40.68701876,-73.99120558,noise 40.73991339,-74.00079029,noise 40.77294254,-73.98392288,noise 40.72916684,-73.81816235,noise 40.66820407,-73.9506476,noise 40.78573446,-73.97644121,noise 40.83364975,-73.94583069,noise 40.81726755,-73.9422565,noise 40.76331469,-73.92819586,noise 40.88923532,-73.90039556,noise 40.70563373,-74.00937757,noise 40.63934755,-74.11537366,noise 40.81726755,-73.9422565,noise 40.72349367,-73.98825325,noise 40.74406051,-74.00680988,noise 40.76787347,-73.98768225,noise 40.63597511,-73.97814065,noise 40.7453522,-73.94683719,noise 40.69726627,-73.96765506,noise 40.7475205,-73.9824024,noise 40.68209912,-73.96033246,noise 40.75624509,-73.96591191,noise 40.6870299,-73.99366109,noise 40.88923532,-73.90039556,noise 40.74311921,-73.99635513,noise 40.7038489,-73.94155046,noise 40.68321384,-73.95388509,noise 40.8066698,-73.9270582,noise 40.70659718,-73.94308455,noise 40.74744052,-73.88578891,noise 40.59931454,-73.97290957,noise 40.88923532,-73.90039556,noise 40.80277161,-73.9676363,noise 40.71366785,-73.94931535,noise 40.84682457,-73.93556225,noise 40.85199617,-73.93178712,noise 40.6801084,-73.86059446,noise 40.86988839,-73.90085842,noise 40.83391617,-73.86088291,noise 40.71026351,-73.95385555,noise 40.71387984,-73.95769833,noise 40.82572712,-73.94880363,noise 40.88923532,-73.90039556,noise 40.70247911,-73.92687285,noise 40.78311615,-73.95085853,noise 40.76323255,-73.99285606,noise 40.72349367,-73.98825325,noise 40.7430945,-73.99636234,noise 40.77171576,-73.98485464,noise 40.7509045,-73.98067269,noise 40.83850425,-73.90597919,noise 40.84191799,-73.93730541,noise 40.70383481,-73.93097214,noise 40.74474367,-73.98938991,noise 40.64316075,-73.95771794,noise 40.71814457,-73.99382768,noise 40.72349367,-73.98825325,noise 40.7221652,-73.98815969,noise 40.74227338,-73.98926761,noise 40.69332462,-73.96710163,noise 40.83036236,-73.86602154,noise 40.76272513,-73.97551079,noise 40.81952339,-73.91145792,noise 40.72349367,-73.98825325,noise 40.7158555,-73.99495337,noise 40.64018175,-73.95530567,noise 40.68782001,-73.96269446,noise 40.7167266,-73.9589122,noise 40.74474367,-73.98938991,noise 40.81952339,-73.91145792,noise 40.73321576,-73.98992216,noise 40.71162426,-73.95939148,noise 40.73406974,-74.00410985,noise 40.72656789,-73.98913304,noise 40.72648555,-73.98921603,noise 40.73540013,-73.98565674,noise 40.73002106,-73.99252406,noise 40.71562216,-73.99427522,noise 40.72648555,-73.98921603,noise 40.71139243,-74.00666586,noise 40.72440629,-73.97860951,noise 40.76788911,-73.98151253,noise 40.74475739,-73.98942239,noise 40.71562216,-73.99427522,noise 40.73349313,-73.99179841,noise 40.84681098,-73.93580082,noise 40.7168144,-73.95883279,noise 40.84832289,-73.90699545,noise 40.74474367,-73.98938991,noise 40.72579798,-73.97916828,noise 40.72951901,-73.99981238,noise 40.72440629,-73.97860951,noise 40.82130491,-73.95420128,noise 40.78311615,-73.95085853,noise 40.73986114,-73.99501651,noise 40.69018822,-73.81462305,noise 40.74294904,-73.99646701,noise 40.7168144,-73.95883279,noise 40.76522074,-73.91392354,noise 40.72193981,-73.98539267,noise 40.75624515,-73.92120466,noise 40.71140069,-74.00620416,noise 40.64018175,-73.95530567,noise 40.8102581,-73.9493032,noise 40.74383196,-73.98525434,noise 40.72342524,-73.99027359,noise 40.71139243,-74.00666586,noise 40.67085414,-73.98491359,noise 40.79180957,-73.95289979,noise 40.74693357,-73.88663068,noise 40.71139243,-74.00666586,noise 40.67757648,-73.94838739,noise 40.67841525,-73.96789133,noise 40.84394176,-73.93902389,noise 40.78085834,-73.96090914,noise 40.72981901,-73.97892168,noise 40.7984576,-73.96103244,noise 40.76115165,-73.92364989,noise 40.74000374,-74.00725332,noise 40.6936969,-73.80036912,noise 40.64018175,-73.95530567,noise 40.81133133,-73.96401965,noise 40.74383196,-73.98525434,noise 40.68174406,-73.97683849,noise 40.64018175,-73.95530567,noise 40.73064985,-74.00055204,noise 40.78311615,-73.95085853,noise 40.74474367,-73.98938991,noise 40.65103302,-73.94524018,noise 40.87802224,-73.90240484,noise 40.67855635,-73.77914677,noise 40.66889639,-73.90724924,noise 40.70211545,-73.82056959,noise 40.70315194,-74.0144301,noise 40.64014057,-73.95529128,noise 40.84932121,-73.93373087,noise 40.80981848,-73.94246165,noise 40.8334461,-73.88794681,noise 40.70110378,-73.92238425,noise 40.85482842,-73.93131428,noise 40.86637626,-73.92825812,noise 40.72844754,-73.98467686,noise 40.73696175,-73.98450891,noise 40.72365037,-73.99102396,noise 40.70393413,-73.94755188,noise 40.72986179,-73.99143445,noise 40.7505243,-73.86202432,noise 40.76362248,-73.99701462,noise 40.74202303,-73.91894077,noise 40.6801084,-73.86059446,noise 40.71981856,-73.94862524,noise 40.64364296,-73.94881362,noise 40.75891761,-73.93274875,noise 40.61609849,-74.13836417,noise 40.68468196,-73.91482074,noise 40.72718781,-73.98557191,noise 40.70547174,-73.94290878,noise 40.68629541,-73.93043862,noise 40.64018175,-73.95530567,noise 40.71562216,-73.99427522,noise 40.75745629,-73.8340322,noise 40.64018175,-73.95530567,noise 40.85578733,-73.90557158,noise 40.67444808,-73.90944062,noise 40.828203,-73.949145,noise 40.73588925,-73.99120995,noise 40.73595507,-73.99047744,noise 40.56525519,-74.13008872,noise 40.86727603,-73.91921472,noise 40.75624515,-73.92120466,noise 40.7158555,-73.99495337,noise 40.63555239,-73.97802189,noise 40.75624515,-73.92120466,noise 40.70190454,-73.92982364,noise 40.6471319,-74.00462341,noise 40.84963398,-73.93351369,noise 40.7189098,-73.98707802,noise 40.811642,-73.95059181,noise 40.70332413,-73.92630929,noise 40.86437703,-73.92653575,noise 40.68280954,-73.87517678,noise 40.755605,-73.99470492,noise 40.73325251,-73.95813706,noise 40.72279663,-73.98959904,noise 40.76034977,-73.98471284,noise 40.8645253,-73.92661874,noise 40.73394353,-74.00264127,noise 40.86437703,-73.92653575,noise 40.64364296,-73.94881362,noise 40.70393413,-73.94755188,noise 40.75940563,-73.9851029,noise 40.74559568,-73.90338919,noise 40.67465415,-73.87711715,noise 40.84813895,-73.85615433,noise 40.72483716,-73.97832075,noise 40.74708422,-73.88912785,noise 40.78245488,-73.95134288,noise 40.71461498,-73.99959599,noise 40.71562216,-73.99427522,noise 40.81726755,-73.9422565,noise 40.72568792,-73.9776891,noise 40.71562216,-73.99427522,noise 40.67334658,-73.79384367,noise 40.71965964,-73.99306996,noise 40.63011491,-74.10888369,noise 40.79865537,-73.96147657,noise 40.7189098,-73.98707802,noise 40.6301397,-74.10879366,noise 40.8379935,-73.86913946,noise 40.79803731,-73.96002861,noise 40.63555239,-73.97802189,noise 40.58650136,-74.10454979,noise 40.66050954,-73.96281426,noise 40.61031817,-74.08794766,noise 40.66974049,-73.80357342,noise 40.70711579,-74.01067624,noise 40.7657348,-73.98360333,noise 40.72224762,-73.98889924,noise 40.74527188,-73.97844042,noise 40.759412,-73.99561425,noise 40.85153916,-73.92948143,noise 40.78536042,-73.97298193,noise 40.66064331,-73.96062997,noise 40.80190731,-73.93561296,noise 40.66064331,-73.96062997,noise 40.82781896,-73.87418207,noise 40.86437703,-73.92653575,noise 40.74705161,-73.88665213,noise 40.75624515,-73.92120466,noise 40.72287388,-73.99588723,noise 40.80359291,-73.95343326,noise 40.76154468,-73.92445081,noise 40.69169061,-73.90584725,noise 40.68220447,-73.93787741,noise 40.63436537,-74.13582957,noise 40.71915937,-73.98534999,noise 40.71461019,-73.96681698,noise 40.83257662,-73.92197431,noise 40.7092334,-73.77562212,noise 40.67915413,-73.98342993,noise 40.65972716,-73.98791847,noise 40.66064331,-73.96062997,noise 40.74093692,-73.9921295,noise 40.75487369,-73.89187971,noise 40.76154468,-73.92445081,noise 40.63030691,-73.97708332,noise 40.61254989,-73.96285898,noise 40.68723335,-73.95690033,noise 40.54983696,-74.15079601,noise 40.54049965,-74.17730909,noise 40.68115298,-73.97251579,noise 40.80003082,-73.95485522,noise 40.88270955,-73.88124583,noise 40.63597511,-73.97814065,noise 40.64038605,-73.97851394,noise 40.71337461,-73.76296859,noise 40.83856918,-73.94204647,noise 40.72170509,-73.95064767,noise 40.75444761,-73.93013645,noise 40.72591485,-74.00834858,noise 40.647693,-73.98036385,noise 40.76001899,-73.9170346,noise 40.86437703,-73.92653575,noise 40.86437703,-73.92653575,noise 40.84941176,-73.93367656,noise 40.82572712,-73.94880363,noise 40.714722,-73.99760118,noise 40.7111325,-73.96654457,noise 40.68723335,-73.95690033,noise 40.7540214,-73.99956687,noise 40.78536042,-73.97298193,noise 40.86437703,-73.92653575,noise 40.6451307,-73.94896382,noise 40.75624515,-73.92120466,noise 40.54938693,-74.15070863,noise 40.72483716,-73.97832075,noise 40.70665042,-73.92159872,noise 40.70393413,-73.94755188,noise 40.83627203,-73.8896261,noise 40.78311615,-73.95085853,noise 40.75624515,-73.92120466,noise 40.73114227,-73.95947701,noise 40.65339563,-73.94985127,noise 40.73407201,-73.98871325,noise 40.69069393,-73.95537999,noise 40.73019007,-73.98196679,noise 40.83856918,-73.94204647,noise 40.70771511,-73.9393072,noise 40.62269783,-74.02540685,noise 40.67725097,-73.95784775,noise 40.73114227,-73.95947701,noise 40.74244241,-73.98050554,noise 40.85359837,-73.93061428,noise 40.69058524,-73.95831169,noise 40.74536798,-73.94536474,noise 40.67915413,-73.98342993,noise 40.74383196,-73.98525434,noise 40.72395539,-74.00071433,noise 40.74395146,-73.92539462,noise 40.72013698,-73.95527009,noise 40.7138099,-73.96174926,noise 40.66064331,-73.96062997,noise 40.84941176,-73.93367656,noise 40.71965964,-73.99306996,noise 40.86663364,-73.88646277,noise 40.69004074,-73.86434549,noise 40.72234313,-73.9841768,noise 40.83627203,-73.8896261,noise 40.70963675,-73.83002488,noise 40.72774509,-73.94213564,noise 40.68723335,-73.95690033,noise 40.83856918,-73.94204647,noise 40.68350056,-73.97607711,noise 40.71384414,-73.95764785,noise 40.76964227,-73.90999712,noise 40.76007077,-73.99654912,noise 40.63597511,-73.97814065,noise 40.73114227,-73.95947701,noise 40.66820407,-73.9506476,noise 40.70923327,-73.90689374,noise 40.71527342,-73.99168522,noise 40.63835101,-73.90888428,noise 40.72349367,-73.98825325,noise 40.64753691,-74.01734781,noise 40.82714073,-73.88168827,noise 40.6471319,-74.00462341,noise 40.78536042,-73.97298193,noise 40.58411122,-73.93298959,noise 40.62672257,-74.16223473,noise 40.68723335,-73.95690033,noise 40.74203508,-73.99834359,noise 40.71810371,-73.95004428,noise 40.74527188,-73.97844042,noise 40.54938693,-74.15070863,noise 40.8645253,-73.92661874,noise 40.76154468,-73.92445081,noise 40.68723335,-73.95690033,noise 40.6301397,-74.10879366,noise 40.67653128,-73.88207804,noise 40.71678366,-73.96552085,noise 40.73100552,-73.96089869,noise 40.71461019,-73.96681698,noise 40.72937008,-73.9871229,noise 40.7657348,-73.98360333,noise 40.76154468,-73.92445081,noise 40.8645253,-73.92661874,noise 40.74527188,-73.97844042,noise 40.76154468,-73.92445081,noise 40.7657348,-73.98360333,noise 40.68723335,-73.95690033,noise 40.68350056,-73.97607711,noise 40.72104319,-73.95643113,noise 40.76330097,-73.92820671,noise 40.73560607,-73.71632317,noise 40.79774401,-73.94162693,noise 40.79272184,-73.97318841,noise 40.72234313,-73.9841768,noise 40.63597511,-73.97814065,noise 40.68321658,-73.95387066,noise 40.76753406,-73.92087723,noise 40.63555239,-73.97802189,noise 40.79282435,-73.80713956,noise 40.64018175,-73.95530567,noise 40.61301907,-74.12369864,noise 40.71522127,-73.99171409,noise 40.76430472,-73.98309468,noise 40.58413031,-73.93277355,noise 40.68729923,-73.95691111,noise 40.72349367,-73.98825325,noise 40.86437703,-73.92653575,noise 40.72110344,-73.99418095,noise 40.755211,-73.9682694,noise 40.67349156,-73.98271754,noise 40.72774509,-73.94213564,noise 40.64646448,-74.01107734,noise 40.67515562,-73.93253039,noise 40.70753056,-73.78659995,noise 40.75487369,-73.89187971,noise 40.86437703,-73.92653575,noise 40.69333284,-73.96702951,noise 40.7258464,-73.99446556,noise 40.72483716,-73.97832075,noise 40.70427792,-73.93300946,noise 40.76753406,-73.92087723,noise 40.82977257,-73.88135477,noise 40.86437703,-73.92653575,noise 40.81955851,-73.81755045,noise 40.8494064,-73.93391152,noise 40.72018128,-73.9960317,noise 40.76058323,-73.98592204,noise 40.79803731,-73.96002861,noise 40.70498896,-73.9203239,noise 40.75624515,-73.92120466,noise 40.70669432,-73.92156621,noise 40.75607293,-73.88055479,noise 40.6806071,-73.94337714,noise 40.74192094,-73.98071499,noise 40.54938693,-74.15070863,noise 40.63011491,-74.10888369,noise 40.7557629,-73.88335269,noise 40.70923327,-73.90689374,noise 40.83313316,-73.94459523,noise 40.62258213,-74.03705294,noise 40.68048906,-73.94333397,noise 40.8381204,-73.94479707,noise 40.87126062,-73.84991415,noise 40.63816785,-73.97641404,noise 40.71113619,-73.96082017,noise 40.86437703,-73.92653575,noise 40.87534053,-73.90223159,noise 40.85009965,-73.93191919,noise 40.74471995,-73.95086159,noise 40.6789475,-73.97873226,noise 40.72483716,-73.97832075,noise 40.7299346,-73.98072207,noise 40.86693357,-73.9201154,noise 40.84711145,-73.93818244,noise 40.67512529,-73.93229609,noise 40.69740431,-73.83639958,noise 40.6471319,-74.00462341,noise 40.72279663,-73.98959904,noise 40.79966105,-73.94409576,noise 40.72374503,-73.97987244,noise 40.8619964,-73.92501275,noise 40.7493029,-74.00806278,noise 40.71795041,-73.95792662,noise 40.80235884,-73.9494248,noise 40.70871028,-73.77904686,noise 40.72273495,-73.97982945,noise 40.84641302,-73.9358518,noise 40.6806071,-73.94337714,noise 40.72832504,-73.9994588,noise 40.76346859,-73.99281632,noise 40.74425235,-73.91224003,noise 40.76348475,-73.98894652,noise 40.73535385,-73.95511554,noise 40.85966452,-73.93121529,noise 40.68329473,-73.8494214,noise 40.72364978,-73.98528406,noise 40.74033035,-73.9924796,noise 40.85966452,-73.93121529,noise 40.69840911,-73.80646421,noise 40.78228254,-73.91459477,noise 40.61832714,-74.107701,noise 40.80307499,-73.9489258,noise 40.76430472,-73.98309468,noise 40.71741287,-73.9402868,noise 40.65943588,-73.94757245,noise 40.71647844,-73.99282139,noise 40.76548132,-73.91369938,noise 40.77178076,-73.97919361,noise 40.86437703,-73.92653575,noise 40.70211598,-73.81062265,noise 40.82538549,-73.92618134,noise 40.76788911,-73.98151253,noise 40.67677991,-73.98347378,noise 40.61336789,-73.96302421,noise 40.65014565,-74.00507409,noise 40.80934133,-73.94921721,noise 40.83805814,-73.94664023,noise 40.73915309,-74.00112587,noise 40.72104319,-73.95643113,noise 40.85919928,-73.92892743,noise 40.72841273,-73.99425247,noise 40.85934331,-73.93107102,noise 40.64269519,-73.96977506,noise 40.76218419,-73.9955527,noise 40.67936814,-73.93132555,noise 40.72003253,-73.98823583,noise 40.63082309,-74.02210265,noise 40.72591124,-73.9836492,noise 40.75624515,-73.92120466,noise 40.68008863,-73.94397247,noise 40.72832504,-73.9994588,noise 40.71692886,-73.94984676,noise 40.71116719,-73.94889162,noise 40.76430472,-73.98309468,noise 40.86612043,-73.91910043,noise 40.80521243,-73.94735287,noise 40.64846321,-74.00075677,noise 40.69822499,-73.80633492,noise 40.70614247,-73.83176505,noise 40.58924884,-74.1015729,noise 40.76330097,-73.92820671,noise 40.81986557,-73.95852336,noise 40.72841273,-73.99425247,noise 40.67212728,-73.9819176,noise 40.76814567,-73.96385526,noise 40.7212238,-73.98863606,noise 40.759412,-73.99561425,noise 40.7605234,-73.99160738,noise 40.76058323,-73.98592204,noise 40.76331469,-73.92819586,noise 40.73713256,-73.99032932,noise 40.72317314,-73.99983405,noise 40.759412,-73.99561425,noise 40.73531838,-73.99165025,noise 40.74383196,-73.98525434,noise 40.8367314,-73.94444407,noise 40.60403659,-73.76065221,noise 40.71495071,-73.95175288,noise 40.75964716,-73.98500177,noise 40.75647412,-73.94726506,noise 40.66917217,-73.97304342,noise 40.72358784,-73.73523201,noise 40.67915413,-73.98342993,noise 40.86179316,-73.86941077,noise 40.61793626,-74.08625034,noise 40.72007646,-73.98835487,noise 40.85951961,-73.93214814,noise 40.86165878,-73.92932247,noise 40.63745178,-74.02195352,noise 40.7009771,-73.91781856,noise 40.83036236,-73.86602154,noise 40.76449114,-73.98165065,noise 40.67936814,-73.93132555,noise 40.73595507,-73.99047744,noise 40.63745178,-74.02195352,noise 40.86422327,-73.9264383,noise 40.86139275,-73.92530265,noise 40.75376328,-73.90247139,noise 40.85654487,-73.92846393,noise 40.85963912,-73.93005125,noise 40.76348475,-73.98894652,noise 40.71522127,-73.99171409,noise 40.71225677,-73.87141351,noise 40.72591124,-73.9836492,noise 40.66847534,-73.85778905,noise 40.73161928,-73.95786748,noise 40.74244241,-73.98050554,noise 40.63555239,-73.97802189,noise 40.65160586,-73.93329659,noise 40.67667172,-73.8722284,noise 40.85991864,-73.92933155,noise 40.72267233,-73.98296454,noise 40.7248777,-73.97516392,noise 40.83142462,-73.82689877,noise 40.74425235,-73.91224003,noise 40.69410804,-73.92762129,noise 40.70189375,-73.92160792,noise 40.70482471,-73.93401518,noise 40.71687136,-73.95015704,noise 40.78344292,-73.95119411,noise 40.77215512,-73.95437227,noise 40.77212639,-73.929941,noise 40.65972716,-73.98791847,noise 40.73390113,-73.95325464,noise 40.65972716,-73.98791847,noise 40.83805814,-73.94664023,noise 40.83192699,-73.86614848,noise 40.86437703,-73.92653575,noise 40.73454696,-73.98990392,noise 40.81726755,-73.9422565,noise 40.86210383,-73.93000166,noise 40.74447137,-73.91150714,noise 40.7816918,-73.84141021,noise 40.73972482,-73.85187763,noise 40.61023813,-73.98370275,noise 40.68329473,-73.8494214,noise 40.72371651,-73.99553002,noise 40.81561858,-73.94348264,noise 40.67336696,-73.96565505,noise 40.7623246,-73.9764531,noise 40.67656277,-73.8729857,noise 40.68311437,-73.85002754,noise 40.71838331,-73.99284643,noise 40.72568792,-73.9776891,noise 40.85970488,-73.92986682,noise 40.7111325,-73.96654457,noise 40.84967442,-73.9370993,noise 40.84941176,-73.93367656,noise 40.69132926,-73.95175916,noise 40.87959654,-73.90430103,noise 40.78536042,-73.97298193,noise 40.83728985,-73.84609139,noise 40.74656638,-73.99174989,noise 40.72513285,-73.99701273,noise 40.63595524,-73.89951977,noise 40.62221209,-74.03545694,noise 40.72267233,-73.98296454,noise 40.85827332,-73.93181683,noise 40.68129694,-73.93471268,noise 40.73249706,-74.00183297,noise 40.69928353,-73.82100998,noise 40.70499804,-73.82271505,noise 40.73972482,-73.85187763,noise 40.57923427,-73.93892357,noise 40.72790497,-73.99466743,noise 40.72279663,-73.98959904,noise 40.74639663,-73.89957696,noise 40.71606125,-73.99302344,noise 40.74135662,-73.98912702,noise 40.71977238,-73.99932539,noise 40.63188742,-73.97474818,noise 40.72116616,-73.98868657,noise 40.73434974,-74.00300933,noise 40.73249706,-74.00183297,noise 40.74550298,-73.86805079,noise 40.75471007,-73.97365489,noise 40.85963912,-73.93005125,noise 40.67773308,-73.97285248,noise 40.76330097,-73.92820671,noise 40.69328793,-73.97385585,noise 40.63779424,-74.02509192,noise 40.759412,-73.99561425,noise 40.81151832,-73.95019814,noise 40.7959573,-73.9708287,noise 40.71767356,-73.95896934,noise 40.83313316,-73.94459523,noise 40.6471319,-74.00462341,noise 40.68454625,-73.96508321,noise 40.86138149,-73.86943688,noise 40.84941176,-73.93367656,noise 40.72273495,-73.97982945,noise 40.74721378,-73.92358286,noise 40.72289139,-73.97972839,noise 40.70972468,-73.77843752,noise 40.86437703,-73.92653575,noise 40.70878364,-73.77865707,noise 40.73434967,-73.99480764,noise 40.70872939,-73.77898909,noise 40.72326039,-73.98843007,noise 40.71745267,-73.99056305,noise 40.86437703,-73.92653575,noise 40.83159271,-73.92007833,noise 40.67915413,-73.98342993,noise 40.83194663,-73.91986109,noise 40.70313001,-73.89539353,noise 40.73398138,-73.95489275,noise 40.57692409,-73.95256175,noise 40.6471319,-74.00462341,noise 40.77718339,-73.9541558,noise 40.79996159,-73.94697417,noise 40.760487,-73.98464783,noise 40.72587728,-73.9775339,noise 40.76346859,-73.99281632,noise 40.78311615,-73.95085853,noise 40.76011649,-73.98483562,noise 40.72213268,-73.9933511,noise 40.64018175,-73.95530567,noise 40.78326157,-73.95073926,noise 40.71562216,-73.99427522,noise 40.86437703,-73.92653575,noise 40.67778937,-73.74536077,noise 40.74203508,-73.99834359,noise 40.73566544,-73.84569466,noise 40.80071341,-73.95998366,noise 40.76034977,-73.98471284,noise 40.74436958,-73.98274246,noise 40.73619707,-73.84103136,noise 40.71176537,-73.94268697,noise 40.77178076,-73.97919361,noise 40.83455923,-73.94220174,noise 40.7144692,-73.99157711,noise 40.86437703,-73.92653575,noise 40.70993341,-73.77850536,noise 40.85064236,-73.94049974,noise 40.69607039,-73.93666361,noise 40.64018175,-73.95530567,noise 40.7215366,-73.98762948,noise 40.72591124,-73.9836492,noise 40.71562216,-73.99427522,noise 40.6658646,-73.98904921,noise 40.74194871,-73.98275391,noise 40.67915413,-73.98342993,noise 40.78417568,-73.97758645,noise 40.8645253,-73.92661874,noise 40.84711145,-73.93818244,noise 40.77850171,-73.95632493,noise 40.76758524,-73.91197824,noise 40.76142288,-73.98404839,noise 40.72379255,-73.98560151,noise 40.63606328,-73.96787928,noise 40.63555239,-73.97802189,noise 40.6807742,-73.96274888,noise 40.73088313,-73.99759338,noise 40.85064236,-73.94049974,noise 40.83455923,-73.94220174,noise 40.86437703,-73.92653575,noise 40.72411653,-73.98638072,noise 40.76034977,-73.98471284,noise 40.71522127,-73.99171409,noise 40.85496348,-73.85273799,noise 40.75510246,-73.97320355,noise 40.76043874,-73.79422386,noise 40.78494225,-73.94658891,noise 40.79639623,-73.96992198,noise 40.6801084,-73.86059446,noise 40.71121192,-73.96593854,noise 40.67655309,-73.93318151,noise 40.72293378,-73.98863937,noise 40.67647273,-73.86385394,noise 40.75474813,-73.98789041,noise 40.78345666,-73.97808501,noise 40.87376639,-73.88574188,noise 40.70980572,-74.00998773,noise 40.68757756,-73.90753336,noise 40.71364434,-73.9592135,noise 40.77718339,-73.9541558,noise 40.68187917,-73.7660803,noise 40.77242188,-73.95570793,noise 40.83391617,-73.86088291,noise 40.71176537,-73.94268697,noise 40.7642781,-73.97301575,noise 40.86437703,-73.92653575,noise 40.86437703,-73.92653575,noise 40.76349768,-73.87813729,noise 40.72221014,-73.95755956,noise 40.832627,-73.91939773,noise 40.72379255,-73.98560151,noise 40.63331431,-74.02702136,noise 40.72488931,-73.97828105,noise 40.72365037,-73.99102396,noise 40.86437703,-73.92653575,noise 40.88025935,-73.87678054,noise 40.81342227,-73.9371444,noise 40.72114459,-73.99370114,noise 40.57692409,-73.95256175,noise 40.72149603,-73.99646093,noise 40.72750236,-73.95144073,noise 40.71757618,-73.99052335,noise 40.71337461,-73.76296859,noise 40.86399121,-73.85967031,noise 40.70255043,-73.92680425,noise 40.70963675,-73.83002488,noise 40.73088313,-73.99759338,noise 40.7101147,-73.7785769,noise 40.67486925,-73.98154192,noise 40.86437703,-73.92653575,noise 40.86637626,-73.92825812,noise 40.86437703,-73.92653575,noise 40.71112103,-73.79740604,noise 40.76035852,-73.98928635,noise 40.71757618,-73.99052335,noise 40.8541375,-73.88695764,noise 40.75984192,-73.98417511,noise 40.72130932,-73.99470404,noise 40.72469171,-73.9784146,noise 40.71757618,-73.99052335,noise 40.72568792,-73.9776891,noise 40.70923327,-73.90689374,noise 40.80185697,-73.95723788,noise 40.77166933,-73.98669592,noise 40.63606328,-73.96787928,noise 40.73249706,-74.00183297,noise 40.76247693,-73.984586,noise 40.85455791,-73.92879502,noise 40.72349367,-73.98825325,noise 40.62204852,-74.03163848,noise 40.78382989,-73.97782489,noise 40.81410492,-73.94085393,noise 40.68321658,-73.95387066,noise 40.79964803,-73.94001799,noise 40.7704805,-73.98385488,noise 40.72279663,-73.98959904,noise 40.68158489,-73.97696835,noise 40.64018175,-73.95530567,noise 40.76233478,-73.98980224,noise 40.78423707,-73.94706974,noise 40.86437703,-73.92653575,noise 40.71574278,-74.00824269,noise 40.69328793,-73.97385585,noise 40.74096462,-73.99791419,noise 40.84941176,-73.93367656,noise 40.70963675,-73.83002488,noise 40.63589936,-74.11610271,noise 40.86210781,-73.91928608,noise 40.78423707,-73.94706974,noise 40.76368791,-73.98940855,noise 40.69822499,-73.80633492,noise 40.76550199,-73.98746608,noise 40.86437703,-73.92653575,noise 40.76334753,-73.98905845,noise 40.71531994,-73.98988518,noise 40.82103435,-73.95724362,noise 40.63606328,-73.96787928,noise 40.84370708,-73.93647245,noise 40.67676441,-73.97389838,noise 40.75676421,-73.96715332,noise 40.70211545,-73.82056959,noise 40.67527086,-73.8115569,noise 40.86292586,-73.92776655,noise 40.67863511,-73.74801105,noise 40.67325599,-73.98629016,noise 40.70315194,-74.0144301,noise 40.67645156,-73.97410761,noise 40.86437703,-73.92653575,noise 40.86581797,-73.92648716,noise 40.69403903,-73.96078695,noise 40.733702,-74.00221909,noise 40.72365037,-73.99102396,noise 40.72349367,-73.98825325,noise 40.86475314,-73.88889552,noise 40.73653149,-73.9907516,noise 40.81082452,-73.95871323,noise 40.71047843,-73.96383963,noise 40.76346859,-73.99281632,noise 40.76997974,-73.95751829,noise 40.64166081,-74.09501901,noise 40.78423707,-73.94706974,noise 40.70230473,-73.90938474,noise 40.73067089,-73.86382258,noise 40.67383824,-73.96299069,noise 40.79978541,-73.94029959,noise 40.73595507,-73.99047744,noise 40.64018175,-73.95530567,noise 40.83728985,-73.84609139,noise 40.71628096,-74.00453442,noise 40.73443443,-73.98990393,noise 40.76247693,-73.984586,noise 40.76303739,-73.98926065,noise 40.7249881,-73.97819804,noise 40.76323255,-73.99285606,noise 40.80645153,-73.96504816,noise 40.76984927,-73.98431353,noise 40.86475314,-73.88889552,noise 40.72193981,-73.98539267,noise 40.78423707,-73.94706974,noise 40.68463383,-74.00385441,noise 40.80512063,-73.96601691,noise 40.63597511,-73.97814065,noise 40.7642781,-73.97301575,noise 40.67407979,-73.96304823,noise 40.75676421,-73.96715332,noise 40.73991339,-74.00079029,noise 40.78311615,-73.95085853,noise 40.68987569,-73.94811464,noise 40.72522408,-73.977848,noise 40.8619964,-73.92501275,noise 40.83717789,-73.942597,noise 40.71562216,-73.99427522,noise 40.82877149,-73.90266136,noise 40.70412492,-73.90991606,noise 40.68771619,-73.99559012,noise 40.70923327,-73.90689374,noise 40.6895765,-73.97175508,noise 40.77108702,-73.98342149,noise 40.58073897,-73.83395295,noise 40.67915413,-73.98342993,noise 40.70872939,-73.77898909,noise 40.78311615,-73.95085853,noise 40.68310321,-73.93508588,noise 40.71933181,-73.96013354,noise 40.86437703,-73.92653575,noise 40.76324872,-73.98913066,noise 40.80416841,-73.96670009,noise 40.87376639,-73.88574188,noise 40.74420325,-74.00669441,noise 40.77578986,-73.90248607,noise 40.80149916,-73.96225511,noise 40.87959654,-73.90430103,noise 40.68796237,-73.94193218,noise 40.80151565,-73.96229483,noise 40.7642781,-73.97301575,noise 40.63419461,-73.96986898,noise 40.72513285,-73.99701273,noise 40.7704805,-73.98385488,noise 40.84711145,-73.93818244,noise 40.72844754,-73.98467686,noise 40.73521408,-73.99171521,noise 40.84989461,-73.93331101,noise 40.67350675,-73.95693444,noise 40.76879865,-73.95525907,noise 40.74934479,-73.9769377,noise 40.76062698,-73.98460087,noise 40.70381897,-73.94207345,noise 40.63606328,-73.96787928,noise 40.64018175,-73.95530567,noise 40.68720092,-73.83564937,noise 40.83391617,-73.86088291,noise 40.73249706,-74.00183297,noise 40.73249706,-74.00183297,noise 40.70381897,-73.94207345,noise 40.74238268,-73.87090067,noise 40.76323255,-73.99285606,noise 40.81453554,-73.95914444,noise 40.73531838,-73.99165025,noise 40.63597511,-73.97814065,noise 40.76550199,-73.98746608,noise 40.63691184,-73.96042778,noise 40.76311727,-73.99293188,noise 40.86475314,-73.88889552,noise 40.77224628,-73.95586329,noise 40.67971724,-73.93701805,noise 40.87376639,-73.88574188,noise 40.76202507,-74.00115153,noise 40.72241571,-73.95001219,noise 40.88923532,-73.90039556,noise 40.73521408,-73.99171521,noise 40.76478225,-73.83041842,noise 40.80416841,-73.96670009,noise 40.7871634,-73.97168118,noise 40.72349367,-73.98825325,noise 40.81726755,-73.9422565,noise 40.82969206,-73.94063411,noise 40.74025093,-73.99592586,noise 40.74279466,-73.91560894,noise 40.76346859,-73.99281632,noise 40.66820407,-73.9506476,noise 40.83072316,-73.89061819,noise 40.55969928,-74.17930344,noise 40.68187917,-73.7660803,noise 40.70381897,-73.94207345,noise 40.73619707,-73.84103136,noise 40.73249706,-74.00183297,noise 40.72349367,-73.98825325,noise 40.7429148,-73.92253403,noise 40.87959654,-73.90430103,noise 40.67915413,-73.98342993,noise 40.76330666,-73.92852076,noise 40.68158489,-73.97696835,noise 40.77075354,-73.95694015,noise 40.86385196,-73.92523119,noise 40.74196196,-73.92607168,noise 40.76324872,-73.98913066,noise 40.82130491,-73.95420128,noise 40.76334753,-73.98905845,noise 40.64846321,-74.00075677,noise 40.63597511,-73.97814065,noise 40.69726627,-73.96765506,noise 40.84278978,-73.88584568,noise 40.72955151,-73.98990106,noise 40.75624515,-73.92120466,noise 40.7956137,-73.93570573,noise 40.77387325,-73.95418696,noise 40.76346859,-73.99281632,noise 40.72349367,-73.98825325,noise 40.68341104,-73.87303395,noise 40.79600328,-73.93540919,noise 40.74928842,-73.98454214,noise 40.76368791,-73.98940855,noise 40.62258213,-74.03705294,noise 40.76119913,-73.81194189,noise 40.73249706,-74.00183297,noise 40.7449543,-73.95336959,noise 40.7212926,-73.94887303,noise 40.85203731,-73.93174731,noise 40.68341104,-73.87303395,noise 40.84459402,-73.93719807,noise 40.86437703,-73.92653575,noise 40.71239152,-74.00684271,noise 40.72933786,-74.0010319,noise 40.76579016,-73.98728192,noise 40.67798971,-73.9589613,noise 40.70247911,-73.92687285,noise 40.73240906,-74.00639735,noise 40.6801084,-73.86059446,noise 40.74959135,-74.00278625,noise 40.84459402,-73.93719807,noise 40.76494897,-73.96690019,noise 40.6954579,-73.84004302,noise 40.82130491,-73.95420128,noise 40.84459402,-73.93719807,noise 40.72954646,-74.00085872,noise 40.85855469,-73.92960413,noise 40.70381897,-73.94207345,noise 40.6471319,-74.00462341,noise 40.79600328,-73.93540919,noise 40.82130491,-73.95420128,noise 40.72579798,-73.97916828,noise 40.76809628,-73.96389138,noise 40.71411229,-74.0095483,noise 40.87717709,-73.86456034,noise 40.73521408,-73.99171521,noise 40.78311615,-73.95085853,noise 40.7935,-73.94033773,noise 40.78795629,-73.9472979,noise 40.63555239,-73.97802189,noise 40.76299834,-73.98387835,noise 40.88262996,-73.8839474,noise 40.73595507,-73.99047744,noise 40.63555239,-73.97802189,noise 40.70619093,-74.00916485,noise 40.70279789,-74.01424608,noise 40.70385718,-73.94164783,noise 40.76701147,-73.9863575,noise 40.84781781,-73.90358048,noise 40.73249706,-74.00183297,noise 40.73030814,-73.98226983,noise 40.70226326,-73.92844555,noise 40.72648555,-73.98921603,noise 40.72504502,-73.99708489,noise 40.65683338,-73.96013845,noise 40.75081822,-74.00376079,noise 40.7657348,-73.98360333,noise 40.63597511,-73.97814065,noise 40.84941176,-73.93367656,noise 40.6722855,-73.95739666,noise 40.842952,-73.88612731,noise 40.69321061,-73.97187254,noise 40.78311615,-73.95085853,noise 40.83573106,-73.91162427,noise 40.74883018,-73.98551309,noise 40.72718781,-73.98557191,noise 40.67995254,-73.98132419,noise 40.74578928,-73.98802918,noise 40.69321061,-73.97187254,noise 40.68571937,-73.98174444,noise 40.76034977,-73.98471284,noise 40.70385718,-73.94164783,noise 40.68350056,-73.97607711,noise 40.74238268,-73.87090067,noise 40.74883018,-73.98551309,noise 40.8416793,-73.93749357,noise 40.82538549,-73.92618134,noise 40.72522408,-73.977848,noise 40.70385718,-73.94164783,noise 40.74883018,-73.98551309,noise 40.61682225,-73.93050381,noise 40.76105786,-73.98433004,noise 40.7942071,-73.80033859,noise 40.74276218,-73.8960278,noise 40.86637626,-73.92825812,noise 40.70385718,-73.94164783,noise 40.66031861,-73.9397504,noise 40.86892834,-73.84423567,noise 40.74883018,-73.98551309,noise 40.86437703,-73.92653575,noise 40.68967004,-73.9551535,noise 40.86637626,-73.92825812,noise 40.72306557,-73.98907949,noise 40.72504502,-73.99708489,noise 40.7092334,-73.77562212,noise 40.71775427,-73.95461514,noise 40.70385718,-73.94164783,noise 40.74883018,-73.98551309,noise 40.86637626,-73.92825812,noise 40.71958002,-73.95586209,noise 40.76079439,-73.98451059,noise 40.85660522,-73.92840965,noise 40.73677571,-73.95532748,noise 40.85375763,-73.93072979,noise 40.76075309,-73.98352514,noise 40.77855182,-73.95124824,noise 40.59810134,-73.96303267,noise 40.86581797,-73.92648716,noise 40.7475205,-73.9824024,noise 40.76105786,-73.98433004,noise 40.84459402,-73.93719807,noise 40.86437703,-73.92653575,noise 40.68280954,-73.87517678,noise 40.66064331,-73.96062997,noise 40.76105786,-73.98433004,noise 40.69477665,-73.84773302,noise 40.86637626,-73.92825812,noise 40.68158489,-73.97696835,noise 40.80139477,-73.96195899,noise 40.67653128,-73.88207804,noise 40.73505191,-73.95506523,noise 40.8416793,-73.93749357,noise 40.84434161,-73.93738264,noise 40.8574269,-73.89110568,noise 40.7111325,-73.96654457,noise 40.7107873,-73.95994387,noise 40.71202671,-73.9565813,noise 40.81916263,-73.8798129,noise 40.54242954,-74.14590407,noise 40.7581599,-73.9625937,noise 40.69726627,-73.96765506,noise 40.82761618,-73.87702618,noise 40.71979651,-73.98851004,noise 40.80572995,-73.92526397,noise 40.72221014,-73.95755956,noise 40.63511241,-73.99377411,noise 40.68220447,-73.93787741,noise 40.73814563,-74.00587827,noise 40.73394353,-74.00264127,noise 40.86281537,-73.90755001,noise 40.83746389,-73.8554474,noise 40.65958372,-73.93123058,noise 40.86445949,-73.90098221,noise 40.72234971,-73.99936866,noise 40.81024068,-73.94148954,noise 40.68244394,-73.96570085,noise 40.74677464,-73.89870301,noise 40.79971123,-73.94016602,noise 40.73653149,-73.9907516,noise 40.75962609,-73.99547346,noise 40.64322799,-73.98546395,noise 40.83627203,-73.8896261,noise 40.69822499,-73.80633492,noise 40.75800513,-73.96819227,noise 40.7630701,-73.92770879,noise 40.80172166,-73.96278233,noise 40.771024,-73.95364738,noise 40.71474541,-73.98260584,noise 40.86324299,-73.92578863,noise 40.6168505,-73.91167994,noise 40.73483798,-73.99075544,noise 40.80356744,-73.96714106,noise 40.68279529,-73.96576557,noise 40.76567588,-73.97623531,noise 40.72234313,-73.9841768,noise 40.73483798,-73.99075544,noise 40.89290619,-73.90850281,noise 40.76362248,-73.99701462,noise 40.68688694,-73.87907417,noise 40.83706074,-73.9389543,noise 40.86663364,-73.88646277,noise 40.82327962,-73.88789889,noise 40.72072702,-73.98888867,noise 40.65683338,-73.96013845,noise 40.69348166,-73.91113488,noise 40.68400462,-73.93227625,noise 40.6863616,-73.91459143,noise 40.72221014,-73.95755956,noise 40.70963675,-73.83002488,noise 40.74268834,-74.0003717,noise 40.70315194,-74.0144301,noise 40.70310821,-73.9871424,noise 40.72114459,-73.99370114,noise 40.73476935,-73.99063277,noise 40.65160586,-73.93329659,noise 40.74486372,-73.86356621,noise 40.82011369,-73.90818741,noise 40.68573695,-73.99112281,noise 40.81884287,-73.95415239,noise 40.72663629,-73.9480788,noise 40.71100589,-73.96536874,noise 40.83746389,-73.8554474,noise 40.66064331,-73.96062997,noise 40.68220447,-73.93787741,noise 40.6471319,-74.00462341,noise 40.73476935,-73.99063277,noise 40.68315198,-73.96532191,noise 40.61955071,-73.96819341,noise 40.79890019,-73.96311619,noise 40.7107873,-73.95994387,noise 40.79891561,-73.95998836,noise 40.77073826,-73.95295079,noise 40.83706074,-73.9389543,noise 40.76362248,-73.99701462,noise 40.79925228,-73.93906121,noise 40.63597511,-73.97814065,noise 40.61871889,-73.93048743,noise 40.68067675,-73.91402906,noise 40.85962465,-73.88745805,noise 40.83627203,-73.8896261,noise 40.6685491,-73.99022391,noise 40.6826004,-73.96572962,noise 40.7539237,-73.98057436,noise 40.8375101,-73.85508591,noise 40.74419899,-73.86086094,noise 40.63327783,-73.98317831,noise 40.7009771,-73.91781856,noise 40.71461019,-73.96681698,noise 40.64018175,-73.95530567,noise 40.74379669,-73.98901113,noise 40.8629543,-73.89065556,noise 40.74395146,-73.92539462,noise 40.84459402,-73.93719807,noise 40.75510246,-73.97320355,noise 40.86892834,-73.84423567,noise 40.83746389,-73.8554474,noise 40.72349367,-73.98825325,noise 40.79032423,-73.96751595,noise 40.71758787,-73.95731359,noise 40.626026,-74.17672214,noise 40.72961104,-73.96048459,noise 40.67304533,-73.96403657,noise 40.759412,-73.99561425,noise 40.72448395,-73.9834872,noise 40.7167266,-73.9589122,noise 40.71963732,-73.98859304,noise 40.69403903,-73.96078695,noise 40.77007339,-73.95139886,noise 40.72228696,-73.9574621,noise 40.6825208,-73.96571524,noise 40.723084,-73.98267582,noise 40.86551167,-73.92396393,noise 40.71865809,-73.81360953,noise 40.72221014,-73.95755956,noise 40.771024,-73.95364738,noise 40.69403903,-73.96078695,noise 40.75624515,-73.92120466,noise 40.80203814,-73.96548391,noise 40.73571645,-73.99294561,noise 40.83749653,-73.85521243,noise 40.7290798,-74.00349257,noise 40.72228696,-73.9574621,noise 40.72349367,-73.98825325,noise 40.73595507,-73.99047744,noise 40.73369102,-74.00228404,noise 40.84941176,-73.93367656,noise 40.76154468,-73.92445081,noise 40.77054595,-73.95252492,noise 40.75962609,-73.99547346,noise 40.73807483,-73.85371804,noise 40.72924728,-74.00006494,noise 40.84711145,-73.93818244,noise 40.7623246,-73.9764531,noise 40.68571937,-73.98174444,noise 40.66064331,-73.96062997,noise 40.84941176,-73.93367656,noise 40.71749685,-74.00536781,noise 40.88355217,-73.89849823,noise 40.86422327,-73.9264383,noise 40.82869712,-73.89015177,noise 40.67382794,-73.97588951,noise 40.69945631,-73.93968979,noise 40.66568654,-73.82042968,noise 40.77054595,-73.95252492,noise 40.71749685,-74.00536781,noise 40.84804607,-73.91096815,noise 40.71763107,-73.99047284,noise 40.74906205,-73.89081724,noise 40.73457209,-74.00224438,noise 40.7577348,-73.79402646,noise 40.70504946,-73.90592938,noise 40.74391839,-73.92518535,noise 40.70504946,-73.90592938,noise 40.63271996,-73.89137146,noise 40.75624515,-73.92120466,noise 40.86437703,-73.92653575,noise 40.85203456,-73.93173286,noise 40.74391839,-73.92518535,noise 40.84345572,-73.92470475,noise 40.79878494,-73.96321378,noise 40.67457335,-73.98520116,noise 40.76338296,-73.98673729,noise 40.70252976,-73.81356446,noise 40.70963675,-73.83002488,noise 40.71810371,-73.95004428,noise 40.74245154,-73.98681724,noise 40.66166577,-73.92484868,noise 40.71426024,-73.98769937,noise 40.6895765,-73.97175508,noise 40.88956351,-73.89903879,noise 40.76808008,-73.79115328,noise 40.70110378,-73.92238425,noise 40.72221014,-73.95755956,noise 40.63492412,-74.02039982,noise 40.76154468,-73.92445081,noise 40.64748607,-74.00066306,noise 40.86330862,-73.92978709,noise 40.84413857,-73.93751656,noise 40.75858018,-73.82561174,noise 40.63492412,-74.02039982,noise 40.8710471,-73.89821721,noise 40.75624515,-73.92120466,noise 40.878513,-73.89859994,noise 40.71810371,-73.95004428,noise 40.77072452,-73.95291831,noise 40.73416286,-74.00798156,noise 40.74361057,-73.99970047,noise 40.82340595,-73.93927033,noise 40.73249706,-74.00183297,noise 40.73091332,-74.00281795,noise 40.67946257,-74.00619398,noise 40.67946257,-74.00619398,noise 40.68594972,-73.95942154,noise 40.63436537,-74.13582957,noise 40.72234313,-73.9841768,noise 40.82805781,-73.87423221,noise 40.71461498,-73.99959599,noise 40.67915413,-73.98342993,noise 40.71366785,-73.94931535,noise 40.8512885,-73.89878603,noise 40.86321979,-73.91982341,noise 40.73940544,-74.00644854,noise 40.76385801,-73.98869015,noise 40.78229519,-73.96512584,noise 40.75320565,-73.93250548,noise 40.73506048,-74.00663215,noise 40.78311615,-73.95085853,noise 40.70067136,-73.89612229,noise 40.83386222,-73.94829145,noise 40.63127561,-73.976049,noise 40.70610792,-73.95379351,noise 40.71863097,-73.9575438,noise 40.70381897,-73.94207345,noise 40.73765444,-74.00220118,noise 40.74096462,-73.99791419,noise 40.73209628,-73.99645315,noise 40.75764906,-73.82518464,noise 40.63555239,-73.97802189,noise 40.7252058,-73.98334993,noise 40.71758787,-73.95731359,noise 40.80572995,-73.92526397,noise 40.69024077,-73.94818647,noise 40.67747682,-73.9689373,noise 40.76154468,-73.92445081,noise 40.72273495,-73.97982945,noise 40.76567588,-73.97623531,noise 40.82982413,-73.90772232,noise 40.88270955,-73.88124583,noise 40.76334753,-73.98905845,noise 40.64748607,-74.00066306,noise 40.76808008,-73.79115328,noise 40.68261354,-73.99323967,noise 40.66277894,-73.95377666,noise 40.79190865,-73.94150204,noise 40.74966676,-73.98157173,noise 40.80517758,-73.94922038,noise 40.81463357,-73.94419156,noise 40.70381897,-73.94207345,noise 40.84191799,-73.93730541,noise 40.79301511,-73.94215475,noise 40.71366785,-73.94931535,noise 40.75020372,-73.89971197,noise 40.87466152,-73.91108799,noise 40.70381897,-73.94207345,noise 40.69822499,-73.80633492,noise 40.79892213,-73.96308729,noise 40.72072702,-73.98888867,noise 40.63765525,-74.07798873,noise 40.88060505,-73.87665333,noise 40.73170658,-74.00095616,noise 40.63679839,-74.02262707,noise 40.63555239,-73.97802189,noise 40.72114459,-73.99370114,noise 40.75934464,-73.89458331,noise 40.77603408,-73.95603048,noise 40.74141018,-73.90368034,noise 40.75033846,-73.89999329,noise 40.74462887,-73.99897147,noise 40.74372325,-73.97549973,noise 40.65692084,-73.92609024,noise 40.86437703,-73.92653575,noise 40.71286148,-73.96578259,noise 40.73940544,-74.00644854,noise 40.73619707,-73.84103136,noise 40.85650354,-73.93276214,noise 40.68719196,-73.97461545,noise 40.8645253,-73.92661874,noise 40.83452626,-73.94212588,noise 40.64354189,-73.94396352,noise 40.60137875,-74.13080371,noise 40.82699008,-73.90928721,noise 40.63191749,-73.94350852,noise 40.84459402,-73.93719807,noise 40.85772006,-73.8934911,noise 40.86193593,-73.92077215,noise 40.70852773,-73.95816341,noise 40.84999364,-73.93865327,noise 40.83627203,-73.8896261,noise 40.71829903,-73.94499372,noise 40.62863721,-74.08003528,noise 40.62920607,-74.02383858,noise 40.75510246,-73.97320355,noise 40.7594005,-73.9882036,noise 40.80149916,-73.96225511,noise 40.85702083,-73.90361413,noise 40.69940684,-73.92988758,noise 40.64058978,-73.96914905,noise 40.76058323,-73.98592204,noise 40.76233478,-73.98980224,noise 40.71638089,-73.95927315,noise 40.65102765,-73.94549966,noise 40.71176537,-73.94268697,noise 40.7212238,-73.98863606,noise 40.64846576,-74.00682174,noise 40.72349367,-73.98825325,noise 40.61874702,-74.08485379,noise 40.71387984,-73.95769833,noise 40.71370632,-73.99434031,noise 40.71121192,-73.96593854,noise 40.58423757,-74.09754746,noise 40.7110115,-73.95063394,noise 40.7029864,-73.94585391,noise 40.64846321,-74.00075677,noise 40.57560649,-73.95946338,noise 40.86768553,-73.88166676,noise 40.80225341,-73.95324276,noise 40.7230555,-73.94458212,noise 40.5979307,-73.98549182,noise 40.759412,-73.99561425,noise 40.82892541,-73.95039469,noise 40.71235505,-73.98495109,noise 40.85064236,-73.94049974,noise 40.70393413,-73.94755188,noise 40.69506993,-73.90315227,noise 40.78795629,-73.9472979,noise 40.71992609,-74.0002886,noise 40.79951653,-73.95948956,noise 40.70709237,-73.89723041,noise 40.65675108,-73.96027185,noise 40.77480809,-73.91028259,noise 40.63717862,-73.97151784,noise 40.69822499,-73.80633492,noise 40.69468668,-73.84819482,noise 40.68230634,-73.92894289,noise 40.6189138,-73.97978878,noise 40.6471319,-74.00462341,noise 40.67778937,-73.74536077,noise 40.63745178,-74.02195352,noise 40.72578994,-73.79174401,noise 40.68665294,-73.98409152,noise 40.67276747,-73.98670844,noise 40.62432183,-73.98496374,noise 40.72231842,-73.98411908,noise 40.79186116,-73.94539159,noise 40.68138125,-74.00444551,noise 40.76412403,-73.98659635,noise 40.69726627,-73.96765506,noise 40.73765444,-74.00220118,noise 40.72114459,-73.99370114,noise 40.86437703,-73.92653575,noise 40.76334753,-73.98905845,noise 40.74527188,-73.97844042,noise 40.58977892,-74.10118846,noise 40.84459402,-73.93719807,noise 40.85469516,-73.90253667,noise 40.60941679,-73.96768682,noise 40.61899959,-74.08478207,noise 40.6660719,-73.93042366,noise 40.71121192,-73.96593854,noise 40.75510246,-73.97320355,noise 40.8289458,-73.85665473,noise 40.71355468,-73.96188648,noise 40.88511509,-73.84519228,noise 40.87684293,-73.85172404,noise 40.60507509,-74.08498767,noise 40.76367143,-73.98936885,noise 40.78344292,-73.95119411,noise 40.74244241,-73.98050554,noise 40.86553576,-73.9272684,noise 40.72104319,-73.95643113,noise 40.75275142,-73.87253364,noise 40.70343569,-73.92479077,noise 40.5979307,-73.98549182,noise 40.67893045,-73.88780625,noise 40.75822097,-73.96477748,noise 40.71355468,-73.96188648,noise 40.78188137,-73.91400671,noise 40.76349768,-73.87813729,noise 40.70251036,-73.99306814,noise 40.74193866,-73.91610441,noise 40.62536805,-73.94857546,noise 40.60994108,-73.96779821,noise 40.63836084,-73.96851953,noise 40.76154468,-73.92445081,noise 40.78928935,-73.97879812,noise 40.68817353,-73.98398659,noise 40.85761801,-73.90222872,noise 40.76801683,-73.92043622,noise 40.79287316,-73.94372225,noise 40.70157331,-73.93129185,noise 40.72488931,-73.97828105,noise 40.82130491,-73.95420128,noise 40.71814583,-73.95229529,noise 40.7296035,-73.98823774,noise 40.67747682,-73.9689373,noise 40.86437703,-73.92653575,noise 40.86437703,-73.92653575,noise 40.75067,-73.9745263,noise 40.70281027,-73.92539017,noise 40.8631922,-73.92792533,noise 40.73470383,-74.00218304,noise 40.68390508,-73.91845616,noise 40.63597511,-73.97814065,noise 40.83450977,-73.94208615,noise 40.85701115,-73.93248689,noise 40.7118701,-73.95614855,noise 40.79224484,-73.94418144,noise 40.65662476,-73.96009532,noise 40.65692084,-73.92609024,noise 40.76567588,-73.97623531,noise 40.75764906,-73.82518464,noise 40.69641847,-73.9041817,noise 40.73841163,-73.84676726,noise 40.80572995,-73.92526397,noise 40.88060505,-73.87665333,noise 40.63332255,-74.02701776,noise 40.73003194,-73.99108083,noise 40.72242119,-73.94999415,noise 40.69056126,-73.96933147,noise 40.73853272,-74.00387196,noise 40.7623246,-73.9764531,noise 40.8473396,-73.88492342,noise 40.70547174,-73.94290878,noise 40.76338296,-73.98673729,noise 40.65662476,-73.96009532,noise 40.77480809,-73.91028259,noise 40.86244343,-73.92038471,noise 40.7623246,-73.9764531,noise 40.63628344,-73.98363514,noise 40.60994108,-73.96779821,noise 40.73841163,-73.84676726,noise 40.86438525,-73.92651766,noise 40.86811354,-73.91975243,noise 40.72349367,-73.98825325,noise 40.5979307,-73.98549182,noise 40.69726627,-73.96765506,noise 40.65972716,-73.98791847,noise 40.67915413,-73.98342993,noise 40.76223598,-73.98986362,noise 40.71838653,-73.95713271,noise 40.79280192,-73.97534804,noise 40.75534861,-73.96964093,noise 40.62586437,-74.07689062,noise 40.60965181,-73.95626612,noise 40.70381897,-73.94207345,noise 40.70000973,-73.91613554,noise 40.76753406,-73.92087723,noise 40.76753406,-73.92087723,noise 40.69908568,-73.82086265,noise 40.71758787,-73.95731359,noise 40.76331469,-73.92819586,noise 40.81298491,-73.94611122,noise 40.7104062,-73.95375807,noise 40.84459402,-73.93719807,noise 40.75676421,-73.96715332,noise 40.71869299,-73.95465418,noise 40.70277711,-73.92938633,noise 40.70381897,-73.94207345,noise 40.73035221,-73.98327648,noise 40.6608261,-73.95064585,noise 40.87959654,-73.90430103,noise 40.63597511,-73.97814065,noise 40.69195271,-73.94643262,noise 40.69822499,-73.80633492,noise 40.7170331,-73.95643735,noise 40.70381897,-73.94207345,noise 40.64215311,-73.92918744,noise 40.70279789,-74.01424608,noise 40.85072806,-73.93650912,noise 40.73321576,-73.98992216,noise 40.85064236,-73.94049974,noise 40.7622605,-73.98800456,noise 40.68230634,-73.92894289,noise 40.70381897,-73.94207345,noise 40.76331469,-73.92819586,noise 40.86311329,-73.92061167,noise 40.69251066,-73.97174302,noise 40.77931573,-73.98332196,noise 40.67863511,-73.74801105,noise 40.80660795,-73.95006455,noise 40.81726755,-73.9422565,noise 40.70111436,-73.90703131,noise 40.65972716,-73.98791847,noise 40.67486925,-73.98154192,noise 40.76331469,-73.92819586,noise 40.76272656,-73.9269872,noise 40.75603687,-73.8435648,noise 40.71859801,-73.95748971,noise 40.82292604,-73.94005121,noise 40.71847433,-73.95705329,noise 40.6608261,-73.95064585,noise 40.70630593,-73.91957571,noise 40.71838653,-73.95713271,noise 40.64977055,-73.91404726,noise 40.86437703,-73.92653575,noise 40.72349367,-73.98825325,noise 40.69251066,-73.97174302,noise 40.70381897,-73.94207345,noise 40.62269783,-74.02540685,noise 40.72951901,-73.99981238,noise 40.73058122,-74.00168499,noise 40.52355004,-74.21596721,noise 40.77923644,-73.94766588,noise 40.77850171,-73.95632493,noise 40.73238407,-74.01035194,noise 40.71490799,-73.96231136,noise 40.81453554,-73.95914444,noise 40.76105786,-73.98433004,noise 40.63555239,-73.97802189,noise 40.80729251,-73.94645539,noise 40.80729251,-73.94645539,noise 40.71838653,-73.95713271,noise 40.68808032,-73.94748502,noise 40.7602626,-73.91242469,noise 40.71267666,-73.94854778,noise 40.72306913,-73.95039412,noise 40.67655309,-73.93318151,noise 40.75033795,-73.99851663,noise 40.87959654,-73.90430103,noise 40.86106395,-73.92617789,noise 40.72531837,-73.98361688,noise 40.61567436,-74.03423242,noise 40.68158489,-73.97696835,noise 40.79339574,-73.9404245,noise 40.83502353,-73.92402407,noise 40.65356257,-73.96302716,noise 40.64799659,-73.99847926,noise 40.70097726,-73.9071974,noise 40.74361478,-73.98282205,noise 40.85513516,-73.93020782,noise 40.88029787,-73.9027378,noise 40.73535385,-73.95511554,noise 40.78311615,-73.95085853,noise 40.74383196,-73.98525434,noise 40.73677571,-73.95532748,noise 40.80177109,-73.96287983,noise 40.84459402,-73.93719807,noise 40.86385196,-73.92523119,noise 40.76049249,-73.98466588,noise 40.76223598,-73.98986362,noise 40.70381897,-73.94207345,noise 40.70381897,-73.94207345,noise 40.71562216,-73.99427522,noise 40.69468668,-73.84819482,noise 40.84711145,-73.93818244,noise 40.76233478,-73.98980224,noise 40.76758524,-73.91197824,noise 40.66820407,-73.9506476,noise 40.73853272,-74.00387196,noise 40.83578868,-73.91159167,noise 40.65662476,-73.96009532,noise 40.77246136,-73.96704088,noise 40.71838653,-73.95713271,noise 40.70381897,-73.94207345,noise 40.72605395,-73.98353372,noise 40.73060479,-73.8636351,noise 40.70923327,-73.90689374,noise 40.71121192,-73.96593854,noise 40.70381897,-73.94207345,noise 40.7303232,-74.00246794,noise 40.71710937,-73.96257345,noise 40.78311615,-73.95085853,noise 40.67669996,-73.98118811,noise 40.73609748,-73.98721542,noise 40.73249706,-74.00183297,noise 40.71496148,-73.96666169,noise 40.720604,-73.99678566,noise 40.68158489,-73.97696835,noise 40.74332402,-73.98407438,noise 40.60048379,-73.97273625,noise 40.80342652,-73.95608101,noise 40.76753406,-73.92087723,noise 40.81726755,-73.9422565,noise 40.70543919,-73.95633673,noise 40.70381897,-73.94207345,noise 40.74136536,-73.99861426,noise 40.71728083,-73.95832025,noise 40.66122137,-73.95069962,noise 40.78591202,-73.97260615,noise 40.68485178,-73.7979654,noise 40.80141125,-73.96200232,noise 40.71143563,-73.9367464,noise 40.70381897,-73.94207345,noise 40.65972716,-73.98791847,noise 40.70843906,-74.00688559,noise 40.72099783,-73.94087523,noise 40.72349367,-73.98825325,noise 40.79551338,-73.97384821,noise 40.81453554,-73.95914444,noise 40.81401074,-73.94464728,noise 40.74665453,-73.95650821,noise 40.74114908,-73.78108645,noise 40.75105577,-73.98266494,noise 40.63555239,-73.97802189,noise 40.89787809,-73.8969933,noise 40.80143049,-73.96209261,noise 40.846644,-73.90468819,noise 40.76753406,-73.92087723,noise 40.65972716,-73.98791847,noise 40.66496438,-73.98981352,noise 40.72349367,-73.98825325,noise 40.73560939,-73.99266777,noise 40.76550199,-73.98746608,noise 40.80991804,-73.80358599,noise 40.72605395,-73.98353372,noise 40.81364528,-73.95647527,noise 40.82130491,-73.95420128,noise 40.65972716,-73.98791847,noise 40.60055241,-73.97273982,noise 40.78311615,-73.95085853,noise 40.74727471,-73.88744213,noise 40.72376554,-73.98962775,noise 40.82538549,-73.92618134,noise 40.72495994,-73.99715705,noise 40.73609748,-73.98721542,noise 40.743596,-73.98600864,noise 40.67863511,-73.74801105,noise 40.71749685,-74.00536781,noise 40.73521408,-73.99171521,noise 40.71562216,-73.99427522,noise 40.8252058,-73.91626681,noise 40.70923327,-73.90689374,noise 40.77923644,-73.94766588,noise 40.720604,-73.99678566,noise 40.75614579,-73.92879555,noise 40.71869299,-73.95465418,noise 40.68152285,-73.9832743,noise 40.72543203,-73.99677099,noise 40.71665985,-73.96453611,noise 40.73249706,-74.00183297,noise 40.73534843,-73.98991823,noise 40.72740803,-73.99222129,noise 40.81621548,-73.91818566,noise 40.84191799,-73.93730541,noise 40.84271001,-73.88566149,noise 40.67040306,-73.85628892,noise 40.86177042,-73.89867246,noise 40.77923644,-73.94766588,noise 40.63555239,-73.97802189,noise 40.66820407,-73.9506476,noise 40.74135662,-73.98912702,noise 40.86637626,-73.92825812,noise 40.85943217,-73.88709686,noise 40.65752338,-73.95554634,noise 40.69726627,-73.96765506,noise 40.76550199,-73.98746608,noise 40.86637626,-73.92825812,noise 40.72386918,-73.98388421,noise 40.82103435,-73.95724362,noise 40.79513631,-73.96959389,noise 40.60357204,-74.00558553,noise 40.67350675,-73.95693444,noise 40.74238268,-73.87090067,noise 40.75408976,-73.87656276,noise 40.76079439,-73.98451059,noise 40.65635324,-73.92698108,noise 40.85237109,-73.9346279,noise 40.81384123,-73.86312496,noise 40.73939991,-74.00715221,noise 40.75537388,-73.98744633,noise 40.72349367,-73.98825325,noise 40.70964351,-74.01271098,noise 40.64316075,-73.95771794,noise 40.8692067,-73.9169743,noise 40.64018175,-73.95530567,noise 40.84280624,-73.8858312,noise 40.75940563,-73.9851029,noise 40.72349367,-73.98825325,noise 40.70543919,-73.95633673,noise 40.72502032,-73.99713179,noise 40.84790188,-73.92428767,noise 40.72740803,-73.99222129,noise 40.81726755,-73.9422565,noise 40.76115165,-73.92364989,noise 40.72349367,-73.98825325,noise 40.73816657,-73.98363176,noise 40.76011649,-73.98483562,noise 40.67863511,-73.74801105,noise 40.73305408,-74.00640824,noise 40.85434768,-73.90059963,noise 40.7956137,-73.93570573,noise 40.76550199,-73.98746608,noise 40.72740803,-73.99222129,noise 40.72349367,-73.98825325,noise 40.70381897,-73.94207345,noise 40.72934649,-73.95751893,noise 40.76115165,-73.92364989,noise 40.72660323,-73.98602303,noise 40.7656111,-73.98232181,noise 40.70843906,-74.00688559,noise 40.85617998,-73.92871376,noise 40.72740803,-73.99222129,noise 40.73991339,-74.00079029,noise 40.63597511,-73.97814065,noise 40.71370632,-73.99434031,noise 40.72605395,-73.98353372,noise 40.80235787,-73.97027326,noise 40.80015915,-73.94684037,noise 40.86256277,-73.92650883,noise 40.86437703,-73.92653575,noise 40.65635324,-73.92698108,noise 40.73483798,-73.99075544,noise 40.74084358,-73.99186607,noise 40.7451164,-73.98446732,noise 40.85824116,-73.9023471,noise 40.84268397,-73.92395749,noise 40.71562216,-73.99427522,noise 40.71758787,-73.95731359,noise 40.75399604,-73.94243046,noise 40.67465415,-73.87711715,noise 40.88646853,-73.91384973,noise 40.79929669,-73.95167008,noise 40.69464039,-73.84847981,noise 40.70393413,-73.94755188,noise 40.86437703,-73.92653575,noise 40.80508306,-73.94094142,noise 40.60973956,-73.95604997,noise 40.72513285,-73.99701273,noise 40.85381625,-73.90849875,noise 40.72740803,-73.99222129,noise 40.86437703,-73.92653575,noise 40.76409108,-73.98651694,noise 40.79893175,-73.95195207,noise 40.70152973,-73.92313391,noise 40.83036236,-73.86602154,noise 40.72579798,-73.97916828,noise 40.8810809,-73.91788163,noise 40.72740803,-73.99222129,noise 40.72740803,-73.99222129,noise 40.73534843,-73.98991823,noise 40.70396984,-73.94761677,noise 40.72579798,-73.97916828,noise 40.69726627,-73.96765506,noise 40.71838653,-73.95713271,noise 40.74486372,-73.86356621,noise 40.76374898,-73.83332342,noise 40.70211545,-73.82056959,noise 40.68088971,-73.86673647,noise 40.69304898,-73.99072878,noise 40.73521408,-73.99171521,noise 40.71562216,-73.99427522,noise 40.71562216,-73.99427522,noise 40.64588131,-73.95194336,noise 40.71838653,-73.95713271,noise 40.71847433,-73.95705329,noise 40.69291652,-73.75579309,noise 40.71562216,-73.99427522,noise 40.71562216,-73.99427522,noise 40.75635718,-73.82577277,noise 40.62221209,-74.03545694,noise 40.71973995,-73.95782087,noise 40.70370374,-73.94791994,noise 40.74238268,-73.87090067,noise 40.69247763,-73.85938942,noise 40.77177707,-73.92444281,noise 40.62913964,-74.07578839,noise 40.6290982,-74.07620264,noise 40.68280954,-73.87517678,noise 40.6290982,-74.07620264,noise 40.73394353,-74.00264127,noise 40.63555239,-73.97802189,noise 40.86437703,-73.92653575,noise 40.79770759,-73.94018227,noise 40.76154468,-73.92445081,noise 40.74202303,-73.91894077,noise 40.86385196,-73.92523119,noise 40.86437703,-73.92653575,noise 40.86437703,-73.92653575,noise 40.75729157,-73.83400373,noise 40.74202303,-73.91894077,noise 40.70393413,-73.94755188,noise 40.85169711,-73.93199346,noise 40.72072702,-73.98888867,noise 40.8239852,-73.89389558,noise 40.77177707,-73.92444281,noise 40.73249706,-74.00183297,noise 40.78293275,-73.97994843,noise 40.68716729,-73.97475969,noise 40.86578083,-73.89303349,noise 40.64799659,-73.99847926,noise 40.73249706,-74.00183297,noise 40.64799659,-73.99847926,noise 40.6936969,-73.80036912,noise 40.74371413,-73.98689277,noise 40.76154468,-73.92445081,noise 40.81337978,-73.95146477,noise 40.68272042,-73.96329223,noise 40.69464039,-73.84847981,noise 40.73816657,-73.98363176,noise 40.81726755,-73.9422565,noise 40.67438437,-73.87895984,noise 40.76550199,-73.98746608,noise 40.83627203,-73.8896261,noise 40.76494318,-73.91720536,noise 40.68829839,-73.95708715,noise 40.76154468,-73.92445081,noise 40.88923532,-73.90039556,noise 40.76154468,-73.92445081,noise 40.66064331,-73.96062997,noise 40.72579798,-73.97916828,noise 40.77072263,-73.90864902,noise 40.63597511,-73.97814065,noise 40.70393413,-73.94755188,noise 40.80150481,-73.9484719,noise 40.66064331,-73.96062997,noise 40.65958372,-73.93123058,noise 40.86385196,-73.92523119,noise 40.74238177,-73.87760933,noise 40.77923644,-73.94766588,noise 40.64018175,-73.95530567,noise 40.82690952,-73.94753444,noise 40.82710462,-73.94803293,noise 40.76494318,-73.91720536,noise 40.77943673,-73.94750685,noise 40.77923644,-73.94766588,noise 40.84647695,-73.9120871,noise 40.72981901,-73.97892168,noise 40.67915413,-73.98342993,noise 40.72979695,-73.95838458,noise 40.73249706,-74.00183297,noise 40.64018175,-73.95530567,noise 40.84031071,-73.89089878,noise 40.804827,-73.96621573,noise 40.68220447,-73.93787741,noise 40.72543203,-73.99677099,noise 40.85371678,-73.92680056,noise 40.68021182,-73.94330537,noise 40.76223598,-73.98986362,noise 40.72285388,-73.98585425,noise 40.67915413,-73.98342993,noise 40.6806071,-73.94337714,noise 40.71758787,-73.95731359,noise 40.84554197,-73.92100853,noise 40.79655889,-73.96299469,noise 40.85855469,-73.92960413,noise 40.86165878,-73.92932247,noise 40.72774509,-73.94213564,noise 40.75962609,-73.99547346,noise 40.76007077,-73.99654912,noise 40.71113619,-73.96082017,noise 40.86637626,-73.92825812,noise 40.72154525,-73.84483988,noise 40.64018175,-73.95530567,noise 40.72774509,-73.94213564,noise 40.7277505,-73.94199131,noise 40.759412,-73.99561425,noise 40.70230473,-73.90938474,noise 40.81904517,-73.95214348,noise 40.71728083,-73.95832025,noise 40.66970559,-73.95788496,noise 40.72774509,-73.94213564,noise 40.72162262,-73.84522572,noise 40.72154525,-73.84483988,noise 40.72190504,-73.8450086,noise 40.6333314,-73.92083459,noise 40.81904517,-73.95214348,noise 40.83501359,-73.94522246,noise 40.70180961,-73.91520279,noise 40.72152758,-73.94650265,noise 40.75725199,-73.86935222,noise 40.76115165,-73.92364989,noise 40.73394353,-74.00264127,noise 40.68688694,-73.87907417,noise 40.7582176,-73.98907012,noise 40.73178846,-73.98969145,noise 40.76115165,-73.92364989,noise 40.76115165,-73.92364989,noise 40.71066973,-73.93653431,noise 40.82312038,-73.95049658,noise 40.72393341,-74.00246409,noise 40.73924884,-73.88445696,noise 40.74402881,-73.92615239,noise 40.88956907,-73.89912197,noise 40.7202352,-73.98447673,noise 40.71330642,-73.95834077,noise 40.7235816,-73.98916238,noise 40.74474367,-73.98938991,noise 40.71010746,-73.84870075,noise 40.74474367,-73.98938991,noise 40.70234519,-73.94238129,noise 40.73306797,-73.9982933,noise 40.8453424,-73.86550705,noise 40.75607293,-73.88055479,noise 40.73321576,-73.98992216,noise 40.86596699,-73.92776686,noise 40.7522381,-73.86291949,noise 40.77923644,-73.94766588,noise 40.70963675,-73.83002488,noise 40.72349367,-73.98825325,noise 40.74895675,-73.93730628,noise 40.61365719,-73.97799308,noise 40.73199094,-73.98410956,noise 40.61365719,-73.97799308,noise 40.83416959,-73.92778332,noise 40.75159103,-73.870641,noise 40.75372168,-73.83282154,noise 40.83735689,-73.92048701,noise 40.72114459,-73.99370114,noise 40.70684243,-73.92141815,noise 40.67821199,-73.97923002,noise 40.6946984,-73.94846068,noise 40.68716729,-73.97475969,noise 40.86437703,-73.92653575,noise 40.7623246,-73.9764531,noise 40.72349367,-73.98825325,noise 40.76494318,-73.91720536,noise 40.67787642,-73.95688835,noise 40.67953668,-74.00632378,noise 40.76365247,-73.99252751,noise 40.61365719,-73.97799308,noise 40.7036601,-73.92805454,noise 40.72349367,-73.98825325,noise 40.69598973,-73.90351155,noise 40.86592029,-73.92770907,noise 40.74645997,-73.91708758,noise 40.72116616,-73.98868657,noise 40.76349768,-73.87813729,noise 40.66556545,-73.98931239,noise 40.86385196,-73.92523119,noise 40.70963675,-73.83002488,noise 40.80624132,-73.95281733,noise 40.80587078,-73.95280676,noise 40.72349367,-73.98825325,noise 40.67915413,-73.98342993,noise 40.73002665,-73.99418378,noise 40.86592029,-73.92770907,noise 40.7296035,-73.98823774,noise 40.67915413,-73.98342993,noise 40.75453592,-73.96875699,noise 40.63597511,-73.97814065,noise 40.74416744,-73.91247833,noise 40.72349367,-73.98825325,noise 40.72125331,-73.98313085,noise 40.76154468,-73.92445081,noise 40.7661376,-73.74517461,noise 40.76349768,-73.87813729,noise 40.66277894,-73.95377666,noise 40.73398154,-73.98987513,noise 40.74445865,-73.99652106,noise 40.73567436,-73.88096663,noise 40.78985149,-73.97608946,noise 40.66247472,-73.9373371,noise 40.66277894,-73.95377666,noise 40.68230634,-73.92894289,noise 40.68250667,-73.94374329,noise 40.67915413,-73.98342993,noise 40.81591659,-73.94115218,noise 40.61297719,-74.12435768,noise 40.78985149,-73.97608946,noise 40.67915413,-73.98342993,noise 40.78417568,-73.97758645,noise 40.73391567,-73.98987154,noise 40.78711259,-73.94502353,noise 40.67778937,-73.74536077,noise 40.85943217,-73.88709686,noise 40.72587728,-73.9775339,noise 40.54938693,-74.15070863,noise 40.68400462,-73.93227625,noise 40.71066973,-73.93653431,noise 40.63820736,-74.01750752,noise 40.69252655,-73.83813164,noise 40.82103435,-73.95724362,noise 40.78536042,-73.97298193,noise 40.73967425,-73.99094602,noise 40.78517107,-73.97313367,noise 40.68674049,-73.84403746,noise 40.79934282,-73.93898167,noise 40.65599356,-73.9043587,noise 40.66294637,-73.95378376,noise 40.71035235,-73.94968939,noise 40.76430472,-73.98309468,noise 40.86368678,-73.89621112,noise 40.72844754,-73.98467686,noise 40.76550199,-73.98746608,noise 40.67482164,-73.97635782,noise 40.7111325,-73.96654457,noise 40.8022381,-73.95620822,noise 40.79892213,-73.96308729,noise 40.79892213,-73.96308729,noise 40.71758787,-73.95731359,noise 40.81949682,-73.93804189,noise 40.66909362,-73.89710151,noise 40.60980622,-74.16040003,noise 40.84328981,-73.90124503,noise 40.67821199,-73.97923002,noise 40.65972716,-73.98791847,noise 40.84800366,-73.89634402,noise 40.75333914,-73.88875651,noise 40.82300988,-73.89586628,noise 40.86165878,-73.92932247,noise 40.82946792,-73.94824789,noise 40.71054199,-73.86483039,noise 40.72639339,-73.95124671,noise 40.75831652,-73.99024684,noise 40.67560467,-73.98042052,noise 40.68350056,-73.97607711,noise 40.7700659,-73.98285855,noise 40.66864592,-73.95738817,noise 40.63679839,-74.02262707,noise 40.71758787,-73.95731359,noise 40.84459402,-73.93719807,noise 40.70504946,-73.90592938,noise 40.73588925,-73.99120995,noise 40.65972716,-73.98791847,noise 40.65972716,-73.98791847,noise 40.73588925,-73.99120995,noise 40.74391735,-73.98786712,noise 40.72894882,-73.97836993,noise 40.84459402,-73.93719807,noise 40.83777968,-73.94402036,noise 40.73443443,-73.98990393,noise 40.83777968,-73.94402036,noise 40.61915093,-73.97186412,noise 40.69506767,-73.95185382,noise 40.77148653,-73.92939651,noise 40.79982593,-73.94448931,noise 40.68981355,-73.93895209,noise 40.79531189,-73.93591188,noise 40.74593024,-73.97652746,noise 40.80641492,-73.94226231,noise 40.74798772,-73.91193195,noise 40.63597511,-73.97814065,noise 40.7661376,-73.74517461,noise 40.71758787,-73.95731359,noise 40.73394353,-74.00264127,noise 40.76115165,-73.92364989,noise 40.76115715,-73.92366432,noise 40.70415201,-73.93361911,noise 40.74391839,-73.92518535,noise 40.74395146,-73.92539462,noise 40.69430506,-73.91851195,noise 40.72072702,-73.98888867,noise 40.76330097,-73.92820671,noise 40.76346859,-73.99281632,noise 40.76362248,-73.99701462,noise 40.7909056,-73.93913025,noise 40.76346859,-73.99281632,noise 40.72114187,-73.99431804,noise 40.71387984,-73.95769833,noise 40.76494318,-73.91720536,noise 40.7111325,-73.96654457,noise 40.75859105,-73.99094706,noise 40.63559076,-73.97774084,noise 40.73991339,-74.00079029,noise 40.69726627,-73.96765506,noise 40.7192033,-73.98549789,noise 40.68230634,-73.92894289,noise 40.72302927,-73.983787,noise 40.69822499,-73.80633492,noise 40.80746061,-73.919309,noise 40.68718749,-73.91798339,noise 40.7147337,-73.96677363,noise 40.72457672,-73.98003814,noise 40.81401074,-73.94464728,noise 40.71881923,-73.98712494,noise 40.72072702,-73.98888867,noise 40.78536042,-73.97298193,noise 40.72448395,-73.9834872,noise 40.7657348,-73.98360333,noise 40.66431004,-73.93090851,noise 40.76577062,-73.91898768,noise 40.7269933,-73.98881908,noise 40.68230634,-73.92894289,noise 40.69058524,-73.95831169,noise 40.76343016,-73.99270081,noise 40.72349367,-73.98825325,noise 40.68729923,-73.95691111,noise 40.72349367,-73.98825325,noise 40.67407979,-73.96304823,noise 40.67850438,-73.98994845,noise 40.75380236,-73.92537637,noise 40.61897721,-73.92657171,noise 40.80149916,-73.96225511,noise 40.85382274,-73.91707665,noise 40.76494318,-73.91720536,noise 40.77923644,-73.94766588,noise 40.68947714,-73.96958077,noise 40.85723958,-73.89942405,noise 40.704234,-73.9330095,noise 40.72072702,-73.98888867,noise 40.62266764,-74.02541764,noise 40.65662476,-73.96009532,noise 40.62285979,-74.02534567,noise 40.71387984,-73.95769833,noise 40.64799659,-73.99847926,noise 40.70963675,-73.83002488,noise 40.74883018,-73.98551309,noise 40.88956351,-73.89903879,noise 40.78536042,-73.97298193,noise 40.64269519,-73.96977506,noise 40.63555239,-73.97802189,noise 40.76568266,-73.98364305,noise 40.72353263,-73.99608562,noise 40.72354087,-73.99614695,noise 40.62838143,-74.02904041,noise 40.72528724,-73.97797786,noise 40.73029441,-73.98223737,noise 40.64018175,-73.95530567,noise 40.66820407,-73.9506476,noise 40.71243818,-73.95592454,noise 40.73677571,-73.95532748,noise 40.71665985,-73.96453611,noise 40.68141314,-73.92709425,noise 40.68230634,-73.92894289,noise 40.76346859,-73.99281632,noise 40.67915413,-73.98342993,noise 40.82130491,-73.95420128,noise 40.68230634,-73.92894289,noise 40.6936969,-73.80036912,noise 40.69244227,-73.97271668,noise 40.68366696,-73.93218646,noise 40.69445455,-73.99446095,noise 40.67756174,-73.96833158,noise 40.81921839,-73.95289484,noise 40.72523144,-73.99221072,noise 40.76568266,-73.98364305,noise 40.67915413,-73.98342993,noise 40.7202352,-73.98447673,noise 40.67551815,-73.96333585,noise 40.71357016,-73.95902597,noise 40.71357016,-73.95902597,noise 40.76430472,-73.98309468,noise 40.71308054,-73.96407269,noise 40.67915413,-73.98342993,noise 40.74742033,-73.87685301,noise 40.74742033,-73.87685301,noise 40.81225294,-73.96210451,noise 40.72951901,-73.99981238,noise 40.63606328,-73.96787928,noise 40.77659153,-73.95673418,noise 40.73535385,-73.95511554,noise 40.72363905,-73.98732243,noise 40.69251066,-73.97174302,noise 40.70230473,-73.90938474,noise 40.83411404,-73.94111801,noise 40.69328793,-73.97385585,noise 40.80729251,-73.94645539,noise 40.73357556,-73.9931046,noise 40.73443443,-73.98990393,noise 40.63606328,-73.96787928,noise 40.68675574,-73.97552066,noise 40.80993634,-73.91546962,noise 40.86557997,-73.84436282,noise 40.86895885,-73.91583208,noise 40.83826905,-73.91410368,noise 40.8598744,-73.89321652,noise 40.72069629,-73.84627407,noise 40.72082846,-73.84658762,noise 40.70174433,-73.91232845,noise 40.76365789,-73.97346363,noise 40.76365789,-73.97346363,noise 40.67986616,-73.9495862,noise 40.67986616,-73.9495862,noise 40.74910473,-73.98616989,noise 40.74985425,-73.98793822,noise 40.74985425,-73.98793822,noise 40.82572712,-73.94880363,noise 40.6325799,-74.02137546,noise 40.64257243,-73.94867751,noise 40.83293256,-73.85128708,noise 40.76616348,-73.98755621,noise 40.83320462,-73.94480477,noise 40.82572712,-73.94880363,noise 40.75228836,-73.983982,noise 40.63555239,-73.97802189,noise 40.85101933,-73.9017396,noise 40.63606328,-73.96787928,noise 40.85209219,-73.93171834,noise 40.76362248,-73.99701462,noise 40.67413839,-73.72954485,noise 40.85209219,-73.93171834,noise 40.76617995,-73.98759592,noise 40.63597511,-73.97814065,noise 40.7671875,-73.98996395,noise 40.64200351,-73.96069141,noise 40.7988449,-73.96190988,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.63326889,-74.02108025,noise 40.81726755,-73.9422565,noise 40.76349768,-73.87813729,noise 40.87892449,-73.90478656,noise 40.77923644,-73.94766588,noise 40.86385196,-73.92523119,noise 40.69125426,-73.99798786,noise 40.80991804,-73.80358599,noise 40.72153934,-73.98760423,noise 40.71123665,-73.96600707,noise 40.76346859,-73.99281632,noise 40.75897464,-73.91899955,noise 40.73429466,-74.00716249,noise 40.67915413,-73.98342993,noise 40.68268425,-73.96180317,noise 40.62221209,-74.03545694,noise 40.76550199,-73.98746608,noise 40.76362248,-73.99701462,noise 40.78293275,-73.97994843,noise 40.67915413,-73.98342993,noise 40.72488931,-73.97828105,noise 40.7154748,-73.97839955,noise 40.71739153,-73.73944844,noise 40.70999601,-73.95771883,noise 40.75873427,-73.86009782,noise 40.72416386,-73.99442601,noise 40.67915413,-73.98342993,noise 40.72488931,-73.97828105,noise 40.72545164,-73.97653829,noise 40.86182903,-73.92945605,noise 40.8479991,-73.94029608,noise 40.7173285,-73.98451708,noise 40.75228836,-73.983982,noise 40.65972716,-73.98791847,noise 40.72407888,-74.00234504,noise 40.86111875,-73.92603322,noise 40.74281404,-73.9886432,noise 40.81726755,-73.9422565,noise 40.84799881,-73.93469364,noise 40.78043811,-73.95280673,noise 40.83320462,-73.94480477,noise 40.74582349,-73.97803964,noise 40.70160691,-73.93240263,noise 40.84459402,-73.93719807,noise 40.7174035,-73.95605473,noise 40.72953107,-73.9804155,noise 40.89787809,-73.8969933,noise 40.823746,-73.94410082,noise 40.88694359,-73.90707161,noise 40.64018175,-73.95530567,noise 40.71696661,-73.95482851,noise 40.7657348,-73.98360333,noise 40.84713557,-73.94235347,noise 40.76365789,-73.97346363,noise 40.84713557,-73.94235347,noise 40.74611005,-73.98491821,noise 40.81726755,-73.9422565,noise 40.73603504,-73.99780609,noise 40.63606328,-73.96787928,noise 40.77923644,-73.94766588,noise 40.71562216,-73.99427522,noise 40.86111875,-73.92603322,noise 40.64018175,-73.95530567,noise 40.71138031,-73.94674525,noise 40.66820407,-73.9506476,noise 40.64018175,-73.95530567,noise 40.71823482,-73.98931116,noise 40.72597827,-74.00133491,noise 40.64018175,-73.95530567,noise 40.7657348,-73.98360333,noise 40.69304898,-73.99072878,noise 40.76365789,-73.97346363,noise 40.7158555,-73.99495337,noise 40.86049954,-73.92775111,noise 40.5887406,-74.10207979,noise 40.69572285,-73.76158885,noise 40.7993517,-73.95907791,noise 40.82517084,-73.89683486,noise 40.77850171,-73.95632493,noise 40.75228836,-73.983982,noise 40.71674748,-73.99369795,noise 40.76550199,-73.98746608,noise 40.72951901,-73.99981238,noise 40.64000235,-73.96897637,noise 40.73697856,-73.89863852,noise 40.73984203,-74.00060264,noise 40.85209219,-73.93171834,noise 40.76075309,-73.98352514,noise 40.90121212,-73.84682963,noise 40.77923644,-73.94766588,noise 40.67732933,-74.01292834,noise 40.69726627,-73.96765506,noise 40.72565308,-73.9826066,noise 40.85913523,-73.89835835,noise 40.74034957,-73.99255538,noise 40.76323255,-73.99285606,noise 40.72349367,-73.98825325,noise 40.71958002,-73.95586209,noise 40.62582854,-74.07711393,noise 40.71906927,-73.95527802,noise 40.70150487,-73.92711916,noise 40.71144313,-73.94609232,noise 40.7683093,-73.92689082,noise 40.74034957,-73.99255538,noise 40.58286501,-73.95546643,noise 40.74195923,-73.92609695,noise 40.71906927,-73.95527802,noise 40.76754135,-73.91201079,noise 40.7127569,-73.95680808,noise 40.71562216,-73.99427522,noise 40.70315194,-74.0144301,noise 40.63555239,-73.97802189,noise 40.72349367,-73.98825325,noise 40.66777266,-73.9058702,noise 40.83804548,-73.91613862,noise 40.85354567,-73.91729026,noise 40.75919971,-73.98461925,noise 40.69242282,-73.97171781,noise 40.82805671,-73.91510332,noise 40.75728557,-73.97811528,noise 40.65905928,-73.91094285,noise 40.71562216,-73.99427522,noise 40.74310102,-73.89741304,noise 40.73677571,-73.95532748,noise 40.85199617,-73.93178712,noise 40.72953107,-73.9804155,noise 40.80416841,-73.96670009,noise 40.83047956,-73.85622503,noise 40.6471319,-74.00462341,noise 40.7623246,-73.9764531,noise 40.63597511,-73.97814065,noise 40.78540982,-73.9729458,noise 40.87289918,-73.918181,noise 40.80336774,-73.94685226,noise 40.81726755,-73.9422565,noise 40.823746,-73.94410082,noise 40.69304898,-73.99072878,noise 40.78421881,-73.97382737,noise 40.73677571,-73.95532748,noise 40.86553576,-73.9272684,noise 40.68748982,-73.91854192,noise 40.72781936,-73.98776542,noise 40.72349367,-73.98825325,noise 40.69304898,-73.99072878,noise 40.67438565,-73.95146859,noise 40.82103435,-73.95724362,noise 40.70757164,-73.78803896,noise 40.66721243,-73.88175928,noise 40.86430238,-73.89111611,noise 40.76615269,-73.91977781,noise 40.714115,-73.94873785,noise 40.75551699,-73.99160079,noise 40.72579798,-73.97916828,noise 40.73104235,-73.99960311,noise 40.73677571,-73.95532748,noise 40.80416841,-73.96670009,noise 40.80712927,-73.94965959,noise 40.7159289,-73.96191037,noise 40.83777968,-73.94402036,noise 40.8565238,-73.92991355,noise 40.80991804,-73.80358599,noise 40.69322784,-73.73402913,noise 40.72423534,-73.99778483,noise 40.82911393,-73.91964047,noise 40.72072702,-73.98888867,noise 40.72349367,-73.98825325,noise 40.74420325,-74.00669441,noise 40.82200374,-73.93991835,noise 40.69058524,-73.95831169,noise 40.72579798,-73.97916828,noise 40.68250667,-73.94374329,noise 40.74713319,-73.88867665,noise 40.74402775,-73.99755321,noise 40.80991804,-73.80358599,noise 40.75098845,-74.00177934,noise 40.65778597,-73.95324671,noise 40.77096387,-73.96182474,noise 40.75098845,-74.00177934,noise 40.72579798,-73.97916828,noise 40.86984817,-73.91588157,noise 40.73677571,-73.95532748,noise 40.74406051,-74.00680988,noise 40.74383196,-73.98525434,noise 40.64018175,-73.95530567,noise 40.70524716,-73.95661818,noise 40.86438525,-73.92651766,noise 40.67631977,-73.95593759,noise 40.56894997,-74.12489841,noise 40.71130526,-73.95771439,noise 40.72088346,-73.9888201,noise 40.83777968,-73.94402036,noise 40.84287959,-73.85357432,noise 40.72579798,-73.97916828,noise 40.74745402,-73.88556874,noise 40.6946875,-73.95519701,noise 40.6806071,-73.94337714,noise 40.85499223,-73.92987178,noise 40.72937628,-74.00160558,noise 40.70155644,-73.79026529,noise 40.78536042,-73.97298193,noise 40.80416841,-73.96670009,noise 40.72349426,-74.0016812,noise 40.86049954,-73.92775111,noise 40.71758787,-73.95731359,noise 40.74713319,-73.88867665,noise 40.63606328,-73.96787928,noise 40.72279663,-73.98959904,noise 40.75228836,-73.983982,noise 40.64018175,-73.95530567,noise 40.72306913,-73.95039412,noise 40.66064331,-73.96062997,noise 40.88923532,-73.90039556,noise 40.63555239,-73.97802189,noise 40.82200374,-73.93991835,noise 40.81906637,-73.93891662,noise 40.75605754,-73.94282211,noise 40.85199617,-73.93178712,noise 40.88252537,-73.88096408,noise 40.71100589,-73.96536874,noise 40.68158489,-73.97696835,noise 40.82200374,-73.93991835,noise 40.84828456,-73.91419919,noise 40.63597511,-73.97814065,noise 40.78905143,-73.97030087,noise 40.74602933,-73.97791326,noise 40.74238268,-73.87090067,noise 40.81453554,-73.95914444,noise 40.823746,-73.94410082,noise 40.70889971,-73.95471855,noise 40.76550199,-73.98746608,noise 40.86546354,-73.86526028,noise 40.82605852,-73.87829732,noise 40.86385196,-73.92523119,noise 40.90121212,-73.84682963,noise 40.7594005,-73.9882036,noise 40.74883018,-73.98551309,noise 40.68485687,-73.97804169,noise 40.70393413,-73.94755188,noise 40.86438525,-73.92651766,noise 40.81906637,-73.93891662,noise 40.87584082,-73.90313124,noise 40.74883018,-73.98551309,noise 40.68158489,-73.97696835,noise 40.73521408,-73.99171521,noise 40.69687159,-73.98314784,noise 40.74883018,-73.98551309,noise 40.64018175,-73.95530567,noise 40.7273716,-73.98474205,noise 40.72919187,-73.98904241,noise 40.72921044,-73.98364118,noise 40.69952146,-73.78816554,noise 40.74883018,-73.98551309,noise 40.66200761,-73.95367267,noise 40.83314415,-73.9446169,noise 40.63597511,-73.97814065,noise 40.76523994,-73.91390907,noise 40.76011649,-73.98483562,noise 40.74202303,-73.91894077,noise 40.76122585,-73.92378698,noise 40.78795176,-73.9381832,noise 40.70048004,-73.78118033,noise 40.74883018,-73.98551309,noise 40.6808744,-73.91405764,noise 40.71562216,-73.99427522,noise 40.86627931,-73.88619945,noise 40.81726755,-73.9422565,noise 40.69304898,-73.99072878,noise 40.86438525,-73.92651766,noise 40.85199617,-73.93178712,noise 40.64018175,-73.95530567,noise 40.71823482,-73.98931116,noise 40.86637626,-73.92825812,noise 40.74883018,-73.98551309,noise 40.66064331,-73.96062997,noise 40.63597511,-73.97814065,noise 40.74883018,-73.98551309,noise 40.78311615,-73.95085853,noise 40.66931269,-73.87959628,noise 40.74883018,-73.98551309,noise 40.73973584,-73.85191009,noise 40.75196556,-74.00264559,noise 40.73787622,-73.98850331,noise 40.62863721,-74.08003528,noise 40.66064331,-73.96062997,noise 40.76348475,-73.98894652,noise 40.64018175,-73.95530567,noise 40.70889971,-73.95471855,noise 40.84300359,-73.90357662,noise 40.74258786,-73.98041167,noise 40.71169202,-73.76970902,noise 40.65168983,-73.93139008,noise 40.72104319,-73.95643113,noise 40.723084,-73.98267582,noise 40.71495071,-73.95175288,noise 40.66277894,-73.95377666,noise 40.76494318,-73.91720536,noise 40.70822427,-74.0143807,noise 40.86632386,-73.92786771,noise 40.6887712,-73.83016461,noise 40.69822499,-73.80633492,noise 40.8635874,-73.91956628,noise 40.70340003,-73.92482688,noise 40.67746117,-73.95484085,noise 40.63708146,-73.93504778,noise 40.82432319,-73.95197348,noise 40.70826583,-73.95511935,noise 40.86675939,-73.9309151,noise 40.70211545,-73.82056959,noise 40.81538169,-73.94178849,noise 40.74447137,-73.91150714,noise 40.70844539,-73.94510645,noise 40.62863721,-74.08003528,noise 40.73940541,-74.00695374,noise 40.77999806,-73.97690181,noise 40.75725199,-73.86935222,noise 40.73841163,-73.84676726,noise 40.72811357,-73.99450506,noise 40.64007971,-73.98540338,noise 40.7296035,-73.98823774,noise 40.85199617,-73.93178712,noise 40.74622608,-73.85980289,noise 40.73324078,-74.00531135,noise 40.61478363,-73.93656785,noise 40.7267337,-73.89399991,noise 40.65662476,-73.96009532,noise 40.86567825,-73.92689224,noise 40.64018175,-73.95530567,noise 40.74394427,-73.98362673,noise 40.66277894,-73.95377666,noise 40.70751345,-74.01379984,noise 40.66408306,-73.94816714,noise 40.85064236,-73.94049974,noise 40.6046802,-74.01412071,noise 40.70963675,-73.83002488,noise 40.64018175,-73.95530567,noise 40.71243818,-73.95592454,noise 40.7296035,-73.98823774,noise 40.72844754,-73.98467686,noise 40.750475,-73.99336993,noise 40.72349367,-73.98825325,noise 40.71592199,-73.76984952,noise 40.66217506,-73.95370139,noise 40.83742543,-73.92036405,noise 40.76494318,-73.91720536,noise 40.61478363,-73.93656785,noise 40.76494318,-73.91720536,noise 40.7612619,-73.9942713,noise 40.86568682,-73.92743455,noise 40.70630593,-73.91957571,noise 40.73369102,-74.00228404,noise 40.68138125,-74.00444551,noise 40.71979866,-73.95347016,noise 40.71484896,-73.96670864,noise 40.75800513,-73.96819227,noise 40.68136801,-73.92110205,noise 40.70751345,-74.01379984,noise 40.73434974,-74.00300933,noise 40.74244241,-73.98050554,noise 40.70711579,-74.01067624,noise 40.7623246,-73.9764531,noise 40.81986557,-73.95852336,noise 40.72349367,-73.98825325,noise 40.84459402,-73.93719807,noise 40.70630593,-73.91957571,noise 40.8346087,-73.94232095,noise 40.78059395,-73.97832788,noise 40.76494318,-73.91720536,noise 40.64018175,-73.95530567,noise 40.67850438,-73.98994845,noise 40.81909934,-73.93898884,noise 40.74391839,-73.92518535,noise 40.82854734,-73.94028824,noise 40.78873125,-73.97426256,noise 40.78059395,-73.97832788,noise 40.69745049,-73.93098235,noise 40.7410231,-73.92169179,noise 40.66985104,-73.93938131,noise 40.75223646,-73.93681594,noise 40.74203508,-73.99834359,noise 40.75565695,-73.88443932,noise 40.73249706,-74.00183297,noise 40.74721378,-73.92358286,noise 40.85101933,-73.9017396,noise 40.7994951,-73.95360227,noise 40.70751345,-74.01379984,noise 40.72349367,-73.98825325,noise 40.86568682,-73.92743455,noise 40.88956629,-73.89907857,noise 40.88923532,-73.90039556,noise 40.66294637,-73.95378376,noise 40.76330097,-73.92820671,noise 40.76154468,-73.92445081,noise 40.74737373,-73.87437009,noise 40.70522812,-73.90623209,noise 40.71114444,-73.9608887,noise 40.73029441,-73.98223737,noise 40.7811953,-73.97974674,noise 40.70630593,-73.91957571,noise 40.86324299,-73.92578863,noise 40.76362248,-73.99701462,noise 40.71977767,-74.00680739,noise 40.67353868,-73.79229651,noise 40.70751345,-74.01379984,noise 40.74244241,-73.98050554,noise 40.65692084,-73.92609024,noise 40.70751345,-74.01379984,noise 40.64018175,-73.95530567,noise 40.76331469,-73.92819586,noise 40.84459402,-73.93719807,noise 40.67893045,-73.88780625,noise 40.71958002,-73.95586209,noise 40.5116606,-74.24025062,noise 40.84841625,-73.91411588,noise 40.66277894,-73.95377666,noise 40.7092334,-73.77562212,noise 40.74391839,-73.92518535,noise 40.71680457,-73.95458693,noise 40.77862345,-73.97952727,noise 40.76181566,-73.92332064,noise 40.77923644,-73.94766588,noise 40.66820407,-73.9506476,noise 40.85064236,-73.94049974,noise 40.68242682,-73.93793128,noise 40.72605395,-73.98353372,noise 40.62557596,-74.03018477,noise 40.68979179,-73.90654227,noise 40.86568682,-73.92743455,noise 40.72349367,-73.98825325,noise 40.63995892,-73.98519082,noise 40.86568682,-73.92743455,noise 40.70095675,-73.8256651,noise 40.70967188,-73.96517105,noise 40.732966,-73.95534447,noise 40.81399223,-73.95954216,noise 40.75873427,-73.86009782,noise 40.80416841,-73.96670009,noise 40.85871394,-73.89381125,noise 40.76331469,-73.92819586,noise 40.61194302,-74.15943271,noise 40.76330097,-73.92820671,noise 40.61194302,-74.15943271,noise 40.77692736,-73.81758782,noise 40.8512885,-73.89878603,noise 40.80746061,-73.919309,noise 40.67892423,-74.01105389,noise 40.74521326,-73.99236718,noise 40.70277711,-73.92938633,noise 40.74394427,-73.98362673,noise 40.69464039,-73.84847981,noise 40.70789309,-73.78672142,noise 40.80416841,-73.96670009,noise 40.72635859,-73.98331356,noise 40.76430472,-73.98309468,noise 40.71544206,-73.95184271,noise 40.69641847,-73.9041817,noise 40.68132235,-73.94110871,noise 40.75380236,-73.92537637,noise 40.86992768,-73.91576215,noise 40.79282435,-73.80713956,noise 40.65662476,-73.96009532,noise 40.66919734,-73.89645248,noise 40.63836084,-73.96851953,noise 40.71892321,-73.98452032,noise 40.73940544,-74.00644854,noise 40.81986557,-73.95852336,noise 40.78513581,-73.97501866,noise 40.81301788,-73.94619429,noise 40.68138125,-74.00444551,noise 40.7296035,-73.98823774,noise 40.70224685,-73.94334794,noise 40.71138031,-73.94674525,noise 40.75510246,-73.97320355,noise 40.79934282,-73.93898167,noise 40.68282211,-73.93799942,noise 40.72488931,-73.97828105,noise 40.6895765,-73.97175508,noise 40.68829839,-73.95708715,noise 40.80641492,-73.94226231,noise 40.63836084,-73.96851953,noise 40.74478006,-73.97588188,noise 40.7675825,-73.91197824,noise 40.7202352,-73.98447673,noise 40.73443443,-73.98990393,noise 40.72349367,-73.98825325,noise 40.76431686,-73.9957836,noise 40.75179336,-73.86994763,noise 40.65972716,-73.98791847,noise 40.72258676,-73.97994855,noise 40.63836084,-73.96851953,noise 40.70624307,-73.94301632,noise 40.67985516,-73.96417712,noise 40.63080114,-74.02208823,noise 40.65269264,-73.96356102,noise 40.67413839,-73.72954485,noise 40.72228213,-73.9801687,noise 40.69333284,-73.96702951,noise 40.79770759,-73.94018227,noise 40.72674376,-73.99168018,noise 40.83627203,-73.8896261,noise 40.85199617,-73.93178712,noise 40.7516051,-73.97089504,noise 40.67290293,-73.95020432,noise 40.73305408,-74.00640824,noise 40.66031861,-73.9397504,noise 40.73434974,-74.00300933,noise 40.73679196,-73.98775294,noise 40.68230634,-73.92894289,noise 40.73486552,-74.00798525,noise 40.66064331,-73.96062997,noise 40.67893045,-73.88780625,noise 40.65972716,-73.98791847,noise 40.72365587,-73.99106365,noise 40.75940563,-73.9851029,noise 40.63597511,-73.97814065,noise 40.69464039,-73.84847981,noise 40.80641492,-73.94226231,noise 40.68374699,-73.99109423,noise 40.86546354,-73.86526028,noise 40.67051278,-73.97855831,noise 40.7104062,-73.95375807,noise 40.71965964,-73.99306996,noise 40.7623246,-73.9764531,noise 40.73977873,-74.00623567,noise 40.79376833,-73.9341076,noise 40.64018175,-73.95530567,noise 40.74258786,-73.98041167,noise 40.86111875,-73.92603322,noise 40.88923532,-73.90039556,noise 40.64269519,-73.96977506,noise 40.8598744,-73.89321652,noise 40.83508938,-73.94889038,noise 40.83361516,-73.85713613,noise 40.68272042,-73.96329223,noise 40.72255108,-73.97996299,noise 40.77923644,-73.94766588,noise 40.7640329,-73.98247023,noise 40.76037714,-73.91509574,noise 40.74677464,-73.89870301,noise 40.73394353,-74.00264127,noise 40.73443443,-73.98990393,noise 40.64849436,-73.96768951,noise 40.72349367,-73.98825325,noise 40.6806071,-73.94337714,noise 40.73940544,-74.00644854,noise 40.62863721,-74.08003528,noise 40.68948538,-73.96962043,noise 40.7274952,-73.98535176,noise 40.71996962,-73.95544697,noise 40.74521326,-73.99236718,noise 40.62863721,-74.08003528,noise 40.66064331,-73.96062997,noise 40.79272184,-73.97318841,noise 40.88956351,-73.89903879,noise 40.77506622,-73.97924675,noise 40.7133723,-73.76318142,noise 40.82155481,-73.95454435,noise 40.72349367,-73.98825325,noise 40.6471319,-74.00462341,noise 40.72349367,-73.98825325,noise 40.72674376,-73.99168018,noise 40.79934282,-73.93898167,noise 40.88712803,-73.90437698,noise 40.74026183,-74.00586403,noise 40.65662476,-73.96009532,noise 40.7657348,-73.98360333,noise 40.70808154,-74.01444559,noise 40.85412691,-73.93817953,noise 40.78106247,-73.94941932,noise 40.66064331,-73.96062997,noise 40.76753406,-73.92087723,noise 40.66725385,-73.99454251,noise 40.81393818,-73.91551872,noise 40.84543356,-73.936572,noise 40.73940544,-74.00644854,noise 40.64018175,-73.95530567,noise 40.71537318,-73.95822404,noise 40.71514153,-74.01008954,noise 40.68268743,-73.96313,noise 40.69479963,-73.95416917,noise 40.76331469,-73.92819586,noise 40.74244241,-73.98050554,noise 40.90367938,-73.8508647,noise 40.68356755,-73.94105625,noise 40.66064331,-73.96062997,noise 40.7111325,-73.96654457,noise 40.82605852,-73.87829732,noise 40.62221209,-74.03545694,noise 40.72488931,-73.97828105,noise 40.72488931,-73.97828105,noise 40.76331469,-73.92819586,noise 40.73249706,-74.00183297,noise 40.679298,-73.94961908,noise 40.63597511,-73.97814065,noise 40.76159967,-73.92458792,noise 40.7133723,-73.76318142,noise 40.75873427,-73.86009782,noise 40.72953107,-73.9804155,noise 40.71085754,-73.96491072,noise 40.80342652,-73.95608101,noise 40.76346859,-73.99281632,noise 40.73371023,-74.00215775,noise 40.67915413,-73.98342993,noise 40.77923644,-73.94766588,noise 40.63555239,-73.97802189,noise 40.71749685,-74.00536781,noise 40.75603687,-73.8435648,noise 40.7657348,-73.98360333,noise 40.78867286,-73.94771624,noise 40.6801084,-73.86059446,noise 40.71739153,-73.73944844,noise 40.6806071,-73.94337714,noise 40.72844754,-73.98467686,noise 40.77850171,-73.95632493,noise 40.68321658,-73.95387066,noise 40.76753406,-73.92087723,noise 40.64799659,-73.99847926,noise 40.69822499,-73.80633492,noise 40.64269519,-73.96977506,noise 40.78962999,-73.8141331,noise 40.66820407,-73.9506476,noise 40.64598837,-73.95197572,noise 40.71176537,-73.94268697,noise 40.61025183,-73.98358389,noise 40.73815366,-74.0090249,noise 40.76155018,-73.92446164,noise 40.70171605,-73.98282203,noise 40.76323255,-73.99285606,noise 40.72949431,-74.00090201,noise 40.69221561,-73.96666946,noise 40.67915413,-73.98342993,noise 40.86385196,-73.92523119,noise 40.84711145,-73.93818244,noise 40.67915413,-73.98342993,noise 40.77923644,-73.94766588,noise 40.83573106,-73.91162427,noise 40.67514677,-73.95344003,noise 40.86637626,-73.92825812,noise 40.62863721,-74.08003528,noise 40.63982714,-73.98494943,noise 40.72579598,-73.98373582,noise 40.62221209,-74.03545694,noise 40.76753406,-73.92087723,noise 40.72198024,-73.98038886,noise 40.84495811,-73.86314768,noise 40.72317298,-73.99395709,noise 40.86091822,-73.90351449,noise 40.75510246,-73.97320355,noise 40.77923644,-73.94766588,noise 40.72279663,-73.98959904,noise 40.62863721,-74.08003528,noise 40.69908568,-73.82086265,noise 40.61655033,-73.93020153,noise 40.87378956,-73.90526036,noise 40.70296973,-73.81923644,noise 40.74238177,-73.87760933,noise 40.71968947,-73.98856417,noise 40.76430472,-73.98309468,noise 40.71292513,-73.95899029,noise 40.62343625,-74.02509733,noise 40.80645153,-73.96504816,noise 40.61759221,-73.91249301,noise 40.67327005,-73.98950943,noise 40.65683338,-73.96013845,noise 40.66418705,-73.98473488,noise 40.70749165,-73.89562113,noise 40.72306557,-73.98907949,noise 40.65683338,-73.96013845,noise 40.72679608,-73.99446548,noise 40.80981848,-73.94246165,noise 40.72652715,-73.99584371,noise 40.65683338,-73.96013845,noise 40.82642774,-73.95045076,noise 40.72279663,-73.98959904,noise 40.71776846,-73.96366974,noise 40.74159164,-73.98114813,noise 40.8208402,-73.8726489,noise 40.75661094,-73.96872353,noise 40.86637626,-73.92825812,noise 40.78273201,-73.95114046,noise 40.73249706,-74.00183297,noise 40.74992339,-73.99510238,noise 40.75020893,-74.00233152,noise 40.72245947,-74.00257227,noise 40.71979651,-73.98851004,noise 40.6801084,-73.86059446,noise 40.76389308,-73.91499379,noise 40.7111325,-73.96654457,noise 40.8379254,-73.90633056,noise 40.67915413,-73.98342993,noise 40.82200374,-73.93991835,noise 40.71366785,-73.94931535,noise 40.73249706,-74.00183297,noise 40.76997974,-73.95751829,noise 40.71919324,-73.99984127,noise 40.76755781,-73.91199994,noise 40.65683338,-73.96013845,noise 40.73853272,-74.00387196,noise 40.63149425,-73.97185171,noise 40.61070408,-73.97958597,noise 40.71366785,-73.94931535,noise 40.71775427,-73.95461514,noise 40.7111325,-73.96654457,noise 40.7111325,-73.96654457,noise 40.80144421,-73.96208177,noise 40.72032678,-73.9968939,noise 40.73249706,-74.00183297,noise 40.7137782,-73.95746753,noise 40.62221209,-74.03545694,noise 40.67299585,-73.96379507,noise 40.85035422,-73.94060482,noise 40.7138099,-73.96174926,noise 40.70315194,-74.0144301,noise 40.61070408,-73.97958597,noise 40.71531994,-73.98988518,noise 40.810058,-73.91669046,noise 40.7222742,-73.9820483,noise 40.86475314,-73.88889552,noise 40.81561858,-73.94348264,noise 40.76034977,-73.98471284,noise 40.73603504,-73.99780609,noise 40.73423145,-73.991571,noise 40.72349367,-73.98825325,noise 40.69464039,-73.84847981,noise 40.74195923,-73.92609695,noise 40.65274786,-73.97507905,noise 40.75228836,-73.983982,noise 40.85862734,-73.90464571,noise 40.74896553,-73.8692999,noise 40.70711579,-74.01067624,noise 40.77603408,-73.95603048,noise 40.74685929,-73.8684054,noise 40.77096387,-73.96182474,noise 40.83777968,-73.94402036,noise 40.72349367,-73.98825325,noise 40.68187917,-73.7660803,noise 40.77923644,-73.94766588,noise 40.72528724,-73.97797786,noise 40.72349367,-73.98825325,noise 40.73991339,-74.00079029,noise 40.7703909,-73.91268214,noise 40.79953871,-73.94093911,noise 40.61023813,-73.98370275,noise 40.72573834,-73.98377913,noise 40.74896553,-73.8692999,noise 40.64269519,-73.96977506,noise 40.81909934,-73.93898884,noise 40.69464039,-73.84847981,noise 40.77923644,-73.94766588,noise 40.86895885,-73.91583208,noise 40.85371678,-73.92680056,noise 40.76808008,-73.79115328,noise 40.74622608,-73.85980289,noise 40.63597511,-73.97814065,noise 40.67640456,-73.96286308,noise 40.6506603,-73.95271113,noise 40.74708422,-73.88912785,noise 40.7159289,-73.96191037,noise 40.66418705,-73.98473488,noise 40.86368678,-73.89621112,noise 40.81401074,-73.94464728,noise 40.62263695,-74.03728351,noise 40.70543919,-73.95633673,noise 40.86637626,-73.92825812,noise 40.76550199,-73.98746608,noise 40.72376554,-73.98962775,noise 40.63902032,-73.91934694,noise 40.76265801,-73.87325109,noise 40.82642774,-73.95045076,noise 40.64351905,-73.96195531,noise 40.85434768,-73.90059963,noise 40.70230473,-73.90938474,noise 40.86064749,-73.92732798,noise 40.76754135,-73.9120144,noise 40.65670997,-73.96044848,noise 40.72971549,-73.98373486,noise 40.83314415,-73.9446169,noise 40.68272042,-73.96329223,noise 40.79703752,-73.92982087,noise 40.72110344,-73.99418095,noise 40.85072806,-73.93650912,noise 40.81726755,-73.9422565,noise 40.68829839,-73.95708715,noise 40.76550199,-73.98746608,noise 40.76265801,-73.87325109,noise 40.65445662,-73.96078138,noise 40.84466953,-73.9347692,noise 40.73991339,-74.00079029,noise 40.79418885,-73.93510758,noise 40.54154749,-74.1466613,noise 40.76804936,-73.99008656,noise 40.79416411,-73.9350426,noise 40.69054036,-73.99194794,noise 40.80690598,-73.94748519,noise 40.7942713,-73.93530614,noise 40.83314415,-73.9446169,noise 40.72933786,-74.0010319,noise 40.70585178,-73.92171868,noise 40.80927533,-73.943069,noise 40.81726755,-73.9422565,noise 40.70409101,-73.94267914,noise 40.76115165,-73.92364989,noise 40.6505106,-74.00721116,noise 40.77571736,-73.95330472,noise 40.77923644,-73.94766588,noise 40.87856451,-73.8755108,noise 40.73677571,-73.95532748,noise 40.65670997,-73.96044848,noise 40.73787622,-73.98850331,noise 40.72312231,-73.8028172,noise 40.79369628,-73.93780949,noise 40.85072806,-73.93650912,noise 40.82796175,-73.938464,noise 40.64018175,-73.95530567,noise 40.73448152,-74.0013892,noise 40.75228836,-73.983982,noise 40.85072806,-73.93650912,noise 40.74110724,-74.00523619,noise 40.84413857,-73.93751656,noise 40.65675108,-73.96027185,noise 40.72579798,-73.97916828,noise 40.71243818,-73.95592454,noise 40.74644833,-73.99146479,noise 40.73451995,-74.00117992,noise 40.74108252,-74.00566923,noise 40.80115778,-73.96788631,noise 40.74238268,-73.87090067,noise 40.81527274,-73.86440814,noise 40.67117181,-73.88313654,noise 40.73314743,-74.00586701,noise 40.85114171,-73.78846705,noise 40.85064236,-73.94049974,noise 40.77999452,-73.94885323,noise 40.72933786,-74.0010319,noise 40.68608731,-73.98266019,noise 40.74423073,-73.99387218,noise 40.68667491,-73.98414921,noise 40.72579798,-73.97916828,noise 40.72513285,-73.99701273,noise 40.83116528,-73.92114846,noise 40.73443443,-73.98990393,noise 40.72114187,-73.99431804,noise 40.8519854,-73.78904995,noise 40.68829839,-73.95708715,noise 40.65111975,-74.00969425,noise 40.74108252,-74.00566923,noise 40.72465418,-73.98388402,noise 40.72319343,-73.98040654,noise 40.70340003,-73.92482688,noise 40.72266176,-73.98600221,noise 40.6806071,-73.94337714,noise 40.81281539,-73.94180157,noise 40.7202352,-73.98447673,noise 40.77090114,-73.95530459,noise 40.70313263,-73.94177109,noise 40.84028891,-73.92146291,noise 40.84956115,-73.83400119,noise 40.72811357,-73.99450506,noise 40.77151776,-73.98215055,noise 40.80416841,-73.96670009,noise 40.72365037,-73.99102396,noise 40.70190454,-73.92982364,noise 40.67694358,-73.95098363,noise 40.76150898,-73.92441476,noise 40.87922802,-73.87235264,noise 40.87922802,-73.87235264,noise 40.87937617,-73.87229088,noise 40.72488035,-74.00261926,noise 40.74395146,-73.92539462,noise 40.70385718,-73.94164783,noise 40.72999085,-73.99222099,noise 40.76011649,-73.98483562,noise 40.68924747,-74.04453971,noise 40.70315194,-74.0144301,noise 40.76365789,-73.97346363,noise 40.72996889,-73.99214161,noise 40.72999085,-73.99222099,noise 40.81909934,-73.93898884,noise 40.80416841,-73.96670009,noise 40.76011649,-73.98483562,noise 40.85862734,-73.90464571,noise 40.70230473,-73.90938474,noise 40.85533462,-73.93331279,noise 40.73521408,-73.99171521,noise 40.83383763,-73.91585844,noise 40.7073419,-73.7960866,noise 40.6931256,-73.73373024,noise 40.76154468,-73.92445081,noise 40.62221209,-74.03545694,noise 40.75590774,-73.92149382,noise 40.88923532,-73.90039556,noise 40.64018175,-73.95530567,noise 40.74639663,-73.89957696,noise 40.62635513,-74.13191899,noise 40.71775427,-73.95461514,noise 40.86940311,-73.91530725,noise 40.71176537,-73.94268697,noise 40.86385196,-73.92523119,noise 40.66064331,-73.96062997,noise 40.66064331,-73.96062997,noise 40.66064331,-73.96062997,noise 40.72116616,-73.98868657,noise 40.7516051,-73.97089504,noise 40.66064331,-73.96062997,noise 40.75228836,-73.983982,noise 40.88344294,-73.89304124,noise 40.74136536,-73.99861426,noise 40.76331469,-73.92819586,noise 40.70340003,-73.92482688,noise 40.83811767,-73.94483683,noise 40.69908568,-73.82086265,noise 40.75228836,-73.983982,noise 40.86292586,-73.92776655,noise 40.74602933,-73.97791326,noise 40.76348475,-73.98894652,noise 40.61023813,-73.98370275,noise 40.88492053,-73.89111851,noise 40.70340003,-73.92482688,noise 40.7956667,-73.94252444,noise 40.85765561,-73.88917127,noise 40.83573106,-73.91162427,noise 40.69262759,-73.95899196,noise 40.71761695,-73.95439518,noise 40.72488035,-74.00261926,noise 40.6922899,-73.93029173,noise 40.7410231,-73.92169179,noise 40.86475314,-73.88889552,noise 40.63555239,-73.97802189,noise 40.88945286,-73.90447491,noise 40.75952137,-73.98926844,noise 40.85072806,-73.93650912,noise 40.7516051,-73.97089504,noise 40.88923532,-73.90039556,noise 40.74246078,-73.91696264,noise 40.81726755,-73.9422565,noise 40.70627472,-73.93065943,noise 40.68115298,-73.97251579,noise 40.64018175,-73.95530567,noise 40.70393413,-73.94755188,noise 40.74992339,-73.99510238,noise 40.66064331,-73.96062997,noise 40.66064331,-73.96062997,noise 40.66064331,-73.96062997,noise 40.85199617,-73.93178712,noise 40.57417788,-74.11801124,noise 40.67217726,-73.92755136,noise 40.71387984,-73.95769833,noise 40.68589443,-73.86523371,noise 40.74786188,-73.97348075,noise 40.66064331,-73.96062997,noise 40.66064331,-73.96062997,noise 40.76298565,-73.96413601,noise 40.73260037,-73.98476972,noise 40.6806071,-73.94337714,noise 40.84672813,-73.9399647,noise 40.7138099,-73.96174926,noise 40.68601939,-73.91964345,noise 40.72874574,-73.97853596,noise 40.84459402,-73.93719807,noise 40.80242871,-73.96833358,noise 40.84536979,-73.94051891,noise 40.68047556,-73.8694089,noise 40.74992339,-73.99510238,noise 40.70504946,-73.90592938,noise 40.71627877,-73.95079598,noise 40.84941247,-73.93022828,noise 40.71611929,-73.95013956,noise 40.8008507,-73.95287533,noise 40.759412,-73.99561425,noise 40.73009811,-74.0032148,noise 40.7642781,-73.97301575,noise 40.72395539,-74.00071433,noise 40.80942727,-73.93960459,noise 40.81566293,-73.90623545,noise 40.72391971,-74.00063857,noise 40.73779677,-73.99012354,noise 40.6917496,-73.98154446,noise 40.73998747,-73.99712393,noise 40.6917496,-73.98154446,noise 40.5926982,-74.07808025,noise 40.60988704,-73.98554684,noise 40.76642432,-73.96258906,noise 40.64815304,-74.00176579,noise 40.71645597,-74.01305136,noise 40.76115165,-73.92364989,noise 40.7111325,-73.96654457,noise 40.72306557,-73.98907949,noise 40.68588517,-73.97337559,noise 40.73561763,-73.99271107,noise 40.73249706,-74.00183297,noise 40.67796304,-73.98443609,noise 40.83293256,-73.85128708,noise 40.69169061,-73.90584725,noise 40.71066973,-73.93653431,noise 40.63836084,-73.96851953,noise 40.74258786,-73.98041167,noise 40.68187917,-73.7660803,noise 40.77235512,-73.81964743,noise 40.75734546,-73.92914439,noise 40.72110344,-73.99418095,noise 40.72974957,-73.99961394,noise 40.62863195,-74.07565091,noise 40.67350675,-73.95693444,noise 40.78084021,-73.94957114,noise 40.85140855,-73.88348136,noise 40.72349367,-73.98825325,noise 40.69536211,-73.91514247,noise 40.61023813,-73.98370275,noise 40.86244343,-73.92038471,noise 40.74480335,-73.95340939,noise 40.85551276,-73.89288733,noise 40.61029297,-73.98335338,noise 40.77923644,-73.94766588,noise 40.72349367,-73.98825325,noise 40.71996962,-73.95544697,noise 40.74992339,-73.99510238,noise 40.75224073,-73.82084964,noise 40.7516051,-73.97089504,noise 40.74366173,-73.92306726,noise 40.86179771,-73.90833231,noise 40.86179771,-73.90833231,noise 40.68321658,-73.95387066,noise 40.65662476,-73.96009532,noise 40.75676731,-73.80918589,noise 40.72153934,-73.98760423,noise 40.75471007,-73.97365489,noise 40.79186116,-73.94539159,noise 40.78293275,-73.97994843,noise 40.71970053,-73.98942636,noise 40.65662476,-73.96009532,noise 40.74159164,-73.98114813,noise 40.72205788,-73.98570651,noise 40.7174035,-73.95605473,noise 40.84682457,-73.93556225,noise 40.85072806,-73.93650912,noise 40.67915413,-73.98342993,noise 40.65662476,-73.96009532,noise 40.63555239,-73.97802189,noise 40.68272042,-73.96329223,noise 40.71775427,-73.95461514,noise 40.68669126,-73.84417099,noise 40.63555239,-73.97802189,noise 40.68688694,-73.87907417,noise 40.75851818,-73.967434,noise 40.71958002,-73.95586209,noise 40.8334941,-73.92731788,noise 40.73321576,-73.98992216,noise 40.61031609,-74.00306857,noise 40.65662476,-73.96009532,noise 40.67471165,-73.80540098,noise 40.8636697,-73.9195011,noise 40.61031609,-74.00306857,noise 40.84711145,-73.93818244,noise 40.76430472,-73.98309468,noise 40.7111325,-73.96654457,noise 40.7111325,-73.96654457,noise 40.69333284,-73.96702951,noise 40.76349768,-73.87813729,noise 40.74244241,-73.98050554,noise 40.73464291,-73.95500055,noise 40.6059406,-73.99128828,noise 40.68230634,-73.92894289,noise 40.68241996,-73.80760669,noise 40.74974967,-73.86381968,noise 40.7630701,-73.92770879,noise 40.61336789,-73.96302421,noise 40.6911064,-73.957363,noise 40.68674049,-73.84403746,noise 40.7403223,-73.99613876,noise 40.76114153,-73.92494581,noise 40.86678782,-73.92376361,noise 40.79892213,-73.96308729,noise 40.64269519,-73.96977506,noise 40.7765625,-73.95270477,noise 40.6807742,-73.96274888,noise 40.67486925,-73.98154192,noise 40.8512885,-73.89878603,noise 40.75851818,-73.967434,noise 40.79878494,-73.96321378,noise 40.73369102,-74.00228404,noise 40.79100712,-73.93906876,noise 40.69641847,-73.9041817,noise 40.72354087,-73.99614695,noise 40.76348475,-73.98894652,noise 40.85555721,-73.9291699,noise 40.56605616,-74.13986938,noise 40.76430472,-73.98309468,noise 40.67826199,-73.74684074,noise 40.68188521,-73.87836214,noise 40.71604975,-73.96214117,noise 40.78591202,-73.97260615,noise 40.7522381,-73.86291949,noise 40.86637626,-73.92825812,noise 40.86637626,-73.92825812,noise 40.73940544,-74.00644854,noise 40.80386655,-73.96692419,noise 40.86606038,-73.92787523,noise 40.85199617,-73.93178712,noise 40.86958222,-73.91627601,noise 40.74992339,-73.99510238,noise 40.72081111,-73.98122256,noise 40.73443443,-73.98990393,noise 40.70742875,-73.89587371,noise 40.76619802,-73.97954553,noise 40.755605,-73.99470492,noise 40.66919734,-73.89645248,noise 40.67201093,-73.95030952,noise 40.83706074,-73.9389543,noise 40.75431709,-73.98686542,noise 40.65300308,-73.96445102,noise 40.84459402,-73.93719807,noise 40.79942052,-73.9524357,noise 40.6917496,-73.98154446,noise 40.71484278,-73.99817473,noise 40.71440596,-73.9902208,noise 40.7303232,-74.00246794,noise 40.77490932,-73.9769108,noise 40.69334103,-73.96688165,noise 40.83252119,-73.86971756,noise 40.70006188,-73.99093698,noise 40.70073425,-73.98972871,noise 40.76757703,-73.91200713,noise 40.78311615,-73.95085853,noise 40.76115715,-73.92366432,noise 40.7299346,-73.98072207,noise 40.76430472,-73.98309468,noise 40.76349768,-73.87813729,noise 40.67759046,-73.74478108,noise 40.73186463,-73.9837596,noise 40.67119301,-73.95037863,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.66523262,-73.93145545,noise 40.69572285,-73.76158885,noise 40.66820407,-73.9506476,noise 40.7111325,-73.96654457,noise 40.72167657,-73.98753566,noise 40.74828198,-73.99389707,noise 40.7113795,-73.96644706,noise 40.70106417,-73.8964643,noise 40.75228836,-73.983982,noise 40.7516051,-73.97089504,noise 40.77999452,-73.94885323,noise 40.76330097,-73.92820671,noise 40.67759046,-73.74478108,noise 40.82835305,-73.94712137,noise 40.74244241,-73.98050554,noise 40.70211545,-73.82056959,noise 40.69464039,-73.84847981,noise 40.72349367,-73.98825325,noise 40.65160586,-73.93329659,noise 40.70273581,-73.93378282,noise 40.77923644,-73.94766588,noise 40.72349367,-73.98825325,noise 40.7516051,-73.97089504,noise 40.85199617,-73.93178712,noise 40.76494318,-73.91720536,noise 40.78674141,-73.81344421,noise 40.75633063,-73.96747478,noise 40.63436537,-74.13582957,noise 40.67713766,-73.96362698,noise 40.65662476,-73.96009532,noise 40.72674376,-73.99168018,noise 40.67713766,-73.96362698,noise 40.76494318,-73.91720536,noise 40.72674376,-73.99168018,noise 40.72517834,-73.98328499,noise 40.68158489,-73.97696835,noise 40.65662476,-73.96009532,noise 40.72949431,-74.00090201,noise 40.79041298,-73.9476282,noise 40.83142462,-73.82689877,noise 40.73321576,-73.98992216,noise 40.72935707,-73.99997114,noise 40.70963675,-73.83002488,noise 40.65662476,-73.96009532,noise 40.74321028,-73.97696148,noise 40.83391659,-73.92700664,noise 40.71939509,-73.96058083,noise 40.72844754,-73.98467686,noise 40.723084,-73.98267582,noise 40.65662476,-73.96009532,noise 40.74521022,-73.97246049,noise 40.72939001,-74.0009886,noise 40.65662476,-73.96009532,noise 40.72517834,-73.98328499,noise 40.74521022,-73.97246049,noise 40.71775427,-73.95461514,noise 40.72957665,-74.00084789,noise 40.82427381,-73.95203494,noise 40.72949431,-74.00090201,noise 40.76346859,-73.99281632,noise 40.78466143,-73.97723602,noise 40.72949431,-74.00090201,noise 40.80746061,-73.919309,noise 40.8138571,-73.94477023,noise 40.70547174,-73.94290878,noise 40.72916768,-74.00119065,noise 40.71357016,-73.95902597,noise 40.68829839,-73.95708715,noise 40.63555239,-73.97802189,noise 40.67963559,-73.94958277,noise 40.71996962,-73.95544697,noise 40.84711145,-73.93818244,noise 40.7104888,-73.96196037,noise 40.73293592,-73.95564036,noise 40.67486925,-73.98154192,noise 40.67350675,-73.95693444,noise 40.78131764,-73.94922052,noise 40.71749685,-74.00536781,noise 40.7661376,-73.74517461,noise 40.7661376,-73.74517461,noise 40.7603875,-73.92199029,noise 40.62221209,-74.03545694,noise 40.72950254,-74.00092005,noise 40.75618226,-73.93008771,noise 40.77216233,-73.92596956,noise 40.61567436,-74.03423242,noise 40.71169202,-73.76970902,noise 40.68000621,-73.97488138,noise 40.74934479,-73.9769377,noise 40.82432319,-73.95197348,noise 40.74874595,-73.92041593,noise 40.75738834,-73.85927406,noise 40.76495968,-73.91724144,noise 40.68158489,-73.97696835,noise 40.73335147,-73.89122545,noise 40.67915413,-73.98342993,noise 40.72974957,-73.99961394,noise 40.72974957,-73.99961394,noise 40.73531304,-73.99411837,noise 40.62863721,-74.08003528,noise 40.76430472,-73.98309468,noise 40.79609789,-73.96333083,noise 40.70230473,-73.90938474,noise 40.73027757,-73.9799787,noise 40.5751884,-73.97584593,noise 40.68247711,-73.90670756,noise 40.62863721,-74.08003528,noise 40.79435375,-73.93550469,noise 40.73428366,-73.99249472,noise 40.73483798,-73.99075544,noise 40.68981355,-73.93895209,noise 40.87417427,-73.84897829,noise 40.63597511,-73.97814065,noise 40.64748607,-74.00066306,noise 40.7951188,-73.96588839,noise 40.84563723,-73.93271168,noise 40.67648185,-74.00398012,noise 40.71562216,-73.99427522,noise 40.71758787,-73.95731359,noise 40.78311615,-73.95085853,noise 40.86385196,-73.92523119,noise 40.73814537,-74.00964917,noise 40.78273201,-73.95114046,noise 40.72285427,-73.98957017,noise 40.62863721,-74.08003528,noise 40.63555239,-73.97802189,noise 40.71366785,-73.94931535,noise 40.71928349,-73.99139612,noise 40.75228836,-73.983982,noise 40.78081671,-73.980794,noise 40.76323255,-73.99285606,noise 40.75839617,-73.87905263,noise 40.74934479,-73.9769377,noise 40.7516051,-73.97089504,noise 40.86385196,-73.92523119,noise 40.73940541,-74.00695374,noise 40.71085754,-73.96491072,noise 40.75228836,-73.983982,noise 40.7223651,-73.98423091,noise 40.7111325,-73.96654457,noise 40.76997974,-73.95751829,noise 40.71399716,-74.00756432,noise 40.71399716,-74.00756432,noise 40.86385196,-73.92523119,noise 40.70273581,-73.93378282,noise 40.7219211,-73.99003931,noise 40.77923644,-73.94766588,noise 40.70273581,-73.93378282,noise 40.70273581,-73.93378282,noise 40.83050507,-73.94746295,noise 40.66637963,-73.95264952,noise 40.65981773,-73.98783916,noise 40.78293275,-73.97994843,noise 40.76997974,-73.95751829,noise 40.77943673,-73.94750685,noise 40.73009811,-74.0032148,noise 40.73313868,-73.95473456,noise 40.65293451,-73.96462404,noise 40.84079137,-73.91401007,noise 40.76430472,-73.98309468,noise 40.72556247,-73.98237572,noise 40.83293256,-73.85128708,noise 40.57526084,-73.96889125,noise 40.79513631,-73.96959389,noise 40.73240906,-74.00639735,noise 40.60055241,-73.97273982,noise 40.60179576,-73.97256646,noise 40.71044539,-74.00816629,noise 40.70543919,-73.95633673,noise 40.70495019,-73.94282267,noise 40.80163555,-73.96858318,noise 40.74984525,-73.8833811,noise 40.74984525,-73.8833811,noise 40.74984525,-73.8833811,noise 40.71562216,-73.99427522,noise 40.71574278,-74.00824269,noise 40.69479963,-73.95416917,noise 40.76522441,-73.93169188,noise 40.74206643,-73.98080156,noise 40.80645153,-73.96504816,noise 40.76154468,-73.92445081,noise 40.80645153,-73.96504816,noise 40.83308083,-73.85132288,noise 40.76154468,-73.92445081,noise 40.71892321,-73.98452032,noise 40.68251059,-73.83599985,noise 40.77198587,-73.90948128,noise 40.86637626,-73.92825812,noise 40.72349367,-73.98825325,noise 40.71979651,-73.98851004,noise 40.71775427,-73.95461514,noise 40.72349367,-73.98825325,noise 40.78084021,-73.94957114,noise 40.7516051,-73.97089504,noise 40.80645153,-73.96504816,noise 40.85199617,-73.93178712,noise 40.61580613,-74.03418927,noise 40.71892321,-73.98452032,noise 40.74185261,-73.98252298,noise 40.63555239,-73.97802189,noise 40.73815366,-74.0090249,noise 40.73815366,-74.0090249,noise 40.72125331,-73.98313085,noise 40.72953107,-73.9804155,noise 40.61023813,-73.98370275,noise 40.58286501,-73.95546643,noise 40.63597511,-73.97814065,noise 40.57488607,-73.97398859,noise 40.72403031,-73.97888382,noise 40.7516051,-73.97089504,noise 40.81453554,-73.95914444,noise 40.83627203,-73.8896261,noise 40.85199617,-73.93178712,noise 40.71366785,-73.94931535,noise 40.84276852,-73.93670827,noise 40.74746863,-73.98434406,noise 40.83050507,-73.94746295,noise 40.60353254,-73.95340714,noise 40.86606238,-73.92249904,noise 40.70980572,-74.00998773,noise 40.76489099,-73.97676987,noise 40.76336598,-73.98281696,noise 40.72306913,-73.95039412,noise 40.67773957,-73.95101549,noise 40.70223262,-73.80812657,noise 40.71468578,-73.94265199,noise 40.76452119,-73.98077343,noise 40.71416808,-73.95779915,noise 40.85862734,-73.90464571,noise 40.79545633,-73.96562818,noise 40.70381897,-73.94207345,noise 40.75065839,-73.93710256,noise 40.76165925,-73.98656075,noise 40.70381897,-73.94207345,noise 40.7547827,-73.97993525,noise 40.6459159,-74.00590618,noise 40.72349367,-73.98825325,noise 40.64018175,-73.95530567,noise 40.72349367,-73.98825325,noise 40.63555239,-73.97802189,noise 40.73853272,-74.00387196,noise 40.7174035,-73.95605473,noise 40.85203731,-73.93174731,noise 40.74992339,-73.99510238,noise 40.78081671,-73.980794,noise 40.80128754,-73.95393332,noise 40.64018175,-73.95530567,noise 40.82130491,-73.95420128,noise 40.63555239,-73.97802189,noise 40.71156595,-73.94461332,noise 40.62450144,-73.93887494,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.63597511,-73.97814065,noise 40.72605395,-73.98353372,noise 40.61336789,-73.96302421,noise 40.72072702,-73.98888867,noise 40.77224628,-73.95586329,noise 40.7192426,-73.99702743,noise 40.72579798,-73.97916828,noise 40.76568266,-73.98364305,noise 40.71963502,-73.99468974,noise 40.71963502,-73.99468974,noise 40.70230473,-73.90938474,noise 40.78311615,-73.95085853,noise 40.78591202,-73.97260615,noise 40.66643844,-73.99109294,noise 40.79951653,-73.95948956,noise 40.63597511,-73.97814065,noise 40.64215311,-73.92918744,noise 40.726345,-73.98425522,noise 40.60477918,-74.01274863,noise 40.86361821,-73.89626184,noise 40.72999085,-73.99222099,noise 40.7547827,-73.97993525,noise 40.70381897,-73.94207345,noise 40.7547827,-73.97993525,noise 40.69464039,-73.84847981,noise 40.7547827,-73.97993525,noise 40.62221209,-74.03545694,noise 40.64316075,-73.95771794,noise 40.68251059,-73.83599985,noise 40.74795437,-73.88094469,noise 40.74934479,-73.9769377,noise 40.72953107,-73.9804155,noise 40.76751941,-73.91202887,noise 40.83022246,-73.94768359,noise 40.76548132,-73.91369938,noise 40.63419461,-73.96986898,noise 40.70773915,-73.95593125,noise 40.7455874,-73.97781236,noise 40.72528724,-73.97797786,noise 40.6801084,-73.86059446,noise 40.72018128,-73.9960317,noise 40.74883018,-73.98551309,noise 40.75098845,-74.00177934,noise 40.73787622,-73.98850331,noise 40.76233478,-73.98980224,noise 40.69464039,-73.84847981,noise 40.70230473,-73.90938474,noise 40.70393413,-73.94755188,noise 40.68444026,-73.8657162,noise 40.86828062,-73.89534706,noise 40.86828062,-73.89534706,noise 40.86828062,-73.89534706,noise 40.86828062,-73.89534706,noise 40.69464039,-73.84847981,noise 40.86828062,-73.89534706,noise 40.69479963,-73.95416917,noise 40.76105786,-73.98433004,noise 40.76004503,-73.87836379,noise 40.67863511,-73.74801105,noise 40.76105786,-73.98433004,noise 40.69464039,-73.84847981,noise 40.76011649,-73.98483562,noise 40.69464039,-73.84847981,noise 40.67346748,-73.96233838,noise 40.7205353,-73.99466441,noise 40.70381897,-73.94207345,noise 40.70381897,-73.94207345,noise 40.72318137,-73.9991125,noise 40.70381897,-73.94207345,noise 40.69916184,-73.83318917,noise 40.70381897,-73.94207345,noise 40.70381897,-73.94207345,noise 40.7547827,-73.97993525,noise 40.6818696,-73.96347297,noise 40.7469089,-73.90160083,noise 40.78591202,-73.97260615,noise 40.69464039,-73.84847981,noise 40.78326157,-73.95073926,noise 40.65388293,-73.96068441,noise 40.73306797,-73.9982933,noise 40.76881831,-73.93344635,noise 40.76720272,-73.92202563,noise 40.88923532,-73.90039556,noise 40.64018175,-73.95530567,noise 40.63555239,-73.97802189,noise 40.74395146,-73.92539462,noise 40.61682225,-73.93050381,noise 40.88923532,-73.90039556,noise 40.62632838,-74.13131012,noise 40.70169627,-73.92181373,noise 40.80854286,-73.91291385,noise 40.64018175,-73.95530567,noise 40.74186913,-73.98285498,noise 40.71138031,-73.94674525,noise 40.63555239,-73.97802189,noise 40.73740361,-73.98419848,noise 40.74323631,-73.95394098,noise 40.70547174,-73.94290878,noise 40.69822499,-73.80633492,noise 40.71366785,-73.94931535,noise 40.82996179,-73.94786086,noise 40.64018175,-73.95530567,noise 40.62863721,-74.08003528,noise 40.7111325,-73.96654457,noise 40.71666424,-73.96113798,noise 40.71160118,-73.99682577,noise 40.68585026,-73.86501746,noise 40.63597511,-73.97814065,noise 40.88923532,-73.90039556,noise 40.7111325,-73.96654457,noise 40.66064331,-73.96062997,noise 40.68026692,-73.9746902,noise 40.7111325,-73.96654457,noise 40.66064331,-73.96062997,noise 40.7657348,-73.98360333,noise 40.80238951,-73.95052644,noise 40.66064331,-73.96062997,noise 40.72579798,-73.97916828,noise 40.83777968,-73.94402036,noise 40.72579798,-73.97916828,noise 40.88042713,-73.87711293,noise 40.79254794,-73.9410356,noise 40.85582463,-73.90094445,noise 40.79254794,-73.9410356,noise 40.79254794,-73.9410356,noise 40.72213268,-73.9933511,noise 40.85572039,-73.90102052,noise 40.73619707,-73.84103136,noise 40.75189516,-73.96758883,noise 40.85572039,-73.90102052,noise 40.85572039,-73.90102052,noise 40.81344554,-73.91011851,noise 40.67685075,-73.98015337,noise 40.90367938,-73.8508647,noise 40.71455156,-73.93789415,noise 40.74859138,-73.89531132,noise 40.76568266,-73.98364305,noise 40.76365124,-73.98159674,noise 40.84868335,-73.88377891,noise 40.71113547,-73.95877497,noise 40.72326039,-73.98843007,noise 40.65164646,-73.93232352,noise 40.80197005,-73.94550972,noise 40.71093446,-73.96513432,noise 40.64587732,-73.94905694,noise 40.68230634,-73.92894289,noise 40.75471007,-73.97365489,noise 40.67633068,-73.74113024,noise 40.68220447,-73.93787741,noise 40.70403215,-73.93051028,noise 40.70403215,-73.93051028,noise 40.76056167,-73.9897231,noise 40.71765265,-73.95444927,noise 40.63836084,-73.96851953,noise 40.68947714,-73.96958077,noise 40.64965055,-73.96091754,noise 40.71366785,-73.94931535,noise 40.7661376,-73.74517461,noise 40.7111325,-73.96654457,noise 40.7661376,-73.74517461,noise 40.73249706,-74.00183297,noise 40.68197143,-73.92886754,noise 40.7602542,-73.98904452,noise 40.86620047,-73.92805946,noise 40.88956629,-73.89907857,noise 40.7111325,-73.96654457,noise 40.72349367,-73.98825325,noise 40.85544271,-73.90705779,noise 40.73394353,-74.00264127,noise 40.69622255,-73.93391551,noise 40.74031961,-73.99838333,noise 40.81726755,-73.9422565,noise 40.72349367,-73.98825325,noise 40.80277161,-73.9676363,noise 40.83311259,-73.94183802,noise 40.71243818,-73.95592454,noise 40.79798527,-73.96933976,noise 40.71169202,-73.76970902,noise 40.75237855,-73.92648963,noise 40.68947714,-73.96958077,noise 40.72725654,-73.98643419,noise 40.78536042,-73.97298193,noise 40.7603875,-73.92199029,noise 40.78536042,-73.97298193,noise 40.723084,-73.98267582,noise 40.83365292,-73.91854365,noise 40.82964818,-73.94630008,noise 40.70178122,-73.9514811,noise 40.61655033,-73.93020153,noise 40.76349768,-73.87813729,noise 40.75450486,-73.96569623,noise 40.79768724,-73.94925138,noise 40.69822499,-73.80633492,noise 40.82000567,-73.95887372,noise 40.71775427,-73.95461514,noise 40.68004986,-73.94326224,noise 40.67486925,-73.98154192,noise 40.86645691,-73.92145732,noise 40.79798527,-73.96933976,noise 40.76611913,-73.9150812,noise 40.76330097,-73.92820671,noise 40.69464039,-73.84847981,noise 40.79186116,-73.94539159,noise 40.85670443,-73.92906385,noise 40.74078072,-74.00176103,noise 40.62869214,-74.07998491,noise 40.78536042,-73.97298193,noise 40.70680438,-73.90717125,noise 40.74186913,-73.98285498,noise 40.80572995,-73.92526397,noise 40.71639534,-73.95393067,noise 40.74608884,-73.9925764,noise 40.6730273,-73.96805615,noise 40.72844754,-73.98467686,noise 40.88674715,-73.85716662,noise 40.73596432,-73.81055532,noise 40.75268586,-73.85212312,noise 40.79798527,-73.96933976,noise 40.74185261,-73.98252298,noise 40.8244039,-73.94820124,noise 40.67915413,-73.98342993,noise 40.80015915,-73.94684037,noise 40.77450842,-73.95714352,noise 40.63597511,-73.97814065,noise 40.80572995,-73.92526397,noise 40.83573106,-73.91162427,noise 40.76341639,-73.92842679,noise 40.67915413,-73.98342993,noise 40.6715924,-73.98428978,noise 40.82103435,-73.95724362,noise 40.69742251,-73.93479065,noise 40.64799659,-73.99847926,noise 40.8448533,-73.81548959,noise 40.73029441,-73.98223737,noise 40.67119234,-73.99044703,noise 40.73132176,-73.98861269,noise 40.80065918,-73.95439247,noise 40.70872939,-73.77898909,noise 40.76330097,-73.92820671,noise 40.7516051,-73.97089504,noise 40.83712119,-73.86718245,noise 40.73633674,-73.85756843,noise 40.7296035,-73.98823774,noise 40.85434768,-73.90059963,noise 40.67915413,-73.98342993,noise 40.68158489,-73.97696835,noise 40.71032776,-73.94994912,noise 40.73043027,-74.00012268,noise 40.80068587,-73.95250703,noise 40.80068587,-73.95250703,noise 40.72900299,-74.00131693,noise 40.72949431,-74.00090201,noise 40.70503595,-73.95697538,noise 40.72949431,-74.00090201,noise 40.62221209,-74.03545694,noise 40.76223598,-73.98986362,noise 40.68004986,-73.94326224,noise 40.77603408,-73.95603048,noise 40.71915709,-74.01033185,noise 40.77585845,-73.95613169,noise 40.67863511,-73.74801105,noise 40.67843595,-73.9491871,noise 40.82719036,-73.90246494,noise 40.75873427,-73.86009782,noise 40.76331469,-73.92819586,noise 40.79319371,-73.94254825,noise 40.72954512,-73.9824324,noise 40.84860826,-73.91396744,noise 40.76430472,-73.98309468,noise 40.72430116,-73.99598095,noise 40.76365124,-73.98159674,noise 40.8077127,-73.94131837,noise 40.86914718,-73.92214111,noise 40.71355468,-73.96188648,noise 40.70381897,-73.94207345,noise 40.75283438,-73.96949048,noise 40.70381897,-73.94207345,noise 40.80167695,-73.94676692,noise 40.71455156,-73.93789415,noise 40.82778441,-73.9072265,noise 40.72666597,-73.9830898,noise 40.74745402,-73.88556874,noise 40.70381897,-73.94207345,noise 40.70381897,-73.94207345,noise 40.62129184,-74.08047314,noise 40.83777968,-73.94402036,noise 40.73595507,-73.99047744,noise 40.83777968,-73.94402036,noise 40.83777968,-73.94402036,noise 40.66238174,-73.9923334,noise 40.74984525,-73.8833811,noise 40.68959958,-73.8155478,noise 40.70269654,-73.94243869,noise 40.66964513,-73.95766871,noise 40.67770929,-73.9507992,noise 40.76808008,-73.79115328,noise 40.74487368,-73.95785548,noise 40.77214286,-73.9582462,noise 40.62258213,-74.03705294,noise 40.75510246,-73.97320355,noise 40.77741014,-73.9787983,noise 40.70211545,-73.82056959,noise 40.69745049,-73.93098235,noise 40.67796168,-73.88794488,noise 40.63436537,-74.13582957,noise 40.72164098,-73.98844118,noise 40.76362248,-73.99701462,noise 40.69464039,-73.84847981,noise 40.63296225,-74.13394243,noise 40.7516051,-73.97089504,noise 40.86553576,-73.9272684,noise 40.67127809,-73.95035693,noise 40.67618647,-73.97990121,noise 40.71965964,-73.99306996,noise 40.72349367,-73.98825325,noise 40.66820407,-73.9506476,noise 40.78536042,-73.97298193,noise 40.90367938,-73.8508647,noise 40.71775427,-73.95461514,noise 40.74959135,-74.00278625,noise 40.68138125,-74.00444551,noise 40.6895765,-73.97175508,noise 40.63555239,-73.97802189,noise 40.72349367,-73.98825325,noise 40.63996704,-74.01567756,noise 40.70930472,-73.90699824,noise 40.72821933,-73.98196732,noise 40.72349367,-73.98825325,noise 40.82432319,-73.95197348,noise 40.7657348,-73.98360333,noise 40.76362248,-73.99701462,noise 40.71461498,-73.99959599,noise 40.70427792,-73.93300946,noise 40.83314415,-73.9446169,noise 40.7193216,-73.98781748,noise 40.68233653,-73.92893926,noise 40.71066973,-73.93653431,noise 40.68138125,-74.00444551,noise 40.72305398,-73.98384472,noise 40.76330097,-73.92820671,noise 40.7661376,-73.74517461,noise 40.71742349,-73.95815061,noise 40.71996962,-73.95544697,noise 40.71979651,-73.98851004,noise 40.73767366,-74.00176816,noise 40.68729923,-73.95691111,noise 40.71996962,-73.95544697,noise 40.72722535,-73.97965852,noise 40.67486925,-73.98154192,noise 40.67290293,-73.95020432,noise 40.76494318,-73.91720536,noise 40.74992339,-73.99510238,noise 40.7111325,-73.96654457,noise 40.83314415,-73.9446169,noise 40.71665985,-73.96453611,noise 40.72726727,-73.98449673,noise 40.76330097,-73.92820671,noise 40.63597511,-73.97814065,noise 40.81399223,-73.95954216,noise 40.6002001,-73.95280089,noise 40.68241996,-73.80760669,noise 40.73249706,-74.00183297,noise 40.86637626,-73.92825812,noise 40.7661376,-73.74517461,noise 40.86637626,-73.92825812,noise 40.86606038,-73.92787523,noise 40.64799659,-73.99847926,noise 40.62869214,-74.07998491,noise 40.70252976,-73.81356446,noise 40.81399223,-73.95954216,noise 40.7505438,-73.99836504,noise 40.63082309,-74.02210265,noise 40.83036236,-73.86602154,noise 40.70872939,-73.77898909,noise 40.68272042,-73.96329223,noise 40.78417568,-73.97758645,noise 40.78417568,-73.97758645,noise 40.74992339,-73.99510238,noise 40.73029441,-73.98223737,noise 40.85499223,-73.92987178,noise 40.63082309,-74.02210265,noise 40.73877432,-74.00018404,noise 40.7505438,-73.99836504,noise 40.72844754,-73.98467686,noise 40.80015915,-73.94684037,noise 40.79910216,-73.96854104,noise 40.71915709,-74.01033185,noise 40.61735246,-74.03058807,noise 40.81548863,-73.94726888,noise 40.74912944,-73.98618071,noise 40.82692601,-73.94757417,noise 40.86075839,-73.92912098,noise 40.72101229,-73.98707762,noise 40.79910216,-73.96854104,noise 40.81548863,-73.94726888,noise 40.80529589,-73.95663966,noise 40.85533462,-73.93331279,noise 40.63472252,-74.02643466,noise 40.68635741,-73.95595259,noise 40.72986179,-73.99143445,noise 40.68978399,-73.92599251,noise 40.68787736,-73.81996246,noise 40.80989881,-73.94394628,noise 40.71838653,-73.95713271,noise 40.71337461,-73.76296859,noise 40.63486526,-74.02638067,noise 40.80307499,-73.9489258,noise 40.73424238,-73.99089625,noise 40.85163365,-73.84400868,noise 40.69328353,-73.9673649,noise 40.76154468,-73.92445081,noise 40.67818606,-73.99082819,noise 40.63836084,-73.96851953,noise 40.65666462,-74.00075686,noise 40.68187917,-73.7660803,noise 40.64595269,-73.95197214,noise 40.86385196,-73.92523119,noise 40.76154468,-73.92445081,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.71522127,-73.99171409,noise 40.62469245,-73.92749483,noise 40.72219915,-73.95754153,noise 40.7111325,-73.96654457,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.84672579,-73.93562018,noise 40.72860227,-74.00006494,noise 40.72953107,-73.9804155,noise 40.82097012,-73.89241182,noise 40.7516051,-73.97089504,noise 40.69822499,-73.80633492,noise 40.78536042,-73.97298193,noise 40.78536042,-73.97298193,noise 40.72954646,-74.00085872,noise 40.74992339,-73.99510238,noise 40.72954646,-74.00085872,noise 40.72959861,-74.00081181,noise 40.72939001,-74.0009886,noise 40.71406587,-73.94937276,noise 40.74383196,-73.98525434,noise 40.72949431,-74.00090201,noise 40.76434915,-73.92345851,noise 40.65160575,-73.93310919,noise 40.72959861,-74.00081181,noise 40.71093446,-73.96513432,noise 40.72939001,-74.0009886,noise 40.76362248,-73.99701462,noise 40.72944216,-74.00094531,noise 40.63555239,-73.97802189,noise 40.69464039,-73.84847981,noise 40.72957665,-74.00084789,noise 40.72954646,-74.00085872,noise 40.73249706,-74.00183297,noise 40.72949431,-74.00090201,noise 40.76323255,-73.99285606,noise 40.63597511,-73.97814065,noise 40.72959861,-74.00081181,noise 40.62450144,-73.93887494,noise 40.71901757,-73.95643966,noise 40.76359358,-73.98143431,noise 40.78536042,-73.97298193,noise 40.72950254,-74.00092005,noise 40.72949431,-74.00090201,noise 40.67177352,-73.9364055,noise 40.7516051,-73.97089504,noise 40.69464039,-73.84847981,noise 40.65160575,-73.93310919,noise 40.71461498,-73.99959599,noise 40.72660323,-73.98602303,noise 40.74186913,-73.98285498,noise 40.76315447,-73.98174488,noise 40.76430472,-73.98309468,noise 40.68014059,-73.99492002,noise 40.84413857,-73.93751656,noise 40.76430472,-73.98309468,noise 40.76011649,-73.98483562,noise 40.77546982,-73.95206287,noise 40.77546982,-73.95206287,noise 40.70543919,-73.95633673,noise 40.70381897,-73.94207345,noise 40.83371105,-73.91541411,noise 40.64442785,-74.01103736,noise 40.70381897,-73.94207345,noise 40.60331422,-74.08322082,noise 40.73339978,-74.00855518,noise 40.7786329,-73.9625461,noise 40.69479963,-73.95416917,noise 40.62221209,-74.03545694,noise 40.71531994,-73.98988518,noise 40.64018175,-73.95530567,noise 40.63597511,-73.97814065,noise 40.71531994,-73.98988518,noise 40.85321491,-73.92745177,noise 40.69822225,-73.80633493,noise 40.64018175,-73.95530567,noise 40.64018175,-73.95530567,noise 40.71406587,-73.94937276,noise 40.69327694,-73.97381259,noise 40.73437426,-74.00715168,noise 40.74409122,-73.97634767,noise 40.72981901,-73.97892168,noise 40.73991339,-74.00079029,noise 40.74934479,-73.9769377,noise 40.62450144,-73.93887494,noise 40.73029441,-73.98223737,noise 40.71144313,-73.94609232,noise 40.67832436,-73.8318857,noise 40.73991339,-74.00079029,noise 40.78536042,-73.97298193,noise 40.72403031,-73.97888382,noise 40.7189536,-73.98611482,noise 40.670887,-73.93648926,noise 40.69464039,-73.84847981,noise 40.58286501,-73.95546643,noise 40.88712803,-73.90437698,noise 40.76709929,-73.98629251,noise 40.69464039,-73.84847981,noise 40.72860775,-74.00005773,noise 40.76852059,-73.96950496,noise 40.64269519,-73.96977506,noise 40.76990104,-73.96890502,noise 40.76550199,-73.98746608,noise 40.81726755,-73.9422565,noise 40.76072745,-73.89105441,noise 40.72953107,-73.9804155,noise 40.67985516,-73.96417712,noise 40.73575499,-73.99515033,noise 40.73003889,-73.98064627,noise 40.81151832,-73.95019814,noise 40.77177707,-73.92444281,noise 40.63985492,-74.01219323,noise 40.86368678,-73.89621112,noise 40.86914718,-73.92214111,noise 40.83777968,-73.94402036,noise 40.74974463,-73.88430882,noise 40.73560939,-73.99266777,noise 40.67685075,-73.98015337,noise 40.70381897,-73.94207345,noise 40.70381897,-73.94207345,noise 40.69324386,-73.99066024,noise 40.62813299,-73.96582243,noise 40.73521408,-73.99171521,noise 40.70915516,-74.01054311,noise 40.70381897,-73.94207345,noise 40.67863511,-73.74801105,noise 40.74315645,-73.91870121,noise 40.74315645,-73.91870121,noise 40.70116098,-73.90698075,noise 40.71865809,-73.81360953,noise 40.71906189,-73.81211851,noise 40.7505438,-73.99836504,noise 40.72325036,-73.7413268,noise 40.68986342,-73.95146453,noise 40.71144313,-73.94609232,noise 40.88923532,-73.90039556,noise 40.73400669,-74.00005412,noise 40.76409108,-73.98651694,noise 40.75607293,-73.88055479,noise 40.779925,-73.95319345,noise 40.71337231,-73.76318503,noise 40.81726755,-73.9422565,noise 40.76568266,-73.98364305,noise 40.76568266,-73.98364305,noise 40.73891878,-73.87335398,noise 40.79791781,-73.96384631,noise 40.85389745,-73.85189087,noise 40.69090246,-73.98938045,noise 40.73916956,-74.00116918,noise 40.84413857,-73.93751656,noise 40.73419036,-74.00717691,noise 40.64269519,-73.96977506,noise 40.68775194,-74.00138823,noise 40.76568266,-73.98364305,noise 40.75839617,-73.87905263,noise 40.70056181,-73.91295393,noise 40.76038201,-73.92197947,noise 40.70942959,-74.01110223,noise 40.71880348,-74.00103895,noise 40.74974463,-73.88430882,noise 40.68837268,-73.97683619,noise 40.68088971,-73.86673647,noise 40.86637626,-73.92825812,noise 40.86637626,-73.92825812,noise 40.86637626,-73.92825812,noise 40.86637626,-73.92825812,noise 40.8407264,-73.84215493,noise 40.71880348,-74.00103895,noise 40.83383763,-73.91585844,noise 40.70230473,-73.90938474,noise 40.68181431,-73.92354243,noise 40.79998529,-73.94484676,noise 40.67832436,-73.8318857,noise 40.69726627,-73.96765506,noise 40.86631495,-73.91859765,noise 40.63631453,-74.00786177,noise 40.73560607,-73.71632317,noise 40.80746061,-73.919309,noise 40.72726727,-73.98449673,noise 40.779925,-73.95319345,noise 40.69174554,-73.86460165,noise 40.79593876,-73.94318875,noise 40.7376399,-73.98612175,noise 40.83050507,-73.94746295,noise 40.74883018,-73.98551309,noise 40.79187048,-73.97113746,noise 40.82860212,-73.92174771,noise 40.71880348,-74.00103895,noise 40.74276218,-73.8960278,noise 40.89513559,-73.85995903,noise 40.62221209,-74.03545694,noise 40.74897198,-73.86303448,noise 40.62258213,-74.03705294,noise 40.74507493,-73.90428495,noise 40.71169202,-73.76970902,noise 40.82385708,-73.85230098,noise 40.79770759,-73.94018227,noise 40.61619107,-74.13897309,noise 40.82385708,-73.85230098,noise 40.70252976,-73.81356446,noise 40.8244039,-73.94820124,noise 40.71775427,-73.95461514,noise 40.7235816,-73.98916238,noise 40.70277711,-73.92938633,noise 40.77493122,-73.93410819,noise 40.84544019,-73.93867915,noise 40.7303232,-74.00246794,noise 40.76494318,-73.91720536,noise 40.80058622,-73.9656147,noise 40.72368086,-74.0036366,noise 40.779925,-73.95319345,noise 40.85140855,-73.88348136,noise 40.73677571,-73.95532748,noise 40.71387984,-73.95769833,noise 40.88052049,-73.88241417,noise 40.88923532,-73.90039556,noise 40.79593876,-73.94318875,noise 40.84711145,-73.93818244,noise 40.85652475,-73.89202173,noise 40.76494318,-73.91720536,noise 40.66089591,-73.96087852,noise 40.69327694,-73.97381259,noise 40.61567436,-74.03423242,noise 40.69330447,-73.97416597,noise 40.68584475,-73.86500305,noise 40.82474226,-73.82039429,noise 40.62874433,-74.07993453,noise 40.70890415,-73.95925247,noise 40.822504,-73.9533297,noise 40.87922802,-73.87235264,noise 40.71350652,-73.78840967,noise 40.71879472,-73.98901165,noise 40.76002338,-73.98659357,noise 40.78591202,-73.97260615,noise 40.86637626,-73.92825812,noise 40.76547114,-73.96032974,noise 40.76299834,-73.98387835,noise 40.78690123,-73.97770831,noise 40.76755781,-73.91199994,noise 40.72127152,-73.9393634,noise 40.63439291,-74.02745775,noise 40.76462701,-73.99554532,noise 40.67633068,-73.74113024,noise 40.63436537,-74.13582957,noise 40.76604493,-73.98336499,noise 40.83627203,-73.8896261,noise 40.72114459,-73.99370114,noise 40.76362248,-73.99701462,noise 40.7235816,-73.98916238,noise 40.78878613,-73.97422282,noise 40.76154468,-73.92445081,noise 40.85465602,-73.93704036,noise 40.68321658,-73.95387066,noise 40.7111325,-73.96654457,noise 40.72349367,-73.98825325,noise 40.88923532,-73.90039556,noise 40.72349367,-73.98825325,noise 40.63889916,-74.01676906,noise 40.70753056,-73.78659995,noise 40.74395146,-73.92539462,noise 40.7111325,-73.96654457,noise 40.75006808,-73.88119355,noise 40.74482073,-73.88449782,noise 40.67168485,-73.93490233,noise 40.90367938,-73.8508647,noise 40.63768868,-74.11637606,noise 40.76330097,-73.92820671,noise 40.78873125,-73.97426256,noise 40.72898724,-73.97834105,noise 40.64335016,-73.95776827,noise 40.86600811,-73.91940065,noise 40.76331469,-73.92819586,noise 40.73783262,-73.99229585,noise 40.72104319,-73.95643113,noise 40.73521987,-74.00089487,noise 40.86895885,-73.91583208,noise 40.63765026,-74.11637239,noise 40.64520137,-73.97050183,noise 40.63768868,-74.11637606,noise 40.72709922,-73.98043787,noise 40.76299834,-73.98387835,noise 40.83125719,-73.91529076,noise 40.64520137,-73.97050183,noise 40.69822499,-73.80633492,noise 40.71899008,-74.00330806,noise 40.68442886,-73.91403504,noise 40.64531666,-73.97054502,noise 40.76362248,-73.99701462,noise 40.76494318,-73.91720536,noise 40.73419576,-73.99148441,noise 40.67759046,-73.74478108,noise 40.72262905,-73.94830199,noise 40.74644833,-73.99146479,noise 40.76434915,-73.92345851,noise 40.63765026,-74.11637239,noise 40.72265369,-73.94816488,noise 40.64909327,-74.01692658,noise 40.67399931,-73.96039136,noise 40.74138138,-73.85519395,noise 40.72726727,-73.98449673,noise 40.73434974,-74.00300933,noise 40.72239575,-73.98801534,noise 40.72124619,-73.99457056,noise 40.68531592,-73.91470094,noise 40.74447137,-73.91150714,noise 40.7220944,-73.99659077,noise 40.79554034,-73.94809368,noise 40.76341639,-73.92842679,noise 40.71243818,-73.95592454,noise 40.86940311,-73.91530725,noise 40.81453554,-73.95914444,noise 40.67915413,-73.98342993,noise 40.72475941,-73.99331115,noise 40.69742251,-73.93479065,noise 40.68237476,-73.99342718,noise 40.73029441,-73.98223737,noise 40.78536042,-73.97298193,noise 40.72725654,-73.98643419,noise 40.74238268,-73.87090067,noise 40.84711145,-73.93818244,noise 40.7133723,-73.76318142,noise 40.7505438,-73.99836504,noise 40.68707604,-73.9235436,noise 40.76349768,-73.87813729,noise 40.72559443,-73.94463774,noise 40.64799659,-73.99847926,noise 40.71169202,-73.76970902,noise 40.72957665,-74.00084789,noise 40.74072541,-73.92391147,noise 40.79892213,-73.96308729,noise 40.70872939,-73.77898909,noise 40.72954646,-74.00085872,noise 40.83627203,-73.8896261,noise 40.75851818,-73.967434,noise 40.78536042,-73.97298193,noise 40.80746061,-73.919309,noise 40.72817583,-73.98485732,noise 40.63404998,-74.02674784,noise 40.73428366,-73.99249472,noise 40.71846306,-74.0039718,noise 40.84711145,-73.93818244,noise 40.63082309,-74.02210265,noise 40.84623342,-73.93869649,noise 40.83276595,-73.94582418,noise 40.67486925,-73.98154192,noise 40.76430472,-73.98309468,noise 40.74689077,-73.92079709,noise 40.74447137,-73.91150714,noise 40.67915413,-73.98342993,noise 40.75851818,-73.967434,noise 40.64631775,-73.9519899,noise 40.73643704,-73.98142744,noise 40.79782441,-73.96359715,noise 40.72488931,-73.97828105,noise 40.67863511,-73.74801105,noise 40.64520137,-73.97050183,noise 40.84608235,-73.93849423,noise 40.72087789,-73.9879615,noise 40.8437859,-73.88022381,noise 40.78591202,-73.97260615,noise 40.68323949,-73.8768165,noise 40.73877432,-74.00018404,noise 40.73305408,-74.00640824,noise 40.85548764,-73.86384899,noise 40.79775973,-73.94017139,noise 40.70190454,-73.92982364,noise 40.70381897,-73.94207345,noise 40.70381897,-73.94207345,noise 40.70381897,-73.94207345,noise 40.79183093,-73.94531939,noise 40.70381897,-73.94207345,noise 40.77206625,-73.95889972,noise 40.76227032,-73.9260347,noise 40.72488931,-73.97828105,noise 40.65084151,-73.96010599,noise 40.6684005,-73.98644977,noise 40.68151145,-73.95233231,noise 40.83383763,-73.91585844,noise 40.8719286,-73.91580662,noise 40.71847433,-73.95705329,noise 40.73588925,-73.99120995,noise 40.69609224,-73.93646885,noise 40.74974463,-73.88430882,noise 40.78052741,-73.94980247,noise 40.67519821,-73.8107748,noise 40.73397888,-73.99094319,noise 40.64748607,-74.00066306,noise 40.76757703,-73.91200713,noise 40.67905322,-74.01125941,noise 40.77214286,-73.9582462,noise 40.59645556,-73.97803836,noise 40.85383697,-73.91401851,noise 40.84225931,-73.92512897,noise 40.68478013,-73.86069286,noise 40.69822499,-73.80633492,noise 40.61740319,-73.99948852,noise 40.82148641,-73.94853953,noise 40.8458189,-73.93857399,noise 40.72104319,-73.95643113,noise 40.86940311,-73.91530725,noise 40.72949431,-74.00090201,noise 40.71183919,-73.95430174,noise 40.84314883,-73.93453938,noise 40.70872939,-73.77898909,noise 40.8458189,-73.93857399,noise 40.71066973,-73.93653431,noise 40.76430472,-73.98309468,noise 40.67838123,-73.99600895,noise 40.77003095,-73.91216635,noise 40.76362248,-73.99701462,noise 40.69464039,-73.84847981,noise 40.88674715,-73.85716662,noise 40.7296035,-73.98823774,noise 40.69464039,-73.84847981,noise 40.65683338,-73.96013845,noise 40.73000207,-73.95640362,noise 40.74527188,-73.97844042,noise 40.71896706,-73.96102841,noise 40.71514153,-74.01008954,noise 40.70238907,-73.74087758,noise 40.7623246,-73.9764531,noise 40.72712725,-73.9841937,noise 40.69464039,-73.84847981,noise 40.76346859,-73.99281632,noise 40.7111325,-73.96654457,noise 40.83142462,-73.82689877,noise 40.86637626,-73.92825812,noise 40.67085414,-73.98491359,noise 40.88674715,-73.85716662,noise 40.71958002,-73.95586209,noise 40.84711145,-73.93818244,noise 40.76330097,-73.92820671,noise 40.7111325,-73.96654457,noise 40.83627203,-73.8896261,noise 40.7111325,-73.96654457,noise 40.84619212,-73.93845075,noise 40.696382,-73.84956134,noise 40.84428948,-73.93741883,noise 40.76002338,-73.98659357,noise 40.72241571,-73.95001219,noise 40.7111325,-73.96654457,noise 40.71527342,-73.99168522,noise 40.85059339,-73.9011402,noise 40.69455036,-73.84889472,noise 40.76349768,-73.87813729,noise 40.77596729,-73.91512641,noise 40.73713914,-73.70921876,noise 40.84711145,-73.93818244,noise 40.74276218,-73.8960278,noise 40.72116616,-73.98868657,noise 40.67695243,-73.78151349,noise 40.76387351,-73.93086659,noise 40.8512885,-73.89878603,noise 40.69590356,-73.90891742,noise 40.77177707,-73.92444281,noise 40.72950254,-74.00092005,noise 40.76387351,-73.93086659,noise 40.74072541,-73.92391147,noise 40.77596729,-73.91512641,noise 40.73677571,-73.95532748,noise 40.67486925,-73.98154192,noise 40.73249706,-74.00183297,noise 40.73029441,-73.98223737,noise 40.73713914,-73.70921876,noise 40.82048235,-73.91284042,noise 40.73250431,-73.9848383,noise 40.64799659,-73.99847926,noise 40.83627203,-73.8896261,noise 40.70230473,-73.90938474,noise 40.6936969,-73.80036912,noise 40.76430472,-73.98309468,noise 40.73249706,-74.00183297,noise 40.74989466,-73.98208777,noise 40.74198567,-73.99827142,noise 40.85109628,-73.93243506,noise 40.7603875,-73.92199029,noise 40.76152269,-73.92440391,noise 40.72488931,-73.97828105,noise 40.70416335,-73.925248,noise 40.70549094,-73.92391923,noise 40.54943136,-74.14168412,noise 40.67863511,-73.74801105,noise 40.8280814,-73.91508884,noise 40.76322704,-73.97376703,noise 40.70381342,-73.94195083,noise 40.70381342,-73.94195083,noise 40.81726755,-73.9422565,noise 40.69222715,-73.93090843,noise 40.64748607,-74.00066306,noise 40.68059474,-73.98088776,noise 40.70823054,-74.00519033,noise 40.72114459,-73.99370114,noise 40.64595269,-73.95197214,noise 40.68268108,-73.9226689,noise 40.81726755,-73.9422565,noise 40.75578209,-73.883331,noise 40.7623246,-73.9764531,noise 40.67535792,-73.73821386,noise 40.76812879,-73.87624432,noise 40.70273581,-73.93378282,noise 40.7235816,-73.98916238,noise 40.64018175,-73.95530567,noise 40.64018175,-73.95530567,noise 40.66944658,-73.94284589,noise 40.66940234,-73.94219707,noise 40.7187346,-73.99221148,noise 40.69822499,-73.80633492,noise 40.71066973,-73.93653431,noise 40.69622255,-73.93391551,noise 40.7219211,-73.99003931,noise 40.72842386,-73.99967889,noise 40.7572323,-73.98979219,noise 40.64018175,-73.95530567,noise 40.74623688,-73.89894202,noise 40.68716729,-73.97475969,noise 40.76115165,-73.92364989,noise 40.78273201,-73.95114046,noise 40.72116616,-73.98868657,noise 40.6801084,-73.86059446,noise 40.78536042,-73.97298193,noise 40.70963675,-73.83002488,noise 40.6738745,-73.95680081,noise 40.83054291,-73.90730215,noise 40.79593876,-73.94318875,noise 40.71070456,-73.96739965,noise 40.73029441,-73.98223737,noise 40.7657348,-73.98360333,noise 40.65160575,-73.93310919,noise 40.81151832,-73.95019814,noise 40.73643704,-73.98142744,noise 40.67863511,-73.74801105,noise 40.68080314,-73.92606738,noise 40.73428366,-73.99249472,noise 40.76808008,-73.79115328,noise 40.72101229,-73.98707762,noise 40.65592587,-73.95542126,noise 40.63597511,-73.97814065,noise 40.74125248,-73.99097829,noise 40.85032261,-73.93301057,noise 40.85013331,-73.93314811,noise 40.78648557,-73.97217258,noise 40.7337099,-73.99101539,noise 40.79498859,-73.971537,noise 40.84436903,-73.93733563,noise 40.71562216,-73.99427522,noise 40.8541375,-73.88695764,noise 40.71775427,-73.95461514,noise 40.71531994,-73.98988518,noise 40.72953107,-73.9804155,noise 40.7248509,-73.95139576,noise 40.71884964,-73.98921727,noise 40.67250249,-73.95780388,noise 40.81453554,-73.95914444,noise 40.69464039,-73.84847981,noise 40.71919324,-73.99984127,noise 40.68488398,-73.86031766,noise 40.86628836,-73.92814975,noise 40.7111325,-73.96654457,noise 40.8458189,-73.93857399,noise 40.69742251,-73.93479065,noise 40.7111325,-73.96654457,noise 40.74883018,-73.98551309,noise 40.72726727,-73.98449673,noise 40.74883018,-73.98551309,noise 40.72787656,-73.98416105,noise 40.64076111,-73.99253767,noise 40.69464039,-73.84847981,noise 40.72787656,-73.98416105,noise 40.8315833,-73.90748138,noise 40.71892321,-73.98452032,noise 40.90141806,-73.84689427,noise 40.76550199,-73.98746608,noise 40.74967088,-73.99529729,noise 40.64073914,-73.99250164,noise 40.70925959,-74.00908231,noise 40.65683338,-73.96013845,noise 40.72787656,-73.98416105,noise 40.69054036,-73.99194794,noise 40.69054036,-73.99194794,noise 40.67448722,-73.9786075,noise 40.74989466,-73.98208777,noise 40.79924045,-73.9628704,noise 40.61989658,-73.98063858,noise 40.74156673,-73.97992118,noise 40.63597511,-73.97814065,noise 40.6906485,-73.79626746,noise 40.6801084,-73.86059446,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.88403476,-73.89796587,noise 40.71775427,-73.95461514,noise 40.7623246,-73.9764531,noise 40.6922899,-73.93029173,noise 40.63508576,-73.97793197,noise 40.69726627,-73.96765506,noise 40.6801084,-73.86059446,noise 40.74186345,-73.90750493,noise 40.73713914,-73.70921876,noise 40.64018175,-73.95530567,noise 40.85306338,-73.93099439,noise 40.85032261,-73.93301057,noise 40.73713914,-73.70921876,noise 40.75624515,-73.92120466,noise 40.77224628,-73.95586329,noise 40.6742001,-73.98550046,noise 40.63985492,-74.01219323,noise 40.77224628,-73.95586329,noise 40.77224628,-73.95586329,noise 40.83053251,-73.9474557,noise 40.61023813,-73.98370275,noise 40.75575619,-73.964786,noise 40.83819186,-73.94501385,noise 40.74725824,-73.88743855,noise 40.69174554,-73.86460165,noise 40.65778597,-73.95324671,noise 40.76170104,-73.99394999,noise 40.77900984,-73.95041021,noise 40.6936969,-73.80036912,noise 40.86111875,-73.92603322,noise 40.86111875,-73.92603322,noise 40.70223262,-73.80812657,noise 40.823746,-73.94410082,noise 40.70381897,-73.94207345,noise 40.74631572,-73.98353232,noise 40.77189886,-73.95902258,noise 40.65683338,-73.96013845,noise 40.69327694,-73.97381259,noise 40.64758742,-74.00689372,noise 40.76434915,-73.92345851,noise 40.74934479,-73.9769377,noise 40.72953107,-73.9804155,noise 40.69174554,-73.86460165,noise 40.62984219,-73.96322044,noise 40.6921261,-73.98469963,noise 40.86592029,-73.92770907,noise 40.73704148,-73.70967385,noise 40.74883018,-73.98551309,noise 40.69479963,-73.95416917,noise 40.83036236,-73.86602154,noise 40.59959958,-73.98581555,noise 40.7113795,-73.96644706,noise 40.70543919,-73.95633673,noise 40.7985263,-73.9417021,noise 40.83050507,-73.94746295,noise 40.83045842,-73.94749912,noise 40.73199094,-73.98410956,noise 40.63597511,-73.97814065,noise 40.83793262,-73.94247709,noise 40.69959035,-73.94423377,noise 40.76389378,-73.92383807,noise 40.86385196,-73.92523119,noise 40.76434915,-73.92345851,noise 40.8334941,-73.92731788,noise 40.68432691,-73.86978716,noise 40.71169202,-73.76970902,noise 40.75624515,-73.92120466,noise 40.7627399,-73.95969603,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.83952935,-73.92253356,noise 40.7111325,-73.96654457,noise 40.71156595,-73.94461332,noise 40.71366785,-73.94931535,noise 40.86592029,-73.92770907,noise 40.66569363,-73.98258259,noise 40.64018175,-73.95530567,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.88923532,-73.90039556,noise 40.69311924,-73.96881101,noise 40.7111325,-73.96654457,noise 40.72349367,-73.98825325,noise 40.80189077,-73.96842414,noise 40.72377308,-73.9836822,noise 40.74525272,-73.90354126,noise 40.83735689,-73.92048701,noise 40.7111325,-73.96654457,noise 40.88923532,-73.90039556,noise 40.79593876,-73.94318875,noise 40.66064331,-73.96062997,noise 40.7111325,-73.96654457,noise 40.7111325,-73.96654457,noise 40.70789309,-73.78672142,noise 40.76115165,-73.92364989,noise 40.71106664,-73.96657346,noise 40.90141806,-73.84689427,noise 40.73249706,-74.00183297,noise 40.64018175,-73.95530567,noise 40.7048101,-73.93248595,noise 40.70753056,-73.78659995,noise 40.87379275,-73.87668405,noise 40.73249706,-74.00183297,noise 40.67915413,-73.98342993,noise 40.7111325,-73.96654457,noise 40.65778597,-73.95324671,noise 40.67486925,-73.98154192,noise 40.7111325,-73.96654457,noise 40.84711145,-73.93818244,noise 40.7111325,-73.96654457,noise 40.68585026,-73.86501746,noise 40.67798878,-73.99801711,noise 40.71911165,-73.95851391,noise 40.58774206,-73.80986688,noise 40.86281834,-73.90782477,noise 40.71918847,-73.95841646,noise 40.67786527,-73.99806758,noise 40.6895765,-73.97175508,noise 40.62584193,-73.98146182,noise 40.77206625,-73.95889972,noise 40.8381204,-73.94479707,noise 40.73434974,-74.00300933,noise 40.72389226,-74.00054116,noise 40.75869616,-73.93425058,noise 40.70211598,-73.81062265,noise 40.70381342,-73.94195083,noise 40.69251066,-73.97174302,noise 40.70381342,-73.94195083,noise 40.70723973,-74.00392064,noise 40.65682566,-73.92747793,noise 40.70743735,-74.00405771,noise 40.77419816,-73.91308152,noise 40.70518373,-74.0073938,noise 40.73238407,-74.01035194,noise 40.7572323,-73.98979219,noise 40.81258038,-73.90596163,noise 40.7572323,-73.98979219,noise 40.85671994,-73.90157574,noise 40.7572323,-73.98979219,noise 40.73141011,-73.99697276,noise 40.75850595,-73.99074493,noise 40.70909238,-74.00551141,noise 40.70544719,-74.00800698,noise 40.70713815,-74.00452298,noise 40.77177707,-73.92444281,noise 40.70743735,-74.00405771,noise 40.73530726,-74.01010342,noise 40.73600169,-74.01003496,noise 40.73696785,-74.00995211,noise 40.75757272,-73.99057902,noise 40.73600169,-74.01003496,noise 40.63597511,-73.97814065,noise 40.7006361,-73.89659119,noise 40.69464039,-73.84847981,noise 40.72142198,-73.99903316,noise 40.63165058,-74.02861671,noise 40.64588131,-73.95194336,noise 40.7627399,-73.95969603,noise 40.81823571,-73.95272212,noise 40.7627399,-73.95969603,noise 40.7235816,-73.98916238,noise 40.77450842,-73.95714352,noise 40.72114459,-73.99370114,noise 40.69572285,-73.76158885,noise 40.7040316,-73.93424318,noise 40.72349367,-73.98825325,noise 40.72114459,-73.99370114,noise 40.75607293,-73.88055479,noise 40.70393585,-73.93479149,noise 40.65916768,-73.91640674,noise 40.89071027,-73.89845113,noise 40.7111325,-73.96654457,noise 40.68138125,-74.00444551,noise 40.69153023,-73.96055764,noise 40.71169202,-73.76970902,noise 40.70393585,-73.93479149,noise 40.7006361,-73.89659119,noise 40.69236216,-73.96132163,noise 40.70875527,-73.79910128,noise 40.65659808,-73.90516154,noise 40.71881923,-73.98712494,noise 40.75578209,-73.883331,noise 40.74176079,-73.85569835,noise 40.7235816,-73.98916238,noise 40.72101229,-73.98707762,noise 40.86281834,-73.90782477,noise 40.83573106,-73.91162427,noise 40.7065969,-73.9085782,noise 40.7111325,-73.96654457,noise 40.76330097,-73.92820671,noise 40.64018175,-73.95530567,noise 40.63597511,-73.97814065,noise 40.7111325,-73.96654457,noise 40.71865809,-73.81360953,noise 40.76753406,-73.92087723,noise 40.76753406,-73.92087723,noise 40.7111325,-73.96654457,noise 40.6801084,-73.86059446,noise 40.74361139,-73.95865022,noise 40.71739153,-73.73944844,noise 40.66919734,-73.89645248,noise 40.76753863,-73.91203967,noise 40.86620047,-73.92805946,noise 40.76753314,-73.91204329,noise 40.7440955,-73.98561878,noise 40.77034905,-73.91179046,noise 40.76437033,-73.98136189,noise 40.71939509,-73.96058083,noise 40.72116616,-73.98868657,noise 40.62863721,-74.08003528,noise 40.71739153,-73.73944844,noise 40.62141979,-73.92612955,noise 40.71702238,-73.965261,noise 40.71702238,-73.965261,noise 40.7540214,-73.99956687,noise 40.67462684,-73.87725059,noise 40.61897721,-73.92657171,noise 40.71661354,-73.96568327,noise 40.6801084,-73.86059446,noise 40.70225505,-73.94327941,noise 40.61901245,-73.92587647,noise 40.75228836,-73.983982,noise 40.85072806,-73.93650912,noise 40.80203814,-73.96548391,noise 40.85072806,-73.93650912,noise 40.8244039,-73.94820124,noise 40.69504519,-73.90311263,noise 40.67915413,-73.98342993,noise 40.76330097,-73.92820671,noise 40.86361231,-73.92820688,noise 40.77492893,-73.74265692,noise 40.69504519,-73.90311263,noise 40.72116616,-73.98868657,noise 40.7040316,-73.93424318,noise 40.79890019,-73.96311619,noise 40.72844754,-73.98467686,noise 40.76330097,-73.92820671,noise 40.78536042,-73.97298193,noise 40.82103435,-73.95724362,noise 40.71678366,-73.96552085,noise 40.7623246,-73.9764531,noise 40.73524167,-74.00606204,noise 40.61336789,-73.96302421,noise 40.71763107,-73.99047284,noise 40.61478363,-73.93656785,noise 40.72660323,-73.98602303,noise 40.7113795,-73.96644706,noise 40.79892213,-73.96308729,noise 40.85396304,-73.89703239,noise 40.71387984,-73.95769833,noise 40.71763107,-73.99047284,noise 40.76430472,-73.98309468,noise 40.71935205,-74.00935425,noise 40.8512885,-73.89878603,noise 40.63082309,-74.02210265,noise 40.7040316,-73.93424318,noise 40.76430472,-73.98309468,noise 40.68369146,-73.95396408,noise 40.86404753,-73.92631558,noise 40.78345666,-73.97808501,noise 40.75873427,-73.86009782,noise 40.62863721,-74.08003528,noise 40.75743164,-73.96877729,noise 40.74527188,-73.97844042,noise 40.74854315,-73.97606819,noise 40.7040316,-73.93424318,noise 40.82892541,-73.95039469,noise 40.78150396,-73.94849821,noise 40.74531217,-74.00588612,noise 40.77719359,-73.95223855,noise 40.76430472,-73.98309468,noise 40.66919734,-73.89645248,noise 40.69506993,-73.90315227,noise 40.74906205,-73.89081724,noise 40.70381897,-73.94207345,noise 40.76430472,-73.98309468,noise 40.74846082,-73.97612597,noise 40.76129269,-73.96594542,noise 40.83777968,-73.94402036,noise 40.70381897,-73.94207345,noise 40.7111325,-73.96654457,noise 40.70381897,-73.94207345,noise 40.67482666,-74.00598806,noise 40.70381897,-73.94207345,noise 40.70381897,-73.94207345,noise 40.70381897,-73.94207345,noise 40.70381897,-73.94207345,noise 40.74631572,-73.98353232,noise 40.7235816,-73.98916238,noise 40.70669919,-73.9499843,noise 40.76115715,-73.92366432,noise 40.73249706,-74.00183297,noise 40.69822499,-73.80633492,noise 40.66915909,-73.89665081,noise 40.76434915,-73.92345851,noise 40.86210383,-73.93000166,noise 40.67934096,-73.88657253,noise 40.70941165,-73.95847666,noise 40.76430472,-73.98309468,noise 40.67934096,-73.88657253,noise 40.76349768,-73.87813729,noise 40.69338205,-73.96635514,noise 40.68280954,-73.87517678,noise 40.67934096,-73.88657253,noise 40.68138125,-74.00444551,noise 40.76011682,-73.98767285,noise 40.76056167,-73.9897231,noise 40.7111325,-73.96654457,noise 40.69822499,-73.80633492,noise 40.76056167,-73.9897231,noise 40.67934096,-73.88657253,noise 40.72821933,-73.98196732,noise 40.75444761,-73.93013645,noise 40.69464039,-73.84847981,noise 40.67934096,-73.88657253,noise 40.7111325,-73.96654457,noise 40.7033509,-73.76710499,noise 40.7560045,-73.96927607,noise 40.63709769,-73.93463702,noise 40.72488931,-73.97828105,noise 40.77233682,-73.95578741,noise 40.76961376,-73.92801217,noise 40.75510246,-73.97320355,noise 40.73945487,-74.00597582,noise 40.72193981,-73.98539267,noise 40.69464039,-73.84847981,noise 40.67290293,-73.95020432,noise 40.63597511,-73.97814065,noise 40.68400462,-73.93227625,noise 40.72726727,-73.98449673,noise 40.75607293,-73.88055479,noise 40.74332402,-73.98407438,noise 40.67535618,-73.89005465,noise 40.7235816,-73.98916238,noise 40.75444761,-73.93013645,noise 40.77958449,-73.9818487,noise 40.72104319,-73.95643113,noise 40.71881923,-73.98712494,noise 40.7623246,-73.9764531,noise 40.73677571,-73.95532748,noise 40.80212991,-73.93611842,noise 40.84711145,-73.93818244,noise 40.65683338,-73.96013845,noise 40.71763107,-73.99047284,noise 40.67937376,-73.88643908,noise 40.6793218,-73.88662664,noise 40.75276858,-73.98320589,noise 40.71329837,-73.96741642,noise 40.67934096,-73.88657253,noise 40.7219211,-73.99003931,noise 40.83819186,-73.94501385,noise 40.80285303,-73.95650039,noise 40.70277711,-73.92938633,noise 40.85654487,-73.92846393,noise 40.7113795,-73.96644706,noise 40.74883018,-73.98551309,noise 40.80635431,-73.9539551,noise 40.68729923,-73.95691111,noise 40.63831144,-73.96852676,noise 40.76434915,-73.92345851,noise 40.71546006,-73.99160223,noise 40.77166933,-73.98669592,noise 40.61655033,-73.93020153,noise 40.7113795,-73.96644706,noise 40.72937008,-73.9871229,noise 40.73524167,-74.00606204,noise 40.71763107,-73.99047284,noise 40.80285303,-73.95650039,noise 40.70247911,-73.92687285,noise 40.71922004,-73.98786079,noise 40.7113795,-73.96644706,noise 40.73371023,-74.00215775,noise 40.74883018,-73.98551309,noise 40.84711145,-73.93818244,noise 40.67915413,-73.98342993,noise 40.84413857,-73.93751656,noise 40.73577378,-73.98893307,noise 40.73713914,-73.70921876,noise 40.63082309,-74.02210265,noise 40.67915413,-73.98342993,noise 40.82513202,-73.94397319,noise 40.6217701,-74.0037283,noise 40.73141011,-73.99697276,noise 40.759412,-73.99561425,noise 40.71996962,-73.95544697,noise 40.82777603,-73.94574875,noise 40.75851818,-73.967434,noise 40.71763415,-74.00391043,noise 40.73588925,-73.99120995,noise 40.75851818,-73.967434,noise 40.73361144,-73.99955618,noise 40.82388692,-73.9523062,noise 40.73976689,-73.984566,noise 40.76712642,-73.9838232,noise 40.8381204,-73.94479707,noise 40.7202352,-73.98447673,noise 40.78273201,-73.95114046,noise 40.73653048,-73.86576277,noise 40.69945631,-73.93968979,noise 40.74847288,-73.96911714,noise 40.67462684,-73.87725059,noise 40.74135013,-73.98131059,noise 40.76206509,-73.9836295,noise 40.79530771,-73.94366602,noise 40.77939942,-73.9754866,noise 40.63597511,-73.97814065,noise 40.68400462,-73.93227625,noise 40.85930241,-73.89807612,noise 40.73428366,-73.99249472,noise 40.74967679,-73.88508852,noise 40.74966302,-73.88504523,noise 40.72146258,-73.98852418,noise 40.75578209,-73.883331,noise 40.71562216,-73.99427522,noise 40.74369002,-74.00595455,noise 40.81659709,-73.94078307,noise 40.75468835,-73.99730738,noise 40.86553576,-73.9272684,noise 40.62795297,-73.94708561,noise 40.63985492,-74.01219323,noise 40.84711145,-73.93818244,noise 40.65683338,-73.96013845,noise 40.70572882,-73.92253756,noise 40.84711145,-73.93818244,noise 40.78517107,-73.97313367,noise 40.78517107,-73.97313367,noise 40.73392138,-73.99279425,noise 40.69822499,-73.80633492,noise 40.70233653,-73.98397597,noise 40.71958002,-73.95586209,noise 40.76047124,-73.99148827,noise 40.86281834,-73.90782477,noise 40.63597511,-73.97814065,noise 40.80981848,-73.94246165,noise 40.69324095,-73.97248195,noise 40.70247911,-73.92687285,noise 40.80981848,-73.94246165,noise 40.72985936,-74.00059172,noise 40.72985936,-74.00059172,noise 40.72985936,-74.00059172,noise 40.72985936,-74.00059172,noise 40.72985936,-74.00059172,noise 40.72933786,-74.0010319,noise 40.73394353,-74.00264127,noise 40.7235816,-73.98916238,noise 40.76429099,-73.98306219,noise 40.73234787,-73.98493936,noise 40.72953107,-73.9804155,noise 40.7517478,-73.97080475,noise 40.71763107,-73.99047284,noise 40.78536042,-73.97298193,noise 40.76997974,-73.95751829,noise 40.70233378,-73.98391466,noise 40.82103435,-73.95724362,noise 40.83050507,-73.94746295,noise 40.72985936,-74.00059172,noise 40.76430472,-73.98309468,noise 40.68080314,-73.92606738,noise 40.65778597,-73.95324671,noise 40.74992339,-73.99510238,noise 40.62193322,-74.03167444,noise 40.69218624,-73.93134841,noise 40.69250715,-73.93097305,noise 40.82369745,-73.95210039,noise 40.72500385,-73.99712097,noise 40.71562216,-73.99427522,noise 40.77177707,-73.92444281,noise 40.73394353,-74.00264127,noise 40.71665985,-73.96453611,noise 40.71823482,-73.98931116,noise 40.65683338,-73.96013845,noise 40.84723219,-73.93812449,noise 40.72042228,-73.98817082,noise 40.6801084,-73.86059446,noise 40.76320714,-73.98542333,noise 40.63597511,-73.97814065,noise 40.70247911,-73.92687285,noise 40.70247911,-73.92687285,noise 40.80938711,-73.95365679,noise 40.86618344,-73.91893043,noise 40.72101229,-73.98707762,noise 40.80608107,-73.96530843,noise 40.65683338,-73.96013845,noise 40.71979651,-73.98851004,noise 40.67915413,-73.98342993,noise 40.70600049,-73.90758354,noise 40.72770605,-73.98187365,noise 40.72844754,-73.98467686,noise 40.75851818,-73.967434,noise 40.72985936,-74.00059172,noise 40.82479996,-73.93868733,noise 40.64018175,-73.95530567,noise 40.66064331,-73.96062997,noise 40.73524167,-74.00606204,noise 40.74886611,-73.97198979,noise 40.65778597,-73.95324671,noise 40.76430472,-73.98309468,noise 40.87249774,-73.9171763,noise 40.69218624,-73.93134841,noise 40.75899935,-73.97053446,noise 40.70381888,-73.94188591,noise 40.71047843,-73.96383963,noise 40.68080314,-73.92606738,noise 40.70381897,-73.94207345,noise 40.71562216,-73.99427522,noise 40.7565272,-73.99401904,noise 40.71326962,-73.99011275,noise 40.86895885,-73.91583208,noise 40.74263781,-73.95358052,noise 40.68187917,-73.7660803,noise 40.79127286,-73.9742363,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.63567475,-73.972639,noise 40.63567475,-73.972639,noise 40.65108755,-73.94447252,noise 40.7802816,-73.98151992,noise 40.72726727,-73.98449673,noise 40.73434974,-74.00300933,noise 40.72844754,-73.98467686,noise 40.72575013,-73.94310427,noise 40.6801084,-73.86059446,noise 40.80212991,-73.93611842,noise 40.83314415,-73.9446169,noise 40.63597511,-73.97814065,noise 40.68080314,-73.92606738,noise 40.6801594,-73.90534075,noise 40.65778597,-73.95324671,noise 40.72543203,-73.99677099,noise 40.68287588,-73.98234735,noise 40.63597511,-73.97814065,noise 40.74507493,-73.90428495,noise 40.70719914,-73.96613536,noise 40.71093446,-73.96513432,noise 40.61019426,-73.98410254,noise 40.61916815,-74.10652087,noise 40.7205353,-73.99466441,noise 40.63555239,-73.97802189,noise 40.76348475,-73.98894652,noise 40.72844754,-73.98467686,noise 40.76348475,-73.98894652,noise 40.71604975,-73.96214117,noise 40.70923327,-73.90689374,noise 40.70923327,-73.90689374,noise 40.68218826,-73.93342825,noise 40.81407212,-73.91476351,noise 40.68192339,-73.935855,noise 40.87091201,-73.89153556,noise 40.80712927,-73.94965959,noise 40.72116616,-73.98868657,noise 40.81742362,-73.89809691,noise 40.69327694,-73.97381259,noise 40.65778597,-73.95324671,noise 40.86637626,-73.92825812,noise 40.72488931,-73.97828105,noise 40.74255163,-73.97743084,noise 40.82742931,-73.92463617,noise 40.70381897,-73.94207345,noise 40.74579678,-73.98228015,noise 40.70381897,-73.94207345,noise 40.87091201,-73.89153556,noise 40.73885094,-73.99259885,noise 40.73885094,-73.99259885,noise 40.76106861,-73.96948671,noise 40.73887016,-73.99264215,noise 40.73885094,-73.99259885,noise 40.70543919,-73.95633673,noise 40.7883183,-73.94101768,noise 40.71093446,-73.96513432,noise 40.7248509,-73.95139576,noise 40.82602863,-73.87857921,noise 40.7623246,-73.9764531,noise 40.68432691,-73.86978716,noise 40.74599639,-73.97791328,noise 40.86794106,-73.92038536,noise 40.85513626,-73.93687724,noise 40.81726755,-73.9422565,noise 40.86131045,-73.92123202,noise 40.64018175,-73.95530567,noise 40.66064331,-73.96062997,noise 40.82427381,-73.95203494,noise 40.65108755,-73.94447252,noise 40.66219955,-73.95317152,noise 40.86553576,-73.9272684,noise 40.64018175,-73.95530567,noise 40.76761182,-73.91825619,noise 40.67462684,-73.87725059,noise 40.76272656,-73.9269872,noise 40.72369215,-73.97603382,noise 40.68236854,-73.931939,noise 40.69822499,-73.80633492,noise 40.72605395,-73.98353372,noise 40.726345,-73.98425522,noise 40.79593876,-73.94318875,noise 40.77470889,-73.91335887,noise 40.64062588,-74.01497868,noise 40.74480252,-73.91025803,noise 40.78453714,-73.97359614,noise 40.66064331,-73.96062997,noise 40.64799659,-73.99847926,noise 40.72101229,-73.98707762,noise 40.66064331,-73.96062997,noise 40.66064331,-73.96062997,noise 40.86940311,-73.91530725,noise 40.76386068,-73.98791763,noise 40.72552201,-73.98785603,noise 40.64018175,-73.95530567,noise 40.68432691,-73.86978716,noise 40.76331469,-73.92819586,noise 40.67462684,-73.87725059,noise 40.72270842,-73.98595891,noise 40.83573106,-73.91162427,noise 40.66064331,-73.96062997,noise 40.84711145,-73.93818244,noise 40.76761182,-73.91825619,noise 40.72101229,-73.98707762,noise 40.73858477,-73.99384022,noise 40.70872939,-73.77898909,noise 40.8381204,-73.94479707,noise 40.61023813,-73.98370275,noise 40.68158489,-73.97696835,noise 40.68585026,-73.86501746,noise 40.83819186,-73.94501385,noise 40.87959365,-73.87796066,noise 40.73713256,-73.99032932,noise 40.7429957,-73.99643092,noise 40.73141011,-73.99697276,noise 40.7428118,-73.99657889,noise 40.74294904,-73.99646701,noise 40.74294904,-73.99646701,noise 40.74294904,-73.99646701,noise 40.7428118,-73.99657889,noise 40.74294904,-73.99646701,noise 40.74311921,-73.99635513,noise 40.7428118,-73.99657889,noise 40.74311921,-73.99635513,noise 40.7594005,-73.9882036,noise 40.68755077,-73.8593926,noise 40.85615697,-73.8835598,noise 40.759412,-73.99561425,noise 40.88407079,-73.85916141,noise 40.64226171,-73.98458855,noise 40.68080314,-73.92606738,noise 40.64748607,-74.00066306,noise 40.76808008,-73.79115328,noise 40.72230027,-73.99712109,noise 40.63597511,-73.97814065,noise 40.66974067,-73.99576074,noise 40.84413857,-73.93751656,noise 40.73677571,-73.95532748,noise 40.71728083,-73.95832025,noise 40.72630655,-73.98411452,noise 40.76559217,-73.98425316,noise 40.72364978,-73.98528406,noise 40.86292586,-73.92776655,noise 40.86182903,-73.92945605,noise 40.70273581,-73.93378282,noise 40.75196556,-74.00264559,noise 40.86109314,-73.92895794,noise 40.70599602,-73.94297325,noise 40.70753056,-73.78659995,noise 40.69622255,-73.93391551,noise 40.88956629,-73.89907857,noise 40.65164646,-73.93232352,noise 40.626026,-74.17672214,noise 40.77826923,-73.97872581,noise 40.79770759,-73.94018227,noise 40.72674376,-73.99168018,noise 40.69622255,-73.93391551,noise 40.7185353,-73.8140572,noise 40.65008151,-73.96100738,noise 40.68152493,-73.97922177,noise 40.67127809,-73.95035693,noise 40.67127809,-73.95035693,noise 40.67290293,-73.95020432,noise 40.74849491,-73.89791723,noise 40.69742251,-73.93479065,noise 40.76349768,-73.87813729,noise 40.65162479,-73.93281366,noise 40.7235816,-73.98916238,noise 40.70226327,-73.94324333,noise 40.65662476,-73.96009532,noise 40.76349768,-73.87813729,noise 40.89036457,-73.89859994,noise 40.75578209,-73.883331,noise 40.78417568,-73.97758645,noise 40.75565695,-73.88443932,noise 40.68729923,-73.95691111,noise 40.65244654,-73.92560867,noise 40.72084565,-73.95662967,noise 40.71156879,-73.76985013,noise 40.73010355,-74.00479514,noise 40.61023813,-73.98370275,noise 40.88923532,-73.90039556,noise 40.7657348,-73.98360333,noise 40.76056167,-73.9897231,noise 40.72985936,-74.00059172,noise 40.85396304,-73.89703239,noise 40.65662476,-73.96009532,noise 40.68152493,-73.97922177,noise 40.70484883,-73.90560866,noise 40.7540214,-73.99956687,noise 40.75614579,-73.92879555,noise 40.76330097,-73.92820671,noise 40.72116616,-73.98868657,noise 40.75851818,-73.967434,noise 40.8244039,-73.94820124,noise 40.80729548,-73.95327173,noise 40.76436881,-73.99201843,noise 40.83735689,-73.92048701,noise 40.59916024,-73.96126399,noise 40.62450144,-73.93887494,noise 40.68152493,-73.97922177,noise 40.7623246,-73.9764531,noise 40.7159289,-73.96191037,noise 40.74202303,-73.91894077,noise 40.71169202,-73.76970902,noise 40.68152493,-73.97922177,noise 40.78873125,-73.97426256,noise 40.61897721,-73.92657171,noise 40.75800513,-73.96819227,noise 40.71113444,-73.9493281,noise 40.76362248,-73.99701462,noise 40.73524167,-74.00606204,noise 40.64799659,-73.99847926,noise 40.78536042,-73.97298193,noise 40.73211582,-73.86718968,noise 40.72477819,-73.98794997,noise 40.76753406,-73.92087723,noise 40.61897721,-73.92657171,noise 40.76753406,-73.92087723,noise 40.59198688,-74.16241319,noise 40.72749313,-73.99239446,noise 40.72847953,-73.97871645,noise 40.86596553,-73.92985298,noise 40.68080314,-73.92606738,noise 40.72477819,-73.98794997,noise 40.52320824,-74.23487515,noise 40.81056065,-73.93924954,noise 40.68674049,-73.84403746,noise 40.71892321,-73.98452032,noise 40.78536042,-73.97298193,noise 40.71176537,-73.94268697,noise 40.74634666,-73.91600503,noise 40.71157365,-73.9945497,noise 40.70774599,-73.78732064,noise 40.72042228,-73.98817082,noise 40.85654487,-73.92846393,noise 40.74072541,-73.92391147,noise 40.82513202,-73.94397319,noise 40.84711145,-73.93818244,noise 40.79100712,-73.93906876,noise 40.626026,-74.17672214,noise 40.72711831,-73.97973792,noise 40.84711145,-73.93818244,noise 40.64257243,-73.94867751,noise 40.75283801,-73.86423926,noise 40.65045904,-73.95746105,noise 40.65925237,-73.98843036,noise 40.62782006,-73.96573973,noise 40.88367906,-73.89312765,noise 40.76568266,-73.98364305,noise 40.71157365,-73.9945497,noise 40.83314415,-73.9446169,noise 40.86637626,-73.92825812,noise 40.67915413,-73.98342993,noise 40.80899505,-73.94242985,noise 40.74103574,-73.99232796,noise 40.73727395,-73.85858402,noise 40.90065337,-73.86775364,noise 40.72985936,-74.00059172,noise 40.67915413,-73.98342993,noise 40.7221652,-73.98815969,noise 40.85930241,-73.89807612,noise 40.70753056,-73.78659995,noise 40.68380821,-73.90656147,noise 40.65778597,-73.95324671,noise 40.72230027,-73.99712109,noise 40.81414393,-73.91919974,noise 40.7221652,-73.98815969,noise 40.71758787,-73.95731359,noise 40.73443443,-73.98990393,noise 40.73313933,-73.99841598,noise 40.62874433,-74.07993453,noise 40.823746,-73.94410082,noise 40.76314291,-73.97839853,noise 40.67524523,-73.86806362,noise 40.75272439,-73.98145177,noise 40.72515206,-74.00315323,noise 40.794498,-73.94364865,noise 40.71484278,-73.99817473,noise 40.732928,-74.00006495,noise 40.70381897,-73.94207345,noise 40.73443443,-73.98990393,noise 40.73595507,-73.99047744,noise 40.78229519,-73.96512584,noise 40.66147726,-73.95217002,noise 40.70802908,-74.01668906,noise 40.64578144,-73.99484336,noise 40.84861945,-73.91801929,noise 40.76737974,-73.83295332,noise 40.65084761,-73.9619187,noise 40.67934096,-73.88657253,noise 40.74369002,-74.00595455,noise 40.68716729,-73.97475969,noise 40.76011682,-73.98767285,noise 40.7296035,-73.98823774,noise 40.76011682,-73.98767285,noise 40.6524601,-73.92535638,noise 40.72326039,-73.98843007,noise 40.67934096,-73.88657253,noise 40.89036457,-73.89859994,noise 40.72985936,-74.00059172,noise 40.76334753,-73.98905845,noise 40.82777603,-73.94574875,noise 40.69822225,-73.80633493,noise 40.67127809,-73.95035693,noise 40.76002338,-73.98659357,noise 40.72953107,-73.9804155,noise 40.73339178,-74.00427579,noise 40.76434915,-73.92345851,noise 40.65683338,-73.96013845,noise 40.70118873,-73.9524012,noise 40.75607293,-73.88055479,noise 40.70409077,-73.92764291,noise 40.7623246,-73.9764531,noise 40.73434974,-74.00300933,noise 40.67934096,-73.88657253,noise 40.89864108,-73.86737783,noise 40.71357016,-73.95902597,noise 40.7159289,-73.96191037,noise 40.72047732,-73.98971845,noise 40.76349768,-73.87813729,noise 40.7607565,-73.91589662,noise 40.78273201,-73.95114046,noise 40.75283801,-73.86423926,noise 40.6846693,-73.9379292,noise 40.82676249,-73.9502048,noise 40.73713914,-73.70921876,noise 40.76330097,-73.92820671,noise 40.83050507,-73.94746295,noise 40.6801084,-73.86059446,noise 40.71183865,-73.78743383,noise 40.83819186,-73.94501385,noise 40.75624515,-73.92120466,noise 40.74279466,-73.91560894,noise 40.64269519,-73.96977506,noise 40.82561352,-73.94644426,noise 40.71522127,-73.99171409,noise 40.68174406,-73.97683849,noise 40.74072541,-73.92391147,noise 40.8289654,-73.90818603,noise 40.71763107,-73.99047284,noise 40.76362248,-73.99701462,noise 40.71763107,-73.99047284,noise 40.78536042,-73.97298193,noise 40.72844754,-73.98467686,noise 40.71763107,-73.99047284,noise 40.73524167,-74.00606204,noise 40.66123568,-73.89447524,noise 40.78536042,-73.97298193,noise 40.73249706,-74.00183297,noise 40.72265369,-73.94816488,noise 40.71070456,-73.96739965,noise 40.76330097,-73.92820671,noise 40.64646981,-74.01257642,noise 40.64799659,-73.99847926,noise 40.67486925,-73.98154192,noise 40.71763107,-73.99047284,noise 40.76567588,-73.97623531,noise 40.73915309,-74.00112587,noise 40.74382559,-73.9795091,noise 40.63597511,-73.97814065,noise 40.78284121,-73.94976823,noise 40.74150525,-73.99527621,noise 40.63597511,-73.97814065,noise 40.63597511,-73.97814065,noise 40.81711468,-73.94395465,noise 40.70963675,-73.83002488,noise 40.69622255,-73.93391551,noise 40.67572681,-73.89014416,noise 40.72104319,-73.95643113,noise 40.82572712,-73.94880363,noise 40.7235816,-73.98916238,noise 40.75578209,-73.883331,noise 40.81816194,-73.91882274,noise 40.76430472,-73.98309468,noise 40.76559217,-73.98425316,noise 40.7623246,-73.9764531,noise 40.70474194,-73.90249983,noise 40.78536042,-73.97298193,noise 40.67928819,-73.96826226,noise 40.72985936,-74.00059172,noise 40.63597511,-73.97814065,noise 40.65108755,-73.94447252,noise 40.68716729,-73.97475969,noise 40.68400462,-73.93227625,noise 40.67966804,-74.01132802,noise 40.73633674,-73.85756843,noise 40.72581057,-73.99199058,noise 40.74527188,-73.97844042,noise 40.83627203,-73.8896261,noise 40.80285303,-73.95650039,noise 40.73524167,-74.00606204,noise 40.73029441,-73.98223737,noise 40.67486925,-73.98154192,noise 40.85072806,-73.93650912,noise 40.75612923,-73.994297,noise 40.65226747,-73.94971878,noise 40.67413684,-73.95380845,noise 40.85072806,-73.93650912,noise 40.72116616,-73.98868657,noise 40.80674788,-73.94993802,noise 40.59851723,-73.97984897,noise 40.65778597,-73.95324671,noise 40.72198466,-73.99967531,noise 40.79183093,-73.94531939,noise 40.80608107,-73.96530843,noise 40.76338296,-73.98673729,noise 40.73885094,-73.99259885,noise 40.73885094,-73.99259885,noise 40.73885094,-73.99259885,noise 40.86637626,-73.92825812,noise 40.86637626,-73.92825812,noise 40.86637626,-73.92825812,noise 40.75569238,-73.88419382,noise 40.76430472,-73.98309468,noise 40.80639116,-73.9650807,noise 40.67785342,-73.98577367,noise 40.67785342,-73.98577367,noise 40.64018175,-73.95530567,noise 40.7623246,-73.9764531,noise 40.64018175,-73.95530567,noise 40.8138571,-73.94477023,noise 40.75607293,-73.88055479,noise 40.76356464,-73.99258889,noise 40.64799659,-73.99847926,noise 40.84276852,-73.93670827,noise 40.79339574,-73.9404245,noise 40.71892321,-73.98452032,noise 40.64018175,-73.95530567,noise 40.72473066,-73.98145235,noise 40.71267449,-73.95661335,noise 40.71113444,-73.9493281,noise 40.76330097,-73.92820671,noise 40.70427792,-73.93300946,noise 40.7159289,-73.96191037,noise 40.7702339,-73.91562471,noise 40.75575554,-73.92800549,noise 40.71455156,-73.93789415,noise 40.68821553,-73.77645367,noise 40.7602181,-73.9853193,noise 40.7598283,-73.98493315,noise 40.74276218,-73.8960278,noise 40.76336598,-73.98281696,noise 40.76336598,-73.98281696,noise 40.76367611,-73.98266526,noise 40.76380506,-73.98230063,noise 40.76336598,-73.98281696,noise 40.76380506,-73.98230063,noise 40.76011649,-73.98483562,noise 40.70230473,-73.90938474,noise 40.71562216,-73.99427522,noise 40.69183862,-73.86208446,noise 40.69479963,-73.95416917,noise 40.72725966,-73.99013232,noise 40.81453554,-73.95914444,noise 40.72349367,-73.98825325,noise 40.72349367,-73.98825325,noise 40.5995808,-73.98996033,noise 40.69742251,-73.93479065,noise 40.75578209,-73.883331,noise 40.68009751,-73.86066299,noise 40.68716729,-73.97475969,noise 40.76409108,-73.98651694,noise 40.78417568,-73.97758645,noise 40.87412715,-73.88419727,noise 40.83627203,-73.8896261,noise 40.87412715,-73.88419727,noise 40.65778597,-73.95324671,noise 40.72403031,-73.97888382,noise 40.59916024,-73.96126399,noise 40.73141011,-73.99697276,noise 40.70381897,-73.94207345,noise 40.76166828,-73.97491556,noise 40.83268605,-73.93967743,noise 40.87091201,-73.89153556,noise 40.68080314,-73.92606738,noise 40.68054376,-73.86665063,noise 40.82431851,-73.94754009,noise 40.86638342,-73.91838425,noise 40.63597511,-73.97814065,noise 40.72806703,-73.99895369,noise 40.65683338,-73.96013845,noise 40.85535601,-73.86868236,noise 40.85535601,-73.86868236,noise 40.64018175,-73.95530567,noise 40.75607293,-73.88055479,noise 40.69506993,-73.90315227,noise 40.83050507,-73.94746295,noise 40.71139243,-74.00666586,noise 40.80285303,-73.95650039,noise 40.74150525,-73.99527621,noise 40.80674788,-73.94993802,noise 40.63037828,-73.97710491,noise 40.7396813,-73.98121002,noise 40.77850171,-73.95632493,noise 40.61897721,-73.92657171,noise 40.70381342,-73.94195083,noise 40.61619107,-74.13897309,noise 40.77850171,-73.95632493,noise 40.71562216,-73.99427522,noise 40.71169202,-73.76970902,noise 40.6805954,-73.86620346,noise 40.63597511,-73.97814065,noise 40.7702339,-73.91562471,noise 40.6792543,-73.75000968,noise 40.66205702,-73.95367624,noise 40.70385718,-73.94164783,noise 40.71095681,-73.95111733,noise 40.61897721,-73.92657171,noise 40.72042228,-73.98817082,noise 40.85434768,-73.90059963,noise 40.66219955,-73.95317152,noise 40.68224589,-73.76690107,noise 40.69506993,-73.90315227,noise 40.82427381,-73.95203494,noise 40.67535618,-73.89005465,noise 40.76753406,-73.92087723,noise 40.71410134,-73.94888215,noise 40.76330097,-73.92820671,noise 40.71763107,-73.99047284,noise 40.74124965,-73.91984749,noise 40.7054841,-73.90377193,noise 40.71812511,-73.99023468,noise 40.75253876,-73.98951499,noise 40.72473066,-73.98145235,noise 40.74379669,-73.98901113,noise 40.76056167,-73.9897231,noise 40.7235816,-73.98916238,noise 40.8390628,-73.9412076,noise 40.65662476,-73.96009532,noise 40.71892321,-73.98452032,noise 40.65778597,-73.95324671,noise 40.73915309,-74.00112587,noise 40.75800513,-73.96819227,noise 40.75444761,-73.93013645,noise 40.727594,-73.98529401,noise 40.83627203,-73.8896261,noise 40.73822503,-73.99116273,noise 40.67915413,-73.98342993,noise 40.71175719,-73.94278797,noise 40.73029441,-73.98223737,noise 40.77419816,-73.91308152,noise 40.76038872,-73.98934771,noise 40.81986557,-73.95852336,noise 40.80746061,-73.919309,noise 40.70142859,-73.91972947,noise 40.7296035,-73.98823774,noise 40.74072541,-73.92391147,noise 40.67413684,-73.95380845,noise 40.85148694,-73.92937666,noise 40.67383824,-73.96299069,noise 40.73434974,-74.00300933,noise 40.79688947,-73.93477267,noise 40.75006808,-73.88119355,noise 40.68330849,-73.97640529,noise 40.76579016,-73.98728192,noise 40.72981901,-73.97892168,noise 40.86292586,-73.92776655,noise 40.73822503,-73.99116273,noise 40.7221652,-73.98815969,noise 40.86653462,-73.91872753,noise 40.72473066,-73.98145235,noise 40.81401074,-73.94464728,noise 40.65662476,-73.96009532,noise 40.63597511,-73.97814065,noise 40.73913663,-74.00108618,noise 40.7540214,-73.99956687,noise 40.69257327,-73.96970918,noise 40.76494318,-73.91720536,noise 40.85072806,-73.93650912,noise 40.75444761,-73.93013645,noise 40.6658646,-73.98904921,noise 40.82043727,-73.9362273,noise 40.82043727,-73.9362273,noise 40.67915413,-73.98342993,noise 40.69635717,-73.93413535,noise 40.85186221,-73.92815088,noise 40.6904484,-73.95942962,noise 40.62446574,-73.93883895,noise 40.71763107,-73.99047284,noise 40.86581797,-73.92648716,noise 40.72251864,-73.98306559,noise 40.84072114,-73.93702103,noise 40.79593876,-73.94318875,noise 40.67892423,-74.01105389,noise 40.68330849,-73.97640529,noise 40.76078679,-73.99030062,noise 40.71175719,-73.94278797,noise 40.66064331,-73.96062997,noise 40.68585026,-73.86501746,noise 40.74136295,-73.92095522,noise 40.70547174,-73.94290878,noise 40.68400462,-73.93227625,noise 40.74369002,-74.00595455,noise 40.73750017,-73.87627234,noise 40.626026,-74.17672214,noise 40.65662476,-73.96009532,noise 40.76038872,-73.98934771,noise 40.71806571,-73.94496505,noise 40.61805645,-73.99931562,noise 40.64018175,-73.95530567,noise 40.63597511,-73.97814065,noise 40.78084021,-73.94957114,noise 40.76753406,-73.92087723,noise 40.76753406,-73.92087723,noise 40.65683338,-73.96013845,noise 40.76331469,-73.92819586,noise 40.72951901,-73.99981238,noise 40.66064331,-73.96062997,noise 40.68716729,-73.97475969,noise 40.759412,-73.99561425,noise 40.66064331,-73.96062997,noise 40.62874433,-74.07993453,noise 40.78873125,-73.97426256,noise 40.85533462,-73.93331279,noise 40.68183443,-73.97583254,noise 40.73677571,-73.95532748,noise 40.72709922,-73.98043787,noise 40.74447137,-73.91150714,noise 40.74883018,-73.98551309,noise 40.72349367,-73.98825325,noise 40.77436268,-73.91286829,noise 40.61678654,-73.93046423,noise 40.65038813,-73.958708,noise 40.67238021,-73.94747936,noise 40.72527812,-73.99242358,noise 40.7192403,-73.84532504,noise 40.84480578,-73.90900269,noise 40.72718781,-73.98557191,noise 40.80309983,-73.96378209,noise 40.7113923,-74.00859925,noise 40.80189077,-73.96842414,noise 40.69635717,-73.93413535,noise 40.68101339,-73.92867026,noise 40.57894782,-73.83671494,noise 40.76356464,-73.99258889,noise 40.73112604,-73.98203148,noise 40.71190466,-73.94131254,noise 40.73595507,-73.99047744,noise 40.73434974,-74.00300933,noise 40.71484278,-73.99817473,noise 40.68268743,-73.96313,noise 40.70415201,-73.93361911,noise 40.84711145,-73.93818244,noise 40.76346859,-73.99281632,noise 40.7235816,-73.98916238,noise 40.63597511,-73.97814065,noise 40.75676328,-73.9945424,noise 40.72349367,-73.98825325,noise 40.7205353,-73.99466441,noise 40.70923327,-73.90689374,noise 40.6301397,-74.10879366,noise 40.81904517,-73.95214348,noise 40.70277711,-73.92938633,noise 40.66031861,-73.9397504,noise 40.71916742,-73.8421903,noise 40.73321576,-73.98992216,noise 40.78536042,-73.97298193,noise 40.68272042,-73.96329223,noise 40.72116616,-73.98868657,noise 40.83800167,-73.83486847,noise 40.85533462,-73.93331279,noise 40.70409077,-73.92764291,noise 40.71763107,-73.99047284,noise 40.66093702,-73.98323621,noise 40.67413684,-73.95380845,noise 40.67486925,-73.98154192,noise 40.71990111,-74.00798346,noise 40.73704148,-73.70967385,noise 40.79183093,-73.94531939,noise 40.73211582,-73.86718968,noise 40.64797458,-74.00370094,noise 40.74205979,-74.00083362,noise 40.82595513,-73.94335824,noise 40.67915413,-73.98342993,noise 40.68261354,-73.99323967,noise 40.72821933,-73.98196732,noise 40.65052979,-73.95582489,noise 40.69635221,-73.96748961,noise 40.76011682,-73.98767285,noise 40.70930472,-73.90699824,noise 40.71763107,-73.99047284,noise 40.73434974,-74.00300933,noise 40.69177383,-73.76193473,noise 40.79892213,-73.96308729,noise 40.73717431,-73.70901653,noise 40.73588925,-73.99120995,noise 40.76755781,-73.91199994,noise 40.76282684,-73.93397938,noise 40.7985263,-73.9417021,noise 40.76330097,-73.92820671,noise 40.72540579,-73.98095789,noise 40.71763107,-73.99047284,noise 40.69479963,-73.95416917,noise 40.73595507,-73.99047744,noise 40.63597511,-73.97814065,noise 40.72272134,-73.9404949,noise 40.75577623,-73.93040577,noise 40.71461032,-73.80254298,noise 40.64018175,-73.95530567,noise 40.7342125,-74.00329077,noise 40.7540214,-73.99956687,noise 40.79892213,-73.96308729,noise 40.64018175,-73.95530567,noise 40.81101555,-73.94909672,noise 40.76334753,-73.98905845,noise 40.83627203,-73.8896261,noise 40.71763107,-73.99047284,noise 40.60165579,-74.01086824,noise 40.64269519,-73.96977506,noise 40.71620391,-73.99190515,noise 40.65778597,-73.95324671,noise 40.83050507,-73.94746295,noise 40.64018175,-73.95530567,noise 40.77216233,-73.92596956,noise 40.7623246,-73.9764531,noise 40.70381897,-73.94207345,noise 40.80285303,-73.95650039,noise 40.76753314,-73.91204329,noise 40.68272042,-73.96329223,noise 40.7648305,-73.91699251,noise 40.63385508,-74.02681622,noise 40.71892321,-73.98452032,noise 40.76369807,-73.98264721,noise 40.85654487,-73.92846393,noise 40.76671457,-73.98287746,noise 40.72153452,-74.00005772,noise 40.8289654,-73.90818603,noise 40.73434974,-74.00300933,noise 40.86385196,-73.92523119,noise 40.7612372,-73.99430018,noise 40.86385196,-73.92523119,noise 40.74507493,-73.90428495,noise 40.77714218,-73.95406195,noise 40.76369807,-73.98264721,noise 40.76380506,-73.98230063,noise 40.85072806,-73.93650912,noise 40.81091713,-73.90271998,noise 40.68187917,-73.7660803,noise 40.83383763,-73.91585844,noise 40.77212639,-73.929941,noise 40.71696661,-73.95482851,noise 40.68689522,-73.99090992,noise 40.82513202,-73.94397319,noise 40.67915413,-73.98342993,noise 40.70721561,-73.96613896,noise 40.73029441,-73.98223737,noise 40.80029117,-73.96129503,noise 40.83231008,-73.85827723,noise 40.64018175,-73.95530567,noise 40.68674049,-73.84403746,noise 40.75655946,-73.98610698,noise 40.76753863,-73.91203967,noise 40.70547174,-73.94290878,noise 40.71455156,-73.93789415,noise 40.74562238,-73.99525427,noise 40.74934479,-73.9769377,noise 40.74089156,-73.92200229,noise 40.71387984,-73.95769833,noise 40.7207874,-73.98885619,noise 40.67915413,-73.98342993,noise 40.70721561,-73.96613896,noise 40.7630701,-73.92770879,noise 40.63597511,-73.97814065,noise 40.7235816,-73.98916238,noise 40.76494318,-73.91720536,noise 40.77220943,-73.98217925,noise 40.85050642,-73.93286218,noise 40.74883018,-73.98551309,noise 40.76286099,-73.98310948,noise 40.73029441,-73.98223737,noise 40.62874433,-74.07993453,noise 40.80177109,-73.96287983,noise 40.66206546,-73.96169963,noise 40.7235816,-73.98916238,noise 40.75064724,-73.98579782,noise 40.76386068,-73.98791763,noise 40.71975521,-73.98731596,noise 40.7623246,-73.9764531,noise 40.83383763,-73.91585844,noise 40.84833352,-73.9344403,noise 40.73029441,-73.98223737,noise 40.8200614,-73.93650947,noise 40.68829839,-73.95708715,noise 40.79770445,-73.9394238,noise 40.63330882,-74.02704658,noise 40.71387984,-73.95769833,noise 40.65683338,-73.96013845,noise 40.68014059,-73.99492002,noise 40.77521668,-73.95057551,noise 40.72116616,-73.98868657,noise 40.63597511,-73.97814065,noise 40.71915709,-74.01033185,noise 40.75612923,-73.994297,noise 40.72909907,-74.00019123,noise 40.81977057,-73.9367193,noise 40.74436958,-73.98274246,noise 40.8200614,-73.93650947,noise 40.72942569,-73.99990258,noise 40.75064724,-73.98579782,noise 40.70381897,-73.94207345,noise 40.67418349,-73.95379039,noise 40.72726727,-73.98449673,noise 40.8138571,-73.94477023,noise 40.85434768,-73.90059963,noise 40.75064724,-73.98579782,noise 40.72104319,-73.95643113,noise 40.75448769,-73.97340232,noise 40.86395063,-73.92501778,noise 40.80712927,-73.94965959,noise 40.63472749,-74.11036481,noise 40.8200614,-73.93650947,noise 40.65683338,-73.96013845,noise 40.83383763,-73.91585844,noise 40.63555239,-73.97802189,noise 40.72909907,-74.00019123,noise 40.71892321,-73.98452032,noise 40.70409101,-73.94267914,noise 40.83050507,-73.94746295,noise 40.83383763,-73.91585844,noise 40.72567796,-73.98381883,noise 40.61567436,-74.03423242,noise 40.78118183,-73.98124525,noise 40.66196937,-73.96163481,noise 40.73531838,-73.99165025,noise 40.76687588,-73.97907601,noise 40.69479963,-73.95416917,noise 40.7540214,-73.99956687,noise 40.75415315,-73.99944776,noise 40.81453554,-73.95914444,noise 40.63597511,-73.97814065,noise 40.84276852,-73.93670827,noise 40.64018175,-73.95530567,noise 40.78536042,-73.97298193,noise 40.71908248,-73.98507223,noise 40.8112604,-73.95038619,noise 40.7985263,-73.9417021,noise 40.76386068,-73.98791763,noise 40.76615269,-73.91977781,noise 40.67824087,-73.82023724,noise 40.74934479,-73.9769377,noise 40.63555239,-73.97802189,noise 40.760487,-73.98464783,noise 40.68152285,-73.9832743,noise 40.83383763,-73.91585844,noise 40.76034977,-73.98471284,noise 40.78417568,-73.97758645,noise 40.73677571,-73.95532748,noise 40.7540214,-73.99956687,noise 40.7235816,-73.98916238,noise 40.7985263,-73.9417021,noise 40.65778597,-73.95324671,noise 40.70273581,-73.93378282,noise 40.76430472,-73.98309468,noise 40.8051537,-73.95111317,noise 40.88923532,-73.90039556,noise 40.86645691,-73.92145732,noise 40.65585213,-74.00280757,noise 40.71763107,-73.99047284,noise 40.76269392,-73.98579886,noise 40.71838773,-73.98277083,noise 40.83383763,-73.91585844,noise 40.72116616,-73.98868657,noise 40.71763107,-73.99047284,noise 40.79770445,-73.9394238,noise 40.64269519,-73.96977506,noise 40.68067262,-73.84263473,noise 40.83050507,-73.94746295,noise 40.69479214,-73.99429864,noise 40.87412715,-73.88419727,noise 40.79509569,-73.96219373,noise 40.71487022,-73.99821441,noise 40.72979348,-73.99884181,noise 40.74425669,-73.98051222,noise 40.74279466,-73.91560894,noise 40.86614786,-73.91907148,noise 40.87412715,-73.88419727,noise 40.81453554,-73.95914444,noise 40.83627203,-73.8896261,noise 40.72581057,-73.99199058,noise 40.63597511,-73.97814065,noise 40.87486097,-73.84729532,noise 40.72581057,-73.99199058,noise 40.67913829,-73.89575204,noise 40.71499375,-73.99886732,noise 40.68348181,-73.96689015,noise 40.58286501,-73.95546643,noise 40.74238268,-73.87090067,noise 40.71881923,-73.98712494,noise 40.86637626,-73.92825812,noise 40.65160575,-73.93310919,noise 40.76430472,-73.98309468,noise 40.74238268,-73.87090067,noise 40.75035345,-73.87590559,noise 40.81370293,-73.95652942,noise 40.69165969,-73.83653628,noise 40.68174406,-73.97683849,noise 40.86637626,-73.92825812,noise 40.87412715,-73.88419727,noise 40.67396646,-74.01689324,noise 40.76430472,-73.98309468,noise 40.62777064,-74.02335172,noise 40.69251066,-73.97174302,noise 40.86292586,-73.92776655,noise 40.6801084,-73.86059446,noise 40.86637626,-73.92825812,noise 40.72581057,-73.99199058,noise 40.72504709,-73.98713817,noise 40.61897721,-73.92657171,noise 40.72543203,-73.99677099,noise 40.86620047,-73.92805946,noise 40.72543203,-73.99677099,noise 40.72543203,-73.99677099,noise 40.72306557,-73.98907949,noise 40.71562216,-73.99427522,noise 40.70543919,-73.95633673,noise 40.72404318,-74.00331553,noise 40.63597511,-73.97814065,noise 40.72042228,-73.98817082,noise 40.71838773,-73.98277083,noise 40.74238268,-73.87090067,noise 40.87091201,-73.89153556,noise 40.72569826,-73.99655812,noise 40.83383763,-73.91585844,noise 40.66205702,-73.95367624,noise 40.74279466,-73.91560894,noise 40.76115165,-73.92364989,noise 40.68138971,-73.97552624,noise 40.65108755,-73.94447252,noise 40.68080314,-73.92606738,noise 40.86546354,-73.86526028,noise 40.83383763,-73.91585844,noise 40.63597511,-73.97814065,noise 40.61918707,-73.93313088,noise 40.73915309,-74.00112587,noise 40.71958002,-73.95586209,noise 40.72572296,-73.99651121,noise 40.68642817,-73.86869412,noise 40.72569826,-73.99655812,noise 40.69422224,-73.93032938,noise 40.72543203,-73.99677099,noise 40.74136295,-73.92095522,noise 40.7204606,-73.9872076,noise 40.84391809,-73.93586867,noise 40.61897721,-73.92657171,noise 40.72569826,-73.99655812,noise 40.72569826,-73.99655812,noise 40.67799937,-73.97305427,noise 40.7397011,-73.98517587,noise 40.83383763,-73.91585844,noise 40.75078403,-73.90106455,noise 40.76115165,-73.92364989,noise 40.73907305,-73.98978415,noise 40.77109928,-73.95667637,noise 40.70696184,-73.95455396,noise 40.62108515,-73.98111733,noise 40.65034059,-73.97461146,noise 40.7627399,-73.95969603,noise 40.6801084,-73.86059446,noise 40.78084021,-73.94957114,noise 40.8390628,-73.9412076,noise 40.70871914,-73.96418325,noise 40.63555239,-73.97802189,noise 40.76330097,-73.92820671,noise 40.73249706,-74.00183297,noise 40.70871914,-73.96418325,noise 40.83645131,-73.84710521,noise 40.7844728,-73.98142126,noise 40.8258629,-73.92591343,noise 40.83383763,-73.91585844,noise 40.71892321,-73.98452032,noise 40.72844754,-73.98467686,noise 40.76330097,-73.92820671,noise 40.62090874,-73.94474618,noise 40.68642817,-73.86869412,noise 40.65662476,-73.96009532,noise 40.7572323,-73.98979219,noise 40.76346859,-73.99281632,noise 40.63790379,-73.99268932,noise 40.75444761,-73.93013645,noise 40.70399461,-73.92749154,noise 40.71906146,-73.95639274,noise 40.82538549,-73.92618134,noise 40.69742251,-73.93479065,noise 40.66064331,-73.96062997,noise 40.72660323,-73.98602303,noise 40.62129151,-73.98447812,noise 40.82467379,-73.95027501,noise 40.73528849,-74.00054125,noise 40.70971594,-73.96563993,noise 40.68585026,-73.86501746,noise 40.72367768,-73.98938966,noise 40.76430472,-73.98309468,noise 40.79856266,-73.96336198,noise 40.70369027,-73.92802565,noise 40.82925663,-73.94837452,noise 40.59669317,-73.96277778,noise 40.61372069,-73.95212139,noise 40.85203456,-73.93173286,noise 40.76330097,-73.92820671,noise 40.87412715,-73.88419727,noise 40.64799659,-73.99847926,noise 40.69176838,-73.76195278,noise 40.75800513,-73.96819227,noise 40.66064331,-73.96062997,noise 40.70759352,-73.95554181,noise 40.69327694,-73.97381259,noise 40.74244241,-73.98050554,noise 40.7540214,-73.99956687,noise 40.78873125,-73.97426256,noise 40.74235714,-73.87768155,noise 40.68723335,-73.95690033,noise 40.83383763,-73.91585844,noise 40.85180412,-73.93192829,noise 40.68080314,-73.92606738,noise 40.64440181,-73.9518075,noise 40.82000567,-73.95887372,noise 40.72959583,-74.00282511,noise 40.72981901,-73.97892168,noise 40.87379275,-73.87668405,noise 40.74231114,-73.9835694,noise 40.79532613,-73.97128765,noise 40.65683338,-73.96013845,noise 40.75444761,-73.93013645,noise 40.70658298,-73.95433781,noise 40.76362248,-73.99701462,noise 40.72718781,-73.98557191,noise 40.76045412,-73.91527612,noise 40.86292586,-73.92776655,noise 40.8453424,-73.86550705,noise 40.76330097,-73.92820671,noise 40.70871914,-73.96418325,noise 40.71156879,-73.76985013,noise 40.83376331,-73.91556582,noise 40.85072806,-73.93650912,noise 40.77596729,-73.91512641,noise 40.84413857,-73.93751656,noise 40.72894882,-73.97836993,noise 40.68400462,-73.93227625,noise 40.63400741,-73.97987428,noise 40.64018175,-73.95530567,noise 40.64758742,-74.00689372,noise 40.6571417,-73.91980078,noise 40.83669499,-73.94294073,noise 40.82870254,-73.8900795,noise 40.75150185,-73.90275622,noise 40.70759352,-73.95554181,noise 40.69333284,-73.96702951,noise 40.82925663,-73.94837452,noise 40.7069205,-73.95412838,noise 40.84738877,-73.83119818,noise 40.75283801,-73.86423926,noise 40.61128741,-74.0093319,noise 40.70704189,-73.95569727,noise 40.62559384,-74.02421915,noise 40.70299346,-73.93317304,noise 40.74276218,-73.8960278,noise 40.81437291,-73.9443688,noise 40.63051827,-73.97713368,noise 40.82427381,-73.95203494,noise 40.74244241,-73.98050554,noise 40.76056167,-73.9897231,noise 40.59916024,-73.96126399,noise 40.82103435,-73.95724362,noise 40.70953429,-73.96402771,noise 40.82427381,-73.95203494,noise 40.86573352,-73.92748873,noise 40.69436467,-73.9579956,noise 40.72118125,-73.95864971,noise 40.66064331,-73.96062997,noise 40.67796304,-73.98443609,noise 40.7410231,-73.92169179,noise 40.74072541,-73.92391147,noise 40.80277161,-73.9676363,noise 40.72004411,-73.99906204,noise 40.70759352,-73.95554181,noise 40.74235168,-73.87770322,noise 40.73321576,-73.98992216,noise 40.72239575,-73.98801534,noise 40.71958002,-73.95586209,noise 40.60263086,-73.9649856,noise 40.70724299,-73.96593336,noise 40.64799659,-73.99847926,noise 40.83627203,-73.8896261,noise 40.63597511,-73.97814065,noise 40.74136295,-73.92095522,noise 40.87412715,-73.88419727,noise 40.67984155,-73.85133644,noise 40.83627203,-73.8896261,noise 40.76002338,-73.98659357,noise 40.8458189,-73.93857399,noise 40.67695838,-73.96099167,noise 40.83627203,-73.8896261,noise 40.74507493,-73.90428495,noise 40.63385508,-74.02681622,noise 40.72737169,-73.98544199,noise 40.8381204,-73.94479707,noise 40.90367938,-73.8508647,noise 40.82103435,-73.95724362,noise 40.69179032,-73.76194188,noise 40.71758787,-73.95731359,noise 40.86213723,-73.91819062,noise 40.75578209,-73.883331,noise 40.72073745,-73.98422408,noise 40.62637478,-74.02987171,noise 40.65585213,-74.00280757,noise 40.78693046,-73.97320158,noise 40.69909044,-73.95607401,noise 40.760405,-73.98747426,noise 40.75565695,-73.88443932,noise 40.66196937,-73.96163481,noise 40.68187917,-73.7660803,noise 40.75283801,-73.86423926,noise 40.73029441,-73.98223737,noise 40.7235816,-73.98916238,noise 40.7235816,-73.98916238,noise 40.68271767,-73.96328141,noise 40.74310102,-73.89741304,noise 40.67486925,-73.98154192,noise 40.70097792,-73.89220875,noise 40.71696661,-73.95482851,noise 40.73306797,-73.9982933,noise 40.64018175,-73.95530567,noise 40.73434974,-74.00300933,noise 40.74706709,-73.97923742,noise 40.74400768,-73.98569458,noise 40.6945972,-73.9559147,noise 40.71522127,-73.99171409,noise 40.67290293,-73.95020432,noise 40.84711145,-73.93818244,noise 40.78708426,-73.97359874,noise 40.76362248,-73.99701462,noise 40.73029441,-73.98223737,noise 40.80065918,-73.95439247,noise 40.67984155,-73.85133644,noise 40.67349156,-73.98271754,noise 40.83800167,-73.83486847,noise 40.70753056,-73.78659995,noise 40.71942599,-73.9887013,noise 40.72985936,-74.00059172,noise 40.79508564,-73.94418989,noise 40.71943412,-73.98773449,noise 40.80292804,-73.96757482,noise 40.61862879,-73.96940774,noise 40.78536042,-73.97298193,noise 40.71359488,-73.95907285,noise 40.78082422,-73.9768618,noise 40.71148133,-73.94559451,noise 40.7190885,-73.99001087,noise 40.60059032,-73.96136399,noise 40.79186116,-73.94539159,noise 40.71330642,-73.95834077,noise 40.73313595,-73.95475621,noise 40.76430472,-73.98309468,noise 40.72367768,-73.98938966,noise 40.76753863,-73.91203967,noise 40.81538169,-73.94178849,noise 40.75283801,-73.86423926,noise 40.73029441,-73.98223737,noise 40.71243818,-73.95592454,noise 40.85825778,-73.89029816,noise 40.75999119,-74.0027903,noise 40.72890861,-73.98431956,noise 40.80292804,-73.96757482,noise 40.76755506,-73.91199994,noise 40.71829243,-73.81493449,noise 40.80189077,-73.96842414,noise 40.62874433,-74.07993453,noise 40.67572681,-73.89014416,noise 40.61336789,-73.96302421,noise 40.69479963,-73.95416917,noise 40.61655033,-73.93020153,noise 40.75283801,-73.86423926,noise 40.68251059,-73.83599985,noise 40.76349768,-73.87813729,noise 40.66031861,-73.9397504,noise 40.72894882,-73.97836993,noise 40.71906146,-73.95639274,noise 40.68271767,-73.96328141,noise 40.71466953,-73.99113339,noise 40.80674788,-73.94993802,noise 40.62637478,-74.02987171,noise 40.73434974,-74.00300933,noise 40.79428248,-73.96879251,noise 40.74729659,-73.97404398,noise 40.62844519,-73.99179331,noise 40.69822499,-73.80633492,noise 40.71690963,-73.95655648,noise 40.68035203,-73.97476588,noise 40.71892321,-73.98452032,noise 40.71176537,-73.94268697,noise 40.76280656,-73.97151826,noise 40.71070456,-73.96739965,noise 40.71892321,-73.98452032,noise 40.59836801,-74.00254228,noise 40.82542074,-73.95117416,noise 40.75565695,-73.88443932,noise 40.87293983,-73.88533109,noise 40.74072541,-73.92391147,noise 40.85180412,-73.93192829,noise 40.74978836,-73.9877686,noise 40.75411057,-73.9690676,noise 40.69726627,-73.96765506,noise 40.83504293,-73.93812137,noise 40.71838773,-73.98277083,noise 40.71886314,-73.98709968,noise 40.68271767,-73.96328141,noise 40.74164104,-73.98111203,noise 40.72114459,-73.99370114,noise 40.64348375,-73.94879572,noise 40.71838773,-73.98277083,noise 40.7235816,-73.98916238,noise 40.65662476,-73.96009532,noise 40.65357509,-73.95945204,noise 40.7235816,-73.98916238,noise 40.72581057,-73.99199058,noise 40.70543919,-73.95633673,noise 40.72114459,-73.99370114,noise 40.80674788,-73.94993802,noise 40.82513202,-73.94397319,noise 40.76494318,-73.91720536,noise 40.76559217,-73.98425316,noise 40.7224595,-73.99930011,noise 40.84682457,-73.93556225,noise 40.72971549,-73.98373486,noise 40.63597511,-73.97814065,noise 40.69726627,-73.96765506,noise 40.71999641,-73.9612154,noise 40.72856929,-74.00308123,noise 40.70729036,-73.96840763,noise 40.7235816,-73.98916238,noise 40.78536042,-73.97298193,noise 40.86385196,-73.92523119,noise 40.72856929,-74.00308123,noise 40.65972716,-73.98791847,noise 40.69504519,-73.90311263,noise 40.73199094,-73.98406626,noise 40.71742284,-74.00265504,noise 40.71117221,-73.94211395,noise 40.64269519,-73.96977506,noise 40.71838773,-73.98277083,noise 40.70222399,-73.81121022,noise 40.7170331,-73.95643735,noise 40.8539524,-73.85193412,noise 40.77881452,-73.9560828,noise 40.69504519,-73.90311263,noise 40.70915516,-74.01054311,noise 40.78536042,-73.97298193,noise 40.68718749,-73.91798339,noise 40.82103435,-73.95724362,noise 40.70682923,-73.96838982,noise 40.70700185,-73.96728965,noise 40.71742241,-74.01025943,noise 40.82605852,-73.87829732,noise 40.72837719,-74.00077211,noise 40.72974957,-73.99961394,noise 40.74279466,-73.91560894,noise 40.66144035,-73.99334273,noise 40.70700185,-73.96728965,noise 40.72369215,-73.97603382,noise 40.70400749,-73.93057522,noise 40.70700185,-73.96728965,noise 40.74310102,-73.89741304,noise 40.70964351,-74.01271098,noise 40.76157383,-73.98396172,noise 40.76105786,-73.98433004,noise 40.74511582,-73.98065994,noise 40.74487143,-73.98005371,noise 40.70381897,-73.94207345,noise 40.70381897,-73.94207345,noise 40.70381897,-73.94207345,noise 40.70381897,-73.94207345,noise 40.70515636,-73.95602313,noise 40.83371105,-73.91541411,noise 40.72829892,-73.98188431,noise 40.71972297,-73.99936868,noise 40.70381897,-73.94207345,noise 40.70381897,-73.94207345,noise 40.70381897,-73.94207345,noise 40.71838773,-73.98277083,noise 40.85932698,-73.93131325,noise 40.8660547,-73.91929936,noise 40.642534,-73.94867394,noise 40.81453554,-73.95914444,noise 40.65672084,-73.96011689,noise 40.72042228,-73.98817082,noise 40.7235816,-73.98916238,noise 40.82427381,-73.95203494,noise 40.8138571,-73.94477023,noise 40.76386068,-73.98791763,noise 40.75578209,-73.883331,noise 40.86281834,-73.90782477,noise 40.64018175,-73.95530567,noise 40.71455156,-73.93789415,noise 40.68268194,-73.96311197,noise 40.79339574,-73.9404245,noise 40.7621841,-73.99361062,noise 40.71943412,-73.98773449,noise 40.7566294,-73.92530101,noise 40.68716729,-73.97475969,noise 40.72726727,-73.98449673,noise 40.60525545,-73.96687133,noise 40.72400263,-73.95106807,noise 40.77109928,-73.95667637,noise 40.75283801,-73.86423926,noise 40.68014059,-73.99492002,noise 40.70237213,-73.92697756,noise 40.76386068,-73.98791763,noise 40.72581057,-73.99199058,noise 40.72478137,-73.99330394,noise 40.63458544,-73.99439746,noise 40.76627668,-73.95641958,noise 40.73991339,-74.00079029,noise 40.78536042,-73.97298193,noise 40.72726727,-73.98449673,noise 40.6801084,-73.86059446,noise 40.70923327,-73.90689374,noise 40.68014059,-73.99492002,noise 40.73908435,-74.00545255,noise 40.64018175,-73.95530567,noise 40.72909907,-74.00019123,noise 40.6801084,-73.86059446,noise 40.86924949,-73.91542314,noise 40.75839617,-73.87905263,noise 40.73029441,-73.98223737,noise 40.78536042,-73.97298193,noise 40.6801084,-73.86059446,noise 40.6870299,-73.99366109,noise 40.72072702,-73.98888867,noise 40.70595547,-73.89359292,noise 40.75283801,-73.86423926,noise 40.62777064,-74.02335172,noise 40.71455156,-73.93789415,noise 40.70543919,-73.95633673,noise 40.79897133,-73.94246741,noise 40.75064724,-73.98579782,noise 40.70543919,-73.95633673,noise 40.69177383,-73.76193473,noise 40.70230473,-73.90938474,noise 40.72364978,-73.98528406,noise 40.76079439,-73.98451059,noise 40.76011649,-73.98483562,noise 40.78090945,-73.95100459,noise 40.67821199,-73.97923002,noise 40.74444308,-73.9790578,noise 40.68187917,-73.7660803,noise 40.69572285,-73.76158885,noise 40.74238268,-73.87090067,noise 40.7235816,-73.98916238,noise 40.84394176,-73.93902389,noise 40.76761182,-73.91825619,noise 40.7235816,-73.98916238,noise 40.75877058,-73.91030419,noise 40.75636161,-73.97039124,noise 40.69726627,-73.96765506,noise 40.81453554,-73.95914444,noise 40.74934479,-73.9769377,noise 40.73250431,-73.9848383,noise 40.7592274,-73.98657207,noise 40.86637626,-73.92825812,noise 40.86637626,-73.92825812,noise 40.86637626,-73.92825812,noise 40.86637626,-73.92825812,noise 40.72921044,-73.98364118,noise 40.86564533,-73.92693205,noise 40.86637626,-73.92825812,noise 40.70543919,-73.95633673,noise 40.79484191,-73.9347819,noise 40.60305501,-73.91514095,noise 40.64149965,-74.00332223,noise 40.70927153,-73.7754705,noise 40.8453424,-73.86550705,noise 40.70927153,-73.7754705,noise 40.70193411,-73.80526021,noise 40.75132629,-73.86246299,noise 40.67915413,-73.98342993,noise 40.83050507,-73.94746295,noise 40.86292586,-73.92776655,noise 40.72773671,-73.98517492,noise 40.74712077,-73.99119042,noise 40.67915413,-73.98342993,noise 40.74712077,-73.99119042,noise 40.66025365,-73.98380587,noise 40.74712077,-73.99119042,noise 40.70769842,-73.86252054,noise 40.81453554,-73.95914444,noise 40.85072806,-73.93650912,noise 40.72726727,-73.98449673,noise 40.5995808,-73.98996033,noise 40.78273201,-73.95114046,noise 40.71487577,-73.85344791,noise 40.63597511,-73.97814065,noise 40.72822197,-73.9812818,noise 40.71763055,-73.98546215,noise 40.86764127,-73.92352401,noise 40.88923532,-73.90039556,noise 40.67631977,-73.95593759,noise 40.70452877,-73.95862758,noise 40.76002338,-73.98659357,noise 40.70381897,-73.94207345,noise 40.76002338,-73.98659357,noise 40.80800194,-73.96389863,noise 40.68006377,-73.94365161,noise 40.82103435,-73.95724362,noise 40.66108808,-73.95359401,noise 40.70381897,-73.94207345,noise 40.84394176,-73.93902389,noise 40.67505351,-73.9472285,noise 40.70230473,-73.90938474,noise 40.72022653,-73.98156183,noise 40.7623246,-73.9764531,noise 40.71408849,-73.95783166,noise 40.66108808,-73.95359401,noise 40.82427381,-73.95203494,noise 40.8571179,-73.90482501,noise 40.72418316,-74.00319648,noise 40.85180412,-73.93192829,noise 40.73434974,-74.00300933,noise 40.75283801,-73.86423926,noise 40.71763055,-73.98546215,noise 40.76349768,-73.87813729,noise 40.73419576,-73.99148441,noise 40.72974957,-73.99961394,noise 40.65672084,-73.96011689,noise 40.75812247,-73.91716691,noise 40.70212373,-73.90958335,noise 40.7235816,-73.98916238,noise 40.73029441,-73.98223737,noise 40.71838773,-73.98277083,noise 40.75578209,-73.883331,noise 40.73029441,-73.98223737,noise 40.85180412,-73.93192829,noise 40.71377292,-73.95804829,noise 40.8453424,-73.86550705,noise 40.68006925,-73.94361915,noise 40.72993617,-73.86457096,noise 40.67984155,-73.85133644,noise 40.72890861,-73.98431956,noise 40.70547174,-73.94290878,noise 40.67828644,-73.96862327,noise 40.69822499,-73.80633492,noise 40.89025222,-73.89880989,noise 40.63708146,-73.93504778,noise 40.82103435,-73.95724362,noise 40.86213723,-73.91819062,noise 40.71102555,-73.95841794,noise 40.71823482,-73.98931116,noise 40.74908619,-73.99389339,noise 40.76348475,-73.98894652,noise 40.75221726,-73.936834,noise 40.75848173,-73.92472862,noise 40.7475958,-73.99418585,noise 40.88923532,-73.90039556,noise 40.64018175,-73.95530567,noise 40.7235816,-73.98916238,noise 40.72349367,-73.98825325,noise 40.70587836,-73.91287846,noise 40.75225292,-73.93679788,noise 40.61767041,-74.0857277,noise 40.67828644,-73.96862327,noise 40.80015915,-73.94684037,noise 40.73029441,-73.98223737,noise 40.70715989,-73.94316342,noise 40.7235816,-73.98916238,noise 40.70230473,-73.90938474,noise 40.69622255,-73.93391551,noise 40.84271364,-73.93672278,noise 40.8088405,-73.92228029,noise 40.71108399,-73.770364,noise 40.64520137,-73.97050183,noise 40.74410373,-73.98563682,noise 40.63910519,-74.01555845,noise 40.77480809,-73.91028259,noise 40.72114459,-73.99370114,noise 40.70727997,-73.95387926,noise 40.70273581,-73.93378282,noise 40.76753314,-73.91204329,noise 40.72116616,-73.98868657,noise 40.78023751,-73.98043309,noise 40.72116616,-73.98868657,noise 40.64269519,-73.96977506,noise 40.71838773,-73.98277083,noise 40.83054288,-73.8944958,noise 40.8390628,-73.9412076,noise 40.70273581,-73.93378282,noise 40.82513202,-73.94397319,noise 40.74948083,-73.88677071,noise 40.70534634,-73.90646997,noise 40.68268194,-73.96311197,noise 40.7296035,-73.98823774,noise 40.72547213,-73.98395959,noise 40.78084021,-73.94957114,noise 40.76753131,-73.92087723,noise 40.7572323,-73.98979219,noise 40.7623246,-73.9764531,noise 40.71954134,-73.98949493,noise 40.86637626,-73.92825812,noise 40.71958002,-73.95586209,noise 40.70587836,-73.91287846,noise 40.66064331,-73.96062997,noise 40.70409077,-73.92764291,noise 40.61678654,-73.93046423,noise 40.72341408,-73.98833624,noise 40.68149097,-73.99400053,noise 40.72306913,-73.95039412,noise 40.85862734,-73.90464571,noise 40.72349367,-73.98825325,noise 40.74879969,-73.96984602,noise 40.71979651,-73.98851004,noise 40.8390628,-73.9412076,noise 40.74908619,-73.99389339,noise 40.69403634,-73.96095644,noise 40.76330097,-73.92820671,noise 40.71337231,-73.76318503,noise 40.61897721,-73.92657171,noise 40.68138125,-74.00444551,noise 40.63535684,-74.00218339,noise 40.80015915,-73.94684037,noise 40.74908619,-73.99389339,noise 40.71102555,-73.95841794,noise 40.71838773,-73.98277083,noise 40.71996962,-73.95544697,noise 40.67915413,-73.98342993,noise 40.760405,-73.98747426,noise 40.84811307,-73.93780921,noise 40.73717431,-73.70901653,noise 40.83507129,-73.94535974,noise 40.74321028,-73.97696148,noise 40.5726132,-74.11814526,noise 40.62874433,-74.07993453,noise 40.61678654,-73.93046423,noise 40.67535618,-73.89005465,noise 40.8512885,-73.89878603,noise 40.70572238,-73.95074245,noise 40.6342314,-73.99531263,noise 40.76753131,-73.92087723,noise 40.73909126,-73.9816793,noise 40.7235816,-73.98916238,noise 40.64534677,-73.97020988,noise 40.76753406,-73.92087723,noise 40.6801084,-73.86059446,noise 40.77673752,-73.95117736,noise 40.71332412,-73.76378039,noise 40.69177941,-73.76197798,noise 40.71901757,-73.95643966,noise 40.70753056,-73.78659995,noise 40.72042228,-73.98817082,noise 40.83593224,-73.94351237,noise 40.76386068,-73.98791763,noise 40.70986855,-73.96216632,noise 40.73733035,-73.99265315,noise 40.75283801,-73.86423926,noise 40.7170331,-73.95643735,noise 40.85160108,-73.93205139,noise 40.84280974,-73.94201387,noise 40.72726727,-73.98449673,noise 40.76011682,-73.98767285,noise 40.75283801,-73.86423926,noise 40.84397259,-73.93515299,noise 40.63831144,-73.96852676,noise 40.74774529,-73.86554529,noise 40.71551214,-73.99069319,noise 40.76362248,-73.99701462,noise 40.69822499,-73.80633492,noise 40.90367938,-73.8508647,noise 40.74400291,-73.85986531,noise 40.86797939,-73.92024792,noise 40.74368829,-73.97915908,noise 40.78536042,-73.97298193,noise 40.69564898,-73.83928526,noise 40.70547174,-73.94290878,noise 40.69937868,-73.91277154,noise 40.70716915,-73.80248207,noise 40.74321028,-73.97696148,noise 40.71901757,-73.95643966,noise 40.76011682,-73.98767285,noise 40.71522127,-73.99171409,noise 40.64565663,-73.96015594,noise 40.86637626,-73.92825812,noise 40.76330097,-73.92820671,noise 40.71522127,-73.99171409,noise 40.75444761,-73.93013645,noise 40.84811307,-73.93780921,noise 40.68030127,-73.98223986,noise 40.67563055,-73.89891922,noise 40.72642524,-73.99001338,noise 40.74011361,-74.00596145,noise 40.7221652,-73.98815969,noise 40.64748607,-74.00066306,noise 40.79502253,-73.9442369,noise 40.80683472,-73.94196935,noise 40.76579016,-73.98728192,noise 40.75578209,-73.883331,noise 40.7192426,-73.99702743,noise 40.76434915,-73.92345851,noise 40.87671687,-73.88026212,noise 40.78706442,-73.94193603,noise 40.59916024,-73.96126399,noise 40.88923532,-73.90039556,noise 40.78942094,-73.84542201,noise 40.84817343,-73.93778024,noise 40.76753131,-73.92087723,noise 40.71243818,-73.95592454,noise 40.7598283,-73.98493315,noise 40.81561858,-73.94348264,noise 40.72894882,-73.97836993,noise 40.85654487,-73.92846393,noise 40.66064331,-73.96062997,noise 40.7623246,-73.9764531,noise 40.65778597,-73.95324671,noise 40.71176537,-73.94268697,noise 40.74412367,-73.85985784,noise 40.84954229,-73.9363982,noise 40.90065337,-73.86775364,noise 40.85186221,-73.92815088,noise 40.73295464,-73.98635726,noise 40.74474687,-73.99716342,noise 40.78103309,-73.95131142,noise 40.69479963,-73.95416917,noise 40.71696661,-73.95482851,noise 40.66064331,-73.96062997,noise 40.66064331,-73.96062997,noise 40.68916497,-73.95505648,noise 40.71838773,-73.98277083,noise 40.83720479,-73.83423078,noise 40.61805645,-73.99931562,noise 40.76052726,-73.91772343,noise 40.78084021,-73.94957114,noise 40.83391659,-73.92700664,noise 40.69176838,-73.76195278,noise 40.84391809,-73.93586867,noise 40.68947714,-73.96958077,noise 40.64184081,-73.95153189,noise 40.64748607,-74.00066306,noise 40.78084021,-73.94957114,noise 40.80489435,-73.93702603,noise 40.63558721,-74.02611073,noise 40.64748607,-74.00066306,noise 40.72726727,-73.98449673,noise 40.61805645,-73.99931562,noise 40.76568266,-73.98364305,noise 40.71838773,-73.98277083,noise 40.67617398,-73.89281485,noise 40.69399655,-73.75384182,noise 40.85862734,-73.90464571,noise 40.71526779,-73.98991044,noise 40.69247763,-73.85938942,noise 40.88956351,-73.89903879,noise 40.5983312,-73.96091877,noise 40.6393631,-74.01627554,noise 40.63597511,-73.97814065,noise 40.8289654,-73.90818603,noise 40.70381897,-73.94207345,noise 40.88923532,-73.90039556,noise 40.67915413,-73.98342993,noise 40.73677571,-73.95532748,noise 40.64459499,-73.90172649,noise 40.7623246,-73.9764531,noise 40.74452727,-73.99668346,noise 40.71688453,-73.99085533,noise 40.75283801,-73.86423926,noise 40.804827,-73.96621573,noise 40.69399655,-73.75384182,noise 40.82996179,-73.94786086,noise 40.76997974,-73.95751829,noise 40.71758399,-73.95433748,noise 40.73465934,-73.98828737,noise 40.80489435,-73.93702603,noise 40.61805645,-73.99931562,noise 40.72839362,-74.00312813,noise 40.75360622,-73.98708934,noise 40.74492051,-73.97826369,noise 40.73529333,-73.98781817,noise 40.67773308,-73.97285248,noise 40.65683338,-73.96013845,noise 40.71696661,-73.95482851,noise 40.82615116,-73.87765399,noise 40.82969016,-73.94805981,noise 40.69822499,-73.80633492,noise 40.75607293,-73.88055479,noise 40.65958372,-73.93123058,noise 40.73442598,-73.98771369,noise 40.73029441,-73.98223737,noise 40.75578209,-73.883331,noise 40.74036888,-74.00579908,noise 40.71454161,-73.78123517,noise 40.67770929,-73.9507992,noise 40.74486372,-73.86356621,noise 40.81037895,-73.94357018,noise 40.8390628,-73.9412076,noise 40.71696661,-73.95482851,noise 40.71696661,-73.95482851,noise 40.73677571,-73.95532748,noise 40.76568266,-73.98364305,noise 40.62405125,-73.96504641,noise 40.77205768,-73.92543534,noise 40.72114459,-73.99370114,noise 40.72279663,-73.98959904,noise 40.70273581,-73.93378282,noise 40.74425235,-73.91224003,noise 40.63446842,-73.96740447,noise 40.70273581,-73.93378282,noise 40.75283801,-73.86423926,noise 40.84690535,-73.89286866,noise 40.69176838,-73.76195278,noise 40.67915413,-73.98342993,noise 40.68158489,-73.97696835,noise 40.67572681,-73.89014416,noise 40.76330097,-73.92820671,noise 40.71048168,-73.96549165,noise 40.74934479,-73.9769377,noise 40.90036738,-73.86728034,noise 40.85434768,-73.90059963,noise 40.75945853,-73.99296114,noise 40.71696661,-73.95482851,noise 40.71144313,-73.94609232,noise 40.70273581,-73.93378282,noise 40.76330097,-73.92820671,noise 40.86620047,-73.92805946,noise 40.72890861,-73.98431956,noise 40.70543919,-73.95633673,noise 40.80645153,-73.96504816,noise 40.79513631,-73.96959389,noise 40.80674788,-73.94993802,noise 40.80489435,-73.93702603,noise 40.74428689,-73.98058078,noise 40.83842627,-73.94168882,noise 40.72478137,-73.99330394,noise 40.79900153,-73.94249628,noise 40.7630701,-73.92770879,noise 40.7623246,-73.9764531,noise 40.70381897,-73.94207345,noise 40.76753314,-73.91204329,noise 40.74444308,-73.9790578,noise 40.70447935,-73.95857351,noise 40.78536042,-73.97298193,noise 40.76330097,-73.92820671,noise 40.65683338,-73.96013845,noise 40.80246594,-73.96424478,noise 40.76330097,-73.92820671,noise 40.71562216,-73.99427522,noise 40.70273581,-73.93378282,noise 40.8453424,-73.86550705,noise 40.64269519,-73.96977506,noise 40.74447512,-73.99656437,noise 40.71696661,-73.95482851,noise 40.70400749,-73.93057522,noise 40.58895468,-74.16759048,noise 40.70381897,-73.94207345,noise 40.72971549,-73.98373486,noise 40.61678654,-73.93046423,noise 40.61678654,-73.93046423,noise 40.73295464,-73.98635726,noise 40.68815886,-73.81919006,noise 40.74477808,-73.97985886,noise 40.80617049,-73.94770611,noise 40.71758399,-73.95433748,noise 40.76341639,-73.92842679,noise 40.80236224,-73.96620976,noise 40.74470416,-73.98097042,noise 40.69479963,-73.95416917,noise 40.85072806,-73.93650912,noise 40.5995808,-73.98996033,noise 40.70547174,-73.94290878,noise 40.68996594,-73.79676716,noise 40.82107204,-73.95532147,noise 40.74416059,-73.98031016,noise 40.72924728,-74.00006494,noise 40.74444308,-73.9790578,noise 40.74700906,-73.97718753,noise 40.80608107,-73.96530843,noise 40.61678654,-73.93046423,noise 40.80947766,-73.95357725,noise 40.64799659,-73.99847926,noise 40.74505782,-73.97860649,noise 40.74428689,-73.98058078,noise 40.80015915,-73.94684037,noise 40.69726627,-73.96765506,noise 40.83050507,-73.94746295,noise 40.69622255,-73.93391551,noise 40.70294413,-73.94357096,noise 40.70294413,-73.94357096,noise 40.83036236,-73.86602154,noise 40.81986557,-73.95852336,noise 40.70543919,-73.95633673,noise 40.76034977,-73.98471284,noise 40.7255627,-73.98390545,noise 40.63369037,-74.00964128,noise 40.71894075,-73.95653712,noise 40.71562216,-73.99427522,noise 40.76737727,-73.95629612,noise 40.86613852,-73.92558294,noise 40.76115165,-73.92364989,noise 40.76115165,-73.92364989,noise 40.75996929,-73.80200062,noise 40.85050642,-73.93286218,noise 40.63557589,-74.01126289,noise 40.61678654,-73.93046423,noise 40.61678654,-73.93046423,noise 40.7205353,-73.99466441,noise 40.7235816,-73.98916238,noise 40.8453424,-73.86550705,noise 40.67116282,-73.95036783,noise 40.65108755,-73.94447252,noise 40.72478137,-73.99330394,noise 40.7235816,-73.98916238,noise 40.72974957,-73.99961394,noise 40.63555239,-73.97802189,noise 40.81298549,-73.94166414,noise 40.71901757,-73.95643966,noise 40.72349367,-73.98825325,noise 40.76038872,-73.98934771,noise 40.86581797,-73.92648716,noise 40.8138571,-73.94477023,noise 40.83050507,-73.94746295,noise 40.80947766,-73.95357725,noise 40.77521668,-73.95057551,noise 40.69333284,-73.96702951,noise 40.80947766,-73.95357725,noise 40.64799659,-73.99847926,noise 40.72114459,-73.99370114,noise 40.64018175,-73.95530567,noise 40.68485687,-73.97804169,noise 40.8574269,-73.89110568,noise 40.65683338,-73.96013845,noise 40.8453424,-73.86550705,noise 40.63856272,-73.89634869,noise 40.58774206,-73.80986688,noise 40.59933352,-73.96231898,noise 40.67116282,-73.95036783,noise 40.71531994,-73.98988518,noise 40.72349367,-73.98825325,noise 40.70226051,-73.94320727,noise 40.63192379,-73.96665994,noise 40.78417568,-73.97758645,noise 40.78417568,-73.97758645,noise 40.68193069,-73.97673748,noise 40.83050507,-73.94746295,noise 40.70247911,-73.92687285,noise 40.74238268,-73.87090067,noise 40.73954279,-73.99607024,noise 40.6870299,-73.99366109,noise 40.71838773,-73.98277083,noise 40.71073763,-73.96785051,noise 40.72890861,-73.98431956,noise 40.73249706,-74.00183297,noise 40.6936969,-73.80036912,noise 40.74496205,-73.98027022,noise 40.74479455,-73.97987329,noise 40.74487143,-73.98005371,noise 40.70223262,-73.80812657,noise 40.77822841,-73.98070809,noise 40.70212373,-73.90958335,noise 40.72504502,-73.99708489,noise 40.71562216,-73.99427522,noise 40.70543919,-73.95633673,noise 40.72712725,-73.9841937,noise 40.70927153,-73.7754705,noise 40.8453424,-73.86550705,noise 40.68499671,-73.86744578,noise 40.7308857,-73.99313013,noise 40.5995808,-73.98996033,noise 40.76456386,-73.91644052,noise 40.6801084,-73.86059446,noise 40.61678654,-73.93046423,noise 40.81453554,-73.95914444,noise 40.7063803,-74.00950391,noise 40.70923327,-73.90689374,noise 40.83050507,-73.94746295,noise 40.70930472,-73.90699824,noise 40.72116616,-73.98868657,noise 40.68013577,-73.86053311,noise 40.70219183,-73.92833743,noise 40.70209567,-73.92818606,noise 40.67617398,-73.89281485,noise 40.67821199,-73.97923002,noise 40.74578138,-73.99180051,noise 40.77294254,-73.98392288,noise 40.70223262,-73.80812657,noise 40.76011649,-73.98483562,noise 40.76062148,-73.98458282,noise 40.76079439,-73.98451059,noise 40.74966302,-73.88504523,noise 40.78103309,-73.95131142,noise 40.85552544,-73.93108582,noise 40.86637626,-73.92825812,noise 40.86637626,-73.92825812,noise 40.86564533,-73.92693205,noise 40.76546009,-73.98198973,noise 40.70505476,-73.9559186,noise 40.85513626,-73.93687724,noise 40.76330097,-73.92820671,noise 40.70273581,-73.93378282,noise 40.63555239,-73.97802189,noise 40.70547174,-73.94290878,noise 40.73434974,-74.00300933,noise 40.83050507,-73.94746295,noise 40.76330097,-73.92820671,noise 40.76330097,-73.92820671,noise 40.72277419,-73.98517963,noise 40.76160747,-73.99031494,noise 40.69247763,-73.85938942,noise 40.75737944,-73.96860406,noise 40.68193069,-73.97673748,noise 40.72176776,-73.99635269,noise 40.81200744,-73.95150551,noise 40.74934479,-73.9769377,noise 40.84276852,-73.93670827,noise 40.8390628,-73.9412076,noise 40.76330097,-73.92820671,noise 40.78836427,-73.97824951,noise 40.85180412,-73.93192829,noise 40.66788135,-73.95345952,noise 40.85180412,-73.93192829,noise 40.72116616,-73.98868657,noise 40.84276852,-73.93670827,noise 40.85533462,-73.93331279,noise 40.76330097,-73.92820671,noise 40.69327694,-73.97381259,noise 40.76330097,-73.92820671,noise 40.72176776,-73.99635269,noise 40.75090233,-73.98448041,noise 40.85072806,-73.93650912,noise 40.68585026,-73.86501746,noise 40.64018175,-73.95530567,noise 40.59812047,-73.96278419,noise 40.59812047,-73.96278419,noise 40.76330097,-73.92820671,noise 40.78103309,-73.95131142,noise 40.74985425,-73.98793822,noise 40.72566263,-73.99984847,noise 40.84783536,-73.94213961,noise 40.77419816,-73.91308152,noise 40.71102555,-73.95841794,noise 40.77419816,-73.91308152,noise 40.75873427,-73.86009782,noise 40.76861829,-73.92507457,noise 40.74238268,-73.87090067,noise 40.8571179,-73.90482501,noise 40.76516846,-73.81906763,noise 40.59645556,-73.97803836,noise 40.88956351,-73.89903879,noise 40.76330097,-73.92820671,noise 40.72887789,-73.98080536,noise 40.8390628,-73.9412076,noise 40.802489,-73.96799402,noise 40.72890861,-73.98431956,noise 40.70273581,-73.93378282,noise 40.7217346,-73.99199828,noise 40.7623246,-73.9764531,noise 40.703086,-73.9081394,noise 40.7026636,-73.94242069,noise 40.75444761,-73.93013645,noise 40.72477819,-73.98794997,noise 40.76750843,-73.91203971,noise 40.72003253,-73.98823583,noise 40.79502253,-73.9442369,noise 40.70273581,-73.93378282,noise 40.72349367,-73.98825325,noise 40.6187701,-74.00025575,noise 40.71881923,-73.98712494,noise 40.71763107,-73.99047284,noise 40.71899008,-74.00330806,noise 40.74527188,-73.97844042,noise 40.75800513,-73.96819227,noise 40.85654487,-73.92846393,noise 40.72326039,-73.98843007,noise 40.70572238,-73.95074245,noise 40.71899008,-74.00330806,noise 40.82144605,-73.95037859,noise 40.70254531,-73.90480405,noise 40.72349367,-73.98825325,noise 40.82964818,-73.94630008,noise 40.7623246,-73.9764531,noise 40.75926849,-73.97114798,noise 40.72349367,-73.98825325,noise 40.71461498,-73.99959599,noise 40.74527188,-73.97844042,noise 40.78084021,-73.94957114,noise 40.82000567,-73.95887372,noise 40.72349367,-73.98825325,noise 40.84413857,-73.93751656,noise 40.76791715,-73.98571472,noise 40.80285303,-73.95650039,noise 40.72136411,-73.99266213,noise 40.72718781,-73.98557191,noise 40.72718781,-73.98557191,noise 40.76045412,-73.91527612,noise 40.68271767,-73.96328141,noise 40.7648305,-73.91699251,noise 40.81431803,-73.94440859,noise 40.6219442,-74.03167085,noise 40.71901757,-73.95643966,noise 40.76011682,-73.98767285,noise 40.75565695,-73.88443932,noise 40.74361478,-73.98282205,noise 40.67486925,-73.98154192,noise 40.67725097,-73.95784775,noise 40.69333284,-73.96702951,noise 40.74361478,-73.98282205,noise 40.81453554,-73.95914444,noise 40.8512885,-73.89878603,noise 40.72136411,-73.99266213,noise 40.64269519,-73.96977506,noise 40.72136411,-73.99266213,noise 40.71915709,-74.01033185,noise 40.71901757,-73.95643966,noise 40.73029441,-73.98223737,noise 40.73029441,-73.98223737,noise 40.72417851,-73.9788008,noise 40.72642524,-73.99001338,noise 40.68718749,-73.91798339,noise 40.71117221,-73.94211395,noise 40.68001114,-73.9426782,noise 40.60980282,-73.97472412,noise 40.73915309,-74.00112587,noise 40.66253489,-73.94791243,noise 40.67413684,-73.95380845,noise 40.67413684,-73.95380845,noise 40.67413684,-73.95380845,noise 40.7221652,-73.98815969,noise 40.76151807,-73.92573593,noise 40.67413684,-73.95380845,noise 40.71758787,-73.95731359,noise 40.59339823,-73.95929415,noise 40.85783979,-73.9320414,noise 40.83627203,-73.8896261,noise 40.71102555,-73.95841794,noise 40.70212373,-73.90958335,noise 40.77815404,-73.89423218,noise 40.74596599,-73.89990241,noise 40.67674215,-74.01089129,noise 40.86781699,-73.92362504,noise 40.75817977,-73.96467643,noise 40.71461498,-73.99959599,noise 40.70247911,-73.92687285,noise 40.69247763,-73.85938942,noise 40.71522127,-73.99171409,noise 40.64018175,-73.95530567,noise 40.68499671,-73.86744578,noise 40.72830938,-73.97883917,noise 40.67072307,-73.99162228,noise 40.67413684,-73.95380845,noise 40.71555323,-73.98975529,noise 40.71979651,-73.98851004,noise 40.71575091,-73.99037932,noise 40.7623246,-73.9764531,noise 40.74078072,-74.00176103,noise 40.72916768,-74.00119065,noise 40.72916768,-74.00119065,noise 40.86292586,-73.92776655,noise 40.76346859,-73.99281632,noise 40.70930472,-73.90699824,noise 40.74527188,-73.97844042,noise 40.86292586,-73.92776655,noise 40.7222742,-73.9820483,noise 40.67486925,-73.98154192,noise 40.66315501,-73.98470988,noise 40.86637626,-73.92825812,noise 40.86637626,-73.92825812,noise 40.72417851,-73.9788008,noise 40.86637626,-73.92825812,noise 40.87091201,-73.89153556,noise 40.77110655,-73.96170913,noise 40.63597511,-73.97814065,noise 40.76386068,-73.98791763,noise 40.73915309,-74.00112587,noise 40.743596,-73.98600864,noise 40.87091201,-73.89153556,noise 40.76555034,-73.96786016,noise 40.84315826,-73.88654259,noise 40.70231844,-73.9093703,noise 40.82427381,-73.95203494,noise 40.84315826,-73.88654259,noise 40.76115165,-73.92364989,noise 40.76115165,-73.92364989,noise 40.83022246,-73.94768359,noise 40.63597511,-73.97814065,noise 40.72072702,-73.98888867,noise 40.70273581,-73.93378282,noise 40.85072806,-73.93650912,noise 40.77619625,-73.94987072,noise 40.71346027,-73.95874828,noise 40.80670673,-73.96484935,noise 40.69726627,-73.96765506,noise 40.63160748,-74.11784258,noise 40.69822499,-73.80633492,noise 40.73295464,-73.98635726,noise 40.74527188,-73.97844042,noise 40.71919324,-73.99984127,noise 40.72785198,-73.9850883,noise 40.85434768,-73.90059963,noise 40.76233478,-73.98980224,noise 40.73416286,-74.00798156,noise 40.71461498,-73.99959599,noise 40.626026,-74.17672214,noise 40.76627668,-73.95641958,noise 40.86586537,-73.92766574,noise 40.81431803,-73.94440859,noise 40.6870299,-73.99366109,noise 40.7623246,-73.9764531,noise 40.6801084,-73.86059446,noise 40.72417851,-73.9788008,noise 40.8446865,-73.94079421,noise 40.84431276,-73.93991266,noise 40.76997974,-73.95751829,noise 40.80015915,-73.94684037,noise 40.72660323,-73.98602303,noise 40.7189536,-73.98611482,noise 40.71742241,-74.01025943,noise 40.72136411,-73.99266213,noise 40.71455156,-73.93789415,noise 40.7170331,-73.95643735,noise 40.75081822,-74.00376079,noise 40.58744597,-73.98918448,noise 40.67956807,-73.88586189,noise 40.67956807,-73.88586189,noise 40.71608341,-74.00142489,noise 40.75233655,-73.86262332,noise 40.84315826,-73.88654259,noise 40.84315826,-73.88654259,noise 40.84436903,-73.93733563,noise 40.70223262,-73.80812657,noise 40.77206625,-73.95889972,noise 40.66864164,-73.98343614,noise 40.71562216,-73.99427522,noise 40.81431803,-73.94440859,noise 40.64894319,-74.00910653,noise 40.76568266,-73.98364305,noise 40.70273581,-73.93378282,noise 40.74544752,-73.97831405,noise 40.76559217,-73.98425316,noise 40.67685075,-73.98015337,noise 40.81453554,-73.95914444,noise 40.72581057,-73.99199058,noise 40.72114459,-73.99370114,noise 40.65683338,-73.96013845,noise 40.75624515,-73.92120466,noise 40.85434768,-73.90059963,noise 40.68266295,-73.99320721,noise 40.61678654,-73.93046423,noise 40.68080314,-73.92606738,noise 40.74934479,-73.9769377,noise 40.81283426,-73.90428142,noise 40.67821199,-73.97923002,noise 40.86292586,-73.92776655,noise 40.74368013,-73.97960297,noise 40.81453554,-73.95914444,noise 40.67985516,-73.96417712,noise 40.72116616,-73.98868657,noise 40.69321061,-73.97187254,noise 40.70514786,-74.00998343,noise 40.67985516,-73.96417712,noise 40.72302104,-73.98381587,noise 40.70399461,-73.92749154,noise 40.70977567,-74.0081662,noise 40.8112604,-73.95038619,noise 40.83501359,-73.94522246,noise 40.83391617,-73.86088291,noise 40.87334609,-73.84952978,noise 40.74303092,-73.98915561,noise 40.63597511,-73.97814065,noise 40.75992974,-73.98409929,noise 40.76316597,-73.98545221,noise 40.74934479,-73.9769377,noise 40.87139697,-73.86473843,noise 40.68187917,-73.7660803,noise 40.7422997,-73.98061023,noise 40.72114459,-73.99370114,noise 40.86895885,-73.91583208,noise 40.72285427,-73.98957017,noise 40.72785198,-73.9850883,noise 40.86895885,-73.91583208,noise 40.83416959,-73.92778332,noise 40.81453554,-73.95914444,noise 40.6781564,-73.94415075,noise 40.70487888,-74.00982469,noise 40.7657348,-73.98360333,noise 40.70624546,-73.91945676,noise 40.85163365,-73.84400868,noise 40.70624546,-73.91945676,noise 40.71758787,-73.95731359,noise 40.70624546,-73.91945676,noise 40.74958703,-73.88591155,noise 40.8645253,-73.92661874,noise 40.80587078,-73.95280676,noise 40.76242266,-73.99028594,noise 40.68033713,-73.96077698,noise 40.72146258,-73.98852418,noise 40.67625573,-73.94156022,noise 40.86637626,-73.92825812,noise 40.71346027,-73.95874828,noise 40.67903383,-73.89557193,noise 40.86637626,-73.92825812,noise 40.71311745,-73.95951322,noise 40.73206339,-74.00144327,noise 40.73029441,-73.98223737,noise 40.86637626,-73.92825812,noise 40.86637626,-73.92825812,noise 40.67642131,-73.95590147,noise 40.77109928,-73.95667637,noise 40.86631495,-73.91859765,noise 40.74934479,-73.9769377,noise 40.72916768,-74.00119065,noise 40.85180412,-73.93192829,noise 40.70223262,-73.80812657,noise 40.69327694,-73.97381259,noise 40.66108808,-73.95359401,noise 40.62221298,-73.94020266,noise 40.81453554,-73.95914444,noise 40.80587078,-73.95280676,noise 40.71522127,-73.99171409,noise 40.86637626,-73.92825812,noise 40.7555644,-73.88521191,noise 40.72787656,-73.98416105,noise 40.86564533,-73.92693205,noise 40.70963675,-73.83002488,noise 40.69822499,-73.80633492,noise 40.73908435,-74.00545255,noise 40.74644833,-73.99146479,noise 40.69409585,-73.93010232,noise 40.7221652,-73.98815969,noise 40.68122226,-73.97540732,noise 40.80938711,-73.95365679,noise 40.76330097,-73.92820671,noise 40.7475205,-73.9824024,noise 40.75854671,-73.91935742,noise 40.63492412,-74.02039982,noise 40.73183514,-73.98980691,noise 40.86895885,-73.91583208,noise 40.76002338,-73.98659357,noise 40.71176537,-73.94268697,noise 40.74136295,-73.92095522,noise 40.71865809,-73.81360953,noise 40.73908435,-74.00545255,noise 40.54938693,-74.15070863,noise 40.70624546,-73.91945676,noise 40.71287692,-73.90517886,noise 40.70796196,-73.94438547,noise 40.7296035,-73.98823774,noise 40.84209085,-73.93720405,noise 40.75283801,-73.86423926,noise 40.71175719,-73.94278797,noise 40.72591485,-74.00834858,noise 40.71881923,-73.98712494,noise 40.71366785,-73.94931535,noise 40.72124619,-73.99457056,noise 40.90367938,-73.8508647,noise 40.87916462,-73.84317384,noise 40.7199886,-73.98809514,noise 40.8260631,-73.93977016,noise 40.65662476,-73.96009532,noise 40.65683338,-73.96013845,noise 40.65778597,-73.95324671,noise 40.69822499,-73.80633492,noise 40.755483,-73.88616134,noise 40.74934479,-73.9769377,noise 40.72985936,-74.00059172,noise 40.71066973,-73.93653431,noise 40.73029441,-73.98223737,noise 40.72591484,-74.00842434,noise 40.68315471,-73.96528585,noise 40.68585026,-73.86501746,noise 40.61897721,-73.92657171,noise 40.71406587,-73.94937276,noise 40.78084021,-73.94957114,noise 40.72114459,-73.99370114,noise 40.76875403,-73.76892686,noise 40.78873125,-73.97426256,noise 40.81453554,-73.95914444,noise 40.72110344,-73.99418095,noise 40.82608506,-73.93977375,noise 40.76750843,-73.91203971,noise 40.73718808,-73.70903451,noise 40.76753863,-73.91203967,noise 40.70963675,-73.83002488,noise 40.7010459,-73.89152701,noise 40.71046385,-73.79365312,noise 40.70624546,-73.91945676,noise 40.76349768,-73.87813729,noise 40.74238268,-73.87090067,noise 40.72286716,-73.90109878,noise 40.79871783,-73.959537,noise 40.73232747,-73.95798249,noise 40.70509894,-73.90601587,noise 40.67922633,-73.96330857,noise 40.7540214,-73.99956687,noise 40.80189077,-73.96842414,noise 40.76349768,-73.87813729,noise 40.86940311,-73.91530725,noise 40.63965237,-74.07550486,noise 40.73997894,-73.92406388,noise 40.7221652,-73.98815969,noise 40.70591192,-73.95108496,noise 40.78084021,-73.94957114,noise 40.73178846,-73.98969145,noise 40.68241996,-73.80760669,noise 40.74948083,-73.88677071,noise 40.69771643,-73.96772697,noise 40.8390628,-73.9412076,noise 40.8390628,-73.9412076,noise 40.85654487,-73.92846393,noise 40.67759046,-73.74478108,noise 40.65598446,-73.92981068,noise 40.71175719,-73.94278797,noise 40.74135013,-73.98131059,noise 40.7623246,-73.9764531,noise 40.72260152,-73.93710739,noise 40.85180412,-73.93192829,noise 40.70318659,-73.92168575,noise 40.87870919,-73.87227046,noise 40.81986557,-73.95852336,noise 40.76080132,-73.93914332,noise 40.76459406,-73.91646214,noise 40.76502017,-73.91738937,noise 40.76115165,-73.92364989,noise 40.82542074,-73.95117416,noise 40.73765444,-74.00220118,noise 40.66315501,-73.98470988,noise 40.63965237,-74.07550486,noise 40.61678654,-73.93046423,noise 40.68271767,-73.96328141,noise 40.78591202,-73.97260615,noise 40.70003229,-73.92930268,noise 40.75667818,-73.9943511,noise 40.67915413,-73.98342993,noise 40.71010746,-73.84870075,noise 40.71521836,-74.01030238,noise 40.74948083,-73.88677071,noise 40.74644833,-73.99146479,noise 40.65662476,-73.96009532,noise 40.67863511,-73.74801105,noise 40.88350707,-73.85608142,noise 40.67127809,-73.95035693,noise 40.77923644,-73.94766588,noise 40.67915413,-73.98342993,noise 40.6440033,-73.97657773,noise 40.68722668,-73.82161566,noise 40.7296035,-73.98823774,noise 40.78515582,-73.97900166,noise 40.81453554,-73.95914444,noise 40.76330097,-73.92820671,noise 40.71071903,-73.93633949,noise 40.83578868,-73.91159167,noise 40.67934096,-73.88657253,noise 40.70381897,-73.94207345,noise 40.71758787,-73.95731359,noise 40.7221652,-73.98815969,noise 40.80015915,-73.94684037,noise 40.87132564,-73.87703574,noise 40.80225484,-73.95693422,noise 40.70148563,-73.91142355,noise 40.76330097,-73.92820671,noise 40.72985936,-74.00059172,noise 40.62874433,-74.07993453,noise 40.67934096,-73.88657253,noise 40.71175719,-73.94278797,noise 40.80400331,-73.95030852,noise 40.755483,-73.88616134,noise 40.86797939,-73.92024792,noise 40.69822499,-73.80633492,noise 40.68829839,-73.95708715,noise 40.6440033,-73.97657773,noise 40.7555644,-73.88521191,noise 40.76330097,-73.92820671,noise 40.80292804,-73.96757482,noise 40.70547174,-73.94290878,noise 40.69694734,-73.90645651,noise 40.65683338,-73.96013845,noise 40.61897721,-73.92657171,noise 40.83800167,-73.83486847,noise 40.80292804,-73.96757482,noise 40.7221652,-73.98815969,noise 40.68815886,-73.81919006,noise 40.79513631,-73.96959389,noise 40.67915413,-73.98342993,noise 40.75283801,-73.86423926,noise 40.73713914,-73.70921876,noise 40.73765444,-74.00220118,noise 40.85533462,-73.93331279,noise 40.64748607,-74.00066306,noise 40.70624307,-73.94301632,noise 40.71948409,-73.99540404,noise 40.73029441,-73.98223737,noise 40.71958002,-73.95586209,noise 40.73765444,-74.00220118,noise 40.85180412,-73.93192829,noise 40.73019007,-73.98198483,noise 40.81453554,-73.95914444,noise 40.73464291,-73.95500055,noise 40.61336789,-73.96302421,noise 40.74644833,-73.99146479,noise 40.80400331,-73.95030852,noise 40.65676202,-73.96013489,noise 40.71153872,-73.94507144,noise 40.72517834,-73.98328499,noise 40.75667818,-73.9943511,noise 40.72116616,-73.98868657,noise 40.70963675,-73.83002488,noise 40.69953029,-73.92977926,noise 40.76753131,-73.92087723,noise 40.67915413,-73.98342993,noise 40.72072702,-73.98888867,noise 40.73249706,-74.00183297,noise 40.76753863,-73.91203967,noise 40.82964818,-73.94630008,noise 40.74644833,-73.99146479,noise 40.66064331,-73.96062997,noise 40.85180412,-73.93192829,noise 40.73029441,-73.98223737,noise 40.71838773,-73.98277083,noise 40.65662476,-73.96009532,noise 40.69328793,-73.97385585,noise 40.65683338,-73.96013845,noise 40.80281899,-73.95367581,noise 40.71703802,-73.9549475,noise 40.755483,-73.88616134,noise 40.72110344,-73.99418095,noise 40.76002338,-73.98659357,noise 40.87412715,-73.88419727,noise 40.68220447,-73.93787741,noise 40.64018175,-73.95530567,noise 40.80237264,-73.96430262,noise 40.64018175,-73.95530567,noise 40.72905789,-74.00020205,noise 40.87132564,-73.87703574,noise 40.86900563,-73.91599111,noise 40.80255392,-73.96470707,noise 40.63902032,-73.91934694,noise 40.65925237,-73.98843036,noise 40.63831144,-73.96852676,noise 40.76359778,-73.99699657,noise 40.82572371,-73.92715293,noise 40.61960115,-74.02782628,noise 40.755483,-73.88616134,noise 40.65531376,-73.91606919,noise 40.68313291,-73.97679475,noise 40.69327694,-73.97381259,noise 40.75448769,-73.97340232,noise 40.75448769,-73.97340232,noise 40.63398588,-73.88354753,noise 40.71961867,-73.99945166,noise 40.71395678,-73.95793275,noise 40.74078072,-74.00176103,noise 40.74443427,-73.97611658,noise 40.7170903,-73.9630316,noise 40.88956351,-73.89903879,noise 40.70277711,-73.92938633,noise 40.74361478,-73.98282205,noise 40.76225281,-73.99571514,noise 40.6807742,-73.96274888,noise 40.71696661,-73.95482851,noise 40.70223262,-73.80812657,noise 40.76672119,-73.91269417,noise 40.74883018,-73.98551309,noise 40.77943673,-73.94750685,noise 40.76494318,-73.91720536,noise 40.88923532,-73.90039556,noise 40.65778597,-73.95324671,noise 40.71884964,-73.98921727,noise 40.68995345,-73.82599316,noise 40.73249706,-74.00183297,noise 40.69328793,-73.97385585,noise 40.70624546,-73.91945676,noise 40.74934479,-73.9769377,noise 40.72101229,-73.98707762,noise 40.73184063,-73.98986103,noise 40.73991339,-74.00079029,noise 40.80712927,-73.94965959,noise 40.76761182,-73.91825619,noise 40.7203378,-73.99968975,noise 40.70223262,-73.80812657,noise 40.67892152,-73.89582809,noise 40.72504502,-73.99708489,noise 40.83391617,-73.86088291,noise 40.70247911,-73.92687285,noise 40.69479963,-73.95416917,noise 40.81431803,-73.94440859,noise 40.64018175,-73.95530567,noise 40.7623246,-73.9764531,noise 40.72972602,-73.98085924,noise 40.72581057,-73.99199058,noise 40.86940311,-73.91530725,noise 40.70273581,-73.93378282,noise 40.8092114,-73.92282171,noise 40.7572323,-73.98979219,noise 40.76386068,-73.98791763,noise 40.71552059,-73.99391089,noise 40.73423145,-73.991571,noise 40.86131045,-73.92123202,noise 40.76627668,-73.95641958,noise 40.727594,-73.98529401,noise 40.72924728,-74.00006494,noise 40.74644833,-73.99146479,noise 40.75578209,-73.883331,noise 40.64018175,-73.95530567,noise 40.70624546,-73.91945676,noise 40.76452119,-73.98077343,noise 40.67985516,-73.96417712,noise 40.65778597,-73.95324671,noise 40.74561937,-73.99081169,noise 40.74238268,-73.87090067,noise 40.81453554,-73.95914444,noise 40.743275,-73.90176859,noise 40.64018175,-73.95530567,noise 40.71366785,-73.94931535,noise 40.67903383,-73.89557193,noise 40.75637977,-73.92551787,noise 40.61678654,-73.93046423,noise 40.65577708,-73.91531536,noise 40.70624546,-73.91945676,noise 40.86469631,-73.91964086,noise 40.77829725,-73.98210541,noise 40.86592029,-73.92770907,noise 40.73713256,-73.99032932,noise 40.70624546,-73.91945676,noise 40.66217506,-73.95370139,noise 40.73723136,-73.99028961,noise 40.65531376,-73.91606919,noise 40.73713256,-73.99032932,noise 40.73597777,-73.7145715,noise 40.75728557,-73.97811528,noise 40.64855964,-73.95745145,noise 40.63037828,-73.97710491,noise 40.87139093,-73.86426478,noise 40.6801084,-73.86059446,noise 40.74238268,-73.87090067,noise 40.75388947,-73.99347065,noise 40.70624546,-73.91945676,noise 40.73531838,-73.99165025,noise 40.86618344,-73.91893043,noise 40.81453554,-73.95914444,noise 40.71961867,-73.99945166,noise 40.74712077,-73.99119042,noise 40.72726727,-73.98449673,noise 40.67482666,-74.00598806,noise 40.73723136,-73.99028961,noise 40.77006131,-73.99077582,noise 40.72581057,-73.99199058,noise 40.74712077,-73.99119042,noise 40.64465626,-73.95663235,noise 40.70624546,-73.91945676,noise 40.81751947,-73.95302972,noise 40.72924728,-74.00006494,noise 40.72972602,-73.98085924,noise 40.71474111,-73.77508413,noise 40.67985516,-73.96417712,noise 40.83142462,-73.82689877,noise 40.63597511,-73.97814065,noise 40.6864564,-73.97477078,noise 40.62432015,-74.02475183,noise 40.63597511,-73.97814065,noise 40.72581057,-73.99199058,noise 40.86888738,-73.91568031,noise 40.743596,-73.98600864,noise 40.74547519,-73.97957716,noise 40.72874574,-73.97853596,noise 40.69479963,-73.95416917,noise 40.72486933,-73.99613966,noise 40.81453554,-73.95914444,noise 40.71843251,-73.99006508,noise 40.77929069,-73.98113385,noise 40.68172437,-73.99620705,noise 40.73306797,-73.99825,noise 40.77860733,-73.98162149,noise 40.71710937,-73.96257345,noise 40.6720147,-73.95998157,noise 40.72699805,-73.98286241,noise 40.65918435,-73.89340802,noise 40.74934479,-73.9769377,noise 40.87412715,-73.88419727,noise 40.61805645,-73.99931562,noise 40.85654487,-73.92846393,noise 40.87412715,-73.88419727,noise 40.87121925,-73.91415151,noise 40.59931454,-73.97290957,noise 40.70573362,-73.92152766,noise 40.7207874,-73.98885619,noise 40.70273581,-73.93378282,noise 40.66081473,-74.00011173,noise 40.70381342,-73.94195083,noise 40.63597511,-73.97814065,noise 40.86955123,-73.91518413,noise 40.73765444,-74.00220118,noise 40.70385718,-73.94164783,noise 40.70753056,-73.78659995,noise 40.70552033,-73.92271454,noise 40.86385196,-73.92523119,noise 40.86631495,-73.91859765,noise 40.74883018,-73.98551309,noise 40.7539237,-73.98057436,noise 40.85050642,-73.93286218,noise 40.69479963,-73.95416917,noise 40.70552033,-73.92271454,noise 40.85072806,-73.93650912,noise 40.70381897,-73.94207345,noise 40.70563554,-73.92260259,noise 40.69822499,-73.80633492,noise 40.73765444,-74.00220118,noise 40.74078072,-74.00176103,noise 40.75415423,-73.98039383,noise 40.73765444,-74.00220118,noise 40.70547174,-73.94290878,noise 40.64018175,-73.95530567,noise 40.74288581,-74.00582817,noise 40.64536966,-74.00647188,noise 40.86546354,-73.86526028,noise 40.70624546,-73.91945676,noise 40.61283368,-74.03364748,noise 40.70552033,-73.92271454,noise 40.61897721,-73.92657171,noise 40.87824782,-73.90301563,noise 40.73812651,-74.00335592,noise 40.70381897,-73.94207345,noise 40.70552033,-73.92271454,noise 40.75415423,-73.98039383,noise 40.70555053,-73.9227145,noise 40.70552033,-73.92271454,noise 40.70552033,-73.92271454,noise 40.85180412,-73.93192829,noise 40.87117509,-73.89110124,noise 40.85368616,-73.93053828,noise 40.85706015,-73.90468411,noise 40.72101229,-73.98707762,noise 40.83627203,-73.8896261,noise 40.74644833,-73.99146479,noise 40.85766247,-73.89353457,noise 40.84289766,-73.94220173,noise 40.76755781,-73.91199994,noise 40.86385196,-73.92523119,noise 40.76004809,-73.986608,noise 40.7057096,-73.92253037,noise 40.70552033,-73.92271454,noise 40.76670463,-73.99267879,noise 40.68585026,-73.86501746,noise 40.74238268,-73.87090067,noise 40.70552033,-73.92271454,noise 40.62405125,-73.96504641,noise 40.81869149,-73.91856919,noise 40.74078072,-74.00176103,noise 40.72579598,-73.98373582,noise 40.85654487,-73.92846393,noise 40.74482073,-73.88449782,noise 40.68261354,-73.99323967,noise 40.83142462,-73.82689877,noise 40.70552033,-73.92271454,noise 40.72517834,-73.98328499,noise 40.803325,-73.95617861,noise 40.72114459,-73.99370114,noise 40.760405,-73.98747426,noise 40.70552033,-73.92271454,noise 40.8390628,-73.9412076,noise 40.65662476,-73.96009532,noise 40.76011682,-73.98767285,noise 40.76444374,-73.97745952,noise 40.70555874,-73.92267842,noise 40.70563554,-73.92260259,noise 40.70097726,-73.9071974,noise 40.77436268,-73.91286829,noise 40.72114459,-73.99370114,noise 40.72349367,-73.98825325,noise 40.62620733,-74.02995089,noise 40.72326039,-73.98843007,noise 40.68585026,-73.86501746,noise 40.73321576,-73.98992216,noise 40.69822499,-73.80633492,noise 40.72844754,-73.98467686,noise 40.70753056,-73.78659995,noise 40.77923644,-73.94766588,noise 40.68894706,-73.85218515,noise 40.70231844,-73.9093703,noise 40.76002338,-73.98659357,noise 40.75444761,-73.93013645,noise 40.69333284,-73.96702951,noise 40.85650354,-73.93276214,noise 40.65662476,-73.96009532,noise 40.63965237,-74.07550486,noise 40.70558618,-73.92267839,noise 40.65683338,-73.96013845,noise 40.81561858,-73.94348264,noise 40.70552033,-73.92271454,noise 40.65662476,-73.96009532,noise 40.84682457,-73.93556225,noise 40.76299834,-73.98387835,noise 40.59645556,-73.97803836,noise 40.66205702,-73.95367624,noise 40.74216134,-74.00075783,noise 40.65914563,-73.99211392,noise 40.72371857,-73.86868559,noise 40.69333284,-73.96702951,noise 40.66205702,-73.95367624,noise 40.70559714,-73.92264231,noise 40.62185786,-73.93822896,noise 40.70544628,-73.92279036,noise 40.71882541,-73.99753249,noise 40.74361478,-73.98282205,noise 40.68138125,-74.00444551,noise 40.65662476,-73.96009532,noise 40.755483,-73.88616134,noise 40.76753863,-73.91203967,noise 40.67959068,-73.90467457,noise 40.69003813,-73.82572249,noise 40.70552033,-73.92271454,noise 40.67915413,-73.98342993,noise 40.7271881,-73.98805056,noise 40.72349367,-73.98825325,noise 40.75283801,-73.86423926,noise 40.75447234,-73.93017974,noise 40.78084021,-73.94957114,noise 40.81561858,-73.94348264,noise 40.64560541,-73.97274304,noise 40.75565695,-73.88443932,noise 40.76299834,-73.98387835,noise 40.69327694,-73.97381259,noise 40.7296035,-73.98823774,noise 40.63555239,-73.97802189,noise 40.8390628,-73.9412076,noise 40.78084021,-73.94957114,noise 40.72110344,-73.99418095,noise 40.71048168,-73.96549165,noise 40.67085414,-73.98491359,noise 40.85533462,-73.93331279,noise 40.85019914,-73.9330866,noise 40.67486925,-73.98154192,noise 40.8893066,-73.9002978,noise 40.7540214,-73.99956687,noise 40.70552033,-73.92271454,noise 40.70624307,-73.94301632,noise 40.71838773,-73.98277083,noise 40.76349768,-73.87813729,noise 40.64029182,-74.0756281,noise 40.69069393,-73.95537999,noise 40.75275417,-73.87253363,noise 40.70552033,-73.92271454,noise 40.66173466,-73.95073168,noise 40.63555239,-73.97802189,noise 40.71710937,-73.96257345,noise 40.82866186,-73.89059267,noise 40.76066686,-73.83348274,noise 40.70552033,-73.92271454,noise 40.75658005,-73.9297516,noise 40.61901245,-73.92587647,noise 40.62874433,-74.07993453,noise 40.74425235,-73.91224003,noise 40.73464291,-73.95500055,noise 40.85701115,-73.93248689,noise 40.86441628,-73.82343252,noise 40.73506048,-74.00663215,noise 40.88956629,-73.89907857,noise 40.76349768,-73.87813729,noise 40.61897721,-73.92657171,noise 40.63723108,-74.1156006,noise 40.70573362,-73.92152766,noise 40.75448769,-73.97340232,noise 40.6800747,-73.94355425,noise 40.73029441,-73.98223737,noise 40.72515206,-74.00315323,noise 40.62405125,-73.96504641,noise 40.8339903,-73.86090444,noise 40.69982043,-73.92012811,noise 40.62874433,-74.07993453,noise 40.70184566,-73.90511882,noise 40.59812047,-73.96278419,noise 40.85180412,-73.93192829,noise 40.70823054,-74.00519033,noise 40.59812047,-73.96278419,noise 40.82996179,-73.94786086,noise 40.76330097,-73.92820671,noise 40.78084021,-73.94957114,noise 40.7296035,-73.98823774,noise 40.76011682,-73.98767285,noise 40.76103624,-73.9870157,noise 40.72306557,-73.98907949,noise 40.71048168,-73.96549165,noise 40.67752327,-73.96814773,noise 40.76294756,-73.97599804,noise 40.7935,-73.94033773,noise 40.76550199,-73.98746608,noise 40.72367186,-73.86864239,noise 40.73733449,-73.70831939,noise 40.72285427,-73.98957017,noise 40.83391617,-73.86088291,noise 40.61678654,-73.93046423,noise 40.76386068,-73.98791763,noise 40.7766141,-73.92152357,noise 40.71838773,-73.98277083,noise 40.77596729,-73.91512641,noise 40.64269519,-73.96977506,noise 40.73506048,-74.00663215,noise 40.71696661,-73.95482851,noise 40.73029441,-73.98223737,noise 40.8512885,-73.89878603,noise 40.74288581,-74.00582817,noise 40.74723744,-73.89150594,noise 40.85330756,-73.93082786,noise 40.81271451,-73.95568111,noise 40.76386068,-73.98791763,noise 40.61655033,-73.93020153,noise 40.74497359,-73.91141626,noise 40.82130084,-73.95792992,noise 40.68579669,-73.91163549,noise 40.76330647,-73.92821392,noise 40.76011682,-73.98767285,noise 40.78464103,-73.97185197,noise 40.75448769,-73.97340232,noise 40.67985516,-73.96417712,noise 40.61897721,-73.92657171,noise 40.84976523,-73.93752573,noise 40.83391617,-73.86088291,noise 40.75283801,-73.86423926,noise 40.70381897,-73.94207345,noise 40.71696661,-73.95482851,noise 40.73419576,-73.99148441,noise 40.74255438,-73.97744167,noise 40.67633068,-73.74113024,noise 40.81431803,-73.94440859,noise 40.72124619,-73.99457056,noise 40.75064724,-73.98579782,noise 40.70624546,-73.91945676,noise 40.73713256,-73.99032932,noise 40.73765444,-74.00220118,noise 40.69536406,-73.90368195,noise 40.70344595,-74.01159534,noise 40.70753056,-73.78659995,noise 40.75557799,-73.88508195,noise 40.70624546,-73.91945676,noise 40.71919324,-73.99984127,noise 40.70753056,-73.78659995,noise 40.61256462,-74.03388146,noise 40.72114459,-73.99370114,noise 40.69074838,-73.92329779,noise 40.70223262,-73.80812657,noise 40.70405784,-73.98657958,noise 40.78214306,-73.91162318,noise 40.78284121,-73.94976823,noise 40.76050951,-73.98960037,noise 40.64018175,-73.95530567,noise 40.70405784,-73.98657958,noise 40.66156997,-73.9507246,noise 40.71522127,-73.99171409,noise 40.67985516,-73.96417712,noise 40.75006808,-73.88119355,noise 40.73765444,-74.00220118,noise 40.64018175,-73.95530567,noise 40.76346859,-73.99281632,noise 40.8850993,-73.90064768,noise 40.71688453,-73.99085533,noise 40.74908619,-73.99389339,noise 40.75064724,-73.98579782,noise 40.68445059,-73.97776059,noise 40.76233478,-73.98980224,noise 40.72116616,-73.98868657,noise 40.72116616,-73.98868657,noise 40.74644833,-73.99146479,noise 40.65918435,-73.89340802,noise 40.75557799,-73.88508195,noise 40.72306557,-73.98907949,noise 40.60471484,-73.97905121,noise 40.72709922,-73.98043787,noise 40.77173769,-73.96124303,noise 40.76761182,-73.91825619,noise 40.73434974,-74.00300933,noise 40.73249706,-74.00183297,noise 40.72914021,-73.99752489,noise 40.67486925,-73.98154192,noise 40.71958002,-73.95586209,noise 40.85180412,-73.93192829,noise 40.73765444,-74.00220118,noise 40.80400001,-73.95566163,noise 40.63597511,-73.97814065,noise 40.81542353,-73.91613461,noise 40.76753863,-73.91203967,noise 40.70817762,-74.01426527,noise 40.65778597,-73.95324671,noise 40.61678654,-73.93046423,noise 40.6901331,-73.9360274,noise 40.71838773,-73.98277083,noise 40.76997974,-73.95751829,noise 40.77214286,-73.9582462,noise 40.72660323,-73.98602303,noise 40.77662374,-73.95485303,noise 40.72116616,-73.98868657,noise 40.7623246,-73.9764531,noise 40.72822197,-73.9812818,noise 40.76494318,-73.91720536,noise 40.7221652,-73.98815969,noise 40.73765444,-74.00220118,noise 40.74078072,-74.00176103,noise 40.81542353,-73.91613461,noise 40.72579598,-73.98373582,noise 40.76942836,-73.91023929,noise 40.76620801,-73.9563005,noise 40.72285427,-73.98957017,noise 40.75018218,-73.86054888,noise 40.73250431,-73.9848383,noise 40.70624546,-73.91945676,noise 40.71838773,-73.98277083,noise 40.86637626,-73.92825812,noise 40.81453554,-73.95914444,noise 40.83701301,-73.88669763,noise 40.86924949,-73.91542314,noise 40.71829162,-73.98247866,noise 40.74078072,-74.00176103,noise 40.71823482,-73.98931116,noise 40.73321576,-73.98992216,noise 40.63037828,-73.97710491,noise 40.70573362,-73.92152766,noise 40.86637626,-73.92825812,noise 40.75565695,-73.88443932,noise 40.70895777,-74.00761785,noise 40.76386068,-73.98791763,noise 40.76066686,-73.83348274,noise 40.68080314,-73.92606738,noise 40.71961867,-73.99945166,noise 40.68172437,-73.99620705,noise 40.68173309,-73.97687095,noise 40.80947766,-73.95357725,noise 40.72860227,-74.00006494,noise 40.70573362,-73.92152766,noise 40.72527812,-73.99242358,noise 40.76761182,-73.91825619,noise 40.60980282,-73.97472412,noise 40.79061014,-73.96916259,noise 40.68172437,-73.99620705,noise 40.86111875,-73.92603322,noise 40.76655892,-73.96292833,noise 40.74078072,-74.00176103,noise 40.81453554,-73.95914444,noise 40.64269519,-73.96977506,noise 40.77662374,-73.95485303,noise 40.6864564,-73.97477078,noise 40.72349367,-73.98825325,noise 40.84382932,-73.88791848,noise 40.83036236,-73.86602154,noise 40.70457742,-73.80209662,noise 40.69333284,-73.96702951,noise 40.70573362,-73.92152766,noise 40.72349367,-73.98825325,noise 40.70362289,-73.93469803,noise 40.64963238,-73.96409965,noise 40.67953518,-73.88590882,noise 40.68926145,-73.85334194,noise 40.72985936,-74.00059172,noise 40.88664373,-73.90965789,noise 40.73506889,-74.00197016,noise 40.8519854,-73.78904995,noise 40.64963238,-73.96409965,noise 40.64963238,-73.96409965,noise 40.68080314,-73.92606738,noise 40.72887515,-73.98084866,noise 40.64550654,-73.95508229,noise 40.83391617,-73.86088291,noise 40.81269154,-73.95312705,noise 40.70223262,-73.80812657,noise 40.73183514,-73.98980691,noise 40.7205353,-73.99466441,noise 40.82187839,-73.95378538,noise 40.81542353,-73.91613461,noise 40.5995808,-73.98996033,noise 40.74078072,-74.00176103,noise 40.76655892,-73.96292833,noise 40.70573362,-73.92152766,noise 40.63419461,-73.96986898,noise 40.72860227,-74.00006494,noise 40.83917804,-73.94113522,noise 40.61128741,-74.0093319,noise 40.69959035,-73.94423377,noise 40.66205702,-73.95367624,noise 40.61805645,-73.99931562,noise 40.73360593,-73.99774483,noise 40.85265556,-73.93291424,noise 40.68080314,-73.92606738,noise 40.8057161,-73.96556148,noise 40.64422979,-74.01490742,noise 40.85050642,-73.93286218,noise 40.71399221,-73.92503497,noise 40.70573362,-73.92152766,noise 40.66073934,-73.93133031,noise 40.65778597,-73.95324671,noise 40.64269519,-73.96977506,noise 40.760405,-73.98747426,noise 40.69959035,-73.94423377,noise 40.85180412,-73.93192829,noise 40.85265556,-73.93291424,noise 40.76808008,-73.79115328,noise 40.65108755,-73.94447252,noise 40.72916768,-73.99903305,noise 40.74916274,-73.88990396,noise 40.64631775,-73.9519899,noise 40.76642432,-73.96258906,noise 40.74964624,-73.99717404,noise 40.7540214,-73.99956687,noise 40.72198996,-73.99339441,noise 40.80545266,-73.96576389,noise 40.76655892,-73.96292833,noise 40.71292039,-73.96115098,noise 40.76011682,-73.98767285,noise 40.69479963,-73.95416917,noise 40.63037828,-73.97710491,noise 40.61567436,-74.03423242,noise 40.81431803,-73.94440859,noise 40.76655892,-73.96292833,noise 40.8057161,-73.96556148,noise 40.69261988,-73.85458585,noise 40.80189077,-73.96842414,noise 40.74934479,-73.9769377,noise 40.7135251,-73.96380191,noise 40.7710846,-73.9082189,noise 40.75577623,-73.93040577,noise 40.80608107,-73.96530843,noise 40.76655892,-73.96292833,noise 40.76655892,-73.96292833,noise 40.74400768,-73.98569458,noise 40.76655892,-73.96292833,noise 40.61336789,-73.96302421,noise 40.83917804,-73.94113522,noise 40.64531666,-73.97054502,noise 40.61336789,-73.96302421,noise 40.73434974,-74.00300933,noise 40.74810817,-73.94735469,noise 40.76464356,-73.91658843,noise 40.66269271,-73.93447137,noise 40.71229922,-73.90039304,noise 40.72630655,-73.98411452,noise 40.74244241,-73.98050554,noise 40.72408245,-73.97885855,noise 40.6798167,-73.97435868,noise 40.86637626,-73.92825812,noise 40.75444761,-73.93013645,noise 40.78884172,-73.81380307,noise 40.72114459,-73.99370114,noise 40.85653097,-73.9327332,noise 40.68585026,-73.86501746,noise 40.71915709,-74.01033185,noise 40.61901245,-73.92587647,noise 40.70573362,-73.92152766,noise 40.743596,-73.98600864,noise 40.75510246,-73.97320355,noise 40.72349367,-73.98825325,noise 40.64520137,-73.97050183,noise 40.83578868,-73.91159167,noise 40.78345666,-73.97808501,noise 40.71406587,-73.94937276,noise 40.7221652,-73.98815969,noise 40.66358936,-73.99108972,noise 40.85659332,-73.8919674,noise 40.71346766,-73.99858238,noise 40.76559217,-73.98425316,noise 40.65520884,-73.95378912,noise 40.76808008,-73.79115328,noise 40.66269271,-73.93447137,noise 40.70573362,-73.92152766,noise 40.69333284,-73.96702951,noise 40.73434974,-74.00300933,noise 40.74231114,-73.9835694,noise 40.74361478,-73.98282205,noise 40.65692084,-73.92609024,noise 40.76348475,-73.98894652,noise 40.66358936,-73.99108972,noise 40.72114459,-73.99370114,noise 40.66335332,-73.99132404,noise 40.73434974,-74.00300933,noise 40.6133322,-73.96301703,noise 40.69972779,-73.95067475,noise 40.69698634,-73.93522383,noise 40.83142462,-73.82689877,noise 40.71938497,-74.00953102,noise 40.65682021,-73.92753921,noise 40.8160255,-73.93945771,noise 40.64965055,-73.96091754,noise 40.72706617,-73.97977402,noise 40.69822499,-73.80633492,noise 40.70427792,-73.93300946,noise 40.68369146,-73.95396408,noise 40.79183093,-73.94531939,noise 40.8025318,-73.96419778,noise 40.77758314,-73.97922791,noise 40.80602816,-73.95514374,noise 40.70386546,-73.9474293,noise 40.85653097,-73.9327332,noise 40.71366785,-73.94931535,noise 40.72349367,-73.98825325,noise 40.86416104,-73.92360032,noise 40.75433495,-73.92992,noise 40.64811863,-73.93100456,noise 40.54996317,-74.15083947,noise 40.71894075,-73.95653712,noise 40.68551301,-73.84161371,noise 40.68080314,-73.92606738,noise 40.74788531,-73.94620719,noise 40.759412,-73.99561425,noise 40.76330097,-73.92820671,noise 40.774292,-73.95126219,noise 40.70573362,-73.92152766,noise 40.67915413,-73.98342993,noise 40.74361478,-73.98282205,noise 40.62025172,-73.92803998,noise 40.79978276,-73.96819759,noise 40.76349768,-73.87813729,noise 40.64018175,-73.95530567,noise 40.76233478,-73.98980224,noise 40.76349768,-73.87813729,noise 40.81250915,-73.90281158,noise 40.70328118,-73.98756795,noise 40.68158489,-73.97696835,noise 40.61478363,-73.93656785,noise 40.72827717,-73.95334157,noise 40.85180412,-73.93192829,noise 40.743596,-73.98600864,noise 40.76056167,-73.9897231,noise 40.73434974,-74.00300933,noise 40.83573106,-73.91162427,noise 40.71817453,-73.99042226,noise 40.70381897,-73.94207345,noise 40.64799659,-73.99847926,noise 40.78417568,-73.97758645,noise 40.74279466,-73.91560894,noise 40.74733466,-73.95504972,noise 40.79978276,-73.96819759,noise 40.69822499,-73.80633492,noise 40.73595507,-73.99047744,noise 40.5227827,-74.23491682,noise 40.85706015,-73.90468411,noise 40.85465602,-73.93704036,noise 40.70573362,-73.92152766,noise 40.69333284,-73.96702951,noise 40.70381897,-73.94207345,noise 40.7107541,-73.96785411,noise 40.88956629,-73.89907857,noise 40.72114459,-73.99370114,noise 40.86637626,-73.92825812,noise 40.73831505,-73.98561642,noise 40.74733466,-73.95504972,noise 40.71919324,-73.99984127,noise 40.7475205,-73.9824024,noise 40.74527188,-73.97844042,noise 40.68782726,-73.98111646,noise 40.7296035,-73.98823774,noise 40.70247911,-73.92687285,noise 40.69822499,-73.80633492,noise 40.73913663,-74.00108618,noise 40.75510246,-73.97320355,noise 40.69283135,-73.85467915,noise 40.72326039,-73.98843007,noise 40.70807123,-73.94332135,noise 40.61714611,-73.94576145,noise 40.8512885,-73.89878603,noise 40.70381897,-73.94207345,noise 40.72114459,-73.99370114,noise 40.76056167,-73.9897231,noise 40.61805645,-73.99931562,noise 40.71838773,-73.98277083,noise 40.74766519,-73.94505609,noise 40.90036738,-73.86728034,noise 40.68740225,-73.98395793,noise 40.76330097,-73.92820671,noise 40.70727997,-73.95387926,noise 40.61805645,-73.99931562,noise 40.70381897,-73.94207345,noise 40.67076507,-73.93441657,noise 40.78768567,-73.97501409,noise 40.63555239,-73.97802189,noise 40.70381897,-73.94207345,noise 40.71484278,-73.99817473,noise 40.85490701,-73.92964414,noise 40.67915413,-73.98342993,noise 40.85737258,-73.88601586,noise 40.74504226,-73.98429411,noise 40.80068587,-73.95250703,noise 40.86955123,-73.91518413,noise 40.82946792,-73.94824789,noise 40.75667818,-73.9943511,noise 40.76011682,-73.98767285,noise 40.68363977,-73.96284102,noise 40.6945135,-73.93084475,noise 40.61520426,-73.96336177,noise 40.82866186,-73.89059267,noise 40.70381897,-73.94207345,noise 40.82959962,-73.94813938,noise 40.86637626,-73.92825812,noise 40.76803149,-73.95893831,noise 40.76330097,-73.92820671,noise 40.65778597,-73.95324671,noise 40.75565695,-73.88443932,noise 40.86637626,-73.92825812,noise 40.64531666,-73.97054502,noise 40.74733466,-73.95504972,noise 40.64520137,-73.97050183,noise 40.8571179,-73.90482501,noise 40.6806071,-73.94337714,noise 40.69742251,-73.93479065,noise 40.6871414,-73.98331616,noise 40.68158489,-73.97696835,noise 40.75565695,-73.88443932,noise 40.72101229,-73.98707762,noise 40.74224368,-73.99888129,noise 40.69464039,-73.84847981,noise 40.85654487,-73.92846393,noise 40.75283801,-73.86423926,noise 40.61678654,-73.93046423,noise 40.69622255,-73.93391551,noise 40.6743274,-73.80540931,noise 40.71838773,-73.98277083,noise 40.73434974,-74.00300933,noise 40.73434974,-74.00300933,noise 40.6571417,-73.91980078,noise 40.71465855,-73.99107207,noise 40.86581797,-73.92648716,noise 40.70415201,-73.93361911,noise 40.82696772,-73.94294184,noise 40.6605783,-73.99063597,noise 40.73112604,-73.98203148,noise 40.70624546,-73.91945676,noise 40.68004147,-73.94295218,noise 40.72408245,-73.97885855,noise 40.68232924,-73.97970827,noise 40.71838773,-73.98277083,noise 40.62874433,-74.07993453,noise 40.67915413,-73.98342993,noise 40.73249706,-74.00183297,noise 40.79186116,-73.94539159,noise 40.63708146,-73.93504778,noise 40.64269519,-73.96977506,noise 40.73183514,-73.98980691,noise 40.7205353,-73.99466441,noise 40.71919324,-73.99984127,noise 40.72072702,-73.98888867,noise 40.57744006,-73.95960266,noise 40.70573362,-73.92152766,noise 40.70624546,-73.91945676,noise 40.8025318,-73.96419778,noise 40.70624307,-73.94301632,noise 40.7148373,-73.99961402,noise 40.67915413,-73.98342993,noise 40.72924728,-74.00006494,noise 40.72572298,-74.00297286,noise 40.73303226,-74.00313917,noise 40.76559217,-73.98425316,noise 40.67689062,-73.96360548,noise 40.70605642,-73.94300566,noise 40.70223262,-73.80812657,noise 40.85238025,-73.93149393,noise 40.76348475,-73.98894652,noise 40.70806236,-73.90488273,noise 40.66250709,-73.96086676,noise 40.83819186,-73.94501385,noise 40.75565695,-73.88443932,noise 40.76386068,-73.98791763,noise 40.72349367,-73.98825325,noise 40.63555239,-73.97802189,noise 40.743596,-73.98600864,noise 40.86637626,-73.92825812,noise 40.63249961,-74.08693928,noise 40.6673741,-73.98780534,noise 40.7648305,-73.91699251,noise 40.81542353,-73.91613461,noise 40.85180412,-73.93192829,noise 40.66217506,-73.95370139,noise 40.70624546,-73.91945676,noise 40.72349367,-73.98825325,noise 40.85654487,-73.92846393,noise 40.63330882,-74.02704658,noise 40.71838773,-73.98277083,noise 40.74644833,-73.99146479,noise 40.68080314,-73.92606738,noise 40.61805645,-73.99931562,noise 40.76586534,-73.91337398,noise 40.75064724,-73.98579782,noise 40.7845658,-73.95188299,noise 40.73029441,-73.98223737,noise 40.75444761,-73.93013645,noise 40.63395524,-74.08574862,noise 40.71176537,-73.94268697,noise 40.68232924,-73.97970827,noise 40.78084021,-73.94957114,noise 40.70624546,-73.91945676,noise 40.88674715,-73.85716662,noise 40.65958372,-73.93123058,noise 40.68928605,-73.84489331,noise 40.7988449,-73.96190988,noise 40.73434974,-74.00300933,noise 40.76357532,-73.9888707,noise 40.63266441,-74.08678458,noise 40.70573362,-73.92152766,noise 40.74713941,-73.88385861,noise 40.76808008,-73.79115328,noise 40.70624546,-73.91945676,noise 40.7225057,-73.98975061,noise 40.63597511,-73.97814065,noise 40.70381897,-73.94207345,noise 40.70381897,-73.94207345,noise 40.72110344,-73.99418095,noise 40.72581057,-73.99199058,noise 40.74644833,-73.99146479,noise 40.75565695,-73.88443932,noise 40.75444761,-73.93013645,noise 40.74161511,-74.00284727,noise 40.68080314,-73.92606738,noise 40.86165878,-73.92932247,noise 40.76997974,-73.95751829,noise 40.7621841,-73.99361062,noise 40.70223262,-73.80812657,noise 40.72822197,-73.9812818,noise 40.70872939,-73.77898909,noise 40.72628127,-73.98033348,noise 40.68232924,-73.97970827,noise 40.76386068,-73.98791763,noise 40.74498661,-73.9105068,noise 40.65699534,-73.96019241,noise 40.71387984,-73.95769833,noise 40.64269519,-73.96977506,noise 40.74279466,-73.91560894,noise 40.67633068,-73.74113024,noise 40.69283135,-73.85467915,noise 40.65563382,-73.95986165,noise 40.72488035,-74.00261926,noise 40.73325251,-73.95813706,noise 40.7416877,-73.98107593,noise 40.71838773,-73.98277083,noise 40.76761182,-73.91825619,noise 40.72660323,-73.98602303,noise 40.71829162,-73.98247866,noise 40.85654487,-73.92846393,noise 40.76066686,-73.83348274,noise 40.88956907,-73.89912197,noise 40.66959246,-73.99589412,noise 40.76502017,-73.91738937,noise 40.70381897,-73.94207345,noise 40.7710846,-73.9082189,noise 40.80641492,-73.94226231,noise 40.64018175,-73.95530567,noise 40.61678654,-73.93046423,noise 40.62672257,-74.16223473,noise 40.68080314,-73.92606738,noise 40.70624546,-73.91945676,noise 40.86232547,-73.92047162,noise 40.75575619,-73.964786,noise 40.70381897,-73.94207345,noise 40.73434974,-74.00300933,noise 40.63555239,-73.97802189,noise 40.65531376,-73.91606919,noise 40.69593452,-73.90989467,noise 40.72844754,-73.98467686,noise 40.86637626,-73.92825812,noise 40.72068841,-73.98711375,noise 40.63555239,-73.97802189,noise 40.70381897,-73.94207345,noise 40.75607293,-73.88055479,noise 40.64018175,-73.95530567,noise 40.66524566,-73.73681171,noise 40.68782726,-73.98111646,noise 40.72349367,-73.98825325,noise 40.68585026,-73.86501746,noise 40.72349367,-73.98825325,noise 40.83745035,-73.93869013,noise 40.7468511,-73.90140603,noise 40.77419816,-73.91308152,noise 40.85180412,-73.93192829,noise 40.72579598,-73.98373582,noise 40.67500082,-73.94605688,noise 40.6870299,-73.99366109,noise 40.7468511,-73.90140603,noise 40.77638923,-73.97952074,noise 40.7623246,-73.9764531,noise 40.85533462,-73.93331279,noise 40.72058989,-73.99003951,noise 40.76245045,-73.97457233,noise 40.84813895,-73.85615433,noise 40.61128741,-74.0093319,noise 40.72349367,-73.98825325,noise 40.63555239,-73.97802189,noise 40.71102235,-73.95033816,noise 40.75575619,-73.964786,noise 40.6784167,-73.74729442,noise 40.70381897,-73.94207345,noise 40.7207874,-73.98885619,noise 40.72349367,-73.98825325,noise 40.72581057,-73.99199058,noise 40.72822197,-73.9812818,noise 40.90356607,-73.85026083,noise 40.7468511,-73.90140603,noise 40.73250431,-73.9848383,noise 40.74025875,-73.98948806,noise 40.78417568,-73.97758645,noise 40.72653095,-73.72846993,noise 40.75629198,-73.92558654,noise 40.72504755,-73.99228651,noise 40.63419461,-73.96986898,noise 40.74738883,-73.88625457,noise 40.70107987,-73.92356,noise 40.7448016,-73.99330192,noise 40.82939548,-73.8803256,noise 40.76330097,-73.92820671,noise 40.70624546,-73.91945676,noise 40.76808008,-73.79115328,noise 40.69437337,-73.93059968,noise 40.79186116,-73.94539159,noise 40.69217682,-73.90301223,noise 40.79648206,-73.96304891,noise 40.72504755,-73.99228651,noise 40.68910459,-73.95506734,noise 40.70980572,-74.00998773,noise 40.82187839,-73.95378538,noise 40.69362838,-73.96405432,noise 40.70223262,-73.80812657,noise 40.86292586,-73.92776655,noise 40.70381897,-73.94207345,noise 40.72349367,-73.98825325,noise 40.79509569,-73.96219373,noise 40.70624546,-73.91945676,noise 40.76527581,-73.91791611,noise 40.85180412,-73.93192829,noise 40.77860733,-73.98162149,noise 40.82286619,-73.95306569,noise 40.86794106,-73.92038536,noise 40.59275235,-73.95015246,noise 40.73092706,-74.00150098,noise 40.86620047,-73.92805946,noise 40.75771569,-73.8741304,noise 40.81909342,-73.91641179,noise 40.70169627,-73.92181373,noise 40.70223262,-73.80812657,noise 40.61283368,-74.03364748,noise 40.72440629,-73.97860951,noise 40.81453554,-73.95914444,noise 40.76502017,-73.91738937,noise 40.85578733,-73.90557158,noise 40.70381897,-73.94207345,noise 40.69327694,-73.97381259,noise 40.71992215,-73.98343061,noise 40.76761182,-73.91825619,noise 40.76346859,-73.99281632,noise 40.65778597,-73.95324671,noise 40.72908507,-73.99211285,noise 40.64952238,-73.91253762,noise 40.70573362,-73.92152766,noise 40.77214286,-73.9582462,noise 40.66200761,-73.95367267,noise 40.64799659,-73.99847926,noise 40.64440181,-73.9518075,noise 40.66217506,-73.95370139,noise 40.66217506,-73.95370139,noise 40.74734262,-73.8867166,noise 40.68080314,-73.92606738,noise 40.67076507,-73.93441657,noise 40.76103624,-73.9870157,noise 40.82286619,-73.95306569,noise 40.70836494,-73.94336077,noise 40.76389378,-73.92383807,noise 40.7572314,-73.93115503,noise 40.86292586,-73.92776655,noise 40.85533462,-73.93331279,noise 40.7572314,-73.93115503,noise 40.7448016,-73.99330192,noise 40.85654487,-73.92846393,noise 40.70830182,-73.94337165,noise 40.74521022,-73.97246049,noise 40.88923532,-73.90039556,noise 40.72409376,-73.98070211,noise 40.75083163,-73.87391964,noise 40.8236031,-73.9496941,noise 40.70753056,-73.78659995,noise 40.72349367,-73.98825325,noise 40.78284121,-73.94976823,noise 40.70430345,-73.92979948,noise 40.73029441,-73.98223737,noise 40.76331469,-73.92819586,noise 40.79747361,-73.93890031,noise 40.7221652,-73.98815969,noise 40.85756814,-73.93217182,noise 40.57943779,-74.10879387,noise 40.72273884,-73.9880261,noise 40.71996962,-73.95544697,noise 40.80285303,-73.95650039,noise 40.61678654,-73.93046423,noise 40.74238268,-73.87090067,noise 40.72116616,-73.98868657,noise 40.76362248,-73.99701462,noise 40.74474367,-73.98938991,noise 40.69464039,-73.84847981,noise 40.72248667,-73.99196933,noise 40.60074503,-74.00051496,noise 40.75444761,-73.93013645,noise 40.73058122,-74.00168499,noise 40.72663629,-73.9480788,noise 40.76330097,-73.92820671,noise 40.61897721,-73.92657171,noise 40.61897721,-73.92657171,noise 40.72860227,-74.00006494,noise 40.79894934,-73.94241687,noise 40.76331469,-73.92819586,noise 40.76331469,-73.92819586,noise 40.76434915,-73.92345851,noise 40.72241709,-73.98314138,noise 40.75555632,-73.88536713,noise 40.75082357,-73.87408568,noise 40.59914641,-73.95355064,noise 40.75083163,-73.87391964,noise 40.76331469,-73.92819586,noise 40.78878613,-73.97422282,noise 40.85180412,-73.93192829,noise 40.69333284,-73.96702951,noise 40.70182652,-73.92367456,noise 40.76559217,-73.98425316,noise 40.67530245,-73.92581751,noise 40.72577238,-74.00293318,noise 40.70403215,-73.93051028,noise 40.7648659,-73.93842844,noise 40.72979621,-74.00213958,noise 40.70872939,-73.77898909,noise 40.74391735,-73.98786712,noise 40.74469471,-73.99706599,noise 40.88213387,-73.90250367,noise 40.8301891,-73.91855512,noise 40.73908435,-74.00545255,noise 40.76331469,-73.92819586,noise 40.79843967,-73.96503792,noise 40.64799659,-73.99847926,noise 40.75510246,-73.97320355,noise 40.75142483,-74.0033205,noise 40.71838773,-73.98277083,noise 40.86581797,-73.92648716,noise 40.8244039,-73.94820124,noise 40.62637478,-74.02987171,noise 40.74238268,-73.87090067,noise 40.71255964,-73.73298528,noise 40.76002338,-73.98659357,noise 40.83942875,-73.93768723,noise 40.75083163,-73.87391964,noise 40.86620047,-73.92805946,noise 40.66064331,-73.96062997,noise 40.72349367,-73.98825325,noise 40.759412,-73.99561425,noise 40.74017566,-73.92691808,noise 40.71359488,-73.95907285,noise 40.61805645,-73.99931562,noise 40.71066973,-73.93653431,noise 40.69437337,-73.93059968,noise 40.67915413,-73.98342993,noise 40.76331469,-73.92819586,noise 40.57975838,-74.10937039,noise 40.71093446,-73.96513432,noise 40.74521022,-73.97246049,noise 40.76272656,-73.9269872,noise 40.76002338,-73.98659357,noise 40.74474367,-73.98938991,noise 40.760393,-73.92200112,noise 40.731465,-74.00313909,noise 40.81536797,-73.94179572,noise 40.73722204,-73.98139114,noise 40.73428366,-73.99249472,noise 40.63283667,-74.02723013,noise 40.79338001,-73.97085872,noise 40.64269519,-73.96977506,noise 40.7397011,-73.98517587,noise 40.70400749,-73.93057522,noise 40.72932139,-74.00000361,noise 40.62637478,-74.02987171,noise 40.72725629,-73.98447148,noise 40.69624121,-73.97347604,noise 40.7303232,-74.00246794,noise 40.75565695,-73.88443932,noise 40.67934096,-73.88657253,noise 40.73058122,-74.00168499,noise 40.72386749,-74.0040082,noise 40.73047143,-74.00204219,noise 40.71244049,-73.73249879,noise 40.72013698,-73.95527009,noise 40.72860227,-74.00006494,noise 40.75607293,-73.88055479,noise 40.76696992,-73.98345862,noise 40.88674715,-73.85716662,noise 40.63083172,-74.07797355,noise 40.76349768,-73.87813729,noise 40.71915709,-74.01033185,noise 40.82187839,-73.95378538,noise 40.67470858,-73.87668084,noise 40.70379404,-73.94730313,noise 40.87373883,-73.88562622,noise 40.72546728,-73.94864614,noise 40.78452187,-73.97947129,noise 40.71144796,-73.95762412,noise 40.72468275,-73.9987048,noise 40.67470858,-73.87668084,noise 40.79774401,-73.94162693,noise 40.79989016,-73.94682253,noise 40.70381897,-73.94207345,noise 40.7263019,-73.94911813,noise 40.7263019,-73.94911813,noise 40.84409061,-73.91415038,noise 40.85490701,-73.92964414,noise 40.84409061,-73.91415038,noise 40.85617998,-73.92871376,noise 40.73233574,-73.97780234,noise 40.85706015,-73.90468411,noise 40.74315645,-73.91870121,noise 40.73858099,-73.98334298,noise 40.79671168,-73.9311142,noise 40.67737313,-73.98611266,noise 40.67984155,-73.85133644,noise 40.90367938,-73.8508647,noise 40.71595365,-73.98672147,noise 40.71595365,-73.98672147,noise 40.72326039,-73.98843007,noise 40.760405,-73.98747426,noise 40.70247911,-73.92687285,noise 40.74754365,-73.99406315,noise 40.76330097,-73.92820671,noise 40.80947766,-73.95357725,noise 40.72116616,-73.98868657,noise 40.73044666,-74.00430446,noise 40.8512885,-73.89878603,noise 40.69822499,-73.80633492,noise 40.74310102,-73.89741304,noise 40.75555632,-73.88536713,noise 40.68188521,-73.87836214,noise 40.73434974,-74.00300933,noise 40.70727997,-73.95387926,noise 40.76072062,-73.98724679,noise 40.77596729,-73.91512641,noise 40.76559217,-73.98425316,noise 40.70573362,-73.92152766,noise 40.73321576,-73.98992216,noise 40.67915413,-73.98342993,noise 40.72349367,-73.98825325,noise 40.74644833,-73.99146479,noise 40.73029441,-73.98223737,noise 40.70547174,-73.94290878,noise 40.61283368,-74.03364748,noise 40.76579016,-73.98728192,noise 40.76412403,-73.98659635,noise 40.71423222,-73.96065963,noise 40.69959035,-73.94423377,noise 40.67413684,-73.95380845,noise 40.70963675,-73.83002488,noise 40.74150525,-73.99527621,noise 40.72116616,-73.98868657,noise 40.66315501,-73.98470988,noise 40.67119234,-73.99044703,noise 40.74444123,-73.98478145,noise 40.71838773,-73.98277083,noise 40.86637626,-73.92825812,noise 40.64265762,-74.00928224,noise 40.72116616,-73.98868657,noise 40.71915709,-74.01033185,noise 40.7623246,-73.9764531,noise 40.66315501,-73.98470988,noise 40.72653095,-73.72846993,noise 40.77596729,-73.91512641,noise 40.74457668,-73.99680615,noise 40.71429943,-73.90948748,noise 40.72924728,-74.00006494,noise 40.74582506,-73.71419729,noise 40.74444123,-73.98478145,noise 40.71838773,-73.98277083,noise 40.72087196,-73.96112831,noise 40.74725134,-73.95259565,noise 40.72653095,-73.72846993,noise 40.72087196,-73.96112831,noise 40.67486925,-73.98154192,noise 40.72087196,-73.96112831,noise 40.74457668,-73.99680615,noise 40.72306557,-73.98907949,noise 40.63708146,-73.93504778,noise 40.76804592,-73.9839385,noise 40.72079514,-73.96122576,noise 40.81986557,-73.95852336,noise 40.61907282,-74.03286537,noise 40.86637626,-73.92825812,noise 40.72408245,-73.97885855,noise 40.73029441,-73.98223737,noise 40.72079514,-73.96122576,noise 40.67119234,-73.99044703,noise 40.67915413,-73.98342993,noise 40.64799659,-73.99847926,noise 40.74145859,-73.99520404,noise 40.72032046,-73.96172027,noise 40.67915413,-73.98342993,noise 40.67915413,-73.98342993,noise 40.86592029,-73.92770907,noise 40.76233478,-73.98980224,noise 40.61678654,-73.93046423,noise 40.81986557,-73.95852336,noise 40.76348475,-73.98894652,noise 40.67915413,-73.98342993,noise 40.7652923,-73.91795219,noise 40.68829839,-73.95708715,noise 40.87590295,-73.90195233,noise 40.70612379,-73.92213675,noise 40.64269519,-73.96977506,noise 40.8112661,-73.95780983,noise 40.67915413,-73.98342993,noise 40.67486925,-73.98154192,noise 40.65683338,-73.96013845,noise 40.71164405,-73.9472861,noise 40.71838773,-73.98277083,noise 40.62874433,-74.07993453,noise 40.67915413,-73.98342993,noise 40.65981773,-73.98783916,noise 40.63076667,-74.01445768,noise 40.62037522,-74.12361141,noise 40.63628779,-73.97699479,noise 40.65778597,-73.95324671,noise 40.71838773,-73.98277083,noise 40.67076507,-73.93441657,noise 40.76808008,-73.79115328,noise 40.82187839,-73.95378538,noise 40.70381897,-73.94207345,noise 40.74713941,-73.88385861,noise 40.70223262,-73.80812657,noise 40.70381897,-73.94207345,noise 40.61767041,-74.0857277,noise 40.5983312,-73.96093318,noise 40.64018175,-73.95530567,noise 40.7226142,-73.97991607,noise 40.76761182,-73.91825619,noise 40.72513285,-73.99701273,noise 40.82155481,-73.95454435,noise 40.85203456,-73.93173286,noise 40.86111875,-73.92603322,noise 40.72114459,-73.99370114,noise 40.69822499,-73.80633492,noise 40.72114459,-73.99370114,noise 40.66217506,-73.95370139,noise 40.76627668,-73.95641958,noise 40.75416272,-73.96905314,noise 40.5995808,-73.98996033,noise 40.77212639,-73.929941,noise 40.75228836,-73.983982,noise 40.72349367,-73.98825325,noise 40.86592029,-73.92770907,noise 40.73434974,-74.00300933,noise 40.64018175,-73.95530567,noise 40.64018175,-73.95530567,noise 40.63561266,-73.9774562,noise 40.86394759,-73.86450774,noise 40.72242119,-73.94999415,noise 40.7623246,-73.9764531,noise 40.68944496,-73.9551212,noise 40.67915413,-73.98342993,noise 40.73295464,-73.98635726,noise 40.75050236,-73.86203881,noise 40.64018175,-73.95530567,noise 40.85032261,-73.93301057,noise 40.67915413,-73.98342993,noise 40.76997974,-73.95751829,noise 40.65683338,-73.96013845,noise 40.86581797,-73.92648716,noise 40.72116616,-73.98868657,noise 40.74463005,-73.98099931,noise 40.73321576,-73.98992216,noise 40.68723335,-73.95690033,noise 40.70753056,-73.78659995,noise 40.65778597,-73.95324671,noise 40.80947766,-73.95357725,noise 40.7845658,-73.95188299,noise 40.69485439,-73.95382655,noise 40.7600126,-73.9884273,noise 40.63607941,-73.97816944,noise 40.70381897,-73.94207345,noise 40.70987174,-74.00807243,noise 40.74595183,-73.99800787,noise 40.63831144,-73.96852676,noise 40.65801718,-73.88698723,noise 40.70573362,-73.92152766,noise 40.76761182,-73.91825619,noise 40.68153831,-73.8799672,noise 40.72632722,-73.72704925,noise 40.80938711,-73.95365679,noise 40.84495754,-73.86735836,noise 40.70247911,-73.92687285,noise 40.72116616,-73.98868657,noise 40.62526616,-73.92756266,noise 40.70273581,-73.93378282,noise 40.77340337,-73.91845488,noise 40.77243049,-73.92060785,noise 40.72513285,-73.99701273,noise 40.84038498,-73.8560193,noise 40.70573362,-73.92152766,noise 40.70573362,-73.92152766,noise 40.70605964,-73.83143704,noise 40.73987771,-74.00070729,noise 40.73029441,-73.98223737,noise 40.72860227,-74.00006494,noise 40.7221652,-73.98815969,noise 40.87015945,-73.8909872,noise 40.74599576,-74.00017684,noise 40.7988449,-73.96190988,noise 40.73044666,-74.00430446,noise 40.69479963,-73.95416917,noise 40.89119274,-73.84587255,noise 40.72856929,-74.00308123,noise 40.77243049,-73.92060785,noise 40.81391922,-73.86408937,noise 40.72986179,-73.99143445,noise 40.70223262,-73.80812657,noise 40.73713256,-73.99032932,noise 40.73723136,-73.99028961,noise 40.73713256,-73.99032932,noise 40.73015028,-74.00237051,noise 40.73058122,-74.00168499,noise 40.85829773,-73.85445498,noise 40.69479963,-73.95416917,noise 40.77638923,-73.97952074,noise 40.85203731,-73.93174731,noise 40.85203731,-73.93174731,noise 40.85209219,-73.93171834,noise 40.85209219,-73.93171834,noise 40.72349367,-73.98825325,noise 40.7468511,-73.90140603,noise 40.76242266,-73.99028594,noise 40.74190949,-73.92558817,noise 40.72118252,-73.98757182,noise 40.76330097,-73.92820671,noise 40.72349367,-73.98825325,noise 40.743596,-73.98600864,noise 40.70169627,-73.92181373,noise 40.63555239,-73.97802189,noise 40.743596,-73.98600864,noise 40.76434915,-73.92345851,noise 40.74350339,-73.99422591,noise 40.86292586,-73.92776655,noise 40.71254873,-73.95796249,noise 40.87218451,-73.86933974,noise 40.80703392,-73.93970068,noise 40.64269519,-73.96977506,noise 40.63439291,-74.02745775,noise 40.72985936,-74.00059172,noise 40.71979651,-73.98851004,noise 40.74359008,-73.98278597,noise 40.86292586,-73.92776655,noise 40.86396652,-73.92843426,noise 40.80117228,-73.96145706,noise 40.72358699,-73.98820273,noise 40.68926145,-73.85334194,noise 40.83661647,-73.94517416,noise 40.83661647,-73.94517416,noise 40.73754998,-74.00648806,noise 40.8541375,-73.88695764,noise 40.6936969,-73.80036912,noise 40.72579598,-73.98373582,noise 40.64759218,-74.01468835,noise 40.76627668,-73.95641958,noise 40.71958002,-73.95586209,noise 40.71254873,-73.95796249,noise 40.69822225,-73.80633493,noise 40.60534388,-73.98183485,noise 40.72581057,-73.99199058,noise 40.86895885,-73.91583208,noise 40.81453554,-73.95914444,noise 40.74474367,-73.98938991,noise 40.60349686,-73.95342157,noise 40.74725134,-73.95259565,noise 40.74041294,-73.99999639,noise 40.85930241,-73.89807612,noise 40.84459402,-73.93719807,noise 40.74967088,-73.99529729,noise 40.74991793,-73.99588556,noise 40.71830906,-73.99084431,noise 40.81659709,-73.94078307,noise 40.72839362,-74.00312813,noise 40.82610332,-73.9201319,noise 40.69750288,-73.93616458,noise 40.72985936,-74.00059172,noise 40.81453554,-73.95914444,noise 40.73005973,-73.99936498,noise 40.66217506,-73.95370139,noise 40.70774599,-73.78732064,noise 40.86174377,-73.92482866,noise 40.8244039,-73.94820124,noise 40.8679027,-73.92048664,noise 40.71775427,-73.95461514,noise 40.86292586,-73.92776655,noise 40.61128741,-74.0093319,noise 40.75624515,-73.92120466,noise 40.74934479,-73.9769377,noise 40.67893045,-73.88780625,noise 40.80256199,-73.9641761,noise 40.70956697,-74.00948633,noise 40.64520137,-73.97050183,noise 40.80205707,-73.96453034,noise 40.71093446,-73.96513432,noise 40.86292586,-73.92776655,noise 40.61336789,-73.96302421,noise 40.61128741,-74.0093319,noise 40.79502253,-73.9442369,noise 40.63832071,-73.89582661,noise 40.61128741,-74.0093319,noise 40.7988449,-73.96190988,noise 40.84709229,-73.86681194,noise 40.70830182,-73.94337165,noise 40.83706528,-73.88682041,noise 40.63708146,-73.93504778,noise 40.84682457,-73.93556225,noise 40.72981901,-73.97892168,noise 40.71525722,-73.99741358,noise 40.68232924,-73.97970827,noise 40.7540214,-73.99956687,noise 40.68080314,-73.92606738,noise 40.75603139,-73.97902528,noise 40.71856661,-73.98628445,noise 40.7189536,-73.98611482,noise 40.86179141,-73.89156851,noise 40.779925,-73.95319345,noise 40.74789192,-73.90534918,noise 40.64531666,-73.97054502,noise 40.64334136,-74.00438893,noise 40.79823886,-73.96360415,noise 40.6863616,-73.91459143,noise 40.74658942,-73.9454287,noise 40.72349367,-73.98825325,noise 40.61283368,-74.03364748,noise 40.85203456,-73.93173286,noise 40.72114459,-73.99370114,noise 40.54938693,-74.15070863,noise 40.7448016,-73.99330192,noise 40.75686026,-73.96709552,noise 40.86292077,-73.92003707,noise 40.67984155,-73.85133644,noise 40.72349367,-73.98825325,noise 40.68432691,-73.86978716,noise 40.72242119,-73.94999415,noise 40.70273581,-73.93378282,noise 40.68321658,-73.95387066,noise 40.64445946,-73.95889184,noise 40.75510246,-73.97320355,noise 40.69959035,-73.94423377,noise 40.64799659,-73.99847926,noise 40.75707705,-73.96693659,noise 40.67621823,-73.95597371,noise 40.70547174,-73.94290878,noise 40.73029441,-73.98223737,noise 40.73434974,-74.00300933,noise 40.67985516,-73.96417712,noise 40.83731576,-73.92054849,noise 40.76579016,-73.98728192,noise 40.76052726,-73.91772343,noise 40.70273581,-73.93378282,noise 40.71804586,-73.99603544,noise 40.78417568,-73.97758645,noise 40.78417568,-73.97758645,noise 40.74444123,-73.98478145,noise 40.73321576,-73.98992216,noise 40.7296035,-73.98823774,noise 40.7657348,-73.98360333,noise 40.76494318,-73.91720536,noise 40.8244039,-73.94820124,noise 40.72349367,-73.98825325,noise 40.74444123,-73.98478145,noise 40.76362248,-73.99701462,noise 40.86385196,-73.92523119,noise 40.79924045,-73.9628704,noise 40.67915413,-73.98342993,noise 40.83573106,-73.91162427,noise 40.76330097,-73.92820671,noise 40.70066107,-73.92966987,noise 40.77714218,-73.95406195,noise 40.68682983,-73.96485125,noise 40.86379315,-73.91941418,noise 40.71915709,-74.01033185,noise 40.63708146,-73.93504778,noise 40.84305296,-73.93488282,noise 40.83414249,-73.94311999,noise 40.76233478,-73.98980224,noise 40.82964818,-73.94630008,noise 40.74725134,-73.95259565,noise 40.67915413,-73.98342993,noise 40.7221652,-73.98815969,noise 40.79890019,-73.96311619,noise 40.67915413,-73.98342993,noise 40.68970195,-73.86334734,noise 40.760405,-73.98747426,noise 40.81949682,-73.93804189,noise 40.71153872,-73.94507144,noise 40.67486925,-73.98154192,noise 40.86797939,-73.92024792,noise 40.68080314,-73.92606738,noise 40.70254531,-73.90480405,noise 40.71153872,-73.94507144,noise 40.73913663,-74.00108618,noise 40.73321576,-73.98992216,noise 40.80174149,-73.96475806,noise 40.73249706,-74.00183297,noise 40.6945135,-73.93084475,noise 40.6288775,-73.98042703,noise 40.7212238,-73.98863606,noise 40.743596,-73.98600864,noise 40.76929579,-73.99493849,noise 40.79183093,-73.94531939,noise 40.73945487,-74.00597582,noise 40.73945487,-74.00597582,noise 40.65778597,-73.95324671,noise 40.85193745,-73.92998345,noise 40.81463357,-73.94419156,noise 40.85490701,-73.92964414,noise 40.70366492,-73.94705076,noise 40.76041961,-73.97582929,noise 40.59119012,-73.99216875,noise 40.8546283,-73.89514803,noise 40.60555078,-73.75628193,noise 40.84738877,-73.83119818,noise 40.63597511,-73.97814065,noise 40.70815544,-73.96103112,noise 40.63996704,-74.01567756,noise 40.71696661,-73.95482851,noise 40.7296035,-73.98823774,noise 40.72349367,-73.98825325,noise 40.81453554,-73.95914444,noise 40.80212991,-73.93611842,noise 40.70323894,-73.92613987,noise 40.71295609,-73.96119785,noise 40.85701115,-73.93248689,noise 40.64088241,-73.95725096,noise 40.70547174,-73.94290878,noise 40.76524269,-73.91390546,noise 40.71919324,-73.99984127,noise 40.73913663,-74.00108618,noise 40.71884964,-73.98921727,noise 40.76755781,-73.91199994,noise 40.65045904,-73.95746105,noise 40.68659479,-73.86798707,noise 40.72116616,-73.98868657,noise 40.76330097,-73.92820671,noise 40.7475205,-73.9824024,noise 40.71838773,-73.98277083,noise 40.76121189,-73.98690016,noise 40.61655033,-73.93020153,noise 40.72349367,-73.98825325,noise 40.72787656,-73.98416105,noise 40.81986557,-73.95852336,noise 40.69959035,-73.94423377,noise 40.72349367,-73.98825325,noise 40.88956351,-73.89903879,noise 40.58924884,-74.1015729,noise 40.64600662,-73.99860904,noise 40.67737313,-73.98611266,noise 40.76346859,-73.99281632,noise 40.64520137,-73.97050183,noise 40.76233478,-73.98980224,noise 40.70573362,-73.92152766,noise 40.77216233,-73.92596956,noise 40.64799659,-73.99847926,noise 40.70577209,-73.92158893,noise 40.82964818,-73.94630008,noise 40.75555632,-73.88536713,noise 40.6807742,-73.96274888,noise 40.86182903,-73.92945605,noise 40.68444614,-73.96103416,noise 40.76242266,-73.99028594,noise 40.60471484,-73.97905121,noise 40.71455156,-73.93789415,noise 40.65778597,-73.95324671,noise 40.75593546,-73.96773846,noise 40.70294413,-73.94357096,noise 40.68080314,-73.92606738,noise 40.828203,-73.949145,noise 40.86273225,-73.89691036,noise 40.76011649,-73.98483562,noise 40.76808008,-73.79115328,noise 40.87671687,-73.88026212,noise 40.84367038,-73.91751217,noise 40.71961867,-73.99945166,noise 40.70963675,-73.83002488,noise 40.71346575,-73.95871582,noise 40.7594005,-73.9882036,noise 40.71961867,-73.99945166,noise 40.82964818,-73.94630008,noise 40.74279466,-73.91560894,noise 40.65683338,-73.96013845,noise 40.76066686,-73.83348274,noise 40.72116616,-73.98868657,noise 40.68080314,-73.92606738,noise 40.70963675,-73.83002488,noise 40.62869214,-74.07998491,noise 40.7235816,-73.98916238,noise 40.64520137,-73.97050183,noise 40.62863721,-74.08003528,noise 40.7444672,-73.97610574,noise 40.76627668,-73.95641958,noise 40.72726727,-73.98449673,noise 40.74252091,-74.00051966,noise 40.68080314,-73.92606738,noise 40.73183514,-73.98980691,noise 40.84709229,-73.86681194,noise 40.64018175,-73.95530567,noise 40.75246186,-73.97252246,noise 40.77011968,-73.95740267,noise 40.69324095,-73.97248195,noise 40.69324095,-73.97248195,noise 40.71455156,-73.93789415,noise 40.7845658,-73.95188299,noise 40.73249706,-74.00183297,noise 40.76808008,-73.79115328,noise 40.5995808,-73.98996033,noise 40.70273581,-73.93378282,noise 40.80938711,-73.95365679,noise 40.70381897,-73.94207345,noise 40.86620047,-73.92805946,noise 40.73991339,-74.00079029,noise 40.7168711,-74.00402582,noise 40.72394163,-73.99707051,noise 40.74916274,-73.88990396,noise 40.71961867,-73.99945166,noise 40.7226142,-73.97991607,noise 40.68080314,-73.92606738,noise 40.63597511,-73.97814065,noise 40.82293267,-73.94806509,noise 40.61678654,-73.93046423,noise 40.84481917,-73.8308252,noise 40.71961867,-73.99945166,noise 40.84481917,-73.8308252,noise 40.76012292,-73.99667546,noise 40.80189077,-73.96842414,noise 40.63832071,-73.89582661,noise 40.74279466,-73.91560894,noise 40.7235816,-73.98916238,noise 40.83036236,-73.86602154,noise 40.64018175,-73.95530567,noise 40.86179141,-73.89156851,noise 40.74608287,-73.8985994,noise 40.76808008,-73.79115328,noise 40.76808008,-73.79115328,noise 40.75246186,-73.97252246,noise 40.68111509,-73.99978007,noise 40.5995808,-73.98996033,noise 40.80947766,-73.95357725,noise 40.68080314,-73.92606738,noise 40.72860227,-74.00006494,noise 40.68080314,-73.92606738,noise 40.828203,-73.949145,noise 40.73765444,-74.00220118,noise 40.63037828,-73.97710491,noise 40.65045904,-73.95746105,noise 40.65972716,-73.98791847,noise 40.78412629,-73.97762258,noise 40.74238268,-73.87090067,noise 40.8670152,-73.92310895,noise 40.76330097,-73.92820671,noise 40.60804232,-73.91514902,noise 40.72349367,-73.98825325,noise 40.72873077,-73.85087739,noise 40.72349367,-73.98825325,noise 40.759313,-73.99200099,noise 40.68080314,-73.92606738,noise 40.64799659,-73.99847926,noise 40.60525865,-73.98098135,noise 40.71455156,-73.93789415,noise 40.72116616,-73.98868657,noise 40.67915413,-73.98342993,noise 40.67486925,-73.98154192,noise 40.76349768,-73.87813729,noise 40.64520137,-73.97050183,noise 40.72822197,-73.9812818,noise 40.67789978,-73.96994297,noise 40.78878613,-73.97422282,noise 40.759313,-73.99200099,noise 40.73434974,-74.00300933,noise 40.76863581,-73.9111068,noise 40.72860227,-74.00006494,noise 40.86146109,-73.92921784,noise 40.64520137,-73.97050183,noise 40.759313,-73.99200099,noise 40.74707342,-73.88932276,noise 40.68716729,-73.97475969,noise 40.73434974,-74.00300933,noise 40.71894053,-74.00652232,noise 40.76929579,-73.99493849,noise 40.69069393,-73.95537999,noise 40.76411325,-73.98849517,noise 40.70287771,-73.94245657,noise 40.73753336,-73.99127108,noise 40.74911078,-74.0079617,noise 40.78417568,-73.97758645,noise 40.71894053,-74.00652232,noise 40.67915413,-73.98342993,noise 40.76929579,-73.99493849,noise 40.70963675,-73.83002488,noise 40.76929579,-73.99493849,noise 40.76473626,-73.98803299,noise 40.80854614,-73.9449372,noise 40.74736159,-73.88647115,noise 40.76749529,-73.99626715,noise 40.76929579,-73.99493849,noise 40.68573166,-73.994285,noise 40.68555676,-73.84149102,noise 40.67633068,-73.74113024,noise 40.61906104,-74.00075283,noise 40.76929579,-73.99493849,noise 40.65778597,-73.95324671,noise 40.84276852,-73.93670827,noise 40.69107646,-73.96643564,noise 40.68080314,-73.92606738,noise 40.75575619,-73.964786,noise 40.70380796,-73.94201936,noise 40.73434974,-74.00300933,noise 40.75979023,-73.98792559,noise 40.76473626,-73.98803299,noise 40.77311872,-73.93242753,noise 40.76411325,-73.98849517,noise 40.88923532,-73.90039556,noise 40.76411325,-73.98849517,noise 40.61655033,-73.93020153,noise 40.61675785,-73.93787348,noise 40.72271742,-74.00444827,noise 40.70383481,-73.93097214,noise 40.72278878,-74.00459619,noise 40.8296954,-73.85469461,noise 40.65276799,-73.9304952,noise 40.72349367,-73.98825325,noise 40.73250431,-73.9848383,noise 40.81080343,-73.91895815,noise 40.64467433,-74.07700238,noise 40.82536324,-73.87747838,noise \ No newline at end of file diff --git a/FinalProject/data/graffiti_party_201309.csv b/FinalProject/data/graffiti_party_201309.csv new file mode 100644 index 0000000..db825f6 --- /dev/null +++ b/FinalProject/data/graffiti_party_201309.csv @@ -0,0 +1,5020 @@ +date,Latitude,Longitude,Category +30,40.737877213812936,-73.9768803262364,graffiti +30,40.718541866512254,-73.76508944218301,graffiti +30,40.7111038,-73.7648552,graffiti +30,40.7111038,-73.7648552,graffiti +30,40.735472636006904,-73.73760962360993,graffiti +30,40.676423099898486,-73.9414447099936,graffiti +30,40.6762678902431,-73.94988815289632,graffiti +30,40.67137430209018,-73.93921770633037,graffiti +30,40.677755496292434,-73.94974643035262,graffiti +30,40.677590401466695,-73.94882000788307,graffiti +30,40.69779921182378,-73.95305636159034,graffiti +30,40.67790155020241,-73.93954344101832,graffiti +30,40.67833353998738,-73.94727998260136,graffiti +30,40.70809067576454,-74.00028494428926,graffiti +30,40.75104376658098,-73.87979865271357,graffiti +30,40.684776692789676,-73.85567743547855,graffiti +30,40.707102164361054,-73.93768829167755,graffiti +30,40.742696723539346,-73.92070463500326,graffiti +30,40.68100055227608,-73.86296136379583,graffiti +30,40.82744823108619,-73.88178167450992,graffiti +30,40.607427447247595,-74.09203150051069,graffiti +30,40.727125607746,-73.89335707440847,graffiti +30,40.682079431383194,-73.8702205975783,graffiti +30,40.70169585691467,-73.9253301091004,graffiti +30,40.71402295842265,-73.92589345337545,graffiti +30,40.73744002949111,-73.99109066654937,graffiti +30,40.772637746503364,-73.92687523907338,graffiti +30,40.66371103571303,-73.97760169890397,graffiti +30,40.712121893546495,-73.7937634166431,graffiti +29,40.67985803526406,-73.85135082273436,graffiti +29,40.71893504175922,-73.993438000036,graffiti +29,40.73046279641808,-73.99024369573766,graffiti +29,40.698465519358265,-73.80091383409918,graffiti +29,40.706920413827554,-73.79064516816602,graffiti +29,40.70726667513782,-73.78937086069226,graffiti +29,40.70794149791241,-73.7847086235215,graffiti +29,40.70794190920284,-73.78492864263995,graffiti +29,40.707941443941465,-73.78467976855536,graffiti +29,40.7088226182503,-73.78473463323871,graffiti +29,40.708022796695474,-73.78269210549247,graffiti +29,40.70935722239442,-73.78004745354028,graffiti +29,40.70885655855935,-73.77803643157246,graffiti +29,40.70748201639177,-73.78855502826426,graffiti +29,40.70759625454818,-73.78798838675858,graffiti +29,40.70774068222401,-73.7874216470274,graffiti +29,40.70315577859612,-73.77386450338388,graffiti +29,40.70463417574659,-73.77473591999959,graffiti +29,40.705477424959646,-73.77645349510064,graffiti +29,40.705477424959646,-73.77645349510064,graffiti +29,40.7055347692871,-73.77914394803472,graffiti +29,40.70542546058904,-73.78227858186924,graffiti +29,40.70460672751447,-73.7847771007298,graffiti +29,40.70460398275804,-73.7847771095913,graffiti +29,40.70343439078267,-73.7920699218527,graffiti +29,40.710404994701754,-73.79145301861702,graffiti +29,40.690634389030194,-73.94468118730487,graffiti +29,40.67346256087535,-73.99512601698957,graffiti +29,40.715276462719075,-73.99959237751864,graffiti +29,40.71591598057683,-73.99832981398475,graffiti +29,40.7175161571803,-73.99733773893664,graffiti +29,40.71745298720585,-73.99594889384667,graffiti +29,40.717222446871915,-73.9965477335901,graffiti +29,40.71538897835712,-73.99783923647315,graffiti +29,40.798701207236945,-73.82098465499652,graffiti +28,40.680972221956154,-73.92868112013173,graffiti +28,40.68092006458396,-73.92867035964777,graffiti +28,40.680867907210434,-73.92865959918065,graffiti +28,40.68076633723143,-73.92863807535971,graffiti +28,40.78471015980614,-73.97402939747475,graffiti +28,40.836012851721954,-73.84763022535047,graffiti +28,40.6887106225405,-73.96695606857219,graffiti +28,40.6887106225405,-73.96695606857219,graffiti +28,40.72252405677892,-73.76086163069208,graffiti +28,40.840006,-73.83725059999999,graffiti +28,40.81493260454509,-73.8622665112171,graffiti +28,40.82496244181866,-73.86989495626706,graffiti +28,40.78015560327916,-73.94696827488103,graffiti +28,40.78035041456416,-73.94682729834864,graffiti +28,40.78337277337466,-73.94771318297816,graffiti +28,40.78324061970877,-73.94682499027611,graffiti +28,40.7804437155467,-73.94678389412746,graffiti +27,40.83447483129802,-73.82929397925143,graffiti +27,40.58151419680072,-73.9620806318512,graffiti +27,40.58158270945611,-73.96175658774459,graffiti +27,40.581571747014,-73.96180699482369,graffiti +27,40.63197615710564,-73.96741649342442,graffiti +27,40.62899490141071,-73.9659841080511,graffiti +27,40.631245781507815,-73.96650535761282,graffiti +27,40.62587389186789,-73.96536968029329,graffiti +27,40.62530020468074,-73.96528351997593,graffiti +27,40.62458377411364,-73.96515060466758,graffiti +27,40.621160820509544,-73.96450039498878,graffiti +27,40.6196658,-73.9642859,graffiti +27,40.62511802140852,-73.96203424445919,graffiti +27,40.61394384511596,-73.95415625251417,graffiti +27,40.67993080625616,-73.86126903760595,graffiti +27,40.67991987933286,-73.86131232478452,graffiti +27,40.67946513830436,-73.87153803087588,graffiti +27,40.74686547473227,-73.94301405913224,graffiti +27,40.631950554655184,-74.0024751061385,graffiti +27,40.68595733141272,-73.86504248124417,graffiti +27,40.68594918166144,-73.8651146116656,graffiti +27,40.734445594855586,-73.99235758597095,graffiti +27,40.733830640858834,-73.99061124750011,graffiti +27,40.7367079914686,-73.95770187800358,graffiti +27,40.76211746941206,-73.72992039890399,graffiti +27,40.78169818188679,-73.84206015455098,graffiti +27,40.70186516074308,-73.8817194547595,graffiti +27,40.76139909197343,-73.73259455906282,graffiti +27,40.71655473579482,-73.9017105744513,graffiti +27,40.76180823760858,-73.72914554239902,graffiti +27,40.66402609554729,-73.99757777127984,graffiti +27,40.73221978679448,-74.0039004596796,graffiti +27,40.756049299386035,-73.89887299110352,graffiti +27,40.75083249294145,-73.89383884903098,graffiti +27,40.67600166693157,-73.97526503623519,graffiti +26,40.879903132882696,-73.92140527044693,graffiti +26,40.879903132882696,-73.92140527044693,graffiti +26,40.67135721752603,-73.92859046417041,graffiti +26,40.672863702597844,-73.95491245501579,graffiti +26,40.67473511442677,-73.95359172827452,graffiti +26,40.678719044916285,-73.96490599749806,graffiti +26,40.67785035966591,-73.96076762242132,graffiti +26,40.67773485981508,-73.96012956141308,graffiti +26,40.677759605189124,-73.96025212510801,graffiti +26,40.679413543798894,-73.96513997906148,graffiti +26,40.58112524232758,-73.964611676008,graffiti +26,40.624409070280656,-73.94627428773825,graffiti +26,40.6243188747591,-73.9470993015368,graffiti +26,40.62495540775229,-73.94654042538548,graffiti +26,40.62908423679962,-73.94798897416479,graffiti +26,40.631117910551765,-73.94751543157255,graffiti +26,40.636618706478885,-73.94804435321709,graffiti +26,40.635639622233256,-73.94985741160114,graffiti +26,40.63846724002269,-73.95098666872798,graffiti +26,40.638058328242145,-73.95113109327012,graffiti +26,40.634634916788,-73.94959875627428,graffiti +26,40.6350275928086,-73.94999118030118,graffiti +26,40.63628526655737,-73.9512981301346,graffiti +26,40.63730953509918,-73.95240352338594,graffiti +26,40.638114110691106,-73.95326409229,graffiti +26,40.71473029858885,-73.9498195558953,graffiti +26,40.7499868883985,-73.94431068620187,graffiti +26,40.74720229914514,-73.82868031516496,graffiti +26,40.767812,-73.962014,graffiti +26,40.86923384075472,-73.89934083072487,graffiti +26,40.87406649993626,-73.90165491961852,graffiti +26,40.87569173167496,-73.90209366576633,graffiti +26,40.733387081565894,-73.79459605848314,graffiti +26,40.62482640405298,-74.13180789835533,graffiti +26,40.676571425032556,-73.91518440283599,graffiti +26,40.69042228970674,-73.84080153347469,graffiti +26,40.72419639890167,-73.90868032651315,graffiti +26,40.69588986870814,-73.96341840502372,graffiti +26,40.69514847607302,-73.9624703838622,graffiti +26,40.724336903690215,-74.00150443968211,graffiti +26,40.691319231057086,-73.85058964953623,graffiti +26,40.75596033128412,-73.87787314400533,graffiti +26,40.72647216557685,-73.9937619674883,graffiti +25,40.618800287479914,-73.99909227966971,graffiti +25,40.63218920304708,-73.97408875216654,graffiti +25,40.72661741589792,-73.80502572134401,graffiti +25,40.62876427956575,-73.97677041829874,graffiti +25,40.63009280956115,-73.97702934843504,graffiti +25,40.63004889078019,-73.97701855553534,graffiti +25,40.63377013573454,-73.96370105534326,graffiti +25,40.63892746412587,-73.97325020454049,graffiti +25,40.613610286034344,-74.06576859574837,graffiti +25,40.642989914613246,-73.96382936444958,graffiti +25,40.638440889020565,-73.95363138222415,graffiti +25,40.638435328119755,-73.95345483295318,graffiti +25,40.638469972518735,-73.95095784170387,graffiti +25,40.64460721705282,-73.95761972898069,graffiti +25,40.6176324903398,-73.93138546098298,graffiti +25,40.649147381065035,-73.95841686724519,graffiti +25,40.650429054495454,-73.9580304647232,graffiti +25,40.650437237468836,-73.95788991241758,graffiti +25,40.65044268872125,-73.95778539954311,graffiti +25,40.65423112863618,-73.95956697154148,graffiti +25,40.654272302888934,-73.95957415454795,graffiti +25,40.65637421183081,-73.9344523438765,graffiti +25,40.655171403941004,-73.9563263795762,graffiti +25,40.667417333463064,-73.93124413041524,graffiti +25,40.66194588056164,-73.94443104444983,graffiti +25,40.66197323590493,-73.94423998863002,graffiti +25,40.66196779348075,-73.9443373118857,graffiti +25,40.66073667473221,-73.9607668744665,graffiti +25,40.661417210300066,-73.95299185569479,graffiti +25,40.662593646468025,-73.93403532729832,graffiti +25,40.66259092855059,-73.93408218758248,graffiti +25,40.6626073951539,-73.93407856687891,graffiti +25,40.664749680978886,-73.95375367107181,graffiti +25,40.666293898215564,-73.95111040655145,graffiti +25,40.664213754831046,-73.94587096229941,graffiti +25,40.83006332081046,-73.84427967462106,graffiti +25,40.67431898822877,-73.82049656201559,graffiti +25,40.67431898822877,-73.82049656201559,graffiti +25,40.7151748378707,-73.94956310478396,graffiti +25,40.83290466152549,-73.87145859481177,graffiti +25,40.77795676657093,-73.80919016485579,graffiti +25,40.847264192622575,-73.86831519906161,graffiti +24,40.84281407235268,-73.8674891283494,graffiti +24,40.8435117163791,-73.8679142185582,graffiti +24,40.721913292210786,-74.0000793680321,graffiti +24,40.72024722261868,-73.99950215842597,graffiti +24,40.72030760778209,-73.99962481470573,graffiti +24,40.69025961541156,-73.93648883435269,graffiti +24,40.689757268896884,-73.93639195356847,graffiti +24,40.743247834098256,-73.92818140109817,graffiti +24,40.75252813501491,-73.9494157162682,graffiti +24,40.784853504585094,-73.84124018262494,graffiti +24,40.784853504585094,-73.84124018262494,graffiti +24,40.78485075985614,-73.84124018916957,graffiti +24,40.78485075985614,-73.84124018916957,graffiti +24,40.78475990332266,-73.84920637919484,graffiti +24,40.66699366726908,-73.95076024085245,graffiti +24,40.66871500955577,-73.95866421075247,graffiti +24,40.66846048016713,-73.95340504244923,graffiti +24,40.666794316540454,-73.9313240750938,graffiti +24,40.68048085991984,-73.99335525439923,graffiti +24,40.72069181572596,-74.0036833307103,graffiti +24,40.723027659732736,-74.00099933238656,graffiti +24,40.620395015085606,-74.0001512903362,graffiti +24,40.71274238328885,-73.8272142051277,graffiti +24,40.71297376985496,-73.82776550094265,graffiti +24,40.71919204272897,-73.9607721467413,graffiti +24,40.86355822791701,-73.89369143899951,graffiti +24,40.67971292425055,-73.8298199310271,graffiti +24,40.76671683320617,-73.7390821842318,graffiti +24,40.85702759806117,-73.93245434020675,graffiti +24,40.68693139230857,-73.82235923560621,graffiti +24,40.85701821764317,-73.9305239571885,graffiti +24,40.84540916501091,-73.86866223352436,graffiti +24,40.84588124571518,-73.86865407271793,graffiti +24,40.84556841951162,-73.86871613431438,graffiti +24,40.8443117068799,-73.86903667110944,graffiti +24,40.843607621213856,-73.8701910002689,graffiti +23,40.82100065667617,-73.93754189754921,graffiti +23,40.707808423204995,-73.81728282085363,graffiti +23,40.720814,-73.998797,graffiti +23,40.721828178668645,-73.99755041704641,graffiti +23,40.72014282136555,-73.99516589373526,graffiti +23,40.71886653799078,-73.99593437803522,graffiti +23,40.71872105229102,-73.99557003294149,graffiti +23,40.72298088581767,-73.99480131061674,graffiti +23,40.62749782491805,-73.92780520611929,graffiti +23,40.745569802724894,-73.91220581654024,graffiti +23,40.694035769205186,-73.9679956008644,graffiti +23,40.7211764243987,-73.98288194768796,graffiti +23,40.7566379756688,-73.83376713467301,graffiti +23,40.604694792121606,-73.99935896792775,graffiti +23,40.799117609946684,-73.93871821297957,graffiti +23,40.63236589160434,-74.02088901723114,graffiti +23,40.63245368204143,-74.02112322683058,graffiti +23,40.82152937683535,-73.89169553577955,graffiti +23,40.69448916010014,-73.74684764227943,graffiti +23,40.65481670412286,-73.88147850934618,graffiti +23,40.700102968739785,-73.84270066158163,graffiti +23,40.60111558868207,-73.95652018736612,graffiti +23,40.68762078495481,-73.977687417827,graffiti +23,40.87454739888087,-73.87401048310652,graffiti +23,40.73426099321965,-73.8661317823534,graffiti +23,40.82005851289178,-73.81784534204846,graffiti +22,40.71179116495191,-73.78997698476783,graffiti +22,40.7125272,-73.8011825,graffiti +22,40.6987995,-73.8442611,graffiti +22,40.7101085852056,-73.79451990362605,graffiti +22,40.708894511062894,-73.79867884438491,graffiti +22,40.70801866600521,-73.80168964017858,graffiti +22,40.79568086530529,-73.82743955918686,graffiti +22,40.70519189352527,-73.81169954406738,graffiti +22,40.7049408061749,-73.8125766881158,graffiti +22,40.705186421709016,-73.81171037974634,graffiti +22,40.70493535776445,-73.81260195052499,graffiti +22,40.71102665732693,-73.79526012756051,graffiti +22,40.7098328876688,-73.79537561104837,graffiti +22,40.70972163265757,-73.79455355934181,graffiti +22,40.709779330451376,-73.79458584443015,graffiti +22,40.72625518074252,-73.99144212553452,graffiti +22,40.72528909290444,-73.9923911064088,graffiti +22,40.72374107344088,-73.99275927230175,graffiti +22,40.63204170062381,-74.02251016658266,graffiti +22,40.67714728766126,-73.91083938280717,graffiti +22,40.71926718759929,-73.99398630651304,graffiti +22,40.75454600766829,-73.9170919512058,graffiti +22,40.754592624147975,-73.91703053322748,graffiti +22,40.7091411931965,-73.95457771967162,graffiti +22,40.839556473545,-73.83196254576902,graffiti +22,40.78061902121282,-73.9522324800092,graffiti +22,40.78107469949398,-73.95235853264406,graffiti +22,40.78107469949398,-73.95235853264406,graffiti +22,40.78112957775901,-73.95231877406555,graffiti +22,40.77987252650164,-73.95240994366947,graffiti +22,40.77987252650164,-73.95240994366947,graffiti +21,40.62250300991486,-73.99891932061185,graffiti +21,40.62565402166939,-73.99827083134635,graffiti +21,40.625662255876954,-73.99826002382758,graffiti +21,40.669169663123064,-73.91641583775488,graffiti +21,40.804017423935676,-73.95820091880675,graffiti +20,40.63513491489217,-74.0233218729644,graffiti +20,40.592694389535,-74.08720071544754,graffiti +20,40.5729741476749,-74.11126706609433,graffiti +20,40.87356236149609,-73.8555352540069,graffiti +20,40.87702361736205,-73.90625378505072,graffiti +20,40.66363664551934,-73.95722916767488,graffiti +20,40.716251933704434,-73.95941391307723,graffiti +20,40.694035769205186,-73.9679956008644,graffiti +20,40.829155624984594,-73.87167903139353,graffiti +20,40.62729195218557,-73.9277838136692,graffiti +19,40.802690189888445,-73.91170787225252,graffiti +18,40.82781612360048,-73.94942713508522,graffiti +18,40.78831177991138,-73.97650168911773,graffiti +13,40.69234627698575,-73.76400976813636,graffiti +13,40.72037244373783,-73.76099922341157,graffiti +13,40.69944133877349,-73.93734923531582,graffiti +13,40.83818011398697,-73.82923749043647,graffiti +13,40.792969195190544,-73.94366438978706,graffiti +13,40.77460269403126,-73.91828010644892,graffiti +13,40.77481726540867,-73.91896222866289,graffiti +13,40.61279870349547,-73.98161671398941,graffiti +12,40.630974748140105,-74.1165516907095,graffiti +12,40.72232571802728,-73.97836486187134,graffiti +12,40.72257245228982,-73.97685316652549,graffiti +12,40.64109808134648,-73.98581393192535,graffiti +12,40.72113284927741,-73.74817144389394,graffiti +12,40.61469090942215,-73.9729969821638,graffiti +12,40.774244545588,-73.91272041519709,graffiti +12,40.71387397658659,-73.93858376190086,graffiti +12,40.75866037476562,-73.82967959050642,graffiti +12,40.77125115078012,-73.9037815941594,graffiti +12,40.76045771288152,-73.76269996450013,graffiti +12,40.7586084479514,-73.76843865820878,graffiti +12,40.74928789155985,-73.88875605610747,graffiti +12,40.68044836900158,-73.96529086470719,graffiti +11,40.626724230612325,-74.00791107345371,graffiti +11,40.62795123104115,-74.00665752846751,graffiti +11,40.8248240994328,-73.8763737320188,graffiti +11,40.705793481279144,-73.94414562657207,graffiti +11,40.705793481279144,-73.94414562657207,graffiti +11,40.6770193098597,-73.97233001831667,graffiti +11,40.83796376859636,-73.82589153930273,graffiti +11,40.64795816209156,-73.99841439885536,graffiti +11,40.716741425565395,-73.90176440954363,graffiti +11,40.82975844897582,-73.91512283359656,graffiti +11,40.76978376057405,-73.90843369441832,graffiti +11,40.76228398675649,-73.86534266415404,graffiti +11,40.75360322867131,-73.86145488620241,graffiti +11,40.758661964872104,-73.86389530462692,graffiti +11,40.75217331333222,-73.8570437091487,graffiti +11,40.73032186563183,-73.9529901533884,graffiti +11,40.60621147163309,-73.96080251793254,graffiti +10,40.82976944112113,-73.91514088701179,graffiti +10,40.82973650191419,-73.91513731553589,graffiti +10,40.73557814811241,-73.9226363725584,graffiti +10,40.830353038138,-73.91375616485357,graffiti +10,40.627374790400545,-74.00723387538044,graffiti +10,40.831366424975315,-73.92649269964271,graffiti +10,40.65573262155055,-73.98130214216984,graffiti +10,40.69682580194002,-73.80187439720953,graffiti +10,40.83763798902436,-73.83582344371806,graffiti +10,40.876176759689116,-73.88352112139656,graffiti +10,40.87545202255968,-73.88613312245599,graffiti +10,40.74532953166093,-73.94531785530809,graffiti +10,40.678985398420565,-73.96526999423483,graffiti +10,40.78486630449057,-73.84663867864548,graffiti +10,40.8528407227877,-73.88846719302342,graffiti +10,40.65856820684839,-73.98275384490404,graffiti +10,40.70556885535464,-73.79458799842405,graffiti +10,40.84770215315538,-73.91348788769126,graffiti +10,40.86950166576787,-73.90443848773681,graffiti +10,40.63440958593681,-74.02657144203083,graffiti +10,40.63468134233493,-74.02647427133792,graffiti +10,40.727874046227406,-73.98593616984324,graffiti +10,40.78465972925473,-73.82494400233682,graffiti +10,40.7247695361905,-73.98445763007553,graffiti +10,40.659878279311215,-73.9894863067537,graffiti +10,40.76773930005787,-73.99125267880008,graffiti +09,40.74765629081654,-73.99678074356679,graffiti +09,40.7466050150491,-73.99565479418922,graffiti +09,40.83018151341915,-73.83264388198651,graffiti +09,40.61867162644265,-74.02351063193207,graffiti +09,40.67719943275534,-73.91083210265118,graffiti +09,40.63444801629131,-74.02655704569436,graffiti +09,40.63448919226293,-74.02653904752155,graffiti +09,40.6345276234441,-74.0265210482357,graffiti +09,40.63456605462229,-74.02650304892911,graffiti +09,40.848699125640145,-73.86546050340671,graffiti +09,40.8478227097511,-73.8601273169789,graffiti +09,40.8485837975809,-73.86541736252589,graffiti +09,40.72089390910174,-73.85043676613093,graffiti +09,40.5988073859827,-74.06613932041083,graffiti +09,40.82975534334879,-73.82117934361469,graffiti +09,40.7273447590267,-73.99030548706928,graffiti +09,40.71709344623379,-73.9966523542031,graffiti +09,40.834436068518684,-73.82540207400884,graffiti +09,40.76473538823826,-73.9407786451407,graffiti +09,40.82666970118839,-73.8748960680209,graffiti +09,40.60085874907856,-73.9810402248387,graffiti +09,40.60085874907856,-73.9810402248387,graffiti +09,40.67749383919629,-73.93196920998636,graffiti +09,40.84653058899865,-73.8912861612758,graffiti +09,40.8078232991426,-73.91986846424642,graffiti +09,40.62759458426102,-73.99802941092625,graffiti +09,40.86576420606792,-73.89586802536223,graffiti +09,40.668424428924766,-73.77164276848424,graffiti +09,40.69313087728802,-73.98623198475339,graffiti +09,40.73906252074122,-73.9993288066535,graffiti +08,40.706919756310775,-73.95229611192563,graffiti +08,40.773757259950365,-73.907327044057,graffiti +08,40.77527957994718,-73.90950929671833,graffiti +08,40.847326081844756,-73.89078606814238,graffiti +08,40.630542992191394,-74.02278346618121,graffiti +08,40.724312131196776,-73.99572118752913,graffiti +08,40.72144278431555,-73.98369719968014,graffiti +08,40.716080678095814,-73.99976913138423,graffiti +08,40.716893127028555,-73.99970419598033,graffiti +08,40.71693429836468,-73.99967894421937,graffiti +08,40.71690959562626,-73.99971862537518,graffiti +08,40.71697272494564,-73.99965729981186,graffiti +08,40.660498706451584,-73.9907296981428,graffiti +08,40.6844417310692,-73.86937949748625,graffiti +08,40.59438523903739,-73.96417255883706,graffiti +08,40.66478288021888,-73.7348959095357,graffiti +07,40.71654707578002,-73.99301617549584,graffiti +07,40.719736271386,-73.9900829275514,graffiti +07,40.71590199435813,-73.99204948334776,graffiti +07,40.63204486961878,-74.1221739011385,graffiti +07,40.82948817888914,-73.82963198589968,graffiti +07,40.755525137255404,-73.81496820617797,graffiti +07,40.634484346627914,-74.02358465814592,graffiti +07,40.63327721129456,-74.020611883322,graffiti +07,40.72924248115439,-73.90022338938151,graffiti +07,40.700631546744425,-73.90400613824352,graffiti +07,40.78120788652019,-73.94930004657125,graffiti +07,40.73206278623917,-73.9880929818212,graffiti +06,40.72074950446718,-73.99847399584849,graffiti +06,40.874778257419656,-73.87943394870518,graffiti +06,40.84856183153434,-73.86541017794718,graffiti +06,40.849358375827805,-73.86590737469852,graffiti +06,40.71365681881501,-73.96369362213193,graffiti +06,40.677712233647135,-73.88549012047184,graffiti +06,40.5663925320122,-74.12920912421939,graffiti +06,40.720284578624224,-73.91150679178934,graffiti +06,40.70266722793628,-73.87201267144337,graffiti +06,40.70256427997334,-73.87323550464001,graffiti +06,40.73765747652445,-73.87707312964102,graffiti +06,40.654325914970954,-74.0059429678529,graffiti +06,40.837604664988035,-73.88548234507209,graffiti +06,40.66994079422782,-73.99138806907925,graffiti +05,40.640069355222764,-74.0083954861428,graffiti +05,40.825743583496454,-73.94879277515113,graffiti +05,40.701512586102226,-73.8859253024592,graffiti +05,40.69540051748754,-73.84023068416168,graffiti +05,40.73302368931331,-73.99068713422591,graffiti +05,40.720894637775324,-73.99103515701921,graffiti +05,40.71906940692832,-73.99148273053382,graffiti +05,40.72129272684494,-73.99241320829306,graffiti +05,40.718059438377225,-73.99301240959468,graffiti +05,40.71941521684942,-73.99108946855553,graffiti +05,40.81461839443136,-73.89796030687432,graffiti +05,40.63822497006318,-74.0067017908193,graffiti +05,40.86645170789772,-73.89734929622942,graffiti +05,40.63051556496017,-74.02267897859804,graffiti +05,40.63057042935696,-74.02283751605096,graffiti +05,40.84507977205931,-73.82886557494699,graffiti +05,40.60265255591973,-73.99498353728485,graffiti +05,40.596784735397605,-74.0703143356785,graffiti +05,40.54692888900713,-74.14103113866497,graffiti +05,40.86677515457707,-73.8673220704187,graffiti +05,40.831361062316724,-73.87805635296453,graffiti +05,40.78411658015084,-73.84840258014734,graffiti +05,40.61862346270829,-73.98365747518814,graffiti +05,40.85391091170241,-73.89108251378265,graffiti +05,40.708020865790175,-73.95341706563042,graffiti +04,40.845032310074956,-73.7856745295498,graffiti +04,40.79817488978648,-73.9702281732044,graffiti +04,40.79806503322348,-73.96996817525665,graffiti +04,40.79815566549097,-73.97018484056329,graffiti +04,40.79814742570089,-73.97016317363703,graffiti +04,40.71497160860244,-74.00655078797462,graffiti +04,40.88302431059255,-73.86310186912327,graffiti +04,40.663061202560705,-73.9109879713182,graffiti +04,40.70631818288703,-73.93960423249914,graffiti +04,40.707105169158204,-73.7822298135567,graffiti +04,40.66522076911272,-73.9781490868446,graffiti +04,40.81738142013328,-73.88531121472543,graffiti +04,40.72231372438894,-73.94903098372288,graffiti +04,40.71126972911911,-73.96650843072939,graffiti +04,40.661178887215144,-73.98562583947513,graffiti +04,40.86388391401708,-73.88977188744516,graffiti +04,40.81078703245137,-73.8893287942477,graffiti +04,40.849642766904616,-73.93447515279021,graffiti +04,40.75688742065616,-73.73888606632981,graffiti +04,40.69770148403468,-73.97372068983516,graffiti +04,40.69216578005887,-73.85800896897287,graffiti +04,40.62564345948539,-74.13494363325441,graffiti +04,40.718180409214874,-74.00156562712294,graffiti +04,40.72221517365986,-73.99689020210982,graffiti +04,40.72521237325425,-73.99479031309167,graffiti +03,40.72421592259648,-73.99285663029694,graffiti +03,40.71490587920941,-73.99690857943067,graffiti +03,40.72005219783899,-73.9941630049979,graffiti +03,40.719198559826935,-73.99382036812464,graffiti +03,40.71720040035492,-73.9943183722054,graffiti +03,40.68629697676002,-73.8388895353291,graffiti +03,40.76640045507302,-73.90965132262372,graffiti +03,40.76261940100138,-73.87308510718096,graffiti +03,40.704830128467755,-73.93389615198353,graffiti +03,40.74977734784966,-73.88409221720319,graffiti +03,40.71942960334745,-73.95730519578855,graffiti +03,40.63916864593601,-74.01292094720907,graffiti +03,40.7177316302715,-73.94100078083764,graffiti +03,40.75715965920027,-73.87022591709585,graffiti +03,40.84936119853963,-73.83050641219809,graffiti +03,40.69141438782626,-73.79787700229572,graffiti +03,40.71182081250916,-73.76960397367027,graffiti +03,40.62735580441715,-74.00008285811067,graffiti +03,40.6525745909943,-73.9634854024717,graffiti +03,40.743476107152084,-73.9026452357846,graffiti +03,40.605095534055344,-74.00013324903955,graffiti +02,40.744433908728624,-73.99540953349305,graffiti +02,40.744433908728624,-73.99540953349305,graffiti +02,40.74426099445063,-73.99553585508556,graffiti +02,40.744576681504476,-73.99675563032027,graffiti +02,40.76190269382702,-73.92212569190694,graffiti +02,40.76190269382702,-73.92212569190694,graffiti +02,40.82000631769778,-73.81781658121255,graffiti +02,40.822883897735906,-73.8185204875236,graffiti +02,40.66147320512542,-73.99209561860235,graffiti +02,40.660377944238604,-73.99083063560273,graffiti +02,40.72343915706398,-73.99287114443774,graffiti +02,40.80589207215749,-73.94511277700752,graffiti +01,40.846128162504165,-73.78605773796176,graffiti +01,40.77751691785164,-73.95092042838608,graffiti +01,40.72282751807597,-73.95022834316555,graffiti +01,40.72003860013966,-73.99775611239289,graffiti +01,40.720612239828505,-73.99708869311088,graffiti +30,40.77187827153574,-73.99006794212475,noise +30,40.82796013491953,-73.94620388339955,noise +30,40.68087680012108,-73.94483710367547,noise +30,40.726053954118946,-73.98353371783699,noise +30,40.760099897940044,-73.98395846592294,noise +30,40.80441983687725,-73.95536877183133,noise +30,40.82703833441169,-73.89499638855322,noise +30,40.70278017008348,-73.92990206800742,noise +30,40.67765120434446,-73.94976814040464,noise +30,40.82733478642487,-73.89502121422309,noise +30,40.717280828183625,-73.95832024813635,noise +30,40.71715462268176,-73.9584682296656,noise +30,40.81645343475728,-73.8906849965553,noise +30,40.802108219977434,-73.95395081179247,noise +30,40.80313018139567,-73.95632321513222,noise +30,40.802108219977434,-73.95395081179247,noise +30,40.80313018139567,-73.95632321513222,noise +30,40.802413172251015,-73.95467661306799,noise +30,40.71531993526938,-73.98988518419695,noise +30,40.74883017707221,-73.9855130907178,noise +30,40.76010264469332,-73.98397290408673,noise +30,40.74883017707221,-73.9855130907178,noise +30,40.76879864925556,-73.9552590670563,noise +30,40.69864338327326,-73.9569650821307,noise +30,40.80313018139567,-73.95632321513222,noise +30,40.74883017707221,-73.9855130907178,noise +30,40.80313018139567,-73.95632321513222,noise +30,40.80248233976408,-73.95609608391027,noise +30,40.66919734323511,-73.8964524840768,noise +30,40.68334267445982,-73.9608365021689,noise +30,40.832323200303385,-73.91675292076562,noise +30,40.726053954118946,-73.98353371783699,noise +30,40.69897277545741,-73.95701896546004,noise +30,40.636135371347144,-74.11613915262556,noise +30,40.650145653291624,-74.00507409002483,noise +30,40.802756841173874,-73.9561717552721,noise +30,40.802729417249424,-73.95623317764053,noise +30,40.80246313768708,-73.9561249926064,noise +30,40.71444753045363,-73.99813145292558,noise +30,40.80255102654334,-73.95627663903845,noise +30,40.83811767058312,-73.9448368284078,noise +30,40.636135371347144,-74.11613915262556,noise +30,40.76019873063894,-73.91509596312778,noise +30,40.71444753045363,-73.99813145292558,noise +30,40.80535387167919,-73.96582173847608,noise +30,40.68883365443017,-73.9571661291975,noise +30,40.64846321068645,-74.00075676991113,noise +30,40.82455462640275,-73.94195389629415,noise +30,40.732252732127115,-73.99635211222427,noise +30,40.825171959101354,-73.94150170316254,noise +30,40.802108219977434,-73.95395081179247,noise +30,40.83354449063731,-73.89630150477724,noise +30,40.82619113110836,-73.94326770706512,noise +30,40.747367173880924,-73.88656497971984,noise +30,40.747367173880924,-73.88656497971984,noise +30,40.80279815154175,-73.95654015432075,noise +30,40.802756841173874,-73.9561717552721,noise +30,40.70600210140487,-73.95696754510301,noise +30,40.73713255577926,-73.99032932220675,noise +30,40.827541582305095,-73.9023415699004,noise +30,40.72556247118773,-73.98237572409988,noise +30,40.67843036034174,-74.00891947649279,noise +30,40.731410110423155,-73.99697276049245,noise +30,40.729579201247894,-73.9932601572899,noise +30,40.729579201247894,-73.9932601572899,noise +30,40.73652171957164,-73.87009290804018,noise +30,40.76109628112917,-73.9842578360467,noise +30,40.837566284750594,-73.94546971983863,noise +30,40.68340223337965,-73.97853974020897,noise +30,40.62429808180952,-73.99753598472716,noise +30,40.76167794579087,-73.96045834102597,noise +30,40.704830128467755,-73.93389615198353,noise +30,40.6106328221334,-73.98018026236117,noise +30,40.847998812236256,-73.93469364081751,noise +30,40.84459402200191,-73.93719807347524,noise +30,40.730358830985026,-74.00423951168777,noise +30,40.666853877396065,-73.73671164449333,noise +30,40.598331198937316,-73.96091877384445,noise +30,40.639529600748716,-73.95128855589117,noise +30,40.69822499448377,-73.8063349190269,noise +30,40.639529600748716,-73.95128855589117,noise +30,40.666853877396065,-73.73671164449333,noise +30,40.866232606792565,-73.88615252425572,noise +30,40.63597510716587,-73.97814064814625,noise +30,40.74486371579862,-73.86356621385924,noise +30,40.75592420737431,-73.92149019360906,noise +30,40.75207474241776,-73.8594693541409,noise +30,40.70695321994853,-73.94721406621946,noise +30,40.827008438358305,-73.947769227531,noise +30,40.81239972519553,-73.90324524931965,noise +30,40.85331762554519,-73.90289654577124,noise +30,40.72507372015764,-73.98121053105199,noise +30,40.71796861654425,-73.98974409268143,noise +30,40.639529600748716,-73.95128855589117,noise +30,40.72353758650293,-73.9882207753886,noise +30,40.802465603800336,-73.95539897817372,noise +30,40.69822499448377,-73.8063349190269,noise +29,40.776315972116265,-73.90145266819901,noise +29,40.75729156731307,-73.83400373454384,noise +29,40.72279615751205,-73.98523374271049,noise +29,40.75846662998338,-73.842032219064,noise +29,40.75846662998338,-73.842032219064,noise +29,40.75846662998338,-73.842032219064,noise +29,40.74391734815255,-73.98786711574004,noise +29,40.80314118627853,-73.95639183668378,noise +29,40.74578928442051,-73.98802917671404,noise +29,40.7056885110496,-73.91979286518084,noise +29,40.67669572408374,-73.96354790478537,noise +29,40.83389969051733,-73.94060144276807,noise +29,40.86389109236159,-73.89155423946005,noise +29,40.82290374610653,-73.89688173285657,noise +29,40.67654750057022,-73.96352995988079,noise +29,40.803116456400865,-73.95631961209878,noise +29,40.83663570829023,-73.94521751241632,noise +29,40.66919734323511,-73.8964524840768,noise +29,40.82733204171211,-73.89502121855345,noise +29,40.765790164066146,-73.98728191879162,noise +29,40.86466395741118,-73.92889266248997,noise +29,40.82744170514475,-73.89488373778286,noise +29,40.59233939954095,-73.98439483726067,noise +29,40.724092565020385,-73.99612887803147,noise +29,40.63283666831036,-74.0272301322902,noise +29,40.70031010338543,-73.94553149840216,noise +29,40.82290374610653,-73.89688173285657,noise +29,40.86480864906373,-73.9193623369752,noise +29,40.70872938727516,-73.77898908609201,noise +29,40.72972314720472,-73.95924334561957,noise +29,40.63283666831036,-74.0272301322902,noise +29,40.827102289873764,-73.88167750215054,noise +29,40.69106211274944,-73.99727749372676,noise +29,40.81444200034695,-73.95149289826864,noise +29,40.6644513680047,-73.99332441042543,noise +29,40.726281266809444,-73.98033347711242,noise +29,40.71933772183356,-73.9849278715759,noise +29,40.71933772183356,-73.9849278715759,noise +29,40.854425465926475,-73.8638728544929,noise +29,40.75752222946044,-73.83407535117406,noise +29,40.73234787144493,-73.98493936163591,noise +29,40.72568572771039,-73.98076659391648,noise +29,40.65662476260952,-73.96009532459026,noise +29,40.641186100973265,-73.91955691372603,noise +29,40.754702655195636,-73.84539790515785,noise +29,40.80275152457796,-73.93357496293186,noise +29,40.68383167554659,-73.93222955697205,noise +29,40.803116456400865,-73.95631961209878,noise +29,40.682204468178035,-73.93787740892192,noise +29,40.86618344001468,-73.91893042945345,noise +29,40.803116456400865,-73.95631961209878,noise +29,40.782295188052814,-73.96512583635275,noise +29,40.813483611158375,-73.91696795401911,noise +29,40.87132564461639,-73.87703573678371,noise +29,40.812966968276186,-73.91609074282523,noise +29,40.82571946537405,-73.90953103401384,noise +29,40.72568572771039,-73.98076659391648,noise +29,40.80356743918114,-73.96714105897546,noise +29,40.837173373768685,-73.8672148658693,noise +29,40.758734268604165,-73.86009781919178,noise +29,40.675964982883755,-73.81819203971499,noise +29,40.71933772183356,-73.9849278715759,noise +29,40.66064330544147,-73.96062996504574,noise +29,40.671458627676586,-73.99102377731397,noise +29,40.722247617621264,-73.9888992427031,noise +29,40.639529600748716,-73.95128855589117,noise +29,40.85650353983471,-73.93276214226914,noise +29,40.67163320445269,-73.84605549656025,noise +29,40.71933772183356,-73.9849278715759,noise +29,40.89755816951506,-73.87589482062671,noise +29,40.71933772183356,-73.9849278715759,noise +29,40.639529600748716,-73.95128855589117,noise +29,40.76889103158107,-73.98209349413949,noise +29,40.717950406521275,-73.95792662022473,noise +29,40.73595506911933,-73.99047743742598,noise +29,40.80275152457796,-73.93357496293186,noise +29,40.82599151397112,-73.89683720160572,noise +29,40.82634975075743,-73.89844095252168,noise +29,40.73428366340385,-73.99249472023192,noise +29,40.75889846062464,-73.87145341827836,noise +29,40.8258487695958,-73.90991747861176,noise +29,40.721749423826125,-73.97893144671538,noise +29,40.82923392664246,-73.8755055349958,noise +29,40.682803129436444,-74.00004687178563,noise +29,40.73416286221032,-74.00798156190001,noise +29,40.743101024032356,-73.89741304204851,noise +29,40.694898192257945,-73.93155477168918,noise +29,40.73321575770277,-73.98992215843091,noise +29,40.74102761680456,-73.99416116738729,noise +29,40.86618344001468,-73.91893042945345,noise +29,40.68400807258143,-74.0016477533147,noise +29,40.682970558841944,-74.00062736239825,noise +29,40.68198237624557,-73.9960952677624,noise +29,40.58740437562875,-73.8098210348053,noise +29,40.58740437562875,-73.8098210348053,noise +29,40.768045923534714,-73.98393850130176,noise +29,40.803116456400865,-73.95631961209878,noise +29,40.735977019046786,-73.99038000750797,noise +29,40.71380989584407,-73.9617492581918,noise +29,40.76492947006274,-73.91721981443195,noise +29,40.58740437562875,-73.8098210348053,noise +29,40.721558674533476,-73.98880916698917,noise +29,40.83089018370784,-73.94347328611317,noise +29,40.68419024828752,-73.87029581273508,noise +29,40.587565936495416,-73.81125352932968,noise +29,40.73350709203196,-74.00341341918667,noise +29,40.83680331008733,-73.94558598899529,noise +29,40.769631252364256,-73.95776761281374,noise +29,40.81119421810132,-73.94374288773336,noise +29,40.83774409306219,-73.83136721182622,noise +29,40.79590071322539,-73.94992811831287,noise +29,40.69357090968229,-73.96460247964477,noise +29,40.86233045538343,-73.91974855904473,noise +29,40.79551113058149,-73.95031846703428,noise +29,40.782295188052814,-73.96512583635275,noise +29,40.846824566501674,-73.93556225282458,noise +29,40.72177060245684,-73.9438616641907,noise +29,40.72567368056484,-73.94392692528147,noise +29,40.735960838182784,-74.0051275341305,noise +29,40.7215441331151,-73.98229381152231,noise +29,40.77368111018188,-73.97108757762167,noise +29,40.62693141835579,-74.07790054905978,noise +29,40.72561631687134,-73.94449701211244,noise +29,40.762966330545105,-73.9739692885707,noise +29,40.6393164277921,-74.01635119587836,noise +29,40.714186621216804,-74.0062945982317,noise +29,40.87555239314568,-73.90616907594044,noise +29,40.6938641471911,-73.96315987579382,noise +29,40.764793227598936,-73.77161559109305,noise +29,40.8547965153785,-73.93798370619793,noise +29,40.826425872802844,-73.9525320205134,noise +29,40.763998480380394,-73.99600382142562,noise +29,40.71364601891756,-74.00360358316793,noise +29,40.62693141835579,-74.07790054905978,noise +29,40.775416224089746,-73.91982802886187,noise +29,40.74705161330763,-73.88665213308,noise +29,40.74705161330763,-73.88665213308,noise +29,40.72167835425236,-73.98060540727589,noise +29,40.76943954754253,-73.9518578159899,noise +29,40.83620056229829,-73.94218224864659,noise +29,40.763497684804435,-73.87813728505814,noise +29,40.758734268604165,-73.86009781919178,noise +29,40.849748679731434,-73.93738116442182,noise +29,40.88046702754135,-73.88383183457583,noise +29,40.7158281059634,-74.0035387695921,noise +29,40.715583836772666,-74.00303012799506,noise +29,40.715583836772666,-74.00303012799506,noise +29,40.715583836772666,-74.00303012799506,noise +29,40.715583836772666,-74.00303012799506,noise +29,40.715583836772666,-74.00303012799506,noise +29,40.715583836772666,-74.00303012799506,noise +29,40.715583836772666,-74.00303012799506,noise +29,40.71111075564476,-73.9455371008481,noise +29,40.619784706002385,-73.9851016401842,noise +29,40.744646850751145,-73.98309966707103,noise +29,40.65146751036174,-73.93617619127899,noise +29,40.71922842896598,-73.96289693860493,noise +29,40.740984939437595,-73.98048070110619,noise +29,40.832266550633456,-73.88864622706053,noise +29,40.670205308317655,-73.93975228823545,noise +29,40.83017836049892,-73.87573864614123,noise +29,40.65672500402015,-74.00086138289596,noise +29,40.77350815832289,-73.91167435425929,noise +29,40.8523768058158,-73.93502912550512,noise +29,40.757734803396936,-73.79402646373221,noise +29,40.765790164066146,-73.98728191879162,noise +29,40.801515645553465,-73.96229483182476,noise +29,40.85702748211805,-73.9277331922969,noise +29,40.741028577503464,-73.92167374506798,noise +29,40.71522156137929,-73.99874466808255,noise +29,40.73947591814615,-73.87084134399392,noise +29,40.72072702034195,-73.98888867325437,noise +29,40.741028577503464,-73.92167374506798,noise +29,40.639529600748716,-73.95128855589117,noise +29,40.639529600748716,-73.95128855589117,noise +29,40.84145054672216,-73.9357734631567,noise +29,40.74736157770696,-73.8864567186804,noise +29,40.80293681676738,-73.96956142995137,noise +29,40.82392981824611,-73.93856167516851,noise +29,40.806559137302855,-73.96695897075747,noise +29,40.81726755137458,-73.94225650251605,noise +29,40.805922495981584,-73.96743248386227,noise +29,40.85623771170069,-73.92886552195142,noise +29,40.693183842767276,-73.99858641533734,noise +29,40.76494318338899,-73.91720535750666,noise +29,40.756182262729766,-73.93008770681998,noise +29,40.692997199564864,-73.99867657112512,noise +29,40.71779714807747,-73.959171275293,noise +29,40.76494318338899,-73.91720535750666,noise +29,40.74555719791759,-73.97774741036771,noise +29,40.58400047104901,-73.9361290616721,noise +29,40.69822499448377,-73.8063349190269,noise +29,40.58073896590756,-73.8339529452123,noise +29,40.68792130606788,-73.96188670630414,noise +29,40.62633744236879,-74.07543576427013,noise +29,40.79845083469181,-73.93908361724861,noise +29,40.71877756809854,-73.96072549360119,noise +29,40.84195852025513,-73.93613800175977,noise +29,40.62526615732795,-73.92756265585744,noise +29,40.725978270589856,-74.00133490741577,noise +29,40.794381235376115,-73.93556967595676,noise +29,40.693183842767276,-73.99858641533734,noise +29,40.584850116033806,-73.81903412665736,noise +29,40.851408547926766,-73.88348135765057,noise +29,40.75548196260744,-73.81543033748679,noise +29,40.86789114142899,-73.89564053000042,noise +29,40.79840963514378,-73.93902947818485,noise +29,40.85661423645417,-73.92968209691034,noise +29,40.76045412454783,-73.91527612392564,noise +29,40.75729156731307,-73.83400373454384,noise +29,40.68947713718711,-73.9695807716015,noise +29,40.82000567127097,-73.95887372499625,noise +29,40.70369027438798,-73.92802565154707,noise +29,40.60355360609414,-73.97804322594837,noise +29,40.80119567369621,-73.96602975380515,noise +29,40.79799433651715,-73.97264452215498,noise +29,40.72072702034195,-73.98888867325437,noise +29,40.68142274682521,-73.95710238584763,noise +29,40.72612271574114,-73.79059205956656,noise +29,40.584850116033806,-73.81903412665736,noise +29,40.58400047104901,-73.9361290616721,noise +29,40.724837163187665,-73.9783207529914,noise +29,40.73234787144493,-73.98493936163591,noise +29,40.84544018866956,-73.93867915316294,noise +29,40.85766246544737,-73.89353457274466,noise +29,40.64342088819603,-74.005999650878,noise +29,40.85180411937848,-73.93192828614173,noise +29,40.838796219127325,-73.91813258838923,noise +29,40.721133382997756,-73.99042904883964,noise +29,40.63559076024262,-73.97774084423934,noise +29,40.84628832761289,-73.9387253583052,noise +29,40.802928040912455,-73.96757481807968,noise +29,40.675964982883755,-73.81819203971499,noise +29,40.61301907331205,-74.123698641095,noise +29,40.7776711657245,-73.91068673269632,noise +29,40.68187916628095,-73.76608030308165,noise +29,40.8703413179475,-73.89471829860192,noise +29,40.72578708824289,-73.95192542924916,noise +29,40.720625890600495,-73.99497105001717,noise +29,40.67589300793175,-73.94635538853319,noise +29,40.61301907331205,-74.123698641095,noise +29,40.72953107218499,-73.98041550317102,noise +29,40.796518780180065,-73.9345057726516,noise +29,40.75006808277163,-73.88119355123389,noise +29,40.81092586780349,-73.94505443878307,noise +29,40.66152817270108,-73.99322378054383,noise +29,40.777786333726795,-73.97971167389709,noise +29,40.73560606667226,-73.7163231658863,noise +29,40.726878516242536,-74.00312083922584,noise +29,40.72951901371953,-73.99981238142182,noise +29,40.76154468058854,-73.92445081254765,noise +29,40.73560606667226,-73.7163231658863,noise +29,40.7329271840597,-73.98629592674865,noise +29,40.7910071193718,-73.93906875989852,noise +29,40.63559076024262,-73.97774084423934,noise +29,40.75066178373737,-74.00343234416158,noise +29,40.725978270589856,-74.00133490741577,noise +29,40.84171392373743,-73.93556720315208,noise +29,40.88674715264557,-73.85716661604137,noise +29,40.711757186204686,-73.942787970944,noise +29,40.58924883752454,-74.10157290449214,noise +29,40.711379501746045,-73.96644705541848,noise +29,40.70863282186277,-73.92679756889977,noise +29,40.82854733731021,-73.94028823984986,noise +29,40.7056885110496,-73.91979286518084,noise +29,40.71110869150017,-73.953335552524,noise +29,40.78536042083817,-73.97298193186121,noise +29,40.68142274682521,-73.95710238584763,noise +29,40.68593184408236,-73.84280259887626,noise +29,40.82000567127097,-73.95887372499625,noise +29,40.753743910273684,-73.9736227843405,noise +29,40.6926860357071,-73.96131422569016,noise +29,40.85978272320349,-73.92703609580742,noise +29,40.681513486129695,-73.95753858725077,noise +29,40.737533364893906,-73.99127107824816,noise +29,40.71249461345563,-73.78446306035745,noise +29,40.75365602943867,-73.97340986707023,noise +29,40.80200242212738,-73.96535390207741,noise +28,40.75676421229661,-73.96715331852165,noise +28,40.737533364893906,-73.99127107824816,noise +28,40.86321921226703,-73.89514171860421,noise +28,40.589661037108975,-74.06730402271947,noise +28,40.75369447667794,-73.97350008570278,noise +28,40.83820984221358,-73.93722216981025,noise +28,40.76516441232737,-73.98773689584394,noise +28,40.81453554135292,-73.95914444206745,noise +28,40.58989000025901,-73.80747002139462,noise +28,40.753318232758396,-73.97258707266118,noise +28,40.703365329011284,-73.92634531031759,noise +28,40.711757186204686,-73.942787970944,noise +28,40.76126189884153,-73.99427129644627,noise +28,40.831291164230585,-73.92903312224563,noise +28,40.73249705846839,-74.0018329711023,noise +28,40.75779259130661,-73.9164670619896,noise +28,40.84999364196937,-73.93865326785433,noise +28,40.75007365225898,-73.9863681919089,noise +28,40.83812039627257,-73.944797072807,noise +28,40.868525034704255,-73.89549491141108,noise +28,40.753993810528534,-73.97418935732308,noise +28,40.837744459786755,-73.91738218717425,noise +28,40.65162237103501,-74.00447956924909,noise +28,40.62863721194139,-74.08003527764738,noise +28,40.68400462371978,-73.93227625384988,noise +28,40.679154133157326,-73.98342992763081,noise +28,40.626182716878155,-74.02958703108246,noise +28,40.65955916488287,-73.95341125989876,noise +28,40.66467096763858,-73.99363077450808,noise +28,40.71387984239512,-73.95769832864103,noise +28,40.74634665568803,-73.91600503047555,noise +28,40.77576532879015,-73.91298199260854,noise +28,40.782650804083474,-73.84833730964534,noise +28,40.85838480528209,-73.89111133746826,noise +28,40.63606327655426,-73.96787928439106,noise +28,40.73468738676821,-73.9999711333645,noise +28,40.738880848311716,-73.98904803087335,noise +28,40.72907980000101,-74.00349256897498,noise +28,40.86620047158243,-73.9280594622068,noise +28,40.76879864925556,-73.9552590670563,noise +28,40.75378235734571,-73.97371300321495,noise +28,40.76494318338899,-73.91720535750666,noise +28,40.72642798567867,-73.99001698985559,noise +28,40.62237771958262,-74.13446153213701,noise +28,40.753993810528534,-73.97418935732308,noise +28,40.6644513680047,-73.99332441042543,noise +28,40.775967294147335,-73.91512640606982,noise +28,40.74578928442051,-73.98802917671404,noise +28,40.77576532879015,-73.91298199260854,noise +28,40.681544156062884,-73.97926863986454,noise +28,40.74268833848282,-74.00037170256458,noise +28,40.67299989343686,-73.93071565134677,noise +28,40.655148790037906,-73.95463250129222,noise +28,40.71075409739433,-73.96785411353089,noise +28,40.73831505190189,-73.9856164157106,noise +28,40.72907980000101,-74.00349256897498,noise +28,40.82697792769421,-73.8949711905216,noise +28,40.620756940159175,-74.0268361698577,noise +28,40.73831505190189,-73.9856164157106,noise +28,40.725911243215336,-73.9836492044371,noise +28,40.679154133157326,-73.98342992763081,noise +28,40.67135851405787,-73.88319749382859,noise +28,40.691982930968116,-73.91843545863412,noise +28,40.68724980184489,-73.87197014852143,noise +28,40.681524934200304,-73.97922177495168,noise +28,40.82837371732443,-73.82407740404882,noise +28,40.62084753339561,-74.02677136712303,noise +28,40.6101464784494,-74.09987953378004,noise +28,40.75177243180551,-73.98462818340661,noise +28,40.85337995275147,-73.93743558205041,noise +28,40.77679778223778,-73.97731813973823,noise +28,40.5807416950956,-73.83394213837107,noise +28,40.75177243180551,-73.98462818340661,noise +28,40.84361297578655,-73.94013014717568,noise +28,40.84361297578655,-73.94013014717568,noise +28,40.71075409739433,-73.96785411353089,noise +28,40.72201914755095,-73.98344452363722,noise +28,40.84361297578655,-73.94013014717568,noise +28,40.80369104095935,-73.96745524807574,noise +28,40.620756940159175,-74.0268361698577,noise +28,40.637192698012825,-74.10705407415217,noise +28,40.68072530247712,-74.00280140328412,noise +28,40.5785672396701,-74.10926404086739,noise +28,40.82669141090468,-73.93933237567178,noise +28,40.671358440837395,-73.88312539582694,noise +28,40.620756940159175,-74.0268361698577,noise +28,40.855219194013344,-73.86665829683199,noise +28,40.700548377973675,-73.9170689414556,noise +28,40.710263514143854,-73.95385555332841,noise +28,40.70855985140735,-73.9380909036534,noise +28,40.67135028705654,-73.88320471804823,noise +28,40.74431671856329,-73.95845851496014,noise +28,40.72952611867896,-73.98387201656533,noise +28,40.673506754772056,-73.95693443643526,noise +28,40.89187241649303,-73.86016845296459,noise +28,40.83158459589649,-73.86439296608704,noise +28,40.6792529810683,-73.98368227617689,noise +28,40.86796764559946,-73.8952571601521,noise +28,40.715544392846525,-74.01560154272589,noise +28,40.76431686260587,-73.9957835963077,noise +28,40.76431686260587,-73.9957835963077,noise +28,40.68022438026142,-73.98200193018606,noise +28,40.867038147919395,-73.89631435413959,noise +28,40.73249705846839,-74.0018329711023,noise +28,40.84967441935099,-73.93709929802505,noise +28,40.782295188052814,-73.96512583635275,noise +28,40.86233045538343,-73.91974855904473,noise +28,40.72512007317057,-73.97941022003913,noise +28,40.808622223819334,-73.92423843269918,noise +28,40.60307801542039,-74.00463476572553,noise +28,40.88313309847014,-73.88208769271985,noise +28,40.710436608291346,-73.95429188257941,noise +28,40.620756940159175,-74.0268361698577,noise +28,40.755192560508654,-73.97121832341485,noise +28,40.72867489662259,-73.9008953283657,noise +28,40.83526701753398,-73.91502546138153,noise +28,40.794381235376115,-73.93556967595676,noise +28,40.715544392846525,-74.01560154272589,noise +28,40.740481759552495,-73.90285530390075,noise +28,40.75979022599973,-73.98792558913458,noise +28,40.69440359009464,-73.93064652953248,noise +28,40.81294075342482,-73.95176854795888,noise +28,40.83805076166276,-73.94271188933645,noise +28,40.77334119529641,-73.91596737175662,noise +28,40.74705161330763,-73.88665213308,noise +28,40.729017426962,-73.90024176647529,noise +28,40.636063991211415,-73.88941319410789,noise +28,40.836639003678656,-73.85427830126581,noise +28,40.864048941064375,-73.90234218911554,noise +28,40.87427113909979,-73.91027132161895,noise +28,40.759412000629965,-73.99561425235972,noise +28,40.729337855378795,-74.00103189937474,noise +28,40.86174104106097,-73.8694361757398,noise +28,40.80174149250444,-73.96475806373661,noise +28,40.63930819189618,-74.01636200337592,noise +28,40.70725090688462,-73.94405423427759,noise +28,40.70412644915717,-73.90171807883345,noise +28,40.876787545694036,-73.8744473957362,noise +28,40.79961504989261,-73.93994217210017,noise +28,40.71509420412598,-74.0159513424216,noise +28,40.73350709203196,-74.00341341918667,noise +28,40.782295188052814,-73.96512583635275,noise +28,40.74248108344153,-73.98204646097889,noise +28,40.77553228613323,-73.97645926159943,noise +28,40.662972252885275,-73.91683090641251,noise +28,40.696007180974746,-73.93172673258307,noise +28,40.710217808932924,-73.99632806907346,noise +28,40.75840162233722,-73.99044896111556,noise +28,40.75850594678067,-73.9907449349766,noise +28,40.735977019046786,-73.99038000750797,noise +28,40.77580088199621,-73.92878536156479,noise +28,40.70849587847563,-74.01534380229157,noise +28,40.585342891917264,-73.80974049886493,noise +28,40.68973630775792,-73.89032301204479,noise +28,40.70324304416736,-73.990669654755,noise +28,40.87693193575244,-73.84428200411419,noise +28,40.863572501262425,-73.92601241651245,noise +28,40.742120166516465,-73.99854568100888,noise +28,40.84201877747143,-73.91108102453146,noise +28,40.58537563265823,-73.80962159666338,noise +28,40.5659051445194,-74.10058001940575,noise +28,40.58118419538779,-73.82508853276217,noise +28,40.70855985140735,-73.9380909036534,noise +28,40.70860079901558,-73.93767607002522,noise +28,40.847854758221416,-73.89557798854561,noise +28,40.86769186022512,-73.92121361680864,noise +28,40.77677317883997,-73.93452519329509,noise +28,40.82812142022209,-73.93935636561281,noise +28,40.64846321068645,-74.00075676991113,noise +28,40.75550463108133,-73.96806713233818,noise +28,40.58118419538779,-73.82508853276217,noise +28,40.64943991839931,-73.9630762940512,noise +28,40.71240883386746,-73.97801818974338,noise +28,40.807772384239165,-73.94548329252599,noise +28,40.753543108410376,-73.88405678994799,noise +28,40.74409549811215,-73.98561877658392,noise +28,40.86769186022512,-73.92121361680864,noise +28,40.70433819597782,-73.99055408749997,noise +28,40.58118419538779,-73.82508853276217,noise +28,40.761245247339026,-73.99134016609818,noise +28,40.727851981498254,-73.98508830404744,noise +28,40.6957470716964,-73.84476288202826,noise +28,40.610077105094604,-74.00731123608747,noise +28,40.700661068622125,-73.92966987438425,noise +28,40.74230952274594,-73.99693617783409,noise +28,40.71838330983826,-73.99284643308857,noise +28,40.67696653437602,-73.98333313058772,noise +28,40.64978821659282,-73.96218597797335,noise +28,40.90843715231184,-73.90367341887905,noise +28,40.620583980339646,-74.02699819757395,noise +28,40.74294903619024,-73.99646700742987,noise +28,40.66146989489981,-73.98612317968227,noise +28,40.726053954118946,-73.98353371783699,noise +28,40.72181954301522,-73.99007900992189,noise +28,40.68908652758479,-73.95812873194937,noise +28,40.6569208436631,-73.9260902384976,noise +28,40.874929670455685,-73.86497351464413,noise +28,40.782295188052814,-73.96512583635275,noise +28,40.7207459377075,-73.98615773607546,noise +28,40.7207459377075,-73.98615773607546,noise +28,40.72192109565006,-73.99003931078362,noise +28,40.70638029595102,-74.00950391062128,noise +28,40.82287392927349,-73.95185528921415,noise +28,40.7207459377075,-73.98615773607546,noise +28,40.90843715231184,-73.90367341887905,noise +28,40.87302288994266,-73.91845926340582,noise +28,40.837566284750594,-73.94546971983863,noise +28,40.723955389998984,-74.00071433417693,noise +28,40.77672953305253,-73.97927872295644,noise +28,40.689081057712364,-73.95818282331197,noise +28,40.73595506911933,-73.99047743742598,noise +28,40.85764125813505,-73.9352300378233,noise +28,40.773952808368215,-73.97096470411428,noise +28,40.710863460346204,-73.95800323427233,noise +28,40.69148449364803,-73.99107877722061,noise +28,40.679154133157326,-73.98342992763081,noise +28,40.80639122379478,-73.94430322871878,noise +28,40.834936738046174,-73.8454282889643,noise +28,40.650081514845986,-73.96100738418168,noise +28,40.777124941364114,-73.9802245847403,noise +28,40.74705161330763,-73.88665213308,noise +28,40.69357090968229,-73.96460247964477,noise +28,40.60958034655617,-74.00649002433062,noise +28,40.70535918197431,-73.94286920354465,noise +28,40.70334705397137,-73.98758596888827,noise +28,40.765734804437116,-73.98360332757093,noise +28,40.64713190020787,-74.00462341153786,noise +28,40.8963625891652,-73.87187844401356,noise +28,40.75849777271399,-73.8255686419485,noise +28,40.639246570197386,-73.9656005494199,noise +28,40.814350972886835,-73.94441217208437,noise +28,40.824031763014034,-73.9447581761541,noise +28,40.77010708804216,-73.98299572931818,noise +28,40.66820406598287,-73.95064760056546,noise +28,40.802866453480156,-73.95570934380133,noise +28,40.74555719791759,-73.97774741036771,noise +28,40.639529600748716,-73.95128855589117,noise +28,40.80770336215764,-73.92954593122653,noise +28,40.681120572929956,-73.96442160589702,noise +28,40.83847689725878,-73.91310234847393,noise +28,40.572797390275284,-73.99573449293105,noise +28,40.87298432092539,-73.90075617690101,noise +28,40.63980683172786,-73.95130636951028,noise +28,40.69451198634816,-73.90895177820711,noise +28,40.69357090968229,-73.96460247964477,noise +28,40.76494318338899,-73.91720535750666,noise +28,40.713636081084886,-73.95914496662374,noise +28,40.76494318338899,-73.91720535750666,noise +28,40.775967294147335,-73.91512640606982,noise +28,40.74412074319271,-73.9732765367824,noise +28,40.73434974274908,-74.00300933150363,noise +28,40.60719033221935,-74.16242136318522,noise +28,40.833837632942796,-73.91585843990595,noise +28,40.86004530407366,-73.862762350503,noise +28,40.83436712694572,-73.91553614766035,noise +28,40.65780241585331,-73.98277206373291,noise +28,40.758077656079664,-73.85735590137779,noise +28,40.67181584567338,-73.84309181950769,noise +28,40.84394176122344,-73.93902388879225,noise +28,40.758306037781885,-73.85560835923957,noise +28,40.69357090968229,-73.96460247964477,noise +28,40.69357090968229,-73.96460247964477,noise +28,40.74967829325735,-73.98542628688809,noise +28,40.70590844783598,-73.92030476234326,noise +28,40.72386917687742,-73.98388420879597,noise +28,40.633314310702325,-74.02702136197861,noise +28,40.76115165415317,-73.9236498906325,noise +28,40.72514350694292,-73.99082894012994,noise +28,40.6827204207205,-73.96329222525986,noise +28,40.85149946574485,-73.88382097731233,noise +28,40.716966608411326,-73.95482850997517,noise +28,40.71340570505753,-73.76207750368633,noise +28,40.654882431881674,-73.9618803533782,noise +28,40.80754154079546,-73.9509560852664,noise +28,40.63283666831036,-74.0272301322902,noise +28,40.705888969671015,-73.94296613233055,noise +28,40.833837632942796,-73.91585843990595,noise +28,40.779029254960335,-73.95089042783437,noise +28,40.693559956089324,-73.9646854258511,noise +28,40.69360357234296,-73.99274451467122,noise +28,40.69347179027272,-73.9922360690654,noise +28,40.857979090477954,-73.93090253049118,noise +28,40.694443398553766,-73.90899153955709,noise +28,40.69327686608,-73.99158699585692,noise +28,40.86954933988228,-73.9163483681302,noise +28,40.87148988243924,-73.90242165478006,noise +28,40.711757186204686,-73.942787970944,noise +28,40.693403153751404,-73.9919836503939,noise +28,40.72955189992351,-73.99657235120627,noise +28,40.68142274682521,-73.95710238584763,noise +28,40.678652034881914,-73.97065287743696,noise +28,40.67486925314842,-73.98154192342272,noise +28,40.63283666831036,-74.0272301322902,noise +28,40.68186974794423,-73.94937196628798,noise +28,40.59916024480543,-73.961263985129,noise +28,40.65162237103501,-74.00447956924909,noise +28,40.86954933988228,-73.9163483681302,noise +28,40.70583160527577,-73.94352523049047,noise +28,40.86941776211421,-73.91657993473648,noise +28,40.7332377151042,-73.98991493860811,noise +28,40.84343534044109,-73.94163382627303,noise +28,40.71299887749038,-73.96633081126946,noise +28,40.713978442693914,-73.9443046993617,noise +28,40.62343624927606,-74.02509732891079,noise +28,40.75626589787063,-73.97179176990845,noise +28,40.80512062776604,-73.96601691422981,noise +28,40.69284603813869,-73.99310159754657,noise +28,40.73506048227577,-74.0066321466503,noise +28,40.851408547926766,-73.88348135765057,noise +28,40.72349367369547,-73.98825325266078,noise +28,40.6175887832505,-74.02955440585416,noise +28,40.63419461480787,-73.9698689823935,noise +28,40.776315972116265,-73.90145266819901,noise +28,40.7933337422415,-73.9373728327433,noise +28,40.59279825283227,-73.98837706244852,noise +28,40.72349367369547,-73.98825325266078,noise +28,40.72386917687742,-73.98388420879597,noise +28,40.81341445657004,-73.9432496975766,noise +28,40.62863721194139,-74.08003527764738,noise +28,40.66955160436779,-73.957128044903,noise +28,40.61027378281804,-73.98352986143462,noise +28,40.71547278580305,-73.76220720247878,noise +28,40.7056885110496,-73.91979286518084,noise +28,40.58705445519071,-73.96607387762593,noise +28,40.705801476938376,-73.92041309324954,noise +28,40.72763257870112,-73.89248674712505,noise +28,40.741701742668,-73.98316176219015,noise +28,40.75676421229661,-73.96715331852165,noise +28,40.6827204207205,-73.96329222525986,noise +28,40.82214879586051,-73.94456824644851,noise +27,40.72111716702185,-73.9942170256473,noise +27,40.74293251026827,-73.99492966973321,noise +27,40.768485842587054,-73.95550115799429,noise +27,40.87466151769141,-73.91108799438194,noise +27,40.70625569932507,-73.90415673821764,noise +27,40.675964982883755,-73.81819203971499,noise +27,40.73240036503256,-73.9878439553108,noise +27,40.68282210792143,-73.9379994213524,noise +27,40.831318181563496,-73.85090764847428,noise +27,40.82622166696408,-73.92469173587911,noise +27,40.7568762229511,-73.94435185031935,noise +27,40.69357090968229,-73.96460247964477,noise +27,40.81271725522785,-73.95567750031833,noise +27,40.72104319440276,-73.9564311250355,noise +27,40.714938675350496,-74.00648224679168,noise +27,40.63597510716587,-73.97814064814625,noise +27,40.851996165275935,-73.93178711651882,noise +27,40.75548196260744,-73.81543033748679,noise +27,40.75177243180551,-73.98462818340661,noise +27,40.74002306430621,-74.00529023458128,noise +27,40.68924656698154,-73.9695448180832,noise +27,40.63914997599617,-74.07565202577766,noise +27,40.758159897134526,-73.96259370386208,noise +27,40.757398232236206,-73.9035453259498,noise +27,40.65108754537373,-73.94447252269869,noise +27,40.689350739029145,-73.81613264073687,noise +27,40.58073896590756,-73.8339529452123,noise +27,40.86456038961465,-73.92154994150562,noise +27,40.58073896590756,-73.8339529452123,noise +27,40.689584794709646,-73.97198945625917,noise +27,40.840953470238574,-73.92196087407716,noise +27,40.63765525053849,-74.0779887327085,noise +27,40.599580798941275,-73.98996033407023,noise +27,40.80878956613164,-73.91618270562478,noise +27,40.722165201192595,-73.9881596878753,noise +27,40.856544870014254,-73.9284639349079,noise +27,40.679154133157326,-73.98342992763081,noise +27,40.79246870877998,-73.97066048889371,noise +27,40.64269519421472,-73.9697750599414,noise +27,40.79339574405206,-73.94042450234399,noise +27,40.68793773282175,-73.96176049391649,noise +27,40.70491688442793,-73.92331034505958,noise +27,40.754447612546606,-73.93013644960551,noise +27,40.63809720741578,-74.07792079018242,noise +27,40.732941391210964,-73.95558262658426,noise +27,40.82310185725222,-73.891436444468,noise +27,40.70347321125422,-73.89550479716644,noise +27,40.73011739434729,-73.86231192688876,noise +27,40.740286662409055,-74.00212187601566,noise +27,40.82574216321642,-73.92596053576375,noise +27,40.51358865379272,-74.25123738578493,noise +27,40.85723957633827,-73.89942405335661,noise +27,40.6410403976559,-74.01453196929106,noise +27,40.776836566731994,-73.979217309221,noise +27,40.765802205327844,-73.97656017118615,noise +27,40.74985424754985,-73.98793821748563,noise +27,40.851996165275935,-73.93178711651882,noise +27,40.85723957633827,-73.89942405335661,noise +27,40.704847457347924,-73.80111117805761,noise +27,40.76081393580952,-73.98718901560663,noise +27,40.76550198639698,-73.98746608376727,noise +27,40.70872938727516,-73.77898908609201,noise +27,40.776836566731994,-73.979217309221,noise +27,40.765802205327844,-73.97656017118615,noise +27,40.731410110423155,-73.99697276049245,noise +27,40.735977019046786,-73.99038000750797,noise +27,40.81305085910166,-73.94627734861524,noise +27,40.76338296403078,-73.98673728595254,noise +27,40.64713190020787,-74.00462341153786,noise +27,40.74033035244007,-73.99247960455558,noise +27,40.704847457347924,-73.80111117805761,noise +27,40.84336696657346,-73.91544520763625,noise +27,40.776836566731994,-73.979217309221,noise +27,40.70543821527346,-73.80147730457128,noise +27,40.847617515431956,-73.90366390284355,noise +27,40.867268865019774,-73.8934794219803,noise +27,40.59835594693631,-73.7483212256282,noise +27,40.847617515431956,-73.90366390284355,noise +27,40.755522854574856,-73.91298677960084,noise +27,40.693696901972,-73.80036912436834,noise +27,40.73595506911933,-73.99047743742598,noise +27,40.73588925328537,-73.99120995092437,noise +27,40.6594204636939,-73.93860145713668,noise +27,40.68824737883683,-73.9821980845326,noise +27,40.65175500371316,-73.93022957183973,noise +27,40.703818970933284,-73.94207345177706,noise +27,40.86637625588829,-73.92825812322728,noise +27,40.809341326684816,-73.94921720559111,noise +27,40.69120877558911,-73.94622046302618,noise +27,40.755482999720215,-73.88616133748015,noise +27,40.67881798898779,-73.96534218755346,noise +27,40.830676506598095,-73.89062187983977,noise +27,40.72619561756766,-73.97728124457744,noise +27,40.65108754537373,-73.94447252269869,noise +27,40.72353758650293,-73.9882207753886,noise +27,40.777407762829604,-73.95243336904946,noise +27,40.62633744236879,-74.07543576427013,noise +27,40.76357407766322,-73.92188187466773,noise +27,40.715221270038704,-73.99171408791376,noise +27,40.81453554135292,-73.95914444206745,noise +27,40.79323054424429,-73.96627578882814,noise +27,40.7184371622771,-73.982933155532,noise +27,40.70889971091424,-73.95472216158124,noise +27,40.79892213493039,-73.963087287577,noise +27,40.78435473152669,-73.98116491397248,noise +27,40.682716637366106,-73.74802807634417,noise +27,40.833138674242264,-73.94464943204716,noise +27,40.86618344001468,-73.91893042945345,noise +27,40.734294664249724,-74.00716249172962,noise +27,40.69957784255969,-73.83235864391618,noise +27,40.70215493117036,-73.81093992125626,noise +27,40.74555719791759,-73.97774741036771,noise +27,40.76557288158927,-73.98372249752748,noise +27,40.76403218686632,-73.92149507584305,noise +27,40.71121192189549,-73.96593854446827,noise +27,40.84961932564268,-73.93673427905506,noise +27,40.681513486129695,-73.95753858725077,noise +27,40.8629258638539,-73.92776655089192,noise +27,40.84961932564268,-73.93673427905506,noise +27,40.52770124140149,-74.23095203708151,noise +27,40.52770124140149,-74.23095203708151,noise +27,40.76494318338899,-73.91720535750666,noise +27,40.755488234310555,-73.82471747053403,noise +27,40.711025075865436,-73.9502948686966,noise +27,40.77105456064582,-73.98714372203365,noise +27,40.59650760701851,-73.97750541355168,noise +27,40.79978540867754,-73.94029959243753,noise +27,40.833138674242264,-73.94464943204716,noise +27,40.76948307211895,-73.95786518258946,noise +27,40.77041508818784,-73.98761679023146,noise +27,40.52770124140149,-74.23095203708151,noise +26,40.79428248564219,-73.9687961246878,noise +26,40.71604975056294,-73.96214117072438,noise +26,40.76233478443831,-73.98980223802569,noise +26,40.7318021958132,-73.9897708289396,noise +26,40.71531993526938,-73.98988518419695,noise +26,40.7205407901068,-73.99468245135577,noise +26,40.7710239963222,-73.95364737877979,noise +26,40.87132564461639,-73.87703573678371,noise +26,40.6593633821743,-73.939657556668,noise +26,40.671662601079895,-73.95091901534035,noise +26,40.661039667120946,-73.99443849465493,noise +26,40.76879864925556,-73.9552590670563,noise +26,40.76226050323076,-73.98800455742398,noise +26,40.63980683172786,-73.95130636951028,noise +26,40.762137173441126,-73.9899213922278,noise +26,40.84158852014888,-73.88401537826611,noise +26,40.763248722318615,-73.98913066100741,noise +26,40.77073345249531,-73.98738206266945,noise +26,40.765682659996195,-73.98364305050475,noise +26,40.689584794709646,-73.97198945625917,noise +26,40.801969462594805,-73.96527806771718,noise +26,40.72529184311526,-73.99247408597165,noise +26,40.816205112629476,-73.94179499235126,noise +26,40.7710239963222,-73.95364737877979,noise +26,40.732584891901155,-74.00174998455988,noise +26,40.77073345249531,-73.98738206266945,noise +26,40.81453554135292,-73.95914444206745,noise +26,40.68054242490419,-73.96781459575845,noise +26,40.7486066822413,-73.97810369101492,noise +26,40.61567436463901,-74.03423242163053,noise +26,40.74736157770696,-73.8864567186804,noise +26,40.7462260833442,-73.85980288868481,noise +26,40.729337855378795,-74.00103189937474,noise +26,40.729337855378795,-74.00103189937474,noise +26,40.653806949153044,-73.85320364059318,noise +26,40.77075354470721,-73.95694014606978,noise +26,40.72115007705841,-73.99370113648965,noise +26,40.73243667227844,-74.00193039104539,noise +26,40.76092853692368,-73.96913301834103,noise +26,40.782465947701766,-73.97882196200797,noise +26,40.77054595458587,-73.9525249166544,noise +26,40.768045923534714,-73.98393850130176,noise +26,40.8388142794276,-73.89933264735532,noise +26,40.74562237902606,-73.99525426797025,noise +26,40.746219701192665,-73.91505603518134,noise +26,40.80373193897725,-73.95113588376844,noise +26,40.66602190663532,-73.92946128388337,noise +26,40.71139530746021,-73.99618732853405,noise +26,40.73272209631094,-74.00327626649987,noise +26,40.71103054513288,-73.95024797297603,noise +26,40.816205112629476,-73.94179499235126,noise +26,40.76771349047451,-73.9817905607601,noise +26,40.847763201919136,-73.907278157196,noise +26,40.84342647770325,-73.91426327900784,noise +26,40.73249705846839,-74.0018329711023,noise +26,40.64713190020787,-74.00462341153786,noise +26,40.847274679503094,-73.90732221142008,noise +26,40.73713255577926,-73.99032932220675,noise +26,40.73164812798064,-73.95434588792246,noise +26,40.809341326684816,-73.94921720559111,noise +26,40.838376281394325,-73.94612318158029,noise +26,40.693696901972,-73.80036912436834,noise +26,40.643456482424455,-73.99250133324755,noise +26,40.77541030615251,-73.98582864597192,noise +26,40.68376458408098,-73.97875956361523,noise +26,40.68340223337965,-73.97853974020897,noise +26,40.545942554789704,-74.17376136609333,noise +26,40.68327788577922,-73.99546782661326,noise +26,40.59633345146008,-73.93720112154035,noise +26,40.77384048302291,-73.97180598820083,noise +26,40.66652606219601,-73.95503929685944,noise +26,40.677963041857886,-73.98443609121443,noise +26,40.63727819841107,-74.00189160766544,noise +26,40.75192240115581,-73.83370310734584,noise +26,40.86437703226751,-73.92653574970558,noise +26,40.61023812513102,-73.98370274716996,noise +26,40.74166024933935,-73.98108676606441,noise +26,40.86019986016411,-73.92694525965447,noise +26,40.756792224160414,-73.96919629705214,noise +26,40.85652475252801,-73.89202173320534,noise +26,40.68151921482318,-73.8800790051269,noise +26,40.87663669864503,-73.87970539751794,noise +26,40.74100707353061,-73.98154886146948,noise +26,40.74036887849795,-74.00579907987587,noise +26,40.711132501501076,-73.96654457022544,noise +26,40.74555719791759,-73.97774741036771,noise +26,40.73831505190189,-73.9856164157106,noise +26,40.523137808198776,-74.21623924866687,noise +26,40.78417568342404,-73.97758645226881,noise +26,40.809070078970166,-73.92494955848412,noise +26,40.76516441232737,-73.98773689584394,noise +25,40.711025075865436,-73.9502948686966,noise +25,40.72349367369547,-73.98825325266078,noise +25,40.79428248564219,-73.9687961246878,noise +25,40.599580798941275,-73.98996033407023,noise +25,40.72879439753808,-74.000436569252,noise +25,40.83940400814985,-73.93762219805092,noise +25,40.729971634060284,-73.9921957357391,noise +25,40.60356182808086,-73.97797840087442,noise +25,40.76233478443831,-73.98980223802569,noise +25,40.79892213493039,-73.963087287577,noise +25,40.84733959526359,-73.88492341910964,noise +25,40.79429620635475,-73.968785283575,noise +25,40.72870931068029,-74.00024173638461,noise +25,40.73991339303542,-74.00079028612932,noise +25,40.79892213493039,-73.963087287577,noise +25,40.73234787144493,-73.98493936163591,noise +25,40.794381235376115,-73.93556967595676,noise +25,40.72568791727427,-73.97768910383446,noise +25,40.72568791727427,-73.97768910383446,noise +25,40.72306557278975,-73.98907949147022,noise +25,40.647949097726034,-73.96184107097778,noise +25,40.66296813649733,-73.95330074546357,noise +25,40.7190253512577,-73.98976918244128,noise +25,40.73249705846839,-74.0018329711023,noise +25,40.7190253512577,-73.98976918244128,noise +25,40.72953107218499,-73.98041550317102,noise +25,40.72506594449667,-73.98426995490264,noise +25,40.85503892189598,-73.89101559906555,noise +25,40.82574216321642,-73.92596053576375,noise +25,40.82543701491463,-73.92520931892479,noise +25,40.74294903619024,-73.99646700742987,noise +25,40.70794982750409,-73.95422866386211,noise +25,40.68293027183319,-73.93504999741602,noise +25,40.77603407819319,-73.95603047836165,noise +25,40.729337855378795,-74.00103189937474,noise +25,40.80682249278252,-73.85819423276286,noise +25,40.77654993923606,-73.95564019312424,noise +25,40.72529184311526,-73.99247408597165,noise +25,40.82574216321642,-73.92596053576375,noise +25,40.68293027183319,-73.93504999741602,noise +25,40.8343613533865,-73.94168153766111,noise +25,40.84348353994007,-73.93428966534154,noise +25,40.71927627482662,-73.95833703772377,noise +25,40.767437815899136,-73.92062463615646,noise +25,40.65778596987497,-73.9532467064159,noise +25,40.75172243780124,-73.98071576551733,noise +25,40.71918132686732,-73.98536441323307,noise +25,40.64846321068645,-74.00075676991113,noise +25,40.71918132686732,-73.98536441323307,noise +25,40.71918132686732,-73.98536441323307,noise +25,40.74294903619024,-73.99646700742987,noise +25,40.719055549682146,-73.98983771998572,noise +25,40.71918132686732,-73.98536441323307,noise +25,40.71918132686732,-73.98536441323307,noise +25,40.8008179898468,-73.95343158864141,noise +25,40.82574216321642,-73.92596053576375,noise +25,40.68085220583943,-73.94506426530351,noise +25,40.71918132686732,-73.98536441323307,noise +25,40.82574216321642,-73.92596053576375,noise +25,40.719206040219404,-73.98544738010678,noise +25,40.85009657365551,-73.93135531363173,noise +25,40.767437815899136,-73.92062463615646,noise +25,40.69606958590012,-73.84578630467995,noise +25,40.62429808180952,-73.99753598472716,noise +25,40.81305085910166,-73.94627734861524,noise +25,40.71703310267381,-73.95643735377254,noise +25,40.75767021538976,-73.94595022878164,noise +25,40.711025075865436,-73.9502948686966,noise +25,40.73243667227844,-74.00193039104539,noise +25,40.65989186531922,-73.91213836310568,noise +25,40.71920879089708,-73.98549427689538,noise +25,40.73713255577926,-73.99032932220675,noise +25,40.73713255577926,-73.99032932220675,noise +25,40.73713255577926,-73.99032932220675,noise +25,40.71763054999556,-73.98546215373003,noise +25,40.754077297110236,-73.97993545774784,noise +25,40.71300098043798,-74.00418069316733,noise +25,40.645110313865096,-74.08540261172003,noise +25,40.705851778014875,-73.92171868395766,noise +25,40.82410396969219,-73.95284079702623,noise +25,40.6369307587444,-73.94618854253929,noise +25,40.69687592161781,-73.9656285156593,noise +25,40.674573882515034,-73.96313808568077,noise +25,40.705200112005954,-74.00868501389301,noise +25,40.83671019481097,-73.90384954850693,noise +25,40.83334462257283,-73.89383005744115,noise +25,40.86701519865037,-73.92310894630785,noise +25,40.85237108974577,-73.93462789776359,noise +25,40.71908247801238,-73.9850722286835,noise +25,40.71908247801238,-73.9850722286835,noise +25,40.71918132686732,-73.98536441323307,noise +25,40.73234787144493,-73.98493936163591,noise +25,40.719206040219404,-73.98544738010678,noise +25,40.71908247801238,-73.9850722286835,noise +25,40.72023519816055,-73.98447672523356,noise +25,40.660398593132086,-73.98037092205514,noise +25,40.71942022514535,-73.98620851645586,noise +25,40.71908247801238,-73.9850722286835,noise +25,40.71908247801238,-73.9850722286835,noise +25,40.72023519816055,-73.98447672523356,noise +25,40.71942022514535,-73.98620851645586,noise +25,40.71918132686732,-73.98536441323307,noise +25,40.73235422499571,-73.99472480706936,noise +25,40.71918132686732,-73.98536441323307,noise +25,40.71908247801238,-73.9850722286835,noise +25,40.71918132686732,-73.98536441323307,noise +25,40.7198727832869,-73.98370479877566,noise +25,40.71918132686732,-73.98536441323307,noise +25,40.703365329011284,-73.92634531031759,noise +24,40.72306557278975,-73.98907949147022,noise +24,40.713306421457915,-73.95834076924454,noise +24,40.76010264469332,-73.98397290408673,noise +24,40.75033794512198,-73.99851662818881,noise +24,40.59013616474996,-73.97389623946307,noise +24,40.62040194766659,-73.96048439959483,noise +24,40.68138728818779,-73.97707657774677,noise +24,40.68148608921542,-73.97702246202064,noise +24,40.64245761642407,-74.00141611336608,noise +24,40.68148608921542,-73.97702246202064,noise +24,40.6931330690422,-73.96920046515831,noise +24,40.71380989584407,-73.9617492581918,noise +24,40.71103930694283,-73.9585045033893,noise +24,40.720932447032666,-73.98508263707446,noise +24,40.72438593852888,-74.00936216751758,noise +24,40.72581331433994,-73.99199057532017,noise +24,40.65925236812994,-73.98843036041136,noise +24,40.67400648817749,-73.94454356723712,noise +24,40.74350338520597,-73.99422590893847,noise +24,40.71108876069082,-73.95863793354077,noise +24,40.77035052761773,-73.95120731024004,noise +24,40.86241051734046,-73.92042090094513,noise +24,40.71478751600887,-74.00935360480142,noise +24,40.74036887849795,-74.00579907987587,noise +24,40.73029727299474,-73.95326077765519,noise +24,40.71103930694283,-73.9585045033893,noise +24,40.74036887849795,-74.00579907987587,noise +24,40.68378565318995,-73.95619226076349,noise +24,40.678398779196634,-73.96789494656598,noise +24,40.85009657365551,-73.93135531363173,noise +24,40.84992098141503,-73.93147116145383,noise +24,40.720932447032666,-73.98508263707446,noise +24,40.85009657365551,-73.93135531363173,noise +24,40.68824737883683,-73.9821980845326,noise +24,40.76403289770184,-73.98247023188081,noise +24,40.74967829325735,-73.98542628688809,noise +24,40.81321173541678,-73.91676237567276,noise +24,40.75074333523982,-73.9860721005395,noise +24,40.73421762177832,-73.99025757917958,noise +24,40.65840067951994,-73.98212675686791,noise +24,40.75171836730525,-73.85539164584124,noise +24,40.77958449230725,-73.98184869740003,noise +24,40.62950457030921,-73.8990467283877,noise +24,40.76422501752884,-73.98239076286046,noise +24,40.73713255577926,-73.99032932220675,noise +24,40.81126039695278,-73.95038618529952,noise +24,40.73713255577926,-73.99032932220675,noise +24,40.74764977334016,-73.8837025340724,noise +24,40.73713255577926,-73.99032932220675,noise +24,40.81126039695278,-73.95038618529952,noise +24,40.81126609731296,-73.95780983086226,noise +24,40.685863966155644,-73.92112557588337,noise +24,40.764275025447965,-73.98691399500473,noise +24,40.77294253658627,-73.98392287870325,noise +24,40.767699792898384,-73.9819566299384,noise +24,40.62987779963744,-74.01035405258891,noise +24,40.69957784255969,-73.83235864391618,noise +24,40.7167474826252,-73.99369794520052,noise +24,40.71585549734596,-73.99495337339927,noise +24,40.73021343656091,-74.00031751167181,noise +24,40.7609484980569,-73.83274564422915,noise +24,40.75592420737431,-73.92149019360906,noise +24,40.841510828872494,-73.92223127962102,noise +24,40.71740349992278,-73.95605472789865,noise +24,40.62633744236879,-74.07543576427013,noise +24,40.75635888110986,-73.94736260891914,noise +24,40.76570600686998,-73.95704809976088,noise +24,40.72529184311526,-73.99247408597165,noise +24,40.86954933988228,-73.9163483681302,noise +24,40.854992232899,-73.92987178432652,noise +24,40.82743255982857,-73.94495408753242,noise +24,40.72279615751205,-73.98523374271049,noise +24,40.6827204207205,-73.96329222525986,noise +23,40.84628332625253,-73.92141969238732,noise +23,40.64441465669152,-74.00014774135103,noise +23,40.72143910406459,-73.78117644957746,noise +23,40.6442719279528,-73.99991351744293,noise +23,40.72844753955975,-73.98467685973567,noise +23,40.813796733775455,-73.94481724836503,noise +23,40.76192061229993,-73.99379113575196,noise +23,40.79649132058809,-73.93448412958489,noise +23,40.76386067901942,-73.98791763138829,noise +23,40.723055498595045,-73.94458212192812,noise +23,40.728596115948555,-73.98767146528662,noise +23,40.609416789566936,-73.96768681636848,noise +23,40.7230664202602,-73.94446305871432,noise +23,40.59377961415589,-73.78441056660162,noise +23,40.733109103109285,-74.00339896582334,noise +23,40.730294409657716,-73.98223736510921,noise +23,40.62945105981767,-73.97986124416929,noise +23,40.63012921168753,-73.98097066384733,noise +23,40.744628872853504,-73.9989714726553,noise +23,40.75771959875749,-73.9459032641983,noise +23,40.60446880213764,-74.14060528779393,noise +23,40.67400648817749,-73.94454356723712,noise +23,40.58886785279273,-73.8019894689454,noise +23,40.68161279804452,-73.97939480954523,noise +23,40.73234787144493,-73.98493936163591,noise +23,40.723055498595045,-73.94458212192812,noise +23,40.60564545531823,-73.95911381455132,noise +23,40.74883017707221,-73.9855130907178,noise +23,40.74883017707221,-73.9855130907178,noise +23,40.64245761642407,-74.00141611336608,noise +23,40.77155932959356,-73.9613875487246,noise +23,40.588824165589685,-73.80212281539637,noise +23,40.72141089175725,-73.99497459839357,noise +23,40.81904516756764,-73.9521434786004,noise +23,40.635581624381615,-73.99154022497738,noise +23,40.625492850596416,-73.95853967766742,noise +23,40.76010264469332,-73.98397290408673,noise +23,40.74227338168175,-73.98926760636085,noise +23,40.58886785279273,-73.8019894689454,noise +23,40.81912221216838,-73.95260948834775,noise +23,40.71703310267381,-73.95643735377254,noise +23,40.768813944594676,-73.91075637379026,noise +23,40.7222742008498,-73.98204829685373,noise +23,40.71703310267381,-73.95643735377254,noise +23,40.850214537778854,-73.93125759775839,noise +23,40.84992098141503,-73.93147116145383,noise +23,40.64846321068645,-74.00075676991113,noise +23,40.614214550119705,-73.94550810171378,noise +23,40.82574216321642,-73.92596053576375,noise +23,40.73249705846839,-74.0018329711023,noise +23,40.73243667227844,-74.00193039104539,noise +23,40.83250449856821,-73.89658498936322,noise +23,40.6175637117159,-73.94098846109875,noise +23,40.703818970933284,-73.94207345177706,noise +23,40.703818970933284,-73.94207345177706,noise +23,40.83812039627257,-73.944797072807,noise +23,40.71274563665573,-74.00600949796177,noise +23,40.70176329205507,-73.9235267591974,noise +23,40.69670481050936,-73.91968105947457,noise +23,40.68908652758479,-73.95812873194937,noise +23,40.705851778014875,-73.92171868395766,noise +23,40.81300139514403,-73.94615094838177,noise +23,40.841510828872494,-73.92223127962102,noise +23,40.70176329205507,-73.9235267591974,noise +23,40.760045034169664,-73.8783637940509,noise +23,40.71585549734596,-73.99495337339927,noise +23,40.784246252459596,-73.97382013953211,noise +23,40.71562216096239,-73.99427521917184,noise +23,40.7193491704373,-73.84262277024277,noise +23,40.784246252459596,-73.97382013953211,noise +23,40.71085753881092,-73.96491071923214,noise +23,40.76881830636573,-73.93344634989465,noise +23,40.63980683172786,-73.95130636951028,noise +23,40.805639430595974,-73.96618642162706,noise +23,40.88674715264557,-73.85716661604137,noise +23,40.84706204129148,-73.938175252836,noise +23,40.725978270589856,-74.00133490741577,noise +23,40.76045412454783,-73.91527612392564,noise +23,40.711757186204686,-73.942787970944,noise +23,40.88674715264557,-73.85716661604137,noise +23,40.66797515538532,-73.98730056986984,noise +23,40.69957784255969,-73.83235864391618,noise +23,40.72400263455819,-73.95106807164736,noise +23,40.699123152287065,-73.91611501669048,noise +23,40.639529600748716,-73.95128855589117,noise +23,40.58073896590756,-73.8339529452123,noise +23,40.76045412454783,-73.91527612392564,noise +23,40.612564617355595,-74.03388145927545,noise +23,40.76299833549333,-73.98387835084579,noise +23,40.645102551930364,-73.97047304550979,noise +23,40.72581056958299,-73.99199057565006,noise +23,40.85359837276129,-73.93061428416208,noise +23,40.758974640414664,-73.91899955159224,noise +23,40.84337525456916,-73.90493864000894,noise +22,40.68643832001136,-73.96826246480775,noise +22,40.875573124449986,-73.91156770028746,noise +22,40.711443133286814,-73.94609231833418,noise +22,40.68280562652516,-73.96366354716633,noise +22,40.84337525456916,-73.90493864000894,noise +22,40.68640270041725,-73.96848964192199,noise +22,40.599580798941275,-73.98996033407023,noise +22,40.68642736277884,-73.96834179582274,noise +22,40.68640270041725,-73.96848964192199,noise +22,40.70727996562436,-73.95387925971505,noise +22,40.76010264469332,-73.98397290408673,noise +22,40.689350739029145,-73.81613264073687,noise +22,40.79585513226929,-73.9355285213493,noise +22,40.875886694591905,-73.91245320173718,noise +22,40.66064330544147,-73.96062996504574,noise +22,40.814552127894814,-73.92624754696546,noise +22,40.70314671573155,-73.98786371611006,noise +22,40.75846662998338,-73.842032219064,noise +22,40.65780241585331,-73.98277206373291,noise +22,40.76045412454783,-73.91527612392564,noise +22,40.66257854139589,-73.94732487429349,noise +22,40.80279815154175,-73.95654015432075,noise +22,40.90085198617899,-73.85487907500377,noise +22,40.75846662998338,-73.842032219064,noise +22,40.67696653437602,-73.98333313058772,noise +22,40.75846662998338,-73.842032219064,noise +22,40.671662601079895,-73.95091901534035,noise +22,40.75846662998338,-73.842032219064,noise +22,40.68672158793603,-73.9842681831406,noise +22,40.89119556225286,-73.89480824203164,noise +22,40.730528071927196,-73.98473411098625,noise +22,40.71184860073022,-73.78986498358812,noise +22,40.63597510716587,-73.97814064814625,noise +22,40.64269519421472,-73.9697750599414,noise +22,40.587565936495416,-73.81125352932968,noise +22,40.82326405406118,-73.95276190334795,noise +22,40.58537563265823,-73.80962159666338,noise +22,40.84858654150406,-73.91805909217241,noise +22,40.802853031063144,-73.95650038621442,noise +22,40.76676987990434,-73.97118443967818,noise +22,40.82293266828827,-73.94806508897528,noise +22,40.71032775626225,-73.9499491155834,noise +22,40.65941368624181,-73.87079091532641,noise +22,40.669736544148705,-73.93103266028581,noise +22,40.66364414125535,-73.87393664969326,noise +22,40.85359837276129,-73.93061428416208,noise +22,40.66179374325349,-73.98583115701055,noise +22,40.87177985276171,-73.91889829592715,noise +22,40.802853031063144,-73.95650038621442,noise +22,40.70314671573155,-73.98786371611006,noise +22,40.88668276147905,-73.90039215184134,noise +22,40.84348353994007,-73.93428966534154,noise +22,40.657645094265085,-73.87489588180901,noise +22,40.66079821104707,-73.87182267813331,noise +22,40.70964127702748,-74.0066187966376,noise +22,40.83780042899738,-73.91143359927136,noise +22,40.76331469056077,-73.92819586194034,noise +22,40.71184860073022,-73.78986498358812,noise +22,40.76889103158107,-73.98209349413949,noise +22,40.865535758901885,-73.92726840202711,noise +22,40.865965531882864,-73.92985298143955,noise +22,40.865657530638266,-73.9288807537734,noise +22,40.865535758901885,-73.92726840202711,noise +22,40.865535758901885,-73.92726840202711,noise +22,40.865657530638266,-73.9288807537734,noise +22,40.865535758901885,-73.92726840202711,noise +22,40.865269830035466,-73.92775677403245,noise +22,40.79532613037451,-73.97128765081636,noise +22,40.80271871926638,-73.96510068801958,noise +22,40.865535758901885,-73.92726840202711,noise +22,40.804441408651954,-73.94790613537198,noise +22,40.70314671573155,-73.98786371611006,noise +22,40.80854613684695,-73.94493719628682,noise +22,40.66521560164114,-73.77155643018676,noise +22,40.73324320398024,-73.98990772127486,noise +22,40.69286842758928,-73.82064495691733,noise +22,40.73321575770277,-73.98992215843091,noise +22,40.82574216321642,-73.92596053576375,noise +22,40.82574216321642,-73.92596053576375,noise +22,40.82574216321642,-73.92596053576375,noise +22,40.76427809800246,-73.97301575364541,noise +22,40.804441408651954,-73.94790613537198,noise +22,40.731410110423155,-73.99697276049245,noise +22,40.72964017260424,-73.89375354478469,noise +22,40.762350015531965,-73.92618622699398,noise +22,40.701452917478285,-73.88665031782351,noise +22,40.74431671856329,-73.95845851496014,noise +22,40.876787545694036,-73.8744473957362,noise +22,40.838191862288745,-73.94501385014351,noise +22,40.77949937117465,-73.98163207513309,noise +22,40.78637259802437,-73.93165573710645,noise +22,40.83812039627257,-73.944797072807,noise +22,40.865535758901885,-73.92726840202711,noise +22,40.76331469056077,-73.92819586194034,noise +22,40.68305957693085,-73.98104569795515,noise +22,40.71292960174825,-73.96415573368472,noise +22,40.846824566501674,-73.93556225282458,noise +22,40.74294903619024,-73.99646700742987,noise +22,40.797115183828936,-73.9359245895771,noise +22,40.77680945200524,-73.95253489358244,noise +22,40.633643951456804,-73.96394251602148,noise +22,40.72953107218499,-73.98041550317102,noise +22,40.74294903619024,-73.99646700742987,noise +22,40.84000215264304,-73.93724939082931,noise +22,40.76331469056077,-73.92819586194034,noise +22,40.88592049983589,-73.91142735720607,noise +22,40.773952808368215,-73.97096470411428,noise +22,40.779364120523724,-73.97736781606955,noise +22,40.76331469056077,-73.92819586194034,noise +22,40.79956872674389,-73.95961594433278,noise +22,40.76272655581484,-73.9269871963387,noise +22,40.774679702585445,-73.98220025247693,noise +22,40.77156786169279,-73.97189720854067,noise +22,40.84963398266137,-73.93351368690803,noise +22,40.799475312083196,-73.95934872471949,noise +22,40.82574216321642,-73.92596053576375,noise +22,40.76331469056077,-73.92819586194034,noise +22,40.73618846622149,-74.0083209951512,noise +22,40.86281833648662,-73.90782476617267,noise +22,40.841832660770464,-73.88387761513046,noise +22,40.782709698502785,-73.96530977678773,noise +22,40.69396944919769,-73.9298752699534,noise +22,40.735867147323745,-73.95519096971073,noise +22,40.809341326684816,-73.94921720559111,noise +22,40.67822373055946,-73.88371905094114,noise +22,40.67841521054692,-73.88307337053254,noise +22,40.63930819189618,-74.01636200337592,noise +22,40.88316837986438,-73.8596515338871,noise +22,40.67847535345926,-73.88283531586389,noise +22,40.66850549293584,-73.97439186206626,noise +22,40.67117622822281,-73.97469725259651,noise +22,40.63754154567315,-74.03607039924809,noise +22,40.73240036503256,-73.9878439553108,noise +22,40.718363420082945,-73.9541421485158,noise +22,40.72067536112048,-73.99678204683431,noise +22,40.795732724593925,-73.93266099831932,noise +22,40.68214732994866,-73.81204584378727,noise +22,40.72573834190075,-73.9837791292774,noise +22,40.822190799860905,-73.91449297168613,noise +22,40.750337924952355,-74.00261665343771,noise +22,40.79995879322592,-73.960525898404,noise +22,40.68497144024164,-73.86001460366744,noise +22,40.663218013875294,-73.86604367156899,noise +22,40.79513630969814,-73.96959388942862,noise +22,40.767237941493576,-73.91741911041883,noise +22,40.716319210274406,-74.00777019966768,noise +22,40.755482999720215,-73.88616133748015,noise +22,40.74359600160981,-73.98600863609721,noise +22,40.69253773551136,-73.9610691004219,noise +22,40.72925894967772,-73.90022336472336,noise +22,40.75498745240098,-73.99512727074615,noise +22,40.68142274682521,-73.95710238584763,noise +22,40.69276821286363,-73.96082375368661,noise +22,40.716022710379214,-73.9913099685531,noise +22,40.81726755137458,-73.94225650251605,noise +22,40.86295430159382,-73.89065555944714,noise +22,40.72457502800915,-73.98749182006608,noise +22,40.639529600748716,-73.95128855589117,noise +22,40.84706204129148,-73.938175252836,noise +22,40.69822499448377,-73.8063349190269,noise +22,40.64496727639598,-73.95897801142875,noise +22,40.721487751052656,-73.99511528957498,noise +22,40.61488236316056,-73.93643088396315,noise +22,40.68117681402792,-73.96015274158928,noise +22,40.730294409657716,-73.98223736510921,noise +22,40.65303518145196,-73.92758295987166,noise +22,40.682306343859345,-73.92894289454478,noise +22,40.722315548012524,-73.98321355978932,noise +22,40.71584979642465,-73.99138935190972,noise +22,40.68142274682521,-73.95710238584763,noise +22,40.68821528917911,-73.96278078037514,noise +22,40.806597203235675,-73.95748407755103,noise +22,40.74908618780376,-73.99389338699265,noise +22,40.59916024480543,-73.961263985129,noise +22,40.678083297698144,-73.90741673137997,noise +22,40.73434974274908,-74.00300933150363,noise +22,40.76154468058854,-73.92445081254765,noise +22,40.732603459604604,-73.98768154851247,noise +22,40.63340861800339,-73.95103722112935,noise +22,40.70097726001374,-73.90719739911907,noise +22,40.62602599825654,-74.17672214119553,noise +22,40.63283666831036,-74.0272301322902,noise +22,40.6286837616438,-73.92384106376856,noise +22,40.703365329011284,-73.92634531031759,noise +22,40.70097726001374,-73.90719739911907,noise +22,40.807460605248814,-73.91930899809635,noise +22,40.67940638663278,-73.98167767049208,noise +22,40.88956350713214,-73.89903879191748,noise +22,40.690693929964446,-73.95537998933273,noise +22,40.72060399749035,-73.99678565784696,noise +22,40.687890229688556,-73.90723724796824,noise +22,40.879596535613224,-73.90430102760196,noise +22,40.72544003807227,-73.9921457568192,noise +22,40.716319210274406,-74.00777019966768,noise +22,40.720464012748465,-73.99671351341082,noise +22,40.757824102636256,-73.86099851810266,noise +22,40.673476845292605,-73.79149638920828,noise +22,40.82388691720712,-73.95230620215838,noise +22,40.68138728818779,-73.97707657774677,noise +22,40.68148608921542,-73.97702246202064,noise +22,40.64018174662485,-73.95530566958138,noise +22,40.7405503377431,-73.97559832893751,noise +22,40.67085413793368,-73.9849135937361,noise +22,40.59013616474996,-73.97389623946307,noise +22,40.773112228729545,-73.91440074137935,noise +22,40.646317750194676,-73.95198989606435,noise +22,40.725978270589856,-74.00133490741577,noise +22,40.6827204207205,-73.96329222525986,noise +22,40.630746096546055,-73.97716602654559,noise +22,40.702196321668296,-73.81107324730587,noise +22,40.70215493117036,-73.81093992125626,noise +22,40.616822246637916,-73.9305038138407,noise +22,40.70827322616339,-73.94109211104667,noise +22,40.588037898402405,-73.96003909783704,noise +21,40.79578675989836,-73.9467607941624,noise +21,40.76226050323076,-73.98800455742398,noise +21,40.76379686685732,-73.98258220110651,noise +21,40.762137173441126,-73.9899213922278,noise +21,40.763248722318615,-73.98913066100741,noise +21,40.76809012619539,-73.98614789585974,noise +21,40.76334752620899,-73.98905844724008,noise +21,40.82136806939363,-73.9542879479308,noise +21,40.72100987341383,-73.9554282369718,noise +21,40.726053954118946,-73.98353371783699,noise +21,40.72136410670285,-73.99266212512684,noise +21,40.68540206802838,-73.97326761783678,noise +21,40.75676421229661,-73.96715331852165,noise +21,40.72222283814491,-73.98813081639854,noise +21,40.85512909620899,-73.90617258426455,noise +21,40.589661037108975,-74.06730402271947,noise +21,40.76121189110728,-73.98690015775021,noise +21,40.807460605248814,-73.91930899809635,noise +21,40.5903421438896,-74.06662420886849,noise +21,40.72959583237184,-74.00282510607859,noise +21,40.802853031063144,-73.95650038621442,noise +21,40.64460505163214,-73.95210283562616,noise +21,40.6960118809278,-73.96756190388936,noise +21,40.84968262980296,-73.93705591543925,noise +21,40.677180814176225,-74.01531857140509,noise +21,40.5903421438896,-74.06662420886849,noise +21,40.5903421438896,-74.06662420886849,noise +21,40.722165201192595,-73.9881596878753,noise +21,40.78168806521378,-73.94896025850578,noise +21,40.73520875201063,-74.00563625468811,noise +21,40.5903421438896,-74.06662420886849,noise +21,40.86241051734046,-73.92042090094513,noise +21,40.840086974109674,-73.93676502850852,noise +21,40.84711144985249,-73.93818243577172,noise +21,40.685849539832425,-73.97358834457859,noise +21,40.64655935608287,-73.95927252481327,noise +21,40.84413857351579,-73.93751655896854,noise +21,40.84999364196937,-73.93865326785433,noise +21,40.7274951969962,-73.98535176350751,noise +21,40.694898192257945,-73.93155477168918,noise +21,40.80095852446083,-73.9372356298971,noise +21,40.7082242712472,-74.01438069826862,noise +21,40.7378762159079,-73.98850331217982,noise +21,40.72386917687742,-73.98388420879597,noise +21,40.86804162520006,-73.92297398348515,noise +21,40.86241051734046,-73.92042090094513,noise +21,40.73214847921441,-74.00151904881352,noise +21,40.764594064525035,-73.91646214153033,noise +21,40.83418694458922,-73.90957372604782,noise +21,40.59657008070599,-73.77250065808508,noise +21,40.84967441935099,-73.93709929802505,noise +21,40.73243667227844,-74.00193039104539,noise +21,40.62863721194139,-74.08003527764738,noise +21,40.74268833848282,-74.00037170256458,noise +21,40.689584794709646,-73.97198945625917,noise +21,40.77212638505069,-73.92994099554139,noise +21,40.73211581791865,-73.86718968470113,noise +21,40.66395039687207,-73.98072311815831,noise +21,40.72870931068029,-74.00024173638461,noise +21,40.742839300033985,-74.00027426659143,noise +21,40.72473066469494,-73.98145234973227,noise +21,40.73211581791865,-73.86718968470113,noise +21,40.776836566731994,-73.979217309221,noise +21,40.711692455641085,-73.95123582027239,noise +21,40.75889846062464,-73.87145341827836,noise +21,40.729337855378795,-74.00103189937474,noise +21,40.66375369238495,-73.93715927578651,noise +21,40.850593386555325,-73.90114020318454,noise +21,40.821765735517005,-73.94144327563008,noise +21,40.67938026994827,-74.0054224267227,noise +21,40.73877432359085,-74.0001840360893,noise +21,40.63083171595605,-74.07797355335398,noise +21,40.71574277769142,-74.00824268927197,noise +21,40.85711790191046,-73.90482500833433,noise +21,40.75007365225898,-73.9863681919089,noise +21,40.69615897525205,-73.78660749854596,noise +21,40.77632971431773,-73.90147431139104,noise +21,40.78869208944232,-73.94776317433788,noise +21,40.754447612546606,-73.93013644960551,noise +21,40.762137173441126,-73.9899213922278,noise +21,40.640620439062886,-74.01458232323058,noise +21,40.727231582595806,-73.98445344793171,noise +21,40.71589488092655,-73.9400248249099,noise +21,40.70083832956139,-73.81316526249158,noise +21,40.873671931953595,-73.87922984985657,noise +21,40.817116584072195,-73.94800821023537,noise +21,40.70330245619338,-73.92255480953912,noise +21,40.69615897525205,-73.78660749854596,noise +21,40.710717433196876,-73.96451041241545,noise +21,40.87337058615227,-73.8797763918457,noise +21,40.86546921715945,-73.89147212650845,noise +21,40.68722405022647,-73.98555892705917,noise +21,40.671358440837395,-73.88312539582694,noise +21,40.593326909715685,-73.94050578321426,noise +21,40.86688884439357,-73.91895487801992,noise +21,40.83035789128319,-73.9438459307327,noise +21,40.817116584072195,-73.94800821023537,noise +21,40.67135028705654,-73.88320471804823,noise +21,40.86067578310815,-73.92868724699335,noise +21,40.76226050323076,-73.98800455742398,noise +21,40.79478403644305,-73.93938673430871,noise +21,40.62222626871569,-74.08265723368606,noise +21,40.873671931953595,-73.87922984985657,noise +21,40.71428856206052,-73.96514338264058,noise +21,40.74359600160981,-73.98600863609721,noise +21,40.676850749305814,-73.98015337290654,noise +21,40.73250430918979,-73.98483829636253,noise +21,40.70477458860945,-74.00974533129346,noise +21,40.62838143294541,-74.02904041333245,noise +21,40.83811767058312,-73.9448368284078,noise +21,40.69406639220073,-73.96054171264953,noise +21,40.838219316270994,-73.94502828323425,noise +21,40.817116584072195,-73.94800821023537,noise +21,40.82574216321642,-73.92596053576375,noise +21,40.79492924771259,-73.93889542510337,noise +21,40.863245068475806,-73.86937537796756,noise +21,40.71589488092655,-73.9400248249099,noise +21,40.763300973602725,-73.92820670637074,noise +21,40.77758313703432,-73.97922790817677,noise +21,40.64018174662485,-73.95530566958138,noise +21,40.76403289770184,-73.98247023188081,noise +21,40.817116584072195,-73.94800821023537,noise +21,40.83812039627257,-73.944797072807,noise +21,40.8733624085737,-73.87983064450415,noise +21,40.873671931953595,-73.87922984985657,noise +21,40.81663975609968,-73.86688372005709,noise +21,40.676850749305814,-73.98015337290654,noise +21,40.873671931953595,-73.87922984985657,noise +21,40.69391912579177,-73.92004863384774,noise +21,40.863245068475806,-73.86937537796756,noise +21,40.682204468178035,-73.93787740892192,noise +21,40.819260970520936,-73.89628763318417,noise +21,40.817924295572915,-73.9497309054128,noise +21,40.721965254192405,-73.99341244819328,noise +21,40.817116584072195,-73.94800821023537,noise +21,40.7152734184142,-73.99168522320332,noise +21,40.804441408651954,-73.94790613537198,noise +21,40.729337855378795,-74.00103189937474,noise +21,40.863245068475806,-73.86937537796756,noise +21,40.768045923534714,-73.98393850130176,noise +21,40.73249705846839,-74.0018329711023,noise +21,40.83882344002816,-73.94563493239124,noise +21,40.863245068475806,-73.86937537796756,noise +21,40.69396944919769,-73.9298752699534,noise +21,40.86549036494962,-73.9208510667768,noise +21,40.587565936495416,-73.81125352932968,noise +21,40.80165958389156,-73.95093152330203,noise +21,40.78869208944232,-73.94776317433788,noise +21,40.80143454654757,-73.93443230896085,noise +21,40.79127409084594,-73.94604573484662,noise +21,40.75171836730525,-73.85539164584124,noise +21,40.62863721194139,-74.08003527764738,noise +21,40.71514546385525,-73.94534261858955,noise +21,40.817116584072195,-73.94800821023537,noise +21,40.73249705846839,-74.0018329711023,noise +21,40.863245068475806,-73.86937537796756,noise +21,40.73243667227844,-74.00193039104539,noise +21,40.75790746711998,-73.98929757361397,noise +21,40.654281299690346,-73.9618050132615,noise +21,40.68605695245448,-73.82489637589111,noise +21,40.67994534728925,-73.9895588557994,noise +21,40.62859349083009,-73.90573812654965,noise +21,40.75791171340895,-73.85856186056688,noise +21,40.85677913968027,-73.89109589147488,noise +21,40.820408874074666,-73.89696869739164,noise +21,40.820408874074666,-73.89696869739164,noise +21,40.72280903519648,-73.9590491511869,noise +21,40.73434974274908,-74.00300933150363,noise +21,40.782295188052814,-73.96512583635275,noise +21,40.669655417096195,-73.9925272262841,noise +21,40.876787545694036,-73.8744473957362,noise +21,40.68464446959828,-73.83490930918742,noise +21,40.851573277836785,-73.86584146001474,noise +21,40.654281299690346,-73.9618050132615,noise +21,40.682067421178004,-73.89325246226335,noise +21,40.5711913525603,-74.0910565040687,noise +21,40.86233869450333,-73.91975577961627,noise +21,40.67443631387725,-73.91945552247563,noise +21,40.72961104486,-73.96048458508304,noise +21,40.81388325708216,-73.91181223961405,noise +21,40.654281299690346,-73.9618050132615,noise +21,40.80825065050754,-73.91488656169864,noise +21,40.76403289770184,-73.98247023188081,noise +21,40.82671891352724,-73.92538854414153,noise +21,40.734769348402445,-73.99063276523661,noise +21,40.74409549811215,-73.98561877658392,noise +21,40.72306557278975,-73.98907949147022,noise +21,40.722672330009374,-73.98296454007392,noise +21,40.659727162432745,-73.98791847104769,noise +21,40.72349367369547,-73.98825325266078,noise +21,40.67675194860996,-73.98021829581718,noise +21,40.72532531322678,-73.9762100179406,noise +21,40.78175850567076,-73.98305052791193,noise +21,40.817116584072195,-73.94800821023537,noise +21,40.735977019046786,-73.99038000750797,noise +21,40.687890229688556,-73.90723724796824,noise +21,40.79513630969814,-73.96959388942862,noise +21,40.72255151432937,-73.98265431112632,noise +21,40.79513630969814,-73.96959388942862,noise +21,40.72134942648968,-73.98344469000162,noise +21,40.83215697502522,-73.940946292125,noise +21,40.72968804455017,-73.98376734367024,noise +21,40.72698284261811,-74.0019590963611,noise +21,40.77350815832289,-73.91167435425929,noise +21,40.7104778366638,-73.98657106854841,noise +21,40.63606327655426,-73.96787928439106,noise +21,40.808499388277106,-73.9392947727086,noise +21,40.74705161330763,-73.88665213308,noise +21,40.72234137388135,-73.94948913560036,noise +21,40.82724502346266,-73.92404740135305,noise +21,40.67536080125747,-73.96969175870242,noise +21,40.84960653979247,-73.93352094346729,noise +21,40.72084647199604,-73.95180272776703,noise +21,40.72217959715861,-73.94986445410652,noise +21,40.73595506911933,-73.99047743742598,noise +21,40.73609782296407,-74.00919421804417,noise +21,40.79513630969814,-73.96959388942862,noise +21,40.70297131540268,-73.90548869442644,noise +21,40.714463081247885,-73.98534380585042,noise +21,40.83477926812112,-73.88716399335519,noise +21,40.810318593665144,-73.94362441765404,noise +21,40.58578657850464,-73.81934121415279,noise +21,40.6867449469956,-73.96552556572132,noise +21,40.73534843104954,-73.98991822750708,noise +21,40.73243667227844,-74.00193039104539,noise +21,40.86042829757685,-73.92794279089586,noise +21,40.72234137388135,-73.94948913560036,noise +21,40.765734804437116,-73.98360332757093,noise +21,40.668020675288375,-73.95892778585076,noise +21,40.590377221695796,-73.97184024156891,noise +21,40.72436222838573,-73.95113996303895,noise +21,40.67981880149073,-73.90842382350567,noise +21,40.69706137788694,-73.91932000045625,noise +21,40.76299834154699,-73.98392166920348,noise +21,40.74725039587702,-73.86251110292007,noise +21,40.660631547545265,-73.9398041868086,noise +21,40.66590291879492,-73.94253172343802,noise +21,40.6746242997572,-73.93956443720496,noise +21,40.731864634286595,-73.98375959709222,noise +21,40.62863721194139,-74.08003527764738,noise +21,40.83615033626389,-73.85419263950313,noise +21,40.74736157770696,-73.8864567186804,noise +21,40.812897103451725,-73.92213827515442,noise +21,40.85205827756883,-73.93477640780834,noise +21,40.60340463298484,-73.75384451574931,noise +21,40.75548196260744,-73.81543033748679,noise +21,40.742035076513325,-73.99834359413302,noise +21,40.829244677725754,-73.91443331831667,noise +21,40.82447733897571,-73.92672794142733,noise +21,40.725911243215336,-73.9836492044371,noise +21,40.8291952755808,-73.91443699530399,noise +21,40.67592902161404,-73.81801548500097,noise +21,40.75922931043704,-73.92629436545319,noise +21,40.596551431205654,-73.97703728637812,noise +21,40.732603459604604,-73.98768154851247,noise +21,40.69957784255969,-73.83235864391618,noise +21,40.7068521094073,-73.94819520223963,noise +21,40.831484302974786,-73.92209122866882,noise +21,40.8188428746513,-73.95415239257143,noise +21,40.74736157770696,-73.8864567186804,noise +21,40.85978272320349,-73.92703609580742,noise +21,40.85205827756883,-73.93477640780834,noise +21,40.719269151616,-73.96152967531737,noise +21,40.67653647822325,-73.7472763085619,noise +21,40.758260616043195,-73.84191720004705,noise +21,40.599599575692686,-73.98581554687776,noise +21,40.76305980016828,-73.996686142521,noise +21,40.71390090323134,-73.90880986258713,noise +21,40.742035076513325,-73.99834359413302,noise +21,40.83215400944179,-73.93541384839757,noise +21,40.69822499448377,-73.8063349190269,noise +21,40.72239574595509,-73.98801534035735,noise +21,40.850593386555325,-73.90114020318454,noise +21,40.69957784255969,-73.83235864391618,noise +21,40.68138125141478,-74.00444551380453,noise +21,40.711025075865436,-73.9502948686966,noise +21,40.77603324753923,-73.91523463915415,noise +21,40.87645001473717,-73.89976744510852,noise +21,40.72188598872764,-73.95683823702461,noise +21,40.707922326730234,-73.95409522814377,noise +21,40.85205827756883,-73.93477640780834,noise +21,40.76494318338899,-73.91720535750666,noise +21,40.60355360609414,-73.97804322594837,noise +21,40.73566312818639,-73.7160883768737,noise +21,40.72110344141068,-73.99418095089837,noise +21,40.742035076513325,-73.99834359413302,noise +21,40.71618336885352,-73.980744084693,noise +21,40.857060146840034,-73.90468410712803,noise +21,40.78536042083817,-73.97298193186121,noise +21,40.8024032657033,-73.95060589502363,noise +21,40.70581250142635,-73.94374886624244,noise +21,40.84628290533074,-73.938851866729,noise +21,40.70889971091424,-73.95472216158124,noise +21,40.73234787144493,-73.98493936163591,noise +21,40.80238678186795,-73.95056978725694,noise +21,40.802853031063144,-73.95650038621442,noise +21,40.72386917687742,-73.98388420879597,noise +21,40.67522474861943,-73.9563096425735,noise +21,40.6978051820224,-73.92329328123208,noise +21,40.67346600283198,-73.95111596418009,noise +21,40.851408547926766,-73.88348135765057,noise +21,40.697471350254936,-73.97566097821978,noise +21,40.85205827756883,-73.93477640780834,noise +21,40.82687657229544,-73.94750555800059,noise +21,40.725978270589856,-74.00133490741577,noise +21,40.589661037108975,-74.06730402271947,noise +21,40.68924656698154,-73.9695448180832,noise +21,40.75624514774764,-73.92120466494264,noise +21,40.846824566501674,-73.93556225282458,noise +21,40.74511639551817,-73.98446731891701,noise +21,40.761533410754815,-73.77488641442474,noise +21,40.778700484163636,-73.91435745051433,noise +21,40.68087680012108,-73.94483710367547,noise +21,40.831318181563496,-73.85090764847428,noise +21,40.6827204207205,-73.96329222525986,noise +21,40.70383480693682,-73.9309721372431,noise +21,40.64018174662485,-73.95530566958138,noise +20,40.81726755137458,-73.94225650251605,noise +20,40.6931330690422,-73.96920046515831,noise +20,40.71986468274901,-73.9846788330436,noise +20,40.8169953723491,-73.96076146300715,noise +20,40.719821125977134,-73.96236991001236,noise +20,40.82447733897571,-73.92672794142733,noise +20,40.64018174662485,-73.95530566958138,noise +20,40.85016671877659,-73.93397220795968,noise +20,40.72136410670285,-73.99266212512684,noise +20,40.77867847796471,-73.91429248594804,noise +20,40.802853031063144,-73.95650038621442,noise +20,40.70808153542161,-74.01444559148298,noise +20,40.763300973602725,-73.92820670637074,noise +20,40.74333499435163,-73.86599445940877,noise +20,40.59013616474996,-73.97389623946307,noise +20,40.74736715966265,-73.88655054366708,noise +20,40.76334752620899,-73.98905844724008,noise +20,40.82717916035433,-73.88169543219863,noise +20,40.70383480693682,-73.9309721372431,noise +20,40.801890770225334,-73.96842413691874,noise +20,40.69357090968229,-73.96460247964477,noise +20,40.763248722318615,-73.98913066100741,noise +20,40.79978540867754,-73.94029959243753,noise +20,40.747520498812406,-73.9824023963286,noise +20,40.85205827756883,-73.93477640780834,noise +20,40.76226050323076,-73.98800455742398,noise +20,40.78131764092335,-73.94922052414825,noise +20,40.81726755137458,-73.94225650251605,noise +20,40.857979090477954,-73.93090253049118,noise +20,40.730155729853315,-73.99606358029462,noise +20,40.65162237103501,-74.00447956924909,noise +20,40.720951755044,-73.85059537032248,noise +20,40.717280828183625,-73.95832024813635,noise +20,40.72279615751205,-73.98523374271049,noise +20,40.718450807896446,-73.98241367916964,noise +20,40.742520908125535,-74.00051966053194,noise +20,40.68924656698154,-73.9695448180832,noise +20,40.845030647965864,-73.93759885030306,noise +20,40.83729880269679,-73.94289684551767,noise +20,40.584884121212134,-73.9266415931382,noise +20,40.74487368375495,-73.95785548445366,noise +20,40.77303422968557,-73.95642599348551,noise +20,40.74487368375495,-73.95785548445366,noise +20,40.775967294147335,-73.91512640606982,noise +20,40.70579273911848,-73.91968814353369,noise +20,40.73243667227844,-74.00193039104539,noise +20,40.6827204207205,-73.96329222525986,noise +20,40.827057897162156,-73.94788842889989,noise +20,40.75082371167803,-74.00381853727683,noise +20,40.75064531780145,-74.0033457226617,noise +20,40.87674377803381,-73.90307567973697,noise +20,40.82574216321642,-73.92596053576375,noise +20,40.775967294147335,-73.91512640606982,noise +20,40.687890229688556,-73.90723724796824,noise +20,40.66360870380869,-73.95592075756804,noise +20,40.64998168141934,-73.83758618031825,noise +20,40.760823510704455,-73.95813778177158,noise +20,40.742975967582716,-73.98853851995158,noise +20,40.763858012704425,-73.98869015257539,noise +20,40.76174981237407,-73.98648131566577,noise +20,40.690585238525784,-73.95831169390723,noise +20,40.719991960839714,-74.00024531229982,noise +20,40.827639771078346,-73.94212103335633,noise +20,40.78759752527264,-73.94319586809269,noise +20,40.71613509166253,-73.98946661078074,noise +20,40.6827204207205,-73.96329222525986,noise +20,40.76430472048771,-73.98309467893299,noise +20,40.72951901371953,-73.99981238142182,noise +20,40.675309142407386,-73.96209219531579,noise +20,40.742975967582716,-73.98853851995158,noise +20,40.693169222170496,-73.97101430807716,noise +20,40.742975967582716,-73.98853851995158,noise +20,40.78869208944232,-73.94776317433788,noise +20,40.80603557526498,-73.94677065754134,noise +20,40.76081393580952,-73.98718901560663,noise +20,40.679154133157326,-73.98342992763081,noise +20,40.775033814404566,-73.95304163147445,noise +20,40.69394937271406,-73.96359256370815,noise +20,40.84711144985249,-73.93818243577172,noise +20,40.775033814404566,-73.95304163147445,noise +20,40.747520498812406,-73.9824023963286,noise +20,40.74736715966265,-73.88655054366708,noise +20,40.82574216321642,-73.92596053576375,noise +20,40.61567436463901,-74.03423242163053,noise +20,40.73243667227844,-74.00193039104539,noise +20,40.6410403976559,-74.01453196929106,noise +20,40.74494877548936,-73.86124552361862,noise +20,40.82574216321642,-73.92596053576375,noise +20,40.798355536097596,-73.95237144763576,noise +20,40.67336696020978,-73.96565505122301,noise +20,40.8026990790615,-73.94918615290574,noise +20,40.827823605186786,-73.94199801849722,noise +20,40.69394937271406,-73.96359256370815,noise +20,40.763858012704425,-73.98869015257539,noise +20,40.70889971091424,-73.95472216158124,noise +20,40.82410396969219,-73.95284079702623,noise +20,40.857979090477954,-73.93090253049118,noise +20,40.76081393580952,-73.98718901560663,noise +20,40.687890229688556,-73.90723724796824,noise +20,40.74705161330763,-73.88665213308,noise +20,40.73249705846839,-74.0018329711023,noise +20,40.82755197285539,-73.94218615031811,noise +20,40.674448080344725,-73.90944061822229,noise +20,40.72806703327709,-73.99895368841987,noise +20,40.65504787921595,-73.95630123228489,noise +20,40.70412644915717,-73.90171807883345,noise +20,40.84336696657346,-73.91544520763625,noise +20,40.717950406521275,-73.95792662022473,noise +20,40.78869208944232,-73.94776317433788,noise +20,40.822461326351764,-73.87677556178335,noise +20,40.79640522539506,-73.96310674155731,noise +20,40.6493772032253,-74.00228835941306,noise +20,40.6183750589245,-73.9096931926359,noise +20,40.86095466997928,-73.9078056580983,noise +20,40.763277812095296,-73.98070880994143,noise +20,40.705392472177536,-73.93331851518539,noise +20,40.73240906321199,-74.00639734936104,noise +20,40.74980777158168,-73.98985468373367,noise +20,40.71589488092655,-73.9400248249099,noise +20,40.78698712305333,-73.96929066210545,noise +20,40.71562216096239,-73.99427521917184,noise +20,40.67450811535147,-73.97349549897636,noise +20,40.629161308000064,-74.0114275233943,noise +20,40.71585549734596,-73.99495337339927,noise +20,40.69440359009464,-73.93064652953248,noise +20,40.732619101061516,-73.98150066905008,noise +20,40.72982207706265,-73.9807762242538,noise +20,40.69822499448377,-73.8063349190269,noise +20,40.70252975639297,-73.81356446098884,noise +20,40.718109419568734,-73.95742869418186,noise +20,40.52770124140149,-74.23095203708151,noise +20,40.672137295724184,-73.95742919827345,noise +20,40.645102551930364,-73.97047304550979,noise +20,40.718394005171284,-73.98920651756731,noise +20,40.599599575692686,-73.98581554687776,noise +20,40.81453554135292,-73.95914444206745,noise +20,40.64018174662485,-73.95530566958138,noise +20,40.73426727143688,-74.00622072073662,noise +20,40.776836566731994,-73.979217309221,noise +20,40.73426727143688,-74.00622072073662,noise +20,40.70285592103424,-73.81159433716947,noise +20,40.7345281866285,-74.00101032982901,noise +20,40.76627667709614,-73.95641958453474,noise +19,40.69394937271406,-73.96359256370815,noise +19,40.80932962734309,-73.94188047732216,noise +19,40.7486066822413,-73.97810369101492,noise +19,40.76334752620899,-73.98905844724008,noise +19,40.82755197285539,-73.94218615031811,noise +19,40.804441408651954,-73.94790613537198,noise +19,40.66770993429379,-73.95733109221207,noise +19,40.73249705846839,-74.0018329711023,noise +19,40.73243667227844,-74.00193039104539,noise +19,40.62526615732795,-73.92756265585744,noise +19,40.73398153995651,-73.98987513482558,noise +19,40.73595506911933,-73.99047743742598,noise +19,40.83775531214873,-73.90643560594127,noise +19,40.71344377524796,-73.95866172240136,noise +19,40.77302243168231,-73.9713225400335,noise +19,40.71141177615315,-73.9961909346615,noise +19,40.67181584567338,-73.84309181950769,noise +19,40.81824845001697,-73.9389354321188,noise +19,40.77156786169279,-73.97189720854067,noise +19,40.8188428746513,-73.95415239257143,noise +19,40.86511343900104,-73.91954635319021,noise +19,40.71302407924799,-73.76335941122338,noise +19,40.724040415953226,-73.99616856634337,noise +19,40.61905279443182,-73.9979936423149,noise +19,40.75991249796519,-73.95880975786145,noise +19,40.61915434953633,-73.99787116840938,noise +19,40.61859442131066,-73.99845832101916,noise +19,40.7227741924947,-73.98517963231006,noise +19,40.86437703226751,-73.92653574970558,noise +19,40.778613095200825,-73.77583967556586,noise +19,40.710558069021054,-73.99414219423629,noise +19,40.84693232737748,-73.91176119618572,noise +19,40.76343015682519,-73.99270080927215,noise +19,40.724837163187665,-73.9783207529914,noise +19,40.719659636672255,-73.993069962078,noise +19,40.72349367369547,-73.98825325266078,noise +19,40.72349367369547,-73.98825325266078,noise +19,40.88470274683753,-73.92016999545035,noise +19,40.67786526642703,-73.99806758331361,noise +19,40.71121192189549,-73.96593854446827,noise +19,40.72306557278975,-73.98907949147022,noise +19,40.85108799075497,-73.93718832738756,noise +19,40.72581056958299,-73.99199057565006,noise +19,40.85978272320349,-73.92703609580742,noise +19,40.814569329148476,-73.9476669973978,noise +19,40.860974232091095,-73.92752645340038,noise +19,40.7604832031652,-73.95824989720083,noise +19,40.74908359398508,-74.00158800804765,noise +18,40.74462061173134,-74.00269221510214,noise +18,40.73234787144493,-73.98493936163591,noise +18,40.83414249481127,-73.94311999167427,noise +18,40.73051434384183,-73.98470164119949,noise +18,40.8629258638539,-73.92776655089192,noise +18,40.776836566731994,-73.979217309221,noise +18,40.66459816535736,-73.95239846966075,noise +18,40.74621419306285,-73.91503077951621,noise +18,40.86019986016411,-73.92694525965447,noise +18,40.67821199428481,-73.97923001769834,noise +18,40.660578297468284,-73.99063597474276,noise +18,40.72870931068029,-74.00024173638461,noise +18,40.76053813591868,-73.95835454494613,noise +18,40.86042829757685,-73.92794279089586,noise +18,40.681536094256224,-73.98024932574002,noise +18,40.75991249796519,-73.95880975786145,noise +18,40.7604832031652,-73.95824989720083,noise +18,40.76022531847166,-73.95858576218527,noise +18,40.85701114890475,-73.93248689161432,noise +18,40.64460505163214,-73.95210283562616,noise +18,40.676850749305814,-73.98015337290654,noise +18,40.64519769252133,-73.95154747267345,noise +18,40.818282429093685,-73.95285576103016,noise +18,40.72398003378154,-73.99624433255866,noise +18,40.76167794579087,-73.96045834102597,noise +18,40.803116456400865,-73.95631961209878,noise +18,40.77623712660086,-73.95586786813011,noise +18,40.72304635433853,-73.9890253791316,noise +18,40.81986556513444,-73.9585233555893,noise +18,40.794381235376115,-73.93556967595676,noise +18,40.71963413589946,-73.98477628893393,noise +18,40.71963413589946,-73.98477628893393,noise +18,40.71963413589946,-73.98477628893393,noise +18,40.776836566731994,-73.979217309221,noise +18,40.72398003378154,-73.99624433255866,noise +18,40.77494923948623,-73.947849775401,noise +18,40.710263514143854,-73.95385555332841,noise +18,40.749288423791,-73.98454213769257,noise +18,40.710263514143854,-73.95385555332841,noise +18,40.68980567066739,-73.97793909974656,noise +18,40.77795655911321,-73.90379356917987,noise +18,40.72053529975445,-73.99466441397763,noise +18,40.83073495266584,-73.92202706239397,noise +18,40.73249705846839,-74.0018329711023,noise +18,40.71963413589946,-73.98477628893393,noise +18,40.72579798467424,-73.97916828475915,noise +18,40.85008590979516,-73.93188666944859,noise +18,40.85093300743733,-73.93018692279294,noise +18,40.6629828190192,-73.94909073617313,noise +18,40.76022531847166,-73.95858576218527,noise +18,40.82574216321642,-73.92596053576375,noise +18,40.7604832031652,-73.95824989720083,noise +18,40.72894881788312,-73.97836992762664,noise +18,40.851996165275935,-73.93178711651882,noise +18,40.71963413589946,-73.98477628893393,noise +18,40.82574216321642,-73.92596053576375,noise +18,40.687359439476126,-74.00156490345913,noise +18,40.74887754198061,-73.97392426630536,noise +18,40.76103982983582,-73.97537423703137,noise +18,40.850214537778854,-73.93125759775839,noise +18,40.64846321068645,-74.00075676991113,noise +18,40.71997982019537,-73.9836434445405,noise +18,40.78203801092292,-73.91425927440916,noise +18,40.68118041734597,-73.90868515053602,noise +18,40.693696901972,-73.80036912436834,noise +18,40.636135873780695,-74.02735398056029,noise +18,40.730078721480744,-73.99284156949935,noise +18,40.73021869745,-73.99273691992576,noise +18,40.73021869745,-73.99273691992576,noise +18,40.7369761151131,-73.99045203232816,noise +18,40.79585513226929,-73.9355285213493,noise +18,40.74980777158168,-73.98985468373367,noise +18,40.76403289770184,-73.98247023188081,noise +18,40.73521408143234,-73.99171521010928,noise +18,40.865116070143024,-73.91938365665014,noise +18,40.713390974611045,-73.78976272702207,noise +18,40.75050228527184,-73.99096620727663,noise +18,40.74406555204563,-73.98774799711626,noise +18,40.69071930037442,-73.9571360702403,noise +18,40.64713190020787,-74.00462341153786,noise +18,40.660461716905296,-73.98033486033547,noise +18,40.72938449733156,-74.00232718728188,noise +18,40.72349367369547,-73.98825325266078,noise +18,40.72349367369547,-73.98825325266078,noise +18,40.72951459812451,-73.98038303556775,noise +18,40.73971564962544,-74.00534433919894,noise +18,40.75276515250264,-73.872537219612,noise +18,40.70383480693682,-73.9309721372431,noise +18,40.670871224083356,-73.91999334975087,noise +18,40.68187916628095,-73.76608030308165,noise +18,40.83940400814985,-73.93762219805092,noise +18,40.70383480693682,-73.9309721372431,noise +18,40.64018174662485,-73.95530566958138,noise +18,40.75479785836866,-73.99155395999067,noise +18,40.70345052734871,-73.92651833490301,noise +18,40.78417568342404,-73.97758645226881,noise +18,40.64998168141934,-73.83758618031825,noise +18,40.694536660313084,-73.96330014431393,noise +18,40.68142274682521,-73.95710238584763,noise +17,40.705851778014875,-73.92171868395766,noise +17,40.75861214342624,-73.98323328948653,noise +17,40.753959433604386,-73.93077582089263,noise +17,40.725881050889605,-73.98364921184492,noise +17,40.7227741924947,-73.98517963231006,noise +17,40.81833313264987,-73.92028935319047,noise +17,40.84681097598738,-73.935800817213,noise +17,40.84672578941479,-73.93562017903595,noise +17,40.72587727533394,-73.9775339027806,noise +17,40.819358253350316,-73.91828295359788,noise +17,40.72970288513651,-73.77936692609944,noise +17,40.74736715966265,-73.88655054366708,noise +17,40.72973286593548,-73.72794814319316,noise +17,40.706075942785255,-74.00420189954657,noise +17,40.679154133157326,-73.98342992763081,noise +17,40.63284777043393,-73.92836506191817,noise +17,40.72279615751205,-73.98523374271049,noise +17,40.850617123043314,-73.93947321138087,noise +17,40.83985866827224,-73.92246089519706,noise +17,40.82596178861291,-73.95198313308883,noise +17,40.652879058792884,-73.91980589989417,noise +17,40.679154133157326,-73.98342992763081,noise +17,40.6463689285918,-74.00183420854357,noise +17,40.845377030141535,-73.88210763152644,noise +17,40.8404899751345,-73.9185135954165,noise +17,40.84992098141503,-73.93147116145383,noise +17,40.82574216321642,-73.92596053576375,noise +17,40.85009657365551,-73.93135531363173,noise +17,40.713764717463164,-73.9665071770721,noise +17,40.83896311232895,-73.91363658344284,noise +17,40.65052978546897,-73.95582488903592,noise +17,40.70870503309057,-74.01040236589888,noise +17,40.74980777158168,-73.98985468373367,noise +17,40.740891811275766,-73.98165715335558,noise +17,40.809341326684816,-73.94921720559111,noise +17,40.73051434384183,-73.98470164119949,noise +17,40.773952808368215,-73.97096470411428,noise +17,40.800779530089486,-73.95334854155793,noise +17,40.75054379913303,-73.99836503769602,noise +17,40.73390770672981,-74.00625677004092,noise +17,40.62964720569662,-74.01069987123932,noise +17,40.71585549734596,-73.99495337339927,noise +17,40.81548485615584,-73.90332024370039,noise +17,40.7167474826252,-73.99369794520052,noise +17,40.77370863616459,-73.94789046182478,noise +17,40.71762870999211,-73.99826123035311,noise +17,40.730107950553176,-73.9834749867784,noise +17,40.59279825283227,-73.98837706244852,noise +17,40.71205635589931,-73.96285764560447,noise +17,40.78017632519152,-73.95719764064765,noise +16,40.72674376488546,-73.99168018414794,noise +16,40.640247646667675,-73.95537048345608,noise +16,40.77039090156707,-73.91268214248078,noise +16,40.64018174662485,-73.95530566958138,noise +16,40.686405184378344,-73.8608156696364,noise +16,40.86941776211421,-73.91657993473648,noise +16,40.82574216321642,-73.92596053576375,noise +16,40.81281244058133,-73.9534448713976,noise +16,40.63278486305322,-73.99445165777627,noise +16,40.75676327642161,-73.99454239774003,noise +16,40.76879864925556,-73.9552590670563,noise +16,40.678023471604014,-73.97061349613709,noise +16,40.80282927842108,-73.96774463129591,noise +16,40.60997545790737,-74.00860779687243,noise +16,40.588824165589685,-73.80212281539637,noise +16,40.8963625891652,-73.87187844401356,noise +16,40.72674376488546,-73.99168018414794,noise +16,40.74883017707221,-73.9855130907178,noise +16,40.76165924514731,-73.98656074944263,noise +16,40.68334267445982,-73.9608365021689,noise +16,40.74967829325735,-73.98542628688809,noise +16,40.729337855378795,-74.00103189937474,noise +16,40.68578550011842,-73.96077377083515,noise +16,40.81923213407316,-73.95293457233953,noise +16,40.74883017707221,-73.9855130907178,noise +16,40.58886785279273,-73.8019894689454,noise +16,40.74883017707221,-73.9855130907178,noise +16,40.74883017707221,-73.9855130907178,noise +16,40.74883017707221,-73.9855130907178,noise +16,40.75849777271399,-73.8255686419485,noise +16,40.74883017707221,-73.9855130907178,noise +16,40.74883017707221,-73.9855130907178,noise +16,40.74883017707221,-73.9855130907178,noise +16,40.67486925314842,-73.98154192342272,noise +16,40.77680945200524,-73.95253489358244,noise +16,40.682373432779634,-73.98134514938309,noise +16,40.71703310267381,-73.95643735377254,noise +16,40.588824165589685,-73.80212281539637,noise +16,40.79578675989836,-73.9467607941624,noise +16,40.649821521727034,-74.00908863131293,noise +16,40.649821521727034,-74.00908863131293,noise +16,40.813483611158375,-73.91696795401911,noise +16,40.64713190020787,-74.00462341153786,noise +16,40.64968704646647,-74.0088435591934,noise +16,40.76889103158107,-73.98209349413949,noise +16,40.66135420007725,-73.96968010080575,noise +16,40.729579201247894,-73.9932601572899,noise +16,40.870465129766735,-73.91506364294965,noise +16,40.72720181863669,-73.98803973149738,noise +16,40.710396140950884,-74.00559808648983,noise +16,40.776836566731994,-73.979217309221,noise +16,40.6064722026571,-73.9832606943036,noise +16,40.75635717649371,-73.82577277053117,noise +16,40.784246252459596,-73.97382013953211,noise +16,40.778613095200825,-73.77583967556586,noise +16,40.742017526674466,-73.91891912303177,noise +16,40.70383480693682,-73.9309721372431,noise +16,40.84706204129148,-73.938175252836,noise +16,40.85354567446796,-73.91729026433475,noise +16,40.79578675989836,-73.9467607941624,noise +16,40.731410110423155,-73.99697276049245,noise +16,40.73434974274908,-74.00300933150363,noise +16,40.62637036801659,-74.07545381385818,noise +16,40.75624514774764,-73.92120466494264,noise +16,40.69247763429084,-73.85938942193175,noise +16,40.711443133286814,-73.94609231833418,noise +16,40.63597510716587,-73.97814064814625,noise +16,40.8608995930708,-73.92668419816236,noise +16,40.80101022625837,-73.94730201715285,noise +16,40.68266294555919,-73.99320721087814,noise +16,40.726061355766234,-73.93980641934205,noise +16,40.73234787144493,-73.98493936163591,noise +16,40.75624514774764,-73.92120466494264,noise +16,40.63278486305322,-73.99445165777627,noise +16,40.67522474861943,-73.9563096425735,noise +16,40.67601586005215,-73.89397596966738,noise +16,40.67709845988296,-74.01540147240185,noise +16,40.64018174662485,-73.95530566958138,noise +16,40.65672500402015,-74.00086138289596,noise +16,40.775967294147335,-73.91512640606982,noise +15,40.75066178373737,-74.00343234416158,noise +15,40.60089324826416,-74.00073102304206,noise +15,40.599580798941275,-73.98996033407023,noise +15,40.73619707023759,-73.84103135759476,noise +15,40.85414949158885,-73.88247886741401,noise +15,40.74274833429495,-73.8447111083776,noise +15,40.86522878423971,-73.91964382982326,noise +15,40.74059945905269,-73.82753891454772,noise +15,40.77226800834962,-73.91982820856339,noise +15,40.639529600748716,-73.95128855589117,noise +15,40.75184014036647,-73.90357142000677,noise +15,40.775967294147335,-73.91512640606982,noise +15,40.68449717319025,-73.93941487039577,noise +15,40.689350739029145,-73.81613264073687,noise +15,40.754702655195636,-73.84539790515785,noise +15,40.75007365225898,-73.9863681919089,noise +15,40.89686983736717,-73.87643867640344,noise +15,40.675964982883755,-73.81819203971499,noise +15,40.73243667227844,-74.00193039104539,noise +15,40.763622481330685,-73.99701461515482,noise +15,40.72100987341383,-73.9554282369718,noise +15,40.70689710411462,-73.90311704974741,noise +15,40.85461991885426,-73.90119928541195,noise +15,40.742520908125535,-74.00051966053194,noise +15,40.802751512983484,-73.95659797708345,noise +15,40.66064330544147,-73.96062996504574,noise +15,40.70251036126045,-73.99306813820868,noise +15,40.806032959006174,-73.94137764819999,noise +15,40.802853031063144,-73.95650038621442,noise +15,40.833373984779676,-73.91614450723507,noise +15,40.69528435215681,-73.92575200247197,noise +15,40.81231514806013,-73.95222779373897,noise +15,40.86233869450333,-73.91975577961627,noise +15,40.85359837276129,-73.93061428416208,noise +15,40.744145570561265,-73.87406581678226,noise +15,40.871302639060595,-73.89853861930585,noise +15,40.68643737954079,-73.92919089280218,noise +15,40.68643737954079,-73.92919089280218,noise +15,40.75846662998338,-73.842032219064,noise +15,40.653850688190936,-73.95509108666919,noise +15,40.75846662998338,-73.842032219064,noise +15,40.70251036126045,-73.99306813820868,noise +15,40.75846662998338,-73.842032219064,noise +15,40.710863460346204,-73.95800323427233,noise +15,40.719926086520104,-74.00028860242043,noise +15,40.72053529975445,-73.99466441397763,noise +15,40.70262842422549,-73.99373173926789,noise +15,40.74705161330763,-73.88665213308,noise +15,40.70251036126045,-73.99306813820868,noise +15,40.729337855378795,-74.00103189937474,noise +15,40.70855985140735,-73.9380909036534,noise +15,40.8693190628289,-73.91673191529007,noise +15,40.75752222946044,-73.83407535117406,noise +15,40.729337855378795,-74.00103189937474,noise +15,40.641186100973265,-73.91955691372603,noise +15,40.752566145855184,-73.90524869358502,noise +15,40.8558891637268,-73.92891288851122,noise +15,40.8371940094263,-73.93669188653993,noise +15,40.8558891637268,-73.92891288851122,noise +15,40.842662933584656,-73.90653351490995,noise +15,40.758159897134526,-73.96259370386208,noise +15,40.630057390500234,-74.11441370205462,noise +15,40.686445576116384,-73.9291295868565,noise +15,40.79513630969814,-73.96959388942862,noise +15,40.69487346360838,-73.93151152296547,noise +15,40.8371940094263,-73.93669188653993,noise +15,40.825385491626605,-73.92618134081594,noise +15,40.70859534657422,-73.93774460656425,noise +15,40.79513630969814,-73.96959388942862,noise +15,40.78699941473998,-73.94961703007391,noise +15,40.868113536577475,-73.91975242658049,noise +15,40.74705161330763,-73.88665213308,noise +15,40.51478878187545,-74.24842225921331,noise +15,40.68643737954079,-73.92919089280218,noise +15,40.719926086520104,-74.00028860242043,noise +15,40.79600328085396,-73.93540919329382,noise +15,40.717950406521275,-73.95792662022473,noise +15,40.813483611158375,-73.91696795401911,noise +15,40.674573882515034,-73.96313808568077,noise +15,40.75979022599973,-73.98792558913458,noise +15,40.719926086520104,-74.00028860242043,noise +15,40.80215017423105,-73.95595543550738,noise +15,40.77333932327449,-73.9210833467991,noise +15,40.729323647296596,-73.98938875726797,noise +15,40.71703310267381,-73.95643735377254,noise +15,40.85677913968027,-73.89109589147488,noise +15,40.64519769252133,-73.95154747267345,noise +15,40.58413030722871,-73.93277355495991,noise +15,40.648344898866476,-74.00814787493975,noise +15,40.70097709934568,-73.91781856148722,noise +15,40.648344898866476,-74.00814787493975,noise +15,40.79358812565087,-73.93577991186389,noise +15,40.58740437562875,-73.8098210348053,noise +15,40.64519769252133,-73.95154747267345,noise +15,40.58740437562875,-73.8098210348053,noise +15,40.64400329864003,-73.97657773481212,noise +15,40.64400329864003,-73.97657773481212,noise +15,40.62770721060308,-74.07933887081683,noise +15,40.719574756642004,-73.99950577096034,noise +15,40.72440300952339,-73.9758964709529,noise +15,40.78637259802437,-73.93165573710645,noise +15,40.867282838648585,-73.89988972847364,noise +15,40.73714337595816,-73.9885936501892,noise +15,40.76889103158107,-73.98209349413949,noise +15,40.66458130843125,-73.97853498179467,noise +15,40.67759045767429,-73.74478108306583,noise +15,40.68500301577492,-73.98191771066323,noise +15,40.65720879169907,-73.90029508623928,noise +15,40.800779530089486,-73.95334854155793,noise +15,40.67759045767429,-73.74478108306583,noise +15,40.79483376062877,-73.9216971182047,noise +15,40.79483376062877,-73.9216971182047,noise +15,40.83036235589997,-73.86602154214397,noise +15,40.68958773821854,-73.86425265444069,noise +15,40.637469389211276,-73.9191722621787,noise +15,40.816170957861736,-73.95792955481384,noise +15,40.77659152624718,-73.95673417738423,noise +15,40.791558587881916,-73.93864933131084,noise +15,40.688463097060605,-73.95713030895381,noise +15,40.688463097060605,-73.95713030895381,noise +15,40.81651739887689,-73.94059528057046,noise +15,40.69772137382844,-73.84133226716693,noise +15,40.73249705846839,-74.0018329711023,noise +15,40.69897824880751,-73.92921724348669,noise +15,40.767437815899136,-73.92062463615646,noise +15,40.79483376062877,-73.9216971182047,noise +15,40.72416392749903,-73.9960927962896,noise +15,40.69528435215681,-73.92575200247197,noise +15,40.767437815899136,-73.92062463615646,noise +15,40.78637259802437,-73.93165573710645,noise +15,40.83460464721806,-73.87487030618162,noise +15,40.862107812133196,-73.91928607643042,noise +15,40.81919481536373,-73.9124988801718,noise +15,40.70279082504312,-73.92937188599319,noise +15,40.58419050491946,-73.93245307663842,noise +15,40.68853147132612,-73.95647760937408,noise +15,40.76889103158107,-73.98209349413949,noise +15,40.77235003785209,-73.97159360735807,noise +15,40.58414951451379,-73.93276273503466,noise +15,40.71888381029733,-73.95142536226368,noise +15,40.646024462256825,-74.08143268495772,noise +15,40.759412000629965,-73.99561425235972,noise +15,40.68853147132612,-73.95647760937408,noise +15,40.83733304448514,-73.94005990668036,noise +15,40.762966330545105,-73.9739692885707,noise +15,40.82574216321642,-73.92596053576375,noise +15,40.87206888390196,-73.90226894206661,noise +15,40.710794355268895,-73.96473400771296,noise +15,40.870912011762485,-73.8915355577029,noise +15,40.74294903619024,-73.99646700742987,noise +15,40.68464446959828,-73.83490930918742,noise +15,40.86233869450333,-73.91975577961627,noise +15,40.61179688649432,-73.90762391696627,noise +15,40.758734268604165,-73.86009781919178,noise +15,40.758311021135064,-73.82549693867641,noise +15,40.77376928219592,-73.97247756153453,noise +15,40.79281518408062,-73.9377344686472,noise +15,40.79192348859491,-73.93837091474316,noise +15,40.688586206395534,-73.9560556909379,noise +15,40.69677830430262,-73.91880464507305,noise +15,40.749219123171585,-73.98009933121945,noise +15,40.79748391979979,-73.94878561956325,noise +15,40.58098486997783,-73.8257766609771,noise +15,40.68835329416552,-73.95709792714588,noise +15,40.647905783709504,-74.00740547226809,noise +15,40.70528585834722,-73.90635103057177,noise +15,40.77246135980183,-73.96704087525497,noise +15,40.74966676207011,-73.98157172697513,noise +15,40.74892228690117,-73.97788704124666,noise +15,40.798101198355546,-73.96227509520006,noise +15,40.70172437771922,-73.94140806075738,noise +15,40.75635717649371,-73.82577277053117,noise +15,40.75635717649371,-73.82577277053117,noise +15,40.8093083549824,-73.949137758487,noise +15,40.809341326684816,-73.94921720559111,noise +15,40.64713190020787,-74.00462341153786,noise +15,40.834936738046174,-73.8454282889643,noise +15,40.80897313739811,-73.94832523425542,noise +15,40.752968193944525,-73.81741882330049,noise +15,40.64713190020787,-74.00462341153786,noise +15,40.84394176122344,-73.93902388879225,noise +15,40.70048567548716,-73.93983311804541,noise +15,40.835991468920135,-73.91481854804258,noise +15,40.60534387506297,-73.98183484701687,noise +15,40.69908567856979,-73.82086264762273,noise +15,40.852054337728774,-73.82903920932816,noise +15,40.85687469473286,-73.88770128636126,noise +15,40.72160310374767,-73.99733757567812,noise +15,40.81095054263016,-73.95805206601315,noise +15,40.754447612546606,-73.93013644960551,noise +15,40.77603324753923,-73.91523463915415,noise +15,40.75729156731307,-73.83400373454384,noise +15,40.68321657803109,-73.9538706637591,noise +15,40.79578675989836,-73.9467607941624,noise +15,40.73875492933053,-74.00645930400476,noise +15,40.771162394352885,-73.95662939538269,noise +15,40.68187916628095,-73.76608030308165,noise +15,40.730294409657716,-73.98223736510921,noise +15,40.771162394352885,-73.95662939538269,noise +15,40.83811767058312,-73.9448368284078,noise +15,40.74135012900925,-73.98131059290127,noise +15,40.689350739029145,-73.81613264073687,noise +15,40.77138740575629,-73.95647761547139,noise +15,40.676907611730456,-73.95032390187038,noise +15,40.714733695456914,-73.96677362662585,noise +15,40.68296065127513,-73.95939451418306,noise +15,40.757534256346545,-73.86656869169668,noise +15,40.79578675989836,-73.9467607941624,noise +15,40.58774206277285,-73.80986687831003,noise +15,40.646317750194676,-73.95198989606435,noise +15,40.77138740575629,-73.95647761547139,noise +15,40.6365416374206,-73.9116899047855,noise +15,40.82943385321531,-73.94579075649952,noise +15,40.6827204207205,-73.96329222525986,noise +15,40.88945853599599,-73.89827220400643,noise +15,40.75624514774764,-73.92120466494264,noise +15,40.81289000391383,-73.88702770129498,noise +15,40.69822499448377,-73.8063349190269,noise +15,40.86941776211421,-73.91657993473648,noise +15,40.76494318338899,-73.91720535750666,noise +15,40.827208861281555,-73.89538636117382,noise +15,40.757398232236206,-73.9035453259498,noise +15,40.84145054672216,-73.9357734631567,noise +15,40.75274595926486,-73.87255530289436,noise +15,40.82326405406118,-73.95276190334795,noise +15,40.82415420966473,-73.94838209555708,noise +15,40.644164424753804,-74.01024816652469,noise +15,40.692490384892594,-73.95197828543888,noise +15,40.68592583766397,-73.92332497496484,noise +15,40.70409077024413,-73.92764291164407,noise +15,40.68138125141478,-74.00444551380453,noise +15,40.69983658852527,-73.91583642275587,noise +15,40.724889306095946,-73.97828105023956,noise +15,40.767437815899136,-73.92062463615646,noise +15,40.68562480033796,-73.91299505904317,noise +15,40.69957784255969,-73.83235864391618,noise +15,40.83847689725878,-73.91310234847393,noise +15,40.675964982883755,-73.81819203971499,noise +15,40.78536042083817,-73.97298193186121,noise +15,40.75007365225898,-73.9863681919089,noise +15,40.77850170871053,-73.95632492668035,noise +15,40.6867212076142,-73.95277570178654,noise +15,40.74258786227404,-73.98041166510122,noise +15,40.74258786227404,-73.98041166510122,noise +15,40.629417204274965,-73.89648538330538,noise +15,40.62912728814027,-73.9221545298121,noise +15,40.58774206277285,-73.80986687831003,noise +15,40.69032793243352,-73.96926666762575,noise +15,40.74359600160981,-73.98600863609721,noise +15,40.747520498812406,-73.9824023963286,noise +15,40.76299834154699,-73.98392166920348,noise +15,40.75007365225898,-73.9863681919089,noise +15,40.718174527735215,-73.99037175476823,noise +15,40.76045412454783,-73.91527612392564,noise +15,40.69969366263215,-73.91556612040631,noise +15,40.7153437473737,-73.88621546438229,noise +15,40.74258786227404,-73.98041166510122,noise +15,40.75729156731307,-73.83400373454384,noise +15,40.767437815899136,-73.92062463615646,noise +15,40.89759240454386,-73.86719544655305,noise +15,40.70701054032947,-73.94652150909403,noise +15,40.73434974274908,-74.00300933150363,noise +15,40.78536042083817,-73.97298193186121,noise +15,40.78536042083817,-73.97298193186121,noise +15,40.75045253306144,-73.98729206533014,noise +15,40.75979055259867,-73.84272936008009,noise +15,40.75979055259867,-73.84272936008009,noise +15,40.75007365225898,-73.9863681919089,noise +15,40.74586648508537,-73.99204951636642,noise +15,40.655148790037906,-73.95463250129222,noise +15,40.83736937163294,-73.94698410501621,noise +15,40.69276821286363,-73.96082375368661,noise +15,40.87586211981694,-73.88451607091044,noise +15,40.71765748163243,-73.96007321281223,noise +14,40.63559076024262,-73.97774084423934,noise +14,40.823434385656526,-73.95315200179726,noise +14,40.77090216352115,-73.73528940439274,noise +14,40.72663401851051,-73.99231157919372,noise +14,40.69961665785904,-73.90819827510794,noise +14,40.70097709934568,-73.91781856148722,noise +14,40.774808089520434,-73.91028258555102,noise +14,40.631181704433814,-74.0266169923781,noise +14,40.72663401851051,-73.99231157919372,noise +14,40.70872938727516,-73.77898908609201,noise +14,40.827208861281555,-73.89538636117382,noise +14,40.69400800959219,-73.91764684505226,noise +14,40.74585001384247,-73.99200982005763,noise +14,40.774808089520434,-73.91028258555102,noise +14,40.802853031063144,-73.95650038621442,noise +14,40.81237834836466,-73.95240115039357,noise +14,40.767437815899136,-73.92062463615646,noise +14,40.69357090968229,-73.96460247964477,noise +14,40.6968239501823,-73.76180129240835,noise +14,40.62214058310717,-74.02566239422468,noise +14,40.673257891395934,-73.93069735829563,noise +14,40.69961665785904,-73.90819827510794,noise +14,40.79186115522968,-73.94539159044066,noise +14,40.68433882004215,-73.91475627301246,noise +14,40.83940400814985,-73.93762219805092,noise +14,40.73250430918979,-73.98483829636253,noise +14,40.78536042083817,-73.97298193186121,noise +14,40.659586857497864,-73.94760116097613,noise +14,40.74031955484896,-74.00384319570206,noise +14,40.82326405406118,-73.95276190334795,noise +14,40.679154133157326,-73.98342992763081,noise +14,40.860974232091095,-73.92752645340038,noise +14,40.75045253306144,-73.98729206533014,noise +14,40.64460505163214,-73.95210283562616,noise +14,40.76589123508632,-73.98346610829651,noise +14,40.75380235642296,-73.92537637247311,noise +14,40.82410396969219,-73.95284079702623,noise +14,40.67141400741232,-73.98442680473981,noise +14,40.67236589602789,-73.93079201408896,noise +14,40.73349827722283,-73.95481369481523,noise +14,40.67128776327211,-73.9845421910017,noise +14,40.67141400741232,-73.98442680473981,noise +14,40.67299989343686,-73.93071565134677,noise +14,40.74978835571634,-73.98776859948752,noise +14,40.6082163507235,-73.99808400532848,noise +14,40.679154133157326,-73.98342992763081,noise +14,40.616345866878305,-74.01154419323916,noise +14,40.62937672994371,-73.94540205335065,noise +14,40.75849777271399,-73.8255686419485,noise +14,40.76449114200317,-73.98165065394043,noise +14,40.68603480219816,-73.95226057319618,noise +14,40.711132501501076,-73.96654457022544,noise +14,40.70413079786822,-73.93023606872465,noise +14,40.702933197256996,-73.92879467725672,noise +14,40.73391566554618,-73.98987153654743,noise +14,40.89616860179096,-73.86308564893062,noise +14,40.74536798041107,-73.94536473956202,noise +14,40.70535300012607,-73.91506122176716,noise +14,40.68952198603862,-73.91616676025777,noise +14,40.54195147381688,-74.17742807278975,noise +14,40.636135371347144,-74.11613915262556,noise +14,40.67332297903321,-73.96543877328638,noise +14,40.83655118828161,-73.91833411304714,noise +14,40.73643704171866,-73.98142744055693,noise +14,40.592419248566266,-74.0915787387903,noise +14,40.69276821286363,-73.96082375368661,noise +14,40.68802031788833,-73.88979217513595,noise +14,40.68431677949515,-73.89475961057502,noise +14,40.78553539529453,-73.9839992818358,noise +14,40.78069388440413,-73.98551337991957,noise +14,40.806624317974006,-73.95659183950278,noise +14,40.60624006199753,-73.99654266835232,noise +14,40.73595506911933,-73.99047743742598,noise +14,40.78867285503546,-73.9477162431022,noise +14,40.78869208944232,-73.94776317433788,noise +14,40.86797938997047,-73.92024792067537,noise +14,40.717950406521275,-73.95792662022473,noise +14,40.67750006331255,-73.82759393289855,noise +14,40.723937712851715,-73.94135606144776,noise +14,40.825186430625706,-73.93768972461712,noise +14,40.777303729744,-73.98258227877236,noise +14,40.620583980339646,-74.02699819757395,noise +14,40.84460906046672,-73.93462468278524,noise +14,40.86414833826332,-73.92951867022755,noise +14,40.62429808180952,-73.99753598472716,noise +14,40.674448080344725,-73.90944061822229,noise +14,40.79123014132853,-73.94597354257083,noise +14,40.687771300551404,-73.95004176838394,noise +14,40.7052305340564,-74.0047500699767,noise +14,40.6867212076142,-73.95277570178654,noise +14,40.683056609866284,-73.95198507898607,noise +14,40.78702963676731,-73.94968561937203,noise +14,40.620756940159175,-74.0268361698577,noise +14,40.72170509226293,-73.95064766614973,noise +14,40.78537369084362,-73.84028922762602,noise +14,40.70105483977612,-73.90472683098503,noise +14,40.67714817776417,-73.82540647202501,noise +14,40.6981738055239,-73.92454065579825,noise +14,40.85954452501092,-73.92797628437134,noise +14,40.68368094738476,-73.96284460586722,noise +14,40.727363372854015,-73.98476730735065,noise +14,40.8404899751345,-73.9185135954165,noise +14,40.58470428443194,-73.81197446338135,noise +14,40.75112211258347,-73.97126339270125,noise +14,40.740239961550856,-74.00370606316511,noise +14,40.654882431881674,-73.9618803533782,noise +14,40.86402656719336,-73.89867625757466,noise +14,40.6819601418985,-73.82206240664843,noise +14,40.67609498046784,-73.94991351893904,noise +14,40.70777815065522,-73.95059666026928,noise +14,40.77838315223703,-73.98848548648573,noise +14,40.73588925328537,-73.99120995092437,noise +14,40.72532531322678,-73.9762100179406,noise +14,40.7194507834957,-74.0102922104421,noise +14,40.701301671286686,-73.90448844761583,noise +14,40.84036065384486,-73.91806199599235,noise +14,40.682593952339204,-73.9626433028989,noise +14,40.846824566501674,-73.93556225282458,noise +14,40.71934656821788,-74.0092857021528,noise +14,40.7194507834957,-74.0102922104421,noise +14,40.73588925328537,-73.99120995092437,noise +14,40.62429808180952,-73.99753598472716,noise +14,40.68580929764838,-73.9214573636571,noise +14,40.74294903619024,-73.99646700742987,noise +14,40.826085060066916,-73.93977374946542,noise +14,40.85235714407865,-73.86488197890847,noise +14,40.701301671286686,-73.90448844761583,noise +14,40.71495070597848,-73.95175288214118,noise +14,40.810175405186904,-73.93740755930494,noise +14,40.773952808368215,-73.97096470411428,noise +14,40.83650561610806,-73.92393925514125,noise +14,40.63468457839895,-73.96508408017624,noise +14,40.65621485768027,-73.88251039868638,noise +14,40.82087827528465,-73.94516183738146,noise +14,40.707309400318074,-73.80424540466761,noise +14,40.74294903619024,-73.99646700742987,noise +14,40.655516602483864,-73.88415147136058,noise +14,40.70630346826125,-73.943045127159,noise +14,40.71783505261586,-73.95772467766359,noise +14,40.755754213912155,-73.9792419342526,noise +14,40.59720134826405,-73.94942536205099,noise +14,40.62526615732795,-73.92756265585744,noise +14,40.80340346118902,-73.94693891692553,noise +14,40.77235003785209,-73.97159360735807,noise +14,40.70153087062594,-73.92077523864975,noise +14,40.68631085352911,-73.97443910984222,noise +14,40.71934656821788,-74.0092857021528,noise +14,40.825904765003955,-73.94711609080082,noise +14,40.765734804437116,-73.98360332757093,noise +14,40.64480653360291,-73.92367131528587,noise +14,40.693823039932354,-73.94309906174657,noise +14,40.71440595884749,-73.99022079542576,noise +14,40.71770742395871,-73.93676570169862,noise +14,40.7955330707123,-73.93886236621044,noise +14,40.70032651046466,-73.94540165206382,noise +14,40.79186115522968,-73.94539159044066,noise +14,40.70031010338543,-73.94553149840216,noise +14,40.71461497533741,-73.99959598880683,noise +14,40.754130913939996,-73.94906799836494,noise +14,40.78536042083817,-73.97298193186121,noise +14,40.69577118710655,-73.79066935893222,noise +14,40.63597510716587,-73.97814064814625,noise +14,40.63597510716587,-73.97814064814625,noise +14,40.86954933988228,-73.9163483681302,noise +14,40.80052437542785,-73.9315653574528,noise +14,40.75006808277163,-73.88119355123389,noise +14,40.80098012408703,-73.9317743805035,noise +14,40.86954933988228,-73.9163483681302,noise +14,40.86384432811277,-73.92617118898539,noise +14,40.73030401386539,-73.99988454105332,noise +14,40.58073896590756,-73.8339529452123,noise +14,40.836431138495065,-73.90833112538806,noise +14,40.71395678162111,-73.95793274830521,noise +14,40.853100689757184,-73.92914721303369,noise +14,40.72960350054764,-73.9882377434201,noise +14,40.69118921609015,-73.94548485967057,noise +14,40.707593522846096,-73.95554180676132,noise +14,40.74736715966265,-73.88655054366708,noise +14,40.843857941042664,-73.83043007761825,noise +14,40.775967294147335,-73.91512640606982,noise +14,40.74835618760526,-74.00368846932793,noise +14,40.75276515250264,-73.872537219612,noise +14,40.67101340236952,-73.90822683007379,noise +14,40.67119301249409,-73.95037862666463,noise +14,40.82574216321642,-73.92596053576375,noise +14,40.71814583358354,-73.95229529180735,noise +14,40.671662601079895,-73.95091901534035,noise +14,40.70383480693682,-73.9309721372431,noise +14,40.615586521609,-74.03426479360745,noise +14,40.6899888345869,-73.9561881852359,noise +14,40.77850170871053,-73.95632492668035,noise +14,40.713298368917734,-73.96741641869905,noise +14,40.84322272826247,-73.93917634500083,noise +14,40.82574216321642,-73.92596053576375,noise +14,40.67685779093586,-73.94937216587957,noise +14,40.86019986016411,-73.92694525965447,noise +14,40.69822499448377,-73.8063349190269,noise +14,40.689501623461204,-73.78299406208875,noise +14,40.773489285879975,-73.9884863326715,noise +14,40.73192062465118,-73.99660831115821,noise +14,40.82574216321642,-73.92596053576375,noise +14,40.82417265543946,-73.9530069547366,noise +14,40.72955189992351,-73.99657235120627,noise +14,40.68138125141478,-74.00444551380453,noise +14,40.70810230099438,-73.92557902211675,noise +14,40.691619156786686,-73.9057391758118,noise +14,40.73250430918979,-73.98483829636253,noise +14,40.662175057227046,-73.95370138991396,noise +14,40.72553423319804,-73.97780460597261,noise +14,40.711757186204686,-73.942787970944,noise +14,40.73945486717447,-74.00597582111745,noise +14,40.64020372450455,-73.9553560999498,noise +14,40.72349367369547,-73.98825325266078,noise +14,40.88956350713214,-73.89903879191748,noise +14,40.71359488404198,-73.95907284811548,noise +14,40.72349367369547,-73.98825325266078,noise +14,40.731410110423155,-73.99697276049245,noise +14,40.84992098141503,-73.93147116145383,noise +14,40.71802667305119,-74.00304466876497,noise +14,40.730883132114464,-73.9975933816647,noise +14,40.83654002526548,-73.9142974505466,noise +14,40.77090216352115,-73.73528940439274,noise +14,40.73298283402084,-74.00373452543633,noise +14,40.68924656698154,-73.9695448180832,noise +14,40.72104319440276,-73.9564311250355,noise +14,40.711903822145416,-73.95128255789648,noise +14,40.68924656698154,-73.9695448180832,noise +14,40.72894881788312,-73.97836992762664,noise +14,40.68813025161055,-73.98949988119314,noise +14,40.682613541568664,-73.99323966551619,noise +14,40.81209839714739,-73.92215004713944,noise +14,40.758260616043195,-73.84191720004705,noise +14,40.68035202521423,-73.97476587888686,noise +14,40.730155729853315,-73.99606358029462,noise +14,40.62986376496369,-74.02845742708722,noise +14,40.79978540867754,-73.94029959243753,noise +14,40.68947713718711,-73.9695807716015,noise +14,40.83940400814985,-73.93762219805092,noise +14,40.76516441232737,-73.98773689584394,noise +14,40.68142274682521,-73.95710238584763,noise +14,40.82975876234579,-73.94803446649952,noise +14,40.7656803831518,-73.9873613599446,noise +13,40.799433949380024,-73.96738148074206,noise +13,40.71884963627994,-73.98921726619577,noise +13,40.711857152089735,-73.95824428348773,noise +13,40.82979716389297,-73.94798023418905,noise +13,40.82979716389297,-73.94798023418905,noise +13,40.724889306095946,-73.97828105023956,noise +13,40.616822246637916,-73.9305038138407,noise +13,40.68026692062235,-73.97469019800482,noise +13,40.720237667063,-73.98255029446189,noise +13,40.730883132114464,-73.9975933816647,noise +13,40.72784608591825,-73.982227193827,noise +13,40.730883132114464,-73.9975933816647,noise +13,40.82283051428899,-73.95306932541597,noise +13,40.7993350787092,-73.9671684309868,noise +13,40.831318181563496,-73.85090764847428,noise +13,40.64466793249531,-73.95150821928878,noise +13,40.6938317986799,-73.90960541482896,noise +13,40.67793975658402,-73.96565990677824,noise +13,40.602202840989804,-74.16827554551044,noise +13,40.679154133157326,-73.98342992763081,noise +13,40.825385491626605,-73.92618134081594,noise +13,40.82925663237593,-73.94837452376649,noise +13,40.711538717394035,-73.9450714382363,noise +13,40.655993724377105,-73.96085616154012,noise +13,40.757398232236206,-73.9035453259498,noise +13,40.71339278526111,-73.95446299988437,noise +13,40.73249705846839,-74.0018329711023,noise +13,40.72386917687742,-73.98388420879597,noise +13,40.71205142044487,-73.95659571503887,noise +13,40.674448080344725,-73.90944061822229,noise +13,40.85954452501092,-73.92797628437134,noise +13,40.71205142044487,-73.95659571503887,noise +13,40.67786526642703,-73.99806758331361,noise +13,40.70105132656151,-73.91421917246424,noise +13,40.837744459786755,-73.91738218717425,noise +13,40.58740437562875,-73.8098210348053,noise +13,40.68174168332529,-73.95858402679833,noise +13,40.84639448126722,-73.79058933829575,noise +13,40.70252975639297,-73.81356446098884,noise +13,40.705851778014875,-73.92171868395766,noise +13,40.801191152567625,-73.95313514891859,noise +13,40.82563358566415,-73.85942240063027,noise +13,40.68598691657264,-73.99416238121428,noise +13,40.84639448126722,-73.79058933829575,noise +13,40.84361297578655,-73.94013014717568,noise +13,40.85428800392468,-73.90807516602372,noise +13,40.73071564168163,-73.9955620193208,noise +13,40.705523749970276,-73.93251047144246,noise +13,40.813483611158375,-73.91696795401911,noise +13,40.659727162432745,-73.98791847104769,noise +13,40.677752731414074,-73.99811084956158,noise +13,40.730294409657716,-73.98223736510921,noise +13,40.76632040396587,-73.91631918441824,noise +13,40.70279082504312,-73.92937188599319,noise +13,40.78869208944232,-73.94776317433788,noise +13,40.82543701491463,-73.92520931892479,noise +13,40.51358865379272,-74.25123738578493,noise +13,40.7780087446372,-73.98021349023975,noise +13,40.87466151769141,-73.91108799438194,noise +13,40.65251377205136,-73.92349671873286,noise +13,40.673849453207296,-73.79570592032536,noise +13,40.70553708251741,-73.80150947098736,noise +13,40.79834497265409,-73.9607580093174,noise +13,40.72839362151153,-74.0031281261585,noise +13,40.67321228303444,-73.79704172695381,noise +13,40.82837371732443,-73.82407740404882,noise +13,40.67629107855869,-73.85232496006375,noise +13,40.632885637657495,-73.94769778544028,noise +13,40.58017428620698,-73.82885316572036,noise +13,40.693696901972,-73.80036912436834,noise +13,40.67786526642703,-73.99806758331361,noise +13,40.67629107855869,-73.85232496006375,noise +13,40.8217987106222,-73.941519120742,noise +13,40.67626124204606,-73.85260262448354,noise +13,40.81423588356625,-73.86034963761773,noise +13,40.86797938997047,-73.92024792067537,noise +13,40.844671174366525,-73.78779006207095,noise +13,40.746342500662834,-73.89134499223596,noise +13,40.826909545027505,-73.947585025272,noise +13,40.68060710313019,-73.94337713815567,noise +13,40.794381235376115,-73.93556967595676,noise +13,40.78867285503546,-73.9477162431022,noise +13,40.745194040324044,-73.99232748179887,noise +13,40.68161732001389,-74.00394797635653,noise +13,40.78869208944232,-73.94776317433788,noise +13,40.73521408143234,-73.99171521010928,noise +13,40.63606327655426,-73.96787928439106,noise +13,40.676850749305814,-73.98015337290654,noise +13,40.71356059282307,-73.7879622011086,noise +13,40.71240883386746,-73.97801818974338,noise +13,40.77246135980183,-73.96704087525497,noise +13,40.73595506911933,-73.99047743742598,noise +13,40.86637625588829,-73.92825812322728,noise +13,40.74281403767439,-73.98864320212698,noise +13,40.68829091649103,-73.95204982040744,noise +13,40.68829091649103,-73.95204982040744,noise +13,40.65251377205136,-73.92349671873286,noise +13,40.79852629640253,-73.94170209641075,noise +13,40.59232551632592,-73.96073505558596,noise +13,40.84348353994007,-73.93428966534154,noise +13,40.73757206750052,-74.00355074988884,noise +13,40.70252975639297,-73.81356446098884,noise +13,40.69272543254655,-73.85557729043995,noise +13,40.71468084970101,-73.99962484637842,noise +13,40.863851956918054,-73.92523119238143,noise +13,40.694687498114426,-73.95519700843835,noise +13,40.78536042083817,-73.97298193186121,noise +13,40.73941097999583,-74.00539122636924,noise +13,40.741081494011304,-73.98361300341784,noise +13,40.70711578992781,-74.01067623751081,noise +13,40.70711578992781,-74.01067623751081,noise +13,40.742035076513325,-73.99834359413302,noise +13,40.68321657803109,-73.9538706637591,noise +13,40.847274679503094,-73.90732221142008,noise +13,40.84571888777694,-73.93635125286563,noise +13,40.76034977218626,-73.98471283716431,noise +12,40.72306557278975,-73.98907949147022,noise +12,40.86954933988228,-73.9163483681302,noise +12,40.724889306095946,-73.97828105023956,noise +12,40.78131764092335,-73.94922052414825,noise +12,40.78131764092335,-73.94922052414825,noise +12,40.73272209631094,-74.00327626649987,noise +12,40.694723036315025,-73.95482915551852,noise +12,40.65778596987497,-73.9532467064159,noise +12,40.78124207898105,-73.95223925474319,noise +12,40.690553285488825,-73.97034113425282,noise +12,40.720044107703515,-73.99906204047267,noise +12,40.69322784322081,-73.73402913424286,noise +12,40.73243667227844,-74.00193039104539,noise +12,40.718234818867884,-73.98931115907007,noise +12,40.67075398560112,-73.93423273426964,noise +12,40.66770993429379,-73.95733109221207,noise +12,40.809341326684816,-73.94921720559111,noise +12,40.63523221115757,-73.91892276514402,noise +12,40.596551431205654,-73.97703728637812,noise +12,40.77666667046572,-73.78279666282151,noise +12,40.809341326684816,-73.94921720559111,noise +12,40.80897313739811,-73.94832523425542,noise +12,40.710396140950884,-74.00559808648983,noise +12,40.710396140950884,-74.00559808648983,noise +12,40.79852629640253,-73.94170209641075,noise +12,40.670252884882004,-73.7663878378339,noise +12,40.70619093472265,-74.00916484564914,noise +12,40.79884859459583,-73.95002703156024,noise +12,40.742382679356965,-73.87090066646705,noise +12,40.66389569675789,-73.89482426989365,noise +12,40.84031120268388,-73.86305243075523,noise +12,40.847107050269635,-73.91054290168951,noise +12,40.71740349992278,-73.95605472789865,noise +12,40.83881923886737,-73.94262810609011,noise +12,40.80754662512226,-73.95680436250187,noise +12,40.731981059102836,-73.9998484563186,noise +12,40.724889306095946,-73.97828105023956,noise +12,40.81989452751749,-73.95523555304263,noise +12,40.517701360128925,-74.24054207322703,noise +12,40.672874818495956,-73.92390235680942,noise +12,40.85235714407865,-73.86488197890847,noise +12,40.51478878187545,-74.24842225921331,noise +12,40.85235714407865,-73.86488197890847,noise +12,40.65587409108014,-73.95638718869623,noise +11,40.679154133157326,-73.98342992763081,noise +11,40.64269519421472,-73.9697750599414,noise +11,40.85414949158885,-73.88247886741401,noise +11,40.76879864925556,-73.9552590670563,noise +11,40.51478878187545,-74.24842225921331,noise +11,40.679154133157326,-73.98342992763081,noise +11,40.845030647965864,-73.93759885030306,noise +11,40.679154133157326,-73.98342992763081,noise +11,40.679154133157326,-73.98342992763081,noise +11,40.68629444389179,-73.95637450383572,noise +11,40.51478878187545,-74.24842225921331,noise +11,40.81986556513444,-73.9585233555893,noise +11,40.51478878187545,-74.24842225921331,noise +11,40.69979685555231,-73.91782722925754,noise +11,40.73243667227844,-74.00193039104539,noise +11,40.679154133157326,-73.98342992763081,noise +11,40.67075398560112,-73.93423273426964,noise +11,40.64347569802883,-73.99253376166008,noise +11,40.8456416833358,-73.89770308629686,noise +11,40.64713190020787,-74.00462341153786,noise +11,40.7874496154171,-73.94976474816164,noise +11,40.82447733897571,-73.92672794142733,noise +11,40.74840747477931,-73.97093613806149,noise +11,40.831378946066906,-73.9289535299807,noise +11,40.68612207561064,-73.95785656007003,noise +11,40.82410396969219,-73.95284079702623,noise +11,40.675530679593045,-73.88884303361324,noise +11,40.70346233332724,-73.98757873414255,noise +11,40.762137173441126,-73.9899213922278,noise +11,40.65509246269013,-73.91749305861616,noise +11,40.72134942648968,-73.98344469000162,noise +11,40.67791002910098,-73.91780011849846,noise +11,40.72845741060336,-73.97786496822046,noise +11,40.85009965251471,-73.93191918669751,noise +11,40.80416840751694,-73.96670008656616,noise +11,40.86332979842672,-73.92014142197557,noise +11,40.76273118749094,-73.97834090743741,noise +11,40.7431564450354,-73.91870120960044,noise +11,40.809341326684816,-73.94921720559111,noise +11,40.782295188052814,-73.96512583635275,noise +11,40.75562797185144,-73.9793322101903,noise +11,40.71447021154346,-73.80246764609112,noise +11,40.72120509742076,-73.99670626166723,noise +11,40.72349367369547,-73.98825325266078,noise +11,40.86954933988228,-73.9163483681302,noise +11,40.74011360831931,-74.0059614457069,noise +11,40.77149594850549,-73.95329323850163,noise +11,40.73272209631094,-74.00327626649987,noise +10,40.74011360831931,-74.0059614457069,noise +10,40.82447733897571,-73.92672794142733,noise +10,40.726281266809444,-73.98033347711242,noise +10,40.65988643698714,-73.96270287485662,noise +10,40.86332979842672,-73.92014142197557,noise +10,40.813483611158375,-73.91696795401911,noise +10,40.82038914593883,-73.94397718395447,noise +10,40.80663919669057,-73.94630058482072,noise +10,40.78124207898105,-73.95223925474319,noise +10,40.81904732088978,-73.94468644280695,noise +10,40.662848128427804,-73.94282991964144,noise +10,40.66238331569599,-73.89185661164427,noise +10,40.73249705846839,-74.0018329711023,noise +10,40.856516863650164,-73.92756745986682,noise +10,40.75007365225898,-73.9863681919089,noise +10,40.80531267905638,-73.95750295883016,noise +10,40.71461497533741,-73.99959598880683,noise +10,40.805032463482874,-73.95682044265718,noise +10,40.72568572771039,-73.98076659391648,noise +10,40.70511489233935,-74.01028639035476,noise +10,40.72916767899508,-74.00119065008408,noise +10,40.724285234871346,-73.95772058597298,noise +10,40.72308340407834,-73.95874954336652,noise +10,40.758580180458154,-73.82561174171381,noise +10,40.72087195627013,-73.96112830855311,noise +10,40.813483611158375,-73.91696795401911,noise +10,40.724285234871346,-73.95772058597298,noise +10,40.83573106258371,-73.9116242722315,noise +10,40.686762116999795,-73.94594280187722,noise +10,40.8456416833358,-73.89770308629686,noise +10,40.6890099715134,-73.95895452150465,noise +10,40.718234818867884,-73.98931115907007,noise +10,40.73243667227844,-74.00193039104539,noise +10,40.863461305636875,-73.91979780885188,noise +10,40.726306553345665,-73.98411452341261,noise +10,40.82417265543946,-73.9530069547366,noise +10,40.79532613037451,-73.97128765081636,noise +10,40.809341326684816,-73.94921720559111,noise +10,40.754077297110236,-73.97993545774784,noise +10,40.66135420007725,-73.96968010080575,noise +10,40.76889103158107,-73.98209349413949,noise +10,40.79532613037451,-73.97128765081636,noise +10,40.601795759347084,-73.9725664586067,noise +10,40.809341326684816,-73.94921720559111,noise +10,40.809341326684816,-73.94921720559111,noise +10,40.77235003785209,-73.97159360735807,noise +10,40.60656552832717,-73.98327867792767,noise +10,40.80897313739811,-73.94832523425542,noise +10,40.809341326684816,-73.94921720559111,noise +10,40.86637625588829,-73.92825812322728,noise +10,40.86637625588829,-73.92825812322728,noise +10,40.86637625588829,-73.92825812322728,noise +10,40.86564533429852,-73.92693204659633,noise +10,40.745387138999995,-73.97835376389239,noise +10,40.71717511862166,-74.01286752934263,noise +10,40.71922842896598,-73.96289693860493,noise +10,40.856544870014254,-73.9284639349079,noise +10,40.745387138999995,-73.97835376389239,noise +10,40.74505781626459,-73.97860649327806,noise +10,40.71976846791408,-73.9608475654301,noise +10,40.64018174662485,-73.95530566958138,noise +10,40.8170086574251,-73.95949336474038,noise +10,40.725881050889605,-73.98364921184492,noise +10,40.77478494953705,-73.90877703653284,noise +10,40.6841641907244,-73.948948369534,noise +10,40.8393300222397,-73.89903190432462,noise +10,40.83940400814985,-73.93762219805092,noise +10,40.61023812513102,-73.98370274716996,noise +10,40.77478494953705,-73.90877703653284,noise +10,40.72120509742076,-73.99670626166723,noise +09,40.75007365225898,-73.9863681919089,noise +09,40.78124207898105,-73.95223925474319,noise +09,40.711349332895544,-73.95117114409372,noise +09,40.682374757235934,-73.99342717566198,noise +09,40.64178654133947,-73.96032039672582,noise +09,40.665030080957,-73.86648339403456,noise +09,40.76879864925556,-73.9552590670563,noise +09,40.588824165589685,-73.80212281539637,noise +09,40.86074370616709,-73.89537699267457,noise +09,40.58667427843523,-73.80171514636476,noise +09,40.588824165589685,-73.80212281539637,noise +09,40.64460505163214,-73.95210283562616,noise +09,40.665030080957,-73.86648339403456,noise +09,40.86720968747773,-73.92253385348529,noise +09,40.693649253612875,-73.98332174811078,noise +09,40.762582261975396,-74.00038625294978,noise +09,40.7620250740853,-74.00115152953482,noise +09,40.82574216321642,-73.92596053576375,noise +09,40.803348374792265,-73.93102064617844,noise +09,40.76138829902354,-73.99968233971704,noise +09,40.713528939070486,-73.95887449346432,noise +09,40.68511003410028,-73.79810523961973,noise +09,40.588824165589685,-73.80212281539637,noise +09,40.68629541240948,-73.93043861989506,noise +09,40.73243667227844,-74.00193039104539,noise +09,40.64846321068645,-74.00075676991113,noise +09,40.71703310267381,-73.95643735377254,noise +09,40.71703310267381,-73.95643735377254,noise +09,40.72547596785465,-74.0021430514281,noise +09,40.58886785279273,-73.8019894689454,noise +09,40.70476355892339,-74.01032600994962,noise +09,40.74359600160981,-73.98600863609721,noise +09,40.67074844243231,-73.9341390130808,noise +09,40.8008179898468,-73.95343158864141,noise +09,40.734576534044166,-73.95372685810528,noise +09,40.79532613037451,-73.97128765081636,noise +09,40.74173312459783,-74.00308183921501,noise +09,40.62429808180952,-73.99753598472716,noise +09,40.659352782168256,-73.95926110982869,noise +09,40.809341326684816,-73.94921720559111,noise +09,40.83957144885093,-73.89890866121009,noise +09,40.65935825001046,-73.95919983415116,noise +09,40.7491954415477,-73.88966209914204,noise +09,40.73595506911933,-73.99047743742598,noise +09,40.68535086578141,-73.81227839390759,noise +09,40.68876043315337,-73.98084215014617,noise +09,40.71783505261586,-73.95772467766359,noise +09,40.77376928219592,-73.97247756153453,noise +09,40.69578600382978,-73.73167487253768,noise +09,40.809341326684816,-73.94921720559111,noise +09,40.813073413460145,-73.96149351639339,noise +09,40.749793569096404,-73.88384676672344,noise +09,40.72959583237184,-74.00282510607859,noise +09,40.606532590256585,-73.98327508477443,noise +09,40.685263880118065,-73.98263877094436,noise +09,40.85951507984732,-73.89347015025339,noise +09,40.86463881547211,-73.91984700409574,noise +09,40.75911705302456,-73.8341616198524,noise +09,40.66820406598287,-73.95064760056546,noise +09,40.75052430234966,-73.86202432347064,noise +09,40.673155019568576,-73.91264001096313,noise +09,40.82433199855387,-73.95337538768896,noise +09,40.7641502368416,-73.77125319221011,noise +09,40.83646931635206,-73.88927884462429,noise +09,40.87874517173577,-73.87254521957551,noise +09,40.70753055918456,-73.78659995072763,noise +09,40.67462684316156,-73.87725059256253,noise +09,40.88956350713214,-73.89903879191748,noise +09,40.66408306298056,-73.94816714170852,noise +09,40.69940258942161,-73.9274532531371,noise +09,40.690585238525784,-73.95831169390723,noise +09,40.69940258942161,-73.9274532531371,noise +09,40.86637625588829,-73.92825812322728,noise +09,40.68266294555919,-73.99320721087814,noise +08,40.63949622718777,-73.93391763615341,noise +08,40.70279082504312,-73.92937188599319,noise +08,40.84266015372714,-73.9064901485593,noise +08,40.83027009739812,-73.94392188861518,noise +08,40.75752222946044,-73.83407535117406,noise +08,40.73619707023759,-73.84103135759476,noise +08,40.63367686542404,-74.00656802796944,noise +08,40.663622277873486,-73.9555314641465,noise +08,40.86941776211421,-73.91657993473648,noise +08,40.759069198208415,-73.84513509418535,noise +08,40.70855925662165,-74.01334919280744,noise +08,40.73106677750655,-74.00800644799136,noise +08,40.7611850859777,-73.85765968666134,noise +08,40.63367686542404,-74.00656802796944,noise +08,40.85359837276129,-73.93061428416208,noise +08,40.776221110771935,-73.97595353687147,noise +08,40.776221110771935,-73.97595353687147,noise +08,40.66351861201041,-73.95720761647762,noise +08,40.73030401386539,-73.99988454105332,noise +08,40.73211581791865,-73.86718968470113,noise +08,40.86954933988228,-73.9163483681302,noise +08,40.63727718198762,-73.93176520182406,noise +08,40.722534664251036,-73.9593451488693,noise +08,40.75911211847392,-73.84237721543157,noise +08,40.84266849617663,-73.90662386180647,noise +08,40.664696132540044,-73.95723569740849,noise +08,40.75150185095165,-73.90275622090542,noise +08,40.72353705405325,-73.96094276004128,noise +08,40.75911211847392,-73.84237721543157,noise +08,40.663622277873486,-73.9555314641465,noise +08,40.75840450479312,-73.8447901160844,noise +08,40.759069198208415,-73.84513509418535,noise +08,40.675755748482324,-73.95975941502209,noise +08,40.86233869450333,-73.91975577961627,noise +08,40.63684290054418,-73.9307531916987,noise +08,40.86233869450333,-73.91975577961627,noise +08,40.67898080693974,-73.96838498928477,noise +08,40.84430651026821,-73.89329933464242,noise +08,40.842668674438436,-73.90684432705382,noise +08,40.80923225683711,-73.92531783756517,noise +08,40.70547173697579,-73.94290878131963,noise +08,40.72142619496145,-73.96053272934078,noise +08,40.61018676336059,-73.9732581192607,noise +08,40.69093117875725,-73.9454237692852,noise +08,40.820295727069976,-73.94377493616386,noise +08,40.67928818780437,-73.96826226227112,noise +08,40.802853031063144,-73.95650038621442,noise +08,40.85459366944698,-73.92892150279852,noise +08,40.841832660770464,-73.88387761513046,noise +08,40.67904392780673,-73.96835251149052,noise +08,40.76331469056077,-73.92819586194034,noise +08,40.66064330544147,-73.96062996504574,noise +08,40.675964982883755,-73.81819203971499,noise +08,40.58634457833316,-73.93144640992836,noise +08,40.75752222946044,-73.83407535117406,noise +08,40.72598212570057,-73.98055364474064,noise +08,40.865920293467006,-73.92770906652555,noise +08,40.86618344001468,-73.91893042945345,noise +08,40.69869881335158,-73.934760550392,noise +08,40.72362600875017,-73.99830075891683,noise +08,40.70718265703552,-73.89690925800261,noise +08,40.736838630859815,-73.98783592870407,noise +08,40.86920670494563,-73.91697430322539,noise +08,40.691268800897916,-73.8540695379462,noise +08,40.777532891266006,-73.97499624058057,noise +08,40.729337855378795,-74.00103189937474,noise +08,40.85154513058993,-73.90359315022795,noise +08,40.66360870380869,-73.95592075756804,noise +08,40.51478878187545,-74.24842225921331,noise +08,40.70717991873387,-73.8969164759233,noise +08,40.68467596257677,-73.79787939898046,noise +08,40.82945266317917,-73.90657013914971,noise +08,40.764810712781795,-73.9200682228357,noise +08,40.67833141884961,-73.98954108208034,noise +08,40.76331469056077,-73.92819586194034,noise +08,40.76331469056077,-73.92819586194034,noise +08,40.76331469056077,-73.92819586194034,noise +08,40.68464082493478,-73.88908745248416,noise +08,40.719574756642004,-73.99950577096034,noise +08,40.87251709736538,-73.90325178389223,noise +08,40.7515538205044,-74.00363089849026,noise +08,40.87251709736538,-73.90325178389223,noise +08,40.719574756642004,-73.99950577096034,noise +08,40.82410396969219,-73.95284079702623,noise +08,40.73272209631094,-74.00327626649987,noise +08,40.870912011762485,-73.8915355577029,noise +08,40.67319947399522,-73.97632234133977,noise +08,40.85495331728382,-73.89339792991069,noise +08,40.80086445512393,-73.9529511711489,noise +08,40.80008772261381,-73.95301312201354,noise +08,40.83672087313634,-73.9453836800344,noise +08,40.70300777573976,-73.90988150191379,noise +08,40.82420407615433,-73.89021338921339,noise +08,40.73243667227844,-74.00193039104539,noise +08,40.70973845845424,-73.77846633379013,noise +08,40.82416166479311,-73.95297805704422,noise +08,40.82858254558652,-73.89383404254549,noise +08,40.66839779830249,-73.92346768580417,noise +08,40.67319947399522,-73.97632234133977,noise +08,40.82410396969219,-73.95284079702623,noise +08,40.86827722290935,-73.9223084439249,noise +08,40.73272209631094,-74.00327626649987,noise +08,40.6118854666599,-74.01259871757807,noise +08,40.76331469056077,-73.92819586194034,noise +08,40.85009965251471,-73.93191918669751,noise +08,40.50120250034442,-74.24039642422883,noise +08,40.76331469056077,-73.92819586194034,noise +08,40.64846321068645,-74.00075676991113,noise +08,40.820769838109776,-73.95458462467239,noise +08,40.71563327246841,-73.99849214947479,noise +08,40.66850917848048,-73.95874003805616,noise +08,40.76788910959589,-73.98151253285772,noise +08,40.75910440476799,-73.992141787218,noise +08,40.654674929467554,-73.91703947056796,noise +08,40.72304635433853,-73.9890253791316,noise +08,40.81919481536373,-73.9124988801718,noise +08,40.62192825163889,-73.92718444146826,noise +08,40.8393300222397,-73.89903190432462,noise +08,40.76948307211895,-73.95786518258946,noise +08,40.62192825163889,-73.92718444146826,noise +08,40.66839779830249,-73.92346768580417,noise +08,40.758503200003624,-73.990719668021,noise +08,40.71612328915818,-73.93602770291416,noise +08,40.815510167325854,-73.93563231275274,noise +08,40.77184397979831,-73.95906232275007,noise +08,40.78930759239708,-73.94339664132497,noise +08,40.72974957268948,-73.99961393735919,noise +08,40.66776981747083,-73.96388081143122,noise +08,40.730973698542066,-74.00286485390613,noise +08,40.654281299690346,-73.9618050132615,noise +08,40.81575645338887,-73.94479394704723,noise +08,40.67164502459593,-73.9625737321121,noise +08,40.67164502459593,-73.9625737321121,noise +08,40.709118780154334,-73.89810377037215,noise +08,40.827488275580606,-73.9410624498675,noise +08,40.825171959101354,-73.94150170316254,noise +08,40.825171959101354,-73.94150170316254,noise +08,40.723486864052205,-73.95164568611048,noise +08,40.82455462640275,-73.94195389629415,noise +08,40.72468274567255,-73.9987048041998,noise +08,40.870912011762485,-73.8915355577029,noise +08,40.78869208944232,-73.94776317433788,noise +08,40.654281299690346,-73.9618050132615,noise +08,40.6050734698653,-74.00493381416085,noise +08,40.702416031253534,-73.92695947841942,noise +08,40.8343613533865,-73.94168153766111,noise +08,40.678618416637725,-73.76208984776511,noise +08,40.76943287649901,-73.95575685029397,noise +08,40.70172437771922,-73.94140806075738,noise +08,40.72997723507379,-73.99406471762316,noise +08,40.71415597163202,-73.94830134926495,noise +08,40.782295188052814,-73.96512583635275,noise +08,40.767437815899136,-73.92062463615646,noise +08,40.809341326684816,-73.94921720559111,noise +08,40.710826079680466,-74.01609460254794,noise +08,40.84542990010044,-73.91397516413855,noise +08,40.809341326684816,-73.94921720559111,noise +08,40.64797458217468,-74.00370093812889,noise +08,40.77816682413556,-73.9745338347783,noise +08,40.77785397662595,-73.9747722585565,noise +08,40.77926454103367,-73.97374266176602,noise +08,40.8658179676589,-73.92648715707631,noise +08,40.75849777271399,-73.8255686419485,noise +08,40.68308392569982,-73.82642211674666,noise +08,40.844216719023386,-73.91034438927636,noise +08,40.61859442131066,-73.99845832101916,noise +08,40.71758787250421,-73.95731359037745,noise +08,40.83287210916891,-73.94397028666725,noise +08,40.75729156731307,-73.83400373454384,noise +08,40.75729156731307,-73.83400373454384,noise +08,40.76214332952509,-73.86244787190637,noise +08,40.650145653291624,-74.00507409002483,noise +08,40.759069198208415,-73.84513509418535,noise +08,40.68913325349826,-73.95131722410706,noise +08,40.671662601079895,-73.95091901534035,noise +08,40.83690499980585,-73.9037661478319,noise +08,40.82687657229544,-73.94750555800059,noise +08,40.85702748211805,-73.9277331922969,noise +08,40.68187916628095,-73.76608030308165,noise +08,40.703421337106505,-73.90874124491572,noise +08,40.654674929467554,-73.91703947056796,noise +08,40.831491250277175,-73.86437147483633,noise +08,40.677750284910786,-73.85153578351367,noise +08,40.850675768337034,-73.93145953995283,noise +08,40.671662601079895,-73.95091901534035,noise +08,40.724837163187665,-73.9783207529914,noise +08,40.83588065253951,-73.9446724475657,noise +08,40.718923209076685,-73.9845203205241,noise +08,40.81986556513444,-73.9585233555893,noise +08,40.6938317986799,-73.90960541482896,noise +08,40.742740476043465,-73.99824974869024,noise +08,40.69822499448377,-73.8063349190269,noise +08,40.698895710220555,-73.92889996849424,noise +08,40.842394497873734,-73.93536415030978,noise +08,40.85702748211805,-73.9277331922969,noise +08,40.83672087313634,-73.9453836800344,noise +08,40.83235751279932,-73.85890589915455,noise +08,40.74287910747811,-73.98227370643164,noise +08,40.8231203785256,-73.95049657580658,noise +08,40.62986376496369,-74.02845742708722,noise +08,40.67182810375219,-73.77449704271564,noise +08,40.83341441119721,-73.85905543273972,noise +08,40.724837163187665,-73.9783207529914,noise +08,40.67338669096327,-73.77567061602812,noise +08,40.745372131810804,-73.97235576320459,noise +08,40.83229488333874,-73.85931437188688,noise +08,40.72953107218499,-73.98041550317102,noise +08,40.73777081639372,-73.83019487751825,noise +08,40.661969373516115,-73.96163480894957,noise +08,40.74736715966265,-73.88655054366708,noise +08,40.67005923614185,-73.8905572395769,noise +08,40.7381389855122,-73.82494353775654,noise +08,40.6868952248265,-73.99090992128471,noise +08,40.69455870892529,-73.94324268024197,noise +08,40.6868952248265,-73.99090992128471,noise +08,40.75021343931068,-73.98480900166587,noise +08,40.671662601079895,-73.95091901534035,noise +08,40.74014144278965,-73.85795363919259,noise +08,40.718078067526555,-73.83651477460407,noise +08,40.74736157770696,-73.8864567186804,noise +08,40.758159897134526,-73.96259370386208,noise +08,40.631111104630904,-73.8938743780749,noise +08,40.74067575786528,-73.98749601470156,noise +08,40.65162237103501,-74.00447956924909,noise +08,40.72960350054764,-73.9882377434201,noise +08,40.65672500402015,-74.00086138289596,noise +08,40.75578209017699,-73.88333099773321,noise +08,40.70168886746371,-73.91905112243536,noise +08,40.7227741924947,-73.98517963231006,noise +08,40.715203495467634,-73.74913174174242,noise +08,40.75021343931068,-73.98480900166587,noise +08,40.747520498812406,-73.9824023963286,noise +08,40.802853031063144,-73.95650038621442,noise +08,40.67301996440938,-73.98651011578777,noise +08,40.671662601079895,-73.95091901534035,noise +08,40.694275589555886,-73.9018516025562,noise +08,40.83544470584564,-73.9178223122679,noise +08,40.85702748211805,-73.9277331922969,noise +08,40.679154133157326,-73.98342992763081,noise +08,40.87167060507178,-73.84859708957434,noise +08,40.80238678186795,-73.95056978725694,noise +08,40.800859135062844,-73.96073485566565,noise +08,40.75007365225898,-73.9863681919089,noise +08,40.6868952248265,-73.99090992128471,noise +08,40.657738829536974,-73.9520825932431,noise +08,40.73789159992381,-73.71046402051948,noise +08,40.82804069090787,-73.94250370423563,noise +08,40.7505044659363,-73.98545497963656,noise +08,40.86019986016411,-73.92694525965447,noise +08,40.75803955964958,-73.79561735686654,noise +08,40.7023623380662,-73.91290468984582,noise +08,40.65672500402015,-74.00086138289596,noise +08,40.75045253306144,-73.98729206533014,noise +08,40.68578887563995,-73.87381545967219,noise +08,40.88956350713214,-73.89903879191748,noise +08,40.58413030722871,-73.93277355495991,noise +08,40.80452411122284,-73.95530368383024,noise +08,40.72386917687742,-73.98388420879597,noise +08,40.69128975037044,-73.94336806626801,noise +08,40.679154133157326,-73.98342992763081,noise +08,40.756860261882245,-73.96709551866499,noise +08,40.63597510716587,-73.97814064814625,noise +08,40.81532471809258,-73.93780372626738,noise +08,40.711025075865436,-73.9502948686966,noise +08,40.67301996440938,-73.98651011578777,noise +08,40.673975048259635,-73.98569878753527,noise +08,40.71035234591219,-73.94968939220463,noise +08,40.8231203785256,-73.95049657580658,noise +08,40.84622776822681,-73.92045110383464,noise +08,40.62895946802911,-73.89720301377497,noise +08,40.75054379913303,-73.99836503769602,noise +08,40.67301996440938,-73.98651011578777,noise +08,40.669655417096195,-73.9925272262841,noise +08,40.82417265543946,-73.9530069547366,noise +08,40.67299989343686,-73.93071565134677,noise +08,40.655148790037906,-73.95463250129222,noise +08,40.694443398553766,-73.90899153955709,noise +08,40.710028118863534,-74.00910405432064,noise +08,40.74429603065076,-73.91943241581735,noise +08,40.70366760255932,-73.92689318740322,noise +08,40.679154133157326,-73.98342992763081,noise +07,40.74492031449246,-73.92120362347197,noise +07,40.81715149060047,-73.89764210902827,noise +07,40.60578662267473,-73.81848759006915,noise +07,40.90495653910183,-73.85369801695018,noise +07,40.86269808076662,-73.89554022082012,noise +07,40.736838630859815,-73.98783592870407,noise +07,40.673216302954266,-73.93000884558465,noise +07,40.75007365225898,-73.9863681919089,noise +07,40.834703942328744,-73.91825687787646,noise +07,40.8658179676589,-73.92648715707631,noise +07,40.831291164230585,-73.92903312224563,noise +07,40.75007365225898,-73.9863681919089,noise +07,40.74336068876715,-74.00512810363975,noise +07,40.726718504235976,-73.98594002160621,noise +07,40.74429603065076,-73.91943241581735,noise +07,40.74429603065076,-73.91943241581735,noise +07,40.66344835052548,-73.88348528527625,noise +07,40.67823515516535,-73.9547285597109,noise +07,40.854380407780965,-73.93027367488156,noise +07,40.66239570882052,-73.99822662588927,noise +07,40.83610590211243,-73.91743120175903,noise +07,40.75007365225898,-73.9863681919089,noise +07,40.8069224671029,-73.94752490770331,noise +07,40.661969373516115,-73.96163480894957,noise +07,40.633516525695484,-73.96939010826142,noise +07,40.85710713989988,-73.88966020976935,noise +07,40.743349674896926,-73.92027080185663,noise +07,40.679154133157326,-73.98342992763081,noise +07,40.753729918414834,-73.86885743076138,noise +07,40.80142620298141,-73.96593572552614,noise +07,40.74846081763,-73.97612596553832,noise +07,40.76527580585495,-73.91791611169774,noise +07,40.85070662507287,-73.88419828326609,noise +07,40.584850116033806,-73.81903412665736,noise +07,40.772412589860274,-73.98246802608793,noise +07,40.694898192257945,-73.93155477168918,noise +07,40.54195147381688,-74.17742807278975,noise +07,40.64088240670602,-73.95725095920874,noise +07,40.70097709934568,-73.91781856148722,noise +07,40.75975320609293,-73.73779192083671,noise +07,40.84711144985249,-73.93818243577172,noise +07,40.639529600748716,-73.95128855589117,noise +07,40.807460605248814,-73.91930899809635,noise +07,40.60914983844466,-73.75657492235442,noise +07,40.71321949339672,-73.98377135433859,noise +07,40.72951901371953,-73.99981238142182,noise +07,40.69253773551136,-73.9610691004219,noise +07,40.60578662267473,-73.81848759006915,noise +07,40.6723434716513,-73.91384152506731,noise +07,40.802078238502574,-73.93698895923369,noise +07,40.77090216352115,-73.73528940439274,noise +07,40.69962103072387,-73.91760384712082,noise +07,40.60585832827004,-74.00771772850547,noise +07,40.703050857948064,-73.81162985249759,noise +07,40.64423324630882,-74.00765370187337,noise +07,40.650690163832415,-73.95192548527972,noise +07,40.831291164230585,-73.92903312224563,noise +07,40.648513503874106,-73.97931493997817,noise +07,40.82325960395389,-73.94292334560629,noise +07,40.74536798041107,-73.94536473956202,noise +07,40.89610921689435,-73.850610403672,noise +07,40.78869208944232,-73.94776317433788,noise +07,40.80750935449097,-73.94085617981267,noise +07,40.630092124148256,-73.90571079112526,noise +07,40.85525231249302,-73.8962134366257,noise +07,40.648819999233694,-74.00286853366998,noise +07,40.8395936325769,-73.93806654474785,noise +07,40.69357090968229,-73.96460247964477,noise +07,40.73321575770277,-73.98992215843091,noise +07,40.821174807898906,-73.92573438417857,noise +07,40.75979022599973,-73.98792558913458,noise +07,40.81006557840847,-73.95496762012358,noise +07,40.80141124989614,-73.96200232327737,noise +07,40.7018317851356,-73.91932144034594,noise +07,40.61683962067367,-74.02890211954511,noise +07,40.72234313200299,-73.98417679836948,noise +07,40.68371170976865,-73.75896005681177,noise +07,40.59193341093973,-74.06785000615109,noise +07,40.85742689878469,-73.8911056757803,noise +07,40.8123176227482,-73.90353075937233,noise +07,40.8209725910761,-73.82319010314151,noise +07,40.74403165518884,-73.85868154834364,noise +07,40.72031794440261,-74.01216827113397,noise +07,40.73416286221032,-74.00798156190001,noise +07,40.723937712851715,-73.94135606144776,noise +07,40.683442914084075,-73.97605189300448,noise +07,40.720145184054054,-74.01055206071095,noise +07,40.68569456023851,-73.93558815682728,noise +07,40.72129260403856,-73.94887303003198,noise +07,40.68497423684428,-73.92890038959827,noise +07,40.869927681454534,-73.91576215369184,noise +07,40.83527044665184,-73.92386477772774,noise +07,40.65682929474182,-74.00180566320313,noise +07,40.68282210792143,-73.9379994213524,noise +07,40.673768761417016,-73.77595052445031,noise +07,40.68835329416552,-73.95709792714588,noise +07,40.69966175615518,-73.92497895671191,noise +07,40.7223244067798,-74.01174654124661,noise +07,40.64846321068645,-74.00075676991113,noise +07,40.67385964727563,-73.94177501919933,noise +07,40.84506008441916,-73.89801842642285,noise +07,40.84822967357868,-73.90711846937704,noise +07,40.80174149250444,-73.96475806373661,noise +07,40.51358865379272,-74.25123738578493,noise +07,40.71749684950512,-74.00536780937206,noise +07,40.781908847058496,-73.91404278732254,noise +07,40.689836555952226,-73.9146987618356,noise +07,40.63457171448898,-74.02575364459643,noise +07,40.64846321068645,-74.00075676991113,noise +07,40.68753565985462,-73.97749634007833,noise +07,40.78668277837018,-73.97051859264535,noise +07,40.67235556745508,-73.88388790010099,noise +07,40.866120431289104,-73.91910043300693,noise +07,40.83527044665184,-73.92386477772774,noise +07,40.721965148315256,-74.00823263592936,noise +07,40.71735862399461,-74.01600599523357,noise +07,40.869927681454534,-73.91576215369184,noise +07,40.673399921160446,-73.96573434455547,noise +07,40.84413857351579,-73.93751655896854,noise +07,40.83527044665184,-73.92386477772774,noise +07,40.63613946207435,-74.11479884230677,noise +07,40.821174807898906,-73.92573438417857,noise +07,40.678244184649195,-73.77109719297505,noise +07,40.876787545694036,-73.8744473957362,noise +07,40.68304371623181,-73.9708276159393,noise +07,40.87805846746419,-73.85798444306576,noise +07,40.67899646821623,-73.95051703299978,noise +07,40.80066400296945,-73.94646071704003,noise +07,40.67336696020978,-73.96565505122301,noise +07,40.66785267832607,-73.92102070963578,noise +07,40.843299918840465,-73.90679645819236,noise +07,40.8441643715334,-73.93957305356312,noise +07,40.64846321068645,-74.00075676991113,noise +07,40.82721538642215,-73.95024420824345,noise +07,40.75144942301449,-73.88461264775971,noise +07,40.76403289770184,-73.98247023188081,noise +07,40.76454385385818,-73.98560353141943,noise +07,40.85474476934092,-73.90277517232887,noise +07,40.80546707143585,-73.94602700575228,noise +07,40.866062380691545,-73.92249903539675,noise +07,40.80546707143585,-73.94602700575228,noise +07,40.70989253219744,-73.75819087552088,noise +07,40.68839467272436,-73.95765680335838,noise +07,40.642199035436754,-74.01154866606302,noise +07,40.723486864052205,-73.95164568611048,noise +07,40.65387515750073,-73.95449641695308,noise +07,40.876787545694036,-73.8744473957362,noise +07,40.808643408447836,-73.94752355089393,noise +07,40.70430598479837,-73.9251071776235,noise +07,40.70279082504312,-73.92937188599319,noise +07,40.660461716905296,-73.98033486033547,noise +07,40.663126330972496,-73.95089285614004,noise +07,40.64846321068645,-74.00075676991113,noise +07,40.648443997411675,-74.00072433670636,noise +07,40.747038265577366,-73.85515278342407,noise +07,40.64846321068645,-74.00075676991113,noise +07,40.629417204274965,-73.89648538330538,noise +07,40.629186965937215,-73.89684600320335,noise +07,40.62988317038021,-73.89576773013141,noise +07,40.842285665581805,-73.89250384476185,noise +07,40.72136410670285,-73.99266212512684,noise +07,40.5727864192543,-73.9959612673881,noise +07,40.71240883386746,-73.97801818974338,noise +07,40.72164379280751,-73.98913023116697,noise +07,40.76403289770184,-73.98247023188081,noise +07,40.86510132036433,-73.92188192082645,noise +07,40.62796488907648,-74.07981831773897,noise +07,40.758734268604165,-73.86009781919178,noise +07,40.74409549811215,-73.98561877658392,noise +07,40.65868133477729,-73.91952860825741,noise +07,40.86943289077852,-73.89182360620734,noise +07,40.70236596110708,-73.91407321760391,noise +07,40.66586561775161,-73.95088723482779,noise +07,40.8158420752184,-73.90715283306086,noise +07,40.66867158257562,-73.98175271451258,noise +07,40.71639866613833,-74.0096496327318,noise +07,40.71639866613833,-74.0096496327318,noise +07,40.72482385221129,-73.9806369620211,noise +07,40.688463097060605,-73.95713030895381,noise +07,40.67687446642435,-73.94984443468861,noise +07,40.758734268604165,-73.86009781919178,noise +07,40.82416166479311,-73.95297805704422,noise +07,40.710794355268895,-73.96473400771296,noise +07,40.77285143035187,-73.96817073663395,noise +07,40.77314599415243,-73.97152105956438,noise +07,40.82082868072918,-73.95082706368065,noise +07,40.758734268604165,-73.86009781919178,noise +07,40.71362127783672,-73.99533229740807,noise +07,40.773952808368215,-73.97096470411428,noise +07,40.59828741687092,-74.07267454652197,noise +07,40.6823112879981,-73.8219424880881,noise +07,40.74819270728662,-73.89760369983516,noise +07,40.782295188052814,-73.96512583635275,noise +07,40.687228860463215,-73.92221650749558,noise +07,40.634865264620835,-74.02638066806833,noise +07,40.68900794432195,-73.75970174999514,noise +07,40.865965531882864,-73.92985298143955,noise +07,40.754707287552556,-73.9916333785805,noise +07,40.81313557563676,-73.95164196635929,noise +07,40.81316330719954,-73.95232472471494,noise +07,40.75894563555228,-73.86011542348267,noise +07,40.74294903619024,-73.99646700742987,noise +07,40.63930477978432,-73.95896707979566,noise +07,40.81294075342482,-73.95176854795888,noise +07,40.6691721656904,-73.9730434164084,noise +07,40.80111034482709,-73.96521711303465,noise +07,40.758734268604165,-73.86009781919178,noise +07,40.6763227825823,-73.94988090130595,noise +07,40.74294903619024,-73.99646700742987,noise +07,40.773952808368215,-73.97096470411428,noise +07,40.68598691657264,-73.99416238121428,noise +07,40.72482385221129,-73.9806369620211,noise +07,40.69511525130405,-73.93192959250285,noise +07,40.70107610584911,-73.94042044648384,noise +07,40.67075398560112,-73.93423273426964,noise +07,40.74294903619024,-73.99646700742987,noise +07,40.86637625588829,-73.92825812322728,noise +07,40.86637625588829,-73.92825812322728,noise +07,40.74804883018668,-74.00103579825134,noise +07,40.865535758901885,-73.92726840202711,noise +07,40.6691721656904,-73.9730434164084,noise +07,40.63013969986428,-74.10879366275273,noise +07,40.865535758901885,-73.92726840202711,noise +07,40.865657530638266,-73.9288807537734,noise +07,40.797750864587826,-73.94438630463102,noise +07,40.79443620456787,-73.93570325080485,noise +07,40.865535758901885,-73.92726840202711,noise +07,40.79852629640253,-73.94170209641075,noise +07,40.84822967357868,-73.90711846937704,noise +07,40.6866604767611,-73.94022419442646,noise +07,40.88046702754135,-73.88383183457583,noise +07,40.70226789342558,-73.91888091026621,noise +07,40.66863148762805,-73.90892222091747,noise +07,40.83113371469237,-73.94196622443229,noise +07,40.80897313739811,-73.94832523425542,noise +07,40.782295188052814,-73.96512583635275,noise +07,40.721535642574665,-73.98069924686045,noise +07,40.64713190020787,-74.00462341153786,noise +07,40.710396140950884,-74.00559808648983,noise +07,40.734576534044166,-73.95372685810528,noise +07,40.64797458217468,-74.00370093812889,noise +07,40.75394727264738,-73.99764307961806,noise +07,40.82216420707722,-73.94241122870848,noise +07,40.87601965699695,-73.87502379021339,noise +07,40.65989445204391,-73.87874825082487,noise +07,40.65686096527214,-73.92688321149024,noise +07,40.65686096527214,-73.92688321149024,noise +07,40.78027896232064,-73.95293321926803,noise +07,40.715812595487044,-73.95891637209775,noise +07,40.8327951693219,-73.94378966891854,noise +07,40.81252321602286,-73.95096325190634,noise +07,40.822728155899306,-73.93955277520858,noise +07,40.79578675989836,-73.9467607941624,noise +07,40.850728062663016,-73.93650911771923,noise +07,40.8238538977699,-73.94033580947428,noise +07,40.69822499448377,-73.8063349190269,noise +07,40.715221270038704,-73.99171408791376,noise +07,40.71838625539567,-73.9977778127041,noise +07,40.81345129203225,-73.95890667605364,noise +07,40.88013833865084,-73.87654932835632,noise +07,40.862413272010414,-73.9204353586927,noise +07,40.861749992284324,-73.92596744617518,noise +07,40.85352623046203,-73.91696857326866,noise +07,40.706762518457246,-73.9504351061387,noise +07,40.83418694458922,-73.90957372604782,noise +07,40.82391159096631,-73.94044053963125,noise +07,40.63980683172786,-73.95130636951028,noise +07,40.71973933279705,-73.99495668683231,noise +07,40.846643995265964,-73.90468818922982,noise +07,40.51478878187545,-74.24842225921331,noise +07,40.73434974274908,-74.00300933150363,noise +07,40.84651958547254,-73.94006247199843,noise +07,40.63283666831036,-74.0272301322902,noise +07,40.80238678186795,-73.95056978725694,noise +07,40.639529600748716,-73.95128855589117,noise +07,40.715221270038704,-73.99171408791376,noise +07,40.63838006170946,-73.96854834987876,noise +07,40.75548196260744,-73.81543033748679,noise +07,40.65941517743085,-73.9389835134306,noise +07,40.689350739029145,-73.81613264073687,noise +07,40.72960350054764,-73.9882377434201,noise +07,40.67973116659351,-73.93739659508752,noise +07,40.84651958547254,-73.94006247199843,noise +07,40.634483258417816,-73.90179902859428,noise +07,40.847107050269635,-73.91054290168951,noise +07,40.72349367369547,-73.98825325266078,noise +07,40.62204851565206,-74.03163847547069,noise +07,40.66329788066918,-73.89848735419709,noise +07,40.693324622028854,-73.96710163160839,noise +07,40.64516100810856,-73.97384228099202,noise +07,40.718794721647406,-73.98901164934453,noise +07,40.841620613858616,-73.91447161187804,noise +07,40.724837163187665,-73.9783207529914,noise +07,40.78536042083817,-73.97298193186121,noise +07,40.76337543877809,-73.99645870414689,noise +07,40.63597510716587,-73.97814064814625,noise +07,40.87810908194954,-73.90124393514759,noise +07,40.81726755137458,-73.94225650251605,noise +07,40.82710462252894,-73.94803292597352,noise +07,40.6931330690422,-73.96920046515831,noise +07,40.80765418021004,-73.95120524998083,noise +07,40.68035202521423,-73.97476587888686,noise +07,40.51478878187545,-74.24842225921331,noise +07,40.51478878187545,-74.24842225921331,noise +07,40.807351531152186,-73.94951131756017,noise +07,40.673411544568204,-73.86092570144679,noise +07,40.58989000025901,-73.80747002139462,noise +07,40.6607102767057,-73.99409971529775,noise +07,40.74824676081666,-73.97628845012895,noise +07,40.77593675281557,-73.90093330777023,noise +07,40.6935517461009,-73.9647647644769,noise +07,40.68334267445982,-73.9608365021689,noise +07,40.76115165415317,-73.9236498906325,noise +07,40.742377064999275,-73.84215697754966,noise +07,40.8675187532082,-73.88502588935584,noise +07,40.517701360128925,-74.24054207322703,noise +07,40.741622815983966,-73.83094649832996,noise +07,40.70574914909625,-73.92015707544103,noise +07,40.82574216321642,-73.92596053576375,noise +07,40.70574914909625,-73.92015707544103,noise +07,40.7381389855122,-73.82494353775654,noise +07,40.73619707023759,-73.84103135759476,noise +07,40.78867285503546,-73.9477162431022,noise +07,40.7058646109269,-74.00376907391029,noise +07,40.83092586504853,-73.89311120677934,noise +07,40.81331488963938,-73.9613163596365,noise +07,40.83578867655543,-73.91159167136935,noise +07,40.76373637448684,-73.91464743514018,noise +07,40.72100987341383,-73.9554282369718,noise +07,40.54287131924129,-74.19580180207028,noise +07,40.72953107218499,-73.98041550317102,noise +07,40.73566544065434,-73.84569466346682,noise +07,40.809275325908594,-73.94306899574957,noise +07,40.78147952768729,-73.94910124212032,noise +07,40.74736715966265,-73.88655054366708,noise +07,40.69892306592299,-73.91280099100511,noise +07,40.716556396978255,-73.94560840534325,noise +07,40.72894881788312,-73.97836992762664,noise +07,40.76449114200317,-73.98165065394043,noise +07,40.879596535613224,-73.90430102760196,noise +07,40.62343624927606,-74.02509732891079,noise +07,40.59013616474996,-73.97389623946307,noise +07,40.852562519366344,-73.7894493512202,noise +07,40.71167739583549,-73.9622951516429,noise +07,40.863020574369706,-73.91755685806591,noise +06,40.6410403976559,-74.01453196929106,noise +06,40.62343624927606,-74.02509732891079,noise +06,40.715221270038704,-73.99171408791376,noise +06,40.635552387281265,-73.9780218886329,noise +06,40.8631132917257,-73.92061167083497,noise +06,40.76025419952927,-73.98904451652456,noise +06,40.758260616043195,-73.84191720004705,noise +06,40.730294409657716,-73.98223736510921,noise +06,40.86233869450333,-73.91975577961627,noise +06,40.723255018592695,-73.98970359434028,noise +06,40.86177238462559,-73.91846944241072,noise +06,40.740754814414785,-73.88356300554132,noise +06,40.694898192257945,-73.93155477168918,noise +06,40.77090216352115,-73.73528940439274,noise +06,40.74104810167939,-73.9181733069494,noise +06,40.75624514774764,-73.92120466494264,noise +06,40.86720968747773,-73.92253385348529,noise +06,40.74527187576968,-73.97844041501027,noise +06,40.71407671769058,-73.95571062872126,noise +06,40.64998168141934,-73.83758618031825,noise +06,40.71409329553639,-73.95599558769243,noise +06,40.83705220434065,-73.93839054613258,noise +06,40.71407949849501,-73.95580441444469,noise +06,40.71030316602624,-73.95020883877052,noise +06,40.69357090968229,-73.96460247964477,noise +06,40.659727162432745,-73.98791847104769,noise +06,40.73715203941029,-73.97424279137017,noise +06,40.84458981883624,-73.9345741016098,noise +06,40.85235714407865,-73.86488197890847,noise +06,40.79909392222142,-73.9406577829113,noise +06,40.69035130459852,-73.84107575410012,noise +06,40.68052302133125,-73.93490091516608,noise +06,40.73249705846839,-74.0018329711023,noise +06,40.78869208944232,-73.94776317433788,noise +06,40.747520498812406,-73.9824023963286,noise +06,40.71408218916204,-73.9556637312981,noise +06,40.798506157705106,-73.9671218865553,noise +06,40.71749684950512,-74.00536780937206,noise +06,40.73249705846839,-74.0018329711023,noise +06,40.84361297578655,-73.94013014717568,noise +06,40.86016587307797,-73.8937944704027,noise +06,40.65273629503003,-73.96274291110856,noise +06,40.68241996067056,-73.80760669286676,noise +06,40.6935517461009,-73.9647647644769,noise +06,40.72953107218499,-73.98041550317102,noise +06,40.6854520078361,-73.91316475084476,noise +06,40.71407949849501,-73.95580441444469,noise +06,40.710863460346204,-73.95800323427233,noise +06,40.68555675539122,-73.84149101679031,noise +06,40.82465431514079,-73.93835866654024,noise +06,40.822018320722336,-73.95366966707017,noise +06,40.852562519366344,-73.7894493512202,noise +06,40.84711144985249,-73.93818243577172,noise +06,40.8457148166088,-73.9208998970745,noise +06,40.81829614825382,-73.95284491272132,noise +06,40.86587359965432,-73.92765488555312,noise +06,40.68683309747183,-73.95820226176093,noise +06,40.77090216352115,-73.73528940439274,noise +06,40.83811767058312,-73.9448368284078,noise +06,40.70495528708182,-73.92327423366591,noise +06,40.72162232667143,-74.00220786470854,noise +06,40.64713190020787,-74.00462341153786,noise +06,40.71749684950512,-74.00536780937206,noise +06,40.798420806778914,-73.9297255095368,noise +06,40.81220079312061,-73.94225006090635,noise +06,40.75530573640677,-73.99305181582365,noise +06,40.6935517461009,-73.9647647644769,noise +06,40.72208619782934,-74.00180743123855,noise +06,40.72110013701859,-74.0127564517426,noise +06,40.79944013714294,-73.95343255254407,noise +06,40.68814873965035,-73.96985181345853,noise +06,40.8006591798544,-73.9543924667473,noise +06,40.717773318941944,-74.01420599534325,noise +06,40.68814873965035,-73.96985181345853,noise +06,40.704993687318826,-73.92323451550983,noise +06,40.63661687710584,-73.91317425288108,noise +06,40.719574756642004,-73.99950577096034,noise +06,40.833537054920264,-73.9003199427876,noise +06,40.72031794440261,-74.01216827113397,noise +06,40.866120431289104,-73.91910043300693,noise +06,40.72031794440261,-74.01216827113397,noise +06,40.794381235376115,-73.93556967595676,noise +06,40.83632050284274,-73.94055591533866,noise +06,40.83632050284274,-73.94055591533866,noise +06,40.83811767058312,-73.9448368284078,noise +06,40.78867285503546,-73.9477162431022,noise +06,40.78869208944232,-73.94776317433788,noise +06,40.83811767058312,-73.9448368284078,noise +06,40.78867285503546,-73.9477162431022,noise +06,40.84822967357868,-73.90711846937704,noise +06,40.83037631951173,-73.94802675714051,noise +06,40.838191862288745,-73.94501385014351,noise +06,40.83632050284274,-73.94055591533866,noise +06,40.83812039627257,-73.944797072807,noise +06,40.83632050284274,-73.94055591533866,noise +06,40.72162232667143,-74.00220786470854,noise +06,40.71455156281856,-73.93789415466138,noise +06,40.76889103158107,-73.98209349413949,noise +06,40.70097709934568,-73.91781856148722,noise +06,40.79511903736113,-73.94515416364996,noise +06,40.83659591849126,-73.91565257538572,noise +06,40.749546839949886,-73.98797797362238,noise +06,40.73595506911933,-73.99047743742598,noise +06,40.73588925328537,-73.99120995092437,noise +06,40.73249705846839,-74.0018329711023,noise +06,40.82410396969219,-73.95284079702623,noise +06,40.66741545366757,-73.98962209693335,noise +06,40.76486590383176,-73.93842844168927,noise +06,40.76889103158107,-73.98209349413949,noise +06,40.73243667227844,-74.00193039104539,noise +06,40.846060855230085,-73.91353700910688,noise +06,40.74991323646227,-73.8583370288549,noise +06,40.74135662169532,-73.98912701510072,noise +06,40.65555555886979,-73.8409532145081,noise +06,40.73739885090636,-73.9909968516718,noise +06,40.76788910959589,-73.98151253285772,noise +06,40.76398997096683,-73.932869977847,noise +06,40.727819890310215,-73.9947504217104,noise +06,40.76730974104659,-73.98014085683354,noise +06,40.73595506911933,-73.99047743742598,noise +06,40.703608496932276,-73.92462106365191,noise +06,40.65288797201591,-73.97565922362983,noise +06,40.691960855534866,-73.86331386335704,noise +06,40.70333528459349,-73.94648839107312,noise +06,40.85437097067705,-73.88436180017773,noise +06,40.773952808368215,-73.97096470411428,noise +06,40.72543202640792,-73.9967709936638,noise +06,40.72543202640792,-73.9967709936638,noise +06,40.72572296307712,-73.99651121479458,noise +06,40.703818970933284,-73.94207345177706,noise +06,40.72576413344346,-73.99647874202265,noise +06,40.725020322383564,-73.99713179421411,noise +06,40.72543202640792,-73.9967709936638,noise +06,40.75797293015577,-73.98553636938831,noise +06,40.703818970933284,-73.94207345177706,noise +06,40.703818970933284,-73.94207345177706,noise +06,40.71740349992278,-73.95605472789865,noise +06,40.71016829795423,-73.89926001448904,noise +06,40.645952686442776,-73.95197214109083,noise +06,40.74736715966265,-73.88655054366708,noise +06,40.863851956918054,-73.92523119238143,noise +06,40.74195612059354,-73.97792904927313,noise +06,40.86941776211421,-73.91657993473648,noise +06,40.86954933988228,-73.9163483681302,noise +06,40.84337525456916,-73.90493864000894,noise +06,40.59916024480543,-73.961263985129,noise +06,40.67462684316156,-73.87725059256253,noise +06,40.739136625876924,-74.00108617968817,noise +06,40.800779530089486,-73.95334854155793,noise +06,40.69363000655583,-73.98309096204407,noise +06,40.73915309400713,-74.00112587424078,noise +06,40.71286132514765,-73.95712904559723,noise +06,40.68035202521423,-73.97476587888686,noise +06,40.85235714407865,-73.86488197890847,noise +06,40.822728155899306,-73.93955277520858,noise +06,40.78746013632595,-73.94872471747517,noise +06,40.69892306592299,-73.91280099100511,noise +06,40.70153087062594,-73.92077523864975,noise +06,40.69822499448377,-73.8063349190269,noise +06,40.762278541098084,-73.92601303458156,noise +06,40.706075942785255,-74.00420189954657,noise +06,40.72670835063373,-74.00275643361864,noise +06,40.805032463482874,-73.95682044265718,noise +06,40.86177238462559,-73.91846944241072,noise +06,40.58989000025901,-73.80747002139462,noise +06,40.863851956918054,-73.92523119238143,noise +05,40.689350739029145,-73.81613264073687,noise +05,40.584884121212134,-73.9266415931382,noise +05,40.86233869450333,-73.91975577961627,noise +05,40.756860261882245,-73.96709551866499,noise +05,40.75484098916205,-73.98411854690194,noise +05,40.729343291507625,-74.00365494458795,noise +05,40.694443398553766,-73.90899153955709,noise +05,40.70626465728956,-73.8346393577511,noise +05,40.730294409657716,-73.98223736510921,noise +05,40.78867285503546,-73.9477162431022,noise +05,40.722361348035655,-73.97809066797838,noise +05,40.758260616043195,-73.84191720004705,noise +05,40.727113969831926,-73.98788099881043,noise +05,40.71361123283019,-73.96727919258498,noise +05,40.71886609907703,-74.0108440635071,noise +05,40.86279560082573,-73.90685590203529,noise +05,40.83899657567418,-73.91072366506086,noise +05,40.72399101174842,-73.99621186218728,noise +05,40.6938317986799,-73.90960541482896,noise +05,40.66770993429379,-73.95733109221207,noise +05,40.775967294147335,-73.91512640606982,noise +05,40.58774206277285,-73.80986687831003,noise +05,40.78752606925869,-73.94885828086409,noise +05,40.865347221569195,-73.8510157432694,noise +05,40.77090216352115,-73.73528940439274,noise +05,40.74985424754985,-73.98793821748563,noise +05,40.693649253612875,-73.98332174811078,noise +05,40.71867831039044,-73.94049129045375,noise +05,40.72031794440261,-74.01216827113397,noise +05,40.659727162432745,-73.98791847104769,noise +05,40.74359600160981,-73.98600863609721,noise +05,40.732252732127115,-73.99635211222427,noise +05,40.79984321387979,-73.95245706788715,noise +05,40.86233869450333,-73.91975577961627,noise +05,40.73206339279665,-74.00144327493952,noise +05,40.544208767376524,-74.14103979012613,noise +05,40.689584794709646,-73.97198945625917,noise +05,40.70346233332724,-73.98757873414255,noise +05,40.70346233332724,-73.98757873414255,noise +05,40.65778596987497,-73.9532467064159,noise +05,40.886190990633104,-73.85798515292602,noise +05,40.64713190020787,-74.00462341153786,noise +05,40.74902259948163,-73.98803942302837,noise +05,40.703818970933284,-73.94207345177706,noise +05,40.72881076096117,-73.99506063261937,noise +05,40.731410110423155,-73.99697276049245,noise +05,40.82536505699704,-73.93809785431519,noise +05,40.862381539018315,-73.8655123591365,noise +05,40.72707618085859,-74.00018400378333,noise +05,40.70717992196383,-73.89692008276127,noise +05,40.70717992196383,-73.89692008276127,noise +05,40.72543202640792,-73.9967709936638,noise +05,40.703818970933284,-73.94207345177706,noise +05,40.72543202640792,-73.9967709936638,noise +05,40.72543202640792,-73.9967709936638,noise +05,40.85437097067705,-73.88436180017773,noise +05,40.703818970933284,-73.94207345177706,noise +05,40.66131223469554,-73.92568889313746,noise +05,40.64713190020787,-74.00462341153786,noise +05,40.80897313739811,-73.94832523425542,noise +05,40.62964720569662,-74.01069987123932,noise +05,40.7989822967647,-73.94244934283556,noise +05,40.68151921482318,-73.8800790051269,noise +05,40.71740349992278,-73.95605472789865,noise +05,40.758691894828566,-73.91148825226875,noise +05,40.676313118101135,-73.8919097325107,noise +05,40.517701360128925,-74.24054207322703,noise +05,40.70383480693682,-73.9309721372431,noise +05,40.866456912730875,-73.9214573171432,noise +05,40.88564352021236,-73.86145095567082,noise +05,40.725911243215336,-73.9836492044371,noise +05,40.61655032892211,-73.93020153359745,noise +05,40.62343624927606,-74.02509732891079,noise +05,40.718794721647406,-73.98901164934453,noise +05,40.51478878187545,-74.24842225921331,noise +05,40.78861659156473,-73.97723105451014,noise +05,40.82000567127097,-73.95887372499625,noise +05,40.711025075865436,-73.9502948686966,noise +05,40.711025075865436,-73.9502948686966,noise +05,40.80274009729561,-73.95545297453387,noise +05,40.724776043167374,-74.00269502121823,noise +05,40.803116456400865,-73.95631961209878,noise +04,40.68613028878028,-73.9577988636426,noise +04,40.806451529566786,-73.96504815972594,noise +04,40.800779530089486,-73.95334854155793,noise +04,40.717950406521275,-73.95792662022473,noise +04,40.83215400944179,-73.93541384839757,noise +04,40.708005423405226,-74.00616416668282,noise +04,40.70383480693682,-73.9309721372431,noise +04,40.73249705846839,-74.0018329711023,noise +04,40.80633584769022,-73.95586958482606,noise +04,40.61943689479705,-73.93811593133863,noise +04,40.80274009729561,-73.95545297453387,noise +04,40.83320462178908,-73.9448047651251,noise +04,40.82410396969219,-73.95284079702623,noise +04,40.84662805260777,-73.78624769405161,noise +04,40.61683471308187,-74.07988064995432,noise +04,40.85607396454203,-73.93039842148949,noise +04,40.85632085432521,-73.93017765242645,noise +04,40.85567264311442,-73.92941920512644,noise +04,40.66858864922317,-73.87755008545999,noise +04,40.74294903619024,-73.99646700742987,noise +04,40.617423756969266,-73.9311695560462,noise +04,40.81986556513444,-73.9585233555893,noise +04,40.72081430102766,-73.98417355376473,noise +04,40.70495018886934,-73.94282266668937,noise +04,40.86368677809373,-73.8962111194186,noise +04,40.72213557168066,-73.9967458998299,noise +04,40.86720968747773,-73.92253385348529,noise +04,40.72849788734995,-74.00422135332471,noise +04,40.68755779003866,-73.95840373114643,noise +04,40.710436608291346,-73.95429188257941,noise +04,40.77680945200524,-73.95253489358244,noise +04,40.86137704940763,-73.90742547602008,noise +04,40.6917581989445,-73.94155384686717,noise +04,40.74294903619024,-73.99646700742987,noise +04,40.86720968747773,-73.92253385348529,noise +04,40.86769186022512,-73.92121361680864,noise +04,40.86720968747773,-73.92253385348529,noise +04,40.82410396969219,-73.95284079702623,noise +04,40.749288423791,-73.98454213769257,noise +04,40.82578413218591,-73.9080061456026,noise +04,40.64713190020787,-74.00462341153786,noise +04,40.82835528024121,-73.94042933518563,noise +04,40.86026614116041,-73.90163194510812,noise +04,40.743067058559625,-73.99640565185557,noise +04,40.83518985807642,-73.92656797849637,noise +04,40.66073815035474,-73.92503354447872,noise +04,40.64846321068645,-74.00075676991113,noise +04,40.79896648635557,-73.93841134786351,noise +04,40.90378688871885,-73.89953810717138,noise +04,40.76946224790619,-73.75308272590577,noise +04,40.64846321068645,-74.00075676991113,noise +04,40.70346233332724,-73.98757873414255,noise +04,40.86363325886444,-73.88884677876655,noise +04,40.64846321068645,-74.00075676991113,noise +04,40.73249705846839,-74.0018329711023,noise +04,40.73243667227844,-74.00193039104539,noise +04,40.86690288973018,-73.92344531812648,noise +04,40.85423373557348,-73.90216140043216,noise +04,40.84961920123172,-73.931702804536,noise +04,40.83795384235567,-73.8459236161263,noise +04,40.76889103158107,-73.98209349413949,noise +04,40.76403289770184,-73.98247023188081,noise +04,40.82239573846938,-73.87964447578399,noise +04,40.70535918197431,-73.94286920354465,noise +04,40.788812951172666,-73.94220895612223,noise +04,40.68018877816388,-73.79201621248504,noise +04,40.809341326684816,-73.94921720559111,noise +04,40.84887871544967,-73.93269755919363,noise +04,40.77376928219592,-73.97247756153453,noise +04,40.710396140950884,-74.00559808648983,noise +04,40.725020322383564,-73.99713179421411,noise +04,40.70939120268948,-73.94861163637752,noise +04,40.64713190020787,-74.00462341153786,noise +04,40.83215400944179,-73.93541384839757,noise +04,40.629791983602715,-73.92703535796836,noise +04,40.85599500664994,-73.93146490307386,noise +04,40.72349367369547,-73.98825325266078,noise +04,40.83215400944179,-73.93541384839757,noise +04,40.83320462178908,-73.9448047651251,noise +04,40.8115307639222,-73.93643091059799,noise +04,40.73272209631094,-74.00327626649987,noise +04,40.65941517743085,-73.9389835134306,noise +04,40.63597510716587,-73.97814064814625,noise +04,40.72349367369547,-73.98825325266078,noise +04,40.72349367369547,-73.98825325266078,noise +04,40.73249705846839,-74.0018329711023,noise +04,40.73272209631094,-74.00327626649987,noise +04,40.74934479194283,-73.97693770152905,noise +04,40.7561292284094,-73.99429700430439,noise +03,40.765790164066146,-73.98728191879162,noise +03,40.75758919190935,-73.9906187274023,noise +03,40.83073495266584,-73.92202706239397,noise +03,40.574540058551165,-73.99088561544781,noise +03,40.86445948684704,-73.90098220598483,noise +03,40.83215400944179,-73.93541384839757,noise +03,40.7558686048635,-73.99820969949639,noise +03,40.76001756666186,-73.98403789918919,noise +03,40.7561292284094,-73.99429700430439,noise +03,40.82682155097773,-73.94153638618958,noise +03,40.68133779893056,-73.9766619688284,noise +03,40.74985424754985,-73.98793821748563,noise +03,40.73029727299474,-73.95326077765519,noise +03,40.64345623570536,-73.9727186897543,noise +03,40.82458434381666,-73.92666639910703,noise +03,40.74985424754985,-73.98793821748563,noise +03,40.88233674855886,-73.8790586069511,noise +03,40.64713190020787,-74.00462341153786,noise +03,40.75054310134059,-73.98721625509866,noise +03,40.73249705846839,-74.0018329711023,noise +03,40.721144587541026,-73.99370113700846,noise +03,40.71703310267381,-73.95643735377254,noise +03,40.803116456400865,-73.95631961209878,noise +03,40.71703310267381,-73.95643735377254,noise +03,40.805784788214716,-73.95065395621384,noise +03,40.86838740935504,-73.90792551422658,noise +03,40.70346233332724,-73.98757873414255,noise +03,40.82409702198681,-73.89020272629769,noise +03,40.624978431605975,-73.9632483321764,noise +03,40.86885070074758,-73.90722344411115,noise +03,40.84066617281395,-73.93688374255301,noise +03,40.82409702198681,-73.89020272629769,noise +03,40.73029727299474,-73.95326077765519,noise +03,40.73890262699128,-73.98730148534145,noise +03,40.782295188052814,-73.96512583635275,noise +03,40.627989562151356,-74.07986157799392,noise +03,40.809341326684816,-73.94921720559111,noise +03,40.62429808180952,-73.99753598472716,noise +03,40.710396140950884,-74.00559808648983,noise +03,40.80958115130157,-73.93994762874954,noise +03,40.826057719434004,-73.89720926749195,noise +03,40.86954933988228,-73.9163483681302,noise +03,40.809341326684816,-73.94921720559111,noise +03,40.67515861658316,-73.94901294482733,noise +03,40.71577268858863,-74.01152173364832,noise +03,40.83215400944179,-73.93541384839757,noise +03,40.78342346696555,-73.95063441884525,noise +03,40.88013833865084,-73.87654932835632,noise +03,40.81823375712657,-73.95468390261769,noise +03,40.640324786015256,-73.90581884173727,noise +03,40.79823931150129,-73.93378172483544,noise +03,40.833065271886376,-73.93544548679606,noise +03,40.64091417032859,-73.9049135914358,noise +03,40.64269519421472,-73.9697750599414,noise +03,40.82264889923756,-73.91052158514536,noise +03,40.86954933988228,-73.9163483681302,noise +03,40.6704292276592,-73.92818050433377,noise +03,40.86954933988228,-73.9163483681302,noise +03,40.86413239762628,-73.89131161712739,noise +03,40.68643737954079,-73.92919089280218,noise +03,40.68268969919866,-73.96166975989463,noise +02,40.84626742203077,-73.91449455229225,noise +02,40.82214879586051,-73.94456824644851,noise +02,40.6373369880492,-73.93079591578095,noise +02,40.82374571286689,-73.94943384178046,noise +02,40.81832441782712,-73.95490061276992,noise +02,40.77756087664423,-73.95102149427633,noise +02,40.72043656307678,-73.99664136360663,noise +02,40.599580798941275,-73.98996033407023,noise +02,40.886144039075845,-73.82754831941891,noise +02,40.84626742203077,-73.91449455229225,noise +02,40.8701679335775,-73.86523989750705,noise +02,40.685911598793055,-73.8420490561637,noise +02,40.86413239762628,-73.89131161712739,noise +02,40.72060399749035,-73.99678565784696,noise +02,40.84249077739232,-73.86799575765602,noise +02,40.73249705846839,-74.0018329711023,noise +02,40.65059240841297,-73.95452388237052,noise +02,40.584850116033806,-73.81903412665736,noise +02,40.65148241763533,-73.92453220078212,noise +02,40.842271601692524,-73.86834676695746,noise +02,40.66344835052548,-73.88348528527625,noise +02,40.70590844783598,-73.92030476234326,noise +02,40.74978835571634,-73.98776859948752,noise +02,40.83450977172114,-73.94208614689512,noise +02,40.584794324220624,-73.81673732572183,noise +02,40.74091495786753,-73.99208258522924,noise +02,40.81268459449796,-73.90928142332167,noise +02,40.73243667227844,-74.00193039104539,noise +02,40.711132501501076,-73.96654457022544,noise +02,40.74091495786753,-73.99208258522924,noise +02,40.64846575564213,-74.00682174046591,noise +02,40.717950406521275,-73.95792662022473,noise +02,40.75007365225898,-73.9863681919089,noise +02,40.71119497841242,-73.95639427746639,noise +02,40.74985424754985,-73.98793821748563,noise +02,40.69034669951622,-73.9141824609836,noise +02,40.827639771078346,-73.94212103335633,noise +02,40.67920689783087,-73.87633722425063,noise +02,40.74705161330763,-73.88665213308,noise +02,40.65601334120677,-73.96205991089163,noise +02,40.74985424754985,-73.98793821748563,noise +02,40.87512779357395,-73.8751737206958,noise +02,40.66300531295772,-73.95713946117398,noise +02,40.68384715405265,-73.94035651715411,noise +02,40.669867338530906,-73.95050217691752,noise +02,40.630819035400684,-74.01262390814139,noise +02,40.71132330341483,-73.95463755280154,noise +02,40.70994851264966,-73.95549695218213,noise +02,40.70897305909906,-73.95282846931725,noise +02,40.70097709934568,-73.91781856148722,noise +02,40.82920580653401,-73.94529228538596,noise +02,40.66344835052548,-73.88348528527625,noise +02,40.72573834190075,-73.9837791292774,noise +02,40.647796088239645,-74.00572616840957,noise +02,40.679218402099096,-73.94961193080886,noise +02,40.66380462539621,-73.93028184926622,noise +02,40.68384715405265,-73.94035651715411,noise +02,40.72573834190075,-73.9837791292774,noise +02,40.6569208436631,-73.9260902384976,noise +02,40.73619707023759,-73.84103135759476,noise +02,40.65477844354996,-73.91595453513162,noise +02,40.642084278609474,-73.94962195601411,noise +02,40.647796088239645,-74.00572616840957,noise +02,40.79672079841084,-73.96288625344367,noise +02,40.82862920236613,-73.89383035467466,noise +02,40.67583199779889,-73.96643249318275,noise +02,40.848779251763496,-73.90791289647643,noise +02,40.751544596619894,-73.87084320922126,noise +02,40.67178977198568,-73.95310350760485,noise +02,40.67731336490855,-73.9433583033106,noise +02,40.87529249437939,-73.86779684567934,noise +02,40.80416840751694,-73.96670008656616,noise +02,40.88599088210431,-73.82791398812846,noise +02,40.63597510716587,-73.97814064814625,noise +02,40.655203283787664,-73.96102241074334,noise +02,40.749546839949886,-73.98797797362238,noise +02,40.703818970933284,-73.94207345177706,noise +02,40.70502934518503,-73.9231984071931,noise +02,40.704993687318826,-73.92323451550983,noise +02,40.76427777591926,-73.98696453352058,noise +02,40.703818970933284,-73.94207345177706,noise +02,40.704993687318826,-73.92323451550983,noise +02,40.6721725904129,-73.96436509502935,noise +02,40.65523619426295,-73.96094310280094,noise +02,40.66604978107062,-73.93016055020807,noise +02,40.809341326684816,-73.94921720559111,noise +02,40.667918061095726,-73.95606570312708,noise +02,40.74705161330763,-73.88665213308,noise +02,40.71117663576246,-73.77985388229735,noise +02,40.84822967357868,-73.90711846937704,noise +02,40.846759480267366,-73.89243878444907,noise +02,40.83599418147708,-73.92255935859703,noise +02,40.711757186204686,-73.942787970944,noise +02,40.6569208436631,-73.9260902384976,noise +02,40.763497684804435,-73.87813728505814,noise +02,40.70330245619338,-73.92255480953912,noise +02,40.6867212076142,-73.95277570178654,noise +02,40.65409877035123,-73.95094635281875,noise +02,40.657231410257225,-73.96024273146045,noise +02,40.66174727511944,-73.9278330176624,noise +02,40.67164502459593,-73.9625737321121,noise +02,40.67114208348468,-73.86131615755232,noise +02,40.67503199450779,-73.97192346629723,noise +02,40.66945860368953,-73.86283007128145,noise +02,40.66468266778246,-73.95100345119636,noise +02,40.66955466157876,-73.94496182146138,noise +02,40.66162111921814,-73.92799895554676,noise +02,40.662175057227046,-73.95370138991396,noise +02,40.67203599485736,-73.8605824950767,noise +02,40.87527792119058,-73.90616584731168,noise +02,40.662231838259096,-73.93996494118541,noise +02,40.85311596999567,-73.92723860593948,noise +02,40.60089324826416,-74.00073102304206,noise +02,40.67644222097776,-73.89803112005445,noise +02,40.82941736624488,-73.94575102179111,noise +02,40.662946373335245,-73.9537837568906,noise +02,40.65953413160929,-73.95981245157624,noise +02,40.672669889004716,-73.96599788275456,noise +02,40.6626828586663,-73.9537442906802,noise +02,40.65241664966906,-73.92608081286532,noise +02,40.650899647723094,-73.9476548331831,noise +02,40.66283580450438,-73.88303219503399,noise +02,40.67564094367662,-73.90140675351978,noise +02,40.853941752815935,-73.91467627092162,noise +02,40.67164502459593,-73.9625737321121,noise +02,40.75911705302456,-73.8341616198524,noise +02,40.65904306315973,-73.96052638656396,noise +02,40.66380462539621,-73.93028184926622,noise +02,40.82574216321642,-73.92596053576375,noise +02,40.756182262729766,-73.93008770681998,noise +02,40.68386399479994,-73.91115490446242,noise +02,40.83847689725878,-73.91310234847393,noise +02,40.73753636412262,-74.00419305808983,noise +02,40.756182262729766,-73.93008770681998,noise +02,40.67546382505654,-73.90966636198563,noise +02,40.86954933988228,-73.9163483681302,noise +02,40.6798312160888,-73.95829317897811,noise +02,40.66996390825942,-73.93496889842184,noise +02,40.718794721647406,-73.98901164934453,noise +02,40.6355423171986,-73.9228316107911,noise +02,40.75524246160156,-73.97327568440589,noise +02,40.60116497965216,-74.00115955851007,noise +02,40.72349367369547,-73.98825325266078,noise +02,40.66082465194267,-73.96119213418191,noise +02,40.66637963014084,-73.95264952275203,noise +02,40.72306557278975,-73.98907949147022,noise +02,40.72349367369547,-73.98825325266078,noise +02,40.72127151987664,-73.93936340254024,noise +02,40.86437703226751,-73.92653574970558,noise +02,40.72349367369547,-73.98825325266078,noise +02,40.82000567127097,-73.95887372499625,noise +02,40.716966608411326,-73.95482850997517,noise +02,40.82849131212354,-73.94940132798249,noise +02,40.686736828336855,-73.76310294333558,noise +02,40.85207391089936,-73.93331605427876,noise +02,40.759069198208415,-73.84513509418535,noise +02,40.86368677809373,-73.8962111194186,noise +02,40.81383010929395,-73.95192685875286,noise +02,40.691619156786686,-73.9057391758118,noise +02,40.69292612310195,-73.94437276993911,noise +02,40.70511489233935,-74.01028639035476,noise +02,40.74751083599929,-73.87678788017556,noise +02,40.81404951980939,-73.93482088297064,noise +02,40.83215710377952,-73.91861775497439,noise +02,40.834774568844644,-73.92526386989587,noise +02,40.66769071550636,-73.95731668568459,noise +02,40.81383010929395,-73.95192685875286,noise +02,40.76035852252999,-73.98928635061634,noise +02,40.86383828962901,-73.9253179758657,noise +02,40.67973774673329,-73.95788943748877,noise +02,40.584850116033806,-73.81903412665736,noise +02,40.67540265633532,-73.8763550935438,noise +02,40.82771864996198,-73.92223294607396,noise +02,40.77644949210573,-73.90032235446225,noise +01,40.64450907167424,-73.9354405358517,noise +01,40.724837163187665,-73.9783207529914,noise +01,40.82634975075743,-73.89844095252168,noise +01,40.64450907167424,-73.9354405358517,noise +01,40.81160126787708,-73.93489191811648,noise +01,40.83116192333347,-73.91638940385788,noise +01,40.83043563500851,-73.93508668582851,noise +01,40.679218402099096,-73.94961193080886,noise +01,40.79585513226929,-73.9355285213493,noise +01,40.863572501262425,-73.92601241651245,noise +01,40.67845538356709,-73.94967740249261,noise +01,40.68383349740236,-73.94048633019548,noise +01,40.66955466157876,-73.94496182146138,noise +01,40.73234787144493,-73.98493936163591,noise +01,40.748779962243816,-73.9800922442225,noise +01,40.70003480872003,-73.78672131886741,noise +01,40.86452529877404,-73.92661873955323,noise +01,40.584850116033806,-73.81903412665736,noise +01,40.81160126787708,-73.93489191811648,noise +01,40.84771962751652,-73.911199910087,noise +01,40.7110008268698,-73.9583566383919,noise +01,40.738832527923456,-73.86275581250639,noise +01,40.812148204435196,-73.93620995652374,noise +01,40.66415167137597,-73.93713366925313,noise +01,40.719926086520104,-74.00028860242043,noise +01,40.81160126787708,-73.93489191811648,noise +01,40.73249705846839,-74.0018329711023,noise +01,40.83326339547939,-73.9188621318177,noise +01,40.81986556513444,-73.9585233555893,noise +01,40.81160126787708,-73.93489191811648,noise +01,40.66053456514237,-73.89317518595425,noise +01,40.647796088239645,-74.00572616840957,noise +01,40.584850116033806,-73.81903412665736,noise +01,40.81986556513444,-73.9585233555893,noise +01,40.68413717329342,-73.82412260712474,noise +01,40.79585513226929,-73.9355285213493,noise +01,40.8260288671535,-73.8987232785129,noise +01,40.834774568844644,-73.92526386989587,noise +01,40.654281299690346,-73.9618050132615,noise +01,40.675964982883755,-73.81819203971499,noise +01,40.66344835052548,-73.88348528527625,noise +01,40.854380407780965,-73.93027367488156,noise +01,40.7200189067809,-73.98924954484025,noise +01,40.6569208436631,-73.9260902384976,noise +01,40.67089568667941,-73.94835651081851,noise +01,40.83163583002276,-73.91893277478769,noise +01,40.843299918840465,-73.90679645819236,noise +01,40.79975274879061,-73.94645061438308,noise +01,40.718794721647406,-73.98901164934453,noise +01,40.76449114200317,-73.98165065394043,noise +01,40.86437703226751,-73.92653574970558,noise +01,40.82684887458252,-73.92267840202453,noise +01,40.82684887458252,-73.92267840202453,noise +01,40.85040136542404,-73.90452737704356,noise +01,40.8283579239279,-73.921870857862,noise +01,40.85592710577422,-73.92813202780728,noise +01,40.696724380032876,-73.91263437166626,noise +01,40.861842090450736,-73.92408742418567,noise +01,40.6694742880041,-73.94336496041554,noise +01,40.719574756642004,-73.99950577096034,noise +01,40.752566145855184,-73.90524869358502,noise +01,40.680049857476014,-73.94326223933436,noise +01,40.7375053501059,-73.92744424322129,noise +01,40.74241106761097,-73.95631249799588,noise +01,40.68003870003856,-73.94290171149986,noise +01,40.68973630775792,-73.89032301204479,noise +01,40.78869208944232,-73.94776317433788,noise +01,40.83767128291079,-73.7829010648767,noise +01,40.8511417066664,-73.78846704730488,noise +01,40.8511417066664,-73.78846704730488,noise +01,40.80880335944617,-73.95588239816323,noise +01,40.83767128291079,-73.7829010648767,noise +01,40.81006557840847,-73.95496762012358,noise +01,40.8511417066664,-73.78846704730488,noise +01,40.8156923742409,-73.94867767645637,noise +01,40.878395149904705,-73.86406244354966,noise +01,40.85423373557348,-73.90216140043216,noise +01,40.78869208944232,-73.94776317433788,noise +01,40.8393300222397,-73.89903190432462,noise +01,40.629755333308815,-73.958054273694,noise +01,40.834767915966104,-73.90175276120821,noise +01,40.67135851405787,-73.88319749382859,noise +01,40.8156923742409,-73.94867767645637,noise +01,40.8156923742409,-73.94867767645637,noise +01,40.70502934518503,-73.9231984071931,noise +01,40.86838740935504,-73.90792551422658,noise +01,40.659727162432745,-73.98791847104769,noise +01,40.74705161330763,-73.88665213308,noise +01,40.6691721656904,-73.9730434164084,noise +01,40.82154175112983,-73.89026836413356,noise +01,40.6569208436631,-73.9260902384976,noise +01,40.66360870380869,-73.95592075756804,noise +01,40.834287583257066,-73.91560852329935,noise +01,40.82541391930314,-73.92347498460137,noise +01,40.763391585203124,-73.99068649792997,noise +01,40.711132501501076,-73.96654457022544,noise +01,40.86437703226751,-73.92653574970558,noise +01,40.81124929578835,-73.93871788001672,noise +01,40.76427777591926,-73.98696453352058,noise +01,40.64713190020787,-74.00462341153786,noise +01,40.65981773181019,-73.98783916049207,noise +01,40.70999601115178,-73.95771882833029,noise +01,40.809070188381064,-73.94453940284461,noise +01,40.719926086520104,-74.00028860242043,noise +01,40.6713693503306,-73.88305688347518,noise +01,40.6474873398892,-73.95274220980426,noise +01,40.67135028705654,-73.88320471804823,noise +01,40.756871782232295,-73.87297694367003,noise +01,40.714264811077086,-73.98092500015434,noise +01,40.87194125612031,-73.88040812200336,noise +01,40.719574756642004,-73.99950577096034,noise +01,40.70740911688094,-73.91545174899932,noise +01,40.64846321068645,-74.00075676991113,noise +01,40.821748747461925,-73.93533362112933,noise +01,40.821748747461925,-73.93533362112933,noise +01,40.76331469056077,-73.92819586194034,noise +01,40.65925236812994,-73.98843036041136,noise +01,40.659727162432745,-73.98791847104769,noise +01,40.73138812283111,-73.7722929557039,noise +01,40.76889103158107,-73.98209349413949,noise +01,40.68504420429354,-73.98202586879083,noise +01,40.81868640566101,-73.94192649886533,noise +01,40.73588925328537,-73.99120995092437,noise +01,40.82101078083524,-73.8657477158637,noise +01,40.70549475703789,-73.92992446076413,noise +01,40.72055732795014,-74.00351016018516,noise +01,40.659727162432745,-73.98791847104769,noise +01,40.809070188381064,-73.94453940284461,noise +01,40.69396944919769,-73.9298752699534,noise +01,40.67018833203898,-73.79135166087445,noise +01,40.62084753339561,-74.02677136712303,noise +01,40.63440035976175,-73.9694365406507,noise +01,40.71105967590936,-73.94210683695283,noise +01,40.74705161330763,-73.88665213308,noise +01,40.680352149687366,-73.9647897656124,noise +01,40.62116873824924,-74.02649412710947,noise +01,40.68365638082512,-73.88175175248821,noise +01,40.70763172809191,-73.91584100824053,noise +01,40.79941266066981,-73.95336033499711,noise +01,40.68317178251424,-73.84985434496632,noise +01,40.659727162432745,-73.98791847104769,noise +01,40.843857941042664,-73.83043007761825,noise +01,40.79949234668083,-73.95358060157265,noise +01,40.79941266066981,-73.95336033499711,noise +01,40.67853425837212,-73.87617983856373,noise +01,40.74294903619024,-73.99646700742987,noise +01,40.6758862147607,-73.97447915675214,noise +01,40.734434426864034,-73.98990393253564,noise +01,40.6898386526802,-73.94519749162717,noise +01,40.58366903894329,-73.94842756199074,noise +01,40.62116873824924,-74.02649412710947,noise +01,40.8099099635357,-73.95715684466771,noise +01,40.63419461480787,-73.9698689823935,noise +01,40.579152159709444,-73.96603829245366,noise +01,40.80140973782622,-73.96594656979163,noise +01,40.669011528635814,-73.8026419275292,noise +01,40.82574216321642,-73.92596053576375,noise +01,40.620756940159175,-74.0268361698577,noise +01,40.825171959101354,-73.94150170316254,noise +01,40.76889103158107,-73.98209349413949,noise +01,40.70482440604235,-73.92458722833486,noise +01,40.659727162432745,-73.98791847104769,noise +01,40.80897313739811,-73.94832523425542,noise +01,40.6830488270025,-73.85028368113372,noise +01,40.782295188052814,-73.96512583635275,noise +01,40.80140973782622,-73.96594656979163,noise +01,40.80140973782622,-73.96594656979163,noise +01,40.85423373557348,-73.90216140043216,noise +01,40.82574216321642,-73.92596053576375,noise +01,40.80111034482709,-73.96521711303465,noise +01,40.762137173441126,-73.9899213922278,noise +01,40.773952808368215,-73.97096470411428,noise +01,40.773952808368215,-73.97096470411428,noise +01,40.7728495846939,-73.97161144625855,noise +01,40.809341326684816,-73.94921720559111,noise +01,40.772509131383636,-73.971185566675,noise +01,40.77281389597592,-73.97158257830864,noise +01,40.84485329844091,-73.81548958672103,noise +01,40.76126189884153,-73.99427129644627,noise +01,40.64797458217468,-74.00370093812889,noise +01,40.63684290054418,-73.9307531916987,noise +01,40.758580180458154,-73.82561174171381,noise +01,40.741904771091974,-73.98260235921838,noise +01,40.717950406521275,-73.95792662022473,noise +01,40.87119449802614,-73.91409007761176,noise +01,40.64829149819778,-73.96861214712922,noise +01,40.82782370313686,-73.91933489126846,noise +01,40.84079136840153,-73.9140100749652,noise +01,40.70327138926243,-73.9343990191871,noise +01,40.70404255067053,-73.93419268003007,noise +01,40.759069198208415,-73.84513509418535,noise +01,40.84394176122344,-73.93902388879225,noise +01,40.673411544568204,-73.86092570144679,noise +01,40.61891622995297,-73.95826280105574,noise +01,40.83674442999083,-73.93770781056467,noise +01,40.6391392365984,-73.90606192705874,noise +01,40.83674442999083,-73.93770781056467,noise +01,40.63358088438614,-74.00482063015905,noise +01,40.63597510716587,-73.97814064814625,noise +01,40.83112974694643,-73.91744460418215,noise +01,40.83674442999083,-73.93770781056467,noise +01,40.88228797152074,-73.82769935923243,noise +01,40.824250691401936,-73.94932144925482,noise +01,40.904144237017555,-73.84536862241073,noise +01,40.818780327095226,-73.91614483197795,noise +01,40.695605932519314,-73.90407467975567,noise +01,40.6938317986799,-73.90960541482896,noise +01,40.756286707378756,-73.86072018497734,noise +01,40.75911211847392,-73.84237721543157,noise +01,40.729796948451764,-73.95838458100494,noise +01,40.82543701491463,-73.92520931892479,noise +01,40.65904306315973,-73.96052638656396,noise +01,40.72349367369547,-73.98825325266078,noise +01,40.74242105603608,-73.72184082344826,noise +01,40.819868720416075,-73.95247527762842,noise +01,40.72349367369547,-73.98825325266078,noise +01,40.824077581343936,-73.94888438664327,noise +01,40.84014503831177,-73.93754560817383,noise +01,40.64891837720832,-73.96297567933009,noise +01,40.6827204207205,-73.96329222525986,noise +01,40.76449114200317,-73.98165065394043,noise +01,40.72127151987664,-73.93936340254024,noise +01,40.876023136178674,-73.9079077083527,noise +01,40.834774568844644,-73.92526386989587,noise +01,40.70986855492051,-73.96216632330488,noise +01,40.57724405166864,-74.000032398413,noise +01,40.655077133322926,-73.96134684659552,noise +01,40.642003506826605,-73.96069140943182,noise +01,40.68187916628095,-73.76608030308165,noise +01,40.74978811575286,-73.98568612147653,noise +01,40.70590844783598,-73.92030476234326,noise +01,40.66584129383129,-73.89433097543119,noise +01,40.677752731414074,-73.99811084956158,noise +01,40.84361297578655,-73.94013014717568,noise +01,40.68642816773911,-73.86869412484374,noise +01,40.68174168332529,-73.95858402679833,noise +01,40.61655032892211,-73.93020153359745,noise +01,40.759069198208415,-73.84513509418535,noise +01,40.710820157084164,-73.96852499067981,noise +01,40.69957784255969,-73.83235864391618,noise +01,40.63934842887101,-73.91756657299597,noise +01,40.70590844783598,-73.92030476234326,noise +01,40.692040471016604,-73.9145156411089,noise +01,40.81537693201203,-73.93792289674225,noise +01,40.51478878187545,-74.24842225921331,noise +01,40.66360870380869,-73.95592075756804,noise +01,40.710158671315135,-73.96853251703071,noise +01,40.67966614540368,-73.90975440887371,noise +01,40.75729156731307,-73.83400373454384,noise +01,40.87493808734427,-73.90345436994332,noise +01,40.694898192257945,-73.93155477168918,noise +01,40.70198660216234,-73.91329829590244,noise +01,40.68142274682521,-73.95710238584763,noise +01,40.75911211847392,-73.84237721543157,noise +01,40.72001616404089,-73.98927119049361,noise +01,40.72278877838142,-74.00459619096591,noise +01,40.63559076024262,-73.97774084423934,noise +01,40.747520498812406,-73.9824023963286,noise +01,40.6899501539063,-73.93776562103307,noise +01,40.72349367369547,-73.98825325266078,noise +01,40.75108103078343,-73.98685162090624,noise +01,40.820744831931 \ No newline at end of file diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 1.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 1.tiff new file mode 100644 index 0000000..ca31387 Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 1.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 10.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 10.tiff new file mode 100644 index 0000000..57b8ac3 Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 10.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 11.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 11.tiff new file mode 100644 index 0000000..502d69f Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 11.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 12.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 12.tiff new file mode 100644 index 0000000..1d5e0ff Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 12.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 13.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 13.tiff new file mode 100644 index 0000000..85ace5d Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 13.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 14.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 14.tiff new file mode 100644 index 0000000..d9cc62a Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 14.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 15.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 15.tiff new file mode 100644 index 0000000..c53eb8d Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 15.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 16.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 16.tiff new file mode 100644 index 0000000..4d0a692 Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 16.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 17.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 17.tiff new file mode 100644 index 0000000..ab6aaef Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 17.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 18.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 18.tiff new file mode 100644 index 0000000..a8be2d7 Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 18.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 19.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 19.tiff new file mode 100644 index 0000000..e10f75d Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 19.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 2.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 2.tiff new file mode 100644 index 0000000..ba3b405 Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 2.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 20.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 20.tiff new file mode 100644 index 0000000..bedc4ff Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 20.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 21.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 21.tiff new file mode 100644 index 0000000..aa0b177 Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 21.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 22.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 22.tiff new file mode 100644 index 0000000..a3b407f Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 22.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 23.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 23.tiff new file mode 100644 index 0000000..c6d1779 Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 23.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 3.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 3.tiff new file mode 100644 index 0000000..e1a52f1 Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 3.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 4.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 4.tiff new file mode 100644 index 0000000..430df8d Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 4.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 5.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 5.tiff new file mode 100644 index 0000000..163a2c9 Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 5.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 6.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 6.tiff new file mode 100644 index 0000000..3873516 Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 6.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 7.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 7.tiff new file mode 100644 index 0000000..afcb3a6 Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 7.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 8.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 8.tiff new file mode 100644 index 0000000..e7e321b Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 8.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic 9.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic 9.tiff new file mode 100644 index 0000000..6402350 Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic 9.tiff differ diff --git a/FinalProject/more graphs.rtfd/Pasted Graphic.tiff b/FinalProject/more graphs.rtfd/Pasted Graphic.tiff new file mode 100644 index 0000000..362b25a Binary files /dev/null and b/FinalProject/more graphs.rtfd/Pasted Graphic.tiff differ diff --git a/FinalProject/more graphs.rtfd/TXT.rtf b/FinalProject/more graphs.rtfd/TXT.rtf new file mode 100644 index 0000000..44fad9f --- /dev/null +++ b/FinalProject/more graphs.rtfd/TXT.rtf @@ -0,0 +1,114 @@ +{\rtf1\ansi\ansicpg1252\cocoartf1265 +{\fonttbl\f0\fmodern\fcharset0 Courier-Bold;\f1\fmodern\fcharset0 Courier;\f2\fswiss\fcharset0 Helvetica; +} +{\colortbl;\red255\green255\blue255;} +\margl1440\margr1440\vieww24540\viewh14600\viewkind0 +\deftab720 +\pard\pardeftab720\sl340 + +\f0\b\fs28 \cf0 Average Distance to Centroid of Graffiti in Lower Manhattan in Different Time Period\ + +\f1\b0 \ +Left to right: Aug 2013 - Sep 2013 - Jul, Aug, Sep 2013\ +Unit: mile\ +\ +Noise +\f2\fs24 \ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 16.tiff \width7540 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic.tiff \width7420 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 8.tiff \width7540 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 \ +\ +\pard\pardeftab720\sl340 + +\f1\fs28 \cf0 Noise - House of Worship +\f2\fs24 \ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 17.tiff \width7560 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 1.tiff \width7560 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 9.tiff \width7480 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 \ +\pard\pardeftab720\sl340 + +\f1\fs28 \cf0 \ +Noise - Helicopter +\f2\fs24 \ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 18.tiff \width7480 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 2.tiff \width7500 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 10.tiff \width7500 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 \ +\ +\pard\pardeftab720\sl340 + +\f1\fs28 \cf0 Noise - Vehicle +\f2\fs24 \ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 19.tiff \width7420 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 3.tiff \width7420 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 11.tiff \width7420 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 \ +\ +\pard\pardeftab720\sl340 + +\f1\fs28 \cf0 Collection Truck Noise +\f2\fs24 \ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 20.tiff \width7560 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 4.tiff \width7560 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 12.tiff \width7500 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 \ +\ +\pard\pardeftab720\sl340 + +\f1\fs28 \cf0 Noise - Street/Sidewalk +\f2\fs24 \ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 21.tiff \width7540 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 5.tiff \width7420 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 13.tiff \width7540 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 \ +\ +\pard\pardeftab720\sl340 + +\f1\fs28 \cf0 Noise - Commercial +\f2\fs24 \ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 22.tiff \width7420 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 6.tiff \width7540 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 15.tiff \width7540 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 \ +\ +\pard\pardeftab720\sl340 + +\f1\fs28 \cf0 Noise - Park +\f2\fs24 \ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 23.tiff \width7420 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 7.tiff \width7420 \height5060 +}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural +\cf0 {{\NeXTGraphic Pasted Graphic 14.tiff \width7420 \height5060 +}¬}} \ No newline at end of file diff --git a/FinalProject/noise_graffiti.py b/FinalProject/noise_graffiti.py new file mode 100644 index 0000000..5bb77ac --- /dev/null +++ b/FinalProject/noise_graffiti.py @@ -0,0 +1,121 @@ +from datetime import datetime +from geopy.point import Point +from operator import itemgetter +import numpy as np +import matplotlib.nxutils as nx + +if __name__ == '__main__': + f = open('data/311_Service_Requests_from_2010_to_Present.csv') + data = f.readlines() + f.close() + + len(data) + + header_row = data[0] + print header_row + + data = list(set(data)) # this is a hack! + print len(data) + + lower_manhattan = np.array([ + [40.726809, -73.971311], + [40.744207, -74.013583], + [40.707618, -74.023968], + [40.698574, -74.018990], + [40.709375, -73.976590]], float) + + # Get Graffiti data + graffitis = [] + for record in data: + if 'Graffiti' in record.split(',')[5]: + graffitis.append(record) + + # Get id, datetime, point(lat, lng) + formatted_graffitis = [] + for record in graffitis: + array = record.split(',') + formatted_graffitis.append([array[0], + datetime.strptime(array[1], "%m/%d/%Y %I:%M:%S %p"), + Point((array[49], array[50]))]) + + # Graffiti in 2013 w/ coordinates + formatted_graffitis_2013 = [] + for record in formatted_graffitis: + if record[1].year == 2013 and nx.pnpoly(record[2].latitude, record[2].longitude, lower_manhattan) == 1: + formatted_graffitis_2013.append(record) + + # sort by time + formatted_graffitis.sort(key=itemgetter(1), reverse=True) + + # get in months + formatted_graffitis_2013_month_dict = {} + for i in range(1, 13): + l = [] + for record in formatted_graffitis_2013: + if record[1].month == i: + l.append(record) + formatted_graffitis_2013_month_dict[i] = l + + # Get Noise Data + noises = [] + for record in data: + if 'Noise' in record.split(',')[5]: + noises.append(record) + + complaint_type = set() + descriptor = set() + + # Get Complaint Type and Descriptor for noise + for record in noises: + complaint_type.add(record.split(',')[5]) + descriptor.add(record.split(',')[6]) + + # Get id, datetime, point(lat, lng), complaint_type, descriptor + formatted_noises = [] + for record in noises: + array = record.split(',') + formatted_noises.append([array[0], + datetime.strptime(array[1], "%m/%d/%Y %I:%M:%S %p"), + Point((array[49], array[50])), + array[5], + array[6]]) + + # Noises in 2013 w/ coordinates + formatted_noises_2013 = [] + for record in formatted_noises: + if record[1].year == 2013 and nx.pnpoly(record[2].latitude, record[2].longitude, lower_manhattan) == 1: + formatted_noises_2013.append(record) + + # build a dict + formatted_noises_2013_dict = {} + + for c in complaint_type: + l = [] + for record in formatted_noises_2013: + if record[3] == c: + l.append(record) + formatted_noises_2013_dict[c] = l + + for key, value in formatted_noises_2013_dict.iteritems(): + print key + ": " + str(len(value)) + + # build a dict for all months in 2013 + formatted_noises_2013_month_dict = {} + + for i in range(1, 13): + temp_dict = {} + for key, value in formatted_noises_2013_dict.iteritems(): + l = [] + for record in value: + if record[1].month == i: + l.append(record) + temp_dict[key] = l + formatted_noises_2013_month_dict[i] = temp_dict + + for key, value in formatted_noises_2013_month_dict[8].iteritems(): + print key + ": " + str(len(value)) + + + + + diff --git a/Lesson1_restaurants/Restaurant Inspections.ipynb b/Lesson1_restaurants/Restaurant Inspections.ipynb index 4926d7d..0d250a8 100644 --- a/Lesson1_restaurants/Restaurant Inspections.ipynb +++ b/Lesson1_restaurants/Restaurant Inspections.ipynb @@ -33,7 +33,7 @@ "language": "python", "metadata": {}, "outputs": [], - "prompt_number": 58 + "prompt_number": 23 }, { "cell_type": "markdown", @@ -63,13 +63,13 @@ { "metadata": {}, "output_type": "pyout", - "prompt_number": 59, + "prompt_number": 3, "text": [ "(30112340, \"WENDY'S\", 3, '469', 'FLATBUSH AVENUE', 11225, 7182875005, 39, datetime.datetime(2013, 4, 30, 0, 0), 'D', '10F', 12, 'A', datetime.date(2013, 4, 30), datetime.datetime(2013, 8, 30, 1, 1, 8, 80000))" ] } ], - "prompt_number": 59 + "prompt_number": 3 }, { "cell_type": "code", @@ -85,7 +85,7 @@ "language": "python", "metadata": {}, "outputs": [], - "prompt_number": 61 + "prompt_number": 4 }, { "cell_type": "markdown", @@ -106,13 +106,13 @@ { "metadata": {}, "output_type": "pyout", - "prompt_number": 63, + "prompt_number": 5, "text": [ "-1" ] } ], - "prompt_number": 63 + "prompt_number": 5 }, { "cell_type": "code", @@ -126,13 +126,13 @@ { "metadata": {}, "output_type": "pyout", - "prompt_number": 64, + "prompt_number": 6, "text": [ "98" ] } ], - "prompt_number": 64 + "prompt_number": 6 }, { "cell_type": "code", @@ -146,21 +146,21 @@ { "metadata": {}, "output_type": "pyout", - "prompt_number": 21, + "prompt_number": 7, "text": [ - "[]" + "[]" ] }, { "metadata": {}, "output_type": "display_data", - "png": "iVBORw0KGgoAAAANSUhEUgAAAYAAAAD9CAYAAAC1DKAUAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3Xl8FPX9P/DXIqhUuUSyaEKNBuTMBQIhCgS04EEwEa1g\nhYBHrcWvSuvBT0GhIIfUI9iCFUUiHlgthRQ5RDFAFRLAIzVRDo2SQIiAHAkIIcnn98ew2SM7u3Pt\nzuzO6/l47GNnZ2c/8945Pu85PjPjEEIIEBGR7TQzOwAiIjIHEwARkU0xARAR2RQTABGRTTEBEBHZ\nFBMAEZFNKUoAd911F5xOJxITExv7VVdXIysrC0lJScjOzkZNTU3jd/Pnz0dSUhJ69+6N//73v8ZH\nTUREuilKABMmTMDatWu9+s2YMQPp6ekoLi5GWloaZs6cCQAoLS3F4sWLsWPHDixfvhzjx49HQ0OD\n8ZETEZEuihLAwIED0a5dO69++fn5yMnJAQDk5ORgxYoVAICVK1dizJgxaNGiBeLj49G5c2cUFRUZ\nHDYREenVXOsPq6qq4HQ6AQBOpxNVVVUAgP379yMtLa1xuLi4OOzbt8/rtw6HQ+toiYhszcibNxhy\nEtjhcASs1P19J4Sw3Ovpp582PQbGxJjsGBdjUvYymuYE4HQ6ceDAAQBAZWUlYmJiAACxsbEoLy9v\nHK6iogKxsbE6wyQiIqNpTgAjR45EXl4eACAvLw9ZWVmN/ZctW4ba2lqUlZVh9+7d6NevnzHREhno\n9Gng5ElACODoUaC6GqirA44ckf/NkSPAsWNAfX344iRz1NUBp06ZHUVoKUoAY8aMQXp6Onbt2oVO\nnTrh9ddfx9SpU7FlyxYkJSWhsLAQU6ZMAQD06NEDEyZMQJ8+fXDLLbdgyZIlEXPMPyMjw+wQmmBM\nymiJ6ZZbgPh4YMkSoF07oHVroFs34KKL5H9z0UVA27bA88+HJqZwsGJcVozprbcycM01ZkcRWg4R\nigNLwUbqcITkeBaRGpddBuzdC/zlL8BTT3l/J7d4urZlHngAeOml0MZH5nI4gObNgTNnzI7Ezei6\nk1cCExHZFBMAEZFNMQEQacAjmBQNmACIiGyKCYBIgwhp2EY6RfueHhMA2R4rc7IrJgAiIptiAiDS\nINoPDZA9MAGQbbESJ7tjAiDSgOcN7CHaNxKYAMj2WJmTXTEBkG2x4ie7YwIg0iDaDw2QPTABEBHZ\nFBMA2R635klOtB8mZAIg0iDaKwaSRPvGARMA2Z6WyjzaKwayByYAsi1W4mR3TABERDbFBEBEZFNM\nAEQa8CSwf337Ap98InWfdx5w8KA0rSZMCP7bp58GHnkktPGFUlYW8OabZkehDhMAkQY8f+Df9u3A\nhx9K3bW1wI8/St1LlgT/7bPPAs89F7LQNFEzn1euBN56K3SxhAITANket+bJrpgAyLZY8ZPdMQEQ\nUcjwUJm1MQEQUcioSQDcIws/JgAiChm7VeqR9n+ZAMi2eHgi9HbudHcXFAQe1nd+7NwJVFYaHpIq\napeR8vLQxBEquhPAokWLkJ6ejj59+uDhhx8GAFRXVyMrKwtJSUnIzs5GTU2N7kCJQiXSttoiydix\n7u4hQwIPe+qU9+du3YDrrzc+plD6+muzI1BHVwL4+eefMWvWLKxfvx7btm3Drl27sG7dOsyYMQPp\n6ekoLi5GWloaZs6caVS8RGRxRiZU36RAxtKVAFq2bAkhBI4dO4ZffvkFJ0+eRNu2bZGfn4+cnBwA\nQE5ODlasWGFIsEShwENBJCfa9w6b6/lxy5YtsXDhQsTHx+O8887Dgw8+iP79+6OqqgpOpxMA4HQ6\nUVVV1eS306ZNa+zOyMhARkaGnlAixogRwJkzwL59QFIS8PbbwOTJwG9/C/TubXZ0RKElRPRXqkYq\nKChAQbCTJzroSgAHDx7E/fffj9LSUrRr1w633XYbVq1a5TWMw+GAw88c90wAdvLBB+7ukhIpAcyd\nCxw7BixcaF5cRNSU2XuHvhvH06dPN7R8XYeAioqKkJaWhs6dO6N9+/a47bbbsHnzZjidThw4cAAA\nUFlZiZiYGEOCJQoFbpFal9kVcLTTlQAGDhyI7du34+eff8bp06exZs0aDBs2DCNHjkReXh4AIC8v\nD1lZWYYES0TWF6jSZoVuLboSQOvWrTFlyhRkZ2fjmmuuQXJyMoYMGYKpU6diy5YtSEpKQmFhIaZM\nmWJUvGHlcAB79wLDhrm3EisrucUYLawyHzt0AG6/3Zh4HA6gulp/OVbncEivoUPd/VasAM4917yY\nIpGucwAAMH78eIwfP96rX6tWraKm5U9lJbB+vfvzTz8ZW76rmRubu9nXoUPAP/9pXHk1NUCrVsaV\np1Y4E6vr2QMAUFgoNbDwdPIk0LKldZK91fBKYJO1bCm9K7lfOhmLhyPCL9zTPC4OWLAgvOOMJEwA\nRFGGic3tyBGptR35xwRAtqfl8AArWYoGTABEFDZMnNbCBECkAU8qRg7OK3lMAERENsUEQERhw0NA\n1sIEQKSQZ+XFikyekYdcOJ1DiwmAbC/ajhFbudIMZWxy8zHa5q+RmADI9rRUSqxUKBowARBFGbsm\nJyvv+VgVE4BKdl25yJuVKxuzY+PdQCMHEwARRTVutMljAlCJWzBEkYXrrDwmALI9LVuIVt6qtHKF\nZ+XY7IgJgEghVl7KWC05Wi0eK2ECINLAysmAFR4pxQRAFGWsnJysHJsdMQEQkWWpSRjc81GPCYBs\ni1uj9sDEII8JgGwv2loBWVkkJV07zGMmACINIqkiI5LDBEC2ZYctPDNYbbr+7W9mR2BdTAAqWW3h\npvDhVr9+oZyGcmVrHacd5jcTgE05HMBrrwEXXghcd530efx49/crVgCXXmpaeKSDHSourd59F7j8\ncrOjsA4mABt7913gxAng44+lz3l57u82bgQqK82JyyqEABoapG7Xuz9nzoQnHj0aGqSX53/y5ftd\noP8ciJUT0IYNwA8/KBvWtbcvNx20Th8rYQIIgod87OuJJ4DWraXuc84BCgv9D3fuucBXX4UvLrWq\nqqT4zzkHePVV6d2fJ590/9+6Ovnh9LBycpDjbzqcPBma6RNuTABB+C6wkbgAkzbbt0t7SC4VFfLD\nVlUZP/6qKuD0aeDIEW2/dTl+3N399dfyv9m2zf1/6+vVj9Ns4dpYc82XaKA7AZw4cQI5OTlITU1F\njx49UFhYiOrqamRlZSEpKQnZ2dmoqakxIlYiW+nYERgyBLjoInW/27NH+q0/Sh/Wwg0d/378UX7a\nRiLdCeCPf/wjBg8ejC+++ALFxcXo1q0bZsyYgfT0dBQXFyMtLQ0zZ840IlYiQwWr5KxQCXpuse/e\n7b01v2OH/9947rVYjdppavQ80LuXcPKk9F5drT8WK9CVAI4dO4bNmzfjrrvuAgA0b94cbdq0QX5+\nPnJycgAAOTk5WLFihf5IyXCBVgae+2gqUGUUjul15ZXAH/8odR86BFx1lf/hjKg09ZRhh2Vn0iSz\nIzBGcz0/LisrQ4cOHTB+/Hhs374dAwYMQG5uLqqqquB0OgEATqcTVX4OkE6bNq2xOyMjAxkZGXpC\nIdJMrsJSU5GFam/BNwbXlmegY/SB4rbCXk2kcDjkp1e49gAKCgpQUFAQsvJ1JYC6ujps27YNU6ZM\nwcKFC3Hffffhvffe8xrG4XDA4WeJ9EwARGQc39XNSlvkTEDq+G4cT58+3dDydR0CiouLQ/v27ZGZ\nmYmWLVtizJgxWLt2LTp27IgDBw4AACorKxETE2NIsGQsrSvjjBnAsGHuz0eOAHFx7usJ/PnTn4Df\n/lbb+Mxi9K2Iv/5aGu6XX9z9Jk70Hsb30EKwcu+7T9obuO8+ZXEq/U/RWlHrTYbRNl10JYCOHTui\nc+fOKCwsRENDAz744ANce+21yMzMRN7Zq4ry8vKQlZVlSLAUPoFWlKeeAtavd38uKAD27QPuuUf+\nNy+8APjsHJou3FvG8+ZJ77t2ufstWOA9zIsven8OFuMrr0gnhl95xd2Ptz4gpXQdAgKkCn7cuHE4\ndOgQEhMTMXfuXDQ0NGDs2LFISkpCQkICli5dakSsprDy7rRePFYcmJXndagr+VDNfy5X1qI7AVx5\n5ZXYunVrk/7R0vKHC6x9WWHe81kFFEq8Eph0i/QKJ1j8ru9Hjw5e1oYN0vB9+gBG7PiaNW2tkPzM\nZoc9ZCYAMkykJYJQrMSbNknvn38OrF5tfPn+prHVprsdKs5owQRAfqmpVKxWARlFTUVm5jSwWqVq\ntXi0ipb/EQgTQBDRWrkB6v7boUPSDbD27/f/XTRSUgF8+630XlMjTQcl09TVFFTLLbKUxKT0fj9a\nyg63mhrpJnw//yx/8Ztr2quhd5mNlnqBCSAIK64U4VZcDHToANx5JxAb2/T7QM0/I4GWeexwSE1f\nu3eXPmdnS9NIqZtuAhIS1I9XLhY934eT2mn9009Ap05A+/buZrS+WrVSN+0BafijR9X9JhoxAagU\nTQlB6X85dkx692y/7o+VKppwcN0YzJOSw0ZCAN98I1VuwRg9TY1oBrpzJ3DqlNRdUwN8/720kRDq\ndaOsTH8ZntNTz4N8fP/r999rL8tMTADkV6hONloxgVo5cVmxGWi3bsDcuVL3//2ftCeTnAx88on2\nMpU8fyDcT17zNx3lll+j9ubCjQmASAOjH0CuVLiSVbD/4Tp/4XkYRclDUvRMH7s/ojQUmACCsPLW\noV5qm+tF87QIBSvebjsce2Ch+m/R8Axeq2ECCELvCvPkk9KzQ+Ue3iGnuBj4wx+Adu30jd8IrhU6\n0hLAnj3A/PlS95tvAkVF3t/r+T96biFt1Sa2ep8IpidWIxJToPF/+WXTYQIN//zzkflYTLWYAFRS\nu5DPmiVtuTzyiLrfTZ0K/OMf0ddSIZznAHJzgYcekrrHjnV3h5Ln8mHEtQJyv/Es2wrPLQjH+PX8\n9skn1Q3/5z9rH1ckYQIgvzwrlYEDpfcvvgj8m0hrCeGqULRUzHKVkdKyrLw39de/AuXlUrcQ0klf\nOVb6H2qvkfjTn9SPw/f//utfwBNPqC/HKnTfDC7ambWAW2nFIvMY3QpISSX56KNAmzZSd0OD1Owz\n1MxY3pcuBd54Q91vfKffnDnA9u3GxRRu3AMIk1Dveh89Kq1EtbXS+/nnS23Nff3nP0CvXlK3VZNM\nZaU7th07pIuAfLVpA3z1VWjj0DvPli3z/uyqbITwf0W1S329/HmXlSuBv/1NXRxK57Pn//3976X3\np5+W3rt0kcr58EPp81//2rTcG26Q3mfOdDcT9SV3g7xwtZ7SuswPGeK/f22ttvKsggkgCLOOmapd\nUA8elN5dTfFOn5aeQOXrww+BkhKp2+zjwXL27nV3FxVJtwHwdfy4dMM1s4QyedbVBf7+2We1b+Wr\njXvhQul9zx7pXWlb/yVL/PdfuVLd+D2ZubzKPZbXdUFcpOIhIIsye+s8VOM3cyWuqFA3fKimQbBy\nPU/8K5le//uf8mHVTn8r3fTObOefLzUmiCZMAH6cOuVe8H3bHh85oq1MMyo+NVcy2sHhw8aVJTcd\nT5zQX7ZnGa55WF0tP/7vvtM/znCJ5OXv9Glg2zapO5L/hycmAD+uvtp9bC893fu7jIzwxKB2SytS\n2+r7o3TlUvtf1bbcCRaHv+/nzFEXk9J4WreWH378ePl4fFl1DyAUsXsyav3wjSHSEwHPAfjx5Zf+\nj5/rYcWK2YiYXMeG/XGda5AjBFBaGngYrTGWlrrH73lBjxDSIZN333Ufa/cXQ0VF8GswlNxSuKHB\n/8n4UHJNs717pT0HIy/Q0rvMuH6/c6d0b59g899TdbX0n+SmuxnrmBXXazW4BxAmarcUImXB6tLF\nf//9+6XWRoH+96efStcYaN2KCjSNevZ0d7/9trt7/Xpg+HDvYV97renvO3UKPu6rrw4e44oVwKhR\nofmPvjzvNgoAl10mPcbymWeaDhPo94H6+cajdS+sWzfg+uuBtWuVT5uiIuk/de6sbpyh4LpDbqTj\nHkAUMzOJyN250XNlX7HC3V1W5t4a9Bf3unXaL833fPDKL79oK8OX0krL1fTzscfc/aqqAv/G86Zq\ncv850K2RPfde/bWg0sOzhRYQ/BbhgbhOXgPqEuSBA9rH6U99vZSIlHAtm65zgzwERKTRc8+5uwcO\n9N5q93X99dID1/UK9wrravbo+TCTadMC/8bz4iS5ZwZcc03Tfq7/Nnmy4vCC8p1evhdOyR0qVbLx\nsW+ftpj08BfX5s3uaxj0lBOJeAjIj1BUEkKoKzdaFjClPPcYQlVJW2VrLVhLMqNPiD77rLvbdbjr\n44+lMmJjpZYt48b5/61v6yO9zJ4HSg5zKfl9tOwBMAFEMTObgRqVwMx6Ila0cDikmwr6uu466f2W\nW4Dly+UTQCQx8gI4peOK9OWJh4AsyneB/fvfpQtRHA7plZkJPPCA9J0QQJ8+/n9n1PjD6cEHpfdg\nl9n7O3lrB2qara5bp6zMrCzt8SiNxcjhjaRl3K7bS0c6JoAw0dqu3+WBB7xPDq5aJSUFl+PHtccW\nTkpWNtfFNsFaWmzerH6ckb7FBoTmP6xcGR3TJhi7HVoNxtIJYNs2d3O7W281vvx77pHu1+8pM1Pd\nhUhKHoMHhG7lcjjcewKA9024Ro1yt26orASaNQMWLAhNHP7iMoLa8ybdukX+/VmCcd2q2ZeWZWz5\ncne30oRqNs9WXZ5mz5beFy8GbrrJ+7twXsB2993uWKzO0gngs8/c7//6l/Hlv/aa+2ZXLqtWqStD\nTWUTqpPAnpX6yy97f+c6BPDDD+HdwjNra3LnzsC3Y4iErdxIiNFoRv7nd94BVq82rrxA/MW9eHHT\n9dCqdCeA+vp6pKamIjMzEwBQXV2NrKwsJCUlITs7GzVy6ZrCItBDT0KxVaTk6thAArXTnzhRWRl2\nvYGZlRLHt9/67+8vxvp6oGVL48atdX4ruVOplaaxEXQngNzcXPTo0QOOs1N9xowZSE9PR3FxMdLS\n0jBz5kzdQYZSuGZouK4E1vOsWiO4jttrvb+O74lfz+F379Yel5Jxh0uwOOySsFzC+bD3QNO2uFj9\n75UeArYqXQmgoqICq1evxj333ANxdqnOz89HTk4OACAnJwcrPC/3jEJWW1nNTgBaGbmHYpWKXk60\nX+dgtnAu63IP9rH6+uai6zqASZMmYd68eTju0QSlqqoKTqcTAOB0OlElc937NI/LITMyMpARrtts\n2oza597+73/SCeNwkrvaFTDmcYSR1gooEmLUSu+FWEqorXwD3VbDl9J1Q+5EvVoFBQUokHsajQE0\nJ4BVq1YhJiYGqampsgE6HI7GQ0O+pgW7Hh7hWRH0jkPLVYRKGH0ISKmkJOlda7twLbfdjY8HWrXy\n/11urvoY5KazVSrWYNNGa5xW+X9mU7s3ec89yst2PXkvGKMOa/luHE+fPt2Ygs/SnAA+++wz5Ofn\nY/Xq1Th16hSOHz+OsWPHwul04sCBA+jYsSMqKysRExNjZLwUhFGHgMLZlPKXX+QTgNGsUElqec5A\nNAvn4ZJIOTQTLprPAcyaNQvl5eUoKyvDsmXLMHToUCxduhQjR45EXl4eACAvLw9ZRl9iaDCj7m9u\nNKPb0astT+udN7Vu3XLF1C9SE4cdmidblWHXAbgO9UydOhVbtmxBUlISCgsLMWXKFB1lGhWdvGhr\nBaSmgl2zRr6c9eul90ce0RZHqHzwQdN+c+d6tx6K9CQTrSe/5bz1lrHlBToEJHebcrsy5GZwgwcP\nxuDBgwEArVq1ivqWP5FIa6XiecvmcPMX84gRTSu6yZOBG29UVk6kVpJKROp/u+suY8sLtKx//72x\n44p0lr4SOBL85S/Khw3HSWDfh2W89JK2ckKpUyfgd7/z7hfsISnBBGrp43kL39tv1zceIwRbDuQu\novLkb/lQU7mZtTekZB24/36gTRvt45C7CnjjRuDDD7WXG41snwD0bjUp3UI2e+ssXCu8klZAFRXe\nj2k0gpLp63oGsNXl52v7XaBDepHk5ZdDc3PDF180vsxIZ+kE4LtSb99uThwuSivR0aPdt21WIzlZ\nWzNKNeWaLRwXQVm9+bCexygGGr+aJ4GZvUESDp7L/HffeT+ClCSWTgC+IuVuhe++27SfkgpYyaXo\nWhQXWycBBMM28NHNrPnk+fxhcouoBGAXDof31Ykff2xMmUbzV6bnran1kqssPK9RuOoq6d3z0YUl\nJd7DK72JnBoVFcaXSeH3wgtmR2AuSycAK2+1el4S3tAQ+C6WgPpnAnser5Z78LYawZ6uZRRXM02t\n1xEomUaeN+DasUN697zp7HffaRu3GoFuX0HyrLZOf/SR2RGYy9IJwMouvdTdPX068KtfmReLEq4t\n5XC57z7//dVcBWvlw0E85KSN1aZbuJ4bYFURnQCEcDd907rVd/Cg+xbGWhfOUC9EcncctLKvvpLe\n9+8H9uxR/jslN9EKNp/27lU+PgovNTdeM0NZWXhvT202SyeAYCt6fj6QkCB1d+6srXVFXR0wbJjU\nrfQB2r6UtE7Ss+Xz7LPaf2u22FigSxflw6ekuLvlptnGjU37eQ4bjsfxWe1QRqQI951m1briCuCN\nN8yOInwsmwD27gXef9+7n+9K59tWONDDGWprgUGD/LcvrqgADh+WngesxyuvAHfcoa8MF1Yw8vw9\n8tFqhxZI3oYNZkcQ2NGjZkcQPobcCiIU+vRp+nhBPU9SeuMNqRnppEnSs4B9yx0+XP+FQnLHvT3H\nYxdGJLBwXDlN4XfttWZHQC6W3QM4eTL4MGpWetdNoOQeUaxkfKSc3HQ++7A4Xfwd6nvySf3lqmGn\nZG4XdqwDLJsA/NGzlaf1tsikjdyl/O+9p7wMuUrW3zMxXCedibSy432CIioBBONZub/0kvvzs88G\nbu9bWQl8801oY1OLW5jWxg2J6OOap6Wl5sYRTpY9B6DXgw+6ux9/3Lw4XFihq8dpRuHkSgBGP5/A\nyiJ6D8B3K8zqW2U8qUlkXWbfbNIMEZ0AtGDFGjm4B0BmsNNyZ1oCmDcP6NlTXxlaKnOzEsDWrcD5\n55szbiJSLth9vaKJaecAPvxQ38mWo0ebNts6c0a6K+S55+qLzQoi+XJ0rTeC82WnLTEiM0TkSeBv\nvwW6d2/a3/M2ApGusNDsCLS7+26zIyAiJUxLAHKHYg4fBpYsCXxRxuHD3p8PHtQ/XjJOXp4x5URy\nEiSKBJbbA7j44uDD+B4aiIkJTSxkrlGjzI6AKLrZrhUQkRGMOs9BZCbTEoCeFjx6DuPwEBAZwfUk\nMqJIFlEJwHXoh61DiIj0s90hIO4BEBFJIioBGFF5v/mm9HzcAwf0l0VEFMki6hCQUXbsAD75xLzx\nExFZga4EUF5ejiFDhqBnz57IyMjAkiVLAADV1dXIyspCUlISsrOzUSP3dBCVHn7YkGKIiAg6E0CL\nFi3wwgsvoKSkBO+//z4mT56Mb775BjNmzEB6ejqKi4uRlpaGmTNnGhUvEREZRFcC6NixI1LO3n/h\n4osvRt++fbFv3z7k5+cj5+yz/3JycrBixQr9kRIRkaEMuxJ4z549KCkpQVpaGqqqquB0OgEATqcT\nVVVVfoafBgCYNg3IyMhARkZG43N7g1HTDNROd/YjouhSUFCAgoKC0I1AGKC6ulr06dNHrFixQggh\nRNu2bb2+b9eunddnAOLGG4XwHbtUtQd+CSHEpk3Khg30Gj5cfxl88cUXX3KvUDCoym6kuxXQmTNn\nMGrUKNx55524+eabAUhb/QfOtrOsrKxETICb9Xz5pfpxGtGCaMMG/WUQEUUyXQlACIG7774bPXv2\nxMMeTXRGjhyJvLO3hMzLy0NWVpZsGampWsar/je+lB5uIiKKVrrOAXz66ad48803kZSUhNSzNfns\n2bMxdepUjB07FklJSUhISMDSpUub/FbrVvz//gesWqUnaiIiAgDH2eNK4R2pw4GbbhL44APpsysC\n3qaBiKJFKGpWh8MBI6tsW14JTEREEXYvICIiMg4TABGRTTEBEBHZFBMAEZFN8SQwEZFNMQEQEdmU\nYTeDU+vUKXd3QwNQV2dWJERE9mTahWBA2EdLRBQ2vBCMiIgsiwmAiMimmACIiGyKCYCIyKaYAIiI\nbIoJgIjIppgAiIhsigmAiCgEwn+FlXpMAEREIcAEQER+depkdgSSu+4yO4LoxQRAFGXOO8+Ycjp2\nNKYcvWJizI4gejEBhMHKlWZHQHZi1kr97LPmjDdSWPFmkkwAYdC1q9kRULQ7/3x3d329OTG0aGHO\neCPFOeeYHUFTTAAGio8HMjO9+z31FBMAGeOyy+S/697d3d3QELysW2/VHw9FPiYAA0XCxAyH5qY9\nwSG6BXpAked30bYc3nyz2RFEr0hYViImAfhbQV0T+PrrwxsLADzzTODvFyzQVu6KFcD48fLfnzmj\nrVw5rVsbW16w6WJVRq6sSspS+0S8UD1BLy2tab/Bg0MzrmiTmBj4eyYAA0XSIyQfeQQYORK45x71\nv73mmuDDzJmjvlw5Vt+jmDbNuLKef17b7156yd19ww3Bh7fiiv+rXykftpkFa4VrrzU7AvWsuBz4\nsuCs9s/fxAznBJ47V/m4580DYmOBRYvUj6d9e/my771Xen/8cfXlytGbWP/8Z2PikPP008aVlZ2t\n7Xfp6e5up9OYWJRO9xEjjBnfn/6kfFirbWx17gx89JG+MsaMkf8u2AlkrXvJTAAavPGG9+eEBPlh\nJ02S/+7qq93dnltwRjr3XGPLu+MO5cMuXWrsuLUK1ULepYv//u3aaS9TTcUmd6GWkv8bbJgpU5Rv\nkQfbGv/rX5WVEywBeCaacCaADz4IPsyqVfrHE+g/BTuxH2x+Xn21/1ZaTAAajB3r/3Pr1kCrVt7f\nXXSR9H7hhU3LGTdOvkwtzj8faNPGu9/o0frL9TRgQNN+PXv6H/bOO40dt1a+FZnc1tL06erKHTTI\nf38th9VcAlUCvvM2NdX/cEoq7gsukN7l5tETTwQvw3d8crF7Vtx9+siXEyxxev7fYAnAdQiyTRt9\nCRkAMjJRIaCPAAAO60lEQVSCD6O3pV/r1oH/U9u2gX8f7DDpI48Ao0Y17W/rBLBp0yb07t0bSUlJ\neMnPJvjWrcDmze7PkycDDz4odQ8bJr1/9BHw2GPAO+9I3QsWSO+ffOK95bBokXRB2LJlwDffAPPn\nS4dLNm4EvvzSPfM3bwa2bfPey9i6FdiyxTu2lBTg7393f373XeAPfwC+/trdTwhpPGpcd13g73//\n+6b9cnPlhx8yJPg4Z8wI/L3nivHpp8CaNcC//+3ut3at9O5baQ0dCuzeDfy//wf87nfu/hMmuLs9\nV5xAK2BcHJCXJ8071zIxbRpQXOw9XHGxdEhIS+L98MPAMXz2WeDff/edtNzNnSstM74KC6X3tm2B\nv/0NWLJEPokA3pWDv/JcfvtbaZk1QqDxeHJNp/R0oKTE3f/zz4G33pL2vP/1L2l92L1b+s5zmfHk\nL2F7TutQ7G3s3CktS4cOScttSUnT8Uyc6O4uLgZuv71pOa4WUgMHBh/nwoXe9QMQGQkAIgTq6upE\nQkKCKCsrE7W1tSI5OVmUlpY2fu852uuvF8I3it//vmk/PY4fl8praHD3k2ZP08+AEFdd5d1v166m\nw82Y0fR3vmX6fr9li//hfX83bpy7X2Ghu/vee73LnjQpcHmAEMuWBf7+4oubjn/bNvd3+/dL3a+/\n7v27efPcw8+Z412Gq7tvX3f39OnyMfz6102n2eHD8vPq+eeD/2/fV3GxEBUVgae95+fMTP/z0998\nTUlx9+vfP3icJ08KkZEhP27PV36+9H1urv/vv/3W3d2nT/BlS+5/T5ni7jdsmPQ+aZL/6e9vWuzY\n4X+8//hH4Gl98mTweeeSnKxs/vkzdqz38P/+t/fwf/5z0zKnTZPeR44UokOHpt8nJkrvy5dLZdTV\neX9/9Kj8NNPK6Co7JHsARUVF6Ny5M+Lj49GiRQuMHj0aK2Xu2SBEKCLw5sr+Zp/c0jL+UE8fpTH5\nxhGO+WY0NdNfzf/TMi2U/saMZVZLK6BwLA96xuE7HdX+R3/jDjZvImEdCUkjwH379qGTx1m0uLg4\nFLr2kc+adrZ93549AJBx9hUaameEkpVOy8w1OgFEwgLmova/6/lvV14J7NrlfndR0xRSTcsPz1iV\n/M9zzglNApAb1l9bfyXlhDoJeo4rlOPwNx4lCUDp+C691P/w7drpX0cLCgpQUFCgr5AAQpIAHArm\nqisBFBZKx1fNlpsLPPSQ2VE05dlCwXeyhioBBJp9t9wCLF8evvFpsWWL+8Sf53mItm2B2lplrbc6\ndJDelVwpq+T2EJ7UtB5TuvdaW+vdXLVVK6C6WrpdylNPqYvPyA0Vs/e6XXwrfKMSQG2tuwVQKNbH\njIwMZHicKZ+utjVFECE5BBQbG4vy8vLGz+Xl5YiLi/M77A03AElJ3v0GDwYuucS4eJTcwtezBYVr\npXfdstfV2shT377ew6ek+G+N5Ck2Vnrv1s29VdalS9PWIkOHurtdk+3SS5u2jHGdBHadFL3pJqBX\nL6nbVRl06xZ4WvpreuoafswYd8srV7muC6E8p9dVV3m/u2RlAf36Sd19+8qfFPV3Aq5lS/mYe/eW\n/w6QtvSbN5e2tF3Tz3Xb4xYt3NPRcx76GjRI2oMIdOGXK7m4ri8YMMD7flX+4nQtS77t++Wanbqa\nQctNu4svlt5btJCWw6uvllqk5ORILdfS0oK3c7/gAqB/f/fnESOk61E8m1LfckvgMlxbwb58121X\nCymXYC1sPFvGeTY28FxHlPAdvnNn6d31v3wvwLzpJvc6OmyYtJ6kpHgPk5Xl3fzTihfQBeM4e2LB\nUHV1dejatSs+/vhjXHrppejXrx/eeecddD97Vy2Hw4EQjJaIKKoZXXeG5BBQ8+bNsXjxYmRnZ6Ou\nrg733ntvY+VPRETWEJI9gKAj5R4AEZFqRtedEXjUioiIjMAEQERkU0wAREQ2xQRARGRTTABERDbF\nBEBEZFNMAERENsUEQERkU0wAREQ2xQRARGRTTABERDbFBEBEZFNMAERENsUEQERkU0wAREQ2xQRA\nRGRTTABERDbFBEBEZFNMAERENsUEQERkU0wAREQ2xQRARGRTTABERDbFBEBEZFNMAERENsUEQERk\nU0wAREQ2xQTgoaCgwOwQmmBMyjAm5awYF2Myh+YE8Oijj6J79+7o3bs3Hn74YRw7dqzxu/nz5yMp\nKQm9e/fGf//7X0MCDQcrznDGpAxjUs6KcTEmc2hOAMOGDUNJSQm2b9+OEydOYPbs2QCA0tJSLF68\nGDt27MDy5csxfvx4NDQ0GBYwEREZQ3MC+M1vfoNmzZqhWbNmGD58OCoqKgAAK1euxJgxY9CiRQvE\nx8ejc+fOKCoqMixgIiIyiDDAsGHDxD//+U8hhBAPPPCAePPNNxu/u/vuu8X777/vNTwAvvjiiy++\nNLyM1BwB/OY3v8GBAwea9J81axYyMzMBAM888wxatWqF2267TbYch8Ph9VnKAUREZKaACWD9+vUB\nf7xkyRKsXr0aH3/8cWO/2NhYlJeXN36uqKhAbGyszjCJiMhoms8BrF27FvPmzUN+fj7OP//8xv4j\nR47EsmXLUFtbi7KyMuzevRv9+vUzJFgiIjKOQ2g8HtOlSxfU1tbioosuAgAMGDAACxYsAADk5ubi\n1VdfRfPmzTF//nwMHDjQuIiJiMgYhp5RUGDjxo0iNTVVJCYmivnz54d0XBMmTBAxMTGiV69ejf2O\nHz8ubr75ZpGYmCiysrJEdXV143e5ubkiMTFRpKamis2bNzf2Ly0tFf369ROJiYniiSee0BXT3r17\nRUZGhujRo4cYPHiweP311y0R1y+//CL69esnkpOTRf/+/cXzzz9vibiEEKKurk6kpKSIESNGWCKm\nyy67TCQmJoqUlBTRt29fS8RUU1Mjxo0bJ1JSUkT37t3F1q1bTY3p22+/FSkpKY2v1q1bi9zcXNOn\nkxBCvPLKK2LAgAGid+/e4qGHHhJCmD//XnrpJXH55ZeLHj16iEWLFoUtprAmgLq6OpGQkCDKyspE\nbW2tSE5OFqWlpSEb36ZNm8Tnn3/ulQAeffRRMXfuXCGEEHPmzBGPP/64EEKIkpISkZycLGpra0VZ\nWZlISEgQDQ0NQggh+vbtKwoLC4UQQtxwww1izZo1mmOqrKwUX3zxhRBCiIMHDwqn0ylKS0tNj0sI\nIU6cOCGEEOLUqVOiZ8+eYteuXZaI67nnnhN33HGHyMzMFEKYPw/j4+PF4cOHvfqZHdO4cePEa6+9\nJoQQ4syZM+Lo0aOmx+RSX18vOnbsKPbu3Wt6TIcPHxbx8fGipqZG1NfXixtuuEGsXbvW1LiOHj0q\nrrzySvHzzz+L6upq0bdvX7Fnz56wxBTWBPDZZ5+J4cOHN36ePXu2mD17dkjHWVZW5pUAunbtKg4c\nOCCEkCrjrl27CiGEmDVrlpgzZ07jcMOHDxdbtmwR+/fvF926dWvs/84774j77rvPsPhGjBgh1q9f\nb6m4Dh06JLp16yZ+/PFH0+MqLy8X1157rdiwYUPjHoDZMcXHx4tDhw559TMzpqNHj4rLL7+8SX+z\np5PLunXrxDXXXGOJmE6ePCkuu+wysW/fPlFTUyMGDx4stm7dampcq1evFqNHj278/Nhjj4m5c+eG\nJaaw3gto37596NSpU+PnuLg47Nu3L5whoKqqCk6nEwDgdDpRVVUFANi/fz/i4uKaxObbPzY21rCY\n9+zZg5KSEqSlpVkiroaGBiQnJ8PpdGLixIn49a9/bXpckyZNwrx589CsmXtRNTsmh8OBoUOHIjU1\nFYsWLTI9prKyMnTo0AHjx49Hr169cO+99+LkyZOmTyeXZcuWYcyYMQDMn3ctW7bEwoULER8fj44d\nO+Lqq69G//79TY1r0KBBKCoqQllZGSorK7F69WpUVFSEJaawJgDf6wHM5nA4TIuppqYGo0ePxgsv\nvIALL7zQEnE1a9YMX331Ffbs2YMFCxbgiy++MDWuVatWISYmBqmpqbLXjpgxrT799FN89dVXePvt\ntzFr1ixs3rzZ1Jjq6uqwbds2jBo1Ctu2bcPp06fx3nvvmRqTS21tLf7zn//4vU7IjJgOHjyI+++/\nH6Wlpfjhhx+wZcsWrFq1ytS4LrjgArz44ouYOHEibr31VgwaNAjnnHNOWGIKawLwvUagvLzcK2OF\ng9PpbLy4rbKyEjExMX5jq6ioQFxcHGJjYxtvc+Hqr/e6hjNnzmDUqFG48847cfPNN1smLpf4+Hjc\neOON2Lhxo6lxffbZZ8jPz8fll1+OMWPGYMOGDRg7dqzp0+qSSy4BAHTv3h3Z2dkoKioyNaa4uDi0\nb98emZmZaNmyJcaMGYO1a9eiY8eOpi9Ta9asQZ8+fdChQwcA5i/nRUVFSEtLQ+fOndG+fXvcdttt\n2Lx5s+lxZWZmYvXq1fj000/Rtm1bXHnlleGJSdNBK43OnDkjrrjiClFWViZOnz4d8pPAQjQ9B/Do\no482Hj+bPXt2kxMrp0+fFt9//7244oorGk+s9OvXT2zdulU0NDToPgnV0NAgxo4dKyZNmuTV3+y4\nDh48KI4cOSKEkM4B9OjRQ3z00Uemx+VSUFDQeA7AzJhOnDghjh8/LoQQ4qeffhJdu3YV69atM306\npaWlia1bt4r6+noxceJEsWjRItNjEkKI22+/XSxZsqTxs9kxHTt2TCQkJIjDhw+LU6dOiczMTEss\n51VVVUIIIX788UfRrVu3xpP4oY4p7M1ACwoKREpKiujVq5fIzc0N6bhGjx4tLrnkEnHuueeKuLg4\nsXjx4oBNq1588UXRq1cvkZKSIjZt2tTYv6SkRPTr10/06tVLTJ48WVdMmzdvFg6HQyQnJzc2kVuz\nZo3pcRUXF4vU1FSRlJQkhg0bJl599VUhROCmaOGIy6WgoKCxFZCZMX3//fciOTlZJCcni6FDh4qX\nX37Z9JiEEGLnzp2if//+IiEhQWRlZYmamhrTY6qpqRHt27dvTJhCmD+dhBDi9ddfF4MGDRJXXXWV\nmDJliqivrzc9roEDB4rExEQxYMCAxlY84YhJ84VgREQU2fhEMCIim2ICICKyKSYAIiKbYgIgIrIp\nJgAiIptiAiAisqn/DyxNtdlKtbfGAAAAAElFTkSuQmCC\n", + "png": "iVBORw0KGgoAAAANSUhEUgAAAYAAAAEACAYAAAC6d6FnAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3Xl8FPX9P/DXclipIirCRhNqNKCRY0M4YxAIeKCVYCL6\nFawxiFi/lv4EqlYeihoEuaxF0IItHkRaxdryhRQBxWIA5QiiNTVRNBAlCSECciQECEk+vz/GzR7Z\n2Z1rd2Z3Xs/HI4+dzM585r1zfN5zfGbGIYQQICIi22ljdgBERGQOJgAiIptiAiAisikmACIim2IC\nICKyKSYAIiKbUpQAJk6cCKfTiT59+rT0q62tRVZWFlwuF7Kzs1FXV9fy3eLFi+FyudCvXz98/PHH\nxkdNRES6KUoA9913HzZs2ODTb9asWUhPT0dxcTHS0tIwe/ZsAEBpaSlef/117N69G6tWrcKECRPQ\n3NxsfORERKSLogQwdOhQXHTRRT79CgoKkJubCwDIzc3F6tWrAQBr1qzB+PHj0b59eyQmJqJ79+4o\nKioyOGwiItJL8zWAmpoaOJ1OAIDT6URNTQ0A4MCBA0hISGgZLiEhAVVVVTrDJCIioxlyEdjhcMDh\ncAT9noiIrKWd1hGdTicOHjyIuLg4VFdXo2vXrgCA+Ph4VFRUtAxXWVmJ+Pj4VuN3794de/fu1Tp5\nIiJbSkpKQllZmSFlaT4CGDNmDPLz8wEA+fn5yMrKaum/cuVKNDQ0oLy8HN9++y0GDRrUavy9e/dC\nCGG5v2eeecb0GBgTY7JjXIxJ2Z+RO86KjgDGjx+PzZs348iRI+jWrRueffZZPPXUU8jJyYHL5UJS\nUhJWrFgBAOjZsyfuu+8+9O/fH+3atcPy5ct5Cogs6cwZoKkJ6NABOH4caNtW6q6tBfzaPLQ4ehRo\n0wY4/3xpeIpdp04BjY1mRxFeihLA22+/HbC/u+WPvylTpmDKlCnaoyKKgNtvB3btAubPByZOlPol\nJQF79wJC5iHpF18sfS5YADz2WGTiJHMMHAj8+CPwUwv3mKT5GkCsysjIMDuEVhiTMmpj+vJL4NAh\noLLS00/p0fX+/eGJKVKsGJfVYiopAdq0yTA7jLByCCG3rxPmCTscMGnSRACAyy+XKvJnnwWeftr3\nO7lV030287e/BV56KbzxkbkcDqBdO+DsWbMj8WVk3clnARER2RQTAJEGPHilWMAEQERkU0wARBqw\nZbM9xPqRHhMA2R4rc7IrJgAiIptiAiDSINZPDZA9MAGQbbESJ7tjAiDSgNcN7CHWdxKYAMj2WJmT\nXTEBkG2x4ie7YwIg0iDWTw2QPTABEBHZFBMA2R735klOrJ8mZAIg0iDWKwaSxPrOARMA2Z6WyjzW\nKwayByYAsi1W4mR3TABERDbFBEBEZFNMAEQa8CJwYAMHAh99JHX/7GfAoUPSvLrvvtDjPvMM8Oij\n4Y0vnLKygL/+1ewo1GECINKA1w8C+/RT4IMPpO6GBuD776Xu5ctDj7tgAfDCC2ELTRM1y3nNGuBv\nfwtfLOHABEC2x715sismALItVvxkd0wARBQ2PFVmbUwARBQ2ahIAj8gijwmAiMLGbpV6tP1e3Qlg\n2bJlSE9PR//+/TF16lQAQG1tLbKysuByuZCdnY26ujrdgRIZjacnwm/PHk93YWHwYf2Xx549QHW1\n4SGponYdqagITxzhoisB/Pjjj5gzZw42btyIXbt24ZtvvsH777+PWbNmIT09HcXFxUhLS8Ps2bON\nipfIcNG21xZNcnI83SNGBB/29Gnf/5OTgZtvNj6mcPryS7MjUEdXAujQoQOEEDh+/DhOnTqF+vp6\nXHjhhSgoKEBubi4AIDc3F6tXrzYkWCKyPiMTqn9SIGPpTgBLly5FYmIi4uLiMGTIEAwePBg1NTVw\nOp0AAKfTiZqaGkOCJQoHngoiObF+dKgrARw6dAgPPfQQSktL8d1332H79u1Yu3atzzAOhwOOWJ+L\nKoweDYwaBfTuDdx9t9Rv+nTgs8/MjYsoEphsraWdnpGLioqQlpaG7t27AwDuvPNObN26FU6nEwcP\nHkRcXByqq6vRtWvXgOPn5eW1dGdkZCAjI0NPOFHhvfc83SUlwFtvAfPnA8ePA0uXmhcXEbVmhYRV\nWFiIwlBX0DXSlQCGDh2KKVOm4Mcff8R5552H9evXY8qUKRBCID8/H48//jjy8/ORlZUVcHzvBEBk\nFh6gWpcVKmCz+e8cz5w507CydSWACy64ADNmzEB2djbq6+tx8803Y8SIERg0aBBycnLgcrmQlJSE\nFStWGBUvEVlcsEpbCCZcK9GVAABgwoQJmDBhgk+/jh07xkTLH4dDeprhpEnAxo3SyltdDVx2GfdM\nYoFVKqIuXYCRI4G//13/euVwACdOAB07GhObVbmX3YgRwKZNUvfq1cD//I/0FFJShncCh1BdLVX+\nbj/8YGz57mZubO5mX4cPS5W/Ucy+7zKSidX97gEA2LkTOHvW9/v6eu6sBcMEYLIOHaRPJc9LJ2Ox\nYoi8SM/zhARgyZLITjOaMAEQxRgmNo+jR6XWdhQYEwDZnpZTFqxkKRYwARBRxDBxWgsTAJEGVmlB\nRKFxWcljAiAisikmACKKGJ4CshYmACKFvCsvVmTyjDzlwvkcXkwAZHuxdo7YypVmOGOTW46xtnyN\nxARAtqelUmKlQrGACYAoxtg1OVn5yMeqmABUsuvGRb6sXNmYHVuop4GSdTABEFFM406bPCYAlbgH\nQxRduM3KYwIg29Oyh2jlvUorV3hWjs2OmACIFGLlpYzVkqPV4rESJgAiDaycDFjhkVJMAEQxxsrJ\nycqx2RETABFZlpqEwSMf9ZgAyLa4N2oPTAzymADI9mKtFZCVRVPStcMyZgIg0iCaKjIiOUwAZFt2\n2MMzg9Xm68svmx2BdTEBqGS1lZsih3v9+oVzHsqVrXWadljeTAA25XAAr70GnH8+cMMN0v8TJni+\nX70auOwy08IjHexQcWn1zjvAFVeYHYV1MAHY2DvvACdPAv/+t/R/fr7nu82bgepqc+KyCiGA5map\n2/0ZyNmzkYlHj+Zm6c/7N/nz/y7Ybw7Gyglo0ybgu++UDes+2pebD1rnj5UwAYTAUz729cQTwAUX\nSN1t2wI7dwYe7pxzgC++iFxcatXUSPG3bQu8+qr0GciTT3p+b2Oj/HB6WDk5yAk0H+rrwzN/Io0J\nIAT/FTYaV2DS5tNPpSMkt8pK+WFraoyffk0NcOYMcPSotnHdTpzwdH/5pfw4u3Z5fm9Tk/ppmi1S\nO2vu5RILdCeAkydPIjc3F6mpqejZsyd27tyJ2tpaZGVlweVyITs7G3V1dUbESmQrcXHAiBHAxRer\nG6+sTBo3EKUva+GOTmDffy8/b6OR7gTwm9/8BsOHD8fnn3+O4uJiJCcnY9asWUhPT0dxcTHS0tIw\ne/ZsI2IlMlSoSs4KlaD3Hvu33/ruze/eHXgc76MWq1E7T41eBnqPEurrpc/aWv2xWIGuBHD8+HFs\n3boVEydOBAC0a9cOnTp1QkFBAXJzcwEAubm5WL16tf5IyXDBNgZe+2gtWGUUifl11VXAb34jdR8+\nDAwYEHg4IypNPWXYYd2ZNs3sCIyhKwGUl5ejS5cumDBhAnr37o0HHngA9fX1qKmpgdPpBAA4nU7U\nhOMEKZFB5CosNRVZuI4W/GNw73kGO0cfLG4rHNVEi2DzMVaOANrpGbmxsRG7du3CjBkzsHTpUjz4\n4IN49913fYZxOBxwyMzJvLy8lu6MjAxkZGToCYeI0LristIeOROQeoWFhSgsLAxL2boSQEJCAjp3\n7ozMzEwAwPjx4/Hmm28iLi4OBw8eRFxcHKqrq9G1a9eA43snAIo8rRvjrFnA1q3ABx9I/x89CvTp\nI91HcP31gcf53e+kVjR//7u2aZrB6EcRf/mlNJ/q64EOHaR+kyf7DjNtGrBwofJyH3wQWLJEOjX0\n5z+HjkHpb4rVilpvMjRjvvjvHM+cOdOwsnWdAoqLi0P37t2xc+dONDc347333sP111+PzMxM5P90\nV1F+fj6ysrIMCZYiJ9iG8vTTwMaNnv8LC4GqKmDSJPlxFi4E/A4OTRfpPePnn5c+v/nG02/JEt9h\nXnzR9/9QMf7lL9KF4b/8xdOPjz4gpXQdAQBSBX/vvffi8OHD6NOnD+bPn4/m5mbk5OTA5XIhKSkJ\nK1asMCJWU1j5cFovnisOzsrLOtyVfLiWP9cra9GdAK666irs2LGjVf9YafnDFda+rLDs+a4CCife\nCUy6RXuFEyp+9/fjxoUua9Mmafj+/QEjDnzNmrdWSH5ms8MRMhMAGSbaEkE4NuItW6TPzz4D1q0z\nvvxA89hq890OFWesYAKggNRUKlargIyipiIzcx5YrVK1WjxaxcrvCIYJIIRYrdwAdb/t8GHpAVgH\nDgT+LhYpqQC+/lr6rKuT5oOSeepwAKdOSeOEIyalz/vRUnak1dVJzYd//FH+5jf3vFdD7zobK/UC\nE0AIVtwoIq24GOjSBbjnHiA+vvX3wZp/RgMty9jhkJq+XnON9H92tjSPlLr1ViApSf105WLR830k\nqZ3XP/wAdOsGdO7saUbrr2NHdfMekIY/dkzdOLGICUClWEoISn/L8ePSp3f79UCsVNFEgvvBYN6U\nnDYSAvjqK6lyC8XoeWpEM9A9e4DTp6Xuujpg3z5pJyHc20Z5uf4yvOennhf5+P/Wffu0l2UmJgAK\nKFwXG62YQK2cuKzYDDQ5GZg/X+r+f/9POpJJSQE++kh7mUrePxDpN68Fmo9y669RR3ORxgRApIHR\nLyBXKlLJKtTvcF+/8D6NouQlKXrmj91fURoOTAAhWHnvUC+1zfVieV6EgxUftx2JI7Bw/bZYeAev\n1TABhKB3g3nySendoXIv75BTXAz87/8CF12kb/pGcG/Q0ZYAysqAxYul7r/+FSgq8v1ez+/R8whp\nqzax1ftGMD2xGpGYgk3/P/9pPUyw4f/4x+h8LaZaTAAqqV3J58yR9lwefVTdeE89JT3dMdZaKkTy\nGsCiRcCUKVJ3To6nO5y81w8j7hWQG8e7bCu8tyAS09cz7pNPqhv+kUe0TyuaMAFQQN6VytCh0ufn\nnwcfJ9paQrgrFC0Vs1xlpLQsKx9N/eEPQEWF1C2EdNFXjpV+h9p7JH73O/XT8P+9//wn8MQT6sux\nCt0Pg4t1Zq3gVtqwyDxGtwJSUkk+9hjQqZPU3dwsNfsMNzPW9xUrgDffVDeO//ybNw/49FPjYoo0\nHgFESLgPvY8dkzaihgbp89xzpbbm/v71L6B3b6nbqkmmutoT2+7d0k1A/jp1Ar74Irxx6F1mK1f6\n/u+ubIQIfEe1W1OT/HWXNWuAl19WF4fS5ez9e3/9a+nzmWekzx49pHLcLwH6wx9al3vLLdLn7Nme\nZqL+5B6QF6nWU1rX+REjAvdvaNBWnlUwAYRg1jlTtSvqoUPSp7sp3pkz0huo/H3wAVBSInWbfT5Y\nzv79nu6iIukxAP5OnJAeuGaWcCbPxsbg3y9YoH0vX23cS5dKn2Vl0qfStv7Llwfuv2aNuul7M3N9\nlXsjo/uGuGjFU0AWZfbeebimb+ZGXFmpbvhwzYNQ5Xpf+Fcyv/77X+XDqp3/VnrondnOPVdqTBBL\nmAACOH3as+L7tz0+elRbmWZUfGruZLSDI0eMK0tuPp48qb9s7zLcy7C2Vn76e/fqn2akRPP6d+YM\nsGuX1B3Nv8MbE0AAQ4Z4zu2lp/t+5/Vu5rBSu6cVrW31A1G6can9rWpb7oSKI9D38+api0lpPBdc\nID/8hAny8fiz6hFAOGL3ZtT24R9DtCcCXgMI4D//CXz+XA8rVsxGxOQ+NxyI+1qDHCGA0tLgw2iN\nsbTUM33vG3qEkE6ZvPOO51x7oBgqK0Pfg6HkkcLNzYEvxoeTe57t3y8dORh5g5bedcY9/p490rN9\nQi1/b7W10m+Sm+9mbGNW3K7V4BFAhKjdU4iWFatHj8D9DxyQWhsF+92ffCLdY6B1LyrYPOrVy9P9\n1lue7o0bgVGjfId97bXW43frFnraQ4aEjnH1amDs2PD8Rn/eTxsFgMsvl15j+dxzrYcJNn6wfv7x\naD0KS04Gbr4Z2LBB+bwpKpJ+U/fu6qYZDu4n5EY7HgHEMDOTiNyTG7039tWrPd3l5Z69wUBxv/++\n9lvzvV+8cuqUtjL8Ka203E0/f/97T7+amuDjeD9UTe43B3s0svfRa6AWVHp4t9ACQj8iPBj3xWtA\nXYI8eFD7NANpapISkRLuddN9bZCngIg0euEFT/fQob577f5uvll64bpekd5g3c0evV9mkpcXfBzv\nm5Pk3hlw3XWt+7l/2/TpisMLyX9++d84JXeqVMnOR1WVtpj0CBTX1q2eexj0lBONeAoogHBUEkKo\nKzdWVjClvI8YwlVJW2VvLVRLMqMviC5Y4Ol2n+7697+lMuLjpZYt994beFz/1kd6mb0MlJzmUjJ+\nrBwBMAHEMDObgRqVwMx6I1ascDikhwr6u+EG6fP224FVq+QTQDQx8gY4pdOK9vWJp4Asyn+F/dOf\npBtRHA7pLzMT+O1vpe+EAPr3DzyeUdOPpIcflj5D3WYf6OKtHahptvr++8rKzMrSHo/SWIwc3kha\npu1+vHS0YwKIEK3t+t1++1vfi4Nr10pJwe3ECe2xRZKSjc19s02olhZbt6qfZrTvsQHh+Q1r1sTG\nvAnFbqdWQ7F0Ati1y9Pc7o47jC9/0iTpef3eMjPV3Yik5DV4QPg2LofDcyQA+D6Ea+xYT+uG6mqg\nTRtgyZLwxBEoLiOovW6SnBz9z2cJxf2oZn9a1rFVqzzdShOq2bxbdXmbO1f6fP114NZbfb+L5A1s\n99/vicXqLJ0Atm3zfP7zn8aX/9prnoddua1dq64MNZVNuC4Ce1fqr7zi+537FMB330V2D8+svck9\ne4I/jiEa9nKjIUajGfmb334bWLfOuPKCCRT366+33g6typAE0NTUhNTUVGRmZgIAamtrkZWVBZfL\nhezsbNTJpWwKu2AvPQnHXpGSu2ODCdZOf/JkZWXY9QFmVkocX38duH+gGJuagA4djJu21uWt5Eml\nVprHRjAkASxatAg9e/aE46c5P2vWLKSnp6O4uBhpaWmYPXu2EZMJi0gt0EjdCaznXbVGcJ+31/p8\nHf8Lv97Df/ut9riUTDtSQsVhl4TlFsmXvQebt8XF6sdXegrYqnQngMrKSqxbtw6TJk2C+GnNLigo\nQG5uLgAgNzcXq71v+YwxVttYzU4AWhl5hGKVil5OrN/nYLZIrutyL/ax+vbmpvs+gGnTpuH555/H\nCa9mKDU1NXA6nQAAp9OJmlD3vlPYqH3v7X//K10wjiS5u10BY15HGG2tgKIhRq303oilhNrKN9hj\nNfwp3TbkLtRbja4EsHbtWnTt2hWpqakolHlljsPhaDk15C/P6574jIwMZPg9azkSG4LeaWi5i1AJ\no08BKeVySZ9a24VreexuYiLQsWPg7xYtUh+D3Hy2SsUaat5ojdMqv89sao8mJ01SXrb7zXuhGHla\nq7CwULZ+1UtXAti2bRsKCgqwbt06nD59GidOnEBOTg6cTicOHjyIuLg4VFdXo2vXrgHHzwv1UBRS\nzahTQJFsSnnqlHwCMJoVKkkt7xmIZZE8XRItp2a8+e8cz5w507CydV0DmDNnDioqKlBeXo6VK1di\n5MiRWLFiBcaMGYP8/HwAQH5+PrKMvs3QQEY939xoRrejV1ue1idvat27jcYN02qiNXHYoXmyVRl6\nH4D7VM9TTz2F7du3w+VyYefOnZgxY4bG8oyMLrBYawWkpoJdv16+nI0bpc9HH9UWR7i8917rfvPn\n+7YeivYkE6sXv+X87W/GlhfsFJDcY8rtyrCHwQ0fPhzDhw8HAHTs2DGmW/5EI62VivcjmyMtUMyj\nR7eu6KZPB375S2XlRGslqUS0/raJE40tL9i6vm+fsdOKdpa+EzgaPPus8mEjcRHY/2UZL72krZxw\n6tYN+NWvfPvpbSgWrKWP9yN877pL33SMEGo9kLuJylug9UNN5WbW0ZCSbeChh4BOnbRPQ+4u4M2b\ngQ8+0F5uLLJ9AtC716R0D9nsvbNIbfBKWgFVVvq+ptEISuav+x3AVldQoG28YKf0oskrr4Tn4YYv\nvmh8mdHO0gnAf6P+9FNz4nBTWomOG+d5bLMaKSnamlGqKddskbgJyurNh/W8RjHY9NW8CczsHZJI\n8F7n9+71fQUpSSydAPxFy9MK33mndT8lFbCSW9G1KC62TgIIhW3gY5tZy8n7/cPkEVUJwC4cDt+7\nE//9b2PKNFqgMr0fTa2XXGXhfY/CgAHSp/erC0tKfIdX+hA5NSorjS+TIm/hQrMjMJelE4CV91q9\nbwlvbg7+FEtA/TuBvc9Xy714W41Qb9cyiruZptb7CJTMI+8HcO3eLX16P3B2715t01Yj2OMrSJ7V\ntukPPzQ7AnNZOgFY2WWXebpnzgR+/nPzYlHCvaccKQ8+GLi/mrtgrXw6iKectLHafIvUewOsKqoT\ngBCepm9a9/oOHfI8wljryhnulUjuiYNW9sUX0ueBA0BZmfLxlDxEK9Ry2r9f+fQostQ8eM0M5eWR\nfTy12SydAEJt6AUFQFKS1N29u7bWFY2NwE03Sd1KX6DtT0nrJD17PgsWaB/XbPHxQI8eyofv29fT\nLTfPNm9u3c972Ei8js9qpzKiRaSfNKvWlVcCb75pdhSRY9kEsH8/8I9/+Pbz3+j82woHezlDQwMw\nbFjg9sWVlcCRI9L7gPX4y1+Au+/WV4YbKxh5gV75aLVTCyRv0yazIwju2DGzI4gcwx4FYbT+/Vu/\nXlDPm5TefFNqRjptmvQuYP9yR43Sf6OQ3Hlv7+nYhREJLBJ3TlPkXX+92RGQm2WPAOrrQw+jZqN3\nPwRK7vXESqZHysnN559eFKdLoFN9Tz6pv1w17JTM7cKOdYBlE0AgevbytD4WmbSRu5X/3XeVlyFX\nyQZ6HLr7ojORVnZ8TlBUJYBQvCv3l17y/L9gQfD2vtXVwFdfhTc2tbiHaW3ckYg97mVaWmpuHJFk\n2WsAej38sKf78cfNi8ONFbp6nGcUSe4EYPT7Cawsqo8A/PfCrL5XxouaRNZl9sMmzRDVCUALVqzR\ng0cAZAY7rXemJoBevfSNr6UyNysB7NgBnHuuOdMmIuVCPdcrlph6DUDPxZZjx1o32zp7Vnoq5Dnn\n6IvLCqL5dnStD4LzZ6c9MSIzROVF4K+/Bq65pnV/78cIRLudO82OQLv77zc7AiJSwnIJ4MgRYPny\n4DdlHDni+/+hQ8rL5zWA8MvPN6acaE6CRNHAcgngkktCD+N/aqBr1/DEQuYaO9bsCIhim+1aAREZ\nwajrHERmiqoEYMQL03kKiIzgfhMZUTSLqgTgPvXD1iFERPpFVQIwAo8AiIgkUZUAjKi8//pX6f24\nBw/qL4uIKJpFVQIwyu7dwEcfmR0FEZG5dCWAiooKjBgxAr169UJGRgaWL18OAKitrUVWVhZcLhey\ns7NRJ/d2EJWmTjWkGCIigs4E0L59eyxcuBAlJSX4xz/+genTp+Orr77CrFmzkJ6ejuLiYqSlpWH2\n7NlGxUtERAbRlQDi4uLQ96fnL1xyySUYOHAgqqqqUFBQgNyf3v2Xm5uL1atX64+UiIgMZdg1gLKy\nMpSUlCAtLQ01NTVwOp0AAKfTiZqaGkVluN/bG4qaZqB2erIfEZEahjwKoq6uDuPGjcPChQtx/vnn\n+3zncDjgkG2+k4e8PKkrIyMDI0ZkGBGOj5//PHB/o55XQ0QUToWFhSgsLAxL2Q4h9N1WdfbsWYwe\nPRq33HILpv50lTY5ORmFhYWIi4tDdXU1RowYga+//tp3wg4HAIHPP/c8xVNJM08hgI8/BoYO1RM1\n0L698iMOIiK1wnXDqsPhgM5qu4WuU0BCCNx///3o1atXS+UPAGPGjEH+T7vY+fn5yMrKki0jNVXL\ndNWP44+VPxHZna4jgI8//hjDhg2Dy+VqOc0zd+5cDBkyBDk5Odi3bx+SkpKwYsWKgKeGAGnS7giU\nHAEUF0s3cy1YoDVqIqLwi4YjAN2ngDRPWGMCICKKBtGQAGx5JzARETEBEBHZFhMAEZFNMQEQEdkU\nEwARkU0xARAR2RQTABGRTRnyLCC9mpuBxkazoyAishdLJIC2bc2OgIjIfngKiIjIppgAiIhsigmA\niMimmACIiGyKCYCIyKaYAIiIbIoJgIjIppgAiIjCwJxXbanDBEBEFAZMAEQUULduZkcgmTjR7Ahi\nFxMAUYz52c+MKScuzphy9Ora1ewIYhcTQASsWWN2BGQnZm3UCxaYM91oYcWHSTIBRMDVV5sdAcW6\nc8/1dDc1mRND+/bmTDdaWPGBkkwABkpMBDIzffs9/TQTABnj8svlv7vmGk93c3Posu64Q388FP2Y\nAAwUDTMzEtpZ4gHescfhUPZdrK2Ht91mdgSxKxrWlahJAIE2UPcMvvnmyMYCAM89F/z7JUu0lbt6\nNTBhgvz3Z89qK1fOBRcYW16o+WJVRm6sSsoKlnCMGF6ptLTW/YYPD8+0Yk2fPsG/ZwIwULg2gHB4\n9FFgzBhg0iT14153Xehh5s1TX64cqx9R5OUZV9Yf/6htvJde8nTfckvo4a244f/858qHbWPBWuH6\n682OQD0rrgf+LLioAws0MyM5g+fPVz7t558H4uOBZcvUT6dzZ/myH3hA+nz8cfXlytGbWB95xJg4\n5DzzjHFlZWdrGy893dPtdBoTi9L5Pnq0MdP73e+UD2u1na3u3YEPP9RXxvjx8t+FuoCs9SiZCUCD\nN9/0/T8pSX7YadPkvxsyxNPtvQdnpHPOMba8u+9WPuyKFcZOW6twreQ9egTuf9FF2stUU7HJ3ail\n5PeGGmbGDOV75KH2xv/wB2XlhEoA3okmkgngvfdCD7N2rf7pBPtNoS7sh1qeQ4YEbqVl6wSwZcsW\n9OvXDy6XCy+pqIFzcgL/f8EFQMeOvt9dfLH0ef75rcu59175MrU491ygUyfffuPG6S/X27XXtu7X\nq1fgYe/1luu1AAAPd0lEQVS5x9hpa+VfkcntLc2cqa7cYcMC99dyWs0tWCXgv2xTUwMPp6TiPu88\n6VNuGT3xROgy/KcnF7t3xd2/v3w5oRKn9+8NlQDcpyA7ddKXkAEgIyP0MHpb+l1wQfDfdOGFwccP\ndZr00UeBsWNb94+GBAARBo2NjSIpKUmUl5eLhoYGkZKSIkpLS32GASC2bhVCmk1CTJ8uxMMPS9/d\ndJPU78MPhaivF+Ltt4X44Qchjh2T+n30kRDvvecp6+hRIdasEWLlSiG++kqIxYuFaG4WYvNmIf7z\nHyGOH5fK27pViF27hHjzTc90d+wQYvt2z/+AEH37CvGnP3n+f+cdIc6cEaKiwtNv1iwpHu/x3H++\nv9Pzd8MNgYd3/505I42Tm+vp9+GHnu4HHvAte8SI4OW54wz2/SWXeLo/+USI9euF+L//8/TbsEH6\nfOIJ3/FGjhTi22+FOHlSiF/9ytO/rs7T3a6dp/vZZ+VjSEgQIj9fWnbudaKiQojiYt95WFwslT9u\nXOjf7f/3wQdC7N8v/7133IAQY8b4Ls+9e6X17sQJaZ3xH3/nTunzwgul9WL5ciFeeCHwtOrrhcjI\n8F0H5eJatUpaZxctCvz91197uvv3ly9HiMDTcc/fp57y9LvxRukzPV2IkhJP/88+E+Jvf5PW03/+\nU1pGhw9L33mvM95/kya17rdtm++8CLXsAm1Lcr8DEGLPHmldOnxYWm8rKoS45x7f4SdP9nRXVAhx\n112ty7ztttbrgvdfnz6e3370qBBffun7/fHjamtOZYysto0rycu2bdvEqFGjWv6fO3eumDt3ru+E\nf/oRN9/su5CFEOLXv27dT48TJ6Tympu9py+/cg0Y4Nvvm29aDzdrVuvx/Mv0/94/0ciNd++9rSsW\noHUCmDYt9MazcmXw770TgNuuXZ7vDhyQut94w3e855/3DD9vXuANceBAT/fMmfIx/OIXrefZkSPy\ny+qPfwz9u/3/iouFqKxUVoEAQmRmBl6egZZr376efoMHh47TPwHIrUeAEAUF0vdGJIBA03H3mzHD\n08+9AzZtWuD5H2he7N4deLp//nPwea0mAaSkKFt+geTk+A7vnbCEEOKRR1qXmZcnfY4ZI0SXLq2/\ndyeAVaukMhobfb8/dkx+nulhZAIIyymgqqoqdPM6iZqQkICqqiqZI5BwRODLffhn9sUtLdMP9/xR\nGpN/HJFYbkZTM//V/D4t80LpOGass1paAUVifdAzDf/5qPY3Bpp2qGUTDdtIWBKAw+ya1o/aBaEk\nfC0L1+gEEA0rmJva367nt111le+nm5qmkGpafnjHquR3tm0bngQgN2ygtv5Kygl3EvSeVjinEWg6\nShKA0ulddlng4fVeH4mEsLQCj4+PR0VFRcv/FRUVSEhIaDVcXl4eysqk7sLCDGQouSIUJosWAVOm\nmDZ5Wd4tFPxX4nAlgGAb5e23A6tWRW56Wmzf7rnw530B78ILgYYGZa23unSRPpXcKavk8RDe1LQe\nU3r02tDg21y1Y0egtlZ6XMrTT6uLz8gdFavsC/pX+EYlgIYGTwugcG2PhYWFKCwsDEvZYTkCGDBg\nAL799lt89913aGhowDvvvIMxY8a0Gi4vLw8PP5wHlyvPp/IfPhy49FLj4lHyCF/vFhTujd79yF53\nayNvAwf6Dt+3b+DWSN7i46XP5GTPXlmPHq1bi4wc6el2583LLmvdMmbECOnT3Rrp1luB3r2lbndl\nkJwcfF4GanrqHn78eE/LK3e57huhvOfXgAG+n25ZWcCgQVL3wIHyLWvuuqt1vw4d5GPu10/+O0Da\n02/XTtrTds8/92OP27f3zEfvZehv2DDpCCLYjV/u5OK+v+Daa32fVxUoTve65N++X67ZqbsZtNy8\nu+QS6bN9e2k9HDJEapGSmyu1XEtLC93O/bzzgMGDPf+PHi3dj+LdlPr224OX4d4L9udytZ6Wt1At\nbLxbxv3qV55u721ECf/hu3eXPt2/y/8GzFtv9WyjN90kbSd9+/oOk5Xl2/wzXDfQZWRkIC8vr+XP\nSI6fLioYbvPmzZg6dSoaGxvxwAMP4OGHH/adsMOBME2aiChmGVl3hi0BhJwwEwARkWpG1p2WuxOY\niIgigwmAiMimmACIiGyKCYCIyKaYAIiIbIoJgIjIppgAiIhsigmAiMimmACIiGyKCYCIyKaYAIiI\nbIoJgIjIppgAiIhsigmAiMimmACIiGyKCYCIyKaYAIiIbIoJgIjIppgAiIhsigmAiMimmACIiGyK\nCYCIyKaYAIiIbIoJgIjIppgAiIhsigmAiMimmACIiGyKCYCIyKY0J4DHHnsM11xzDfr164epU6fi\n+PHjLd8tXrwYLpcL/fr1w8cff2xIoEREZCzNCeCmm25CSUkJPv30U5w8eRJz584FAJSWluL111/H\n7t27sWrVKkyYMAHNzc2GBRxuhYWFZofQCmNShjEpZ8W4GFPkaU4AN954I9q0aYM2bdpg1KhRqKys\nBACsWbMG48ePR/v27ZGYmIju3bujqKjIsIDDzYoLnDEpw5iUs2JcjCnyDLkGsGzZMtx2220AgAMH\nDiAhIaHlu4SEBFRVVRkxGSIiMlC7YF/eeOONOHjwYKv+c+bMQWZmJgDgueeeQ8eOHXHnnXfKluNw\nOHSGSUREhhM6vPHGGyI9PV2cOnWqpd/cuXPF3LlzW/4fNWqU2LFjR6txk5KSBAD+8Y9//OOfir+k\npCQ91bYPhxBCQIMNGzbgkUcewZYtW9C5c+eW/qWlpbj77rtRVFSEqqoq3HDDDSgrK+NRABGRxWhO\nAD169EBDQwMuvvhiAMC1116LJUuWAAAWLVqEV199Fe3atcPixYsxdOhQ4yImIiJDaE4AREQU3Uy5\nE3jLli3o168fXC4XXnrppbBOa+LEiXA6nejTp09Lv9raWmRlZcHlciE7Oxt1dXUt38ndxPbVV19h\n8ODBcLlcePLJJ3XFVFFRgREjRqBXr17IyMjA8uXLTY/r9OnTGDx4MPr27Yu0tDQsXLjQ9Jjcmpqa\nkJqa2tLwwOyYEhMT4XK5kJqaikGDBlkiJgA4efIkcnNzkZqaip49e2Lnzp2mxrVnzx6kpqa2/HXq\n1AmLFy82fV4tW7YM6enp6N+/P6ZOnQrA/OX38ssv48orr0SvXr3w6quvRi4mw64mKNTY2CiSkpJE\neXm5aGhoECkpKaK0tDRs09uyZYv47LPPRO/evVv6PfbYY2L+/PlCCCHmzZsnHn/8cSGEECUlJSIl\nJUU0NDSI8vJykZSUJJqbm4UQQgwcOFDs3LlTCCHELbfcItavX685purqavH5558LIYQ4dOiQcDqd\norS01PS4Tp48KYQQ4vTp06JXr17im2++MT0mIYR44YUXxN133y0yMzOFEOYvv8TERHHkyBGffmbH\nJIQQ9957r3jttdeEEEKcPXtWHDt2zBJxCSFEU1OTiIuLE/v37zc1piNHjojExERRV1cnmpqaxC23\n3CI2bNhgakzHjh0TV111lfjxxx9FbW2tGDhwoCgrK4tITBFPANu2bROjRo1q+d+/1VA4lJeX+ySA\nq6++Whw8eFAIIVXGV199tRBCiDlz5oh58+a1DDdq1Cixfft2ceDAAZGcnNzS/+233xYPPvigYfGN\nHj1abNy40TJxHT58WCQnJ4vvv//e9JgqKirE9ddfLzZt2iRGjx4thDB/+SUmJorDhw/79DM7pmPH\njokrrriiVX+z43J7//33xXXXXWd6TPX19eLyyy8XVVVVoq6uTgwfPlzs2LHD1JjWrVsnxo0b1/L/\n73//ezF//vyIxBTxU0BVVVXo1q1by/9m3ChWU1MDp9MJAHA6naipqQEgfxObf//4+HjDYi4rK0NJ\nSQnS0tJMj6u5uRkpKSlwOp2YPHkyfvGLX5ge07Rp0/D888+jTRvPqmp2TA6HAyNHjkRqaiqWLVtm\niZjKy8vRpUsXTJgwAb1798YDDzyA+vp60+NyW7lyJcaPHw/A3HnVoUMHLF26FImJiYiLi8OQIUMw\nePBgU2MaNmwYioqKUF5ejurqaqxbtw6VlZURiSniCcBqzUEdDodpMdXV1WHcuHFYuHAhzj//fNPj\natOmDb744guUlZVhyZIl+Pzzz02Nae3atejatStSU1MhZNoqmDGfPvnkE3zxxRd46623MGfOHGzd\nutX0mBobG7Fr1y6MHTsWu3btwpkzZ/Duu++aHhcANDQ04F//+lfAm0UjHdOhQ4fw0EMPobS0FN99\n9x22b9+OtWvXmhrTeeedhxdffBGTJ0/GHXfcgWHDhqFt27YRiSniCSA+Ph4VFRUt/1dUVPhkrUhw\nOp0tdzhXV1eja9euAWOrrKxEQkIC4uPjW5515O4fHx+vK4azZ89i7NixuOeee1oeo2GFuADpIucv\nf/lLbN682dSYtm3bhoKCAlxxxRUYP348Nm3ahJycHNPn06WXXgoAuOaaa5CdnY2ioiLTY0pISEDn\nzp2RmZmJDh06YPz48diwYQPi4uJMX6fWr1+P/v37o0uXLgDMXc+LioqQlpaG7t27o3Pnzrjzzjux\ndetW05dfZmYm1q1bh08++QQXXnghrrrqqsjEpOmklQ5nz54VV155pSgvLxdnzpwJ+0VgIVpfA3js\nscdazqHNnTu31cWVM2fOiH379okrr7yy5eLKoEGDxI4dO0Rzc7PuC2PNzc0iJydHTJs2zae/mXEd\nOnRIHD16VAghXQPo2bOn+PDDD02fV26FhYUt1wDMjOnkyZPixIkTQgghfvjhB3H11VeL999/3xLz\nKS0tTezYsUM0NTWJyZMni2XLllkirrvuukssX7685X8zYzp+/LhISkoSR44cEadPnxaZmZmWWM9r\namqEEEJ8//33Ijk5ueUCfrhjingCEELamPv27St69+4tFi1aFNZpjRs3Tlx66aXinHPOEQkJCeL1\n118XJ06cELfddpvo06ePyMrKErW1tS3Dv/jii6J3796ib9++YsuWLS39S0pKxKBBg0Tv3r3F9OnT\ndcW0detW4XA4REpKiujbt6/o27evWL9+valxFRcXi9TUVOFyucRNN90kXn31VSGEMH1euRUWFra0\nAjIzpn379omUlBSRkpIiRo4cKV555RXTY3Lbs2ePGDx4sEhKShJZWVmirq7O9Ljq6upE586dW5Km\nEObPqzfeeEMMGzZMDBgwQMyYMUM0NTWZHtPQoUNFnz59xLXXXtvSiicSMfFGMCIim+IrIYmIbIoJ\ngIjIppgAiIhsigmAiMimmACIiGyKCYCIyKaYAIiIbIoJgIjIpv4/TJoM3CSOLVcAAAAASUVORK5C\nYII=\n", "text": [ - "" + "" ] } ], - "prompt_number": 21 + "prompt_number": 7 }, { "cell_type": "markdown", @@ -181,13 +181,13 @@ { "metadata": {}, "output_type": "display_data", - "png": "iVBORw0KGgoAAAANSUhEUgAAAYIAAAD9CAYAAACx+XApAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAHUNJREFUeJzt3W9sU+fd//G3uWO6sZJ2K4td2W0zJVLXQNz8aR0DgrmF\ntTR3CI5QJcJKgmn7gFVClIruAWuXrL2BqkK0AWkPOkiyTCxbJZpkHaB2W02btjOMpWUi0ZRqQbId\nJyqsLPYiCAnn94DVP8KfAIljk5zPS7JwLp8/1zcO53N8znV8LIZhGIiIiGnNSHcHREQkvRQEIiIm\npyAQETE5BYGIiMkpCERETE5BICJicjcUBCMjIxQWFrJ8+XIAYrEYPp8Pl8tFRUUF8Xg8MW1dXR0u\nl4uioiLa29sT7V1dXZSUlOByudiyZUuSyxARkfG6oSB48803ycvLw2KxAPDKK6+wYMECjh8/jsfj\n4dVXXwWgs7OTvXv3cuzYMfbv38/atWv5+jKF6upqdu3axfHjx+no6ODQoUOTVJKIiNyM6wZBOBzm\nwIEDPPPMM4mNeltbG9XV1cDFDXxLSwsAra2tVFZWYrVayc7OJjc3l2AwSDQaJRaL4Xa7AaiqqkrM\nIyIi6ZVxvQmef/55Xn/9dQYGBhJt/f392Gw2AGw2G/39/QD09vbi8XgS0zmdTiKRCFarFafTmWh3\nOBxEIpEr1vX1Jw4REblxE/2CiDE/Ebz77rtkZWVRWFh4zRVZLJakbsANw5iWj5/97Gdp74PqU32q\nb/o9kmHMTwSffPIJbW1tHDhwgLNnzzIwMMCaNWuw2Wz09fVht9uJRqNkZWUBF/f0Q6FQYv5wOIzT\n6cThcBAOh0e1OxyOpBQgIiITM+Yngq1btxIKhejp6aG5uZlHH32UpqYmysvLaWxsBKCxsRGfzwdA\neXk5zc3NDA0N0dPTQ3d3N263G7vdTmZmJsFgEMMwaGpqSswjIiLpdd1zBJf6+hDQSy+9xJo1a3C5\nXOTk5NDU1ARAXl4efr+f4uJiMjIyaGhoSMxTX1+P3+9ncHCQsrIyli1bluRSbm1erzfdXZhUqm9q\nU33mZjGSdZApCSwWS9KOeYmImEEytpu6slhExOQUBCIiJqcgEBExOQWBiIjJKQhERExOQSAiYnIK\nAhERk1MQiIiYnIJARMTkFAQiIianIBARMTkFgYiIySkIRERMTkEgImJyCgIREZNTEIiImJyCQETE\n5BQEIiImpyCYRjIzv4PFYknZIzPzO+kuWUSSYMwgOHv2LCUlJRQUFODxeNi5cycANTU1OJ1OCgsL\nKSws5ODBg4l56urqcLlcFBUV0d7enmjv6uqipKQEl8vFli1bJqkcc4vFvgKMlD0urk9Eprrr3rx+\ncHCQWbNmce7cOYqLi3nnnXfYt28fs2fPZtOmTaOm7ezsZPXq1Rw9epRIJMLSpUvp7u7GYrHgdrvZ\nvXs3breb0tJSNmzYwLJly0Z3RjevnxCLxcLFjXTK1qj3SyTNUnLz+lmzZgEQj8cZHh7mtttuA7jq\niltbW6msrMRqtZKdnU1ubi7BYJBoNEosFsPtdgNQVVVFS0vLhDouIiLJkXG9CS5cuEBhYSEnTpzg\njTfe4N577wVg165d7Nmzh/nz57Njxw7uvPNOent78Xg8iXmdTieRSASr1YrT6Uy0OxwOIpHIVddX\nU1OTeO71evF6veMsTURk+gkEAgQCgaQu87pBMGPGDD7//HNOnjxJaWkpCxcuZP369bz88ssMDAyw\nefNmXnjhBfbs2ZOUDl0aBCIiMtrlO8i1tbUTXuYNjxrKzs6mtLSUw4cPk5WVhcVi4Y477uC5557j\nyJEjwMU9/VAolJgnHA7jdDpxOByEw+FR7Q6HY8KdFxGRiRszCE6dOsWZM2cAOH36NAcPHiQ/P5++\nvj4AhoeH2bdvH/n5+QCUl5fT3NzM0NAQPT09dHd343a7sdvtZGZmEgwGMQyDpqYmfD7fJJcmIiI3\nYsxDQ9FolOrqakZGRrDb7WzatIklS5ZQVVXFZ599xsyZM1m8eHFiWGleXh5+v5/i4mIyMjJoaGj4\n70gWqK+vx+/3Mzg4SFlZ2RUjhkREJD2uO3w0lTR8dGI0fFTEfFIyfFRERKY3BYGIiMkpCERETE5B\nICJicgoCERGTUxCIiJicgkBExOQUBCIiJqcgEBExOQWBiIjJKQhERExOQSAiYnIKAhERk1MQiIiY\nnIJARMTkFAQiIianIBARMTkFgYiIySkIRERMbswgOHv2LCUlJRQUFODxeBI3qY/FYvh8PlwuFxUV\nFcTj8cQ8dXV1uFwuioqKaG9vT7R3dXVRUlKCy+Viy5Ytk1SOiIjcrOvevH5wcJBZs2Zx7tw5iouL\neeedd3jrrbeYM2cOL774Iq+99hpfffUV27dvp7Ozk9WrV3P06FEikQhLly6lu7sbi8WC2+1m9+7d\nuN1uSktL2bBhA8uWLRvdGd28fkJ083oR80nGdjPjehPMmjULgHg8zsjICLfddhttbW0cPnwYgOrq\narxeL9u3b6e1tZXKykqsVivZ2dnk5uYSDAa57777iMViuN1uAKqqqmhpabkiCABqamoSz71eL16v\nd0IFiohMJ4FAgEAgkNRlXjcILly4QGFhISdOnOCNN97g3nvvpb+/H5vNBoDNZqO/vx+A3t5ePB5P\nYl6n00kkEsFqteJ0OhPtDoeDSCRy1fVdGgQiIjLa5TvItbW1E17mdYNgxowZfP7555w8eZLS0lIW\nLlw46nWLxfLfQxIiIjIV3fCooezsbEpLSzl8+DA2m42+vj4AotEoWVlZwMU9/VAolJgnHA7jdDpx\nOByEw+FR7Q6HI1k1iIjIBIwZBKdOneLMmTMAnD59moMHD5Kfn095eTmNjY0ANDY24vP5ACgvL6e5\nuZmhoSF6enro7u7G7XZjt9vJzMwkGAxiGAZNTU2JeUREJL3GPDQUjUaprq5mZGQEu93Opk2bWLJk\nCW63mzVr1uByucjJyaGpqQmAvLw8/H4/xcXFZGRk0NDQkDhsVF9fj9/vZ3BwkLKysqueKBYRkdS7\n7vDRVNLw0YnR8FER80nGdlNXFouImJyCQETE5BQEIiImpyAQETE5BYGIiMkpCERETE5BICJicgoC\nERGTUxCIiJicgkBExOQUBCIiJqcgEBExOQWBiIjJKQhERExOQSAiYnIKAhERk1MQiIiYnIJARMTk\nxgyCUCjEI488wty5c/F6vTQ0NABQU1OD0+mksLCQwsJCDh48mJinrq4Ol8tFUVER7e3tifauri5K\nSkpwuVxs2bJlcqoREZGbNuY9i/v6+ujr66OgoIBTp04xb948PvjgA373u98xe/ZsNm3aNGr6zs5O\nVq9ezdGjR4lEIixdupTu7m4sFgtut5vdu3fjdrspLS1lw4YNV9zAXvcsnhjds1jEfCb9nsV2u52C\nggIA5syZw8MPP0wkEgG46opbW1uprKzEarWSnZ1Nbm4uwWCQaDRKLBbD7XYDUFVVRUtLy4Q6LiIi\nyZFxoxN+8cUXnDhxgvnz5/Pxxx+za9cu9uzZw/z589mxYwd33nknvb29eDyexDxOp5NIJILVasXp\ndCbaHQ5HIlAuV1NTk3ju9Xrxer03X5WIyDQVCAQIBAJJXeYNBUE8HmfVqlXs3LmTb33rW6xfv56X\nX36ZgYEBNm/ezAsvvMCePXuS0qFLg0BEREa7fAe5trZ2wsu87qih8+fPs3LlSp566ilWrFgBQFZW\nFhaLhTvuuIPnnnuOI0eOABf39EOhUGLecDiM0+nE4XAQDodHtTscjgl3XkREJm7MIDAMg6effpq5\nc+eycePGRHs0GgVgeHiYffv2kZ+fD0B5eTnNzc0MDQ3R09NDd3c3brcbu91OZmYmwWAQwzBoamrC\n5/NNYlkiInKjxjw09PHHH/PrX/8al8tFYWEhAFu3buU3v/kNn332GTNnzmTx4sXs3LkTgLy8PPx+\nP8XFxWRkZNDQ0PDfkSxQX1+P3+9ncHCQsrKyK0YMiYhIeow5fDTVNHx0YjR8VMR8Jn34qIiITH8K\nAhERk1MQiIiYnIJARMTkFAQiIianIBARMTkFgYiIySkIRERMTkEgImJyCgIREZNTEIiImJyCQETE\n5BQEIiImpyAQETE5BYGIiMkpCERETE5BICJicgoCERGTUxCIiJjcmEEQCoV45JFHmDt3Ll6vl4aG\nBgBisRg+nw+Xy0VFRQXxeDwxT11dHS6Xi6KiItrb2xPtXV1dlJSU4HK52LJly+RUIyIiN23Mm9f3\n9fXR19dHQUEBp06dYt68eXzwwQfU19czZ84cXnzxRV577TW++uortm/fTmdnJ6tXr+bo0aNEIhGW\nLl1Kd3c3FosFt9vN7t27cbvdlJaWsmHDBpYtWza6M7p5/YTo5vUi5jPpN6+32+0UFBQAMGfOHB5+\n+GEikQhtbW1UV1cDUF1dTUtLCwCtra1UVlZitVrJzs4mNzeXYDBINBolFovhdrsBqKqqSswjIiLp\nlXGjE37xxRecOHECj8dDf38/NpsNAJvNRn9/PwC9vb14PJ7EPE6nk0gkgtVqxel0JtodDgeRSOSq\n66mpqUk893q9eL3em6lHRGRaCwQCBAKBpC7zhoIgHo+zatUqdu7cye233z7qNYvF8t9DEslxaRCI\niMhol+8g19bWTniZ1x01dP78eVauXMlTTz3FihUrgIufAvr6+gCIRqNkZWUBF/f0Q6FQYt5wOIzT\n6cThcBAOh0e1OxyOCXdeREQmbswgMAyDp59+mrlz57Jx48ZEe3l5OY2NjQA0Njbi8/kS7c3NzQwN\nDdHT00N3dzdutxu73U5mZibBYBDDMGhqakrMI1NZRuIT4WQ/MjO/k+5iRaatMUcNtbe3s3jxYlwu\nV+Lwz7Zt21i4cCFr1qzhn//8Jzk5OTQ1NSUOGb355pv88pe/JCMjg7q6OhYtWgRAZ2cnfr+fwcFB\nysrK2LZt25Wd0aihCUnHqKHUrU9/GyJXk4zt5phBkGoKgolREIiYz6QPHxURkelPQSAiYnIKAhER\nk1MQiIiYnIJARMTkFAQiIianIBARMTkFgYiIySkIRERMTkEgImJyCgIREZNTEIiImJyCQETE5BQE\nIiImpyAQETE5BYGIiMkpCERETE5BICJicgoCERGTGzMI1q1bh81mIz8/P9FWU1OD0+mksLCQwsJC\nDh48mHitrq4Ol8tFUVER7e3tifauri5KSkpwuVxs2bJlEsoQEZHxGjMI/H4/hw4dGtVmsVjYtGkT\nHR0ddHR08MQTTwDQ2dnJ3r17OXbsGPv372ft2rWJGypXV1eza9cujh8/TkdHxxXLFBGR9MkY68VF\nixZx8uTJK9q/3sBfqrW1lcrKSqxWK9nZ2eTm5hIMBrnvvvuIxWK43W4AqqqqaGlpYdmyZcmp4Bb3\n3nvvcfr06XR3Q0TkmsYMgmvZtWsXe/bsYf78+ezYsYM777yT3t5ePB5PYhqn00kkEsFqteJ0OhPt\nDoeDSCRyzWXX1NQknnu9Xrxe73i6eMv43/9dzje+sQKL5X/S3RURmQYCgQCBQCCpy7zpIFi/fj0v\nv/wyAwMDbN68mRdeeIE9e/YkrUOXBsF0YBgG8fivgZkpWFtzCtYhIul0+Q5ybW3thJd506OGsrKy\nsFgs3HHHHTz33HMcOXIEuLinHwqFEtOFw2GcTicOh4NwODyq3eFwTLjjIiKSHDcdBNFoFIDh4WH2\n7duXGFFUXl5Oc3MzQ0ND9PT00N3djdvtxm63k5mZSTAYxDAMmpqa8Pl8ya1CRETGbcxDQ5WVlRw+\nfJhTp05xzz33UFtbSyAQ4LPPPmPmzJksXryYnTt3ApCXl4ff76e4uJiMjAwaGhqwWCwA1NfX4/f7\nGRwcpKyszDQnikVEpgKLcbUhQGlisViuOiJpKsvImMnISJzUnCOwAKn8/aVyfdPvb0MkGZKx3dSV\nxSIiJqcgEBExOQWBiIjJKQhERExOQSAiYnIKAhERk1MQiIiYnIJARMTkFAQiIianIBARMTkFgYiI\nySkIRERMTkEgImJyCgIREZNTEIiImJyCQETE5BQEIiImpyAQETE5BYGIiMmNGQTr1q3DZrORn5+f\naIvFYvh8PlwuFxUVFcTj8cRrdXV1uFwuioqKaG9vT7R3dXVRUlKCy+Viy5Ytk1CGiIiM15hB4Pf7\nOXTo0Ki2V155hQULFnD8+HE8Hg+vvvoqAJ2dnezdu5djx46xf/9+1q5dm7ihcnV1Nbt27eL48eN0\ndHRcsUwREUmfMYNg0aJFfPvb3x7V1tbWRnV1NXBxA9/S0gJAa2srlZWVWK1WsrOzyc3NJRgMEo1G\nicViuN1uAKqqqhLziIhI+mXc7Az9/f3YbDYAbDYb/f39APT29uLxeBLTOZ1OIpEIVqsVp9OZaHc4\nHEQikWsuv6amJvHc6/Xi9XpvtosiItNWIBAgEAgkdZk3HQSXslgsWCyWZPUFGB0EIiIy2uU7yLW1\ntRNe5k2PGrLZbPT19QEQjUbJysoCLu7ph0KhxHThcBin04nD4SAcDo9qdzgcE+23iIgkyU0HQXl5\nOY2NjQA0Njbi8/kS7c3NzQwNDdHT00N3dzdutxu73U5mZibBYBDDMGhqakrMIyIi6TfmoaHKykoO\nHz7M6dOnueeee/j5z3/OSy+9xJo1a3C5XOTk5NDU1ARAXl4efr+f4uJiMjIyaGhoSBw2qq+vx+/3\nMzg4SFlZGcuWLZv8ykRE5IZYjK/HeN4CLBYLt1B3kiIjYyYjI3FgZgrWZgFS+ftL5fqm39+GSDIk\nY7upK4tFRExOQSAiYnIKAhERk1MQiIiYnIJARMTkFAQiIiY3oa+YEEmdjKR/nclYZs/+NgMD/0rZ\n+kTSSUEgU8QwqbxGIhZLXeiIpJsODYmImJyCQETE5BQEIiImpyAQETE5BYGIiMkpCERETE5BICJi\ncgoCERGTUxCIiJicgkBExOQUBCIiJjfuIMjOzsblclFYWIjb7QYgFovh8/lwuVxUVFQQj8cT09fV\n1eFyuSgqKqK9vX3iPRcRkaQYdxBYLBYCgQAdHR0cOXIEgFdeeYUFCxZw/PhxPB4Pr776KgCdnZ3s\n3buXY8eOsX//ftauXcuFCxeSU4GIiEzIhA4NGcbob4Nsa2ujuroagOrqalpaWgBobW2lsrISq9VK\ndnY2ubm5ifAQEZH0GvfXUFssFh599FFmzJjBj3/8Y5599ln6+/ux2WwA2Gw2+vv7Aejt7cXj8STm\ndTqdRCKRqy63pqYm8dzr9eL1esfbRRGRaScQCBAIBJK6zHEHwccff8zdd99NV1cXpaWlfP/73x/1\nusViGfNGItd67dIgEBGR0S7fQa6trZ3wMsd9aOjuu+8G4IEHHqCiooIjR45gs9no6+sDIBqNkpWV\nBYDD4SAUCiXmDYfDOByOifRbRESSZFxBMDg4SCwWA+DLL7/kwIED5OfnU15eTmNjIwCNjY34fD4A\nysvLaW5uZmhoiJ6eHrq7uxMjjUREJL3GdWiov7+fiooKAO666y6ef/55HnvsMebPn8+aNWtwuVzk\n5OTQ1NQEQF5eHn6/n+LiYjIyMmhoaEjp/WdFROTaLMblQ3/SyGKxXDESaarLyJjJyEgcmJmCtVlI\n5X19U7u+1Nc23f4WZXpKxnZTVxaLiJicgkBExOTGPXxUZHrLSOl5rNmzv83AwL9Stj6RSykIRK5q\nmFSek4jFNHhC0keHhkRETE5BICJicgoCERGTUxCIiJicgkBExOQUBCIiJqcgEBExOQWBiIjJKQhE\nRExOQSAiYnIKAhERk9N3DYncElL3JXf6gju5nIJA5JaQui+50xfcyeV0aEhExOQUBCkTSHcHJlkg\n3R2YZIF0dyCJLh6GStUjM/M76S6YQCCQ7i7c0lIaBB9++CFFRUW4XC527dqVylXfAgLp7sAkC6S7\nA5MskO4OJNHXh6EuffzsKm3JecRiX6WormtTEIwtZecIRkZGWLduHX/84x9xOBw8/PDDLF26lAce\neCBVXRCRtNCJ8FtdyoLgyJEj5Obmkp2dDcCqVatobW1VEIhMe6k8EW69ZujU1tZOwhqtwPlJWO7V\nTVbQpSwIIpEI99xzT+Jnp9NJMBi8YrpU3ic2dW7777+T8Yd4uVT//i5d32TXl87aYHrVd7V1TWZ9\n0/H/NaQyBABisa8mZRuZsiC4kc4bRuruESsiIhel7GSxw+EgFAolfg6FQjidzlStXkREriFlQfDQ\nQw/R3d3NyZMnGRoa4re//S3l5eWpWr2IiFxDyg4NZWRksHfvXioqKhgeHubZZ5/ViWIRkVtASq8j\n+MEPfkBHRwd///vf2bBhAwCbN2/mgQceoKioiI0bN/Lvf/87MX1dXR0ul4uioiLa29tT2dWkmm7X\nT4RCIR555BHmzp2L1+uloaEBgFgshs/nw+VyUVFRQTweT29HJ2hkZITCwkKWL18OTK/6/vOf/1Bd\nXU1hYSF5eXkEg8FpU99bb73FggULKC4uZuPGjcDUfu/WrVuHzWYjPz8/0TZWPePabhpp9t577xkj\nIyPGyMiI8cwzzxg/+clPDMMwjBMnThgPPvigMTQ0ZPT09Bg5OTnGyMhImnt784aHh42cnByjp6fH\nGBoaMh588EGjs7Mz3d2akGg0anR0dBiGYRhffvmlYbPZjM7OTmPz5s3Ga6+9ZhiGYWzfvj3xXk5V\nO3bsMFavXm0sX77cMAxjWtVXVVVl7NmzxzAMwzh//rxx5syZaVHf6dOnjezsbCMejxsjIyPGE088\nYRw6dGhK1/bhhx8af/vb34x58+Yl2q5Vz3i3m2kPgku9/fbbxo9+9CPDMAxj69atxvbt2xOvPf74\n48ann36arq6N2yeffGI8/vjjiZ+3bdtmbNu2LY09Sr6ysjLj/fffN+6//36jr6/PMIyLYXH//fen\nuWfjFwqFjCVLlhh//vOfjbKyMsMwjGlT35kzZ4zvfe97V7RPh/oGBweN++67z4hEIkY8Hjd+8IMf\nGH/5y1+mfG09PT2jguBa9Yx3u3lLfdfQW2+9xYoVKwDo7e0dNarI6XQSiUTS1bVxu9r1E1Oxjmv5\n4osvOHHiBB6Ph/7+fmw2GwA2m43+/v409278nn/+eV5//XVmzPj//0WmS309PT1897vfZe3atcyb\nN49nn32WwcHBaVHfN7/5TX7xi1+QnZ2N3W5n4cKFlJSUTIvaLnWtesa73UxJEPzwhz8kPz//isfv\nf//7xDT/93//x+zZs3nyySevuZypeLHZVOzzjYrH46xatYqdO3dy++23j3rt6y8cm4reffddsrKy\nKCwsvOa1LVO5vuHhYY4ePcrKlSs5evQo586d4+233x41zVSt78svv2T9+vV0dnZy8uRJPv30U959\n991R00zV2q7levXcSK0pGTX0/vvvj/l6Q0MDBw4c4E9/+lOi7fLrDsLhMA6HY9L6OFmm6/UT58+f\nZ+XKlTz11FOJT3E2m42+vj7sdjvRaJSsrKw093J8PvnkE9ra2jhw4ABnz55lYGCANWvWTJv6nE4n\nd911V+IkeGVlJb/61a+w2+1Tvr4jR47g8XjIzc0F4Mknn+Sjjz6aNu/d165Vz3i3m2k/NHTo0CFe\nf/112tra+MY3vpFoLy8vp7m5maGhIXp6euju7sbtdqexp+MzHa+fMAyDp59+mrlz5yZGZcDF96yx\nsRGAxsZGfD5furo4IVu3biUUCtHT00NzczOPPvooTU1N06Y+u91Obm4uwWCQCxcu8Ic//IElS5aw\nfPnyKV/fokWL+Otf/8q//vUvzp07x8GDB3nsscemzXv3tWvVM+7tZlLPaIxDbm6uce+99xoFBQVG\nQUGBsX79+sRrb7zxhjFv3jyjoKDA+PDDD9PYy4kJBAJGQUGBMW/ePOPNN99Md3cm7KOPPjIsFovx\n4IMPJt63gwcPGgMDA8aKFSuM/Px8w+fzGbFYLN1dnbBAIJAYNTSd6vvHP/5hlJSUGDk5OYbP5zPi\n8fi0qa++vt5YvHix8dBDDxk//elPjZGRkSld26pVq4y7777bmDlzpuF0Oo29e/eOWc94tpsWw9AX\n/IiImFnaDw2JiEh6KQhERExOQSAiYnIKAhERk1MQiIiYnIJARMTk/h+3oRxb7nc9GgAAAABJRU5E\nrkJggg==\n", + "png": "iVBORw0KGgoAAAANSUhEUgAAAYIAAAEACAYAAAC+gnFaAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAHcNJREFUeJzt3XtQVOfBx/HvWjCpjaZ5Y9lNd5PQwEwa1JVLshAzmk20\nifIiwjiZEavgavKHY8cYMyZ/2KTYpNFMpmODTvuHVaC0iW1mDNBUnFyaNSEXtJbEGWE62OAMuyyM\nGi1LeRWB5/3DuhVvGBZ2hfP7zOzM8uw5z4WF89tz9jnn2IwxBhERsawJ8e6AiIjEl4JARMTiFAQi\nIhanIBARsTgFgYiIxSkIREQs7rqCoL+/n4yMDBYuXAhAOBymoKAAt9tNYWEh3d3dkWXLyspwu91k\nZmZSX18fKW9ubiY7Oxu3283GjRtHeBgiIjJc1xUEr7/+OmlpadhsNgBeeuklZs2axeHDh8nJyeHl\nl18GoKmpiV27dnHo0CH27NnDihUruHCaQklJCdu2bePw4cM0Njayb9++URqSiIh8E0MGQSAQYO/e\nvTz55JORjXptbS0lJSXA+Q18dXU1ADU1NRQVFZGYmEhycjKpqak0NDQQCoUIh8N4PB4AiouLI+uI\niEh8DRkEzzzzDK+99hoTJvx30c7OTux2OwB2u53Ozk4A2tvbcblckeVcLhfBYPCycqfTSTAYHLFB\niIjI8F0zCN555x2SkpLIyMjgaleisNlskUNGIiIy9iRc68VPP/2U2tpa9u7dy5kzZ+jq6mL58uXY\n7XY6OjpwOByEQiGSkpKA85/029raIusHAgFcLhdOp5NAIDCo3Ol0XrHN1NRU/vnPf47E2ERELCEl\nJYWjR48OvwJznfx+v8nLyzPGGLNhwwazZcsWY4wxmzdvNs8//7wxxpgjR46YmTNnmrNnz5qvvvrK\n3HPPPWZgYMAYY4zH4zGff/65GRgYMAsWLDB1dXVXbOcbdGnM+dnPfhbvLowqjW9s0/jGrmi3m9fc\nI7jUhUNAL7zwAsuXL8ftdpOSkkJVVRUAaWlp+Hw+srKySEhIoKKiIrJOeXk5Pp+Pnp4e8vLymD9/\n/vDTS0RERsx1B8HDDz/Mww8/DMDkyZOvOuvn6aef5umnn76sPC0tjYaGhmF2U0RERovOLI4hr9cb\n7y6MKo1vbNP4rMv2n+NLNwybzXbVGUoiInK5aLeb2iMQEbE4BYGIiMUpCERELE5BICJicQoCERGL\nUxCIiFicgkBExOIUBCIiFqcgEBGxOAWBiIjFKQhERCxOQSAiYnEKAhERi1MQiIhYnIJARMTiFAQi\nIhanIBARsbhrBsGZM2fIzs4mPT2dnJwctm7dCkBpaSkul4uMjAwyMjKoq6uLrFNWVobb7SYzM5P6\n+vpIeXNzM9nZ2bjdbjZu3DhKwxERkW9qyFtV9vT0MGnSJM6ePUtWVhZvv/02b7zxBpMnT2b9+vWD\nlm1qamLp0qUcPHiQYDDIvHnzaGlpwWaz4fF42L59Ox6Ph9zcXNauXcv8+fMv75BuVRmVKVP+h3D4\nVMzamzz5Nrq6vo5ZeyJyuVG/VeWkSZMA6O7upq+vj5tuugngio3W1NRQVFREYmIiycnJpKam0tDQ\nQCgUIhwO4/F4ACguLqa6unrYnZarOx8CJmaPWIaOiIyOIYNgYGCAmTNnYrfb+clPfsJdd90FwLZt\n20hLS2PVqlWcPn0agPb2dlwuV2Rdl8tFMBi8rNzpdBIMBkd6LCIiMgxDBsGECRP48ssvOXr0KL/+\n9a9pbGxk9erVtLa28tlnn/Gtb32LZ599NhZ9FRGRUZBwvQsmJyeTm5vL/v37WbduHQC33nora9as\nYdmyZcD5T/ptbW2RdQKBAC6XC6fTSSAQGFTudDqv2lZpaWnkudfrxev1Xm83RUTGPb/fj9/vH7kK\nzTUcP37cnDp1yhhjzIkTJ0xaWpp5//33TSgUMsYYc+7cOfPcc8+ZoqIiY4wxR44cMTNnzjRnz541\nX331lbnnnnvMwMCAMcYYj8djPv/8czMwMGAWLFhg6urqrtjmEF2SIQAGTAwfer9E4i3a/8Nr7hGE\nQiFKSkro7+/H4XCwfv165s6dS3FxMV988QUTJ05kzpw5kWmlaWlp+Hw+srKySEhIoKKiApvNBkB5\neTk+n4+enh7y8vKuOGNIRERib8jpo7Gm6aPROR+8sfz96f0SibdRnz4qIiLjm4JARMTiFAQiIhan\nIBARsTgFgYiIxSkIREQsTkEgImJxCgIREYtTEIiIWJyCQETE4hQEIiIWpyAQEbE4BYGIiMUpCERE\nLE5BICJicQoCERGLUxCIiFicgkBExOIUBCIiFnfNIDhz5gzZ2dmkp6eTk5MTuUl9OBymoKAAt9tN\nYWEh3d3dkXXKyspwu91kZmZSX18fKW9ubiY7Oxu3283GjRtHaTgiIvJNDXnz+p6eHiZNmsTZs2fJ\nysri7bffZseOHUydOpXnnnuOV199lVOnTrFlyxaamppYunQpBw8eJBgMMm/ePFpaWrDZbHg8HrZv\n347H4yE3N5e1a9cyf/78yzukm9dHRTevF7GeUb95/aRJkwDo7u6mv7+fm266idraWkpKSgAoKSmh\nuroagJqaGoqKikhMTCQ5OZnU1FQaGhoIhUKEw2E8Hg8AxcXFkXVERCS+hgyCgYEBZs6cid1uZ82a\nNdx11110dnZit9sBsNvtdHZ2AtDe3o7L5Yqs63K5CAaDl5U7nU6CweBIj0VERIYhYagFJkyYwJdf\nfsmxY8fIzc3loYceGvS6zWb7z+GIkVNaWhp57vV68Xq9I1q/iMhY5vf78fv9I1bfkEFwQXJyMrm5\nuezfvx+73U5HRwcOh4NQKERSUhJw/pN+W1tbZJ1AIIDL5cLpdBIIBAaVO53Oq7Z1cRCIiMhgl35A\n3rRpU1T1XfPQ0IkTJzh9+jQAJ0+epK6ujhkzZpCfn09lZSUAlZWVFBQUAJCfn8/u3bvp7e2ltbWV\nlpYWPB4PDoeDKVOm0NDQgDGGqqqqyDoiIhJf19wjCIVClJSU0N/fj8PhYP369cydOxePx8Py5ctx\nu92kpKRQVVUFQFpaGj6fj6ysLBISEqioqIgcNiovL8fn89HT00NeXt4VZwyJiEjsDTl9NNY0fTQ6\nmj4qYj2jPn1URETGNwWBiIjFKQhERCxOQSAiYnEKAhERi1MQiIhYnIJARMTiFAQiIhanIBARsTgF\ngYiIxSkIREQsTkEgImJxCgIREYtTEIiIWJyCQETE4hQEIiIWpyAQEbE4BYGIiMUpCERELG7IIGhr\na+ORRx5h2rRpeL1eKioqACgtLcXlcpGRkUFGRgZ1dXWRdcrKynC73WRmZlJfXx8pb25uJjs7G7fb\nzcaNG0d+NCIi8o0NefP6jo4OOjo6SE9P58SJE0yfPp0PP/yQP/3pT0yePJn169cPWr6pqYmlS5dy\n8OBBgsEg8+bNo6WlBZvNhsfjYfv27Xg8HnJzc1m7di3z588f3CHdvD4qunm9iPWM+s3rHQ4H6enp\nAEydOpUHHniAYDAIcMWGa2pqKCoqIjExkeTkZFJTU2loaCAUChEOh/F4PAAUFxdTXV097I6LiMjI\n+EbfERw9epQjR47w4IMPArBt2zbS0tJYtWoVp0+fBqC9vR2XyxVZx+VyEQwGLyt3Op2RQBERkfhJ\nuN4Fu7u7WbJkCVu3buU73/kOq1ev5sUXX6Srq4sNGzbw7LPPsnPnzhHpVGlpaeS51+vF6/WOSL0i\nIuOB3+/H7/ePWH3XFQTnzp1j8eLFLFu2jEWLFgGQlJQEwK233sqaNWtYtmwZcP6TfltbW2TdQCCA\ny+XC6XQSCAQGlTudziu2d3EQiIjIYJd+QN60aVNU9Q15aMgYw6pVq5g2bRrr1q2LlIdCIQD6+vp4\n4403mDFjBgD5+fns3r2b3t5eWltbaWlpwePx4HA4mDJlCg0NDRhjqKqqoqCgIKrOi4hI9IbcI/jk\nk0/4/e9/j9vtJiMjA4BXXnmFN998ky+++IKJEycyZ84ctm7dCkBaWho+n4+srCwSEhKoqKj4z0wW\nKC8vx+fz0dPTQ15e3mUzhkREJPaGnD4aa5o+Gh1NHxWxnlGfPioiIuObgkBExOIUBCIiFqcgEBGx\nOAWBiIjFKQhERCxOQSAiYnEKAhERi1MQiIhYnIJARMTiFAQiIhanIBARsTgFgYiIxSkIREQsTkEg\nImJxCgIREYtTEIiIWJyCQETE4hQEIiIWN2QQtLW18cgjjzBt2jS8Xi8VFRUAhMNhCgoKcLvdFBYW\n0t3dHVmnrKwMt9tNZmYm9fX1kfLm5mays7Nxu91s3Lhx5EcjIiLf2JA3r+/o6KCjo4P09HROnDjB\n9OnT+fDDDykvL2fq1Kk899xzvPrqq5w6dYotW7bQ1NTE0qVLOXjwIMFgkHnz5tHS0oLNZsPj8bB9\n+3Y8Hg+5ubmsXbuW+fPnD+6Qbl4fFd28XsR6Rv3m9Q6Hg/T0dACmTp3KAw88QDAYpLa2lpKSEgBK\nSkqorq4GoKamhqKiIhITE0lOTiY1NZWGhgZCoRDhcBiPxwNAcXFxZB0REYmfb/QdwdGjRzly5Ag5\nOTl0dnZit9sBsNvtdHZ2AtDe3o7L5Yqs43K5CAaDl5U7nU6CweBIjEFERKKQcL0Ldnd3s2TJErZu\n3cott9wy6DWbzfafQxIjo7S0NPLc6/Xi9XpHrG4RkbHO7/fj9/tHrL7rCoJz586xePFili1bxqJF\ni4DzewEdHR04HA5CoRBJSUnA+U/6bW1tkXUDgQAulwun00kgEBhU7nQ6r9jexUEgIiKDXfoBedOm\nTVHVN+ShIWMMq1atYtq0aaxbty5Snp+fT2VlJQCVlZUUFBREynfv3k1vby+tra20tLTg8XhwOBxM\nmTKFhoYGjDFUVVVF1hERkfgZctZQfX09c+bMwe12Rw7/bN68mYceeojly5fz1VdfkZKSQlVVVeSQ\n0euvv85vf/tbEhISKCsrY/bs2QA0NTXh8/no6ekhLy+PzZs3X94hzRqKSuxnDSUCfTFpafLk2+jq\n+jombYmMJdFuN4cMglhTEEQnHtNHY9ee/jZErmTUp4+KiMj4piAQEbE4BYGIiMUpCERELE5BICJi\ncQoCERGLUxCIiFicgkBExOIUBCIiFqcgEBGxOAWBiIjFKQhERCxOQSAiYnEKAhERi1MQiIhYnIJA\nRMTiFAQiIhanIBARsTgFgYiIxQ0ZBCtXrsRutzNjxoxIWWlpKS6Xi4yMDDIyMqirq4u8VlZWhtvt\nJjMzk/r6+kh5c3Mz2dnZuN1uNm7cOMLDEBGR4RoyCHw+H/v27RtUZrPZWL9+PY2NjTQ2NrJgwQIA\nmpqa2LVrF4cOHWLPnj2sWLEickPlkpIStm3bxuHDh2lsbLysThERiY+EoRaYPXs2x44du6z8wgb+\nYjU1NRQVFZGYmEhycjKpqak0NDRw9913Ew6H8Xg8ABQXF1NdXc38+fOjH8EN7t133+XkyZPx7oaI\nyFUNGQRXs23bNnbu3MmDDz7IL3/5S7773e/S3t5OTk5OZBmXy0UwGCQxMRGXyxUpdzqdBIPB6Ho+\nRvzv/y7k5psXYbN9a9TbOnfu2Ki3ISLjz7CCYPXq1bz44ot0dXWxYcMGnn32WXbu3DlinSotLY08\n93q9eL3eEas71owxdHf/HpgYg9b+AHweg3ZEJJ78fj9+v3/E6htWECQlJQFw6623smbNGpYtWwac\n/6Tf1tYWWS4QCOByuXA6nQQCgUHlTqfzqvVfHAQiIjLYpR+QN23aFFV9w5o+GgqFAOjr6+ONN96I\nzCjKz89n9+7d9Pb20traSktLCx6PB4fDwZQpU2hoaMAYQ1VVFQUFBVF1XERERsaQewRFRUXs37+f\nEydOcOedd7Jp0yb8fj9ffPEFEydOZM6cOWzduhWAtLQ0fD4fWVlZJCQkUFFRgc1mA6C8vByfz0dP\nTw95eXmW+KJYRGQssJkrTf+JI5vNdsUZSWNVQsJE+vu7id13BMuAWP7+bDFsb3z9bYiMlGi3mzqz\nWETE4hQEIiIWpyAQEbE4BYGIiMUpCERELE5BICJicQoCERGLUxCIiFicgkBExOIUBCIiFqcgEBGx\nOAWBiIjFKQhERCxOQSAiYnEKAhERi1MQiIhYnIJARMTiFAQiIhanIBARsbghg2DlypXY7XZmzJgR\nKQuHwxQUFOB2uyksLKS7uzvyWllZGW63m8zMTOrr6yPlzc3NZGdn43a72bhx4wgPQ0REhmvIIPD5\nfOzbt29Q2UsvvcSsWbM4fPgwOTk5vPzyywA0NTWxa9cuDh06xJ49e1ixYkXkhsolJSVs27aNw4cP\n09jYeFmdIiISH0MGwezZs7ntttsGldXW1lJSUgKc38BXV1cDUFNTQ1FREYmJiSQnJ5OamkpDQwOh\nUIhwOIzH4wGguLg4so6IiMTXsL4j6OzsxG63A2C32+ns7ASgvb0dl8sVWc7lchEMBi8rdzqdBIPB\naPotIiIjJCHaCmw2GzabbST6ElFaWhp57vV68Xq9I1q/iMhY5vf78fv9I1bfsILAbrfT0dGBw+Eg\nFAqRlJQEnP+k39bWFlkuEAjgcrlwOp0EAoFB5U6n86r1XxwEIiIy2KUfkDdt2hRVfcM6NJSfn09l\nZSUAlZWVFBQURMp3795Nb28vra2ttLS04PF4cDgcTJkyhYaGBowxVFVVRdYREZH4GnKPoKioiP37\n93Py5EnuvPNOfv7zn/PCCy+wfPly3G43KSkpVFVVAZCWlobP5yMrK4uEhAQqKioih43Ky8vx+Xz0\n9PSQl5fH/PnzR3dkIiJyXWzmwvzOG4TNZuMG61JUEhIm0t/fDUyMQWt/AJYBsfz92WLY3vj62xAZ\nKdFuN3VmsYiIxSkIREQsTkEgImJxCgIREYtTEIiIWJyCQETE4hQEIiIWF/W1hkRiJ2HEr2t1LZMn\n30ZX19cxa08kXhQEMob0EcuT5cLh2IWOSDzp0JCIiMUpCERELE5BICJicQoCERGLUxCIiFicgkBE\nxOIUBCIiFqcgEBGxOAWBiIjFRRUEycnJuN1uMjIy8Hg8AITDYQoKCnC73RQWFtLd3R1ZvqysDLfb\nTWZmJvX19dH1XERERkRUQWCz2fD7/TQ2NnLgwAEAXnrpJWbNmsXhw4fJycnh5ZdfBqCpqYldu3Zx\n6NAh9uzZw4oVKxgYGIh+BCIiEpWoDw1desPk2tpaSkpKACgpKaG6uhqAmpoaioqKSExMJDk5mdTU\n1Eh4iIhI/ES9R/Doo4+SkZHBjh07AOjs7MRutwNgt9vp7OwEoL29HZfLFVnX5XIRDAajaV5EREZA\nVFcf/eSTT7jjjjtobm4mNzeXH/7wh4Net9ls17xscCwvKSwiIlcWVRDccccdANx3330UFhZy4MAB\n7HY7HR0dOBwOQqEQSUlJADidTtra2iLrBgIBnE7nFestLS2NPPd6vXi93mi6KSIyrvj9fvx+/4jV\nZzOXHuS/Tj09PfT39zN58mSOHz/O7NmzKSsr4/333+f222/n+eefZ8uWLZw+fZotW7bQ1NTE0qVL\nOXDgAMFgkHnz5nH06NHL9gpsNttl3zuMZQkJE+nv7wYmxqC1PwDLiOU1+8EWw/Zi2db59sbT36KM\nX9FuN4e9R9DZ2UlhYSEAt99+O8888wyPPfYYDz74IMuXL8ftdpOSkkJVVRUAaWlp+Hw+srKySEhI\noKKiQoeGRERuAMPeIxgt2iOIhvYIRrq98fS3KONXtNtNnVksImJxCgIREYtTEIiIWJyCQETE4qI6\nj0BkfEuI6cy2yZNvo6vr65i1J3KBgkDkqvqI5SylcFjTqSU+dGhIRMTiFAQiIhanIBARsTgFgYiI\nxSkIREQsTkEgImJxCgIREYtTEIiIWJyCQETE4hQEIiIWpyAQEbE4XWtI5IYRu4vc6QJ3cjEFgcgN\nI3YXudMF7uRiMT809NFHH5GZmYnb7Wbbtm2xbl5ERC4R0yDo7+9n5cqV7Nmzh0OHDrFz506am5tj\n2YU488e7A6PMH+8OjDJ/vDswgs4fhorVY8qU/4n3gPH7/fHuwg0rpkFw4MABUlNTSU5OJjExkSVL\nllBTUxPLLsSZP94dGGX+eHdglPnj3YERdOEw1MWPn12hbGQe4fCpGI3r6hQEVxfTIAgGg9x5552R\nn10uF8FgMJZdEJG4iN0eyI2w9zHWxPTL4lje9u9GYbNNYMqUQmACZ878g5tvPjRqbZ07F+D//m/U\nqheJQiy/CE+86rZm06ZNo9BiInBuFOq9stGY8RXTIHA6nbS1tUV+bmtrw+VyDVomJSVl3AVGV9fe\nyPPe3pYYtBjr39/F7Y3GP9rV2oqFS9sbT+O7UlujOb7x9X/9X7ELAYBw+NRl28iUlJSo6rQZY2J2\nU9a+vj7uvfdePvjgA77//e/j8Xh48803ue+++2LVBRERuURM9wgSEhLYtWsXhYWF9PX18dRTTykE\nRETiLKZ7BCIicuO5Ia41tGHDBu677z4yMzNZt24d//rXvyKvlZWV4Xa7yczMpL6+Po69jM54OpGu\nra2NRx55hGnTpuH1eqmoqAAgHA5TUFCA2+2msLCQ7u7u+HY0Sv39/WRkZLBw4UJgfI3v3//+NyUl\nJWRkZJCWlkZDQ8O4Gt+OHTuYNWsWWVlZrFu3Dhjb79/KlSux2+3MmDEjUnat8Xzj7aa5Abz77rum\nv7/f9Pf3myeffNI8//zzxhhjjhw5YmbOnGl6e3tNa2urSUlJMf39/XHu7TfX19dnUlJSTGtrq+nt\n7TUzZ840TU1N8e7WsIVCIdPY2GiMMeb48ePGbrebpqYms2HDBvPqq68aY4zZsmVL5H0cq375y1+a\npUuXmoULFxpjzLgaX3Fxsdm5c6cxxphz586Z06dPj5vxnTx50iQnJ5vu7m7T399vFixYYPbt2zem\nx/fRRx+Zv//972b69OmRsquNZzjbzRsiCC721ltvmR//+MfGGGNeeeUVs2XLlshrjz/+uPnss8/i\n1bVh+/TTT83jjz8e+Xnz5s1m8+bNcezRyMrLyzPvvfeeuffee01HR4cx5nxY3HvvvXHu2fC1tbWZ\nuXPnmr/+9a8mLy/PGGPGzfhOnz5tfvCDH1xWPl7G19PTY+6++24TDAZNd3e3efjhh83nn38+5sfX\n2to6KAiuNp7hbDdviENDF9uxYweLFi0CoL29fdD00rF6Atp4PpHu6NGjHDlyhJycHDo7O7Hb7QDY\n7XY6Ozvj3Lvhe+aZZ3jttdeYMOG//yLjZXytra1873vfY8WKFUyfPp2nnnqKnp6ecTO+b3/72/zm\nN78hOTkZh8PBQw89RHZ29rgZ3wVXG89wtpsxC4If/ehHzJgx47LHn//858gyv/jFL5g8eTJPPPHE\nVesZi+cYjMU+X4/u7m6WLFnC1q1bueWWWwa9duEsz7HonXfeISkpiYyMDMxV5lKM5fH19fVx8OBB\nFi9ezMGDBzl79ixvvfXWoGXG8viOHz/O6tWraWpq4tixY3z22We88847g5YZy+O7kqHGM9RYYzZ9\n9L333rvm6xUVFezdu5cPPvggUnbpCWiBQACn0zlqfRwt13Mi3Vhz7tw5Fi9ezLJlyyJ7cHa7nY6O\nDhwOB6FQiKSkpDj3cng+/fRTamtr2bt3L2fOnKGrq4vly5ePm/G5XC5uv/32yJfgRUVF/O53v8Ph\ncIyL8R04cICcnBxSU1MBeOKJJ/j444/Hzft3wdXGM5zt5g1xaGjfvn289tpr1NbWcvPNN0fK8/Pz\n2b17N729vbS2ttLS0oLH44ljT4fn/vvvp6WlhWPHjtHb28sf//hH8vPz492tYTPGsGrVKqZNmxaZ\nkQHn36/KykoAKisrKSgoiFcXo/LKK6/Q1tZGa2sru3fv5tFHH6WqqmrcjM/hcJCamkpDQwMDAwP8\n5S9/Ye7cuSxcuHBcjG/27Nn87W9/4+uvv+bs2bPU1dXx2GOPjZv374KrjWdY280R/0ZjGFJTU81d\nd91l0tPTTXp6ulm9enXktV/96ldm+vTpJj093Xz00Udx7GV0/H6/SU9PN9OnTzevv/56vLsTlY8/\n/tjYbDYzc+bMyHtWV1dnurq6zKJFi8yMGTNMQUGBCYfD8e5q1Px+f2TW0Hga3z/+8Q+TnZ1tUlJS\nTEFBgenu7h5X4ysvLzdz5swx999/v/npT39q+vv7x/T4lixZYu644w4zceJE43K5zK5du645nm+6\n3dQJZSIiFndDHBoSEZH4URCIiFicgkBExOIUBCIiFqcgEBGxOAWBiIjFKQhERCxOQSAiYnH/D8hE\nsPa8l0TjAAAAAElFTkSuQmCC\n", "text": [ - "" + "" ] } ], - "prompt_number": 73 + "prompt_number": 8 }, { "cell_type": "code", @@ -195,20 +195,8 @@ "input": [], "language": "python", "metadata": {}, - "outputs": [ - { - "metadata": {}, - "output_type": "pyout", - "prompt_number": 72, - "text": [ - "(array([1517, 3556, 1946, 783, 359, 128, 62, 27, 23, 13]),\n", - " array([ -1. , 8.9, 18.8, 28.7, 38.6, 48.5, 58.4, 68.3, 78.2,\n", - " 88.1, 98. ]),\n", - " )" - ] - } - ], - "prompt_number": 72 + "outputs": [], + "prompt_number": 8 }, { "cell_type": "code", @@ -216,7 +204,8 @@ "input": [], "language": "python", "metadata": {}, - "outputs": [] + "outputs": [], + "prompt_number": 8 }, { "cell_type": "markdown", @@ -250,7 +239,7 @@ ] } ], - "prompt_number": 75 + "prompt_number": 9 }, { "cell_type": "markdown", @@ -273,13 +262,13 @@ { "metadata": {}, "output_type": "pyout", - "prompt_number": 48, + "prompt_number": 10, "text": [ "15.0" ] } ], - "prompt_number": 48 + "prompt_number": 10 }, { "cell_type": "code", @@ -296,13 +285,13 @@ { "metadata": {}, "output_type": "pyout", - "prompt_number": 46, + "prompt_number": 11, "text": [ "18.208462086997862" ] } ], - "prompt_number": 46 + "prompt_number": 11 }, { "cell_type": "markdown", @@ -325,13 +314,13 @@ { "metadata": {}, "output_type": "pyout", - "prompt_number": 49, + "prompt_number": 12, "text": [ "173.0772946873557" ] } ], - "prompt_number": 49 + "prompt_number": 12 }, { "cell_type": "code", @@ -345,13 +334,13 @@ { "metadata": {}, "output_type": "pyout", - "prompt_number": 38, + "prompt_number": 13, "text": [ "13.155884412967291" ] } ], - "prompt_number": 38 + "prompt_number": 13 }, { "cell_type": "markdown", @@ -373,7 +362,7 @@ "language": "python", "metadata": {}, "outputs": [], - "prompt_number": 40 + "prompt_number": 163 }, { "cell_type": "code", @@ -387,21 +376,21 @@ { "metadata": {}, "output_type": "pyout", - "prompt_number": 42, + "prompt_number": 164, "text": [ - "[]" + "[]" ] }, { "metadata": {}, "output_type": "display_data", - "png": "iVBORw0KGgoAAAANSUhEUgAAAXoAAAD9CAYAAACyYrxEAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJztnXmYFcW5/79nBpBFcUEEBQwoKMi+KChRBwhBVFxijJi4\nBfUm/q4aY67xJup1TC5g9BrcEjUqatSAGjckQjTiiIoCrhGUTUGHfRNh2Jnp3x/tS7+nTm29nXPm\nTH2eZ545p093VXV19bfffuutqozneR4cDofDUbKUFboADofD4UgXJ/QOh8NR4jihdzgcjhLHCb3D\n4XCUOE7oHQ6Ho8RxQu9wOBwlTmyhr62tRd++fTFq1KgkyuNwOByOhIkt9HfddReOOeYYZDKZJMrj\ncDgcjoSJJfTLly/Hyy+/jMsuuwxu3JXD4XAUJ43iHPzLX/4St99+OzZv3iz93Vn5DofDEY0kjefI\nFv3UqVNxyCGHoG/fvtoCeZ7n/jwPN998c8HLUCx/ri5cXbi60P8lTWShnzVrFqZMmYJOnTrh/PPP\nx4wZM3DRRRclWTaHw+FwJEBkoR83bhyqq6uxdOlSTJ48GUOHDsVf//rXJMvmcDgcjgRILI7e+eP1\nVFRUFLoIRYOriwBXFwGuLtIj46XhEKLEM5lU/E0Oh8NRyiStnW5krMPhcJQ4TugdDoejxHFC73A4\nHCWOE3qHw+EocZzQOxwOR4njhN7hcDhKHCf0DofDUeI4oXc4HI4Sxwm9w+FwlDhO6B0Oh6PEcULv\ncDgcJY4TeofD4ShxnNA7HA5HieOE3uFwOEocJ/QOh8NR4jihdzgcjhLHCb3D4XCUOE7oHQ6Ho8Rx\nQu9wOBwlTiyh37FjBwYOHIg+ffpg0KBBmDBhQlLlcjQAdu0CunUrdCkcjtIn9uLg27ZtQ/PmzbFz\n5070798fL7zwAjp37uwn7hYHd2jYsAE4+GDANRGHI5uiWxy8efPmAICamhrs2bMH++yzT+xCORwO\nhyM5GsVNoK6uDn379sX8+fNx5513okOHDlm/V1ZW7v1cUVGBioqKuFk6HA5HSVFVVYWqqqrU0o/t\nuiGWLVuGU089FU8++ST69u3rJ+5cNw4NznXjKAXWrAFatAD23Te5NIvOdUN07NgRp556Kt54442k\nknSUOE7gHaVA27bAeecVuhR6Ygn9+vXrsWnTJgDAhg0bMG3aNPTs2TORgjkcDkd9YeXKQpdATywf\n/apVq3DxxRejtrYWbdu2xbXXXothw4YlVTZHiZPJFLoE8di61f/fokVhy+FwmEjMRy9N3PnoHRrW\nrwdat66/LpwePYDaWuCzzwpdEkchyWSAPn2ADz9MMs1ktTN21I3D0VCZP7/QJai/eB7w+efAt0Nu\nHCnjpkBwOBx55/XXgS5dCl2K5Ch2N6QTekfBKPabw5Ee1L/hyA8FE/of/hDYubNQuTuKgfrqm3fE\nx137/FIwoX/2WWDVqkLl7nA46gurVgGLFxe6FPWbgrpu6uoKmbuj0JBVV1+tO+d6ik6Yuhs+HDjq\nqPTK0hAoqNDX1hYyd4fDUR9w/vz4OIveUTDqu0VfX8td33BvTvFxQu8oGLZCv2BB+mVx5BfdNf/o\nI+DNN/NXloZAQQdMOYuoYWMj9J7nr0JVWwuUFVkwcCbj2nAajBgBrF0b1G2hLPq6Oj8ysFmzwuSf\nJM6idxQ19d294wiPeK0LJfR33AF8u65Svcd1xjoKhq1Fb9rHUVoUy7VetKjQJUgOZ9E7CoaNiFMb\ncW2l4VAsFn1aD5xdu4B3300nbRVO6BNkzx7gzDMLXYrk+Pe/033rsrmRnEXf8CgWoU+Lv/4VOP74\n/OZZUKEvtZv3m2+AKVMKXYrk6N3bH8GcNs6id3BKTRdEdu3Kf57Oondo2bEjvbTDuG5K/eZ3BLhr\nnTyuM9ahJc3X5jCdsc4oaLiUmo++EBRE6KkCi1Hop0wB7r+/0KUoHvIh9DqcRV//eeIJ4G9/s9+/\n1K91Ic4vltBXV1djyJAh6N69OyoqKvDoo49aHVfMQn/VVcAVVxS6FA2D+m7Rl1onYVpceKH/Z0sa\nnbE7dgDr1sVPR0Wxt4VYI2MbN26MCRMmoE+fPli/fj169OiBgQMHolu3btrj6KYtRqEv9guWb/Ix\nGtX56O2prfU780phtKaKNIT+P/8TmDgxXDtKq83VO4u+bdu26NOnDwDg4IMPxrHHHouVK1cq96+p\nAd57r7gt+jjUt4fElCnAyy/r92norps5c4CPP46fztq1wJdfxk/nmmtKZ7SmijSu9VdfJZ8mp9jv\n/cTmulmyZAnmz5+PQYMGZW2vrKzc+3nBggo89VTF3pWlSk3o6xtnngk0aVK4lb5E183GjcBBB8n3\nKZTrZuBAoGVLP3Q2DkOGAJ9+Gl/EGsKC5GlY9MX+RlhVVYWqqqrU0k9E6GtqajB69GhMmDABLVq0\nyPqNC/011/j/qdL37Eki9/ywYgXw9ddAjx7qfbhwFfsT3pZ8Rd1s3w60apV7Qxbaok+KjRvD7b9w\nIdCxI7DPPtnb60M9dOsGvPoq0L59tONLXehlZamoqEBFRcXe77fcckuiecb2wO7evRvnnHMOLrjg\nApxpOSy0mF03qkZ1xhlAz576Y0txFGc+Hliep37oF9qiT4qw5e/aFbj11tzt9aFtLVgAfPJJ9jax\nHdl0wEehY0fgxReTTbMUiCX0nufh0ksvRffu3XENmesSnn/ef+Wki13MnbEqbEaz1UehNwl5vnz0\nqnxKxaKPUv4tW5IvR74Qr2e+3nC//BJI0QNSb4kl9G+//TaeeOIJzJgxA3379kXfvn0xffr0nP1+\n8APgyiuD78Vs0atuyIY6L4sbMFU414HsmPrStjIZ4J57gAceUP+uIq7rZvNmYNmycMekyY4dwO7d\nwfdCXMNYPvrvfve7qDPcgQ89lLutmIU+DvVR6IvBoq+v4ZVh6iap8vN0rroKGD0aGDw4enrnngs8\n+aTfKZ80V18NNG4c/ri4dTVxYm4oZSHbT+fOQL9+hZ0HK/Uo6ffeCz7TjVHMQq+6ecNY9PXdn8zJ\nd3ilqjO2kHUa5y2PSKP8994LPPJIvDT+/ndgw4ZkyiPDdN6ZDPDOO9nbiqUzNqmHw4oV2SG69S6O\n3gbZRaqPUTc21EeL3kS+OmNVdRe3ThcujF4uW2wmfkvLddMogbi5NK6xaNSJ8O3iNSoWoU+SQkfh\n5VXo63NnbH0Y3BOFYnHdqAQ9rkXftWv8wTKyOnj33aBMNlM5pyX0UVwj+UC810V0HfFp3D9p3ZOb\nNtntV/JCT0Po+YkWo+tm+PD4g1HCWJ8bNwLvvx8vvyQZO9b/E3nttfQGVFE9/elPwMknZ28T94lz\no/KOsKTgC0fYtOO0XAfFatGb8rAR+lWr5L9HgdL8+9/tRyjb1P8f/qD//fPP/f8lL/T8FU58nSsm\ny/df//L/VCQddXPllcCAAXZlywc33uj/ifzpT8CkScnnN2tWYA1Nngx89JH/OQ0ffdrtzEbok/LR\np2HR24rQP/5hfx6ZjD5dno5K6J95Jlz5dFCa554L3HRT/PQIU9mefz53vwbnoy8moQfij2gNa9Hn\ni88+A5YuDb5nMv4ygfRZBj+HNDoSBw8G/ud//M/cxy3mlURbkR1bW2sfgmdqE/nsa0pS6MPW6emn\nh5v3xzaEUpw4j9pAebn6+MGDfWPBlrS0xtb12WCEnj/ho9y8fDK0YiXMedXUxMvrxBOBrVuD7+PG\nBS6W9euB++4LfjvmmNwQvBUr9OnnI8qFLGEu9PmKunnwQaBTp2TSKqTrJgmhj1K27duB119X/57J\n6Gc+1Vn0hMztS8ya5U+zYIsp1PLnP49WD1GEvhDkzUcvq+gwFXvssYFPu64u20ItFsKEV3KRjsJb\nbwHV1cH3G24I+hieegr4f/8ve3+VGKkaYD76T6i+eB+ASuj59jVr4udt24kmK5OIjUWfRhw9EM9H\nT9c4ykP0wQeBoUPVv5tcNzajonUWPZBM/wTgn/8DD6jfJnWYBDwf03zbUNCom7CNnxrmU08BRxwR\nv2xhSNpHH9eil+VD9dqyZe6+YoMzNVDe6NN6k6J0dRa97OHZtm38DuIkLax8WvRJum7iRInROXfv\nrt4nbaEvK/M7V23QnSOdi7Po42TAXr/idsbS8Zs3J1M2XR5REM/r3XeBP/5Rvm8aQk/fowi9+D2f\nFr1O6MlaVj3UohLmOpv2DdMZ+4Mf+NMV27B9u7nDPo5VG8UtJtaF6lyScN2Q0Kt+//xzv3PVBp3r\nhqKyTHq0ezewfHn2NpOQ69xP+aRedcYWS6WpEM/rd78DfvUr+b4k9HEEq64u221AadFM0fw31U2n\naqj5sOgJLpRivr165W4PW6ZiiLqhMjz/vP1Q+HXrckNw07Doo7RBG0tW9jZP2Fr0EyYAH34o/930\nkPM8u7cWlTHBWbAAOPBAoEOH7O1RXDcl3RnLP8cV+iT9XosWmUfxmX4T97E5P2pc5eV2cd7r1wPb\ntuXm17hxYGWI+fLFMsK6brh4pe26UW3T9evELVNarpu6OmD27Nx9eHlt4/p1RhKRhI8+SZcFvz5J\ndMbeeac6DdO5X3+9L868XDJUQs+/3323vF/NRd18i01jDZtWkjcpfxWLewFEEdJZSvw3G4uqdWvg\n4ovl+ZEri25c+s8bpq3rZssWPz2ZlbpyZbKNVHbeqrBO0TIrJqHnb05vvAEIi6wByC6vzZTX4jEi\ndH3iGD1pWPT8OunKJlr0K1f6A5l4uzP56E2/z5kT3Bs6142NRa/C+egpA5aD2Bk7Zw7wox+FTytJ\ni14UtCQnNUtS6IHsKBuen1ivstdVk+uGOP54oG9feZnatQOeftr/vGZNOh3i9cGiF+uGtyFVBA4/\nRmfR79oF/PrX6t/pvCkfU9tRuT34sWHq0rYT3/PCDZgaPNhfNGTdumB7ebk+DZPQ27ofRaG/915g\n7lx92kQhpxAJQ2JrxqrQvbr8/e92E0Lp0gJ8K3S//aKVL8lOxzBipPJL6xDFWhR6+i57JTd1vtL3\nBQv841X18vXX/v+PPoof4iqrH9XNKYpSGCtUlk+cG1AUc15XNoaCzqL/8kvg9tvVv4cxJgB/etwd\nO3KXJAyTRhh4mrYWfVlZEO7K3ZNlZfrrZOOjN30GcoX+qquAU0/NXb9Yhq2PvtCCn7coT/6EFwXK\nFpVF37Jl9nTIYVAJGo3aXLnSvpxhXDe8sdk+bFQjCGm7eOPy/G07Y2Vllz0wwsShqzD56GVliCJO\n+RR6VT3bCr1tWwjzwFPtk4brhsfmR5kCQXTd6NIwdUTrxJ0ji7rRdR7zaZ2d64YySKDXWXwwyCot\n6pQCKkH7/e/DpxvVvRBm/hBO//7Z23UWfVh3l0pwKJ18CH1c141u3ySFnn+3SddW6HVrn9qItOlh\nEKczVoXKR8/r5eqrgcsvl//Gz3/7dv1yitx143nAK69k/24r9DIfvRg1xH87/3x1WiINrjNWFkdv\ne7OJr+2y46LeuGn46MMKva0VZxspY2PRR42jz6dFL7Puw1ihYruJOieNWDeij50Lt0071F1vU1sI\n08bEB79Imp2xOov+L39RW8+8rFdf7UebqeBCv2IFMGJE9u+qulG5bmwigQA/NPqJJ8xjBYAGFF6p\n64y1RbQ8ZJUXtYNWd2PNmhXuARLGdcOR7TdtWvZUuID6HOl4arBhLPqwcfSqQWs33eRPehUGk49e\nVoYoFj2l07hxMH1CkhY9nxyN6lk2Rz3lqetElD2MeHSVeG1tOvxNHcRJCg83NlRtTty+dm1gONj0\ndxDcRx8mus8m6iaT0deLaVJAGrkdxkf/73/HnypdRSyhHzNmDNq0aYOePXsq99FdANubTWzcsuPS\nEPrXX7eLsSeStOhfeskfWctRnSM1VNEyqasLRi7adsbKrECZ0Ivi8fTT/jS2nBkz/DlRwmCy6MM8\nRPm+VN7nnst9Lbfhn/8MJvESz52vkETp/vCH6rR0bVXm1qFz3X//QGBU1jj1hXle8FsaFr0KG4te\nfNB98knw2SaCSZaOrE5Vxoqt0HPE30wC3rSp37Eexkffu7cf8ZYGsYT+pz/9KaZPn67dRzdgKqzQ\ni52PHHHbyJF+z7lt2jLC3gCiCMmE/tln/UVOTPnItqkeOqLQ8wfjG2/4n8O6blTnrnork3WM/eIX\nwH/8hzwdKp9um+yzSpz4TIorV2bv43lBX8u8ef7/sEJ/yinBG4soQDxyzCbSRNfmdEIvS2vRouzx\nEly0TPnpfPRjxwYPRVoAhGMTR28r9CrXjWk+I0rH8+RvSVHDK8UyyY63sdQ3bw7fGZuWWyeW0J94\n4ok4kIaeKUhiwJTYIBctyt1HvMGmT/fdHzKqqoJGpPPRc6vEpsw2VufUqbkLnMhuRNmxZWV+2uII\nPWqo5Dvm5aDXW9s4epM4qIS+SZPcfU0WWZioG9OAqaFDgxjsdu183y6/DhQpETXiCwgeZqKPXmbM\n6NAJvUzcdEL/0EP+VBsEla28PHcAnSrdujp/kXGez403Ajff7H/mse2y8+PTBdu4bkRRVkWgqTqt\nRRcuf6ip0hV/nzs3mIdKFXWju+dtBJy/Odp2xhal0NtQVVUJoBJLl1biyy+rAIQ/GdGKo9BHILDQ\nwgzxHzLE70zhacrKFTbG3sZ1I7N8xYmSVMeWlQEPP5w7ZkDnuqGbKqxFv3atvCxiKGf79sA778jP\nK4rQm163de4GUTD4daBOvThCTw9N8bx0lqCMJIRe9cbFH0JhhH7MGLnlrsqLn+f3vy9P09ai59TW\nAocc4n+2GXxG303tQfw8dmwwD5XMoje9mYkWvSpAxLYztqqqCkAl6uoqUVlZqc48IqkL/bBhlQAq\n0alTJTp2rAAQXJSoPnoOdQ+IaZl89qKbQ0ZYi14l9HfdFeQl81mfcII6LU4mI18VSeW62bIFePnl\nYD/+QLnySukp7EX0t/MyAME1XLECePvtQOg3bgxuZNsIEtU2nUVvurHLy7NFh6zDOP5oG6G3aScq\nAZs3z+8LEDGdKx/YIxP6Y44B7rlHnS6lpYpLD1NnNuGVJqHv0gW44AL1PjKDJozQi9+juG5stMvG\nl09UVFQAqARQT4Ve56O3xWaBhKjzrdv66KMIPR1/zTXAY48Fce82qIRedpPQzS3eAA89FER/fPCB\nP/MepSv27ptCCAnRoqeykkisWGGO9tChs8J69tRPKet5wfXkr951dbnXJoxFT/vSOYp5qyKFVKja\n3MiR/vB7EdObj0not271O8ZVadAxdG0XLMjdL2xgQRzXTXm53lATDZrXX09G6Fu3zm4/OmymYzGN\n7JVRb103afjoZSQl9KKPPkqUh8x18+KL4dbbVLluZMO+VRa9LlTPhEqkZT76hQvlr7BxffSiAMyb\n589BLubP9+cPAn4dRJdPHB+9mHfY6SxUQi9z4anS5JZ/8+bBZ5nQA34fyuTJfl2sW+cPRqLft2/P\nzqdbt9zy2j4oeT3bhlfydhJG6CmvU04J37EvE3rKHzD76HWWOr8X0hLusMQS+vPPPx8nnHACFi1a\nhA4dOuCRRx7JzUDy+hbWqrIRetFKEBvKeedlTwpma9Hb7EfohN40AZMqLU5ZmTwdlY/eRuhVPkYu\nGPzGkAn9ww8HUS+qCAoZJt8z/0znMnVq9m9/+xtw2GHBftxFk5RFT9BD1taiX7pUns/f/w5ce619\nvrJ6euaZ4DMvj0ro99nHH9FZU+P7wG++OUiXooZU99d11wH336/fRyyr6KPXuW54p2sUoRc/EzqL\nXta2OLauG/q/fXvuWzAFT4j5yepQ9ZBPilhCP2nSJKxcuRI7d+5EdXU1fvrTn+bsE7bXWUaUtS3F\nhvL00360DSETcFlj4L5oE3T88uV+47Xt3JGh6gDTWfR0w+gselPYpJgmkG0R6zqaxXRMFv1HH+Vu\nU92cdBONG5f928yZQSeiaNHzMkex6P/2t+zvYYX+iy/UaU+YYM5flqZsG2/DKqGntxFqh61aAatX\n+59Fi17kzTeB//ov/7OtRe959p2xotCXldmNNVD15xCqNsrbA5Br1AB6oX/nnaDTnPabNy93GnFu\n0ZuMnqOO0v8el4L66On7l1/mHvfSS8HvNha9TWeJ6Jbh/2XU1oZ7uFAZhgwBKiuzjw0r9GEsemqo\nGzf6A6SowzaM0ItMnJj9XYzgsHlgRJkZ1CT0xKRJfiejaEDwEFOZRR9G6H/yk+zvKteNSujDtB3d\nQzHMm49K6Kn90bb99vNdHoBa6Hkd0T6qe7CuDliyJJqPnkca2Vj09AZicplxY87GR8+PMbUPGpfB\n95P1e8l0RlaHVL9pURChFyupY8fc42gEIKAWF92rmayhyN4qbC16E2vWZPvg16wJb9GPHq0XUpNF\nv26dv1gzxQfbCL3tgA5Ki0JbbepFlr9sDARHZaWJMdUvvwx89lnusZ06BZ+5uItvJEm7bjIZf9k/\nmQDbrBFL0z/LMHXGRhF6jsmiV+XLefppP1rGxnUj3gthXTf0YLjllmCbzkd/223Zvz/7bHYfh/j2\nSuWlz1FFeMeOYLWxONFeSZA3oecVPWRI9m8yZK+muqdyWIu+tta/MXWdseIrno4rr8weBSp2+NgI\n/VNPBbP1yQYcmyz6xx6Tb+dEaXCeF9wM9LZgY9GLQr9qFXD00fq8KN1//hO44opgu3gulLZ4vcja\nE8Xd5HKyweS6WbBALsDdu+vT3bYNOPNM9e+yulZZs7yeZJOtkQtSZq3rDClxm3h/0TzyqvBKTlwf\nvWwNC53r5vPP9dfdZNH//OfqY3Uadu+9wJ/+pC5fPkld6LlVZRqkIzsOUAu92Ni5RWWy6D/+GBgw\nwDyToK6BvPkm8Oc/+5/33z+3/Pzi2lqQdAyf85owdcaKa8rSAuSy9MVy2Vr0qnTE9IDcujUNaQeC\n+n7gAd99R9gKPf8ss+ijRN3wOpo7V+264a/qfLuJDRt8v6+KqK4bHj1D94NsWir+cDShuh/oIWgz\nH71O6Ovqkhf6PXvshZ4G1vGyV1erj9eVk49g1xml+SBvQh/WXyuz6HW+Uc/zhZssYdONTCvu0GyG\nvKw8fV3jv/FG4D//0//crl32b3GFXoYqjl7l37UdZUlpq7jqquyObF06BH8LIMJELok3kCj09F3W\n70KfuRVvirrZsQN46y192WbPBo47Tm3Rl5VFE3rTSklRO2M5uusbxnWjqj9ql/yBahtembZFH0bo\nyfWnGodBLFkS7KeCX4uSt+hVPjsRcUSgjetG5l+np6iN6wYI4rLFPOm77gLtu2/wWZzyR3TdmISe\nPxB1ES1hhD5OZ6wIH0Szdi3w+OPy/bp2zc5HJcQqbIXedG5ipI3Jor/3XuDEE/3P/OHPyyTLh3/n\no3Flx6kw1UtUi56jWp0MsOuMJUwWPX87CGPRH3SQbyyF8dHLyiUuRgKYhV63hi8gr3+a30fVD0H5\nElECE5Ikbxa9bE1XXvkUAZDJ+LMPRrHogdxRfiqxpYvArYOvvsrtDNTdhC1ayNOmfMNY9FzodROK\n6TpjbbZHdd3w38ma0UHnUF7uu5BEt4YK2Q0LhHfdcCtMtO7F44DsibvattUvqq0S/qium3wIvXi+\nssnDknDdkPtQDK/ctg347W/9z+K1XbrUX3uhrEwv9CtX+gaHzqLnxlcUi57g+etE2taib9kyKGch\nrPu8CH2PHn6F6BobEHRErlgR3kdPv1GjpQvFOzVlQs+tg/vvz44KMV0UPiJRJKxFz2PfVcJt8tHb\nbI/qHxRHWZrgVi7VsazfQXWcbgAX/8734/Oai+4aSvfpp+Xpi1Ev33wTfDYNnonrurFxg4nYdMZy\nxKglmbsnjtBTu+RvB6JYjx+fvS+xZo3vSiUjRyX0557r9zvYCj1t2707vNBzvZo1yx9VbELMg+q1\nUaMgTr5vX3+RHg4fyJkWeRH68nJzYwWCC7h9e3aj4yPhVOF33KL3vMBC4x2SmUwwKyPlresgNMXR\nk0W/das/nw3niSeyxweYom4onz179K/fsnSScN2YHkR8NkvTosyA31ENZLszuJtMRc+e/lJztq4b\nXu6zzw4+i+4accpqftyCBbmTzemEQfVmaSP0sjcyG4teXIRGdR/YCj1vG1GEXtxXtOg3brSPugH8\nNlVXpxd6MjB0Qn/ppblljWLRi9MXyPKk/Tj8GKrzAw4IysfDxonDD1eXLSkM3UDx4UJvsuipMkSh\n50O0ZZY+P3bXruz53sU8Bw3y/4ujSWXY+uhl0S1A9kPEJKRc6HXzzMgarOrmlqUjbrN13fApbG1C\nRfniz3RuNBLTxJtv6jvsALnQc0SLXjI7x15k6xbohMHGou/fX952mjSxj2AiVq8O3B6yY2xWZRLn\nWYoj9PPmmYX+xhvVaciEfts2s9BTP5jKR9+vn99ZzrcBvn7IBmUSNlMgqBB99LKHrth3UwhSt+jp\ngss6Z3RCTxfpiy8C0Vi/3p9hTtwfyLbouYtAnGuHBItER2fRy3rbOdxHb8JW6F95JfwoyT175Fa2\n7AFg6nhSwTsobRqtzLL96iv/v8l9JHvtF+tE5roR01BZn+JxpqgXEZULkYS+SRN/plCV0MvKyhGv\n5eDBufWhct2ors0HH6iPDyv0PXsCc+ZkbyfxFhfFEfnkE7mIn3FGtutGdl0POMD/r1qFS5z0Txzw\ndMwx8jLFEXpdJzcX+jAuU91DKSqpCz3gXxhThxIQLCJCT3fAnwCKBulceGEwqhZQ++hVnaD8iUuv\nwjqhN3UgNm2q/k2Wlg7K56qrsjsGVftxdu+2X/hDvEnEaSZU8NGBNhEEvF+FykxT8JoavWywjY3r\nRkzDVuhlFqauf0Xn/qqr88VG9TYou07ifiRoHLE+VK4b2+iOuK4bijcXefJJ/fF//atc6H/wA7NF\nr2urOqGXzTfPScqip3KI6eoselneMvdOXPIi9ORykFn0NEoWCFaq2bEjqBhbX+n//Z//f/fu7IgJ\n3asVYB7Eo2v8ZJ3Z3CC2Qg+orW7RdUWoLHrZDaFyVZksfX6czTzzPG/Vm5sKmUUvXidTGbjQyuqM\nrkdNjblmvpxHAAAgAElEQVTTWjxe/M7nJg8j9J7nD8AS60ccfAfkPoxUFr2t0Ee16GkfCpwgqE50\nA78A/z6VPVgp4kYn9LzPRfZbJpNbv4B+DQP+O0flJhXRBYjYWPQyt2/YmW5tyIvQA9mv0tz9IrMM\nRB+9Lk2CVlLavTsQffquOgaIJ/TkilB11HDCCL1KxMSQTb6/zP0gnnvjxnKhHzbM/MotDmoxwaNn\nVJ2XKqZNizZgikO+ZFV+dNzBB/uLmMuOV2Er9OLawEC2EC1c6PuUxfLJQpHFm1/lrknboqd9xSil\nMD5oldCbLHrd4Et6C+T3Ad2fJqGPY9HrxlhwoX/7bX/GUBGZ0G/aZJd3GPIm9Nwa5a+mMoHhPnrd\nDad6heOsXu27QwC56Og6Y2XpEatWBVPN2kx6ZGPFEmEtelvXTZMmcteNbPUhkahCL34GzJbS5s25\nN5oqPFDnoz/jDHV+9IC3mZZB93r+7LNyoV+2LHfuISDbR0/p2gi9zhdcW+t3Ni9YIL82fI1lwkbo\nZXVLbV0l9OXl/rz3sjLr0iX3hk7oxRlUxfxVC/OYtCQfQr9pU7bbmZAJPYUAJ0neXDfcojf5trmP\nXicKCxfmbhNfKauqAt+w7OJFtei5FS/OMSMjzCIcOjeKykcv6+QTG7DKoreBl4mHWqrgftGwFj0/\nnhDLTe1CFU2j8mETPAyvTRv98brfjjxSLvQqHza/TvRZbBs0uIZj6owdM8afzVHWzkwhubKFPAC5\nr5jauup61NYGRocqDFdWtzauG2qDtp2x/DdVvoBdeKUKW6FXIdMOm7UvwpIXoaeb3VbouetGV9k0\nmvakk4Jt4kr2vJKTFHpeLhuL3iT0ZAXpyqSy6HftshP6Jk1yHyK2lsvKlcHnc84J0lPBI6h695b/\npkPlqhGRWUmAP9qSEBeEEKF5jzi2Qi+z9hs18t9KZHAhomNF15+N0MseZLt3RxN6qltdEABBb+Ci\n2PJrSgKvimaSXX8b1w3lqYqjV40cp/wWL5aXJymLXhdeqUJWF6KGJUFBXDcmod+61c51Q/BGId74\nJqHXpb9pU7bAqY4z+bcBc+fha68Fn3VCHyfqpkkTO1eFDFFAhg/PvdkvuST4zMspWi1RLPqw5eaD\np0xvXLIHlm0QALf86Po0aqTut+FCRHUqth9b102/fv6KW7ZCz99cZFMg6KZKJqgudX1fdI46txrg\nL17/ne/4n21cN9QGZIaVzEfPf9Mhuzd37gwXXUbIXJY6oVcZbklTkM5YLvSyE62pid65IwoCbzA2\nDZkzdap6LmpebhvXjU2kChFG6DMZtetGrNtu3fypnKNSWRl8ljXefv2Cz7rrZ/PwFoUkjcZPmKZ0\n0I1+LCsLrhdF2uhGDvPfVEIvKw+1YxpTUlvrl6usLJhaYM8evdDzsRAyi94GldDzOjEZctQ2mjYN\n9rVx3VA9qyx6k+tGhez8J070+19MiCHeYYVeZbglTWyhnzlzJvr164devXrhnnvuUe7HK8HGoqd9\nVa/mHN4ouCD07BndgjWRlEVPMyZy+DnobijAb0Qq141Iv365qx1xETvkEP3xpthzvk1nDdnECYv1\nxeemTxqZMOvCK7nQiHHbdXX6G5vvT21cbD8ysaI2/rOfBceS0BMzZsjfQG1dNzaohP6994LPtkLP\nNYHa1p49aqGnepfd02vX+umZrqWMMEaY6Vj+1hRV6NPQrFhCX1tbizFjxuC5557D+++/j4cffhif\nieu7fQu36HWTgQHZQk/L4ungjYI3wH32sQt9jILONSFD1ZhkDZNfaN4DL7PoSeht5p9p3lxfVjEN\n0ZLl9SwTI96gdVaU7OEmkoZVoyKsS++HPww+y4ReN9LWxnWjq1v6jSxYfk127JDfL7oIFiCc0KlC\nFceODT43a6ZPQzYGgB5au3dHc938+MfA669Hs+jjTCHMj1W9+dV7182cOXPQuXNndOzYEY0bN8bo\n0aPx4osvSvcloR8wALjvPmDUKH+7ynUTpvHxiuSV1KhR8vNA02yYvNyyC6NaXFtE1jC50PNGLeuM\npZtDtOhlwt+smfwmoQYqlkW82UwWvWy+/6jkU+jjID7cPE8v9Py6qCx62bWja8EX+FCtT6A6lhPV\norfZN4pFD2QLvey8dK4bIux0FkC8tqrTKT5VtwrZQyiNuetjTWq2YsUKdOjQYe/39u3bYzathruX\nSqxZ45/ssmUVGDWqAgceCAwdqn4d37QpXONTuW7Ky5OptMMOC16J33nHj/bhgit71RJvVlU5ZDe1\nGLN+7LH+Z5lFrxJ6WYTNPvvkWvS6OV9EC8Uk9Pw6hJnbQ0aaPnkRXqeyaRN0FmFYi97GR6+z6LnQ\nq2YzFZG9sdisSiXDZl+TG1FVt2Vl/nUvL9cbQM8/r047SmdsmP5Akdpaf9CdLJw2nOum6tu/dIgl\n9BmrGKRKtGnjn+zhh9vNlrhihZ1vPihH8Jk3xKSEXha5Y7LoxcYexnUjrqHJ/Z8qH73oDpOl27Rp\n7jgDIIgcEW+S8vLscptcN7YhaTbIBGXECL9dzJ2bXD6A3JWgm8KBI65oFMZ1E8VHT/nxztgoqCx6\nkyjaPIBNQk8Tou2/f7bIlperLfqyMjs3bNRpoKOyZ49/HuvXqwfW2Ql9xbd/xC3RCyUhluumXbt2\nqGaz5ldXV6N9+/bSfcntYFrEAfArLcxk/DxN3hCpJz8uvPHQjcUbh41FrxJ6WcPk58CXWFT56F9/\nXR5KKdK0afaCGkD2AgtJum7iIs6/DvjlZy+QiSETdVuhF4U7LR891a3ourEReln5qb1873vh1ja1\nseip7aum796zx+97GjVK7boR68A2NDis0HtefB+9zPjj+aqE/v33s+f6SpNYQj9gwAAsXrwYy5Yt\nw65du/DUU0/hDBp3zuADpsRKsX2a6p6KKqEHkhd62bB1mZUjljeMRc9vJj6Hu0rogWCGT0Il9KqB\nPLwsNDEVpU0rN4Vx3cRFdd2SzIPndeqp/nznFH8vTjGgIk5nbBiLnuDtz9Z1oxL6bt3833ikjqlv\nzKbvrHt38z4dO+YOMKK3U5lF37hxekIf13UjuwZt2wYap7pGsumIZRPaJUGs26ZRo0aYOHEizj77\nbPTv3x9jxoxBt27dpPuqLHrbShYvIBdIlesGSM+i5+nKGqBpPnXCJPR8znseuUSI0RiErUUP5Fr0\nNIiFRoxS2CWvZ900smmSRh40KVxdXTA5nm1USljXTVQfPcGF3rYzViX0ZWXBYu6EKVTYxqIfPNi8\nj+zNWNcZayv0ttN1E59/Ht91I65Pncn4SweaLHrZdNQ20XNRiG0fnXzyyfjwww/xySef4Oqrr5bu\nw+e6Scqi5z37/OYXJ1tKy6I3Cb2tRW+adVL0n8o6Y2X5qYRerA/uuqFGRmmK303WYxrWdj6orQ2E\nnm+TfRYRLXRKC8ie1kK2fxTXjSj0US16skR//OPs7SYffFLRUCahlxl2O3cCp52mT5fuA64Juqkd\njjoqXsc/t+h5qCh/W1FdI5kmRIkasiHvc93Y+OhliELGY3VVVl4mk45F/4c/+FMAELKGIl5ccSk3\nwtQZKwq9aopcW6HXIUZ2UBo2Heg2vydBlDxMa3KahD5M1M3u3cGbkGgtA9ntIozrhluLdGxc101Z\nWW6bMN0vquk2wiITep3rpkULf1/bUcxhor507kwgGKQmg1v0vO74spKqayTTjaK16G0RXTc2Fv2h\nhwafxcriNwM9Gd96KzeNNIT+b3/LnjP6oYdyjzEtnEGYXjX5Z+rs44Rx3cgm7yory3XdUJq0P52L\nSWSTsujFSdDiYiq3TOijvGmKQk/1ccIJwT68jqhtip2W4rU88shg/psoFj2dy69/HWxTCb3JB797\nd7iV1VTIFu3RWfTkwpS1YR00AZ8OmTuToxNfbtGLg6dMrpuSFHqV62b0aPUx/CLpblYSUdnC11GF\nfsyY4DO/UFOn2nVI2a4SE8Z1I/PRU72IN7xM6GXbdK6bsBZ9UugaexplMFn0OkQLnQu97NrIhN5k\n0Xfo4Ivrrbdmuw7D+ui5K4kEShROG4s+CaGnTkeZ0JeVyS16wG6qD87115v3EYX+1luzv+vaI03Z\nQJ8Jrj2qNluSQq+y6K+9Vn2MaaoEgiqMrGzq5NAJvckS4g2N33hvvmnnp7S1blWumwED/M+i0IuW\npmqWT9kNoRtxCeRa9KLQ833DThsQBtsIK1tMx1BnLC+/rdDztD3Pv3Z8oi5xH16HJAwmoacHPH/7\niuK6EfOOYtHv2RPeqpZBbyjcBatz3ZAWyNr1oEHqfGweDFzoueFDmCx62boCNvPZ24RlJ0VehF7X\nGatrqLZCTxXWp0922roY2ahCD2QPOlKlE0foudVkEnqZrxMIJ/Qmi14mWDwtGvMQJ3pBLFM+ieO6\n4YweLXfdcGRCL05LIRN6EnbRdWMjDDJfMVn0UXz0SVj0ZKHPng0sWRKUTzWpmc6i182tY/NQ4veY\nTOh1HaQ6oZd95sgs+pLtjNVZW7Jl12SQ0FNYICeq0PMKFyuf9+KrLIa4rhs6njfC2lp1eKWN0JtG\ns5osetV0CTRGrr5a9CbXDV/jWMbvfpf9YBZdNxx+bnRtTYvB0P3DhZ6E2kboZXOukIukUK4buv8O\nP9zvg6Bt1PbFOtD56HXtTnYf8EnpRGRCrztf/oaThNDXa4seULtudDeh7unmecBtt/mfVeFROteN\n6ebneevmrVFdmLgWvUzoly8Hnnwye18+JN6Ursl1I1rwus7YKEPNbbF9SCaFTOi5lW1aeemmm4DO\nnYPjwrpuTEIvs+gBf4I9G9eEynVTXp5sZ2zcNzHuuhHrQOe60Qm97MHwu9/pyxFG6LlFz9tPgxV6\nletGJ7hiRIOILKZd3DcJ143tQhKq43WoLHrazkVg0SJ/gIcsH/E8bS16Lh50DKVJ5ybz0UeZPMqW\npC16E7xDjfiv/wqXBpVr1Sq9RS8b3BdV6AE7oZdFf6jeCEwWPe+DEBk0CGjVylweFTYWfVihVwUg\nqJBZ9DrXkMqit3nolZyPHlCPjNVVCB8VqkNnSaZh0av249haN2FcN7rj41j0VBfUoMP66Il8+OiT\nFPojjvD/k+jFsUhJbFautH8TypfQ6zpjxfRsLHrVfdm/v3pRdM4bb8i3c6EXrwW1zbCuG9NbrEhY\noecWvRh1Y6LkfPS6zlhVhTRp4q8QRcgumMqi5z5lW4teNnOj6jfdcar0VahcNzKLXgaVkw/gAvwV\nd0RMPnpxSDY1cJOPnggr9OTuEEm6sava2NCh/uA3imixuWYnnigPEqBz37xZb9HLxn+o2i8xdy7w\nyCNyYY7qo+fx3y+8EIQ5myz6xYvV87GYxO3tt/2ZK086Sf67znVDYip7yOiEPuxUHXEsej4qv0EK\nfZTO2M6dg0b8y19mr0cqHqsKOezSxd6i50uAAfauG9WFsXXdqMIrKV2ThUX53HVX9vbly+3y4uLB\nb+DXXgMeeAB48MH0XDcHHSTfrqo72U0YB56e7YNZNfU1nfvWrbk+eo7MoueceKL8HLdvN1v0CxYA\njz2W/ftvfiOPuuEjOs88E5g0CTj6aLvwypYt5b+p6vC66/z//fsHayuojldZ9NR2ZUJP5/c//5P7\nm8zNFNait/XR8/RNRhFQgkIP+Bfj3nuDhS9MFj1f//GEE+SRCDxt2fF9+9rHQ4sRO7L5bWSoRCmu\n6yasRS9CIaCLFgE33+x/Vgk93dz77htsHzrUv6Evuyy9ztiwoh21D0CVjyj0NgPh+NB2WdlqavSu\nG369KH6fM3OmXXkJLjJlZcBFF2X/fv31uVNbUN5iGy0rs7tf+Jsfub/oeBmq0dsiOh89HSsTerpf\nbrkl97cmTYIxKYSp3ak6gmXIhD6T8QdWEqp+i0cfzd2WViBCXoS+ZcvgtYYWD7CJoydhatQoW4QI\nlUXPf7ex6Js3By6/PPt32ydrFKE/8EDgrLP8z6aoG9ONp8qfBoF06RKEP6o6Y6lTSGdJ8/+qcocV\n4iRDJbt2Ba68MnvbQw/lCp+YFqVne4OVl+uFXhZeqfPRh+ksNFn01Ob4TOFlZf5Izzlz5HH0Yvo2\nQs/f/FSRJqry6+CuGxGd0G/ZEm7pUZPrRmzHJteNTOg5qjdXWTRXvbXolyzxn1xkmYo9zbpK50Iv\n8wuK/n7Z76aG26GD/7p9ySXZ1kmYGz/MdgAYNsxfNxcwd8ZGzV82URPt+7//C/zpT/5n1fB8Tlo+\n+rBCn8n4oYwPPCD/TUxv4EDflWG6sYHcc6d5YfbdF/jRj4LtJtcNoB8wxa/Xb3+r73s67LDs7SYf\nPeXHl20uK/Mt8GOPzS7Ptm25LgnxreY//iO3bEC2hWuKNGnRIrCobR4EJPQ8rfHj9UK/YIE+3TAB\nILI3NrGeaL0GwD9/sYNYTD9MJFK9teiPPDL7iUZCH8Z106iRfO5mQhVeqbNQKN9Fi3KPA7IrXLcY\nQFzXDZ0j74PgrhsTuv1omLnI0UcDnToF38nnahJ6MY3Jk7O3yR64r76qLl8Ui75Ll9y3L9mrPmCu\nQ52PnlvlNgYAP3cSBlOZdu7UW/QygbKx6MVjCF72bdv8N0txX9WgH45sgXNV/tOnB+sZmGjWTO66\n2WefoE5J6OOEIera3T77mIWeu3lnzMjVGLEeaECYDfVW6IHsig1j0VMjNln0UVw3hKqjRRz5uXCh\neT+OTuh5Q6YGO3YscOGF/uckLPpx44AJE9Rl49NEdOvmWym2D6f/+z9/XnBx1UjZdYgSE6/aTpak\nzKrVdXza+uhVZeDnoKojfu6iRd+jR7AEom4BHTFvmWsljtCLv4suBdGiV9Ubrw9uMMj2t7kHCbq+\njRrllpUMPRJ60Yi54gq7PAB9O2/SRD36nBAfkOL61jz9BQt8o0hHkybA73/vf05qLIpIXoSenzj1\nNIe16EeN8l/F+e9J+ehliFMTmzqabLcfdZTfKS36hg85JDjfMBb9oEHyc/nNb4BLL5UfIwq9KkZb\nRq9e/jqjlA4nKaFXQe4mADjllOBz48Z+Wqedlt1GbOqQzsH0YJZ95vAbVHwgtWrlW36y45O06GX1\nKbPo77jD/y8TepoV8+67c9MiGjXyo4C+/tq32GV58TLZCj2J+P77554LvXWSv1zsswtjCYe16Pl5\nvfhirnEoi7qhe7lJE3M7b9UKuPFG/3NSY1FECmbRh+mMLS/3JyyTLRgNqCtH57o5/XQ/skSFeHPL\nOoOB8Bb9gAHAwQfnCn3r1oFFz8MrTYwcaW4cssVK6Bia+M02jvzjj4P54kV3mswaSVLoeX5PPBF8\nJqEfMSK7jbRtq8/HNrzSxqLn507WJt+X8rFZN8CmM5bmuJctc6lKSxwIp3LdHH44cNVV8jJQnk2b\n+teD+8xV+duKFz0g99/fv0/4dMEk8HQtxPuR5z1jhm8Y8jKo9hWRCT0/XnZtdA+GHTvM7Zy3nZKx\n6HWumwMOAKZMCbZzi16GjUWv4vHH/VhxDq9knmd5uS8aYpgW/SbDZGHILPqKCr9TeOfOaL66Vavs\n9pNZ9LLYZRPdumWPhJRdhzijXM891+5YEnrOgAHmybdsXTcqP/f//m/wmZ87iRC3zFVCr3PdyASK\nrhu3GGXlpO9iO+b/xY5Nct2o8idM96O4LYpF37RpMJd8JhMIPeUtum74uQ8Zou/TE/3/nCZNogk9\nX4WKnzN/O6moUJeJp5UGkYX+mWeeQffu3VFeXo4PPvhAn4lE6GWumwMPDJ7EoutGRxShNyETWptt\nPXr4K12ZLD8u9J4XNLimTf2OMluhN4U88jwJlesmrNAD2REFMmvE5o3NJm0Rk9Cbbk7xt7AWfYcO\nwA03BNv5uZPQ8zh6VRinLIpE56MnyOffpAlw//3y/U88UX68uIIY/10WdikS9i027CIusgc09QVQ\nWqZIF349qD5pISO+r5iOyaKXnWNdXfZylfyN+bDDguNtpkwuOqHv2bMnnn/+eZykGs/M0LludDdk\nVKG3cQvJUEXd6BDL1qkTMHhwOKHnkNDbum5shF5kv/2CcmzZAvz733ZCb3qtlDVS01tVVHhZZX5Q\nm4f88uVyUaUBZoTMRy/GbeuEnpdHvK6ym5/2razMXumMP6AfeMCfV4fno3sr4WWnMojtJQ2LXrcm\nhIhucOChh8pH1hPifSRrqzLNkQm9al1m8VieLh/lqmqLKqE3Df5MgshC37VrVxx11FF2mWgselUl\n8vlHVMPt47huTIiLPqsQG5g4p7sKndCL+XNOO02eDmAn9EuWAN/9bnBOS5f6/2l+8jiEtej5msA6\nhg8PykmEsehVbN6c6/MGfIHlYhdW6GXRPlFcN6ed5o8b4Nspn+bNg/qjMuneAPh3cb0B/rvKoufL\neoYJKaY3RhvEBVh4GkTHjv5CN7Ttn/+U563L0yT0UVw311wTjIblb3L8v43Q207kGJaUxmEFVFZW\n7n2iH3BABS65pAKAnUUP+DdCGj560/4yoZcJmVg2+i5r9L/6VXDDmIRedTPpZjq0cd1QTK9YZx07\n+hNWRaVrV/lkVXEetlzUOnZUpysK/eTJ6gnTODzMlVwDFFHE05O5bsTrIBshyv/zwAIO3y5bY1R0\nG8g6b20tenE/sb2sX+/Xncyiv/564Nln/c9hXDdhLPq77/ZDd020bx+0DVoUxsZ1IyunzEcv3ucm\njfI8v0+AjDCxnukY3UyjVVVV+MUvqvDFF+p94qAV+uHDh2P16tU528eNG4dRvFtbQ2VlJXbv9juu\nnn02N9JFVomZTODz0gk9oYu6CYPKdcMjVERUFr0s77Fjc4fHh7XodY0wTAcuT2fAAD/ULo5F/9ln\n8u1imjNmAPfcAzz/fO7xxx8frPvLkd1cPF1R6M87z3w84Ncxd93s2iV/WIa16GVvF2JnIi874IsA\nWbT8PhDj4Fu0CKYREctkG12iEp7PPvP/ZHHfKiMI8KfbkIVEAtl9bSaizGWv6s+IatH36RPNR89R\nCb3Ooq+oqEBFRQUmTgReegkAblGfQAS0EvqqblhjCGQNS2fRr1sXVIqNRa8aGVtsrhu+zST0NmF8\nIpTmJZeYj5E91Pr0ibdwhK5MxJAhfh+GKFb0RjBlSnCMzbkCfhuJEpbGHxA89llMP4zQX3CBPC8x\nPJCge0Im9FQu8bOqI9LkuiGojaosTFOYpng/6sYi1NX5ocyGeI3QiPe4zqIXt+ks+vHjc/tobFw3\nHLE+VNdNRlz3qTLdJBLxDHeZGL8r+w0IKrFVq6BDK0nXzemn5w6f5/DTUL2GiqiEXoZN1A59F33S\nKmQNz2Z1JJnQd+lit3BEGGT12KSJeqpbju6BLQq9TRinuA8PKbWNuqHPouuGyso7mHn5+Zvcc88F\n+3ChF8vLo3V0ZRQXdRfTEaG6V1naMtdNHKEvK/Nnkk2DuBa9uLgOj5ghTJ2xqjcA8U2rXgr9888/\njw4dOuDdd9/FaaedhpEjRyr3pRPlDcvWR19ZmTtXvIjKnSFW2ksv+XNv28B70XXPMZWPXobsXEWh\nr6nx/6s6pnRpEjY+Ud4405oxDwjXcHV9Ibp0ZZ2xMjZsyM1P1VYIsTOW9tMtXylu44K9ezdw9tn+\n5379/LUWgGwRULluVK45GmhkY9F/803g1zZZ9GGFPokZTW0JY9HrXFqyN+ikBkyFcd0QRTfXzdln\nn43q6mps374dq1evxrRp05T7yiIObIX+iivUDVJl0SfhuuEDu8K4bmhYudjo+ZB9XjaxgdKsk7Tw\nuSlf2TnaTNkapXFFuWlN14A3ftV1NKVrEnr6TTaSV3UdeHp8pTNVPraRJdyAOOWUoEw2bhTVADCK\n1LAR+pYt9QttA2aLXmwvlE+a6wir0g1j0evCK2VC7/vK/f3pjUTVD8GJE3UTR7N0pPSiIEcXSiZ+\ntsHky41TaTKLXpYPz2PkSP8NBPB9snwiNPHmUFn01Mj4VLA6l4/sHG1mC+Q3QlpWBGC26HfsMIuB\njevG9lpzsbSx6AF//hwqo0rQbeO2ebsqL5eHOqpcN6p50VVCr6oTSsfkuhG3kfCpHihpCb3NA18n\n9DqLnupdFnwxYkRw/Cuv5B5L00ir3gBsLfp8kFehN3VwxhFmU2SGTR68TLYWPadz52whsRnZKYrs\nDTf488mofLOmwWCelzurpGzmz3y8Ll5+uZ2QimWyaQdhXDf8tzVrsvOzsehtsH374L59GhVNn8X9\nxTKoLHqV60YVYkpCH9Z1c/rp8nIVo0Vvez1okBifO0eWtuyadOzo/7d13VD96Kb2SIuCCb1Ily7B\npF42iKPk+I0iEwy+GIMNPCrEttHY7se/iyK7337+DJG6V2W+zUaQzjsvt3OXuzHSEvrDDtP7b0VE\n4QnTGWsrzLwT2Nail5WJ/NyEzlXA4RY9iYwIPxeersl1w4/75hu1+48eDKpr8tFH+jLZtmUgPaEX\n847quikr88stWzVL9mYVxnUj3qO0nQ+Ckx2fBkVj0T/3XDCJkS2mubj5ReHLq9nA+5ZtXTdRflOJ\nrOkhFkboy8pyBxyddpo/wpCnmTR8CmWbDt+//AX48EO7tKP46EWiWPRUV7Nny7fr8j/uuOz5Z/gg\nKdn+mUx0oW/ZUl3nJotehk1UUz6FXhRt3RQIurZB58UNAJnQ69Li14imQOFpi22MHu4vvJBb1rTq\nq2iEPorb5ic/8ScQUx0fdcDUn/+cPWhEJ/S6MMGoVpCIbB/Z63UYMpnAxWPbkWjTCD0POOYY//Mp\np4Sz6Fu39mP5xfyStOjFska16EV3mGmsAuA/HOj8br7Zj7mX9afwc+EuBZXQk3Db1gFdC9P+qvar\nOs5mMFEUbB7iYVw3XIfoeNU6uLSPLB9Zv82SJcDDD2fvKx5LD/c0+8ZE8ib0551nPxuhLY0b+0/P\ndu18149Nmjb5iI1EJ/T77edbakDgw7TJK4xFL7uBwlj0JtKaSAkIJ/Qitj570+IOYv2NGxd8Ngl9\n//2TMmQAABKPSURBVP52aYZx2wF+p/3hh/sPN5XRk8n47evLL/3vOov+hz9U5y8rz09/ql8iU3ZM\nlH2K0XXD+0Z0Qm/ruhGXU1R1xooWPd3DJeW6mTxZHkefBPPmAW+/nbs9rAiqhgLIysp9+JQP9dLL\n8g9r0SfpozeRdEPj0SFUvjhrfJowDZgS37rIR80tetX1EaOGVQ+fuHUoayti3amEvqwMeOaZcPlN\nnGi3pq7sswrbQYZJEKczlkPH3XNPEFlj2xlLmAZsNiiLXiRuA+DHH3CA3IUSNurmL3+Rl03m37d5\nGqfho9dti0rSFv1LLwGffup/jmPRA/615TNLyjC5bkTLlW40Gz+uqoM4zJD7sA9jcX/VbJP5JKzr\nRhTNONhMZxAmvJJDrrP27f1ZUsVjxePDvLXILPp77gkWMDKFmydJ6rNXqojro6dl4nRErTRetvvv\nD5bOU02RoMrHJv+onbFxffScpIX+0EODKXTDdMbK+Ppr8z5xhD7sGAyV0NsOuVcxeHAwKtr0lpEv\nZAJXWelHhcngdaISzaRIwqKvrvaX9RTRrasQph9CfOvOZIArr/Q//+tfwMkn25c1LvVW6N94w5x2\nmm6NuEJfTD76NBtaEj56E/kUegpLFX/v2DH3oRSmXmmVKJ42/W/dOlhcPJ/IhF6c8IsjttOf/9z8\nNhYXGx897SNeD3G8iexYMQ1eJ6ZBdCofPQAMG5abTpoUTOjjcNBBuSvYy6CK/eSTcOmHDXeyEfqk\nom6oPGEjLXTYTJkQlSgWverGFJk505/x0iT0fAoDIHgb1Am9jLVr/b6gO+7IFZZ33klnXQT6PmRI\nuDQKgVgn992XXl5RLHrbay0zQsP66E85JYiw0r0NjB2bO7YjDQom9BddlD14JAy2Nw7t1717uPRV\nQj98uD9q1bY8SXXGig1k3jzfX3vUUckIve11iNII4/rodfAl8XT18POf+6G4xMUX+1EnYYW+dWv1\nTasbfRxV6PPtqlGVA7Crp3x2LhJxO2NlxJ3UDMjuxNcJ/W9/G758USiY0PfsCdx1V/A9TKM27SuG\nQ/L9bVY/VAn97bf7cc00n434exiidsZ6nv/g2rYtd7+oRH3g2kD1c9pp4eP1TXVrK/SZTLbVxN8Y\nwlrh+RDhQgt8VNKaYleGyaK/+Wbgvfey97HlF7/IDdfWibWpneqOzRdF47pJUugJ2QU44ohw4qyK\nqeeMHWs/olMkqo8+STHg8/okDbmFfv97/y8MputEdRdnwFTYB7UqykNHfbHon3jCHyw4a1Zu/jb1\nVExCP2RIdHdX795BAAYRJbxSPNYJPewbdePG9otKpxHaxb+fcYY/t/h3vxv0oKv2lZ1fmzbhLXqx\nwSUhBmkKve16oVGwtehVROmMDXPT1jfXzU9+4kehUGQIp9iEngjT15VEPlGEPopxkDRFIfRTptgt\n5gwAX31lH08cVeh1nbFbtgSfTROlmS5sdXV4iz6N8Mo0XTdRVrW3PScS+j597FasEokj9KXquhkx\nIlgkvlgsepsxCmEevGFR+ehtXYzOov8Wy3XGAdjFzxNRY3h1Qs+nuTXRrBnwxRe+u0iGbQel7GFQ\nXyz61q1zl90zYfvGRvVyxBF+9E1Yotz4cdx+thRLZ2xYCmnR20y6FhVxEXkRW9dNIa9nAZ8x6ZOG\nRb92bbi0OnXy/8cJsdNNwVzsQg+EHyx1553+f9vO2Kh1EMVHH6VN1RfXTVyKVejjsHatH4DhfPRF\nTBo++tNPj7ZSTFJCL/6ehBgkOXtlEtCcLrZCH+cGCuu6iZJ23Dj6QhHGdXP44UC3bumXQyxPGIs+\nSvuldQfqu9BHzvq6665Dt27d0K9fP1xzzTX45ptvkixXLGx9Z6bjZWn84hfA1KnR0g2DyaJPqtF8\n9hnwwQfJpJVv4o4OTtui183WqqNYLPowQv/ll8HSevkgio8+CcRrcsUV8s5r2TH1Uui///3vY/78\n+XjvvfewdetWjB8/PslyJUIUoZ88Gbj00nhpJEG+LPquXe3GFhSCtC36NIV+1SrgnHP8zw3Bos83\n+eyMVeXjeX446iWXhD9WxUknheuztCWy0A8fPhxlZWUoKyvDiBEjsHz58iTLlQhROmPPOy97mb1i\nE/pCikCYjvAkMIXMpemjj1vPbdv6abRoARx7bLhji8Wi5xSb0BP56IzlafC02rQJd6yN0Hfo4Ech\nJk0iPvoHH3wQl112mfS3SjaMtKKiAhUVFUlkqSWu60aWVlziNDZZeKXqe1p8/XW4hSri8u675pBb\nehCkYdEnJbI0I2UYikXoef5R3VBJoGvj+XKLiNdk5Up/UZgox8qoqqpCVVVV5PKZ0Ar98OHDsXr1\n6pzt48aNw6hv3y/Gjh2L/fbbD+cqljbnQp9v6rPQm1w3+Ya/5eSDgQPN+9SXqJuwFFrgRYrRmm/X\nzp+sMF+uG4Lysw0Blh0rQzSCb7nllvAZaNAK/auvvqo9+NFHH8XLL7+M1157LdFCJUUxCX1YTAOm\nVN8bEmn66AsptsVi0Rczzzzjz/dEgyfzbdHHSaMQRHbdTJ8+HbfffjtmzpyJpqo1zgpEnHAqkWIQ\nUp1FXwzlKxRJRN3k45iwFIvAF0s5ZOy7b/bC6StXqvdN0kdfyMiZOEQW+quuugq7du3C9773PQDA\n8ccfjz//+c+JFSwODclH35Ap5qibOLhrnE3HjvrfO3Qw7wMA554bf2r0BmfRL6YJMYqYJJYxK4ab\nrhh89MUICXyc8RLF6LopFoqhDrZvNw9Q/Oor/e90HmPG+H9xaHBCXx/43veA3/0uXhqqeWryiS68\nshgeRIUmzgO9GC36YhDYYqHIvMKxcEKfMHQz7r8/cNNN0dPZuTO5lZHiXGTZyFiHT7t2QPPm0Y6N\nYtE3pPp3D5xkcUJfpNhOh2xDUj56kYYkPDLijNNzrpuGQZLX0rluHKnhLPp0iNIZmw+K5SHzq18B\nxx9f6FLE59ZbgY8+SiYtJ/SO1HAWfToUa9RNsbD//sDIkYUuRXz69/f/GjL1NCq0YeEs+nQoVtdN\nsVj0jmRxC480ANLy0TuiU6wDphzFS319CDvXTT1AF0fvHgLR8Tx/PvGePXN/c1E3Dhn11UdfkjJR\njDdjUuGVnLffBrp0iZ5uQ8fz/GmER4zI/c25bhxJ44TeoeSNN9TToZ5wghOFODjXjSOfuKibBLnu\nuuQGOSVJlIu8dKk/h8cLLwTbnNAkhxN6R1jqq+um5IT+ttsKXYLksJmoyRGdYhVt95ZWvNRXoXeu\nm3pAMa/dWZ+xWbkozDEOR7HihN7hCEE+3ILOoi9NnOumxHnjDaBr10KXwiESxaI/6yzgrbfSKY+j\nuJkyxX5BcBlO6Euck04qdAkcMqIIfaNGwODB6ZTHUdx8u0x2ZJyP3uEoADqhHzIEGDo0f2XhONdN\naeKE3qFl0KBglR3XGZgMZWXA4Yerfz/qKKBI17x31FOc0Du0nHsusGNHoUtRWqxblz0+oZhwFn1p\nUi+F/qabbkLv3r3Rp08fXHjhhdiwYUOS5XI4UuWgg4B99y10KRyO/BBZ6H/961/j448/xkcffYQu\nXbrgrrvuSrJcDofDUVLUS4t+v28nYNmzZw+2bt2KpqW0im8R43z0pY9z3ZQel10mnyU1X8QKr7zh\nhhvwwAMP4Oijj8brr78u3aeysnLv54qKClRUVMTJ0uEoeRq5oOeS48EH9b9XVVWhqqoqtfwznqe2\nEYcPH47Vq1fnbB83bhxGfRtUum3bNtxwww0AgAkTJmQnnslAk7wjJJkMcOyxwJw5hS6JI23ef98t\nf9eQSVo7tUJvyyeffIILL7wQHwkr8DqhT5ZMBhgwAJg7t9AlcTgcaZK0dkb20S9evBiA76OfNGkS\nehbSAeVwOBwOJZG9gb/5zW+wcOFCNGvWDBUVFfjjH/+YZLkcEiZNAo44otClcDgc9Y1EXDfKxJ3r\nxuFwOEJTNK4bh8PhcNQPnNA7HA5HieOE3uFwOEocJ/QOh8NR4jihdzgcjhLHCb3D4XCUOE7oHQ6H\no8RxQu9wOBwljhN6h8PhKHGc0DscDkeJ44Te4XA4Shwn9A6Hw1HiOKF3OByOEscJvcPhcJQ4Tugd\nDoejxHFC73A4HCWOE3qHw+EocZzQOxwOR4njhD5PVFVVFboIRYOriwBXFwGuLtIjttDfcccdKCsr\nw8aNG5MoT8niGnGAq4sAVxcBri7SI5bQV1dX49VXX8V3vvOdpMrjcDgcjoSJJfTXXnstbrvttqTK\n4nA4HI4UyHie50U58MUXX0RVVRUmTJiATp064f3338dBBx2UnXgmk0ghHQ6Ho6ERUZqlNNL9OHz4\ncKxevTpn+9ixYzF+/Hi88sor2kIlWVCHw+FwRCOSRT9v3jwMGzYMzZs3BwAsX74c7dq1w5w5c3DI\nIYckXkiHw+FwRCey64ajct04HA6Ho/AkEkfvfPEOh8NRvCQi9F988UWONT9z5kz069cPvXr1wj33\n3JNENkVNdXU1hgwZgu7du6OiogKPPvooAGDLli0466yz0KtXL5x99tmoqanZe8zdd9+NXr16oV+/\nfnjrrbcKVPL0qK2tRd++fTFq1CgADbcutm7diosvvhh9+/bFMcccg9mzZzfYunjwwQdxwgknoH//\n/rjmmmsANJx2MWbMGLRp0wY9e/bcuy3KuX/22WcYOHAgevXqhRtuuMEucy8F9uzZ4x155JHe0qVL\nvV27dnm9e/f2Pv300zSyKhpWrVrlffjhh57ned66deu8Nm3aeJ9++ql33XXXeX/4wx88z/O8W2+9\n1bv++us9z/O8+fPne7179/Z27drlLV261DvyyCO92tragpU/De644w7vxz/+sTdq1CjP87wGWxcX\nXXSR9/DDD3ue53m7d+/2Nm3a1CDrYsOGDV7Hjh29mpoar7a21hs5cqQ3ffr0BlMXM2fO9D744AOv\nR48ee7eFOfe6ujrP8zzv2GOP9WbPnu15nueNHDnSmzZtmjHvVIR+1qxZ3ogRI/Z+Hz9+vDd+/Pg0\nsipaTj/9dO/VV1/1jj76aG/16tWe5/kPg6OPPtrzPM8bN26cd+utt+7df8SIEd4777xTkLKmQXV1\ntTds2DBvxowZ3umnn+55ntcg62LTpk1ep06dcrY3xLrYtm2b953vfMdbsWKFV1NT45188sneu+++\n26DqYunSpVlCH/bcV65c6XXt2nXv9kmTJnk/+9nPjPmmMtfNihUr0KFDh73f27dvjxUrVqSRVVGy\nZMkSzJ8/H4MGDcKaNWvQpk0bAECbNm2wZs0aAMDKlSvRvn37vceUWh398pe/xO23346ysqCJNcS6\nWLp0KVq3bo1LLrkEPXr0wOWXX45t27Y1yLpo1qwZ7rvvPnTs2BFt27bF4MGDMXDgwAZZF0TYcxe3\nt2vXzqpOUhH6htw5W1NTg9GjR2PChAnYd999s37LZDLauimVeps6dSoOOeQQ9O3bVzmWoqHUxZ49\nezB37lycc845mDt3Lnbu3Ilnnnkma5+GUhfr1q3DFVdcgU8//RTLli3DO++8g6lTp2bt01DqQobp\n3OOQitC3a9cO1dXVe79XV1dnPYVKld27d+Occ87BBRdcgDPPPBOA/5SmQWerVq3aO85ArCMai1AK\nzJo1C1OmTEGnTp1w/vnnY8aMGbjwwgsbZF20b98erVq1wqhRo9CsWTOcf/75mD59Otq2bdvg6mLO\nnDkYNGgQOnfujFatWuHcc8/Fm2++2SDbBRHm3Nu3b4927dph+fLlWdtt6iQVoR8wYAAWL16MZcuW\nYdeuXXjqqadwxhlnpJFV0eB5Hi699FJ07959bzQBAJxxxhl47LHHAACPPfYYzjrrrL3bJ0+ejF27\ndmHp0qVYvHgxjjvuuIKUPWnGjRuH6upqLF26FJMnT8bQoUPx+OOPN8i6aNu2LTp37ozZs2ejrq4O\n//jHPzBs2DCMGjWqwdXFiSeeiPfeew8bN27Ezp07MW3aNHz/+99vkO2CCHvubdu2RcuWLTF79mx4\nnofHH3987zFaEulhkFBVVeX16dPH69Gjh3fXXXellU3R8Oabb3qZTMbr3bu316dPH69Pnz7etGnT\nvM2bN3tnnnmm17NnT++ss87ytmzZsveYO++80+vRo4fXp08fb+bMmQUsfXpUVVXtjbppqHWxcOFC\nb+DAgd6RRx7pnXXWWV5NTU2DrYtHHnnEO+mkk7wBAwZ4N954o1dbW9tg6mL06NHeoYce6jVp0sRr\n3769N3HixEjnPn/+fO+4447zevTo4f33f/+3Vd6JjIx1OBwOR/HiVphyOByOEscJvcPhcJQ4Tugd\nDoejxHFC73A4HCWOE3qHw+EocZzQOxwOR4nz/wHk/IXODL+5XwAAAABJRU5ErkJggg==\n", + "png": "iVBORw0KGgoAAAANSUhEUgAAAXkAAAEACAYAAABWLgY0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJztnXmcFcW5939nZmBY3VAhAoKCIiIwgAguhFHcBYWrvqKB\nqBhvrrkmwcQt0XyCeeOSeA3RvOpNXKI3GkVM4i4GlxE3cENNQAEVlFURAzIgDDPT7x91i35OnVp7\nOafPmfp+PvOZc053V1VXV//66aeeqsoFQRDA4/F4PBVJVakL4PF4PJ708CLv8Xg8FYwXeY/H46lg\nvMh7PB5PBeNF3uPxeCoYL/Iej8dTwSQi8i0tLRg2bBgmTJiQRHIej8fjSYhERP7mm2/GwQcfjFwu\nl0RyHo/H40mI2CK/atUqPPXUU/jOd74DP67K4/F4skVskb/kkktw4403oqrKu/c9Ho8na8RS5iee\neAJ77703hg0b5q14j8fjySJBDH7yk58EvXr1Cvr27Rv06NEj6NSpUzB16tS8ffr16xcA8H/+z//5\nP//n8NevX7848ryTWCJPaWhoCMaPH1+YARLLouz5+c9/XuoiZAZfFyG+LkJ8XYQkpZ2JOtJ9dI3H\n4/Fki5qkEho7dizGjh2bVHIej8fjSQAfElNE6uvrS12EzODrIsTXRYivi+TJ/a/vJ70McjkfeePx\neDyOJKWd3pL3eDyeCsaLvMfj8VQwXuQ9Ho+ngvEi7/F4PBWMF3mPx+OpYLzIezweTwXjRd7j8Xgq\nGC/yHo/HU8F4kfd4PJ4Kxou8x+PxVDBe5D0ej6eC8SLv8Xg8FYwXeY/H46lgvMh7PB5PBeNF3uPx\neCoYL/Iej8dTwXiR93g8ngrGi7zH4/FUMF7kPR6Pp4LxIu/xlDEffQSsX1/qUniyjBd5j6eM6d8f\nmDCh1KXwZJlYIr9t2zaMGjUKdXV1GD16NGbOnJlUuTwejyWbN5e6BJ4sUxPn4A4dOuCFF15Ap06d\nsH37dowYMQITJkxA//79kyqfx+PxeGIQ213TqVMnAEBjYyOam5tRW1sbu1CeyuKnPwXmzCl1KTye\ntklskW9tbcXQoUPRvXt3XHzxxejdu3cS5fJUENdfD9x0k3p7Lgds2lS88lQaQVDqEniyTCx3DQBU\nVVXh3XffxYoVK3DyySfjyCOPxLBhw/L2mTFjxs7P9fX1qK+vj5utp8L44gtg111LXQqPp3Q0NDSg\noaEh8XRzQZCcHXDppZeiV69emD59ephBLocEs/CUIbkccOyxwNy56u0ffQTsv39xy1UJ5HLAwIHA\n4sWlLoknaZLSzljumi+++AIbN24EAGzYsAFPP/00Bg8eHLtQHo/Hnlyu1CXwZJlY7pq1a9fi3HPP\nRUtLC3r06IEf/ehHGDduXFJl83g8Hk9MYon84MGD8fbbbydVFk8bxluj0fHeUI8OP+LVkwm8yHs8\n6eBF3pMJvMh7POngRd7j8XgqGC/yHo/HU8F4kfdkAu+u8VQiM2eyaT1KiRd5j8fjSYlf/pJN61FK\nvMh7PB5PBeNF3pMJvLvGU4lkoV17kfdkgizcDOVKFgZDtbYCjz1W6lJ4ZHiR92QCL/LlzTvvAKed\nVupSZI8stGsv8p6Swq3QLFij5UoWhMSTXbzIe0qKF/fKwD9o5GShXrzIl5C1a4ENG0pditLiLfnK\nIAti5pHjRb6E7LMPW0yjLeNFPj5ZqDsv8nKyUC9e5EvM55+XugSlJQsClTVuvRWYP7/UpfBUChUt\n8v/3/wJHHFHqUnh0eEu+kIsvBn72s/D76NHAddeVrjw2ZMFizSJZqJeKFvlHHgFee63UpdCThUZQ\nDFTn6cXdzIIFwKOPlroUetpKOy5HKlrkvYBkB9W1aG3Vb/cwmpvV27IgsLQMLS1AU1PpyuLJp6JF\nnguIJ7t4d40dOpEPAqChAejVq2jFKYCK/NSpQN++JSuKR8CLvEfKxx8D27enn48Xdzt0Ig8AL70E\nrF5dnLLoaG0F3nqLhQd7svGWVdEi7wUkOv36JdvZZ/LJ+2ulp6VFv73UYsINKm9YZQ8v8iWm1Den\njo0bk0tLdS28yNthsuRLDRd308PIU3wqWuTLyar485+BJ58sdSnyKYbwenG3w+STF1m3DrjppvTK\noyqDjcjPnAkcf3y65ckKWTDiYon8ypUrcfTRR2PQoEGor6/HPffck1CxkqGcRP5b3wLOO499fvvt\ntiN+3pK3w2TJi2Jy//3ApZemVx4RF3fNQw8Bc+emWx5PSCyRb9euHWbOnIlFixbh4YcfxpVXXon3\n338/qbLFplyFY8QIFi1RSZRTnPzGjUB9fWnLINZL1kMovbtGThauTSyR79GjB+rq6gAAe+65J0aO\nHIk1a9YkUrAkKAdLXtUIihHZkgWKZclPnQqceabdvkuXAi++mG55XKEi/53vsLVDKWI7KvbD03e8\nZpeapBL68MMPsWjRIowePTqpJGPjG1x2KPVgqAcftO+8zIL1JULLPns28NVXwNVXl648Ii4++bZE\nlLbU2pqsdiUi8o2NjZg8eTJmzpyJzp07F2yfMWPGzs/19fWoL9K7cBZdAZ58sniNsiDyYhmoyHfr\nxkSeI6tDb8mXHw0NDWhoaMDjjwMffJBcurFFfseOHTj99NMxZcoUnKZY/4uKfDHJooCUE0nWXznF\nyWdB5EWoyMvKV+oye5+8HJfrwg3gRx8Ftm4FgGsSKUMsn3wQBLjgggswaNAgTJ8+Xbnf1q3Atm1x\ncoqGtyqyTxZFPg47dgDjxyefLhXPYgt6Lge88op+H+quqZRrWSqSvr6xRP6VV17Bfffdh+effx7D\nhg3DsGHDMGfOnIL9Bg8Gxo2Lk1M0ykHkyynqJA6mwVClyH/JEnkbqYpxV2zZwsY7JH1eriGUSbN0\nqX67i7um1G8dxSQL5xrLXXPUUUeh1eKqfvwx8MUXcXKKRjkI5aefAvwlKGvlLeZgqFKc+0EHsUFo\nZ5+d/3ucG7O6mv3fsQNo3z56OmJ5dPWTBSFxcdfYXuu+fYGrrgIuvDBysYrG2LHAvfdmc2I2P+I1\nA8yaxf5v2AB89hn7nBXBb2lJJpwzq28ssnOLI5r8fJhPNX46ANCuXf42m3DJpOvVVCc8vyTvuU8+\nAV54Ibn00mTePPnaFVl4AFe0yNs09M2bs9VZtGhRqUuQz/TpgCRgKjFK7ZPnljclCyJPkZVRJG0x\nMaVPLfkkr2WpjYBKoM2L/C67ANdem0x+jY3x0zCVec2a4jb8d99N9yFY6kVDZAIaxyfPz+Prr6On\nIRJXwIsxPjGtEMogYG+6xx2XbLppkAWrXUZFi7xtg/v4Y/nvDz0EjBljn1/Xrun3PfTsCfz97+nm\nQUnb5RVX3F95JV4ZayS9Ulmz5EVsQihpvfbsCbzzTnrlAdx88i71GwTAX/4CPPtstHKVmihtKVPR\nNVknrkA9/jjw8stuxyRpwanYtCn9PDhpu7LiumuOOor5Q6OSVXcNLYNYnijli/uWaeuTnzgxXj4A\n8PrrwJdfhulm1UIWyWo5y1bk33nHvI6krcirBEZm5aWNjehFdSd89RXw+eduxxTLko9j0cd5EEW9\nxkEgnxo6DXdNOcDbyYcfxk9r1Cjg8svZ53IS+axSNJFP2uc6bBjw3//tnmdzc+ENmKTIxz1Pm+Oj\nNvrx44Hu3d3KknV3jStbtwK33hp+t7Hk584F7ror/7d//Qs455zCY+NY8kEQPVImKx2vSbFjB/vv\nRT4+ZWvJA+ZRtLKGN3060KmTXfqlsOQ5acRFr1rlfkzW3TWu+bzwAnDxxeHvOp88P+bii9nMjxTV\nJFL8GNNbpoxbbrF7S8uCn1ckretXTiKfxekmgCKKfBona+snpMhCFFUNVIxPzgpR6zLKjaiz0L7+\nOn7kRhLiEKdt6R7kurK1tMgfgHFE/u237fKWoep45e65tMUmjiX/+OPAj3+c/xt9+GdBKGXMn5+t\n8GsVZW3Jm5DdKC4NppQ+eR1RffKuwmFy11xyCYvciEMW4+TFgT2yNpOGJa+ausDU8UrrbuXK/G29\ne7uXw6YMInFEfuZM4De/yf+tHET+8MPZA4qTlCXvo2ssWbMmfkRBsXzy9KKm5X8NAjaC0BWdpcJH\n58ahVHHyS5aw/7IHpq3I6yx57lN2IYn57vfdN/87f9gUy11zxhnRj5X9lmWRB8pjcZ+y7Xg1cfrp\n9vuW2l1D809L5P/5T/djAL2FlsTNV4x2MWdOoWAfdJA5f53It7Tk183hh7N8OFEsedUDNUqbEI+J\ne61sLfldd7VP8xe/YP9NIh9ncFramNw1WXhAZbj64mH76gtkK4SSk3THaxTLEiiPEEqAjcxVCcxJ\nJ5nz15XJxl0zf37+7JNpWvIiaQnJypXAihV2+0YZ8frzn7P/umsvs+S3bLHPI22iXrNiUtYdr0kJ\nYakteVeK6ecrh+iaXA5YuDB/tSTX/GW/mdw19D8/rhQ+edlvSbwh1dUBAwbY7Rv1OjY16fs2ZOl1\n6RKtftMgKUv+V79y8z64UHRL/o9/BO67L/18VJWbdsfrpk3ui0C7+uSjvL5mXeSLhVgPOoExuWvE\n41tb44l81IVB0nLxbdqk9+k/80w4HiDq3DVbtsjLT/tqdA/ZUkOv2X33FY6nsOW++4C//jWZMokU\nXeSnTQPOP99+/1mzgN/9Tr5N13CTeHOIIvI33ADEWcLWpiMyaUv++efVVnC5uGvSCCvVnbtsrhZq\nySfpronbmS/7boPp2p94InDHHfn70gedDSqR56h88lmZnZJe/8ceKxxPYVvv3Gvw5ZfAW28lUzZO\nSXzyLsJxxRXAD35gv//XXwOTJrlZ8km6a6JYvrKO16Q7PHXHjBsH/PrX8nIlJfJpzyefpMhHteTj\numvEB4aKKO6aqBFZtsdHjZJqbHSLril1yK1IUm+6XGvSmOAw8yK/xx7s/7p1QI8e5v3XrQMeeSRs\nGGkNlEkLm9feNHzyqu28EV9wQbxyqG7KODftE09EK4ssf9lvNj55epPHddckEUKZ5DEucIvbdfk/\nlSVvEvmsDEIylcNWQ7jIpxFJlPnoGi7yy5bZxWXzyuINw2bBBZXA8GOTsBqmTgVuvFG+jTZimYUo\nkoZPXrWdl+Puu93ztCGOyE+YEH62rRN+ngMGALvtZifyMkwdr0m6a2wEOo2OVyCs11//mq1cpsq3\ntZUJmmu+UUXexVB89lng/ffV2998k82FFQWTyNt6A/hSkWk8jIseJ6+7GbdsAW6+Of83LvK28Ccn\nrywxvyiV2NLCOqEWLizcJo4wVHHffcAf/mDeL64l//rrcoGRHTNlCgs9VG03uWuSaJBJuINyOXlZ\ndEIbBPYiXyx3jUzk77yztCGD/P555538NycOravqarvrSet861Y3keeTErq0m+OOk08mx3nhBfN8\n+7mcfKxJUiJfUZa87iQaGsJFrTldurD/Nr70+fPDEWj8hmlqCtcp3bhRnq/JldDayvoGhg8v3Gff\nffMtHJ3w2TTMuCI/ahTwP/9jd8z994c9+nQ77fhJ8rX4008LO3jT6nh96SX9QtpclEydfrK0+fGA\n2l2TlCUvE59iDrCh92vHjur9gsBcnzKam93i5PnkcuL98dFH6vsbYNdp8+Z4I1TXrmX/czngvffC\ndCnitWlTIq+yrCky/5WuYVE2bGCjDl95hX2nltTMmcB3vwvsvns0P3Jrq37GS9sb2uYGsBH53/8e\n+H//T71dZkXS86YPUvG6rFkDHHpoYXmSoE+fwsiqtDrSli2T/87Pl/uQk4yTb2oCjjySfY4iJnEe\nqCZ3TdT6pfdrhw7qfF0seVpWVTSOypKnx1H699dH7bW0AN26sbfXqNBy8NXkxGsm6hsXb1P9ix6I\nJMmUJS976vGGZWo8XGipBc9Zs4Y96VWoLoBLWJiNWLlY8rqG/9BDwPe/r07DFH0husTodrHRysrc\n2sr6GKI0yPXr87/r6ut732PT79ogloWvGaCKVnAReRm8nmh9bdkSWnvNzWof+9y58t/THD0Z9WFN\n61VncNm8GamOo8eI/WCqEErZA1E3GK65mWnE0qVu5aPYlEOlbyb3ne3DIAqxRX7atGno3r07Bg8e\nbJehoyXPkS3CIFoEQFjpqkp1CaGkN3uxRV43SCcNTNE1lC1bog9oE89LV2+33846q23elFQiX1en\nLkfSljzl/vuBzp3lxx1/vPwYG5H/+GPgH/8o/J2WURYJlZYlT9O3teQp4r0lGjkug6F058jb8Xvv\nFU5caGus2ET5iPrGy2l6s8u0yJ9//vmYQ2dmUmDT8UpFPgiYb5hXoqnzSewIo8IQN7zOJPK2I1Zt\nLqAuusb2BrroIvtjTaGmsuOi+Ju59aoSeRWrVuk7zXgaKpFfvVp9jMnybG1lURmy2Uxllrx4wzc1\n5c8Rz/Ol/8X8TMhWQxPTamgw72MLrVedfzlqdE1S7hoT9Np8+qnbsRyqXSqRV7nNTCLP005j8GFs\nkR8zZgx23313+wwtRX7ePOYb5pVomjZYZ8m7DOqguIRryW7el18GRo4sLGPUPOM0ANXNVyyRV6Vn\n8wYks1zFNMR2ZVp+z9Zdc/DB8ld8mSUve+sZMUKdtg1J+daTEHnTAzGqJa87xuRKtdkXyH9LEo+1\n1QQbkY9qyScZri1S9I5XXdw6F/kgCEVaJ/K8QlauDIXH5K7R3dQitj55GjpHGTOGxeCK6enQuQHi\ndMyZGo9q6Lgsz2KLvGlASWur2pJXIXMvbN7MhpXbCLGtyMvyNaWtQ3ZcLldoyIj1mYSFKEvjhz9k\nD8Go0TUtLWZLXtY241jySfRPqER+61Y2GFPcr5SWfJHGdM7Atm3AjBlAc3M9gHrpXrLOP/5ZV0n7\n7stWKaL7xxEiTlxLXrWPDlt3jasLypS3quNV5idOUuRt6tYUhkZf6YOATY9rEnlZR+EJJwBvvAFM\nnmwum8xdo9p/wwYW2cHLZ0pbh6n/CHDrd3LJT5XGU0+xPJPwydPfeZ6bNxdudzV4bKaMuO8+YK+9\nWDuQIXvYNDcDp5yS/9ukSYXX2STybL8GzJzZoN8xAkWy5GegtnYGZsyYgdraeuVe1J8uio7povLR\nsDyNJDteVdaGbF+bzh8dXFRNPtukRF4MoRQH98iII/JiHdjU2zvv6Ke8pWWeNAnYf391yKsuhHL5\nclb/vFPZphPdxpK/8srws0rkJ092e9MTSUvkbdLI5ZKLrhFpaWEz18qOsy0fT8e039Sp+ROMPfgg\ne+hzZO6a1lY2G6cKW0uexfjXY9q0GQD4XzIUPYRS567hFUIF2maYP1DorknakrdtvHGja4ptyYs+\neZsHEb8+Dz/sVgYgmrsG0Ie+NTeH5X/0UXk+IjKRd3Fx2HS8iuneeWcY7SOmPWuW3ShZlWvD1KGd\npk+eu4eStORV7hB6nAuqN66WFvXCKGefzSK8OCp3jepevPdeFjzSs2dhBzxl1So2gyWgH48Tldgi\nf/bZZ+OII47A0qVL0bt3b/xR9tilGWpypFa4qyUvirwpmoQS1ydP09A1zmJF18jyt42usckjzoIN\nccTnk0+Azz8v/H38ePd044q8zJJX7X/XXcCf/8yWB/zgA/W+NlPqFttdY5MGr8dSi3wUS37BAv3A\nQjpqml4fWQSTCB90OHasfu4cWrY01oyN7ZN/4IEHrPYT3QKffQZ0756/D698aoXrRI82ZlHkVRdc\nJhIqTJY8FXZxu+xNwsWSl/nCxUUl/v53Jrjjxxfu29SUP3hFLJ8q9MvFko9CFHcNp29fZgnL5hBy\nGWQFyN0LLv0FYjSX+FnkySfz32Jt3GK6fEVMIp9Eh56qnG+9xUJVVdFKIi4jXpOy5GXRNbJpDnTl\nz+XYZGeA2sKX0a6dvrz0QZJJS94WXnlc5GWvL9RdI1qWtpa8OJhC/CybkN9kHZluLNpQZS4njk3D\n5I3xhz8M58eQHZ/LAaedlj8TI8XUeGkj5ekB+fWsGpwTR+Rt4uS3by88d44qNFK0xkzuqaTcNbbR\nNU1N+VFC27cDt96abyDYdHK6/m673QZVGvfcw8ZBRJmgTCXyTz/N/qvqlP4+bZo5T5m7Zpdd1NNf\nyMpaVcUmO7OFt7WaGjuDAUjHki/ZtAa1tYXbaMcrR+euoRdAtOQpv/0ti1lXEdVdI7PkdSLv4q4B\nCq1TF598UxNzDfCOIzHvNWvy0+HXZcyYcB9VhEoaIk/L97vfAUOHyo9XjboUZwjMkrsGYO2TWvJP\nPMEm25L508Vy6r7Lfl+yhEWyidufeSaZMNyvvmJzQYnw+nR5oJiCGlRTFfzrX+EMqtxDHMVdI95j\nMmz6d2TYijw93hQVFoWSibzsZtV1vOqiTgC9yEfF1pLfsKHwNSuuJQ8UzqIoijzPf+vWwnEETU3A\nMccAhx2WX1YOtxhEn/ymTeE+qrpMW+R1DV1mHMgolsjbumuamvJFnl8vKvIml4usjKqyyh4OJ54I\nvPYam8dJZ5HSNiDL4+235dNmJ+mT5yxfHn6m98ZllzHXnW2AhUrkxbasc3W5vkXxtEzuGnp8Wbtr\nOPzE+c366aesQw0IK4IKVlZEXmfJ19WFM+A9/jj7LxPCrVuBV1/V56kL9VIt9HzMMcCgQfn7NjXp\nBUx8LdTNmc7h0966iPysWfnfbfzeus553fwpFNONt2FDoU/epfPW1V3T2prvruHt1dXytfHJ646r\nrWVr+j77LJvojkd1UHbbjc2xLsujY8f8sEKKrU9eLJftMXS8BBdD3XTSHLFt27hHqPFh6uczQS35\ndevYQ3LUqMK8dOWJQ9FHvIpP3kMOCQWKn+zy5fk+4nbtCn3uIvwhEHeNVdnvJpHnZabst588TT4V\nrQpdT7toyfM6+uCDwvk4mprC/a+9trDeoog8nzfFReT5wCJOayvQqxdw+eXsu8yS14l8XEuenrco\nSqYH0IcfFrbDlpawP0DX9jp0yBd5XocqS15FVJ88vz/atw/zO+ssFhsuQ7YKWxAwcVUtsJHkVMNR\nUKUjhm3rRJVvo7Pa6kRe5zaVuWvGjWNTXbz+en6eu+zCtKGsLXleQfxVnFfc5s3h5GN8n7PPDq37\nlhbWMHkjVTUi00NAhIZA2fjkddt1abhCX0m3bWPnNW9eYX7UXSMTxYEDw/2vvtrsrqmqMo925ZN9\niQ9q3WAQkRUrWDp83n9XkY9ryc+eHX42WfLidT/gANZfAORb8jY+4aqqfLGJKvJRLXnu2xYX6RBH\nE/MFcGTXlB+nGuuSxmAoFS7HiOWldagyWHgb37EjuruGQ901qulZdtuN7VfWljyHP6lMceDPP8/+\nc5GXibguhNLEX/5i3sfFko8TokYvLG1027ax1+mxYwvzoOeuuuls3DXUJy8OHxdFni//Jp7rPffI\n89dBo1xE0rTk6e/U8nzlFf2bE4ffpNSS59fMFI1Dr5PMXWNqY6p9li0DfvYzdd5A+CAS3Xiiu4Ov\ndSq7pjYiH8UnH+XesakrgC0YpLuuNiJvcteYRJ7OzimruyBg90NNTXjP/fzn+jRdKLq7Riby/KaW\nVZarJU9Fng4nF7ERCxeRj2PJf/ll+Pmmm9j/yZNZ46Q3oeoBprrpdG8aMpEXRV0VQimmFWUqZ1Hk\ni2XJ07Spu+aoowpveFl9b94M7Lln/luejcg3N5vdNTZEbWd8qmdqmQKFIq9bs9gk8lF88jZThsTh\nRz8q/M3GB+5iyauQuWtUA974m56rR8KGortr+GQ+Ytzqtm1yUeIizzssVcIqE3ndFApU5E1PaNNM\nebo0otKlC6sTuvAEbZBUWFWiaGPJ89BSmcjLRC6q5SWiGnx13nmhS0SG7ZqZpo5XwCxKssiNzz5j\nLg3qruF1aeqoVVnyutGbJheSKzt25KfJHzxvvml+WKdlyUe5d+Isk+cq8lF98hzqrpHVXWtrOMEb\nbRdJUaRZKEP4KEyxMcyaBeyzT/idvg63bx8OC3bxyetE3qZX3uSTjyryS5cC11+v36dDBybynTqF\n6f/0p+H2pNw1PBqoqspO5JubC+sjjiVPb6D169l8HzpsFzpOQuRlAiBO5EbdNbq0mpuT8cnHvfl/\n/3sW4cH56CPWCahbHpOjEyogenRNUlarbd70waLq6EzCXSOz5MW627GDRd1xkTdFEUah6D55ah1T\nvv5afmKtrfnWm0t0jc1kaOJn2T427polS9R5Afni9MgjZj92hw5s4iLeULZuZQuRc2wsed1AHZmV\naivyJnfNXXexSZls4HmsWaNeqi8KNu4aU0ehzF8rirytu6alRe6uoWW1sRTjCuLs2cBLL+X/Jg4k\nU8HLp5rfv9Q+eZc8ebszDfgzuWtsDBydyJ99Nhv4J1rypig8F4puyVPhpHz9df5vfEFk8eZIwpI/\n6KD84fFJiLyJqio3i622loU+8oEpjzzCwiS7dGGdfzaWvM4nL3MDJGXJv/hiOKLWBM/j1lvtjrF9\na7CpYxt3TXV1fj1wkacjsaP45GXuGloWVcd0Gv7rDRtYWKsJk8hHGfFKBdeFOPXw1ltAnz7ss2qa\nDBdLXsaZZ8oHQ4n3Kl/1jFry3/wmcNJJ9nmZKHrHq0rkt27Nr0Q+GKOlJf9CuHS8qhrj3nvnrxlr\nI/K67TZQC1LXIczhby88Nn3KFCae/GaMK/LiOQVBcpa8jUtFdNdEWUxZh+qaubhrmpoK+wB0lnw5\nuGtkbNigTldmYM2cKd9XZ8l/+GHhGwRPs9jump/+NFxMXWbJb94cX+QfftjsrvnhD8PxNdSSt3VJ\n2lL0jlfqy6QiIlrynNbWfEE2iTwVKpX4de1qXhic5pWEJe/qt1b1GfTuXZheFJ+87HtUS15E10j5\n4h9RRd6WJHzyTU2F10G05O+8M34Ipe44sXw2U9y6QqO7ROi1NE0hoBP5s85iFqpIS0uykSS28MGD\nMpHfZZdwwJfJXWOjASqRv+WWsE6pJZ/0vVAyn3xra9jpBxRa8pzW1vzGpapUvg+d0Eglfu3bm18R\n589Pz5K3QRVFsttu7P+//hV2DNr45NN011DOOSd/jUuR/fdn/3lDvv9+9t+2fpYuZTeoqe5V28U+\nG1PHqyhRt6e3AAAgAElEQVTy4uyojz1mbidAYd1SS17nkxehLq2krHpdhAu9LjaLUds8XMW8i23J\nU0SR52msW8ci21pawhlbZenr+uJs3DUcGkJZtpY8h3a8UvFWdbwGQf5+qgbBf6eDnFQVKs4KJ8v3\n8MPzw+TiWvK2oX8Am+pBZcnLbpYoIZS27hqxDk3umgceYA8gFTw9fgx/0NtaL/PmAUccEV3k6TlS\nS162vKDMktfNu28KoaTbo8bJi+VLApuh+YCdyBer4zUpVD75r79mFn1LC3Djjew32fXlUyLL4P2K\npjh5oELcNZs3s8WMVS6QrVvV8cK0MZvEmRI1nle0zIot8pdeqt5fdkPy81QtyAHIRV38Lor8jh2F\n/RpxQyh5euIxLmnofMgc0xsfEIaNPvGEfH+ZT16WDsdkydM8TB2vNm1LHBh28cXmY1xxseSjhlAW\nu+OVojqnr78Gdt1VP2GgLbroGs7ixaHIl7W75ssvWUXJ5klRCWlLi3xVF4B1YPLXfRk6S97GX62y\n5P/+dzZtq8tFt4nL51RXu1ny/DxFQY7rrhEjQvhvcUTe5eGlYtu2ZCz56mrm454wQS7QMkuep2sT\ngkoRfc9ROl75AuMqeH9NFJJy15TSko8iwuJ15O2Qi/yiRfHSB+zcNQC719Kw5EsSQlldzRbyEE9G\ndrHFDlpxnylT1HmpKrRzZ31nk0nkH36YTeDk0jhdRV73WicSxSdv666RiXwcK4pfE3HO8qQWJgdY\nx7ppPAXA6k3XaSqz5Hm+MkHXibzOktedC92mmjGS41qH3bqxtyJbd41phkRZCOWXX7J8RoyQp1lq\nd43qmnGRp6RpyfNtFdPxWlPDhtPz2RX576qOV8r69eppfEVUIZRduuSnu2lT/jJgskgg8Rzofxtc\n3DW6huAi8pQgYD5G+l3cbivySbhr3nwT+OKLaGkAZmG0EXk6lYPKXaN6OMsseZ3bQaw3mQsyrgtC\nVYeiWHHouanypmUWJ7ATqa5mHZErVoS/mVZeSjK6ZsEC9zoUryM/PkmRp284JpGvCEu+tVUtvip3\nDWXZsvxGpENVWV26sHT5TJfz5wMHHhg+aC66iP3OIxlESz6KyLtY8rqLrHPX6OBuMo6tJS8+nJIS\neUA9F48NOmHQ+XlFkddNCKVz18g6PXUin4S7xoTL2x8QXos77mACKYOKoEnko0w5EdWSV9X1hg1s\nAjlbxDrn6TY2Anvtpd/XFjoQ0saSt51p1Tr/ZJMz89RTdoN3OLrORBOqxt25M2sM48bJy3Dnnewz\nXzWHlmv9+mg3pau7RkVSIi+GjqlCKG3dNc8/b1cO1dB+V+sliiU/eLDakleJvHj+vD26+uTFh6Mp\nTl43FbMK1yUD6fVSLZxOz1O13qosPVuiiryqruO6OvhiKZ99lo7I69p52UfXUFwteTpC1KWiVY2u\nS5dwcQQRVdQEz/c734lWljTdNTY3V2tr/n7iKvXckj/iCPZWA9i7a5qbWVyxTqxkZaU+XtebU9cJ\nGQRyS2/06PzrSy35IGAzYFJkIs/FRdZOdB2TOkte9ma4dq06vE+FLhZdhuo+pNC+k6QsedEnHyW6\nRiXySS3/uXJlOPUBJwmR19V5ZkV+3rx5GD58OIYMGYLf6eaIJchOVGXRtLYC554bHuNS0aq5x7t0\nUfsKZY2HijyN7HApi80NxUnLklftN3lyKPLf+AaL0wfkIn/kkfnnzRd00VmxqrLGEfl//3f1NpV1\nSGf543lSS/7kk/P314m8eL6myBeVJf/kk8DHH7PPtF4XLwYuvFCfpkgaIk9RLfDNkbUv03VNeoyA\n7cLeJlavTkfky67jtaWlBdOmTcNf//pXvPXWW7jrrrvwPp8TWIPNMPwwj/z1TEst8irLS8fSpXb7\ncdLqeFXtt+++7ByfeYZZa/zmpyIvWl+0rM3N6ptLFw9PRT7pBdhl6clEnouF7IG2fXvhb3ROE8oB\nB+jLJFry/Pjzz5cvbAHI11nVkbbIu7pr+OhmFVdeaefGkKGK9LE1Nmzo3j3/exIiz6dal5FJS/71\n119H//790bdvX7Rr1w6TJ0/Go48+ajxOZcmrRL6qKlmR13VsmEReFHwbBgxwK7drx2tckefrxd55\nJxsDQEWe37iqTttcTu7P53nainxSN+eUKW6WPO+bkFntshBKlcib3qbEvgxqifL+GrGNuN7sLn1d\nuv1VmOZ7EtMTF7eX7a8TeV14tGqK4KQseSA/Gg1IRuTpIkAimbTkV69ejd5kBEavXr2wmq/2rEFl\nQcguahxLXvXU1N08ppGMUSx5MQ0T1dXMupaRhsiLIxW5sNHBUCaRl9XbM88UWtT0wUt92EmI/C9/\nyebpt7XkN24MF6NpapIv6GDrk1fVLRcK0V1DH3C6gW8ubay2lo3hEEnKkjcJqKxt6u6VmprwOsnq\nr0cPdV6q/o/331fPkulK167535MQeV3fXCYt+Zz1I2cG+WtwalytrdFFfsAA4Nvfzv/tn//UV6LJ\nkv/yS7vl3kRcO4zHjZMvvCGrcpvLwN+IZHCh5vDroxJ50RpWWfKzZuV/f+aZcII1IN8aS0Lk+Rsf\nteTpPOlBACxcGH5/663ws8qSt3XX6MJ1eVq/+U34OxUpVX+Tq0VXWys3bJKy5E1z5ciEl04NIstf\nZ8lHsWhnzmTuryTm9RHrMo7Iv/wy69PQpfHJJw34/PMZWLRoBmbMmBEtM1n+cQ7u2bMnVpKVf1eu\nXIlektUHHntsBkKRr3dqXKIl72IRd+oEfOtb+b/V1rqLPI1yeOcd4KGH2Oc0RZ7+p8QReVW9c4tx\n8GA2wRgXndbW0PJQiTyfokJm5YkCucceYVmHD0/eXUPbybvvsv977x1u52sUcEQfeRyfvG6eJBk0\nb5W7Jsr01LJjkrDk+/UzW/Iy96hO5Gtq9Nc9jtuitpa15TiI106nPf37q7fxe+fee/VpHHhgPbp0\nmYEhQzIk8oceeiiWLVuGFStWoKmpCbNmzcKpp55asN+ECfnfVT55GXF98mLDa9/eTeS7dg3n3LEt\nswyXh5M4ZzklqsiLIZRifkHA/IX77pt/ffhYAnosLRefdE52s4r5deyYP/0qFXnbAW4ifA1cIF/k\nOfRam6Z2EMubhCUv69MQSVLkZfnYxMmbGDPGLPJ9+gB3353/G50aRJY/7fiO2ycB5KfBZ4+MiovI\n6+qSn0dTk14zMumuqampwd13341JkyZhxIgRmDZtGgYOHCjd95NP6HH2eYiWvAu5XKG/02TJiw25\nWze2RNdzzxXu6yLypnk/KKpZJYF4Im9y1/AHAfUb8r4BmSU/eDC7kZ56ik1TICJe5w4dwjqrqcmv\nE91cQjrOPTf8LDs/+pvYcWgj8rIRv4C9yPPfdSLA84gr8u3a2QnETTex/y73YVWVnU9e7KykyySK\nVFezNsDDcF97rTA9V+hUKarOWVvEa6aLALMReboAiSqNzHW8AsDYsWOxcOFC/OMf/8APfvAD5X60\nI1FWIbq5M6K4aw49lP0Xb1LVKy1HtEj33JO9ZqnKJsIHElELE2Bxz7akIfIbN6r34+4a/iCgNz+P\nBpCJfN++oc/5r38tTFcUkY4d8weFuDz4VNx2W/jZNIZAfJCY2lKSlrxOUHUi7zrgzkbkzzrLXCYR\nGm6q20fMXzdtRE0NM/54PLq4eHUUsaP5JC3yuvaiq3cq8mVnyUfF1ZKn7hrbEKk33mD/XS15mcir\n0F2wI47Ql08Hb1y2DzSbm+Hii8NIEtnxPCJFFHn+sJKJvOympsgsebotCZGnmB6Af/97/jbZ/D0U\nlxGvJp+8aYpZWf6rVqmPUeVlIxA8P1eRt7HkZW9DQGiwvPhieE1qatiEZqoxBnEtWtcRw6b8XSx5\n2h9A3TVlaclHQda4VBUoumvozIU2iCLv6pPXDV6QiTwvZ5zefZ1PXub7pssoRs2PW/LV1fYiL/4u\nIrPkqbsmrqUlYgov5W93nCgin4Ylr5o/59139atsyfKyEXmbfgIROjpYt4+YpjiV89NPh/VcXc06\nt1Whkiaxu/56/XZT+7rqKv12EXp9xL4HUeRpW7L1yfMghoqw5GVWjW7eDyryfEktW0SRr6lRV+Ka\nNcAZZ+iPp+guWByR543Jdc7yqHCfPG9g1MXF3TX0mkUV+drasM7EjtckcB1DYHpT2r7dfjCUSeR1\nlrxuTnuXwT26ti0rk1hfn39un1e3buz/oEHhb3ydUopoyW/bxsIJaTlE1ybHJPKmNxGTyCc586lY\n77yd33+/vU+eP0grQuRl2Io8XcjYBtlqOapK/M//ZBMTUVxFPpdjfuqDD7Yvo4jOj5mWyEe15FXi\ntfvuhdvooKs03DWy66oTV9MMp7KFvKOGUOoESXe9XYgr8vRYcRsXZnE7nb3SxpKnEwPyOlGNTDeJ\nsOlcTVNluIp8lI5XOgjR5JPng6Yqwl2zxx6Fv+lEvqoqrChXd01NDVBfzz7zDh5eieL0Bo88Unh8\nFEt+/Xrg9793KmYe/Ka3ddfEhYuvq09e/J2Sy+lDZWtq2DWncexxiWvJi1b7tm1qS168DnEsed3C\nJSJiEAA1JkR3jWwqbSCsJ90MoZQDD1QLj/hgUFnyGzcW7s/3VblE44q8CTH9007T7y+O9Kbwc+nX\nj/2n06DwfbdvN1vyQIVY8jTShouorSUfR+S4H41XosqCoESx5Dt0cB8yTtGJfJJzcxx2GPsvhlDS\nsvMb0FXkxYcFR7Tkhw2LXn4RV5EXr9/IkfnfZZZ81BBKXXugYX8mdt89/zs9Z9GSV83RxPfRWfKU\nV16xmypbZ8nLpimWiTyd28VG5H/9a3O5VIjpm9bItYmT/+AD9p9O58Dv4y1bzJa8rFxxKYnIn346\nm30PYCMfgXRFnlfsMcew/7wybVZgiSLyHB5eaEtDA5t7hUfmuFryAwa45cfLL4ZQUmtMtC52281O\n5L/8EnjpJXWeXORls1xGxVXkxfqtqsoXUZ0ln2THqw6xjeneCDp2zC+H6cFjK/LV1YX3gSqSSWXJ\ny/LgdRJH5CdO1O+jQ0xfpQd1dew/bS+quhMHbQZB2Fa2bGlDljwADBnC/vMLreuoTMqS57hY8jLX\nEsf0eu0yVeydd7I44XPPDRubLH3d+Y8dG3aImaCThYruGn6jfvVVYcPr2jVs7LoQytZWFklx/vnA\n0UeHv4vRNSqRjyKKcd01NFSXo7Lkxb6hOIOhdJhEnpe3Z09g4EA3kRfRTXsR1ZIXjTeTyFPDyEbk\naXr/+Ie5jDpUIv/rXwP/5//YWfIykedtprHRzpKP4wWQpptscnbQKWjptLYq6M1nI/LioFvVcGkb\nkT/oIPU2kyWvihqQceaZ5otrCmOrrra3iOnsEyp3TdeuYXpc7OjIR5nlJtK+PRsSzxF98rIJ0IDw\nxv/JTwrT1E3PYPMbR7xpZSOrVZa8iOrmjRKTTpE9iCi8vLyd6jpPTb+7PBSmTAEmTSpM12TJ07xl\n7hpqpLiKPHUD0xH2Kmwted4udJa8SuTpDK2NjXaWfFSDQEVJRJ52RtAZD1XkcuG0nzaLS5hGl/K8\nbUReN/FQ1FnpZNi+oul88q6NQ3TXcEueWq+8ru69F3j99cLpelU3Gd1Oo2h4nlVVepHXXRuXaAye\n7iuvFG6zWa5QFV1jkxZg1/GqQ0xXfFjMns3+03rl8M+ihWsj5rQeeNQH5Te/KRzlrBvxyrnrrvCz\nTORpH43pnhBFntaNzRutrcjzfW0EWkwzCIB99mGfbS35ihN5fkImkX/xReDyy5N115jiaCdMKJxT\nmiJzx9ha0nz+ELFMlB//uPA33fm7+vJkPvnq6vzGTt0BI0eGAzZkear8tCqRp4ONxGNVK3cBbtEY\nvHyyEciym1asQ9GSb2mRP2RU7cTVJy/6mHXz6xx+eNgPI5uy94ILWJw2X86R4+rGkYm8DJklr+tr\nk4VQ0iX3ZNeTXkfxocI/T51auDiHbGqSJEVeFScfBMB++7ElHhcvDh/KqjyAChF5V3dNLsdE5sAD\n5SInRhyY4BeksVG/nyoMkHP88W75UsR0ZQ36v/6r8Lc0pmblNzG35GUiT0dJqix5lbuEurzE0Y4q\nS17cnxLFkrdN22TJy5YJBJhrbvDg8Dvv83C1zn7xC30ZTUtn0vPdYw/gnHMK91VZnVVVwA03FO7v\nIvKq6BoZ/Fzog5R+VhkNtFwyI0N2XcWJ02Tpy95gAbbuscldI543z48PFrPxGlSUT55Wlq1Pnv+X\nidzll7vlz9P75S/Ng6tsOpwotkIrpmtjhQ8ZYhb5KC4k0ZKXNXbVNTBZ8lVVwH/8RygSoiVPHx6y\njjPZ+bis+OUSXQOoffL0evE2S/saxLx4JJdozJiQvTlQXERe15FK/9PfZeuyxrHkbdyLtG5MIi8a\nFTIjQ9ZmbNZmoMYNTWvQoEJLXifyK1aw/oogYG9bgD5KT0yzIiz5KD55oNAfzDEJpKrjdZdd2FNa\nh6vI2yLe9DYi/+qr+pvG1ZJXhVBSq0NsePQaiDe1SmRphya15Km7pqpK7tNP05K3cdfwm1OcXA0A\nrr4aGD1anj9Pe8oUNsimpiYcKKNDbG8mnzxH55OPi63Ii6I7aJB+KT5+LrQN0fPj9TlqVH4edLut\nyIv1dvXVepGXPQB1hihNv08fN1cQp6J88jJ3jY3Ii/5gcbstttaVyV2jS9uEq8hXVzOXgCm6hkOX\n2VNBhYF2vMoaexxLXkZVFbB0af53Ux1wV4atyJ9xRqG1TeHWtmxcAIeLbm1tYbtRRboA7FqNHMlW\nJnvkkfzIp65d1W+QUS15mU/eJBYmdwgniiX/xRfMiNLNBCmLPJJZ8rkccOKJheX7+uv87zp3jVgX\nJ55YeK60P0DEZMmbRJxu163pC1SIuyZKxyugdtdUVbGY7KOOkh+vsuRtnphpuWtU8c4q+OIYth2v\nNlYcteRpCGWaIk8teQBYty48lh7PZxik144fY7pJOLNny2c47NCBuYb4otf0fMURlDyv2tpwP5kF\nKuZfU8Oikeh3GrqreoM0zWHu4q5JypKnArfXXvr9eJ7t2pkn6ZNFHqlE/tZb2Wd6TkuXytufahUq\nilg3w4ez9RHEtOh33YPOJPJUuMW1j8UyVYQlL3PX2PrkVZb8iSfqI2Fk6ZkuTC6X3+guu8wufRtc\nRL62Ngw9sxV5VXqyIfRiCKWsXmTuGprnoEFyURHLoVq4WbTk+RzjsilbVQ9e2wdsayuLOOH70/M9\n55z8yAye1+mnA9Ons8+0LmTlk0HnldH1m4jnIF5v2m5oOi4+eVVeuv1cLfn27c2BDTKfvMxdQx8e\n/LeFC9lUwbYdr7L7TXSv6R6QJneNjZZwVJZ6Rfnkjz5a7q4ZORL4y18K96fWJPVJ80Uw+AVRXQSV\nJW9jEdIL8q1v5a9EZDrWZT/b43Q+edow6Wx/lF13lR8X15J/9FE3d43MsqLH82tDxYVfC5XI21qu\nPE2ZyNPfaTl69gSGDs0vh8uD2naGyFwOuOii8Lu4ZKEqDdnDMylLnqZvekCZHsQU245Xmi6PpKur\nYwv6yM7Rpq9FbG+iyJsseXG7TfSM6lixjGXvrunShVlKMku+fXt545B1vN5wQ2jt6V7TZJhEXmVZ\nVFfnD9F3hc/TA7j3I3BsffIqZNZfbS17tY7ik6fRMTbRLTKLk+fDfzvySPk8PHwEsSlqxPQbnZYB\n0Is8XZpP9CG7iLxqQQ/qIgDYPhdfHH4XrWGVcEex5F2wteRp3qY2buuuAcLzuukmYNmywt8pUSx5\nOiWwmDf/rrPkXUa3q65hRVnygNySpxUvq3DqrqGi4GrJ8/RUIi82tJNOCvPRrRRF05bBfcCm/URo\n+dMYDNWpE5sYja8vSTttTdE11I/o4pMXXRfUsrr9drnrjbtRTK+7JmhfBFBohckseZqvSuR19V9T\nIy+fGHGTy+ULhjh7o4vIx7HkVW42kyWviyUXkVmuKncNr+suXfJHoacl8iKiJc8nLePYRM/QtGRU\njE9eN7iD3uiyxkp7+cWLBCRnyYuVTDt9oor8u+/md7ZFvQGpu+bf/i1/G4+ScYWKSnU1GxLOR6nq\nLHlR5F0sefHti74J5HLydU/55FVxRF4WjaG7QXWWvCq6Zu7cwnRU9SMrH21jOpEvlk8esLfkXUTe\npeNV9Mlzooq8zF2jCwcWRf7gg4HHHlOnr8NkyZe9u4YjOyFa8bKb0XST2MxrQ9OxcdfQ/auqzL43\nVcOmDVW3n0ifPvmWC7XkzzgD6N69sJwqVq2SR5vIpnflwmfrkxdvGlWZ6HBvILxm4gNeJvJRLHnx\nN9mNbOOTp/lSS56Wjx937LGF5XDxyVORl02HLCMpn7yqXYr9GKpjbe9BQG7JU5Gnwu4i8jbRNaaO\nV1d3jUtdV7wlzzGJvGxf1UUQBcOErSUvuipsLHkdsgeXiXffBV57LfxOBXaXXfI7glX1x9l7b/ZQ\nEIWWWvKmBqgSeZWlKqYnWlk8LfEBLxN5voqUSuRtrDpZG9LNlZ6UT14l8jIx0bUx0z0Q15JXvQmK\nbYbCF5LP5eQrfcnmDQLy2w73s6v65Og9KEtDVlaanmlcimvHq4iLyJeNT3727NkYNGgQqqur8fbb\nb1sfJ76uy3xwqs/05GUCnbTIi/tXVZmjBkyWjs1+lF13zZ93gwqsuOivqaGJ58WvhTiZk2wfmoZK\n5KNY8tT1Q48XRX7lyrDjWiVEsvxFwRw1Kpywy6bjNSmfvIu7RtfGVO4a0ZIfOJBFnySF7t765jfD\nvKkRwevxl7+UH0ctednAKFn/m6slz69tGpa8bfisSNlY8oMHD8bf/vY3fJNfYUdkwm1yZ/DtffoA\n3/1u4XZVQ6yrk7skorhrTOjcNXRbVJ/84YeH82HwjlKO6D4wlY1/10UGyOZcp/0C1MKyCV3TuWso\n/BrwNHv1CrepBtnw86HX+qST2NsQ59lngTffzD8uTnTNQw8B8+ez79dcI59Ujh9j407i9SCbQ4Zu\nFxEt+fvui/bWaXLX6KYMEI+dNg046yx1manIyyYroy4i1T2os+S7dg2nRJAdp+t4tbHkZQP1dIjL\nj4pkzid/0EEH4cADD3Q+TvS5i+4aHXz7qFHyzjLV69Qtt7Dl6MR0oljyUREXQ87lgOuuc0/nuefC\nAU2iJW96OxC3P/YYEzzdceJN/dxz+UPVqfUhm3pZrLNLLmEd2SaRj2PN/OEP+fnzVcgAds3FtqOz\nnGWWPO0w7NMnFJKjj5ZPD8335edo8yCeMEG/XUQUeddOaE7fvvJ9+b01YEBhv45K5H/0I+DBB80i\nT+vGJPIqQ4XC6+KLL0JhtYmu0U1voXPXvPWWnTbwh27ZWPJxiWPJq6xD3cIN9GaNKvL8d9WNAMjL\nPWIEy0sUeT4NqQv01XbffeN1tPXty8pGrWQRnTVIb77qamDt2sJ9xDLtvz/wve+F33mopMqiFd/O\nFi5kZVaVJwpiO6Bldomu0eHik7dFF11jSudXvwrdLJQRI+QPIX5vPfts/pxDgHmdXpVo0cFQsoFR\n1F2j8snrRL59e/XYCiryxxzDItWidrwOH+72ll9sn7z2xeC4447DOj65COG6667DBJWpIWHGjBk7\nPzc31wOo3/ldVbEuIs85+mj9iFAxnSgdrwBbwEQ1mZFsPm7RR8k/RxUlmuacOeFvURtH+/ZsbhzZ\nwgqdO9utZmOy1kR4mn/+MwvZVO03Zkz+VAx1dWyeoiQ54oh8wZP55IOgsBPPpb5dfPI6TB2jtiJ/\n+eXy662Ci7zMtWd6Q4lrydN9be4ZG588ddfMmcPyNYV/trayN/Lf/75wm01bMJ3De+81AGjAww8D\n//ynOT1btCI/VxbwGwEu8tdcUyigLn5q8VgOb1y6aU1l+6sujMknr2totiNi47h+VOnESdN2jIEq\nf1VdmsrEF0pX7TdiRGGD5/tStwwQXhfXsQIdO7I572XQ8zJ1vOpwCaHUoTo3seM1jgGhS1+HytKl\n949MuGtqwg54eu/ZuGtk0DriD2mdJS+zsFWWfG0tUF9fmKeLyNN8LrqIDf4DgGHD6gHU41vfYu66\na665xpyoBYlITRBhBE4UkU/CNw6E1oLp9VK8+FHzt1mBKCpix+v++4fC6YJpxkCOOHePbEALxeRD\n5qjqVCYcfN8LL5QfExfZG6VNCKUOVceriI3fnsP3OfJIYPz4/ONt8tJN6KcypHSoHgQyQ+BnP5Nb\n8iaRt7n3aDnoAvRimcT7W+dJ4D550Y9P0zMhy+e224D99svfnhmf/N/+9jf07t0b8+fPxymnnIKT\n+Nh/S2RPT1uffJQGSOnQQX8Mr2TxFThJKymuu4amw6mqAp5/HvjwQ/d0dGtxUuibis3NZ/tANEV1\nREkzKqqyxBF5V3cNbZ80GkjWbl9+OZwiWWY8qZg4sXBqZRX77y+PgaeYLHlaXzRkURVdQzvldfee\n+LCXDVATy2ZyDYsT+XGRj9POVSKuC0ZJgsjJTZo0CZMmTXI+TvRPmyqbkpQlbyKOu8aWXC7aFAQi\n4kOSWmdHHw288IJdOraWvOiTrapi0SWmiAERW0te1uCLLfJXXcVmIBU7B4vV8crHB1RVsdj3xkY2\nxUOUfitxXz7Jn2otBs4LL5jHoZhEnl5LGrJIRU98EAChQXTMMfLzoqO+edomZO4azqxZhYvN5HLM\npWTqRDblqds3LUs+4WeGPaW05E2YOl7577W1dhawyl2TxMOC1pku3tuErSUvinwuF8aJy7AVQtl+\n778vn43SlObw4frFLUyI9cYH86xezf4nacnbtGW+z+LF5th3V0OE5/fSS/r9bNZqcBH5lpZ8g08W\nnCBOpfDcc/L0xToTvy9cCPTunf+brn769i1c1MUk8kla8plx18TF5JOXXQRVGFUSXHBBYT5iuWQi\nHxXqE4wDL9NNNzFrk+KSvq0lT0XGxccsopoZlHLQQfJjx4yRDxbiaQwcCHz+ublsJuggKqA4Pnnd\nq4oNSNkAABJESURBVLrLA8FV5JPA5JOnYwhaW/Pz7tqVLe+oE3kVJpGvq5PXncu553Is5n/FCvn2\nOCIvbs/MYKi48Eo/7jjgP//zfwtjacmLFZpEQ5V1oqg6Xl1Fvhgdr6NHR1scnGNryXfunL+snQnb\nMvAZJm0YPhz46CP7/V3h14YOogIKO5mT9smPGpUfl68ql46oEUZJoLLkeT3xJSyBwsFHVVWsMzYJ\nkRetdptjTNt4GajxELXj1RSkUPbuGrECd9uNjfy89VZ7n3zS4WEUOjKVuyZUvfBxLPmk3TWytFTr\niMr4yU/Ya60NI0fap2sTXbNkid3C41HzSiod0ScfNYTSZe6dqNiKfJIPA5O7hnaq7rMPiwL7+OP8\nfaOIPGXDBrsFPKKKvAqXEMo26ZPnYkmfhp06qefSTsOS54wcCXzyCft8yy35ZeXw71dcweZdj7L2\na9KWvCy9/v1Z3eRywI036tOZOJH9JY2Nu0acHSMJwY9DGiJv65N3KZerULns9+STzAetGvQnw8Yn\nX13N9vvBD9hvPHyQE9eStw0fdtWMJEReZam3CZ+8bOTpggXAb36T/1sxLHkKDaPq3Dm0RHg5Djww\ndDXpkDWopH3yOvfWgAHyIezFwNYnT393eQNJA1uRTyK6RpVvXMMl7vHHHw+cfLLb1Bsmn3y7dmGf\njs24CttZZaOcaxSfvA7vk5dALXn+mU5J0KdPGN7FKYYlT8tGaWwsnKODxu/qKIZPXifyH3wAHHZY\nMvm5kna4IyWpOt1nH/nvcUVeVb6HHrJLw+X8suSTp+LlsuhOFHeNLWLHL0V3v5ZjdE1R3TXz5xeO\nNqUXUJx3Rry4aUbX6PJVbVfNoS5SjBBKWZ0UU2BVuFryWWDOHHlHdJzxErqO1zPPtEsvDbErpk++\npsZt+cyoHa82RPXJq6zsOD55sc+vrEWeT8kKyOPkTWF8acbJy0bJqZC9hbhSjI7XtN1acUIos4yq\nT0A1d5INNoOhkhR51T0hWtLF7nhNQ+SjoBtHoRN52nlM9xs2rHBRdhGViItTEGdmxGtcoljyxfLJ\nu1jy5eCuSQuXkD6RLFvyKuLUp2vHaxo++W7d2BzrSeZDMfnQq6rc3DV0qmEdrucQ5ZxNAty3r3k6\nEdEd84tfsP9PPQV89VWofxXZ8coRLXmVyIuLPBRbMLJoycsWvsiCFa1qsC5hmFmBX68oM3a6drza\nbE86DDAOP/4xW1heBq2v884DTjlFnU6x3DUqjjpKPQgvLqIlz89rn31YnhUXXbOzAKQEJkueP0VV\n88AnAQ851OHqk9elERdefz17qreVEpXlM3lycTrM0yBKuffZxxyOWAx3TVr813+ZV5UC2MpgTzyh\nTqeYIi877qWX2BuPSBIulDYbXaOz5EV4PL0o8ln3yac5+IUvxbf77oXbsiDySVslOool8lHOadw4\nthoTULmDoVTYhkIC6Yr81Vfbl0MkDZFXjb8p645Xiqzj1WTJq0Q+jXLpSKoXPImbmou7mNacOYUz\n6ZWCYop8sejVC1i0KPrxLgYFJcuWvI6ePYFTT7Xbt9SWvAou8vQY13zb7IhXF588F/c0LHldvqrt\nNpbyOefI1yRNymrbf3/5+Z9wQjLp67A5h0oU+dZW4OCDox+vsgpNg6FsffLHHstGO9tQjIdBx47A\no4+6H9e5M/uf1L0SJx3dYu+u+Rd77pqSu2tcLHku7klUeBxcLsb997NV63XpVAovv8zm/KYk7V9M\ng2JfB1X7TconP3du4aIXKrJk8VOWLLFf0CSqayqKJR/1eMDsrknLJ59pS151jEiSPnmXjlfRkn/8\n8Wh5X355tOOyxpFHAj165P9WDj75YoTgUWyMFNuFLyoVOp+RagRyMZG5a1wxeQAq1icvxsnTSlT1\n1qeNS3QNxTX0iqdz3XVux5UTlequiQN1N7oMhhIHEmXVCo+DWAdr18qDCijFqIckrGvZwiiUtHzy\nJY+/0I14PeAA+QWM89qVBKonso1l9ac/hZ+5WFSiEHIq8dyStORtrfGvvpKH9sUl6w+KHj3MU3oX\n4xyScBGbFspJa8RryX3yLu4aGeefD/zbvyVTJk5US97mhp0yJdy3udm9bFnn3HPDcwQqU+TjWvI2\nPvlzzsnfZrP8XhSyJvJp9uHEcW+J68gCybv52mTHqwpaWXffzZZ7i4tLWJtqUjDXRlTuIi873+OP\nZ28rr7zCvhez47VYA9PiCqMqBJiWY8wY4MQTkyvH7rujYO521zSKQW0tsGWL2zHF6HjlIaBx6ks0\nDlTtLum+lsz55MsB8QHVvTvw2Wde5Cl8HvJy6Hh1pRiWPJDsYLaPPiqPSCfAbmWnJEhyPvkk8ovb\nrlRkypJPc5EAF2wvKC/74sVux3HK5aEWhbRePdOglNE1uo7XJEV+993lLp9TTgGuvTa5fEpBMd9G\n4uRVdiJ/2WWXYeDAgRg+fDimT5+OTZs2OR0vWvLHH89eUUsRFnbMMcCkSYVlMyGeg+voxXK35HWk\nFSmQBYoRQgkUZ1qKPfYAfvrT9PNJk7TE0cShh7oNijN1vGZO5I8//ngsWrQIb775JrZs2YLrr78+\nVkGefhpoaDDvd+mlwOmnx8qqgOeei7a+qfg20tbcNTrSihTIAmmJfJqWvCd59tvPbXqLsrPkjzvu\nOFRVVaGqqgonnHACVq1a5XS8eMJ8KT2TKNx4I7Dvvo6FdcTVXeNFvpBysuSL3fGaJUu+EijG3DVx\n8wLMHa9peTESaUZ33HEHTjvtNKdjVJU1bhwwb14ChYrAtdeqpyCQEcddA1S2yJfCJ1+OHa/F8slX\nMlmLEFJRV8fm3VdxwAFsapCk0drNxx13HNatW1fw+3XXXYcJEyYAAK699lp07doVZ/KFKiXMmDFj\n5+f6+nrU19cr962qKt3sidw3GdWSdyGXK/+OV109+Y5XOfvtx/qfOHFEvlzEzcPo3JnNu0+/U158\nsQENDQ2YOzfZfLUiP9eQ2z333IOnnnoKzz33nHY/KvKcLDdQ147XtuiuueIKQPfyltZkS1kgjiX/\n8cfqbd6Sj0Yx3TVJsWgRs9wpogF8zTXXJJJX5Ftwzpw5uPHGGzFv3jx0MC3cWKFwKzWqyJezAN5w\ng357OVnyxfbJ26IT+QsvLM8lFLNEsX3ylDhTVbsSWWa+//3vo6mpCcceeywA4PDDD8dtt91mfXy5\nW/LvvcfCz+j+rmIxbRoLw6pEvE/ejfPOK1xYQyfyf/hD8mUoV/r1K3UJsk1kkV+2bFmS5cgUNmIx\neHD4OYoln8ux4e2VKvKliK4plsinYaD88Y+Fv3l3jR0//jHwve+ln8/ttxfOBFoOlMxhkGVL3pWo\n7ppKppzcNS48+SRw+OHJpbf//uptlVZ3aVFVVdiJKeOYY4DZs6Pn8x//Ef3YUuJFXoKrWEd117QF\nimmN8vly0uTkk5NLa9Mm/Twt3pJPlqOPBj74oNSlKD5l3PWXHsVaYagtUAyhGjqUTRIXdZAc71sp\nNrvsot/ujYZ0aSv3q7fkE6QSzykuxRD5N9+MfuyqVdlYXk6Gt+Q9SeAteQnFsKB22y39PErNbbfZ\n+UrjEicUtWfP5MqRNF7k06WtGGXekpeQtrtm0ybzq3olcNFFpS5BeXPWWYBkwLnH44S35CVEFXnb\n+Om2IPCe+NTXsz+PJw4leyGsREve4/GUD1nWoCTx7hoJv/gFWzHHlSyfk8fjaZt4kZcwcKD74uCd\nO7Ml1jwejydLeJ98QjQ2lroEHo/HU4gP0vJ4PG2SLHsTksR3vHo8njZJW9Egb8l7PB5PBeMteY/H\n46lgvCXv8Xg8FYy35D0eT5ukrWiQF3mPx9MmKdUU08XGi7zH42mT/Pu/A598UupSpI/3yXs8njZJ\ndXX0hWbKCS/yHo/HU8GUTOS7dStVzh6Px9N2iCzyP/vZzzB06FDU1dVh6tSp2LBhg9Px48YB69dH\nzd3j8Xg8NkQW+csvvxzvvvsu3nnnHRxwwAG4+eabndPYc8+ouZcnDQ0NpS5CZvB1EeLrIsTXRfJE\nFvmuXbsCAJqbm7FlyxZ06NAhsUJVKr4Bh/i6CPF1EeLrInli+eSvuuoq9OjRAy+//DIuvfTSpMrk\n8Xg8noTQivxxxx2HwYMHF/w9/vjjAIBrr70Wn376KQ477DBcccUVRSmwx+PxeBwIEuC9994Lhg4d\nKt3Wr1+/AID/83/+z//5P4e/fv36JSHPQeSVoZYtW4YDDjgAzc3NeOCBBzB48GDpfh9++GHULDwe\nj8cTk1wQRJtg4IwzzsCSJUvQsWNH1NfX47LLLsNee+2VdPk8Ho/HE4PIIu/xeDye7JPaiNd58+Zh\n+PDhGDJkCH73u9+llU1mWLlyJY4++mgMGjQI9fX1uOeeewAAmzdvxsSJEzFkyBBMmjQJjWTF71tu\nuQVDhgzB8OHD8fLLL5eo5OnR0tKCYcOGYcKECQDabl1s2bIF5557LoYNG4aDDz4YCxYsaLN1cccd\nd+CII47AiBEjMH36dABtp11MmzYN3bt3z3NtRzn3999/H6NGjcKQIUNw1VVXmTNOxLMv0NzcHPTr\n1y9Yvnx50NTUFAwdOjRYvHhxGlllhrVr1wYLFy4MgiAI1q9fH3Tv3j1YvHhxcNlllwW/+tWvgiAI\nghtuuCG44oorgiAIgkWLFgVDhw4NmpqaguXLlwf9+vULWlpaSlb+NLjpppuCc845J5gwYUIQBEGb\nrYtvf/vbwV133RUEQRDs2LEj2LhxY5usiw0bNgR9+/YNGhsbg5aWluCkk04K5syZ02bqYt68ecHb\nb78dHHLIITt/czn31tbWIAiCYOTIkcGCBQuCIAiCk046KXj66ae1+aYi8q+++mpwwgkn7Px+/fXX\nB9dff30aWWWW8ePHB3Pnzg0GDBgQrFu3LggC9iAYMGBAEARBcN111wU33HDDzv1POOGE4LXXXitJ\nWdNg5cqVwbhx44Lnn38+GD9+fBAEQZusi40bNwb77bdfwe9tsS62bt0a9OnTJ1i9enXQ2NgYjB07\nNpg/f36bqovly5fnibzrua9ZsyY46KCDdv7+wAMPBN/97ne1eabirlm9ejV69+6983uvXr2wevXq\nNLLKJB9++CEWLVqE0aNH47PPPkP37t0BAN27d8dnn30GAFizZg169eq185hKq6NLLrkEN954I6qq\nwibWFuti+fLl2GuvvXDeeefhkEMOwYUXXoitW7e2ybro2LEjbr/9dvTt2xc9evTAkUceiVGjRrXJ\nuuC4nrv4e8+ePY11korI53K5NJItCxobGzF58mTMnDkTXbp0yduWy+W0dVMp9fbEE09g7733xrBh\nwxAo+vXbSl00NzfjjTfewOmnn4433ngD27dvx+zZs/P2aSt1sX79elx00UVYvHgxVqxYgddeew1P\nPPFE3j5tpS5kmM49KqmIfM+ePbFy5cqd31euXJn39KlUduzYgdNPPx1TpkzBaaedBoA9ndetWwcA\nWLt2Lfbee28AhXW0atUq9OzZs/iFToFXX30Vjz32GPbbbz+cffbZeP755zF16tQ2WRe9evVCt27d\nMGHCBHTs2BFnn3025syZgx49erS5unj99dcxevRo9O/fH926dcOZZ56Jl156qU22C47Luffq1Qs9\ne/bEqlWr8n431UkqIn/ooYdi2bJlWLFiBZqamjBr1iyceuqpaWSVGYIgwAUXXIBBgwbtjBoAgFNP\nPRX33nsvAODee+/FxIkTd/7+4IMPoqmpCcuXL8eyZctw2GGHlaTsSXPddddh5cqVWL58OR588EEc\nc8wx+NOf/tQm66JHjx7o378/FixYgNbWVjz55JMYN24cJkyY0ObqYsyYMXjzzTfx5ZdfYvv27Xj6\n6adx/PHHt8l2wXE99x49emCXXXbBggULEAQB/vSnP+08RkliPQoCDQ0NQV1dXXDIIYcEN998c1rZ\nZIaXXnopyOVywdChQ4O6urqgrq4uePrpp4OvvvoqOO2004LBgwcHEydODDZv3rzzmN/+9rfBIYcc\nEtTV1QXz5s0rYenTo6GhYWd0TVutiyVLlgSjRo0K+vXrF0ycODFobGxss3Xxxz/+MfjmN78ZHHro\nocHVV18dtLS0tJm6mDx5cvCNb3wjaN++fdCrV6/g7rvvjnTuixYtCg477LDgkEMOCa688kpjvn4w\nlMfj8VQwfo1Xj8fjqWC8yHs8Hk8F40Xe4/F4Khgv8h6Px1PBeJH3eDyeCsaLvMfj8VQwXuQ9Ho+n\ngvEi7/F4PBXM/weIswP7HWif8QAAAABJRU5ErkJggg==\n", "text": [ - "" + "" ] } ], - "prompt_number": 42 + "prompt_number": 164 }, { "cell_type": "code", @@ -415,13 +404,13 @@ { "metadata": {}, "output_type": "pyout", - "prompt_number": 50, + "prompt_number": 165, "text": [ - "-0.040982001181594382" + "-0.00022751506740750738" ] } ], - "prompt_number": 50 + "prompt_number": 165 }, { "cell_type": "code", @@ -435,13 +424,13 @@ { "metadata": {}, "output_type": "pyout", - "prompt_number": 51, + "prompt_number": 166, "text": [ - "0.99531774523127636" + "0.88764521219235215" ] } ], - "prompt_number": 51 + "prompt_number": 166 }, { "cell_type": "code", @@ -455,13 +444,13 @@ { "metadata": {}, "output_type": "pyout", - "prompt_number": 52, + "prompt_number": 167, "text": [ - "0.99765612574237039" + "0.9421492515479446" ] } ], - "prompt_number": 52 + "prompt_number": 167 }, { "cell_type": "code", @@ -475,25 +464,25 @@ { "metadata": {}, "output_type": "pyout", - "prompt_number": 53, + "prompt_number": 168, "text": [ - "(array([ 12, 20, 78, 180, 217, 238, 159, 67, 22, 7]),\n", - " array([-3.11518853, -2.49375325, -1.87231796, -1.25088268, -0.62944739,\n", - " -0.00801211, 0.61342318, 1.23485846, 1.85629375, 2.47772903,\n", - " 3.09916432]),\n", + "(array([ 9., 36., 84., 177., 281., 218., 122., 52., 16., 5.]),\n", + " array([-2.83997205, -2.23914286, -1.63831367, -1.03748449, -0.4366553 ,\n", + " 0.16417389, 0.76500308, 1.36583226, 1.96666145, 2.56749064,\n", + " 3.16831983]),\n", " )" ] }, { "metadata": {}, "output_type": "display_data", - "png": "iVBORw0KGgoAAAANSUhEUgAAAXUAAAD9CAYAAABDaefJAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAFAtJREFUeJzt3X9s1Hfhx/HXlXaajXYDscdy16SRxkhLr71W8GABj9ll\nGUppJRratavtWIybMwydy0KIrfvlj2Bj+eP7h7K1Y0HURCkxsMzpjll0Hg7mJl1syY54vf6QArHt\nDPYHn+8fzJOO43otd/1c3zwfCUn59D73ft3Bve7ufZ97fxyWZVkCABghw+4AAIDkodQBwCCUOgAY\nhFIHAINQ6gBgEEodAAwSt9TD4bA2btyooqIi+f1+tbe3S5Kam5vldrvl9Xrl9Xp19OjR6D5tbW3y\neDwqKytTV1dXSsMDAKZzxDtOfXBwUIODgyotLdXw8LBWrVql1157Tb/4xS+UnZ2tnTt3Trt8d3e3\namtrdeLECUUiEVVUVKinp0cZGbwhAID5ELdtly9frtLSUknSsmXLtHr1akUiEUlSrOeCzs5O1dTU\nKCsrS/n5+SooKFAwGExBbABALJmJXvDMmTM6ffq01q5dq+PHj2vv3r3at2+f1q5dqz179uiOO+5Q\nf3+/fD5fdB+32x19Evgvh8ORvPQAcBNJZAGAhOZFxsbGtG3bNrW2tuq2227T1772NYVCIf3pT3/S\nokWL9M1vfvO6+8Yqccuy0v7Pd77zHdszmJJzIWQkJznT/U+iZiz1iYkJbd26VXV1ddqyZYskKTc3\nVw6HQ7fffrseeeSR6BSLy+VSOByO7tvX1yeXy5VwGADAjYlb6pZl6cEHH1RRUZF27NgR3T4wMCBJ\nmpyc1IEDB1RcXCxJqqys1MGDBzU+Pq5QKKTe3l6tWbMmhfEBAFeLO6d+/PhxvfTSS/J4PPJ6vZKk\nZ599Vj/72c/01ltv6ZZbbtGGDRvU2toqSSosLFRjY6PKy8uVmZmp9vb2BTuH7vf77Y6QkIWQcyFk\nlMiZbOS0R9xDGlMyoMMxq/khAEDi3ckB5ABgEEodAAxCqQOAQSh1ADAIpQ58ICdnqRwOR8r/5OQs\ntfumwmAc/QJ84Mrht/Pxf5PHAGaPo18A4CZEqQOAQSh1ADAIpQ4ABqHUAcAglDoAGIRSBwCDUOoA\nYBBKHQAMQqkDgEEodQAwCKUOAAah1AHAIJQ6ABiEUgcAg1DqAGAQSh0ADJJpdwBgJjk5SzU6etHu\nGMCCwOnskPbm8zRznM4O6YrT2QHATYhSBwCDUOoAYBBKHQAMQqkDgEEodQAwCKUOAAah1AHAIJQ6\nABiEUgcAg8Qt9XA4rI0bN6qoqEh+v1/t7e2SpNHRUVVVVcnj8ai6ulpjY2PRfdra2uTxeFRWVqau\nrq6UhgcATBd37ZfBwUENDg6qtLRUw8PDWrVqlV577TW98MILWrZsmb797W/r+9//vi5evKjvfe97\n6u7uVm1trU6cOKFIJKKKigr19PQoI+N/zx2s/YLZYu0XIElrvyxfvlylpaWSpGXLlmn16tWKRCI6\nfPiwGhoaJEkNDQ06dOiQJKmzs1M1NTXKyspSfn6+CgoKFAwGb/S2AAASlPDSu2fOnNHp06fl8/k0\nNDQkp9MpSXI6nRoaGpIk9ff3y+fzRfdxu92KRCLXXFdzc3P0Z7/fL7/fP8f4AGCmQCCgQCAw6/0S\nKvWxsTFt27ZNra2tWrx48bTfORyOD94exxbrd1eXOgDgWh9+wdvS0pLQfjMe/TIxMaGtW7eqrq5O\nW7ZskXTl1fng4KAkaWBgQLm5uZIkl8ulcDgc3bevr08ulyvhGwEAuDFxS92yLD344IMqKirSjh07\notsrKyvV0dEhSero6FBVVVV0+8GDBzU+Pq5QKKTe3l6tWbMmhfEBAFeLe/RLV1eXNmzYII/HE51G\nee6553TXXXepvr5e7733nlasWKH9+/dHp2V+/OMf66c//akyMzPV1tam9evXTx+Qo18wSxz9AiTe\nnZzODmmPUgc4nR0A3JQodQAwCKUOAAah1AHAIJQ6ABiEUgcAg1DqAGAQSh0ADEKpA4BBKHUAMAil\nDgAGodQBwCAJn/kI+LCcnKUaHb1odwwAV2GVRsyZiasnskoj0hWrNALATYhSBwCDUOoAYBBKHQAM\nQqkDgEEodQAwCKUOAAah1AHAIJQ6ABiEUgcAg1DqAGAQSh0ADEKpA4BBKHUAMAilDgAGodQBwCCU\nOgAYhNPZAfMu84OzRqVWdvYSjYxcSPk4SC+czg5zxuns0n8cHmvm4HR2AHATotQBwCCUOgAYJG6p\nNzU1yel0qri4OLqtublZbrdbXq9XXq9XR48ejf6ura1NHo9HZWVl6urqSl1qAEBMcT8o/cMf/qDF\nixfrgQce0DvvvCNJamlpUXZ2tnbu3Dntst3d3aqtrdWJEycUiURUUVGhnp4eZWRMf97gg1Jz8EFp\n+o/DY80cSfmgdP369VqyZMk122NdcWdnp2pqapSVlaX8/HwVFBQoGAzOIjIA4EbN6Tj1vXv3at++\nfVq7dq327NmjO+64Q/39/fL5fNHLuN1uRSKRmPs3NzdHf/b7/fL7/XOJAQDGCgQCCgQCs95vxuPU\nz549q82bN0enX/75z3/q4x//uEZGRvT4449rampK+/bt06OPPiqfz6f7779fkrR9+3Zt2rRJX/zi\nF6cPyPSLMZh+Sf9xeKyZI2XHqefm5srhcOj222/XI488Ep1icblcCofD0cv19fXJ5XLN9uoBADdg\n1qU+MDAgSZqcnNSBAweiR8ZUVlbq4MGDGh8fVygUUm9vr9asWZPctACAuOLOqdfU1OjYsWMaHh5W\nXl6eWlpaFAgE9NZbb+mWW27Rhg0b1NraKkkqLCxUY2OjysvLlZmZqfb29nlZ3wIA8D+s/YI5Y049\n/cfhsWYO1n4BgJsQpQ4ABqHUAcAglDoAGIRSBwCDUOoAYBBKHQAMQqkDgEEodQAwCKUOAAah1AHA\nIJQ6ABiEUgcAg1DqAGAQSh0ADEKpA4BBKHUAMAilDgAGodQBwCCUOgAYhFIHAINQ6gBgEEodAAxC\nqQOAQSh1ADAIpQ4ABqHUAcAglDoAGIRSBwCDUOoAYBBKHQAMQqkDgEEodQAwCKUOAAah1AHAIJQ6\nABgkbqk3NTXJ6XSquLg4um10dFRVVVXyeDyqrq7W2NhY9HdtbW3yeDwqKytTV1dX6lIDAGKKW+qN\njY16+eWXp2176qmntG7dOr399tvy+Xx6+umnJUnd3d16/vnn9eabb+pXv/qVvvKVr+jy5cupSw4A\nuEbcUl+/fr2WLFkybdvhw4fV0NAgSWpoaNChQ4ckSZ2dnaqpqVFWVpby8/NVUFCgYDCYotgAgFgy\nZ7vD0NCQnE6nJMnpdGpoaEiS1N/fL5/PF72c2+1WJBKJeR3Nzc3Rn/1+v/x+/2xjAIDRAoGAAoHA\nrPebdalfzeFwyOFwxP19LFeXOgDgWh9+wdvS0pLQfrM++sXpdGpwcFCSNDAwoNzcXEmSy+VSOByO\nXq6vr08ul2u2Vw8AuAGzLvXKykp1dHRIkjo6OlRVVRXdfvDgQY2PjysUCqm3t1dr1qxJbloAQFxx\np19qamp07NgxnT9/Xnl5efrud7+r3bt3q76+Xh6PRytWrND+/fslSYWFhWpsbFR5ebkyMzPV3t4e\nd2oGAJB8DsuyrHkd0OHQPA+JFLnypD0f/5aMM9dxeKyZI9Hu5BulAGAQSh0ADEKpA4BBKHUAMAil\nDgAGodQBwCCUOgAYhFIHAINQ6gBgEEodAAxCqQOAQSh1ADAIpQ4ABrmhMx8hPeXkLNXo6EW7YwCw\nAUvvGoglcRnnv+PwWDMHS+8CwE2IUgcAg1DqAGAQSh0ADEKpA4BBKHUAMAilDgAGodQBwCB8oxQw\nVuYHX0RLrezsJRoZuZDycZAYSh0w1qTm45uro6Opf+JA4ph+AQCDUOoAYBBKHQAMQqkDgEEodQAw\nCKUOAAah1AHAIJQ6ABiEUgcAg1DqAGCQOS8TkJ+fr5ycHC1atEhZWVkKBoMaHR1VfX293nvvPa1Y\nsUL79+/X4sWLk5kXABDHnF+pOxwOBQIBnTp1SsFgUJL01FNPad26dXr77bfl8/n09NNPJy0oAGBm\nNzT9YlnTFws6fPiwGhoaJEkNDQ06dOjQjVw9AGCW5jz94nA4dPfddysjI0MPP/ywHnroIQ0NDcnp\ndEqSnE6nhoaGYu7b3Nwc/dnv98vv9881BgAYKRAIKBAIzHo/h/Xhl9sJGhgY0J133ql3331XmzZt\n0osvvqjKykpdvHgxepmlS5fqwoXp6yw7HI5rXuEjua6soT0f9zHjMM6VcXhMp16i3Tnn6Zc777xT\nkrRy5UpVV1crGAzK6XRqcHBQ0pXSz83NnevVAwDmYE6l/u9//1ujo6OSpHPnzunIkSMqLi5WZWWl\nOjo6JEkdHR2qqqpKXlIAwIzmNP0SCoVUXV0tSfrYxz6mL3/5y/rqV7+a0CGNTL+kHtMvjDPf4/CY\nTr1Eu3POc+pzRamnHqXOOPM9Do/p1Ev5nDoAIP1Q6gBgEEodAAxCqQOAQSh1ADAIpQ4ABqHUAcAg\nlDoAGIRSBwCDUOoAYBBKHQAMQqkDgEEodQAwCKUOAAah1AHAIJQ6ABiEUgcAg1DqAGAQSh0ADJJp\ndwAAC13mB+fFTa3s7CUaGbmQ8nEWOkodwA2a1Hyc4Hp0NPVPHCag1OdRTs5SjY5etDsGAIM5LMtK\n/VPs1QM6HJrnIdPGlbeo83HbGYdxzBznZu0OKfHu5INSADAIpQ4ABqHUAcAglDoAGIRSBwCDcEij\npJMnT+qNN96wOwYA3DBKXVJLyx4dPTqkRYs+aXcUALghlLoky5ImJho1MXF/ikf6vxRfP4CbHXPq\nAGAQSh0ADML0C4AFgtUgE0GpA1ggWA0yEUy/XFfA7gAJCtgdIAEBuwMYJmB3gAQF7A6QoIDdAZIq\n6aX++uuvq6ysTB6PR3v37k321c+jgN0BEhSwO0ACAnYHMEzA7gAJCtgdIEEBuwMkVVKnX6amptTU\n1KRXX31VLpdLq1evVkVFhVauXJnMYQAA15HUV+rBYFAFBQXKz89XVlaWtm3bps7OzmQOAQCII6mv\n1CORiPLy8qJ/d7vd+vOf/3zN5ebjE+zZOyCp7kPbWlIwTipue6yc83UfJzrOjd6X6XZ77B4n0fvT\n7tuT7MdQqm7P9Jzp2VGJSWqpJ3JH3MxnLgGAVEvq9IvL5VI4HI7+PRwOy+12J3MIAEAcSS31T3/6\n0+rt7dXZs2c1Pj6un//856qsrEzmEACAOJI6/ZKZmannn39e1dXVmpyc1EMPPcSRLwAwj5J+nPpn\nP/tZnTp1Su+8846+8Y1vxL3snj17lJGRoQsX0vMrubt371ZJSYlKS0tVX1+v8+fP2x0ppscff1wr\nV65UWVmZduzYoX/96192R4rpl7/8pYqKirRo0SKdPHnS7jjTLITvVzQ1NcnpdKq4uNjuKHGFw2Ft\n3LhRRUVF8vv9am9vtztSTJcuXdJnPvMZlZaWyufzqbW11e5I1zU1NSWv16vNmzfPfGHLJv/4xz+s\ne++918rPz7fOnz9vV4y4RkZGoj+3tLRYu3fvtjHN9b3yyivW1NSUNTU1ZW3fvt164okn7I4U07vv\nvmv9/e9/t/x+v/Xmm2/aHSdqcnLSWrFihRUKhazx8XGrpKTE6u7utjvWNV5//XXr5MmT1qpVq+yO\nEtfAwIB16tQpy7Is69y5c5bT6UzL+9OyLOv999+3LMuyLl26ZBUVFVm9vb02J4ptz549Vm1trbV5\n8+YZL2vbMgE7d+7UD37wA7uGT0h2drYkaXJyUu+//74++tGP2pwotnvuuUcZGRnKyMjQvffeq76+\nPrsjxfSpT31Kn/xk+p2IZKF8v2L9+vVasmSJ3TFmtHz5cpWWlkqSli1bptWrV6u/v9/mVLHdeuut\nkqSxsTFNTk7qIx/5iM2JrtXX16cjR45o+/btCR09aEupd3Z2yu12y+Px2DH8rOzatUvLly9XV1eX\nvvWtb9kdZ0Y/+clPtGXLFrtjLCixvl8RiURsTGSOM2fO6PTp0/L5fHZHieny5csqKSmR0+nU17/+\n9Wn/D9LFY489ph/+8IfKyEisrlO2SuM999yjwcHBa7Y/88wzeu655/TKK69EtyXy7JMq18v57LPP\navPmzXrmmWe0a9cu7dq1S0888YRt824z5ZSu3LfZ2dn60pe+NN/xohLJmW4W8hdN0tnY2Ji2bdum\n1tZW3XbbbXbHiSkjI0N//etfdfbsWW3atEl33XWXvF6v3bGifvOb3yg3N1der1eBQCChfVJW6r/9\n7W9jbv/b3/6mUCikkpISSVfeWpSXlysYDCo3NzdVca7rejmvduutt6qpqUn19fXzkCi2mXK2t7fr\nyJEj+t3vfjdPiWJL5P5MN3y/IvkmJia0detW1dXVLYh3jvn5+dq0aZOOHTuWVqX+xz/+UYcPH9aR\nI0d06dIljYyM6IEHHtCLL754/Z1SPsM/g3T+oLSnp8eyLMuamJiwnnzySauurs7mRLEdPXrUKiws\ntIaHh+2OkhC/32/95S9/sTtG1MTEhPWJT3zCCoVC1n/+85+0/aDUsiwrFAql/Qelly9fturr663H\nHnvM7ihxnTt3zrp48aJlWZY1PDxsFRYWWq+++qrNqa4vEAhYX/jCF2a8nO3rqafzW98nn3xSxcXF\nWrdunSYnJ/WjH/3I7kgxPfrooxobG1NFRYW8Xq8efvhhuyPF9Otf/1p5eXl644039PnPf1733Xef\n3ZEkTf9+RXl5uZqamtLy+xU1NTVat26denp6lJeXpxdeeMHuSDEdP35cL730kn7/+9/L6/XK6/Xq\n5ZdftjvWNQYGBnT33XerpKREtbW12rlzpz73uc/ZHSuuRPrSYVksxgIAprD9lToAIHkodQAwCKUO\nAAah1AHAIJQ6ABiEUgcAg/w/XpapbmJfcCAAAAAASUVORK5CYII=\n", + "png": "iVBORw0KGgoAAAANSUhEUgAAAXUAAAEACAYAAABMEua6AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAFZ1JREFUeJzt3X9MVff9x/EXCO1ihcaWcHH3spBAtgpy4cKkzAZztfa7\nzKUIMVuEQO/ALkvnljq71iyNK6xdZ9OsZJjsH9cWZlPZj7TCGjXrul473JZr1LaLmAEtzS6XHylO\nBtRYBO/3D7ebogiXy+Ue+dznI7kJ3nvO/bwP3vu6h8/9nM8nIRgMBgUAMEKi1QUAAKKHUAcAgxDq\nAGAQQh0ADEKoA4BBCHUAMMicoX758mXde++9KiwsVGlpqZqamiRJ4+PjqqiokNPpVGVlpSYmJkL7\nNDc3y+l0qqioSJ2dnUtbPQBghoT5xqlfunRJK1eu1Keffqri4mK9/vrrOnjwoNLS0vTEE0/oueee\n08WLF7V//351dXWpurpap06dUiAQ0JYtW9Td3a3ERP4gAIBYmDdtV65cKUmamJjQ9PS0br/9dnV0\ndMjj8UiSPB6Pjhw5Iklqb29XVVWVkpOTlZWVpZycHPl8viUsHwDwWfOG+tWrV1VQUCCbzaZdu3bp\nC1/4goaHh2Wz2SRJNptNw8PDkqSBgQE5HI7Qvg6HQ4FAYIlKBwBcL2m+DRITE/Xee+/po48+0tat\nW3XffffNeDwhIUEJCQk33X+uxwAA0TVvqP9PVlaWtm7dqhMnTshms2loaEgZGRkaHBxUenq6JMlu\nt8vv94f26e/vl91uv+G5cnJy9MEHH0ShfACIH9nZ2ert7Z1zmzm7X0ZGRjQ6OipJunDhgo4dO6b8\n/HyVl5ertbVVktTa2qqKigpJUnl5udra2jQ5Oam+vj719PSopKTkhuf94IMPFAwGl+3tqaeesryG\neKyd+q2/Ub+1t3BOhuc8Ux8cHJTH49H09LQyMjK0Z88e3X///SopKVFtba2cTqeys7N16NAhSVJu\nbq7q6upUXFyspKQktbS00P0CADE0Z6jn5+frzJkzN9yfkpISGvFyvUcffVSPPvpodKoDACwIA8gj\n4Ha7rS4hYsu5don6rUb9t755Lz5akkYTEmRBswCwrIWTnZypA4BBCHUAMAihDgAGIdQBwCCEOgAY\nhFAHAIMQ6gBgEEIdAAxCqGPJpKbeFZqaOVa31NS7rD5swFJcUYolc20yt1j/P/Pagrm4ohQA4gyh\nDgAGIdQBwCCEOgAYhFAHAIMQ6gBgEEIdAAxCqAOAQQh1ADAIoQ4ABiHUAcAghDoAGIRQBwCDEOoA\nYBBCHQAMQqgDgEHmDHW/369NmzYpLy9PbrdbLS0tkqSGhgY5HA65XC65XC4dO3YstE9zc7OcTqeK\niorU2dm5pMUDAGaac+WjoaEhDQ0NqbCwUCMjI1q3bp3efvtt/fa3v1VKSor27NkzY/uuri5VV1fr\n1KlTCgQC2rJli7q7u5WYOPOzg5WP4gMrHwHRteiVjzIyMlRYWChJSktL0/r16xUIBCRp1idub29X\nVVWVkpOTlZWVpZycHPl8vkjrBwAsUNh96r29vTp37py+8pWvSJIOHDig3Nxc7dy5U6Ojo5KkgYEB\nORyO0D4OhyP0IQAAWHphhfrExIR27NihpqYm3XHHHXrkkUfU19env/3tb1qxYoUee+yxm+577U9w\nAEAsJM23wZUrV7R9+3bV1NRo27ZtkqT09HRJ0p133qldu3appqZGkmS32+X3+0P79vf3y263z/q8\nDQ0NoZ/dbrfcbnekxwAARvJ6vfJ6vQvaZ84vSoPBoDwej9LS0vTCCy+E7h8cHNSaNWs0NTWlJ598\nUn6/X6+++mroi1Kfzxf6orS3t/eGs3W+KI0PfFEKRFc42TnnmfrJkyf1yiuvyOl0yuVySZKeffZZ\nHT58WO+++65uu+02bdy4UU1NTZKk3Nxc1dXVqbi4WElJSWppaaH7BQBiaM4z9SVrlDP1uMCZOhBd\nix7SCABYXgh1ADAIoQ4ABiHUAcAghDoAGIRQBwCDEOoAYBBCHQAMQqgDgEEIdQAwCKEOAAYh1AHA\nIIQ6ABiEUAcAgxDqAGAQQh0ADEKoA4BBCHUAMAihDgAGIdQBwCBJVhcARFfSfxe8jp2UlNUaG/t3\nTNsEbiYhaMHS6+GsiI3l71q4xvr/2Zo2eT0jFsLJTrpfAMAghDoAGIRQBwCDEOoAYBBCHQAMQqgD\ngEEIdQAwyJyh7vf7tWnTJuXl5cntdqulpUWSND4+roqKCjmdTlVWVmpiYiK0T3Nzs5xOp4qKitTZ\n2bmkxQMAZprz4qOhoSENDQ2psLBQIyMjWrdund5++229/PLLSktL0xNPPKHnnntOFy9e1P79+9XV\n1aXq6mqdOnVKgUBAW7ZsUXd3txITZ352cPFRfODiIyC6Fn3xUUZGhgoLCyVJaWlpWr9+vQKBgDo6\nOuTxeCRJHo9HR44ckSS1t7erqqpKycnJysrKUk5Ojnw+XzSOBQAQhrD71Ht7e3Xu3DmVlpZqeHhY\nNptNkmSz2TQ8PCxJGhgYkMPhCO3jcDgUCASiXDIA4GbCmtBrYmJCO3bsUFNTk1atWjXjsYSEhDkn\nULrZYw0NDaGf3W633G53OKUAQNzwer3yer0L2mfeUL9y5Yq2b9+umpoabdu2TdK1s/OhoSFlZGRo\ncHBQ6enpkiS73S6/3x/at7+/X3a7fdbn/WyoAwBudP0Jb2Nj47z7zNn9EgwGtXPnTuXl5Wn37t2h\n+8vLy9Xa2ipJam1tVUVFRej+trY2TU5Oqq+vTz09PSopKYnkWAAAEZhz9EtnZ6c2btwop9MZ6kb5\n2c9+pvvuu0+1tbX68MMPlZ2drUOHDoW6ZX7xi1/oV7/6lZKSktTc3KyysrIbG2X0S1xg9AsQXeFk\nJ/OpY8kQ6kB0MZ86AMQZQh0ADEKoA4BBCHUAMAihDgAGIdQBwCCEOgAYhFAHAIMQ6gBgEEIdAAxC\nqAOAQQh1ADBIWItkwAypqXdpfPyi1WUAWELM0hhHYj9rIrM0AtHELI0AEGcIdQAwCKEOAAYh1AHA\nIIQ6ABiEUAcAgxDqAGAQQh0ADEKoA4BBCHUAMAihDgAGIdQBwCCEOgAYhFAHAIPMG+r19fWy2WzK\nz88P3dfQ0CCHwyGXyyWXy6Vjx46FHmtubpbT6VRRUZE6OzuXpmoAwKzmnU/9L3/5i1atWqWHHnpI\n//jHPyRJjY2NSklJ0Z49e2Zs29XVperqap06dUqBQEBbtmxRd3e3EhNnfnYwn7o1mE996drk9YxY\niMp86mVlZVq9evUN98/2xO3t7aqqqlJycrKysrKUk5Mjn8+3gJIBAIsRcZ/6gQMHlJubq507d2p0\ndFSSNDAwIIfDEdrG4XAoEAgsvkoAQFgiWqP0kUce0Y9//GONjY3p8ccf12OPPaYXX3xx1m2v/cl/\no4aGhtDPbrdbbrc7klIAwFher1der3dB+0QU6unp6ZKkO++8U7t27VJNTY0kyW63y+/3h7br7++X\n3W6f9Tk+G+oAgBtdf8Lb2Ng47z4Rdb8MDg5KkqampvTqq6+GRsaUl5erra1Nk5OT6uvrU09Pj0pK\nSiJpAgAQgXnP1KuqqnTixAmNjIwoMzNTjY2N8nq9evfdd3Xbbbdp48aNampqkiTl5uaqrq5OxcXF\nSkpKUktLy027XwAA0TfvkMYlaZQhjZZgSOPStcnrGbEQlSGNAIDlg1AHAIMQ6gBgEEIdAAxCqAOA\nQQh1ADAIoQ4ABiHUAcAghDoAGIRQBwCDEOoAYBBCHQAMQqgDgEEIdQAwCKEOAAYh1AHAIBGtUQrg\ns5JivsJXSspqjY39O6ZtYnlg5aM4wspHZrXJeyj+sPIRAMQZQh0ADEKoA4BBCHUAMAihDgAGIdQB\nwCCEOgAYhFAHAIMQ6gBgEEIdAAwyb6jX19fLZrMpPz8/dN/4+LgqKirkdDpVWVmpiYmJ0GPNzc1y\nOp0qKipSZ2fn0lQNAJjVvKFeV1en48ePz7jv6aef1oYNG/T++++rtLRUzzzzjCSpq6tLL730kk6f\nPq3XXntN3/rWt3T16tWlqRwAcIN5Q72srEyrV6+ecV9HR4c8Ho8kyePx6MiRI5Kk9vZ2VVVVKTk5\nWVlZWcrJyZHP51uCsgEAs4moT314eFg2m02SZLPZNDw8LEkaGBiQw+EIbedwOBQIBKJQJgAgHIue\nTz0hIWHOuaRv9lhDQ0PoZ7fbLbfbvdhSAMAoXq9XXq93QftEFOo2m01DQ0PKyMjQ4OCg0tPTJUl2\nu11+vz+0XX9/v+x2+6zP8dlQBwDc6PoT3sbGxnn3iaj7pby8XK2trZKk1tZWVVRUhO5va2vT5OSk\n+vr61NPTo5KSkkiaAABEYN4z9aqqKp04cUIXLlxQZmamfvKTn2jfvn2qra2V0+lUdna2Dh06JEnK\nzc1VXV2diouLlZSUpJaWlpgv8wUA8Yzl7OIIy9mZ1SbvofjDcnYAEGcIdQAwCKEOAAYh1AHAIIQ6\nABiEUAcAgxDqAGCQRc/9gsikpt6l8fGLVpcBwDBcfGSR2F8IJMX+Ipl4OEbr2oz391A84uIjAIgz\nhDoAGIRQBwCDEOoAYBBCHQAMQqgDgEEIdQAwCKEOAAYh1AHAIIQ6ABiEUAcAgxDqAGAQQh0ADEKo\nA4BBCHUAMAihDgAGIdQBwCCEOgAYhFAHAIMsauHprKwspaamasWKFUpOTpbP59P4+Lhqa2v14Ycf\nKjs7W4cOHdKqVauiVS8AYA6LOlNPSEiQ1+vV2bNn5fP5JElPP/20NmzYoPfff1+lpaV65plnolIo\nAGB+i+5+uX5l646ODnk8HkmSx+PRkSNHFtsEACBMiz5T37x5s1wulw4ePChJGh4els1mkyTZbDYN\nDw8vvkoA10lSQkJCzG6pqXdZfcAI06L61E+ePKk1a9bo/Pnz2rp1q+65554Zj//vBQEg2qYkBefd\nKlrGx3kfLxeLCvU1a9ZIktauXavKykr5fD7ZbDYNDQ0pIyNDg4ODSk9Pn3XfhoaG0M9ut1tut3sx\npQCAcbxer7xe74L2SQhe3ykepkuXLml6elopKSn6+OOPVVZWpubmZv3pT3/S3Xffrb1792r//v0a\nHR3V/v37ZzaakHBDX3y8ufYXTKx/B7FuMx6OMV7a5D17KwgnOyMO9b6+PlVWVkqS7r77bn3zm9/U\nd77znbCGNBLqhDptLrc2ec/eCpY01BeDUCfUaXO5tcl79lYQTnZyRSkAGIRQBwCDEOoAYBBCHQAM\nQqgDgEEIdQAwyKKuKDVFaupdGh+/aHUZALBojFNXvIwZt6LNeDjGeGnz1nrPxivGqQNAnCHUAcAg\nhDoAGIRQBwCDEOoAYBBCHQAMQqgDgEEIdQAwCKEOAAYh1AHAIIQ6ABiEUAcAgxDqAGAQpt4FEIak\n/85mGjspKas1NvbvmLZpAkIdQBimFOvphcfHY/shYgq6XwDAIIQ6ABjklut++f3vf6+LF1laDgAi\ncUstZxcMBpWYmKiVKx+OWS3T0/369NPjMn85MivajIdjjJc2rTlGltCbKZzl7G7JUI/ti+dNSf8X\n4zYlgoA2l1ebhPqtwLI1St955x0VFRXJ6XTqwIEDS9EEAGAWUQ/16elp1dfX67XXXtPp06f14osv\n6vz589FuxmJeqwtYBK/VBSyS1+oCFslrdQGL5I1hW9fGxsfylpp6VwyPb2lEPdR9Pp9ycnKUlZWl\n5ORk7dixQ+3t7dFuxmJeqwtYBK/VBSyS1+oCFslrdQGL5I1hW/8bGx/N21NzPj4+vvwHaUQ91AOB\ngDIzM0P/djgcCgQC0W4GADCLqA9pXOylxAkJCUpJeTBK1cxvaupjXboUs+YAYElFPdTtdrv8fn/o\n336/Xw6HY8Y22dnZc4b/2Ngb0S4rDAv9MGq0oM1oaFR0ag/XUhzjfPVb8XtdSJvR+v3H+jj/157Z\nr59Yz3GzENnZ2fNuE/UhjVNTU/rSl76kt956S5///OdVUlKiw4cPa+3atdFsBgAwi6ifqSclJeml\nl15SZWWlpqam9O1vf5tAB4AYseTiIwDA0rBkQq99+/apoKBAhYWFqq2t1YULF6woI2KPP/641q5d\nq6KiIu3evVv/+c9/rC5pQX73u98pLy9PK1as0JkzZ6wuJ2zL+aK2+vp62Ww25efnW11KRPx+vzZt\n2qS8vDy53W61tLRYXVLYLl++rHvvvVeFhYUqLS1VU1OT1SVFZHp6Wi6XSw8+OM9AkqAFxsbGQj83\nNjYG9+3bZ0UZEfvjH/8YnJ6eDk5PTwcffvjh4N69e60uaUHOnz8f/Oc//xl0u93B06dPW11OWKam\npoLZ2dnBvr6+4OTkZLCgoCDY1dVldVlhe+edd4JnzpwJrlu3zupSIjI4OBg8e/ZsMBgMBj/++OOg\nzWZbVr//Tz75JBgMBoOXL18O5uXlBXt6eiyuaOF+/vOfB6urq4MPPvjgnNtZcqaekpIi6dqXqp98\n8ok+97nPWVFGxB544AElJiYqMTFRX/3qV9Xf3291SQtyzz336Itf/KLVZSzIcr+oraysTKtXr7a6\njIhlZGSosLBQkpSWlqb169drYGDA4qrCt3LlSknSxMSEpqamdPvtt1tc0cL09/fr6NGjevjhh62Z\n+yUcTz75pDIyMtTZ2akf/vCHVpWxaAcPHtS2bdusLsN4XNR26+jt7dW5c+dUWlpqdSlhu3r1qgoK\nCmSz2fS9731vxmtpOfjBD36g559//r8THs5tyUL9gQceUH5+/g23P/zhD5Kkn/70p/rXv/6lkpIS\n7d27d6nKiNh89UvXjiElJUXf+MY3LKx0duHUv5zcymOH48nExIR27NihpqYm3XHHHVaXE7bExES9\n99576u3t1S9/+UudPXvW6pLC9sYbbyg9PV0ulyusWSuXbJGMN998c95tVq5cqfr6etXW1i5VGRGb\nr/6WlhYdPXpUb731VowqWphwfv/LSTgXtWFpXblyRdu3b1dNTc2y/es0KytLW7du1YkTJ+Ryuawu\nJyx//etf1dHRoaNHj+ry5csaGxvTQw89pF//+tezbm9J90tPT4+ka33qhw8fXnYjAo4fP67nn39e\nHR0dy+77gOuF88l/K/jyl7+snp4effTRR5qcnNRvfvMblZeXW11W3AgGg9q5c6fy8vK0e/duq8tZ\nkJGREY2OjkqSLly4oGPHji2rzHn22Wfl9/vV19entrY2bd68+aaBLlkU6j/60Y+Un5+vDRs2aGpq\nSi+88IIVZUTs+9//viYmJrRlyxa5XC5997vftbqkBXn99deVmZmpv//97/r617+ur33ta1aXNK/P\nXtRWXFys+vr6ZXVRW1VVlTZs2KDu7m5lZmbq5ZdftrqkBTl58qReeeUV/fnPf5bL5ZLL5dLx48et\nLissg4OD2rx5swoKClRdXa09e/bo/vvvt7qsiM3XFcnFRwBgEMtGvwAAoo9QBwCDEOoAYBBCHQAM\nQqgDgEEIdQAwCKEOAAYh1AHAIP8PJVkZ0wj9T2IAAAAASUVORK5CYII=\n", "text": [ - "" + "" ] } ], - "prompt_number": 53 + "prompt_number": 168 }, { "cell_type": "code", @@ -511,19 +500,17 @@ "metadata": {}, "outputs": [ { - "output_type": "stream", - "stream": "stdout", - "text": [ - "1000\n", - "(-3.1151885329126516, 3.0991643176780261)\n", - "-0.0409820011816\n", - "0.996314059291\n", - "-0.00558448576293\n", - "0.0614566190913\n" + "ename": "NameError", + "evalue": "name 'stats' is not defined", + "output_type": "pyerr", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m\n\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mn\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmin_max\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmean\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mvar\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mskew\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mkurt\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mstats\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdescribe\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mrandom_data\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2\u001b[0m \u001b[0;32mprint\u001b[0m \u001b[0mn\u001b[0m \u001b[0;31m# num of items in dataset\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0;32mprint\u001b[0m \u001b[0mmin_max\u001b[0m \u001b[0;31m# min and max values\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0;32mprint\u001b[0m \u001b[0mmean\u001b[0m \u001b[0;31m# average\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[0;32mprint\u001b[0m \u001b[0mvar\u001b[0m \u001b[0;31m# variance\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mNameError\u001b[0m: name 'stats' is not defined" ] } ], - "prompt_number": 76 + "prompt_number": 169 }, { "cell_type": "markdown", @@ -537,6 +524,711 @@ " * Pick another question: What's the most hygenic food? Is one burough better than others? How are the scores distributed by letter? Do vegan restaurants score differently? What's the most common violation code?" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Where should I go to get burgers near NYU?" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# Remove duplicate records # should choose the most recent record\n", + "new_data = []\n", + "restaurant_id = []\n", + "for idx, record in enumerate(restaurant_data):\n", + " if record[0] not in restaurant_id:\n", + " restaurant_id.append(record[0])\n", + " new_data.append(record)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 47 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# Finding restaurants whose zip code 10003\n", + "for record in new_data:\n", + " if record[5] == 10003 and record[11] < 13:\n", + " print record[1], record[3], record[4], record[5]" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "MCDONALD'S 27 3 AVENUE 10003\n", + "WENDY'S 20 EAST 14 STREET 10003\n", + "MCDONALD'S 39 UNION SQUARE WEST 10003\n", + "BLUE 9 BURGER 92 3 AVENUE 10003\n", + "PAULS DA BURGER JOINT 131 2 AVENUE 10003\n", + "MARK 33 ST MARKS PLACE 10003\n", + "POPS 42 EAST 8 STREET 10003\n", + "BAREBURGER 85 2 AVENUE 10003\n", + "CLARKE'S STANDARD 870 BROADWAY 10003\n" + ] + } + ], + "prompt_number": 48 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## How do burger restaurant scores compare, overall, to Japanese restaurants? Why might this be?" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "japanese_data = mlab.csv2rec(\"data/japanese.txt\")\n", + "\n", + "# Remove duplicate records\n", + "new_japanese_data = []\n", + "restaurant_id = []\n", + "for idx, record in enumerate(japanese_data):\n", + " if record[0] not in restaurant_id:\n", + " restaurant_id.append(record[0])\n", + " new_japanese_data.append(record)\n", + "\n", + "j_scores = []\n", + "for restaurant in japanese_data:\n", + " j_scores.append(restaurant[11])" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 56 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "h_scores = []\n", + "for restaurant in new_data:\n", + " h_scores.append(restaurant[11])" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 67 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "numpy.median(h_scores)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 68, + "text": [ + "10.0" + ] + } + ], + "prompt_number": 68 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "numpy.median(j_scores)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 57, + "text": [ + "24.0" + ] + } + ], + "prompt_number": 57 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "min(h_scores)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 70, + "text": [ + "-1" + ] + } + ], + "prompt_number": 70 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "min(j_scores)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 58, + "text": [ + "-1" + ] + } + ], + "prompt_number": 58 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "max(h_scores)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 72, + "text": [ + "43" + ] + } + ], + "prompt_number": 72 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "max(j_scores)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 59, + "text": [ + "133" + ] + } + ], + "prompt_number": 59 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "n, bins, patches = pyplot.hist(h_scores)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "display_data", + "png": "iVBORw0KGgoAAAANSUhEUgAAAXgAAAEACAYAAAC57G0KAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAFABJREFUeJzt3X9M1Pfhx/HXB8H0u4mNreFgdy63QaLy4+BwdbSd5nSu\n3UxFiP8AgVE1+6PxD2ub2XyzLIW1UZpmYcXkmyXtHMRmdVvixCy6pNl6WqzJGVtnA6bKxOU4OCKu\nxqONBeT9/cNv71uq8vOOg7fPR2Iin7vPfd7vnn3y4fPjcIwxRgAA66SlegAAgOQg8ABgKQIPAJYi\n8ABgKQIPAJYi8ABgqQkDHw6HtWHDBhUUFCgQCKi1tVWS1NDQII/HI7/fL7/frxMnTsTXaWlpkc/n\nU2lpqTo6OpI6eADA/TkTXQcfjUYVjUZVUlKiwcFBFRYW6r333tOf/vQnZWZm6oUXXhj3/K6uLtXU\n1Ojs2bOKRCLatGmTLl26pLQ0flAAgLk2YXmzs7NVUlIiSVq+fLkee+wxRSIRSdK9vi+0t7erurpa\nGRkZ8nq9ysvLUygUSsKwAQCTmfKudXd3tzo7O/X4449Lkg4cOKD8/Hzt3LlTN27ckCT19fXJ4/HE\n1/F4PPFvCACAuTWlwA8NDamqqkrNzc365je/qeeee049PT06c+aMFi1apBdffPG+6zqOk7DBAgCm\nLn2yJ4yMjGjbtm2qra3V1q1bJUlZWVmSpIcffli7du1SbW2tJMntdiscDsfX7e3tldvtvus18/Ly\n9K9//SshEwCAB0Vubq66u7unvoKZwNjYmKmrqzN79uwZt7yvr88YY8zIyIjZu3evqa6uNsYY09nZ\naYqLi80XX3xhrly5Yr773e+asbGxu153ks0ueC+//HKqh5A0Ns/NGOa30Nk+v+m2c8I9+NOnT+vt\nt9+Wz+eT3++XJO3bt0/vvPOOzp8/r8WLF2v9+vVqbm6WJOXn52v79u1as2aN0tPT1drayiEaAEiR\nCQP/gx/8QGNjY3ct/8lPfnLfdXbv3q3du3fPfmQAgFnhAvUkCAQCqR5C0tg8N4n5LXS2z2+6JrzR\nKWkbdZx7XkcPALi/6baTPXgAsBSBBwBLEXgAsBSBBwBLEXgAsBSBBwBLEXgAsBSBBwBLEXgAsBSB\nBwBLEfgH3NKlj8hxnKT+Wbr0kVRPE3gg8Vk0D7g7H+ec7PeC9xtIBD6LBgAgicADgLUIPABYisAD\ngKUIPABYisADgKUIPABYisADgKUIPABYisADgKUIPABYisADgKUIPABYisADgKUIPABYisADgKUI\nPABYisADgKUIPABYisADgKUIPABYisADgKUmDHw4HNaGDRtUUFCgQCCg1tZWSVIsFlNFRYV8Pp8q\nKys1NDQUX6elpUU+n0+lpaXq6OhI6uABAPfnGGPM/R6MRqOKRqMqKSnR4OCgCgsL9d577+n3v/+9\nli9frr179+q1117Tp59+qqamJnV1dammpkZnz55VJBLRpk2bdOnSJaWljf8+4jiOJtgs5pDjOJKS\n/V7wfgOJMN12TrgHn52drZKSEknS8uXL9dhjjykSiejYsWOqr6+XJNXX1+vo0aOSpPb2dlVXVysj\nI0Ner1d5eXkKhUIznQsAYBamfAy+u7tbnZ2dKisr08DAgFwulyTJ5XJpYGBAktTX1yePxxNfx+Px\nKBKJJHjIAICpSJ/Kk4aGhlRVVaXm5mYtWbJk3GOO4/zfj/n3dr/HGhoa4n8PBAIKBAJTGQoAPDCC\nwaCCweCM15808CMjI9q2bZtqa2u1detWSXf22qPRqLKzs9Xf36+srCxJktvtVjgcjq/b29srt9t9\nz9f9auABAHf7+s5vY2PjtNaf8BCNMUY7d+5UQUGBnn/++fjy8vJytbW1SZLa2tpUUVERX3748GEN\nDw+rp6dHly9f1tq1a6c1IABAYkx4FU1HR4fWr18vn88XP9Syf/9+Pfnkk6qrq9OVK1eUm5urQ4cO\nxQ/dvPHGG3rrrbeUnp6ulpYWrVu37u6NchXNvMFVNMDCMd12Thj4ZCHw8weBBxaOhF4mCQBYuAg8\nAFiKwAOApQg8AFiKwAOApQg8AFiKwAOApQg8AFiKwAOApQg8AFiKwAOApQg8AFiKwAOApQg8AFiK\nwAOApQg8AFiKwAOApQg8AFiKwAOApQg8AFiKwAOApQg8AFiKwAOApQg8AFiKwAOApQg8AFiKwAOA\npQg8AFiKwAOApQg8AFiKwAOApQg8AFiKwAOApQg8AFiKwAOApSYN/I4dO+RyuVRUVBRf1tDQII/H\nI7/fL7/frxMnTsQfa2lpkc/nU2lpqTo6OpIzagDApBxjjJnoCe+//76WLFmin/70p/r4448lSY2N\njcrMzNQLL7ww7rldXV2qqanR2bNnFYlEtGnTJl26dElpaeO/jziOo0k2izniOI6kZL8XvN9AIky3\nnZPuwa9bt07Lli27a/m9NtLe3q7q6mplZGTI6/UqLy9PoVBoyoMBACTOjI/BHzhwQPn5+dq5c6du\n3LghSerr65PH44k/x+PxKBKJzH6UAIBpm1Hgn3vuOfX09OjMmTNatGiRXnzxxfs+984hAADAXEuf\nyUpZWVmSpIcffli7du1SbW2tJMntdiscDsef19vbK7fbfc/XaGhoiP89EAgoEAjMZCgAYK1gMKhg\nMDjj9Sc9ySpJV69e1ZYtW+InWfv7+5WTk6PR0VH94he/UDgc1h/+8If4SdZQKBQ/ydrd3X3XXjwn\nWecPTrICC8d02znpHnx1dbVOnjypwcFBrVixQo2NjQoGgzp//rwWL16s9evXq7m5WZKUn5+v7du3\na82aNUpPT1drayuHaAAgRaa0B5/wjbIHP2+wBw8sHAm/TBIAsDAReACwFIEHAEsReACwFIEHAEsR\neACwFIEHAEsReACwFIEHAEsReACwFIEHAEsReACwFIEHAEsReACwFIEHAEsReACwFIEHAEsReACw\nFIEHAEsReACwFIEHAEsReACwFIEHAEsReACwFIEHAEsReACwFIEHAEsReACwFIEHAEsReACwFIEH\nAEsReACwFIEHAEsReACwFIEHAEsReACw1KSB37Fjh1wul4qKiuLLYrGYKioq5PP5VFlZqaGhofhj\nLS0t8vl8Ki0tVUdHR3JGDQCY1KSB3759u/72t7+NW/bKK6/oiSee0IULF1RWVqZXX31VktTV1aWD\nBw/q3LlzOnLkiJ599lmNjY0lZ+QAgAlNGvh169Zp2bJl45YdO3ZM9fX1kqT6+nodPXpUktTe3q7q\n6mplZGTI6/UqLy9PoVAoCcMGAExmRsfgBwYG5HK5JEkul0sDAwOSpL6+Pnk8nvjzPB6PIpFIAoYJ\nAJiuWZ9kdRxHjuNM+DgAYO6lz2Qll8ulaDSq7Oxs9ff3KysrS5LkdrsVDofjz+vt7ZXb7b7nazQ0\nNMT/HggEFAgEZjIUALBWMBhUMBic8fqOMcZM9qSrV69qy5Yt+vjjjyVJe/fu1aOPPqqXXnpJTU1N\nunHjhpqamtTV1aWamhqFQiFFIhFt2rRJ3d3dd+3FO46jKWwWc+DOe5Ps94L3G0iE6bZz0j346upq\nnTx5UtevX9eKFSv0q1/9Sr/85S9VV1cnn8+n3NxcHTp0SJKUn5+v7du3a82aNUpPT1drayuHaAAg\nRaa0B5/wjbIHP2+wBw8sHNNtJ3eyAoClCDwAWIrAA4ClCDwAWIrAA4ClCDwAWIrAA4ClCDwAWIrA\nA4ClCDwAWIrAA4ClCDwAWIrAA4ClCDwAWIrAA4ClZvQr+zB3li59RLHYp6keBoAFiF/4Mc8l/xdy\n8As/gIWCX/gBAJBE4AHAWgQeACxF4AHAUgQeACxF4AHAUgQeACxF4AHAUtzJOkOhUEivv/4/Sub9\nO5mZ/5W8FwdgPQI/Q6dOndJf/hLV7dtVSdtGRsbupL02APsR+FlwnEJJzybt9dPT/1sjIzeT9voA\n7MYxeACwFIEHAEsReACwFIEHAEsReACwFIEHAEsReACwFIEHAEvN6kYnr9erpUuXatGiRcrIyFAo\nFFIsFlNdXZ2uXLmi3NxcHTp0SEuWLEnUeAEAUzSrPXjHcRQMBvXRRx8pFApJkl555RU98cQTunDh\ngsrKyvTqq68mZKAAgOmZ9SGar/+G72PHjqm+vl6SVF9fr6NHj852EwCAGZj1HvzGjRvl9/v15ptv\nSpIGBgbkcrkkSS6XSwMDA7MfJQBg2mZ1DP706dPKycnRxYsXtXnzZq1atWrc447jyHGce67b0NAQ\n/3sgEFAgEJjNUDCvpd/330EiZGYu082b/0na6wOpEgwGFQwGZ7z+rAKfk5MjSVq9erUqKysVCoXk\ncrkUjUaVnZ2t/v5+ZWVl3XPdrwYethuVlLwPzo/FkvfNA0ilr+/8NjY2Tmv9GR+i+fzzzxWLxSRJ\n165d0/Hjx1VUVKTy8nK1tbVJktra2lRRUTHTTQAAZmHGe/ADAwOqrKyUJD366KPas2ePnnrqKT3+\n+OOqq6uTz+eLXyYJAJh7Mw78d77zHZ0/f/6u5ZmZmVw5AwDzAHeyAoClCDwAWIrAA4ClCDwAWIrA\nA4ClCDwAWIrAA4ClCDwAWIrAA4ClCDwAWIrAA4ClCDwAWIrAA4ClCDwAWIrAA4ClCDwAWIrAA4Cl\nCDwAWIrAA4ClCDwAWIrAA4ClCDwAWIrAA4ClCDwAWIrAA4ClCDwAWIrAA4ClCDwAWIrAA4Cl0lM9\nAGD20uU4TlK3kJm5TDdv/iep2wASjcDDAqOSTFK3EIsl9xsIkAwcogEASxF4ALAUgQcAS3EMHpiS\nZJ/IzZA0ksTX50Txgygpe/CnTp1SaWmpfD6fDhw4kIxNAHPsyxO5yfozkuTXN4rFPk38fxbMawkP\n/O3bt7Vjxw4dOXJE586d0+9+9ztdvHgx0ZuZ54KpHkASBVM9gCQLpnoASXTnp5Bk/Vm69JFUT1DB\nYDDVQ5hXEh74UCikvLw8eb1eZWRkqKqqSu3t7YnezDwXTPUAkiiY6gEkWTDVA0iiUUkvy+afEAj8\neAkPfCQS0YoVK+JfezweRSKRRG8GADCJhJ9kTfYdhfNFWlqaFi06om9845O7Hrt16xM99NC5WW/j\ns884IYaFJPl3FE/lZHRjY+OstmDTyeiEB97tdiscDse/DofD8ng8456Tm5trzTeCL77ouefy4eHL\nCdxKsv9bTff1Z/I/0Hybw0TuN7+FNIf7adTM3r/5IrlXGklSLPbpvO1Tbm7utJ7vGGMSeo/36Oio\nVq5cqb///e/61re+pbVr1+qdd97R6tWrE7kZAMAkEr4Hn56eroMHD6qyslKjo6P62c9+RtwBIAUS\nvgcPAJgf5uyjCv785z+roKBAixYt0ocffjjusZaWFvl8PpWWlqqjo2OuhpRwtt3gtWPHDrlcLhUV\nFcWXxWIxVVRUyOfzqbKyUkNDQykc4eyEw2Ft2LBBBQUFCgQCam1tlWTHHG/duqXvf//7KikpUVlZ\nmZqbmyXZMbevun37tvx+v7Zs2SLJrvl5vV75fD75/X6tXbtW0gzmZ+bIxYsXzSeffGICgYA5d+5c\nfHlnZ6cpLi42w8PDpqenx+Tm5prbt2/P1bASZnR01OTm5pqenh4zPDxsiouLTVdXV6qHNSunTp0y\nH374oSksLIwv+/nPf25ee+01Y4wxTU1N5qWXXkrV8Gatv7/ffPTRR8YYY65du2ZcLpfp6uqyZo6f\nffaZMcaYW7dumYKCAnPp0iVr5valX//616ampsZs2bLFGGPXv0+v12uuX78+btl05zdngf/S1wO/\nb98+09TUFP/66aefNmfOnJnrYc3aBx98YJ5++un41/v37zf79+9P4YgSo6enZ1zgV65caaLRqDHm\nTiBXrlyZqqEl3DPPPGPeffdd6+Y4ODhoVq1aZf79739bNbdwOGx++MMfmn/84x/mmWeeMcbY9e/T\n6/WawcHBccumO7+Uf5pkX1/fuMsoF+qNUQ/KDV4DAwNyuVySJJfLpYGBgRSPKDG6u7vV2dmpsrIy\na+Y4Njam4uJiuVwu7dq1S9/+9retmZsk7dmzR6+//rrS0v4/YzbNz3Ecbdy4UX6/X2+++aak6c8v\noVfR/OhHP1I0Gr1r+b59++LHyKZivl6DOpGFOObZ+vIzSBa6oaEhVVVVqbm5WUuWLBn32EKeY1pa\nmv75z3/q6tWr2rx5s5588slxjy/kuf31r39VVlaW/H7/fT+eYCHPT5JOnz6tnJwcXbx4UZs3b9aq\nVavGPT6V+SU08O++++601/n6jVG9vb1yu92JHNacmMoNXjZwuVyKRqPKzs5Wf3+/srKyUj2kWRkZ\nGdG2bdtUW1urrVu3SrJvjl6vV5s3b9bJkyetmdsHH3ygY8eO6fjx47p165Zu3rypuro6a+YnSTk5\nOZKk1atXq7KyUqFQaNrzS8khGvOVKzPLy8t1+PBhDQ8Pq6enR5cvX46fMV5Ivve97+ny5cu6evWq\nhoeH9cc//lHl5eWpHlbClZeXq62tTZLU1tamioqKFI9o5owx2rlzpwoKCvT888/Hl9swx8HBQd24\ncUOSdP36dZ04cUJFRUVWzE26c1QgHA6rp6dHhw8f1saNG3Xo0CFr5vf5558rFotJkq5du6bjx4/P\n7P1L0vmBuxw5csR4PB7z0EMPGZfLZX784x/HH/vNb35jCgsLTUlJiTl16tRcDSnhgsGgKSkpMYWF\nheaNN95I9XBmraqqyuTk5JjFixcbj8djDh48aG7evGm2bt1qioqKTEVFhYnFYqke5oy9//77xnEc\nU1xcbEpKSkxJSYk5ceKEFXO8cOGC8fv9xufzmaeeesq89dZbxhhjxdy+LhgMxq+isWV+V65cMcXF\nxaa4uNhs3LjR/Pa3vzXGTH9+3OgEAJZK+VU0AIDkIPAAYCkCDwCWIvAAYCkCDwCWIvAAYCkCDwCW\nIvAAYKn/BQXRzLPjarlbAAAAAElFTkSuQmCC\n", + "text": [ + "" + ] + } + ], + "prompt_number": 73 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "n, bins, patches = pyplot.hist(j_scores)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "display_data", + "png": "iVBORw0KGgoAAAANSUhEUgAAAYIAAAEACAYAAAC+gnFaAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAHHhJREFUeJzt3X9sW9X9//HnrZL9hKANiM1sWCCRgNDeNsnmZEUbBrbR\nlTQ4YnzVMBLHHWgfhjToJNikUq1ZOwpCqCOZxB9V8wNPIhJT1QTWVgM2AyngVl1GpCZCAYIWO45F\nu1EcojY0Pd8/onpNfyVNUtvlvh5SpPT4nnve9yo+r+v7w7WMMQYREXGsRdkuQEREsktBICLicAoC\nERGHUxCIiDicgkBExOEUBCIiDjdjELz33nuUlZWlfy677DKam5tJpVIEAgFs26a2tpaxsbF0n+bm\nZmzbpry8nJ6ennT7wMAAlZWV2LbNunXrLswWiYjIebHO5zmC48eP4/F42Lt3Ly0tLVxxxRU89thj\nPPXUU/z3v//lySefpL+/n3vvvZd9+/YRj8f54Q9/yODgIJZl4fP5+NOf/oTP52PlypX86le/YsWK\nFRdy+0REZAbndWro1VdfpaSkhKuvvpru7m6CwSAAwWCQHTt2ANDV1UVdXR35+fkUFRVRUlJCNBol\nkUiQSqXw+XwANDQ0pPuIiEj2nFcQdHZ2UldXB0AymcTlcgHgcrlIJpMAjIyM4PV60328Xi/xePy0\ndo/HQzwen/cGiIjI/Mw6CCYmJnjppZe45557TnvNsiwsy1rQwkREJDPyZrvgrl27qKio4MorrwSm\nPgWMjo7idrtJJBIUFhYCU0f6w8PD6X6xWAyv14vH4yEWi01r93g8p41TUlLCBx98MOcNEhFxmuLi\nYt5///0595/1J4IXXnghfVoIoKamho6ODgA6OjoIBALp9s7OTiYmJhgaGmJwcBCfz4fb7aagoIBo\nNIoxhnA4nO5zsg8++ABjTE7//O53v8t6DapTdapO1XjiZ74Hz7P6RPDZZ5/x6quvsnXr1nTb+vXr\nqa+vx7ZtiouLCYfDAJSWlhIKhaioqCAvL4/29vb0aaO2tjZCoRDj4+NUV1frjiERkRwwqyD4+te/\nzsGDB6e1XXrppWe96+fhhx/m4YcfPq29tLSUaDQ6hzJFRORC0ZPFc+D3+zMyTkHBN9MX4ufy09TU\ndF7LFxR8MyPbdapM7c/5Up0L62Ko82KocSGc1wNlmWBZFjlWUtZMnVLL5L7Qvhe5GM133tQnAhER\nh1MQiIg4nIJARMThFAQiIg6nIBARcTgFgYiIwykIREQcTkEgIuJwCgIREYdTEIiIOJyCQETE4RQE\nIiIOpyAQEXE4BYGIiMMpCEREHE5BICLicAoCERGHUxCIiDicgkBExOEUBCIiDqcgEBFxuFkFwWef\nfUYwGKSsrIzS0lKi0SipVIpAIIBt29TW1jI2NpZevrm5Gdu2KS8vp6enJ90+MDBAZWUltm2zbt26\nhd8aERE5b7MKgl/+8pfccsst9Pb20tfXxw033MDGjRtZvnw5fX19VFVVsWnTJgD6+/tpbW1l//79\nbN++ncbGRowxAASDQVpaWujr66O3t5fdu3dfuC0TEZFZmTEIDh8+zJtvvsmaNWsAyMvL47LLLqO7\nu5tgMAhMTfA7duwAoKuri7q6OvLz8ykqKqKkpIRoNEoikSCVSuHz+QBoaGhI9xERkeyZMQiGhoa4\n8soraWxsZPHixTzwwAOMj4+TTCZxuVwAuFwukskkACMjI3i93nR/r9dLPB4/rd3j8RCPxxd6e0RE\n5DzlzbTAsWPH2LdvH48//jjPPfccv/jFL3jxxRenLWNZFpZlLVhRGzZsSP/u9/vx+/0Ltm4RkYtd\nJBIhEoks2PpmDAKv18vll1/OqlWrAKirq+P555/H7XYzOjqK2+0mkUhQWFgITB3pDw8Pp/vHYjG8\nXi8ej4dYLDat3ePxnHHMk4NARESmO/UAuampaV7rm/HUkNvtTp/nP378OH/961+5/fbbWbVqFR0d\nHQB0dHQQCAQAqKmpobOzk4mJCYaGhhgcHMTn8+F2uykoKCAajWKMIRwOp/uIiEj2zPiJAKYm+oaG\nBg4ePMiSJUt46qmnOH78OPX19di2TXFxMeFwGIDS0lJCoRAVFRXk5eXR3t6ePm3U1tZGKBRifHyc\n6upqVqxYceG2TEREZsUyJ+7tzBGWZZFjJWXNVIBmcl9o34tcjOY7b+rJYhERh1MQiIg4nIJARMTh\nFAQiIg6nIBARcTgFgYiIwykIREQcTkEgIuJwCgIREYdTEIiIOJyCQETE4RQEIiIOpyAQEXE4BYGI\niMMpCEREHE5BICLicAoCERGHUxCIiDicgkBExOEUBCIiDqcgEBFxOAWBiIjDKQhERBxuVkFQVFSE\nbduUlZXh8/kASKVSBAIBbNumtraWsbGx9PLNzc3Ytk15eTk9PT3p9oGBASorK7Ftm3Xr1i3wpoiI\nyFzMKggsyyISidDb28vevXsB2LhxI8uXL6evr4+qqio2bdoEQH9/P62trezfv5/t27fT2NiIMQaA\nYDBIS0sLfX199Pb2snv37gu0WSIiMluzPjV0YjI/obu7m2AwCExN8Dt27ACgq6uLuro68vPzKSoq\noqSkhGg0SiKRIJVKpT9RNDQ0pPuIiEj2zPoTwW233UZZWRlbt24FIJlM4nK5AHC5XCSTSQBGRkbw\ner3pvl6vl3g8flq7x+MhHo8v2IaIiMjc5M1moT179nDVVVcxMDDAypUrueGGG6a9blkWlmUtWFEb\nNmxI/+73+/H7/Qu2bhGRi10kEiESiSzY+mYVBFdddRUAN954I7W1tezduxeXy8Xo6Chut5tEIkFh\nYSEwdaQ/PDyc7huLxfB6vXg8HmKx2LR2j8dzxvFODgIREZnu1APkpqamea1vxlND4+PjpFIpAD7+\n+GN27tzJkiVLqKmpoaOjA4COjg4CgQAANTU1dHZ2MjExwdDQEIODg/h8PtxuNwUFBUSjUYwxhMPh\ndB8REcmeGT8RJJNJamtrAbj88stZu3YtP/7xj/ne975HfX09tm1TXFxMOBwGoLS0lFAoREVFBXl5\nebS3t6dPG7W1tREKhRgfH6e6upoVK1ZcwE0TEZHZsMyptwNlmWVZp92h5FRTAZrJfaF9L3Ixmu+8\nqSeLRUQcTkEgIuJwCgIREYdTEIiIOJyCQETE4RQEIiIOpyAQEXE4BYGIiMMpCEREHE5BICLicLP6\n9lGBRCLB//3frzl6dDLbpYiILCgFwSx9+OGHvPrqPxkf35ihEYeAFzM0log4mYLgPOTnXwH8vwyN\n1gv8NkNjiYiT6RqBiIjDKQhERBxOQSAi4nAKAhERh1MQiIg4nIJARMThFAQiIg6nIJCsKSj4JpZl\nZeynoOCb2d5kkZykB8oka1Kp/wImg+NZGRtL5GKiIJCT5GFZmixFnGZWp4YmJycpKytj1apVAKRS\nKQKBALZtU1tby9jYWHrZ5uZmbNumvLycnp6edPvAwACVlZXYts26desWeDNkYRxj6gg9Uz8ikgtm\nFQTPPvsspaWl6aPFjRs3snz5cvr6+qiqqmLTpk0A9Pf309rayv79+9m+fTuNjY0YM/WGDwaDtLS0\n0NfXR29vL7t3775AmyQiIudjxiCIxWLs3LmT+++/Pz2pd3d3EwwGgakJfseOHQB0dXVRV1dHfn4+\nRUVFlJSUEI1GSSQSpFIpfD4fAA0NDek+IiKSXTMGwdq1a3n66adZtOh/iyaTSVwuFwAul4tkMgnA\nyMgIXq83vZzX6yUej5/W7vF4iMfjC7YRIiIyd+e8WPzyyy9TWFhIWVkZkUjkjMucuDVvIW3YsCH9\nu9/vx+/3L+j6RUQuZpFI5Kxz8lycMwjeeusturu72blzJ0eOHOHTTz+lvr4el8vF6OgobrebRCJB\nYWEhMHWkPzw8nO4fi8Xwer14PB5isdi0do/Hc9ZxTw4CERGZ7tQD5Kampnmt75ynhp544gmGh4cZ\nGhqis7OT2267jXA4TE1NDR0dHQB0dHQQCAQAqKmpobOzk4mJCYaGhhgcHMTn8+F2uykoKCAajWKM\nIRwOp/uIiEh2nddzBCdOAa1fv576+nps26a4uJhwOAxAaWkpoVCIiooK8vLyaG9vT/dpa2sjFAox\nPj5OdXU1K1asWOBNERGRubDMiVuBcoRlWeRYSQDs2bOHO+98jMOH92RoxF6gnMzeb2994cfLxb8t\nkfma77yp7xoSEXE4BYGIiMMpCEREHE5BICLicAoCERGHUxCIiDicgkBExOEUBCIiDqcgEBFxOAWB\niIjDKQhERBxOQSAi4nAKAhERh1MQiIg4nIJARMThFAQiIg6nIBARcTgFgYiIwykIREQcTkEgIuJw\nCgIREYdTEIiIOJyCQETE4c4ZBEeOHKGyspJly5ZRVVXFli1bAEilUgQCAWzbpra2lrGxsXSf5uZm\nbNumvLycnp6edPvAwACVlZXYts26desu0OaIiMj5OmcQfOUrX+Ef//gH//rXv3j99dfZtm0bg4OD\nbNy4keXLl9PX10dVVRWbNm0CoL+/n9bWVvbv38/27dtpbGzEGANAMBikpaWFvr4+ent72b1794Xf\nOhERmdGMp4a+9rWvATA2Nsbk5CRf/vKX6e7uJhgMAlMT/I4dOwDo6uqirq6O/Px8ioqKKCkpIRqN\nkkgkSKVS+Hw+ABoaGtJ9REQku2YMguPHj7N06VJcLhcPPfQQ11xzDclkEpfLBYDL5SKZTAIwMjKC\n1+tN9/V6vcTj8dPaPR4P8Xh8obdFRETmIG+mBRYtWsS7777LRx99xMqVK7n55punvW5ZFpZlLWhR\nGzZsSP/u9/vx+/0Lun4RkYtZJBIhEoks2PpmDIITioqKWLlyJa+//joul4vR0VHcbjeJRILCwkJg\n6kh/eHg43ScWi+H1evF4PMRisWntHo/nrGOdHAQiIjLdqQfITU1N81rfOU8NHTx4kE8++QSAQ4cO\nsWvXLpYsWUJNTQ0dHR0AdHR0EAgEAKipqaGzs5OJiQmGhoYYHBzE5/PhdrspKCggGo1ijCEcDqf7\niIhIdp3zE0EikSAYDDI5OYnb7ebXv/41t99+Oz6fj/r6emzbpri4mHA4DEBpaSmhUIiKigry8vJo\nb29PnzZqa2sjFAoxPj5OdXU1K1asuPBbJyIiM7LMifs7c4RlWeRYSQDs2bOHO+98jMOH92RoxF6g\nHMjkvrC+8OPl4t+WyHzNd97Uk8UiIg6nIBARcTgFgYiIwykIREQcTkEgIuJwCgIREYdTEIiIOJyC\nQETE4RQEIiIOpyAQEXE4BYGIiMMpCEREHE5BICLicAoCERGHUxCIiDicgkBExOEUBCIiDqcgEBFx\nOAWBiIjDKQhERBxOQSAi4nAKAhERh1MQiIg43IxBMDw8zK233spNN92E3++nvb0dgFQqRSAQwLZt\namtrGRsbS/dpbm7Gtm3Ky8vp6elJtw8MDFBZWYlt26xbt27ht0ZERM7bjEGQn5/Pli1bOHDgAH/5\ny1/47W9/y8DAABs3bmT58uX09fVRVVXFpk2bAOjv76e1tZX9+/ezfft2GhsbMcYAEAwGaWlpoa+v\nj97eXnbv3n1ht05ERGY0YxC43W6WLVsGwBVXXMF3v/td4vE43d3dBINBYGqC37FjBwBdXV3U1dWR\nn59PUVERJSUlRKNREokEqVQKn88HQENDQ7qPiIhkz3ldI3j//fc5cOAAVVVVJJNJXC4XAC6Xi2Qy\nCcDIyAherzfdx+v1Eo/HT2v3eDzE4/GF2AYREZmHvNkuODY2xurVq9myZQuXXHLJtNcsy8KyrAUr\nasOGDenf/X4/fr9/wdYtInKxi0QiRCKRBVvfrILg888/5+677+a+++7jrrvuAqY+BYyOjuJ2u0kk\nEhQWFgJTR/rDw8PpvrFYDK/Xi8fjIRaLTWv3eDxnHO/kIBARkelOPUBuamqa1/pmPDVkjOHnP/85\nN910E4888ki6vaamho6ODgA6OjoIBALp9s7OTiYmJhgaGmJwcBCfz4fb7aagoIBoNIoxhnA4nO4j\nIiLZM+Mngj179vDnP/8Z27YpKysDYPPmzaxfv576+nps26a4uJhwOAxAaWkpoVCIiooK8vLyaG9v\nT582amtrIxQKMT4+TnV1NStWrLiAmyYiIrNhmRP3duYIy7LIsZKAqUC8887HOHx4T4ZG7AXKgUzu\nC+sLP14u/m2JzNd85009WSwi4nAKAhERh1MQiIg4nIJARMThFAQiIg6nIBARcTgFgYiIwykIREQc\nTkEgIuJwCgIREYdTEIiIOJyCQETE4RQEIiIOpyAQEXE4BYGIiMMpCEREHE5BICLicAoCERGHUxCI\niDicgkBExOEUBCIiDqcgEBFxOAWBiIjDzRgEa9asweVysWTJknRbKpUiEAhg2za1tbWMjY2lX2tu\nbsa2bcrLy+np6Um3DwwMUFlZiW3brFu3boE3Q0RE5mrGIAiFQuzevXta28aNG1m+fDl9fX1UVVWx\nadMmAPr7+2ltbWX//v1s376dxsZGjDEABINBWlpa6Ovro7e397R1iohIdswYBN///vf5xje+Ma2t\nu7ubYDAITE3wO3bsAKCrq4u6ujry8/MpKiqipKSEaDRKIpEglUrh8/kAaGhoSPcREZHsmtM1gmQy\nicvlAsDlcpFMJgEYGRnB6/Wml/N6vcTj8dPaPR4P8Xh8PnWLiMgCyZvvCizLwrKshaglbcOGDenf\n/X4/fr9/QdcvInIxi0QiRCKRBVvfnILA5XIxOjqK2+0mkUhQWFgITB3pDw8Pp5eLxWJ4vV48Hg+x\nWGxau8fjOev6Tw4CERGZ7tQD5Kampnmtb06nhmpqaujo6ACgo6ODQCCQbu/s7GRiYoKhoSEGBwfx\n+Xy43W4KCgqIRqMYYwiHw+k+IiKSXTN+Iqirq+P111/n0KFDXH311fz+979n/fr11NfXY9s2xcXF\nhMNhAEpLSwmFQlRUVJCXl0d7e3v6tFFbWxuhUIjx8XGqq6tZsWLFhd0yERGZFcucuL8zR1iWRY6V\nBMCePXu4887HOHx4T4ZG7AXKgUzuC+sLPl4+cCxjo1166Tf49NP/ZGw8ca75zpvzvlgscvE4RiaD\nJ5Va2JsoRC4UfcWEiIjDKQhERBxOQSAi4nAKAhERh1MQiIg4nIJARMThFAQiIg6nIBARcTgFgYiI\nwykIREQcTkEgIuJwCgIREYdTEIiIOJy+fVTkgslb8P/GdSb66muZCwWByAWT2a+9Bn31tcyNTg2J\niDicgkBExOEUBCIiDqcgEBFxOAWBiIjDKQhERBwu40HwxhtvUF5ejm3btLS0ZHp4ERE5RUaDYHJy\nkjVr1rB9+3b279/Ptm3bGBgYyGQJCySS7QJmKZLtAmYpku0CZimS7QJmJRKJZLuEWbkY6rwYalwI\nGQ2CvXv3UlJSQlFREfn5+axevZqurq5MlrBAItkuYJYi2S5gliLZLmCWItkuYFYulsnrYqjzYqhx\nIWQ0COLxOFdffXX6316vl3g8nskSRL7g8mhqasKyrAz9fGnOfedSZ0HBN7O9g7+QMvoVE5n+3pWF\ntGjRIo4c6aegYBVHjrzHV76y/4KOd/z4YcbGLugQ8oV0DPgdsCFD41nM/Ws0NnC+daZS+RmeRxbR\n1NSUsdGy9V1RGQ0Cj8fD8PBw+t/Dw8N4vd5pyxQXF+d0YBw9+jIAExODGRpxvvvifP+IM73vT4yX\nqTfbF31/wlSNmZu85reNmaxzLo5ndLRU6r9zmv+Ki4vnNa5ljMnYt2IdO3aM66+/ntdee41vfetb\n+Hw+XnjhBW688cZMlSAiIqfI6CeCvLw8Wltbqa2t5dixYzzwwAMKARGRLMvoJwIREck9OfFk8aOP\nPsqNN95IeXk5jzzyCIcPH06/1tzcjG3blJeX09PTk8Uqp+TqA3HDw8Pceuut3HTTTfj9ftrb2wFI\npVIEAgFs26a2tpaxHLgCPTk5SVlZGatWrQJys8bPPvuMYDBIWVkZpaWlRKPRnKxz69atLF++nIqK\nCh555BEgN/bnmjVrcLlcLFmyJN12rrqy9T4/U525OB+dqc4TnnnmGRYtWsR//vO/i8znXafJAX/7\n29/M5OSkmZycNPfff7/5zW9+Y4wx5sCBA2bp0qVmYmLCDA0NmeLiYjM5OZm1Oo8dO2aKi4vN0NCQ\nmZiYMEuXLjX9/f1Zq+dkiUTC9Pb2GmOM+fjjj43L5TL9/f3m0UcfNU899ZQxxpgnn3wyvW+z6Zln\nnjH33nuvWbVqlTHG5GSNDQ0NZtu2bcYYYz7//HPzySef5Fydhw4dMkVFRWZsbMxMTk6an/zkJ2b3\n7t05Uecbb7xh/vnPf5rFixen285WVzbf52eqMxfnozPVaYwx//73v80dd9xhioqKzKFDh+ZcZ04E\nwclefPFF87Of/cwYY8wTTzxhnnzyyfRrd9xxh3n77bezVZp56623zB133JH+9+bNm83mzZuzVs+5\nVFdXm1deecVcf/31ZnR01BgzFRbXX399VusaHh42t99+u/n73/9uqqurjTEm52r85JNPzLXXXnta\ne67VOT4+br797W+beDxuxsbGzC233GLeeeednKlzaGho2sR1trqy/T4/tc6T5dJ8dKY6f/rTn5p3\n3313WhDMpc6cODV0sq1bt3LXXXcBMDIyMu320mw/gHaxPBD3/vvvc+DAAaqqqkgmk7hcLgBcLhfJ\nZDKrta1du5ann36aRYv+96eXazUODQ1x5ZVX0tjYyOLFi3nggQcYHx/PuTq/+tWv8txzz1FUVITb\n7ebmm2+msrIy5+o84Wx15dr7/GS5PB91dXXh9XqxbXta+1zqzFgQ/OhHP2LJkiWn/bz00kvpZf7w\nhz9w6aWXcs8995x1Pdl8xiCXn284YWxsjNWrV7NlyxYuueSSaa+deDozW15++WUKCwspKyvDnOUe\nhWzXCFO3Oe/bt4+7776bffv2cfToUV588cVpy+RCnR9//DEPPvgg/f39fPTRR7z99tu8/PLL05bJ\nhTrPZKa6cqHmXJ6PxsfHeeKJJ6Y97Ha29xTMXGfGbh995ZVXzvl6e3s7O3fu5LXXXku3nfoAWiwW\nw+PxXLAaZzKbB+Ky6fPPP+fuu+/mvvvuSx/FuFwuRkdHcbvdJBIJCgsLs1bfW2+9RXd3Nzt37uTI\nkSN8+umn1NfX51SNMHUEdfnll6cvZtfV1fH888/jdrtzqs69e/dSVVVFSUkJAPfccw9vvvlmzu3P\nE85WV669zyH356MPPviAjz76iKVLl6ZrqaioIBqNzq3OhT6PNRe7du0ypaWl5uDBg9PaT1z0OHr0\nqPnwww/NddddZ44fP56lKqcuGl533XVmaGjIHD16NKcuFh8/ftzU19ebtWvXTmt/9NFH0+cLN2/e\nnPULnCdEIpH0NYJcrLGqqsq88847ZnJy0jz00ENm69atOVfn4cOHTXFxsTl06JA5cuSIWbVqlXn1\n1Vdzps5Tz2mfra5sv89PrTNX56NzXcs408Xi86kzJ4KgpKTEXHPNNWbZsmVm2bJl5sEHH0y/9sc/\n/tEsXrzYLFu2zLzxxhtZrHJKJBIxy5YtM4sXLzbPPvtststJe/PNN41lWWbp0qXp/bhr1y7z6aef\nmrvuusssWbLEBAIBk0qlsl2qMWZqP564aygXa3zvvfdMZWWlKS4uNoFAwIyNjeVknW1tbeYHP/iB\n+c53vmMef/xxMzk5mRN1rl692lx11VXmS1/6kvF6vaa1tfWcdWXrfX6izvz8fOP1es22bdtycj46\n0/482bXXXpsOgrnUqQfKREQcLufuGhIRkcxSEIiIOJyCQETE4RQEIiIOpyAQEXE4BYGIiMMpCERE\nHE5BICLicP8fLcmYa9Us5m8AAAAASUVORK5CYII=\n", + "text": [ + "" + ] + } + ], + "prompt_number": 60 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "numpy.std(h_scores)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 74, + "text": [ + "5.5981260497960399" + ] + } + ], + "prompt_number": 74 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "numpy.std(j_scores)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 75, + "text": [ + "17.90266902461412" + ] + } + ], + "prompt_number": 75 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Burgur restaurants' inspection result is much better than Japanese restaurants'. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Are there any cuisines for which the variance of scores is very high? Why do you think that might be the case?" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "all_data = mlab.csv2rec(\"data/original data/WebExtract.txt\")" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 77 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# Remove duplicate records\n", + "new_all_data = []\n", + "restaurant_id = []\n", + "for idx, record in enumerate(all_data):\n", + " if record[0] not in restaurant_id:\n", + " restaurant_id.append(record[0])\n", + " new_all_data.append(record)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 79 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "cuisine_codes = []\n", + "\n", + "for record in new_all_data:\n", + " if record[7] not in cuisine_codes:\n", + " cuisine_codes.append(record[7])\n", + "\n", + "cuisine_codes.sort()\n", + "print cuisine_codes" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "[-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 80, 81, 82, 83, 84, 99]\n" + ] + } + ], + "prompt_number": 83 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "cuisines_list = []\n", + "for code in cuisine_codes:\n", + " if code >= 0:\n", + " cuisines = []\n", + " for record in new_all_data:\n", + " if record[7] == code:\n", + " cuisines.append(record)\n", + " cuisines_list.append([code, cuisines])\n", + " #cuisines_list.append(cuisines)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 109 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "var_list = []\n", + "for codepair in cuisines_list:\n", + " cuisines = codepair[1]\n", + "\n", + " score = []\n", + " for record in cuisines:\n", + " scores.append(record[11])\n", + "\n", + " var_list.append((codepair[0], numpy.std(scores))) " + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 131 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "max_std = 0\n", + "code = -1\n", + "for pair in var_list:\n", + " if(pair[1] > max_std):\n", + " max_std = pair[1]\n", + " code = pair[0]\n", + "print code" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "2\n" + ] + } + ], + "prompt_number": 143 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "African food has the highest variance." + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [], + "language": "python", + "metadata": {}, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## What's the most common violation code?" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "violation_data = mlab.csv2rec(\"data/original data/Violation.txt\")" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 145 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "violation_codes = []\n", + "for record in violation_data:\n", + " if record[3] not in violation_codes:\n", + " violation_codes.append(record[3])\n", + "print violation_codes" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "['01A', '01B', '01C', '01D', '01E', '01F', '01G', '01H', '01I', '02A', '02B', '02C', '02D', '02E', '02F', '02G', '02H', '02I', '02J', '03A', '03B', '03C', '03D', '03E', '03F', '03G', '03H', '04A', '04B', '04C', '04D', '04E', '04F', '04G', '04H', '04I', '04J', '04K', '04L', '04M', '04N', '04O', '04P', '04Q', '05A', '05B', '05C', '05D', '05E', '05F', '05G', '05H', '05I', '05J', '06A', '06B', '06C', '06D', '06E', '06F', '06G', '06H', '06I', '07A', '07B', '07C', '07D', '07E', '07F', '07G', '07H', '07I', '08A', '08B', '08C', '08D', '08E', '08F', '08G', '08H', '08I', '08J', '08K', '08L', '08M', '09A', '09B', '09C', '09D', '09E', '09F', '09G', '09H', '10A', '10B', '10C', '10D', '10E', '10F', '10G', '10H', '10I', '10J', '10K', '10L', '10M', '11A', '11B', '11C', '11D', '12A', '12B', '12C', '12D', '12E', '12F', '12G', '12H', '13A', '13B', '13C', '13D', '13E', '14A', '14B', '14C', '14D', '14E', '15A', '15B', '15C', '15D', '15E', '15F', '15G', '15H', '15I', '15J', '15K', '15L', '15M', '15N', '15O', '15P', '15Q', '15R', '15S', '15T', '16A', '16B', '16C', '16D', '16E', '16F', '18A', '18B', '18C', '18D', '18E', '18F', '18G', '18H', '18I', '20A', '20B', '20C', '20D', '20E', '20F', '22A', '22B', '22C', '22E', '99B']\n" + ] + } + ], + "prompt_number": 146 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "count_list = []\n", + "for code in violation_codes:\n", + " count = 0\n", + " for record in violation_data:\n", + " if code == record[3]:\n", + " count = count + 1\n", + " count_list.append([code, count])\n", + "print count_list" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "[['01A', 5], ['01B', 5], ['01C', 5], ['01D', 5], ['01E', 5], ['01F', 5], ['01G', 1], ['01H', 1], ['01I', 1], ['02A', 7], ['02B', 7], ['02C', 7], ['02D', 7], ['02E', 7], ['02F', 7], ['02G', 6], ['02H', 6], ['02I', 6], ['02J', 2], ['03A', 7], ['03B', 7], ['03C', 7], ['03D', 6], ['03E', 6], ['03F', 6], ['03G', 6], ['03H', 1], ['04A', 7], ['04B', 7], ['04C', 7], ['04D', 7], ['04E', 7], ['04F', 7], ['04G', 7], ['04H', 6], ['04I', 6], ['04J', 6], ['04K', 6], ['04L', 6], ['04M', 6], ['04N', 6], ['04O', 6], ['04P', 5], ['04Q', 1], ['05A', 7], ['05B', 7], ['05C', 7], ['05D', 6], ['05E', 6], ['05F', 6], ['05G', 6], ['05H', 6], ['05I', 6], ['05J', 4], ['06A', 7], ['06B', 7], ['06C', 7], ['06D', 7], ['06E', 7], ['06F', 7], ['06G', 4], ['06H', 3], ['06I', 2], ['07A', 7], ['07B', 6], ['07C', 6], ['07D', 5], ['07E', 5], ['07F', 5], ['07G', 1], ['07H', 1], ['07I', 1], ['08A', 7], ['08B', 7], ['08C', 7], ['08D', 1], ['08E', 1], ['08F', 1], ['08G', 1], ['08H', 1], ['08I', 1], ['08J', 1], ['08K', 1], ['08L', 1], ['08M', 1], ['09A', 7], ['09B', 7], ['09C', 7], ['09D', 6], ['09E', 2], ['09F', 2], ['09G', 2], ['09H', 2], ['10A', 6], ['10B', 6], ['10C', 6], ['10D', 6], ['10E', 5], ['10F', 5], ['10G', 5], ['10H', 5], ['10I', 5], ['10J', 5], ['10K', 4], ['10L', 4], ['10M', 1], ['11A', 4], ['11B', 4], ['11C', 4], ['11D', 3], ['12A', 5], ['12B', 1], ['12C', 1], ['12D', 1], ['12E', 1], ['12F', 1], ['12G', 1], ['12H', 1], ['13A', 1], ['13B', 1], ['13C', 1], ['13D', 1], ['13E', 1], ['14A', 1], ['14B', 1], ['14C', 1], ['14D', 1], ['14E', 1], ['15A', 7], ['15B', 7], ['15C', 7], ['15D', 7], ['15E', 7], ['15F', 7], ['15G', 7], ['15H', 7], ['15I', 7], ['15J', 7], ['15K', 7], ['15L', 7], ['15M', 7], ['15N', 7], ['15O', 4], ['15P', 1], ['15Q', 1], ['15R', 1], ['15S', 1], ['15T', 1], ['16A', 4], ['16B', 4], ['16C', 4], ['16D', 4], ['16E', 4], ['16F', 4], ['18A', 2], ['18B', 2], ['18C', 2], ['18D', 2], ['18E', 2], ['18F', 2], ['18G', 2], ['18H', 2], ['18I', 1], ['20A', 1], ['20B', 1], ['20C', 1], ['20D', 1], ['20E', 1], ['20F', 1], ['22A', 1], ['22B', 1], ['22C', 1], ['22E', 1], ['99B', 2]]\n" + ] + } + ], + "prompt_number": 150 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "max_count = 0\n", + "for pair in count_list:\n", + " if(pair[1] > max_count):\n", + " max_count = pair[1]\n", + "print max_count" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "7\n" + ] + } + ], + "prompt_number": 151 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "for pair in count_list:\n", + " if pair[1] == max_count:\n", + " print pair[0]" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "02A\n", + "02B\n", + "02C\n", + "02D\n", + "02E\n", + "02F\n", + "03A\n", + "03B\n", + "03C\n", + "04A\n", + "04B\n", + "04C\n", + "04D\n", + "04E\n", + "04F\n", + "04G\n", + "05A\n", + "05B\n", + "05C\n", + "06A\n", + "06B\n", + "06C\n", + "06D\n", + "06E\n", + "06F\n", + "07A\n", + "08A\n", + "08B\n", + "08C\n", + "09A\n", + "09B\n", + "09C\n", + "15A\n", + "15B\n", + "15C\n", + "15D\n", + "15E\n", + "15F\n", + "15G\n", + "15H\n", + "15I\n", + "15J\n", + "15K\n", + "15L\n", + "15M\n", + "15N\n" + ] + } + ], + "prompt_number": 152 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Doesn't seem to be right data. Try the original data." + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "new_violation_codes = []\n", + "for record in all_data:\n", + " if record[10] not in new_violation_codes:\n", + " new_violation_codes.append(record[10])\n", + "print new_violation_codes" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "['10B', '06C', '06D', '10F', '04L', '02G', '08A', '04K', '04H', '02H', '', '09A', '09C', '06A', '05D', '04N', '06F', '02B', '04M', '06E', '10J', '04C', '10I', '02A', '06B', '10E', '09B', '08B', '10D', '10A', '04A', '08C', '04O', '02C', '10C', '10H', '05H', '04J', '03C', '03B', '04I', '04G', '05E', '03A', '02D', '04E', '04D', '03G', '05B', '02E', '06I', '05C', '05F', '10G', '07A', '04F', '99B', '03D', '02I', '04B', '06G', '03E', '05A', '15K', '22A', '16B', '22C', '04P', '15L', '16A', '20D', '15J', '20A', '18I', '16C', '18G', '18A', '09D', '10K', '20F', '05I', '10L', '15I', '18F', '10M', '20E', '22B', '05G', '15T', '07D', '15S', '20C', '16E', '18B', '16F', '16D', '18D', '18C', '22E', '15E', '07E', '02F', '12A', '05J', '18E', '20B', '06H', '07F']\n" + ] + } + ], + "prompt_number": 154 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "new_count_list = []\n", + "for code in new_violation_codes:\n", + " count = 0\n", + " for record in all_data:\n", + " if code == record[10]:\n", + " count = count + 1\n", + " new_count_list.append([code, count])\n", + "print new_count_list" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "[['10B', 34649], ['06C', 26953], ['06D', 29984], ['10F', 62270], ['04L', 40271], ['02G', 47297], ['08A', 53318], ['04K', 3661], ['04H', 16959], ['02H', 2341], ['', 9163], ['09A', 3160], ['09C', 7900], ['06A', 9631], ['05D', 6980], ['04N', 21486], ['06F', 9983], ['02B', 24664], ['04M', 16600], ['06E', 15292], ['10J', 1946], ['04C', 4726], ['10I', 3606], ['02A', 512], ['06B', 3123], ['10E', 3808], ['09B', 4272], ['08B', 2389], ['10D', 4425], ['10A', 5902], ['04A', 9819], ['08C', 7185], ['04O', 943], ['02C', 564], ['10C', 1024], ['10H', 8850], ['05H', 927], ['04J', 6539], ['03C', 614], ['03B', 380], ['04I', 583], ['04G', 16], ['05E', 178], ['03A', 636], ['02D', 47], ['04E', 351], ['04D', 431], ['03G', 22], ['05B', 64], ['02E', 27], ['06I', 23], ['05C', 53], ['05F', 903], ['10G', 2225], ['07A', 196], ['04F', 82], ['99B', 5849], ['03D', 128], ['02I', 38], ['04B', 37], ['06G', 92], ['03E', 30], ['05A', 116], ['15K', 382], ['22A', 448], ['16B', 6782], ['22C', 1793], ['04P', 21], ['15L', 2167], ['16A', 1207], ['20D', 551], ['15J', 476], ['20A', 511], ['18I', 199], ['16C', 196], ['18G', 193], ['18A', 479], ['09D', 299], ['10K', 342], ['20F', 178], ['05I', 65], ['10L', 81], ['15I', 409], ['18F', 191], ['10M', 97], ['20E', 39], ['22B', 146], ['05G', 33], ['15T', 85], ['07D', 29], ['15S', 284], ['20C', 4], ['16E', 27], ['18B', 9], ['16F', 9], ['16D', 10], ['18D', 16], ['18C', 3], ['22E', 8], ['15E', 12], ['07E', 7], ['02F', 5], ['12A', 2], ['05J', 6], ['18E', 1], ['20B', 7], ['06H', 9], ['07F', 2]]\n" + ] + } + ], + "prompt_number": 155 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "max_count = 0\n", + "for pair in new_count_list:\n", + " if(pair[1] > max_count):\n", + " max_count = pair[1]\n", + "print max_count\n", + "\n", + "for pair in new_count_list:\n", + " if pair[1] == max_count:\n", + " print pair[0]" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "62270\n", + "10F\n" + ] + } + ], + "prompt_number": 157 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "for record in violation_data:\n", + " if record[3] == '10F':\n", + " print record[4]\n", + " break" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "Equipment not easily movable or sealed to floor, adjoining equipment, adjacent walls or ceiling. Aisle or workspace inadequate.\n" + ] + } + ], + "prompt_number": 162 + }, { "cell_type": "code", "collapsed": false, diff --git a/Lesson1_restaurants/data/japanese.txt b/Lesson1_restaurants/data/japanese.txt new file mode 100644 index 0000000..980255f --- /dev/null +++ b/Lesson1_restaurants/data/japanese.txt @@ -0,0 +1,21266 @@ +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2013-06-13 00:00:00","B","","0","A","2013-06-13 00:00:00","2013-09-13 01:01:13.757000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2013-08-15 00:00:00","D","02G","13","A","2013-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2013-04-16 00:00:00","D","06D","11","A","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2013-04-16 00:00:00","D","10H","11","A","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2013-08-01 00:00:00","U","02G","12","A","2013-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2013-03-07 00:00:00","D","10D","7","A","2013-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2013-03-07 00:00:00","D","10E","7","A","2013-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2013-02-27 00:00:00","D","08A","11","A","2013-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2013-08-01 00:00:00","U","04L","12","A","2013-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2013-07-02 00:00:00","U","06C","19","B","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2013-07-02 00:00:00","U","10F","19","B","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"40379746","RESTUARANT NIPPON","1","155 ","EAST 52 STREET ","10022","2126885941","49","2013-05-29 00:00:00","U","02G","7","A","2013-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"40372560","KODAMA SUSHI","1","301","WEST 45 STREET","10036","2125828065","49","2013-04-02 00:00:00","D","02B","11","A","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2013-07-31 00:00:00","F","04J","62","Z","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"40372560","KODAMA SUSHI","1","301","WEST 45 STREET","10036","2125828065","49","2013-04-02 00:00:00","D","10B","11","A","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2013-07-02 00:00:00","U","04L","19","B","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2013-04-09 00:00:00","U","04H","27","B","2013-04-09 00:00:00","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2013-08-19 00:00:00","D","10B","7","A","2013-08-19 00:00:00","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2013-07-02 00:00:00","U","08A","19","B","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2013-08-19 00:00:00","D","06A","7","A","2013-08-19 00:00:00","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2013-04-04 00:00:00","D","10F","12","A","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2013-06-04 00:00:00","F","06E","40","C","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2013-04-09 00:00:00","U","02G","27","B","2013-04-09 00:00:00","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2013-09-11 00:00:00","D","10F","9","A","2013-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2013-04-16 00:00:00","D","10B","11","A","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2013-09-11 00:00:00","D","04H","9","A","2013-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2013-07-12 00:00:00","O","08A","10","C","2013-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2013-08-01 00:00:00","U","02B","22","Z","2013-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2013-06-04 00:00:00","F","10B","40","C","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2013-07-31 00:00:00","F","02B","62","Z","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2013-07-12 00:00:00","O","04M","10","C","2013-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2013-03-27 00:00:00","F","04L","36","C","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2013-03-27 00:00:00","F","10F","36","C","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2013-08-01 00:00:00","U","02G","22","Z","2013-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2013-08-01 00:00:00","U","06F","22","Z","2013-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2013-08-01 00:00:00","U","09B","22","Z","2013-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2013-07-31 00:00:00","F","02G","62","Z","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2013-07-31 00:00:00","F","04N","62","Z","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2013-07-31 00:00:00","F","10H","62","Z","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2013-07-31 00:00:00","F","06D","62","Z","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2013-07-31 00:00:00","F","06E","62","Z","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2013-07-31 00:00:00","F","10B","62","Z","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2013-06-04 00:00:00","F","02H","40","C","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2013-09-05 00:00:00","D","02G","12","A","2013-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2013-09-05 00:00:00","D","10H","12","A","2013-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2013-07-31 00:00:00","F","08A","62","Z","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2013-07-31 00:00:00","F","08B","62","Z","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2013-06-04 00:00:00","F","06C","40","C","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2013-04-04 00:00:00","D","02G","12","A","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2013-06-04 00:00:00","F","10F","40","C","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2013-05-14 00:00:00","D","10B","11","A","2013-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2013-06-04 00:00:00","F","08A","40","C","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2013-02-08 00:00:00","D","02B","12","A","2013-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"40391594","TAKA HASHI RESTAURANT","1","85","AVENUE A","10009","2125056524","49","2012-08-21 00:00:00","D","06D","13","A","2012-08-21 00:00:00","2013-09-13 01:01:06.177000000" +"40391594","TAKA HASHI RESTAURANT","1","85","AVENUE A","10009","2125056524","49","2012-08-21 00:00:00","D","06E","13","A","2012-08-21 00:00:00","2013-09-13 01:01:06.177000000" +"40391594","TAKA HASHI RESTAURANT","1","85","AVENUE A","10009","2125056524","49","2012-08-21 00:00:00","D","10F","13","A","2012-08-21 00:00:00","2013-09-13 01:01:06.177000000" +"40388935","SAKEBAR DECIBEL","1","240","EAST 9 STREET","10003","2129792733","49","2013-07-23 00:00:00","U","04L","13","A","2013-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2013-03-27 00:00:00","F","06C","36","C","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2013-09-05 00:00:00","U","06F","23","Z","2013-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2013-03-27 00:00:00","F","02G","36","C","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2013-03-27 00:00:00","F","08A","36","C","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40388935","SAKEBAR DECIBEL","1","240","EAST 9 STREET","10003","2129792733","49","2013-07-23 00:00:00","U","02G","13","A","2013-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2013-03-13 00:00:00","D","06C","9","A","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2013-03-27 00:00:00","F","04C","36","C","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2013-02-08 00:00:00","D","06D","12","A","2013-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2013-03-13 00:00:00","D","10F","9","A","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2013-05-14 00:00:00","D","02G","11","A","2013-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2013-03-13 00:00:00","D","08C","9","A","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2013-04-17 00:00:00","F","04J","59","C","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2013-03-27 00:00:00","F","04L","25","B","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40393712","SHABU TATSU","1","216 ","EAST 10 STREET ","10003","2124772972","49","2013-03-12 00:00:00","D","06C","12","A","2013-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"40393712","SHABU TATSU","1","216 ","EAST 10 STREET ","10003","2124772972","49","2013-03-12 00:00:00","D","10H","12","A","2013-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"40393712","SHABU TATSU","1","216 ","EAST 10 STREET ","10003","2124772972","49","2013-03-12 00:00:00","D","10B","12","A","2013-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2013-09-05 00:00:00","U","03C","23","Z","2013-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40397108","OSAKA SUSHI","5","1440","FOREST AVENUE","10302","7187272211","49","2013-04-02 00:00:00","D","10F","13","A","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2013-04-17 00:00:00","F","03A","59","C","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2013-04-17 00:00:00","F","06D","59","C","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"40397108","OSAKA SUSHI","5","1440","FOREST AVENUE","10302","7187272211","49","2013-04-02 00:00:00","D","06D","13","A","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"40397108","OSAKA SUSHI","5","1440","FOREST AVENUE","10302","7187272211","49","2013-04-02 00:00:00","D","06E","13","A","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2013-04-17 00:00:00","F","10F","59","C","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2013-03-27 00:00:00","F","04N","25","B","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40397687","USAGI","1","320 ","EAST 49 STREET ","10017","2129352002","49","2012-11-29 00:00:00","D","10F","4","A","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2013-04-17 00:00:00","F","02C","59","C","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2013-04-17 00:00:00","F","02B","59","C","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2013-04-17 00:00:00","F","06C","59","C","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2013-04-17 00:00:00","F","02H","59","C","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"40397687","USAGI","1","320 ","EAST 49 STREET ","10017","2129352002","49","2012-11-29 00:00:00","D","08C","4","A","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2013-03-27 00:00:00","F","06F","25","B","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40401946","NOBU","1","105","HUDSON STREET","10013","2122190500","49","2013-06-19 00:00:00","D","06D","13","A","2013-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2013-03-27 00:00:00","F","04C","25","B","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2012-12-27 00:00:00","D","10F","2","A","2012-12-27 00:00:00","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2013-08-14 00:00:00","D","10F","10","A","2013-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"40401946","NOBU","1","105","HUDSON STREET","10013","2122190500","49","2013-06-19 00:00:00","D","06A","13","A","2013-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2013-04-24 00:00:00","D","06C","8","A","2013-04-24 00:00:00","2013-09-13 01:01:06.177000000" +"40512258","BLUE RIBBON SUSHI","1","119","SULLIVAN STREET","10012","2123430404","49","2013-05-29 00:00:00","D","02G","9","A","2013-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2013-08-14 00:00:00","D","02B","10","A","2013-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2013-04-24 00:00:00","D","10F","8","A","2013-04-24 00:00:00","2013-09-13 01:01:06.177000000" +"40550150","AKIYAMA JAPANESE RESTAURANT","4","132-16","14 AVENUE","11356","7187470529","49","2013-06-06 00:00:00","D","06C","12","A","2013-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2013-07-15 00:00:00","U","02B","9","A","2013-07-15 00:00:00","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2013-07-15 00:00:00","U","10B","9","A","2013-07-15 00:00:00","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2013-02-11 00:00:00","U","04L","27","Z","2013-02-11 00:00:00","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2013-05-02 00:00:00","F","02B","32","C","2013-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"40546234","KURUMAZUSHI RESTAURANT","1","7","EAST 47 STREET","10017","2123172802","49","2013-03-27 00:00:00","D","04C","12","A","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40550150","AKIYAMA JAPANESE RESTAURANT","4","132-16","14 AVENUE","11356","7187470529","49","2013-06-06 00:00:00","D","06E","12","A","2013-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2013-02-11 00:00:00","U","08A","27","Z","2013-02-11 00:00:00","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2013-01-07 00:00:00","U","04C","24","B","2013-01-07 00:00:00","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2013-08-12 00:00:00","D","10F","2","A","2013-08-12 00:00:00","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2013-04-09 00:00:00","F","02G","23","B","2013-04-09 00:00:00","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2013-05-02 00:00:00","F","06E","32","C","2013-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2013-05-02 00:00:00","F","02G","32","C","2013-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2013-05-02 00:00:00","F","06F","32","C","2013-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2013-04-16 00:00:00","F","02G","17","B","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2013-04-16 00:00:00","F","06A","17","B","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2013-02-11 00:00:00","U","04C","27","Z","2013-02-11 00:00:00","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2013-02-11 00:00:00","U","10F","27","Z","2013-02-11 00:00:00","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2013-01-07 00:00:00","U","08A","24","B","2013-01-07 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2013-06-26 00:00:00","F","10F","37","C","2013-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2013-04-09 00:00:00","F","04L","23","B","2013-04-09 00:00:00","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2013-04-09 00:00:00","F","10F","23","B","2013-04-09 00:00:00","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2013-08-29 00:00:00","D","10B","6","A","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2013-04-16 00:00:00","F","04L","17","B","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2013-02-11 00:00:00","U","04M","27","Z","2013-02-11 00:00:00","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2013-02-11 00:00:00","U","06C","27","Z","2013-02-11 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2013-06-26 00:00:00","F","02G","37","C","2013-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2013-05-02 00:00:00","F","10F","32","C","2013-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"40546234","KURUMAZUSHI RESTAURANT","1","7","EAST 47 STREET","10017","2123172802","49","2013-03-27 00:00:00","D","06F","12","A","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2013-07-08 00:00:00","D","10F","6","A","2013-07-08 00:00:00","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2013-03-28 00:00:00","D","06F","12","A","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2013-06-26 00:00:00","F","06F","37","C","2013-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2013-07-08 00:00:00","D","09B","6","A","2013-07-08 00:00:00","2013-09-13 01:01:06.177000000" +"40585345","SUSHIYA JAPANESE RESTAURANT","1","28","WEST 56 STREET","10019","2122475756","49","2013-08-02 00:00:00","D","06D","9","A","2013-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"40585345","SUSHIYA JAPANESE RESTAURANT","1","28","WEST 56 STREET","10019","2122475756","49","2013-08-02 00:00:00","D","10D","9","A","2013-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-07-30 00:00:00","U","04H","16","Z","2013-07-30 00:00:00","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-07-30 00:00:00","U","06C","16","Z","2013-07-30 00:00:00","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2013-07-11 00:00:00","U","10F","7","A","2013-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2013-01-07 00:00:00","U","02B","24","B","2013-01-07 00:00:00","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2013-01-07 00:00:00","U","04L","24","B","2013-01-07 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2013-06-26 00:00:00","F","06A","37","C","2013-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"40620325","BOND ST","1","6","BOND STREET","10012","2127772500","49","2013-03-26 00:00:00","U","06D","13","A","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2013-08-29 00:00:00","D","10F","6","A","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2013-03-28 00:00:00","D","02H","12","A","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2013-07-11 00:00:00","U","06E","7","A","2013-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"40665792","HATSUHANA","1","237","PARK AVENUE","10017","2126613400","49","2012-11-29 00:00:00","D","06D","12","A","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40665792","HATSUHANA","1","237","PARK AVENUE","10017","2126613400","49","2012-11-29 00:00:00","D","06E","12","A","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2013-04-04 00:00:00","U","04L","14","B","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2013-04-04 00:00:00","U","10F","14","B","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2013-06-26 00:00:00","F","02B","37","C","2013-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2013-06-26 00:00:00","F","06C","37","C","2013-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2013-08-19 00:00:00","D","02G","13","A","2013-08-19 00:00:00","2013-09-13 01:01:06.177000000" +"40620325","BOND ST","1","6","BOND STREET","10012","2127772500","49","2013-03-26 00:00:00","U","04H","13","A","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2013-03-25 00:00:00","D","10I","9","A","2013-03-25 00:00:00","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2013-05-23 00:00:00","D","04L","9","A","2013-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"40662783","SUGIYAMA RESTAURANT","1","251","WEST 55 STREET","10019","2129560670","49","2013-02-19 00:00:00","D","10F","8","A","2013-02-19 00:00:00","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2013-03-25 00:00:00","D","04L","9","A","2013-03-25 00:00:00","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-09-11 00:00:00","D","06E","9","A","2013-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-09-11 00:00:00","D","10F","9","A","2013-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2013-03-22 00:00:00","F","10B","64","C","2013-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2013-03-25 00:00:00","D","10H","9","A","2013-03-25 00:00:00","2013-09-13 01:01:06.177000000" +"40660138","NOBU NEXT DOOR","1","105","HUDSON STREET","10013","2123349869","49","2013-04-30 00:00:00","D","06C","12","A","2013-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2013-05-23 00:00:00","D","08A","9","A","2013-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2013-03-22 00:00:00","F","05H","64","C","2013-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2013-03-22 00:00:00","F","06E","64","C","2013-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2013-03-05 00:00:00","U","04L","12","A","2013-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"40660138","NOBU NEXT DOOR","1","105","HUDSON STREET","10013","2123349869","49","2013-04-30 00:00:00","D","02B","12","A","2013-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2013-03-22 00:00:00","F","06F","64","C","2013-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"40665792","HATSUHANA","1","237","PARK AVENUE","10017","2126613400","49","2012-11-29 00:00:00","D","10F","12","A","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2013-03-05 00:00:00","U","06F","12","A","2013-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2013-07-03 00:00:00","D","10F","12","A","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2013-03-22 00:00:00","F","02G","64","C","2013-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2013-07-25 00:00:00","B","","","A","2013-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2013-06-12 00:00:00","U","02B","10","A","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2013-04-29 00:00:00","U","06C","22","B","2013-04-29 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2013-03-22 00:00:00","F","02B","64","C","2013-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"40750917","SHIKI","3","1863-1867 ","86 STREET ","11214","7188371586","49","2013-04-02 00:00:00","U","04M","27","Z","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"40750917","SHIKI","3","1863-1867 ","86 STREET ","11214","7188371586","49","2013-04-02 00:00:00","U","06F","27","Z","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2013-03-22 00:00:00","F","04D","64","C","2013-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2013-07-01 00:00:00","U","04A","20","B","2013-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2013-08-13 00:00:00","U","02G","17","B","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2013-09-09 00:00:00","D","10F","7","A","2013-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"40718835","TRIOMPHE","1","49","WEST 44 STREET","10036","2124534033","03","2013-08-26 00:00:00","D","09C","5","A","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"40718835","TRIOMPHE","1","49","WEST 44 STREET","10036","2124534033","03","2013-08-26 00:00:00","D","10F","5","A","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2013-04-29 00:00:00","U","10F","22","B","2013-04-29 00:00:00","2013-09-13 01:01:06.177000000" +"40750917","SHIKI","3","1863-1867 ","86 STREET ","11214","7188371586","49","2013-04-02 00:00:00","U","04C","27","Z","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2013-07-01 00:00:00","U","05H","20","B","2013-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2013-03-22 00:00:00","F","04H","64","C","2013-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2012-12-07 00:00:00","U","02G","27","B","2012-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2012-12-07 00:00:00","U","08A","27","B","2012-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2013-04-16 00:00:00","U","04C","19","B","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2013-01-31 00:00:00","D","08A","13","A","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2013-03-28 00:00:00","F","08A","38","C","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2013-04-16 00:00:00","U","02G","19","B","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"40819366","HARU","1","1501","BROADWAY","10036","2123989810","49","2013-05-30 00:00:00","D","10F","12","A","2013-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2013-03-27 00:00:00","U","04J","27","B","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40750917","SHIKI","3","1863-1867 ","86 STREET ","11214","7188371586","49","2013-04-02 00:00:00","U","08C","27","Z","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2013-07-09 00:00:00","D","06D","7","A","2013-07-09 00:00:00","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2013-04-29 00:00:00","U","02G","22","B","2013-04-29 00:00:00","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2013-08-15 00:00:00","D","06E","12","A","2013-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2013-01-02 00:00:00","D","04L","12","A","2013-01-02 00:00:00","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2013-05-10 00:00:00","D","06D","7","A","2013-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2013-01-31 00:00:00","U","06C","24","B","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2013-07-03 00:00:00","D","10B","12","A","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"40733383","HARU","1","433","AMSTERDAM AVENUE","10024","2125795655","49","2013-05-30 00:00:00","D","04L","9","A","2013-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"40865169","GINGER","1","109","1 AVENUE","10003","2122606223","49","2013-04-18 00:00:00","D","10B","12","A","2013-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2013-04-25 00:00:00","U","02B","24","B","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2013-03-28 00:00:00","F","10F","38","C","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2013-01-31 00:00:00","D","10F","13","A","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2013-06-04 00:00:00","D","10F","12","A","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"40750917","SHIKI","3","1863-1867 ","86 STREET ","11214","7188371586","49","2013-04-02 00:00:00","U","04L","27","Z","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2013-06-19 00:00:00","U","04L","25","B","2013-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2013-06-19 00:00:00","U","10F","25","B","2013-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2013-03-28 00:00:00","F","02B","38","C","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"40882356","SPORTS CENTER AT CHELSEA PIERS (SUSHI BAR)","1","PIER 60","WEST SIDE HIGHWAY","10011","2123666286","49","2013-06-28 00:00:00","D","10F","11","A","2013-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2013-04-25 00:00:00","U","04J","24","B","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2012-12-07 00:00:00","U","04L","27","B","2012-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2013-03-27 00:00:00","U","02G","27","B","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2013-04-16 00:00:00","U","10B","19","B","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2013-07-31 00:00:00","U","04L","14","B","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2013-07-31 00:00:00","U","06E","14","B","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2013-01-02 00:00:00","D","08A","12","A","2013-01-02 00:00:00","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2013-01-31 00:00:00","U","10B","24","B","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2013-03-28 00:00:00","F","06C","38","C","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"40819366","HARU","1","1501","BROADWAY","10036","2123989810","49","2013-05-30 00:00:00","D","06C","12","A","2013-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2013-07-09 00:00:00","D","10F","7","A","2013-07-09 00:00:00","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2013-06-04 00:00:00","D","02G","12","A","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"40897051","NATIVE","1","101","WEST 118 STREET","10026","2126652535","03","2013-07-10 00:00:00","F","05D","49","Z","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"40897051","NATIVE","1","101","WEST 118 STREET","10026","2126652535","03","2013-07-10 00:00:00","F","10B","49","Z","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"40819366","HARU","1","1501","BROADWAY","10036","2123989810","49","2013-05-30 00:00:00","D","06D","12","A","2013-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2013-03-27 00:00:00","U","02H","27","B","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40927698","YOKOHAMA JAPANESE RESTAURANT","2","438","WEST 238 STREET","10463","7185492606","49","2013-03-07 00:00:00","D","06F","8","A","2013-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2013-06-19 00:00:00","U","10B","25","B","2013-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2013-01-02 00:00:00","D","10F","12","A","2013-01-02 00:00:00","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2013-05-10 00:00:00","D","10F","7","A","2013-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2013-01-31 00:00:00","U","10F","24","B","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2013-08-15 00:00:00","D","04H","12","A","2013-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"40932091","ZOIE'S CAFE and DELICATESSEN","1","49","BEACH STREET","10013","2122269776","14","2013-01-23 00:00:00","D","10A","4","A","2013-01-23 00:00:00","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2013-03-27 00:00:00","U","08A","16","B","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2013-06-19 00:00:00","U","02G","25","B","2013-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2013-06-19 00:00:00","U","06D","25","B","2013-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2013-06-19 00:00:00","U","08A","25","B","2013-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2013-04-25 00:00:00","U","04K","24","B","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2013-03-28 00:00:00","F","04C","38","C","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2013-03-28 00:00:00","F","04M","38","C","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"40878590","SAPPORO RESTAURANT","1","152","WEST 49 STREET","10019","2128698972","49","2013-06-28 00:00:00","D","02G","9","A","2013-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2013-01-02 00:00:00","D","04M","12","A","2013-01-02 00:00:00","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-08-26 00:00:00","U","04L","26","Z","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"40865169","GINGER","1","109","1 AVENUE","10003","2122606223","49","2013-04-18 00:00:00","D","08A","12","A","2013-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2013-01-31 00:00:00","D","06C","8","A","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2013-06-19 00:00:00","U","04M","25","B","2013-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"40882356","SPORTS CENTER AT CHELSEA PIERS (SUSHI BAR)","1","PIER 60","WEST SIDE HIGHWAY","10011","2123666286","49","2013-06-28 00:00:00","D","09C","11","A","2013-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"40897051","NATIVE","1","101","WEST 118 STREET","10026","2126652535","03","2013-07-10 00:00:00","F","04A","49","Z","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2013-08-29 00:00:00","U","06D","26","Z","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"40899971","SUSHI ZEN","1","108","WEST 44 STREET","10036","2123020707","49","2013-05-29 00:00:00","D","06C","11","A","2013-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"40878590","SAPPORO RESTAURANT","1","152","WEST 49 STREET","10019","2128698972","49","2013-06-28 00:00:00","D","10F","9","A","2013-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2013-03-27 00:00:00","D","10F","12","A","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2013-08-06 00:00:00","F","04L","31","Z","2013-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"40878403","SOY","1","102","SUFFOLK STREET","10002","2122531158","49","2013-05-16 00:00:00","D","10F","3","A","2013-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"40897051","NATIVE","1","101","WEST 118 STREET","10026","2126652535","03","2013-07-10 00:00:00","F","02G","49","Z","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2013-03-27 00:00:00","U","04L","16","B","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2013-03-27 00:00:00","U","06F","16","B","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40882356","SPORTS CENTER AT CHELSEA PIERS (SUSHI BAR)","1","PIER 60","WEST SIDE HIGHWAY","10011","2123666286","49","2013-06-28 00:00:00","D","06F","11","A","2013-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"40950507","YUMMY SUSHI","1","30","ROCKFEELLER PLAZA","10020","2124592100","49","2013-05-03 00:00:00","D","06E","6","A","2013-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2012-09-19 00:00:00","D","10F","12","A","2012-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2013-02-12 00:00:00","D","02B","7","A","2013-02-12 00:00:00","2013-09-13 01:01:06.177000000" +"40865169","GINGER","1","109","1 AVENUE","10003","2122606223","49","2013-04-18 00:00:00","D","04M","12","A","2013-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"40932091","ZOIE'S CAFE and DELICATESSEN","1","49","BEACH STREET","10013","2122269776","14","2013-01-23 00:00:00","D","10D","4","A","2013-01-23 00:00:00","2013-09-13 01:01:06.177000000" +"40897051","NATIVE","1","101","WEST 118 STREET","10026","2126652535","03","2013-07-10 00:00:00","F","10A","49","Z","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2013-04-30 00:00:00","U","06A","16","B","2013-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2013-08-06 00:00:00","F","02G","31","Z","2013-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2013-07-18 00:00:00","D","02G","13","A","2013-07-18 00:00:00","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2013-03-28 00:00:00","D","10F","10","A","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2013-04-24 00:00:00","D","10F","13","A","2013-04-24 00:00:00","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2012-09-19 00:00:00","D","02G","12","A","2012-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2013-08-14 00:00:00","D","10F","10","A","2013-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"40927698","YOKOHAMA JAPANESE RESTAURANT","2","438","WEST 238 STREET","10463","7185492606","49","2013-03-07 00:00:00","D","10B","8","A","2013-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-08-26 00:00:00","U","02G","26","Z","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"40897051","NATIVE","1","101","WEST 118 STREET","10026","2126652535","03","2013-07-10 00:00:00","F","04H","49","Z","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2013-04-30 00:00:00","U","02G","12","A","2013-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2013-04-30 00:00:00","U","10H","12","A","2013-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"40899971","SUSHI ZEN","1","108","WEST 44 STREET","10036","2123020707","49","2013-05-29 00:00:00","D","02I","11","A","2013-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2013-04-04 00:00:00","U","06E","12","A","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2013-04-11 00:00:00","D","02B","11","A","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2013-08-29 00:00:00","U","03A","26","Z","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2013-04-30 00:00:00","U","02G","16","B","2013-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2012-12-11 00:00:00","U","08A","24","B","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2013-03-27 00:00:00","D","06B","12","A","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2013-03-27 00:00:00","D","10D","12","A","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2013-02-14 00:00:00","U","02G","17","B","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2013-02-14 00:00:00","U","06E","17","B","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2013-02-14 00:00:00","U","10H","17","B","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-08-26 00:00:00","U","02B","26","Z","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-07-03 00:00:00","U","10F","27","Z","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2013-01-31 00:00:00","D","10B","8","A","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2013-04-04 00:00:00","U","02B","12","A","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2013-03-28 00:00:00","U","08B","15","B","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2013-07-18 00:00:00","D","10F","13","A","2013-07-18 00:00:00","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2013-02-26 00:00:00","U","04H","27","B","2013-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2013-03-29 00:00:00","D","02G","7","A","2013-03-29 00:00:00","2013-09-13 01:01:06.177000000" +"41007823","MASA, BARMASA","1","10","COLUMBUS CIRCLE","10019","2128239828","49","2012-09-05 00:00:00","D","06E","12","A","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2013-04-30 00:00:00","U","10F","16","B","2013-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-08-26 00:00:00","U","04M","26","Z","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2013-02-14 00:00:00","U","10F","17","B","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2013-08-29 00:00:00","U","04E","26","Z","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2013-06-05 00:00:00","U","02G","7","A","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2013-08-14 00:00:00","D","06D","10","A","2013-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-09-04 00:00:00","U","08A","25","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2013-08-29 00:00:00","U","10F","26","Z","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2013-07-18 00:00:00","D","10B","13","A","2013-07-18 00:00:00","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2013-09-05 00:00:00","D","10F","11","A","2013-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2013-08-06 00:00:00","F","02B","31","Z","2013-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-08-26 00:00:00","U","08A","26","Z","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-08-26 00:00:00","U","10B","26","Z","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-07-03 00:00:00","U","06D","27","Z","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2013-04-11 00:00:00","D","10F","11","A","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2013-08-27 00:00:00","F","02G","28","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"40979259","BAI SUSHI","4","37-03","BROADWAY","11103","7189567445","49","2012-11-29 00:00:00","D","06C","7","A","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2013-04-24 00:00:00","D","02B","13","A","2013-04-24 00:00:00","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2013-01-17 00:00:00","U","06C","14","B","2013-01-17 00:00:00","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2012-12-14 00:00:00","D","06D","13","A","2012-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41007823","MASA, BARMASA","1","10","COLUMBUS CIRCLE","10019","2128239828","49","2012-09-05 00:00:00","D","04H","12","A","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2012-12-11 00:00:00","U","04C","24","B","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2012-12-11 00:00:00","U","10F","24","B","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2013-04-30 00:00:00","D","10F","12","A","2013-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-07-03 00:00:00","U","04L","27","Z","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-09-04 00:00:00","U","02G","25","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-09-04 00:00:00","U","06E","25","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41000607","CITY 75","1","75","ROCKEFELLER PLAZA","10019","212247150_","03","2013-07-10 00:00:00","F","02G","49","C","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2013-08-06 00:00:00","F","08A","31","Z","2013-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2013-02-04 00:00:00","U","08A","12","A","2013-02-04 00:00:00","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2012-08-31 00:00:00","D","10J","11","A","2012-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41070415","GARI","1","370","COLUMBUS AVENUE","10024","2123624816","49","2013-04-11 00:00:00","D","10A","12","A","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41070415","GARI","1","370","COLUMBUS AVENUE","10024","2123624816","49","2013-04-11 00:00:00","D","10B","12","A","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"40979259","BAI SUSHI","4","37-03","BROADWAY","11103","7189567445","49","2012-11-29 00:00:00","D","10F","7","A","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41058228","CHA-AN","1","230","EAST 9 STREET","10003","2122288030","49","2013-07-22 00:00:00","U","04H","14","B","2013-07-22 00:00:00","2013-09-13 01:01:06.177000000" +"41000607","CITY 75","1","75","ROCKEFELLER PLAZA","10019","212247150_","03","2013-07-10 00:00:00","F","09B","49","C","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-07-03 00:00:00","U","08A","27","Z","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"41000607","CITY 75","1","75","ROCKEFELLER PLAZA","10019","212247150_","03","2013-07-10 00:00:00","F","02B","49","C","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41000607","CITY 75","1","75","ROCKEFELLER PLAZA","10019","212247150_","03","2013-07-10 00:00:00","F","10B","49","C","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41004774","AKA SUSHI JAPANESE RESTAURANT","5","4342","AMBOY ROAD","10312","7186088981","49","2013-06-03 00:00:00","D","10F","4","A","2013-06-03 00:00:00","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2012-12-11 00:00:00","U","06F","24","B","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41081337","GEM SUSHI","1","352","EAST 86 STREET","10028","2127370086","49","2013-05-07 00:00:00","D","06E","7","A","2013-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2012-08-31 00:00:00","D","02G","11","A","2012-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41070415","GARI","1","370","COLUMBUS AVENUE","10024","2123624816","49","2013-04-11 00:00:00","D","10D","12","A","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2013-03-28 00:00:00","U","04J","15","B","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41007533","UMI NO IE","1","86","EAST 3 STREET","10003","6466541122","49","2013-04-11 00:00:00","D","02G","7","A","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2013-01-17 00:00:00","U","10B","14","B","2013-01-17 00:00:00","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2013-02-26 00:00:00","U","06C","27","B","2013-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2013-02-26 00:00:00","U","08A","27","B","2013-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2013-08-26 00:00:00","U","02B","27","Z","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2013-06-05 00:00:00","U","04H","7","A","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-09-04 00:00:00","U","04L","25","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2013-08-01 00:00:00","F","04M","6","A","2013-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2013-02-26 00:00:00","D","10F","9","A","2013-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41000607","CITY 75","1","75","ROCKEFELLER PLAZA","10019","212247150_","03","2013-07-10 00:00:00","F","04C","49","C","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41000607","CITY 75","1","75","ROCKEFELLER PLAZA","10019","212247150_","03","2013-07-10 00:00:00","F","04J","49","C","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2013-06-04 00:00:00","U","10F","22","Z","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2013-02-26 00:00:00","U","04L","27","B","2013-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41004774","AKA SUSHI JAPANESE RESTAURANT","5","4342","AMBOY ROAD","10312","7186088981","49","2013-06-03 00:00:00","D","09B","4","A","2013-06-03 00:00:00","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2013-01-17 00:00:00","U","10F","14","B","2013-01-17 00:00:00","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2012-12-11 00:00:00","U","04L","24","B","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41020284","LITTLE ITALY PIZZA","1","55","WEST 45 STREET","10036","2127307575","62","2013-07-03 00:00:00","F","02G","49","C","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"41020284","LITTLE ITALY PIZZA","1","55","WEST 45 STREET","10036","2127307575","62","2013-07-03 00:00:00","F","06D","49","C","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"41020284","LITTLE ITALY PIZZA","1","55","WEST 45 STREET","10036","2127307575","62","2013-07-03 00:00:00","F","08A","49","C","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2013-02-01 00:00:00","F","04C","23","B","2013-02-01 00:00:00","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2013-06-28 00:00:00","F","04H","25","B","2013-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2013-03-28 00:00:00","U","06F","15","B","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2013-09-05 00:00:00","D","09C","11","A","2013-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2013-09-03 00:00:00","D","10F","10","A","2013-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2012-12-14 00:00:00","D","10H","13","A","2012-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2013-02-15 00:00:00","U","06F","23","B","2013-02-15 00:00:00","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2013-08-29 00:00:00","O","10F","3","Z","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41108450","IDO SHUSHI","1","29","7 AVENUE SOUTH","10014","2126917177","49","2013-07-01 00:00:00","D","04L","12","A","2013-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41108450","IDO SHUSHI","1","29","7 AVENUE SOUTH","10014","2126917177","49","2013-07-01 00:00:00","D","10D","12","A","2013-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2013-07-02 00:00:00","D","05D","12","A","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2013-09-05 00:00:00","D","02B","11","A","2013-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2013-06-28 00:00:00","F","10B","25","B","2013-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2012-12-14 00:00:00","D","06E","13","A","2012-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41058228","CHA-AN","1","230","EAST 9 STREET","10003","2122288030","49","2013-07-22 00:00:00","U","02G","14","B","2013-07-22 00:00:00","2013-09-13 01:01:06.177000000" +"41075211","SUSHI GALLERY","3","71","CLARK STREET","11201","7182220308","49","2013-08-19 00:00:00","D","02B","7","A","2013-08-19 00:00:00","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2013-01-17 00:00:00","U","04M","14","B","2013-01-17 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2013-02-01 00:00:00","F","08A","23","B","2013-02-01 00:00:00","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2013-08-27 00:00:00","F","02B","28","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2013-02-26 00:00:00","D","06D","9","A","2013-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41068099","NAKA NAKA","1","458","WEST 17 STREET","10011","2129298544","49","2012-09-04 00:00:00","D","02H","13","A","2012-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2013-04-30 00:00:00","D","06F","12","A","2013-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2013-02-01 00:00:00","F","04A","23","B","2013-02-01 00:00:00","2013-09-13 01:01:06.177000000" +"41070399","HARU","1","220","PARK AVENUE SOUTH","10003","6464280989","49","2013-08-26 00:00:00","D","10F","5","A","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41070415","GARI","1","370","COLUMBUS AVENUE","10024","2123624816","49","2013-04-11 00:00:00","D","06D","12","A","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41085412","SOBA-KOH","1","309 ","EAST 5 STREET ","10003","2122542244","49","2013-06-11 00:00:00","D","10F","12","A","2013-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2013-09-04 00:00:00","F","04M","47","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2013-08-26 00:00:00","U","06F","27","Z","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2013-08-26 00:00:00","U","08A","27","Z","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2013-04-17 00:00:00","D","06C","7","A","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2013-08-27 00:00:00","F","04J","28","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2013-09-11 00:00:00","D","10B","10","A","2013-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2013-09-03 00:00:00","D","02G","10","A","2013-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2013-06-04 00:00:00","U","06D","22","Z","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2013-06-04 00:00:00","U","06E","22","Z","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2013-02-01 00:00:00","F","04L","23","B","2013-02-01 00:00:00","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2013-05-09 00:00:00","F","03B","55","C","2013-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2013-06-01 00:00:00","D","04L","11","A","2013-06-01 00:00:00","2013-09-13 01:01:06.177000000" +"41068099","NAKA NAKA","1","458","WEST 17 STREET","10011","2129298544","49","2012-09-04 00:00:00","D","06D","13","A","2012-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2013-04-03 00:00:00","D","04C","10","A","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2013-04-03 00:00:00","D","10F","10","A","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41070399","HARU","1","220","PARK AVENUE SOUTH","10003","6464280989","49","2013-08-26 00:00:00","D","09B","5","A","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41085412","SOBA-KOH","1","309 ","EAST 5 STREET ","10003","2122542244","49","2013-06-11 00:00:00","D","06C","12","A","2013-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2013-06-04 00:00:00","U","02B","22","Z","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2013-08-26 00:00:00","U","09B","27","Z","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2013-08-16 00:00:00","D","08A","11","A","2013-08-16 00:00:00","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2013-02-15 00:00:00","U","05D","23","B","2013-02-15 00:00:00","2013-09-13 01:01:06.177000000" +"41159798","MORIMOTO NY","1","88","10 AVENUE","10011","2129894639","49","2013-02-25 00:00:00","U","06A","12","A","2013-02-25 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2013-08-20 00:00:00","D","10F","13","A","2013-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41085412","SOBA-KOH","1","309 ","EAST 5 STREET ","10003","2122542244","49","2013-06-11 00:00:00","D","06E","12","A","2013-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2013-08-26 00:00:00","U","04L","27","Z","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2013-05-29 00:00:00","U","06D","13","A","2013-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2013-02-15 00:00:00","U","10F","23","B","2013-02-15 00:00:00","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2013-09-11 00:00:00","D","10E","10","A","2013-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2013-02-01 00:00:00","U","02B","7","A","2013-02-01 00:00:00","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2013-02-26 00:00:00","D","10B","9","A","2013-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2013-06-28 00:00:00","F","04L","25","B","2013-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2013-06-28 00:00:00","F","10F","25","B","2013-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"41081337","GEM SUSHI","1","352","EAST 86 STREET","10028","2127370086","49","2013-05-07 00:00:00","D","08C","7","A","2013-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2013-04-17 00:00:00","D","06B","13","A","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2013-04-17 00:00:00","D","10B","13","A","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2013-05-29 00:00:00","U","04L","13","A","2013-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2013-05-29 00:00:00","U","10F","13","A","2013-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2013-04-15 00:00:00","D","02H","7","A","2013-04-15 00:00:00","2013-09-13 01:01:06.177000000" +"41127602","DONGURI","1","309","EAST 83 STREET","10028","2127375656","49","2013-04-25 00:00:00","D","02G","9","A","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2013-08-16 00:00:00","D","04M","11","A","2013-08-16 00:00:00","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2013-08-16 00:00:00","D","10F","11","A","2013-08-16 00:00:00","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2013-05-15 00:00:00","D","09B","12","A","2013-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2013-05-15 00:00:00","D","10I","12","A","2013-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2013-06-28 00:00:00","F","04C","25","B","2013-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"41177613","YAMA","1","308","EAST 49 STREET","10017","2123553370","49","2013-05-29 00:00:00","U","02G","19","B","2013-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2013-09-11 00:00:00","D","06D","10","A","2013-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"41133094","NORI SUSHI RESTAURANT","5","55","NEW DORP PLAZA","10306","7186680288","49","2013-05-23 00:00:00","D","06D","13","A","2013-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2013-04-17 00:00:00","D","06C","13","A","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41108853","OMIYA SUSHI II","3","2317","AVENUE U","11229","7188918808","49","2013-06-04 00:00:00","D","02B","7","A","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2013-01-19 00:00:00","D","08B","12","A","2013-01-19 00:00:00","2013-09-13 01:01:06.177000000" +"41182682","SARKU JAPAN","5","2655","RICHMOND AVENUE","10314","7186983023","49","2013-06-07 00:00:00","U","02G","25","B","2013-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2013-06-06 00:00:00","U","02G","21","B","2013-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2013-08-26 00:00:00","D","08A","11","A","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41177613","YAMA","1","308","EAST 49 STREET","10017","2123553370","49","2013-05-29 00:00:00","U","10C","19","B","2013-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41125371","MIZU HIBACHI STEAK HOUSE","5","240","PAGE AVENUE","10307","7186088809","49","2013-03-13 00:00:00","D","02G","12","A","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2013-02-15 00:00:00","U","06E","23","B","2013-02-15 00:00:00","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2013-01-19 00:00:00","D","10F","12","A","2013-01-19 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2013-09-04 00:00:00","F","06C","47","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-08-08 00:00:00","D","10F","7","A","2013-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41182682","SARKU JAPAN","5","2655","RICHMOND AVENUE","10314","7186983023","49","2013-06-07 00:00:00","U","08A","25","B","2013-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41182747","SUSHI BELL","4","36-28","BELL BOULEVARD","11361","7182294653","49","2013-03-12 00:00:00","D","10F","7","A","2013-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2013-06-06 00:00:00","U","10D","21","B","2013-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2013-06-07 00:00:00","U","08A","17","B","2013-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2013-06-07 00:00:00","U","10I","17","B","2013-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2013-05-08 00:00:00","D","10F","2","A","2013-05-08 00:00:00","2013-09-13 01:01:06.177000000" +"41125371","MIZU HIBACHI STEAK HOUSE","5","240","PAGE AVENUE","10307","7186088809","49","2013-03-13 00:00:00","D","06F","12","A","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41127602","DONGURI","1","309","EAST 83 STREET","10028","2127375656","49","2013-04-25 00:00:00","D","10F","9","A","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2013-09-04 00:00:00","F","04N","47","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2013-04-17 00:00:00","D","10I","7","A","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41108450","IDO SHUSHI","1","29","7 AVENUE SOUTH","10014","2126917177","49","2013-07-01 00:00:00","D","08A","12","A","2013-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41133094","NORI SUSHI RESTAURANT","5","55","NEW DORP PLAZA","10306","7186680288","49","2013-05-23 00:00:00","D","10F","13","A","2013-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"41193113","SOSAKU JAPANESE RESTAURANT","3","6328","AVENUE N","11234","7189682800","49","2013-04-04 00:00:00","D","09C","11","A","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2012-10-15 00:00:00","D","10F","11","A","2012-10-15 00:00:00","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2013-03-28 00:00:00","D","02G","7","A","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2013-08-26 00:00:00","D","04N","11","A","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2013-05-09 00:00:00","F","04L","55","C","2013-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2013-05-09 00:00:00","F","06D","55","C","2013-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2013-01-19 00:00:00","D","06C","12","A","2013-01-19 00:00:00","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2013-05-29 00:00:00","D","02G","13","A","2013-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2013-05-29 00:00:00","D","10H","13","A","2013-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41208272","KAWA SUSHI 8 AVENUE","1","24","8 AVENUE","10014","2123666888","49","2013-08-22 00:00:00","U","04C","24","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2013-09-04 00:00:00","F","08A","47","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2013-05-09 00:00:00","F","04M","55","C","2013-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41133094","NORI SUSHI RESTAURANT","5","55","NEW DORP PLAZA","10306","7186680288","49","2013-05-23 00:00:00","D","06C","13","A","2013-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2013-06-01 00:00:00","D","08C","11","A","2013-06-01 00:00:00","2013-09-13 01:01:06.177000000" +"41159798","MORIMOTO NY","1","88","10 AVENUE","10011","2129894639","49","2013-02-25 00:00:00","U","04C","12","A","2013-02-25 00:00:00","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2013-03-13 00:00:00","U","06D","12","A","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2013-06-26 00:00:00","D","06C","13","A","2013-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2013-08-20 00:00:00","D","08A","13","A","2013-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2012-10-24 00:00:00","F","04L","44","C","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2012-10-24 00:00:00","F","06F","44","C","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41219569","SUTEISHI","1","24","PECK SLIP","10038","2127662344","49","2012-08-14 00:00:00","D","09B","10","A","2012-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2013-02-05 00:00:00","D","04L","12","A","2013-02-05 00:00:00","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2013-02-05 00:00:00","D","10F","12","A","2013-02-05 00:00:00","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2013-02-25 00:00:00","U","06B","12","A","2013-02-25 00:00:00","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2013-02-25 00:00:00","U","10F","12","A","2013-02-25 00:00:00","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2013-04-16 00:00:00","F","04M","16","B","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2013-05-09 00:00:00","F","04H","55","C","2013-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2013-05-09 00:00:00","F","08A","55","C","2013-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41168206","BENTO NOUVEAU","1","1407","BROADWAY","10018","2123981405","49","2013-03-18 00:00:00","D","10F","2","A","2013-03-18 00:00:00","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2013-09-11 00:00:00","F","02G","31","Z","2013-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2013-09-11 00:00:00","F","05D","31","Z","2013-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2013-09-11 00:00:00","F","10H","31","Z","2013-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2013-09-11 00:00:00","F","10I","31","Z","2013-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2013-06-01 00:00:00","D","08A","11","A","2013-06-01 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-09-03 00:00:00","U","04K","24","Z","2013-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2013-08-20 00:00:00","D","04L","13","A","2013-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2013-04-09 00:00:00","U","10F","13","A","2013-04-09 00:00:00","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2013-04-23 00:00:00","D","10D","8","A","2013-04-23 00:00:00","2013-09-13 01:01:06.177000000" +"41168216","BENTO NOUVEAU","1","32","BROADWAY","10004","2127470994","49","2013-04-11 00:00:00","D","02G","11","A","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2013-06-04 00:00:00","D","06E","12","A","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41190258","KI SUSHI","3","122","SMITH STREET","11201","7189350575","49","2013-04-25 00:00:00","D","10F","11","A","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41177613","YAMA","1","308","EAST 49 STREET","10017","2123553370","49","2013-05-29 00:00:00","U","04C","19","B","2013-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2013-04-02 00:00:00","F","04L","39","C","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2013-04-02 00:00:00","F","06F","39","C","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2013-02-25 00:00:00","U","06D","12","A","2013-02-25 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-08-08 00:00:00","D","06D","7","A","2013-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41182682","SARKU JAPAN","5","2655","RICHMOND AVENUE","10314","7186983023","49","2013-06-07 00:00:00","U","04N","25","B","2013-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41182682","SARKU JAPAN","5","2655","RICHMOND AVENUE","10314","7186983023","49","2013-06-07 00:00:00","U","06E","25","B","2013-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2013-06-06 00:00:00","U","04L","21","B","2013-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2013-03-13 00:00:00","U","04C","12","A","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2013-06-04 00:00:00","D","02G","12","A","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2013-08-29 00:00:00","D","06F","13","A","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41190258","KI SUSHI","3","122","SMITH STREET","11201","7189350575","49","2013-04-25 00:00:00","D","06C","11","A","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2013-04-16 00:00:00","F","06E","16","B","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41168216","BENTO NOUVEAU","1","32","BROADWAY","10004","2127470994","49","2013-04-11 00:00:00","D","10F","11","A","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41193113","SOSAKU JAPANESE RESTAURANT","3","6328","AVENUE N","11234","7189682800","49","2013-04-04 00:00:00","D","04L","11","A","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2013-06-07 00:00:00","U","06C","17","B","2013-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2013-03-26 00:00:00","D","04J","13","A","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41180860","BAY SUSHI","3","29","BAY RIDGE AVENUE","11220","7188363083","49","2012-12-12 00:00:00","D","06C","9","A","2012-12-12 00:00:00","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2013-06-06 00:00:00","U","04N","21","B","2013-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41212149","KYO-YA","1","94","EAST 7 STREET","10009","2129824140","49","2013-08-28 00:00:00","D","06D","10","A","2013-08-28 00:00:00","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2013-08-27 00:00:00","U","02G","24","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-09-10 00:00:00","D","02G","10","A","2013-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2013-08-05 00:00:00","F","06A","30","Z","2013-08-05 00:00:00","2013-09-13 01:01:06.177000000" +"41249655","NEW TOYO JAPANESE RESTAURANT","4","73-06","METROPOLITAN AVENUE","11379","7188948880","49","2013-08-03 00:00:00","D","10F","12","A","2013-08-03 00:00:00","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2013-04-08 00:00:00","D","06C","12","A","2013-04-08 00:00:00","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2013-04-09 00:00:00","U","02G","13","A","2013-04-09 00:00:00","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2013-08-09 00:00:00","U","02B","17","Z","2013-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41179005","ROSAN JIN","1","141","DUANE STREET","10013","2123467807","49","2013-08-07 00:00:00","D","10B","11","A","2013-08-07 00:00:00","2013-09-13 01:01:06.177000000" +"41208272","KAWA SUSHI 8 AVENUE","1","24","8 AVENUE","10014","2123666888","49","2013-08-22 00:00:00","U","04L","24","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2013-03-26 00:00:00","D","06E","13","A","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41180860","BAY SUSHI","3","29","BAY RIDGE AVENUE","11220","7188363083","49","2012-12-12 00:00:00","D","10F","9","A","2012-12-12 00:00:00","2013-09-13 01:01:06.177000000" +"41193113","SOSAKU JAPANESE RESTAURANT","3","6328","AVENUE N","11234","7189682800","49","2013-04-04 00:00:00","D","08A","11","A","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41220720","SUSHI OF GARI 46","1","347","WEST 46 STREET","10036","2129570046","49","2013-06-28 00:00:00","D","02G","11","A","2013-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"41182747","SUSHI BELL","4","36-28","BELL BOULEVARD","11361","7182294653","49","2013-03-12 00:00:00","D","06C","7","A","2013-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2013-06-06 00:00:00","U","08A","21","B","2013-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41212149","KYO-YA","1","94","EAST 7 STREET","10009","2129824140","49","2013-08-28 00:00:00","D","10B","10","A","2013-08-28 00:00:00","2013-09-13 01:01:06.177000000" +"41223011","SUSHI SASABUNE NEW YORK","1","401","EAST 73 STREET","10021","2122498583","49","2013-06-12 00:00:00","D","04C","8","A","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2013-06-11 00:00:00","D","10B","12","A","2013-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41214817","HOKKAIDO","5","3295","AMBOY ROAD","10306","7189800880","49","2013-03-12 00:00:00","D","10B","13","A","2013-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41257259","L'AMICI","4","160-53","ROCKAWAY BOULEVARD","11434","7189786300","62","2013-07-29 00:00:00","F","04J","49","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41249184","CHARLIE'S PLACE","1","1960","MADISON AVENUE","10035","2124100277","49","2013-04-10 00:00:00","D","06E","7","A","2013-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2013-07-03 00:00:00","D","10B","13","A","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2013-04-09 00:00:00","U","10D","13","A","2013-04-09 00:00:00","2013-09-13 01:01:06.177000000" +"41208272","KAWA SUSHI 8 AVENUE","1","24","8 AVENUE","10014","2123666888","49","2013-08-22 00:00:00","U","10F","24","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41219569","SUTEISHI","1","24","PECK SLIP","10038","2127662344","49","2012-08-14 00:00:00","D","10B","10","A","2012-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2013-02-05 00:00:00","D","08A","12","A","2013-02-05 00:00:00","2013-09-13 01:01:06.177000000" +"41220720","SUSHI OF GARI 46","1","347","WEST 46 STREET","10036","2129570046","49","2013-06-28 00:00:00","D","10B","11","A","2013-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2013-06-11 00:00:00","D","06C","12","A","2013-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2012-10-15 00:00:00","D","02B","11","A","2012-10-15 00:00:00","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2012-10-15 00:00:00","D","10B","11","A","2012-10-15 00:00:00","2013-09-13 01:01:06.177000000" +"41214817","HOKKAIDO","5","3295","AMBOY ROAD","10306","7189800880","49","2013-03-12 00:00:00","D","09C","13","A","2013-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41214817","HOKKAIDO","5","3295","AMBOY ROAD","10306","7189800880","49","2013-03-12 00:00:00","D","10F","13","A","2013-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2013-08-05 00:00:00","F","02G","30","Z","2013-08-05 00:00:00","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2013-08-05 00:00:00","F","06D","30","Z","2013-08-05 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2013-04-02 00:00:00","F","02B","39","C","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2013-04-02 00:00:00","F","06C","39","C","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-03-13 00:00:00","D","04N","11","A","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-03-13 00:00:00","D","08A","11","A","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41208272","KAWA SUSHI 8 AVENUE","1","24","8 AVENUE","10014","2123666888","49","2013-08-22 00:00:00","U","08C","24","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2013-02-06 00:00:00","D","02B","12","A","2013-02-06 00:00:00","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2013-02-06 00:00:00","D","06E","12","A","2013-02-06 00:00:00","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2012-08-22 00:00:00","D","08A","12","A","2012-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2013-06-26 00:00:00","D","02B","13","A","2013-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"41212149","KYO-YA","1","94","EAST 7 STREET","10009","2129824140","49","2013-08-28 00:00:00","D","10F","10","A","2013-08-28 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-08-29 00:00:00","F","02G","39","Z","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2013-06-17 00:00:00","U","02G","16","B","2013-06-17 00:00:00","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2012-12-19 00:00:00","U","04C","27","B","2012-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2013-03-26 00:00:00","D","10B","10","A","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41214817","HOKKAIDO","5","3295","AMBOY ROAD","10306","7189800880","49","2013-03-12 00:00:00","D","02B","13","A","2013-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2013-04-02 00:00:00","F","06D","39","C","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2013-04-02 00:00:00","F","09C","39","C","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2013-07-01 00:00:00","D","10F","7","A","2013-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41208272","KAWA SUSHI 8 AVENUE","1","24","8 AVENUE","10014","2123666888","49","2013-08-22 00:00:00","U","08A","24","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41219223","ZENKICHI","3","77 ","NORTH 6 STREET ","11249","7183888985","49","2013-05-08 00:00:00","U","06E","8","A","2013-05-08 00:00:00","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2012-10-24 00:00:00","F","02G","44","C","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2013-06-11 00:00:00","U","04L","10","A","2013-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2012-10-24 00:00:00","F","06C","44","C","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2013-04-24 00:00:00","D","08A","9","A","2013-04-24 00:00:00","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2013-04-22 00:00:00","U","02G","27","B","2013-04-22 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-08-29 00:00:00","F","04L","39","Z","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-08-29 00:00:00","F","04N","39","Z","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-08-29 00:00:00","F","06E","39","Z","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2013-04-22 00:00:00","U","04B","27","B","2013-04-22 00:00:00","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2013-04-22 00:00:00","U","09B","27","B","2013-04-22 00:00:00","2013-09-13 01:01:06.177000000" +"41278931","EAST SUSHI BISTRO","3","2106","EAST 19 STREET","11229","7186480800","49","2013-03-04 00:00:00","D","02B","11","A","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2013-03-26 00:00:00","D","06D","10","A","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41224493","SHIRO OF JAPAN (AT ATLAS MALL)","4","80-40 ","COOPER AVENUE ","11385","7183268704","49","2013-05-24 00:00:00","U","10F","4","A","2013-05-24 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-09-03 00:00:00","U","02G","24","Z","2013-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-09-03 00:00:00","U","06D","24","Z","2013-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-09-03 00:00:00","U","08A","24","Z","2013-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2013-08-05 00:00:00","F","10F","30","Z","2013-08-05 00:00:00","2013-09-13 01:01:06.177000000" +"41274187","KAGETSU JAPANESE RESTAURANT","3","2004","BATH AVENUE","11214","7184498880","49","2013-02-20 00:00:00","D","06D","12","A","2013-02-20 00:00:00","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2012-10-24 00:00:00","F","06D","44","C","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2012-10-24 00:00:00","F","06E","44","C","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2013-08-27 00:00:00","U","06B","24","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2013-08-27 00:00:00","U","10D","24","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2013-09-11 00:00:00","F","02B","31","Z","2013-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"41249082","B FLAT","1","277","CHURCH STREET","10013","2123430277","49","2013-07-10 00:00:00","D","06F","10","A","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2013-07-03 00:00:00","D","08A","13","A","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"41249655","NEW TOYO JAPANESE RESTAURANT","4","73-06","METROPOLITAN AVENUE","11379","7188948880","49","2013-08-03 00:00:00","D","10B","12","A","2013-08-03 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2013-04-02 00:00:00","F","08A","39","C","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41289081","MIZU SUSHI","3","192 ","BEDFORD AVENUE ","11249","7187826666","49","2013-05-01 00:00:00","U","06A","12","A","2013-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-09-03 00:00:00","U","04M","24","Z","2013-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2013-07-25 00:00:00","F","06F","32","C","2013-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2013-05-07 00:00:00","U","02G","27","Z","2013-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2012-10-24 00:00:00","F","08A","44","C","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2012-10-24 00:00:00","F","08B","44","C","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2013-06-11 00:00:00","U","08A","10","A","2013-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41228172","NATSUMI","1","226","WEST 50 STREET","10019","2122582988","49","2013-08-29 00:00:00","B","","","A","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2013-08-27 00:00:00","U","06F","24","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2013-08-27 00:00:00","U","10F","24","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-09-10 00:00:00","D","10D","10","A","2013-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"41249082","B FLAT","1","277","CHURCH STREET","10013","2123430277","49","2013-07-10 00:00:00","D","06D","10","A","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41257259","L'AMICI","4","160-53","ROCKAWAY BOULEVARD","11434","7189786300","62","2013-07-29 00:00:00","F","02G","49","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2013-06-25 00:00:00","D","10D","4","A","2013-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2012-08-22 00:00:00","D","10B","12","A","2012-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2013-04-22 00:00:00","F","04H","13","A","2013-04-22 00:00:00","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2013-04-22 00:00:00","F","06C","13","A","2013-04-22 00:00:00","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2013-03-30 00:00:00","U","02G","23","B","2013-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"41262936","MICKEY'S PLACE","4","40-17","BELL BOULEVARD","11361","7182248152","49","2013-06-13 00:00:00","U","10B","18","B","2013-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2013-04-24 00:00:00","D","04L","9","A","2013-04-24 00:00:00","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2013-04-24 00:00:00","D","10F","13","A","2013-04-24 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2013-03-11 00:00:00","U","04J","8","A","2013-03-11 00:00:00","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2013-07-03 00:00:00","D","04N","13","A","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"41257259","L'AMICI","4","160-53","ROCKAWAY BOULEVARD","11434","7189786300","62","2013-07-29 00:00:00","F","02B","49","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41301266","VIVI","1","248","EAST 52 STREET","10022","2128266880","49","2013-03-06 00:00:00","D","04L","11","A","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41301266","VIVI","1","248","EAST 52 STREET","10022","2128266880","49","2013-03-06 00:00:00","D","10F","11","A","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2013-03-19 00:00:00","U","08A","20","B","2013-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2013-08-09 00:00:00","U","08A","17","Z","2013-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41262936","MICKEY'S PLACE","4","40-17","BELL BOULEVARD","11361","7182248152","49","2013-06-13 00:00:00","U","02G","18","B","2013-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2013-08-29 00:00:00","D","02B","13","A","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2013-08-27 00:00:00","U","10B","24","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2012-12-19 00:00:00","U","02B","27","B","2012-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2013-07-03 00:00:00","D","04M","13","A","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"41257259","L'AMICI","4","160-53","ROCKAWAY BOULEVARD","11434","7189786300","62","2013-07-29 00:00:00","F","05F","49","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41257259","L'AMICI","4","160-53","ROCKAWAY BOULEVARD","11434","7189786300","62","2013-07-29 00:00:00","F","10F","49","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41249655","NEW TOYO JAPANESE RESTAURANT","4","73-06","METROPOLITAN AVENUE","11379","7188948880","49","2013-08-03 00:00:00","D","06B","12","A","2013-08-03 00:00:00","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2013-01-15 00:00:00","D","10F","10","A","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"41257259","L'AMICI","4","160-53","ROCKAWAY BOULEVARD","11434","7189786300","62","2013-07-29 00:00:00","F","10D","49","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41278885","SAKURA JAPANESE RESTAURANT 3118","3","3118","AVENUE U","11229","7186460666","49","2013-06-18 00:00:00","D","10F","7","A","2013-06-18 00:00:00","2013-09-13 01:01:06.177000000" +"41278931","EAST SUSHI BISTRO","3","2106","EAST 19 STREET","11229","7186480800","49","2013-03-04 00:00:00","D","10B","11","A","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-08-29 00:00:00","F","04M","39","Z","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-08-29 00:00:00","F","08A","39","Z","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2012-12-19 00:00:00","U","02G","27","B","2012-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2013-08-13 00:00:00","D","04C","13","A","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2013-03-19 00:00:00","U","04L","20","B","2013-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41310837","KYOTO SUSHI V","5","418","FOREST AVENUE","10301","7187276666","49","2012-12-19 00:00:00","D","06C","12","A","2012-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"41310837","KYOTO SUSHI V","5","418","FOREST AVENUE","10301","7187276666","49","2012-12-19 00:00:00","D","10F","12","A","2012-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2012-08-22 00:00:00","D","04L","12","A","2012-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2013-05-07 00:00:00","U","04M","27","Z","2013-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41274187","KAGETSU JAPANESE RESTAURANT","3","2004","BATH AVENUE","11214","7184498880","49","2013-02-20 00:00:00","D","06C","12","A","2013-02-20 00:00:00","2013-09-13 01:01:06.177000000" +"41274187","KAGETSU JAPANESE RESTAURANT","3","2004","BATH AVENUE","11214","7184498880","49","2013-02-20 00:00:00","D","10F","12","A","2013-02-20 00:00:00","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2013-08-09 00:00:00","U","04M","17","Z","2013-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2013-01-15 00:00:00","D","06C","10","A","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"41257259","L'AMICI","4","160-53","ROCKAWAY BOULEVARD","11434","7189786300","62","2013-07-29 00:00:00","F","04H","49","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41257259","L'AMICI","4","160-53","ROCKAWAY BOULEVARD","11434","7189786300","62","2013-07-29 00:00:00","F","10B","49","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2013-07-25 00:00:00","F","02B","32","C","2013-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2013-07-25 00:00:00","F","06E","32","C","2013-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-03-13 00:00:00","D","10F","11","A","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2013-07-01 00:00:00","D","06C","7","A","2013-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41320193","KAWAII SUSHI","4","82-19","153 AVENUE","11414","7188486888","49","2013-06-08 00:00:00","U","10F","10","A","2013-06-08 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2013-06-12 00:00:00","F","10F","50","C","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2013-08-13 00:00:00","D","02B","9","A","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2013-09-04 00:00:00","F","04D","47","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2013-09-04 00:00:00","F","10D","47","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-08-29 00:00:00","F","02C","39","Z","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2013-03-26 00:00:00","D","10F","10","A","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2013-06-25 00:00:00","D","10F","4","A","2013-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41288039","YAMATO JAPANESE CUISINE","4","3323","FRANCIS LEWIS BOULEVARD","11358","7183211508","49","2013-01-09 00:00:00","D","10H","6","A","2013-01-09 00:00:00","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2013-07-25 00:00:00","F","04A","32","C","2013-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"41273539","SAPPORO JAPANESE CUISINE","3","7812","3 AVENUE","11209","7187483322","49","2013-06-12 00:00:00","D","08A","10","A","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2013-08-08 00:00:00","O","06C","10","Z","2013-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2013-07-01 00:00:00","U","04L","13","A","2013-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2013-07-10 00:00:00","D","02G","10","A","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2013-06-03 00:00:00","U","04H","24","Z","2013-06-03 00:00:00","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2013-06-03 00:00:00","U","08A","24","Z","2013-06-03 00:00:00","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2013-07-23 00:00:00","D","06D","11","A","2013-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2013-06-12 00:00:00","F","04H","50","C","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41292992","KOUZAN","1","685","AMSTERDAM AVENUE","10025","2122808099","49","2012-08-24 00:00:00","D","08A","11","A","2012-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2013-09-04 00:00:00","F","02G","47","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-08-29 00:00:00","F","02B","39","Z","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2013-05-03 00:00:00","U","04L","13","A","2013-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2013-07-25 00:00:00","F","06D","32","C","2013-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"41289081","MIZU SUSHI","3","192 ","BEDFORD AVENUE ","11249","7187826666","49","2013-05-01 00:00:00","U","02B","12","A","2013-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2013-05-07 00:00:00","U","08A","27","Z","2013-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41273539","SAPPORO JAPANESE CUISINE","3","7812","3 AVENUE","11209","7187483322","49","2013-06-12 00:00:00","D","04M","10","A","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2013-03-30 00:00:00","U","04L","23","B","2013-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"41305601","PALACE OF JAPAN","2","3505","JOHNSON AVENUE","10463","7185438833","49","2013-01-16 00:00:00","D","02G","11","A","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2013-07-23 00:00:00","D","08C","11","A","2013-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41338985","MELLIES RESTAURANT","4","137-81","NORTHERN BLVD","11354","7188862988","20","2013-05-31 00:00:00","F","10E","49","C","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2013-05-30 00:00:00","F","08A","30","C","2013-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"41278885","SAKURA JAPANESE RESTAURANT 3118","3","3118","AVENUE U","11229","7186460666","49","2013-06-18 00:00:00","D","06A","7","A","2013-06-18 00:00:00","2013-09-13 01:01:06.177000000" +"41279614","BLUE RIBBON SUSHI BAR & GRILL","1","6","COLUMBUS CIRCLE","10019","2123970404","49","2013-04-25 00:00:00","D","02G","13","A","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41279614","BLUE RIBBON SUSHI BAR & GRILL","1","6","COLUMBUS CIRCLE","10019","2123970404","49","2013-04-25 00:00:00","D","06E","13","A","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2013-05-07 00:00:00","U","08C","27","Z","2013-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2012-09-12 00:00:00","O","09A","14","C","2012-09-12 00:00:00","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2013-09-10 00:00:00","O","10F","6","Z","2013-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2013-08-08 00:00:00","D","06B","12","A","2013-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2013-06-03 00:00:00","U","02B","24","Z","2013-06-03 00:00:00","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2013-06-03 00:00:00","U","04M","24","Z","2013-06-03 00:00:00","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2013-07-23 00:00:00","D","10F","11","A","2013-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2013-04-24 00:00:00","D","04C","13","A","2013-04-24 00:00:00","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2013-08-09 00:00:00","U","02G","21","Z","2013-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2013-08-09 00:00:00","U","09B","21","Z","2013-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2013-08-13 00:00:00","D","06D","13","A","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41292992","KOUZAN","1","685","AMSTERDAM AVENUE","10025","2122808099","49","2012-08-24 00:00:00","D","04N","11","A","2012-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2013-03-26 00:00:00","F","10H","30","C","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2013-03-26 00:00:00","F","10I","30","C","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2012-12-03 00:00:00","D","10B","13","A","2012-12-03 00:00:00","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2013-05-30 00:00:00","F","04C","30","C","2013-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"41288039","YAMATO JAPANESE CUISINE","4","3323","FRANCIS LEWIS BOULEVARD","11358","7183211508","49","2013-01-09 00:00:00","D","10F","6","A","2013-01-09 00:00:00","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2012-10-15 00:00:00","D","10B","11","A","2012-10-15 00:00:00","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2013-02-13 00:00:00","D","06D","11","A","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2013-02-13 00:00:00","D","10F","11","A","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2013-04-05 00:00:00","D","04L","9","A","2013-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2013-03-30 00:00:00","U","04M","23","B","2013-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-03-26 00:00:00","F","04L","26","B","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2013-08-08 00:00:00","D","10C","12","A","2013-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2013-04-30 00:00:00","U","04H","7","A","2013-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2013-07-23 00:00:00","D","10D","11","A","2013-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2013-04-24 00:00:00","D","10D","13","A","2013-04-24 00:00:00","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2012-09-12 00:00:00","O","10F","14","C","2012-09-12 00:00:00","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2013-07-10 00:00:00","D","10F","10","A","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2012-11-26 00:00:00","D","04H","10","A","2012-11-26 00:00:00","2013-09-13 01:01:06.177000000" +"41310837","KYOTO SUSHI V","5","418","FOREST AVENUE","10301","7187276666","49","2012-12-19 00:00:00","D","06B","12","A","2012-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2013-03-26 00:00:00","F","04L","30","C","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2013-03-26 00:00:00","F","06F","30","C","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41320193","KAWAII SUSHI","4","82-19","153 AVENUE","11414","7188486888","49","2013-06-08 00:00:00","U","02B","10","A","2013-06-08 00:00:00","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2013-02-13 00:00:00","D","10J","11","A","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41312710","CURRY YA","1","214","EAST 10 STREET","10003","2129952877","49","2013-04-06 00:00:00","D","10B","12","A","2013-04-06 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2013-06-12 00:00:00","F","02B","50","C","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2013-06-12 00:00:00","F","06C","50","C","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2013-09-04 00:00:00","F","04N","47","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2013-09-04 00:00:00","F","10F","47","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2013-06-26 00:00:00","D","04L","11","A","2013-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2013-03-20 00:00:00","U","02G","22","B","2013-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2013-03-30 00:00:00","U","08A","23","B","2013-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2012-10-15 00:00:00","D","10F","11","A","2012-10-15 00:00:00","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2013-03-26 00:00:00","F","10D","30","C","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2013-04-18 00:00:00","F","02G","22","B","2013-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2013-04-18 00:00:00","F","04H","22","B","2013-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41325606","NEW SUSHI Q JAPANESE RESTAURANT","2","1610","CROSBY AVE","10461","7188221627","49","2013-04-18 00:00:00","D","02B","7","A","2013-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2013-04-02 00:00:00","U","04L","19","B","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41305601","PALACE OF JAPAN","2","3505","JOHNSON AVENUE","10463","7185438833","49","2013-01-16 00:00:00","D","10F","11","A","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2013-05-30 00:00:00","F","04K","30","C","2013-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2013-05-30 00:00:00","F","06D","30","C","2013-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2013-07-23 00:00:00","D","02G","13","A","2013-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2013-07-23 00:00:00","D","06D","13","A","2013-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41312710","CURRY YA","1","214","EAST 10 STREET","10003","2129952877","49","2013-04-06 00:00:00","D","06D","12","A","2013-04-06 00:00:00","2013-09-13 01:01:06.177000000" +"41301266","VIVI","1","248","EAST 52 STREET","10022","2128266880","49","2013-03-06 00:00:00","D","08A","11","A","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2013-04-27 00:00:00","F","10H","19","B","2013-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-03-26 00:00:00","F","02B","26","B","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-03-26 00:00:00","F","06A","26","B","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2013-09-04 00:00:00","F","06B","47","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2013-09-04 00:00:00","F","10B","47","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2013-08-09 00:00:00","U","04C","21","Z","2013-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2013-08-09 00:00:00","U","10F","21","Z","2013-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2013-08-08 00:00:00","O","10B","10","Z","2013-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41306692","FUJI","1","455","MAIN STREET","10044","2125831688","49","2012-08-21 00:00:00","D","03E","10","A","2012-08-21 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2013-06-12 00:00:00","F","04C","50","C","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2013-06-12 00:00:00","F","04J","50","C","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2013-09-04 00:00:00","F","08A","47","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2013-05-02 00:00:00","F","06D","24","B","2013-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2013-08-13 00:00:00","D","10A","9","A","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2013-08-08 00:00:00","D","10F","12","A","2013-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41370445","SUSHI YAMA","3","268","PROSPECT PARK WEST","11215","7187883896","49","2012-12-15 00:00:00","D","04L","9","A","2012-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"41324332","FUJIYAMA JAPANESE CUISINE","3","7307","13 AVENUE","11228","7182568186","49","2013-06-13 00:00:00","D","04C","9","A","2013-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2013-04-18 00:00:00","F","04L","22","B","2013-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2013-03-26 00:00:00","F","06C","30","C","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41338985","MELLIES RESTAURANT","4","137-81","NORTHERN BLVD","11354","7188862988","20","2013-05-31 00:00:00","F","06F","49","C","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2013-06-26 00:00:00","D","08A","11","A","2013-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"41372868","MONOKAWA","1","157","EAST 28 STREET","10016","2126847830","49","2013-03-28 00:00:00","D","10B","3","A","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2013-06-12 00:00:00","F","04L","50","C","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2013-07-15 00:00:00","U","04N","17","B","2013-07-15 00:00:00","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2013-07-15 00:00:00","U","08A","17","B","2013-07-15 00:00:00","2013-09-13 01:01:06.177000000" +"41338985","MELLIES RESTAURANT","4","137-81","NORTHERN BLVD","11354","7188862988","20","2013-05-31 00:00:00","F","08A","49","C","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2013-06-25 00:00:00","F","04C","22","B","2013-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2013-03-28 00:00:00","F","04L","27","B","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2013-03-28 00:00:00","F","08A","27","B","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2013-05-02 00:00:00","F","04N","24","B","2013-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2013-09-04 00:00:00","F","02B","47","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41327109","SAKURA","3","2832","CONEY ISLAND AVE","11235","7186488880","49","2013-07-01 00:00:00","U","02G","8","A","2013-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2013-03-21 00:00:00","D","02B","11","A","2013-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2012-09-12 00:00:00","O","06D","14","C","2012-09-12 00:00:00","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2013-07-15 00:00:00","U","04H","17","B","2013-07-15 00:00:00","2013-09-13 01:01:06.177000000" +"41338985","MELLIES RESTAURANT","4","137-81","NORTHERN BLVD","11354","7188862988","20","2013-05-31 00:00:00","F","02B","49","C","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2013-04-27 00:00:00","F","04M","19","B","2013-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-03-26 00:00:00","F","04M","26","B","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-03-26 00:00:00","F","06B","26","B","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2013-05-03 00:00:00","U","04M","13","A","2013-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2012-10-15 00:00:00","D","09C","11","A","2012-10-15 00:00:00","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2013-05-02 00:00:00","D","02G","10","A","2013-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2013-03-28 00:00:00","F","04A","27","B","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2013-04-10 00:00:00","U","08A","18","B","2013-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2013-05-03 00:00:00","U","08A","13","A","2013-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2012-11-19 00:00:00","D","06A","5","A","2012-11-19 00:00:00","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2012-12-03 00:00:00","D","10H","13","A","2012-12-03 00:00:00","2013-09-13 01:01:06.177000000" +"41338985","MELLIES RESTAURANT","4","137-81","NORTHERN BLVD","11354","7188862988","20","2013-05-31 00:00:00","F","04L","49","C","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41381844","QOO","3","367 ","METROPOLITAN AVENUE","11211","7183849493","49","2013-05-31 00:00:00","D","06C","9","A","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2013-05-02 00:00:00","F","04H","24","B","2013-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2013-05-02 00:00:00","F","08A","24","B","2013-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2012-12-03 00:00:00","D","04C","13","A","2012-12-03 00:00:00","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2012-12-03 00:00:00","D","10F","13","A","2012-12-03 00:00:00","2013-09-13 01:01:06.177000000" +"41338985","MELLIES RESTAURANT","4","137-81","NORTHERN BLVD","11354","7188862988","20","2013-05-31 00:00:00","F","02G","49","C","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41338985","MELLIES RESTAURANT","4","137-81","NORTHERN BLVD","11354","7188862988","20","2013-05-31 00:00:00","F","06E","49","C","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2012-11-14 00:00:00","D","10F","13","A","2012-11-14 00:00:00","2013-09-13 01:01:06.177000000" +"41362519","DEEP BLUE","4","000","JOHN F KENNEDY INTL AIRPORT","11430","7186566210","49","2013-07-02 00:00:00","D","04N","11","A","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41362519","DEEP BLUE","4","000","JOHN F KENNEDY INTL AIRPORT","11430","7186566210","49","2013-07-02 00:00:00","D","08A","11","A","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41394959","BOHEMIAN NEW YORK","1","57","GREAT JONES ST","10012","2123881070","49","2013-04-16 00:00:00","F","04J","38","C","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2013-05-02 00:00:00","D","10F","10","A","2013-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2013-09-10 00:00:00","O","10B","6","Z","2013-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"41398012","PICNIC","1","151","EAST 57 STREET","10022","2127510900","03","2013-08-22 00:00:00","F","04J","49","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2013-04-27 00:00:00","F","04H","19","B","2013-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41373322","ICHIE","1","53","WEST 106 STREET","10025","2128652888","49","2012-10-10 00:00:00","D","10F","7","A","2012-10-10 00:00:00","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2013-06-12 00:00:00","D","02G","12","A","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2012-11-14 00:00:00","D","02B","13","A","2012-11-14 00:00:00","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2013-07-29 00:00:00","D","02B","9","A","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2013-07-29 00:00:00","D","10B","9","A","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2013-06-26 00:00:00","D","08A","11","A","2013-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2013-06-26 00:00:00","D","10F","11","A","2013-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2013-07-24 00:00:00","D","10I","11","A","2013-07-24 00:00:00","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2013-07-15 00:00:00","U","04L","17","B","2013-07-15 00:00:00","2013-09-13 01:01:06.177000000" +"41394959","BOHEMIAN NEW YORK","1","57","GREAT JONES ST","10012","2123881070","49","2013-04-16 00:00:00","F","05D","38","C","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41394959","BOHEMIAN NEW YORK","1","57","GREAT JONES ST","10012","2123881070","49","2013-04-16 00:00:00","F","10A","38","C","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-03-26 00:00:00","F","10F","26","B","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41396618","BINY JAPANESE RESTAURANT","1","393","CANAL STREET","10013","2123345490","49","2012-12-18 00:00:00","D","10B","10","A","2012-12-18 00:00:00","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2013-05-21 00:00:00","D","08A","11","A","2013-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41398012","PICNIC","1","151","EAST 57 STREET","10022","2127510900","03","2013-08-22 00:00:00","F","02B","49","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41398012","PICNIC","1","151","EAST 57 STREET","10022","2127510900","03","2013-08-22 00:00:00","F","10B","49","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2013-07-03 00:00:00","D","06C","8","A","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2013-04-17 00:00:00","U","04J","27","B","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2012-11-14 00:00:00","D","10B","13","A","2012-11-14 00:00:00","2013-09-13 01:01:06.177000000" +"41408277","NOBI SUSHI","1","437","3RD AVENUE","10016","2124818333","49","2012-12-04 00:00:00","D","06A","13","A","2012-12-04 00:00:00","2013-09-13 01:01:06.177000000" +"41409894","Pado Sushi","4","171-53","46 AVENUE","11358","7183213047","05","2013-09-09 00:00:00","F","08A","49","Z","2013-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2012-11-13 00:00:00","D","05D","10","A","2012-11-13 00:00:00","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2013-04-10 00:00:00","U","02B","18","B","2013-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2013-05-21 00:00:00","D","04L","11","A","2013-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2013-03-21 00:00:00","D","10B","11","A","2013-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41412577","GENKI SUSHI","5","262","ARDEN AVENUE","10312","7182277375","49","2013-06-19 00:00:00","D","10F","8","A","2013-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2013-07-16 00:00:00","D","02G","9","A","2013-07-16 00:00:00","2013-09-13 01:01:06.177000000" +"41381844","QOO","3","367 ","METROPOLITAN AVENUE","11211","7183849493","49","2013-05-31 00:00:00","D","10F","9","A","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41370445","SUSHI YAMA","3","268","PROSPECT PARK WEST","11215","7187883896","49","2012-12-15 00:00:00","D","08A","9","A","2012-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"41388838","SOUEN NOODLE","1","326","EAST 6 STREET","10003","2123881155","49","2013-07-10 00:00:00","D","06E","12","A","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2013-06-10 00:00:00","D","09C","6","A","2013-06-10 00:00:00","2013-09-13 01:01:06.177000000" +"41385488","INAKAYA","1","620","8 AVENUE","10018","2123542195","49","2013-06-10 00:00:00","D","10F","2","A","2013-06-10 00:00:00","2013-09-13 01:01:06.177000000" +"41385990","MITOUSHI SUSHI","3","1221 ","QUENTIN ROAD ","11229","7189989882","49","2013-02-14 00:00:00","D","02G","12","A","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2013-08-21 00:00:00","D","06A","7","A","2013-08-21 00:00:00","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2013-06-20 00:00:00","D","06C","13","A","2013-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2013-06-25 00:00:00","D","10F","9","A","2013-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41431748","GOWASABI","4","34-02","30 AVENUE","11103","7182747354","49","2012-11-13 00:00:00","D","09C","9","A","2012-11-13 00:00:00","2013-09-13 01:01:06.177000000" +"41419933","KOTO SUSHI & STEAK","3","552","HENRY STREET","11231","7182228055","49","2013-05-22 00:00:00","D","02B","13","A","2013-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2013-04-18 00:00:00","U","02B","12","A","2013-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2013-04-18 00:00:00","U","10A","12","A","2013-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41385990","MITOUSHI SUSHI","3","1221 ","QUENTIN ROAD ","11229","7189989882","49","2013-02-14 00:00:00","D","06D","12","A","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2013-04-10 00:00:00","U","04L","18","B","2013-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-08-06 00:00:00","U","04N","19","Z","2013-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-08-06 00:00:00","U","08A","19","Z","2013-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-08-06 00:00:00","U","10D","19","Z","2013-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2013-07-24 00:00:00","D","10H","11","A","2013-07-24 00:00:00","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2013-07-29 00:00:00","U","04L","18","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41389136","SUSHI DELIGHT","1","157","HESTER STREET","10013","9174780453","49","2013-05-29 00:00:00","D","10F","4","A","2013-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2013-09-09 00:00:00","D","08B","9","A","2013-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41394959","BOHEMIAN NEW YORK","1","57","GREAT JONES ST","10012","2123881070","49","2013-04-16 00:00:00","F","06A","38","C","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41387911","ZUZU RAMEN","3","173","4 AVENUE","11217","7183989898","49","2013-03-21 00:00:00","U","02G","7","A","2013-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2013-04-09 00:00:00","U","04H","9","A","2013-04-09 00:00:00","2013-09-13 01:01:06.177000000" +"41388838","SOUEN NOODLE","1","326","EAST 6 STREET","10003","2123881155","49","2013-07-10 00:00:00","D","04C","12","A","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2013-01-24 00:00:00","D","02G","9","A","2013-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2013-03-21 00:00:00","D","10F","11","A","2013-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2013-03-27 00:00:00","U","06F","12","A","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2013-06-26 00:00:00","D","04M","11","A","2013-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2013-06-20 00:00:00","D","02G","13","A","2013-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-08-14 00:00:00","U","02G","19","Z","2013-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41381813","SUSHI TIME","4","7242 ","AUSTIN STREET ","11375","7182610111","49","2013-01-31 00:00:00","D","06D","5","A","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2013-07-02 00:00:00","U","04M","26","B","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2013-06-25 00:00:00","D","02G","9","A","2013-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41446168","YUMMY SUSHI HOUSE","4","135-11","38 AVENUE","11354","6463313119","49","2013-06-05 00:00:00","D","08A","11","A","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2013-04-09 00:00:00","U","09C","9","A","2013-04-09 00:00:00","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2013-01-24 00:00:00","D","10F","9","A","2013-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2013-07-11 00:00:00","U","06E","11","A","2013-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2013-08-29 00:00:00","U","02G","19","Z","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2013-08-22 00:00:00","D","04L","12","A","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2013-03-14 00:00:00","D","10F","3","A","2013-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2013-07-29 00:00:00","U","06D","18","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2013-07-29 00:00:00","U","08C","18","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41450783","KIKKU JAPANESE RESTAURANT","1","50","WEST 55 STREET","10019","2125828357","49","2013-06-24 00:00:00","U","06C","11","A","2013-06-24 00:00:00","2013-09-13 01:01:06.177000000" +"41452462","CRYSTAL","1","212","EAST 52 STREET","10022","2123088885","49","2013-06-11 00:00:00","D","02G","11","A","2013-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2013-07-29 00:00:00","U","08A","18","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41409894","Pado Sushi","4","171-53","46 AVENUE","11358","7183213047","05","2013-09-09 00:00:00","F","06C","49","Z","2013-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2013-07-24 00:00:00","D","10D","11","A","2013-07-24 00:00:00","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2013-07-18 00:00:00","D","06F","5","A","2013-07-18 00:00:00","2013-09-13 01:01:06.177000000" +"41394230","EAST SUSHI","5","4371","AMBOY ROAD","10312","7189668888","49","2012-08-27 00:00:00","D","08A","10","A","2012-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2013-09-09 00:00:00","D","02G","9","A","2013-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41394959","BOHEMIAN NEW YORK","1","57","GREAT JONES ST","10012","2123881070","49","2013-04-16 00:00:00","F","06D","38","C","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-08-14 00:00:00","U","10D","19","Z","2013-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2013-07-24 00:00:00","D","06C","11","A","2013-07-24 00:00:00","2013-09-13 01:01:06.177000000" +"41409894","Pado Sushi","4","171-53","46 AVENUE","11358","7183213047","05","2013-09-09 00:00:00","F","04N","49","Z","2013-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41409894","Pado Sushi","4","171-53","46 AVENUE","11358","7183213047","05","2013-09-09 00:00:00","F","05D","49","Z","2013-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2013-07-15 00:00:00","F","08A","15","B","2013-07-15 00:00:00","2013-09-13 01:01:06.177000000" +"41394959","BOHEMIAN NEW YORK","1","57","GREAT JONES ST","10012","2123881070","49","2013-04-16 00:00:00","F","04D","38","C","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41398012","PICNIC","1","151","EAST 57 STREET","10022","2127510900","03","2013-08-22 00:00:00","F","02G","49","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41398012","PICNIC","1","151","EAST 57 STREET","10022","2127510900","03","2013-08-22 00:00:00","F","06E","49","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41398012","PICNIC","1","151","EAST 57 STREET","10022","2127510900","03","2013-08-22 00:00:00","F","08A","49","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41408277","NOBI SUSHI","1","437","3RD AVENUE","10016","2124818333","49","2012-12-04 00:00:00","D","02B","13","A","2012-12-04 00:00:00","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2013-08-29 00:00:00","U","08A","19","Z","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2013-06-10 00:00:00","D","10F","6","A","2013-06-10 00:00:00","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2013-04-17 00:00:00","U","02G","27","B","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41398012","PICNIC","1","151","EAST 57 STREET","10022","2127510900","03","2013-08-22 00:00:00","F","04N","49","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41398012","PICNIC","1","151","EAST 57 STREET","10022","2127510900","03","2013-08-22 00:00:00","F","10F","49","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2013-08-22 00:00:00","U","08A","27","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41409894","Pado Sushi","4","171-53","46 AVENUE","11358","7183213047","05","2013-09-09 00:00:00","F","09C","49","Z","2013-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41419933","KOTO SUSHI & STEAK","3","552","HENRY STREET","11231","7182228055","49","2013-05-22 00:00:00","D","06C","13","A","2013-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2013-04-22 00:00:00","D","06C","12","A","2013-04-22 00:00:00","2013-09-13 01:01:06.177000000" +"41450436","CASBAR","2","1362","CASTLE HILL AVENUE","10462","7188229596","12","2012-11-28 00:00:00","F","07A","49","C","2012-11-28 00:00:00","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2013-06-25 00:00:00","D","06C","7","A","2013-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41450783","KIKKU JAPANESE RESTAURANT","1","50","WEST 55 STREET","10019","2125828357","49","2013-06-24 00:00:00","U","04M","11","A","2013-06-24 00:00:00","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2013-06-11 00:00:00","F","04L","31","C","2013-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2013-06-11 00:00:00","F","08A","31","C","2013-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2013-08-14 00:00:00","O","10F","2","Z","2013-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41462077","TAKASHI","1","456","HUDSON STREET","10014","2124142929","49","2013-07-09 00:00:00","D","10B","9","A","2013-07-09 00:00:00","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2013-04-08 00:00:00","U","06C","16","B","2013-04-08 00:00:00","2013-09-13 01:01:06.177000000" +"41452462","CRYSTAL","1","212","EAST 52 STREET","10022","2123088885","49","2013-06-11 00:00:00","D","10F","11","A","2013-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2013-06-10 00:00:00","D","10I","6","A","2013-06-10 00:00:00","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2013-03-20 00:00:00","D","10B","12","A","2013-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41409894","Pado Sushi","4","171-53","46 AVENUE","11358","7183213047","05","2013-09-09 00:00:00","F","04C","49","Z","2013-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2012-10-22 00:00:00","D","02G","8","A","2012-10-22 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2013-04-18 00:00:00","F","10F","23","B","2013-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2013-07-15 00:00:00","F","06C","15","B","2013-07-15 00:00:00","2013-09-13 01:01:06.177000000" +"41409894","Pado Sushi","4","171-53","46 AVENUE","11358","7183213047","05","2013-09-09 00:00:00","F","02G","49","Z","2013-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41409894","Pado Sushi","4","171-53","46 AVENUE","11358","7183213047","05","2013-09-09 00:00:00","F","02H","49","Z","2013-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2013-04-08 00:00:00","U","06A","16","B","2013-04-08 00:00:00","2013-09-13 01:01:06.177000000" +"41412577","GENKI SUSHI","5","262","ARDEN AVENUE","10312","7182277375","49","2013-06-19 00:00:00","D","06C","8","A","2013-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2013-08-15 00:00:00","D","04H","12","A","2013-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2013-07-16 00:00:00","D","10B","9","A","2013-07-16 00:00:00","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2013-08-22 00:00:00","D","08A","12","A","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2013-08-22 00:00:00","D","08B","12","A","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2013-07-09 00:00:00","U","09A","11","A","2013-07-09 00:00:00","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2013-04-11 00:00:00","U","02G","11","A","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2013-05-23 00:00:00","U","04K","12","A","2013-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"41435938","SUSHI YOU","4","215-05","73 AVENUE","11364","7187956557","49","2012-09-12 00:00:00","D","09A","12","A","2012-09-12 00:00:00","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2013-04-17 00:00:00","U","08A","27","B","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41436709","EAST NOODLE & IZAKAYA","1","119","2 AVENUE","10003","2129824285","49","2013-05-04 00:00:00","U","06E","15","B","2013-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-06-25 00:00:00","U","04M","24","B","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41418929","SUSHI JUN","1","875","3 AVENUE","10022","2123555303","49","2013-05-22 00:00:00","D","02G","7","A","2013-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41436709","EAST NOODLE & IZAKAYA","1","119","2 AVENUE","10003","2129824285","49","2013-05-04 00:00:00","U","09B","15","B","2013-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2013-08-20 00:00:00","D","10H","12","A","2013-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2013-06-24 00:00:00","D","08A","13","A","2013-06-24 00:00:00","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2013-06-24 00:00:00","D","10B","13","A","2013-06-24 00:00:00","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2013-07-02 00:00:00","U","08A","26","B","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-06-25 00:00:00","U","02B","24","B","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-06-25 00:00:00","U","04L","24","B","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-06-25 00:00:00","U","06F","24","B","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2013-06-17 00:00:00","U","02G","15","B","2013-06-17 00:00:00","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2013-08-15 00:00:00","D","06A","12","A","2013-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"41480898","HANABI JAPANESE RESTAURANT","1","1450","2 AVENUE","10021","2125701888","49","2013-01-30 00:00:00","D","04M","9","A","2013-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2013-04-08 00:00:00","U","06E","16","B","2013-04-08 00:00:00","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2013-07-13 00:00:00","U","02I","24","B","2013-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41446168","YUMMY SUSHI HOUSE","4","135-11","38 AVENUE","11354","6463313119","49","2013-06-05 00:00:00","D","04M","11","A","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41446168","YUMMY SUSHI HOUSE","4","135-11","38 AVENUE","11354","6463313119","49","2013-06-05 00:00:00","D","09C","11","A","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2013-08-20 00:00:00","D","06C","12","A","2013-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41471136","NAKATA SUSHI","5","1775-D ","RICHMOND ROAD ","10306","7189801891","49","2012-09-05 00:00:00","D","09C","9","A","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41471136","NAKATA SUSHI","5","1775-D ","RICHMOND ROAD ","10306","7189801891","49","2012-09-05 00:00:00","D","10F","9","A","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41471288","THAT SUSHI SPOT","3","2462","NOSTRAND AVENUE","11210","3475875100","49","2012-12-19 00:00:00","D","10D","5","A","2012-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-08-14 00:00:00","U","06C","19","Z","2013-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-08-14 00:00:00","U","10F","19","Z","2013-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-06-25 00:00:00","U","08A","24","B","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2013-05-01 00:00:00","F","04M","28","C","2013-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2013-05-01 00:00:00","F","06F","28","C","2013-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2013-07-02 00:00:00","U","02G","26","B","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2013-03-05 00:00:00","D","10J","6","A","2013-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"41427225","ELEVAGE","1","302","EAST 45 STREET","10017","2129220930","49","2013-05-28 00:00:00","D","06C","5","A","2013-05-28 00:00:00","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2013-03-27 00:00:00","U","06E","12","A","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2013-03-27 00:00:00","U","10H","12","A","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"41450436","CASBAR","2","1362","CASTLE HILL AVENUE","10462","7188229596","12","2012-11-28 00:00:00","F","04N","49","C","2012-11-28 00:00:00","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2013-08-22 00:00:00","D","04N","12","A","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2013-08-29 00:00:00","U","04M","19","Z","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2013-01-31 00:00:00","D","06D","12","A","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2012-11-24 00:00:00","D","10H","11","A","2012-11-24 00:00:00","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2012-11-24 00:00:00","D","10B","11","A","2012-11-24 00:00:00","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-08-06 00:00:00","U","10A","19","Z","2013-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2013-07-02 00:00:00","U","02B","26","B","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2013-08-15 00:00:00","U","02B","7","A","2013-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"41435938","SUSHI YOU","4","215-05","73 AVENUE","11364","7187956557","49","2012-09-12 00:00:00","D","06D","12","A","2012-09-12 00:00:00","2013-09-13 01:01:06.177000000" +"41435938","SUSHI YOU","4","215-05","73 AVENUE","11364","7187956557","49","2012-09-12 00:00:00","D","10H","12","A","2012-09-12 00:00:00","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2013-03-20 00:00:00","U","06C","24","B","2013-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41436709","EAST NOODLE & IZAKAYA","1","119","2 AVENUE","10003","2129824285","49","2013-05-04 00:00:00","U","06C","15","B","2013-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2013-08-26 00:00:00","D","06D","10","A","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41452462","CRYSTAL","1","212","EAST 52 STREET","10022","2123088885","49","2013-06-11 00:00:00","D","10I","11","A","2013-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2013-02-28 00:00:00","U","09B","10","A","2013-02-28 00:00:00","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2013-05-01 00:00:00","F","08C","28","C","2013-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2013-09-11 00:00:00","F","02G","32","Z","2013-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2013-04-17 00:00:00","F","08A","25","B","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2013-03-05 00:00:00","D","10I","6","A","2013-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2013-08-22 00:00:00","U","04H","27","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2013-06-13 00:00:00","D","06D","10","A","2013-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2013-06-13 00:00:00","D","10F","10","A","2013-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2013-02-19 00:00:00","U","10B","21","B","2013-02-19 00:00:00","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2013-01-31 00:00:00","D","02H","12","A","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2013-08-20 00:00:00","D","06F","12","A","2013-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2013-06-11 00:00:00","F","02G","31","C","2013-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2013-06-11 00:00:00","F","06D","31","C","2013-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2013-06-11 00:00:00","F","06E","31","C","2013-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41450436","CASBAR","2","1362","CASTLE HILL AVENUE","10462","7188229596","12","2012-11-28 00:00:00","F","03A","49","C","2012-11-28 00:00:00","2013-09-13 01:01:06.177000000" +"41450436","CASBAR","2","1362","CASTLE HILL AVENUE","10462","7188229596","12","2012-11-28 00:00:00","F","08A","49","C","2012-11-28 00:00:00","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2013-03-20 00:00:00","D","08C","12","A","2013-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2013-03-20 00:00:00","D","10F","12","A","2013-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2013-07-16 00:00:00","D","06D","13","A","2013-07-16 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2013-08-26 00:00:00","D","08B","10","A","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2013-07-15 00:00:00","F","04L","15","B","2013-07-15 00:00:00","2013-09-13 01:01:06.177000000" +"41446168","YUMMY SUSHI HOUSE","4","135-11","38 AVENUE","11354","6463313119","49","2013-06-05 00:00:00","D","04L","11","A","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2012-11-24 00:00:00","D","10F","11","A","2012-11-24 00:00:00","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2013-05-02 00:00:00","U","02B","7","A","2013-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2013-06-24 00:00:00","D","04L","13","A","2013-06-24 00:00:00","2013-09-13 01:01:06.177000000" +"41449961","PENN SUSHI","1","000","PENN STATION","10001","2125645496","49","2013-02-06 00:00:00","U","04L","5","A","2013-02-06 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2013-04-18 00:00:00","F","02B","23","B","2013-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2013-07-31 00:00:00","U","06F","22","B","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2013-04-25 00:00:00","F","04K","24","B","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2013-03-19 00:00:00","D","06F","13","A","2013-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2013-05-07 00:00:00","D","10B","13","A","2013-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2013-08-26 00:00:00","D","10F","10","A","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2013-03-20 00:00:00","D","06E","12","A","2013-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2013-07-13 00:00:00","U","02G","24","B","2013-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2013-07-13 00:00:00","U","06E","24","B","2013-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2013-09-09 00:00:00","U","06D","19","Z","2013-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2013-04-18 00:00:00","F","02G","23","B","2013-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2013-09-11 00:00:00","F","08A","32","Z","2013-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2013-07-17 00:00:00","D","02G","9","A","2013-07-17 00:00:00","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2013-04-16 00:00:00","D","10B","4","A","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2013-08-22 00:00:00","U","04M","27","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2013-09-11 00:00:00","D","06D","7","A","2013-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2013-05-23 00:00:00","U","04L","12","A","2013-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"41517779","HAPPY KITCHEN","4","80-12","37 AVENUE","11372","7188031600","49","2012-10-09 00:00:00","D","08A","12","A","2012-10-09 00:00:00","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2013-03-06 00:00:00","D","10A","13","A","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2013-05-25 00:00:00","F","02B","46","Z","2013-05-25 00:00:00","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2013-05-25 00:00:00","F","06C","46","Z","2013-05-25 00:00:00","2013-09-13 01:01:06.177000000" +"41502126","597 SILK ROAD CORP","3","597","MANHATTAN AVENUE","11222","7183491010","49","2013-08-10 00:00:00","D","04C","13","A","2013-08-10 00:00:00","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2013-02-07 00:00:00","U","06C","26","B","2013-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2013-04-22 00:00:00","F","06D","20","B","2013-04-22 00:00:00","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2013-05-13 00:00:00","D","06C","5","A","2013-05-13 00:00:00","2013-09-13 01:01:06.177000000" +"41525547","TARO SUSHI NY INC","3","244","FLATBUSH AVENUE","11217","7183985240","49","2013-02-06 00:00:00","D","04C","12","A","2013-02-06 00:00:00","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2013-05-28 00:00:00","D","10F","7","A","2013-05-28 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-07-27 00:00:00","U","04K","22","Z","2013-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-07-27 00:00:00","U","06F","22","Z","2013-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-07-27 00:00:00","U","08A","22","Z","2013-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2013-08-22 00:00:00","U","02G","27","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2013-08-22 00:00:00","U","09B","27","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2012-04-26 00:00:00","D","10F","13","A","2012-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2013-04-22 00:00:00","D","08C","12","A","2013-04-22 00:00:00","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2013-08-27 00:00:00","U","02B","21","B","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2013-08-27 00:00:00","U","04C","21","B","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2013-04-11 00:00:00","U","10F","11","A","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2013-05-23 00:00:00","U","08A","12","A","2013-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2013-03-18 00:00:00","D","10A","10","A","2013-03-18 00:00:00","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2013-05-25 00:00:00","F","04N","46","Z","2013-05-25 00:00:00","2013-09-13 01:01:06.177000000" +"41462077","TAKASHI","1","456","HUDSON STREET","10014","2124142929","49","2013-07-09 00:00:00","D","06F","9","A","2013-07-09 00:00:00","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2012-10-22 00:00:00","D","02G","9","A","2012-10-22 00:00:00","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2012-12-20 00:00:00","D","04M","9","A","2012-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2013-06-17 00:00:00","U","06F","15","B","2013-06-17 00:00:00","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2013-08-01 00:00:00","U","04N","27","Z","2013-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2013-08-01 00:00:00","U","08A","27","Z","2013-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2013-07-17 00:00:00","D","10E","9","A","2013-07-17 00:00:00","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2013-03-30 00:00:00","U","06F","5","A","2013-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2013-07-09 00:00:00","U","08A","11","A","2013-07-09 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2013-05-31 00:00:00","D","10D","11","A","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2013-04-17 00:00:00","F","04L","25","B","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2013-06-24 00:00:00","D","10F","13","A","2013-06-24 00:00:00","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2013-05-25 00:00:00","F","08A","46","Z","2013-05-25 00:00:00","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2013-08-20 00:00:00","D","10B","9","A","2013-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2013-02-07 00:00:00","U","10B","26","B","2013-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2013-08-12 00:00:00","D","10H","13","A","2013-08-12 00:00:00","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2013-04-03 00:00:00","U","10A","20","B","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2013-06-11 00:00:00","D","02G","10","A","2013-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2013-06-11 00:00:00","D","10H","10","A","2013-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2013-08-21 00:00:00","U","08C","23","Z","2013-08-21 00:00:00","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2013-04-17 00:00:00","F","02G","25","B","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2013-07-13 00:00:00","U","06C","24","B","2013-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41471136","NAKATA SUSHI","5","1775-D ","RICHMOND ROAD ","10306","7189801891","49","2012-09-05 00:00:00","D","06C","9","A","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2013-07-09 00:00:00","U","04N","11","A","2013-07-09 00:00:00","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2013-03-20 00:00:00","U","09B","18","B","2013-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41471288","THAT SUSHI SPOT","3","2462","NOSTRAND AVENUE","11210","3475875100","49","2012-12-19 00:00:00","D","10F","5","A","2012-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2013-04-22 00:00:00","F","02G","20","B","2013-04-22 00:00:00","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2013-04-22 00:00:00","F","06E","20","B","2013-04-22 00:00:00","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2013-05-28 00:00:00","D","06A","12","A","2013-05-28 00:00:00","2013-09-13 01:01:06.177000000" +"41476813","GAN DA SUSHI","4","80-08","SURREY PLACE","11432","7183801818","49","2013-04-27 00:00:00","D","10F","10","A","2013-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41528823","BAYRIDGE SUSHI","3","6914 ","3 AVENUE ","11209","7184910662","49","2013-05-07 00:00:00","D","04C","12","A","2013-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41528823","BAYRIDGE SUSHI","3","6914 ","3 AVENUE ","11209","7184910662","49","2013-05-07 00:00:00","D","06D","12","A","2013-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2013-05-23 00:00:00","U","09C","12","A","2013-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2013-04-17 00:00:00","F","10J","25","B","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2013-03-05 00:00:00","D","10F","6","A","2013-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"41491233","BAY HOUSE ASIAN BISTRO","5","2226","HYLAN BOULEVARD","10306","7186676868","49","2012-10-24 00:00:00","D","10F","11","A","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41485508","TAKAYAMA SUSHI LOUNGE","5","17","PAGE AVENUE","10309","7182278744","49","2013-04-03 00:00:00","D","06C","12","A","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2013-08-21 00:00:00","U","02G","23","Z","2013-08-21 00:00:00","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2013-08-21 00:00:00","U","06E","23","Z","2013-08-21 00:00:00","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2013-08-01 00:00:00","U","10F","19","B","2013-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2013-03-19 00:00:00","D","06C","13","A","2013-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2013-03-11 00:00:00","U","08A","16","B","2013-03-11 00:00:00","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2013-03-11 00:00:00","U","08B","16","B","2013-03-11 00:00:00","2013-09-13 01:01:06.177000000" +"41536872","NEW TOKYO SUSHI","4","162-16 ","UNION TURNPIKE ","11366","9172516359","49","2012-10-24 00:00:00","D","10F","5","A","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2013-03-20 00:00:00","U","10F","24","B","2013-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41537949","LZ SUSHI","1","355 ","7 AVENUE ","10001","2128681388","49","2013-01-03 00:00:00","D","02B","7","A","2013-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2013-05-01 00:00:00","F","04L","28","C","2013-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41476813","GAN DA SUSHI","4","80-08","SURREY PLACE","11432","7183801818","49","2013-04-27 00:00:00","D","02G","10","A","2013-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2013-07-02 00:00:00","F","02G","29","Z","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41554341","SAKURA TOKYO","3","604 ","NOSTRAND AVENUE ","11216","7187568787","49","2013-03-11 00:00:00","D","04H","9","A","2013-03-11 00:00:00","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2013-03-04 00:00:00","D","06F","10","A","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2013-09-11 00:00:00","F","02B","32","Z","2013-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2013-08-01 00:00:00","U","02B","19","B","2013-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2013-05-07 00:00:00","D","08A","13","A","2013-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41491426","IZUMI JAPANESE RESTAURANT","1","139","WEST 28 STREET","10001","2122731169","49","2012-12-17 00:00:00","D","10F","11","A","2012-12-17 00:00:00","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2013-07-31 00:00:00","U","08A","22","B","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2013-07-31 00:00:00","U","09A","22","B","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2013-03-19 00:00:00","D","10F","13","A","2013-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2013-03-26 00:00:00","U","04L","6","A","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2013-05-22 00:00:00","U","04C","18","B","2013-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2013-05-22 00:00:00","U","10D","18","B","2013-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2013-02-28 00:00:00","U","09C","10","A","2013-02-28 00:00:00","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2013-01-07 00:00:00","D","10F","10","A","2013-01-07 00:00:00","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2013-09-11 00:00:00","F","04L","32","Z","2013-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2013-09-11 00:00:00","F","06D","32","Z","2013-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2013-05-01 00:00:00","F","02B","28","C","2013-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2013-03-20 00:00:00","U","06F","24","B","2013-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-07-27 00:00:00","U","04L","22","Z","2013-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2013-03-04 00:00:00","D","10F","10","A","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41491233","BAY HOUSE ASIAN BISTRO","5","2226","HYLAN BOULEVARD","10306","7186676868","49","2012-10-24 00:00:00","D","06D","11","A","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41491233","BAY HOUSE ASIAN BISTRO","5","2226","HYLAN BOULEVARD","10306","7186676868","49","2012-10-24 00:00:00","D","10B","11","A","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2013-08-20 00:00:00","D","02G","9","A","2013-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41491426","IZUMI JAPANESE RESTAURANT","1","139","WEST 28 STREET","10001","2122731169","49","2012-12-17 00:00:00","D","02B","11","A","2012-12-17 00:00:00","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2013-06-13 00:00:00","D","06C","13","A","2013-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2013-07-31 00:00:00","U","06C","22","B","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2013-08-01 00:00:00","U","06E","19","B","2013-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2013-05-07 00:00:00","D","04L","13","A","2013-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2013-05-07 00:00:00","D","10F","13","A","2013-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2013-07-16 00:00:00","D","10H","13","A","2013-07-16 00:00:00","2013-09-13 01:01:06.177000000" +"41567679","LITTLE TOKYO AT SEAPORT INC.","1","303 ","SOUTH STREET SEAPORT ","10038","2125871339","49","2013-06-06 00:00:00","D","10F","2","A","2013-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41568107","TAPPO Thin Crust Pizza","1","49","WEST 24 STREET","10010","2128076888","48","2013-01-15 00:00:00","D","06C","12","A","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2013-02-19 00:00:00","U","06E","21","B","2013-02-19 00:00:00","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2013-03-20 00:00:00","U","02G","24","B","2013-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2013-03-20 00:00:00","U","06D","24","B","2013-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41553012","SAKE JAPANESE RESTAURANT","3","2347","86 STREET","11214","7182656288","49","2012-12-12 00:00:00","D","08B","11","A","2012-12-12 00:00:00","2013-09-13 01:01:06.177000000" +"41553012","SAKE JAPANESE RESTAURANT","3","2347","86 STREET","11214","7182656288","49","2012-12-12 00:00:00","D","10B","11","A","2012-12-12 00:00:00","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2013-04-15 00:00:00","F","06C","21","B","2013-04-15 00:00:00","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2012-09-26 00:00:00","D","02G","13","A","2012-09-26 00:00:00","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2013-04-10 00:00:00","D","10F","13","A","2013-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2013-07-02 00:00:00","F","10D","29","Z","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2012-04-26 00:00:00","D","06F","13","A","2012-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2013-05-17 00:00:00","O","04M","9","Z","2013-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2013-05-28 00:00:00","D","06A","7","A","2013-05-28 00:00:00","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2013-02-19 00:00:00","U","06F","21","B","2013-02-19 00:00:00","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2013-03-06 00:00:00","D","10F","13","A","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41515470","NARUTO RAMEN","3","276L ","5 AVENUE ","11215","7188321111","49","2013-02-06 00:00:00","D","10F","9","A","2013-02-06 00:00:00","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2013-07-31 00:00:00","U","04M","22","B","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2013-05-31 00:00:00","D","06D","11","A","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2013-01-22 00:00:00","U","06C","27","B","2013-01-22 00:00:00","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2013-03-28 00:00:00","U","02B","9","A","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2013-04-25 00:00:00","F","06C","24","B","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2013-04-25 00:00:00","F","08A","24","B","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2013-06-13 00:00:00","O","10F","3","Z","2013-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2013-05-21 00:00:00","F","10B","26","B","2013-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-07-27 00:00:00","U","06C","22","Z","2013-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-07-27 00:00:00","U","10B","22","Z","2013-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2012-12-22 00:00:00","D","10F","12","A","2012-12-22 00:00:00","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2013-09-09 00:00:00","U","06C","19","Z","2013-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2013-09-09 00:00:00","U","10B","19","Z","2013-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2013-03-04 00:00:00","D","09B","10","A","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2013-05-22 00:00:00","U","06D","18","B","2013-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2013-05-22 00:00:00","U","10H","18","B","2013-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2013-02-28 00:00:00","U","06E","10","A","2013-02-28 00:00:00","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2013-04-10 00:00:00","D","02G","13","A","2013-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2013-05-17 00:00:00","O","08A","9","Z","2013-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2013-07-11 00:00:00","D","02G","12","A","2013-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"41562299","SAKE JAPANESE CUISINE","3","324-328 ","CHURCH AVENUE ","11218","7188515299","49","2013-01-16 00:00:00","D","06C","13","A","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2013-03-18 00:00:00","D","10F","10","A","2013-03-18 00:00:00","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2013-04-10 00:00:00","U","04L","19","B","2013-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2013-03-06 00:00:00","D","02G","13","A","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41515470","NARUTO RAMEN","3","276L ","5 AVENUE ","11215","7188321111","49","2013-02-06 00:00:00","D","06F","9","A","2013-02-06 00:00:00","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2013-02-27 00:00:00","D","06E","10","A","2013-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2013-02-27 00:00:00","D","10H","10","A","2013-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"41502126","597 SILK ROAD CORP","3","597","MANHATTAN AVENUE","11222","7183491010","49","2013-08-10 00:00:00","D","06C","13","A","2013-08-10 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2013-05-31 00:00:00","D","10F","11","A","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2013-02-14 00:00:00","D","06F","13","A","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2013-04-10 00:00:00","D","10B","13","A","2013-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2013-05-21 00:00:00","F","04C","26","B","2013-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2013-02-07 00:00:00","U","09B","26","B","2013-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-09-27 00:00:00","D","04L","9","A","2012-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"41584962","TOTOYA","1","1144 ","1 AVENUE ","10065","2127530422","49","2013-04-17 00:00:00","U","10B","17","B","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2013-05-21 00:00:00","F","06A","26","B","2013-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2013-04-03 00:00:00","U","04K","20","B","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2012-10-02 00:00:00","D","06E","13","A","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41515470","NARUTO RAMEN","3","276L ","5 AVENUE ","11215","7188321111","49","2013-02-06 00:00:00","D","09B","9","A","2013-02-06 00:00:00","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2013-02-14 00:00:00","D","06E","13","A","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2013-04-03 00:00:00","U","02G","20","B","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2013-04-03 00:00:00","U","06E","20","B","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2013-07-05 00:00:00","U","08A","26","Z","2013-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2012-04-26 00:00:00","D","06C","13","A","2012-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2013-07-11 00:00:00","D","10F","12","A","2013-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2013-06-12 00:00:00","U","04J","18","B","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41591286","COLD CUT CITY","2","228 ","WEST 231 STREET ","10463","7185437419","03","2013-06-05 00:00:00","F","04H","49","C","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2013-07-11 00:00:00","D","10D","12","A","2013-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2013-07-05 00:00:00","U","04L","26","Z","2013-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2013-07-05 00:00:00","U","06A","26","Z","2013-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2013-05-28 00:00:00","D","10F","12","A","2013-05-28 00:00:00","2013-09-13 01:01:06.177000000" +"41596350","RIVER JAPANESE CUISINE","4","61-44 ","SPRINGFIELD BOULEVARD ","11364","7183218981","49","2013-05-15 00:00:00","U","10F","22","B","2013-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2013-06-06 00:00:00","F","06A","35","C","2013-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2013-03-29 00:00:00","O","10F","2","C","2013-03-29 00:00:00","2013-09-13 01:01:06.177000000" +"41529617","SHOBU SUSHI & GRILL","3","9427","5 AVENUE","11209","7188338345","49","2012-10-24 00:00:00","D","02B","7","A","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41597839","KIDO SUSHI (QUEENS CENTER MALL)","4","90-15","QUEENS BOULEVARD","11373","7182713688","49","2013-05-14 00:00:00","F","02G","26","B","2013-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41517779","HAPPY KITCHEN","4","80-12","37 AVENUE","11372","7188031600","49","2012-10-09 00:00:00","D","04L","12","A","2012-10-09 00:00:00","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2013-02-07 00:00:00","U","02G","26","B","2013-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41601691","WAZA SUSHI","3","485","MYRTLE AVENUE","11205","7183993839","49","2013-04-03 00:00:00","D","09C","12","A","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2013-08-01 00:00:00","U","04L","27","Z","2013-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2013-08-26 00:00:00","D","10F","13","A","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2013-03-20 00:00:00","U","10D","18","B","2013-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2013-08-13 00:00:00","D","08C","9","A","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-09-19 00:00:00","U","04L","22","B","2012-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-09-19 00:00:00","U","04N","22","B","2012-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-09-19 00:00:00","U","08C","22","B","2012-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-09-19 00:00:00","U","10F","22","B","2012-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2013-04-03 00:00:00","U","04L","20","B","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2013-03-11 00:00:00","U","04L","16","B","2013-03-11 00:00:00","2013-09-13 01:01:06.177000000" +"41584962","TOTOYA","1","1144 ","1 AVENUE ","10065","2127530422","49","2013-04-17 00:00:00","U","04C","17","B","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2013-06-12 00:00:00","U","02G","18","B","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2013-07-02 00:00:00","U","06F","27","Z","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2013-07-05 00:00:00","U","02G","26","Z","2013-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2012-10-02 00:00:00","D","06A","13","A","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2013-07-02 00:00:00","U","10F","27","Z","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2012-11-15 00:00:00","D","10A","9","A","2012-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2013-07-05 00:00:00","U","06D","26","Z","2013-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2013-03-23 00:00:00","D","08A","13","A","2013-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2013-03-23 00:00:00","D","10F","13","A","2013-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2013-05-28 00:00:00","D","06F","12","A","2013-05-28 00:00:00","2013-09-13 01:01:06.177000000" +"41607908","LONGEVOUSJOY Ramen Sushi Brasserie","3","6610","BAY PARKWAY","11204","9178926068","49","2013-04-10 00:00:00","U","10F","13","A","2013-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2013-09-05 00:00:00","D","10F","12","A","2013-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41608998","BAR MISHIMA","1","212","EAST 52 STREET","10022","2125881089","49","2013-04-16 00:00:00","F","02B","59","C","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41608998","BAR MISHIMA","1","212","EAST 52 STREET","10022","2125881089","49","2013-04-16 00:00:00","F","08A","59","C","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2013-04-05 00:00:00","U","06C","7","A","2013-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2013-04-05 00:00:00","U","10F","7","A","2013-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"41610636","RESOBOX","4","41-26","27 STREET","11101","7187843680","49","2013-02-27 00:00:00","D","08C","8","A","2013-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2013-03-20 00:00:00","U","09C","18","B","2013-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41591286","COLD CUT CITY","2","228 ","WEST 231 STREET ","10463","7185437419","03","2013-06-05 00:00:00","F","04N","49","C","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2013-08-13 00:00:00","D","02G","9","A","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2013-05-24 00:00:00","D","10F","5","A","2013-05-24 00:00:00","2013-09-13 01:01:06.177000000" +"41546097","KUSHI Q","1","153","EAST 53 STREET","10022","2128886488","49","2013-01-30 00:00:00","D","10F","10","A","2013-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2012-10-22 00:00:00","D","10F","9","A","2012-10-22 00:00:00","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-09-19 00:00:00","U","08A","22","B","2012-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-09-19 00:00:00","U","10B","22","B","2012-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2013-06-12 00:00:00","F","06D","25","B","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2013-07-31 00:00:00","D","06D","12","A","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2013-06-13 00:00:00","D","10D","13","A","2013-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41547974","SAKURA JAPANESE RESTAURANT","3","346","GRAHAM AVENUE","11211","7182188056","49","2013-02-13 00:00:00","D","02G","13","A","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2013-07-03 00:00:00","F","06C","23","B","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2013-07-02 00:00:00","F","04J","29","Z","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2012-09-25 00:00:00","D","02G","13","A","2012-09-25 00:00:00","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2012-09-25 00:00:00","D","06D","13","A","2012-09-25 00:00:00","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2013-01-15 00:00:00","U","04L","13","A","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2013-01-15 00:00:00","U","06D","13","A","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2013-08-26 00:00:00","D","06D","13","A","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41547568","HAGANE HIBACHI & JAPANESE GRILL","4","161-02","CROSSBAY BOULEVARD","11414","7188358385","49","2012-08-23 00:00:00","D","02G","13","A","2012-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2013-06-06 00:00:00","F","06E","35","C","2013-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41597839","KIDO SUSHI (QUEENS CENTER MALL)","4","90-15","QUEENS BOULEVARD","11373","7182713688","49","2013-05-14 00:00:00","F","04C","26","B","2013-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-09-19 00:00:00","U","06C","22","B","2012-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-08-27 00:00:00","F","02B","46","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2013-05-28 00:00:00","D","02G","12","A","2013-05-28 00:00:00","2013-09-13 01:01:06.177000000" +"41618609","Sushi Akio","4","71-45","YELLOWSTONE BOULEVARD","11375","7185442199","49","2013-08-26 00:00:00","D","02B","7","A","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41557632","HANA JAPANESE BISTRO","3","532","NEPTUNE AVENUE","11224","7182668889","49","2013-07-30 00:00:00","D","02B","12","A","2013-07-30 00:00:00","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2013-03-28 00:00:00","U","10B","9","A","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2013-07-31 00:00:00","D","06C","12","A","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2013-07-31 00:00:00","D","10B","12","A","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2013-06-13 00:00:00","D","10F","13","A","2013-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41539948","TOKYO HIBACHI STEAK HOUSE & SUSHI","4","184-16","HORACE HARDING EXPRESSWAY","11365","7184632999","49","2013-04-29 00:00:00","U","10F","3","A","2013-04-29 00:00:00","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2013-05-15 00:00:00","D","10B","13","A","2013-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41552160","NAGOYA GOURMET","4","25-73","FRANCIS LEWIS BOULEVARD","11358","7182810188","49","2013-04-11 00:00:00","D","10F","10","A","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41553012","SAKE JAPANESE RESTAURANT","3","2347","86 STREET","11214","7182656288","49","2012-12-12 00:00:00","D","02G","11","A","2012-12-12 00:00:00","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2013-04-03 00:00:00","U","04H","22","B","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2013-05-15 00:00:00","D","04L","10","A","2013-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2013-05-15 00:00:00","D","08A","10","A","2013-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2013-07-29 00:00:00","F","10B","63","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41554341","SAKURA TOKYO","3","604 ","NOSTRAND AVENUE ","11216","7187568787","49","2013-03-11 00:00:00","D","10F","9","A","2013-03-11 00:00:00","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2013-03-23 00:00:00","D","04L","13","A","2013-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"41624200","WASABI","3","638","MANHATTAN AVENUE","11222","7186099368","49","2013-02-05 00:00:00","D","10F","3","A","2013-02-05 00:00:00","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2013-05-28 00:00:00","D","06C","12","A","2013-05-28 00:00:00","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2013-06-04 00:00:00","F","04L","11","A","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2013-06-04 00:00:00","F","10F","11","A","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2013-08-26 00:00:00","D","06A","13","A","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2013-08-22 00:00:00","F","10B","31","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2013-04-15 00:00:00","F","04L","21","B","2013-04-15 00:00:00","2013-09-13 01:01:06.177000000" +"41607908","LONGEVOUSJOY Ramen Sushi Brasserie","3","6610","BAY PARKWAY","11204","9178926068","49","2013-04-10 00:00:00","U","10B","13","A","2013-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41557632","HANA JAPANESE BISTRO","3","532","NEPTUNE AVENUE","11224","7182668889","49","2013-07-30 00:00:00","D","06D","12","A","2013-07-30 00:00:00","2013-09-13 01:01:06.177000000" +"41556769","BLUE RIBBON SUSHI BAR & GRILL ROOF DECK","1","6","COLUMBUS CIRCLE","10019","2122290404","49","2012-10-23 00:00:00","D","06D","5","A","2012-10-23 00:00:00","2013-09-13 01:01:06.177000000" +"41546097","KUSHI Q","1","153","EAST 53 STREET","10022","2128886488","49","2013-01-30 00:00:00","D","02G","10","A","2013-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2013-07-02 00:00:00","F","02B","29","Z","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41628521","KOTOBUKI","1","56","3 AVENUE","10003","2123535088","49","2013-06-26 00:00:00","D","10H","9","A","2013-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"41610636","RESOBOX","4","41-26","27 STREET","11101","7187843680","49","2013-02-27 00:00:00","D","10B","8","A","2013-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"41547568","HAGANE HIBACHI & JAPANESE GRILL","4","161-02","CROSSBAY BOULEVARD","11414","7188358385","49","2012-08-23 00:00:00","D","10F","13","A","2012-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2013-03-19 00:00:00","F","04L","26","B","2013-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2012-12-22 00:00:00","D","04M","12","A","2012-12-22 00:00:00","2013-09-13 01:01:06.177000000" +"41616445","AKURA SUSHI","1","39","EAST 31 STREET","10016","2123793623","49","2013-06-26 00:00:00","D","06C","12","A","2013-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2013-01-15 00:00:00","U","10A","13","A","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2013-08-20 00:00:00","F","04A","39","Z","2013-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41552160","NAGOYA GOURMET","4","25-73","FRANCIS LEWIS BOULEVARD","11358","7182810188","49","2013-04-11 00:00:00","D","06C","10","A","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41552160","NAGOYA GOURMET","4","25-73","FRANCIS LEWIS BOULEVARD","11358","7182810188","49","2013-04-11 00:00:00","D","10B","10","A","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2012-09-26 00:00:00","D","06C","13","A","2012-09-26 00:00:00","2013-09-13 01:01:06.177000000" +"41618435","SENZA SUSHI/LOBSTER SHRIMP ROLL","1","4","PENNSYLVANIA PLAZA","10001","2124656000","49","2013-03-27 00:00:00","D","10F","2","A","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2013-04-15 00:00:00","F","08A","21","B","2013-04-15 00:00:00","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2013-03-12 00:00:00","U","02G","8","A","2013-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41562299","SAKE JAPANESE CUISINE","3","324-328 ","CHURCH AVENUE ","11218","7188515299","49","2013-01-16 00:00:00","D","02B","13","A","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2013-02-13 00:00:00","D","10F","8","A","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41622616","TOTO SUSHI","1","216","THOMPSON STREET","10012","2125334433","49","2013-03-25 00:00:00","D","06C","5","A","2013-03-25 00:00:00","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2013-03-19 00:00:00","F","04A","26","B","2013-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41623669","YAMAKAGE TOKYO","1","1026","2 AVENUE","10022","2123552577","49","2013-04-08 00:00:00","D","08A","9","A","2013-04-08 00:00:00","2013-09-13 01:01:06.177000000" +"41637060","REGO PARK SAKE","4","9534 ","QUEENS BLVD ","11374","7188970429","49","2013-07-02 00:00:00","D","08A","9","A","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2013-07-23 00:00:00","D","02B","10","A","2013-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2013-09-03 00:00:00","F","04L","30","Z","2013-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2013-09-03 00:00:00","F","06D","30","Z","2013-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2013-09-03 00:00:00","F","08A","30","Z","2013-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41564694","KOBE SUSHI","1","1472 ","YORK AVENUE ","10075","2129888628","49","2013-06-12 00:00:00","D","02B","11","A","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2013-03-19 00:00:00","F","09B","26","B","2013-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41627232","NEW CHOPSTICK","4","91-28","CORONA AVENUE","11373","7186990866","49","2013-05-07 00:00:00","U","08B","23","B","2013-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41627232","NEW CHOPSTICK","4","91-28","CORONA AVENUE","11373","7186990866","49","2013-05-07 00:00:00","U","10F","23","B","2013-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41579281","MANOR SUSHI","5","878","MANOR ROAD","10314","7183702208","49","2013-08-17 00:00:00","D","06E","5","A","2013-08-17 00:00:00","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2013-02-06 00:00:00","D","10F","10","A","2013-02-06 00:00:00","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2012-12-22 00:00:00","D","08A","12","A","2012-12-22 00:00:00","2013-09-13 01:01:06.177000000" +"41628657","OOTOYA JAPANESE RESTAURANT","1","8","WEST 18 STREET","10011","2122550018","49","2013-06-24 00:00:00","U","04J","23","B","2013-06-24 00:00:00","2013-09-13 01:01:06.177000000" +"41628657","OOTOYA JAPANESE RESTAURANT","1","8","WEST 18 STREET","10011","2122550018","49","2013-06-24 00:00:00","U","06E","23","B","2013-06-24 00:00:00","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2013-04-10 00:00:00","U","10F","19","B","2013-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2013-01-22 00:00:00","U","06A","27","B","2013-01-22 00:00:00","2013-09-13 01:01:06.177000000" +"41643015","CUCUMBER SUSHI & SALAD BAR","5","5834","AMBOY ROAD","10309","7189661118","49","2013-04-04 00:00:00","D","06F","11","A","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41643120","YOPPARAI","1","151","RIVINGTON STREET","10002","2127777253","49","2013-05-09 00:00:00","D","02G","9","A","2013-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2013-06-13 00:00:00","F","03B","36","Z","2013-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2013-06-13 00:00:00","F","08A","36","Z","2013-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2013-02-13 00:00:00","D","06C","8","A","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2013-06-10 00:00:00","F","02B","34","C","2013-06-10 00:00:00","2013-09-13 01:01:06.177000000" +"41645581","MATSU JAPANESE CUISINE","1","483","COLUMBUS AVENUE","10024","2127997922","49","2013-04-15 00:00:00","F","04L","24","B","2013-04-15 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2013-02-21 00:00:00","U","04L","22","B","2013-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41584962","TOTOYA","1","1144 ","1 AVENUE ","10065","2127530422","49","2013-04-17 00:00:00","U","06D","17","B","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41564694","KOBE SUSHI","1","1472 ","YORK AVENUE ","10075","2129888628","49","2013-06-12 00:00:00","D","09B","11","A","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2013-01-22 00:00:00","U","08A","27","B","2013-01-22 00:00:00","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2013-08-20 00:00:00","F","08A","39","Z","2013-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41633013","TOMO JAPANESE RESTAURANT","5","4561","AMBOY ROAD","10312","7182275100","49","2013-03-23 00:00:00","U","06D","14","B","2013-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"41576416","JUKAI","1","237","EAST 53 STREET","10022","2125889788","49","2013-04-30 00:00:00","D","02G","12","A","2013-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41576416","JUKAI","1","237","EAST 53 STREET","10022","2125889788","49","2013-04-30 00:00:00","D","10H","12","A","2013-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2013-04-10 00:00:00","U","02B","19","B","2013-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2013-04-10 00:00:00","U","06A","19","B","2013-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2013-03-19 00:00:00","F","04C","26","B","2013-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41586672","SUSHI MORA","1","200","8 AVENUE","10011","2123669888","49","2013-05-02 00:00:00","F","02B","25","B","2013-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2013-08-26 00:00:00","F","05H","53","Z","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2013-08-14 00:00:00","D","02G","11","A","2013-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41582873","ICHIMASA JAPANESE RESTAURANT","1","302","WEST 50 STREET","10019","2123154800","49","2013-08-13 00:00:00","D","02G","7","A","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41652500","NEW MADO JAPANESE RESTAURANT LLC","4","9516A ","QUEENS BLVD ","11374","7188964000","49","2013-05-28 00:00:00","D","02G","11","A","2013-05-28 00:00:00","2013-09-13 01:01:06.177000000" +"41654379","CLUB MAX","1","238","EAST 53 STREET","10022","2126885120","49","2013-04-17 00:00:00","D","04L","10","A","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2013-09-03 00:00:00","F","02G","30","Z","2013-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2013-09-03 00:00:00","F","09B","30","Z","2013-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41654886","RAI RAI KEN","1","218","EAST 10 STREET","10003","2124777030","49","2013-02-19 00:00:00","D","10E","9","A","2013-02-19 00:00:00","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2013-04-12 00:00:00","D","06C","8","A","2013-04-12 00:00:00","2013-09-13 01:01:06.177000000" +"41591286","COLD CUT CITY","2","228 ","WEST 231 STREET ","10463","7185437419","03","2013-06-05 00:00:00","F","08A","49","C","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2013-09-03 00:00:00","F","10F","43","Z","2013-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2013-02-07 00:00:00","U","10A","19","B","2013-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41586672","SUSHI MORA","1","200","8 AVENUE","10011","2123669888","49","2013-05-02 00:00:00","F","04A","25","B","2013-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2013-02-06 00:00:00","D","02G","10","A","2013-02-06 00:00:00","2013-09-13 01:01:06.177000000" +"41662152","TENDO SUSHI","4","6626 ","FRESH POND ROAD ","11385","7183810809","49","2013-05-30 00:00:00","U","06F","17","B","2013-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"41642516","SUSHI 21","1","174","7 AVENUE","10011","6464866288","49","2013-03-19 00:00:00","D","10B","4","A","2013-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41643015","CUCUMBER SUSHI & SALAD BAR","5","5834","AMBOY ROAD","10309","7189661118","49","2013-04-04 00:00:00","D","09B","11","A","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2013-02-21 00:00:00","U","09B","22","B","2013-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2013-07-23 00:00:00","D","10F","10","A","2013-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41584962","TOTOYA","1","1144 ","1 AVENUE ","10065","2127530422","49","2013-04-17 00:00:00","U","10F","17","B","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2013-01-22 00:00:00","U","02B","27","B","2013-01-22 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2013-01-22 00:00:00","U","04M","27","B","2013-01-22 00:00:00","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2012-10-02 00:00:00","D","10E","13","A","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41591286","COLD CUT CITY","2","228 ","WEST 231 STREET ","10463","7185437419","03","2013-06-05 00:00:00","F","05B","49","C","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41591286","COLD CUT CITY","2","228 ","WEST 231 STREET ","10463","7185437419","03","2013-06-05 00:00:00","F","06C","49","C","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41591286","COLD CUT CITY","2","228 ","WEST 231 STREET ","10463","7185437419","03","2013-06-05 00:00:00","F","10B","49","C","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2013-05-24 00:00:00","D","10B","5","A","2013-05-24 00:00:00","2013-09-13 01:01:06.177000000" +"41591286","COLD CUT CITY","2","228 ","WEST 231 STREET ","10463","7185437419","03","2013-06-05 00:00:00","F","04C","49","C","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41645944","INAKA","3","597 ","VANDERBILT AVENUE ","11238","7183988168","49","2013-08-14 00:00:00","U","08A","18","Z","2013-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2013-03-19 00:00:00","U","03D","12","A","2013-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-08-05 00:00:00","O","06D","18","Z","2013-08-05 00:00:00","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-08-05 00:00:00","O","08A","18","Z","2013-08-05 00:00:00","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2013-06-06 00:00:00","D","06C","7","A","2013-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2013-06-06 00:00:00","D","10B","7","A","2013-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41672275","DASSARA","3","271","SMITH STREET","11231","9178801002","49","2013-01-16 00:00:00","D","10F","13","A","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41591286","COLD CUT CITY","2","228 ","WEST 231 STREET ","10463","7185437419","03","2013-06-05 00:00:00","F","02G","49","C","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2013-04-01 00:00:00","O","08A","11","A","2013-04-01 00:00:00","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2013-08-26 00:00:00","F","02B","53","Z","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2013-05-15 00:00:00","D","02B","13","A","2013-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41601691","WAZA SUSHI","3","485","MYRTLE AVENUE","11205","7183993839","49","2013-04-03 00:00:00","D","02B","12","A","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41596350","RIVER JAPANESE CUISINE","4","61-44 ","SPRINGFIELD BOULEVARD ","11364","7183218981","49","2013-05-15 00:00:00","U","02G","22","B","2013-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41596350","RIVER JAPANESE CUISINE","4","61-44 ","SPRINGFIELD BOULEVARD ","11364","7183218981","49","2013-05-15 00:00:00","U","06C","22","B","2013-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2013-09-03 00:00:00","D","06E","5","A","2013-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41597054","SUSHI YASAKA","1","251","WEST 72 STREET","10023","2124968460","49","2013-06-10 00:00:00","D","02B","12","A","2013-06-10 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2013-06-06 00:00:00","F","04L","35","C","2013-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2013-06-06 00:00:00","F","09B","35","C","2013-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41677309","ATAMI JAPANESE FUSION","1","1167","2ND AVE","10065","2126886868","49","2013-04-05 00:00:00","D","09A","9","A","2013-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2013-04-16 00:00:00","U","02B","8","A","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-08-27 00:00:00","F","04M","52","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-08-27 00:00:00","F","08A","52","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-08-27 00:00:00","F","06A","52","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-08-27 00:00:00","F","06B","52","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-08-27 00:00:00","F","10F","52","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2013-04-04 00:00:00","U","06A","24","B","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2013-07-02 00:00:00","U","08A","27","Z","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41655484","CANAAN SUSHI","1","154","WEST 29 STREET","10001","2129479298","49","2013-07-18 00:00:00","D","06F","10","A","2013-07-18 00:00:00","2013-09-13 01:01:06.177000000" +"41655484","CANAAN SUSHI","1","154","WEST 29 STREET","10001","2129479298","49","2013-07-18 00:00:00","D","10F","10","A","2013-07-18 00:00:00","2013-09-13 01:01:06.177000000" +"41681373","HADO SUSHI","4","13840 ","86 AVENUE ","11435","7185585758","49","2013-07-22 00:00:00","U","04N","16","B","2013-07-22 00:00:00","2013-09-13 01:01:06.177000000" +"41597054","SUSHI YASAKA","1","251","WEST 72 STREET","10023","2124968460","49","2013-06-10 00:00:00","D","06A","12","A","2013-06-10 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2013-06-06 00:00:00","F","08A","35","C","2013-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41682935","GANSO","3","25","BOND STREET","11201","7184030900","49","2013-05-17 00:00:00","D","10F","7","A","2013-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2013-07-19 00:00:00","O","10F","5","Z","2013-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2013-03-19 00:00:00","U","06E","12","A","2013-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2013-07-29 00:00:00","U","04L","5","A","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41684379","SOBA TOTTO","1","211","EAST 43 STREET","10017","2125578200","49","2013-07-29 00:00:00","U","10F","25","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41608998","BAR MISHIMA","1","212","EAST 52 STREET","10022","2125881089","49","2013-04-16 00:00:00","F","04M","59","C","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2013-07-29 00:00:00","F","02G","63","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2013-07-29 00:00:00","F","06A","63","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2013-07-29 00:00:00","F","06B","63","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41686748","AABI SUSHI","1","536","3 AVENUE","10016","2125826180","49","2013-04-25 00:00:00","F","04C","52","C","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41686748","AABI SUSHI","1","536","3 AVENUE","10016","2125826180","49","2013-04-25 00:00:00","F","06C","52","C","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2013-07-29 00:00:00","F","09C","63","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41687110","KIKU JAPANESE CUISINE","5","3838","RICHMOND AVENUE","10312","7186088589","49","2013-01-08 00:00:00","D","08A","10","A","2013-01-08 00:00:00","2013-09-13 01:01:06.177000000" +"41659449","FUJI SUSHI","5","1115","HYLAN BOULEVARD","10305","7188160188","49","2012-12-11 00:00:00","D","10F","13","A","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41659908","TENZAN SUSHI","3","7119 ","18TH AVE ","11204","7186213288","49","2013-06-12 00:00:00","U","02B","17","B","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41688151","RAMEN YEBISU","3","126 ","NORTH 6 STREET ","11249","7187821444","49","2013-08-07 00:00:00","D","10F","10","A","2013-08-07 00:00:00","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2013-02-13 00:00:00","U","02B","10","A","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-08-22 00:00:00","U","10F","25","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41605223","YU SUSHI","1","827","WEST 181 STREET","10033","2127818833","49","2013-05-29 00:00:00","U","08A","19","B","2013-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2013-04-04 00:00:00","U","06F","24","B","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2013-04-04 00:00:00","U","08A","24","B","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2013-04-04 00:00:00","U","10F","24","B","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2013-05-15 00:00:00","D","09B","13","A","2013-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2013-07-02 00:00:00","U","02G","27","Z","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2012-11-15 00:00:00","D","10J","9","A","2012-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2013-06-25 00:00:00","D","06D","13","A","2013-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2013-07-29 00:00:00","F","05F","63","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41607908","LONGEVOUSJOY Ramen Sushi Brasserie","3","6610","BAY PARKWAY","11204","9178926068","49","2013-04-10 00:00:00","U","02G","13","A","2013-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41608024","KOBEYAKI","1","293 ","7 AVENUE ","10001","2122425500","49","2012-12-18 00:00:00","D","10F","9","A","2012-12-18 00:00:00","2013-09-13 01:01:06.177000000" +"41607908","LONGEVOUSJOY Ramen Sushi Brasserie","3","6610","BAY PARKWAY","11204","9178926068","49","2013-04-10 00:00:00","U","09B","13","A","2013-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2013-09-05 00:00:00","D","05D","12","A","2013-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41605223","YU SUSHI","1","827","WEST 181 STREET","10033","2127818833","49","2013-05-29 00:00:00","U","04H","19","B","2013-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2013-07-02 00:00:00","U","04M","27","Z","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41694966","SHINJUKU","3","1664","SHEEPSHEAD BAY ROAD","11235","7189344273","49","2013-09-04 00:00:00","U","06D","21","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41695267","ICHI SUSHI","3","8609","BAY PARKWAY","11214","7182652289","49","2013-07-03 00:00:00","D","06C","10","A","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"41695267","ICHI SUSHI","3","8609","BAY PARKWAY","11214","7182652289","49","2013-07-03 00:00:00","D","10F","10","A","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"41610636","RESOBOX","4","41-26","27 STREET","11101","7187843680","49","2013-02-27 00:00:00","D","10I","8","A","2013-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"41596350","RIVER JAPANESE CUISINE","4","61-44 ","SPRINGFIELD BOULEVARD ","11364","7183218981","49","2013-05-15 00:00:00","U","04H","22","B","2013-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41666608","27 SHINJUKU SUSHI INC","1","27","PARK PL","10007","2124067333","49","2013-01-14 00:00:00","D","02B","9","A","2013-01-14 00:00:00","2013-09-13 01:01:06.177000000" +"41612017","KUKU CANTEEN","1","289","MERCER STREET","10003","2124736162","49","2013-04-04 00:00:00","D","06E","11","A","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41612017","KUKU CANTEEN","1","289","MERCER STREET","10003","2124736162","49","2013-04-04 00:00:00","D","10F","11","A","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2013-07-03 00:00:00","F","04J","23","B","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-08-27 00:00:00","F","08A","46","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-08-27 00:00:00","F","10B","46","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41699276","GINZA JAPANESE RESTAURANT","4","33-41","FRANCIS LEWIS BOULEVARD","11358","7185399531","49","2012-11-19 00:00:00","D","10F","5","A","2012-11-19 00:00:00","2013-09-13 01:01:06.177000000" +"41597839","KIDO SUSHI (QUEENS CENTER MALL)","4","90-15","QUEENS BOULEVARD","11373","7182713688","49","2013-05-14 00:00:00","F","02B","26","B","2013-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41670338","ASO SUSHI","1","1103 ","1 AVENUE ","10065","2128888276","49","2012-09-04 00:00:00","D","06D","13","A","2012-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41670338","ASO SUSHI","1","1103 ","1 AVENUE ","10065","2128888276","49","2012-09-04 00:00:00","D","06E","13","A","2012-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41670338","ASO SUSHI","1","1103 ","1 AVENUE ","10065","2128888276","49","2012-09-04 00:00:00","D","10F","13","A","2012-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41608998","BAR MISHIMA","1","212","EAST 52 STREET","10022","2125881089","49","2013-04-16 00:00:00","F","02G","59","C","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2013-06-08 00:00:00","U","04M","10","A","2013-06-08 00:00:00","2013-09-13 01:01:06.177000000" +"41700608","SEN NYC","3","12 ","WEST 21 STREET ","10010","2123885736","49","2013-08-05 00:00:00","D","06C","13","A","2013-08-05 00:00:00","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2013-06-08 00:00:00","U","10H","10","A","2013-06-08 00:00:00","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2013-05-08 00:00:00","U","06C","12","A","2013-05-08 00:00:00","2013-09-13 01:01:06.177000000" +"41701495","ZEN 6 RAMEN & GYOZA HOUSE","1","328","EAST 6 STREET","10003","6464298471","49","2013-03-21 00:00:00","D","10A","12","A","2013-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-08-27 00:00:00","F","02G","52","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41703048","SPRING FISH VILLAGE","4","136-21","41 AVENUE","11355","7189393633","20","2013-05-16 00:00:00","F","02G","49","C","2013-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"41703048","SPRING FISH VILLAGE","4","136-21","41 AVENUE","11355","7189393633","20","2013-05-16 00:00:00","F","05C","49","C","2013-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"41704805","OISHI SUSHI RESTAURANT","3","929","MANHATTAN AVENUE","11222","7183498988","49","2013-03-05 00:00:00","D","09B","13","A","2013-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"41675589","AJI SUSHI HOUSE","4","3606 ","DITMARS BLVD ","11105","7187778885","49","2013-05-17 00:00:00","D","09B","11","A","2013-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41705370","AKIMOTO SUSHI","1","187","CHURCH STREET","10007","2127663351","49","2012-12-31 00:00:00","D","10B","7","A","2012-12-31 00:00:00","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2013-04-03 00:00:00","U","02G","22","B","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41705732","BentOn Cafe","1","156","EAST 45 STREET","10017","2129229788","49","2013-07-22 00:00:00","U","02G","26","Z","2013-07-22 00:00:00","2013-09-13 01:01:06.177000000" +"41612017","KUKU CANTEEN","1","289","MERCER STREET","10003","2124736162","49","2013-04-04 00:00:00","D","09C","11","A","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41601691","WAZA SUSHI","3","485","MYRTLE AVENUE","11205","7183993839","49","2013-04-03 00:00:00","D","10F","12","A","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-08-20 00:00:00","F","08A","38","Z","2013-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41706542","INASE SUSHI RESTAURANT","1","1586","1 AVENUE","10028","2126281238","49","2013-05-01 00:00:00","U","10E","18","B","2013-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41706991","NATORI JAPANESE RESTAURANT","1","58","SAINT MARKS PLACE","10003","2125337711","49","2013-03-13 00:00:00","D","06F","12","A","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41677534","TOMO JAPANESE CAFE","4","8914 ","QUEENS BLVD ","11373","7188039799","49","2013-05-22 00:00:00","U","02H","13","A","2013-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41623669","YAMAKAGE TOKYO","1","1026","2 AVENUE","10022","2123552577","49","2013-04-08 00:00:00","D","04L","9","A","2013-04-08 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-08-27 00:00:00","F","04N","46","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-08-27 00:00:00","F","06A","46","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41680924","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","4","13336 ","WHITESTONE EXPRESSWAY ","11354","7183590810","49","2013-04-08 00:00:00","D","06F","12","A","2013-04-08 00:00:00","2013-09-13 01:01:06.177000000" +"41709614","MISOYA","4","158-09B ","NORTHERN BOULEVARD ","11358","7183212600","49","2013-03-23 00:00:00","F","02G","43","C","2013-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"41680924","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","4","13336 ","WHITESTONE EXPRESSWAY ","11354","7183590810","49","2013-04-08 00:00:00","D","10F","12","A","2013-04-08 00:00:00","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2013-06-12 00:00:00","F","04C","25","B","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41710645","MIRA SUSHI","1","46","WEST 22 STREET","10010","2129897889","49","2013-03-13 00:00:00","D","10F","2","A","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41711133","KAJITSU","3","125 ","EAST 39 STREET ","11203","2122284873","49","2013-08-13 00:00:00","D","10I","7","A","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41711186","AMAZE","1","466","AMSTERDAM AVENUE","10024","2128744888","49","2013-02-07 00:00:00","D","10F","11","A","2013-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41711545","OSAKA JAPANESE FUSION","4","224-23","UNION TURNPIKE","11364","7182178283","49","2013-07-01 00:00:00","U","06A","27","Z","2013-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41711545","OSAKA JAPANESE FUSION","4","224-23","UNION TURNPIKE","11364","7182178283","49","2013-07-01 00:00:00","U","10B","27","Z","2013-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41711559","OSHIMA","3","71 ","7 AVENUE ","11217","7187831888","49","2013-04-01 00:00:00","F","04M","31","C","2013-04-01 00:00:00","2013-09-13 01:01:06.177000000" +"41605223","YU SUSHI","1","827","WEST 181 STREET","10033","2127818833","49","2013-05-29 00:00:00","U","04N","19","B","2013-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2013-04-04 00:00:00","U","04L","24","B","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41684379","SOBA TOTTO","1","211","EAST 43 STREET","10017","2125578200","49","2013-07-29 00:00:00","U","02G","25","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41684379","SOBA TOTTO","1","211","EAST 43 STREET","10017","2125578200","49","2013-07-29 00:00:00","U","04J","25","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41684533","MALINGO RESTAURANT & BAR","4","43-16","QUEENS BOULEVARD","11104","3478088100","49","2013-07-23 00:00:00","D","02G","11","A","2013-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41713670","WASABI LOBBY JAPANESE RESTAURANT","1","1584","2 AVENUE","10028","2129888882","49","2013-04-03 00:00:00","U","02B","15","B","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2012-11-15 00:00:00","D","10F","9","A","2012-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"41714546","AA ICHIBAN SUSHI","1","213","WEST 28 STREET","10001","2126758188","49","2013-03-13 00:00:00","D","04C","12","A","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41716350","FUKI SUSHI","3","8509","18 AVENUE","11214","7188378885","49","2013-07-02 00:00:00","D","10D","7","A","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2013-04-03 00:00:00","U","04L","22","B","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41686748","AABI SUSHI","1","536","3 AVENUE","10016","2125826180","49","2013-04-25 00:00:00","F","04O","52","C","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41623268","MAGURO SUSHI","1","160","EAST 28 STREET","10016","2125108883","49","2013-03-07 00:00:00","U","04C","7","A","2013-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41687410","ANI SUSHI","3","142","MONTAGUE STREET","11201","7189231800","49","2013-04-18 00:00:00","D","06C","10","A","2013-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-08-27 00:00:00","F","04C","46","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-08-27 00:00:00","F","10F","46","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41688363","KOI SOHO","1","246","SPRING STREET","10013","2128424550","49","2012-10-26 00:00:00","D","02B","12","A","2012-10-26 00:00:00","2013-09-13 01:01:06.177000000" +"41608998","BAR MISHIMA","1","212","EAST 52 STREET","10022","2125881089","49","2013-04-16 00:00:00","F","10F","59","C","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2013-04-05 00:00:00","U","10B","7","A","2013-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-08-22 00:00:00","U","02G","25","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41720372","AKIRA JAPANESE CUISINE","1","152","7 AVENUE SOUTH","10014","2219898880","49","2013-08-02 00:00:00","D","02B","12","A","2013-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"41689884","NAGOYA SUSHI","3","1907","KINGS HIGHWAY","11229","7183363688","49","2013-08-13 00:00:00","D","06C","7","A","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41721159","SAKURA JAPANESE CUISINE","4","35-15","DITMARS BOULEVARD","11105","7187772188","49","2013-08-13 00:00:00","U","08A","21","Z","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41721414","SUSHI BENTO","5","2655","RICHMOND AVENUE","10314","6468120501","49","2013-06-07 00:00:00","D","10B","9","A","2013-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41690686","AJI 18","1","208","3 AVENUE","10003","2126776921","49","2013-07-30 00:00:00","U","08A","20","B","2013-07-30 00:00:00","2013-09-13 01:01:06.177000000" +"41630465","YUMMY SUSHI","1","1758","1 AVENUE","10128","2129963666","49","2013-08-23 00:00:00","D","06A","12","A","2013-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41722450","IPPUDO","1","321","WEST 51 STREET","10019","2129742500","49","2013-09-09 00:00:00","D","02G","13","A","2013-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41722947","TANKO JAPANESE FUSION","4","3805 ","BELL BOULEVARD ","11361","7186311188","49","2013-07-10 00:00:00","D","10F","13","A","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2013-08-22 00:00:00","F","08A","31","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2013-08-22 00:00:00","F","10F","31","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41692187","RED MOON","1","132","WEST 45 STREET","10036","2123916666","49","2013-03-18 00:00:00","D","10F","9","A","2013-03-18 00:00:00","2013-09-13 01:01:06.177000000" +"41627232","NEW CHOPSTICK","4","91-28","CORONA AVENUE","11373","7186990866","49","2013-05-07 00:00:00","U","06E","23","B","2013-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2013-08-22 00:00:00","F","02B","31","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41627232","NEW CHOPSTICK","4","91-28","CORONA AVENUE","11373","7186990866","49","2013-05-07 00:00:00","U","10B","23","B","2013-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41631683","LONG GRAIN","1","2534","BROADWAY","10025","2126660888","49","2013-02-14 00:00:00","D","10I","6","A","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"50000333","AJI 53","3","170","SMITH STREET","11201","7189351166","49","2013-08-13 00:00:00","U","04L","19","Z","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2013-08-20 00:00:00","F","02B","39","Z","2013-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2013-06-12 00:00:00","F","04A","25","B","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"50000614","AHANA JAPANESE FUSION CUISINE INC","1","1154 ","1 AVENUE ","10065","2128885800","49","2013-06-12 00:00:00","D","08B","12","A","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41629243","OBENTO DELIGHT & ASIAN FUSION RESTAURANT","1","210","WEST 94 STREET","10025","2122222010","49","2012-09-24 00:00:00","D","10H","11","A","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"50000806","NEW NAGOYA","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2013-08-13 00:00:00","D","10F","4","A","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41630942","SUSHI-TERIA","1","601 ","LEXINGTON AVENUE ","10022","9178810420","49","2013-04-11 00:00:00","D","02B","11","A","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-08-27 00:00:00","F","06E","46","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"50001203","AKI SUSHI","1","212","EAST 52 STREET","10022","2128938266","49","2013-07-31 00:00:00","F","08A","26","B","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"50001263","SAKURA III","4","158-38","CROSSBAY BOULEVARD","11414","7183238827","49","2013-08-20 00:00:00","D","02B","7","A","2013-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41700054","SASABUNE EXPRESS NEW YORK","1","322","EAST 59 STREET","10022","2125888998","49","2013-03-21 00:00:00","D","10F","3","A","2013-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41629243","OBENTO DELIGHT & ASIAN FUSION RESTAURANT","1","210","WEST 94 STREET","10025","2122222010","49","2012-09-24 00:00:00","D","06D","11","A","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41629243","OBENTO DELIGHT & ASIAN FUSION RESTAURANT","1","210","WEST 94 STREET","10025","2122222010","49","2012-09-24 00:00:00","D","10B","11","A","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41636968","SUSHI SHOP","1","536","MADISON AVENUE","10022","2128405555","49","2013-06-04 00:00:00","D","10F","5","A","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2013-08-20 00:00:00","F","04L","39","Z","2013-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2013-08-20 00:00:00","F","04N","39","Z","2013-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2013-08-20 00:00:00","F","06D","39","Z","2013-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41633013","TOMO JAPANESE RESTAURANT","5","4561","AMBOY ROAD","10312","7182275100","49","2013-03-23 00:00:00","U","10D","14","B","2013-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"41633095","BAMBOO YA","4","9711 ","QUEENS BLVD ","11374","7188061228","49","2013-09-10 00:00:00","D","02B","13","A","2013-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"41633095","BAMBOO YA","4","9711 ","QUEENS BLVD ","11374","7188061228","49","2013-09-10 00:00:00","D","10B","13","A","2013-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2013-06-08 00:00:00","U","10B","10","A","2013-06-08 00:00:00","2013-09-13 01:01:06.177000000" +"41702601","KOSHER YAMA SUSHI","4","81-63 ","LEFFERTS BOULEVARD ","11415","7188801750","49","2013-04-16 00:00:00","U","10F","6","A","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41633095","BAMBOO YA","4","9711 ","QUEENS BLVD ","11374","7188061228","49","2013-09-10 00:00:00","D","10F","13","A","2013-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"41702877","THE LOOP","1","173","3 AVENUE","10003","2125891200","49","2013-03-18 00:00:00","U","08A","18","B","2013-03-18 00:00:00","2013-09-13 01:01:06.177000000" +"41630465","YUMMY SUSHI","1","1758","1 AVENUE","10128","2129963666","49","2013-08-23 00:00:00","D","02G","12","A","2013-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41704282","FUKUROU","1","87","MACDOUGAL STREET","10012","2123880013","49","2013-05-21 00:00:00","U","08C","16","B","2013-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41704457","SUSHI VILLAGE","4","254-04","NORTHERN BOULEVARD","11362","7182253311","49","2013-02-27 00:00:00","D","10F","12","A","2013-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2013-05-08 00:00:00","D","06F","7","A","2013-05-08 00:00:00","2013-09-13 01:01:06.177000000" +"41704805","OISHI SUSHI RESTAURANT","3","929","MANHATTAN AVENUE","11222","7183498988","49","2013-03-05 00:00:00","D","06C","13","A","2013-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"41630942","SUSHI-TERIA","1","601 ","LEXINGTON AVENUE ","10022","9178810420","49","2013-04-11 00:00:00","D","10F","11","A","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41705732","BentOn Cafe","1","156","EAST 45 STREET","10017","2129229788","49","2013-07-22 00:00:00","U","06E","26","Z","2013-07-22 00:00:00","2013-09-13 01:01:06.177000000" +"41705732","BentOn Cafe","1","156","EAST 45 STREET","10017","2129229788","49","2013-07-22 00:00:00","U","10F","26","Z","2013-07-22 00:00:00","2013-09-13 01:01:06.177000000" +"41705748","GENKI SUSHI HOUSE","5","150","GREAVES LANE","10308","7182138276","49","2013-08-08 00:00:00","U","06E","26","B","2013-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41706542","INASE SUSHI RESTAURANT","1","1586","1 AVENUE","10028","2126281238","49","2013-05-01 00:00:00","U","10I","18","B","2013-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2013-04-24 00:00:00","D","06D","12","A","2013-04-24 00:00:00","2013-09-13 01:01:06.177000000" +"41636968","SUSHI SHOP","1","536","MADISON AVENUE","10022","2128405555","49","2013-06-04 00:00:00","D","10A","5","A","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41709347","AMBER","1","381","3 AVENUE","10016","2126866388","49","2013-04-11 00:00:00","U","06E","11","A","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41709614","MISOYA","4","158-09B ","NORTHERN BOULEVARD ","11358","7183212600","49","2013-03-23 00:00:00","F","10F","43","C","2013-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2013-04-24 00:00:00","D","02G","12","A","2013-04-24 00:00:00","2013-09-13 01:01:06.177000000" +"41642516","SUSHI 21","1","174","7 AVENUE","10011","6464866288","49","2013-03-19 00:00:00","D","09B","4","A","2013-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2013-04-12 00:00:00","D","10F","8","A","2013-04-12 00:00:00","2013-09-13 01:01:06.177000000" +"41711133","KAJITSU","3","125 ","EAST 39 STREET ","11203","2122284873","49","2013-08-13 00:00:00","D","06D","7","A","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41643015","CUCUMBER SUSHI & SALAD BAR","5","5834","AMBOY ROAD","10309","7189661118","49","2013-04-04 00:00:00","D","10F","11","A","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2013-06-13 00:00:00","F","04L","36","Z","2013-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2013-08-22 00:00:00","F","04L","31","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41639187","NEW JIN BU RESTAURANT","3","49","MOTHER GASTON BOULEVARD","11233","7184553725","20","2012-08-25 00:00:00","D","10F","11","A","2012-08-25 00:00:00","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2013-06-10 00:00:00","F","04N","34","C","2013-06-10 00:00:00","2013-09-13 01:01:06.177000000" +"41717504","TAKI SUSHI","1","60","WEST 48 STREET","10036","2128322288","49","2013-03-11 00:00:00","F","04L","37","C","2013-03-11 00:00:00","2013-09-13 01:01:06.177000000" +"41717857","SUSHI SUSHI","1","54 ","TIEMANN PLACE ","10027","6462206766","49","2013-06-19 00:00:00","D","10F","9","A","2013-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"41645944","INAKA","3","597 ","VANDERBILT AVENUE ","11238","7183988168","49","2013-08-14 00:00:00","U","06D","18","Z","2013-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41640893","OSAKA SUSHI","3","1328 ","SHEEPSHEAD BAY ROAD ","11235","7187585888","49","2013-06-01 00:00:00","D","10B","7","A","2013-06-01 00:00:00","2013-09-13 01:01:06.177000000" +"41719609","KOTO SUSHI","3","67 1/2","6 AVENUE","11220","7182303881","49","2013-05-22 00:00:00","U","04M","20","B","2013-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41719787","YAKINIKU GEN","1","250","EAST 52 STREET","10022","2126021129","49","2013-06-05 00:00:00","U","10F","12","A","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41646525","CEETAY","2","129","ALEXANDER AVENUE","10454","7186187020","49","2012-08-09 00:00:00","D","06D","12","A","2012-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41629243","OBENTO DELIGHT & ASIAN FUSION RESTAURANT","1","210","WEST 94 STREET","10025","2122222010","49","2012-09-24 00:00:00","D","09C","11","A","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41629953","SHINOBI RAMEN","3","53 ","MORGAN AVENUE ","11237","6463429014","49","2013-08-29 00:00:00","D","06D","10","A","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2013-05-14 00:00:00","U","04M","13","A","2013-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2013-05-30 00:00:00","D","09C","12","A","2013-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2013-06-13 00:00:00","F","02G","36","Z","2013-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"50000249","TAMASHII RAMEN","4","29-05 ","BROADWAY ","11106","7182785888","49","2013-07-02 00:00:00","D","10F","11","A","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"50000254","MOGU SUSHI","4","133-22 ","39 AVENUE ","11354","9172515853","49","2013-07-23 00:00:00","U","10H","7","A","2013-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2013-05-14 00:00:00","U","02G","13","A","2013-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"50000461","GINA'S ITALIAN BAKERY & PASTRY SHOP","2","766","LYDIG AVE","10462","7187924037","08","2013-08-30 00:00:00","F","04J","49","Z","2013-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41645944","INAKA","3","597 ","VANDERBILT AVENUE ","11238","7183988168","49","2013-08-14 00:00:00","U","04N","18","Z","2013-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41645944","INAKA","3","597 ","VANDERBILT AVENUE ","11238","7183988168","49","2013-08-14 00:00:00","U","10B","18","Z","2013-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2013-06-03 00:00:00","D","09C","7","A","2013-06-03 00:00:00","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2013-06-10 00:00:00","F","10B","34","C","2013-06-10 00:00:00","2013-09-13 01:01:06.177000000" +"41646498","GO GO CURRY","1","231","THOMPSON STREET","10012","2125052555","49","2013-07-01 00:00:00","U","04L","10","A","2013-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41646525","CEETAY","2","129","ALEXANDER AVENUE","10454","7186187020","49","2012-08-09 00:00:00","D","02B","12","A","2012-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"50000614","AHANA JAPANESE FUSION CUISINE INC","1","1154 ","1 AVENUE ","10065","2128885800","49","2013-06-12 00:00:00","D","10D","12","A","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41640400","KUMO SUSHI","1","282","BLEECKER STREET","10014","2123660808","49","2013-07-10 00:00:00","D","10F","2","A","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41645581","MATSU JAPANESE CUISINE","1","483","COLUMBUS AVENUE","10024","2127997922","49","2013-04-15 00:00:00","F","04K","24","B","2013-04-15 00:00:00","2013-09-13 01:01:06.177000000" +"50000736","GREENBAY SUSHI","1","1659","1 AVENUE","10028","2123482878","49","2013-07-09 00:00:00","F","02B","45","Z","2013-07-09 00:00:00","2013-09-13 01:01:06.177000000" +"50000898","NAGASAKI SUSHI RESTAURANT","1","109","ELDRIDGE STREET","10002","2122191555","49","2013-06-25 00:00:00","U","06C","15","Z","2013-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"50000898","NAGASAKI SUSHI RESTAURANT","1","109","ELDRIDGE STREET","10002","2122191555","49","2013-06-25 00:00:00","U","08A","15","Z","2013-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"50000940","A CHIBAN","4","252-13 ","UNION TURNPIKE ","11426","7188318888","49","2013-07-29 00:00:00","D","06E","13","A","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"50001203","AKI SUSHI","1","212","EAST 52 STREET","10022","2128938266","49","2013-07-31 00:00:00","F","04H","26","B","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"41635173","NETA","1","61","WEST 8 STREET","10011","2125052610","49","2013-07-30 00:00:00","D","04H","9","A","2013-07-30 00:00:00","2013-09-13 01:01:06.177000000" +"41635173","NETA","1","61","WEST 8 STREET","10011","2125052610","49","2013-07-30 00:00:00","D","10B","9","A","2013-07-30 00:00:00","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2013-01-30 00:00:00","U","06C","10","A","2013-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2013-06-13 00:00:00","F","06C","36","Z","2013-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41650782","BLUE RIBBON SUSHI IZAKAYA","1","187","ORCHARD STREET","10002","2124660404","49","2013-07-29 00:00:00","D","06F","7","A","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41650782","BLUE RIBBON SUSHI IZAKAYA","1","187","ORCHARD STREET","10002","2124660404","49","2013-07-29 00:00:00","D","10F","7","A","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2013-06-10 00:00:00","F","02G","34","C","2013-06-10 00:00:00","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2013-06-03 00:00:00","D","06E","7","A","2013-06-03 00:00:00","2013-09-13 01:01:06.177000000" +"41659449","FUJI SUSHI","5","1115","HYLAN BOULEVARD","10305","7188160188","49","2012-12-11 00:00:00","D","04A","13","A","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41659908","TENZAN SUSHI","3","7119 ","18TH AVE ","11204","7186213288","49","2013-06-12 00:00:00","U","10B","17","B","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41661008","AMURA JAPANESE RESTAURANT","1","1567","2ND AVE","10028","2127721688","49","2013-04-09 00:00:00","D","02B","12","A","2013-04-09 00:00:00","2013-09-13 01:01:06.177000000" +"41661153","SAKURA IV","4","6419 ","MYRTLE AVENUE ","11385","7183667888","49","2013-04-11 00:00:00","U","04L","9","A","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41653940","SUSHI SUKI YORKER","1","1577","YORK AVENUE","10028","2122493766","49","2013-05-28 00:00:00","U","02B","7","A","2013-05-28 00:00:00","2013-09-13 01:01:06.177000000" +"41662345","IRON SUSHI","1","212","EAST 10 STREET","10003","2122280102","49","2013-06-10 00:00:00","D","02B","12","A","2013-06-10 00:00:00","2013-09-13 01:01:06.177000000" +"41654379","CLUB MAX","1","238","EAST 53 STREET","10022","2126885120","49","2013-04-17 00:00:00","D","08A","10","A","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2013-09-03 00:00:00","F","04A","43","Z","2013-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2013-02-07 00:00:00","U","04H","19","B","2013-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2013-04-30 00:00:00","U","06B","13","A","2013-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2013-08-26 00:00:00","F","04H","53","Z","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2013-08-26 00:00:00","F","08A","53","Z","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2013-06-19 00:00:00","D","10F","10","A","2013-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"41639970","MARUKO SUSHI & TEA","1","170 ","WEST 23 STREET ","10011","9173611798","49","2012-10-22 00:00:00","D","02G","8","A","2012-10-22 00:00:00","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2013-09-03 00:00:00","F","04H","43","Z","2013-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2013-09-03 00:00:00","F","08A","43","Z","2013-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41658037","MIZU","1","29","EAST 20 STREET","10003","2125056687","49","2013-08-14 00:00:00","D","08A","12","A","2013-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41640893","OSAKA SUSHI","3","1328 ","SHEEPSHEAD BAY ROAD ","11235","7187585888","49","2013-06-01 00:00:00","D","06F","7","A","2013-06-01 00:00:00","2013-09-13 01:01:06.177000000" +"41658037","MIZU","1","29","EAST 20 STREET","10003","2125056687","49","2013-08-14 00:00:00","D","10B","12","A","2013-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2013-05-30 00:00:00","D","06F","12","A","2013-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"41661008","AMURA JAPANESE RESTAURANT","1","1567","2ND AVE","10028","2127721688","49","2013-04-09 00:00:00","D","10F","12","A","2013-04-09 00:00:00","2013-09-13 01:01:06.177000000" +"41670513","NEW HAN YANG SUSHI","4","15051 ","NORTHERN BOULEVARD ","11354","7188866678","49","2013-03-06 00:00:00","D","04L","9","A","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2013-05-08 00:00:00","U","02B","12","A","2013-05-08 00:00:00","2013-09-13 01:01:06.177000000" +"41661153","SAKURA IV","4","6419 ","MYRTLE AVENUE ","11385","7183667888","49","2013-04-11 00:00:00","U","09B","9","A","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41671938","YUSHI","1","100 ","MAIDEN LANE ","10038","2127422154","49","2013-05-14 00:00:00","F","02B","27","B","2013-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2013-06-10 00:00:00","F","04C","34","C","2013-06-10 00:00:00","2013-09-13 01:01:06.177000000" +"41662152","TENDO SUSHI","4","6626 ","FRESH POND ROAD ","11385","7183810809","49","2013-05-30 00:00:00","U","04C","17","B","2013-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"41662152","TENDO SUSHI","4","6626 ","FRESH POND ROAD ","11385","7183810809","49","2013-05-30 00:00:00","U","04M","17","B","2013-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2013-01-30 00:00:00","U","10D","10","A","2013-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41645581","MATSU JAPANESE CUISINE","1","483","COLUMBUS AVENUE","10024","2127997922","49","2013-04-15 00:00:00","F","08A","24","B","2013-04-15 00:00:00","2013-09-13 01:01:06.177000000" +"41657649","SEA KING","1","219","EAST 23 STREET","10010","2127253399","49","2013-04-17 00:00:00","U","06A","8","A","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41657649","SEA KING","1","219","EAST 23 STREET","10010","2127253399","49","2013-04-17 00:00:00","U","10F","8","A","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2013-06-25 00:00:00","U","02B","15","B","2013-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41646498","GO GO CURRY","1","231","THOMPSON STREET","10012","2125052555","49","2013-07-01 00:00:00","U","08A","10","A","2013-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41665945","MOCHI RESTAURANT","3","140 ","ST NICHOLAS AVENUE ","11237","3477877876","49","2012-09-13 00:00:00","D","06E","5","A","2012-09-13 00:00:00","2013-09-13 01:01:06.177000000" +"41675589","AJI SUSHI HOUSE","4","3606 ","DITMARS BLVD ","11105","7187778885","49","2013-05-17 00:00:00","D","04C","11","A","2013-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41675643","GINZA SUSHI","1","251","EAST 35 STREET","10016","2128893333","49","2013-04-15 00:00:00","D","06D","13","A","2013-04-15 00:00:00","2013-09-13 01:01:06.177000000" +"41676490","AOYU SUSHI","2","3532A","JOHNSON AVENUE","10463","7188846633","49","2013-09-04 00:00:00","U","04N","24","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41664555","SUSHI OF GARI","1","1 ","WEST 58 STREET ","10019","6467553230","49","2013-03-22 00:00:00","D","10A","9","A","2013-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"41664798","TANOSHI","1","1372","YORK AVENUE","10021","6467279056","49","2013-03-14 00:00:00","D","06C","8","A","2013-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41677561","TOMO JAPANESE CUISINE","4","8612A ","37TH AVE ","11372","7182056222","49","2013-05-08 00:00:00","U","10G","21","B","2013-05-08 00:00:00","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-08-05 00:00:00","O","08C","18","Z","2013-08-05 00:00:00","2013-09-13 01:01:06.177000000" +"41670486","JAPAS 38","1","9","EAST 38 STREET","10016","2126794040","49","2013-05-30 00:00:00","D","09B","9","A","2013-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"41662345","IRON SUSHI","1","212","EAST 10 STREET","10003","2122280102","49","2013-06-10 00:00:00","D","06F","12","A","2013-06-10 00:00:00","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2013-05-08 00:00:00","U","10F","12","A","2013-05-08 00:00:00","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2013-08-26 00:00:00","F","04N","53","Z","2013-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41681082","J R SUSHI","1","86A ","WEST BROADWAY ","10007","2122338338","49","2013-05-31 00:00:00","U","02G","19","B","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41672416","SARKU JAPAN","4","3721 ","JUNCTION BOULEVARD ","11368","7188988898","49","2012-10-22 00:00:00","D","10B","2","A","2012-10-22 00:00:00","2013-09-13 01:01:06.177000000" +"41670534","Iron Sushi","1","355 ","EAST 78 STREET ","10075","2127727680","49","2012-09-05 00:00:00","D","06D","13","A","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2013-06-25 00:00:00","U","02G","15","B","2013-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41671938","YUSHI","1","100 ","MAIDEN LANE ","10038","2127422154","49","2013-05-14 00:00:00","F","02C","27","B","2013-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41671938","YUSHI","1","100 ","MAIDEN LANE ","10038","2127422154","49","2013-05-14 00:00:00","F","03A","27","B","2013-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41652500","NEW MADO JAPANESE RESTAURANT LLC","4","9516A ","QUEENS BLVD ","11374","7188964000","49","2013-05-28 00:00:00","D","09B","11","A","2013-05-28 00:00:00","2013-09-13 01:01:06.177000000" +"41673883","BUGS","1","504","EAST 12 STREET","10009","6469187985","49","2012-10-10 00:00:00","D","06D","10","A","2012-10-10 00:00:00","2013-09-13 01:01:06.177000000" +"41673883","BUGS","1","504","EAST 12 STREET","10009","6469187985","49","2012-10-10 00:00:00","D","10H","10","A","2012-10-10 00:00:00","2013-09-13 01:01:06.177000000" +"41673993","GLAZE TERIYAKI GRILL","1","139","4 AVENUE","10003","2124209400","49","2012-12-19 00:00:00","D","10A","11","A","2012-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"41676490","AOYU SUSHI","2","3532A","JOHNSON AVENUE","10463","7188846633","49","2013-09-04 00:00:00","U","10F","24","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41675589","AJI SUSHI HOUSE","4","3606 ","DITMARS BLVD ","11105","7187778885","49","2013-05-17 00:00:00","D","09A","11","A","2013-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41677309","ATAMI JAPANESE FUSION","1","1167","2ND AVE","10065","2126886868","49","2013-04-05 00:00:00","D","06C","9","A","2013-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"41677561","TOMO JAPANESE CUISINE","4","8612A ","37TH AVE ","11372","7182056222","49","2013-05-08 00:00:00","U","10F","21","B","2013-05-08 00:00:00","2013-09-13 01:01:06.177000000" +"41654886","RAI RAI KEN","1","218","EAST 10 STREET","10003","2124777030","49","2013-02-19 00:00:00","D","02B","9","A","2013-02-19 00:00:00","2013-09-13 01:01:06.177000000" +"41670486","JAPAS 38","1","9","EAST 38 STREET","10016","2126794040","49","2013-05-30 00:00:00","D","02B","9","A","2013-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"41677561","TOMO JAPANESE CUISINE","4","8612A ","37TH AVE ","11372","7182056222","49","2013-05-08 00:00:00","U","02B","21","B","2013-05-08 00:00:00","2013-09-13 01:01:06.177000000" +"41677561","TOMO JAPANESE CUISINE","4","8612A ","37TH AVE ","11372","7182056222","49","2013-05-08 00:00:00","U","06C","21","B","2013-05-08 00:00:00","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2013-06-05 00:00:00","U","04L","14","B","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41688797","RIVER JAPANESE RESTAURANT","4","37-18 ","MAIN ST ","11354","7188869880","49","2013-06-12 00:00:00","U","06A","20","B","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41689018","COCORON","1","37 ","KENMARE STREET ","10012","2129660800","49","2012-12-10 00:00:00","D","06C","11","A","2012-12-10 00:00:00","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2013-06-19 00:00:00","D","06C","10","A","2013-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"41689903","NAGOYA","3","1948","86TH ST","11214","7189758889","49","2013-07-22 00:00:00","D","02G","7","A","2013-07-22 00:00:00","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2013-09-03 00:00:00","F","02B","43","Z","2013-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2013-09-03 00:00:00","F","04N","43","Z","2013-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41679060","E-CHIBAN SUSHI JAPANESE RESTAURANT","4","6647 ","FRESH POND ROAD ","11385","7183868333","49","2013-04-25 00:00:00","D","10F","12","A","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41681082","J R SUSHI","1","86A ","WEST BROADWAY ","10007","2122338338","49","2013-05-31 00:00:00","U","02B","19","B","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41673363","RAMEN SAMURAI BOY","4","8532","GRAND AVENUE","11373","7183962222","49","2013-06-10 00:00:00","U","05H","10","A","2013-06-10 00:00:00","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2013-06-05 00:00:00","U","08A","14","B","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41681373","HADO SUSHI","4","13840 ","86 AVENUE ","11435","7185585758","49","2013-07-22 00:00:00","U","02G","16","B","2013-07-22 00:00:00","2013-09-13 01:01:06.177000000" +"41673993","GLAZE TERIYAKI GRILL","1","139","4 AVENUE","10003","2124209400","49","2012-12-19 00:00:00","D","04L","11","A","2012-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"41673993","GLAZE TERIYAKI GRILL","1","139","4 AVENUE","10003","2124209400","49","2012-12-19 00:00:00","D","04N","11","A","2012-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"41690686","AJI 18","1","208","3 AVENUE","10003","2126776921","49","2013-07-30 00:00:00","U","04L","20","B","2013-07-30 00:00:00","2013-09-13 01:01:06.177000000" +"41658037","MIZU","1","29","EAST 20 STREET","10003","2125056687","49","2013-08-14 00:00:00","D","04L","12","A","2013-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41680924","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","4","13336 ","WHITESTONE EXPRESSWAY ","11354","7183590810","49","2013-04-08 00:00:00","D","06D","12","A","2013-04-08 00:00:00","2013-09-13 01:01:06.177000000" +"41692187","RED MOON","1","132","WEST 45 STREET","10036","2123916666","49","2013-03-18 00:00:00","D","06D","9","A","2013-03-18 00:00:00","2013-09-13 01:01:06.177000000" +"41692187","RED MOON","1","132","WEST 45 STREET","10036","2123916666","49","2013-03-18 00:00:00","D","10H","9","A","2013-03-18 00:00:00","2013-09-13 01:01:06.177000000" +"41681082","J R SUSHI","1","86A ","WEST BROADWAY ","10007","2122338338","49","2013-05-31 00:00:00","U","10F","19","B","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41676490","AOYU SUSHI","2","3532A","JOHNSON AVENUE","10463","7188846633","49","2013-09-04 00:00:00","U","06F","24","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41659908","TENZAN SUSHI","3","7119 ","18TH AVE ","11204","7186213288","49","2013-06-12 00:00:00","U","06E","17","B","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41682935","GANSO","3","25","BOND STREET","11201","7184030900","49","2013-05-17 00:00:00","D","06F","7","A","2013-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41694442","BAMBOOTORI","1","106","UNIVERSITY PLACE","10003","2122555152","49","2013-08-06 00:00:00","U","02G","25","Z","2013-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"41694442","BAMBOOTORI","1","106","UNIVERSITY PLACE","10003","2122555152","49","2013-08-06 00:00:00","U","06D","25","Z","2013-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"41661153","SAKURA IV","4","6419 ","MYRTLE AVENUE ","11385","7183667888","49","2013-04-11 00:00:00","U","10F","9","A","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41686748","AABI SUSHI","1","536","3 AVENUE","10016","2125826180","49","2013-04-25 00:00:00","F","02B","52","C","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41687410","ANI SUSHI","3","142","MONTAGUE STREET","11201","7189231800","49","2013-04-18 00:00:00","D","06D","10","A","2013-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41688363","KOI SOHO","1","246","SPRING STREET","10013","2128424550","49","2012-10-26 00:00:00","D","10F","12","A","2012-10-26 00:00:00","2013-09-13 01:01:06.177000000" +"41687110","KIKU JAPANESE CUISINE","5","3838","RICHMOND AVENUE","10312","7186088589","49","2013-01-08 00:00:00","D","04L","10","A","2013-01-08 00:00:00","2013-09-13 01:01:06.177000000" +"41689018","COCORON","1","37 ","KENMARE STREET ","10012","2129660800","49","2012-12-10 00:00:00","D","06D","11","A","2012-12-10 00:00:00","2013-09-13 01:01:06.177000000" +"41688797","RIVER JAPANESE RESTAURANT","4","37-18 ","MAIN ST ","11354","7188869880","49","2013-06-12 00:00:00","U","04H","20","B","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-08-22 00:00:00","U","09B","25","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41690686","AJI 18","1","208","3 AVENUE","10003","2126776921","49","2013-07-30 00:00:00","U","04C","20","B","2013-07-30 00:00:00","2013-09-13 01:01:06.177000000" +"41666608","27 SHINJUKU SUSHI INC","1","27","PARK PL","10007","2124067333","49","2013-01-14 00:00:00","D","10F","9","A","2013-01-14 00:00:00","2013-09-13 01:01:06.177000000" +"41684379","SOBA TOTTO","1","211","EAST 43 STREET","10017","2125578200","49","2013-07-29 00:00:00","U","06A","25","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-07-29 00:00:00","O","","","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41694442","BAMBOOTORI","1","106","UNIVERSITY PLACE","10003","2122555152","49","2013-08-06 00:00:00","U","04L","25","Z","2013-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"41686748","AABI SUSHI","1","536","3 AVENUE","10016","2125826180","49","2013-04-25 00:00:00","F","02G","52","C","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41686748","AABI SUSHI","1","536","3 AVENUE","10016","2125826180","49","2013-04-25 00:00:00","F","06D","52","C","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41686748","AABI SUSHI","1","536","3 AVENUE","10016","2125826180","49","2013-04-25 00:00:00","F","08A","52","C","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41686748","AABI SUSHI","1","536","3 AVENUE","10016","2125826180","49","2013-04-25 00:00:00","F","09B","52","C","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41694966","SHINJUKU","3","1664","SHEEPSHEAD BAY ROAD","11235","7189344273","49","2013-09-04 00:00:00","U","10B","21","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41695530","TERIYAKI SHACK","3","96","DEKALB AVENUE","11201","7187224771","49","2013-04-04 00:00:00","U","04D","16","B","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41695530","TERIYAKI SHACK","3","96","DEKALB AVENUE","11201","7187224771","49","2013-04-04 00:00:00","U","04L","16","B","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41701697","SUZUME","3","545","LORIMER STREET","11211","7184860200","49","2013-05-23 00:00:00","D","02H","12","A","2013-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"41701697","SUZUME","3","545","LORIMER STREET","11211","7184860200","49","2013-05-23 00:00:00","D","10H","12","A","2013-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"41694966","SHINJUKU","3","1664","SHEEPSHEAD BAY ROAD","11235","7189344273","49","2013-09-04 00:00:00","U","02G","21","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-08-22 00:00:00","U","10B","25","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41702361","VINE","1","2955","BROADWAY","10025","2122223568","49","2013-03-13 00:00:00","D","10F","8","A","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2013-05-08 00:00:00","U","10I","12","A","2013-05-08 00:00:00","2013-09-13 01:01:06.177000000" +"41702877","THE LOOP","1","173","3 AVENUE","10003","2125891200","49","2013-03-18 00:00:00","U","04L","18","B","2013-03-18 00:00:00","2013-09-13 01:01:06.177000000" +"41702880","RAKU II ITS JAPANESE","1","57","WEST 76 STREET","10023","2128731220","49","2013-04-08 00:00:00","U","06A","17","B","2013-04-08 00:00:00","2013-09-13 01:01:06.177000000" +"41696981","JIN SUSHI","1","252","BROOME STREET","10002","2129790989","49","2013-02-12 00:00:00","U","04L","8","A","2013-02-12 00:00:00","2013-09-13 01:01:06.177000000" +"41673139","SUSHI AVE X","3","241","AVENUE X","11223","7183759757","49","2013-06-13 00:00:00","D","02G","9","A","2013-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41704231","MIYAKO","3","143 ","BERRY STREET ","11249","7184860837","49","2013-04-18 00:00:00","U","04L","9","A","2013-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41699653","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","1","121","WEST 125 STREET","10027","6312437700","49","2013-04-10 00:00:00","F","08A","16","B","2013-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41692974","SOGOGOOGO SUSHI","5","1970-1980","VICTORY BLVD","10314","9172542917","49","2013-03-12 00:00:00","D","06D","12","A","2013-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41705437","RAMEN TAKUMI","1","517","3 AVENUE","10016","2126792752","49","2013-05-21 00:00:00","D","10F","2","A","2013-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41705620","BRIGHTON SUSHI","3","1037 ","BRIGHTON BEACH AVENUE ","11235","7188919888","49","2013-03-06 00:00:00","D","10H","11","A","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41705748","GENKI SUSHI HOUSE","5","150","GREAVES LANE","10308","7182138276","49","2013-08-08 00:00:00","U","06D","26","B","2013-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41694442","BAMBOOTORI","1","106","UNIVERSITY PLACE","10003","2122555152","49","2013-08-06 00:00:00","U","08A","25","Z","2013-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"41699653","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","1","121","WEST 125 STREET","10027","6312437700","49","2013-04-10 00:00:00","F","04L","16","B","2013-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41675643","GINZA SUSHI","1","251","EAST 35 STREET","10016","2128893333","49","2013-04-15 00:00:00","D","06C","13","A","2013-04-15 00:00:00","2013-09-13 01:01:06.177000000" +"41675643","GINZA SUSHI","1","251","EAST 35 STREET","10016","2128893333","49","2013-04-15 00:00:00","D","10B","13","A","2013-04-15 00:00:00","2013-09-13 01:01:06.177000000" +"41676490","AOYU SUSHI","2","3532A","JOHNSON AVENUE","10463","7188846633","49","2013-09-04 00:00:00","U","04C","24","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41676490","AOYU SUSHI","2","3532A","JOHNSON AVENUE","10463","7188846633","49","2013-09-04 00:00:00","U","04M","24","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41695453","HAPPY FORTUNE RESTAURANT (NY)","1","96","BOWERY","10013","2122191993","49","2013-01-23 00:00:00","D","04D","12","A","2013-01-23 00:00:00","2013-09-13 01:01:06.177000000" +"41700608","SEN NYC","3","12 ","WEST 21 STREET ","10010","2123885736","49","2013-08-05 00:00:00","D","06A","13","A","2013-08-05 00:00:00","2013-09-13 01:01:06.177000000" +"41700608","SEN NYC","3","12 ","WEST 21 STREET ","10010","2123885736","49","2013-08-05 00:00:00","D","10F","13","A","2013-08-05 00:00:00","2013-09-13 01:01:06.177000000" +"41707610","IPPIN TAPAS & NOODLE BAR","1","141","1 AVENUE","10003","6465471238","49","2013-06-17 00:00:00","U","04A","10","A","2013-06-17 00:00:00","2013-09-13 01:01:06.177000000" +"41702601","KOSHER YAMA SUSHI","4","81-63 ","LEFFERTS BOULEVARD ","11415","7188801750","49","2013-04-16 00:00:00","U","10D","6","A","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41702919","LLA88 RESTAURANT CORP","4","68-60","AUSTIN STREET","11375","7189971601","49","2012-12-05 00:00:00","D","10C","12","A","2012-12-05 00:00:00","2013-09-13 01:01:06.177000000" +"41701495","ZEN 6 RAMEN & GYOZA HOUSE","1","328","EAST 6 STREET","10003","6464298471","49","2013-03-21 00:00:00","D","02C","12","A","2013-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41703048","SPRING FISH VILLAGE","4","136-21","41 AVENUE","11355","7189393633","20","2013-05-16 00:00:00","F","04J","49","C","2013-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"41703229","SAKE BAR SATSKO","1","202","EAST 7 STREET","10009","2126140933","49","2013-06-25 00:00:00","D","06B","13","A","2013-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41702078","SAKURA TOKYO II INC","3","354","MYRTLE AVENUE","11205","2123345420","49","2013-02-12 00:00:00","D","10D","7","A","2013-02-12 00:00:00","2013-09-13 01:01:06.177000000" +"41702877","THE LOOP","1","173","3 AVENUE","10003","2125891200","49","2013-03-18 00:00:00","U","02B","18","B","2013-03-18 00:00:00","2013-09-13 01:01:06.177000000" +"41704282","FUKUROU","1","87","MACDOUGAL STREET","10012","2123880013","49","2013-05-21 00:00:00","U","09B","16","B","2013-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41703048","SPRING FISH VILLAGE","4","136-21","41 AVENUE","11355","7189393633","20","2013-05-16 00:00:00","F","04L","49","C","2013-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"41704457","SUSHI VILLAGE","4","254-04","NORTHERN BOULEVARD","11362","7182253311","49","2013-02-27 00:00:00","D","04L","12","A","2013-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2013-06-05 00:00:00","U","04N","14","B","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41703557","PP BOY JAPAN","4","90-22","161 STREET","11432","7185232726","49","2013-05-31 00:00:00","D","06C","12","A","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41704805","OISHI SUSHI RESTAURANT","3","929","MANHATTAN AVENUE","11222","7183498988","49","2013-03-05 00:00:00","D","06E","13","A","2013-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2013-06-05 00:00:00","U","08C","14","B","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41705370","AKIMOTO SUSHI","1","187","CHURCH STREET","10007","2127663351","49","2012-12-31 00:00:00","D","06D","7","A","2012-12-31 00:00:00","2013-09-13 01:01:06.177000000" +"41705620","BRIGHTON SUSHI","3","1037 ","BRIGHTON BEACH AVENUE ","11235","7188919888","49","2013-03-06 00:00:00","D","10A","11","A","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41701458","MINNOW","4","N/K/A ","LA GUARDIA AIRPORT ","11369","2159970665","49","2013-03-07 00:00:00","D","10F","7","A","2013-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41701495","ZEN 6 RAMEN & GYOZA HOUSE","1","328","EAST 6 STREET","10003","6464298471","49","2013-03-21 00:00:00","D","06F","12","A","2013-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41706496","AQUAMARINE 38","1","250 ","EAST 39 STREET ","10016","2122971800","49","2013-05-14 00:00:00","U","04L","18","B","2013-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41706496","AQUAMARINE 38","1","250 ","EAST 39 STREET ","10016","2122971800","49","2013-05-14 00:00:00","U","06D","18","B","2013-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41711545","OSAKA JAPANESE FUSION","4","224-23","UNION TURNPIKE","11364","7182178283","49","2013-07-01 00:00:00","U","04M","27","Z","2013-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41711559","OSHIMA","3","71 ","7 AVENUE ","11217","7187831888","49","2013-04-01 00:00:00","F","10B","31","C","2013-04-01 00:00:00","2013-09-13 01:01:06.177000000" +"41681373","HADO SUSHI","4","13840 ","86 AVENUE ","11435","7185585758","49","2013-07-22 00:00:00","U","09C","16","B","2013-07-22 00:00:00","2013-09-13 01:01:06.177000000" +"41706542","INASE SUSHI RESTAURANT","1","1586","1 AVENUE","10028","2126281238","49","2013-05-01 00:00:00","U","10B","18","B","2013-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41705620","BRIGHTON SUSHI","3","1037 ","BRIGHTON BEACH AVENUE ","11235","7188919888","49","2013-03-06 00:00:00","D","10F","11","A","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41705748","GENKI SUSHI HOUSE","5","150","GREAVES LANE","10308","7182138276","49","2013-08-08 00:00:00","U","04C","26","B","2013-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41705748","GENKI SUSHI HOUSE","5","150","GREAVES LANE","10308","7182138276","49","2013-08-08 00:00:00","U","06B","26","B","2013-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-08-20 00:00:00","F","04L","38","Z","2013-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41702919","LLA88 RESTAURANT CORP","4","68-60","AUSTIN STREET","11375","7189971601","49","2012-12-05 00:00:00","D","04L","12","A","2012-12-05 00:00:00","2013-09-13 01:01:06.177000000" +"41703048","SPRING FISH VILLAGE","4","136-21","41 AVENUE","11355","7189393633","20","2013-05-16 00:00:00","F","02B","49","C","2013-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"41703235","CHEZ SARDINE","1","183","WEST 10 STREET","10014","6463603705","49","2013-04-03 00:00:00","U","04L","5","A","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41703557","PP BOY JAPAN","4","90-22","161 STREET","11432","7185232726","49","2013-05-31 00:00:00","D","02G","12","A","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41706991","NATORI JAPANESE RESTAURANT","1","58","SAINT MARKS PLACE","10003","2125337711","49","2013-03-13 00:00:00","D","10H","12","A","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41704231","MIYAKO","3","143 ","BERRY STREET ","11249","7184860837","49","2013-04-18 00:00:00","U","08A","9","A","2013-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41684533","MALINGO RESTAURANT & BAR","4","43-16","QUEENS BOULEVARD","11104","3478088100","49","2013-07-23 00:00:00","D","08C","11","A","2013-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41709614","MISOYA","4","158-09B ","NORTHERN BOULEVARD ","11358","7183212600","49","2013-03-23 00:00:00","F","06E","43","C","2013-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"41704282","FUKUROU","1","87","MACDOUGAL STREET","10012","2123880013","49","2013-05-21 00:00:00","U","02B","16","B","2013-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41704457","SUSHI VILLAGE","4","254-04","NORTHERN BOULEVARD","11362","7182253311","49","2013-02-27 00:00:00","D","08A","12","A","2013-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"41716978","52ND SUSHI","4","52-21","ROOSEVELT AVENUE","11377","7185079204","49","2013-05-30 00:00:00","D","04J","12","A","2013-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"41717504","TAKI SUSHI","1","60","WEST 48 STREET","10036","2128322288","49","2013-03-11 00:00:00","F","04H","37","C","2013-03-11 00:00:00","2013-09-13 01:01:06.177000000" +"41717504","TAKI SUSHI","1","60","WEST 48 STREET","10036","2128322288","49","2013-03-11 00:00:00","F","06A","37","C","2013-03-11 00:00:00","2013-09-13 01:01:06.177000000" +"41717504","TAKI SUSHI","1","60","WEST 48 STREET","10036","2128322288","49","2013-03-11 00:00:00","F","06B","37","C","2013-03-11 00:00:00","2013-09-13 01:01:06.177000000" +"41717504","TAKI SUSHI","1","60","WEST 48 STREET","10036","2128322288","49","2013-03-11 00:00:00","F","08A","37","C","2013-03-11 00:00:00","2013-09-13 01:01:06.177000000" +"41711186","AMAZE","1","466","AMSTERDAM AVENUE","10024","2128744888","49","2013-02-07 00:00:00","D","02G","11","A","2013-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41718644","SUSHI HOUSE","4","3502 ","154 STREET ","11354","7183590333","49","2013-04-15 00:00:00","D","09B","4","A","2013-04-15 00:00:00","2013-09-13 01:01:06.177000000" +"41705988","KURA","1","130","ST MARKS PLACE","10009","2122281010","49","2013-06-04 00:00:00","U","02B","9","A","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41688151","RAMEN YEBISU","3","126 ","NORTH 6 STREET ","11249","7187821444","49","2013-08-07 00:00:00","D","02B","10","A","2013-08-07 00:00:00","2013-09-13 01:01:06.177000000" +"41706496","AQUAMARINE 38","1","250 ","EAST 39 STREET ","10016","2122971800","49","2013-05-14 00:00:00","U","02B","18","B","2013-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41706542","INASE SUSHI RESTAURANT","1","1586","1 AVENUE","10028","2126281238","49","2013-05-01 00:00:00","U","06F","18","B","2013-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41711545","OSAKA JAPANESE FUSION","4","224-23","UNION TURNPIKE","11364","7182178283","49","2013-07-01 00:00:00","U","08A","27","Z","2013-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41711547","NEW SARKURA JAPAN","4","90-40","160 STREET","11432","6462506640","49","2013-04-30 00:00:00","D","10F","3","A","2013-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41711559","OSHIMA","3","71 ","7 AVENUE ","11217","7187831888","49","2013-04-01 00:00:00","F","06A","31","C","2013-04-01 00:00:00","2013-09-13 01:01:06.177000000" +"41721159","SAKURA JAPANESE CUISINE","4","35-15","DITMARS BOULEVARD","11105","7187772188","49","2013-08-13 00:00:00","U","04L","21","Z","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41721414","SUSHI BENTO","5","2655","RICHMOND AVENUE","10314","6468120501","49","2013-06-07 00:00:00","D","06D","9","A","2013-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41714546","AA ICHIBAN SUSHI","1","213","WEST 28 STREET","10001","2126758188","49","2013-03-13 00:00:00","D","10H","12","A","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41722947","TANKO JAPANESE FUSION","4","3805 ","BELL BOULEVARD ","11361","7186311188","49","2013-07-10 00:00:00","D","10D","13","A","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41716350","FUKI SUSHI","3","8509","18 AVENUE","11214","7188378885","49","2013-07-02 00:00:00","D","10B","7","A","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41709347","AMBER","1","381","3 AVENUE","10016","2126866388","49","2013-04-11 00:00:00","U","04M","11","A","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41709614","MISOYA","4","158-09B ","NORTHERN BOULEVARD ","11358","7183212600","49","2013-03-23 00:00:00","F","02B","43","C","2013-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"50000111","YOSHI NEW YORK","1","131","AVENUE A","10009","__________","49","2013-05-31 00:00:00","F","08A","21","B","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41716444","TOTTO RAMEN","1","366","WEST 52 STREET","10019","2125820052","49","2013-05-22 00:00:00","F","04L","16","B","2013-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41716978","52ND SUSHI","4","52-21","ROOSEVELT AVENUE","11377","7185079204","49","2013-05-30 00:00:00","D","10H","12","A","2013-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"50000261","NEW YORK SUSHI KO","1","91 ","CLINTON STREET ","10002","9177345857","49","2013-07-10 00:00:00","D","04C","8","A","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"50000333","AJI 53","3","170","SMITH STREET","11201","7189351166","49","2013-08-13 00:00:00","U","02G","19","Z","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41711545","OSAKA JAPANESE FUSION","4","224-23","UNION TURNPIKE","11364","7182178283","49","2013-07-01 00:00:00","U","02G","27","Z","2013-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"50000461","GINA'S ITALIAN BAKERY & PASTRY SHOP","2","766","LYDIG AVE","10462","7187924037","08","2013-08-30 00:00:00","F","02G","49","Z","2013-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"50000461","GINA'S ITALIAN BAKERY & PASTRY SHOP","2","766","LYDIG AVE","10462","7187924037","08","2013-08-30 00:00:00","F","10H","49","Z","2013-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41711559","OSHIMA","3","71 ","7 AVENUE ","11217","7187831888","49","2013-04-01 00:00:00","F","10F","31","C","2013-04-01 00:00:00","2013-09-13 01:01:06.177000000" +"41694966","SHINJUKU","3","1664","SHEEPSHEAD BAY ROAD","11235","7189344273","49","2013-09-04 00:00:00","U","02B","21","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41719787","YAKINIKU GEN","1","250","EAST 52 STREET","10022","2126021129","49","2013-06-05 00:00:00","U","06F","12","A","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"50000614","AHANA JAPANESE FUSION CUISINE INC","1","1154 ","1 AVENUE ","10065","2128885800","49","2013-06-12 00:00:00","D","02G","12","A","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"50000708","TERIYAKI JAPAN EXPRESS GRILL","3","6814","4 AVENUE","11220","7188333069","49","2013-08-12 00:00:00","D","06C","8","A","2013-08-12 00:00:00","2013-09-13 01:01:06.177000000" +"50000736","GREENBAY SUSHI","1","1659","1 AVENUE","10028","2123482878","49","2013-07-09 00:00:00","F","06C","45","Z","2013-07-09 00:00:00","2013-09-13 01:01:06.177000000" +"41695453","HAPPY FORTUNE RESTAURANT (NY)","1","96","BOWERY","10013","2122191993","49","2013-01-23 00:00:00","D","09B","12","A","2013-01-23 00:00:00","2013-09-13 01:01:06.177000000" +"41721069","MASA TERIYAKI","3","11 ","PUTNAM AVENUE ","11238","7186222228","49","2013-06-05 00:00:00","D","04A","12","A","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41721259","GO GO CURRY CHELSEA","1","144","WEST 19 STREET","10011","2122554555","49","2013-06-06 00:00:00","B","","","A","2013-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41713670","WASABI LOBBY JAPANESE RESTAURANT","1","1584","2 AVENUE","10028","2129888882","49","2013-04-03 00:00:00","U","04L","15","B","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41714546","AA ICHIBAN SUSHI","1","213","WEST 28 STREET","10001","2126758188","49","2013-03-13 00:00:00","D","09B","12","A","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41721159","SAKURA JAPANESE CUISINE","4","35-15","DITMARS BOULEVARD","11105","7187772188","49","2013-08-13 00:00:00","U","06D","21","Z","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41696981","JIN SUSHI","1","252","BROOME STREET","10002","2129790989","49","2013-02-12 00:00:00","U","10B","8","A","2013-02-12 00:00:00","2013-09-13 01:01:06.177000000" +"50000898","NAGASAKI SUSHI RESTAURANT","1","109","ELDRIDGE STREET","10002","2122191555","49","2013-06-25 00:00:00","U","04L","15","Z","2013-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41716209","AJISAI","1","795 ","LEXINGTON AVENUE ","10065","2123550888","49","2013-04-08 00:00:00","D","02B","12","A","2013-04-08 00:00:00","2013-09-13 01:01:06.177000000" +"41722450","IPPUDO","1","321","WEST 51 STREET","10019","2129742500","49","2013-09-09 00:00:00","D","06F","13","A","2013-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"50000082","FUJI ISLAND","5","556","TOMPKINS AVENUE","10305","7184474752","49","2013-05-29 00:00:00","U","10F","12","A","2013-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41722751","SAKURA 7","4","65-54 ","GRAND AVENUE ","11378","7188949888","49","2013-05-15 00:00:00","D","06F","12","A","2013-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41716444","TOTTO RAMEN","1","366","WEST 52 STREET","10019","2125820052","49","2013-05-22 00:00:00","F","10F","16","B","2013-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41716978","52ND SUSHI","4","52-21","ROOSEVELT AVENUE","11377","7185079204","49","2013-05-30 00:00:00","D","10J","12","A","2013-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"50000111","YOSHI NEW YORK","1","131","AVENUE A","10009","__________","49","2013-05-31 00:00:00","F","04K","21","B","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41699653","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","1","121","WEST 125 STREET","10027","6312437700","49","2013-04-10 00:00:00","F","06E","16","B","2013-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"50001312","MEW","1","53","WEST 35 STREET","10001","6463689384","49","2013-09-10 00:00:00","D","10B","13","A","2013-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"41718215","YAKITORI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2013-04-10 00:00:00","D","02B","7","A","2013-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"50000333","AJI 53","3","170","SMITH STREET","11201","7189351166","49","2013-08-13 00:00:00","U","10A","19","Z","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41719609","KOTO SUSHI","3","67 1/2","6 AVENUE","11220","7182303881","49","2013-05-22 00:00:00","U","04J","20","B","2013-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"50001722","ZEN PALATE","1","113","EAST 18 STREET","10003","2123878885","49","2013-08-15 00:00:00","D","10D","7","A","2013-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"50000384","AMBER SUSHI INC","3","847B ","UNION STREET ","11215","7186361288","49","2013-06-08 00:00:00","D","02B","7","A","2013-06-08 00:00:00","2013-09-13 01:01:06.177000000" +"41701458","MINNOW","4","N/K/A ","LA GUARDIA AIRPORT ","11369","2159970665","49","2013-03-07 00:00:00","D","06C","7","A","2013-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41719787","YAKINIKU GEN","1","250","EAST 52 STREET","10022","2126021129","49","2013-06-05 00:00:00","U","06A","12","A","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41702078","SAKURA TOKYO II INC","3","354","MYRTLE AVENUE","11205","2123345420","49","2013-02-12 00:00:00","D","06D","7","A","2013-02-12 00:00:00","2013-09-13 01:01:06.177000000" +"50000461","GINA'S ITALIAN BAKERY & PASTRY SHOP","2","766","LYDIG AVE","10462","7187924037","08","2013-08-30 00:00:00","F","10F","49","Z","2013-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"50000461","GINA'S ITALIAN BAKERY & PASTRY SHOP","2","766","LYDIG AVE","10462","7187924037","08","2013-08-30 00:00:00","F","04L","49","Z","2013-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"50000461","GINA'S ITALIAN BAKERY & PASTRY SHOP","2","766","LYDIG AVE","10462","7187924037","08","2013-08-30 00:00:00","F","06C","49","Z","2013-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41702361","VINE","1","2955","BROADWAY","10025","2122223568","49","2013-03-13 00:00:00","D","06A","8","A","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41721159","SAKURA JAPANESE CUISINE","4","35-15","DITMARS BOULEVARD","11105","7187772188","49","2013-08-13 00:00:00","U","02G","21","Z","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41721414","SUSHI BENTO","5","2655","RICHMOND AVENUE","10314","6468120501","49","2013-06-07 00:00:00","D","10F","9","A","2013-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41702601","KOSHER YAMA SUSHI","4","81-63 ","LEFFERTS BOULEVARD ","11415","7188801750","49","2013-04-16 00:00:00","U","10A","6","A","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41702880","RAKU II ITS JAPANESE","1","57","WEST 76 STREET","10023","2128731220","49","2013-04-08 00:00:00","U","04C","17","B","2013-04-08 00:00:00","2013-09-13 01:01:06.177000000" +"50000708","TERIYAKI JAPAN EXPRESS GRILL","3","6814","4 AVENUE","11220","7188333069","49","2013-08-12 00:00:00","D","10F","8","A","2013-08-12 00:00:00","2013-09-13 01:01:06.177000000" +"50000665","DRUNKEN FISH","4","52-35","METROPOLITAN AVENUE","11385","7188211283","49","2013-07-11 00:00:00","U","04M","21","B","2013-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"50000665","DRUNKEN FISH","4","52-35","METROPOLITAN AVENUE","11385","7188211283","49","2013-07-11 00:00:00","U","08A","21","B","2013-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"41722751","SAKURA 7","4","65-54 ","GRAND AVENUE ","11378","7188949888","49","2013-05-15 00:00:00","D","04H","12","A","2013-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41702880","RAKU II ITS JAPANESE","1","57","WEST 76 STREET","10023","2128731220","49","2013-04-08 00:00:00","U","10F","17","B","2013-04-08 00:00:00","2013-09-13 01:01:06.177000000" +"41703048","SPRING FISH VILLAGE","4","136-21","41 AVENUE","11355","7189393633","20","2013-05-16 00:00:00","F","06F","49","C","2013-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"50000736","GREENBAY SUSHI","1","1659","1 AVENUE","10028","2123482878","49","2013-07-09 00:00:00","F","04C","45","Z","2013-07-09 00:00:00","2013-09-13 01:01:06.177000000" +"50000736","GREENBAY SUSHI","1","1659","1 AVENUE","10028","2123482878","49","2013-07-09 00:00:00","F","08A","45","Z","2013-07-09 00:00:00","2013-09-13 01:01:06.177000000" +"41722947","TANKO JAPANESE FUSION","4","3805 ","BELL BOULEVARD ","11361","7186311188","49","2013-07-10 00:00:00","D","10B","13","A","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"50000111","YOSHI NEW YORK","1","131","AVENUE A","10009","__________","49","2013-05-31 00:00:00","F","04M","21","B","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"50000940","A CHIBAN","4","252-13 ","UNION TURNPIKE ","11426","7188318888","49","2013-07-29 00:00:00","D","04C","13","A","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"50000249","TAMASHII RAMEN","4","29-05 ","BROADWAY ","11106","7182785888","49","2013-07-02 00:00:00","D","02H","11","A","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"50000254","MOGU SUSHI","4","133-22 ","39 AVENUE ","11354","9172515853","49","2013-07-23 00:00:00","U","06F","7","A","2013-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"50001131","YO SUSHI","1","351","2 AVENUE","10010","6462269797","49","2013-07-11 00:00:00","D","02G","11","A","2013-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"50001203","AKI SUSHI","1","212","EAST 52 STREET","10022","2128938266","49","2013-07-31 00:00:00","F","02G","26","B","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"41705732","BentOn Cafe","1","156","EAST 45 STREET","10017","2129229788","49","2013-07-22 00:00:00","U","02B","26","Z","2013-07-22 00:00:00","2013-09-13 01:01:06.177000000" +"41705748","GENKI SUSHI HOUSE","5","150","GREAVES LANE","10308","7182138276","49","2013-08-08 00:00:00","U","10B","26","B","2013-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41705988","KURA","1","130","ST MARKS PLACE","10009","2122281010","49","2013-06-04 00:00:00","U","10D","9","A","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"50001312","MEW","1","53","WEST 35 STREET","10001","6463689384","49","2013-09-10 00:00:00","D","08B","13","A","2013-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"50000461","GINA'S ITALIAN BAKERY & PASTRY SHOP","2","766","LYDIG AVE","10462","7187924037","08","2013-08-30 00:00:00","F","04K","49","Z","2013-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"50000461","GINA'S ITALIAN BAKERY & PASTRY SHOP","2","766","LYDIG AVE","10462","7187924037","08","2013-08-30 00:00:00","F","08C","49","Z","2013-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-08-20 00:00:00","F","06D","38","Z","2013-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41706542","INASE SUSHI RESTAURANT","1","1586","1 AVENUE","10028","2126281238","49","2013-05-01 00:00:00","U","02B","18","B","2013-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"50001531","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2013-09-10 00:00:00","D","02G","11","A","2013-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"50001722","ZEN PALATE","1","113","EAST 18 STREET","10003","2123878885","49","2013-08-15 00:00:00","D","10F","7","A","2013-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"50001709","AKI 39 JAPANESE CUISINE","1","216","EAST 39 STREET","10016","2128678668","49","2013-08-09 00:00:00","D","02G","12","A","2013-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"50001709","AKI 39 JAPANESE CUISINE","1","216","EAST 39 STREET","10016","2128678668","49","2013-08-09 00:00:00","D","09B","12","A","2013-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"50000736","GREENBAY SUSHI","1","1659","1 AVENUE","10028","2123482878","49","2013-07-09 00:00:00","F","04L","45","Z","2013-07-09 00:00:00","2013-09-13 01:01:06.177000000" +"50000736","GREENBAY SUSHI","1","1659","1 AVENUE","10028","2123482878","49","2013-07-09 00:00:00","F","06A","45","Z","2013-07-09 00:00:00","2013-09-13 01:01:06.177000000" +"41707582","OISHI","2","3799","EAST TREMONT AVENUE","10465","7188236868","49","2013-03-07 00:00:00","D","04H","9","A","2013-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41709614","MISOYA","4","158-09B ","NORTHERN BOULEVARD ","11358","7183212600","49","2013-03-23 00:00:00","F","05D","43","C","2013-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"50001312","MEW","1","53","WEST 35 STREET","10001","6463689384","49","2013-09-10 00:00:00","D","10F","13","A","2013-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"41711559","OSHIMA","3","71 ","7 AVENUE ","11217","7187831888","49","2013-04-01 00:00:00","F","02G","31","C","2013-04-01 00:00:00","2013-09-13 01:01:06.177000000" +"41716444","TOTTO RAMEN","1","366","WEST 52 STREET","10019","2125820052","49","2013-05-22 00:00:00","F","06C","16","B","2013-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41716444","TOTTO RAMEN","1","366","WEST 52 STREET","10019","2125820052","49","2013-05-22 00:00:00","F","10B","16","B","2013-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41716841","CHO CHO SAN JAPANESE RESTAURANT INC","4","39-11","QUEENS BOULEVARD","11104","7183618232","49","2013-05-03 00:00:00","U","02G","12","A","2013-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41716841","CHO CHO SAN JAPANESE RESTAURANT INC","4","39-11","QUEENS BOULEVARD","11104","7183618232","49","2013-05-03 00:00:00","U","06D","12","A","2013-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41717504","TAKI SUSHI","1","60","WEST 48 STREET","10036","2128322288","49","2013-03-11 00:00:00","F","03B","37","C","2013-03-11 00:00:00","2013-09-13 01:01:06.177000000" +"41717857","SUSHI SUSHI","1","54 ","TIEMANN PLACE ","10027","6462206766","49","2013-06-19 00:00:00","D","02B","9","A","2013-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"41719609","KOTO SUSHI","3","67 1/2","6 AVENUE","11220","7182303881","49","2013-05-22 00:00:00","U","02H","20","B","2013-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41719627","SUKI JAPANESE RESTAURANT","3","9208","3 AVENUE","11209","7182382323","49","2013-07-15 00:00:00","D","10F","2","A","2013-07-15 00:00:00","2013-09-13 01:01:06.177000000" +"50000111","YOSHI NEW YORK","1","131","AVENUE A","10009","__________","49","2013-05-31 00:00:00","F","02G","21","B","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"50000333","AJI 53","3","170","SMITH STREET","11201","7189351166","49","2013-08-13 00:00:00","U","08A","19","Z","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"50000461","GINA'S ITALIAN BAKERY & PASTRY SHOP","2","766","LYDIG AVE","10462","7187924037","08","2013-08-30 00:00:00","F","08A","49","Z","2013-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"50000665","DRUNKEN FISH","4","52-35","METROPOLITAN AVENUE","11385","7188211283","49","2013-07-11 00:00:00","U","02G","21","B","2013-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"50000736","GREENBAY SUSHI","1","1659","1 AVENUE","10028","2123482878","49","2013-07-09 00:00:00","F","02G","45","Z","2013-07-09 00:00:00","2013-09-13 01:01:06.177000000" +"50001531","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2013-09-10 00:00:00","D","10F","11","A","2013-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2013-02-27 00:00:00","D","04L","11","A","2013-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2013-08-15 00:00:00","D","06F","13","A","2013-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"40372560","KODAMA SUSHI","1","301","WEST 45 STREET","10036","2125828065","49","2013-04-02 00:00:00","D","10F","11","A","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2013-04-09 00:00:00","U","04A","27","B","2013-04-09 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2013-07-12 00:00:00","O","04L","10","C","2013-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2013-05-02 00:00:00","F","10F","2","A","2013-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2013-07-31 00:00:00","F","06F","62","Z","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2013-06-04 00:00:00","F","04L","40","C","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2013-06-04 00:00:00","F","06D","40","C","2013-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"40393712","SHABU TATSU","1","216 ","EAST 10 STREET ","10003","2124772972","49","2013-03-12 00:00:00","D","10F","12","A","2013-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2013-09-05 00:00:00","U","02G","23","Z","2013-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2013-04-17 00:00:00","F","02G","59","C","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2013-03-27 00:00:00","F","06C","25","B","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2013-04-09 00:00:00","F","06E","23","B","2013-04-09 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2013-06-26 00:00:00","F","08C","37","C","2013-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2013-04-04 00:00:00","U","08A","14","B","2013-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-07-30 00:00:00","U","10B","16","Z","2013-07-30 00:00:00","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2013-08-19 00:00:00","D","06F","13","A","2013-08-19 00:00:00","2013-09-13 01:01:06.177000000" +"40662783","SUGIYAMA RESTAURANT","1","251","WEST 55 STREET","10019","2129560670","49","2013-02-19 00:00:00","D","06D","8","A","2013-02-19 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2013-03-22 00:00:00","F","10F","64","C","2013-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2013-08-13 00:00:00","U","04D","17","B","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2013-06-12 00:00:00","U","10B","10","A","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2013-04-29 00:00:00","U","02B","22","B","2013-04-29 00:00:00","2013-09-13 01:01:06.177000000" +"40726247","OKI JAPANESE RESTARUANT","4","45-11","QUEENS BOULEVARD","11104","7187293666","49","2013-06-18 00:00:00","D","10F","2","A","2013-06-18 00:00:00","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2013-09-09 00:00:00","D","06A","7","A","2013-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2013-07-03 00:00:00","D","04C","12","A","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"40733383","HARU","1","433","AMSTERDAM AVENUE","10024","2125795655","49","2013-05-30 00:00:00","D","08A","9","A","2013-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2013-06-11 00:00:00","D","10F","2","A","2013-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"40750917","SHIKI","3","1863-1867 ","86 STREET ","11214","7188371586","49","2013-04-02 00:00:00","U","08A","27","Z","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2013-04-25 00:00:00","U","08A","24","B","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2012-12-07 00:00:00","U","05D","27","B","2012-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2013-03-28 00:00:00","F","10J","38","C","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2013-04-16 00:00:00","U","10F","19","B","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2013-01-31 00:00:00","D","04M","13","A","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2013-03-27 00:00:00","U","06C","27","B","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2013-03-21 00:00:00","D","06C","7","A","2013-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2013-03-21 00:00:00","D","10F","7","A","2013-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2013-01-31 00:00:00","U","02G","24","B","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2013-01-31 00:00:00","U","04H","24","B","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2013-03-27 00:00:00","U","10B","16","B","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2013-07-29 00:00:00","U","02G","7","A","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"40882356","SPORTS CENTER AT CHELSEA PIERS (SUSHI BAR)","1","PIER 60","WEST SIDE HIGHWAY","10011","2123666286","49","2013-06-28 00:00:00","D","10I","11","A","2013-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"40897051","NATIVE","1","101","WEST 118 STREET","10026","2126652535","03","2013-07-10 00:00:00","F","04J","49","Z","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2013-07-31 00:00:00","U","10F","14","B","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"40913721","CAFE VIRGO","1","249","EAST 49 STREET","10017","2124211238","49","2013-05-02 00:00:00","D","04L","9","A","2013-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"40913721","CAFE VIRGO","1","249","EAST 49 STREET","10017","2124211238","49","2013-05-02 00:00:00","D","08A","9","A","2013-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2013-03-28 00:00:00","D","04H","10","A","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2013-08-06 00:00:00","F","10F","31","Z","2013-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2013-04-24 00:00:00","D","10B","13","A","2013-04-24 00:00:00","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2013-02-04 00:00:00","U","04L","12","A","2013-02-04 00:00:00","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-07-03 00:00:00","U","02G","27","Z","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"41000607","CITY 75","1","75","ROCKEFELLER PLAZA","10019","212247150_","03","2013-07-10 00:00:00","F","04N","49","C","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41000607","CITY 75","1","75","ROCKEFELLER PLAZA","10019","212247150_","03","2013-07-10 00:00:00","F","08A","49","C","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2013-02-26 00:00:00","U","10B","27","B","2013-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41020284","LITTLE ITALY PIZZA","1","55","WEST 45 STREET","10036","2127307575","62","2013-07-03 00:00:00","F","04L","49","C","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2013-03-02 00:00:00","D","06C","5","A","2013-03-02 00:00:00","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2013-07-02 00:00:00","D","10F","12","A","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2013-04-30 00:00:00","D","06D","12","A","2013-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41060828","49 GROVE","1","49","GROVE STREET","10014","2127271100","03","2013-06-14 00:00:00","D","10F","3","A","2013-06-14 00:00:00","2013-09-13 01:01:06.177000000" +"41112946","52nd SUSHI","4","52-21","ROOSEVELT AVENUE","11377","7185079204","49","2012-08-29 00:00:00","D","02B","7","A","2012-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2013-05-15 00:00:00","D","06D","12","A","2013-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2013-09-04 00:00:00","F","02G","47","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2013-05-29 00:00:00","D","10E","13","A","2013-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2013-04-16 00:00:00","F","09B","16","B","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2013-04-23 00:00:00","D","09C","8","A","2013-04-23 00:00:00","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2013-04-23 00:00:00","D","10F","8","A","2013-04-23 00:00:00","2013-09-13 01:01:06.177000000" +"41179005","ROSAN JIN","1","141","DUANE STREET","10013","2123467807","49","2013-08-07 00:00:00","D","02G","11","A","2013-08-07 00:00:00","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2013-06-07 00:00:00","U","04M","17","B","2013-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2013-04-08 00:00:00","D","02B","12","A","2013-04-08 00:00:00","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2013-06-11 00:00:00","D","10F","12","A","2013-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2013-08-05 00:00:00","F","04J","30","Z","2013-08-05 00:00:00","2013-09-13 01:01:06.177000000" +"41219569","SUTEISHI","1","24","PECK SLIP","10038","2127662344","49","2012-08-14 00:00:00","D","06C","10","A","2012-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2013-09-11 00:00:00","F","10F","31","Z","2013-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2012-10-24 00:00:00","F","04M","44","C","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2013-06-17 00:00:00","U","04N","16","B","2013-06-17 00:00:00","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2013-04-22 00:00:00","U","02B","27","B","2013-04-22 00:00:00","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2013-03-19 00:00:00","U","02G","20","B","2013-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41262936","MICKEY'S PLACE","4","40-17","BELL BOULEVARD","11361","7182248152","49","2013-06-13 00:00:00","U","06F","18","B","2013-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41262936","MICKEY'S PLACE","4","40-17","BELL BOULEVARD","11361","7182248152","49","2013-06-13 00:00:00","U","10F","18","B","2013-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2012-12-19 00:00:00","U","06E","27","B","2012-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2013-02-13 00:00:00","D","02B","9","A","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2013-02-13 00:00:00","D","08B","9","A","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2013-01-15 00:00:00","D","10B","10","A","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"41278931","EAST SUSHI BISTRO","3","2106","EAST 19 STREET","11229","7186480800","49","2013-03-04 00:00:00","D","10F","11","A","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2013-05-07 00:00:00","U","04L","27","Z","2013-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2013-05-07 00:00:00","U","10F","27","Z","2013-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2013-04-05 00:00:00","D","08A","9","A","2013-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2013-03-20 00:00:00","U","02B","22","B","2013-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2013-03-20 00:00:00","U","06E","22","B","2013-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2013-03-30 00:00:00","U","06B","23","B","2013-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2013-04-02 00:00:00","U","02G","19","B","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2013-04-02 00:00:00","U","08A","19","B","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2013-05-30 00:00:00","F","02G","30","C","2013-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2013-02-13 00:00:00","D","08B","11","A","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2013-03-26 00:00:00","F","10J","30","C","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41312710","CURRY YA","1","214","EAST 10 STREET","10003","2129952877","49","2013-04-06 00:00:00","D","06C","12","A","2013-04-06 00:00:00","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2013-07-01 00:00:00","U","02G","13","A","2013-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2012-11-26 00:00:00","D","10I","10","A","2012-11-26 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2013-06-12 00:00:00","F","08A","50","C","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41324332","FUJIYAMA JAPANESE CUISINE","3","7307","13 AVENUE","11228","7182568186","49","2013-06-13 00:00:00","D","10F","9","A","2013-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2013-06-25 00:00:00","F","02B","22","B","2013-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2013-06-25 00:00:00","F","06A","22","B","2013-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2013-06-25 00:00:00","F","10B","22","B","2013-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41338985","MELLIES RESTAURANT","4","137-81","NORTHERN BLVD","11354","7188862988","20","2013-05-31 00:00:00","F","06C","49","C","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2012-09-12 00:00:00","O","08C","14","C","2012-09-12 00:00:00","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2012-09-12 00:00:00","O","10B","14","C","2012-09-12 00:00:00","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2013-06-12 00:00:00","D","10F","12","A","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2012-10-15 00:00:00","D","10H","11","A","2012-10-15 00:00:00","2013-09-13 01:01:06.177000000" +"41373322","ICHIE","1","53","WEST 106 STREET","10025","2128652888","49","2012-10-10 00:00:00","D","06C","7","A","2012-10-10 00:00:00","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2013-03-28 00:00:00","F","02B","27","B","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41381844","QOO","3","367 ","METROPOLITAN AVENUE","11211","7183849493","49","2013-05-31 00:00:00","D","10B","9","A","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2013-04-18 00:00:00","U","09B","12","A","2013-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41389136","SUSHI DELIGHT","1","157","HESTER STREET","10013","9174780453","49","2013-05-29 00:00:00","D","10B","4","A","2013-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41394230","EAST SUSHI","5","4371","AMBOY ROAD","10312","7189668888","49","2012-08-27 00:00:00","D","04N","10","A","2012-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41396618","BINY JAPANESE RESTAURANT","1","393","CANAL STREET","10013","2123345490","49","2012-12-18 00:00:00","D","06D","10","A","2012-12-18 00:00:00","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2013-06-25 00:00:00","D","10B","7","A","2013-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2013-04-17 00:00:00","U","04L","27","B","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2013-04-17 00:00:00","U","10F","27","B","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2013-08-21 00:00:00","D","10F","7","A","2013-08-21 00:00:00","2013-09-13 01:01:06.177000000" +"41431748","GOWASABI","4","34-02","30 AVENUE","11103","7182747354","49","2012-11-13 00:00:00","D","04C","9","A","2012-11-13 00:00:00","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2013-07-11 00:00:00","U","04N","11","A","2013-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-08-06 00:00:00","U","10F","19","Z","2013-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"41442107","ROBATAYA","1","231","EAST 9 STREET","10003","2129799674","49","2013-06-19 00:00:00","D","04C","7","A","2013-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"41450436","CASBAR","2","1362","CASTLE HILL AVENUE","10462","7188229596","12","2012-11-28 00:00:00","F","04L","49","C","2012-11-28 00:00:00","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2012-11-24 00:00:00","D","06C","11","A","2012-11-24 00:00:00","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2013-04-22 00:00:00","D","06D","12","A","2013-04-22 00:00:00","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2013-05-25 00:00:00","F","10H","46","Z","2013-05-25 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2013-04-18 00:00:00","F","04L","23","B","2013-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2013-04-16 00:00:00","D","10D","4","A","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2013-08-27 00:00:00","U","04H","21","B","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2013-08-21 00:00:00","U","02B","23","Z","2013-08-21 00:00:00","2013-09-13 01:01:06.177000000" +"41480898","HANABI JAPANESE RESTAURANT","1","1450","2 AVENUE","10021","2125701888","49","2013-01-30 00:00:00","D","08A","9","A","2013-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41482459","SARKURA JAPAN","4","89-02","165 STREET","11432","7182629055","49","2013-04-17 00:00:00","D","10F","5","A","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2013-05-01 00:00:00","F","08A","28","C","2013-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2013-04-17 00:00:00","F","06D","25","B","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41485508","TAKAYAMA SUSHI LOUNGE","5","17","PAGE AVENUE","10309","7182278744","49","2013-04-03 00:00:00","D","02G","12","A","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2013-08-12 00:00:00","D","02B","13","A","2013-08-12 00:00:00","2013-09-13 01:01:06.177000000" +"41491426","IZUMI JAPANESE RESTAURANT","1","139","WEST 28 STREET","10001","2122731169","49","2012-12-17 00:00:00","D","10B","11","A","2012-12-17 00:00:00","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2013-04-25 00:00:00","F","04C","24","B","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2013-08-01 00:00:00","U","08C","19","B","2013-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2013-01-07 00:00:00","D","02B","10","A","2013-01-07 00:00:00","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2013-09-09 00:00:00","U","02G","19","Z","2013-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2013-02-19 00:00:00","U","04K","21","B","2013-02-19 00:00:00","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2013-02-19 00:00:00","U","08A","21","B","2013-02-19 00:00:00","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2013-07-16 00:00:00","D","06C","13","A","2013-07-16 00:00:00","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2013-03-18 00:00:00","D","06C","10","A","2013-03-18 00:00:00","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-09-27 00:00:00","D","08A","9","A","2012-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2013-05-31 00:00:00","D","10B","11","A","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2013-09-11 00:00:00","D","10F","7","A","2013-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"41517779","HAPPY KITCHEN","4","80-12","37 AVENUE","11372","7188031600","49","2012-10-09 00:00:00","D","04M","12","A","2012-10-09 00:00:00","2013-09-13 01:01:06.177000000" +"41517779","HAPPY KITCHEN","4","80-12","37 AVENUE","11372","7188031600","49","2012-10-09 00:00:00","D","10B","12","A","2012-10-09 00:00:00","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2013-05-21 00:00:00","F","02G","26","B","2013-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2013-02-07 00:00:00","U","06D","26","B","2013-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41525547","TARO SUSHI NY INC","3","244","FLATBUSH AVENUE","11217","7183985240","49","2013-02-06 00:00:00","D","06E","12","A","2013-02-06 00:00:00","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2012-12-20 00:00:00","D","08A","9","A","2012-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2013-08-01 00:00:00","U","02B","27","Z","2013-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2013-08-01 00:00:00","U","04C","27","Z","2013-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2013-03-20 00:00:00","U","02G","18","B","2013-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2013-06-13 00:00:00","D","10I","13","A","2013-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41547974","SAKURA JAPANESE RESTAURANT","3","346","GRAHAM AVENUE","11211","7182188056","49","2013-02-13 00:00:00","D","06E","13","A","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2013-07-02 00:00:00","F","10B","29","Z","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41564694","KOBE SUSHI","1","1472 ","YORK AVENUE ","10075","2129888628","49","2013-06-12 00:00:00","D","10D","11","A","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41568107","TAPPO Thin Crust Pizza","1","49","WEST 24 STREET","10010","2128076888","48","2013-01-15 00:00:00","D","06D","12","A","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"41573430","SUSHI FUSSION","4","105-45A ","64 ROAD ","11375","7189978744","49","2012-09-12 00:00:00","D","04N","9","A","2012-09-12 00:00:00","2013-09-13 01:01:06.177000000" +"41573430","SUSHI FUSSION","4","105-45A ","64 ROAD ","11375","7189978744","49","2012-09-12 00:00:00","D","08A","9","A","2012-09-12 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2013-02-21 00:00:00","U","02B","22","B","2013-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2013-02-21 00:00:00","U","08A","22","B","2013-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2013-04-01 00:00:00","O","04L","11","A","2013-04-01 00:00:00","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2013-04-01 00:00:00","O","09C","11","A","2013-04-01 00:00:00","2013-09-13 01:01:06.177000000" +"41586672","SUSHI MORA","1","200","8 AVENUE","10011","2123669888","49","2013-05-02 00:00:00","F","04C","25","B","2013-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2013-07-03 00:00:00","F","02G","23","B","2013-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2013-06-06 00:00:00","F","04A","35","C","2013-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2013-05-15 00:00:00","D","10F","13","A","2013-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2013-07-29 00:00:00","F","04J","63","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2013-07-29 00:00:00","F","10E","63","Z","2013-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2013-02-13 00:00:00","U","10F","10","A","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2013-06-25 00:00:00","D","02G","13","A","2013-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41608024","KOBEYAKI","1","293 ","7 AVENUE ","10001","2122425500","49","2012-12-18 00:00:00","D","02G","9","A","2012-12-18 00:00:00","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2013-07-19 00:00:00","O","10B","5","Z","2013-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41608998","BAR MISHIMA","1","212","EAST 52 STREET","10022","2125881089","49","2013-04-16 00:00:00","F","05D","59","C","2013-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2013-06-12 00:00:00","F","10F","25","B","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41616445","AKURA SUSHI","1","39","EAST 31 STREET","10016","2123793623","49","2013-06-26 00:00:00","D","02G","12","A","2013-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-08-27 00:00:00","F","06F","46","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-08-27 00:00:00","F","10I","46","Z","2013-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2013-08-22 00:00:00","F","02G","31","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41627232","NEW CHOPSTICK","4","91-28","CORONA AVENUE","11373","7186990866","49","2013-05-07 00:00:00","U","02G","23","B","2013-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41628521","KOTOBUKI","1","56","3 AVENUE","10003","2123535088","49","2013-06-26 00:00:00","D","06A","9","A","2013-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"41628521","KOTOBUKI","1","56","3 AVENUE","10003","2123535088","49","2013-06-26 00:00:00","D","10B","9","A","2013-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"41628657","OOTOYA JAPANESE RESTAURANT","1","8","WEST 18 STREET","10011","2122550018","49","2013-06-24 00:00:00","U","02G","23","B","2013-06-24 00:00:00","2013-09-13 01:01:06.177000000" +"41629953","SHINOBI RAMEN","3","53 ","MORGAN AVENUE ","11237","6463429014","49","2013-08-29 00:00:00","D","06F","10","A","2013-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41631683","LONG GRAIN","1","2534","BROADWAY","10025","2126660888","49","2013-02-14 00:00:00","D","10F","6","A","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41633013","TOMO JAPANESE RESTAURANT","5","4561","AMBOY ROAD","10312","7182275100","49","2013-03-23 00:00:00","U","06A","14","B","2013-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2013-08-14 00:00:00","D","10F","11","A","2013-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41637060","REGO PARK SAKE","4","9534 ","QUEENS BLVD ","11374","7188970429","49","2013-07-02 00:00:00","D","04M","9","A","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2013-09-03 00:00:00","F","10F","30","Z","2013-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41639187","NEW JIN BU RESTAURANT","3","49","MOTHER GASTON BOULEVARD","11233","7184553725","20","2012-08-25 00:00:00","D","02G","11","A","2012-08-25 00:00:00","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2013-05-30 00:00:00","D","06D","12","A","2013-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"41643120","YOPPARAI","1","151","RIVINGTON STREET","10002","2127777253","49","2013-05-09 00:00:00","D","08C","9","A","2013-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2013-06-13 00:00:00","F","04M","36","Z","2013-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41645581","MATSU JAPANESE CUISINE","1","483","COLUMBUS AVENUE","10024","2127997922","49","2013-04-15 00:00:00","F","04C","24","B","2013-04-15 00:00:00","2013-09-13 01:01:06.177000000" +"41645581","MATSU JAPANESE CUISINE","1","483","COLUMBUS AVENUE","10024","2127997922","49","2013-04-15 00:00:00","F","06E","24","B","2013-04-15 00:00:00","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2013-04-30 00:00:00","U","02B","13","A","2013-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2013-09-03 00:00:00","F","04C","43","Z","2013-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2013-02-07 00:00:00","U","04N","19","B","2013-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2013-02-07 00:00:00","U","08A","19","B","2013-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41659425","ARATA JAPANESE RESTAURANT.","1","1047","2 AVENUE","10022","2123718338","49","2013-05-31 00:00:00","U","02G","10","A","2013-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41664555","SUSHI OF GARI","1","1 ","WEST 58 STREET ","10019","6467553230","49","2013-03-22 00:00:00","D","06F","9","A","2013-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"41664555","SUSHI OF GARI","1","1 ","WEST 58 STREET ","10019","6467553230","49","2013-03-22 00:00:00","D","10F","9","A","2013-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-08-05 00:00:00","O","04M","18","Z","2013-08-05 00:00:00","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-08-05 00:00:00","O","10F","18","Z","2013-08-05 00:00:00","2013-09-13 01:01:06.177000000" +"41670513","NEW HAN YANG SUSHI","4","15051 ","NORTHERN BOULEVARD ","11354","7188866678","49","2013-03-06 00:00:00","D","08A","9","A","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41670534","Iron Sushi","1","355 ","EAST 78 STREET ","10075","2127727680","49","2012-09-05 00:00:00","D","04C","13","A","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41671938","YUSHI","1","100 ","MAIDEN LANE ","10038","2127422154","49","2013-05-14 00:00:00","F","06D","27","B","2013-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41672275","DASSARA","3","271","SMITH STREET","11231","9178801002","49","2013-01-16 00:00:00","D","06D","13","A","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41672275","DASSARA","3","271","SMITH STREET","11231","9178801002","49","2013-01-16 00:00:00","D","06E","13","A","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41673993","GLAZE TERIYAKI GRILL","1","139","4 AVENUE","10003","2124209400","49","2012-12-19 00:00:00","D","10F","11","A","2012-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"41676490","AOYU SUSHI","2","3532A","JOHNSON AVENUE","10463","7188846633","49","2013-09-04 00:00:00","U","08A","24","Z","2013-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41677309","ATAMI JAPANESE FUSION","1","1167","2ND AVE","10065","2126886868","49","2013-04-05 00:00:00","D","10B","9","A","2013-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"41677534","TOMO JAPANESE CAFE","4","8914 ","QUEENS BLVD ","11373","7188039799","49","2013-05-22 00:00:00","U","04L","13","A","2013-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41679060","E-CHIBAN SUSHI JAPANESE RESTAURANT","4","6647 ","FRESH POND ROAD ","11385","7183868333","49","2013-04-25 00:00:00","D","03B","12","A","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41681373","HADO SUSHI","4","13840 ","86 AVENUE ","11435","7185585758","49","2013-07-22 00:00:00","U","04M","16","B","2013-07-22 00:00:00","2013-09-13 01:01:06.177000000" +"41684533","MALINGO RESTAURANT & BAR","4","43-16","QUEENS BOULEVARD","11104","3478088100","49","2013-07-23 00:00:00","D","10F","11","A","2013-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41686748","AABI SUSHI","1","536","3 AVENUE","10016","2125826180","49","2013-04-25 00:00:00","F","04L","52","C","2013-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41688797","RIVER JAPANESE RESTAURANT","4","37-18 ","MAIN ST ","11354","7188869880","49","2013-06-12 00:00:00","U","02B","20","B","2013-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-08-22 00:00:00","U","02B","25","Z","2013-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41689884","NAGOYA SUSHI","3","1907","KINGS HIGHWAY","11229","7183363688","49","2013-08-13 00:00:00","D","10B","7","A","2013-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41690686","AJI 18","1","208","3 AVENUE","10003","2126776921","49","2013-07-30 00:00:00","U","02G","20","B","2013-07-30 00:00:00","2013-09-13 01:01:06.177000000" +"41692974","SOGOGOOGO SUSHI","5","1970-1980","VICTORY BLVD","10314","9172542917","49","2013-03-12 00:00:00","D","02B","12","A","2013-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41698000","KARAOKE DUET 48","1","304","EAST 48 STREET","10017","2127530030","49","2013-06-19 00:00:00","U","04L","8","A","2013-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"41702919","LLA88 RESTAURANT CORP","4","68-60","AUSTIN STREET","11375","7189971601","49","2012-12-05 00:00:00","D","08A","12","A","2012-12-05 00:00:00","2013-09-13 01:01:06.177000000" +"41703048","SPRING FISH VILLAGE","4","136-21","41 AVENUE","11355","7189393633","20","2013-05-16 00:00:00","F","05D","49","C","2013-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"41703229","SAKE BAR SATSKO","1","202","EAST 7 STREET","10009","2126140933","49","2013-06-25 00:00:00","D","06F","13","A","2013-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41703229","SAKE BAR SATSKO","1","202","EAST 7 STREET","10009","2126140933","49","2013-06-25 00:00:00","D","10F","13","A","2013-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41704282","FUKUROU","1","87","MACDOUGAL STREET","10012","2123880013","49","2013-05-21 00:00:00","U","04L","16","B","2013-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41705620","BRIGHTON SUSHI","3","1037 ","BRIGHTON BEACH AVENUE ","11235","7188919888","49","2013-03-06 00:00:00","D","09C","11","A","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41706991","NATORI JAPANESE RESTAURANT","1","58","SAINT MARKS PLACE","10003","2125337711","49","2013-03-13 00:00:00","D","06E","12","A","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41707582","OISHI","2","3799","EAST TREMONT AVENUE","10465","7188236868","49","2013-03-07 00:00:00","D","10B","9","A","2013-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41709614","MISOYA","4","158-09B ","NORTHERN BOULEVARD ","11358","7183212600","49","2013-03-23 00:00:00","F","06A","43","C","2013-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"41711559","OSHIMA","3","71 ","7 AVENUE ","11217","7187831888","49","2013-04-01 00:00:00","F","04L","31","C","2013-04-01 00:00:00","2013-09-13 01:01:06.177000000" +"41711559","OSHIMA","3","71 ","7 AVENUE ","11217","7187831888","49","2013-04-01 00:00:00","F","08A","31","C","2013-04-01 00:00:00","2013-09-13 01:01:06.177000000" +"41716209","AJISAI","1","795 ","LEXINGTON AVENUE ","10065","2123550888","49","2013-04-08 00:00:00","D","06E","12","A","2013-04-08 00:00:00","2013-09-13 01:01:06.177000000" +"41716350","FUKI SUSHI","3","8509","18 AVENUE","11214","7188378885","49","2013-07-02 00:00:00","D","10F","7","A","2013-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41718644","SUSHI HOUSE","4","3502 ","154 STREET ","11354","7183590333","49","2013-04-15 00:00:00","D","10F","4","A","2013-04-15 00:00:00","2013-09-13 01:01:06.177000000" +"41720372","AKIRA JAPANESE CUISINE","1","152","7 AVENUE SOUTH","10014","2219898880","49","2013-08-02 00:00:00","D","09C","12","A","2013-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"41720372","AKIRA JAPANESE CUISINE","1","152","7 AVENUE SOUTH","10014","2219898880","49","2013-08-02 00:00:00","D","10F","12","A","2013-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"41721069","MASA TERIYAKI","3","11 ","PUTNAM AVENUE ","11238","7186222228","49","2013-06-05 00:00:00","D","10F","12","A","2013-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41722947","TANKO JAPANESE FUSION","4","3805 ","BELL BOULEVARD ","11361","7186311188","49","2013-07-10 00:00:00","D","06D","13","A","2013-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"50000082","FUJI ISLAND","5","556","TOMPKINS AVENUE","10305","7184474752","49","2013-05-29 00:00:00","U","02G","12","A","2013-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"50000461","GINA'S ITALIAN BAKERY & PASTRY SHOP","2","766","LYDIG AVE","10462","7187924037","08","2013-08-30 00:00:00","F","04A","49","Z","2013-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"50001085","Dunkin Donuts","1","49","NASSAU STREET","10005","2126191222","07","2013-08-12 00:00:00","B","","","A","2013-08-12 00:00:00","2013-09-13 01:01:06.177000000" +"50001131","YO SUSHI","1","351","2 AVENUE","10010","6462269797","49","2013-07-11 00:00:00","D","09C","11","A","2013-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"50001131","YO SUSHI","1","351","2 AVENUE","10010","6462269797","49","2013-07-11 00:00:00","D","10F","11","A","2013-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"50001203","AKI SUSHI","1","212","EAST 52 STREET","10022","2128938266","49","2013-07-31 00:00:00","F","04M","26","B","2013-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"50001312","MEW","1","53","WEST 35 STREET","10001","6463689384","49","2013-09-10 00:00:00","D","04H","13","A","2013-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"40364299","B & M HOT BAGEL & GROCERY","5","203","GIFFORDS LANE","10308","7189668445","27","2011-10-03 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40364299","B & M HOT BAGEL & GROCERY","5","203","GIFFORDS LANE","10308","7189668445","27","2011-10-03 00:00:00","F","10A","49","","","2013-09-13 01:01:06.177000000" +"40364299","B & M HOT BAGEL & GROCERY","5","203","GIFFORDS LANE","10308","7189668445","27","2011-10-03 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"40364576","TOUT VA BIEN","1","311","WEST 51 STREET","10019","2122650190","35","2013-01-16 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41007533","UMI NO IE","1","86","EAST 3 STREET","10003","6466541122","49","2013-02-28 00:00:00","B","","0","","","2013-09-13 01:01:13.757000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2012-01-18 00:00:00","B","","","","","2013-09-13 01:01:13.757000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2013-05-18 00:00:00","B","","0","","","2013-09-13 01:01:13.757000000" +"41427225","ELEVAGE","1","302","EAST 45 STREET","10017","2129220930","49","2011-06-21 00:00:00","B","","0","","","2013-09-13 01:01:13.757000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2011-08-31 00:00:00","B","","0","B","2011-08-31 00:00:00","2013-09-13 01:01:13.757000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2012-08-10 00:00:00","B","","0","B","2012-08-10 00:00:00","2013-09-13 01:01:13.757000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2010-10-14 00:00:00","B","","0","","","2013-09-13 01:01:13.757000000" +"41642516","SUSHI 21","1","174","7 AVENUE","10011","6464866288","49","2012-02-28 00:00:00","B","","","","","2013-09-13 01:01:13.757000000" +"41673363","RAMEN SAMURAI BOY","4","8532","GRAND AVENUE","11373","7183962222","49","2012-09-18 00:00:00","B","","","","","2013-09-13 01:01:13.757000000" +"41556769","BLUE RIBBON SUSHI BAR & GRILL ROOF DECK","1","6","COLUMBUS CIRCLE","10019","2122290404","49","2012-01-04 00:00:00","B","","0","C","2012-01-04 00:00:00","2013-09-13 01:01:13.757000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2013-08-15 00:00:00","B","","","","","2013-09-13 01:01:13.757000000" +"41675589","AJI SUSHI HOUSE","4","3606 ","DITMARS BLVD ","11105","7187778885","49","2013-03-20 00:00:00","B","","0","","","2013-09-13 01:01:13.757000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2010-09-30 00:00:00","B","","0","","","2013-09-13 01:01:13.757000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2013-06-12 00:00:00","B","","","","","2013-09-13 01:01:13.757000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2012-08-10 00:00:00","B","","0","","","2013-09-13 01:01:13.757000000" +"41547974","SAKURA JAPANESE RESTAURANT","3","346","GRAHAM AVENUE","11211","7182188056","49","2011-02-19 00:00:00","B","","","","","2013-09-13 01:01:13.757000000" +"41704805","OISHI SUSHI RESTAURANT","3","929","MANHATTAN AVENUE","11222","7183498988","49","2013-02-06 00:00:00","B","","","","","2013-09-13 01:01:13.757000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2013-02-13 00:00:00","B","","","","","2013-09-13 01:01:13.757000000" +"40950507","YUMMY SUSHI","1","30","ROCKFEELLER PLAZA","10020","2124592100","49","2011-03-09 00:00:00","B","","0","B","2011-03-09 00:00:00","2013-09-13 01:01:13.757000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2011-10-18 00:00:00","B","","","","","2013-09-13 01:01:13.757000000" +"41699653","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","1","121","WEST 125 STREET","10027","6312437700","49","2013-04-10 00:00:00","B","","","","","2013-09-13 01:01:13.757000000" +"41320193","KAWAII SUSHI","4","82-19","153 AVENUE","11414","7188486888","49","2013-05-28 00:00:00","B","","0","","","2013-09-13 01:01:13.757000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2011-08-31 00:00:00","B","","","","","2013-09-13 01:01:13.757000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2012-04-05 00:00:00","B","","0","","","2013-09-13 01:01:13.757000000" +"40620325","BOND ST","1","6","BOND STREET","10012","2127772500","49","2011-08-23 00:00:00","B","","0","B","2011-08-23 00:00:00","2013-09-13 01:01:13.757000000" +"41288039","YAMATO JAPANESE CUISINE","4","3323","FRANCIS LEWIS BOULEVARD","11358","7183211508","49","2013-01-09 00:00:00","B","","0","","","2013-09-13 01:01:13.757000000" +"41711545","OSAKA JAPANESE FUSION","4","224-23","UNION TURNPIKE","11364","7182178283","49","2013-05-18 00:00:00","B","","","","","2013-09-13 01:01:13.757000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2012-09-11 00:00:00","B","","0","","","2013-09-13 01:01:13.757000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2010-10-01 00:00:00","B","","0","","","2013-09-13 01:01:13.757000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2013-05-22 00:00:00","B","","0","","","2013-09-13 01:01:13.757000000" +"41491426","IZUMI JAPANESE RESTAURANT","1","139","WEST 28 STREET","10001","2122731169","49","2010-05-27 15:49:00","B","","0","","","2013-09-13 01:01:13.757000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2013-05-29 00:00:00","B","","","","","2013-09-13 01:01:13.757000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2010-09-20 00:00:00","B","","0","A","2010-09-20 00:00:00","2013-09-13 01:01:13.757000000" +"50000446","MAISONO","1","98","KENMARE STREET","10012","2122749898","49","1900-01-01 00:00:00","","","","","","2013-09-13 01:01:14.833000000" +"40363630","LORENZO & MARIA'S","1","1418 ","THIRD AVENUE ","10028","2127941080","03","2010-10-21 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40365904","MEE SUM COFFEE SHOP","1","26","PELL STREET","10013","2123495260","14","2013-01-09 00:00:00","W","04L","49","","","2013-09-13 01:01:06.177000000" +"40366002","MARGHERITA PIZZA","4","163-04","JAMAICA AVENUE","11432","7186575780","62","2011-04-05 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40366002","MARGHERITA PIZZA","4","163-04","JAMAICA AVENUE","11432","7186575780","62","2011-04-05 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"40364299","B & M HOT BAGEL & GROCERY","5","203","GIFFORDS LANE","10308","7189668445","27","2011-10-03 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40364299","B & M HOT BAGEL & GROCERY","5","203","GIFFORDS LANE","10308","7189668445","27","2011-10-03 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40366356","BLARNEY CASTLE","4","202-24","ROCKAWAY POINT BOULEVARD","11697","7186344503","03","2011-03-23 00:00:00","F","22C","49","C","2011-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"40364576","TOUT VA BIEN","1","311","WEST 51 STREET","10019","2122650190","35","2013-01-16 00:00:00","F","02H","49","","","2013-09-13 01:01:06.177000000" +"40365166","CORNER BISTRO","1","331 ","WEST 4 STREET ","10014","2122429502","03","2011-03-31 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40365166","CORNER BISTRO","1","331 ","WEST 4 STREET ","10014","2122429502","03","2011-03-31 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40366356","BLARNEY CASTLE","4","202-24","ROCKAWAY POINT BOULEVARD","11697","7186344503","03","2011-03-23 00:00:00","F","08C","49","C","2011-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2011-10-19 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2011-10-19 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2011-10-19 00:00:00","P","10B","19","","","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2011-11-18 00:00:00","U","02G","16","B","2011-11-18 00:00:00","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2013-08-09 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2013-08-09 00:00:00","P","06E","25","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2011-02-14 00:00:00","F","06D","25","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2011-03-02 00:00:00","F","02B","27","C","2011-03-02 00:00:00","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2012-02-14 00:00:00","D","02B","9","A","2012-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"40367381","DANTE CATERERS","4","75-07","31 AVENUE","11370","7184461310","03","2011-06-07 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2010-09-23 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2010-11-10 00:00:00","U","06F","12","B","2010-11-10 00:00:00","2013-09-13 01:01:06.177000000" +"40363630","LORENZO & MARIA'S","1","1418 ","THIRD AVENUE ","10028","2127941080","03","2010-10-21 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40363630","LORENZO & MARIA'S","1","1418 ","THIRD AVENUE ","10028","2127941080","03","2010-10-21 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40363630","LORENZO & MARIA'S","1","1418 ","THIRD AVENUE ","10028","2127941080","03","2010-10-21 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"40363630","LORENZO & MARIA'S","1","1418 ","THIRD AVENUE ","10028","2127941080","03","2010-10-21 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"40364299","B & M HOT BAGEL & GROCERY","5","203","GIFFORDS LANE","10308","7189668445","27","2011-10-03 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40369928","REME RESTAURANT","1","4021","BROADWAY","10032","2129235452","03","2011-03-14 00:00:00","F","02G","49","C","2011-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"40364299","B & M HOT BAGEL & GROCERY","5","203","GIFFORDS LANE","10308","7189668445","27","2011-10-03 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40368370","BENJAMIN","1","603","2 AVENUE","10016","2128890750","03","2011-08-30 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40368370","BENJAMIN","1","603","2 AVENUE","10016","2128890750","03","2011-08-30 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40364576","TOUT VA BIEN","1","311","WEST 51 STREET","10019","2122650190","35","2013-01-16 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40365166","CORNER BISTRO","1","331 ","WEST 4 STREET ","10014","2122429502","03","2011-03-31 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40365166","CORNER BISTRO","1","331 ","WEST 4 STREET ","10014","2122429502","03","2011-03-31 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40370452","SLY FOX INN","4","177-23","UNION TURNPIKE","11366","7189698169","03","2011-06-03 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40370452","SLY FOX INN","4","177-23","UNION TURNPIKE","11366","7189698169","03","2011-06-03 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40365166","CORNER BISTRO","1","331 ","WEST 4 STREET ","10014","2122429502","03","2011-03-31 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40364576","TOUT VA BIEN","1","311","WEST 51 STREET","10019","2122650190","35","2013-01-16 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"40364576","TOUT VA BIEN","1","311","WEST 51 STREET","10019","2122650190","35","2013-01-16 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2010-09-23 00:00:00","C","02G","9","A","2010-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2010-09-23 00:00:00","C","10H","9","A","2010-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2012-07-10 00:00:00","P","02B","18","","","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2013-08-09 00:00:00","P","06C","25","","","2013-09-13 01:01:06.177000000" +"40364576","TOUT VA BIEN","1","311","WEST 51 STREET","10019","2122650190","35","2013-01-16 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40364576","TOUT VA BIEN","1","311","WEST 51 STREET","10019","2122650190","35","2013-01-16 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2011-02-14 00:00:00","F","08C","25","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2011-02-14 00:00:00","F","09B","25","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2011-03-02 00:00:00","F","06E","27","C","2011-03-02 00:00:00","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2012-07-24 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"40365166","CORNER BISTRO","1","331 ","WEST 4 STREET ","10014","2122429502","03","2011-03-31 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2011-01-24 00:00:00","F","02G","56","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2011-01-24 00:00:00","F","06D","56","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2012-04-05 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2012-04-19 00:00:00","U","10F","9","B","2012-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2013-02-05 00:00:00","D","04L","11","A","2013-02-05 00:00:00","2013-09-13 01:01:06.177000000" +"40365904","MEE SUM COFFEE SHOP","1","26","PELL STREET","10013","2123495260","14","2013-01-09 00:00:00","W","04H","49","","","2013-09-13 01:01:06.177000000" +"40365166","CORNER BISTRO","1","331 ","WEST 4 STREET ","10014","2122429502","03","2011-03-31 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40370994","MAMA LUCIA","3","1701","FOSTER AVENUE","11230","7184349858","48","2012-08-15 00:00:00","G","04J","49","","","2013-09-13 01:01:06.177000000" +"40366002","MARGHERITA PIZZA","4","163-04","JAMAICA AVENUE","11432","7186575780","62","2011-04-05 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2011-05-31 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2012-11-19 00:00:00","U","08A","27","B","2012-11-19 00:00:00","2013-09-13 01:01:06.177000000" +"40365904","MEE SUM COFFEE SHOP","1","26","PELL STREET","10013","2123495260","14","2013-01-09 00:00:00","W","08A","49","","","2013-09-13 01:01:06.177000000" +"40366002","MARGHERITA PIZZA","4","163-04","JAMAICA AVENUE","11432","7186575780","62","2011-04-05 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"40366002","MARGHERITA PIZZA","4","163-04","JAMAICA AVENUE","11432","7186575780","62","2011-04-05 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40366356","BLARNEY CASTLE","4","202-24","ROCKAWAY POINT BOULEVARD","11697","7186344503","03","2011-03-23 00:00:00","F","06F","49","C","2011-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"40366356","BLARNEY CASTLE","4","202-24","ROCKAWAY POINT BOULEVARD","11697","7186344503","03","2011-03-23 00:00:00","F","04H","49","C","2011-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"40365904","MEE SUM COFFEE SHOP","1","26","PELL STREET","10013","2123495260","14","2013-01-09 00:00:00","W","06D","49","","","2013-09-13 01:01:06.177000000" +"40372560","KODAMA SUSHI","1","301","WEST 45 STREET","10036","2125828065","49","2011-11-22 00:00:00","D","02G","10","A","2011-11-22 00:00:00","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2010-09-08 00:00:00","P","06A","15","","","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2010-09-08 00:00:00","P","06B","15","","","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2010-11-09 00:00:00","C","02G","12","A","2010-11-09 00:00:00","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2010-11-09 00:00:00","C","06D","12","A","2010-11-09 00:00:00","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2011-11-16 00:00:00","D","08A","9","A","2011-11-16 00:00:00","2013-09-13 01:01:06.177000000" +"40365904","MEE SUM COFFEE SHOP","1","26","PELL STREET","10013","2123495260","14","2013-01-09 00:00:00","W","10F","49","","","2013-09-13 01:01:06.177000000" +"40366002","MARGHERITA PIZZA","4","163-04","JAMAICA AVENUE","11432","7186575780","62","2011-04-05 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2011-07-15 00:00:00","P","04A","21","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2011-09-06 00:00:00","G","04M","61","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2013-01-23 00:00:00","F","06E","37","","","2013-09-13 01:01:06.177000000" +"40366356","BLARNEY CASTLE","4","202-24","ROCKAWAY POINT BOULEVARD","11697","7186344503","03","2011-03-23 00:00:00","F","04L","49","C","2011-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"40366356","BLARNEY CASTLE","4","202-24","ROCKAWAY POINT BOULEVARD","11697","7186344503","03","2011-03-23 00:00:00","F","06A","49","C","2011-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"40366356","BLARNEY CASTLE","4","202-24","ROCKAWAY POINT BOULEVARD","11697","7186344503","03","2011-03-23 00:00:00","F","18G","49","C","2011-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"40366356","BLARNEY CASTLE","4","202-24","ROCKAWAY POINT BOULEVARD","11697","7186344503","03","2011-03-23 00:00:00","F","22A","49","C","2011-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"40366356","BLARNEY CASTLE","4","202-24","ROCKAWAY POINT BOULEVARD","11697","7186344503","03","2011-03-23 00:00:00","F","04C","49","C","2011-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"40367381","DANTE CATERERS","4","75-07","31 AVENUE","11370","7184461310","03","2011-06-07 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40367381","DANTE CATERERS","4","75-07","31 AVENUE","11370","7184461310","03","2011-06-07 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40366356","BLARNEY CASTLE","4","202-24","ROCKAWAY POINT BOULEVARD","11697","7186344503","03","2011-03-23 00:00:00","F","06D","49","C","2011-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"40366356","BLARNEY CASTLE","4","202-24","ROCKAWAY POINT BOULEVARD","11697","7186344503","03","2011-03-23 00:00:00","F","10I","49","C","2011-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2011-01-24 00:00:00","F","02B","56","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2011-01-24 00:00:00","F","08A","56","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2011-02-14 00:00:00","F","04L","27","C","2011-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2011-02-10 00:00:00","F","08A","54","","","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2012-02-15 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2012-02-15 00:00:00","P","10J","25","","","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2012-08-15 00:00:00","F","08B","22","C","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2013-03-26 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2013-01-28 00:00:00","P","08B","15","","","2013-09-13 01:01:06.177000000" +"40367381","DANTE CATERERS","4","75-07","31 AVENUE","11370","7184461310","03","2011-06-07 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"40372560","KODAMA SUSHI","1","301","WEST 45 STREET","10036","2125828065","49","2011-07-14 00:00:00","D","06B","12","A","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2011-05-26 00:00:00","F","09B","29","","","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2011-11-16 00:00:00","D","04K","9","A","2011-11-16 00:00:00","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2012-04-04 00:00:00","D","02G","12","A","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2013-05-20 00:00:00","G","04C","73","","","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2013-05-20 00:00:00","G","06C","73","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2011-03-02 00:00:00","F","04L","27","C","2011-03-02 00:00:00","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2011-03-02 00:00:00","F","06C","27","C","2011-03-02 00:00:00","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2012-02-06 00:00:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2012-07-24 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2012-08-08 00:00:00","D","09B","4","A","2012-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2011-09-27 00:00:00","U","02G","19","B","2011-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2012-01-25 00:00:00","P","06E","22","","","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2012-02-21 00:00:00","U","10B","19","B","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2010-11-10 00:00:00","U","10B","12","B","2010-11-10 00:00:00","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2011-05-31 00:00:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2011-08-01 00:00:00","U","06F","13","B","2011-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"40373113","ASTRO RESTAURANT","1","101","WEST 55 STREET","10019","2124896284","03","2010-02-24 08:57:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2011-11-01 00:00:00","D","10C","13","A","2011-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2012-07-10 00:00:00","P","04H","18","","","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2012-08-15 00:00:00","D","10B","7","A","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2011-09-06 00:00:00","G","08A","61","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2011-09-06 00:00:00","G","08B","61","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2011-09-06 00:00:00","G","10B","61","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2013-01-23 00:00:00","F","10B","37","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2011-02-14 00:00:00","F","02B","25","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2011-02-14 00:00:00","F","04M","25","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2012-02-06 00:00:00","F","04L","29","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2012-02-14 00:00:00","D","10F","9","A","2012-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2012-08-08 00:00:00","D","10F","4","A","2012-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2010-11-10 00:00:00","U","06D","12","B","2010-11-10 00:00:00","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2011-11-01 00:00:00","D","02B","13","A","2011-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2013-06-25 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"40369928","REME RESTAURANT","1","4021","BROADWAY","10032","2129235452","03","2011-03-14 00:00:00","F","04J","49","C","2011-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2010-09-14 00:00:00","F","02B","41","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2010-12-29 00:00:00","U","04N","16","B","2010-12-29 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2011-05-27 00:00:00","F","02G","65","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2012-02-02 00:00:00","F","06D","34","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2012-04-04 00:00:00","U","04N","23","B","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2013-06-25 00:00:00","F","04L","42","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2013-07-09 00:00:00","G","02B","53","","","2013-09-13 01:01:06.177000000" +"40377243","JOHN & JOE PIZZERIA & RESTAURANT","2","749","LYDIG AVENUE","10462","7184099776","63","2010-12-22 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40377243","JOHN & JOE PIZZERIA & RESTAURANT","2","749","LYDIG AVENUE","10462","7184099776","63","2011-12-05 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2012-02-15 00:00:00","P","04C","25","","","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2012-07-31 00:00:00","P","10F","14","","","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2012-08-15 00:00:00","F","06D","22","C","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"40368370","BENJAMIN","1","603","2 AVENUE","10016","2128890750","03","2011-08-30 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40368370","BENJAMIN","1","603","2 AVENUE","10016","2128890750","03","2011-08-30 00:00:00","F","02A","49","","","2013-09-13 01:01:06.177000000" +"40377506","VESUVIO RESTAURANT & PIZZ","3","7303 ","3 AVENUE ","11209","7187450222","63","2011-01-04 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40377506","VESUVIO RESTAURANT & PIZZ","3","7303 ","3 AVENUE ","11209","7187450222","63","2011-01-04 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40377506","VESUVIO RESTAURANT & PIZZ","3","7303 ","3 AVENUE ","11209","7187450222","63","2011-01-04 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40377506","VESUVIO RESTAURANT & PIZZ","3","7303 ","3 AVENUE ","11209","7187450222","63","2011-01-04 00:00:00","F","22C","49","","","2013-09-13 01:01:06.177000000" +"40370880","DEWAR'S RESTAURANT","3","807","NOSTRAND AVENUE","11225","7187350062","17","2012-07-16 00:00:00","G","05F","49","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2011-01-24 00:00:00","F","99B","56","","","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2012-07-10 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2013-01-28 00:00:00","P","09B","15","","","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2013-08-09 00:00:00","P","09C","25","","","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2013-08-09 00:00:00","P","10F","25","","","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2011-11-18 00:00:00","U","04C","16","B","2011-11-18 00:00:00","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2012-08-15 00:00:00","D","10F","7","A","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2013-01-28 00:00:00","P","10B","15","","","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2011-09-19 00:00:00","F","05D","20","","","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2012-02-21 00:00:00","U","10F","19","B","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2012-09-11 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2011-09-14 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2012-04-05 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2012-04-05 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2012-12-05 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2012-12-05 00:00:00","F","06D","32","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2013-02-05 00:00:00","D","08A","11","A","2013-02-05 00:00:00","2013-09-13 01:01:06.177000000" +"40370994","MAMA LUCIA","3","1701","FOSTER AVENUE","11230","7184349858","48","2012-08-15 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2013-01-28 00:00:00","P","04C","15","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2011-02-14 00:00:00","F","10F","25","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2011-03-02 00:00:00","F","06F","27","C","2011-03-02 00:00:00","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2012-07-24 00:00:00","P","10B","21","","","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2010-09-15 00:00:00","P","10B","14","","","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2010-09-30 00:00:00","U","02B","12","B","2010-09-30 00:00:00","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2011-05-09 00:00:00","F","10B","30","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2011-02-14 00:00:00","F","10B","25","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2011-06-15 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2011-08-10 00:00:00","D","09B","9","A","2011-08-10 00:00:00","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2012-07-24 00:00:00","P","04H","21","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2012-07-24 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2012-02-06 00:00:00","F","06D","29","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2012-02-06 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2010-09-23 00:00:00","P","10B","21","","","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2010-11-10 00:00:00","U","10F","12","B","2010-11-10 00:00:00","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2011-05-31 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2011-08-01 00:00:00","U","09C","13","B","2011-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2011-11-01 00:00:00","D","10F","13","A","2011-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2012-10-25 00:00:00","P","04L","17","","","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2013-06-25 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"40370880","DEWAR'S RESTAURANT","3","807","NOSTRAND AVENUE","11225","7187350062","17","2012-07-16 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2011-01-24 00:00:00","F","04J","56","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2011-02-14 00:00:00","F","02G","27","C","2011-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2012-04-05 00:00:00","P","10H","22","","","2013-09-13 01:01:06.177000000" +"40370994","MAMA LUCIA","3","1701","FOSTER AVENUE","11230","7184349858","48","2012-08-15 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"40370994","MAMA LUCIA","3","1701","FOSTER AVENUE","11230","7184349858","48","2012-08-15 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2010-09-23 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2011-11-01 00:00:00","D","10E","13","A","2011-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2012-10-25 00:00:00","P","04C","17","","","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2012-11-19 00:00:00","U","02G","27","B","2012-11-19 00:00:00","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2013-06-25 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"40372560","KODAMA SUSHI","1","301","WEST 45 STREET","10036","2125828065","49","2011-02-23 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2010-09-14 00:00:00","F","02G","41","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2011-09-27 00:00:00","D","04L","13","A","2011-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2012-10-24 00:00:00","U","04N","26","B","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2013-07-09 00:00:00","G","04L","53","","","2013-09-13 01:01:06.177000000" +"40377243","JOHN & JOE PIZZERIA & RESTAURANT","2","749","LYDIG AVENUE","10462","7184099776","63","2010-12-22 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40377243","JOHN & JOE PIZZERIA & RESTAURANT","2","749","LYDIG AVENUE","10462","7184099776","63","2010-12-22 00:00:00","F","10E","49","","","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2010-11-10 00:00:00","U","22C","12","B","2010-11-10 00:00:00","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2012-11-19 00:00:00","U","02B","27","B","2012-11-19 00:00:00","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2012-11-19 00:00:00","U","04L","27","B","2012-11-19 00:00:00","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2011-05-26 00:00:00","F","04H","29","","","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2011-11-03 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2013-05-20 00:00:00","G","04L","73","","","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2013-05-23 00:00:00","O","10F","5","P","2013-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2010-09-22 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2010-09-22 00:00:00","P","08C","21","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2010-10-27 00:00:00","U","10B","21","B","2010-10-27 00:00:00","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2011-04-13 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2011-04-26 00:00:00","F","06A","35","C","2011-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2012-07-24 00:00:00","U","06D","10","B","2012-07-24 00:00:00","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2013-08-21 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2013-08-21 00:00:00","P","10F","26","","","2013-09-13 01:01:06.177000000" +"40373113","ASTRO RESTAURANT","1","101","WEST 55 STREET","10019","2124896284","03","2010-02-24 08:57:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40373113","ASTRO RESTAURANT","1","101","WEST 55 STREET","10019","2124896284","03","2010-02-24 08:57:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"40377506","VESUVIO RESTAURANT & PIZZ","3","7303 ","3 AVENUE ","11209","7187450222","63","2011-01-04 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40377506","VESUVIO RESTAURANT & PIZZ","3","7303 ","3 AVENUE ","11209","7187450222","63","2011-01-04 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2011-09-06 00:00:00","G","10H","61","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2011-09-19 00:00:00","O","10F","3","C","2011-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2013-01-23 00:00:00","F","02G","37","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2013-03-06 00:00:00","F","06A","45","C","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2013-03-06 00:00:00","F","10B","45","C","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"40379746","RESTUARANT NIPPON","1","155 ","EAST 52 STREET ","10022","2126885941","49","2012-05-11 00:00:00","D","04L","11","A","2012-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"40369928","REME RESTAURANT","1","4021","BROADWAY","10032","2129235452","03","2011-03-14 00:00:00","F","10F","49","C","2011-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"40369928","REME RESTAURANT","1","4021","BROADWAY","10032","2129235452","03","2011-03-14 00:00:00","F","06C","49","C","2011-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"40369928","REME RESTAURANT","1","4021","BROADWAY","10032","2129235452","03","2011-03-14 00:00:00","F","08A","49","C","2011-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"40369928","REME RESTAURANT","1","4021","BROADWAY","10032","2129235452","03","2011-03-14 00:00:00","F","04L","49","C","2011-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"40369928","REME RESTAURANT","1","4021","BROADWAY","10032","2129235452","03","2011-03-14 00:00:00","F","05F","49","C","2011-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2011-01-04 00:00:00","C","10F","13","A","2011-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2012-10-05 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"40372560","KODAMA SUSHI","1","301","WEST 45 STREET","10036","2125828065","49","2011-02-23 00:00:00","P","10B","18","","","2013-09-13 01:01:06.177000000" +"40372560","KODAMA SUSHI","1","301","WEST 45 STREET","10036","2125828065","49","2011-03-08 00:00:00","D","10F","5","A","2011-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"40372560","KODAMA SUSHI","1","301","WEST 45 STREET","10036","2125828065","49","2011-07-14 00:00:00","D","06E","12","A","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"40372560","KODAMA SUSHI","1","301","WEST 45 STREET","10036","2125828065","49","2013-03-12 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2010-09-08 00:00:00","P","06E","15","","","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2011-05-26 00:00:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2011-06-27 00:00:00","D","02B","10","A","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2011-11-03 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2010-09-30 00:00:00","U","06D","12","B","2010-09-30 00:00:00","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2012-02-13 00:00:00","U","08A","4","B","2012-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2012-08-29 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2013-04-11 00:00:00","P","06E","17","","","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2013-04-11 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"40369928","REME RESTAURANT","1","4021","BROADWAY","10032","2129235452","03","2011-03-14 00:00:00","F","10B","49","C","2011-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2012-09-28 00:00:00","P","02B","13","","","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2012-09-28 00:00:00","P","04L","13","","","2013-09-13 01:01:06.177000000" +"40373113","ASTRO RESTAURANT","1","101","WEST 55 STREET","10019","2124896284","03","2010-02-24 08:57:00","F","10G","49","","","2013-09-13 01:01:06.177000000" +"40370452","SLY FOX INN","4","177-23","UNION TURNPIKE","11366","7189698169","03","2011-06-03 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40370452","SLY FOX INN","4","177-23","UNION TURNPIKE","11366","7189698169","03","2011-06-03 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"40370452","SLY FOX INN","4","177-23","UNION TURNPIKE","11366","7189698169","03","2011-06-03 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2013-03-06 00:00:00","F","04N","45","C","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2013-03-06 00:00:00","F","06E","45","C","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2013-03-06 00:00:00","F","08A","45","C","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2012-04-05 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2012-12-05 00:00:00","F","06E","32","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2012-12-05 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2011-01-24 00:00:00","F","04L","56","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2011-01-24 00:00:00","F","10E","56","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2012-04-19 00:00:00","U","06C","9","B","2012-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2012-12-05 00:00:00","F","06F","32","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2013-02-05 00:00:00","D","10B","11","A","2013-02-05 00:00:00","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2011-04-13 00:00:00","P","04L","27","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2012-01-10 00:00:00","P","02B","25","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2012-01-10 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2012-02-02 00:00:00","D","10B","9","A","2012-02-02 00:00:00","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2013-02-13 00:00:00","F","04C","23","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2013-08-21 00:00:00","P","02B","26","","","2013-09-13 01:01:06.177000000" +"40379746","RESTUARANT NIPPON","1","155 ","EAST 52 STREET ","10022","2126885941","49","2011-10-13 00:00:00","U","04K","11","B","2011-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"40379746","RESTUARANT NIPPON","1","155 ","EAST 52 STREET ","10022","2126885941","49","2011-10-13 00:00:00","U","08A","11","B","2011-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"40379746","RESTUARANT NIPPON","1","155 ","EAST 52 STREET ","10022","2126885941","49","2011-10-13 00:00:00","U","10F","11","B","2011-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"40379746","RESTUARANT NIPPON","1","155 ","EAST 52 STREET ","10022","2126885941","49","2013-05-09 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"40370880","DEWAR'S RESTAURANT","3","807","NOSTRAND AVENUE","11225","7187350062","17","2012-07-16 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2011-02-10 00:00:00","F","02G","54","","","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2012-02-15 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2011-01-24 00:00:00","F","10B","56","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2011-02-14 00:00:00","F","08A","27","C","2011-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2011-09-14 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2011-09-28 00:00:00","D","10H","5","A","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"40370994","MAMA LUCIA","3","1701","FOSTER AVENUE","11230","7184349858","48","2012-08-15 00:00:00","G","08B","49","","","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2012-07-31 00:00:00","P","02G","14","","","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2012-07-31 00:00:00","P","10H","14","","","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2012-08-15 00:00:00","F","06B","22","C","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2011-01-04 00:00:00","C","02B","13","A","2011-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2011-09-23 00:00:00","D","06A","10","A","2011-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2013-06-14 00:00:00","P","10B","26","","","2013-09-13 01:01:06.177000000" +"40372560","KODAMA SUSHI","1","301","WEST 45 STREET","10036","2125828065","49","2011-02-23 00:00:00","P","06F","18","","","2013-09-13 01:01:06.177000000" +"40372560","KODAMA SUSHI","1","301","WEST 45 STREET","10036","2125828065","49","2013-03-12 00:00:00","F","02B","28","","","2013-09-13 01:01:06.177000000" +"40372560","KODAMA SUSHI","1","301","WEST 45 STREET","10036","2125828065","49","2013-03-12 00:00:00","F","04C","28","","","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2011-09-19 00:00:00","F","04M","20","","","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2012-02-21 00:00:00","U","02B","19","B","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2012-09-11 00:00:00","P","02B","16","","","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2012-09-11 00:00:00","P","04M","16","","","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2012-09-28 00:00:00","D","10H","5","A","2012-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2013-03-12 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"40372560","KODAMA SUSHI","1","301","WEST 45 STREET","10036","2125828065","49","2011-06-17 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"40372560","KODAMA SUSHI","1","301","WEST 45 STREET","10036","2125828065","49","2013-03-12 00:00:00","F","04N","28","","","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2011-05-26 00:00:00","F","06D","29","","","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2013-05-20 00:00:00","G","02G","73","","","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2012-04-04 00:00:00","D","10H","12","A","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2013-05-20 00:00:00","G","06E","73","","","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2013-05-20 00:00:00","G","08A","73","","","2013-09-13 01:01:06.177000000" +"40373113","ASTRO RESTAURANT","1","101","WEST 55 STREET","10019","2124896284","03","2010-02-24 08:57:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2011-08-09 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2011-09-08 00:00:00","U","06E","7","B","2011-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2013-06-20 00:00:00","F","10B","52","","","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2011-04-19 00:00:00","U","10F","2","B","2011-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2011-09-27 00:00:00","U","04M","19","B","2011-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2012-02-21 00:00:00","U","02G","19","B","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2011-09-06 00:00:00","G","04H","61","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2012-01-09 00:00:00","D","06C","13","A","2012-01-09 00:00:00","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2012-01-09 00:00:00","D","09B","13","A","2012-01-09 00:00:00","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2013-01-23 00:00:00","F","10F","37","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2013-03-06 00:00:00","F","04J","45","C","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2011-07-15 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2012-01-09 00:00:00","D","06D","13","A","2012-01-09 00:00:00","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2013-01-23 00:00:00","F","02B","37","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2013-03-06 00:00:00","F","04L","45","C","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"40372560","KODAMA SUSHI","1","301","WEST 45 STREET","10036","2125828065","49","2011-02-23 00:00:00","P","02B","18","","","2013-09-13 01:01:06.177000000" +"40372560","KODAMA SUSHI","1","301","WEST 45 STREET","10036","2125828065","49","2011-06-17 00:00:00","P","10B","17","","","2013-09-13 01:01:06.177000000" +"40372560","KODAMA SUSHI","1","301","WEST 45 STREET","10036","2125828065","49","2011-11-22 00:00:00","D","99B","10","A","2011-11-22 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2010-12-29 00:00:00","U","04L","16","B","2010-12-29 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2010-12-29 00:00:00","U","06C","16","B","2010-12-29 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2012-10-04 00:00:00","P","10F","26","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2012-10-24 00:00:00","U","08A","26","B","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"40377243","JOHN & JOE PIZZERIA & RESTAURANT","2","749","LYDIG AVENUE","10462","7184099776","63","2010-12-22 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"40377243","JOHN & JOE PIZZERIA & RESTAURANT","2","749","LYDIG AVENUE","10462","7184099776","63","2011-12-05 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2011-05-26 00:00:00","F","09C","29","","","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2011-05-26 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2011-11-03 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2013-05-20 00:00:00","G","02B","73","","","2013-09-13 01:01:06.177000000" +"40373113","ASTRO RESTAURANT","1","101","WEST 55 STREET","10019","2124896284","03","2010-02-24 08:57:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"40373113","ASTRO RESTAURANT","1","101","WEST 55 STREET","10019","2124896284","03","2010-02-24 08:57:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2010-08-04 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2010-10-21 00:00:00","U","06E","26","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-04-25 00:00:00","F","06C","71","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-04-25 00:00:00","F","08A","71","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2010-09-14 00:00:00","F","04L","41","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2011-05-27 00:00:00","F","04N","65","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2011-05-27 00:00:00","F","08A","65","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2012-10-04 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2013-06-25 00:00:00","F","02B","42","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2013-06-25 00:00:00","F","04N","42","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2013-06-25 00:00:00","F","08A","42","","","2013-09-13 01:01:06.177000000" +"40377243","JOHN & JOE PIZZERIA & RESTAURANT","2","749","LYDIG AVENUE","10462","7184099776","63","2010-12-22 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2011-09-06 00:00:00","G","08C","61","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2013-01-23 00:00:00","F","08B","37","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2013-03-06 00:00:00","F","02H","45","C","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2013-03-26 00:00:00","P","04C","21","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-04-25 00:00:00","F","99B","71","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-09-29 00:00:00","U","02G","26","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-09-29 00:00:00","U","06E","26","","","2013-09-13 01:01:06.177000000" +"40377506","VESUVIO RESTAURANT & PIZZ","3","7303 ","3 AVENUE ","11209","7187450222","63","2011-01-04 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2010-09-15 00:00:00","P","08A","14","","","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2011-09-15 00:00:00","U","04C","27","B","2011-09-15 00:00:00","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2011-02-10 00:00:00","F","06D","54","","","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2011-03-24 00:00:00","U","06F","16","B","2011-03-24 00:00:00","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2012-02-15 00:00:00","P","08C","25","","","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2012-08-15 00:00:00","F","02B","22","C","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2012-08-15 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-03-23 00:00:00","F","03E","53","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-04-26 00:00:00","F","10B","25","C","2011-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-10-21 00:00:00","F","06E","45","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2012-09-11 00:00:00","U","10E","27","B","2012-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2013-05-16 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2013-05-16 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2011-03-22 00:00:00","P","06E","16","","","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2011-05-09 00:00:00","F","06F","30","","","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2011-09-15 00:00:00","U","02A","27","B","2011-09-15 00:00:00","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2012-02-07 00:00:00","P","06A","16","","","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2012-09-11 00:00:00","D","10F","11","A","2012-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2010-10-27 00:00:00","U","04H","21","B","2010-10-27 00:00:00","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2011-04-26 00:00:00","F","04H","35","C","2011-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2012-01-10 00:00:00","P","04C","25","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2012-01-10 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"40379746","RESTUARANT NIPPON","1","155 ","EAST 52 STREET ","10022","2126885941","49","2010-09-14 00:00:00","C","10B","9","A","2010-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"40379746","RESTUARANT NIPPON","1","155 ","EAST 52 STREET ","10022","2126885941","49","2012-05-11 00:00:00","D","08A","11","A","2012-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"40379746","RESTUARANT NIPPON","1","155 ","EAST 52 STREET ","10022","2126885941","49","2013-05-09 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2012-02-15 00:00:00","P","10H","25","","","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2012-02-28 00:00:00","F","06D","5","C","2012-02-28 00:00:00","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2012-09-18 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2013-03-26 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2013-03-26 00:00:00","P","10I","21","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2011-04-06 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2011-04-06 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2011-10-25 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2011-11-02 00:00:00","U","04H","13","B","2011-11-02 00:00:00","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2012-03-20 00:00:00","P","04H","18","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2012-04-12 00:00:00","U","04H","12","B","2012-04-12 00:00:00","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2013-08-14 00:00:00","P","10F","24","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2010-08-31 00:00:00","F","02G","21","C","2010-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2010-10-21 00:00:00","U","06C","26","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-06-20 00:00:00","F","04L","40","C","2011-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2010-10-07 00:00:00","P","06F","24","","","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2012-12-13 00:00:00","D","06D","7","A","2012-12-13 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2010-09-14 00:00:00","F","04J","41","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2011-05-27 00:00:00","F","04C","65","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2011-05-27 00:00:00","F","04J","65","","","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2012-04-03 00:00:00","F","08B","20","","","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2013-06-20 00:00:00","F","02G","52","","","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2013-06-20 00:00:00","F","10H","52","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2010-09-22 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2011-04-13 00:00:00","P","10B","27","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2011-08-17 00:00:00","P","10H","15","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2013-02-13 00:00:00","F","02G","23","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2011-09-27 00:00:00","D","04N","13","A","2011-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2012-04-04 00:00:00","U","08A","23","B","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2012-10-24 00:00:00","U","04L","26","B","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2013-06-25 00:00:00","F","05H","42","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2013-07-09 00:00:00","G","08A","53","","","2013-09-13 01:01:06.177000000" +"40377243","JOHN & JOE PIZZERIA & RESTAURANT","2","749","LYDIG AVENUE","10462","7184099776","63","2010-12-22 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2012-01-25 00:00:00","P","04H","22","","","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2013-03-12 00:00:00","P","04K","25","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2010-09-14 00:00:00","F","08A","41","","","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2011-01-04 00:00:00","C","09B","13","A","2011-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2012-10-05 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2013-06-14 00:00:00","P","04J","26","","","2013-09-13 01:01:06.177000000" +"40377506","VESUVIO RESTAURANT & PIZZ","3","7303 ","3 AVENUE ","11209","7187450222","63","2011-01-04 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-10-21 00:00:00","F","10A","45","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-10-21 00:00:00","F","10B","45","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2012-04-03 00:00:00","F","10B","10","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2010-12-29 00:00:00","U","08A","16","B","2010-12-29 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2011-09-27 00:00:00","D","10B","13","A","2011-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2012-02-02 00:00:00","F","04L","34","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2012-04-04 00:00:00","U","02G","23","B","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2012-04-04 00:00:00","U","10H","23","B","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2012-10-04 00:00:00","P","04N","26","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2012-10-24 00:00:00","U","06A","26","B","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2013-06-25 00:00:00","F","06D","42","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2013-07-09 00:00:00","G","05D","53","","","2013-09-13 01:01:06.177000000" +"40377243","JOHN & JOE PIZZERIA & RESTAURANT","2","749","LYDIG AVENUE","10462","7184099776","63","2011-12-05 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2010-09-15 00:00:00","P","04L","14","","","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2011-05-09 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2011-05-09 00:00:00","F","09C","30","","","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2011-09-15 00:00:00","U","02G","27","B","2011-09-15 00:00:00","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2011-09-15 00:00:00","U","99B","27","B","2011-09-15 00:00:00","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2012-02-07 00:00:00","P","02G","16","","","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2012-02-07 00:00:00","P","09B","16","","","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2012-09-11 00:00:00","D","08A","11","A","2012-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2012-08-29 00:00:00","P","04L","17","","","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2011-03-09 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2011-09-08 00:00:00","U","04H","7","B","2011-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2012-12-05 00:00:00","D","04N","10","A","2012-12-05 00:00:00","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2012-12-05 00:00:00","D","08A","10","A","2012-12-05 00:00:00","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2013-06-20 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2011-10-25 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2012-11-28 00:00:00","P","06D","18","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2010-09-14 00:00:00","F","04N","41","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2010-09-14 00:00:00","F","10F","41","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2011-05-27 00:00:00","F","04A","65","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2011-05-27 00:00:00","F","06F","65","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2011-05-27 00:00:00","F","99B","65","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2011-09-27 00:00:00","D","08A","13","A","2011-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2012-02-02 00:00:00","F","06C","34","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2012-02-02 00:00:00","F","08A","34","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2012-10-04 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2013-06-25 00:00:00","F","06A","42","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2013-07-09 00:00:00","G","04N","53","","","2013-09-13 01:01:06.177000000" +"40377243","JOHN & JOE PIZZERIA & RESTAURANT","2","749","LYDIG AVENUE","10462","7184099776","63","2010-12-22 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2010-09-15 00:00:00","P","06D","14","","","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2012-02-07 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2010-09-22 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2011-04-26 00:00:00","F","06E","35","C","2011-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2012-08-29 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"40388260","AMNON KOSHER PIZZA","3","4814","13 AVENUE","11219","7188511759","50","2012-10-22 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2012-06-30 00:00:00","F","06C","17","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2013-08-21 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"40379746","RESTUARANT NIPPON","1","155 ","EAST 52 STREET ","10022","2126885941","49","2013-05-09 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2010-08-31 00:00:00","F","10B","21","C","2010-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-04-25 00:00:00","F","04L","71","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-06-20 00:00:00","F","04C","40","C","2011-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-06-20 00:00:00","F","04J","40","C","2011-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2011-04-26 00:00:00","F","02G","35","C","2011-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2012-07-24 00:00:00","U","04L","10","B","2012-07-24 00:00:00","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2013-02-13 00:00:00","F","04H","23","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2013-03-14 00:00:00","U","06D","12","B","2013-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"40379746","RESTUARANT NIPPON","1","155 ","EAST 52 STREET ","10022","2126885941","49","2011-09-29 00:00:00","P","04J","22","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2011-08-01 00:00:00","F","05H","41","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2011-09-01 00:00:00","U","08A","26","B","2011-09-01 00:00:00","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2012-03-06 00:00:00","D","10F","11","A","2012-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2013-03-13 00:00:00","P","02B","18","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2013-03-13 00:00:00","P","10B","18","","","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2010-10-07 00:00:00","P","04C","24","","","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2011-01-04 00:00:00","C","10B","13","A","2011-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2013-06-14 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2011-12-07 00:00:00","P","06D","21","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2012-01-03 00:00:00","U","04C","7","B","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2012-08-21 00:00:00","U","10B","13","B","2012-08-21 00:00:00","2013-09-13 01:01:06.177000000" +"40388935","SAKEBAR DECIBEL","1","240","EAST 9 STREET","10003","2129792733","49","2011-10-06 00:00:00","D","04L","12","A","2011-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2013-06-14 00:00:00","P","06F","26","","","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2010-12-15 00:00:00","P","04C","22","","","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2010-12-15 00:00:00","P","06F","22","","","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2011-01-28 00:00:00","U","06C","5","B","2011-01-28 00:00:00","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2012-04-03 00:00:00","F","06D","20","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2010-10-27 00:00:00","U","02G","21","B","2010-10-27 00:00:00","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2011-04-13 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2011-04-26 00:00:00","F","05D","35","C","2011-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2011-08-17 00:00:00","P","06F","15","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2011-09-07 00:00:00","D","06D","5","A","2011-09-07 00:00:00","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2012-06-30 00:00:00","F","04C","17","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2013-08-21 00:00:00","P","09C","26","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2013-08-21 00:00:00","P","10E","26","","","2013-09-13 01:01:06.177000000" +"40379746","RESTUARANT NIPPON","1","155 ","EAST 52 STREET ","10022","2126885941","49","2011-10-13 00:00:00","U","04L","11","B","2011-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"40379746","RESTUARANT NIPPON","1","155 ","EAST 52 STREET ","10022","2126885941","49","2012-05-11 00:00:00","D","10F","11","A","2012-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"40379746","RESTUARANT NIPPON","1","155 ","EAST 52 STREET ","10022","2126885941","49","2013-05-09 00:00:00","P","08C","19","","","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2010-12-15 00:00:00","P","09C","22","","","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2013-06-20 00:00:00","F","06F","52","","","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2013-06-20 00:00:00","F","08A","52","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2010-08-02 00:00:00","F","02G","21","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2010-08-02 00:00:00","F","10G","21","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2010-08-11 00:00:00","U","10B","9","B","2010-08-11 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-03-23 00:00:00","F","10H","53","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-04-26 00:00:00","F","08A","25","C","2011-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-10-21 00:00:00","F","02G","45","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2012-08-27 00:00:00","P","10B","25","","","2013-09-13 01:01:06.177000000" +"40381720","SEVEN A CAFE","1","109","AVENUE A","10009","2126736583","03","2010-02-27 09:47:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2010-10-07 00:00:00","P","06D","24","","","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2012-10-05 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2013-06-14 00:00:00","P","02B","26","","","2013-09-13 01:01:06.177000000" +"40387907","GALICIA RESTAURANT","1","4083","BROADWAY","10032","2125680168","53","2013-05-04 00:00:00","G","08C","49","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2010-08-31 00:00:00","F","04L","21","C","2010-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2010-08-31 00:00:00","F","04N","21","C","2010-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2010-08-31 00:00:00","F","08A","21","C","2010-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2010-10-21 00:00:00","U","04M","26","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2010-10-21 00:00:00","U","10B","26","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-06-20 00:00:00","F","02G","40","C","2011-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2011-01-28 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2011-04-06 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2011-04-06 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2012-04-12 00:00:00","U","06D","12","B","2012-04-12 00:00:00","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2013-03-05 00:00:00","D","10F","11","A","2013-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2011-08-09 00:00:00","P","06D","20","","","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2012-04-03 00:00:00","F","04C","20","","","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2012-04-03 00:00:00","F","09C","20","","","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2012-04-17 00:00:00","U","04H","7","B","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2013-06-20 00:00:00","F","04N","52","","","2013-09-13 01:01:06.177000000" +"40388260","AMNON KOSHER PIZZA","3","4814","13 AVENUE","11219","7188511759","50","2012-10-22 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40390729","DENNIS' PLACE","3","1701","PITKIN AVENUE","11212","7184988466","03","2013-04-05 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40390781","JOEY'S PLACE","4","84-14","ASTORIA BOULEVARD","11370","7184784037","48","2011-08-01 00:00:00","F","07A","49","C","2011-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2010-08-02 00:00:00","F","06D","21","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-03-23 00:00:00","F","10F","53","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-04-26 00:00:00","F","08C","25","C","2011-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-10-21 00:00:00","F","04L","45","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2012-04-03 00:00:00","F","06C","10","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2012-04-03 00:00:00","F","10F","10","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2012-04-18 00:00:00","U","10I","21","B","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2012-08-27 00:00:00","P","04J","25","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2012-09-11 00:00:00","U","02B","27","B","2012-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2011-01-18 00:00:00","U","06F","10","B","2011-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2011-08-01 00:00:00","F","04M","41","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2011-08-01 00:00:00","F","08A","41","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2012-07-26 00:00:00","F","04L","29","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2012-08-21 00:00:00","U","10F","13","B","2012-08-21 00:00:00","2013-09-13 01:01:06.177000000" +"40388935","SAKEBAR DECIBEL","1","240","EAST 9 STREET","10003","2129792733","49","2011-06-27 00:00:00","D","04C","12","A","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"40388935","SAKEBAR DECIBEL","1","240","EAST 9 STREET","10003","2129792733","49","2013-06-26 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2010-10-21 00:00:00","U","10F","26","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-09-29 00:00:00","U","04M","26","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2013-03-13 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2011-04-14 00:00:00","D","20A","7","A","2011-04-14 00:00:00","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2011-10-25 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2011-10-25 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2012-11-28 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2012-11-28 00:00:00","P","10H","18","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2013-08-14 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2010-08-04 00:00:00","P","04L","17","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-04-25 00:00:00","F","04M","71","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-06-20 00:00:00","F","08A","40","C","2011-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-09-29 00:00:00","U","04N","26","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2012-03-06 00:00:00","D","04L","11","A","2012-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"40391594","TAKA HASHI RESTAURANT","1","85","AVENUE A","10009","2125056524","49","2011-06-21 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"40391594","TAKA HASHI RESTAURANT","1","85","AVENUE A","10009","2125056524","49","2011-07-19 00:00:00","F","02G","19","C","2011-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"40391594","TAKA HASHI RESTAURANT","1","85","AVENUE A","10009","2125056524","49","2011-12-14 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"40391594","TAKA HASHI RESTAURANT","1","85","AVENUE A","10009","2125056524","49","2012-01-10 00:00:00","U","08C","15","B","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2010-08-02 00:00:00","F","08A","21","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2010-08-11 00:00:00","U","04N","9","B","2010-08-11 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-03-23 00:00:00","F","04L","53","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-04-26 00:00:00","F","04L","25","C","2011-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-10-21 00:00:00","F","10F","45","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2012-08-27 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2012-09-11 00:00:00","U","02G","27","B","2012-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2012-09-11 00:00:00","U","06C","27","B","2012-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2012-09-11 00:00:00","U","10H","27","B","2012-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2013-08-23 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2010-08-04 00:00:00","P","04H","17","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2010-08-04 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2010-08-04 00:00:00","P","22C","17","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-04-25 00:00:00","F","02G","71","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-04-25 00:00:00","F","06D","71","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-04-25 00:00:00","F","09B","71","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-09-29 00:00:00","U","08A","26","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-09-29 00:00:00","U","99B","26","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2012-03-06 00:00:00","D","08A","11","A","2012-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2013-03-13 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-03-23 00:00:00","F","10C","53","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-04-26 00:00:00","F","04C","25","C","2011-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2012-04-18 00:00:00","U","02G","21","B","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2012-04-18 00:00:00","U","06F","21","B","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2011-10-25 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2011-10-25 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2011-10-25 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2012-03-20 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2013-03-05 00:00:00","D","02B","11","A","2013-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2013-08-14 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2011-04-06 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2011-11-02 00:00:00","U","04N","13","B","2011-11-02 00:00:00","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2012-03-20 00:00:00","P","10B","18","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2013-08-14 00:00:00","P","06D","24","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2013-08-14 00:00:00","P","10B","24","","","2013-09-13 01:01:06.177000000" +"40387907","GALICIA RESTAURANT","1","4083","BROADWAY","10032","2125680168","53","2013-05-04 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2010-11-09 00:00:00","F","08A","28","C","2010-11-09 00:00:00","2013-09-13 01:01:06.177000000" +"40390781","JOEY'S PLACE","4","84-14","ASTORIA BOULEVARD","11370","7184784037","48","2011-08-01 00:00:00","F","06D","49","C","2011-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-10-21 00:00:00","F","08A","45","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2012-04-18 00:00:00","U","10F","21","B","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2012-08-27 00:00:00","P","10F","25","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2013-05-16 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2013-05-16 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"40393181","YEN YEN RESTAURANT","3","404","CHURCH AVENUE","11218","7186338711","20","2009-10-15 13:12:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"40388260","AMNON KOSHER PIZZA","3","4814","13 AVENUE","11219","7188511759","50","2012-10-22 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40388260","AMNON KOSHER PIZZA","3","4814","13 AVENUE","11219","7188511759","50","2012-10-22 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40388260","AMNON KOSHER PIZZA","3","4814","13 AVENUE","11219","7188511759","50","2012-10-22 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40388260","AMNON KOSHER PIZZA","3","4814","13 AVENUE","11219","7188511759","50","2012-10-22 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40393303","DEMARCHELIER RESTAURANT","1","50 ","EAST 86 STREET ","10028","2122496300","35","2010-10-26 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2011-04-14 00:00:00","D","10A","7","A","2011-04-14 00:00:00","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2011-04-14 00:00:00","D","10B","7","A","2011-04-14 00:00:00","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2011-08-01 00:00:00","F","02B","41","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2011-08-01 00:00:00","F","04N","41","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2011-08-01 00:00:00","F","10B","41","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2011-09-01 00:00:00","U","04L","26","B","2011-09-01 00:00:00","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2012-07-26 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"40387907","GALICIA RESTAURANT","1","4083","BROADWAY","10032","2125680168","53","2013-05-04 00:00:00","G","06D","49","","","2013-09-13 01:01:06.177000000" +"40387907","GALICIA RESTAURANT","1","4083","BROADWAY","10032","2125680168","53","2013-05-04 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"40393712","SHABU TATSU","1","216 ","EAST 10 STREET ","10003","2124772972","49","2010-10-07 00:00:00","C","04N","7","A","2010-10-07 00:00:00","2013-09-13 01:01:06.177000000" +"40388935","SAKEBAR DECIBEL","1","240","EAST 9 STREET","10003","2129792733","49","2011-10-06 00:00:00","D","08A","12","A","2011-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"40388935","SAKEBAR DECIBEL","1","240","EAST 9 STREET","10003","2129792733","49","2012-11-27 00:00:00","U","04L","12","B","2012-11-27 00:00:00","2013-09-13 01:01:06.177000000" +"40388935","SAKEBAR DECIBEL","1","240","EAST 9 STREET","10003","2129792733","49","2012-11-27 00:00:00","U","08A","12","B","2012-11-27 00:00:00","2013-09-13 01:01:06.177000000" +"40393712","SHABU TATSU","1","216 ","EAST 10 STREET ","10003","2124772972","49","2011-09-14 00:00:00","D","02G","13","A","2011-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"40393712","SHABU TATSU","1","216 ","EAST 10 STREET ","10003","2124772972","49","2011-09-14 00:00:00","D","06E","13","A","2011-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-04-28 12:50:00","F","05I","53","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-05-20 13:30:00","U","10L","20","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-10-19 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-11-04 00:00:00","C","04L","13","A","2010-11-04 00:00:00","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2011-04-05 00:00:00","F","04C","37","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2011-04-29 00:00:00","D","10B","13","A","2011-04-29 00:00:00","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2012-08-16 00:00:00","F","08A","29","C","2012-08-16 00:00:00","2013-09-13 01:01:06.177000000" +"40388260","AMNON KOSHER PIZZA","3","4814","13 AVENUE","11219","7188511759","50","2012-10-22 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2011-08-01 00:00:00","F","09B","41","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2011-09-01 00:00:00","U","02B","26","B","2011-09-01 00:00:00","2013-09-13 01:01:06.177000000" +"40388935","SAKEBAR DECIBEL","1","240","EAST 9 STREET","10003","2129792733","49","2011-05-31 00:00:00","F","05D","39","","","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2011-11-01 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2012-05-16 00:00:00","P","10D","23","","","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2013-01-31 00:00:00","P","04C","18","","","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2013-08-23 00:00:00","P","04L","17","","","2013-09-13 01:01:06.177000000" +"40387907","GALICIA RESTAURANT","1","4083","BROADWAY","10032","2125680168","53","2013-05-04 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2010-10-21 00:00:00","F","10F","22","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2011-01-18 00:00:00","U","06E","10","B","2011-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2011-09-01 00:00:00","U","04M","26","B","2011-09-01 00:00:00","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2012-07-26 00:00:00","F","04M","29","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2012-07-26 00:00:00","F","06C","29","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2012-07-26 00:00:00","F","10B","29","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2013-02-27 00:00:00","F","06C","36","","","2013-09-13 01:01:06.177000000" +"40390729","DENNIS' PLACE","3","1701","PITKIN AVENUE","11212","7184988466","03","2013-04-05 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2010-11-30 00:00:00","C","08A","13","A","2010-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2011-12-01 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2012-05-09 00:00:00","F","09C","31","","","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2012-05-09 00:00:00","F","10E","31","","","2013-09-13 01:01:06.177000000" +"40388935","SAKEBAR DECIBEL","1","240","EAST 9 STREET","10003","2129792733","49","2011-05-31 00:00:00","F","06E","39","","","2013-09-13 01:01:06.177000000" +"40388935","SAKEBAR DECIBEL","1","240","EAST 9 STREET","10003","2129792733","49","2011-05-31 00:00:00","F","10A","39","","","2013-09-13 01:01:06.177000000" +"40390973","MIRACALI BAKERY","4","76-04","ROOSEVELT AVENUE","11372","7187797175","08","2011-03-14 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2010-10-21 00:00:00","F","02B","22","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2011-12-07 00:00:00","P","08C","21","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2012-07-26 00:00:00","F","06D","29","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2013-02-27 00:00:00","F","02B","36","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2013-02-27 00:00:00","F","06D","36","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2013-02-27 00:00:00","F","10B","36","","","2013-09-13 01:01:06.177000000" +"40388935","SAKEBAR DECIBEL","1","240","EAST 9 STREET","10003","2129792733","49","2011-06-27 00:00:00","D","10B","12","A","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"40388935","SAKEBAR DECIBEL","1","240","EAST 9 STREET","10003","2129792733","49","2012-10-09 00:00:00","P","04J","14","","","2013-09-13 01:01:06.177000000" +"40391594","TAKA HASHI RESTAURANT","1","85","AVENUE A","10009","2125056524","49","2013-08-27 00:00:00","P","02B","27","","","2013-09-13 01:01:06.177000000" +"40393303","DEMARCHELIER RESTAURANT","1","50 ","EAST 86 STREET ","10028","2122496300","35","2010-10-26 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2013-01-31 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"40390729","DENNIS' PLACE","3","1701","PITKIN AVENUE","11212","7184988466","03","2013-04-05 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2011-04-05 00:00:00","P","02B","16","","","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2011-05-31 00:00:00","D","02G","12","A","2011-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2010-10-21 00:00:00","F","02G","22","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2010-10-21 00:00:00","F","05D","22","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2011-09-01 00:00:00","U","02G","26","B","2011-09-01 00:00:00","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2011-12-07 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2011-12-07 00:00:00","P","08B","21","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2012-07-26 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2012-08-21 00:00:00","U","04M","13","B","2012-08-21 00:00:00","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2013-02-27 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"40388935","SAKEBAR DECIBEL","1","240","EAST 9 STREET","10003","2129792733","49","2011-06-27 00:00:00","D","10F","12","A","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"40388935","SAKEBAR DECIBEL","1","240","EAST 9 STREET","10003","2129792733","49","2011-10-06 00:00:00","D","10F","12","A","2011-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"40388935","SAKEBAR DECIBEL","1","240","EAST 9 STREET","10003","2129792733","49","2013-06-26 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"40390781","JOEY'S PLACE","4","84-14","ASTORIA BOULEVARD","11370","7184784037","48","2011-08-01 00:00:00","F","08A","49","C","2011-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"40390973","MIRACALI BAKERY","4","76-04","ROOSEVELT AVENUE","11372","7187797175","08","2011-03-14 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40393303","DEMARCHELIER RESTAURANT","1","50 ","EAST 86 STREET ","10028","2122496300","35","2010-10-26 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40393712","SHABU TATSU","1","216 ","EAST 10 STREET ","10003","2124772972","49","2012-09-11 00:00:00","U","10H","2","B","2012-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2011-04-05 00:00:00","F","04L","37","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2012-08-16 00:00:00","F","05D","29","C","2012-08-16 00:00:00","2013-09-13 01:01:06.177000000" +"40390729","DENNIS' PLACE","3","1701","PITKIN AVENUE","11212","7184988466","03","2013-04-05 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40390729","DENNIS' PLACE","3","1701","PITKIN AVENUE","11212","7184988466","03","2013-04-05 00:00:00","F","09B","49","","","2013-09-13 01:01:06.177000000" +"40390781","JOEY'S PLACE","4","84-14","ASTORIA BOULEVARD","11370","7184784037","48","2011-08-01 00:00:00","F","04L","49","C","2011-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"40396019","IL VIOLINO","1","180","COLUMBUS AVENUE","10023","2128732500","48","2011-10-14 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40396019","IL VIOLINO","1","180","COLUMBUS AVENUE","10023","2128732500","48","2011-10-14 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-04-05 14:04:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-05-20 13:30:00","U","02G","20","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-10-19 00:00:00","P","09C","17","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-11-04 00:00:00","C","04N","13","A","2010-11-04 00:00:00","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-11-04 00:00:00","C","08A","13","A","2010-11-04 00:00:00","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-11-04 00:00:00","C","10B","13","A","2010-11-04 00:00:00","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2011-04-05 00:00:00","F","06E","37","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2011-08-22 00:00:00","D","06D","12","A","2011-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2012-07-30 00:00:00","P","10B","24","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2012-08-16 00:00:00","F","02G","29","C","2012-08-16 00:00:00","2013-09-13 01:01:06.177000000" +"40390973","MIRACALI BAKERY","4","76-04","ROOSEVELT AVENUE","11372","7187797175","08","2011-03-14 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40390973","MIRACALI BAKERY","4","76-04","ROOSEVELT AVENUE","11372","7187797175","08","2011-03-14 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2011-11-01 00:00:00","P","08C","19","","","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2011-11-01 00:00:00","P","10B","19","","","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2011-12-12 00:00:00","D","06E","12","A","2011-12-12 00:00:00","2013-09-13 01:01:06.177000000" +"40396267","ARHARN THAI CUISINE","4","32-05","36 AVENUE","11106","7187285563","82","2011-09-21 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40396395","CAFE LOUP","1","105","WEST 13 STREET","10011","2122554746","35","2011-03-30 00:00:00","F","04M","49","C","2011-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"40390729","DENNIS' PLACE","3","1701","PITKIN AVENUE","11212","7184988466","03","2013-04-05 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"40391594","TAKA HASHI RESTAURANT","1","85","AVENUE A","10009","2125056524","49","2012-01-10 00:00:00","U","10C","15","B","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"40391594","TAKA HASHI RESTAURANT","1","85","AVENUE A","10009","2125056524","49","2012-08-21 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"40390973","MIRACALI BAKERY","4","76-04","ROOSEVELT AVENUE","11372","7187797175","08","2011-03-14 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40390973","MIRACALI BAKERY","4","76-04","ROOSEVELT AVENUE","11372","7187797175","08","2011-03-14 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2012-11-20 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2012-12-19 00:00:00","U","02G","25","B","2012-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2013-07-26 00:00:00","F","06C","31","","","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2013-07-26 00:00:00","F","10E","31","","","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2010-11-10 00:00:00","C","06F","12","A","2010-11-10 00:00:00","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2012-05-16 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2012-06-16 00:00:00","D","06C","10","A","2012-06-16 00:00:00","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2010-11-30 00:00:00","C","04L","13","A","2010-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2011-12-30 00:00:00","D","10F","10","A","2011-12-30 00:00:00","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2012-05-31 00:00:00","U","10F","17","B","2012-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2012-12-19 00:00:00","U","10B","25","B","2012-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2013-07-26 00:00:00","F","06D","31","","","2013-09-13 01:01:06.177000000" +"40391594","TAKA HASHI RESTAURANT","1","85","AVENUE A","10009","2125056524","49","2011-06-21 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"40391594","TAKA HASHI RESTAURANT","1","85","AVENUE A","10009","2125056524","49","2012-01-10 00:00:00","U","06A","15","B","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"40391594","TAKA HASHI RESTAURANT","1","85","AVENUE A","10009","2125056524","49","2013-08-27 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"40391594","TAKA HASHI RESTAURANT","1","85","AVENUE A","10009","2125056524","49","2013-08-27 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2010-11-09 00:00:00","F","06C","28","C","2010-11-09 00:00:00","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2011-04-05 00:00:00","P","20F","16","","","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2011-05-31 00:00:00","D","10F","12","A","2011-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2012-05-16 00:00:00","P","06D","23","","","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2012-06-16 00:00:00","D","06D","10","A","2012-06-16 00:00:00","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2013-08-23 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2010-11-09 00:00:00","F","10F","28","C","2010-11-09 00:00:00","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2012-04-12 00:00:00","D","09C","10","A","2012-04-12 00:00:00","2013-09-13 01:01:06.177000000" +"40397108","OSAKA SUSHI","5","1440","FOREST AVENUE","10302","7187272211","49","2011-09-09 00:00:00","D","02G","12","A","2011-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"40397108","OSAKA SUSHI","5","1440","FOREST AVENUE","10302","7187272211","49","2011-09-09 00:00:00","D","06E","12","A","2011-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"40397108","OSAKA SUSHI","5","1440","FOREST AVENUE","10302","7187272211","49","2012-08-21 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2010-12-17 00:00:00","C","04J","11","A","2010-12-17 00:00:00","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2011-07-27 00:00:00","F","04F","19","C","2011-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2011-12-21 00:00:00","F","02B","38","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2011-12-21 00:00:00","F","04N","38","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2012-01-03 00:00:00","D","02B","13","A","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2010-09-10 00:00:00","P","04J","24","","","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2010-11-09 00:00:00","F","02B","28","C","2010-11-09 00:00:00","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2010-11-09 00:00:00","F","04N","28","C","2010-11-09 00:00:00","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2011-05-31 00:00:00","D","10B","12","A","2011-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2011-10-01 00:00:00","P","10H","19","","","2013-09-13 01:01:06.177000000" +"40391594","TAKA HASHI RESTAURANT","1","85","AVENUE A","10009","2125056524","49","2011-07-19 00:00:00","F","99B","19","C","2011-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"40391594","TAKA HASHI RESTAURANT","1","85","AVENUE A","10009","2125056524","49","2013-08-27 00:00:00","P","04N","27","","","2013-09-13 01:01:06.177000000" +"40393181","YEN YEN RESTAURANT","3","404","CHURCH AVENUE","11218","7186338711","20","2009-10-15 13:12:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2010-11-10 00:00:00","C","02B","12","A","2010-11-10 00:00:00","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2011-12-12 00:00:00","D","02B","12","A","2011-12-12 00:00:00","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2013-01-31 00:00:00","P","02B","18","","","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2013-08-23 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2013-08-23 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"40393303","DEMARCHELIER RESTAURANT","1","50 ","EAST 86 STREET ","10028","2122496300","35","2010-10-26 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40393303","DEMARCHELIER RESTAURANT","1","50 ","EAST 86 STREET ","10028","2122496300","35","2010-10-26 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"40397504","RISQUE BILLARDS LOUNGE CAFE","3","213","MCGUINNESS BOULEVARD","11222","7183491445","03","2013-02-20 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40397504","RISQUE BILLARDS LOUNGE CAFE","3","213","MCGUINNESS BOULEVARD","11222","7183491445","03","2013-02-20 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2010-09-30 00:00:00","U","02G","16","B","2010-09-30 00:00:00","2013-09-13 01:01:06.177000000" +"40393303","DEMARCHELIER RESTAURANT","1","50 ","EAST 86 STREET ","10028","2122496300","35","2010-10-26 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-04-28 12:50:00","F","04I","53","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2011-03-15 00:00:00","F","06D","29","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2011-03-31 00:00:00","F","02G","39","C","2011-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2011-03-31 00:00:00","F","06E","39","C","2011-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2011-08-08 00:00:00","P","04C","23","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2011-08-18 00:00:00","U","06C","25","B","2011-08-18 00:00:00","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2011-08-18 00:00:00","U","10B","25","B","2011-08-18 00:00:00","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2013-09-03 00:00:00","F","04L","33","","","2013-09-13 01:01:06.177000000" +"40397687","USAGI","1","320 ","EAST 49 STREET ","10017","2129352002","49","2010-09-23 00:00:00","C","10B","13","A","2010-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"40396019","IL VIOLINO","1","180","COLUMBUS AVENUE","10023","2128732500","48","2011-10-14 00:00:00","F","10E","49","","","2013-09-13 01:01:06.177000000" +"40393712","SHABU TATSU","1","216 ","EAST 10 STREET ","10003","2124772972","49","2012-08-29 00:00:00","F","04L","15","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-04-28 12:50:00","F","06D","53","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-04-28 12:50:00","F","08A","53","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-05-20 13:30:00","U","02B","20","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2011-04-05 00:00:00","F","08A","37","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2012-07-30 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2010-09-10 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2011-04-05 00:00:00","P","06E","16","","","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2011-11-21 00:00:00","D","10F","12","A","2011-11-21 00:00:00","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2012-04-12 00:00:00","D","06D","10","A","2012-04-12 00:00:00","2013-09-13 01:01:06.177000000" +"40396267","ARHARN THAI CUISINE","4","32-05","36 AVENUE","11106","7187285563","82","2011-09-21 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40396267","ARHARN THAI CUISINE","4","32-05","36 AVENUE","11106","7187285563","82","2011-09-21 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40396267","ARHARN THAI CUISINE","4","32-05","36 AVENUE","11106","7187285563","82","2011-09-21 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40396395","CAFE LOUP","1","105","WEST 13 STREET","10011","2122554746","35","2011-03-30 00:00:00","F","02G","49","C","2011-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-04-05 14:04:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-04-05 14:04:00","F","04C","29","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-04-05 14:04:00","F","04M","29","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-10-19 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2011-04-05 00:00:00","F","04H","37","","","2013-09-13 01:01:06.177000000" +"40393181","YEN YEN RESTAURANT","3","404","CHURCH AVENUE","11218","7186338711","20","2009-10-15 13:12:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40398095","LOS AMIGOS RESTAURANT","2","674","EAST 180 STREET","10457","7182203551","53","2012-09-05 00:00:00","F","02G","49","C","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40393303","DEMARCHELIER RESTAURANT","1","50 ","EAST 86 STREET ","10028","2122496300","35","2010-10-26 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"40393303","DEMARCHELIER RESTAURANT","1","50 ","EAST 86 STREET ","10028","2122496300","35","2010-10-26 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40396267","ARHARN THAI CUISINE","4","32-05","36 AVENUE","11106","7187285563","82","2011-09-21 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2012-05-31 00:00:00","U","02G","17","B","2012-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2013-07-26 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2013-09-05 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"40398572","DINASTIA CHINA","1","145","WEST 72 STREET","10023","2123623801","20","2012-03-06 00:00:00","G","10D","49","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-04-28 12:50:00","F","04M","53","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-10-19 00:00:00","P","06C","17","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2011-08-22 00:00:00","D","02B","12","A","2011-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2012-07-30 00:00:00","P","10F","24","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2012-08-16 00:00:00","F","09B","29","C","2012-08-16 00:00:00","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2011-12-01 00:00:00","P","02G","16","","","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2012-05-09 00:00:00","F","06C","31","","","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2012-05-09 00:00:00","F","10B","31","","","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2012-11-20 00:00:00","P","04L","20","","","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2011-12-01 00:00:00","P","06E","16","","","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2011-12-30 00:00:00","D","10H","10","A","2011-12-30 00:00:00","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2012-05-09 00:00:00","F","06D","31","","","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2012-05-09 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2012-05-31 00:00:00","U","04H","17","B","2012-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2012-11-20 00:00:00","P","04C","20","","","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2012-12-19 00:00:00","U","04H","25","B","2012-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2012-12-19 00:00:00","U","09B","25","B","2012-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"40397108","OSAKA SUSHI","5","1440","FOREST AVENUE","10302","7187272211","49","2012-10-18 00:00:00","D","10F","12","A","2012-10-18 00:00:00","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2011-12-21 00:00:00","F","06C","38","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2011-12-21 00:00:00","F","10D","38","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2012-05-30 00:00:00","F","04N","36","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2012-05-30 00:00:00","F","06F","36","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2013-04-06 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2013-07-26 00:00:00","F","03B","31","","","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2013-07-26 00:00:00","F","08B","31","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2010-12-17 00:00:00","C","10A","11","A","2010-12-17 00:00:00","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2011-07-13 00:00:00","F","02B","39","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2011-07-13 00:00:00","F","08A","39","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2011-07-13 00:00:00","F","08B","39","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2011-12-21 00:00:00","F","06D","38","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2012-05-30 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2012-05-30 00:00:00","F","09C","36","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2013-04-06 00:00:00","P","05D","22","","","2013-09-13 01:01:06.177000000" +"40397504","RISQUE BILLARDS LOUNGE CAFE","3","213","MCGUINNESS BOULEVARD","11222","7183491445","03","2013-02-20 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2011-03-15 00:00:00","F","06C","29","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2011-03-31 00:00:00","F","04L","39","C","2011-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2011-08-18 00:00:00","U","05D","25","B","2011-08-18 00:00:00","2013-09-13 01:01:06.177000000" +"40399165","MUGS ALE HOUSE BAR","3","125","BEDFORD AVENUE","11211","7184868232","03","2012-06-05 00:00:00","F","04H","49","C","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"40399165","MUGS ALE HOUSE BAR","3","125","BEDFORD AVENUE","11211","7184868232","03","2012-06-05 00:00:00","F","08A","49","C","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2010-09-10 00:00:00","F","06C","34","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2011-03-31 00:00:00","F","04C","39","C","2011-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2011-12-30 00:00:00","D","06A","10","A","2011-12-30 00:00:00","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2012-05-09 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"40398095","LOS AMIGOS RESTAURANT","2","674","EAST 180 STREET","10457","7182203551","53","2012-09-05 00:00:00","F","04J","49","C","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40396019","IL VIOLINO","1","180","COLUMBUS AVENUE","10023","2128732500","48","2011-10-14 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40396019","IL VIOLINO","1","180","COLUMBUS AVENUE","10023","2128732500","48","2011-10-14 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40396019","IL VIOLINO","1","180","COLUMBUS AVENUE","10023","2128732500","48","2011-10-14 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40396395","CAFE LOUP","1","105","WEST 13 STREET","10011","2122554746","35","2011-03-30 00:00:00","F","10F","49","C","2011-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"40398913","MUMBLES","1","200 ","EAST 17 STREET ","10003","2124776066","03","2013-09-03 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40398913","MUMBLES","1","200 ","EAST 17 STREET ","10003","2124776066","03","2013-09-03 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2011-01-28 00:00:00","F","04N","20","C","2011-01-28 00:00:00","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2012-02-21 00:00:00","F","10F","20","C","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2012-07-02 00:00:00","F","02G","66","","","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2012-07-02 00:00:00","F","06E","66","","","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2012-07-19 00:00:00","U","06D","10","B","2012-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"40396395","CAFE LOUP","1","105","WEST 13 STREET","10011","2122554746","35","2011-03-30 00:00:00","F","08A","49","C","2011-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"40399165","MUGS ALE HOUSE BAR","3","125","BEDFORD AVENUE","11211","7184868232","03","2012-06-05 00:00:00","F","10F","49","C","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"40399165","MUGS ALE HOUSE BAR","3","125","BEDFORD AVENUE","11211","7184868232","03","2012-06-05 00:00:00","F","04L","49","C","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"40397108","OSAKA SUSHI","5","1440","FOREST AVENUE","10302","7187272211","49","2012-08-21 00:00:00","P","06D","23","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2011-07-27 00:00:00","F","06F","19","C","2011-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2011-07-27 00:00:00","F","09C","19","C","2011-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2011-07-27 00:00:00","F","10F","19","C","2011-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"40400366","VIN ET FLEURS","1","69","THOMPSON STREET","10012","2129665417","35","2013-05-21 00:00:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"40397108","OSAKA SUSHI","5","1440","FOREST AVENUE","10302","7187272211","49","2012-08-21 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"40397108","OSAKA SUSHI","5","1440","FOREST AVENUE","10302","7187272211","49","2012-10-18 00:00:00","D","05H","12","A","2012-10-18 00:00:00","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2010-12-17 00:00:00","C","20D","11","A","2010-12-17 00:00:00","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2011-07-13 00:00:00","F","02G","39","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2011-07-13 00:00:00","F","06E","39","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2011-07-13 00:00:00","F","10B","39","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2011-07-13 00:00:00","F","99B","39","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2011-12-21 00:00:00","F","08A","38","","","2013-09-13 01:01:06.177000000" +"40397504","RISQUE BILLARDS LOUNGE CAFE","3","213","MCGUINNESS BOULEVARD","11222","7183491445","03","2013-02-20 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40397504","RISQUE BILLARDS LOUNGE CAFE","3","213","MCGUINNESS BOULEVARD","11222","7183491445","03","2013-02-20 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2012-05-30 00:00:00","F","10E","36","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2012-05-30 00:00:00","F","06A","36","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2012-05-30 00:00:00","F","10F","36","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2012-06-15 00:00:00","U","04C","12","B","2012-06-15 00:00:00","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2011-03-31 00:00:00","F","04N","39","C","2011-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2011-08-18 00:00:00","U","04C","25","B","2011-08-18 00:00:00","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2013-03-02 00:00:00","P","10F","13","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2010-09-30 00:00:00","U","02B","16","B","2010-09-30 00:00:00","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2012-02-21 00:00:00","D","04N","11","A","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2012-02-21 00:00:00","D","08A","11","A","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2013-09-03 00:00:00","F","02B","33","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2013-09-03 00:00:00","F","06E","33","","","2013-09-13 01:01:06.177000000" +"40397687","USAGI","1","320 ","EAST 49 STREET ","10017","2129352002","49","2011-10-04 00:00:00","D","04J","13","A","2011-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"40397687","USAGI","1","320 ","EAST 49 STREET ","10017","2129352002","49","2011-10-04 00:00:00","D","06F","13","A","2011-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"40397504","RISQUE BILLARDS LOUNGE CAFE","3","213","MCGUINNESS BOULEVARD","11222","7183491445","03","2013-02-20 00:00:00","F","10A","49","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2010-09-10 00:00:00","F","04J","34","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2011-03-15 00:00:00","F","04L","29","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2011-03-15 00:00:00","F","09C","29","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2011-03-15 00:00:00","F","22A","29","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2013-09-03 00:00:00","F","02G","33","","","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2012-02-08 00:00:00","F","09C","29","","","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2012-02-21 00:00:00","F","06D","20","C","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2012-02-21 00:00:00","F","04H","20","C","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2012-07-19 00:00:00","U","10B","10","B","2012-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"40398095","LOS AMIGOS RESTAURANT","2","674","EAST 180 STREET","10457","7182203551","53","2012-09-05 00:00:00","F","04M","49","C","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40398095","LOS AMIGOS RESTAURANT","2","674","EAST 180 STREET","10457","7182203551","53","2012-09-05 00:00:00","F","05D","49","C","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40398095","LOS AMIGOS RESTAURANT","2","674","EAST 180 STREET","10457","7182203551","53","2012-09-05 00:00:00","F","10F","49","C","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40401217","CITY CRAB","1","235","PARK AVENUE SOUTH","10003","2125293800","72","2012-06-05 00:00:00","F","10F","49","C","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"40398095","LOS AMIGOS RESTAURANT","2","674","EAST 180 STREET","10457","7182203551","53","2012-09-05 00:00:00","F","05F","49","C","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40400366","VIN ET FLEURS","1","69","THOMPSON STREET","10012","2129665417","35","2013-05-21 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40398572","DINASTIA CHINA","1","145","WEST 72 STREET","10023","2123623801","20","2012-03-06 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"40398572","DINASTIA CHINA","1","145","WEST 72 STREET","10023","2123623801","20","2012-03-06 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"40398572","DINASTIA CHINA","1","145","WEST 72 STREET","10023","2123623801","20","2012-03-06 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"40400366","VIN ET FLEURS","1","69","THOMPSON STREET","10012","2129665417","35","2013-05-21 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40398572","DINASTIA CHINA","1","145","WEST 72 STREET","10023","2123623801","20","2012-03-06 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"40398572","DINASTIA CHINA","1","145","WEST 72 STREET","10023","2123623801","20","2012-03-06 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"40398913","MUMBLES","1","200 ","EAST 17 STREET ","10003","2124776066","03","2013-09-03 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"40399165","MUGS ALE HOUSE BAR","3","125","BEDFORD AVENUE","11211","7184868232","03","2012-06-05 00:00:00","F","06C","49","C","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"40396267","ARHARN THAI CUISINE","4","32-05","36 AVENUE","11106","7187285563","82","2011-09-21 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40398913","MUMBLES","1","200 ","EAST 17 STREET ","10003","2124776066","03","2013-09-03 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40398913","MUMBLES","1","200 ","EAST 17 STREET ","10003","2124776066","03","2013-09-03 00:00:00","F","06B","49","","","2013-09-13 01:01:06.177000000" +"40398913","MUMBLES","1","200 ","EAST 17 STREET ","10003","2124776066","03","2013-09-03 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2011-04-20 00:00:00","D","06E","11","A","2011-04-20 00:00:00","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2012-04-19 00:00:00","F","06A","22","C","2012-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2012-10-02 00:00:00","F","02B","34","","","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2012-10-02 00:00:00","F","10B","34","","","2013-09-13 01:01:06.177000000" +"40396395","CAFE LOUP","1","105","WEST 13 STREET","10011","2122554746","35","2011-03-30 00:00:00","F","06C","49","C","2011-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"40396395","CAFE LOUP","1","105","WEST 13 STREET","10011","2122554746","35","2011-03-30 00:00:00","F","10B","49","C","2011-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"40399165","MUGS ALE HOUSE BAR","3","125","BEDFORD AVENUE","11211","7184868232","03","2012-06-05 00:00:00","F","04N","49","C","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"40401217","CITY CRAB","1","235","PARK AVENUE SOUTH","10003","2125293800","72","2012-06-05 00:00:00","F","06C","49","C","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"40397108","OSAKA SUSHI","5","1440","FOREST AVENUE","10302","7187272211","49","2010-09-20 00:00:00","D","10F","2","A","2010-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2011-12-21 00:00:00","F","02H","38","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2012-05-30 00:00:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2013-04-06 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2010-12-28 00:00:00","P","06C","15","","","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2012-07-02 00:00:00","F","06A","66","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2010-09-10 00:00:00","F","02G","34","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2010-09-10 00:00:00","F","06D","34","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2010-09-30 00:00:00","U","99B","16","B","2010-09-30 00:00:00","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2011-03-15 00:00:00","F","06F","29","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2011-03-31 00:00:00","F","08A","39","C","2011-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2013-09-03 00:00:00","F","10F","33","","","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2011-01-28 00:00:00","F","04H","20","C","2011-01-28 00:00:00","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2012-02-08 00:00:00","F","10J","29","","","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2012-07-02 00:00:00","F","10F","66","","","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2012-07-19 00:00:00","U","10F","10","B","2012-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"40401834","COLUMBUS GOURMENT FOODS","1","261","COLUMBUS AVE STORE #2","10023","2127217800","03","2011-02-25 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"40401834","COLUMBUS GOURMENT FOODS","1","261","COLUMBUS AVE STORE #2","10023","2127217800","03","2011-02-25 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40401834","COLUMBUS GOURMENT FOODS","1","261","COLUMBUS AVE STORE #2","10023","2127217800","03","2011-02-25 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2011-01-28 00:00:00","F","02G","20","C","2011-01-28 00:00:00","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2012-02-08 00:00:00","F","05D","29","","","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2012-02-21 00:00:00","F","04N","20","C","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2012-07-02 00:00:00","F","02B","66","","","2013-09-13 01:01:06.177000000" +"40400366","VIN ET FLEURS","1","69","THOMPSON STREET","10012","2129665417","35","2013-05-21 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40397687","USAGI","1","320 ","EAST 49 STREET ","10017","2129352002","49","2010-09-23 00:00:00","C","06D","13","A","2010-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"40397687","USAGI","1","320 ","EAST 49 STREET ","10017","2129352002","49","2010-09-23 00:00:00","C","06E","13","A","2010-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"40401946","NOBU","1","105","HUDSON STREET","10013","2122190500","49","2013-05-23 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2012-04-10 00:00:00","F","06D","29","","","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2012-10-02 00:00:00","F","02G","34","","","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2013-05-01 00:00:00","P","04J","23","","","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2013-05-01 00:00:00","P","10D","23","","","2013-09-13 01:01:06.177000000" +"40400366","VIN ET FLEURS","1","69","THOMPSON STREET","10012","2129665417","35","2013-05-21 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2012-04-19 00:00:00","F","02B","22","C","2012-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2012-11-29 00:00:00","F","02B","26","C","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2012-11-29 00:00:00","F","10B","26","C","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40398913","MUMBLES","1","200 ","EAST 17 STREET ","10003","2124776066","03","2013-09-03 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40398913","MUMBLES","1","200 ","EAST 17 STREET ","10003","2124776066","03","2013-09-03 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"40401217","CITY CRAB","1","235","PARK AVENUE SOUTH","10003","2125293800","72","2012-06-05 00:00:00","F","04N","49","C","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"40401217","CITY CRAB","1","235","PARK AVENUE SOUTH","10003","2125293800","72","2012-06-05 00:00:00","F","08A","49","C","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"40401834","COLUMBUS GOURMENT FOODS","1","261","COLUMBUS AVE STORE #2","10023","2127217800","03","2011-02-25 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40424515","PASTICCERIA LA TORRE","4","158-12","CROSSBAY BOULEVARD","11414","7188432306","08","2011-09-02 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"40424515","PASTICCERIA LA TORRE","4","158-12","CROSSBAY BOULEVARD","11414","7188432306","08","2011-09-02 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"40401834","COLUMBUS GOURMENT FOODS","1","261","COLUMBUS AVE STORE #2","10023","2127217800","03","2011-02-25 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"40511312","PLUM TOMATOES PIZZERIA & RESTAURANT","4","420","BEACH 129 STREET","11694","7184741775","63","2013-08-20 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40511312","PLUM TOMATOES PIZZERIA & RESTAURANT","4","420","BEACH 129 STREET","11694","7184741775","63","2013-08-20 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40511312","PLUM TOMATOES PIZZERIA & RESTAURANT","4","420","BEACH 129 STREET","11694","7184741775","63","2013-08-20 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40401834","COLUMBUS GOURMENT FOODS","1","261","COLUMBUS AVE STORE #2","10023","2127217800","03","2011-02-25 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40401834","COLUMBUS GOURMENT FOODS","1","261","COLUMBUS AVE STORE #2","10023","2127217800","03","2011-02-25 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40401946","NOBU","1","105","HUDSON STREET","10013","2122190500","49","2011-05-24 00:00:00","D","10F","8","A","2011-05-24 00:00:00","2013-09-13 01:01:06.177000000" +"40401946","NOBU","1","105","HUDSON STREET","10013","2122190500","49","2012-05-24 00:00:00","D","02G","12","A","2012-05-24 00:00:00","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2012-04-10 00:00:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2012-04-10 00:00:00","F","04C","29","","","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2012-10-02 00:00:00","F","05D","34","","","2013-09-13 01:01:06.177000000" +"40401946","NOBU","1","105","HUDSON STREET","10013","2122190500","49","2012-05-24 00:00:00","D","10F","12","A","2012-05-24 00:00:00","2013-09-13 01:01:06.177000000" +"40401946","NOBU","1","105","HUDSON STREET","10013","2122190500","49","2013-05-23 00:00:00","P","04J","26","","","2013-09-13 01:01:06.177000000" +"40512258","BLUE RIBBON SUSHI","1","119","SULLIVAN STREET","10012","2123430404","49","2011-01-19 00:00:00","P","04L","17","","","2013-09-13 01:01:06.177000000" +"40512258","BLUE RIBBON SUSHI","1","119","SULLIVAN STREET","10012","2123430404","49","2013-05-10 00:00:00","F","06F","14","","","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2011-04-20 00:00:00","D","10F","11","A","2011-04-20 00:00:00","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2012-10-02 00:00:00","F","09C","34","","","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2012-11-29 00:00:00","F","02G","26","C","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2013-05-01 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2012-04-10 00:00:00","F","05D","29","","","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2012-10-02 00:00:00","F","10F","34","","","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2012-11-29 00:00:00","F","04C","26","C","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2012-02-08 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2012-07-02 00:00:00","F","10B","66","","","2013-09-13 01:01:06.177000000" +"40512852","DOC WATSONS","1","1490 ","2 AVENUE ","10075","2129885300","03","2011-09-14 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"40400366","VIN ET FLEURS","1","69","THOMPSON STREET","10012","2129665417","35","2013-05-21 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40512258","BLUE RIBBON SUSHI","1","119","SULLIVAN STREET","10012","2123430404","49","2011-02-14 00:00:00","U","02G","11","B","2011-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"40512258","BLUE RIBBON SUSHI","1","119","SULLIVAN STREET","10012","2123430404","49","2011-09-09 00:00:00","U","06F","14","B","2011-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"40512258","BLUE RIBBON SUSHI","1","119","SULLIVAN STREET","10012","2123430404","49","2013-05-10 00:00:00","F","10B","14","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2010-09-08 00:00:00","P","06E","22","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2010-11-03 00:00:00","C","06C","12","A","2010-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2011-06-28 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2012-02-15 00:00:00","F","06E","44","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2012-08-07 00:00:00","F","06A","21","","","2013-09-13 01:01:06.177000000" +"40512258","BLUE RIBBON SUSHI","1","119","SULLIVAN STREET","10012","2123430404","49","2011-02-14 00:00:00","U","99B","11","B","2011-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"40424515","PASTICCERIA LA TORRE","4","158-12","CROSSBAY BOULEVARD","11414","7188432306","08","2011-09-02 00:00:00","G","08C","49","","","2013-09-13 01:01:06.177000000" +"40512852","DOC WATSONS","1","1490 ","2 AVENUE ","10075","2129885300","03","2011-09-14 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40512852","DOC WATSONS","1","1490 ","2 AVENUE ","10075","2129885300","03","2011-09-14 00:00:00","F","10E","49","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2010-09-08 00:00:00","P","04M","22","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2012-02-15 00:00:00","F","04M","44","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2012-02-15 00:00:00","F","08A","44","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2012-03-15 00:00:00","U","04M","7","B","2012-03-15 00:00:00","2013-09-13 01:01:06.177000000" +"40401217","CITY CRAB","1","235","PARK AVENUE SOUTH","10003","2125293800","72","2012-06-05 00:00:00","F","02B","49","C","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"40515590","E-DAH KOREAN BBQ LOUNGE","4","160-34","NORTHERN BOULEVARD","11358","7184457276","52","2013-05-19 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2011-11-17 00:00:00","F","08B","42","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2010-09-08 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2012-02-15 00:00:00","F","02B","44","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2012-02-15 00:00:00","F","04L","44","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2012-02-15 00:00:00","F","10A","44","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2012-08-07 00:00:00","F","08C","21","","","2013-09-13 01:01:06.177000000" +"40512258","BLUE RIBBON SUSHI","1","119","SULLIVAN STREET","10012","2123430404","49","2011-01-19 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"40512258","BLUE RIBBON SUSHI","1","119","SULLIVAN STREET","10012","2123430404","49","2011-09-09 00:00:00","U","02G","14","B","2011-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"40511312","PLUM TOMATOES PIZZERIA & RESTAURANT","4","420","BEACH 129 STREET","11694","7184741775","63","2013-08-20 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40401946","NOBU","1","105","HUDSON STREET","10013","2122190500","49","2011-05-24 00:00:00","D","06E","8","A","2011-05-24 00:00:00","2013-09-13 01:01:06.177000000" +"40401946","NOBU","1","105","HUDSON STREET","10013","2122190500","49","2013-05-23 00:00:00","P","02B","26","","","2013-09-13 01:01:06.177000000" +"40512852","DOC WATSONS","1","1490 ","2 AVENUE ","10075","2129885300","03","2011-09-14 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2012-04-19 00:00:00","F","05D","22","C","2012-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"40402095","SUSHIDEN","1","1251","AVENUE OF THE AMERICAS","10020","2123982800","49","2013-05-01 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2010-11-04 00:00:00","C","10F","10","A","2010-11-04 00:00:00","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2011-11-17 00:00:00","F","02B","42","","","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2011-12-07 00:00:00","U","04H","14","B","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2012-04-17 00:00:00","F","06C","29","","","2013-09-13 01:01:06.177000000" +"40511312","PLUM TOMATOES PIZZERIA & RESTAURANT","4","420","BEACH 129 STREET","11694","7184741775","63","2013-08-20 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40512258","BLUE RIBBON SUSHI","1","119","SULLIVAN STREET","10012","2123430404","49","2011-08-25 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"40512258","BLUE RIBBON SUSHI","1","119","SULLIVAN STREET","10012","2123430404","49","2013-05-10 00:00:00","F","10F","14","","","2013-09-13 01:01:06.177000000" +"40512258","BLUE RIBBON SUSHI","1","119","SULLIVAN STREET","10012","2123430404","49","2012-04-04 00:00:00","D","06B","13","A","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"40512258","BLUE RIBBON SUSHI","1","119","SULLIVAN STREET","10012","2123430404","49","2012-04-04 00:00:00","D","10F","13","A","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"40512852","DOC WATSONS","1","1490 ","2 AVENUE ","10075","2129885300","03","2011-09-14 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2011-06-28 00:00:00","P","04M","20","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2012-02-15 00:00:00","F","04H","44","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2012-08-07 00:00:00","F","10F","21","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2013-04-03 00:00:00","P","10B","11","","","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2011-02-17 00:00:00","D","10F","9","A","2011-02-17 00:00:00","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2012-01-26 00:00:00","F","10F","41","","","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2012-02-08 00:00:00","U","04C","25","B","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2012-07-16 00:00:00","D","06F","12","A","2012-07-16 00:00:00","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2013-01-18 00:00:00","F","04H","37","","","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2010-11-04 00:00:00","C","22C","10","A","2010-11-04 00:00:00","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2011-11-17 00:00:00","F","05D","42","","","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2012-12-27 00:00:00","D","06C","5","A","2012-12-27 00:00:00","2013-09-13 01:01:06.177000000" +"40538089","IPANEMA RESTAURANT","1","13 ","WEST 46 STREET ","10036","2127305848","53","2012-09-05 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40525767","CAPRI II PIZZA","2","149","DREISER LOOP","10475","7186713822","62","2012-06-14 00:00:00","F","10A","49","","","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2012-02-08 00:00:00","U","02G","25","B","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2013-01-18 00:00:00","F","06F","37","","","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2013-01-18 00:00:00","F","08A","37","","","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2013-07-30 00:00:00","P","06F","25","","","2013-09-13 01:01:06.177000000" +"40515590","E-DAH KOREAN BBQ LOUNGE","4","160-34","NORTHERN BOULEVARD","11358","7184457276","52","2013-05-19 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40515590","E-DAH KOREAN BBQ LOUNGE","4","160-34","NORTHERN BOULEVARD","11358","7184457276","52","2013-05-19 00:00:00","F","10E","49","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2010-06-10 15:11:00","U","08C","23","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2010-12-14 00:00:00","F","04L","39","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2011-01-11 00:00:00","U","06D","21","B","2011-01-11 00:00:00","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2011-07-01 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2011-08-09 00:00:00","D","10B","9","A","2011-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2011-11-29 00:00:00","D","10F","12","A","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2012-04-10 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2013-04-11 00:00:00","P","06F","25","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2013-04-11 00:00:00","P","10C","25","","","2013-09-13 01:01:06.177000000" +"40515590","E-DAH KOREAN BBQ LOUNGE","4","160-34","NORTHERN BOULEVARD","11358","7184457276","52","2013-05-19 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2010-09-08 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2011-07-11 00:00:00","U","06D","14","B","2011-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2012-02-15 00:00:00","F","06A","44","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2012-09-17 00:00:00","U","02G","16","B","2012-09-17 00:00:00","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2010-05-20 14:30:00","F","04M","32","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2011-07-11 00:00:00","U","02G","14","B","2011-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2012-08-07 00:00:00","F","02B","21","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2012-09-17 00:00:00","U","06C","16","B","2012-09-17 00:00:00","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2013-04-03 00:00:00","P","10F","11","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2013-04-24 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2010-05-20 14:30:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2010-12-14 00:00:00","F","08A","39","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2011-11-17 00:00:00","P","10A","22","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2012-04-10 00:00:00","P","04K","23","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2012-04-10 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2012-04-17 00:00:00","D","04K","12","A","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2012-09-11 00:00:00","P","04M","20","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2012-09-11 00:00:00","P","06D","20","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2012-10-01 00:00:00","D","02G","12","A","2012-10-01 00:00:00","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2012-04-17 00:00:00","F","03A","29","","","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2012-05-18 00:00:00","U","06E","5","B","2012-05-18 00:00:00","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2012-12-03 00:00:00","F","04C","23","","","2013-09-13 01:01:06.177000000" +"40546234","KURUMAZUSHI RESTAURANT","1","7","EAST 47 STREET","10017","2123172802","49","2010-10-06 00:00:00","C","06D","12","A","2010-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"40546234","KURUMAZUSHI RESTAURANT","1","7","EAST 47 STREET","10017","2123172802","49","2012-03-27 00:00:00","D","02B","13","A","2012-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40546234","KURUMAZUSHI RESTAURANT","1","7","EAST 47 STREET","10017","2123172802","49","2012-03-27 00:00:00","D","06C","13","A","2012-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40546234","KURUMAZUSHI RESTAURANT","1","7","EAST 47 STREET","10017","2123172802","49","2010-10-06 00:00:00","C","04H","12","A","2010-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"40546234","KURUMAZUSHI RESTAURANT","1","7","EAST 47 STREET","10017","2123172802","49","2011-10-14 00:00:00","D","10F","3","A","2011-10-14 00:00:00","2013-09-13 01:01:06.177000000" +"40547014","VESPA CIBOBUONO","1","1625 ","SECOND AVENUE ","10028","2124722050","48","2011-04-18 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40547014","VESPA CIBOBUONO","1","1625 ","SECOND AVENUE ","10028","2124722050","48","2011-04-18 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40547014","VESPA CIBOBUONO","1","1625 ","SECOND AVENUE ","10028","2124722050","48","2011-04-18 00:00:00","F","22C","49","","","2013-09-13 01:01:06.177000000" +"40538089","IPANEMA RESTAURANT","1","13 ","WEST 46 STREET ","10036","2127305848","53","2012-09-05 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40525767","CAPRI II PIZZA","2","149","DREISER LOOP","10475","7186713822","62","2012-06-14 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"40550033","EL SABROSO RESTAURANT","1","265 ","WEST 37 STREET ","10018","2122841118","77","2011-01-19 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"40550150","AKIYAMA JAPANESE RESTAURANT","4","132-16","14 AVENUE","11356","7187470529","49","2010-12-20 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"40550150","AKIYAMA JAPANESE RESTAURANT","4","132-16","14 AVENUE","11356","7187470529","49","2012-05-09 00:00:00","D","10F","8","A","2012-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2012-02-08 00:00:00","U","10B","25","B","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2013-02-12 00:00:00","D","09B","11","A","2013-02-12 00:00:00","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2013-07-30 00:00:00","P","06E","25","","","2013-09-13 01:01:06.177000000" +"40550150","AKIYAMA JAPANESE RESTAURANT","4","132-16","14 AVENUE","11356","7187470529","49","2013-05-15 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"40550150","AKIYAMA JAPANESE RESTAURANT","4","132-16","14 AVENUE","11356","7187470529","49","2013-05-15 00:00:00","P","10H","18","","","2013-09-13 01:01:06.177000000" +"40550155","PARISI BAKERY","1","198","MOTT STREET","10012","2122266378","27","2010-11-30 00:00:00","F","02G","49","C","2010-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"40538089","IPANEMA RESTAURANT","1","13 ","WEST 46 STREET ","10036","2127305848","53","2012-09-05 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2011-11-17 00:00:00","F","06B","42","","","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2011-11-17 00:00:00","F","10F","42","","","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2013-06-25 00:00:00","P","05D","10","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2010-06-10 15:11:00","U","10B","23","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2010-12-14 00:00:00","F","03B","39","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2011-11-17 00:00:00","P","10I","22","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2012-09-11 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2013-04-11 00:00:00","P","04C","25","","","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2010-11-04 00:00:00","C","06C","10","A","2010-11-04 00:00:00","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2011-12-07 00:00:00","U","02B","14","B","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2012-12-03 00:00:00","F","04H","23","","","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2012-01-26 00:00:00","F","09B","41","","","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2013-02-12 00:00:00","D","04E","11","A","2013-02-12 00:00:00","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2013-02-12 00:00:00","D","10F","11","A","2013-02-12 00:00:00","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2013-07-30 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2013-07-30 00:00:00","P","04H","25","","","2013-09-13 01:01:06.177000000" +"40511312","PLUM TOMATOES PIZZERIA & RESTAURANT","4","420","BEACH 129 STREET","11694","7184741775","63","2013-08-20 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-03-06 00:00:00","P","10B","27","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-03-16 00:00:00","U","04L","12","B","2012-03-16 00:00:00","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-02 00:00:00","F","02G","15","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-11 00:00:00","G","02B","87","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2013-03-13 00:00:00","F","04L","46","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2010-05-20 14:30:00","F","08C","32","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2011-01-11 00:00:00","U","22C","21","B","2011-01-11 00:00:00","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2011-12-12 00:00:00","U","10F","13","B","2011-12-12 00:00:00","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2012-06-12 00:00:00","F","08A","18","C","2012-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2011-08-09 00:00:00","D","02G","9","A","2011-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2011-11-17 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2013-04-11 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2010-09-01 00:00:00","U","08A","13","B","2010-09-01 00:00:00","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-01-31 00:00:00","F","10B","34","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-02-22 00:00:00","D","06F","12","A","2011-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-07-05 00:00:00","F","06D","48","C","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-12-29 00:00:00","U","04L","11","B","2011-12-29 00:00:00","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2012-05-02 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2012-05-02 00:00:00","U","04J","20","B","2012-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2013-07-23 00:00:00","F","02B","36","","","2013-09-13 01:01:06.177000000" +"40512258","BLUE RIBBON SUSHI","1","119","SULLIVAN STREET","10012","2123430404","49","2011-08-25 00:00:00","P","04H","17","","","2013-09-13 01:01:06.177000000" +"40512258","BLUE RIBBON SUSHI","1","119","SULLIVAN STREET","10012","2123430404","49","2012-04-04 00:00:00","D","06D","13","A","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"40512258","BLUE RIBBON SUSHI","1","119","SULLIVAN STREET","10012","2123430404","49","2013-05-10 00:00:00","F","06D","14","","","2013-09-13 01:01:06.177000000" +"40512852","DOC WATSONS","1","1490 ","2 AVENUE ","10075","2129885300","03","2011-09-14 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40512852","DOC WATSONS","1","1490 ","2 AVENUE ","10075","2129885300","03","2011-09-14 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"40538089","IPANEMA RESTAURANT","1","13 ","WEST 46 STREET ","10036","2127305848","53","2012-09-05 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40547014","VESPA CIBOBUONO","1","1625 ","SECOND AVENUE ","10028","2124722050","48","2011-04-18 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"40550033","EL SABROSO RESTAURANT","1","265 ","WEST 37 STREET ","10018","2122841118","77","2011-01-19 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"40550155","PARISI BAKERY","1","198","MOTT STREET","10012","2122266378","27","2010-11-30 00:00:00","F","04N","49","C","2010-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"40538089","IPANEMA RESTAURANT","1","13 ","WEST 46 STREET ","10036","2127305848","53","2012-09-05 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2011-10-05 00:00:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2011-10-05 00:00:00","F","06D","36","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-03-06 00:00:00","P","02B","27","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-03-06 00:00:00","P","04L","27","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-03-16 00:00:00","U","08A","12","B","2012-03-16 00:00:00","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-11 00:00:00","G","06C","87","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-11 00:00:00","G","08A","87","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2013-03-13 00:00:00","F","06F","46","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2013-03-13 00:00:00","F","08A","46","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2010-10-19 00:00:00","F","04O","38","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2011-12-12 00:00:00","U","04M","13","B","2011-12-12 00:00:00","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2012-05-15 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2012-08-17 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2013-01-02 00:00:00","P","04L","14","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-02-22 00:00:00","D","02B","12","A","2011-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"40568285","LA CARIDAD 78","1","2197-2199","BROADWAY","10024","2128742780","21","2011-11-15 00:00:00","F","02G","49","C","2011-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-07-05 00:00:00","F","08A","48","C","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-11-03 00:00:00","F","04L","16","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2012-04-23 00:00:00","P","10H","13","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2012-12-06 00:00:00","P","04C","12","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2013-07-23 00:00:00","F","04C","36","","","2013-09-13 01:01:06.177000000" +"40550150","AKIYAMA JAPANESE RESTAURANT","4","132-16","14 AVENUE","11356","7187470529","49","2010-12-20 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"40550150","AKIYAMA JAPANESE RESTAURANT","4","132-16","14 AVENUE","11356","7187470529","49","2011-01-14 00:00:00","C","02B","7","A","2011-01-14 00:00:00","2013-09-13 01:01:06.177000000" +"40550150","AKIYAMA JAPANESE RESTAURANT","4","132-16","14 AVENUE","11356","7187470529","49","2013-05-15 00:00:00","P","06A","18","","","2013-09-13 01:01:06.177000000" +"40550155","PARISI BAKERY","1","198","MOTT STREET","10012","2122266378","27","2010-11-30 00:00:00","F","04A","49","C","2010-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2011-02-17 00:00:00","D","10B","9","A","2011-02-17 00:00:00","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2012-01-26 00:00:00","F","04H","41","","","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2012-01-26 00:00:00","F","06F","41","","","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2013-01-18 00:00:00","F","10F","37","","","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2013-01-18 00:00:00","F","04L","37","","","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2013-01-18 00:00:00","F","09C","37","","","2013-09-13 01:01:06.177000000" +"40569633","BOCCA DI BACCO","1","635 ","NINTH AVENUE ","10036","2122622525","03","2011-05-03 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40515590","E-DAH KOREAN BBQ LOUNGE","4","160-34","NORTHERN BOULEVARD","11358","7184457276","52","2013-05-19 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2010-04-19 11:33:00","F","04L","39","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2010-09-21 00:00:00","P","06C","9","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-04-06 00:00:00","F","04C","92","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-04-06 00:00:00","F","04J","92","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2013-04-01 00:00:00","F","02G","26","","","2013-09-13 01:01:06.177000000" +"40554834","DEWEY'S FLATIRON","1","210","FIFTH AVENUE","10010","2126857781","03","2011-06-16 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"40554834","DEWEY'S FLATIRON","1","210","FIFTH AVENUE","10010","2126857781","03","2011-06-16 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2010-09-08 00:00:00","P","99B","22","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2010-11-03 00:00:00","C","02G","12","A","2010-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2011-06-28 00:00:00","P","99B","20","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2011-07-11 00:00:00","U","10F","14","B","2011-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2013-04-03 00:00:00","P","06F","11","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2010-05-20 14:30:00","F","06F","32","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2010-06-10 15:11:00","U","02G","23","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2010-06-10 15:11:00","U","08A","23","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2011-07-01 00:00:00","P","06A","19","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2011-11-17 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2012-04-17 00:00:00","D","04L","12","A","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2010-12-14 00:00:00","F","06C","39","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2012-04-17 00:00:00","D","09C","12","A","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"40545820","JP'S BAR","3","2953","GRAVESEND NECK ROAD","11229","7186469471","03","2010-06-28 15:28:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"40568285","LA CARIDAD 78","1","2197-2199","BROADWAY","10024","2128742780","21","2011-11-15 00:00:00","F","06A","49","C","2011-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"40568285","LA CARIDAD 78","1","2197-2199","BROADWAY","10024","2128742780","21","2011-11-15 00:00:00","F","08A","49","C","2011-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2011-08-08 00:00:00","D","10F","10","A","2011-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2012-07-19 00:00:00","D","10B","10","A","2012-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2013-08-06 00:00:00","G","06F","52","","","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2013-08-07 00:00:00","W","06D","38","","","2013-09-13 01:01:06.177000000" +"40573929","ARABELLE","1","37 ","EAST 64 STREET ","10065","2126064600","03","2011-04-09 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"40573929","ARABELLE","1","37 ","EAST 64 STREET ","10065","2126064600","03","2011-04-09 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40545820","JP'S BAR","3","2953","GRAVESEND NECK ROAD","11229","7186469471","03","2010-06-28 15:28:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2010-09-08 00:00:00","F","08A","18","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2011-10-05 00:00:00","F","04L","36","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2011-10-18 00:00:00","U","06B","10","B","2011-10-18 00:00:00","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-11 00:00:00","G","02H","87","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2013-03-13 00:00:00","F","10D","46","","","2013-09-13 01:01:06.177000000" +"40546234","KURUMAZUSHI RESTAURANT","1","7","EAST 47 STREET","10017","2123172802","49","2011-09-12 00:00:00","P","04C","19","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2010-09-08 00:00:00","F","06A","18","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2010-12-10 00:00:00","C","09C","4","A","2010-12-10 00:00:00","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2011-10-05 00:00:00","F","02B","36","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2011-10-05 00:00:00","F","15J","","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2011-10-18 00:00:00","U","06C","10","B","2011-10-18 00:00:00","2013-09-13 01:01:06.177000000" +"40525767","CAPRI II PIZZA","2","149","DREISER LOOP","10475","7186713822","62","2012-06-14 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40547014","VESPA CIBOBUONO","1","1625 ","SECOND AVENUE ","10028","2124722050","48","2011-04-18 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"40547014","VESPA CIBOBUONO","1","1625 ","SECOND AVENUE ","10028","2124722050","48","2011-04-18 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2011-12-02 00:00:00","F","04K","39","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2011-12-12 00:00:00","U","06C","13","B","2011-12-12 00:00:00","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2013-01-02 00:00:00","P","06D","14","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2010-08-04 00:00:00","F","08C","69","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2010-09-01 00:00:00","U","04K","13","B","2010-09-01 00:00:00","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-01-31 00:00:00","F","10H","34","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-07-05 00:00:00","F","04C","48","C","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-07-05 00:00:00","F","10F","48","C","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"40547014","VESPA CIBOBUONO","1","1625 ","SECOND AVENUE ","10028","2124722050","48","2011-04-18 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40569633","BOCCA DI BACCO","1","635 ","NINTH AVENUE ","10036","2122622525","03","2011-05-03 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-08-17 00:00:00","F","08A","50","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-12-05 00:00:00","G","04C","48","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-12-05 00:00:00","G","10F","48","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-12-08 00:00:00","O","10F","15","P","2011-12-08 00:00:00","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-16 00:00:00","W","04L","13","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-16 00:00:00","W","06D","13","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2013-03-13 00:00:00","F","02B","46","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2010-10-19 00:00:00","F","08A","38","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-07-19 00:00:00","U","04M","17","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2012-05-15 00:00:00","F","10B","28","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2013-01-02 00:00:00","P","10F","14","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2010-08-04 00:00:00","F","02B","69","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2010-08-04 00:00:00","F","04N","69","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2010-08-04 00:00:00","F","08A","69","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2010-09-01 00:00:00","U","02G","13","B","2010-09-01 00:00:00","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-01-31 00:00:00","F","10F","34","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-06-15 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-11-03 00:00:00","F","06D","16","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-11-03 00:00:00","F","06E","16","","","2013-09-13 01:01:06.177000000" +"40571663","SANTOOR INDIAN RESTAURANT","4","257-05","UNION TURNPIKE","11004","7183433939","44","2013-01-03 00:00:00","F","06D","49","C","2013-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"40571663","SANTOOR INDIAN RESTAURANT","4","257-05","UNION TURNPIKE","11004","7183433939","44","2013-01-03 00:00:00","F","10H","49","C","2013-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"40550033","EL SABROSO RESTAURANT","1","265 ","WEST 37 STREET ","10018","2122841118","77","2011-01-19 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"40550155","PARISI BAKERY","1","198","MOTT STREET","10012","2122266378","27","2010-11-30 00:00:00","F","06A","49","C","2010-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"40550155","PARISI BAKERY","1","198","MOTT STREET","10012","2122266378","27","2010-11-30 00:00:00","F","09C","49","C","2010-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"40550155","PARISI BAKERY","1","198","MOTT STREET","10012","2122266378","27","2010-11-30 00:00:00","F","10F","49","C","2010-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2013-01-15 00:00:00","U","08A","14","B","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2013-08-06 00:00:00","G","10F","52","","","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2013-08-07 00:00:00","W","08A","38","","","2013-09-13 01:01:06.177000000" +"40573929","ARABELLE","1","37 ","EAST 64 STREET ","10065","2126064600","03","2011-04-09 00:00:00","F","20E","49","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2011-04-06 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2011-08-17 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2011-09-19 00:00:00","U","09C","9","B","2011-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-03-26 00:00:00","F","05H","41","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-04-16 00:00:00","F","04L","33","C","2012-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-04-16 00:00:00","F","10F","33","C","2012-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-05-01 00:00:00","G","08A","31","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-08-06 00:00:00","F","04L","29","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-09-05 00:00:00","F","04J","29","C","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2012-04-17 00:00:00","F","04C","29","","","2013-09-13 01:01:06.177000000" +"40554369","AM","3","7221","3 AVENUE","11209","7189215869","03","2011-08-18 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40581298","EL FARO RESTAURANT","1","823","GREENWICH STREET","10014","2129298210","53","2012-04-20 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40581298","EL FARO RESTAURANT","1","823","GREENWICH STREET","10014","2129298210","53","2012-04-20 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2010-04-19 11:33:00","F","10B","39","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2010-12-02 00:00:00","F","06C","22","C","2010-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-04-06 00:00:00","F","06A","92","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-04-06 00:00:00","F","10B","92","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-12-05 00:00:00","G","08A","48","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2013-04-01 00:00:00","F","08A","26","","","2013-09-13 01:01:06.177000000" +"40554834","DEWEY'S FLATIRON","1","210","FIFTH AVENUE","10010","2126857781","03","2011-06-16 00:00:00","G","06D","49","","","2013-09-13 01:01:06.177000000" +"40571663","SANTOOR INDIAN RESTAURANT","4","257-05","UNION TURNPIKE","11004","7183433939","44","2013-01-03 00:00:00","F","04L","49","C","2013-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"40571663","SANTOOR INDIAN RESTAURANT","4","257-05","UNION TURNPIKE","11004","7183433939","44","2013-01-03 00:00:00","F","04N","49","C","2013-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"40571663","SANTOOR INDIAN RESTAURANT","4","257-05","UNION TURNPIKE","11004","7183433939","44","2013-01-03 00:00:00","F","08A","49","C","2013-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"40554834","DEWEY'S FLATIRON","1","210","FIFTH AVENUE","10010","2126857781","03","2011-06-16 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2010-04-19 11:33:00","F","06D","39","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2010-05-13 15:23:00","U","10G","14","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2010-12-02 00:00:00","F","02B","22","C","2010-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2010-12-02 00:00:00","F","04N","22","C","2010-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-08-17 00:00:00","F","04M","50","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-12-08 00:00:00","O","99B","15","P","2011-12-08 00:00:00","2013-09-13 01:01:06.177000000" +"40584813","HOP WON EXPRESS","1","139","EAST 45 STREET","10017","2126614280","20","2011-04-13 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2010-11-05 00:00:00","P","04C","21","","","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2011-05-02 00:00:00","F","04M","35","","","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2011-08-08 00:00:00","D","02G","10","A","2011-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2012-07-19 00:00:00","D","06C","10","A","2012-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2013-08-09 00:00:00","O","10F","5","P","2013-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2012-03-21 00:00:00","F","02G","26","","","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2012-03-21 00:00:00","F","06D","26","","","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2012-03-21 00:00:00","F","06E","26","","","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2012-10-03 00:00:00","F","02B","28","","","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2012-10-03 00:00:00","F","10B","28","","","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2013-01-15 00:00:00","U","10B","14","B","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"40585517","EL JAROCHITO MEXICAN DELI & GROCERY","3","195","NEPTUNE AVENUE","11235","7187694447","55","2013-05-09 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"40573929","ARABELLE","1","37 ","EAST 64 STREET ","10065","2126064600","03","2011-04-09 00:00:00","F","06B","49","","","2013-09-13 01:01:06.177000000" +"40538089","IPANEMA RESTAURANT","1","13 ","WEST 46 STREET ","10036","2127305848","53","2012-09-05 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2010-11-29 00:00:00","D","10F","5","A","2010-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2011-10-05 00:00:00","F","10F","36","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2011-10-05 00:00:00","F","15L","","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-03-06 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-11 00:00:00","G","04N","87","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-12 00:00:00","W","04H","21","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-12 00:00:00","W","08A","21","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2013-03-13 00:00:00","F","10F","46","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2011-12-02 00:00:00","F","08A","39","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2012-05-15 00:00:00","F","04L","28","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2012-06-12 00:00:00","F","04L","18","C","2012-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2010-09-08 00:00:00","F","99B","18","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-03-16 00:00:00","U","10F","12","B","2012-03-16 00:00:00","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-02 00:00:00","F","10B","15","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-11 00:00:00","G","04C","87","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-11 00:00:00","G","06B","87","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-11 00:00:00","G","08C","87","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-12 00:00:00","W","10B","21","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2013-03-13 00:00:00","F","08C","46","","","2013-09-13 01:01:06.177000000" +"40573929","ARABELLE","1","37 ","EAST 64 STREET ","10065","2126064600","03","2011-04-09 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40573929","ARABELLE","1","37 ","EAST 64 STREET ","10065","2126064600","03","2011-04-09 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2010-08-04 00:00:00","F","22C","69","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-01-31 00:00:00","F","02B","34","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-01-31 00:00:00","F","04C","34","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-06-15 00:00:00","P","06C","23","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-07-05 00:00:00","F","04K","48","C","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2012-04-23 00:00:00","P","08A","13","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2013-07-23 00:00:00","F","06C","36","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2010-08-03 00:00:00","F","06F","18","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-04-16 00:00:00","F","05H","33","C","2012-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-05-01 00:00:00","G","04L","31","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-08-06 00:00:00","F","04H","29","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-08-06 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"40581298","EL FARO RESTAURANT","1","823","GREENWICH STREET","10014","2129298210","53","2012-04-20 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2011-02-17 00:00:00","D","06A","9","A","2011-02-17 00:00:00","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2012-02-08 00:00:00","U","02B","25","B","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2012-07-06 00:00:00","P","10B","4","","","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2012-07-16 00:00:00","D","02G","12","A","2012-07-16 00:00:00","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2013-01-18 00:00:00","F","02G","37","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2010-10-19 00:00:00","F","04L","38","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2011-06-28 00:00:00","U","04H","12","B","2011-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2012-05-15 00:00:00","F","04M","28","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2010-08-04 00:00:00","F","10B","69","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-07-05 00:00:00","F","04M","48","C","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2012-05-02 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2012-05-02 00:00:00","U","06D","20","B","2012-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2012-05-02 00:00:00","U","10B","20","B","2012-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2013-07-23 00:00:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2013-07-23 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2011-03-15 00:00:00","D","10H","4","A","2011-03-15 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2010-08-03 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2010-12-01 00:00:00","U","02G","24","B","2010-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2011-04-26 00:00:00","F","04C","30","C","2011-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"40592791","KRISPY PIZZERIA","3","7112","13 AVENUE","11228","7187459618","63","2011-10-19 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-03-26 00:00:00","F","02G","41","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-03-26 00:00:00","F","10H","41","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-09-05 00:00:00","F","10B","29","C","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40581298","EL FARO RESTAURANT","1","823","GREENWICH STREET","10014","2129298210","53","2012-04-20 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2010-06-10 15:11:00","U","04M","23","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2011-01-11 00:00:00","U","06F","21","B","2011-01-11 00:00:00","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2011-01-11 00:00:00","U","08A","21","B","2011-01-11 00:00:00","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2011-11-29 00:00:00","D","04L","12","A","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2012-04-17 00:00:00","D","08A","12","A","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2012-09-11 00:00:00","P","04L","20","","","2013-09-13 01:01:06.177000000" +"40584813","HOP WON EXPRESS","1","139","EAST 45 STREET","10017","2126614280","20","2011-04-13 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40584813","HOP WON EXPRESS","1","139","EAST 45 STREET","10017","2126614280","20","2011-04-13 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2010-12-21 00:00:00","C","10H","9","A","2010-12-21 00:00:00","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2011-11-30 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"40545820","JP'S BAR","3","2953","GRAVESEND NECK ROAD","11229","7186469471","03","2010-06-28 15:28:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40584813","HOP WON EXPRESS","1","139","EAST 45 STREET","10017","2126614280","20","2011-04-13 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2013-01-24 00:00:00","U","04C","19","B","2013-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2013-06-26 00:00:00","F","04M","31","","","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2013-06-26 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2011-09-21 00:00:00","D","10F","8","A","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2013-08-29 00:00:00","P","06B","27","","","2013-09-13 01:01:06.177000000" +"40585345","SUSHIYA JAPANESE RESTAURANT","1","28","WEST 56 STREET","10019","2122475756","49","2010-09-21 00:00:00","P","08A","14","","","2013-09-13 01:01:06.177000000" +"40585345","SUSHIYA JAPANESE RESTAURANT","1","28","WEST 56 STREET","10019","2122475756","49","2011-07-11 00:00:00","D","06C","10","A","2011-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"40585345","SUSHIYA JAPANESE RESTAURANT","1","28","WEST 56 STREET","10019","2122475756","49","2013-06-21 00:00:00","F","04H","35","","","2013-09-13 01:01:06.177000000" +"40585345","SUSHIYA JAPANESE RESTAURANT","1","28","WEST 56 STREET","10019","2122475756","49","2013-06-21 00:00:00","F","08A","35","","","2013-09-13 01:01:06.177000000" +"40585517","EL JAROCHITO MEXICAN DELI & GROCERY","3","195","NEPTUNE AVENUE","11235","7187694447","55","2013-05-09 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40585345","SUSHIYA JAPANESE RESTAURANT","1","28","WEST 56 STREET","10019","2122475756","49","2010-09-21 00:00:00","P","10B","14","","","2013-09-13 01:01:06.177000000" +"40585345","SUSHIYA JAPANESE RESTAURANT","1","28","WEST 56 STREET","10019","2122475756","49","2011-07-11 00:00:00","D","06D","10","A","2011-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"40585345","SUSHIYA JAPANESE RESTAURANT","1","28","WEST 56 STREET","10019","2122475756","49","2013-06-21 00:00:00","F","04A","35","","","2013-09-13 01:01:06.177000000" +"40547014","VESPA CIBOBUONO","1","1625 ","SECOND AVENUE ","10028","2124722050","48","2011-04-18 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40547014","VESPA CIBOBUONO","1","1625 ","SECOND AVENUE ","10028","2124722050","48","2011-04-18 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40596377","LOS PAPIS RESTAURANT","3","77","BRIDGE STREET","11201","7185966965","53","2012-11-29 00:00:00","F","02G","49","C","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40585517","EL JAROCHITO MEXICAN DELI & GROCERY","3","195","NEPTUNE AVENUE","11235","7187694447","55","2013-05-09 00:00:00","F","03A","49","","","2013-09-13 01:01:06.177000000" +"40585517","EL JAROCHITO MEXICAN DELI & GROCERY","3","195","NEPTUNE AVENUE","11235","7187694447","55","2013-05-09 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40568285","LA CARIDAD 78","1","2197-2199","BROADWAY","10024","2128742780","21","2011-11-15 00:00:00","F","04N","49","C","2011-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"40568285","LA CARIDAD 78","1","2197-2199","BROADWAY","10024","2128742780","21","2011-11-15 00:00:00","F","06C","49","C","2011-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2012-03-21 00:00:00","F","02B","26","","","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2012-03-21 00:00:00","F","10B","26","","","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2012-04-26 00:00:00","U","02G","18","B","2012-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2012-10-03 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2013-01-15 00:00:00","U","04K","14","B","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2013-01-15 00:00:00","U","10F","14","B","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"40569633","BOCCA DI BACCO","1","635 ","NINTH AVENUE ","10036","2122622525","03","2011-05-03 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40569633","BOCCA DI BACCO","1","635 ","NINTH AVENUE ","10036","2122622525","03","2011-05-03 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"40569633","BOCCA DI BACCO","1","635 ","NINTH AVENUE ","10036","2122622525","03","2011-05-03 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"40569633","BOCCA DI BACCO","1","635 ","NINTH AVENUE ","10036","2122622525","03","2011-05-03 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"40550033","EL SABROSO RESTAURANT","1","265 ","WEST 37 STREET ","10018","2122841118","77","2011-01-19 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"40550033","EL SABROSO RESTAURANT","1","265 ","WEST 37 STREET ","10018","2122841118","77","2011-01-19 00:00:00","G","10A","49","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2010-04-19 11:33:00","F","06F","39","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2010-04-19 11:33:00","F","08A","39","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2010-04-19 11:33:00","F","10G","39","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2010-09-21 00:00:00","P","10F","9","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-04-06 00:00:00","F","02G","92","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-04-06 00:00:00","F","04H","92","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-04-06 00:00:00","F","05D","92","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-04-06 00:00:00","F","10H","92","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-04-06 00:00:00","F","99B","92","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-08-17 00:00:00","F","04K","50","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-12-05 00:00:00","G","06E","48","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-12-08 00:00:00","O","08A","15","P","2011-12-08 00:00:00","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2012-02-28 00:00:00","D","09C","4","A","2012-02-28 00:00:00","2013-09-13 01:01:06.177000000" +"40569633","BOCCA DI BACCO","1","635 ","NINTH AVENUE ","10036","2122622525","03","2011-05-03 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40550150","AKIYAMA JAPANESE RESTAURANT","4","132-16","14 AVENUE","11356","7187470529","49","2012-05-09 00:00:00","D","06C","8","A","2012-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"40550155","PARISI BAKERY","1","198","MOTT STREET","10012","2122266378","27","2010-11-30 00:00:00","F","06C","49","C","2010-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"40550155","PARISI BAKERY","1","198","MOTT STREET","10012","2122266378","27","2010-11-30 00:00:00","F","10B","49","C","2010-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2011-02-08 00:00:00","F","02G","27","","","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2011-02-08 00:00:00","F","06A","27","","","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2011-02-24 00:00:00","D","06D","12","A","2011-02-24 00:00:00","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2011-12-05 00:00:00","P","04N","17","","","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2011-12-05 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2013-03-21 00:00:00","P","08C","21","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2010-08-03 00:00:00","F","04M","18","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2010-08-03 00:00:00","F","08A","18","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2010-12-01 00:00:00","U","06C","24","B","2010-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2011-08-17 00:00:00","P","08C","19","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2011-08-17 00:00:00","P","99B","19","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-03-26 00:00:00","F","04L","41","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-03-26 00:00:00","F","06E","41","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2010-09-21 00:00:00","P","08C","9","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2010-12-02 00:00:00","F","06F","22","C","2010-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-04-06 00:00:00","F","06D","92","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-04-06 00:00:00","F","06E","92","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-04-06 00:00:00","F","08A","92","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-08-17 00:00:00","F","06C","50","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-12-05 00:00:00","G","04K","48","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2012-02-28 00:00:00","D","10F","4","A","2012-02-28 00:00:00","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2013-04-01 00:00:00","F","04L","26","","","2013-09-13 01:01:06.177000000" +"40554369","AM","3","7221","3 AVENUE","11209","7189215869","03","2011-08-18 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40604665","HAVANA NY","1","27","WEST 38 STREET","10018","2129440990","17","2011-04-22 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2010-12-21 00:00:00","C","06D","9","A","2010-12-21 00:00:00","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2010-12-21 00:00:00","C","09C","9","A","2010-12-21 00:00:00","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2012-05-23 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2012-12-04 00:00:00","F","06E","30","","","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2012-09-12 00:00:00","P","04D","24","","","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2012-09-12 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2012-09-12 00:00:00","P","10D","24","","","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2013-02-28 00:00:00","P","02G","16","","","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2013-02-28 00:00:00","P","09B","16","","","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2013-08-29 00:00:00","P","04N","27","","","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2013-08-29 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"40592791","KRISPY PIZZERIA","3","7112","13 AVENUE","11228","7187459618","63","2011-10-19 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40554369","AM","3","7221","3 AVENUE","11209","7189215869","03","2011-08-18 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40554369","AM","3","7221","3 AVENUE","11209","7189215869","03","2011-08-18 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40554834","DEWEY'S FLATIRON","1","210","FIFTH AVENUE","10010","2126857781","03","2011-06-16 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"40554834","DEWEY'S FLATIRON","1","210","FIFTH AVENUE","10010","2126857781","03","2011-06-16 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2011-05-02 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2012-02-21 00:00:00","F","04C","33","","","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2013-08-06 00:00:00","G","06E","52","","","2013-09-13 01:01:06.177000000" +"40573929","ARABELLE","1","37 ","EAST 64 STREET ","10065","2126064600","03","2011-04-09 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2011-11-30 00:00:00","F","99B","28","","","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2012-05-23 00:00:00","P","06A","19","","","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2012-12-04 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2012-12-04 00:00:00","F","06D","30","","","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2013-01-24 00:00:00","U","06D","19","B","2013-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2013-06-26 00:00:00","F","02B","31","","","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2013-06-26 00:00:00","F","06C","31","","","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2011-03-25 00:00:00","U","10F","7","B","2011-03-25 00:00:00","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2010-11-05 00:00:00","P","06D","21","","","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2010-11-05 00:00:00","P","10B","21","","","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2011-05-02 00:00:00","F","06D","35","","","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2011-05-02 00:00:00","F","06E","35","","","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2012-07-19 00:00:00","D","10F","10","A","2012-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2013-08-06 00:00:00","G","04F","52","","","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2013-08-06 00:00:00","G","06C","52","","","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2013-08-06 00:00:00","G","10B","52","","","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2013-08-07 00:00:00","W","04N","38","","","2013-09-13 01:01:06.177000000" +"40585517","EL JAROCHITO MEXICAN DELI & GROCERY","3","195","NEPTUNE AVENUE","11235","7187694447","55","2013-05-09 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40585517","EL JAROCHITO MEXICAN DELI & GROCERY","3","195","NEPTUNE AVENUE","11235","7187694447","55","2013-05-09 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"40596377","LOS PAPIS RESTAURANT","3","77","BRIDGE STREET","11201","7185966965","53","2012-11-29 00:00:00","F","04C","49","C","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2011-12-12 00:00:00","U","04J","18","B","2011-12-12 00:00:00","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2013-03-21 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2010-12-10 00:00:00","C","10D","4","A","2010-12-10 00:00:00","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-03-06 00:00:00","P","02H","27","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-02 00:00:00","F","04L","15","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-11 00:00:00","G","02G","87","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-11 00:00:00","G","06D","87","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-11 00:00:00","G","06E","87","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-11 00:00:00","G","10H","87","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-12 00:00:00","W","08C","21","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2013-03-13 00:00:00","F","02G","46","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2013-03-13 00:00:00","F","06D","46","","","2013-09-13 01:01:06.177000000" +"40611479","JOE'S OF AVE U","3","287","AVENUE U","11223","7184494285","48","2010-09-28 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2010-09-23 00:00:00","P","02G","15","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2010-10-19 00:00:00","F","02G","38","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2010-10-19 00:00:00","F","06E","38","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2011-06-28 00:00:00","U","04M","12","B","2011-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2011-12-02 00:00:00","F","04N","39","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2011-12-02 00:00:00","F","10F","39","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2012-06-12 00:00:00","F","02G","18","C","2012-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2012-06-12 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2012-07-18 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2010-08-04 00:00:00","F","04L","69","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-01-31 00:00:00","F","04H","34","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-07-19 00:00:00","U","02B","17","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2012-06-13 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2012-12-06 00:00:00","P","04L","12","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2010-11-10 00:00:00","C","10F","9","A","2010-11-10 00:00:00","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-01-07 00:00:00","G","02G","59","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-06-24 00:00:00","F","02G","37","","","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2011-03-15 00:00:00","D","10C","4","A","2011-03-15 00:00:00","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2013-07-23 00:00:00","F","04L","36","","","2013-09-13 01:01:06.177000000" +"40604665","HAVANA NY","1","27","WEST 38 STREET","10018","2129440990","17","2011-04-22 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2011-07-11 00:00:00","F","04N","33","","","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2011-07-25 00:00:00","U","04H","21","B","2011-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2011-12-05 00:00:00","P","04L","17","","","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2012-08-16 00:00:00","U","02B","20","B","2012-08-16 00:00:00","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2012-08-16 00:00:00","U","10B","20","B","2012-08-16 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2011-04-06 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2011-04-06 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2011-04-26 00:00:00","F","06E","30","C","2011-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2012-04-26 00:00:00","U","04J","18","B","2012-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2012-10-03 00:00:00","F","09C","28","","","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2013-06-25 00:00:00","P","02B","14","","","2013-09-13 01:01:06.177000000" +"40620325","BOND ST","1","6","BOND STREET","10012","2127772500","49","2013-02-26 00:00:00","P","04L","10","","","2013-09-13 01:01:06.177000000" +"40592791","KRISPY PIZZERIA","3","7112","13 AVENUE","11228","7187459618","63","2011-10-19 00:00:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"40592791","KRISPY PIZZERIA","3","7112","13 AVENUE","11228","7187459618","63","2011-10-19 00:00:00","F","05H","49","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2011-04-26 00:00:00","F","08A","30","C","2011-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2011-09-19 00:00:00","U","04H","9","B","2011-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-05-01 00:00:00","G","02G","31","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-05-01 00:00:00","G","05H","31","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-05-01 00:00:00","G","06E","31","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-09-05 00:00:00","F","08A","29","C","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2013-05-04 00:00:00","F","07A","28","","","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2012-12-04 00:00:00","F","10J","30","","","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2010-09-02 00:00:00","U","02G","10","B","2010-09-02 00:00:00","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2011-03-25 00:00:00","U","06A","7","B","2011-03-25 00:00:00","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2012-09-24 00:00:00","D","08A","10","A","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2013-08-29 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2010-08-03 00:00:00","F","10F","18","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2010-12-01 00:00:00","U","08A","24","B","2010-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2011-04-26 00:00:00","F","06F","30","C","2011-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-04-16 00:00:00","F","05D","33","C","2012-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-05-02 00:00:00","O","10F","2","","","2013-09-13 01:01:06.177000000" +"40596377","LOS PAPIS RESTAURANT","3","77","BRIDGE STREET","11201","7185966965","53","2012-11-29 00:00:00","F","04K","49","C","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40596377","LOS PAPIS RESTAURANT","3","77","BRIDGE STREET","11201","7185966965","53","2012-11-29 00:00:00","F","10B","49","C","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2010-09-23 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2012-04-10 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-01-07 00:00:00","G","02B","59","","","2013-09-13 01:01:06.177000000" +"40568285","LA CARIDAD 78","1","2197-2199","BROADWAY","10024","2128742780","21","2011-11-15 00:00:00","F","04J","49","C","2011-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"40585345","SUSHIYA JAPANESE RESTAURANT","1","28","WEST 56 STREET","10019","2122475756","49","2010-12-03 00:00:00","U","08A","4","B","2010-12-03 00:00:00","2013-09-13 01:01:06.177000000" +"40585345","SUSHIYA JAPANESE RESTAURANT","1","28","WEST 56 STREET","10019","2122475756","49","2012-06-26 00:00:00","D","10F","10","A","2012-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"40585345","SUSHIYA JAPANESE RESTAURANT","1","28","WEST 56 STREET","10019","2122475756","49","2013-06-21 00:00:00","F","04M","35","","","2013-09-13 01:01:06.177000000" +"40616388","GLATT KOSHER FAMILY CHINESE RESTAURANT","3","4305","18 AVENUE","11218","7189728085","20","2011-12-20 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40569633","BOCCA DI BACCO","1","635 ","NINTH AVENUE ","10036","2122622525","03","2011-05-03 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40569633","BOCCA DI BACCO","1","635 ","NINTH AVENUE ","10036","2122622525","03","2011-05-03 00:00:00","F","10D","49","","","2013-09-13 01:01:06.177000000" +"40585517","EL JAROCHITO MEXICAN DELI & GROCERY","3","195","NEPTUNE AVENUE","11235","7187694447","55","2013-05-09 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40584813","HOP WON EXPRESS","1","139","EAST 45 STREET","10017","2126614280","20","2011-04-13 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"40584813","HOP WON EXPRESS","1","139","EAST 45 STREET","10017","2126614280","20","2011-04-13 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40585345","SUSHIYA JAPANESE RESTAURANT","1","28","WEST 56 STREET","10019","2122475756","49","2010-09-21 00:00:00","P","02B","14","","","2013-09-13 01:01:06.177000000" +"40619267","LITTLE VINCENT'S PIZZA RESTAURANT","1","1399","2 AVENUE","10021","2122490120","62","2010-10-21 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40619267","LITTLE VINCENT'S PIZZA RESTAURANT","1","1399","2 AVENUE","10021","2122490120","62","2010-10-21 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2010-12-28 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2010-12-28 00:00:00","P","99B","19","","","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2011-06-02 00:00:00","P","02B","25","","","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2013-03-05 00:00:00","P","02G","13","","","2013-09-13 01:01:06.177000000" +"40620325","BOND ST","1","6","BOND STREET","10012","2127772500","49","2011-06-01 00:00:00","P","06E","19","","","2013-09-13 01:01:06.177000000" +"40620325","BOND ST","1","6","BOND STREET","10012","2127772500","49","2011-10-04 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"40620325","BOND ST","1","6","BOND STREET","10012","2127772500","49","2012-02-21 00:00:00","D","04M","12","A","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"40620325","BOND ST","1","6","BOND STREET","10012","2127772500","49","2013-02-26 00:00:00","P","10B","10","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2010-05-13 15:23:00","U","02G","14","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-04-06 00:00:00","F","03D","92","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-04-06 00:00:00","F","04K","92","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-04-06 00:00:00","F","10F","92","","","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-04-18 00:00:00","U","06E","10","B","2011-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-04-18 00:00:00","U","10H","10","B","2011-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-12-08 00:00:00","O","04M","15","P","2011-12-08 00:00:00","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2013-04-01 00:00:00","F","02B","26","","","2013-09-13 01:01:06.177000000" +"40585345","SUSHIYA JAPANESE RESTAURANT","1","28","WEST 56 STREET","10019","2122475756","49","2013-06-21 00:00:00","F","02B","35","","","2013-09-13 01:01:06.177000000" +"40585517","EL JAROCHITO MEXICAN DELI & GROCERY","3","195","NEPTUNE AVENUE","11235","7187694447","55","2013-05-09 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2011-04-27 00:00:00","F","10B","46","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2011-09-28 00:00:00","U","99B","11","B","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2012-05-17 00:00:00","F","06E","11","C","2012-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-03-25 00:00:00","F","02B","73","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-03-25 00:00:00","F","04N","73","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-03-25 00:00:00","F","08A","73","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-08-30 00:00:00","F","04M","30","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-08-30 00:00:00","F","06A","30","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-08-30 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"40571663","SANTOOR INDIAN RESTAURANT","4","257-05","UNION TURNPIKE","11004","7183433939","44","2013-01-03 00:00:00","F","04K","49","C","2013-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"40571663","SANTOOR INDIAN RESTAURANT","4","257-05","UNION TURNPIKE","11004","7183433939","44","2013-01-03 00:00:00","F","06C","49","C","2013-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2011-02-24 00:00:00","D","10F","12","A","2011-02-24 00:00:00","2013-09-13 01:01:06.177000000" +"40611479","JOE'S OF AVE U","3","287","AVENUE U","11223","7184494285","48","2010-09-28 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2010-09-23 00:00:00","P","09C","15","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-01-07 00:00:00","G","06A","59","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-01-07 00:00:00","G","08A","59","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-01-07 00:00:00","G","10D","59","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-01-31 00:00:00","F","10E","12","C","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"40616388","GLATT KOSHER FAMILY CHINESE RESTAURANT","3","4305","18 AVENUE","11218","7189728085","20","2011-12-20 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2012-03-07 00:00:00","U","02B","13","B","2012-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"40573444","IROHA JAPANESE RESTAURANT","1","152","WEST 49 STREET","10019","2123989049","49","2012-03-07 00:00:00","U","04N","13","B","2012-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"40619267","LITTLE VINCENT'S PIZZA RESTAURANT","1","1399","2 AVENUE","10021","2122490120","62","2010-10-21 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2011-06-02 00:00:00","P","99B","25","","","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2011-08-17 00:00:00","U","10B","16","B","2011-08-17 00:00:00","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2012-03-06 00:00:00","D","06D","11","A","2012-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2011-11-30 00:00:00","F","04M","28","","","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2011-12-15 00:00:00","U","08A","14","B","2011-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2012-05-23 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2012-06-07 00:00:00","D","02B","13","A","2012-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2011-09-21 00:00:00","D","10I","8","A","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"40592791","KRISPY PIZZERIA","3","7112","13 AVENUE","11228","7187459618","63","2011-10-19 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40592791","KRISPY PIZZERIA","3","7112","13 AVENUE","11228","7187459618","63","2011-10-19 00:00:00","F","10A","49","","","2013-09-13 01:01:06.177000000" +"40596377","LOS PAPIS RESTAURANT","3","77","BRIDGE STREET","11201","7185966965","53","2012-11-29 00:00:00","F","04H","49","C","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40596377","LOS PAPIS RESTAURANT","3","77","BRIDGE STREET","11201","7185966965","53","2012-11-29 00:00:00","F","06F","49","C","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40596377","LOS PAPIS RESTAURANT","3","77","BRIDGE STREET","11201","7185966965","53","2012-11-29 00:00:00","F","08A","49","C","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40662783","SUGIYAMA RESTAURANT","1","251","WEST 55 STREET","10019","2129560670","49","2012-01-06 00:00:00","D","10F","5","A","2012-01-06 00:00:00","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2011-11-30 00:00:00","F","04L","28","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2011-04-27 00:00:00","F","04L","46","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2011-09-28 00:00:00","U","10F","11","B","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2012-10-05 00:00:00","F","10F","20","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-03-25 00:00:00","F","08C","73","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-04-03 00:00:00","F","02B","27","C","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-04-03 00:00:00","F","08A","27","C","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"40611479","JOE'S OF AVE U","3","287","AVENUE U","11223","7184494285","48","2010-09-28 00:00:00","F","22C","49","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2010-09-23 00:00:00","P","10A","15","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2010-09-23 00:00:00","P","10B","15","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-06-24 00:00:00","F","09B","37","","","2013-09-13 01:01:06.177000000" +"40665792","HATSUHANA","1","237","PARK AVENUE","10017","2126613400","49","2010-05-12 14:34:00","F","06E","57","","","2013-09-13 01:01:06.177000000" +"40616388","GLATT KOSHER FAMILY CHINESE RESTAURANT","3","4305","18 AVENUE","11218","7189728085","20","2011-12-20 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40616388","GLATT KOSHER FAMILY CHINESE RESTAURANT","3","4305","18 AVENUE","11218","7189728085","20","2011-12-20 00:00:00","F","10D","49","","","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2011-02-08 00:00:00","F","02B","27","","","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2012-07-31 00:00:00","F","10B","23","","","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2013-03-21 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2010-08-03 00:00:00","F","02G","18","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2010-12-01 00:00:00","U","04L","24","B","2010-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2011-04-06 00:00:00","P","04K","21","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2011-04-06 00:00:00","P","10B","21","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-03-26 00:00:00","F","08A","41","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-09-05 00:00:00","F","04L","29","C","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40581298","EL FARO RESTAURANT","1","823","GREENWICH STREET","10014","2129298210","53","2012-04-20 00:00:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"40581298","EL FARO RESTAURANT","1","823","GREENWICH STREET","10014","2129298210","53","2012-04-20 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2011-02-08 00:00:00","F","09C","27","","","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2011-07-25 00:00:00","U","10B","21","B","2011-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2011-12-12 00:00:00","U","02B","18","B","2011-12-12 00:00:00","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2011-12-12 00:00:00","U","10B","18","B","2011-12-12 00:00:00","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2012-07-31 00:00:00","F","04N","23","","","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2013-03-21 00:00:00","P","10B","21","","","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2010-12-28 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2012-03-06 00:00:00","D","08C","11","A","2012-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2010-10-04 00:00:00","C","10F","8","A","2010-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2011-10-13 00:00:00","F","04N","28","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2011-11-23 00:00:00","W","08A","13","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2011-03-22 00:00:00","G","04K","51","","","2013-09-13 01:01:06.177000000" +"40584813","HOP WON EXPRESS","1","139","EAST 45 STREET","10017","2126614280","20","2011-04-13 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"40584813","HOP WON EXPRESS","1","139","EAST 45 STREET","10017","2126614280","20","2011-04-13 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2010-12-06 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2011-04-27 00:00:00","F","04M","46","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2012-04-24 00:00:00","F","05D","26","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2012-04-24 00:00:00","F","10F","26","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2012-10-15 00:00:00","U","02G","15","B","2012-10-15 00:00:00","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-03-25 00:00:00","F","06A","73","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-03-25 00:00:00","F","06B","73","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-04-03 00:00:00","F","06C","27","C","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2011-03-22 00:00:00","G","08A","51","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2011-03-22 00:00:00","G","10F","51","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2013-05-03 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"40585345","SUSHIYA JAPANESE RESTAURANT","1","28","WEST 56 STREET","10019","2122475756","49","2010-09-21 00:00:00","P","06E","14","","","2013-09-13 01:01:06.177000000" +"40585345","SUSHIYA JAPANESE RESTAURANT","1","28","WEST 56 STREET","10019","2122475756","49","2012-06-26 00:00:00","D","02G","10","A","2012-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"40665792","HATSUHANA","1","237","PARK AVENUE","10017","2126613400","49","2010-05-12 14:34:00","F","10B","57","","","2013-09-13 01:01:06.177000000" +"40665792","HATSUHANA","1","237","PARK AVENUE","10017","2126613400","49","2011-11-15 00:00:00","D","02G","13","A","2011-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"40611479","JOE'S OF AVE U","3","287","AVENUE U","11223","7184494285","48","2010-09-28 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40611479","JOE'S OF AVE U","3","287","AVENUE U","11223","7184494285","48","2010-09-28 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2012-04-10 00:00:00","F","06E","31","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2012-04-10 00:00:00","F","10B","31","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2012-05-02 00:00:00","U","08A","2","B","2012-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2012-05-02 00:00:00","U","09B","2","B","2012-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-01-07 00:00:00","G","04K","59","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-01-07 00:00:00","G","06C","59","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-01-31 00:00:00","F","02G","12","C","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-06-24 00:00:00","F","04J","37","","","2013-09-13 01:01:06.177000000" +"40616388","GLATT KOSHER FAMILY CHINESE RESTAURANT","3","4305","18 AVENUE","11218","7189728085","20","2011-12-20 00:00:00","F","04O","49","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2011-04-21 00:00:00","D","02G","12","A","2011-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2011-04-21 00:00:00","D","99B","12","A","2011-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2012-04-10 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2012-04-10 00:00:00","F","04K","31","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-01-07 00:00:00","G","06D","59","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-01-09 00:00:00","O","","","P","2013-01-09 00:00:00","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-06-24 00:00:00","F","04H","37","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-06-24 00:00:00","F","08A","37","","","2013-09-13 01:01:06.177000000" +"40660138","NOBU NEXT DOOR","1","105","HUDSON STREET","10013","2123349869","49","2011-05-11 00:00:00","D","10F","4","A","2011-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2012-03-20 00:00:00","U","06C","17","B","2012-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2012-10-01 00:00:00","G","08A","45","","","2013-09-13 01:01:06.177000000" +"40616388","GLATT KOSHER FAMILY CHINESE RESTAURANT","3","4305","18 AVENUE","11218","7189728085","20","2011-12-20 00:00:00","F","05H","49","","","2013-09-13 01:01:06.177000000" +"40616388","GLATT KOSHER FAMILY CHINESE RESTAURANT","3","4305","18 AVENUE","11218","7189728085","20","2011-12-20 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"40690019","MODERN GOURMET","1","793","BROADWAY","10003","2126770047","03","2010-08-05 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"40690019","MODERN GOURMET","1","793","BROADWAY","10003","2126770047","03","2010-08-05 00:00:00","F","04O","49","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2010-12-06 00:00:00","P","04C","19","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2011-09-28 00:00:00","U","10H","11","B","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-08-30 00:00:00","F","05D","30","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-08-30 00:00:00","F","10B","30","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2011-03-22 00:00:00","G","04H","51","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2011-08-02 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2012-02-22 00:00:00","D","10F","11","A","2012-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2012-07-20 00:00:00","P","06D","23","","","2013-09-13 01:01:06.177000000" +"40619267","LITTLE VINCENT'S PIZZA RESTAURANT","1","1399","2 AVENUE","10021","2122490120","62","2010-10-21 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2011-01-14 00:00:00","D","10F","3","A","2011-01-14 00:00:00","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2011-06-02 00:00:00","P","10F","25","","","2013-09-13 01:01:06.177000000" +"40620325","BOND ST","1","6","BOND STREET","10012","2127772500","49","2012-02-21 00:00:00","D","10F","12","A","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"40662783","SUGIYAMA RESTAURANT","1","251","WEST 55 STREET","10019","2129560670","49","2011-04-29 00:00:00","P","04C","16","","","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2011-11-30 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2011-11-30 00:00:00","F","10H","28","","","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2012-12-04 00:00:00","F","10B","30","","","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2013-01-24 00:00:00","U","06C","19","B","2013-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2011-03-01 00:00:00","P","06F","13","","","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2011-09-21 00:00:00","D","09C","8","A","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2011-09-21 00:00:00","D","10D","8","A","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"40619267","LITTLE VINCENT'S PIZZA RESTAURANT","1","1399","2 AVENUE","10021","2122490120","62","2010-10-21 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"40619267","LITTLE VINCENT'S PIZZA RESTAURANT","1","1399","2 AVENUE","10021","2122490120","62","2010-10-21 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2012-09-12 00:00:00","P","04L","24","","","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2012-09-24 00:00:00","D","04L","10","A","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"40692073","MEZCAL'S RESTAURANT","3","522","COURT STREET","11231","7182372230","55","2011-09-21 00:00:00","F","04L","49","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"40692073","MEZCAL'S RESTAURANT","3","522","COURT STREET","11231","7182372230","55","2011-09-21 00:00:00","F","06C","49","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2010-12-28 00:00:00","P","09C","19","","","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2011-06-02 00:00:00","P","06A","25","","","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2011-06-02 00:00:00","P","10D","25","","","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2012-03-06 00:00:00","D","10F","11","A","2012-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2013-03-05 00:00:00","P","06F","13","","","2013-09-13 01:01:06.177000000" +"40665792","HATSUHANA","1","237","PARK AVENUE","10017","2126613400","49","2010-05-12 14:34:00","F","04M","57","","","2013-09-13 01:01:06.177000000" +"40665792","HATSUHANA","1","237","PARK AVENUE","10017","2126613400","49","2010-06-02 12:55:00","U","06D","13","","","2013-09-13 01:01:06.177000000" +"40665792","HATSUHANA","1","237","PARK AVENUE","10017","2126613400","49","2010-10-12 00:00:00","C","02B","7","A","2010-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2010-10-20 00:00:00","P","06A","22","","","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2010-12-20 00:00:00","F","04A","28","C","2010-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2010-12-20 00:00:00","F","10H","28","C","2010-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2012-07-05 00:00:00","D","10B","11","A","2012-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2012-12-19 00:00:00","P","06A","20","","","2013-09-13 01:01:06.177000000" +"40699160","THE COUNTRY CAFE","1","40","WALL STREET","10005","2123494290","03","2012-06-15 00:00:00","F","02G","49","C","2012-06-15 00:00:00","2013-09-13 01:01:06.177000000" +"40670353","DUKE'S","1","560","3 AVENUE","10016","2129495400","03","2011-08-01 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2011-11-21 00:00:00","G","08A","45","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2011-11-28 00:00:00","O","08A","11","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2012-10-01 00:00:00","G","04L","45","","","2013-09-13 01:01:06.177000000" +"40687266","BARTOW PIZZA","2","2045","BARTOW AVE","10475","7186717898","62","2010-08-25 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40687266","BARTOW PIZZA","2","2045","BARTOW AVE","10475","7186717898","62","2010-08-25 00:00:00","F","10A","49","","","2013-09-13 01:01:06.177000000" +"40687266","BARTOW PIZZA","2","2045","BARTOW AVE","10475","7186717898","62","2010-08-25 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2011-07-11 00:00:00","F","02B","33","","","2013-09-13 01:01:06.177000000" +"40690019","MODERN GOURMET","1","793","BROADWAY","10003","2126770047","03","2010-08-05 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40692073","MEZCAL'S RESTAURANT","3","522","COURT STREET","11231","7182372230","55","2011-09-21 00:00:00","F","05D","49","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2012-01-10 00:00:00","U","10F","21","B","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2012-07-24 00:00:00","F","10B","36","","","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2013-01-08 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2010-12-15 00:00:00","F","04L","35","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2010-12-15 00:00:00","F","10F","35","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2010-12-15 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2011-03-22 00:00:00","G","04L","51","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2011-08-02 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2012-02-22 00:00:00","D","10H","11","A","2012-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2013-05-03 00:00:00","P","06C","24","","","2013-09-13 01:01:06.177000000" +"40604665","HAVANA NY","1","27","WEST 38 STREET","10018","2129440990","17","2011-04-22 00:00:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2011-05-12 00:00:00","D","06E","13","A","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2011-09-12 00:00:00","P","04C","27","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-04-03 00:00:00","F","04M","27","C","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2011-04-27 00:00:00","F","02G","46","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2011-04-27 00:00:00","F","04H","46","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2011-04-27 00:00:00","F","06E","46","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2011-04-27 00:00:00","F","08A","46","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2011-04-27 00:00:00","F","09B","46","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2011-05-12 00:00:00","D","02G","13","A","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2011-09-12 00:00:00","P","04N","27","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2012-04-24 00:00:00","F","02G","26","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2012-04-24 00:00:00","F","10H","26","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2012-05-17 00:00:00","F","06A","11","C","2012-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2012-10-05 00:00:00","F","04N","20","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-03-25 00:00:00","F","02G","73","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-04-03 00:00:00","F","04N","27","C","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-08-30 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-07-11 00:00:00","F","02H","29","C","2011-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-10-25 00:00:00","F","04L","47","","","2013-09-13 01:01:06.177000000" +"40710411","DONATO'S PIZZERIA RESTAURANT","4","50-22","39 AVENUE","11377","7185074591","63","2012-12-24 00:00:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"40710411","DONATO'S PIZZERIA RESTAURANT","4","50-22","39 AVENUE","11377","7185074591","63","2012-12-24 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"40710411","DONATO'S PIZZERIA RESTAURANT","4","50-22","39 AVENUE","11377","7185074591","63","2012-12-24 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2012-01-05 00:00:00","F","06F","29","","","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2012-02-03 00:00:00","D","02B","11","A","2012-02-03 00:00:00","2013-09-13 01:01:06.177000000" +"40699160","THE COUNTRY CAFE","1","40","WALL STREET","10005","2123494290","03","2012-06-15 00:00:00","F","06F","49","C","2012-06-15 00:00:00","2013-09-13 01:01:06.177000000" +"40665792","HATSUHANA","1","237","PARK AVENUE","10017","2126613400","49","2010-05-12 14:34:00","F","06C","57","","","2013-09-13 01:01:06.177000000" +"40665792","HATSUHANA","1","237","PARK AVENUE","10017","2126613400","49","2010-06-02 12:55:00","U","02B","13","","","2013-09-13 01:01:06.177000000" +"40665792","HATSUHANA","1","237","PARK AVENUE","10017","2126613400","49","2011-11-15 00:00:00","D","06D","13","A","2011-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"40670353","DUKE'S","1","560","3 AVENUE","10016","2129495400","03","2011-08-01 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2011-07-05 00:00:00","D","06F","5","A","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2011-11-29 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2011-11-29 00:00:00","P","10E","19","","","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2012-01-10 00:00:00","U","06B","21","B","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2012-07-24 00:00:00","F","08C","36","","","2013-09-13 01:01:06.177000000" +"40717261","HONG FUNG BAKERY","3","5124","8 AVENUE","11220","7188546290","08","2010-04-13 11:48:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2011-10-13 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2011-10-13 00:00:00","F","10I","28","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2011-11-23 00:00:00","W","04M","13","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2012-10-01 00:00:00","G","06D","45","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2012-10-15 00:00:00","U","02B","19","B","2012-10-15 00:00:00","2013-09-13 01:01:06.177000000" +"40611479","JOE'S OF AVE U","3","287","AVENUE U","11223","7184494285","48","2010-09-28 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2011-04-21 00:00:00","D","10F","12","A","2011-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-01-07 00:00:00","G","05D","59","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-06-24 00:00:00","F","04K","37","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2013-06-24 00:00:00","F","10B","37","","","2013-09-13 01:01:06.177000000" +"40690019","MODERN GOURMET","1","793","BROADWAY","10003","2126770047","03","2010-08-05 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2010-09-28 00:00:00","F","06F","31","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-03-17 00:00:00","U","06C","12","B","2011-03-17 00:00:00","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-03-17 00:00:00","U","22C","12","B","2011-03-17 00:00:00","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-06-27 00:00:00","F","04N","30","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-06-27 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-07-11 00:00:00","F","10F","29","C","2011-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-10-25 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2012-03-20 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2012-04-10 00:00:00","D","02G","12","A","2012-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"40692073","MEZCAL'S RESTAURANT","3","522","COURT STREET","11231","7182372230","55","2011-09-21 00:00:00","F","02B","49","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2011-03-22 00:00:00","G","02B","51","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2011-08-02 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2012-01-24 00:00:00","P","02B","16","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2012-01-24 00:00:00","P","10A","16","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2012-08-01 00:00:00","U","10F","12","B","2012-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"40710411","DONATO'S PIZZERIA RESTAURANT","4","50-22","39 AVENUE","11377","7185074591","63","2012-12-24 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40616388","GLATT KOSHER FAMILY CHINESE RESTAURANT","3","4305","18 AVENUE","11218","7189728085","20","2011-12-20 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40720283","BANJARA INDIAN RESTAURANT","1","344","EAST 6 STREET","10003","2124775956","44","2012-10-02 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2010-09-22 00:00:00","F","04N","41","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2010-09-22 00:00:00","F","05D","41","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2011-04-13 00:00:00","D","10F","13","A","2011-04-13 00:00:00","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2012-03-26 00:00:00","P","02G","10","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2012-10-18 00:00:00","G","06C","95","","","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2011-12-09 00:00:00","D","08A","11","A","2011-12-09 00:00:00","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2011-12-09 00:00:00","D","10F","11","A","2011-12-09 00:00:00","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2013-05-24 00:00:00","F","06F","37","","","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2013-05-24 00:00:00","F","08A","37","","","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2013-05-24 00:00:00","F","10F","37","","","2013-09-13 01:01:06.177000000" +"40619267","LITTLE VINCENT'S PIZZA RESTAURANT","1","1399","2 AVENUE","10021","2122490120","62","2010-10-21 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2011-06-02 00:00:00","P","06E","25","","","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2011-08-17 00:00:00","U","02G","16","B","2011-08-17 00:00:00","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2011-08-17 00:00:00","U","06D","16","B","2011-08-17 00:00:00","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2012-03-06 00:00:00","D","10B","11","A","2012-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"40620325","BOND ST","1","6","BOND STREET","10012","2127772500","49","2011-08-23 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40717261","HONG FUNG BAKERY","3","5124","8 AVENUE","11220","7188546290","08","2010-04-13 11:48:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2011-08-18 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"40662783","SUGIYAMA RESTAURANT","1","251","WEST 55 STREET","10019","2129560670","49","2011-04-29 00:00:00","P","02G","16","","","2013-09-13 01:01:06.177000000" +"40718835","TRIOMPHE","1","49","WEST 44 STREET","10036","2124534033","03","2013-03-04 00:00:00","F","06E","36","","","2013-09-13 01:01:06.177000000" +"40718835","TRIOMPHE","1","49","WEST 44 STREET","10036","2124534033","03","2013-03-27 00:00:00","U","10B","10","B","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2012-02-03 00:00:00","D","09B","11","A","2012-02-03 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2012-12-19 00:00:00","P","02B","20","","","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2013-04-02 00:00:00","F","06G","44","","","2013-09-13 01:01:06.177000000" +"40720283","BANJARA INDIAN RESTAURANT","1","344","EAST 6 STREET","10003","2124775956","44","2012-10-02 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2010-09-22 00:00:00","F","06C","41","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2012-03-26 00:00:00","P","10F","10","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2012-04-05 00:00:00","U","04H","9","B","2012-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2010-11-18 00:00:00","C","02G","7","A","2010-11-18 00:00:00","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2012-04-25 00:00:00","F","02G","24","C","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2012-08-09 00:00:00","U","04L","8","B","2012-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2013-04-15 00:00:00","P","10F","12","","","2013-09-13 01:01:06.177000000" +"40726247","OKI JAPANESE RESTARUANT","4","45-11","QUEENS BOULEVARD","11104","7187293666","49","2011-12-28 00:00:00","F","02B","38","","","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2010-10-27 00:00:00","P","10B","24","","","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2011-07-05 00:00:00","D","10B","10","A","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2011-11-21 00:00:00","P","06E","25","","","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2013-05-24 00:00:00","F","04H","37","","","2013-09-13 01:01:06.177000000" +"40665792","HATSUHANA","1","237","PARK AVENUE","10017","2126613400","49","2010-05-12 14:34:00","F","04A","57","","","2013-09-13 01:01:06.177000000" +"40665792","HATSUHANA","1","237","PARK AVENUE","10017","2126613400","49","2010-05-12 14:34:00","F","08A","57","","","2013-09-13 01:01:06.177000000" +"40665792","HATSUHANA","1","237","PARK AVENUE","10017","2126613400","49","2010-05-12 14:34:00","F","10G","57","","","2013-09-13 01:01:06.177000000" +"40687266","BARTOW PIZZA","2","2045","BARTOW AVE","10475","7186717898","62","2010-08-25 00:00:00","F","20D","49","","","2013-09-13 01:01:06.177000000" +"40665792","HATSUHANA","1","237","PARK AVENUE","10017","2126613400","49","2010-05-12 14:34:00","F","04I","57","","","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2011-04-22 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2013-03-06 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2013-04-11 00:00:00","F","02G","26","C","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2011-01-18 00:00:00","P","04A","24","","","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2011-01-18 00:00:00","P","10A","24","","","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2011-09-08 00:00:00","D","04L","9","A","2011-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2012-01-17 00:00:00","D","02B","10","A","2012-01-17 00:00:00","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2012-05-22 00:00:00","D","02G","12","A","2012-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2013-05-22 00:00:00","F","06A","25","","","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2013-05-22 00:00:00","F","10B","25","","","2013-09-13 01:01:06.177000000" +"40690019","MODERN GOURMET","1","793","BROADWAY","10003","2126770047","03","2010-08-05 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"40704853","B.B. KINGS","1","243","WEST 42 STREET","10036","2129971144","03","2012-04-10 00:00:00","F","04N","49","C","2012-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"40692073","MEZCAL'S RESTAURANT","3","522","COURT STREET","11231","7182372230","55","2011-09-21 00:00:00","F","06D","49","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"40692073","MEZCAL'S RESTAURANT","3","522","COURT STREET","11231","7182372230","55","2011-09-21 00:00:00","F","09C","49","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"40692073","MEZCAL'S RESTAURANT","3","522","COURT STREET","11231","7182372230","55","2011-09-21 00:00:00","F","10F","49","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"40670353","DUKE'S","1","560","3 AVENUE","10016","2129495400","03","2011-08-01 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2011-02-09 00:00:00","U","06D","12","B","2011-02-09 00:00:00","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2011-07-06 00:00:00","P","10B","24","","","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2013-05-30 00:00:00","P","04H","22","","","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2011-11-17 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2012-04-12 00:00:00","P","04J","18","","","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2013-04-15 00:00:00","P","10B","12","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2011-10-13 00:00:00","F","04L","28","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2011-11-21 00:00:00","G","04M","45","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2011-11-28 00:00:00","O","04M","11","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2011-11-28 00:00:00","O","10A","11","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2012-02-22 00:00:00","P","02B","16","","","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2012-01-17 00:00:00","D","09C","6","A","2012-01-17 00:00:00","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2012-05-23 00:00:00","D","10F","13","A","2012-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2013-05-29 00:00:00","P","06C","23","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2010-10-04 00:00:00","C","06C","8","A","2010-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2011-10-13 00:00:00","F","02B","28","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2011-10-13 00:00:00","F","04M","28","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2011-11-21 00:00:00","G","02G","45","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2011-11-21 00:00:00","G","06C","45","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2011-11-23 00:00:00","W","10B","13","","","2013-09-13 01:01:06.177000000" +"40726247","OKI JAPANESE RESTARUANT","4","45-11","QUEENS BOULEVARD","11104","7187293666","49","2011-01-18 00:00:00","D","10B","3","A","2011-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-03-17 00:00:00","U","02B","12","B","2011-03-17 00:00:00","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-10-25 00:00:00","F","02B","47","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-10-25 00:00:00","F","04N","47","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2012-03-20 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2013-08-01 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"40710411","DONATO'S PIZZERIA RESTAURANT","4","50-22","39 AVENUE","11377","7185074591","63","2012-12-24 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2012-03-20 00:00:00","U","02G","17","B","2012-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2012-03-20 00:00:00","U","06D","17","B","2012-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2012-10-04 00:00:00","O","10F","2","P","2012-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2012-10-15 00:00:00","U","04M","19","B","2012-10-15 00:00:00","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2010-12-15 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2010-12-15 00:00:00","F","08A","35","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2011-03-30 00:00:00","O","10D","9","C","2011-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2011-08-02 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2011-08-25 00:00:00","F","04N","13","C","2011-08-25 00:00:00","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2011-09-07 00:00:00","U","04L","17","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2011-09-07 00:00:00","U","09C","17","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2012-01-24 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2012-02-22 00:00:00","D","04C","11","A","2012-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2012-07-20 00:00:00","P","02B","23","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2012-07-20 00:00:00","P","10B","23","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-03-21 00:00:00","F","10F","46","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2013-03-06 00:00:00","F","10H","31","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2013-03-06 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40712055","JNS PIZZA","1","2032","LEXINGTON AVENUE","10035","2124260415","62","2010-10-18 00:00:00","G","10H","49","","","2013-09-13 01:01:06.177000000" +"40738001","PIZZA BAGEL BURGER","3","1117","MC DONALD AVENUE","11230","7183772952","03","2013-09-04 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2011-04-27 00:00:00","F","04N","46","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2011-04-27 00:00:00","F","10F","46","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2011-09-12 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2012-10-05 00:00:00","F","04H","20","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2012-10-15 00:00:00","U","10B","15","B","2012-10-15 00:00:00","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-03-25 00:00:00","F","04J","73","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-03-25 00:00:00","F","10F","73","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2011-03-22 00:00:00","G","10B","51","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2011-03-30 00:00:00","O","10F","9","C","2011-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2011-08-25 00:00:00","F","08C","13","C","2011-08-25 00:00:00","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2012-07-20 00:00:00","P","04N","23","","","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2010-12-22 00:00:00","F","08C","35","","","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2012-05-31 00:00:00","F","10F","21","","","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2012-06-12 00:00:00","D","10A","13","A","2012-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2012-12-01 00:00:00","F","03A","32","","","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2012-12-26 00:00:00","U","04L","13","B","2012-12-26 00:00:00","2013-09-13 01:01:06.177000000" +"40733383","HARU","1","433","AMSTERDAM AVENUE","10024","2125795655","49","2012-04-19 00:00:00","D","02G","9","A","2012-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2013-05-29 00:00:00","P","10B","23","","","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2010-10-20 00:00:00","P","10A","22","","","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2010-10-20 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2013-04-19 00:00:00","U","04C","8","","","2013-09-13 01:01:06.177000000" +"40699160","THE COUNTRY CAFE","1","40","WALL STREET","10005","2123494290","03","2012-06-15 00:00:00","F","04H","49","C","2012-06-15 00:00:00","2013-09-13 01:01:06.177000000" +"40717261","HONG FUNG BAKERY","3","5124","8 AVENUE","11220","7188546290","08","2010-04-13 11:48:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"40717261","HONG FUNG BAKERY","3","5124","8 AVENUE","11220","7188546290","08","2010-04-13 11:48:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40718835","TRIOMPHE","1","49","WEST 44 STREET","10036","2124534033","03","2012-08-13 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"40718835","TRIOMPHE","1","49","WEST 44 STREET","10036","2124534033","03","2013-03-04 00:00:00","F","04H","36","","","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2011-11-29 00:00:00","P","06A","19","","","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2012-07-24 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2010-09-22 00:00:00","F","06F","41","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2012-04-05 00:00:00","U","10B","9","B","2012-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2012-10-18 00:00:00","G","04N","95","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2012-10-22 00:00:00","O","08A","12","P","2012-10-22 00:00:00","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2012-11-26 00:00:00","D","10F","4","A","2012-11-26 00:00:00","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2013-06-19 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2013-06-19 00:00:00","F","06D","28","","","2013-09-13 01:01:06.177000000" +"40687266","BARTOW PIZZA","2","2045","BARTOW AVE","10475","7186717898","62","2010-08-25 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"40687266","BARTOW PIZZA","2","2045","BARTOW AVE","10475","7186717898","62","2010-08-25 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2011-11-21 00:00:00","P","04C","25","","","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2011-12-09 00:00:00","D","04L","11","A","2011-12-09 00:00:00","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2012-05-02 00:00:00","D","10F","13","A","2012-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"40690019","MODERN GOURMET","1","793","BROADWAY","10003","2126770047","03","2010-08-05 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40690019","MODERN GOURMET","1","793","BROADWAY","10003","2126770047","03","2010-08-05 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-07-11 00:00:00","F","10B","29","C","2011-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-10-25 00:00:00","F","10F","47","","","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2012-05-22 00:00:00","D","06A","12","A","2012-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2012-08-20 00:00:00","D","09B","12","A","2012-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2013-08-01 00:00:00","F","04L","35","","","2013-09-13 01:01:06.177000000" +"40710411","DONATO'S PIZZERIA RESTAURANT","4","50-22","39 AVENUE","11377","7185074591","63","2012-12-24 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40750917","SHIKI","3","1863-1867 ","86 STREET ","11214","7188371586","49","2011-01-06 00:00:00","C","06E","9","A","2011-01-06 00:00:00","2013-09-13 01:01:06.177000000" +"40750917","SHIKI","3","1863-1867 ","86 STREET ","11214","7188371586","49","2011-01-06 00:00:00","C","10F","9","A","2011-01-06 00:00:00","2013-09-13 01:01:06.177000000" +"40750917","SHIKI","3","1863-1867 ","86 STREET ","11214","7188371586","49","2013-03-16 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"40692073","MEZCAL'S RESTAURANT","3","522","COURT STREET","11231","7182372230","55","2011-09-21 00:00:00","F","06F","49","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"40692073","MEZCAL'S RESTAURANT","3","522","COURT STREET","11231","7182372230","55","2011-09-21 00:00:00","F","08A","49","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"40712055","JNS PIZZA","1","2032","LEXINGTON AVENUE","10035","2124260415","62","2010-10-18 00:00:00","G","08C","49","","","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2012-04-12 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"40726247","OKI JAPANESE RESTARUANT","4","45-11","QUEENS BOULEVARD","11104","7187293666","49","2011-12-28 00:00:00","F","06C","38","","","2013-09-13 01:01:06.177000000" +"40662783","SUGIYAMA RESTAURANT","1","251","WEST 55 STREET","10019","2129560670","49","2011-06-22 00:00:00","U","04K","9","B","2011-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"40662783","SUGIYAMA RESTAURANT","1","251","WEST 55 STREET","10019","2129560670","49","2011-06-22 00:00:00","U","10B","9","B","2011-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"40662783","SUGIYAMA RESTAURANT","1","251","WEST 55 STREET","10019","2129560670","49","2012-01-06 00:00:00","D","08C","5","A","2012-01-06 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2011-04-08 00:00:00","P","10H","15","","","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2011-06-30 00:00:00","U","10B","10","B","2011-06-30 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2012-01-05 00:00:00","F","04H","29","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-03-21 00:00:00","F","10D","46","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-03-21 00:00:00","F","10E","46","","","2013-09-13 01:01:06.177000000" +"40750917","SHIKI","3","1863-1867 ","86 STREET ","11214","7188371586","49","2013-03-16 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2012-06-25 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2013-04-02 00:00:00","F","04C","44","","","2013-09-13 01:01:06.177000000" +"40699160","THE COUNTRY CAFE","1","40","WALL STREET","10005","2123494290","03","2012-06-15 00:00:00","F","04J","49","C","2012-06-15 00:00:00","2013-09-13 01:01:06.177000000" +"40699160","THE COUNTRY CAFE","1","40","WALL STREET","10005","2123494290","03","2012-06-15 00:00:00","F","05D","49","C","2012-06-15 00:00:00","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-04-12 00:00:00","D","20A","7","A","2011-04-12 00:00:00","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2013-03-06 00:00:00","F","08C","31","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2013-04-11 00:00:00","F","05D","26","C","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"40754765","MORRIS PARK PIZZA","2","656","MORRIS PARK AVENUE","10462","7189319191","62","2012-03-07 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2010-10-20 00:00:00","P","04C","22","","","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2012-01-05 00:00:00","F","06E","29","","","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2012-01-05 00:00:00","F","10B","29","","","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2012-06-25 00:00:00","P","06E","23","","","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2012-07-05 00:00:00","D","06D","11","A","2012-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2011-08-02 00:00:00","D","10B","6","A","2011-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2012-01-04 00:00:00","D","06E","12","A","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2012-05-31 00:00:00","F","06A","21","","","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2012-05-31 00:00:00","F","08A","21","","","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2013-05-30 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"40665792","HATSUHANA","1","237","PARK AVENUE","10017","2126613400","49","2010-05-12 14:34:00","F","02B","57","","","2013-09-13 01:01:06.177000000" +"40718835","TRIOMPHE","1","49","WEST 44 STREET","10036","2124534033","03","2012-08-13 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"40718835","TRIOMPHE","1","49","WEST 44 STREET","10036","2124534033","03","2013-03-04 00:00:00","F","05D","36","","","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2011-11-29 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2012-01-10 00:00:00","U","02B","21","B","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2012-07-24 00:00:00","F","02B","36","","","2013-09-13 01:01:06.177000000" +"40733383","HARU","1","433","AMSTERDAM AVENUE","10024","2125795655","49","2012-04-19 00:00:00","D","10B","9","A","2012-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2011-06-21 00:00:00","F","06C","45","","","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2011-06-21 00:00:00","F","10A","45","","","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2011-06-21 00:00:00","F","10B","45","","","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2011-08-25 00:00:00","U","02G","12","B","2011-08-25 00:00:00","2013-09-13 01:01:06.177000000" +"40720283","BANJARA INDIAN RESTAURANT","1","344","EAST 6 STREET","10003","2124775956","44","2012-10-02 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2010-09-22 00:00:00","F","08A","41","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2012-10-18 00:00:00","G","06D","95","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2012-10-18 00:00:00","G","06E","95","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2013-06-19 00:00:00","F","06F","28","","","2013-09-13 01:01:06.177000000" +"40704853","B.B. KINGS","1","243","WEST 42 STREET","10036","2129971144","03","2012-04-10 00:00:00","F","06D","49","C","2012-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"40704853","B.B. KINGS","1","243","WEST 42 STREET","10036","2129971144","03","2012-04-10 00:00:00","F","08A","49","C","2012-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"40704853","B.B. KINGS","1","243","WEST 42 STREET","10036","2129971144","03","2012-04-10 00:00:00","F","10B","49","C","2012-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2012-01-10 00:00:00","U","04L","21","B","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2010-10-27 00:00:00","P","06D","24","","","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2011-07-05 00:00:00","D","06C","10","A","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2013-05-24 00:00:00","F","04M","37","","","2013-09-13 01:01:06.177000000" +"40670353","DUKE'S","1","560","3 AVENUE","10016","2129495400","03","2011-08-01 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2012-10-15 00:00:00","U","04H","19","B","2012-10-15 00:00:00","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2012-01-10 00:00:00","U","08C","21","B","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2012-07-24 00:00:00","F","04L","36","","","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2012-07-24 00:00:00","F","10F","36","","","2013-09-13 01:01:06.177000000" +"40704853","B.B. KINGS","1","243","WEST 42 STREET","10036","2129971144","03","2012-04-10 00:00:00","F","02G","49","C","2012-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"40704853","B.B. KINGS","1","243","WEST 42 STREET","10036","2129971144","03","2012-04-10 00:00:00","F","04H","49","C","2012-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"40704853","B.B. KINGS","1","243","WEST 42 STREET","10036","2129971144","03","2012-04-10 00:00:00","F","09A","49","C","2012-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2010-09-28 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2010-09-28 00:00:00","F","06C","31","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-06-27 00:00:00","F","04A","30","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-06-27 00:00:00","F","04O","30","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-10-25 00:00:00","F","04H","47","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-10-25 00:00:00","F","05D","47","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-11-17 00:00:00","U","04L","8","B","2011-11-17 00:00:00","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2012-03-20 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"40712055","JNS PIZZA","1","2032","LEXINGTON AVENUE","10035","2124260415","62","2010-10-18 00:00:00","G","05D","49","","","2013-09-13 01:01:06.177000000" +"40712055","JNS PIZZA","1","2032","LEXINGTON AVENUE","10035","2124260415","62","2010-10-18 00:00:00","G","10D","49","","","2013-09-13 01:01:06.177000000" +"40764120","SAN SOO KAP SAN","4","171-10 ","NORTHERN BLVD FL 1ST","11358","7184454850","52","2013-04-23 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40764120","SAN SOO KAP SAN","4","171-10 ","NORTHERN BLVD FL 1ST","11358","7184454850","52","2013-04-23 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"40764120","SAN SOO KAP SAN","4","171-10 ","NORTHERN BLVD FL 1ST","11358","7184454850","52","2013-04-23 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40738001","PIZZA BAGEL BURGER","3","1117","MC DONALD AVENUE","11230","7183772952","03","2013-09-04 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40783989","HANOVER GOURMET DELI","1","3","HANOVER SQUARE","10004","2127973776","27","2010-03-24 09:04:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2011-03-30 00:00:00","O","06E","9","C","2011-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2011-08-25 00:00:00","F","08A","13","C","2011-08-25 00:00:00","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2011-09-07 00:00:00","U","08A","17","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2012-01-24 00:00:00","P","06C","16","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2013-05-03 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2011-01-18 00:00:00","P","04L","24","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2010-09-28 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-06-27 00:00:00","F","09B","30","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-10-25 00:00:00","F","08A","47","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2012-03-20 00:00:00","P","06E","23","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2012-04-10 00:00:00","D","06C","12","A","2012-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2013-08-01 00:00:00","F","04N","35","","","2013-09-13 01:01:06.177000000" +"40710411","DONATO'S PIZZERIA RESTAURANT","4","50-22","39 AVENUE","11377","7185074591","63","2012-12-24 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2011-11-17 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2011-11-30 00:00:00","F","06E","8","C","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2012-04-25 00:00:00","F","04N","24","C","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"40726247","OKI JAPANESE RESTARUANT","4","45-11","QUEENS BOULEVARD","11104","7187293666","49","2011-12-28 00:00:00","F","04M","38","","","2013-09-13 01:01:06.177000000" +"40726247","OKI JAPANESE RESTARUANT","4","45-11","QUEENS BOULEVARD","11104","7187293666","49","2012-06-06 00:00:00","D","02B","7","A","2012-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"40726247","OKI JAPANESE RESTARUANT","4","45-11","QUEENS BOULEVARD","11104","7187293666","49","2013-06-07 00:00:00","P","06E","7","","","2013-09-13 01:01:06.177000000" +"40726247","OKI JAPANESE RESTARUANT","4","45-11","QUEENS BOULEVARD","11104","7187293666","49","2013-06-07 00:00:00","P","10F","7","","","2013-09-13 01:01:06.177000000" +"40717261","HONG FUNG BAKERY","3","5124","8 AVENUE","11220","7188546290","08","2010-04-13 11:48:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"40717261","HONG FUNG BAKERY","3","5124","8 AVENUE","11220","7188546290","08","2010-04-13 11:48:00","F","04O","49","","","2013-09-13 01:01:06.177000000" +"40717261","HONG FUNG BAKERY","3","5124","8 AVENUE","11220","7188546290","08","2010-04-13 11:48:00","F","10G","49","","","2013-09-13 01:01:06.177000000" +"40788706","KELLY'S RESTAURANT & PIZZA","4","169-75","137 AVENUE","11434","7187231080","03","2011-10-28 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-03-21 00:00:00","F","20D","46","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-08-18 00:00:00","F","06A","52","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-08-18 00:00:00","F","09B","52","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-08-30 00:00:00","U","04J","22","B","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-08-30 00:00:00","U","10D","22","B","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2013-03-06 00:00:00","F","06E","31","","","2013-09-13 01:01:06.177000000" +"40718835","TRIOMPHE","1","49","WEST 44 STREET","10036","2124534033","03","2011-08-24 00:00:00","D","06C","10","A","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"40720283","BANJARA INDIAN RESTAURANT","1","344","EAST 6 STREET","10003","2124775956","44","2012-10-02 00:00:00","F","04K","49","","","2013-09-13 01:01:06.177000000" +"40793156","GOOD TASTE CHINESE RESTAURANT","3","235","KINGSTON AVENUE","11213","7182211112","20","2012-09-14 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2010-09-22 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2012-04-05 00:00:00","U","10F","9","B","2012-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2012-10-18 00:00:00","G","08A","95","","","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2011-06-03 00:00:00","P","99B","20","","","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2011-11-21 00:00:00","P","10B","25","","","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2013-05-24 00:00:00","F","02G","37","","","2013-09-13 01:01:06.177000000" +"40687266","BARTOW PIZZA","2","2045","BARTOW AVE","10475","7186717898","62","2010-08-25 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"40687266","BARTOW PIZZA","2","2045","BARTOW AVE","10475","7186717898","62","2010-08-25 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40718835","TRIOMPHE","1","49","WEST 44 STREET","10036","2124534033","03","2011-08-24 00:00:00","D","06D","10","A","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"40718835","TRIOMPHE","1","49","WEST 44 STREET","10036","2124534033","03","2012-09-18 00:00:00","D","10F","2","A","2012-09-18 00:00:00","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2010-12-22 00:00:00","F","08A","35","","","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2011-02-09 00:00:00","U","04L","12","B","2011-02-09 00:00:00","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2012-12-01 00:00:00","F","06E","32","","","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2013-05-30 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2013-05-24 00:00:00","F","06D","37","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2011-05-26 00:00:00","F","04H","28","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2011-05-26 00:00:00","F","06E","28","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2012-03-22 00:00:00","F","02B","38","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2012-03-22 00:00:00","F","10B","38","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2012-04-02 00:00:00","F","04L","15","C","2012-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"40690019","MODERN GOURMET","1","793","BROADWAY","10003","2126770047","03","2010-08-05 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40720283","BANJARA INDIAN RESTAURANT","1","344","EAST 6 STREET","10003","2124775956","44","2012-10-02 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2011-05-26 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2011-11-22 00:00:00","D","10B","13","A","2011-11-22 00:00:00","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2012-03-22 00:00:00","F","06C","38","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2012-08-27 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2013-02-04 00:00:00","F","04H","28","","","2013-09-13 01:01:06.177000000" +"40733383","HARU","1","433","AMSTERDAM AVENUE","10024","2125795655","49","2011-04-14 00:00:00","B","06B","7","A","2011-04-14 00:00:00","2013-09-13 01:01:06.177000000" +"40733383","HARU","1","433","AMSTERDAM AVENUE","10024","2125795655","49","2013-05-08 00:00:00","P","06D","15","","","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2011-06-21 00:00:00","F","02G","45","","","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2011-06-21 00:00:00","F","08C","45","","","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2013-05-29 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2011-09-08 00:00:00","D","08A","9","A","2011-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2013-05-22 00:00:00","F","02B","25","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2012-04-02 00:00:00","F","06F","15","C","2012-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2012-08-27 00:00:00","P","06F","26","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2012-08-27 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2013-07-29 00:00:00","P","06D","26","","","2013-09-13 01:01:06.177000000" +"40748291","MARTINEZ RESTAURANT & CUCHIFRITO","2","2037","JEROME AVENUE","10453","7187319423","53","2010-06-14 08:58:00","F","04O","49","","","2013-09-13 01:01:06.177000000" +"40799031","SECTION 5 PIZZA RESTAURANT","2","133","EINSTEIN LOOP","10475","7183203887","03","2010-08-25 00:00:00","F","10A","49","","","2013-09-13 01:01:06.177000000" +"40799031","SECTION 5 PIZZA RESTAURANT","2","133","EINSTEIN LOOP","10475","7183203887","03","2010-08-25 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2011-04-13 00:00:00","D","06C","13","A","2011-04-13 00:00:00","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2011-04-13 00:00:00","D","10B","13","A","2011-04-13 00:00:00","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2012-10-18 00:00:00","G","04H","95","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2012-10-18 00:00:00","G","09B","95","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2012-10-22 00:00:00","O","04N","12","P","2012-10-22 00:00:00","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2013-06-19 00:00:00","F","03C","28","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2013-06-19 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"40799031","SECTION 5 PIZZA RESTAURANT","2","133","EINSTEIN LOOP","10475","7183203887","03","2010-08-25 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2011-06-03 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2011-07-05 00:00:00","D","10F","10","A","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2012-05-02 00:00:00","D","05D","13","A","2012-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2013-05-24 00:00:00","F","10B","37","","","2013-09-13 01:01:06.177000000" +"40750917","SHIKI","3","1863-1867 ","86 STREET ","11214","7188371586","49","2011-12-21 00:00:00","D","08C","2","A","2011-12-21 00:00:00","2013-09-13 01:01:06.177000000" +"40750917","SHIKI","3","1863-1867 ","86 STREET ","11214","7188371586","49","2013-03-16 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"40726247","OKI JAPANESE RESTARUANT","4","45-11","QUEENS BOULEVARD","11104","7187293666","49","2012-01-17 00:00:00","D","10F","8","A","2012-01-17 00:00:00","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2011-02-22 00:00:00","F","08A","12","C","2011-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2011-08-18 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2012-01-17 00:00:00","D","10F","10","A","2012-01-17 00:00:00","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2013-05-22 00:00:00","F","04L","25","","","2013-09-13 01:01:06.177000000" +"40738001","PIZZA BAGEL BURGER","3","1117","MC DONALD AVENUE","11230","7183772952","03","2013-09-04 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-03-21 00:00:00","F","22C","46","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-04-12 00:00:00","D","10F","7","A","2011-04-12 00:00:00","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-04-12 00:00:00","D","22B","7","A","2011-04-12 00:00:00","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2013-03-06 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2010-12-20 00:00:00","F","02B","28","C","2010-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2012-02-03 00:00:00","D","10B","11","A","2012-02-03 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2012-07-05 00:00:00","D","10F","11","A","2012-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2013-04-02 00:00:00","F","02B","44","","","2013-09-13 01:01:06.177000000" +"40699160","THE COUNTRY CAFE","1","40","WALL STREET","10005","2123494290","03","2012-06-15 00:00:00","F","02B","49","C","2012-06-15 00:00:00","2013-09-13 01:01:06.177000000" +"40699160","THE COUNTRY CAFE","1","40","WALL STREET","10005","2123494290","03","2012-06-15 00:00:00","F","10B","49","C","2012-06-15 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-04-13 00:00:00","F","04L","58","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-04-13 00:00:00","F","09C","58","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-04-13 00:00:00","F","10F","58","","","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2012-06-21 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2012-08-09 00:00:00","U","10B","8","B","2012-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"40754765","MORRIS PARK PIZZA","2","656","MORRIS PARK AVENUE","10462","7189319191","62","2012-03-07 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-10-20 00:00:00","P","04L","16","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-11-02 00:00:00","U","06E","19","B","2011-11-02 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-11-02 00:00:00","U","08A","19","B","2011-11-02 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2013-04-11 00:00:00","P","06D","18","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2013-04-11 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"40726247","OKI JAPANESE RESTARUANT","4","45-11","QUEENS BOULEVARD","11104","7187293666","49","2011-12-28 00:00:00","F","10F","38","","","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2011-03-11 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2011-03-11 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2011-03-11 00:00:00","P","99B","26","","","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2011-05-17 00:00:00","F","04L","21","C","2011-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2011-11-04 00:00:00","U","06C","21","B","2011-11-04 00:00:00","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2012-05-14 00:00:00","F","04J","21","","","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2010-11-16 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2011-08-08 00:00:00","U","10B","10","B","2011-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2012-02-28 00:00:00","F","04L","14","","","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2012-07-23 00:00:00","F","04C","37","","","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2012-07-23 00:00:00","F","04J","37","","","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2012-08-06 00:00:00","F","06E","29","C","2012-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2011-12-12 00:00:00","P","08C","16","","","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2011-12-12 00:00:00","P","10B","16","","","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2012-01-04 00:00:00","D","10F","12","A","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2012-12-01 00:00:00","F","10F","32","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-03-21 00:00:00","F","06D","46","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2010-09-23 00:00:00","C","08C","12","A","2010-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2011-10-04 00:00:00","F","04L","44","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2011-11-02 00:00:00","U","04L","19","B","2011-11-02 00:00:00","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-03-13 00:00:00","F","04L","17","C","2012-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-08-16 00:00:00","F","10F","31","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-09-05 00:00:00","D","04L","12","A","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2013-03-21 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2013-03-21 00:00:00","P","06C","25","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2013-03-21 00:00:00","P","10F","25","","","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2012-07-24 00:00:00","F","06E","36","","","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2013-01-08 00:00:00","P","05D","17","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-03-21 00:00:00","F","10A","46","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-03-21 00:00:00","F","10B","46","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-08-18 00:00:00","F","10F","52","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2013-03-06 00:00:00","U","15I","","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2013-04-11 00:00:00","F","02H","26","C","2013-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2013-05-29 00:00:00","P","10J","23","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2010-08-20 00:00:00","F","04L","17","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2010-08-20 00:00:00","F","08A","17","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-10-20 00:00:00","P","06A","16","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2012-05-10 00:00:00","P","04L","14","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2012-05-23 00:00:00","F","04K","24","C","2012-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2012-05-23 00:00:00","F","08A","24","C","2012-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2012-01-12 00:00:00","U","02G","23","B","2012-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2012-01-12 00:00:00","U","99B","23","B","2012-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2012-06-05 00:00:00","U","06F","18","B","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2011-05-17 00:00:00","F","02G","21","C","2011-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2012-05-14 00:00:00","F","10F","21","","","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2012-10-22 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2013-08-19 00:00:00","P","10H","23","","","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2011-06-15 00:00:00","F","06D","43","","","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2012-02-07 00:00:00","F","06D","34","","","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2013-05-07 00:00:00","F","06F","44","","","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2012-03-20 00:00:00","D","06F","12","A","2012-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-03-06 00:00:00","F","04M","54","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-03-06 00:00:00","F","08A","54","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2013-03-21 00:00:00","P","06A","25","","","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2011-07-06 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2012-05-31 00:00:00","F","02B","21","","","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2012-05-31 00:00:00","F","10B","21","","","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2012-06-12 00:00:00","D","04L","13","A","2012-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2012-06-12 00:00:00","D","10F","13","A","2012-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2012-12-01 00:00:00","F","02B","32","","","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2012-12-01 00:00:00","F","04C","32","","","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2011-12-28 00:00:00","F","04C","43","","","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2011-12-28 00:00:00","F","06D","43","","","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2011-12-28 00:00:00","F","06E","43","","","2013-09-13 01:01:06.177000000" +"40733383","HARU","1","433","AMSTERDAM AVENUE","10024","2125795655","49","2011-04-14 00:00:00","B","10F","7","A","2011-04-14 00:00:00","2013-09-13 01:01:06.177000000" +"40733383","HARU","1","433","AMSTERDAM AVENUE","10024","2125795655","49","2013-05-08 00:00:00","P","04L","15","","","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2011-06-21 00:00:00","F","04L","45","","","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2011-06-21 00:00:00","F","09C","45","","","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2011-08-25 00:00:00","U","10F","12","B","2011-08-25 00:00:00","2013-09-13 01:01:06.177000000" +"40738001","PIZZA BAGEL BURGER","3","1117","MC DONALD AVENUE","11230","7183772952","03","2013-09-04 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2012-10-16 00:00:00","D","06C","12","A","2012-10-16 00:00:00","2013-09-13 01:01:06.177000000" +"40816202","THE PARK SLOPE CHIPSHOP","3","383","5 AVENUE","11215","7188327701","32","2010-02-18 11:49:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2010-09-28 00:00:00","F","04N","31","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2010-09-28 00:00:00","F","10F","31","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-07-11 00:00:00","F","02B","29","C","2011-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-07-11 00:00:00","F","04N","29","C","2011-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-10-25 00:00:00","F","04M","47","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2013-08-01 00:00:00","F","06F","35","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2013-08-01 00:00:00","F","08A","35","","","2013-09-13 01:01:06.177000000" +"40710411","DONATO'S PIZZERIA RESTAURANT","4","50-22","39 AVENUE","11377","7185074591","63","2012-12-24 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40710411","DONATO'S PIZZERIA RESTAURANT","4","50-22","39 AVENUE","11377","7185074591","63","2012-12-24 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2010-10-19 00:00:00","F","04C","70","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2010-10-19 00:00:00","F","06E","70","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2012-08-16 00:00:00","F","06F","53","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2012-08-16 00:00:00","F","10F","53","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2012-09-10 00:00:00","F","02G","24","C","2012-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2012-09-10 00:00:00","F","09B","24","C","2012-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"40821987","MILANES SPANISH RESTAURANT","1","168","WEST 25 STREET","10001","2122439797","53","2011-10-12 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40816202","THE PARK SLOPE CHIPSHOP","3","383","5 AVENUE","11215","7188327701","32","2010-02-18 11:49:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40764120","SAN SOO KAP SAN","4","171-10 ","NORTHERN BLVD FL 1ST","11358","7184454850","52","2013-04-23 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"40819366","HARU","1","1501","BROADWAY","10036","2123989810","49","2012-05-16 00:00:00","D","10B","11","A","2012-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"40738001","PIZZA BAGEL BURGER","3","1117","MC DONALD AVENUE","11230","7183772952","03","2013-09-04 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40781520","PRET A MANGER","1","60","BROAD STREET","10004","2128258825","69","2013-07-26 00:00:00","G","04J","49","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2011-08-02 00:00:00","U","02G","27","B","2011-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2012-02-21 00:00:00","D","08A","13","A","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2013-02-28 00:00:00","P","04K","26","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2013-02-28 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2013-02-28 00:00:00","P","10F","26","","","2013-09-13 01:01:06.177000000" +"40821987","MILANES SPANISH RESTAURANT","1","168","WEST 25 STREET","10001","2122439797","53","2011-10-12 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2010-12-20 00:00:00","F","02B","36","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2012-02-28 00:00:00","F","10B","29","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2012-08-14 00:00:00","P","09A","22","","","2013-09-13 01:01:06.177000000" +"40754765","MORRIS PARK PIZZA","2","656","MORRIS PARK AVENUE","10462","7189319191","62","2012-03-07 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2011-05-25 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-01-19 00:00:00","F","02G","21","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-02-03 00:00:00","U","04L","10","B","2012-02-03 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-06-28 00:00:00","F","04M","51","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-06-28 00:00:00","F","10B","51","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-07-16 00:00:00","F","10B","37","C","2012-07-16 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2013-01-16 00:00:00","F","10B","34","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2013-02-05 00:00:00","F","06E","31","C","2013-02-05 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2012-05-21 00:00:00","F","10H","43","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2012-12-31 00:00:00","U","04L","21","B","2012-12-31 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2013-05-30 00:00:00","F","02B","42","","","2013-09-13 01:01:06.177000000" +"40718835","TRIOMPHE","1","49","WEST 44 STREET","10036","2124534033","03","2013-03-04 00:00:00","F","04A","36","","","2013-09-13 01:01:06.177000000" +"40718835","TRIOMPHE","1","49","WEST 44 STREET","10036","2124534033","03","2013-03-27 00:00:00","U","02G","10","B","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"40838693","BUBBY'S","1","120","HUDSON STREET","10013","2122190666","03","2011-07-29 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40838693","BUBBY'S","1","120","HUDSON STREET","10013","2122190666","03","2011-07-29 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2010-12-20 00:00:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2012-02-28 00:00:00","F","06D","29","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2012-08-14 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"40840921","CONNOLLY'S CORNER","4","71-15","GRAND AVENUE","11378","7185657383","03","2013-05-16 00:00:00","F","10D","49","","","2013-09-13 01:01:06.177000000" +"40841152","ABIR HALAL RESTAURANT","3","526","NOSTRAND AVENUE","11216","7187896181","03","2011-05-16 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40841152","ABIR HALAL RESTAURANT","3","526","NOSTRAND AVENUE","11216","7187896181","03","2011-05-16 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2010-10-20 00:00:00","F","04M","40","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2010-12-07 00:00:00","U","10H","21","B","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2011-07-28 00:00:00","U","06A","18","B","2011-07-28 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-01-19 00:00:00","F","04L","21","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-01-19 00:00:00","F","06D","21","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2013-01-16 00:00:00","F","06D","34","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2013-02-05 00:00:00","F","02G","31","C","2013-02-05 00:00:00","2013-09-13 01:01:06.177000000" +"40720283","BANJARA INDIAN RESTAURANT","1","344","EAST 6 STREET","10003","2124775956","44","2012-10-02 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40720283","BANJARA INDIAN RESTAURANT","1","344","EAST 6 STREET","10003","2124775956","44","2012-10-02 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2012-10-18 00:00:00","G","04C","95","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2012-10-18 00:00:00","G","04M","95","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2013-06-19 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2013-06-19 00:00:00","F","10B","28","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2011-12-14 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2011-12-29 00:00:00","U","02G","16","B","2011-12-29 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2012-05-21 00:00:00","F","04C","43","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2012-05-21 00:00:00","F","06D","43","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2012-05-21 00:00:00","F","06E","43","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2012-05-21 00:00:00","F","10F","43","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2012-06-05 00:00:00","U","08A","9","B","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2012-12-11 00:00:00","F","06D","32","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2012-12-11 00:00:00","F","06E","32","","","2013-09-13 01:01:06.177000000" +"40748291","MARTINEZ RESTAURANT & CUCHIFRITO","2","2037","JEROME AVENUE","10453","7187319423","53","2010-06-14 08:58:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2010-10-27 00:00:00","P","06E","24","","","2013-09-13 01:01:06.177000000" +"40846905","POLANCO'S","4","33-13","108 STREET","11368","7185659598","53","2011-04-06 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"40846905","POLANCO'S","4","33-13","108 STREET","11368","7185659598","53","2011-04-06 00:00:00","G","09C","49","","","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2011-03-08 00:00:00","D","06E","13","A","2011-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2011-09-27 00:00:00","U","04J","23","B","2011-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2012-02-15 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2012-07-09 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2012-10-02 00:00:00","F","08A","40","","","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2011-01-18 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2011-05-04 00:00:00","W","04L","16","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2011-05-06 00:00:00","O","10F","2","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2011-08-16 00:00:00","F","10B","29","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2012-01-10 00:00:00","F","06D","29","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2012-06-11 00:00:00","F","05D","44","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2012-06-11 00:00:00","F","06F","44","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2012-06-11 00:00:00","F","10F","44","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2013-09-05 00:00:00","P","04L","20","","","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2011-11-17 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2011-11-30 00:00:00","F","10I","8","C","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2012-04-25 00:00:00","F","04E","24","C","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2012-04-25 00:00:00","F","04L","24","C","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2013-04-15 00:00:00","P","02B","12","","","2013-09-13 01:01:06.177000000" +"40840921","CONNOLLY'S CORNER","4","71-15","GRAND AVENUE","11378","7185657383","03","2013-05-16 00:00:00","F","02H","49","","","2013-09-13 01:01:06.177000000" +"40754765","MORRIS PARK PIZZA","2","656","MORRIS PARK AVENUE","10462","7189319191","62","2012-03-07 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40726247","OKI JAPANESE RESTARUANT","4","45-11","QUEENS BOULEVARD","11104","7187293666","49","2012-01-17 00:00:00","D","06D","8","A","2012-01-17 00:00:00","2013-09-13 01:01:06.177000000" +"40764120","SAN SOO KAP SAN","4","171-10 ","NORTHERN BLVD FL 1ST","11358","7184454850","52","2013-04-23 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2011-07-12 00:00:00","F","04L","19","C","2011-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2012-06-27 00:00:00","F","04M","51","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2012-04-02 00:00:00","F","10B","15","C","2012-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2012-09-10 00:00:00","D","10F","9","A","2012-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2013-02-22 00:00:00","U","04H","12","B","2013-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2013-07-29 00:00:00","P","04H","26","","","2013-09-13 01:01:06.177000000" +"40781520","PRET A MANGER","1","60","BROAD STREET","10004","2128258825","69","2013-07-26 00:00:00","G","05F","49","","","2013-09-13 01:01:06.177000000" +"40799031","SECTION 5 PIZZA RESTAURANT","2","133","EINSTEIN LOOP","10475","7183203887","03","2010-08-25 00:00:00","F","02A","49","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-03-21 00:00:00","F","04J","46","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-03-21 00:00:00","F","05D","46","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-08-18 00:00:00","F","02G","52","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-08-18 00:00:00","F","05D","52","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-08-18 00:00:00","F","06E","52","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-08-30 00:00:00","U","02G","22","B","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-08-30 00:00:00","U","10H","22","B","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2013-03-06 00:00:00","U","15L","","","","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2010-01-06 11:32:00","D","18I","6","","","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2011-02-22 00:00:00","F","10F","34","","","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2011-08-24 00:00:00","F","06E","30","","","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2012-02-15 00:00:00","P","04J","20","","","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2011-04-28 00:00:00","D","09C","8","A","2011-04-28 00:00:00","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2011-04-28 00:00:00","D","10F","8","A","2011-04-28 00:00:00","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2012-05-23 00:00:00","D","10J","13","A","2012-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2012-10-02 00:00:00","F","04H","40","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2011-03-16 00:00:00","F","06F","27","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2011-05-02 00:00:00","G","10I","51","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2011-08-16 00:00:00","F","04M","29","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2012-06-11 00:00:00","F","04J","44","","","2013-09-13 01:01:06.177000000" +"40754765","MORRIS PARK PIZZA","2","656","MORRIS PARK AVENUE","10462","7189319191","62","2012-03-07 00:00:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"40783989","HANOVER GOURMET DELI","1","3","HANOVER SQUARE","10004","2127973776","27","2010-03-24 09:04:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2012-12-08 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2013-09-05 00:00:00","P","10B","20","","","2013-09-13 01:01:06.177000000" +"40862204","SUBWAY","2","3422","JEROME AVENUE","10467","7186538969","69","2011-05-12 00:00:00","F","02B","49","C","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2010-12-22 00:00:00","F","04L","35","","","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2011-07-06 00:00:00","P","08C","24","","","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2012-01-04 00:00:00","D","06C","12","A","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2013-05-30 00:00:00","P","06F","22","","","2013-09-13 01:01:06.177000000" +"40853737","THE NEW THOMPSON DINER","4","32-44","QUEENS BOULEVARD","11101","7183920692","03","2012-12-27 00:00:00","F","03C","49","","","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2011-06-21 00:00:00","F","06D","45","","","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2011-06-21 00:00:00","F","09A","45","","","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2012-01-05 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2011-05-19 00:00:00","F","04L","37","","","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2011-07-12 00:00:00","F","10B","19","C","2011-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2011-12-29 00:00:00","F","08A","35","","","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2012-01-25 00:00:00","F","04C","26","C","2012-01-25 00:00:00","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2012-01-25 00:00:00","F","08A","26","C","2012-01-25 00:00:00","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2012-01-17 00:00:00","D","10F","6","A","2012-01-17 00:00:00","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2012-05-23 00:00:00","D","10B","13","A","2012-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"40788706","KELLY'S RESTAURANT & PIZZA","4","169-75","137 AVENUE","11434","7187231080","03","2011-10-28 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"40788706","KELLY'S RESTAURANT & PIZZA","4","169-75","137 AVENUE","11434","7187231080","03","2011-10-28 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"40865169","GINGER","1","109","1 AVENUE","10003","2122606223","49","2011-01-25 00:00:00","P","06A","12","","","2013-09-13 01:01:06.177000000" +"40865169","GINGER","1","109","1 AVENUE","10003","2122606223","49","2012-10-12 00:00:00","D","10F","2","A","2012-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"40764120","SAN SOO KAP SAN","4","171-10 ","NORTHERN BLVD FL 1ST","11358","7184454850","52","2013-04-23 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2010-09-21 00:00:00","U","06B","18","B","2010-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-04-13 00:00:00","F","04J","58","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-05-19 00:00:00","U","05D","26","B","2011-05-19 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-10-20 00:00:00","P","04M","16","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2012-05-23 00:00:00","F","04L","24","C","2012-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2012-10-02 00:00:00","F","09B","34","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2012-10-27 00:00:00","U","04M","10","B","2012-10-27 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2013-04-11 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"40738001","PIZZA BAGEL BURGER","3","1117","MC DONALD AVENUE","11230","7183772952","03","2013-09-04 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2011-03-11 00:00:00","P","10F","26","","","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2011-05-17 00:00:00","F","08A","21","C","2011-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2011-11-04 00:00:00","U","02G","21","B","2011-11-04 00:00:00","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2012-05-21 00:00:00","D","04H","11","A","2012-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2010-12-07 00:00:00","U","02G","9","B","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2011-07-12 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2011-07-12 00:00:00","P","99B","22","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2010-09-23 00:00:00","C","10F","12","A","2010-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2011-10-04 00:00:00","F","06F","44","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2011-10-04 00:00:00","F","08A","44","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2011-11-02 00:00:00","U","10B","19","B","2011-11-02 00:00:00","2013-09-13 01:01:06.177000000" +"40764120","SAN SOO KAP SAN","4","171-10 ","NORTHERN BLVD FL 1ST","11358","7184454850","52","2013-04-23 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40783989","HANOVER GOURMET DELI","1","3","HANOVER SQUARE","10004","2127973776","27","2010-03-24 09:04:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40793156","GOOD TASTE CHINESE RESTAURANT","3","235","KINGSTON AVENUE","11213","7182211112","20","2012-09-14 00:00:00","G","02B","49","","","2013-09-13 01:01:06.177000000" +"40793156","GOOD TASTE CHINESE RESTAURANT","3","235","KINGSTON AVENUE","11213","7182211112","20","2012-09-14 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"40868810","TAJ DONUT SHOP","4","89-15E","165 STREET","11432","3477773150","29","2011-10-25 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40868810","TAJ DONUT SHOP","4","89-15E","165 STREET","11432","3477773150","29","2011-10-25 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-03-06 00:00:00","F","06E","54","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2013-03-21 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40781520","PRET A MANGER","1","60","BROAD STREET","10004","2128258825","69","2013-07-26 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"40871006","MINAR INDIAN RESTAURANT","1","138","WEST 46 STREET","10036","2123984600","44","2011-04-18 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2011-12-28 00:00:00","F","04M","43","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2012-08-27 00:00:00","P","04N","26","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2013-02-04 00:00:00","F","06F","28","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2013-02-04 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2013-02-04 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2013-07-29 00:00:00","P","10F","26","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2010-09-14 00:00:00","U","06C","21","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-08-31 00:00:00","F","09C","39","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2012-02-03 00:00:00","F","04M","51","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2012-02-03 00:00:00","F","05D","51","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2012-07-17 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2013-01-11 00:00:00","G","02G","78","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2013-01-11 00:00:00","G","08A","78","","","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2012-04-11 00:00:00","F","02G","25","C","2012-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2012-04-11 00:00:00","F","06D","25","C","2012-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2013-05-07 00:00:00","F","04C","44","","","2013-09-13 01:01:06.177000000" +"40816202","THE PARK SLOPE CHIPSHOP","3","383","5 AVENUE","11215","7188327701","32","2010-02-18 11:49:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40862204","SUBWAY","2","3422","JEROME AVENUE","10467","7186538969","69","2011-05-12 00:00:00","F","04L","49","C","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"40865169","GINGER","1","109","1 AVENUE","10003","2122606223","49","2011-03-02 00:00:00","D","10F","9","A","2011-03-02 00:00:00","2013-09-13 01:01:06.177000000" +"40819366","HARU","1","1501","BROADWAY","10036","2123989810","49","2010-09-23 00:00:00","D","","","","","2013-09-13 01:01:06.177000000" +"40865169","GINGER","1","109","1 AVENUE","10003","2122606223","49","2011-09-13 00:00:00","P","04M","20","","","2013-09-13 01:01:06.177000000" +"40865169","GINGER","1","109","1 AVENUE","10003","2122606223","49","2012-10-02 00:00:00","F","02B","26","","","2013-09-13 01:01:06.177000000" +"40878403","SOY","1","102","SUFFOLK STREET","10002","2122531158","49","2011-05-16 00:00:00","D","10F","10","A","2011-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"40878403","SOY","1","102","SUFFOLK STREET","10002","2122531158","49","2011-05-16 00:00:00","D","22C","10","A","2011-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2010-10-19 00:00:00","F","08A","70","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2011-04-27 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2012-02-09 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2012-02-09 00:00:00","P","10H","25","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2012-08-16 00:00:00","F","10B","53","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2012-09-10 00:00:00","F","02B","24","C","2012-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"40878590","SAPPORO RESTAURANT","1","152","WEST 49 STREET","10019","2128698972","49","2011-11-29 00:00:00","U","02G","14","B","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40878590","SAPPORO RESTAURANT","1","152","WEST 49 STREET","10019","2128698972","49","2012-11-20 00:00:00","F","04D","10","","","2013-09-13 01:01:06.177000000" +"40822833","BUTTER PLACE","1","415","LAFAYETTE STREET","10003","2122532828","03","2013-07-26 00:00:00","F","03C","49","","","2013-09-13 01:01:06.177000000" +"40822833","BUTTER PLACE","1","415","LAFAYETTE STREET","10003","2122532828","03","2013-07-26 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"40788706","KELLY'S RESTAURANT & PIZZA","4","169-75","137 AVENUE","11434","7187231080","03","2011-10-28 00:00:00","G","10I","49","","","2013-09-13 01:01:06.177000000" +"40748291","MARTINEZ RESTAURANT & CUCHIFRITO","2","2037","JEROME AVENUE","10453","7187319423","53","2010-06-14 08:58:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40748291","MARTINEZ RESTAURANT & CUCHIFRITO","2","2037","JEROME AVENUE","10453","7187319423","53","2010-06-14 08:58:00","F","04I","49","","","2013-09-13 01:01:06.177000000" +"40882356","SPORTS CENTER AT CHELSEA PIERS (SUSHI BAR)","1","PIER 60","WEST SIDE HIGHWAY","10011","2123666286","49","2010-08-12 00:00:00","C","02G","12","A","2010-08-12 00:00:00","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2011-05-26 00:00:00","F","04L","28","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2012-03-22 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2013-02-22 00:00:00","U","04L","12","B","2013-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"40748291","MARTINEZ RESTAURANT & CUCHIFRITO","2","2037","JEROME AVENUE","10453","7187319423","53","2010-06-14 08:58:00","F","10G","49","","","2013-09-13 01:01:06.177000000" +"40826684","WU LIANG YE RESTAURANT","1","36","WEST 48 STREET","10036","2123982308","20","2011-07-26 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"40793156","GOOD TASTE CHINESE RESTAURANT","3","235","KINGSTON AVENUE","11213","7182211112","20","2012-09-14 00:00:00","G","10B","49","","","2013-09-13 01:01:06.177000000" +"40871006","MINAR INDIAN RESTAURANT","1","138","WEST 46 STREET","10036","2123984600","44","2011-04-18 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2010-08-20 00:00:00","F","06F","17","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2010-09-21 00:00:00","U","06F","18","B","2010-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-05-19 00:00:00","U","08A","26","B","2011-05-19 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2012-05-10 00:00:00","P","10F","14","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2012-10-02 00:00:00","F","04L","34","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2010-08-16 00:00:00","F","10B","32","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2010-08-16 00:00:00","F","99B","32","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2010-08-24 00:00:00","F","02B","29","C","2010-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2010-08-24 00:00:00","F","04L","29","C","2010-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2010-08-24 00:00:00","F","06F","29","C","2010-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2010-09-14 00:00:00","U","02G","21","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-08-31 00:00:00","F","02G","39","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-09-15 00:00:00","F","06C","31","C","2011-09-15 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-09-15 00:00:00","F","10F","31","C","2011-09-15 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2012-07-17 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2012-07-17 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2013-01-11 00:00:00","G","06C","78","","","2013-09-13 01:01:06.177000000" +"40750917","SHIKI","3","1863-1867 ","86 STREET ","11214","7188371586","49","2013-03-16 00:00:00","P","06F","26","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2010-12-20 00:00:00","F","06D","36","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2010-12-20 00:00:00","F","10H","36","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2011-08-25 00:00:00","P","10E","21","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2012-08-14 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2013-03-06 00:00:00","F","06F","30","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2011-06-28 00:00:00","D","10F","7","A","2011-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2011-11-22 00:00:00","D","02G","13","A","2011-11-22 00:00:00","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2011-11-22 00:00:00","D","99B","13","A","2011-11-22 00:00:00","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2012-03-22 00:00:00","F","04H","38","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2012-03-22 00:00:00","F","08A","38","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2012-09-10 00:00:00","D","06E","9","A","2012-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2013-07-29 00:00:00","P","10B","26","","","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2011-10-24 00:00:00","P","02B","23","","","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2013-08-19 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2013-08-19 00:00:00","P","10B","23","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2010-12-07 00:00:00","U","04C","21","B","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-01-19 00:00:00","F","04K","21","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-01-19 00:00:00","F","10F","21","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-02-03 00:00:00","U","04M","10","B","2012-02-03 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-06-28 00:00:00","F","02B","51","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-07-16 00:00:00","F","08A","37","C","2012-07-16 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2011-08-15 00:00:00","F","02G","15","C","2011-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2011-12-14 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2011-12-14 00:00:00","F","06D","28","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2013-05-30 00:00:00","F","04L","42","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2013-05-30 00:00:00","F","06A","42","","","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2010-11-16 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2012-07-23 00:00:00","F","02G","37","","","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2012-08-06 00:00:00","F","02G","29","C","2012-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2011-11-02 00:00:00","U","02G","19","B","2011-11-02 00:00:00","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-03-06 00:00:00","F","02B","54","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-03-13 00:00:00","F","09A","17","C","2012-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"40889792","ETHOS GREEK CUISINE","1","495","3 AVENUE","10016","2122520972","38","2011-05-12 00:00:00","F","06B","49","","","2013-09-13 01:01:06.177000000" +"40889792","ETHOS GREEK CUISINE","1","495","3 AVENUE","10016","2122520972","38","2011-05-12 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40834812","DANTE'S GOURMET FOOD","1","166","WILLIAM STREET","10038","2122332255","03","2011-11-18 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40835712","FIRENZE","1","1594","2 AVENUE","10028","2128619368","48","2012-03-08 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40799031","SECTION 5 PIZZA RESTAURANT","2","133","EINSTEIN LOOP","10475","7183203887","03","2010-08-25 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40754765","MORRIS PARK PIZZA","2","656","MORRIS PARK AVENUE","10462","7189319191","62","2012-03-07 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"40878403","SOY","1","102","SUFFOLK STREET","10002","2122531158","49","2011-05-16 00:00:00","D","06A","10","A","2011-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"40878590","SAPPORO RESTAURANT","1","152","WEST 49 STREET","10019","2128698972","49","2011-11-29 00:00:00","U","06E","14","B","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40878590","SAPPORO RESTAURANT","1","152","WEST 49 STREET","10019","2128698972","49","2012-04-09 00:00:00","P","10F","9","","","2013-09-13 01:01:06.177000000" +"40878590","SAPPORO RESTAURANT","1","152","WEST 49 STREET","10019","2128698972","49","2012-04-25 00:00:00","U","06C","20","B","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2011-12-28 00:00:00","F","04L","43","","","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2012-01-12 00:00:00","U","10F","23","B","2012-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"40838693","BUBBY'S","1","120","HUDSON STREET","10013","2122190666","03","2011-07-29 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40882356","SPORTS CENTER AT CHELSEA PIERS (SUSHI BAR)","1","PIER 60","WEST SIDE HIGHWAY","10011","2123666286","49","2010-08-12 00:00:00","C","06C","12","A","2010-08-12 00:00:00","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2011-06-15 00:00:00","F","02G","43","","","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2012-02-07 00:00:00","F","10B","34","","","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2012-04-11 00:00:00","F","06C","25","C","2012-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2012-09-18 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"40816202","THE PARK SLOPE CHIPSHOP","3","383","5 AVENUE","11215","7188327701","32","2010-02-18 11:49:00","F","04K","49","","","2013-09-13 01:01:06.177000000" +"40882356","SPORTS CENTER AT CHELSEA PIERS (SUSHI BAR)","1","PIER 60","WEST SIDE HIGHWAY","10011","2123666286","49","2013-06-15 00:00:00","F","08A","5","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2010-09-21 00:00:00","U","10B","18","B","2010-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-04-13 00:00:00","F","02G","58","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-04-13 00:00:00","F","10I","58","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-04-13 00:00:00","F","99B","58","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-05-19 00:00:00","U","10I","26","B","2011-05-19 00:00:00","2013-09-13 01:01:06.177000000" +"40897418","NB. NATIONAL BAKERY","2","1193","WALTON AVENUE","10452","7185375105","08","2013-02-13 00:00:00","F","02H","49","","","2013-09-13 01:01:06.177000000" +"40819366","HARU","1","1501","BROADWAY","10036","2123989810","49","2012-05-16 00:00:00","D","08A","11","A","2012-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"40899971","SUSHI ZEN","1","108","WEST 44 STREET","10036","2123020707","49","2011-05-11 00:00:00","D","02G","10","A","2011-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"40840921","CONNOLLY'S CORNER","4","71-15","GRAND AVENUE","11378","7185657383","03","2013-05-16 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40840921","CONNOLLY'S CORNER","4","71-15","GRAND AVENUE","11378","7185657383","03","2013-05-16 00:00:00","F","03B","49","","","2013-09-13 01:01:06.177000000" +"40841152","ABIR HALAL RESTAURANT","3","526","NOSTRAND AVENUE","11216","7187896181","03","2011-05-16 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-10-20 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2012-05-10 00:00:00","P","08A","14","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2012-05-23 00:00:00","F","02B","24","C","2012-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2012-10-02 00:00:00","F","04M","34","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2012-10-27 00:00:00","U","08A","10","B","2012-10-27 00:00:00","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2011-11-04 00:00:00","U","10F","21","B","2011-11-04 00:00:00","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2012-10-22 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2011-08-08 00:00:00","U","02B","10","B","2011-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2012-08-06 00:00:00","F","10B","29","C","2012-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2010-10-19 00:00:00","F","04A","70","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2010-12-21 00:00:00","C","06D","9","A","2010-12-21 00:00:00","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2010-12-21 00:00:00","C","09C","9","A","2010-12-21 00:00:00","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2011-04-27 00:00:00","P","10E","23","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2011-08-02 00:00:00","U","06A","27","B","2011-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2011-08-02 00:00:00","U","10B","27","B","2011-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2012-02-21 00:00:00","D","04K","13","A","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2012-08-16 00:00:00","F","08C","53","","","2013-09-13 01:01:06.177000000" +"40821987","MILANES SPANISH RESTAURANT","1","168","WEST 25 STREET","10001","2122439797","53","2011-10-12 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2010-09-23 00:00:00","C","02G","12","A","2010-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2011-11-02 00:00:00","U","08A","19","B","2011-11-02 00:00:00","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-03-06 00:00:00","F","04L","54","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-03-06 00:00:00","F","05D","54","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-03-13 00:00:00","F","08A","17","C","2012-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2013-03-21 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2013-03-21 00:00:00","P","09B","25","","","2013-09-13 01:01:06.177000000" +"40822833","BUTTER PLACE","1","415","LAFAYETTE STREET","10003","2122532828","03","2013-07-26 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2011-04-29 00:00:00","F","08C","64","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2012-02-02 00:00:00","P","10H","16","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2012-02-27 00:00:00","U","02B","9","B","2012-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2012-10-02 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2013-07-10 00:00:00","F","04N","47","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2013-07-10 00:00:00","F","08A","47","","","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2010-01-06 11:32:00","D","10G","6","","","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2011-02-22 00:00:00","F","05D","34","","","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2011-03-08 00:00:00","D","06C","13","A","2011-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2011-08-24 00:00:00","F","04H","30","","","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2011-09-27 00:00:00","U","02G","23","B","2011-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2012-08-01 00:00:00","D","08A","10","A","2012-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2010-09-21 00:00:00","U","06D","18","B","2010-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-04-13 00:00:00","F","04M","58","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-04-13 00:00:00","F","06D","58","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-04-13 00:00:00","F","10B","58","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-05-19 00:00:00","U","10A","26","B","2011-05-19 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-05-19 00:00:00","U","10B","26","B","2011-05-19 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2012-10-02 00:00:00","F","06A","34","","","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2011-12-28 00:00:00","F","08A","43","","","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2012-01-12 00:00:00","U","09B","23","B","2012-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2012-05-25 00:00:00","P","06A","20","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2010-10-06 00:00:00","F","04C","25","C","2010-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2010-10-06 00:00:00","F","06C","25","C","2010-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2011-02-15 00:00:00","F","04E","30","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2011-02-15 00:00:00","F","06F","30","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2011-02-15 00:00:00","F","10I","30","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2011-07-27 00:00:00","U","06D","20","B","2011-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2011-12-20 00:00:00","F","06D","30","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2011-12-20 00:00:00","F","06E","30","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2012-07-23 00:00:00","U","02G","12","B","2012-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2013-08-19 00:00:00","F","10F","34","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2010-11-23 00:00:00","F","04M","31","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2010-11-23 00:00:00","F","10B","31","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2011-07-28 00:00:00","F","04H","28","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2011-07-28 00:00:00","F","06C","28","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2011-08-09 00:00:00","U","06E","27","B","2011-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2011-12-07 00:00:00","F","06D","34","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2012-01-10 00:00:00","U","06C","18","B","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2012-05-16 00:00:00","F","10B","14","","","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2012-04-24 00:00:00","P","04J","25","","","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2012-10-02 00:00:00","F","04L","40","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2011-05-02 00:00:00","G","02G","51","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2012-06-21 00:00:00","U","09C","14","B","2012-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2011-05-17 00:00:00","F","10B","21","C","2011-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2011-10-24 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2011-10-24 00:00:00","P","06D","23","","","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2012-05-21 00:00:00","D","10F","11","A","2012-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2013-08-19 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2010-12-07 00:00:00","U","10F","9","B","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2011-07-12 00:00:00","P","04J","22","","","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2011-07-19 00:00:00","U","04L","11","B","2011-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2012-02-07 00:00:00","F","08C","34","","","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2012-09-18 00:00:00","P","04L","27","","","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2012-09-18 00:00:00","P","10F","27","","","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2013-05-07 00:00:00","F","02G","44","","","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2013-05-07 00:00:00","F","04H","44","","","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2013-05-07 00:00:00","F","06C","44","","","2013-09-13 01:01:06.177000000" +"40889792","ETHOS GREEK CUISINE","1","495","3 AVENUE","10016","2122520972","38","2011-05-12 00:00:00","F","10D","49","","","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2012-03-20 00:00:00","D","02G","12","A","2012-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2012-07-23 00:00:00","F","04H","37","","","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2012-07-23 00:00:00","F","06F","37","","","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2012-08-06 00:00:00","F","06C","29","C","2012-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2013-02-06 00:00:00","P","02G","14","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2011-10-04 00:00:00","F","10F","44","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-03-06 00:00:00","F","04J","54","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-08-16 00:00:00","F","06D","31","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-09-05 00:00:00","D","10F","12","A","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2011-08-25 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2012-02-28 00:00:00","F","06C","29","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2012-08-14 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2013-03-06 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"40916719","CAFE LA MORENA & DELI","3","950","3 AVENUE","11232","7187886478","77","2011-01-13 00:00:00","F","05H","49","C","2011-01-13 00:00:00","2013-09-13 01:01:06.177000000" +"40916719","CAFE LA MORENA & DELI","3","950","3 AVENUE","11232","7187886478","77","2011-01-13 00:00:00","F","06C","49","C","2011-01-13 00:00:00","2013-09-13 01:01:06.177000000" +"40819366","HARU","1","1501","BROADWAY","10036","2123989810","49","2012-05-16 00:00:00","D","04L","11","A","2012-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2010-10-20 00:00:00","F","03B","40","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2010-12-07 00:00:00","U","10B","21","B","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2011-07-28 00:00:00","U","04M","18","B","2011-07-28 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-06-28 00:00:00","F","04J","51","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-06-28 00:00:00","F","06D","51","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-07-16 00:00:00","F","04C","37","C","2012-07-16 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2011-08-03 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2012-05-21 00:00:00","F","04L","43","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2012-05-21 00:00:00","F","06F","43","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2012-12-11 00:00:00","F","06F","32","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2012-12-31 00:00:00","U","02B","21","B","2012-12-31 00:00:00","2013-09-13 01:01:06.177000000" +"40783989","HANOVER GOURMET DELI","1","3","HANOVER SQUARE","10004","2127973776","27","2010-03-24 09:04:00","F","10G","49","","","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2011-01-03 00:00:00","C","04N","7","A","2011-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2011-12-28 00:00:00","F","09B","43","","","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2012-01-12 00:00:00","U","02B","23","B","2012-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2012-01-12 00:00:00","U","10B","23","B","2012-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2012-06-05 00:00:00","U","04L","18","B","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2010-10-19 00:00:00","F","04M","70","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2010-10-19 00:00:00","F","08C","70","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2011-04-27 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2011-08-02 00:00:00","U","08A","27","B","2011-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2012-08-16 00:00:00","F","04C","53","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2013-02-28 00:00:00","P","06C","26","","","2013-09-13 01:01:06.177000000" +"40821987","MILANES SPANISH RESTAURANT","1","168","WEST 25 STREET","10001","2122439797","53","2011-10-12 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40822833","BUTTER PLACE","1","415","LAFAYETTE STREET","10003","2122532828","03","2013-07-26 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40822833","BUTTER PLACE","1","415","LAFAYETTE STREET","10003","2122532828","03","2013-07-26 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40835712","FIRENZE","1","1594","2 AVENUE","10028","2128619368","48","2012-03-08 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40835712","FIRENZE","1","1594","2 AVENUE","10028","2128619368","48","2012-03-08 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"40921710","ROCHAMBEAU WEST INDIAN & AMERICAN RESTAURANT","2","3505","ROCHAMBEAU AVENUE","10467","7189942566","17","2011-04-04 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"40921710","ROCHAMBEAU WEST INDIAN & AMERICAN RESTAURANT","2","3505","ROCHAMBEAU AVENUE","10467","7189942566","17","2011-04-04 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2011-05-19 00:00:00","F","10F","37","","","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2011-12-29 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2011-12-29 00:00:00","F","06D","35","","","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2012-06-27 00:00:00","F","04J","51","","","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2011-06-15 00:00:00","F","04C","43","","","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2012-10-16 00:00:00","D","08B","12","A","2012-10-16 00:00:00","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2013-05-07 00:00:00","F","10B","44","","","2013-09-13 01:01:06.177000000" +"40838693","BUBBY'S","1","120","HUDSON STREET","10013","2122190666","03","2011-07-29 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40899971","SUSHI ZEN","1","108","WEST 44 STREET","10036","2123020707","49","2011-05-11 00:00:00","D","10F","10","A","2011-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"40819366","HARU","1","1501","BROADWAY","10036","2123989810","49","2011-06-09 00:00:00","D","10F","12","A","2011-06-09 00:00:00","2013-09-13 01:01:06.177000000" +"40826684","WU LIANG YE RESTAURANT","1","36","WEST 48 STREET","10036","2123982308","20","2011-07-26 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"40826684","WU LIANG YE RESTAURANT","1","36","WEST 48 STREET","10036","2123982308","20","2011-07-26 00:00:00","F","05F","49","","","2013-09-13 01:01:06.177000000" +"40841152","ABIR HALAL RESTAURANT","3","526","NOSTRAND AVENUE","11216","7187896181","03","2011-05-16 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2011-07-13 00:00:00","D","04N","13","A","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2011-07-13 00:00:00","D","08A","13","A","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2011-11-28 00:00:00","D","10F","7","A","2011-11-28 00:00:00","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2012-04-17 00:00:00","U","04H","11","B","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2011-04-27 00:00:00","P","06D","23","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2013-02-28 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"40821987","MILANES SPANISH RESTAURANT","1","168","WEST 25 STREET","10001","2122439797","53","2011-10-12 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40927698","YOKOHAMA JAPANESE RESTAURANT","2","438","WEST 238 STREET","10463","7185492606","49","2012-01-19 00:00:00","D","06C","7","A","2012-01-19 00:00:00","2013-09-13 01:01:06.177000000" +"40927698","YOKOHAMA JAPANESE RESTAURANT","2","438","WEST 238 STREET","10463","7185492606","49","2012-06-20 00:00:00","F","04L","48","","","2013-09-13 01:01:06.177000000" +"40927698","YOKOHAMA JAPANESE RESTAURANT","2","438","WEST 238 STREET","10463","7185492606","49","2012-06-20 00:00:00","F","06F","48","","","2013-09-13 01:01:06.177000000" +"40927698","YOKOHAMA JAPANESE RESTAURANT","2","438","WEST 238 STREET","10463","7185492606","49","2012-06-20 00:00:00","F","10F","48","","","2013-09-13 01:01:06.177000000" +"40822833","BUTTER PLACE","1","415","LAFAYETTE STREET","10003","2122532828","03","2013-07-26 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40822833","BUTTER PLACE","1","415","LAFAYETTE STREET","10003","2122532828","03","2013-07-26 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"40822833","BUTTER PLACE","1","415","LAFAYETTE STREET","10003","2122532828","03","2013-07-26 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2011-01-10 00:00:00","F","04H","12","C","2011-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2011-08-25 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2012-03-22 00:00:00","U","04L","17","B","2012-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2013-03-06 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2013-03-06 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2010-10-20 00:00:00","F","10F","40","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2011-05-25 00:00:00","P","10B","19","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-02-03 00:00:00","U","08A","10","B","2012-02-03 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-07-16 00:00:00","F","02B","37","C","2012-07-16 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-07-16 00:00:00","F","04K","37","C","2012-07-16 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2013-02-05 00:00:00","F","10D","31","C","2013-02-05 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2011-08-03 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2011-08-03 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2011-08-15 00:00:00","F","10F","15","C","2011-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2011-12-14 00:00:00","F","10E","28","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2011-12-29 00:00:00","U","10B","16","B","2011-12-29 00:00:00","2013-09-13 01:01:06.177000000" +"40846905","POLANCO'S","4","33-13","108 STREET","11368","7185659598","53","2011-04-06 00:00:00","G","02B","49","","","2013-09-13 01:01:06.177000000" +"40793156","GOOD TASTE CHINESE RESTAURANT","3","235","KINGSTON AVENUE","11213","7182211112","20","2012-09-14 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"40793156","GOOD TASTE CHINESE RESTAURANT","3","235","KINGSTON AVENUE","11213","7182211112","20","2012-09-14 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2011-03-29 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2011-05-11 00:00:00","F","09B","9","C","2011-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2011-10-20 00:00:00","D","02B","9","A","2011-10-20 00:00:00","2013-09-13 01:01:06.177000000" +"40862204","SUBWAY","2","3422","JEROME AVENUE","10467","7186538969","69","2011-05-12 00:00:00","F","08A","49","C","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2012-05-21 00:00:00","F","08A","43","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2012-06-05 00:00:00","U","02G","9","B","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2012-12-31 00:00:00","U","02G","21","B","2012-12-31 00:00:00","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2010-01-06 11:32:00","D","10C","6","","","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2012-04-24 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2012-04-24 00:00:00","P","10F","25","","","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2012-05-23 00:00:00","D","10D","13","A","2012-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2012-10-02 00:00:00","F","02G","40","","","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2012-12-06 00:00:00","D","04L","10","A","2012-12-06 00:00:00","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2011-04-29 00:00:00","F","10F","64","","","2013-09-13 01:01:06.177000000" +"40826684","WU LIANG YE RESTAURANT","1","36","WEST 48 STREET","10036","2123982308","20","2011-07-26 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2011-05-02 00:00:00","G","02B","51","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2011-08-16 00:00:00","F","06D","29","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2013-09-05 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2013-09-05 00:00:00","P","09B","20","","","2013-09-13 01:01:06.177000000" +"40913721","CAFE VIRGO","1","249","EAST 49 STREET","10017","2124211238","49","2011-07-14 00:00:00","D","08C","4","A","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2013-02-26 00:00:00","F","10F","54","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2013-08-19 00:00:00","F","04H","34","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2010-11-23 00:00:00","F","04H","31","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2011-12-07 00:00:00","F","08A","34","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2012-01-10 00:00:00","U","06A","18","B","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2011-06-28 00:00:00","D","10B","7","A","2011-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2012-03-22 00:00:00","F","10F","38","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2013-02-04 00:00:00","F","04L","28","","","2013-09-13 01:01:06.177000000" +"40865169","GINGER","1","109","1 AVENUE","10003","2122606223","49","2012-10-02 00:00:00","F","08A","26","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2010-04-09 12:12:00","U","04L","7","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2010-12-20 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"40799031","SECTION 5 PIZZA RESTAURANT","2","133","EINSTEIN LOOP","10475","7183203887","03","2010-08-25 00:00:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2011-01-10 00:00:00","F","06F","12","C","2011-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2012-02-28 00:00:00","F","04L","29","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2012-02-28 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2012-08-14 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2012-08-14 00:00:00","P","10H","22","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2012-08-29 00:00:00","D","08A","10","A","2012-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2010-10-20 00:00:00","F","04C","40","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-06-28 00:00:00","F","02G","51","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-07-16 00:00:00","F","03D","37","C","2012-07-16 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-07-16 00:00:00","F","04M","37","C","2012-07-16 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-07-16 00:00:00","F","10F","37","C","2012-07-16 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2013-01-16 00:00:00","F","02G","34","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2013-01-16 00:00:00","F","04H","34","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2013-02-05 00:00:00","F","08A","31","C","2013-02-05 00:00:00","2013-09-13 01:01:06.177000000" +"40933887","PEEP","1","177","PRINCE STREET","10012","2122547337","82","2013-03-28 00:00:00","G","05F","49","","","2013-09-13 01:01:06.177000000" +"40841152","ABIR HALAL RESTAURANT","3","526","NOSTRAND AVENUE","11216","7187896181","03","2011-05-16 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2012-07-24 00:00:00","U","04L","17","B","2012-07-24 00:00:00","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2012-07-24 00:00:00","U","06C","17","B","2012-07-24 00:00:00","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2011-12-16 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2011-12-29 00:00:00","U","10B","16","B","2011-12-29 00:00:00","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2012-09-11 00:00:00","D","08A","12","A","2012-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2011-08-03 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2011-12-29 00:00:00","U","06C","16","B","2011-12-29 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2013-05-30 00:00:00","F","02G","42","","","2013-09-13 01:01:06.177000000" +"40835712","FIRENZE","1","1594","2 AVENUE","10028","2128619368","48","2012-03-08 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40871006","MINAR INDIAN RESTAURANT","1","138","WEST 46 STREET","10036","2123984600","44","2011-04-18 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2010-08-16 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2010-08-24 00:00:00","F","10B","29","C","2010-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-03-01 00:00:00","F","09C","43","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-03-24 00:00:00","U","10F","7","B","2011-03-24 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-08-31 00:00:00","F","10F","39","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2012-02-03 00:00:00","F","06E","51","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2013-01-11 00:00:00","G","02B","78","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2013-07-15 00:00:00","G","10F","59","","","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2011-02-22 00:00:00","F","04M","34","","","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2012-08-01 00:00:00","D","04N","10","A","2012-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2012-10-02 00:00:00","F","10B","40","","","2013-09-13 01:01:06.177000000" +"40840921","CONNOLLY'S CORNER","4","71-15","GRAND AVENUE","11378","7185657383","03","2013-05-16 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40841152","ABIR HALAL RESTAURANT","3","526","NOSTRAND AVENUE","11216","7187896181","03","2011-05-16 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2011-03-16 00:00:00","F","06A","27","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2011-09-12 00:00:00","D","02G","13","A","2011-09-12 00:00:00","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2012-06-11 00:00:00","F","02G","44","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2012-06-11 00:00:00","F","06C","44","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2012-06-21 00:00:00","U","02G","14","B","2012-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2013-09-05 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2010-05-27 12:33:00","F","06F","28","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2012-04-03 00:00:00","F","04C","16","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-04-13 00:00:00","F","04H","58","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-04-13 00:00:00","F","08A","58","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-05-19 00:00:00","U","04L","26","B","2011-05-19 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2012-05-23 00:00:00","F","04C","24","C","2012-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2012-10-02 00:00:00","F","04H","34","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2012-10-02 00:00:00","F","08A","34","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2012-10-27 00:00:00","U","04K","10","B","2012-10-27 00:00:00","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2010-09-08 00:00:00","F","04J","24","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2012-01-03 00:00:00","P","05D","27","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2012-01-03 00:00:00","P","06A","27","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2012-02-08 00:00:00","D","10F","11","A","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2012-08-15 00:00:00","D","02G","13","A","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"40927698","YOKOHAMA JAPANESE RESTAURANT","2","438","WEST 238 STREET","10463","7185492606","49","2012-01-04 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"40927698","YOKOHAMA JAPANESE RESTAURANT","2","438","WEST 238 STREET","10463","7185492606","49","2012-06-20 00:00:00","F","02G","48","","","2013-09-13 01:01:06.177000000" +"40927698","YOKOHAMA JAPANESE RESTAURANT","2","438","WEST 238 STREET","10463","7185492606","49","2012-06-28 00:00:00","U","04M","13","B","2012-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"40927881","OLIVE GARDEN","1","696","AVENUE OF THE AMERICAS","10010","2122551240","48","2013-03-30 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40853737","THE NEW THOMPSON DINER","4","32-44","QUEENS BOULEVARD","11101","7183920692","03","2012-12-27 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"40846905","POLANCO'S","4","33-13","108 STREET","11368","7185659598","53","2011-04-06 00:00:00","G","06A","49","","","2013-09-13 01:01:06.177000000" +"40846905","POLANCO'S","4","33-13","108 STREET","11368","7185659598","53","2011-04-06 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2012-02-27 00:00:00","D","10F","5","A","2012-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2012-07-09 00:00:00","P","04J","18","","","2013-09-13 01:01:06.177000000" +"40865169","GINGER","1","109","1 AVENUE","10003","2122606223","49","2011-09-13 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"40865169","GINGER","1","109","1 AVENUE","10003","2122606223","49","2012-05-01 00:00:00","D","02G","8","A","2012-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"40865169","GINGER","1","109","1 AVENUE","10003","2122606223","49","2012-10-02 00:00:00","F","04M","26","","","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2011-03-11 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2011-11-04 00:00:00","U","04H","21","B","2011-11-04 00:00:00","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2013-08-19 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2010-11-16 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2013-02-06 00:00:00","P","02B","14","","","2013-09-13 01:01:06.177000000" +"40878403","SOY","1","102","SUFFOLK STREET","10002","2122531158","49","2010-11-09 00:00:00","U","18F","5","B","2010-11-09 00:00:00","2013-09-13 01:01:06.177000000" +"40878590","SAPPORO RESTAURANT","1","152","WEST 49 STREET","10019","2128698972","49","2010-10-28 00:00:00","C","10F","7","A","2010-10-28 00:00:00","2013-09-13 01:01:06.177000000" +"40878590","SAPPORO RESTAURANT","1","152","WEST 49 STREET","10019","2128698972","49","2012-04-25 00:00:00","U","08A","20","B","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2012-04-24 00:00:00","P","04N","25","","","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2012-05-23 00:00:00","D","10E","13","A","2012-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2012-10-02 00:00:00","F","09B","40","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2011-03-16 00:00:00","F","04J","27","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2011-05-02 00:00:00","G","04L","51","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2011-05-02 00:00:00","G","05D","51","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2011-08-16 00:00:00","F","06F","29","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2011-09-12 00:00:00","D","06C","13","A","2011-09-12 00:00:00","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2012-01-10 00:00:00","F","06F","29","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2012-01-10 00:00:00","F","09B","29","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2012-06-11 00:00:00","F","10B","44","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2012-12-08 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2011-10-04 00:00:00","F","02G","44","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2011-10-04 00:00:00","F","05D","44","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-03-06 00:00:00","F","06C","54","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-03-06 00:00:00","F","10B","54","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-08-16 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-09-05 00:00:00","D","08A","12","A","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2011-05-19 00:00:00","F","06E","37","","","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2011-05-19 00:00:00","F","08A","37","","","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2011-05-19 00:00:00","F","10B","37","","","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2011-07-12 00:00:00","F","08A","19","C","2011-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2011-05-11 00:00:00","F","10F","9","C","2011-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2012-03-07 00:00:00","P","04C","18","","","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2012-10-04 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2012-10-04 00:00:00","P","04J","26","","","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2011-12-28 00:00:00","F","04N","43","","","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2011-12-28 00:00:00","F","10B","43","","","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2012-05-25 00:00:00","P","02B","20","","","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2012-06-05 00:00:00","U","09B","18","B","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"40945916","CALIBELLA BAKERY","3","164","WYCKOFF AVENUE","11237","7184973614","08","2012-07-25 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40945916","CALIBELLA BAKERY","3","164","WYCKOFF AVENUE","11237","7184973614","08","2012-07-25 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2011-06-15 00:00:00","F","10I","43","","","2013-09-13 01:01:06.177000000" +"40882356","SPORTS CENTER AT CHELSEA PIERS (SUSHI BAR)","1","PIER 60","WEST SIDE HIGHWAY","10011","2123666286","49","2012-07-05 00:00:00","D","09C","13","A","2012-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"40868810","TAJ DONUT SHOP","4","89-15E","165 STREET","11432","3477773150","29","2011-10-25 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40868810","TAJ DONUT SHOP","4","89-15E","165 STREET","11432","3477773150","29","2011-10-25 00:00:00","F","05E","49","","","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2011-07-19 00:00:00","U","10B","11","B","2011-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2012-04-11 00:00:00","F","08A","25","C","2012-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2012-09-18 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2013-05-07 00:00:00","F","04L","44","","","2013-09-13 01:01:06.177000000" +"40816202","THE PARK SLOPE CHIPSHOP","3","383","5 AVENUE","11215","7188327701","32","2010-02-18 11:49:00","F","02H","49","","","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2011-05-19 00:00:00","F","06C","37","","","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2011-12-29 00:00:00","F","04L","35","","","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2012-01-25 00:00:00","F","04L","26","C","2012-01-25 00:00:00","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2012-06-27 00:00:00","F","02G","51","","","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2012-07-24 00:00:00","U","04M","17","B","2012-07-24 00:00:00","2013-09-13 01:01:06.177000000" +"40871006","MINAR INDIAN RESTAURANT","1","138","WEST 46 STREET","10036","2123984600","44","2011-04-18 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40871006","MINAR INDIAN RESTAURANT","1","138","WEST 46 STREET","10036","2123984600","44","2011-04-18 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40932091","ZOIE'S CAFE and DELICATESSEN","1","49","BEACH STREET","10013","2122269776","14","2011-02-11 00:00:00","D","06C","10","A","2011-02-11 00:00:00","2013-09-13 01:01:06.177000000" +"40932091","ZOIE'S CAFE and DELICATESSEN","1","49","BEACH STREET","10013","2122269776","14","2012-01-26 00:00:00","D","02G","13","A","2012-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2010-12-30 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2011-01-12 00:00:00","C","08A","13","A","2011-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2011-09-01 00:00:00","D","04L","12","A","2011-09-01 00:00:00","2013-09-13 01:01:06.177000000" +"40819366","HARU","1","1501","BROADWAY","10036","2123989810","49","2011-06-09 00:00:00","D","06C","12","A","2011-06-09 00:00:00","2013-09-13 01:01:06.177000000" +"40819366","HARU","1","1501","BROADWAY","10036","2123989810","49","2011-06-09 00:00:00","D","10B","12","A","2011-06-09 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2010-08-16 00:00:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2010-08-16 00:00:00","F","05D","32","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2010-09-14 00:00:00","U","99B","21","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-08-31 00:00:00","F","10B","39","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-09-15 00:00:00","F","04L","31","C","2011-09-15 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2012-02-03 00:00:00","F","06C","51","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2013-01-11 00:00:00","G","04J","78","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2013-07-15 00:00:00","G","04J","59","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2011-08-02 00:00:00","U","04N","27","B","2011-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2012-02-09 00:00:00","P","05H","25","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2012-02-21 00:00:00","D","09B","13","A","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2012-08-16 00:00:00","F","02G","53","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2012-08-16 00:00:00","F","02H","53","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2012-08-16 00:00:00","F","06D","53","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2012-09-10 00:00:00","F","04K","24","C","2012-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2012-08-16 00:00:00","F","10F","54","","","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2012-10-09 00:00:00","F","04C","33","C","2012-10-09 00:00:00","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2012-10-09 00:00:00","F","08A","33","C","2012-10-09 00:00:00","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2013-04-18 00:00:00","F","06E","23","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2011-01-20 00:00:00","D","10B","9","A","2011-01-20 00:00:00","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2012-01-10 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2012-06-21 00:00:00","F","04M","37","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2012-06-21 00:00:00","F","10B","37","","","2013-09-13 01:01:06.177000000" +"40821987","MILANES SPANISH RESTAURANT","1","168","WEST 25 STREET","10001","2122439797","53","2011-10-12 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40822833","BUTTER PLACE","1","415","LAFAYETTE STREET","10003","2122532828","03","2013-07-26 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40822833","BUTTER PLACE","1","415","LAFAYETTE STREET","10003","2122532828","03","2013-07-26 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40862204","SUBWAY","2","3422","JEROME AVENUE","10467","7186538969","69","2011-05-12 00:00:00","F","10D","49","C","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"40862204","SUBWAY","2","3422","JEROME AVENUE","10467","7186538969","69","2011-05-12 00:00:00","F","22A","49","C","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2012-07-02 00:00:00","U","08A","17","B","2012-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-01-24 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2010-12-13 00:00:00","F","09B","36","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2010-12-13 00:00:00","F","10H","36","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2011-01-28 00:00:00","U","10B","10","B","2011-01-28 00:00:00","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2012-08-20 00:00:00","P","04L","17","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2012-08-20 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"40826684","WU LIANG YE RESTAURANT","1","36","WEST 48 STREET","10036","2123982308","20","2011-07-26 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40826684","WU LIANG YE RESTAURANT","1","36","WEST 48 STREET","10036","2123982308","20","2011-07-26 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"40889792","ETHOS GREEK CUISINE","1","495","3 AVENUE","10016","2122520972","38","2011-05-12 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40865169","GINGER","1","109","1 AVENUE","10003","2122606223","49","2011-09-21 00:00:00","U","04M","9","B","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"40865169","GINGER","1","109","1 AVENUE","10003","2122606223","49","2012-10-02 00:00:00","F","06E","26","","","2013-09-13 01:01:06.177000000" +"40862204","SUBWAY","2","3422","JEROME AVENUE","10467","7186538969","69","2011-05-12 00:00:00","F","10F","49","C","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"40950507","YUMMY SUSHI","1","30","ROCKFEELLER PLAZA","10020","2124592100","49","2011-02-23 00:00:00","P","10F","12","","","2013-09-13 01:01:06.177000000" +"40950507","YUMMY SUSHI","1","30","ROCKFEELLER PLAZA","10020","2124592100","49","2013-04-10 00:00:00","P","04L","9","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2011-10-06 00:00:00","D","04L","10","A","2011-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2012-03-22 00:00:00","U","06C","17","B","2012-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2012-03-22 00:00:00","U","10B","17","B","2012-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2012-08-29 00:00:00","D","04L","10","A","2012-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2013-03-06 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2010-11-23 00:00:00","F","08A","48","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2010-12-15 00:00:00","F","06C","21","C","2010-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2011-06-22 00:00:00","F","08A","23","C","2011-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2011-11-22 00:00:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2013-08-06 00:00:00","P","10D","21","","","2013-09-13 01:01:06.177000000" +"40878403","SOY","1","102","SUFFOLK STREET","10002","2122531158","49","2010-08-10 00:00:00","P","10F","9","","","2013-09-13 01:01:06.177000000" +"40878403","SOY","1","102","SUFFOLK STREET","10002","2122531158","49","2011-05-16 00:00:00","D","08C","10","A","2011-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"40878590","SAPPORO RESTAURANT","1","152","WEST 49 STREET","10019","2128698972","49","2011-11-29 00:00:00","U","06F","14","B","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40878590","SAPPORO RESTAURANT","1","152","WEST 49 STREET","10019","2128698972","49","2012-04-09 00:00:00","P","06C","9","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2011-07-28 00:00:00","U","04C","18","B","2011-07-28 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-02-03 00:00:00","U","04K","10","B","2012-02-03 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-02-03 00:00:00","U","04N","10","B","2012-02-03 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-06-28 00:00:00","F","10F","51","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2013-01-16 00:00:00","F","02B","34","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2013-02-05 00:00:00","F","02B","31","C","2013-02-05 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2013-02-05 00:00:00","F","08C","31","C","2013-02-05 00:00:00","2013-09-13 01:01:06.177000000" +"40865169","GINGER","1","109","1 AVENUE","10003","2122606223","49","2012-10-02 00:00:00","F","10B","26","","","2013-09-13 01:01:06.177000000" +"40868810","TAJ DONUT SHOP","4","89-15E","165 STREET","11432","3477773150","29","2011-10-25 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2010-10-21 00:00:00","P","06C","18","","","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2011-05-06 00:00:00","U","04H","15","B","2011-05-06 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2011-08-15 00:00:00","F","06F","15","C","2011-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2012-06-05 00:00:00","U","10F","9","B","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2012-12-11 00:00:00","F","02B","32","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2012-12-31 00:00:00","U","04M","21","B","2012-12-31 00:00:00","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2013-05-30 00:00:00","F","04J","42","","","2013-09-13 01:01:06.177000000" +"40834812","DANTE'S GOURMET FOOD","1","166","WILLIAM STREET","10038","2122332255","03","2011-11-18 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2012-08-21 00:00:00","D","10B","11","A","2012-08-21 00:00:00","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2013-08-14 00:00:00","U","15L","","","","2013-09-13 01:01:06.177000000" +"40834812","DANTE'S GOURMET FOOD","1","166","WILLIAM STREET","10038","2122332255","03","2011-11-18 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2010-08-16 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2010-08-16 00:00:00","F","09B","32","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-03-01 00:00:00","F","02G","43","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-08-31 00:00:00","F","04H","39","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-09-15 00:00:00","F","02B","31","C","2011-09-15 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-09-15 00:00:00","F","04M","31","C","2011-09-15 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2012-02-03 00:00:00","F","02B","51","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2012-02-03 00:00:00","F","04C","51","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2012-03-01 00:00:00","F","04J","37","C","2012-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2012-03-01 00:00:00","F","05D","37","C","2012-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2013-01-22 00:00:00","O","","","P","2013-01-22 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2013-02-12 00:00:00","D","02B","9","A","2013-02-12 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2013-07-15 00:00:00","G","02G","59","","","2013-09-13 01:01:06.177000000" +"40899971","SUSHI ZEN","1","108","WEST 44 STREET","10036","2123020707","49","2012-05-15 00:00:00","D","06D","11","A","2012-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"40838693","BUBBY'S","1","120","HUDSON STREET","10013","2122190666","03","2011-07-29 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2010-09-08 00:00:00","F","08A","24","","","2013-09-13 01:01:06.177000000" +"40840921","CONNOLLY'S CORNER","4","71-15","GRAND AVENUE","11378","7185657383","03","2013-05-16 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40841152","ABIR HALAL RESTAURANT","3","526","NOSTRAND AVENUE","11216","7187896181","03","2011-05-16 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2012-08-15 00:00:00","D","10F","13","A","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2013-02-19 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2010-08-24 00:00:00","F","08A","29","C","2010-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-03-01 00:00:00","F","06E","43","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-03-01 00:00:00","F","08A","43","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-03-01 00:00:00","F","10B","43","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-03-24 00:00:00","U","06C","7","B","2011-03-24 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-08-31 00:00:00","F","06F","39","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2012-02-03 00:00:00","F","04L","51","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2012-02-03 00:00:00","F","10F","51","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2012-03-01 00:00:00","F","02G","37","C","2012-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2012-07-17 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2013-01-11 00:00:00","G","06E","78","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2013-07-18 00:00:00","O","10B","3","P","2013-07-18 00:00:00","2013-09-13 01:01:06.177000000" +"40889792","ETHOS GREEK CUISINE","1","495","3 AVENUE","10016","2122520972","38","2011-05-12 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"40889792","ETHOS GREEK CUISINE","1","495","3 AVENUE","10016","2122520972","38","2011-05-12 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2011-04-29 00:00:00","F","04A","64","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2012-02-02 00:00:00","P","04C","16","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2012-10-02 00:00:00","P","04J","17","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2013-07-10 00:00:00","F","04J","47","","","2013-09-13 01:01:06.177000000" +"40878590","SAPPORO RESTAURANT","1","152","WEST 49 STREET","10019","2128698972","49","2013-01-17 00:00:00","D","10F","12","A","2013-01-17 00:00:00","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2013-07-10 00:00:00","F","10F","47","","","2013-09-13 01:01:06.177000000" +"40846905","POLANCO'S","4","33-13","108 STREET","11368","7185659598","53","2011-04-06 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2011-02-22 00:00:00","F","04H","34","","","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2011-02-22 00:00:00","F","08A","34","","","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2011-02-22 00:00:00","F","08B","34","","","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2011-08-24 00:00:00","F","04A","30","","","2013-09-13 01:01:06.177000000" +"40913721","CAFE VIRGO","1","249","EAST 49 STREET","10017","2124211238","49","2012-01-24 00:00:00","D","10E","2","A","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2011-07-27 00:00:00","U","10F","20","B","2011-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2012-07-23 00:00:00","U","10F","12","B","2012-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2010-11-23 00:00:00","F","06D","31","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2011-07-28 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2011-12-07 00:00:00","F","02B","34","","","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2012-04-24 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2012-05-23 00:00:00","D","02G","13","A","2012-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2012-12-06 00:00:00","D","08A","10","A","2012-12-06 00:00:00","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2011-03-16 00:00:00","F","02G","27","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2011-05-02 00:00:00","G","06C","51","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2011-05-02 00:00:00","G","10B","51","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2011-05-04 00:00:00","W","08A","16","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2012-01-10 00:00:00","F","02A","29","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2012-01-30 00:00:00","D","02G","13","A","2012-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2012-01-30 00:00:00","D","06E","13","A","2012-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2012-06-21 00:00:00","U","04L","14","B","2012-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2012-12-08 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"40916719","CAFE LA MORENA & DELI","3","950","3 AVENUE","11232","7187886478","77","2011-01-13 00:00:00","F","10F","49","C","2011-01-13 00:00:00","2013-09-13 01:01:06.177000000" +"40882356","SPORTS CENTER AT CHELSEA PIERS (SUSHI BAR)","1","PIER 60","WEST SIDE HIGHWAY","10011","2123666286","49","2011-07-27 00:00:00","D","09C","2","A","2011-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2010-09-07 00:00:00","P","04N","18","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2010-09-07 00:00:00","P","06E","18","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2010-09-07 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2011-06-29 00:00:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2011-10-26 00:00:00","F","04J","60","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2012-04-04 00:00:00","P","04C","25","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2012-12-05 00:00:00","F","03C","66","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2013-02-13 00:00:00","F","02G","32","C","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2013-02-13 00:00:00","F","04H","32","C","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2013-07-16 00:00:00","F","04H","35","","","2013-09-13 01:01:06.177000000" +"40878403","SOY","1","102","SUFFOLK STREET","10002","2122531158","49","2010-08-10 00:00:00","P","02B","9","","","2013-09-13 01:01:06.177000000" +"40878403","SOY","1","102","SUFFOLK STREET","10002","2122531158","49","2012-04-27 00:00:00","D","10J","7","A","2012-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"40878590","SAPPORO RESTAURANT","1","152","WEST 49 STREET","10019","2128698972","49","2010-10-28 00:00:00","C","06E","7","A","2010-10-28 00:00:00","2013-09-13 01:01:06.177000000" +"40878590","SAPPORO RESTAURANT","1","152","WEST 49 STREET","10019","2128698972","49","2011-11-29 00:00:00","U","10B","14","B","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40878590","SAPPORO RESTAURANT","1","152","WEST 49 STREET","10019","2128698972","49","2012-04-09 00:00:00","P","09B","9","","","2013-09-13 01:01:06.177000000" +"40878590","SAPPORO RESTAURANT","1","152","WEST 49 STREET","10019","2128698972","49","2012-04-25 00:00:00","U","04M","20","B","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2011-12-29 00:00:00","F","06C","35","","","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2012-01-25 00:00:00","F","06C","26","C","2012-01-25 00:00:00","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2012-06-27 00:00:00","F","04L","51","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2012-01-20 00:00:00","D","02B","13","A","2012-01-20 00:00:00","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2012-06-21 00:00:00","F","06D","37","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-08-08 00:00:00","F","06D","33","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-08-08 00:00:00","F","06E","33","","","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2011-10-27 00:00:00","P","04C","18","","","2013-09-13 01:01:06.177000000" +"40921710","ROCHAMBEAU WEST INDIAN & AMERICAN RESTAURANT","2","3505","ROCHAMBEAU AVENUE","10467","7189942566","17","2011-04-04 00:00:00","G","09C","49","","","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2012-07-24 00:00:00","U","08A","17","B","2012-07-24 00:00:00","2013-09-13 01:01:06.177000000" +"40882356","SPORTS CENTER AT CHELSEA PIERS (SUSHI BAR)","1","PIER 60","WEST SIDE HIGHWAY","10011","2123666286","49","2012-07-05 00:00:00","D","08A","13","A","2012-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"40950507","YUMMY SUSHI","1","30","ROCKFEELLER PLAZA","10020","2124592100","49","2013-04-10 00:00:00","P","09B","9","","","2013-09-13 01:01:06.177000000" +"40889792","ETHOS GREEK CUISINE","1","495","3 AVENUE","10016","2122520972","38","2011-05-12 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40889792","ETHOS GREEK CUISINE","1","495","3 AVENUE","10016","2122520972","38","2011-05-12 00:00:00","F","09B","49","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2010-12-15 00:00:00","F","08A","21","C","2010-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2010-12-15 00:00:00","F","10H","21","C","2010-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2012-06-20 00:00:00","D","06F","10","A","2012-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2012-12-05 00:00:00","F","06E","31","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2013-08-06 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"40979259","BAI SUSHI","4","37-03","BROADWAY","11103","7189567445","49","2011-09-20 00:00:00","D","10F","9","A","2011-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2011-04-19 00:00:00","F","02B","53","C","2011-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2011-04-19 00:00:00","F","99B","53","C","2011-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2012-03-26 00:00:00","P","09B","25","","","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2012-08-23 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2010-12-13 00:00:00","F","10F","42","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2011-11-17 00:00:00","F","04J","35","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2012-04-17 00:00:00","U","10F","11","B","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2011-03-31 00:00:00","F","06E","46","","","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-01-12 00:00:00","C","10F","4","A","2011-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-05-19 00:00:00","F","04H","28","","","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-11-02 00:00:00","F","04C","54","C","2011-11-02 00:00:00","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-11-15 00:00:00","G","04M","45","","","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-11-18 00:00:00","O","99B","7","","","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2010-09-09 00:00:00","F","08A","41","C","2010-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2011-02-19 00:00:00","B","08A","11","A","2011-02-19 00:00:00","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2012-02-01 00:00:00","P","06E","25","","","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2012-02-10 00:00:00","U","04L","16","B","2012-02-10 00:00:00","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2012-02-10 00:00:00","U","06F","16","B","2012-02-10 00:00:00","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2013-08-14 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2013-08-14 00:00:00","U","15I","","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2011-04-29 00:00:00","F","08A","64","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2011-07-22 00:00:00","U","04C","18","B","2011-07-22 00:00:00","2013-09-13 01:01:06.177000000" +"40927698","YOKOHAMA JAPANESE RESTAURANT","2","438","WEST 238 STREET","10463","7185492606","49","2012-01-04 00:00:00","P","06F","25","","","2013-09-13 01:01:06.177000000" +"40927698","YOKOHAMA JAPANESE RESTAURANT","2","438","WEST 238 STREET","10463","7185492606","49","2012-01-04 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"40927698","YOKOHAMA JAPANESE RESTAURANT","2","438","WEST 238 STREET","10463","7185492606","49","2012-06-28 00:00:00","U","04C","13","B","2012-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"40927881","OLIVE GARDEN","1","696","AVENUE OF THE AMERICAS","10010","2122551240","48","2013-03-30 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40862204","SUBWAY","2","3422","JEROME AVENUE","10467","7186538969","69","2011-05-12 00:00:00","F","06D","49","C","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"40983549","EL SOMBRERO RESTAURANT","3","108 ","STANTON STREET ","10002","2122544188","55","2011-09-20 00:00:00","F","10J","49","","","2013-09-13 01:01:06.177000000" +"40913721","CAFE VIRGO","1","249","EAST 49 STREET","10017","2124211238","49","2011-06-28 00:00:00","F","10A","30","","","2013-09-13 01:01:06.177000000" +"40913721","CAFE VIRGO","1","249","EAST 49 STREET","10017","2124211238","49","2013-05-02 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2012-06-25 00:00:00","P","02B","15","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2013-02-26 00:00:00","F","05D","54","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2013-02-26 00:00:00","F","06E","54","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2013-08-19 00:00:00","F","02G","34","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2013-08-19 00:00:00","F","06A","34","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2010-11-23 00:00:00","F","18A","31","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2010-11-23 00:00:00","F","22C","31","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2011-07-28 00:00:00","F","10B","28","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2011-07-28 00:00:00","F","99B","28","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2011-08-09 00:00:00","U","04H","27","B","2011-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2011-08-09 00:00:00","U","10B","27","B","2011-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2011-12-07 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2013-02-06 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2013-02-06 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2013-02-06 00:00:00","P","04M","7","","","2013-09-13 01:01:06.177000000" +"40865169","GINGER","1","109","1 AVENUE","10003","2122606223","49","2011-03-02 00:00:00","D","06C","9","A","2011-03-02 00:00:00","2013-09-13 01:01:06.177000000" +"40865169","GINGER","1","109","1 AVENUE","10003","2122606223","49","2011-03-02 00:00:00","D","10B","9","A","2011-03-02 00:00:00","2013-09-13 01:01:06.177000000" +"40865169","GINGER","1","109","1 AVENUE","10003","2122606223","49","2011-09-21 00:00:00","U","08A","9","B","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"40897418","NB. NATIONAL BAKERY","2","1193","WALTON AVENUE","10452","7185375105","08","2013-02-13 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40889792","ETHOS GREEK CUISINE","1","495","3 AVENUE","10016","2122520972","38","2011-05-12 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40984953","KUMBALA BAR","4","70-04","ROOSEVELT AVENUE","11372","7185077566","77","2011-06-10 00:00:00","F","04K","49","","","2013-09-13 01:01:06.177000000" +"40984953","KUMBALA BAR","4","70-04","ROOSEVELT AVENUE","11372","7185077566","77","2011-06-10 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40984953","KUMBALA BAR","4","70-04","ROOSEVELT AVENUE","11372","7185077566","77","2011-06-10 00:00:00","F","08B","49","","","2013-09-13 01:01:06.177000000" +"40916719","CAFE LA MORENA & DELI","3","950","3 AVENUE","11232","7187886478","77","2011-01-13 00:00:00","F","02B","49","C","2011-01-13 00:00:00","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2012-03-14 00:00:00","U","10H","9","B","2012-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2012-10-04 00:00:00","P","06D","26","","","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2012-03-15 00:00:00","D","10F","10","","","2013-09-13 01:01:06.177000000" +"40897418","NB. NATIONAL BAKERY","2","1193","WALTON AVENUE","10452","7185375105","08","2013-02-13 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2011-01-12 00:00:00","C","10B","13","A","2011-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2011-09-01 00:00:00","D","08A","12","A","2011-09-01 00:00:00","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2012-10-09 00:00:00","F","06D","33","C","2012-10-09 00:00:00","2013-09-13 01:01:06.177000000" +"40871006","MINAR INDIAN RESTAURANT","1","138","WEST 46 STREET","10036","2123984600","44","2011-04-18 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2010-12-13 00:00:00","F","08C","36","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2010-08-16 00:00:00","F","04C","32","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2010-08-16 00:00:00","F","04M","32","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2010-08-24 00:00:00","F","06E","29","C","2010-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2010-09-14 00:00:00","U","04L","21","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-03-01 00:00:00","F","04L","43","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-03-01 00:00:00","F","10F","43","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-09-15 00:00:00","F","08A","31","C","2011-09-15 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2012-03-01 00:00:00","F","02B","37","C","2012-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2012-07-17 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2012-07-17 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2012-07-17 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2013-01-11 00:00:00","G","10F","78","","","2013-09-13 01:01:06.177000000" +"40911185","PAESANO'S PIZZA","5","12","BRADLEY AVENUE","10314","7187612070","62","2011-05-03 00:00:00","G","02B","49","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2011-04-29 00:00:00","F","04J","64","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2011-04-29 00:00:00","F","06A","64","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2012-02-27 00:00:00","U","10B","9","B","2012-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2012-12-04 00:00:00","U","02B","7","B","2012-12-04 00:00:00","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2013-07-10 00:00:00","F","02G","47","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2013-07-10 00:00:00","F","06F","47","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2011-10-26 00:00:00","F","99B","60","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2012-04-04 00:00:00","P","10B","25","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2012-12-05 00:00:00","F","02B","66","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2012-12-05 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2013-02-13 00:00:00","F","04N","32","C","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2013-02-13 00:00:00","F","06E","32","C","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2013-07-16 00:00:00","F","04L","35","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2013-07-16 00:00:00","F","08A","35","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2011-02-15 00:00:00","F","06C","30","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2011-07-27 00:00:00","U","06E","20","B","2011-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2010-05-27 12:33:00","F","06E","28","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2010-12-13 00:00:00","F","02B","42","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2010-12-13 00:00:00","F","04N","42","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2011-01-31 00:00:00","U","06D","7","B","2011-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2011-05-23 00:00:00","P","99B","22","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2012-04-03 00:00:00","F","02B","16","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2012-04-03 00:00:00","F","10A","16","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2011-08-09 00:00:00","U","03B","27","B","2011-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2011-12-07 00:00:00","F","04A","34","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2011-12-07 00:00:00","F","06E","34","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2012-01-10 00:00:00","U","10F","18","B","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2012-05-16 00:00:00","F","08A","14","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2012-06-01 00:00:00","U","04H","19","B","2012-06-01 00:00:00","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2012-06-01 00:00:00","U","08A","19","B","2012-06-01 00:00:00","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2013-02-06 00:00:00","P","10H","7","","","2013-09-13 01:01:06.177000000" +"40927881","OLIVE GARDEN","1","696","AVENUE OF THE AMERICAS","10010","2122551240","48","2013-03-30 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2012-06-12 00:00:00","D","04C","13","A","2012-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2013-06-25 00:00:00","F","04L","27","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2011-04-29 00:00:00","F","04L","64","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2011-03-03 00:00:00","F","02B","36","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2012-07-17 00:00:00","F","02B","52","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2012-07-17 00:00:00","F","04M","52","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2013-01-10 00:00:00","P","04L","13","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2013-09-04 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2010-10-06 00:00:00","F","02G","25","C","2010-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2010-10-06 00:00:00","F","99B","25","C","2010-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2011-02-15 00:00:00","F","10B","30","","","2013-09-13 01:01:06.177000000" +"40878590","SAPPORO RESTAURANT","1","152","WEST 49 STREET","10019","2128698972","49","2012-04-25 00:00:00","U","06D","20","B","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"40995563","LEGEND COOKHOUSE","4","135-11","ROCKAWAY BOULEVARD","11420","7188484444","17","2011-10-12 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2011-12-20 00:00:00","F","04H","30","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2012-06-25 00:00:00","P","02G","15","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2013-02-26 00:00:00","F","09B","54","","","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2011-03-29 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"40916719","CAFE LA MORENA & DELI","3","950","3 AVENUE","11232","7187886478","77","2011-01-13 00:00:00","F","10H","49","C","2011-01-13 00:00:00","2013-09-13 01:01:06.177000000" +"40882356","SPORTS CENTER AT CHELSEA PIERS (SUSHI BAR)","1","PIER 60","WEST SIDE HIGHWAY","10011","2123666286","49","2012-07-05 00:00:00","D","04L","13","A","2012-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2010-09-08 00:00:00","F","10B","24","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2010-09-08 00:00:00","F","99B","24","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2011-02-28 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2011-02-28 00:00:00","F","06E","28","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2011-08-02 00:00:00","U","10F","11","B","2011-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2012-01-03 00:00:00","P","02B","27","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2013-02-19 00:00:00","F","08A","35","","","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2011-04-19 00:00:00","F","05H","53","C","2011-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2011-10-15 00:00:00","F","05D","34","","","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2011-11-17 00:00:00","U","08A","25","B","2011-11-17 00:00:00","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2012-03-26 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2012-08-23 00:00:00","P","06D","18","","","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2012-09-05 00:00:00","U","06D","22","B","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-05-19 00:00:00","F","04M","28","","","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-05-19 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-06-28 00:00:00","U","06D","15","B","2011-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2012-06-21 00:00:00","P","04M","12","","","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2012-07-05 00:00:00","U","04M","13","B","2012-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"40932091","ZOIE'S CAFE and DELICATESSEN","1","49","BEACH STREET","10013","2122269776","14","2010-03-10 09:00:00","D","10K","4","","","2013-09-13 01:01:06.177000000" +"40932091","ZOIE'S CAFE and DELICATESSEN","1","49","BEACH STREET","10013","2122269776","14","2011-02-11 00:00:00","D","10F","10","A","2011-02-11 00:00:00","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2010-12-30 00:00:00","P","02B","23","","","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2010-12-30 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2012-08-16 00:00:00","F","04L","54","","","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2012-08-16 00:00:00","F","06E","54","","","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2012-10-09 00:00:00","F","02B","33","C","2012-10-09 00:00:00","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2012-10-09 00:00:00","F","04L","33","C","2012-10-09 00:00:00","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2012-10-09 00:00:00","F","06F","33","C","2012-10-09 00:00:00","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2013-04-18 00:00:00","F","06C","23","","","2013-09-13 01:01:06.177000000" +"40921710","ROCHAMBEAU WEST INDIAN & AMERICAN RESTAURANT","2","3505","ROCHAMBEAU AVENUE","10467","7189942566","17","2011-04-04 00:00:00","G","04A","49","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2011-01-26 00:00:00","U","04H","16","B","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2011-07-07 00:00:00","U","02G","10","B","2011-07-07 00:00:00","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2010-06-30 15:52:00","U","10G","8","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2010-12-13 00:00:00","F","06D","42","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2011-05-23 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2011-11-17 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2011-11-17 00:00:00","F","06F","35","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2011-11-17 00:00:00","F","99B","35","","","2013-09-13 01:01:06.177000000" +"40933887","PEEP","1","177","PRINCE STREET","10012","2122547337","82","2013-03-28 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2010-12-13 00:00:00","F","99B","36","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2011-01-28 00:00:00","U","02G","10","B","2011-01-28 00:00:00","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2011-12-16 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2011-12-16 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2012-08-20 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2013-08-28 00:00:00","P","04J","19","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2011-11-28 00:00:00","D","06C","7","A","2011-11-28 00:00:00","2013-09-13 01:01:06.177000000" +"40927698","YOKOHAMA JAPANESE RESTAURANT","2","438","WEST 238 STREET","10463","7185492606","49","2012-01-04 00:00:00","P","10F","25","","","2013-09-13 01:01:06.177000000" +"40927698","YOKOHAMA JAPANESE RESTAURANT","2","438","WEST 238 STREET","10463","7185492606","49","2012-01-19 00:00:00","D","10F","7","A","2012-01-19 00:00:00","2013-09-13 01:01:06.177000000" +"40927698","YOKOHAMA JAPANESE RESTAURANT","2","438","WEST 238 STREET","10463","7185492606","49","2012-06-20 00:00:00","F","08A","48","","","2013-09-13 01:01:06.177000000" +"40889792","ETHOS GREEK CUISINE","1","495","3 AVENUE","10016","2122520972","38","2011-05-12 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"40927881","OLIVE GARDEN","1","696","AVENUE OF THE AMERICAS","10010","2122551240","48","2013-03-30 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2010-05-27 12:33:00","F","06C","28","","","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2012-01-10 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2012-03-01 00:00:00","F","04M","54","C","2012-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2013-07-31 00:00:00","P","10F","2","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2010-05-27 12:33:00","F","10B","28","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2010-12-13 00:00:00","F","10B","42","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2011-01-31 00:00:00","U","10F","7","B","2011-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2011-11-17 00:00:00","F","06D","35","","","2013-09-13 01:01:06.177000000" +"40927698","YOKOHAMA JAPANESE RESTAURANT","2","438","WEST 238 STREET","10463","7185492606","49","2012-06-20 00:00:00","F","06A","48","","","2013-09-13 01:01:06.177000000" +"40927881","OLIVE GARDEN","1","696","AVENUE OF THE AMERICAS","10010","2122551240","48","2013-03-30 00:00:00","F","10E","49","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2012-01-20 00:00:00","D","10B","13","A","2012-01-20 00:00:00","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2012-06-21 00:00:00","F","04C","37","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-01-24 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-02-14 00:00:00","U","04M","11","B","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-08-08 00:00:00","F","08A","33","","","2013-09-13 01:01:06.177000000" +"41004774","AKA SUSHI JAPANESE RESTAURANT","5","4342","AMBOY ROAD","10312","7186088981","49","2011-09-20 00:00:00","P","04E","15","","","2013-09-13 01:01:06.177000000" +"41004774","AKA SUSHI JAPANESE RESTAURANT","5","4342","AMBOY ROAD","10312","7186088981","49","2013-05-16 00:00:00","F","04C","30","","","2013-09-13 01:01:06.177000000" +"40950507","YUMMY SUSHI","1","30","ROCKFEELLER PLAZA","10020","2124592100","49","2011-12-05 00:00:00","U","09A","21","","","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2011-03-29 00:00:00","F","06C","30","","","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2011-03-29 00:00:00","F","10H","30","","","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2012-03-07 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2012-03-07 00:00:00","P","10H","18","","","2013-09-13 01:01:06.177000000" +"40899971","SUSHI ZEN","1","108","WEST 44 STREET","10036","2123020707","49","2012-05-15 00:00:00","D","10B","11","A","2012-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2010-11-23 00:00:00","F","04L","48","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2010-12-15 00:00:00","F","02G","21","C","2010-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2011-06-22 00:00:00","F","04L","23","C","2011-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2012-05-08 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2013-08-06 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2010-09-08 00:00:00","F","10F","24","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2011-02-28 00:00:00","F","08C","28","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2011-02-28 00:00:00","F","22C","28","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2012-01-03 00:00:00","P","10F","27","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2012-06-28 00:00:00","P","02H","21","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2013-02-19 00:00:00","F","10B","35","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2010-11-23 00:00:00","F","04H","30","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2011-05-05 00:00:00","D","22A","5","A","2011-05-05 00:00:00","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2011-09-16 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2012-08-21 00:00:00","D","06A","7","A","2012-08-21 00:00:00","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2013-02-27 00:00:00","F","10F","78","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2013-09-10 00:00:00","P","10H","25","","","2013-09-13 01:01:06.177000000" +"40933887","PEEP","1","177","PRINCE STREET","10012","2122547337","82","2013-03-28 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2011-12-16 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2012-09-11 00:00:00","D","04L","12","A","2012-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"40932091","ZOIE'S CAFE and DELICATESSEN","1","49","BEACH STREET","10013","2122269776","14","2010-03-10 09:00:00","D","10B","4","","","2013-09-13 01:01:06.177000000" +"40932091","ZOIE'S CAFE and DELICATESSEN","1","49","BEACH STREET","10013","2122269776","14","2012-01-26 00:00:00","D","06C","13","A","2012-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2010-11-01 00:00:00","D","10B","3","A","2010-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"41007533","UMI NO IE","1","86","EAST 3 STREET","10003","6466541122","49","2012-07-17 00:00:00","U","08A","9","B","2012-07-17 00:00:00","2013-09-13 01:01:06.177000000" +"41007823","MASA, BARMASA","1","10","COLUMBUS CIRCLE","10019","2128239828","49","2010-09-30 00:00:00","C","10B","9","A","2010-09-30 00:00:00","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2013-02-06 00:00:00","P","04L","12","","","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2010-09-09 00:00:00","F","02G","41","C","2010-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2011-02-19 00:00:00","B","04L","11","A","2011-02-19 00:00:00","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2013-08-14 00:00:00","P","06D","25","","","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2010-12-30 00:00:00","P","10B","23","","","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2011-01-12 00:00:00","C","04L","13","A","2011-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2012-08-16 00:00:00","F","02B","54","","","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2012-08-16 00:00:00","F","06C","54","","","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2013-04-18 00:00:00","F","08A","23","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2010-12-28 00:00:00","F","04C","24","C","2010-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2012-04-10 00:00:00","F","06D","33","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2012-04-10 00:00:00","F","06E","33","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2012-09-25 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"40911185","PAESANO'S PIZZA","5","12","BRADLEY AVENUE","10314","7187612070","62","2011-05-03 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2013-07-12 00:00:00","P","04J","24","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2011-04-29 00:00:00","F","02B","64","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2012-02-02 00:00:00","P","02B","16","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2013-07-10 00:00:00","F","04L","47","","","2013-09-13 01:01:06.177000000" +"40913721","CAFE VIRGO","1","249","EAST 49 STREET","10017","2124211238","49","2011-06-28 00:00:00","F","05H","30","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2011-02-15 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2011-07-27 00:00:00","U","02B","20","B","2011-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2011-12-20 00:00:00","F","02B","30","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2012-01-19 00:00:00","D","02G","10","A","2012-01-19 00:00:00","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2013-08-19 00:00:00","F","04C","34","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2012-05-16 00:00:00","F","04M","14","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2010-10-04 00:00:00","P","04H","22","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2011-03-03 00:00:00","F","04L","36","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2011-08-24 00:00:00","U","04L","24","B","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2012-03-01 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2012-03-12 00:00:00","U","04L","20","B","2012-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2012-08-02 00:00:00","F","04L","13","C","2012-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2010-12-13 00:00:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2010-12-13 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2011-12-16 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2011-12-29 00:00:00","U","04L","16","B","2011-12-29 00:00:00","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2012-08-20 00:00:00","P","10B","17","","","2013-09-13 01:01:06.177000000" +"41009719","MURPHY'S BAR","4","48-20","SKILLMAN AVENUE","11104","7184299445","47","2011-10-08 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2012-11-15 00:00:00","G","04L","47","","","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2012-11-15 00:00:00","G","10F","47","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2012-03-09 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-03-06 00:00:00","F","10B","38","C","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-08-15 00:00:00","F","06C","32","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2010-09-08 00:00:00","F","04M","24","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2010-09-08 00:00:00","F","06A","24","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2011-02-28 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2013-02-19 00:00:00","F","02H","35","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2013-02-19 00:00:00","F","04L","35","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2011-01-20 00:00:00","D","06E","9","A","2011-01-20 00:00:00","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2011-01-20 00:00:00","D","10F","9","A","2011-01-20 00:00:00","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-01-24 00:00:00","F","08C","29","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-02-14 00:00:00","U","04L","11","B","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-08-08 00:00:00","F","10F","33","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-01-07 00:00:00","F","04C","58","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-01-07 00:00:00","F","06C","58","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-01-29 00:00:00","U","04L","27","B","2013-01-29 00:00:00","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-01-29 00:00:00","U","06E","27","B","2013-01-29 00:00:00","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-06-15 00:00:00","G","04N","88","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-06-15 00:00:00","G","06F","88","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-06-15 00:00:00","G","08A","88","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-06-15 00:00:00","G","10F","88","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-06-18 00:00:00","O","10F","7","P","2013-06-18 00:00:00","2013-09-13 01:01:06.177000000" +"40950507","YUMMY SUSHI","1","30","ROCKFEELLER PLAZA","10020","2124592100","49","2011-11-18 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"40950507","YUMMY SUSHI","1","30","ROCKFEELLER PLAZA","10020","2124592100","49","2011-11-28 00:00:00","F","02G","10","C","2011-11-28 00:00:00","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2010-11-23 00:00:00","F","02G","48","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2010-12-15 00:00:00","F","10B","21","C","2010-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2011-04-25 00:00:00","F","06D","42","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2011-06-22 00:00:00","F","02G","23","C","2011-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2011-12-22 00:00:00","F","02G","10","C","2011-12-22 00:00:00","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2012-05-08 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2012-12-05 00:00:00","F","04K","31","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2013-08-06 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2013-08-06 00:00:00","P","10B","21","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2010-05-27 12:33:00","F","04C","28","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2011-07-13 00:00:00","D","04L","13","A","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41015916","SUBWAY","4","253-10","HILLSIDE AVENUE","11426","7183432965","69","2009-11-25 16:01:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41015916","SUBWAY","4","253-10","HILLSIDE AVENUE","11426","7183432965","69","2009-11-25 16:01:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41015916","SUBWAY","4","253-10","HILLSIDE AVENUE","11426","7183432965","69","2009-11-25 16:01:00","F","06B","49","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2010-10-04 00:00:00","C","08A","5","A","2010-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2011-02-28 00:00:00","F","05D","28","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2011-02-28 00:00:00","F","22B","28","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2011-08-02 00:00:00","U","02G","11","B","2011-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2012-02-08 00:00:00","D","10B","11","A","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2013-02-19 00:00:00","F","02B","35","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2010-09-07 00:00:00","P","06A","18","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2010-11-12 00:00:00","U","06F","22","B","2010-11-12 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2011-06-29 00:00:00","F","06C","29","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2011-10-26 00:00:00","F","10F","60","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2012-04-04 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2010-11-17 00:00:00","F","06C","40","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2011-05-13 00:00:00","P","06F","23","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2011-05-26 00:00:00","F","10F","29","C","2011-05-26 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2011-10-26 00:00:00","F","06F","53","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2011-12-06 00:00:00","F","02G","31","C","2011-12-06 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2012-04-16 00:00:00","F","10B","26","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2012-04-26 00:00:00","U","06D","12","B","2012-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2013-03-06 00:00:00","G","04L","55","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2013-03-06 00:00:00","G","06E","55","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2013-03-06 00:00:00","G","08A","55","","","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2011-03-31 00:00:00","F","04L","46","","","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2011-03-31 00:00:00","F","06C","46","","","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2011-05-06 00:00:00","U","06D","15","B","2011-05-06 00:00:00","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2011-09-14 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2011-09-26 00:00:00","U","06E","11","B","2011-09-26 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2012-04-17 00:00:00","U","10H","12","B","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2012-12-05 00:00:00","F","04C","66","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2012-12-05 00:00:00","F","10D","66","","","2013-09-13 01:01:06.177000000" +"40927698","YOKOHAMA JAPANESE RESTAURANT","2","438","WEST 238 STREET","10463","7185492606","49","2010-11-18 00:00:00","C","04L","5","A","2010-11-18 00:00:00","2013-09-13 01:01:06.177000000" +"40927698","YOKOHAMA JAPANESE RESTAURANT","2","438","WEST 238 STREET","10463","7185492606","49","2012-01-04 00:00:00","P","06D","25","","","2013-09-13 01:01:06.177000000" +"40927698","YOKOHAMA JAPANESE RESTAURANT","2","438","WEST 238 STREET","10463","7185492606","49","2012-06-20 00:00:00","F","06C","48","","","2013-09-13 01:01:06.177000000" +"40927698","YOKOHAMA JAPANESE RESTAURANT","2","438","WEST 238 STREET","10463","7185492606","49","2012-06-28 00:00:00","U","04L","13","B","2012-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"40927881","OLIVE GARDEN","1","696","AVENUE OF THE AMERICAS","10010","2122551240","48","2013-03-30 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40927881","OLIVE GARDEN","1","696","AVENUE OF THE AMERICAS","10010","2122551240","48","2013-03-30 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2010-09-09 00:00:00","F","04K","41","C","2010-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2010-09-09 00:00:00","F","04N","41","C","2010-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2010-09-09 00:00:00","F","05D","41","C","2010-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2010-09-09 00:00:00","F","10B","41","C","2010-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2012-02-10 00:00:00","U","06E","16","B","2012-02-10 00:00:00","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2012-08-21 00:00:00","D","04H","11","A","2012-08-21 00:00:00","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2010-08-18 00:00:00","F","10E","24","","","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2011-11-29 00:00:00","U","04M","16","B","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2012-06-12 00:00:00","D","10F","13","A","2012-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2012-01-20 00:00:00","D","10F","13","A","2012-01-20 00:00:00","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-01-24 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-08-08 00:00:00","F","04M","33","","","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2011-03-29 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2011-05-11 00:00:00","F","06C","9","C","2011-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2011-05-11 00:00:00","F","10B","9","C","2011-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"41004774","AKA SUSHI JAPANESE RESTAURANT","5","4342","AMBOY ROAD","10312","7186088981","49","2010-10-25 00:00:00","D","10I","5","A","2010-10-25 00:00:00","2013-09-13 01:01:06.177000000" +"41004774","AKA SUSHI JAPANESE RESTAURANT","5","4342","AMBOY ROAD","10312","7186088981","49","2011-04-05 00:00:00","F","09B","31","","","2013-09-13 01:01:06.177000000" +"41004774","AKA SUSHI JAPANESE RESTAURANT","5","4342","AMBOY ROAD","10312","7186088981","49","2011-05-03 00:00:00","D","02B","11","A","2011-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41004774","AKA SUSHI JAPANESE RESTAURANT","5","4342","AMBOY ROAD","10312","7186088981","49","2011-05-03 00:00:00","D","10B","11","A","2011-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41004774","AKA SUSHI JAPANESE RESTAURANT","5","4342","AMBOY ROAD","10312","7186088981","49","2013-05-16 00:00:00","F","04A","30","","","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2011-09-22 00:00:00","P","04C","22","","","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2011-10-20 00:00:00","D","10B","9","A","2011-10-20 00:00:00","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2012-03-14 00:00:00","U","06C","9","B","2012-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2012-03-14 00:00:00","U","10B","9","B","2012-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2012-10-04 00:00:00","P","10B","26","","","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2013-04-04 00:00:00","P","04C","7","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2012-12-18 00:00:00","P","04N","19","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2012-12-18 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"40945916","CALIBELLA BAKERY","3","164","WYCKOFF AVENUE","11237","7184973614","08","2012-07-25 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40950507","YUMMY SUSHI","1","30","ROCKFEELLER PLAZA","10020","2124592100","49","2011-11-18 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2010-12-08 00:00:00","G","09C","93","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2011-04-19 00:00:00","P","06F","23","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2011-09-16 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2011-09-16 00:00:00","P","06A","17","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2012-08-21 00:00:00","D","10F","7","A","2012-08-21 00:00:00","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2010-12-15 00:00:00","F","04L","21","C","2010-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2011-11-22 00:00:00","F","06D","29","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2012-05-08 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2012-06-20 00:00:00","D","06C","10","A","2012-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2012-12-05 00:00:00","F","06C","31","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2013-08-06 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"40979259","BAI SUSHI","4","37-03","BROADWAY","11103","7189567445","49","2012-01-26 00:00:00","P","06B","18","","","2013-09-13 01:01:06.177000000" +"40979259","BAI SUSHI","4","37-03","BROADWAY","11103","7189567445","49","2012-01-26 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2011-03-31 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2011-04-19 00:00:00","F","02G","53","C","2011-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2011-11-17 00:00:00","U","04L","25","B","2011-11-17 00:00:00","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2012-03-26 00:00:00","P","10B","25","","","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-11-15 00:00:00","G","06D","45","","","2013-09-13 01:01:06.177000000" +"41007533","UMI NO IE","1","86","EAST 3 STREET","10003","6466541122","49","2011-08-09 00:00:00","U","02G","17","B","2011-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41007533","UMI NO IE","1","86","EAST 3 STREET","10003","6466541122","49","2012-01-03 00:00:00","U","05D","17","B","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41007823","MASA, BARMASA","1","10","COLUMBUS CIRCLE","10019","2128239828","49","2013-09-03 00:00:00","P","06F","23","","","2013-09-13 01:01:06.177000000" +"41007823","MASA, BARMASA","1","10","COLUMBUS CIRCLE","10019","2128239828","49","2013-09-03 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2012-01-24 00:00:00","D","06E","13","A","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2010-12-30 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2012-08-16 00:00:00","F","08A","54","","","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2013-04-18 00:00:00","F","04L","23","","","2013-09-13 01:01:06.177000000" +"40932723","YUMMY VILLAGE SUSHI","1","95","MACDOUGAL STREET","10012","2126738811","49","2013-04-18 00:00:00","F","08C","23","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2010-12-14 00:00:00","P","04C","22","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2010-12-28 00:00:00","F","06B","24","C","2010-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2011-05-24 00:00:00","F","04C","33","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2011-10-26 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2012-09-25 00:00:00","P","04J","24","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2012-09-25 00:00:00","P","06C","24","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2013-07-12 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2012-01-10 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-01-24 00:00:00","F","06E","29","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-02-14 00:00:00","U","08A","11","B","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"40983549","EL SOMBRERO RESTAURANT","3","108 ","STANTON STREET ","10002","2122544188","55","2011-09-20 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40983549","EL SOMBRERO RESTAURANT","3","108 ","STANTON STREET ","10002","2122544188","55","2011-09-20 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2010-10-21 00:00:00","P","09B","18","","","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2011-09-26 00:00:00","U","08A","11","B","2011-09-26 00:00:00","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2012-04-04 00:00:00","D","02G","13","A","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2012-04-04 00:00:00","D","06C","13","A","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"40933887","PEEP","1","177","PRINCE STREET","10012","2122547337","82","2013-03-28 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2010-12-13 00:00:00","F","02B","36","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2011-12-16 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2011-12-29 00:00:00","U","02G","16","B","2011-12-29 00:00:00","2013-09-13 01:01:06.177000000" +"41009446","NESHER FINE FOODS","3","4023","13 AVENUE","11218","7184373631","50","2011-08-23 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2010-11-16 00:00:00","C","10B","9","A","2010-11-16 00:00:00","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2012-10-22 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2013-05-17 00:00:00","P","10F","24","","","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2010-09-09 00:00:00","F","04L","41","C","2010-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2012-03-01 00:00:00","F","04C","54","C","2012-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2011-04-25 00:00:00","F","02G","42","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2011-11-22 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2012-12-05 00:00:00","F","06D","31","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2012-03-09 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-03-06 00:00:00","F","04L","38","C","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-08-15 00:00:00","F","06B","32","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-08-15 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2011-07-13 00:00:00","U","02G","12","B","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2011-10-26 00:00:00","F","02B","60","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2012-12-05 00:00:00","F","08A","66","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2013-07-16 00:00:00","F","06F","35","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2013-07-16 00:00:00","F","09C","35","","","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2011-03-31 00:00:00","F","06F","46","","","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2011-03-31 00:00:00","F","08A","46","","","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2011-09-14 00:00:00","P","06D","26","","","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2012-08-21 00:00:00","D","10F","11","A","2012-08-21 00:00:00","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2013-08-14 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2010-08-18 00:00:00","F","04C","24","","","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2011-06-22 00:00:00","F","02G","41","","","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2011-10-27 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2011-11-28 00:00:00","D","04C","11","A","2011-11-28 00:00:00","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2012-04-06 00:00:00","P","06D","20","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2012-04-06 00:00:00","P","06E","20","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2013-09-11 00:00:00","F","04M","46","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2010-09-08 00:00:00","F","02G","24","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2012-06-28 00:00:00","P","05D","21","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2012-06-28 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2012-08-15 00:00:00","D","08C","13","A","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2012-08-15 00:00:00","D","10B","13","A","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2011-02-16 00:00:00","F","04L","56","","","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2011-12-16 00:00:00","P","06F","21","","","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2012-08-31 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2013-08-30 00:00:00","P","04L","24","","","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2013-08-30 00:00:00","P","04N","24","","","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2013-08-30 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2010-11-17 00:00:00","F","06A","40","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2010-12-02 00:00:00","C","04K","12","A","2010-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2010-12-02 00:00:00","C","08A","12","A","2010-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2011-05-26 00:00:00","F","02G","29","C","2011-05-26 00:00:00","2013-09-13 01:01:06.177000000" +"40979259","BAI SUSHI","4","37-03","BROADWAY","11103","7189567445","49","2011-09-08 00:00:00","P","04L","14","","","2013-09-13 01:01:06.177000000" +"40979259","BAI SUSHI","4","37-03","BROADWAY","11103","7189567445","49","2012-02-21 00:00:00","U","06C","13","B","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2011-06-16 00:00:00","D","04H","12","A","2011-06-16 00:00:00","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2011-08-09 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2012-01-18 00:00:00","U","08A","24","B","2012-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2012-01-18 00:00:00","U","10I","24","B","2012-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2012-06-21 00:00:00","U","10F","12","B","2012-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2011-12-06 00:00:00","F","06E","31","C","2011-12-06 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2013-03-06 00:00:00","G","02G","55","","","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2011-03-31 00:00:00","P","02B","20","","","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2011-10-15 00:00:00","F","02B","34","","","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2011-11-17 00:00:00","U","02B","25","B","2011-11-17 00:00:00","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2012-03-26 00:00:00","P","09C","25","","","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2012-09-05 00:00:00","U","04L","22","B","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-05-19 00:00:00","F","02B","28","","","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-06-28 00:00:00","U","08A","15","B","2011-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-11-18 00:00:00","O","10F","7","","","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2012-01-17 00:00:00","P","08A","4","","","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2012-01-24 00:00:00","D","06C","13","A","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2012-06-21 00:00:00","P","02B","12","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2010-10-06 00:00:00","F","06A","11","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2010-10-28 00:00:00","D","10F","13","A","2010-10-28 00:00:00","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2011-06-20 00:00:00","P","06E","18","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2011-12-08 00:00:00","F","06E","30","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2012-05-10 00:00:00","F","06C","33","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2012-12-05 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2012-12-05 00:00:00","F","10H","30","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2013-06-20 00:00:00","F","02G","62","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2012-02-23 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2012-02-23 00:00:00","F","06D","32","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2012-07-18 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2013-08-17 00:00:00","F","08C","36","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2013-08-17 00:00:00","F","10J","36","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2013-08-17 00:00:00","F","15J","","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2011-03-24 00:00:00","U","04M","18","B","2011-03-24 00:00:00","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2011-08-11 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2011-08-11 00:00:00","P","04L","24","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2012-03-01 00:00:00","F","04L","28","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2012-03-12 00:00:00","U","10F","20","B","2012-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2012-07-17 00:00:00","F","06D","52","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2012-08-02 00:00:00","F","08A","13","C","2012-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"40995563","LEGEND COOKHOUSE","4","135-11","ROCKAWAY BOULEVARD","11420","7188484444","17","2011-10-12 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"40995563","LEGEND COOKHOUSE","4","135-11","ROCKAWAY BOULEVARD","11420","7188484444","17","2011-10-12 00:00:00","G","99B","49","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2011-10-26 00:00:00","F","10B","60","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2011-11-03 00:00:00","U","02G","7","B","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2011-11-03 00:00:00","U","04H","7","B","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2012-12-05 00:00:00","F","06C","66","","","2013-09-13 01:01:06.177000000" +"40983549","EL SOMBRERO RESTAURANT","3","108 ","STANTON STREET ","10002","2122544188","55","2011-09-20 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40983549","EL SOMBRERO RESTAURANT","3","108 ","STANTON STREET ","10002","2122544188","55","2011-09-20 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40945916","CALIBELLA BAKERY","3","164","WYCKOFF AVENUE","11237","7184973614","08","2012-07-25 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-04-07 00:00:00","F","06D","31","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-10-04 00:00:00","F","04N","48","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-10-04 00:00:00","F","08A","48","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-12-15 00:00:00","F","06D","45","C","2011-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-12-15 00:00:00","F","10F","45","C","2011-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2012-04-21 00:00:00","F","06D","26","","","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2010-08-18 00:00:00","F","06C","24","","","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2010-10-26 00:00:00","C","02G","13","A","2010-10-26 00:00:00","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2011-06-22 00:00:00","F","04J","41","","","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2012-06-12 00:00:00","D","10B","13","A","2012-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2013-06-25 00:00:00","F","04H","27","","","2013-09-13 01:01:06.177000000" +"40984953","KUMBALA BAR","4","70-04","ROOSEVELT AVENUE","11372","7185077566","77","2011-06-10 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2010-09-20 00:00:00","C","10F","7","A","2010-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2011-09-10 00:00:00","P","06D","14","","","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2012-01-10 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2012-03-01 00:00:00","F","02B","54","C","2012-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2012-03-01 00:00:00","F","08A","54","C","2012-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2012-07-25 00:00:00","D","02G","12","A","2012-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2011-10-26 00:00:00","F","02G","60","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2011-10-26 00:00:00","F","06E","60","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2011-10-26 00:00:00","F","08A","60","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2012-04-17 00:00:00","U","04L","12","B","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2012-12-05 00:00:00","F","02G","66","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2012-12-05 00:00:00","F","06D","66","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2012-12-05 00:00:00","F","06E","66","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2012-12-05 00:00:00","F","10H","66","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2013-07-16 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2012-06-21 00:00:00","F","04L","37","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-02-14 00:00:00","U","10B","11","B","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"40979259","BAI SUSHI","4","37-03","BROADWAY","11103","7189567445","49","2010-09-29 00:00:00","C","99B","7","A","2010-09-29 00:00:00","2013-09-13 01:01:06.177000000" +"40979259","BAI SUSHI","4","37-03","BROADWAY","11103","7189567445","49","2011-09-08 00:00:00","P","06E","14","","","2013-09-13 01:01:06.177000000" +"40979259","BAI SUSHI","4","37-03","BROADWAY","11103","7189567445","49","2011-09-08 00:00:00","P","08A","14","","","2013-09-13 01:01:06.177000000" +"40979259","BAI SUSHI","4","37-03","BROADWAY","11103","7189567445","49","2011-09-20 00:00:00","D","08B","9","A","2011-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"40979259","BAI SUSHI","4","37-03","BROADWAY","11103","7189567445","49","2012-01-26 00:00:00","P","04M","18","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2011-12-27 00:00:00","D","10J","2","A","2011-12-27 00:00:00","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-01-07 00:00:00","F","04M","58","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-01-29 00:00:00","U","08A","27","B","2013-01-29 00:00:00","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-06-15 00:00:00","G","04L","88","","","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2010-08-18 00:00:00","F","02G","24","","","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2011-06-22 00:00:00","F","04L","41","","","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2011-06-22 00:00:00","F","10E","41","","","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2011-07-26 00:00:00","U","02G","18","B","2011-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2011-10-27 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2011-03-31 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2012-04-11 00:00:00","D","04L","13","A","2012-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2012-08-23 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-05-19 00:00:00","F","04L","28","","","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-05-19 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-10-24 00:00:00","P","08C","17","","","2013-09-13 01:01:06.177000000" +"40950507","YUMMY SUSHI","1","30","ROCKFEELLER PLAZA","10020","2124592100","49","2011-02-23 00:00:00","P","02G","12","","","2013-09-13 01:01:06.177000000" +"40950507","YUMMY SUSHI","1","30","ROCKFEELLER PLAZA","10020","2124592100","49","2011-12-05 00:00:00","U","02B","21","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2011-04-25 00:00:00","F","10F","42","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2011-11-22 00:00:00","F","04C","29","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2011-11-22 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2012-05-08 00:00:00","P","04H","22","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2012-05-08 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2012-12-05 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2013-06-25 00:00:00","F","06E","27","","","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2013-06-25 00:00:00","F","10B","27","","","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2010-10-21 00:00:00","P","04C","18","","","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2011-03-31 00:00:00","F","02B","46","","","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2011-09-14 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2011-08-12 00:00:00","F","06A","53","C","2011-08-12 00:00:00","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2011-08-12 00:00:00","F","10B","53","C","2011-08-12 00:00:00","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2013-03-06 00:00:00","F","06D","34","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2013-03-06 00:00:00","F","08A","34","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2013-03-29 00:00:00","U","04L","21","B","2013-03-29 00:00:00","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2013-08-12 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2011-06-20 00:00:00","F","04C","55","","","2013-09-13 01:01:06.177000000" +"40979259","BAI SUSHI","4","37-03","BROADWAY","11103","7189567445","49","2010-09-29 00:00:00","C","06E","7","A","2010-09-29 00:00:00","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2011-04-19 00:00:00","F","10F","53","C","2011-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2011-10-15 00:00:00","F","04C","34","","","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2012-03-26 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2012-09-05 00:00:00","U","08A","22","B","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2010-12-29 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2011-11-17 00:00:00","P","10B","27","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2012-04-18 00:00:00","U","02G","14","B","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2012-12-07 00:00:00","P","04L","17","","","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2010-09-14 00:00:00","U","06C","19","B","2010-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2012-03-07 00:00:00","P","10H","7","","","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2010-09-09 00:00:00","F","04A","41","C","2010-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2011-02-19 00:00:00","B","10F","11","A","2011-02-19 00:00:00","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2012-02-01 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2013-08-14 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-10-24 00:00:00","P","04M","17","","","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-11-02 00:00:00","F","04N","54","C","2011-11-02 00:00:00","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-11-02 00:00:00","F","06C","54","C","2011-11-02 00:00:00","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-11-15 00:00:00","G","04L","45","","","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2012-01-24 00:00:00","D","10F","13","A","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2012-07-05 00:00:00","U","04C","13","B","2012-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41033036","CHANCE","3","223","SMITH STREET","11201","7182421515","05","2011-02-02 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41033036","CHANCE","3","223","SMITH STREET","11201","7182421515","05","2011-02-02 00:00:00","F","04K","49","","","2013-09-13 01:01:06.177000000" +"41033036","CHANCE","3","223","SMITH STREET","11201","7182421515","05","2011-02-02 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40983549","EL SOMBRERO RESTAURANT","3","108 ","STANTON STREET ","10002","2122544188","55","2011-09-20 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2011-06-16 00:00:00","D","10F","12","A","2011-06-16 00:00:00","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2011-08-09 00:00:00","F","06B","30","","","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2011-08-18 00:00:00","D","10F","2","A","2011-08-18 00:00:00","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2011-12-23 00:00:00","F","04A","36","","","2013-09-13 01:01:06.177000000" +"41004774","AKA SUSHI JAPANESE RESTAURANT","5","4342","AMBOY ROAD","10312","7186088981","49","2013-05-16 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"41004774","AKA SUSHI JAPANESE RESTAURANT","5","4342","AMBOY ROAD","10312","7186088981","49","2013-05-16 00:00:00","F","06E","30","","","2013-09-13 01:01:06.177000000" +"40983549","EL SOMBRERO RESTAURANT","3","108 ","STANTON STREET ","10002","2122544188","55","2011-09-20 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40983549","EL SOMBRERO RESTAURANT","3","108 ","STANTON STREET ","10002","2122544188","55","2011-09-20 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2011-04-25 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2011-08-03 00:00:00","F","10F","26","C","2011-08-03 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-02-08 00:00:00","F","02G","73","C","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-06-22 00:00:00","F","04H","38","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-07-02 00:00:00","F","10F","12","C","2012-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2010-10-28 00:00:00","D","02G","13","A","2010-10-28 00:00:00","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2011-06-20 00:00:00","P","10B","18","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2011-08-18 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2011-12-08 00:00:00","F","04A","30","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2011-12-19 00:00:00","U","10F","16","B","2011-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2012-05-10 00:00:00","F","08A","33","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2012-12-05 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2012-12-05 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2013-06-20 00:00:00","F","02B","62","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2013-06-20 00:00:00","F","04L","62","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2012-03-07 00:00:00","D","10F","7","A","2012-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2012-07-18 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2013-08-17 00:00:00","F","02B","36","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2010-10-04 00:00:00","P","08C","22","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2010-11-20 00:00:00","U","04L","10","B","2010-11-20 00:00:00","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2011-03-03 00:00:00","F","04C","36","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2011-08-24 00:00:00","U","06D","24","B","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2011-08-24 00:00:00","U","10F","24","B","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2012-03-12 00:00:00","U","06C","20","B","2012-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2012-07-17 00:00:00","F","06C","52","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2013-08-17 00:00:00","F","04M","36","","","2013-09-13 01:01:06.177000000" +"41035706","LA LECHONERA #2 RESTAURANT","3","429","NEW LOTS AVENUE","11207","7183424648","77","2011-01-20 00:00:00","G","06D","49","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2011-04-19 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2013-09-10 00:00:00","P","06F","25","","","2013-09-13 01:01:06.177000000" +"41007533","UMI NO IE","1","86","EAST 3 STREET","10003","6466541122","49","2011-08-09 00:00:00","U","10H","17","B","2011-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2011-09-10 00:00:00","P","04M","14","","","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2012-01-10 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2012-01-10 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2012-03-01 00:00:00","F","02G","54","C","2012-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2011-10-26 00:00:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2011-10-26 00:00:00","F","06E","32","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2011-11-29 00:00:00","F","04C","25","C","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2012-04-18 00:00:00","U","10F","25","B","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41058228","CHA-AN","1","230","EAST 9 STREET","10003","2122288030","49","2011-10-11 00:00:00","P","06C","27","","","2013-09-13 01:01:06.177000000" +"41058228","CHA-AN","1","230","EAST 9 STREET","10003","2122288030","49","2012-06-04 00:00:00","D","10F","10","A","2012-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2010-04-30 11:10:00","F","10G","31","","","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2011-05-09 00:00:00","P","06D","25","","","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2011-05-09 00:00:00","P","09C","25","","","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2012-03-01 00:00:00","D","10F","13","A","2012-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2010-11-30 00:00:00","F","04N","30","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2011-01-26 00:00:00","U","04N","16","B","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2011-01-26 00:00:00","U","10B","16","B","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-01-07 00:00:00","F","06D","58","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-06-15 00:00:00","G","02B","88","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-06-15 00:00:00","G","04M","88","","","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2012-10-22 00:00:00","F","04L","36","","","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2012-11-19 00:00:00","W","06C","19","","","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2012-06-12 00:00:00","D","02G","9","A","2012-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2012-12-20 00:00:00","P","06E","17","","","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2013-07-02 00:00:00","F","04J","34","","","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2013-07-02 00:00:00","F","06E","34","","","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2013-05-17 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2013-05-17 00:00:00","P","06E","24","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2011-06-14 00:00:00","F","06C","30","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2011-06-14 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2012-03-09 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2012-12-06 00:00:00","F","08C","36","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2012-12-06 00:00:00","F","10F","36","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-04-19 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-08-15 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2011-03-03 00:00:00","F","06D","36","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2011-03-03 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2011-03-03 00:00:00","F","08B","36","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2011-03-24 00:00:00","U","08A","18","B","2011-03-24 00:00:00","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2013-09-04 00:00:00","P","04H","18","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2013-09-04 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2010-11-12 00:00:00","U","02G","22","B","2010-11-12 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2011-06-29 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2011-06-29 00:00:00","F","06E","29","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2011-07-13 00:00:00","U","06A","12","B","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2011-10-26 00:00:00","F","03C","60","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2012-12-05 00:00:00","F","04L","66","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2012-12-05 00:00:00","F","10F","66","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2013-07-16 00:00:00","F","10F","35","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2011-08-12 00:00:00","F","06D","53","C","2011-08-12 00:00:00","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2011-12-02 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2012-07-25 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2013-03-06 00:00:00","F","02G","34","","","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2010-08-20 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2010-08-20 00:00:00","F","06C","28","","","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2010-08-20 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2010-09-14 00:00:00","U","10B","19","B","2010-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2011-03-26 00:00:00","D","02G","13","A","2011-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2012-03-07 00:00:00","P","06D","7","","","2013-09-13 01:01:06.177000000" +"41048429","CHIPOTLE MEXICAN GRILL","3","185","MONTAGUE STREET","11201","7182439109","81","2012-05-01 00:00:00","F","06A","49","C","2012-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41048429","CHIPOTLE MEXICAN GRILL","3","185","MONTAGUE STREET","11201","7182439109","81","2012-05-01 00:00:00","F","08B","49","C","2012-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41068099","NAKA NAKA","1","458","WEST 17 STREET","10011","2129298544","49","2011-05-03 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"41068173","LOUISIANA'S WHISKEY RIVER","1","575","2 AVENUE","10016","2126796799","03","2013-01-09 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2011-06-22 00:00:00","F","04A","41","","","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2011-07-26 00:00:00","U","04C","18","B","2011-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2011-10-27 00:00:00","P","06E","18","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2011-03-03 00:00:00","F","06C","36","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2011-03-24 00:00:00","U","06C","18","B","2011-03-24 00:00:00","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2011-03-24 00:00:00","U","10B","18","B","2011-03-24 00:00:00","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2011-08-24 00:00:00","U","08A","24","B","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2012-03-12 00:00:00","U","08A","20","B","2012-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2012-07-17 00:00:00","F","04L","52","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2012-07-17 00:00:00","F","10F","52","","","2013-09-13 01:01:06.177000000" +"40995563","LEGEND COOKHOUSE","4","135-11","ROCKAWAY BOULEVARD","11420","7188484444","17","2011-10-12 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2011-04-25 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2011-04-25 00:00:00","F","10F","31","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-01-03 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-02-08 00:00:00","F","06C","73","C","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-02-08 00:00:00","F","10F","73","C","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-06-22 00:00:00","F","10B","38","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-07-18 00:00:00","G","08A","40","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-07-25 00:00:00","O","08A","10","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-12-07 00:00:00","F","02B","30","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-12-07 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2011-02-16 00:00:00","F","02B","56","","","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2011-02-16 00:00:00","F","06C","56","","","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2011-02-16 00:00:00","F","08C","56","","","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2011-02-16 00:00:00","F","10A","56","","","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2011-03-04 00:00:00","U","04L","7","B","2011-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41004774","AKA SUSHI JAPANESE RESTAURANT","5","4342","AMBOY ROAD","10312","7186088981","49","2012-02-28 00:00:00","D","10F","3","A","2012-02-28 00:00:00","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2013-08-30 00:00:00","P","06F","24","","","2013-09-13 01:01:06.177000000" +"41015916","SUBWAY","4","253-10","HILLSIDE AVENUE","11426","7183432965","69","2009-11-25 16:01:00","F","10G","49","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2011-07-07 00:00:00","U","99B","10","B","2011-07-07 00:00:00","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-01-07 00:00:00","F","06F","58","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-01-29 00:00:00","U","04M","27","B","2013-01-29 00:00:00","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-01-29 00:00:00","U","06C","27","B","2013-01-29 00:00:00","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-01-29 00:00:00","U","10B","27","B","2013-01-29 00:00:00","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-06-15 00:00:00","G","06C","88","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-06-15 00:00:00","G","10B","88","","","2013-09-13 01:01:06.177000000" +"41070399","HARU","1","220","PARK AVENUE SOUTH","10003","6464280989","49","2011-01-25 00:00:00","F","04L","47","","","2013-09-13 01:01:06.177000000" +"41070399","HARU","1","220","PARK AVENUE SOUTH","10003","6464280989","49","2011-01-25 00:00:00","F","08A","47","","","2013-09-13 01:01:06.177000000" +"41070399","HARU","1","220","PARK AVENUE SOUTH","10003","6464280989","49","2013-07-24 00:00:00","P","04M","24","","","2013-09-13 01:01:06.177000000" +"41070415","GARI","1","370","COLUMBUS AVENUE","10024","2123624816","49","2011-08-04 00:00:00","D","10F","12","A","2011-08-04 00:00:00","2013-09-13 01:01:06.177000000" +"40979259","BAI SUSHI","4","37-03","BROADWAY","11103","7189567445","49","2011-09-20 00:00:00","D","06C","9","A","2011-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"40979259","BAI SUSHI","4","37-03","BROADWAY","11103","7189567445","49","2012-02-21 00:00:00","U","02B","13","B","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2011-10-15 00:00:00","F","06C","34","","","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2012-03-26 00:00:00","P","06D","25","","","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2012-04-11 00:00:00","D","08A","13","A","2012-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2010-11-17 00:00:00","F","08A","40","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2010-12-02 00:00:00","C","04L","12","A","2010-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2011-05-13 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2011-10-26 00:00:00","F","04L","53","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2011-12-06 00:00:00","F","04C","31","C","2011-12-06 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2012-09-06 00:00:00","F","04J","36","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2010-11-23 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2010-12-08 00:00:00","G","04L","93","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2011-05-05 00:00:00","D","09C","5","A","2011-05-05 00:00:00","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2012-01-24 00:00:00","U","06F","16","B","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2012-01-24 00:00:00","U","08A","16","B","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2012-01-24 00:00:00","U","10F","16","B","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2013-02-27 00:00:00","F","02G","78","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2013-09-10 00:00:00","P","06D","25","","","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2012-04-11 00:00:00","D","10B","13","A","2012-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2012-09-05 00:00:00","U","10B","22","B","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2010-12-29 00:00:00","P","02B","20","","","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-06-28 00:00:00","U","04L","15","B","2011-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-11-02 00:00:00","F","06A","54","C","2011-11-02 00:00:00","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-11-02 00:00:00","F","08A","54","C","2011-11-02 00:00:00","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-11-02 00:00:00","F","08B","54","C","2011-11-02 00:00:00","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-11-02 00:00:00","F","10D","54","C","2011-11-02 00:00:00","2013-09-13 01:01:06.177000000" +"41058228","CHA-AN","1","230","EAST 9 STREET","10003","2122288030","49","2011-10-11 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"41058228","CHA-AN","1","230","EAST 9 STREET","10003","2122288030","49","2011-10-11 00:00:00","P","05D","27","","","2013-09-13 01:01:06.177000000" +"41058228","CHA-AN","1","230","EAST 9 STREET","10003","2122288030","49","2011-10-11 00:00:00","P","10H","27","","","2013-09-13 01:01:06.177000000" +"41007533","UMI NO IE","1","86","EAST 3 STREET","10003","6466541122","49","2012-07-03 00:00:00","P","04L","13","","","2013-09-13 01:01:06.177000000" +"41007823","MASA, BARMASA","1","10","COLUMBUS CIRCLE","10019","2128239828","49","2011-09-07 00:00:00","D","04H","12","A","2011-09-07 00:00:00","2013-09-13 01:01:06.177000000" +"41007823","MASA, BARMASA","1","10","COLUMBUS CIRCLE","10019","2128239828","49","2013-09-03 00:00:00","P","06E","23","","","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2011-05-09 00:00:00","P","10B","25","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2011-10-26 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2011-10-26 00:00:00","F","04N","32","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2012-04-10 00:00:00","F","10A","33","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2012-04-10 00:00:00","F","10B","33","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2012-04-18 00:00:00","U","06C","25","B","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"40983549","EL SOMBRERO RESTAURANT","3","108 ","STANTON STREET ","10002","2122544188","55","2011-09-20 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40983549","EL SOMBRERO RESTAURANT","3","108 ","STANTON STREET ","10002","2122544188","55","2011-09-20 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-08-10 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-10-04 00:00:00","F","04L","48","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2010-11-30 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2010-11-30 00:00:00","F","99B","30","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-01-07 00:00:00","F","08A","58","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-06-15 00:00:00","G","06D","88","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-06-18 00:00:00","O","10B","7","P","2013-06-18 00:00:00","2013-09-13 01:01:06.177000000" +"41060828","49 GROVE","1","49","GROVE STREET","10014","2127271100","03","2012-06-07 00:00:00","D","06D","7","A","2012-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41060828","49 GROVE","1","49","GROVE STREET","10014","2127271100","03","2012-06-07 00:00:00","D","10F","7","A","2012-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41009446","NESHER FINE FOODS","3","4023","13 AVENUE","11218","7184373631","50","2011-08-23 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"41009446","NESHER FINE FOODS","3","4023","13 AVENUE","11218","7184373631","50","2011-08-23 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41009446","NESHER FINE FOODS","3","4023","13 AVENUE","11218","7184373631","50","2011-08-23 00:00:00","G","99B","49","","","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2012-05-23 00:00:00","P","04C","16","","","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2012-05-23 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2012-12-20 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2013-01-30 00:00:00","D","02G","13","A","2013-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2010-11-16 00:00:00","P","06F","18","","","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2010-11-16 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2011-06-02 00:00:00","P","06F","23","","","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2010-11-16 00:00:00","C","02G","9","A","2010-11-16 00:00:00","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2011-11-09 00:00:00","D","08A","10","A","2011-11-09 00:00:00","2013-09-13 01:01:06.177000000" +"41004774","AKA SUSHI JAPANESE RESTAURANT","5","4342","AMBOY ROAD","10312","7186088981","49","2011-05-03 00:00:00","D","10F","11","A","2011-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41004774","AKA SUSHI JAPANESE RESTAURANT","5","4342","AMBOY ROAD","10312","7186088981","49","2011-09-20 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2011-06-14 00:00:00","F","04K","30","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2012-12-06 00:00:00","F","02B","36","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-03-06 00:00:00","F","04C","38","C","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-03-06 00:00:00","F","06C","38","C","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-08-15 00:00:00","F","10I","32","","","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2010-09-20 00:00:00","C","06F","7","A","2010-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2011-09-10 00:00:00","P","08A","14","","","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2011-09-22 00:00:00","D","06C","5","A","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2012-03-15 00:00:00","D","06C","10","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2010-11-23 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2010-12-08 00:00:00","G","08A","93","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2011-04-19 00:00:00","P","06A","23","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2011-04-19 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2011-09-28 00:00:00","B","06A","12","A","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2012-08-09 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2011-01-18 00:00:00","F","04L","40","","","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2011-01-18 00:00:00","F","06D","40","","","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2012-06-15 00:00:00","P","09B","22","","","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2011-04-12 00:00:00","P","06E","26","","","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2011-09-16 00:00:00","D","06C","6","A","2011-09-16 00:00:00","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2012-08-29 00:00:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2013-09-10 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2013-09-10 00:00:00","P","09C","25","","","2013-09-13 01:01:06.177000000" +"41012979","HALAL COFFEE SHOP RESTAURANT","2","1150","SHERMAN AVENUE","10456","7184108202","02","2011-03-29 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41068099","NAKA NAKA","1","458","WEST 17 STREET","10011","2129298544","49","2010-02-03 20:02:00","U","15L","","","","2013-09-13 01:01:06.177000000" +"41068173","LOUISIANA'S WHISKEY RIVER","1","575","2 AVENUE","10016","2126796799","03","2013-01-09 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41068173","LOUISIANA'S WHISKEY RIVER","1","575","2 AVENUE","10016","2126796799","03","2013-01-09 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"41007533","UMI NO IE","1","86","EAST 3 STREET","10003","6466541122","49","2011-06-02 00:00:00","F","05F","63","","","2013-09-13 01:01:06.177000000" +"41007533","UMI NO IE","1","86","EAST 3 STREET","10003","6466541122","49","2012-07-03 00:00:00","P","08A","13","","","2013-09-13 01:01:06.177000000" +"41007533","UMI NO IE","1","86","EAST 3 STREET","10003","6466541122","49","2012-07-17 00:00:00","U","04L","9","B","2012-07-17 00:00:00","2013-09-13 01:01:06.177000000" +"41007823","MASA, BARMASA","1","10","COLUMBUS CIRCLE","10019","2128239828","49","2011-09-07 00:00:00","D","06B","12","A","2011-09-07 00:00:00","2013-09-13 01:01:06.177000000" +"41068576","PROMESA CAFETERIA","2","1776","CLAY AVENUE","10457","3476493004","03","2011-08-08 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2010-12-14 00:00:00","P","06F","22","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2011-05-24 00:00:00","F","02G","33","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2011-11-29 00:00:00","F","10B","25","C","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2012-04-18 00:00:00","U","02G","25","B","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41081337","GEM SUSHI","1","352","EAST 86 STREET","10028","2127370086","49","2012-04-04 00:00:00","P","06E","15","","","2013-09-13 01:01:06.177000000" +"41081337","GEM SUSHI","1","352","EAST 86 STREET","10028","2127370086","49","2012-09-19 00:00:00","D","10H","12","A","2012-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41004774","AKA SUSHI JAPANESE RESTAURANT","5","4342","AMBOY ROAD","10312","7186088981","49","2010-10-25 00:00:00","D","10F","5","A","2010-10-25 00:00:00","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2011-06-17 00:00:00","F","06C","31","","","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2013-05-22 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41009446","NESHER FINE FOODS","3","4023","13 AVENUE","11218","7184373631","50","2011-08-23 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41009446","NESHER FINE FOODS","3","4023","13 AVENUE","11218","7184373631","50","2011-08-23 00:00:00","G","10A","49","","","2013-09-13 01:01:06.177000000" +"41009446","NESHER FINE FOODS","3","4023","13 AVENUE","11218","7184373631","50","2011-08-23 00:00:00","G","10B","49","","","2013-09-13 01:01:06.177000000" +"41070399","HARU","1","220","PARK AVENUE SOUTH","10003","6464280989","49","2012-08-14 00:00:00","D","06D","11","A","2012-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41070399","HARU","1","220","PARK AVENUE SOUTH","10003","6464280989","49","2012-08-14 00:00:00","D","10F","11","A","2012-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41070415","GARI","1","370","COLUMBUS AVENUE","10024","2123624816","49","2011-05-13 00:00:00","F","02B","42","","","2013-09-13 01:01:06.177000000" +"41070415","GARI","1","370","COLUMBUS AVENUE","10024","2123624816","49","2011-05-13 00:00:00","F","08A","42","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2010-12-08 00:00:00","G","04H","93","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2010-12-08 00:00:00","G","05D","93","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2010-12-08 00:00:00","G","06A","93","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2011-04-19 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2011-05-05 00:00:00","D","10F","5","A","2011-05-05 00:00:00","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2012-01-03 00:00:00","P","04C","26","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2012-08-09 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2013-02-27 00:00:00","F","04D","78","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2013-02-27 00:00:00","F","04L","78","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2013-02-27 00:00:00","F","06A","78","","","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2012-10-22 00:00:00","F","06F","36","","","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2012-11-15 00:00:00","G","08A","47","","","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2012-11-20 00:00:00","O","10F","3","C","2012-11-20 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2010-11-17 00:00:00","F","10B","40","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2011-05-26 00:00:00","F","09B","29","C","2011-05-26 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2012-04-26 00:00:00","U","06A","12","B","2012-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2012-09-06 00:00:00","F","08B","36","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2012-09-06 00:00:00","F","10F","36","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2013-03-07 00:00:00","O","10F","3","P","2013-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41007533","UMI NO IE","1","86","EAST 3 STREET","10003","6466541122","49","2011-06-02 00:00:00","F","04L","63","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2011-06-20 00:00:00","F","05D","55","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2011-06-20 00:00:00","F","06E","55","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2011-07-11 00:00:00","F","04L","26","C","2011-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2012-04-18 00:00:00","U","04M","14","B","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2012-12-07 00:00:00","P","04H","17","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2012-12-07 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2013-09-11 00:00:00","F","04L","46","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2011-06-14 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2012-04-19 00:00:00","U","04L","6","B","2012-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2012-12-06 00:00:00","F","06F","36","","","2013-09-13 01:01:06.177000000" +"41007823","MASA, BARMASA","1","10","COLUMBUS CIRCLE","10019","2128239828","49","2010-09-30 00:00:00","C","04H","9","A","2010-09-30 00:00:00","2013-09-13 01:01:06.177000000" +"41007823","MASA, BARMASA","1","10","COLUMBUS CIRCLE","10019","2128239828","49","2013-09-03 00:00:00","P","10A","23","","","2013-09-13 01:01:06.177000000" +"41007823","MASA, BARMASA","1","10","COLUMBUS CIRCLE","10019","2128239828","49","2013-09-03 00:00:00","P","10B","23","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2010-12-14 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2010-12-28 00:00:00","F","04N","24","C","2010-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2011-05-24 00:00:00","F","06D","33","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2011-05-24 00:00:00","F","06E","33","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2011-07-20 00:00:00","U","02G","10","B","2011-07-20 00:00:00","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2011-10-26 00:00:00","F","10F","32","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2011-11-29 00:00:00","F","06D","25","C","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2012-04-10 00:00:00","F","06F","33","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2012-04-18 00:00:00","U","06D","25","B","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2010-11-20 00:00:00","U","08A","10","B","2010-11-20 00:00:00","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2011-03-24 00:00:00","U","04L","18","B","2011-03-24 00:00:00","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2012-08-02 00:00:00","F","02G","13","C","2012-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2013-01-10 00:00:00","P","08A","13","","","2013-09-13 01:01:06.177000000" +"41085412","SOBA-KOH","1","309 ","EAST 5 STREET ","10003","2122542244","49","2011-12-13 00:00:00","P","04N","21","","","2013-09-13 01:01:06.177000000" +"41085412","SOBA-KOH","1","309 ","EAST 5 STREET ","10003","2122542244","49","2013-05-30 00:00:00","F","06E","34","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-05-20 00:00:00","U","04L","10","B","2011-05-20 00:00:00","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-10-04 00:00:00","F","02B","48","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-10-04 00:00:00","F","06E","48","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-12-15 00:00:00","F","06C","45","C","2011-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-12-15 00:00:00","F","06F","45","C","2011-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-12-15 00:00:00","F","10E","45","C","2011-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2012-04-21 00:00:00","F","06C","26","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2012-12-18 00:00:00","P","10D","19","","","2013-09-13 01:01:06.177000000" +"41075211","SUSHI GALLERY","3","71","CLARK STREET","11201","7182220308","49","2011-09-06 00:00:00","D","10F","4","A","2011-09-06 00:00:00","2013-09-13 01:01:06.177000000" +"40995563","LEGEND COOKHOUSE","4","135-11","ROCKAWAY BOULEVARD","11420","7188484444","17","2011-10-12 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"40995563","LEGEND COOKHOUSE","4","135-11","ROCKAWAY BOULEVARD","11420","7188484444","17","2011-10-12 00:00:00","G","06D","49","","","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2011-12-23 00:00:00","F","04N","36","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2011-07-05 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2011-12-19 00:00:00","U","04L","16","B","2011-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2012-05-10 00:00:00","F","06E","33","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2012-06-04 00:00:00","D","10F","12","A","2012-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2013-01-14 00:00:00","D","10D","13","A","2013-01-14 00:00:00","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2013-06-20 00:00:00","F","08A","62","","","2013-09-13 01:01:06.177000000" +"41009446","NESHER FINE FOODS","3","4023","13 AVENUE","11218","7184373631","50","2011-08-23 00:00:00","G","06D","49","","","2013-09-13 01:01:06.177000000" +"41009719","MURPHY'S BAR","4","48-20","SKILLMAN AVENUE","11104","7184299445","47","2011-10-08 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41009719","MURPHY'S BAR","4","48-20","SKILLMAN AVENUE","11104","7184299445","47","2011-10-08 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2012-08-08 00:00:00","D","09C","13","A","2012-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2013-08-17 00:00:00","F","06B","36","","","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2011-07-20 00:00:00","U","06C","17","B","2011-07-20 00:00:00","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2012-12-19 00:00:00","F","04N","36","","","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2012-12-19 00:00:00","F","06D","36","","","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2013-02-04 00:00:00","F","04H","42","C","2013-02-04 00:00:00","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2013-02-19 00:00:00","U","04N","6","","","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2013-07-09 00:00:00","P","04L","20","","","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2012-10-22 00:00:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2012-10-22 00:00:00","F","06D","36","","","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2012-11-19 00:00:00","W","08A","19","","","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2013-05-17 00:00:00","P","04C","24","","","2013-09-13 01:01:06.177000000" +"41087130","CAFE METRO","1","569","LEXINGTON AVENUE","10022","2122232670","14","2013-04-08 00:00:00","F","02H","49","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2012-12-06 00:00:00","F","04H","36","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-03-06 00:00:00","F","06F","38","C","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-03-06 00:00:00","F","09B","38","C","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-03-06 00:00:00","F","10H","38","C","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41087130","CAFE METRO","1","569","LEXINGTON AVENUE","10022","2122232670","14","2013-04-08 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2011-09-14 00:00:00","D","06E","7","A","2011-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2012-06-13 00:00:00","D","02G","13","A","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2011-07-20 00:00:00","U","08A","10","B","2011-07-20 00:00:00","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-01-07 00:00:00","F","04N","58","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-06-15 00:00:00","G","04C","88","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-06-15 00:00:00","G","06A","88","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-06-15 00:00:00","G","06B","88","","","2013-09-13 01:01:06.177000000" +"41087943","PERDITION","1","692","10 AVENUE","10019","2125825660","03","2011-12-02 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41087943","PERDITION","1","692","10 AVENUE","10019","2125825660","03","2011-12-02 00:00:00","F","05A","49","","","2013-09-13 01:01:06.177000000" +"41088125","MR. NOSH","3","3323","AVENUE N","11234","7182531400","50","2011-02-23 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2010-11-17 00:00:00","F","04N","40","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2011-10-26 00:00:00","F","06C","53","","","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2010-05-19 11:17:00","U","06D","20","","","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2011-01-18 00:00:00","F","02G","40","","","2013-09-13 01:01:06.177000000" +"41012979","HALAL COFFEE SHOP RESTAURANT","2","1150","SHERMAN AVENUE","10456","7184108202","02","2011-03-29 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41012979","HALAL COFFEE SHOP RESTAURANT","2","1150","SHERMAN AVENUE","10456","7184108202","02","2011-03-29 00:00:00","G","06A","49","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2012-04-16 00:00:00","F","06E","26","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2012-09-06 00:00:00","F","04A","36","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2013-03-28 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2011-01-18 00:00:00","F","04B","40","","","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2012-06-15 00:00:00","P","06E","22","","","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2012-08-29 00:00:00","F","04C","36","","","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2012-08-29 00:00:00","F","10F","36","","","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2013-05-14 00:00:00","F","04C","36","","","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2013-05-14 00:00:00","F","06E","36","","","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2013-05-14 00:00:00","F","10F","36","","","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2013-06-04 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-10-04 00:00:00","F","06D","48","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-12-15 00:00:00","F","08B","45","C","2011-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2012-04-21 00:00:00","F","02B","26","","","2013-09-13 01:01:06.177000000" +"41081337","GEM SUSHI","1","352","EAST 86 STREET","10028","2127370086","49","2012-09-10 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2011-03-04 00:00:00","U","02B","7","B","2011-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2011-06-17 00:00:00","F","04C","31","","","2013-09-13 01:01:06.177000000" +"41004774","AKA SUSHI JAPANESE RESTAURANT","5","4342","AMBOY ROAD","10312","7186088981","49","2010-09-22 00:00:00","P","06C","11","","","2013-09-13 01:01:06.177000000" +"41004774","AKA SUSHI JAPANESE RESTAURANT","5","4342","AMBOY ROAD","10312","7186088981","49","2011-10-07 00:00:00","D","10F","3","A","2011-10-07 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2011-05-13 00:00:00","P","06E","23","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2011-05-26 00:00:00","F","05D","29","C","2011-05-26 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2011-10-26 00:00:00","F","04A","53","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2011-10-26 00:00:00","F","06E","53","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2011-10-26 00:00:00","F","10B","53","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2011-12-06 00:00:00","F","06C","31","C","2011-12-06 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2012-04-16 00:00:00","F","04H","26","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2012-04-16 00:00:00","F","06C","26","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2012-04-16 00:00:00","F","06F","26","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2012-04-26 00:00:00","U","10F","12","B","2012-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2012-09-20 00:00:00","U","02G","25","B","2012-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2012-09-20 00:00:00","U","10H","25","B","2012-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2010-11-23 00:00:00","F","06D","30","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2010-11-23 00:00:00","F","06E","30","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2010-11-23 00:00:00","F","10H","30","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2010-12-08 00:00:00","G","02B","93","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2010-12-08 00:00:00","G","06C","93","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2011-09-28 00:00:00","B","06D","12","A","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2012-01-03 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2012-01-03 00:00:00","P","06E","26","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2012-01-24 00:00:00","U","04L","16","B","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2012-08-09 00:00:00","P","04J","23","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2013-02-27 00:00:00","F","02H","78","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2013-09-10 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2011-07-11 00:00:00","F","03C","26","C","2011-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2011-11-17 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2011-11-28 00:00:00","D","10B","11","A","2011-11-28 00:00:00","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2013-09-11 00:00:00","F","02G","46","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2010-10-26 00:00:00","F","08A","65","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2011-06-15 00:00:00","P","02G","16","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2011-08-12 00:00:00","F","04N","53","C","2011-08-12 00:00:00","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2011-08-12 00:00:00","F","10F","53","C","2011-08-12 00:00:00","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2011-12-16 00:00:00","U","02G","10","B","2011-12-16 00:00:00","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2012-07-25 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2013-08-12 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41007823","MASA, BARMASA","1","10","COLUMBUS CIRCLE","10019","2128239828","49","2013-09-03 00:00:00","P","06A","23","","","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2010-08-20 00:00:00","F","08C","28","","","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2010-09-14 00:00:00","U","04A","19","B","2010-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2012-03-17 00:00:00","U","04A","26","B","2012-03-17 00:00:00","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2012-03-17 00:00:00","U","06F","26","B","2012-03-17 00:00:00","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2011-08-09 00:00:00","F","04H","30","","","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2011-08-09 00:00:00","F","08C","30","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2010-12-14 00:00:00","P","04N","22","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2010-12-28 00:00:00","F","04H","24","C","2010-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2011-05-24 00:00:00","F","10F","33","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2011-10-26 00:00:00","F","06C","32","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2011-11-29 00:00:00","F","04L","25","C","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2013-07-12 00:00:00","P","10B","24","","","2013-09-13 01:01:06.177000000" +"41048429","CHIPOTLE MEXICAN GRILL","3","185","MONTAGUE STREET","11201","7182439109","81","2012-05-01 00:00:00","F","02B","49","C","2012-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2010-05-21 10:57:00","U","09D","18","","","2013-09-13 01:01:06.177000000" +"41085412","SOBA-KOH","1","309 ","EAST 5 STREET ","10003","2122542244","49","2011-06-10 00:00:00","F","05D","37","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2010-10-06 00:00:00","F","06C","11","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2011-07-05 00:00:00","U","06C","24","B","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2011-12-08 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2011-12-19 00:00:00","U","06D","16","B","2011-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2012-12-05 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2011-03-12 00:00:00","P","05D","18","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2012-02-23 00:00:00","F","02B","32","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2013-08-17 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-04-07 00:00:00","F","06E","31","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-04-07 00:00:00","F","09B","31","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-05-20 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-10-04 00:00:00","F","06C","48","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-12-15 00:00:00","F","04H","45","C","2011-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"41009446","NESHER FINE FOODS","3","4023","13 AVENUE","11218","7184373631","50","2011-08-23 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41009719","MURPHY'S BAR","4","48-20","SKILLMAN AVENUE","11104","7184299445","47","2011-10-08 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41035706","LA LECHONERA #2 RESTAURANT","3","429","NEW LOTS AVENUE","11207","7183424648","77","2011-01-20 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2010-09-27 00:00:00","F","04J","37","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2010-11-09 00:00:00","U","06C","18","B","2010-11-09 00:00:00","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2011-11-29 00:00:00","F","04N","44","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2011-11-29 00:00:00","F","08A","44","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2011-11-29 00:00:00","F","10E","44","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2012-07-03 00:00:00","D","02G","11","A","2012-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2012-12-11 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41085412","SOBA-KOH","1","309 ","EAST 5 STREET ","10003","2122542244","49","2011-07-19 00:00:00","U","04M","10","B","2011-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41085412","SOBA-KOH","1","309 ","EAST 5 STREET ","10003","2122542244","49","2011-12-13 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2012-06-22 00:00:00","U","04N","6","B","2012-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2011-11-09 00:00:00","D","04L","10","A","2011-11-09 00:00:00","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2012-10-22 00:00:00","F","09C","36","","","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2012-10-22 00:00:00","F","10F","36","","","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2012-11-15 00:00:00","G","02G","47","","","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2012-11-15 00:00:00","G","06D","47","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2011-06-14 00:00:00","F","06D","30","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2011-04-25 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2011-08-03 00:00:00","F","06C","26","C","2011-08-03 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2011-08-03 00:00:00","F","10B","26","C","2011-08-03 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-02-08 00:00:00","F","06F","73","C","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-02-21 00:00:00","U","02B","24","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-07-25 00:00:00","O","04L","10","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-12-07 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41012979","HALAL COFFEE SHOP RESTAURANT","2","1150","SHERMAN AVENUE","10456","7184108202","02","2011-03-29 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2012-05-22 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2012-05-22 00:00:00","F","06B","35","","","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2012-12-05 00:00:00","F","06F","22","","","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2010-11-24 00:00:00","C","04L","5","A","2010-11-24 00:00:00","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2010-11-24 00:00:00","C","08A","5","A","2010-11-24 00:00:00","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2011-06-01 00:00:00","P","10F","25","","","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2012-06-13 00:00:00","D","10D","13","A","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2013-06-10 00:00:00","P","04M","16","","","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2013-06-10 00:00:00","P","10D","16","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2011-06-20 00:00:00","F","08C","55","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2011-06-20 00:00:00","F","99B","55","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2011-07-11 00:00:00","F","06D","26","C","2011-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2011-07-11 00:00:00","F","06E","26","C","2011-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2011-07-11 00:00:00","F","10B","26","C","2011-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2011-11-28 00:00:00","D","10F","11","A","2011-11-28 00:00:00","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2012-12-07 00:00:00","P","04M","17","","","2013-09-13 01:01:06.177000000" +"41087943","PERDITION","1","692","10 AVENUE","10019","2125825660","03","2011-12-02 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41088125","MR. NOSH","3","3323","AVENUE N","11234","7182531400","50","2011-02-23 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41088125","MR. NOSH","3","3323","AVENUE N","11234","7182531400","50","2011-02-23 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41088125","MR. NOSH","3","3323","AVENUE N","11234","7182531400","50","2011-02-23 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2013-06-15 00:00:00","F","06F","21","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2013-09-11 00:00:00","F","06C","46","","","2013-09-13 01:01:06.177000000" +"41023695","MCDONALD'S","4","119-05","LIBERTY AVENUE","11419","7188438777","39","2012-02-08 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41058228","CHA-AN","1","230","EAST 9 STREET","10003","2122288030","49","2010-11-03 00:00:00","C","02G","13","A","2010-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41058228","CHA-AN","1","230","EAST 9 STREET","10003","2122288030","49","2010-11-03 00:00:00","C","10H","13","A","2010-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41058228","CHA-AN","1","230","EAST 9 STREET","10003","2122288030","49","2012-06-04 00:00:00","D","06F","10","A","2012-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41058228","CHA-AN","1","230","EAST 9 STREET","10003","2122288030","49","2013-06-04 00:00:00","P","04L","15","","","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2011-12-23 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2012-01-18 00:00:00","U","04A","24","B","2012-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2012-06-09 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2011-02-16 00:00:00","F","04M","56","","","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2011-07-20 00:00:00","U","04M","10","B","2011-07-20 00:00:00","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2011-12-16 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2012-01-05 00:00:00","U","04L","7","B","2012-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41015916","SUBWAY","4","253-10","HILLSIDE AVENUE","11426","7183432965","69","2009-11-25 16:01:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41015916","SUBWAY","4","253-10","HILLSIDE AVENUE","11426","7183432965","69","2009-11-25 16:01:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2010-04-30 11:10:00","F","04I","31","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2010-10-06 00:00:00","F","06E","11","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2011-12-08 00:00:00","F","06D","30","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2012-05-10 00:00:00","F","04L","33","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2012-05-10 00:00:00","F","10F","33","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2012-06-04 00:00:00","D","10B","12","A","2012-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2013-01-14 00:00:00","D","06D","13","A","2013-01-14 00:00:00","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2013-01-14 00:00:00","D","10H","13","A","2013-01-14 00:00:00","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2013-06-20 00:00:00","F","06D","62","","","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2012-03-15 00:00:00","G","08A","48","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2011-05-26 00:00:00","F","06C","29","C","2011-05-26 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2011-12-06 00:00:00","F","04L","31","C","2011-12-06 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2012-04-16 00:00:00","F","10F","26","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2012-09-20 00:00:00","U","10F","25","B","2012-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2010-04-30 11:10:00","F","10B","31","","","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2011-05-09 00:00:00","P","02B","25","","","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2011-07-19 00:00:00","U","10F","3","B","2011-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2011-04-19 00:00:00","D","09C","10","A","2011-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2011-10-08 00:00:00","D","06E","13","A","2011-10-08 00:00:00","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2012-08-08 00:00:00","D","10B","13","A","2012-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2013-02-21 00:00:00","F","04C","21","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2013-03-27 00:00:00","D","06C","7","A","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2012-10-17 00:00:00","U","04L","10","B","2012-10-17 00:00:00","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2013-07-10 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41060828","49 GROVE","1","49","GROVE STREET","10014","2127271100","03","2011-06-24 00:00:00","D","10F","2","A","2011-06-24 00:00:00","2013-09-13 01:01:06.177000000" +"41035706","LA LECHONERA #2 RESTAURANT","3","429","NEW LOTS AVENUE","11207","7183424648","77","2011-01-20 00:00:00","G","02B","49","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2010-10-26 00:00:00","F","04C","65","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2010-10-26 00:00:00","F","10F","65","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2010-12-02 00:00:00","U","04H","12","B","2010-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2013-03-06 00:00:00","F","04H","34","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2013-03-29 00:00:00","U","02G","21","B","2013-03-29 00:00:00","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2013-08-12 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2011-06-10 00:00:00","D","02H","9","A","2011-06-10 00:00:00","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2012-05-23 00:00:00","P","06E","16","","","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2012-05-23 00:00:00","P","10H","16","","","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2013-01-30 00:00:00","D","06E","13","A","2013-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2012-04-09 00:00:00","F","02H","31","","","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2012-04-18 00:00:00","D","10F","12","A","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2013-03-22 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2010-08-20 00:00:00","F","04J","28","","","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2010-08-20 00:00:00","F","06D","28","","","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2010-08-20 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2011-06-20 00:00:00","F","04M","55","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-04-07 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-05-20 00:00:00","U","06C","10","B","2011-05-20 00:00:00","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-10-04 00:00:00","F","04C","48","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-12-15 00:00:00","F","04N","45","C","2011-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2012-04-21 00:00:00","F","06F","26","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2012-12-18 00:00:00","P","06E","19","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2011-11-29 00:00:00","F","06A","44","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2012-01-03 00:00:00","U","99B","14","B","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2012-12-11 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41105739","COLD STONE CREAMERY","3","8403","3 AVENUE","11209","7187451555","43","2013-01-05 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41105739","COLD STONE CREAMERY","3","8403","3 AVENUE","11209","7187451555","43","2013-01-05 00:00:00","G","10E","49","","","2013-09-13 01:01:06.177000000" +"41106321","BARZOLA'S RESTAURANT III","4","92-12","37 AVENUE","11372","7182056900","77","2011-12-12 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41106321","BARZOLA'S RESTAURANT III","4","92-12","37 AVENUE","11372","7182056900","77","2011-12-12 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41048429","CHIPOTLE MEXICAN GRILL","3","185","MONTAGUE STREET","11201","7182439109","81","2012-05-01 00:00:00","F","02G","49","C","2012-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2011-06-20 00:00:00","F","10F","55","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2011-11-17 00:00:00","P","02B","27","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2012-12-07 00:00:00","P","04K","17","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2013-09-11 00:00:00","F","02B","46","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2013-09-11 00:00:00","F","06D","46","","","2013-09-13 01:01:06.177000000" +"41106321","BARZOLA'S RESTAURANT III","4","92-12","37 AVENUE","11372","7182056900","77","2011-12-12 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2011-07-06 00:00:00","D","06D","9","A","2011-07-06 00:00:00","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2011-07-06 00:00:00","D","10D","9","A","2011-07-06 00:00:00","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2012-01-10 00:00:00","U","04L","14","B","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2012-01-10 00:00:00","U","10F","14","B","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41033036","CHANCE","3","223","SMITH STREET","11201","7182421515","05","2011-02-02 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41033036","CHANCE","3","223","SMITH STREET","11201","7182421515","05","2011-02-02 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41033036","CHANCE","3","223","SMITH STREET","11201","7182421515","05","2011-02-02 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2011-12-23 00:00:00","F","05D","36","","","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2012-06-21 00:00:00","U","06D","12","B","2012-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2012-06-21 00:00:00","U","10B","12","B","2012-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2011-07-05 00:00:00","U","02G","24","B","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2011-07-05 00:00:00","U","99B","24","B","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2011-12-08 00:00:00","F","06C","30","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2012-06-04 00:00:00","D","06D","12","A","2012-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2012-04-02 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2013-03-28 00:00:00","U","04L","27","B","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41108450","IDO SHUSHI","1","29","7 AVENUE SOUTH","10014","2126917177","49","2013-06-12 00:00:00","F","02B","35","","","2013-09-13 01:01:06.177000000" +"41108450","IDO SHUSHI","1","29","7 AVENUE SOUTH","10014","2126917177","49","2013-06-12 00:00:00","F","10B","35","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2010-05-17 11:02:00","U","04M","25","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2010-05-17 11:02:00","U","08A","25","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2010-05-17 11:02:00","U","10K","25","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-01-03 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-02-08 00:00:00","F","06D","73","C","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-06-22 00:00:00","F","04M","38","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-06-22 00:00:00","F","08A","38","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-07-18 00:00:00","G","10B","40","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2013-06-20 00:00:00","F","06C","62","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2013-06-20 00:00:00","F","10B","62","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2011-04-19 00:00:00","D","02B","10","A","2011-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2011-10-08 00:00:00","D","02G","13","A","2011-10-08 00:00:00","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2012-03-07 00:00:00","D","08A","7","A","2012-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2012-07-18 00:00:00","P","09C","17","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2012-08-08 00:00:00","D","10H","13","A","2012-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2013-02-21 00:00:00","F","04L","21","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2013-08-17 00:00:00","F","15L","","","","2013-09-13 01:01:06.177000000" +"41108853","OMIYA SUSHI II","3","2317","AVENUE U","11229","7188918808","49","2011-11-30 00:00:00","F","02B","28","","","2013-09-13 01:01:06.177000000" +"41108853","OMIYA SUSHI II","3","2317","AVENUE U","11229","7188918808","49","2011-11-30 00:00:00","F","99B","28","","","2013-09-13 01:01:06.177000000" +"41108853","OMIYA SUSHI II","3","2317","AVENUE U","11229","7188918808","49","2012-01-05 00:00:00","D","06D","10","A","2012-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41108853","OMIYA SUSHI II","3","2317","AVENUE U","11229","7188918808","49","2013-05-13 00:00:00","P","10B","17","","","2013-09-13 01:01:06.177000000" +"41068099","NAKA NAKA","1","458","WEST 17 STREET","10011","2129298544","49","2010-02-03 20:02:00","U","15I","","","","2013-09-13 01:01:06.177000000" +"41068099","NAKA NAKA","1","458","WEST 17 STREET","10011","2129298544","49","2011-09-15 00:00:00","B","","","A","2011-09-15 00:00:00","2013-09-13 01:01:06.177000000" +"41068099","NAKA NAKA","1","458","WEST 17 STREET","10011","2129298544","49","2012-04-17 00:00:00","D","06C","5","A","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41109574","JAMBA JUICE","1","238","7 AVENUE","10011","2122292967","51","2010-08-31 00:00:00","F","10D","49","C","2010-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41109985","LIMA'S TASTE","1","122","CHRISTOPHER STREET","10014","2122420010","61","2011-04-12 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41035706","LA LECHONERA #2 RESTAURANT","3","429","NEW LOTS AVENUE","11207","7183424648","77","2011-01-20 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2011-01-05 00:00:00","C","06D","12","A","2011-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2012-12-11 00:00:00","F","04M","33","","","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2012-12-11 00:00:00","F","06E","33","","","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2013-01-24 00:00:00","U","04M","10","B","2013-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2013-06-15 00:00:00","F","09B","21","","","2013-09-13 01:01:06.177000000" +"41023695","MCDONALD'S","4","119-05","LIBERTY AVENUE","11419","7188438777","39","2012-02-08 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41023695","MCDONALD'S","4","119-05","LIBERTY AVENUE","11419","7188438777","39","2012-02-08 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41023695","MCDONALD'S","4","119-05","LIBERTY AVENUE","11419","7188438777","39","2012-02-08 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"41112946","52nd SUSHI","4","52-21","ROOSEVELT AVENUE","11377","7185079204","49","2011-09-14 00:00:00","D","10B","4","A","2011-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41070399","HARU","1","220","PARK AVENUE SOUTH","10003","6464280989","49","2011-08-23 00:00:00","D","06F","12","A","2011-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41070415","GARI","1","370","COLUMBUS AVENUE","10024","2123624816","49","2011-06-28 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41070415","GARI","1","370","COLUMBUS AVENUE","10024","2123624816","49","2012-03-08 00:00:00","D","10F","9","A","2012-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2010-10-26 00:00:00","F","02B","65","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2010-10-26 00:00:00","F","06C","65","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2011-08-12 00:00:00","F","08A","53","C","2011-08-12 00:00:00","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2011-12-02 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2012-07-25 00:00:00","P","08C","21","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2013-03-06 00:00:00","F","04L","34","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2013-08-12 00:00:00","P","02B","25","","","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2010-08-20 00:00:00","F","10C","28","","","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2010-09-14 00:00:00","U","10F","19","B","2010-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2012-03-17 00:00:00","U","02B","26","B","2012-03-17 00:00:00","2013-09-13 01:01:06.177000000" +"41058228","CHA-AN","1","230","EAST 9 STREET","10003","2122288030","49","2011-11-15 00:00:00","U","10B","2","B","2011-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"41058228","CHA-AN","1","230","EAST 9 STREET","10003","2122288030","49","2013-06-04 00:00:00","P","02G","15","","","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2011-04-25 00:00:00","P","04L","16","","","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2011-08-02 00:00:00","D","10F","12","A","2011-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2012-03-15 00:00:00","G","06A","48","","","2013-09-13 01:01:06.177000000" +"41103759","WINTER GARDEN AQUA GRILL","3","3152","BRIGHTON 6 STREET","11235","7189343200","67","2011-08-10 00:00:00","F","04M","49","C","2011-08-10 00:00:00","2013-09-13 01:01:06.177000000" +"41103759","WINTER GARDEN AQUA GRILL","3","3152","BRIGHTON 6 STREET","11235","7189343200","67","2011-08-10 00:00:00","F","06C","49","C","2011-08-10 00:00:00","2013-09-13 01:01:06.177000000" +"41103759","WINTER GARDEN AQUA GRILL","3","3152","BRIGHTON 6 STREET","11235","7189343200","67","2011-08-10 00:00:00","F","08A","49","C","2011-08-10 00:00:00","2013-09-13 01:01:06.177000000" +"41103759","WINTER GARDEN AQUA GRILL","3","3152","BRIGHTON 6 STREET","11235","7189343200","67","2011-08-10 00:00:00","F","09C","49","C","2011-08-10 00:00:00","2013-09-13 01:01:06.177000000" +"41118794","TAQUERIA COCOYOC","3","211","WYCKOFF AVENUE","11237","7184974489","55","2011-08-30 00:00:00","F","02G","49","C","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41118794","TAQUERIA COCOYOC","3","211","WYCKOFF AVENUE","11237","7184974489","55","2011-08-30 00:00:00","F","04A","49","C","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41118794","TAQUERIA COCOYOC","3","211","WYCKOFF AVENUE","11237","7184974489","55","2011-08-30 00:00:00","F","10B","49","C","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41118794","TAQUERIA COCOYOC","3","211","WYCKOFF AVENUE","11237","7184974489","55","2011-08-30 00:00:00","F","99B","49","C","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2011-05-03 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2011-10-27 00:00:00","P","10E","17","","","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2012-05-15 00:00:00","D","06E","10","A","2012-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2010-04-30 11:10:00","F","09D","31","","","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2010-05-19 15:14:00","U","04C","27","","","2013-09-13 01:01:06.177000000" +"41060828","49 GROVE","1","49","GROVE STREET","10014","2127271100","03","2011-03-30 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41105739","COLD STONE CREAMERY","3","8403","3 AVENUE","11209","7187451555","43","2013-01-05 00:00:00","G","10B","49","","","2013-09-13 01:01:06.177000000" +"41075211","SUSHI GALLERY","3","71","CLARK STREET","11201","7182220308","49","2012-08-24 00:00:00","D","10B","4","A","2012-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2010-05-17 11:02:00","U","10C","25","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2011-04-25 00:00:00","F","06D","31","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-01-03 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-02-08 00:00:00","F","04L","73","C","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-02-21 00:00:00","U","04A","24","","","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2012-06-12 00:00:00","D","10F","9","A","2012-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2013-07-02 00:00:00","F","02G","34","","","2013-09-13 01:01:06.177000000" +"41123423","J AND B PIZZERIA","5","2220","FOREST AVENUE","10303","7188765700","63","2010-11-15 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41106321","BARZOLA'S RESTAURANT III","4","92-12","37 AVENUE","11372","7182056900","77","2011-12-12 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41106321","BARZOLA'S RESTAURANT III","4","92-12","37 AVENUE","11372","7182056900","77","2011-12-12 00:00:00","F","09B","49","","","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2011-12-27 00:00:00","P","04M","23","","","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2011-12-27 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2013-08-01 00:00:00","P","04N","19","","","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2013-08-01 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2011-06-20 00:00:00","F","08A","55","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2013-09-11 00:00:00","F","04J","46","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-02-21 00:00:00","U","06F","24","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-06-22 00:00:00","F","04L","38","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-07-02 00:00:00","F","04L","12","C","2012-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-07-18 00:00:00","G","04M","40","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-12-07 00:00:00","F","04C","30","","","2013-09-13 01:01:06.177000000" +"41108012","SILVER SPOON RESTAURANT","4","207-12","HOLLIS AVENUE","11429","7184683624","17","2011-05-13 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41125371","MIZU HIBACHI STEAK HOUSE","5","240","PAGE AVENUE","10307","7186088809","49","2010-10-05 00:00:00","C","10F","9","A","2010-10-05 00:00:00","2013-09-13 01:01:06.177000000" +"41125371","MIZU HIBACHI STEAK HOUSE","5","240","PAGE AVENUE","10307","7186088809","49","2011-10-20 00:00:00","F","06F","35","","","2013-09-13 01:01:06.177000000" +"41125371","MIZU HIBACHI STEAK HOUSE","5","240","PAGE AVENUE","10307","7186088809","49","2011-10-20 00:00:00","F","10I","35","","","2013-09-13 01:01:06.177000000" +"41125371","MIZU HIBACHI STEAK HOUSE","5","240","PAGE AVENUE","10307","7186088809","49","2012-05-23 00:00:00","U","08A","20","B","2012-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2012-04-02 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2013-03-06 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2013-03-06 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2013-03-06 00:00:00","F","06E","31","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2013-08-26 00:00:00","G","02G","51","","","2013-09-13 01:01:06.177000000" +"41108450","IDO SHUSHI","1","29","7 AVENUE SOUTH","10014","2126917177","49","2013-06-12 00:00:00","F","04C","35","","","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2011-06-02 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2012-01-18 00:00:00","U","04L","24","B","2012-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2012-06-09 00:00:00","P","04C","19","","","2013-09-13 01:01:06.177000000" +"41108853","OMIYA SUSHI II","3","2317","AVENUE U","11229","7188918808","49","2013-05-13 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41109985","LIMA'S TASTE","1","122","CHRISTOPHER STREET","10014","2122420010","61","2011-04-12 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41109985","LIMA'S TASTE","1","122","CHRISTOPHER STREET","10014","2122420010","61","2011-04-12 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2010-10-26 00:00:00","F","04N","65","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2011-08-12 00:00:00","F","02G","53","C","2011-08-12 00:00:00","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2011-08-12 00:00:00","F","04H","53","C","2011-08-12 00:00:00","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2013-03-29 00:00:00","U","02B","21","B","2013-03-29 00:00:00","2013-09-13 01:01:06.177000000" +"41127243","MAMAJUANA CAFE","1","247","DYCKMAN STREET","10034","2123041217","53","2011-09-08 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41127243","MAMAJUANA CAFE","1","247","DYCKMAN STREET","10034","2123041217","53","2011-09-08 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2011-07-05 00:00:00","U","04L","24","B","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2012-05-10 00:00:00","F","06F","33","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2012-12-05 00:00:00","F","02B","30","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2013-01-14 00:00:00","D","10F","13","A","2013-01-14 00:00:00","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2012-02-23 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2013-02-21 00:00:00","F","10B","21","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2013-03-27 00:00:00","D","10F","7","A","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"41127602","DONGURI","1","309","EAST 83 STREET","10028","2127375656","49","2010-10-13 00:00:00","U","06F","23","B","2010-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2013-08-17 00:00:00","F","15I","","","","2013-09-13 01:01:06.177000000" +"41112946","52nd SUSHI","4","52-21","ROOSEVELT AVENUE","11377","7185079204","49","2009-12-21 10:54:00","D","10G","5","","","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2012-03-17 00:00:00","U","10F","26","B","2012-03-17 00:00:00","2013-09-13 01:01:06.177000000" +"41048429","CHIPOTLE MEXICAN GRILL","3","185","MONTAGUE STREET","11201","7182439109","81","2012-05-01 00:00:00","F","06F","49","C","2012-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41128245","EL VALLE RESTAURANT","2","2448","JEROME AVENUE","10468","7185616600","53","2011-08-24 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41128554","LA NONNA","1","134","MULBERRY STREET","10013","2123346200","48","2011-04-20 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2011-07-05 00:00:00","D","06B","9","A","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2012-06-15 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41068099","NAKA NAKA","1","458","WEST 17 STREET","10011","2129298544","49","2012-02-22 00:00:00","P","06F","25","","","2013-09-13 01:01:06.177000000" +"41068173","LOUISIANA'S WHISKEY RIVER","1","575","2 AVENUE","10016","2126796799","03","2013-01-09 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2011-08-29 00:00:00","D","10B","7","A","2011-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2010-09-01 00:00:00","F","06A","46","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2010-12-03 00:00:00","C","10B","9","A","2010-12-03 00:00:00","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2011-04-27 00:00:00","G","04C","55","","","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2012-09-26 00:00:00","F","10B","33","C","2012-09-26 00:00:00","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2013-05-14 00:00:00","F","06D","36","","","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2013-05-14 00:00:00","F","10H","36","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2011-04-27 00:00:00","G","04M","55","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2011-04-27 00:00:00","G","06C","55","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2012-01-03 00:00:00","D","10F","3","A","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2013-02-14 00:00:00","P","10B","14","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2013-08-27 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"41068576","PROMESA CAFETERIA","2","1776","CLAY AVENUE","10457","3476493004","03","2011-08-08 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"41068576","PROMESA CAFETERIA","2","1776","CLAY AVENUE","10457","3476493004","03","2011-08-08 00:00:00","G","06F","49","","","2013-09-13 01:01:06.177000000" +"41068576","PROMESA CAFETERIA","2","1776","CLAY AVENUE","10457","3476493004","03","2011-08-08 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41068576","PROMESA CAFETERIA","2","1776","CLAY AVENUE","10457","3476493004","03","2011-08-08 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41081337","GEM SUSHI","1","352","EAST 86 STREET","10028","2127370086","49","2011-11-14 00:00:00","F","05H","10","C","2011-11-14 00:00:00","2013-09-13 01:01:06.177000000" +"41081337","GEM SUSHI","1","352","EAST 86 STREET","10028","2127370086","49","2012-04-13 00:00:00","D","10F","2","A","2012-04-13 00:00:00","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2010-05-19 15:14:00","U","08A","27","","","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2012-03-01 00:00:00","D","06F","13","A","2012-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2011-04-25 00:00:00","F","10B","31","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2011-04-25 00:00:00","F","22C","31","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2011-08-03 00:00:00","F","04L","26","C","2011-08-03 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-01-03 00:00:00","F","04H","30","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-02-08 00:00:00","F","02B","73","C","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-02-08 00:00:00","F","04C","73","C","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-02-08 00:00:00","F","04M","73","C","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-02-08 00:00:00","F","10A","73","C","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-07-02 00:00:00","F","04M","12","C","2012-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-12-07 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"41119269","ROYAL INDIA PALACE AND RESTAURANT","4","118-08","ATLANTIC AVENUE","11419","7188467600","44","2012-01-11 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41119269","ROYAL INDIA PALACE AND RESTAURANT","4","118-08","ATLANTIC AVENUE","11419","7188467600","44","2012-01-11 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41119269","ROYAL INDIA PALACE AND RESTAURANT","4","118-08","ATLANTIC AVENUE","11419","7188467600","44","2012-01-11 00:00:00","F","10A","49","","","2013-09-13 01:01:06.177000000" +"41070415","GARI","1","370","COLUMBUS AVENUE","10024","2123624816","49","2011-05-13 00:00:00","F","04M","42","","","2013-09-13 01:01:06.177000000" +"41070415","GARI","1","370","COLUMBUS AVENUE","10024","2123624816","49","2012-03-08 00:00:00","D","06C","9","A","2012-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41120749","RICE N TEA","4","82-74","BROADWAY","11373","7183978888","20","2012-05-31 00:00:00","G","02B","49","","","2013-09-13 01:01:06.177000000" +"41120749","RICE N TEA","4","82-74","BROADWAY","11373","7183978888","20","2012-05-31 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41133094","NORI SUSHI RESTAURANT","5","55","NEW DORP PLAZA","10306","7186680288","49","2011-11-01 00:00:00","D","08C","11","A","2011-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2013-07-02 00:00:00","F","10B","34","","","2013-09-13 01:01:06.177000000" +"41135254","NEW CATS CAFE","3","2027","EMMONS AVENUE","11235","7183324850","54","2010-05-13 13:57:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"41135793","MARTINIQUE CAFE","1","1260","BROADWAY","10001","2122446523","03","2013-08-05 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41075211","SUSHI GALLERY","3","71","CLARK STREET","11201","7182220308","49","2012-08-24 00:00:00","D","10F","4","A","2012-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41085412","SOBA-KOH","1","309 ","EAST 5 STREET ","10003","2122542244","49","2012-05-14 00:00:00","D","04L","10","A","2012-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41127602","DONGURI","1","309","EAST 83 STREET","10028","2127375656","49","2010-08-26 00:00:00","P","06F","5","","","2013-09-13 01:01:06.177000000" +"41127602","DONGURI","1","309","EAST 83 STREET","10028","2127375656","49","2010-10-13 00:00:00","U","04J","23","B","2010-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"41127602","DONGURI","1","309","EAST 83 STREET","10028","2127375656","49","2011-08-17 00:00:00","U","10H","9","B","2011-08-17 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2010-11-08 00:00:00","F","08A","35","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2010-11-08 00:00:00","F","10F","35","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2011-06-18 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2012-06-04 00:00:00","P","06E","24","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2013-08-22 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2013-08-22 00:00:00","F","04L","28","","","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2011-07-20 00:00:00","U","06E","17","B","2011-07-20 00:00:00","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2012-01-03 00:00:00","D","06D","9","A","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2012-12-19 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"41058228","CHA-AN","1","230","EAST 9 STREET","10003","2122288030","49","2010-11-03 00:00:00","C","08C","13","A","2010-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2010-11-17 00:00:00","P","02G","12","","","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2012-10-16 00:00:00","D","06F","10","A","2012-10-16 00:00:00","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2010-04-30 11:10:00","F","10C","31","","","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2010-05-19 15:14:00","U","06F","27","","","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2011-06-22 00:00:00","P","06A","22","","","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2011-09-23 00:00:00","D","06B","10","A","2011-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2012-02-16 00:00:00","F","06A","35","","","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2012-07-03 00:00:00","D","10B","10","A","2012-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2010-10-26 00:00:00","F","05D","65","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2011-06-15 00:00:00","P","10B","16","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2011-08-12 00:00:00","F","02B","53","C","2011-08-12 00:00:00","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2012-07-25 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2011-11-02 00:00:00","U","04C","9","B","2011-11-02 00:00:00","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2010-09-01 00:00:00","F","04L","46","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2010-12-03 00:00:00","C","10F","9","A","2010-12-03 00:00:00","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2011-12-08 00:00:00","P","06A","24","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2013-08-27 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2010-05-19 15:14:00","U","10G","27","","","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2011-03-26 00:00:00","D","06C","13","A","2011-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2013-05-09 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41087943","PERDITION","1","692","10 AVENUE","10019","2125825660","03","2011-12-02 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41088125","MR. NOSH","3","3323","AVENUE N","11234","7182531400","50","2011-02-23 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41048429","CHIPOTLE MEXICAN GRILL","3","185","MONTAGUE STREET","11201","7182439109","81","2012-05-01 00:00:00","F","09C","49","C","2012-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2011-01-18 00:00:00","F","08C","40","","","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2011-01-18 00:00:00","F","10B","40","","","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2011-01-18 00:00:00","F","99B","40","","","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2011-07-05 00:00:00","D","09B","9","A","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2012-06-26 00:00:00","D","10I","12","A","2012-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2013-07-02 00:00:00","F","04E","34","","","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2013-07-02 00:00:00","F","06C","34","","","2013-09-13 01:01:06.177000000" +"41133094","NORI SUSHI RESTAURANT","5","55","NEW DORP PLAZA","10306","7186680288","49","2010-11-03 00:00:00","C","04H","12","A","2010-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41070399","HARU","1","220","PARK AVENUE SOUTH","10003","6464280989","49","2011-01-25 00:00:00","F","06C","47","","","2013-09-13 01:01:06.177000000" +"41070415","GARI","1","370","COLUMBUS AVENUE","10024","2123624816","49","2011-05-13 00:00:00","F","02G","42","","","2013-09-13 01:01:06.177000000" +"41070415","GARI","1","370","COLUMBUS AVENUE","10024","2123624816","49","2011-05-13 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2012-08-29 00:00:00","F","06D","36","","","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2012-08-29 00:00:00","F","06E","36","","","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2012-09-26 00:00:00","F","04J","33","C","2012-09-26 00:00:00","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2012-09-26 00:00:00","F","10F","33","C","2012-09-26 00:00:00","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2012-10-10 00:00:00","C","04N","12","","","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2012-10-10 00:00:00","C","08A","12","","","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2011-05-23 00:00:00","D","06C","12","A","2011-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2012-11-29 00:00:00","F","10F","31","","","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2013-09-04 00:00:00","P","04C","18","","","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2013-09-04 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41135254","NEW CATS CAFE","3","2027","EMMONS AVENUE","11235","7183324850","54","2010-05-13 13:57:00","F","04I","49","","","2013-09-13 01:01:06.177000000" +"41135254","NEW CATS CAFE","3","2027","EMMONS AVENUE","11235","7183324850","54","2010-05-13 13:57:00","F","10G","49","","","2013-09-13 01:01:06.177000000" +"41143917","ANTHONY'S BRICK OVEN PIZZA & RESTAURANT","3","426A","7 AVENUE","11215","7183698315","62","2013-05-07 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"41143917","ANTHONY'S BRICK OVEN PIZZA & RESTAURANT","3","426A","7 AVENUE","11215","7183698315","62","2013-05-07 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2011-08-03 00:00:00","F","02G","26","C","2011-08-03 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-02-08 00:00:00","F","08A","73","C","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-06-22 00:00:00","F","02G","38","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-06-22 00:00:00","F","06D","38","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-07-02 00:00:00","F","08A","12","C","2012-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-07-18 00:00:00","G","02C","40","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-07-25 00:00:00","O","04M","10","","","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2011-04-05 00:00:00","D","04L","12","A","2011-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2012-03-23 00:00:00","F","06C","48","","","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2012-03-23 00:00:00","F","10F","48","","","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2012-04-02 00:00:00","D","10I","12","A","2012-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2013-04-03 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41075211","SUSHI GALLERY","3","71","CLARK STREET","11201","7182220308","49","2010-09-03 00:00:00","D","10B","4","A","2010-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41081337","GEM SUSHI","1","352","EAST 86 STREET","10028","2127370086","49","2012-09-10 00:00:00","P","04N","17","","","2013-09-13 01:01:06.177000000" +"41081337","GEM SUSHI","1","352","EAST 86 STREET","10028","2127370086","49","2012-09-10 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2012-02-21 00:00:00","P","04L","24","","","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2012-07-10 00:00:00","F","02B","35","","","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2012-07-10 00:00:00","F","08A","35","","","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2013-04-27 00:00:00","P","04J","23","","","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2010-11-17 00:00:00","P","06F","12","","","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2011-08-10 00:00:00","F","02G","64","","","2013-09-13 01:01:06.177000000" +"41148212","M & Y ENTERTAINMENT","4","40-31","162 STREET","11358","7183588477","03","2011-07-13 00:00:00","F","02G","49","C","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41148212","M & Y ENTERTAINMENT","4","40-31","162 STREET","11358","7183588477","03","2011-07-13 00:00:00","F","10H","49","C","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2010-08-10 00:00:00","P","06A","23","","","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2011-04-21 00:00:00","G","08A","61","","","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2012-05-23 00:00:00","P","02G","15","","","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2011-09-21 00:00:00","D","02G","8","A","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2012-03-14 00:00:00","P","06F","12","","","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2012-09-25 00:00:00","F","02B","19","","","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2013-08-10 00:00:00","F","04N","33","","","2013-09-13 01:01:06.177000000" +"41068173","LOUISIANA'S WHISKEY RIVER","1","575","2 AVENUE","10016","2126796799","03","2013-01-09 00:00:00","F","10J","49","","","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2011-01-04 00:00:00","C","06E","7","A","2011-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2011-06-02 00:00:00","P","09B","23","","","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2011-07-20 00:00:00","U","02B","17","B","2011-07-20 00:00:00","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2012-01-03 00:00:00","D","08B","9","A","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41068576","PROMESA CAFETERIA","2","1776","CLAY AVENUE","10457","3476493004","03","2011-08-08 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2011-04-28 00:00:00","D","10F","10","A","2011-04-28 00:00:00","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2012-04-09 00:00:00","F","04N","31","","","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2012-08-30 00:00:00","F","06E","32","","","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2012-08-30 00:00:00","F","09B","32","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2010-09-27 00:00:00","F","04M","37","","","2013-09-13 01:01:06.177000000" +"41083469","LA GATA GOLOSA","4","8263","BROADWAY","11373","7187791747","53","2010-11-30 00:00:00","F","02G","49","C","2010-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2011-11-29 00:00:00","F","02B","44","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2011-11-29 00:00:00","F","10A","44","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2012-06-13 00:00:00","P","04N","24","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2012-12-11 00:00:00","P","06F","19","","","2013-09-13 01:01:06.177000000" +"41058228","CHA-AN","1","230","EAST 9 STREET","10003","2122288030","49","2010-11-03 00:00:00","C","99B","13","A","2010-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2011-05-23 00:00:00","D","10B","12","A","2011-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2012-04-30 00:00:00","P","06D","27","","","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2012-11-29 00:00:00","F","09B","31","","","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2013-09-04 00:00:00","P","04H","18","","","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2013-09-04 00:00:00","P","10B","18","","","2013-09-13 01:01:06.177000000" +"41070399","HARU","1","220","PARK AVENUE SOUTH","10003","6464280989","49","2011-08-23 00:00:00","D","10F","12","A","2011-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41070399","HARU","1","220","PARK AVENUE SOUTH","10003","6464280989","49","2013-07-24 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"41070415","GARI","1","370","COLUMBUS AVENUE","10024","2123624816","49","2011-05-13 00:00:00","F","06F","42","","","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2010-05-19 11:17:00","U","04O","20","","","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2010-05-19 11:17:00","U","08A","20","","","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2010-05-19 11:17:00","U","10G","20","","","2013-09-13 01:01:06.177000000" +"41143917","ANTHONY'S BRICK OVEN PIZZA & RESTAURANT","3","426A","7 AVENUE","11215","7183698315","62","2013-05-07 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41085412","SOBA-KOH","1","309 ","EAST 5 STREET ","10003","2122542244","49","2013-05-30 00:00:00","F","02G","34","","","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2010-04-30 11:10:00","F","04A","31","","","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2010-05-19 15:14:00","U","04M","27","","","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2011-01-18 00:00:00","F","04K","40","","","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2012-06-26 00:00:00","D","10F","12","A","2012-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2010-12-02 00:00:00","F","06A","31","C","2010-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2013-02-28 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2013-03-21 00:00:00","U","08A","20","B","2013-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2011-04-12 00:00:00","P","02B","26","","","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2011-04-12 00:00:00","P","06D","26","","","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2011-05-04 00:00:00","D","08C","11","A","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2011-05-04 00:00:00","D","10F","11","A","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2011-06-01 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2012-01-30 00:00:00","D","08A","12","A","2012-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2012-06-13 00:00:00","D","10F","13","A","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2011-04-05 00:00:00","D","10H","12","A","2011-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2012-04-02 00:00:00","D","06C","12","A","2012-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2013-04-03 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2013-05-29 00:00:00","C","10F","11","","","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2012-12-20 00:00:00","P","10A","17","","","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2013-01-30 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41088125","MR. NOSH","3","3323","AVENUE N","11234","7182531400","50","2011-02-23 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41088125","MR. NOSH","3","3323","AVENUE N","11234","7182531400","50","2011-02-23 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41088125","MR. NOSH","3","3323","AVENUE N","11234","7182531400","50","2011-02-23 00:00:00","F","10E","49","","","2013-09-13 01:01:06.177000000" +"41081337","GEM SUSHI","1","352","EAST 86 STREET","10028","2127370086","49","2010-11-19 00:00:00","D","08C","2","A","2010-11-19 00:00:00","2013-09-13 01:01:06.177000000" +"41081337","GEM SUSHI","1","352","EAST 86 STREET","10028","2127370086","49","2011-11-02 00:00:00","P","06C","17","","","2013-09-13 01:01:06.177000000" +"41081337","GEM SUSHI","1","352","EAST 86 STREET","10028","2127370086","49","2012-04-04 00:00:00","P","02B","15","","","2013-09-13 01:01:06.177000000" +"41081337","GEM SUSHI","1","352","EAST 86 STREET","10028","2127370086","49","2012-09-19 00:00:00","D","04N","12","A","2012-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2011-04-25 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2011-08-02 00:00:00","D","10I","12","A","2011-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2012-01-10 00:00:00","F","04H","58","","","2013-09-13 01:01:06.177000000" +"41083469","LA GATA GOLOSA","4","8263","BROADWAY","11373","7187791747","53","2010-11-30 00:00:00","F","04N","49","C","2010-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41148187","LOONG HING CHINESE RESTAURANT","4","11318 ","SUTPHIN BLVD","11435","7185293637","20","2010-10-13 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41148212","M & Y ENTERTAINMENT","4","40-31","162 STREET","11358","7183588477","03","2011-07-13 00:00:00","F","10E","49","C","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2010-08-31 00:00:00","U","02G","12","B","2010-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2011-04-21 00:00:00","G","04H","61","","","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2012-05-23 00:00:00","P","10D","15","","","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2011-06-02 00:00:00","P","06D","23","","","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2011-06-02 00:00:00","P","06E","23","","","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2012-12-19 00:00:00","F","04L","36","","","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2012-12-19 00:00:00","F","10D","36","","","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2012-12-19 00:00:00","F","10E","36","","","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2013-02-04 00:00:00","F","10F","42","C","2013-02-04 00:00:00","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2013-02-19 00:00:00","U","04L","6","","","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2012-01-10 00:00:00","F","06C","58","","","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2012-01-10 00:00:00","F","08A","58","","","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2012-03-15 00:00:00","G","10D","48","","","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2013-05-07 00:00:00","P","04L","12","","","2013-09-13 01:01:06.177000000" +"41085412","SOBA-KOH","1","309 ","EAST 5 STREET ","10003","2122542244","49","2011-06-10 00:00:00","F","10F","37","","","2013-09-13 01:01:06.177000000" +"41085412","SOBA-KOH","1","309 ","EAST 5 STREET ","10003","2122542244","49","2013-05-30 00:00:00","F","10D","34","","","2013-09-13 01:01:06.177000000" +"41105739","COLD STONE CREAMERY","3","8403","3 AVENUE","11209","7187451555","43","2013-01-05 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41068099","NAKA NAKA","1","458","WEST 17 STREET","10011","2129298544","49","2010-05-25 18:02:00","U","02B","7","","","2013-09-13 01:01:06.177000000" +"41068099","NAKA NAKA","1","458","WEST 17 STREET","10011","2129298544","49","2012-02-22 00:00:00","P","06C","25","","","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2011-01-05 00:00:00","P","06A","16","","","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2011-06-13 00:00:00","F","06D","32","","","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2011-12-27 00:00:00","P","99B","23","","","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2012-07-17 00:00:00","D","02B","11","A","2012-07-17 00:00:00","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2010-05-19 11:17:00","U","10J","20","","","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2011-02-22 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2012-02-16 00:00:00","D","09C","12","A","2012-02-16 00:00:00","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2012-09-18 00:00:00","D","10F","13","A","2012-09-18 00:00:00","2013-09-13 01:01:06.177000000" +"41087130","CAFE METRO","1","569","LEXINGTON AVENUE","10022","2122232670","14","2013-04-08 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2011-04-12 00:00:00","P","06C","26","","","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2012-05-22 00:00:00","F","02B","35","","","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2012-06-13 00:00:00","U","02G","10","B","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2012-06-13 00:00:00","U","10H","10","B","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2012-01-18 00:00:00","F","06B","38","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2010-11-17 00:00:00","F","04N","37","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2010-11-17 00:00:00","F","10F","37","","","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2010-05-21 10:57:00","U","10G","18","","","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2012-08-30 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2013-03-22 00:00:00","F","02B","30","","","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2011-05-12 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2011-06-21 00:00:00","D","02B","13","A","2011-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2012-04-02 00:00:00","F","04L","29","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2012-08-09 00:00:00","P","10B","27","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2013-03-06 00:00:00","F","04H","31","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2013-03-06 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2013-03-28 00:00:00","U","08A","27","B","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2013-08-26 00:00:00","G","04J","51","","","2013-09-13 01:01:06.177000000" +"41108450","IDO SHUSHI","1","29","7 AVENUE SOUTH","10014","2126917177","49","2013-06-12 00:00:00","F","06D","35","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2010-09-27 00:00:00","F","02H","37","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2010-11-09 00:00:00","U","04M","18","B","2010-11-09 00:00:00","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2010-11-09 00:00:00","U","08A","18","B","2010-11-09 00:00:00","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2011-04-07 00:00:00","F","02G","34","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2011-11-29 00:00:00","F","08C","44","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2012-07-03 00:00:00","D","10F","11","A","2012-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"41159798","MORIMOTO NY","1","88","10 AVENUE","10011","2129894639","49","2011-12-13 00:00:00","D","10B","9","A","2011-12-13 00:00:00","2013-09-13 01:01:06.177000000" +"41108853","OMIYA SUSHI II","3","2317","AVENUE U","11229","7188918808","49","2010-12-21 00:00:00","C","99B","12","A","2010-12-21 00:00:00","2013-09-13 01:01:06.177000000" +"41108853","OMIYA SUSHI II","3","2317","AVENUE U","11229","7188918808","49","2011-11-30 00:00:00","F","04M","28","","","2013-09-13 01:01:06.177000000" +"41070399","HARU","1","220","PARK AVENUE SOUTH","10003","6464280989","49","2011-01-25 00:00:00","F","10F","47","","","2013-09-13 01:01:06.177000000" +"41070399","HARU","1","220","PARK AVENUE SOUTH","10003","6464280989","49","2011-03-09 00:00:00","D","06C","10","A","2011-03-09 00:00:00","2013-09-13 01:01:06.177000000" +"41070399","HARU","1","220","PARK AVENUE SOUTH","10003","6464280989","49","2011-03-09 00:00:00","D","08C","10","A","2011-03-09 00:00:00","2013-09-13 01:01:06.177000000" +"41070399","HARU","1","220","PARK AVENUE SOUTH","10003","6464280989","49","2011-08-23 00:00:00","D","06D","12","A","2011-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41070399","HARU","1","220","PARK AVENUE SOUTH","10003","6464280989","49","2013-07-24 00:00:00","P","04C","24","","","2013-09-13 01:01:06.177000000" +"41070415","GARI","1","370","COLUMBUS AVENUE","10024","2123624816","49","2011-05-13 00:00:00","F","04J","42","","","2013-09-13 01:01:06.177000000" +"41070415","GARI","1","370","COLUMBUS AVENUE","10024","2123624816","49","2011-08-04 00:00:00","D","10D","12","A","2011-08-04 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2010-08-24 00:00:00","F","02B","24","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2010-12-02 00:00:00","F","04L","31","C","2010-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2011-04-06 00:00:00","P","06C","20","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2011-04-06 00:00:00","P","20F","20","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2011-10-17 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2011-11-16 00:00:00","U","04L","21","B","2011-11-16 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2012-07-12 00:00:00","F","04C","33","C","2012-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2013-02-28 00:00:00","F","02B","32","","","2013-09-13 01:01:06.177000000" +"41081337","GEM SUSHI","1","352","EAST 86 STREET","10028","2127370086","49","2011-11-02 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"41109574","JAMBA JUICE","1","238","7 AVENUE","10011","2122292967","51","2010-08-31 00:00:00","F","06E","49","C","2010-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2011-07-28 00:00:00","P","06A","20","","","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2011-07-28 00:00:00","P","10B","20","","","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2012-02-23 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2011-01-05 00:00:00","C","22C","12","A","2011-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2012-12-11 00:00:00","F","06C","33","","","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2012-12-11 00:00:00","F","08A","33","","","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2012-12-11 00:00:00","F","10F","33","","","2013-09-13 01:01:06.177000000" +"41112946","52nd SUSHI","4","52-21","ROOSEVELT AVENUE","11377","7185079204","49","2009-10-09 14:56:00","F","08A","40","","","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2010-10-07 00:00:00","U","08A","18","B","2010-10-07 00:00:00","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2011-04-26 00:00:00","F","20F","35","","","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2011-10-26 00:00:00","D","10B","2","A","2011-10-26 00:00:00","2013-09-13 01:01:06.177000000" +"41075211","SUSHI GALLERY","3","71","CLARK STREET","11201","7182220308","49","2011-09-06 00:00:00","D","10B","4","A","2011-09-06 00:00:00","2013-09-13 01:01:06.177000000" +"41085412","SOBA-KOH","1","309 ","EAST 5 STREET ","10003","2122542244","49","2011-06-10 00:00:00","F","02B","37","","","2013-09-13 01:01:06.177000000" +"41085412","SOBA-KOH","1","309 ","EAST 5 STREET ","10003","2122542244","49","2013-05-30 00:00:00","F","06F","34","","","2013-09-13 01:01:06.177000000" +"41085412","SOBA-KOH","1","309 ","EAST 5 STREET ","10003","2122542244","49","2013-05-30 00:00:00","F","08A","34","","","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2010-12-14 00:00:00","C","09B","9","A","2010-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2011-08-29 00:00:00","D","08B","7","A","2011-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2011-12-23 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2012-06-04 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2013-04-10 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2013-04-10 00:00:00","F","06E","28","","","2013-09-13 01:01:06.177000000" +"41156149","Tasty Delicious Bakery","3","1096","RUTLAND ROAD","11212","7182211222","17","2013-03-14 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2012-04-18 00:00:00","D","02B","12","A","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2012-04-18 00:00:00","D","10B","12","A","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2012-08-30 00:00:00","F","04N","32","","","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2013-03-22 00:00:00","F","10A","30","","","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2010-11-16 00:00:00","P","04N","18","","","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2011-01-04 00:00:00","C","10E","7","A","2011-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2012-01-03 00:00:00","D","10F","9","A","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2012-12-19 00:00:00","F","02B","36","","","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2013-07-09 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2013-07-09 00:00:00","P","06D","20","","","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2012-08-15 00:00:00","P","05D","12","","","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2012-10-17 00:00:00","U","06F","10","B","2012-10-17 00:00:00","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2013-05-07 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2010-11-09 00:00:00","U","10F","18","B","2010-11-09 00:00:00","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2011-04-07 00:00:00","F","10B","34","","","2013-09-13 01:01:06.177000000" +"41087130","CAFE METRO","1","569","LEXINGTON AVENUE","10022","2122232670","14","2013-04-08 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2011-10-05 00:00:00","P","06D","27","","","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2011-10-05 00:00:00","P","06E","27","","","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2011-11-02 00:00:00","U","10H","9","B","2011-11-02 00:00:00","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2012-05-22 00:00:00","F","06C","35","","","2013-09-13 01:01:06.177000000" +"41103759","WINTER GARDEN AQUA GRILL","3","3152","BRIGHTON 6 STREET","11235","7189343200","67","2011-08-10 00:00:00","F","04N","49","C","2011-08-10 00:00:00","2013-09-13 01:01:06.177000000" +"41103759","WINTER GARDEN AQUA GRILL","3","3152","BRIGHTON 6 STREET","11235","7189343200","67","2011-08-10 00:00:00","F","06D","49","C","2011-08-10 00:00:00","2013-09-13 01:01:06.177000000" +"41157881","LA TIA RESTAURANT","2","200A","WEST 231 STREET","10463","7184321008","53","2010-10-28 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2010-12-06 00:00:00","U","10B","12","B","2010-12-06 00:00:00","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2012-12-05 00:00:00","F","02G","22","","","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2013-01-22 00:00:00","F","04C","16","C","2013-01-22 00:00:00","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2011-06-01 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2012-01-18 00:00:00","F","04J","38","","","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2013-06-10 00:00:00","P","06F","16","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-03-15 00:00:00","F","10F","39","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-07-21 00:00:00","P","04M","23","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2012-03-29 00:00:00","D","10H","7","A","2012-03-29 00:00:00","2013-09-13 01:01:06.177000000" +"41168216","BENTO NOUVEAU","1","32","BROADWAY","10004","2127470994","49","2010-10-29 00:00:00","D","10F","4","A","2010-10-29 00:00:00","2013-09-13 01:01:06.177000000" +"41168216","BENTO NOUVEAU","1","32","BROADWAY","10004","2127470994","49","2011-10-11 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"41168216","BENTO NOUVEAU","1","32","BROADWAY","10004","2127470994","49","2011-11-01 00:00:00","D","05D","12","A","2011-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"41087943","PERDITION","1","692","10 AVENUE","10019","2125825660","03","2011-12-02 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41118794","TAQUERIA COCOYOC","3","211","WYCKOFF AVENUE","11237","7184974489","55","2011-08-30 00:00:00","F","04M","49","C","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2010-03-03 11:24:00","U","06D","15","","","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2011-05-03 00:00:00","P","06F","16","","","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2011-10-27 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2012-04-17 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41119269","ROYAL INDIA PALACE AND RESTAURANT","4","118-08","ATLANTIC AVENUE","11419","7188467600","44","2012-01-11 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2012-04-30 00:00:00","P","04H","22","","","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2013-01-04 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2013-09-11 00:00:00","P","04H","22","","","2013-09-13 01:01:06.177000000" +"41159798","MORIMOTO NY","1","88","10 AVENUE","10011","2129894639","49","2010-12-02 00:00:00","C","22C","13","A","2010-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2011-01-18 00:00:00","F","08A","40","","","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2011-07-05 00:00:00","D","10F","9","A","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2012-06-15 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2012-06-26 00:00:00","D","02G","12","A","2012-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"41119269","ROYAL INDIA PALACE AND RESTAURANT","4","118-08","ATLANTIC AVENUE","11419","7188467600","44","2012-01-11 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41119269","ROYAL INDIA PALACE AND RESTAURANT","4","118-08","ATLANTIC AVENUE","11419","7188467600","44","2012-01-11 00:00:00","F","10D","49","","","2013-09-13 01:01:06.177000000" +"41106321","BARZOLA'S RESTAURANT III","4","92-12","37 AVENUE","11372","7182056900","77","2011-12-12 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2011-05-04 00:00:00","D","02G","11","A","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2012-10-10 00:00:00","C","04L","12","","","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2013-05-14 00:00:00","F","06C","36","","","2013-09-13 01:01:06.177000000" +"41120749","RICE N TEA","4","82-74","BROADWAY","11373","7183978888","20","2012-05-31 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2012-07-17 00:00:00","D","10F","11","A","2012-07-17 00:00:00","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2013-01-24 00:00:00","U","04L","10","B","2013-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2013-06-15 00:00:00","F","04C","21","","","2013-09-13 01:01:06.177000000" +"41108012","SILVER SPOON RESTAURANT","4","207-12","HOLLIS AVENUE","11429","7184683624","17","2011-05-13 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2011-08-04 00:00:00","D","04C","12","A","2011-08-04 00:00:00","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2011-08-04 00:00:00","D","06D","12","A","2011-08-04 00:00:00","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2011-11-10 00:00:00","F","04H","47","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2011-11-22 00:00:00","U","08A","11","B","2011-11-22 00:00:00","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2012-04-20 00:00:00","P","02B","18","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2012-04-20 00:00:00","P","10B","18","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2012-05-10 00:00:00","U","02G","9","B","2012-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2013-08-15 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2013-08-15 00:00:00","F","02B","53","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2011-04-22 00:00:00","D","09C","6","A","2011-04-22 00:00:00","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2011-04-22 00:00:00","D","10F","6","A","2011-04-22 00:00:00","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2012-08-09 00:00:00","P","04C","27","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2012-08-09 00:00:00","P","04M","27","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2012-08-09 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"41108450","IDO SHUSHI","1","29","7 AVENUE SOUTH","10014","2126917177","49","2013-06-12 00:00:00","F","04L","35","","","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2010-08-31 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2010-10-07 00:00:00","U","08C","18","B","2010-10-07 00:00:00","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2011-04-26 00:00:00","F","10B","35","","","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2011-04-26 00:00:00","F","99B","35","","","2013-09-13 01:01:06.177000000" +"41081337","GEM SUSHI","1","352","EAST 86 STREET","10028","2127370086","49","2012-09-19 00:00:00","D","08A","12","A","2012-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2010-12-09 00:00:00","C","06D","10","A","2010-12-09 00:00:00","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-05-19 00:00:00","G","06E","107","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-05-23 00:00:00","O","08A","12","C","2011-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2012-10-01 00:00:00","D","10F","13","A","2012-10-01 00:00:00","2013-09-13 01:01:06.177000000" +"41125371","MIZU HIBACHI STEAK HOUSE","5","240","PAGE AVENUE","10307","7186088809","49","2011-10-20 00:00:00","F","10F","35","","","2013-09-13 01:01:06.177000000" +"41125371","MIZU HIBACHI STEAK HOUSE","5","240","PAGE AVENUE","10307","7186088809","49","2011-12-21 00:00:00","U","10F","8","B","2011-12-21 00:00:00","2013-09-13 01:01:06.177000000" +"41125371","MIZU HIBACHI STEAK HOUSE","5","240","PAGE AVENUE","10307","7186088809","49","2012-05-08 00:00:00","F","04C","17","","","2013-09-13 01:01:06.177000000" +"41125371","MIZU HIBACHI STEAK HOUSE","5","240","PAGE AVENUE","10307","7186088809","49","2012-05-23 00:00:00","U","02G","20","B","2012-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"41109985","LIMA'S TASTE","1","122","CHRISTOPHER STREET","10014","2122420010","61","2011-04-12 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41109985","LIMA'S TASTE","1","122","CHRISTOPHER STREET","10014","2122420010","61","2011-04-12 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2012-01-10 00:00:00","F","04C","58","","","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2012-01-10 00:00:00","F","04M","58","","","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2012-03-15 00:00:00","G","10B","48","","","2013-09-13 01:01:06.177000000" +"41083469","LA GATA GOLOSA","4","8263","BROADWAY","11373","7187791747","53","2010-11-30 00:00:00","F","08A","49","C","2010-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2011-04-28 00:00:00","D","02G","10","A","2011-04-28 00:00:00","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2012-04-09 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2012-04-09 00:00:00","F","06D","31","","","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2012-04-09 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2012-09-10 00:00:00","D","04N","11","A","2012-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2013-03-22 00:00:00","F","04N","30","","","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2013-03-22 00:00:00","F","06D","30","","","2013-09-13 01:01:06.177000000" +"41127602","DONGURI","1","309","EAST 83 STREET","10028","2127375656","49","2011-05-25 00:00:00","P","06A","15","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2010-09-27 00:00:00","F","02G","37","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2010-09-27 00:00:00","F","08A","37","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2011-04-07 00:00:00","F","04N","34","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2011-07-21 00:00:00","D","06E","11","A","2011-07-21 00:00:00","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2011-11-29 00:00:00","F","06F","44","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2012-06-13 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2010-11-08 00:00:00","F","04L","35","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2011-06-18 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2011-06-18 00:00:00","P","09B","22","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2011-07-21 00:00:00","F","06A","24","C","2011-07-21 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2011-07-21 00:00:00","F","08A","24","C","2011-07-21 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2012-01-04 00:00:00","F","06C","35","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2012-01-19 00:00:00","U","04M","16","B","2012-01-19 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2013-08-22 00:00:00","F","04N","28","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2013-08-22 00:00:00","F","06C","28","","","2013-09-13 01:01:06.177000000" +"41112946","52nd SUSHI","4","52-21","ROOSEVELT AVENUE","11377","7185079204","49","2009-10-09 14:56:00","F","05I","40","","","2013-09-13 01:01:06.177000000" +"41112946","52nd SUSHI","4","52-21","ROOSEVELT AVENUE","11377","7185079204","49","2010-08-19 00:00:00","D","10H","2","A","2010-08-19 00:00:00","2013-09-13 01:01:06.177000000" +"41112946","52nd SUSHI","4","52-21","ROOSEVELT AVENUE","11377","7185079204","49","2011-09-14 00:00:00","D","10C","4","A","2011-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41167453","El Mangu Sabroso Restaurant","2","80","WEST KINGSRIDGE ROAD","10468","7185636499","53","2013-03-14 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2010-11-18 00:00:00","F","04H","31","","","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2010-12-06 00:00:00","U","08A","12","B","2010-12-06 00:00:00","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2011-07-26 00:00:00","P","04L","27","","","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2012-04-03 00:00:00","P","05D","15","","","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2012-04-03 00:00:00","P","06E","15","","","2013-09-13 01:01:06.177000000" +"41167466","CAFE WATER","1","130","WATER STREET","10005","2127851320","27","2013-04-02 00:00:00","F","10F","49","C","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-11-14 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-11-14 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-11-14 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-11-21 00:00:00","O","","","P","2011-11-21 00:00:00","2013-09-13 01:01:06.177000000" +"41168206","BENTO NOUVEAU","1","1407","BROADWAY","10018","2123981405","49","2011-03-14 00:00:00","D","10F","9","A","2011-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41168206","BENTO NOUVEAU","1","1407","BROADWAY","10018","2123981405","49","2013-08-20 00:00:00","F","06B","39","","","2013-09-13 01:01:06.177000000" +"41168206","BENTO NOUVEAU","1","1407","BROADWAY","10018","2123981405","49","2013-08-20 00:00:00","F","08A","39","","","2013-09-13 01:01:06.177000000" +"41085412","SOBA-KOH","1","309 ","EAST 5 STREET ","10003","2122542244","49","2011-07-19 00:00:00","U","06D","10","B","2011-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2011-05-02 00:00:00","O","04H","9","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2011-12-08 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2012-05-17 00:00:00","P","02B","20","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2012-06-14 00:00:00","U","06E","12","B","2012-06-14 00:00:00","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2013-08-27 00:00:00","P","04H","19","","","2013-09-13 01:01:06.177000000" +"41168216","BENTO NOUVEAU","1","32","BROADWAY","10004","2127470994","49","2011-11-01 00:00:00","D","10F","12","A","2011-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"41106321","BARZOLA'S RESTAURANT III","4","92-12","37 AVENUE","11372","7182056900","77","2011-12-12 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2011-01-05 00:00:00","P","10B","16","","","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2011-06-13 00:00:00","F","04N","32","","","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2011-06-13 00:00:00","F","06A","32","","","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2011-12-27 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2012-01-10 00:00:00","U","08A","14","B","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2013-08-01 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2011-08-16 00:00:00","P","06E","20","","","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2012-06-25 00:00:00","U","02B","17","B","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2012-06-25 00:00:00","U","06F","17","B","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2013-04-10 00:00:00","F","02B","28","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2011-05-05 00:00:00","F","08A","55","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2011-11-10 00:00:00","F","06A","47","","","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2011-01-05 00:00:00","C","02B","12","A","2011-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2012-12-11 00:00:00","F","02B","33","","","2013-09-13 01:01:06.177000000" +"41177613","YAMA","1","308","EAST 49 STREET","10017","2123553370","49","2013-05-07 00:00:00","F","04J","31","","","2013-09-13 01:01:06.177000000" +"41108012","SILVER SPOON RESTAURANT","4","207-12","HOLLIS AVENUE","11429","7184683624","17","2011-05-13 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41108012","SILVER SPOON RESTAURANT","4","207-12","HOLLIS AVENUE","11429","7184683624","17","2011-05-13 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41108012","SILVER SPOON RESTAURANT","4","207-12","HOLLIS AVENUE","11429","7184683624","17","2011-05-13 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41108012","SILVER SPOON RESTAURANT","4","207-12","HOLLIS AVENUE","11429","7184683624","17","2011-05-13 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41171833","COLONY FRIED CHICKEN","2","864","PROSPECT AVENUE","10459","7185891372","18","2011-12-06 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41087130","CAFE METRO","1","569","LEXINGTON AVENUE","10022","2122232670","14","2013-04-08 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41087130","CAFE METRO","1","569","LEXINGTON AVENUE","10022","2122232670","14","2013-04-08 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2012-06-13 00:00:00","U","10F","10","B","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2012-12-05 00:00:00","F","04C","22","","","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2012-01-18 00:00:00","F","06D","38","","","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2012-01-30 00:00:00","D","04L","12","A","2012-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2013-06-10 00:00:00","P","08C","16","","","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2013-06-10 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2013-08-19 00:00:00","C","02G","13","","","2013-09-13 01:01:06.177000000" +"41133094","NORI SUSHI RESTAURANT","5","55","NEW DORP PLAZA","10306","7186680288","49","2010-11-03 00:00:00","C","06D","12","A","2010-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41133094","NORI SUSHI RESTAURANT","5","55","NEW DORP PLAZA","10306","7186680288","49","2012-10-13 00:00:00","P","04J","15","","","2013-09-13 01:01:06.177000000" +"41133094","NORI SUSHI RESTAURANT","5","55","NEW DORP PLAZA","10306","7186680288","49","2012-11-29 00:00:00","D","08C","9","A","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41133094","NORI SUSHI RESTAURANT","5","55","NEW DORP PLAZA","10306","7186680288","49","2012-11-29 00:00:00","D","10F","9","A","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2012-04-09 00:00:00","U","04N","13","B","2012-04-09 00:00:00","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2012-04-09 00:00:00","U","06C","13","B","2012-04-09 00:00:00","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2012-08-09 00:00:00","P","04L","27","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2013-03-28 00:00:00","U","02G","27","B","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2013-03-28 00:00:00","U","10H","27","B","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41179005","ROSAN JIN","1","141","DUANE STREET","10013","2123467807","49","2012-06-20 00:00:00","D","10F","5","A","2012-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41179005","ROSAN JIN","1","141","DUANE STREET","10013","2123467807","49","2012-12-18 00:00:00","F","06D","34","","","2013-09-13 01:01:06.177000000" +"41179005","ROSAN JIN","1","141","DUANE STREET","10013","2123467807","49","2013-07-02 00:00:00","P","02B","18","","","2013-09-13 01:01:06.177000000" +"41179282","SUBWAY","3","241","ROCKAWAY PARKWAY","11212","7183466550","69","2010-05-20 08:54:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41179282","SUBWAY","3","241","ROCKAWAY PARKWAY","11212","7183466550","69","2010-05-20 08:54:00","F","06B","49","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2010-10-21 00:00:00","P","06E","24","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-09-01 00:00:00","P","04C","22","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2012-04-03 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2012-04-18 00:00:00","D","10F","13","A","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2012-09-18 00:00:00","P","08B","15","","","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2013-08-19 00:00:00","C","10H","13","","","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2010-10-12 00:00:00","P","04H","22","","","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2010-11-15 00:00:00","U","04H","9","B","2010-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2011-07-13 00:00:00","F","02G","40","","","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2011-07-13 00:00:00","F","04H","40","","","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2011-08-11 00:00:00","U","08A","19","B","2011-08-11 00:00:00","2013-09-13 01:01:06.177000000" +"41108853","OMIYA SUSHI II","3","2317","AVENUE U","11229","7188918808","49","2010-12-21 00:00:00","C","08C","12","A","2010-12-21 00:00:00","2013-09-13 01:01:06.177000000" +"41108853","OMIYA SUSHI II","3","2317","AVENUE U","11229","7188918808","49","2011-11-30 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"41108853","OMIYA SUSHI II","3","2317","AVENUE U","11229","7188918808","49","2012-05-17 00:00:00","D","02G","13","A","2012-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41180860","BAY SUSHI","3","29","BAY RIDGE AVENUE","11220","7188363083","49","2010-03-04 17:30:00","F","06C","52","","","2013-09-13 01:01:06.177000000" +"41180860","BAY SUSHI","3","29","BAY RIDGE AVENUE","11220","7188363083","49","2010-12-11 00:00:00","P","10F","14","","","2013-09-13 01:01:06.177000000" +"41180860","BAY SUSHI","3","29","BAY RIDGE AVENUE","11220","7188363083","49","2011-08-30 00:00:00","D","10B","9","A","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41135254","NEW CATS CAFE","3","2027","EMMONS AVENUE","11235","7183324850","54","2010-05-13 13:57:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41135254","NEW CATS CAFE","3","2027","EMMONS AVENUE","11235","7183324850","54","2010-05-13 13:57:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41135793","MARTINIQUE CAFE","1","1260","BROADWAY","10001","2122446523","03","2013-08-05 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41109574","JAMBA JUICE","1","238","7 AVENUE","10011","2122292967","51","2010-08-31 00:00:00","F","04N","49","C","2010-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2011-10-27 00:00:00","P","10B","17","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2010-11-03 00:00:00","P","09A","7","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2011-05-06 00:00:00","F","02G","24","C","2011-05-06 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2011-05-06 00:00:00","F","10H","24","C","2011-05-06 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2011-10-12 00:00:00","U","06C","25","B","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-08-27 00:00:00","G","06F","96","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-08-27 00:00:00","G","08A","96","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-08-27 00:00:00","G","09C","96","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-08-30 00:00:00","O","10A","17","P","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-02-25 00:00:00","F","02B","23","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-07-22 00:00:00","G","10B","29","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-07-25 00:00:00","O","06D","5","P","2013-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"41182682","SARKU JAPAN","5","2655","RICHMOND AVENUE","10314","7186983023","49","2012-02-08 00:00:00","D","10F","10","A","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41119269","ROYAL INDIA PALACE AND RESTAURANT","4","118-08","ATLANTIC AVENUE","11419","7188467600","44","2012-01-11 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2012-01-10 00:00:00","F","04N","58","","","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2012-02-01 00:00:00","F","04L","33","C","2012-02-01 00:00:00","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2013-05-07 00:00:00","P","06D","12","","","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2013-04-15 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41120749","RICE N TEA","4","82-74","BROADWAY","11373","7183978888","20","2012-05-31 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41120749","RICE N TEA","4","82-74","BROADWAY","11373","7183978888","20","2012-05-31 00:00:00","G","06F","49","","","2013-09-13 01:01:06.177000000" +"41120749","RICE N TEA","4","82-74","BROADWAY","11373","7183978888","20","2012-05-31 00:00:00","G","10I","49","","","2013-09-13 01:01:06.177000000" +"41184581","BOROUGH RESTAURANT","3","338","FRANKLIN AVENUE","11238","7182304728","03","2012-09-07 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41184581","BOROUGH RESTAURANT","3","338","FRANKLIN AVENUE","11238","7182304728","03","2012-09-07 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2011-08-29 00:00:00","D","10F","7","A","2011-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2012-01-05 00:00:00","D","10F","3","A","2012-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41123423","J AND B PIZZERIA","5","2220","FOREST AVENUE","10303","7188765700","63","2010-11-15 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41105739","COLD STONE CREAMERY","3","8403","3 AVENUE","11209","7187451555","43","2013-01-05 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2010-12-14 00:00:00","C","06C","12","A","2010-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2012-02-16 00:00:00","F","10F","35","","","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2012-02-29 00:00:00","U","10F","19","B","2012-02-29 00:00:00","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2013-08-10 00:00:00","F","10J","33","","","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2012-06-04 00:00:00","P","02G","16","","","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2011-10-11 00:00:00","U","08A","20","B","2011-10-11 00:00:00","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2012-02-23 00:00:00","F","02G","34","","","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2012-07-24 00:00:00","P","10B","25","","","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2013-02-25 00:00:00","P","06A","21","","","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2010-05-21 10:57:00","U","02G","18","","","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2010-05-21 10:57:00","U","06D","18","","","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2012-08-30 00:00:00","F","04H","32","","","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2012-08-30 00:00:00","F","10B","32","","","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2012-09-10 00:00:00","D","08A","11","A","2012-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"41096117","KOI","1","40","WEST 40 STREET","10018","2129213330","49","2013-03-22 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2011-01-18 00:00:00","C","06D","13","A","2011-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2011-01-18 00:00:00","C","06E","13","A","2011-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2011-06-13 00:00:00","F","04C","32","","","2013-09-13 01:01:06.177000000" +"41177613","YAMA","1","308","EAST 49 STREET","10017","2123553370","49","2011-11-22 00:00:00","D","10F","4","A","2011-11-22 00:00:00","2013-09-13 01:01:06.177000000" +"41177613","YAMA","1","308","EAST 49 STREET","10017","2123553370","49","2013-05-07 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41125371","MIZU HIBACHI STEAK HOUSE","5","240","PAGE AVENUE","10307","7186088809","49","2011-10-20 00:00:00","F","04J","35","","","2013-09-13 01:01:06.177000000" +"41125371","MIZU HIBACHI STEAK HOUSE","5","240","PAGE AVENUE","10307","7186088809","49","2011-12-21 00:00:00","U","10B","8","B","2011-12-21 00:00:00","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2011-04-07 00:00:00","F","04H","34","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2011-07-21 00:00:00","D","10F","11","A","2011-07-21 00:00:00","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2012-06-13 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2012-06-13 00:00:00","P","06D","24","","","2013-09-13 01:01:06.177000000" +"41108012","SILVER SPOON RESTAURANT","4","207-12","HOLLIS AVENUE","11429","7184683624","17","2011-05-13 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"41108012","SILVER SPOON RESTAURANT","4","207-12","HOLLIS AVENUE","11429","7184683624","17","2011-05-13 00:00:00","F","10I","49","","","2013-09-13 01:01:06.177000000" +"41179005","ROSAN JIN","1","141","DUANE STREET","10013","2123467807","49","2011-06-03 00:00:00","D","06F","12","A","2011-06-03 00:00:00","2013-09-13 01:01:06.177000000" +"41179005","ROSAN JIN","1","141","DUANE STREET","10013","2123467807","49","2012-05-29 00:00:00","P","04G","17","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2010-11-17 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2012-04-02 00:00:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2012-04-02 00:00:00","F","10B","29","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2012-04-09 00:00:00","U","10B","13","B","2012-04-09 00:00:00","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2012-08-23 00:00:00","F","04L","19","C","2012-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2012-08-23 00:00:00","F","09C","19","C","2012-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2013-03-28 00:00:00","U","10B","27","B","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2013-08-26 00:00:00","G","04K","51","","","2013-09-13 01:01:06.177000000" +"41108450","IDO SHUSHI","1","29","7 AVENUE SOUTH","10014","2126917177","49","2013-06-12 00:00:00","F","10F","35","","","2013-09-13 01:01:06.177000000" +"41190258","KI SUSHI","3","122","SMITH STREET","11201","7189350575","49","2010-09-07 00:00:00","C","04K","6","A","2010-09-07 00:00:00","2013-09-13 01:01:06.177000000" +"41190258","KI SUSHI","3","122","SMITH STREET","11201","7189350575","49","2010-09-07 00:00:00","C","08A","6","A","2010-09-07 00:00:00","2013-09-13 01:01:06.177000000" +"41118794","TAQUERIA COCOYOC","3","211","WYCKOFF AVENUE","11237","7184974489","55","2011-08-30 00:00:00","F","03B","49","C","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41118794","TAQUERIA COCOYOC","3","211","WYCKOFF AVENUE","11237","7184974489","55","2011-08-30 00:00:00","F","08A","49","C","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41118794","TAQUERIA COCOYOC","3","211","WYCKOFF AVENUE","11237","7184974489","55","2011-08-30 00:00:00","F","08B","49","C","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41108853","OMIYA SUSHI II","3","2317","AVENUE U","11229","7188918808","49","2011-11-30 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"41108853","OMIYA SUSHI II","3","2317","AVENUE U","11229","7188918808","49","2013-05-13 00:00:00","P","09C","17","","","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2012-11-29 00:00:00","F","06C","31","","","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2010-03-03 11:24:00","U","04C","15","","","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2011-10-27 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2011-10-27 00:00:00","P","99B","17","","","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2011-12-05 00:00:00","D","06E","12","A","2011-12-05 00:00:00","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2012-04-17 00:00:00","P","02G","15","","","2013-09-13 01:01:06.177000000" +"41119269","ROYAL INDIA PALACE AND RESTAURANT","4","118-08","ATLANTIC AVENUE","11419","7188467600","44","2012-01-11 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41127243","MAMAJUANA CAFE","1","247","DYCKMAN STREET","10034","2123041217","53","2011-09-08 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41127243","MAMAJUANA CAFE","1","247","DYCKMAN STREET","10034","2123041217","53","2011-09-08 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41127243","MAMAJUANA CAFE","1","247","DYCKMAN STREET","10034","2123041217","53","2011-09-08 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41127243","MAMAJUANA CAFE","1","247","DYCKMAN STREET","10034","2123041217","53","2011-09-08 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41127602","DONGURI","1","309","EAST 83 STREET","10028","2127375656","49","2012-04-20 00:00:00","D","02G","12","A","2012-04-20 00:00:00","2013-09-13 01:01:06.177000000" +"41127602","DONGURI","1","309","EAST 83 STREET","10028","2127375656","49","2012-04-20 00:00:00","D","10H","12","A","2012-04-20 00:00:00","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2010-10-12 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2011-07-13 00:00:00","F","06C","40","","","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2011-07-13 00:00:00","F","08A","40","","","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2012-08-15 00:00:00","P","10B","10","","","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2012-08-31 00:00:00","F","04H","15","C","2012-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2013-03-04 00:00:00","P","02B","13","","","2013-09-13 01:01:06.177000000" +"41109985","LIMA'S TASTE","1","122","CHRISTOPHER STREET","10014","2122420010","61","2011-04-12 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41109985","LIMA'S TASTE","1","122","CHRISTOPHER STREET","10014","2122420010","61","2011-04-12 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41144484","CARIBE RESTAURANT BAR & LOUNGE","2","960","EAST 165 STREET","10459","7183285682","53","2010-09-08 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41120749","RICE N TEA","4","82-74","BROADWAY","11373","7183978888","20","2012-05-31 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41120749","RICE N TEA","4","82-74","BROADWAY","11373","7183978888","20","2012-05-31 00:00:00","G","04K","49","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2010-12-22 00:00:00","U","04M","15","B","2010-12-22 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2010-12-22 00:00:00","U","08A","15","B","2010-12-22 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2013-03-07 00:00:00","D","04H","12","A","2013-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41193113","SOSAKU JAPANESE RESTAURANT","3","6328","AVENUE N","11234","7189682800","49","2010-10-28 00:00:00","P","04C","25","","","2013-09-13 01:01:06.177000000" +"41193113","SOSAKU JAPANESE RESTAURANT","3","6328","AVENUE N","11234","7189682800","49","2011-04-07 00:00:00","D","08A","12","A","2011-04-07 00:00:00","2013-09-13 01:01:06.177000000" +"41193113","SOSAKU JAPANESE RESTAURANT","3","6328","AVENUE N","11234","7189682800","49","2012-03-13 00:00:00","D","06E","11","A","2012-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41128554","LA NONNA","1","134","MULBERRY STREET","10013","2123346200","48","2011-04-20 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2011-05-06 00:00:00","F","04J","24","C","2011-05-06 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2011-05-06 00:00:00","F","10F","24","C","2011-05-06 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2011-05-06 00:00:00","F","18A","24","C","2011-05-06 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2011-10-04 00:00:00","F","06E","28","","","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2011-02-15 00:00:00","D","06F","12","A","2011-02-15 00:00:00","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2011-02-15 00:00:00","D","10F","12","A","2011-02-15 00:00:00","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2011-11-02 00:00:00","D","02G","12","A","2011-11-02 00:00:00","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2011-12-07 00:00:00","D","02B","9","A","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2013-06-15 00:00:00","F","10B","21","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2011-10-12 00:00:00","U","02B","25","B","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2011-10-12 00:00:00","U","10A","25","B","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-02-13 00:00:00","U","04K","19","B","2012-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-08-27 00:00:00","G","04H","96","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-10-01 00:00:00","U","04L","13","B","2012-10-01 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-07-22 00:00:00","G","10E","29","","","2013-09-13 01:01:06.177000000" +"41182682","SARKU JAPAN","5","2655","RICHMOND AVENUE","10314","7186983023","49","2013-05-15 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2010-09-01 00:00:00","F","10F","46","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2010-12-03 00:00:00","C","06E","9","A","2010-12-03 00:00:00","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2011-05-02 00:00:00","O","10F","9","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2011-07-27 00:00:00","P","02B","23","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2011-12-08 00:00:00","P","04A","24","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2012-05-17 00:00:00","P","06D","20","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2012-05-17 00:00:00","P","06E","20","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2013-02-14 00:00:00","P","08A","14","","","2013-09-13 01:01:06.177000000" +"41194762","NEW BEIJING WOK","1","1324","2 AVENUE","10021","2126399418","20","2011-05-24 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41112946","52nd SUSHI","4","52-21","ROOSEVELT AVENUE","11377","7185079204","49","2009-10-09 14:56:00","F","02B","40","","","2013-09-13 01:01:06.177000000" +"41112946","52nd SUSHI","4","52-21","ROOSEVELT AVENUE","11377","7185079204","49","2009-12-21 10:54:00","D","10L","5","","","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2010-10-12 00:00:00","P","04H","22","","","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2010-10-21 00:00:00","U","04N","4","B","2010-10-21 00:00:00","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2011-04-25 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2011-04-25 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2011-06-21 00:00:00","U","08A","18","B","2011-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2011-04-05 00:00:00","D","08A","12","A","2011-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2012-03-23 00:00:00","F","04M","48","","","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2012-08-30 00:00:00","P","06D","24","","","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2012-09-24 00:00:00","D","06E","12","A","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2013-04-03 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2011-02-22 00:00:00","F","02B","46","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2011-02-22 00:00:00","F","06E","46","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2011-03-22 00:00:00","G","06C","37","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2011-03-24 00:00:00","O","10F","5","C","2011-03-24 00:00:00","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2013-04-10 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2012-02-21 00:00:00","P","06C","24","","","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2012-03-02 00:00:00","D","08C","9","A","2012-03-02 00:00:00","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2012-03-02 00:00:00","D","10F","9","A","2012-03-02 00:00:00","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2012-07-10 00:00:00","F","10C","35","","","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2013-04-27 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41148187","LOONG HING CHINESE RESTAURANT","4","11318 ","SUTPHIN BLVD","11435","7185293637","20","2010-10-13 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2011-05-16 00:00:00","G","08A","55","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2011-05-18 00:00:00","W","04M","37","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2011-05-18 00:00:00","W","10F","37","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2013-02-28 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2013-09-11 00:00:00","P","06D","18","","","2013-09-13 01:01:06.177000000" +"41184581","BOROUGH RESTAURANT","3","338","FRANKLIN AVENUE","11238","7182304728","03","2012-09-07 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41184581","BOROUGH RESTAURANT","3","338","FRANKLIN AVENUE","11238","7182304728","03","2012-09-07 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2011-12-23 00:00:00","P","04L","27","","","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2012-06-04 00:00:00","P","10B","16","","","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2013-04-10 00:00:00","F","06B","28","","","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2011-04-25 00:00:00","O","10B","2","P","2011-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2011-04-25 00:00:00","O","22C","2","P","2011-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41125371","MIZU HIBACHI STEAK HOUSE","5","240","PAGE AVENUE","10307","7186088809","49","2011-10-20 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"41125371","MIZU HIBACHI STEAK HOUSE","5","240","PAGE AVENUE","10307","7186088809","49","2011-10-20 00:00:00","F","06C","35","","","2013-09-13 01:01:06.177000000" +"41125371","MIZU HIBACHI STEAK HOUSE","5","240","PAGE AVENUE","10307","7186088809","49","2012-05-08 00:00:00","F","04A","17","","","2013-09-13 01:01:06.177000000" +"41125371","MIZU HIBACHI STEAK HOUSE","5","240","PAGE AVENUE","10307","7186088809","49","2012-05-23 00:00:00","U","10F","20","B","2012-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2012-01-10 00:00:00","F","06D","58","","","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2012-03-15 00:00:00","G","04L","48","","","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2012-08-15 00:00:00","P","10F","12","","","2013-09-13 01:01:06.177000000" +"41133094","NORI SUSHI RESTAURANT","5","55","NEW DORP PLAZA","10306","7186680288","49","2010-09-21 00:00:00","P","10F","24","","","2013-09-13 01:01:06.177000000" +"41133094","NORI SUSHI RESTAURANT","5","55","NEW DORP PLAZA","10306","7186680288","49","2011-05-11 00:00:00","D","09C","11","A","2011-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"41133094","NORI SUSHI RESTAURANT","5","55","NEW DORP PLAZA","10306","7186680288","49","2012-10-13 00:00:00","P","04N","15","","","2013-09-13 01:01:06.177000000" +"41127602","DONGURI","1","309","EAST 83 STREET","10028","2127375656","49","2010-10-13 00:00:00","U","02G","23","B","2010-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"41127602","DONGURI","1","309","EAST 83 STREET","10028","2127375656","49","2011-08-17 00:00:00","U","04H","9","B","2011-08-17 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2011-07-21 00:00:00","F","04M","24","C","2011-07-21 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2012-01-19 00:00:00","U","08A","16","B","2012-01-19 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2012-06-16 00:00:00","D","02G","9","A","2012-06-16 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2012-06-16 00:00:00","D","10H","9","A","2012-06-16 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2013-03-07 00:00:00","D","06C","12","A","2013-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2013-08-22 00:00:00","F","03A","28","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2013-08-22 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"41135254","NEW CATS CAFE","3","2027","EMMONS AVENUE","11235","7183324850","54","2010-05-13 13:57:00","F","10C","49","","","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2011-02-22 00:00:00","P","99B","26","","","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2011-03-08 00:00:00","U","06C","13","B","2011-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2011-08-29 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2011-10-11 00:00:00","U","04H","20","B","2011-10-11 00:00:00","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2012-02-23 00:00:00","F","04M","34","","","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2012-02-23 00:00:00","F","06E","34","","","2013-09-13 01:01:06.177000000" +"41119269","ROYAL INDIA PALACE AND RESTAURANT","4","118-08","ATLANTIC AVENUE","11419","7188467600","44","2012-01-11 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41106321","BARZOLA'S RESTAURANT III","4","92-12","37 AVENUE","11372","7182056900","77","2011-12-12 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2011-06-13 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41120749","RICE N TEA","4","82-74","BROADWAY","11373","7183978888","20","2012-05-31 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41120749","RICE N TEA","4","82-74","BROADWAY","11373","7183978888","20","2012-05-31 00:00:00","G","10B","49","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2010-09-01 00:00:00","F","09B","46","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2011-04-29 00:00:00","W","06C","21","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2011-07-27 00:00:00","P","06C","23","","","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2011-06-13 00:00:00","F","10B","32","","","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2011-12-27 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2010-12-02 00:00:00","F","08A","31","C","2010-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"41190258","KI SUSHI","3","122","SMITH STREET","11201","7189350575","49","2011-08-19 00:00:00","P","06F","19","","","2013-09-13 01:01:06.177000000" +"41190258","KI SUSHI","3","122","SMITH STREET","11201","7189350575","49","2011-09-26 00:00:00","U","06A","12","B","2011-09-26 00:00:00","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2010-06-17 12:02:00","G","04K","108","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2011-01-25 00:00:00","D","02G","12","A","2011-01-25 00:00:00","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2011-01-25 00:00:00","D","99B","12","A","2011-01-25 00:00:00","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2012-12-06 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2013-01-02 00:00:00","F","02G","35","C","2013-01-02 00:00:00","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2013-05-31 00:00:00","F","04L","33","","","2013-09-13 01:01:06.177000000" +"41108012","SILVER SPOON RESTAURANT","4","207-12","HOLLIS AVENUE","11429","7184683624","17","2011-05-13 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41108012","SILVER SPOON RESTAURANT","4","207-12","HOLLIS AVENUE","11429","7184683624","17","2011-05-13 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41108012","SILVER SPOON RESTAURANT","4","207-12","HOLLIS AVENUE","11429","7184683624","17","2011-05-13 00:00:00","F","10D","49","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2011-11-16 00:00:00","U","04H","21","B","2011-11-16 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2011-11-16 00:00:00","U","08A","21","B","2011-11-16 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2012-07-12 00:00:00","F","06D","33","C","2012-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2013-02-28 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2013-02-28 00:00:00","F","06C","32","","","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2012-04-24 00:00:00","D","02B","13","A","2012-04-24 00:00:00","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2012-09-25 00:00:00","F","06F","19","","","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2012-11-20 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2013-04-17 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2010-11-17 00:00:00","F","02B","37","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2012-08-09 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2012-08-23 00:00:00","F","10B","19","C","2012-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2013-03-06 00:00:00","F","04J","31","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2013-08-26 00:00:00","G","04L","51","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2013-08-28 00:00:00","W","04L","11","","","2013-09-13 01:01:06.177000000" +"41108450","IDO SHUSHI","1","29","7 AVENUE SOUTH","10014","2126917177","49","2013-06-12 00:00:00","F","08A","35","","","2013-09-13 01:01:06.177000000" +"41123423","J AND B PIZZERIA","5","2220","FOREST AVENUE","10303","7188765700","63","2010-11-15 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41133094","NORI SUSHI RESTAURANT","5","55","NEW DORP PLAZA","10306","7186680288","49","2011-05-11 00:00:00","D","08C","11","A","2011-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2011-06-22 00:00:00","P","04M","22","","","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2011-06-22 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2011-06-22 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2011-09-23 00:00:00","D","06D","10","A","2011-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2012-02-16 00:00:00","F","04H","35","","","2013-09-13 01:01:06.177000000" +"41193113","SOSAKU JAPANESE RESTAURANT","3","6328","AVENUE N","11234","7189682800","49","2012-03-13 00:00:00","D","10B","11","A","2012-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41108853","OMIYA SUSHI II","3","2317","AVENUE U","11229","7188918808","49","2010-12-21 00:00:00","C","02G","12","A","2010-12-21 00:00:00","2013-09-13 01:01:06.177000000" +"41108853","OMIYA SUSHI II","3","2317","AVENUE U","11229","7188918808","49","2011-11-30 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"41206966","THAI BASIL","1","860","9 AVENUE","10019","2123972036","82","2010-12-14 00:00:00","F","02G","49","C","2010-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2011-02-03 00:00:00","P","02B","16","","","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2011-07-19 00:00:00","F","04J","41","C","2011-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2011-07-19 00:00:00","F","05H","41","C","2011-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41109574","JAMBA JUICE","1","238","7 AVENUE","10011","2122292967","51","2010-08-31 00:00:00","F","06F","49","C","2010-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41109574","JAMBA JUICE","1","238","7 AVENUE","10011","2122292967","51","2010-08-31 00:00:00","F","08A","49","C","2010-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41109574","JAMBA JUICE","1","238","7 AVENUE","10011","2122292967","51","2010-08-31 00:00:00","F","08B","49","C","2010-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41125371","MIZU HIBACHI STEAK HOUSE","5","240","PAGE AVENUE","10307","7186088809","49","2010-10-05 00:00:00","C","02B","9","A","2010-10-05 00:00:00","2013-09-13 01:01:06.177000000" +"41125371","MIZU HIBACHI STEAK HOUSE","5","240","PAGE AVENUE","10307","7186088809","49","2011-12-21 00:00:00","U","06E","8","B","2011-12-21 00:00:00","2013-09-13 01:01:06.177000000" +"41135254","NEW CATS CAFE","3","2027","EMMONS AVENUE","11235","7183324850","54","2010-05-13 13:57:00","F","10K","49","","","2013-09-13 01:01:06.177000000" +"41194762","NEW BEIJING WOK","1","1324","2 AVENUE","10021","2126399418","20","2011-05-24 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2010-08-26 00:00:00","P","04N","14","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2010-08-26 00:00:00","P","08A","14","","","2013-09-13 01:01:06.177000000" +"41208272","KAWA SUSHI 8 AVENUE","1","24","8 AVENUE","10014","2123666888","49","2011-01-04 00:00:00","U","02G","14","B","2011-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41208272","KAWA SUSHI 8 AVENUE","1","24","8 AVENUE","10014","2123666888","49","2011-07-26 00:00:00","D","02B","13","A","2011-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41208272","KAWA SUSHI 8 AVENUE","1","24","8 AVENUE","10014","2123666888","49","2012-07-25 00:00:00","D","02H","12","A","2012-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2010-11-29 00:00:00","U","02B","9","B","2010-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2012-02-07 00:00:00","D","06E","13","A","2012-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2012-02-07 00:00:00","D","10F","13","A","2012-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2013-02-28 00:00:00","P","06E","24","","","2013-09-13 01:01:06.177000000" +"41127243","MAMAJUANA CAFE","1","247","DYCKMAN STREET","10034","2123041217","53","2011-09-08 00:00:00","F","09B","49","","","2013-09-13 01:01:06.177000000" +"41127602","DONGURI","1","309","EAST 83 STREET","10028","2127375656","49","2010-10-13 00:00:00","U","10B","23","B","2010-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2012-04-30 00:00:00","P","05H","27","","","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2012-11-29 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2010-11-08 00:00:00","F","06D","35","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2010-12-22 00:00:00","U","04L","15","B","2010-12-22 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2010-12-22 00:00:00","U","10F","15","B","2010-12-22 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2011-07-21 00:00:00","F","10H","24","C","2011-07-21 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2012-01-19 00:00:00","U","04H","16","B","2012-01-19 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2012-06-04 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"41209785","FRESCO TORTILLAS GRILL","2","3426","JEROME AVENUE","10467","7185156545","55","2011-08-11 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41143917","ANTHONY'S BRICK OVEN PIZZA & RESTAURANT","3","426A","7 AVENUE","11215","7183698315","62","2013-05-07 00:00:00","G","10B","49","","","2013-09-13 01:01:06.177000000" +"41128554","LA NONNA","1","134","MULBERRY STREET","10013","2123346200","48","2011-04-20 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2010-09-01 00:00:00","F","08A","46","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2011-04-27 00:00:00","G","02B","55","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2011-04-29 00:00:00","W","08A","21","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2011-04-29 00:00:00","W","10B","21","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2011-07-27 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2013-02-14 00:00:00","P","04L","14","","","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2012-06-25 00:00:00","U","06C","17","B","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41157881","LA TIA RESTAURANT","2","200A","WEST 231 STREET","10463","7184321008","53","2010-10-28 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"41157881","LA TIA RESTAURANT","2","200A","WEST 231 STREET","10463","7184321008","53","2010-10-28 00:00:00","F","22C","49","","","2013-09-13 01:01:06.177000000" +"41212149","KYO-YA","1","94","EAST 7 STREET","10009","2129824140","49","2011-05-11 00:00:00","P","18G","20","","","2013-09-13 01:01:06.177000000" +"41212149","KYO-YA","1","94","EAST 7 STREET","10009","2129824140","49","2011-07-20 00:00:00","D","06F","12","A","2011-07-20 00:00:00","2013-09-13 01:01:06.177000000" +"41212149","KYO-YA","1","94","EAST 7 STREET","10009","2129824140","49","2013-03-13 00:00:00","D","06F","11","A","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41212249","GEM & JOE INDIAN'S EAT AND DRINK CAFE","3","1054","ROGERS AVENUE","11226","7182827583","17","2012-03-05 00:00:00","F","08C","49","C","2012-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2012-03-14 00:00:00","P","02B","12","","","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2012-09-25 00:00:00","F","06D","19","","","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2013-06-11 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2012-02-16 00:00:00","F","06E","35","","","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2012-02-29 00:00:00","U","04H","19","B","2012-02-29 00:00:00","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2012-02-29 00:00:00","U","06D","19","B","2012-02-29 00:00:00","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2012-04-02 00:00:00","D","06D","12","A","2012-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2012-08-30 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2012-09-24 00:00:00","D","10B","12","A","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2013-05-29 00:00:00","C","04M","11","","","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2013-05-29 00:00:00","C","08A","11","","","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2011-05-12 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2011-12-23 00:00:00","D","99B","11","A","2011-12-23 00:00:00","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2012-04-30 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2012-06-07 00:00:00","D","02G","11","A","2012-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41159798","MORIMOTO NY","1","88","10 AVENUE","10011","2129894639","49","2011-12-13 00:00:00","D","02G","9","A","2011-12-13 00:00:00","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2012-03-02 00:00:00","D","09C","9","A","2012-03-02 00:00:00","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2012-07-10 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2012-07-27 00:00:00","U","04M","10","B","2012-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2012-07-27 00:00:00","U","08A","10","B","2012-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"41148212","M & Y ENTERTAINMENT","4","40-31","162 STREET","11358","7183588477","03","2011-07-13 00:00:00","F","04L","49","C","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41148212","M & Y ENTERTAINMENT","4","40-31","162 STREET","11358","7183588477","03","2011-07-13 00:00:00","F","06D","49","C","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2010-08-31 00:00:00","U","99B","12","B","2010-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2011-09-24 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41133094","NORI SUSHI RESTAURANT","5","55","NEW DORP PLAZA","10306","7186680288","49","2010-09-21 00:00:00","P","04C","24","","","2013-09-13 01:01:06.177000000" +"41118794","TAQUERIA COCOYOC","3","211","WYCKOFF AVENUE","11237","7184974489","55","2011-08-30 00:00:00","F","04N","49","C","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2010-03-03 11:24:00","U","10B","15","","","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2011-05-03 00:00:00","P","04H","16","","","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2011-12-05 00:00:00","D","06B","12","A","2011-12-05 00:00:00","2013-09-13 01:01:06.177000000" +"41119269","ROYAL INDIA PALACE AND RESTAURANT","4","118-08","ATLANTIC AVENUE","11419","7188467600","44","2012-01-11 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41119269","ROYAL INDIA PALACE AND RESTAURANT","4","118-08","ATLANTIC AVENUE","11419","7188467600","44","2012-01-11 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41143058","THE ROOSEVELT HOTEL","1","45","EAST 45 STREET","10017","2128856076","03","2011-10-20 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41143058","THE ROOSEVELT HOTEL","1","45","EAST 45 STREET","10017","2128856076","03","2011-10-20 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41135793","MARTINIQUE CAFE","1","1260","BROADWAY","10001","2122446523","03","2013-08-05 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2011-02-16 00:00:00","P","06E","17","","","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2011-03-02 00:00:00","D","10F","8","A","2011-03-02 00:00:00","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2012-07-30 00:00:00","D","10F","3","A","2012-07-30 00:00:00","2013-09-13 01:01:06.177000000" +"41120749","RICE N TEA","4","82-74","BROADWAY","11373","7183978888","20","2012-05-31 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2012-05-17 00:00:00","D","10F","7","A","2012-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41143917","ANTHONY'S BRICK OVEN PIZZA & RESTAURANT","3","426A","7 AVENUE","11215","7183698315","62","2013-05-07 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2010-08-25 00:00:00","P","22B","21","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2011-03-07 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2011-03-07 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2012-01-06 00:00:00","D","06A","7","A","2012-01-06 00:00:00","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2012-05-18 00:00:00","D","10B","13","A","2012-05-18 00:00:00","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2010-06-17 12:02:00","G","06C","108","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2010-06-22 09:00:00","O","10G","4","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2012-05-23 00:00:00","F","10B","32","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2013-01-02 00:00:00","F","04L","35","C","2013-01-02 00:00:00","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2013-01-02 00:00:00","F","06C","35","C","2013-01-02 00:00:00","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2013-01-02 00:00:00","F","08A","35","C","2013-01-02 00:00:00","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2013-01-02 00:00:00","F","10F","35","C","2013-01-02 00:00:00","2013-09-13 01:01:06.177000000" +"41144484","CARIBE RESTAURANT BAR & LOUNGE","2","960","EAST 165 STREET","10459","7183285682","53","2010-09-08 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41150462","CHEN'S GARDEN","3","110-46","FLATLANDS AVENUE","11207","7186491711","20","2011-12-05 00:00:00","F","10F","49","C","2011-12-05 00:00:00","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2012-02-06 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2012-08-01 00:00:00","P","10F","12","","","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2011-05-12 00:00:00","D","06C","12","A","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"41123423","J AND B PIZZERIA","5","2220","FOREST AVENUE","10303","7188765700","63","2010-11-15 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2012-03-23 00:00:00","F","06F","48","","","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2012-08-30 00:00:00","P","04C","24","","","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2012-09-24 00:00:00","D","09C","12","A","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2012-09-24 00:00:00","D","10F","12","A","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2011-08-10 00:00:00","F","05F","64","","","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2012-04-24 00:00:00","D","06B","13","A","2012-04-24 00:00:00","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2012-09-25 00:00:00","F","10B","19","","","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2012-10-16 00:00:00","D","06E","10","A","2012-10-16 00:00:00","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2012-12-04 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2012-02-29 00:00:00","U","06C","19","B","2012-02-29 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2010-08-24 00:00:00","F","06F","24","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2011-04-21 00:00:00","U","04L","10","B","2011-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2011-10-17 00:00:00","P","06E","25","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2011-10-17 00:00:00","P","09C","25","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2011-11-16 00:00:00","U","10F","21","B","2011-11-16 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2012-06-29 00:00:00","F","02B","15","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2012-07-12 00:00:00","F","02B","33","C","2012-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2012-07-12 00:00:00","F","04L","33","C","2012-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2013-02-28 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2013-03-21 00:00:00","U","04J","20","B","2013-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2012-07-10 00:00:00","F","10A","35","","","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2012-07-10 00:00:00","F","10B","35","","","2013-09-13 01:01:06.177000000" +"41148187","LOONG HING CHINESE RESTAURANT","4","11318 ","SUTPHIN BLVD","11435","7185293637","20","2010-10-13 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41125371","MIZU HIBACHI STEAK HOUSE","5","240","PAGE AVENUE","10307","7186088809","49","2012-05-23 00:00:00","U","04K","20","B","2012-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"41217902","MAHARAJA INDIAN CUISINE","1","133","EAST 45 STREET","10017","2126827962","44","2012-02-29 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41206966","THAI BASIL","1","860","9 AVENUE","10019","2123972036","82","2010-12-14 00:00:00","F","08A","49","C","2010-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41206966","THAI BASIL","1","860","9 AVENUE","10019","2123972036","82","2010-12-14 00:00:00","F","99B","49","C","2010-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41148212","M & Y ENTERTAINMENT","4","40-31","162 STREET","11358","7183588477","03","2011-07-13 00:00:00","F","04H","49","C","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2010-08-10 00:00:00","P","02B","23","","","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2011-04-21 00:00:00","G","04L","61","","","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2011-04-21 00:00:00","G","10F","61","","","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2011-06-11 00:00:00","D","06E","11","A","2011-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2012-05-23 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2012-11-20 00:00:00","F","02B","23","","","2013-09-13 01:01:06.177000000" +"41127243","MAMAJUANA CAFE","1","247","DYCKMAN STREET","10034","2123041217","53","2011-09-08 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2011-06-18 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2012-01-04 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2012-06-04 00:00:00","P","04N","24","","","2013-09-13 01:01:06.177000000" +"41219223","ZENKICHI","3","77 ","NORTH 6 STREET ","11249","7183888985","49","2012-04-25 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41219463","BETTY BAKERY","3","448","ATLANTIC AVENUE","11217","7182462402","08","2011-11-09 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41219569","SUTEISHI","1","24","PECK SLIP","10038","2127662344","49","2011-01-18 00:00:00","C","02B","12","A","2011-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"41219576","EMPERADOR ELIAS RESTAURANT","3","274","BROADWAY","11211","7183887784","53","2013-08-07 00:00:00","G","04A","49","","","2013-09-13 01:01:06.177000000" +"41219576","EMPERADOR ELIAS RESTAURANT","3","274","BROADWAY","11211","7183887784","53","2013-08-07 00:00:00","G","06A","49","","","2013-09-13 01:01:06.177000000" +"41219576","EMPERADOR ELIAS RESTAURANT","3","274","BROADWAY","11211","7183887784","53","2013-08-07 00:00:00","G","10B","49","","","2013-09-13 01:01:06.177000000" +"41128245","EL VALLE RESTAURANT","2","2448","JEROME AVENUE","10468","7185616600","53","2011-08-24 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2011-07-26 00:00:00","P","08C","27","","","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2011-08-15 00:00:00","U","04H","19","B","2011-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2013-03-12 00:00:00","F","10B","14","","","2013-09-13 01:01:06.177000000" +"41167466","CAFE WATER","1","130","WATER STREET","10005","2127851320","27","2013-04-02 00:00:00","F","04J","49","C","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41156149","Tasty Delicious Bakery","3","1096","RUTLAND ROAD","11212","7182211222","17","2013-03-14 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41156149","Tasty Delicious Bakery","3","1096","RUTLAND ROAD","11212","7182211222","17","2013-03-14 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41156149","Tasty Delicious Bakery","3","1096","RUTLAND ROAD","11212","7182211222","17","2013-03-14 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41150462","CHEN'S GARDEN","3","110-46","FLATLANDS AVENUE","11207","7186491711","20","2011-12-05 00:00:00","F","08A","49","C","2011-12-05 00:00:00","2013-09-13 01:01:06.177000000" +"41143058","THE ROOSEVELT HOTEL","1","45","EAST 45 STREET","10017","2128856076","03","2011-10-20 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2012-04-30 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2012-04-30 00:00:00","P","10D","27","","","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2012-05-17 00:00:00","D","10D","7","A","2012-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2010-09-01 00:00:00","F","04M","46","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2011-04-29 00:00:00","W","04M","21","","","2013-09-13 01:01:06.177000000" +"41220720","SUSHI OF GARI 46","1","347","WEST 46 STREET","10036","2129570046","49","2012-12-11 00:00:00","P","06C","14","","","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2011-02-22 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2011-02-22 00:00:00","P","09C","26","","","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2011-09-13 00:00:00","P","10B","19","","","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2011-09-23 00:00:00","D","06E","7","A","2011-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"41144484","CARIBE RESTAURANT BAR & LOUNGE","2","960","EAST 165 STREET","10459","7183285682","53","2010-09-08 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-03-15 00:00:00","F","02B","39","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-03-15 00:00:00","F","06C","39","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-11-14 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2012-01-24 00:00:00","P","04M","19","","","2013-09-13 01:01:06.177000000" +"41168206","BENTO NOUVEAU","1","1407","BROADWAY","10018","2123981405","49","2010-10-04 00:00:00","C","02G","8","A","2010-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41168206","BENTO NOUVEAU","1","1407","BROADWAY","10018","2123981405","49","2013-08-20 00:00:00","F","02B","39","","","2013-09-13 01:01:06.177000000" +"41168206","BENTO NOUVEAU","1","1407","BROADWAY","10018","2123981405","49","2013-08-20 00:00:00","F","04N","39","","","2013-09-13 01:01:06.177000000" +"41157881","LA TIA RESTAURANT","2","200A","WEST 231 STREET","10463","7184321008","53","2010-10-28 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2011-01-07 00:00:00","F","10B","19","C","2011-01-07 00:00:00","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2011-10-11 00:00:00","P","08C","20","","","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2012-05-22 00:00:00","U","06D","11","B","2012-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2013-08-20 00:00:00","P","06D","21","","","2013-09-13 01:01:06.177000000" +"41223011","SUSHI SASABUNE NEW YORK","1","401","EAST 73 STREET","10021","2122498583","49","2013-05-22 00:00:00","P","04C","22","","","2013-09-13 01:01:06.177000000" +"41212149","KYO-YA","1","94","EAST 7 STREET","10009","2129824140","49","2011-12-07 00:00:00","D","06C","12","A","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41212149","KYO-YA","1","94","EAST 7 STREET","10009","2129824140","49","2013-01-15 00:00:00","P","02H","20","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2010-12-02 00:00:00","F","02B","31","C","2010-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2013-02-28 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2013-03-21 00:00:00","U","04L","20","B","2013-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2011-10-24 00:00:00","F","06D","28","","","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2012-04-30 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2013-01-04 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2013-01-04 00:00:00","P","06E","25","","","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2013-09-11 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41133094","NORI SUSHI RESTAURANT","5","55","NEW DORP PLAZA","10306","7186680288","49","2011-05-11 00:00:00","D","06E","11","A","2011-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"41212249","GEM & JOE INDIAN'S EAT AND DRINK CAFE","3","1054","ROGERS AVENUE","11226","7182827583","17","2012-03-05 00:00:00","F","04N","49","C","2012-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"41212249","GEM & JOE INDIAN'S EAT AND DRINK CAFE","3","1054","ROGERS AVENUE","11226","7182827583","17","2012-03-05 00:00:00","F","08A","49","C","2012-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"41212617","YA-YA'S BAKERY","4","28-46","31 STREET","11102","7189323113","08","2010-12-09 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2011-05-05 00:00:00","F","04L","55","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2011-11-10 00:00:00","F","06E","47","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2011-11-22 00:00:00","U","10E","11","B","2011-11-22 00:00:00","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2012-04-20 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41159798","MORIMOTO NY","1","88","10 AVENUE","10011","2129894639","49","2013-01-24 00:00:00","P","06I","17","","","2013-09-13 01:01:06.177000000" +"41148212","M & Y ENTERTAINMENT","4","40-31","162 STREET","11358","7183588477","03","2011-07-13 00:00:00","F","08A","49","C","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2010-08-10 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2012-06-13 00:00:00","D","10F","13","A","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2012-11-20 00:00:00","F","04L","23","","","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2012-12-10 00:00:00","U","04L","13","B","2012-12-10 00:00:00","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2013-08-15 00:00:00","F","04J","53","","","2013-09-13 01:01:06.177000000" +"41135254","NEW CATS CAFE","3","2027","EMMONS AVENUE","11235","7183324850","54","2010-05-13 13:57:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41224493","SHIRO OF JAPAN (AT ATLAS MALL)","4","80-40 ","COOPER AVENUE ","11385","7183268704","49","2010-11-22 00:00:00","C","03C","12","A","2010-11-22 00:00:00","2013-09-13 01:01:06.177000000" +"41224493","SHIRO OF JAPAN (AT ATLAS MALL)","4","80-40 ","COOPER AVENUE ","11385","7183268704","49","2012-01-13 00:00:00","P","06C","27","","","2013-09-13 01:01:06.177000000" +"41224493","SHIRO OF JAPAN (AT ATLAS MALL)","4","80-40 ","COOPER AVENUE ","11385","7183268704","49","2012-02-08 00:00:00","D","05D","13","A","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41224493","SHIRO OF JAPAN (AT ATLAS MALL)","4","80-40 ","COOPER AVENUE ","11385","7183268704","49","2012-08-27 00:00:00","D","10F","4","A","2012-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41224493","SHIRO OF JAPAN (AT ATLAS MALL)","4","80-40 ","COOPER AVENUE ","11385","7183268704","49","2013-04-20 00:00:00","F","06A","37","","","2013-09-13 01:01:06.177000000" +"41214817","HOKKAIDO","5","3295","AMBOY ROAD","10306","7189800880","49","2013-01-19 00:00:00","P","04C","7","","","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2011-07-28 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2012-07-18 00:00:00","P","08C","12","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2010-10-21 00:00:00","P","06A","24","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-05-19 00:00:00","G","04J","107","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-05-19 00:00:00","G","05D","107","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2012-04-03 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2012-09-18 00:00:00","P","06D","15","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2011-06-16 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2011-07-19 00:00:00","F","02B","40","C","2011-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2011-07-19 00:00:00","F","10A","40","C","2011-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2012-01-24 00:00:00","U","04K","22","B","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2012-01-24 00:00:00","U","04N","22","B","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2012-01-24 00:00:00","U","08A","22","B","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2012-05-29 00:00:00","P","10B","18","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2010-08-25 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2010-08-25 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2010-08-25 00:00:00","P","10E","21","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2011-03-28 00:00:00","D","02G","7","A","2011-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2011-08-15 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2011-12-13 00:00:00","P","04N","23","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2012-05-18 00:00:00","D","09C","13","A","2012-05-18 00:00:00","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2013-05-22 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"41150462","CHEN'S GARDEN","3","110-46","FLATLANDS AVENUE","11207","7186491711","20","2011-12-05 00:00:00","F","06A","49","C","2011-12-05 00:00:00","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2011-03-08 00:00:00","U","08B","13","B","2011-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2011-03-08 00:00:00","U","10F","13","B","2011-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2011-09-13 00:00:00","P","02H","19","","","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2012-02-16 00:00:00","D","06F","12","A","2012-02-16 00:00:00","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2012-08-01 00:00:00","P","05D","12","","","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2012-09-18 00:00:00","D","10C","13","A","2012-09-18 00:00:00","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2012-02-22 00:00:00","D","06E","10","A","2012-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2013-05-08 00:00:00","G","08A","46","","","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2013-05-14 00:00:00","O","08A","11","P","2013-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2010-08-31 00:00:00","P","10B","27","","","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2011-09-22 00:00:00","P","06E","18","","","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2012-02-16 00:00:00","F","04L","35","","","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2013-08-10 00:00:00","F","02G","33","","","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2013-08-10 00:00:00","F","06D","33","","","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2013-08-10 00:00:00","F","06E","33","","","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2013-08-10 00:00:00","F","10H","33","","","2013-09-13 01:01:06.177000000" +"41157881","LA TIA RESTAURANT","2","200A","WEST 231 STREET","10463","7184321008","53","2010-10-28 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41226279","ROSIES PLACE","4","137-02","CROSSBAY BOULEVARD","11417","9174596848","03","2011-06-14 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2010-08-24 00:00:00","F","04H","24","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2010-08-24 00:00:00","F","06E","24","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2011-04-06 00:00:00","P","20A","20","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2011-10-17 00:00:00","P","04H","25","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2012-07-12 00:00:00","F","08A","33","C","2012-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2013-02-28 00:00:00","F","03B","32","","","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2011-10-05 00:00:00","U","06C","25","B","2011-10-05 00:00:00","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2012-10-02 00:00:00","P","04L","16","","","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2012-10-02 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2013-03-08 00:00:00","P","02H","27","","","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2011-05-23 00:00:00","D","06E","12","A","2011-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2012-04-30 00:00:00","P","04K","27","","","2013-09-13 01:01:06.177000000" +"41217902","MAHARAJA INDIAN CUISINE","1","133","EAST 45 STREET","10017","2126827962","44","2013-07-02 00:00:00","G","05D","49","","","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2011-05-12 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2012-06-07 00:00:00","D","10F","11","A","2012-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2013-09-11 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41228172","NATSUMI","1","226","WEST 50 STREET","10019","2122582988","49","2013-03-04 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"41228172","NATSUMI","1","226","WEST 50 STREET","10019","2122582988","49","2013-03-26 00:00:00","D","06C","9","A","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2010-10-13 00:00:00","C","06A","12","A","2010-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2013-05-14 00:00:00","P","02B","26","","","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2013-05-14 00:00:00","P","04K","26","","","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2013-05-14 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41219463","BETTY BAKERY","3","448","ATLANTIC AVENUE","11217","7182462402","08","2011-11-09 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41159798","MORIMOTO NY","1","88","10 AVENUE","10011","2129894639","49","2010-12-02 00:00:00","C","06I","13","A","2010-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"41144484","CARIBE RESTAURANT BAR & LOUNGE","2","960","EAST 165 STREET","10459","7183285682","53","2010-09-08 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41144484","CARIBE RESTAURANT BAR & LOUNGE","2","960","EAST 165 STREET","10459","7183285682","53","2010-09-08 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41219569","SUTEISHI","1","24","PECK SLIP","10038","2127662344","49","2009-12-16 16:05:00","D","10G","7","","","2013-09-13 01:01:06.177000000" +"41219569","SUTEISHI","1","24","PECK SLIP","10038","2127662344","49","2012-02-02 00:00:00","D","10F","13","A","2012-02-02 00:00:00","2013-09-13 01:01:06.177000000" +"41219569","SUTEISHI","1","24","PECK SLIP","10038","2127662344","49","2012-07-20 00:00:00","P","06F","5","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2011-10-24 00:00:00","G","08A","133","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2011-10-27 00:00:00","O","08A","11","P","2011-10-27 00:00:00","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-06-04 00:00:00","F","10B","59","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-12-08 00:00:00","P","06F","7","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2013-07-01 00:00:00","F","06E","35","","","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2011-02-16 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2011-03-02 00:00:00","D","06C","8","A","2011-03-02 00:00:00","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2012-02-23 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2012-03-07 00:00:00","D","02G","13","A","2012-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2013-01-30 00:00:00","P","06F","16","","","2013-09-13 01:01:06.177000000" +"41220720","SUSHI OF GARI 46","1","347","WEST 46 STREET","10036","2129570046","49","2012-12-11 00:00:00","P","04M","14","","","2013-09-13 01:01:06.177000000" +"41220720","SUSHI OF GARI 46","1","347","WEST 46 STREET","10036","2129570046","49","2012-12-11 00:00:00","P","10I","14","","","2013-09-13 01:01:06.177000000" +"41156149","Tasty Delicious Bakery","3","1096","RUTLAND ROAD","11212","7182211222","17","2013-03-14 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41177613","YAMA","1","308","EAST 49 STREET","10017","2123553370","49","2010-10-20 00:00:00","C","10F","12","A","2010-10-20 00:00:00","2013-09-13 01:01:06.177000000" +"41177613","YAMA","1","308","EAST 49 STREET","10017","2123553370","49","2011-11-07 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"41177613","YAMA","1","308","EAST 49 STREET","10017","2123553370","49","2012-04-05 00:00:00","D","10E","9","A","2012-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"41167453","El Mangu Sabroso Restaurant","2","80","WEST KINGSRIDGE ROAD","10468","7185636499","53","2013-03-14 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2010-11-18 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2010-12-06 00:00:00","U","04L","12","B","2010-12-06 00:00:00","2013-09-13 01:01:06.177000000" +"41167466","CAFE WATER","1","130","WATER STREET","10005","2127851320","27","2013-04-02 00:00:00","F","02B","49","C","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41179005","ROSAN JIN","1","141","DUANE STREET","10013","2123467807","49","2012-12-18 00:00:00","F","04K","34","","","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2013-04-03 00:00:00","P","06D","21","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-03-15 00:00:00","F","02G","39","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-08-08 00:00:00","D","02G","10","A","2011-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-11-14 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41168206","BENTO NOUVEAU","1","1407","BROADWAY","10018","2123981405","49","2013-08-20 00:00:00","F","02G","39","","","2013-09-13 01:01:06.177000000" +"41168216","BENTO NOUVEAU","1","32","BROADWAY","10004","2127470994","49","2012-03-07 00:00:00","D","10F","2","A","2012-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2010-10-13 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2010-10-13 00:00:00","P","09B","21","","","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2013-08-20 00:00:00","P","10B","21","","","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2011-03-14 00:00:00","D","10C","13","A","2011-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2013-04-27 00:00:00","P","04H","23","","","2013-09-13 01:01:06.177000000" +"41148187","LOONG HING CHINESE RESTAURANT","4","11318 ","SUTPHIN BLVD","11435","7185293637","20","2010-10-13 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41148212","M & Y ENTERTAINMENT","4","40-31","162 STREET","11358","7183588477","03","2011-07-13 00:00:00","F","99B","49","C","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2011-04-21 00:00:00","G","06C","61","","","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2010-08-31 00:00:00","P","02B","27","","","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2010-10-07 00:00:00","U","04L","18","B","2010-10-07 00:00:00","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2012-04-09 00:00:00","D","10F","9","A","2012-04-09 00:00:00","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2011-08-11 00:00:00","U","10F","19","B","2011-08-11 00:00:00","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2012-08-31 00:00:00","F","04L","15","C","2012-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41180860","BAY SUSHI","3","29","BAY RIDGE AVENUE","11220","7188363083","49","2011-08-17 00:00:00","F","04M","39","","","2013-09-13 01:01:06.177000000" +"41180860","BAY SUSHI","3","29","BAY RIDGE AVENUE","11220","7188363083","49","2011-08-30 00:00:00","D","02B","9","A","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41223011","SUSHI SASABUNE NEW YORK","1","401","EAST 73 STREET","10021","2122498583","49","2011-06-09 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2011-05-12 00:00:00","P","04C","22","","","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2012-06-07 00:00:00","D","08C","11","A","2012-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2011-06-11 00:00:00","D","06A","11","A","2011-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2012-05-23 00:00:00","P","09B","15","","","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2012-06-13 00:00:00","D","06E","13","A","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2012-11-20 00:00:00","F","06F","23","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2011-05-06 00:00:00","F","09B","24","C","2011-05-06 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2011-10-12 00:00:00","U","99B","25","B","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-02-06 00:00:00","P","04K","25","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-02-06 00:00:00","P","10F","25","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-02-13 00:00:00","U","06F","19","B","2012-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-02-13 00:00:00","U","09A","19","B","2012-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-08-27 00:00:00","G","10D","96","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-08-30 00:00:00","O","06C","17","P","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-08-30 00:00:00","O","10B","17","P","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-10-01 00:00:00","U","08A","13","B","2012-10-01 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-10-01 00:00:00","U","10B","13","B","2012-10-01 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-02-25 00:00:00","F","06C","23","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-03-18 00:00:00","G","02B","92","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-03-18 00:00:00","G","05F","92","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-03-25 00:00:00","O","06D","10","C","2013-03-25 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-07-22 00:00:00","G","02B","29","","","2013-09-13 01:01:06.177000000" +"41182682","SARKU JAPAN","5","2655","RICHMOND AVENUE","10314","7186983023","49","2013-05-15 00:00:00","P","09B","19","","","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2010-10-12 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2012-02-28 00:00:00","D","06C","9","A","2012-02-28 00:00:00","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2011-08-08 00:00:00","U","08A","4","B","2011-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2012-03-07 00:00:00","D","06C","13","A","2012-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2011-08-17 00:00:00","F","04M","28","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-02-07 00:00:00","F","08A","65","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-02-14 00:00:00","F","04L","48","C","2012-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-07-17 00:00:00","U","04J","18","B","2012-07-17 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2013-09-11 00:00:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"41150462","CHEN'S GARDEN","3","110-46","FLATLANDS AVENUE","11207","7186491711","20","2011-12-05 00:00:00","F","02G","49","C","2011-12-05 00:00:00","2013-09-13 01:01:06.177000000" +"41150462","CHEN'S GARDEN","3","110-46","FLATLANDS AVENUE","11207","7186491711","20","2011-12-05 00:00:00","F","04M","49","C","2011-12-05 00:00:00","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2011-11-10 00:00:00","F","10B","47","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2013-08-15 00:00:00","F","04H","53","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2013-08-15 00:00:00","F","08C","53","","","2013-09-13 01:01:06.177000000" +"41171216","EAST SIDE BILLARD","1","163-165","EAST 86 STREET","10028","2128317665","03","2013-08-07 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41224493","SHIRO OF JAPAN (AT ATLAS MALL)","4","80-40 ","COOPER AVENUE ","11385","7183268704","49","2013-04-20 00:00:00","F","06F","37","","","2013-09-13 01:01:06.177000000" +"41224493","SHIRO OF JAPAN (AT ATLAS MALL)","4","80-40 ","COOPER AVENUE ","11385","7183268704","49","2013-04-20 00:00:00","F","10F","37","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2011-06-16 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2011-07-19 00:00:00","F","04J","40","C","2011-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2011-07-19 00:00:00","F","05H","40","C","2011-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2012-01-24 00:00:00","U","04H","22","B","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-03-04 00:00:00","U","04K","18","B","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2011-02-22 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2012-02-16 00:00:00","D","10F","12","A","2012-02-16 00:00:00","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2012-09-18 00:00:00","D","06C","13","A","2012-09-18 00:00:00","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2012-09-18 00:00:00","D","10B","13","A","2012-09-18 00:00:00","2013-09-13 01:01:06.177000000" +"41171833","COLONY FRIED CHICKEN","2","864","PROSPECT AVENUE","10459","7185891372","18","2011-12-06 00:00:00","F","05H","49","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2010-10-21 00:00:00","P","10F","24","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-05-19 00:00:00","G","02G","107","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-05-19 00:00:00","G","06B","107","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-09-01 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-09-26 00:00:00","U","06E","19","B","2011-09-26 00:00:00","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2012-04-18 00:00:00","D","10E","13","A","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2010-08-31 00:00:00","P","04L","27","","","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2010-08-31 00:00:00","P","10F","27","","","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2010-10-07 00:00:00","U","06F","18","B","2010-10-07 00:00:00","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2011-04-26 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2011-04-26 00:00:00","F","08A","35","","","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2011-07-22 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2011-08-08 00:00:00","U","04M","14","B","2011-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2013-05-10 00:00:00","F","04M","10","","","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2013-05-14 00:00:00","O","08C","11","P","2013-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2010-12-02 00:00:00","F","06F","31","C","2010-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2011-04-06 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2011-04-21 00:00:00","U","08A","10","B","2011-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2012-06-29 00:00:00","F","04M","15","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2013-02-28 00:00:00","F","10H","32","","","2013-09-13 01:01:06.177000000" +"41167453","El Mangu Sabroso Restaurant","2","80","WEST KINGSRIDGE ROAD","10468","7185636499","53","2013-03-14 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41167453","El Mangu Sabroso Restaurant","2","80","WEST KINGSRIDGE ROAD","10468","7185636499","53","2013-03-14 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2011-07-26 00:00:00","P","10H","27","","","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2012-05-08 00:00:00","U","04L","13","B","2012-05-08 00:00:00","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2013-03-12 00:00:00","F","10F","14","","","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2013-04-29 00:00:00","C","10F","12","","","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2011-05-12 00:00:00","D","09C","12","A","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2011-05-12 00:00:00","D","10D","12","A","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2011-09-22 00:00:00","P","09B","18","","","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2013-05-18 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41167466","CAFE WATER","1","130","WATER STREET","10005","2127851320","27","2013-04-02 00:00:00","F","06C","49","C","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2010-06-22 20:16:00","U","10J","19","","","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2012-03-14 00:00:00","F","04J","26","","","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2012-10-02 00:00:00","P","10H","16","","","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2012-10-02 00:00:00","P","10I","16","","","2013-09-13 01:01:06.177000000" +"41174075","PYZA RESTAURANT","3","118","NASSAU AVENUE","11222","7183498829","64","2010-10-12 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41174075","PYZA RESTAURANT","3","118","NASSAU AVENUE","11222","7183498829","64","2010-10-12 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2010-09-08 00:00:00","C","04M","5","A","2010-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2011-08-29 00:00:00","F","03C","28","","","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2011-08-29 00:00:00","F","04M","28","","","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2012-08-06 00:00:00","D","02G","7","A","2012-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2013-02-25 00:00:00","P","04C","21","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-07-21 00:00:00","P","10B","23","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-11-14 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2012-01-24 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2012-03-29 00:00:00","D","08C","7","A","2012-03-29 00:00:00","2013-09-13 01:01:06.177000000" +"41168206","BENTO NOUVEAU","1","1407","BROADWAY","10018","2123981405","49","2013-02-21 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41168206","BENTO NOUVEAU","1","1407","BROADWAY","10018","2123981405","49","2013-08-20 00:00:00","F","04A","39","","","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2011-10-17 00:00:00","P","06C","15","","","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2012-04-03 00:00:00","D","10F","12","A","2012-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2010-12-08 00:00:00","P","08B","17","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2011-06-30 00:00:00","P","10H","21","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2011-11-03 00:00:00","F","06D","48","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2011-11-03 00:00:00","F","06E","48","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2011-11-03 00:00:00","F","10E","48","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2012-05-02 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41228172","NATSUMI","1","226","WEST 50 STREET","10019","2122582988","49","2010-09-08 00:00:00","F","16B","0","","","2013-09-13 01:01:06.177000000" +"41228172","NATSUMI","1","226","WEST 50 STREET","10019","2122582988","49","2012-09-12 00:00:00","D","02G","8","A","2012-09-12 00:00:00","2013-09-13 01:01:06.177000000" +"41228172","NATSUMI","1","226","WEST 50 STREET","10019","2122582988","49","2013-03-04 00:00:00","P","06D","24","","","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2012-08-28 00:00:00","P","04K","25","","","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2012-08-28 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2012-09-13 00:00:00","U","10B","9","B","2012-09-13 00:00:00","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2011-11-10 00:00:00","F","04L","47","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2011-11-10 00:00:00","F","10F","47","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2013-01-24 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2013-08-15 00:00:00","F","10B","53","","","2013-09-13 01:01:06.177000000" +"41156149","Tasty Delicious Bakery","3","1096","RUTLAND ROAD","11212","7182211222","17","2013-03-14 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2011-10-24 00:00:00","G","06C","133","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2011-10-24 00:00:00","G","10D","133","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-06-04 00:00:00","F","04C","59","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-06-04 00:00:00","F","06C","59","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-06-04 00:00:00","F","10E","59","","","2013-09-13 01:01:06.177000000" +"41171216","EAST SIDE BILLARD","1","163-165","EAST 86 STREET","10028","2128317665","03","2013-08-07 00:00:00","F","05H","49","","","2013-09-13 01:01:06.177000000" +"41171216","EAST SIDE BILLARD","1","163-165","EAST 86 STREET","10028","2128317665","03","2013-08-07 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-05-09 00:00:00","P","10B","26","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-05-19 00:00:00","G","10B","107","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-05-23 00:00:00","O","99B","12","C","2011-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-09-26 00:00:00","U","08A","19","B","2011-09-26 00:00:00","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-09-26 00:00:00","U","08B","19","B","2011-09-26 00:00:00","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2012-04-03 00:00:00","P","09C","21","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2012-04-18 00:00:00","D","06F","13","A","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2012-10-01 00:00:00","D","04N","13","A","2012-10-01 00:00:00","2013-09-13 01:01:06.177000000" +"41167453","El Mangu Sabroso Restaurant","2","80","WEST KINGSRIDGE ROAD","10468","7185636499","53","2013-03-14 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2010-11-18 00:00:00","F","02B","31","","","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2012-05-08 00:00:00","U","04C","13","B","2012-05-08 00:00:00","2013-09-13 01:01:06.177000000" +"41167466","CAFE WATER","1","130","WATER STREET","10005","2127851320","27","2013-04-02 00:00:00","F","02G","49","C","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41167466","CAFE WATER","1","130","WATER STREET","10005","2127851320","27","2013-04-02 00:00:00","F","06E","49","C","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41193113","SOSAKU JAPANESE RESTAURANT","3","6328","AVENUE N","11234","7189682800","49","2010-10-28 00:00:00","P","02B","25","","","2013-09-13 01:01:06.177000000" +"41193113","SOSAKU JAPANESE RESTAURANT","3","6328","AVENUE N","11234","7189682800","49","2010-11-10 00:00:00","C","04M","10","A","2010-11-10 00:00:00","2013-09-13 01:01:06.177000000" +"41177613","YAMA","1","308","EAST 49 STREET","10017","2123553370","49","2010-10-20 00:00:00","C","06A","12","A","2010-10-20 00:00:00","2013-09-13 01:01:06.177000000" +"41177613","YAMA","1","308","EAST 49 STREET","10017","2123553370","49","2012-04-05 00:00:00","D","04C","9","A","2012-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"41177613","YAMA","1","308","EAST 49 STREET","10017","2123553370","49","2013-05-07 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41177613","YAMA","1","308","EAST 49 STREET","10017","2123553370","49","2013-05-07 00:00:00","F","10H","31","","","2013-09-13 01:01:06.177000000" +"41157881","LA TIA RESTAURANT","2","200A","WEST 231 STREET","10463","7184321008","53","2010-10-28 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41193113","SOSAKU JAPANESE RESTAURANT","3","6328","AVENUE N","11234","7189682800","49","2011-04-07 00:00:00","D","04L","12","A","2011-04-07 00:00:00","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2011-07-19 00:00:00","F","02G","41","C","2011-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41157881","LA TIA RESTAURANT","2","200A","WEST 231 STREET","10463","7184321008","53","2010-10-28 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-03-15 00:00:00","F","04L","39","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-07-21 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2012-01-24 00:00:00","P","10D","19","","","2013-09-13 01:01:06.177000000" +"41168206","BENTO NOUVEAU","1","1407","BROADWAY","10018","2123981405","49","2012-02-21 00:00:00","B","","","A","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2011-11-02 00:00:00","D","06C","12","A","2011-11-02 00:00:00","2013-09-13 01:01:06.177000000" +"41179005","ROSAN JIN","1","141","DUANE STREET","10013","2123467807","49","2013-07-02 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"41179282","SUBWAY","3","241","ROCKAWAY PARKWAY","11212","7183466550","69","2010-05-20 08:54:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"41194762","NEW BEIJING WOK","1","1324","2 AVENUE","10021","2126399418","20","2011-05-24 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2010-08-26 00:00:00","P","04L","14","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2011-03-22 00:00:00","G","02G","37","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2013-04-10 00:00:00","P","04M","23","","","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2010-11-15 00:00:00","U","10F","9","B","2010-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2011-07-13 00:00:00","F","04M","40","","","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2013-03-04 00:00:00","P","10I","13","","","2013-09-13 01:01:06.177000000" +"41180860","BAY SUSHI","3","29","BAY RIDGE AVENUE","11220","7188363083","49","2010-03-04 17:30:00","F","04N","52","","","2013-09-13 01:01:06.177000000" +"41180860","BAY SUSHI","3","29","BAY RIDGE AVENUE","11220","7188363083","49","2010-03-04 17:30:00","F","08A","52","","","2013-09-13 01:01:06.177000000" +"41180860","BAY SUSHI","3","29","BAY RIDGE AVENUE","11220","7188363083","49","2011-02-16 00:00:00","U","04M","10","B","2011-02-16 00:00:00","2013-09-13 01:01:06.177000000" +"41180860","BAY SUSHI","3","29","BAY RIDGE AVENUE","11220","7188363083","49","2011-02-16 00:00:00","U","06B","10","B","2011-02-16 00:00:00","2013-09-13 01:01:06.177000000" +"41180860","BAY SUSHI","3","29","BAY RIDGE AVENUE","11220","7188363083","49","2011-12-07 00:00:00","D","10F","2","A","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2011-06-21 00:00:00","D","06E","13","A","2011-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2011-10-24 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2011-12-23 00:00:00","D","02G","11","A","2011-12-23 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2011-09-27 00:00:00","D","06F","9","A","2011-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2011-09-27 00:00:00","D","10F","9","A","2011-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-02-07 00:00:00","F","06A","65","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-02-07 00:00:00","F","10B","65","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-02-14 00:00:00","F","02B","48","C","2012-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-07-03 00:00:00","P","04A","25","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2013-09-11 00:00:00","F","10F","32","","","2013-09-13 01:01:06.177000000" +"41159798","MORIMOTO NY","1","88","10 AVENUE","10011","2129894639","49","2010-03-09 14:43:00","D","10G","2","","","2013-09-13 01:01:06.177000000" +"41159798","MORIMOTO NY","1","88","10 AVENUE","10011","2129894639","49","2013-01-24 00:00:00","P","04C","17","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2010-11-09 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2010-11-09 00:00:00","P","10B","18","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2013-09-11 00:00:00","P","06F","18","","","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2011-02-16 00:00:00","P","06C","17","","","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2012-07-18 00:00:00","P","06C","12","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2011-03-23 00:00:00","P","06C","14","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2011-10-04 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-02-06 00:00:00","P","02B","25","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-02-13 00:00:00","U","08A","19","B","2012-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-03-25 00:00:00","O","10J","10","C","2013-03-25 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-07-22 00:00:00","G","06D","29","","","2013-09-13 01:01:06.177000000" +"41182682","SARKU JAPAN","5","2655","RICHMOND AVENUE","10314","7186983023","49","2013-05-15 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"41182747","SUSHI BELL","4","36-28","BELL BOULEVARD","11361","7182294653","49","2011-01-11 00:00:00","D","10A","5","A","2011-01-11 00:00:00","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2010-10-21 00:00:00","U","08A","4","B","2010-10-21 00:00:00","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2011-06-21 00:00:00","U","04C","18","B","2011-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2013-04-15 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2013-04-15 00:00:00","P","06F","21","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2013-08-15 00:00:00","F","02G","53","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2013-08-15 00:00:00","F","06C","53","","","2013-09-13 01:01:06.177000000" +"41171216","EAST SIDE BILLARD","1","163-165","EAST 86 STREET","10028","2128317665","03","2013-08-07 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41184581","BOROUGH RESTAURANT","3","338","FRANKLIN AVENUE","11238","7182304728","03","2012-09-07 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41177613","YAMA","1","308","EAST 49 STREET","10017","2123553370","49","2011-11-07 00:00:00","P","06E","23","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-05-19 00:00:00","G","04K","107","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-05-19 00:00:00","G","06C","107","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2012-09-18 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2011-04-26 00:00:00","F","10F","35","","","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2011-12-13 00:00:00","F","02B","48","","","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2011-12-13 00:00:00","F","04C","48","","","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2012-01-05 00:00:00","D","10F","12","A","2012-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2013-05-22 00:00:00","F","06A","33","","","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2010-10-28 00:00:00","U","06E","7","B","2010-10-28 00:00:00","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2011-04-27 00:00:00","F","04L","29","","","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2011-04-27 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2011-05-11 00:00:00","U","04L","21","B","2011-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2011-05-11 00:00:00","U","06F","21","B","2011-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2011-11-03 00:00:00","F","04H","48","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2011-11-03 00:00:00","F","99B","48","","","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2013-05-22 00:00:00","F","10B","33","","","2013-09-13 01:01:06.177000000" +"41179005","ROSAN JIN","1","141","DUANE STREET","10013","2123467807","49","2012-05-29 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"41179005","ROSAN JIN","1","141","DUANE STREET","10013","2123467807","49","2012-06-20 00:00:00","D","10I","5","A","2012-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41179005","ROSAN JIN","1","141","DUANE STREET","10013","2123467807","49","2012-12-18 00:00:00","F","08A","34","","","2013-09-13 01:01:06.177000000" +"41179005","ROSAN JIN","1","141","DUANE STREET","10013","2123467807","49","2013-07-02 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2013-05-15 00:00:00","P","10B","21","","","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2010-10-12 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2011-08-11 00:00:00","U","06C","19","B","2011-08-11 00:00:00","2013-09-13 01:01:06.177000000" +"41180860","BAY SUSHI","3","29","BAY RIDGE AVENUE","11220","7188363083","49","2010-03-04 17:30:00","F","06F","52","","","2013-09-13 01:01:06.177000000" +"41180860","BAY SUSHI","3","29","BAY RIDGE AVENUE","11220","7188363083","49","2010-12-11 00:00:00","P","10H","14","","","2013-09-13 01:01:06.177000000" +"41180860","BAY SUSHI","3","29","BAY RIDGE AVENUE","11220","7188363083","49","2011-08-17 00:00:00","F","10B","39","","","2013-09-13 01:01:06.177000000" +"41174075","PYZA RESTAURANT","3","118","NASSAU AVENUE","11222","7183498829","64","2010-10-12 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2010-11-15 00:00:00","F","10F","22","C","2010-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2011-02-24 00:00:00","F","04M","45","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2011-02-24 00:00:00","F","06F","45","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2011-02-24 00:00:00","F","10F","45","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2011-10-13 00:00:00","P","10I","25","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2012-12-11 00:00:00","U","10F","8","B","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2013-07-12 00:00:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2013-07-12 00:00:00","F","04C","29","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2012-04-24 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2012-04-24 00:00:00","P","06E","22","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2012-09-26 00:00:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2013-04-10 00:00:00","P","06C","24","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2010-10-21 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2012-03-08 00:00:00","D","06C","7","A","2012-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2011-03-23 00:00:00","P","10F","14","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2011-10-04 00:00:00","F","02B","28","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-02-06 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-02-13 00:00:00","U","10F","19","B","2012-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-08-27 00:00:00","G","02G","96","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-08-27 00:00:00","G","04K","96","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-08-27 00:00:00","G","06C","96","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-03-25 00:00:00","O","10F","10","C","2013-03-25 00:00:00","2013-09-13 01:01:06.177000000" +"41182682","SARKU JAPAN","5","2655","RICHMOND AVENUE","10314","7186983023","49","2011-03-01 00:00:00","D","10F","11","A","2011-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"41182682","SARKU JAPAN","5","2655","RICHMOND AVENUE","10314","7186983023","49","2012-02-08 00:00:00","D","09B","10","A","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2010-10-21 00:00:00","P","99B","27","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-05-12 00:00:00","D","02G","12","A","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-09-28 00:00:00","F","04L","76","C","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-09-28 00:00:00","F","06D","76","C","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-09-28 00:00:00","F","06E","76","C","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-10-17 00:00:00","U","02G","23","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-01-23 00:00:00","F","06F","57","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-01-23 00:00:00","F","10F","57","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-08-13 00:00:00","F","04N","26","C","2012-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-09-19 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-02-12 00:00:00","F","10F","36","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-03-08 00:00:00","D","02B","13","A","2013-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-08-13 00:00:00","F","04N","50","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-08-13 00:00:00","F","06D","50","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-08-13 00:00:00","F","08A","50","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-08-13 00:00:00","F","08B","50","","","2013-09-13 01:01:06.177000000" +"41182747","SUSHI BELL","4","36-28","BELL BOULEVARD","11361","7182294653","49","2011-01-11 00:00:00","D","10F","5","A","2011-01-11 00:00:00","2013-09-13 01:01:06.177000000" +"41182747","SUSHI BELL","4","36-28","BELL BOULEVARD","11361","7182294653","49","2012-01-10 00:00:00","D","02G","9","A","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2011-04-25 00:00:00","P","09B","21","","","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2013-04-15 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41236537","INTERNATIONAL BAKE SHOP","4","719","SENECA AVENUE","11385","7183869550","08","2011-05-06 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41236537","INTERNATIONAL BAKE SHOP","4","719","SENECA AVENUE","11385","7183869550","08","2011-05-06 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41236537","INTERNATIONAL BAKE SHOP","4","719","SENECA AVENUE","11385","7183869550","08","2011-05-06 00:00:00","G","20F","49","","","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2011-08-15 00:00:00","U","02G","19","B","2011-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2011-08-15 00:00:00","U","06E","19","B","2011-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2013-03-12 00:00:00","F","10H","14","","","2013-09-13 01:01:06.177000000" +"41167466","CAFE WATER","1","130","WATER STREET","10005","2127851320","27","2013-04-02 00:00:00","F","04H","49","C","2013-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41184659","LA CASA DEL MOFONGO","1","1447-1451 ","SAINT NICHOLAS AVENUE ","10033","2127401200","53","2011-06-10 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41184659","LA CASA DEL MOFONGO","1","1447-1451 ","SAINT NICHOLAS AVENUE ","10033","2127401200","53","2011-06-10 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2010-06-17 12:02:00","G","04A","108","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2010-06-17 12:02:00","G","04O","108","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2012-01-14 00:00:00","U","10F","19","B","2012-01-14 00:00:00","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2012-05-23 00:00:00","F","06F","32","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2012-12-06 00:00:00","P","10B","20","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-03-29 00:00:00","D","08C","7","A","2011-03-29 00:00:00","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2012-01-24 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"41168206","BENTO NOUVEAU","1","1407","BROADWAY","10018","2123981405","49","2010-10-04 00:00:00","C","99B","8","A","2010-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41168206","BENTO NOUVEAU","1","1407","BROADWAY","10018","2123981405","49","2011-03-14 00:00:00","D","02B","9","A","2011-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41168206","BENTO NOUVEAU","1","1407","BROADWAY","10018","2123981405","49","2013-02-21 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41193113","SOSAKU JAPANESE RESTAURANT","3","6328","AVENUE N","11234","7189682800","49","2010-10-28 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"41206966","THAI BASIL","1","860","9 AVENUE","10019","2123972036","82","2010-12-14 00:00:00","F","04L","49","C","2010-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2010-09-08 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2011-10-11 00:00:00","U","04L","20","B","2011-10-11 00:00:00","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2011-10-11 00:00:00","U","10F","20","B","2011-10-11 00:00:00","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2012-03-08 00:00:00","D","10F","7","A","2012-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2012-07-24 00:00:00","P","04M","25","","","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2011-06-06 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2011-07-19 00:00:00","F","04L","41","C","2011-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41179005","ROSAN JIN","1","141","DUANE STREET","10013","2123467807","49","2011-06-03 00:00:00","D","04C","12","A","2011-06-03 00:00:00","2013-09-13 01:01:06.177000000" +"41179005","ROSAN JIN","1","141","DUANE STREET","10013","2123467807","49","2013-01-30 00:00:00","D","08A","13","A","2013-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41179282","SUBWAY","3","241","ROCKAWAY PARKWAY","11212","7183466550","69","2010-05-20 08:54:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41179282","SUBWAY","3","241","ROCKAWAY PARKWAY","11212","7183466550","69","2010-05-20 08:54:00","F","10G","49","","","2013-09-13 01:01:06.177000000" +"41245736","LIME LEAF","1","128","WEST 72 STREET","10023","2125017800","82","2012-04-05 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41245736","LIME LEAF","1","128","WEST 72 STREET","10023","2125017800","82","2012-04-05 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41189540","ROOM SERVICE","1","166","8 AVENUE","10011","2126910299","82","2011-05-19 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2010-08-26 00:00:00","P","04M","14","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2011-02-22 00:00:00","F","02G","46","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2011-02-22 00:00:00","F","05F","46","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2011-12-05 00:00:00","D","08A","13","A","2011-12-05 00:00:00","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2011-07-13 00:00:00","F","99B","40","","","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2011-12-02 00:00:00","P","04L","27","","","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2011-12-02 00:00:00","P","06F","27","","","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2011-12-29 00:00:00","U","04L","17","B","2011-12-29 00:00:00","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2013-03-04 00:00:00","P","10F","13","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2011-11-22 00:00:00","U","04L","11","B","2011-11-22 00:00:00","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2012-04-20 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2012-05-10 00:00:00","U","10D","9","B","2012-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2013-01-24 00:00:00","F","02B","17","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2013-08-15 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41190258","KI SUSHI","3","122","SMITH STREET","11201","7189350575","49","2011-09-26 00:00:00","U","04C","12","B","2011-09-26 00:00:00","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2010-11-29 00:00:00","U","10F","9","B","2010-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2011-05-16 00:00:00","G","08C","55","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2012-02-07 00:00:00","D","06C","13","A","2012-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2013-02-28 00:00:00","P","06F","24","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2013-09-11 00:00:00","P","02H","18","","","2013-09-13 01:01:06.177000000" +"41209785","FRESCO TORTILLAS GRILL","2","3426","JEROME AVENUE","10467","7185156545","55","2011-08-11 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41209785","FRESCO TORTILLAS GRILL","2","3426","JEROME AVENUE","10467","7185156545","55","2011-08-11 00:00:00","G","06D","49","","","2013-09-13 01:01:06.177000000" +"41180860","BAY SUSHI","3","29","BAY RIDGE AVENUE","11220","7188363083","49","2010-03-04 17:30:00","F","10G","52","","","2013-09-13 01:01:06.177000000" +"41180860","BAY SUSHI","3","29","BAY RIDGE AVENUE","11220","7188363083","49","2010-03-08 15:34:00","U","08A","7","","","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2011-05-17 00:00:00","U","04C","20","B","2011-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2012-02-08 00:00:00","P","06D","20","","","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2012-02-21 00:00:00","D","10B","12","A","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2012-08-30 00:00:00","U","02B","17","B","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2012-08-30 00:00:00","U","10B","17","B","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2013-03-26 00:00:00","P","04J","18","","","2013-09-13 01:01:06.177000000" +"41190258","KI SUSHI","3","122","SMITH STREET","11201","7189350575","49","2012-04-21 00:00:00","D","02G","13","A","2012-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"41190258","KI SUSHI","3","122","SMITH STREET","11201","7189350575","49","2012-04-21 00:00:00","D","06C","13","A","2012-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-08-27 00:00:00","G","06D","96","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-08-27 00:00:00","G","10B","96","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-03-18 00:00:00","G","04H","92","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-03-19 00:00:00","8","06C","37","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-05-19 00:00:00","G","04H","107","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-05-19 00:00:00","G","08A","107","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-05-23 00:00:00","O","04L","12","C","2011-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-09-26 00:00:00","U","04K","19","B","2011-09-26 00:00:00","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-09-26 00:00:00","U","10F","19","B","2011-09-26 00:00:00","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2012-04-03 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2012-09-18 00:00:00","P","06C","15","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2012-10-01 00:00:00","D","08A","13","A","2012-10-01 00:00:00","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2011-04-25 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2012-02-28 00:00:00","D","10F","9","A","2012-02-28 00:00:00","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2011-12-13 00:00:00","F","04A","48","","","2013-09-13 01:01:06.177000000" +"41212149","KYO-YA","1","94","EAST 7 STREET","10009","2129824140","49","2011-05-11 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41212149","KYO-YA","1","94","EAST 7 STREET","10009","2129824140","49","2013-01-15 00:00:00","P","06E","20","","","2013-09-13 01:01:06.177000000" +"41199993","LOS AMIGOS BILLIARDS","2","857 ","EAST 149 STREET ","10455","3477266914","03","2012-07-05 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"41174075","PYZA RESTAURANT","3","118","NASSAU AVENUE","11222","7183498829","64","2010-10-12 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41212617","YA-YA'S BAKERY","4","28-46","31 STREET","11102","7189323113","08","2010-12-09 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41193113","SOSAKU JAPANESE RESTAURANT","3","6328","AVENUE N","11234","7189682800","49","2011-04-07 00:00:00","D","10B","12","A","2011-04-07 00:00:00","2013-09-13 01:01:06.177000000" +"41193113","SOSAKU JAPANESE RESTAURANT","3","6328","AVENUE N","11234","7189682800","49","2012-03-13 00:00:00","D","10A","11","A","2012-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41184581","BOROUGH RESTAURANT","3","338","FRANKLIN AVENUE","11238","7182304728","03","2012-09-07 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41184659","LA CASA DEL MOFONGO","1","1447-1451 ","SAINT NICHOLAS AVENUE ","10033","2127401200","53","2011-06-10 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41184659","LA CASA DEL MOFONGO","1","1447-1451 ","SAINT NICHOLAS AVENUE ","10033","2127401200","53","2011-06-10 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"41184659","LA CASA DEL MOFONGO","1","1447-1451 ","SAINT NICHOLAS AVENUE ","10033","2127401200","53","2011-06-10 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2011-02-03 00:00:00","P","10B","16","","","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2011-02-15 00:00:00","D","06C","12","A","2011-02-15 00:00:00","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2012-01-04 00:00:00","D","10F","2","A","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2012-05-16 00:00:00","P","02G","16","","","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2013-08-12 00:00:00","P","06C","17","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2011-02-24 00:00:00","F","04J","45","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2012-08-16 00:00:00","P","08C","21","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2012-08-16 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2013-07-12 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2011-11-28 00:00:00","P","06A","26","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2011-11-28 00:00:00","P","10B","26","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2011-12-14 00:00:00","D","10F","11","A","2011-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2012-05-10 00:00:00","D","10F","11","A","2012-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2012-09-26 00:00:00","F","06C","32","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2012-09-26 00:00:00","F","10F","32","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2010-12-02 00:00:00","C","06D","12","A","2010-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-09-13 00:00:00","F","02B","66","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-09-13 00:00:00","F","08A","66","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-10-17 00:00:00","U","04L","23","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-02-12 00:00:00","F","05D","36","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-08-13 00:00:00","F","02G","50","","","2013-09-13 01:01:06.177000000" +"41194762","NEW BEIJING WOK","1","1324","2 AVENUE","10021","2126399418","20","2011-05-24 00:00:00","F","02H","49","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2010-09-08 00:00:00","C","02G","12","A","2010-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2010-08-25 00:00:00","P","10A","21","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2010-09-16 00:00:00","C","06C","8","A","2010-09-16 00:00:00","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2011-08-29 00:00:00","D","10B","12","A","2011-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2011-12-13 00:00:00","P","99B","23","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2013-05-22 00:00:00","F","02B","32","","","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2011-06-28 00:00:00","P","06C","26","","","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2011-06-28 00:00:00","P","10F","26","","","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2012-02-14 00:00:00","P","04H","12","","","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2012-03-14 00:00:00","U","02G","13","B","2012-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2012-03-14 00:00:00","U","10H","13","B","2012-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2012-10-12 00:00:00","P","10B","10","","","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2013-09-06 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41249655","NEW TOYO JAPANESE RESTAURANT","4","73-06","METROPOLITAN AVENUE","11379","7188948880","49","2011-12-01 00:00:00","P","04K","19","","","2013-09-13 01:01:06.177000000" +"41249655","NEW TOYO JAPANESE RESTAURANT","4","73-06","METROPOLITAN AVENUE","11379","7188948880","49","2011-12-01 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41249655","NEW TOYO JAPANESE RESTAURANT","4","73-06","METROPOLITAN AVENUE","11379","7188948880","49","2012-07-27 00:00:00","D","10F","12","A","2012-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2011-12-05 00:00:00","D","99B","13","A","2011-12-05 00:00:00","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2013-04-10 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2010-11-09 00:00:00","P","04M","18","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2011-05-16 00:00:00","G","10F","55","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2011-05-23 00:00:00","O","04M","9","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2011-09-20 00:00:00","D","09B","4","A","2011-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2013-02-28 00:00:00","P","06D","24","","","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2012-07-24 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2010-06-17 12:02:00","G","06E","108","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2012-01-14 00:00:00","U","05D","19","B","2012-01-14 00:00:00","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2012-05-23 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2012-12-06 00:00:00","P","06D","20","","","2013-09-13 01:01:06.177000000" +"41189540","ROOM SERVICE","1","166","8 AVENUE","10011","2126910299","82","2011-05-19 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41189540","ROOM SERVICE","1","166","8 AVENUE","10011","2126910299","82","2011-05-19 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41189540","ROOM SERVICE","1","166","8 AVENUE","10011","2126910299","82","2011-05-19 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41177613","YAMA","1","308","EAST 49 STREET","10017","2123553370","49","2011-11-07 00:00:00","P","04C","23","","","2013-09-13 01:01:06.177000000" +"41177613","YAMA","1","308","EAST 49 STREET","10017","2123553370","49","2013-05-07 00:00:00","F","04H","31","","","2013-09-13 01:01:06.177000000" +"41190258","KI SUSHI","3","122","SMITH STREET","11201","7189350575","49","2011-08-19 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41190258","KI SUSHI","3","122","SMITH STREET","11201","7189350575","49","2011-08-19 00:00:00","P","06E","19","","","2013-09-13 01:01:06.177000000" +"41217902","MAHARAJA INDIAN CUISINE","1","133","EAST 45 STREET","10017","2126827962","44","2013-07-02 00:00:00","G","04A","49","","","2013-09-13 01:01:06.177000000" +"41206966","THAI BASIL","1","860","9 AVENUE","10019","2123972036","82","2010-12-14 00:00:00","F","04M","49","C","2010-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41179005","ROSAN JIN","1","141","DUANE STREET","10013","2123467807","49","2012-12-18 00:00:00","F","02B","34","","","2013-09-13 01:01:06.177000000" +"41179005","ROSAN JIN","1","141","DUANE STREET","10013","2123467807","49","2012-12-18 00:00:00","F","04F","34","","","2013-09-13 01:01:06.177000000" +"41179005","ROSAN JIN","1","141","DUANE STREET","10013","2123467807","49","2013-01-30 00:00:00","D","04K","13","A","2013-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41179005","ROSAN JIN","1","141","DUANE STREET","10013","2123467807","49","2013-01-30 00:00:00","D","10F","13","A","2013-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41179005","ROSAN JIN","1","141","DUANE STREET","10013","2123467807","49","2013-07-02 00:00:00","P","08C","18","","","2013-09-13 01:01:06.177000000" +"41179282","SUBWAY","3","241","ROCKAWAY PARKWAY","11212","7183466550","69","2010-05-20 08:54:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41179282","SUBWAY","3","241","ROCKAWAY PARKWAY","11212","7183466550","69","2010-05-20 08:54:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41219463","BETTY BAKERY","3","448","ATLANTIC AVENUE","11217","7182462402","08","2011-11-09 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41219463","BETTY BAKERY","3","448","ATLANTIC AVENUE","11217","7182462402","08","2011-11-09 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2010-10-12 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2011-12-29 00:00:00","U","06D","17","B","2011-12-29 00:00:00","2013-09-13 01:01:06.177000000" +"41180860","BAY SUSHI","3","29","BAY RIDGE AVENUE","11220","7188363083","49","2010-03-08 15:34:00","U","04N","7","","","2013-09-13 01:01:06.177000000" +"41245736","LIME LEAF","1","128","WEST 72 STREET","10023","2125017800","82","2012-04-05 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41193113","SOSAKU JAPANESE RESTAURANT","3","6328","AVENUE N","11234","7189682800","49","2010-11-10 00:00:00","C","08A","10","A","2010-11-10 00:00:00","2013-09-13 01:01:06.177000000" +"41209785","FRESCO TORTILLAS GRILL","2","3426","JEROME AVENUE","10467","7185156545","55","2011-08-11 00:00:00","G","08C","49","","","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2011-02-22 00:00:00","F","06D","69","","","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2011-02-22 00:00:00","F","06E","69","","","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2012-02-08 00:00:00","P","10H","20","","","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2012-08-15 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41220720","SUSHI OF GARI 46","1","347","WEST 46 STREET","10036","2129570046","49","2011-06-01 00:00:00","D","02B","13","A","2011-06-01 00:00:00","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2011-02-03 00:00:00","P","06E","16","","","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2011-02-03 00:00:00","P","10H","16","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2010-11-15 00:00:00","F","06F","22","C","2010-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2010-11-15 00:00:00","F","99B","22","C","2010-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2011-10-12 00:00:00","U","02G","25","B","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-08-27 00:00:00","G","04J","96","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-08-30 00:00:00","O","06D","17","P","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-10-01 00:00:00","U","09A","13","B","2012-10-01 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-02-25 00:00:00","F","06D","23","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-03-19 00:00:00","8","05F","37","","","2013-09-13 01:01:06.177000000" +"41182682","SARKU JAPAN","5","2655","RICHMOND AVENUE","10314","7186983023","49","2011-03-01 00:00:00","D","02G","11","A","2011-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"41182747","SUSHI BELL","4","36-28","BELL BOULEVARD","11361","7182294653","49","2012-01-10 00:00:00","D","10F","9","A","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2012-04-30 00:00:00","F","06C","53","","","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2012-05-22 00:00:00","U","04L","11","B","2012-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2011-02-22 00:00:00","F","06C","46","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2011-03-22 00:00:00","G","05F","37","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2013-04-10 00:00:00","P","09B","23","","","2013-09-13 01:01:06.177000000" +"41212249","GEM & JOE INDIAN'S EAT AND DRINK CAFE","3","1054","ROGERS AVENUE","11226","7182827583","17","2012-03-05 00:00:00","F","04M","49","C","2012-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2011-05-18 00:00:00","W","10B","37","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2011-09-09 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2011-09-09 00:00:00","P","06C","17","","","2013-09-13 01:01:06.177000000" +"41223011","SUSHI SASABUNE NEW YORK","1","401","EAST 73 STREET","10021","2122498583","49","2011-08-23 00:00:00","U","06A","20","B","2011-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2010-06-17 12:02:00","G","04N","108","","","2013-09-13 01:01:06.177000000" +"41212617","YA-YA'S BAKERY","4","28-46","31 STREET","11102","7189323113","08","2010-12-09 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41212617","YA-YA'S BAKERY","4","28-46","31 STREET","11102","7189323113","08","2010-12-09 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41212617","YA-YA'S BAKERY","4","28-46","31 STREET","11102","7189323113","08","2010-12-09 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41184581","BOROUGH RESTAURANT","3","338","FRANKLIN AVENUE","11238","7182304728","03","2012-09-07 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2012-01-03 00:00:00","F","04H","42","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2012-01-14 00:00:00","U","02G","19","B","2012-01-14 00:00:00","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2012-05-23 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2013-05-31 00:00:00","F","02G","33","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2013-05-31 00:00:00","F","06D","33","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2013-05-31 00:00:00","F","08A","33","","","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2013-02-12 00:00:00","F","04M","36","","","2013-09-13 01:01:06.177000000" +"41224493","SHIRO OF JAPAN (AT ATLAS MALL)","4","80-40 ","COOPER AVENUE ","11385","7183268704","49","2010-11-22 00:00:00","C","06F","12","A","2010-11-22 00:00:00","2013-09-13 01:01:06.177000000" +"41224493","SHIRO OF JAPAN (AT ATLAS MALL)","4","80-40 ","COOPER AVENUE ","11385","7183268704","49","2012-01-13 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"41224493","SHIRO OF JAPAN (AT ATLAS MALL)","4","80-40 ","COOPER AVENUE ","11385","7183268704","49","2012-01-13 00:00:00","P","06D","27","","","2013-09-13 01:01:06.177000000" +"41224493","SHIRO OF JAPAN (AT ATLAS MALL)","4","80-40 ","COOPER AVENUE ","11385","7183268704","49","2012-02-08 00:00:00","D","10F","13","A","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41224493","SHIRO OF JAPAN (AT ATLAS MALL)","4","80-40 ","COOPER AVENUE ","11385","7183268704","49","2012-06-28 00:00:00","P","04A","16","","","2013-09-13 01:01:06.177000000" +"41249082","B FLAT","1","277","CHURCH STREET","10013","2123430277","49","2011-06-09 00:00:00","D","03A","10","A","2011-06-09 00:00:00","2013-09-13 01:01:06.177000000" +"41249082","B FLAT","1","277","CHURCH STREET","10013","2123430277","49","2012-05-29 00:00:00","D","08C","13","A","2012-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2010-08-25 00:00:00","P","04N","21","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2010-08-25 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2011-08-15 00:00:00","P","99B","17","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2011-12-13 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2012-01-06 00:00:00","D","10F","7","A","2012-01-06 00:00:00","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2013-05-22 00:00:00","F","10F","32","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2011-06-16 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2011-07-19 00:00:00","F","02G","40","C","2011-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2011-12-16 00:00:00","F","04C","34","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2011-12-16 00:00:00","F","09C","34","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2011-12-16 00:00:00","F","10F","34","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2012-01-24 00:00:00","U","04L","22","B","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2012-06-25 00:00:00","U","06D","15","B","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-03-04 00:00:00","U","10F","18","B","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-08-05 00:00:00","F","04H","31","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-08-05 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-08-05 00:00:00","F","10B","31","","","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2011-08-25 00:00:00","D","06A","10","A","2011-08-25 00:00:00","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2013-06-13 00:00:00","P","08A","15","","","2013-09-13 01:01:06.177000000" +"41249655","NEW TOYO JAPANESE RESTAURANT","4","73-06","METROPOLITAN AVENUE","11379","7188948880","49","2011-12-14 00:00:00","U","06C","11","B","2011-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41206966","THAI BASIL","1","860","9 AVENUE","10019","2123972036","82","2010-12-14 00:00:00","F","09A","49","C","2010-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2010-09-08 00:00:00","C","04N","5","A","2010-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2011-03-10 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2012-02-23 00:00:00","F","04L","34","","","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2012-07-24 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2013-02-25 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2010-04-27 12:05:00","U","10G","17","","","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2011-01-12 00:00:00","U","10H","7","B","2011-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2012-07-06 00:00:00","P","06A","22","","","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2012-07-18 00:00:00","U","04L","14","B","2012-07-18 00:00:00","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2013-02-25 00:00:00","P","06F","12","","","2013-09-13 01:01:06.177000000" +"41199993","LOS AMIGOS BILLIARDS","2","857 ","EAST 149 STREET ","10455","3477266914","03","2012-07-05 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41199993","LOS AMIGOS BILLIARDS","2","857 ","EAST 149 STREET ","10455","3477266914","03","2012-07-05 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2011-01-13 00:00:00","U","02B","14","B","2011-01-13 00:00:00","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2011-07-22 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2011-03-09 00:00:00","U","04C","19","B","2011-03-09 00:00:00","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2012-04-10 00:00:00","U","10F","25","B","2012-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-08-20 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41208272","KAWA SUSHI 8 AVENUE","1","24","8 AVENUE","10014","2123666888","49","2011-07-26 00:00:00","D","06A","13","A","2011-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41208272","KAWA SUSHI 8 AVENUE","1","24","8 AVENUE","10014","2123666888","49","2012-07-25 00:00:00","D","10F","12","A","2012-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"41189540","ROOM SERVICE","1","166","8 AVENUE","10011","2126910299","82","2011-05-19 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2010-09-28 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2010-09-28 00:00:00","F","04K","28","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2010-10-20 00:00:00","U","04K","10","B","2010-10-20 00:00:00","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2011-09-09 00:00:00","P","04K","25","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2011-09-09 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2012-03-05 00:00:00","D","10F","2","A","2012-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2011-06-21 00:00:00","F","99B","31","","","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2011-10-05 00:00:00","U","08A","25","B","2011-10-05 00:00:00","2013-09-13 01:01:06.177000000" +"41217902","MAHARAJA INDIAN CUISINE","1","133","EAST 45 STREET","10017","2126827962","44","2012-02-29 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41217902","MAHARAJA INDIAN CUISINE","1","133","EAST 45 STREET","10017","2126827962","44","2012-02-29 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2011-09-06 00:00:00","U","08C","5","B","2011-09-06 00:00:00","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2012-09-25 00:00:00","F","02B","34","","","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2012-09-25 00:00:00","F","04L","34","","","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2012-09-25 00:00:00","F","08A","34","","","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2012-10-23 00:00:00","D","08B","11","A","2012-10-23 00:00:00","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2013-05-31 00:00:00","P","10B","16","","","2013-09-13 01:01:06.177000000" +"41262775","KELLY'S","1","12","AVENUE A","10009","2123881464","47","2010-10-05 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41262775","KELLY'S","1","12","AVENUE A","10009","2123881464","47","2010-10-05 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41228172","NATSUMI","1","226","WEST 50 STREET","10019","2122582988","49","2010-09-08 00:00:00","D","10F","2","A","2010-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41228172","NATSUMI","1","226","WEST 50 STREET","10019","2122582988","49","2010-10-14 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2011-09-19 00:00:00","D","06C","12","A","2011-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2011-09-19 00:00:00","D","10B","12","A","2011-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2013-05-14 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"41262936","MICKEY'S PLACE","4","40-17","BELL BOULEVARD","11361","7182248152","49","2012-09-12 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"41262936","MICKEY'S PLACE","4","40-17","BELL BOULEVARD","11361","7182248152","49","2012-10-24 00:00:00","D","06C","6","A","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41262936","MICKEY'S PLACE","4","40-17","BELL BOULEVARD","11361","7182248152","49","2013-05-24 00:00:00","P","10H","21","","","2013-09-13 01:01:06.177000000" +"41219223","ZENKICHI","3","77 ","NORTH 6 STREET ","11249","7183888985","49","2011-03-31 00:00:00","B","10A","12","A","2011-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41219223","ZENKICHI","3","77 ","NORTH 6 STREET ","11249","7183888985","49","2013-02-01 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"41219569","SUTEISHI","1","24","PECK SLIP","10038","2127662344","49","2012-01-18 00:00:00","P","06D","27","","","2013-09-13 01:01:06.177000000" +"41219569","SUTEISHI","1","24","PECK SLIP","10038","2127662344","49","2012-01-18 00:00:00","P","06E","27","","","2013-09-13 01:01:06.177000000" +"41219576","EMPERADOR ELIAS RESTAURANT","3","274","BROADWAY","11211","7183887784","53","2013-08-07 00:00:00","G","04J","49","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2011-10-24 00:00:00","G","04L","133","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-06-04 00:00:00","F","02B","59","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-06-04 00:00:00","F","04M","59","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-06-25 00:00:00","F","06C","27","C","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2013-07-01 00:00:00","F","02B","35","","","2013-09-13 01:01:06.177000000" +"41212149","KYO-YA","1","94","EAST 7 STREET","10009","2129824140","49","2010-10-05 00:00:00","U","08A","5","","","2013-09-13 01:01:06.177000000" +"41212149","KYO-YA","1","94","EAST 7 STREET","10009","2129824140","49","2011-05-11 00:00:00","P","06C","20","","","2013-09-13 01:01:06.177000000" +"41212149","KYO-YA","1","94","EAST 7 STREET","10009","2129824140","49","2011-07-20 00:00:00","D","06C","12","A","2011-07-20 00:00:00","2013-09-13 01:01:06.177000000" +"41212149","KYO-YA","1","94","EAST 7 STREET","10009","2129824140","49","2011-07-20 00:00:00","D","10H","12","A","2011-07-20 00:00:00","2013-09-13 01:01:06.177000000" +"41212249","GEM & JOE INDIAN'S EAT AND DRINK CAFE","3","1054","ROGERS AVENUE","11226","7182827583","17","2012-03-05 00:00:00","F","02B","49","C","2012-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"41220720","SUSHI OF GARI 46","1","347","WEST 46 STREET","10036","2129570046","49","2011-06-01 00:00:00","D","10F","13","A","2011-06-01 00:00:00","2013-09-13 01:01:06.177000000" +"41220720","SUSHI OF GARI 46","1","347","WEST 46 STREET","10036","2129570046","49","2013-01-22 00:00:00","D","10F","2","A","2013-01-22 00:00:00","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2010-06-17 12:02:00","G","04C","108","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2010-06-17 12:02:00","G","10K","108","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2012-01-14 00:00:00","U","06C","19","B","2012-01-14 00:00:00","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2012-06-07 00:00:00","D","06B","7","A","2012-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2012-12-06 00:00:00","P","04H","20","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2013-01-02 00:00:00","F","02B","35","C","2013-01-02 00:00:00","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2010-01-19 16:49:00","D","10C","5","","","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2011-07-19 00:00:00","F","08A","41","C","2011-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41212617","YA-YA'S BAKERY","4","28-46","31 STREET","11102","7189323113","08","2010-12-09 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2011-10-11 00:00:00","P","02B","20","","","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2011-10-17 00:00:00","U","08A","17","B","2011-10-17 00:00:00","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2013-01-31 00:00:00","F","02G","25","","","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2013-08-20 00:00:00","P","06B","21","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2010-09-08 00:00:00","C","10F","12","A","2010-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2011-02-22 00:00:00","F","08A","46","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2011-03-22 00:00:00","G","05H","37","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2011-12-05 00:00:00","D","04L","13","A","2011-12-05 00:00:00","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2013-04-10 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2013-04-10 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"41214817","HOKKAIDO","5","3295","AMBOY ROAD","10306","7189800880","49","2011-10-06 00:00:00","D","02B","11","A","2011-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"41214817","HOKKAIDO","5","3295","AMBOY ROAD","10306","7189800880","49","2011-10-06 00:00:00","D","10B","11","A","2011-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"41223011","SUSHI SASABUNE NEW YORK","1","401","EAST 73 STREET","10021","2122498583","49","2011-06-09 00:00:00","P","02B","15","","","2013-09-13 01:01:06.177000000" +"41223011","SUSHI SASABUNE NEW YORK","1","401","EAST 73 STREET","10021","2122498583","49","2011-08-23 00:00:00","U","06F","20","B","2011-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2010-04-27 12:05:00","U","04M","17","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2011-05-16 00:00:00","G","06F","55","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2011-09-09 00:00:00","P","06A","17","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2010-10-29 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2012-05-18 00:00:00","D","06D","13","A","2012-05-18 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2011-03-15 00:00:00","P","04A","19","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2011-03-15 00:00:00","P","10H","19","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2011-04-20 00:00:00","D","22A","9","A","2011-04-20 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2011-08-17 00:00:00","F","04A","28","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-02-07 00:00:00","F","10A","65","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-02-14 00:00:00","F","04H","48","C","2012-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-02-14 00:00:00","F","06F","48","C","2012-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-02-14 00:00:00","F","08A","48","C","2012-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2013-03-01 00:00:00","F","06A","35","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2010-12-22 00:00:00","P","04C","23","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2010-12-22 00:00:00","P","22C","23","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2012-04-10 00:00:00","U","02G","25","B","2012-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-08-20 00:00:00","F","10F","44","","","2013-09-13 01:01:06.177000000" +"41208272","KAWA SUSHI 8 AVENUE","1","24","8 AVENUE","10014","2123666888","49","2010-12-09 00:00:00","P","06C","26","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-02-07 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-02-21 00:00:00","F","04A","67","C","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-03-22 00:00:00","U","09B","20","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-08-02 00:00:00","F","02B","28","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-08-02 00:00:00","F","04M","28","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-08-13 00:00:00","F","06D","40","C","2012-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41224493","SHIRO OF JAPAN (AT ATLAS MALL)","4","80-40 ","COOPER AVENUE ","11385","7183268704","49","2012-01-13 00:00:00","P","10B","27","","","2013-09-13 01:01:06.177000000" +"41224493","SHIRO OF JAPAN (AT ATLAS MALL)","4","80-40 ","COOPER AVENUE ","11385","7183268704","49","2012-06-28 00:00:00","P","06E","16","","","2013-09-13 01:01:06.177000000" +"41224493","SHIRO OF JAPAN (AT ATLAS MALL)","4","80-40 ","COOPER AVENUE ","11385","7183268704","49","2012-08-27 00:00:00","D","10H","4","A","2012-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41224493","SHIRO OF JAPAN (AT ATLAS MALL)","4","80-40 ","COOPER AVENUE ","11385","7183268704","49","2013-04-20 00:00:00","F","06E","37","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2011-06-16 00:00:00","P","04K","21","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2011-12-16 00:00:00","F","04K","34","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2011-12-16 00:00:00","F","10B","34","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-03-04 00:00:00","U","10B","18","B","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-08-05 00:00:00","F","04K","31","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2009-12-29 12:27:00","U","06C","23","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2010-09-28 00:00:00","F","04L","28","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2010-09-28 00:00:00","F","06D","28","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2011-04-26 00:00:00","D","04K","13","A","2011-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2012-02-22 00:00:00","P","06C","17","","","2013-09-13 01:01:06.177000000" +"41233392","556 EL CAFE INTERNATIONAL","3","556","WORTMAN AVENUE","11208","7182723545","53","2011-08-16 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2011-01-13 00:00:00","U","04C","14","B","2011-01-13 00:00:00","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2011-08-08 00:00:00","U","08A","14","B","2011-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2012-02-22 00:00:00","D","10I","10","A","2012-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2013-05-10 00:00:00","F","08A","10","","","2013-09-13 01:01:06.177000000" +"41262936","MICKEY'S PLACE","4","40-17","BELL BOULEVARD","11361","7182248152","49","2012-03-15 00:00:00","F","05D","12","","","2013-09-13 01:01:06.177000000" +"41217902","MAHARAJA INDIAN CUISINE","1","133","EAST 45 STREET","10017","2126827962","44","2012-02-29 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41217902","MAHARAJA INDIAN CUISINE","1","133","EAST 45 STREET","10017","2126827962","44","2012-02-29 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41217902","MAHARAJA INDIAN CUISINE","1","133","EAST 45 STREET","10017","2126827962","44","2012-02-29 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41217902","MAHARAJA INDIAN CUISINE","1","133","EAST 45 STREET","10017","2126827962","44","2012-02-29 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41217902","MAHARAJA INDIAN CUISINE","1","133","EAST 45 STREET","10017","2126827962","44","2013-07-02 00:00:00","G","04J","49","","","2013-09-13 01:01:06.177000000" +"41217902","MAHARAJA INDIAN CUISINE","1","133","EAST 45 STREET","10017","2126827962","44","2013-07-02 00:00:00","G","06A","49","","","2013-09-13 01:01:06.177000000" +"41226279","ROSIES PLACE","4","137-02","CROSSBAY BOULEVARD","11417","9174596848","03","2011-06-14 00:00:00","G","10E","49","","","2013-09-13 01:01:06.177000000" +"41269437","FOUTA FOOD","2","1762","WESTCHESTER AVENUE","10472","7187921700","02","2010-10-05 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41199993","LOS AMIGOS BILLIARDS","2","857 ","EAST 149 STREET ","10455","3477266914","03","2012-07-05 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2011-06-21 00:00:00","F","04C","31","","","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2013-03-19 00:00:00","O","","","","","2013-09-13 01:01:06.177000000" +"41212149","KYO-YA","1","94","EAST 7 STREET","10009","2129824140","49","2011-12-07 00:00:00","D","06F","12","A","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41212149","KYO-YA","1","94","EAST 7 STREET","10009","2129824140","49","2011-12-07 00:00:00","D","10H","12","A","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41212149","KYO-YA","1","94","EAST 7 STREET","10009","2129824140","49","2013-01-15 00:00:00","P","06A","20","","","2013-09-13 01:01:06.177000000" +"41264387","CUENCA COFFEE SHOP RESTAURANT","4","95-29","JAMAICA AVENUE","11421","7188474642","53","2012-04-12 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41264387","CUENCA COFFEE SHOP RESTAURANT","4","95-29","JAMAICA AVENUE","11421","7188474642","53","2012-04-12 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41264387","CUENCA COFFEE SHOP RESTAURANT","4","95-29","JAMAICA AVENUE","11421","7188474642","53","2012-04-12 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2010-09-27 00:00:00","P","04H","12","","","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2010-09-27 00:00:00","P","06F","12","","","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2011-10-17 00:00:00","P","04C","15","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2011-01-12 00:00:00","C","22A","7","A","2011-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2011-06-30 00:00:00","P","99B","21","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2011-12-13 00:00:00","U","06E","2","B","2011-12-13 00:00:00","2013-09-13 01:01:06.177000000" +"41219223","ZENKICHI","3","77 ","NORTH 6 STREET ","11249","7183888985","49","2011-03-31 00:00:00","B","05D","12","A","2011-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41219223","ZENKICHI","3","77 ","NORTH 6 STREET ","11249","7183888985","49","2012-04-11 00:00:00","P","10B","7","","","2013-09-13 01:01:06.177000000" +"41219463","BETTY BAKERY","3","448","ATLANTIC AVENUE","11217","7182462402","08","2011-11-09 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41219463","BETTY BAKERY","3","448","ATLANTIC AVENUE","11217","7182462402","08","2011-11-09 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41219569","SUTEISHI","1","24","PECK SLIP","10038","2127662344","49","2011-01-18 00:00:00","C","06E","12","A","2011-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"41212149","KYO-YA","1","94","EAST 7 STREET","10009","2129824140","49","2013-03-13 00:00:00","D","06D","11","A","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41219569","SUTEISHI","1","24","PECK SLIP","10038","2127662344","49","2012-01-18 00:00:00","P","04C","27","","","2013-09-13 01:01:06.177000000" +"41219576","EMPERADOR ELIAS RESTAURANT","3","274","BROADWAY","11211","7183887784","53","2013-08-07 00:00:00","G","06D","49","","","2013-09-13 01:01:06.177000000" +"41228172","NATSUMI","1","226","WEST 50 STREET","10019","2122582988","49","2012-08-07 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"41228172","NATSUMI","1","226","WEST 50 STREET","10019","2122582988","49","2013-08-12 00:00:00","P","10E","18","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2010-11-30 00:00:00","P","04K","27","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2011-08-22 00:00:00","U","04L","16","B","2011-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-02-14 00:00:00","G","04L","50","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-02-14 00:00:00","G","06D","50","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-02-14 00:00:00","G","08A","50","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-06-19 00:00:00","P","10B","23","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-01-16 00:00:00","F","06D","38","C","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-01-16 00:00:00","F","08C","38","C","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-06-17 00:00:00","F","10F","34","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-01-26 00:00:00","F","10F","29","C","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-11-19 00:00:00","G","04H","63","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-11-19 00:00:00","G","06C","63","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2012-02-16 00:00:00","P","04L","20","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2012-02-16 00:00:00","P","04N","20","","","2013-09-13 01:01:06.177000000" +"41212617","YA-YA'S BAKERY","4","28-46","31 STREET","11102","7189323113","08","2010-12-09 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"41212617","YA-YA'S BAKERY","4","28-46","31 STREET","11102","7189323113","08","2010-12-09 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41220720","SUSHI OF GARI 46","1","347","WEST 46 STREET","10036","2129570046","49","2012-05-07 00:00:00","P","08A","9","","","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2010-10-13 00:00:00","C","06D","12","A","2010-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2010-10-13 00:00:00","C","10F","12","A","2010-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2011-09-19 00:00:00","D","09C","12","A","2011-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2012-08-28 00:00:00","P","02B","25","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2012-02-16 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2013-07-25 00:00:00","F","09B","38","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2011-10-24 00:00:00","G","05B","133","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2011-10-27 00:00:00","O","08C","11","P","2011-10-27 00:00:00","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-01-12 00:00:00","D","06D","12","A","2012-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-06-04 00:00:00","F","06D","59","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-06-25 00:00:00","F","02G","27","C","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2013-07-01 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2013-07-01 00:00:00","F","09B","35","","","2013-09-13 01:01:06.177000000" +"41236537","INTERNATIONAL BAKE SHOP","4","719","SENECA AVENUE","11385","7183869550","08","2011-05-06 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2011-01-07 00:00:00","F","05D","19","C","2011-01-07 00:00:00","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2011-01-07 00:00:00","F","06A","19","C","2011-01-07 00:00:00","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2011-03-07 00:00:00","F","06D","30","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2011-03-07 00:00:00","F","10B","30","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-02-21 00:00:00","F","04L","67","C","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-02-21 00:00:00","F","04N","67","C","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-02-21 00:00:00","F","06C","67","C","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-02-21 00:00:00","F","08A","67","C","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-02-21 00:00:00","F","10F","67","C","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41223011","SUSHI SASABUNE NEW YORK","1","401","EAST 73 STREET","10021","2122498583","49","2012-05-04 00:00:00","D","10F","3","A","2012-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2012-08-20 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2011-04-21 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2011-05-28 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2013-05-22 00:00:00","F","06F","32","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2013-05-22 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2010-06-17 12:02:00","G","04I","108","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2010-06-17 12:02:00","G","08A","108","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2010-06-22 09:00:00","O","10B","4","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2012-01-03 00:00:00","F","02B","42","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2012-05-23 00:00:00","F","06D","32","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2012-05-23 00:00:00","F","10G","32","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2012-06-07 00:00:00","D","10I","7","A","2012-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41273539","SAPPORO JAPANESE CUISINE","3","7812","3 AVENUE","11209","7187483322","49","2011-05-25 00:00:00","P","02B","15","","","2013-09-13 01:01:06.177000000" +"41273539","SAPPORO JAPANESE CUISINE","3","7812","3 AVENUE","11209","7187483322","49","2011-05-25 00:00:00","P","10B","15","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2012-06-25 00:00:00","U","10F","15","B","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-02-06 00:00:00","P","06D","18","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-02-06 00:00:00","P","10B","18","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-08-05 00:00:00","F","04M","31","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-08-05 00:00:00","F","10F","31","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2011-03-15 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-02-07 00:00:00","F","09B","65","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-02-14 00:00:00","F","06A","48","C","2012-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-07-17 00:00:00","U","02G","18","B","2012-07-17 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2013-09-11 00:00:00","F","06E","32","","","2013-09-13 01:01:06.177000000" +"41274187","KAGETSU JAPANESE RESTAURANT","3","2004","BATH AVENUE","11214","7184498880","49","2010-10-09 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"41274187","KAGETSU JAPANESE RESTAURANT","3","2004","BATH AVENUE","11214","7184498880","49","2011-09-01 00:00:00","D","10F","9","A","2011-09-01 00:00:00","2013-09-13 01:01:06.177000000" +"41274187","KAGETSU JAPANESE RESTAURANT","3","2004","BATH AVENUE","11214","7184498880","49","2012-08-14 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41274187","KAGETSU JAPANESE RESTAURANT","3","2004","BATH AVENUE","11214","7184498880","49","2012-08-29 00:00:00","D","10F","4","A","2012-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41206966","THAI BASIL","1","860","9 AVENUE","10019","2123972036","82","2010-12-14 00:00:00","F","06A","49","C","2010-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2010-09-10 00:00:00","P","06A","10","","","2013-09-13 01:01:06.177000000" +"41217902","MAHARAJA INDIAN CUISINE","1","133","EAST 45 STREET","10017","2126827962","44","2013-07-02 00:00:00","G","09C","49","","","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2013-05-08 00:00:00","G","10B","46","","","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2010-09-20 00:00:00","C","06B","13","A","2010-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2011-08-10 00:00:00","P","10E","24","","","2013-09-13 01:01:06.177000000" +"41208272","KAWA SUSHI 8 AVENUE","1","24","8 AVENUE","10014","2123666888","49","2010-12-09 00:00:00","P","04C","26","","","2013-09-13 01:01:06.177000000" +"41208272","KAWA SUSHI 8 AVENUE","1","24","8 AVENUE","10014","2123666888","49","2011-01-04 00:00:00","U","02B","14","B","2011-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41208272","KAWA SUSHI 8 AVENUE","1","24","8 AVENUE","10014","2123666888","49","2013-07-29 00:00:00","P","02B","7","","","2013-09-13 01:01:06.177000000" +"41219223","ZENKICHI","3","77 ","NORTH 6 STREET ","11249","7183888985","49","2012-04-25 00:00:00","U","10F","5","B","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41269115","BISTRO MARKETPLACE & CAFE","1","90","PARK AVENUE","10016","2124901987","27","2011-05-12 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41269115","BISTRO MARKETPLACE & CAFE","1","90","PARK AVENUE","10016","2124901987","27","2011-05-12 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41269115","BISTRO MARKETPLACE & CAFE","1","90","PARK AVENUE","10016","2124901987","27","2011-05-12 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2011-10-05 00:00:00","U","04N","25","B","2011-10-05 00:00:00","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2012-03-14 00:00:00","F","06C","26","","","2013-09-13 01:01:06.177000000" +"41219576","EMPERADOR ELIAS RESTAURANT","3","274","BROADWAY","11211","7183887784","53","2013-08-07 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41219576","EMPERADOR ELIAS RESTAURANT","3","274","BROADWAY","11211","7183887784","53","2013-08-07 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2012-05-18 00:00:00","D","06D","10","A","2012-05-18 00:00:00","2013-09-13 01:01:06.177000000" +"41220720","SUSHI OF GARI 46","1","347","WEST 46 STREET","10036","2129570046","49","2012-05-25 00:00:00","D","04L","10","A","2012-05-25 00:00:00","2013-09-13 01:01:06.177000000" +"41220720","SUSHI OF GARI 46","1","347","WEST 46 STREET","10036","2129570046","49","2012-05-25 00:00:00","D","04N","10","A","2012-05-25 00:00:00","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2013-03-08 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2010-10-28 00:00:00","U","10F","7","B","2010-10-28 00:00:00","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2011-04-27 00:00:00","F","06F","29","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2011-07-15 00:00:00","D","06E","13","A","2011-07-15 00:00:00","2013-09-13 01:01:06.177000000" +"41269437","FOUTA FOOD","2","1762","WESTCHESTER AVENUE","10472","7187921700","02","2010-10-05 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2011-11-03 00:00:00","F","02G","48","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2011-11-03 00:00:00","F","10H","48","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2013-05-15 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2013-05-15 00:00:00","P","10H","21","","","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2011-01-07 00:00:00","F","10F","19","C","2011-01-07 00:00:00","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2011-10-17 00:00:00","U","02B","17","B","2011-10-17 00:00:00","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2013-08-20 00:00:00","P","08C","21","","","2013-09-13 01:01:06.177000000" +"41228172","NATSUMI","1","226","WEST 50 STREET","10019","2122582988","49","2013-08-12 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41228172","NATSUMI","1","226","WEST 50 STREET","10019","2122582988","49","2013-08-12 00:00:00","P","06F","18","","","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2013-05-14 00:00:00","P","10B","26","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2010-12-09 00:00:00","P","04H","18","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2011-01-05 00:00:00","U","06E","18","B","2011-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2011-01-05 00:00:00","U","08A","18","B","2011-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2011-06-24 00:00:00","W","04L","18","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2012-06-05 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2011-02-24 00:00:00","F","04C","45","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2011-03-08 00:00:00","F","06F","25","C","2011-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2013-07-12 00:00:00","F","10H","29","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2010-12-21 00:00:00","B","08C","5","A","2010-12-21 00:00:00","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2010-12-21 00:00:00","B","10F","5","A","2010-12-21 00:00:00","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2011-11-28 00:00:00","P","04M","26","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2012-04-24 00:00:00","P","10D","22","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2012-09-26 00:00:00","F","09B","32","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2013-04-10 00:00:00","P","06F","24","","","2013-09-13 01:01:06.177000000" +"41223011","SUSHI SASABUNE NEW YORK","1","401","EAST 73 STREET","10021","2122498583","49","2013-05-22 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41278885","SAKURA JAPANESE RESTAURANT 3118","3","3118","AVENUE U","11229","7186460666","49","2011-11-01 00:00:00","P","08C","23","","","2013-09-13 01:01:06.177000000" +"41278885","SAKURA JAPANESE RESTAURANT 3118","3","3118","AVENUE U","11229","7186460666","49","2011-12-01 00:00:00","U","04C","27","B","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41212149","KYO-YA","1","94","EAST 7 STREET","10009","2129824140","49","2010-10-05 00:00:00","U","04N","5","","","2013-09-13 01:01:06.177000000" +"41212149","KYO-YA","1","94","EAST 7 STREET","10009","2129824140","49","2011-05-11 00:00:00","P","06A","20","","","2013-09-13 01:01:06.177000000" +"41212617","YA-YA'S BAKERY","4","28-46","31 STREET","11102","7189323113","08","2010-12-09 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2010-12-30 00:00:00","U","04M","18","B","2010-12-30 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2010-12-30 00:00:00","U","08A","18","B","2010-12-30 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2011-08-11 00:00:00","F","02G","65","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2011-08-11 00:00:00","F","10H","65","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-02-14 00:00:00","G","02G","50","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-02-14 00:00:00","G","09B","50","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-02-17 00:00:00","W","04M","11","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-07-18 00:00:00","G","02G","28","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-07-25 00:00:00","O","04M","13","C","2012-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-07-25 00:00:00","O","08A","13","C","2012-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-11-14 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-01-16 00:00:00","F","04M","38","C","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-01-16 00:00:00","F","08A","38","C","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-06-17 00:00:00","F","08A","34","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-06-17 00:00:00","F","10B","34","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-06-13 00:00:00","F","04H","32","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-11-19 00:00:00","G","04N","63","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-11-19 00:00:00","G","08A","63","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2012-03-01 00:00:00","U","02B","19","B","2012-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-04-25 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-09-13 00:00:00","F","04L","66","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-09-28 00:00:00","F","08A","76","C","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-10-17 00:00:00","U","08A","23","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-01-23 00:00:00","F","04L","57","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-07-25 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-08-13 00:00:00","F","02G","26","C","2012-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-08-13 00:00:00","F","06D","26","C","2012-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-02-12 00:00:00","F","04C","36","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2010-11-03 00:00:00","C","10B","13","A","2010-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-01-12 00:00:00","D","10H","12","A","2012-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-06-04 00:00:00","F","06E","59","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-06-04 00:00:00","F","08A","59","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-06-04 00:00:00","F","10J","59","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-12-08 00:00:00","P","10I","7","","","2013-09-13 01:01:06.177000000" +"41278885","SAKURA JAPANESE RESTAURANT 3118","3","3118","AVENUE U","11229","7186460666","49","2011-12-01 00:00:00","U","06C","27","B","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41278931","EAST SUSHI BISTRO","3","2106","EAST 19 STREET","11229","7186480800","49","2012-07-26 00:00:00","D","10F","2","A","2012-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2013-07-25 00:00:00","F","10B","38","","","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2010-08-27 00:00:00","P","06E","14","","","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2011-06-22 00:00:00","G","02G","51","","","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2011-06-22 00:00:00","G","10H","51","","","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2012-10-09 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41279614","BLUE RIBBON SUSHI BAR & GRILL","1","6","COLUMBUS CIRCLE","10019","2123970404","49","2011-05-25 00:00:00","D","10B","9","A","2011-05-25 00:00:00","2013-09-13 01:01:06.177000000" +"41279614","BLUE RIBBON SUSHI BAR & GRILL","1","6","COLUMBUS CIRCLE","10019","2123970404","49","2012-06-07 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"41224493","SHIRO OF JAPAN (AT ATLAS MALL)","4","80-40 ","COOPER AVENUE ","11385","7183268704","49","2013-05-24 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41214817","HOKKAIDO","5","3295","AMBOY ROAD","10306","7189800880","49","2010-09-23 00:00:00","C","09C","11","A","2010-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-02-06 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-03-04 00:00:00","U","06D","18","B","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-03-04 00:00:00","U","08A","18","B","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2010-12-07 00:00:00","P","04C","23","","","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2011-02-09 00:00:00","U","22B","4","B","2011-02-09 00:00:00","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2011-09-01 00:00:00","U","04C","19","B","2011-09-01 00:00:00","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2012-02-22 00:00:00","P","02G","15","","","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2013-06-28 00:00:00","F","06C","33","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2010-09-16 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2011-03-07 00:00:00","F","03B","30","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2011-08-15 00:00:00","P","10B","17","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2011-08-29 00:00:00","D","99B","12","A","2011-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2011-12-13 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2012-05-18 00:00:00","D","10F","13","A","2012-05-18 00:00:00","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2013-05-22 00:00:00","F","04C","32","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2011-02-10 00:00:00","F","02A","71","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2012-04-09 00:00:00","F","10F","40","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2012-08-20 00:00:00","F","02C","36","","","2013-09-13 01:01:06.177000000" +"41273539","SAPPORO JAPANESE CUISINE","3","7812","3 AVENUE","11209","7187483322","49","2011-06-30 00:00:00","U","10B","12","B","2011-06-30 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2011-08-17 00:00:00","F","04C","28","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-02-07 00:00:00","F","03B","65","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-02-07 00:00:00","F","04L","65","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-07-03 00:00:00","P","06A","25","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2013-03-01 00:00:00","F","06C","35","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2013-09-11 00:00:00","F","08C","32","","","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2010-12-06 00:00:00","P","10F","14","","","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2013-05-08 00:00:00","G","04H","46","","","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2011-10-05 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"41282096","PRINCE STREET CAFE & CATERING","1","26","PRINCE STREET","10012","2123437310","03","2012-01-23 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41282096","PRINCE STREET CAFE & CATERING","1","26","PRINCE STREET","10012","2123437310","03","2012-01-23 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41245736","LIME LEAF","1","128","WEST 72 STREET","10023","2125017800","82","2012-04-05 00:00:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"41245736","LIME LEAF","1","128","WEST 72 STREET","10023","2125017800","82","2012-04-05 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41274187","KAGETSU JAPANESE RESTAURANT","3","2004","BATH AVENUE","11214","7184498880","49","2011-01-05 00:00:00","U","06D","17","B","2011-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41274187","KAGETSU JAPANESE RESTAURANT","3","2004","BATH AVENUE","11214","7184498880","49","2011-01-05 00:00:00","U","09C","17","B","2011-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41274187","KAGETSU JAPANESE RESTAURANT","3","2004","BATH AVENUE","11214","7184498880","49","2011-09-01 00:00:00","D","09B","9","A","2011-09-01 00:00:00","2013-09-13 01:01:06.177000000" +"41274187","KAGETSU JAPANESE RESTAURANT","3","2004","BATH AVENUE","11214","7184498880","49","2012-08-29 00:00:00","D","10B","4","A","2012-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41226279","ROSIES PLACE","4","137-02","CROSSBAY BOULEVARD","11417","9174596848","03","2011-06-14 00:00:00","G","02B","49","","","2013-09-13 01:01:06.177000000" +"41217902","MAHARAJA INDIAN CUISINE","1","133","EAST 45 STREET","10017","2126827962","44","2013-07-02 00:00:00","G","10B","49","","","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2011-05-17 00:00:00","U","04H","20","B","2011-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2011-05-17 00:00:00","U","06B","20","B","2011-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2012-02-08 00:00:00","P","10I","20","","","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2012-08-15 00:00:00","F","06C","30","","","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2010-09-10 00:00:00","P","09C","10","","","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2010-09-20 00:00:00","C","10F","13","A","2010-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2011-03-07 00:00:00","P","06D","15","","","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2011-08-23 00:00:00","D","06E","7","A","2011-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2011-08-23 00:00:00","D","10F","7","A","2011-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2012-07-02 00:00:00","D","08A","13","A","2012-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2012-03-14 00:00:00","F","06D","26","","","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2012-03-14 00:00:00","F","10B","26","","","2013-09-13 01:01:06.177000000" +"41233392","556 EL CAFE INTERNATIONAL","3","556","WORTMAN AVENUE","11208","7182723545","53","2011-08-16 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41228172","NATSUMI","1","226","WEST 50 STREET","10019","2122582988","49","2011-08-30 00:00:00","D","08C","4","A","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41228172","NATSUMI","1","226","WEST 50 STREET","10019","2122582988","49","2012-08-07 00:00:00","P","06D","26","","","2013-09-13 01:01:06.177000000" +"41228172","NATSUMI","1","226","WEST 50 STREET","10019","2122582988","49","2013-03-04 00:00:00","P","06E","24","","","2013-09-13 01:01:06.177000000" +"41228172","NATSUMI","1","226","WEST 50 STREET","10019","2122582988","49","2013-03-26 00:00:00","D","08B","9","A","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41284245","MARIA'S BISTRO MEXICANO","3","886","5 AVENUE","11232","7184381608","55","2013-05-08 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41284245","MARIA'S BISTRO MEXICANO","3","886","5 AVENUE","11232","7184381608","55","2013-05-08 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41284245","MARIA'S BISTRO MEXICANO","3","886","5 AVENUE","11232","7184381608","55","2013-05-08 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41219223","ZENKICHI","3","77 ","NORTH 6 STREET ","11249","7183888985","49","2012-04-11 00:00:00","P","06F","7","","","2013-09-13 01:01:06.177000000" +"41219223","ZENKICHI","3","77 ","NORTH 6 STREET ","11249","7183888985","49","2013-02-01 00:00:00","P","06B","17","","","2013-09-13 01:01:06.177000000" +"41219223","ZENKICHI","3","77 ","NORTH 6 STREET ","11249","7183888985","49","2013-02-01 00:00:00","P","10D","17","","","2013-09-13 01:01:06.177000000" +"41219463","BETTY BAKERY","3","448","ATLANTIC AVENUE","11217","7182462402","08","2011-11-09 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41219569","SUTEISHI","1","24","PECK SLIP","10038","2127662344","49","2009-12-16 16:05:00","D","10C","7","","","2013-09-13 01:01:06.177000000" +"41219569","SUTEISHI","1","24","PECK SLIP","10038","2127662344","49","2012-01-18 00:00:00","P","04A","27","","","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2011-09-19 00:00:00","D","10F","12","A","2011-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2012-09-13 00:00:00","U","10F","9","B","2012-09-13 00:00:00","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2011-06-23 00:00:00","F","10B","31","","","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2011-04-27 00:00:00","F","06C","29","","","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2011-05-11 00:00:00","U","06B","21","B","2011-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2012-04-03 00:00:00","D","06F","12","A","2012-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2013-03-25 00:00:00","F","02B","19","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2010-12-08 00:00:00","P","06F","17","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2011-01-12 00:00:00","C","22C","7","A","2011-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2011-06-30 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41285411","MIKE'S CAFETERIA","3","2556","MCDONALD AVENUE","11223","7189092456","03","2010-03-26 09:22:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41285411","MIKE'S CAFETERIA","3","2556","MCDONALD AVENUE","11223","7189092456","03","2010-03-26 09:22:00","F","10G","49","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2010-11-03 00:00:00","C","22C","13","A","2010-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2011-10-24 00:00:00","G","06E","133","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2011-12-13 00:00:00","U","10F","2","B","2011-12-13 00:00:00","2013-09-13 01:01:06.177000000" +"41220720","SUSHI OF GARI 46","1","347","WEST 46 STREET","10036","2129570046","49","2012-05-07 00:00:00","P","04M","9","","","2013-09-13 01:01:06.177000000" +"41220720","SUSHI OF GARI 46","1","347","WEST 46 STREET","10036","2129570046","49","2012-05-25 00:00:00","D","08A","10","A","2012-05-25 00:00:00","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2011-10-24 00:00:00","G","09B","133","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-01-12 00:00:00","D","06E","12","A","2012-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-06-04 00:00:00","F","02G","59","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-06-25 00:00:00","F","06B","27","C","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2013-07-01 00:00:00","F","04J","35","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2011-12-14 00:00:00","D","04M","11","A","2011-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2011-12-14 00:00:00","D","08A","11","A","2011-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2012-04-24 00:00:00","P","08C","22","","","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2011-12-21 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2012-05-16 00:00:00","P","09C","16","","","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2012-06-05 00:00:00","D","10I","10","A","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2013-08-12 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2011-06-21 00:00:00","G","08A","62","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2011-09-09 00:00:00","U","10B","9","B","2011-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2012-03-22 00:00:00","F","06F","22","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2012-03-22 00:00:00","F","10F","22","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2012-04-16 00:00:00","F","04M","10","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2012-06-05 00:00:00","F","06D","35","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2012-06-05 00:00:00","F","10F","35","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2010-10-21 00:00:00","P","04L","27","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2010-12-02 00:00:00","C","06C","12","A","2010-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-04-25 00:00:00","P","06E","22","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-09-13 00:00:00","F","06F","66","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-09-13 00:00:00","F","10I","66","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-09-28 00:00:00","F","02G","76","C","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-10-17 00:00:00","U","06F","23","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-01-23 00:00:00","F","02G","57","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-07-25 00:00:00","P","04J","19","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-05-21 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2010-10-13 00:00:00","P","06D","21","","","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2011-10-17 00:00:00","U","04L","17","B","2011-10-17 00:00:00","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2012-04-30 00:00:00","F","02G","53","","","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2013-01-31 00:00:00","F","08A","25","","","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2013-03-21 00:00:00","U","04L","5","B","2013-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2013-08-20 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41223011","SUSHI SASABUNE NEW YORK","1","401","EAST 73 STREET","10021","2122498583","49","2011-06-09 00:00:00","P","06C","15","","","2013-09-13 01:01:06.177000000" +"41223011","SUSHI SASABUNE NEW YORK","1","401","EAST 73 STREET","10021","2122498583","49","2011-08-23 00:00:00","U","04L","20","B","2011-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41249082","B FLAT","1","277","CHURCH STREET","10013","2123430277","49","2011-06-02 00:00:00","D","10F","2","","","2013-09-13 01:01:06.177000000" +"41249082","B FLAT","1","277","CHURCH STREET","10013","2123430277","49","2012-05-29 00:00:00","D","10B","13","A","2012-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2012-06-29 00:00:00","U","02B","14","B","2012-06-29 00:00:00","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2011-05-06 00:00:00","U","02B","24","B","2011-05-06 00:00:00","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2011-05-06 00:00:00","U","04C","24","B","2011-05-06 00:00:00","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2012-04-18 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2012-05-02 00:00:00","U","09B","13","B","2012-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2012-11-28 00:00:00","F","02B","42","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2012-11-28 00:00:00","F","08A","42","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2013-05-20 00:00:00","O","10F","2","P","2013-05-20 00:00:00","2013-09-13 01:01:06.177000000" +"41249184","CHARLIE'S PLACE","1","1960","MADISON AVENUE","10035","2124100277","49","2011-03-30 00:00:00","D","10F","9","A","2011-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2012-10-12 00:00:00","P","10F","10","","","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2013-01-09 00:00:00","F","16B","0","","","2013-09-13 01:01:06.177000000" +"41278885","SAKURA JAPANESE RESTAURANT 3118","3","3118","AVENUE U","11229","7186460666","49","2011-11-01 00:00:00","P","06D","23","","","2013-09-13 01:01:06.177000000" +"41249655","NEW TOYO JAPANESE RESTAURANT","4","73-06","METROPOLITAN AVENUE","11379","7188948880","49","2013-07-17 00:00:00","P","04H","24","","","2013-09-13 01:01:06.177000000" +"41249655","NEW TOYO JAPANESE RESTAURANT","4","73-06","METROPOLITAN AVENUE","11379","7188948880","49","2013-07-17 00:00:00","P","06A","24","","","2013-09-13 01:01:06.177000000" +"41279614","BLUE RIBBON SUSHI BAR & GRILL","1","6","COLUMBUS CIRCLE","10019","2123970404","49","2011-05-25 00:00:00","D","06D","9","A","2011-05-25 00:00:00","2013-09-13 01:01:06.177000000" +"41250480","LOS CHORITOS SPORTS BAR","2","2503","3 AVENUE","10451","7189935901","53","2011-07-14 00:00:00","F","04A","49","C","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2011-04-20 00:00:00","D","09B","9","A","2011-04-20 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2011-08-17 00:00:00","F","10D","28","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2011-09-27 00:00:00","D","10B","9","A","2011-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-02-07 00:00:00","F","05D","65","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2013-03-01 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2013-03-01 00:00:00","F","06E","35","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2013-03-01 00:00:00","F","08A","35","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2013-09-11 00:00:00","F","04M","32","","","2013-09-13 01:01:06.177000000" +"41289081","MIZU SUSHI","3","192 ","BEDFORD AVENUE ","11249","7187826666","49","2010-09-15 00:00:00","C","02B","8","A","2010-09-15 00:00:00","2013-09-13 01:01:06.177000000" +"41289081","MIZU SUSHI","3","192 ","BEDFORD AVENUE ","11249","7187826666","49","2012-03-27 00:00:00","D","09C","10","A","2012-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"41224493","SHIRO OF JAPAN (AT ATLAS MALL)","4","80-40 ","COOPER AVENUE ","11385","7183268704","49","2012-01-13 00:00:00","P","06F","27","","","2013-09-13 01:01:06.177000000" +"41224493","SHIRO OF JAPAN (AT ATLAS MALL)","4","80-40 ","COOPER AVENUE ","11385","7183268704","49","2013-04-20 00:00:00","F","04H","37","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2011-07-19 00:00:00","F","06F","40","C","2011-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2011-12-16 00:00:00","F","04L","34","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2012-01-24 00:00:00","U","10F","22","B","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2012-05-29 00:00:00","P","04K","18","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2012-06-25 00:00:00","U","04N","15","B","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-08-05 00:00:00","F","06D","31","","","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2010-12-07 00:00:00","P","09B","23","","","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2011-08-16 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2011-08-08 00:00:00","U","04L","14","B","2011-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2013-05-08 00:00:00","G","04L","46","","","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2013-05-08 00:00:00","G","10F","46","","","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2013-05-10 00:00:00","F","04L","10","","","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2010-11-24 00:00:00","U","02B","9","B","2010-11-24 00:00:00","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2011-06-29 00:00:00","D","10F","12","A","2011-06-29 00:00:00","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2011-10-05 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41282096","PRINCE STREET CAFE & CATERING","1","26","PRINCE STREET","10012","2123437310","03","2012-01-23 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41233392","556 EL CAFE INTERNATIONAL","3","556","WORTMAN AVENUE","11208","7182723545","53","2011-08-16 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41233392","556 EL CAFE INTERNATIONAL","3","556","WORTMAN AVENUE","11208","7182723545","53","2011-08-16 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2011-03-17 00:00:00","D","09A","12","A","2011-03-17 00:00:00","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2011-10-07 00:00:00","O","04L","12","P","2011-10-07 00:00:00","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2011-11-07 00:00:00","U","06D","26","B","2011-11-07 00:00:00","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2011-11-07 00:00:00","U","06E","26","B","2011-11-07 00:00:00","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2012-08-08 00:00:00","P","02H","17","","","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2012-04-17 00:00:00","D","10B","7","A","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2012-09-25 00:00:00","F","08B","34","","","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2013-05-31 00:00:00","P","02B","16","","","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2013-05-31 00:00:00","P","10A","16","","","2013-09-13 01:01:06.177000000" +"41282487","VINCENT & ANDRE'S PIZZERIA RESTAURANT","4","113-17","JAMAICA AVENUE","11418","7188467070","62","2011-04-07 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2011-02-22 00:00:00","F","06C","69","","","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2011-02-22 00:00:00","F","08A","69","","","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2012-08-15 00:00:00","F","04N","30","","","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2013-03-26 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2011-06-21 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2011-06-21 00:00:00","F","10H","31","","","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2011-10-05 00:00:00","U","06F","25","B","2011-10-05 00:00:00","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2013-03-08 00:00:00","P","10F","27","","","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2011-04-27 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2011-05-11 00:00:00","U","08A","21","B","2011-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2011-11-03 00:00:00","D","08A","11","A","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2013-03-25 00:00:00","F","04L","19","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2010-12-08 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2011-01-12 00:00:00","C","06D","7","A","2011-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2011-06-30 00:00:00","P","06E","21","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2012-05-02 00:00:00","D","06D","7","A","2012-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2013-05-15 00:00:00","P","06F","21","","","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2011-03-11 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2011-06-23 00:00:00","F","04H","31","","","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2011-12-13 00:00:00","F","06E","48","","","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2011-12-13 00:00:00","F","10B","48","","","2013-09-13 01:01:06.177000000" +"41228172","NATSUMI","1","226","WEST 50 STREET","10019","2122582988","49","2013-03-04 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2013-05-14 00:00:00","P","06B","26","","","2013-09-13 01:01:06.177000000" +"41284245","MARIA'S BISTRO MEXICANO","3","886","5 AVENUE","11232","7184381608","55","2013-05-08 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41284245","MARIA'S BISTRO MEXICANO","3","886","5 AVENUE","11232","7184381608","55","2013-05-08 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2010-11-03 00:00:00","C","06B","13","A","2010-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2011-10-24 00:00:00","G","04C","133","","","2013-09-13 01:01:06.177000000" +"41285411","MIKE'S CAFETERIA","3","2556","MCDONALD AVENUE","11223","7189092456","03","2010-03-26 09:22:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2013-02-12 00:00:00","F","04L","36","","","2013-09-13 01:01:06.177000000" +"41292992","KOUZAN","1","685","AMSTERDAM AVENUE","10025","2122808099","49","2011-02-24 00:00:00","F","10F","37","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2011-10-24 00:00:00","G","09C","133","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2011-10-24 00:00:00","G","10F","133","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-06-04 00:00:00","F","08C","59","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-06-04 00:00:00","F","10F","59","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2011-02-24 00:00:00","F","18F","45","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2011-02-24 00:00:00","F","22C","45","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2012-08-16 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2012-08-16 00:00:00","P","04M","21","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2011-11-28 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2011-11-28 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2012-05-10 00:00:00","D","04C","11","A","2012-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2013-04-10 00:00:00","P","10F","24","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2010-10-21 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-09-13 00:00:00","F","02G","66","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-09-13 00:00:00","F","06D","66","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-09-13 00:00:00","F","06E","66","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-09-13 00:00:00","F","10H","66","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-09-28 00:00:00","F","02B","76","C","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-07-25 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-08-13 00:00:00","F","10F","26","C","2012-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-02-12 00:00:00","F","06F","36","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-08-13 00:00:00","F","02B","50","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-08-13 00:00:00","F","10B","50","","","2013-09-13 01:01:06.177000000" +"41249082","B FLAT","1","277","CHURCH STREET","10013","2123430277","49","2013-05-31 00:00:00","P","06A","18","","","2013-09-13 01:01:06.177000000" +"41249184","CHARLIE'S PLACE","1","1960","MADISON AVENUE","10035","2124100277","49","2011-03-30 00:00:00","D","02B","9","A","2011-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"41249184","CHARLIE'S PLACE","1","1960","MADISON AVENUE","10035","2124100277","49","2013-03-20 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41249184","CHARLIE'S PLACE","1","1960","MADISON AVENUE","10035","2124100277","49","2013-03-20 00:00:00","P","06B","22","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2011-04-04 00:00:00","F","02B","40","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2011-04-04 00:00:00","F","06F","40","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2011-04-04 00:00:00","F","08A","40","","","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2011-06-28 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2012-10-12 00:00:00","P","08C","10","","","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2013-06-13 00:00:00","P","04M","15","","","2013-09-13 01:01:06.177000000" +"41249655","NEW TOYO JAPANESE RESTAURANT","4","73-06","METROPOLITAN AVENUE","11379","7188948880","49","2013-07-17 00:00:00","P","06F","24","","","2013-09-13 01:01:06.177000000" +"41258111","MCDONALD'S","3","2154","NOSTRAND AVENUE","11210","7184344568","39","2012-06-07 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41258111","MCDONALD'S","3","2154","NOSTRAND AVENUE","11210","7184344568","39","2012-06-07 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2010-12-20 00:00:00","P","10F","14","","","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2011-01-12 00:00:00","U","06C","7","B","2011-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2011-10-06 00:00:00","U","10B","17","B","2011-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"41288039","YAMATO JAPANESE CUISINE","4","3323","FRANCIS LEWIS BOULEVARD","11358","7183211508","49","2010-10-08 00:00:00","C","02G","7","A","2010-10-08 00:00:00","2013-09-13 01:01:06.177000000" +"41288039","YAMATO JAPANESE CUISINE","4","3323","FRANCIS LEWIS BOULEVARD","11358","7183211508","49","2011-04-21 00:00:00","D","10F","7","A","2011-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"41288039","YAMATO JAPANESE CUISINE","4","3323","FRANCIS LEWIS BOULEVARD","11358","7183211508","49","2012-04-05 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41250480","LOS CHORITOS SPORTS BAR","2","2503","3 AVENUE","10451","7189935901","53","2011-07-14 00:00:00","F","04H","49","C","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2011-03-09 00:00:00","U","03C","19","B","2011-03-09 00:00:00","2013-09-13 01:01:06.177000000" +"41289081","MIZU SUSHI","3","192 ","BEDFORD AVENUE ","11249","7187826666","49","2011-08-30 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"41289081","MIZU SUSHI","3","192 ","BEDFORD AVENUE ","11249","7187826666","49","2011-09-15 00:00:00","U","10E","8","B","2011-09-15 00:00:00","2013-09-13 01:01:06.177000000" +"41289081","MIZU SUSHI","3","192 ","BEDFORD AVENUE ","11249","7187826666","49","2012-03-27 00:00:00","D","06B","10","A","2012-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2011-04-20 00:00:00","D","02B","9","A","2011-04-20 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-02-14 00:00:00","F","06E","48","C","2012-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2013-03-01 00:00:00","F","04L","35","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2013-09-11 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2011-03-09 00:00:00","U","06D","19","B","2011-03-09 00:00:00","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2011-10-14 00:00:00","F","10B","46","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2011-10-24 00:00:00","U","02G","15","B","2011-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2011-10-24 00:00:00","U","10B","15","B","2011-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2012-03-20 00:00:00","P","10F","8","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-02-15 00:00:00","F","04H","39","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-02-15 00:00:00","F","08A","39","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-03-13 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41297009","ADJ COFFEE SHOP","3","1","BROOKDALE PLAZA","11212","7183458964","14","2009-10-20 15:39:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2009-12-29 12:27:00","U","06F","23","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2009-12-29 12:27:00","U","08A","23","","","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2011-06-11 00:00:00","P","08C","16","","","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2012-04-05 00:00:00","P","04C","19","","","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2012-09-25 00:00:00","F","04M","34","","","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2012-09-25 00:00:00","F","06F","34","","","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2012-10-23 00:00:00","D","02B","11","A","2012-10-23 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2010-10-02 00:00:00","U","04M","8","B","2010-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2010-10-02 00:00:00","U","10F","8","B","2010-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2012-01-12 00:00:00","F","04C","32","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2012-01-12 00:00:00","F","06E","32","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2012-07-13 00:00:00","F","08A","19","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2011-10-04 00:00:00","D","08A","10","A","2011-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41290200","TASTY DUMPLING","1","54","MULBERRY STREET","10013","2123490700","20","2010-09-29 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41245736","LIME LEAF","1","128","WEST 72 STREET","10023","2125017800","82","2012-04-05 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41245736","LIME LEAF","1","128","WEST 72 STREET","10023","2125017800","82","2012-04-05 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41297604","TUTTA PASTA","3","160","7 AVENUE","11215","7187889500","48","2011-11-25 00:00:00","G","05A","49","","","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2011-03-17 00:00:00","D","06C","12","A","2011-03-17 00:00:00","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2011-03-17 00:00:00","D","10E","12","A","2011-03-17 00:00:00","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2011-10-07 00:00:00","O","10B","12","P","2011-10-07 00:00:00","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2012-08-08 00:00:00","P","05H","17","","","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2011-02-22 00:00:00","F","02B","69","","","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2012-08-15 00:00:00","F","04C","30","","","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2012-08-15 00:00:00","F","06A","30","","","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2010-12-22 00:00:00","F","16B","0","","","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2012-05-18 00:00:00","D","06B","10","A","2012-05-18 00:00:00","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2013-05-22 00:00:00","F","08A","33","","","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2012-08-28 00:00:00","F","04M","18","C","2012-08-28 00:00:00","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2013-03-08 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"41262775","KELLY'S","1","12","AVENUE A","10009","2123881464","47","2010-10-05 00:00:00","F","03E","49","","","2013-09-13 01:01:06.177000000" +"41262936","MICKEY'S PLACE","4","40-17","BELL BOULEVARD","11361","7182248152","49","2011-04-04 00:00:00","D","06C","10","A","2011-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41262936","MICKEY'S PLACE","4","40-17","BELL BOULEVARD","11361","7182248152","49","2012-09-12 00:00:00","P","06F","18","","","2013-09-13 01:01:06.177000000" +"41262936","MICKEY'S PLACE","4","40-17","BELL BOULEVARD","11361","7182248152","49","2012-09-12 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41262936","MICKEY'S PLACE","4","40-17","BELL BOULEVARD","11361","7182248152","49","2013-05-24 00:00:00","P","04C","21","","","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2011-05-11 00:00:00","U","10I","21","B","2011-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2013-03-25 00:00:00","F","06F","19","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2010-12-08 00:00:00","P","09C","17","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2010-12-08 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2011-01-12 00:00:00","C","10F","7","A","2011-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2011-11-03 00:00:00","F","04J","48","","","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2011-10-12 00:00:00","F","04L","46","C","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2011-10-12 00:00:00","F","08A","46","C","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2012-09-17 00:00:00","P","10B","16","","","2013-09-13 01:01:06.177000000" +"41298790","SERAFINA AT THE TIME HOTEL","1","224","WEST 49 STREET","10019","2122471000","48","2010-08-25 00:00:00","G","10B","49","","","2013-09-13 01:01:06.177000000" +"41299007","JIVAMUKTEA CAFE","1","841","BROADWAY","10003","2123530214","84","2011-02-14 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2010-08-25 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2013-03-21 00:00:00","U","04L","15","B","2013-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2013-08-12 00:00:00","P","04M","17","","","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2010-08-25 00:00:00","P","10A","22","","","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2010-08-25 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2010-10-12 00:00:00","C","10B","9","A","2010-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2011-03-24 00:00:00","P","06D","23","","","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2011-03-24 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2011-04-21 00:00:00","F","04L","35","C","2011-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2011-04-21 00:00:00","F","06F","35","C","2011-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2010-08-11 00:00:00","C","04N","6","A","2010-08-11 00:00:00","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2010-08-11 00:00:00","C","08A","6","A","2010-08-11 00:00:00","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2012-01-27 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2011-02-24 00:00:00","F","10B","45","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2011-03-08 00:00:00","F","04C","25","C","2011-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2011-03-08 00:00:00","F","06A","25","C","2011-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2011-10-13 00:00:00","P","10B","25","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2012-09-26 00:00:00","F","02B","32","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2012-09-26 00:00:00","F","04C","32","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-05-12 00:00:00","D","06C","12","A","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-09-13 00:00:00","F","10B","66","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-01-23 00:00:00","F","02B","57","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-01-23 00:00:00","F","04A","57","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-02-02 00:00:00","U","06D","18","B","2012-02-02 00:00:00","2013-09-13 01:01:06.177000000" +"41249184","CHARLIE'S PLACE","1","1960","MADISON AVENUE","10035","2124100277","49","2013-03-20 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2010-04-02 23:05:00","U","10C","21","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2011-06-29 00:00:00","G","02G","72","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2011-09-21 00:00:00","F","06C","35","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2012-01-10 00:00:00","F","04H","34","C","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2012-05-16 00:00:00","P","10B","14","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2012-05-29 00:00:00","U","02G","23","B","2012-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2013-02-14 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41264387","CUENCA COFFEE SHOP RESTAURANT","4","95-29","JAMAICA AVENUE","11421","7188474642","53","2012-04-12 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41264387","CUENCA COFFEE SHOP RESTAURANT","4","95-29","JAMAICA AVENUE","11421","7188474642","53","2012-04-12 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41292992","KOUZAN","1","685","AMSTERDAM AVENUE","10025","2122808099","49","2011-02-24 00:00:00","F","02G","37","","","2013-09-13 01:01:06.177000000" +"41292992","KOUZAN","1","685","AMSTERDAM AVENUE","10025","2122808099","49","2011-04-12 00:00:00","U","06B","12","B","2011-04-12 00:00:00","2013-09-13 01:01:06.177000000" +"41292992","KOUZAN","1","685","AMSTERDAM AVENUE","10025","2122808099","49","2011-04-12 00:00:00","U","10B","12","B","2011-04-12 00:00:00","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2011-06-28 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2013-01-09 00:00:00","D","06D","13","A","2013-01-09 00:00:00","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2013-06-13 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41236537","INTERNATIONAL BAKE SHOP","4","719","SENECA AVENUE","11385","7183869550","08","2011-05-06 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41249655","NEW TOYO JAPANESE RESTAURANT","4","73-06","METROPOLITAN AVENUE","11379","7188948880","49","2010-09-21 00:00:00","D","09C","3","A","2010-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41249655","NEW TOYO JAPANESE RESTAURANT","4","73-06","METROPOLITAN AVENUE","11379","7188948880","49","2011-12-14 00:00:00","U","06F","11","B","2011-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2010-04-27 12:05:00","U","08A","17","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2011-02-14 00:00:00","D","08A","12","A","2011-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-02-07 00:00:00","F","10F","31","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-03-22 00:00:00","U","10B","20","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-08-13 00:00:00","F","06F","40","C","2012-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2010-12-22 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-02-15 00:00:00","F","06F","39","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-02-15 00:00:00","F","10F","39","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-08-20 00:00:00","F","04L","44","","","2013-09-13 01:01:06.177000000" +"41245736","LIME LEAF","1","128","WEST 72 STREET","10023","2125017800","82","2012-04-05 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41245736","LIME LEAF","1","128","WEST 72 STREET","10023","2125017800","82","2012-04-05 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"41302781","TRATTORIA IL MULINO","1","36","EAST 20 STREET","10003","2127778448","48","2013-08-28 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2012-02-21 00:00:00","D","02G","12","A","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2012-08-30 00:00:00","U","04L","17","B","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2012-08-30 00:00:00","U","09C","17","B","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41297009","ADJ COFFEE SHOP","3","1","BROOKDALE PLAZA","11212","7183458964","14","2009-10-20 15:39:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2009-12-29 12:27:00","U","10G","23","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2010-09-28 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2010-10-20 00:00:00","U","06D","10","B","2010-10-20 00:00:00","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2012-02-22 00:00:00","P","09B","17","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2010-10-02 00:00:00","U","10H","8","B","2010-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-05-02 00:00:00","F","04C","57","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-09-15 00:00:00","F","04K","51","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-09-15 00:00:00","F","08A","51","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-09-15 00:00:00","F","10B","51","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2012-01-12 00:00:00","F","09B","32","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2012-02-27 00:00:00","U","10F","8","B","2012-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2012-08-07 00:00:00","F","08A","37","C","2012-08-07 00:00:00","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2011-12-13 00:00:00","F","06A","48","","","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2012-01-05 00:00:00","D","04H","12","A","2012-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2013-05-22 00:00:00","F","04C","33","","","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2013-05-22 00:00:00","F","04M","33","","","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2011-12-07 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2012-11-23 00:00:00","F","06A","29","","","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2013-01-15 00:00:00","U","08A","10","B","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2013-07-15 00:00:00","P","04E","27","","","2013-09-13 01:01:06.177000000" +"41262775","KELLY'S","1","12","AVENUE A","10009","2123881464","47","2010-10-05 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41262936","MICKEY'S PLACE","4","40-17","BELL BOULEVARD","11361","7182248152","49","2013-05-24 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41297604","TUTTA PASTA","3","160","7 AVENUE","11215","7187889500","48","2011-11-25 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"41297604","TUTTA PASTA","3","160","7 AVENUE","11215","7187889500","48","2011-11-25 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2011-11-22 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2011-11-22 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2012-07-02 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2013-03-30 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2011-12-21 00:00:00","P","04C","17","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2011-02-24 00:00:00","F","04L","45","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2011-03-08 00:00:00","F","06D","25","C","2011-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2011-03-08 00:00:00","F","06E","25","C","2011-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2011-10-13 00:00:00","P","04M","25","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2011-10-27 00:00:00","U","04C","7","B","2011-10-27 00:00:00","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2013-07-12 00:00:00","F","04N","29","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2011-11-28 00:00:00","P","10F","26","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2013-04-10 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2012-05-16 00:00:00","P","06C","16","","","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2012-05-16 00:00:00","P","10B","16","","","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2013-03-21 00:00:00","U","04M","15","B","2013-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2010-10-21 00:00:00","P","10B","27","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-09-13 00:00:00","F","05D","66","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-09-13 00:00:00","F","10F","66","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-09-28 00:00:00","F","05D","76","C","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-01-23 00:00:00","F","04J","57","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-02-02 00:00:00","U","06B","18","B","2012-02-02 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-07-25 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-02-12 00:00:00","F","02B","36","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-03-08 00:00:00","D","10B","13","A","2013-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-08-13 00:00:00","F","06F","50","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2010-11-30 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-06-19 00:00:00","P","09B","23","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-07-18 00:00:00","G","04M","28","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-11-14 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-01-16 00:00:00","F","02G","38","C","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-06-17 00:00:00","F","04L","34","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-01-26 00:00:00","F","06B","29","C","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-06-13 00:00:00","F","10H","32","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-07-06 00:00:00","F","05D","22","C","2011-07-06 00:00:00","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-11-19 00:00:00","G","04L","63","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2012-03-01 00:00:00","U","04M","19","B","2012-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2012-11-27 00:00:00","P","06D","25","","","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2010-08-27 00:00:00","P","04M","14","","","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2011-06-22 00:00:00","G","08A","51","","","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2011-10-21 00:00:00","D","10E","6","A","2011-10-21 00:00:00","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2012-10-09 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2010-09-14 00:00:00","D","10B","9","A","2010-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2011-10-12 00:00:00","F","04H","46","C","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2012-04-05 00:00:00","F","05D","25","","","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2012-04-05 00:00:00","F","10I","25","","","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2012-09-17 00:00:00","P","06E","16","","","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2013-05-11 00:00:00","P","02B","27","","","2013-09-13 01:01:06.177000000" +"41298790","SERAFINA AT THE TIME HOTEL","1","224","WEST 49 STREET","10019","2122471000","48","2010-08-25 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41298790","SERAFINA AT THE TIME HOTEL","1","224","WEST 49 STREET","10019","2122471000","48","2010-08-25 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41249184","CHARLIE'S PLACE","1","1960","MADISON AVENUE","10035","2124100277","49","2012-03-06 00:00:00","D","02B","10","A","2012-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2012-10-12 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2013-01-09 00:00:00","D","02G","13","A","2013-01-09 00:00:00","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2013-06-13 00:00:00","P","06F","15","","","2013-09-13 01:01:06.177000000" +"41249655","NEW TOYO JAPANESE RESTAURANT","4","73-06","METROPOLITAN AVENUE","11379","7188948880","49","2011-12-01 00:00:00","P","04C","19","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2011-11-03 00:00:00","U","04L","22","B","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2011-11-03 00:00:00","U","08A","22","B","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-03-26 00:00:00","W","08A","35","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-05-10 00:00:00","P","04N","17","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-05-10 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-05-21 00:00:00","U","02G","18","B","2012-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41264387","CUENCA COFFEE SHOP RESTAURANT","4","95-29","JAMAICA AVENUE","11421","7188474642","53","2012-04-12 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2011-08-18 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2011-08-29 00:00:00","U","04M","24","B","2011-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2011-08-25 00:00:00","F","08A","40","","","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2012-02-06 00:00:00","D","08A","13","A","2012-02-06 00:00:00","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2012-02-06 00:00:00","D","10F","13","A","2012-02-06 00:00:00","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2012-08-01 00:00:00","P","04N","20","","","2013-09-13 01:01:06.177000000" +"41305601","PALACE OF JAPAN","2","3505","JOHNSON AVENUE","10463","7185438833","49","2011-06-13 00:00:00","G","06C","62","","","2013-09-13 01:01:06.177000000" +"41305601","PALACE OF JAPAN","2","3505","JOHNSON AVENUE","10463","7185438833","49","2011-08-09 00:00:00","D","06D","12","A","2011-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2012-02-07 00:00:00","F","04L","28","","","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2012-08-27 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2012-08-27 00:00:00","P","04K","26","","","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2012-09-24 00:00:00","U","04K","24","B","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2012-09-24 00:00:00","U","04N","24","B","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2012-09-24 00:00:00","U","08A","24","B","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2013-05-07 00:00:00","F","06F","57","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2010-04-02 23:05:00","U","04C","21","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2010-10-04 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2011-06-29 00:00:00","G","06F","72","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2011-06-29 00:00:00","G","08A","72","","","2013-09-13 01:01:06.177000000" +"41250480","LOS CHORITOS SPORTS BAR","2","2503","3 AVENUE","10451","7189935901","53","2011-07-14 00:00:00","F","04L","49","C","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2011-07-01 00:00:00","O","04M","10","P","2011-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2012-01-10 00:00:00","F","08A","34","C","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41258111","MCDONALD'S","3","2154","NOSTRAND AVENUE","11210","7184344568","39","2012-06-07 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2011-07-21 00:00:00","D","04J","10","A","2011-07-21 00:00:00","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2011-07-21 00:00:00","D","10C","10","A","2011-07-21 00:00:00","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2011-07-21 00:00:00","E","16B","","","","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2012-07-06 00:00:00","P","04C","22","","","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2012-07-06 00:00:00","P","04M","22","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2010-08-23 00:00:00","U","04C","7","B","2010-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2011-02-10 00:00:00","F","04C","71","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2011-02-10 00:00:00","F","06B","71","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2011-02-10 00:00:00","F","10E","71","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2012-04-09 00:00:00","F","03A","40","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2012-08-20 00:00:00","F","04L","36","","","2013-09-13 01:01:06.177000000" +"41273539","SAPPORO JAPANESE CUISINE","3","7812","3 AVENUE","11209","7187483322","49","2011-06-30 00:00:00","U","04M","12","B","2011-06-30 00:00:00","2013-09-13 01:01:06.177000000" +"41273539","SAPPORO JAPANESE CUISINE","3","7812","3 AVENUE","11209","7187483322","49","2012-01-04 00:00:00","D","02B","11","A","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41273539","SAPPORO JAPANESE CUISINE","3","7812","3 AVENUE","11209","7187483322","49","2012-06-23 00:00:00","D","02G","12","A","2012-06-23 00:00:00","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2011-10-14 00:00:00","F","04L","46","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2012-04-10 00:00:00","U","10I","25","B","2012-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-08-20 00:00:00","F","02B","44","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-08-20 00:00:00","F","06C","44","","","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2012-04-05 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2012-09-25 00:00:00","F","06D","34","","","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2012-10-23 00:00:00","D","10F","11","A","2012-10-23 00:00:00","2013-09-13 01:01:06.177000000" +"41274187","KAGETSU JAPANESE RESTAURANT","3","2004","BATH AVENUE","11214","7184498880","49","2010-10-09 00:00:00","P","04M","24","","","2013-09-13 01:01:06.177000000" +"41274187","KAGETSU JAPANESE RESTAURANT","3","2004","BATH AVENUE","11214","7184498880","49","2011-09-01 00:00:00","D","99B","9","A","2011-09-01 00:00:00","2013-09-13 01:01:06.177000000" +"41274187","KAGETSU JAPANESE RESTAURANT","3","2004","BATH AVENUE","11214","7184498880","49","2012-08-14 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-02-07 00:00:00","F","06C","31","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-02-21 00:00:00","F","04C","67","C","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-02-21 00:00:00","F","04M","67","C","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2011-03-07 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2011-11-29 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-03-22 00:00:00","U","04M","20","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-03-22 00:00:00","U","08A","20","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-08-13 00:00:00","F","04A","40","C","2012-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41301266","VIVI","1","248","EAST 52 STREET","10022","2128266880","49","2011-06-17 00:00:00","D","10F","11","A","2011-06-17 00:00:00","2013-09-13 01:01:06.177000000" +"41301266","VIVI","1","248","EAST 52 STREET","10022","2128266880","49","2012-05-29 00:00:00","P","06D","18","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2009-12-29 12:27:00","U","04M","23","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2011-03-29 00:00:00","P","06E","24","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2011-03-29 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2011-09-09 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2012-02-22 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"41245736","LIME LEAF","1","128","WEST 72 STREET","10023","2125017800","82","2012-04-05 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2011-05-04 00:00:00","U","18A","20","B","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2011-12-21 00:00:00","D","10H","12","A","2011-12-21 00:00:00","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2011-02-22 00:00:00","F","04L","69","","","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2012-02-08 00:00:00","P","10B","20","","","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2012-02-21 00:00:00","D","10F","12","A","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2013-03-26 00:00:00","P","10I","18","","","2013-09-13 01:01:06.177000000" +"41262775","KELLY'S","1","12","AVENUE A","10009","2123881464","47","2010-10-05 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41262936","MICKEY'S PLACE","4","40-17","BELL BOULEVARD","11361","7182248152","49","2011-04-04 00:00:00","D","08B","10","A","2011-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41262936","MICKEY'S PLACE","4","40-17","BELL BOULEVARD","11361","7182248152","49","2012-04-13 00:00:00","D","04C","13","A","2012-04-13 00:00:00","2013-09-13 01:01:06.177000000" +"41302781","TRATTORIA IL MULINO","1","36","EAST 20 STREET","10003","2127778448","48","2013-08-28 00:00:00","F","09B","49","","","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2011-06-06 00:00:00","D","10B","11","A","2011-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2012-05-30 00:00:00","P","10B","20","","","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2013-07-05 00:00:00","F","06D","55","","","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2013-07-05 00:00:00","F","06E","55","","","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2011-01-13 00:00:00","U","06D","10","B","2011-01-13 00:00:00","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2011-01-13 00:00:00","U","06E","10","B","2011-01-13 00:00:00","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2011-09-22 00:00:00","F","04L","32","C","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2011-09-22 00:00:00","F","09C","32","C","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2012-08-09 00:00:00","P","04L","17","","","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2013-03-26 00:00:00","F","06A","25","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2011-09-09 00:00:00","U","02B","9","B","2011-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2012-04-16 00:00:00","F","10F","10","","","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2011-08-11 00:00:00","U","10I","10","B","2011-08-11 00:00:00","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2011-12-13 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2013-07-09 00:00:00","F","04M","30","","","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2013-07-09 00:00:00","F","10B","30","","","2013-09-13 01:01:06.177000000" +"41278885","SAKURA JAPANESE RESTAURANT 3118","3","3118","AVENUE U","11229","7186460666","49","2011-12-01 00:00:00","U","02B","27","B","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41278885","SAKURA JAPANESE RESTAURANT 3118","3","3118","AVENUE U","11229","7186460666","49","2013-06-03 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2012-06-05 00:00:00","D","04H","10","A","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2013-02-12 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2013-03-21 00:00:00","U","02G","15","B","2013-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2010-12-30 00:00:00","U","04L","18","B","2010-12-30 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2011-08-11 00:00:00","F","04H","65","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-02-17 00:00:00","W","04L","11","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-02-17 00:00:00","W","08A","11","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-07-25 00:00:00","O","10F","13","C","2012-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-11-14 00:00:00","P","10B","17","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-01-16 00:00:00","F","04K","38","C","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-01-16 00:00:00","F","10B","38","C","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-06-17 00:00:00","F","02G","34","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2010-12-14 00:00:00","F","02B","43","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2010-12-14 00:00:00","F","04N","43","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2010-12-14 00:00:00","F","08A","43","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-11-19 00:00:00","G","04M","63","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2012-11-27 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2013-07-25 00:00:00","F","06F","38","","","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2011-06-27 00:00:00","O","10B","2","C","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2012-10-22 00:00:00","U","06A","17","B","2012-10-22 00:00:00","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2012-11-23 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"41258111","MCDONALD'S","3","2154","NOSTRAND AVENUE","11210","7184344568","39","2012-06-07 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41249082","B FLAT","1","277","CHURCH STREET","10013","2123430277","49","2012-05-29 00:00:00","D","02G","13","A","2012-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41249082","B FLAT","1","277","CHURCH STREET","10013","2123430277","49","2013-05-31 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41304618","DOVETAIL","1","103","WEST 77 STREET","10024","2123623800","03","2013-04-23 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2010-04-27 12:05:00","U","06C","17","","","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2010-04-27 12:05:00","U","10B","17","","","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2011-09-29 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41310577","ASHBY'S","1","64","WEST 22 STREET","10010","2122287993","03","2012-12-06 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2011-06-28 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2010-12-22 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2012-04-10 00:00:00","U","02B","25","B","2012-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-02-15 00:00:00","F","04N","39","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-02-15 00:00:00","F","06D","39","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-08-20 00:00:00","F","08C","44","","","2013-09-13 01:01:06.177000000" +"41310837","KYOTO SUSHI V","5","418","FOREST AVENUE","10301","7187276666","49","2011-10-24 00:00:00","D","10F","13","A","2011-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2011-06-03 00:00:00","F","08A","101","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2011-09-28 00:00:00","D","04C","12","A","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2012-02-28 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2011-09-01 00:00:00","U","06E","19","B","2011-09-01 00:00:00","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2013-01-08 00:00:00","D","10F","13","A","2013-01-08 00:00:00","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2013-06-28 00:00:00","F","04A","33","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-08-20 00:00:00","F","10I","44","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2010-08-06 00:00:00","F","04N","8","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2011-02-10 00:00:00","F","08A","71","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2011-03-04 00:00:00","F","04L","32","C","2011-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2011-05-04 00:00:00","D","22B","13","A","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2012-04-09 00:00:00","F","04L","40","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2011-10-19 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2011-10-19 00:00:00","F","06E","30","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-03-28 00:00:00","O","04L","9","C","2012-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-03-28 00:00:00","O","08A","9","C","2012-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2013-03-09 00:00:00","G","02B","39","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2013-03-09 00:00:00","G","10A","39","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2013-03-09 00:00:00","G","10B","39","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2010-09-28 00:00:00","F","04M","28","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2011-04-26 00:00:00","D","10F","13","A","2011-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2011-10-04 00:00:00","D","04K","10","A","2011-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2011-06-02 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2011-06-02 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2011-10-18 00:00:00","U","02B","14","B","2011-10-18 00:00:00","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2012-04-26 00:00:00","D","08B","13","A","2012-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2013-04-24 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41273539","SAPPORO JAPANESE CUISINE","3","7812","3 AVENUE","11209","7187483322","49","2010-06-24 13:55:00","U","10G","12","","","2013-09-13 01:01:06.177000000" +"41273539","SAPPORO JAPANESE CUISINE","3","7812","3 AVENUE","11209","7187483322","49","2011-12-09 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"41273539","SAPPORO JAPANESE CUISINE","3","7812","3 AVENUE","11209","7187483322","49","2011-12-09 00:00:00","P","10H","20","","","2013-09-13 01:01:06.177000000" +"41305601","PALACE OF JAPAN","2","3505","JOHNSON AVENUE","10463","7185438833","49","2010-01-21 13:45:00","U","02B","12","","","2013-09-13 01:01:06.177000000" +"41305601","PALACE OF JAPAN","2","3505","JOHNSON AVENUE","10463","7185438833","49","2011-06-13 00:00:00","G","02G","62","","","2013-09-13 01:01:06.177000000" +"41305601","PALACE OF JAPAN","2","3505","JOHNSON AVENUE","10463","7185438833","49","2011-06-13 00:00:00","G","10H","62","","","2013-09-13 01:01:06.177000000" +"41305601","PALACE OF JAPAN","2","3505","JOHNSON AVENUE","10463","7185438833","49","2011-08-09 00:00:00","D","06A","12","A","2011-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-03-22 00:00:00","U","04L","20","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2011-05-24 00:00:00","P","04C","26","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2013-07-25 00:00:00","F","08A","39","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2013-07-25 00:00:00","F","08B","39","","","2013-09-13 01:01:06.177000000" +"41282487","VINCENT & ANDRE'S PIZZERIA RESTAURANT","4","113-17","JAMAICA AVENUE","11418","7188467070","62","2011-04-07 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41274187","KAGETSU JAPANESE RESTAURANT","3","2004","BATH AVENUE","11214","7184498880","49","2011-01-05 00:00:00","U","04L","17","B","2011-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41274187","KAGETSU JAPANESE RESTAURANT","3","2004","BATH AVENUE","11214","7184498880","49","2012-08-14 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2012-02-07 00:00:00","F","10H","28","","","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2012-08-27 00:00:00","P","06C","26","","","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2012-12-11 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2011-11-15 00:00:00","F","04C","28","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2012-05-01 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2013-07-02 00:00:00","F","04M","73","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2013-07-02 00:00:00","F","10F","73","","","2013-09-13 01:01:06.177000000" +"41312710","CURRY YA","1","214","EAST 10 STREET","10003","2129952877","49","2011-02-07 00:00:00","D","10F","7","A","2011-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2012-04-05 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2012-04-17 00:00:00","D","06E","7","A","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2012-09-25 00:00:00","F","10F","34","","","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2011-03-07 00:00:00","P","04C","15","","","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2012-07-02 00:00:00","D","10F","13","A","2012-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41269115","BISTRO MARKETPLACE & CAFE","1","90","PARK AVENUE","10016","2124901987","27","2011-05-12 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41269115","BISTRO MARKETPLACE & CAFE","1","90","PARK AVENUE","10016","2124901987","27","2011-05-12 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41269115","BISTRO MARKETPLACE & CAFE","1","90","PARK AVENUE","10016","2124901987","27","2011-05-12 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41269115","BISTRO MARKETPLACE & CAFE","1","90","PARK AVENUE","10016","2124901987","27","2011-05-12 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41262936","MICKEY'S PLACE","4","40-17","BELL BOULEVARD","11361","7182248152","49","2011-04-04 00:00:00","D","10F","10","A","2011-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41262936","MICKEY'S PLACE","4","40-17","BELL BOULEVARD","11361","7182248152","49","2012-03-15 00:00:00","F","10F","12","","","2013-09-13 01:01:06.177000000" +"41262936","MICKEY'S PLACE","4","40-17","BELL BOULEVARD","11361","7182248152","49","2012-04-13 00:00:00","D","10F","13","A","2012-04-13 00:00:00","2013-09-13 01:01:06.177000000" +"41262936","MICKEY'S PLACE","4","40-17","BELL BOULEVARD","11361","7182248152","49","2012-09-12 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41262936","MICKEY'S PLACE","4","40-17","BELL BOULEVARD","11361","7182248152","49","2013-05-24 00:00:00","P","09B","21","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2013-05-15 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"41269437","FOUTA FOOD","2","1762","WESTCHESTER AVENUE","10472","7187921700","02","2010-10-05 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41264387","CUENCA COFFEE SHOP RESTAURANT","4","95-29","JAMAICA AVENUE","11421","7188474642","53","2012-04-12 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2011-06-21 00:00:00","G","04M","62","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2011-06-21 00:00:00","G","06E","62","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2011-06-24 00:00:00","W","04K","18","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2011-06-27 00:00:00","O","09A","2","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2012-02-22 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2012-06-05 00:00:00","F","04M","35","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2012-06-05 00:00:00","F","06F","35","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2010-11-30 00:00:00","P","04L","27","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2011-08-22 00:00:00","U","08A","16","B","2011-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-06-19 00:00:00","P","04M","23","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-07-18 00:00:00","G","08A","28","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-06-17 00:00:00","F","09B","34","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-01-26 00:00:00","F","09B","29","C","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-01-26 00:00:00","F","22C","29","C","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2012-02-16 00:00:00","P","06C","20","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2012-03-01 00:00:00","U","08A","19","B","2012-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2013-07-25 00:00:00","F","06C","38","","","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2010-08-27 00:00:00","P","08A","14","","","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2011-06-22 00:00:00","G","04M","51","","","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2011-05-04 00:00:00","U","10F","20","B","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2011-12-21 00:00:00","D","10F","12","A","2011-12-21 00:00:00","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2013-05-22 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2011-06-27 00:00:00","O","06D","2","C","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2011-10-21 00:00:00","D","10B","6","A","2011-10-21 00:00:00","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2012-10-09 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2012-10-09 00:00:00","F","06D","30","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2011-09-13 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2012-04-18 00:00:00","P","06B","16","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2012-12-13 00:00:00","D","02B","12","A","2012-12-13 00:00:00","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2012-12-13 00:00:00","D","06C","12","A","2012-12-13 00:00:00","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2013-05-16 00:00:00","G","04A","61","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2013-05-16 00:00:00","G","06E","61","","","2013-09-13 01:01:06.177000000" +"41278885","SAKURA JAPANESE RESTAURANT 3118","3","3118","AVENUE U","11229","7186460666","49","2010-11-24 00:00:00","C","06F","5","A","2010-11-24 00:00:00","2013-09-13 01:01:06.177000000" +"41278885","SAKURA JAPANESE RESTAURANT 3118","3","3118","AVENUE U","11229","7186460666","49","2011-11-01 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41278885","SAKURA JAPANESE RESTAURANT 3118","3","3118","AVENUE U","11229","7186460666","49","2012-06-04 00:00:00","D","06D","6","A","2012-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41278931","EAST SUSHI BISTRO","3","2106","EAST 19 STREET","11229","7186480800","49","2012-01-09 00:00:00","P","02B","23","","","2013-09-13 01:01:06.177000000" +"41278931","EAST SUSHI BISTRO","3","2106","EAST 19 STREET","11229","7186480800","49","2012-01-09 00:00:00","P","06E","23","","","2013-09-13 01:01:06.177000000" +"41278931","EAST SUSHI BISTRO","3","2106","EAST 19 STREET","11229","7186480800","49","2012-07-02 00:00:00","P","05H","14","","","2013-09-13 01:01:06.177000000" +"41278931","EAST SUSHI BISTRO","3","2106","EAST 19 STREET","11229","7186480800","49","2012-07-02 00:00:00","P","10F","14","","","2013-09-13 01:01:06.177000000" +"41288039","YAMATO JAPANESE CUISINE","4","3323","FRANCIS LEWIS BOULEVARD","11358","7183211508","49","2012-04-05 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41279614","BLUE RIBBON SUSHI BAR & GRILL","1","6","COLUMBUS CIRCLE","10019","2123970404","49","2012-06-07 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"41279614","BLUE RIBBON SUSHI BAR & GRILL","1","6","COLUMBUS CIRCLE","10019","2123970404","49","2012-06-07 00:00:00","P","06E","17","","","2013-09-13 01:01:06.177000000" +"41279614","BLUE RIBBON SUSHI BAR & GRILL","1","6","COLUMBUS CIRCLE","10019","2123970404","49","2013-01-30 00:00:00","F","06F","23","","","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2010-12-23 00:00:00","P","06C","25","","","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2012-06-12 00:00:00","D","10B","12","A","2012-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2012-12-08 00:00:00","P","04M","12","","","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2012-12-08 00:00:00","P","06F","12","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2010-08-06 00:00:00","F","10F","8","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2011-03-04 00:00:00","F","09B","32","C","2011-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2011-05-04 00:00:00","D","10F","13","A","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2012-04-09 00:00:00","F","06C","40","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2012-04-09 00:00:00","F","10B","40","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2012-08-20 00:00:00","F","10B","36","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2012-09-05 00:00:00","U","08A","11","B","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2011-08-03 00:00:00","P","10F","14","","","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2011-09-22 00:00:00","F","02G","32","C","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2012-02-02 00:00:00","U","06E","16","B","2012-02-02 00:00:00","2013-09-13 01:01:06.177000000" +"41289081","MIZU SUSHI","3","192 ","BEDFORD AVENUE ","11249","7187826666","49","2011-09-15 00:00:00","U","06E","8","B","2011-09-15 00:00:00","2013-09-13 01:01:06.177000000" +"41289081","MIZU SUSHI","3","192 ","BEDFORD AVENUE ","11249","7187826666","49","2013-04-17 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2010-09-29 00:00:00","F","04L","30","C","2010-09-29 00:00:00","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2010-09-29 00:00:00","F","06E","30","C","2010-09-29 00:00:00","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2012-09-18 00:00:00","P","06D","23","","","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2013-06-04 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2013-06-04 00:00:00","F","10H","29","","","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2011-07-26 00:00:00","D","06C","12","A","2011-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2010-12-07 00:00:00","P","10B","23","","","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2011-09-01 00:00:00","U","02B","19","B","2011-09-01 00:00:00","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2012-02-22 00:00:00","P","06E","15","","","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2012-02-22 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2012-03-20 00:00:00","U","10H","12","B","2012-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2012-12-15 00:00:00","P","06E","11","","","2013-09-13 01:01:06.177000000" +"41273539","SAPPORO JAPANESE CUISINE","3","7812","3 AVENUE","11209","7187483322","49","2010-06-24 13:55:00","U","08A","12","","","2013-09-13 01:01:06.177000000" +"41273539","SAPPORO JAPANESE CUISINE","3","7812","3 AVENUE","11209","7187483322","49","2011-05-25 00:00:00","P","08C","15","","","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2011-06-10 00:00:00","F","05D","39","","","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2011-12-13 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2012-01-03 00:00:00","F","08C","36","C","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2012-01-03 00:00:00","F","09B","36","C","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41258111","MCDONALD'S","3","2154","NOSTRAND AVENUE","11210","7184344568","39","2012-06-07 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2010-12-20 00:00:00","P","02B","14","","","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2012-07-06 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2012-07-18 00:00:00","U","02G","14","B","2012-07-18 00:00:00","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2011-02-14 00:00:00","D","04K","12","A","2011-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-08-02 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2012-12-19 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-04-11 00:00:00","F","06A","56","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-11-29 00:00:00","F","08C","44","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-11-29 00:00:00","F","10B","44","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2012-05-04 00:00:00","F","09B","36","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2012-06-25 00:00:00","D","06C","10","A","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2012-06-25 00:00:00","D","10F","10","A","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41274187","KAGETSU JAPANESE RESTAURANT","3","2004","BATH AVENUE","11214","7184498880","49","2010-10-09 00:00:00","P","06F","24","","","2013-09-13 01:01:06.177000000" +"41274187","KAGETSU JAPANESE RESTAURANT","3","2004","BATH AVENUE","11214","7184498880","49","2010-10-09 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"41274187","KAGETSU JAPANESE RESTAURANT","3","2004","BATH AVENUE","11214","7184498880","49","2011-01-05 00:00:00","U","04M","17","B","2011-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2013-01-24 00:00:00","D","10F","13","A","2013-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2010-10-21 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2010-10-21 00:00:00","P","10H","21","","","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2011-06-02 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2011-10-05 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2011-08-10 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2011-11-29 00:00:00","P","04C","19","","","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2011-11-29 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2011-12-13 00:00:00","U","04M","5","B","2011-12-13 00:00:00","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2011-10-05 00:00:00","G","04C","55","","","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2011-10-07 00:00:00","O","08A","12","P","2011-10-07 00:00:00","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2012-08-20 00:00:00","U","10F","7","B","2012-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2011-10-24 00:00:00","U","99B","15","B","2011-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2012-03-20 00:00:00","P","09C","8","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-02-15 00:00:00","U","15I","","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-08-20 00:00:00","F","08A","44","","","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2011-10-05 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2012-04-26 00:00:00","D","06C","13","A","2012-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2012-04-26 00:00:00","D","10F","13","A","2012-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2013-04-24 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41282096","PRINCE STREET CAFE & CATERING","1","26","PRINCE STREET","10012","2123437310","03","2012-01-23 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41282487","VINCENT & ANDRE'S PIZZERIA RESTAURANT","4","113-17","JAMAICA AVENUE","11418","7188467070","62","2011-04-07 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41310853","MOCA ASIAN BISTRO","4","107-18","70 ROAD","11375","7182683333","05","2013-05-22 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2010-06-09 19:03:00","U","10M","17","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2011-06-13 00:00:00","U","10F","24","B","2011-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2012-08-29 00:00:00","U","06C","10","B","2012-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2011-03-29 00:00:00","P","04K","24","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2011-04-26 00:00:00","D","08A","13","A","2011-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2012-02-22 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41269437","FOUTA FOOD","2","1762","WESTCHESTER AVENUE","10472","7187921700","02","2010-10-05 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41320193","KAWAII SUSHI","4","82-19","153 AVENUE","11414","7188486888","49","2010-12-09 00:00:00","F","04L","33","","","2013-09-13 01:01:06.177000000" +"41320193","KAWAII SUSHI","4","82-19","153 AVENUE","11414","7188486888","49","2010-12-09 00:00:00","F","10F","33","","","2013-09-13 01:01:06.177000000" +"41320193","KAWAII SUSHI","4","82-19","153 AVENUE","11414","7188486888","49","2011-06-22 00:00:00","D","02G","13","A","2011-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"41320193","KAWAII SUSHI","4","82-19","153 AVENUE","11414","7188486888","49","2012-05-30 00:00:00","D","06D","12","A","2012-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2011-05-09 00:00:00","F","04M","58","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2011-05-09 00:00:00","F","06F","58","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2011-05-25 00:00:00","U","02B","21","B","2011-05-25 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2011-11-16 00:00:00","F","04M","32","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2013-04-26 00:00:00","G","08C","44","","","2013-09-13 01:01:06.177000000" +"41320931","RICH VILLAGE RESTAURANT","3","6009","7 AVENUE","11220","7182388628","20","2011-04-26 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2011-05-24 00:00:00","P","06B","26","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2011-05-24 00:00:00","P","10H","26","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2012-08-06 00:00:00","D","04C","12","A","2012-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2011-06-20 00:00:00","P","06E","18","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2011-06-20 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2013-01-30 00:00:00","D","10F","13","A","2013-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2013-07-02 00:00:00","F","04H","73","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2013-07-02 00:00:00","F","10J","73","","","2013-09-13 01:01:06.177000000" +"41292992","KOUZAN","1","685","AMSTERDAM AVENUE","10025","2122808099","49","2011-02-24 00:00:00","F","04H","37","","","2013-09-13 01:01:06.177000000" +"41262775","KELLY'S","1","12","AVENUE A","10009","2123881464","47","2010-10-05 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2010-12-18 00:00:00","U","09C","24","B","2010-12-18 00:00:00","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2012-02-22 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2012-03-06 00:00:00","U","09B","10","B","2012-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2012-12-12 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2010-01-15 13:58:00","U","04N","15","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2011-06-23 00:00:00","W","04M","12","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2012-06-29 00:00:00","U","06E","14","B","2012-06-29 00:00:00","2013-09-13 01:01:06.177000000" +"41312710","CURRY YA","1","214","EAST 10 STREET","10003","2129952877","49","2011-01-31 00:00:00","F","05D","20","","","2013-09-13 01:01:06.177000000" +"41312710","CURRY YA","1","214","EAST 10 STREET","10003","2129952877","49","2011-10-24 00:00:00","D","10B","4","A","2011-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41262936","MICKEY'S PLACE","4","40-17","BELL BOULEVARD","11361","7182248152","49","2012-04-13 00:00:00","D","10H","13","A","2012-04-13 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2010-11-30 00:00:00","P","10F","27","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2011-08-11 00:00:00","F","02B","65","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2011-12-14 00:00:00","G","02G","52","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2011-12-14 00:00:00","G","04K","52","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-06-19 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-11-14 00:00:00","P","06F","17","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2010-12-14 00:00:00","F","02G","43","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-01-26 00:00:00","F","10B","29","C","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-06-13 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-07-06 00:00:00","F","02G","22","C","2011-07-06 00:00:00","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-07-06 00:00:00","F","99B","22","C","2011-07-06 00:00:00","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-11-19 00:00:00","G","02G","63","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-11-19 00:00:00","G","06E","63","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-11-19 00:00:00","G","10H","63","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-11-25 00:00:00","O","10F","5","P","2011-11-25 00:00:00","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2012-02-16 00:00:00","P","10B","20","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2012-11-27 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2013-07-25 00:00:00","F","06D","38","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2013-07-25 00:00:00","F","06E","38","","","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2011-10-21 00:00:00","D","10H","6","A","2011-10-21 00:00:00","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2012-10-09 00:00:00","F","06C","30","","","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2012-10-22 00:00:00","U","02B","17","B","2012-10-22 00:00:00","2013-09-13 01:01:06.177000000" +"41278885","SAKURA JAPANESE RESTAURANT 3118","3","3118","AVENUE U","11229","7186460666","49","2011-11-01 00:00:00","P","06A","23","","","2013-09-13 01:01:06.177000000" +"41278885","SAKURA JAPANESE RESTAURANT 3118","3","3118","AVENUE U","11229","7186460666","49","2013-06-03 00:00:00","P","04M","20","","","2013-09-13 01:01:06.177000000" +"41278931","EAST SUSHI BISTRO","3","2106","EAST 19 STREET","11229","7186480800","49","2012-01-09 00:00:00","P","06C","23","","","2013-09-13 01:01:06.177000000" +"41278931","EAST SUSHI BISTRO","3","2106","EAST 19 STREET","11229","7186480800","49","2012-02-14 00:00:00","D","02G","13","A","2012-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41278931","EAST SUSHI BISTRO","3","2106","EAST 19 STREET","11229","7186480800","49","2012-02-14 00:00:00","D","06D","13","A","2012-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41278931","EAST SUSHI BISTRO","3","2106","EAST 19 STREET","11229","7186480800","49","2012-07-02 00:00:00","P","08C","14","","","2013-09-13 01:01:06.177000000" +"41285411","MIKE'S CAFETERIA","3","2556","MCDONALD AVENUE","11223","7189092456","03","2010-03-26 09:22:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2011-03-03 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2011-08-26 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2012-04-18 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2012-10-10 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2012-10-10 00:00:00","F","10F","31","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2012-12-03 00:00:00","F","10F","23","C","2012-12-03 00:00:00","2013-09-13 01:01:06.177000000" +"41279614","BLUE RIBBON SUSHI BAR & GRILL","1","6","COLUMBUS CIRCLE","10019","2123970404","49","2012-06-20 00:00:00","D","10B","12","A","2012-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41279614","BLUE RIBBON SUSHI BAR & GRILL","1","6","COLUMBUS CIRCLE","10019","2123970404","49","2013-01-30 00:00:00","F","02G","23","","","2013-09-13 01:01:06.177000000" +"41279614","BLUE RIBBON SUSHI BAR & GRILL","1","6","COLUMBUS CIRCLE","10019","2123970404","49","2013-01-30 00:00:00","F","04H","23","","","2013-09-13 01:01:06.177000000" +"41264387","CUENCA COFFEE SHOP RESTAURANT","4","95-29","JAMAICA AVENUE","11421","7188474642","53","2012-04-12 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41324332","FUJIYAMA JAPANESE CUISINE","3","7307","13 AVENUE","11228","7182568186","49","2012-09-26 00:00:00","F","04H","28","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2011-10-06 00:00:00","U","06A","17","B","2011-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2011-10-06 00:00:00","U","08A","17","B","2011-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2012-05-02 00:00:00","U","08A","13","B","2012-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2012-11-28 00:00:00","F","08C","42","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2013-05-16 00:00:00","G","02B","61","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2013-05-16 00:00:00","G","04M","61","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2013-05-16 00:00:00","G","06F","61","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2013-05-16 00:00:00","G","08A","61","","","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2010-12-07 00:00:00","P","06F","23","","","2013-09-13 01:01:06.177000000" +"41324332","FUJIYAMA JAPANESE CUISINE","3","7307","13 AVENUE","11228","7182568186","49","2012-09-26 00:00:00","F","09B","28","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2011-03-04 00:00:00","F","08A","32","C","2011-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2012-04-09 00:00:00","F","04N","40","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2012-08-20 00:00:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2012-08-20 00:00:00","F","04H","36","","","2013-09-13 01:01:06.177000000" +"41288039","YAMATO JAPANESE CUISINE","4","3323","FRANCIS LEWIS BOULEVARD","11358","7183211508","49","2010-08-18 00:00:00","P","06D","12","","","2013-09-13 01:01:06.177000000" +"41288039","YAMATO JAPANESE CUISINE","4","3323","FRANCIS LEWIS BOULEVARD","11358","7183211508","49","2011-04-21 00:00:00","D","06D","7","A","2011-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"41288039","YAMATO JAPANESE CUISINE","4","3323","FRANCIS LEWIS BOULEVARD","11358","7183211508","49","2012-04-05 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2011-08-16 00:00:00","P","06D","24","","","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2011-08-16 00:00:00","P","10H","24","","","2013-09-13 01:01:06.177000000" +"41273539","SAPPORO JAPANESE CUISINE","3","7812","3 AVENUE","11209","7187483322","49","2011-05-25 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41273539","SAPPORO JAPANESE CUISINE","3","7812","3 AVENUE","11209","7187483322","49","2011-06-30 00:00:00","U","08A","12","B","2011-06-30 00:00:00","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2011-04-07 00:00:00","P","06C","17","","","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2013-05-15 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"41325606","NEW SUSHI Q JAPANESE RESTAURANT","2","1610","CROSBY AVE","10461","7188221627","49","2013-03-19 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2010-10-21 00:00:00","P","04C","21","","","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2010-11-24 00:00:00","U","10B","9","B","2010-11-24 00:00:00","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2010-11-24 00:00:00","U","22C","9","B","2010-11-24 00:00:00","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2011-06-29 00:00:00","D","02G","12","A","2011-06-29 00:00:00","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2012-04-26 00:00:00","D","10B","13","A","2012-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"41282096","PRINCE STREET CAFE & CATERING","1","26","PRINCE STREET","10012","2123437310","03","2012-01-23 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2010-09-10 00:00:00","P","10F","10","","","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2012-07-02 00:00:00","D","04M","13","A","2012-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41289081","MIZU SUSHI","3","192 ","BEDFORD AVENUE ","11249","7187826666","49","2011-08-30 00:00:00","P","04N","16","","","2013-09-13 01:01:06.177000000" +"41289081","MIZU SUSHI","3","192 ","BEDFORD AVENUE ","11249","7187826666","49","2013-04-17 00:00:00","P","10B","15","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2010-09-15 00:00:00","P","06A","19","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-05-02 00:00:00","F","03B","57","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-05-02 00:00:00","F","10F","57","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-05-20 00:00:00","U","06F","15","B","2011-05-20 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-09-15 00:00:00","F","02B","51","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-09-15 00:00:00","F","04L","51","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-09-29 00:00:00","U","02G","22","B","2011-09-29 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2012-01-12 00:00:00","F","02B","32","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2012-02-27 00:00:00","F","16A","","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-02-07 00:00:00","F","02B","31","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-02-07 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-03-22 00:00:00","U","06D","20","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-08-02 00:00:00","F","06D","28","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-08-13 00:00:00","F","02G","40","C","2012-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-08-13 00:00:00","F","06E","40","C","2012-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2012-01-06 00:00:00","U","06C","19","B","2012-01-06 00:00:00","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2012-07-17 00:00:00","D","08C","9","A","2012-07-17 00:00:00","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2011-03-30 00:00:00","U","10F","21","B","2011-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2011-09-20 00:00:00","D","06C","5","A","2011-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2012-10-22 00:00:00","U","06C","19","B","2012-10-22 00:00:00","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2013-06-04 00:00:00","F","06D","29","","","2013-09-13 01:01:06.177000000" +"41327047","GOLDEN RING","3","595","BEDFORD AVENUE","11211","7183846577","50","2011-06-14 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41290200","TASTY DUMPLING","1","54","MULBERRY STREET","10013","2123490700","20","2010-09-29 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41290200","TASTY DUMPLING","1","54","MULBERRY STREET","10013","2123490700","20","2010-09-29 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2010-10-19 00:00:00","P","06E","18","","","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2010-11-22 00:00:00","U","06B","12","B","2010-11-22 00:00:00","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2011-07-26 00:00:00","D","04H","12","A","2011-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2010-04-20 13:33:00","D","10G","4","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-04-11 00:00:00","F","06C","56","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-11-29 00:00:00","F","04L","44","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-11-29 00:00:00","F","06D","44","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2012-05-04 00:00:00","F","04C","36","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2012-05-04 00:00:00","F","09C","36","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2012-06-25 00:00:00","D","10A","10","A","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2011-12-20 00:00:00","U","02B","21","B","2011-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2011-12-20 00:00:00","U","04M","21","B","2011-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2012-07-02 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2012-08-28 00:00:00","F","04L","18","C","2012-08-28 00:00:00","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2012-08-28 00:00:00","F","06A","18","C","2012-08-28 00:00:00","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2013-05-14 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41328227","GUANG ZHOU CHINESE RESTAURANT","3","318","KINGS HIGHWAY","11223","7187879516","20","2012-04-24 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41328227","GUANG ZHOU CHINESE RESTAURANT","3","318","KINGS HIGHWAY","11223","7187879516","20","2012-04-24 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41328227","GUANG ZHOU CHINESE RESTAURANT","3","318","KINGS HIGHWAY","11223","7187879516","20","2012-04-24 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2011-03-17 00:00:00","D","10F","12","A","2011-03-17 00:00:00","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2011-10-05 00:00:00","G","04K","55","","","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2011-10-05 00:00:00","G","08A","55","","","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2011-10-05 00:00:00","G","99B","55","","","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2011-11-07 00:00:00","U","02G","26","B","2011-11-07 00:00:00","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2012-03-07 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2012-03-29 00:00:00","D","10F","9","A","2012-03-29 00:00:00","2013-09-13 01:01:06.177000000" +"41285411","MIKE'S CAFETERIA","3","2556","MCDONALD AVENUE","11223","7189092456","03","2010-03-26 09:22:00","F","04I","49","","","2013-09-13 01:01:06.177000000" +"41285411","MIKE'S CAFETERIA","3","2556","MCDONALD AVENUE","11223","7189092456","03","2010-03-26 09:22:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2011-08-31 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2011-08-31 00:00:00","F","10I","29","","","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2011-10-12 00:00:00","F","06E","46","C","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2012-04-05 00:00:00","F","04C","25","","","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2012-04-05 00:00:00","F","09C","25","","","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2012-04-05 00:00:00","F","10F","25","","","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2012-05-03 00:00:00","U","02G","18","B","2012-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2012-10-02 00:00:00","D","10B","7","A","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41269115","BISTRO MARKETPLACE & CAFE","1","90","PARK AVENUE","10016","2124901987","27","2011-05-12 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41269115","BISTRO MARKETPLACE & CAFE","1","90","PARK AVENUE","10016","2124901987","27","2011-05-12 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41299007","JIVAMUKTEA CAFE","1","841","BROADWAY","10003","2123530214","84","2011-02-14 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2010-08-25 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2011-03-24 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2010-01-15 13:58:00","U","04M","15","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2011-01-05 00:00:00","U","22C","18","B","2011-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2011-06-21 00:00:00","G","04K","62","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2011-06-21 00:00:00","G","10B","62","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2011-06-24 00:00:00","W","04M","18","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2011-06-24 00:00:00","W","10F","18","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2012-03-08 00:00:00","F","08A","33","C","2012-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2012-03-22 00:00:00","F","02B","22","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2012-03-22 00:00:00","F","04M","22","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2012-03-22 00:00:00","F","10B","22","","","2013-09-13 01:01:06.177000000" +"41320193","KAWAII SUSHI","4","82-19","153 AVENUE","11414","7188486888","49","2010-12-09 00:00:00","F","04A","33","","","2013-09-13 01:01:06.177000000" +"41320193","KAWAII SUSHI","4","82-19","153 AVENUE","11414","7188486888","49","2011-06-22 00:00:00","D","10F","13","A","2011-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2012-02-06 00:00:00","D","04L","13","A","2012-02-06 00:00:00","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2012-08-01 00:00:00","P","06C","20","","","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2012-08-29 00:00:00","U","04C","20","B","2012-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41278885","SAKURA JAPANESE RESTAURANT 3118","3","3118","AVENUE U","11229","7186460666","49","2011-11-01 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"41278885","SAKURA JAPANESE RESTAURANT 3118","3","3118","AVENUE U","11229","7186460666","49","2011-12-01 00:00:00","U","02G","27","B","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41278931","EAST SUSHI BISTRO","3","2106","EAST 19 STREET","11229","7186480800","49","2010-12-07 00:00:00","C","06E","12","A","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2010-10-04 00:00:00","P","06D","27","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2010-10-04 00:00:00","P","06E","27","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2011-09-21 00:00:00","F","10F","35","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2012-01-10 00:00:00","F","06E","34","C","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2012-05-29 00:00:00","U","06F","23","B","2012-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41279614","BLUE RIBBON SUSHI BAR & GRILL","1","6","COLUMBUS CIRCLE","10019","2123970404","49","2012-06-20 00:00:00","D","02G","12","A","2012-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2011-04-04 00:00:00","F","06A","40","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2011-09-13 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2011-10-06 00:00:00","U","04L","17","B","2011-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2010-11-17 00:00:00","P","06D","20","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2010-12-10 00:00:00","C","08A","13","A","2010-12-10 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2012-04-05 00:00:00","P","04L","16","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2012-04-05 00:00:00","P","06E","16","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2010-11-30 00:00:00","P","04H","27","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2010-11-30 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2010-12-30 00:00:00","U","04K","18","B","2010-12-30 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-06-19 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-07-18 00:00:00","G","04N","28","","","2013-09-13 01:01:06.177000000" +"41292992","KOUZAN","1","685","AMSTERDAM AVENUE","10025","2122808099","49","2011-02-24 00:00:00","F","99B","37","","","2013-09-13 01:01:06.177000000" +"41292992","KOUZAN","1","685","AMSTERDAM AVENUE","10025","2122808099","49","2013-08-20 00:00:00","F","10B","42","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2012-11-28 00:00:00","F","04A","42","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2012-11-28 00:00:00","F","06D","42","","","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2010-12-18 00:00:00","U","10B","24","B","2010-12-18 00:00:00","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2012-02-22 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2012-02-22 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-01-16 00:00:00","F","06F","38","C","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-01-26 00:00:00","F","04L","29","C","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-06-13 00:00:00","F","06F","32","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2012-03-01 00:00:00","U","10F","19","B","2012-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2012-11-27 00:00:00","P","06C","25","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2012-11-27 00:00:00","P","10B","25","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2013-07-25 00:00:00","F","04C","38","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2013-07-25 00:00:00","F","10F","38","","","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2012-10-09 00:00:00","F","04M","30","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-04-28 00:00:00","F","04L","40","C","2011-04-28 00:00:00","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-04-28 00:00:00","F","08A","40","C","2011-04-28 00:00:00","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-09-08 00:00:00","F","10B","35","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2012-02-15 00:00:00","F","06E","28","C","2012-02-15 00:00:00","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2012-08-31 00:00:00","F","04L","55","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2012-08-31 00:00:00","F","08A","55","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2012-08-31 00:00:00","F","09C","55","","","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2012-12-15 00:00:00","P","06F","11","","","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2013-01-08 00:00:00","D","02G","13","A","2013-01-08 00:00:00","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2013-01-08 00:00:00","D","10H","13","A","2013-01-08 00:00:00","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2013-06-28 00:00:00","F","04C","33","","","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2011-11-30 00:00:00","D","08C","12","A","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2010-08-23 00:00:00","U","02B","7","B","2010-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2011-02-10 00:00:00","F","04L","71","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2011-03-04 00:00:00","F","02B","32","C","2011-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2011-03-04 00:00:00","F","06C","32","C","2011-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2011-05-04 00:00:00","D","05D","13","A","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2012-04-09 00:00:00","F","08A","40","","","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2010-10-21 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2010-10-21 00:00:00","P","09C","21","","","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2011-06-29 00:00:00","D","10B","12","A","2011-06-29 00:00:00","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2013-04-24 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"41282096","PRINCE STREET CAFE & CATERING","1","26","PRINCE STREET","10012","2123437310","03","2012-01-23 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41323539","DI-ELLE'S RESTAURANT","2","801","SOUTHERN BOULEVARD","10459","7183784243","03","2012-03-28 00:00:00","F","08A","49","C","2012-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41324332","FUJIYAMA JAPANESE CUISINE","3","7307","13 AVENUE","11228","7182568186","49","2011-10-12 00:00:00","D","06E","12","A","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41324332","FUJIYAMA JAPANESE CUISINE","3","7307","13 AVENUE","11228","7182568186","49","2012-09-26 00:00:00","F","04M","28","","","2013-09-13 01:01:06.177000000" +"41324332","FUJIYAMA JAPANESE CUISINE","3","7307","13 AVENUE","11228","7182568186","49","2013-05-11 00:00:00","P","04M","21","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2012-08-20 00:00:00","F","09C","36","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2012-08-20 00:00:00","F","10D","36","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2012-09-05 00:00:00","U","04N","11","B","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41290200","TASTY DUMPLING","1","54","MULBERRY STREET","10013","2123490700","20","2010-09-29 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41302781","TRATTORIA IL MULINO","1","36","EAST 20 STREET","10003","2127778448","48","2013-08-28 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41273539","SAPPORO JAPANESE CUISINE","3","7812","3 AVENUE","11209","7187483322","49","2010-06-24 13:55:00","U","04M","12","","","2013-09-13 01:01:06.177000000" +"41273539","SAPPORO JAPANESE CUISINE","3","7812","3 AVENUE","11209","7187483322","49","2011-12-09 00:00:00","P","04J","20","","","2013-09-13 01:01:06.177000000" +"41273539","SAPPORO JAPANESE CUISINE","3","7812","3 AVENUE","11209","7187483322","49","2012-06-23 00:00:00","D","06C","12","A","2012-06-23 00:00:00","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2010-11-08 00:00:00","C","06C","12","A","2010-11-08 00:00:00","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2011-11-03 00:00:00","F","06C","40","","","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2011-11-03 00:00:00","F","10F","40","","","2013-09-13 01:01:06.177000000" +"41325606","NEW SUSHI Q JAPANESE RESTAURANT","2","1610","CROSBY AVE","10461","7188221627","49","2011-09-22 00:00:00","P","06A","24","","","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2011-10-05 00:00:00","G","02G","55","","","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2011-11-07 00:00:00","U","03C","26","B","2011-11-07 00:00:00","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2012-03-07 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41274187","KAGETSU JAPANESE RESTAURANT","3","2004","BATH AVENUE","11214","7184498880","49","2011-01-05 00:00:00","U","08A","17","B","2011-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41297009","ADJ COFFEE SHOP","3","1","BROOKDALE PLAZA","11212","7183458964","14","2009-10-20 15:39:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2012-03-07 00:00:00","F","10H","31","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2011-01-14 00:00:00","F","99B","20","C","2011-01-14 00:00:00","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2011-06-16 00:00:00","F","04M","48","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2011-06-16 00:00:00","F","08A","48","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2011-12-22 00:00:00","P","10F","9","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2012-01-06 00:00:00","U","02B","19","B","2012-01-06 00:00:00","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2012-07-17 00:00:00","D","10F","9","A","2012-07-17 00:00:00","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2013-07-06 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2013-07-06 00:00:00","F","10H","29","","","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2010-09-20 00:00:00","C","06C","13","A","2010-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2011-03-21 00:00:00","D","10F","10","A","2011-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2011-08-10 00:00:00","P","04J","24","","","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2011-08-10 00:00:00","P","10F","24","","","2013-09-13 01:01:06.177000000" +"41336198","ZEMI ASIAN BISTRO","1","130","9 AVENUE","10011","2129246950","05","2011-09-06 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41327047","GOLDEN RING","3","595","BEDFORD AVENUE","11211","7183846577","50","2011-06-14 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41327109","SAKURA","3","2832","CONEY ISLAND AVE","11235","7186488880","49","2012-09-29 00:00:00","P","06C","24","","","2013-09-13 01:01:06.177000000" +"41327109","SAKURA","3","2832","CONEY ISLAND AVE","11235","7186488880","49","2013-06-01 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41297009","ADJ COFFEE SHOP","3","1","BROOKDALE PLAZA","11212","7183458964","14","2009-10-20 15:39:00","F","04K","49","","","2013-09-13 01:01:06.177000000" +"41297009","ADJ COFFEE SHOP","3","1","BROOKDALE PLAZA","11212","7183458964","14","2009-10-20 15:39:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2010-09-15 00:00:00","P","04N","19","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2010-09-15 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2010-09-15 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-05-02 00:00:00","F","02B","57","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-05-02 00:00:00","F","04N","57","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-05-02 00:00:00","F","08A","57","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-09-15 00:00:00","F","02G","51","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-09-15 00:00:00","F","03B","51","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-09-15 00:00:00","F","04M","51","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-09-29 00:00:00","U","10B","22","B","2011-09-29 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2012-08-07 00:00:00","F","02B","37","C","2012-08-07 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2012-08-07 00:00:00","F","04M","37","C","2012-08-07 00:00:00","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2011-06-27 00:00:00","U","06E","14","B","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2012-01-04 00:00:00","D","06C","13","A","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2012-01-04 00:00:00","D","10B","13","A","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2013-01-15 00:00:00","U","04L","10","B","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2013-07-15 00:00:00","P","05D","27","","","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2013-07-15 00:00:00","P","10F","27","","","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2011-03-31 00:00:00","P","06C","24","","","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2011-05-10 00:00:00","U","05D","20","B","2011-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2012-07-26 00:00:00","F","06C","29","C","2012-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41327485","Garden City Deli","1","607","9 AVENUE","10036","2129740574","27","2013-02-27 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41327485","Garden City Deli","1","607","9 AVENUE","10036","2129740574","27","2013-02-27 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41285411","MIKE'S CAFETERIA","3","2556","MCDONALD AVENUE","11223","7189092456","03","2010-03-26 09:22:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41328227","GUANG ZHOU CHINESE RESTAURANT","3","318","KINGS HIGHWAY","11223","7187879516","20","2012-04-24 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2011-11-22 00:00:00","P","10B","23","","","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2012-07-02 00:00:00","F","06F","30","","","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2012-08-28 00:00:00","F","09B","18","C","2012-08-28 00:00:00","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2013-03-08 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"41292992","KOUZAN","1","685","AMSTERDAM AVENUE","10025","2122808099","49","2011-08-24 00:00:00","D","10F","10","A","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-05-11 19:26:00","F","10G","46","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-06-04 11:14:00","U","10G","11","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-09-22 00:00:00","F","04M","36","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-09-22 00:00:00","F","10F","36","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-11-24 00:00:00","U","04M","23","B","2010-11-24 00:00:00","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-11-24 00:00:00","U","10F","23","B","2010-11-24 00:00:00","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2011-05-10 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2011-08-31 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2011-10-12 00:00:00","F","04A","46","C","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2012-05-03 00:00:00","U","02B","18","B","2012-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2011-10-19 00:00:00","F","06A","30","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2011-10-19 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-03-13 00:00:00","F","02B","27","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-03-22 00:00:00","G","04C","52","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2013-03-09 00:00:00","G","10J","39","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2013-09-11 00:00:00","G","04N","52","","","2013-09-13 01:01:06.177000000" +"41305601","PALACE OF JAPAN","2","3505","JOHNSON AVENUE","10463","7185438833","49","2010-01-21 13:45:00","U","06F","12","","","2013-09-13 01:01:06.177000000" +"41305601","PALACE OF JAPAN","2","3505","JOHNSON AVENUE","10463","7185438833","49","2011-06-13 00:00:00","G","04C","62","","","2013-09-13 01:01:06.177000000" +"41305601","PALACE OF JAPAN","2","3505","JOHNSON AVENUE","10463","7185438833","49","2011-06-13 00:00:00","G","04M","62","","","2013-09-13 01:01:06.177000000" +"41305601","PALACE OF JAPAN","2","3505","JOHNSON AVENUE","10463","7185438833","49","2011-12-13 00:00:00","D","10F","11","A","2011-12-13 00:00:00","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2010-01-15 13:58:00","U","08A","15","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2010-12-09 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2012-02-22 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2012-03-08 00:00:00","F","04M","33","C","2012-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2012-06-05 00:00:00","F","02B","35","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2012-06-29 00:00:00","U","08C","14","B","2012-06-29 00:00:00","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2011-08-18 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2011-08-29 00:00:00","U","08A","24","B","2011-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2012-03-08 00:00:00","D","04N","9","A","2012-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2012-03-08 00:00:00","D","08A","9","A","2012-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41293804","LOKAL","3","905","LORIMER STREET","11222","7183846777","03","2012-02-09 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41293804","LOKAL","3","905","LORIMER STREET","11222","7183846777","03","2012-02-09 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2012-09-24 00:00:00","U","09B","24","B","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2011-04-04 00:00:00","F","04L","40","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2011-04-04 00:00:00","F","10D","40","","","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2011-09-22 00:00:00","D","10B","13","A","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2012-08-01 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2010-04-02 23:05:00","U","02B","21","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2010-10-04 00:00:00","P","04L","27","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2011-06-29 00:00:00","G","04M","72","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2011-07-01 00:00:00","O","04L","10","P","2011-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2011-09-21 00:00:00","F","04K","35","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2011-09-21 00:00:00","F","08A","35","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2011-09-21 00:00:00","F","10B","35","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41278885","SAKURA JAPANESE RESTAURANT 3118","3","3118","AVENUE U","11229","7186460666","49","2013-06-03 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"41278885","SAKURA JAPANESE RESTAURANT 3118","3","3118","AVENUE U","11229","7186460666","49","2013-06-03 00:00:00","P","10H","20","","","2013-09-13 01:01:06.177000000" +"41278931","EAST SUSHI BISTRO","3","2106","EAST 19 STREET","11229","7186480800","49","2012-01-09 00:00:00","P","06B","23","","","2013-09-13 01:01:06.177000000" +"41288039","YAMATO JAPANESE CUISINE","4","3323","FRANCIS LEWIS BOULEVARD","11358","7183211508","49","2012-04-05 00:00:00","P","04M","22","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2011-12-20 00:00:00","P","10B","17","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2012-01-10 00:00:00","F","04L","34","C","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2012-01-10 00:00:00","F","06F","34","C","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2012-05-16 00:00:00","P","06D","14","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2013-02-14 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2013-02-14 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41342422","DON PICHON RESTAURANT","2","359","SOUTHERN BOULEVARD","10454","7187422776","53","2011-08-08 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-09-08 00:00:00","F","04L","35","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-09-08 00:00:00","F","06D","35","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-09-21 00:00:00","F","06A","21","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2012-09-20 00:00:00","U","10F","17","B","2012-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2010-05-10 16:13:00","F","06D","32","","","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2010-05-10 16:13:00","F","10K","32","","","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2010-06-03 11:01:00","G","02G","70","","","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2010-06-07 12:04:00","O","10G","3","","","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2011-11-30 00:00:00","D","10B","12","A","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41306692","FUJI","1","455","MAIN STREET","10044","2125831688","49","2010-12-30 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2010-12-07 00:00:00","P","02B","23","","","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2011-02-09 00:00:00","U","08A","4","B","2011-02-09 00:00:00","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2011-08-16 00:00:00","P","10F","24","","","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2012-03-20 00:00:00","U","04C","12","B","2012-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2013-06-28 00:00:00","F","02G","33","","","2013-09-13 01:01:06.177000000" +"41289081","MIZU SUSHI","3","192 ","BEDFORD AVENUE ","11249","7187826666","49","2013-04-17 00:00:00","P","08A","15","","","2013-09-13 01:01:06.177000000" +"41343921","KOUROS BAY DINER","3","3861","NOSTRAND AVENUE","11235","7187435777","03","2011-06-10 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41343921","KOUROS BAY DINER","3","3861","NOSTRAND AVENUE","11235","7187435777","03","2011-06-10 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41301266","VIVI","1","248","EAST 52 STREET","10022","2128266880","49","2012-05-29 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"41301266","VIVI","1","248","EAST 52 STREET","10022","2128266880","49","2012-05-29 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41297009","ADJ COFFEE SHOP","3","1","BROOKDALE PLAZA","11212","7183458964","14","2009-10-20 15:39:00","F","04I","49","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2012-04-26 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2012-08-07 00:00:00","F","04B","37","C","2012-08-07 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2013-02-21 00:00:00","P","06C","14","","","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2011-06-02 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41345086","BAKERY RZESZOWSKA","3","948","MANHATTAN AVENUE","11222","7183838142","08","2013-06-11 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2011-04-09 00:00:00","P","04H","16","","","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2011-05-04 00:00:00","U","06D","20","B","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2011-11-15 00:00:00","P","04H","24","","","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2011-12-21 00:00:00","F","15J","","","","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2012-05-18 00:00:00","U","04H","22","B","2012-05-18 00:00:00","2013-09-13 01:01:06.177000000" +"41282096","PRINCE STREET CAFE & CATERING","1","26","PRINCE STREET","10012","2123437310","03","2012-01-23 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2011-08-16 00:00:00","F","10A","42","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2013-03-25 00:00:00","F","06C","43","","","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2011-10-05 00:00:00","G","06C","55","","","2013-09-13 01:01:06.177000000" +"41297604","TUTTA PASTA","3","160","7 AVENUE","11215","7187889500","48","2011-11-25 00:00:00","G","10H","49","","","2013-09-13 01:01:06.177000000" +"41282487","VINCENT & ANDRE'S PIZZERIA RESTAURANT","4","113-17","JAMAICA AVENUE","11418","7188467070","62","2011-04-07 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41282487","VINCENT & ANDRE'S PIZZERIA RESTAURANT","4","113-17","JAMAICA AVENUE","11418","7188467070","62","2011-04-07 00:00:00","F","20F","49","","","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2012-01-23 00:00:00","F","04L","17","C","2012-01-23 00:00:00","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2012-06-09 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41302781","TRATTORIA IL MULINO","1","36","EAST 20 STREET","10003","2127778448","48","2013-08-28 00:00:00","F","10J","49","","","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2011-04-05 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2011-12-20 00:00:00","U","06E","21","B","2011-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2011-12-20 00:00:00","U","08A","21","B","2011-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2012-07-02 00:00:00","F","06C","30","","","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2012-06-09 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2013-03-28 00:00:00","F","04L","14","","","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2013-04-17 00:00:00","D","10F","12","A","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2013-09-06 00:00:00","G","04L","50","","","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2011-01-26 00:00:00","D","99B","10","A","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2011-06-06 00:00:00","D","04C","11","A","2011-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2011-06-06 00:00:00","D","10F","11","A","2011-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2012-05-30 00:00:00","P","06D","20","","","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2012-05-30 00:00:00","P","09B","20","","","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2013-07-05 00:00:00","F","06A","55","","","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2013-07-05 00:00:00","F","09C","55","","","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2011-03-31 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2011-03-31 00:00:00","P","10B","24","","","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2012-07-09 00:00:00","F","04A","32","","","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2012-07-09 00:00:00","F","04O","32","","","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2012-07-26 00:00:00","F","10B","29","C","2012-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2013-04-10 00:00:00","P","06B","21","","","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2010-09-30 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2011-08-03 00:00:00","P","04L","14","","","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2012-01-18 00:00:00","P","08B","21","","","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2012-02-02 00:00:00","U","06A","16","B","2012-02-02 00:00:00","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2012-08-24 00:00:00","D","10F","11","A","2012-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2010-09-14 00:00:00","D","10F","9","A","2010-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2011-08-31 00:00:00","F","04L","29","","","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2012-05-03 00:00:00","U","10F","18","B","2012-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2013-05-11 00:00:00","P","10D","27","","","2013-09-13 01:01:06.177000000" +"41298790","SERAFINA AT THE TIME HOTEL","1","224","WEST 49 STREET","10019","2122471000","48","2010-08-25 00:00:00","G","04C","49","","","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2010-08-25 00:00:00","P","22C","22","","","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2011-08-29 00:00:00","U","02G","24","B","2011-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2012-08-08 00:00:00","D","04C","7","A","2012-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2011-08-25 00:00:00","F","04C","40","","","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2011-08-11 00:00:00","U","02G","10","B","2011-08-11 00:00:00","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2012-01-03 00:00:00","F","06C","36","C","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2012-06-14 00:00:00","D","06C","12","A","2012-06-14 00:00:00","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2012-12-04 00:00:00","P","06E","10","","","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2013-01-24 00:00:00","D","06D","13","A","2013-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2011-05-19 00:00:00","P","04H","24","","","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2012-01-04 00:00:00","D","10F","13","A","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2012-06-12 00:00:00","D","06D","13","A","2012-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2012-06-12 00:00:00","D","06E","13","A","2012-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2012-06-12 00:00:00","D","10F","13","A","2012-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2012-11-23 00:00:00","F","06C","29","","","2013-09-13 01:01:06.177000000" +"41285411","MIKE'S CAFETERIA","3","2556","MCDONALD AVENUE","11223","7189092456","03","2010-03-26 09:22:00","F","10C","49","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2010-10-25 00:00:00","U","02G","13","B","2010-10-25 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2010-10-25 00:00:00","U","99B","13","B","2010-10-25 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2011-06-29 00:00:00","G","99B","72","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2012-05-16 00:00:00","P","02B","14","","","2013-09-13 01:01:06.177000000" +"41292992","KOUZAN","1","685","AMSTERDAM AVENUE","10025","2122808099","49","2011-08-24 00:00:00","D","04C","10","A","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41310577","ASHBY'S","1","64","WEST 22 STREET","10010","2122287993","03","2012-12-06 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2010-06-30 08:57:00","D","10G","7","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2010-12-16 00:00:00","F","06E","46","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2011-09-09 00:00:00","F","02A","20","C","2011-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2011-09-09 00:00:00","F","06E","20","C","2011-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-06-14 00:00:00","F","08A","73","","","2013-09-13 01:01:06.177000000" +"41293804","LOKAL","3","905","LORIMER STREET","11222","7183846777","03","2012-02-09 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41293804","LOKAL","3","905","LORIMER STREET","11222","7183846777","03","2012-02-09 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41293804","LOKAL","3","905","LORIMER STREET","11222","7183846777","03","2012-02-09 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41310837","KYOTO SUSHI V","5","418","FOREST AVENUE","10301","7187276666","49","2010-11-16 00:00:00","D","10B","7","A","2010-11-16 00:00:00","2013-09-13 01:01:06.177000000" +"41310853","MOCA ASIAN BISTRO","4","107-18","70 ROAD","11375","7182683333","05","2013-05-22 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41310853","MOCA ASIAN BISTRO","4","107-18","70 ROAD","11375","7182683333","05","2013-05-22 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2011-06-03 00:00:00","F","02G","101","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2011-06-13 00:00:00","U","04A","24","B","2011-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2011-09-15 00:00:00","P","10H","22","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2012-02-28 00:00:00","P","05D","24","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2013-03-06 00:00:00","F","09C","24","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2013-03-06 00:00:00","F","10D","24","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2013-03-06 00:00:00","F","10E","24","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-05-11 19:26:00","F","02B","46","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-05-11 19:26:00","F","10B","46","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2011-08-24 00:00:00","F","06D","44","C","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2011-12-07 00:00:00","D","10B","9","A","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2011-12-07 00:00:00","D","99B","9","A","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-03-22 00:00:00","G","08A","52","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2013-09-11 00:00:00","G","06D","52","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2011-05-06 00:00:00","U","06D","24","B","2011-05-06 00:00:00","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2011-09-13 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2012-04-18 00:00:00","P","04L","16","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2012-04-18 00:00:00","P","08C","16","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2012-05-02 00:00:00","U","04L","13","B","2012-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2012-11-28 00:00:00","F","04L","42","","","2013-09-13 01:01:06.177000000" +"41305601","PALACE OF JAPAN","2","3505","JOHNSON AVENUE","10463","7185438833","49","2011-06-13 00:00:00","G","04N","62","","","2013-09-13 01:01:06.177000000" +"41305601","PALACE OF JAPAN","2","3505","JOHNSON AVENUE","10463","7185438833","49","2011-06-13 00:00:00","G","08A","62","","","2013-09-13 01:01:06.177000000" +"41305601","PALACE OF JAPAN","2","3505","JOHNSON AVENUE","10463","7185438833","49","2011-06-13 00:00:00","G","10B","62","","","2013-09-13 01:01:06.177000000" +"41305601","PALACE OF JAPAN","2","3505","JOHNSON AVENUE","10463","7185438833","49","2011-06-13 00:00:00","G","99B","62","","","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2011-03-01 00:00:00","D","06E","10","A","2011-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2012-08-27 00:00:00","P","10F","26","","","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2013-05-07 00:00:00","F","04H","57","","","2013-09-13 01:01:06.177000000" +"41288039","YAMATO JAPANESE CUISINE","4","3323","FRANCIS LEWIS BOULEVARD","11358","7183211508","49","2012-05-01 00:00:00","D","10F","7","A","2012-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2011-01-28 00:00:00","D","10B","13","A","2011-01-28 00:00:00","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2012-01-11 00:00:00","P","02B","26","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2012-01-11 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2012-01-11 00:00:00","P","04N","26","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2012-01-31 00:00:00","U","08A","5","B","2012-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2013-07-25 00:00:00","F","04M","39","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2013-07-25 00:00:00","F","10D","39","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2012-12-18 00:00:00","F","05D","53","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2013-07-02 00:00:00","F","02B","73","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2013-07-02 00:00:00","F","10B","73","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2010-12-01 00:00:00","U","10F","2","B","2010-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2012-05-23 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2010-06-10 16:29:00","D","10L","6","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2011-05-17 00:00:00","F","05H","36","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2011-05-17 00:00:00","F","06C","36","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2011-10-27 00:00:00","F","06C","37","","","2013-09-13 01:01:06.177000000" +"41312710","CURRY YA","1","214","EAST 10 STREET","10003","2129952877","49","2011-10-13 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"41312710","CURRY YA","1","214","EAST 10 STREET","10003","2129952877","49","2011-10-13 00:00:00","P","09B","20","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2011-03-03 00:00:00","F","04H","31","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2011-03-03 00:00:00","F","06C","31","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2011-03-03 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2011-08-26 00:00:00","P","06A","17","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2012-05-16 00:00:00","D","08A","12","A","2012-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2012-10-10 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2012-12-03 00:00:00","F","02G","23","C","2012-12-03 00:00:00","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2012-12-03 00:00:00","F","04M","23","C","2012-12-03 00:00:00","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2013-05-15 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41297009","ADJ COFFEE SHOP","3","1","BROOKDALE PLAZA","11212","7183458964","14","2009-10-20 15:39:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41297009","ADJ COFFEE SHOP","3","1","BROOKDALE PLAZA","11212","7183458964","14","2009-10-20 15:39:00","F","10G","49","","","2013-09-13 01:01:06.177000000" +"41297009","ADJ COFFEE SHOP","3","1","BROOKDALE PLAZA","11212","7183458964","14","2009-10-20 15:39:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41306692","FUJI","1","455","MAIN STREET","10044","2125831688","49","2010-12-30 00:00:00","P","04H","18","","","2013-09-13 01:01:06.177000000" +"41351040","HUDSON VIEW RESTAURANT","1","770 ","WEST 181 STREET ","10033","2127810303","03","2012-04-06 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41342422","DON PICHON RESTAURANT","2","359","SOUTHERN BOULEVARD","10454","7187422776","53","2011-08-08 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41342422","DON PICHON RESTAURANT","2","359","SOUTHERN BOULEVARD","10454","7187422776","53","2011-08-08 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-05-02 00:00:00","F","02G","57","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-05-02 00:00:00","F","06D","57","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-05-02 00:00:00","F","06E","57","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-05-20 00:00:00","U","10F","15","B","2011-05-20 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-09-29 00:00:00","U","10F","22","B","2011-09-29 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2012-01-12 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2012-02-27 00:00:00","U","04M","8","B","2012-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2012-08-07 00:00:00","F","06D","37","C","2012-08-07 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2013-02-21 00:00:00","P","06E","14","","","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2011-06-27 00:00:00","U","06A","14","B","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2011-06-27 00:00:00","U","10F","14","B","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2011-12-07 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2012-05-31 00:00:00","P","04L","20","","","2013-09-13 01:01:06.177000000" +"41351748","SUBWAY","2","2703","WHITE PLAINS ROAD","10467","7185153100","69","2011-07-26 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41297604","TUTTA PASTA","3","160","7 AVENUE","11215","7187889500","48","2011-11-25 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41290200","TASTY DUMPLING","1","54","MULBERRY STREET","10013","2123490700","20","2010-09-29 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2011-05-04 00:00:00","U","08A","20","B","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2011-11-15 00:00:00","P","10F","24","","","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2012-04-28 00:00:00","P","06F","21","","","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2013-02-13 00:00:00","F","15J","","","","2013-09-13 01:01:06.177000000" +"41304618","DOVETAIL","1","103","WEST 77 STREET","10024","2123623800","03","2013-04-23 00:00:00","F","06H","49","","","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2011-10-05 00:00:00","G","04L","55","","","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2012-03-07 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2012-03-29 00:00:00","D","02G","9","A","2012-03-29 00:00:00","2013-09-13 01:01:06.177000000" +"41290491","NARUTO RAMEN","1","1596","3 AVENUE","10128","2122897803","49","2012-08-20 00:00:00","U","06A","7","B","2012-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41343921","KOUROS BAY DINER","3","3861","NOSTRAND AVENUE","11235","7187435777","03","2011-06-10 00:00:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2010-11-29 00:00:00","C","02B","7","A","2010-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2011-11-22 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2012-07-02 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2013-03-08 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2011-04-14 00:00:00","P","10B","17","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2011-06-14 00:00:00","F","10I","35","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-08-29 00:00:00","F","04L","42","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-08-29 00:00:00","F","08A","42","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2010-10-13 00:00:00","C","04M","11","A","2010-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2011-10-19 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2011-11-03 00:00:00","U","06C","22","B","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-03-13 00:00:00","F","05D","27","","","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2011-08-31 00:00:00","F","06A","29","","","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2012-09-17 00:00:00","P","10D","16","","","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2012-10-02 00:00:00","D","10D","7","A","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2010-12-23 00:00:00","P","06E","25","","","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2012-05-30 00:00:00","P","06C","20","","","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2012-06-12 00:00:00","D","08A","12","A","2012-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2013-07-05 00:00:00","F","04H","55","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-03-13 00:00:00","F","06F","27","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-03-22 00:00:00","G","02B","52","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-03-22 00:00:00","G","10B","52","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-03-26 00:00:00","W","04L","35","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-05-10 00:00:00","P","04L","17","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-05-10 00:00:00","P","06A","17","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-05-21 00:00:00","U","08A","18","B","2012-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2013-03-09 00:00:00","G","04L","39","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2013-03-09 00:00:00","G","06B","39","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2013-09-11 00:00:00","G","04H","52","","","2013-09-13 01:01:06.177000000" +"41298790","SERAFINA AT THE TIME HOTEL","1","224","WEST 49 STREET","10019","2122471000","48","2010-08-25 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41298790","SERAFINA AT THE TIME HOTEL","1","224","WEST 49 STREET","10019","2122471000","48","2010-08-25 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"41299007","JIVAMUKTEA CAFE","1","841","BROADWAY","10003","2123530214","84","2011-02-14 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41299007","JIVAMUKTEA CAFE","1","841","BROADWAY","10003","2123530214","84","2011-02-14 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2010-09-30 00:00:00","P","10B","21","","","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2012-01-18 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2011-03-01 00:00:00","D","10F","10","A","2011-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2012-02-16 00:00:00","D","10F","10","A","2012-02-16 00:00:00","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2012-08-27 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2012-09-24 00:00:00","U","06A","24","B","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2013-05-07 00:00:00","F","02G","57","","","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2013-05-07 00:00:00","F","06C","57","","","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2012-02-29 00:00:00","P","10D","15","","","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2011-08-25 00:00:00","F","04L","40","","","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2011-08-25 00:00:00","F","10F","40","","","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2012-08-01 00:00:00","P","04L","20","","","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2012-08-01 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2012-08-29 00:00:00","U","02G","20","B","2012-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41345086","BAKERY RZESZOWSKA","3","948","MANHATTAN AVENUE","11222","7183838142","08","2013-06-11 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41345086","BAKERY RZESZOWSKA","3","948","MANHATTAN AVENUE","11222","7183838142","08","2013-06-11 00:00:00","G","10B","49","","","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2011-06-10 00:00:00","F","10H","39","","","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2012-12-04 00:00:00","P","10B","10","","","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2013-07-09 00:00:00","F","06C","30","","","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2010-09-29 00:00:00","F","02B","30","C","2010-09-29 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2010-04-02 23:05:00","U","06D","21","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2011-07-01 00:00:00","O","08A","10","P","2011-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2011-09-21 00:00:00","F","02G","35","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2011-09-21 00:00:00","F","06E","35","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2011-12-20 00:00:00","P","08C","17","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2010-06-02 16:32:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2011-01-28 00:00:00","P","04L","17","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2011-08-16 00:00:00","F","06E","42","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2012-02-16 00:00:00","U","04L","12","B","2012-02-16 00:00:00","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2012-08-27 00:00:00","F","04L","21","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2013-03-25 00:00:00","F","10B","43","","","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2010-10-19 00:00:00","P","22B","18","","","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2010-11-22 00:00:00","U","04H","12","B","2010-11-22 00:00:00","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-04-11 00:00:00","F","08A","56","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2012-05-04 00:00:00","F","10F","36","","","2013-09-13 01:01:06.177000000" +"41292992","KOUZAN","1","685","AMSTERDAM AVENUE","10025","2122808099","49","2011-02-24 00:00:00","F","09A","37","","","2013-09-13 01:01:06.177000000" +"41292992","KOUZAN","1","685","AMSTERDAM AVENUE","10025","2122808099","49","2011-04-12 00:00:00","U","09C","12","B","2011-04-12 00:00:00","2013-09-13 01:01:06.177000000" +"41310577","ASHBY'S","1","64","WEST 22 STREET","10010","2122287993","03","2012-12-06 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41310577","ASHBY'S","1","64","WEST 22 STREET","10010","2122287993","03","2012-12-06 00:00:00","F","06B","49","","","2013-09-13 01:01:06.177000000" +"41293804","LOKAL","3","905","LORIMER STREET","11222","7183846777","03","2012-02-09 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41306692","FUJI","1","455","MAIN STREET","10044","2125831688","49","2011-08-23 00:00:00","D","04A","10","A","2011-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41355257","CASTILLO ECUATORIANO RESTAURANT","3","4020","5 AVENUE","11232","7184377676","53","2011-07-07 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2011-12-29 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2012-07-05 00:00:00","U","02G","9","B","2012-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41346769","BED-STUY FISH FRY","3","801","HALSEY STREET","11233","3474059820","73","2011-11-15 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"41310837","KYOTO SUSHI V","5","418","FOREST AVENUE","10301","7187276666","49","2011-10-24 00:00:00","D","10H","13","A","2011-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2011-06-03 00:00:00","F","04A","101","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2012-02-28 00:00:00","P","06C","24","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2012-08-14 00:00:00","F","10B","15","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2013-03-06 00:00:00","F","04K","24","","","2013-09-13 01:01:06.177000000" +"41301266","VIVI","1","248","EAST 52 STREET","10022","2128266880","49","2011-06-17 00:00:00","D","04H","11","A","2011-06-17 00:00:00","2013-09-13 01:01:06.177000000" +"41301266","VIVI","1","248","EAST 52 STREET","10022","2128266880","49","2012-06-26 00:00:00","U","04L","11","B","2012-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"41320193","KAWAII SUSHI","4","82-19","153 AVENUE","11414","7188486888","49","2011-01-18 00:00:00","C","08C","9","A","2011-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2013-02-13 00:00:00","F","15I","","","","2013-09-13 01:01:06.177000000" +"41355897","POLLO DORADO FRIED CHICKEN","1","1497","ST NICHOLAS AVENUE","10033","2127952569","53","2012-06-15 00:00:00","G","10I","49","","","2013-09-13 01:01:06.177000000" +"41356276","MR. BAGEL","4","68-64","FRESH POND ROAD","11385","7183815700","03","2011-08-02 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2010-12-14 00:00:00","P","10B","20","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2011-05-24 00:00:00","P","09A","26","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2012-01-11 00:00:00","P","06E","26","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2012-01-11 00:00:00","P","10F","26","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2011-10-04 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2011-11-29 00:00:00","D","04N","11","A","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2011-11-29 00:00:00","D","08A","11","A","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2012-05-01 00:00:00","F","04H","32","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2012-12-18 00:00:00","F","02B","53","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2012-12-18 00:00:00","F","08A","53","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2012-12-18 00:00:00","F","10B","53","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2010-12-10 00:00:00","C","10F","13","A","2010-12-10 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2011-05-09 00:00:00","F","04L","58","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2011-05-25 00:00:00","U","10B","21","B","2011-05-25 00:00:00","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2013-01-30 00:00:00","D","06D","13","A","2013-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2013-01-30 00:00:00","D","06E","13","A","2013-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2013-07-02 00:00:00","F","10H","73","","","2013-09-13 01:01:06.177000000" +"41312710","CURRY YA","1","214","EAST 10 STREET","10003","2129952877","49","2012-02-27 00:00:00","D","09A","5","A","2012-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2012-04-05 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2012-09-25 00:00:00","P","02B","26","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2012-09-25 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2013-04-30 00:00:00","O","10F","3","P","2013-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2012-03-06 00:00:00","U","06C","10","B","2012-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2012-12-12 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2013-01-15 00:00:00","U","06C","12","B","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2013-08-13 00:00:00","F","04M","31","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2011-04-05 00:00:00","U","08A","15","B","2011-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2012-04-18 00:00:00","P","02B","15","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2012-05-16 00:00:00","D","10F","12","A","2012-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2013-05-15 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2013-05-15 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41357926","EL PASO TAQUERIA","1","64","EAST 97 STREET","10029","2129961739","55","2011-07-13 00:00:00","F","02G","49","C","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2010-12-23 00:00:00","P","04M","25","","","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2013-02-07 00:00:00","D","06A","12","A","2013-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2013-07-05 00:00:00","F","02B","55","","","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2013-07-05 00:00:00","F","10B","55","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-05-02 00:00:00","F","04L","57","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-05-20 00:00:00","U","02G","15","B","2011-05-20 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-09-15 00:00:00","F","09C","51","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-09-15 00:00:00","F","10F","51","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-09-29 00:00:00","U","99B","22","B","2011-09-29 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2013-02-21 00:00:00","P","10F","14","","","2013-09-13 01:01:06.177000000" +"41302781","TRATTORIA IL MULINO","1","36","EAST 20 STREET","10003","2127778448","48","2013-08-28 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41297604","TUTTA PASTA","3","160","7 AVENUE","11215","7187889500","48","2011-11-25 00:00:00","G","10D","49","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2010-12-16 00:00:00","F","10I","46","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2011-01-26 00:00:00","U","10F","8","B","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-12-04 00:00:00","G","02B","54","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-12-04 00:00:00","G","04M","54","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-12-04 00:00:00","G","08A","54","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2013-05-23 00:00:00","F","04J","28","","","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2011-08-03 00:00:00","P","10B","14","","","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2011-09-22 00:00:00","F","08A","32","C","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2012-08-09 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2011-06-10 00:00:00","F","02A","39","","","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2011-05-19 00:00:00","P","10F","24","","","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2011-12-07 00:00:00","P","04N","19","","","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2012-05-31 00:00:00","P","02B","20","","","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2012-05-31 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2012-11-23 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2013-07-15 00:00:00","P","06D","27","","","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2010-11-29 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2013-07-02 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41323539","DI-ELLE'S RESTAURANT","2","801","SOUTHERN BOULEVARD","10459","7183784243","03","2012-03-28 00:00:00","F","04H","49","C","2012-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41323539","DI-ELLE'S RESTAURANT","2","801","SOUTHERN BOULEVARD","10459","7183784243","03","2012-03-28 00:00:00","F","06C","49","C","2012-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2011-08-31 00:00:00","F","06C","29","","","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2011-10-12 00:00:00","F","10B","46","C","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2012-09-17 00:00:00","P","02B","16","","","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2012-10-02 00:00:00","D","10I","7","A","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2013-05-11 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"41298790","SERAFINA AT THE TIME HOTEL","1","224","WEST 49 STREET","10019","2122471000","48","2010-08-25 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41298790","SERAFINA AT THE TIME HOTEL","1","224","WEST 49 STREET","10019","2122471000","48","2010-08-25 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2010-11-04 00:00:00","P","04M","21","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2011-10-26 00:00:00","F","06F","37","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2011-11-22 00:00:00","F","04A","39","C","2011-11-22 00:00:00","2013-09-13 01:01:06.177000000" +"41310837","KYOTO SUSHI V","5","418","FOREST AVENUE","10301","7187276666","49","2010-11-16 00:00:00","D","10F","7","A","2010-11-16 00:00:00","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2010-06-09 19:03:00","U","06C","17","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2010-06-09 19:03:00","U","10B","17","","","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2010-10-12 00:00:00","C","02G","9","A","2010-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2011-08-29 00:00:00","U","06A","24","B","2011-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2012-02-29 00:00:00","P","06C","15","","","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2012-01-27 00:00:00","P","04L","24","","","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2012-08-29 00:00:00","U","04L","20","B","2012-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41324332","FUJIYAMA JAPANESE CUISINE","3","7307","13 AVENUE","11228","7182568186","49","2012-10-18 00:00:00","D","06D","12","A","2012-10-18 00:00:00","2013-09-13 01:01:06.177000000" +"41324332","FUJIYAMA JAPANESE CUISINE","3","7307","13 AVENUE","11228","7182568186","49","2013-05-11 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2012-08-14 00:00:00","F","04H","15","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2012-08-14 00:00:00","F","06F","15","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2010-05-05 12:49:00","G","04N","39","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2010-05-05 12:49:00","G","06C","39","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2010-05-05 12:49:00","G","08A","39","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2011-10-27 00:00:00","F","10H","37","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2012-05-03 00:00:00","D","06E","13","A","2012-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2010-10-25 00:00:00","U","04L","13","B","2010-10-25 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2011-09-21 00:00:00","F","04L","35","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2011-12-20 00:00:00","P","06F","17","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2012-01-10 00:00:00","F","06C","34","C","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2012-05-29 00:00:00","U","04H","23","B","2012-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2013-04-02 00:00:00","F","10F","19","","","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2011-05-10 00:00:00","U","10F","13","B","2011-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41325606","NEW SUSHI Q JAPANESE RESTAURANT","2","1610","CROSBY AVE","10461","7188221627","49","2011-09-22 00:00:00","P","06E","24","","","2013-09-13 01:01:06.177000000" +"41325606","NEW SUSHI Q JAPANESE RESTAURANT","2","1610","CROSBY AVE","10461","7188221627","49","2011-10-03 00:00:00","F","04C","18","C","2011-10-03 00:00:00","2013-09-13 01:01:06.177000000" +"41325606","NEW SUSHI Q JAPANESE RESTAURANT","2","1610","CROSBY AVE","10461","7188221627","49","2011-10-03 00:00:00","F","06A","18","C","2011-10-03 00:00:00","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2011-03-30 00:00:00","U","04L","21","B","2011-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2010-10-13 00:00:00","C","04N","11","A","2010-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2011-11-03 00:00:00","U","06D","22","B","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2013-03-13 00:00:00","O","10F","4","P","2013-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2013-09-11 00:00:00","G","08A","52","","","2013-09-13 01:01:06.177000000" +"41305601","PALACE OF JAPAN","2","3505","JOHNSON AVENUE","10463","7185438833","49","2011-08-09 00:00:00","D","10F","12","A","2011-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2011-01-28 00:00:00","D","10D","13","A","2011-01-28 00:00:00","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2012-09-18 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2013-06-04 00:00:00","F","06C","29","","","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2012-01-04 00:00:00","D","10A","11","A","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-04-11 00:00:00","F","04C","56","","","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2012-02-07 00:00:00","F","08C","28","","","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2012-02-16 00:00:00","D","02B","10","A","2012-02-16 00:00:00","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2012-09-24 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2012-09-24 00:00:00","U","04C","24","B","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2013-05-07 00:00:00","F","06D","57","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2011-11-16 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2012-05-01 00:00:00","F","02B","32","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2012-12-18 00:00:00","F","06D","53","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2012-12-18 00:00:00","F","06E","53","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2013-07-02 00:00:00","F","04J","73","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2013-07-02 00:00:00","F","05D","73","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-11-29 00:00:00","F","04M","44","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-11-29 00:00:00","F","06C","44","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-11-29 00:00:00","F","08A","44","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-12-16 00:00:00","U","08A","23","B","2011-12-16 00:00:00","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-12-16 00:00:00","U","10F","23","B","2011-12-16 00:00:00","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2012-05-04 00:00:00","F","02B","36","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2010-12-23 00:00:00","F","02B","47","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2011-06-16 00:00:00","F","02G","48","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2013-08-06 00:00:00","G","06A","45","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2013-08-06 00:00:00","G","08A","45","","","2013-09-13 01:01:06.177000000" +"41327047","GOLDEN RING","3","595","BEDFORD AVENUE","11211","7183846577","50","2011-06-14 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41327109","SAKURA","3","2832","CONEY ISLAND AVE","11235","7186488880","49","2012-09-29 00:00:00","P","04M","24","","","2013-09-13 01:01:06.177000000" +"41327109","SAKURA","3","2832","CONEY ISLAND AVE","11235","7186488880","49","2012-12-31 00:00:00","D","04C","7","A","2012-12-31 00:00:00","2013-09-13 01:01:06.177000000" +"41327109","SAKURA","3","2832","CONEY ISLAND AVE","11235","7186488880","49","2013-06-01 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2011-03-03 00:00:00","F","08C","31","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2012-10-10 00:00:00","F","10B","31","","","2013-09-13 01:01:06.177000000" +"41306692","FUJI","1","455","MAIN STREET","10044","2125831688","49","2010-12-30 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41306692","FUJI","1","455","MAIN STREET","10044","2125831688","49","2011-01-24 00:00:00","U","06D","7","B","2011-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41327485","Garden City Deli","1","607","9 AVENUE","10036","2129740574","27","2013-02-27 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2010-09-20 00:00:00","F","02G","44","","","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2013-04-02 00:00:00","P","06F","18","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2011-07-20 00:00:00","U","99B","10","B","2011-07-20 00:00:00","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2011-11-12 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2011-11-12 00:00:00","P","04L","24","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2012-07-31 00:00:00","D","10F","12","A","2012-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-01-16 00:00:00","F","08A","70","","","2013-09-13 01:01:06.177000000" +"41320193","KAWAII SUSHI","4","82-19","153 AVENUE","11414","7188486888","49","2011-01-18 00:00:00","C","06E","9","A","2011-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"41306692","FUJI","1","455","MAIN STREET","10044","2125831688","49","2011-01-24 00:00:00","U","09B","7","B","2011-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41302781","TRATTORIA IL MULINO","1","36","EAST 20 STREET","10003","2127778448","48","2013-08-28 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41302781","TRATTORIA IL MULINO","1","36","EAST 20 STREET","10003","2127778448","48","2013-08-28 00:00:00","F","10A","49","","","2013-09-13 01:01:06.177000000" +"41302781","TRATTORIA IL MULINO","1","36","EAST 20 STREET","10003","2127778448","48","2013-08-28 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2010-11-17 00:00:00","P","06C","20","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2011-05-09 00:00:00","F","02G","58","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2012-05-05 00:00:00","D","06D","12","A","2012-05-05 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2013-04-26 00:00:00","G","04M","44","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2013-04-26 00:00:00","G","08A","44","","","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2012-02-22 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2011-04-09 00:00:00","P","04C","16","","","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2011-04-09 00:00:00","P","10A","16","","","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2011-05-04 00:00:00","U","04L","20","B","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2011-12-21 00:00:00","D","04H","12","A","2011-12-21 00:00:00","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2012-04-28 00:00:00","P","06D","21","","","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2012-04-28 00:00:00","P","06E","21","","","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2012-03-06 00:00:00","U","09C","10","B","2012-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2013-01-15 00:00:00","U","10F","12","B","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"41353598","NIO'S WEST INDIAN RESTAURANT & BAKERY","3","2702","CHURCH AVENUE","11226","7182879848","17","2011-12-16 00:00:00","G","10H","49","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2011-05-25 00:00:00","F","10F","41","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2011-07-18 00:00:00","D","02G","12","A","2011-07-18 00:00:00","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2012-11-20 00:00:00","P","04H","22","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2013-02-06 00:00:00","D","10F","7","A","2013-02-06 00:00:00","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2011-05-19 00:00:00","P","06D","24","","","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2011-05-19 00:00:00","P","06E","24","","","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2011-12-07 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2012-01-04 00:00:00","D","09B","13","A","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2012-05-31 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2012-11-23 00:00:00","F","04L","29","","","2013-09-13 01:01:06.177000000" +"41304618","DOVETAIL","1","103","WEST 77 STREET","10024","2123623800","03","2013-04-23 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41304618","DOVETAIL","1","103","WEST 77 STREET","10024","2123623800","03","2013-04-23 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41355257","CASTILLO ECUATORIANO RESTAURANT","3","4020","5 AVENUE","11232","7184377676","53","2011-07-07 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2010-12-23 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2010-12-23 00:00:00","P","08C","25","","","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2011-01-26 00:00:00","D","10F","10","A","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2012-05-30 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2012-06-12 00:00:00","D","04L","12","A","2012-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2013-07-05 00:00:00","F","06C","55","","","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2013-07-05 00:00:00","F","09A","55","","","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2013-07-05 00:00:00","F","10I","55","","","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2010-09-30 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2010-09-30 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2011-09-22 00:00:00","F","06A","32","C","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2012-01-18 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2013-03-26 00:00:00","F","04L","25","","","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2010-09-29 00:00:00","F","08A","30","C","2010-09-29 00:00:00","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2010-10-13 00:00:00","C","08A","11","A","2010-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-03-13 00:00:00","F","10F","27","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-03-22 00:00:00","G","04L","52","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-05-21 00:00:00","U","04L","18","B","2012-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-05-21 00:00:00","U","04N","18","B","2012-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2013-03-09 00:00:00","G","06E","39","","","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2011-03-01 00:00:00","P","04C","22","","","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2011-03-01 00:00:00","P","05D","22","","","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2013-06-04 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2010-10-19 00:00:00","P","10G","18","","","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2012-01-04 00:00:00","D","02G","11","A","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2012-12-19 00:00:00","P","04N","17","","","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2013-01-31 00:00:00","D","10B","12","A","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2013-06-27 00:00:00","P","06C","14","","","2013-09-13 01:01:06.177000000" +"41324332","FUJIYAMA JAPANESE CUISINE","3","7307","13 AVENUE","11228","7182568186","49","2010-09-28 00:00:00","C","04L","12","A","2010-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41324332","FUJIYAMA JAPANESE CUISINE","3","7307","13 AVENUE","11228","7182568186","49","2010-09-28 00:00:00","C","08A","12","A","2010-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41324332","FUJIYAMA JAPANESE CUISINE","3","7307","13 AVENUE","11228","7182568186","49","2011-10-12 00:00:00","D","06F","12","A","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41324332","FUJIYAMA JAPANESE CUISINE","3","7307","13 AVENUE","11228","7182568186","49","2013-05-11 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41324332","FUJIYAMA JAPANESE CUISINE","3","7307","13 AVENUE","11228","7182568186","49","2013-05-11 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-04-28 00:00:00","F","02G","40","C","2011-04-28 00:00:00","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-09-08 00:00:00","F","10F","35","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-09-21 00:00:00","F","04L","21","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2012-02-15 00:00:00","F","04O","28","C","2012-02-15 00:00:00","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2010-05-10 16:13:00","F","05J","32","","","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2010-05-10 16:13:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2010-06-03 11:01:00","G","04M","70","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-04-11 00:00:00","F","08C","56","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-12-16 00:00:00","U","99B","23","B","2011-12-16 00:00:00","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2012-05-04 00:00:00","F","06C","36","","","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2011-06-10 00:00:00","F","04L","39","","","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2012-01-03 00:00:00","F","04L","36","C","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2012-06-14 00:00:00","D","04H","12","A","2012-06-14 00:00:00","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2013-07-09 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2011-11-03 00:00:00","F","06D","40","","","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2013-05-15 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"41325606","NEW SUSHI Q JAPANESE RESTAURANT","2","1610","CROSBY AVE","10461","7188221627","49","2010-10-09 00:00:00","C","09C","10","A","2010-10-09 00:00:00","2013-09-13 01:01:06.177000000" +"41325606","NEW SUSHI Q JAPANESE RESTAURANT","2","1610","CROSBY AVE","10461","7188221627","49","2012-02-28 00:00:00","D","10B","10","A","2012-02-28 00:00:00","2013-09-13 01:01:06.177000000" +"41325606","NEW SUSHI Q JAPANESE RESTAURANT","2","1610","CROSBY AVE","10461","7188221627","49","2013-03-19 00:00:00","P","04L","17","","","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2013-05-07 00:00:00","F","04L","57","","","2013-09-13 01:01:06.177000000" +"41310577","ASHBY'S","1","64","WEST 22 STREET","10010","2122287993","03","2012-12-06 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2010-12-23 00:00:00","F","10F","47","","","2013-09-13 01:01:06.177000000" +"41357926","EL PASO TAQUERIA","1","64","EAST 97 STREET","10029","2129961739","55","2011-07-13 00:00:00","F","04N","49","C","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41357926","EL PASO TAQUERIA","1","64","EAST 97 STREET","10029","2129961739","55","2011-07-13 00:00:00","F","10F","49","C","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41310837","KYOTO SUSHI V","5","418","FOREST AVENUE","10301","7187276666","49","2010-11-16 00:00:00","D","09C","7","A","2010-11-16 00:00:00","2013-09-13 01:01:06.177000000" +"41310837","KYOTO SUSHI V","5","418","FOREST AVENUE","10301","7187276666","49","2011-10-24 00:00:00","D","02B","13","A","2011-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41310853","MOCA ASIAN BISTRO","4","107-18","70 ROAD","11375","7182683333","05","2013-05-22 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41310853","MOCA ASIAN BISTRO","4","107-18","70 ROAD","11375","7182683333","05","2013-05-22 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2010-06-09 19:03:00","U","09B","17","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2010-06-09 20:12:00","U","15I","","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2011-06-03 00:00:00","F","05D","101","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2011-09-28 00:00:00","D","10I","12","A","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2013-03-06 00:00:00","F","04H","24","","","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2011-01-29 00:00:00","P","18A","5","","","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2011-08-16 00:00:00","F","06C","28","","","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2012-02-03 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2011-01-14 00:00:00","F","02G","20","C","2011-01-14 00:00:00","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2011-01-14 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2011-06-16 00:00:00","F","04N","48","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2011-06-16 00:00:00","F","10B","48","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2011-08-03 00:00:00","U","06E","17","B","2011-08-03 00:00:00","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2012-07-17 00:00:00","D","06F","9","A","2012-07-17 00:00:00","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2013-07-06 00:00:00","F","04A","29","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2013-03-06 00:00:00","F","10H","24","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2013-03-06 00:00:00","F","10I","24","","","2013-09-13 01:01:06.177000000" +"41327047","GOLDEN RING","3","595","BEDFORD AVENUE","11211","7183846577","50","2011-06-14 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41327109","SAKURA","3","2832","CONEY ISLAND AVE","11235","7186488880","49","2010-09-15 00:00:00","C","06E","9","A","2010-09-15 00:00:00","2013-09-13 01:01:06.177000000" +"41327109","SAKURA","3","2832","CONEY ISLAND AVE","11235","7186488880","49","2010-09-15 00:00:00","C","10F","9","A","2010-09-15 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2010-11-17 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2011-05-09 00:00:00","F","06C","58","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2011-12-02 00:00:00","U","04C","14","B","2011-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2012-09-25 00:00:00","P","06F","26","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2012-09-25 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2012-11-16 00:00:00","D","04M","10","A","2012-11-16 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2013-04-26 00:00:00","G","04C","44","","","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2011-04-09 00:00:00","P","18A","16","","","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2012-02-10 00:00:00","D","","","","","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2012-04-28 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2012-05-18 00:00:00","U","04A","22","B","2012-05-18 00:00:00","2013-09-13 01:01:06.177000000" +"41307362","KINGS COUNTY","3","49","BOGART STREET","11206","6465490667","03","2012-05-18 00:00:00","U","06D","22","B","2012-05-18 00:00:00","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2012-02-22 00:00:00","P","10A","22","","","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2012-12-12 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2013-08-13 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2013-08-13 00:00:00","F","10I","31","","","2013-09-13 01:01:06.177000000" +"41336198","ZEMI ASIAN BISTRO","1","130","9 AVENUE","10011","2129246950","05","2011-09-06 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2011-03-31 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2011-03-31 00:00:00","P","04L","24","","","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2011-12-07 00:00:00","U","04M","20","B","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2012-07-09 00:00:00","F","04N","32","","","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2013-04-10 00:00:00","P","10B","21","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2012-01-11 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2013-07-25 00:00:00","F","02G","39","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2013-07-25 00:00:00","F","04H","39","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2011-06-20 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2011-07-12 00:00:00","D","10F","8","A","2011-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2011-07-12 00:00:00","E","16B","","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2011-11-29 00:00:00","D","10B","11","A","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2012-12-18 00:00:00","F","06C","53","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2013-07-02 00:00:00","F","04L","73","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2013-07-02 00:00:00","F","06A","73","","","2013-09-13 01:01:06.177000000" +"41312710","CURRY YA","1","214","EAST 10 STREET","10003","2129952877","49","2011-01-31 00:00:00","F","04A","20","","","2013-09-13 01:01:06.177000000" +"41312710","CURRY YA","1","214","EAST 10 STREET","10003","2129952877","49","2011-02-07 00:00:00","D","06A","7","A","2011-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41312710","CURRY YA","1","214","EAST 10 STREET","10003","2129952877","49","2011-10-13 00:00:00","P","04L","20","","","2013-09-13 01:01:06.177000000" +"41312710","CURRY YA","1","214","EAST 10 STREET","10003","2129952877","49","2011-10-24 00:00:00","D","10H","4","A","2011-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2010-12-23 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2011-01-26 00:00:00","D","06E","10","A","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"41308519","T.J. ASIAN BISTRO","4","50-19","SKILLMAN AVENUE","11377","7182052088","49","2013-02-07 00:00:00","D","02B","12","A","2013-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2011-03-03 00:00:00","F","04C","31","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2011-04-05 00:00:00","U","04L","15","B","2011-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2011-08-26 00:00:00","P","06E","17","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2011-09-08 00:00:00","U","10B","17","B","2011-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2012-05-16 00:00:00","D","04M","12","A","2012-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2012-10-10 00:00:00","F","06D","31","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2012-12-03 00:00:00","F","08A","23","C","2012-12-03 00:00:00","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2011-09-22 00:00:00","F","10B","32","C","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2012-02-02 00:00:00","U","04L","16","B","2012-02-02 00:00:00","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2012-08-24 00:00:00","D","02B","11","A","2012-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2013-03-26 00:00:00","F","02B","25","","","2013-09-13 01:01:06.177000000" +"41370445","SUSHI YAMA","3","268","PROSPECT PARK WEST","11215","7187883896","49","2010-08-11 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41370445","SUSHI YAMA","3","268","PROSPECT PARK WEST","11215","7187883896","49","2010-10-19 00:00:00","C","02B","12","A","2010-10-19 00:00:00","2013-09-13 01:01:06.177000000" +"41370445","SUSHI YAMA","3","268","PROSPECT PARK WEST","11215","7187883896","49","2011-11-29 00:00:00","D","06C","12","A","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2011-12-13 00:00:00","P","04L","17","","","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2012-01-03 00:00:00","F","06E","36","C","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2012-05-24 00:00:00","P","06D","10","","","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2012-05-24 00:00:00","P","06E","10","","","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2013-01-24 00:00:00","D","10B","13","A","2013-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41323539","DI-ELLE'S RESTAURANT","2","801","SOUTHERN BOULEVARD","10459","7183784243","03","2012-03-28 00:00:00","F","04L","49","C","2012-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41323539","DI-ELLE'S RESTAURANT","2","801","SOUTHERN BOULEVARD","10459","7183784243","03","2012-03-28 00:00:00","F","04N","49","C","2012-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41324332","FUJIYAMA JAPANESE CUISINE","3","7307","13 AVENUE","11228","7182568186","49","2012-09-26 00:00:00","F","06C","28","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-06-04 11:14:00","U","06C","11","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-09-22 00:00:00","F","04H","36","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-09-22 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2011-08-24 00:00:00","F","06A","44","C","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41362519","DEEP BLUE","4","000","JOHN F KENNEDY INTL AIRPORT","11430","7186566210","49","2010-12-28 00:00:00","C","04N","11","A","2010-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41310853","MOCA ASIAN BISTRO","4","107-18","70 ROAD","11375","7182683333","05","2013-05-22 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2010-06-09 20:12:00","U","15L","","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2011-06-03 00:00:00","F","03E","101","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2011-06-03 00:00:00","F","06C","101","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2011-06-03 00:00:00","F","99B","101","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2011-06-13 00:00:00","U","10B","24","B","2011-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2011-09-15 00:00:00","P","04H","22","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2011-09-15 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2012-02-28 00:00:00","P","10J","24","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2012-03-13 00:00:00","D","10H","11","A","2012-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2012-08-29 00:00:00","U","06E","10","B","2012-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2011-04-07 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2011-05-10 00:00:00","U","06F","13","B","2011-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2011-12-12 00:00:00","D","10I","7","A","2011-12-12 00:00:00","2013-09-13 01:01:06.177000000" +"41325606","NEW SUSHI Q JAPANESE RESTAURANT","2","1610","CROSBY AVE","10461","7188221627","49","2010-10-09 00:00:00","C","04H","10","A","2010-10-09 00:00:00","2013-09-13 01:01:06.177000000" +"41325606","NEW SUSHI Q JAPANESE RESTAURANT","2","1610","CROSBY AVE","10461","7188221627","49","2013-03-19 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-03-22 00:00:00","P","05C","27","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-03-22 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-03-22 00:00:00","P","10F","27","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-09-08 00:00:00","F","06C","35","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2012-08-31 00:00:00","F","09B","55","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2013-04-11 00:00:00","P","06D","12","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2013-04-11 00:00:00","P","10F","12","","","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2010-06-03 11:01:00","G","06A","70","","","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2010-06-03 11:01:00","G","10B","70","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2011-01-28 00:00:00","D","99B","13","A","2011-01-28 00:00:00","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2011-06-29 00:00:00","U","04C","7","B","2011-06-29 00:00:00","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2013-07-25 00:00:00","F","04L","39","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2013-07-25 00:00:00","F","10F","39","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2011-07-12 00:00:00","D","06C","8","A","2011-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2011-11-15 00:00:00","F","04N","28","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2012-05-01 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2010-08-24 00:00:00","F","04H","14","","","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2010-08-24 00:00:00","F","08A","14","","","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2010-09-29 00:00:00","F","06F","30","C","2010-09-29 00:00:00","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2012-10-22 00:00:00","U","02B","19","B","2012-10-22 00:00:00","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2010-12-23 00:00:00","F","08A","47","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2011-06-16 00:00:00","F","09C","48","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2012-05-16 00:00:00","D","06D","11","A","2012-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2012-05-16 00:00:00","D","06E","11","A","2012-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2012-12-18 00:00:00","F","04L","53","","","2013-09-13 01:01:06.177000000" +"41312710","CURRY YA","1","214","EAST 10 STREET","10003","2129952877","49","2011-10-13 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41312710","CURRY YA","1","214","EAST 10 STREET","10003","2129952877","49","2012-02-27 00:00:00","D","10F","5","A","2012-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2011-07-12 00:00:00","P","04C","23","","","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2012-01-04 00:00:00","D","10B","11","A","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2013-01-31 00:00:00","D","06D","12","A","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2013-06-27 00:00:00","P","06D","14","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-04-11 00:00:00","F","04M","56","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-04-11 00:00:00","F","10F","56","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-05-20 00:00:00","U","02B","24","B","2011-05-20 00:00:00","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-05-20 00:00:00","U","04C","24","B","2011-05-20 00:00:00","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-12-16 00:00:00","U","09A","23","B","2011-12-16 00:00:00","2013-09-13 01:01:06.177000000" +"41327109","SAKURA","3","2832","CONEY ISLAND AVE","11235","7186488880","49","2012-09-29 00:00:00","P","04H","24","","","2013-09-13 01:01:06.177000000" +"41327109","SAKURA","3","2832","CONEY ISLAND AVE","11235","7186488880","49","2013-06-01 00:00:00","P","06F","22","","","2013-09-13 01:01:06.177000000" +"41327485","Garden City Deli","1","607","9 AVENUE","10036","2129740574","27","2013-02-27 00:00:00","F","05H","49","","","2013-09-13 01:01:06.177000000" +"41327485","Garden City Deli","1","607","9 AVENUE","10036","2129740574","27","2013-02-27 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41341734","CHINA VILLAGE RESTAURANT","1","94","BAXTER STREET","10013","2129416679","20","2012-02-23 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2010-05-26 19:35:00","F","02G","48","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2010-05-26 19:35:00","F","04K","48","","","2013-09-13 01:01:06.177000000" +"41372752","LIGHTHOUSE RESTAURANT & BAKERY","3","571","VAN SICLEN AVENUE","11207","7183426468","17","2010-10-25 00:00:00","F","10F","49","C","2010-10-25 00:00:00","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2011-09-08 00:00:00","U","04C","17","B","2011-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2012-04-18 00:00:00","P","06C","15","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2012-10-10 00:00:00","F","10D","31","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2013-05-15 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2012-05-04 00:00:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"41372868","MONOKAWA","1","157","EAST 28 STREET","10016","2126847830","49","2011-03-23 00:00:00","F","04J","31","","","2013-09-13 01:01:06.177000000" +"41372868","MONOKAWA","1","157","EAST 28 STREET","10016","2126847830","49","2011-03-23 00:00:00","F","10E","31","","","2013-09-13 01:01:06.177000000" +"41372868","MONOKAWA","1","157","EAST 28 STREET","10016","2126847830","49","2011-04-27 00:00:00","U","02G","20","B","2011-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41342422","DON PICHON RESTAURANT","2","359","SOUTHERN BOULEVARD","10454","7187422776","53","2011-08-08 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41373322","ICHIE","1","53","WEST 106 STREET","10025","2128652888","49","2010-03-16 13:42:00","U","07D","15","","","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2011-11-16 00:00:00","P","02B","14","","","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2011-12-07 00:00:00","U","02G","20","B","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2012-07-26 00:00:00","F","04O","29","C","2012-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2013-04-10 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2013-04-10 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41320193","KAWAII SUSHI","4","82-19","153 AVENUE","11414","7188486888","49","2010-12-09 00:00:00","F","02B","33","","","2013-09-13 01:01:06.177000000" +"41320193","KAWAII SUSHI","4","82-19","153 AVENUE","11414","7188486888","49","2010-12-09 00:00:00","F","04M","33","","","2013-09-13 01:01:06.177000000" +"41320193","KAWAII SUSHI","4","82-19","153 AVENUE","11414","7188486888","49","2011-06-22 00:00:00","D","10B","13","A","2011-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2011-12-02 00:00:00","U","04L","14","B","2011-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2013-04-26 00:00:00","G","10F","44","","","2013-09-13 01:01:06.177000000" +"41320931","RICH VILLAGE RESTAURANT","3","6009","7 AVENUE","11220","7182388628","20","2011-04-26 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41320931","RICH VILLAGE RESTAURANT","3","6009","7 AVENUE","11220","7182388628","20","2011-04-26 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2010-12-18 00:00:00","U","10F","24","B","2010-12-18 00:00:00","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2013-08-13 00:00:00","F","06D","31","","","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2013-08-13 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2010-01-20 19:48:00","U","10G","19","","","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2012-04-04 00:00:00","U","02G","10","B","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2010-06-02 16:32:00","F","04M","29","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2010-07-06 14:43:00","U","10B","26","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2011-01-28 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2011-08-16 00:00:00","F","04K","42","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2011-08-29 00:00:00","U","10F","13","B","2011-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2012-02-16 00:00:00","U","10B","12","B","2012-02-16 00:00:00","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2012-08-27 00:00:00","F","08A","21","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2012-09-10 00:00:00","G","04M","48","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2011-02-09 00:00:00","F","10F","19","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2011-08-24 00:00:00","P","04N","21","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2012-01-23 00:00:00","F","02B","28","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2012-01-30 00:00:00","D","04M","12","A","2012-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2012-06-18 00:00:00","F","10F","25","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2012-06-28 00:00:00","D","10F","13","A","2012-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2013-01-11 00:00:00","D","06D","12","A","2013-01-11 00:00:00","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2012-01-23 00:00:00","F","04M","17","C","2012-01-23 00:00:00","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2012-06-09 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2013-09-06 00:00:00","G","06C","50","","","2013-09-13 01:01:06.177000000" +"41346769","BED-STUY FISH FRY","3","801","HALSEY STREET","11233","3474059820","73","2011-11-15 00:00:00","G","99B","49","","","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2010-08-24 00:00:00","F","06D","14","","","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2011-03-01 00:00:00","P","06E","22","","","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2011-03-30 00:00:00","U","08A","21","B","2011-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2012-09-18 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2012-10-22 00:00:00","U","04C","19","B","2012-10-22 00:00:00","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2013-06-04 00:00:00","F","04L","29","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-09-08 00:00:00","F","08A","35","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2012-02-15 00:00:00","F","08C","28","C","2012-02-15 00:00:00","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2012-08-31 00:00:00","F","02G","55","","","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2010-10-19 00:00:00","P","10A","18","","","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2012-12-19 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2013-01-31 00:00:00","D","10F","12","A","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-04-11 00:00:00","F","02G","56","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-04-11 00:00:00","F","04J","56","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-05-20 00:00:00","U","04A","24","B","2011-05-20 00:00:00","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-11-29 00:00:00","F","02B","44","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-12-16 00:00:00","U","04L","23","B","2011-12-16 00:00:00","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2010-06-03 11:01:00","G","04I","70","","","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2010-06-03 11:01:00","G","08A","70","","","2013-09-13 01:01:06.177000000" +"41370445","SUSHI YAMA","3","268","PROSPECT PARK WEST","11215","7187883896","49","2011-03-23 00:00:00","P","10B","23","","","2013-09-13 01:01:06.177000000" +"41323539","DI-ELLE'S RESTAURANT","2","801","SOUTHERN BOULEVARD","10459","7183784243","03","2012-03-28 00:00:00","F","10F","49","C","2012-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41377990","ESTRELLA DEL MAR RESTAURANT","4","552","SENECA AVENUE","11385","7184567496","53","2010-09-23 00:00:00","F","02G","49","C","2010-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"41377990","ESTRELLA DEL MAR RESTAURANT","4","552","SENECA AVENUE","11385","7184567496","53","2010-09-23 00:00:00","F","99B","49","C","2010-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"41378125","PUNTO DE SABOR","1","1464","ST NICHOLAS AVENUE","10033","2129282298","53","2012-09-20 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41378305","CURRY EXPRESS","1","130","EAST 29 STREET","10016","2122510202","44","2010-08-25 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41378305","CURRY EXPRESS","1","130","EAST 29 STREET","10016","2122510202","44","2010-08-25 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41378334","B.B.Q. VILLAGE PALACE","4","181-02/12","HILLSIDE AVENUE","11432","7182989099","44","2012-02-09 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41378334","B.B.Q. VILLAGE PALACE","4","181-02/12","HILLSIDE AVENUE","11432","7182989099","44","2012-02-09 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41342422","DON PICHON RESTAURANT","2","359","SOUTHERN BOULEVARD","10454","7187422776","53","2011-08-08 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41342422","DON PICHON RESTAURANT","2","359","SOUTHERN BOULEVARD","10454","7187422776","53","2011-08-08 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-01-04 00:00:00","P","06A","19","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-06-14 00:00:00","F","10F","73","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-06-25 00:00:00","F","10B","17","C","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-12-04 00:00:00","G","06C","54","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-12-04 00:00:00","G","10B","54","","","2013-09-13 01:01:06.177000000" +"41343921","KOUROS BAY DINER","3","3861","NOSTRAND AVENUE","11235","7187435777","03","2011-06-10 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41343921","KOUROS BAY DINER","3","3861","NOSTRAND AVENUE","11235","7187435777","03","2011-06-10 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41343921","KOUROS BAY DINER","3","3861","NOSTRAND AVENUE","11235","7187435777","03","2011-06-10 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41343921","KOUROS BAY DINER","3","3861","NOSTRAND AVENUE","11235","7187435777","03","2011-06-10 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41320193","KAWAII SUSHI","4","82-19","153 AVENUE","11414","7188486888","49","2010-12-09 00:00:00","F","08A","33","","","2013-09-13 01:01:06.177000000" +"41320193","KAWAII SUSHI","4","82-19","153 AVENUE","11414","7188486888","49","2012-05-30 00:00:00","D","02B","12","A","2012-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2010-11-08 00:00:00","C","02G","12","A","2010-11-08 00:00:00","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2011-05-10 00:00:00","U","02G","13","B","2011-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2011-05-10 00:00:00","U","06E","13","B","2011-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2011-11-03 00:00:00","F","04N","40","","","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2011-11-03 00:00:00","F","10I","40","","","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2012-05-09 00:00:00","D","10F","10","A","2012-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41325606","NEW SUSHI Q JAPANESE RESTAURANT","2","1610","CROSBY AVE","10461","7188221627","49","2012-02-28 00:00:00","D","02B","10","A","2012-02-28 00:00:00","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2010-06-24 19:25:00","F","04M","39","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2010-11-03 00:00:00","F","06E","41","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2010-11-03 00:00:00","F","08A","41","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2012-04-14 00:00:00","P","08A","12","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2012-06-14 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2013-02-20 00:00:00","F","08A","27","","","2013-09-13 01:01:06.177000000" +"41336198","ZEMI ASIAN BISTRO","1","130","9 AVENUE","10011","2129246950","05","2011-09-06 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41336198","ZEMI ASIAN BISTRO","1","130","9 AVENUE","10011","2129246950","05","2011-09-06 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2010-05-26 19:35:00","F","06D","48","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2010-06-17 23:14:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2011-06-16 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2012-03-02 00:00:00","D","10E","12","A","2012-03-02 00:00:00","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2013-04-11 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41372752","LIGHTHOUSE RESTAURANT & BAKERY","3","571","VAN SICLEN AVENUE","11207","7183426468","17","2010-10-25 00:00:00","F","10B","49","C","2010-10-25 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2010-11-17 00:00:00","P","04L","20","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2010-12-10 00:00:00","C","04M","13","A","2010-12-10 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2011-05-09 00:00:00","F","06A","58","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2011-05-09 00:00:00","F","10D","58","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2011-05-25 00:00:00","U","02G","21","B","2011-05-25 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2011-05-25 00:00:00","U","06E","21","B","2011-05-25 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2011-11-16 00:00:00","F","04A","32","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2012-09-25 00:00:00","P","04M","26","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2011-01-14 00:00:00","F","04A","20","C","2011-01-14 00:00:00","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2011-08-03 00:00:00","U","02B","17","B","2011-08-03 00:00:00","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2011-08-03 00:00:00","U","10B","17","B","2011-08-03 00:00:00","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2011-12-22 00:00:00","P","02B","9","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2012-01-06 00:00:00","U","04C","19","B","2012-01-06 00:00:00","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2013-07-06 00:00:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2013-08-06 00:00:00","G","02B","45","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2013-08-06 00:00:00","G","04M","45","","","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2011-05-10 00:00:00","U","06E","20","B","2011-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2011-11-16 00:00:00","P","04H","14","","","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2012-07-09 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2012-07-09 00:00:00","F","10H","32","","","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2012-07-26 00:00:00","F","04M","29","C","2012-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2012-07-26 00:00:00","F","10F","29","C","2012-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41372868","MONOKAWA","1","157","EAST 28 STREET","10016","2126847830","49","2011-03-23 00:00:00","F","99B","31","","","2013-09-13 01:01:06.177000000" +"41372868","MONOKAWA","1","157","EAST 28 STREET","10016","2126847830","49","2012-04-10 00:00:00","D","10F","2","A","2012-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41320931","RICH VILLAGE RESTAURANT","3","6009","7 AVENUE","11220","7182388628","20","2011-04-26 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2010-12-18 00:00:00","U","09B","24","B","2010-12-18 00:00:00","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2012-12-12 00:00:00","P","04N","22","","","2013-09-13 01:01:06.177000000" +"41327047","GOLDEN RING","3","595","BEDFORD AVENUE","11211","7183846577","50","2011-06-14 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41327047","GOLDEN RING","3","595","BEDFORD AVENUE","11211","7183846577","50","2011-06-14 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41327109","SAKURA","3","2832","CONEY ISLAND AVE","11235","7186488880","49","2012-09-29 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"41327109","SAKURA","3","2832","CONEY ISLAND AVE","11235","7186488880","49","2013-06-01 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2011-07-26 00:00:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2011-07-26 00:00:00","F","04K","29","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2011-09-06 00:00:00","D","06D","13","A","2011-09-06 00:00:00","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2010-07-06 14:43:00","U","10G","26","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2011-02-10 00:00:00","U","10B","8","B","2011-02-10 00:00:00","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2011-08-16 00:00:00","F","04M","42","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2011-08-29 00:00:00","U","05D","13","B","2011-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2012-02-07 00:00:00","P","05D","27","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2012-02-16 00:00:00","U","06E","12","B","2012-02-16 00:00:00","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2011-06-17 00:00:00","P","06C","15","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2011-10-26 00:00:00","F","06C","37","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2011-10-26 00:00:00","F","08A","37","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2012-06-04 00:00:00","D","04H","12","A","2012-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2011-05-17 00:00:00","F","10E","36","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2012-03-24 00:00:00","F","06B","43","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2012-09-20 00:00:00","P","04M","22","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2012-09-20 00:00:00","P","10I","22","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2013-04-10 00:00:00","P","06E","15","","","2013-09-13 01:01:06.177000000" +"41327485","Garden City Deli","1","607","9 AVENUE","10036","2129740574","27","2013-02-27 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2012-08-27 00:00:00","F","04C","21","","","2013-09-13 01:01:06.177000000" +"41381258","SUBWAY","3","391","JAY STREET","11201","7188522226","69","2011-05-20 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2011-12-29 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2012-01-23 00:00:00","F","04A","17","C","2012-01-23 00:00:00","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2012-06-09 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2012-06-09 00:00:00","P","10B","21","","","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2013-03-28 00:00:00","F","10B","14","","","2013-09-13 01:01:06.177000000" +"41346769","BED-STUY FISH FRY","3","801","HALSEY STREET","11233","3474059820","73","2011-11-15 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41346769","BED-STUY FISH FRY","3","801","HALSEY STREET","11233","3474059820","73","2011-11-15 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41351040","HUDSON VIEW RESTAURANT","1","770 ","WEST 181 STREET ","10033","2127810303","03","2012-04-06 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-05-11 19:26:00","F","02G","46","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-05-11 19:26:00","F","04A","46","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2011-05-10 00:00:00","F","06D","36","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2011-08-24 00:00:00","F","04M","44","C","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2011-08-24 00:00:00","F","10B","44","C","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41381844","QOO","3","367 ","METROPOLITAN AVENUE","11211","7183849493","49","2012-05-30 00:00:00","D","04H","9","A","2012-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"41381844","QOO","3","367 ","METROPOLITAN AVENUE","11211","7183849493","49","2012-05-30 00:00:00","D","10H","9","A","2012-05-30 00:00:00","2013-09-13 01:01:06.177000000" +"41323539","DI-ELLE'S RESTAURANT","2","801","SOUTHERN BOULEVARD","10459","7183784243","03","2012-03-28 00:00:00","F","02G","49","C","2012-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41323539","DI-ELLE'S RESTAURANT","2","801","SOUTHERN BOULEVARD","10459","7183784243","03","2012-03-28 00:00:00","F","06D","49","C","2012-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2011-03-03 00:00:00","U","06C","25","B","2011-03-03 00:00:00","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2011-03-03 00:00:00","U","08C","25","B","2011-03-03 00:00:00","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2012-01-30 00:00:00","D","09B","12","A","2012-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2012-06-18 00:00:00","F","02G","25","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2013-07-02 00:00:00","F","06E","22","","","2013-09-13 01:01:06.177000000" +"41324332","FUJIYAMA JAPANESE CUISINE","3","7307","13 AVENUE","11228","7182568186","49","2011-10-12 00:00:00","D","08C","12","A","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41324332","FUJIYAMA JAPANESE CUISINE","3","7307","13 AVENUE","11228","7182568186","49","2012-09-26 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"41324332","FUJIYAMA JAPANESE CUISINE","3","7307","13 AVENUE","11228","7182568186","49","2012-10-18 00:00:00","D","06F","12","A","2012-10-18 00:00:00","2013-09-13 01:01:06.177000000" +"41324332","FUJIYAMA JAPANESE CUISINE","3","7307","13 AVENUE","11228","7182568186","49","2013-05-11 00:00:00","P","06F","21","","","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2010-10-28 00:00:00","C","08A","12","A","2010-10-28 00:00:00","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2011-06-22 00:00:00","F","02B","35","C","2011-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2011-06-22 00:00:00","F","04M","35","C","2011-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2011-11-29 00:00:00","D","10B","4","A","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2013-06-07 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2012-07-31 00:00:00","D","10I","12","A","2012-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-01-16 00:00:00","F","04L","70","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-01-16 00:00:00","F","10F","70","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-08-29 00:00:00","F","06C","42","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-08-29 00:00:00","F","10B","42","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2010-12-16 00:00:00","F","10B","46","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2011-01-26 00:00:00","U","06D","8","B","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2011-05-18 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-01-17 00:00:00","F","02G","25","C","2012-01-17 00:00:00","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-01-17 00:00:00","F","05D","25","C","2012-01-17 00:00:00","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-06-14 00:00:00","F","04H","73","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-12-04 00:00:00","G","10F","54","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-12-17 00:00:00","U","02B","19","B","2012-12-17 00:00:00","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2010-08-30 00:00:00","P","06C","10","","","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2010-08-30 00:00:00","P","10B","10","","","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2011-04-07 00:00:00","P","06E","17","","","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2011-04-07 00:00:00","P","09B","17","","","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2012-05-09 00:00:00","D","02G","10","A","2012-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2013-05-15 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2013-05-15 00:00:00","P","10E","26","","","2013-09-13 01:01:06.177000000" +"41325606","NEW SUSHI Q JAPANESE RESTAURANT","2","1610","CROSBY AVE","10461","7188221627","49","2011-10-03 00:00:00","F","04L","18","C","2011-10-03 00:00:00","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2010-03-04 15:52:00","U","08A","16","","","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2012-08-15 00:00:00","F","06D","24","C","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2012-08-15 00:00:00","F","06E","24","C","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2010-09-27 00:00:00","F","02G","40","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2010-09-27 00:00:00","F","06D","40","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2010-12-20 00:00:00","C","06D","5","A","2010-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2012-11-20 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2012-11-20 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2010-12-23 00:00:00","F","04M","47","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2011-06-16 00:00:00","F","99B","48","","","2013-09-13 01:01:06.177000000" +"41342422","DON PICHON RESTAURANT","2","359","SOUTHERN BOULEVARD","10454","7187422776","53","2011-08-08 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41384147","DAFNI","1","325","WEST 42 STREET","10036","2123151010","38","2010-05-05 11:29:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-03-22 00:00:00","P","10A","27","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-04-28 00:00:00","F","04J","40","C","2011-04-28 00:00:00","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-04-28 00:00:00","F","06A","40","C","2011-04-28 00:00:00","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-12-28 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2012-02-15 00:00:00","F","04L","28","C","2012-02-15 00:00:00","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2012-08-31 00:00:00","F","06D","55","","","2013-09-13 01:01:06.177000000" +"41327109","SAKURA","3","2832","CONEY ISLAND AVE","11235","7186488880","49","2011-09-19 00:00:00","D","02G","7","A","2011-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2011-06-14 00:00:00","P","06E","16","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-01-10 00:00:00","F","06E","39","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-01-10 00:00:00","F","08A","39","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-01-10 00:00:00","F","09C","39","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-01-24 00:00:00","U","04C","19","B","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41355257","CASTILLO ECUATORIANO RESTAURANT","3","4020","5 AVENUE","11232","7184377676","53","2011-07-07 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2012-08-31 00:00:00","F","10B","55","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2012-09-20 00:00:00","U","04L","17","B","2012-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2013-06-18 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2010-05-10 16:13:00","F","04M","32","","","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2010-05-10 16:13:00","F","10B","32","","","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2010-06-03 11:01:00","G","04A","70","","","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2011-11-30 00:00:00","D","10F","12","A","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2010-01-25 15:03:00","U","02G","14","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2010-11-04 00:00:00","P","04N","21","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2010-11-04 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2011-10-26 00:00:00","F","04K","37","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2011-11-22 00:00:00","F","02B","39","C","2011-11-22 00:00:00","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2011-11-22 00:00:00","F","05D","39","C","2011-11-22 00:00:00","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2011-11-22 00:00:00","F","10B","39","C","2011-11-22 00:00:00","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2012-05-23 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2010-05-10 08:58:00","O","10G","3","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2011-05-17 00:00:00","F","99B","36","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2012-10-03 00:00:00","D","10I","12","A","2012-10-03 00:00:00","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2013-04-10 00:00:00","P","04J","15","","","2013-09-13 01:01:06.177000000" +"41355897","POLLO DORADO FRIED CHICKEN","1","1497","ST NICHOLAS AVENUE","10033","2127952569","53","2012-06-15 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41355897","POLLO DORADO FRIED CHICKEN","1","1497","ST NICHOLAS AVENUE","10033","2127952569","53","2012-06-15 00:00:00","G","09C","49","","","2013-09-13 01:01:06.177000000" +"41378125","PUNTO DE SABOR","1","1464","ST NICHOLAS AVENUE","10033","2129282298","53","2012-09-20 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41378125","PUNTO DE SABOR","1","1464","ST NICHOLAS AVENUE","10033","2129282298","53","2012-09-20 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41378305","CURRY EXPRESS","1","130","EAST 29 STREET","10016","2122510202","44","2010-08-25 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41378305","CURRY EXPRESS","1","130","EAST 29 STREET","10016","2122510202","44","2010-08-25 00:00:00","F","05F","49","","","2013-09-13 01:01:06.177000000" +"41356276","MR. BAGEL","4","68-64","FRESH POND ROAD","11385","7183815700","03","2011-08-02 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41385488","INAKAYA","1","620","8 AVENUE","10018","2123542195","49","2011-04-05 00:00:00","F","02B","32","","","2013-09-13 01:01:06.177000000" +"41385488","INAKAYA","1","620","8 AVENUE","10018","2123542195","49","2011-04-05 00:00:00","F","04K","32","","","2013-09-13 01:01:06.177000000" +"41385488","INAKAYA","1","620","8 AVENUE","10018","2123542195","49","2011-05-24 00:00:00","D","10I","13","A","2011-05-24 00:00:00","2013-09-13 01:01:06.177000000" +"41378334","B.B.Q. VILLAGE PALACE","4","181-02/12","HILLSIDE AVENUE","11432","7182989099","44","2012-02-09 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41351040","HUDSON VIEW RESTAURANT","1","770 ","WEST 181 STREET ","10033","2127810303","03","2012-04-06 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2010-06-02 16:32:00","F","06E","29","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2010-06-02 16:32:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2010-06-02 16:32:00","F","10G","29","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2011-01-28 00:00:00","P","06E","17","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2011-08-16 00:00:00","F","08A","42","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2012-02-07 00:00:00","P","09C","27","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2012-08-27 00:00:00","F","10B","21","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2012-09-10 00:00:00","G","06A","48","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2013-03-25 00:00:00","F","04J","43","","","2013-09-13 01:01:06.177000000" +"41385990","MITOUSHI SUSHI","3","1221 ","QUENTIN ROAD ","11229","7189989882","49","2010-03-25 11:53:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41385990","MITOUSHI SUSHI","3","1221 ","QUENTIN ROAD ","11229","7189989882","49","2010-03-25 11:53:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2010-11-03 00:00:00","F","02G","41","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2011-04-15 00:00:00","D","06C","10","A","2011-04-15 00:00:00","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2012-04-14 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2012-04-25 00:00:00","U","10B","23","B","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2013-02-11 00:00:00","P","02B","15","","","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2011-07-28 00:00:00","U","10B","11","B","2011-07-28 00:00:00","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2012-08-15 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2013-02-20 00:00:00","F","02G","27","","","2013-09-13 01:01:06.177000000" +"41351748","SUBWAY","2","2703","WHITE PLAINS ROAD","10467","7185153100","69","2011-07-26 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2011-06-22 00:00:00","U","02B","11","B","2011-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2011-12-29 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2013-09-06 00:00:00","G","08A","50","","","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2011-12-07 00:00:00","U","08A","20","B","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41360079","FIVE LEAVES","3","18","BEDFORD AVENUE","11222","7183835345","03","2013-02-11 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2011-04-14 00:00:00","P","06E","17","","","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2013-04-02 00:00:00","P","04M","18","","","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2013-04-02 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2012-07-31 00:00:00","D","06F","12","A","2012-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-01-16 00:00:00","F","02B","70","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-08-29 00:00:00","F","04H","42","","","2013-09-13 01:01:06.177000000" +"41379907","JASLOWICZANKA POLISH BAKERY","3","163","NASSAU AVENUE","11222","7183890263","64","2013-07-10 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2011-04-25 00:00:00","G","08A","54","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2011-04-25 00:00:00","G","10F","54","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2012-01-11 00:00:00","F","02B","31","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2012-01-11 00:00:00","F","10F","31","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2012-02-01 00:00:00","D","08A","12","A","2012-02-01 00:00:00","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2012-06-19 00:00:00","P","06F","26","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2012-06-19 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2012-07-26 00:00:00","D","06D","9","A","2012-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2012-07-26 00:00:00","D","10F","9","A","2012-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2013-01-24 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2013-01-24 00:00:00","P","10B","20","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2013-08-29 00:00:00","P","06F","19","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2010-12-16 00:00:00","F","04C","46","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2010-12-16 00:00:00","F","04M","46","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2011-05-18 00:00:00","P","10B","20","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-01-04 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-06-14 00:00:00","F","02G","73","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-06-14 00:00:00","F","06C","73","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-12-07 00:00:00","O","02G","8","P","2012-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-03-22 00:00:00","P","04L","27","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-09-08 00:00:00","F","02B","35","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-09-21 00:00:00","F","04C","21","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41353598","NIO'S WEST INDIAN RESTAURANT & BAKERY","3","2702","CHURCH AVENUE","11226","7182879848","17","2011-12-16 00:00:00","G","02B","49","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2010-09-27 00:00:00","F","02B","40","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2010-09-27 00:00:00","F","10B","40","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2011-05-25 00:00:00","F","04L","41","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2011-05-25 00:00:00","F","06D","41","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-05-11 19:26:00","F","04I","46","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-09-22 00:00:00","F","02B","36","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-09-22 00:00:00","F","04N","36","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-12-28 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2012-02-15 00:00:00","F","08A","28","C","2012-02-15 00:00:00","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2012-08-31 00:00:00","F","10F","55","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2013-04-11 00:00:00","P","04M","12","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2013-05-03 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2010-05-10 16:13:00","F","10C","32","","","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2011-11-30 00:00:00","D","06D","12","A","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2011-02-07 00:00:00","F","02G","21","","","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2011-02-07 00:00:00","F","06E","21","","","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2011-03-03 00:00:00","D","10I","9","A","2011-03-03 00:00:00","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2011-08-20 00:00:00","P","08C","21","","","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2013-05-06 00:00:00","D","10F","4","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-11-24 00:00:00","U","04L","23","B","2010-11-24 00:00:00","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2011-05-10 00:00:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2011-05-10 00:00:00","F","06C","36","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2011-06-17 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2011-07-06 00:00:00","D","06C","13","A","2011-07-06 00:00:00","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2011-11-22 00:00:00","F","02G","39","C","2011-11-22 00:00:00","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2010-12-03 00:00:00","P","10B","19","","","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2011-07-12 00:00:00","P","06D","21","","","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2011-07-12 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2012-03-05 00:00:00","P","10I","16","","","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2012-03-12 00:00:00","U","02B","23","B","2012-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2012-03-12 00:00:00","U","04A","23","B","2012-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41362519","DEEP BLUE","4","000","JOHN F KENNEDY INTL AIRPORT","11430","7186566210","49","2012-06-15 00:00:00","D","10F","12","A","2012-06-15 00:00:00","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2011-10-27 00:00:00","F","04H","37","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2011-10-27 00:00:00","F","08A","37","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2012-03-24 00:00:00","F","06E","43","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2012-09-20 00:00:00","P","04A","22","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2013-04-10 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41387911","ZUZU RAMEN","3","173","4 AVENUE","11217","7183989898","49","2011-01-13 00:00:00","C","02G","10","A","2011-01-13 00:00:00","2013-09-13 01:01:06.177000000" +"41387911","ZUZU RAMEN","3","173","4 AVENUE","11217","7183989898","49","2011-12-22 00:00:00","D","10F","4","A","2011-12-22 00:00:00","2013-09-13 01:01:06.177000000" +"41387911","ZUZU RAMEN","3","173","4 AVENUE","11217","7183989898","49","2013-06-13 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41355897","POLLO DORADO FRIED CHICKEN","1","1497","ST NICHOLAS AVENUE","10033","2127952569","53","2012-06-15 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41356276","MR. BAGEL","4","68-64","FRESH POND ROAD","11385","7183815700","03","2011-08-02 00:00:00","F","03C","49","","","2013-09-13 01:01:06.177000000" +"41351040","HUDSON VIEW RESTAURANT","1","770 ","WEST 181 STREET ","10033","2127810303","03","2012-04-06 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41351040","HUDSON VIEW RESTAURANT","1","770 ","WEST 181 STREET ","10033","2127810303","03","2012-04-06 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41351040","HUDSON VIEW RESTAURANT","1","770 ","WEST 181 STREET ","10033","2127810303","03","2012-04-06 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41341734","CHINA VILLAGE RESTAURANT","1","94","BAXTER STREET","10013","2129416679","20","2012-02-23 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41341734","CHINA VILLAGE RESTAURANT","1","94","BAXTER STREET","10013","2129416679","20","2012-02-23 00:00:00","F","09B","49","","","2013-09-13 01:01:06.177000000" +"41388838","SOUEN NOODLE","1","326","EAST 6 STREET","10003","2123881155","49","2010-12-14 00:00:00","F","06C","53","","","2013-09-13 01:01:06.177000000" +"41388838","SOUEN NOODLE","1","326","EAST 6 STREET","10003","2123881155","49","2011-07-25 00:00:00","D","06E","9","A","2011-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"41388838","SOUEN NOODLE","1","326","EAST 6 STREET","10003","2123881155","49","2013-06-24 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41388846","MI TIERRA ECUATORIANA","3","386","LEONARD STREET","11211","7185990070","53","2010-08-16 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2011-10-12 00:00:00","D","10F","3","A","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2012-05-07 00:00:00","P","04H","16","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2012-12-13 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41351748","SUBWAY","2","2703","WHITE PLAINS ROAD","10467","7185153100","69","2011-07-26 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2011-12-07 00:00:00","U","04K","20","B","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2012-07-09 00:00:00","F","04M","32","","","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2012-07-26 00:00:00","F","06D","29","C","2012-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2013-04-10 00:00:00","P","10H","21","","","2013-09-13 01:01:06.177000000" +"41357256","PHIL'S PIZZA WEST VILLAGE","1","226","VARICK STREET","10014","2122438629","62","2012-08-14 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41357926","EL PASO TAQUERIA","1","64","EAST 97 STREET","10029","2129961739","55","2011-07-13 00:00:00","F","06D","49","C","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41357926","EL PASO TAQUERIA","1","64","EAST 97 STREET","10029","2129961739","55","2011-07-13 00:00:00","F","06E","49","C","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41389136","SUSHI DELIGHT","1","157","HESTER STREET","10013","9174780453","49","2011-04-07 00:00:00","P","02G","16","","","2013-09-13 01:01:06.177000000" +"41389136","SUSHI DELIGHT","1","157","HESTER STREET","10013","9174780453","49","2012-01-27 00:00:00","D","06B","12","A","2012-01-27 00:00:00","2013-09-13 01:01:06.177000000" +"41389136","SUSHI DELIGHT","1","157","HESTER STREET","10013","9174780453","49","2012-06-06 00:00:00","D","09B","8","A","2012-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2010-10-28 00:00:00","C","04N","12","A","2010-10-28 00:00:00","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2011-04-14 00:00:00","P","04M","17","","","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2012-01-25 00:00:00","F","06F","44","","","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2011-06-22 00:00:00","F","04J","35","C","2011-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2011-06-22 00:00:00","F","08A","35","C","2011-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2013-04-02 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2011-04-05 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2011-06-14 00:00:00","F","04L","35","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2012-01-12 00:00:00","F","04N","7","C","2012-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2012-01-12 00:00:00","F","99B","7","C","2012-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-01-16 00:00:00","F","06C","70","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-01-10 00:00:00","F","02G","39","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-06-05 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-06-05 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-12-18 00:00:00","D","04L","11","A","2012-12-18 00:00:00","2013-09-13 01:01:06.177000000" +"41353598","NIO'S WEST INDIAN RESTAURANT & BAKERY","3","2702","CHURCH AVENUE","11226","7182879848","17","2011-12-16 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2011-05-25 00:00:00","F","06C","41","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2011-11-21 00:00:00","D","06D","10","A","2011-11-21 00:00:00","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2012-11-20 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-06-04 11:14:00","U","06D","11","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-11-24 00:00:00","U","10B","23","B","2010-11-24 00:00:00","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2011-05-10 00:00:00","F","04M","36","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2011-12-07 00:00:00","D","10F","9","A","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2011-03-08 00:00:00","F","04H","32","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2011-09-12 00:00:00","F","02B","38","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2012-02-22 00:00:00","U","06A","12","B","2012-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2012-12-31 00:00:00","F","08A","52","C","2012-12-31 00:00:00","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2013-06-11 00:00:00","P","10B","15","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2010-07-06 14:43:00","U","08C","26","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2012-08-27 00:00:00","F","04N","21","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2012-09-10 00:00:00","G","04H","48","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2012-09-10 00:00:00","G","08A","48","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2013-03-25 00:00:00","F","02G","43","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2013-03-25 00:00:00","F","08A","43","","","2013-09-13 01:01:06.177000000" +"41385488","INAKAYA","1","620","8 AVENUE","10018","2123542195","49","2011-09-22 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41385488","INAKAYA","1","620","8 AVENUE","10018","2123542195","49","2013-04-29 00:00:00","P","04N","15","","","2013-09-13 01:01:06.177000000" +"41346769","BED-STUY FISH FRY","3","801","HALSEY STREET","11233","3474059820","73","2011-11-15 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2011-09-08 00:00:00","D","08A","12","A","2011-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2011-09-08 00:00:00","D","10B","12","A","2011-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2013-04-02 00:00:00","F","09B","19","","","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2010-01-20 19:48:00","U","04M","19","","","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2011-02-08 00:00:00","U","04C","14","B","2011-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2012-02-03 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41385990","MITOUSHI SUSHI","3","1221 ","QUENTIN ROAD ","11229","7189989882","49","2010-03-25 11:53:00","F","04I","49","","","2013-09-13 01:01:06.177000000" +"41385990","MITOUSHI SUSHI","3","1221 ","QUENTIN ROAD ","11229","7189989882","49","2010-03-25 11:53:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41385990","MITOUSHI SUSHI","3","1221 ","QUENTIN ROAD ","11229","7189989882","49","2011-06-13 00:00:00","P","09B","16","","","2013-09-13 01:01:06.177000000" +"41385990","MITOUSHI SUSHI","3","1221 ","QUENTIN ROAD ","11229","7189989882","49","2011-12-28 00:00:00","D","99B","8","A","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41355257","CASTILLO ECUATORIANO RESTAURANT","3","4020","5 AVENUE","11232","7184377676","53","2011-07-07 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41355897","POLLO DORADO FRIED CHICKEN","1","1497","ST NICHOLAS AVENUE","10033","2127952569","53","2012-06-15 00:00:00","G","06F","49","","","2013-09-13 01:01:06.177000000" +"41355897","POLLO DORADO FRIED CHICKEN","1","1497","ST NICHOLAS AVENUE","10033","2127952569","53","2012-06-15 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41356276","MR. BAGEL","4","68-64","FRESH POND ROAD","11385","7183815700","03","2011-08-02 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41356276","MR. BAGEL","4","68-64","FRESH POND ROAD","11385","7183815700","03","2011-08-02 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2011-12-22 00:00:00","P","06C","15","","","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2012-06-25 00:00:00","D","10F","7","A","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2013-05-28 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41362519","DEEP BLUE","4","000","JOHN F KENNEDY INTL AIRPORT","11430","7186566210","49","2010-12-28 00:00:00","C","08A","11","A","2010-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41362519","DEEP BLUE","4","000","JOHN F KENNEDY INTL AIRPORT","11430","7186566210","49","2012-06-15 00:00:00","D","08A","12","A","2012-06-15 00:00:00","2013-09-13 01:01:06.177000000" +"41362519","DEEP BLUE","4","000","JOHN F KENNEDY INTL AIRPORT","11430","7186566210","49","2013-05-16 00:00:00","F","04N","24","","","2013-09-13 01:01:06.177000000" +"41362519","DEEP BLUE","4","000","JOHN F KENNEDY INTL AIRPORT","11430","7186566210","49","2013-05-16 00:00:00","F","08A","24","","","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2011-05-23 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2010-06-30 08:57:00","D","09D","7","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-01-17 00:00:00","F","06F","25","C","2012-01-17 00:00:00","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-06-14 00:00:00","F","06E","73","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-06-14 00:00:00","F","10B","73","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-06-25 00:00:00","F","04M","17","C","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-12-04 00:00:00","G","10E","54","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-12-17 00:00:00","U","02G","19","B","2012-12-17 00:00:00","2013-09-13 01:01:06.177000000" +"41394230","EAST SUSHI","5","4371","AMBOY ROAD","10312","7189668888","49","2011-09-30 00:00:00","D","02G","8","A","2011-09-30 00:00:00","2013-09-13 01:01:06.177000000" +"41394230","EAST SUSHI","5","4371","AMBOY ROAD","10312","7189668888","49","2012-03-31 00:00:00","D","06D","13","A","2012-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2010-11-09 00:00:00","F","02G","54","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2011-04-18 00:00:00","F","04C","65","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2011-04-18 00:00:00","F","06C","65","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2011-05-12 00:00:00","D","06F","11","A","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2011-05-12 00:00:00","D","09C","11","A","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2011-05-12 00:00:00","D","10F","11","A","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2013-03-04 00:00:00","F","04H","11","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2013-08-29 00:00:00","P","04M","19","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2013-05-23 00:00:00","F","05F","28","","","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2010-12-03 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2010-12-03 00:00:00","P","22C","19","","","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2010-12-29 00:00:00","U","06A","20","B","2010-12-29 00:00:00","2013-09-13 01:01:06.177000000" +"41394768","Picnic Garden","4","147-42","NORTHERN BOULEVARD","11354","7183585959","52","2013-07-24 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41394959","BOHEMIAN NEW YORK","1","57","GREAT JONES ST","10012","2123881070","49","2011-04-30 00:00:00","B","06D","7","A","2011-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41394959","BOHEMIAN NEW YORK","1","57","GREAT JONES ST","10012","2123881070","49","2012-04-10 00:00:00","P","06A","14","","","2013-09-13 01:01:06.177000000" +"41394959","BOHEMIAN NEW YORK","1","57","GREAT JONES ST","10012","2123881070","49","2012-04-18 00:00:00","U","06C","2","B","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41394959","BOHEMIAN NEW YORK","1","57","GREAT JONES ST","10012","2123881070","49","2012-04-18 00:00:00","U","10F","2","B","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41394959","BOHEMIAN NEW YORK","1","57","GREAT JONES ST","10012","2123881070","49","2013-02-19 00:00:00","F","10H","47","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2010-10-04 00:00:00","F","09C","28","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2010-10-04 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2011-04-18 00:00:00","P","02B","20","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2011-12-29 00:00:00","F","04C","30","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2011-12-29 00:00:00","F","06C","30","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2012-07-31 00:00:00","F","06F","50","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2012-07-31 00:00:00","F","10F","50","","","2013-09-13 01:01:06.177000000" +"41370445","SUSHI YAMA","3","268","PROSPECT PARK WEST","11215","7187883896","49","2010-08-11 00:00:00","P","04A","17","","","2013-09-13 01:01:06.177000000" +"41370445","SUSHI YAMA","3","268","PROSPECT PARK WEST","11215","7187883896","49","2011-04-23 00:00:00","U","02B","7","B","2011-04-23 00:00:00","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2011-07-12 00:00:00","P","08C","21","","","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2012-09-25 00:00:00","P","04M","13","","","2013-09-13 01:01:06.177000000" +"41387911","ZUZU RAMEN","3","173","4 AVENUE","11217","7183989898","49","2011-01-13 00:00:00","C","22C","10","A","2011-01-13 00:00:00","2013-09-13 01:01:06.177000000" +"41387911","ZUZU RAMEN","3","173","4 AVENUE","11217","7183989898","49","2012-12-28 00:00:00","P","04C","16","","","2013-09-13 01:01:06.177000000" +"41387911","ZUZU RAMEN","3","173","4 AVENUE","11217","7183989898","49","2012-12-28 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"41360079","FIVE LEAVES","3","18","BEDFORD AVENUE","11222","7183835345","03","2013-02-11 00:00:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-04-20 11:06:00","F","06E","74","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-10-27 00:00:00","U","06E","18","B","2010-10-27 00:00:00","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2011-06-29 00:00:00","F","10B","20","C","2011-06-29 00:00:00","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2011-11-16 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2011-11-16 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2011-11-29 00:00:00","F","04D","19","C","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2011-11-29 00:00:00","F","10F","19","C","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2012-09-10 00:00:00","P","06F","19","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2013-03-19 00:00:00","P","06A","17","","","2013-09-13 01:01:06.177000000" +"41371506","BUTTER LANE","1","123","EAST 7 STREET","10009","2126772880","08","2011-10-11 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2010-11-04 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2011-07-06 00:00:00","D","06E","13","A","2011-07-06 00:00:00","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2012-05-23 00:00:00","P","10B","21","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2011-05-17 00:00:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2011-05-17 00:00:00","F","04H","36","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2011-05-17 00:00:00","F","10H","36","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2011-10-27 00:00:00","F","04A","37","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2011-11-21 00:00:00","U","04L","19","B","2011-11-21 00:00:00","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2012-03-24 00:00:00","F","06C","43","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2012-09-20 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2012-10-03 00:00:00","D","10F","12","A","2012-10-03 00:00:00","2013-09-13 01:01:06.177000000" +"41345086","BAKERY RZESZOWSKA","3","948","MANHATTAN AVENUE","11222","7183838142","08","2013-06-11 00:00:00","G","05H","49","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2010-07-06 14:43:00","U","02G","26","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2013-03-25 00:00:00","F","04K","43","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2013-03-25 00:00:00","F","10F","43","","","2013-09-13 01:01:06.177000000" +"41396618","BINY JAPANESE RESTAURANT","1","393","CANAL STREET","10013","2123345490","49","2010-11-03 00:00:00","D","10F","5","A","2010-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41396618","BINY JAPANESE RESTAURANT","1","393","CANAL STREET","10013","2123345490","49","2011-10-31 00:00:00","D","06D","13","A","2011-10-31 00:00:00","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2011-12-29 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2013-03-28 00:00:00","F","06F","14","","","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2013-04-17 00:00:00","D","06C","12","A","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2013-09-06 00:00:00","G","06D","50","","","2013-09-13 01:01:06.177000000" +"41388838","SOUEN NOODLE","1","326","EAST 6 STREET","10003","2123881155","49","2010-12-14 00:00:00","F","04H","53","","","2013-09-13 01:01:06.177000000" +"41388838","SOUEN NOODLE","1","326","EAST 6 STREET","10003","2123881155","49","2013-06-24 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41388838","SOUEN NOODLE","1","326","EAST 6 STREET","10003","2123881155","49","2013-06-24 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41388846","MI TIERRA ECUATORIANA","3","386","LEONARD STREET","11211","7185990070","53","2010-08-16 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2011-02-07 00:00:00","F","10F","21","","","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2011-03-03 00:00:00","D","10F","9","A","2011-03-03 00:00:00","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2012-01-31 00:00:00","D","10F","11","A","2012-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2010-09-18 00:00:00","U","04L","5","B","2010-09-18 00:00:00","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2011-05-02 00:00:00","F","06F","41","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2011-05-02 00:00:00","F","08A","41","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2011-05-02 00:00:00","F","10F","41","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2012-05-18 00:00:00","D","10F","10","A","2012-05-18 00:00:00","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2013-01-29 00:00:00","D","10D","11","A","2013-01-29 00:00:00","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2013-06-24 00:00:00","F","05F","73","","","2013-09-13 01:01:06.177000000" +"41389136","SUSHI DELIGHT","1","157","HESTER STREET","10013","9174780453","49","2011-04-18 00:00:00","F","02G","24","C","2011-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41389136","SUSHI DELIGHT","1","157","HESTER STREET","10013","9174780453","49","2012-01-05 00:00:00","P","06C","24","","","2013-09-13 01:01:06.177000000" +"41389136","SUSHI DELIGHT","1","157","HESTER STREET","10013","9174780453","49","2012-06-06 00:00:00","D","10F","8","A","2012-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2010-05-26 19:35:00","F","04I","48","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2010-05-26 19:35:00","F","10G","48","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2011-06-16 00:00:00","P","06D","18","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2012-03-02 00:00:00","D","06C","12","A","2012-03-02 00:00:00","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2012-03-02 00:00:00","D","08C","12","A","2012-03-02 00:00:00","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2012-07-19 00:00:00","P","04C","24","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2012-07-19 00:00:00","P","06A","24","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2013-04-11 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41372752","LIGHTHOUSE RESTAURANT & BAKERY","3","571","VAN SICLEN AVENUE","11207","7183426468","17","2010-10-25 00:00:00","F","04L","49","C","2010-10-25 00:00:00","2013-09-13 01:01:06.177000000" +"41372752","LIGHTHOUSE RESTAURANT & BAKERY","3","571","VAN SICLEN AVENUE","11207","7183426468","17","2010-10-25 00:00:00","F","05F","49","C","2010-10-25 00:00:00","2013-09-13 01:01:06.177000000" +"41372752","LIGHTHOUSE RESTAURANT & BAKERY","3","571","VAN SICLEN AVENUE","11207","7183426468","17","2010-10-25 00:00:00","F","08C","49","C","2010-10-25 00:00:00","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2010-09-20 00:00:00","F","04H","44","","","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2010-09-20 00:00:00","F","08A","44","","","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2010-10-28 00:00:00","C","04M","12","A","2010-10-28 00:00:00","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2011-06-22 00:00:00","F","02G","35","C","2011-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2013-04-02 00:00:00","F","16A","","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2011-06-14 00:00:00","F","06A","35","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2011-07-20 00:00:00","U","02G","10","B","2011-07-20 00:00:00","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2011-11-12 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2011-11-12 00:00:00","P","08B","24","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2012-01-12 00:00:00","F","04M","7","C","2012-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2012-07-19 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2012-07-19 00:00:00","P","06D","23","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-01-16 00:00:00","F","06D","70","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-01-16 00:00:00","F","10H","70","","","2013-09-13 01:01:06.177000000" +"41373322","ICHIE","1","53","WEST 106 STREET","10025","2128652888","49","2010-03-11 15:10:00","F","02B","43","","","2013-09-13 01:01:06.177000000" +"41373322","ICHIE","1","53","WEST 106 STREET","10025","2128652888","49","2010-03-11 15:10:00","F","04N","43","","","2013-09-13 01:01:06.177000000" +"41373322","ICHIE","1","53","WEST 106 STREET","10025","2128652888","49","2010-09-22 00:00:00","D","22C","","A","2010-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2011-03-19 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2011-03-19 00:00:00","P","04M","20","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2011-05-17 00:00:00","F","10B","25","C","2011-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2011-10-19 00:00:00","F","04C","34","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2011-10-19 00:00:00","F","06D","34","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2013-01-05 00:00:00","F","02B","33","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-06-14 00:00:00","F","06B","73","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-06-25 00:00:00","F","02G","17","C","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-12-04 00:00:00","G","10I","54","","","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2011-01-29 00:00:00","P","06B","5","","","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2011-08-31 00:00:00","U","08C","10","B","2011-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2011-10-12 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41353598","NIO'S WEST INDIAN RESTAURANT & BAKERY","3","2702","CHURCH AVENUE","11226","7182879848","17","2011-12-16 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41353598","NIO'S WEST INDIAN RESTAURANT & BAKERY","3","2702","CHURCH AVENUE","11226","7182879848","17","2011-12-16 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2011-03-08 00:00:00","F","10B","32","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2011-03-08 00:00:00","F","99B","32","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2011-05-10 00:00:00","U","04L","21","B","2011-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2011-09-12 00:00:00","F","02G","38","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2012-02-22 00:00:00","U","04M","12","B","2012-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2012-02-22 00:00:00","U","08A","12","B","2012-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2013-06-11 00:00:00","P","08A","15","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2011-07-18 00:00:00","D","06C","12","A","2011-07-18 00:00:00","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2013-07-02 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2013-07-02 00:00:00","P","02H","19","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2013-07-02 00:00:00","P","09B","19","","","2013-09-13 01:01:06.177000000" +"41355257","CASTILLO ECUATORIANO RESTAURANT","3","4020","5 AVENUE","11232","7184377676","53","2011-07-07 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2010-01-25 15:03:00","U","02H","14","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2011-10-26 00:00:00","F","02G","37","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2011-10-26 00:00:00","F","06D","37","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2011-10-26 00:00:00","F","09B","37","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2012-05-23 00:00:00","P","09C","21","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2012-06-04 00:00:00","D","06D","12","A","2012-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2010-05-05 12:49:00","G","10G","39","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2010-06-10 16:29:00","D","10G","6","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2011-06-25 00:00:00","D","06F","9","A","2011-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2010-12-02 00:00:00","P","04M","20","","","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2010-12-02 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2011-05-20 00:00:00","P","04E","25","","","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2011-05-20 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2010-10-07 00:00:00","U","04A","12","B","2010-10-07 00:00:00","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2010-10-07 00:00:00","U","09B","12","B","2010-10-07 00:00:00","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2011-07-01 00:00:00","U","02B","12","B","2011-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2011-11-09 00:00:00","P","04L","17","","","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2012-07-12 00:00:00","D","09C","10","A","2012-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2012-07-12 00:00:00","D","10F","10","A","2012-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2011-10-27 00:00:00","F","04L","37","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2011-10-27 00:00:00","F","08C","37","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2011-11-21 00:00:00","U","04H","19","B","2011-11-21 00:00:00","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2011-11-21 00:00:00","U","08A","19","B","2011-11-21 00:00:00","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2012-03-24 00:00:00","F","05D","43","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2012-10-03 00:00:00","D","02G","12","A","2012-10-03 00:00:00","2013-09-13 01:01:06.177000000" +"41370445","SUSHI YAMA","3","268","PROSPECT PARK WEST","11215","7187883896","49","2010-08-11 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2011-05-18 00:00:00","G","04L","76","","","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2011-05-18 00:00:00","G","09C","76","","","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2011-05-18 00:00:00","G","10F","76","","","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2013-06-03 00:00:00","P","06E","18","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2010-11-09 00:00:00","F","08A","54","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2010-11-09 00:00:00","F","10F","54","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2010-11-09 00:00:00","F","99B","54","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2011-04-18 00:00:00","F","99B","65","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2011-10-05 00:00:00","P","04N","18","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2011-10-05 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2011-03-03 00:00:00","U","04L","25","B","2011-03-03 00:00:00","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2011-08-24 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2011-09-20 00:00:00","D","06D","11","A","2011-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2011-09-20 00:00:00","D","10H","11","A","2011-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2012-01-23 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"41357256","PHIL'S PIZZA WEST VILLAGE","1","226","VARICK STREET","10014","2122438629","62","2012-08-14 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41357926","EL PASO TAQUERIA","1","64","EAST 97 STREET","10029","2129961739","55","2011-07-13 00:00:00","F","02B","49","C","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41394959","BOHEMIAN NEW YORK","1","57","GREAT JONES ST","10012","2123881070","49","2013-02-19 00:00:00","F","06C","47","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2010-10-04 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2012-07-31 00:00:00","F","04H","50","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2012-08-15 00:00:00","U","08A","21","B","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2013-01-17 00:00:00","P","10B","15","","","2013-09-13 01:01:06.177000000" +"41371506","BUTTER LANE","1","123","EAST 7 STREET","10009","2126772880","08","2011-10-11 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2010-01-20 19:48:00","U","02G","19","","","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2011-02-08 00:00:00","U","06C","14","B","2011-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2011-08-16 00:00:00","F","04H","28","","","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2011-08-31 00:00:00","U","10B","10","B","2011-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2012-02-03 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2010-09-20 00:00:00","F","04N","44","","","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2010-09-20 00:00:00","F","10B","44","","","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2011-04-14 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-04-20 11:06:00","F","05D","74","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-05-24 13:34:00","U","99B","27","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2011-06-01 00:00:00","F","10B","35","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2011-11-16 00:00:00","P","06A","19","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2012-04-05 00:00:00","F","06F","45","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2012-09-10 00:00:00","P","10J","19","","","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2011-11-29 00:00:00","D","10I","4","A","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2011-06-14 00:00:00","F","06C","35","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2011-11-12 00:00:00","P","04M","24","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-01-16 00:00:00","F","04C","70","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-01-16 00:00:00","F","04M","70","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-01-16 00:00:00","F","06B","70","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-08-29 00:00:00","F","02G","42","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-08-29 00:00:00","F","06E","42","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2013-08-29 00:00:00","F","10H","42","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2012-10-06 00:00:00","D","06D","12","A","2012-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"41360079","FIVE LEAVES","3","18","BEDFORD AVENUE","11222","7183835345","03","2013-02-11 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41406628","THIS AND THAT NO NONSENSE RESTAURANT","3","419","EAST 98 STREET","11212","7183850658","17","2011-04-06 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41353598","NIO'S WEST INDIAN RESTAURANT & BAKERY","3","2702","CHURCH AVENUE","11226","7182879848","17","2011-12-16 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2010-09-27 00:00:00","F","06F","40","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2010-09-27 00:00:00","F","08A","40","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2010-09-27 00:00:00","F","99B","40","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2010-12-20 00:00:00","C","10B","5","A","2010-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2011-05-25 00:00:00","F","08A","41","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2011-11-21 00:00:00","D","10F","10","A","2011-11-21 00:00:00","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2013-02-06 00:00:00","D","10B","7","A","2013-02-06 00:00:00","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2013-07-02 00:00:00","P","09C","19","","","2013-09-13 01:01:06.177000000" +"41396618","BINY JAPANESE RESTAURANT","1","393","CANAL STREET","10013","2123345490","49","2012-02-10 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41396810","PEACE FOOD CAFE","1","460","AMSTERDAM AVENUE","10024","2123622266","03","2011-05-16 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41396810","PEACE FOOD CAFE","1","460","AMSTERDAM AVENUE","10024","2123622266","03","2011-05-16 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41408277","NOBI SUSHI","1","437","3RD AVENUE","10016","2124818333","49","2011-01-10 00:00:00","F","08A","21","","","2013-09-13 01:01:06.177000000" +"41408277","NOBI SUSHI","1","437","3RD AVENUE","10016","2124818333","49","2011-02-11 00:00:00","D","10F","12","A","2011-02-11 00:00:00","2013-09-13 01:01:06.177000000" +"41408277","NOBI SUSHI","1","437","3RD AVENUE","10016","2124818333","49","2011-09-22 00:00:00","U","06F","19","B","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41408277","NOBI SUSHI","1","437","3RD AVENUE","10016","2124818333","49","2012-04-25 00:00:00","U","06E","11","B","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2010-05-26 19:35:00","F","06C","48","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2010-06-17 21:54:00","U","06D","27","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2011-06-16 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2012-03-02 00:00:00","D","10F","12","A","2012-03-02 00:00:00","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2012-07-19 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2012-07-19 00:00:00","P","10F","24","","","2013-09-13 01:01:06.177000000" +"41372752","LIGHTHOUSE RESTAURANT & BAKERY","3","571","VAN SICLEN AVENUE","11207","7183426468","17","2010-10-25 00:00:00","F","02G","49","C","2010-10-25 00:00:00","2013-09-13 01:01:06.177000000" +"41372868","MONOKAWA","1","157","EAST 28 STREET","10016","2126847830","49","2011-03-23 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41372868","MONOKAWA","1","157","EAST 28 STREET","10016","2126847830","49","2011-10-18 00:00:00","P","04C","15","","","2013-09-13 01:01:06.177000000" +"41378305","CURRY EXPRESS","1","130","EAST 29 STREET","10016","2122510202","44","2010-08-25 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2011-03-03 00:00:00","D","22A","9","A","2011-03-03 00:00:00","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2013-04-02 00:00:00","F","04L","19","","","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2013-05-06 00:00:00","D","10B","4","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2010-11-03 00:00:00","F","04C","41","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2010-11-03 00:00:00","F","09C","41","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2012-04-25 00:00:00","U","04L","23","B","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2011-02-17 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2012-08-15 00:00:00","F","10B","32","","","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2013-02-20 00:00:00","F","10I","27","","","2013-09-13 01:01:06.177000000" +"41398824","VARIETY CAFE","3","145","DRIGGS AVENUE","11222","3475992351","14","2010-10-12 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41398824","VARIETY CAFE","3","145","DRIGGS AVENUE","11222","3475992351","14","2010-10-12 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41410071","RIMINI PASTRY SHOPPE","3","6822","BAY PARKWAY","11204","7182360644","08","2013-07-16 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41410071","RIMINI PASTRY SHOPPE","3","6822","BAY PARKWAY","11204","7182360644","08","2013-07-16 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41362519","DEEP BLUE","4","000","JOHN F KENNEDY INTL AIRPORT","11430","7186566210","49","2010-12-28 00:00:00","C","04L","11","A","2010-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41362519","DEEP BLUE","4","000","JOHN F KENNEDY INTL AIRPORT","11430","7186566210","49","2013-05-16 00:00:00","F","02G","24","","","2013-09-13 01:01:06.177000000" +"41362519","DEEP BLUE","4","000","JOHN F KENNEDY INTL AIRPORT","11430","7186566210","49","2013-05-16 00:00:00","F","06E","24","","","2013-09-13 01:01:06.177000000" +"41355897","POLLO DORADO FRIED CHICKEN","1","1497","ST NICHOLAS AVENUE","10033","2127952569","53","2012-06-15 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41356276","MR. BAGEL","4","68-64","FRESH POND ROAD","11385","7183815700","03","2011-08-02 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41356276","MR. BAGEL","4","68-64","FRESH POND ROAD","11385","7183815700","03","2011-08-02 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41356276","MR. BAGEL","4","68-64","FRESH POND ROAD","11385","7183815700","03","2011-08-02 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41410764","SUBWAY","2","4375A","WHITE PLAINS ROAD","10466","7186523075","69","2012-05-22 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"41410764","SUBWAY","2","4375A","WHITE PLAINS ROAD","10466","7186523075","69","2012-05-22 00:00:00","G","06D","49","","","2013-09-13 01:01:06.177000000" +"41410764","SUBWAY","2","4375A","WHITE PLAINS ROAD","10466","7186523075","69","2012-05-22 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2012-06-12 00:00:00","F","04L","28","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2012-08-01 00:00:00","U","04M","24","B","2012-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"41379907","JASLOWICZANKA POLISH BAKERY","3","163","NASSAU AVENUE","11222","7183890263","64","2013-07-10 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41379907","JASLOWICZANKA POLISH BAKERY","3","163","NASSAU AVENUE","11222","7183890263","64","2013-07-10 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2010-11-17 00:00:00","U","06C","27","B","2010-11-17 00:00:00","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2011-04-25 00:00:00","G","04L","54","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2011-07-26 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2013-01-24 00:00:00","P","04L","20","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2013-08-29 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"41357256","PHIL'S PIZZA WEST VILLAGE","1","226","VARICK STREET","10014","2122438629","62","2012-08-14 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41357256","PHIL'S PIZZA WEST VILLAGE","1","226","VARICK STREET","10014","2122438629","62","2012-08-14 00:00:00","G","06D","49","","","2013-09-13 01:01:06.177000000" +"41357926","EL PASO TAQUERIA","1","64","EAST 97 STREET","10029","2129961739","55","2011-07-13 00:00:00","F","05D","49","C","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41412577","GENKI SUSHI","5","262","ARDEN AVENUE","10312","7182277375","49","2012-06-18 00:00:00","D","06C","12","A","2012-06-18 00:00:00","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2011-04-05 00:00:00","P","02B","26","","","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2011-12-06 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2011-12-20 00:00:00","F","02B","20","C","2011-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2011-12-20 00:00:00","F","08A","20","C","2011-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2012-04-25 00:00:00","F","05D","44","","","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2012-12-01 00:00:00","F","06E","32","","","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2013-02-14 00:00:00","U","02B","19","B","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2012-01-23 00:00:00","F","04C","28","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2012-01-23 00:00:00","F","06C","28","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2013-01-11 00:00:00","D","02G","12","A","2013-01-11 00:00:00","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2013-07-02 00:00:00","F","06F","22","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2010-06-17 21:54:00","U","10G","27","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2011-06-16 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2011-07-12 00:00:00","U","06C","25","B","2011-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2012-02-16 00:00:00","P","06C","17","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2013-04-11 00:00:00","P","06E","25","","","2013-09-13 01:01:06.177000000" +"41372752","LIGHTHOUSE RESTAURANT & BAKERY","3","571","VAN SICLEN AVENUE","11207","7183426468","17","2010-10-25 00:00:00","F","03A","49","C","2010-10-25 00:00:00","2013-09-13 01:01:06.177000000" +"41372752","LIGHTHOUSE RESTAURANT & BAKERY","3","571","VAN SICLEN AVENUE","11207","7183426468","17","2010-10-25 00:00:00","F","08A","49","C","2010-10-25 00:00:00","2013-09-13 01:01:06.177000000" +"41372752","LIGHTHOUSE RESTAURANT & BAKERY","3","571","VAN SICLEN AVENUE","11207","7183426468","17","2010-10-25 00:00:00","F","09B","49","C","2010-10-25 00:00:00","2013-09-13 01:01:06.177000000" +"41413288","MR. WONTON","4","2604","JACKSON AVENUE","11101","7184821117","20","2012-08-27 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41372868","MONOKAWA","1","157","EAST 28 STREET","10016","2126847830","49","2011-03-23 00:00:00","F","06E","31","","","2013-09-13 01:01:06.177000000" +"41372868","MONOKAWA","1","157","EAST 28 STREET","10016","2126847830","49","2011-11-18 00:00:00","F","06E","7","C","2011-11-18 00:00:00","2013-09-13 01:01:06.177000000" +"41381813","SUSHI TIME","4","7242 ","AUSTIN STREET ","11375","7182610111","49","2011-03-08 00:00:00","P","04N","6","","","2013-09-13 01:01:06.177000000" +"41381813","SUSHI TIME","4","7242 ","AUSTIN STREET ","11375","7182610111","49","2011-08-02 00:00:00","D","10B","2","A","2011-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"41402195","LAS PALMAS DELI","1","3891","BROADWAY","10032","9175210349","55","2012-02-21 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41402195","LAS PALMAS DELI","1","3891","BROADWAY","10032","9175210349","55","2012-02-21 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41373322","ICHIE","1","53","WEST 106 STREET","10025","2128652888","49","2010-03-11 15:10:00","F","08A","43","","","2013-09-13 01:01:06.177000000" +"41373322","ICHIE","1","53","WEST 106 STREET","10025","2128652888","49","2010-03-16 13:42:00","U","10C","15","","","2013-09-13 01:01:06.177000000" +"41373322","ICHIE","1","53","WEST 106 STREET","10025","2128652888","49","2011-10-05 00:00:00","D","06E","12","A","2011-10-05 00:00:00","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2011-01-26 00:00:00","F","06D","23","C","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2011-01-26 00:00:00","F","06E","23","C","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2011-05-19 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2011-07-21 00:00:00","U","02G","15","B","2011-07-21 00:00:00","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2011-05-18 00:00:00","G","99B","76","","","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2011-08-29 00:00:00","U","02G","14","B","2011-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2012-09-20 00:00:00","U","04N","6","B","2012-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2013-06-03 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2011-02-07 00:00:00","F","06C","21","","","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2011-02-07 00:00:00","F","22C","21","","","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2011-03-03 00:00:00","D","06C","9","A","2011-03-03 00:00:00","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2011-03-03 00:00:00","D","22C","9","A","2011-03-03 00:00:00","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2011-08-20 00:00:00","P","04C","21","","","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2012-01-24 00:00:00","F","04C","38","","","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2013-04-05 00:00:00","F","10C","32","","","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2011-09-08 00:00:00","D","04L","12","A","2011-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2012-01-25 00:00:00","F","09B","44","","","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2012-03-05 00:00:00","D","10F","5","A","2012-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2012-08-01 00:00:00","F","02G","41","","","2013-09-13 01:01:06.177000000" +"41383251","CARIDAD RESTAURANT","2","2230","GRAND CONCOURSE","10457","7183646545","77","2011-07-25 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2010-01-20 19:48:00","U","08A","19","","","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2012-02-03 00:00:00","P","04C","26","","","2013-09-13 01:01:06.177000000" +"41362519","DEEP BLUE","4","000","JOHN F KENNEDY INTL AIRPORT","11430","7186566210","49","2012-06-15 00:00:00","D","04L","12","A","2012-06-15 00:00:00","2013-09-13 01:01:06.177000000" +"41405662","FARRELLS","3","215","PROSPECT PARK WEST","11215","7187888779","03","2011-06-03 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41405662","FARRELLS","3","215","PROSPECT PARK WEST","11215","7187888779","03","2011-06-03 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41377990","ESTRELLA DEL MAR RESTAURANT","4","552","SENECA AVENUE","11385","7184567496","53","2010-09-23 00:00:00","F","04L","49","C","2010-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"41378125","PUNTO DE SABOR","1","1464","ST NICHOLAS AVENUE","10033","2129282298","53","2012-09-20 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"41378125","PUNTO DE SABOR","1","1464","ST NICHOLAS AVENUE","10033","2129282298","53","2012-09-20 00:00:00","G","10B","49","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2012-01-23 00:00:00","F","06E","28","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2012-06-18 00:00:00","F","04N","25","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2012-06-18 00:00:00","F","06C","25","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2012-06-28 00:00:00","D","10I","13","A","2012-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2012-12-06 00:00:00","P","02B","18","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2012-12-06 00:00:00","P","04M","18","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2012-04-25 00:00:00","U","10H","23","B","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2011-07-11 00:00:00","D","10B","3","A","2011-07-11 00:00:00","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-12-18 00:00:00","D","08A","11","A","2012-12-18 00:00:00","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2012-01-27 00:00:00","P","06E","23","","","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2012-01-27 00:00:00","P","10E","23","","","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2012-08-15 00:00:00","F","06D","32","","","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2013-02-20 00:00:00","F","04H","27","","","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2010-09-24 00:00:00","F","04C","31","","","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2011-02-26 00:00:00","F","02G","26","C","2011-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2011-09-06 00:00:00","D","02B","11","A","2011-09-06 00:00:00","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2012-07-12 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2013-02-21 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"41407838","SUBWAY","1","612","8 AVENUE","10018","2122219480","75","2011-10-31 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41418929","SUSHI JUN","1","875","3 AVENUE","10022","2123555303","49","2010-06-21 13:37:00","U","09C","27","","","2013-09-13 01:01:06.177000000" +"41418929","SUSHI JUN","1","875","3 AVENUE","10022","2123555303","49","2011-06-13 00:00:00","D","06C","8","A","2011-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41385488","INAKAYA","1","620","8 AVENUE","10018","2123542195","49","2011-04-05 00:00:00","F","10F","32","","","2013-09-13 01:01:06.177000000" +"41370445","SUSHI YAMA","3","268","PROSPECT PARK WEST","11215","7187883896","49","2011-03-23 00:00:00","P","02B","23","","","2013-09-13 01:01:06.177000000" +"41408277","NOBI SUSHI","1","437","3RD AVENUE","10016","2124818333","49","2011-08-25 00:00:00","P","04N","24","","","2013-09-13 01:01:06.177000000" +"41408277","NOBI SUSHI","1","437","3RD AVENUE","10016","2124818333","49","2012-04-02 00:00:00","P","10I","16","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2010-11-17 00:00:00","U","08A","27","B","2010-11-17 00:00:00","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2011-04-27 00:00:00","O","99B","3","P","2011-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2012-02-01 00:00:00","D","04K","12","A","2012-02-01 00:00:00","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2012-06-19 00:00:00","P","04K","26","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2013-08-29 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41385990","MITOUSHI SUSHI","3","1221 ","QUENTIN ROAD ","11229","7189989882","49","2011-06-13 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"41385990","MITOUSHI SUSHI","3","1221 ","QUENTIN ROAD ","11229","7189989882","49","2011-07-09 00:00:00","U","06A","7","B","2011-07-09 00:00:00","2013-09-13 01:01:06.177000000" +"41377990","ESTRELLA DEL MAR RESTAURANT","4","552","SENECA AVENUE","11385","7184567496","53","2010-09-23 00:00:00","F","04N","49","C","2010-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"41378125","PUNTO DE SABOR","1","1464","ST NICHOLAS AVENUE","10033","2129282298","53","2012-09-20 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41378305","CURRY EXPRESS","1","130","EAST 29 STREET","10016","2122510202","44","2010-08-25 00:00:00","F","02H","49","","","2013-09-13 01:01:06.177000000" +"41410071","RIMINI PASTRY SHOPPE","3","6822","BAY PARKWAY","11204","7182360644","08","2013-07-16 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41381813","SUSHI TIME","4","7242 ","AUSTIN STREET ","11375","7182610111","49","2011-03-08 00:00:00","P","22C","6","","","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-03-22 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-05-31 00:00:00","F","04C","32","C","2011-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-09-12 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-10-24 00:00:00","U","02G","20","B","2011-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2012-07-16 00:00:00","P","02B","27","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2011-04-15 00:00:00","D","10F","10","A","2011-04-15 00:00:00","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2011-07-28 00:00:00","U","02B","11","B","2011-07-28 00:00:00","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2012-09-07 00:00:00","F","06D","18","C","2012-09-07 00:00:00","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2012-09-07 00:00:00","F","06E","18","C","2012-09-07 00:00:00","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2013-02-20 00:00:00","F","04L","27","","","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2013-02-20 00:00:00","F","09C","27","","","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-02-10 00:00:00","U","06C","25","B","2011-02-10 00:00:00","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-08-19 00:00:00","F","10B","59","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2010-05-26 19:35:00","F","04C","48","","","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-09-28 00:00:00","F","06A","26","C","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2010-05-26 19:35:00","F","09D","48","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2010-06-17 21:54:00","U","10C","27","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2012-02-16 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2012-08-02 00:00:00","D","10H","12","A","2012-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2013-04-11 00:00:00","P","09B","25","","","2013-09-13 01:01:06.177000000" +"41372868","MONOKAWA","1","157","EAST 28 STREET","10016","2126847830","49","2011-04-27 00:00:00","U","06E","20","B","2011-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41379907","JASLOWICZANKA POLISH BAKERY","3","163","NASSAU AVENUE","11222","7183890263","64","2013-07-10 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2010-11-17 00:00:00","U","04L","27","B","2010-11-17 00:00:00","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2012-01-11 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2012-01-11 00:00:00","F","06E","31","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2012-02-01 00:00:00","D","10F","12","A","2012-02-01 00:00:00","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2012-06-19 00:00:00","P","10E","26","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2013-01-24 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2011-08-22 00:00:00","D","10F","12","A","2011-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41412577","GENKI SUSHI","5","262","ARDEN AVENUE","10312","7182277375","49","2011-06-15 00:00:00","D","02B","12","A","2011-06-15 00:00:00","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2012-01-25 00:00:00","F","06D","44","","","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2012-01-25 00:00:00","F","06E","44","","","2013-09-13 01:01:06.177000000" +"41412577","GENKI SUSHI","5","262","ARDEN AVENUE","10312","7182277375","49","2011-06-15 00:00:00","D","06F","12","A","2011-06-15 00:00:00","2013-09-13 01:01:06.177000000" +"41412577","GENKI SUSHI","5","262","ARDEN AVENUE","10312","7182277375","49","2012-06-18 00:00:00","D","10B","12","A","2012-06-18 00:00:00","2013-09-13 01:01:06.177000000" +"41412577","GENKI SUSHI","5","262","ARDEN AVENUE","10312","7182277375","49","2013-06-07 00:00:00","F","02B","50","","","2013-09-13 01:01:06.177000000" +"41373322","ICHIE","1","53","WEST 106 STREET","10025","2128652888","49","2010-03-11 15:10:00","F","10G","43","","","2013-09-13 01:01:06.177000000" +"41384147","DAFNI","1","325","WEST 42 STREET","10036","2123151010","38","2010-05-05 11:29:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41384147","DAFNI","1","325","WEST 42 STREET","10036","2123151010","38","2010-05-05 11:29:00","F","04I","49","","","2013-09-13 01:01:06.177000000" +"41384147","DAFNI","1","325","WEST 42 STREET","10036","2123151010","38","2010-05-05 11:29:00","F","10G","49","","","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2011-05-25 00:00:00","U","06F","10","B","2011-05-25 00:00:00","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2011-12-06 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"41370445","SUSHI YAMA","3","268","PROSPECT PARK WEST","11215","7187883896","49","2010-10-19 00:00:00","C","10F","12","A","2010-10-19 00:00:00","2013-09-13 01:01:06.177000000" +"41370445","SUSHI YAMA","3","268","PROSPECT PARK WEST","11215","7187883896","49","2011-03-23 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41370445","SUSHI YAMA","3","268","PROSPECT PARK WEST","11215","7187883896","49","2011-03-23 00:00:00","P","06E","23","","","2013-09-13 01:01:06.177000000" +"41370445","SUSHI YAMA","3","268","PROSPECT PARK WEST","11215","7187883896","49","2011-11-29 00:00:00","D","02G","12","A","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-01-10 00:00:00","F","99B","39","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-01-24 00:00:00","U","06B","19","B","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-01-24 00:00:00","U","10I","19","B","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41381813","SUSHI TIME","4","7242 ","AUSTIN STREET ","11375","7182610111","49","2010-02-18 16:01:00","U","08B","2","","","2013-09-13 01:01:06.177000000" +"41381813","SUSHI TIME","4","7242 ","AUSTIN STREET ","11375","7182610111","49","2011-12-22 00:00:00","D","02B","7","A","2011-12-22 00:00:00","2013-09-13 01:01:06.177000000" +"41381844","QOO","3","367 ","METROPOLITAN AVENUE","11211","7183849493","49","2011-06-08 00:00:00","D","06C","7","A","2011-06-08 00:00:00","2013-09-13 01:01:06.177000000" +"41427225","ELEVAGE","1","302","EAST 45 STREET","10017","2129220930","49","2012-12-04 00:00:00","U","04H","12","B","2012-12-04 00:00:00","2013-09-13 01:01:06.177000000" +"41388838","SOUEN NOODLE","1","326","EAST 6 STREET","10003","2123881155","49","2010-12-14 00:00:00","F","04L","53","","","2013-09-13 01:01:06.177000000" +"41388838","SOUEN NOODLE","1","326","EAST 6 STREET","10003","2123881155","49","2011-07-25 00:00:00","D","10B","9","A","2011-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"41388838","SOUEN NOODLE","1","326","EAST 6 STREET","10003","2123881155","49","2012-07-02 00:00:00","D","06A","12","A","2012-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-01-10 00:00:00","U","02G","17","B","2011-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-01-10 00:00:00","U","04H","17","B","2011-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-05-17 00:00:00","F","02G","34","","","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-05-17 00:00:00","F","10I","34","","","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-05-17 00:00:00","F","99B","34","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2011-11-25 00:00:00","F","04M","33","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2012-01-05 00:00:00","D","09B","12","A","2012-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2011-04-08 00:00:00","F","09B","28","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2012-03-22 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2013-03-05 00:00:00","F","04L","39","","","2013-09-13 01:01:06.177000000" +"41428414","GHANG THAI KITCHEN","3","229","COURT STREET","11201","7188751369","82","2011-09-13 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41428414","GHANG THAI KITCHEN","3","229","COURT STREET","11201","7188751369","82","2011-09-13 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41388846","MI TIERRA ECUATORIANA","3","386","LEONARD STREET","11211","7185990070","53","2010-08-16 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2011-10-03 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2012-05-07 00:00:00","P","06B","16","","","2013-09-13 01:01:06.177000000" +"41385488","INAKAYA","1","620","8 AVENUE","10018","2123542195","49","2011-11-07 00:00:00","D","06C","10","A","2011-11-07 00:00:00","2013-09-13 01:01:06.177000000" +"41385488","INAKAYA","1","620","8 AVENUE","10018","2123542195","49","2013-04-29 00:00:00","P","08A","15","","","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2012-01-24 00:00:00","F","04H","38","","","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2012-01-24 00:00:00","F","10B","38","","","2013-09-13 01:01:06.177000000" +"41389136","SUSHI DELIGHT","1","157","HESTER STREET","10013","9174780453","49","2011-09-22 00:00:00","D","02B","9","A","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41389136","SUSHI DELIGHT","1","157","HESTER STREET","10013","9174780453","49","2011-09-22 00:00:00","D","10B","9","A","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41389296","SHANDAR SWEET & RESTAURANT","3","679","CONEY ISLAND AVENUE","11218","7187034400","59","2011-09-01 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41371506","BUTTER LANE","1","123","EAST 7 STREET","10009","2126772880","08","2011-10-11 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41371506","BUTTER LANE","1","123","EAST 7 STREET","10009","2126772880","08","2011-10-11 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41371506","BUTTER LANE","1","123","EAST 7 STREET","10009","2126772880","08","2011-10-11 00:00:00","G","99B","49","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2011-05-12 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2011-06-23 00:00:00","F","05D","50","C","2011-06-23 00:00:00","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2011-11-21 00:00:00","F","02B","19","C","2011-11-21 00:00:00","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2012-11-30 00:00:00","U","04L","12","B","2012-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41416878","KISSENA DOMINICAN DINER","4","7102","KISSENA BOULEVARD","11367","7187938270","53","2012-08-16 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41416878","KISSENA DOMINICAN DINER","4","7102","KISSENA BOULEVARD","11367","7187938270","53","2012-08-16 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2011-02-09 00:00:00","F","04A","19","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2012-06-28 00:00:00","D","02B","13","A","2012-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2013-07-02 00:00:00","F","02B","22","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2013-07-02 00:00:00","F","10B","22","","","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2011-01-31 00:00:00","D","20A","7","A","2011-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2012-01-25 00:00:00","F","04E","44","","","2013-09-13 01:01:06.177000000" +"41383251","CARIDAD RESTAURANT","2","2230","GRAND CONCOURSE","10457","7183646545","77","2011-07-25 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41417880","PASIONES BAR","4","37-65","103 STREET","11368","3476105189","53","2011-06-27 00:00:00","F","04K","49","","","2013-09-13 01:01:06.177000000" +"41417880","PASIONES BAR","4","37-65","103 STREET","11368","3476105189","53","2011-06-27 00:00:00","F","10A","49","","","2013-09-13 01:01:06.177000000" +"41417880","PASIONES BAR","4","37-65","103 STREET","11368","3476105189","53","2011-06-27 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2011-07-12 00:00:00","U","04J","25","B","2011-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2012-02-16 00:00:00","P","04L","17","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2012-02-16 00:00:00","P","08C","17","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2012-07-19 00:00:00","P","04L","24","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2012-08-02 00:00:00","D","08A","12","A","2012-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2013-04-11 00:00:00","P","04C","25","","","2013-09-13 01:01:06.177000000" +"41372868","MONOKAWA","1","157","EAST 28 STREET","10016","2126847830","49","2011-03-23 00:00:00","F","10F","31","","","2013-09-13 01:01:06.177000000" +"41372868","MONOKAWA","1","157","EAST 28 STREET","10016","2126847830","49","2011-10-18 00:00:00","P","06D","15","","","2013-09-13 01:01:06.177000000" +"41372868","MONOKAWA","1","157","EAST 28 STREET","10016","2126847830","49","2011-10-18 00:00:00","P","10H","15","","","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2010-09-24 00:00:00","F","04A","31","","","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2011-02-26 00:00:00","F","04L","26","C","2011-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2011-08-04 00:00:00","P","04L","24","","","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2012-01-11 00:00:00","P","02B","9","","","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2012-01-23 00:00:00","D","08A","9","A","2012-01-23 00:00:00","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2013-03-20 00:00:00","D","06C","13","A","2013-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41384147","DAFNI","1","325","WEST 42 STREET","10036","2123151010","38","2010-05-05 11:29:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41430090","CITLALI'S DELI AND GROCERY","3","4118","5 AVENUE","11232","3479873681","55","2011-12-08 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-01-10 00:00:00","F","04L","39","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-01-24 00:00:00","U","10F","19","B","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-06-05 00:00:00","P","06F","22","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-11-13 00:00:00","P","04M","21","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-12-18 00:00:00","D","10F","11","A","2012-12-18 00:00:00","2013-09-13 01:01:06.177000000" +"41373322","ICHIE","1","53","WEST 106 STREET","10025","2128652888","49","2011-10-05 00:00:00","D","02B","12","A","2011-10-05 00:00:00","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2011-09-12 00:00:00","F","08A","38","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2013-01-14 00:00:00","C","10F","12","","","2013-09-13 01:01:06.177000000" +"41431748","GOWASABI","4","34-02","30 AVENUE","11103","7182747354","49","2011-05-12 00:00:00","F","06C","44","","","2013-09-13 01:01:06.177000000" +"41431899","THAI PALATE","1","534","9 AVENUE","10018","2122799899","82","2013-08-27 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41418929","SUSHI JUN","1","875","3 AVENUE","10022","2123555303","49","2010-06-21 13:37:00","U","02G","27","","","2013-09-13 01:01:06.177000000" +"41385488","INAKAYA","1","620","8 AVENUE","10018","2123542195","49","2011-04-05 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41385488","INAKAYA","1","620","8 AVENUE","10018","2123542195","49","2011-09-22 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41385488","INAKAYA","1","620","8 AVENUE","10018","2123542195","49","2011-09-22 00:00:00","P","99B","19","","","2013-09-13 01:01:06.177000000" +"41385488","INAKAYA","1","620","8 AVENUE","10018","2123542195","49","2011-11-07 00:00:00","D","06D","10","A","2011-11-07 00:00:00","2013-09-13 01:01:06.177000000" +"41419933","KOTO SUSHI & STEAK","3","552","HENRY STREET","11231","7182228055","49","2012-05-26 00:00:00","P","04H","23","","","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2011-04-04 00:00:00","D","06D","13","A","2011-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2012-03-19 00:00:00","F","02G","42","C","2012-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2012-07-17 00:00:00","P","04M","6","","","2013-09-13 01:01:06.177000000" +"41377990","ESTRELLA DEL MAR RESTAURANT","4","552","SENECA AVENUE","11385","7184567496","53","2010-09-23 00:00:00","F","04M","49","C","2010-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"41377990","ESTRELLA DEL MAR RESTAURANT","4","552","SENECA AVENUE","11385","7184567496","53","2010-09-23 00:00:00","F","06C","49","C","2010-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"41378125","PUNTO DE SABOR","1","1464","ST NICHOLAS AVENUE","10033","2129282298","53","2012-09-20 00:00:00","G","02B","49","","","2013-09-13 01:01:06.177000000" +"41378305","CURRY EXPRESS","1","130","EAST 29 STREET","10016","2122510202","44","2010-08-25 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41378305","CURRY EXPRESS","1","130","EAST 29 STREET","10016","2122510202","44","2010-08-25 00:00:00","F","10A","49","","","2013-09-13 01:01:06.177000000" +"41387911","ZUZU RAMEN","3","173","4 AVENUE","11217","7183989898","49","2012-12-28 00:00:00","P","04L","16","","","2013-09-13 01:01:06.177000000" +"41385990","MITOUSHI SUSHI","3","1221 ","QUENTIN ROAD ","11229","7189989882","49","2010-11-01 00:00:00","D","10D","2","","","2013-09-13 01:01:06.177000000" +"41385990","MITOUSHI SUSHI","3","1221 ","QUENTIN ROAD ","11229","7189989882","49","2011-06-13 00:00:00","P","06F","16","","","2013-09-13 01:01:06.177000000" +"41385990","MITOUSHI SUSHI","3","1221 ","QUENTIN ROAD ","11229","7189989882","49","2011-12-28 00:00:00","D","10B","8","A","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41378334","B.B.Q. VILLAGE PALACE","4","181-02/12","HILLSIDE AVENUE","11432","7182989099","44","2012-02-09 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2010-06-24 19:25:00","F","02B","39","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2010-06-24 19:25:00","F","04K","39","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2010-11-03 00:00:00","F","10I","41","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2012-04-25 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2012-08-15 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2011-04-21 00:00:00","G","04L","60","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2011-04-21 00:00:00","G","09C","60","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2011-09-03 00:00:00","U","06A","12","B","2011-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2012-07-26 00:00:00","D","02G","10","A","2012-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2011-02-09 00:00:00","F","04C","19","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2011-08-24 00:00:00","P","10B","21","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2012-12-06 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2011-05-20 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2012-01-17 00:00:00","D","10F","11","A","2012-01-17 00:00:00","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2013-05-28 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2011-04-25 00:00:00","U","02G","18","B","2011-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-02-04 00:00:00","F","06B","50","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-06-18 00:00:00","F","02G","33","","","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-10-24 00:00:00","U","04N","20","B","2011-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41388838","SOUEN NOODLE","1","326","EAST 6 STREET","10003","2123881155","49","2010-12-14 00:00:00","F","06A","53","","","2013-09-13 01:01:06.177000000" +"41388838","SOUEN NOODLE","1","326","EAST 6 STREET","10003","2123881155","49","2013-06-24 00:00:00","P","06D","21","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2010-08-24 00:00:00","P","04N","14","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2011-05-02 00:00:00","F","04M","41","","","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2010-09-13 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2011-11-09 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2011-12-14 00:00:00","U","04L","8","B","2011-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2012-07-12 00:00:00","D","10H","10","A","2012-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2010-10-13 00:00:00","F","04L","43","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2011-04-25 00:00:00","G","06D","54","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2011-07-26 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2012-02-01 00:00:00","D","04L","12","A","2012-02-01 00:00:00","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2012-06-19 00:00:00","P","08C","26","","","2013-09-13 01:01:06.177000000" +"41435938","SUSHI YOU","4","215-05","73 AVENUE","11364","7187956557","49","2010-09-09 00:00:00","C","10F","9","A","2010-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41389136","SUSHI DELIGHT","1","157","HESTER STREET","10013","9174780453","49","2011-04-18 00:00:00","F","05D","24","C","2011-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41389136","SUSHI DELIGHT","1","157","HESTER STREET","10013","9174780453","49","2011-09-01 00:00:00","P","05D","17","","","2013-09-13 01:01:06.177000000" +"41394230","EAST SUSHI","5","4371","AMBOY ROAD","10312","7189668888","49","2011-09-07 00:00:00","F","06F","34","","","2013-09-13 01:01:06.177000000" +"41394230","EAST SUSHI","5","4371","AMBOY ROAD","10312","7189668888","49","2012-02-11 00:00:00","F","06F","20","","","2013-09-13 01:01:06.177000000" +"41394230","EAST SUSHI","5","4371","AMBOY ROAD","10312","7189668888","49","2012-03-31 00:00:00","D","10F","13","A","2012-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2010-11-09 00:00:00","F","04L","54","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2011-04-18 00:00:00","F","06F","65","","","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-02-10 00:00:00","U","02G","25","B","2011-02-10 00:00:00","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-08-19 00:00:00","F","04L","59","","","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2012-02-10 00:00:00","D","02B","10","A","2012-02-10 00:00:00","2013-09-13 01:01:06.177000000" +"41436709","EAST NOODLE & IZAKAYA","1","119","2 AVENUE","10003","2129824285","49","2012-08-30 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41436709","EAST NOODLE & IZAKAYA","1","119","2 AVENUE","10003","2129824285","49","2012-09-10 00:00:00","D","08A","13","A","2012-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"41394768","Picnic Garden","4","147-42","NORTHERN BOULEVARD","11354","7183585959","52","2013-07-24 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41394768","Picnic Garden","4","147-42","NORTHERN BOULEVARD","11354","7183585959","52","2013-07-24 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41394768","Picnic Garden","4","147-42","NORTHERN BOULEVARD","11354","7183585959","52","2013-07-24 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41394959","BOHEMIAN NEW YORK","1","57","GREAT JONES ST","10012","2123881070","49","2013-02-19 00:00:00","F","02B","47","","","2013-09-13 01:01:06.177000000" +"41436878","CASA LEVER","1","390","PARK AVENUE","10022","2128888015","48","2011-12-23 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2010-12-03 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2011-08-22 00:00:00","D","06D","12","A","2011-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2011-08-22 00:00:00","D","06E","12","A","2011-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2012-10-24 00:00:00","F","06C","29","C","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2012-10-24 00:00:00","F","10H","29","C","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41387911","ZUZU RAMEN","3","173","4 AVENUE","11217","7183989898","49","2013-03-21 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2010-10-04 00:00:00","F","04H","28","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2011-04-18 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2012-01-09 00:00:00","F","06D","23","C","2012-01-09 00:00:00","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2012-07-31 00:00:00","F","02B","50","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2012-07-31 00:00:00","F","10B","50","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2012-08-15 00:00:00","U","02G","21","B","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2013-01-17 00:00:00","P","08A","15","","","2013-09-13 01:01:06.177000000" +"41381844","QOO","3","367 ","METROPOLITAN AVENUE","11211","7183849493","49","2011-06-08 00:00:00","D","10H","7","A","2011-06-08 00:00:00","2013-09-13 01:01:06.177000000" +"41377990","ESTRELLA DEL MAR RESTAURANT","4","552","SENECA AVENUE","11385","7184567496","53","2010-09-23 00:00:00","F","08A","49","C","2010-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-05-24 13:34:00","U","04N","27","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-10-14 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-10-27 00:00:00","U","10B","18","B","2010-10-27 00:00:00","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-12-21 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2011-06-01 00:00:00","F","04M","35","","","2013-09-13 01:01:06.177000000" +"41378334","B.B.Q. VILLAGE PALACE","4","181-02/12","HILLSIDE AVENUE","11432","7182989099","44","2012-02-09 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2010-09-09 00:00:00","C","18A","0","A","2010-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2011-08-30 00:00:00","F","06E","34","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-01-30 00:00:00","U","02B","17","B","2012-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-06-13 00:00:00","O","04M","9","P","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2010-06-24 19:25:00","F","10G","39","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2010-11-03 00:00:00","F","04L","41","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2012-04-14 00:00:00","P","04L","12","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2012-04-25 00:00:00","U","04J","23","B","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2012-01-27 00:00:00","P","04C","23","","","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2012-02-09 00:00:00","D","04H","9","A","2012-02-09 00:00:00","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2012-02-09 00:00:00","D","10E","9","A","2012-02-09 00:00:00","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2012-09-07 00:00:00","F","04L","18","C","2012-09-07 00:00:00","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2011-03-08 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2011-05-10 00:00:00","U","04C","21","B","2011-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2011-09-30 00:00:00","D","10B","9","A","2011-09-30 00:00:00","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2012-12-31 00:00:00","F","06D","52","C","2012-12-31 00:00:00","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2013-06-11 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41388838","SOUEN NOODLE","1","326","EAST 6 STREET","10003","2123881155","49","2012-07-02 00:00:00","D","06D","12","A","2012-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41388846","MI TIERRA ECUATORIANA","3","386","LEONARD STREET","11211","7185990070","53","2010-08-16 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2011-06-20 00:00:00","U","08A","10","B","2011-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41389136","SUSHI DELIGHT","1","157","HESTER STREET","10013","9174780453","49","2012-01-27 00:00:00","D","02B","12","A","2012-01-27 00:00:00","2013-09-13 01:01:06.177000000" +"41389136","SUSHI DELIGHT","1","157","HESTER STREET","10013","9174780453","49","2012-06-06 00:00:00","D","10A","8","A","2012-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41389136","SUSHI DELIGHT","1","157","HESTER STREET","10013","9174780453","49","2012-06-06 00:00:00","D","10B","8","A","2012-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41396810","PEACE FOOD CAFE","1","460","AMSTERDAM AVENUE","10024","2123622266","03","2011-05-16 00:00:00","F","22C","49","","","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2012-01-25 00:00:00","F","04M","44","","","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2012-01-25 00:00:00","F","06C","44","","","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2012-01-25 00:00:00","F","10B","44","","","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2012-08-01 00:00:00","F","04C","41","","","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2012-08-01 00:00:00","F","04M","41","","","2013-09-13 01:01:06.177000000" +"41383251","CARIDAD RESTAURANT","2","2230","GRAND CONCOURSE","10457","7183646545","77","2011-07-25 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2010-10-13 00:00:00","F","04A","43","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2010-11-17 00:00:00","U","02G","27","B","2010-11-17 00:00:00","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2011-04-25 00:00:00","G","22A","54","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2011-07-26 00:00:00","F","06D","29","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2012-07-26 00:00:00","D","10B","9","A","2012-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2013-01-24 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2013-08-29 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2009-11-19 11:38:00","U","08A","20","","","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-05-17 00:00:00","F","04L","34","","","2013-09-13 01:01:06.177000000" +"41389296","SHANDAR SWEET & RESTAURANT","3","679","CONEY ISLAND AVENUE","11218","7187034400","59","2011-09-01 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41389296","SHANDAR SWEET & RESTAURANT","3","679","CONEY ISLAND AVENUE","11218","7187034400","59","2011-09-01 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41442107","ROBATAYA","1","231","EAST 9 STREET","10003","2129799674","49","2012-09-11 00:00:00","P","10B","9","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2011-04-08 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2011-04-28 00:00:00","D","04L","12","A","2011-04-28 00:00:00","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2011-08-25 00:00:00","P","99B","26","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2012-03-22 00:00:00","P","06C","25","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2012-04-02 00:00:00","U","02B","12","B","2012-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2013-03-05 00:00:00","F","02B","39","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2013-03-05 00:00:00","F","10B","39","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2013-08-27 00:00:00","F","04K","37","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2013-08-27 00:00:00","F","08A","37","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2013-08-27 00:00:00","F","10F","37","","","2013-09-13 01:01:06.177000000" +"41428414","GHANG THAI KITCHEN","3","229","COURT STREET","11201","7188751369","82","2011-09-13 00:00:00","G","06A","49","","","2013-09-13 01:01:06.177000000" +"41384147","DAFNI","1","325","WEST 42 STREET","10036","2123151010","38","2010-05-05 11:29:00","F","04K","49","","","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2010-11-01 00:00:00","C","08A","10","A","2010-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2012-05-03 00:00:00","F","06D","38","","","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2012-05-16 00:00:00","D","10F","3","A","2012-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2013-01-05 00:00:00","P","06D","8","","","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2011-05-20 00:00:00","P","06D","25","","","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2011-06-30 00:00:00","U","02G","15","B","2011-06-30 00:00:00","2013-09-13 01:01:06.177000000" +"41443242","SPRING GARDEN CHINESE RESTAURANT","4","62-24","WOODHAVEN BOULEVARD","11374","7184461006","20","2011-01-19 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41443242","SPRING GARDEN CHINESE RESTAURANT","4","62-24","WOODHAVEN BOULEVARD","11374","7184461006","20","2011-01-19 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41381258","SUBWAY","3","391","JAY STREET","11201","7188522226","69","2011-05-20 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2010-09-13 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2010-09-13 00:00:00","P","10A","21","","","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2011-05-23 00:00:00","F","06C","31","","","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2011-07-01 00:00:00","U","05D","12","B","2011-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2011-07-01 00:00:00","U","10F","12","B","2011-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2013-07-10 00:00:00","P","10F","9","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2011-06-14 00:00:00","P","09C","16","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-01-10 00:00:00","F","06F","39","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-06-05 00:00:00","P","08B","22","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-06-15 00:00:00","D","02G","12","A","2012-06-15 00:00:00","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2011-12-12 00:00:00","D","09C","9","A","2011-12-12 00:00:00","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2011-12-12 00:00:00","D","10F","9","A","2011-12-12 00:00:00","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-02-20 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-02-20 00:00:00","F","10H","31","","","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-04-04 00:00:00","G","06B","51","","","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-04-04 00:00:00","G","09B","51","","","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-04-08 00:00:00","O","08A","10","C","2013-04-08 00:00:00","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-06-16 00:00:00","F","06F","69","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2011-10-24 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2012-05-15 00:00:00","D","02G","12","A","2012-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2012-10-22 00:00:00","P","04L","8","","","2013-09-13 01:01:06.177000000" +"41394230","EAST SUSHI","5","4371","AMBOY ROAD","10312","7189668888","49","2011-09-07 00:00:00","F","08B","34","","","2013-09-13 01:01:06.177000000" +"41394230","EAST SUSHI","5","4371","AMBOY ROAD","10312","7189668888","49","2011-09-07 00:00:00","F","10I","34","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2013-06-10 00:00:00","F","09B","42","","","2013-09-13 01:01:06.177000000" +"41398824","VARIETY CAFE","3","145","DRIGGS AVENUE","11222","3475992351","14","2010-10-12 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41385488","INAKAYA","1","620","8 AVENUE","10018","2123542195","49","2011-04-05 00:00:00","F","04H","32","","","2013-09-13 01:01:06.177000000" +"41385488","INAKAYA","1","620","8 AVENUE","10018","2123542195","49","2011-09-22 00:00:00","P","06E","19","","","2013-09-13 01:01:06.177000000" +"41385488","INAKAYA","1","620","8 AVENUE","10018","2123542195","49","2012-04-19 00:00:00","D","06F","5","A","2012-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2010-11-09 00:00:00","F","02B","54","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2010-11-09 00:00:00","F","05D","54","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2010-11-09 00:00:00","F","06E","54","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2011-04-18 00:00:00","F","02G","65","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2011-10-05 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2011-10-17 00:00:00","U","04N","15","B","2011-10-17 00:00:00","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2012-04-23 00:00:00","P","02G","15","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2013-03-04 00:00:00","F","08A","11","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2011-03-08 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2011-03-08 00:00:00","F","10F","32","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2011-09-12 00:00:00","F","04M","38","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2012-09-18 00:00:00","P","04M","17","","","2013-09-13 01:01:06.177000000" +"41385990","MITOUSHI SUSHI","3","1221 ","QUENTIN ROAD ","11229","7189989882","49","2011-06-13 00:00:00","P","06E","16","","","2013-09-13 01:01:06.177000000" +"41394768","Picnic Garden","4","147-42","NORTHERN BOULEVARD","11354","7183585959","52","2013-07-24 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41394959","BOHEMIAN NEW YORK","1","57","GREAT JONES ST","10012","2123881070","49","2012-04-10 00:00:00","P","10F","14","","","2013-09-13 01:01:06.177000000" +"41394959","BOHEMIAN NEW YORK","1","57","GREAT JONES ST","10012","2123881070","49","2013-02-19 00:00:00","F","06D","47","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2010-11-18 00:00:00","U","04C","19","B","2010-11-18 00:00:00","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2012-07-31 00:00:00","F","02G","50","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2012-08-15 00:00:00","U","10B","21","B","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"41445505","THE VANDERBILT","3","570","VANDERBILT AVENUE","11238","7186230570","03","2011-12-15 00:00:00","F","02H","49","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2011-03-19 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2011-05-17 00:00:00","F","06D","25","C","2011-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2011-05-17 00:00:00","F","06E","25","C","2011-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2011-10-19 00:00:00","F","09B","34","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2012-06-12 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2013-01-05 00:00:00","F","06C","33","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2013-01-05 00:00:00","F","08A","33","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2013-01-05 00:00:00","F","10B","33","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2013-01-28 00:00:00","D","10F","11","A","2013-01-28 00:00:00","2013-09-13 01:01:06.177000000" +"41445689","SFOGLIA RESTAURANT","1","135","EAST 92 STREET","10128","2128311402","48","2011-04-27 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41445737","1818 SEAFOOD RESTAURANT","3","1818","AVENUE U","11229","7183326188","20","2010-09-22 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41446168","YUMMY SUSHI HOUSE","4","135-11","38 AVENUE","11354","6463313119","49","2012-04-16 00:00:00","D","10B","4","A","2012-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-10-14 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2011-06-29 00:00:00","F","04M","20","C","2011-06-29 00:00:00","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2011-06-29 00:00:00","F","06C","20","C","2011-06-29 00:00:00","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2012-04-05 00:00:00","F","02B","45","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2012-04-05 00:00:00","F","05D","45","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2012-04-05 00:00:00","F","06E","45","","","2013-09-13 01:01:06.177000000" +"41431748","GOWASABI","4","34-02","30 AVENUE","11103","7182747354","49","2011-05-25 00:00:00","D","06C","13","A","2011-05-25 00:00:00","2013-09-13 01:01:06.177000000" +"41431899","THAI PALATE","1","534","9 AVENUE","10018","2122799899","82","2013-08-27 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2010-03-04 15:52:00","U","06A","16","","","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2011-01-31 00:00:00","D","04C","7","A","2011-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2012-01-25 00:00:00","F","08A","44","","","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2012-08-01 00:00:00","F","04H","41","","","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2012-08-01 00:00:00","F","06C","41","","","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2012-08-01 00:00:00","F","08A","41","","","2013-09-13 01:01:06.177000000" +"41383251","CARIDAD RESTAURANT","2","2230","GRAND CONCOURSE","10457","7183646545","77","2011-07-25 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41383251","CARIDAD RESTAURANT","2","2230","GRAND CONCOURSE","10457","7183646545","77","2011-07-25 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2012-03-12 00:00:00","P","06D","21","","","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2012-03-12 00:00:00","P","06E","21","","","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2012-03-19 00:00:00","F","04L","42","C","2012-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2012-04-16 00:00:00","F","04M","30","C","2012-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2013-08-15 00:00:00","P","10D","18","","","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2011-06-30 00:00:00","U","04M","15","B","2011-06-30 00:00:00","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2013-05-28 00:00:00","P","06F","17","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2011-06-14 00:00:00","P","10J","16","","","2013-09-13 01:01:06.177000000" +"41402195","LAS PALMAS DELI","1","3891","BROADWAY","10032","9175210349","55","2012-02-21 00:00:00","F","04O","49","","","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2011-11-09 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2011-12-21 00:00:00","F","06D","13","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-06-05 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-06-15 00:00:00","D","10F","12","A","2012-06-15 00:00:00","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-11-13 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2010-11-10 00:00:00","F","06A","29","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2010-11-10 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2010-11-29 00:00:00","U","10B","20","B","2010-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2011-04-21 00:00:00","G","99B","60","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2012-03-01 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2012-03-14 00:00:00","U","04C","14","B","2012-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2012-07-26 00:00:00","D","10F","10","A","2012-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2013-07-29 00:00:00","F","04N","18","","","2013-09-13 01:01:06.177000000" +"41394230","EAST SUSHI","5","4371","AMBOY ROAD","10312","7189668888","49","2011-09-07 00:00:00","F","04J","34","","","2013-09-13 01:01:06.177000000" +"41394230","EAST SUSHI","5","4371","AMBOY ROAD","10312","7189668888","49","2012-03-31 00:00:00","D","10G","13","A","2012-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2010-12-29 00:00:00","U","04D","20","B","2010-12-29 00:00:00","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2012-03-05 00:00:00","P","06D","16","","","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2012-03-12 00:00:00","U","04M","23","B","2012-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2012-10-24 00:00:00","F","10B","29","C","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2013-04-04 00:00:00","P","02G","7","","","2013-09-13 01:01:06.177000000" +"41387911","ZUZU RAMEN","3","173","4 AVENUE","11217","7183989898","49","2011-01-13 00:00:00","C","99B","10","A","2011-01-13 00:00:00","2013-09-13 01:01:06.177000000" +"41434866","BELLA VITA","1","158","WEST 58 STREET","10019","2126647670","62","2012-05-29 00:00:00","F","10E","49","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2010-11-22 00:00:00","U","10F","7","B","2010-11-22 00:00:00","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2011-10-17 00:00:00","U","10F","15","B","2011-10-17 00:00:00","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2012-06-19 00:00:00","D","10F","8","A","2012-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2013-03-28 00:00:00","U","04C","14","B","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2013-08-29 00:00:00","P","09B","19","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2011-03-28 00:00:00","P","06F","19","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2011-12-12 00:00:00","F","04L","40","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2011-12-12 00:00:00","F","06D","40","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2011-12-12 00:00:00","F","10F","40","","","2013-09-13 01:01:06.177000000" +"41385488","INAKAYA","1","620","8 AVENUE","10018","2123542195","49","2011-04-05 00:00:00","F","09C","32","","","2013-09-13 01:01:06.177000000" +"41385488","INAKAYA","1","620","8 AVENUE","10018","2123542195","49","2011-05-24 00:00:00","D","04J","13","A","2011-05-24 00:00:00","2013-09-13 01:01:06.177000000" +"41385488","INAKAYA","1","620","8 AVENUE","10018","2123542195","49","2011-05-24 00:00:00","D","10F","13","A","2011-05-24 00:00:00","2013-09-13 01:01:06.177000000" +"41385488","INAKAYA","1","620","8 AVENUE","10018","2123542195","49","2013-04-29 00:00:00","P","10B","15","","","2013-09-13 01:01:06.177000000" +"41394768","Picnic Garden","4","147-42","NORTHERN BOULEVARD","11354","7183585959","52","2013-07-24 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2012-05-31 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-02-04 00:00:00","F","04L","50","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-02-26 00:00:00","G","10F","76","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-03-05 00:00:00","W","04L","33","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-03-05 00:00:00","W","08A","33","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-03-07 00:00:00","O","04L","16","C","2013-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2011-05-18 00:00:00","G","04N","76","","","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2011-05-18 00:00:00","G","06C","76","","","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2012-03-19 00:00:00","P","10F","9","","","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2012-08-28 00:00:00","P","04C","23","","","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2012-08-28 00:00:00","P","06B","23","","","2013-09-13 01:01:06.177000000" +"41385990","MITOUSHI SUSHI","3","1221 ","QUENTIN ROAD ","11229","7189989882","49","2011-07-09 00:00:00","U","10F","7","B","2011-07-09 00:00:00","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2011-06-27 00:00:00","U","10F","3","B","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2012-01-09 00:00:00","F","04C","23","C","2012-01-09 00:00:00","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2012-07-31 00:00:00","F","04C","50","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2013-01-17 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41388838","SOUEN NOODLE","1","326","EAST 6 STREET","10003","2123881155","49","2010-12-14 00:00:00","F","10B","53","","","2013-09-13 01:01:06.177000000" +"41388846","MI TIERRA ECUATORIANA","3","386","LEONARD STREET","11211","7185990070","53","2010-08-16 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-04-20 11:06:00","F","04M","74","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-04-20 11:06:00","F","08C","74","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2011-05-17 00:00:00","F","04L","25","C","2011-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2012-06-12 00:00:00","F","06C","28","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2012-06-12 00:00:00","F","10D","28","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2012-08-01 00:00:00","U","02B","24","B","2012-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2012-08-01 00:00:00","U","08A","24","B","2012-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"41388846","MI TIERRA ECUATORIANA","3","386","LEONARD STREET","11211","7185990070","53","2010-08-16 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2010-08-24 00:00:00","P","04L","14","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2011-05-02 00:00:00","F","02B","41","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2011-05-02 00:00:00","F","04A","41","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2011-05-02 00:00:00","F","10B","41","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2011-05-02 00:00:00","F","22C","41","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2011-10-03 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2012-05-18 00:00:00","D","02B","10","A","2012-05-18 00:00:00","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2013-01-29 00:00:00","D","04L","11","A","2013-01-29 00:00:00","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2013-06-24 00:00:00","F","02G","73","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2013-06-24 00:00:00","F","06C","73","","","2013-09-13 01:01:06.177000000" +"41436709","EAST NOODLE & IZAKAYA","1","119","2 AVENUE","10003","2129824285","49","2010-08-09 00:00:00","C","04N","8","A","2010-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41436709","EAST NOODLE & IZAKAYA","1","119","2 AVENUE","10003","2129824285","49","2010-08-09 00:00:00","C","08A","8","A","2010-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41436709","EAST NOODLE & IZAKAYA","1","119","2 AVENUE","10003","2129824285","49","2010-08-09 00:00:00","C","10B","8","A","2010-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41436709","EAST NOODLE & IZAKAYA","1","119","2 AVENUE","10003","2129824285","49","2012-08-30 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-04-20 11:06:00","F","09D","74","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2012-09-10 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2013-03-19 00:00:00","P","04C","17","","","2013-09-13 01:01:06.177000000" +"41389296","SHANDAR SWEET & RESTAURANT","3","679","CONEY ISLAND AVENUE","11218","7187034400","59","2011-09-01 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41450783","KIKKU JAPANESE RESTAURANT","1","50","WEST 55 STREET","10019","2125828357","49","2011-04-27 00:00:00","P","04M","16","","","2013-09-13 01:01:06.177000000" +"41450783","KIKKU JAPANESE RESTAURANT","1","50","WEST 55 STREET","10019","2125828357","49","2012-05-14 00:00:00","D","04H","12","A","2012-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41450783","KIKKU JAPANESE RESTAURANT","1","50","WEST 55 STREET","10019","2125828357","49","2013-06-10 00:00:00","P","06A","19","","","2013-09-13 01:01:06.177000000" +"41405662","FARRELLS","3","215","PROSPECT PARK WEST","11215","7187888779","03","2011-06-03 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41396810","PEACE FOOD CAFE","1","460","AMSTERDAM AVENUE","10024","2123622266","03","2011-05-16 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2012-10-24 00:00:00","F","10F","29","C","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41402195","LAS PALMAS DELI","1","3891","BROADWAY","10032","9175210349","55","2012-02-21 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41452462","CRYSTAL","1","212","EAST 52 STREET","10022","2123088885","49","2012-06-06 00:00:00","D","04L","9","A","2012-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2010-03-09 14:03:00","F","04M","36","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2010-03-30 12:00:00","D","10G","9","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-01-23 00:00:00","F","06E","77","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-01-23 00:00:00","F","10F","77","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-06-08 00:00:00","G","06F","54","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-06-08 00:00:00","G","08A","54","","","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2011-10-11 00:00:00","P","06E","26","","","2013-09-13 01:01:06.177000000" +"41398824","VARIETY CAFE","3","145","DRIGGS AVENUE","11222","3475992351","14","2010-10-12 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2011-05-18 00:00:00","G","02G","76","","","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2011-05-18 00:00:00","G","10H","76","","","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2011-05-19 00:00:00","O","10B","7","P","2011-05-19 00:00:00","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2011-09-30 00:00:00","D","10F","9","A","2011-09-30 00:00:00","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2012-12-31 00:00:00","F","04H","52","C","2012-12-31 00:00:00","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2013-01-14 00:00:00","C","02G","12","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2013-06-11 00:00:00","P","04L","15","","","2013-09-13 01:01:06.177000000" +"41408277","NOBI SUSHI","1","437","3RD AVENUE","10016","2124818333","49","2011-01-10 00:00:00","F","04L","21","","","2013-09-13 01:01:06.177000000" +"41408277","NOBI SUSHI","1","437","3RD AVENUE","10016","2124818333","49","2012-04-02 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"41388838","SOUEN NOODLE","1","326","EAST 6 STREET","10003","2123881155","49","2012-07-02 00:00:00","D","10F","12","A","2012-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41388846","MI TIERRA ECUATORIANA","3","386","LEONARD STREET","11211","7185990070","53","2010-08-16 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2011-10-03 00:00:00","P","06E","21","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2012-05-07 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2013-06-24 00:00:00","F","04J","73","","","2013-09-13 01:01:06.177000000" +"41389136","SUSHI DELIGHT","1","157","HESTER STREET","10013","9174780453","49","2011-09-01 00:00:00","P","06E","17","","","2013-09-13 01:01:06.177000000" +"41389136","SUSHI DELIGHT","1","157","HESTER STREET","10013","9174780453","49","2012-01-05 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2011-10-19 00:00:00","F","10B","34","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2012-06-12 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2013-01-05 00:00:00","F","04L","33","","","2013-09-13 01:01:06.177000000" +"41389296","SHANDAR SWEET & RESTAURANT","3","679","CONEY ISLAND AVENUE","11218","7187034400","59","2011-09-01 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41409233","ZEYTINZ","1","24","WEST 40 STREET","10018","2125758080","27","2012-09-06 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41453658","JUSTINO'S PIZZERIA","1","879-883 ","10 AVENUE","10019","2125821222","63","2011-12-22 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41453658","JUSTINO'S PIZZERIA","1","879-883 ","10 AVENUE","10019","2125821222","63","2011-12-22 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41442107","ROBATAYA","1","231","EAST 9 STREET","10003","2129799674","49","2011-04-20 00:00:00","F","02G","37","","","2013-09-13 01:01:06.177000000" +"41442107","ROBATAYA","1","231","EAST 9 STREET","10003","2129799674","49","2011-10-05 00:00:00","D","02B","9","A","2011-10-05 00:00:00","2013-09-13 01:01:06.177000000" +"41442107","ROBATAYA","1","231","EAST 9 STREET","10003","2129799674","49","2012-10-24 00:00:00","D","10H","9","A","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41405662","FARRELLS","3","215","PROSPECT PARK WEST","11215","7187888779","03","2011-06-03 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2010-12-02 00:00:00","P","04L","20","","","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2010-12-02 00:00:00","P","09C","20","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2011-08-04 00:00:00","U","04H","7","B","2011-08-04 00:00:00","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2012-01-12 00:00:00","P","04N","21","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2012-01-12 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2012-06-28 00:00:00","P","06F","26","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2012-08-02 00:00:00","D","04H","12","A","2012-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2011-05-23 00:00:00","F","06D","31","","","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2012-05-03 00:00:00","F","02B","38","","","2013-09-13 01:01:06.177000000" +"41394230","EAST SUSHI","5","4371","AMBOY ROAD","10312","7189668888","49","2011-09-07 00:00:00","F","10F","34","","","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2011-01-26 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2011-02-23 00:00:00","D","10B","11","A","2011-02-23 00:00:00","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2013-06-17 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41394230","EAST SUSHI","5","4371","AMBOY ROAD","10312","7189668888","49","2012-02-11 00:00:00","F","02B","20","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2010-11-09 00:00:00","F","06C","54","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2011-04-18 00:00:00","F","02B","65","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2011-10-17 00:00:00","U","02B","15","B","2011-10-17 00:00:00","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2012-04-23 00:00:00","P","02B","15","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2013-08-29 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2011-03-08 00:00:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2011-05-10 00:00:00","U","06E","21","B","2011-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2011-09-12 00:00:00","F","03B","38","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2011-09-30 00:00:00","D","06F","9","A","2011-09-30 00:00:00","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2012-02-08 00:00:00","P","02B","18","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2012-02-08 00:00:00","P","10A","18","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2012-09-18 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2012-12-31 00:00:00","F","04C","52","C","2012-12-31 00:00:00","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2012-12-31 00:00:00","F","04M","52","C","2012-12-31 00:00:00","2013-09-13 01:01:06.177000000" +"41402195","LAS PALMAS DELI","1","3891","BROADWAY","10032","9175210349","55","2012-02-21 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41402195","LAS PALMAS DELI","1","3891","BROADWAY","10032","9175210349","55","2012-02-21 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41394959","BOHEMIAN NEW YORK","1","57","GREAT JONES ST","10012","2123881070","49","2012-04-10 00:00:00","P","06F","14","","","2013-09-13 01:01:06.177000000" +"41394959","BOHEMIAN NEW YORK","1","57","GREAT JONES ST","10012","2123881070","49","2013-02-19 00:00:00","F","06E","47","","","2013-09-13 01:01:06.177000000" +"41412577","GENKI SUSHI","5","262","ARDEN AVENUE","10312","7182277375","49","2013-06-07 00:00:00","F","06A","50","","","2013-09-13 01:01:06.177000000" +"41412577","GENKI SUSHI","5","262","ARDEN AVENUE","10312","7182277375","49","2013-06-07 00:00:00","F","08B","50","","","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-02-20 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-04-04 00:00:00","G","06F","51","","","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-07-31 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"41443732","EL BURRITO LOCO","4","90-18","ROOSEVELT AVENUE","11372","3479653206","81","2010-05-10 13:09:00","F","08B","49","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-01-19 00:00:00","F","10F","26","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-07-13 00:00:00","U","04C","15","B","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-11-02 00:00:00","F","04N","33","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-11-02 00:00:00","F","08A","33","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-12-14 00:00:00","U","06C","21","B","2011-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2012-05-10 00:00:00","P","06E","22","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2012-05-21 00:00:00","D","02B","11","A","2012-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2012-05-21 00:00:00","D","10F","11","A","2012-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2012-10-11 00:00:00","P","04N","23","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2010-10-04 00:00:00","F","02B","28","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2011-04-18 00:00:00","P","06C","20","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2011-12-29 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2012-01-09 00:00:00","F","04L","23","C","2012-01-09 00:00:00","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2012-07-31 00:00:00","F","04L","50","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2012-08-15 00:00:00","U","04L","21","B","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2011-12-20 00:00:00","F","04L","20","C","2011-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2012-04-25 00:00:00","F","04L","44","","","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2012-05-22 00:00:00","D","02B","10","A","2012-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2012-05-22 00:00:00","D","10A","10","A","2012-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2012-12-01 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2013-02-14 00:00:00","U","04H","19","B","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41407838","SUBWAY","1","612","8 AVENUE","10018","2122219480","75","2011-10-31 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2013-06-10 00:00:00","F","04N","42","","","2013-09-13 01:01:06.177000000" +"41408277","NOBI SUSHI","1","437","3RD AVENUE","10016","2124818333","49","2011-02-11 00:00:00","D","09B","12","A","2011-02-11 00:00:00","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-05-24 13:34:00","U","02G","27","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-05-24 13:34:00","U","06E","27","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-05-24 13:34:00","U","08A","27","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-10-27 00:00:00","U","08A","18","B","2010-10-27 00:00:00","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2011-06-01 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2011-06-01 00:00:00","F","06D","35","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2011-06-01 00:00:00","F","06E","35","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2011-06-01 00:00:00","F","08A","35","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2011-06-01 00:00:00","F","10H","35","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2011-11-16 00:00:00","P","04C","19","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2011-11-29 00:00:00","F","04M","19","C","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2011-05-18 00:00:00","G","04H","76","","","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2011-05-18 00:00:00","G","08A","76","","","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2012-03-31 00:00:00","F","02B","22","C","2012-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2012-03-31 00:00:00","F","10B","22","C","2012-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2012-08-28 00:00:00","P","06C","23","","","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2011-01-13 00:00:00","C","10F","12","A","2011-01-13 00:00:00","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2012-01-17 00:00:00","D","02B","11","A","2012-01-17 00:00:00","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2010-10-07 00:00:00","U","02B","12","B","2010-10-07 00:00:00","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2011-05-23 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2011-12-14 00:00:00","U","09C","8","B","2011-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2010-12-30 00:00:00","F","04M","29","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2011-01-26 00:00:00","F","02B","23","C","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2011-01-26 00:00:00","F","10A","23","C","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2011-01-26 00:00:00","F","10B","23","C","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2011-05-19 00:00:00","F","10B","30","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2011-05-19 00:00:00","F","99B","30","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2013-05-20 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2013-05-20 00:00:00","P","04A","26","","","2013-09-13 01:01:06.177000000" +"41394230","EAST SUSHI","5","4371","AMBOY ROAD","10312","7189668888","49","2010-09-21 00:00:00","D","10F","2","A","2010-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41394230","EAST SUSHI","5","4371","AMBOY ROAD","10312","7189668888","49","2011-09-07 00:00:00","F","02G","34","","","2013-09-13 01:01:06.177000000" +"41396810","PEACE FOOD CAFE","1","460","AMSTERDAM AVENUE","10024","2123622266","03","2011-05-16 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41396810","PEACE FOOD CAFE","1","460","AMSTERDAM AVENUE","10024","2123622266","03","2011-05-16 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41396810","PEACE FOOD CAFE","1","460","AMSTERDAM AVENUE","10024","2123622266","03","2011-05-16 00:00:00","F","06B","49","","","2013-09-13 01:01:06.177000000" +"41396810","PEACE FOOD CAFE","1","460","AMSTERDAM AVENUE","10024","2123622266","03","2011-05-16 00:00:00","F","22B","49","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2010-11-22 00:00:00","U","02G","7","B","2010-11-22 00:00:00","2013-09-13 01:01:06.177000000" +"41445737","1818 SEAFOOD RESTAURANT","3","1818","AVENUE U","11229","7183326188","20","2010-09-22 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2011-02-02 00:00:00","D","10F","7","A","2011-02-02 00:00:00","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2012-01-24 00:00:00","F","06F","38","","","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2012-07-10 00:00:00","U","06A","27","B","2012-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2013-04-05 00:00:00","F","10F","32","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2012-03-05 00:00:00","F","04K","30","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2012-03-05 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2012-07-23 00:00:00","P","04M","21","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2012-07-23 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2012-08-06 00:00:00","G","02G","48","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2013-08-01 00:00:00","P","10D","15","","","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2012-12-14 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2012-12-14 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2013-06-01 00:00:00","F","06F","32","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2011-04-18 00:00:00","F","04J","65","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2012-06-19 00:00:00","D","06D","8","A","2012-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2013-03-28 00:00:00","U","02B","14","B","2013-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41394768","Picnic Garden","4","147-42","NORTHERN BOULEVARD","11354","7183585959","52","2013-07-24 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41394768","Picnic Garden","4","147-42","NORTHERN BOULEVARD","11354","7183585959","52","2013-07-24 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41410764","SUBWAY","2","4375A","WHITE PLAINS ROAD","10466","7186523075","69","2012-05-22 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41394959","BOHEMIAN NEW YORK","1","57","GREAT JONES ST","10012","2123881070","49","2012-04-18 00:00:00","U","02B","2","B","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41394959","BOHEMIAN NEW YORK","1","57","GREAT JONES ST","10012","2123881070","49","2013-02-19 00:00:00","F","10F","47","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2010-11-18 00:00:00","U","06D","19","B","2010-11-18 00:00:00","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2011-04-18 00:00:00","P","06A","20","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2011-12-29 00:00:00","F","02B","30","","","2013-09-13 01:01:06.177000000" +"41406628","THIS AND THAT NO NONSENSE RESTAURANT","3","419","EAST 98 STREET","11212","7183850658","17","2011-04-06 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41406628","THIS AND THAT NO NONSENSE RESTAURANT","3","419","EAST 98 STREET","11212","7183850658","17","2011-04-06 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-04-20 11:06:00","F","08A","74","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-04-20 11:06:00","F","10G","74","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-10-14 00:00:00","P","06C","25","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-10-14 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-10-27 00:00:00","U","04M","18","B","2010-10-27 00:00:00","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2012-04-05 00:00:00","F","04C","45","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2012-04-05 00:00:00","F","06A","45","","","2013-09-13 01:01:06.177000000" +"41398824","VARIETY CAFE","3","145","DRIGGS AVENUE","11222","3475992351","14","2010-10-12 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2012-04-18 00:00:00","D","02G","10","A","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2012-04-18 00:00:00","D","09A","10","A","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2012-10-06 00:00:00","D","02B","12","A","2012-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2013-03-19 00:00:00","P","06F","17","","","2013-09-13 01:01:06.177000000" +"41458274","RAY'S PIZZA EXPRESS","2","570","KAPPOCK STREET","10463","7185488510","62","2011-08-24 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2011-05-17 00:00:00","F","10F","25","C","2011-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41412577","GENKI SUSHI","5","262","ARDEN AVENUE","10312","7182277375","49","2012-06-12 00:00:00","F","02G","33","","","2013-09-13 01:01:06.177000000" +"41412577","GENKI SUSHI","5","262","ARDEN AVENUE","10312","7182277375","49","2012-06-18 00:00:00","D","06B","12","A","2012-06-18 00:00:00","2013-09-13 01:01:06.177000000" +"41413288","MR. WONTON","4","2604","JACKSON AVENUE","11101","7184821117","20","2012-08-27 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41413288","MR. WONTON","4","2604","JACKSON AVENUE","11101","7184821117","20","2012-08-27 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2011-10-19 00:00:00","F","06C","34","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2012-06-12 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2013-01-05 00:00:00","F","04C","33","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2013-01-28 00:00:00","D","02G","11","A","2013-01-28 00:00:00","2013-09-13 01:01:06.177000000" +"41417880","PASIONES BAR","4","37-65","103 STREET","11368","3476105189","53","2011-06-27 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41408277","NOBI SUSHI","1","437","3RD AVENUE","10016","2124818333","49","2011-01-10 00:00:00","F","06F","21","","","2013-09-13 01:01:06.177000000" +"41408277","NOBI SUSHI","1","437","3RD AVENUE","10016","2124818333","49","2012-04-02 00:00:00","P","02G","16","","","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2010-10-14 00:00:00","F","04L","35","","","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2010-10-14 00:00:00","F","06D","35","","","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2010-10-14 00:00:00","F","06E","35","","","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2010-10-14 00:00:00","F","10F","35","","","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2012-03-26 00:00:00","F","06C","39","","","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2012-03-26 00:00:00","F","10F","39","","","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2011-02-26 00:00:00","F","08A","26","C","2011-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2011-02-26 00:00:00","F","10E","26","C","2011-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2011-09-06 00:00:00","D","08C","11","A","2011-09-06 00:00:00","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2011-09-06 00:00:00","D","10B","11","A","2011-09-06 00:00:00","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2012-01-23 00:00:00","D","04L","9","A","2012-01-23 00:00:00","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2012-07-12 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41459355","TRINI DELIGHT","4","110-02","LIBERTY AVENUE","11419","7183221203","17","2011-04-18 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41396810","PEACE FOOD CAFE","1","460","AMSTERDAM AVENUE","10024","2123622266","03","2011-05-16 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41459557","CURRY HEIGHTS","3","151","REMSEN STREET","11201","7182609000","44","2011-08-29 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2010-03-16 20:23:00","U","06E","17","","","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2011-03-16 00:00:00","F","02B","28","C","2011-03-16 00:00:00","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2011-07-28 00:00:00","P","09C","24","","","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2011-08-16 00:00:00","D","06E","8","A","2011-08-16 00:00:00","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2012-06-19 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2010-12-30 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2011-05-19 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2011-11-25 00:00:00","F","10F","33","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2012-01-05 00:00:00","D","06B","12","A","2012-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41409233","ZEYTINZ","1","24","WEST 40 STREET","10018","2125758080","27","2012-09-06 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2012-02-07 00:00:00","D","02G","13","A","2012-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2012-06-28 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2013-04-05 00:00:00","F","02B","32","","","2013-09-13 01:01:06.177000000" +"41449503","OKEANOS","3","314","7 AVENUE","11215","3477254162","38","2012-09-18 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2011-03-02 00:00:00","F","04M","17","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2011-03-02 00:00:00","F","10F","17","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2012-11-21 00:00:00","P","04C","21","","","2013-09-13 01:01:06.177000000" +"41419933","KOTO SUSHI & STEAK","3","552","HENRY STREET","11231","7182228055","49","2011-06-07 00:00:00","D","10F","13","A","2011-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41419933","KOTO SUSHI & STEAK","3","552","HENRY STREET","11231","7182228055","49","2012-05-26 00:00:00","P","02B","23","","","2013-09-13 01:01:06.177000000" +"41419933","KOTO SUSHI & STEAK","3","552","HENRY STREET","11231","7182228055","49","2012-05-26 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"41402195","LAS PALMAS DELI","1","3891","BROADWAY","10032","9175210349","55","2012-02-21 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41398824","VARIETY CAFE","3","145","DRIGGS AVENUE","11222","3475992351","14","2010-10-12 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41398824","VARIETY CAFE","3","145","DRIGGS AVENUE","11222","3475992351","14","2010-10-12 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"41449961","PENN SUSHI","1","000","PENN STATION","10001","2125645496","49","2012-08-23 00:00:00","D","10B","13","A","2012-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41449961","PENN SUSHI","1","000","PENN STATION","10001","2125645496","49","2013-01-14 00:00:00","P","02B","7","","","2013-09-13 01:01:06.177000000" +"41449961","PENN SUSHI","1","000","PENN STATION","10001","2125645496","49","2013-09-04 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"41410764","SUBWAY","2","4375A","WHITE PLAINS ROAD","10466","7186523075","69","2012-05-22 00:00:00","G","10B","49","","","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2010-12-02 00:00:00","F","09A","45","","","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2012-03-08 00:00:00","U","04L","7","B","2012-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41420672","COLUMBUS RESTAURANT","1","903","COLUMBUS AVENUE","10025","2122221304","53","2011-07-06 00:00:00","G","10A","49","","","2013-09-13 01:01:06.177000000" +"41416878","KISSENA DOMINICAN DINER","4","7102","KISSENA BOULEVARD","11367","7187938270","53","2012-08-16 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41416878","KISSENA DOMINICAN DINER","4","7102","KISSENA BOULEVARD","11367","7187938270","53","2012-08-16 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2011-05-19 00:00:00","O","10F","7","P","2011-05-19 00:00:00","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2012-03-31 00:00:00","F","04N","22","C","2012-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2012-08-28 00:00:00","P","06D","23","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2011-05-17 00:00:00","F","08A","25","C","2011-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2011-10-19 00:00:00","F","08A","34","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2011-11-04 00:00:00","D","10F","2","A","2011-11-04 00:00:00","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2012-06-12 00:00:00","F","04M","28","","","2013-09-13 01:01:06.177000000" +"41450783","KIKKU JAPANESE RESTAURANT","1","50","WEST 55 STREET","10019","2125828357","49","2011-05-11 00:00:00","U","06C","9","B","2011-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"41450783","KIKKU JAPANESE RESTAURANT","1","50","WEST 55 STREET","10019","2125828357","49","2011-05-11 00:00:00","U","09C","9","B","2011-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"41450783","KIKKU JAPANESE RESTAURANT","1","50","WEST 55 STREET","10019","2125828357","49","2011-12-20 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41450783","KIKKU JAPANESE RESTAURANT","1","50","WEST 55 STREET","10019","2125828357","49","2011-12-20 00:00:00","P","09B","23","","","2013-09-13 01:01:06.177000000" +"41450783","KIKKU JAPANESE RESTAURANT","1","50","WEST 55 STREET","10019","2125828357","49","2012-05-14 00:00:00","D","10F","12","A","2012-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-03-22 00:00:00","F","06D","35","","","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-05-31 00:00:00","F","04N","32","C","2011-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2012-07-16 00:00:00","P","04L","27","","","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2010-09-07 00:00:00","P","99B","14","","","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2011-05-27 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2011-11-15 00:00:00","D","10F","9","A","2011-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2012-12-20 00:00:00","U","04L","12","B","2012-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41461936","FIZA RESTAURANT","4","259-07","HILLSIDE AVENUE","11004","7183473100","44","2011-06-06 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41417880","PASIONES BAR","4","37-65","103 STREET","11368","3476105189","53","2011-06-27 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41417880","PASIONES BAR","4","37-65","103 STREET","11368","3476105189","53","2011-06-27 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"41412577","GENKI SUSHI","5","262","ARDEN AVENUE","10312","7182277375","49","2012-06-12 00:00:00","F","02B","33","","","2013-09-13 01:01:06.177000000" +"41412577","GENKI SUSHI","5","262","ARDEN AVENUE","10312","7182277375","49","2012-06-12 00:00:00","F","04A","33","","","2013-09-13 01:01:06.177000000" +"41412577","GENKI SUSHI","5","262","ARDEN AVENUE","10312","7182277375","49","2013-06-07 00:00:00","F","06D","50","","","2013-09-13 01:01:06.177000000" +"41412577","GENKI SUSHI","5","262","ARDEN AVENUE","10312","7182277375","49","2013-06-07 00:00:00","F","06E","50","","","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2011-05-25 00:00:00","U","06A","10","B","2011-05-25 00:00:00","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2011-12-06 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2012-04-25 00:00:00","F","02G","44","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-01-19 00:00:00","P","10F","14","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-02-01 00:00:00","D","08A","13","A","2011-02-01 00:00:00","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-07-05 00:00:00","G","08C","119","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-07-05 00:00:00","G","10E","119","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-07-08 00:00:00","W","08C","13","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-09-22 00:00:00","P","06E","20","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-09-22 00:00:00","P","10E","20","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2012-05-10 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2012-12-19 00:00:00","G","02G","75","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2012-12-19 00:00:00","G","08A","75","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2012-12-19 00:00:00","G","10I","75","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2012-12-24 00:00:00","O","04L","10","P","2012-12-24 00:00:00","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2013-08-03 00:00:00","G","06A","56","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2013-08-03 00:00:00","G","08C","56","","","2013-09-13 01:01:06.177000000" +"41462077","TAKASHI","1","456","HUDSON STREET","10014","2124142929","49","2012-06-07 00:00:00","D","06C","7","A","2012-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2011-02-26 00:00:00","F","10F","26","C","2011-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2011-08-04 00:00:00","P","06E","24","","","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2012-07-12 00:00:00","P","08C","22","","","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2013-02-21 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"41405662","FARRELLS","3","215","PROSPECT PARK WEST","11215","7187888779","03","2011-06-03 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41405662","FARRELLS","3","215","PROSPECT PARK WEST","11215","7187888779","03","2011-06-03 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-01-31 00:00:00","P","09C","24","","","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-01-31 00:00:00","P","10F","24","","","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-08-19 00:00:00","F","08A","59","","","2013-09-13 01:01:06.177000000" +"41418929","SUSHI JUN","1","875","3 AVENUE","10022","2123555303","49","2010-06-21 13:37:00","U","06B","27","","","2013-09-13 01:01:06.177000000" +"41418929","SUSHI JUN","1","875","3 AVENUE","10022","2123555303","49","2012-05-31 00:00:00","D","02B","11","A","2012-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41452662","THE POINT AFRICAN CARIBBEAN RESTAURANT","2","2037","WEBSTER AVENUE","10457","3472701985","02","2012-03-28 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2011-10-18 00:00:00","U","10I","9","B","2011-10-18 00:00:00","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2012-04-24 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"41406628","THIS AND THAT NO NONSENSE RESTAURANT","3","419","EAST 98 STREET","11212","7183850658","17","2011-04-06 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2010-12-30 00:00:00","F","06D","29","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2011-11-25 00:00:00","F","02B","33","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2013-05-20 00:00:00","P","09C","26","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2013-05-20 00:00:00","P","10D","26","","","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2011-02-23 00:00:00","F","02G","53","","","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2011-02-23 00:00:00","F","10H","53","","","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2011-07-29 00:00:00","B","10B","13","A","2011-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2011-06-08 00:00:00","F","10D","28","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2011-07-06 00:00:00","U","06C","13","B","2011-07-06 00:00:00","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2011-12-27 00:00:00","D","10B","11","A","2011-12-27 00:00:00","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2012-09-25 00:00:00","F","04J","59","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2012-09-25 00:00:00","F","06E","59","","","2013-09-13 01:01:06.177000000" +"41402195","LAS PALMAS DELI","1","3891","BROADWAY","10032","9175210349","55","2012-02-21 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41402195","LAS PALMAS DELI","1","3891","BROADWAY","10032","9175210349","55","2012-02-21 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41419933","KOTO SUSHI & STEAK","3","552","HENRY STREET","11231","7182228055","49","2012-06-20 00:00:00","D","10I","4","A","2012-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41419933","KOTO SUSHI & STEAK","3","552","HENRY STREET","11231","7182228055","49","2012-11-14 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"41419933","KOTO SUSHI & STEAK","3","552","HENRY STREET","11231","7182228055","49","2012-11-14 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41419933","KOTO SUSHI & STEAK","3","552","HENRY STREET","11231","7182228055","49","2012-12-04 00:00:00","D","06D","9","A","2012-12-04 00:00:00","2013-09-13 01:01:06.177000000" +"41453367","RIDLEY'S SEAFOOD SPOT","2","969","OGDEN AVENUE","10452","3472704247","72","2013-05-10 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2011-02-02 00:00:00","D","10B","7","A","2011-02-02 00:00:00","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2011-02-02 00:00:00","D","22C","7","A","2011-02-02 00:00:00","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2012-06-28 00:00:00","P","06D","24","","","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2012-07-10 00:00:00","U","06D","27","B","2012-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2012-07-10 00:00:00","U","10B","27","B","2012-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41407838","SUBWAY","1","612","8 AVENUE","10018","2122219480","75","2011-10-31 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41408277","NOBI SUSHI","1","437","3RD AVENUE","10016","2124818333","49","2011-02-11 00:00:00","D","02B","12","A","2011-02-11 00:00:00","2013-09-13 01:01:06.177000000" +"41408277","NOBI SUSHI","1","437","3RD AVENUE","10016","2124818333","49","2011-08-25 00:00:00","P","06A","24","","","2013-09-13 01:01:06.177000000" +"41408277","NOBI SUSHI","1","437","3RD AVENUE","10016","2124818333","49","2011-09-22 00:00:00","U","05D","19","B","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41408277","NOBI SUSHI","1","437","3RD AVENUE","10016","2124818333","49","2012-04-25 00:00:00","U","06F","11","B","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41420672","COLUMBUS RESTAURANT","1","903","COLUMBUS AVENUE","10025","2122221304","53","2011-07-06 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41464115","JFK WOK CAFE","3","773","60 STREET","11220","7186808880","20","2011-03-17 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2011-08-29 00:00:00","U","10J","14","B","2011-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2012-03-19 00:00:00","P","04L","9","","","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2012-03-31 00:00:00","F","08A","22","C","2012-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41453648","TUDOR BAR AND GRILL","1","304","EAST 42 STREET","10017","2122973480","03","2013-08-28 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41453658","JUSTINO'S PIZZERIA","1","879-883 ","10 AVENUE","10019","2125821222","63","2011-12-22 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41409233","ZEYTINZ","1","24","WEST 40 STREET","10018","2125758080","27","2012-09-06 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41409233","ZEYTINZ","1","24","WEST 40 STREET","10018","2125758080","27","2012-09-06 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"41409233","ZEYTINZ","1","24","WEST 40 STREET","10018","2125758080","27","2012-09-06 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41416878","KISSENA DOMINICAN DINER","4","7102","KISSENA BOULEVARD","11367","7187938270","53","2012-08-16 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41416878","KISSENA DOMINICAN DINER","4","7102","KISSENA BOULEVARD","11367","7187938270","53","2012-08-16 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2010-06-01 22:08:00","U","06A","10","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2011-06-08 00:00:00","P","06D","25","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2013-02-06 00:00:00","G","04N","52","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2013-02-08 00:00:00","O","10F","14","P","2013-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-03-22 00:00:00","F","04L","35","","","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-05-31 00:00:00","F","10B","32","C","2011-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-10-24 00:00:00","U","06E","20","B","2011-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2012-02-27 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2012-03-05 00:00:00","D","08B","9","A","2012-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2012-08-13 00:00:00","D","10F","11","A","2012-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2011-02-03 00:00:00","P","10B","17","","","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2011-03-10 00:00:00","D","10F","11","A","2011-03-10 00:00:00","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2011-08-08 00:00:00","U","10H","26","B","2011-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2013-01-22 00:00:00","P","03C","23","","","2013-09-13 01:01:06.177000000" +"41427225","ELEVAGE","1","302","EAST 45 STREET","10017","2129220930","49","2012-10-12 00:00:00","F","04L","18","","","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2012-05-30 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2012-11-15 00:00:00","P","10H","6","","","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2013-06-17 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2010-09-24 00:00:00","F","10B","31","","","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2012-07-26 00:00:00","D","02B","9","A","2012-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2013-02-21 00:00:00","P","08C","19","","","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2013-03-20 00:00:00","D","02B","13","A","2013-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2010-09-21 00:00:00","F","04L","57","","","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-05-17 00:00:00","F","04K","34","","","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-06-27 00:00:00","F","04J","44","C","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-06-27 00:00:00","F","10F","44","C","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2011-04-28 00:00:00","D","08A","12","A","2011-04-28 00:00:00","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2011-08-25 00:00:00","P","10F","26","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2011-09-08 00:00:00","U","10B","8","B","2011-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2012-03-22 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-01-31 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-01-31 00:00:00","P","10A","24","","","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-01-31 00:00:00","P","10B","24","","","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-08-19 00:00:00","F","04C","59","","","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-08-19 00:00:00","F","06D","59","","","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-08-19 00:00:00","F","09C","59","","","2013-09-13 01:01:06.177000000" +"41418929","SUSHI JUN","1","875","3 AVENUE","10022","2123555303","49","2010-06-21 13:37:00","U","10L","27","","","2013-09-13 01:01:06.177000000" +"41419933","KOTO SUSHI & STEAK","3","552","HENRY STREET","11231","7182228055","49","2011-06-07 00:00:00","D","06C","13","A","2011-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2011-05-12 00:00:00","P","04C","16","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2011-06-23 00:00:00","F","02G","50","C","2011-06-23 00:00:00","2013-09-13 01:01:06.177000000" +"41412577","GENKI SUSHI","5","262","ARDEN AVENUE","10312","7182277375","49","2013-06-07 00:00:00","F","06C","50","","","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2012-12-01 00:00:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"41419933","KOTO SUSHI & STEAK","3","552","HENRY STREET","11231","7182228055","49","2012-06-20 00:00:00","D","10F","4","A","2012-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41419933","KOTO SUSHI & STEAK","3","552","HENRY STREET","11231","7182228055","49","2012-11-14 00:00:00","P","04H","17","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2011-06-23 00:00:00","F","06E","50","C","2011-06-23 00:00:00","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2013-07-31 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2012-12-01 00:00:00","F","10H","32","","","2013-09-13 01:01:06.177000000" +"41420672","COLUMBUS RESTAURANT","1","903","COLUMBUS AVENUE","10025","2122221304","53","2011-07-06 00:00:00","G","04J","49","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2010-11-10 00:00:00","P","10B","17","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2010-12-28 00:00:00","U","06C","19","B","2010-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2011-06-16 00:00:00","F","99B","37","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2011-07-05 00:00:00","U","10F","15","B","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2012-03-19 00:00:00","F","04L","44","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2012-03-28 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2012-03-28 00:00:00","U","06E","10","B","2012-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2012-08-20 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2012-09-19 00:00:00","U","08A","10","B","2012-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2013-05-21 00:00:00","F","04J","33","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2013-05-21 00:00:00","F","06D","33","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2011-07-14 00:00:00","P","10F","27","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2011-07-27 00:00:00","U","06A","17","B","2011-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-08-15 00:00:00","F","04N","38","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-08-15 00:00:00","F","08A","38","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2013-04-20 00:00:00","F","04C","47","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2013-04-20 00:00:00","F","10F","47","","","2013-09-13 01:01:06.177000000" +"41407838","SUBWAY","1","612","8 AVENUE","10018","2122219480","75","2011-10-31 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41407838","SUBWAY","1","612","8 AVENUE","10018","2122219480","75","2011-10-31 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41408277","NOBI SUSHI","1","437","3RD AVENUE","10016","2124818333","49","2011-01-10 00:00:00","F","10F","21","","","2013-09-13 01:01:06.177000000" +"41408277","NOBI SUSHI","1","437","3RD AVENUE","10016","2124818333","49","2011-09-22 00:00:00","U","10B","19","B","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41408277","NOBI SUSHI","1","437","3RD AVENUE","10016","2124818333","49","2012-04-02 00:00:00","P","02B","16","","","2013-09-13 01:01:06.177000000" +"41430090","CITLALI'S DELI AND GROCERY","3","4118","5 AVENUE","11232","3479873681","55","2011-12-08 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41430090","CITLALI'S DELI AND GROCERY","3","4118","5 AVENUE","11232","3479873681","55","2011-12-08 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2010-12-30 00:00:00","F","06C","29","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2010-12-30 00:00:00","F","22C","29","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2011-05-19 00:00:00","F","06A","30","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2013-05-20 00:00:00","P","10F","26","","","2013-09-13 01:01:06.177000000" +"41430090","CITLALI'S DELI AND GROCERY","3","4118","5 AVENUE","11232","3479873681","55","2011-12-08 00:00:00","F","10D","49","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-05-26 14:51:00","F","10G","99","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-06-14 13:17:00","G","04M","66","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-07-19 12:00:00","O","","0","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-02-17 00:00:00","F","02G","30","C","2011-02-17 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-06-10 00:00:00","P","06C","23","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-12-03 00:00:00","F","04H","29","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-05-16 00:00:00","F","04M","66","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-09-10 00:00:00","F","02B","40","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-09-10 00:00:00","F","04M","40","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-05-04 00:00:00","F","02B","56","C","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-05-04 00:00:00","F","04L","56","C","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-05-04 00:00:00","F","10A","56","C","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-10-12 00:00:00","F","04M","67","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-10-12 00:00:00","F","08A","67","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2012-03-05 00:00:00","F","04H","30","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2012-03-05 00:00:00","F","06C","30","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2012-03-14 00:00:00","U","02B","19","B","2012-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2013-01-10 00:00:00","P","06F","18","","","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2012-02-01 00:00:00","P","06D","20","","","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2012-02-01 00:00:00","P","09C","20","","","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2012-04-03 00:00:00","U","06C","20","B","2012-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2013-01-08 00:00:00","U","06D","10","B","2013-01-08 00:00:00","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-03-22 00:00:00","F","08A","35","","","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-03-22 00:00:00","F","10D","35","","","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2012-02-27 00:00:00","P","04N","24","","","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2012-08-13 00:00:00","D","08A","11","A","2012-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2011-04-11 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2011-10-21 00:00:00","U","04L","19","B","2011-10-21 00:00:00","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2012-06-28 00:00:00","P","06C","24","","","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2012-06-28 00:00:00","P","10B","24","","","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2012-07-10 00:00:00","U","02G","27","B","2012-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2013-04-05 00:00:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2013-04-05 00:00:00","F","04A","32","","","2013-09-13 01:01:06.177000000" +"41427225","ELEVAGE","1","302","EAST 45 STREET","10017","2129220930","49","2012-03-06 00:00:00","U","08A","13","B","2012-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41427225","ELEVAGE","1","302","EAST 45 STREET","10017","2129220930","49","2012-03-06 00:00:00","U","10A","13","B","2012-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41457942","EVERYTHING BAGELS","1","81","3 AVENUE","10003","2123539933","07","2012-12-26 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41431748","GOWASABI","4","34-02","30 AVENUE","11103","7182747354","49","2011-05-12 00:00:00","F","04M","44","","","2013-09-13 01:01:06.177000000" +"41431748","GOWASABI","4","34-02","30 AVENUE","11103","7182747354","49","2011-05-12 00:00:00","F","10F","44","","","2013-09-13 01:01:06.177000000" +"41431748","GOWASABI","4","34-02","30 AVENUE","11103","7182747354","49","2011-10-26 00:00:00","D","04H","7","A","2011-10-26 00:00:00","2013-09-13 01:01:06.177000000" +"41431899","THAI PALATE","1","534","9 AVENUE","10018","2122799899","82","2013-08-27 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41416878","KISSENA DOMINICAN DINER","4","7102","KISSENA BOULEVARD","11367","7187938270","53","2012-08-16 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2009-11-19 11:38:00","U","04M","20","","","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2010-09-21 00:00:00","F","18A","57","","","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-06-27 00:00:00","F","04N","44","C","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-06-27 00:00:00","F","08A","44","C","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-06-27 00:00:00","F","10B","44","C","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-08-19 00:00:00","F","04N","59","","","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-08-19 00:00:00","F","08C","59","","","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-09-28 00:00:00","F","02B","26","C","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-09-28 00:00:00","F","04M","26","C","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41410764","SUBWAY","2","4375A","WHITE PLAINS ROAD","10466","7186523075","69","2012-05-22 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2011-06-10 00:00:00","F","06D","43","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2012-03-19 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2012-04-25 00:00:00","U","04C","25","B","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2012-11-14 00:00:00","F","06D","28","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2012-11-14 00:00:00","F","06E","28","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2011-04-08 00:00:00","F","02B","28","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2011-04-28 00:00:00","D","10F","12","A","2011-04-28 00:00:00","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2011-08-25 00:00:00","P","10A","26","","","2013-09-13 01:01:06.177000000" +"41428414","GHANG THAI KITCHEN","3","229","COURT STREET","11201","7188751369","82","2011-09-13 00:00:00","G","09A","49","","","2013-09-13 01:01:06.177000000" +"41428414","GHANG THAI KITCHEN","3","229","COURT STREET","11201","7188751369","82","2011-09-13 00:00:00","G","09B","49","","","2013-09-13 01:01:06.177000000" +"41412577","GENKI SUSHI","5","262","ARDEN AVENUE","10312","7182277375","49","2012-06-12 00:00:00","F","04C","33","","","2013-09-13 01:01:06.177000000" +"41412577","GENKI SUSHI","5","262","ARDEN AVENUE","10312","7182277375","49","2013-06-07 00:00:00","F","05D","50","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2012-04-10 00:00:00","P","06E","19","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2013-06-19 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2013-06-19 00:00:00","P","10B","24","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2010-10-14 00:00:00","F","02B","34","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2010-10-14 00:00:00","F","06A","34","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2010-11-30 00:00:00","C","10I","10","A","2010-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2011-10-24 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2011-11-21 00:00:00","F","09B","19","C","2011-11-21 00:00:00","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2012-04-30 00:00:00","F","02B","31","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2012-10-22 00:00:00","P","10F","8","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2013-07-31 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2011-02-26 00:00:00","F","10B","26","C","2011-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2012-07-12 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2012-07-26 00:00:00","D","10F","9","A","2012-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2013-02-14 00:00:00","U","10H","19","B","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2011-06-06 00:00:00","F","10H","33","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2011-12-15 00:00:00","F","06D","65","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2011-12-15 00:00:00","F","06E","65","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2011-12-28 00:00:00","F","02G","44","C","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2011-12-28 00:00:00","F","03B","44","C","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2013-06-27 00:00:00","P","06C","14","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2010-11-10 00:00:00","F","06E","29","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2011-04-21 00:00:00","G","02B","60","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2012-03-01 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2013-07-29 00:00:00","F","04L","18","","","2013-09-13 01:01:06.177000000" +"41413288","MR. WONTON","4","2604","JACKSON AVENUE","11101","7184821117","20","2012-08-27 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41471136","NAKATA SUSHI","5","1775-D ","RICHMOND ROAD ","10306","7189801891","49","2011-03-02 00:00:00","P","09C","15","","","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2013-01-16 00:00:00","F","08A","22","C","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2013-01-28 00:00:00","U","04C","20","","","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2013-01-28 00:00:00","U","06C","20","","","2013-09-13 01:01:06.177000000" +"41471288","THAT SUSHI SPOT","3","2462","NOSTRAND AVENUE","11210","3475875100","49","2011-10-06 00:00:00","P","09B","22","","","2013-09-13 01:01:06.177000000" +"41471288","THAT SUSHI SPOT","3","2462","NOSTRAND AVENUE","11210","3475875100","49","2012-06-28 00:00:00","F","10F","16","","","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2011-03-17 00:00:00","P","04L","16","","","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2011-03-17 00:00:00","P","06D","16","","","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2011-04-21 00:00:00","U","10B","26","B","2011-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2012-08-29 00:00:00","F","04N","43","","","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2012-08-29 00:00:00","F","08A","43","","","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2012-09-25 00:00:00","U","04N","11","B","2012-09-25 00:00:00","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2013-04-04 00:00:00","F","06C","26","","","2013-09-13 01:01:06.177000000" +"41434866","BELLA VITA","1","158","WEST 58 STREET","10019","2126647670","62","2012-05-29 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41434866","BELLA VITA","1","158","WEST 58 STREET","10019","2126647670","62","2012-05-29 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2010-12-14 00:00:00","U","06F","23","B","2010-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2011-08-20 00:00:00","P","04C","23","","","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2011-08-20 00:00:00","P","04J","23","","","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2012-01-12 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2012-09-24 00:00:00","F","10B","31","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2011-03-28 00:00:00","P","09B","19","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2012-07-12 00:00:00","D","10F","5","A","2012-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-02-04 00:00:00","F","08A","50","","","2013-09-13 01:01:06.177000000" +"41427225","ELEVAGE","1","302","EAST 45 STREET","10017","2129220930","49","2011-07-14 00:00:00","D","05D","10","A","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"41427225","ELEVAGE","1","302","EAST 45 STREET","10017","2129220930","49","2012-10-12 00:00:00","F","06D","18","","","2013-09-13 01:01:06.177000000" +"41427225","ELEVAGE","1","302","EAST 45 STREET","10017","2129220930","49","2012-12-04 00:00:00","U","04L","12","B","2012-12-04 00:00:00","2013-09-13 01:01:06.177000000" +"41418929","SUSHI JUN","1","875","3 AVENUE","10022","2123555303","49","2010-06-21 13:37:00","U","10C","27","","","2013-09-13 01:01:06.177000000" +"41418929","SUSHI JUN","1","875","3 AVENUE","10022","2123555303","49","2012-05-31 00:00:00","D","10B","11","A","2012-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-02-04 00:00:00","F","10E","50","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-02-26 00:00:00","G","04A","76","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-02-26 00:00:00","G","09B","76","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-03-07 00:00:00","O","08C","16","C","2013-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-06-18 00:00:00","F","10B","33","","","2013-09-13 01:01:06.177000000" +"41461119","CITY RESTAURANT","3","1486","FLATBUSH AVENUE","11210","7188597347","20","2013-09-11 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41461165","NEW BRISAS LATINAS BAKERY RESTAURANT","4","135-15","LEFFERTS BOULEVARD","11420","7183239183","77","2011-08-05 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2010-12-30 00:00:00","F","08C","29","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2010-12-30 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"41419933","KOTO SUSHI & STEAK","3","552","HENRY STREET","11231","7182228055","49","2010-06-24 13:00:00","U","02G","27","","","2013-09-13 01:01:06.177000000" +"41419933","KOTO SUSHI & STEAK","3","552","HENRY STREET","11231","7182228055","49","2010-06-24 13:00:00","U","04A","27","","","2013-09-13 01:01:06.177000000" +"41419933","KOTO SUSHI & STEAK","3","552","HENRY STREET","11231","7182228055","49","2010-06-24 13:00:00","U","06F","27","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2011-04-06 00:00:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2011-11-02 00:00:00","F","04L","40","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2011-11-16 00:00:00","U","08A","22","B","2011-11-16 00:00:00","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2012-04-20 00:00:00","F","04L","26","C","2012-04-20 00:00:00","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2012-04-20 00:00:00","F","06D","26","C","2012-04-20 00:00:00","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2012-04-20 00:00:00","F","06E","26","C","2012-04-20 00:00:00","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2012-04-20 00:00:00","F","08A","26","C","2012-04-20 00:00:00","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2012-09-11 00:00:00","P","10F","12","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2013-01-30 00:00:00","F","02B","45","C","2013-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2013-07-17 00:00:00","P","10B","20","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2012-06-01 00:00:00","D","10D","9","A","2012-06-01 00:00:00","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2010-06-02 11:54:00","F","04O","45","","","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2010-06-17 15:31:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2011-03-08 00:00:00","D","10F","8","A","2011-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2011-04-27 00:00:00","U","06F","11","B","2011-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2011-04-27 00:00:00","U","10F","11","B","2011-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2011-10-27 00:00:00","F","04M","41","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-05-10 00:00:00","F","08A","44","C","2012-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-09-25 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-11-20 00:00:00","G","04C","77","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-11-20 00:00:00","G","04M","77","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2013-04-22 00:00:00","P","04L","15","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2013-04-22 00:00:00","P","09C","15","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2013-04-22 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2010-09-21 00:00:00","F","06D","57","","","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2010-09-21 00:00:00","F","06E","57","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2011-04-08 00:00:00","F","04L","28","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2011-04-08 00:00:00","F","06B","28","","","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2012-02-07 00:00:00","D","10H","13","A","2012-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2010-09-07 00:00:00","P","10F","14","","","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2010-10-06 00:00:00","U","04N","11","B","2010-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2010-10-06 00:00:00","U","06E","11","B","2010-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2011-06-27 00:00:00","U","06A","13","B","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41461936","FIZA RESTAURANT","4","259-07","HILLSIDE AVENUE","11004","7183473100","44","2011-06-06 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41461936","FIZA RESTAURANT","4","259-07","HILLSIDE AVENUE","11004","7183473100","44","2011-06-06 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41461936","FIZA RESTAURANT","4","259-07","HILLSIDE AVENUE","11004","7183473100","44","2011-06-06 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-07-05 00:00:00","G","99B","119","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-07-08 00:00:00","W","08A","13","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-09-22 00:00:00","P","04H","20","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-09-22 00:00:00","P","06A","20","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2012-12-19 00:00:00","G","06E","75","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2013-08-03 00:00:00","G","08A","56","","","2013-09-13 01:01:06.177000000" +"41436709","EAST NOODLE & IZAKAYA","1","119","2 AVENUE","10003","2129824285","49","2012-08-30 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"41431748","GOWASABI","4","34-02","30 AVENUE","11103","7182747354","49","2011-05-12 00:00:00","F","06B","44","","","2013-09-13 01:01:06.177000000" +"41431748","GOWASABI","4","34-02","30 AVENUE","11103","7182747354","49","2011-05-12 00:00:00","F","08A","44","","","2013-09-13 01:01:06.177000000" +"41431748","GOWASABI","4","34-02","30 AVENUE","11103","7182747354","49","2011-05-25 00:00:00","D","06E","13","A","2011-05-25 00:00:00","2013-09-13 01:01:06.177000000" +"41431899","THAI PALATE","1","534","9 AVENUE","10018","2122799899","82","2013-08-27 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41420672","COLUMBUS RESTAURANT","1","903","COLUMBUS AVENUE","10025","2122221304","53","2011-07-06 00:00:00","G","05F","49","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2011-08-25 00:00:00","P","10B","26","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2013-03-05 00:00:00","F","04H","39","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2013-03-05 00:00:00","F","06D","39","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2013-03-05 00:00:00","F","08A","39","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2013-08-27 00:00:00","F","06D","37","","","2013-09-13 01:01:06.177000000" +"41462077","TAKASHI","1","456","HUDSON STREET","10014","2124142929","49","2012-01-04 00:00:00","U","10H","7","B","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41462077","TAKASHI","1","456","HUDSON STREET","10014","2124142929","49","2013-06-18 00:00:00","P","06F","15","","","2013-09-13 01:01:06.177000000" +"41437112","SLICES AND ICES","4","208","BEACH 116 STREET","11694","7184740200","62","2012-06-25 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2011-04-04 00:00:00","D","02G","13","A","2011-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2012-03-12 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2012-03-19 00:00:00","F","04C","42","C","2012-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2012-03-19 00:00:00","F","09C","42","C","2012-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2012-11-30 00:00:00","U","08A","12","B","2012-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2013-07-31 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2011-02-23 00:00:00","F","04H","53","","","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2011-03-10 00:00:00","F","06C","7","C","2011-03-10 00:00:00","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2012-07-11 00:00:00","P","06B","18","","","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2012-07-11 00:00:00","P","10B","18","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2011-06-08 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2011-07-06 00:00:00","U","02G","13","B","2011-07-06 00:00:00","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2011-12-27 00:00:00","D","06C","11","A","2011-12-27 00:00:00","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2012-04-23 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2012-05-08 00:00:00","D","06D","13","A","2012-05-08 00:00:00","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2012-05-08 00:00:00","D","10F","13","A","2012-05-08 00:00:00","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2012-10-09 00:00:00","D","10B","5","A","2012-10-09 00:00:00","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2013-04-25 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"41463147","MA SAKE","3","1704","AVENUE M","11230","7189988670","22","2011-08-26 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41473838","NEW WONG WAH BAKERY","1","83","CANAL STREET","10002","2123438077","08","2011-08-20 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41473838","NEW WONG WAH BAKERY","1","83","CANAL STREET","10002","2123438077","08","2011-08-20 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41416878","KISSENA DOMINICAN DINER","4","7102","KISSENA BOULEVARD","11367","7187938270","53","2012-08-16 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-03-22 00:00:00","F","06B","35","","","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-05-31 00:00:00","F","02G","32","C","2011-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-05-31 00:00:00","F","08A","32","C","2011-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-05-31 00:00:00","F","09B","32","C","2011-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-05-31 00:00:00","F","99B","32","C","2011-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-09-12 00:00:00","F","06E","28","","","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2012-02-27 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2012-07-16 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2009-09-21 11:24:00","U","04M","14","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2010-03-09 14:03:00","F","10G","36","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2011-08-30 00:00:00","F","04C","34","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2011-10-12 00:00:00","D","10D","12","A","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-01-23 00:00:00","F","04M","77","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-01-23 00:00:00","F","06D","77","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-01-23 00:00:00","F","10I","77","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-06-08 00:00:00","G","04L","54","","","2013-09-13 01:01:06.177000000" +"41464115","JFK WOK CAFE","3","773","60 STREET","11220","7186808880","20","2011-03-17 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2011-04-04 00:00:00","P","10A","20","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2011-11-16 00:00:00","F","06B","42","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2012-05-24 00:00:00","O","10F","5","P","2012-05-24 00:00:00","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2013-01-24 00:00:00","F","04N","30","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2013-01-24 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2013-01-24 00:00:00","F","09C","30","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2013-07-26 00:00:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"41464253","JJ DELI","4","36-19","REVIEW AVENUE","11101","7183925500","03","2013-01-08 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2012-03-14 00:00:00","U","02B","14","B","2012-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2013-07-29 00:00:00","F","02G","18","","","2013-09-13 01:01:06.177000000" +"41434866","BELLA VITA","1","158","WEST 58 STREET","10019","2126647670","62","2012-05-29 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41434866","BELLA VITA","1","158","WEST 58 STREET","10019","2126647670","62","2012-05-29 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41430090","CITLALI'S DELI AND GROCERY","3","4118","5 AVENUE","11232","3479873681","55","2011-12-08 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41430090","CITLALI'S DELI AND GROCERY","3","4118","5 AVENUE","11232","3479873681","55","2011-12-08 00:00:00","F","04K","49","","","2013-09-13 01:01:06.177000000" +"41430090","CITLALI'S DELI AND GROCERY","3","4118","5 AVENUE","11232","3479873681","55","2011-12-08 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2010-09-24 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2012-07-12 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2013-02-21 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-01-31 00:00:00","P","06E","24","","","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-02-10 00:00:00","U","02B","25","B","2011-02-10 00:00:00","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-08-19 00:00:00","F","10F","59","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2011-04-25 00:00:00","U","04L","18","B","2011-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2011-12-12 00:00:00","F","06C","40","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2011-12-12 00:00:00","F","08A","40","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2011-12-12 00:00:00","F","10E","40","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2011-12-27 00:00:00","U","04L","11","B","2011-12-27 00:00:00","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2012-05-31 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2012-05-31 00:00:00","P","04L","17","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-02-04 00:00:00","F","10F","50","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-02-26 00:00:00","G","06E","76","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-03-07 00:00:00","O","10F","16","C","2013-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-06-18 00:00:00","F","06D","33","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-06-18 00:00:00","F","10F","33","","","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2011-07-30 00:00:00","P","05D","20","","","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2011-08-08 00:00:00","U","04C","26","B","2011-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41431899","THAI PALATE","1","534","9 AVENUE","10018","2122799899","82","2013-08-27 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41431899","THAI PALATE","1","534","9 AVENUE","10018","2122799899","82","2013-08-27 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41476813","GAN DA SUSHI","4","80-08","SURREY PLACE","11432","7183801818","49","2013-03-20 00:00:00","P","10F","26","","","2013-09-13 01:01:06.177000000" +"41435938","SUSHI YOU","4","215-05","73 AVENUE","11364","7187956557","49","2010-09-09 00:00:00","C","02G","9","A","2010-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41418929","SUSHI JUN","1","875","3 AVENUE","10022","2123555303","49","2010-06-21 13:37:00","U","02B","27","","","2013-09-13 01:01:06.177000000" +"41418929","SUSHI JUN","1","875","3 AVENUE","10022","2123555303","49","2012-05-31 00:00:00","D","10E","11","A","2012-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41442107","ROBATAYA","1","231","EAST 9 STREET","10003","2129799674","49","2011-06-16 00:00:00","U","02G","13","B","2011-06-16 00:00:00","2013-09-13 01:01:06.177000000" +"41442107","ROBATAYA","1","231","EAST 9 STREET","10003","2129799674","49","2011-10-05 00:00:00","D","09C","9","A","2011-10-05 00:00:00","2013-09-13 01:01:06.177000000" +"41436709","EAST NOODLE & IZAKAYA","1","119","2 AVENUE","10003","2129824285","49","2011-08-10 00:00:00","D","06E","11","A","2011-08-10 00:00:00","2013-09-13 01:01:06.177000000" +"41436709","EAST NOODLE & IZAKAYA","1","119","2 AVENUE","10003","2129824285","49","2012-08-30 00:00:00","P","04M","22","","","2013-09-13 01:01:06.177000000" +"41436709","EAST NOODLE & IZAKAYA","1","119","2 AVENUE","10003","2129824285","49","2012-09-10 00:00:00","D","08C","13","A","2012-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"41437112","SLICES AND ICES","4","208","BEACH 116 STREET","11694","7184740200","62","2012-06-25 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41437112","SLICES AND ICES","4","208","BEACH 116 STREET","11694","7184740200","62","2012-06-25 00:00:00","F","10I","49","","","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2012-03-12 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2012-03-19 00:00:00","F","06F","42","C","2012-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2012-07-30 00:00:00","U","10F","13","B","2012-07-30 00:00:00","2013-09-13 01:01:06.177000000" +"41419933","KOTO SUSHI & STEAK","3","552","HENRY STREET","11231","7182228055","49","2011-06-07 00:00:00","D","06A","13","A","2011-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41419933","KOTO SUSHI & STEAK","3","552","HENRY STREET","11231","7182228055","49","2012-12-04 00:00:00","D","08C","9","A","2012-12-04 00:00:00","2013-09-13 01:01:06.177000000" +"41477990","ZABB ELEE","1","75","2 AVENUE","10003","2125059533","82","2012-05-29 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41477990","ZABB ELEE","1","75","2 AVENUE","10003","2125059533","82","2012-05-29 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2011-10-13 00:00:00","P","06E","17","","","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2011-10-25 00:00:00","U","06D","13","B","2011-10-25 00:00:00","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2012-05-03 00:00:00","F","04A","38","","","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2013-07-23 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41443107","COUNTRY PAN FRIED CHICKEN","1","2841","8 AVENUE","10039","2122811800","73","2011-04-21 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41443107","COUNTRY PAN FRIED CHICKEN","1","2841","8 AVENUE","10039","2122811800","73","2011-04-21 00:00:00","G","10E","49","","","2013-09-13 01:01:06.177000000" +"41467510","EXCHANGE BAR AND GRILL","1","256","3 AVENUE","10010","6465969039","03","2011-10-04 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41467510","EXCHANGE BAR AND GRILL","1","256","3 AVENUE","10010","6465969039","03","2011-10-04 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2010-11-10 00:00:00","P","06C","17","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2011-07-05 00:00:00","U","10I","15","B","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2011-10-28 00:00:00","F","06F","34","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2011-11-10 00:00:00","D","04L","10","A","2011-11-10 00:00:00","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2012-08-20 00:00:00","P","10B","19","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2013-05-21 00:00:00","F","02G","33","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2010-12-15 00:00:00","F","06E","33","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-01-18 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-02-02 00:00:00","U","06D","11","B","2012-02-02 00:00:00","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-08-15 00:00:00","F","06D","38","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2013-04-20 00:00:00","F","04H","47","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2013-06-06 00:00:00","U","02B","26","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2013-06-06 00:00:00","U","08A","26","","","2013-09-13 01:01:06.177000000" +"41467781","HALAL FOOD BBQ CHICKEN STORE# 24W","4","4128","MAIN STREET","11355","7188889208","20","2011-12-15 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2010-11-10 00:00:00","F","04L","29","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2011-04-21 00:00:00","G","02G","60","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2011-04-21 00:00:00","G","08A","60","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2011-04-22 00:00:00","O","10F","2","P","2011-04-22 00:00:00","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2011-08-16 00:00:00","P","06C","18","","","2013-09-13 01:01:06.177000000" +"41467781","HALAL FOOD BBQ CHICKEN STORE# 24W","4","4128","MAIN STREET","11355","7188889208","20","2011-12-15 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41468086","QUEEN BAKERY","1","150","MOTT STREET","10013","2129668998","08","2011-08-29 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41468086","QUEEN BAKERY","1","150","MOTT STREET","10013","2129668998","08","2011-08-29 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2011-01-04 00:00:00","C","06E","5","A","2011-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2011-12-12 00:00:00","D","06C","9","A","2011-12-12 00:00:00","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-02-20 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41443732","EL BURRITO LOCO","4","90-18","ROOSEVELT AVENUE","11372","3479653206","81","2010-05-10 13:09:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41443732","EL BURRITO LOCO","4","90-18","ROOSEVELT AVENUE","11372","3479653206","81","2010-05-10 13:09:00","F","10A","49","","","2013-09-13 01:01:06.177000000" +"41443732","EL BURRITO LOCO","4","90-18","ROOSEVELT AVENUE","11372","3479653206","81","2010-05-10 13:09:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-01-19 00:00:00","F","02G","26","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-01-19 00:00:00","F","06D","26","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-12-14 00:00:00","U","04N","21","B","2011-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2012-12-13 00:00:00","U","02G","22","B","2012-12-13 00:00:00","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2010-03-09 14:03:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2010-03-30 12:00:00","D","99B","9","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2011-08-30 00:00:00","F","06A","34","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2011-10-12 00:00:00","D","04C","12","A","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2011-10-12 00:00:00","D","10F","12","A","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-01-23 00:00:00","F","02B","77","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-01-23 00:00:00","F","04L","77","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-01-23 00:00:00","F","06F","77","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-01-30 00:00:00","U","06C","17","B","2012-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-06-08 00:00:00","G","04M","54","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-06-08 00:00:00","G","06D","54","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-06-08 00:00:00","G","06E","54","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-05-07 11:43:00","F","04M","0","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-05-07 11:43:00","F","06D","0","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-05-26 14:51:00","F","02B","99","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-05-26 14:51:00","F","03B","99","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-05-26 14:51:00","F","04M","99","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-06-14 13:17:00","G","99B","66","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-07-15 14:55:00","W","04M","11","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-07-15 14:55:00","W","08A","11","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-12-28 00:00:00","P","02B","20","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-02-17 00:00:00","F","06D","30","C","2011-02-17 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-02-17 00:00:00","F","06E","30","C","2011-02-17 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-08-11 00:00:00","D","10F","5","A","2011-08-11 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-12-27 00:00:00","F","04L","37","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-12-27 00:00:00","F","06C","37","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-05-16 00:00:00","F","04H","66","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-05-24 00:00:00","F","02B","31","C","2012-05-24 00:00:00","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2011-05-02 00:00:00","U","08C","20","B","2011-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2011-10-21 00:00:00","U","06A","19","B","2011-10-21 00:00:00","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2011-10-21 00:00:00","U","10B","19","B","2011-10-21 00:00:00","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2012-04-04 00:00:00","D","10F","7","A","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2009-11-19 11:38:00","U","10A","20","","","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2010-09-21 00:00:00","F","04A","57","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2011-04-25 00:00:00","U","08A","18","B","2011-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-02-04 00:00:00","F","06C","50","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-02-26 00:00:00","G","04L","76","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-02-26 00:00:00","G","08C","76","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-03-07 00:00:00","O","08A","16","C","2013-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-06-18 00:00:00","F","10D","33","","","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-05-17 00:00:00","F","08A","34","","","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-06-27 00:00:00","F","02G","44","C","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-06-27 00:00:00","F","04K","44","C","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-06-27 00:00:00","F","06E","44","C","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-06-27 00:00:00","F","99B","44","C","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-11-09 00:00:00","D","10F","12","A","2011-11-09 00:00:00","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2011-08-25 00:00:00","P","04H","26","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2011-09-08 00:00:00","U","04N","8","B","2011-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2012-03-22 00:00:00","P","04N","25","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2013-08-27 00:00:00","F","02B","37","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2013-08-27 00:00:00","F","06C","37","","","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-03-22 00:00:00","F","99B","35","","","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-09-12 00:00:00","F","04C","28","","","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-10-24 00:00:00","U","10D","20","B","2011-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2012-02-27 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2012-03-05 00:00:00","D","02G","9","A","2012-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2012-07-16 00:00:00","P","10F","27","","","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2012-08-13 00:00:00","D","04M","11","A","2012-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2010-10-20 00:00:00","C","06E","11","A","2010-10-20 00:00:00","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2011-11-15 00:00:00","U","08A","12","B","2011-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2013-06-05 00:00:00","F","04C","56","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2013-06-05 00:00:00","F","08A","56","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2013-06-05 00:00:00","F","09C","56","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2012-04-30 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2010-10-14 00:00:00","F","08A","34","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2011-06-23 00:00:00","F","04L","50","C","2011-06-23 00:00:00","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2011-06-23 00:00:00","F","06A","50","C","2011-06-23 00:00:00","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2011-10-24 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2012-04-30 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2012-04-30 00:00:00","F","06E","31","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2012-04-30 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2012-04-30 00:00:00","F","09B","31","","","2013-09-13 01:01:06.177000000" +"41436709","EAST NOODLE & IZAKAYA","1","119","2 AVENUE","10003","2129824285","49","2011-08-10 00:00:00","D","06C","11","A","2011-08-10 00:00:00","2013-09-13 01:01:06.177000000" +"41436709","EAST NOODLE & IZAKAYA","1","119","2 AVENUE","10003","2129824285","49","2012-09-10 00:00:00","D","04L","13","A","2012-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"41445689","SFOGLIA RESTAURANT","1","135","EAST 92 STREET","10128","2128311402","48","2011-04-27 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41445737","1818 SEAFOOD RESTAURANT","3","1818","AVENUE U","11229","7183326188","20","2010-09-22 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41445737","1818 SEAFOOD RESTAURANT","3","1818","AVENUE U","11229","7183326188","20","2010-09-22 00:00:00","F","22C","49","","","2013-09-13 01:01:06.177000000" +"41437112","SLICES AND ICES","4","208","BEACH 116 STREET","11694","7184740200","62","2012-06-25 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-08-19 00:00:00","F","02G","59","","","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2012-02-10 00:00:00","D","10F","10","A","2012-02-10 00:00:00","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2013-03-25 00:00:00","P","04M","5","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2011-06-06 00:00:00","F","10F","33","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2011-12-28 00:00:00","F","06D","44","C","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2012-05-15 00:00:00","D","02G","12","A","2012-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2012-11-19 00:00:00","P","06E","19","","","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2013-01-24 00:00:00","D","06C","8","A","2013-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2013-07-23 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"41471136","NAKATA SUSHI","5","1775-D ","RICHMOND ROAD ","10306","7189801891","49","2011-09-15 00:00:00","D","06E","5","A","2011-09-15 00:00:00","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2011-06-24 00:00:00","F","04L","43","","","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2011-06-24 00:00:00","F","06F","43","","","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2012-11-29 00:00:00","P","04C","20","","","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2013-06-19 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"41430090","CITLALI'S DELI AND GROCERY","3","4118","5 AVENUE","11232","3479873681","55","2011-12-08 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41430090","CITLALI'S DELI AND GROCERY","3","4118","5 AVENUE","11232","3479873681","55","2011-12-08 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41471288","THAT SUSHI SPOT","3","2462","NOSTRAND AVENUE","11210","3475875100","49","2011-12-07 00:00:00","U","04M","5","B","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2011-04-21 00:00:00","U","10F","26","B","2011-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2012-08-29 00:00:00","F","02G","43","","","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2012-08-29 00:00:00","F","10H","43","","","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2013-04-04 00:00:00","F","10B","26","","","2013-09-13 01:01:06.177000000" +"41482459","SARKURA JAPAN","4","89-02","165 STREET","11432","7182629055","49","2012-04-03 00:00:00","D","10F","5","A","2012-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-04-04 00:00:00","G","04L","51","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2010-03-09 14:03:00","F","02B","36","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2010-03-09 14:03:00","F","04K","36","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2010-03-09 14:03:00","F","10B","36","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2010-03-30 12:00:00","D","18I","9","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-01-23 00:00:00","F","04H","77","","","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2011-05-17 00:00:00","F","02B","44","","","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2011-05-17 00:00:00","F","04K","44","","","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2011-05-17 00:00:00","F","08A","44","","","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2011-10-08 00:00:00","F","10H","56","","","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2013-04-13 00:00:00","P","04L","27","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-02-05 00:00:00","D","06D","13","A","2011-02-05 00:00:00","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-06-16 00:00:00","F","02G","69","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-11-02 00:00:00","F","06E","33","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-12-14 00:00:00","U","10F","21","B","2011-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2012-05-10 00:00:00","P","10E","22","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2012-10-11 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2011-08-09 00:00:00","U","02B","13","B","2011-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2011-08-09 00:00:00","U","06E","13","B","2011-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2012-01-18 00:00:00","F","04L","50","","","2013-09-13 01:01:06.177000000" +"41482939","NUEVO SABOR RESTAURANT","1","4032","10 AVENUE","10034","2125671515","53","2011-06-09 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2011-05-02 00:00:00","P","09B","25","","","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2013-08-06 00:00:00","F","10D","55","","","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2013-08-06 00:00:00","F","10E","55","","","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2012-04-16 00:00:00","F","08A","30","C","2012-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2013-08-15 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41483385","LIAM'S PUB","1","90","FULTON STREET","10038","2122670079","03","2011-06-06 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41431748","GOWASABI","4","34-02","30 AVENUE","11103","7182747354","49","2010-05-19 12:06:00","U","02G","22","","","2013-09-13 01:01:06.177000000" +"41431748","GOWASABI","4","34-02","30 AVENUE","11103","7182747354","49","2010-05-19 12:06:00","U","08A","22","","","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2011-03-16 00:00:00","F","06A","28","C","2011-03-16 00:00:00","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2012-06-19 00:00:00","F","06C","29","","","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2012-07-12 00:00:00","U","06C","25","B","2012-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2011-04-06 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2011-05-12 00:00:00","U","08A","17","B","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2012-03-21 00:00:00","F","10F","33","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2013-07-17 00:00:00","P","06D","20","","","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2010-06-02 11:54:00","F","08A","45","","","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2010-06-02 11:54:00","F","09D","45","","","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2010-06-17 15:31:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2012-02-13 00:00:00","D","04C","9","A","2012-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-05-01 00:00:00","P","04M","19","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-05-01 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-05-01 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-05-10 00:00:00","F","04H","44","C","2012-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-05-10 00:00:00","F","08C","44","C","2012-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-09-25 00:00:00","F","04N","28","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-09-25 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-11-20 00:00:00","G","04H","77","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-11-20 00:00:00","G","06A","77","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-11-20 00:00:00","G","10B","77","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-11-21 00:00:00","W","04M","11","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-11-21 00:00:00","W","08A","11","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2011-06-09 00:00:00","F","02G","53","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2011-11-03 00:00:00","F","10F","34","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2011-11-30 00:00:00","F","02G","43","C","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2012-04-19 00:00:00","F","06A","21","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2012-05-17 00:00:00","U","02B","17","B","2012-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2013-05-21 00:00:00","F","04H","70","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2011-05-18 00:00:00","F","15L","","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2012-04-18 00:00:00","P","09B","20","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2012-11-28 00:00:00","P","09C","21","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2012-11-28 00:00:00","P","10D","21","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2013-01-07 00:00:00","U","04N","9","B","2013-01-07 00:00:00","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2012-03-19 00:00:00","F","08A","42","C","2012-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41442107","ROBATAYA","1","231","EAST 9 STREET","10003","2129799674","49","2011-04-20 00:00:00","F","09B","37","","","2013-09-13 01:01:06.177000000" +"41445505","THE VANDERBILT","3","570","VANDERBILT AVENUE","11238","7186230570","03","2011-12-15 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41445737","1818 SEAFOOD RESTAURANT","3","1818","AVENUE U","11229","7183326188","20","2010-09-22 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2013-05-30 00:00:00","P","06A","16","","","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2013-05-30 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"41427225","ELEVAGE","1","302","EAST 45 STREET","10017","2129220930","49","2012-01-24 00:00:00","P","06D","15","","","2013-09-13 01:01:06.177000000" +"41427225","ELEVAGE","1","302","EAST 45 STREET","10017","2129220930","49","2012-03-06 00:00:00","U","04L","13","B","2012-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41427225","ELEVAGE","1","302","EAST 45 STREET","10017","2129220930","49","2012-10-12 00:00:00","F","04C","18","","","2013-09-13 01:01:06.177000000" +"41485508","TAKAYAMA SUSHI LOUNGE","5","17","PAGE AVENUE","10309","7182278744","49","2011-06-04 00:00:00","P","10B","16","","","2013-09-13 01:01:06.177000000" +"41485508","TAKAYAMA SUSHI LOUNGE","5","17","PAGE AVENUE","10309","7182278744","49","2011-07-09 00:00:00","D","10F","13","A","2011-07-09 00:00:00","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2011-10-25 00:00:00","U","04M","13","B","2011-10-25 00:00:00","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2011-10-25 00:00:00","U","10F","13","B","2011-10-25 00:00:00","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2013-07-23 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"41443107","COUNTRY PAN FRIED CHICKEN","1","2841","8 AVENUE","10039","2122811800","73","2011-04-21 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41443107","COUNTRY PAN FRIED CHICKEN","1","2841","8 AVENUE","10039","2122811800","73","2011-04-21 00:00:00","G","06E","49","","","2013-09-13 01:01:06.177000000" +"41443107","COUNTRY PAN FRIED CHICKEN","1","2841","8 AVENUE","10039","2122811800","73","2011-04-21 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41446168","YUMMY SUSHI HOUSE","4","135-11","38 AVENUE","11354","6463313119","49","2013-04-13 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41446168","YUMMY SUSHI HOUSE","4","135-11","38 AVENUE","11354","6463313119","49","2013-04-13 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41485508","TAKAYAMA SUSHI LOUNGE","5","17","PAGE AVENUE","10309","7182278744","49","2012-04-04 00:00:00","D","10F","10","A","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41485508","TAKAYAMA SUSHI LOUNGE","5","17","PAGE AVENUE","10309","7182278744","49","2012-10-23 00:00:00","D","09B","12","A","2012-10-23 00:00:00","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2011-12-07 00:00:00","D","10F","11","A","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2013-03-04 00:00:00","D","09B","11","A","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2013-07-29 00:00:00","P","04J","23","","","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2009-11-19 11:38:00","U","10G","20","","","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-05-17 00:00:00","F","02B","34","","","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-11-09 00:00:00","D","06D","12","A","2011-11-09 00:00:00","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-11-09 00:00:00","D","06E","12","A","2011-11-09 00:00:00","2013-09-13 01:01:06.177000000" +"41449961","PENN SUSHI","1","000","PENN STATION","10001","2125645496","49","2012-01-12 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2010-11-29 00:00:00","U","04H","20","B","2010-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2012-04-02 00:00:00","U","04N","12","B","2012-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2013-03-05 00:00:00","F","10F","39","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2013-08-27 00:00:00","F","06A","37","","","2013-09-13 01:01:06.177000000" +"41428414","GHANG THAI KITCHEN","3","229","COURT STREET","11201","7188751369","82","2011-09-13 00:00:00","G","04K","49","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2010-11-29 00:00:00","U","08A","20","B","2010-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41434866","BELLA VITA","1","158","WEST 58 STREET","10019","2126647670","62","2012-05-29 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-02-20 00:00:00","F","08C","31","","","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-04-04 00:00:00","G","04M","51","","","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-04-04 00:00:00","G","06C","51","","","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-07-31 00:00:00","P","02B","27","","","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-07-31 00:00:00","P","04M","27","","","2013-09-13 01:01:06.177000000" +"41443732","EL BURRITO LOCO","4","90-18","ROOSEVELT AVENUE","11372","3479653206","81","2010-05-10 13:09:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-06-16 00:00:00","F","06C","69","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-06-16 00:00:00","F","99B","69","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2012-12-13 00:00:00","U","04C","22","B","2012-12-13 00:00:00","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2012-12-13 00:00:00","U","10F","22","B","2012-12-13 00:00:00","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2013-06-10 00:00:00","F","06C","42","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2011-12-27 00:00:00","U","06E","11","B","2011-12-27 00:00:00","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-02-26 00:00:00","G","04C","76","","","2013-09-13 01:01:06.177000000" +"41473876","DRAGON HOUSE","3","803A","WASHINGTON AVENUE","11238","7183986968","20","2011-06-21 00:00:00","F","04M","49","C","2011-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41473876","DRAGON HOUSE","3","803A","WASHINGTON AVENUE","11238","7183986968","20","2011-06-21 00:00:00","F","06E","49","C","2011-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2010-10-14 00:00:00","F","04C","35","","","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2010-10-14 00:00:00","F","04M","35","","","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2010-10-14 00:00:00","F","08A","35","","","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2011-04-20 00:00:00","D","08A","11","A","2011-04-20 00:00:00","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2010-11-30 00:00:00","C","02G","10","A","2010-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2011-05-12 00:00:00","P","04L","16","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2011-06-23 00:00:00","F","04H","50","C","2011-06-23 00:00:00","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2010-09-30 00:00:00","F","99B","40","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2010-11-29 00:00:00","U","10B","4","B","2010-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2011-04-04 00:00:00","P","06C","20","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2011-11-16 00:00:00","F","08A","42","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2011-11-16 00:00:00","F","15L","","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2011-06-23 00:00:00","F","08A","50","C","2011-06-23 00:00:00","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2011-06-23 00:00:00","F","10B","50","C","2011-06-23 00:00:00","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2010-03-16 20:23:00","U","06F","17","","","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2011-03-16 00:00:00","F","04C","28","C","2011-03-16 00:00:00","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2011-03-16 00:00:00","F","10I","28","C","2011-03-16 00:00:00","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2011-07-28 00:00:00","P","04L","24","","","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2011-07-28 00:00:00","P","06D","24","","","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2012-01-06 00:00:00","U","08C","19","B","2012-01-06 00:00:00","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2012-01-06 00:00:00","U","10E","19","B","2012-01-06 00:00:00","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2012-06-19 00:00:00","F","06D","29","","","2013-09-13 01:01:06.177000000" +"41436709","EAST NOODLE & IZAKAYA","1","119","2 AVENUE","10003","2129824285","49","2012-08-30 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"41452462","CRYSTAL","1","212","EAST 52 STREET","10022","2123088885","49","2011-12-13 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41452462","CRYSTAL","1","212","EAST 52 STREET","10022","2123088885","49","2011-12-13 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"41452462","CRYSTAL","1","212","EAST 52 STREET","10022","2123088885","49","2011-12-13 00:00:00","P","06E","19","","","2013-09-13 01:01:06.177000000" +"41452662","THE POINT AFRICAN CARIBBEAN RESTAURANT","2","2037","WEBSTER AVENUE","10457","3472701985","02","2012-03-28 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2011-10-18 00:00:00","U","06E","9","B","2011-10-18 00:00:00","2013-09-13 01:01:06.177000000" +"41436878","CASA LEVER","1","390","PARK AVENUE","10022","2128888015","48","2011-12-23 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41437112","SLICES AND ICES","4","208","BEACH 116 STREET","11694","7184740200","62","2012-06-25 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41437112","SLICES AND ICES","4","208","BEACH 116 STREET","11694","7184740200","62","2012-06-25 00:00:00","F","03D","49","","","2013-09-13 01:01:06.177000000" +"41445737","1818 SEAFOOD RESTAURANT","3","1818","AVENUE U","11229","7183326188","20","2010-09-22 00:00:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"41445737","1818 SEAFOOD RESTAURANT","3","1818","AVENUE U","11229","7183326188","20","2010-09-22 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41449503","OKEANOS","3","314","7 AVENUE","11215","3477254162","38","2012-09-18 00:00:00","G","10A","49","","","2013-09-13 01:01:06.177000000" +"41476813","GAN DA SUSHI","4","80-08","SURREY PLACE","11432","7183801818","49","2011-04-06 00:00:00","D","08C","13","A","2011-04-06 00:00:00","2013-09-13 01:01:06.177000000" +"41449961","PENN SUSHI","1","000","PENN STATION","10001","2125645496","49","2013-09-04 00:00:00","P","10E","16","","","2013-09-13 01:01:06.177000000" +"41453648","TUDOR BAR AND GRILL","1","304","EAST 42 STREET","10017","2122973480","03","2013-08-28 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41453658","JUSTINO'S PIZZERIA","1","879-883 ","10 AVENUE","10019","2125821222","63","2011-12-22 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2009-09-21 11:24:00","U","08A","14","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2010-03-30 12:00:00","D","10L","9","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-01-23 00:00:00","F","08A","77","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-01-30 00:00:00","U","10F","17","B","2012-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-06-08 00:00:00","G","06C","54","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-06-13 00:00:00","O","08A","9","P","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41431748","GOWASABI","4","34-02","30 AVENUE","11103","7182747354","49","2010-05-19 12:06:00","U","04M","22","","","2013-09-13 01:01:06.177000000" +"41431748","GOWASABI","4","34-02","30 AVENUE","11103","7182747354","49","2010-05-19 12:06:00","U","10E","22","","","2013-09-13 01:01:06.177000000" +"41490694","PARRILLA INTERNATIONAL","2","3815","WHITE PLAINS ROAD","10467","7185474359","53","2011-05-20 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41491233","BAY HOUSE ASIAN BISTRO","5","2226","HYLAN BOULEVARD","10306","7186676868","49","2012-05-22 00:00:00","D","06F","13","A","2012-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41450783","KIKKU JAPANESE RESTAURANT","1","50","WEST 55 STREET","10019","2125828357","49","2011-12-20 00:00:00","P","99B","23","","","2013-09-13 01:01:06.177000000" +"41450783","KIKKU JAPANESE RESTAURANT","1","50","WEST 55 STREET","10019","2125828357","49","2013-06-10 00:00:00","P","04M","19","","","2013-09-13 01:01:06.177000000" +"41477990","ZABB ELEE","1","75","2 AVENUE","10003","2125059533","82","2012-05-29 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2012-03-26 00:00:00","F","04L","39","","","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2012-04-16 00:00:00","F","06D","30","C","2012-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2012-04-16 00:00:00","F","10A","30","C","2012-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2012-04-16 00:00:00","F","10B","30","C","2012-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2012-08-28 00:00:00","D","10B","10","A","2012-08-28 00:00:00","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2011-06-08 00:00:00","P","06E","25","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2012-01-27 00:00:00","D","10B","3","A","2012-01-27 00:00:00","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2012-06-28 00:00:00","P","04C","26","","","2013-09-13 01:01:06.177000000" +"41491940","MALAPARTE","1","753","WASHINGTON STREET","10014","2122552122","48","2012-08-08 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2012-03-19 00:00:00","F","02B","42","C","2012-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2012-07-30 00:00:00","U","06C","13","B","2012-07-30 00:00:00","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2013-05-30 00:00:00","P","06E","16","","","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2013-05-30 00:00:00","P","09B","16","","","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2011-01-26 00:00:00","P","04A","22","","","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2011-01-26 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2012-11-15 00:00:00","P","09C","6","","","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2013-06-17 00:00:00","P","06D","21","","","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2011-03-16 00:00:00","F","02G","28","C","2011-03-16 00:00:00","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2011-03-16 00:00:00","F","06E","28","C","2011-03-16 00:00:00","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2011-07-28 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2011-12-21 00:00:00","F","04L","13","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2011-09-06 00:00:00","P","06C","24","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2011-09-21 00:00:00","F","04M","23","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2011-09-21 00:00:00","F","06A","23","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2012-06-20 00:00:00","U","04M","15","B","2012-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2010-09-07 00:00:00","F","06D","26","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2010-09-07 00:00:00","F","06E","26","","","2013-09-13 01:01:06.177000000" +"41442107","ROBATAYA","1","231","EAST 9 STREET","10003","2129799674","49","2012-10-24 00:00:00","D","02G","9","A","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41449503","OKEANOS","3","314","7 AVENUE","11215","3477254162","38","2012-09-18 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41479400","ROCCO'S PIZZA","2","397","BEDFORD PARK BOULEVARD","10458","7182956793","62","2013-01-30 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41479400","ROCCO'S PIZZA","2","397","BEDFORD PARK BOULEVARD","10458","7182956793","62","2013-01-30 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41479400","ROCCO'S PIZZA","2","397","BEDFORD PARK BOULEVARD","10458","7182956793","62","2013-01-30 00:00:00","G","10I","49","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2012-03-12 00:00:00","P","06C","25","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2012-03-12 00:00:00","P","10F","25","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2012-09-05 00:00:00","U","09B","10","B","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41493167","KOREAN B.B.Q RESTAURANT","4","136-93","37 AVENUE","11354","7183591227","52","2013-05-23 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41452662","THE POINT AFRICAN CARIBBEAN RESTAURANT","2","2037","WEBSTER AVENUE","10457","3472701985","02","2012-03-28 00:00:00","G","02B","49","","","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2011-03-23 00:00:00","U","06D","11","B","2011-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2011-03-23 00:00:00","U","06E","11","B","2011-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2013-07-16 00:00:00","F","10I","29","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2011-04-21 00:00:00","G","04K","60","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2011-09-03 00:00:00","U","04L","12","B","2011-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2012-03-01 00:00:00","F","04J","30","","","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2010-11-01 00:00:00","C","04H","11","A","2010-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2012-04-24 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2011-10-13 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2012-05-03 00:00:00","F","10F","38","","","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2013-07-23 00:00:00","P","04N","22","","","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2013-07-23 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2010-06-03 13:54:00","F","10C","36","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2010-06-30 12:18:00","U","04M","17","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2011-01-21 00:00:00","F","04L","35","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2011-02-16 00:00:00","F","04M","20","C","2011-02-16 00:00:00","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2011-07-25 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2011-03-03 00:00:00","U","10B","4","B","2011-03-03 00:00:00","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2012-09-04 00:00:00","P","08C","12","","","2013-09-13 01:01:06.177000000" +"41449961","PENN SUSHI","1","000","PENN STATION","10001","2125645496","49","2012-01-12 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41449961","PENN SUSHI","1","000","PENN STATION","10001","2125645496","49","2012-01-12 00:00:00","P","10H","22","","","2013-09-13 01:01:06.177000000" +"41449961","PENN SUSHI","1","000","PENN STATION","10001","2125645496","49","2012-01-12 00:00:00","P","99B","22","","","2013-09-13 01:01:06.177000000" +"41449961","PENN SUSHI","1","000","PENN STATION","10001","2125645496","49","2013-09-04 00:00:00","P","10B","16","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2010-06-11 07:58:00","U","06C","25","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2011-03-31 00:00:00","U","08C","26","B","2011-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2011-10-05 00:00:00","F","02G","40","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2011-10-05 00:00:00","F","04H","40","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2011-10-05 00:00:00","F","10H","40","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2011-12-12 00:00:00","F","02B","40","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-02-04 00:00:00","F","05D","50","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-02-26 00:00:00","G","08A","76","","","2013-09-13 01:01:06.177000000" +"41453648","TUDOR BAR AND GRILL","1","304","EAST 42 STREET","10017","2122973480","03","2013-08-28 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41453648","TUDOR BAR AND GRILL","1","304","EAST 42 STREET","10017","2122973480","03","2013-08-28 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41453648","TUDOR BAR AND GRILL","1","304","EAST 42 STREET","10017","2122973480","03","2013-08-28 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41453658","JUSTINO'S PIZZERIA","1","879-883 ","10 AVENUE","10019","2125821222","63","2011-12-22 00:00:00","F","09A","49","","","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-02-20 00:00:00","F","06C","31","","","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-07-31 00:00:00","P","10F","27","","","2013-09-13 01:01:06.177000000" +"41443732","EL BURRITO LOCO","4","90-18","ROOSEVELT AVENUE","11372","3479653206","81","2010-05-10 13:09:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-01-19 00:00:00","F","04L","26","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-02-05 00:00:00","D","06F","13","A","2011-02-05 00:00:00","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-07-13 00:00:00","U","02G","15","B","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-11-02 00:00:00","F","02B","33","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-12-14 00:00:00","U","08A","21","B","2011-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2012-12-13 00:00:00","U","06A","22","B","2012-12-13 00:00:00","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2013-06-10 00:00:00","F","02G","42","","","2013-09-13 01:01:06.177000000" +"41450783","KIKKU JAPANESE RESTAURANT","1","50","WEST 55 STREET","10019","2125828357","49","2011-12-28 00:00:00","D","10F","3","A","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41480428","GORDON RAMSAY AT THE LONDON","1","151","WEST 54 STREET","10019","2124688811","03","2013-02-01 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41480428","GORDON RAMSAY AT THE LONDON","1","151","WEST 54 STREET","10019","2124688811","03","2013-02-01 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2011-03-10 00:00:00","F","08A","53","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2011-11-16 00:00:00","P","06F","14","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2012-05-07 00:00:00","D","10F","9","A","2012-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41435938","SUSHI YOU","4","215-05","73 AVENUE","11364","7187956557","49","2010-09-09 00:00:00","C","99B","9","A","2010-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2010-12-02 00:00:00","U","08A","18","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2011-09-12 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2012-01-17 00:00:00","F","04A","22","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2012-07-30 00:00:00","P","06B","13","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2012-08-14 00:00:00","D","06D","12","A","2012-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-05-04 00:00:00","F","06C","56","C","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-05-04 00:00:00","F","10B","56","C","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-10-12 00:00:00","F","06C","67","","","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2011-11-03 00:00:00","P","06C","24","","","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2011-11-03 00:00:00","P","10F","24","","","2013-09-13 01:01:06.177000000" +"41436709","EAST NOODLE & IZAKAYA","1","119","2 AVENUE","10003","2129824285","49","2013-04-02 00:00:00","F","04L","25","","","2013-09-13 01:01:06.177000000" +"41436709","EAST NOODLE & IZAKAYA","1","119","2 AVENUE","10003","2129824285","49","2013-04-02 00:00:00","F","10F","25","","","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2012-04-16 00:00:00","F","10F","16","C","2012-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2012-06-06 00:00:00","F","04L","44","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2012-07-10 00:00:00","U","04K","18","B","2012-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2013-01-17 00:00:00","P","06E","18","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2013-08-09 00:00:00","F","06F","34","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2012-03-14 00:00:00","U","04M","19","B","2012-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2012-08-06 00:00:00","G","04H","48","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2012-08-06 00:00:00","G","08A","48","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2012-08-08 00:00:00","O","","","C","2012-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2013-08-01 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2012-02-01 00:00:00","P","06E","20","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2012-08-02 00:00:00","D","06E","12","A","2012-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2013-02-06 00:00:00","G","04F","52","","","2013-09-13 01:01:06.177000000" +"41437112","SLICES AND ICES","4","208","BEACH 116 STREET","11694","7184740200","62","2012-06-25 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2011-02-23 00:00:00","D","09C","11","A","2011-02-23 00:00:00","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2012-05-30 00:00:00","P","06D","18","","","2013-09-13 01:01:06.177000000" +"41452462","CRYSTAL","1","212","EAST 52 STREET","10022","2123088885","49","2011-12-27 00:00:00","B","","","A","2011-12-27 00:00:00","2013-09-13 01:01:06.177000000" +"41452462","CRYSTAL","1","212","EAST 52 STREET","10022","2123088885","49","2012-06-06 00:00:00","D","08A","9","A","2012-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41457942","EVERYTHING BAGELS","1","81","3 AVENUE","10003","2123539933","07","2012-12-26 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41458274","RAY'S PIZZA EXPRESS","2","570","KAPPOCK STREET","10463","7185488510","62","2011-08-24 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2010-06-15 15:02:00","U","99B","20","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2012-09-10 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2010-06-14 12:48:00","U","06A","23","","","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2011-06-10 00:00:00","F","06A","32","","","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2011-08-24 00:00:00","U","06F","24","","","2013-09-13 01:01:06.177000000" +"41445505","THE VANDERBILT","3","570","VANDERBILT AVENUE","11238","7186230570","03","2011-12-15 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41452662","THE POINT AFRICAN CARIBBEAN RESTAURANT","2","2037","WEBSTER AVENUE","10457","3472701985","02","2012-03-28 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2011-10-11 00:00:00","P","10B","26","","","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2011-10-18 00:00:00","U","10F","9","B","2011-10-18 00:00:00","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2012-05-14 00:00:00","D","02G","12","A","2012-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2011-07-01 00:00:00","U","02G","17","B","2011-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2011-10-08 00:00:00","F","06C","56","","","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2013-04-13 00:00:00","P","09A","27","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2012-06-21 00:00:00","F","02G","33","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2013-01-03 00:00:00","P","04L","17","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2013-01-03 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2013-01-03 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2013-07-08 00:00:00","P","06C","18","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2013-07-08 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41445689","SFOGLIA RESTAURANT","1","135","EAST 92 STREET","10128","2128311402","48","2011-04-27 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41445689","SFOGLIA RESTAURANT","1","135","EAST 92 STREET","10128","2128311402","48","2011-04-27 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2010-03-30 12:00:00","D","10B","9","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-01-23 00:00:00","F","06C","77","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2012-01-23 00:00:00","F","10B","77","","","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2012-01-18 00:00:00","F","10B","50","","","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2013-03-09 00:00:00","F","04L","17","","","2013-09-13 01:01:06.177000000" +"41453367","RIDLEY'S SEAFOOD SPOT","2","969","OGDEN AVENUE","10452","3472704247","72","2013-05-10 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41446168","YUMMY SUSHI HOUSE","4","135-11","38 AVENUE","11354","6463313119","49","2011-04-18 00:00:00","D","02B","7","A","2011-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41446168","YUMMY SUSHI HOUSE","4","135-11","38 AVENUE","11354","6463313119","49","2013-04-13 00:00:00","P","06F","21","","","2013-09-13 01:01:06.177000000" +"41482939","NUEVO SABOR RESTAURANT","1","4032","10 AVENUE","10034","2125671515","53","2011-06-09 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2010-10-27 00:00:00","D","10E","6","","","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2013-08-06 00:00:00","F","10B","55","","","2013-09-13 01:01:06.177000000" +"41459355","TRINI DELIGHT","4","110-02","LIBERTY AVENUE","11419","7183221203","17","2011-04-18 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41456069","DREAM STATION","2","3809","WHITE PLAINS ROAD","10467","7187986936","20","2013-05-31 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41453648","TUDOR BAR AND GRILL","1","304","EAST 42 STREET","10017","2122973480","03","2013-08-28 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2011-09-30 00:00:00","U","04M","10","B","2011-09-30 00:00:00","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2011-04-20 00:00:00","D","10B","11","A","2011-04-20 00:00:00","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2012-03-26 00:00:00","F","02B","39","","","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2012-03-26 00:00:00","F","04C","39","","","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2012-03-26 00:00:00","F","04M","39","","","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2012-04-16 00:00:00","F","02G","30","C","2012-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2012-08-28 00:00:00","D","02G","10","A","2012-08-28 00:00:00","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2013-08-15 00:00:00","P","04M","18","","","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2013-08-15 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2011-11-03 00:00:00","F","02G","34","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2011-11-03 00:00:00","F","08C","34","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2011-11-30 00:00:00","F","04L","43","C","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2011-11-30 00:00:00","F","06C","43","C","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2013-05-21 00:00:00","F","02B","70","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2013-05-21 00:00:00","F","04N","70","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2011-05-18 00:00:00","F","06B","48","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2011-08-03 00:00:00","U","04H","7","B","2011-08-03 00:00:00","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2012-04-18 00:00:00","P","04M","20","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2012-06-28 00:00:00","P","10H","26","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2013-02-06 00:00:00","G","02B","52","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2013-02-08 00:00:00","O","06G","14","P","2013-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2011-10-17 00:00:00","U","06E","20","B","2011-10-17 00:00:00","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2011-10-17 00:00:00","U","08A","20","B","2011-10-17 00:00:00","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2012-05-14 00:00:00","F","10A","31","","","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2012-05-14 00:00:00","F","10B","31","","","2013-09-13 01:01:06.177000000" +"41442107","ROBATAYA","1","231","EAST 9 STREET","10003","2129799674","49","2011-06-16 00:00:00","U","06C","13","B","2011-06-16 00:00:00","2013-09-13 01:01:06.177000000" +"41442107","ROBATAYA","1","231","EAST 9 STREET","10003","2129799674","49","2012-09-11 00:00:00","P","04N","9","","","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2011-08-20 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2012-01-12 00:00:00","P","09B","22","","","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2012-09-24 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41461119","CITY RESTAURANT","3","1486","FLATBUSH AVENUE","11210","7188597347","20","2013-09-11 00:00:00","G","10B","49","","","2013-09-13 01:01:06.177000000" +"41461165","NEW BRISAS LATINAS BAKERY RESTAURANT","4","135-15","LEFFERTS BOULEVARD","11420","7183239183","77","2011-08-05 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2012-04-18 00:00:00","P","06C","20","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2012-04-18 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2013-07-31 00:00:00","P","04J","25","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2013-07-31 00:00:00","P","09C","25","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2013-07-31 00:00:00","P","10D","25","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-05-04 00:00:00","F","08A","56","C","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-10-12 00:00:00","F","03B","67","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-10-12 00:00:00","F","04K","67","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-10-12 00:00:00","F","04N","67","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-11-03 00:00:00","U","04H","13","B","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2012-07-23 00:00:00","P","10H","21","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2013-01-10 00:00:00","P","02B","18","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2013-08-01 00:00:00","P","08A","15","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2013-08-01 00:00:00","P","08B","15","","","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2012-04-03 00:00:00","U","04C","20","B","2012-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2012-04-03 00:00:00","U","06D","20","B","2012-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2012-12-14 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2012-06-08 00:00:00","D","06C","7","A","2012-06-08 00:00:00","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2010-03-16 20:23:00","U","06B","17","","","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2010-12-09 00:00:00","P","10F","14","","","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2011-07-28 00:00:00","P","04H","24","","","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2012-01-06 00:00:00","U","06D","19","B","2012-01-06 00:00:00","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2012-06-19 00:00:00","F","04L","29","","","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2012-07-12 00:00:00","U","08A","25","B","2012-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2010-09-13 00:00:00","D","10B","6","A","2010-09-13 00:00:00","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2011-04-01 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2012-08-07 00:00:00","P","04M","25","","","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2013-01-17 00:00:00","F","04M","62","","","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2013-01-17 00:00:00","F","08A","62","","","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2013-01-17 00:00:00","F","08B","62","","","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2011-10-13 00:00:00","P","06F","17","","","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2012-05-03 00:00:00","F","06E","38","","","2013-09-13 01:01:06.177000000" +"41443107","COUNTRY PAN FRIED CHICKEN","1","2841","8 AVENUE","10039","2122811800","73","2011-04-21 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41443107","COUNTRY PAN FRIED CHICKEN","1","2841","8 AVENUE","10039","2122811800","73","2011-04-21 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41443242","SPRING GARDEN CHINESE RESTAURANT","4","62-24","WOODHAVEN BOULEVARD","11374","7184461006","20","2011-01-19 00:00:00","G","10B","49","","","2013-09-13 01:01:06.177000000" +"41449503","OKEANOS","3","314","7 AVENUE","11215","3477254162","38","2012-09-18 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"41457942","EVERYTHING BAGELS","1","81","3 AVENUE","10003","2123539933","07","2012-12-26 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41457942","EVERYTHING BAGELS","1","81","3 AVENUE","10003","2123539933","07","2012-12-26 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41457942","EVERYTHING BAGELS","1","81","3 AVENUE","10003","2123539933","07","2012-12-26 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41457942","EVERYTHING BAGELS","1","81","3 AVENUE","10003","2123539933","07","2012-12-26 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2011-05-27 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41502126","597 SILK ROAD CORP","3","597","MANHATTAN AVENUE","11222","7183491010","49","2013-07-19 00:00:00","P","04H","19","","","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-04-04 00:00:00","G","08A","51","","","2013-09-13 01:01:06.177000000" +"41458274","RAY'S PIZZA EXPRESS","2","570","KAPPOCK STREET","10463","7185488510","62","2011-08-24 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-01-19 00:00:00","P","22C","14","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-07-05 00:00:00","G","04A","119","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-07-05 00:00:00","G","06F","119","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-07-08 00:00:00","W","04L","13","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-11-03 00:00:00","U","02B","15","B","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2012-05-10 00:00:00","P","02B","20","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2012-12-19 00:00:00","G","04H","75","","","2013-09-13 01:01:06.177000000" +"41462077","TAKASHI","1","456","HUDSON STREET","10014","2124142929","49","2011-06-16 00:00:00","P","06C","17","","","2013-09-13 01:01:06.177000000" +"41462077","TAKASHI","1","456","HUDSON STREET","10014","2124142929","49","2013-06-18 00:00:00","P","10B","15","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-01-19 00:00:00","F","10B","26","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-06-16 00:00:00","F","04C","69","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2012-05-10 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2012-05-10 00:00:00","P","04N","22","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2012-10-11 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2012-10-11 00:00:00","P","06D","23","","","2013-09-13 01:01:06.177000000" +"41449961","PENN SUSHI","1","000","PENN STATION","10001","2125645496","49","2012-01-25 00:00:00","U","02G","13","B","2012-01-25 00:00:00","2013-09-13 01:01:06.177000000" +"41449961","PENN SUSHI","1","000","PENN STATION","10001","2125645496","49","2012-01-25 00:00:00","U","06E","13","B","2012-01-25 00:00:00","2013-09-13 01:01:06.177000000" +"41459070","NEW WONG RESTAURANT","1","103","EAST BROADWAY","10002","6468789474","20","2013-06-13 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41459070","NEW WONG RESTAURANT","1","103","EAST BROADWAY","10002","6468789474","20","2013-06-13 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41456069","DREAM STATION","2","3809","WHITE PLAINS ROAD","10467","7187986936","20","2013-05-31 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41456069","DREAM STATION","2","3809","WHITE PLAINS ROAD","10467","7187986936","20","2013-05-31 00:00:00","G","09C","49","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2010-07-09 09:32:00","G","04O","94","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2010-07-09 09:32:00","G","99B","94","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2010-09-17 00:00:00","P","10H","4","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2010-11-05 00:00:00","U","06E","13","B","2010-11-05 00:00:00","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2011-03-15 00:00:00","P","09B","15","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2011-08-18 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2012-02-06 00:00:00","F","04M","37","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2013-02-28 00:00:00","F","04L","20","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2013-02-28 00:00:00","F","08A","20","","","2013-09-13 01:01:06.177000000" +"41450783","KIKKU JAPANESE RESTAURANT","1","50","WEST 55 STREET","10019","2125828357","49","2011-12-20 00:00:00","P","04C","23","","","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2012-08-13 00:00:00","U","02G","21","B","2012-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2010-06-24 11:11:00","U","04M","27","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2011-06-08 00:00:00","F","04M","28","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2011-11-29 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41463147","MA SAKE","3","1704","AVENUE M","11230","7189988670","22","2011-08-26 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2011-01-22 00:00:00","F","04A","39","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2011-01-22 00:00:00","F","10A","39","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2011-02-14 00:00:00","U","08C","11","B","2011-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2011-06-13 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2012-02-04 00:00:00","F","06A","11","C","2012-02-04 00:00:00","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2012-06-28 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2011-08-16 00:00:00","P","04L","24","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2011-08-16 00:00:00","P","06C","24","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2011-09-30 00:00:00","U","06C","10","B","2011-09-30 00:00:00","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2012-04-10 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2013-06-19 00:00:00","P","04M","24","","","2013-09-13 01:01:06.177000000" +"41445505","THE VANDERBILT","3","570","VANDERBILT AVENUE","11238","7186230570","03","2011-12-15 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41445505","THE VANDERBILT","3","570","VANDERBILT AVENUE","11238","7186230570","03","2011-12-15 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-04-08 00:00:00","F","04C","38","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-05-04 00:00:00","F","10D","56","C","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-05-04 00:00:00","F","10E","56","C","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-10-12 00:00:00","F","06A","67","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2013-06-19 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"41488338","388 CAFE & DELI","1","1-3 ","ELDRIDGE STREET ","10002","2122191318","20","2011-10-11 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41445689","SFOGLIA RESTAURANT","1","135","EAST 92 STREET","10128","2128311402","48","2011-04-27 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2012-08-06 00:00:00","G","04M","48","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2013-01-10 00:00:00","P","06E","18","","","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2012-02-01 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2012-12-14 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2013-06-01 00:00:00","F","10F","32","","","2013-09-13 01:01:06.177000000" +"41446168","YUMMY SUSHI HOUSE","4","135-11","38 AVENUE","11354","6463313119","49","2012-04-16 00:00:00","D","10F","4","A","2012-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2010-12-02 00:00:00","F","04L","45","","","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2010-12-14 00:00:00","U","02B","23","B","2010-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2010-12-14 00:00:00","U","10F","23","B","2010-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2012-01-12 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"41464253","JJ DELI","4","36-19","REVIEW AVENUE","11101","7183925500","03","2013-01-08 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41446168","YUMMY SUSHI HOUSE","4","135-11","38 AVENUE","11354","6463313119","49","2013-04-13 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41457942","EVERYTHING BAGELS","1","81","3 AVENUE","10003","2123539933","07","2012-12-26 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41457942","EVERYTHING BAGELS","1","81","3 AVENUE","10003","2123539933","07","2012-12-26 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41461165","NEW BRISAS LATINAS BAKERY RESTAURANT","4","135-15","LEFFERTS BOULEVARD","11420","7183239183","77","2011-08-05 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41461165","NEW BRISAS LATINAS BAKERY RESTAURANT","4","135-15","LEFFERTS BOULEVARD","11420","7183239183","77","2011-08-05 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41458274","RAY'S PIZZA EXPRESS","2","570","KAPPOCK STREET","10463","7185488510","62","2011-08-24 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41458274","RAY'S PIZZA EXPRESS","2","570","KAPPOCK STREET","10463","7185488510","62","2011-08-24 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41505364","NEW HONG CHEONG RESTAURANT","3","143","GREENE AVENUE","11238","7188578094","20","2012-08-21 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2010-11-01 00:00:00","C","10I","11","A","2010-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2011-10-11 00:00:00","P","10H","26","","","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2012-02-02 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2012-04-24 00:00:00","P","06F","19","","","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2012-05-14 00:00:00","D","06D","12","A","2012-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2010-10-06 00:00:00","U","08A","11","B","2010-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2012-10-23 00:00:00","F","02B","17","","","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2013-05-24 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41453367","RIDLEY'S SEAFOOD SPOT","2","969","OGDEN AVENUE","10452","3472704247","72","2013-05-10 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2010-11-01 00:00:00","B","","","A","2010-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2011-04-20 00:00:00","D","04L","11","A","2011-04-20 00:00:00","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2012-03-26 00:00:00","F","04H","39","","","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2012-03-26 00:00:00","F","08A","39","","","2013-09-13 01:01:06.177000000" +"41459070","NEW WONG RESTAURANT","1","103","EAST BROADWAY","10002","6468789474","20","2013-06-13 00:00:00","G","02B","49","","","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2011-07-30 00:00:00","P","06F","20","","","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2012-07-19 00:00:00","F","02B","33","","","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2012-07-31 00:00:00","D","08A","11","A","2012-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2013-01-22 00:00:00","P","04C","23","","","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2013-01-22 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2013-02-21 00:00:00","D","10D","12","A","2013-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2011-05-02 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2011-05-26 00:00:00","D","06B","9","A","2011-05-26 00:00:00","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2012-04-26 00:00:00","U","04L","19","B","2012-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2012-04-26 00:00:00","U","06D","19","B","2012-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2012-04-26 00:00:00","U","06E","19","B","2012-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2012-11-29 00:00:00","F","06F","28","","","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2012-12-20 00:00:00","F","10F","20","C","2012-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2010-09-27 00:00:00","D","10F","9","A","2010-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2011-09-07 00:00:00","F","04H","66","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2011-09-19 00:00:00","U","06A","15","B","2011-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-02-25 00:00:00","D","10F","10","A","2013-02-25 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-07-17 00:00:00","F","10F","32","","","2013-09-13 01:01:06.177000000" +"41461936","FIZA RESTAURANT","4","259-07","HILLSIDE AVENUE","11004","7183473100","44","2011-06-06 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41461936","FIZA RESTAURANT","4","259-07","HILLSIDE AVENUE","11004","7183473100","44","2011-06-06 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-01-19 00:00:00","P","18A","14","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-02-01 00:00:00","D","08C","13","A","2011-02-01 00:00:00","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-07-05 00:00:00","G","02G","119","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-07-05 00:00:00","G","06A","119","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-07-05 00:00:00","G","06B","119","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-07-05 00:00:00","G","08A","119","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-07-05 00:00:00","G","10I","119","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-07-12 00:00:00","O","08A","9","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2012-05-22 00:00:00","U","02B","7","B","2012-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2012-12-19 00:00:00","G","06C","75","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2012-12-19 00:00:00","G","10F","75","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2013-08-03 00:00:00","G","04L","56","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2013-08-03 00:00:00","G","06D","56","","","2013-09-13 01:01:06.177000000" +"41453648","TUDOR BAR AND GRILL","1","304","EAST 42 STREET","10017","2122973480","03","2013-08-28 00:00:00","F","09A","49","","","2013-09-13 01:01:06.177000000" +"41453658","JUSTINO'S PIZZERIA","1","879-883 ","10 AVENUE","10019","2125821222","63","2011-12-22 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41462077","TAKASHI","1","456","HUDSON STREET","10014","2124142929","49","2011-06-16 00:00:00","P","04C","17","","","2013-09-13 01:01:06.177000000" +"41462077","TAKASHI","1","456","HUDSON STREET","10014","2124142929","49","2011-07-07 00:00:00","D","06F","7","A","2011-07-07 00:00:00","2013-09-13 01:01:06.177000000" +"41462077","TAKASHI","1","456","HUDSON STREET","10014","2124142929","49","2011-12-15 00:00:00","F","04L","14","","","2013-09-13 01:01:06.177000000" +"41462077","TAKASHI","1","456","HUDSON STREET","10014","2124142929","49","2012-01-04 00:00:00","U","06A","7","B","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41462077","TAKASHI","1","456","HUDSON STREET","10014","2124142929","49","2013-06-18 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41490694","PARRILLA INTERNATIONAL","2","3815","WHITE PLAINS ROAD","10467","7185474359","53","2011-05-20 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2011-03-16 00:00:00","F","10F","28","C","2011-03-16 00:00:00","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2012-01-06 00:00:00","U","04L","19","B","2012-01-06 00:00:00","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2012-07-12 00:00:00","U","06D","25","B","2012-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2011-09-30 00:00:00","U","08A","10","B","2011-09-30 00:00:00","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2012-04-19 00:00:00","U","04C","25","B","2012-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2013-06-19 00:00:00","P","06A","24","","","2013-09-13 01:01:06.177000000" +"41491426","IZUMI JAPANESE RESTAURANT","1","139","WEST 28 STREET","10001","2122731169","49","2011-05-23 00:00:00","P","04K","24","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2013-06-19 00:00:00","P","10F","24","","","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2010-09-17 00:00:00","C","09C","12","A","2010-09-17 00:00:00","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2011-04-19 00:00:00","F","04C","29","","","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2011-11-15 00:00:00","P","06E","16","","","2013-09-13 01:01:06.177000000" +"41449503","OKEANOS","3","314","7 AVENUE","11215","3477254162","38","2012-09-18 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41449503","OKEANOS","3","314","7 AVENUE","11215","3477254162","38","2012-09-18 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2011-02-23 00:00:00","F","06D","53","","","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2012-07-11 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2011-12-27 00:00:00","D","10F","11","A","2011-12-27 00:00:00","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2012-04-23 00:00:00","P","04M","24","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2012-05-08 00:00:00","D","06C","13","A","2012-05-08 00:00:00","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2012-09-25 00:00:00","F","02G","59","","","2013-09-13 01:01:06.177000000" +"41463147","MA SAKE","3","1704","AVENUE M","11230","7189988670","22","2011-08-26 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41463147","MA SAKE","3","1704","AVENUE M","11230","7189988670","22","2011-08-26 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2012-01-12 00:00:00","P","06D","21","","","2013-09-13 01:01:06.177000000" +"41467510","EXCHANGE BAR AND GRILL","1","256","3 AVENUE","10010","6465969039","03","2011-10-04 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41467510","EXCHANGE BAR AND GRILL","1","256","3 AVENUE","10010","6465969039","03","2011-10-04 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2010-12-28 00:00:00","U","10F","19","B","2010-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2010-12-28 00:00:00","U","20D","19","B","2010-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2011-06-16 00:00:00","F","06C","37","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2011-06-16 00:00:00","F","08A","37","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2011-07-05 00:00:00","U","08A","15","B","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2011-10-28 00:00:00","F","06C","34","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2011-11-10 00:00:00","D","08A","10","A","2011-11-10 00:00:00","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2012-09-19 00:00:00","U","04L","10","B","2012-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2010-12-15 00:00:00","F","04M","33","","","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2011-06-10 00:00:00","D","10F","8","A","2011-06-10 00:00:00","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2012-05-30 00:00:00","P","08C","18","","","2013-09-13 01:01:06.177000000" +"41449961","PENN SUSHI","1","000","PENN STATION","10001","2125645496","49","2011-01-19 00:00:00","D","06E","10","A","2011-01-19 00:00:00","2013-09-13 01:01:06.177000000" +"41449961","PENN SUSHI","1","000","PENN STATION","10001","2125645496","49","2012-08-23 00:00:00","D","02B","13","A","2012-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41449961","PENN SUSHI","1","000","PENN STATION","10001","2125645496","49","2012-08-23 00:00:00","D","10F","13","A","2012-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2011-01-04 00:00:00","U","10F","15","B","2011-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2011-07-27 00:00:00","U","10F","17","B","2011-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-01-18 00:00:00","F","10F","47","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-08-30 00:00:00","F","10B","17","C","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2010-08-18 00:00:00","U","04M","15","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2011-09-21 00:00:00","F","06C","23","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2011-12-27 00:00:00","P","10F","27","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2012-06-06 00:00:00","F","04M","43","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2012-06-20 00:00:00","U","02G","15","B","2012-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2012-12-17 00:00:00","U","02G","20","B","2012-12-17 00:00:00","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2012-09-24 00:00:00","F","10F","31","","","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2012-10-10 00:00:00","U","04C","12","B","2012-10-10 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-05-26 14:51:00","F","04C","99","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-06-14 13:17:00","G","10C","66","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-12-28 00:00:00","P","99B","20","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-01-10 00:00:00","C","09A","13","A","2011-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-01-10 00:00:00","C","10H","13","A","2011-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-08-11 00:00:00","D","08B","5","A","2011-08-11 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-12-27 00:00:00","F","06F","37","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-12-27 00:00:00","F","08A","37","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-09-10 00:00:00","F","05D","40","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-09-18 00:00:00","U","04H","14","B","2012-09-18 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2013-04-03 00:00:00","F","02B","30","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2012-12-17 00:00:00","U","06B","20","B","2012-12-17 00:00:00","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2010-06-24 14:03:00","F","06C","30","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2010-06-24 14:03:00","F","10C","30","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2011-03-22 00:00:00","D","06A","12","A","2011-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2011-03-22 00:00:00","D","10B","12","A","2011-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2012-04-06 00:00:00","D","10B","9","A","2012-04-06 00:00:00","2013-09-13 01:01:06.177000000" +"41461119","CITY RESTAURANT","3","1486","FLATBUSH AVENUE","11210","7188597347","20","2013-09-11 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41461165","NEW BRISAS LATINAS BAKERY RESTAURANT","4","135-15","LEFFERTS BOULEVARD","11420","7183239183","77","2011-08-05 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41450783","KIKKU JAPANESE RESTAURANT","1","50","WEST 55 STREET","10019","2125828357","49","2011-04-27 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"41450783","KIKKU JAPANESE RESTAURANT","1","50","WEST 55 STREET","10019","2125828357","49","2011-05-11 00:00:00","U","10F","9","B","2011-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"41450783","KIKKU JAPANESE RESTAURANT","1","50","WEST 55 STREET","10019","2125828357","49","2012-05-14 00:00:00","D","09C","12","A","2012-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2011-10-06 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2012-09-05 00:00:00","U","09C","10","B","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2013-03-29 00:00:00","P","09B","19","","","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2012-10-15 00:00:00","P","06E","26","","","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2012-12-31 00:00:00","U","04L","9","B","2012-12-31 00:00:00","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2010-06-03 13:54:00","F","04M","36","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2010-06-03 13:54:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2010-06-30 12:18:00","U","06D","17","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2011-07-25 00:00:00","P","10B","26","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2012-03-26 00:00:00","F","04M","37","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2012-03-26 00:00:00","F","08A","37","","","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2010-10-06 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2010-12-23 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2011-06-27 00:00:00","U","02B","13","B","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2012-12-20 00:00:00","U","04H","12","B","2012-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2013-02-13 00:00:00","P","06D","20","","","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2013-08-21 00:00:00","F","06D","30","","","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2013-08-21 00:00:00","F","06E","30","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2012-04-30 00:00:00","U","06D","21","B","2012-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2012-09-12 00:00:00","F","04M","12","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2012-09-12 00:00:00","F","10I","12","","","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2010-06-09 11:06:00","F","04M","31","","","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2011-01-11 00:00:00","P","02C","14","","","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2011-03-03 00:00:00","U","10D","4","B","2011-03-03 00:00:00","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2012-09-04 00:00:00","P","04M","12","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-07-12 00:00:00","O","04L","9","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-11-03 00:00:00","U","04L","15","B","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2012-05-10 00:00:00","P","04L","20","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2012-12-19 00:00:00","G","04L","75","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2012-12-19 00:00:00","G","09C","75","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2012-12-24 00:00:00","O","08A","10","P","2012-12-24 00:00:00","2013-09-13 01:01:06.177000000" +"41462077","TAKASHI","1","456","HUDSON STREET","10014","2124142929","49","2011-12-15 00:00:00","F","08C","14","","","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2011-02-03 00:00:00","P","06C","17","","","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2011-03-10 00:00:00","D","02G","11","A","2011-03-10 00:00:00","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2011-07-30 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2011-08-08 00:00:00","U","08A","26","B","2011-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2012-07-19 00:00:00","F","06E","33","","","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2012-07-31 00:00:00","D","10F","11","A","2012-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2011-03-11 00:00:00","P","02B","27","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2011-03-31 00:00:00","U","04M","26","B","2011-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2011-03-31 00:00:00","U","06D","26","B","2011-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2011-03-31 00:00:00","U","20A","26","B","2011-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2011-12-16 00:00:00","D","10F","9","A","2011-12-16 00:00:00","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2012-04-24 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2011-11-05 00:00:00","F","04A","38","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2011-11-05 00:00:00","F","06D","38","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2012-03-19 00:00:00","P","09B","18","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2012-04-25 00:00:00","U","10F","25","B","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2012-12-27 00:00:00","D","04C","13","A","2012-12-27 00:00:00","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2012-12-27 00:00:00","D","10F","13","A","2012-12-27 00:00:00","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2013-06-05 00:00:00","F","02G","56","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2013-06-05 00:00:00","F","06D","56","","","2013-09-13 01:01:06.177000000" +"41495058","GOLDEN FOREST CHINESE RESTAURANT","3","4915","8 AVENUE","11220","7186861633","20","2010-06-09 13:05:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41495058","GOLDEN FOREST CHINESE RESTAURANT","3","4915","8 AVENUE","11220","7186861633","20","2010-06-09 13:05:00","F","10G","49","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-04-08 00:00:00","F","04L","38","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-05-04 00:00:00","F","05D","56","C","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-05-04 00:00:00","F","10F","56","C","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-10-12 00:00:00","F","04L","67","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2012-03-05 00:00:00","F","06E","30","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2012-03-14 00:00:00","U","08A","19","B","2012-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2012-07-23 00:00:00","P","06A","21","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2012-08-06 00:00:00","G","04K","48","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2013-02-11 00:00:00","D","09B","9","A","2013-02-11 00:00:00","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2010-03-24 16:05:00","U","04K","8","","","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2011-10-11 00:00:00","P","06A","26","","","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2010-05-17 12:04:00","U","10G","13","","","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2011-02-23 00:00:00","F","06F","53","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2012-04-23 00:00:00","P","06D","24","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2012-10-09 00:00:00","D","10F","5","A","2012-10-09 00:00:00","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2013-04-25 00:00:00","P","02B","20","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2011-05-11 00:00:00","F","04K","63","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2011-10-12 00:00:00","D","08A","10","A","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2012-01-17 00:00:00","F","02B","22","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2013-02-20 00:00:00","P","10B","12","","","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2012-12-14 00:00:00","F","04C","32","","","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2012-12-14 00:00:00","F","04J","32","","","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2013-06-01 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"41512587","KAFF KAFE","3","5320","16 AVENUE","11204","7184360808","50","2010-07-29 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41453367","RIDLEY'S SEAFOOD SPOT","2","969","OGDEN AVENUE","10452","3472704247","72","2013-05-10 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41453367","RIDLEY'S SEAFOOD SPOT","2","969","OGDEN AVENUE","10452","3472704247","72","2013-05-10 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2010-12-22 00:00:00","F","04H","21","C","2010-12-22 00:00:00","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2011-12-15 00:00:00","F","04H","65","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2011-12-15 00:00:00","F","08A","65","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2012-05-05 00:00:00","F","04L","7","","","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2013-08-13 00:00:00","P","10B","25","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2011-02-22 00:00:00","P","08A","12","","","2013-09-13 01:01:06.177000000" +"41467510","EXCHANGE BAR AND GRILL","1","256","3 AVENUE","10010","6465969039","03","2011-10-04 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41458274","RAY'S PIZZA EXPRESS","2","570","KAPPOCK STREET","10463","7185488510","62","2011-08-24 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2011-02-09 00:00:00","F","06E","25","","","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2011-04-22 00:00:00","U","06C","16","","","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2012-08-30 00:00:00","P","06D","26","","","2013-09-13 01:01:06.177000000" +"41512992","BAY RIDGE DINER","3","8017","5 AVENUE","11209","7189210266","03","2013-06-13 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41512992","BAY RIDGE DINER","3","8017","5 AVENUE","11209","7189210266","03","2013-06-13 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41453658","JUSTINO'S PIZZERIA","1","879-883 ","10 AVENUE","10019","2125821222","63","2011-12-22 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41453658","JUSTINO'S PIZZERIA","1","879-883 ","10 AVENUE","10019","2125821222","63","2011-12-22 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41464115","JFK WOK CAFE","3","773","60 STREET","11220","7186808880","20","2011-03-17 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41464115","JFK WOK CAFE","3","773","60 STREET","11220","7186808880","20","2011-03-17 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2010-08-30 00:00:00","P","04M","8","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2010-08-30 00:00:00","P","10B","8","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2010-12-07 00:00:00","F","06C","32","C","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2011-12-27 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2010-12-28 00:00:00","U","10A","19","B","2010-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2011-10-28 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2012-08-20 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2010-12-15 00:00:00","F","06C","33","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2011-01-04 00:00:00","U","06A","15","B","2011-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-01-18 00:00:00","F","02B","47","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-08-30 00:00:00","F","04N","17","C","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2013-04-20 00:00:00","F","02G","47","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2013-06-06 00:00:00","U","04N","26","","","2013-09-13 01:01:06.177000000" +"41467781","HALAL FOOD BBQ CHICKEN STORE# 24W","4","4128","MAIN STREET","11355","7188889208","20","2011-12-15 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2011-06-24 00:00:00","F","02B","43","","","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2011-07-14 00:00:00","U","04H","16","B","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2011-07-14 00:00:00","U","08A","16","B","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2012-11-29 00:00:00","P","06E","20","","","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2013-06-19 00:00:00","F","06F","29","","","2013-09-13 01:01:06.177000000" +"41471288","THAT SUSHI SPOT","3","2462","NOSTRAND AVENUE","11210","3475875100","49","2011-05-23 00:00:00","U","02G","9","B","2011-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2011-04-21 00:00:00","U","04C","26","B","2011-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2011-04-21 00:00:00","U","09C","26","B","2011-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2011-04-21 00:00:00","U","22A","26","B","2011-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2011-10-13 00:00:00","D","08A","12","A","2011-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2012-04-30 00:00:00","F","15K","","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2012-08-29 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2011-02-17 00:00:00","D","06A","13","A","2011-02-17 00:00:00","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2011-06-10 00:00:00","F","10F","32","","","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2011-07-07 00:00:00","F","04L","31","C","2011-07-07 00:00:00","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2011-12-05 00:00:00","D","06C","8","A","2011-12-05 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-05-07 11:43:00","F","04N","0","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-05-07 11:43:00","F","08A","0","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-05-26 14:51:00","F","04N","99","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-05-26 14:51:00","F","08A","99","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-06-14 13:17:00","G","02G","66","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-06-14 13:17:00","G","10G","66","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-07-15 14:55:00","W","04N","11","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-06-10 00:00:00","P","02B","23","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-12-03 00:00:00","F","04C","29","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-12-03 00:00:00","F","06F","29","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-12-27 00:00:00","F","06D","37","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-12-27 00:00:00","F","10E","37","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-01-12 00:00:00","U","04C","23","B","2012-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-01-12 00:00:00","U","06D","23","B","2012-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-01-12 00:00:00","U","06E","23","B","2012-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-01-12 00:00:00","U","10F","23","B","2012-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2013-04-03 00:00:00","F","06D","30","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2013-04-03 00:00:00","F","06E","30","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2013-04-03 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2010-10-19 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41459070","NEW WONG RESTAURANT","1","103","EAST BROADWAY","10002","6468789474","20","2013-06-13 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2011-03-12 00:00:00","U","06D","25","B","2011-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2013-07-08 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2011-02-03 00:00:00","P","04C","17","","","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2011-03-10 00:00:00","D","08B","11","A","2011-03-10 00:00:00","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2011-04-11 00:00:00","F","04L","29","","","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2012-04-04 00:00:00","D","06F","7","A","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2013-05-15 00:00:00","G","08A","44","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2010-06-01 22:08:00","U","09B","10","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2011-06-08 00:00:00","P","06F","25","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2012-06-28 00:00:00","P","10F","26","","","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2011-02-23 00:00:00","D","06E","11","A","2011-02-23 00:00:00","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2011-06-10 00:00:00","D","06E","8","A","2011-06-10 00:00:00","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2012-06-08 00:00:00","D","09C","7","A","2012-06-08 00:00:00","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2013-01-14 00:00:00","D","02B","13","A","2013-01-14 00:00:00","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2011-03-30 00:00:00","U","06A","12","B","2011-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2012-04-10 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2012-04-19 00:00:00","U","06A","25","B","2012-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2013-01-08 00:00:00","D","04L","13","A","2013-01-08 00:00:00","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2013-01-08 00:00:00","D","10F","13","A","2013-01-08 00:00:00","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2013-06-19 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2010-08-23 00:00:00","F","06C","26","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2011-07-16 00:00:00","U","02G","19","B","2011-07-16 00:00:00","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2011-07-16 00:00:00","U","99B","19","B","2011-07-16 00:00:00","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2012-01-07 00:00:00","F","04H","34","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2012-01-07 00:00:00","F","09B","34","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2012-01-18 00:00:00","U","02B","19","B","2012-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2012-01-18 00:00:00","U","04M","19","B","2012-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2013-03-02 00:00:00","F","04L","29","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2013-03-02 00:00:00","F","06C","29","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2013-03-02 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"41515470","NARUTO RAMEN","3","276L ","5 AVENUE ","11215","7188321111","49","2011-03-14 00:00:00","P","02G","16","","","2013-09-13 01:01:06.177000000" +"41515470","NARUTO RAMEN","3","276L ","5 AVENUE ","11215","7188321111","49","2011-09-23 00:00:00","P","06F","24","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2010-10-13 00:00:00","G","04K","42","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2010-10-13 00:00:00","G","08A","42","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-07-19 00:00:00","G","08A","61","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-07-19 00:00:00","G","10I","61","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-02-09 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-02-09 00:00:00","P","10A","21","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-03-16 00:00:00","F","02B","35","C","2011-03-16 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-03-16 00:00:00","F","10B","35","C","2011-03-16 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-12-29 00:00:00","F","04J","46","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2012-06-15 00:00:00","G","10B","50","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2012-06-19 00:00:00","O","04L","10","P","2012-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2010-08-24 00:00:00","F","08A","33","","","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2011-12-21 00:00:00","P","10E","3","","","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2010-12-14 00:00:00","U","06C","23","B","2010-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2012-01-12 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2012-09-24 00:00:00","F","02B","31","","","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2012-10-10 00:00:00","U","10F","12","B","2012-10-10 00:00:00","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2010-10-20 00:00:00","C","10F","11","A","2010-10-20 00:00:00","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2011-06-10 00:00:00","F","02G","43","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2011-06-10 00:00:00","F","10H","43","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2011-11-15 00:00:00","U","04N","12","B","2011-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2012-03-19 00:00:00","P","04H","18","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2012-12-27 00:00:00","D","10B","13","A","2012-12-27 00:00:00","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2013-06-05 00:00:00","F","04N","56","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2011-04-06 00:00:00","F","02B","32","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2011-05-12 00:00:00","U","04L","17","B","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2011-11-02 00:00:00","F","02B","40","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2011-11-02 00:00:00","F","08C","40","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2012-03-21 00:00:00","F","09B","33","","","2013-09-13 01:01:06.177000000" +"41461119","CITY RESTAURANT","3","1486","FLATBUSH AVENUE","11210","7188597347","20","2013-09-11 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41461165","NEW BRISAS LATINAS BAKERY RESTAURANT","4","135-15","LEFFERTS BOULEVARD","11420","7183239183","77","2011-08-05 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41461165","NEW BRISAS LATINAS BAKERY RESTAURANT","4","135-15","LEFFERTS BOULEVARD","11420","7183239183","77","2011-08-05 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2011-07-15 00:00:00","U","10B","12","B","2011-07-15 00:00:00","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2012-08-29 00:00:00","D","06C","9","A","2012-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2012-08-29 00:00:00","D","10F","9","A","2012-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2010-06-02 11:54:00","F","06F","45","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-05-01 00:00:00","P","10B","19","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-05-10 00:00:00","F","04L","44","C","2012-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-05-10 00:00:00","F","06B","44","C","2012-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-09-25 00:00:00","F","04L","28","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-11-20 00:00:00","G","02B","77","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-11-23 00:00:00","O","08A","15","C","2012-11-23 00:00:00","2013-09-13 01:01:06.177000000" +"41517779","HAPPY KITCHEN","4","80-12","37 AVENUE","11372","7188031600","49","2011-11-17 00:00:00","D","10F","9","A","2011-11-17 00:00:00","2013-09-13 01:01:06.177000000" +"41517779","HAPPY KITCHEN","4","80-12","37 AVENUE","11372","7188031600","49","2012-05-03 00:00:00","P","06E","12","","","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2011-01-25 00:00:00","U","02G","11","B","2011-01-25 00:00:00","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2012-05-14 00:00:00","F","08C","31","","","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2012-12-11 00:00:00","P","02B","13","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2010-08-04 00:00:00","D","04N","10","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2011-10-24 00:00:00","P","09B","26","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2011-11-03 00:00:00","D","06E","8","A","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2011-11-03 00:00:00","D","10F","8","A","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2012-03-12 00:00:00","F","08A","41","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2012-08-07 00:00:00","P","08C","25","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2011-06-16 00:00:00","F","04L","37","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2011-07-05 00:00:00","U","04L","15","B","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2012-03-19 00:00:00","F","06E","44","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2012-03-19 00:00:00","F","08A","44","","","2013-09-13 01:01:06.177000000" +"41473217","MAHARAJA PALACE","1","1350","MADISON AVENUE","10128","2127228413","44","2010-10-14 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2011-07-14 00:00:00","P","09A","27","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-01-18 00:00:00","F","02G","47","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-01-18 00:00:00","F","04H","47","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-01-18 00:00:00","F","06D","47","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-01-18 00:00:00","F","08A","47","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-08-30 00:00:00","F","10F","17","C","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41467781","HALAL FOOD BBQ CHICKEN STORE# 24W","4","4128","MAIN STREET","11355","7188889208","20","2011-12-15 00:00:00","F","04B","49","","","2013-09-13 01:01:06.177000000" +"41456069","DREAM STATION","2","3809","WHITE PLAINS ROAD","10467","7187986936","20","2013-05-31 00:00:00","G","02B","49","","","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2011-05-27 00:00:00","F","04M","30","","","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2012-10-23 00:00:00","F","06D","17","","","2013-09-13 01:01:06.177000000" +"41461936","FIZA RESTAURANT","4","259-07","HILLSIDE AVENUE","11004","7183473100","44","2011-06-06 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-01-19 00:00:00","P","04L","14","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-07-05 00:00:00","G","04L","119","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-07-05 00:00:00","G","10F","119","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2012-12-19 00:00:00","G","04M","75","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2013-01-16 00:00:00","U","04H","9","B","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41501875","COMMON","4","70-15","AUSTIN STREET","11375","7182632130","53","2012-07-18 00:00:00","F","09B","49","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2011-04-21 00:00:00","D","06D","13","A","2011-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2012-05-01 00:00:00","F","06E","30","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2013-06-11 00:00:00","G","04M","63","","","2013-09-13 01:01:06.177000000" +"41468086","QUEEN BAKERY","1","150","MOTT STREET","10013","2129668998","08","2011-08-29 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41468086","QUEEN BAKERY","1","150","MOTT STREET","10013","2129668998","08","2011-08-29 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2011-06-06 00:00:00","F","06D","33","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2012-11-19 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2013-06-27 00:00:00","P","09A","14","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2013-06-27 00:00:00","P","10I","14","","","2013-09-13 01:01:06.177000000" +"41502106","HO JING","3","5816","8 AVENUE","11220","7184393453","20","2013-01-10 00:00:00","G","08C","49","","","2013-09-13 01:01:06.177000000" +"41502126","597 SILK ROAD CORP","3","597","MANHATTAN AVENUE","11222","7183491010","49","2011-08-17 00:00:00","F","15I","","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-05-07 11:43:00","F","06C","0","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-05-07 11:43:00","F","10B","0","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-05-26 14:51:00","F","06D","99","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-05-26 14:51:00","F","99B","99","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-06-14 13:17:00","G","06C","66","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-02-09 00:00:00","F","02G","41","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-02-09 00:00:00","F","06F","41","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-12-03 00:00:00","F","06C","29","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-12-03 00:00:00","F","10B","29","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-05-16 00:00:00","F","06D","66","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-05-16 00:00:00","F","10B","66","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-09-10 00:00:00","F","10B","40","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2013-04-03 00:00:00","F","04H","30","","","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2011-04-11 00:00:00","D","06C","12","A","2011-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2012-04-17 00:00:00","P","06B","22","","","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2012-05-03 00:00:00","D","08A","10","A","2012-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2013-03-28 00:00:00","G","06A","68","","","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2013-03-28 00:00:00","G","10B","68","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-01-20 00:00:00","D","04K","11","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-05-06 00:00:00","F","06A","32","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-06-27 00:00:00","U","06D","4","B","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41473838","NEW WONG WAH BAKERY","1","83","CANAL STREET","10002","2123438077","08","2011-08-20 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41473838","NEW WONG WAH BAKERY","1","83","CANAL STREET","10002","2123438077","08","2011-08-20 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2012-06-01 00:00:00","G","06A","64","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2012-11-15 00:00:00","P","06D","15","","","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2011-05-02 00:00:00","U","06F","20","B","2011-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2011-10-21 00:00:00","U","08A","19","B","2011-10-21 00:00:00","2013-09-13 01:01:06.177000000" +"41471136","NAKATA SUSHI","5","1775-D ","RICHMOND ROAD ","10306","7189801891","49","2011-03-02 00:00:00","P","06A","15","","","2013-09-13 01:01:06.177000000" +"41471136","NAKATA SUSHI","5","1775-D ","RICHMOND ROAD ","10306","7189801891","49","2011-03-17 00:00:00","D","05D","10","A","2011-03-17 00:00:00","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2011-06-24 00:00:00","F","06D","43","","","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2011-06-24 00:00:00","F","06E","43","","","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2011-12-01 00:00:00","D","02B","11","A","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2013-01-16 00:00:00","F","06G","22","C","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2013-06-19 00:00:00","F","06D","29","","","2013-09-13 01:01:06.177000000" +"41471288","THAT SUSHI SPOT","3","2462","NOSTRAND AVENUE","11210","3475875100","49","2011-03-29 00:00:00","F","02B","40","","","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2011-10-13 00:00:00","D","10F","12","A","2011-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2013-04-04 00:00:00","F","02G","26","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-04-08 00:00:00","F","06E","38","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-05-04 00:00:00","F","06D","56","C","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-10-12 00:00:00","F","06D","67","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2012-03-05 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2012-03-14 00:00:00","U","04K","19","B","2012-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2013-02-11 00:00:00","D","02B","9","A","2013-02-11 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2013-08-01 00:00:00","P","04L","15","","","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2012-02-01 00:00:00","P","06F","20","","","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2013-06-01 00:00:00","F","04A","32","","","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2013-06-01 00:00:00","F","06E","32","","","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2010-05-17 12:04:00","U","06E","13","","","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2011-02-23 00:00:00","F","06E","53","","","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2011-02-23 00:00:00","F","09A","53","","","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2011-02-23 00:00:00","F","22C","53","","","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2011-07-29 00:00:00","B","02G","13","A","2011-07-29 00:00:00","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2012-08-13 00:00:00","U","04N","21","B","2012-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2010-06-24 11:11:00","U","02G","27","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2010-06-24 11:11:00","U","08A","27","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2010-06-24 11:11:00","U","10G","27","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2011-11-29 00:00:00","P","04M","19","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2011-11-29 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2012-04-23 00:00:00","P","06C","24","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2012-09-25 00:00:00","F","08A","59","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2011-02-08 00:00:00","U","08A","13","B","2011-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2011-09-07 00:00:00","P","04N","26","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2011-09-07 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2011-09-21 00:00:00","F","06C","23","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2012-06-13 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2010-07-09 09:32:00","G","10G","94","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2010-09-17 00:00:00","P","10F","4","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2011-03-15 00:00:00","P","08A","15","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2011-09-14 00:00:00","D","04L","10","A","2011-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2012-07-23 00:00:00","F","06D","31","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2012-07-23 00:00:00","F","10F","31","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2012-01-06 00:00:00","F","06D","45","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2013-01-24 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2013-02-12 00:00:00","D","10A","11","A","2013-02-12 00:00:00","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2010-09-30 00:00:00","F","08A","40","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2011-04-20 00:00:00","U","06D","15","B","2011-04-20 00:00:00","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2011-11-16 00:00:00","F","04L","42","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2012-05-22 00:00:00","G","08A","48","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2012-05-22 00:00:00","G","10J","48","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2013-01-24 00:00:00","F","04K","30","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2013-07-26 00:00:00","F","02B","32","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2010-10-20 00:00:00","C","10H","11","A","2010-10-20 00:00:00","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2011-06-10 00:00:00","F","02B","43","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2011-06-10 00:00:00","F","04M","43","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2012-04-25 00:00:00","U","06E","25","B","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2012-11-14 00:00:00","F","02B","28","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2012-11-14 00:00:00","F","10B","28","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2013-06-05 00:00:00","F","05D","56","","","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2010-09-30 00:00:00","F","04K","56","","","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2010-09-30 00:00:00","F","08A","56","","","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2010-12-09 00:00:00","U","04M","24","B","2010-12-09 00:00:00","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2012-01-06 00:00:00","D","02G","9","A","2012-01-06 00:00:00","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2013-06-14 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2012-08-09 00:00:00","P","08A","0","","","2013-09-13 01:01:06.177000000" +"41464115","JFK WOK CAFE","3","773","60 STREET","11220","7186808880","20","2011-03-17 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41464115","JFK WOK CAFE","3","773","60 STREET","11220","7186808880","20","2011-03-17 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2011-11-02 00:00:00","F","02G","40","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2012-03-21 00:00:00","F","04L","33","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2013-02-21 00:00:00","U","04L","12","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2013-02-21 00:00:00","U","06C","12","","","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2010-06-02 11:54:00","F","04C","45","","","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2010-06-02 11:54:00","F","04M","45","","","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2010-06-17 15:31:00","F","10B","29","","","2013-09-13 01:01:06.177000000" +"41525472","CROSS BAY DELI & GRILL","4","105-10","CROSSBAY BOULEVARD","11417","7188488887","27","2010-09-28 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41464253","JJ DELI","4","36-19","REVIEW AVENUE","11101","7183925500","03","2013-01-08 00:00:00","G","02C","49","","","2013-09-13 01:01:06.177000000" +"41464253","JJ DELI","4","36-19","REVIEW AVENUE","11101","7183925500","03","2013-01-08 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2013-02-20 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2013-02-20 00:00:00","P","10D","19","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2011-03-28 00:00:00","P","06A","26","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2011-10-27 00:00:00","F","06C","41","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-09-25 00:00:00","F","04M","28","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-11-20 00:00:00","G","02G","77","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-11-21 00:00:00","W","04K","11","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-11-23 00:00:00","O","04K","15","C","2012-11-23 00:00:00","2013-09-13 01:01:06.177000000" +"41525547","TARO SUSHI NY INC","3","244","FLATBUSH AVENUE","11217","7183985240","49","2010-09-21 00:00:00","D","22B","","","","2013-09-13 01:01:06.177000000" +"41525547","TARO SUSHI NY INC","3","244","FLATBUSH AVENUE","11217","7183985240","49","2012-07-09 00:00:00","P","08C","18","","","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2011-01-20 00:00:00","D","04L","12","A","2011-01-20 00:00:00","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2012-12-19 00:00:00","F","08A","38","","","2013-09-13 01:01:06.177000000" +"41505432","BAGEL BISTRO & DINER","5","1810","VICTORY BOULEVARD","10314","7187206919","03","2011-04-11 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41473217","MAHARAJA PALACE","1","1350","MADISON AVENUE","10128","2127228413","44","2010-10-14 00:00:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"41473217","MAHARAJA PALACE","1","1350","MADISON AVENUE","10128","2127228413","44","2010-10-14 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41459070","NEW WONG RESTAURANT","1","103","EAST BROADWAY","10002","6468789474","20","2013-06-13 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2012-04-16 00:00:00","P","02B","27","","","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2012-04-16 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2012-04-16 00:00:00","P","10B","27","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2011-07-13 00:00:00","U","04L","5","B","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2011-12-15 00:00:00","F","02B","65","","","2013-09-13 01:01:06.177000000" +"41459355","TRINI DELIGHT","4","110-02","LIBERTY AVENUE","11419","7183221203","17","2011-04-18 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2011-12-15 00:00:00","F","04M","65","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2011-12-15 00:00:00","F","10B","65","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2011-12-28 00:00:00","F","04L","44","C","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2012-05-05 00:00:00","F","10B","7","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2012-12-04 00:00:00","U","02B","24","B","2012-12-04 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2011-09-07 00:00:00","F","04M","66","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2011-09-07 00:00:00","F","08A","66","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2011-09-07 00:00:00","F","08B","66","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2011-09-19 00:00:00","U","06E","15","B","2011-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2012-01-26 00:00:00","F","06C","60","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2012-01-26 00:00:00","F","08A","60","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2012-01-26 00:00:00","F","10F","60","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2012-07-26 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2012-08-09 00:00:00","D","10H","13","A","2012-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-02-05 00:00:00","F","04M","50","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-02-05 00:00:00","F","08A","50","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-07-17 00:00:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"41476813","GAN DA SUSHI","4","80-08","SURREY PLACE","11432","7183801818","49","2011-04-06 00:00:00","D","06A","13","A","2011-04-06 00:00:00","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2011-02-03 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2011-08-08 00:00:00","U","02B","26","B","2011-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2012-07-19 00:00:00","F","06F","33","","","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2012-07-31 00:00:00","D","04N","11","A","2012-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2013-02-21 00:00:00","D","02G","12","A","2013-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2013-02-21 00:00:00","D","10H","12","A","2013-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41471136","NAKATA SUSHI","5","1775-D ","RICHMOND ROAD ","10306","7189801891","49","2010-02-22 09:00:00","D","09D","6","","","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2011-06-24 00:00:00","F","04H","43","","","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2011-07-14 00:00:00","U","04L","16","B","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2011-07-14 00:00:00","U","04N","16","B","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2012-11-29 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2013-01-16 00:00:00","F","04L","22","C","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2013-01-16 00:00:00","F","10F","22","C","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2013-06-19 00:00:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"41471288","THAT SUSHI SPOT","3","2462","NOSTRAND AVENUE","11210","3475875100","49","2011-03-29 00:00:00","F","02G","40","","","2013-09-13 01:01:06.177000000" +"41471288","THAT SUSHI SPOT","3","2462","NOSTRAND AVENUE","11210","3475875100","49","2011-10-06 00:00:00","P","06F","22","","","2013-09-13 01:01:06.177000000" +"41471288","THAT SUSHI SPOT","3","2462","NOSTRAND AVENUE","11210","3475875100","49","2012-06-28 00:00:00","F","04N","16","","","2013-09-13 01:01:06.177000000" +"41473838","NEW WONG WAH BAKERY","1","83","CANAL STREET","10002","2123438077","08","2011-08-20 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41473876","DRAGON HOUSE","3","803A","WASHINGTON AVENUE","11238","7183986968","20","2011-06-21 00:00:00","F","06C","49","C","2011-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41473876","DRAGON HOUSE","3","803A","WASHINGTON AVENUE","11238","7183986968","20","2011-06-21 00:00:00","F","08A","49","C","2011-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41473876","DRAGON HOUSE","3","803A","WASHINGTON AVENUE","11238","7183986968","20","2011-06-21 00:00:00","F","10F","49","C","2011-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2011-08-16 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2011-08-16 00:00:00","P","08C","24","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2012-04-10 00:00:00","P","10B","19","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2012-04-19 00:00:00","U","06E","25","B","2012-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2012-11-21 00:00:00","P","04H","21","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2013-06-19 00:00:00","P","06E","24","","","2013-09-13 01:01:06.177000000" +"41471288","THAT SUSHI SPOT","3","2462","NOSTRAND AVENUE","11210","3475875100","49","2012-07-27 00:00:00","D","10F","12","A","2012-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2011-03-17 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2011-03-17 00:00:00","P","20A","16","","","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2011-10-13 00:00:00","D","04N","12","A","2011-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2012-08-29 00:00:00","F","10D","43","","","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2010-07-30 00:00:00","P","02G","7","","","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2011-07-07 00:00:00","F","02B","37","C","2011-07-07 00:00:00","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2010-12-02 00:00:00","F","08C","45","","","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2011-09-02 00:00:00","D","02G","12","A","2011-09-02 00:00:00","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2011-09-02 00:00:00","D","06D","12","A","2011-09-02 00:00:00","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2012-01-12 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2012-03-08 00:00:00","U","08A","7","B","2012-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41461119","CITY RESTAURANT","3","1486","FLATBUSH AVENUE","11210","7188597347","20","2013-09-11 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41461165","NEW BRISAS LATINAS BAKERY RESTAURANT","4","135-15","LEFFERTS BOULEVARD","11420","7183239183","77","2011-08-05 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2010-09-30 00:00:00","F","06A","40","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2011-04-20 00:00:00","U","10B","15","B","2011-04-20 00:00:00","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2011-12-14 00:00:00","U","04L","9","B","2011-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2013-01-24 00:00:00","F","03C","30","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2013-01-24 00:00:00","F","04H","30","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2013-02-14 00:00:00","D","10A","9","A","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2013-07-26 00:00:00","F","06D","32","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2013-07-26 00:00:00","F","10F","32","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2011-04-06 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2011-11-02 00:00:00","F","08A","40","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2012-03-21 00:00:00","F","02B","33","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2012-03-21 00:00:00","F","04M","33","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2013-01-30 00:00:00","F","06D","45","C","2013-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2010-06-02 11:54:00","F","02B","45","","","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2013-02-20 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2011-03-28 00:00:00","P","10F","26","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2011-12-06 00:00:00","F","02G","31","C","2011-12-06 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2011-12-06 00:00:00","F","04H","31","C","2011-12-06 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-05-10 00:00:00","F","06C","44","C","2012-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-11-23 00:00:00","O","10F","15","C","2012-11-23 00:00:00","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2010-12-09 00:00:00","F","04H","28","","","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2011-02-17 00:00:00","U","02B","18","B","2011-02-17 00:00:00","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2011-08-31 00:00:00","D","02B","12","A","2011-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2012-01-20 00:00:00","F","03D","28","","","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2013-08-21 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2010-09-07 00:00:00","P","02B","14","","","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2011-05-27 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2011-05-27 00:00:00","F","06E","30","","","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2012-10-23 00:00:00","F","04L","17","","","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2012-12-20 00:00:00","U","04N","12","B","2012-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41467510","EXCHANGE BAR AND GRILL","1","256","3 AVENUE","10010","6465969039","03","2011-10-04 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2010-11-10 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2010-12-28 00:00:00","U","08A","19","B","2010-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2011-06-16 00:00:00","F","04C","37","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2011-06-16 00:00:00","F","10F","37","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2011-10-28 00:00:00","F","06A","34","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2013-05-21 00:00:00","F","06C","33","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-01-18 00:00:00","F","06C","47","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-01-18 00:00:00","F","10B","47","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-02-02 00:00:00","U","04M","11","B","2012-02-02 00:00:00","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-02-02 00:00:00","U","10F","11","B","2012-02-02 00:00:00","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2013-06-06 00:00:00","U","10E","26","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-07-05 00:00:00","G","06E","119","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2012-12-19 00:00:00","G","09A","75","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2013-01-16 00:00:00","U","10F","9","B","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41462077","TAKASHI","1","456","HUDSON STREET","10014","2124142929","49","2011-06-16 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"41462077","TAKASHI","1","456","HUDSON STREET","10014","2124142929","49","2011-07-07 00:00:00","D","10F","7","A","2011-07-07 00:00:00","2013-09-13 01:01:06.177000000" +"41462077","TAKASHI","1","456","HUDSON STREET","10014","2124142929","49","2011-12-15 00:00:00","F","06F","14","","","2013-09-13 01:01:06.177000000" +"41462077","TAKASHI","1","456","HUDSON STREET","10014","2124142929","49","2012-06-07 00:00:00","D","10F","7","A","2012-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41462077","TAKASHI","1","456","HUDSON STREET","10014","2124142929","49","2013-06-18 00:00:00","P","06D","15","","","2013-09-13 01:01:06.177000000" +"41473217","MAHARAJA PALACE","1","1350","MADISON AVENUE","10128","2127228413","44","2010-10-14 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41473217","MAHARAJA PALACE","1","1350","MADISON AVENUE","10128","2127228413","44","2010-10-14 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41473217","MAHARAJA PALACE","1","1350","MADISON AVENUE","10128","2127228413","44","2010-10-14 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-05-07 11:43:00","F","04I","0","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-05-26 14:51:00","F","06C","99","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-06-14 13:17:00","G","02B","66","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-06-14 13:17:00","G","04O","66","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-06-14 13:17:00","G","10B","66","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-12-28 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-01-10 00:00:00","C","09C","13","A","2011-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-02-09 00:00:00","F","06E","41","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-02-17 00:00:00","F","02B","30","C","2011-02-17 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-02-17 00:00:00","F","06C","30","C","2011-02-17 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-06-10 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-12-27 00:00:00","F","04M","37","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-05-16 00:00:00","F","02G","66","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-05-16 00:00:00","F","06C","66","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-05-24 00:00:00","F","02G","31","C","2012-05-24 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-05-24 00:00:00","F","06E","31","C","2012-05-24 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-09-10 00:00:00","F","02G","40","","","2013-09-13 01:01:06.177000000" +"41479400","ROCCO'S PIZZA","2","397","BEDFORD PARK BOULEVARD","10458","7182956793","62","2013-01-30 00:00:00","G","06D","49","","","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2010-10-19 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2010-11-01 00:00:00","C","08A","12","A","2010-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2011-04-11 00:00:00","F","09B","29","","","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2011-05-02 00:00:00","U","04L","20","B","2011-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2011-10-06 00:00:00","F","10H","32","","","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2011-09-19 00:00:00","D","06D","7","A","2011-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2012-02-23 00:00:00","P","06A","21","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-06-17 00:00:00","F","04L","40","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-06-17 00:00:00","F","08A","40","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-07-14 00:00:00","F","02G","26","C","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-07-14 00:00:00","F","08A","26","C","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"41473838","NEW WONG WAH BAKERY","1","83","CANAL STREET","10002","2123438077","08","2011-08-20 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41476813","GAN DA SUSHI","4","80-08","SURREY PLACE","11432","7183801818","49","2010-10-05 00:00:00","P","04L","20","","","2013-09-13 01:01:06.177000000" +"41476813","GAN DA SUSHI","4","80-08","SURREY PLACE","11432","7183801818","49","2010-11-18 00:00:00","C","08A","10","A","2010-11-18 00:00:00","2013-09-13 01:01:06.177000000" +"41476813","GAN DA SUSHI","4","80-08","SURREY PLACE","11432","7183801818","49","2012-03-14 00:00:00","D","06C","8","A","2012-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-11-25 00:00:00","F","06C","40","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-12-21 00:00:00","U","10F","19","B","2011-12-21 00:00:00","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2011-02-23 00:00:00","F","10F","53","","","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2011-02-23 00:00:00","F","22A","53","","","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2011-03-10 00:00:00","F","10F","7","C","2011-03-10 00:00:00","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2012-08-13 00:00:00","U","08A","21","B","2012-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2010-06-24 11:11:00","U","08C","27","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2011-11-29 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2012-09-25 00:00:00","F","04M","59","","","2013-09-13 01:01:06.177000000" +"41463147","MA SAKE","3","1704","AVENUE M","11230","7189988670","22","2011-08-26 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41463147","MA SAKE","3","1704","AVENUE M","11230","7189988670","22","2011-08-26 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2011-07-12 00:00:00","D","10F","12","A","2011-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2012-04-25 00:00:00","U","02G","25","B","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2012-04-25 00:00:00","U","10I","25","B","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2012-11-14 00:00:00","F","06C","28","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2013-06-05 00:00:00","F","10D","56","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2010-11-29 00:00:00","U","10F","4","B","2010-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2011-04-20 00:00:00","U","09C","15","B","2011-04-20 00:00:00","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2012-05-22 00:00:00","G","04K","48","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2013-01-24 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2013-02-14 00:00:00","D","10F","9","A","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2010-10-28 00:00:00","P","08C","19","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2012-04-03 00:00:00","F","04N","40","","","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2011-04-22 00:00:00","U","10I","16","","","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2011-09-08 00:00:00","B","02G","13","A","2011-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2012-08-30 00:00:00","P","09B","26","","","2013-09-13 01:01:06.177000000" +"41464115","JFK WOK CAFE","3","773","60 STREET","11220","7186808880","20","2011-03-17 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41464253","JJ DELI","4","36-19","REVIEW AVENUE","11101","7183925500","03","2013-01-08 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41480428","GORDON RAMSAY AT THE LONDON","1","151","WEST 54 STREET","10019","2124688811","03","2013-02-01 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41480428","GORDON RAMSAY AT THE LONDON","1","151","WEST 54 STREET","10019","2124688811","03","2013-02-01 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2012-04-03 00:00:00","F","08A","40","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2013-02-14 00:00:00","F","04N","28","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2013-02-14 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2013-08-28 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2011-08-12 00:00:00","P","04M","19","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2011-08-12 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2011-08-22 00:00:00","D","10F","12","A","2011-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2011-12-27 00:00:00","P","08C","18","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-01-12 00:00:00","W","08A","12","","","2013-09-13 01:01:06.177000000" +"41477990","ZABB ELEE","1","75","2 AVENUE","10003","2125059533","82","2012-05-29 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2011-11-16 00:00:00","P","10B","14","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2012-09-26 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41513573","EMPIRE PIZZA II","1","35","1 AVENUE","10003","2126775500","62","2013-07-08 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2012-05-22 00:00:00","F","06F","48","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2012-05-22 00:00:00","F","09C","48","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2012-05-22 00:00:00","F","10F","48","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2012-06-11 00:00:00","D","02G","12","A","2012-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2012-10-25 00:00:00","F","04L","36","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2012-10-25 00:00:00","F","06F","36","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2012-10-25 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2013-02-13 00:00:00","F","06B","25","C","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2013-02-13 00:00:00","F","08C","25","C","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41536872","NEW TOKYO SUSHI","4","162-16 ","UNION TURNPIKE ","11366","9172516359","49","2010-10-28 00:00:00","D","20A","","","","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2011-07-30 00:00:00","P","06E","20","","","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2011-08-08 00:00:00","U","04L","26","B","2011-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2012-07-19 00:00:00","F","04C","33","","","2013-09-13 01:01:06.177000000" +"41480898","HANABI JAPANESE RESTAURANT","1","1450","2 AVENUE","10021","2125701888","49","2011-02-18 00:00:00","D","02B","7","A","2011-02-18 00:00:00","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2011-12-15 00:00:00","F","04N","65","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2011-12-28 00:00:00","F","02B","44","C","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2011-12-28 00:00:00","F","04C","44","C","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2012-05-15 00:00:00","D","06C","12","A","2012-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2012-12-04 00:00:00","U","04L","24","B","2012-12-04 00:00:00","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2012-03-01 00:00:00","P","04M","23","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2012-03-01 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2012-03-14 00:00:00","U","04M","17","B","2012-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2012-10-10 00:00:00","F","04N","40","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2012-11-15 00:00:00","U","04N","12","B","2012-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2013-04-22 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2013-04-22 00:00:00","P","08B","16","","","2013-09-13 01:01:06.177000000" +"41537949","LZ SUSHI","1","355 ","7 AVENUE ","10001","2128681388","49","2011-08-31 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2010-08-23 00:00:00","F","08A","26","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2010-08-23 00:00:00","F","10I","26","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2010-12-07 00:00:00","U","04L","10","B","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2010-12-07 00:00:00","U","22C","10","B","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2011-07-16 00:00:00","U","04M","19","B","2011-07-16 00:00:00","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2012-01-07 00:00:00","F","06C","34","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2013-03-02 00:00:00","F","10B","29","","","2013-09-13 01:01:06.177000000" +"41515470","NARUTO RAMEN","3","276L ","5 AVENUE ","11215","7188321111","49","2011-09-23 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"41515470","NARUTO RAMEN","3","276L ","5 AVENUE ","11215","7188321111","49","2011-10-04 00:00:00","D","02G","12","A","2011-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2011-06-24 00:00:00","F","08A","43","","","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2011-12-01 00:00:00","D","08C","11","A","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2011-12-01 00:00:00","D","10F","11","A","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2012-11-29 00:00:00","P","06A","20","","","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2013-01-28 00:00:00","U","04H","20","","","2013-09-13 01:01:06.177000000" +"41471288","THAT SUSHI SPOT","3","2462","NOSTRAND AVENUE","11210","3475875100","49","2011-03-29 00:00:00","F","04A","40","","","2013-09-13 01:01:06.177000000" +"41471288","THAT SUSHI SPOT","3","2462","NOSTRAND AVENUE","11210","3475875100","49","2011-03-29 00:00:00","F","06C","40","","","2013-09-13 01:01:06.177000000" +"41471288","THAT SUSHI SPOT","3","2462","NOSTRAND AVENUE","11210","3475875100","49","2011-05-23 00:00:00","U","10F","9","B","2011-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"41471288","THAT SUSHI SPOT","3","2462","NOSTRAND AVENUE","11210","3475875100","49","2012-06-28 00:00:00","F","06D","16","","","2013-09-13 01:01:06.177000000" +"41471288","THAT SUSHI SPOT","3","2462","NOSTRAND AVENUE","11210","3475875100","49","2012-07-27 00:00:00","D","04N","12","A","2012-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2011-04-21 00:00:00","U","08A","26","B","2011-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2012-08-29 00:00:00","F","04J","43","","","2013-09-13 01:01:06.177000000" +"41538617","MYSTIQUE","1","141 ","CHRYSTIE STREET ","10002","2129667808","03","2012-08-24 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-02-01 00:00:00","F","06D","33","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-07-21 00:00:00","W","99B","14","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-09-22 00:00:00","U","02G","14","B","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-09-22 00:00:00","U","02H","14","B","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41476813","GAN DA SUSHI","4","80-08","SURREY PLACE","11432","7183801818","49","2012-03-14 00:00:00","D","09B","8","A","2012-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41476813","GAN DA SUSHI","4","80-08","SURREY PLACE","11432","7183801818","49","2013-03-20 00:00:00","P","06C","26","","","2013-09-13 01:01:06.177000000" +"41482459","SARKURA JAPAN","4","89-02","165 STREET","11432","7182629055","49","2010-04-23 12:01:00","U","10L","4","","","2013-09-13 01:01:06.177000000" +"41482459","SARKURA JAPAN","4","89-02","165 STREET","11432","7182629055","49","2011-04-22 00:00:00","D","06E","9","A","2011-04-22 00:00:00","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2010-06-03 08:30:00","D","10K","2","","","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2011-05-17 00:00:00","F","02G","44","","","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2011-05-17 00:00:00","F","06D","44","","","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2011-07-01 00:00:00","U","08A","17","B","2011-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2012-03-07 00:00:00","D","04L","11","A","2012-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2013-05-01 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-03-16 00:00:00","F","04L","35","C","2011-03-16 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-09-08 00:00:00","F","08A","50","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-09-24 00:00:00","U","06F","19","B","2011-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-12-29 00:00:00","F","10B","46","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2012-01-12 00:00:00","U","06C","18","B","2012-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2010-08-24 00:00:00","F","09B","33","","","2013-09-13 01:01:06.177000000" +"41479400","ROCCO'S PIZZA","2","397","BEDFORD PARK BOULEVARD","10458","7182956793","62","2013-01-30 00:00:00","G","02B","49","","","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2011-06-14 00:00:00","F","04H","37","","","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2011-06-14 00:00:00","F","06B","37","","","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2012-04-06 00:00:00","F","04L","25","C","2012-04-06 00:00:00","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2012-03-19 00:00:00","D","06D","10","A","2012-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2012-03-19 00:00:00","D","10F","10","A","2012-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2013-03-18 00:00:00","D","10B","13","A","2013-03-18 00:00:00","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2013-08-23 00:00:00","P","02B","26","","","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2011-08-18 00:00:00","F","04C","21","C","2011-08-18 00:00:00","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2011-12-14 00:00:00","D","10B","7","A","2011-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2013-08-06 00:00:00","F","05H","55","","","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2013-08-06 00:00:00","F","06F","55","","","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2013-08-06 00:00:00","F","10J","55","","","2013-09-13 01:01:06.177000000" +"41483385","LIAM'S PUB","1","90","FULTON STREET","10038","2122670079","03","2011-06-06 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41467510","EXCHANGE BAR AND GRILL","1","256","3 AVENUE","10010","6465969039","03","2011-10-04 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2010-12-28 00:00:00","U","06A","19","B","2010-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2011-06-16 00:00:00","F","02G","37","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2011-10-28 00:00:00","F","02G","34","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2011-10-28 00:00:00","F","04A","34","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2012-05-21 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2011-07-14 00:00:00","P","02B","27","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-01-18 00:00:00","F","04M","47","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-08-15 00:00:00","F","04L","38","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-08-30 00:00:00","F","02G","17","C","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2013-06-06 00:00:00","U","02G","26","","","2013-09-13 01:01:06.177000000" +"41467781","HALAL FOOD BBQ CHICKEN STORE# 24W","4","4128","MAIN STREET","11355","7188889208","20","2011-12-15 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41467781","HALAL FOOD BBQ CHICKEN STORE# 24W","4","4128","MAIN STREET","11355","7188889208","20","2011-12-15 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2011-04-06 00:00:00","F","04H","32","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2011-05-12 00:00:00","U","02B","17","B","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2011-11-16 00:00:00","U","06C","22","B","2011-11-16 00:00:00","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2012-09-11 00:00:00","P","04L","12","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2013-02-21 00:00:00","U","10F","12","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2013-07-17 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2010-06-17 15:31:00","F","06F","29","","","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2013-02-20 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2011-10-08 00:00:00","P","04C","27","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2012-05-01 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2013-05-10 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41541293","TEJADA RESTAURANT","2","283","EAST 170 STREET","10456","6462387260","55","2011-06-23 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41541293","TEJADA RESTAURANT","2","283","EAST 170 STREET","10456","6462387260","55","2011-06-23 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"41468086","QUEEN BAKERY","1","150","MOTT STREET","10013","2129668998","08","2011-08-29 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-07-15 14:55:00","W","10B","11","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-12-28 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-02-09 00:00:00","F","04J","41","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-02-09 00:00:00","F","09C","41","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-02-09 00:00:00","F","10F","41","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-05-24 00:00:00","F","04N","31","C","2012-05-24 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-09-10 00:00:00","F","04L","40","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2011-06-09 00:00:00","F","04L","53","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2012-05-17 00:00:00","U","04L","17","B","2012-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2012-05-17 00:00:00","U","10F","17","B","2012-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2012-12-11 00:00:00","D","10H","11","A","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2013-05-21 00:00:00","F","10B","70","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2011-04-27 00:00:00","U","08C","11","B","2011-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2011-04-27 00:00:00","U","10B","11","B","2011-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2011-10-27 00:00:00","F","10F","41","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-05-01 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-09-25 00:00:00","F","02B","28","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-11-20 00:00:00","G","04L","77","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-11-20 00:00:00","G","10D","77","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-11-21 00:00:00","W","04L","11","","","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2011-02-24 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2011-03-08 00:00:00","F","22B","17","C","2011-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2013-03-27 00:00:00","G","08A","53","","","2013-09-13 01:01:06.177000000" +"41480428","GORDON RAMSAY AT THE LONDON","1","151","WEST 54 STREET","10019","2124688811","03","2013-02-01 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2011-03-10 00:00:00","F","06D","53","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2011-03-10 00:00:00","F","06E","53","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2011-03-10 00:00:00","F","10F","53","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-09-18 00:00:00","U","02G","14","B","2012-09-18 00:00:00","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2010-11-01 00:00:00","C","10F","12","A","2010-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2011-04-11 00:00:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2011-04-11 00:00:00","F","08C","29","","","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2011-04-11 00:00:00","F","22C","29","","","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2011-05-02 00:00:00","U","02B","20","B","2011-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2011-10-06 00:00:00","F","04J","32","","","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2011-10-06 00:00:00","F","05D","32","","","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2011-10-21 00:00:00","U","08C","19","B","2011-10-21 00:00:00","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2011-11-10 00:00:00","P","04A","27","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2011-11-10 00:00:00","P","06D","27","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2011-11-10 00:00:00","P","06E","27","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2011-12-06 00:00:00","D","06E","12","A","2011-12-06 00:00:00","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2013-07-31 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"41473217","MAHARAJA PALACE","1","1350","MADISON AVENUE","10128","2127228413","44","2010-10-14 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2011-04-11 00:00:00","D","10I","12","A","2011-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2012-09-21 00:00:00","P","08A","11","","","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2013-03-28 00:00:00","G","06C","68","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-06-27 00:00:00","U","10B","4","B","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-09-27 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-11-01 00:00:00","P","10B","16","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2012-06-01 00:00:00","G","06C","64","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2012-06-05 00:00:00","O","10B","7","P","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2011-03-02 00:00:00","P","10H","20","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2011-08-02 00:00:00","G","06C","72","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2012-03-16 00:00:00","F","06C","23","C","2012-03-16 00:00:00","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2012-07-26 00:00:00","F","04E","30","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2012-07-26 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2012-07-26 00:00:00","F","06D","30","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2012-08-30 00:00:00","D","10B","12","A","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2013-03-06 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2013-03-06 00:00:00","P","06D","23","","","2013-09-13 01:01:06.177000000" +"41485508","TAKAYAMA SUSHI LOUNGE","5","17","PAGE AVENUE","10309","7182278744","49","2012-03-12 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"41485508","TAKAYAMA SUSHI LOUNGE","5","17","PAGE AVENUE","10309","7182278744","49","2012-03-12 00:00:00","P","10B","17","","","2013-09-13 01:01:06.177000000" +"41485508","TAKAYAMA SUSHI LOUNGE","5","17","PAGE AVENUE","10309","7182278744","49","2012-04-04 00:00:00","D","02B","10","A","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2011-06-15 00:00:00","F","02G","41","","","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2013-01-17 00:00:00","F","02G","62","","","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2013-07-29 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"41473838","NEW WONG WAH BAKERY","1","83","CANAL STREET","10002","2123438077","08","2011-08-20 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41473838","NEW WONG WAH BAKERY","1","83","CANAL STREET","10002","2123438077","08","2011-08-20 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41542304","JUNOON","1","27","WEST 24 STREET","10010","2124902100","44","2013-09-11 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41542304","JUNOON","1","27","WEST 24 STREET","10010","2124902100","44","2013-09-11 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41542304","JUNOON","1","27","WEST 24 STREET","10010","2124902100","44","2013-09-11 00:00:00","F","10E","49","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2011-09-07 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2012-01-10 00:00:00","P","06E","16","","","2013-09-13 01:01:06.177000000" +"41542939","MAGGIE BROWN","3","455","MYRTLE AVENUE","11205","7186437001","03","2011-06-09 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2011-01-31 00:00:00","D","10F","10","","","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2011-04-27 00:00:00","D","02G","13","A","2011-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2011-04-27 00:00:00","D","99B","13","A","2011-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2013-05-31 00:00:00","F","06C","43","","","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2013-05-31 00:00:00","F","10F","43","","","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2011-10-08 00:00:00","F","06E","56","","","2013-09-13 01:01:06.177000000" +"41524218","OZEN ASIAN FUSION","1","760","AMSTERDAM AVENUE","10025","2126780300","05","2011-09-28 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2011-04-04 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2012-05-22 00:00:00","G","10F","48","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2012-06-04 00:00:00","F","04H","27","C","2012-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2012-06-04 00:00:00","F","08A","27","C","2012-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2012-06-04 00:00:00","F","10F","27","C","2012-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2013-07-26 00:00:00","F","04H","32","","","2013-09-13 01:01:06.177000000" +"41524648","SICHUAN RESTAURANT","4","98-108","QUEENS BOULEVARD","11374","7182688833","20","2011-09-20 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2010-12-09 00:00:00","U","06A","24","B","2010-12-09 00:00:00","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2012-01-06 00:00:00","D","10E","9","A","2012-01-06 00:00:00","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2011-09-28 00:00:00","F","02G","37","","","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2012-02-23 00:00:00","F","06E","22","","","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2012-08-23 00:00:00","U","06A","15","B","2012-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2013-05-09 00:00:00","F","02B","26","","","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2013-05-09 00:00:00","F","04L","26","","","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2010-10-27 00:00:00","D","22C","6","","","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2011-05-02 00:00:00","P","10F","25","","","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2011-05-02 00:00:00","P","20A","25","","","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2011-08-18 00:00:00","F","02B","21","C","2011-08-18 00:00:00","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2013-08-06 00:00:00","F","02H","55","","","2013-09-13 01:01:06.177000000" +"41525472","CROSS BAY DELI & GRILL","4","105-10","CROSSBAY BOULEVARD","11417","7188488887","27","2010-09-28 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2011-06-06 00:00:00","F","05D","33","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2012-11-19 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2012-12-04 00:00:00","U","08A","24","B","2012-12-04 00:00:00","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2013-06-27 00:00:00","P","08C","14","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2013-06-27 00:00:00","P","10F","14","","","2013-09-13 01:01:06.177000000" +"41525547","TARO SUSHI NY INC","3","244","FLATBUSH AVENUE","11217","7183985240","49","2010-11-19 00:00:00","C","10F","11","A","2010-11-19 00:00:00","2013-09-13 01:01:06.177000000" +"41525547","TARO SUSHI NY INC","3","244","FLATBUSH AVENUE","11217","7183985240","49","2011-11-03 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41525547","TARO SUSHI NY INC","3","244","FLATBUSH AVENUE","11217","7183985240","49","2012-07-09 00:00:00","P","09C","18","","","2013-09-13 01:01:06.177000000" +"41525547","TARO SUSHI NY INC","3","244","FLATBUSH AVENUE","11217","7183985240","49","2012-07-25 00:00:00","D","04C","9","A","2012-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2011-01-20 00:00:00","D","99B","12","A","2011-01-20 00:00:00","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2012-12-19 00:00:00","F","06D","38","","","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2012-12-19 00:00:00","F","10D","38","","","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2012-12-19 00:00:00","F","10E","38","","","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2013-01-11 00:00:00","D","10F","7","A","2013-01-11 00:00:00","2013-09-13 01:01:06.177000000" +"41483385","LIAM'S PUB","1","90","FULTON STREET","10038","2122670079","03","2011-06-06 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41480428","GORDON RAMSAY AT THE LONDON","1","151","WEST 54 STREET","10019","2124688811","03","2013-02-01 00:00:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2011-03-10 00:00:00","F","04J","53","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2011-04-27 00:00:00","D","10B","11","A","2011-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2011-11-30 00:00:00","D","10F","11","A","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2012-04-30 00:00:00","P","06C","17","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2012-09-26 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2010-12-01 00:00:00","D","10B","5","","","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2011-05-25 00:00:00","F","06D","33","","","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2011-07-12 00:00:00","U","02B","25","B","2011-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2011-07-12 00:00:00","U","05D","25","B","2011-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2011-07-12 00:00:00","U","06A","25","B","2011-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2011-07-12 00:00:00","U","10B","25","B","2011-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41471136","NAKATA SUSHI","5","1775-D ","RICHMOND ROAD ","10306","7189801891","49","2010-02-22 09:00:00","D","10G","6","","","2013-09-13 01:01:06.177000000" +"41471136","NAKATA SUSHI","5","1775-D ","RICHMOND ROAD ","10306","7189801891","49","2011-03-02 00:00:00","P","06E","15","","","2013-09-13 01:01:06.177000000" +"41471136","NAKATA SUSHI","5","1775-D ","RICHMOND ROAD ","10306","7189801891","49","2011-03-02 00:00:00","P","10H","15","","","2013-09-13 01:01:06.177000000" +"41471138","NANA SUSHI LOUNGE","1","511","3 AVENUE","10016","2126831088","49","2013-06-19 00:00:00","F","04H","29","","","2013-09-13 01:01:06.177000000" +"41545050","PATRICIA'S","2","1082 ","MORRIS PARK AVENUE ","10461","7184099069","48","2011-05-04 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2011-08-10 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2012-07-02 00:00:00","F","04J","46","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2012-07-18 00:00:00","F","02G","27","C","2012-07-18 00:00:00","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2011-07-14 00:00:00","U","04L","23","B","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2012-05-09 00:00:00","P","05D","20","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2013-02-06 00:00:00","F","06C","28","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2013-02-28 00:00:00","U","06C","17","B","2013-02-28 00:00:00","2013-09-13 01:01:06.177000000" +"41471288","THAT SUSHI SPOT","3","2462","NOSTRAND AVENUE","11210","3475875100","49","2012-07-27 00:00:00","D","08A","12","A","2012-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2011-04-21 00:00:00","U","04L","26","B","2011-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2012-08-29 00:00:00","F","10B","43","","","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2012-09-25 00:00:00","U","10F","11","B","2012-09-25 00:00:00","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2013-04-04 00:00:00","F","08A","26","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2011-01-14 00:00:00","D","10F","10","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2011-04-07 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41488338","388 CAFE & DELI","1","1-3 ","ELDRIDGE STREET ","10002","2122191318","20","2011-10-11 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"41545732","LEMONGRASS GRILL","3","156","COURT STREET","11201","7185229728","82","2012-07-24 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2011-06-09 00:00:00","F","06E","53","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2011-07-05 00:00:00","U","04L","12","B","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2012-04-19 00:00:00","F","06D","21","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2012-10-12 00:00:00","P","10B","5","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2012-12-11 00:00:00","D","06F","11","A","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2013-05-21 00:00:00","F","04C","70","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2013-05-21 00:00:00","F","08A","70","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2013-05-21 00:00:00","F","09C","70","","","2013-09-13 01:01:06.177000000" +"41546097","KUSHI Q","1","153","EAST 53 STREET","10022","2128886488","49","2011-08-08 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41546097","KUSHI Q","1","153","EAST 53 STREET","10022","2128886488","49","2012-01-06 00:00:00","D","09B","4","A","2012-01-06 00:00:00","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2010-09-27 00:00:00","F","04M","40","","","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2010-09-27 00:00:00","F","08A","40","","","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2011-09-27 00:00:00","P","04K","20","","","2013-09-13 01:01:06.177000000" +"41476813","GAN DA SUSHI","4","80-08","SURREY PLACE","11432","7183801818","49","2010-10-05 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2011-05-18 00:00:00","F","02G","48","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2011-05-18 00:00:00","F","05D","48","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2012-11-28 00:00:00","P","06A","21","","","2013-09-13 01:01:06.177000000" +"41528823","BAYRIDGE SUSHI","3","6914 ","3 AVENUE ","11209","7184910662","49","2012-08-28 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"41528823","BAYRIDGE SUSHI","3","6914 ","3 AVENUE ","11209","7184910662","49","2012-09-25 00:00:00","D","08A","12","A","2012-09-25 00:00:00","2013-09-13 01:01:06.177000000" +"41485508","TAKAYAMA SUSHI LOUNGE","5","17","PAGE AVENUE","10309","7182278744","49","2010-05-05 13:03:00","D","10G","4","","","2013-09-13 01:01:06.177000000" +"41485508","TAKAYAMA SUSHI LOUNGE","5","17","PAGE AVENUE","10309","7182278744","49","2011-06-04 00:00:00","P","04C","16","","","2013-09-13 01:01:06.177000000" +"41485508","TAKAYAMA SUSHI LOUNGE","5","17","PAGE AVENUE","10309","7182278744","49","2011-07-09 00:00:00","D","02G","13","A","2011-07-09 00:00:00","2013-09-13 01:01:06.177000000" +"41485508","TAKAYAMA SUSHI LOUNGE","5","17","PAGE AVENUE","10309","7182278744","49","2012-08-20 00:00:00","P","04N","27","","","2013-09-13 01:01:06.177000000" +"41485508","TAKAYAMA SUSHI LOUNGE","5","17","PAGE AVENUE","10309","7182278744","49","2012-08-20 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"41485508","TAKAYAMA SUSHI LOUNGE","5","17","PAGE AVENUE","10309","7182278744","49","2012-10-23 00:00:00","D","04J","12","A","2012-10-23 00:00:00","2013-09-13 01:01:06.177000000" +"41485508","TAKAYAMA SUSHI LOUNGE","5","17","PAGE AVENUE","10309","7182278744","49","2012-10-23 00:00:00","D","10F","12","A","2012-10-23 00:00:00","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2013-01-17 00:00:00","F","02B","62","","","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2013-01-17 00:00:00","F","10B","62","","","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2013-03-04 00:00:00","D","08A","11","A","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2013-07-29 00:00:00","P","02B","23","","","2013-09-13 01:01:06.177000000" +"41482459","SARKURA JAPAN","4","89-02","165 STREET","11432","7182629055","49","2010-04-23 12:01:00","U","10B","4","","","2013-09-13 01:01:06.177000000" +"41482459","SARKURA JAPAN","4","89-02","165 STREET","11432","7182629055","49","2011-04-22 00:00:00","D","10F","9","A","2011-04-22 00:00:00","2013-09-13 01:01:06.177000000" +"41529617","SHOBU SUSHI & GRILL","3","9427","5 AVENUE","11209","7188338345","49","2012-05-29 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2011-11-02 00:00:00","F","04M","40","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2011-11-16 00:00:00","U","04L","22","B","2011-11-16 00:00:00","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2012-03-21 00:00:00","F","08A","33","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2013-07-17 00:00:00","P","04H","20","","","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2011-05-17 00:00:00","F","04L","44","","","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2011-05-17 00:00:00","F","09C","44","","","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2011-07-01 00:00:00","U","04M","17","B","2011-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2011-10-08 00:00:00","F","04L","56","","","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2011-10-18 00:00:00","U","04L","13","B","2011-10-18 00:00:00","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2013-04-13 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2011-02-10 00:00:00","F","04L","55","","","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2011-02-10 00:00:00","F","09C","55","","","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2011-02-10 00:00:00","F","10F","55","","","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2011-02-22 00:00:00","D","10B","9","A","2011-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2011-06-15 00:00:00","O","10F","4","P","2011-06-15 00:00:00","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2012-02-23 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41547568","HAGANE HIBACHI & JAPANESE GRILL","4","161-02","CROSSBAY BOULEVARD","11414","7188358385","49","2011-11-07 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41547568","HAGANE HIBACHI & JAPANESE GRILL","4","161-02","CROSSBAY BOULEVARD","11414","7188358385","49","2012-03-28 00:00:00","P","05D","19","","","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2010-06-02 11:54:00","F","10G","45","","","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2010-06-17 15:31:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2012-02-13 00:00:00","D","10E","9","A","2012-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2011-10-27 00:00:00","F","06F","41","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2011-10-27 00:00:00","F","09B","41","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2011-12-06 00:00:00","F","04N","31","C","2011-12-06 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-11-20 00:00:00","G","04K","77","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2013-04-22 00:00:00","P","08A","15","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2013-04-22 00:00:00","P","10D","15","","","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2012-01-18 00:00:00","F","04H","50","","","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2012-01-18 00:00:00","F","06D","50","","","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2012-01-18 00:00:00","F","06E","50","","","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2012-01-18 00:00:00","F","08A","50","","","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2012-01-18 00:00:00","F","09B","50","","","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2012-04-06 00:00:00","F","04A","25","C","2012-04-06 00:00:00","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2013-03-09 00:00:00","F","06A","17","","","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2012-06-13 00:00:00","U","04C","11","B","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2013-02-07 00:00:00","F","06C","23","","","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2013-02-07 00:00:00","F","09C","23","","","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2013-02-07 00:00:00","F","10F","23","","","2013-09-13 01:01:06.177000000" +"41490694","PARRILLA INTERNATIONAL","2","3815","WHITE PLAINS ROAD","10467","7185474359","53","2011-05-20 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41490694","PARRILLA INTERNATIONAL","2","3815","WHITE PLAINS ROAD","10467","7185474359","53","2011-05-20 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"41482939","NUEVO SABOR RESTAURANT","1","4032","10 AVENUE","10034","2125671515","53","2011-06-09 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2010-10-27 00:00:00","D","10F","6","","","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2010-10-27 00:00:00","D","20D","6","","","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2011-05-02 00:00:00","P","05E","25","","","2013-09-13 01:01:06.177000000" +"41483385","LIAM'S PUB","1","90","FULTON STREET","10038","2122670079","03","2011-06-06 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41483385","LIAM'S PUB","1","90","FULTON STREET","10038","2122670079","03","2011-06-06 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2013-03-04 00:00:00","D","06D","7","A","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2010-12-13 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2011-01-07 00:00:00","C","04L","12","A","2011-01-07 00:00:00","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2011-12-16 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2012-05-15 00:00:00","D","06E","9","A","2012-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41547974","SAKURA JAPANESE RESTAURANT","3","346","GRAHAM AVENUE","11211","7182188056","49","2010-12-28 00:00:00","P","02B","15","","","2013-09-13 01:01:06.177000000" +"41547974","SAKURA JAPANESE RESTAURANT","3","346","GRAHAM AVENUE","11211","7182188056","49","2012-01-18 00:00:00","D","10F","10","A","2012-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"41491233","BAY HOUSE ASIAN BISTRO","5","2226","HYLAN BOULEVARD","10306","7186676868","49","2010-06-16 08:01:00","D","18I","5","","","2013-09-13 01:01:06.177000000" +"41491233","BAY HOUSE ASIAN BISTRO","5","2226","HYLAN BOULEVARD","10306","7186676868","49","2011-05-26 00:00:00","D","10I","2","A","2011-05-26 00:00:00","2013-09-13 01:01:06.177000000" +"41491233","BAY HOUSE ASIAN BISTRO","5","2226","HYLAN BOULEVARD","10306","7186676868","49","2012-05-08 00:00:00","P","04L","12","","","2013-09-13 01:01:06.177000000" +"41548687","SUBWAY","1","508","COLUMBUS AVENUE","10024","2123621659","69","2012-03-21 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41491940","MALAPARTE","1","753","WASHINGTON STREET","10014","2122552122","48","2012-08-08 00:00:00","F","05C","49","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2011-06-09 00:00:00","F","08A","53","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2011-11-30 00:00:00","F","06F","43","C","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2011-11-30 00:00:00","F","08A","43","C","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2012-05-17 00:00:00","U","10B","17","B","2012-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2013-05-21 00:00:00","F","04L","70","","","2013-09-13 01:01:06.177000000" +"41479400","ROCCO'S PIZZA","2","397","BEDFORD PARK BOULEVARD","10458","7182956793","62","2013-01-30 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2010-10-20 00:00:00","D","10F","4","","","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2011-06-14 00:00:00","F","02B","37","","","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2011-06-14 00:00:00","F","05D","37","","","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2011-06-14 00:00:00","F","10A","37","","","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2013-01-17 00:00:00","F","15J","","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2011-05-18 00:00:00","F","03B","48","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2012-04-30 00:00:00","D","02G","12","A","2012-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2012-04-30 00:00:00","D","06C","12","A","2012-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-06-17 00:00:00","F","08C","40","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-07-14 00:00:00","F","06C","26","C","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2011-03-03 00:00:00","U","10F","13","B","2011-03-03 00:00:00","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2013-06-27 00:00:00","P","02G","7","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2010-06-24 14:03:00","F","04K","30","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2013-03-29 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"41493167","KOREAN B.B.Q RESTAURANT","4","136-93","37 AVENUE","11354","7183591227","52","2013-05-23 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41550400","EL MIXTECO","3","192 ","AVENUE U ","11223","7183723550","55","2013-06-13 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2011-06-15 00:00:00","F","10F","41","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2010-09-30 00:00:00","F","02G","40","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2010-09-30 00:00:00","F","06E","40","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2011-04-20 00:00:00","U","06F","15","B","2011-04-20 00:00:00","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2011-11-16 00:00:00","F","04C","42","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2011-11-16 00:00:00","F","04J","42","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2011-12-14 00:00:00","U","08A","9","B","2011-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2012-05-22 00:00:00","G","06D","48","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2012-05-22 00:00:00","G","06E","48","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2012-06-04 00:00:00","F","04K","27","C","2012-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2012-06-04 00:00:00","F","06C","27","C","2012-06-04 00:00:00","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2011-03-17 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2012-10-15 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2012-10-15 00:00:00","P","04M","26","","","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2012-12-31 00:00:00","U","04K","9","B","2012-12-31 00:00:00","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2013-07-16 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2011-08-11 00:00:00","U","02B","13","B","2011-08-11 00:00:00","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2013-01-17 00:00:00","F","04L","62","","","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2013-01-17 00:00:00","F","05D","62","","","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2013-01-17 00:00:00","F","10F","62","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2011-02-16 00:00:00","F","04L","20","C","2011-02-16 00:00:00","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2011-07-25 00:00:00","P","02B","26","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2011-07-25 00:00:00","P","04M","26","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2012-03-26 00:00:00","F","02G","37","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2012-03-26 00:00:00","F","10H","37","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2012-09-12 00:00:00","F","10F","12","","","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2010-08-30 00:00:00","U","04K","23","","","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2010-08-30 00:00:00","U","06C","23","","","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2010-08-30 00:00:00","U","10B","23","","","2013-09-13 01:01:06.177000000" +"41551883","OTTOMANELLI N.Y. GRILL","1","1424","LEXINGTON AVENUE","10128","2124266886","48","2011-07-28 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41552160","NAGOYA GOURMET","4","25-73","FRANCIS LEWIS BOULEVARD","11358","7182810188","49","2012-04-05 00:00:00","D","10F","10","A","2012-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2011-03-10 00:00:00","F","04L","53","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2011-03-10 00:00:00","F","06F","53","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2011-04-27 00:00:00","D","06C","11","A","2011-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2011-04-27 00:00:00","D","10H","11","A","2011-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2013-01-03 00:00:00","U","02G","19","B","2013-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2013-01-03 00:00:00","U","08A","19","B","2013-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2013-01-03 00:00:00","U","09B","19","B","2013-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2013-07-29 00:00:00","P","04L","7","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2013-07-29 00:00:00","P","10F","7","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2010-10-28 00:00:00","P","04M","19","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2010-10-28 00:00:00","P","06E","19","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2011-10-06 00:00:00","P","04M","22","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2013-02-14 00:00:00","F","06C","28","","","2013-09-13 01:01:06.177000000" +"41552497","OLD COUNTRY DELI & RESTAURANT","4","52-03","METROPOLITAN AVENUE","11385","7183661400","03","2011-08-11 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41552497","OLD COUNTRY DELI & RESTAURANT","4","52-03","METROPOLITAN AVENUE","11385","7183661400","03","2011-08-11 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2010-06-11 07:58:00","U","08A","25","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2010-06-11 07:58:00","U","18I","25","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2011-03-11 00:00:00","P","06C","27","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2011-03-31 00:00:00","U","09C","26","B","2011-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2011-10-05 00:00:00","F","02B","40","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2012-04-24 00:00:00","P","04K","22","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2012-04-24 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2012-06-07 00:00:00","D","10B","7","A","2012-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41495058","GOLDEN FOREST CHINESE RESTAURANT","3","4915","8 AVENUE","11220","7186861633","20","2010-06-09 13:05:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41495058","GOLDEN FOREST CHINESE RESTAURANT","3","4915","8 AVENUE","11220","7186861633","20","2010-06-09 13:05:00","F","18I","49","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2011-11-03 00:00:00","U","06A","13","B","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2012-10-25 00:00:00","F","09B","36","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2013-02-13 00:00:00","F","08A","25","C","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41536872","NEW TOKYO SUSHI","4","162-16 ","UNION TURNPIKE ","11366","9172516359","49","2011-05-26 00:00:00","P","04C","15","","","2013-09-13 01:01:06.177000000" +"41536872","NEW TOKYO SUSHI","4","162-16 ","UNION TURNPIKE ","11366","9172516359","49","2011-05-26 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41553012","SAKE JAPANESE RESTAURANT","3","2347","86 STREET","11214","7182656288","49","2011-06-02 00:00:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"41553012","SAKE JAPANESE RESTAURANT","3","2347","86 STREET","11214","7182656288","49","2011-06-02 00:00:00","F","04H","36","","","2013-09-13 01:01:06.177000000" +"41553012","SAKE JAPANESE RESTAURANT","3","2347","86 STREET","11214","7182656288","49","2011-06-02 00:00:00","F","99B","36","","","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2012-01-26 00:00:00","E","16B","","","","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2013-05-03 00:00:00","U","04L","25","","","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2013-05-03 00:00:00","U","08A","25","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2010-06-10 11:49:00","F","08A","40","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2010-12-02 00:00:00","U","02B","18","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2011-05-11 00:00:00","F","10F","63","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2013-02-20 00:00:00","P","06F","12","","","2013-09-13 01:01:06.177000000" +"41537949","LZ SUSHI","1","355 ","7 AVENUE ","10001","2128681388","49","2010-11-01 00:00:00","P","10H","17","","","2013-09-13 01:01:06.177000000" +"41537949","LZ SUSHI","1","355 ","7 AVENUE ","10001","2128681388","49","2011-02-25 00:00:00","U","10F","10","B","2011-02-25 00:00:00","2013-09-13 01:01:06.177000000" +"41537949","LZ SUSHI","1","355 ","7 AVENUE ","10001","2128681388","49","2011-08-31 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"41537949","LZ SUSHI","1","355 ","7 AVENUE ","10001","2128681388","49","2011-10-04 00:00:00","U","09B","4","B","2011-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41537949","LZ SUSHI","1","355 ","7 AVENUE ","10001","2128681388","49","2012-01-17 00:00:00","D","99B","13","A","2012-01-17 00:00:00","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2011-01-11 00:00:00","D","04L","11","","","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2011-05-04 00:00:00","P","04C","27","","","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2011-06-21 00:00:00","F","04A","37","C","2011-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2012-02-27 00:00:00","U","04L","16","B","2012-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2011-07-01 00:00:00","U","04L","17","B","2011-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2013-04-13 00:00:00","P","06D","27","","","2013-09-13 01:01:06.177000000" +"41476813","GAN DA SUSHI","4","80-08","SURREY PLACE","11432","7183801818","49","2010-10-05 00:00:00","P","08C","20","","","2013-09-13 01:01:06.177000000" +"41476813","GAN DA SUSHI","4","80-08","SURREY PLACE","11432","7183801818","49","2010-11-18 00:00:00","C","04L","10","A","2010-11-18 00:00:00","2013-09-13 01:01:06.177000000" +"41476813","GAN DA SUSHI","4","80-08","SURREY PLACE","11432","7183801818","49","2011-04-06 00:00:00","D","09C","13","A","2011-04-06 00:00:00","2013-09-13 01:01:06.177000000" +"41476813","GAN DA SUSHI","4","80-08","SURREY PLACE","11432","7183801818","49","2011-04-06 00:00:00","D","10F","13","A","2011-04-06 00:00:00","2013-09-13 01:01:06.177000000" +"41476813","GAN DA SUSHI","4","80-08","SURREY PLACE","11432","7183801818","49","2013-03-20 00:00:00","P","04J","26","","","2013-09-13 01:01:06.177000000" +"41476813","GAN DA SUSHI","4","80-08","SURREY PLACE","11432","7183801818","49","2013-03-20 00:00:00","P","05D","26","","","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2011-02-22 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2011-03-28 00:00:00","U","02H","11","B","2011-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2011-11-03 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2011-11-17 00:00:00","D","10F","9","A","2011-11-17 00:00:00","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2012-03-26 00:00:00","F","02B","22","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2011-02-26 00:00:00","U","06E","27","B","2011-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2011-09-01 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-01-27 00:00:00","F","02G","39","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-06-27 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-07-10 00:00:00","D","10F","6","A","2012-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-11-26 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2013-06-07 00:00:00","P","04M","24","","","2013-09-13 01:01:06.177000000" +"41488338","388 CAFE & DELI","1","1-3 ","ELDRIDGE STREET ","10002","2122191318","20","2011-10-11 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41491426","IZUMI JAPANESE RESTAURANT","1","139","WEST 28 STREET","10001","2122731169","49","2011-06-30 00:00:00","U","02G","18","B","2011-06-30 00:00:00","2013-09-13 01:01:06.177000000" +"41554341","SAKURA TOKYO","3","604 ","NOSTRAND AVENUE ","11216","7187568787","49","2011-01-19 00:00:00","D","10B","10","","","2013-09-13 01:01:06.177000000" +"41554341","SAKURA TOKYO","3","604 ","NOSTRAND AVENUE ","11216","7187568787","49","2012-03-26 00:00:00","D","10D","13","A","2012-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2013-08-13 00:00:00","P","02B","25","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2011-03-10 00:00:00","U","10F","19","B","2011-03-10 00:00:00","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2011-12-16 00:00:00","D","10F","9","A","2011-12-16 00:00:00","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2012-06-06 00:00:00","F","02G","44","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2012-06-06 00:00:00","F","06E","44","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2012-06-06 00:00:00","F","10H","44","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2012-07-10 00:00:00","U","04L","18","B","2012-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2012-07-10 00:00:00","U","04N","18","B","2012-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2012-07-10 00:00:00","U","08C","18","B","2012-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2013-08-09 00:00:00","F","10F","34","","","2013-09-13 01:01:06.177000000" +"41538666","PICCOLO CAFE","1","274","WEST 40 STREET","10018","2123020143","14","2011-12-28 00:00:00","F","08A","49","C","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41488338","388 CAFE & DELI","1","1-3 ","ELDRIDGE STREET ","10002","2122191318","20","2011-10-11 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2011-06-14 00:00:00","F","06E","37","","","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2013-03-09 00:00:00","F","08A","17","","","2013-09-13 01:01:06.177000000" +"41482939","NUEVO SABOR RESTAURANT","1","4032","10 AVENUE","10034","2125671515","53","2011-06-09 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41482939","NUEVO SABOR RESTAURANT","1","4032","10 AVENUE","10034","2125671515","53","2011-06-09 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41482939","NUEVO SABOR RESTAURANT","1","4032","10 AVENUE","10034","2125671515","53","2011-06-09 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2011-08-18 00:00:00","F","02G","21","C","2011-08-18 00:00:00","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2010-08-18 00:00:00","U","08A","15","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2011-01-26 00:00:00","P","06A","22","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2011-01-26 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2011-12-27 00:00:00","P","02B","27","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2011-12-27 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2012-01-09 00:00:00","D","06C","7","A","2012-01-09 00:00:00","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2012-11-28 00:00:00","P","04L","11","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2010-09-22 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2010-09-22 00:00:00","P","99B","21","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2010-11-20 00:00:00","U","03C","12","B","2010-11-20 00:00:00","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2011-08-11 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2011-08-11 00:00:00","P","10B","19","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2012-04-17 00:00:00","P","04C","14","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2012-09-10 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2012-09-10 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2013-02-04 00:00:00","P","06E","8","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2010-06-24 14:03:00","F","10G","30","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2012-08-21 00:00:00","P","06E","19","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2012-09-05 00:00:00","U","04L","10","B","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2013-03-29 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"41539844","SAIGON MARKET","1","91-93","UNIVERSITY PLACE","10003","2129823691","28","2011-07-01 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41539948","TOKYO HIBACHI STEAK HOUSE & SUSHI","4","184-16","HORACE HARDING EXPRESSWAY","11365","7184632999","49","2012-09-27 00:00:00","D","10B","5","A","2012-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"41539948","TOKYO HIBACHI STEAK HOUSE & SUSHI","4","184-16","HORACE HARDING EXPRESSWAY","11365","7184632999","49","2013-04-09 00:00:00","P","06F","21","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2011-02-23 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2011-10-20 00:00:00","P","04C","25","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2011-11-01 00:00:00","U","04L","13","B","2011-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2012-06-21 00:00:00","F","04M","33","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2012-07-02 00:00:00","D","02G","11","A","2012-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2012-07-02 00:00:00","D","09B","11","A","2012-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2013-02-15 00:00:00","F","06F","24","C","2013-02-15 00:00:00","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2011-02-09 00:00:00","F","04K","10","C","2011-02-09 00:00:00","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2011-02-09 00:00:00","F","08A","10","C","2011-02-09 00:00:00","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2011-12-14 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2012-11-27 00:00:00","F","06C","42","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2011-11-03 00:00:00","F","04L","34","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2011-11-30 00:00:00","F","09A","43","C","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2012-04-19 00:00:00","F","04L","21","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2011-12-06 00:00:00","D","06A","12","A","2011-12-06 00:00:00","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2012-11-28 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2013-01-07 00:00:00","U","10B","9","B","2013-01-07 00:00:00","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2013-07-31 00:00:00","P","10F","25","","","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2012-12-31 00:00:00","U","08A","9","B","2012-12-31 00:00:00","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2013-07-16 00:00:00","F","04J","29","","","2013-09-13 01:01:06.177000000" +"41540943","ASIAN FUSION STONE","1","11","STONE STREET","10004","2127421188","05","2010-12-07 00:00:00","F","04C","49","C","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41540943","ASIAN FUSION STONE","1","11","STONE STREET","10004","2127421188","05","2010-12-07 00:00:00","F","06F","49","C","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41540943","ASIAN FUSION STONE","1","11","STONE STREET","10004","2127421188","05","2010-12-07 00:00:00","F","10F","49","C","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2010-06-03 13:54:00","F","10B","36","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2011-01-21 00:00:00","F","06F","35","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2011-02-16 00:00:00","F","02G","20","C","2011-02-16 00:00:00","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2011-09-06 00:00:00","U","04L","12","B","2011-09-06 00:00:00","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2012-03-26 00:00:00","F","02B","37","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2012-04-30 00:00:00","U","10F","21","B","2012-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2012-09-12 00:00:00","F","10B","12","","","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2010-06-09 11:06:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2010-08-30 00:00:00","U","18F","23","","","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2012-09-04 00:00:00","P","04L","12","","","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2012-09-04 00:00:00","P","06F","12","","","2013-09-13 01:01:06.177000000" +"41490694","PARRILLA INTERNATIONAL","2","3815","WHITE PLAINS ROAD","10467","7185474359","53","2011-05-20 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41490694","PARRILLA INTERNATIONAL","2","3815","WHITE PLAINS ROAD","10467","7185474359","53","2011-05-20 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41490694","PARRILLA INTERNATIONAL","2","3815","WHITE PLAINS ROAD","10467","7185474359","53","2011-05-20 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2012-03-26 00:00:00","D","10F","11","A","2012-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2012-10-09 00:00:00","P","02G","14","","","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2013-03-27 00:00:00","G","06E","53","","","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2013-03-27 00:00:00","G","10F","53","","","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2013-08-17 00:00:00","P","04J","15","","","2013-09-13 01:01:06.177000000" +"41485508","TAKAYAMA SUSHI LOUNGE","5","17","PAGE AVENUE","10309","7182278744","49","2011-07-09 00:00:00","D","10D","13","A","2011-07-09 00:00:00","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2011-06-15 00:00:00","F","02B","41","","","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2011-06-15 00:00:00","F","04C","41","","","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2011-06-15 00:00:00","F","05F","41","","","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2011-12-07 00:00:00","D","09C","11","A","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2013-01-17 00:00:00","F","04J","62","","","2013-09-13 01:01:06.177000000" +"41491233","BAY HOUSE ASIAN BISTRO","5","2226","HYLAN BOULEVARD","10306","7186676868","49","2010-06-16 08:01:00","D","10A","5","","","2013-09-13 01:01:06.177000000" +"41491233","BAY HOUSE ASIAN BISTRO","5","2226","HYLAN BOULEVARD","10306","7186676868","49","2012-05-22 00:00:00","D","06C","13","A","2012-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2011-08-02 00:00:00","G","02G","72","","","2013-09-13 01:01:06.177000000" +"41557632","HANA JAPANESE BISTRO","3","532","NEPTUNE AVENUE","11224","7182668889","49","2011-11-30 00:00:00","P","06E","17","","","2013-09-13 01:01:06.177000000" +"41557673","RESTAURANT BATE","2","860","MELROSE AVENUE","10451","7184012283","02","2012-08-30 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41557673","RESTAURANT BATE","2","860","MELROSE AVENUE","10451","7184012283","02","2012-08-30 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2011-03-31 00:00:00","U","08A","26","B","2011-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2010-07-01 12:23:00","U","10B","9","","","2013-09-13 01:01:06.177000000" +"41491426","IZUMI JAPANESE RESTAURANT","1","139","WEST 28 STREET","10001","2122731169","49","2010-12-06 00:00:00","C","04C","11","","","2013-09-13 01:01:06.177000000" +"41491426","IZUMI JAPANESE RESTAURANT","1","139","WEST 28 STREET","10001","2122731169","49","2011-05-23 00:00:00","P","10F","24","","","2013-09-13 01:01:06.177000000" +"41491426","IZUMI JAPANESE RESTAURANT","1","139","WEST 28 STREET","10001","2122731169","49","2011-12-22 00:00:00","D","09C","12","A","2011-12-22 00:00:00","2013-09-13 01:01:06.177000000" +"41542304","JUNOON","1","27","WEST 24 STREET","10010","2124902100","44","2013-09-11 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41542304","JUNOON","1","27","WEST 24 STREET","10010","2124902100","44","2013-09-11 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41542304","JUNOON","1","27","WEST 24 STREET","10010","2124902100","44","2013-09-11 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41542304","JUNOON","1","27","WEST 24 STREET","10010","2124902100","44","2013-09-11 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2010-09-13 00:00:00","D","10F","6","A","2010-09-13 00:00:00","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2011-04-01 00:00:00","P","04L","27","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2012-03-12 00:00:00","F","04L","41","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2012-08-07 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41542939","MAGGIE BROWN","3","455","MYRTLE AVENUE","11205","7186437001","03","2011-06-09 00:00:00","G","05F","49","","","2013-09-13 01:01:06.177000000" +"41491940","MALAPARTE","1","753","WASHINGTON STREET","10014","2122552122","48","2012-08-08 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2012-04-17 00:00:00","D","08C","12","A","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2012-04-17 00:00:00","D","10H","12","A","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2013-05-31 00:00:00","F","04H","43","","","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2013-05-31 00:00:00","F","06A","43","","","2013-09-13 01:01:06.177000000" +"41495058","GOLDEN FOREST CHINESE RESTAURANT","3","4915","8 AVENUE","11220","7186861633","20","2010-06-09 13:05:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41495058","GOLDEN FOREST CHINESE RESTAURANT","3","4915","8 AVENUE","11220","7186861633","20","2010-06-09 13:05:00","F","04O","49","","","2013-09-13 01:01:06.177000000" +"41501875","COMMON","4","70-15","AUSTIN STREET","11375","7182632130","53","2012-07-18 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41558663","MR. RICE CHINESE RESTAURANT","5","5 ","WALKER STREET ","10302","7188160080","20","2012-06-06 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41502126","597 SILK ROAD CORP","3","597","MANHATTAN AVENUE","11222","7183491010","49","2012-01-25 00:00:00","P","04A","17","","","2013-09-13 01:01:06.177000000" +"41502126","597 SILK ROAD CORP","3","597","MANHATTAN AVENUE","11222","7183491010","49","2012-01-25 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"41502126","597 SILK ROAD CORP","3","597","MANHATTAN AVENUE","11222","7183491010","49","2012-01-25 00:00:00","P","10H","17","","","2013-09-13 01:01:06.177000000" +"41502126","597 SILK ROAD CORP","3","597","MANHATTAN AVENUE","11222","7183491010","49","2012-03-21 00:00:00","D","10F","2","A","2012-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2012-01-09 00:00:00","D","10F","7","A","2012-01-09 00:00:00","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2012-06-06 00:00:00","F","08A","43","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2012-11-28 00:00:00","P","04N","11","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2012-12-17 00:00:00","U","04M","20","B","2012-12-17 00:00:00","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2011-05-11 00:00:00","F","05D","63","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2011-10-12 00:00:00","D","04N","10","A","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2012-02-24 00:00:00","D","10H","4","A","2012-02-24 00:00:00","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2012-07-30 00:00:00","P","10F","13","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2011-11-30 00:00:00","D","06C","11","A","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2011-11-30 00:00:00","D","10B","11","A","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2012-04-30 00:00:00","P","06A","17","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2012-05-07 00:00:00","D","06C","9","A","2012-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2010-10-20 00:00:00","C","10F","8","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2013-03-29 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2011-02-22 00:00:00","P","09C","16","","","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2011-03-28 00:00:00","U","10B","11","B","2011-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2011-11-03 00:00:00","P","05D","24","","","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2011-11-17 00:00:00","D","10B","9","A","2011-11-17 00:00:00","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2012-03-26 00:00:00","F","02G","22","","","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2012-08-27 00:00:00","D","04L","11","A","2012-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2012-08-27 00:00:00","D","08A","11","A","2012-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2012-08-27 00:00:00","D","10F","11","A","2012-08-27 00:00:00","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2013-08-13 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2011-05-25 00:00:00","F","06A","33","","","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2011-11-14 00:00:00","D","06D","9","A","2011-11-14 00:00:00","2013-09-13 01:01:06.177000000" +"41545050","PATRICIA'S","2","1082 ","MORRIS PARK AVENUE ","10461","7184099069","48","2011-05-04 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41493167","KOREAN B.B.Q RESTAURANT","4","136-93","37 AVENUE","11354","7183591227","52","2013-05-23 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2011-03-17 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2012-10-15 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2013-07-16 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2011-02-22 00:00:00","P","10F","12","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2011-12-16 00:00:00","D","06C","9","A","2011-12-16 00:00:00","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2012-06-06 00:00:00","F","09B","44","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2012-06-06 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41480898","HANABI JAPANESE RESTAURANT","1","1450","2 AVENUE","10021","2125701888","49","2010-06-24 09:56:00","B","","","","","2013-09-13 01:01:06.177000000" +"41480898","HANABI JAPANESE RESTAURANT","1","1450","2 AVENUE","10021","2125701888","49","2012-02-01 00:00:00","D","10F","2","A","2012-02-01 00:00:00","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2011-08-24 00:00:00","F","02B","23","C","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2012-01-06 00:00:00","F","05D","15","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2012-02-15 00:00:00","D","06C","12","A","2012-02-15 00:00:00","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2013-02-22 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2012-05-22 00:00:00","U","10F","16","B","2012-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2010-07-09 09:32:00","G","04M","94","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2011-03-15 00:00:00","P","04L","15","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2011-04-11 00:00:00","D","04M","13","A","2011-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2011-08-18 00:00:00","P","04E","21","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2011-09-14 00:00:00","D","08A","10","A","2011-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2011-01-21 00:00:00","F","04H","35","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2011-01-21 00:00:00","F","08A","35","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2012-09-24 00:00:00","U","04M","12","B","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2012-09-24 00:00:00","U","06C","12","B","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2010-08-30 00:00:00","U","08A","23","","","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2011-01-11 00:00:00","P","09B","14","","","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2011-09-07 00:00:00","D","06D","5","A","2011-09-07 00:00:00","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2012-09-20 00:00:00","D","10B","7","A","2012-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2011-04-07 00:00:00","P","08C","15","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-03-08 00:00:00","P","06C","14","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-04-13 00:00:00","F","02B","19","C","2011-04-13 00:00:00","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-08-17 00:00:00","F","99B","28","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-09-12 00:00:00","O","04M","10","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-10-20 00:00:00","P","10B","19","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2012-06-08 00:00:00","F","06F","60","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2012-06-08 00:00:00","F","10F","60","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2012-07-05 00:00:00","D","08A","13","A","2012-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2012-02-06 00:00:00","F","10B","37","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2012-02-14 00:00:00","D","06C","7","A","2012-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2013-02-28 00:00:00","F","04K","20","","","2013-09-13 01:01:06.177000000" +"41488338","388 CAFE & DELI","1","1-3 ","ELDRIDGE STREET ","10002","2122191318","20","2011-10-11 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2011-09-20 00:00:00","U","04M","27","B","2011-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2011-09-20 00:00:00","U","08A","27","B","2011-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2012-04-17 00:00:00","P","06F","14","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2012-08-16 00:00:00","F","15J","","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2012-09-18 00:00:00","F","10F","9","C","2012-09-18 00:00:00","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2012-10-05 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2013-03-20 00:00:00","P","06D","15","","","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2010-06-14 12:48:00","U","06C","23","","","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2011-02-01 00:00:00","P","06D","5","","","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2011-06-10 00:00:00","F","04M","32","","","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2013-02-04 00:00:00","P","10B","8","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2011-06-13 00:00:00","P","06E","21","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2012-05-24 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2013-01-24 00:00:00","P","06D","23","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2013-01-24 00:00:00","P","10H","23","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2010-06-11 07:58:00","U","08C","25","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2011-03-31 00:00:00","U","02B","26","B","2011-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2011-10-05 00:00:00","F","09C","40","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2011-12-16 00:00:00","D","02G","9","A","2011-12-16 00:00:00","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2012-04-24 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2011-02-23 00:00:00","P","10A","16","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2011-03-12 00:00:00","U","04L","25","B","2011-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2011-03-12 00:00:00","U","06F","25","B","2011-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2011-10-20 00:00:00","P","06A","25","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2011-10-20 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2012-06-21 00:00:00","F","06C","33","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2013-07-08 00:00:00","P","10B","18","","","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2011-05-17 00:00:00","F","06C","44","","","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2013-04-13 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2012-02-14 00:00:00","U","04L","18","B","2012-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41495058","GOLDEN FOREST CHINESE RESTAURANT","3","4915","8 AVENUE","11220","7186861633","20","2010-06-09 13:05:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41495058","GOLDEN FOREST CHINESE RESTAURANT","3","4915","8 AVENUE","11220","7186861633","20","2010-06-09 13:05:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41495058","GOLDEN FOREST CHINESE RESTAURANT","3","4915","8 AVENUE","11220","7186861633","20","2010-06-09 13:05:00","F","10A","49","","","2013-09-13 01:01:06.177000000" +"41482939","NUEVO SABOR RESTAURANT","1","4032","10 AVENUE","10034","2125671515","53","2011-06-09 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41482939","NUEVO SABOR RESTAURANT","1","4032","10 AVENUE","10034","2125671515","53","2011-06-09 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2012-12-26 00:00:00","F","04L","10","","","2013-09-13 01:01:06.177000000" +"41562299","SAKE JAPANESE CUISINE","3","324-328 ","CHURCH AVENUE ","11218","7188515299","49","2011-05-12 00:00:00","D","06F","13","A","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"41562299","SAKE JAPANESE CUISINE","3","324-328 ","CHURCH AVENUE ","11218","7188515299","49","2011-05-12 00:00:00","D","10F","13","A","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"41505432","BAGEL BISTRO & DINER","5","1810","VICTORY BOULEVARD","10314","7187206919","03","2011-04-11 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41505432","BAGEL BISTRO & DINER","5","1810","VICTORY BOULEVARD","10314","7187206919","03","2011-04-11 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2010-06-10 11:49:00","F","99B","40","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2010-12-02 00:00:00","U","04L","18","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2011-05-11 00:00:00","F","08A","63","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2011-09-12 00:00:00","P","10B","16","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2012-01-17 00:00:00","F","06E","22","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2012-07-30 00:00:00","P","04K","13","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2013-02-20 00:00:00","P","04L","12","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-06-17 00:00:00","F","02G","63","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-12-01 00:00:00","F","10B","51","C","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-02-09 00:00:00","G","16B","","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-02-15 00:00:00","O","08A","10","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-09-06 00:00:00","F","02G","32","C","2012-09-06 00:00:00","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-09-06 00:00:00","F","04A","32","C","2012-09-06 00:00:00","2013-09-13 01:01:06.177000000" +"41483385","LIAM'S PUB","1","90","FULTON STREET","10038","2122670079","03","2011-06-06 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41483385","LIAM'S PUB","1","90","FULTON STREET","10038","2122670079","03","2011-06-06 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2010-10-21 00:00:00","D","10F","5","","","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2011-09-21 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2011-10-04 00:00:00","U","05H","21","B","2011-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2012-04-16 00:00:00","P","04L","27","","","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2012-04-16 00:00:00","P","06B","27","","","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2012-04-26 00:00:00","U","08A","19","B","2012-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2012-11-29 00:00:00","F","06E","28","","","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2012-11-29 00:00:00","F","10H","28","","","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2010-12-16 00:00:00","F","02G","47","","","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2010-12-16 00:00:00","F","04J","47","","","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2011-01-25 00:00:00","U","99B","11","B","2011-01-25 00:00:00","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2011-10-05 00:00:00","P","05D","19","","","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2012-05-14 00:00:00","F","06D","31","","","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2012-05-14 00:00:00","F","06E","31","","","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2012-05-31 00:00:00","U","02G","23","B","2012-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2011-09-07 00:00:00","F","10B","66","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2012-01-26 00:00:00","F","04L","60","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2012-08-09 00:00:00","D","10F","13","A","2012-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-02-05 00:00:00","F","06D","50","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-02-25 00:00:00","D","06E","10","A","2013-02-25 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-07-17 00:00:00","F","04J","32","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-07-17 00:00:00","F","06A","32","","","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2011-02-22 00:00:00","P","04H","16","","","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2011-02-22 00:00:00","P","06F","16","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2011-02-22 00:00:00","P","04L","12","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2011-03-10 00:00:00","U","02G","19","B","2011-03-10 00:00:00","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2011-03-10 00:00:00","U","03B","19","B","2011-03-10 00:00:00","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2011-10-14 00:00:00","P","06C","20","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2012-06-06 00:00:00","F","08A","44","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2012-06-06 00:00:00","F","08B","44","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2012-07-10 00:00:00","U","06E","18","B","2012-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2012-07-10 00:00:00","U","08A","18","B","2012-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2013-08-09 00:00:00","F","02G","34","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2013-08-09 00:00:00","F","06C","34","","","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2012-12-11 00:00:00","P","10F","13","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2010-08-04 00:00:00","D","08A","10","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2010-09-13 00:00:00","D","10E","6","A","2010-09-13 00:00:00","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2011-04-01 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2012-08-07 00:00:00","P","10H","25","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2012-08-16 00:00:00","D","02G","9","A","2012-08-16 00:00:00","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2011-02-10 00:00:00","F","99B","55","","","2013-09-13 01:01:06.177000000" +"41547568","HAGANE HIBACHI & JAPANESE GRILL","4","161-02","CROSSBAY BOULEVARD","11414","7188358385","49","2011-03-12 00:00:00","D","10F","11","A","2011-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41547596","SUSHI TATSU","3","1185","BEDFORD AVENUE","11216","3479851198","05","2012-02-01 00:00:00","F","02B","49","C","2012-02-01 00:00:00","2013-09-13 01:01:06.177000000" +"41547596","SUSHI TATSU","3","1185","BEDFORD AVENUE","11216","3479851198","05","2012-02-01 00:00:00","F","04L","49","C","2012-02-01 00:00:00","2013-09-13 01:01:06.177000000" +"41506388","BREADZONE","3","2223","86 STREET","11214","7185136404","08","2013-04-13 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41506388","BREADZONE","3","2223","86 STREET","11214","7185136404","08","2013-04-13 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41491233","BAY HOUSE ASIAN BISTRO","5","2226","HYLAN BOULEVARD","10306","7186676868","49","2012-05-22 00:00:00","D","10B","13","A","2012-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41564694","KOBE SUSHI","1","1472 ","YORK AVENUE ","10075","2129888628","49","2011-05-31 00:00:00","P","02B","23","","","2013-09-13 01:01:06.177000000" +"41564694","KOBE SUSHI","1","1472 ","YORK AVENUE ","10075","2129888628","49","2012-03-29 00:00:00","D","09B","7","A","2012-03-29 00:00:00","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2011-07-05 00:00:00","U","08A","12","B","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2013-05-21 00:00:00","F","06E","70","","","2013-09-13 01:01:06.177000000" +"41485099","KUMO JAPANESE CUISINE","3","1406","CORTELYOU ROAD","11226","7182828288","49","2012-11-28 00:00:00","P","06E","21","","","2013-09-13 01:01:06.177000000" +"41491426","IZUMI JAPANESE RESTAURANT","1","139","WEST 28 STREET","10001","2122731169","49","2011-06-30 00:00:00","U","04L","18","B","2011-06-30 00:00:00","2013-09-13 01:01:06.177000000" +"41501875","COMMON","4","70-15","AUSTIN STREET","11375","7182632130","53","2012-07-18 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41502126","597 SILK ROAD CORP","3","597","MANHATTAN AVENUE","11222","7183491010","49","2011-08-17 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41502126","597 SILK ROAD CORP","3","597","MANHATTAN AVENUE","11222","7183491010","49","2011-09-01 00:00:00","D","04A","10","A","2011-09-01 00:00:00","2013-09-13 01:01:06.177000000" +"41502126","597 SILK ROAD CORP","3","597","MANHATTAN AVENUE","11222","7183491010","49","2012-07-31 00:00:00","D","06A","5","A","2012-07-31 00:00:00","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2011-01-19 00:00:00","D","05C","7","A","2011-01-19 00:00:00","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2012-01-24 00:00:00","D","04C","9","A","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2012-01-24 00:00:00","D","10F","9","A","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2012-05-29 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2010-12-13 00:00:00","P","10B","25","","","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2011-08-11 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2011-08-20 00:00:00","D","08A","9","A","2011-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2013-05-18 00:00:00","P","04N","19","","","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2013-05-18 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41547974","SAKURA JAPANESE RESTAURANT","3","346","GRAHAM AVENUE","11211","7182188056","49","2011-02-19 00:00:00","P","06C","14","","","2013-09-13 01:01:06.177000000" +"41547974","SAKURA JAPANESE RESTAURANT","3","346","GRAHAM AVENUE","11211","7182188056","49","2011-07-30 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41547974","SAKURA JAPANESE RESTAURANT","3","346","GRAHAM AVENUE","11211","7182188056","49","2011-09-13 00:00:00","D","10F","12","A","2011-09-13 00:00:00","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2010-06-15 15:02:00","U","18G","20","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2010-09-22 00:00:00","P","09C","21","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2010-11-20 00:00:00","U","06B","12","B","2010-11-20 00:00:00","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2011-08-11 00:00:00","P","04N","19","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2011-09-20 00:00:00","U","04C","27","B","2011-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2012-04-17 00:00:00","P","10B","14","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2012-04-30 00:00:00","D","04M","10","A","2012-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2012-05-04 00:00:00","F","15I","","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2013-03-20 00:00:00","P","02G","15","","","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2011-07-07 00:00:00","F","02G","31","C","2011-07-07 00:00:00","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2011-07-07 00:00:00","F","09B","31","C","2011-07-07 00:00:00","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2011-12-05 00:00:00","D","10F","8","A","2011-12-05 00:00:00","2013-09-13 01:01:06.177000000" +"41491940","MALAPARTE","1","753","WASHINGTON STREET","10014","2122552122","48","2012-08-08 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2012-06-21 00:00:00","F","08A","33","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2013-02-15 00:00:00","F","04C","24","C","2013-02-15 00:00:00","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2011-07-07 00:00:00","P","04H","22","","","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2013-02-05 00:00:00","F","10A","34","","","2013-09-13 01:01:06.177000000" +"41485508","TAKAYAMA SUSHI LOUNGE","5","17","PAGE AVENUE","10309","7182278744","49","2012-08-20 00:00:00","P","02B","27","","","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2011-08-11 00:00:00","U","06E","13","B","2011-08-11 00:00:00","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2013-03-04 00:00:00","D","04L","11","A","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2010-09-17 00:00:00","C","20A","12","A","2010-09-17 00:00:00","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2010-08-18 00:00:00","U","02G","15","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2011-01-26 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2011-09-21 00:00:00","F","10F","23","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2012-06-06 00:00:00","F","06A","43","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2012-11-28 00:00:00","P","04M","11","","","2013-09-13 01:01:06.177000000" +"41548687","SUBWAY","1","508","COLUMBUS AVENUE","10024","2123621659","69","2012-03-21 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2011-04-19 00:00:00","F","06D","29","","","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2011-04-19 00:00:00","F","06E","29","","","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2011-04-19 00:00:00","F","10H","29","","","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2011-07-07 00:00:00","F","10D","37","C","2011-07-07 00:00:00","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2011-11-30 00:00:00","D","08A","10","A","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2011-03-22 00:00:00","E","16B","","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2011-10-05 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2012-03-12 00:00:00","P","04C","25","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2012-08-21 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"41493167","KOREAN B.B.Q RESTAURANT","4","136-93","37 AVENUE","11354","7183591227","52","2013-05-23 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41493167","KOREAN B.B.Q RESTAURANT","4","136-93","37 AVENUE","11354","7183591227","52","2013-05-23 00:00:00","F","09A","49","","","2013-09-13 01:01:06.177000000" +"41493167","KOREAN B.B.Q RESTAURANT","4","136-93","37 AVENUE","11354","7183591227","52","2013-05-23 00:00:00","F","09B","49","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2011-03-11 00:00:00","F","06E","39","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2011-09-15 00:00:00","D","04L","13","A","2011-09-15 00:00:00","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2012-03-20 00:00:00","D","06C","13","A","2012-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2012-08-08 00:00:00","F","04C","35","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2012-08-08 00:00:00","F","06E","35","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2013-02-25 00:00:00","P","04H","19","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2013-08-05 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2010-07-09 09:32:00","G","04L","94","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2012-07-23 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2012-07-23 00:00:00","F","06C","31","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2012-08-21 00:00:00","F","04L","18","C","2012-08-21 00:00:00","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2013-07-16 00:00:00","F","06E","29","","","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2013-07-16 00:00:00","F","10J","29","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2010-06-30 12:18:00","U","04O","17","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2011-02-16 00:00:00","F","02B","20","C","2011-02-16 00:00:00","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2011-01-22 00:00:00","F","04L","39","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2011-01-22 00:00:00","F","06C","39","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2011-02-14 00:00:00","U","08A","11","B","2011-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2012-01-06 00:00:00","F","04N","45","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2011-02-16 00:00:00","F","10B","20","C","2011-02-16 00:00:00","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2012-03-26 00:00:00","F","04L","37","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2012-04-30 00:00:00","U","02B","21","B","2012-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2012-04-30 00:00:00","U","06C","21","B","2012-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2012-09-24 00:00:00","U","04N","12","B","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2012-01-06 00:00:00","F","08A","45","","","2013-09-13 01:01:06.177000000" +"41568107","TAPPO Thin Crust Pizza","1","49","WEST 24 STREET","10010","2128076888","48","2012-02-27 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"41568107","TAPPO Thin Crust Pizza","1","49","WEST 24 STREET","10010","2128076888","48","2012-02-27 00:00:00","F","04N","35","","","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2011-02-17 00:00:00","U","10A","18","B","2011-02-17 00:00:00","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2011-02-17 00:00:00","U","10B","18","B","2011-02-17 00:00:00","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2011-02-17 00:00:00","U","22C","18","B","2011-02-17 00:00:00","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2011-08-31 00:00:00","D","06C","12","A","2011-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2012-01-31 00:00:00","U","04L","10","B","2012-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2012-07-05 00:00:00","P","10B","2","","","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2011-10-05 00:00:00","P","10H","19","","","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2011-10-17 00:00:00","U","04K","20","B","2011-10-17 00:00:00","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2010-08-30 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2010-06-11 07:58:00","U","04N","25","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2011-03-11 00:00:00","P","06A","27","","","2013-09-13 01:01:06.177000000" +"41550400","EL MIXTECO","3","192 ","AVENUE U ","11223","7183723550","55","2013-06-13 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2010-09-13 00:00:00","D","20B","6","A","2010-09-13 00:00:00","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2011-04-01 00:00:00","P","02B","27","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2011-10-24 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2012-03-12 00:00:00","F","02B","41","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2012-03-22 00:00:00","D","02G","12","A","2012-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"41495058","GOLDEN FOREST CHINESE RESTAURANT","3","4915","8 AVENUE","11220","7186861633","20","2010-06-09 13:05:00","F","04K","49","","","2013-09-13 01:01:06.177000000" +"41551883","OTTOMANELLI N.Y. GRILL","1","1424","LEXINGTON AVENUE","10128","2124266886","48","2011-07-28 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41505364","NEW HONG CHEONG RESTAURANT","3","143","GREENE AVENUE","11238","7188578094","20","2012-08-21 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41505364","NEW HONG CHEONG RESTAURANT","3","143","GREENE AVENUE","11238","7188578094","20","2012-08-21 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41552160","NAGOYA GOURMET","4","25-73","FRANCIS LEWIS BOULEVARD","11358","7182810188","49","2012-04-05 00:00:00","D","08C","10","A","2012-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"41552160","NAGOYA GOURMET","4","25-73","FRANCIS LEWIS BOULEVARD","11358","7182810188","49","2012-10-02 00:00:00","D","04L","11","A","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41552160","NAGOYA GOURMET","4","25-73","FRANCIS LEWIS BOULEVARD","11358","7182810188","49","2012-10-02 00:00:00","D","04N","11","A","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41552160","NAGOYA GOURMET","4","25-73","FRANCIS LEWIS BOULEVARD","11358","7182810188","49","2012-10-02 00:00:00","D","08A","11","A","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41502106","HO JING","3","5816","8 AVENUE","11220","7184393453","20","2013-01-10 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41502106","HO JING","3","5816","8 AVENUE","11220","7184393453","20","2013-01-10 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41502126","597 SILK ROAD CORP","3","597","MANHATTAN AVENUE","11222","7183491010","49","2011-08-17 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41502126","597 SILK ROAD CORP","3","597","MANHATTAN AVENUE","11222","7183491010","49","2013-07-19 00:00:00","P","05D","19","","","2013-09-13 01:01:06.177000000" +"41488338","388 CAFE & DELI","1","1-3 ","ELDRIDGE STREET ","10002","2122191318","20","2011-10-11 00:00:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2011-11-17 00:00:00","D","06E","9","A","2011-11-17 00:00:00","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2011-10-04 00:00:00","U","04M","21","B","2011-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2010-09-27 00:00:00","D","99B","9","A","2010-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2011-09-07 00:00:00","F","06E","66","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2011-09-07 00:00:00","F","10F","66","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2012-01-26 00:00:00","F","04M","60","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-02-05 00:00:00","F","02B","50","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-02-05 00:00:00","F","06F","50","","","2013-09-13 01:01:06.177000000" +"41552497","OLD COUNTRY DELI & RESTAURANT","4","52-03","METROPOLITAN AVENUE","11385","7183661400","03","2011-08-11 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41552497","OLD COUNTRY DELI & RESTAURANT","4","52-03","METROPOLITAN AVENUE","11385","7183661400","03","2011-08-11 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"41570357","PICKY EATERS RESTAURANT","3","1166","NOSTRAND AVENUE","11225","3477156432","17","2011-06-07 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2011-10-28 00:00:00","F","06C","32","","","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2013-08-13 00:00:00","P","06F","25","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2012-06-06 00:00:00","F","10E","44","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2010-07-09 09:32:00","G","08A","94","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2011-08-18 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2012-07-23 00:00:00","F","04H","31","","","2013-09-13 01:01:06.177000000" +"41553012","SAKE JAPANESE RESTAURANT","3","2347","86 STREET","11214","7182656288","49","2011-06-02 00:00:00","F","06C","36","","","2013-09-13 01:01:06.177000000" +"41553012","SAKE JAPANESE RESTAURANT","3","2347","86 STREET","11214","7182656288","49","2011-06-02 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2011-04-14 00:00:00","D","04M","11","","","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2012-04-10 00:00:00","F","04L","35","","","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2012-04-10 00:00:00","F","06F","35","","","2013-09-13 01:01:06.177000000" +"41512587","KAFF KAFE","3","5320","16 AVENUE","11204","7184360808","50","2010-07-29 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"41512587","KAFF KAFE","3","5320","16 AVENUE","11204","7184360808","50","2010-07-29 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41512587","KAFF KAFE","3","5320","16 AVENUE","11204","7184360808","50","2010-07-29 00:00:00","G","10B","49","","","2013-09-13 01:01:06.177000000" +"41512587","KAFF KAFE","3","5320","16 AVENUE","11204","7184360808","50","2010-07-29 00:00:00","G","99B","49","","","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2011-06-21 00:00:00","F","04L","37","C","2011-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2011-06-21 00:00:00","F","10F","37","C","2011-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2012-09-07 00:00:00","P","02B","25","","","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2012-09-07 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2012-09-17 00:00:00","U","06E","25","B","2012-09-17 00:00:00","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2011-01-22 00:00:00","F","02B","39","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2011-02-14 00:00:00","U","06A","11","B","2011-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2012-04-07 00:00:00","F","16B","0","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2013-01-24 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2013-01-24 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2010-06-15 15:02:00","U","04M","20","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2012-04-30 00:00:00","D","04L","10","A","2012-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2010-06-14 12:48:00","U","10G","23","","","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2010-06-14 12:48:00","U","10L","23","","","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2010-06-14 12:48:00","U","18I","23","","","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2011-02-17 00:00:00","D","06E","13","A","2011-02-17 00:00:00","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2011-07-07 00:00:00","F","06D","31","C","2011-07-07 00:00:00","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2011-04-22 00:00:00","U","10F","16","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2011-02-23 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2011-02-23 00:00:00","P","20A","16","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2011-03-12 00:00:00","U","08A","25","B","2011-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2013-02-15 00:00:00","F","04L","24","C","2013-02-15 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2011-09-01 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-01-27 00:00:00","F","06E","39","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-11-26 00:00:00","F","06E","29","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2010-12-07 00:00:00","F","10F","32","C","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2011-02-22 00:00:00","U","20F","9","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2011-08-22 00:00:00","D","06F","12","A","2011-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2011-12-27 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-04-25 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-04-25 00:00:00","P","06E","23","","","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2011-07-07 00:00:00","F","04C","37","C","2011-07-07 00:00:00","2013-09-13 01:01:06.177000000" +"41513573","EMPIRE PIZZA II","1","35","1 AVENUE","10003","2126775500","62","2013-07-08 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-03-31 00:00:00","P","06D","24","","","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-03-31 00:00:00","P","10E","24","","","2013-09-13 01:01:06.177000000" +"41505432","BAGEL BISTRO & DINER","5","1810","VICTORY BOULEVARD","10314","7187206919","03","2011-04-11 00:00:00","F","06B","49","","","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2012-09-11 00:00:00","U","04M","25","B","2012-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2012-09-11 00:00:00","U","10F","25","B","2012-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"41573430","SUSHI FUSSION","4","105-45A ","64 ROAD ","11375","7189978744","49","2011-08-04 00:00:00","U","06E","13","B","2011-08-04 00:00:00","2013-09-13 01:01:06.177000000" +"41573430","SUSHI FUSSION","4","105-45A ","64 ROAD ","11375","7189978744","49","2012-03-22 00:00:00","U","02B","20","B","2012-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"41573430","SUSHI FUSSION","4","105-45A ","64 ROAD ","11375","7189978744","49","2012-03-22 00:00:00","U","04K","20","B","2012-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2010-12-16 00:00:00","F","04L","47","","","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2012-05-31 00:00:00","U","04C","23","B","2012-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2011-02-25 00:00:00","U","10B","19","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2011-12-30 00:00:00","D","10B","10","A","2011-12-30 00:00:00","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2012-05-15 00:00:00","F","06C","17","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2012-11-27 00:00:00","F","04K","42","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2012-12-18 00:00:00","F","08A","23","C","2012-12-18 00:00:00","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2013-05-28 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41491426","IZUMI JAPANESE RESTAURANT","1","139","WEST 28 STREET","10001","2122731169","49","2011-05-23 00:00:00","P","04H","24","","","2013-09-13 01:01:06.177000000" +"41491426","IZUMI JAPANESE RESTAURANT","1","139","WEST 28 STREET","10001","2122731169","49","2011-05-23 00:00:00","P","06C","24","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2010-08-26 00:00:00","P","04N","15","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2011-07-27 00:00:00","P","10F","27","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2012-10-10 00:00:00","F","06C","40","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2013-04-22 00:00:00","P","04L","16","","","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2011-10-04 00:00:00","U","06A","21","B","2011-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2012-11-29 00:00:00","F","03A","28","","","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2012-12-20 00:00:00","F","06C","20","C","2012-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2011-05-11 00:00:00","D","02G","10","A","2011-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2012-03-22 00:00:00","D","06D","12","A","2012-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"41491426","IZUMI JAPANESE RESTAURANT","1","139","WEST 28 STREET","10001","2122731169","49","2011-05-23 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2011-09-07 00:00:00","F","04L","66","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2012-01-26 00:00:00","F","02B","60","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-02-05 00:00:00","F","04L","50","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-02-05 00:00:00","F","06A","50","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-02-05 00:00:00","F","10F","50","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-02-25 00:00:00","D","08B","10","A","2013-02-25 00:00:00","2013-09-13 01:01:06.177000000" +"41506388","BREADZONE","3","2223","86 STREET","11214","7185136404","08","2013-04-13 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41491940","MALAPARTE","1","753","WASHINGTON STREET","10014","2122552122","48","2012-08-08 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2011-05-12 00:00:00","P","08C","23","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2011-05-12 00:00:00","P","22C","23","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2012-01-07 00:00:00","F","06F","34","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2012-06-11 00:00:00","P","04C","7","","","2013-09-13 01:01:06.177000000" +"41515470","NARUTO RAMEN","3","276L ","5 AVENUE ","11215","7188321111","49","2011-09-23 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41515470","NARUTO RAMEN","3","276L ","5 AVENUE ","11215","7188321111","49","2012-01-24 00:00:00","D","06B","12","A","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-06-02 00:00:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-12-08 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"41501875","COMMON","4","70-15","AUSTIN STREET","11375","7182632130","53","2012-07-18 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41501875","COMMON","4","70-15","AUSTIN STREET","11375","7182632130","53","2012-07-18 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2010-08-27 00:00:00","P","04L","16","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-02-01 00:00:00","F","04C","33","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-03-12 00:00:00","D","08A","13","A","2011-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-07-21 00:00:00","W","02G","14","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-09-22 00:00:00","U","10F","14","B","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-03-16 00:00:00","F","10F","35","C","2011-03-16 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-09-08 00:00:00","F","06D","50","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-09-24 00:00:00","U","04N","19","B","2011-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2012-06-22 00:00:00","F","06E","23","C","2012-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-12-08 00:00:00","P","06E","26","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2012-07-23 00:00:00","U","08A","25","B","2012-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2011-08-06 00:00:00","U","10F","7","B","2011-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2012-01-09 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2012-07-05 00:00:00","F","06E","32","","","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2013-01-16 00:00:00","F","04C","25","","","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2013-01-16 00:00:00","F","04M","25","","","2013-09-13 01:01:06.177000000" +"41557632","HANA JAPANESE BISTRO","3","532","NEPTUNE AVENUE","11224","7182668889","49","2012-01-20 00:00:00","D","10F","10","A","2012-01-20 00:00:00","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2010-08-18 00:00:00","U","04L","15","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2011-03-03 00:00:00","U","06A","13","B","2011-03-03 00:00:00","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2011-09-06 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2011-12-27 00:00:00","P","10B","27","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2012-06-06 00:00:00","F","06C","43","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2012-11-28 00:00:00","P","08A","11","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2012-12-17 00:00:00","U","09B","20","B","2012-12-17 00:00:00","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2010-08-24 00:00:00","F","99B","33","","","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2012-01-04 00:00:00","F","04K","10","C","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2012-06-20 00:00:00","U","06D","16","B","2012-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2011-08-01 00:00:00","F","08A","33","","","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2012-07-03 00:00:00","F","04M","33","","","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2012-07-19 00:00:00","F","04M","34","C","2012-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2011-12-27 00:00:00","D","09B","9","A","2011-12-27 00:00:00","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2012-05-02 00:00:00","P","04K","23","","","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2012-06-11 00:00:00","D","10F","10","A","2012-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2013-08-26 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2010-06-24 14:03:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2010-09-07 00:00:00","F","06C","26","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2010-09-07 00:00:00","F","10B","26","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2011-04-26 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2011-07-26 00:00:00","F","16B","0","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2012-03-12 00:00:00","P","04H","25","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2012-09-05 00:00:00","U","04K","10","B","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2011-05-24 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2013-08-23 00:00:00","P","04H","26","","","2013-09-13 01:01:06.177000000" +"41517779","HAPPY KITCHEN","4","80-12","37 AVENUE","11372","7188031600","49","2010-08-30 00:00:00","P","99B","12","","","2013-09-13 01:01:06.177000000" +"41517779","HAPPY KITCHEN","4","80-12","37 AVENUE","11372","7188031600","49","2010-10-12 00:00:00","U","10F","19","B","2010-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2011-11-30 00:00:00","D","04L","10","A","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2012-10-15 00:00:00","P","10B","26","","","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2010-12-09 00:00:00","F","06C","28","","","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2012-07-18 00:00:00","D","02G","9","A","2012-07-18 00:00:00","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2010-07-09 09:32:00","G","02G","94","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2010-07-09 09:32:00","G","04I","94","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2010-07-13 14:30:00","O","10G","2","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2010-11-05 00:00:00","U","06C","13","B","2010-11-05 00:00:00","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2011-03-15 00:00:00","P","02B","15","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2011-04-11 00:00:00","D","08A","13","A","2011-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2012-02-06 00:00:00","F","04L","37","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2012-02-06 00:00:00","F","09C","37","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2012-08-21 00:00:00","F","02B","18","C","2012-08-21 00:00:00","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2012-08-21 00:00:00","F","06C","18","C","2012-08-21 00:00:00","2013-09-13 01:01:06.177000000" +"41558663","MR. RICE CHINESE RESTAURANT","5","5 ","WALKER STREET ","10302","7188160080","20","2012-06-06 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41558663","MR. RICE CHINESE RESTAURANT","5","5 ","WALKER STREET ","10302","7188160080","20","2012-06-06 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2011-01-21 00:00:00","F","04D","35","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2011-09-06 00:00:00","U","08A","12","B","2011-09-06 00:00:00","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2012-09-12 00:00:00","F","04L","12","","","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2010-08-30 00:00:00","U","02G","23","","","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2011-01-11 00:00:00","P","04C","14","","","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2012-09-20 00:00:00","D","06A","7","A","2012-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2011-01-22 00:00:00","F","04M","39","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2011-08-04 00:00:00","U","04C","12","B","2011-08-04 00:00:00","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2012-06-28 00:00:00","P","10A","23","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2012-07-24 00:00:00","F","02G","25","C","2012-07-24 00:00:00","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2013-02-12 00:00:00","D","09C","11","A","2013-02-12 00:00:00","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2013-02-12 00:00:00","D","10F","11","A","2013-02-12 00:00:00","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2011-03-31 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2012-05-10 00:00:00","U","04C","7","B","2012-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2012-09-24 00:00:00","F","04J","24","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2013-05-10 00:00:00","P","04L","20","","","2013-09-13 01:01:06.177000000" +"41576416","JUKAI","1","237","EAST 53 STREET","10022","2125889788","49","2011-04-04 00:00:00","E","05H","30","","","2013-09-13 01:01:06.177000000" +"41576416","JUKAI","1","237","EAST 53 STREET","10022","2125889788","49","2011-07-05 00:00:00","P","10F","24","","","2013-09-13 01:01:06.177000000" +"41576416","JUKAI","1","237","EAST 53 STREET","10022","2125889788","49","2012-09-05 00:00:00","D","06C","7","A","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41576416","JUKAI","1","237","EAST 53 STREET","10022","2125889788","49","2012-09-05 00:00:00","D","10F","7","A","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2013-05-10 00:00:00","P","06F","20","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2010-06-11 07:58:00","U","10G","25","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2011-03-11 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2012-06-07 00:00:00","D","06E","7","A","2012-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"41559465","THE COUNTRY KITCHEN","3","1991","ATLANTIC AVENUE","11233","7184980200","03","2012-08-31 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2011-02-17 00:00:00","U","04C","18","B","2011-02-17 00:00:00","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2011-06-15 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2011-06-15 00:00:00","P","99B","18","","","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2013-02-13 00:00:00","P","02B","20","","","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2013-08-21 00:00:00","F","02B","30","","","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2012-05-03 00:00:00","D","04L","10","A","2012-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2012-10-03 00:00:00","D","08A","11","A","2012-10-03 00:00:00","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2013-03-28 00:00:00","G","02B","68","","","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2013-04-01 00:00:00","O","10F","4","P","2013-04-01 00:00:00","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-01-20 00:00:00","D","08C","11","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-06-28 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-09-08 00:00:00","F","15K","","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-11-01 00:00:00","P","04M","16","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-11-17 00:00:00","U","04K","5","B","2011-11-17 00:00:00","2013-09-13 01:01:06.177000000" +"41505364","NEW HONG CHEONG RESTAURANT","3","143","GREENE AVENUE","11238","7188578094","20","2012-08-21 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41505432","BAGEL BISTRO & DINER","5","1810","VICTORY BOULEVARD","10314","7187206919","03","2011-04-11 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2010-06-10 11:49:00","F","05E","40","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2011-05-26 00:00:00","U","08A","9","B","2011-05-26 00:00:00","2013-09-13 01:01:06.177000000" +"41512587","KAFF KAFE","3","5320","16 AVENUE","11204","7184360808","50","2010-07-29 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2011-09-21 00:00:00","P","04M","17","","","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2012-11-29 00:00:00","F","10D","28","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2012-02-09 00:00:00","U","02G","23","B","2012-02-09 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2012-02-09 00:00:00","U","06C","23","B","2012-02-09 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2012-02-09 00:00:00","U","10H","23","B","2012-02-09 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2012-08-09 00:00:00","D","02G","13","A","2012-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-02-05 00:00:00","F","08B","50","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-07-17 00:00:00","F","02B","32","","","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2010-09-27 00:00:00","P","22C","15","","","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2010-12-22 00:00:00","F","02B","21","C","2010-12-22 00:00:00","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2011-02-09 00:00:00","F","02G","25","","","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2011-02-09 00:00:00","F","03B","25","","","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2011-04-22 00:00:00","U","02B","16","","","2013-09-13 01:01:06.177000000" +"41512992","BAY RIDGE DINER","3","8017","5 AVENUE","11209","7189210266","03","2013-06-13 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-09-09 00:00:00","W","04M","13","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-09-09 00:00:00","W","08A","13","","","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2012-04-16 00:00:00","F","02B","16","C","2012-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2012-04-16 00:00:00","F","10A","16","C","2012-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41506388","BREADZONE","3","2223","86 STREET","11214","7185136404","08","2013-04-13 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41506388","BREADZONE","3","2223","86 STREET","11214","7185136404","08","2013-04-13 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2011-08-22 00:00:00","D","06D","12","A","2011-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-05-08 00:00:00","D","08C","12","A","2012-05-08 00:00:00","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2012-06-06 00:00:00","F","04N","44","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2012-06-06 00:00:00","F","08C","44","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2012-07-10 00:00:00","U","04M","18","B","2012-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2013-01-17 00:00:00","P","04C","18","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2013-08-09 00:00:00","F","10E","34","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2010-09-22 00:00:00","F","04N","34","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2010-09-22 00:00:00","F","06C","34","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2011-02-08 00:00:00","U","04L","13","B","2011-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2011-09-07 00:00:00","P","09C","26","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2011-09-21 00:00:00","F","04L","23","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2012-01-20 00:00:00","D","06D","12","A","2012-01-20 00:00:00","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2013-01-29 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2013-01-29 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2010-06-15 15:02:00","U","04I","20","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2010-06-15 15:02:00","U","08A","20","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2010-09-22 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2011-08-11 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2011-09-20 00:00:00","U","02G","27","B","2011-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2013-03-20 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2011-02-17 00:00:00","D","10F","13","A","2011-02-17 00:00:00","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2011-07-07 00:00:00","F","06A","31","C","2011-07-07 00:00:00","2013-09-13 01:01:06.177000000" +"41512587","KAFF KAFE","3","5320","16 AVENUE","11204","7184360808","50","2010-07-29 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41512587","KAFF KAFE","3","5320","16 AVENUE","11204","7184360808","50","2010-07-29 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2010-09-17 00:00:00","C","08C","12","A","2010-09-17 00:00:00","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2011-07-07 00:00:00","F","02G","37","C","2011-07-07 00:00:00","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2011-07-07 00:00:00","F","99B","37","C","2011-07-07 00:00:00","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2012-02-14 00:00:00","F","16A","","","","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2012-02-14 00:00:00","U","04A","18","B","2012-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2012-03-27 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2011-03-12 00:00:00","U","10B","25","B","2011-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2011-10-20 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2012-06-21 00:00:00","F","02B","33","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2013-02-15 00:00:00","F","06E","24","C","2013-02-15 00:00:00","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2012-08-30 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2011-01-11 00:00:00","U","04C","24","B","2011-01-11 00:00:00","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2011-01-11 00:00:00","U","04M","24","B","2011-01-11 00:00:00","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2011-01-11 00:00:00","U","08A","24","B","2011-01-11 00:00:00","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2012-03-01 00:00:00","P","06E","23","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2012-03-14 00:00:00","U","08A","17","B","2012-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2012-10-10 00:00:00","F","04M","40","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2012-10-10 00:00:00","F","08A","40","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2012-11-15 00:00:00","U","08A","12","B","2012-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2013-05-15 00:00:00","G","08C","44","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2010-12-07 00:00:00","F","06F","32","C","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-01-10 00:00:00","G","02B","59","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-01-10 00:00:00","G","04M","59","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-01-10 00:00:00","G","08C","59","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-01-10 00:00:00","G","10B","59","","","2013-09-13 01:01:06.177000000" +"41579281","MANOR SUSHI","5","878","MANOR ROAD","10314","7183702208","49","2012-07-10 00:00:00","D","10F","12","A","2012-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41524648","SICHUAN RESTAURANT","4","98-108","QUEENS BOULEVARD","11374","7182688833","20","2011-09-20 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2010-09-30 00:00:00","F","02G","56","","","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2011-03-31 00:00:00","F","04C","35","C","2011-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2011-07-18 00:00:00","P","06A","15","","","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2011-09-06 00:00:00","D","08A","12","A","2011-09-06 00:00:00","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2012-02-23 00:00:00","F","04H","22","","","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2012-08-09 00:00:00","P","06D","0","","","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2012-08-23 00:00:00","U","06D","15","B","2012-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2013-05-09 00:00:00","F","08A","26","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2010-08-23 00:00:00","F","10B","26","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2012-01-07 00:00:00","F","06D","34","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2012-02-25 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41562299","SAKE JAPANESE CUISINE","3","324-328 ","CHURCH AVENUE ","11218","7188515299","49","2012-05-09 00:00:00","D","06F","7","A","2012-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41515470","NARUTO RAMEN","3","276L ","5 AVENUE ","11215","7188321111","49","2010-09-09 00:00:00","D","22C","3","","","2013-09-13 01:01:06.177000000" +"41515470","NARUTO RAMEN","3","276L ","5 AVENUE ","11215","7188321111","49","2011-03-14 00:00:00","P","06E","16","","","2013-09-13 01:01:06.177000000" +"41515470","NARUTO RAMEN","3","276L ","5 AVENUE ","11215","7188321111","49","2011-04-11 00:00:00","D","02G","12","A","2011-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41515470","NARUTO RAMEN","3","276L ","5 AVENUE ","11215","7188321111","49","2011-10-04 00:00:00","D","99B","12","A","2011-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-02-01 00:00:00","F","08A","33","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-02-01 00:00:00","F","10F","33","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-03-12 00:00:00","D","04M","13","A","2011-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-03-12 00:00:00","D","10F","13","A","2011-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-09-22 00:00:00","U","99B","14","B","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41525472","CROSS BAY DELI & GRILL","4","105-10","CROSSBAY BOULEVARD","11417","7188488887","27","2010-09-28 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41525472","CROSS BAY DELI & GRILL","4","105-10","CROSSBAY BOULEVARD","11417","7188488887","27","2010-09-28 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-06-17 00:00:00","F","02B","63","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-06-17 00:00:00","F","04L","63","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-11-15 00:00:00","F","04M","36","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-11-15 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-11-15 00:00:00","F","10I","36","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-12-01 00:00:00","F","04L","51","C","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-12-01 00:00:00","F","06C","51","C","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-02-09 00:00:00","G","02B","83","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-02-09 00:00:00","G","04L","83","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-02-09 00:00:00","G","06F","83","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-02-13 00:00:00","W","08A","10","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2010-08-26 00:00:00","P","06D","15","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2010-08-26 00:00:00","P","08A","15","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2011-08-23 00:00:00","U","08A","8","B","2011-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2013-05-15 00:00:00","G","04L","44","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2013-05-15 00:00:00","G","10F","44","","","2013-09-13 01:01:06.177000000" +"41580949","LIANG'S GARDEN","2","320","CYPRESS AVENUE","10454","7189936541","20","2013-07-08 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41580949","LIANG'S GARDEN","2","320","CYPRESS AVENUE","10454","7189936541","20","2013-07-08 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2011-08-18 00:00:00","F","10B","50","","","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2010-12-09 00:00:00","F","09C","28","","","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2010-12-09 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2012-01-20 00:00:00","F","06F","28","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-03-16 00:00:00","F","09C","35","C","2011-03-16 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-09-08 00:00:00","F","04N","50","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-09-08 00:00:00","F","06F","50","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-09-24 00:00:00","U","10B","19","B","2011-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-12-29 00:00:00","F","99B","46","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2012-06-15 00:00:00","G","04L","50","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2012-06-15 00:00:00","G","06C","50","","","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2011-12-21 00:00:00","P","99B","3","","","2013-09-13 01:01:06.177000000" +"41525547","TARO SUSHI NY INC","3","244","FLATBUSH AVENUE","11217","7183985240","49","2011-11-03 00:00:00","P","04H","21","","","2013-09-13 01:01:06.177000000" +"41525547","TARO SUSHI NY INC","3","244","FLATBUSH AVENUE","11217","7183985240","49","2011-11-30 00:00:00","U","04H","20","B","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2012-01-03 00:00:00","D","08A","12","A","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2012-12-19 00:00:00","F","02G","38","","","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2013-06-20 00:00:00","F","10B","30","","","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2010-12-16 00:00:00","F","04A","47","","","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2012-05-14 00:00:00","F","10F","31","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2011-08-31 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2012-03-13 00:00:00","D","08A","12","A","2012-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2012-01-04 00:00:00","F","08A","10","C","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2012-06-20 00:00:00","U","06B","16","B","2012-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2011-07-15 00:00:00","U","10F","12","B","2011-07-15 00:00:00","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2012-08-29 00:00:00","D","10B","9","A","2012-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2013-02-05 00:00:00","P","04L","16","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2010-08-23 00:00:00","F","04L","26","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2010-08-23 00:00:00","F","04N","26","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2010-12-07 00:00:00","U","04M","10","B","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2013-03-02 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2013-03-02 00:00:00","F","09A","29","","","2013-09-13 01:01:06.177000000" +"41515470","NARUTO RAMEN","3","276L ","5 AVENUE ","11215","7188321111","49","2011-03-14 00:00:00","P","09B","16","","","2013-09-13 01:01:06.177000000" +"41515470","NARUTO RAMEN","3","276L ","5 AVENUE ","11215","7188321111","49","2011-03-14 00:00:00","P","10H","16","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2010-08-30 00:00:00","P","04H","21","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2011-04-01 00:00:00","P","10E","27","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2011-10-24 00:00:00","P","04M","26","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2011-10-24 00:00:00","P","06D","26","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2012-03-12 00:00:00","F","04C","41","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2012-03-12 00:00:00","F","06A","41","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2012-03-12 00:00:00","F","10D","41","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2012-08-07 00:00:00","P","04J","25","","","2013-09-13 01:01:06.177000000" +"41517779","HAPPY KITCHEN","4","80-12","37 AVENUE","11372","7188031600","49","2010-08-30 00:00:00","P","06C","12","","","2013-09-13 01:01:06.177000000" +"41517779","HAPPY KITCHEN","4","80-12","37 AVENUE","11372","7188031600","49","2010-10-12 00:00:00","U","02A","19","B","2010-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41515470","NARUTO RAMEN","3","276L ","5 AVENUE ","11215","7188321111","49","2011-04-11 00:00:00","D","06C","12","A","2011-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41515470","NARUTO RAMEN","3","276L ","5 AVENUE ","11215","7188321111","49","2011-09-23 00:00:00","P","06C","24","","","2013-09-13 01:01:06.177000000" +"41515470","NARUTO RAMEN","3","276L ","5 AVENUE ","11215","7188321111","49","2011-09-23 00:00:00","P","09B","24","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-03-12 00:00:00","D","20E","13","A","2011-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2012-02-22 00:00:00","D","10F","10","A","2012-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"41501875","COMMON","4","70-15","AUSTIN STREET","11375","7182632130","53","2012-07-18 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41501875","COMMON","4","70-15","AUSTIN STREET","11375","7182632130","53","2012-07-18 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2011-06-28 00:00:00","G","02B","59","","","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2011-06-28 00:00:00","G","04M","59","","","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2013-03-28 00:00:00","G","04L","33","","","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2011-09-27 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2013-05-06 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41563975","MCGEE'S TAVERN","2","3809","EAST TREMONT AVENUE","10465","7184092911","03","2011-12-01 00:00:00","F","10B","49","C","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41502106","HO JING","3","5816","8 AVENUE","11220","7184393453","20","2013-01-10 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2010-08-27 00:00:00","D","22C","","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-03-16 00:00:00","F","08A","35","C","2011-03-16 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-09-24 00:00:00","U","02G","19","B","2011-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-09-24 00:00:00","U","08A","19","B","2011-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2012-06-15 00:00:00","G","02B","50","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2012-06-15 00:00:00","G","04N","50","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2012-06-15 00:00:00","G","08C","50","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2012-06-19 00:00:00","O","08A","10","P","2012-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2012-12-24 00:00:00","D","10F","10","A","2012-12-24 00:00:00","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2011-09-01 00:00:00","U","02G","20","","","2013-09-13 01:01:06.177000000" +"41528823","BAYRIDGE SUSHI","3","6914 ","3 AVENUE ","11209","7184910662","49","2011-02-07 00:00:00","P","10H","25","","","2013-09-13 01:01:06.177000000" +"41528823","BAYRIDGE SUSHI","3","6914 ","3 AVENUE ","11209","7184910662","49","2011-03-09 00:00:00","U","02B","11","B","2011-03-09 00:00:00","2013-09-13 01:01:06.177000000" +"41528823","BAYRIDGE SUSHI","3","6914 ","3 AVENUE ","11209","7184910662","49","2011-03-09 00:00:00","U","10A","11","B","2011-03-09 00:00:00","2013-09-13 01:01:06.177000000" +"41528823","BAYRIDGE SUSHI","3","6914 ","3 AVENUE ","11209","7184910662","49","2011-03-09 00:00:00","U","10B","11","B","2011-03-09 00:00:00","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2012-06-13 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2012-06-13 00:00:00","P","06C","20","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2012-09-24 00:00:00","F","02B","24","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2013-05-10 00:00:00","P","04M","20","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2013-06-11 00:00:00","G","02G","63","","","2013-09-13 01:01:06.177000000" +"41528823","BAYRIDGE SUSHI","3","6914 ","3 AVENUE ","11209","7184910662","49","2011-09-08 00:00:00","D","10F","12","A","2011-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41528823","BAYRIDGE SUSHI","3","6914 ","3 AVENUE ","11209","7184910662","49","2013-04-20 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41517779","HAPPY KITCHEN","4","80-12","37 AVENUE","11372","7188031600","49","2010-10-12 00:00:00","U","02G","19","B","2010-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41517779","HAPPY KITCHEN","4","80-12","37 AVENUE","11372","7188031600","49","2011-11-04 00:00:00","P","10A","16","","","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2011-05-25 00:00:00","E","04M","35","","","2013-09-13 01:01:06.177000000" +"41512587","KAFF KAFE","3","5320","16 AVENUE","11204","7184360808","50","2010-07-29 00:00:00","G","04J","49","","","2013-09-13 01:01:06.177000000" +"41512587","KAFF KAFE","3","5320","16 AVENUE","11204","7184360808","50","2010-07-29 00:00:00","G","18A","49","","","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2011-08-04 00:00:00","P","10H","15","","","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2011-08-29 00:00:00","U","06D","11","B","2011-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2012-02-21 00:00:00","D","08A","13","A","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2013-08-20 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41529617","SHOBU SUSHI & GRILL","3","9427","5 AVENUE","11209","7188338345","49","2010-11-04 00:00:00","P","06C","15","","","2013-09-13 01:01:06.177000000" +"41529617","SHOBU SUSHI & GRILL","3","9427","5 AVENUE","11209","7188338345","49","2010-11-04 00:00:00","P","10B","15","","","2013-09-13 01:01:06.177000000" +"41529617","SHOBU SUSHI & GRILL","3","9427","5 AVENUE","11209","7188338345","49","2012-05-29 00:00:00","P","06A","27","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2010-11-05 00:00:00","U","04C","13","B","2010-11-05 00:00:00","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2011-04-11 00:00:00","D","04L","13","A","2011-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2011-04-11 00:00:00","D","10F","13","A","2011-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2011-08-18 00:00:00","P","10I","21","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2013-02-28 00:00:00","F","02B","20","","","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2011-04-11 00:00:00","D","10B","12","A","2011-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2012-04-17 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2012-04-17 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2013-03-28 00:00:00","G","04L","68","","","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2010-09-27 00:00:00","P","05D","15","","","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2010-09-27 00:00:00","P","06A","15","","","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2010-12-22 00:00:00","F","04C","21","C","2010-12-22 00:00:00","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2012-08-30 00:00:00","P","10J","26","","","2013-09-13 01:01:06.177000000" +"41512992","BAY RIDGE DINER","3","8017","5 AVENUE","11209","7189210266","03","2013-06-13 00:00:00","F","09B","49","","","2013-09-13 01:01:06.177000000" +"41583426","LA SABROSURA","4","33-20","30 AVENUE","11103","7187915035","53","2011-06-13 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41583426","LA SABROSURA","4","33-20","30 AVENUE","11103","7187915035","53","2011-06-13 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2011-01-22 00:00:00","F","08A","39","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2011-08-04 00:00:00","U","06C","12","B","2011-08-04 00:00:00","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2012-01-06 00:00:00","F","04L","45","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2012-02-04 00:00:00","F","04L","11","C","2012-02-04 00:00:00","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2012-02-04 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2012-06-28 00:00:00","P","04J","23","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2012-06-28 00:00:00","P","09C","23","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2012-07-24 00:00:00","F","06B","25","C","2012-07-24 00:00:00","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2013-03-28 00:00:00","G","06D","68","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-01-20 00:00:00","D","22C","11","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-07-26 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-11-17 00:00:00","U","04M","5","B","2011-11-17 00:00:00","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2012-06-01 00:00:00","G","06E","64","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2010-12-07 00:00:00","F","04H","32","C","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2010-12-07 00:00:00","F","06E","32","C","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-01-10 00:00:00","G","06C","59","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-01-12 00:00:00","W","04M","12","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-04-25 00:00:00","P","04C","23","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-05-08 00:00:00","D","04L","12","A","2012-05-08 00:00:00","2013-09-13 01:01:06.177000000" +"41566077","Q-CITY PIZZA","4","84-02 ","ROOSEVELT AVENUE ","11372","7182055478","62","2011-09-26 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2010-09-08 00:00:00","D","04M","9","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2011-04-21 00:00:00","D","04H","13","A","2011-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2011-10-17 00:00:00","U","04L","7","B","2011-10-17 00:00:00","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2013-06-11 00:00:00","G","04C","63","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2013-06-11 00:00:00","G","04J","63","","","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2011-07-07 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2013-09-10 00:00:00","P","06C","15","","","2013-09-13 01:01:06.177000000" +"41513573","EMPIRE PIZZA II","1","35","1 AVENUE","10003","2126775500","62","2013-07-08 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2011-03-29 00:00:00","U","08A","26","B","2011-03-29 00:00:00","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2011-06-07 00:00:00","P","06A","17","","","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2011-07-05 00:00:00","D","06E","13","A","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2012-09-21 00:00:00","F","08A","34","","","2013-09-13 01:01:06.177000000" +"41584962","TOTOYA","1","1144 ","1 AVENUE ","10065","2127530422","49","2012-08-02 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"41584962","TOTOYA","1","1144 ","1 AVENUE ","10065","2127530422","49","2012-09-05 00:00:00","D","10B","10","A","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2011-04-11 00:00:00","D","10F","12","A","2011-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2012-09-21 00:00:00","P","04L","11","","","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2012-10-03 00:00:00","D","04N","11","A","2012-10-03 00:00:00","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2013-03-28 00:00:00","G","08A","68","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-01-20 00:00:00","D","08A","11","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-06-27 00:00:00","U","02G","4","B","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2012-06-01 00:00:00","G","04H","64","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2012-06-04 00:00:00","W","04M","12","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2012-06-04 00:00:00","W","06C","12","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2012-06-25 00:00:00","F","02G","15","C","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2012-06-25 00:00:00","F","04H","15","C","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2012-11-15 00:00:00","P","06A","15","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2011-09-21 00:00:00","F","02G","23","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2012-01-10 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2010-08-26 00:00:00","P","10B","15","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2010-08-26 00:00:00","P","22C","15","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2011-07-27 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2011-07-27 00:00:00","P","04H","27","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2012-03-01 00:00:00","P","06F","23","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2012-03-14 00:00:00","U","06D","17","B","2012-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41567679","LITTLE TOKYO AT SEAPORT INC.","1","303 ","SOUTH STREET SEAPORT ","10038","2125871339","49","2012-05-29 00:00:00","D","06F","10","A","2012-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41567679","LITTLE TOKYO AT SEAPORT INC.","1","303 ","SOUTH STREET SEAPORT ","10038","2125871339","49","2012-05-29 00:00:00","D","10F","10","A","2012-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41505364","NEW HONG CHEONG RESTAURANT","3","143","GREENE AVENUE","11238","7188578094","20","2012-08-21 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41505432","BAGEL BISTRO & DINER","5","1810","VICTORY BOULEVARD","10314","7187206919","03","2011-04-11 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41505432","BAGEL BISTRO & DINER","5","1810","VICTORY BOULEVARD","10314","7187206919","03","2011-04-11 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41568107","TAPPO Thin Crust Pizza","1","49","WEST 24 STREET","10010","2128076888","48","2011-07-28 00:00:00","P","04C","23","","","2013-09-13 01:01:06.177000000" +"41568107","TAPPO Thin Crust Pizza","1","49","WEST 24 STREET","10010","2128076888","48","2011-08-26 00:00:00","D","02G","11","A","2011-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41568107","TAPPO Thin Crust Pizza","1","49","WEST 24 STREET","10010","2128076888","48","2012-03-05 00:00:00","F","04C","15","C","2012-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2011-05-02 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2011-09-21 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2012-04-16 00:00:00","P","10F","27","","","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2012-12-20 00:00:00","F","04L","20","C","2012-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2010-09-27 00:00:00","D","10A","9","A","2010-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2011-09-07 00:00:00","F","06D","66","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2011-09-07 00:00:00","F","10H","66","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2012-07-26 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-02-05 00:00:00","F","04K","50","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-02-05 00:00:00","F","06C","50","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2013-02-05 00:00:00","F","10B","50","","","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2011-09-03 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2011-10-04 00:00:00","F","06C","31","C","2011-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2011-11-03 00:00:00","C","10B","13","","","2013-09-13 01:01:06.177000000" +"41524218","OZEN ASIAN FUSION","1","760","AMSTERDAM AVENUE","10025","2126780300","05","2011-09-28 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2010-08-23 00:00:00","F","02B","26","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2010-12-07 00:00:00","U","04N","10","B","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2012-06-20 00:00:00","U","04M","13","B","2012-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41515470","NARUTO RAMEN","3","276L ","5 AVENUE ","11215","7188321111","49","2010-09-09 00:00:00","D","10F","3","","","2013-09-13 01:01:06.177000000" +"41515470","NARUTO RAMEN","3","276L ","5 AVENUE ","11215","7188321111","49","2012-01-24 00:00:00","D","06F","12","A","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2010-08-27 00:00:00","P","04A","16","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-02-01 00:00:00","F","09A","33","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-07-19 00:00:00","G","06E","61","","","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2010-10-14 00:00:00","E","05H","28","","","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2011-06-14 00:00:00","F","04C","37","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2010-10-25 00:00:00","D","10B","11","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-06-17 00:00:00","F","06A","40","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-12-21 00:00:00","U","05D","19","B","2011-12-21 00:00:00","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2012-05-16 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2012-05-29 00:00:00","U","02G","13","B","2012-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41506388","BREADZONE","3","2223","86 STREET","11214","7185136404","08","2013-04-13 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2013-06-14 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2013-06-14 00:00:00","P","06E","22","","","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2012-03-29 00:00:00","D","10F","11","A","2012-03-29 00:00:00","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2013-05-09 00:00:00","F","04C","26","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-02-09 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-02-09 00:00:00","P","09C","21","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-03-16 00:00:00","F","02G","35","C","2011-03-16 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-12-29 00:00:00","F","02G","46","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-12-29 00:00:00","F","04H","46","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-12-29 00:00:00","F","08A","46","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-12-29 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2012-01-12 00:00:00","U","06F","18","B","2012-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2012-06-15 00:00:00","G","10F","50","","","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2010-08-24 00:00:00","F","04J","33","","","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2011-02-08 00:00:00","F","02G","8","C","2011-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2010-10-12 00:00:00","C","06C","5","A","2010-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2011-05-24 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2011-05-24 00:00:00","P","06C","18","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2010-09-22 00:00:00","F","08A","34","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2012-06-13 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2012-06-13 00:00:00","F","08B","32","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2013-01-29 00:00:00","P","06A","19","","","2013-09-13 01:01:06.177000000" +"41533145","SAL'S PIZZERIA","3","119","WYCKOFF AVENUE","11237","7183865299","62","2013-07-10 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2011-12-30 00:00:00","P","04L","27","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2012-01-10 00:00:00","F","08A","22","C","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2013-02-20 00:00:00","F","06E","19","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2013-08-27 00:00:00","F","04N","29","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2013-08-27 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41525472","CROSS BAY DELI & GRILL","4","105-10","CROSSBAY BOULEVARD","11417","7188488887","27","2010-09-28 00:00:00","F","10I","49","","","2013-09-13 01:01:06.177000000" +"41525547","TARO SUSHI NY INC","3","244","FLATBUSH AVENUE","11217","7183985240","49","2010-11-19 00:00:00","C","02B","11","A","2010-11-19 00:00:00","2013-09-13 01:01:06.177000000" +"41525547","TARO SUSHI NY INC","3","244","FLATBUSH AVENUE","11217","7183985240","49","2011-11-03 00:00:00","P","04C","21","","","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2012-02-16 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2012-02-16 00:00:00","P","04C","17","","","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2012-03-19 00:00:00","D","09C","10","A","2012-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41517779","HAPPY KITCHEN","4","80-12","37 AVENUE","11372","7188031600","49","2010-08-30 00:00:00","P","02G","12","","","2013-09-13 01:01:06.177000000" +"41517779","HAPPY KITCHEN","4","80-12","37 AVENUE","11372","7188031600","49","2011-11-17 00:00:00","D","02B","9","A","2011-11-17 00:00:00","2013-09-13 01:01:06.177000000" +"41517779","HAPPY KITCHEN","4","80-12","37 AVENUE","11372","7188031600","49","2012-05-16 00:00:00","D","10F","4","A","2012-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"41533145","SAL'S PIZZERIA","3","119","WYCKOFF AVENUE","11237","7183865299","62","2013-07-10 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41525547","TARO SUSHI NY INC","3","244","FLATBUSH AVENUE","11217","7183985240","49","2011-11-30 00:00:00","U","09B","20","B","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41525547","TARO SUSHI NY INC","3","244","FLATBUSH AVENUE","11217","7183985240","49","2012-07-09 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41525547","TARO SUSHI NY INC","3","244","FLATBUSH AVENUE","11217","7183985240","49","2012-07-25 00:00:00","D","10F","9","A","2012-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2010-10-26 00:00:00","D","10F","3","","","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2012-12-19 00:00:00","F","06C","38","","","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2013-01-11 00:00:00","D","06D","7","A","2013-01-11 00:00:00","2013-09-13 01:01:06.177000000" +"41533744","SUBWAY","1","455","WEST 34 STREET","10001","6465971577","70","2011-04-12 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2011-07-07 00:00:00","F","04J","37","C","2011-07-07 00:00:00","2013-09-13 01:01:06.177000000" +"41589890","Y CAFE","1","182","AVENUE B","10009","2127773323","05","2013-02-28 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2011-09-27 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2011-10-12 00:00:00","F","06C","19","C","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2011-07-06 00:00:00","D","08A","10","A","2011-07-06 00:00:00","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2011-07-06 00:00:00","D","10I","10","A","2011-07-06 00:00:00","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2011-11-29 00:00:00","U","04H","13","B","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2012-04-10 00:00:00","F","09B","35","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2012-05-01 00:00:00","F","04H","30","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2012-09-24 00:00:00","F","02G","24","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2013-06-11 00:00:00","G","06A","63","","","2013-09-13 01:01:06.177000000" +"41524648","SICHUAN RESTAURANT","4","98-108","QUEENS BOULEVARD","11374","7182688833","20","2011-09-20 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2010-12-09 00:00:00","U","10F","24","B","2010-12-09 00:00:00","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2011-03-31 00:00:00","F","02G","35","C","2011-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2011-03-31 00:00:00","F","99B","35","C","2011-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2011-09-06 00:00:00","D","04N","12","A","2011-09-06 00:00:00","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2011-09-06 00:00:00","D","10I","12","A","2011-09-06 00:00:00","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2012-06-06 00:00:00","D","02G","10","A","2012-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2013-06-14 00:00:00","P","06F","22","","","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2011-09-28 00:00:00","F","04M","37","","","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2011-10-27 00:00:00","U","02G","21","B","2011-10-27 00:00:00","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2011-10-27 00:00:00","U","06E","21","B","2011-10-27 00:00:00","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2012-02-23 00:00:00","F","06C","22","","","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2012-02-23 00:00:00","F","10B","22","","","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2012-08-23 00:00:00","U","04L","15","B","2012-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2011-03-15 00:00:00","U","02G","12","B","2011-03-15 00:00:00","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2011-03-15 00:00:00","U","06E","12","B","2011-03-15 00:00:00","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2012-08-27 00:00:00","F","04L","28","","","2013-09-13 01:01:06.177000000" +"41528823","BAYRIDGE SUSHI","3","6914 ","3 AVENUE ","11209","7184910662","49","2012-09-25 00:00:00","D","04N","12","A","2012-09-25 00:00:00","2013-09-13 01:01:06.177000000" +"41528823","BAYRIDGE SUSHI","3","6914 ","3 AVENUE ","11209","7184910662","49","2013-04-20 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2013-03-28 00:00:00","G","06F","68","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-03-01 00:00:00","F","15K","","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-05-06 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"41525472","CROSS BAY DELI & GRILL","4","105-10","CROSSBAY BOULEVARD","11417","7188488887","27","2010-09-28 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41525547","TARO SUSHI NY INC","3","244","FLATBUSH AVENUE","11217","7183985240","49","2010-11-19 00:00:00","C","10H","11","A","2010-11-19 00:00:00","2013-09-13 01:01:06.177000000" +"41525547","TARO SUSHI NY INC","3","244","FLATBUSH AVENUE","11217","7183985240","49","2011-11-03 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41525547","TARO SUSHI NY INC","3","244","FLATBUSH AVENUE","11217","7183985240","49","2011-11-30 00:00:00","U","10B","20","B","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2011-01-20 00:00:00","D","08A","12","A","2011-01-20 00:00:00","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2012-01-03 00:00:00","D","04L","12","A","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2012-12-19 00:00:00","F","04L","38","","","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2013-06-20 00:00:00","F","04J","30","","","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2011-06-15 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2012-01-20 00:00:00","F","04C","28","","","2013-09-13 01:01:06.177000000" +"41590518","NEW SZECHUAN HOUSE","4","50-08","SKILLMAN AVENUE","11377","7184466092","20","2012-09-08 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41529617","SHOBU SUSHI & GRILL","3","9427","5 AVENUE","11209","7188338345","49","2012-06-15 00:00:00","D","10G","10","A","2012-06-15 00:00:00","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2011-10-05 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2013-07-10 00:00:00","F","02G","38","","","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2011-06-01 00:00:00","F","08A","33","","","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2011-12-19 00:00:00","P","06E","23","","","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2011-12-28 00:00:00","U","06D","24","B","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2011-12-28 00:00:00","U","06E","24","B","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-03-31 00:00:00","P","09B","24","","","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-04-27 00:00:00","U","10B","27","B","2011-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-04-27 00:00:00","U","99B","27","B","2011-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2012-08-20 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"41573430","SUSHI FUSSION","4","105-45A ","64 ROAD ","11375","7189978744","49","2011-07-25 00:00:00","P","06F","15","","","2013-09-13 01:01:06.177000000" +"41537949","LZ SUSHI","1","355 ","7 AVENUE ","10001","2128681388","49","2010-11-01 00:00:00","P","04J","17","","","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2010-09-27 00:00:00","F","04C","40","","","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2011-09-27 00:00:00","P","04M","20","","","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2011-10-12 00:00:00","F","02B","19","C","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2012-01-25 00:00:00","D","06E","12","A","2012-01-25 00:00:00","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2011-09-07 00:00:00","P","99B","26","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2012-06-13 00:00:00","F","05D","32","","","2013-09-13 01:01:06.177000000" +"41528823","BAYRIDGE SUSHI","3","6914 ","3 AVENUE ","11209","7184910662","49","2011-09-08 00:00:00","D","10H","12","A","2011-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41528823","BAYRIDGE SUSHI","3","6914 ","3 AVENUE ","11209","7184910662","49","2012-08-28 00:00:00","P","10B","16","","","2013-09-13 01:01:06.177000000" +"41538617","MYSTIQUE","1","141 ","CHRYSTIE STREET ","10002","2129667808","03","2012-08-24 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41538666","PICCOLO CAFE","1","274","WEST 40 STREET","10018","2123020143","14","2011-12-28 00:00:00","F","06D","49","C","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-04-15 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-06-02 00:00:00","F","04J","29","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-08-09 00:00:00","U","04L","26","B","2011-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-12-08 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2012-06-20 00:00:00","F","08A","33","","","2013-09-13 01:01:06.177000000" +"41512587","KAFF KAFE","3","5320","16 AVENUE","11204","7184360808","50","2010-07-29 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2011-07-11 00:00:00","P","99B","25","","","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2012-07-05 00:00:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2012-07-05 00:00:00","F","06A","32","","","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2012-07-17 00:00:00","D","06C","9","A","2012-07-17 00:00:00","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2012-07-17 00:00:00","D","10F","9","A","2012-07-17 00:00:00","2013-09-13 01:01:06.177000000" +"41524648","SICHUAN RESTAURANT","4","98-108","QUEENS BOULEVARD","11374","7182688833","20","2011-09-20 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2011-08-31 00:00:00","U","04M","27","B","2011-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2011-08-31 00:00:00","U","08A","27","B","2011-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2011-12-05 00:00:00","P","10E","18","","","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2011-12-17 00:00:00","U","02G","14","B","2011-12-17 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2013-02-20 00:00:00","F","15L","","","","2013-09-13 01:01:06.177000000" +"41529617","SHOBU SUSHI & GRILL","3","9427","5 AVENUE","11209","7188338345","49","2011-06-28 00:00:00","D","99B","5","A","2011-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2010-09-30 00:00:00","F","02B","56","","","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2010-12-09 00:00:00","U","02B","24","B","2010-12-09 00:00:00","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2010-12-09 00:00:00","U","04K","24","B","2010-12-09 00:00:00","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2011-12-19 00:00:00","P","09C","16","","","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2013-05-09 00:00:00","F","04M","26","","","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2011-06-21 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2012-03-07 00:00:00","D","08A","13","A","2012-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2010-12-07 00:00:00","F","02B","32","C","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2011-02-22 00:00:00","U","04M","9","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2011-08-12 00:00:00","P","09B","19","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2011-12-27 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-01-10 00:00:00","G","06A","59","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-01-10 00:00:00","G","08A","59","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-01-17 00:00:00","O","10F","6","","","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2011-06-14 00:00:00","F","06F","37","","","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2012-02-23 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2012-03-07 00:00:00","U","10B","2","B","2012-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41576416","JUKAI","1","237","EAST 53 STREET","10022","2125889788","49","2011-07-05 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"41576416","JUKAI","1","237","EAST 53 STREET","10022","2125889788","49","2011-12-01 00:00:00","P","02B","12","","","2013-09-13 01:01:06.177000000" +"41576416","JUKAI","1","237","EAST 53 STREET","10022","2125889788","49","2013-04-04 00:00:00","P","09B","2","","","2013-09-13 01:01:06.177000000" +"41525547","TARO SUSHI NY INC","3","244","FLATBUSH AVENUE","11217","7183985240","49","2011-11-30 00:00:00","U","02G","20","B","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2013-06-20 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-06-17 00:00:00","F","09A","40","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-11-25 00:00:00","F","08A","40","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-11-25 00:00:00","F","10B","40","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-11-25 00:00:00","F","99B","40","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-12-21 00:00:00","U","04H","19","B","2011-12-21 00:00:00","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2012-05-16 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2012-05-29 00:00:00","U","06F","13","B","2012-05-29 00:00:00","2013-09-13 01:01:06.177000000" +"41539948","TOKYO HIBACHI STEAK HOUSE & SUSHI","4","184-16","HORACE HARDING EXPRESSWAY","11365","7184632999","49","2011-08-12 00:00:00","P","06E","25","","","2013-09-13 01:01:06.177000000" +"41539948","TOKYO HIBACHI STEAK HOUSE & SUSHI","4","184-16","HORACE HARDING EXPRESSWAY","11365","7184632999","49","2012-08-25 00:00:00","F","10H","43","","","2013-09-13 01:01:06.177000000" +"41539948","TOKYO HIBACHI STEAK HOUSE & SUSHI","4","184-16","HORACE HARDING EXPRESSWAY","11365","7184632999","49","2013-04-09 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2012-01-25 00:00:00","D","02G","12","A","2012-01-25 00:00:00","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2013-05-06 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2010-08-26 00:00:00","P","04M","15","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2011-01-11 00:00:00","U","02B","24","B","2011-01-11 00:00:00","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2011-08-23 00:00:00","U","04N","8","B","2011-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2011-08-23 00:00:00","U","10F","8","B","2011-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2012-10-10 00:00:00","F","10I","40","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2013-05-15 00:00:00","G","09B","44","","","2013-09-13 01:01:06.177000000" +"41596350","RIVER JAPANESE CUISINE","4","61-44 ","SPRINGFIELD BOULEVARD ","11364","7183218981","49","2013-04-25 00:00:00","F","04A","12","","","2013-09-13 01:01:06.177000000" +"41528823","BAYRIDGE SUSHI","3","6914 ","3 AVENUE ","11209","7184910662","49","2012-08-28 00:00:00","P","06D","16","","","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2012-04-17 00:00:00","U","02G","9","B","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2012-11-16 00:00:00","U","02B","12","B","2012-11-16 00:00:00","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2013-06-20 00:00:00","F","02B","17","","","2013-09-13 01:01:06.177000000" +"41597054","SUSHI YASAKA","1","251","WEST 72 STREET","10023","2124968460","49","2011-07-15 00:00:00","D","08A","12","","","2013-09-13 01:01:06.177000000" +"41597054","SUSHI YASAKA","1","251","WEST 72 STREET","10023","2124968460","49","2011-09-29 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2010-12-07 00:00:00","U","06E","10","B","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2012-06-20 00:00:00","U","06D","13","B","2012-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41515470","NARUTO RAMEN","3","276L ","5 AVENUE ","11215","7188321111","49","2012-01-24 00:00:00","D","10F","12","A","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2010-10-13 00:00:00","G","02B","42","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2010-10-15 00:00:00","O","10F","3","C","2010-10-15 00:00:00","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-02-01 00:00:00","F","04L","33","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-07-21 00:00:00","W","10B","14","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-07-22 00:00:00","O","10F","2","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2011-08-15 00:00:00","P","06A","20","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-11-19 00:00:00","F","06C","28","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-12-11 00:00:00","F","06C","65","C","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2011-05-10 00:00:00","U","04L","24","","","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2011-10-27 00:00:00","D","08A","10","A","2011-10-27 00:00:00","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2010-10-20 00:00:00","D","10B","4","","","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2012-02-23 00:00:00","P","04C","21","","","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2013-02-12 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-09-08 00:00:00","F","06C","50","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-09-08 00:00:00","F","10B","50","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-12-29 00:00:00","F","04N","46","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2012-06-22 00:00:00","F","04H","23","C","2012-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2012-12-03 00:00:00","P","02B","13","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2010-10-28 00:00:00","P","04N","19","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2010-10-28 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2012-08-27 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2012-08-27 00:00:00","F","09B","28","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2013-02-14 00:00:00","F","06E","28","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2013-08-28 00:00:00","P","06E","21","","","2013-09-13 01:01:06.177000000" +"41529617","SHOBU SUSHI & GRILL","3","9427","5 AVENUE","11209","7188338345","49","2011-06-28 00:00:00","D","10F","5","A","2011-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"41529617","SHOBU SUSHI & GRILL","3","9427","5 AVENUE","11209","7188338345","49","2012-05-29 00:00:00","P","06C","27","","","2013-09-13 01:01:06.177000000" +"41529617","SHOBU SUSHI & GRILL","3","9427","5 AVENUE","11209","7188338345","49","2012-05-29 00:00:00","P","09A","27","","","2013-09-13 01:01:06.177000000" +"41529617","SHOBU SUSHI & GRILL","3","9427","5 AVENUE","11209","7188338345","49","2012-06-15 00:00:00","D","10F","10","A","2012-06-15 00:00:00","2013-09-13 01:01:06.177000000" +"41597839","KIDO SUSHI (QUEENS CENTER MALL)","4","90-15","QUEENS BOULEVARD","11373","7182713688","49","2011-08-24 00:00:00","D","02B","10","A","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41597839","KIDO SUSHI (QUEENS CENTER MALL)","4","90-15","QUEENS BOULEVARD","11373","7182713688","49","2011-12-22 00:00:00","U","06A","9","B","2011-12-22 00:00:00","2013-09-13 01:01:06.177000000" +"41597839","KIDO SUSHI (QUEENS CENTER MALL)","4","90-15","QUEENS BOULEVARD","11373","7182713688","49","2013-04-26 00:00:00","G","02B","71","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2010-10-25 00:00:00","D","10F","11","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-06-17 00:00:00","F","06C","40","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-07-14 00:00:00","F","04L","26","C","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2012-05-16 00:00:00","P","06C","18","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2012-05-16 00:00:00","P","10B","18","","","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2010-08-24 00:00:00","F","02G","33","","","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2010-08-24 00:00:00","F","10H","33","","","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2012-06-20 00:00:00","U","04K","16","B","2012-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2011-08-02 00:00:00","G","10F","72","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2011-08-04 00:00:00","W","04L","24","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2011-08-08 00:00:00","O","10F","2","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2012-02-28 00:00:00","F","05D","31","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2012-03-16 00:00:00","F","03B","23","C","2012-03-16 00:00:00","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2012-07-26 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41598232","LAO MA MA LA TANG","4","136-20","ROOSEVELT AVENUE","11354","7183582339","20","2012-08-27 00:00:00","G","06D","49","","","2013-09-13 01:01:06.177000000" +"41598232","LAO MA MA LA TANG","4","136-20","ROOSEVELT AVENUE","11354","7183582339","20","2012-08-27 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41533145","SAL'S PIZZERIA","3","119","WYCKOFF AVENUE","11237","7183865299","62","2013-07-10 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2012-02-16 00:00:00","P","09B","17","","","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2013-02-05 00:00:00","P","06F","16","","","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2013-03-18 00:00:00","D","10H","13","A","2013-03-18 00:00:00","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2013-08-23 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2013-08-23 00:00:00","P","10H","26","","","2013-09-13 01:01:06.177000000" +"41517779","HAPPY KITCHEN","4","80-12","37 AVENUE","11372","7188031600","49","2012-05-03 00:00:00","P","04C","12","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2013-03-06 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41533744","SUBWAY","1","455","WEST 34 STREET","10001","6465971577","70","2011-04-12 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41533744","SUBWAY","1","455","WEST 34 STREET","10001","6465971577","70","2011-04-12 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2011-07-15 00:00:00","D","10F","4","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2011-09-10 00:00:00","D","06F","10","A","2011-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2012-09-06 00:00:00","U","06E","9","B","2012-09-06 00:00:00","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-02-26 00:00:00","F","06C","67","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-09-11 00:00:00","U","02B","17","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2011-10-05 00:00:00","P","05D","25","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2011-11-03 00:00:00","U","02B","13","B","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2012-05-22 00:00:00","F","02G","48","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2012-05-22 00:00:00","F","10H","48","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2013-07-10 00:00:00","F","02B","38","","","2013-09-13 01:01:06.177000000" +"41536872","NEW TOKYO SUSHI","4","162-16 ","UNION TURNPIKE ","11366","9172516359","49","2011-05-26 00:00:00","P","06D","15","","","2013-09-13 01:01:06.177000000" +"41536872","NEW TOKYO SUSHI","4","162-16 ","UNION TURNPIKE ","11366","9172516359","49","2011-11-03 00:00:00","D","04H","7","A","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41542939","MAGGIE BROWN","3","455","MYRTLE AVENUE","11205","7186437001","03","2011-06-09 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2012-04-17 00:00:00","E","16B","","","","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2013-05-31 00:00:00","F","02B","43","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2011-08-18 00:00:00","F","06C","50","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2011-08-18 00:00:00","F","08A","50","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2011-12-19 00:00:00","F","08A","25","C","2011-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2012-02-29 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2012-02-29 00:00:00","P","09B","19","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2012-03-13 00:00:00","D","09B","12","A","2012-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2013-03-26 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2010-09-08 00:00:00","D","08A","9","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2011-03-31 00:00:00","P","04A","17","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2012-05-01 00:00:00","F","02B","30","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2012-05-01 00:00:00","F","10B","30","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2012-09-24 00:00:00","F","04L","24","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2012-10-09 00:00:00","U","04M","5","B","2012-10-09 00:00:00","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2013-05-10 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2011-08-03 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2011-09-13 00:00:00","D","06C","13","A","2011-09-13 00:00:00","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2013-03-01 00:00:00","P","06C","20","","","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2013-07-24 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"41537949","LZ SUSHI","1","355 ","7 AVENUE ","10001","2128681388","49","2010-11-01 00:00:00","P","20D","17","","","2013-09-13 01:01:06.177000000" +"41537949","LZ SUSHI","1","355 ","7 AVENUE ","10001","2128681388","49","2011-08-31 00:00:00","F","04L","29","","","2013-09-13 01:01:06.177000000" +"41537949","LZ SUSHI","1","355 ","7 AVENUE ","10001","2128681388","49","2012-01-17 00:00:00","D","02G","13","A","2012-01-17 00:00:00","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2012-04-03 00:00:00","F","06F","40","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2013-02-14 00:00:00","F","04L","28","","","2013-09-13 01:01:06.177000000" +"41538617","MYSTIQUE","1","141 ","CHRYSTIE STREET ","10002","2129667808","03","2012-08-24 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41538617","MYSTIQUE","1","141 ","CHRYSTIE STREET ","10002","2129667808","03","2012-08-24 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2011-06-14 00:00:00","F","06C","37","","","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2012-02-23 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-06-17 00:00:00","F","06E","40","","","2013-09-13 01:01:06.177000000" +"41582873","ICHIMASA JAPANESE RESTAURANT","1","302","WEST 50 STREET","10019","2123154800","49","2013-02-12 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2012-04-17 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41520872","KIKU SUSHI","3","453","7 AVENUE","11215","7183691155","49","2013-03-28 00:00:00","G","10F","68","","","2013-09-13 01:01:06.177000000" +"41538666","PICCOLO CAFE","1","274","WEST 40 STREET","10018","2123020143","14","2011-12-28 00:00:00","F","04N","49","C","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41538666","PICCOLO CAFE","1","274","WEST 40 STREET","10018","2123020143","14","2011-12-28 00:00:00","F","10B","49","C","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-06-17 00:00:00","F","10B","40","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-11-25 00:00:00","F","02G","40","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-01-20 00:00:00","D","04M","11","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-05-17 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-06-27 00:00:00","U","10F","4","B","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-11-01 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2012-06-01 00:00:00","G","04M","64","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2012-06-05 00:00:00","O","10F","7","P","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2011-09-19 00:00:00","U","08A","19","B","2011-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2013-04-17 00:00:00","P","04H","23","","","2013-09-13 01:01:06.177000000" +"41601691","WAZA SUSHI","3","485","MYRTLE AVENUE","11205","7183993839","49","2012-09-27 00:00:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2012-05-22 00:00:00","F","04N","48","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2013-07-10 00:00:00","F","04N","38","","","2013-09-13 01:01:06.177000000" +"41536872","NEW TOKYO SUSHI","4","162-16 ","UNION TURNPIKE ","11366","9172516359","49","2011-07-01 00:00:00","D","10F","2","A","2011-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2012-11-20 00:00:00","P","04H","19","","","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2013-07-02 00:00:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2013-07-02 00:00:00","F","06E","32","","","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2013-07-02 00:00:00","F","10H","32","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2010-11-30 00:00:00","D","99B","4","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2012-01-06 00:00:00","F","06E","15","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2012-07-02 00:00:00","F","02G","46","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2012-07-18 00:00:00","F","02B","27","C","2012-07-18 00:00:00","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2011-07-14 00:00:00","U","10F","23","B","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2011-12-15 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2011-12-28 00:00:00","D","06F","13","A","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2012-05-22 00:00:00","U","06D","16","B","2012-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2013-02-06 00:00:00","F","06F","28","","","2013-09-13 01:01:06.177000000" +"41537949","LZ SUSHI","1","355 ","7 AVENUE ","10001","2128681388","49","2010-11-01 00:00:00","P","10A","17","","","2013-09-13 01:01:06.177000000" +"41537949","LZ SUSHI","1","355 ","7 AVENUE ","10001","2128681388","49","2010-11-01 00:00:00","P","10B","17","","","2013-09-13 01:01:06.177000000" +"41537949","LZ SUSHI","1","355 ","7 AVENUE ","10001","2128681388","49","2011-02-25 00:00:00","U","04J","10","B","2011-02-25 00:00:00","2013-09-13 01:01:06.177000000" +"41537949","LZ SUSHI","1","355 ","7 AVENUE ","10001","2128681388","49","2011-08-31 00:00:00","F","03A","29","","","2013-09-13 01:01:06.177000000" +"41537949","LZ SUSHI","1","355 ","7 AVENUE ","10001","2128681388","49","2011-08-31 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2011-07-27 00:00:00","F","04K","31","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2012-04-17 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2012-04-17 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2012-05-03 00:00:00","F","02G","40","C","2012-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2012-05-03 00:00:00","F","04A","40","C","2012-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2012-05-16 00:00:00","F","02G","43","","","2013-09-13 01:01:06.177000000" +"41539844","SAIGON MARKET","1","91-93","UNIVERSITY PLACE","10003","2129823691","28","2011-07-01 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41539948","TOKYO HIBACHI STEAK HOUSE & SUSHI","4","184-16","HORACE HARDING EXPRESSWAY","11365","7184632999","49","2010-11-12 00:00:00","E","05H","30","","","2013-09-13 01:01:06.177000000" +"41539948","TOKYO HIBACHI STEAK HOUSE & SUSHI","4","184-16","HORACE HARDING EXPRESSWAY","11365","7184632999","49","2012-02-27 00:00:00","P","06D","20","","","2013-09-13 01:01:06.177000000" +"41539948","TOKYO HIBACHI STEAK HOUSE & SUSHI","4","184-16","HORACE HARDING EXPRESSWAY","11365","7184632999","49","2013-04-09 00:00:00","P","06D","21","","","2013-09-13 01:01:06.177000000" +"41539948","TOKYO HIBACHI STEAK HOUSE & SUSHI","4","184-16","HORACE HARDING EXPRESSWAY","11365","7184632999","49","2013-04-09 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-02-24 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-04-12 00:00:00","G","02G","62","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-04-12 00:00:00","G","06E","62","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-09-05 00:00:00","P","06C","27","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-09-05 00:00:00","P","10B","27","","","2013-09-13 01:01:06.177000000" +"41545732","LEMONGRASS GRILL","3","156","COURT STREET","11201","7185229728","82","2012-07-24 00:00:00","G","02B","49","","","2013-09-13 01:01:06.177000000" +"41545732","LEMONGRASS GRILL","3","156","COURT STREET","11201","7185229728","82","2012-07-24 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2012-01-10 00:00:00","P","04L","16","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2012-06-13 00:00:00","F","04N","32","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2012-06-13 00:00:00","F","10F","32","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2013-01-29 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"41538617","MYSTIQUE","1","141 ","CHRYSTIE STREET ","10002","2129667808","03","2012-08-24 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41538666","PICCOLO CAFE","1","274","WEST 40 STREET","10018","2123020143","14","2011-12-28 00:00:00","F","04L","49","C","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41546097","KUSHI Q","1","153","EAST 53 STREET","10022","2128886488","49","2010-12-17 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"41546097","KUSHI Q","1","153","EAST 53 STREET","10022","2128886488","49","2010-12-17 00:00:00","P","09A","17","","","2013-09-13 01:01:06.177000000" +"41546097","KUSHI Q","1","153","EAST 53 STREET","10022","2128886488","49","2011-08-24 00:00:00","D","10B","13","A","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41546097","KUSHI Q","1","153","EAST 53 STREET","10022","2128886488","49","2012-01-06 00:00:00","D","10F","4","A","2012-01-06 00:00:00","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2011-05-19 00:00:00","D","10D","10","","","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2011-06-07 00:00:00","P","06C","17","","","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2013-04-04 00:00:00","P","02B","23","","","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2013-04-04 00:00:00","P","06E","23","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2011-08-24 00:00:00","U","02B","25","B","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2012-02-28 00:00:00","F","04L","47","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2012-08-16 00:00:00","D","08A","12","A","2012-08-16 00:00:00","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2013-02-07 00:00:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2011-11-01 00:00:00","F","02B","15","C","2011-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2012-04-03 00:00:00","F","06D","40","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2012-08-27 00:00:00","F","04K","28","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2012-09-12 00:00:00","U","10A","12","B","2012-09-12 00:00:00","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2013-02-14 00:00:00","F","02B","28","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2013-08-28 00:00:00","P","04H","21","","","2013-09-13 01:01:06.177000000" +"41540943","ASIAN FUSION STONE","1","11","STONE STREET","10004","2127421188","05","2010-12-07 00:00:00","F","04L","49","C","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41584962","TOTOYA","1","1144 ","1 AVENUE ","10065","2127530422","49","2011-08-03 00:00:00","D","08C","8","A","2011-08-03 00:00:00","2013-09-13 01:01:06.177000000" +"41584962","TOTOYA","1","1144 ","1 AVENUE ","10065","2127530422","49","2013-04-05 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41584962","TOTOYA","1","1144 ","1 AVENUE ","10065","2127530422","49","2013-04-05 00:00:00","P","06A","23","","","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2011-12-13 00:00:00","D","10B","11","A","2011-12-13 00:00:00","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2012-04-24 00:00:00","P","04H","16","","","2013-09-13 01:01:06.177000000" +"41524648","SICHUAN RESTAURANT","4","98-108","QUEENS BOULEVARD","11374","7182688833","20","2011-09-20 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2010-12-09 00:00:00","U","08A","24","B","2010-12-09 00:00:00","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2011-03-31 00:00:00","F","10F","35","C","2011-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2011-12-19 00:00:00","P","02G","16","","","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2011-12-19 00:00:00","P","06E","16","","","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2012-06-06 00:00:00","D","10F","10","A","2012-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2011-03-08 00:00:00","F","04L","17","C","2011-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2011-03-08 00:00:00","F","22C","17","C","2011-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2011-10-17 00:00:00","P","10B","21","","","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2012-03-26 00:00:00","D","06C","11","A","2012-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2013-03-27 00:00:00","G","06C","53","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2010-10-26 00:00:00","D","10F","3","A","2010-10-26 00:00:00","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2011-10-05 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2011-11-03 00:00:00","U","06B","13","B","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2012-05-22 00:00:00","F","02B","48","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2012-05-22 00:00:00","F","06D","48","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2012-06-11 00:00:00","D","06B","12","A","2012-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2012-10-25 00:00:00","F","06D","36","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2013-02-13 00:00:00","F","02H","25","C","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41605223","YU SUSHI","1","827","WEST 181 STREET","10033","2127818833","49","2011-08-22 00:00:00","D","08C","13","","","2013-09-13 01:01:06.177000000" +"41605223","YU SUSHI","1","827","WEST 181 STREET","10033","2127818833","49","2011-09-01 00:00:00","D","02B","10","A","2011-09-01 00:00:00","2013-09-13 01:01:06.177000000" +"41605380","NEW HAWAII SEA","2","1475","WILLIAMSBRIDGE ROAD","10461","7188637900","22","2011-08-01 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41605380","NEW HAWAII SEA","2","1475","WILLIAMSBRIDGE ROAD","10461","7188637900","22","2011-08-01 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2012-06-07 00:00:00","F","04H","30","","","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2013-02-13 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2011-08-26 00:00:00","F","04N","38","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2011-08-26 00:00:00","F","06D","38","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2011-08-26 00:00:00","F","06E","38","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2011-08-26 00:00:00","F","08A","38","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2011-10-13 00:00:00","F","99B","24","C","2011-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2013-06-01 00:00:00","F","10F","18","","","2013-09-13 01:01:06.177000000" +"41539948","TOKYO HIBACHI STEAK HOUSE & SUSHI","4","184-16","HORACE HARDING EXPRESSWAY","11365","7184632999","49","2012-02-27 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2012-01-03 00:00:00","D","10H","12","A","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2012-12-19 00:00:00","F","10J","38","","","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2013-06-20 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"41525640","THE SWALLOW CAFE & ESPRESSO BAR","3","49","BOGART STREET","11206","8172795537","14","2013-06-20 00:00:00","F","04M","30","","","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2011-09-03 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2012-05-09 00:00:00","F","06C","28","C","2012-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2011-11-07 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2011-11-21 00:00:00","U","02B","21","B","2011-11-21 00:00:00","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2011-09-27 00:00:00","U","04H","10","B","2011-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2012-03-08 00:00:00","U","04M","9","B","2012-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41537949","LZ SUSHI","1","355 ","7 AVENUE ","10001","2128681388","49","2012-01-17 00:00:00","D","09A","13","A","2012-01-17 00:00:00","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2011-03-02 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2011-08-02 00:00:00","G","06A","72","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2011-08-04 00:00:00","W","02G","24","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2012-02-28 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41547568","HAGANE HIBACHI & JAPANESE GRILL","4","161-02","CROSSBAY BOULEVARD","11414","7188358385","49","2011-01-25 00:00:00","P","06C","17","","","2013-09-13 01:01:06.177000000" +"41540943","ASIAN FUSION STONE","1","11","STONE STREET","10004","2127421188","05","2010-12-07 00:00:00","F","06C","49","C","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2011-09-23 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2012-05-12 00:00:00","F","10F","19","","","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2013-05-23 00:00:00","P","06D","16","","","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2013-05-23 00:00:00","P","10D","16","","","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2012-06-13 00:00:00","U","10B","11","B","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2013-02-07 00:00:00","F","10I","23","","","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2011-01-07 00:00:00","C","08A","12","A","2011-01-07 00:00:00","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2011-08-11 00:00:00","P","02B","18","","","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2011-08-20 00:00:00","D","04L","9","A","2011-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2011-12-16 00:00:00","F","04J","31","","","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2011-12-16 00:00:00","F","06A","31","","","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2011-12-27 00:00:00","D","04M","9","A","2011-12-27 00:00:00","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2012-05-15 00:00:00","D","10B","9","A","2012-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41547974","SAKURA JAPANESE RESTAURANT","3","346","GRAHAM AVENUE","11211","7182188056","49","2010-12-28 00:00:00","P","06C","15","","","2013-09-13 01:01:06.177000000" +"41547974","SAKURA JAPANESE RESTAURANT","3","346","GRAHAM AVENUE","11211","7182188056","49","2011-03-09 00:00:00","D","04H","7","A","2011-03-09 00:00:00","2013-09-13 01:01:06.177000000" +"41547974","SAKURA JAPANESE RESTAURANT","3","346","GRAHAM AVENUE","11211","7182188056","49","2012-01-18 00:00:00","D","02B","10","A","2012-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"41541293","TEJADA RESTAURANT","2","283","EAST 170 STREET","10456","6462387260","55","2011-06-23 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41538617","MYSTIQUE","1","141 ","CHRYSTIE STREET ","10002","2129667808","03","2012-08-24 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41538617","MYSTIQUE","1","141 ","CHRYSTIE STREET ","10002","2129667808","03","2012-08-24 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41542939","MAGGIE BROWN","3","455","MYRTLE AVENUE","11205","7186437001","03","2011-06-09 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41542939","MAGGIE BROWN","3","455","MYRTLE AVENUE","11205","7186437001","03","2011-06-09 00:00:00","G","10H","49","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2011-08-05 00:00:00","F","04L","36","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2011-08-05 00:00:00","F","06E","36","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2011-09-22 00:00:00","U","10B","24","B","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2012-06-19 00:00:00","U","08A","17","B","2012-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2013-02-20 00:00:00","F","10B","19","","","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2011-02-15 00:00:00","U","04L","7","B","2011-02-15 00:00:00","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2011-09-27 00:00:00","P","10B","20","","","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2012-05-16 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2013-05-31 00:00:00","F","02G","43","","","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2011-02-24 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2011-03-08 00:00:00","F","06E","17","C","2011-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2012-10-09 00:00:00","P","04M","14","","","2013-09-13 01:01:06.177000000" +"41607908","LONGEVOUSJOY Ramen Sushi Brasserie","3","6610","BAY PARKWAY","11204","9178926068","49","2011-10-07 00:00:00","D","10B","4","","","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2012-12-04 00:00:00","U","10A","15","B","2012-12-04 00:00:00","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2013-06-01 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2013-07-03 00:00:00","G","04M","43","","","2013-09-13 01:01:06.177000000" +"41543275","KARAOKE NEMO/TRECE","1","54 ","EAST 13 STREET ","10003","2124775577","55","2013-07-31 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41543275","KARAOKE NEMO/TRECE","1","54 ","EAST 13 STREET ","10003","2124775577","55","2013-07-31 00:00:00","F","09B","49","","","2013-09-13 01:01:06.177000000" +"41548687","SUBWAY","1","508","COLUMBUS AVENUE","10024","2123621659","69","2012-03-21 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2013-07-17 00:00:00","F","06D","16","","","2013-09-13 01:01:06.177000000" +"41528823","BAYRIDGE SUSHI","3","6914 ","3 AVENUE ","11209","7184910662","49","2012-08-28 00:00:00","P","04C","16","","","2013-09-13 01:01:06.177000000" +"41528823","BAYRIDGE SUSHI","3","6914 ","3 AVENUE ","11209","7184910662","49","2013-04-20 00:00:00","P","04H","23","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2011-08-02 00:00:00","G","04J","72","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2011-08-02 00:00:00","G","06F","72","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2012-02-28 00:00:00","F","08C","31","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2012-02-28 00:00:00","F","10B","31","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2012-07-26 00:00:00","F","02B","30","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2013-03-06 00:00:00","P","04N","23","","","2013-09-13 01:01:06.177000000" +"41608998","BAR MISHIMA","1","212","EAST 52 STREET","10022","2125881089","49","2013-03-07 00:00:00","P","09C","21","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2011-11-03 00:00:00","F","02B","37","C","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2011-11-03 00:00:00","F","04M","37","C","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2012-04-09 00:00:00","F","04L","24","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2013-03-21 00:00:00","F","04L","43","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2013-03-21 00:00:00","F","06F","43","","","2013-09-13 01:01:06.177000000" +"41539948","TOKYO HIBACHI STEAK HOUSE & SUSHI","4","184-16","HORACE HARDING EXPRESSWAY","11365","7184632999","49","2010-11-12 00:00:00","E","10B","30","","","2013-09-13 01:01:06.177000000" +"41539948","TOKYO HIBACHI STEAK HOUSE & SUSHI","4","184-16","HORACE HARDING EXPRESSWAY","11365","7184632999","49","2011-08-20 00:00:00","D","10F","5","A","2011-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41539948","TOKYO HIBACHI STEAK HOUSE & SUSHI","4","184-16","HORACE HARDING EXPRESSWAY","11365","7184632999","49","2012-02-27 00:00:00","P","02B","20","","","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2011-01-31 00:00:00","D","22C","10","","","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2012-04-17 00:00:00","D","06F","12","A","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41529617","SHOBU SUSHI & GRILL","3","9427","5 AVENUE","11209","7188338345","49","2010-11-04 00:00:00","P","06D","15","","","2013-09-13 01:01:06.177000000" +"41529617","SHOBU SUSHI & GRILL","3","9427","5 AVENUE","11209","7188338345","49","2010-11-04 00:00:00","P","10H","15","","","2013-09-13 01:01:06.177000000" +"41529617","SHOBU SUSHI & GRILL","3","9427","5 AVENUE","11209","7188338345","49","2010-12-16 00:00:00","D","10F","5","A","2010-12-16 00:00:00","2013-09-13 01:01:06.177000000" +"41529617","SHOBU SUSHI & GRILL","3","9427","5 AVENUE","11209","7188338345","49","2012-06-15 00:00:00","D","06D","10","A","2012-06-15 00:00:00","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2010-12-01 00:00:00","D","10F","5","","","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2011-11-14 00:00:00","D","10F","9","A","2011-11-14 00:00:00","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2012-11-20 00:00:00","P","10H","19","","","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2013-05-31 00:00:00","F","06F","43","","","2013-09-13 01:01:06.177000000" +"41543275","KARAOKE NEMO/TRECE","1","54 ","EAST 13 STREET ","10003","2124775577","55","2013-07-31 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41543275","KARAOKE NEMO/TRECE","1","54 ","EAST 13 STREET ","10003","2124775577","55","2013-07-31 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41543275","KARAOKE NEMO/TRECE","1","54 ","EAST 13 STREET ","10003","2124775577","55","2013-07-31 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2012-12-04 00:00:00","U","02B","12","B","2012-12-04 00:00:00","2013-09-13 01:01:06.177000000" +"41545050","PATRICIA'S","2","1082 ","MORRIS PARK AVENUE ","10461","7184099069","48","2011-05-04 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2010-11-30 00:00:00","D","10F","4","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2012-01-06 00:00:00","F","06F","15","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2012-07-02 00:00:00","F","02B","46","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2012-07-02 00:00:00","F","10A","46","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2012-07-02 00:00:00","F","10B","46","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2012-07-18 00:00:00","F","06D","27","C","2012-07-18 00:00:00","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2013-02-22 00:00:00","F","10B","31","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2011-06-29 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2011-06-29 00:00:00","P","06E","26","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2011-12-28 00:00:00","D","10D","13","A","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41611549","CITI BAGEL & DELI","5","6372","AMBOY ROAD","10309","7189679300","27","2011-08-30 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41611549","CITI BAGEL & DELI","5","6372","AMBOY ROAD","10309","7189679300","27","2011-08-30 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2011-06-01 00:00:00","F","04H","33","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2012-05-09 00:00:00","P","06E","20","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2012-05-22 00:00:00","U","08A","16","B","2012-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2013-02-06 00:00:00","F","06B","28","","","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2011-06-01 00:00:00","F","10D","33","","","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2011-12-19 00:00:00","P","05D","23","","","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2012-09-08 00:00:00","P","06F","22","","","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2012-10-17 00:00:00","U","04M","12","B","2012-10-17 00:00:00","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2011-03-08 00:00:00","F","06C","17","C","2011-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2011-03-08 00:00:00","F","10B","17","C","2011-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2011-05-10 00:00:00","U","06D","24","","","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2011-05-10 00:00:00","U","08A","24","","","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2012-03-03 00:00:00","P","06D","6","","","2013-09-13 01:01:06.177000000" +"41612358","CAFE CNN GOURMET DELI","1","315","PARK AVENUE SOUTH","10010","2122540444","03","2011-10-25 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41612358","CAFE CNN GOURMET DELI","1","315","PARK AVENUE SOUTH","10010","2122540444","03","2011-10-25 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41546097","KUSHI Q","1","153","EAST 53 STREET","10022","2128886488","49","2011-08-08 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"41546097","KUSHI Q","1","153","EAST 53 STREET","10022","2128886488","49","2011-08-24 00:00:00","D","10F","13","A","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41612358","CAFE CNN GOURMET DELI","1","315","PARK AVENUE SOUTH","10010","2122540444","03","2012-04-03 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2011-05-25 00:00:00","F","02B","33","","","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2011-11-14 00:00:00","D","09C","9","A","2011-11-14 00:00:00","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2012-11-20 00:00:00","P","08C","19","","","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2012-12-04 00:00:00","U","04M","12","B","2012-12-04 00:00:00","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2013-07-02 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2011-08-10 00:00:00","P","04L","16","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2011-08-10 00:00:00","P","10D","16","","","2013-09-13 01:01:06.177000000" +"41593479","SKY FOOD COURT(SKY MALL)","4","40-24 ","COLLEGE POINT BOULEVARD ","11354","7189396688","20","2011-12-17 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41593479","SKY FOOD COURT(SKY MALL)","4","40-24 ","COLLEGE POINT BOULEVARD ","11354","7189396688","20","2011-12-17 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2012-10-22 00:00:00","F","15J","","","","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2013-01-17 00:00:00","F","15L","","","","2013-09-13 01:01:06.177000000" +"41613264","BIG E'S DELI","5","180 ","WEST SERVICE ROAD ","10314","7189666232","03","2012-10-02 00:00:00","F","10C","49","C","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2011-08-24 00:00:00","F","02G","23","C","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2011-08-24 00:00:00","F","06D","23","C","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2012-01-06 00:00:00","F","10F","15","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2012-02-15 00:00:00","D","02B","12","A","2012-02-15 00:00:00","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2012-07-02 00:00:00","F","10F","46","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2013-02-22 00:00:00","F","02H","31","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2011-07-14 00:00:00","U","06C","23","B","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2011-12-15 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2011-12-15 00:00:00","P","99B","18","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2013-02-06 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2013-07-26 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2011-03-02 00:00:00","P","02B","20","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2011-08-02 00:00:00","G","08A","72","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2012-02-28 00:00:00","F","10H","31","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2012-07-26 00:00:00","F","08C","30","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2012-08-30 00:00:00","D","10F","12","A","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41542304","JUNOON","1","27","WEST 24 STREET","10010","2124902100","44","2013-09-11 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2010-10-25 00:00:00","D","10H","11","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-11-25 00:00:00","F","02B","40","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2011-11-25 00:00:00","F","04L","40","","","2013-09-13 01:01:06.177000000" +"41532380","JJ s ASIAN FUSION","4","37-05","31 AVENUE","11103","7186268888","49","2012-05-16 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41552160","NAGOYA GOURMET","4","25-73","FRANCIS LEWIS BOULEVARD","11358","7182810188","49","2012-04-05 00:00:00","D","06D","10","A","2012-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2011-01-14 00:00:00","D","06C","10","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2011-05-09 00:00:00","U","04C","14","B","2011-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-02-24 00:00:00","F","06A","29","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-04-12 00:00:00","G","08C","62","","","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2011-06-21 00:00:00","P","09B","17","","","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2011-08-30 00:00:00","U","04C","18","B","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41542304","JUNOON","1","27","WEST 24 STREET","10010","2124902100","44","2013-09-11 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41533145","SAL'S PIZZERIA","3","119","WYCKOFF AVENUE","11237","7183865299","62","2013-07-10 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2013-04-27 00:00:00","P","04C","23","","","2013-09-13 01:01:06.177000000" +"41533744","SUBWAY","1","455","WEST 34 STREET","10001","6465971577","70","2011-04-12 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2011-02-10 00:00:00","F","02G","55","","","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2011-02-22 00:00:00","D","06C","9","A","2011-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2011-02-22 00:00:00","D","10F","9","A","2011-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2011-06-13 00:00:00","G","10H","40","","","2013-09-13 01:01:06.177000000" +"41546097","KUSHI Q","1","153","EAST 53 STREET","10022","2128886488","49","2011-08-08 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41546097","KUSHI Q","1","153","EAST 53 STREET","10022","2128886488","49","2011-08-24 00:00:00","D","04C","13","A","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2011-01-31 00:00:00","D","10B","10","","","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2011-04-27 00:00:00","D","10B","13","A","2011-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41553012","SAKE JAPANESE RESTAURANT","3","2347","86 STREET","11214","7182656288","49","2011-11-17 00:00:00","D","02G","11","A","2011-11-17 00:00:00","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2011-07-05 00:00:00","G","04L","50","","","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2011-07-05 00:00:00","G","10F","50","","","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2013-04-02 00:00:00","F","08A","18","","","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2013-04-02 00:00:00","F","10D","18","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2012-03-19 00:00:00","O","10F","2","P","2012-03-19 00:00:00","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2012-05-07 00:00:00","D","08A","9","A","2012-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2012-10-09 00:00:00","F","04N","30","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2012-10-09 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2012-10-09 00:00:00","F","09C","30","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2012-12-04 00:00:00","U","08A","19","B","2012-12-04 00:00:00","2013-09-13 01:01:06.177000000" +"41547568","HAGANE HIBACHI & JAPANESE GRILL","4","161-02","CROSSBAY BOULEVARD","11414","7188358385","49","2010-12-16 00:00:00","D","10F","5","","","2013-09-13 01:01:06.177000000" +"41547568","HAGANE HIBACHI & JAPANESE GRILL","4","161-02","CROSSBAY BOULEVARD","11414","7188358385","49","2011-01-25 00:00:00","P","06E","17","","","2013-09-13 01:01:06.177000000" +"41547568","HAGANE HIBACHI & JAPANESE GRILL","4","161-02","CROSSBAY BOULEVARD","11414","7188358385","49","2011-01-25 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41547568","HAGANE HIBACHI & JAPANESE GRILL","4","161-02","CROSSBAY BOULEVARD","11414","7188358385","49","2011-03-12 00:00:00","D","06E","11","A","2011-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41547568","HAGANE HIBACHI & JAPANESE GRILL","4","161-02","CROSSBAY BOULEVARD","11414","7188358385","49","2011-11-07 00:00:00","P","05D","17","","","2013-09-13 01:01:06.177000000" +"41547596","SUSHI TATSU","3","1185","BEDFORD AVENUE","11216","3479851198","05","2012-02-01 00:00:00","F","08A","49","C","2012-02-01 00:00:00","2013-09-13 01:01:06.177000000" +"41543275","KARAOKE NEMO/TRECE","1","54 ","EAST 13 STREET ","10003","2124775577","55","2013-07-31 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41543275","KARAOKE NEMO/TRECE","1","54 ","EAST 13 STREET ","10003","2124775577","55","2013-07-31 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2011-01-11 00:00:00","D","08A","11","","","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2011-05-04 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2012-02-02 00:00:00","P","04M","19","","","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2012-09-17 00:00:00","U","04J","25","B","2012-09-17 00:00:00","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2010-12-13 00:00:00","P","04A","25","","","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2011-12-16 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2011-12-27 00:00:00","D","08A","9","A","2011-12-27 00:00:00","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2013-05-18 00:00:00","P","04M","19","","","2013-09-13 01:01:06.177000000" +"41615409","HOT KITCHEN","1","104","2 AVENUE","10003","2122283090","20","2013-01-03 00:00:00","F","10D","49","C","2013-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2011-02-26 00:00:00","U","04K","27","B","2011-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2011-10-04 00:00:00","D","09C","10","A","2011-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-01-27 00:00:00","F","10F","39","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-06-27 00:00:00","F","02B","30","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-06-27 00:00:00","F","06C","30","","","2013-09-13 01:01:06.177000000" +"41616445","AKURA SUSHI","1","39","EAST 31 STREET","10016","2123793623","49","2012-12-26 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2011-07-05 00:00:00","P","10B","16","","","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2011-09-29 00:00:00","U","02B","24","B","2011-09-29 00:00:00","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2012-04-17 00:00:00","U","10F","9","B","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2012-10-25 00:00:00","P","10F","10","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-06-27 00:00:00","F","10B","30","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2013-01-04 00:00:00","U","04L","26","B","2013-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2013-01-04 00:00:00","U","04N","26","B","2013-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2013-01-04 00:00:00","U","10F","26","B","2013-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2011-02-10 00:00:00","F","04H","55","","","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2011-02-10 00:00:00","F","08A","55","","","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2011-06-13 00:00:00","G","08A","40","","","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2011-09-27 00:00:00","U","10B","10","B","2011-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2012-03-08 00:00:00","U","08A","9","B","2012-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2012-04-06 00:00:00","P","04H","18","","","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2012-04-17 00:00:00","U","04L","13","B","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2013-08-20 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41554341","SAKURA TOKYO","3","604 ","NOSTRAND AVENUE ","11216","7187568787","49","2011-04-18 00:00:00","D","06C","8","A","2011-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41597054","SUSHI YASAKA","1","251","WEST 72 STREET","10023","2124968460","49","2011-09-29 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41597054","SUSHI YASAKA","1","251","WEST 72 STREET","10023","2124968460","49","2012-05-02 00:00:00","D","02B","13","A","2012-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2011-08-15 00:00:00","P","06E","20","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2011-09-12 00:00:00","U","08A","20","B","2011-09-12 00:00:00","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2012-11-20 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2011-08-24 00:00:00","F","10B","23","C","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41547568","HAGANE HIBACHI & JAPANESE GRILL","4","161-02","CROSSBAY BOULEVARD","11414","7188358385","49","2011-03-12 00:00:00","D","10B","11","A","2011-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41547568","HAGANE HIBACHI & JAPANESE GRILL","4","161-02","CROSSBAY BOULEVARD","11414","7188358385","49","2012-03-28 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2010-10-28 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2012-04-03 00:00:00","F","04L","40","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2012-09-12 00:00:00","U","02C","12","B","2012-09-12 00:00:00","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2012-09-12 00:00:00","U","06F","12","B","2012-09-12 00:00:00","2013-09-13 01:01:06.177000000" +"41554863","FU ON KITCHEN","1","2419 ","ADAM CLAYTON POWELL JR BOULEVARD ","10030","2128625660","22","2011-03-17 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-03-21 00:00:00","F","04C","41","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-03-21 00:00:00","F","04M","41","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-03-21 00:00:00","F","06F","41","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-11-19 00:00:00","F","04A","28","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-12-11 00:00:00","F","04K","65","C","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-12-11 00:00:00","F","08A","65","C","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-12-11 00:00:00","F","10B","65","C","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2013-05-24 00:00:00","F","08A","78","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2013-02-22 00:00:00","F","02B","31","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2010-11-30 00:00:00","D","20D","","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2012-05-09 00:00:00","P","04L","20","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2012-05-22 00:00:00","U","04L","16","B","2012-05-22 00:00:00","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2013-07-26 00:00:00","P","02B","18","","","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2011-12-29 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2013-07-31 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2010-12-13 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41547974","SAKURA JAPANESE RESTAURANT","3","346","GRAHAM AVENUE","11211","7182188056","49","2011-07-30 00:00:00","P","06E","21","","","2013-09-13 01:01:06.177000000" +"41547974","SAKURA JAPANESE RESTAURANT","3","346","GRAHAM AVENUE","11211","7182188056","49","2011-09-13 00:00:00","D","04N","12","A","2011-09-13 00:00:00","2013-09-13 01:01:06.177000000" +"41597839","KIDO SUSHI (QUEENS CENTER MALL)","4","90-15","QUEENS BOULEVARD","11373","7182713688","49","2011-07-30 00:00:00","F","02B","43","","","2013-09-13 01:01:06.177000000" +"41597839","KIDO SUSHI (QUEENS CENTER MALL)","4","90-15","QUEENS BOULEVARD","11373","7182713688","49","2011-07-30 00:00:00","F","05E","43","","","2013-09-13 01:01:06.177000000" +"41597839","KIDO SUSHI (QUEENS CENTER MALL)","4","90-15","QUEENS BOULEVARD","11373","7182713688","49","2013-04-26 00:00:00","G","04L","71","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2011-04-07 00:00:00","P","06B","15","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2011-05-09 00:00:00","U","10F","14","B","2011-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-09-05 00:00:00","P","04L","27","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-09-05 00:00:00","P","10F","27","","","2013-09-13 01:01:06.177000000" +"41545732","LEMONGRASS GRILL","3","156","COURT STREET","11201","7185229728","82","2012-07-24 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41617529","ELISA CAFE","3","254","THROOP AVENUE","11206","7184558349","53","2011-10-21 00:00:00","F","06A","49","C","2011-10-21 00:00:00","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2012-05-22 00:00:00","F","06A","48","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2012-05-22 00:00:00","F","08A","48","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2012-10-25 00:00:00","F","06A","36","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2013-02-13 00:00:00","F","04C","25","C","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2013-07-10 00:00:00","F","04H","38","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2013-07-10 00:00:00","F","06C","38","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2013-07-10 00:00:00","F","08A","38","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2013-07-10 00:00:00","F","10B","38","","","2013-09-13 01:01:06.177000000" +"41618024","LA NORTENITA RESTAURANT","3","833","FRANKLIN AVENUE","11225","3477070791","53","2013-03-18 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2011-10-05 00:00:00","G","06A","20","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2011-12-15 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-07-23 00:00:00","F","04L","23","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2011-08-22 00:00:00","D","10F","11","A","2011-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2012-06-20 00:00:00","D","10A","8","A","2012-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2012-06-20 00:00:00","D","10B","8","A","2012-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2012-12-18 00:00:00","F","06E","23","C","2012-12-18 00:00:00","2013-09-13 01:01:06.177000000" +"41546097","KUSHI Q","1","153","EAST 53 STREET","10022","2128886488","49","2010-12-17 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41618303","GIACOMO'S WOOD FIRED PIZZA","3","7902 ","THIRD AVENUE ","11209","7184396993","48","2013-08-09 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41618435","SENZA SUSHI/LOBSTER SHRIMP ROLL","1","4","PENNSYLVANIA PLAZA","10001","2124656000","49","2012-01-06 00:00:00","D","05H","12","","","2013-09-13 01:01:06.177000000" +"41618609","Sushi Akio","4","71-45","YELLOWSTONE BOULEVARD","11375","7185442199","49","2011-09-23 00:00:00","D","10B","8","","","2013-09-13 01:01:06.177000000" +"41538666","PICCOLO CAFE","1","274","WEST 40 STREET","10018","2123020143","14","2011-12-28 00:00:00","F","05H","49","C","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2012-03-01 00:00:00","U","10F","14","B","2012-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2013-05-18 00:00:00","F","02G","26","","","2013-09-13 01:01:06.177000000" +"41551883","OTTOMANELLI N.Y. GRILL","1","1424","LEXINGTON AVENUE","10128","2124266886","48","2011-07-28 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2012-08-20 00:00:00","F","06D","64","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-02-26 00:00:00","F","02G","67","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-02-26 00:00:00","F","04M","67","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-02-26 00:00:00","F","08A","67","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-03-27 00:00:00","U","06F","10","B","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"41547568","HAGANE HIBACHI & JAPANESE GRILL","4","161-02","CROSSBAY BOULEVARD","11414","7188358385","49","2011-03-12 00:00:00","D","09B","11","A","2011-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41547568","HAGANE HIBACHI & JAPANESE GRILL","4","161-02","CROSSBAY BOULEVARD","11414","7188358385","49","2011-11-23 00:00:00","D","10F","5","A","2011-11-23 00:00:00","2013-09-13 01:01:06.177000000" +"41547568","HAGANE HIBACHI & JAPANESE GRILL","4","161-02","CROSSBAY BOULEVARD","11414","7188358385","49","2012-03-28 00:00:00","P","10E","19","","","2013-09-13 01:01:06.177000000" +"41552160","NAGOYA GOURMET","4","25-73","FRANCIS LEWIS BOULEVARD","11358","7182810188","49","2012-03-01 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"41550400","EL MIXTECO","3","192 ","AVENUE U ","11223","7183723550","55","2013-06-13 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41557632","HANA JAPANESE BISTRO","3","532","NEPTUNE AVENUE","11224","7182668889","49","2012-06-14 00:00:00","D","02B","13","A","2012-06-14 00:00:00","2013-09-13 01:01:06.177000000" +"41557632","HANA JAPANESE BISTRO","3","532","NEPTUNE AVENUE","11224","7182668889","49","2013-06-20 00:00:00","F","10F","22","","","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2011-05-31 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2013-08-26 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2011-12-29 00:00:00","P","06E","23","","","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2011-01-07 00:00:00","C","08C","12","A","2011-01-07 00:00:00","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2011-08-11 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2011-12-16 00:00:00","F","99B","31","","","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2013-05-18 00:00:00","P","06E","19","","","2013-09-13 01:01:06.177000000" +"41547974","SAKURA JAPANESE RESTAURANT","3","346","GRAHAM AVENUE","11211","7182188056","49","2011-02-19 00:00:00","P","06F","14","","","2013-09-13 01:01:06.177000000" +"41601132","MARS CAFE","1","58","WEST 39 STREET","10018","2129974200","03","2012-08-24 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41601132","MARS CAFE","1","58","WEST 39 STREET","10018","2129974200","03","2012-08-24 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41539948","TOKYO HIBACHI STEAK HOUSE & SUSHI","4","184-16","HORACE HARDING EXPRESSWAY","11365","7184632999","49","2012-08-25 00:00:00","F","06F","43","","","2013-09-13 01:01:06.177000000" +"41601691","WAZA SUSHI","3","485","MYRTLE AVENUE","11205","7183993839","49","2011-10-15 00:00:00","B","10F","12","A","2011-10-15 00:00:00","2013-09-13 01:01:06.177000000" +"41601691","WAZA SUSHI","3","485","MYRTLE AVENUE","11205","7183993839","49","2012-09-27 00:00:00","F","04M","32","","","2013-09-13 01:01:06.177000000" +"41601691","WAZA SUSHI","3","485","MYRTLE AVENUE","11205","7183993839","49","2012-10-11 00:00:00","D","02B","7","A","2012-10-11 00:00:00","2013-09-13 01:01:06.177000000" +"41551883","OTTOMANELLI N.Y. GRILL","1","1424","LEXINGTON AVENUE","10128","2124266886","48","2011-07-28 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41551883","OTTOMANELLI N.Y. GRILL","1","1424","LEXINGTON AVENUE","10128","2124266886","48","2011-07-28 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41552160","NAGOYA GOURMET","4","25-73","FRANCIS LEWIS BOULEVARD","11358","7182810188","49","2011-08-01 00:00:00","P","06F","20","","","2013-09-13 01:01:06.177000000" +"41552160","NAGOYA GOURMET","4","25-73","FRANCIS LEWIS BOULEVARD","11358","7182810188","49","2011-08-24 00:00:00","U","10F","10","B","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41552160","NAGOYA GOURMET","4","25-73","FRANCIS LEWIS BOULEVARD","11358","7182810188","49","2012-03-01 00:00:00","P","06A","17","","","2013-09-13 01:01:06.177000000" +"41552160","NAGOYA GOURMET","4","25-73","FRANCIS LEWIS BOULEVARD","11358","7182810188","49","2012-09-19 00:00:00","F","04L","20","","","2013-09-13 01:01:06.177000000" +"41558663","MR. RICE CHINESE RESTAURANT","5","5 ","WALKER STREET ","10302","7188160080","20","2012-06-06 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41553012","SAKE JAPANESE RESTAURANT","3","2347","86 STREET","11214","7182656288","49","2011-06-02 00:00:00","F","04M","36","","","2013-09-13 01:01:06.177000000" +"41553012","SAKE JAPANESE RESTAURANT","3","2347","86 STREET","11214","7182656288","49","2011-06-02 00:00:00","F","09C","36","","","2013-09-13 01:01:06.177000000" +"41553012","SAKE JAPANESE RESTAURANT","3","2347","86 STREET","11214","7182656288","49","2011-06-30 00:00:00","D","10F","9","A","2011-06-30 00:00:00","2013-09-13 01:01:06.177000000" +"41553012","SAKE JAPANESE RESTAURANT","3","2347","86 STREET","11214","7182656288","49","2011-11-17 00:00:00","D","08C","11","A","2011-11-17 00:00:00","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2011-04-14 00:00:00","D","08A","11","","","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2011-04-14 00:00:00","D","10B","11","","","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2011-09-21 00:00:00","D","06E","12","A","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2011-05-04 00:00:00","P","09A","27","","","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2011-06-21 00:00:00","F","04C","37","C","2011-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41540943","ASIAN FUSION STONE","1","11","STONE STREET","10004","2127421188","05","2010-12-07 00:00:00","F","08A","49","C","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2011-11-02 00:00:00","G","10B","66","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2011-11-03 00:00:00","W","04L","14","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2012-01-24 00:00:00","P","06E","26","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2012-01-24 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2012-02-07 00:00:00","F","04L","31","C","2012-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2012-07-10 00:00:00","P","09C","17","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2012-07-23 00:00:00","U","10D","27","B","2012-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2012-09-17 00:00:00","U","08A","25","B","2012-09-17 00:00:00","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2013-04-29 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2013-08-14 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41622616","TOTO SUSHI","1","216","THOMPSON STREET","10012","2125334433","49","2011-11-14 00:00:00","U","04A","10","B","2011-11-14 00:00:00","2013-09-13 01:01:06.177000000" +"41622616","TOTO SUSHI","1","216","THOMPSON STREET","10012","2125334433","49","2013-02-21 00:00:00","P","06F","22","","","2013-09-13 01:01:06.177000000" +"41622616","TOTO SUSHI","1","216","THOMPSON STREET","10012","2125334433","49","2013-02-21 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2012-04-17 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2012-04-17 00:00:00","F","06A","31","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2012-05-16 00:00:00","F","03A","43","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2012-05-16 00:00:00","F","06D","43","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2012-05-16 00:00:00","F","06E","43","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2012-05-16 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2012-06-08 00:00:00","U","06A","14","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2012-11-21 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2013-06-27 00:00:00","P","02G","14","","","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2011-02-24 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2011-09-01 00:00:00","P","99B","22","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-01-27 00:00:00","F","04H","39","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-11-26 00:00:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-11-26 00:00:00","F","04M","29","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-11-26 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2013-01-04 00:00:00","U","02B","26","B","2013-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2013-01-04 00:00:00","U","10A","26","B","2013-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41553012","SAKE JAPANESE RESTAURANT","3","2347","86 STREET","11214","7182656288","49","2011-03-04 00:00:00","D","06D","7","","","2013-09-13 01:01:06.177000000" +"41553012","SAKE JAPANESE RESTAURANT","3","2347","86 STREET","11214","7182656288","49","2011-03-04 00:00:00","D","10B","7","","","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2011-07-05 00:00:00","G","04H","50","","","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2011-07-05 00:00:00","G","08A","50","","","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2012-01-26 00:00:00","D","10F","9","A","2012-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2013-04-02 00:00:00","F","02B","18","","","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2013-05-03 00:00:00","U","02G","25","","","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2011-02-24 00:00:00","P","06F","21","","","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2011-10-17 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2013-03-27 00:00:00","G","02B","53","","","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2013-03-27 00:00:00","G","04L","53","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2012-03-07 00:00:00","D","06C","11","A","2012-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2013-02-07 00:00:00","F","09C","32","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2013-02-26 00:00:00","D","06C","12","A","2013-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41554341","SAKURA TOKYO","3","604 ","NOSTRAND AVENUE ","11216","7187568787","49","2012-03-26 00:00:00","D","09B","13","A","2012-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41554341","SAKURA TOKYO","3","604 ","NOSTRAND AVENUE ","11216","7187568787","49","2012-03-26 00:00:00","D","10H","13","A","2012-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2011-06-21 00:00:00","F","02G","37","C","2011-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41550400","EL MIXTECO","3","192 ","AVENUE U ","11223","7183723550","55","2013-06-13 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41550400","EL MIXTECO","3","192 ","AVENUE U ","11223","7183723550","55","2013-06-13 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2011-03-02 00:00:00","P","04L","20","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2011-08-02 00:00:00","G","02B","72","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2011-08-04 00:00:00","W","09C","24","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2013-03-06 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41624200","WASABI","3","638","MANHATTAN AVENUE","11222","7186099368","49","2012-03-10 00:00:00","P","04L","13","","","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2011-12-13 00:00:00","D","10F","11","A","2011-12-13 00:00:00","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2012-12-13 00:00:00","P","04M","21","","","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2013-07-02 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41554863","FU ON KITCHEN","1","2419 ","ADAM CLAYTON POWELL JR BOULEVARD ","10030","2128625660","22","2011-03-17 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2011-01-25 00:00:00","P","06E","19","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2011-01-25 00:00:00","P","10B","19","","","2013-09-13 01:01:06.177000000" +"41624526","YUN NAN GUO QIAO RICE NOODLE","4","136-20","ROOSEVELT AVENUE","11354","7188881281","20","2013-07-29 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41542304","JUNOON","1","27","WEST 24 STREET","10010","2124902100","44","2013-09-11 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-02-14 00:00:00","D","08A","11","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-03-08 00:00:00","P","04M","14","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-08-17 00:00:00","F","04C","28","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-08-17 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-10-20 00:00:00","P","04N","19","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-11-16 00:00:00","U","06E","7","B","2011-11-16 00:00:00","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2012-06-08 00:00:00","F","04E","60","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2012-06-08 00:00:00","F","06C","60","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2012-06-08 00:00:00","F","08C","60","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2012-06-08 00:00:00","F","10B","60","","","2013-09-13 01:01:06.177000000" +"41542939","MAGGIE BROWN","3","455","MYRTLE AVENUE","11205","7186437001","03","2011-06-09 00:00:00","G","04J","49","","","2013-09-13 01:01:06.177000000" +"41605223","YU SUSHI","1","827","WEST 181 STREET","10033","2127818833","49","2011-08-22 00:00:00","D","10B","13","","","2013-09-13 01:01:06.177000000" +"41605223","YU SUSHI","1","827","WEST 181 STREET","10033","2127818833","49","2012-10-02 00:00:00","D","06B","13","A","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41552160","NAGOYA GOURMET","4","25-73","FRANCIS LEWIS BOULEVARD","11358","7182810188","49","2011-08-01 00:00:00","P","04H","20","","","2013-09-13 01:01:06.177000000" +"41552160","NAGOYA GOURMET","4","25-73","FRANCIS LEWIS BOULEVARD","11358","7182810188","49","2011-08-01 00:00:00","P","06E","20","","","2013-09-13 01:01:06.177000000" +"41552160","NAGOYA GOURMET","4","25-73","FRANCIS LEWIS BOULEVARD","11358","7182810188","49","2011-08-24 00:00:00","U","04C","10","B","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41552160","NAGOYA GOURMET","4","25-73","FRANCIS LEWIS BOULEVARD","11358","7182810188","49","2012-03-01 00:00:00","P","04L","17","","","2013-09-13 01:01:06.177000000" +"41552160","NAGOYA GOURMET","4","25-73","FRANCIS LEWIS BOULEVARD","11358","7182810188","49","2012-03-01 00:00:00","P","10D","17","","","2013-09-13 01:01:06.177000000" +"41605380","NEW HAWAII SEA","2","1475","WILLIAMSBRIDGE ROAD","10461","7188637900","22","2011-08-01 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41605380","NEW HAWAII SEA","2","1475","WILLIAMSBRIDGE ROAD","10461","7188637900","22","2011-08-01 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41605380","NEW HAWAII SEA","2","1475","WILLIAMSBRIDGE ROAD","10461","7188637900","22","2011-08-01 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2011-11-16 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2011-08-26 00:00:00","F","04H","38","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2011-12-15 00:00:00","G","10B","39","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2012-04-03 00:00:00","F","06E","20","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2012-04-03 00:00:00","F","10F","20","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2012-09-27 00:00:00","P","03D","13","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2013-06-01 00:00:00","F","02G","18","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2011-02-25 00:00:00","U","02G","19","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2011-07-15 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2011-12-14 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2012-05-15 00:00:00","F","06D","17","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2012-12-18 00:00:00","F","06F","23","C","2012-12-18 00:00:00","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2012-06-13 00:00:00","U","08C","17","B","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41554863","FU ON KITCHEN","1","2419 ","ADAM CLAYTON POWELL JR BOULEVARD ","10030","2128625660","22","2011-03-17 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41552497","OLD COUNTRY DELI & RESTAURANT","4","52-03","METROPOLITAN AVENUE","11385","7183661400","03","2011-08-11 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2011-02-17 00:00:00","D","","","","","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2012-01-10 00:00:00","P","05D","22","","","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2012-02-14 00:00:00","U","10B","18","B","2012-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2013-05-14 00:00:00","F","06D","18","","","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2011-12-01 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2011-12-01 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2011-01-18 00:00:00","P","10F","13","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2011-08-22 00:00:00","D","10B","11","A","2011-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2012-11-27 00:00:00","F","06F","42","","","2013-09-13 01:01:06.177000000" +"41556769","BLUE RIBBON SUSHI BAR & GRILL ROOF DECK","1","6","COLUMBUS CIRCLE","10019","2122290404","49","2011-07-05 00:00:00","D","05D","10","A","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2012-07-26 00:00:00","F","06A","27","C","2012-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41562299","SAKE JAPANESE CUISINE","3","324-328 ","CHURCH AVENUE ","11218","7188515299","49","2011-05-12 00:00:00","D","10A","13","A","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"41562299","SAKE JAPANESE CUISINE","3","324-328 ","CHURCH AVENUE ","11218","7188515299","49","2011-05-12 00:00:00","D","10B","13","A","2011-05-12 00:00:00","2013-09-13 01:01:06.177000000" +"41562299","SAKE JAPANESE CUISINE","3","324-328 ","CHURCH AVENUE ","11218","7188515299","49","2012-04-26 00:00:00","F","06C","32","","","2013-09-13 01:01:06.177000000" +"41553012","SAKE JAPANESE RESTAURANT","3","2347","86 STREET","11214","7182656288","49","2011-11-17 00:00:00","D","10F","11","A","2011-11-17 00:00:00","2013-09-13 01:01:06.177000000" +"41545050","PATRICIA'S","2","1082 ","MORRIS PARK AVENUE ","10461","7184099069","48","2011-05-04 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2012-07-02 00:00:00","F","06F","46","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2012-07-02 00:00:00","F","08B","46","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2013-02-22 00:00:00","F","06F","31","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2011-06-29 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2011-07-14 00:00:00","U","08A","23","B","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2011-07-14 00:00:00","U","08B","23","B","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2011-12-28 00:00:00","D","06E","13","A","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2013-02-06 00:00:00","F","06E","28","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2013-02-28 00:00:00","U","02B","17","B","2013-02-28 00:00:00","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2013-07-26 00:00:00","P","06F","18","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-03-01 00:00:00","D","06C","5","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-06-17 00:00:00","F","08A","63","","","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2013-05-03 00:00:00","U","06E","25","","","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2011-01-11 00:00:00","D","10F","11","","","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2012-02-02 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2012-09-07 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41627232","NEW CHOPSTICK","4","91-28","CORONA AVENUE","11373","7186990866","49","2012-01-26 00:00:00","P","10H","19","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2011-04-07 00:00:00","P","10A","15","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2011-04-07 00:00:00","P","10B","15","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2011-05-09 00:00:00","U","06D","14","B","2011-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-02-24 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-04-12 00:00:00","G","04H","62","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-04-12 00:00:00","G","06C","62","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-11-15 00:00:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-12-01 00:00:00","F","04H","51","C","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-12-01 00:00:00","F","08A","51","C","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-02-09 00:00:00","G","06C","83","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-02-09 00:00:00","G","10B","83","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-02-13 00:00:00","W","04L","10","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-03-26 00:00:00","F","08A","7","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-03-26 00:00:00","F","10D","7","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-08-21 00:00:00","P","06A","5","","","2013-09-13 01:01:06.177000000" +"41607908","LONGEVOUSJOY Ramen Sushi Brasserie","3","6610","BAY PARKWAY","11204","9178926068","49","2012-04-05 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"41607908","LONGEVOUSJOY Ramen Sushi Brasserie","3","6610","BAY PARKWAY","11204","9178926068","49","2012-04-05 00:00:00","P","10H","24","","","2013-09-13 01:01:06.177000000" +"41608024","KOBEYAKI","1","293 ","7 AVENUE ","10001","2122425500","49","2011-10-14 00:00:00","E","05D","28","","","2013-09-13 01:01:06.177000000" +"41557632","HANA JAPANESE BISTRO","3","532","NEPTUNE AVENUE","11224","7182668889","49","2011-01-28 00:00:00","D","10F","2","","","2013-09-13 01:01:06.177000000" +"41557632","HANA JAPANESE BISTRO","3","532","NEPTUNE AVENUE","11224","7182668889","49","2012-06-14 00:00:00","D","06E","13","A","2012-06-14 00:00:00","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2011-06-20 00:00:00","D","06D","7","A","2011-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2012-05-02 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2012-06-11 00:00:00","D","06E","10","A","2012-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2013-08-26 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41556769","BLUE RIBBON SUSHI BAR & GRILL ROOF DECK","1","6","COLUMBUS CIRCLE","10019","2122290404","49","2011-12-15 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41556769","BLUE RIBBON SUSHI BAR & GRILL ROOF DECK","1","6","COLUMBUS CIRCLE","10019","2122290404","49","2011-12-15 00:00:00","P","06C","18","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-04-12 00:00:00","G","08A","62","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-09-05 00:00:00","P","06D","27","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2011-01-25 00:00:00","P","04K","19","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2011-02-26 00:00:00","U","08A","27","B","2011-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2011-09-01 00:00:00","P","04C","22","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2011-10-04 00:00:00","D","10B","10","A","2011-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-01-27 00:00:00","F","09B","39","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-02-08 00:00:00","U","02G","18","B","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-02-08 00:00:00","U","04K","18","B","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-06-27 00:00:00","F","06A","30","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-07-10 00:00:00","D","10B","6","A","2012-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2013-01-04 00:00:00","U","08A","26","B","2013-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2013-06-07 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2011-08-30 00:00:00","P","06E","16","","","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2011-09-28 00:00:00","U","08A","19","B","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2012-04-30 00:00:00","D","06D","12","A","2012-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2013-07-17 00:00:00","F","04N","16","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2013-06-07 00:00:00","P","10B","24","","","2013-09-13 01:01:06.177000000" +"41628216","OVI'S PLACE","3","2925","AVENUE H","11210","7184211640","03","2012-12-03 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41628216","OVI'S PLACE","3","2925","AVENUE H","11210","7184211640","03","2012-12-03 00:00:00","G","06F","49","","","2013-09-13 01:01:06.177000000" +"41628216","OVI'S PLACE","3","2925","AVENUE H","11210","7184211640","03","2012-12-03 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41557632","HANA JAPANESE BISTRO","3","532","NEPTUNE AVENUE","11224","7182668889","49","2011-03-03 00:00:00","D","06C","12","A","2011-03-03 00:00:00","2013-09-13 01:01:06.177000000" +"41557632","HANA JAPANESE BISTRO","3","532","NEPTUNE AVENUE","11224","7182668889","49","2012-01-20 00:00:00","D","09B","10","A","2012-01-20 00:00:00","2013-09-13 01:01:06.177000000" +"41557632","HANA JAPANESE BISTRO","3","532","NEPTUNE AVENUE","11224","7182668889","49","2013-06-20 00:00:00","F","06D","22","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2011-10-21 00:00:00","P","06C","24","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2011-11-18 00:00:00","U","10F","20","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2012-04-09 00:00:00","F","09A","24","","","2013-09-13 01:01:06.177000000" +"41628361","121 FULTON STREET","1","121","FULTON STREET","10038","6465456647","03","2011-12-21 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2011-05-31 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2011-06-20 00:00:00","D","10F","7","A","2011-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2011-12-14 00:00:00","P","06C","26","","","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2011-12-27 00:00:00","D","04H","9","A","2011-12-27 00:00:00","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2012-05-02 00:00:00","P","04C","23","","","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2012-06-11 00:00:00","D","09C","10","A","2012-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2013-01-31 00:00:00","F","06C","34","","","2013-09-13 01:01:06.177000000" +"41628521","KOTOBUKI","1","56","3 AVENUE","10003","2123535088","49","2012-03-22 00:00:00","D","06C","10","","","2013-09-13 01:01:06.177000000" +"41628521","KOTOBUKI","1","56","3 AVENUE","10003","2123535088","49","2012-06-11 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"41628521","KOTOBUKI","1","56","3 AVENUE","10003","2123535088","49","2012-12-11 00:00:00","P","08C","17","","","2013-09-13 01:01:06.177000000" +"41628521","KOTOBUKI","1","56","3 AVENUE","10003","2123535088","49","2013-01-23 00:00:00","D","04L","13","A","2013-01-23 00:00:00","2013-09-13 01:01:06.177000000" +"41628657","OOTOYA JAPANESE RESTAURANT","1","8","WEST 18 STREET","10011","2122550018","49","2012-01-23 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41628657","OOTOYA JAPANESE RESTAURANT","1","8","WEST 18 STREET","10011","2122550018","49","2013-05-20 00:00:00","F","10J","29","","","2013-09-13 01:01:06.177000000" +"41564694","KOBE SUSHI","1","1472 ","YORK AVENUE ","10075","2129888628","49","2011-06-23 00:00:00","U","10F","3","B","2011-06-23 00:00:00","2013-09-13 01:01:06.177000000" +"41564694","KOBE SUSHI","1","1472 ","YORK AVENUE ","10075","2129888628","49","2012-03-29 00:00:00","D","06D","7","A","2012-03-29 00:00:00","2013-09-13 01:01:06.177000000" +"41564778","MELA'S CAFE","2","1735","WASHINGTON AVENUE","10457","7189012181","77","2013-05-01 00:00:00","G","04K","49","","","2013-09-13 01:01:06.177000000" +"41610636","RESOBOX","4","41-26","27 STREET","11101","7187843680","49","2011-11-28 00:00:00","D","10B","4","","","2013-09-13 01:01:06.177000000" +"41559465","THE COUNTRY KITCHEN","3","1991","ATLANTIC AVENUE","11233","7184980200","03","2012-08-31 00:00:00","F","10E","49","","","2013-09-13 01:01:06.177000000" +"41629054","KONDITORI","3","240","7 AVENUE","11215","3473350767","14","2012-08-02 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41629054","KONDITORI","3","240","7 AVENUE","11215","3473350767","14","2012-08-02 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41610754","EAST SEAFOOD CUISINE","3","714-726 ","65 STREET ","11220","7187650098","20","2011-12-27 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41610754","EAST SEAFOOD CUISINE","3","714-726 ","65 STREET ","11220","7187650098","20","2011-12-27 00:00:00","F","06B","49","","","2013-09-13 01:01:06.177000000" +"41610754","EAST SEAFOOD CUISINE","3","714-726 ","65 STREET ","11220","7187650098","20","2011-12-27 00:00:00","F","09B","49","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2011-01-18 00:00:00","P","02B","13","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2011-02-25 00:00:00","U","06F","19","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2011-08-22 00:00:00","D","02G","11","A","2011-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2012-05-15 00:00:00","F","04H","17","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2012-11-27 00:00:00","F","02G","42","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2012-11-27 00:00:00","F","06E","42","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2012-11-27 00:00:00","F","08A","42","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2012-11-27 00:00:00","F","08B","42","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2012-12-18 00:00:00","F","10F","23","C","2012-12-18 00:00:00","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2013-07-30 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2011-06-13 00:00:00","G","04M","40","","","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2012-03-08 00:00:00","U","04N","9","B","2012-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41547568","HAGANE HIBACHI & JAPANESE GRILL","4","161-02","CROSSBAY BOULEVARD","11414","7188358385","49","2012-03-28 00:00:00","P","06E","19","","","2013-09-13 01:01:06.177000000" +"41629243","OBENTO DELIGHT & ASIAN FUSION RESTAURANT","1","210","WEST 94 STREET","10025","2122222010","49","2012-01-25 00:00:00","U","02G","24","B","2012-01-25 00:00:00","2013-09-13 01:01:06.177000000" +"41547596","SUSHI TATSU","3","1185","BEDFORD AVENUE","11216","3479851198","05","2012-02-01 00:00:00","F","02G","49","C","2012-02-01 00:00:00","2013-09-13 01:01:06.177000000" +"41629592","USULUTECO 2 RESTAURANTE SALVADORENO","3","5014","3 AVENUE","11220","7184390079","53","2013-09-11 00:00:00","F","09B","49","","","2013-09-13 01:01:06.177000000" +"41559465","THE COUNTRY KITCHEN","3","1991","ATLANTIC AVENUE","11233","7184980200","03","2012-08-31 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2012-05-29 00:00:00","P","06F","19","","","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2013-02-07 00:00:00","F","04D","23","","","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2013-03-04 00:00:00","D","10B","7","A","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2011-12-16 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2013-05-18 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41547974","SAKURA JAPANESE RESTAURANT","3","346","GRAHAM AVENUE","11211","7182188056","49","2011-02-19 00:00:00","P","10F","14","","","2013-09-13 01:01:06.177000000" +"41547974","SAKURA JAPANESE RESTAURANT","3","346","GRAHAM AVENUE","11211","7182188056","49","2011-07-30 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41547974","SAKURA JAPANESE RESTAURANT","3","346","GRAHAM AVENUE","11211","7182188056","49","2011-09-13 00:00:00","D","08A","12","A","2011-09-13 00:00:00","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2011-09-08 00:00:00","D","10F","13","A","2011-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2013-02-05 00:00:00","F","06A","34","","","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2013-02-05 00:00:00","U","15I","","","","2013-09-13 01:01:06.177000000" +"41612358","CAFE CNN GOURMET DELI","1","315","PARK AVENUE SOUTH","10010","2122540444","03","2011-10-25 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41612358","CAFE CNN GOURMET DELI","1","315","PARK AVENUE SOUTH","10010","2122540444","03","2012-04-03 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41612358","CAFE CNN GOURMET DELI","1","315","PARK AVENUE SOUTH","10010","2122540444","03","2012-04-03 00:00:00","F","08B","49","","","2013-09-13 01:01:06.177000000" +"41629953","SHINOBI RAMEN","3","53 ","MORGAN AVENUE ","11237","6463429014","49","2013-03-22 00:00:00","D","02G","9","A","2013-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-02-14 00:00:00","D","04K","11","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-03-08 00:00:00","P","04K","14","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-08-17 00:00:00","F","06C","28","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-09-09 00:00:00","W","10F","13","","","2013-09-13 01:01:06.177000000" +"41613264","BIG E'S DELI","5","180 ","WEST SERVICE ROAD ","10314","7189666232","03","2012-10-02 00:00:00","F","04N","49","C","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41613264","BIG E'S DELI","5","180 ","WEST SERVICE ROAD ","10314","7189666232","03","2012-10-02 00:00:00","F","10A","49","C","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41613264","BIG E'S DELI","5","180 ","WEST SERVICE ROAD ","10314","7189666232","03","2012-10-02 00:00:00","F","10B","49","C","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2011-03-11 00:00:00","F","05H","39","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2011-03-29 00:00:00","U","02B","26","B","2011-03-29 00:00:00","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2012-01-11 00:00:00","P","06C","25","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2012-08-08 00:00:00","F","04N","35","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2012-08-08 00:00:00","F","08C","35","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2012-08-08 00:00:00","F","10B","35","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2012-08-20 00:00:00","F","06F","21","C","2012-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2013-02-25 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2013-08-05 00:00:00","P","04N","26","","","2013-09-13 01:01:06.177000000" +"41613672","A LA SAIGON","1","8-10","LIBERTY PLACE","10005","2122279855","28","2011-12-20 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41557632","HANA JAPANESE BISTRO","3","532","NEPTUNE AVENUE","11224","7182668889","49","2011-03-03 00:00:00","D","06D","12","A","2011-03-03 00:00:00","2013-09-13 01:01:06.177000000" +"41557673","RESTAURANT BATE","2","860","MELROSE AVENUE","10451","7184012283","02","2012-08-30 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41557673","RESTAURANT BATE","2","860","MELROSE AVENUE","10451","7184012283","02","2012-08-30 00:00:00","F","10D","49","","","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2011-05-31 00:00:00","P","06F","22","","","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2011-12-14 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2012-05-02 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2013-01-31 00:00:00","F","06D","34","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-03-08 00:00:00","P","08A","14","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-04-13 00:00:00","F","06D","19","C","2011-04-13 00:00:00","2013-09-13 01:01:06.177000000" +"41630942","SUSHI-TERIA","1","601 ","LEXINGTON AVENUE ","10022","9178810420","49","2013-03-07 00:00:00","F","09C","28","","","2013-09-13 01:01:06.177000000" +"41614161","AMY RUTH'S RESTAURANT","1","113","WEST 116 STREET","10026","2122808779","73","2013-08-16 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-04-13 00:00:00","F","06E","19","C","2011-04-13 00:00:00","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-08-17 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2012-06-08 00:00:00","F","08B","60","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2012-07-05 00:00:00","D","04L","13","A","2012-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41558663","MR. RICE CHINESE RESTAURANT","5","5 ","WALKER STREET ","10302","7188160080","20","2012-06-06 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2011-08-24 00:00:00","P","10H","19","","","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2011-09-27 00:00:00","D","06D","13","A","2011-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2011-09-27 00:00:00","D","06E","13","A","2011-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2012-01-10 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2013-06-04 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2011-10-06 00:00:00","F","09B","31","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2011-11-05 00:00:00","U","04N","13","B","2011-11-05 00:00:00","2013-09-13 01:01:06.177000000" +"41568107","TAPPO Thin Crust Pizza","1","49","WEST 24 STREET","10010","2128076888","48","2011-07-28 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41631683","LONG GRAIN","1","2534","BROADWAY","10025","2126660888","49","2012-01-18 00:00:00","F","02B","60","","","2013-09-13 01:01:06.177000000" +"41631683","LONG GRAIN","1","2534","BROADWAY","10025","2126660888","49","2012-06-25 00:00:00","F","10F","32","","","2013-09-13 01:01:06.177000000" +"41631683","LONG GRAIN","1","2534","BROADWAY","10025","2126660888","49","2012-07-30 00:00:00","U","04C","12","B","2012-07-30 00:00:00","2013-09-13 01:01:06.177000000" +"41615409","HOT KITCHEN","1","104","2 AVENUE","10003","2122283090","20","2013-01-03 00:00:00","F","08A","49","C","2013-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41562299","SAKE JAPANESE CUISINE","3","324-328 ","CHURCH AVENUE ","11218","7188515299","49","2011-02-15 00:00:00","D","10F","5","","","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2011-08-24 00:00:00","P","03A","19","","","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2012-01-10 00:00:00","P","10H","22","","","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2013-05-14 00:00:00","F","04L","18","","","2013-09-13 01:01:06.177000000" +"41562299","SAKE JAPANESE CUISINE","3","324-328 ","CHURCH AVENUE ","11218","7188515299","49","2012-04-26 00:00:00","F","06E","32","","","2013-09-13 01:01:06.177000000" +"41562299","SAKE JAPANESE CUISINE","3","324-328 ","CHURCH AVENUE ","11218","7188515299","49","2012-04-26 00:00:00","F","10F","32","","","2013-09-13 01:01:06.177000000" +"41550400","EL MIXTECO","3","192 ","AVENUE U ","11223","7183723550","55","2013-06-13 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41550400","EL MIXTECO","3","192 ","AVENUE U ","11223","7183723550","55","2013-06-13 00:00:00","F","10A","49","","","2013-09-13 01:01:06.177000000" +"41559465","THE COUNTRY KITCHEN","3","1991","ATLANTIC AVENUE","11233","7184980200","03","2012-08-31 00:00:00","F","10J","49","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-07-12 00:00:00","U","02G","13","B","2011-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-11-15 00:00:00","F","02B","36","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-02-09 00:00:00","G","04M","83","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-02-09 00:00:00","G","08A","83","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-02-09 00:00:00","G","09C","83","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-02-09 00:00:00","G","10I","83","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-02-13 00:00:00","W","04M","10","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-09-06 00:00:00","F","04L","32","C","2012-09-06 00:00:00","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2011-09-14 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2011-12-07 00:00:00","P","99B","24","","","2013-09-13 01:01:06.177000000" +"41562299","SAKE JAPANESE CUISINE","3","324-328 ","CHURCH AVENUE ","11218","7188515299","49","2012-05-09 00:00:00","D","10I","7","A","2012-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2012-03-19 00:00:00","G","09B","57","","","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2013-08-12 00:00:00","F","02G","66","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-12-01 00:00:00","F","02B","51","C","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-12-01 00:00:00","F","08C","51","C","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-04-09 00:00:00","U","04C","9","B","2012-04-09 00:00:00","2013-09-13 01:01:06.177000000" +"41551883","OTTOMANELLI N.Y. GRILL","1","1424","LEXINGTON AVENUE","10128","2124266886","48","2011-07-28 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41551883","OTTOMANELLI N.Y. GRILL","1","1424","LEXINGTON AVENUE","10128","2124266886","48","2011-07-28 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41617529","ELISA CAFE","3","254","THROOP AVENUE","11206","7184558349","53","2011-10-21 00:00:00","F","04N","49","C","2011-10-21 00:00:00","2013-09-13 01:01:06.177000000" +"41617529","ELISA CAFE","3","254","THROOP AVENUE","11206","7184558349","53","2011-10-21 00:00:00","F","08A","49","C","2011-10-21 00:00:00","2013-09-13 01:01:06.177000000" +"41617766","CHINA HOUSE CHINESE RESTAURANT","1","1624","MADISON AVENUE","10029","2123484888","20","2012-08-14 00:00:00","G","10I","49","","","2013-09-13 01:01:06.177000000" +"41633095","BAMBOO YA","4","9711 ","QUEENS BLVD ","11374","7188061228","49","2011-12-21 00:00:00","D","08C","5","","","2013-09-13 01:01:06.177000000" +"41633095","BAMBOO YA","4","9711 ","QUEENS BLVD ","11374","7188061228","49","2012-03-12 00:00:00","D","02B","12","A","2012-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41552160","NAGOYA GOURMET","4","25-73","FRANCIS LEWIS BOULEVARD","11358","7182810188","49","2012-09-19 00:00:00","F","04A","20","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2011-10-06 00:00:00","O","10B","7","B","2011-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2012-01-04 00:00:00","U","04L","19","B","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2012-07-10 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-02-14 00:00:00","F","04C","59","","","2013-09-13 01:01:06.177000000" +"41570357","PICKY EATERS RESTAURANT","3","1166","NOSTRAND AVENUE","11225","3477156432","17","2011-06-07 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-09-07 00:00:00","G","10B","36","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-11-16 00:00:00","U","04C","7","B","2011-11-16 00:00:00","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2012-06-08 00:00:00","F","05D","60","","","2013-09-13 01:01:06.177000000" +"41633781","NOIR","1","151","EAST 50 STREET","10022","2127531144","03","2013-04-17 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41633781","NOIR","1","151","EAST 50 STREET","10022","2127531144","03","2013-04-17 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41633781","NOIR","1","151","EAST 50 STREET","10022","2127531144","03","2013-04-17 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-02-14 00:00:00","F","04J","59","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-02-14 00:00:00","F","10F","59","","","2013-09-13 01:01:06.177000000" +"41618303","GIACOMO'S WOOD FIRED PIZZA","3","7902 ","THIRD AVENUE ","11209","7184396993","48","2013-08-09 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2011-03-26 00:00:00","F","09B","30","","","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2011-10-28 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41618609","Sushi Akio","4","71-45","YELLOWSTONE BOULEVARD","11375","7185442199","49","2011-12-14 00:00:00","D","10B","10","A","2011-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41618609","Sushi Akio","4","71-45","YELLOWSTONE BOULEVARD","11375","7185442199","49","2013-02-27 00:00:00","P","10I","7","","","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-10-19 00:00:00","F","04H","43","","","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-11-29 00:00:00","F","02G","40","C","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41552497","OLD COUNTRY DELI & RESTAURANT","4","52-03","METROPOLITAN AVENUE","11385","7183661400","03","2011-08-11 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41618609","Sushi Akio","4","71-45","YELLOWSTONE BOULEVARD","11375","7185442199","49","2013-03-26 00:00:00","D","10F","12","A","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41564694","KOBE SUSHI","1","1472 ","YORK AVENUE ","10075","2129888628","49","2011-05-31 00:00:00","P","10D","23","","","2013-09-13 01:01:06.177000000" +"41564778","MELA'S CAFE","2","1735","WASHINGTON AVENUE","10457","7189012181","77","2013-05-01 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41564778","MELA'S CAFE","2","1735","WASHINGTON AVENUE","10457","7189012181","77","2013-05-01 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2012-09-11 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2012-10-02 00:00:00","U","10F","12","B","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2012-08-29 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2011-04-14 00:00:00","D","04L","11","","","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2011-07-05 00:00:00","G","04M","50","","","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2012-01-26 00:00:00","D","10H","9","A","2012-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2012-02-27 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2013-05-14 00:00:00","F","10F","18","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2012-05-02 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2013-02-07 00:00:00","F","03B","35","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2013-02-07 00:00:00","F","08A","35","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2013-03-06 00:00:00","G","06A","46","","","2013-09-13 01:01:06.177000000" +"41635173","NETA","1","61","WEST 8 STREET","10011","2125052610","49","2012-06-21 00:00:00","U","06F","5","B","2012-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41635173","NETA","1","61","WEST 8 STREET","10011","2125052610","49","2012-11-27 00:00:00","F","04H","28","","","2013-09-13 01:01:06.177000000" +"41635173","NETA","1","61","WEST 8 STREET","10011","2125052610","49","2013-06-14 00:00:00","F","05F","64","","","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2011-05-04 00:00:00","P","06D","27","","","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2012-02-02 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2012-09-07 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2012-09-17 00:00:00","U","04L","25","B","2012-09-17 00:00:00","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2013-04-29 00:00:00","P","04L","20","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2011-02-26 00:00:00","U","06D","27","B","2011-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-01-27 00:00:00","F","02B","39","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-02-08 00:00:00","U","06A","18","B","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-04-27 00:00:00","U","02B","27","B","2011-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-10-18 00:00:00","F","06C","31","","","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2012-08-20 00:00:00","F","04M","28","","","2013-09-13 01:01:06.177000000" +"41566077","Q-CITY PIZZA","4","84-02 ","ROOSEVELT AVENUE ","11372","7182055478","62","2011-09-26 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2011-03-11 00:00:00","D","10F","6","","","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2013-02-05 00:00:00","F","06D","34","","","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2013-02-05 00:00:00","F","06E","34","","","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2013-02-05 00:00:00","F","10B","34","","","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2013-09-10 00:00:00","P","02G","15","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2011-08-22 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2012-01-11 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2012-08-08 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2013-02-25 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-06-17 00:00:00","F","06C","63","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-06-17 00:00:00","F","10B","63","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-11-15 00:00:00","F","04L","36","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-11-15 00:00:00","F","10F","36","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-12-01 00:00:00","F","04M","51","C","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-12-01 00:00:00","F","10F","51","C","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-02-09 00:00:00","G","06B","83","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-02-09 00:00:00","G","10F","83","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-04-09 00:00:00","U","10D","9","B","2012-04-09 00:00:00","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-09-06 00:00:00","F","02B","32","C","2012-09-06 00:00:00","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2011-11-02 00:00:00","G","09C","66","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2011-11-03 00:00:00","W","10B","14","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2011-11-04 00:00:00","O","04L","9","","","2013-09-13 01:01:06.177000000" +"41554341","SAKURA TOKYO","3","604 ","NOSTRAND AVENUE ","11216","7187568787","49","2011-01-19 00:00:00","D","04J","10","","","2013-09-13 01:01:06.177000000" +"41554341","SAKURA TOKYO","3","604 ","NOSTRAND AVENUE ","11216","7187568787","49","2011-04-18 00:00:00","D","10H","8","A","2011-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41573430","SUSHI FUSSION","4","105-45A ","64 ROAD ","11375","7189978744","49","2011-04-04 00:00:00","D","10B","12","","","2013-09-13 01:01:06.177000000" +"41573430","SUSHI FUSSION","4","105-45A ","64 ROAD ","11375","7189978744","49","2011-04-04 00:00:00","D","22C","12","","","2013-09-13 01:01:06.177000000" +"41573566","PAPA'S PIZZA & GRILL","3","4417","4 AVENUE","11220","7186332701","62","2013-01-31 00:00:00","F","04L","49","C","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41573566","PAPA'S PIZZA & GRILL","3","4417","4 AVENUE","11220","7186332701","62","2013-01-31 00:00:00","F","10F","49","C","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2012-07-23 00:00:00","U","08A","27","B","2012-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2013-03-20 00:00:00","F","04L","17","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2013-03-20 00:00:00","F","06C","17","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2013-08-14 00:00:00","P","10J","19","","","2013-09-13 01:01:06.177000000" +"41622616","TOTO SUSHI","1","216","THOMPSON STREET","10012","2125334433","49","2012-06-13 00:00:00","U","06C","20","B","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2011-03-29 00:00:00","U","08B","26","B","2011-03-29 00:00:00","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2013-08-05 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2013-08-05 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-03-12 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-04-02 00:00:00","U","08A","20","B","2012-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-08-09 00:00:00","F","04A","38","","","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-08-09 00:00:00","F","10B","38","","","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-08-22 00:00:00","U","10B","10","B","2012-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41623268","MAGURO SUSHI","1","160","EAST 28 STREET","10016","2125108883","49","2012-01-30 00:00:00","D","06C","12","A","2012-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41623268","MAGURO SUSHI","1","160","EAST 28 STREET","10016","2125108883","49","2013-02-13 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41554863","FU ON KITCHEN","1","2419 ","ADAM CLAYTON POWELL JR BOULEVARD ","10030","2128625660","22","2011-03-17 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41567679","LITTLE TOKYO AT SEAPORT INC.","1","303 ","SOUTH STREET SEAPORT ","10038","2125871339","49","2011-03-11 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41568107","TAPPO Thin Crust Pizza","1","49","WEST 24 STREET","10010","2128076888","48","2012-02-27 00:00:00","F","06C","35","","","2013-09-13 01:01:06.177000000" +"41568107","TAPPO Thin Crust Pizza","1","49","WEST 24 STREET","10010","2128076888","48","2012-07-23 00:00:00","D","08A","13","A","2012-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41636968","SUSHI SHOP","1","536","MADISON AVENUE","10022","2128405555","49","2012-01-23 00:00:00","E","05D","36","","","2013-09-13 01:01:06.177000000" +"41636968","SUSHI SHOP","1","536","MADISON AVENUE","10022","2128405555","49","2012-04-24 00:00:00","D","10B","9","A","2012-04-24 00:00:00","2013-09-13 01:01:06.177000000" +"41636986","NEW DANIELLA'S COFFEE SHOP","3","336","GRAHAM AVENUE","11211","7187828653","03","2012-02-17 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41636986","NEW DANIELLA'S COFFEE SHOP","3","336","GRAHAM AVENUE","11211","7187828653","03","2012-02-17 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41623669","YAMAKAGE TOKYO","1","1026","2 AVENUE","10022","2123552577","49","2012-02-03 00:00:00","P","09B","22","","","2013-09-13 01:01:06.177000000" +"41623669","YAMAKAGE TOKYO","1","1026","2 AVENUE","10022","2123552577","49","2012-02-29 00:00:00","D","10B","7","A","2012-02-29 00:00:00","2013-09-13 01:01:06.177000000" +"41623669","YAMAKAGE TOKYO","1","1026","2 AVENUE","10022","2123552577","49","2012-10-01 00:00:00","D","04L","13","A","2012-10-01 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-04-15 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-06-02 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-08-09 00:00:00","U","04N","26","B","2011-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2012-06-20 00:00:00","F","06C","33","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2012-07-23 00:00:00","U","02G","25","B","2012-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2012-07-23 00:00:00","U","06D","25","B","2012-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41637060","REGO PARK SAKE","4","9534 ","QUEENS BLVD ","11374","7188970429","49","2012-03-06 00:00:00","P","02B","18","","","2013-09-13 01:01:06.177000000" +"41637060","REGO PARK SAKE","4","9534 ","QUEENS BLVD ","11374","7188970429","49","2012-03-28 00:00:00","U","04L","12","B","2012-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41568107","TAPPO Thin Crust Pizza","1","49","WEST 24 STREET","10010","2128076888","48","2012-07-23 00:00:00","D","10B","13","A","2012-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41563975","MCGEE'S TAVERN","2","3809","EAST TREMONT AVENUE","10465","7184092911","03","2011-12-01 00:00:00","F","04H","49","C","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41563975","MCGEE'S TAVERN","2","3809","EAST TREMONT AVENUE","10465","7184092911","03","2011-12-01 00:00:00","F","08A","49","C","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2012-01-09 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"41624200","WASABI","3","638","MANHATTAN AVENUE","11222","7186099368","49","2011-11-29 00:00:00","G","08A","50","","","2013-09-13 01:01:06.177000000" +"41624200","WASABI","3","638","MANHATTAN AVENUE","11222","7186099368","49","2012-07-31 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"41624200","WASABI","3","638","MANHATTAN AVENUE","11222","7186099368","49","2012-08-23 00:00:00","U","04M","15","B","2012-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41624200","WASABI","3","638","MANHATTAN AVENUE","11222","7186099368","49","2012-08-23 00:00:00","U","08A","15","B","2012-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2012-01-18 00:00:00","E","05D","30","","","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2012-01-18 00:00:00","E","10F","30","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2011-01-18 00:00:00","P","08A","13","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2011-12-14 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2011-12-30 00:00:00","D","10F","10","A","2011-12-30 00:00:00","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2012-12-18 00:00:00","F","04K","23","C","2012-12-18 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2011-04-11 00:00:00","D","10F","11","","","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2011-08-01 00:00:00","F","99B","33","","","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2012-09-07 00:00:00","D","02G","13","A","2012-09-07 00:00:00","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2013-03-09 00:00:00","P","10B","17","","","2013-09-13 01:01:06.177000000" +"41564778","MELA'S CAFE","2","1735","WASHINGTON AVENUE","10457","7189012181","77","2013-05-01 00:00:00","G","06A","49","","","2013-09-13 01:01:06.177000000" +"41564778","MELA'S CAFE","2","1735","WASHINGTON AVENUE","10457","7189012181","77","2013-05-01 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2011-08-31 00:00:00","U","02B","27","B","2011-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2011-08-31 00:00:00","U","10B","27","B","2011-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2011-12-05 00:00:00","P","08C","18","","","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2012-07-19 00:00:00","F","08A","34","C","2012-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2012-12-14 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2011-09-08 00:00:00","D","02G","13","A","2011-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2011-09-08 00:00:00","D","99B","13","A","2011-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2013-02-05 00:00:00","F","06C","34","","","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2013-02-05 00:00:00","F","10H","34","","","2013-09-13 01:01:06.177000000" +"41625676","SNACK BOX","1","NKA ","TIMES SQUARE ","10036","2127772500","03","2012-02-22 00:00:00","8","04J","49","","","2013-09-13 01:01:06.177000000" +"41625676","SNACK BOX","1","NKA ","TIMES SQUARE ","10036","2127772500","03","2012-02-22 00:00:00","8","05H","49","","","2013-09-13 01:01:06.177000000" +"41557632","HANA JAPANESE BISTRO","3","532","NEPTUNE AVENUE","11224","7182668889","49","2011-03-03 00:00:00","D","10F","12","A","2011-03-03 00:00:00","2013-09-13 01:01:06.177000000" +"41557632","HANA JAPANESE BISTRO","3","532","NEPTUNE AVENUE","11224","7182668889","49","2011-11-30 00:00:00","P","06C","17","","","2013-09-13 01:01:06.177000000" +"41557632","HANA JAPANESE BISTRO","3","532","NEPTUNE AVENUE","11224","7182668889","49","2012-01-20 00:00:00","D","06C","10","A","2012-01-20 00:00:00","2013-09-13 01:01:06.177000000" +"41557632","HANA JAPANESE BISTRO","3","532","NEPTUNE AVENUE","11224","7182668889","49","2013-06-20 00:00:00","F","06A","22","","","2013-09-13 01:01:06.177000000" +"41576416","JUKAI","1","237","EAST 53 STREET","10022","2125889788","49","2011-04-04 00:00:00","E","10F","30","","","2013-09-13 01:01:06.177000000" +"41576416","JUKAI","1","237","EAST 53 STREET","10022","2125889788","49","2011-07-05 00:00:00","P","05D","24","","","2013-09-13 01:01:06.177000000" +"41576416","JUKAI","1","237","EAST 53 STREET","10022","2125889788","49","2011-07-26 00:00:00","D","10E","10","A","2011-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41576416","JUKAI","1","237","EAST 53 STREET","10022","2125889788","49","2012-01-19 00:00:00","U","02B","7","B","2012-01-19 00:00:00","2013-09-13 01:01:06.177000000" +"41576416","JUKAI","1","237","EAST 53 STREET","10022","2125889788","49","2012-08-23 00:00:00","P","10F","10","","","2013-09-13 01:01:06.177000000" +"41639187","NEW JIN BU RESTAURANT","3","49","MOTHER GASTON BOULEVARD","11233","7184553725","20","2012-02-29 00:00:00","F","04L","34","","","2013-09-13 01:01:06.177000000" +"41639187","NEW JIN BU RESTAURANT","3","49","MOTHER GASTON BOULEVARD","11233","7184553725","20","2012-02-29 00:00:00","F","06F","34","","","2013-09-13 01:01:06.177000000" +"41639187","NEW JIN BU RESTAURANT","3","49","MOTHER GASTON BOULEVARD","11233","7184553725","20","2012-02-29 00:00:00","F","08A","34","","","2013-09-13 01:01:06.177000000" +"41639196","MARIO GOURMET DELI","1","934","AMSTERDAM AVENUE","10025","2122224470","27","2012-07-05 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"41557673","RESTAURANT BATE","2","860","MELROSE AVENUE","10451","7184012283","02","2012-08-30 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2011-12-14 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2011-12-14 00:00:00","P","10F","26","","","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2012-05-02 00:00:00","P","06C","23","","","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2013-01-31 00:00:00","F","04L","34","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2011-03-11 00:00:00","F","06F","39","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2011-03-29 00:00:00","U","04L","26","B","2011-03-29 00:00:00","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2011-03-29 00:00:00","U","06F","26","B","2011-03-29 00:00:00","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2011-09-15 00:00:00","D","08C","13","A","2011-09-15 00:00:00","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2012-01-11 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2012-03-20 00:00:00","D","02B","13","A","2012-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2012-08-08 00:00:00","F","08A","35","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2012-08-20 00:00:00","F","08C","21","C","2012-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2011-03-26 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2011-07-06 00:00:00","D","10F","10","A","2011-07-06 00:00:00","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2011-11-29 00:00:00","U","04L","13","B","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2012-04-10 00:00:00","F","06C","35","","","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2012-05-03 00:00:00","D","10F","4","A","2012-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2011-03-26 00:00:00","F","02B","30","","","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2011-03-26 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2012-05-03 00:00:00","D","10B","4","A","2012-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41639970","MARUKO SUSHI & TEA","1","170 ","WEST 23 STREET ","10011","9173611798","49","2012-06-09 00:00:00","D","02G","12","A","2012-06-09 00:00:00","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2012-01-31 00:00:00","F","04L","23","C","2012-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2012-07-26 00:00:00","F","04L","27","C","2012-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2013-01-23 00:00:00","F","04L","25","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2013-02-26 00:00:00","U","02G","23","B","2013-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41640400","KUMO SUSHI","1","282","BLEECKER STREET","10014","2123660808","49","2012-10-04 00:00:00","P","04C","12","","","2013-09-13 01:01:06.177000000" +"41640400","KUMO SUSHI","1","282","BLEECKER STREET","10014","2123660808","49","2012-10-22 00:00:00","U","06C","16","B","2012-10-22 00:00:00","2013-09-13 01:01:06.177000000" +"41640400","KUMO SUSHI","1","282","BLEECKER STREET","10014","2123660808","49","2013-06-18 00:00:00","F","10I","37","","","2013-09-13 01:01:06.177000000" +"41568107","TAPPO Thin Crust Pizza","1","49","WEST 24 STREET","10010","2128076888","48","2012-02-27 00:00:00","F","02B","35","","","2013-09-13 01:01:06.177000000" +"41568107","TAPPO Thin Crust Pizza","1","49","WEST 24 STREET","10010","2128076888","48","2012-07-09 00:00:00","P","02G","15","","","2013-09-13 01:01:06.177000000" +"41568107","TAPPO Thin Crust Pizza","1","49","WEST 24 STREET","10010","2128076888","48","2012-07-09 00:00:00","P","06D","15","","","2013-09-13 01:01:06.177000000" +"41559465","THE COUNTRY KITCHEN","3","1991","ATLANTIC AVENUE","11233","7184980200","03","2012-08-31 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41640893","OSAKA SUSHI","3","1328 ","SHEEPSHEAD BAY ROAD ","11235","7187585888","49","2012-03-06 00:00:00","D","10F","5","","","2013-09-13 01:01:06.177000000" +"41640893","OSAKA SUSHI","3","1328 ","SHEEPSHEAD BAY ROAD ","11235","7187585888","49","2012-06-07 00:00:00","F","05D","50","","","2013-09-13 01:01:06.177000000" +"41640893","OSAKA SUSHI","3","1328 ","SHEEPSHEAD BAY ROAD ","11235","7187585888","49","2012-06-18 00:00:00","D","08C","9","A","2012-06-18 00:00:00","2013-09-13 01:01:06.177000000" +"41640893","OSAKA SUSHI","3","1328 ","SHEEPSHEAD BAY ROAD ","11235","7187585888","49","2012-06-18 00:00:00","D","10J","9","A","2012-06-18 00:00:00","2013-09-13 01:01:06.177000000" +"41627665","AMAZE FUSION LOUNGE","1","694","3 AVENUE","10017","2129865555","22","2012-03-12 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41627665","AMAZE FUSION LOUNGE","1","694","3 AVENUE","10017","2129865555","22","2012-03-12 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41627665","AMAZE FUSION LOUNGE","1","694","3 AVENUE","10017","2129865555","22","2012-03-12 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41627665","AMAZE FUSION LOUNGE","1","694","3 AVENUE","10017","2129865555","22","2012-03-12 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-04-27 00:00:00","U","02G","27","B","2011-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-10-18 00:00:00","F","06E","31","","","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-10-18 00:00:00","F","10F","31","","","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-03-31 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-12-16 00:00:00","U","02B","23","B","2011-12-16 00:00:00","2013-09-13 01:01:06.177000000" +"41573430","SUSHI FUSSION","4","105-45A ","64 ROAD ","11375","7189978744","49","2011-04-04 00:00:00","D","20D","12","","","2013-09-13 01:01:06.177000000" +"41573430","SUSHI FUSSION","4","105-45A ","64 ROAD ","11375","7189978744","49","2011-08-04 00:00:00","U","02G","13","B","2011-08-04 00:00:00","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-10-18 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-12-16 00:00:00","U","06D","23","B","2011-12-16 00:00:00","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-12-16 00:00:00","U","09A","23","B","2011-12-16 00:00:00","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-12-16 00:00:00","U","09B","23","B","2011-12-16 00:00:00","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-12-16 00:00:00","U","10I","23","B","2011-12-16 00:00:00","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2012-08-20 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2012-09-11 00:00:00","F","16C","","","","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2012-09-11 00:00:00","U","06C","25","B","2012-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"41573430","SUSHI FUSSION","4","105-45A ","64 ROAD ","11375","7189978744","49","2011-04-04 00:00:00","D","04J","12","","","2013-09-13 01:01:06.177000000" +"41573566","PAPA'S PIZZA & GRILL","3","4417","4 AVENUE","11220","7186332701","62","2013-01-31 00:00:00","F","02G","49","C","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41573566","PAPA'S PIZZA & GRILL","3","4417","4 AVENUE","11220","7186332701","62","2013-01-31 00:00:00","F","04H","49","C","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41642429","GRAND BAKERY","3","501","GRAND STREET","11211","7183840773","77","2013-01-08 00:00:00","G","06E","49","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-04-13 00:00:00","F","10F","19","C","2011-04-13 00:00:00","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-09-07 00:00:00","G","08A","36","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2012-06-08 00:00:00","F","06D","60","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2012-06-20 00:00:00","F","04K","33","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2012-06-20 00:00:00","F","10F","33","","","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2011-07-11 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2011-07-11 00:00:00","P","04M","25","","","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2012-01-30 00:00:00","U","04C","19","B","2012-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2013-03-12 00:00:00","U","04N","27","B","2013-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2013-03-12 00:00:00","U","08A","27","B","2013-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41628521","KOTOBUKI","1","56","3 AVENUE","10003","2123535088","49","2012-06-21 00:00:00","D","04C","12","A","2012-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41628521","KOTOBUKI","1","56","3 AVENUE","10003","2123535088","49","2012-12-11 00:00:00","P","06F","17","","","2013-09-13 01:01:06.177000000" +"41628657","OOTOYA JAPANESE RESTAURANT","1","8","WEST 18 STREET","10011","2122550018","49","2013-05-20 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"41642516","SUSHI 21","1","174","7 AVENUE","10011","6464866288","49","2012-09-04 00:00:00","U","06F","23","B","2012-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2011-08-18 00:00:00","F","04L","50","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2011-08-18 00:00:00","F","06F","50","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2011-12-06 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2011-12-06 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2011-12-19 00:00:00","F","04L","25","C","2011-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-04-15 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-12-08 00:00:00","P","04K","26","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-12-22 00:00:00","U","04C","23","B","2011-12-22 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2012-07-23 00:00:00","U","04L","25","B","2012-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2012-07-23 00:00:00","U","10F","25","B","2012-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2012-01-09 00:00:00","F","06C","28","","","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2012-01-30 00:00:00","U","06D","19","B","2012-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41629054","KONDITORI","3","240","7 AVENUE","11215","3473350767","14","2012-08-02 00:00:00","G","04K","49","","","2013-09-13 01:01:06.177000000" +"41629054","KONDITORI","3","240","7 AVENUE","11215","3473350767","14","2012-08-02 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"41570357","PICKY EATERS RESTAURANT","3","1166","NOSTRAND AVENUE","11225","3477156432","17","2011-06-07 00:00:00","F","02H","49","","","2013-09-13 01:01:06.177000000" +"41642716","HING WON EXPRESS","1","48","WEST 48 STREET","10036","2127191451","20","2012-04-09 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-02-16 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-02-29 00:00:00","U","08A","18","B","2012-02-29 00:00:00","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-09-24 00:00:00","F","10B","41","C","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2012-07-05 00:00:00","F","02B","32","","","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2013-01-16 00:00:00","F","06E","25","","","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2013-03-12 00:00:00","U","02B","27","B","2013-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2013-03-12 00:00:00","U","10B","27","B","2013-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2011-08-01 00:00:00","F","04H","33","","","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2012-12-14 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41629243","OBENTO DELIGHT & ASIAN FUSION RESTAURANT","1","210","WEST 94 STREET","10025","2122222010","49","2012-01-25 00:00:00","U","04L","24","B","2012-01-25 00:00:00","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2012-04-10 00:00:00","F","10B","35","","","2013-09-13 01:01:06.177000000" +"41643120","YOPPARAI","1","151","RIVINGTON STREET","10002","2127777253","49","2012-04-03 00:00:00","D","10B","10","A","2012-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2011-06-28 00:00:00","G","02G","59","","","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2012-02-16 00:00:00","D","06C","7","A","2012-02-16 00:00:00","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2013-03-01 00:00:00","P","09B","20","","","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2013-07-24 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2011-08-31 00:00:00","U","06A","27","B","2011-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2012-07-19 00:00:00","F","08C","34","C","2012-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2012-01-10 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2012-10-02 00:00:00","U","02G","12","B","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2012-10-02 00:00:00","U","10H","12","B","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41629592","USULUTECO 2 RESTAURANTE SALVADORENO","3","5014","3 AVENUE","11220","7184390079","53","2013-09-11 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41629592","USULUTECO 2 RESTAURANTE SALVADORENO","3","5014","3 AVENUE","11220","7184390079","53","2013-09-11 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41629609","TANGS JIANG RESTAURANT","1","306","SAINT NICHOLAS AVENUE","10027","2128645179","20","2012-01-04 00:00:00","F","02B","49","C","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41629609","TANGS JIANG RESTAURANT","1","306","SAINT NICHOLAS AVENUE","10027","2128645179","20","2012-01-04 00:00:00","F","08A","49","C","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41582873","ICHIMASA JAPANESE RESTAURANT","1","302","WEST 50 STREET","10019","2123154800","49","2011-05-10 00:00:00","D","22C","2","","","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2012-08-14 00:00:00","F","06C","47","","","2013-09-13 01:01:06.177000000" +"41582873","ICHIMASA JAPANESE RESTAURANT","1","302","WEST 50 STREET","10019","2123154800","49","2011-08-11 00:00:00","D","06E","13","A","2011-08-11 00:00:00","2013-09-13 01:01:06.177000000" +"41582873","ICHIMASA JAPANESE RESTAURANT","1","302","WEST 50 STREET","10019","2123154800","49","2012-08-14 00:00:00","D","09C","7","A","2012-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2011-06-02 00:00:00","D","10F","6","","","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2011-08-04 00:00:00","P","04A","15","","","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2013-03-07 00:00:00","F","04L","19","","","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2013-03-07 00:00:00","F","10F","19","","","2013-09-13 01:01:06.177000000" +"41562299","SAKE JAPANESE CUISINE","3","324-328 ","CHURCH AVENUE ","11218","7188515299","49","2012-04-26 00:00:00","F","06D","32","","","2013-09-13 01:01:06.177000000" +"41576416","JUKAI","1","237","EAST 53 STREET","10022","2125889788","49","2011-04-11 00:00:00","D","10F","4","","","2013-09-13 01:01:06.177000000" +"41576416","JUKAI","1","237","EAST 53 STREET","10022","2125889788","49","2012-08-23 00:00:00","P","02G","10","","","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2012-02-18 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2012-10-11 00:00:00","F","04C","38","","","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2012-10-11 00:00:00","F","06E","38","","","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2013-05-30 00:00:00","P","06C","26","","","2013-09-13 01:01:06.177000000" +"41644418","BAGEL BIN","4","8610 ","JAMAICA AVENUE ","11421","7184416669","07","2012-02-29 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41644418","BAGEL BIN","4","8610 ","JAMAICA AVENUE ","11421","7184416669","07","2012-02-29 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-06-17 00:00:00","F","05D","63","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-07-12 00:00:00","U","04M","13","B","2011-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-12-01 00:00:00","F","05D","51","C","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-02-09 00:00:00","G","02G","83","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-02-09 00:00:00","G","06D","83","","","2013-09-13 01:01:06.177000000" +"41630465","YUMMY SUSHI","1","1758","1 AVENUE","10128","2129963666","49","2011-12-12 00:00:00","P","06E","21","","","2013-09-13 01:01:06.177000000" +"41630465","YUMMY SUSHI","1","1758","1 AVENUE","10128","2129963666","49","2013-07-17 00:00:00","P","04M","20","","","2013-09-13 01:01:06.177000000" +"41630465","YUMMY SUSHI","1","1758","1 AVENUE","10128","2129963666","49","2013-07-17 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2012-08-28 00:00:00","F","02G","38","","","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2013-05-21 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41645303","FIX COFFEE & BAKERY","4","1 ","MAIN TERMINAL ","11371","5164044050","14","2012-03-28 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2012-09-11 00:00:00","U","02B","25","B","2012-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"41573430","SUSHI FUSSION","4","105-45A ","64 ROAD ","11375","7189978744","49","2012-03-22 00:00:00","U","04C","20","B","2012-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"41573566","PAPA'S PIZZA & GRILL","3","4417","4 AVENUE","11220","7186332701","62","2013-01-31 00:00:00","F","04A","49","C","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41573566","PAPA'S PIZZA & GRILL","3","4417","4 AVENUE","11220","7186332701","62","2013-01-31 00:00:00","F","08A","49","C","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41645581","MATSU JAPANESE CUISINE","1","483","COLUMBUS AVENUE","10024","2127997922","49","2012-08-08 00:00:00","P","04L","13","","","2013-09-13 01:01:06.177000000" +"41645581","MATSU JAPANESE CUISINE","1","483","COLUMBUS AVENUE","10024","2127997922","49","2012-08-08 00:00:00","P","10F","13","","","2013-09-13 01:01:06.177000000" +"41645581","MATSU JAPANESE CUISINE","1","483","COLUMBUS AVENUE","10024","2127997922","49","2013-02-14 00:00:00","F","04K","29","","","2013-09-13 01:01:06.177000000" +"41645581","MATSU JAPANESE CUISINE","1","483","COLUMBUS AVENUE","10024","2127997922","49","2013-02-14 00:00:00","F","06E","29","","","2013-09-13 01:01:06.177000000" +"41645581","MATSU JAPANESE CUISINE","1","483","COLUMBUS AVENUE","10024","2127997922","49","2013-02-14 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41630942","SUSHI-TERIA","1","601 ","LEXINGTON AVENUE ","10022","9178810420","49","2013-03-07 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"41645944","INAKA","3","597 ","VANDERBILT AVENUE ","11238","7183988168","49","2013-07-15 00:00:00","F","04N","20","","","2013-09-13 01:01:06.177000000" +"41645944","INAKA","3","597 ","VANDERBILT AVENUE ","11238","7183988168","49","2013-07-15 00:00:00","F","06D","20","","","2013-09-13 01:01:06.177000000" +"41563975","MCGEE'S TAVERN","2","3809","EAST TREMONT AVENUE","10465","7184092911","03","2011-12-01 00:00:00","F","04N","49","C","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41646498","GO GO CURRY","1","231","THOMPSON STREET","10012","2125052555","49","2012-11-27 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41646525","CEETAY","2","129","ALEXANDER AVENUE","10454","7186187020","49","2013-08-16 00:00:00","P","10B","9","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-08-09 00:00:00","U","08A","26","B","2011-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2012-06-20 00:00:00","F","09C","33","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2012-06-20 00:00:00","F","10E","33","","","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2011-07-11 00:00:00","P","09C","25","","","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2012-01-30 00:00:00","U","06C","19","B","2012-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2013-01-16 00:00:00","F","02G","25","","","2013-09-13 01:01:06.177000000" +"41563975","MCGEE'S TAVERN","2","3809","EAST TREMONT AVENUE","10465","7184092911","03","2011-12-01 00:00:00","F","10F","49","C","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41646919","LA PERRADA DE CHALO","4","8312 ","NORTHERN BOULEVARD ","11372","7189152130","53","2012-03-31 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41646919","LA PERRADA DE CHALO","4","8312 ","NORTHERN BOULEVARD ","11372","7189152130","53","2012-03-31 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41631683","LONG GRAIN","1","2534","BROADWAY","10025","2126660888","49","2012-02-02 00:00:00","U","02G","22","B","2012-02-02 00:00:00","2013-09-13 01:01:06.177000000" +"41631683","LONG GRAIN","1","2534","BROADWAY","10025","2126660888","49","2012-06-25 00:00:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2011-05-19 00:00:00","D","06E","10","","","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2012-04-17 00:00:00","D","09B","12","A","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2012-09-21 00:00:00","F","04L","34","","","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2012-10-02 00:00:00","D","10F","13","A","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2011-08-31 00:00:00","U","04L","27","B","2011-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41564694","KOBE SUSHI","1","1472 ","YORK AVENUE ","10075","2129888628","49","2011-02-25 00:00:00","D","20D","2","","","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2011-12-05 00:00:00","P","06F","18","","","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2011-12-17 00:00:00","U","04L","14","B","2011-12-17 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2012-07-19 00:00:00","F","02G","34","C","2012-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2012-07-19 00:00:00","F","06C","34","C","2012-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2013-03-14 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41564778","MELA'S CAFE","2","1735","WASHINGTON AVENUE","10457","7189012181","77","2013-05-01 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41579281","MANOR SUSHI","5","878","MANOR ROAD","10314","7183702208","49","2011-04-26 00:00:00","D","20D","12","","","2013-09-13 01:01:06.177000000" +"41579281","MANOR SUSHI","5","878","MANOR ROAD","10314","7183702208","49","2012-07-10 00:00:00","D","02G","12","A","2012-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41579281","MANOR SUSHI","5","878","MANOR ROAD","10314","7183702208","49","2011-04-26 00:00:00","D","06C","12","","","2013-09-13 01:01:06.177000000" +"41579281","MANOR SUSHI","5","878","MANOR ROAD","10314","7183702208","49","2011-04-26 00:00:00","D","10H","12","","","2013-09-13 01:01:06.177000000" +"41579281","MANOR SUSHI","5","878","MANOR ROAD","10314","7183702208","49","2011-07-15 00:00:00","D","02B","11","A","2011-07-15 00:00:00","2013-09-13 01:01:06.177000000" +"41579281","MANOR SUSHI","5","878","MANOR ROAD","10314","7183702208","49","2011-07-15 00:00:00","D","08C","11","A","2011-07-15 00:00:00","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2012-03-19 00:00:00","G","04L","57","","","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2012-03-22 00:00:00","W","04L","21","","","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2012-03-26 00:00:00","O","06C","5","P","2012-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2012-08-20 00:00:00","D","08C","10","A","2012-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2013-08-12 00:00:00","F","04N","66","","","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2013-08-12 00:00:00","F","08A","66","","","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2013-08-12 00:00:00","F","10F","66","","","2013-09-13 01:01:06.177000000" +"41633013","TOMO JAPANESE RESTAURANT","5","4561","AMBOY ROAD","10312","7182275100","49","2012-03-20 00:00:00","P","09A","19","","","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2011-03-11 00:00:00","D","10A","6","","","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2011-03-11 00:00:00","D","10B","6","","","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2011-07-07 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2012-01-11 00:00:00","D","02G","13","A","2012-01-11 00:00:00","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2012-01-11 00:00:00","D","06D","13","A","2012-01-11 00:00:00","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2013-02-05 00:00:00","F","10F","34","","","2013-09-13 01:01:06.177000000" +"41633095","BAMBOO YA","4","9711 ","QUEENS BLVD ","11374","7188061228","49","2011-12-21 00:00:00","D","10F","5","","","2013-09-13 01:01:06.177000000" +"41633095","BAMBOO YA","4","9711 ","QUEENS BLVD ","11374","7188061228","49","2012-04-10 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41633095","BAMBOO YA","4","9711 ","QUEENS BLVD ","11374","7188061228","49","2013-04-01 00:00:00","F","06F","20","","","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2011-09-03 00:00:00","F","04J","28","","","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2012-04-14 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41576416","JUKAI","1","237","EAST 53 STREET","10022","2125889788","49","2011-12-01 00:00:00","P","06F","12","","","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-04-13 00:00:00","P","04H","24","","","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-04-13 00:00:00","P","06C","24","","","2013-09-13 01:01:06.177000000" +"41586672","SUSHI MORA","1","200","8 AVENUE","10011","2123669888","49","2013-04-09 00:00:00","F","04A","22","","","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2013-04-10 00:00:00","F","06A","30","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2011-08-18 00:00:00","F","04M","50","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2011-08-18 00:00:00","F","06D","50","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2011-08-18 00:00:00","F","10E","50","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2011-10-12 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2011-12-19 00:00:00","F","02B","25","C","2011-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2012-07-18 00:00:00","P","10H","12","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2013-03-26 00:00:00","P","04C","21","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2013-03-26 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2013-03-26 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2011-08-22 00:00:00","P","06F","19","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2011-09-15 00:00:00","D","08A","13","A","2011-09-15 00:00:00","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2012-01-11 00:00:00","P","99B","25","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2013-02-25 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2013-08-05 00:00:00","P","02B","26","","","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-05-09 00:00:00","D","02B","12","A","2012-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-10-19 00:00:00","F","02B","43","","","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-10-19 00:00:00","F","08A","43","","","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-10-19 00:00:00","F","10B","43","","","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2012-06-29 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2012-06-29 00:00:00","P","09B","11","","","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2013-08-14 00:00:00","P","06D","25","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2011-08-18 00:00:00","F","02B","50","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2011-11-03 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2012-02-29 00:00:00","P","04M","19","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2012-08-02 00:00:00","U","04H","12","B","2012-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2011-05-03 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2011-06-28 00:00:00","G","04A","59","","","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2011-07-01 00:00:00","O","","","P","2011-07-01 00:00:00","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2011-08-03 00:00:00","P","04N","18","","","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2011-09-13 00:00:00","D","06E","13","A","2011-09-13 00:00:00","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2011-09-13 00:00:00","D","10F","13","A","2011-09-13 00:00:00","2013-09-13 01:01:06.177000000" +"41634881","CROPSEY PIZZA","3","2811","CROPSEY AVENUE","11214","7189460075","63","2012-01-03 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2012-01-26 00:00:00","W","04L","11","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2012-01-27 00:00:00","O","10F","6","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2013-03-06 00:00:00","G","04L","46","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2013-03-06 00:00:00","G","06C","46","","","2013-09-13 01:01:06.177000000" +"41635173","NETA","1","61","WEST 8 STREET","10011","2125052610","49","2012-11-27 00:00:00","F","06A","28","","","2013-09-13 01:01:06.177000000" +"41650782","BLUE RIBBON SUSHI IZAKAYA","1","187","ORCHARD STREET","10002","2124660404","49","2013-02-12 00:00:00","D","04N","9","A","2013-02-12 00:00:00","2013-09-13 01:01:06.177000000" +"41650782","BLUE RIBBON SUSHI IZAKAYA","1","187","ORCHARD STREET","10002","2124660404","49","2013-02-12 00:00:00","D","08A","9","A","2013-02-12 00:00:00","2013-09-13 01:01:06.177000000" +"41587617","LOS PRIMOS SEAFOOD MARKET","2","726","COURTLANDT AVENUE","10451","7186180346","72","2011-08-25 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2011-09-22 00:00:00","U","02B","24","B","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2012-06-05 00:00:00","P","09B","12","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2012-06-19 00:00:00","U","04L","17","B","2012-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2013-03-01 00:00:00","P","04L","20","","","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2013-07-24 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2013-07-24 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2012-04-13 00:00:00","G","10F","68","","","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2012-10-03 00:00:00","P","04M","14","","","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2013-05-21 00:00:00","F","05F","24","","","2013-09-13 01:01:06.177000000" +"41582873","ICHIMASA JAPANESE RESTAURANT","1","302","WEST 50 STREET","10019","2123154800","49","2011-08-11 00:00:00","D","02B","13","A","2011-08-11 00:00:00","2013-09-13 01:01:06.177000000" +"41582873","ICHIMASA JAPANESE RESTAURANT","1","302","WEST 50 STREET","10019","2123154800","49","2012-08-01 00:00:00","P","02G","10","","","2013-09-13 01:01:06.177000000" +"41568107","TAPPO Thin Crust Pizza","1","49","WEST 24 STREET","10010","2128076888","48","2011-08-26 00:00:00","D","10B","11","A","2011-08-26 00:00:00","2013-09-13 01:01:06.177000000" +"41568107","TAPPO Thin Crust Pizza","1","49","WEST 24 STREET","10010","2128076888","48","2012-03-05 00:00:00","F","04N","15","C","2012-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"41568107","TAPPO Thin Crust Pizza","1","49","WEST 24 STREET","10010","2128076888","48","2012-07-23 00:00:00","D","04L","13","A","2012-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41568107","TAPPO Thin Crust Pizza","1","49","WEST 24 STREET","10010","2128076888","48","2012-07-23 00:00:00","D","04N","13","A","2012-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41582873","ICHIMASA JAPANESE RESTAURANT","1","302","WEST 50 STREET","10019","2123154800","49","2011-05-10 00:00:00","D","22A","2","","","2013-09-13 01:01:06.177000000" +"41582873","ICHIMASA JAPANESE RESTAURANT","1","302","WEST 50 STREET","10019","2123154800","49","2013-02-12 00:00:00","P","10I","16","","","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2013-08-20 00:00:00","P","04M","18","","","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2013-08-20 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2011-08-29 00:00:00","U","04M","11","B","2011-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2012-02-21 00:00:00","D","04L","13","A","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2013-03-07 00:00:00","F","08A","19","","","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2013-08-20 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"41652449","MICKIE'S ICE CREAM","1","272","SHERMAN AVENUE","10034","2122227304","43","2012-03-29 00:00:00","E","04A","49","","","2013-09-13 01:01:06.177000000" +"41652500","NEW MADO JAPANESE RESTAURANT LLC","4","9516A ","QUEENS BLVD ","11374","7188964000","49","2013-05-04 00:00:00","P","02B","18","","","2013-09-13 01:01:06.177000000" +"41583426","LA SABROSURA","4","33-20","30 AVENUE","11103","7187915035","53","2011-06-13 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-08-09 00:00:00","F","04L","38","","","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-08-22 00:00:00","U","06D","10","B","2012-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41636968","SUSHI SHOP","1","536","MADISON AVENUE","10022","2128405555","49","2012-01-23 00:00:00","E","04J","36","","","2013-09-13 01:01:06.177000000" +"41637060","REGO PARK SAKE","4","9534 ","QUEENS BLVD ","11374","7188970429","49","2012-03-28 00:00:00","U","09B","12","B","2012-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41637060","REGO PARK SAKE","4","9534 ","QUEENS BLVD ","11374","7188970429","49","2012-12-01 00:00:00","F","06C","17","","","2013-09-13 01:01:06.177000000" +"41637060","REGO PARK SAKE","4","9534 ","QUEENS BLVD ","11374","7188970429","49","2012-12-26 00:00:00","U","02B","22","B","2012-12-26 00:00:00","2013-09-13 01:01:06.177000000" +"41637060","REGO PARK SAKE","4","9534 ","QUEENS BLVD ","11374","7188970429","49","2012-12-26 00:00:00","U","06F","22","B","2012-12-26 00:00:00","2013-09-13 01:01:06.177000000" +"41653529","MERIT KABAB PALACE","4","3767 ","74TH ST ","11372","7183965827","09","2012-04-30 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41589890","Y CAFE","1","182","AVENUE B","10009","2127773323","05","2013-02-28 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41589890","Y CAFE","1","182","AVENUE B","10009","2127773323","05","2013-02-28 00:00:00","F","10J","49","","","2013-09-13 01:01:06.177000000" +"41654379","CLUB MAX","1","238","EAST 53 STREET","10022","2126885120","49","2012-04-24 00:00:00","P","10H","15","","","2013-09-13 01:01:06.177000000" +"41654379","CLUB MAX","1","238","EAST 53 STREET","10022","2126885120","49","2013-02-13 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2013-08-24 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"41654886","RAI RAI KEN","1","218","EAST 10 STREET","10003","2124777030","49","2012-06-28 00:00:00","U","10B","12","B","2012-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2012-03-06 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2012-03-06 00:00:00","P","05D","21","","","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2012-03-06 00:00:00","P","10B","21","","","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2012-03-27 00:00:00","F","06D","36","C","2012-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2012-09-07 00:00:00","D","06C","13","A","2012-09-07 00:00:00","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2013-03-09 00:00:00","P","04J","17","","","2013-09-13 01:01:06.177000000" +"41570357","PICKY EATERS RESTAURANT","3","1166","NOSTRAND AVENUE","11225","3477156432","17","2011-06-07 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41590518","NEW SZECHUAN HOUSE","4","50-08","SKILLMAN AVENUE","11377","7184466092","20","2012-09-08 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41590518","NEW SZECHUAN HOUSE","4","50-08","SKILLMAN AVENUE","11377","7184466092","20","2012-09-08 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2011-06-07 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2011-11-17 00:00:00","U","04N","14","B","2011-11-17 00:00:00","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2012-09-21 00:00:00","F","06D","34","","","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2013-04-04 00:00:00","P","06F","23","","","2013-09-13 01:01:06.177000000" +"41655484","CANAAN SUSHI","1","154","WEST 29 STREET","10001","2129479298","49","2012-05-14 00:00:00","D","02G","10","A","2012-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41580949","LIANG'S GARDEN","2","320","CYPRESS AVENUE","10454","7189936541","20","2013-07-08 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41580949","LIANG'S GARDEN","2","320","CYPRESS AVENUE","10454","7189936541","20","2013-07-08 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2011-12-06 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2012-01-26 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2011-11-17 00:00:00","U","04C","14","B","2011-11-17 00:00:00","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2012-09-21 00:00:00","F","02G","34","","","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2012-06-09 00:00:00","F","03B","49","","","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2012-06-09 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2012-12-22 00:00:00","P","06F","22","","","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2012-05-03 00:00:00","F","06C","46","","","2013-09-13 01:01:06.177000000" +"41584962","TOTOYA","1","1144 ","1 AVENUE ","10065","2127530422","49","2011-08-03 00:00:00","D","09C","8","A","2011-08-03 00:00:00","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2013-08-10 00:00:00","F","02B","37","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2012-06-12 00:00:00","F","04A","80","","","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2012-09-08 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2011-08-03 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2012-02-16 00:00:00","D","10F","7","A","2012-02-16 00:00:00","2013-09-13 01:01:06.177000000" +"41657649","SEA KING","1","219","EAST 23 STREET","10010","2127253399","49","2012-06-25 00:00:00","P","10F","10","","","2013-09-13 01:01:06.177000000" +"41657649","SEA KING","1","219","EAST 23 STREET","10010","2127253399","49","2012-07-13 00:00:00","U","09C","19","B","2012-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41639187","NEW JIN BU RESTAURANT","3","49","MOTHER GASTON BOULEVARD","11233","7184553725","20","2012-02-29 00:00:00","F","09B","34","","","2013-09-13 01:01:06.177000000" +"41639196","MARIO GOURMET DELI","1","934","AMSTERDAM AVENUE","10025","2122224470","27","2012-07-05 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41658037","MIZU","1","29","EAST 20 STREET","10003","2125056687","49","2012-08-14 00:00:00","D","02G","9","A","2012-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41582873","ICHIMASA JAPANESE RESTAURANT","1","302","WEST 50 STREET","10019","2123154800","49","2012-08-14 00:00:00","D","10B","7","A","2012-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41582873","ICHIMASA JAPANESE RESTAURANT","1","302","WEST 50 STREET","10019","2123154800","49","2013-02-12 00:00:00","P","10B","16","","","2013-09-13 01:01:06.177000000" +"41582873","ICHIMASA JAPANESE RESTAURANT","1","302","WEST 50 STREET","10019","2123154800","49","2013-03-04 00:00:00","D","04L","9","A","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41658579","GRAVITY LOUNGE","2","400","CLAREMONT PARKWAY","10457","7182942477","53","2012-08-16 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41639970","MARUKO SUSHI & TEA","1","170 ","WEST 23 STREET ","10011","9173611798","49","2012-03-01 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41639970","MARUKO SUSHI & TEA","1","170 ","WEST 23 STREET ","10011","9173611798","49","2012-05-24 00:00:00","P","06C","15","","","2013-09-13 01:01:06.177000000" +"41639970","MARUKO SUSHI & TEA","1","170 ","WEST 23 STREET ","10011","9173611798","49","2012-06-09 00:00:00","D","06E","12","A","2012-06-09 00:00:00","2013-09-13 01:01:06.177000000" +"41639970","MARUKO SUSHI & TEA","1","170 ","WEST 23 STREET ","10011","9173611798","49","2012-06-09 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2011-05-25 00:00:00","E","10B","35","","","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2013-03-26 00:00:00","U","04H","12","B","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41640400","KUMO SUSHI","1","282","BLEECKER STREET","10014","2123660808","49","2012-03-08 00:00:00","D","06C","12","A","2012-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41640400","KUMO SUSHI","1","282","BLEECKER STREET","10014","2123660808","49","2012-10-22 00:00:00","U","02G","16","B","2012-10-22 00:00:00","2013-09-13 01:01:06.177000000" +"41640400","KUMO SUSHI","1","282","BLEECKER STREET","10014","2123660808","49","2013-06-18 00:00:00","F","04A","37","","","2013-09-13 01:01:06.177000000" +"41640400","KUMO SUSHI","1","282","BLEECKER STREET","10014","2123660808","49","2013-06-18 00:00:00","F","10J","37","","","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2012-05-09 00:00:00","F","02B","28","C","2012-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2011-09-03 00:00:00","F","08C","28","","","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2011-09-03 00:00:00","F","99B","28","","","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2011-10-04 00:00:00","F","06A","31","C","2011-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2011-10-04 00:00:00","F","08A","31","C","2011-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2011-10-04 00:00:00","F","10B","31","C","2011-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2012-04-14 00:00:00","P","05D","21","","","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2012-05-09 00:00:00","F","04H","28","C","2012-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41583426","LA SABROSURA","4","33-20","30 AVENUE","11103","7187915035","53","2011-06-13 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41583426","LA SABROSURA","4","33-20","30 AVENUE","11103","7187915035","53","2011-06-13 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41640893","OSAKA SUSHI","3","1328 ","SHEEPSHEAD BAY ROAD ","11235","7187585888","49","2012-06-07 00:00:00","F","04H","50","","","2013-09-13 01:01:06.177000000" +"41659425","ARATA JAPANESE RESTAURANT.","1","1047","2 AVENUE","10022","2123718338","49","2012-07-02 00:00:00","D","10A","6","","","2013-09-13 01:01:06.177000000" +"41659449","FUJI SUSHI","5","1115","HYLAN BOULEVARD","10305","7188160188","49","2012-05-01 00:00:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"41659449","FUJI SUSHI","5","1115","HYLAN BOULEVARD","10305","7188160188","49","2012-05-09 00:00:00","F","06C","19","C","2012-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41586672","SUSHI MORA","1","200","8 AVENUE","10011","2123669888","49","2011-09-20 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-10-18 00:00:00","F","04M","31","","","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-10-18 00:00:00","F","06D","31","","","2013-09-13 01:01:06.177000000" +"41586672","SUSHI MORA","1","200","8 AVENUE","10011","2123669888","49","2012-04-04 00:00:00","D","08A","9","A","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41586672","SUSHI MORA","1","200","8 AVENUE","10011","2123669888","49","2012-04-04 00:00:00","D","04L","9","A","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-12-16 00:00:00","U","10D","23","B","2011-12-16 00:00:00","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2012-08-20 00:00:00","F","06C","28","","","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2012-08-20 00:00:00","F","10B","28","","","2013-09-13 01:01:06.177000000" +"41573430","SUSHI FUSSION","4","105-45A ","64 ROAD ","11375","7189978744","49","2011-04-04 00:00:00","D","10H","12","","","2013-09-13 01:01:06.177000000" +"41573430","SUSHI FUSSION","4","105-45A ","64 ROAD ","11375","7189978744","49","2012-02-13 00:00:00","P","06D","27","","","2013-09-13 01:01:06.177000000" +"41573430","SUSHI FUSSION","4","105-45A ","64 ROAD ","11375","7189978744","49","2012-02-13 00:00:00","P","10H","27","","","2013-09-13 01:01:06.177000000" +"41661008","AMURA JAPANESE RESTAURANT","1","1567","2ND AVE","10028","2127721688","49","2012-08-09 00:00:00","P","04N","16","","","2013-09-13 01:01:06.177000000" +"41593541","HARLEM TAVERN","1","2153 ","8 AVENUE ","10026","2128664500","03","2011-08-01 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41593541","HARLEM TAVERN","1","2153 ","8 AVENUE ","10026","2128664500","03","2011-08-01 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41593541","HARLEM TAVERN","1","2153 ","8 AVENUE ","10026","2128664500","03","2011-08-01 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41661153","SAKURA IV","4","6419 ","MYRTLE AVENUE ","11385","7183667888","49","2012-05-10 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41661153","SAKURA IV","4","6419 ","MYRTLE AVENUE ","11385","7183667888","49","2012-05-21 00:00:00","U","04H","25","B","2012-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41587617","LOS PRIMOS SEAFOOD MARKET","2","726","COURTLANDT AVENUE","10451","7186180346","72","2011-08-25 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41662152","TENDO SUSHI","4","6626 ","FRESH POND ROAD ","11385","7183810809","49","2012-05-21 00:00:00","D","04L","22","","","2013-09-13 01:01:06.177000000" +"41662152","TENDO SUSHI","4","6626 ","FRESH POND ROAD ","11385","7183810809","49","2012-08-13 00:00:00","P","06D","23","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2011-08-05 00:00:00","F","04L","36","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2012-01-10 00:00:00","F","04L","22","C","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2013-08-27 00:00:00","F","04A","29","","","2013-09-13 01:01:06.177000000" +"41642429","GRAND BAKERY","3","501","GRAND STREET","11211","7183840773","77","2013-01-08 00:00:00","G","04K","49","","","2013-09-13 01:01:06.177000000" +"41642516","SUSHI 21","1","174","7 AVENUE","10011","6464866288","49","2013-02-21 00:00:00","F","04J","18","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2011-08-05 00:00:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2011-08-05 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2012-06-05 00:00:00","P","06F","12","","","2013-09-13 01:01:06.177000000" +"41662345","IRON SUSHI","1","212","EAST 10 STREET","10003","2122280102","49","2013-05-28 00:00:00","P","04H","19","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-04-15 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-06-02 00:00:00","F","10B","29","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-06-02 00:00:00","F","99B","29","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-08-09 00:00:00","U","06A","26","B","2011-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-12-08 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-12-22 00:00:00","U","06E","23","B","2011-12-22 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2012-06-20 00:00:00","F","02G","33","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2012-06-20 00:00:00","F","06D","33","","","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2011-08-30 00:00:00","U","10I","18","B","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2011-09-20 00:00:00","P","04E","23","","","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2011-09-20 00:00:00","P","10A","23","","","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2013-04-27 00:00:00","P","06E","23","","","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-02-16 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-09-24 00:00:00","F","04L","41","C","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2011-05-19 00:00:00","D","10F","10","","","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2012-03-22 00:00:00","F","04L","34","","","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2012-04-17 00:00:00","D","04L","12","A","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2012-10-02 00:00:00","D","08A","13","A","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2012-10-02 00:00:00","D","10H","13","A","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2013-04-04 00:00:00","P","06C","23","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2012-07-23 00:00:00","U","04K","25","B","2012-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2013-01-30 00:00:00","P","02G","7","","","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2011-08-06 00:00:00","U","06F","7","B","2011-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2013-03-12 00:00:00","U","04L","27","B","2013-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41584962","TOTOYA","1","1144 ","1 AVENUE ","10065","2127530422","49","2011-05-23 00:00:00","D","10F","2","","","2013-09-13 01:01:06.177000000" +"41584962","TOTOYA","1","1144 ","1 AVENUE ","10065","2127530422","49","2012-08-02 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41584962","TOTOYA","1","1144 ","1 AVENUE ","10065","2127530422","49","2012-09-05 00:00:00","D","10F","10","A","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2011-08-01 00:00:00","F","02G","33","","","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2011-08-31 00:00:00","U","09A","27","B","2011-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2013-01-22 00:00:00","F","15J","","","","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2012-04-24 00:00:00","D","10F","4","","","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2012-08-14 00:00:00","F","04A","47","","","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2012-08-30 00:00:00","U","04A","17","B","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2013-04-20 00:00:00","G","04M","51","","","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2013-04-20 00:00:00","G","06F","51","","","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2013-04-20 00:00:00","G","08A","51","","","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2013-04-24 00:00:00","O","10I","3","P","2013-04-24 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2013-02-20 00:00:00","F","15J","","","","2013-09-13 01:01:06.177000000" +"41664798","TANOSHI","1","1372","YORK AVENUE","10021","6467279056","49","2012-07-20 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41589890","Y CAFE","1","182","AVENUE B","10009","2127773323","05","2013-02-28 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2013-05-30 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"41644418","BAGEL BIN","4","8610 ","JAMAICA AVENUE ","11421","7184416669","07","2012-02-29 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41664973","NAPOLITANO","3","3009","AVENUE N","11210","7186922904","63","2012-08-23 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41590518","NEW SZECHUAN HOUSE","4","50-08","SKILLMAN AVENUE","11377","7184466092","20","2012-09-08 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41590518","NEW SZECHUAN HOUSE","4","50-08","SKILLMAN AVENUE","11377","7184466092","20","2012-09-08 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2011-11-03 00:00:00","C","02G","13","","","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2012-05-09 00:00:00","F","04L","28","C","2012-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2012-05-09 00:00:00","F","10F","28","C","2012-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41665733","374 DELI","1","374 ","8 AVNUE ","10001","2125637007","27","2012-08-06 00:00:00","F","02G","49","C","2012-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2012-03-12 00:00:00","F","04J","38","","","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2012-08-28 00:00:00","F","04H","38","","","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2012-08-28 00:00:00","F","06D","38","","","2013-09-13 01:01:06.177000000" +"41586672","SUSHI MORA","1","200","8 AVENUE","10011","2123669888","49","2013-04-09 00:00:00","F","04L","22","","","2013-09-13 01:01:06.177000000" +"41576416","JUKAI","1","237","EAST 53 STREET","10022","2125889788","49","2011-07-05 00:00:00","P","06F","24","","","2013-09-13 01:01:06.177000000" +"41596350","RIVER JAPANESE CUISINE","4","61-44 ","SPRINGFIELD BOULEVARD ","11364","7183218981","49","2011-06-28 00:00:00","D","06C","10","","","2013-09-13 01:01:06.177000000" +"41596350","RIVER JAPANESE CUISINE","4","61-44 ","SPRINGFIELD BOULEVARD ","11364","7183218981","49","2011-06-28 00:00:00","D","10A","10","","","2013-09-13 01:01:06.177000000" +"41596350","RIVER JAPANESE CUISINE","4","61-44 ","SPRINGFIELD BOULEVARD ","11364","7183218981","49","2011-06-28 00:00:00","D","10B","10","","","2013-09-13 01:01:06.177000000" +"41596350","RIVER JAPANESE CUISINE","4","61-44 ","SPRINGFIELD BOULEVARD ","11364","7183218981","49","2011-08-11 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41596350","RIVER JAPANESE CUISINE","4","61-44 ","SPRINGFIELD BOULEVARD ","11364","7183218981","49","2011-08-11 00:00:00","P","06F","21","","","2013-09-13 01:01:06.177000000" +"41596350","RIVER JAPANESE CUISINE","4","61-44 ","SPRINGFIELD BOULEVARD ","11364","7183218981","49","2011-08-25 00:00:00","U","06C","14","B","2011-08-25 00:00:00","2013-09-13 01:01:06.177000000" +"41596350","RIVER JAPANESE CUISINE","4","61-44 ","SPRINGFIELD BOULEVARD ","11364","7183218981","49","2011-08-25 00:00:00","U","10B","14","B","2011-08-25 00:00:00","2013-09-13 01:01:06.177000000" +"41596350","RIVER JAPANESE CUISINE","4","61-44 ","SPRINGFIELD BOULEVARD ","11364","7183218981","49","2012-03-08 00:00:00","D","10H","6","A","2012-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41665945","MOCHI RESTAURANT","3","140 ","ST NICHOLAS AVENUE ","11237","3477877876","49","2012-05-23 00:00:00","D","10F","2","","","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2011-06-01 00:00:00","F","04L","33","","","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2011-07-28 00:00:00","U","04M","14","B","2011-07-28 00:00:00","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2012-09-08 00:00:00","P","04C","22","","","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2012-10-17 00:00:00","U","04C","12","B","2012-10-17 00:00:00","2013-09-13 01:01:06.177000000" +"41645581","MATSU JAPANESE CUISINE","1","483","COLUMBUS AVENUE","10024","2127997922","49","2012-03-08 00:00:00","F","06E","14","","","2013-09-13 01:01:06.177000000" +"41666608","27 SHINJUKU SUSHI INC","1","27","PARK PL","10007","2124067333","49","2012-05-22 00:00:00","P","10H","22","","","2013-09-13 01:01:06.177000000" +"41666608","27 SHINJUKU SUSHI INC","1","27","PARK PL","10007","2124067333","49","2012-06-06 00:00:00","D","06C","7","A","2012-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2011-07-28 00:00:00","U","02G","14","B","2011-07-28 00:00:00","2013-09-13 01:01:06.177000000" +"41645944","INAKA","3","597 ","VANDERBILT AVENUE ","11238","7183988168","49","2013-07-15 00:00:00","F","04H","20","","","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2011-07-05 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2011-09-29 00:00:00","U","04M","24","B","2011-09-29 00:00:00","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2013-06-20 00:00:00","F","10F","17","","","2013-09-13 01:01:06.177000000" +"41597054","SUSHI YASAKA","1","251","WEST 72 STREET","10023","2124968460","49","2011-09-29 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2011-09-12 00:00:00","U","04L","20","B","2011-09-12 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-05-14 00:00:00","D","06F","12","A","2012-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-11-19 00:00:00","F","05D","28","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2013-05-24 00:00:00","F","04L","78","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2011-08-05 00:00:00","F","05F","36","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2011-09-22 00:00:00","U","08A","24","B","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2012-06-05 00:00:00","P","04L","12","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2013-02-20 00:00:00","F","04L","19","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2013-08-27 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41646498","GO GO CURRY","1","231","THOMPSON STREET","10012","2125052555","49","2012-04-04 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"41597839","KIDO SUSHI (QUEENS CENTER MALL)","4","90-15","QUEENS BOULEVARD","11373","7182713688","49","2011-08-24 00:00:00","D","10F","10","A","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-02-13 00:00:00","F","10F","36","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-07-13 00:00:00","F","06D","30","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-07-13 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41593479","SKY FOOD COURT(SKY MALL)","4","40-24 ","COLLEGE POINT BOULEVARD ","11354","7189396688","20","2011-12-17 00:00:00","F","10A","49","","","2013-09-13 01:01:06.177000000" +"41670486","JAPAS 38","1","9","EAST 38 STREET","10016","2126794040","49","2012-07-30 00:00:00","P","06A","26","","","2013-09-13 01:01:06.177000000" +"41670486","JAPAS 38","1","9","EAST 38 STREET","10016","2126794040","49","2013-05-09 00:00:00","F","02B","36","","","2013-09-13 01:01:06.177000000" +"41670513","NEW HAN YANG SUSHI","4","15051 ","NORTHERN BOULEVARD ","11354","7188866678","49","2012-07-12 00:00:00","P","02B","14","","","2013-09-13 01:01:06.177000000" +"41579281","MANOR SUSHI","5","878","MANOR ROAD","10314","7183702208","49","2011-04-26 00:00:00","D","10F","12","","","2013-09-13 01:01:06.177000000" +"41593479","SKY FOOD COURT(SKY MALL)","4","40-24 ","COLLEGE POINT BOULEVARD ","11354","7189396688","20","2011-12-17 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41593479","SKY FOOD COURT(SKY MALL)","4","40-24 ","COLLEGE POINT BOULEVARD ","11354","7189396688","20","2011-12-17 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41593541","HARLEM TAVERN","1","2153 ","8 AVENUE ","10026","2128664500","03","2011-08-01 00:00:00","F","02H","49","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2011-07-15 00:00:00","D","10H","4","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2012-08-20 00:00:00","F","08A","64","","","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2011-08-30 00:00:00","U","04H","18","B","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2012-03-07 00:00:00","D","04L","13","A","2012-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2013-04-27 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2013-04-23 00:00:00","F","08A","18","","","2013-09-13 01:01:06.177000000" +"41671639","ATHENS CAFE","4","3207 ","30TH AVE ","11102","7186262164","38","2012-06-25 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41671639","ATHENS CAFE","4","3207 ","30TH AVE ","11102","7186262164","38","2012-06-25 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2011-09-20 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2011-10-04 00:00:00","U","02B","13","B","2011-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2012-03-07 00:00:00","D","08C","13","A","2012-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41671938","YUSHI","1","100 ","MAIDEN LANE ","10038","2127422154","49","2012-06-12 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41671938","YUSHI","1","100 ","MAIDEN LANE ","10038","2127422154","49","2012-10-19 00:00:00","D","10A","13","A","2012-10-19 00:00:00","2013-09-13 01:01:06.177000000" +"41590518","NEW SZECHUAN HOUSE","4","50-08","SKILLMAN AVENUE","11377","7184466092","20","2012-09-08 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41672416","SARKU JAPAN","4","3721 ","JUNCTION BOULEVARD ","11368","7188988898","49","2012-10-04 00:00:00","E","05D","35","","","2013-09-13 01:01:06.177000000" +"41580949","LIANG'S GARDEN","2","320","CYPRESS AVENUE","10454","7189936541","20","2013-07-08 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2012-02-29 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2012-07-18 00:00:00","P","02G","12","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2012-08-02 00:00:00","U","04L","12","B","2012-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2012-03-28 00:00:00","G","02B","64","","","2013-09-13 01:01:06.177000000" +"41673139","SUSHI AVE X","3","241","AVENUE X","11223","7183759757","49","2012-07-02 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"41673363","RAMEN SAMURAI BOY","4","8532","GRAND AVENUE","11373","7183962222","49","2012-09-18 00:00:00","P","09B","20","","","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2012-10-04 00:00:00","D","10F","9","A","2012-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2013-04-10 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"41650016","GARDEN PIZZA","1","1641 ","1 AVENUE ","10028","2122499400","62","2012-04-03 00:00:00","E","10H","49","","","2013-09-13 01:01:06.177000000" +"41601132","MARS CAFE","1","58","WEST 39 STREET","10018","2129974200","03","2012-08-24 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41601132","MARS CAFE","1","58","WEST 39 STREET","10018","2129974200","03","2012-08-24 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2011-06-28 00:00:00","G","10B","59","","","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2013-03-01 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2013-02-20 00:00:00","G","08A","41","","","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2013-08-14 00:00:00","P","04N","25","","","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2011-06-01 00:00:00","F","04C","33","","","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2011-07-28 00:00:00","U","04N","14","B","2011-07-28 00:00:00","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2011-12-28 00:00:00","U","02H","24","B","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2012-10-17 00:00:00","U","04L","12","B","2012-10-17 00:00:00","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-09-22 00:00:00","G","04M","64","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-09-22 00:00:00","G","06F","64","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2013-01-28 00:00:00","F","02B","28","","","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2011-08-22 00:00:00","F","10B","46","","","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2012-01-24 00:00:00","D","06C","13","A","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2012-01-24 00:00:00","D","10B","13","A","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41582873","ICHIMASA JAPANESE RESTAURANT","1","302","WEST 50 STREET","10019","2123154800","49","2011-05-10 00:00:00","D","99B","2","","","2013-09-13 01:01:06.177000000" +"41582873","ICHIMASA JAPANESE RESTAURANT","1","302","WEST 50 STREET","10019","2123154800","49","2013-02-12 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"41582873","ICHIMASA JAPANESE RESTAURANT","1","302","WEST 50 STREET","10019","2123154800","49","2013-03-04 00:00:00","D","08A","9","A","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41596350","RIVER JAPANESE CUISINE","4","61-44 ","SPRINGFIELD BOULEVARD ","11364","7183218981","49","2011-08-25 00:00:00","U","04C","14","B","2011-08-25 00:00:00","2013-09-13 01:01:06.177000000" +"41596350","RIVER JAPANESE CUISINE","4","61-44 ","SPRINGFIELD BOULEVARD ","11364","7183218981","49","2011-08-11 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41596350","RIVER JAPANESE CUISINE","4","61-44 ","SPRINGFIELD BOULEVARD ","11364","7183218981","49","2013-04-25 00:00:00","F","10H","12","","","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2013-03-07 00:00:00","F","09C","19","","","2013-09-13 01:01:06.177000000" +"41650782","BLUE RIBBON SUSHI IZAKAYA","1","187","ORCHARD STREET","10002","2124660404","49","2012-06-25 00:00:00","D","02G","12","A","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41650782","BLUE RIBBON SUSHI IZAKAYA","1","187","ORCHARD STREET","10002","2124660404","49","2012-12-06 00:00:00","P","04C","14","","","2013-09-13 01:01:06.177000000" +"41674961","MAMA JOY'S","3","1084","FLUSHING AVENUE","11237","3472952227","03","2013-08-29 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2011-07-05 00:00:00","P","10I","16","","","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2011-09-29 00:00:00","U","08A","24","B","2011-09-29 00:00:00","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2011-09-29 00:00:00","U","10F","24","B","2011-09-29 00:00:00","2013-09-13 01:01:06.177000000" +"41597054","SUSHI YASAKA","1","251","WEST 72 STREET","10023","2124968460","49","2013-05-25 00:00:00","P","06C","5","","","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2012-04-13 00:00:00","G","04A","68","","","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2012-10-15 00:00:00","U","04M","19","B","2012-10-15 00:00:00","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2012-10-15 00:00:00","U","08A","19","B","2012-10-15 00:00:00","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2011-07-27 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2011-07-27 00:00:00","F","10B","31","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2011-07-27 00:00:00","F","99B","31","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2012-05-03 00:00:00","F","06G","40","C","2012-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2012-05-16 00:00:00","F","06G","43","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2013-01-31 00:00:00","D","10B","12","A","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2012-11-16 00:00:00","U","06A","12","B","2012-11-16 00:00:00","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2013-06-20 00:00:00","F","10A","17","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-03-21 00:00:00","F","02B","41","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-12-11 00:00:00","F","02G","65","C","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2013-05-24 00:00:00","F","04M","78","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2013-05-24 00:00:00","F","05D","78","","","2013-09-13 01:01:06.177000000" +"41675589","AJI SUSHI HOUSE","4","3606 ","DITMARS BLVD ","11105","7187778885","49","2012-07-25 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41675643","GINZA SUSHI","1","251","EAST 35 STREET","10016","2128893333","49","2012-07-16 00:00:00","P","06C","25","","","2013-09-13 01:01:06.177000000" +"41597054","SUSHI YASAKA","1","251","WEST 72 STREET","10023","2124968460","49","2012-05-02 00:00:00","D","10F","13","A","2012-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41593541","HARLEM TAVERN","1","2153 ","8 AVENUE ","10026","2128664500","03","2011-08-01 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2011-08-15 00:00:00","P","04C","20","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-03-21 00:00:00","F","04K","41","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-03-21 00:00:00","F","06E","41","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-12-11 00:00:00","F","09B","65","C","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2013-05-24 00:00:00","F","04A","78","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2013-05-24 00:00:00","F","10B","78","","","2013-09-13 01:01:06.177000000" +"41597839","KIDO SUSHI (QUEENS CENTER MALL)","4","90-15","QUEENS BOULEVARD","11373","7182713688","49","2013-04-26 00:00:00","G","06C","71","","","2013-09-13 01:01:06.177000000" +"41597839","KIDO SUSHI (QUEENS CENTER MALL)","4","90-15","QUEENS BOULEVARD","11373","7182713688","49","2011-07-30 00:00:00","F","06E","43","","","2013-09-13 01:01:06.177000000" +"41597839","KIDO SUSHI (QUEENS CENTER MALL)","4","90-15","QUEENS BOULEVARD","11373","7182713688","49","2013-04-26 00:00:00","G","06D","71","","","2013-09-13 01:01:06.177000000" +"41597839","KIDO SUSHI (QUEENS CENTER MALL)","4","90-15","QUEENS BOULEVARD","11373","7182713688","49","2013-04-26 00:00:00","G","06E","71","","","2013-09-13 01:01:06.177000000" +"41597839","KIDO SUSHI (QUEENS CENTER MALL)","4","90-15","QUEENS BOULEVARD","11373","7182713688","49","2013-04-26 00:00:00","G","08A","71","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2011-08-01 00:00:00","P","04N","26","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2012-02-28 00:00:00","F","03B","47","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2012-02-28 00:00:00","F","04J","47","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2013-02-07 00:00:00","F","02B","32","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2013-02-07 00:00:00","F","06D","32","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2013-07-15 00:00:00","F","04N","29","","","2013-09-13 01:01:06.177000000" +"41598232","LAO MA MA LA TANG","4","136-20","ROOSEVELT AVENUE","11354","7183582339","20","2012-08-27 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41677534","TOMO JAPANESE CAFE","4","8914 ","QUEENS BLVD ","11373","7188039799","49","2013-05-04 00:00:00","F","04L","47","","","2013-09-13 01:01:06.177000000" +"41677534","TOMO JAPANESE CAFE","4","8914 ","QUEENS BLVD ","11373","7188039799","49","2013-05-04 00:00:00","F","08A","47","","","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2011-10-04 00:00:00","U","04N","13","B","2011-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41652449","MICKIE'S ICE CREAM","1","272","SHERMAN AVENUE","10034","2122227304","43","2012-03-29 00:00:00","E","05H","49","","","2013-09-13 01:01:06.177000000" +"41652500","NEW MADO JAPANESE RESTAURANT LLC","4","9516A ","QUEENS BLVD ","11374","7188964000","49","2013-05-04 00:00:00","P","09B","18","","","2013-09-13 01:01:06.177000000" +"41598232","LAO MA MA LA TANG","4","136-20","ROOSEVELT AVENUE","11354","7183582339","20","2012-08-27 00:00:00","G","10B","49","","","2013-09-13 01:01:06.177000000" +"41677534","TOMO JAPANESE CAFE","4","8914 ","QUEENS BLVD ","11373","7188039799","49","2013-05-04 00:00:00","F","09C","47","","","2013-09-13 01:01:06.177000000" +"41677561","TOMO JAPANESE CUISINE","4","8612A ","37TH AVE ","11372","7182056222","49","2013-04-23 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2011-11-28 00:00:00","F","02B","48","","","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2011-11-28 00:00:00","F","10B","48","","","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2012-04-24 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2011-07-05 00:00:00","D","06D","13","A","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2012-09-21 00:00:00","F","04J","34","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2012-08-20 00:00:00","F","04J","64","","","2013-09-13 01:01:06.177000000" +"41584962","TOTOYA","1","1144 ","1 AVENUE ","10065","2127530422","49","2012-08-02 00:00:00","P","06F","19","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2012-08-20 00:00:00","F","10F","64","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-02-26 00:00:00","F","04N","67","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-08-14 00:00:00","F","02B","32","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-08-14 00:00:00","F","06A","32","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-09-11 00:00:00","U","04L","17","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-02-26 00:00:00","F","04L","67","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-03-27 00:00:00","U","06C","10","B","2013-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-08-14 00:00:00","F","06D","32","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-08-14 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-08-14 00:00:00","F","08B","32","","","2013-09-13 01:01:06.177000000" +"41605223","YU SUSHI","1","827","WEST 181 STREET","10033","2127818833","49","2013-04-13 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41605380","NEW HAWAII SEA","2","1475","WILLIAMSBRIDGE ROAD","10461","7188637900","22","2011-08-01 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2011-12-07 00:00:00","U","10H","25","B","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2012-06-07 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2011-10-13 00:00:00","F","04M","24","C","2011-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2012-09-27 00:00:00","P","04L","13","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2012-10-17 00:00:00","U","10F","7","B","2012-10-17 00:00:00","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-09-14 00:00:00","F","04N","73","C","2012-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-09-14 00:00:00","F","06E","73","C","2012-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-09-14 00:00:00","F","08A","73","C","2012-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2013-05-11 00:00:00","F","04L","53","","","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2013-05-11 00:00:00","F","06F","53","","","2013-09-13 01:01:06.177000000" +"41653940","SUSHI SUKI YORKER","1","1577","YORK AVENUE","10028","2122493766","49","2012-05-02 00:00:00","D","06F","9","A","2012-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41653940","SUSHI SUKI YORKER","1","1577","YORK AVENUE","10028","2122493766","49","2012-05-02 00:00:00","D","10F","9","A","2012-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41605649","JUDY'S SPANISH RESTAURANT","1","1505","LEXINGTON AVENUE","10029","2128310193","53","2012-03-01 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2012-05-29 00:00:00","G","10F","37","","","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2012-06-13 00:00:00","U","06C","17","B","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41654379","CLUB MAX","1","238","EAST 53 STREET","10022","2126885120","49","2012-04-24 00:00:00","P","06D","15","","","2013-09-13 01:01:06.177000000" +"41596350","RIVER JAPANESE CUISINE","4","61-44 ","SPRINGFIELD BOULEVARD ","11364","7183218981","49","2012-03-08 00:00:00","D","10F","6","A","2012-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2011-12-09 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2012-11-29 00:00:00","P","06C","20","","","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2011-10-04 00:00:00","F","04L","31","C","2011-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2012-04-14 00:00:00","P","06E","21","","","2013-09-13 01:01:06.177000000" +"41680924","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","4","13336 ","WHITESTONE EXPRESSWAY ","11354","7183590810","49","2012-08-07 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41681082","J R SUSHI","1","86A ","WEST BROADWAY ","10007","2122338338","49","2012-08-14 00:00:00","P","02G","10","","","2013-09-13 01:01:06.177000000" +"41655483","JU FENG CHINESE FOOD","3","2809","NOSTRAND AVENUE","11229","7182529865","20","2012-05-21 00:00:00","G","02B","49","","","2013-09-13 01:01:06.177000000" +"41655483","JU FENG CHINESE FOOD","3","2809","NOSTRAND AVENUE","11229","7182529865","20","2012-05-21 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41655484","CANAAN SUSHI","1","154","WEST 29 STREET","10001","2129479298","49","2012-05-14 00:00:00","D","10F","10","A","2012-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41601132","MARS CAFE","1","58","WEST 39 STREET","10018","2129974200","03","2012-08-24 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41681373","HADO SUSHI","4","13840 ","86 AVENUE ","11435","7185585758","49","2012-09-06 00:00:00","P","04H","25","","","2013-09-13 01:01:06.177000000" +"41681373","HADO SUSHI","4","13840 ","86 AVENUE ","11435","7185585758","49","2013-06-13 00:00:00","P","02B","15","","","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2011-07-05 00:00:00","P","04M","16","","","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2011-09-29 00:00:00","U","10B","24","B","2011-09-29 00:00:00","2013-09-13 01:01:06.177000000" +"41597054","SUSHI YASAKA","1","251","WEST 72 STREET","10023","2124968460","49","2011-10-26 00:00:00","U","04N","8","B","2011-10-26 00:00:00","2013-09-13 01:01:06.177000000" +"41601132","MARS CAFE","1","58","WEST 39 STREET","10018","2129974200","03","2012-08-24 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2013-04-17 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"41601691","WAZA SUSHI","3","485","MYRTLE AVENUE","11205","7183993839","49","2011-10-15 00:00:00","B","06D","12","A","2011-10-15 00:00:00","2013-09-13 01:01:06.177000000" +"41601691","WAZA SUSHI","3","485","MYRTLE AVENUE","11205","7183993839","49","2011-10-15 00:00:00","B","06E","12","A","2011-10-15 00:00:00","2013-09-13 01:01:06.177000000" +"41601691","WAZA SUSHI","3","485","MYRTLE AVENUE","11205","7183993839","49","2012-09-27 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2011-09-12 00:00:00","U","02B","20","B","2011-09-12 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2011-09-12 00:00:00","U","10B","20","B","2011-09-12 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-05-14 00:00:00","D","02B","12","A","2012-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2013-05-24 00:00:00","F","06D","78","","","2013-09-13 01:01:06.177000000" +"41586672","SUSHI MORA","1","200","8 AVENUE","10011","2123669888","49","2013-04-09 00:00:00","F","10A","22","","","2013-09-13 01:01:06.177000000" +"41586672","SUSHI MORA","1","200","8 AVENUE","10011","2123669888","49","2013-04-09 00:00:00","F","10B","22","","","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2011-09-19 00:00:00","U","10B","19","B","2011-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41601691","WAZA SUSHI","3","485","MYRTLE AVENUE","11205","7183993839","49","2011-07-21 00:00:00","D","06C","6","","","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2012-06-09 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2012-12-22 00:00:00","P","10H","22","","","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2013-08-27 00:00:00","F","04L","29","","","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2013-06-06 00:00:00","F","04C","32","","","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2013-06-06 00:00:00","F","10F","32","","","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2012-05-30 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2012-06-11 00:00:00","U","10F","11","B","2012-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2013-01-10 00:00:00","U","04H","7","B","2013-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2013-08-10 00:00:00","F","06C","37","","","2013-09-13 01:01:06.177000000" +"41597839","KIDO SUSHI (QUEENS CENTER MALL)","4","90-15","QUEENS BOULEVARD","11373","7182713688","49","2011-12-22 00:00:00","U","08A","9","B","2011-12-22 00:00:00","2013-09-13 01:01:06.177000000" +"41597839","KIDO SUSHI (QUEENS CENTER MALL)","4","90-15","QUEENS BOULEVARD","11373","7182713688","49","2013-04-26 00:00:00","G","02G","71","","","2013-09-13 01:01:06.177000000" +"41597839","KIDO SUSHI (QUEENS CENTER MALL)","4","90-15","QUEENS BOULEVARD","11373","7182713688","49","2013-04-26 00:00:00","G","04H","71","","","2013-09-13 01:01:06.177000000" +"41597839","KIDO SUSHI (QUEENS CENTER MALL)","4","90-15","QUEENS BOULEVARD","11373","7182713688","49","2013-04-29 00:00:00","O","10F","2","P","2013-04-29 00:00:00","2013-09-13 01:01:06.177000000" +"41587617","LOS PRIMOS SEAFOOD MARKET","2","726","COURTLANDT AVENUE","10451","7186180346","72","2011-08-25 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2012-06-12 00:00:00","F","02B","80","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2012-06-12 00:00:00","F","06F","80","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2012-06-25 00:00:00","G","05A","26","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2012-06-25 00:00:00","G","06E","26","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2013-01-17 00:00:00","P","10I","13","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2013-09-11 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2011-12-30 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2011-12-30 00:00:00","P","06E","27","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2012-01-10 00:00:00","F","04A","22","C","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41607908","LONGEVOUSJOY Ramen Sushi Brasserie","3","6610","BAY PARKWAY","11204","9178926068","49","2012-05-05 00:00:00","U","08B","5","B","2012-05-05 00:00:00","2013-09-13 01:01:06.177000000" +"41607908","LONGEVOUSJOY Ramen Sushi Brasserie","3","6610","BAY PARKWAY","11204","9178926068","49","2013-03-19 00:00:00","F","02B","35","","","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2013-06-01 00:00:00","F","06A","29","","","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2013-06-01 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2013-02-20 00:00:00","F","04H","19","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2011-07-27 00:00:00","F","04J","31","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2011-07-27 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2012-04-17 00:00:00","F","06G","31","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2012-11-21 00:00:00","P","02B","18","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2013-01-31 00:00:00","D","06A","12","A","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41658037","MIZU","1","29","EAST 20 STREET","10003","2125056687","49","2012-08-14 00:00:00","D","10F","9","A","2012-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41658037","MIZU","1","29","EAST 20 STREET","10003","2125056687","49","2013-07-23 00:00:00","F","06E","37","","","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2012-04-05 00:00:00","P","06C","18","","","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2012-10-02 00:00:00","F","04N","28","","","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2012-10-02 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2013-01-15 00:00:00","D","06F","12","A","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2013-06-27 00:00:00","P","10A","14","","","2013-09-13 01:01:06.177000000" +"41684379","SOBA TOTTO","1","211","EAST 43 STREET","10017","2125578200","49","2012-11-26 00:00:00","F","04J","53","C","2012-11-26 00:00:00","2013-09-13 01:01:06.177000000" +"41685002","NEW PUNJAB RESTAURANT & GRILL","3","691","CONEY ISLAND AVE","11218","7188566207","59","2012-10-19 00:00:00","F","09C","49","C","2012-10-19 00:00:00","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2011-09-10 00:00:00","D","06E","10","A","2011-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2012-08-20 00:00:00","F","04L","64","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2012-08-20 00:00:00","F","04N","64","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-02-26 00:00:00","F","02B","67","","","2013-09-13 01:01:06.177000000" +"41658579","GRAVITY LOUNGE","2","400","CLAREMONT PARKWAY","10457","7182942477","53","2012-08-16 00:00:00","G","10H","49","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2012-03-07 00:00:00","D","10D","11","A","2012-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2012-07-19 00:00:00","F","06E","15","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2012-07-19 00:00:00","F","10F","15","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2013-02-07 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"41659425","ARATA JAPANESE RESTAURANT.","1","1047","2 AVENUE","10022","2123718338","49","2012-11-23 00:00:00","D","08A","11","A","2012-11-23 00:00:00","2013-09-13 01:01:06.177000000" +"41659425","ARATA JAPANESE RESTAURANT.","1","1047","2 AVENUE","10022","2123718338","49","2013-05-10 00:00:00","P","06F","26","","","2013-09-13 01:01:06.177000000" +"41589890","Y CAFE","1","182","AVENUE B","10009","2127773323","05","2013-02-28 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41589890","Y CAFE","1","182","AVENUE B","10009","2127773323","05","2013-02-28 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41589890","Y CAFE","1","182","AVENUE B","10009","2127773323","05","2013-02-28 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2011-08-01 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2011-08-24 00:00:00","U","06A","25","B","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2013-02-07 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2013-02-26 00:00:00","D","02B","12","A","2013-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2013-07-15 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2013-07-15 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2013-07-15 00:00:00","F","09B","29","","","2013-09-13 01:01:06.177000000" +"41659449","FUJI SUSHI","5","1115","HYLAN BOULEVARD","10305","7188160188","49","2012-05-09 00:00:00","F","08A","19","C","2012-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2011-11-28 00:00:00","F","04C","48","","","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2011-11-28 00:00:00","F","06E","48","","","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2011-11-28 00:00:00","F","10F","48","","","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2012-04-24 00:00:00","P","02B","16","","","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2012-05-16 00:00:00","U","10B","9","B","2012-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"41659908","TENZAN SUSHI","3","7119 ","18TH AVE ","11204","7186213288","49","2012-06-20 00:00:00","D","06C","13","A","2012-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41610636","RESOBOX","4","41-26","27 STREET","11101","7187843680","49","2013-02-27 00:00:00","F","16B","0","","","2013-09-13 01:01:06.177000000" +"41688151","RAMEN YEBISU","3","126 ","NORTH 6 STREET ","11249","7187821444","49","2013-06-20 00:00:00","F","04J","18","","","2013-09-13 01:01:06.177000000" +"41610754","EAST SEAFOOD CUISINE","3","714-726 ","65 STREET ","11220","7187650098","20","2011-08-29 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41610754","EAST SEAFOOD CUISINE","3","714-726 ","65 STREET ","11220","7187650098","20","2011-08-29 00:00:00","F","06B","49","","","2013-09-13 01:01:06.177000000" +"41661008","AMURA JAPANESE RESTAURANT","1","1567","2ND AVE","10028","2127721688","49","2012-05-14 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41661008","AMURA JAPANESE RESTAURANT","1","1567","2ND AVE","10028","2127721688","49","2013-02-27 00:00:00","P","06F","17","","","2013-09-13 01:01:06.177000000" +"41661008","AMURA JAPANESE RESTAURANT","1","1567","2ND AVE","10028","2127721688","49","2013-02-27 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41661008","AMURA JAPANESE RESTAURANT","1","1567","2ND AVE","10028","2127721688","49","2013-09-11 00:00:00","P","06F","23","","","2013-09-13 01:01:06.177000000" +"41688777","Q AND N DELI FOOD","4","230-59 ","INTL AIRPORT CENTER BLVD ","11413","7189178928","03","2013-02-11 00:00:00","W","06C","49","","","2013-09-13 01:01:06.177000000" +"41688797","RIVER JAPANESE RESTAURANT","4","37-18 ","MAIN ST ","11354","7188869880","49","2012-09-20 00:00:00","P","02B","12","","","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-02-19 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41661153","SAKURA IV","4","6419 ","MYRTLE AVENUE ","11385","7183667888","49","2012-05-21 00:00:00","U","02G","25","B","2012-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41605223","YU SUSHI","1","827","WEST 181 STREET","10033","2127818833","49","2012-10-02 00:00:00","D","02G","13","A","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41611549","CITI BAGEL & DELI","5","6372","AMBOY ROAD","10309","7189679300","27","2011-08-30 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41611549","CITI BAGEL & DELI","5","6372","AMBOY ROAD","10309","7189679300","27","2011-08-30 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41605223","YU SUSHI","1","827","WEST 181 STREET","10033","2127818833","49","2012-08-13 00:00:00","P","06C","18","","","2013-09-13 01:01:06.177000000" +"41605223","YU SUSHI","1","827","WEST 181 STREET","10033","2127818833","49","2013-04-13 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"41601132","MARS CAFE","1","58","WEST 39 STREET","10018","2129974200","03","2012-08-24 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41662152","TENDO SUSHI","4","6626 ","FRESH POND ROAD ","11385","7183810809","49","2012-05-21 00:00:00","D","04A","22","","","2013-09-13 01:01:06.177000000" +"41662152","TENDO SUSHI","4","6626 ","FRESH POND ROAD ","11385","7183810809","49","2012-08-13 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41662152","TENDO SUSHI","4","6626 ","FRESH POND ROAD ","11385","7183810809","49","2013-04-25 00:00:00","F","04L","51","","","2013-09-13 01:01:06.177000000" +"41662345","IRON SUSHI","1","212","EAST 10 STREET","10003","2122280102","49","2013-05-28 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2011-06-01 00:00:00","F","06F","33","","","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2011-12-28 00:00:00","U","06F","24","B","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2012-09-08 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2012-06-07 00:00:00","F","04E","30","","","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2013-02-13 00:00:00","P","02G","16","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2011-12-15 00:00:00","G","04M","39","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2011-12-15 00:00:00","G","08A","39","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2012-04-03 00:00:00","F","02B","20","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2012-04-03 00:00:00","F","04L","20","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2012-10-17 00:00:00","U","04K","7","B","2012-10-17 00:00:00","2013-09-13 01:01:06.177000000" +"41605649","JUDY'S SPANISH RESTAURANT","1","1505","LEXINGTON AVENUE","10029","2128310193","53","2012-03-01 00:00:00","G","04K","49","","","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2011-08-22 00:00:00","F","04L","46","","","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2011-08-22 00:00:00","F","10D","46","","","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2011-09-19 00:00:00","U","02G","19","B","2011-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2013-04-17 00:00:00","P","04C","23","","","2013-09-13 01:01:06.177000000" +"41601691","WAZA SUSHI","3","485","MYRTLE AVENUE","11205","7183993839","49","2012-09-27 00:00:00","F","02B","32","","","2013-09-13 01:01:06.177000000" +"41605380","NEW HAWAII SEA","2","1475","WILLIAMSBRIDGE ROAD","10461","7188637900","22","2011-08-01 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2011-11-16 00:00:00","P","06F","17","","","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2012-06-07 00:00:00","F","06C","30","","","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2013-02-13 00:00:00","P","10H","16","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2011-08-26 00:00:00","F","10B","38","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2011-10-13 00:00:00","F","08A","24","C","2011-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2011-10-13 00:00:00","F","10B","24","C","2011-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2011-12-16 00:00:00","O","10F","4","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2012-05-05 00:00:00","U","09A","2","B","2012-05-05 00:00:00","2013-09-13 01:01:06.177000000" +"41689884","NAGOYA SUSHI","3","1907","KINGS HIGHWAY","11229","7183363688","49","2013-07-20 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2011-11-21 00:00:00","U","02G","21","B","2011-11-21 00:00:00","2013-09-13 01:01:06.177000000" +"41612358","CAFE CNN GOURMET DELI","1","315","PARK AVENUE SOUTH","10010","2122540444","03","2011-10-25 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41612358","CAFE CNN GOURMET DELI","1","315","PARK AVENUE SOUTH","10010","2122540444","03","2012-04-03 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41612358","CAFE CNN GOURMET DELI","1","315","PARK AVENUE SOUTH","10010","2122540444","03","2012-04-03 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2011-11-21 00:00:00","U","10B","21","B","2011-11-21 00:00:00","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2012-05-29 00:00:00","G","02G","37","","","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2012-06-05 00:00:00","O","10B","2","P","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2011-12-01 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2011-12-01 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2012-05-12 00:00:00","F","02G","19","","","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2012-11-29 00:00:00","P","06E","20","","","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2012-11-29 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41690686","AJI 18","1","208","3 AVENUE","10003","2126776921","49","2012-10-12 00:00:00","P","06D","15","","","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2011-12-15 00:00:00","U","08A","15","B","2011-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2011-07-27 00:00:00","F","04M","31","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2012-05-03 00:00:00","F","04H","40","C","2012-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2012-06-08 00:00:00","U","02H","14","","","2013-09-13 01:01:06.177000000" +"41613264","BIG E'S DELI","5","180 ","WEST SERVICE ROAD ","10314","7189666232","03","2012-10-02 00:00:00","F","06F","49","C","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41613264","BIG E'S DELI","5","180 ","WEST SERVICE ROAD ","10314","7189666232","03","2012-10-02 00:00:00","F","10J","49","C","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41613672","A LA SAIGON","1","8-10","LIBERTY PLACE","10005","2122279855","28","2011-12-20 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41613672","A LA SAIGON","1","8-10","LIBERTY PLACE","10005","2122279855","28","2011-12-20 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41692187","RED MOON","1","132","WEST 45 STREET","10036","2123916666","49","2012-09-06 00:00:00","F","06E","29","","","2013-09-13 01:01:06.177000000" +"41593541","HARLEM TAVERN","1","2153 ","8 AVENUE ","10026","2128664500","03","2011-08-01 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41614161","AMY RUTH'S RESTAURANT","1","113","WEST 116 STREET","10026","2122808779","73","2013-08-16 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2011-08-01 00:00:00","P","06D","26","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2011-08-24 00:00:00","U","04C","25","B","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2012-02-28 00:00:00","F","06D","47","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2012-03-07 00:00:00","D","10F","11","A","2012-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2013-07-15 00:00:00","F","06C","29","","","2013-09-13 01:01:06.177000000" +"41607908","LONGEVOUSJOY Ramen Sushi Brasserie","3","6610","BAY PARKWAY","11204","9178926068","49","2011-10-07 00:00:00","D","10F","4","","","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2012-02-09 00:00:00","F","04A","47","","","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2012-05-02 00:00:00","D","09C","9","A","2012-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2012-10-04 00:00:00","F","04L","28","","","2013-09-13 01:01:06.177000000" +"41607908","LONGEVOUSJOY Ramen Sushi Brasserie","3","6610","BAY PARKWAY","11204","9178926068","49","2013-03-19 00:00:00","F","06F","35","","","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2012-02-09 00:00:00","F","10F","47","","","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2013-06-01 00:00:00","F","04M","29","","","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2013-06-01 00:00:00","F","10B","29","","","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2011-06-21 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2011-09-20 00:00:00","P","10I","23","","","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2011-11-28 00:00:00","F","04H","48","","","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2011-11-28 00:00:00","F","06A","48","","","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2012-05-16 00:00:00","U","02G","9","B","2012-05-16 00:00:00","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2012-12-13 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2012-12-13 00:00:00","P","04N","21","","","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2012-12-13 00:00:00","P","06D","21","","","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2011-09-28 00:00:00","U","04L","19","B","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2012-04-05 00:00:00","P","06D","18","","","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2012-04-05 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2012-05-07 00:00:00","D","04L","9","A","2012-05-07 00:00:00","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2012-12-04 00:00:00","U","10B","19","B","2012-12-04 00:00:00","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2013-05-22 00:00:00","F","10F","17","","","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2011-08-18 00:00:00","D","10A","6","","","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2011-08-18 00:00:00","D","10B","6","","","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2011-08-30 00:00:00","P","06C","16","","","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2011-08-30 00:00:00","P","10B","16","","","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2012-04-30 00:00:00","D","06C","12","A","2012-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2012-10-02 00:00:00","F","10B","28","","","2013-09-13 01:01:06.177000000" +"41608998","BAR MISHIMA","1","212","EAST 52 STREET","10022","2125881089","49","2012-05-23 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41608998","BAR MISHIMA","1","212","EAST 52 STREET","10022","2125881089","49","2013-03-07 00:00:00","P","04H","21","","","2013-09-13 01:01:06.177000000" +"41608998","BAR MISHIMA","1","212","EAST 52 STREET","10022","2125881089","49","2013-03-07 00:00:00","P","10B","21","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2011-11-18 00:00:00","U","04M","20","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2012-04-09 00:00:00","F","10A","24","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2012-04-19 00:00:00","U","04L","15","B","2012-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2012-09-12 00:00:00","F","04H","34","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2012-09-12 00:00:00","F","10B","34","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2013-04-05 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41608998","BAR MISHIMA","1","212","EAST 52 STREET","10022","2125881089","49","2013-05-08 00:00:00","C","10H","11","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2011-10-21 00:00:00","P","06E","24","","","2013-09-13 01:01:06.177000000" +"41694442","BAMBOOTORI","1","106","UNIVERSITY PLACE","10003","2122555152","49","2012-10-09 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41694442","BAMBOOTORI","1","106","UNIVERSITY PLACE","10003","2122555152","49","2013-07-02 00:00:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"41694966","SHINJUKU","3","1664","SHEEPSHEAD BAY ROAD","11235","7189344273","49","2013-03-25 00:00:00","F","06A","34","","","2013-09-13 01:01:06.177000000" +"41605223","YU SUSHI","1","827","WEST 181 STREET","10033","2127818833","49","2011-08-22 00:00:00","D","10F","13","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2012-04-19 00:00:00","U","02B","15","B","2012-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"41605223","YU SUSHI","1","827","WEST 181 STREET","10033","2127818833","49","2012-08-13 00:00:00","P","06E","18","","","2013-09-13 01:01:06.177000000" +"41605223","YU SUSHI","1","827","WEST 181 STREET","10033","2127818833","49","2013-04-13 00:00:00","P","06C","17","","","2013-09-13 01:01:06.177000000" +"41605380","NEW HAWAII SEA","2","1475","WILLIAMSBRIDGE ROAD","10461","7188637900","22","2011-08-01 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41605380","NEW HAWAII SEA","2","1475","WILLIAMSBRIDGE ROAD","10461","7188637900","22","2011-08-01 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2011-12-07 00:00:00","U","06A","25","B","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2012-06-07 00:00:00","F","06E","30","","","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2012-06-22 00:00:00","U","02G","18","B","2012-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2013-02-13 00:00:00","P","06D","16","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2011-08-26 00:00:00","F","06C","38","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2011-10-13 00:00:00","F","02G","24","C","2011-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"41694966","SHINJUKU","3","1664","SHEEPSHEAD BAY ROAD","11235","7189344273","49","2013-03-25 00:00:00","F","06B","34","","","2013-09-13 01:01:06.177000000" +"41605649","JUDY'S SPANISH RESTAURANT","1","1505","LEXINGTON AVENUE","10029","2128310193","53","2012-03-01 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41605649","JUDY'S SPANISH RESTAURANT","1","1505","LEXINGTON AVENUE","10029","2128310193","53","2012-03-01 00:00:00","G","06D","49","","","2013-09-13 01:01:06.177000000" +"41605649","JUDY'S SPANISH RESTAURANT","1","1505","LEXINGTON AVENUE","10029","2128310193","53","2012-03-01 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2011-11-07 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2011-11-07 00:00:00","P","06E","19","","","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2011-11-21 00:00:00","U","06C","21","B","2011-11-21 00:00:00","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2012-05-29 00:00:00","G","06E","37","","","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2012-05-29 00:00:00","G","08A","37","","","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2012-06-13 00:00:00","U","10F","17","B","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41695267","ICHI SUSHI","3","8609","BAY PARKWAY","11214","7182652289","49","2013-01-24 00:00:00","F","04M","43","","","2013-09-13 01:01:06.177000000" +"41695267","ICHI SUSHI","3","8609","BAY PARKWAY","11214","7182652289","49","2013-01-24 00:00:00","F","05D","43","","","2013-09-13 01:01:06.177000000" +"41695453","HAPPY FORTUNE RESTAURANT (NY)","1","96","BOWERY","10013","2122191993","49","2013-09-11 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41695477","GHOROA RESTAURANT","4","168-41","HILLSIDE AVENUE","11432","7186571000","09","2013-03-23 00:00:00","G","02B","49","","","2013-09-13 01:01:06.177000000" +"41695477","GHOROA RESTAURANT","4","168-41","HILLSIDE AVENUE","11432","7186571000","09","2013-03-23 00:00:00","G","04K","49","","","2013-09-13 01:01:06.177000000" +"41695530","TERIYAKI SHACK","3","96","DEKALB AVENUE","11201","7187224771","49","2013-03-18 00:00:00","P","10F","6","","","2013-09-13 01:01:06.177000000" +"41610636","RESOBOX","4","41-26","27 STREET","11101","7187843680","49","2011-11-28 00:00:00","D","10H","4","","","2013-09-13 01:01:06.177000000" +"41616445","AKURA SUSHI","1","39","EAST 31 STREET","10016","2123793623","49","2011-12-07 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41616445","AKURA SUSHI","1","39","EAST 31 STREET","10016","2123793623","49","2012-07-23 00:00:00","D","02G","12","A","2012-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41616445","AKURA SUSHI","1","39","EAST 31 STREET","10016","2123793623","49","2012-12-26 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41695897","CAFE BOULIS","4","30-15 ","31 AVENUE ","11106","7188061014","14","2012-10-10 00:00:00","E","10F","49","","","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2011-12-07 00:00:00","P","04H","24","","","2013-09-13 01:01:06.177000000" +"41610754","EAST SEAFOOD CUISINE","3","714-726 ","65 STREET ","11220","7187650098","20","2011-08-29 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41610754","EAST SEAFOOD CUISINE","3","714-726 ","65 STREET ","11220","7187650098","20","2011-12-27 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2011-08-15 00:00:00","D","10F","11","","","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2011-12-15 00:00:00","U","06C","15","B","2011-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2012-05-12 00:00:00","F","04C","19","","","2013-09-13 01:01:06.177000000" +"41611549","CITI BAGEL & DELI","5","6372","AMBOY ROAD","10309","7189679300","27","2011-08-30 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41611549","CITI BAGEL & DELI","5","6372","AMBOY ROAD","10309","7189679300","27","2011-08-30 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41611549","CITI BAGEL & DELI","5","6372","AMBOY ROAD","10309","7189679300","27","2011-08-30 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41611549","CITI BAGEL & DELI","5","6372","AMBOY ROAD","10309","7189679300","27","2011-08-30 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41596350","RIVER JAPANESE CUISINE","4","61-44 ","SPRINGFIELD BOULEVARD ","11364","7183218981","49","2012-03-08 00:00:00","D","10B","6","A","2012-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41666608","27 SHINJUKU SUSHI INC","1","27","PARK PL","10007","2124067333","49","2012-06-06 00:00:00","D","10B","7","A","2012-06-06 00:00:00","2013-09-13 01:01:06.177000000" +"41667390","KINGS TASTE OF ASTORIA","4","8406","ASTORIA BLVD","11370","7184269086","20","2012-06-16 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41612358","CAFE CNN GOURMET DELI","1","315","PARK AVENUE SOUTH","10010","2122540444","03","2011-10-25 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41668068","MARKIS PLACE","4","4403 ","30 AVENUE ","11103","9175683496","04","2013-06-04 00:00:00","F","05H","49","","","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2012-10-25 00:00:00","P","02B","10","","","2013-09-13 01:01:06.177000000" +"41596938","SHINJU III SUSHI","3","75","5 AVENUE","11217","7186380888","49","2013-06-20 00:00:00","F","04M","17","","","2013-09-13 01:01:06.177000000" +"41617970","CHINA KING","3","6805","NEW UTRECHT AVE","11219","7182561356","20","2011-11-30 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41617970","CHINA KING","3","6805","NEW UTRECHT AVE","11219","7182561356","20","2011-11-30 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41617970","CHINA KING","3","6805","NEW UTRECHT AVE","11219","7182561356","20","2011-11-30 00:00:00","F","09B","49","","","2013-09-13 01:01:06.177000000" +"41618024","LA NORTENITA RESTAURANT","3","833","FRANKLIN AVENUE","11225","3477070791","53","2013-03-18 00:00:00","G","09C","49","","","2013-09-13 01:01:06.177000000" +"41597054","SUSHI YASAKA","1","251","WEST 72 STREET","10023","2124968460","49","2011-07-15 00:00:00","D","10B","12","","","2013-09-13 01:01:06.177000000" +"41597054","SUSHI YASAKA","1","251","WEST 72 STREET","10023","2124968460","49","2012-05-02 00:00:00","D","10H","13","A","2012-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2011-08-15 00:00:00","P","10B","20","","","2013-09-13 01:01:06.177000000" +"41607908","LONGEVOUSJOY Ramen Sushi Brasserie","3","6610","BAY PARKWAY","11204","9178926068","49","2013-03-19 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"41607908","LONGEVOUSJOY Ramen Sushi Brasserie","3","6610","BAY PARKWAY","11204","9178926068","49","2013-03-19 00:00:00","F","04H","35","","","2013-09-13 01:01:06.177000000" +"41608024","KOBEYAKI","1","293 ","7 AVENUE ","10001","2122425500","49","2011-10-17 00:00:00","D","10F","2","","","2013-09-13 01:01:06.177000000" +"41608024","KOBEYAKI","1","293 ","7 AVENUE ","10001","2122425500","49","2012-01-04 00:00:00","D","02G","13","A","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2012-02-09 00:00:00","F","02B","47","","","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2012-12-04 00:00:00","U","02G","15","B","2012-12-04 00:00:00","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2013-06-01 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2013-07-03 00:00:00","G","06C","43","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2011-10-05 00:00:00","G","06E","20","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2012-01-04 00:00:00","U","06C","19","B","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2012-08-14 00:00:00","D","06C","13","A","2012-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-02-14 00:00:00","F","06F","59","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-03-04 00:00:00","U","08A","11","B","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-03-04 00:00:00","U","10D","11","B","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-03-21 00:00:00","F","06A","41","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-03-21 00:00:00","F","08A","41","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-03-21 00:00:00","F","15J","","","","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-12-11 00:00:00","F","04C","65","C","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-12-11 00:00:00","F","09C","65","C","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-12-11 00:00:00","F","10F","65","C","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41612017","KUKU CANTEEN","1","289","MERCER STREET","10003","2124736162","49","2011-09-01 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"41613264","BIG E'S DELI","5","180 ","WEST SERVICE ROAD ","10314","7189666232","03","2012-10-02 00:00:00","F","06A","49","C","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41613264","BIG E'S DELI","5","180 ","WEST SERVICE ROAD ","10314","7189666232","03","2012-10-02 00:00:00","F","08A","49","C","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41613264","BIG E'S DELI","5","180 ","WEST SERVICE ROAD ","10314","7189666232","03","2012-10-02 00:00:00","F","08B","49","C","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41613264","BIG E'S DELI","5","180 ","WEST SERVICE ROAD ","10314","7189666232","03","2012-10-02 00:00:00","F","10H","49","C","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41699653","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","1","121","WEST 125 STREET","10027","6312437700","49","2013-03-21 00:00:00","F","04A","32","","","2013-09-13 01:01:06.177000000" +"41699768","TOMPKINS BROOKLYN CAFE & RESTAURANT","3","268","TOMPKINS AVENUE","11216","7186223681","53","2012-12-19 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41699768","TOMPKINS BROOKLYN CAFE & RESTAURANT","3","268","TOMPKINS AVENUE","11216","7186223681","53","2012-12-19 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41699768","TOMPKINS BROOKLYN CAFE & RESTAURANT","3","268","TOMPKINS AVENUE","11216","7186223681","53","2012-12-19 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41597839","KIDO SUSHI (QUEENS CENTER MALL)","4","90-15","QUEENS BOULEVARD","11373","7182713688","49","2011-07-30 00:00:00","F","10F","43","","","2013-09-13 01:01:06.177000000" +"41597839","KIDO SUSHI (QUEENS CENTER MALL)","4","90-15","QUEENS BOULEVARD","11373","7182713688","49","2011-12-13 00:00:00","P","06C","5","","","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2012-04-05 00:00:00","P","09C","18","","","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2012-10-02 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2012-10-02 00:00:00","F","06D","28","","","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2012-10-02 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2013-01-15 00:00:00","D","02B","12","A","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2013-07-17 00:00:00","F","06F","16","","","2013-09-13 01:01:06.177000000" +"41618609","Sushi Akio","4","71-45","YELLOWSTONE BOULEVARD","11375","7185442199","49","2013-03-26 00:00:00","D","04A","12","A","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41613672","A LA SAIGON","1","8-10","LIBERTY PLACE","10005","2122279855","28","2011-12-20 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41613672","A LA SAIGON","1","8-10","LIBERTY PLACE","10005","2122279855","28","2011-12-20 00:00:00","F","05H","49","","","2013-09-13 01:01:06.177000000" +"41670486","JAPAS 38","1","9","EAST 38 STREET","10016","2126794040","49","2012-07-30 00:00:00","P","10F","26","","","2013-09-13 01:01:06.177000000" +"41670534","Iron Sushi","1","355 ","EAST 78 STREET ","10075","2127727680","49","2013-08-26 00:00:00","F","04H","30","","","2013-09-13 01:01:06.177000000" +"41608998","BAR MISHIMA","1","212","EAST 52 STREET","10022","2125881089","49","2012-09-05 00:00:00","D","02G","13","A","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41608998","BAR MISHIMA","1","212","EAST 52 STREET","10022","2125881089","49","2012-09-05 00:00:00","D","06F","13","A","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2011-10-21 00:00:00","P","04H","24","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2012-04-19 00:00:00","U","10I","15","B","2012-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2012-09-12 00:00:00","F","02B","34","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2013-03-21 00:00:00","F","03C","43","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2013-03-21 00:00:00","F","06D","43","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2013-03-21 00:00:00","F","10A","43","","","2013-09-13 01:01:06.177000000" +"41619148","LA POLLERA COLORADA II","4","82-13","NORTHERN BOULEVARD","11372","7184246531","77","2011-10-25 00:00:00","F","04M","49","C","2011-10-25 00:00:00","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2012-02-15 00:00:00","F","08A","34","","","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2012-09-25 00:00:00","F","04C","25","C","2012-09-25 00:00:00","2013-09-13 01:01:06.177000000" +"41700608","SEN NYC","3","12 ","WEST 21 STREET ","10010","2123885736","49","2013-05-08 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41700608","SEN NYC","3","12 ","WEST 21 STREET ","10010","2123885736","49","2013-05-08 00:00:00","F","09B","29","","","2013-09-13 01:01:06.177000000" +"41700776","ELBOW ROOM","3","614 ","ATLANTIC AVENUE ","11217","7182304088","03","2013-02-07 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41700776","ELBOW ROOM","3","614 ","ATLANTIC AVENUE ","11217","7182304088","03","2013-02-07 00:00:00","F","10I","49","","","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-07-22 00:00:00","G","06C","64","","","2013-09-13 01:01:06.177000000" +"41613264","BIG E'S DELI","5","180 ","WEST SERVICE ROAD ","10314","7189666232","03","2012-10-02 00:00:00","F","10F","49","C","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2012-07-11 00:00:00","E","04N","63","","","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2012-07-11 00:00:00","E","10B","63","","","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2012-09-24 00:00:00","U","04L","11","B","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41613672","A LA SAIGON","1","8-10","LIBERTY PLACE","10005","2122279855","28","2011-12-20 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2012-03-16 00:00:00","W","08A","32","","","2013-09-13 01:01:06.177000000" +"41671938","YUSHI","1","100 ","MAIDEN LANE ","10038","2127422154","49","2012-09-11 00:00:00","P","02B","27","","","2013-09-13 01:01:06.177000000" +"41671938","YUSHI","1","100 ","MAIDEN LANE ","10038","2127422154","49","2013-04-23 00:00:00","F","10E","25","","","2013-09-13 01:01:06.177000000" +"41701697","SUZUME","3","545","LORIMER STREET","11211","7184860200","49","2013-01-11 00:00:00","D","10F","2","","","2013-09-13 01:01:06.177000000" +"41702145","MP TAVERNA","4","31-29","DITMARS BOULEVARD","11105","7187772187","38","2013-05-23 00:00:00","F","05A","49","","","2013-09-13 01:01:06.177000000" +"41702361","VINE","1","2955","BROADWAY","10025","2122223568","49","2013-01-17 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"41614161","AMY RUTH'S RESTAURANT","1","113","WEST 116 STREET","10026","2122808779","73","2013-08-16 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41614161","AMY RUTH'S RESTAURANT","1","113","WEST 116 STREET","10026","2122808779","73","2013-08-16 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41702601","KOSHER YAMA SUSHI","4","81-63 ","LEFFERTS BOULEVARD ","11415","7188801750","49","2013-02-07 00:00:00","F","04L","24","","","2013-09-13 01:01:06.177000000" +"41702601","KOSHER YAMA SUSHI","4","81-63 ","LEFFERTS BOULEVARD ","11415","7188801750","49","2013-02-07 00:00:00","F","08A","24","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2012-08-20 00:00:00","F","06F","64","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-02-26 00:00:00","F","06F","67","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-08-14 00:00:00","F","04M","32","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-09-11 00:00:00","U","08A","17","","","2013-09-13 01:01:06.177000000" +"41610636","RESOBOX","4","41-26","27 STREET","11101","7187843680","49","2012-02-21 00:00:00","D","06E","9","A","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41702877","THE LOOP","1","173","3 AVENUE","10003","2125891200","49","2013-03-05 00:00:00","F","06C","45","","","2013-09-13 01:01:06.177000000" +"41702877","THE LOOP","1","173","3 AVENUE","10003","2125891200","49","2013-03-05 00:00:00","F","10F","45","","","2013-09-13 01:01:06.177000000" +"41702880","RAKU II ITS JAPANESE","1","57","WEST 76 STREET","10023","2128731220","49","2013-02-26 00:00:00","F","10F","23","","","2013-09-13 01:01:06.177000000" +"41703229","SAKE BAR SATSKO","1","202","EAST 7 STREET","10009","2126140933","49","2013-03-26 00:00:00","F","10F","26","","","2013-09-13 01:01:06.177000000" +"41703229","SAKE BAR SATSKO","1","202","EAST 7 STREET","10009","2126140933","49","2013-06-25 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41703235","CHEZ SARDINE","1","183","WEST 10 STREET","10014","6463603705","49","2013-08-21 00:00:00","F","06C","31","","","2013-09-13 01:01:06.177000000" +"41703235","CHEZ SARDINE","1","183","WEST 10 STREET","10014","6463603705","49","2013-08-21 00:00:00","F","06F","31","","","2013-09-13 01:01:06.177000000" +"41615409","HOT KITCHEN","1","104","2 AVENUE","10003","2122283090","20","2013-01-03 00:00:00","F","04M","49","C","2013-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41615409","HOT KITCHEN","1","104","2 AVENUE","10003","2122283090","20","2013-01-03 00:00:00","F","10I","49","C","2013-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41673139","SUSHI AVE X","3","241","AVENUE X","11223","7183759757","49","2012-07-02 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"41673139","SUSHI AVE X","3","241","AVENUE X","11223","7183759757","49","2012-08-09 00:00:00","D","10F","11","A","2012-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41673139","SUSHI AVE X","3","241","AVENUE X","11223","7183759757","49","2013-05-18 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41673363","RAMEN SAMURAI BOY","4","8532","GRAND AVENUE","11373","7183962222","49","2012-09-18 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41673363","RAMEN SAMURAI BOY","4","8532","GRAND AVENUE","11373","7183962222","49","2012-10-01 00:00:00","U","08B","13","B","2012-10-01 00:00:00","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2011-11-05 00:00:00","U","09C","13","B","2011-11-05 00:00:00","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2012-03-14 00:00:00","G","04L","52","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2012-12-04 00:00:00","U","04L","19","B","2012-12-04 00:00:00","2013-09-13 01:01:06.177000000" +"41610754","EAST SEAFOOD CUISINE","3","714-726 ","65 STREET ","11220","7187650098","20","2011-08-29 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41610754","EAST SEAFOOD CUISINE","3","714-726 ","65 STREET ","11220","7187650098","20","2011-08-29 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41610754","EAST SEAFOOD CUISINE","3","714-726 ","65 STREET ","11220","7187650098","20","2011-08-29 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41610754","EAST SEAFOOD CUISINE","3","714-726 ","65 STREET ","11220","7187650098","20","2011-08-29 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41610754","EAST SEAFOOD CUISINE","3","714-726 ","65 STREET ","11220","7187650098","20","2011-12-27 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41704068","HANJAN","1","36","WEST 26 STREET","10010","2122067226","52","2013-04-10 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41673883","BUGS","1","504","EAST 12 STREET","10009","6469187985","49","2012-06-22 00:00:00","D","10F","3","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-08-25 00:00:00","F","02B","104","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-09-08 00:00:00","F","04A","25","C","2012-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2013-01-28 00:00:00","F","04H","28","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2013-06-11 00:00:00","P","10F","25","","","2013-09-13 01:01:06.177000000" +"41704282","FUKUROU","1","87","MACDOUGAL STREET","10012","2123880013","49","2013-04-23 00:00:00","P","04C","18","","","2013-09-13 01:01:06.177000000" +"41616445","AKURA SUSHI","1","39","EAST 31 STREET","10016","2123793623","49","2011-12-07 00:00:00","P","04H","21","","","2013-09-13 01:01:06.177000000" +"41616445","AKURA SUSHI","1","39","EAST 31 STREET","10016","2123793623","49","2011-12-20 00:00:00","D","10F","8","A","2011-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41616445","AKURA SUSHI","1","39","EAST 31 STREET","10016","2123793623","49","2012-12-26 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41616445","AKURA SUSHI","1","39","EAST 31 STREET","10016","2123793623","49","2013-01-18 00:00:00","D","02B","10","A","2013-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"41615409","HOT KITCHEN","1","104","2 AVENUE","10003","2122283090","20","2013-01-03 00:00:00","F","02G","49","C","2013-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2011-12-07 00:00:00","P","06A","24","","","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2012-01-31 00:00:00","F","05D","33","C","2012-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2012-04-06 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41704805","OISHI SUSHI RESTAURANT","3","929","MANHATTAN AVENUE","11222","7183498988","49","2013-02-06 00:00:00","P","06D","14","","","2013-09-13 01:01:06.177000000" +"41705732","BentOn Cafe","1","156","EAST 45 STREET","10017","2129229788","49","2013-01-28 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41705732","BentOn Cafe","1","156","EAST 45 STREET","10017","2129229788","49","2013-01-28 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41705732","BentOn Cafe","1","156","EAST 45 STREET","10017","2129229788","49","2013-02-14 00:00:00","F","10B","19","C","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41705732","BentOn Cafe","1","156","EAST 45 STREET","10017","2129229788","49","2013-06-18 00:00:00","F","02B","23","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2011-11-03 00:00:00","W","08A","14","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2012-01-24 00:00:00","P","02B","26","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2012-02-07 00:00:00","F","04H","31","C","2012-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2012-02-07 00:00:00","F","06C","31","C","2012-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2012-02-07 00:00:00","F","08A","31","C","2012-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2012-07-10 00:00:00","P","04N","17","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2012-07-10 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2012-07-23 00:00:00","U","02G","27","B","2012-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2013-03-20 00:00:00","F","08A","17","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2013-08-14 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"41675643","GINZA SUSHI","1","251","EAST 35 STREET","10016","2128893333","49","2012-07-16 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41675643","GINZA SUSHI","1","251","EAST 35 STREET","10016","2128893333","49","2012-08-30 00:00:00","U","04M","21","B","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41705748","GENKI SUSHI HOUSE","5","150","GREAVES LANE","10308","7182138276","49","2013-02-01 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41705748","GENKI SUSHI HOUSE","5","150","GREAVES LANE","10308","7182138276","49","2013-06-25 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41601132","MARS CAFE","1","58","WEST 39 STREET","10018","2129974200","03","2012-08-24 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41601132","MARS CAFE","1","58","WEST 39 STREET","10018","2129974200","03","2012-08-24 00:00:00","F","09A","49","","","2013-09-13 01:01:06.177000000" +"41616445","AKURA SUSHI","1","39","EAST 31 STREET","10016","2123793623","49","2011-12-20 00:00:00","D","06A","8","A","2011-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2012-01-31 00:00:00","F","10B","33","C","2012-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2012-04-17 00:00:00","U","02G","13","B","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41612017","KUKU CANTEEN","1","289","MERCER STREET","10003","2124736162","49","2012-03-21 00:00:00","D","05D","10","A","2012-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41612358","CAFE CNN GOURMET DELI","1","315","PARK AVENUE SOUTH","10010","2122540444","03","2011-10-25 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"41612358","CAFE CNN GOURMET DELI","1","315","PARK AVENUE SOUTH","10010","2122540444","03","2011-10-25 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41612358","CAFE CNN GOURMET DELI","1","315","PARK AVENUE SOUTH","10010","2122540444","03","2012-04-03 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41622616","TOTO SUSHI","1","216","THOMPSON STREET","10012","2125334433","49","2012-06-01 00:00:00","P","04C","22","","","2013-09-13 01:01:06.177000000" +"41622616","TOTO SUSHI","1","216","THOMPSON STREET","10012","2125334433","49","2012-06-01 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"41676490","AOYU SUSHI","2","3532A","JOHNSON AVENUE","10463","7188846633","49","2012-08-23 00:00:00","D","02B","7","A","2012-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41676490","AOYU SUSHI","2","3532A","JOHNSON AVENUE","10463","7188846633","49","2013-08-21 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41705988","KURA","1","130","ST MARKS PLACE","10009","2122281010","49","2013-05-08 00:00:00","F","02B","27","","","2013-09-13 01:01:06.177000000" +"41705988","KURA","1","130","ST MARKS PLACE","10009","2122281010","49","2013-05-08 00:00:00","F","10F","27","","","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2011-08-22 00:00:00","F","02G","46","","","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2011-08-22 00:00:00","F","04A","46","","","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2011-09-19 00:00:00","U","04L","19","B","2011-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2012-01-24 00:00:00","D","10I","13","A","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2013-04-17 00:00:00","P","02H","23","","","2013-09-13 01:01:06.177000000" +"41601691","WAZA SUSHI","3","485","MYRTLE AVENUE","11205","7183993839","49","2012-09-27 00:00:00","F","06F","32","","","2013-09-13 01:01:06.177000000" +"41601691","WAZA SUSHI","3","485","MYRTLE AVENUE","11205","7183993839","49","2012-09-27 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2012-11-21 00:00:00","P","04C","24","","","2013-09-13 01:01:06.177000000" +"41623268","MAGURO SUSHI","1","160","EAST 28 STREET","10016","2125108883","49","2012-01-30 00:00:00","D","09A","12","A","2012-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41617529","ELISA CAFE","3","254","THROOP AVENUE","11206","7184558349","53","2011-10-21 00:00:00","F","06E","49","C","2011-10-21 00:00:00","2013-09-13 01:01:06.177000000" +"41677309","ATAMI JAPANESE FUSION","1","1167","2ND AVE","10065","2126886868","49","2012-08-15 00:00:00","P","06D","21","","","2013-09-13 01:01:06.177000000" +"41677340","SUBWAY","4","11630 ","QUEENS BOULEVARD ","11375","7185201688","70","2012-10-10 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41706168","VEYTA'S BAKERY CAFE","4","92-01","ROOSEVELT AVENUE","11372","7184248680","08","2013-08-07 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-02-19 00:00:00","F","04M","56","","","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-02-19 00:00:00","F","10F","56","","","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-03-14 00:00:00","U","10D","26","B","2013-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41677340","SUBWAY","4","11630 ","QUEENS BOULEVARD ","11375","7185201688","70","2012-10-10 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41677340","SUBWAY","4","11630 ","QUEENS BOULEVARD ","11375","7185201688","70","2012-10-10 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41617970","CHINA KING","3","6805","NEW UTRECHT AVE","11219","7182561356","20","2011-11-30 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41618024","LA NORTENITA RESTAURANT","3","833","FRANKLIN AVENUE","11225","3477070791","53","2013-03-18 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41618024","LA NORTENITA RESTAURANT","3","833","FRANKLIN AVENUE","11225","3477070791","53","2013-03-18 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41677534","TOMO JAPANESE CAFE","4","8914 ","QUEENS BLVD ","11373","7188039799","49","2012-08-01 00:00:00","P","08A","11","","","2013-09-13 01:01:06.177000000" +"41677534","TOMO JAPANESE CAFE","4","8914 ","QUEENS BLVD ","11373","7188039799","49","2013-05-04 00:00:00","F","02G","47","","","2013-09-13 01:01:06.177000000" +"41677561","TOMO JAPANESE CUISINE","4","8612A ","37TH AVE ","11372","7182056222","49","2012-08-07 00:00:00","P","04C","14","","","2013-09-13 01:01:06.177000000" +"41677561","TOMO JAPANESE CUISINE","4","8612A ","37TH AVE ","11372","7182056222","49","2013-04-23 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41623669","YAMAKAGE TOKYO","1","1026","2 AVENUE","10022","2123552577","49","2012-10-01 00:00:00","D","08A","13","A","2012-10-01 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2012-01-04 00:00:00","U","10F","19","B","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2012-07-10 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-02-14 00:00:00","F","04L","59","","","2013-09-13 01:01:06.177000000" +"41618303","GIACOMO'S WOOD FIRED PIZZA","3","7902 ","THIRD AVENUE ","11209","7184396993","48","2013-08-09 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2011-07-27 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2011-08-12 00:00:00","U","05H","15","B","2011-08-12 00:00:00","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2012-05-03 00:00:00","F","10B","40","C","2012-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2013-01-31 00:00:00","D","06D","12","A","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41617766","CHINA HOUSE CHINESE RESTAURANT","1","1624","MADISON AVENUE","10029","2123484888","20","2012-08-14 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41617766","CHINA HOUSE CHINESE RESTAURANT","1","1624","MADISON AVENUE","10029","2123484888","20","2012-08-14 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41618303","GIACOMO'S WOOD FIRED PIZZA","3","7902 ","THIRD AVENUE ","11209","7184396993","48","2013-08-09 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41618435","SENZA SUSHI/LOBSTER SHRIMP ROLL","1","4","PENNSYLVANIA PLAZA","10001","2124656000","49","2012-01-06 00:00:00","D","99B","12","","","2013-09-13 01:01:06.177000000" +"41618435","SENZA SUSHI/LOBSTER SHRIMP ROLL","1","4","PENNSYLVANIA PLAZA","10001","2124656000","49","2012-02-22 00:00:00","D","10F","2","A","2012-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"41679060","E-CHIBAN SUSHI JAPANESE RESTAURANT","4","6647 ","FRESH POND ROAD ","11385","7183868333","49","2012-08-09 00:00:00","D","02G","8","A","2012-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41617970","CHINA KING","3","6805","NEW UTRECHT AVE","11219","7182561356","20","2011-11-30 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41624200","WASABI","3","638","MANHATTAN AVENUE","11222","7186099368","49","2012-03-21 00:00:00","D","06F","12","A","2012-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-08-25 00:00:00","F","06C","32","","","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-09-14 00:00:00","F","02G","73","C","2012-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-10-16 00:00:00","U","04L","15","","","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2013-05-11 00:00:00","F","04A","53","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2011-12-15 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2012-01-04 00:00:00","U","08A","19","B","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2012-07-10 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-02-14 00:00:00","F","02B","59","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-02-14 00:00:00","F","10B","59","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-03-04 00:00:00","U","10B","11","B","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-07-23 00:00:00","F","10I","23","","","2013-09-13 01:01:06.177000000" +"41618303","GIACOMO'S WOOD FIRED PIZZA","3","7902 ","THIRD AVENUE ","11209","7184396993","48","2013-08-09 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41618303","GIACOMO'S WOOD FIRED PIZZA","3","7902 ","THIRD AVENUE ","11209","7184396993","48","2013-08-09 00:00:00","F","10I","49","","","2013-09-13 01:01:06.177000000" +"41619148","LA POLLERA COLORADA II","4","82-13","NORTHERN BOULEVARD","11372","7184246531","77","2011-10-25 00:00:00","F","02H","49","C","2011-10-25 00:00:00","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2011-08-24 00:00:00","U","06E","25","B","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2012-08-16 00:00:00","D","09B","12","A","2012-08-16 00:00:00","2013-09-13 01:01:06.177000000" +"41709347","AMBER","1","381","3 AVENUE","10016","2126866388","49","2013-03-14 00:00:00","P","06D","27","","","2013-09-13 01:01:06.177000000" +"41618609","Sushi Akio","4","71-45","YELLOWSTONE BOULEVARD","11375","7185442199","49","2011-09-23 00:00:00","D","04N","8","","","2013-09-13 01:01:06.177000000" +"41618609","Sushi Akio","4","71-45","YELLOWSTONE BOULEVARD","11375","7185442199","49","2011-12-14 00:00:00","D","02B","10","A","2011-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41618609","Sushi Akio","4","71-45","YELLOWSTONE BOULEVARD","11375","7185442199","49","2013-02-27 00:00:00","P","10F","7","","","2013-09-13 01:01:06.177000000" +"41680924","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","4","13336 ","WHITESTONE EXPRESSWAY ","11354","7183590810","49","2013-03-07 00:00:00","F","02B","30","","","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2012-02-15 00:00:00","F","04A","34","","","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2012-03-01 00:00:00","U","02G","14","B","2012-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2012-08-29 00:00:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2012-08-29 00:00:00","F","04N","29","","","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2013-05-18 00:00:00","F","04L","26","","","2013-09-13 01:01:06.177000000" +"41709614","MISOYA","4","158-09B ","NORTHERN BOULEVARD ","11358","7183212600","49","2013-03-13 00:00:00","F","10B","29","","","2013-09-13 01:01:06.177000000" +"41709614","MISOYA","4","158-09B ","NORTHERN BOULEVARD ","11358","7183212600","49","2013-04-13 00:00:00","U","02B","7","","","2013-09-13 01:01:06.177000000" +"41681082","J R SUSHI","1","86A ","WEST BROADWAY ","10007","2122338338","49","2013-04-09 00:00:00","F","02B","36","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2011-10-06 00:00:00","F","06C","31","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2011-11-05 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2012-02-10 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2012-03-14 00:00:00","G","06B","52","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2012-12-04 00:00:00","U","04C","19","B","2012-12-04 00:00:00","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2011-12-13 00:00:00","D","02B","11","A","2011-12-13 00:00:00","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2012-12-13 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41681373","HADO SUSHI","4","13840 ","86 AVENUE ","11435","7185585758","49","2012-09-06 00:00:00","P","04N","25","","","2013-09-13 01:01:06.177000000" +"41681373","HADO SUSHI","4","13840 ","86 AVENUE ","11435","7185585758","49","2012-09-06 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41681373","HADO SUSHI","4","13840 ","86 AVENUE ","11435","7185585758","49","2012-09-06 00:00:00","P","10B","25","","","2013-09-13 01:01:06.177000000" +"41681373","HADO SUSHI","4","13840 ","86 AVENUE ","11435","7185585758","49","2012-09-18 00:00:00","U","08A","25","B","2012-09-18 00:00:00","2013-09-13 01:01:06.177000000" +"41619148","LA POLLERA COLORADA II","4","82-13","NORTHERN BOULEVARD","11372","7184246531","77","2011-10-25 00:00:00","F","08A","49","C","2011-10-25 00:00:00","2013-09-13 01:01:06.177000000" +"41682935","GANSO","3","25","BOND STREET","11201","7184030900","49","2012-09-21 00:00:00","P","04C","16","","","2013-09-13 01:01:06.177000000" +"41615409","HOT KITCHEN","1","104","2 AVENUE","10003","2122283090","20","2013-01-03 00:00:00","F","06C","49","C","2013-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41615409","HOT KITCHEN","1","104","2 AVENUE","10003","2122283090","20","2013-01-03 00:00:00","F","09A","49","C","2013-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41711545","OSAKA JAPANESE FUSION","4","224-23","UNION TURNPIKE","11364","7182178283","49","2013-05-18 00:00:00","F","04C","23","","","2013-09-13 01:01:06.177000000" +"41711559","OSHIMA","3","71 ","7 AVENUE ","11217","7187831888","49","2013-05-02 00:00:00","U","10F","19","","","2013-09-13 01:01:06.177000000" +"41605223","YU SUSHI","1","827","WEST 181 STREET","10033","2127818833","49","2011-08-22 00:00:00","D","06E","13","","","2013-09-13 01:01:06.177000000" +"41605223","YU SUSHI","1","827","WEST 181 STREET","10033","2127818833","49","2011-09-01 00:00:00","D","10B","10","A","2011-09-01 00:00:00","2013-09-13 01:01:06.177000000" +"41605223","YU SUSHI","1","827","WEST 181 STREET","10033","2127818833","49","2012-08-13 00:00:00","P","04C","18","","","2013-09-13 01:01:06.177000000" +"41605223","YU SUSHI","1","827","WEST 181 STREET","10033","2127818833","49","2013-04-13 00:00:00","P","06A","17","","","2013-09-13 01:01:06.177000000" +"41605380","NEW HAWAII SEA","2","1475","WILLIAMSBRIDGE ROAD","10461","7188637900","22","2011-08-01 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2011-11-16 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2012-06-07 00:00:00","F","10E","30","","","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2012-06-22 00:00:00","U","04L","18","B","2012-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"41616445","AKURA SUSHI","1","39","EAST 31 STREET","10016","2123793623","49","2011-12-07 00:00:00","P","06D","21","","","2013-09-13 01:01:06.177000000" +"41616445","AKURA SUSHI","1","39","EAST 31 STREET","10016","2123793623","49","2011-12-07 00:00:00","P","06E","21","","","2013-09-13 01:01:06.177000000" +"41616445","AKURA SUSHI","1","39","EAST 31 STREET","10016","2123793623","49","2013-01-18 00:00:00","D","10F","10","A","2013-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"41684379","SOBA TOTTO","1","211","EAST 43 STREET","10017","2125578200","49","2012-12-20 00:00:00","C","06C","12","","","2013-09-13 01:01:06.177000000" +"41684533","MALINGO RESTAURANT & BAR","4","43-16","QUEENS BOULEVARD","11104","3478088100","49","2013-06-21 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41684533","MALINGO RESTAURANT & BAR","4","43-16","QUEENS BOULEVARD","11104","3478088100","49","2013-06-21 00:00:00","F","06C","20","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2011-10-13 00:00:00","F","04L","24","C","2011-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2011-10-13 00:00:00","F","10F","24","C","2011-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"41605649","JUDY'S SPANISH RESTAURANT","1","1505","LEXINGTON AVENUE","10029","2128310193","53","2012-03-01 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2012-01-31 00:00:00","F","10H","33","C","2012-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2013-08-20 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2012-01-18 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2012-01-31 00:00:00","F","04N","23","C","2012-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2012-01-31 00:00:00","F","10F","23","C","2012-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2012-07-11 00:00:00","F","04L","24","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2012-07-11 00:00:00","F","04N","24","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2013-01-23 00:00:00","F","08A","25","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2013-02-26 00:00:00","U","08A","23","B","2013-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2013-08-01 00:00:00","F","04M","29","","","2013-09-13 01:01:06.177000000" +"41685002","NEW PUNJAB RESTAURANT & GRILL","3","691","CONEY ISLAND AVE","11218","7188566207","59","2012-10-19 00:00:00","F","02B","49","C","2012-10-19 00:00:00","2013-09-13 01:01:06.177000000" +"41685002","NEW PUNJAB RESTAURANT & GRILL","3","691","CONEY ISLAND AVE","11218","7188566207","59","2012-10-19 00:00:00","F","10B","49","C","2012-10-19 00:00:00","2013-09-13 01:01:06.177000000" +"41713670","WASABI LOBBY JAPANESE RESTAURANT","1","1584","2 AVENUE","10028","2129888882","49","2013-08-21 00:00:00","F","04C","35","","","2013-09-13 01:01:06.177000000" +"41714186","BALLI DELI & SALAD BAR","3","2616","OCEAN PARKWAY","11235","7186462822","03","2013-08-01 00:00:00","G","02B","49","","","2013-09-13 01:01:06.177000000" +"41714186","BALLI DELI & SALAD BAR","3","2616","OCEAN PARKWAY","11235","7186462822","03","2013-08-01 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2012-05-29 00:00:00","G","02B","37","","","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2012-05-29 00:00:00","G","04M","37","","","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2012-06-13 00:00:00","U","02G","17","B","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2011-11-02 00:00:00","G","04L","66","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2011-11-02 00:00:00","G","04N","66","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2011-11-02 00:00:00","G","10F","66","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2012-07-10 00:00:00","P","10B","17","","","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2011-08-15 00:00:00","D","06C","11","","","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2011-08-15 00:00:00","D","10A","11","","","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2011-12-01 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2011-12-15 00:00:00","U","04L","15","B","2011-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2012-05-21 00:00:00","U","02B","7","B","2012-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2013-05-23 00:00:00","P","02G","16","","","2013-09-13 01:01:06.177000000" +"41716209","AJISAI","1","795 ","LEXINGTON AVENUE ","10065","2123550888","49","2013-03-21 00:00:00","P","10I","21","","","2013-09-13 01:01:06.177000000" +"41627232","NEW CHOPSTICK","4","91-28","CORONA AVENUE","11373","7186990866","49","2012-02-10 00:00:00","D","09B","13","A","2012-02-10 00:00:00","2013-09-13 01:01:06.177000000" +"41627232","NEW CHOPSTICK","4","91-28","CORONA AVENUE","11373","7186990866","49","2012-08-23 00:00:00","P","08A","15","","","2013-09-13 01:01:06.177000000" +"41627232","NEW CHOPSTICK","4","91-28","CORONA AVENUE","11373","7186990866","49","2012-09-05 00:00:00","D","09B","11","A","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41627232","NEW CHOPSTICK","4","91-28","CORONA AVENUE","11373","7186990866","49","2013-04-12 00:00:00","P","10H","8","","","2013-09-13 01:01:06.177000000" +"41622616","TOTO SUSHI","1","216","THOMPSON STREET","10012","2125334433","49","2012-06-01 00:00:00","P","04N","22","","","2013-09-13 01:01:06.177000000" +"41622616","TOTO SUSHI","1","216","THOMPSON STREET","10012","2125334433","49","2012-06-13 00:00:00","U","10F","20","B","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41716350","FUKI SUSHI","3","8509","18 AVENUE","11214","7188378885","49","2013-02-28 00:00:00","D","10H","13","","","2013-09-13 01:01:06.177000000" +"41716350","FUKI SUSHI","3","8509","18 AVENUE","11214","7188378885","49","2013-06-03 00:00:00","P","10F","25","","","2013-09-13 01:01:06.177000000" +"41716444","TOTTO RAMEN","1","366","WEST 52 STREET","10019","2125820052","49","2013-05-02 00:00:00","F","10F","13","","","2013-09-13 01:01:06.177000000" +"41716444","TOTTO RAMEN","1","366","WEST 52 STREET","10019","2125820052","49","2013-06-25 00:00:00","G","10B","70","","","2013-09-13 01:01:06.177000000" +"41716841","CHO CHO SAN JAPANESE RESTAURANT INC","4","39-11","QUEENS BOULEVARD","11104","7183618232","49","2013-04-11 00:00:00","F","04C","38","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2011-11-02 00:00:00","G","02B","66","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2011-11-02 00:00:00","G","02G","66","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2011-11-02 00:00:00","G","06D","66","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2011-11-02 00:00:00","G","06E","66","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2011-11-03 00:00:00","W","04N","14","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2011-11-04 00:00:00","O","08A","9","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2012-01-24 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"41622616","TOTO SUSHI","1","216","THOMPSON STREET","10012","2125334433","49","2012-06-01 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41717504","TAKI SUSHI","1","60","WEST 48 STREET","10036","2128322288","49","2013-04-16 00:00:00","U","02B","19","","","2013-09-13 01:01:06.177000000" +"41623268","MAGURO SUSHI","1","160","EAST 28 STREET","10016","2125108883","49","2013-02-13 00:00:00","P","06F","15","","","2013-09-13 01:01:06.177000000" +"41687110","KIKU JAPANESE CUISINE","5","3838","RICHMOND AVENUE","10312","7186088589","49","2012-09-29 00:00:00","P","02G","7","","","2013-09-13 01:01:06.177000000" +"41717857","SUSHI SUSHI","1","54 ","TIEMANN PLACE ","10027","6462206766","49","2013-03-15 00:00:00","D","10C","4","","","2013-09-13 01:01:06.177000000" +"41623669","YAMAKAGE TOKYO","1","1026","2 AVENUE","10022","2123552577","49","2012-02-29 00:00:00","D","08C","7","A","2012-02-29 00:00:00","2013-09-13 01:01:06.177000000" +"41623669","YAMAKAGE TOKYO","1","1026","2 AVENUE","10022","2123552577","49","2012-09-10 00:00:00","F","04L","21","","","2013-09-13 01:01:06.177000000" +"41687410","ANI SUSHI","3","142","MONTAGUE STREET","11201","7189231800","49","2013-06-21 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41607908","LONGEVOUSJOY Ramen Sushi Brasserie","3","6610","BAY PARKWAY","11204","9178926068","49","2012-04-05 00:00:00","P","06F","24","","","2013-09-13 01:01:06.177000000" +"41607908","LONGEVOUSJOY Ramen Sushi Brasserie","3","6610","BAY PARKWAY","11204","9178926068","49","2012-05-05 00:00:00","U","10F","5","B","2012-05-05 00:00:00","2013-09-13 01:01:06.177000000" +"41607908","LONGEVOUSJOY Ramen Sushi Brasserie","3","6610","BAY PARKWAY","11204","9178926068","49","2013-03-19 00:00:00","F","10F","35","","","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2011-08-26 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2012-10-04 00:00:00","F","04H","28","","","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2012-10-04 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2012-12-04 00:00:00","U","04L","15","B","2012-12-04 00:00:00","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2013-07-03 00:00:00","G","10F","43","","","2013-09-13 01:01:06.177000000" +"41623669","YAMAKAGE TOKYO","1","1026","2 AVENUE","10022","2123552577","49","2012-02-03 00:00:00","P","06E","22","","","2013-09-13 01:01:06.177000000" +"41623669","YAMAKAGE TOKYO","1","1026","2 AVENUE","10022","2123552577","49","2012-02-03 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"41623669","YAMAKAGE TOKYO","1","1026","2 AVENUE","10022","2123552577","49","2012-09-10 00:00:00","F","04J","21","","","2013-09-13 01:01:06.177000000" +"41623669","YAMAKAGE TOKYO","1","1026","2 AVENUE","10022","2123552577","49","2012-09-10 00:00:00","F","08A","21","","","2013-09-13 01:01:06.177000000" +"41623669","YAMAKAGE TOKYO","1","1026","2 AVENUE","10022","2123552577","49","2012-10-01 00:00:00","D","10H","13","A","2012-10-01 00:00:00","2013-09-13 01:01:06.177000000" +"41688151","RAMEN YEBISU","3","126 ","NORTH 6 STREET ","11249","7187821444","49","2013-01-10 00:00:00","D","08C","7","A","2013-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41628657","OOTOYA JAPANESE RESTAURANT","1","8","WEST 18 STREET","10011","2122550018","49","2012-05-17 00:00:00","D","04C","7","A","2012-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41608998","BAR MISHIMA","1","212","EAST 52 STREET","10022","2125881089","49","2012-02-10 00:00:00","D","10H","2","","","2013-09-13 01:01:06.177000000" +"41608998","BAR MISHIMA","1","212","EAST 52 STREET","10022","2125881089","49","2012-05-23 00:00:00","P","04H","21","","","2013-09-13 01:01:06.177000000" +"41608998","BAR MISHIMA","1","212","EAST 52 STREET","10022","2125881089","49","2012-05-23 00:00:00","P","06F","21","","","2013-09-13 01:01:06.177000000" +"41608998","BAR MISHIMA","1","212","EAST 52 STREET","10022","2125881089","49","2013-03-07 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41624200","WASABI","3","638","MANHATTAN AVENUE","11222","7186099368","49","2011-11-29 00:00:00","G","02B","50","","","2013-09-13 01:01:06.177000000" +"41624200","WASABI","3","638","MANHATTAN AVENUE","11222","7186099368","49","2012-03-10 00:00:00","P","02B","13","","","2013-09-13 01:01:06.177000000" +"41624200","WASABI","3","638","MANHATTAN AVENUE","11222","7186099368","49","2012-08-23 00:00:00","U","06E","15","B","2012-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41624200","WASABI","3","638","MANHATTAN AVENUE","11222","7186099368","49","2011-11-29 00:00:00","G","06C","50","","","2013-09-13 01:01:06.177000000" +"41624200","WASABI","3","638","MANHATTAN AVENUE","11222","7186099368","49","2011-12-01 00:00:00","O","","","P","2011-12-01 00:00:00","2013-09-13 01:01:06.177000000" +"41624200","WASABI","3","638","MANHATTAN AVENUE","11222","7186099368","49","2012-07-31 00:00:00","F","04M","29","","","2013-09-13 01:01:06.177000000" +"41624200","WASABI","3","638","MANHATTAN AVENUE","11222","7186099368","49","2012-07-31 00:00:00","F","10B","29","","","2013-09-13 01:01:06.177000000" +"41608998","BAR MISHIMA","1","212","EAST 52 STREET","10022","2125881089","49","2013-05-08 00:00:00","C","04C","11","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2012-09-12 00:00:00","F","06F","34","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2012-09-12 00:00:00","F","08A","34","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2013-03-21 00:00:00","F","08A","43","","","2013-09-13 01:01:06.177000000" +"41688797","RIVER JAPANESE RESTAURANT","4","37-18 ","MAIN ST ","11354","7188869880","49","2012-10-02 00:00:00","D","10F","10","A","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-01-08 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2012-02-15 00:00:00","F","02G","34","","","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2012-09-25 00:00:00","F","08A","25","C","2012-09-25 00:00:00","2013-09-13 01:01:06.177000000" +"41624526","YUN NAN GUO QIAO RICE NOODLE","4","136-20","ROOSEVELT AVENUE","11354","7188881281","20","2013-07-29 00:00:00","F","02C","49","","","2013-09-13 01:01:06.177000000" +"41719787","YAKINIKU GEN","1","250","EAST 52 STREET","10022","2126021129","49","2013-04-17 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41720720","SABOR DEL AUSTRO RESTAURANT","4","580 ","SENECA AVENUE ","11385","7184176100","77","2013-05-30 00:00:00","F","10A","49","","","2013-09-13 01:01:06.177000000" +"41720720","SABOR DEL AUSTRO RESTAURANT","4","580 ","SENECA AVENUE ","11385","7184176100","77","2013-05-30 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41624526","YUN NAN GUO QIAO RICE NOODLE","4","136-20","ROOSEVELT AVENUE","11354","7188881281","20","2013-07-29 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41689903","NAGOYA","3","1948","86TH ST","11214","7189758889","49","2013-02-04 00:00:00","D","10B","5","A","2013-02-04 00:00:00","2013-09-13 01:01:06.177000000" +"41689903","NAGOYA","3","1948","86TH ST","11214","7189758889","49","2013-07-02 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"41689903","NAGOYA","3","1948","86TH ST","11214","7189758889","49","2013-07-02 00:00:00","P","09A","26","","","2013-09-13 01:01:06.177000000" +"41721159","SAKURA JAPANESE CUISINE","4","35-15","DITMARS BOULEVARD","11105","7187772188","49","2013-07-24 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41629811","STRIP HOUSE","1","13","EAST 12 STREET","10003","2123280000","78","2011-12-13 00:00:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"41629811","STRIP HOUSE","1","13","EAST 12 STREET","10003","2123280000","78","2011-12-13 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41610636","RESOBOX","4","41-26","27 STREET","11101","7187843680","49","2013-02-27 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41690686","AJI 18","1","208","3 AVENUE","10003","2126776921","49","2012-11-21 00:00:00","U","04L","17","B","2012-11-21 00:00:00","2013-09-13 01:01:06.177000000" +"41610754","EAST SEAFOOD CUISINE","3","714-726 ","65 STREET ","11220","7187650098","20","2011-08-29 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41630465","YUMMY SUSHI","1","1758","1 AVENUE","10128","2129963666","49","2011-12-12 00:00:00","P","04C","21","","","2013-09-13 01:01:06.177000000" +"41630465","YUMMY SUSHI","1","1758","1 AVENUE","10128","2129963666","49","2012-01-09 00:00:00","D","06C","10","A","2012-01-09 00:00:00","2013-09-13 01:01:06.177000000" +"41630465","YUMMY SUSHI","1","1758","1 AVENUE","10128","2129963666","49","2012-07-17 00:00:00","D","09C","7","A","2012-07-17 00:00:00","2013-09-13 01:01:06.177000000" +"41625676","SNACK BOX","1","NKA ","TIMES SQUARE ","10036","2127772500","03","2012-02-22 00:00:00","8","04L","49","","","2013-09-13 01:01:06.177000000" +"41722751","SAKURA 7","4","65-54 ","GRAND AVENUE ","11378","7188949888","49","2013-04-08 00:00:00","F","04N","15","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2012-02-13 00:00:00","C","09C","9","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2012-07-11 00:00:00","F","02G","24","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2012-07-11 00:00:00","F","03B","24","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2012-07-26 00:00:00","F","04C","27","C","2012-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2013-01-23 00:00:00","F","04C","25","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2012-07-10 00:00:00","P","06F","17","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2012-07-23 00:00:00","U","04L","27","B","2012-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2013-08-14 00:00:00","P","10D","19","","","2013-09-13 01:01:06.177000000" +"41622616","TOTO SUSHI","1","216","THOMPSON STREET","10012","2125334433","49","2011-10-27 00:00:00","P","04M","16","","","2013-09-13 01:01:06.177000000" +"41622616","TOTO SUSHI","1","216","THOMPSON STREET","10012","2125334433","49","2013-02-21 00:00:00","P","06A","22","","","2013-09-13 01:01:06.177000000" +"50000055","BANKOK CUISINE","4","107-18","70 ROAD","11375","7182614005","82","2013-06-03 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41623268","MAGURO SUSHI","1","160","EAST 28 STREET","10016","2125108883","49","2012-01-30 00:00:00","D","10F","12","A","2012-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41692187","RED MOON","1","132","WEST 45 STREET","10036","2123916666","49","2012-09-06 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41612017","KUKU CANTEEN","1","289","MERCER STREET","10003","2124736162","49","2011-09-16 00:00:00","D","09C","2","A","2011-09-16 00:00:00","2013-09-13 01:01:06.177000000" +"41627232","NEW CHOPSTICK","4","91-28","CORONA AVENUE","11373","7186990866","49","2012-02-10 00:00:00","D","02G","13","A","2012-02-10 00:00:00","2013-09-13 01:01:06.177000000" +"41627232","NEW CHOPSTICK","4","91-28","CORONA AVENUE","11373","7186990866","49","2012-03-28 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41627232","NEW CHOPSTICK","4","91-28","CORONA AVENUE","11373","7186990866","49","2012-08-23 00:00:00","P","06A","15","","","2013-09-13 01:01:06.177000000" +"41627232","NEW CHOPSTICK","4","91-28","CORONA AVENUE","11373","7186990866","49","2012-09-05 00:00:00","D","08A","11","A","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"50000107","BGH DINING","1","24","GREENWICH AVENUE","10011","9175150453","49","2013-06-18 00:00:00","D","10B","2","","","2013-09-13 01:01:06.177000000" +"50000111","YOSHI NEW YORK","1","131","AVENUE A","10009","__________","49","2013-04-29 00:00:00","P","06C","20","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2012-02-13 00:00:00","C","02B","9","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2013-08-01 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41612358","CAFE CNN GOURMET DELI","1","315","PARK AVENUE SOUTH","10010","2122540444","03","2012-04-03 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41627665","AMAZE FUSION LOUNGE","1","694","3 AVENUE","10017","2129865555","22","2012-03-12 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41627665","AMAZE FUSION LOUNGE","1","694","3 AVENUE","10017","2129865555","22","2012-03-12 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41627665","AMAZE FUSION LOUNGE","1","694","3 AVENUE","10017","2129865555","22","2012-03-12 00:00:00","F","10D","49","","","2013-09-13 01:01:06.177000000" +"41623669","YAMAKAGE TOKYO","1","1026","2 AVENUE","10022","2123552577","49","2012-10-01 00:00:00","D","10B","13","A","2012-10-01 00:00:00","2013-09-13 01:01:06.177000000" +"41627232","NEW CHOPSTICK","4","91-28","CORONA AVENUE","11373","7186990866","49","2012-01-26 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41627232","NEW CHOPSTICK","4","91-28","CORONA AVENUE","11373","7186990866","49","2012-08-23 00:00:00","P","04N","15","","","2013-09-13 01:01:06.177000000" +"41627232","NEW CHOPSTICK","4","91-28","CORONA AVENUE","11373","7186990866","49","2012-09-05 00:00:00","D","04M","11","A","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41631683","LONG GRAIN","1","2534","BROADWAY","10025","2126660888","49","2012-01-18 00:00:00","F","06A","60","","","2013-09-13 01:01:06.177000000" +"41631683","LONG GRAIN","1","2534","BROADWAY","10025","2126660888","49","2012-06-25 00:00:00","F","10D","32","","","2013-09-13 01:01:06.177000000" +"41628216","OVI'S PLACE","3","2925","AVENUE H","11210","7184211640","03","2012-12-03 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41628216","OVI'S PLACE","3","2925","AVENUE H","11210","7184211640","03","2012-12-03 00:00:00","G","08C","49","","","2013-09-13 01:01:06.177000000" +"41628361","121 FULTON STREET","1","121","FULTON STREET","10038","6465456647","03","2011-12-21 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41624200","WASABI","3","638","MANHATTAN AVENUE","11222","7186099368","49","2011-11-29 00:00:00","G","06E","50","","","2013-09-13 01:01:06.177000000" +"41624200","WASABI","3","638","MANHATTAN AVENUE","11222","7186099368","49","2012-03-10 00:00:00","P","04M","13","","","2013-09-13 01:01:06.177000000" +"41613264","BIG E'S DELI","5","180 ","WEST SERVICE ROAD ","10314","7189666232","03","2012-10-02 00:00:00","F","02G","49","C","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41627665","AMAZE FUSION LOUNGE","1","694","3 AVENUE","10017","2129865555","22","2012-03-12 00:00:00","F","08B","49","","","2013-09-13 01:01:06.177000000" +"50000254","MOGU SUSHI","4","133-22 ","39 AVENUE ","11354","9172515853","49","2013-07-12 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"50000254","MOGU SUSHI","4","133-22 ","39 AVENUE ","11354","9172515853","49","2013-07-12 00:00:00","P","10J","20","","","2013-09-13 01:01:06.177000000" +"50000261","NEW YORK SUSHI KO","1","91 ","CLINTON STREET ","10002","9177345857","49","2013-06-25 00:00:00","F","06A","33","","","2013-09-13 01:01:06.177000000" +"41624526","YUN NAN GUO QIAO RICE NOODLE","4","136-20","ROOSEVELT AVENUE","11354","7188881281","20","2013-07-29 00:00:00","F","05H","49","","","2013-09-13 01:01:06.177000000" +"41628521","KOTOBUKI","1","56","3 AVENUE","10003","2123535088","49","2012-06-11 00:00:00","P","06F","24","","","2013-09-13 01:01:06.177000000" +"41628521","KOTOBUKI","1","56","3 AVENUE","10003","2123535088","49","2012-06-21 00:00:00","D","06E","12","A","2012-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41628657","OOTOYA JAPANESE RESTAURANT","1","8","WEST 18 STREET","10011","2122550018","49","2013-05-20 00:00:00","F","05D","29","","","2013-09-13 01:01:06.177000000" +"41613672","A LA SAIGON","1","8-10","LIBERTY PLACE","10005","2122279855","28","2011-12-20 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41613672","A LA SAIGON","1","8-10","LIBERTY PLACE","10005","2122279855","28","2011-12-20 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41629054","KONDITORI","3","240","7 AVENUE","11215","3473350767","14","2012-08-02 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41629054","KONDITORI","3","240","7 AVENUE","11215","3473350767","14","2012-08-02 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41614161","AMY RUTH'S RESTAURANT","1","113","WEST 116 STREET","10026","2122808779","73","2013-08-16 00:00:00","F","05F","49","","","2013-09-13 01:01:06.177000000" +"41694442","BAMBOOTORI","1","106","UNIVERSITY PLACE","10003","2122555152","49","2012-11-30 00:00:00","P","08A","15","","","2013-09-13 01:01:06.177000000" +"41694442","BAMBOOTORI","1","106","UNIVERSITY PLACE","10003","2122555152","49","2013-02-06 00:00:00","D","10F","12","A","2013-02-06 00:00:00","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2012-03-19 00:00:00","G","06C","57","","","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2012-03-22 00:00:00","W","08A","21","","","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2013-08-12 00:00:00","F","04L","66","","","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2013-08-12 00:00:00","F","05F","66","","","2013-09-13 01:01:06.177000000" +"41694966","SHINJUKU","3","1664","SHEEPSHEAD BAY ROAD","11235","7189344273","49","2012-10-05 00:00:00","D","10H","6","","","2013-09-13 01:01:06.177000000" +"41694966","SHINJUKU","3","1664","SHEEPSHEAD BAY ROAD","11235","7189344273","49","2013-03-25 00:00:00","F","06C","34","","","2013-09-13 01:01:06.177000000" +"41694966","SHINJUKU","3","1664","SHEEPSHEAD BAY ROAD","11235","7189344273","49","2013-03-25 00:00:00","F","10F","34","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2011-11-05 00:00:00","U","06C","13","B","2011-11-05 00:00:00","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2012-03-16 00:00:00","W","04L","32","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2012-10-09 00:00:00","F","04J","30","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2013-05-22 00:00:00","F","04L","17","","","2013-09-13 01:01:06.177000000" +"41628521","KOTOBUKI","1","56","3 AVENUE","10003","2123535088","49","2012-03-22 00:00:00","D","10F","10","","","2013-09-13 01:01:06.177000000" +"41628521","KOTOBUKI","1","56","3 AVENUE","10003","2123535088","49","2013-01-23 00:00:00","D","08A","13","A","2013-01-23 00:00:00","2013-09-13 01:01:06.177000000" +"41633013","TOMO JAPANESE RESTAURANT","5","4561","AMBOY ROAD","10312","7182275100","49","2012-03-20 00:00:00","P","10C","19","","","2013-09-13 01:01:06.177000000" +"41633013","TOMO JAPANESE RESTAURANT","5","4561","AMBOY ROAD","10312","7182275100","49","2012-04-04 00:00:00","D","10F","11","A","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41633013","TOMO JAPANESE RESTAURANT","5","4561","AMBOY ROAD","10312","7182275100","49","2013-02-23 00:00:00","F","02G","17","","","2013-09-13 01:01:06.177000000" +"41629592","USULUTECO 2 RESTAURANTE SALVADORENO","3","5014","3 AVENUE","11220","7184390079","53","2013-09-11 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41695453","HAPPY FORTUNE RESTAURANT (NY)","1","96","BOWERY","10013","2122191993","49","2013-09-11 00:00:00","F","06D","31","","","2013-09-13 01:01:06.177000000" +"41695477","GHOROA RESTAURANT","4","168-41","HILLSIDE AVENUE","11432","7186571000","09","2013-03-23 00:00:00","G","04J","49","","","2013-09-13 01:01:06.177000000" +"41629811","STRIP HOUSE","1","13","EAST 12 STREET","10003","2123280000","78","2011-12-13 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41629953","SHINOBI RAMEN","3","53 ","MORGAN AVENUE ","11237","6463429014","49","2011-12-14 00:00:00","F","06C","33","","","2013-09-13 01:01:06.177000000" +"41629953","SHINOBI RAMEN","3","53 ","MORGAN AVENUE ","11237","6463429014","49","2012-01-05 00:00:00","D","06C","6","A","2012-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41629953","SHINOBI RAMEN","3","53 ","MORGAN AVENUE ","11237","6463429014","49","2012-06-07 00:00:00","P","02H","16","","","2013-09-13 01:01:06.177000000" +"41629953","SHINOBI RAMEN","3","53 ","MORGAN AVENUE ","11237","6463429014","49","2012-06-22 00:00:00","D","06C","12","A","2012-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"41629953","SHINOBI RAMEN","3","53 ","MORGAN AVENUE ","11237","6463429014","49","2013-03-22 00:00:00","D","10F","9","A","2013-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"41695897","CAFE BOULIS","4","30-15 ","31 AVENUE ","11106","7188061014","14","2012-10-10 00:00:00","E","05D","49","","","2013-09-13 01:01:06.177000000" +"41615409","HOT KITCHEN","1","104","2 AVENUE","10003","2122283090","20","2013-01-03 00:00:00","F","04C","49","C","2013-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41615409","HOT KITCHEN","1","104","2 AVENUE","10003","2122283090","20","2013-01-03 00:00:00","F","04J","49","C","2013-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41633781","NOIR","1","151","EAST 50 STREET","10022","2127531144","03","2013-04-17 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41629054","KONDITORI","3","240","7 AVENUE","11215","3473350767","14","2012-08-02 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41629054","KONDITORI","3","240","7 AVENUE","11215","3473350767","14","2012-08-02 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"50000665","DRUNKEN FISH","4","52-35","METROPOLITAN AVENUE","11385","7188211283","49","2013-06-28 00:00:00","F","09B","22","","","2013-09-13 01:01:06.177000000" +"50000665","DRUNKEN FISH","4","52-35","METROPOLITAN AVENUE","11385","7188211283","49","2013-06-28 00:00:00","F","10H","22","","","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-05-09 00:00:00","D","06C","12","A","2012-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-10-19 00:00:00","F","04L","43","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2012-01-18 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2012-01-31 00:00:00","F","08A","23","C","2012-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2013-01-23 00:00:00","F","02B","25","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2013-08-01 00:00:00","F","06D","29","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2013-08-01 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2013-08-01 00:00:00","F","10B","29","","","2013-09-13 01:01:06.177000000" +"50000708","TERIYAKI JAPAN EXPRESS GRILL","3","6814","4 AVENUE","11220","7188333069","49","2013-08-01 00:00:00","P","10B","19","","","2013-09-13 01:01:06.177000000" +"50000736","GREENBAY SUSHI","1","1659","1 AVENUE","10028","2123482878","49","2013-08-06 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"41630465","YUMMY SUSHI","1","1758","1 AVENUE","10128","2129963666","49","2011-12-12 00:00:00","P","08C","21","","","2013-09-13 01:01:06.177000000" +"41630465","YUMMY SUSHI","1","1758","1 AVENUE","10128","2129963666","49","2013-07-17 00:00:00","P","02B","20","","","2013-09-13 01:01:06.177000000" +"41616445","AKURA SUSHI","1","39","EAST 31 STREET","10016","2123793623","49","2012-06-27 00:00:00","P","04C","12","","","2013-09-13 01:01:06.177000000" +"41616445","AKURA SUSHI","1","39","EAST 31 STREET","10016","2123793623","49","2012-06-27 00:00:00","P","06B","12","","","2013-09-13 01:01:06.177000000" +"41629243","OBENTO DELIGHT & ASIAN FUSION RESTAURANT","1","210","WEST 94 STREET","10025","2122222010","49","2012-01-25 00:00:00","U","08A","24","B","2012-01-25 00:00:00","2013-09-13 01:01:06.177000000" +"50000806","NEW NAGOYA","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2013-07-20 00:00:00","F","04L","22","","","2013-09-13 01:01:06.177000000" +"50000806","NEW NAGOYA","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2013-07-20 00:00:00","F","09C","22","","","2013-09-13 01:01:06.177000000" +"41696981","JIN SUSHI","1","252","BROOME STREET","10002","2129790989","49","2012-12-19 00:00:00","P","04M","15","","","2013-09-13 01:01:06.177000000" +"41627232","NEW CHOPSTICK","4","91-28","CORONA AVENUE","11373","7186990866","49","2012-02-10 00:00:00","E","16B","","","","2013-09-13 01:01:06.177000000" +"41627232","NEW CHOPSTICK","4","91-28","CORONA AVENUE","11373","7186990866","49","2013-04-12 00:00:00","P","04L","8","","","2013-09-13 01:01:06.177000000" +"41616445","AKURA SUSHI","1","39","EAST 31 STREET","10016","2123793623","49","2012-07-23 00:00:00","D","06C","12","A","2012-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2011-12-07 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2012-04-06 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"41630942","SUSHI-TERIA","1","601 ","LEXINGTON AVENUE ","10022","9178810420","49","2011-11-28 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41629811","STRIP HOUSE","1","13","EAST 12 STREET","10003","2123280000","78","2011-12-13 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41634881","CROPSEY PIZZA","3","2811","CROPSEY AVENUE","11214","7189460075","63","2012-01-03 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2012-01-25 00:00:00","G","04L","57","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2012-01-25 00:00:00","G","08C","57","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2012-05-02 00:00:00","P","06F","17","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2013-03-06 00:00:00","G","08A","46","","","2013-09-13 01:01:06.177000000" +"50000980","KASUMI","3","1870","86 STREET","11214","7189756999","49","2013-08-31 00:00:00","P","06F","26","","","2013-09-13 01:01:06.177000000" +"50001010","DRAGON I CHINESE RESTAURANT","4","111-03","LEFFERTS BOULEVARD","11420","7188456180","20","2013-06-11 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"50001010","DRAGON I CHINESE RESTAURANT","4","111-03","LEFFERTS BOULEVARD","11420","7188456180","20","2013-06-11 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"50001035","ABECA SUSHI","1","121 ","EAST 27 STREET ","10016","2122139888","49","2013-08-19 00:00:00","P","04N","27","","","2013-09-13 01:01:06.177000000" +"50001035","ABECA SUSHI","1","121 ","EAST 27 STREET ","10016","2122139888","49","2013-08-19 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"41629953","SHINOBI RAMEN","3","53 ","MORGAN AVENUE ","11237","6463429014","49","2013-01-31 00:00:00","P","10B","4","","","2013-09-13 01:01:06.177000000" +"41698000","KARAOKE DUET 48","1","304","EAST 48 STREET","10017","2127530030","49","2012-10-11 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41698000","KARAOKE DUET 48","1","304","EAST 48 STREET","10017","2127530030","49","2012-10-11 00:00:00","F","05H","49","","","2013-09-13 01:01:06.177000000" +"41627665","AMAZE FUSION LOUNGE","1","694","3 AVENUE","10017","2129865555","22","2012-03-12 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41635173","NETA","1","61","WEST 8 STREET","10011","2125052610","49","2012-06-05 00:00:00","F","02G","10","","","2013-09-13 01:01:06.177000000" +"41635173","NETA","1","61","WEST 8 STREET","10011","2125052610","49","2013-06-14 00:00:00","F","04C","64","","","2013-09-13 01:01:06.177000000" +"41635173","NETA","1","61","WEST 8 STREET","10011","2125052610","49","2013-06-14 00:00:00","F","06A","64","","","2013-09-13 01:01:06.177000000" +"41617766","CHINA HOUSE CHINESE RESTAURANT","1","1624","MADISON AVENUE","10029","2123484888","20","2012-08-14 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41630465","YUMMY SUSHI","1","1758","1 AVENUE","10128","2129963666","49","2012-01-09 00:00:00","D","10F","10","A","2012-01-09 00:00:00","2013-09-13 01:01:06.177000000" +"41630465","YUMMY SUSHI","1","1758","1 AVENUE","10128","2129963666","49","2013-07-17 00:00:00","P","09C","20","","","2013-09-13 01:01:06.177000000" +"41617970","CHINA KING","3","6805","NEW UTRECHT AVE","11219","7182561356","20","2011-11-30 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41617970","CHINA KING","3","6805","NEW UTRECHT AVE","11219","7182561356","20","2011-11-30 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41617970","CHINA KING","3","6805","NEW UTRECHT AVE","11219","7182561356","20","2011-11-30 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41618024","LA NORTENITA RESTAURANT","3","833","FRANKLIN AVENUE","11225","3477070791","53","2013-03-18 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41628361","121 FULTON STREET","1","121","FULTON STREET","10038","6465456647","03","2011-12-21 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41628361","121 FULTON STREET","1","121","FULTON STREET","10038","6465456647","03","2011-12-21 00:00:00","F","10A","49","","","2013-09-13 01:01:06.177000000" +"41631683","LONG GRAIN","1","2534","BROADWAY","10025","2126660888","49","2012-01-18 00:00:00","F","04A","60","","","2013-09-13 01:01:06.177000000" +"41630942","SUSHI-TERIA","1","601 ","LEXINGTON AVENUE ","10022","9178810420","49","2013-03-07 00:00:00","F","06C","28","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2012-08-14 00:00:00","D","06D","13","A","2012-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-02-14 00:00:00","F","08A","59","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-02-14 00:00:00","F","10D","59","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-07-23 00:00:00","F","08A","23","","","2013-09-13 01:01:06.177000000" +"50001203","AKI SUSHI","1","212","EAST 52 STREET","10022","2128938266","49","2013-07-17 00:00:00","F","08A","59","","","2013-09-13 01:01:06.177000000" +"50001203","AKI SUSHI","1","212","EAST 52 STREET","10022","2128938266","49","2013-07-17 00:00:00","F","09C","59","","","2013-09-13 01:01:06.177000000" +"50001203","AKI SUSHI","1","212","EAST 52 STREET","10022","2128938266","49","2013-08-28 00:00:00","U","08A","21","","","2013-09-13 01:01:06.177000000" +"41628657","OOTOYA JAPANESE RESTAURANT","1","8","WEST 18 STREET","10011","2122550018","49","2013-05-20 00:00:00","F","06D","29","","","2013-09-13 01:01:06.177000000" +"41699653","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","1","121","WEST 125 STREET","10027","6312437700","49","2013-03-21 00:00:00","F","02B","32","","","2013-09-13 01:01:06.177000000" +"41699653","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","1","121","WEST 125 STREET","10027","6312437700","49","2013-03-21 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"50001259","MIMI AND COCO NY","1","92","RIVINGTON STREET","10002","6468019044","49","2013-07-01 00:00:00","D","10B","8","","","2013-09-13 01:01:06.177000000" +"41618303","GIACOMO'S WOOD FIRED PIZZA","3","7902 ","THIRD AVENUE ","11209","7184396993","48","2013-08-09 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41699768","TOMPKINS BROOKLYN CAFE & RESTAURANT","3","268","TOMPKINS AVENUE","11216","7186223681","53","2012-12-19 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41631683","LONG GRAIN","1","2534","BROADWAY","10025","2126660888","49","2012-01-18 00:00:00","F","06D","60","","","2013-09-13 01:01:06.177000000" +"41618609","Sushi Akio","4","71-45","YELLOWSTONE BOULEVARD","11375","7185442199","49","2013-02-27 00:00:00","P","10B","7","","","2013-09-13 01:01:06.177000000" +"41700608","SEN NYC","3","12 ","WEST 21 STREET ","10010","2123885736","49","2013-05-08 00:00:00","F","09C","29","","","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-03-12 00:00:00","F","06D","29","","","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-08-09 00:00:00","F","04N","38","","","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-08-22 00:00:00","U","10F","10","B","2012-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"50001635","OCEAN STYLE JAPANESE RESTAURANT","3","2971 ","OCEAN AVENUE ","11235","7188915888","49","2013-08-09 00:00:00","D","10B","2","","","2013-09-13 01:01:06.177000000" +"41700776","ELBOW ROOM","3","614 ","ATLANTIC AVENUE ","11217","7182304088","03","2013-02-07 00:00:00","F","10J","49","","","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-07-22 00:00:00","G","04M","64","","","2013-09-13 01:01:06.177000000" +"41629243","OBENTO DELIGHT & ASIAN FUSION RESTAURANT","1","210","WEST 94 STREET","10025","2122222010","49","2011-12-01 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41629243","OBENTO DELIGHT & ASIAN FUSION RESTAURANT","1","210","WEST 94 STREET","10025","2122222010","49","2012-01-25 00:00:00","U","04H","24","B","2012-01-25 00:00:00","2013-09-13 01:01:06.177000000" +"41636986","NEW DANIELLA'S COFFEE SHOP","3","336","GRAHAM AVENUE","11211","7187828653","03","2012-02-17 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41636986","NEW DANIELLA'S COFFEE SHOP","3","336","GRAHAM AVENUE","11211","7187828653","03","2012-02-17 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41637060","REGO PARK SAKE","4","9534 ","QUEENS BLVD ","11374","7188970429","49","2012-12-26 00:00:00","U","08A","22","B","2012-12-26 00:00:00","2013-09-13 01:01:06.177000000" +"41637060","REGO PARK SAKE","4","9534 ","QUEENS BLVD ","11374","7188970429","49","2013-05-30 00:00:00","P","10F","9","","","2013-09-13 01:01:06.177000000" +"50001708","TATANY","1","1400","2 AVENUE","10021","2124721700","49","2013-07-29 00:00:00","D","04L","19","","","2013-09-13 01:01:06.177000000" +"50001708","TATANY","1","1400","2 AVENUE","10021","2124721700","49","2013-07-29 00:00:00","D","09C","19","","","2013-09-13 01:01:06.177000000" +"50001708","TATANY","1","1400","2 AVENUE","10021","2124721700","49","2013-07-29 00:00:00","D","10F","19","","","2013-09-13 01:01:06.177000000" +"50001709","AKI 39 JAPANESE CUISINE","1","216","EAST 39 STREET","10016","2128678668","49","2013-07-23 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2012-03-22 00:00:00","W","06C","21","","","2013-09-13 01:01:06.177000000" +"41629592","USULUTECO 2 RESTAURANTE SALVADORENO","3","5014","3 AVENUE","11220","7184390079","53","2013-09-11 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41629609","TANGS JIANG RESTAURANT","1","306","SAINT NICHOLAS AVENUE","10027","2128645179","20","2012-01-04 00:00:00","F","04L","49","C","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"50001722","ZEN PALATE","1","113","EAST 18 STREET","10003","2123878885","49","2013-08-02 00:00:00","P","10B","19","","","2013-09-13 01:01:06.177000000" +"41633095","BAMBOO YA","4","9711 ","QUEENS BLVD ","11374","7188061228","49","2013-04-01 00:00:00","F","04L","20","","","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2012-08-29 00:00:00","F","04A","29","","","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2012-09-25 00:00:00","F","02B","25","C","2012-09-25 00:00:00","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2012-09-25 00:00:00","F","04N","25","C","2012-09-25 00:00:00","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2013-05-18 00:00:00","F","02B","26","","","2013-09-13 01:01:06.177000000" +"41701697","SUZUME","3","545","LORIMER STREET","11211","7184860200","49","2013-05-23 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2012-03-19 00:00:00","G","04H","57","","","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2012-01-19 00:00:00","E","05D","30","","","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2013-01-15 00:00:00","U","04M","8","B","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2013-08-24 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41702361","VINE","1","2955","BROADWAY","10025","2122223568","49","2013-01-17 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"41702361","VINE","1","2955","BROADWAY","10025","2122223568","49","2013-08-20 00:00:00","F","06E","32","","","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2012-04-17 00:00:00","D","10F","4","A","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41633013","TOMO JAPANESE RESTAURANT","5","4561","AMBOY ROAD","10312","7182275100","49","2012-03-20 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"41633013","TOMO JAPANESE RESTAURANT","5","4561","AMBOY ROAD","10312","7182275100","49","2012-03-20 00:00:00","P","08C","19","","","2013-09-13 01:01:06.177000000" +"41633013","TOMO JAPANESE RESTAURANT","5","4561","AMBOY ROAD","10312","7182275100","49","2012-04-04 00:00:00","D","10B","11","A","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41629811","STRIP HOUSE","1","13","EAST 12 STREET","10003","2123280000","78","2011-12-13 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41629811","STRIP HOUSE","1","13","EAST 12 STREET","10003","2123280000","78","2011-12-13 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41629953","SHINOBI RAMEN","3","53 ","MORGAN AVENUE ","11237","6463429014","49","2012-06-07 00:00:00","P","06C","16","","","2013-09-13 01:01:06.177000000" +"41629953","SHINOBI RAMEN","3","53 ","MORGAN AVENUE ","11237","6463429014","49","2012-06-22 00:00:00","D","02B","12","A","2012-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"41633781","NOIR","1","151","EAST 50 STREET","10022","2127531144","03","2013-04-17 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41633781","NOIR","1","151","EAST 50 STREET","10022","2127531144","03","2013-04-17 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2012-03-27 00:00:00","F","04M","36","C","2012-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"41633095","BAMBOO YA","4","9711 ","QUEENS BLVD ","11374","7188061228","49","2012-03-12 00:00:00","D","06D","12","A","2012-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41633095","BAMBOO YA","4","9711 ","QUEENS BLVD ","11374","7188061228","49","2013-04-01 00:00:00","F","02B","20","","","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-03-30 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-11-29 00:00:00","F","06F","40","C","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-11-29 00:00:00","F","08A","40","C","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41703229","SAKE BAR SATSKO","1","202","EAST 7 STREET","10009","2126140933","49","2013-03-26 00:00:00","F","10B","26","","","2013-09-13 01:01:06.177000000" +"41703235","CHEZ SARDINE","1","183","WEST 10 STREET","10014","6463603705","49","2013-03-05 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"41703557","PP BOY JAPAN","4","90-22","161 STREET","11432","7185232726","49","2013-01-04 00:00:00","E","06C","40","","","2013-09-13 01:01:06.177000000" +"41703557","PP BOY JAPAN","4","90-22","161 STREET","11432","7185232726","49","2013-05-15 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41703557","PP BOY JAPAN","4","90-22","161 STREET","11432","7185232726","49","2013-05-15 00:00:00","P","06E","22","","","2013-09-13 01:01:06.177000000" +"41630465","YUMMY SUSHI","1","1758","1 AVENUE","10128","2129963666","49","2012-01-09 00:00:00","D","08B","10","A","2012-01-09 00:00:00","2013-09-13 01:01:06.177000000" +"41704068","HANJAN","1","36","WEST 26 STREET","10010","2122067226","52","2013-04-10 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41704457","SUSHI VILLAGE","4","254-04","NORTHERN BOULEVARD","11362","7182253311","49","2013-01-24 00:00:00","P","04J","15","","","2013-09-13 01:01:06.177000000" +"41639187","NEW JIN BU RESTAURANT","3","49","MOTHER GASTON BOULEVARD","11233","7184553725","20","2012-02-29 00:00:00","F","06C","34","","","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-11-29 00:00:00","F","04L","40","C","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2012-01-25 00:00:00","G","02B","57","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2012-01-25 00:00:00","G","10A","57","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2012-05-31 00:00:00","U","02B","14","B","2012-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2013-02-07 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2013-03-08 00:00:00","O","10F","11","C","2013-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41635173","NETA","1","61","WEST 8 STREET","10011","2125052610","49","2012-11-27 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"41635173","NETA","1","61","WEST 8 STREET","10011","2125052610","49","2013-06-14 00:00:00","F","10J","64","","","2013-09-13 01:01:06.177000000" +"41705437","RAMEN TAKUMI","1","517","3 AVENUE","10016","2126792752","49","2013-05-08 00:00:00","F","10F","41","","","2013-09-13 01:01:06.177000000" +"41639970","MARUKO SUSHI & TEA","1","170 ","WEST 23 STREET ","10011","9173611798","49","2012-05-24 00:00:00","P","02B","15","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2011-11-02 00:00:00","G","08A","66","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2012-02-07 00:00:00","F","06D","31","C","2012-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2012-07-23 00:00:00","U","06C","27","B","2012-07-23 00:00:00","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2013-08-14 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"41705732","BentOn Cafe","1","156","EAST 45 STREET","10017","2129229788","49","2013-01-28 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41705732","BentOn Cafe","1","156","EAST 45 STREET","10017","2129229788","49","2013-02-14 00:00:00","F","06E","19","C","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41705748","GENKI SUSHI HOUSE","5","150","GREAVES LANE","10308","7182138276","49","2013-06-25 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41706168","VEYTA'S BAKERY CAFE","4","92-01","ROOSEVELT AVENUE","11372","7184248680","08","2013-08-07 00:00:00","G","04K","49","","","2013-09-13 01:01:06.177000000" +"41706168","VEYTA'S BAKERY CAFE","4","92-01","ROOSEVELT AVENUE","11372","7184248680","08","2013-08-07 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"41622616","TOTO SUSHI","1","216","THOMPSON STREET","10012","2125334433","49","2011-10-27 00:00:00","P","04H","16","","","2013-09-13 01:01:06.177000000" +"41622616","TOTO SUSHI","1","216","THOMPSON STREET","10012","2125334433","49","2011-10-27 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"41622616","TOTO SUSHI","1","216","THOMPSON STREET","10012","2125334433","49","2012-06-13 00:00:00","U","10I","20","B","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41622616","TOTO SUSHI","1","216","THOMPSON STREET","10012","2125334433","49","2013-02-21 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-02-19 00:00:00","F","10B","56","","","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-03-14 00:00:00","U","08A","26","B","2013-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-03-14 00:00:00","U","10B","26","B","2013-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41640400","KUMO SUSHI","1","282","BLEECKER STREET","10014","2123660808","49","2012-02-27 00:00:00","P","06C","24","","","2013-09-13 01:01:06.177000000" +"41640400","KUMO SUSHI","1","282","BLEECKER STREET","10014","2123660808","49","2012-10-04 00:00:00","P","04K","12","","","2013-09-13 01:01:06.177000000" +"41640400","KUMO SUSHI","1","282","BLEECKER STREET","10014","2123660808","49","2013-06-18 00:00:00","F","06C","37","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2012-01-26 00:00:00","W","08A","11","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2013-02-07 00:00:00","F","04L","35","","","2013-09-13 01:01:06.177000000" +"41635173","NETA","1","61","WEST 8 STREET","10011","2125052610","49","2012-11-27 00:00:00","F","06F","28","","","2013-09-13 01:01:06.177000000" +"41635173","NETA","1","61","WEST 8 STREET","10011","2125052610","49","2013-01-15 00:00:00","D","06C","7","A","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"41631683","LONG GRAIN","1","2534","BROADWAY","10025","2126660888","49","2012-01-18 00:00:00","F","02G","60","","","2013-09-13 01:01:06.177000000" +"41631683","LONG GRAIN","1","2534","BROADWAY","10025","2126660888","49","2012-01-18 00:00:00","F","06C","60","","","2013-09-13 01:01:06.177000000" +"41631683","LONG GRAIN","1","2534","BROADWAY","10025","2126660888","49","2012-01-18 00:00:00","F","99B","60","","","2013-09-13 01:01:06.177000000" +"41631683","LONG GRAIN","1","2534","BROADWAY","10025","2126660888","49","2012-06-25 00:00:00","F","08C","32","","","2013-09-13 01:01:06.177000000" +"41631683","LONG GRAIN","1","2534","BROADWAY","10025","2126660888","49","2012-06-25 00:00:00","F","10B","32","","","2013-09-13 01:01:06.177000000" +"41640893","OSAKA SUSHI","3","1328 ","SHEEPSHEAD BAY ROAD ","11235","7187585888","49","2012-03-06 00:00:00","D","10A","5","","","2013-09-13 01:01:06.177000000" +"41640893","OSAKA SUSHI","3","1328 ","SHEEPSHEAD BAY ROAD ","11235","7187585888","49","2012-06-07 00:00:00","F","06D","50","","","2013-09-13 01:01:06.177000000" +"41640893","OSAKA SUSHI","3","1328 ","SHEEPSHEAD BAY ROAD ","11235","7187585888","49","2012-06-07 00:00:00","F","06E","50","","","2013-09-13 01:01:06.177000000" +"41640893","OSAKA SUSHI","3","1328 ","SHEEPSHEAD BAY ROAD ","11235","7187585888","49","2012-06-18 00:00:00","D","06C","9","A","2012-06-18 00:00:00","2013-09-13 01:01:06.177000000" +"41707610","IPPIN TAPAS & NOODLE BAR","1","141","1 AVENUE","10003","6465471238","49","2013-05-30 00:00:00","F","04L","24","","","2013-09-13 01:01:06.177000000" +"41707610","IPPIN TAPAS & NOODLE BAR","1","141","1 AVENUE","10003","6465471238","49","2013-05-30 00:00:00","F","06E","24","","","2013-09-13 01:01:06.177000000" +"41623669","YAMAKAGE TOKYO","1","1026","2 AVENUE","10022","2123552577","49","2012-09-10 00:00:00","F","04N","21","","","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-03-12 00:00:00","F","04M","29","","","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-03-12 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41636986","NEW DANIELLA'S COFFEE SHOP","3","336","GRAHAM AVENUE","11211","7187828653","03","2012-02-17 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41636986","NEW DANIELLA'S COFFEE SHOP","3","336","GRAHAM AVENUE","11211","7187828653","03","2012-02-17 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"41637060","REGO PARK SAKE","4","9534 ","QUEENS BLVD ","11374","7188970429","49","2012-12-01 00:00:00","F","06D","17","","","2013-09-13 01:01:06.177000000" +"41624200","WASABI","3","638","MANHATTAN AVENUE","11222","7186099368","49","2011-11-29 00:00:00","G","04M","50","","","2013-09-13 01:01:06.177000000" +"41624200","WASABI","3","638","MANHATTAN AVENUE","11222","7186099368","49","2012-03-21 00:00:00","D","02G","12","A","2012-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41624200","WASABI","3","638","MANHATTAN AVENUE","11222","7186099368","49","2012-07-31 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41624526","YUN NAN GUO QIAO RICE NOODLE","4","136-20","ROOSEVELT AVENUE","11354","7188881281","20","2013-07-29 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-03-12 00:00:00","F","04L","29","","","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-04-02 00:00:00","U","04L","20","B","2012-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-04-02 00:00:00","U","09C","20","B","2012-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-08-09 00:00:00","F","06D","38","","","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-08-09 00:00:00","F","08A","38","","","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2012-04-03 00:00:00","D","10I","11","A","2012-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2012-12-19 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2011-12-19 00:00:00","D","10H","2","","","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2012-03-19 00:00:00","G","08A","57","","","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2012-08-20 00:00:00","D","06C","10","A","2012-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2013-08-12 00:00:00","F","02B","66","","","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2013-08-12 00:00:00","F","06C","66","","","2013-09-13 01:01:06.177000000" +"41642516","SUSHI 21","1","174","7 AVENUE","10011","6464866288","49","2012-09-04 00:00:00","U","02G","23","B","2012-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41642516","SUSHI 21","1","174","7 AVENUE","10011","6464866288","49","2013-02-21 00:00:00","F","02G","18","","","2013-09-13 01:01:06.177000000" +"41710645","MIRA SUSHI","1","46","WEST 22 STREET","10010","2129897889","49","2013-03-01 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41710645","MIRA SUSHI","1","46","WEST 22 STREET","10010","2129897889","49","2013-03-01 00:00:00","P","10H","23","","","2013-09-13 01:01:06.177000000" +"41636968","SUSHI SHOP","1","536","MADISON AVENUE","10022","2128405555","49","2012-04-24 00:00:00","D","06B","9","A","2012-04-24 00:00:00","2013-09-13 01:01:06.177000000" +"41636986","NEW DANIELLA'S COFFEE SHOP","3","336","GRAHAM AVENUE","11211","7187828653","03","2012-02-17 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41637060","REGO PARK SAKE","4","9534 ","QUEENS BLVD ","11374","7188970429","49","2012-12-26 00:00:00","U","04N","22","B","2012-12-26 00:00:00","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2012-08-23 00:00:00","F","06D","20","","","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2013-03-09 00:00:00","P","06C","17","","","2013-09-13 01:01:06.177000000" +"41711133","KAJITSU","3","125 ","EAST 39 STREET ","11203","2122284873","49","2013-05-07 00:00:00","F","06F","18","","","2013-09-13 01:01:06.177000000" +"41711545","OSAKA JAPANESE FUSION","4","224-23","UNION TURNPIKE","11364","7182178283","49","2013-05-18 00:00:00","F","10G","23","","","2013-09-13 01:01:06.177000000" +"41711559","OSHIMA","3","71 ","7 AVENUE ","11217","7187831888","49","2013-03-16 00:00:00","F","06F","52","","","2013-09-13 01:01:06.177000000" +"41633013","TOMO JAPANESE RESTAURANT","5","4561","AMBOY ROAD","10312","7182275100","49","2012-04-04 00:00:00","D","06C","11","A","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-02-29 00:00:00","U","02G","18","B","2012-02-29 00:00:00","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-09-12 00:00:00","F","04M","30","","","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-09-24 00:00:00","F","04N","41","C","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2013-05-17 00:00:00","P","04H","18","","","2013-09-13 01:01:06.177000000" +"41711559","OSHIMA","3","71 ","7 AVENUE ","11217","7187831888","49","2013-03-16 00:00:00","F","08A","52","","","2013-09-13 01:01:06.177000000" +"41711559","OSHIMA","3","71 ","7 AVENUE ","11217","7187831888","49","2013-05-02 00:00:00","U","04H","19","","","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2012-01-19 00:00:00","E","10F","30","","","2013-09-13 01:01:06.177000000" +"41633095","BAMBOO YA","4","9711 ","QUEENS BLVD ","11374","7188061228","49","2013-04-15 00:00:00","U","08A","11","B","2013-04-15 00:00:00","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2012-03-21 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2012-12-19 00:00:00","P","06C","16","","","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2012-12-19 00:00:00","P","10B","16","","","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2013-08-24 00:00:00","P","04M","22","","","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2013-08-24 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2012-08-14 00:00:00","F","04N","47","","","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2012-08-14 00:00:00","F","08C","47","","","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2012-08-14 00:00:00","F","10F","47","","","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2013-04-22 00:00:00","W","04M","6","","","2013-09-13 01:01:06.177000000" +"41625676","SNACK BOX","1","NKA ","TIMES SQUARE ","10036","2127772500","03","2012-02-22 00:00:00","8","08A","49","","","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-02-06 00:00:00","D","10F","2","","","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-10-19 00:00:00","F","04A","43","","","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2012-02-18 00:00:00","P","04M","21","","","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2012-10-11 00:00:00","F","04M","38","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2012-01-18 00:00:00","P","04M","18","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2012-01-31 00:00:00","F","02B","23","C","2012-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2013-08-01 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"41716209","AJISAI","1","795 ","LEXINGTON AVENUE ","10065","2123550888","49","2013-03-21 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41716350","FUKI SUSHI","3","8509","18 AVENUE","11214","7188378885","49","2013-02-28 00:00:00","D","10F","13","","","2013-09-13 01:01:06.177000000" +"41716444","TOTTO RAMEN","1","366","WEST 52 STREET","10019","2125820052","49","2013-05-02 00:00:00","F","02G","13","","","2013-09-13 01:01:06.177000000" +"41716444","TOTTO RAMEN","1","366","WEST 52 STREET","10019","2125820052","49","2013-05-22 00:00:00","F","15J","","","","2013-09-13 01:01:06.177000000" +"41716444","TOTTO RAMEN","1","366","WEST 52 STREET","10019","2125820052","49","2013-06-25 00:00:00","G","04J","70","","","2013-09-13 01:01:06.177000000" +"41716444","TOTTO RAMEN","1","366","WEST 52 STREET","10019","2125820052","49","2013-06-25 00:00:00","G","06C","70","","","2013-09-13 01:01:06.177000000" +"41716444","TOTTO RAMEN","1","366","WEST 52 STREET","10019","2125820052","49","2013-06-25 00:00:00","G","10F","70","","","2013-09-13 01:01:06.177000000" +"41716841","CHO CHO SAN JAPANESE RESTAURANT INC","4","39-11","QUEENS BOULEVARD","11104","7183618232","49","2013-04-11 00:00:00","F","02B","38","","","2013-09-13 01:01:06.177000000" +"41716841","CHO CHO SAN JAPANESE RESTAURANT INC","4","39-11","QUEENS BOULEVARD","11104","7183618232","49","2013-04-11 00:00:00","F","10B","38","","","2013-09-13 01:01:06.177000000" +"41634881","CROPSEY PIZZA","3","2811","CROPSEY AVENUE","11214","7189460075","63","2012-01-03 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41634881","CROPSEY PIZZA","3","2811","CROPSEY AVENUE","11214","7189460075","63","2012-01-03 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41634881","CROPSEY PIZZA","3","2811","CROPSEY AVENUE","11214","7189460075","63","2012-01-03 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2012-03-12 00:00:00","F","02G","38","","","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2012-10-09 00:00:00","F","04M","21","C","2012-10-09 00:00:00","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2012-01-25 00:00:00","G","06D","57","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2012-01-25 00:00:00","G","08A","57","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2013-02-07 00:00:00","F","04C","35","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2013-03-06 00:00:00","G","04M","46","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2013-03-08 00:00:00","O","08A","11","C","2013-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41635173","NETA","1","61","WEST 8 STREET","10011","2125052610","49","2013-01-15 00:00:00","D","09A","7","A","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"41635173","NETA","1","61","WEST 8 STREET","10011","2125052610","49","2013-06-14 00:00:00","F","02G","64","","","2013-09-13 01:01:06.177000000" +"41639970","MARUKO SUSHI & TEA","1","170 ","WEST 23 STREET ","10011","9173611798","49","2012-07-18 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41645581","MATSU JAPANESE CUISINE","1","483","COLUMBUS AVENUE","10024","2127997922","49","2012-03-22 00:00:00","D","08A","13","A","2012-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"41639187","NEW JIN BU RESTAURANT","3","49","MOTHER GASTON BOULEVARD","11233","7184553725","20","2012-02-29 00:00:00","F","10F","34","","","2013-09-13 01:01:06.177000000" +"41639187","NEW JIN BU RESTAURANT","3","49","MOTHER GASTON BOULEVARD","11233","7184553725","20","2012-03-13 00:00:00","U","06E","7","B","2012-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41639196","MARIO GOURMET DELI","1","934","AMSTERDAM AVENUE","10025","2122224470","27","2012-07-05 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41639196","MARIO GOURMET DELI","1","934","AMSTERDAM AVENUE","10025","2122224470","27","2012-07-05 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41639196","MARIO GOURMET DELI","1","934","AMSTERDAM AVENUE","10025","2122224470","27","2012-07-05 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41640400","KUMO SUSHI","1","282","BLEECKER STREET","10014","2123660808","49","2012-10-22 00:00:00","U","10B","16","B","2012-10-22 00:00:00","2013-09-13 01:01:06.177000000" +"41645944","INAKA","3","597 ","VANDERBILT AVENUE ","11238","7183988168","49","2012-07-12 00:00:00","D","06C","13","A","2012-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41645944","INAKA","3","597 ","VANDERBILT AVENUE ","11238","7183988168","49","2012-07-12 00:00:00","D","10B","13","A","2012-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41645944","INAKA","3","597 ","VANDERBILT AVENUE ","11238","7183988168","49","2013-01-15 00:00:00","F","06D","22","","","2013-09-13 01:01:06.177000000" +"41628216","OVI'S PLACE","3","2925","AVENUE H","11210","7184211640","03","2012-12-03 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41719609","KOTO SUSHI","3","67 1/2","6 AVENUE","11220","7182303881","49","2013-04-25 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"41640400","KUMO SUSHI","1","282","BLEECKER STREET","10014","2123660808","49","2012-02-27 00:00:00","P","04C","24","","","2013-09-13 01:01:06.177000000" +"41640400","KUMO SUSHI","1","282","BLEECKER STREET","10014","2123660808","49","2013-06-18 00:00:00","F","10F","37","","","2013-09-13 01:01:06.177000000" +"41646498","GO GO CURRY","1","231","THOMPSON STREET","10012","2125052555","49","2013-05-20 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"41646498","GO GO CURRY","1","231","THOMPSON STREET","10012","2125052555","49","2013-05-20 00:00:00","F","04A","30","","","2013-09-13 01:01:06.177000000" +"41628521","KOTOBUKI","1","56","3 AVENUE","10003","2123535088","49","2012-06-11 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"41628521","KOTOBUKI","1","56","3 AVENUE","10003","2123535088","49","2012-12-11 00:00:00","P","04A","17","","","2013-09-13 01:01:06.177000000" +"41628521","KOTOBUKI","1","56","3 AVENUE","10003","2123535088","49","2013-01-23 00:00:00","D","08C","13","A","2013-01-23 00:00:00","2013-09-13 01:01:06.177000000" +"41628657","OOTOYA JAPANESE RESTAURANT","1","8","WEST 18 STREET","10011","2122550018","49","2013-05-20 00:00:00","F","09C","29","","","2013-09-13 01:01:06.177000000" +"41721159","SAKURA JAPANESE CUISINE","4","35-15","DITMARS BOULEVARD","11105","7187772188","49","2013-07-24 00:00:00","P","06E","22","","","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-03-12 00:00:00","F","04C","29","","","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-08-09 00:00:00","F","04H","38","","","2013-09-13 01:01:06.177000000" +"41636968","SUSHI SHOP","1","536","MADISON AVENUE","10022","2128405555","49","2013-05-14 00:00:00","P","04J","22","","","2013-09-13 01:01:06.177000000" +"41636986","NEW DANIELLA'S COFFEE SHOP","3","336","GRAHAM AVENUE","11211","7187828653","03","2012-02-17 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41642716","HING WON EXPRESS","1","48","WEST 48 STREET","10036","2127191451","20","2012-04-09 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41642716","HING WON EXPRESS","1","48","WEST 48 STREET","10036","2127191451","20","2012-04-09 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-02-16 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-09-24 00:00:00","F","04C","41","C","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41722751","SAKURA 7","4","65-54 ","GRAND AVENUE ","11378","7188949888","49","2013-04-08 00:00:00","F","09B","15","","","2013-09-13 01:01:06.177000000" +"41722947","TANKO JAPANESE FUSION","4","3805 ","BELL BOULEVARD ","11361","7186311188","49","2013-06-10 00:00:00","P","06A","25","","","2013-09-13 01:01:06.177000000" +"41722947","TANKO JAPANESE FUSION","4","3805 ","BELL BOULEVARD ","11361","7186311188","49","2013-06-10 00:00:00","P","06B","25","","","2013-09-13 01:01:06.177000000" +"41637060","REGO PARK SAKE","4","9534 ","QUEENS BLVD ","11374","7188970429","49","2012-03-06 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41637060","REGO PARK SAKE","4","9534 ","QUEENS BLVD ","11374","7188970429","49","2012-12-01 00:00:00","F","04L","17","","","2013-09-13 01:01:06.177000000" +"41637060","REGO PARK SAKE","4","9534 ","QUEENS BLVD ","11374","7188970429","49","2012-12-01 00:00:00","F","04N","17","","","2013-09-13 01:01:06.177000000" +"41643015","CUCUMBER SUSHI & SALAD BAR","5","5834","AMBOY ROAD","10309","7189661118","49","2012-06-09 00:00:00","P","10B","16","","","2013-09-13 01:01:06.177000000" +"41643120","YOPPARAI","1","151","RIVINGTON STREET","10002","2127777253","49","2012-04-03 00:00:00","D","06C","10","A","2012-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41629609","TANGS JIANG RESTAURANT","1","306","SAINT NICHOLAS AVENUE","10027","2128645179","20","2012-01-04 00:00:00","F","02G","49","C","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41629609","TANGS JIANG RESTAURANT","1","306","SAINT NICHOLAS AVENUE","10027","2128645179","20","2012-01-04 00:00:00","F","09B","49","C","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"50000055","BANKOK CUISINE","4","107-18","70 ROAD","11375","7182614005","82","2013-06-03 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2012-08-14 00:00:00","F","02B","47","","","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2012-08-30 00:00:00","U","10B","17","B","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2013-04-20 00:00:00","G","06D","51","","","2013-09-13 01:01:06.177000000" +"41642429","GRAND BAKERY","3","501","GRAND STREET","11211","7183840773","77","2013-01-08 00:00:00","G","08C","49","","","2013-09-13 01:01:06.177000000" +"41642429","GRAND BAKERY","3","501","GRAND STREET","11211","7183840773","77","2013-01-08 00:00:00","G","10B","49","","","2013-09-13 01:01:06.177000000" +"50000082","FUJI ISLAND","5","556","TOMPKINS AVENUE","10305","7184474752","49","2013-04-17 00:00:00","F","02B","31","","","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2012-03-21 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2013-08-24 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41629811","STRIP HOUSE","1","13","EAST 12 STREET","10003","2123280000","78","2011-12-13 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41629953","SHINOBI RAMEN","3","53 ","MORGAN AVENUE ","11237","6463429014","49","2011-12-14 00:00:00","F","99B","33","","","2013-09-13 01:01:06.177000000" +"41629953","SHINOBI RAMEN","3","53 ","MORGAN AVENUE ","11237","6463429014","49","2012-06-07 00:00:00","P","08C","16","","","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2013-04-20 00:00:00","G","06E","51","","","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2013-04-20 00:00:00","G","10F","51","","","2013-09-13 01:01:06.177000000" +"41642516","SUSHI 21","1","174","7 AVENUE","10011","6464866288","49","2012-09-04 00:00:00","U","04C","23","B","2012-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41642516","SUSHI 21","1","174","7 AVENUE","10011","6464866288","49","2012-09-04 00:00:00","U","10F","23","B","2012-09-04 00:00:00","2013-09-13 01:01:06.177000000" +"41642516","SUSHI 21","1","174","7 AVENUE","10011","6464866288","49","2013-02-21 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41642716","HING WON EXPRESS","1","48","WEST 48 STREET","10036","2127191451","20","2012-04-09 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2012-08-23 00:00:00","F","04M","20","","","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2012-08-23 00:00:00","F","10F","20","","","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2013-03-09 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-02-16 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-09-12 00:00:00","F","06D","30","","","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-09-12 00:00:00","F","06E","30","","","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-09-12 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-09-24 00:00:00","F","08A","41","C","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2012-02-18 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41643015","CUCUMBER SUSHI & SALAD BAR","5","5834","AMBOY ROAD","10309","7189661118","49","2012-06-09 00:00:00","P","04H","16","","","2013-09-13 01:01:06.177000000" +"41643120","YOPPARAI","1","151","RIVINGTON STREET","10002","2127777253","49","2013-05-09 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"50000249","TAMASHII RAMEN","4","29-05 ","BROADWAY ","11106","7182785888","49","2013-06-10 00:00:00","P","06F","18","","","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2012-03-28 00:00:00","G","04M","64","","","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2012-03-28 00:00:00","G","06A","64","","","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2012-03-28 00:00:00","G","10E","64","","","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2013-04-10 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41650016","GARDEN PIZZA","1","1641 ","1 AVENUE ","10028","2122499400","62","2012-04-03 00:00:00","E","10F","49","","","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2012-08-30 00:00:00","U","10F","17","B","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"50000261","NEW YORK SUSHI KO","1","91 ","CLINTON STREET ","10002","9177345857","49","2013-06-25 00:00:00","F","04C","33","","","2013-09-13 01:01:06.177000000" +"41630942","SUSHI-TERIA","1","601 ","LEXINGTON AVENUE ","10022","9178810420","49","2013-03-07 00:00:00","F","05D","28","","","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2012-04-03 00:00:00","U","10H","19","B","2012-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2012-10-09 00:00:00","F","06F","21","C","2012-10-09 00:00:00","2013-09-13 01:01:06.177000000" +"41645303","FIX COFFEE & BAKERY","4","1 ","MAIN TERMINAL ","11371","5164044050","14","2012-03-28 00:00:00","F","09A","49","","","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2012-06-29 00:00:00","P","10F","11","","","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2012-07-12 00:00:00","D","10F","11","A","2012-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2013-02-20 00:00:00","G","02B","41","","","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2013-02-20 00:00:00","G","04L","41","","","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2013-08-14 00:00:00","P","06F","25","","","2013-09-13 01:01:06.177000000" +"50000333","AJI 53","3","170","SMITH STREET","11201","7189351166","49","2013-07-22 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"50000333","AJI 53","3","170","SMITH STREET","11201","7189351166","49","2013-07-22 00:00:00","P","06E","22","","","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2012-02-18 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2012-03-31 00:00:00","D","10E","6","A","2012-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2013-05-30 00:00:00","P","06F","26","","","2013-09-13 01:01:06.177000000" +"41645581","MATSU JAPANESE CUISINE","1","483","COLUMBUS AVENUE","10024","2127997922","49","2012-03-08 00:00:00","F","10F","14","","","2013-09-13 01:01:06.177000000" +"41644418","BAGEL BIN","4","8610 ","JAMAICA AVENUE ","11421","7184416669","07","2012-02-29 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41631683","LONG GRAIN","1","2534","BROADWAY","10025","2126660888","49","2012-01-18 00:00:00","F","10F","60","","","2013-09-13 01:01:06.177000000" +"41645944","INAKA","3","597 ","VANDERBILT AVENUE ","11238","7183988168","49","2013-07-15 00:00:00","F","02G","20","","","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2012-05-03 00:00:00","U","04M","13","B","2012-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2012-10-03 00:00:00","P","02G","14","","","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2012-10-15 00:00:00","U","06C","19","B","2012-10-15 00:00:00","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2013-05-21 00:00:00","F","06F","24","","","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2012-03-12 00:00:00","F","10F","38","","","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2012-04-03 00:00:00","U","02B","19","B","2012-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2012-04-03 00:00:00","U","04M","19","B","2012-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2012-08-28 00:00:00","F","10F","38","","","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2012-10-09 00:00:00","F","06E","21","C","2012-10-09 00:00:00","2013-09-13 01:01:06.177000000" +"41645303","FIX COFFEE & BAKERY","4","1 ","MAIN TERMINAL ","11371","5164044050","14","2012-03-28 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41639970","MARUKO SUSHI & TEA","1","170 ","WEST 23 STREET ","10011","9173611798","49","2012-05-24 00:00:00","P","09B","15","","","2013-09-13 01:01:06.177000000" +"41646498","GO GO CURRY","1","231","THOMPSON STREET","10012","2125052555","49","2012-11-27 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"41645303","FIX COFFEE & BAKERY","4","1 ","MAIN TERMINAL ","11371","5164044050","14","2012-03-28 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41645303","FIX COFFEE & BAKERY","4","1 ","MAIN TERMINAL ","11371","5164044050","14","2012-03-28 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"50000604","ZAMBA RIOS","3","2770","ATLANTIC AVENUE","11207","3474047525","99","2013-08-02 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41640400","KUMO SUSHI","1","282","BLEECKER STREET","10014","2123660808","49","2013-06-18 00:00:00","F","04J","37","","","2013-09-13 01:01:06.177000000" +"41640400","KUMO SUSHI","1","282","BLEECKER STREET","10014","2123660808","49","2013-06-18 00:00:00","F","06A","37","","","2013-09-13 01:01:06.177000000" +"41646919","LA PERRADA DE CHALO","4","8312 ","NORTHERN BOULEVARD ","11372","7189152130","53","2012-03-31 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41645581","MATSU JAPANESE CUISINE","1","483","COLUMBUS AVENUE","10024","2127997922","49","2012-03-22 00:00:00","D","10A","13","A","2012-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"41645581","MATSU JAPANESE CUISINE","1","483","COLUMBUS AVENUE","10024","2127997922","49","2012-08-08 00:00:00","P","08A","13","","","2013-09-13 01:01:06.177000000" +"41645581","MATSU JAPANESE CUISINE","1","483","COLUMBUS AVENUE","10024","2127997922","49","2013-02-14 00:00:00","F","06A","29","","","2013-09-13 01:01:06.177000000" +"50000665","DRUNKEN FISH","4","52-35","METROPOLITAN AVENUE","11385","7188211283","49","2013-06-28 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"50000736","GREENBAY SUSHI","1","1659","1 AVENUE","10028","2123482878","49","2013-08-06 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"50000736","GREENBAY SUSHI","1","1659","1 AVENUE","10028","2123482878","49","2013-09-09 00:00:00","U","02C","21","","","2013-09-13 01:01:06.177000000" +"41640893","OSAKA SUSHI","3","1328 ","SHEEPSHEAD BAY ROAD ","11235","7187585888","49","2012-06-07 00:00:00","F","10F","50","","","2013-09-13 01:01:06.177000000" +"41645944","INAKA","3","597 ","VANDERBILT AVENUE ","11238","7183988168","49","2012-03-26 00:00:00","D","10B","2","","","2013-09-13 01:01:06.177000000" +"41652449","MICKIE'S ICE CREAM","1","272","SHERMAN AVENUE","10034","2122227304","43","2012-03-29 00:00:00","E","10A","49","","","2013-09-13 01:01:06.177000000" +"41652500","NEW MADO JAPANESE RESTAURANT LLC","4","9516A ","QUEENS BLVD ","11374","7188964000","49","2013-05-04 00:00:00","P","10B","18","","","2013-09-13 01:01:06.177000000" +"50000872","ISTANBUL RESTAURANT","4","95-36","QUEENS BOULEVARD","11374","7182757555","83","2013-06-11 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41646498","GO GO CURRY","1","231","THOMPSON STREET","10012","2125052555","49","2012-04-04 00:00:00","P","10H","19","","","2013-09-13 01:01:06.177000000" +"41646498","GO GO CURRY","1","231","THOMPSON STREET","10012","2125052555","49","2013-05-20 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"50000940","A CHIBAN","4","252-13 ","UNION TURNPIKE ","11426","7188318888","49","2013-06-20 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"50000940","A CHIBAN","4","252-13 ","UNION TURNPIKE ","11426","7188318888","49","2013-06-20 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"50000940","A CHIBAN","4","252-13 ","UNION TURNPIKE ","11426","7188318888","49","2013-06-20 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41646919","LA PERRADA DE CHALO","4","8312 ","NORTHERN BOULEVARD ","11372","7189152130","53","2012-03-31 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41646919","LA PERRADA DE CHALO","4","8312 ","NORTHERN BOULEVARD ","11372","7189152130","53","2012-03-31 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"50001010","DRAGON I CHINESE RESTAURANT","4","111-03","LEFFERTS BOULEVARD","11420","7188456180","20","2013-06-11 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41653529","MERIT KABAB PALACE","4","3767 ","74TH ST ","11372","7183965827","09","2012-04-30 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41633095","BAMBOO YA","4","9711 ","QUEENS BLVD ","11374","7188061228","49","2012-03-12 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41642429","GRAND BAKERY","3","501","GRAND STREET","11211","7183840773","77","2013-01-08 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"41642516","SUSHI 21","1","174","7 AVENUE","10011","6464866288","49","2012-02-28 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"41642516","SUSHI 21","1","174","7 AVENUE","10011","6464866288","49","2012-08-23 00:00:00","F","04M","32","","","2013-09-13 01:01:06.177000000" +"41633781","NOIR","1","151","EAST 50 STREET","10022","2127531144","03","2013-04-17 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"50001178","Aji sushi","3","201","5 AVENUE","11217","7186222889","49","2013-06-19 00:00:00","D","06C","13","","","2013-09-13 01:01:06.177000000" +"41642716","HING WON EXPRESS","1","48","WEST 48 STREET","10036","2127191451","20","2012-04-09 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-09-12 00:00:00","F","06C","30","","","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-09-24 00:00:00","F","04H","41","C","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-09-24 00:00:00","F","06C","41","C","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2013-05-17 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41654379","CLUB MAX","1","238","EAST 53 STREET","10022","2126885120","49","2012-04-24 00:00:00","P","04H","15","","","2013-09-13 01:01:06.177000000" +"41654379","CLUB MAX","1","238","EAST 53 STREET","10022","2126885120","49","2013-02-13 00:00:00","P","04C","22","","","2013-09-13 01:01:06.177000000" +"41654379","CLUB MAX","1","238","EAST 53 STREET","10022","2126885120","49","2013-02-13 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-04-13 00:00:00","P","04C","24","","","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-04-13 00:00:00","P","10F","24","","","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-11-29 00:00:00","F","02B","40","C","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-11-29 00:00:00","F","06C","40","C","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-11-29 00:00:00","F","10B","40","C","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2013-06-21 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"50001203","AKI SUSHI","1","212","EAST 52 STREET","10022","2128938266","49","2013-07-17 00:00:00","F","04H","59","","","2013-09-13 01:01:06.177000000" +"50001203","AKI SUSHI","1","212","EAST 52 STREET","10022","2128938266","49","2013-07-17 00:00:00","F","10B","59","","","2013-09-13 01:01:06.177000000" +"50001203","AKI SUSHI","1","212","EAST 52 STREET","10022","2128938266","49","2013-08-28 00:00:00","U","04H","21","","","2013-09-13 01:01:06.177000000" +"41643015","CUCUMBER SUSHI & SALAD BAR","5","5834","AMBOY ROAD","10309","7189661118","49","2012-07-17 00:00:00","U","03C","24","B","2012-07-17 00:00:00","2013-09-13 01:01:06.177000000" +"41643015","CUCUMBER SUSHI & SALAD BAR","5","5834","AMBOY ROAD","10309","7189661118","49","2012-07-17 00:00:00","U","10F","24","B","2012-07-17 00:00:00","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2012-09-13 00:00:00","P","10I","10","","","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2012-10-04 00:00:00","D","06D","9","A","2012-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41655483","JU FENG CHINESE FOOD","3","2809","NOSTRAND AVENUE","11229","7182529865","20","2012-05-21 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41655483","JU FENG CHINESE FOOD","3","2809","NOSTRAND AVENUE","11229","7182529865","20","2012-09-27 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"50001458","Bassanova r","1","76","MOTT STREET","10013","2123342100","49","2013-07-17 00:00:00","D","05H","12","","","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2012-08-14 00:00:00","F","03B","47","","","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2012-08-14 00:00:00","F","08A","47","","","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2013-04-10 00:00:00","F","04C","30","","","2013-09-13 01:01:06.177000000" +"41650016","GARDEN PIZZA","1","1641 ","1 AVENUE ","10028","2122499400","62","2012-04-03 00:00:00","E","10A","49","","","2013-09-13 01:01:06.177000000" +"41650016","GARDEN PIZZA","1","1641 ","1 AVENUE ","10028","2122499400","62","2012-04-03 00:00:00","E","10B","49","","","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2013-02-20 00:00:00","G","04M","41","","","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2013-08-14 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41634881","CROPSEY PIZZA","3","2811","CROPSEY AVENUE","11214","7189460075","63","2012-01-03 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41634881","CROPSEY PIZZA","3","2811","CROPSEY AVENUE","11214","7189460075","63","2012-01-03 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41634881","CROPSEY PIZZA","3","2811","CROPSEY AVENUE","11214","7189460075","63","2012-01-03 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"50001531","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2013-08-26 00:00:00","P","04C","18","","","2013-09-13 01:01:06.177000000" +"50001531","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2013-08-26 00:00:00","P","06E","18","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2012-01-25 00:00:00","G","04C","57","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2012-01-25 00:00:00","G","04M","57","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2013-03-06 00:00:00","G","09B","46","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2013-03-08 00:00:00","O","04M","11","C","2013-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41635173","NETA","1","61","WEST 8 STREET","10011","2125052610","49","2012-02-29 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41635173","NETA","1","61","WEST 8 STREET","10011","2125052610","49","2012-11-27 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2013-08-27 00:00:00","F","04N","29","","","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2013-08-27 00:00:00","F","06C","29","","","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2012-05-03 00:00:00","F","02B","46","","","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2012-10-12 00:00:00","F","06C","30","","","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2012-10-12 00:00:00","F","10B","30","","","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2013-06-06 00:00:00","F","04J","32","","","2013-09-13 01:01:06.177000000" +"50001709","AKI 39 JAPANESE CUISINE","1","216","EAST 39 STREET","10016","2128678668","49","2013-07-23 00:00:00","F","04J","30","","","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2012-10-11 00:00:00","F","08A","38","","","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2012-11-19 00:00:00","D","06D","10","A","2012-11-19 00:00:00","2013-09-13 01:01:06.177000000" +"41650782","BLUE RIBBON SUSHI IZAKAYA","1","187","ORCHARD STREET","10002","2124660404","49","2012-03-28 00:00:00","D","10B","5","","","2013-09-13 01:01:06.177000000" +"41650782","BLUE RIBBON SUSHI IZAKAYA","1","187","ORCHARD STREET","10002","2124660404","49","2012-06-18 00:00:00","P","06D","7","","","2013-09-13 01:01:06.177000000" +"41650782","BLUE RIBBON SUSHI IZAKAYA","1","187","ORCHARD STREET","10002","2124660404","49","2012-06-25 00:00:00","D","10B","12","A","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41650782","BLUE RIBBON SUSHI IZAKAYA","1","187","ORCHARD STREET","10002","2124660404","49","2012-12-06 00:00:00","P","04N","14","","","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2012-05-30 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2012-05-30 00:00:00","F","06E","31","","","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2012-12-14 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2012-06-12 00:00:00","F","04N","80","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2012-06-12 00:00:00","F","06C","80","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2012-06-12 00:00:00","F","10B","80","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2012-06-27 00:00:00","O","10F","6","C","2012-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2013-09-11 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2012-08-28 00:00:00","F","02B","38","","","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2013-05-21 00:00:00","F","06F","9","","","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2013-05-21 00:00:00","F","10J","9","","","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2012-03-28 00:00:00","G","06C","64","","","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2012-03-28 00:00:00","G","10B","64","","","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2012-04-30 00:00:00","U","04C","22","B","2012-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2012-04-30 00:00:00","U","04M","22","B","2012-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2012-10-04 00:00:00","D","10I","9","A","2012-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2013-04-10 00:00:00","F","02B","30","","","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2013-04-10 00:00:00","F","04N","30","","","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2012-04-13 00:00:00","G","04H","68","","","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2012-04-13 00:00:00","G","06A","68","","","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2012-05-03 00:00:00","U","02G","13","B","2012-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2012-10-15 00:00:00","U","10F","19","B","2012-10-15 00:00:00","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2012-07-12 00:00:00","D","02G","11","A","2012-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2013-03-20 00:00:00","U","04L","8","B","2013-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41645581","MATSU JAPANESE CUISINE","1","483","COLUMBUS AVENUE","10024","2127997922","49","2012-03-22 00:00:00","D","04N","13","A","2012-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"41645581","MATSU JAPANESE CUISINE","1","483","COLUMBUS AVENUE","10024","2127997922","49","2013-02-14 00:00:00","F","04C","29","","","2013-09-13 01:01:06.177000000" +"41657649","SEA KING","1","219","EAST 23 STREET","10010","2127253399","49","2013-03-30 00:00:00","P","10F","11","","","2013-09-13 01:01:06.177000000" +"41658037","MIZU","1","29","EAST 20 STREET","10003","2125056687","49","2012-04-25 00:00:00","D","10A","10","","","2013-09-13 01:01:06.177000000" +"41645944","INAKA","3","597 ","VANDERBILT AVENUE ","11238","7183988168","49","2012-06-26 00:00:00","P","06D","5","","","2013-09-13 01:01:06.177000000" +"41645944","INAKA","3","597 ","VANDERBILT AVENUE ","11238","7183988168","49","2013-01-15 00:00:00","F","05D","22","","","2013-09-13 01:01:06.177000000" +"41645944","INAKA","3","597 ","VANDERBILT AVENUE ","11238","7183988168","49","2013-02-27 00:00:00","D","09B","4","A","2013-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"41650782","BLUE RIBBON SUSHI IZAKAYA","1","187","ORCHARD STREET","10002","2124660404","49","2013-07-15 00:00:00","P","04H","13","","","2013-09-13 01:01:06.177000000" +"41650782","BLUE RIBBON SUSHI IZAKAYA","1","187","ORCHARD STREET","10002","2124660404","49","2013-07-15 00:00:00","P","08A","13","","","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2012-04-13 00:00:00","G","05D","68","","","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2012-04-17 00:00:00","O","10F","4","P","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2012-05-03 00:00:00","U","08A","13","B","2012-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-01-19 00:00:00","D","10B","7","","","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-08-09 00:00:00","F","04M","38","","","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2013-03-04 00:00:00","P","06F","13","","","2013-09-13 01:01:06.177000000" +"41658579","GRAVITY LOUNGE","2","400","CLAREMONT PARKWAY","10457","7182942477","53","2012-08-16 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"41658579","GRAVITY LOUNGE","2","400","CLAREMONT PARKWAY","10457","7182942477","53","2012-08-16 00:00:00","G","08C","49","","","2013-09-13 01:01:06.177000000" +"41636968","SUSHI SHOP","1","536","MADISON AVENUE","10022","2128405555","49","2012-01-31 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41636968","SUSHI SHOP","1","536","MADISON AVENUE","10022","2128405555","49","2013-05-14 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41636968","SUSHI SHOP","1","536","MADISON AVENUE","10022","2128405555","49","2013-05-14 00:00:00","P","06E","22","","","2013-09-13 01:01:06.177000000" +"41637060","REGO PARK SAKE","4","9534 ","QUEENS BLVD ","11374","7188970429","49","2012-03-06 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41637060","REGO PARK SAKE","4","9534 ","QUEENS BLVD ","11374","7188970429","49","2012-03-28 00:00:00","U","08A","12","B","2012-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41637060","REGO PARK SAKE","4","9534 ","QUEENS BLVD ","11374","7188970429","49","2013-05-30 00:00:00","P","02B","9","","","2013-09-13 01:01:06.177000000" +"41659425","ARATA JAPANESE RESTAURANT.","1","1047","2 AVENUE","10022","2123718338","49","2012-10-17 00:00:00","F","04N","31","","","2013-09-13 01:01:06.177000000" +"41659449","FUJI SUSHI","5","1115","HYLAN BOULEVARD","10305","7188160188","49","2012-05-01 00:00:00","F","06C","29","","","2013-09-13 01:01:06.177000000" +"41659449","FUJI SUSHI","5","1115","HYLAN BOULEVARD","10305","7188160188","49","2012-05-09 00:00:00","F","04L","19","C","2012-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41646498","GO GO CURRY","1","231","THOMPSON STREET","10012","2125052555","49","2012-04-04 00:00:00","P","06E","19","","","2013-09-13 01:01:06.177000000" +"41646498","GO GO CURRY","1","231","THOMPSON STREET","10012","2125052555","49","2013-05-20 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"41646525","CEETAY","2","129","ALEXANDER AVENUE","10454","7186187020","49","2012-08-09 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41646525","CEETAY","2","129","ALEXANDER AVENUE","10454","7186187020","49","2013-08-16 00:00:00","P","04H","9","","","2013-09-13 01:01:06.177000000" +"41646919","LA PERRADA DE CHALO","4","8312 ","NORTHERN BOULEVARD ","11372","7189152130","53","2012-03-31 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2012-04-03 00:00:00","D","04C","11","A","2012-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2012-04-03 00:00:00","D","10F","11","A","2012-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2013-01-15 00:00:00","U","10F","8","B","2013-01-15 00:00:00","2013-09-13 01:01:06.177000000" +"41652449","MICKIE'S ICE CREAM","1","272","SHERMAN AVENUE","10034","2122227304","43","2012-03-29 00:00:00","E","04J","49","","","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2012-03-06 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2012-03-27 00:00:00","F","02B","36","C","2012-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"41661008","AMURA JAPANESE RESTAURANT","1","1567","2ND AVE","10028","2127721688","49","2013-09-11 00:00:00","P","02B","23","","","2013-09-13 01:01:06.177000000" +"41661008","AMURA JAPANESE RESTAURANT","1","1567","2ND AVE","10028","2127721688","49","2013-09-11 00:00:00","P","10B","23","","","2013-09-13 01:01:06.177000000" +"41653940","SUSHI SUKI YORKER","1","1577","YORK AVENUE","10028","2122493766","49","2013-05-07 00:00:00","F","06F","19","","","2013-09-13 01:01:06.177000000" +"41654379","CLUB MAX","1","238","EAST 53 STREET","10022","2126885120","49","2012-07-10 00:00:00","D","06C","7","A","2012-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41654379","CLUB MAX","1","238","EAST 53 STREET","10022","2126885120","49","2012-07-10 00:00:00","D","10F","7","A","2012-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41661153","SAKURA IV","4","6419 ","MYRTLE AVENUE ","11385","7183667888","49","2012-05-21 00:00:00","U","04M","25","B","2012-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41653940","SUSHI SUKI YORKER","1","1577","YORK AVENUE","10028","2122493766","49","2013-05-07 00:00:00","F","04L","19","","","2013-09-13 01:01:06.177000000" +"41662152","TENDO SUSHI","4","6626 ","FRESH POND ROAD ","11385","7183810809","49","2012-05-21 00:00:00","D","10B","22","","","2013-09-13 01:01:06.177000000" +"41662152","TENDO SUSHI","4","6626 ","FRESH POND ROAD ","11385","7183810809","49","2013-04-25 00:00:00","F","02B","51","","","2013-09-13 01:01:06.177000000" +"41662345","IRON SUSHI","1","212","EAST 10 STREET","10003","2122280102","49","2012-06-19 00:00:00","D","02B","13","A","2012-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"41655483","JU FENG CHINESE FOOD","3","2809","NOSTRAND AVENUE","11229","7182529865","20","2012-05-21 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41655483","JU FENG CHINESE FOOD","3","2809","NOSTRAND AVENUE","11229","7182529865","20","2012-05-21 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41655483","JU FENG CHINESE FOOD","3","2809","NOSTRAND AVENUE","11229","7182529865","20","2012-09-27 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41655483","JU FENG CHINESE FOOD","3","2809","NOSTRAND AVENUE","11229","7182529865","20","2012-09-27 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41655484","CANAAN SUSHI","1","154","WEST 29 STREET","10001","2129479298","49","2013-05-14 00:00:00","F","04A","19","","","2013-09-13 01:01:06.177000000" +"41655484","CANAAN SUSHI","1","154","WEST 29 STREET","10001","2129479298","49","2013-05-14 00:00:00","F","10H","19","","","2013-09-13 01:01:06.177000000" +"41654379","CLUB MAX","1","238","EAST 53 STREET","10022","2126885120","49","2012-04-09 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41654886","RAI RAI KEN","1","218","EAST 10 STREET","10003","2124777030","49","2012-06-28 00:00:00","U","04N","12","B","2012-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"41639196","MARIO GOURMET DELI","1","934","AMSTERDAM AVENUE","10025","2122224470","27","2012-07-05 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41639196","MARIO GOURMET DELI","1","934","AMSTERDAM AVENUE","10025","2122224470","27","2012-07-05 00:00:00","F","10E","49","","","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2012-06-19 00:00:00","U","04N","11","B","2012-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2013-08-27 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2012-05-03 00:00:00","F","02G","46","","","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2013-06-06 00:00:00","F","02B","32","","","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2012-05-30 00:00:00","F","04N","31","","","2013-09-13 01:01:06.177000000" +"41655483","JU FENG CHINESE FOOD","3","2809","NOSTRAND AVENUE","11229","7182529865","20","2012-05-21 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2012-06-12 00:00:00","F","10F","80","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2012-06-27 00:00:00","O","10B","6","C","2012-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2012-03-28 00:00:00","G","06E","64","","","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2012-03-28 00:00:00","G","08A","64","","","2013-09-13 01:01:06.177000000" +"41650016","GARDEN PIZZA","1","1641 ","1 AVENUE ","10028","2122499400","62","2012-04-03 00:00:00","E","04J","49","","","2013-09-13 01:01:06.177000000" +"41650016","GARDEN PIZZA","1","1641 ","1 AVENUE ","10028","2122499400","62","2012-04-03 00:00:00","E","05D","49","","","2013-09-13 01:01:06.177000000" +"41650016","GARDEN PIZZA","1","1641 ","1 AVENUE ","10028","2122499400","62","2012-04-03 00:00:00","E","10J","49","","","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2012-07-12 00:00:00","D","10B","11","A","2012-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2013-08-14 00:00:00","P","10F","25","","","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2013-08-27 00:00:00","F","04H","29","","","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2012-05-03 00:00:00","F","05D","46","","","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2012-05-15 00:00:00","D","06A","10","A","2012-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2012-12-20 00:00:00","U","06C","11","B","2012-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41657649","SEA KING","1","219","EAST 23 STREET","10010","2127253399","49","2012-07-13 00:00:00","U","02G","19","B","2012-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2012-12-14 00:00:00","P","10H","22","","","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2013-08-10 00:00:00","F","06E","37","","","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2013-08-10 00:00:00","F","08A","37","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2012-06-12 00:00:00","F","08A","80","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2012-06-12 00:00:00","F","08B","80","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2012-06-25 00:00:00","G","04H","26","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2012-06-25 00:00:00","G","10J","26","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2013-09-11 00:00:00","P","06D","20","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2013-09-11 00:00:00","P","10A","20","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2013-09-11 00:00:00","P","10B","20","","","2013-09-13 01:01:06.177000000" +"41640400","KUMO SUSHI","1","282","BLEECKER STREET","10014","2123660808","49","2012-02-27 00:00:00","P","06E","24","","","2013-09-13 01:01:06.177000000" +"41640400","KUMO SUSHI","1","282","BLEECKER STREET","10014","2123660808","49","2012-03-08 00:00:00","D","02G","12","A","2012-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41658037","MIZU","1","29","EAST 20 STREET","10003","2125056687","49","2012-04-25 00:00:00","D","10F","10","","","2013-09-13 01:01:06.177000000" +"41658037","MIZU","1","29","EAST 20 STREET","10003","2125056687","49","2013-07-23 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41658037","MIZU","1","29","EAST 20 STREET","10003","2125056687","49","2013-07-23 00:00:00","F","08A","37","","","2013-09-13 01:01:06.177000000" +"41664555","SUSHI OF GARI","1","1 ","WEST 58 STREET ","10019","6467553230","49","2012-05-22 00:00:00","D","10H","10","","","2013-09-13 01:01:06.177000000" +"41657649","SEA KING","1","219","EAST 23 STREET","10010","2127253399","49","2013-03-30 00:00:00","P","02G","11","","","2013-09-13 01:01:06.177000000" +"41664973","NAPOLITANO","3","3009","AVENUE N","11210","7186922904","63","2012-08-23 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41664973","NAPOLITANO","3","3009","AVENUE N","11210","7186922904","63","2012-08-23 00:00:00","G","06A","49","","","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2012-10-03 00:00:00","P","10F","14","","","2013-09-13 01:01:06.177000000" +"41658037","MIZU","1","29","EAST 20 STREET","10003","2125056687","49","2012-04-25 00:00:00","D","04L","10","","","2013-09-13 01:01:06.177000000" +"41658037","MIZU","1","29","EAST 20 STREET","10003","2125056687","49","2013-07-23 00:00:00","F","02G","37","","","2013-09-13 01:01:06.177000000" +"41658037","MIZU","1","29","EAST 20 STREET","10003","2125056687","49","2013-07-23 00:00:00","F","06D","37","","","2013-09-13 01:01:06.177000000" +"41659425","ARATA JAPANESE RESTAURANT.","1","1047","2 AVENUE","10022","2123718338","49","2012-11-23 00:00:00","D","10A","11","A","2012-11-23 00:00:00","2013-09-13 01:01:06.177000000" +"41659425","ARATA JAPANESE RESTAURANT.","1","1047","2 AVENUE","10022","2123718338","49","2013-05-10 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"41659425","ARATA JAPANESE RESTAURANT.","1","1047","2 AVENUE","10022","2123718338","49","2013-05-10 00:00:00","P","06D","26","","","2013-09-13 01:01:06.177000000" +"41659425","ARATA JAPANESE RESTAURANT.","1","1047","2 AVENUE","10022","2123718338","49","2013-05-10 00:00:00","P","06E","26","","","2013-09-13 01:01:06.177000000" +"41666608","27 SHINJUKU SUSHI INC","1","27","PARK PL","10007","2124067333","49","2012-05-22 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41642429","GRAND BAKERY","3","501","GRAND STREET","11211","7183840773","77","2013-01-08 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41652500","NEW MADO JAPANESE RESTAURANT LLC","4","9516A ","QUEENS BLVD ","11374","7188964000","49","2012-04-10 00:00:00","D","06D","5","A","2012-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41659908","TENZAN SUSHI","3","7119 ","18TH AVE ","11204","7186213288","49","2013-06-04 00:00:00","P","09B","12","","","2013-09-13 01:01:06.177000000" +"41642516","SUSHI 21","1","174","7 AVENUE","10011","6464866288","49","2012-02-28 00:00:00","F","08C","28","","","2013-09-13 01:01:06.177000000" +"41642516","SUSHI 21","1","174","7 AVENUE","10011","6464866288","49","2012-08-23 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-09-12 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"41668068","MARKIS PLACE","4","4403 ","30 AVENUE ","11103","9175683496","04","2013-06-04 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41659425","ARATA JAPANESE RESTAURANT.","1","1047","2 AVENUE","10022","2123718338","49","2012-10-17 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41659425","ARATA JAPANESE RESTAURANT.","1","1047","2 AVENUE","10022","2123718338","49","2012-10-17 00:00:00","F","06F","31","","","2013-09-13 01:01:06.177000000" +"41659425","ARATA JAPANESE RESTAURANT.","1","1047","2 AVENUE","10022","2123718338","49","2012-11-23 00:00:00","D","04L","11","A","2012-11-23 00:00:00","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-09-24 00:00:00","F","04M","41","C","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2013-05-17 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2013-05-17 00:00:00","P","10H","18","","","2013-09-13 01:01:06.177000000" +"41643015","CUCUMBER SUSHI & SALAD BAR","5","5834","AMBOY ROAD","10309","7189661118","49","2012-06-09 00:00:00","P","02B","16","","","2013-09-13 01:01:06.177000000" +"41643015","CUCUMBER SUSHI & SALAD BAR","5","5834","AMBOY ROAD","10309","7189661118","49","2012-07-17 00:00:00","U","02G","24","B","2012-07-17 00:00:00","2013-09-13 01:01:06.177000000" +"41661008","AMURA JAPANESE RESTAURANT","1","1567","2ND AVE","10028","2127721688","49","2012-08-20 00:00:00","D","02B","10","A","2012-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41661008","AMURA JAPANESE RESTAURANT","1","1567","2ND AVE","10028","2127721688","49","2013-09-11 00:00:00","P","06E","23","","","2013-09-13 01:01:06.177000000" +"41653529","MERIT KABAB PALACE","4","3767 ","74TH ST ","11372","7183965827","09","2012-04-30 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41653529","MERIT KABAB PALACE","4","3767 ","74TH ST ","11372","7183965827","09","2012-04-30 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41643705","ZEN FUSION CUISINE","4","7928 ","PARSONS BOULEVARD ","11366","7185915555","49","2012-04-24 00:00:00","D","10A","4","","","2013-09-13 01:01:06.177000000" +"41661153","SAKURA IV","4","6419 ","MYRTLE AVENUE ","11385","7183667888","49","2012-05-21 00:00:00","U","08A","25","B","2012-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41661153","SAKURA IV","4","6419 ","MYRTLE AVENUE ","11385","7183667888","49","2013-01-23 00:00:00","P","02B","25","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2012-07-26 00:00:00","F","02G","34","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-02-13 00:00:00","F","04K","36","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-03-12 00:00:00","G","04M","57","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-03-12 00:00:00","G","06A","57","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-08-01 00:00:00","G","10F","64","","","2013-09-13 01:01:06.177000000" +"41670486","JAPAS 38","1","9","EAST 38 STREET","10016","2126794040","49","2013-05-09 00:00:00","F","10F","36","","","2013-09-13 01:01:06.177000000" +"41662152","TENDO SUSHI","4","6626 ","FRESH POND ROAD ","11385","7183810809","49","2012-08-31 00:00:00","U","10H","8","B","2012-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41662152","TENDO SUSHI","4","6626 ","FRESH POND ROAD ","11385","7183810809","49","2013-04-25 00:00:00","F","04C","51","","","2013-09-13 01:01:06.177000000" +"41662152","TENDO SUSHI","4","6626 ","FRESH POND ROAD ","11385","7183810809","49","2013-04-25 00:00:00","F","10F","51","","","2013-09-13 01:01:06.177000000" +"41662345","IRON SUSHI","1","212","EAST 10 STREET","10003","2122280102","49","2012-06-19 00:00:00","D","06D","13","A","2012-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"41662345","IRON SUSHI","1","212","EAST 10 STREET","10003","2122280102","49","2013-05-28 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"41661008","AMURA JAPANESE RESTAURANT","1","1567","2ND AVE","10028","2127721688","49","2012-08-09 00:00:00","P","03B","16","","","2013-09-13 01:01:06.177000000" +"41661008","AMURA JAPANESE RESTAURANT","1","1567","2ND AVE","10028","2127721688","49","2012-08-20 00:00:00","D","10F","10","A","2012-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41661008","AMURA JAPANESE RESTAURANT","1","1567","2ND AVE","10028","2127721688","49","2013-02-27 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2012-03-31 00:00:00","D","10B","6","A","2012-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2012-10-11 00:00:00","F","02B","38","","","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2012-10-11 00:00:00","F","06C","38","","","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2012-11-19 00:00:00","D","10F","10","A","2012-11-19 00:00:00","2013-09-13 01:01:06.177000000" +"41661153","SAKURA IV","4","6419 ","MYRTLE AVENUE ","11385","7183667888","49","2012-05-10 00:00:00","P","02B","25","","","2013-09-13 01:01:06.177000000" +"41661153","SAKURA IV","4","6419 ","MYRTLE AVENUE ","11385","7183667888","49","2013-01-23 00:00:00","P","06D","25","","","2013-09-13 01:01:06.177000000" +"41671938","YUSHI","1","100 ","MAIDEN LANE ","10038","2127422154","49","2013-04-23 00:00:00","F","02G","25","","","2013-09-13 01:01:06.177000000" +"41655483","JU FENG CHINESE FOOD","3","2809","NOSTRAND AVENUE","11229","7182529865","20","2012-09-27 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2012-03-12 00:00:00","F","06F","38","","","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2012-04-03 00:00:00","U","08A","19","B","2012-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2012-08-28 00:00:00","F","06F","38","","","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2013-05-21 00:00:00","F","10F","9","","","2013-09-13 01:01:06.177000000" +"41662152","TENDO SUSHI","4","6626 ","FRESH POND ROAD ","11385","7183810809","49","2012-05-21 00:00:00","D","08A","22","","","2013-09-13 01:01:06.177000000" +"41662152","TENDO SUSHI","4","6626 ","FRESH POND ROAD ","11385","7183810809","49","2012-08-13 00:00:00","P","02B","23","","","2013-09-13 01:01:06.177000000" +"41662152","TENDO SUSHI","4","6626 ","FRESH POND ROAD ","11385","7183810809","49","2012-08-31 00:00:00","U","04L","8","B","2012-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41662152","TENDO SUSHI","4","6626 ","FRESH POND ROAD ","11385","7183810809","49","2013-04-25 00:00:00","F","08A","51","","","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2012-06-09 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2012-06-19 00:00:00","U","06A","11","B","2012-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2013-08-27 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2012-10-12 00:00:00","F","10E","30","","","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2012-12-20 00:00:00","U","06D","11","B","2012-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2013-06-06 00:00:00","F","06C","32","","","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2012-12-14 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2013-08-10 00:00:00","F","02G","37","","","2013-09-13 01:01:06.177000000" +"41673139","SUSHI AVE X","3","241","AVENUE X","11223","7183759757","49","2013-05-18 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41673363","RAMEN SAMURAI BOY","4","8532","GRAND AVENUE","11373","7183962222","49","2012-06-21 00:00:00","D","10B","4","","","2013-09-13 01:01:06.177000000" +"41673363","RAMEN SAMURAI BOY","4","8532","GRAND AVENUE","11373","7183962222","49","2012-09-18 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"41673363","RAMEN SAMURAI BOY","4","8532","GRAND AVENUE","11373","7183962222","49","2012-10-01 00:00:00","U","04N","13","B","2012-10-01 00:00:00","2013-09-13 01:01:06.177000000" +"41645581","MATSU JAPANESE CUISINE","1","483","COLUMBUS AVENUE","10024","2127997922","49","2012-03-08 00:00:00","F","04L","14","","","2013-09-13 01:01:06.177000000" +"41645581","MATSU JAPANESE CUISINE","1","483","COLUMBUS AVENUE","10024","2127997922","49","2012-08-30 00:00:00","D","04K","12","A","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2013-01-17 00:00:00","P","10F","13","","","2013-09-13 01:01:06.177000000" +"41673363","RAMEN SAMURAI BOY","4","8532","GRAND AVENUE","11373","7183962222","49","2012-10-01 00:00:00","U","10F","13","B","2012-10-01 00:00:00","2013-09-13 01:01:06.177000000" +"41645944","INAKA","3","597 ","VANDERBILT AVENUE ","11238","7183988168","49","2012-07-12 00:00:00","D","06D","13","A","2012-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41657649","SEA KING","1","219","EAST 23 STREET","10010","2127253399","49","2012-06-25 00:00:00","P","10B","10","","","2013-09-13 01:01:06.177000000" +"41673993","GLAZE TERIYAKI GRILL","1","139","4 AVENUE","10003","2124209400","49","2012-08-22 00:00:00","D","08A","12","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-08-25 00:00:00","F","04H","104","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-08-25 00:00:00","F","06C","104","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-08-25 00:00:00","F","08A","104","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-09-22 00:00:00","G","06A","64","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-09-24 00:00:00","O","10F","3","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2013-01-28 00:00:00","F","06E","28","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2013-02-25 00:00:00","U","10H","18","B","2013-02-25 00:00:00","2013-09-13 01:01:06.177000000" +"41664798","TANOSHI","1","1372","YORK AVENUE","10021","6467279056","49","2013-02-13 00:00:00","P","04C","19","","","2013-09-13 01:01:06.177000000" +"41664973","NAPOLITANO","3","3009","AVENUE N","11210","7186922904","63","2012-08-23 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41658037","MIZU","1","29","EAST 20 STREET","10003","2125056687","49","2013-07-23 00:00:00","F","06C","37","","","2013-09-13 01:01:06.177000000" +"41674942","CAFE SUPREME","4","8838 ","SUTPHIN BLVD ","11435","7186581360","83","2013-03-18 00:00:00","G","08C","49","","","2013-09-13 01:01:06.177000000" +"41674942","CAFE SUPREME","4","8838 ","SUTPHIN BLVD ","11435","7186581360","83","2013-03-18 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41646498","GO GO CURRY","1","231","THOMPSON STREET","10012","2125052555","49","2012-04-04 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41646498","GO GO CURRY","1","231","THOMPSON STREET","10012","2125052555","49","2012-04-20 00:00:00","D","10F","2","A","2012-04-20 00:00:00","2013-09-13 01:01:06.177000000" +"41658579","GRAVITY LOUNGE","2","400","CLAREMONT PARKWAY","10457","7182942477","53","2012-08-16 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41658579","GRAVITY LOUNGE","2","400","CLAREMONT PARKWAY","10457","7182942477","53","2012-08-16 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41665733","374 DELI","1","374 ","8 AVNUE ","10001","2125637007","27","2012-08-06 00:00:00","F","04N","49","C","2012-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"41665733","374 DELI","1","374 ","8 AVNUE ","10001","2125637007","27","2012-08-06 00:00:00","F","08A","49","C","2012-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"41675589","AJI SUSHI HOUSE","4","3606 ","DITMARS BLVD ","11105","7187778885","49","2012-07-25 00:00:00","P","10B","21","","","2013-09-13 01:01:06.177000000" +"41675643","GINZA SUSHI","1","251","EAST 35 STREET","10016","2128893333","49","2012-08-30 00:00:00","U","09C","21","B","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41646919","LA PERRADA DE CHALO","4","8312 ","NORTHERN BOULEVARD ","11372","7189152130","53","2012-03-31 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41659425","ARATA JAPANESE RESTAURANT.","1","1047","2 AVENUE","10022","2123718338","49","2012-07-02 00:00:00","D","10F","6","","","2013-09-13 01:01:06.177000000" +"41659425","ARATA JAPANESE RESTAURANT.","1","1047","2 AVENUE","10022","2123718338","49","2012-10-17 00:00:00","F","06D","31","","","2013-09-13 01:01:06.177000000" +"41659425","ARATA JAPANESE RESTAURANT.","1","1047","2 AVENUE","10022","2123718338","49","2012-10-17 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41659425","ARATA JAPANESE RESTAURANT.","1","1047","2 AVENUE","10022","2123718338","49","2012-10-17 00:00:00","F","08B","31","","","2013-09-13 01:01:06.177000000" +"41659449","FUJI SUSHI","5","1115","HYLAN BOULEVARD","10305","7188160188","49","2012-05-01 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"41664555","SUSHI OF GARI","1","1 ","WEST 58 STREET ","10019","6467553230","49","2012-09-18 00:00:00","D","02G","7","A","2012-09-18 00:00:00","2013-09-13 01:01:06.177000000" +"41664798","TANOSHI","1","1372","YORK AVENUE","10021","6467279056","49","2013-02-13 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"41667390","KINGS TASTE OF ASTORIA","4","8406","ASTORIA BLVD","11370","7184269086","20","2012-06-16 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41659908","TENZAN SUSHI","3","7119 ","18TH AVE ","11204","7186213288","49","2012-06-20 00:00:00","D","06F","13","A","2012-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41668068","MARKIS PLACE","4","4403 ","30 AVENUE ","11103","9175683496","04","2013-06-04 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41677534","TOMO JAPANESE CAFE","4","8914 ","QUEENS BLVD ","11373","7188039799","49","2012-08-01 00:00:00","P","04L","11","","","2013-09-13 01:01:06.177000000" +"41677561","TOMO JAPANESE CUISINE","4","8612A ","37TH AVE ","11372","7182056222","49","2012-08-15 00:00:00","U","06F","20","B","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"41677561","TOMO JAPANESE CUISINE","4","8612A ","37TH AVE ","11372","7182056222","49","2012-08-15 00:00:00","U","09B","20","B","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"41665733","374 DELI","1","374 ","8 AVNUE ","10001","2125637007","27","2012-08-06 00:00:00","F","06D","49","C","2012-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"41661008","AMURA JAPANESE RESTAURANT","1","1567","2ND AVE","10028","2127721688","49","2013-02-27 00:00:00","P","10I","17","","","2013-09-13 01:01:06.177000000" +"41666608","27 SHINJUKU SUSHI INC","1","27","PARK PL","10007","2124067333","49","2012-05-22 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2012-07-26 00:00:00","F","02B","34","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-02-13 00:00:00","F","06A","36","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-03-12 00:00:00","G","04K","57","","","2013-09-13 01:01:06.177000000" +"41661153","SAKURA IV","4","6419 ","MYRTLE AVENUE ","11385","7183667888","49","2013-01-23 00:00:00","P","06F","25","","","2013-09-13 01:01:06.177000000" +"41667390","KINGS TASTE OF ASTORIA","4","8406","ASTORIA BLVD","11370","7184269086","20","2012-06-16 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41667390","KINGS TASTE OF ASTORIA","4","8406","ASTORIA BLVD","11370","7184269086","20","2012-06-16 00:00:00","G","10B","49","","","2013-09-13 01:01:06.177000000" +"41662152","TENDO SUSHI","4","6626 ","FRESH POND ROAD ","11385","7183810809","49","2012-08-13 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"41670486","JAPAS 38","1","9","EAST 38 STREET","10016","2126794040","49","2012-08-13 00:00:00","D","06E","11","A","2012-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41670486","JAPAS 38","1","9","EAST 38 STREET","10016","2126794040","49","2012-08-13 00:00:00","D","10F","11","A","2012-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41670534","Iron Sushi","1","355 ","EAST 78 STREET ","10075","2127727680","49","2013-08-26 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-08-25 00:00:00","F","08C","32","","","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-09-14 00:00:00","F","06D","73","C","2012-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2012-07-10 00:00:00","E","04M","49","","","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2012-07-10 00:00:00","E","08A","49","","","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2012-07-11 00:00:00","E","04M","63","","","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2012-03-28 00:00:00","G","10F","64","","","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2012-03-30 00:00:00","O","","","P","2012-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2012-04-30 00:00:00","U","06C","22","B","2012-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2012-07-26 00:00:00","F","10E","34","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2012-08-24 00:00:00","D","06C","12","A","2012-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2012-08-24 00:00:00","D","10B","12","A","2012-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-03-12 00:00:00","G","02G","57","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-03-12 00:00:00","G","06D","57","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-03-12 00:00:00","G","06E","57","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-03-12 00:00:00","G","08A","57","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-03-12 00:00:00","G","10H","57","","","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2012-07-11 00:00:00","E","08A","63","","","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2012-09-05 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2012-09-24 00:00:00","U","04M","11","B","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2012-09-24 00:00:00","U","08A","11","B","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2012-06-29 00:00:00","P","02B","11","","","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2013-03-20 00:00:00","U","09A","8","B","2013-03-20 00:00:00","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-07-13 00:00:00","F","02B","30","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-08-01 00:00:00","G","06C","64","","","2013-09-13 01:01:06.177000000" +"41680924","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","4","13336 ","WHITESTONE EXPRESSWAY ","11354","7183590810","49","2013-03-07 00:00:00","F","09C","30","","","2013-09-13 01:01:06.177000000" +"41672416","SARKU JAPAN","4","3721 ","JUNCTION BOULEVARD ","11368","7188988898","49","2012-10-04 00:00:00","E","10F","35","","","2013-09-13 01:01:06.177000000" +"41681373","HADO SUSHI","4","13840 ","86 AVENUE ","11435","7185585758","49","2012-09-06 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41681373","HADO SUSHI","4","13840 ","86 AVENUE ","11435","7185585758","49","2012-09-18 00:00:00","U","02B","25","B","2012-09-18 00:00:00","2013-09-13 01:01:06.177000000" +"41650782","BLUE RIBBON SUSHI IZAKAYA","1","187","ORCHARD STREET","10002","2124660404","49","2013-07-15 00:00:00","P","04N","13","","","2013-09-13 01:01:06.177000000" +"41670486","JAPAS 38","1","9","EAST 38 STREET","10016","2126794040","49","2013-05-09 00:00:00","F","06D","36","","","2013-09-13 01:01:06.177000000" +"41673363","RAMEN SAMURAI BOY","4","8532","GRAND AVENUE","11373","7183962222","49","2012-06-21 00:00:00","D","10F","4","","","2013-09-13 01:01:06.177000000" +"41664555","SUSHI OF GARI","1","1 ","WEST 58 STREET ","10019","6467553230","49","2012-05-22 00:00:00","D","04J","10","","","2013-09-13 01:01:06.177000000" +"41664555","SUSHI OF GARI","1","1 ","WEST 58 STREET ","10019","6467553230","49","2012-08-20 00:00:00","P","02G","9","","","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2013-05-21 00:00:00","F","02G","24","","","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2012-07-11 00:00:00","E","04L","63","","","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2013-04-23 00:00:00","F","04L","18","","","2013-09-13 01:01:06.177000000" +"41671639","ATHENS CAFE","4","3207 ","30TH AVE ","11102","7186262164","38","2012-06-25 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41664798","TANOSHI","1","1372","YORK AVENUE","10021","6467279056","49","2013-02-13 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"41664973","NAPOLITANO","3","3009","AVENUE N","11210","7186922904","63","2012-08-23 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-08-25 00:00:00","F","15L","","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-09-08 00:00:00","F","04H","25","C","2012-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-09-22 00:00:00","G","04H","64","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2013-01-28 00:00:00","F","06C","28","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2013-02-25 00:00:00","U","02B","18","B","2013-02-25 00:00:00","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2013-02-25 00:00:00","U","10A","18","B","2013-02-25 00:00:00","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2013-06-11 00:00:00","P","06F","25","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2013-06-11 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41682935","GANSO","3","25","BOND STREET","11201","7184030900","49","2012-09-21 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41682935","GANSO","3","25","BOND STREET","11201","7184030900","49","2012-10-09 00:00:00","D","06E","10","A","2012-10-09 00:00:00","2013-09-13 01:01:06.177000000" +"41672416","SARKU JAPAN","4","3721 ","JUNCTION BOULEVARD ","11368","7188988898","49","2012-10-04 00:00:00","E","06C","35","","","2013-09-13 01:01:06.177000000" +"41674961","MAMA JOY'S","3","1084","FLUSHING AVENUE","11237","3472952227","03","2013-08-29 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41674961","MAMA JOY'S","3","1084","FLUSHING AVENUE","11237","3472952227","03","2013-08-29 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41665733","374 DELI","1","374 ","8 AVNUE ","10001","2125637007","27","2012-08-06 00:00:00","F","06C","49","C","2012-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"41684379","SOBA TOTTO","1","211","EAST 43 STREET","10017","2125578200","49","2012-09-21 00:00:00","P","04N","10","","","2013-09-13 01:01:06.177000000" +"41684379","SOBA TOTTO","1","211","EAST 43 STREET","10017","2125578200","49","2012-11-26 00:00:00","F","02B","53","C","2012-11-26 00:00:00","2013-09-13 01:01:06.177000000" +"41684379","SOBA TOTTO","1","211","EAST 43 STREET","10017","2125578200","49","2013-06-19 00:00:00","F","02G","15","","","2013-09-13 01:01:06.177000000" +"41684533","MALINGO RESTAURANT & BAR","4","43-16","QUEENS BOULEVARD","11104","3478088100","49","2012-10-04 00:00:00","U","02G","16","B","2012-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41684533","MALINGO RESTAURANT & BAR","4","43-16","QUEENS BOULEVARD","11104","3478088100","49","2013-06-21 00:00:00","F","04H","20","","","2013-09-13 01:01:06.177000000" +"41652500","NEW MADO JAPANESE RESTAURANT LLC","4","9516A ","QUEENS BLVD ","11374","7188964000","49","2013-05-04 00:00:00","P","06D","18","","","2013-09-13 01:01:06.177000000" +"41673139","SUSHI AVE X","3","241","AVENUE X","11223","7183759757","49","2012-07-02 00:00:00","P","06D","24","","","2013-09-13 01:01:06.177000000" +"41673139","SUSHI AVE X","3","241","AVENUE X","11223","7183759757","49","2012-07-02 00:00:00","P","10B","24","","","2013-09-13 01:01:06.177000000" +"41673363","RAMEN SAMURAI BOY","4","8532","GRAND AVENUE","11373","7183962222","49","2012-09-18 00:00:00","P","04L","20","","","2013-09-13 01:01:06.177000000" +"41673363","RAMEN SAMURAI BOY","4","8532","GRAND AVENUE","11373","7183962222","49","2013-05-24 00:00:00","F","02G","18","","","2013-09-13 01:01:06.177000000" +"41673363","RAMEN SAMURAI BOY","4","8532","GRAND AVENUE","11373","7183962222","49","2013-05-24 00:00:00","F","06F","18","","","2013-09-13 01:01:06.177000000" +"41675589","AJI SUSHI HOUSE","4","3606 ","DITMARS BLVD ","11105","7187778885","49","2012-08-07 00:00:00","U","08A","14","B","2012-08-07 00:00:00","2013-09-13 01:01:06.177000000" +"41673993","GLAZE TERIYAKI GRILL","1","139","4 AVENUE","10003","2124209400","49","2012-08-22 00:00:00","D","04K","12","","","2013-09-13 01:01:06.177000000" +"41675643","GINZA SUSHI","1","251","EAST 35 STREET","10016","2128893333","49","2012-08-30 00:00:00","U","06C","21","B","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41675643","GINZA SUSHI","1","251","EAST 35 STREET","10016","2128893333","49","2012-08-30 00:00:00","U","08A","21","B","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-08-25 00:00:00","F","04L","104","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-08-25 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-09-22 00:00:00","G","02G","64","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-09-22 00:00:00","G","06C","64","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2013-06-11 00:00:00","P","04C","25","","","2013-09-13 01:01:06.177000000" +"41676490","AOYU SUSHI","2","3532A","JOHNSON AVENUE","10463","7188846633","49","2013-08-21 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41668068","MARKIS PLACE","4","4403 ","30 AVENUE ","11103","9175683496","04","2013-06-04 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41674942","CAFE SUPREME","4","8838 ","SUTPHIN BLVD ","11435","7186581360","83","2013-03-18 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41686748","AABI SUSHI","1","536","3 AVENUE","10016","2125826180","49","2012-09-07 00:00:00","F","10F","14","","","2013-09-13 01:01:06.177000000" +"41686748","AABI SUSHI","1","536","3 AVENUE","10016","2125826180","49","2012-09-20 00:00:00","U","02G","16","B","2012-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41653940","SUSHI SUKI YORKER","1","1577","YORK AVENUE","10028","2122493766","49","2013-05-07 00:00:00","F","02B","19","","","2013-09-13 01:01:06.177000000" +"41675589","AJI SUSHI HOUSE","4","3606 ","DITMARS BLVD ","11105","7187778885","49","2012-08-07 00:00:00","U","04L","14","B","2012-08-07 00:00:00","2013-09-13 01:01:06.177000000" +"41677309","ATAMI JAPANESE FUSION","1","1167","2ND AVE","10065","2126886868","49","2012-07-11 00:00:00","D","10H","2","","","2013-09-13 01:01:06.177000000" +"41677309","ATAMI JAPANESE FUSION","1","1167","2ND AVE","10065","2126886868","49","2012-08-15 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2012-07-26 00:00:00","F","04M","34","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2012-07-26 00:00:00","F","06B","34","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2012-07-26 00:00:00","F","10F","34","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2012-08-24 00:00:00","D","06D","12","A","2012-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-08-01 00:00:00","G","04A","64","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-08-01 00:00:00","G","08A","64","","","2013-09-13 01:01:06.177000000" +"41654379","CLUB MAX","1","238","EAST 53 STREET","10022","2126885120","49","2013-02-13 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"41654379","CLUB MAX","1","238","EAST 53 STREET","10022","2126885120","49","2013-02-13 00:00:00","P","10E","22","","","2013-09-13 01:01:06.177000000" +"41675643","GINZA SUSHI","1","251","EAST 35 STREET","10016","2128893333","49","2012-08-30 00:00:00","U","10B","21","B","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41677309","ATAMI JAPANESE FUSION","1","1167","2ND AVE","10065","2126886868","49","2012-08-30 00:00:00","D","10B","2","A","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41677534","TOMO JAPANESE CAFE","4","8914 ","QUEENS BLVD ","11373","7188039799","49","2013-05-04 00:00:00","F","06A","47","","","2013-09-13 01:01:06.177000000" +"41677534","TOMO JAPANESE CAFE","4","8914 ","QUEENS BLVD ","11373","7188039799","49","2013-05-04 00:00:00","F","06B","47","","","2013-09-13 01:01:06.177000000" +"41677561","TOMO JAPANESE CUISINE","4","8612A ","37TH AVE ","11372","7182056222","49","2012-08-15 00:00:00","U","02G","20","B","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"41677561","TOMO JAPANESE CUISINE","4","8612A ","37TH AVE ","11372","7182056222","49","2012-08-15 00:00:00","U","06A","20","B","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"41677561","TOMO JAPANESE CUISINE","4","8612A ","37TH AVE ","11372","7182056222","49","2013-04-23 00:00:00","F","04H","29","","","2013-09-13 01:01:06.177000000" +"41687410","ANI SUSHI","3","142","MONTAGUE STREET","11201","7189231800","49","2013-03-12 00:00:00","P","04H","22","","","2013-09-13 01:01:06.177000000" +"41687410","ANI SUSHI","3","142","MONTAGUE STREET","11201","7189231800","49","2013-03-12 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41654886","RAI RAI KEN","1","218","EAST 10 STREET","10003","2124777030","49","2012-06-14 00:00:00","P","04L","9","","","2013-09-13 01:01:06.177000000" +"41654886","RAI RAI KEN","1","218","EAST 10 STREET","10003","2124777030","49","2012-06-28 00:00:00","U","08A","12","B","2012-06-28 00:00:00","2013-09-13 01:01:06.177000000" +"41670486","JAPAS 38","1","9","EAST 38 STREET","10016","2126794040","49","2012-07-30 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41670486","JAPAS 38","1","9","EAST 38 STREET","10016","2126794040","49","2013-05-09 00:00:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"41670486","JAPAS 38","1","9","EAST 38 STREET","10016","2126794040","49","2013-05-09 00:00:00","F","06C","36","","","2013-09-13 01:01:06.177000000" +"41670486","JAPAS 38","1","9","EAST 38 STREET","10016","2126794040","49","2013-05-09 00:00:00","F","06F","36","","","2013-09-13 01:01:06.177000000" +"41670534","Iron Sushi","1","355 ","EAST 78 STREET ","10075","2127727680","49","2013-08-26 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"41688151","RAMEN YEBISU","3","126 ","NORTH 6 STREET ","11249","7187821444","49","2012-08-30 00:00:00","D","10H","4","","","2013-09-13 01:01:06.177000000" +"41677309","ATAMI JAPANESE FUSION","1","1167","2ND AVE","10065","2126886868","49","2012-08-15 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41688363","KOI SOHO","1","246","SPRING STREET","10013","2128424550","49","2012-08-31 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41655483","JU FENG CHINESE FOOD","3","2809","NOSTRAND AVENUE","11229","7182529865","20","2012-09-27 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41677561","TOMO JAPANESE CUISINE","4","8612A ","37TH AVE ","11372","7182056222","49","2012-08-07 00:00:00","P","02B","14","","","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-08-25 00:00:00","F","06E","32","","","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-09-14 00:00:00","F","06B","73","C","2012-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2013-05-11 00:00:00","F","02G","53","","","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2012-07-11 00:00:00","E","05F","63","","","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2012-09-05 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-01-08 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-02-19 00:00:00","D","10F","11","A","2013-02-19 00:00:00","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-07-25 00:00:00","P","10A","22","","","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-07-25 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"41671938","YUSHI","1","100 ","MAIDEN LANE ","10038","2127422154","49","2012-09-11 00:00:00","P","03A","27","","","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2012-06-09 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2012-12-22 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2012-12-22 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2012-10-12 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2012-10-12 00:00:00","F","06D","30","","","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2012-10-12 00:00:00","F","06E","30","","","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2012-12-20 00:00:00","U","04L","11","B","2012-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2013-08-10 00:00:00","F","04K","37","","","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2013-08-10 00:00:00","F","10F","37","","","2013-09-13 01:01:06.177000000" +"41689903","NAGOYA","3","1948","86TH ST","11214","7189758889","49","2012-10-03 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41689903","NAGOYA","3","1948","86TH ST","11214","7189758889","49","2013-07-02 00:00:00","P","05D","26","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2012-06-12 00:00:00","F","02G","80","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2012-06-12 00:00:00","F","06E","80","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2013-01-17 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-08-25 00:00:00","F","06F","32","","","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-08-25 00:00:00","F","10G","32","","","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-09-14 00:00:00","F","04L","73","C","2012-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2013-05-11 00:00:00","F","08A","53","","","2013-09-13 01:01:06.177000000" +"41680924","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","4","13336 ","WHITESTONE EXPRESSWAY ","11354","7183590810","49","2012-08-07 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41681082","J R SUSHI","1","86A ","WEST BROADWAY ","10007","2122338338","49","2013-04-09 00:00:00","F","02H","36","","","2013-09-13 01:01:06.177000000" +"41673139","SUSHI AVE X","3","241","AVENUE X","11223","7183759757","49","2013-05-18 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"41673363","RAMEN SAMURAI BOY","4","8532","GRAND AVENUE","11373","7183962222","49","2013-05-24 00:00:00","F","06E","18","","","2013-09-13 01:01:06.177000000" +"41673993","GLAZE TERIYAKI GRILL","1","139","4 AVENUE","10003","2124209400","49","2012-08-22 00:00:00","D","10A","12","","","2013-09-13 01:01:06.177000000" +"41681373","HADO SUSHI","4","13840 ","86 AVENUE ","11435","7185585758","49","2012-09-06 00:00:00","P","06F","25","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-08-25 00:00:00","F","04C","104","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-08-25 00:00:00","F","06A","104","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-08-25 00:00:00","F","06B","104","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-09-22 00:00:00","G","04A","64","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-09-22 00:00:00","G","06D","64","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2013-02-25 00:00:00","U","04C","18","B","2013-02-25 00:00:00","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2013-06-11 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41658037","MIZU","1","29","EAST 20 STREET","10003","2125056687","49","2013-07-23 00:00:00","F","04L","37","","","2013-09-13 01:01:06.177000000" +"41680924","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","4","13336 ","WHITESTONE EXPRESSWAY ","11354","7183590810","49","2012-08-07 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41680924","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","4","13336 ","WHITESTONE EXPRESSWAY ","11354","7183590810","49","2013-03-07 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"41680924","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","4","13336 ","WHITESTONE EXPRESSWAY ","11354","7183590810","49","2013-03-07 00:00:00","F","06D","30","","","2013-09-13 01:01:06.177000000" +"41680924","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","4","13336 ","WHITESTONE EXPRESSWAY ","11354","7183590810","49","2013-03-07 00:00:00","F","09B","30","","","2013-09-13 01:01:06.177000000" +"41681082","J R SUSHI","1","86A ","WEST BROADWAY ","10007","2122338338","49","2013-04-09 00:00:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"41674942","CAFE SUPREME","4","8838 ","SUTPHIN BLVD ","11435","7186581360","83","2013-03-18 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41674961","MAMA JOY'S","3","1084","FLUSHING AVENUE","11237","3472952227","03","2013-08-29 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41674961","MAMA JOY'S","3","1084","FLUSHING AVENUE","11237","3472952227","03","2013-08-29 00:00:00","F","04K","49","","","2013-09-13 01:01:06.177000000" +"41674961","MAMA JOY'S","3","1084","FLUSHING AVENUE","11237","3472952227","03","2013-08-29 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41674961","MAMA JOY'S","3","1084","FLUSHING AVENUE","11237","3472952227","03","2013-08-29 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"41692187","RED MOON","1","132","WEST 45 STREET","10036","2123916666","49","2012-09-06 00:00:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"41692187","RED MOON","1","132","WEST 45 STREET","10036","2123916666","49","2012-09-06 00:00:00","F","04L","29","","","2013-09-13 01:01:06.177000000" +"41692187","RED MOON","1","132","WEST 45 STREET","10036","2123916666","49","2012-09-24 00:00:00","D","10B","12","A","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41675643","GINZA SUSHI","1","251","EAST 35 STREET","10016","2128893333","49","2012-07-16 00:00:00","P","04M","25","","","2013-09-13 01:01:06.177000000" +"41675643","GINZA SUSHI","1","251","EAST 35 STREET","10016","2128893333","49","2012-07-16 00:00:00","P","08C","25","","","2013-09-13 01:01:06.177000000" +"41659425","ARATA JAPANESE RESTAURANT.","1","1047","2 AVENUE","10022","2123718338","49","2013-05-10 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41676490","AOYU SUSHI","2","3532A","JOHNSON AVENUE","10463","7188846633","49","2013-08-21 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41659449","FUJI SUSHI","5","1115","HYLAN BOULEVARD","10305","7188160188","49","2012-05-01 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41659449","FUJI SUSHI","5","1115","HYLAN BOULEVARD","10305","7188160188","49","2012-05-09 00:00:00","F","04C","19","C","2012-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41659449","FUJI SUSHI","5","1115","HYLAN BOULEVARD","10305","7188160188","49","2012-05-09 00:00:00","F","10F","19","C","2012-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41659449","FUJI SUSHI","5","1115","HYLAN BOULEVARD","10305","7188160188","49","2012-05-29 00:00:00","C","06C","6","","","2013-09-13 01:01:06.177000000" +"41684379","SOBA TOTTO","1","211","EAST 43 STREET","10017","2125578200","49","2012-09-21 00:00:00","P","10F","10","","","2013-09-13 01:01:06.177000000" +"41684379","SOBA TOTTO","1","211","EAST 43 STREET","10017","2125578200","49","2012-12-20 00:00:00","C","06E","12","","","2013-09-13 01:01:06.177000000" +"41684533","MALINGO RESTAURANT & BAR","4","43-16","QUEENS BOULEVARD","11104","3478088100","49","2012-10-04 00:00:00","U","04L","16","B","2012-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41659908","TENZAN SUSHI","3","7119 ","18TH AVE ","11204","7186213288","49","2012-06-20 00:00:00","D","10F","13","A","2012-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41659908","TENZAN SUSHI","3","7119 ","18TH AVE ","11204","7186213288","49","2013-06-04 00:00:00","P","04N","12","","","2013-09-13 01:01:06.177000000" +"41659908","TENZAN SUSHI","3","7119 ","18TH AVE ","11204","7186213288","49","2013-06-04 00:00:00","P","10B","12","","","2013-09-13 01:01:06.177000000" +"41682935","GANSO","3","25","BOND STREET","11201","7184030900","49","2012-10-09 00:00:00","D","06B","10","A","2012-10-09 00:00:00","2013-09-13 01:01:06.177000000" +"41685002","NEW PUNJAB RESTAURANT & GRILL","3","691","CONEY ISLAND AVE","11218","7188566207","59","2012-10-19 00:00:00","F","04A","49","C","2012-10-19 00:00:00","2013-09-13 01:01:06.177000000" +"41677309","ATAMI JAPANESE FUSION","1","1167","2ND AVE","10065","2126886868","49","2012-08-15 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41677534","TOMO JAPANESE CAFE","4","8914 ","QUEENS BLVD ","11373","7188039799","49","2012-09-17 00:00:00","D","10B","13","A","2012-09-17 00:00:00","2013-09-13 01:01:06.177000000" +"41677534","TOMO JAPANESE CAFE","4","8914 ","QUEENS BLVD ","11373","7188039799","49","2013-05-04 00:00:00","F","06F","47","","","2013-09-13 01:01:06.177000000" +"41694966","SHINJUKU","3","1664","SHEEPSHEAD BAY ROAD","11235","7189344273","49","2013-03-25 00:00:00","F","06F","34","","","2013-09-13 01:01:06.177000000" +"41694966","SHINJUKU","3","1664","SHEEPSHEAD BAY ROAD","11235","7189344273","49","2013-08-15 00:00:00","P","09C","19","","","2013-09-13 01:01:06.177000000" +"41661153","SAKURA IV","4","6419 ","MYRTLE AVENUE ","11385","7183667888","49","2012-05-21 00:00:00","U","04L","25","B","2012-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"41684533","MALINGO RESTAURANT & BAR","4","43-16","QUEENS BOULEVARD","11104","3478088100","49","2012-09-19 00:00:00","P","10B","7","","","2013-09-13 01:01:06.177000000" +"41686748","AABI SUSHI","1","536","3 AVENUE","10016","2125826180","49","2013-03-08 00:00:00","P","04L","14","","","2013-09-13 01:01:06.177000000" +"41695327","KIMCHAYUL B.B.Q.","4","41-22","162 STREET","11358","7188869292","52","2012-12-26 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41695327","KIMCHAYUL B.B.Q.","4","41-22","162 STREET","11358","7188869292","52","2012-12-26 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41662152","TENDO SUSHI","4","6626 ","FRESH POND ROAD ","11385","7183810809","49","2013-04-25 00:00:00","F","04M","51","","","2013-09-13 01:01:06.177000000" +"41685002","NEW PUNJAB RESTAURANT & GRILL","3","691","CONEY ISLAND AVE","11218","7188566207","59","2012-10-19 00:00:00","F","06D","49","C","2012-10-19 00:00:00","2013-09-13 01:01:06.177000000" +"41679060","E-CHIBAN SUSHI JAPANESE RESTAURANT","4","6647 ","FRESH POND ROAD ","11385","7183868333","49","2012-07-23 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"41679060","E-CHIBAN SUSHI JAPANESE RESTAURANT","4","6647 ","FRESH POND ROAD ","11385","7183868333","49","2012-07-23 00:00:00","P","06D","17","","","2013-09-13 01:01:06.177000000" +"41695477","GHOROA RESTAURANT","4","168-41","HILLSIDE AVENUE","11432","7186571000","09","2013-03-23 00:00:00","G","06E","49","","","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-09-14 00:00:00","F","04C","73","C","2012-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-10-16 00:00:00","U","04H","15","","","2013-09-13 01:01:06.177000000" +"41688151","RAMEN YEBISU","3","126 ","NORTH 6 STREET ","11249","7187821444","49","2012-11-13 00:00:00","P","06B","15","","","2013-09-13 01:01:06.177000000" +"41688151","RAMEN YEBISU","3","126 ","NORTH 6 STREET ","11249","7187821444","49","2013-06-20 00:00:00","F","10B","18","","","2013-09-13 01:01:06.177000000" +"41686748","AABI SUSHI","1","536","3 AVENUE","10016","2125826180","49","2012-09-07 00:00:00","F","06E","14","","","2013-09-13 01:01:06.177000000" +"41686748","AABI SUSHI","1","536","3 AVENUE","10016","2125826180","49","2013-03-08 00:00:00","P","08A","14","","","2013-09-13 01:01:06.177000000" +"41688777","Q AND N DELI FOOD","4","230-59 ","INTL AIRPORT CENTER BLVD ","11413","7189178928","03","2013-02-11 00:00:00","W","10B","49","","","2013-09-13 01:01:06.177000000" +"41688797","RIVER JAPANESE RESTAURANT","4","37-18 ","MAIN ST ","11354","7188869880","49","2013-04-24 00:00:00","P","02B","18","","","2013-09-13 01:01:06.177000000" +"41696981","JIN SUSHI","1","252","BROOME STREET","10002","2129790989","49","2012-12-19 00:00:00","P","04C","15","","","2013-09-13 01:01:06.177000000" +"41687410","ANI SUSHI","3","142","MONTAGUE STREET","11201","7189231800","49","2013-03-12 00:00:00","P","09C","22","","","2013-09-13 01:01:06.177000000" +"41680924","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","4","13336 ","WHITESTONE EXPRESSWAY ","11354","7183590810","49","2012-07-27 00:00:00","D","10F","2","","","2013-09-13 01:01:06.177000000" +"41680924","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","4","13336 ","WHITESTONE EXPRESSWAY ","11354","7183590810","49","2012-08-22 00:00:00","D","10F","5","A","2012-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41680924","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","4","13336 ","WHITESTONE EXPRESSWAY ","11354","7183590810","49","2013-03-07 00:00:00","F","06C","30","","","2013-09-13 01:01:06.177000000" +"41681082","J R SUSHI","1","86A ","WEST BROADWAY ","10007","2122338338","49","2012-08-24 00:00:00","U","04C","7","B","2012-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"41688797","RIVER JAPANESE RESTAURANT","4","37-18 ","MAIN ST ","11354","7188869880","49","2013-04-24 00:00:00","P","10B","18","","","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-01-08 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41688151","RAMEN YEBISU","3","126 ","NORTH 6 STREET ","11249","7187821444","49","2012-11-13 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41688151","RAMEN YEBISU","3","126 ","NORTH 6 STREET ","11249","7187821444","49","2013-01-10 00:00:00","D","06F","7","A","2013-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41689884","NAGOYA SUSHI","3","1907","KINGS HIGHWAY","11229","7183363688","49","2013-07-20 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41689903","NAGOYA","3","1948","86TH ST","11214","7189758889","49","2013-07-02 00:00:00","P","10B","26","","","2013-09-13 01:01:06.177000000" +"41698000","KARAOKE DUET 48","1","304","EAST 48 STREET","10017","2127530030","49","2013-06-06 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"41664973","NAPOLITANO","3","3009","AVENUE N","11210","7186922904","63","2012-08-23 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41681373","HADO SUSHI","4","13840 ","86 AVENUE ","11435","7185585758","49","2012-09-18 00:00:00","U","04L","25","B","2012-09-18 00:00:00","2013-09-13 01:01:06.177000000" +"41688777","Q AND N DELI FOOD","4","230-59 ","INTL AIRPORT CENTER BLVD ","11413","7189178928","03","2013-02-11 00:00:00","W","04M","49","","","2013-09-13 01:01:06.177000000" +"41688777","Q AND N DELI FOOD","4","230-59 ","INTL AIRPORT CENTER BLVD ","11413","7189178928","03","2013-02-11 00:00:00","W","08C","49","","","2013-09-13 01:01:06.177000000" +"41688777","Q AND N DELI FOOD","4","230-59 ","INTL AIRPORT CENTER BLVD ","11413","7189178928","03","2013-02-11 00:00:00","W","10F","49","","","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-01-08 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41690686","AJI 18","1","208","3 AVENUE","10003","2126776921","49","2012-11-21 00:00:00","U","06E","17","B","2012-11-21 00:00:00","2013-09-13 01:01:06.177000000" +"41690686","AJI 18","1","208","3 AVENUE","10003","2126776921","49","2012-11-21 00:00:00","U","10F","17","B","2012-11-21 00:00:00","2013-09-13 01:01:06.177000000" +"41690686","AJI 18","1","208","3 AVENUE","10003","2126776921","49","2013-06-24 00:00:00","F","02G","19","","","2013-09-13 01:01:06.177000000" +"41690686","AJI 18","1","208","3 AVENUE","10003","2126776921","49","2013-06-24 00:00:00","F","08A","19","","","2013-09-13 01:01:06.177000000" +"41689018","COCORON","1","37 ","KENMARE STREET ","10012","2129660800","49","2012-09-04 00:00:00","D","06C","8","","","2013-09-13 01:01:06.177000000" +"41689018","COCORON","1","37 ","KENMARE STREET ","10012","2129660800","49","2012-09-04 00:00:00","D","10A","8","","","2013-09-13 01:01:06.177000000" +"41682935","GANSO","3","25","BOND STREET","11201","7184030900","49","2012-09-21 00:00:00","P","02B","16","","","2013-09-13 01:01:06.177000000" +"41666608","27 SHINJUKU SUSHI INC","1","27","PARK PL","10007","2124067333","49","2012-05-22 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"41689884","NAGOYA SUSHI","3","1907","KINGS HIGHWAY","11229","7183363688","49","2012-09-13 00:00:00","P","04M","7","","","2013-09-13 01:01:06.177000000" +"41689903","NAGOYA","3","1948","86TH ST","11214","7189758889","49","2013-01-09 00:00:00","P","04C","21","","","2013-09-13 01:01:06.177000000" +"41692187","RED MOON","1","132","WEST 45 STREET","10036","2123916666","49","2012-09-24 00:00:00","D","05D","12","A","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41699653","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","1","121","WEST 125 STREET","10027","6312437700","49","2013-03-21 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"41684379","SOBA TOTTO","1","211","EAST 43 STREET","10017","2125578200","49","2012-11-26 00:00:00","F","08A","53","C","2012-11-26 00:00:00","2013-09-13 01:01:06.177000000" +"41690686","AJI 18","1","208","3 AVENUE","10003","2126776921","49","2012-11-21 00:00:00","U","08A","17","B","2012-11-21 00:00:00","2013-09-13 01:01:06.177000000" +"41684533","MALINGO RESTAURANT & BAR","4","43-16","QUEENS BOULEVARD","11104","3478088100","49","2012-09-19 00:00:00","P","06E","7","","","2013-09-13 01:01:06.177000000" +"41667390","KINGS TASTE OF ASTORIA","4","8406","ASTORIA BLVD","11370","7184269086","20","2012-06-16 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-02-13 00:00:00","U","06E","7","B","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-07-22 00:00:00","G","04C","64","","","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-07-22 00:00:00","G","05D","64","","","2013-09-13 01:01:06.177000000" +"41694079","NEW CHINA GARDEN RESTAURANT","5","531","TARGEE STREET","10304","7188168109","20","2013-08-22 00:00:00","G","02B","49","","","2013-09-13 01:01:06.177000000" +"41694079","NEW CHINA GARDEN RESTAURANT","5","531","TARGEE STREET","10304","7188168109","20","2013-08-22 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41694079","NEW CHINA GARDEN RESTAURANT","5","531","TARGEE STREET","10304","7188168109","20","2013-08-22 00:00:00","G","10B","49","","","2013-09-13 01:01:06.177000000" +"41694442","BAMBOOTORI","1","106","UNIVERSITY PLACE","10003","2122555152","49","2012-11-30 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41694442","BAMBOOTORI","1","106","UNIVERSITY PLACE","10003","2122555152","49","2013-02-06 00:00:00","D","04L","12","A","2013-02-06 00:00:00","2013-09-13 01:01:06.177000000" +"41686748","AABI SUSHI","1","536","3 AVENUE","10016","2125826180","49","2012-09-20 00:00:00","U","10F","16","B","2012-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41694966","SHINJUKU","3","1664","SHEEPSHEAD BAY ROAD","11235","7189344273","49","2013-03-25 00:00:00","F","06D","34","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2012-07-26 00:00:00","F","08A","34","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-02-13 00:00:00","F","02B","36","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-02-13 00:00:00","F","06C","36","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-07-13 00:00:00","F","06F","30","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-08-01 00:00:00","G","04C","64","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-08-01 00:00:00","G","04M","64","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-08-01 00:00:00","G","06A","64","","","2013-09-13 01:01:06.177000000" +"41695453","HAPPY FORTUNE RESTAURANT (NY)","1","96","BOWERY","10013","2122191993","49","2013-01-02 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41695453","HAPPY FORTUNE RESTAURANT (NY)","1","96","BOWERY","10013","2122191993","49","2013-09-11 00:00:00","F","05H","31","","","2013-09-13 01:01:06.177000000" +"41688151","RAMEN YEBISU","3","126 ","NORTH 6 STREET ","11249","7187821444","49","2013-06-20 00:00:00","F","04H","18","","","2013-09-13 01:01:06.177000000" +"41694442","BAMBOOTORI","1","106","UNIVERSITY PLACE","10003","2122555152","49","2012-11-30 00:00:00","P","04L","15","","","2013-09-13 01:01:06.177000000" +"41694442","BAMBOOTORI","1","106","UNIVERSITY PLACE","10003","2122555152","49","2012-11-30 00:00:00","P","09C","15","","","2013-09-13 01:01:06.177000000" +"41694442","BAMBOOTORI","1","106","UNIVERSITY PLACE","10003","2122555152","49","2013-07-02 00:00:00","F","05D","29","","","2013-09-13 01:01:06.177000000" +"41670486","JAPAS 38","1","9","EAST 38 STREET","10016","2126794040","49","2012-07-30 00:00:00","P","02B","26","","","2013-09-13 01:01:06.177000000" +"41670486","JAPAS 38","1","9","EAST 38 STREET","10016","2126794040","49","2012-07-30 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"41670486","JAPAS 38","1","9","EAST 38 STREET","10016","2126794040","49","2012-08-13 00:00:00","D","10H","11","A","2012-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41670513","NEW HAN YANG SUSHI","4","15051 ","NORTHERN BOULEVARD ","11354","7188866678","49","2012-07-12 00:00:00","P","02G","14","","","2013-09-13 01:01:06.177000000" +"41694966","SHINJUKU","3","1664","SHEEPSHEAD BAY ROAD","11235","7189344273","49","2013-03-25 00:00:00","F","10A","34","","","2013-09-13 01:01:06.177000000" +"41694966","SHINJUKU","3","1664","SHEEPSHEAD BAY ROAD","11235","7189344273","49","2013-04-01 00:00:00","U","04J","20","B","2013-04-01 00:00:00","2013-09-13 01:01:06.177000000" +"41695327","KIMCHAYUL B.B.Q.","4","41-22","162 STREET","11358","7188869292","52","2012-12-26 00:00:00","F","10E","49","","","2013-09-13 01:01:06.177000000" +"41688777","Q AND N DELI FOOD","4","230-59 ","INTL AIRPORT CENTER BLVD ","11413","7189178928","03","2013-02-11 00:00:00","W","04N","49","","","2013-09-13 01:01:06.177000000" +"41688797","RIVER JAPANESE RESTAURANT","4","37-18 ","MAIN ST ","11354","7188869880","49","2012-09-20 00:00:00","P","10F","12","","","2013-09-13 01:01:06.177000000" +"41688797","RIVER JAPANESE RESTAURANT","4","37-18 ","MAIN ST ","11354","7188869880","49","2013-04-24 00:00:00","P","06D","18","","","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-01-08 00:00:00","F","02H","49","","","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-02-19 00:00:00","D","10B","11","A","2013-02-19 00:00:00","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-07-25 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41702601","KOSHER YAMA SUSHI","4","81-63 ","LEFFERTS BOULEVARD ","11415","7188801750","49","2013-02-07 00:00:00","F","02B","24","","","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2012-07-10 00:00:00","E","02G","49","","","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2012-07-11 00:00:00","E","02G","63","","","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2012-07-11 00:00:00","E","06D","63","","","2013-09-13 01:01:06.177000000" +"41695453","HAPPY FORTUNE RESTAURANT (NY)","1","96","BOWERY","10013","2122191993","49","2013-09-11 00:00:00","F","06F","31","","","2013-09-13 01:01:06.177000000" +"41695477","GHOROA RESTAURANT","4","168-41","HILLSIDE AVENUE","11432","7186571000","09","2013-03-23 00:00:00","G","06A","49","","","2013-09-13 01:01:06.177000000" +"41695477","GHOROA RESTAURANT","4","168-41","HILLSIDE AVENUE","11432","7186571000","09","2013-03-23 00:00:00","G","06B","49","","","2013-09-13 01:01:06.177000000" +"41702877","THE LOOP","1","173","3 AVENUE","10003","2125891200","49","2013-03-05 00:00:00","U","15I","","","","2013-09-13 01:01:06.177000000" +"41689884","NAGOYA SUSHI","3","1907","KINGS HIGHWAY","11229","7183363688","49","2012-12-20 00:00:00","U","06A","10","B","2012-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41689884","NAGOYA SUSHI","3","1907","KINGS HIGHWAY","11229","7183363688","49","2012-12-20 00:00:00","U","06B","10","B","2012-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41696981","JIN SUSHI","1","252","BROOME STREET","10002","2129790989","49","2012-12-19 00:00:00","P","04N","15","","","2013-09-13 01:01:06.177000000" +"41671639","ATHENS CAFE","4","3207 ","30TH AVE ","11102","7186262164","38","2012-06-25 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41671938","YUSHI","1","100 ","MAIDEN LANE ","10038","2127422154","49","2012-09-11 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"41695897","CAFE BOULIS","4","30-15 ","31 AVENUE ","11106","7188061014","14","2012-10-10 00:00:00","E","06C","49","","","2013-09-13 01:01:06.177000000" +"41703229","SAKE BAR SATSKO","1","202","EAST 7 STREET","10009","2126140933","49","2013-03-26 00:00:00","F","04N","26","","","2013-09-13 01:01:06.177000000" +"41703229","SAKE BAR SATSKO","1","202","EAST 7 STREET","10009","2126140933","49","2013-03-26 00:00:00","F","08C","26","","","2013-09-13 01:01:06.177000000" +"41703235","CHEZ SARDINE","1","183","WEST 10 STREET","10014","6463603705","49","2013-03-05 00:00:00","F","04C","28","","","2013-09-13 01:01:06.177000000" +"41689884","NAGOYA SUSHI","3","1907","KINGS HIGHWAY","11229","7183363688","49","2013-07-20 00:00:00","P","06F","22","","","2013-09-13 01:01:06.177000000" +"41689903","NAGOYA","3","1948","86TH ST","11214","7189758889","49","2013-01-09 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41689903","NAGOYA","3","1948","86TH ST","11214","7189758889","49","2013-02-04 00:00:00","D","10F","5","A","2013-02-04 00:00:00","2013-09-13 01:01:06.177000000" +"41703557","PP BOY JAPAN","4","90-22","161 STREET","11432","7185232726","49","2013-01-04 00:00:00","E","10A","40","","","2013-09-13 01:01:06.177000000" +"41703625","QI","3","176 ","NORTH 9 STREET ","11211","7183021499","82","2013-04-23 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41703625","QI","3","176 ","NORTH 9 STREET ","11211","7183021499","82","2013-04-23 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41690686","AJI 18","1","208","3 AVENUE","10003","2126776921","49","2013-06-24 00:00:00","F","04M","19","","","2013-09-13 01:01:06.177000000" +"41673139","SUSHI AVE X","3","241","AVENUE X","11223","7183759757","49","2012-08-09 00:00:00","D","06C","11","A","2012-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41673139","SUSHI AVE X","3","241","AVENUE X","11223","7183759757","49","2013-05-18 00:00:00","P","06C","23","","","2013-09-13 01:01:06.177000000" +"41704068","HANJAN","1","36","WEST 26 STREET","10010","2122067226","52","2013-04-10 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41704231","MIYAKO","3","143 ","BERRY STREET ","11249","7184860837","49","2013-03-20 00:00:00","P","06C","18","","","2013-09-13 01:01:06.177000000" +"41704231","MIYAKO","3","143 ","BERRY STREET ","11249","7184860837","49","2013-03-20 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41704282","FUKUROU","1","87","MACDOUGAL STREET","10012","2123880013","49","2013-04-23 00:00:00","P","06E","18","","","2013-09-13 01:01:06.177000000" +"41698000","KARAOKE DUET 48","1","304","EAST 48 STREET","10017","2127530030","49","2012-10-11 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-08-25 00:00:00","F","02G","104","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-08-25 00:00:00","F","04A","104","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-08-25 00:00:00","F","06D","104","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-08-25 00:00:00","F","06E","104","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-08-25 00:00:00","F","09A","104","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-08-25 00:00:00","F","10H","104","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-09-22 00:00:00","G","04L","64","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2013-06-11 00:00:00","P","10B","25","","","2013-09-13 01:01:06.177000000" +"41698000","KARAOKE DUET 48","1","304","EAST 48 STREET","10017","2127530030","49","2012-10-11 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41698000","KARAOKE DUET 48","1","304","EAST 48 STREET","10017","2127530030","49","2013-06-06 00:00:00","P","04L","17","","","2013-09-13 01:01:06.177000000" +"41700608","SEN NYC","3","12 ","WEST 21 STREET ","10010","2123885736","49","2013-05-08 00:00:00","F","06D","29","","","2013-09-13 01:01:06.177000000" +"41674942","CAFE SUPREME","4","8838 ","SUTPHIN BLVD ","11435","7186581360","83","2013-03-18 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41674942","CAFE SUPREME","4","8838 ","SUTPHIN BLVD ","11435","7186581360","83","2013-03-18 00:00:00","G","09C","49","","","2013-09-13 01:01:06.177000000" +"41674961","MAMA JOY'S","3","1084","FLUSHING AVENUE","11237","3472952227","03","2013-08-29 00:00:00","F","02A","49","","","2013-09-13 01:01:06.177000000" +"41694079","NEW CHINA GARDEN RESTAURANT","5","531","TARGEE STREET","10304","7188168109","20","2013-08-22 00:00:00","G","06F","49","","","2013-09-13 01:01:06.177000000" +"41705732","BentOn Cafe","1","156","EAST 45 STREET","10017","2129229788","49","2013-06-18 00:00:00","F","02G","23","","","2013-09-13 01:01:06.177000000" +"41705732","BentOn Cafe","1","156","EAST 45 STREET","10017","2129229788","49","2013-06-18 00:00:00","F","06D","23","","","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-07-10 00:00:00","F","06D","36","","","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-07-22 00:00:00","G","08A","64","","","2013-09-13 01:01:06.177000000" +"41705988","KURA","1","130","ST MARKS PLACE","10009","2122281010","49","2013-05-08 00:00:00","F","04J","27","","","2013-09-13 01:01:06.177000000" +"41694442","BAMBOOTORI","1","106","UNIVERSITY PLACE","10003","2122555152","49","2013-07-02 00:00:00","F","04L","29","","","2013-09-13 01:01:06.177000000" +"41699653","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","1","121","WEST 125 STREET","10027","6312437700","49","2013-03-21 00:00:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"41699768","TOMPKINS BROOKLYN CAFE & RESTAURANT","3","268","TOMPKINS AVENUE","11216","7186223681","53","2012-12-19 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41694966","SHINJUKU","3","1664","SHEEPSHEAD BAY ROAD","11235","7189344273","49","2013-04-01 00:00:00","U","02G","20","B","2013-04-01 00:00:00","2013-09-13 01:01:06.177000000" +"41675589","AJI SUSHI HOUSE","4","3606 ","DITMARS BLVD ","11105","7187778885","49","2012-07-25 00:00:00","P","06E","21","","","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-02-19 00:00:00","F","04L","56","","","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-03-14 00:00:00","U","04L","26","B","2013-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-08-05 00:00:00","P","09B","19","","","2013-09-13 01:01:06.177000000" +"41706542","INASE SUSHI RESTAURANT","1","1586","1 AVENUE","10028","2126281238","49","2013-04-09 00:00:00","P","06F","18","","","2013-09-13 01:01:06.177000000" +"41701697","SUZUME","3","545","LORIMER STREET","11211","7184860200","49","2013-04-26 00:00:00","P","02B","16","","","2013-09-13 01:01:06.177000000" +"41701697","SUZUME","3","545","LORIMER STREET","11211","7184860200","49","2013-04-26 00:00:00","P","10B","16","","","2013-09-13 01:01:06.177000000" +"41695327","KIMCHAYUL B.B.Q.","4","41-22","162 STREET","11358","7188869292","52","2012-12-26 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41706991","NATORI JAPANESE RESTAURANT","1","58","SAINT MARKS PLACE","10003","2125337711","49","2013-02-27 00:00:00","P","04K","10","","","2013-09-13 01:01:06.177000000" +"41676490","AOYU SUSHI","2","3532A","JOHNSON AVENUE","10463","7188846633","49","2012-07-17 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41676490","AOYU SUSHI","2","3532A","JOHNSON AVENUE","10463","7188846633","49","2013-08-21 00:00:00","P","04M","21","","","2013-09-13 01:01:06.177000000" +"41702361","VINE","1","2955","BROADWAY","10025","2122223568","49","2013-08-20 00:00:00","F","10F","32","","","2013-09-13 01:01:06.177000000" +"41695897","CAFE BOULIS","4","30-15 ","31 AVENUE ","11106","7188061014","14","2012-10-10 00:00:00","E","10A","49","","","2013-09-13 01:01:06.177000000" +"41700608","SEN NYC","3","12 ","WEST 21 STREET ","10010","2123885736","49","2013-05-08 00:00:00","F","06F","29","","","2013-09-13 01:01:06.177000000" +"41707610","IPPIN TAPAS & NOODLE BAR","1","141","1 AVENUE","10003","6465471238","49","2013-02-15 00:00:00","D","06C","12","","","2013-09-13 01:01:06.177000000" +"41707610","IPPIN TAPAS & NOODLE BAR","1","141","1 AVENUE","10003","6465471238","49","2013-05-30 00:00:00","F","08A","24","","","2013-09-13 01:01:06.177000000" +"41702601","KOSHER YAMA SUSHI","4","81-63 ","LEFFERTS BOULEVARD ","11415","7188801750","49","2013-02-07 00:00:00","F","10H","24","","","2013-09-13 01:01:06.177000000" +"41700776","ELBOW ROOM","3","614 ","ATLANTIC AVENUE ","11217","7182304088","03","2013-02-07 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-01-23 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-01-23 00:00:00","F","09C","30","","","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-01-23 00:00:00","F","10D","30","","","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-07-10 00:00:00","F","02B","36","","","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-07-10 00:00:00","F","04M","36","","","2013-09-13 01:01:06.177000000" +"41702877","THE LOOP","1","173","3 AVENUE","10003","2125891200","49","2013-03-05 00:00:00","F","10I","45","","","2013-09-13 01:01:06.177000000" +"41702880","RAKU II ITS JAPANESE","1","57","WEST 76 STREET","10023","2128731220","49","2013-02-26 00:00:00","F","02G","23","","","2013-09-13 01:01:06.177000000" +"41701495","ZEN 6 RAMEN & GYOZA HOUSE","1","328","EAST 6 STREET","10003","6464298471","49","2013-01-15 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41703235","CHEZ SARDINE","1","183","WEST 10 STREET","10014","6463603705","49","2013-08-21 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41677534","TOMO JAPANESE CAFE","4","8914 ","QUEENS BLVD ","11373","7188039799","49","2012-09-17 00:00:00","D","04L","13","A","2012-09-17 00:00:00","2013-09-13 01:01:06.177000000" +"41677534","TOMO JAPANESE CAFE","4","8914 ","QUEENS BLVD ","11373","7188039799","49","2013-05-04 00:00:00","F","02B","47","","","2013-09-13 01:01:06.177000000" +"41677534","TOMO JAPANESE CAFE","4","8914 ","QUEENS BLVD ","11373","7188039799","49","2013-05-04 00:00:00","F","10A","47","","","2013-09-13 01:01:06.177000000" +"41702145","MP TAVERNA","4","31-29","DITMARS BOULEVARD","11105","7187772187","38","2013-05-23 00:00:00","F","10J","49","","","2013-09-13 01:01:06.177000000" +"41703557","PP BOY JAPAN","4","90-22","161 STREET","11432","7185232726","49","2013-01-04 00:00:00","E","10F","40","","","2013-09-13 01:01:06.177000000" +"41703625","QI","3","176 ","NORTH 9 STREET ","11211","7183021499","82","2013-04-23 00:00:00","F","09B","49","","","2013-09-13 01:01:06.177000000" +"41702361","VINE","1","2955","BROADWAY","10025","2122223568","49","2013-08-20 00:00:00","F","02B","32","","","2013-09-13 01:01:06.177000000" +"41704068","HANJAN","1","36","WEST 26 STREET","10010","2122067226","52","2013-04-10 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41704231","MIYAKO","3","143 ","BERRY STREET ","11249","7184860837","49","2013-03-20 00:00:00","P","04K","18","","","2013-09-13 01:01:06.177000000" +"41702877","THE LOOP","1","173","3 AVENUE","10003","2125891200","49","2013-03-05 00:00:00","F","04L","45","","","2013-09-13 01:01:06.177000000" +"41703229","SAKE BAR SATSKO","1","202","EAST 7 STREET","10009","2126140933","49","2013-03-26 00:00:00","F","08A","26","","","2013-09-13 01:01:06.177000000" +"41703235","CHEZ SARDINE","1","183","WEST 10 STREET","10014","6463603705","49","2013-08-21 00:00:00","F","10I","31","","","2013-09-13 01:01:06.177000000" +"41679060","E-CHIBAN SUSHI JAPANESE RESTAURANT","4","6647 ","FRESH POND ROAD ","11385","7183868333","49","2012-07-23 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-08-25 00:00:00","F","04C","32","","","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-09-14 00:00:00","F","02B","73","C","2012-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-09-14 00:00:00","F","06C","73","C","2012-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-09-14 00:00:00","F","10A","73","C","2012-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-09-14 00:00:00","F","10B","73","C","2012-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2013-05-11 00:00:00","F","03C","53","","","2013-09-13 01:01:06.177000000" +"41703625","QI","3","176 ","NORTH 9 STREET ","11211","7183021499","82","2013-04-23 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41709614","MISOYA","4","158-09B ","NORTHERN BOULEVARD ","11358","7183212600","49","2013-03-13 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"41704805","OISHI SUSHI RESTAURANT","3","929","MANHATTAN AVENUE","11222","7183498988","49","2013-02-06 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41704805","OISHI SUSHI RESTAURANT","3","929","MANHATTAN AVENUE","11222","7183498988","49","2013-02-06 00:00:00","P","10H","14","","","2013-09-13 01:01:06.177000000" +"41699653","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","1","121","WEST 125 STREET","10027","6312437700","49","2013-05-28 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41705437","RAMEN TAKUMI","1","517","3 AVENUE","10016","2126792752","49","2013-05-08 00:00:00","F","08A","41","","","2013-09-13 01:01:06.177000000" +"41704068","HANJAN","1","36","WEST 26 STREET","10010","2122067226","52","2013-04-10 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41704231","MIYAKO","3","143 ","BERRY STREET ","11249","7184860837","49","2013-03-20 00:00:00","P","08C","18","","","2013-09-13 01:01:06.177000000" +"41704282","FUKUROU","1","87","MACDOUGAL STREET","10012","2123880013","49","2012-12-20 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41710645","MIRA SUSHI","1","46","WEST 22 STREET","10010","2129897889","49","2013-03-01 00:00:00","P","04C","23","","","2013-09-13 01:01:06.177000000" +"41700608","SEN NYC","3","12 ","WEST 21 STREET ","10010","2123885736","49","2013-05-08 00:00:00","F","10J","29","","","2013-09-13 01:01:06.177000000" +"41700776","ELBOW ROOM","3","614 ","ATLANTIC AVENUE ","11217","7182304088","03","2013-02-07 00:00:00","F","03A","49","","","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-01-23 00:00:00","F","05D","30","","","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-07-22 00:00:00","G","02G","64","","","2013-09-13 01:01:06.177000000" +"41705732","BentOn Cafe","1","156","EAST 45 STREET","10017","2129229788","49","2013-02-14 00:00:00","F","04C","19","C","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41705732","BentOn Cafe","1","156","EAST 45 STREET","10017","2129229788","49","2013-02-14 00:00:00","F","04M","19","C","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41680924","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","4","13336 ","WHITESTONE EXPRESSWAY ","11354","7183590810","49","2012-08-22 00:00:00","D","10B","5","A","2012-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41680924","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","4","13336 ","WHITESTONE EXPRESSWAY ","11354","7183590810","49","2013-03-07 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"41704457","SUSHI VILLAGE","4","254-04","NORTHERN BOULEVARD","11362","7182253311","49","2013-01-24 00:00:00","P","02B","15","","","2013-09-13 01:01:06.177000000" +"41711133","KAJITSU","3","125 ","EAST 39 STREET ","11203","2122284873","49","2013-05-07 00:00:00","F","04H","18","","","2013-09-13 01:01:06.177000000" +"41705988","KURA","1","130","ST MARKS PLACE","10009","2122281010","49","2013-05-08 00:00:00","F","10B","27","","","2013-09-13 01:01:06.177000000" +"41681082","J R SUSHI","1","86A ","WEST BROADWAY ","10007","2122338338","49","2013-04-09 00:00:00","F","04J","36","","","2013-09-13 01:01:06.177000000" +"41681082","J R SUSHI","1","86A ","WEST BROADWAY ","10007","2122338338","49","2013-04-09 00:00:00","F","10F","36","","","2013-09-13 01:01:06.177000000" +"41701495","ZEN 6 RAMEN & GYOZA HOUSE","1","328","EAST 6 STREET","10003","6464298471","49","2013-03-21 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41701495","ZEN 6 RAMEN & GYOZA HOUSE","1","328","EAST 6 STREET","10003","6464298471","49","2013-05-14 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41706168","VEYTA'S BAKERY CAFE","4","92-01","ROOSEVELT AVENUE","11372","7184248680","08","2013-08-07 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41706168","VEYTA'S BAKERY CAFE","4","92-01","ROOSEVELT AVENUE","11372","7184248680","08","2013-08-07 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-02-19 00:00:00","F","02G","56","","","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-02-19 00:00:00","F","06B","56","","","2013-09-13 01:01:06.177000000" +"41711545","OSAKA JAPANESE FUSION","4","224-23","UNION TURNPIKE","11364","7182178283","49","2013-05-18 00:00:00","F","06D","23","","","2013-09-13 01:01:06.177000000" +"41711545","OSAKA JAPANESE FUSION","4","224-23","UNION TURNPIKE","11364","7182178283","49","2013-05-18 00:00:00","F","10H","23","","","2013-09-13 01:01:06.177000000" +"41711559","OSHIMA","3","71 ","7 AVENUE ","11217","7187831888","49","2013-03-16 00:00:00","F","06C","52","","","2013-09-13 01:01:06.177000000" +"41711559","OSHIMA","3","71 ","7 AVENUE ","11217","7187831888","49","2013-05-02 00:00:00","U","04L","19","","","2013-09-13 01:01:06.177000000" +"41705437","RAMEN TAKUMI","1","517","3 AVENUE","10016","2126792752","49","2013-05-08 00:00:00","F","04L","41","","","2013-09-13 01:01:06.177000000" +"41705437","RAMEN TAKUMI","1","517","3 AVENUE","10016","2126792752","49","2013-05-08 00:00:00","F","05E","41","","","2013-09-13 01:01:06.177000000" +"41701697","SUZUME","3","545","LORIMER STREET","11211","7184860200","49","2013-04-26 00:00:00","P","02G","16","","","2013-09-13 01:01:06.177000000" +"41681373","HADO SUSHI","4","13840 ","86 AVENUE ","11435","7185585758","49","2013-06-13 00:00:00","P","02G","15","","","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-08-05 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41705732","BentOn Cafe","1","156","EAST 45 STREET","10017","2129229788","49","2013-03-15 00:00:00","F","02G","25","","","2013-09-13 01:01:06.177000000" +"41702361","VINE","1","2955","BROADWAY","10025","2122223568","49","2013-01-17 00:00:00","F","06A","30","","","2013-09-13 01:01:06.177000000" +"41702361","VINE","1","2955","BROADWAY","10025","2122223568","49","2013-08-20 00:00:00","F","10I","32","","","2013-09-13 01:01:06.177000000" +"41707610","IPPIN TAPAS & NOODLE BAR","1","141","1 AVENUE","10003","6465471238","49","2013-02-15 00:00:00","D","10F","12","","","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-03-14 00:00:00","U","04A","26","B","2013-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-08-05 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"41706542","INASE SUSHI RESTAURANT","1","1586","1 AVENUE","10028","2126281238","49","2013-04-09 00:00:00","P","02B","18","","","2013-09-13 01:01:06.177000000" +"41702877","THE LOOP","1","173","3 AVENUE","10003","2125891200","49","2013-03-05 00:00:00","F","02B","45","","","2013-09-13 01:01:06.177000000" +"41702880","RAKU II ITS JAPANESE","1","57","WEST 76 STREET","10023","2128731220","49","2013-02-26 00:00:00","F","10B","23","","","2013-09-13 01:01:06.177000000" +"41703557","PP BOY JAPAN","4","90-22","161 STREET","11432","7185232726","49","2013-05-15 00:00:00","P","06F","22","","","2013-09-13 01:01:06.177000000" +"41703625","QI","3","176 ","NORTH 9 STREET ","11211","7183021499","82","2013-04-23 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41706991","NATORI JAPANESE RESTAURANT","1","58","SAINT MARKS PLACE","10003","2125337711","49","2013-02-27 00:00:00","P","08A","10","","","2013-09-13 01:01:06.177000000" +"41713670","WASABI LOBBY JAPANESE RESTAURANT","1","1584","2 AVENUE","10028","2129888882","49","2013-02-25 00:00:00","F","02G","7","","","2013-09-13 01:01:06.177000000" +"41707582","OISHI","2","3799","EAST TREMONT AVENUE","10465","7188236868","49","2013-02-07 00:00:00","P","10B","2","","","2013-09-13 01:01:06.177000000" +"41707610","IPPIN TAPAS & NOODLE BAR","1","141","1 AVENUE","10003","6465471238","49","2013-05-30 00:00:00","F","02B","24","","","2013-09-13 01:01:06.177000000" +"41709347","AMBER","1","381","3 AVENUE","10016","2126866388","49","2013-03-14 00:00:00","P","06A","27","","","2013-09-13 01:01:06.177000000" +"41704068","HANJAN","1","36","WEST 26 STREET","10010","2122067226","52","2013-04-10 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41704068","HANJAN","1","36","WEST 26 STREET","10010","2122067226","52","2013-04-10 00:00:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"41704068","HANJAN","1","36","WEST 26 STREET","10010","2122067226","52","2013-04-10 00:00:00","F","10A","49","","","2013-09-13 01:01:06.177000000" +"41704231","MIYAKO","3","143 ","BERRY STREET ","11249","7184860837","49","2013-03-20 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"41704231","MIYAKO","3","143 ","BERRY STREET ","11249","7184860837","49","2013-03-20 00:00:00","P","10D","18","","","2013-09-13 01:01:06.177000000" +"41684379","SOBA TOTTO","1","211","EAST 43 STREET","10017","2125578200","49","2012-11-26 00:00:00","F","04M","53","C","2012-11-26 00:00:00","2013-09-13 01:01:06.177000000" +"41684379","SOBA TOTTO","1","211","EAST 43 STREET","10017","2125578200","49","2013-06-19 00:00:00","F","06C","15","","","2013-09-13 01:01:06.177000000" +"41684533","MALINGO RESTAURANT & BAR","4","43-16","QUEENS BOULEVARD","11104","3478088100","49","2013-06-21 00:00:00","F","02G","20","","","2013-09-13 01:01:06.177000000" +"41709614","MISOYA","4","158-09B ","NORTHERN BOULEVARD ","11358","7183212600","49","2013-03-13 00:00:00","F","06C","29","","","2013-09-13 01:01:06.177000000" +"41709614","MISOYA","4","158-09B ","NORTHERN BOULEVARD ","11358","7183212600","49","2013-03-13 00:00:00","F","10E","29","","","2013-09-13 01:01:06.177000000" +"41685002","NEW PUNJAB RESTAURANT & GRILL","3","691","CONEY ISLAND AVE","11218","7188566207","59","2012-10-19 00:00:00","F","10F","49","C","2012-10-19 00:00:00","2013-09-13 01:01:06.177000000" +"41716209","AJISAI","1","795 ","LEXINGTON AVENUE ","10065","2123550888","49","2013-05-21 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41716350","FUKI SUSHI","3","8509","18 AVENUE","11214","7188378885","49","2013-06-03 00:00:00","P","02B","25","","","2013-09-13 01:01:06.177000000" +"41716444","TOTTO RAMEN","1","366","WEST 52 STREET","10019","2125820052","49","2013-06-28 00:00:00","O","10B","2","","","2013-09-13 01:01:06.177000000" +"41686748","AABI SUSHI","1","536","3 AVENUE","10016","2125826180","49","2013-03-08 00:00:00","P","10F","14","","","2013-09-13 01:01:06.177000000" +"41717504","TAKI SUSHI","1","60","WEST 48 STREET","10036","2128322288","49","2013-04-16 00:00:00","U","04L","19","","","2013-09-13 01:01:06.177000000" +"41709614","MISOYA","4","158-09B ","NORTHERN BOULEVARD ","11358","7183212600","49","2013-03-13 00:00:00","F","06E","29","","","2013-09-13 01:01:06.177000000" +"41709614","MISOYA","4","158-09B ","NORTHERN BOULEVARD ","11358","7183212600","49","2013-03-13 00:00:00","F","09A","29","","","2013-09-13 01:01:06.177000000" +"41705732","BentOn Cafe","1","156","EAST 45 STREET","10017","2129229788","49","2013-01-28 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41705732","BentOn Cafe","1","156","EAST 45 STREET","10017","2129229788","49","2013-03-15 00:00:00","F","06E","25","","","2013-09-13 01:01:06.177000000" +"41705732","BentOn Cafe","1","156","EAST 45 STREET","10017","2129229788","49","2013-06-18 00:00:00","F","10F","23","","","2013-09-13 01:01:06.177000000" +"41687410","ANI SUSHI","3","142","MONTAGUE STREET","11201","7189231800","49","2013-03-12 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41687410","ANI SUSHI","3","142","MONTAGUE STREET","11201","7189231800","49","2013-03-12 00:00:00","P","09B","22","","","2013-09-13 01:01:06.177000000" +"41687410","ANI SUSHI","3","142","MONTAGUE STREET","11201","7189231800","49","2013-04-18 00:00:00","E","16A","","","","2013-09-13 01:01:06.177000000" +"41711545","OSAKA JAPANESE FUSION","4","224-23","UNION TURNPIKE","11364","7182178283","49","2013-05-18 00:00:00","F","09B","23","","","2013-09-13 01:01:06.177000000" +"41711547","NEW SARKURA JAPAN","4","90-40","160 STREET","11432","6462506640","49","2013-04-08 00:00:00","P","04M","5","","","2013-09-13 01:01:06.177000000" +"41711559","OSHIMA","3","71 ","7 AVENUE ","11217","7187831888","49","2013-03-16 00:00:00","F","04N","52","","","2013-09-13 01:01:06.177000000" +"41706496","AQUAMARINE 38","1","250 ","EAST 39 STREET ","10016","2122971800","49","2013-04-15 00:00:00","F","02G","13","","","2013-09-13 01:01:06.177000000" +"41719627","SUKI JAPANESE RESTAURANT","3","9208","3 AVENUE","11209","7182382323","49","2013-03-22 00:00:00","D","10F","7","","","2013-09-13 01:01:06.177000000" +"41688777","Q AND N DELI FOOD","4","230-59 ","INTL AIRPORT CENTER BLVD ","11413","7189178928","03","2013-02-11 00:00:00","W","08A","49","","","2013-09-13 01:01:06.177000000" +"41688797","RIVER JAPANESE RESTAURANT","4","37-18 ","MAIN ST ","11354","7188869880","49","2012-09-20 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-07-25 00:00:00","P","06E","22","","","2013-09-13 01:01:06.177000000" +"41720720","SABOR DEL AUSTRO RESTAURANT","4","580 ","SENECA AVENUE ","11385","7184176100","77","2013-05-30 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41707610","IPPIN TAPAS & NOODLE BAR","1","141","1 AVENUE","10003","6465471238","49","2013-02-15 00:00:00","D","04L","12","","","2013-09-13 01:01:06.177000000" +"41689884","NAGOYA SUSHI","3","1907","KINGS HIGHWAY","11229","7183363688","49","2012-09-13 00:00:00","P","10H","7","","","2013-09-13 01:01:06.177000000" +"41721159","SAKURA JAPANESE CUISINE","4","35-15","DITMARS BOULEVARD","11105","7187772188","49","2013-07-24 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41713670","WASABI LOBBY JAPANESE RESTAURANT","1","1584","2 AVENUE","10028","2129888882","49","2013-08-21 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"41713670","WASABI LOBBY JAPANESE RESTAURANT","1","1584","2 AVENUE","10028","2129888882","49","2013-08-21 00:00:00","F","10D","35","","","2013-09-13 01:01:06.177000000" +"41716209","AJISAI","1","795 ","LEXINGTON AVENUE ","10065","2123550888","49","2013-04-08 00:00:00","F","15L","","","","2013-09-13 01:01:06.177000000" +"41709347","AMBER","1","381","3 AVENUE","10016","2126866388","49","2013-03-14 00:00:00","P","05D","27","","","2013-09-13 01:01:06.177000000" +"41692187","RED MOON","1","132","WEST 45 STREET","10036","2123916666","49","2012-09-06 00:00:00","F","04C","29","","","2013-09-13 01:01:06.177000000" +"41716444","TOTTO RAMEN","1","366","WEST 52 STREET","10019","2125820052","49","2013-05-02 00:00:00","F","10B","13","","","2013-09-13 01:01:06.177000000" +"41716444","TOTTO RAMEN","1","366","WEST 52 STREET","10019","2125820052","49","2013-06-25 00:00:00","G","10E","70","","","2013-09-13 01:01:06.177000000" +"41716978","52ND SUSHI","4","52-21","ROOSEVELT AVENUE","11377","7185079204","49","2013-05-02 00:00:00","P","06F","20","","","2013-09-13 01:01:06.177000000" +"41716978","52ND SUSHI","4","52-21","ROOSEVELT AVENUE","11377","7185079204","49","2013-05-02 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41716209","AJISAI","1","795 ","LEXINGTON AVENUE ","10065","2123550888","49","2013-03-21 00:00:00","P","06F","21","","","2013-09-13 01:01:06.177000000" +"41716444","TOTTO RAMEN","1","366","WEST 52 STREET","10019","2125820052","49","2013-06-25 00:00:00","G","02B","70","","","2013-09-13 01:01:06.177000000" +"41717504","TAKI SUSHI","1","60","WEST 48 STREET","10036","2128322288","49","2013-02-27 00:00:00","P","02B","18","","","2013-09-13 01:01:06.177000000" +"41717504","TAKI SUSHI","1","60","WEST 48 STREET","10036","2128322288","49","2013-02-27 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"50000261","NEW YORK SUSHI KO","1","91 ","CLINTON STREET ","10002","9177345857","49","2013-06-25 00:00:00","F","02G","33","","","2013-09-13 01:01:06.177000000" +"50000261","NEW YORK SUSHI KO","1","91 ","CLINTON STREET ","10002","9177345857","49","2013-06-25 00:00:00","F","04J","33","","","2013-09-13 01:01:06.177000000" +"41717504","TAKI SUSHI","1","60","WEST 48 STREET","10036","2128322288","49","2013-02-27 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41710645","MIRA SUSHI","1","46","WEST 22 STREET","10010","2129897889","49","2013-03-01 00:00:00","P","06F","23","","","2013-09-13 01:01:06.177000000" +"41710788","NORI NORI","4","136-20 ","38 AVENUE ","11354","7183958073","49","2013-01-30 00:00:00","D","10F","3","","","2013-09-13 01:01:06.177000000" +"41694079","NEW CHINA GARDEN RESTAURANT","5","531","TARGEE STREET","10304","7188168109","20","2013-08-22 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41711133","KAJITSU","3","125 ","EAST 39 STREET ","11203","2122284873","49","2013-05-07 00:00:00","F","10F","18","","","2013-09-13 01:01:06.177000000" +"41694442","BAMBOOTORI","1","106","UNIVERSITY PLACE","10003","2122555152","49","2013-02-06 00:00:00","D","08A","12","A","2013-02-06 00:00:00","2013-09-13 01:01:06.177000000" +"41711559","OSHIMA","3","71 ","7 AVENUE ","11217","7187831888","49","2013-03-16 00:00:00","F","04L","52","","","2013-09-13 01:01:06.177000000" +"41719609","KOTO SUSHI","3","67 1/2","6 AVENUE","11220","7182303881","49","2013-04-25 00:00:00","P","09C","19","","","2013-09-13 01:01:06.177000000" +"41694966","SHINJUKU","3","1664","SHEEPSHEAD BAY ROAD","11235","7189344273","49","2012-10-05 00:00:00","D","10A","6","","","2013-09-13 01:01:06.177000000" +"41694966","SHINJUKU","3","1664","SHEEPSHEAD BAY ROAD","11235","7189344273","49","2013-08-15 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"41694966","SHINJUKU","3","1664","SHEEPSHEAD BAY ROAD","11235","7189344273","49","2013-08-15 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"41719787","YAKINIKU GEN","1","250","EAST 52 STREET","10022","2126021129","49","2013-04-17 00:00:00","F","04L","16","","","2013-09-13 01:01:06.177000000" +"41719787","YAKINIKU GEN","1","250","EAST 52 STREET","10022","2126021129","49","2013-04-17 00:00:00","F","06D","16","","","2013-09-13 01:01:06.177000000" +"41720720","SABOR DEL AUSTRO RESTAURANT","4","580 ","SENECA AVENUE ","11385","7184176100","77","2013-05-30 00:00:00","F","10J","49","","","2013-09-13 01:01:06.177000000" +"50000736","GREENBAY SUSHI","1","1659","1 AVENUE","10028","2123482878","49","2013-06-18 00:00:00","F","04L","20","","","2013-09-13 01:01:06.177000000" +"41720372","AKIRA JAPANESE CUISINE","1","152","7 AVENUE SOUTH","10014","2219898880","49","2013-04-19 00:00:00","D","10F","2","","","2013-09-13 01:01:06.177000000" +"41695477","GHOROA RESTAURANT","4","168-41","HILLSIDE AVENUE","11432","7186571000","09","2013-03-23 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41695530","TERIYAKI SHACK","3","96","DEKALB AVENUE","11201","7187224771","49","2013-03-18 00:00:00","P","10A","6","","","2013-09-13 01:01:06.177000000" +"41695897","CAFE BOULIS","4","30-15 ","31 AVENUE ","11106","7188061014","14","2012-10-10 00:00:00","E","10D","49","","","2013-09-13 01:01:06.177000000" +"41721159","SAKURA JAPANESE CUISINE","4","35-15","DITMARS BOULEVARD","11105","7187772188","49","2013-07-24 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41720720","SABOR DEL AUSTRO RESTAURANT","4","580 ","SENECA AVENUE ","11385","7184176100","77","2013-05-30 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41713670","WASABI LOBBY JAPANESE RESTAURANT","1","1584","2 AVENUE","10028","2129888882","49","2013-08-21 00:00:00","F","08A","35","","","2013-09-13 01:01:06.177000000" +"41714186","BALLI DELI & SALAD BAR","3","2616","OCEAN PARKWAY","11235","7186462822","03","2013-08-01 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"50000898","NAGASAKI SUSHI RESTAURANT","1","109","ELDRIDGE STREET","10002","2122191555","49","2013-06-13 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"50000898","NAGASAKI SUSHI RESTAURANT","1","109","ELDRIDGE STREET","10002","2122191555","49","2013-06-13 00:00:00","F","06E","35","","","2013-09-13 01:01:06.177000000" +"41722947","TANKO JAPANESE FUSION","4","3805 ","BELL BOULEVARD ","11361","7186311188","49","2013-06-10 00:00:00","P","04H","25","","","2013-09-13 01:01:06.177000000" +"41716209","AJISAI","1","795 ","LEXINGTON AVENUE ","10065","2123550888","49","2013-03-09 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41698000","KARAOKE DUET 48","1","304","EAST 48 STREET","10017","2127530030","49","2012-12-20 00:00:00","D","04L","11","A","2012-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41698000","KARAOKE DUET 48","1","304","EAST 48 STREET","10017","2127530030","49","2013-06-06 00:00:00","P","04A","17","","","2013-09-13 01:01:06.177000000" +"41716444","TOTTO RAMEN","1","366","WEST 52 STREET","10019","2125820052","49","2013-06-25 00:00:00","G","04L","70","","","2013-09-13 01:01:06.177000000" +"41716444","TOTTO RAMEN","1","366","WEST 52 STREET","10019","2125820052","49","2013-06-25 00:00:00","G","04N","70","","","2013-09-13 01:01:06.177000000" +"41716841","CHO CHO SAN JAPANESE RESTAURANT INC","4","39-11","QUEENS BOULEVARD","11104","7183618232","49","2013-04-11 00:00:00","F","02G","38","","","2013-09-13 01:01:06.177000000" +"41716841","CHO CHO SAN JAPANESE RESTAURANT INC","4","39-11","QUEENS BOULEVARD","11104","7183618232","49","2013-04-11 00:00:00","F","08A","38","","","2013-09-13 01:01:06.177000000" +"50001203","AKI SUSHI","1","212","EAST 52 STREET","10022","2128938266","49","2013-07-17 00:00:00","F","04L","59","","","2013-09-13 01:01:06.177000000" +"50000082","FUJI ISLAND","5","556","TOMPKINS AVENUE","10305","7184474752","49","2013-04-17 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"50000082","FUJI ISLAND","5","556","TOMPKINS AVENUE","10305","7184474752","49","2013-04-17 00:00:00","F","06E","31","","","2013-09-13 01:01:06.177000000" +"50000082","FUJI ISLAND","5","556","TOMPKINS AVENUE","10305","7184474752","49","2013-04-17 00:00:00","F","09B","31","","","2013-09-13 01:01:06.177000000" +"50000112","YASHA RAMAN","1","940","AMSTERDAM AVENUE","10025","9173192100","49","2013-09-04 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"50000112","YASHA RAMAN","1","940","AMSTERDAM AVENUE","10025","9173192100","49","2013-09-04 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"50001242","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2013-09-10 00:00:00","F","10J","30","","","2013-09-13 01:01:06.177000000" +"50001259","MIMI AND COCO NY","1","92","RIVINGTON STREET","10002","6468019044","49","2013-07-01 00:00:00","D","10A","8","","","2013-09-13 01:01:06.177000000" +"41699653","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","1","121","WEST 125 STREET","10027","6312437700","49","2012-11-14 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41699768","TOMPKINS BROOKLYN CAFE & RESTAURANT","3","268","TOMPKINS AVENUE","11216","7186223681","53","2012-12-19 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"50000249","TAMASHII RAMEN","4","29-05 ","BROADWAY ","11106","7182785888","49","2013-06-10 00:00:00","P","06E","18","","","2013-09-13 01:01:06.177000000" +"50001312","MEW","1","53","WEST 35 STREET","10001","6463689384","49","2013-08-28 00:00:00","F","04H","33","","","2013-09-13 01:01:06.177000000" +"50001312","MEW","1","53","WEST 35 STREET","10001","6463689384","49","2013-08-28 00:00:00","F","10J","33","","","2013-09-13 01:01:06.177000000" +"50000254","MOGU SUSHI","4","133-22 ","39 AVENUE ","11354","9172515853","49","2013-07-12 00:00:00","P","02B","20","","","2013-09-13 01:01:06.177000000" +"50001458","Bassanova r","1","76","MOTT STREET","10013","2123342100","49","2013-07-17 00:00:00","D","10A","12","","","2013-09-13 01:01:06.177000000" +"50001484","TOYAMA CUISINE","3","6001","7 AVENUE","11220","7185678877","49","2013-09-07 00:00:00","F","04A","35","","","2013-09-13 01:01:06.177000000" +"50001484","TOYAMA CUISINE","3","6001","7 AVENUE","11220","7185678877","49","2013-09-07 00:00:00","F","06E","35","","","2013-09-13 01:01:06.177000000" +"41700608","SEN NYC","3","12 ","WEST 21 STREET ","10010","2123885736","49","2013-05-08 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-02-13 00:00:00","U","10B","7","B","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-07-10 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-07-10 00:00:00","F","10D","36","","","2013-09-13 01:01:06.177000000" +"50000254","MOGU SUSHI","4","133-22 ","39 AVENUE ","11354","9172515853","49","2013-07-12 00:00:00","P","06C","20","","","2013-09-13 01:01:06.177000000" +"50000333","AJI 53","3","170","SMITH STREET","11201","7189351166","49","2013-07-22 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41719609","KOTO SUSHI","3","67 1/2","6 AVENUE","11220","7182303881","49","2013-04-25 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"50001708","TATANY","1","1400","2 AVENUE","10021","2124721700","49","2013-07-29 00:00:00","D","08A","19","","","2013-09-13 01:01:06.177000000" +"50001722","ZEN PALATE","1","113","EAST 18 STREET","10003","2123878885","49","2013-08-02 00:00:00","P","04A","19","","","2013-09-13 01:01:06.177000000" +"41701495","ZEN 6 RAMEN & GYOZA HOUSE","1","328","EAST 6 STREET","10003","6464298471","49","2013-01-15 00:00:00","P","08A","15","","","2013-09-13 01:01:06.177000000" +"41719627","SUKI JAPANESE RESTAURANT","3","9208","3 AVENUE","11209","7182382323","49","2013-03-22 00:00:00","D","10B","7","","","2013-09-13 01:01:06.177000000" +"41719787","YAKINIKU GEN","1","250","EAST 52 STREET","10022","2126021129","49","2013-04-17 00:00:00","F","06C","16","","","2013-09-13 01:01:06.177000000" +"41701697","SUZUME","3","545","LORIMER STREET","11211","7184860200","49","2013-07-05 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41720720","SABOR DEL AUSTRO RESTAURANT","4","580 ","SENECA AVENUE ","11385","7184176100","77","2013-05-30 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41702145","MP TAVERNA","4","31-29","DITMARS BOULEVARD","11105","7187772187","38","2013-05-23 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41702361","VINE","1","2955","BROADWAY","10025","2122223568","49","2013-01-17 00:00:00","F","06C","30","","","2013-09-13 01:01:06.177000000" +"41702361","VINE","1","2955","BROADWAY","10025","2122223568","49","2013-08-20 00:00:00","F","06F","32","","","2013-09-13 01:01:06.177000000" +"50000604","ZAMBA RIOS","3","2770","ATLANTIC AVENUE","11207","3474047525","99","2013-08-02 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"50000604","ZAMBA RIOS","3","2770","ATLANTIC AVENUE","11207","3474047525","99","2013-08-02 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"50000604","ZAMBA RIOS","3","2770","ATLANTIC AVENUE","11207","3474047525","99","2013-08-02 00:00:00","F","10A","49","","","2013-09-13 01:01:06.177000000" +"41702877","THE LOOP","1","173","3 AVENUE","10003","2125891200","49","2013-03-05 00:00:00","F","08A","45","","","2013-09-13 01:01:06.177000000" +"50000736","GREENBAY SUSHI","1","1659","1 AVENUE","10028","2123482878","49","2013-08-06 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"50000665","DRUNKEN FISH","4","52-35","METROPOLITAN AVENUE","11385","7188211283","49","2013-06-28 00:00:00","F","06C","22","","","2013-09-13 01:01:06.177000000" +"41722751","SAKURA 7","4","65-54 ","GRAND AVENUE ","11378","7188949888","49","2013-04-08 00:00:00","F","04C","15","","","2013-09-13 01:01:06.177000000" +"41703235","CHEZ SARDINE","1","183","WEST 10 STREET","10014","6463603705","49","2013-03-05 00:00:00","F","04L","28","","","2013-09-13 01:01:06.177000000" +"50000708","TERIYAKI JAPAN EXPRESS GRILL","3","6814","4 AVENUE","11220","7188333069","49","2013-08-01 00:00:00","P","09C","19","","","2013-09-13 01:01:06.177000000" +"50000736","GREENBAY SUSHI","1","1659","1 AVENUE","10028","2123482878","49","2013-06-18 00:00:00","F","02G","20","","","2013-09-13 01:01:06.177000000" +"41703557","PP BOY JAPAN","4","90-22","161 STREET","11432","7185232726","49","2013-05-15 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41703625","QI","3","176 ","NORTH 9 STREET ","11211","7183021499","82","2013-04-23 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41703625","QI","3","176 ","NORTH 9 STREET ","11211","7183021499","82","2013-04-23 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41703625","QI","3","176 ","NORTH 9 STREET ","11211","7183021499","82","2013-04-23 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"50000872","ISTANBUL RESTAURANT","4","95-36","QUEENS BOULEVARD","11374","7182757555","83","2013-06-11 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"50000806","NEW NAGOYA","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2013-07-20 00:00:00","F","02G","22","","","2013-09-13 01:01:06.177000000" +"50000055","BANKOK CUISINE","4","107-18","70 ROAD","11375","7182614005","82","2013-06-03 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"50000055","BANKOK CUISINE","4","107-18","70 ROAD","11375","7182614005","82","2013-06-03 00:00:00","F","03B","49","","","2013-09-13 01:01:06.177000000" +"50000055","BANKOK CUISINE","4","107-18","70 ROAD","11375","7182614005","82","2013-06-03 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"50000082","FUJI ISLAND","5","556","TOMPKINS AVENUE","10305","7184474752","49","2013-04-17 00:00:00","F","04A","31","","","2013-09-13 01:01:06.177000000" +"50000872","ISTANBUL RESTAURANT","4","95-36","QUEENS BOULEVARD","11374","7182757555","83","2013-06-11 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"50000872","ISTANBUL RESTAURANT","4","95-36","QUEENS BOULEVARD","11374","7182757555","83","2013-06-11 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"50000872","ISTANBUL RESTAURANT","4","95-36","QUEENS BOULEVARD","11374","7182757555","83","2013-06-11 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"50000898","NAGASAKI SUSHI RESTAURANT","1","109","ELDRIDGE STREET","10002","2122191555","49","2013-06-13 00:00:00","F","02B","35","","","2013-09-13 01:01:06.177000000" +"50000898","NAGASAKI SUSHI RESTAURANT","1","109","ELDRIDGE STREET","10002","2122191555","49","2013-06-13 00:00:00","F","08A","35","","","2013-09-13 01:01:06.177000000" +"50000111","YOSHI NEW YORK","1","131","AVENUE A","10009","__________","49","2013-04-29 00:00:00","P","02B","20","","","2013-09-13 01:01:06.177000000" +"50001035","ABECA SUSHI","1","121 ","EAST 27 STREET ","10016","2122139888","49","2013-08-19 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"50000940","A CHIBAN","4","252-13 ","UNION TURNPIKE ","11426","7188318888","49","2013-06-20 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"50000980","KASUMI","3","1870","86 STREET","11214","7189756999","49","2013-08-31 00:00:00","P","04A","26","","","2013-09-13 01:01:06.177000000" +"50000261","NEW YORK SUSHI KO","1","91 ","CLINTON STREET ","10002","9177345857","49","2013-06-25 00:00:00","F","10F","33","","","2013-09-13 01:01:06.177000000" +"50001203","AKI SUSHI","1","212","EAST 52 STREET","10022","2128938266","49","2013-07-17 00:00:00","F","02B","59","","","2013-09-13 01:01:06.177000000" +"50001217","sushi shop","1","31","WEST 52 STREET","10019","2128405555","49","2013-08-06 00:00:00","P","04C","23","","","2013-09-13 01:01:06.177000000" +"50001203","AKI SUSHI","1","212","EAST 52 STREET","10022","2128938266","49","2013-07-17 00:00:00","F","02G","59","","","2013-09-13 01:01:06.177000000" +"50001203","AKI SUSHI","1","212","EAST 52 STREET","10022","2128938266","49","2013-07-17 00:00:00","F","06A","59","","","2013-09-13 01:01:06.177000000" +"41705748","GENKI SUSHI HOUSE","5","150","GREAVES LANE","10308","7182138276","49","2013-06-25 00:00:00","P","04H","22","","","2013-09-13 01:01:06.177000000" +"50001217","sushi shop","1","31","WEST 52 STREET","10019","2128405555","49","2013-08-06 00:00:00","P","06F","23","","","2013-09-13 01:01:06.177000000" +"50001242","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2013-09-10 00:00:00","F","04H","30","","","2013-09-13 01:01:06.177000000" +"50001259","MIMI AND COCO NY","1","92","RIVINGTON STREET","10002","6468019044","49","2013-07-01 00:00:00","D","10F","8","","","2013-09-13 01:01:06.177000000" +"50001242","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2013-09-10 00:00:00","F","05D","30","","","2013-09-13 01:01:06.177000000" +"50001312","MEW","1","53","WEST 35 STREET","10001","6463689384","49","2013-08-28 00:00:00","F","06A","33","","","2013-09-13 01:01:06.177000000" +"41706168","VEYTA'S BAKERY CAFE","4","92-01","ROOSEVELT AVENUE","11372","7184248680","08","2013-08-07 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"50001484","TOYAMA CUISINE","3","6001","7 AVENUE","11220","7185678877","49","2013-09-07 00:00:00","F","04H","35","","","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-02-19 00:00:00","F","09C","56","","","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-02-19 00:00:00","F","10D","56","","","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-03-14 00:00:00","U","09C","26","B","2013-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-08-05 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41706542","INASE SUSHI RESTAURANT","1","1586","1 AVENUE","10028","2126281238","49","2013-04-09 00:00:00","P","06E","18","","","2013-09-13 01:01:06.177000000" +"50001495","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2013-08-20 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"50001600","FOOD SUN SUN","1","144 ","WEST 37 STREET ","10018","2122393888","49","2013-07-30 00:00:00","D","10A","7","","","2013-09-13 01:01:06.177000000" +"50001709","AKI 39 JAPANESE CUISINE","1","216","EAST 39 STREET","10016","2128678668","49","2013-07-23 00:00:00","F","06D","30","","","2013-09-13 01:01:06.177000000" +"50001722","ZEN PALATE","1","113","EAST 18 STREET","10003","2123878885","49","2013-08-02 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"50000604","ZAMBA RIOS","3","2770","ATLANTIC AVENUE","11207","3474047525","99","2013-08-02 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"50000665","DRUNKEN FISH","4","52-35","METROPOLITAN AVENUE","11385","7188211283","49","2013-06-28 00:00:00","F","02B","22","","","2013-09-13 01:01:06.177000000" +"50000708","TERIYAKI JAPAN EXPRESS GRILL","3","6814","4 AVENUE","11220","7188333069","49","2013-08-01 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"50000708","TERIYAKI JAPAN EXPRESS GRILL","3","6814","4 AVENUE","11220","7188333069","49","2013-08-01 00:00:00","P","06F","19","","","2013-09-13 01:01:06.177000000" +"50000736","GREENBAY SUSHI","1","1659","1 AVENUE","10028","2123482878","49","2013-06-18 00:00:00","F","04H","20","","","2013-09-13 01:01:06.177000000" +"50000736","GREENBAY SUSHI","1","1659","1 AVENUE","10028","2123482878","49","2013-09-09 00:00:00","U","10F","21","","","2013-09-13 01:01:06.177000000" +"50000806","NEW NAGOYA","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2013-07-20 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"50000898","NAGASAKI SUSHI RESTAURANT","1","109","ELDRIDGE STREET","10002","2122191555","49","2013-06-13 00:00:00","F","04M","35","","","2013-09-13 01:01:06.177000000" +"50000898","NAGASAKI SUSHI RESTAURANT","1","109","ELDRIDGE STREET","10002","2122191555","49","2013-06-13 00:00:00","F","10F","35","","","2013-09-13 01:01:06.177000000" +"50002066","MAKANA","1","161","WEST 106 STREET","10025","2126784569","49","2013-08-14 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"50002116","YUMMY MACHI","5","2236 ","FOREST AVENUE ","10303","6469968990","49","2013-08-20 00:00:00","D","10A","5","","","2013-09-13 01:01:06.177000000" +"50002116","YUMMY MACHI","5","2236 ","FOREST AVENUE ","10303","6469968990","49","2013-08-20 00:00:00","D","10B","5","","","2013-09-13 01:01:06.177000000" +"50001010","DRAGON I CHINESE RESTAURANT","4","111-03","LEFFERTS BOULEVARD","11420","7188456180","20","2013-06-11 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41709614","MISOYA","4","158-09B ","NORTHERN BOULEVARD ","11358","7183212600","49","2013-03-13 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41709614","MISOYA","4","158-09B ","NORTHERN BOULEVARD ","11358","7183212600","49","2013-03-13 00:00:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"50001178","Aji sushi","3","201","5 AVENUE","11217","7186222889","49","2013-06-19 00:00:00","D","10F","13","","","2013-09-13 01:01:06.177000000" +"50001242","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2013-09-10 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"50001312","MEW","1","53","WEST 35 STREET","10001","6463689384","49","2013-08-28 00:00:00","F","10F","33","","","2013-09-13 01:01:06.177000000" +"41711133","KAJITSU","3","125 ","EAST 39 STREET ","11203","2122284873","49","2013-05-07 00:00:00","F","06E","18","","","2013-09-13 01:01:06.177000000" +"41711545","OSAKA JAPANESE FUSION","4","224-23","UNION TURNPIKE","11364","7182178283","49","2013-05-18 00:00:00","F","06C","23","","","2013-09-13 01:01:06.177000000" +"41711559","OSHIMA","3","71 ","7 AVENUE ","11217","7187831888","49","2013-03-16 00:00:00","F","02G","52","","","2013-09-13 01:01:06.177000000" +"41711559","OSHIMA","3","71 ","7 AVENUE ","11217","7187831888","49","2013-03-16 00:00:00","F","04A","52","","","2013-09-13 01:01:06.177000000" +"41711559","OSHIMA","3","71 ","7 AVENUE ","11217","7187831888","49","2013-03-16 00:00:00","F","06D","52","","","2013-09-13 01:01:06.177000000" +"41711559","OSHIMA","3","71 ","7 AVENUE ","11217","7187831888","49","2013-03-16 00:00:00","F","06E","52","","","2013-09-13 01:01:06.177000000" +"41711559","OSHIMA","3","71 ","7 AVENUE ","11217","7187831888","49","2013-03-16 00:00:00","F","10H","52","","","2013-09-13 01:01:06.177000000" +"50001484","TOYAMA CUISINE","3","6001","7 AVENUE","11220","7185678877","49","2013-09-07 00:00:00","F","06A","35","","","2013-09-13 01:01:06.177000000" +"50001600","FOOD SUN SUN","1","144 ","WEST 37 STREET ","10018","2122393888","49","2013-07-30 00:00:00","D","10H","7","","","2013-09-13 01:01:06.177000000" +"50001708","TATANY","1","1400","2 AVENUE","10021","2124721700","49","2013-07-29 00:00:00","D","10B","19","","","2013-09-13 01:01:06.177000000" +"50001709","AKI 39 JAPANESE CUISINE","1","216","EAST 39 STREET","10016","2128678668","49","2013-07-23 00:00:00","F","02B","30","","","2013-09-13 01:01:06.177000000" +"50001868","SUSHI K BAR","3","888 ","BEDFORD AVENUE ","11205","7186455227","49","2013-08-08 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41713670","WASABI LOBBY JAPANESE RESTAURANT","1","1584","2 AVENUE","10028","2129888882","49","2013-08-21 00:00:00","F","06D","35","","","2013-09-13 01:01:06.177000000" +"41714186","BALLI DELI & SALAD BAR","3","2616","OCEAN PARKWAY","11235","7186462822","03","2013-08-01 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41716350","FUKI SUSHI","3","8509","18 AVENUE","11214","7188378885","49","2013-02-28 00:00:00","D","04J","13","","","2013-09-13 01:01:06.177000000" +"41716444","TOTTO RAMEN","1","366","WEST 52 STREET","10019","2125820052","49","2013-06-25 00:00:00","G","08A","70","","","2013-09-13 01:01:06.177000000" +"41716841","CHO CHO SAN JAPANESE RESTAURANT INC","4","39-11","QUEENS BOULEVARD","11104","7183618232","49","2013-04-11 00:00:00","F","10F","38","","","2013-09-13 01:01:06.177000000" +"41716978","52ND SUSHI","4","52-21","ROOSEVELT AVENUE","11377","7185079204","49","2013-05-02 00:00:00","P","04L","20","","","2013-09-13 01:01:06.177000000" +"41717857","SUSHI SUSHI","1","54 ","TIEMANN PLACE ","10027","6462206766","49","2013-03-15 00:00:00","D","10F","4","","","2013-09-13 01:01:06.177000000" +"41719787","YAKINIKU GEN","1","250","EAST 52 STREET","10022","2126021129","49","2013-04-17 00:00:00","F","08A","16","","","2013-09-13 01:01:06.177000000" +"41720720","SABOR DEL AUSTRO RESTAURANT","4","580 ","SENECA AVENUE ","11385","7184176100","77","2013-05-30 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41720720","SABOR DEL AUSTRO RESTAURANT","4","580 ","SENECA AVENUE ","11385","7184176100","77","2013-05-30 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41722450","IPPUDO","1","321","WEST 51 STREET","10019","2129742500","49","2013-06-11 00:00:00","D","06C","5","","","2013-09-13 01:01:06.177000000" +"50000249","TAMASHII RAMEN","4","29-05 ","BROADWAY ","11106","7182785888","49","2013-06-10 00:00:00","P","06D","18","","","2013-09-13 01:01:06.177000000" +"50000333","AJI 53","3","170","SMITH STREET","11201","7189351166","49","2013-07-22 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"50000708","TERIYAKI JAPAN EXPRESS GRILL","3","6814","4 AVENUE","11220","7188333069","49","2013-07-01 00:00:00","D","10D","2","","","2013-09-13 01:01:06.177000000" +"50000736","GREENBAY SUSHI","1","1659","1 AVENUE","10028","2123482878","49","2013-08-06 00:00:00","F","06C","31","","","2013-09-13 01:01:06.177000000" +"50000736","GREENBAY SUSHI","1","1659","1 AVENUE","10028","2123482878","49","2013-09-09 00:00:00","U","02G","21","","","2013-09-13 01:01:06.177000000" +"50000736","GREENBAY SUSHI","1","1659","1 AVENUE","10028","2123482878","49","2013-09-09 00:00:00","U","06D","21","","","2013-09-13 01:01:06.177000000" +"50000872","ISTANBUL RESTAURANT","4","95-36","QUEENS BOULEVARD","11374","7182757555","83","2013-06-11 00:00:00","G","02B","49","","","2013-09-13 01:01:06.177000000" +"50000872","ISTANBUL RESTAURANT","4","95-36","QUEENS BOULEVARD","11374","7182757555","83","2013-06-11 00:00:00","G","10B","49","","","2013-09-13 01:01:06.177000000" +"50000898","NAGASAKI SUSHI RESTAURANT","1","109","ELDRIDGE STREET","10002","2122191555","49","2013-06-13 00:00:00","F","10B","35","","","2013-09-13 01:01:06.177000000" +"50000980","KASUMI","3","1870","86 STREET","11214","7189756999","49","2013-08-31 00:00:00","P","10F","26","","","2013-09-13 01:01:06.177000000" +"50001203","AKI SUSHI","1","212","EAST 52 STREET","10022","2128938266","49","2013-07-17 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"50001203","AKI SUSHI","1","212","EAST 52 STREET","10022","2128938266","49","2013-07-17 00:00:00","F","04J","59","","","2013-09-13 01:01:06.177000000" +"50001203","AKI SUSHI","1","212","EAST 52 STREET","10022","2128938266","49","2013-08-28 00:00:00","U","10D","21","","","2013-09-13 01:01:06.177000000" +"50001242","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2013-09-10 00:00:00","F","06D","30","","","2013-09-13 01:01:06.177000000" +"50001312","MEW","1","53","WEST 35 STREET","10001","6463689384","49","2013-08-28 00:00:00","F","05D","33","","","2013-09-13 01:01:06.177000000" +"50001312","MEW","1","53","WEST 35 STREET","10001","6463689384","49","2013-08-28 00:00:00","F","06E","33","","","2013-09-13 01:01:06.177000000" +"50001312","MEW","1","53","WEST 35 STREET","10001","6463689384","49","2013-08-28 00:00:00","F","10H","33","","","2013-09-13 01:01:06.177000000" +"40363630","LORENZO & MARIA'S","1","1418 ","THIRD AVENUE ","10028","2127941080","03","2010-10-21 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"40364299","B & M HOT BAGEL & GROCERY","5","203","GIFFORDS LANE","10308","7189668445","27","2011-10-03 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"40364576","TOUT VA BIEN","1","311","WEST 51 STREET","10019","2122650190","35","2013-01-16 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40364576","TOUT VA BIEN","1","311","WEST 51 STREET","10019","2122650190","35","2013-01-16 00:00:00","F","10J","49","","","2013-09-13 01:01:06.177000000" +"40365166","CORNER BISTRO","1","331 ","WEST 4 STREET ","10014","2122429502","03","2011-03-31 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40365166","CORNER BISTRO","1","331 ","WEST 4 STREET ","10014","2122429502","03","2011-03-31 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40366356","BLARNEY CASTLE","4","202-24","ROCKAWAY POINT BOULEVARD","11697","7186344503","03","2011-03-23 00:00:00","F","08A","49","C","2011-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"40367381","DANTE CATERERS","4","75-07","31 AVENUE","11370","7184461310","03","2011-06-07 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40367381","DANTE CATERERS","4","75-07","31 AVENUE","11370","7184461310","03","2011-06-07 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"40368370","BENJAMIN","1","603","2 AVENUE","10016","2128890750","03","2011-08-30 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40368370","BENJAMIN","1","603","2 AVENUE","10016","2128890750","03","2011-08-30 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2010-09-23 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2010-10-26 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2011-10-19 00:00:00","P","06D","19","","","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2012-08-15 00:00:00","D","10H","7","A","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"40368897","HATSUHANA RESTAURANT","1","17 ","EAST 48 STREET ","10017","2123553345","49","2013-08-09 00:00:00","P","10B","25","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2011-06-15 00:00:00","P","04L","16","","","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2011-08-10 00:00:00","D","02G","9","A","2011-08-10 00:00:00","2013-09-13 01:01:06.177000000" +"40369097","NADA-SUSHI","1","135","EAST 50 STREET","10022","2128382537","49","2012-02-06 00:00:00","F","06C","29","","","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2010-09-23 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2011-05-31 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2011-08-01 00:00:00","U","02G","13","B","2011-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2012-10-25 00:00:00","P","08A","17","","","2013-09-13 01:01:06.177000000" +"40369495","DAN TEMPURA","1","2018","BROADWAY","10023","2128775255","49","2013-06-25 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"40370880","DEWAR'S RESTAURANT","3","807","NOSTRAND AVENUE","11225","7187350062","17","2012-07-16 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"40370880","DEWAR'S RESTAURANT","3","807","NOSTRAND AVENUE","11225","7187350062","17","2012-07-16 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2011-01-24 00:00:00","F","04H","56","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2011-02-14 00:00:00","F","04A","27","C","2011-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2011-09-14 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2011-09-28 00:00:00","D","10B","5","A","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2012-04-05 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"40370935","TOKUBEI 86","1","314","EAST 86 STREET","10028","2126285334","49","2012-12-05 00:00:00","F","09B","32","","","2013-09-13 01:01:06.177000000" +"40370994","MAMA LUCIA","3","1701","FOSTER AVENUE","11230","7184349858","48","2012-08-15 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"40370994","MAMA LUCIA","3","1701","FOSTER AVENUE","11230","7184349858","48","2012-08-15 00:00:00","G","06D","49","","","2013-09-13 01:01:06.177000000" +"40370994","MAMA LUCIA","3","1701","FOSTER AVENUE","11230","7184349858","48","2012-08-15 00:00:00","G","06E","49","","","2013-09-13 01:01:06.177000000" +"40370994","MAMA LUCIA","3","1701","FOSTER AVENUE","11230","7184349858","48","2012-08-15 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"40372560","KODAMA SUSHI","1","301","WEST 45 STREET","10036","2125828065","49","2011-07-14 00:00:00","D","10F","12","A","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2011-06-27 00:00:00","D","10F","10","A","2011-06-27 00:00:00","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2011-11-03 00:00:00","P","10B","19","","","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2012-04-04 00:00:00","D","10F","12","A","2012-04-04 00:00:00","2013-09-13 01:01:06.177000000" +"40372787","SHABU-SHABU 70 RESTAURANT","1","314 ","EAST 70 STREET ","10021","2128615635","49","2013-05-20 00:00:00","G","06B","73","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2011-07-15 00:00:00","P","06A","21","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2011-09-06 00:00:00","G","06C","61","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2011-09-06 00:00:00","G","10F","61","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2013-01-23 00:00:00","F","06C","37","","","2013-09-13 01:01:06.177000000" +"40373318","SOUEN RESTAURANT","1","210","6 AVENUE","10014","2128077421","49","2013-03-06 00:00:00","F","10F","45","C","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2011-02-10 00:00:00","F","04L","54","","","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2011-02-10 00:00:00","F","06F","54","","","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2011-02-10 00:00:00","F","10F","54","","","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2011-03-24 00:00:00","U","04L","16","B","2011-03-24 00:00:00","2013-09-13 01:01:06.177000000" +"40374415","OMEN JAPANESE CUISINE","1","113","THOMPSON STREET","10012","2129258923","49","2011-03-24 00:00:00","U","08A","16","B","2011-03-24 00:00:00","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2011-03-22 00:00:00","P","02B","16","","","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2011-09-19 00:00:00","F","08C","20","","","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2011-09-27 00:00:00","U","08A","19","B","2011-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2012-01-25 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2013-03-12 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"40375403","SAPPORO EAST","1","164 ","FIRST AVENUE ","10009","2122601330","49","2013-03-12 00:00:00","P","04H","25","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2010-09-14 00:00:00","F","04C","41","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2011-05-27 00:00:00","F","02B","65","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2012-02-02 00:00:00","F","02H","34","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2012-10-04 00:00:00","P","10B","26","","","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2012-10-24 00:00:00","U","02G","26","B","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"40376944","TOMOE SHUSHI","1","172","THOMPSON STREET","10012","2127779346","49","2013-07-09 00:00:00","G","10B","53","","","2013-09-13 01:01:06.177000000" +"40377243","JOHN & JOE PIZZERIA & RESTAURANT","2","749","LYDIG AVENUE","10462","7184099776","63","2010-12-22 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40377243","JOHN & JOE PIZZERIA & RESTAURANT","2","749","LYDIG AVENUE","10462","7184099776","63","2011-12-05 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40377506","VESUVIO RESTAURANT & PIZZ","3","7303 ","3 AVENUE ","11209","7187450222","63","2011-01-04 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40377506","VESUVIO RESTAURANT & PIZZ","3","7303 ","3 AVENUE ","11209","7187450222","63","2011-01-04 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2012-09-11 00:00:00","D","04L","11","A","2012-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"40378190","NARITA JAPANESE RESTAURANT","4","107-08","70 ROAD","11375","7182632999","49","2013-04-11 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2010-10-27 00:00:00","U","08A","21","B","2010-10-27 00:00:00","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2012-02-02 00:00:00","D","06C","9","A","2012-02-02 00:00:00","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2012-06-30 00:00:00","F","06D","17","","","2013-09-13 01:01:06.177000000" +"40379628","HASAKI RESTAURANT","1","210 ","EAST 9 TH STREET ","10003","2124733327","49","2013-03-14 00:00:00","U","02B","12","B","2013-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"40379746","RESTUARANT NIPPON","1","155 ","EAST 52 STREET ","10022","2126885941","49","2010-09-14 00:00:00","C","04L","9","A","2010-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"40379746","RESTUARANT NIPPON","1","155 ","EAST 52 STREET ","10022","2126885941","49","2010-09-14 00:00:00","C","08A","9","A","2010-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"40379746","RESTUARANT NIPPON","1","155 ","EAST 52 STREET ","10022","2126885941","49","2010-09-14 00:00:00","C","09C","9","A","2010-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2010-10-07 00:00:00","P","04H","24","","","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2011-09-23 00:00:00","D","06C","10","A","2011-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2012-10-05 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"40380464","GEIDO RESTAURANT","3","331","FLATBUSH AVENUE","11217","7186368866","49","2012-12-13 00:00:00","D","10H","7","A","2012-12-13 00:00:00","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2013-06-20 00:00:00","F","04J","52","","","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2013-06-20 00:00:00","F","06D","52","","","2013-09-13 01:01:06.177000000" +"40381420","VILLAGE YOKOCHO","1","6","STUYVESANT STREET","10003","2125983041","49","2013-06-20 00:00:00","F","06E","52","","","2013-09-13 01:01:06.177000000" +"40381720","SEVEN A CAFE","1","109","AVENUE A","10009","2126736583","03","2010-02-27 09:47:00","F","04I","49","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2010-08-31 00:00:00","F","06C","21","C","2010-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2010-10-21 00:00:00","U","08A","26","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-04-25 00:00:00","F","02B","71","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-04-25 00:00:00","F","10B","71","","","2013-09-13 01:01:06.177000000" +"40384757","MISHIMA RESTAURANT","1","164","LEXINGTON AVENUE","10016","2125329596","49","2011-06-20 00:00:00","F","06B","40","C","2011-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2010-08-02 00:00:00","F","04L","21","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2010-08-11 00:00:00","U","04L","9","B","2010-08-11 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-03-23 00:00:00","F","06D","53","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-03-23 00:00:00","F","08A","53","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-10-21 00:00:00","F","04C","45","","","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-10-31 00:00:00","U","02G","12","B","2011-10-31 00:00:00","2013-09-13 01:01:06.177000000" +"40385606","SUSHIDEN","1","19","EAST 49 STREET","10017","2127582700","49","2011-10-31 00:00:00","U","08B","12","B","2011-10-31 00:00:00","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2011-04-06 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2011-04-14 00:00:00","D","10F","7","A","2011-04-14 00:00:00","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2011-10-25 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2011-10-25 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40386058","ARIRANG HIBACHI STEAK HOUSE","5","23A","NELSON AVENUE","10308","7189669600","49","2012-03-20 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"40387907","GALICIA RESTAURANT","1","4083","BROADWAY","10032","2125680168","53","2013-05-04 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2010-10-21 00:00:00","F","99B","22","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2011-08-01 00:00:00","F","10E","41","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2011-12-07 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2013-02-27 00:00:00","F","04L","36","","","2013-09-13 01:01:06.177000000" +"40388818","YAMA JAPANESE RESTAURANT'","1","122 ","EAST 17 STREET ","10003","2124750969","49","2013-02-27 00:00:00","F","06F","36","","","2013-09-13 01:01:06.177000000" +"40388935","SAKEBAR DECIBEL","1","240","EAST 9 STREET","10003","2129792733","49","2012-10-09 00:00:00","P","04L","14","","","2013-09-13 01:01:06.177000000" +"40388935","SAKEBAR DECIBEL","1","240","EAST 9 STREET","10003","2129792733","49","2013-06-26 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"40390781","JOEY'S PLACE","4","84-14","ASTORIA BOULEVARD","11370","7184784037","48","2011-08-01 00:00:00","F","10B","49","C","2011-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"40390973","MIRACALI BAKERY","4","76-04","ROOSEVELT AVENUE","11372","7187797175","08","2011-03-14 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"40391594","TAKA HASHI RESTAURANT","1","85","AVENUE A","10009","2125056524","49","2011-06-21 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"40391594","TAKA HASHI RESTAURANT","1","85","AVENUE A","10009","2125056524","49","2011-07-19 00:00:00","F","02B","19","C","2011-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"40391594","TAKA HASHI RESTAURANT","1","85","AVENUE A","10009","2125056524","49","2011-12-14 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40391594","TAKA HASHI RESTAURANT","1","85","AVENUE A","10009","2125056524","49","2012-01-10 00:00:00","U","06E","15","B","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"40391594","TAKA HASHI RESTAURANT","1","85","AVENUE A","10009","2125056524","49","2013-08-27 00:00:00","P","04L","27","","","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2012-05-16 00:00:00","P","02B","23","","","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2012-05-16 00:00:00","P","06A","23","","","2013-09-13 01:01:06.177000000" +"40391913","THE NIPPON CLUB","1","145","WEST 57 STREET","10019","2125812223","49","2012-05-16 00:00:00","P","10B","23","","","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2010-09-10 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2010-09-10 00:00:00","P","10B","24","","","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2010-11-09 00:00:00","F","06D","28","C","2010-11-09 00:00:00","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2011-10-01 00:00:00","P","06F","19","","","2013-09-13 01:01:06.177000000" +"40392800","JAPONICA RESTAURANT","1","100","UNIVERSITY PLACE","10003","2122437752","49","2011-11-21 00:00:00","D","02B","12","A","2011-11-21 00:00:00","2013-09-13 01:01:06.177000000" +"40393181","YEN YEN RESTAURANT","3","404","CHURCH AVENUE","11218","7186338711","20","2009-10-15 13:12:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"40393181","YEN YEN RESTAURANT","3","404","CHURCH AVENUE","11218","7186338711","20","2009-10-15 13:12:00","F","10G","49","","","2013-09-13 01:01:06.177000000" +"40393712","SHABU TATSU","1","216 ","EAST 10 STREET ","10003","2124772972","49","2010-10-07 00:00:00","C","09C","7","A","2010-10-07 00:00:00","2013-09-13 01:01:06.177000000" +"40393712","SHABU TATSU","1","216 ","EAST 10 STREET ","10003","2124772972","49","2012-08-29 00:00:00","F","04H","15","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-04-05 14:04:00","F","06C","29","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2010-10-19 00:00:00","P","08C","17","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2011-04-05 00:00:00","F","02G","37","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2011-04-29 00:00:00","D","06A","13","A","2011-04-29 00:00:00","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2011-04-29 00:00:00","D","06B","13","A","2011-04-29 00:00:00","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2012-07-30 00:00:00","P","04L","24","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2012-07-30 00:00:00","P","06D","24","","","2013-09-13 01:01:06.177000000" +"40393789","RAMEN TAKUMI","1","90","UNIVERSITY PLACE","10003","2122292752","49","2012-08-16 00:00:00","F","04L","29","C","2012-08-16 00:00:00","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2010-11-30 00:00:00","C","10H","13","A","2010-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2012-11-20 00:00:00","P","08C","20","","","2013-09-13 01:01:06.177000000" +"40394560","MARUMI","1","546","LA GUARDIA PLACE","10012","2129797055","49","2012-12-19 00:00:00","U","06C","25","B","2012-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"40396267","ARHARN THAI CUISINE","4","32-05","36 AVENUE","11106","7187285563","82","2011-09-21 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40397108","OSAKA SUSHI","5","1440","FOREST AVENUE","10302","7187272211","49","2012-08-21 00:00:00","P","06C","23","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2011-07-13 00:00:00","F","06C","39","","","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2012-01-03 00:00:00","D","06E","13","A","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"40397180","SOUEN RESTAURANT","1","28","EAST 13 STREET","10003","2126277150","49","2012-06-15 00:00:00","U","06A","12","B","2012-06-15 00:00:00","2013-09-13 01:01:06.177000000" +"40397504","RISQUE BILLARDS LOUNGE CAFE","3","213","MCGUINNESS BOULEVARD","11222","7183491445","03","2013-02-20 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"40397504","RISQUE BILLARDS LOUNGE CAFE","3","213","MCGUINNESS BOULEVARD","11222","7183491445","03","2013-02-20 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2011-03-15 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2011-03-31 00:00:00","F","05D","39","C","2011-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2011-08-08 00:00:00","P","02B","23","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2012-02-21 00:00:00","D","10B","11","A","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2013-03-02 00:00:00","P","02B","13","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2013-09-03 00:00:00","F","04N","33","","","2013-09-13 01:01:06.177000000" +"40397520","SHARAKU JAPANESE RESTAURANT","1","14","STUYVESANT STREET","10003","2125980403","49","2013-09-03 00:00:00","F","08A","33","","","2013-09-13 01:01:06.177000000" +"40398572","DINASTIA CHINA","1","145","WEST 72 STREET","10023","2123623801","20","2012-03-06 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"40398913","MUMBLES","1","200 ","EAST 17 STREET ","10003","2124776066","03","2013-09-03 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2010-12-28 00:00:00","P","02G","15","","","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2012-02-21 00:00:00","F","04M","20","C","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2012-07-02 00:00:00","F","04N","66","","","2013-09-13 01:01:06.177000000" +"40400049","PANYA/THE BARREL","1","8-10","STUYVESANT STREET","10003","2125980402","49","2012-07-02 00:00:00","F","08A","66","","","2013-09-13 01:01:06.177000000" +"40400366","VIN ET FLEURS","1","69","THOMPSON STREET","10012","2129665417","35","2013-05-21 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40401217","CITY CRAB","1","235","PARK AVENUE SOUTH","10003","2125293800","72","2012-06-05 00:00:00","F","04M","49","C","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"40401834","COLUMBUS GOURMENT FOODS","1","261","COLUMBUS AVE STORE #2","10023","2127217800","03","2011-02-25 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40401834","COLUMBUS GOURMENT FOODS","1","261","COLUMBUS AVE STORE #2","10023","2127217800","03","2011-02-25 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40401946","NOBU","1","105","HUDSON STREET","10013","2122190500","49","2012-05-24 00:00:00","D","10E","12","A","2012-05-24 00:00:00","2013-09-13 01:01:06.177000000" +"40424515","PASTICCERIA LA TORRE","4","158-12","CROSSBAY BOULEVARD","11414","7188432306","08","2011-09-02 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"40424515","PASTICCERIA LA TORRE","4","158-12","CROSSBAY BOULEVARD","11414","7188432306","08","2011-09-02 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"40512258","BLUE RIBBON SUSHI","1","119","SULLIVAN STREET","10012","2123430404","49","2011-01-19 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"40512258","BLUE RIBBON SUSHI","1","119","SULLIVAN STREET","10012","2123430404","49","2011-02-14 00:00:00","U","10F","11","B","2011-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"40512852","DOC WATSONS","1","1490 ","2 AVENUE ","10075","2129885300","03","2011-09-14 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"40512852","DOC WATSONS","1","1490 ","2 AVENUE ","10075","2129885300","03","2011-09-14 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40515590","E-DAH KOREAN BBQ LOUNGE","4","160-34","NORTHERN BOULEVARD","11358","7184457276","52","2013-05-19 00:00:00","F","03B","49","","","2013-09-13 01:01:06.177000000" +"40515590","E-DAH KOREAN BBQ LOUNGE","4","160-34","NORTHERN BOULEVARD","11358","7184457276","52","2013-05-19 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2010-09-08 00:00:00","P","08C","22","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2011-06-28 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2012-02-15 00:00:00","F","08C","44","","","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2012-03-15 00:00:00","U","10B","7","B","2012-03-15 00:00:00","2013-09-13 01:01:06.177000000" +"40516149","AZUSA OF JAPAN","1","3","EAST 44 STREET","10017","2126810001","49","2012-08-07 00:00:00","F","06D","21","","","2013-09-13 01:01:06.177000000" +"40525767","CAPRI II PIZZA","2","149","DREISER LOOP","10475","7186713822","62","2012-06-14 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40525767","CAPRI II PIZZA","2","149","DREISER LOOP","10475","7186713822","62","2012-06-14 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2012-04-17 00:00:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2012-12-03 00:00:00","F","04L","23","","","2013-09-13 01:01:06.177000000" +"40534442","SUSHI FAMILY","4","252-01","NORTHERN BOULEVARD","11362","7182290110","49","2012-12-03 00:00:00","F","10F","23","","","2013-09-13 01:01:06.177000000" +"40538089","IPANEMA RESTAURANT","1","13 ","WEST 46 STREET ","10036","2127305848","53","2012-09-05 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2012-01-26 00:00:00","F","06A","41","","","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2012-01-26 00:00:00","F","10B","41","","","2013-09-13 01:01:06.177000000" +"40542427","SAKAGURA","1","211","EAST 43 STREET","10017","2129537253","49","2012-07-06 00:00:00","P","09B","4","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2010-05-20 14:30:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2010-05-20 14:30:00","F","09B","32","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2011-01-11 00:00:00","U","04L","21","B","2011-01-11 00:00:00","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2011-07-01 00:00:00","P","06E","19","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2011-11-29 00:00:00","D","08A","12","A","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2012-04-10 00:00:00","P","04H","23","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2012-04-10 00:00:00","P","06C","23","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2012-09-11 00:00:00","P","10J","20","","","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2012-10-01 00:00:00","D","06E","12","A","2012-10-01 00:00:00","2013-09-13 01:01:06.177000000" +"40545227","ARIYOSHI JAPANESE RESTAURANT","4","41-13","QUEENS BOULEVARD","11104","7189373288","49","2013-04-11 00:00:00","P","10B","25","","","2013-09-13 01:01:06.177000000" +"40547014","VESPA CIBOBUONO","1","1625 ","SECOND AVENUE ","10028","2124722050","48","2011-04-18 00:00:00","F","09A","49","","","2013-09-13 01:01:06.177000000" +"40550150","AKIYAMA JAPANESE RESTAURANT","4","132-16","14 AVENUE","11356","7187470529","49","2011-06-02 00:00:00","D","10F","4","A","2011-06-02 00:00:00","2013-09-13 01:01:06.177000000" +"40550155","PARISI BAKERY","1","198","MOTT STREET","10012","2122266378","27","2010-11-30 00:00:00","F","04H","49","C","2010-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"40554369","AM","3","7221","3 AVENUE","11209","7189215869","03","2011-08-18 00:00:00","F","08B","49","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2010-09-08 00:00:00","F","02G","18","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2011-10-05 00:00:00","F","04N","36","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2011-10-05 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2011-10-05 00:00:00","F","10I","36","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-11 00:00:00","G","04L","87","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-12 00:00:00","W","04L","21","","","2013-09-13 01:01:06.177000000" +"40560896","YAKITORI TAISHO","1","5","ST MARKS PLACE","10003","2122285086","49","2012-10-19 00:00:00","O","10F","4","C","2012-10-19 00:00:00","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2010-10-19 00:00:00","F","02B","38","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2012-05-15 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"40561058","MIYAGI JAPANESE HOME COOKING","1","220","WEST 13 STREET","10011","2126203830","49","2012-05-15 00:00:00","F","10H","28","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2010-08-04 00:00:00","F","05D","69","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2010-08-04 00:00:00","F","10F","69","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-01-31 00:00:00","F","06E","34","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-06-15 00:00:00","P","04M","23","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-06-15 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-11-03 00:00:00","F","06C","16","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2011-12-29 00:00:00","U","06A","11","B","2011-12-29 00:00:00","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2012-04-23 00:00:00","P","04L","13","","","2013-09-13 01:01:06.177000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2012-05-02 00:00:00","U","10F","20","B","2012-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"40568285","LA CARIDAD 78","1","2197-2199","BROADWAY","10024","2128742780","21","2011-11-15 00:00:00","F","02B","49","C","2011-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-08-30 00:00:00","U","05D","12","B","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-08-30 00:00:00","U","10B","12","B","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"40570878","NOODLE CAFE ZEN","1","31","SAINT MARK'S PLACE","10003","2125336855","49","2011-12-05 00:00:00","G","04M","48","","","2013-09-13 01:01:06.177000000" +"40573929","ARABELLE","1","37 ","EAST 64 STREET ","10065","2126064600","03","2011-04-09 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2012-10-03 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2013-06-25 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"40577928","SUSHI OF GARI","1","402 ","EAST 78 STREET ","10075","2125175340","49","2013-06-25 00:00:00","P","02G","14","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2011-04-06 00:00:00","P","09B","21","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2011-04-26 00:00:00","F","04L","30","C","2011-04-26 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2011-08-17 00:00:00","P","04C","19","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-04-16 00:00:00","F","10B","33","C","2012-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-08-06 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-08-06 00:00:00","F","10H","29","","","2013-09-13 01:01:06.177000000" +"40580639","UDON WEST","1","11","ST MARKS PLACE","10003","6466915269","49","2012-09-05 00:00:00","F","02G","29","C","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"40581298","EL FARO RESTAURANT","1","823","GREENWICH STREET","10014","2129298210","53","2012-04-20 00:00:00","F","03C","49","","","2013-09-13 01:01:06.177000000" +"40584813","HOP WON EXPRESS","1","139","EAST 45 STREET","10017","2126614280","20","2011-04-13 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40592791","KRISPY PIZZERIA","3","7112","13 AVENUE","11228","7187459618","63","2011-10-19 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40592791","KRISPY PIZZERIA","3","7112","13 AVENUE","11228","7187459618","63","2011-10-19 00:00:00","F","05F","49","","","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2011-12-15 00:00:00","U","04L","14","B","2011-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2011-12-15 00:00:00","U","10F","14","B","2011-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2012-06-07 00:00:00","D","06A","13","A","2012-06-07 00:00:00","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2012-12-04 00:00:00","F","06F","30","","","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2012-12-04 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"40594703","RESTAURANT RIKI","1","141","EAST 45 STREET","10017","2129865604","49","2013-06-26 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2011-03-01 00:00:00","P","02G","13","","","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2013-02-28 00:00:00","P","06B","16","","","2013-09-13 01:01:06.177000000" +"40594741","MONSTER SUSHI","1","158","WEST 23 STREET","10011","2126209131","49","2013-08-29 00:00:00","P","10F","27","","","2013-09-13 01:01:06.177000000" +"40596377","LOS PAPIS RESTAURANT","3","77","BRIDGE STREET","11201","7185966965","53","2012-11-29 00:00:00","F","04L","49","C","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40596377","LOS PAPIS RESTAURANT","3","77","BRIDGE STREET","11201","7185966965","53","2012-11-29 00:00:00","F","06C","49","C","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2011-02-08 00:00:00","F","06D","27","","","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2011-02-24 00:00:00","D","10H","12","A","2011-02-24 00:00:00","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2011-07-25 00:00:00","U","02G","21","B","2011-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2011-07-25 00:00:00","U","99B","21","B","2011-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2011-12-05 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2012-07-31 00:00:00","F","02B","23","","","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2012-07-31 00:00:00","F","04C","23","","","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2012-08-16 00:00:00","U","04N","20","B","2012-08-16 00:00:00","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2012-08-16 00:00:00","U","08A","20","B","2012-08-16 00:00:00","2013-09-13 01:01:06.177000000" +"40602670","SOBA-YA","1","229 ","EAST 9 STREET ","10003","2125336966","49","2013-03-21 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"40612297","ISE JAPANESE RESTAURANT","1","58","WEST 56 STREET","10019","2127078702","49","2010-11-10 00:00:00","C","02G","9","A","2010-11-10 00:00:00","2013-09-13 01:01:06.177000000" +"40616388","GLATT KOSHER FAMILY CHINESE RESTAURANT","3","4305","18 AVENUE","11218","7189728085","20","2011-12-20 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40619267","LITTLE VINCENT'S PIZZA RESTAURANT","1","1399","2 AVENUE","10021","2122490120","62","2010-10-21 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40619267","LITTLE VINCENT'S PIZZA RESTAURANT","1","1399","2 AVENUE","10021","2122490120","62","2010-10-21 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2013-03-21 00:00:00","D","02B","9","A","2013-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"40620119","PLANET SUSHI","1","200","WEST 79 STREET","10024","2127122162","49","2013-03-21 00:00:00","D","10B","9","A","2013-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"40620325","BOND ST","1","6","BOND STREET","10012","2127772500","49","2012-02-21 00:00:00","D","08A","12","A","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2010-12-23 00:00:00","C","06E","6","A","2010-12-23 00:00:00","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2011-04-27 00:00:00","F","06C","46","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2011-09-28 00:00:00","U","06D","11","B","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2012-04-24 00:00:00","F","09B","26","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-03-25 00:00:00","F","09B","73","","","2013-09-13 01:01:06.177000000" +"40644364","KUM GANG SAN KOREAN RESTAURANT","1","49","WEST 32 STREET","10001","2129670909","52","2013-04-03 00:00:00","F","06F","27","C","2013-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"40660138","NOBU NEXT DOOR","1","105","HUDSON STREET","10013","2123349869","49","2012-05-15 00:00:00","D","02G","12","A","2012-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"40660138","NOBU NEXT DOOR","1","105","HUDSON STREET","10013","2123349869","49","2012-05-15 00:00:00","D","10H","12","A","2012-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"40662783","SUGIYAMA RESTAURANT","1","251","WEST 55 STREET","10019","2129560670","49","2013-02-19 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"40665792","HATSUHANA","1","237","PARK AVENUE","10017","2126613400","49","2010-05-12 14:34:00","F","02G","57","","","2013-09-13 01:01:06.177000000" +"40670353","DUKE'S","1","560","3 AVENUE","10016","2129495400","03","2011-08-01 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2011-10-13 00:00:00","F","06E","28","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2012-02-22 00:00:00","P","06C","16","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2012-10-01 00:00:00","G","02B","45","","","2013-09-13 01:01:06.177000000" +"40672460","HANA SUSHI","1","211","7 AVENUE","10011","2126209950","49","2012-10-01 00:00:00","G","04M","45","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2012-07-20 00:00:00","P","04L","23","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2012-07-20 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"40674704","YAMA","1","38-40","CARMINE STREET","10014","2129899330","49","2012-08-01 00:00:00","U","02G","12","B","2012-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"40690019","MODERN GOURMET","1","793","BROADWAY","10003","2126770047","03","2010-08-05 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2010-10-20 00:00:00","P","06E","22","","","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2010-12-20 00:00:00","F","04C","28","C","2010-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2011-06-30 00:00:00","U","02G","10","B","2011-06-30 00:00:00","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2012-01-05 00:00:00","F","02B","29","","","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2012-06-25 00:00:00","P","02B","23","","","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2012-12-19 00:00:00","P","04C","20","","","2013-09-13 01:01:06.177000000" +"40698892","15 EAST RESTAURANT","1","15","EAST 15 STREET","10003","2126470015","49","2013-04-19 00:00:00","U","02G","8","","","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2012-07-24 00:00:00","F","04H","36","","","2013-09-13 01:01:06.177000000" +"40704315","AKI ON WEST 4TH","1","181","WEST 4 STREET","10014","2129895440","49","2012-08-09 00:00:00","U","02G","7","B","2012-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"40704853","B.B. KINGS","1","243","WEST 42 STREET","10036","2129971144","03","2012-04-10 00:00:00","F","05D","49","C","2012-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2011-10-25 00:00:00","F","02G","47","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2012-08-20 00:00:00","D","04L","12","A","2012-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2012-08-20 00:00:00","D","08A","12","A","2012-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2013-08-01 00:00:00","F","02B","35","","","2013-09-13 01:01:06.177000000" +"40709888","PEARL CAFE","1","49","FULTON STREET","10038","2129641862","20","2013-08-01 00:00:00","F","10B","35","","","2013-09-13 01:01:06.177000000" +"40712055","JNS PIZZA","1","2032","LEXINGTON AVENUE","10035","2124260415","62","2010-10-18 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"40712055","JNS PIZZA","1","2032","LEXINGTON AVENUE","10035","2124260415","62","2010-10-18 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"40717261","HONG FUNG BAKERY","3","5124","8 AVENUE","11220","7188546290","08","2010-04-13 11:48:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40718835","TRIOMPHE","1","49","WEST 44 STREET","10036","2124534033","03","2012-08-13 00:00:00","P","04C","22","","","2013-09-13 01:01:06.177000000" +"40720283","BANJARA INDIAN RESTAURANT","1","344","EAST 6 STREET","10003","2124775956","44","2012-10-02 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2010-10-20 00:00:00","D","10F","5","A","2010-10-20 00:00:00","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2012-10-18 00:00:00","G","05D","95","","","2013-09-13 01:01:06.177000000" +"40720423","SOBA NIPPON JAPANESE RESTAURANT","1","666","5 AVENUE","10019","2124892525","49","2012-10-22 00:00:00","O","10F","12","P","2012-10-22 00:00:00","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2010-11-15 00:00:00","U","04C","7","B","2010-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2011-06-03 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"40720887","SUSHI SAMBA","1","247A","PARK AVENUE SOUTH","10003","2124759377","49","2011-11-21 00:00:00","P","10F","25","","","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2011-02-22 00:00:00","F","04L","12","C","2011-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2011-08-18 00:00:00","P","04L","17","","","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2011-12-22 00:00:00","P","04A","10","","","2013-09-13 01:01:06.177000000" +"40723281","OTAFUKU","1","236","EAST 9 STREET","10003","2123538503","49","2013-05-22 00:00:00","F","08A","25","","","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2012-04-25 00:00:00","F","08C","24","C","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2012-06-21 00:00:00","P","04L","16","","","2013-09-13 01:01:06.177000000" +"40725787","MASATO","1","NKA ","GRAND CENTRAL STATION ","10017","2129723688","49","2012-06-21 00:00:00","P","06F","16","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-03-21 00:00:00","F","02B","46","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-03-21 00:00:00","F","06E","46","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-04-12 00:00:00","D","10D","7","A","2011-04-12 00:00:00","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2011-12-29 00:00:00","D","10F","2","A","2011-12-29 00:00:00","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2013-03-06 00:00:00","F","06B","31","","","2013-09-13 01:01:06.177000000" +"40729002","SAJI'S JAPANESE FOOD","1","256","WEST 109 STREET","10025","2127491834","49","2013-03-06 00:00:00","F","10B","31","","","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2011-08-02 00:00:00","D","10F","6","A","2011-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2011-12-12 00:00:00","P","04L","16","","","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2012-06-12 00:00:00","D","08A","13","A","2012-06-12 00:00:00","2013-09-13 01:01:06.177000000" +"40731939","SATOYA JAPANESE RESTAURANT","4","98-12","QUEENS BOULEVARD","11374","7188971788","49","2012-12-26 00:00:00","U","04C","13","B","2012-12-26 00:00:00","2013-09-13 01:01:06.177000000" +"40733383","HARU","1","433","AMSTERDAM AVENUE","10024","2125795655","49","2013-05-08 00:00:00","P","08A","15","","","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2011-06-21 00:00:00","F","02B","45","","","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2011-06-21 00:00:00","F","08A","45","","","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2012-01-05 00:00:00","P","04N","18","","","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2012-01-05 00:00:00","P","06F","18","","","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2012-01-05 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2012-05-23 00:00:00","D","02G","13","A","2012-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2012-05-23 00:00:00","D","10H","13","A","2012-05-23 00:00:00","2013-09-13 01:01:06.177000000" +"40733386","HARU","1","1329 ","3 AVENUE ","10075","2124522230","49","2013-05-29 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"40748291","MARTINEZ RESTAURANT & CUCHIFRITO","2","2037","JEROME AVENUE","10453","7187319423","53","2010-06-14 08:58:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40748291","MARTINEZ RESTAURANT & CUCHIFRITO","2","2037","JEROME AVENUE","10453","7187319423","53","2010-06-14 08:58:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40756253","BEST DELI CAFE","3","986","ATLANTIC AVENUE","11238","7183983130","03","2011-05-23 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40756253","BEST DELI CAFE","3","986","ATLANTIC AVENUE","11238","7183983130","03","2011-05-23 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"40781520","PRET A MANGER","1","60","BROAD STREET","10004","2128258825","69","2013-07-26 00:00:00","G","09C","49","","","2013-09-13 01:01:06.177000000" +"40783989","HANOVER GOURMET DELI","1","3","HANOVER SQUARE","10004","2127973776","27","2010-03-24 09:04:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"40788706","KELLY'S RESTAURANT & PIZZA","4","169-75","137 AVENUE","11434","7187231080","03","2011-10-28 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2011-05-26 00:00:00","F","06A","28","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2011-05-26 00:00:00","F","10B","28","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2011-10-31 00:00:00","P","06A","21","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2012-03-22 00:00:00","F","04L","38","","","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2012-09-10 00:00:00","D","10B","9","A","2012-09-10 00:00:00","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2013-02-22 00:00:00","U","10B","12","B","2013-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"40797452","SUSHI SAMBA #7","1","87","7 AVENUE SOUTH","10014","2126917885","49","2013-07-29 00:00:00","P","05D","26","","","2013-09-13 01:01:06.177000000" +"40799031","SECTION 5 PIZZA RESTAURANT","2","133","EINSTEIN LOOP","10475","7183203887","03","2010-08-25 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40799031","SECTION 5 PIZZA RESTAURANT","2","133","EINSTEIN LOOP","10475","7183203887","03","2010-08-25 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40799031","SECTION 5 PIZZA RESTAURANT","2","133","EINSTEIN LOOP","10475","7183203887","03","2010-08-25 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-04-13 00:00:00","F","02B","58","","","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-11-02 00:00:00","U","04M","19","B","2011-11-02 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2011-11-02 00:00:00","U","06C","19","B","2011-11-02 00:00:00","2013-09-13 01:01:06.177000000" +"40809799","TATANY 72","1","1400","2 AVENUE","10021","2124721700","49","2012-10-02 00:00:00","F","02B","34","","","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2011-03-11 00:00:00","P","06A","26","","","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2012-05-14 00:00:00","F","02G","21","","","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2012-05-21 00:00:00","D","10I","11","A","2012-05-21 00:00:00","2013-09-13 01:01:06.177000000" +"40811513","MONSTER SUSHI","1","22","WEST 46 STREET","10036","2123987707","49","2012-10-22 00:00:00","P","02H","18","","","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2010-11-16 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2011-07-12 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2012-02-28 00:00:00","F","04C","14","","","2013-09-13 01:01:06.177000000" +"40812483","SUSHI DAMO","1","330A","WEST 58 STREET","10019","2127078609","49","2012-08-06 00:00:00","F","04L","29","C","2012-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2011-10-04 00:00:00","F","06C","44","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-03-13 00:00:00","F","06C","17","C","2012-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-08-16 00:00:00","F","04N","31","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-08-16 00:00:00","F","06E","31","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-08-16 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"40812946","TSUKUSHI RESTAURANT","1","300","EAST 41 STREET","10017","2125998888","49","2012-08-16 00:00:00","F","08B","31","","","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2011-01-03 00:00:00","C","09C","7","A","2011-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2011-12-28 00:00:00","F","05D","43","","","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2012-05-25 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"40815044","IRON CHEF HOUSE","3","92","CLARK STREET","11201","7188588517","49","2012-06-05 00:00:00","U","08A","18","B","2012-06-05 00:00:00","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2012-02-07 00:00:00","F","06C","34","","","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2012-04-11 00:00:00","F","10B","25","C","2012-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2012-09-18 00:00:00","P","06D","27","","","2013-09-13 01:01:06.177000000" +"40816162","JEWEL BAKO","1","239","EAST 5 STREET","10003","2129791012","49","2012-10-16 00:00:00","D","06A","12","A","2012-10-16 00:00:00","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2010-10-19 00:00:00","F","10F","70","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2010-12-21 00:00:00","C","99B","9","A","2010-12-21 00:00:00","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2011-04-27 00:00:00","P","10B","23","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2012-08-16 00:00:00","F","04N","53","","","2013-09-13 01:01:06.177000000" +"40821641","SEO JAPANESE RESTAURANT","1","249","EAST 49 STREET","10017","2123557722","49","2012-08-16 00:00:00","F","08A","53","","","2013-09-13 01:01:06.177000000" +"40826684","WU LIANG YE RESTAURANT","1","36","WEST 48 STREET","10036","2123982308","20","2011-07-26 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2010-04-09 12:12:00","U","04N","7","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2010-04-09 12:12:00","U","08A","7","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2010-12-20 00:00:00","F","04L","36","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2010-12-20 00:00:00","F","06F","36","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2011-10-06 00:00:00","D","08A","10","A","2011-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2012-02-28 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"40829831","KO-SUSHI JAPANESE RESTAURANT","1","1619","YORK AVENUE","10028","2127728838","49","2013-03-06 00:00:00","F","06D","30","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2010-12-07 00:00:00","U","06C","21","B","2010-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2011-05-25 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"40832580","EAST JAPANESE RESTAURANT/ BAR","1","253","WEST 55 STREET","10019","2125812240","49","2012-06-28 00:00:00","F","08A","51","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2011-08-03 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2011-12-14 00:00:00","F","04L","28","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2011-12-14 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2012-05-21 00:00:00","F","06B","43","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2012-12-11 00:00:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"40833851","EAST JAPANESE RESTAURANT","1","210","EAST 44 STREET","10017","2126875075","49","2013-05-30 00:00:00","F","08A","42","","","2013-09-13 01:01:06.177000000" +"40835712","FIRENZE","1","1594","2 AVENUE","10028","2128619368","48","2012-03-08 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"40838693","BUBBY'S","1","120","HUDSON STREET","10013","2122190666","03","2011-07-29 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"40838693","BUBBY'S","1","120","HUDSON STREET","10013","2122190666","03","2011-07-29 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40838693","BUBBY'S","1","120","HUDSON STREET","10013","2122190666","03","2011-07-29 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40840921","CONNOLLY'S CORNER","4","71-15","GRAND AVENUE","11378","7185657383","03","2013-05-16 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"40841152","ABIR HALAL RESTAURANT","3","526","NOSTRAND AVENUE","11216","7187896181","03","2011-05-16 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2011-03-08 00:00:00","D","10F","13","A","2011-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2011-08-24 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2011-09-27 00:00:00","U","06C","23","B","2011-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"40848143","WAKAMATSU JAPANESE RESTAURANT","4","70-18","GRAND AVENUE","11378","7188986800","49","2012-02-15 00:00:00","P","10B","20","","","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2012-04-24 00:00:00","P","10B","25","","","2013-09-13 01:01:06.177000000" +"40849119","HARU SAKE BAR","1","1327","3 AVENUE","10021","2124521028","49","2012-10-02 00:00:00","F","06F","40","","","2013-09-13 01:01:06.177000000" +"40849391","ENNJU","1","20","EAST 17 STREET","10003","6463367004","49","2012-01-10 00:00:00","F","06C","29","","","2013-09-13 01:01:06.177000000" +"40853737","THE NEW THOMPSON DINER","4","32-44","QUEENS BOULEVARD","11101","7183920692","03","2012-12-27 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40853737","THE NEW THOMPSON DINER","4","32-44","QUEENS BOULEVARD","11101","7183920692","03","2012-12-27 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2011-07-12 00:00:00","F","04M","19","C","2011-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2011-07-12 00:00:00","F","10F","19","C","2011-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2012-01-25 00:00:00","F","04H","26","C","2012-01-25 00:00:00","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2012-06-27 00:00:00","F","08A","51","","","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2013-02-28 00:00:00","P","04L","13","","","2013-09-13 01:01:06.177000000" +"40855243","YUKO NYC","1","1531","YORK AVENUE","10028","2129885800","49","2013-02-28 00:00:00","P","06F","13","","","2013-09-13 01:01:06.177000000" +"40865169","GINGER","1","109","1 AVENUE","10003","2122606223","49","2011-01-25 00:00:00","P","02G","12","","","2013-09-13 01:01:06.177000000" +"40865169","GINGER","1","109","1 AVENUE","10003","2122606223","49","2011-09-13 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"40865169","GINGER","1","109","1 AVENUE","10003","2122606223","49","2012-04-10 00:00:00","P","02B","7","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2010-08-16 00:00:00","F","06E","32","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2010-09-14 00:00:00","U","08A","21","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-03-01 00:00:00","F","99B","43","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2011-09-15 00:00:00","F","02G","31","C","2011-09-15 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2012-02-03 00:00:00","F","08A","51","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2012-07-30 00:00:00","U","02G","10","B","2012-07-30 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2013-01-11 00:00:00","G","04M","78","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2013-01-11 00:00:00","G","10B","78","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2013-02-12 00:00:00","D","10H","9","A","2013-02-12 00:00:00","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2013-07-15 00:00:00","G","02B","59","","","2013-09-13 01:01:06.177000000" +"40871763","CAFE ZAIYA","1","18","EAST 41 STREET","10017","2127790600","49","2013-07-15 00:00:00","G","05F","59","","","2013-09-13 01:01:06.177000000" +"40878403","SOY","1","102","SUFFOLK STREET","10002","2122531158","49","2010-08-10 00:00:00","P","10B","9","","","2013-09-13 01:01:06.177000000" +"40878403","SOY","1","102","SUFFOLK STREET","10002","2122531158","49","2010-11-09 00:00:00","U","06D","5","B","2010-11-09 00:00:00","2013-09-13 01:01:06.177000000" +"40878403","SOY","1","102","SUFFOLK STREET","10002","2122531158","49","2012-04-27 00:00:00","D","10F","7","A","2012-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"40878590","SAPPORO RESTAURANT","1","152","WEST 49 STREET","10019","2128698972","49","2011-11-17 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"40878590","SAPPORO RESTAURANT","1","152","WEST 49 STREET","10019","2128698972","49","2011-11-17 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"40878590","SAPPORO RESTAURANT","1","152","WEST 49 STREET","10019","2128698972","49","2013-01-17 00:00:00","D","02B","12","A","2013-01-17 00:00:00","2013-09-13 01:01:06.177000000" +"40889792","ETHOS GREEK CUISINE","1","495","3 AVENUE","10016","2122520972","38","2011-05-12 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"40897418","NB. NATIONAL BAKERY","2","1193","WALTON AVENUE","10452","7185375105","08","2013-02-13 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"40899971","SUSHI ZEN","1","108","WEST 44 STREET","10036","2123020707","49","2012-05-15 00:00:00","D","10F","11","A","2012-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2011-04-29 00:00:00","F","02G","64","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2011-04-29 00:00:00","F","10H","64","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2011-07-22 00:00:00","U","02G","18","B","2011-07-22 00:00:00","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2013-07-10 00:00:00","F","02B","47","","","2013-09-13 01:01:06.177000000" +"40911251","SUSHI SEKI","1","1143 ","1 AVENUE ","10065","2123710238","49","2013-07-10 00:00:00","F","06A","47","","","2013-09-13 01:01:06.177000000" +"40913721","CAFE VIRGO","1","249","EAST 49 STREET","10017","2124211238","49","2011-07-14 00:00:00","D","10B","4","A","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2011-12-20 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2013-02-26 00:00:00","F","02G","54","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2013-02-26 00:00:00","F","04H","54","","","2013-09-13 01:01:06.177000000" +"40914031","ISE RESTAURANT","1","56","PINE STREET","10005","2127851600","49","2013-08-19 00:00:00","F","06D","34","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2010-11-23 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2012-01-10 00:00:00","U","06D","18","B","2012-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2012-06-01 00:00:00","U","04M","19","B","2012-06-01 00:00:00","2013-09-13 01:01:06.177000000" +"40921710","ROCHAMBEAU WEST INDIAN & AMERICAN RESTAURANT","2","3505","ROCHAMBEAU AVENUE","10467","7189942566","17","2011-04-04 00:00:00","G","04K","49","","","2013-09-13 01:01:06.177000000" +"40921710","ROCHAMBEAU WEST INDIAN & AMERICAN RESTAURANT","2","3505","ROCHAMBEAU AVENUE","10467","7189942566","17","2011-04-04 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"40921710","ROCHAMBEAU WEST INDIAN & AMERICAN RESTAURANT","2","3505","ROCHAMBEAU AVENUE","10467","7189942566","17","2011-04-04 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"40926520","HAKUBAI, JAZZ at KITANO, BAR LOUNGE","1","66","PARK AVENUE","10016","2128857000","49","2011-11-17 00:00:00","F","10B","35","","","2013-09-13 01:01:06.177000000" +"40927698","YOKOHAMA JAPANESE RESTAURANT","2","438","WEST 238 STREET","10463","7185492606","49","2012-06-20 00:00:00","F","04J","48","","","2013-09-13 01:01:06.177000000" +"40927881","OLIVE GARDEN","1","696","AVENUE OF THE AMERICAS","10010","2122551240","48","2013-03-30 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2011-03-29 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2011-03-29 00:00:00","F","09C","30","","","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2011-05-11 00:00:00","F","02G","9","C","2011-05-11 00:00:00","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2012-10-23 00:00:00","D","04C","12","A","2012-10-23 00:00:00","2013-09-13 01:01:06.177000000" +"40929922","SUSHIANN","1","38","EAST 51 STREET","10022","2127551780","49","2012-10-23 00:00:00","D","06C","12","A","2012-10-23 00:00:00","2013-09-13 01:01:06.177000000" +"40933887","PEEP","1","177","PRINCE STREET","10012","2122547337","82","2013-03-28 00:00:00","G","09B","49","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2010-12-13 00:00:00","F","04L","36","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2011-12-16 00:00:00","P","08C","22","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2012-09-11 00:00:00","D","10B","12","A","2012-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2013-02-06 00:00:00","P","06E","12","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2013-08-28 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"40934037","JIKJI CAFE","4","NKA ","JFK AIRPORT ","11430","7187512003","49","2013-08-28 00:00:00","P","10I","19","","","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2010-10-04 00:00:00","C","04L","5","A","2010-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"40941636","HIROKO'S PLACE","1","75","THOMPSON STREET","10012","2126251303","49","2012-02-08 00:00:00","D","06E","11","A","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"40945916","CALIBELLA BAKERY","3","164","WYCKOFF AVENUE","11237","7184973614","08","2012-07-25 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"40945916","CALIBELLA BAKERY","3","164","WYCKOFF AVENUE","11237","7184973614","08","2012-07-25 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2012-01-10 00:00:00","P","04L","24","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2012-01-10 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2012-06-21 00:00:00","F","02G","37","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2012-06-21 00:00:00","F","08A","37","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2012-07-02 00:00:00","U","02B","17","B","2012-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2012-07-02 00:00:00","U","04M","17","B","2012-07-02 00:00:00","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-01-24 00:00:00","F","04M","29","","","2013-09-13 01:01:06.177000000" +"40948878","OYAMA JAPANESE RESTAURANT","1","188","1 AVENUE","10009","2127771989","49","2013-08-08 00:00:00","F","02G","33","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2010-11-23 00:00:00","F","06F","48","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2011-04-25 00:00:00","F","08A","42","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2011-04-25 00:00:00","F","08B","42","","","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2011-06-22 00:00:00","F","06F","23","C","2011-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"40951329","TAKAHACHI TRIBECA","1","145","DUANE STREET","10013","2125711830","49","2012-12-05 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2011-03-31 00:00:00","F","02G","46","","","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2011-05-06 00:00:00","U","10B","15","B","2011-05-06 00:00:00","2013-09-13 01:01:06.177000000" +"40956001","UMI SUSHI JAPANESE CUISINE","1","118","EAST 31 STREET","10016","2126863308","49","2011-09-14 00:00:00","P","02G","26","","","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2012-02-01 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"40957382","SUPERCORE","3","305","BEDFORD AVENUE","11211","7183021629","49","2013-08-14 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2010-11-12 00:00:00","U","04N","22","B","2010-11-12 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2010-11-12 00:00:00","U","08A","22","B","2010-11-12 00:00:00","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2011-06-29 00:00:00","F","06F","29","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2011-10-26 00:00:00","F","04L","60","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2012-04-04 00:00:00","P","06D","25","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2012-04-04 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"40971149","OH TAISHO","1","9","ST MARKS PLACE","10003","2126731300","49","2013-02-13 00:00:00","F","10B","32","C","2013-02-13 00:00:00","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2010-10-26 00:00:00","C","06C","13","A","2010-10-26 00:00:00","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2011-06-22 00:00:00","F","08A","41","","","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2011-07-26 00:00:00","U","99B","18","B","2011-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2011-11-29 00:00:00","U","02B","16","B","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2011-11-29 00:00:00","U","08A","16","B","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"40973369","USHI WAKAMARU","1","136","WEST HOUSTON STREET","10012","2122284181","49","2013-06-25 00:00:00","F","02B","27","","","2013-09-13 01:01:06.177000000" +"40979259","BAI SUSHI","4","37-03","BROADWAY","11103","7189567445","49","2012-01-26 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2011-10-15 00:00:00","F","02C","34","","","2013-09-13 01:01:06.177000000" +"40980062","TOKYO SUSHI JAPANESE RESTAURANT","5","1710","VICTORY BOULEVARD","10314","7187271771","49","2011-11-17 00:00:00","U","04H","25","B","2011-11-17 00:00:00","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2010-12-29 00:00:00","P","04L","20","","","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2010-12-29 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-01-12 00:00:00","C","10E","4","A","2011-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-11-15 00:00:00","G","02B","45","","","2013-09-13 01:01:06.177000000" +"40980229","SUSHI MAMBO","1","255","BLEECKER STREET","10014","2126755885","49","2011-11-15 00:00:00","G","08A","45","","","2013-09-13 01:01:06.177000000" +"40986939","WASABI SUSHI","3","2375","86 STREET","11214","7182663500","49","2012-07-25 00:00:00","D","06C","12","A","2012-07-25 00:00:00","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2010-10-04 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2011-08-24 00:00:00","U","02G","24","B","2011-08-24 00:00:00","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2012-03-01 00:00:00","F","04H","28","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2012-03-01 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"40994897","FONTANA SUSHI","3","9608","3 AVENUE","11209","7187591100","49","2012-07-17 00:00:00","F","08A","52","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2011-06-15 00:00:00","P","04C","22","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2011-06-15 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-01-07 00:00:00","F","10B","58","","","2013-09-13 01:01:06.177000000" +"40999193","KO SUSHI","1","1329","2 AVENUE","10021","2124391678","49","2013-06-15 00:00:00","G","04H","88","","","2013-09-13 01:01:06.177000000" +"41004774","AKA SUSHI JAPANESE RESTAURANT","5","4342","AMBOY ROAD","10312","7186088981","49","2010-09-22 00:00:00","P","10F","11","","","2013-09-13 01:01:06.177000000" +"41004774","AKA SUSHI JAPANESE RESTAURANT","5","4342","AMBOY ROAD","10312","7186088981","49","2011-04-05 00:00:00","F","06F","31","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2010-12-13 00:00:00","O","10F","2","C","2010-12-13 00:00:00","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2012-01-03 00:00:00","P","06D","26","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2013-02-27 00:00:00","F","02A","78","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2013-02-27 00:00:00","F","04N","78","","","2013-09-13 01:01:06.177000000" +"41006352","KENKA","1","25","ST MARKS PLACE","10003","2122546363","49","2013-02-27 00:00:00","F","08A","78","","","2013-09-13 01:01:06.177000000" +"41007533","UMI NO IE","1","86","EAST 3 STREET","10003","6466541122","49","2011-06-02 00:00:00","F","02G","63","","","2013-09-13 01:01:06.177000000" +"41007533","UMI NO IE","1","86","EAST 3 STREET","10003","6466541122","49","2011-06-02 00:00:00","F","10H","63","","","2013-09-13 01:01:06.177000000" +"41007533","UMI NO IE","1","86","EAST 3 STREET","10003","6466541122","49","2011-08-09 00:00:00","U","02B","17","B","2011-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41007533","UMI NO IE","1","86","EAST 3 STREET","10003","6466541122","49","2011-12-22 00:00:00","P","04C","17","","","2013-09-13 01:01:06.177000000" +"41007533","UMI NO IE","1","86","EAST 3 STREET","10003","6466541122","49","2012-01-03 00:00:00","U","04L","17","B","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41007533","UMI NO IE","1","86","EAST 3 STREET","10003","6466541122","49","2012-07-03 00:00:00","P","02G","13","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2011-05-24 00:00:00","F","10A","33","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2011-05-24 00:00:00","F","10B","33","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2011-05-24 00:00:00","F","99B","33","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2011-11-29 00:00:00","F","02G","25","C","2011-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2012-04-10 00:00:00","F","06C","33","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2012-04-10 00:00:00","F","10F","33","","","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2012-04-18 00:00:00","U","10B","25","B","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41008526","KANOYAMA","1","175","2 AVENUE","10003","2127775266","49","2013-07-12 00:00:00","P","10F","24","","","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2012-11-19 00:00:00","W","04L","19","","","2013-09-13 01:01:06.177000000" +"41010271","MINCA","1","536","EAST 5 STREET","10009","2125058001","49","2012-11-19 00:00:00","W","10F","19","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2011-06-14 00:00:00","F","10D","30","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2011-09-28 00:00:00","F","02G","12","C","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2011-09-28 00:00:00","F","10H","12","C","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2011-09-28 00:00:00","F","99B","12","C","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2012-12-06 00:00:00","F","04L","36","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2012-12-06 00:00:00","F","09C","36","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-03-06 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-03-06 00:00:00","F","10I","38","C","2013-03-06 00:00:00","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-03-06 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-08-15 00:00:00","F","06E","32","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-08-15 00:00:00","F","08C","32","","","2013-09-13 01:01:06.177000000" +"41011076","YAKITORI SUN-CHAN","1","2707","BROADWAY","10025","2127495008","49","2013-08-15 00:00:00","F","10E","32","","","2013-09-13 01:01:06.177000000" +"41012979","HALAL COFFEE SHOP RESTAURANT","2","1150","SHERMAN AVENUE","10456","7184108202","02","2011-03-29 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2011-03-04 00:00:00","U","06D","7","B","2011-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2011-03-04 00:00:00","U","08A","7","B","2011-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41015818","BOZU","3","296","GRAND STREET","11211","7183847770","49","2013-08-30 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"41015916","SUBWAY","4","253-10","HILLSIDE AVENUE","11426","7183432965","69","2009-11-25 16:01:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2011-10-26 00:00:00","F","04K","53","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2011-10-26 00:00:00","F","08A","53","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2012-09-06 00:00:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2012-09-20 00:00:00","U","06F","25","B","2012-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2012-09-20 00:00:00","U","10I","25","B","2012-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2013-03-06 00:00:00","G","06C","55","","","2013-09-13 01:01:06.177000000" +"41016886","TENZAN CUISINE","1","285","COLUMBUS AVENUE","10023","2125807300","49","2013-03-06 00:00:00","G","10F","55","","","2013-09-13 01:01:06.177000000" +"41019412","GEN RESTAURANT","3","659","WASHINGTON AVENUE","11238","7183983550","49","2011-12-15 00:00:00","F","05D","45","C","2011-12-15 00:00:00","2013-09-13 01:01:06.177000000" +"41023695","MCDONALD'S","4","119-05","LIBERTY AVENUE","11419","7188438777","39","2012-02-08 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2011-06-20 00:00:00","F","02G","55","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2012-04-06 00:00:00","P","06F","20","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2012-04-06 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41031273","ARIYOSHI JAPANESE RESTAURANT","1","226 ","EAST 53 STREET ","10022","2123193490","49","2013-09-11 00:00:00","F","08A","46","","","2013-09-13 01:01:06.177000000" +"41033036","CHANCE","3","223","SMITH STREET","11201","7182421515","05","2011-02-02 00:00:00","F","03C","49","","","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2012-01-18 00:00:00","U","10B","24","B","2012-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"41033693","ONE 7 KARAOKE","1","29","WEST 17 STREET","10011","2126753527","49","2012-06-09 00:00:00","P","04H","19","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2011-06-20 00:00:00","P","06C","18","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2011-06-20 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2011-07-05 00:00:00","U","08A","24","B","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2011-12-08 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2011-12-19 00:00:00","U","10B","16","B","2011-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"41034980","MENKUI TEI","1","63","COOPER SQUARE","10003","2122284152","49","2012-12-05 00:00:00","F","10B","30","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2011-03-12 00:00:00","P","06C","18","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2011-03-12 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2011-09-19 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2011-09-19 00:00:00","P","99B","27","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2012-08-08 00:00:00","D","06F","13","A","2012-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2013-02-21 00:00:00","F","02G","21","","","2013-09-13 01:01:06.177000000" +"41035076","FRENASIA","4","163-35","CROSS BAY BOULEVARD","11414","7183227690","49","2013-08-17 00:00:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"41035706","LA LECHONERA #2 RESTAURANT","3","429","NEW LOTS AVENUE","11207","7183424648","77","2011-01-20 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2010-10-26 00:00:00","F","02G","65","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2010-12-02 00:00:00","U","06F","12","B","2010-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2010-12-02 00:00:00","U","10F","12","B","2010-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2011-12-02 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"41046492","CAFE EXCHANGE","1","49","BROADWAY","10006","2124255000","03","2011-12-16 00:00:00","U","99B","10","B","2011-12-16 00:00:00","2013-09-13 01:01:06.177000000" +"41048382","SUSHI D","3","207","DEKALB AVENUE","11205","7188580058","49","2012-12-14 00:00:00","F","16A","","","","2013-09-13 01:01:06.177000000" +"41048429","CHIPOTLE MEXICAN GRILL","3","185","MONTAGUE STREET","11201","7182439109","81","2012-05-01 00:00:00","F","02F","49","C","2012-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41048429","CHIPOTLE MEXICAN GRILL","3","185","MONTAGUE STREET","11201","7182439109","81","2012-05-01 00:00:00","F","10F","49","C","2012-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2010-05-17 11:02:00","U","02G","25","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2010-05-17 11:02:00","U","10G","25","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-02-08 00:00:00","F","06A","73","C","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-02-08 00:00:00","F","10B","73","C","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-02-21 00:00:00","U","10B","24","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-06-22 00:00:00","F","08C","38","","","2013-09-13 01:01:06.177000000" +"41052479","SAKURA HANA","1","615 1/2","HUDSON STREET","10014","2126452128","49","2012-12-07 00:00:00","F","02G","30","","","2013-09-13 01:01:06.177000000" +"41060064","EN JAPANESE BRASSERIE","1","435","HUDSON STREET","10014","2126479196","49","2012-03-01 00:00:00","D","06D","13","A","2012-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2011-06-10 00:00:00","D","10H","9","A","2011-06-10 00:00:00","2013-09-13 01:01:06.177000000" +"41061861","ROCKMEISHA","1","11","BARROW STREET","10014","2126757775","49","2012-12-20 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41068099","NAKA NAKA","1","458","WEST 17 STREET","10011","2129298544","49","2012-02-22 00:00:00","P","04J","25","","","2013-09-13 01:01:06.177000000" +"41068173","LOUISIANA'S WHISKEY RIVER","1","575","2 AVENUE","10016","2126796799","03","2013-01-09 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41070399","HARU","1","220","PARK AVENUE SOUTH","10003","6464280989","49","2011-01-25 00:00:00","F","02B","47","","","2013-09-13 01:01:06.177000000" +"41070399","HARU","1","220","PARK AVENUE SOUTH","10003","6464280989","49","2011-01-25 00:00:00","F","04M","47","","","2013-09-13 01:01:06.177000000" +"41070399","HARU","1","220","PARK AVENUE SOUTH","10003","6464280989","49","2013-07-24 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"41070415","GARI","1","370","COLUMBUS AVENUE","10024","2123624816","49","2011-08-04 00:00:00","D","06E","12","A","2011-08-04 00:00:00","2013-09-13 01:01:06.177000000" +"41070415","GARI","1","370","COLUMBUS AVENUE","10024","2123624816","49","2011-09-06 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41070415","GARI","1","370","COLUMBUS AVENUE","10024","2123624816","49","2012-03-08 00:00:00","D","10A","9","A","2012-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41075211","SUSHI GALLERY","3","71","CLARK STREET","11201","7182220308","49","2010-09-03 00:00:00","D","10F","4","A","2010-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2012-12-19 00:00:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2013-02-04 00:00:00","F","04N","42","C","2013-02-04 00:00:00","2013-09-13 01:01:06.177000000" +"41076469","AZUKI JAPANESE RESTAURENT","1","239","PARK AVENUE SOUTH","10003","2122283611","49","2013-02-04 00:00:00","F","08A","42","C","2013-02-04 00:00:00","2013-09-13 01:01:06.177000000" +"41078800","MIYABI SUSHI","1","121","WEST 3 STREET","10012","2122281688","49","2011-02-04 00:00:00","D","06A","5","A","2011-02-04 00:00:00","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2011-04-12 00:00:00","P","10F","26","","","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2012-08-29 00:00:00","F","06A","36","","","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2012-09-26 00:00:00","F","02G","33","C","2012-09-26 00:00:00","2013-09-13 01:01:06.177000000" +"41079532","SHIMIZU RESTAURANT","1","318-324","51 STREET","10019","2125811581","49","2012-09-26 00:00:00","F","05F","33","C","2012-09-26 00:00:00","2013-09-13 01:01:06.177000000" +"41081337","GEM SUSHI","1","352","EAST 86 STREET","10028","2127370086","49","2011-11-02 00:00:00","P","06E","17","","","2013-09-13 01:01:06.177000000" +"41083469","LA GATA GOLOSA","4","8263","BROADWAY","11373","7187791747","53","2010-11-30 00:00:00","F","02B","49","C","2010-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41085412","SOBA-KOH","1","309 ","EAST 5 STREET ","10003","2122542244","49","2012-01-05 00:00:00","D","04L","10","A","2012-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41085412","SOBA-KOH","1","309 ","EAST 5 STREET ","10003","2122542244","49","2012-01-05 00:00:00","D","08A","10","A","2012-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41085412","SOBA-KOH","1","309 ","EAST 5 STREET ","10003","2122542244","49","2012-05-14 00:00:00","D","08A","10","A","2012-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41085412","SOBA-KOH","1","309 ","EAST 5 STREET ","10003","2122542244","49","2013-05-30 00:00:00","F","04L","34","","","2013-09-13 01:01:06.177000000" +"41085412","SOBA-KOH","1","309 ","EAST 5 STREET ","10003","2122542244","49","2013-05-30 00:00:00","F","10F","34","","","2013-09-13 01:01:06.177000000" +"41087130","CAFE METRO","1","569","LEXINGTON AVENUE","10022","2122232670","14","2013-04-08 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2011-10-05 00:00:00","P","02B","27","","","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2011-10-05 00:00:00","P","04C","27","","","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2012-05-22 00:00:00","F","06F","35","","","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2012-05-22 00:00:00","F","10F","35","","","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2013-01-22 00:00:00","F","06F","16","C","2013-01-22 00:00:00","2013-09-13 01:01:06.177000000" +"41087485","SUSHI TSUSHIMA","1","141","EAST 47 STREET","10017","2122071938","49","2013-01-22 00:00:00","F","10F","16","C","2013-01-22 00:00:00","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2011-09-14 00:00:00","D","10F","7","A","2011-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41087789","ISOHAMA","1","1666","3 AVENUE","10128","2128280099","49","2012-06-13 00:00:00","D","08C","13","A","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41087943","PERDITION","1","692","10 AVENUE","10019","2125825660","03","2011-12-02 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"41088125","MR. NOSH","3","3323","AVENUE N","11234","7182531400","50","2011-02-23 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"41088125","MR. NOSH","3","3323","AVENUE N","11234","7182531400","50","2011-02-23 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2011-04-07 00:00:00","F","10F","34","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2011-07-21 00:00:00","D","10B","11","A","2011-07-21 00:00:00","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2011-11-29 00:00:00","F","06C","44","","","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2012-01-03 00:00:00","U","04H","14","B","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41097180","NINJA RESTAURANT","1","25","HUDSON STREET","10013","2122748500","49","2012-01-03 00:00:00","U","06C","14","B","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2011-12-07 00:00:00","D","10F","9","A","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2012-12-11 00:00:00","F","10B","33","","","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2013-01-24 00:00:00","U","06D","10","B","2013-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41099763","KIRAKU SUSHI JAPANESE RESTAURANT","2","1948","WILLIAMSBRIDGE ROAD","10461","7183798866","49","2013-06-15 00:00:00","F","06D","21","","","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2011-04-25 00:00:00","P","06A","16","","","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2011-08-02 00:00:00","D","02G","12","A","2011-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2012-01-10 00:00:00","F","04L","58","","","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2012-02-01 00:00:00","F","08A","33","C","2012-02-01 00:00:00","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2012-03-15 00:00:00","G","06C","48","","","2013-09-13 01:01:06.177000000" +"41103064","SABURI JUN RESTAURANT","1","168","LEXINGTON AVENUE","10016","2124817766","49","2012-03-19 00:00:00","O","","","","","2013-09-13 01:01:06.177000000" +"41105739","COLD STONE CREAMERY","3","8403","3 AVENUE","11209","7187451555","43","2013-01-05 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41105739","COLD STONE CREAMERY","3","8403","3 AVENUE","11209","7187451555","43","2013-01-05 00:00:00","G","10C","49","","","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2011-01-05 00:00:00","P","02G","16","","","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2011-01-18 00:00:00","C","10B","13","A","2011-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"41106445","GINZA","1","800 ","LEXINGTON AVENUE ","10065","2128887898","49","2011-07-06 00:00:00","D","10F","9","A","2011-07-06 00:00:00","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2012-08-23 00:00:00","F","02G","19","C","2012-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2013-08-26 00:00:00","G","04N","51","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2013-08-26 00:00:00","G","08A","51","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2013-08-28 00:00:00","W","04N","11","","","2013-09-13 01:01:06.177000000" +"41108436","SUSHI LOUNGE","1","132","ST MARKS PLACE","10009","2125981188","49","2013-08-28 00:00:00","W","08A","11","","","2013-09-13 01:01:06.177000000" +"41108853","OMIYA SUSHI II","3","2317","AVENUE U","11229","7188918808","49","2012-01-05 00:00:00","D","06C","10","A","2012-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41108853","OMIYA SUSHI II","3","2317","AVENUE U","11229","7188918808","49","2012-05-17 00:00:00","D","06C","13","A","2012-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41108853","OMIYA SUSHI II","3","2317","AVENUE U","11229","7188918808","49","2013-05-13 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"41108853","OMIYA SUSHI II","3","2317","AVENUE U","11229","7188918808","49","2013-05-13 00:00:00","P","10H","17","","","2013-09-13 01:01:06.177000000" +"41109985","LIMA'S TASTE","1","122","CHRISTOPHER STREET","10014","2122420010","61","2011-04-12 00:00:00","F","08C","49","","","2013-09-13 01:01:06.177000000" +"41115908","MOMOYA","1","162","WEST 21 STREET","10011","2129894466","49","2011-08-16 00:00:00","P","04H","20","","","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2011-05-26 00:00:00","D","10F","2","A","2011-05-26 00:00:00","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2012-04-17 00:00:00","P","06A","15","","","2013-09-13 01:01:06.177000000" +"41118839","NOBU FIFTY SEVEN","1","40","WEST 57 STREET","10019","2127578559","49","2012-05-15 00:00:00","D","10F","10","A","2012-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41123423","J AND B PIZZERIA","5","2220","FOREST AVENUE","10303","7188765700","63","2010-11-15 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41125371","MIZU HIBACHI STEAK HOUSE","5","240","PAGE AVENUE","10307","7186088809","49","2011-10-20 00:00:00","F","99B","35","","","2013-09-13 01:01:06.177000000" +"41127243","MAMAJUANA CAFE","1","247","DYCKMAN STREET","10034","2123041217","53","2011-09-08 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41127602","DONGURI","1","309","EAST 83 STREET","10028","2127375656","49","2011-05-25 00:00:00","P","05D","15","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2010-11-08 00:00:00","F","02G","35","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2010-11-08 00:00:00","F","04H","35","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2011-07-21 00:00:00","F","02G","24","C","2011-07-21 00:00:00","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2012-06-04 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"41127656","OKINAWA","4","39-28","BELL BOULEVARD","11361","7182245622","49","2013-01-04 00:00:00","P","04M","5","","","2013-09-13 01:01:06.177000000" +"41128554","LA NONNA","1","134","MULBERRY STREET","10013","2123346200","48","2011-04-20 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41128554","LA NONNA","1","134","MULBERRY STREET","10013","2123346200","48","2011-04-20 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41128554","LA NONNA","1","134","MULBERRY STREET","10013","2123346200","48","2011-04-20 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2010-09-01 00:00:00","F","02G","46","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2010-09-01 00:00:00","F","05F","46","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2011-04-27 00:00:00","G","04L","55","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2011-04-27 00:00:00","G","08A","55","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2011-07-27 00:00:00","P","10G","23","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2011-08-22 00:00:00","D","10F","2","A","2011-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2011-12-08 00:00:00","P","10F","24","","","2013-09-13 01:01:06.177000000" +"41129375","SAKURA SUSHI AND THAI","1","273","MOTT STREET","10012","2129419888","49","2012-06-14 00:00:00","U","02B","12","B","2012-06-14 00:00:00","2013-09-13 01:01:06.177000000" +"41133094","NORI SUSHI RESTAURANT","5","55","NEW DORP PLAZA","10306","7186680288","49","2010-09-21 00:00:00","P","06A","24","","","2013-09-13 01:01:06.177000000" +"41133094","NORI SUSHI RESTAURANT","5","55","NEW DORP PLAZA","10306","7186680288","49","2011-11-01 00:00:00","D","02G","11","A","2011-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"41133094","NORI SUSHI RESTAURANT","5","55","NEW DORP PLAZA","10306","7186680288","49","2011-11-01 00:00:00","D","99B","11","A","2011-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"41133094","NORI SUSHI RESTAURANT","5","55","NEW DORP PLAZA","10306","7186680288","49","2012-11-29 00:00:00","D","06D","9","A","2012-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41135793","MARTINIQUE CAFE","1","1260","BROADWAY","10001","2122446523","03","2013-08-05 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41135793","MARTINIQUE CAFE","1","1260","BROADWAY","10001","2122446523","03","2013-08-05 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2010-12-14 00:00:00","C","04H","12","A","2010-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2011-08-10 00:00:00","F","06D","64","","","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2011-08-10 00:00:00","F","06E","64","","","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2011-08-10 00:00:00","F","10E","64","","","2013-09-13 01:01:06.177000000" +"41139469","IZAKAYA TEN","1","207","10 AVENUE","10011","2126277777","49","2013-01-22 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2012-02-16 00:00:00","F","10H","35","","","2013-09-13 01:01:06.177000000" +"41140140","OHANA JAPANESE HIBACHI SEAFOOD & STEAK","2","500","CITY ISLAND AVE","10464","7188850700","49","2012-07-03 00:00:00","D","02G","10","A","2012-07-03 00:00:00","2013-09-13 01:01:06.177000000" +"41143058","THE ROOSEVELT HOTEL","1","45","EAST 45 STREET","10017","2128856076","03","2011-10-20 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41143058","THE ROOSEVELT HOTEL","1","45","EAST 45 STREET","10017","2128856076","03","2011-10-20 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2012-05-17 00:00:00","D","08C","7","A","2012-05-17 00:00:00","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2012-11-29 00:00:00","F","02B","31","","","2013-09-13 01:01:06.177000000" +"41143179","NAGOMI","1","179","PRINCE STREET","10012","2123878230","49","2012-11-29 00:00:00","F","04C","31","","","2013-09-13 01:01:06.177000000" +"41143917","ANTHONY'S BRICK OVEN PIZZA & RESTAURANT","3","426A","7 AVENUE","11215","7183698315","62","2013-05-07 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41144484","CARIBE RESTAURANT BAR & LOUNGE","2","960","EAST 165 STREET","10459","7183285682","53","2010-09-08 00:00:00","F","04K","49","","","2013-09-13 01:01:06.177000000" +"41144484","CARIBE RESTAURANT BAR & LOUNGE","2","960","EAST 165 STREET","10459","7183285682","53","2010-09-08 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2012-03-23 00:00:00","F","06D","48","","","2013-09-13 01:01:06.177000000" +"41147333","SANGO SUSHI","3","1708","EAST 16 STREET","11229","7183363811","49","2012-08-30 00:00:00","P","06C","24","","","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2011-03-14 00:00:00","D","06F","13","A","2011-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2011-03-14 00:00:00","D","10F","13","A","2011-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2012-03-02 00:00:00","D","10B","9","A","2012-03-02 00:00:00","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2012-07-10 00:00:00","F","04M","35","","","2013-09-13 01:01:06.177000000" +"41148043","TOKYO BOY SUSHI","3","3788","NOSTRAND AVENUE","11235","7189348080","49","2013-04-27 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41148187","LOONG HING CHINESE RESTAURANT","4","11318 ","SUTPHIN BLVD","11435","7185293637","20","2010-10-13 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41148212","M & Y ENTERTAINMENT","4","40-31","162 STREET","11358","7183588477","03","2011-07-13 00:00:00","F","04A","49","C","2011-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2010-08-10 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2010-08-31 00:00:00","U","04M","12","B","2010-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2011-06-11 00:00:00","E","16B","","","","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2012-06-13 00:00:00","D","06C","13","A","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2012-11-20 00:00:00","F","08A","23","","","2013-09-13 01:01:06.177000000" +"41148236","SUSHI FAMILY EXPRESS","4","35-48","UNION STREET","11354","7183212231","49","2012-12-10 00:00:00","U","06C","13","B","2012-12-10 00:00:00","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2011-09-13 00:00:00","P","10F","19","","","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2011-09-23 00:00:00","D","09B","7","A","2011-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"41151116","MIDORI MATSU","4","111-16","QUEENS BOULEVARD","11375","7182634110","49","2012-02-16 00:00:00","D","10H","12","A","2012-02-16 00:00:00","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2011-04-06 00:00:00","P","02B","20","","","2013-09-13 01:01:06.177000000" +"41153141","TANAKA","1","222","EAST 51 STREET","10022","2123086976","49","2012-06-29 00:00:00","F","04L","15","","","2013-09-13 01:01:06.177000000" +"41156149","Tasty Delicious Bakery","3","1096","RUTLAND ROAD","11212","7182211222","17","2013-03-14 00:00:00","F","09B","49","","","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2011-10-24 00:00:00","F","10B","28","","","2013-09-13 01:01:06.177000000" +"41158806","SUSHI SEN-NIN","1","30 ","EAST 33 STREET ","10016","2128892208","49","2013-01-04 00:00:00","P","04H","25","","","2013-09-13 01:01:06.177000000" +"41159798","MORIMOTO NY","1","88","10 AVENUE","10011","2129894639","49","2010-12-02 00:00:00","C","10B","13","A","2010-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2011-02-16 00:00:00","P","08C","17","","","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2011-07-28 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2011-07-28 00:00:00","P","99B","20","","","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2012-02-23 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2012-02-23 00:00:00","P","06A","22","","","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2012-07-18 00:00:00","P","04M","12","","","2013-09-13 01:01:06.177000000" +"41160602","KUMO JAPANESE RESTAURANT","4","37-18","DITMARS BOULEVARD","11105","7182788808","49","2013-01-30 00:00:00","P","04A","16","","","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2010-08-31 00:00:00","P","06C","27","","","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2011-04-26 00:00:00","F","04L","35","","","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2011-04-26 00:00:00","F","06D","35","","","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2011-09-22 00:00:00","P","06B","18","","","2013-09-13 01:01:06.177000000" +"41163073","WAJIMA","1","134 ","EAST 61 STREET ","10065","2128139065","49","2012-04-09 00:00:00","D","06D","9","A","2012-04-09 00:00:00","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2012-05-08 00:00:00","U","04M","13","B","2012-05-08 00:00:00","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2013-03-12 00:00:00","F","04M","14","","","2013-09-13 01:01:06.177000000" +"41167462","MEGU MIDTOWN","1","845","U N PLAZA","10017","2126440777","49","2013-04-29 00:00:00","C","02A","12","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-03-15 00:00:00","F","08A","39","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-03-15 00:00:00","F","99B","39","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-03-29 00:00:00","D","10F","7","A","2011-03-29 00:00:00","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-07-21 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-08-08 00:00:00","D","10E","10","A","2011-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41168203","BENTO SUSHI","1","173","BROADWAY","10007","2124378744","49","2011-11-14 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41168206","BENTO NOUVEAU","1","1407","BROADWAY","10018","2123981405","49","2013-02-21 00:00:00","P","04C","18","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2012-04-20 00:00:00","P","08B","18","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2013-01-24 00:00:00","F","06D","17","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2013-01-24 00:00:00","F","10D","17","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2013-03-13 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2013-08-15 00:00:00","F","04N","53","","","2013-09-13 01:01:06.177000000" +"41170917","POKE RESTAURANT","1","343","EAST 85 STREET","10028","2122490569","49","2013-08-15 00:00:00","F","08A","53","","","2013-09-13 01:01:06.177000000" +"41171833","COLONY FRIED CHICKEN","2","864","PROSPECT AVENUE","10459","7185891372","18","2011-12-06 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2010-10-21 00:00:00","P","09B","24","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2010-12-09 00:00:00","C","06C","10","A","2010-12-09 00:00:00","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-05-09 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-05-19 00:00:00","G","04L","107","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-05-19 00:00:00","G","09C","107","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2011-09-01 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41171982","MASA MOTO SUSHI","1","88","WEST 3 STREET","10012","2127778808","49","2012-04-18 00:00:00","D","10B","13","A","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41174075","PYZA RESTAURANT","3","118","NASSAU AVENUE","11222","7183498829","64","2010-10-12 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41177613","YAMA","1","308","EAST 49 STREET","10017","2123553370","49","2011-11-07 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41177613","YAMA","1","308","EAST 49 STREET","10017","2123553370","49","2013-05-07 00:00:00","F","10F","31","","","2013-09-13 01:01:06.177000000" +"41179005","ROSAN JIN","1","141","DUANE STREET","10013","2123467807","49","2013-01-30 00:00:00","D","10A","13","A","2013-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41179282","SUBWAY","3","241","ROCKAWAY PARKWAY","11212","7183466550","69","2010-05-20 08:54:00","F","04I","49","","","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2011-07-13 00:00:00","F","10B","40","","","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2011-08-11 00:00:00","U","04M","19","B","2011-08-11 00:00:00","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2011-12-02 00:00:00","P","02G","27","","","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2011-12-29 00:00:00","U","08A","17","B","2011-12-29 00:00:00","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2012-08-15 00:00:00","P","06E","10","","","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2012-08-31 00:00:00","F","04M","15","C","2012-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41180783","O'SAKE JAPANESE RESTAURANT","4","263","BEACH 116 STREET","11694","7189458888","49","2012-08-31 00:00:00","F","10F","15","C","2012-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41180860","BAY SUSHI","3","29","BAY RIDGE AVENUE","11220","7188363083","49","2010-12-11 00:00:00","P","04C","14","","","2013-09-13 01:01:06.177000000" +"41180860","BAY SUSHI","3","29","BAY RIDGE AVENUE","11220","7188363083","49","2011-08-17 00:00:00","F","10F","39","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2010-11-03 00:00:00","P","10A","7","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2010-11-03 00:00:00","P","10B","7","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2010-11-15 00:00:00","F","02B","22","C","2010-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2010-11-15 00:00:00","F","10A","22","C","2010-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2011-03-23 00:00:00","P","10B","14","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2011-10-04 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2011-10-04 00:00:00","F","10H","28","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2012-08-27 00:00:00","G","02B","96","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-02-25 00:00:00","F","06F","23","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-02-25 00:00:00","F","10F","23","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-03-18 00:00:00","G","06C","92","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-03-19 00:00:00","8","10F","37","","","2013-09-13 01:01:06.177000000" +"41181651","BentOn","1","27","LUDLOW STREET","10002","2122199955","49","2013-07-22 00:00:00","G","02G","29","","","2013-09-13 01:01:06.177000000" +"41182682","SARKU JAPAN","5","2655","RICHMOND AVENUE","10314","7186983023","49","2012-02-08 00:00:00","D","06E","10","A","2012-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41182682","SARKU JAPAN","5","2655","RICHMOND AVENUE","10314","7186983023","49","2013-05-15 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2010-10-12 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2010-10-12 00:00:00","P","04N","22","","","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2010-10-12 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41183038","BAMBOO 52","1","344","WEST 52 STREET","10019","2123152777","49","2011-06-21 00:00:00","U","04H","18","B","2011-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41184581","BOROUGH RESTAURANT","3","338","FRANKLIN AVENUE","11238","7182304728","03","2012-09-07 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41184581","BOROUGH RESTAURANT","3","338","FRANKLIN AVENUE","11238","7182304728","03","2012-09-07 00:00:00","F","08B","49","","","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2012-07-24 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"41187942","TATAKI JAPANESE RESTAURANT","1","3","LISPENARD ST","10013","2129650975","49","2013-02-25 00:00:00","P","10I","21","","","2013-09-13 01:01:06.177000000" +"41193113","SOSAKU JAPANESE RESTAURANT","3","6328","AVENUE N","11234","7189682800","49","2012-03-13 00:00:00","D","10F","11","A","2012-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2010-01-19 16:49:00","D","10G","5","","","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2011-02-15 00:00:00","D","20A","12","A","2011-02-15 00:00:00","2013-09-13 01:01:06.177000000" +"41193772","DAKE SUSHI","1","348","7 AVENUE","10001","2122449100","49","2011-07-19 00:00:00","F","99B","41","C","2011-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2010-08-26 00:00:00","P","02G","14","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2010-08-26 00:00:00","P","99B","14","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2010-09-08 00:00:00","C","99B","12","A","2010-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2011-02-22 00:00:00","F","04L","46","","","2013-09-13 01:01:06.177000000" +"41195033","SARKU JAPAN","4","90-15","QUEENS BOULEVARD","11373","7186998700","49","2011-12-05 00:00:00","D","09B","13","A","2011-12-05 00:00:00","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2010-11-09 00:00:00","P","02B","18","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2011-05-16 00:00:00","G","04M","55","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2011-05-16 00:00:00","G","05D","55","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2011-05-16 00:00:00","G","10B","55","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2011-05-18 00:00:00","W","08A","37","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2011-05-23 00:00:00","O","08A","9","","","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2011-09-20 00:00:00","D","10H","4","A","2011-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41195747","MATSU SUSHI","1","411 ","EAST 70 STREET ","10021","2122888830","49","2013-02-28 00:00:00","P","09B","24","","","2013-09-13 01:01:06.177000000" +"41199993","LOS AMIGOS BILLIARDS","2","857 ","EAST 149 STREET ","10455","3477266914","03","2012-07-05 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41199993","LOS AMIGOS BILLIARDS","2","857 ","EAST 149 STREET ","10455","3477266914","03","2012-07-05 00:00:00","F","05H","49","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2010-06-17 12:02:00","G","05D","108","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2010-06-17 12:02:00","G","06A","108","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2012-01-03 00:00:00","F","06H","42","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2012-05-23 00:00:00","F","03C","32","","","2013-09-13 01:01:06.177000000" +"41204680","SUSHI VILLAGE","4","32-50","FRANCIS LEWIS BOULEVARD","11358","7188864733","49","2013-05-31 00:00:00","F","04J","33","","","2013-09-13 01:01:06.177000000" +"41209785","FRESCO TORTILLAS GRILL","2","3426","JEROME AVENUE","10467","7185156545","55","2011-08-11 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41212249","GEM & JOE INDIAN'S EAT AND DRINK CAFE","3","1054","ROGERS AVENUE","11226","7182827583","17","2012-03-05 00:00:00","F","04H","49","C","2012-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"41212617","YA-YA'S BAKERY","4","28-46","31 STREET","11102","7189323113","08","2010-12-09 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41214817","HOKKAIDO","5","3295","AMBOY ROAD","10306","7189800880","49","2010-09-23 00:00:00","C","02G","11","A","2010-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"41214817","HOKKAIDO","5","3295","AMBOY ROAD","10306","7189800880","49","2010-09-23 00:00:00","C","99B","11","A","2010-09-23 00:00:00","2013-09-13 01:01:06.177000000" +"41214817","HOKKAIDO","5","3295","AMBOY ROAD","10306","7189800880","49","2011-10-06 00:00:00","D","10F","11","A","2011-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2010-09-16 00:00:00","C","10F","8","A","2010-09-16 00:00:00","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2011-08-15 00:00:00","P","09C","17","","","2013-09-13 01:01:06.177000000" +"41215734","GYU-KAKU","1","805","3 AVENUE","10022","2127028816","49","2011-08-29 00:00:00","D","02G","12","A","2011-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41217902","MAHARAJA INDIAN CUISINE","1","133","EAST 45 STREET","10017","2126827962","44","2012-02-29 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41217902","MAHARAJA INDIAN CUISINE","1","133","EAST 45 STREET","10017","2126827962","44","2013-07-02 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41219223","ZENKICHI","3","77 ","NORTH 6 STREET ","11249","7183888985","49","2012-04-25 00:00:00","U","10C","5","B","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41219569","SUTEISHI","1","24","PECK SLIP","10038","2127662344","49","2012-02-02 00:00:00","D","04A","13","A","2012-02-02 00:00:00","2013-09-13 01:01:06.177000000" +"41220720","SUSHI OF GARI 46","1","347","WEST 46 STREET","10036","2129570046","49","2011-06-01 00:00:00","D","10B","13","A","2011-06-01 00:00:00","2013-09-13 01:01:06.177000000" +"41220720","SUSHI OF GARI 46","1","347","WEST 46 STREET","10036","2129570046","49","2012-12-11 00:00:00","P","08C","14","","","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2010-10-13 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2012-04-30 00:00:00","F","04L","53","","","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2012-04-30 00:00:00","F","06F","53","","","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2012-04-30 00:00:00","F","08A","53","","","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2013-01-31 00:00:00","F","04L","25","","","2013-09-13 01:01:06.177000000" +"41222450","HIDE CHAN RAMEN","1","248","EAST 52 STREET","10022","2128131800","49","2013-01-31 00:00:00","F","06F","25","","","2013-09-13 01:01:06.177000000" +"41223011","SUSHI SASABUNE NEW YORK","1","401","EAST 73 STREET","10021","2122498583","49","2011-08-23 00:00:00","U","08C","20","B","2011-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41223011","SUSHI SASABUNE NEW YORK","1","401","EAST 73 STREET","10021","2122498583","49","2013-05-22 00:00:00","P","06F","22","","","2013-09-13 01:01:06.177000000" +"41224493","SHIRO OF JAPAN (AT ATLAS MALL)","4","80-40 ","COOPER AVENUE ","11385","7183268704","49","2013-04-20 00:00:00","F","02G","37","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2011-06-16 00:00:00","P","06D","21","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2012-01-24 00:00:00","U","10B","22","B","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2012-05-29 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-02-06 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41224703","NEW ASHIYA JAPANESE CUISINE NY","1","167","1 AVENUE","10003","2125053348","49","2013-08-05 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2011-07-22 00:00:00","P","04J","20","","","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2011-08-08 00:00:00","U","08C","14","B","2011-08-08 00:00:00","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2012-02-22 00:00:00","D","10F","10","A","2012-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"41225436","SACHIKO","3","3083","BRIGHTON 1 PLACE","11235","7186485528","49","2013-05-14 00:00:00","O","04M","11","P","2013-05-14 00:00:00","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2010-06-22 20:16:00","U","04N","19","","","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2010-06-22 20:16:00","U","08A","19","","","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2011-10-05 00:00:00","U","06E","25","B","2011-10-05 00:00:00","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2012-04-21 00:00:00","D","06C","5","A","2012-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"41226964","TORISHIN","1","1193 ","1 AVENUE ","10065","2129888408","49","2013-03-08 00:00:00","P","02A","27","","","2013-09-13 01:01:06.177000000" +"41228172","NATSUMI","1","226","WEST 50 STREET","10019","2122582988","49","2011-08-30 00:00:00","D","10B","4","A","2011-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41228172","NATSUMI","1","226","WEST 50 STREET","10019","2122582988","49","2012-08-07 00:00:00","P","04N","26","","","2013-09-13 01:01:06.177000000" +"41228172","NATSUMI","1","226","WEST 50 STREET","10019","2122582988","49","2012-08-07 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41228172","NATSUMI","1","226","WEST 50 STREET","10019","2122582988","49","2013-08-12 00:00:00","P","10B","18","","","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2012-08-28 00:00:00","P","02G","25","","","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2012-09-13 00:00:00","U","10C","9","B","2012-09-13 00:00:00","2013-09-13 01:01:06.177000000" +"41228483","AKINA SUSHI","1","424","EAST 14 STREET","10009","2123881127","49","2013-05-14 00:00:00","P","10F","26","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2010-11-03 00:00:00","C","10F","13","A","2010-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2011-10-24 00:00:00","G","02B","133","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2011-10-24 00:00:00","G","04M","133","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2011-10-24 00:00:00","G","06A","133","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2011-10-24 00:00:00","G","10B","133","","","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2011-10-27 00:00:00","O","04M","11","P","2011-10-27 00:00:00","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2012-06-25 00:00:00","F","02B","27","C","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41229682","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2013-07-01 00:00:00","F","10F","35","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2011-08-17 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-02-07 00:00:00","F","06C","65","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-07-03 00:00:00","P","04L","25","","","2013-09-13 01:01:06.177000000" +"41231957","DIECI","1","228","EAST 10 STREET","10003","2123879545","49","2012-07-03 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41233392","556 EL CAFE INTERNATIONAL","3","556","WORTMAN AVENUE","11208","7182723545","53","2011-08-16 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2011-10-17 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2011-11-03 00:00:00","D","04L","11","A","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41234763","KYOTO JAPANESE SUSHI","3","161","NASSAU AVENUE","11222","7183838882","49","2012-04-03 00:00:00","D","06E","12","A","2012-04-03 00:00:00","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2011-07-15 00:00:00","D","02G","13","A","2011-07-15 00:00:00","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2011-11-03 00:00:00","F","06F","48","","","2013-09-13 01:01:06.177000000" +"41234821","GYU-KAKU","1","34","COOPER SQUARE","10003","2124752989","49","2013-05-15 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2011-06-23 00:00:00","F","04C","31","","","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2011-08-04 00:00:00","U","10D","2","B","2011-08-04 00:00:00","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2011-12-13 00:00:00","F","10I","48","","","2013-09-13 01:01:06.177000000" +"41241261","MOMOYA AMSTERDAM","1","427","AMSTERDAM AVENUE","10024","2125800007","49","2013-05-22 00:00:00","F","02G","33","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2011-02-24 00:00:00","F","02B","45","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2011-02-24 00:00:00","F","08A","45","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2011-03-08 00:00:00","F","02B","25","C","2011-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2012-08-16 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2012-12-11 00:00:00","U","06D","8","B","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41242225","KOITO JAPANESE RESTAURANT","1","310","EAST 93 STREET","10128","2124261216","49","2013-07-12 00:00:00","F","04L","29","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2012-04-24 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2012-04-24 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2012-10-09 00:00:00","D","02B","9","A","2012-10-09 00:00:00","2013-09-13 01:01:06.177000000" +"41242232","HIBINO","3","333","HENRY STREET","11201","7182608052","49","2013-04-10 00:00:00","P","06D","24","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2010-12-02 00:00:00","C","10B","12","A","2010-12-02 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-04-25 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-09-28 00:00:00","F","06C","76","C","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2011-09-28 00:00:00","F","10F","76","C","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-01-23 00:00:00","F","06E","57","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-01-23 00:00:00","F","08A","57","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-02-02 00:00:00","U","02G","18","B","2012-02-02 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2012-08-13 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-02-12 00:00:00","F","06D","36","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-03-08 00:00:00","D","10F","13","A","2013-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-07-10 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41242254","EAST JAPANESE RESTAURANT","1","366","3 AVENUE","10016","2128892326","49","2013-08-13 00:00:00","F","06C","50","","","2013-09-13 01:01:06.177000000" +"41245736","LIME LEAF","1","128","WEST 72 STREET","10023","2125017800","82","2012-04-05 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2011-02-22 00:00:00","F","02G","69","","","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2011-02-22 00:00:00","F","04H","69","","","2013-09-13 01:01:06.177000000" +"41246317","OOKI SUSHI","1","1575","3 AVENUE","10128","2128283388","49","2012-02-08 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41248584","BENIHANA OF TOKYO","1","47","WEST 56 STREET","10019","2125810930","49","2013-02-12 00:00:00","F","10B","36","","","2013-09-13 01:01:06.177000000" +"41249082","B FLAT","1","277","CHURCH STREET","10013","2123430277","49","2013-05-31 00:00:00","F","15J","","","","2013-09-13 01:01:06.177000000" +"41249082","B FLAT","1","277","CHURCH STREET","10013","2123430277","49","2013-05-31 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2011-08-25 00:00:00","D","06D","10","A","2011-08-25 00:00:00","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2012-02-14 00:00:00","P","06D","12","","","2013-09-13 01:01:06.177000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2012-10-12 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41249655","NEW TOYO JAPANESE RESTAURANT","4","73-06","METROPOLITAN AVENUE","11379","7188948880","49","2012-07-27 00:00:00","D","06D","12","A","2012-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"41249655","NEW TOYO JAPANESE RESTAURANT","4","73-06","METROPOLITAN AVENUE","11379","7188948880","49","2012-07-27 00:00:00","D","09C","12","A","2012-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"41249655","NEW TOYO JAPANESE RESTAURANT","4","73-06","METROPOLITAN AVENUE","11379","7188948880","49","2013-07-17 00:00:00","P","02G","24","","","2013-09-13 01:01:06.177000000" +"41250480","LOS CHORITOS SPORTS BAR","2","2503","3 AVENUE","10451","7189935901","53","2011-07-14 00:00:00","F","04N","49","C","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"41250480","LOS CHORITOS SPORTS BAR","2","2503","3 AVENUE","10451","7189935901","53","2011-07-14 00:00:00","F","08A","49","C","2011-07-14 00:00:00","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2011-06-11 00:00:00","P","04K","16","","","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2011-06-11 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2011-09-06 00:00:00","U","10B","5","B","2011-09-06 00:00:00","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2012-09-25 00:00:00","F","08C","34","","","2013-09-13 01:01:06.177000000" +"41252382","SOTO JAPANESE RESTAURANT","1","357","6 AVENUE","10014","2124143088","49","2013-05-31 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"41258111","MCDONALD'S","3","2154","NOSTRAND AVENUE","11210","7184344568","39","2012-06-07 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41258111","MCDONALD'S","3","2154","NOSTRAND AVENUE","11210","7184344568","39","2012-06-07 00:00:00","F","10A","49","","","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2010-12-20 00:00:00","P","04M","14","","","2013-09-13 01:01:06.177000000" +"41258145","SUSHI KOI","4","116-37","QUEENS BOULEVARD","11375","7182618932","49","2013-02-25 00:00:00","P","02B","12","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2010-12-22 00:00:00","P","06A","23","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2011-10-14 00:00:00","F","05D","46","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2011-10-14 00:00:00","F","06F","46","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2012-04-10 00:00:00","U","06D","25","B","2012-04-10 00:00:00","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-02-15 00:00:00","F","02G","39","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-08-20 00:00:00","F","02G","44","","","2013-09-13 01:01:06.177000000" +"41259517","SHINBASHI JAPANESE RESTAURANT","1","7","EAST 48 STREET","10017","2128131009","49","2013-08-20 00:00:00","F","10H","44","","","2013-09-13 01:01:06.177000000" +"41260744","GO GO CURRY USA","1","273","WEST 38 STREET","10018","2127305555","49","2011-09-09 00:00:00","P","10F","25","","","2013-09-13 01:01:06.177000000" +"41264387","CUENCA COFFEE SHOP RESTAURANT","4","95-29","JAMAICA AVENUE","11421","7188474642","53","2012-04-12 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-02-07 00:00:00","F","04M","31","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-02-21 00:00:00","F","02G","67","C","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-08-02 00:00:00","F","04L","28","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-08-02 00:00:00","F","06F","28","","","2013-09-13 01:01:06.177000000" +"41267350","TENDA ASIAN FUSION","3","1734","SHEEPSHEAD BAY ROAD","11235","7183680222","49","2012-08-13 00:00:00","F","04C","40","C","2012-08-13 00:00:00","2013-09-13 01:01:06.177000000" +"41269437","FOUTA FOOD","2","1762","WESTCHESTER AVENUE","10472","7187921700","02","2010-10-05 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41269437","FOUTA FOOD","2","1762","WESTCHESTER AVENUE","10472","7187921700","02","2010-10-05 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41269437","FOUTA FOOD","2","1762","WESTCHESTER AVENUE","10472","7187921700","02","2010-10-05 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2010-12-30 00:00:00","U","04H","18","B","2010-12-30 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2011-08-11 00:00:00","F","04L","65","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2011-08-11 00:00:00","F","06D","65","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2011-08-11 00:00:00","F","08A","65","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2011-08-22 00:00:00","U","04C","16","B","2011-08-22 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2011-12-14 00:00:00","G","08A","52","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2011-12-16 00:00:00","O","10F","5","P","2011-12-16 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-02-14 00:00:00","G","06C","50","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-02-22 00:00:00","O","10F","5","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-06-19 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2012-07-18 00:00:00","G","04J","28","","","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-01-16 00:00:00","F","06C","38","C","2013-01-16 00:00:00","2013-09-13 01:01:06.177000000" +"41271436","MENCHANKO-TEI 45","1","131","EAST 45 STREET","10017","2129866805","49","2013-06-17 00:00:00","F","04J","34","","","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-01-26 00:00:00","F","02B","29","C","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-01-26 00:00:00","F","08A","29","C","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"41271454","KATSUHAMA 47","1","11","EAST 47 STREET","10017","2127585909","49","2011-06-13 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2011-06-22 00:00:00","G","06F","51","","","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2011-06-22 00:00:00","G","10F","51","","","2013-09-13 01:01:06.177000000" +"41271483","KATSUHAMA RESTAURANT","1","43-45","WEST 55 STREET","10019","2125417145","49","2012-10-22 00:00:00","U","06D","17","B","2012-10-22 00:00:00","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2010-08-23 00:00:00","U","02G","7","B","2010-08-23 00:00:00","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2011-03-04 00:00:00","F","02G","32","C","2011-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2012-04-09 00:00:00","F","02G","40","","","2013-09-13 01:01:06.177000000" +"41272891","THE KATI ROLL COMPANY","1","49","WEST 39 STREET","10018","2127304280","44","2012-04-18 00:00:00","U","03A","10","B","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41273539","SAPPORO JAPANESE CUISINE","3","7812","3 AVENUE","11209","7187483322","49","2012-01-04 00:00:00","D","10F","11","A","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41274187","KAGETSU JAPANESE RESTAURANT","3","2004","BATH AVENUE","11214","7184498880","49","2012-08-14 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41275117","MITOUSHI JAPANESE RESTAURANT","3","1714","SHEEPSHEAD BAY ROAD","11235","7183683255","49","2011-03-21 00:00:00","D","02B","10","A","2011-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2011-01-05 00:00:00","U","04M","18","B","2011-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2011-01-05 00:00:00","U","10F","18","B","2011-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2011-06-21 00:00:00","G","08C","62","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2011-06-23 00:00:00","W","04K","12","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2011-06-23 00:00:00","W","08A","12","","","2013-09-13 01:01:06.177000000" +"41278299","KOODO SUSHI","1","55","LIBERTY STREET","10005","2124252890","49","2012-02-22 00:00:00","P","04J","20","","","2013-09-13 01:01:06.177000000" +"41279614","BLUE RIBBON SUSHI BAR & GRILL","1","6","COLUMBUS CIRCLE","10019","2123970404","49","2011-05-25 00:00:00","D","10I","9","A","2011-05-25 00:00:00","2013-09-13 01:01:06.177000000" +"41281036","SUKI SUSHI","3","631","5 AVENUE","11215","7187684111","49","2011-08-16 00:00:00","P","04C","24","","","2013-09-13 01:01:06.177000000" +"41281702","SUSHI PARK","1","121","2 AVENUE","10003","2125338448","49","2011-10-18 00:00:00","U","04L","14","B","2011-10-18 00:00:00","2013-09-13 01:01:06.177000000" +"41282096","PRINCE STREET CAFE & CATERING","1","26","PRINCE STREET","10012","2123437310","03","2012-01-23 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41284245","MARIA'S BISTRO MEXICANO","3","886","5 AVENUE","11232","7184381608","55","2013-05-08 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41284245","MARIA'S BISTRO MEXICANO","3","886","5 AVENUE","11232","7184381608","55","2013-05-08 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41285411","MIKE'S CAFETERIA","3","2556","MCDONALD AVENUE","11223","7189092456","03","2010-03-26 09:22:00","F","02C","49","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2011-04-04 00:00:00","F","02G","40","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2011-05-06 00:00:00","U","06F","24","B","2011-05-06 00:00:00","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2011-09-13 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41287566","SUSHI TATSU JAPANESE RESTAURANT III","3","644","FLATBUSH AVENUE","11225","7182828890","49","2012-11-28 00:00:00","F","10F","42","","","2013-09-13 01:01:06.177000000" +"41288039","YAMATO JAPANESE CUISINE","4","3323","FRANCIS LEWIS BOULEVARD","11358","7183211508","49","2010-08-18 00:00:00","P","02G","12","","","2013-09-13 01:01:06.177000000" +"41288039","YAMATO JAPANESE CUISINE","4","3323","FRANCIS LEWIS BOULEVARD","11358","7183211508","49","2012-05-01 00:00:00","D","06C","7","A","2012-05-01 00:00:00","2013-09-13 01:01:06.177000000" +"41288039","YAMATO JAPANESE CUISINE","4","3323","FRANCIS LEWIS BOULEVARD","11358","7183211508","49","2013-06-12 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41289081","MIZU SUSHI","3","192 ","BEDFORD AVENUE ","11249","7187826666","49","2012-03-27 00:00:00","D","10F","10","A","2012-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"41289081","MIZU SUSHI","3","192 ","BEDFORD AVENUE ","11249","7187826666","49","2013-04-17 00:00:00","P","04L","15","","","2013-09-13 01:01:06.177000000" +"41290200","TASTY DUMPLING","1","54","MULBERRY STREET","10013","2123490700","20","2010-09-29 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41292992","KOUZAN","1","685","AMSTERDAM AVENUE","10025","2122808099","49","2011-02-24 00:00:00","F","04J","37","","","2013-09-13 01:01:06.177000000" +"41292992","KOUZAN","1","685","AMSTERDAM AVENUE","10025","2122808099","49","2011-02-24 00:00:00","F","06D","37","","","2013-09-13 01:01:06.177000000" +"41292992","KOUZAN","1","685","AMSTERDAM AVENUE","10025","2122808099","49","2011-04-12 00:00:00","U","10F","12","B","2011-04-12 00:00:00","2013-09-13 01:01:06.177000000" +"41292992","KOUZAN","1","685","AMSTERDAM AVENUE","10025","2122808099","49","2013-08-20 00:00:00","F","04N","42","","","2013-09-13 01:01:06.177000000" +"41292992","KOUZAN","1","685","AMSTERDAM AVENUE","10025","2122808099","49","2013-08-20 00:00:00","F","06D","42","","","2013-09-13 01:01:06.177000000" +"41292992","KOUZAN","1","685","AMSTERDAM AVENUE","10025","2122808099","49","2013-08-20 00:00:00","F","08A","42","","","2013-09-13 01:01:06.177000000" +"41293804","LOKAL","3","905","LORIMER STREET","11222","7183846777","03","2012-02-09 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2010-10-02 00:00:00","U","04N","8","B","2010-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2010-10-02 00:00:00","U","08A","8","B","2010-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-09-15 00:00:00","F","06D","51","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2011-09-29 00:00:00","U","06C","22","B","2011-09-29 00:00:00","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2012-01-12 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2012-07-13 00:00:00","F","02B","19","","","2013-09-13 01:01:06.177000000" +"41297095","CHIKURIN","3","2274","86 STREET","11214","7183330811","49","2012-07-13 00:00:00","F","04M","19","","","2013-09-13 01:01:06.177000000" +"41298037","RAMEN SETAGAYA","1","34 1/2","ST MARKS PLACE","10003","2123877959","49","2012-08-28 00:00:00","F","08A","18","C","2012-08-28 00:00:00","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2011-10-12 00:00:00","F","02B","46","C","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2011-10-12 00:00:00","F","04M","46","C","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41298736","OSAKA FUSION JAPANESE CUISINE","3","2118","FLATBUSH AVENUE","11234","7183381038","49","2013-05-11 00:00:00","P","04J","27","","","2013-09-13 01:01:06.177000000" +"41299007","JIVAMUKTEA CAFE","1","841","BROADWAY","10003","2123530214","84","2011-02-14 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41299007","JIVAMUKTEA CAFE","1","841","BROADWAY","10003","2123530214","84","2011-02-14 00:00:00","G","10F","49","","","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2010-08-25 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2011-04-21 00:00:00","F","02A","35","C","2011-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2011-04-21 00:00:00","F","04J","35","C","2011-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2011-04-21 00:00:00","F","06D","35","C","2011-04-21 00:00:00","2013-09-13 01:01:06.177000000" +"41299160","POTLUCK","1","255","WEST 26 STREET","10001","2129293848","49","2012-02-29 00:00:00","P","02B","15","","","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2011-08-25 00:00:00","F","06C","40","","","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2011-09-22 00:00:00","D","04L","13","A","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2011-09-22 00:00:00","D","08A","13","A","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41299186","65 SHABU SHABU/KUHO SUSHI","3","1701","65 STREET","11204","7182325688","49","2012-01-27 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"41299712","MISO-YA","1","129","2 AVENUE","10003","2126774825","49","2013-02-14 00:00:00","P","09B","19","","","2013-09-13 01:01:06.177000000" +"41301266","VIVI","1","248","EAST 52 STREET","10022","2128266880","49","2012-06-26 00:00:00","U","06D","11","B","2012-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"41302781","TRATTORIA IL MULINO","1","36","EAST 20 STREET","10003","2127778448","48","2013-08-28 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41302781","TRATTORIA IL MULINO","1","36","EAST 20 STREET","10003","2127778448","48","2013-08-28 00:00:00","F","06D","49","","","2013-09-13 01:01:06.177000000" +"41302781","TRATTORIA IL MULINO","1","36","EAST 20 STREET","10003","2127778448","48","2013-08-28 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41302781","TRATTORIA IL MULINO","1","36","EAST 20 STREET","10003","2127778448","48","2013-08-28 00:00:00","F","08B","49","","","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2012-01-04 00:00:00","D","08C","13","A","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41304268","SUSHI YAWA","1","25","WEST 8 STREET","10011","2122539888","49","2012-11-23 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2010-10-13 00:00:00","C","04L","11","A","2010-10-13 00:00:00","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-03-13 00:00:00","F","06E","27","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-03-22 00:00:00","G","04H","52","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-03-26 00:00:00","W","10F","35","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2012-05-10 00:00:00","P","04M","17","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2013-03-09 00:00:00","G","06D","39","","","2013-09-13 01:01:06.177000000" +"41305482","NOMADO 33","1","165","EAST 33 STREET","10016","2128892833","49","2013-09-11 00:00:00","G","02G","52","","","2013-09-13 01:01:06.177000000" +"41305601","PALACE OF JAPAN","2","3505","JOHNSON AVENUE","10463","7185438833","49","2011-06-15 00:00:00","O","","","P","2011-06-15 00:00:00","2013-09-13 01:01:06.177000000" +"41305601","PALACE OF JAPAN","2","3505","JOHNSON AVENUE","10463","7185438833","49","2011-12-13 00:00:00","D","02B","11","A","2011-12-13 00:00:00","2013-09-13 01:01:06.177000000" +"41305601","PALACE OF JAPAN","2","3505","JOHNSON AVENUE","10463","7185438833","49","2011-12-13 00:00:00","D","10B","11","A","2011-12-13 00:00:00","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2013-05-07 00:00:00","F","02B","57","","","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2013-05-07 00:00:00","F","04K","57","","","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2013-05-07 00:00:00","F","06E","57","","","2013-09-13 01:01:06.177000000" +"41305738","GREENWICH GRILL/SUSHI AZABU","1","428","GREENWICH STREET","10013","2122740428","49","2013-05-07 00:00:00","F","08A","57","","","2013-09-13 01:01:06.177000000" +"41306692","FUJI","1","455","MAIN STREET","10044","2125831688","49","2009-12-14 13:21:00","U","02G","7","","","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2010-09-30 00:00:00","P","04L","21","","","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2012-08-09 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"41308819","TOYKO BAY JAPANESE RESTAURANT","1","183","DUANE STREET","10013","2124318666","49","2013-03-26 00:00:00","F","02G","25","","","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2012-01-03 00:00:00","F","06F","36","C","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2012-01-03 00:00:00","F","08A","36","C","2012-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41309690","HAKATA TON TON","1","61","GROVE STREET","10014","2122423699","49","2013-07-09 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41310837","KYOTO SUSHI V","5","418","FOREST AVENUE","10301","7187276666","49","2011-10-24 00:00:00","D","10D","13","A","2011-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2011-06-03 00:00:00","F","04C","101","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2011-06-03 00:00:00","F","04M","101","","","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2011-06-13 00:00:00","U","04H","24","B","2011-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2011-09-28 00:00:00","D","09C","12","A","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41311169","TIKI BAR","1","49","ESSEX STREET","10002","2127778454","03","2012-03-13 00:00:00","D","06C","11","A","2012-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2010-12-14 00:00:00","P","04N","20","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2010-12-14 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2011-01-28 00:00:00","D","06F","13","A","2011-01-28 00:00:00","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2011-05-24 00:00:00","P","06F","26","","","2013-09-13 01:01:06.177000000" +"41312239","OKA SUSHI","1","16-18","MAIDEN LANE","10038","2122338222","49","2012-08-06 00:00:00","D","06A","12","A","2012-08-06 00:00:00","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2011-11-15 00:00:00","F","04L","28","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2012-05-01 00:00:00","F","10F","32","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2013-07-02 00:00:00","F","04K","73","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2013-07-02 00:00:00","F","06D","73","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2013-07-02 00:00:00","F","06E","73","","","2013-09-13 01:01:06.177000000" +"41312442","MEGU","1","62","THOMAS STREET","10013","2129647777","49","2013-07-02 00:00:00","F","08A","73","","","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2011-04-05 00:00:00","U","06C","15","B","2011-04-05 00:00:00","2013-09-13 01:01:06.177000000" +"41313385","SUSHI HANA","3","524","86 STREET","11209","7182384513","49","2011-09-08 00:00:00","U","02B","17","B","2011-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2010-08-24 00:00:00","F","04L","14","","","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2010-08-24 00:00:00","F","10E","14","","","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2011-03-30 00:00:00","U","02G","21","B","2011-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2011-03-30 00:00:00","U","10H","21","B","2011-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"41317598","CHO CHO SAN JAPANESE RESTAURANT","1","15","WEST 8 STREET","10011","2124733633","49","2012-09-18 00:00:00","P","04H","23","","","2013-09-13 01:01:06.177000000" +"41318055","BANY TEN 57 ASIAN FUSION","4","10-57","JACKSON AVENUE","11101","7183832388","49","2010-10-19 00:00:00","P","06B","18","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-04-11 00:00:00","F","99B","56","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-11-29 00:00:00","F","02G","44","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-11-29 00:00:00","F","99B","44","","","2013-09-13 01:01:06.177000000" +"41318168","KUMO SUSHI","1","165","WEST 72 STREET","10023","2125806228","49","2011-12-16 00:00:00","U","02G","23","B","2011-12-16 00:00:00","2013-09-13 01:01:06.177000000" +"41320193","KAWAII SUSHI","4","82-19","153 AVENUE","11414","7188486888","49","2011-01-18 00:00:00","C","10H","9","A","2011-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2011-05-09 00:00:00","F","08A","58","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2011-11-16 00:00:00","F","02B","32","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2011-11-16 00:00:00","F","06E","32","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2011-11-16 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2012-05-05 00:00:00","D","02B","12","A","2012-05-05 00:00:00","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2012-09-25 00:00:00","P","10E","26","","","2013-09-13 01:01:06.177000000" +"41320894","QUAN SUSHI","1","375","BROOME STREET","10013","2122263235","49","2012-11-16 00:00:00","D","08A","10","A","2012-11-16 00:00:00","2013-09-13 01:01:06.177000000" +"41320931","RICH VILLAGE RESTAURANT","3","6009","7 AVENUE","11220","7182388628","20","2011-04-26 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2012-02-22 00:00:00","P","09B","22","","","2013-09-13 01:01:06.177000000" +"41321316","METRO SUSHI CAFE","4","118-21","METROPOLITAN AVENUE","11415","7188508888","49","2013-08-13 00:00:00","F","02B","31","","","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2010-08-30 00:00:00","P","10F","10","","","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2011-12-12 00:00:00","D","06A","7","A","2011-12-12 00:00:00","2013-09-13 01:01:06.177000000" +"41325554","SUSHI ISLAND","4","87-18","QUEENS BOULEVARD","11373","7188033033","49","2013-05-15 00:00:00","P","06E","26","","","2013-09-13 01:01:06.177000000" +"41326289","TEN JAPANESE CUISINE","3","440","7 AVENUE","11215","7187689888","49","2011-05-27 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41328227","GUANG ZHOU CHINESE RESTAURANT","3","318","KINGS HIGHWAY","11223","7187879516","20","2012-04-24 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41328227","GUANG ZHOU CHINESE RESTAURANT","3","318","KINGS HIGHWAY","11223","7187879516","20","2012-04-24 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-03-22 00:00:00","P","08C","27","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-04-28 00:00:00","F","02B","40","C","2011-04-28 00:00:00","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-09-21 00:00:00","F","09B","21","C","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2011-12-28 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2012-08-31 00:00:00","F","02B","55","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2012-08-31 00:00:00","F","04C","55","","","2013-09-13 01:01:06.177000000" +"41332852","LINN JAPANESE RESTAURANT","4","29-13","BROADWAY","11106","7182040060","49","2012-09-20 00:00:00","U","04H","17","B","2012-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2010-06-03 11:01:00","G","06E","70","","","2013-09-13 01:01:06.177000000" +"41333188","VIVI BUBBLE TEA","1","49","BAYARD STREET","10013","2125666833","14","2010-12-06 00:00:00","D","10F","2","A","2010-12-06 00:00:00","2013-09-13 01:01:06.177000000" +"41336495","MAMA'S SUSHI","1","237","DYCKMAN STREET","10034","2125672450","49","2011-05-10 00:00:00","U","04K","20","B","2011-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-05-11 19:26:00","F","10C","46","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-09-22 00:00:00","F","06E","36","","","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-11-24 00:00:00","U","02B","23","B","2010-11-24 00:00:00","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2010-11-24 00:00:00","U","08A","23","B","2010-11-24 00:00:00","2013-09-13 01:01:06.177000000" +"41338296","NEW RED APPLE RESTAURANT","5","1724","HYLAN BOULEVARD","10305","7186673100","49","2011-05-10 00:00:00","F","10F","36","","","2013-09-13 01:01:06.177000000" +"41341734","CHINA VILLAGE RESTAURANT","1","94","BAXTER STREET","10013","2129416679","20","2012-02-23 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41341734","CHINA VILLAGE RESTAURANT","1","94","BAXTER STREET","10013","2129416679","20","2012-02-23 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41342422","DON PICHON RESTAURANT","2","359","SOUTHERN BOULEVARD","10454","7187422776","53","2011-08-08 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41343921","KOUROS BAY DINER","3","3861","NOSTRAND AVENUE","11235","7187435777","03","2011-06-10 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41343921","KOUROS BAY DINER","3","3861","NOSTRAND AVENUE","11235","7187435777","03","2011-06-10 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2010-07-06 14:43:00","U","04N","26","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2010-07-06 14:43:00","U","08A","26","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2010-07-06 14:43:00","U","99B","26","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2011-02-10 00:00:00","U","04L","8","B","2011-02-10 00:00:00","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2011-08-16 00:00:00","F","09B","42","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2012-09-10 00:00:00","G","04L","48","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2012-09-10 00:00:00","G","09C","48","","","2013-09-13 01:01:06.177000000" +"41345860","YOSHI SUSHI","1","131","AVENUE A","10009","2124205909","49","2013-03-25 00:00:00","F","06D","43","","","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2011-06-22 00:00:00","U","10F","11","B","2011-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2013-04-17 00:00:00","D","06E","12","A","2013-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41346707","SHINJU","3","236","7 AVENUE","11215","7187880083","49","2013-09-06 00:00:00","G","04C","50","","","2013-09-13 01:01:06.177000000" +"41346769","BED-STUY FISH FRY","3","801","HALSEY STREET","11233","3474059820","73","2011-11-15 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41346769","BED-STUY FISH FRY","3","801","HALSEY STREET","11233","3474059820","73","2011-11-15 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2010-06-30 08:57:00","D","10C","7","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2010-12-16 00:00:00","F","06C","46","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2010-12-16 00:00:00","F","10F","46","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2011-05-18 00:00:00","P","06C","20","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2011-05-18 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2011-09-09 00:00:00","F","04M","20","C","2011-09-09 00:00:00","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-01-04 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-06-14 00:00:00","F","02B","73","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-06-14 00:00:00","F","04M","73","","","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2012-12-17 00:00:00","U","09C","19","B","2012-12-17 00:00:00","2013-09-13 01:01:06.177000000" +"41348987","NIKONIKO SUSHI & BOWL","1","80","WALL STREET","10005","2122320152","49","2013-05-23 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2011-06-17 00:00:00","P","06F","15","","","2013-09-13 01:01:06.177000000" +"41350556","KAMBI RAMEN","1","351","EAST 14 STREET","10003","2122281366","49","2012-05-23 00:00:00","P","06E","21","","","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2011-06-25 00:00:00","D","08C","9","A","2011-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41350583","AJISEN RAMEN","4","136-20 ","38 AVENUE ","11354","7183958119","49","2012-05-03 00:00:00","D","02G","13","A","2012-05-03 00:00:00","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2010-09-20 00:00:00","F","04L","44","","","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2013-04-27 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41352783","MITOUSHI SUSHI","5","10","AKRON STREET","10314","7189835063","49","2013-04-27 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2011-06-14 00:00:00","F","02B","35","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2011-06-14 00:00:00","F","04M","35","","","2013-09-13 01:01:06.177000000" +"41352974","SAKURA JAPENESE RESTAURANT","3","837","MANHATTAN AVENUE","11222","7183497888","49","2012-07-19 00:00:00","P","04A","23","","","2013-09-13 01:01:06.177000000" +"41353598","NIO'S WEST INDIAN RESTAURANT & BAKERY","3","2702","CHURCH AVENUE","11226","7182879848","17","2011-12-16 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2010-09-27 00:00:00","F","04L","40","","","2013-09-13 01:01:06.177000000" +"41353612","SOHO SUSHI","1","231","SULLIVAN STREET","10012","2127772188","49","2011-05-25 00:00:00","F","02G","41","","","2013-09-13 01:01:06.177000000" +"41360079","FIVE LEAVES","3","18","BEDFORD AVENUE","11222","7183835345","03","2013-02-11 00:00:00","F","02H","49","","","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2012-01-31 00:00:00","D","02B","11","A","2012-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2012-01-31 00:00:00","D","10B","11","A","2012-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2013-04-02 00:00:00","F","06D","19","","","2013-09-13 01:01:06.177000000" +"41361827","FUSHIMI JAPANESE CUISINE","5","2110A","RICHMOND ROAD","10306","7189805300","49","2013-04-02 00:00:00","F","08A","19","","","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2011-08-16 00:00:00","F","06D","28","","","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2011-08-16 00:00:00","F","06E","28","","","2013-09-13 01:01:06.177000000" +"41367958","YUKA JAPANESE RESTAURANT","1","1557","2 AVENUE","10028","2127729675","49","2011-08-31 00:00:00","U","04L","10","B","2011-08-31 00:00:00","2013-09-13 01:01:06.177000000" +"41370445","SUSHI YAMA","3","268","PROSPECT PARK WEST","11215","7187883896","49","2010-10-19 00:00:00","C","09C","12","A","2010-10-19 00:00:00","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2010-05-26 19:35:00","F","10B","48","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2010-06-17 21:54:00","U","06A","27","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2010-06-17 21:54:00","U","10B","27","","","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2011-07-12 00:00:00","U","02G","25","B","2011-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2011-07-12 00:00:00","U","99B","25","B","2011-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41372630","KATSUNO","4","103-01","METROPOLITAN AVENUE","11375","7185754033","49","2012-08-02 00:00:00","D","04L","12","A","2012-08-02 00:00:00","2013-09-13 01:01:06.177000000" +"41372868","MONOKAWA","1","157","EAST 28 STREET","10016","2126847830","49","2011-04-27 00:00:00","U","06B","20","B","2011-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41372868","MONOKAWA","1","157","EAST 28 STREET","10016","2126847830","49","2011-04-27 00:00:00","U","10A","20","B","2011-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41372868","MONOKAWA","1","157","EAST 28 STREET","10016","2126847830","49","2011-10-18 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2011-02-09 00:00:00","F","18A","19","","","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2011-03-03 00:00:00","U","02G","25","B","2011-03-03 00:00:00","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2011-03-03 00:00:00","U","08A","25","B","2011-03-03 00:00:00","2013-09-13 01:01:06.177000000" +"41375908","UMI","1","303","EAST 56 STREET","10022","2128888101","49","2012-01-30 00:00:00","D","08A","12","A","2012-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41378305","CURRY EXPRESS","1","130","EAST 29 STREET","10016","2122510202","44","2010-08-25 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41378334","B.B.Q. VILLAGE PALACE","4","181-02/12","HILLSIDE AVENUE","11432","7182989099","44","2012-02-09 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2010-06-24 19:25:00","F","06D","39","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2010-06-24 19:25:00","F","08A","39","","","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2012-04-25 00:00:00","U","06C","23","B","2012-04-25 00:00:00","2013-09-13 01:01:06.177000000" +"41378862","UMI SUSHI JAPANESE CUISINE","3","215","BRIGHTON BEACH AVE","11235","7187693338","49","2013-02-11 00:00:00","P","04C","15","","","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2011-07-28 00:00:00","U","10F","11","B","2011-07-28 00:00:00","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2012-01-27 00:00:00","P","02G","23","","","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2012-08-15 00:00:00","F","04A","32","","","2013-09-13 01:01:06.177000000" +"41378887","KAN IZAKAYA","4","160-30","NORTHERN BOULEVARD","11358","7183534006","49","2013-02-20 00:00:00","F","10F","27","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2010-10-13 00:00:00","F","08A","43","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2011-04-25 00:00:00","G","02G","54","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2011-04-25 00:00:00","G","04H","54","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2011-09-06 00:00:00","D","10F","13","A","2011-09-06 00:00:00","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2012-01-11 00:00:00","F","04H","31","","","2013-09-13 01:01:06.177000000" +"41380163","UDON WEST","1","150","EAST 46 STREET","10017","2129229677","49","2012-06-19 00:00:00","P","04J","26","","","2013-09-13 01:01:06.177000000" +"41381258","SUBWAY","3","391","JAY STREET","11201","7188522226","69","2011-05-20 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41381258","SUBWAY","3","391","JAY STREET","11201","7188522226","69","2011-05-20 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41381258","SUBWAY","3","391","JAY STREET","11201","7188522226","69","2011-05-20 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41381258","SUBWAY","3","391","JAY STREET","11201","7188522226","69","2011-05-20 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2010-03-04 15:52:00","U","04M","16","","","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2010-03-04 15:52:00","U","09D","16","","","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2012-03-05 00:00:00","D","10B","5","A","2012-03-05 00:00:00","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2012-08-15 00:00:00","F","04M","24","C","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"41383250","OSAKA JAPANESE FUSION","4","25-24","BROADWAY","11106","7187772662","49","2012-08-15 00:00:00","F","06C","24","C","2012-08-15 00:00:00","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2011-06-14 00:00:00","P","06C","16","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-01-10 00:00:00","F","04M","39","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-01-10 00:00:00","F","10F","39","","","2013-09-13 01:01:06.177000000" +"41384329","ICHI SUSHI I","3","2040","86 STREET","11214","7183732929","49","2012-11-13 00:00:00","P","04A","21","","","2013-09-13 01:01:06.177000000" +"41385990","MITOUSHI SUSHI","3","1221 ","QUENTIN ROAD ","11229","7189989882","49","2010-03-25 11:53:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41385990","MITOUSHI SUSHI","3","1221 ","QUENTIN ROAD ","11229","7189989882","49","2011-12-28 00:00:00","D","10F","8","A","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2010-12-29 00:00:00","U","06C","20","B","2010-12-29 00:00:00","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2011-07-12 00:00:00","P","04M","21","","","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2011-07-12 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2012-03-05 00:00:00","P","02B","16","","","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2012-03-05 00:00:00","P","10A","16","","","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2012-09-25 00:00:00","P","02G","13","","","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2012-10-24 00:00:00","F","02B","29","C","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41387649","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2012-10-24 00:00:00","F","04M","29","C","2012-10-24 00:00:00","2013-09-13 01:01:06.177000000" +"41388838","SOUEN NOODLE","1","326","EAST 6 STREET","10003","2123881155","49","2010-12-14 00:00:00","F","08A","53","","","2013-09-13 01:01:06.177000000" +"41388838","SOUEN NOODLE","1","326","EAST 6 STREET","10003","2123881155","49","2011-02-17 00:00:00","D","10F","2","A","2011-02-17 00:00:00","2013-09-13 01:01:06.177000000" +"41388846","MI TIERRA ECUATORIANA","3","386","LEONARD STREET","11211","7185990070","53","2010-08-16 00:00:00","F","03B","49","","","2013-09-13 01:01:06.177000000" +"41388846","MI TIERRA ECUATORIANA","3","386","LEONARD STREET","11211","7185990070","53","2010-08-16 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2010-08-24 00:00:00","P","02G","14","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2011-06-20 00:00:00","U","06E","10","B","2011-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2012-12-13 00:00:00","P","04L","15","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2012-12-13 00:00:00","P","08A","15","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2013-01-29 00:00:00","D","08A","11","A","2013-01-29 00:00:00","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2013-06-24 00:00:00","F","02H","73","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2013-06-24 00:00:00","F","04L","73","","","2013-09-13 01:01:06.177000000" +"41388901","OZU RESTAURANT","1","566","AMSTERDAM AVENUE","10024","2127878316","49","2013-06-24 00:00:00","F","08A","73","","","2013-09-13 01:01:06.177000000" +"41389136","SUSHI DELIGHT","1","157","HESTER STREET","10013","9174780453","49","2011-04-18 00:00:00","F","06D","24","C","2011-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41389296","SHANDAR SWEET & RESTAURANT","3","679","CONEY ISLAND AVENUE","11218","7187034400","59","2011-09-01 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41389296","SHANDAR SWEET & RESTAURANT","3","679","CONEY ISLAND AVENUE","11218","7187034400","59","2011-09-01 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2011-05-10 00:00:00","U","09B","21","B","2011-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2011-09-12 00:00:00","F","04L","38","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2011-09-12 00:00:00","F","10F","38","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2012-02-08 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41391579","GINZA SUSHI 8","3","2809","OCEAN AVENUE","11229","7187696028","49","2012-09-18 00:00:00","P","02B","17","","","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2010-12-02 00:00:00","P","06C","20","","","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2011-01-13 00:00:00","C","06C","12","A","2011-01-13 00:00:00","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2011-12-22 00:00:00","P","06E","15","","","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2012-01-17 00:00:00","D","09C","11","A","2012-01-17 00:00:00","2013-09-13 01:01:06.177000000" +"41393521","SUSHI 33","4","63-56","BOOTH STREET","11374","7188963033","49","2012-06-25 00:00:00","D","09C","7","A","2012-06-25 00:00:00","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2010-09-13 00:00:00","P","09B","21","","","2013-09-13 01:01:06.177000000" +"41393911","SUSHI K BAR","3","4120","16 AVENUE","11204","7188715227","49","2013-07-10 00:00:00","P","02G","9","","","2013-09-13 01:01:06.177000000" +"41394230","EAST SUSHI","5","4371","AMBOY ROAD","10312","7189668888","49","2009-10-05 15:11:00","U","06E","8","","","2013-09-13 01:01:06.177000000" +"41394230","EAST SUSHI","5","4371","AMBOY ROAD","10312","7189668888","49","2012-02-11 00:00:00","F","06D","20","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2010-11-09 00:00:00","F","08C","54","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2011-04-18 00:00:00","F","04N","65","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2011-04-18 00:00:00","F","06D","65","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2011-04-18 00:00:00","F","08A","65","","","2013-09-13 01:01:06.177000000" +"41394701","SUSHI OSAKA & ASIAN FOOD","1","535","8 AVENUE","10018","2126299709","49","2013-08-29 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41394959","BOHEMIAN NEW YORK","1","57","GREAT JONES ST","10012","2123881070","49","2013-02-19 00:00:00","F","06A","47","","","2013-09-13 01:01:06.177000000" +"41394959","BOHEMIAN NEW YORK","1","57","GREAT JONES ST","10012","2123881070","49","2013-02-19 00:00:00","F","10B","47","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2010-11-18 00:00:00","U","02B","19","B","2010-11-18 00:00:00","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2011-12-29 00:00:00","F","04L","30","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2012-01-09 00:00:00","F","04N","23","C","2012-01-09 00:00:00","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2012-01-09 00:00:00","F","08A","23","C","2012-01-09 00:00:00","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2012-07-31 00:00:00","F","04N","50","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2012-07-31 00:00:00","F","08A","50","","","2013-09-13 01:01:06.177000000" +"41395040","EAST JAPANESE RESTAURANT","1","354 ","EAST 66 STREET ","10065","2127345270","49","2013-01-17 00:00:00","P","04L","15","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-05-24 13:34:00","U","10G","27","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2010-10-02 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2011-06-01 00:00:00","F","04L","35","","","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2011-06-29 00:00:00","F","02G","20","C","2011-06-29 00:00:00","2013-09-13 01:01:06.177000000" +"41395934","WATAWA JAPANESE RESTAURANT","4","33-10","DITMARS BOULEVARD","11105","7185459596","49","2012-09-10 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"41396618","BINY JAPANESE RESTAURANT","1","393","CANAL STREET","10013","2123345490","49","2010-11-03 00:00:00","D","10E","5","A","2010-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41396618","BINY JAPANESE RESTAURANT","1","393","CANAL STREET","10013","2123345490","49","2011-10-31 00:00:00","D","09C","13","A","2011-10-31 00:00:00","2013-09-13 01:01:06.177000000" +"41396618","BINY JAPANESE RESTAURANT","1","393","CANAL STREET","10013","2123345490","49","2011-10-31 00:00:00","D","10F","13","A","2011-10-31 00:00:00","2013-09-13 01:01:06.177000000" +"41396618","BINY JAPANESE RESTAURANT","1","393","CANAL STREET","10013","2123345490","49","2011-10-31 00:00:00","E","16B","","","","2013-09-13 01:01:06.177000000" +"41398824","VARIETY CAFE","3","145","DRIGGS AVENUE","11222","3475992351","14","2010-10-12 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41398824","VARIETY CAFE","3","145","DRIGGS AVENUE","11222","3475992351","14","2010-10-12 00:00:00","F","04O","49","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2011-03-19 00:00:00","P","08A","20","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2011-10-19 00:00:00","F","04L","34","","","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2012-08-01 00:00:00","U","06C","24","B","2012-08-01 00:00:00","2013-09-13 01:01:06.177000000" +"41399665","PACIFIC OCEAN HOUSE","3","84","MANHATTAN AVENUE","11206","7183883371","49","2013-01-28 00:00:00","D","10E","11","A","2013-01-28 00:00:00","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2011-05-18 00:00:00","G","06D","76","","","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2011-08-29 00:00:00","U","10F","14","B","2011-08-29 00:00:00","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2013-06-03 00:00:00","P","09C","18","","","2013-09-13 01:01:06.177000000" +"41403341","YAMATO","3","168","7 AVENUE","11215","7188400099","49","2013-06-03 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41405662","FARRELLS","3","215","PROSPECT PARK WEST","11215","7187888779","03","2011-06-03 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41406628","THIS AND THAT NO NONSENSE RESTAURANT","3","419","EAST 98 STREET","11212","7183850658","17","2011-04-06 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41406628","THIS AND THAT NO NONSENSE RESTAURANT","3","419","EAST 98 STREET","11212","7183850658","17","2011-04-06 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41407838","SUBWAY","1","612","8 AVENUE","10018","2122219480","75","2011-10-31 00:00:00","F","10A","49","","","2013-09-13 01:01:06.177000000" +"41408277","NOBI SUSHI","1","437","3RD AVENUE","10016","2124818333","49","2011-01-10 00:00:00","F","10B","21","","","2013-09-13 01:01:06.177000000" +"41410071","RIMINI PASTRY SHOPPE","3","6822","BAY PARKWAY","11204","7182360644","08","2013-07-16 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2011-04-05 00:00:00","P","04L","26","","","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2011-04-05 00:00:00","P","06F","26","","","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2011-04-05 00:00:00","P","08A","26","","","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2011-04-05 00:00:00","P","09C","26","","","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2012-04-25 00:00:00","F","08A","44","","","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2012-12-01 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"41413135","CHERIN SUSHI","1","306","EAST 6 STREET","10003","2123881348","49","2012-12-01 00:00:00","F","06F","32","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2011-01-26 00:00:00","F","10F","23","C","2011-01-26 00:00:00","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2011-05-19 00:00:00","F","04J","30","","","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2011-07-21 00:00:00","U","06B","15","B","2011-07-21 00:00:00","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2012-01-05 00:00:00","D","06E","12","A","2012-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41414942","ASHIYA III SUSHI","1","374","GREENWICH STREET","10013","2129628080","49","2012-06-01 00:00:00","D","02G","9","A","2012-06-01 00:00:00","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2011-02-02 00:00:00","D","08C","7","A","2011-02-02 00:00:00","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2012-01-24 00:00:00","F","04L","38","","","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2012-02-07 00:00:00","D","09C","13","A","2012-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2012-02-07 00:00:00","D","10F","13","A","2012-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41415808","FUGU JAPANESE CUISINE","3","6804","BAY PARKWAY","11204","7186213124","49","2012-07-10 00:00:00","U","06F","27","B","2012-07-10 00:00:00","2013-09-13 01:01:06.177000000" +"41416878","KISSENA DOMINICAN DINER","4","7102","KISSENA BOULEVARD","11367","7187938270","53","2012-08-16 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2010-09-24 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"41418302","OSAKA","3","272","COURT STREET","11231","7186430044","49","2012-01-11 00:00:00","P","09B","9","","","2013-09-13 01:01:06.177000000" +"41419933","KOTO SUSHI & STEAK","3","552","HENRY STREET","11231","7182228055","49","2012-05-26 00:00:00","P","08A","23","","","2013-09-13 01:01:06.177000000" +"41419933","KOTO SUSHI & STEAK","3","552","HENRY STREET","11231","7182228055","49","2012-12-04 00:00:00","D","10I","9","A","2012-12-04 00:00:00","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-05-31 00:00:00","F","04L","32","C","2011-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-09-12 00:00:00","F","04M","28","","","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2011-09-12 00:00:00","F","10B","28","","","2013-09-13 01:01:06.177000000" +"41422211","NU SUSHI","1","76","PEARL STREET","10004","2123631668","49","2012-07-16 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-02-10 00:00:00","U","06D","25","B","2011-02-10 00:00:00","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-08-19 00:00:00","F","10I","59","","","2013-09-13 01:01:06.177000000" +"41424035","SHINJU SUSHI","1","164","PEARL STREET","10005","2123610028","49","2011-09-28 00:00:00","F","02G","26","C","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2009-11-19 11:38:00","U","10B","20","","","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2010-09-21 00:00:00","F","04K","57","","","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2010-09-21 00:00:00","F","08A","57","","","2013-09-13 01:01:06.177000000" +"41428018","FATTY FISH","1","406 ","EAST 64 STREET ","10065","2128731336","49","2011-05-17 00:00:00","F","10B","34","","","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2010-10-18 00:00:00","C","06C","6","A","2010-10-18 00:00:00","2013-09-13 01:01:06.177000000" +"41428346","AJI SUSHI","1","519","3 AVENUE","10016","2126862055","49","2013-03-05 00:00:00","F","06C","39","","","2013-09-13 01:01:06.177000000" +"41428414","GHANG THAI KITCHEN","3","229","COURT STREET","11201","7188751369","82","2011-09-13 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2010-10-14 00:00:00","F","04L","34","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2011-06-23 00:00:00","F","99B","50","C","2011-06-23 00:00:00","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2011-10-24 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2011-11-21 00:00:00","F","04L","19","C","2011-11-21 00:00:00","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2011-11-21 00:00:00","F","08A","19","C","2011-11-21 00:00:00","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2012-04-30 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"41428977","OCHA SUSHI","1","350","WEST 46 STREET","10036","2125813198","49","2012-05-15 00:00:00","D","06C","12","A","2012-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41430090","CITLALI'S DELI AND GROCERY","3","4118","5 AVENUE","11232","3479873681","55","2011-12-08 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41431748","GOWASABI","4","34-02","30 AVENUE","11103","7182747354","49","2010-05-19 12:06:00","U","10G","22","","","2013-09-13 01:01:06.177000000" +"41431748","GOWASABI","4","34-02","30 AVENUE","11103","7182747354","49","2011-05-12 00:00:00","F","06D","44","","","2013-09-13 01:01:06.177000000" +"41431899","THAI PALATE","1","534","9 AVENUE","10018","2122799899","82","2013-08-27 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41432865","SUSHI HANA","1","111","RIVINGTON STREET","10002","2123889688","49","2012-07-30 00:00:00","U","04M","13","B","2012-07-30 00:00:00","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2010-11-10 00:00:00","F","06D","29","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2010-11-29 00:00:00","U","04L","20","B","2010-11-29 00:00:00","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2011-04-21 00:00:00","G","06C","60","","","2013-09-13 01:01:06.177000000" +"41434117","SUZU SUSHI","1","1075","1 AVENUE","10022","2123100156","49","2011-09-03 00:00:00","U","10H","12","B","2011-09-03 00:00:00","2013-09-13 01:01:06.177000000" +"41434866","BELLA VITA","1","158","WEST 58 STREET","10019","2126647670","62","2012-05-29 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2011-12-12 00:00:00","F","06A","40","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-02-04 00:00:00","F","04A","50","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-02-26 00:00:00","G","05D","76","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-02-26 00:00:00","G","06B","76","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-06-18 00:00:00","F","05D","33","","","2013-09-13 01:01:06.177000000" +"41435171","SUMO TERIYAKI & SUSHI","3","139","HAVEMEYER STREET","11211","7187828400","49","2013-06-18 00:00:00","F","06B","33","","","2013-09-13 01:01:06.177000000" +"41435938","SUSHI YOU","4","215-05","73 AVENUE","11364","7187956557","49","2011-09-22 00:00:00","D","06E","7","A","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41436709","EAST NOODLE & IZAKAYA","1","119","2 AVENUE","10003","2129824285","49","2013-04-02 00:00:00","F","02A","25","","","2013-09-13 01:01:06.177000000" +"41436709","EAST NOODLE & IZAKAYA","1","119","2 AVENUE","10003","2129824285","49","2013-04-02 00:00:00","F","08A","25","","","2013-09-13 01:01:06.177000000" +"41436878","CASA LEVER","1","390","PARK AVENUE","10022","2128888015","48","2011-12-23 00:00:00","F","06A","49","","","2013-09-13 01:01:06.177000000" +"41437112","SLICES AND ICES","4","208","BEACH 116 STREET","11694","7184740200","62","2012-06-25 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41437112","SLICES AND ICES","4","208","BEACH 116 STREET","11694","7184740200","62","2012-06-25 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2009-09-21 11:24:00","U","02G","14","","","2013-09-13 01:01:06.177000000" +"41438883","AA ICHIBAN","1","232","7 AVENUE","10011","2126758188","49","2010-03-09 14:03:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"41442107","ROBATAYA","1","231","EAST 9 STREET","10003","2129799674","49","2011-04-20 00:00:00","F","04J","37","","","2013-09-13 01:01:06.177000000" +"41442107","ROBATAYA","1","231","EAST 9 STREET","10003","2129799674","49","2011-04-20 00:00:00","F","06D","37","","","2013-09-13 01:01:06.177000000" +"41442107","ROBATAYA","1","231","EAST 9 STREET","10003","2129799674","49","2011-04-20 00:00:00","F","06E","37","","","2013-09-13 01:01:06.177000000" +"41442107","ROBATAYA","1","231","EAST 9 STREET","10003","2129799674","49","2013-06-19 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2010-11-01 00:00:00","C","04M","10","A","2010-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"41443011","OSAKA JAPANESE RESTAURANT","3","2805","AVENUE U","11229","7188916200","49","2012-05-03 00:00:00","F","04H","38","","","2013-09-13 01:01:06.177000000" +"41443242","SPRING GARDEN CHINESE RESTAURANT","4","62-24","WOODHAVEN BOULEVARD","11374","7184461006","20","2011-01-19 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-04-08 00:00:00","O","04M","10","C","2013-04-08 00:00:00","2013-09-13 01:01:06.177000000" +"41443674","THE SUSHI ROOM","3","462","AVENUE P","11223","7187874448","49","2013-07-31 00:00:00","P","06C","27","","","2013-09-13 01:01:06.177000000" +"41443732","EL BURRITO LOCO","4","90-18","ROOSEVELT AVENUE","11372","3479653206","81","2010-05-10 13:09:00","F","10G","49","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-02-05 00:00:00","D","10H","13","A","2011-02-05 00:00:00","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-06-16 00:00:00","F","02B","69","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-06-16 00:00:00","F","04N","69","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-06-16 00:00:00","F","08A","69","","","2013-09-13 01:01:06.177000000" +"41443745","CHIKURIN JAPANESE RESTAURANT","3","1777","OCEAN AVENUE","11230","7183381818","49","2011-12-14 00:00:00","U","08B","21","B","2011-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41445505","THE VANDERBILT","3","570","VANDERBILT AVENUE","11238","7186230570","03","2011-12-15 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41445689","SFOGLIA RESTAURANT","1","135","EAST 92 STREET","10128","2128311402","48","2011-04-27 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2012-04-16 00:00:00","F","04L","30","C","2012-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41447667","ARU SUSHI","1","695","9 AVENUE","10036","2129771777","49","2012-04-16 00:00:00","F","10F","30","C","2012-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2010-12-09 00:00:00","P","06C","14","","","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2012-06-19 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2012-07-12 00:00:00","U","04L","25","B","2012-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41448603","TOMO JAPANESE RESTAURANT","3","1077","FLUSHING AVENUE","11237","7184563695","49","2012-07-12 00:00:00","U","06F","25","B","2012-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41449961","PENN SUSHI","1","000","PENN STATION","10001","2125645496","49","2011-01-19 00:00:00","D","06A","10","A","2011-01-19 00:00:00","2013-09-13 01:01:06.177000000" +"41449961","PENN SUSHI","1","000","PENN STATION","10001","2125645496","49","2012-08-10 00:00:00","P","04C","7","","","2013-09-13 01:01:06.177000000" +"41449961","PENN SUSHI","1","000","PENN STATION","10001","2125645496","49","2013-09-04 00:00:00","P","02G","16","","","2013-09-13 01:01:06.177000000" +"41450783","KIKKU JAPANESE RESTAURANT","1","50","WEST 55 STREET","10019","2125828357","49","2011-12-20 00:00:00","P","10F","23","","","2013-09-13 01:01:06.177000000" +"41450783","KIKKU JAPANESE RESTAURANT","1","50","WEST 55 STREET","10019","2125828357","49","2013-06-10 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41452662","THE POINT AFRICAN CARIBBEAN RESTAURANT","2","2037","WEBSTER AVENUE","10457","3472701985","02","2012-03-28 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2009-12-15 13:16:00","D","10G","5","","","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2009-12-15 13:16:00","D","18I","5","","","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2010-11-01 00:00:00","C","10F","11","A","2010-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"41452777","HAYASHI SUSHI","3","2901","OCEAN AVENUE","11235","7183683668","49","2012-04-24 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41453648","TUDOR BAR AND GRILL","1","304","EAST 42 STREET","10017","2122973480","03","2013-08-28 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41453658","JUSTINO'S PIZZERIA","1","879-883 ","10 AVENUE","10019","2125821222","63","2011-12-22 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41453658","JUSTINO'S PIZZERIA","1","879-883 ","10 AVENUE","10019","2125821222","63","2011-12-22 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2010-06-01 22:08:00","U","10C","10","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2011-06-08 00:00:00","P","02B","25","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2012-01-12 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2012-06-28 00:00:00","P","02B","26","","","2013-09-13 01:01:06.177000000" +"41454445","1 OR 8","3","66 ","SOUTH 2 STREET ","11249","7183842152","49","2013-02-06 00:00:00","G","04H","52","","","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2012-05-30 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2012-11-15 00:00:00","P","08B","6","","","2013-09-13 01:01:06.177000000" +"41454625","HARUHANA","1","28","WEST 32 STREET","10001","2127365393","49","2013-01-14 00:00:00","D","06E","13","A","2013-01-14 00:00:00","2013-09-13 01:01:06.177000000" +"41456069","DREAM STATION","2","3809","WHITE PLAINS ROAD","10467","7187986936","20","2013-05-31 00:00:00","G","06F","49","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-04-08 00:00:00","F","08A","38","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-05-04 00:00:00","F","04H","56","C","2011-05-04 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-10-12 00:00:00","F","02G","67","","","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2011-11-03 00:00:00","U","04K","13","B","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41457197","AJISAI JAPANESE RESTAURANT","1","615","9 AVENUE","10036","2127572688","49","2012-07-23 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2011-02-09 00:00:00","D","20D","","A","2011-02-09 00:00:00","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2012-12-14 00:00:00","F","06F","32","","","2013-09-13 01:01:06.177000000" +"41457364","SAKE II JAPANESE RESTAURANT","2","690","EAST 187 STREET","10458","7182200988","49","2013-01-08 00:00:00","U","08A","10","B","2013-01-08 00:00:00","2013-09-13 01:01:06.177000000" +"41458274","RAY'S PIZZA EXPRESS","2","570","KAPPOCK STREET","10463","7185488510","62","2011-08-24 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41459557","CURRY HEIGHTS","3","151","REMSEN STREET","11201","7182609000","44","2011-08-29 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2011-03-02 00:00:00","F","06D","17","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2011-03-02 00:00:00","F","08A","17","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2011-03-30 00:00:00","U","02B","12","B","2011-03-30 00:00:00","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2012-04-19 00:00:00","U","02B","25","B","2012-04-19 00:00:00","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2012-11-21 00:00:00","P","06F","21","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2012-11-21 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41459867","SUSHI WEST","1","556","HUDSON STREET","10014","2123371023","49","2013-01-08 00:00:00","D","08A","13","A","2013-01-08 00:00:00","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2010-12-02 00:00:00","F","06A","45","","","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2012-09-24 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"41460880","SAPPORO ICHIBAN","3","622","MANHATTAN AVENUE","11222","7183899712","49","2012-09-24 00:00:00","F","06D","31","","","2013-09-13 01:01:06.177000000" +"41461119","CITY RESTAURANT","3","1486","FLATBUSH AVENUE","11210","7188597347","20","2013-09-11 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41461165","NEW BRISAS LATINAS BAKERY RESTAURANT","4","135-15","LEFFERTS BOULEVARD","11420","7183239183","77","2011-08-05 00:00:00","F","99B","49","","","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2010-09-07 00:00:00","P","10B","14","","","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2011-05-27 00:00:00","F","06C","30","","","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2011-11-15 00:00:00","D","06D","9","A","2011-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"41461927","SUKI JAPAN","2","200","EAST 161 STREET","10451","7185390190","49","2013-05-24 00:00:00","P","04A","15","","","2013-09-13 01:01:06.177000000" +"41461936","FIZA RESTAURANT","4","259-07","HILLSIDE AVENUE","11004","7183473100","44","2011-06-06 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-01-19 00:00:00","P","04N","14","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-01-19 00:00:00","P","08A","14","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-02-01 00:00:00","D","04M","13","A","2011-02-01 00:00:00","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-02-01 00:00:00","D","10F","13","A","2011-02-01 00:00:00","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-07-05 00:00:00","G","04H","119","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-07-05 00:00:00","G","06C","119","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2011-11-03 00:00:00","U","10J","15","B","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2012-12-19 00:00:00","G","06A","75","","","2013-09-13 01:01:06.177000000" +"41461985","MATSU SUSHI","4","34-11","30 AVENUE","11103","7187267029","49","2013-08-03 00:00:00","G","02G","56","","","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2011-02-23 00:00:00","F","05D","53","","","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2011-02-23 00:00:00","F","06A","53","","","2013-09-13 01:01:06.177000000" +"41462900","ATLANTIC MITOUSHI SUSHI","3","177","ATLANTIC AVENUE","11201","7189351600","49","2012-07-11 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2010-06-24 11:11:00","U","09C","27","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2010-06-24 11:11:00","U","10D","27","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2010-06-24 11:11:00","U","10E","27","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2011-06-08 00:00:00","F","06C","28","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2012-09-25 00:00:00","F","10F","59","","","2013-09-13 01:01:06.177000000" +"41462969","MIKAKU SUSHI","1","85A","KENMARE STREET","10012","2124314820","49","2013-04-25 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41464115","JFK WOK CAFE","3","773","60 STREET","11220","7186808880","20","2011-03-17 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41464253","JJ DELI","4","36-19","REVIEW AVENUE","11101","7183925500","03","2013-01-08 00:00:00","G","02B","49","","","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2012-07-19 00:00:00","F","02G","33","","","2013-09-13 01:01:06.177000000" +"41465456","AKO JAPANESE CUISINE","3","205","BEDFORD AVENUE","11211","7183022035","49","2013-01-22 00:00:00","P","06C","23","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2012-03-19 00:00:00","F","04C","44","","","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2012-03-28 00:00:00","U","04L","10","B","2012-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41467560","OGAWA CAFE","1","36","EAST 4 STREET","10003","2125336527","49","2013-05-21 00:00:00","F","06F","33","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2011-01-04 00:00:00","U","04H","15","B","2011-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2011-07-14 00:00:00","P","06E","27","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2011-07-27 00:00:00","U","02G","17","B","2011-07-27 00:00:00","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2012-08-15 00:00:00","F","04M","38","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2013-04-20 00:00:00","F","04N","47","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2013-04-20 00:00:00","F","06D","47","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2013-04-20 00:00:00","F","06E","47","","","2013-09-13 01:01:06.177000000" +"41467708","FUJI JAPANESE CUISINE","4","11327","QUEENS BOULEVARD","11375","7182633636","49","2013-04-20 00:00:00","F","08A","47","","","2013-09-13 01:01:06.177000000" +"41468086","QUEEN BAKERY","1","150","MOTT STREET","10013","2129668998","08","2011-08-29 00:00:00","F","09C","49","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-05-07 11:43:00","F","02G","0","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-05-07 11:43:00","F","10G","0","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-06-14 13:17:00","G","04N","66","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-06-14 13:17:00","G","08A","66","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2010-07-19 00:00:00","O","","","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-01-10 00:00:00","C","02B","13","A","2011-01-10 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-02-09 00:00:00","F","02B","41","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2011-12-27 00:00:00","F","02G","37","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-05-16 00:00:00","F","04L","66","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-05-16 00:00:00","F","04N","66","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-05-16 00:00:00","F","08A","66","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-05-16 00:00:00","F","09C","66","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-05-24 00:00:00","F","10E","31","C","2012-05-24 00:00:00","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-09-10 00:00:00","F","04N","40","","","2013-09-13 01:01:06.177000000" +"41468267","ICHI UMI","1","6","EAST 32 STREET","10016","2127251333","49","2012-09-10 00:00:00","F","08A","40","","","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2010-10-19 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2010-10-19 00:00:00","P","10B","21","","","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2010-11-01 00:00:00","C","04L","12","A","2010-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2011-10-06 00:00:00","F","04N","32","","","2013-09-13 01:01:06.177000000" +"41468415","ARABESQUE","1","4","EAST 36 STREET","10016","2125322210","49","2011-10-06 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2011-06-10 00:00:00","F","06C","43","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2011-06-10 00:00:00","F","10F","43","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2011-07-12 00:00:00","D","04N","12","A","2011-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2011-07-12 00:00:00","D","08A","12","A","2011-07-12 00:00:00","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2011-11-05 00:00:00","F","05D","38","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2011-11-15 00:00:00","U","04H","12","B","2011-11-15 00:00:00","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2012-03-19 00:00:00","P","02B","18","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2012-11-14 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"41469751","KAWAII JAPANESE RESTAURANT","3","2706","AVENUE U","11229","7186161238","49","2013-06-05 00:00:00","F","04A","56","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2011-06-06 00:00:00","F","06A","33","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2011-12-15 00:00:00","F","10F","65","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2012-11-19 00:00:00","P","06B","19","","","2013-09-13 01:01:06.177000000" +"41470710","OZU JAPANESE CUISINE & LOUNGE","3","78","CLARK STREET","11201","7187973288","49","2012-12-04 00:00:00","U","06C","24","B","2012-12-04 00:00:00","2013-09-13 01:01:06.177000000" +"41471288","THAT SUSHI SPOT","3","2462","NOSTRAND AVENUE","11210","3475875100","49","2010-04-08 08:53:00","S","04A","10","","","2013-09-13 01:01:06.177000000" +"41471288","THAT SUSHI SPOT","3","2462","NOSTRAND AVENUE","11210","3475875100","49","2011-03-29 00:00:00","F","04J","40","","","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2012-08-29 00:00:00","F","10F","43","","","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2012-09-25 00:00:00","U","10B","11","B","2012-09-25 00:00:00","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2013-04-04 00:00:00","F","06D","26","","","2013-09-13 01:01:06.177000000" +"41471308","GING RESTAURANT","1","1564","3 AVENUE","10128","2127228808","49","2013-04-04 00:00:00","F","10D","26","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2011-11-02 00:00:00","F","06D","40","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2011-11-02 00:00:00","F","06E","40","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2011-11-16 00:00:00","U","06F","22","B","2011-11-16 00:00:00","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2012-03-21 00:00:00","F","02G","33","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2012-04-20 00:00:00","F","06C","26","C","2012-04-20 00:00:00","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2012-09-11 00:00:00","P","04N","12","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2012-09-11 00:00:00","P","06E","12","","","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2013-01-30 00:00:00","F","04L","45","C","2013-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41472847","CHIKURIN JAPANESE RESTAURANT","4","110-72","QUEENS BOULEVARD","11375","7182639888","49","2013-01-30 00:00:00","F","08A","45","C","2013-01-30 00:00:00","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2010-06-02 11:54:00","F","02G","45","","","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2010-06-17 15:31:00","F","04M","29","","","2013-09-13 01:01:06.177000000" +"41472983","NEW SUSHI Q","4","25-03","30 AVENUE","11102","7187284481","49","2011-03-08 00:00:00","D","06E","8","A","2011-03-08 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2011-10-27 00:00:00","F","02G","41","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2011-10-27 00:00:00","F","04K","41","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2011-10-27 00:00:00","F","04N","41","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2011-10-27 00:00:00","F","08A","41","","","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2011-12-06 00:00:00","F","04C","31","C","2011-12-06 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-05-10 00:00:00","F","02B","44","C","2012-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-05-10 00:00:00","F","04C","44","C","2012-05-10 00:00:00","2013-09-13 01:01:06.177000000" +"41472986","FUJI JAPANESE RESTAURANT","1","238","WEST 56 STREET","10019","2125869888","49","2012-11-20 00:00:00","G","08A","77","","","2013-09-13 01:01:06.177000000" +"41473217","MAHARAJA PALACE","1","1350","MADISON AVENUE","10128","2127228413","44","2010-10-14 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2010-09-30 00:00:00","F","04L","40","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2010-09-30 00:00:00","F","06D","40","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2011-04-04 00:00:00","P","05D","20","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2011-11-16 00:00:00","F","02G","42","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2011-11-16 00:00:00","F","99B","42","","","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2013-02-14 00:00:00","D","10D","9","A","2013-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41474954","MIKADO BISTRO","1","525","6 AVENUE","10011","2122559981","49","2013-07-26 00:00:00","F","10B","32","","","2013-09-13 01:01:06.177000000" +"41476813","GAN DA SUSHI","4","80-08","SURREY PLACE","11432","7183801818","49","2010-10-05 00:00:00","P","02B","20","","","2013-09-13 01:01:06.177000000" +"41477990","ZABB ELEE","1","75","2 AVENUE","10003","2125059533","82","2012-05-29 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41480428","GORDON RAMSAY AT THE LONDON","1","151","WEST 54 STREET","10019","2124688811","03","2013-02-01 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2011-03-10 00:00:00","F","02G","53","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2011-03-10 00:00:00","F","04H","53","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2011-03-10 00:00:00","F","99B","53","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2011-04-27 00:00:00","D","10I","11","A","2011-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2011-11-30 00:00:00","D","10D","11","A","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2012-04-30 00:00:00","P","06E","17","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2012-09-26 00:00:00","P","04M","18","","","2013-09-13 01:01:06.177000000" +"41480486","FUJIYAMA","1","1466 ","1 AVENUE ","10075","2122492722","49","2013-01-03 00:00:00","U","04L","19","B","2013-01-03 00:00:00","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2011-05-17 00:00:00","F","10F","44","","","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2011-10-18 00:00:00","U","06C","13","B","2011-10-18 00:00:00","2013-09-13 01:01:06.177000000" +"41482516","SHANGERILA RESTAURANT","2","2893-95","BUHRE AVENUE","10461","7188286080","49","2012-03-07 00:00:00","D","08A","11","A","2012-03-07 00:00:00","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2010-11-29 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2012-01-18 00:00:00","F","06C","50","","","2013-09-13 01:01:06.177000000" +"41482793","HIRO SUSHI AT OLLIE'S","1","160","RIVERSIDE BOULEVARD","10069","2128737900","49","2012-04-06 00:00:00","F","04H","25","C","2012-04-06 00:00:00","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2011-05-02 00:00:00","P","06G","25","","","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2011-05-02 00:00:00","P","18A","25","","","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2011-05-02 00:00:00","P","22B","25","","","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2011-12-14 00:00:00","D","06A","7","A","2011-12-14 00:00:00","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2012-12-26 00:00:00","F","08A","10","","","2013-09-13 01:01:06.177000000" +"41483259","ICHI BAN TEI","1","401","EAST 13 STREET","10009","6463689755","49","2013-08-06 00:00:00","F","06C","55","","","2013-09-13 01:01:06.177000000" +"41483385","LIAM'S PUB","1","90","FULTON STREET","10038","2122670079","03","2011-06-06 00:00:00","F","09A","49","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2011-06-09 00:00:00","F","10B","53","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2011-11-03 00:00:00","F","08A","34","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2011-11-03 00:00:00","F","10E","34","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2011-11-30 00:00:00","F","05D","43","C","2011-11-30 00:00:00","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2012-04-19 00:00:00","F","10H","21","","","2013-09-13 01:01:06.177000000" +"41484881","MASARU","1","169","8 AVENUE","10011","2126278887","49","2012-10-12 00:00:00","P","10F","5","","","2013-09-13 01:01:06.177000000" +"41485508","TAKAYAMA SUSHI LOUNGE","5","17","PAGE AVENUE","10309","7182278744","49","2012-03-12 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"41485508","TAKAYAMA SUSHI LOUNGE","5","17","PAGE AVENUE","10309","7182278744","49","2012-08-20 00:00:00","P","04H","27","","","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2011-06-15 00:00:00","F","06D","41","","","2013-09-13 01:01:06.177000000" +"41485584","MAI CUISINE","1","16","EAST 41 STREET","10017","2124008880","49","2011-12-07 00:00:00","D","06E","11","A","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41491233","BAY HOUSE ASIAN BISTRO","5","2226","HYLAN BOULEVARD","10306","7186676868","49","2010-06-16 08:01:00","D","10G","5","","","2013-09-13 01:01:06.177000000" +"41491233","BAY HOUSE ASIAN BISTRO","5","2226","HYLAN BOULEVARD","10306","7186676868","49","2012-05-08 00:00:00","P","06E","12","","","2013-09-13 01:01:06.177000000" +"41491233","BAY HOUSE ASIAN BISTRO","5","2226","HYLAN BOULEVARD","10306","7186676868","49","2012-05-08 00:00:00","P","08A","12","","","2013-09-13 01:01:06.177000000" +"41491426","IZUMI JAPANESE RESTAURANT","1","139","WEST 28 STREET","10001","2122731169","49","2010-12-06 00:00:00","C","10F","11","","","2013-09-13 01:01:06.177000000" +"41491426","IZUMI JAPANESE RESTAURANT","1","139","WEST 28 STREET","10001","2122731169","49","2011-06-30 00:00:00","U","08A","18","B","2011-06-30 00:00:00","2013-09-13 01:01:06.177000000" +"41491426","IZUMI JAPANESE RESTAURANT","1","139","WEST 28 STREET","10001","2122731169","49","2011-12-22 00:00:00","D","05D","12","A","2011-12-22 00:00:00","2013-09-13 01:01:06.177000000" +"41491940","MALAPARTE","1","753","WASHINGTON STREET","10014","2122552122","48","2012-08-08 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41491940","MALAPARTE","1","753","WASHINGTON STREET","10014","2122552122","48","2012-08-08 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41491940","MALAPARTE","1","753","WASHINGTON STREET","10014","2122552122","48","2012-08-08 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2011-01-26 00:00:00","P","06C","22","","","2013-09-13 01:01:06.177000000" +"41492594","EAST 21 CHINESE & JAPANESE CUISINE","4","71-26","ROOSEVELT AVENUE","11372","7186393535","49","2011-03-03 00:00:00","U","04L","13","B","2011-03-03 00:00:00","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2010-09-07 00:00:00","F","10F","26","","","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2011-03-22 00:00:00","D","06C","12","A","2011-03-22 00:00:00","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2012-04-06 00:00:00","D","06C","9","A","2012-04-06 00:00:00","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2012-04-06 00:00:00","D","10F","9","A","2012-04-06 00:00:00","2013-09-13 01:01:06.177000000" +"41492962","TASTE OF TOKYO","1","60-62","BEAVER STREET","10004","2128094711","49","2012-08-21 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2011-03-17 00:00:00","P","06E","19","","","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2011-03-17 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2011-03-23 00:00:00","U","22C","11","B","2011-03-23 00:00:00","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2011-10-12 00:00:00","D","04N","10","A","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41493340","TOKYO HOUSE JAPANESE RESTAURANT","2","5648","RIVERDALE AVENUE","10471","7186016877","49","2011-10-12 00:00:00","D","08A","10","A","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2010-06-30 12:18:00","U","08A","17","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2011-02-16 00:00:00","F","08A","20","C","2011-02-16 00:00:00","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2011-07-25 00:00:00","P","10C","26","","","2013-09-13 01:01:06.177000000" +"41493707","SUSHI CHOSI","1","77","IRVING PLACE","10003","2124201419","49","2012-03-26 00:00:00","F","06C","37","","","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2010-06-09 11:06:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41493742","NEW NAGOYA JAPANESE RESTAURANT","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2010-06-09 11:06:00","F","10G","31","","","2013-09-13 01:01:06.177000000" +"41494383","LEMON LIFE","1","255","EAST 110 STREET","10029","2123692886","49","2010-06-11 07:58:00","U","06D","25","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2010-06-10 11:49:00","F","04M","40","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2011-05-11 00:00:00","F","05H","63","","","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2011-05-26 00:00:00","U","04L","9","B","2011-05-26 00:00:00","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2012-02-24 00:00:00","D","10F","4","A","2012-02-24 00:00:00","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2012-08-14 00:00:00","D","06F","12","A","2012-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41495573","TERAKAWA RAMEN","1","885","9 AVENUE","10019","2123070170","49","2012-08-14 00:00:00","D","10F","12","A","2012-08-14 00:00:00","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2011-03-28 00:00:00","U","10F","11","B","2011-03-28 00:00:00","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2012-03-26 00:00:00","F","04L","22","","","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2012-04-16 00:00:00","F","06E","16","C","2012-04-16 00:00:00","2013-09-13 01:01:06.177000000" +"41496655","TERAKAWA RAMEN","1","18","LEXINGTON AVENUE","10010","2127772939","49","2013-08-13 00:00:00","P","10F","25","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2012-06-06 00:00:00","F","04M","44","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2013-01-17 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41497056","DONBURI-YA","1","137","EAST 47 STREET","10017","2129807909","49","2013-08-09 00:00:00","F","02B","34","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2012-04-30 00:00:00","D","08A","10","A","2012-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2012-05-04 00:00:00","F","15K","","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2012-09-10 00:00:00","P","10B","19","","","2013-09-13 01:01:06.177000000" +"41497422","FUSHIMI JAPANESE CUISINE","3","9316","4 AVENUE","11209","7188337788","49","2012-09-18 00:00:00","F","10B","9","C","2012-09-18 00:00:00","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2010-06-14 12:48:00","U","09A","23","","","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2011-06-10 00:00:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"41497430","KIKU SUSHI","1","235","9 AVENUE","10001","2123673660","49","2011-08-24 00:00:00","U","02B","24","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2011-02-23 00:00:00","P","04L","16","","","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2011-11-01 00:00:00","U","02B","13","B","2011-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"41497700","KUMO SUSHI","1","214","1 AVENUE","10009","2125333030","49","2013-01-03 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2010-12-16 00:00:00","F","02B","47","","","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2010-12-16 00:00:00","F","08A","47","","","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2011-01-25 00:00:00","U","10F","11","B","2011-01-25 00:00:00","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2011-10-17 00:00:00","U","10F","20","B","2011-10-17 00:00:00","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2012-05-14 00:00:00","F","02G","31","","","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2012-05-31 00:00:00","U","06F","23","B","2012-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41500416","RONIN BAR AND GRILL","1","9","EAST 37 STREET","10016","2126862233","49","2012-05-31 00:00:00","U","10F","23","B","2012-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2010-08-30 00:00:00","P","06C","21","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2011-10-24 00:00:00","P","06E","26","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2012-03-12 00:00:00","F","02G","41","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2012-08-07 00:00:00","P","04N","25","","","2013-09-13 01:01:06.177000000" +"41500854","GO SUSHI","1","756","9 AVENUE","10019","2124592288","49","2012-08-07 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41501875","COMMON","4","70-15","AUSTIN STREET","11375","7182632130","53","2012-07-18 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41502106","HO JING","3","5816","8 AVENUE","11220","7184393453","20","2013-01-10 00:00:00","G","02B","49","","","2013-09-13 01:01:06.177000000" +"41502106","HO JING","3","5816","8 AVENUE","11220","7184393453","20","2013-01-10 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41502126","597 SILK ROAD CORP","3","597","MANHATTAN AVENUE","11222","7183491010","49","2011-08-17 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41502126","597 SILK ROAD CORP","3","597","MANHATTAN AVENUE","11222","7183491010","49","2013-07-19 00:00:00","P","10B","19","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2012-02-06 00:00:00","F","04N","37","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2012-02-06 00:00:00","F","08A","37","","","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2012-02-14 00:00:00","D","10F","7","A","2012-02-14 00:00:00","2013-09-13 01:01:06.177000000" +"41503468","NEW HANE SUSHI","1","581B","3 AVENUE","10016","2126828388","49","2013-02-28 00:00:00","F","10F","20","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2011-01-22 00:00:00","F","09B","39","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2012-06-28 00:00:00","P","06D","23","","","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2012-07-24 00:00:00","F","04L","25","C","2012-07-24 00:00:00","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2012-07-24 00:00:00","F","10F","25","C","2012-07-24 00:00:00","2013-09-13 01:01:06.177000000" +"41504235","SAMURAI SUSHI","3","1709","86 STREET","11214","7183317100","49","2013-02-12 00:00:00","D","06C","11","A","2013-02-12 00:00:00","2013-09-13 01:01:06.177000000" +"41505432","BAGEL BISTRO & DINER","5","1810","VICTORY BOULEVARD","10314","7187206919","03","2011-04-11 00:00:00","F","04E","49","","","2013-09-13 01:01:06.177000000" +"41505432","BAGEL BISTRO & DINER","5","1810","VICTORY BOULEVARD","10314","7187206919","03","2011-04-11 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2010-10-21 00:00:00","D","09C","5","","","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2011-05-02 00:00:00","P","06C","23","","","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2011-05-26 00:00:00","D","10H","9","A","2011-05-26 00:00:00","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2011-05-26 00:00:00","D","99B","9","A","2011-05-26 00:00:00","2013-09-13 01:01:06.177000000" +"41505828","SUMA SUSHI","1","964","AMSTERDAM AVENUE","10025","2122805858","49","2012-12-20 00:00:00","F","06E","20","C","2012-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2011-09-07 00:00:00","F","08C","66","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2011-09-19 00:00:00","U","08A","15","B","2011-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2012-01-26 00:00:00","F","02G","60","","","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2012-02-09 00:00:00","U","06F","23","B","2012-02-09 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2012-02-09 00:00:00","U","08A","23","B","2012-02-09 00:00:00","2013-09-13 01:01:06.177000000" +"41506038","AKI SUSHI & GRILL","1","720","2 AVENUE","10016","2129221168","49","2012-07-26 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41506388","BREADZONE","3","2223","86 STREET","11214","7185136404","08","2013-04-13 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41506388","BREADZONE","3","2223","86 STREET","11214","7185136404","08","2013-04-13 00:00:00","F","10A","49","","","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2010-07-30 00:00:00","P","04H","7","","","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2010-09-17 00:00:00","C","04C","12","A","2010-09-17 00:00:00","2013-09-13 01:01:06.177000000" +"41507777","SUSHI YASUDA","1","204","EAST 43 STREET","10017","2129721717","49","2011-11-15 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2010-12-09 00:00:00","F","04N","28","","","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2010-12-09 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2011-06-15 00:00:00","P","02B","18","","","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2012-01-31 00:00:00","U","08A","10","B","2012-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2012-07-18 00:00:00","D","10F","9","A","2012-07-18 00:00:00","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2013-02-13 00:00:00","P","06C","20","","","2013-09-13 01:01:06.177000000" +"41510203","MOMO SUSHI","3","43","BOGART STREET","11206","7184186666","49","2013-08-21 00:00:00","F","06F","30","","","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2011-09-08 00:00:00","B","06F","13","A","2011-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2012-08-30 00:00:00","P","06C","26","","","2013-09-13 01:01:06.177000000" +"41512984","SAMURAI MAMA","3","205 ","GRAND STREET ","11211","7185996161","49","2012-09-21 00:00:00","F","06F","5","C","2012-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41512992","BAY RIDGE DINER","3","8017","5 AVENUE","11209","7189210266","03","2013-06-13 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41512992","BAY RIDGE DINER","3","8017","5 AVENUE","11209","7189210266","03","2013-06-13 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2010-08-30 00:00:00","P","08A","8","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2011-02-22 00:00:00","U","10H","9","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2011-08-12 00:00:00","P","04H","19","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2011-12-27 00:00:00","P","04M","18","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2011-12-27 00:00:00","P","10B","18","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-01-10 00:00:00","G","04L","59","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-01-10 00:00:00","G","10F","59","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-01-17 00:00:00","O","10B","6","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-04-25 00:00:00","P","10B","23","","","2013-09-13 01:01:06.177000000" +"41513238","TOKYO SUSHI","3","1915","AVENUE U","11229","7186465639","49","2012-05-08 00:00:00","D","08A","12","A","2012-05-08 00:00:00","2013-09-13 01:01:06.177000000" +"41513573","EMPIRE PIZZA II","1","35","1 AVENUE","10003","2126775500","62","2013-07-08 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41513573","EMPIRE PIZZA II","1","35","1 AVENUE","10003","2126775500","62","2013-07-08 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2013-05-15 00:00:00","G","04M","44","","","2013-09-13 01:01:06.177000000" +"41514699","TENZAN SUSHI","1","1714","2 AVENUE","10128","2123693600","49","2013-05-15 00:00:00","G","06B","44","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2011-07-16 00:00:00","U","08C","19","B","2011-07-16 00:00:00","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2012-01-07 00:00:00","F","08C","34","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2012-01-07 00:00:00","F","10B","34","","","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2012-01-18 00:00:00","U","04L","19","B","2012-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2012-01-18 00:00:00","U","08A","19","B","2012-01-18 00:00:00","2013-09-13 01:01:06.177000000" +"41515448","KYOTO RESTAURANT","4","153-11","UNION TURNPIKE","11367","7183807777","49","2013-03-02 00:00:00","F","06E","29","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2010-08-27 00:00:00","P","08A","16","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2010-10-13 00:00:00","G","04M","42","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2010-10-13 00:00:00","G","10B","42","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-02-01 00:00:00","F","04H","33","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2011-07-19 00:00:00","G","04M","61","","","2013-09-13 01:01:06.177000000" +"41515676","KYOTO","3","115","SMITH STREET","11201","7185225888","49","2012-02-22 00:00:00","D","02B","10","A","2012-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-02-09 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2011-12-29 00:00:00","F","10D","46","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2012-01-12 00:00:00","U","04N","18","B","2012-01-12 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2012-06-22 00:00:00","F","04L","23","C","2012-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2012-06-22 00:00:00","F","06D","23","C","2012-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2012-12-03 00:00:00","P","06E","13","","","2013-09-13 01:01:06.177000000" +"41515807","SUSHI TATSU ON FRANKLIN","3","609 ","FRANKLIN AVENUE ","11238","7183988828","49","2012-12-24 00:00:00","D","02B","10","A","2012-12-24 00:00:00","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2010-08-24 00:00:00","F","04M","33","","","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2011-12-21 00:00:00","P","06C","3","","","2013-09-13 01:01:06.177000000" +"41515889","YAKITRI TOTTO","1","251","WEST 55 STREET","10019","2122454555","49","2012-06-13 00:00:00","P","06E","20","","","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2011-07-15 00:00:00","U","02G","12","B","2011-07-15 00:00:00","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2013-02-05 00:00:00","P","09B","16","","","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2013-02-05 00:00:00","P","10H","16","","","2013-09-13 01:01:06.177000000" +"41516864","MISO","3","40","MAIN STREET","11201","7188588388","49","2013-03-18 00:00:00","D","06C","13","A","2013-03-18 00:00:00","2013-09-13 01:01:06.177000000" +"41517779","HAPPY KITCHEN","4","80-12","37 AVENUE","11372","7188031600","49","2010-11-23 00:00:00","D","10F","3","A","2010-11-23 00:00:00","2013-09-13 01:01:06.177000000" +"41517779","HAPPY KITCHEN","4","80-12","37 AVENUE","11372","7188031600","49","2011-11-04 00:00:00","P","06C","16","","","2013-09-13 01:01:06.177000000" +"41517779","HAPPY KITCHEN","4","80-12","37 AVENUE","11372","7188031600","49","2011-11-04 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2011-10-08 00:00:00","P","04A","27","","","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2011-10-17 00:00:00","U","04M","7","B","2011-10-17 00:00:00","2013-09-13 01:01:06.177000000" +"41519677","OMIYA JAPANESE RESTAURANT","3","8618","4 AVENUE","11209","7187481977","49","2013-06-11 00:00:00","G","08A","63","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-03-01 00:00:00","F","15L","","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-05-06 00:00:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-05-06 00:00:00","F","08A","32","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2011-06-22 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2012-06-01 00:00:00","G","02G","64","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2012-06-01 00:00:00","G","08A","64","","","2013-09-13 01:01:06.177000000" +"41520879","49HX SEAFOOD RESTAURANT","1","49","DIVISION STREET","10002","2129651926","20","2012-11-15 00:00:00","P","10F","15","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2010-09-22 00:00:00","F","09B","34","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2011-02-08 00:00:00","U","10B","13","B","2011-02-08 00:00:00","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2012-01-20 00:00:00","D","02B","12","A","2012-01-20 00:00:00","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2012-06-13 00:00:00","F","06C","32","","","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2012-06-26 00:00:00","F","04N","15","C","2012-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2012-06-26 00:00:00","F","06D","15","C","2012-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"41523429","AKI SUSHI II","1","366","WEST 52 STREET","10019","2122622888","49","2012-06-26 00:00:00","F","09C","15","C","2012-06-26 00:00:00","2013-09-13 01:01:06.177000000" +"41524218","OZEN ASIAN FUSION","1","760","AMSTERDAM AVENUE","10025","2126780300","05","2011-09-28 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41524218","OZEN ASIAN FUSION","1","760","AMSTERDAM AVENUE","10025","2126780300","05","2011-09-28 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41524648","SICHUAN RESTAURANT","4","98-108","QUEENS BOULEVARD","11374","7182688833","20","2011-09-20 00:00:00","G","02B","49","","","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2010-09-30 00:00:00","F","04M","56","","","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2010-09-30 00:00:00","F","05D","56","","","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2010-09-30 00:00:00","F","10B","56","","","2013-09-13 01:01:06.177000000" +"41524734","UMI JAPANESE RESTAURANT SUSHI BAR & TERIYAKI GRILL","4","96-05","METROPOLITAN AVENUE","11375","7182613483","49","2011-03-31 00:00:00","F","02B","35","C","2011-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2010-09-24 00:00:00","C","06D","5","A","2010-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2011-09-28 00:00:00","F","04L","37","","","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2011-10-27 00:00:00","U","04C","21","B","2011-10-27 00:00:00","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2012-03-29 00:00:00","D","02G","11","A","2012-03-29 00:00:00","2013-09-13 01:01:06.177000000" +"41524804","MASAKARI JAPANESE FUSION","3","1631","SHEEPSHEAD BAY ROAD","11235","7183323899","49","2012-08-09 00:00:00","P","04M","0","","","2013-09-13 01:01:06.177000000" +"41525472","CROSS BAY DELI & GRILL","4","105-10","CROSSBAY BOULEVARD","11417","7188488887","27","2010-09-28 00:00:00","F","04J","49","","","2013-09-13 01:01:06.177000000" +"41525547","TARO SUSHI NY INC","3","244","FLATBUSH AVENUE","11217","7183985240","49","2012-07-09 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2010-09-27 00:00:00","F","02G","40","","","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2010-09-27 00:00:00","F","99B","40","","","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2011-10-12 00:00:00","F","04K","19","C","2011-10-12 00:00:00","2013-09-13 01:01:06.177000000" +"41528086","MOTTSU","1","285","MOTT STREET","10012","2123438017","49","2013-05-06 00:00:00","P","06D","18","","","2013-09-13 01:01:06.177000000" +"41528823","BAYRIDGE SUSHI","3","6914 ","3 AVENUE ","11209","7184910662","49","2011-09-08 00:00:00","D","02B","12","A","2011-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41528823","BAYRIDGE SUSHI","3","6914 ","3 AVENUE ","11209","7184910662","49","2012-09-25 00:00:00","D","10C","12","A","2012-09-25 00:00:00","2013-09-13 01:01:06.177000000" +"41528823","BAYRIDGE SUSHI","3","6914 ","3 AVENUE ","11209","7184910662","49","2013-04-20 00:00:00","P","06C","23","","","2013-09-13 01:01:06.177000000" +"41529617","SHOBU SUSHI & GRILL","3","9427","5 AVENUE","11209","7188338345","49","2012-05-29 00:00:00","P","06F","27","","","2013-09-13 01:01:06.177000000" +"41529617","SHOBU SUSHI & GRILL","3","9427","5 AVENUE","11209","7188338345","49","2012-05-29 00:00:00","P","10F","27","","","2013-09-13 01:01:06.177000000" +"41532156","SUSHI YOU","1","246","EAST 51 STREET","10022","2127522987","49","2011-09-19 00:00:00","D","10F","7","A","2011-09-19 00:00:00","2013-09-13 01:01:06.177000000" +"41533145","SAL'S PIZZERIA","3","119","WYCKOFF AVENUE","11237","7183865299","62","2013-07-10 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41533744","SUBWAY","1","455","WEST 34 STREET","10001","6465971577","70","2011-04-12 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41533744","SUBWAY","1","455","WEST 34 STREET","10001","6465971577","70","2011-04-12 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2011-11-01 00:00:00","F","04L","15","C","2011-11-01 00:00:00","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2012-04-03 00:00:00","F","02B","40","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2012-04-03 00:00:00","F","05D","40","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2012-04-18 00:00:00","U","04L","7","B","2012-04-18 00:00:00","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2012-08-27 00:00:00","F","06E","28","","","2013-09-13 01:01:06.177000000" +"41535387","JEBON SUSHI & NOODLES","1","15","ST MARKS PLACE","10003","2123881313","49","2012-08-27 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"41536710","CHIKURIN","3","1105","QUENTIN ROAD","11229","7183368887","49","2012-10-25 00:00:00","F","02B","36","","","2013-09-13 01:01:06.177000000" +"41537949","LZ SUSHI","1","355 ","7 AVENUE ","10001","2128681388","49","2010-11-01 00:00:00","P","10F","17","","","2013-09-13 01:01:06.177000000" +"41538617","MYSTIQUE","1","141 ","CHRYSTIE STREET ","10002","2129667808","03","2012-08-24 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41539948","TOKYO HIBACHI STEAK HOUSE & SUSHI","4","184-16","HORACE HARDING EXPRESSWAY","11365","7184632999","49","2011-08-12 00:00:00","P","06A","25","","","2013-09-13 01:01:06.177000000" +"41539948","TOKYO HIBACHI STEAK HOUSE & SUSHI","4","184-16","HORACE HARDING EXPRESSWAY","11365","7184632999","49","2011-08-20 00:00:00","D","10H","5","A","2011-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41539948","TOKYO HIBACHI STEAK HOUSE & SUSHI","4","184-16","HORACE HARDING EXPRESSWAY","11365","7184632999","49","2012-03-29 00:00:00","D","06C","7","A","2012-03-29 00:00:00","2013-09-13 01:01:06.177000000" +"41539948","TOKYO HIBACHI STEAK HOUSE & SUSHI","4","184-16","HORACE HARDING EXPRESSWAY","11365","7184632999","49","2012-08-25 00:00:00","F","04N","43","","","2013-09-13 01:01:06.177000000" +"41539948","TOKYO HIBACHI STEAK HOUSE & SUSHI","4","184-16","HORACE HARDING EXPRESSWAY","11365","7184632999","49","2012-08-25 00:00:00","F","08A","43","","","2013-09-13 01:01:06.177000000" +"41539948","TOKYO HIBACHI STEAK HOUSE & SUSHI","4","184-16","HORACE HARDING EXPRESSWAY","11365","7184632999","49","2012-09-27 00:00:00","D","10F","5","A","2012-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2011-05-10 00:00:00","U","02B","24","","","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2011-10-17 00:00:00","P","06E","21","","","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2011-10-27 00:00:00","D","04M","10","A","2011-10-27 00:00:00","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2012-03-26 00:00:00","D","08B","11","A","2012-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41541403","SAPPORO SUSHI RESTAURANT","5","1650","RICHMOND AVENUE","10314","7189836038","49","2013-08-17 00:00:00","P","02B","15","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2011-08-02 00:00:00","G","04L","72","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2011-08-04 00:00:00","W","08A","24","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2011-08-04 00:00:00","W","99B","24","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2012-02-28 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2012-03-16 00:00:00","F","06D","23","C","2012-03-16 00:00:00","2013-09-13 01:01:06.177000000" +"41542130","86 GAJUMARU","1","1659","1 AVENUE","10028","2123482878","49","2012-08-30 00:00:00","D","02G","12","A","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41542939","MAGGIE BROWN","3","455","MYRTLE AVENUE","11205","7186437001","03","2011-06-09 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41542939","MAGGIE BROWN","3","455","MYRTLE AVENUE","11205","7186437001","03","2011-06-09 00:00:00","G","06D","49","","","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2011-01-31 00:00:00","D","06D","10","","","2013-09-13 01:01:06.177000000" +"41543023","MR ROBATA","1","1674","BROADWAY","10019","2127571030","49","2013-05-31 00:00:00","F","06D","43","","","2013-09-13 01:01:06.177000000" +"41543275","KARAOKE NEMO/TRECE","1","54 ","EAST 13 STREET ","10003","2124775577","55","2013-07-31 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2011-05-25 00:00:00","F","04C","33","","","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2011-05-25 00:00:00","F","06C","33","","","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2013-07-02 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41544794","YUBA","1","105","EAST 9 STREET","10003","2127778188","49","2013-07-02 00:00:00","F","04M","32","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2011-08-10 00:00:00","P","10F","16","","","2013-09-13 01:01:06.177000000" +"41545062","MIZUMI","4","231-10","NORTHERN BOULEVARD","11363","7182298686","49","2012-07-18 00:00:00","F","10B","27","C","2012-07-18 00:00:00","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2011-06-29 00:00:00","P","05D","26","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2011-12-15 00:00:00","P","08A","18","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2013-02-06 00:00:00","F","06D","28","","","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2013-02-28 00:00:00","U","06D","17","B","2013-02-28 00:00:00","2013-09-13 01:01:06.177000000" +"41545094","COCORON","1","61","DELANCY STREET","10002","2129255220","49","2013-07-26 00:00:00","P","10D","18","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-02-24 00:00:00","F","04L","29","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-04-12 00:00:00","G","04L","62","","","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-04-17 00:00:00","O","10F","3","C","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41545645","MOMOYAMA RESTAURANT","3","1901","EMMONS AVENUE","11235","7187698010","49","2012-09-05 00:00:00","P","08A","27","","","2013-09-13 01:01:06.177000000" +"41545732","LEMONGRASS GRILL","3","156","COURT STREET","11201","7185229728","82","2012-07-24 00:00:00","G","04N","49","","","2013-09-13 01:01:06.177000000" +"41545732","LEMONGRASS GRILL","3","156","COURT STREET","11201","7185229728","82","2012-07-24 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41546097","KUSHI Q","1","153","EAST 53 STREET","10022","2128886488","49","2011-01-05 00:00:00","U","06F","5","B","2011-01-05 00:00:00","2013-09-13 01:01:06.177000000" +"41546097","KUSHI Q","1","153","EAST 53 STREET","10022","2128886488","49","2011-08-08 00:00:00","P","06A","19","","","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2011-06-13 00:00:00","G","06E","40","","","2013-09-13 01:01:06.177000000" +"41547535","YOSHI MODERN JAPANESE CUISINE","3","5827","AVENUE T","11234","7189688881","49","2012-02-23 00:00:00","P","04N","21","","","2013-09-13 01:01:06.177000000" +"41547568","HAGANE HIBACHI & JAPANESE GRILL","4","161-02","CROSSBAY BOULEVARD","11414","7188358385","49","2011-01-25 00:00:00","P","09B","17","","","2013-09-13 01:01:06.177000000" +"41547568","HAGANE HIBACHI & JAPANESE GRILL","4","161-02","CROSSBAY BOULEVARD","11414","7188358385","49","2011-11-23 00:00:00","D","09B","5","A","2011-11-23 00:00:00","2013-09-13 01:01:06.177000000" +"41547568","HAGANE HIBACHI & JAPANESE GRILL","4","161-02","CROSSBAY BOULEVARD","11414","7188358385","49","2012-04-11 00:00:00","D","10F","2","A","2012-04-11 00:00:00","2013-09-13 01:01:06.177000000" +"41547596","SUSHI TATSU","3","1185","BEDFORD AVENUE","11216","3479851198","05","2012-02-01 00:00:00","F","09B","49","C","2012-02-01 00:00:00","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2011-12-29 00:00:00","P","06A","23","","","2013-09-13 01:01:06.177000000" +"41547897","EDO SUSHI TERIYAKI NOODLE","1","9","EAST 17 STREET","10003","2129892938","49","2012-05-29 00:00:00","P","06E","19","","","2013-09-13 01:01:06.177000000" +"41547909","OISHII SUSHI JAPANESE RESTAURANT","4","37-04","DITMARS BOULEVARD","11105","7186260588","49","2012-05-15 00:00:00","D","10F","9","A","2012-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41547974","SAKURA JAPANESE RESTAURANT","3","346","GRAHAM AVENUE","11211","7182188056","49","2011-07-30 00:00:00","P","04C","21","","","2013-09-13 01:01:06.177000000" +"41548687","SUBWAY","1","508","COLUMBUS AVENUE","10024","2123621659","69","2012-03-21 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41550400","EL MIXTECO","3","192 ","AVENUE U ","11223","7183723550","55","2013-06-13 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41551883","OTTOMANELLI N.Y. GRILL","1","1424","LEXINGTON AVENUE","10128","2124266886","48","2011-07-28 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41551883","OTTOMANELLI N.Y. GRILL","1","1424","LEXINGTON AVENUE","10128","2124266886","48","2011-07-28 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41552160","NAGOYA GOURMET","4","25-73","FRANCIS LEWIS BOULEVARD","11358","7182810188","49","2012-09-19 00:00:00","F","06A","20","","","2013-09-13 01:01:06.177000000" +"41552497","OLD COUNTRY DELI & RESTAURANT","4","52-03","METROPOLITAN AVENUE","11385","7183661400","03","2011-08-11 00:00:00","F","04C","49","","","2013-09-13 01:01:06.177000000" +"41552497","OLD COUNTRY DELI & RESTAURANT","4","52-03","METROPOLITAN AVENUE","11385","7183661400","03","2011-08-11 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41552497","OLD COUNTRY DELI & RESTAURANT","4","52-03","METROPOLITAN AVENUE","11385","7183661400","03","2011-08-11 00:00:00","F","10F","49","","","2013-09-13 01:01:06.177000000" +"41553012","SAKE JAPANESE RESTAURANT","3","2347","86 STREET","11214","7182656288","49","2011-06-02 00:00:00","F","10B","36","","","2013-09-13 01:01:06.177000000" +"41553012","SAKE JAPANESE RESTAURANT","3","2347","86 STREET","11214","7182656288","49","2011-06-30 00:00:00","D","02G","9","A","2011-06-30 00:00:00","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2011-07-07 00:00:00","O","10F","5","P","2011-07-07 00:00:00","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2011-09-21 00:00:00","D","04H","12","A","2011-09-21 00:00:00","2013-09-13 01:01:06.177000000" +"41553072","ASHIYA V SUSHI","1","937","1 AVENUE","10022","2123082280","49","2013-04-02 00:00:00","F","04L","18","","","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2011-05-04 00:00:00","P","04L","27","","","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2011-06-21 00:00:00","F","09B","37","C","2011-06-21 00:00:00","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2012-02-02 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2012-02-27 00:00:00","U","06D","16","B","2012-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2012-02-27 00:00:00","U","06E","16","B","2012-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2013-04-29 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"41553280","Abumi Sushi","1","207 ","EAST 26 STREET ","10010","2125328788","49","2013-04-29 00:00:00","P","09B","20","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2011-01-25 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2011-02-26 00:00:00","U","06F","27","B","2011-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2011-02-26 00:00:00","U","09C","27","B","2011-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2011-09-01 00:00:00","P","10D","22","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2011-10-04 00:00:00","D","06E","10","A","2011-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-01-27 00:00:00","F","06A","39","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2012-06-27 00:00:00","F","06E","30","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2013-06-07 00:00:00","P","06D","24","","","2013-09-13 01:01:06.177000000" +"41554063","SUN CAFE","1","67","READE STREET","10007","2126083822","49","2013-06-07 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"41554341","SAKURA TOKYO","3","604 ","NOSTRAND AVENUE ","11216","7187568787","49","2012-03-26 00:00:00","D","04C","13","A","2012-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2011-02-25 00:00:00","U","10F","19","","","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2011-12-30 00:00:00","D","06C","10","A","2011-12-30 00:00:00","2013-09-13 01:01:06.177000000" +"41555644","ABURIYA KINNOSUKE","1","213","EAST 45 STREET","10017","2128675454","49","2012-06-20 00:00:00","D","10F","8","A","2012-06-20 00:00:00","2013-09-13 01:01:06.177000000" +"41556769","BLUE RIBBON SUSHI BAR & GRILL ROOF DECK","1","6","COLUMBUS CIRCLE","10019","2122290404","49","2011-02-18 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41557632","HANA JAPANESE BISTRO","3","532","NEPTUNE AVENUE","11224","7182668889","49","2013-06-20 00:00:00","F","04J","22","","","2013-09-13 01:01:06.177000000" +"41557673","RESTAURANT BATE","2","860","MELROSE AVENUE","10451","7184012283","02","2012-08-30 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41557673","RESTAURANT BATE","2","860","MELROSE AVENUE","10451","7184012283","02","2012-08-30 00:00:00","F","04N","49","","","2013-09-13 01:01:06.177000000" +"41557673","RESTAURANT BATE","2","860","MELROSE AVENUE","10451","7184012283","02","2012-08-30 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2011-02-23 00:00:00","D","10F","2","","","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2011-12-14 00:00:00","P","02B","26","","","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2013-01-31 00:00:00","F","02B","34","","","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2013-01-31 00:00:00","F","08A","34","","","2013-09-13 01:01:06.177000000" +"41557716","KITARO","1","510","AMSTERDAM AVENUE","10024","2127879008","49","2013-08-26 00:00:00","P","02G","18","","","2013-09-13 01:01:06.177000000" +"41559465","THE COUNTRY KITCHEN","3","1991","ATLANTIC AVENUE","11233","7184980200","03","2012-08-31 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-09-07 00:00:00","G","04M","36","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2011-09-12 00:00:00","O","08A","10","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2012-06-08 00:00:00","F","04C","60","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2012-06-08 00:00:00","F","06E","60","","","2013-09-13 01:01:06.177000000" +"41560782","GINZA","3","296","5 AVENUE","11215","7183691021","49","2012-07-05 00:00:00","D","10B","13","A","2012-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2011-08-24 00:00:00","P","06E","19","","","2013-09-13 01:01:06.177000000" +"41561941","DO DOMPA","1","71","CLINTON STREET","10002","2125334781","49","2013-05-14 00:00:00","F","06F","18","","","2013-09-13 01:01:06.177000000" +"41562299","SAKE JAPANESE CUISINE","3","324-328 ","CHURCH AVENUE ","11218","7188515299","49","2011-02-15 00:00:00","D","10B","5","","","2013-09-13 01:01:06.177000000" +"41562299","SAKE JAPANESE CUISINE","3","324-328 ","CHURCH AVENUE ","11218","7188515299","49","2012-04-26 00:00:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2011-11-15 00:00:00","F","06C","36","","","2013-09-13 01:01:06.177000000" +"41562911","SUSHI AND DELI BOX","1","68","WEST 39 STREET","10018","2128406633","49","2012-02-15 00:00:00","O","04M","10","","","2013-09-13 01:01:06.177000000" +"41564694","KOBE SUSHI","1","1472 ","YORK AVENUE ","10075","2129888628","49","2011-02-25 00:00:00","D","10A","2","","","2013-09-13 01:01:06.177000000" +"41566077","Q-CITY PIZZA","4","84-02 ","ROOSEVELT AVENUE ","11372","7182055478","62","2011-09-26 00:00:00","G","02G","49","","","2013-09-13 01:01:06.177000000" +"41566077","Q-CITY PIZZA","4","84-02 ","ROOSEVELT AVENUE ","11372","7182055478","62","2011-09-26 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41566077","Q-CITY PIZZA","4","84-02 ","ROOSEVELT AVENUE ","11372","7182055478","62","2011-09-26 00:00:00","G","99B","49","","","2013-09-13 01:01:06.177000000" +"41566402","BRUSHSTROKE (30 HUDSON ST)","1","162","DUANE STREET","10013","2123741300","49","2013-09-10 00:00:00","P","10A","15","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2011-03-11 00:00:00","F","22C","39","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2011-08-22 00:00:00","P","04C","19","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2012-01-11 00:00:00","P","08A","25","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2012-08-08 00:00:00","F","04L","35","","","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2012-08-20 00:00:00","F","04C","21","C","2012-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41566710","BLUE GINGER","1","106","8 AVENUE","10011","2123520911","49","2012-08-20 00:00:00","F","06C","21","C","2012-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41567679","LITTLE TOKYO AT SEAPORT INC.","1","303 ","SOUTH STREET SEAPORT ","10038","2125871339","49","2011-06-24 00:00:00","D","06F","5","A","2011-06-24 00:00:00","2013-09-13 01:01:06.177000000" +"41568107","TAPPO Thin Crust Pizza","1","49","WEST 24 STREET","10010","2128076888","48","2011-07-28 00:00:00","P","10H","23","","","2013-09-13 01:01:06.177000000" +"41568107","TAPPO Thin Crust Pizza","1","49","WEST 24 STREET","10010","2128076888","48","2011-07-28 00:00:00","P","99B","23","","","2013-09-13 01:01:06.177000000" +"41568107","TAPPO Thin Crust Pizza","1","49","WEST 24 STREET","10010","2128076888","48","2012-02-27 00:00:00","F","05D","35","","","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2011-07-06 00:00:00","D","08C","10","A","2011-07-06 00:00:00","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2011-10-28 00:00:00","F","04L","32","","","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2011-10-28 00:00:00","F","06D","32","","","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2012-04-10 00:00:00","F","02B","35","","","2013-09-13 01:01:06.177000000" +"41570645","WASAN","1","108","EAST 4 STREET","10003","2127771978","49","2012-04-10 00:00:00","F","06E","35","","","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-03-31 00:00:00","P","06C","24","","","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2011-04-27 00:00:00","U","04H","27","B","2011-04-27 00:00:00","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2012-08-20 00:00:00","F","06E","28","","","2013-09-13 01:01:06.177000000" +"41573305","WOK & ROLL","4","NKA ","JFK INT'L AIRPORT ","11430","7187511999","49","2012-09-11 00:00:00","U","08A","25","B","2012-09-11 00:00:00","2013-09-13 01:01:06.177000000" +"41573430","SUSHI FUSSION","4","105-45A ","64 ROAD ","11375","7189978744","49","2011-08-04 00:00:00","U","06C","13","B","2011-08-04 00:00:00","2013-09-13 01:01:06.177000000" +"41573566","PAPA'S PIZZA & GRILL","3","4417","4 AVENUE","11220","7186332701","62","2013-01-31 00:00:00","F","02B","49","C","2013-01-31 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-08-09 00:00:00","U","02B","26","B","2011-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-08-09 00:00:00","U","10B","26","B","2011-08-09 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-12-08 00:00:00","P","06C","26","","","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-12-22 00:00:00","U","04K","23","B","2011-12-22 00:00:00","2013-09-13 01:01:06.177000000" +"41574411","HANAMI SUSHI","1","857","9 AVENUE","10019","2122582999","49","2011-12-22 00:00:00","U","08A","23","B","2011-12-22 00:00:00","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2012-01-09 00:00:00","F","02B","28","","","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2012-01-09 00:00:00","F","04M","28","","","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2012-07-05 00:00:00","F","10F","32","","","2013-09-13 01:01:06.177000000" +"41574514","NANATORI JAPANESE RESTAURANT","3","162","MONTAGUE STREET","11201","7185225555","49","2013-03-12 00:00:00","U","02G","27","B","2013-03-12 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2011-04-11 00:00:00","D","06C","11","","","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2011-08-01 00:00:00","F","02B","33","","","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2011-08-01 00:00:00","F","04M","33","","","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2012-07-03 00:00:00","F","08A","33","","","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2012-07-19 00:00:00","F","06F","34","C","2012-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2012-07-19 00:00:00","F","10F","34","C","2012-07-19 00:00:00","2013-09-13 01:01:06.177000000" +"41574984","TENGU SUSHI & NOODLE HOUSE","3","5920","FORT HAMILTON PARKWAY","11219","7186333336","49","2012-12-14 00:00:00","P","02G","17","","","2013-09-13 01:01:06.177000000" +"41576416","JUKAI","1","237","EAST 53 STREET","10022","2125889788","49","2011-04-11 00:00:00","D","08C","4","","","2013-09-13 01:01:06.177000000" +"41576416","JUKAI","1","237","EAST 53 STREET","10022","2125889788","49","2011-07-26 00:00:00","D","02B","10","A","2011-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41579281","MANOR SUSHI","5","878","MANOR ROAD","10314","7183702208","49","2011-07-15 00:00:00","D","10I","11","A","2011-07-15 00:00:00","2013-09-13 01:01:06.177000000" +"41580949","LIANG'S GARDEN","2","320","CYPRESS AVENUE","10454","7189936541","20","2013-07-08 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2011-12-19 00:00:00","F","02G","25","C","2011-12-19 00:00:00","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2012-02-29 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"41580952","ASUKA SUSHI","1","300","WEST 23 STREET","10011","2127270888","49","2012-03-13 00:00:00","D","04M","12","A","2012-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2011-06-28 00:00:00","G","08A","59","","","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2011-08-03 00:00:00","P","06C","18","","","2013-09-13 01:01:06.177000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2013-03-28 00:00:00","G","06E","33","","","2013-09-13 01:01:06.177000000" +"41582873","ICHIMASA JAPANESE RESTAURANT","1","302","WEST 50 STREET","10019","2123154800","49","2013-02-12 00:00:00","P","02B","16","","","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2011-05-25 00:00:00","E","04N","35","","","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2011-05-25 00:00:00","E","08A","35","","","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2011-06-02 00:00:00","D","10B","6","","","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2012-02-21 00:00:00","D","10F","13","A","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41583127","IZAKAYA ON SMITH","3","176","SMITH STREET","11201","7188552020","49","2013-03-26 00:00:00","U","04L","12","B","2013-03-26 00:00:00","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2011-07-05 00:00:00","D","10F","13","A","2011-07-05 00:00:00","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2011-10-27 00:00:00","F","04N","28","","","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2012-03-22 00:00:00","F","04N","34","","","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2012-03-22 00:00:00","F","08A","34","","","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2012-03-22 00:00:00","F","08B","34","","","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2012-04-17 00:00:00","D","08A","12","A","2012-04-17 00:00:00","2013-09-13 01:01:06.177000000" +"41584677","KIKU","3","361","7 AVENUE","11215","7184992288","49","2012-10-02 00:00:00","D","04L","13","A","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41584962","TOTOYA","1","1144 ","1 AVENUE ","10065","2127530422","49","2011-08-03 00:00:00","D","10F","8","A","2011-08-03 00:00:00","2013-09-13 01:01:06.177000000" +"41584962","TOTOYA","1","1144 ","1 AVENUE ","10065","2127530422","49","2012-08-02 00:00:00","P","04H","19","","","2013-09-13 01:01:06.177000000" +"41584962","TOTOYA","1","1144 ","1 AVENUE ","10065","2127530422","49","2012-09-05 00:00:00","D","10H","10","A","2012-09-05 00:00:00","2013-09-13 01:01:06.177000000" +"41584962","TOTOYA","1","1144 ","1 AVENUE ","10065","2127530422","49","2013-04-05 00:00:00","P","06D","23","","","2013-09-13 01:01:06.177000000" +"41584962","TOTOYA","1","1144 ","1 AVENUE ","10065","2127530422","49","2013-04-05 00:00:00","P","06E","23","","","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2011-09-03 00:00:00","F","10F","28","","","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2011-10-04 00:00:00","F","06D","31","C","2011-10-04 00:00:00","2013-09-13 01:01:06.177000000" +"41586172","MIYAKO SUSHI HIBACHI","5","939","RICHMOND AVENUE","10314","7186988700","49","2012-05-09 00:00:00","F","08A","28","C","2012-05-09 00:00:00","2013-09-13 01:01:06.177000000" +"41587617","LOS PRIMOS SEAFOOD MARKET","2","726","COURTLANDT AVENUE","10451","7186180346","72","2011-08-25 00:00:00","F","05F","49","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2011-08-05 00:00:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2011-08-05 00:00:00","F","06E","36","","","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2011-09-22 00:00:00","U","04L","24","B","2011-09-22 00:00:00","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2012-06-19 00:00:00","U","06C","17","B","2012-06-19 00:00:00","2013-09-13 01:01:06.177000000" +"41587857","KUBOYA","1","536","EAST 5 STREET","10009","2127777010","49","2013-08-27 00:00:00","F","10F","29","","","2013-09-13 01:01:06.177000000" +"41589890","Y CAFE","1","182","AVENUE B","10009","2127773323","05","2013-02-28 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41590518","NEW SZECHUAN HOUSE","4","50-08","SKILLMAN AVENUE","11377","7184466092","20","2012-09-08 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2011-06-01 00:00:00","F","10B","33","","","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2011-12-19 00:00:00","P","06C","23","","","2013-09-13 01:01:06.177000000" +"41591580","JPAN SUSHI RESTAURANT","3","287","5 AVENUE","11215","7187882880","49","2011-12-28 00:00:00","U","10F","24","B","2011-12-28 00:00:00","2013-09-13 01:01:06.177000000" +"41593479","SKY FOOD COURT(SKY MALL)","4","40-24 ","COLLEGE POINT BOULEVARD ","11354","7189396688","20","2011-12-17 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2011-06-21 00:00:00","P","06E","17","","","2013-09-13 01:01:06.177000000" +"41594753","NEW SAKE ONE FUSION JAPANESE RESTAURANT","5","3972","HYLAN BOULEVARD","10308","7189666168","49","2013-04-27 00:00:00","P","06A","23","","","2013-09-13 01:01:06.177000000" +"41597054","SUSHI YASAKA","1","251","WEST 72 STREET","10023","2124968460","49","2011-07-15 00:00:00","D","04M","12","","","2013-09-13 01:01:06.177000000" +"41597054","SUSHI YASAKA","1","251","WEST 72 STREET","10023","2124968460","49","2011-10-26 00:00:00","U","10B","8","B","2011-10-26 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-12-11 00:00:00","F","04J","65","C","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-12-11 00:00:00","F","06D","65","C","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41597266","IMI JAPANESE SUSHI","1","656A ","AMSTERDAM AVENUE ","10025","2127121718","49","2012-12-11 00:00:00","F","06E","65","C","2012-12-11 00:00:00","2013-09-13 01:01:06.177000000" +"41598232","LAO MA MA LA TANG","4","136-20","ROOSEVELT AVENUE","11354","7183582339","20","2012-08-27 00:00:00","G","04M","49","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2012-08-20 00:00:00","F","02G","64","","","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2012-09-06 00:00:00","U","10F","9","B","2012-09-06 00:00:00","2013-09-13 01:01:06.177000000" +"41599769","JUNKO SUSHI","4","33-02","BROADWAY","11106","7187771588","49","2013-02-26 00:00:00","F","04J","67","","","2013-09-13 01:01:06.177000000" +"41601132","MARS CAFE","1","58","WEST 39 STREET","10018","2129974200","03","2012-08-24 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2011-08-22 00:00:00","F","02B","46","","","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2011-08-22 00:00:00","F","08A","46","","","2013-09-13 01:01:06.177000000" +"41601639","UMI SUSHI","4","177-13 ","UNION TURNPIKE ","11366","7189698298","49","2012-01-24 00:00:00","D","10F","13","A","2012-01-24 00:00:00","2013-09-13 01:01:06.177000000" +"41601691","WAZA SUSHI","3","485","MYRTLE AVENUE","11205","7183993839","49","2012-09-27 00:00:00","F","10B","32","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2011-08-12 00:00:00","U","04M","15","B","2011-08-12 00:00:00","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2012-11-21 00:00:00","P","10F","18","","","2013-09-13 01:01:06.177000000" +"41602974","ZUTTO","1","77","HUDSON STREET","10013","2122333287","49","2013-06-27 00:00:00","P","10F","14","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2012-02-28 00:00:00","F","02B","47","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2012-07-19 00:00:00","F","02G","15","","","2013-09-13 01:01:06.177000000" +"41604048","SUSHI TATSU","3","884-886","FULTON STREET","11238","7182303988","49","2012-08-16 00:00:00","D","04M","12","A","2012-08-16 00:00:00","2013-09-13 01:01:06.177000000" +"41604549","AAA ICHIBAN SUSHI","1","198A","ORCHARD STREET","10002","2123880899","49","2011-11-28 00:00:00","F","05D","48","","","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2011-08-17 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2011-12-07 00:00:00","U","02B","25","B","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2011-12-07 00:00:00","U","04C","25","B","2011-12-07 00:00:00","2013-09-13 01:01:06.177000000" +"41605430","CHUKO","3","552","VANDERBILT AVENUE","11238","7185766701","49","2012-06-22 00:00:00","U","08A","18","B","2012-06-22 00:00:00","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2011-08-26 00:00:00","F","04M","38","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2011-12-15 00:00:00","G","06C","39","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2011-12-16 00:00:00","O","10B","4","","","2013-09-13 01:01:06.177000000" +"41605604","NOUVELLE ASIAN FUSION/LOUNGE","3","8716","3 AVENUE","11209","7182388250","49","2013-06-01 00:00:00","F","06E","18","","","2013-09-13 01:01:06.177000000" +"41605649","JUDY'S SPANISH RESTAURANT","1","1505","LEXINGTON AVENUE","10029","2128310193","53","2012-03-01 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41605850","AJISEN RAMEN","1","136","WEST 28 STREET","10001","6466380888","49","2011-08-16 00:00:00","D","10A","4","","","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2011-08-15 00:00:00","E","16B","","","","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2012-11-29 00:00:00","P","02G","20","","","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2012-12-24 00:00:00","D","06C","8","A","2012-12-24 00:00:00","2013-09-13 01:01:06.177000000" +"41606446","FUTIGI","4","164-04","69 AVENUE","11365","7183808878","49","2012-12-24 00:00:00","D","10F","8","A","2012-12-24 00:00:00","2013-09-13 01:01:06.177000000" +"41607908","LONGEVOUSJOY Ramen Sushi Brasserie","3","6610","BAY PARKWAY","11204","9178926068","49","2012-04-05 00:00:00","P","06E","24","","","2013-09-13 01:01:06.177000000" +"41608024","KOBEYAKI","1","293 ","7 AVENUE ","10001","2122425500","49","2012-01-04 00:00:00","D","10F","13","A","2012-01-04 00:00:00","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2012-02-09 00:00:00","F","06D","47","","","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2012-05-02 00:00:00","D","02G","9","A","2012-05-02 00:00:00","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2012-10-04 00:00:00","F","02G","28","","","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2013-06-01 00:00:00","F","06F","29","","","2013-09-13 01:01:06.177000000" +"41608028","NEO SUSHI STUDIO","1","1410","1 AVENUE","10021","2125176860","49","2013-07-03 00:00:00","G","08A","43","","","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2011-08-18 00:00:00","D","10F","6","","","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2011-09-28 00:00:00","U","02G","19","B","2011-09-28 00:00:00","2013-09-13 01:01:06.177000000" +"41608422","GUZAN JAPANESE CUISINE & BAR","1","1534","3 AVENUE","10028","2128283699","49","2012-04-30 00:00:00","D","10H","12","A","2012-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41608998","BAR MISHIMA","1","212","EAST 52 STREET","10022","2125881089","49","2013-03-07 00:00:00","P","10F","21","","","2013-09-13 01:01:06.177000000" +"41608998","BAR MISHIMA","1","212","EAST 52 STREET","10022","2125881089","49","2013-05-08 00:00:00","C","08C","11","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2011-10-21 00:00:00","P","09B","24","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2011-11-03 00:00:00","F","08A","37","C","2011-11-03 00:00:00","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2011-11-18 00:00:00","U","06A","20","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2012-04-09 00:00:00","F","04C","24","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2012-04-09 00:00:00","F","04M","24","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2012-04-09 00:00:00","F","06C","24","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2012-09-12 00:00:00","F","04L","34","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2012-09-12 00:00:00","F","09C","34","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2012-09-27 00:00:00","U","10J","2","B","2012-09-27 00:00:00","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2013-03-21 00:00:00","F","02B","43","","","2013-09-13 01:01:06.177000000" +"41609044","HAMACHI SUSHI","1","63A","READE STREET","10007","2123460863","49","2013-03-21 00:00:00","F","04C","43","","","2013-09-13 01:01:06.177000000" +"41610636","RESOBOX","4","41-26","27 STREET","11101","7187843680","49","2012-02-21 00:00:00","D","10B","9","A","2012-02-21 00:00:00","2013-09-13 01:01:06.177000000" +"41610636","RESOBOX","4","41-26","27 STREET","11101","7187843680","49","2013-07-12 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41613264","BIG E'S DELI","5","180 ","WEST SERVICE ROAD ","10314","7189666232","03","2012-10-02 00:00:00","F","08C","49","C","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41614161","AMY RUTH'S RESTAURANT","1","113","WEST 116 STREET","10026","2122808779","73","2013-08-16 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41614161","AMY RUTH'S RESTAURANT","1","113","WEST 116 STREET","10026","2122808779","73","2013-08-16 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2011-10-06 00:00:00","F","04L","31","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2011-10-06 00:00:00","F","08A","31","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2012-10-09 00:00:00","F","04C","30","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2012-10-09 00:00:00","F","04M","30","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2013-05-22 00:00:00","F","08A","17","","","2013-09-13 01:01:06.177000000" +"41614800","HANA CAFE","3","235","SMITH STREET","11231","7186431963","49","2013-05-22 00:00:00","F","10H","17","","","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2011-12-07 00:00:00","P","10E","24","","","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2012-11-21 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2012-11-21 00:00:00","P","04K","24","","","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2012-11-21 00:00:00","P","08A","24","","","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2013-08-20 00:00:00","P","06D","21","","","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2013-08-20 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41616689","FAMILY RECIPE","1","231","ELDRIDGE STREET","10002","2125293133","49","2013-08-20 00:00:00","P","09C","21","","","2013-09-13 01:01:06.177000000" +"41617529","ELISA CAFE","3","254","THROOP AVENUE","11206","7184558349","53","2011-10-21 00:00:00","F","04H","49","C","2011-10-21 00:00:00","2013-09-13 01:01:06.177000000" +"41617766","CHINA HOUSE CHINESE RESTAURANT","1","1624","MADISON AVENUE","10029","2123484888","20","2012-08-14 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2011-09-21 00:00:00","P","04L","19","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2011-10-05 00:00:00","G","04N","20","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2011-10-05 00:00:00","G","08A","20","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2011-10-06 00:00:00","O","06D","7","B","2011-10-06 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2011-12-15 00:00:00","P","06E","18","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2012-07-10 00:00:00","P","10B","19","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-02-14 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-02-14 00:00:00","F","02G","59","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-02-14 00:00:00","F","04K","59","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-03-04 00:00:00","U","10F","11","B","2013-03-04 00:00:00","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-07-23 00:00:00","F","04C","23","","","2013-09-13 01:01:06.177000000" +"41618259","UMAI JAPANESE RESTAURANT","2","2330","ARTHUR AVENUE","10458","7189333268","49","2013-07-23 00:00:00","F","04M","23","","","2013-09-13 01:01:06.177000000" +"41618303","GIACOMO'S WOOD FIRED PIZZA","3","7902 ","THIRD AVENUE ","11209","7184396993","48","2013-08-09 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41619148","LA POLLERA COLORADA II","4","82-13","NORTHERN BOULEVARD","11372","7184246531","77","2011-10-25 00:00:00","F","04J","49","C","2011-10-25 00:00:00","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2012-02-15 00:00:00","F","04L","34","","","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2012-02-15 00:00:00","F","10F","34","","","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2012-03-01 00:00:00","U","06D","14","B","2012-03-01 00:00:00","2013-09-13 01:01:06.177000000" +"41619349","ICHIRO SUSHI","1","1694","2 AVENUE","10128","2123696300","49","2013-05-18 00:00:00","F","10B","26","","","2013-09-13 01:01:06.177000000" +"41622322","SUSHI YU JAPANESE RESTAURANT","3","214","PROSPECT PARK WEST","11215","7188328688","49","2012-01-24 00:00:00","P","10F","26","","","2013-09-13 01:01:06.177000000" +"41622616","TOTO SUSHI","1","216","THOMPSON STREET","10012","2125334433","49","2012-06-13 00:00:00","U","02G","20","B","2012-06-13 00:00:00","2013-09-13 01:01:06.177000000" +"41622616","TOTO SUSHI","1","216","THOMPSON STREET","10012","2125334433","49","2013-02-21 00:00:00","P","02B","22","","","2013-09-13 01:01:06.177000000" +"41623268","MAGURO SUSHI","1","160","EAST 28 STREET","10016","2125108883","49","2013-02-13 00:00:00","P","04H","15","","","2013-09-13 01:01:06.177000000" +"41623669","YAMAKAGE TOKYO","1","1026","2 AVENUE","10022","2123552577","49","2012-02-03 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"41623669","YAMAKAGE TOKYO","1","1026","2 AVENUE","10022","2123552577","49","2012-02-03 00:00:00","P","08A","22","","","2013-09-13 01:01:06.177000000" +"41623669","YAMAKAGE TOKYO","1","1026","2 AVENUE","10022","2123552577","49","2012-02-03 00:00:00","P","09C","22","","","2013-09-13 01:01:06.177000000" +"41623669","YAMAKAGE TOKYO","1","1026","2 AVENUE","10022","2123552577","49","2012-02-29 00:00:00","D","10F","7","A","2012-02-29 00:00:00","2013-09-13 01:01:06.177000000" +"41624200","WASABI","3","638","MANHATTAN AVENUE","11222","7186099368","49","2012-07-31 00:00:00","F","04A","29","","","2013-09-13 01:01:06.177000000" +"41624200","WASABI","3","638","MANHATTAN AVENUE","11222","7186099368","49","2012-07-31 00:00:00","F","10G","29","","","2013-09-13 01:01:06.177000000" +"41625676","SNACK BOX","1","NKA ","TIMES SQUARE ","10036","2127772500","03","2012-02-22 00:00:00","8","10B","49","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2012-01-18 00:00:00","P","04L","18","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2012-01-18 00:00:00","P","06D","18","","","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2012-07-26 00:00:00","F","02G","27","C","2012-07-26 00:00:00","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2013-02-26 00:00:00","U","04L","23","B","2013-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41626454","CHIKURIN","4","97-09","64 AVENUE","11374","7188962900","49","2013-02-26 00:00:00","U","09C","23","B","2013-02-26 00:00:00","2013-09-13 01:01:06.177000000" +"41627232","NEW CHOPSTICK","4","91-28","CORONA AVENUE","11373","7186990866","49","2012-02-10 00:00:00","D","10F","13","A","2012-02-10 00:00:00","2013-09-13 01:01:06.177000000" +"41627665","AMAZE FUSION LOUNGE","1","694","3 AVENUE","10017","2129865555","22","2012-03-12 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41627665","AMAZE FUSION LOUNGE","1","694","3 AVENUE","10017","2129865555","22","2012-03-12 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41628216","OVI'S PLACE","3","2925","AVENUE H","11210","7184211640","03","2012-12-03 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41628361","121 FULTON STREET","1","121","FULTON STREET","10038","6465456647","03","2011-12-21 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41628521","KOTOBUKI","1","56","3 AVENUE","10003","2123535088","49","2012-03-22 00:00:00","D","10E","10","","","2013-09-13 01:01:06.177000000" +"41628521","KOTOBUKI","1","56","3 AVENUE","10003","2123535088","49","2012-06-11 00:00:00","P","06A","24","","","2013-09-13 01:01:06.177000000" +"41628657","OOTOYA JAPANESE RESTAURANT","1","8","WEST 18 STREET","10011","2122550018","49","2013-05-20 00:00:00","F","02G","29","","","2013-09-13 01:01:06.177000000" +"41629243","OBENTO DELIGHT & ASIAN FUSION RESTAURANT","1","210","WEST 94 STREET","10025","2122222010","49","2012-01-12 00:00:00","P","06E","21","","","2013-09-13 01:01:06.177000000" +"41629953","SHINOBI RAMEN","3","53 ","MORGAN AVENUE ","11237","6463429014","49","2013-01-31 00:00:00","P","10F","4","","","2013-09-13 01:01:06.177000000" +"41630465","YUMMY SUSHI","1","1758","1 AVENUE","10128","2129963666","49","2011-12-12 00:00:00","P","02G","21","","","2013-09-13 01:01:06.177000000" +"41630465","YUMMY SUSHI","1","1758","1 AVENUE","10128","2129963666","49","2012-07-17 00:00:00","D","10F","7","A","2012-07-17 00:00:00","2013-09-13 01:01:06.177000000" +"41630942","SUSHI-TERIA","1","601 ","LEXINGTON AVENUE ","10022","9178810420","49","2012-02-23 00:00:00","B","10B","2","A","2012-02-23 00:00:00","2013-09-13 01:01:06.177000000" +"41631683","LONG GRAIN","1","2534","BROADWAY","10025","2126660888","49","2012-02-02 00:00:00","U","02A","22","B","2012-02-02 00:00:00","2013-09-13 01:01:06.177000000" +"41631683","LONG GRAIN","1","2534","BROADWAY","10025","2126660888","49","2012-02-02 00:00:00","U","06E","22","B","2012-02-02 00:00:00","2013-09-13 01:01:06.177000000" +"41631683","LONG GRAIN","1","2534","BROADWAY","10025","2126660888","49","2012-06-25 00:00:00","F","04J","32","","","2013-09-13 01:01:06.177000000" +"41631683","LONG GRAIN","1","2534","BROADWAY","10025","2126660888","49","2012-07-30 00:00:00","U","04L","12","B","2012-07-30 00:00:00","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2012-03-19 00:00:00","G","02G","57","","","2013-09-13 01:01:06.177000000" +"41632919","JAPADOG","1","30","ST MARKS PLACE","10003","6464762324","49","2012-08-20 00:00:00","D","10F","10","A","2012-08-20 00:00:00","2013-09-13 01:01:06.177000000" +"41633013","TOMO JAPANESE RESTAURANT","5","4561","AMBOY ROAD","10312","7182275100","49","2012-03-20 00:00:00","P","06C","19","","","2013-09-13 01:01:06.177000000" +"41633013","TOMO JAPANESE RESTAURANT","5","4561","AMBOY ROAD","10312","7182275100","49","2013-02-23 00:00:00","F","04L","17","","","2013-09-13 01:01:06.177000000" +"41633013","TOMO JAPANESE RESTAURANT","5","4561","AMBOY ROAD","10312","7182275100","49","2013-02-23 00:00:00","F","06F","17","","","2013-09-13 01:01:06.177000000" +"41633095","BAMBOO YA","4","9711 ","QUEENS BLVD ","11374","7188061228","49","2013-04-15 00:00:00","U","04L","11","B","2013-04-15 00:00:00","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-10-19 00:00:00","F","06D","43","","","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2012-10-19 00:00:00","F","10D","43","","","2013-09-13 01:01:06.177000000" +"41634043","SUSHI MIKASA","3","1188","GRAVESEND NECK ROAD","11229","7183326600","49","2013-05-08 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2012-01-27 00:00:00","O","10B","6","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2012-05-02 00:00:00","P","06C","17","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2012-05-31 00:00:00","U","04C","14","B","2012-05-31 00:00:00","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2013-02-07 00:00:00","F","04M","35","","","2013-09-13 01:01:06.177000000" +"41635137","MURA","3","369","5 AVENUE","11215","7189651288","49","2013-07-25 00:00:00","P","02B","7","","","2013-09-13 01:01:06.177000000" +"41635173","NETA","1","61","WEST 8 STREET","10011","2125052610","49","2013-06-14 00:00:00","F","05D","64","","","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-01-19 00:00:00","D","08A","7","","","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-04-02 00:00:00","U","02B","20","B","2012-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2012-04-02 00:00:00","U","04M","20","B","2012-04-02 00:00:00","2013-09-13 01:01:06.177000000" +"41636763","KIKU ASIAN BISTRO","3","2","LINCOLN PLACE","11217","7186383366","49","2013-03-04 00:00:00","P","02G","13","","","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2012-03-21 00:00:00","P","02B","19","","","2013-09-13 01:01:06.177000000" +"41637387","SUSHI YASU","4","7011 ","AUSTIN STREET ","11375","7185755169","49","2012-12-19 00:00:00","P","04H","16","","","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2012-03-27 00:00:00","F","02G","36","C","2012-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2012-03-27 00:00:00","F","08A","36","C","2012-03-27 00:00:00","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2012-04-10 00:00:00","D","10F","3","","","2013-09-13 01:01:06.177000000" +"41637582","KANKI SUSHI","4","3801","31 STREET","11101","7184723778","49","2012-08-23 00:00:00","F","02G","20","","","2013-09-13 01:01:06.177000000" +"41639187","NEW JIN BU RESTAURANT","3","49","MOTHER GASTON BOULEVARD","11233","7184553725","20","2012-02-29 00:00:00","F","02B","34","","","2013-09-13 01:01:06.177000000" +"41639187","NEW JIN BU RESTAURANT","3","49","MOTHER GASTON BOULEVARD","11233","7184553725","20","2012-03-13 00:00:00","U","06C","7","B","2012-03-13 00:00:00","2013-09-13 01:01:06.177000000" +"41639196","MARIO GOURMET DELI","1","934","AMSTERDAM AVENUE","10025","2122224470","27","2012-07-05 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41640400","KUMO SUSHI","1","282","BLEECKER STREET","10014","2123660808","49","2012-02-27 00:00:00","P","02B","24","","","2013-09-13 01:01:06.177000000" +"41640400","KUMO SUSHI","1","282","BLEECKER STREET","10014","2123660808","49","2013-06-18 00:00:00","F","10A","37","","","2013-09-13 01:01:06.177000000" +"41642429","GRAND BAKERY","3","501","GRAND STREET","11211","7183840773","77","2013-01-08 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41642429","GRAND BAKERY","3","501","GRAND STREET","11211","7183840773","77","2013-01-08 00:00:00","G","06C","49","","","2013-09-13 01:01:06.177000000" +"41642516","SUSHI 21","1","174","7 AVENUE","10011","6464866288","49","2012-03-21 00:00:00","D","10B","2","A","2012-03-21 00:00:00","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-02-29 00:00:00","U","04M","18","B","2012-02-29 00:00:00","2013-09-13 01:01:06.177000000" +"41642728","HARU GINGER SUSHI","3","7308","3 AVENUE","11209","7188338818","49","2012-09-24 00:00:00","F","06F","41","C","2012-09-24 00:00:00","2013-09-13 01:01:06.177000000" +"41643015","CUCUMBER SUSHI & SALAD BAR","5","5834","AMBOY ROAD","10309","7189661118","49","2012-07-17 00:00:00","U","06C","24","B","2012-07-17 00:00:00","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2012-03-31 00:00:00","D","10F","6","A","2012-03-31 00:00:00","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2012-10-11 00:00:00","F","04L","38","","","2013-09-13 01:01:06.177000000" +"41644384","WASABI RESTAURANT","3","7222","18 AVENUE","11204","7183313933","49","2013-05-30 00:00:00","P","06E","26","","","2013-09-13 01:01:06.177000000" +"41644418","BAGEL BIN","4","8610 ","JAMAICA AVENUE ","11421","7184416669","07","2012-02-29 00:00:00","F","04M","49","","","2013-09-13 01:01:06.177000000" +"41644418","BAGEL BIN","4","8610 ","JAMAICA AVENUE ","11421","7184416669","07","2012-02-29 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2012-03-12 00:00:00","F","02B","38","","","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2012-03-12 00:00:00","F","06A","38","","","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2012-03-12 00:00:00","F","10B","38","","","2013-09-13 01:01:06.177000000" +"41645211","HIROSHI JAPANESE RESTAURANT","1","585","3 AVENUE","10016","2126619288","49","2012-08-28 00:00:00","F","10B","38","","","2013-09-13 01:01:06.177000000" +"41645581","MATSU JAPANESE CUISINE","1","483","COLUMBUS AVENUE","10024","2127997922","49","2012-08-30 00:00:00","D","08A","12","A","2012-08-30 00:00:00","2013-09-13 01:01:06.177000000" +"41645944","INAKA","3","597 ","VANDERBILT AVENUE ","11238","7183988168","49","2013-01-15 00:00:00","F","04H","22","","","2013-09-13 01:01:06.177000000" +"41645944","INAKA","3","597 ","VANDERBILT AVENUE ","11238","7183988168","49","2013-02-27 00:00:00","D","10F","4","A","2013-02-27 00:00:00","2013-09-13 01:01:06.177000000" +"41646498","GO GO CURRY","1","231","THOMPSON STREET","10012","2125052555","49","2012-04-04 00:00:00","P","10B","19","","","2013-09-13 01:01:06.177000000" +"41646498","GO GO CURRY","1","231","THOMPSON STREET","10012","2125052555","49","2012-11-27 00:00:00","P","04J","20","","","2013-09-13 01:01:06.177000000" +"41646498","GO GO CURRY","1","231","THOMPSON STREET","10012","2125052555","49","2012-12-24 00:00:00","D","03C","7","A","2012-12-24 00:00:00","2013-09-13 01:01:06.177000000" +"41646498","GO GO CURRY","1","231","THOMPSON STREET","10012","2125052555","49","2013-05-20 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41646525","CEETAY","2","129","ALEXANDER AVENUE","10454","7186187020","49","2012-04-10 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41646919","LA PERRADA DE CHALO","4","8312 ","NORTHERN BOULEVARD ","11372","7189152130","53","2012-03-31 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2012-03-28 00:00:00","G","04L","64","","","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2012-04-30 00:00:00","U","08A","22","B","2012-04-30 00:00:00","2013-09-13 01:01:06.177000000" +"41649990","IJI JAPANESE RESTAURANT","4","2508 ","BROADWAY ","11106","7187283381","49","2012-09-13 00:00:00","P","04J","10","","","2013-09-13 01:01:06.177000000" +"41650198","HINOMARU RAMEN","4","3318 ","DITMARS BOULEVARD ","11105","7187770228","49","2013-02-22 00:00:00","O","10F","4","P","2013-02-22 00:00:00","2013-09-13 01:01:06.177000000" +"41650782","BLUE RIBBON SUSHI IZAKAYA","1","187","ORCHARD STREET","10002","2124660404","49","2012-03-28 00:00:00","D","10F","5","","","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2012-04-13 00:00:00","G","04L","68","","","2013-09-13 01:01:06.177000000" +"41651477","AI'S SUSHI JAPANESE RESTAURANT","1","374","WEST 46 STREET","10036","2122655686","49","2012-04-13 00:00:00","G","08A","68","","","2013-09-13 01:01:06.177000000" +"41653529","MERIT KABAB PALACE","4","3767 ","74TH ST ","11372","7183965827","09","2012-04-30 00:00:00","F","03A","49","","","2013-09-13 01:01:06.177000000" +"41653529","MERIT KABAB PALACE","4","3767 ","74TH ST ","11372","7183965827","09","2012-04-30 00:00:00","F","04E","49","","","2013-09-13 01:01:06.177000000" +"41653529","MERIT KABAB PALACE","4","3767 ","74TH ST ","11372","7183965827","09","2012-04-30 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"41654886","RAI RAI KEN","1","218","EAST 10 STREET","10003","2124777030","49","2012-06-14 00:00:00","P","04N","9","","","2013-09-13 01:01:06.177000000" +"41654886","RAI RAI KEN","1","218","EAST 10 STREET","10003","2124777030","49","2012-06-14 00:00:00","P","08A","9","","","2013-09-13 01:01:06.177000000" +"41655483","JU FENG CHINESE FOOD","3","2809","NOSTRAND AVENUE","11229","7182529865","20","2012-09-27 00:00:00","F","04H","49","","","2013-09-13 01:01:06.177000000" +"41655483","JU FENG CHINESE FOOD","3","2809","NOSTRAND AVENUE","11229","7182529865","20","2012-09-27 00:00:00","F","06C","49","","","2013-09-13 01:01:06.177000000" +"41655484","CANAAN SUSHI","1","154","WEST 29 STREET","10001","2129479298","49","2013-05-14 00:00:00","F","04C","19","","","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2012-06-09 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2012-06-09 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41656654","TAKARA SUSHI","4","15011 ","14 AVENUE ","11357","7187471465","49","2012-12-22 00:00:00","P","06D","22","","","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2012-05-03 00:00:00","F","04L","46","","","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2012-05-03 00:00:00","F","08A","46","","","2013-09-13 01:01:06.177000000" +"41656675","ONYA","1","143","EAST 47 STREET","10017","2127150460","49","2012-05-15 00:00:00","D","10F","10","A","2012-05-15 00:00:00","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2012-05-30 00:00:00","F","04H","31","","","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2012-06-11 00:00:00","U","02G","11","B","2012-06-11 00:00:00","2013-09-13 01:01:06.177000000" +"41656888","MIYAKO SUSHI","1","642","AMSTERDAM AVENUE","10025","2127245200","49","2012-12-14 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2013-01-17 00:00:00","P","04H","13","","","2013-09-13 01:01:06.177000000" +"41656924","TENZIN","1","988-990 ","2 AVENUE ","10022","2129805900","49","2013-09-11 00:00:00","P","10F","20","","","2013-09-13 01:01:06.177000000" +"41657649","SEA KING","1","219","EAST 23 STREET","10010","2127253399","49","2012-06-25 00:00:00","P","06D","10","","","2013-09-13 01:01:06.177000000" +"41657649","SEA KING","1","219","EAST 23 STREET","10010","2127253399","49","2012-07-13 00:00:00","U","06D","19","B","2012-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41657649","SEA KING","1","219","EAST 23 STREET","10010","2127253399","49","2012-07-13 00:00:00","U","06E","19","B","2012-07-13 00:00:00","2013-09-13 01:01:06.177000000" +"41657649","SEA KING","1","219","EAST 23 STREET","10010","2127253399","49","2013-03-30 00:00:00","P","10B","11","","","2013-09-13 01:01:06.177000000" +"41658579","GRAVITY LOUNGE","2","400","CLAREMONT PARKWAY","10457","7182942477","53","2012-08-16 00:00:00","G","04L","49","","","2013-09-13 01:01:06.177000000" +"41658579","GRAVITY LOUNGE","2","400","CLAREMONT PARKWAY","10457","7182942477","53","2012-08-16 00:00:00","G","06D","49","","","2013-09-13 01:01:06.177000000" +"41659449","FUJI SUSHI","5","1115","HYLAN BOULEVARD","10305","7188160188","49","2012-05-01 00:00:00","F","06F","29","","","2013-09-13 01:01:06.177000000" +"41661153","SAKURA IV","4","6419 ","MYRTLE AVENUE ","11385","7183667888","49","2012-05-10 00:00:00","P","04M","25","","","2013-09-13 01:01:06.177000000" +"41661153","SAKURA IV","4","6419 ","MYRTLE AVENUE ","11385","7183667888","49","2012-05-10 00:00:00","P","06C","25","","","2013-09-13 01:01:06.177000000" +"41661153","SAKURA IV","4","6419 ","MYRTLE AVENUE ","11385","7183667888","49","2013-01-23 00:00:00","P","06C","25","","","2013-09-13 01:01:06.177000000" +"41664555","SUSHI OF GARI","1","1 ","WEST 58 STREET ","10019","6467553230","49","2012-08-20 00:00:00","P","10E","9","","","2013-09-13 01:01:06.177000000" +"41667390","KINGS TASTE OF ASTORIA","4","8406","ASTORIA BLVD","11370","7184269086","20","2012-06-16 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41668068","MARKIS PLACE","4","4403 ","30 AVENUE ","11103","9175683496","04","2013-06-04 00:00:00","F","02G","49","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-02-13 00:00:00","F","08A","36","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-02-13 00:00:00","F","08B","36","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-03-14 00:00:00","O","10F","5","C","2013-03-14 00:00:00","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-07-13 00:00:00","F","04M","30","","","2013-09-13 01:01:06.177000000" +"41669694","AKITA SUSHI","1","1771","1 AVENUE","10128","2128288668","49","2013-07-13 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"41670513","NEW HAN YANG SUSHI","4","15051 ","NORTHERN BOULEVARD ","11354","7188866678","49","2012-07-24 00:00:00","D","04N","10","A","2012-07-24 00:00:00","2013-09-13 01:01:06.177000000" +"41670513","NEW HAN YANG SUSHI","4","15051 ","NORTHERN BOULEVARD ","11354","7188866678","49","2012-07-24 00:00:00","D","08A","10","A","2012-07-24 00:00:00","2013-09-13 01:01:06.177000000" +"41670534","Iron Sushi","1","355 ","EAST 78 STREET ","10075","2127727680","49","2013-08-26 00:00:00","F","06D","30","","","2013-09-13 01:01:06.177000000" +"41670534","Iron Sushi","1","355 ","EAST 78 STREET ","10075","2127727680","49","2013-08-26 00:00:00","F","08A","30","","","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2012-07-10 00:00:00","E","05F","49","","","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2012-07-11 00:00:00","E","03C","63","","","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2012-09-05 00:00:00","P","02G","19","","","2013-09-13 01:01:06.177000000" +"41671459","YAMASHIRO","3","466","MYRTLE AVENUE","11205","7182303313","49","2013-04-23 00:00:00","F","02B","18","","","2013-09-13 01:01:06.177000000" +"41671938","YUSHI","1","100 ","MAIDEN LANE ","10038","2127422154","49","2012-10-19 00:00:00","D","04N","13","A","2012-10-19 00:00:00","2013-09-13 01:01:06.177000000" +"41671938","YUSHI","1","100 ","MAIDEN LANE ","10038","2127422154","49","2012-10-19 00:00:00","D","08A","13","A","2012-10-19 00:00:00","2013-09-13 01:01:06.177000000" +"41671938","YUSHI","1","100 ","MAIDEN LANE ","10038","2127422154","49","2013-04-23 00:00:00","F","02B","25","","","2013-09-13 01:01:06.177000000" +"41671938","YUSHI","1","100 ","MAIDEN LANE ","10038","2127422154","49","2013-04-23 00:00:00","F","10A","25","","","2013-09-13 01:01:06.177000000" +"41671938","YUSHI","1","100 ","MAIDEN LANE ","10038","2127422154","49","2013-04-23 00:00:00","F","10B","25","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-08-25 00:00:00","F","04J","104","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-09-08 00:00:00","F","06E","25","C","2012-09-08 00:00:00","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-09-22 00:00:00","G","06E","64","","","2013-09-13 01:01:06.177000000" +"41674321","SUSHI X 9","4","4715","NORTHERN BOULEVARD","11101","7187289600","49","2012-09-22 00:00:00","G","08A","64","","","2013-09-13 01:01:06.177000000" +"41674961","MAMA JOY'S","3","1084","FLUSHING AVENUE","11237","3472952227","03","2013-08-29 00:00:00","F","10D","49","","","2013-09-13 01:01:06.177000000" +"41675589","AJI SUSHI HOUSE","4","3606 ","DITMARS BLVD ","11105","7187778885","49","2012-07-25 00:00:00","P","02B","21","","","2013-09-13 01:01:06.177000000" +"41675589","AJI SUSHI HOUSE","4","3606 ","DITMARS BLVD ","11105","7187778885","49","2012-08-07 00:00:00","U","10B","14","B","2012-08-07 00:00:00","2013-09-13 01:01:06.177000000" +"41675643","GINZA SUSHI","1","251","EAST 35 STREET","10016","2128893333","49","2012-07-16 00:00:00","P","06E","25","","","2013-09-13 01:01:06.177000000" +"41677340","SUBWAY","4","11630 ","QUEENS BOULEVARD ","11375","7185201688","70","2012-10-10 00:00:00","G","04H","49","","","2013-09-13 01:01:06.177000000" +"41677534","TOMO JAPANESE CAFE","4","8914 ","QUEENS BLVD ","11373","7188039799","49","2012-09-17 00:00:00","D","08A","13","A","2012-09-17 00:00:00","2013-09-13 01:01:06.177000000" +"41677561","TOMO JAPANESE CUISINE","4","8612A ","37TH AVE ","11372","7182056222","49","2013-04-23 00:00:00","F","06E","29","","","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-09-14 00:00:00","F","06F","73","C","2012-09-14 00:00:00","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2012-10-16 00:00:00","U","10B","15","","","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2013-05-11 00:00:00","F","06D","53","","","2013-09-13 01:01:06.177000000" +"41679611","TAKESUSHI","4","4346 ","42 STREET ","11104","9175773969","49","2013-05-11 00:00:00","F","06E","53","","","2013-09-13 01:01:06.177000000" +"41680924","SARKU JAPAN TERIYAKI & SUSHI EXPRESS","4","13336 ","WHITESTONE EXPRESSWAY ","11354","7183590810","49","2012-08-07 00:00:00","D","15L","","","","2013-09-13 01:01:06.177000000" +"41681373","HADO SUSHI","4","13840 ","86 AVENUE ","11435","7185585758","49","2012-09-18 00:00:00","U","02G","25","B","2012-09-18 00:00:00","2013-09-13 01:01:06.177000000" +"41684379","SOBA TOTTO","1","211","EAST 43 STREET","10017","2125578200","49","2012-11-26 00:00:00","F","10F","53","C","2012-11-26 00:00:00","2013-09-13 01:01:06.177000000" +"41685002","NEW PUNJAB RESTAURANT & GRILL","3","691","CONEY ISLAND AVE","11218","7188566207","59","2012-10-19 00:00:00","F","04C","49","C","2012-10-19 00:00:00","2013-09-13 01:01:06.177000000" +"41685002","NEW PUNJAB RESTAURANT & GRILL","3","691","CONEY ISLAND AVE","11218","7188566207","59","2012-10-19 00:00:00","F","06C","49","C","2012-10-19 00:00:00","2013-09-13 01:01:06.177000000" +"41686748","AABI SUSHI","1","536","3 AVENUE","10016","2125826180","49","2012-09-07 00:00:00","F","06C","14","","","2013-09-13 01:01:06.177000000" +"41686748","AABI SUSHI","1","536","3 AVENUE","10016","2125826180","49","2012-09-20 00:00:00","U","06C","16","B","2012-09-20 00:00:00","2013-09-13 01:01:06.177000000" +"41688151","RAMEN YEBISU","3","126 ","NORTH 6 STREET ","11249","7187821444","49","2012-08-30 00:00:00","D","10J","4","","","2013-09-13 01:01:06.177000000" +"41688151","RAMEN YEBISU","3","126 ","NORTH 6 STREET ","11249","7187821444","49","2012-11-13 00:00:00","P","03C","15","","","2013-09-13 01:01:06.177000000" +"41688777","Q AND N DELI FOOD","4","230-59 ","INTL AIRPORT CENTER BLVD ","11413","7189178928","03","2013-02-11 00:00:00","W","04L","49","","","2013-09-13 01:01:06.177000000" +"41688797","RIVER JAPANESE RESTAURANT","4","37-18 ","MAIN ST ","11354","7188869880","49","2012-10-02 00:00:00","D","02G","10","A","2012-10-02 00:00:00","2013-09-13 01:01:06.177000000" +"41688797","RIVER JAPANESE RESTAURANT","4","37-18 ","MAIN ST ","11354","7188869880","49","2013-04-24 00:00:00","P","08C","18","","","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-01-08 00:00:00","F","10H","49","","","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-02-19 00:00:00","D","04H","11","A","2013-02-19 00:00:00","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-06-11 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-07-25 00:00:00","P","04L","22","","","2013-09-13 01:01:06.177000000" +"41688842","SUSHI OF GARI TRIBECA","1","130","WEST BROADWAY","10013","2122850130","49","2013-07-25 00:00:00","P","10F","22","","","2013-09-13 01:01:06.177000000" +"41689884","NAGOYA SUSHI","3","1907","KINGS HIGHWAY","11229","7183363688","49","2013-07-20 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"41689903","NAGOYA","3","1948","86TH ST","11214","7189758889","49","2013-01-09 00:00:00","P","08A","21","","","2013-09-13 01:01:06.177000000" +"41689903","NAGOYA","3","1948","86TH ST","11214","7189758889","49","2013-01-09 00:00:00","P","10I","21","","","2013-09-13 01:01:06.177000000" +"41689903","NAGOYA","3","1948","86TH ST","11214","7189758889","49","2013-07-02 00:00:00","P","06D","26","","","2013-09-13 01:01:06.177000000" +"41690686","AJI 18","1","208","3 AVENUE","10003","2126776921","49","2012-10-12 00:00:00","P","04L","15","","","2013-09-13 01:01:06.177000000" +"41692187","RED MOON","1","132","WEST 45 STREET","10036","2123916666","49","2012-09-06 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41694442","BAMBOOTORI","1","106","UNIVERSITY PLACE","10003","2122555152","49","2013-07-02 00:00:00","F","08A","29","","","2013-09-13 01:01:06.177000000" +"41694966","SHINJUKU","3","1664","SHEEPSHEAD BAY ROAD","11235","7189344273","49","2012-10-05 00:00:00","D","10F","6","","","2013-09-13 01:01:06.177000000" +"41694966","SHINJUKU","3","1664","SHEEPSHEAD BAY ROAD","11235","7189344273","49","2013-04-01 00:00:00","U","09B","20","B","2013-04-01 00:00:00","2013-09-13 01:01:06.177000000" +"41694966","SHINJUKU","3","1664","SHEEPSHEAD BAY ROAD","11235","7189344273","49","2013-08-15 00:00:00","P","08A","19","","","2013-09-13 01:01:06.177000000" +"41695267","ICHI SUSHI","3","8609","BAY PARKWAY","11214","7182652289","49","2013-01-24 00:00:00","F","08A","43","","","2013-09-13 01:01:06.177000000" +"41695267","ICHI SUSHI","3","8609","BAY PARKWAY","11214","7182652289","49","2013-02-07 00:00:00","D","09C","7","A","2013-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41695267","ICHI SUSHI","3","8609","BAY PARKWAY","11214","7182652289","49","2013-02-07 00:00:00","D","10F","7","A","2013-02-07 00:00:00","2013-09-13 01:01:06.177000000" +"41695327","KIMCHAYUL B.B.Q.","4","41-22","162 STREET","11358","7188869292","52","2012-12-26 00:00:00","F","05D","49","","","2013-09-13 01:01:06.177000000" +"41695327","KIMCHAYUL B.B.Q.","4","41-22","162 STREET","11358","7188869292","52","2012-12-26 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41695453","HAPPY FORTUNE RESTAURANT (NY)","1","96","BOWERY","10013","2122191993","49","2013-01-02 00:00:00","P","04A","22","","","2013-09-13 01:01:06.177000000" +"41695453","HAPPY FORTUNE RESTAURANT (NY)","1","96","BOWERY","10013","2122191993","49","2013-01-02 00:00:00","P","06A","22","","","2013-09-13 01:01:06.177000000" +"41695453","HAPPY FORTUNE RESTAURANT (NY)","1","96","BOWERY","10013","2122191993","49","2013-01-02 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"41695453","HAPPY FORTUNE RESTAURANT (NY)","1","96","BOWERY","10013","2122191993","49","2013-09-11 00:00:00","F","10B","31","","","2013-09-13 01:01:06.177000000" +"41695477","GHOROA RESTAURANT","4","168-41","HILLSIDE AVENUE","11432","7186571000","09","2013-03-23 00:00:00","G","06F","49","","","2013-09-13 01:01:06.177000000" +"41695897","CAFE BOULIS","4","30-15 ","31 AVENUE ","11106","7188061014","14","2012-10-10 00:00:00","E","05H","49","","","2013-09-13 01:01:06.177000000" +"41698000","KARAOKE DUET 48","1","304","EAST 48 STREET","10017","2127530030","49","2012-12-20 00:00:00","D","08A","11","A","2012-12-20 00:00:00","2013-09-13 01:01:06.177000000" +"41700608","SEN NYC","3","12 ","WEST 21 STREET ","10010","2123885736","49","2013-05-08 00:00:00","F","10B","29","","","2013-09-13 01:01:06.177000000" +"41700776","ELBOW ROOM","3","614 ","ATLANTIC AVENUE ","11217","7182304088","03","2013-02-07 00:00:00","F","02B","49","","","2013-09-13 01:01:06.177000000" +"41700776","ELBOW ROOM","3","614 ","ATLANTIC AVENUE ","11217","7182304088","03","2013-02-07 00:00:00","F","04A","49","","","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-01-23 00:00:00","F","04M","30","","","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-01-23 00:00:00","F","06C","30","","","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-01-23 00:00:00","F","10F","30","","","2013-09-13 01:01:06.177000000" +"41700785","NANIWA JAPANESE RESTAURANT","3","276","KINGS HIGHWAY","11223","7183762898","49","2013-07-10 00:00:00","F","02G","36","","","2013-09-13 01:01:06.177000000" +"41701495","ZEN 6 RAMEN & GYOZA HOUSE","1","328","EAST 6 STREET","10003","6464298471","49","2013-01-15 00:00:00","P","04L","15","","","2013-09-13 01:01:06.177000000" +"41701495","ZEN 6 RAMEN & GYOZA HOUSE","1","328","EAST 6 STREET","10003","6464298471","49","2013-01-15 00:00:00","P","06F","15","","","2013-09-13 01:01:06.177000000" +"41702145","MP TAVERNA","4","31-29","DITMARS BOULEVARD","11105","7187772187","38","2013-05-23 00:00:00","F","06E","49","","","2013-09-13 01:01:06.177000000" +"41702145","MP TAVERNA","4","31-29","DITMARS BOULEVARD","11105","7187772187","38","2013-05-23 00:00:00","F","10D","49","","","2013-09-13 01:01:06.177000000" +"41702145","MP TAVERNA","4","31-29","DITMARS BOULEVARD","11105","7187772187","38","2013-05-23 00:00:00","F","10E","49","","","2013-09-13 01:01:06.177000000" +"41702361","VINE","1","2955","BROADWAY","10025","2122223568","49","2013-01-17 00:00:00","F","02B","30","","","2013-09-13 01:01:06.177000000" +"41702361","VINE","1","2955","BROADWAY","10025","2122223568","49","2013-08-20 00:00:00","F","02G","32","","","2013-09-13 01:01:06.177000000" +"41702601","KOSHER YAMA SUSHI","4","81-63 ","LEFFERTS BOULEVARD ","11415","7188801750","49","2013-02-07 00:00:00","F","06C","24","","","2013-09-13 01:01:06.177000000" +"41702877","THE LOOP","1","173","3 AVENUE","10003","2125891200","49","2013-03-05 00:00:00","F","04J","45","","","2013-09-13 01:01:06.177000000" +"41702877","THE LOOP","1","173","3 AVENUE","10003","2125891200","49","2013-03-05 00:00:00","F","06D","45","","","2013-09-13 01:01:06.177000000" +"41702880","RAKU II ITS JAPANESE","1","57","WEST 76 STREET","10023","2128731220","49","2013-02-26 00:00:00","F","04K","23","","","2013-09-13 01:01:06.177000000" +"41703229","SAKE BAR SATSKO","1","202","EAST 7 STREET","10009","2126140933","49","2013-03-26 00:00:00","F","06D","26","","","2013-09-13 01:01:06.177000000" +"41703235","CHEZ SARDINE","1","183","WEST 10 STREET","10014","6463603705","49","2013-03-05 00:00:00","F","08A","28","","","2013-09-13 01:01:06.177000000" +"41703235","CHEZ SARDINE","1","183","WEST 10 STREET","10014","6463603705","49","2013-08-21 00:00:00","F","06E","31","","","2013-09-13 01:01:06.177000000" +"41703557","PP BOY JAPAN","4","90-22","161 STREET","11432","7185232726","49","2013-01-04 00:00:00","E","05D","40","","","2013-09-13 01:01:06.177000000" +"41704068","HANJAN","1","36","WEST 26 STREET","10010","2122067226","52","2013-04-10 00:00:00","F","06B","49","","","2013-09-13 01:01:06.177000000" +"41704068","HANJAN","1","36","WEST 26 STREET","10010","2122067226","52","2013-04-10 00:00:00","F","10B","49","","","2013-09-13 01:01:06.177000000" +"41704231","MIYAKO","3","143 ","BERRY STREET ","11249","7184860837","49","2013-03-20 00:00:00","F","16B","","","","2013-09-13 01:01:06.177000000" +"41704282","FUKUROU","1","87","MACDOUGAL STREET","10012","2123880013","49","2013-04-23 00:00:00","P","06F","18","","","2013-09-13 01:01:06.177000000" +"41704805","OISHI SUSHI RESTAURANT","3","929","MANHATTAN AVENUE","11222","7183498988","49","2013-02-06 00:00:00","P","04C","14","","","2013-09-13 01:01:06.177000000" +"41705732","BentOn Cafe","1","156","EAST 45 STREET","10017","2129229788","49","2013-03-15 00:00:00","F","02B","25","","","2013-09-13 01:01:06.177000000" +"41705988","KURA","1","130","ST MARKS PLACE","10009","2122281010","49","2013-05-08 00:00:00","F","06F","27","","","2013-09-13 01:01:06.177000000" +"41706496","AQUAMARINE 38","1","250 ","EAST 39 STREET ","10016","2122971800","49","2013-04-15 00:00:00","F","04L","13","","","2013-09-13 01:01:06.177000000" +"41706510","SUSHI TIME","1","821","2 AVENUE","10017","2128838983","49","2013-02-19 00:00:00","F","08A","56","","","2013-09-13 01:01:06.177000000" +"41709347","AMBER","1","381","3 AVENUE","10016","2126866388","49","2013-03-14 00:00:00","P","06C","27","","","2013-09-13 01:01:06.177000000" +"41711559","OSHIMA","3","71 ","7 AVENUE ","11217","7187831888","49","2013-05-02 00:00:00","U","08A","19","","","2013-09-13 01:01:06.177000000" +"41713670","WASABI LOBBY JAPANESE RESTAURANT","1","1584","2 AVENUE","10028","2129888882","49","2013-08-21 00:00:00","F","04L","35","","","2013-09-13 01:01:06.177000000" +"41713670","WASABI LOBBY JAPANESE RESTAURANT","1","1584","2 AVENUE","10028","2129888882","49","2013-08-21 00:00:00","F","09C","35","","","2013-09-13 01:01:06.177000000" +"41714186","BALLI DELI & SALAD BAR","3","2616","OCEAN PARKWAY","11235","7186462822","03","2013-08-01 00:00:00","G","08A","49","","","2013-09-13 01:01:06.177000000" +"41716209","AJISAI","1","795 ","LEXINGTON AVENUE ","10065","2123550888","49","2013-03-21 00:00:00","P","06A","21","","","2013-09-13 01:01:06.177000000" +"41716209","AJISAI","1","795 ","LEXINGTON AVENUE ","10065","2123550888","49","2013-03-21 00:00:00","P","10B","21","","","2013-09-13 01:01:06.177000000" +"41716209","AJISAI","1","795 ","LEXINGTON AVENUE ","10065","2123550888","49","2013-05-28 00:00:00","B","","","","","2013-09-13 01:01:06.177000000" +"41716350","FUKI SUSHI","3","8509","18 AVENUE","11214","7188378885","49","2013-06-03 00:00:00","P","03B","25","","","2013-09-13 01:01:06.177000000" +"41716350","FUKI SUSHI","3","8509","18 AVENUE","11214","7188378885","49","2013-06-03 00:00:00","P","06D","25","","","2013-09-13 01:01:06.177000000" +"41716444","TOTTO RAMEN","1","366","WEST 52 STREET","10019","2125820052","49","2013-06-25 00:00:00","G","02G","70","","","2013-09-13 01:01:06.177000000" +"41716841","CHO CHO SAN JAPANESE RESTAURANT INC","4","39-11","QUEENS BOULEVARD","11104","7183618232","49","2013-04-11 00:00:00","F","04L","38","","","2013-09-13 01:01:06.177000000" +"41716978","52ND SUSHI","4","52-21","ROOSEVELT AVENUE","11377","7185079204","49","2013-05-02 00:00:00","P","06B","20","","","2013-09-13 01:01:06.177000000" +"41717504","TAKI SUSHI","1","60","WEST 48 STREET","10036","2128322288","49","2013-04-16 00:00:00","U","08A","19","","","2013-09-13 01:01:06.177000000" +"41719609","KOTO SUSHI","3","67 1/2","6 AVENUE","11220","7182303881","49","2013-04-25 00:00:00","P","06A","19","","","2013-09-13 01:01:06.177000000" +"41720720","SABOR DEL AUSTRO RESTAURANT","4","580 ","SENECA AVENUE ","11385","7184176100","77","2013-05-30 00:00:00","F","02H","49","","","2013-09-13 01:01:06.177000000" +"41720720","SABOR DEL AUSTRO RESTAURANT","4","580 ","SENECA AVENUE ","11385","7184176100","77","2013-05-30 00:00:00","F","06F","49","","","2013-09-13 01:01:06.177000000" +"41721159","SAKURA JAPANESE CUISINE","4","35-15","DITMARS BOULEVARD","11105","7187772188","49","2013-07-24 00:00:00","P","10B","22","","","2013-09-13 01:01:06.177000000" +"41722947","TANKO JAPANESE FUSION","4","3805 ","BELL BOULEVARD ","11361","7186311188","49","2013-06-10 00:00:00","P","06C","25","","","2013-09-13 01:01:06.177000000" +"41722947","TANKO JAPANESE FUSION","4","3805 ","BELL BOULEVARD ","11361","7186311188","49","2013-06-10 00:00:00","P","10F","25","","","2013-09-13 01:01:06.177000000" +"50000055","BANKOK CUISINE","4","107-18","70 ROAD","11375","7182614005","82","2013-06-03 00:00:00","F","04L","49","","","2013-09-13 01:01:06.177000000" +"50000055","BANKOK CUISINE","4","107-18","70 ROAD","11375","7182614005","82","2013-06-03 00:00:00","F","10D","49","","","2013-09-13 01:01:06.177000000" +"50000111","YOSHI NEW YORK","1","131","AVENUE A","10009","__________","49","2013-04-29 00:00:00","P","06D","20","","","2013-09-13 01:01:06.177000000" +"50000112","YASHA RAMAN","1","940","AMSTERDAM AVENUE","10025","9173192100","49","2013-09-04 00:00:00","P","02G","22","","","2013-09-13 01:01:06.177000000" +"50000254","MOGU SUSHI","4","133-22 ","39 AVENUE ","11354","9172515853","49","2013-07-12 00:00:00","P","10H","20","","","2013-09-13 01:01:06.177000000" +"50000736","GREENBAY SUSHI","1","1659","1 AVENUE","10028","2123482878","49","2013-08-06 00:00:00","F","06E","31","","","2013-09-13 01:01:06.177000000" +"50000806","NEW NAGOYA","2","5786","MOSHOLU AVENUE","10471","7184328886","49","2013-07-20 00:00:00","F","02B","22","","","2013-09-13 01:01:06.177000000" +"50000980","KASUMI","3","1870","86 STREET","11214","7189756999","49","2013-08-31 00:00:00","P","02B","26","","","2013-09-13 01:01:06.177000000" +"50001010","DRAGON I CHINESE RESTAURANT","4","111-03","LEFFERTS BOULEVARD","11420","7188456180","20","2013-06-11 00:00:00","F","08A","49","","","2013-09-13 01:01:06.177000000" +"50001035","ABECA SUSHI","1","121 ","EAST 27 STREET ","10016","2122139888","49","2013-08-19 00:00:00","P","04C","27","","","2013-09-13 01:01:06.177000000" +"50001203","AKI SUSHI","1","212","EAST 52 STREET","10022","2128938266","49","2013-07-17 00:00:00","F","10F","59","","","2013-09-13 01:01:06.177000000" +"50001203","AKI SUSHI","1","212","EAST 52 STREET","10022","2128938266","49","2013-08-28 00:00:00","U","04M","21","","","2013-09-13 01:01:06.177000000" +"50001203","AKI SUSHI","1","212","EAST 52 STREET","10022","2128938266","49","2013-08-28 00:00:00","U","10F","21","","","2013-09-13 01:01:06.177000000" +"50001217","sushi shop","1","31","WEST 52 STREET","10019","2128405555","49","2013-08-06 00:00:00","P","04H","23","","","2013-09-13 01:01:06.177000000" +"50001484","TOYAMA CUISINE","3","6001","7 AVENUE","11220","7185678877","49","2013-09-07 00:00:00","F","02B","35","","","2013-09-13 01:01:06.177000000" +"50001495","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2013-08-20 00:00:00","P","04J","23","","","2013-09-13 01:01:06.177000000" +"50001495","BAMBOO SUSHI","1","1280","1 AVENUE","10065","2123961919","49","2013-08-20 00:00:00","P","06D","23","","","2013-09-13 01:01:06.177000000" +"50001531","HANE SUSHI","1","346","1 AVENUE","10009","2125989889","49","2013-08-26 00:00:00","P","06A","18","","","2013-09-13 01:01:06.177000000" +"40914495","SUSHI EXCELLENT ASIAN FUSION & LOUNGE","5","366","NEW DORP LANE","10306","7186675362","49","2011-01-04 00:00:00","B","","0","A","2011-01-04 00:00:00","2013-09-13 01:01:13.757000000" +"41581902","YAMADA JAPANESE RESTAURANT","2","3811","EAST TREMONT AVENUE","10465","7184093528","49","2013-08-14 00:00:00","B","","0","","","2013-09-13 01:01:13.757000000" +"40561171","SHIMA","1","188","2 AVENUE","10003","2122606303","49","2012-12-06 00:00:00","B","","","","","2013-09-13 01:01:13.757000000" +"41249648","TOMI JAZZ","1","239","EAST 53 STREET","10022","6464971254","49","2013-04-09 00:00:00","B","","0","","","2013-09-13 01:01:13.757000000" diff --git a/Lesson1_restaurants/data/original data/Action.txt b/Lesson1_restaurants/data/original data/Action.txt new file mode 100755 index 0000000..bc893f8 --- /dev/null +++ b/Lesson1_restaurants/data/original data/Action.txt @@ -0,0 +1,79 @@ +"STARTDATE","ENDDATE","ACTIONCODE","ACTIONDESC" +"1901-01-01 00:00:00","2002-12-31 00:00:00","A ","" +"2003-01-01 00:00:00","2010-07-18 00:00:00","A ","" +"2010-07-19 00:00:00","2099-12-31 00:00:00","A ","" +"1901-01-01 00:00:00","2002-12-31 00:00:00","B ","No violations were recorded at the time of this inspection." +"2003-01-01 00:00:00","2010-07-18 00:00:00","B ","No violations were recorded at the time of this inspection." +"2010-07-19 00:00:00","2099-12-31 00:00:00","B ","No violations were recorded at the time of this inspection." +"1901-01-01 00:00:00","2002-12-31 00:00:00","C ","No violations were recorded at the time of this inspection." +"2003-01-01 00:00:00","2010-07-18 00:00:00","C ","No violations were recorded at the time of this inspection." +"2010-07-19 00:00:00","2099-12-31 00:00:00","C ","Violations were cited in the following area(s)." +"1901-01-01 00:00:00","2002-12-31 00:00:00","D ","Violations were cited in the following area(s)." +"2003-01-01 00:00:00","2010-07-18 00:00:00","D ","Violations were cited in the following area(s)." +"2010-07-19 00:00:00","2099-12-31 00:00:00","D ","Violations were cited in the following area(s)." +"1901-01-01 00:00:00","2002-12-31 00:00:00","E ","Violations were cited in the following area(s)." +"2003-01-01 00:00:00","2010-07-18 00:00:00","E ","Violations were cited in the following area(s)." +"2010-07-19 00:00:00","2099-12-31 00:00:00","E ","Violations were cited in the following area(s)." +"1901-01-01 00:00:00","2002-12-31 00:00:00","F ","Violations were cited in the following area(s)." +"2003-01-01 00:00:00","2010-07-18 00:00:00","F ","Violations were cited in the following area(s)." +"2010-07-19 00:00:00","2099-12-31 00:00:00","F ","Violations were cited in the following area(s)." +"1901-01-01 00:00:00","2002-12-31 00:00:00","G ","Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed." +"2003-01-01 00:00:00","2010-07-18 00:00:00","G ","Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed." +"2010-07-19 00:00:00","2099-12-31 00:00:00","G ","Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed." +"1901-01-01 00:00:00","2002-12-31 00:00:00","H ","" +"2003-01-01 00:00:00","2010-07-18 00:00:00","H ","" +"2010-07-19 00:00:00","2099-12-31 00:00:00","H ","" +"1901-01-01 00:00:00","2002-12-31 00:00:00","I ","" +"2003-01-01 00:00:00","2010-07-18 00:00:00","I ","" +"2010-07-19 00:00:00","2099-12-31 00:00:00","I ","" +"1901-01-01 00:00:00","2002-12-31 00:00:00","J ","" +"2003-01-01 00:00:00","2010-07-18 00:00:00","J ","" +"2010-07-19 00:00:00","2099-12-31 00:00:00","J ","" +"1901-01-01 00:00:00","2002-12-31 00:00:00","K ","" +"2003-01-01 00:00:00","2010-07-18 00:00:00","K ","" +"2010-07-19 00:00:00","2099-12-31 00:00:00","K ","" +"1901-01-01 00:00:00","2002-12-31 00:00:00","L ","" +"2003-01-01 00:00:00","2010-07-18 00:00:00","L ","" +"2010-07-19 00:00:00","2099-12-31 00:00:00","L ","" +"1901-01-01 00:00:00","2002-12-31 00:00:00","M ","" +"2003-01-01 00:00:00","2010-07-18 00:00:00","M ","" +"2010-07-19 00:00:00","2099-12-31 00:00:00","M ","" +"1901-01-01 00:00:00","2002-12-31 00:00:00","N ","" +"2003-01-01 00:00:00","2010-07-18 00:00:00","N ","" +"2010-07-19 00:00:00","2099-12-31 00:00:00","N ","" +"1901-01-01 00:00:00","2002-12-31 00:00:00","O ","Establishment re-opened by DOHMH" +"2003-01-01 00:00:00","2010-07-18 00:00:00","O ","Establishment re-opened by DOHMH" +"2010-07-19 00:00:00","2099-12-31 00:00:00","O ","Establishment re-opened by DOHMH" +"1901-01-01 00:00:00","2002-12-31 00:00:00","P ","Establishment padlocked by DOHMH" +"2003-01-01 00:00:00","2010-07-18 00:00:00","P ","Establishment padlocked by DOHMH" +"2010-07-19 00:00:00","2099-12-31 00:00:00","P ","Violations were cited in the following area(s)." +"1901-01-01 00:00:00","2002-12-31 00:00:00","Q ","" +"2003-01-01 00:00:00","2010-07-18 00:00:00","Q ","" +"2010-07-19 00:00:00","2099-12-31 00:00:00","Q ","" +"1901-01-01 00:00:00","2002-12-31 00:00:00","R ","" +"2003-01-01 00:00:00","2010-07-18 00:00:00","R ","" +"2010-07-19 00:00:00","2099-12-31 00:00:00","R ","" +"1901-01-01 00:00:00","2002-12-31 00:00:00","S ","Violations were cited in the following area(s)." +"2003-01-01 00:00:00","2010-07-18 00:00:00","S ","Violations were cited in the following area(s)." +"2010-07-19 00:00:00","2099-12-31 00:00:00","S ","Violations were cited in the following area(s)." +"1901-01-01 00:00:00","2002-12-31 00:00:00","T ","Violations were cited in the following area(s)." +"2003-01-01 00:00:00","2010-07-18 00:00:00","T ","Violations were cited in the following area(s)." +"2010-07-19 00:00:00","2099-12-31 00:00:00","T ","Violations were cited in the following area(s)." +"1901-01-01 00:00:00","2002-12-31 00:00:00","U ","Violations were cited in the following area(s)." +"2003-01-01 00:00:00","2010-07-18 00:00:00","U ","Violations were cited in the following area(s)." +"2010-07-19 00:00:00","2099-12-31 00:00:00","U ","Violations were cited in the following area(s)." +"1901-01-01 00:00:00","2002-12-31 00:00:00","V ","" +"2003-01-01 00:00:00","2010-07-18 00:00:00","V ","" +"2010-07-19 00:00:00","2099-12-31 00:00:00","V ","" +"1901-01-01 00:00:00","2002-12-31 00:00:00","W ","Establishment re-closed by DOHMH" +"2003-01-01 00:00:00","2010-07-18 00:00:00","W ","Establishment re-closed by DOHMH" +"2010-07-19 00:00:00","2099-12-31 00:00:00","W ","Establishment re-closed by DOHMH" +"1901-01-01 00:00:00","2002-12-31 00:00:00","X ","" +"2003-01-01 00:00:00","2010-07-18 00:00:00","X ","" +"2010-07-19 00:00:00","2099-12-31 00:00:00","X ","" +"1901-01-01 00:00:00","2002-12-31 00:00:00","Y ","" +"2003-01-01 00:00:00","2010-07-18 00:00:00","Y ","" +"2010-07-19 00:00:00","2099-12-31 00:00:00","Y ","" +"1901-01-01 00:00:00","2002-12-31 00:00:00","Z ","" +"2003-01-01 00:00:00","2010-07-18 00:00:00","Z ","" +"2010-07-19 00:00:00","2099-12-31 00:00:00","Z ","" diff --git a/Lesson1_restaurants/data/original data/Cuisine.txt b/Lesson1_restaurants/data/original data/Cuisine.txt new file mode 100755 index 0000000..bb63c8a --- /dev/null +++ b/Lesson1_restaurants/data/original data/Cuisine.txt @@ -0,0 +1,86 @@ +"CUISINECODE","CODEDESC" +"02","African" +"03","American " +"05","Asian" +"15","Cajun" +"17","Caribbean" +"20","Chinese" +"30","Eastern European" +"31","Egyptian" +"35","French" +"37","German" +"38","Greek" +"44","Indian" +"45","Indonesian" +"48","Italian" +"49","Japanese" +"50","Jewish/Kosher" +"52","Korean" +"53","Latin (Cuban, Dominican, Puerto Rican, South & Central American)" +"54","Mediterranean" +"55","Mexican" +"56","Middle Eastern" +"67","Russian" +"76","Southwestern" +"82","Thai" +"99","Other" +"01","Afghan" +"04","Armenian" +"06","Australian" +"07","Bagels/Pretzels" +"08","Bakery" +"09","Bangladeshi" +"10","Barbecue" +"11","Basque" +"12","Bottled beverages, including water, sodas, juices, etc." +"13","Brazilian" +"14","Café/Coffee/Tea" +"16","Californian" +"18","Chicken" +"19","Chilean" +"21","Chinese/Cuban" +"22","Chinese/Japanese" +"23","Continental" +"24","Creole" +"25","Creole/Cajun" +"26","Czech" +"27","Delicatessen" +"28","Vietnamese/Cambodian/Malaysia" +"29","Donuts" +"32","English" +"33","Ethiopian" +"34","Filipino" +"36","Fruits/Vegetables" +"39","Hamburgers" +"40","Hawaiian" +"41","Hotdogs" +"42","Hotdogs/Pretzels" +"43","Ice Cream, Gelato, Yogurt, Ices" +"46","Iranian" +"47","Irish" +"51","Juice, Smoothies, Fruit Salads" +"57","Moroccan" +"58","Nuts/Confectionary" +"59","Pakistani" +"60","Pancakes/Waffles" +"61","Peruvian" +"62","Pizza" +"63","Pizza/Italian" +"64","Polish" +"65","Polynesian" +"66","Portuguese" +"68","Salads" +"69","Sandwiches" +"70","Sandwiches/Salads/Mixed Buffet" +"71","Scandinavian" +"72","Seafood" +"73","Soul Food" +"74","Soups" +"75","Soups & Sandwiches" +"77","Spanish" +"78","Steak" +"80","Tapas" +"81","Tex-Mex" +"83","Turkish" +"84","Vegetarian" +"00","Not Listed/Not Applicable" diff --git a/Lesson1_restaurants/data/original data/RI_Webextract_BigApps_Latest.xls b/Lesson1_restaurants/data/original data/RI_Webextract_BigApps_Latest.xls new file mode 100755 index 0000000..75606da Binary files /dev/null and b/Lesson1_restaurants/data/original data/RI_Webextract_BigApps_Latest.xls differ diff --git a/Lesson1_restaurants/data/original data/Violation.txt b/Lesson1_restaurants/data/original data/Violation.txt new file mode 100755 index 0000000..59526aa --- /dev/null +++ b/Lesson1_restaurants/data/original data/Violation.txt @@ -0,0 +1,720 @@ +"STARTDATE","ENDDATE","CRITICALFLAG","VIOLATIONCODE","VIOLATIONDESC" +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","01A","Current valid permit , registration or other authorization to operate establishment not available." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","01A","Current valid permit , registration or other authorization to operate establishment not available." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","01A","Current valid permit , registration or other authorization to operate establishment not available." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","01A","Current valid permit, registration or other authorization to operate establishment not available. Violations points are not assessed for Smoke Free Air Act, trans fat, calorie posting or permit and poster violations." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","01A","Current valid permit, registration or other authorization to operate establishment not available. Violations points are not assessed for Smoke Free Air Act, trans fat, calorie posting or permit and poster violations." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","01B","Current valid permit, registration or other authorization to operate Temporary Food Service Establishment is not available." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","01B","Document issued by the Board, Commissioner or Department unlawfully reproduced or altered." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","01B","Document issued by the Board, Commissioner or Department unlawfully reproduced or altered." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","01B","Document issued by the Board, Commissioner or Department unlawfully reproduced or altered." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","01B","Document issued by the Board, Commissioner or Department unlawfully reproduced or altered." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","01C","Food Protection Certificate not held by supervisor of food operations." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","01C","Notice of the Department or Board mutilated, obstructed, or removed." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","01C","Notice of the department or Board mutilated, obstructed, or removed." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","01C","Notice of the department or Board mutilated, obstructed, or removed." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","01C","Notice of the department or Board mutilated, obstructed, or removed." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","01D","Current valid'food vendor license not available." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","01D","Failure to comply with an Order of the Board, Commissioner or Department." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","01D","Failure to comply with an Order of the Board, Commissioner or Department." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","01D","Failure to comply with an Order of the Board, Commissioner or Department." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","01D","Failure to comply with an Order of the Board, Commissioner or Department." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","01E","Document issued by the Board, Commissioner or Department unlawfully reproduced or altered." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","01E","Duties of an officer of the Department interfered with or obstructed." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","01E","Duties of an officer of the Department interfered with or obstructed." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","01E","Duties of an officer of the Department interfered with or obstructed." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","01E","Duties of an officer of the Department interfered with or obstructed." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","01F","Notice of the Department or Board mutilated, obstructed, or removed." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","01F","Failure to report occurrences of suspected food borne illness to the Department." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","01F","Failure to report occurrences of suspected food borne illness to the Department." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","01F","Failure to report occurrences of suspected food borne illness to the Department." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","01F","Failure to report occurrences of suspected food borne illness to the Department." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","01G","Failure to comply with an Order of the Board, Commissioner or Department." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","01H","Duties of an officer of the Department interfered with or obstructed." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","01I"," Nuisance created or allowed to exist. Facility not free from unsafe, hazardous, offensive or annoying condition." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","02A","Food not cooked to required minimum temperature." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","02A","Food not cooked to required minimum temperature." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","02A","Food not cooked to required minimum temperature." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","02A","Food not cooked to required minimum temperature." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","02A","Food not cooked to required minimum temperature." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","02A","Food not cooked to required minimum temperature." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","02A","Food not cooked to required minimum temperature." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","02B","Hot food not held at or above 140°F." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","02B","Hot food not held at or above 140°F." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","02B","Hot food not held at or above 140°F." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","02B","Hot food not held at or above 140°F." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","02B","Hot food not held at or above 140°F." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","02B","Hot food not held at or above 140°F." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","02B","Hot food item not held at or above 140º F." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","02C","Hot food that has been cooked and refrigerated is being held for service without first being reheated to 165°F or above within 2 hours." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","02C","Hot food that has been cooked and refrigerated is being held for service without first being reheated to 165°F or above within 2 hours." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","02C","Hot food that has been cooked and refrigerated is being held for service without first being reheated to 165°F or above within 2 hours." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","02C","Hot food that has been cooked and refrigerated is being held for service without first being reheated to 165°F or above within 2 hours." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","02C","Hot food that has been cooked and refrigerated is being held for service without first being reheated to 165°F or above within 2 hours." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","02C","Hot food that has been cooked and refrigerated is being held for service without first being reheated to 165°F or above within 2 hours." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","02C","Hot food item that has been cooked and refrigerated is being held for service without first being reheated to 1 65º F or above within 2 hours." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","02D","Precooked potentially hazardous food from commercial food processing establishment that is to be heated, is not heated to 140°F within 2 hours." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","02D","Precooked potentially hazardous food from commercial food processing establishment that is to be heated, is not heated to 140°F within 2 hours." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","02D","Precooked potentially hazardous food from commercial food processing establishment that is to be heated, is not heated to 140°F within 2 hours." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","02D","Precooked potentially hazardous food from commercial food processing establishment that is to be heated, is not heated to 140°F within 2 hours." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","02D","Precooked potentially hazardous food from commercial food processing establishment that is to be heated, is not heated to 140°F within 2 hours." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","02D","Precooked potentially hazardous food from commercial food processing establishment that is to be heated, is not heated to 140°F within 2 hours." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","02D","Precooked potentially hazardous food from commercial food processing establishment that is supposed to be heated, but is not heated to 140º F within 2 hours." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","02E","Whole frozen poultry or poultry breasts, other than a single portion, are being cooked frozen or partially thawed." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","02E","Whole frozen poultry or poultry breasts, other than a single portion, are being cooked frozen or partially thawed." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","02E","Whole frozen poultry or poultry breasts, other than a single portion, are being cooked frozen or partially thawed." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","02E","Whole frozen poultry or poultry breasts, other than a single portion, are being cooked frozen or partially thawed." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","02E","Whole frozen poultry or poultry breasts, other than a single portion, are being cooked frozen or partially thawed." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","02E","Whole frozen poultry or poultry breasts, other than a single portion, are being cooked frozen or partially thawed." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","02E","Whole frozen poultry or poultry breasts, other than a single portion, is being cooked frozen or partially thawed." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","02F","Meat, fish or molluscan shellfish served raw or undercooked without prior notification to customer." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","02F","Meat, fish or molluscan shellfish served raw or undercooked without prior notification to customer." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","02F","Meat, fish or molluscan shellfish served raw or undercooked without prior notification to customer." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","02F","Meat, fish or molluscan shellfish served raw or undercooked without prior notification to customer." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","02F","Meat, fish or molluscan shellfish served raw or undercooked without prior notification to customer." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","02F","Meat, fish or molluscan shellfish served raw or undercooked without prior notification to customer." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","02F","Meat, fish or molluscan shellfish served raw or undercooked without prior notification to customer." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","02G","Cold food held above 41°F (smoked fish above 38°F) except during necessary preparation." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","02G","Cold food held above 41°F (smoked fish above 38°F) except during necessary preparation." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","02G","Cold food held above 41°F (smoked fish above 38°F) except during necessary preparation." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","02G","Cold food held above 41°F (smoked fish above 38°F) except during necessary preparation." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","02G","Cold food held above 41°F (smoked fish above 38°F) except during necessary preparation." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","02G","Cold food item held above 41º F (smoked fish and reduced oxygen packaged foods above 38 ºF) except during necessary preparation." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","02H","Food not cooled by an approved method whereby the internal product temperature is reduced from 140°F to 70°F or less within 2 hours and from 70°F to 41°F or less within 4 additional hours." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","02H","Food not cooled by an approved method whereby the internal product temperature is reduced from 140°F to 70°F or less within 2 hours and from 70°F to 45°F or less within 4 additional hours." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","02H","Food not cooled by an approved method whereby the internal product temperature is reduced from 140°F to 70°F or less within 2 hours and from 70°F to 45°F or less within 4 additional hours." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","02H","Food not cooled by an approved method whereby the internal product temperature is reduced from 140°F to 70°F or less within 2 hours and from 70°F to 45°F or less within 4 additional hours." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","02H","Food not cooled by an approved method whereby the internal product temperature is reduced from 140°F to 70°F or less within 2 hours and from 70°F to 45°F or less within 4 additional hours." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","02H","Food not cooled by an approved method whereby the internal product temperature is reduced from 140º F to 70º F or less within 2 hours, and from 70º F to 41º F or less within 4 additional hours." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","02I","Food prepared from ingredients at ambient temperature not cooled to 41°F or below within 4 hours." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","02I","Food prepared from ingredients at ambient temperature not cooled to 41°F or below within 4 hours." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","02I","Food prepared from ingredients at ambient temperature not cooled to 41°F or below within 4 hours." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","02I","Food prepared from ingredients at ambient temperature not cooled to 41°F or below within 4 hours." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","02I","Food prepared from ingredients at ambient temperature not cooled to 41°F or below within 4 hours." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","02I","Food prepared from ingredients at ambient temperature not cooled to 41º F or below within 4 hours." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","02J","ROP processed food not colled by an approved method whereby core temperature is reduced to 38°F within 2 hours of cooking, and where required, to 34°F within 6 hours of reaching 38°F." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","02J","Reduced oxygen packaged (ROP) foods not cooled by an approved method whereby the internal food temperature is reduced to 38º F within two hours of cooking and if necessary further cooled to a temperature of 34º F within six hours of reaching 38º F." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","03A","Cold food held above 45°F (smoked fish above 38°F) except during necessary preparation." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","03A","Food from unapproved or unknown source, spoiled, adulterated, or home canned." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","03A","Food from unapproved or unknown source, spoiled, adulterated, or home canned." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","03A","Food from unapproved or unknown source, spoiled, adulterated, or home canned." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","03A","Food from unapproved or unknown source, spoiled, adulterated, or home canned." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","03A","Food from unapproved or unknown source, spoiled, adulterated, or home canned." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","03A","Food from unapproved or unknown source or home canned. Reduced oxygen packaged (ROP) fish not frozen before processing; or ROP foods prepared on premises transported to another site." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","03B","Food not cooled by an approved method whereby the internal product temperature is reduced from 140°F to 70°F or less within 2 hours and from 70°F to 45°F or less within 4 additional hours." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","03B","Shellfish not from approved source, improperly tagged/labeled; tags not retained for 90 days." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","03B","Shellfish not from approved source, improperly tagged/labeled; tags not retained for 90 days." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","03B","Shellfish not from approved source, improperly tagged/labeled; tags not retained for 90 days." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","03B","Shellfish not from approved source, improperly tagged/labeled; tags not retained for 90 days." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","03B","Shellfish not from approved source, improperly tagged/labeled; tags not retained for 90 days." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","03B","Shellfish not from approved source, improperly tagged/labeled; tags not retained for 90 days." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","03C","Food prepared from ingredients at ambient temperature not cooled to 45°F or below within 4 hours." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","03C","Eggs found dirty, cracked; liquid, frozen or powdered eggs not pasteurized." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","03C","Eggs found dirty, cracked; liquid, frozen or powdered eggs not pasteurized." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","03C","Eggs found dirty, cracked; liquid, frozen or powdered eggs not pasteurized." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","03C","Eggs found dirty, cracked; liquid, frozen or powdered eggs not pasteurized." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","03C","Eggs found dirty, cracked; liquid, frozen or powdered eggs not pasteurized." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","03C","Eggs found dirty/cracked; liquid, frozen or powdered eggs not pasteurized." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","03D","Canned food product observed swollen, leaking, rusted, severely dented." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","03D","Canned food product observed swollen, leaking, and rusted." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","03D","Canned food product observed swollen, leaking, and rusted." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","03D","Canned food product observed swollen, leaking, and rusted." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","03D","Canned food product observed swollen, leaking, and rusted." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","03D","Canned food product observed swollen, leaking or rusted, and not segregated from other consumable food items ." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","03E","Potable water supply inadequate. Water or ice not potable or from unapproved source. Cross connection in potable water supply system observed." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","03E","Potable water supply inadequate. Water or ice not potable or from unapproved source. Cross connection in potable water supply system observed." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","03E","Potable water system inadequate. Water or ice not potable or from unapproved source. Cross connection in potable water supply system observed." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","03E","Potable water system inadequate. Water or ice not potable or from unapproved source. Cross connection in potable water supply system observed." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","03E","Potable water system inadequate. Water or ice not potable or from unapproved source. Cross connection in potable water supply system observed." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","03E","Potable water supply inadequate. Water or ice not potable or from unapproved source. Cross connection in potable water supply system observed." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","03F","Unpasteurized milk or milk product present." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","03F","Unpasteurized milk or milk product present." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","03F","Unpasteurized milk or milk product present." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","03F","Unpasteurized milk or milk product present." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","03F","Unpasteurized milk or milk product present." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","03F","Unpasteurized milk or milk product present." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","03G","Milk or milk product undated, improperly dated or expired." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","03G","Raw food not properly washed prior to serving." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","03G","Raw food not properly washed prior to serving." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","03G","Raw food not properly washed prior to serving." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","03G","Raw food not properly washed prior to serving." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","03G","Raw food not properly washed prior to serving." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","03H","Raw food not properly washed prior to serving." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","04A","Food from unapproved or unknown source, spoiled, adulterated, or home canned." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","04A","Food Protection Certificate not held by supervisor of food operations." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","04A","Food Protection Certificate not held by supervisor of food operations." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","04A","Food Protection Certificate not held by supervisor of food operations." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","04A","Food Protection Certificate not held by supervisor of food operations." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","04A","Food Protection Certificate not held by supervisor of food operations." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","04A","Food Protection Certificate not held by supervisor of food operations." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","04B","Shellfish not from approved source, improperly tagged/labeled; tags not retained for 90 days." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","04B","Food worker prepares food or handles utensil when ill with a disease transmissible by food, or have exposed infected cut or burn on their hand." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","04B","Food worker prepares food or handles utensil when ill with a disease transmissible by food, or have exposed infected cut or burn on their hand." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","04B","Food worker prepares food or handles utensil when ill with a disease transmissible by food, or have exposed infected cut or burn on their hand." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","04B","Food worker prepares food or handles utensil when ill with a disease transmissible by food, or have exposed infected cut or burn on their hand." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","04B","Food worker prepares food or handles utensil when ill with a disease transmissible by food, or have exposed infected cut or burn on their hand." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","04B","Food worker prepares food or handles utensil when ill with a disease transmissible by food, or have exposed infected cut or burn on hand." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","04C","Eggs found dirty, cracked; liquid, frozen or powdered eggs not pasteurized." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","04C","Food worker does not use proper utensil to eliminate bare hand contact with food that will not receive adequate additional heat treatment." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","04C","Food worker does not use proper utensil to eliminate bare hand contact with food that will not receive adequate additional heat treatment." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","04C","Food worker does not use proper utensil to eliminate bare hand contact with food that will not receive adequate additional heat treatment." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","04C","Food worker does not use proper utensil to eliminate bare hand contact with food that will not receive adequate additional heat treatment." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","04C","Food worker does not use proper utensil to eliminate bare hand contact with food that will not receive adequate additional heat treatment." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","04C","Food worker does not use proper utensil to eliminate bare hand contact with food that will not receive adequate additional heat treatment." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","04D","Canned food product observed swollen, leaking, rusted, severely dented." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","04D","Food worker does not wash hands thoroughly after visiting the toilet, coughing, sneezing, smoking, preparing raw foods or otherwise contaminating hands." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","04D","Food worker does not wash hands thoroughly after visiting the toilet, coughing, sneezing, smoking, preparing raw foods or otherwise contaminating hands." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","04D","Food worker does not wash hands thoroughly after visiting the toilet, coughing, sneezing, smoking, preparing raw foods or otherwise contaminating hands." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","04D","Food worker does not wash hands thoroughly after visiting the toilet, coughing, sneezing, smoking, preparing raw foods or otherwise contaminating hands." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","04D","Food worker does not wash hands thoroughly after visiting the toilet, coughing, sneezing, smoking, preparing raw foods or otherwise contaminating hands." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","04D","Food worker does not wash hands thoroughly after using the toilet, coughing, sneezing, smoking, eating, preparing raw foods or otherwise contaminating hands." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","04E","Potable water supply inadequate. Water or ice not potable or from unapproved source. Cross connection in potable water supply system observed." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","04E","Toxic chemical improperly labeled, stored or used so that contamination of food may occur." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","04E","Toxic chemical improperly labeled, stored or used so that contamination of food may occur." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","04E","Toxic chemical improperly labeled, stored or used so that contamination of food may occur." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","04E","Toxic chemical improperly labeled, stored or used so that contamination of food may occur." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","04E","Toxic chemical improperly labeled, stored or used so that contamination of food may occur." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","04E","Toxic chemical improperly labeled, stored or used such that food contamination may occur." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","04F","Unpasteurized milk or milk product present." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","04F","Food, food preparation area, food storage area, area used by employees or patrons, contaminated by sewage or liquid waste." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","04F","Food, food preparation area, food storage area, area used by employees or patrons, contaminated by sewage or liquid waste." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","04F","Food, food preparation area, food storage area, area used by employees or patrons, contaminated by sewage or liquid waste." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","04F","Food, food preparation area, food storage area, area used by employees or patrons, contaminated by sewage or liquid waste." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","04F","Food, food preparation area, food storage area, area used by employees or patrons, contaminated by sewage or liquid waste." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","04F","Food, food preparation area, food storage area, area used by employees or patrons, contaminated by sewage or liquid waste." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","04G","Milk or milk product undated, improperly dated or expired." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","04G","Unprotected potentially hazardous food re-served." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","04G","Unprotected potentially hazardous food re-served." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","04G","Unprotected potentially hazardous food re-served." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","04G","Unprotected potentially hazardous food re-served." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","04G","Unprotected potentially hazardous food re-served." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","04G","Unprotected potentially hazardous food re-served." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","04H","Food in contact with utensil, container, or pipe that consist of toxic material." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","04H","Food in contact with utensil, container, or pipe that consist of toxic material." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","04H","Food in contact with utensil, container, or pipe that consist of toxic material." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","04H","Food in contact with utensil, container, or pipe that consist of toxic material." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","04H","Food in contact with utensil, container, or pipe that consist of toxic material." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","04H","Raw, cooked or prepared food is adulterated, contaminated, cross-contaminated, or not discarded in accordance with HACCP plan." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","04I","Cooked or prepared food is cross-contaminated." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","04I","Cooked or prepared food is cross-contaminated." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","04I","Food item spoiled, adulterated, contaminated or cross-contaminated." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","04I","Food item spoiled, adulterated, contaminated or cross-contaminated." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","04I","Food item spoiled, adulterated, contaminated or cross-contaminated." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","04I","Unprotected food re-served." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","04J","Unprotected food re-served." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","04J","Unprotected food re-served." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","04J","Unprotected food re-served." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","04J","Unprotected food re-served." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","04J","Unprotected food re-served." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","04J","Appropriately scaled metal stem-type thermometer or thermocouple not provided or used to evaluate temperatures of potentially hazardous foods during cooking, cooling, reheating and holding." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","04K","Thawing procedures improper." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","04K","Appropriately scaled metal stem-type thermometer not provided or used to evaluate temperatures of potentially hazardous foods during cooking, cooling, reheating and holding." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","04K","Appropriately scaled metal stem-type thermometer not provided or used to evaluate temperatures of potentially hazardous foods during cooking, cooling, reheating and holding." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","04K","Appropriately scaled metal stem-type thermometer not provided or used to evaluate temperatures of potentially hazardous foods during cooking, cooling, reheating and holding." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","04K","Appropriately scaled metal stem-type thermometer not provided or used to evaluate temperatures of potentially hazardous foods during cooking, cooling, reheating and holding." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","04K","Evidence of rats or live rats present in facility's food and/or non-food areas." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","04L","Appropriately scaled metal stem-type thermometer not provided or used to evaluate temperatures of potentially hazardous foods during cooking, cooling, reheating and holding." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","04L","Evidence of rats or live rats present in facility's food and/or non-food areas." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","04L","Evidence of rats or live rats present in facility's food and/or non-food areas." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","04L","Evidence of rats or live rats present in facility's food and/or non-food areas." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","04L","Evidence of mice or live mice present in facility's food and/or non-food areas." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","04L","Evidence of mice or live mice present in facility's food and/or non-food areas." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","04M","Evidence of rats or live rats present in facility." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","04M","Evidence of mice or live mice present in facility's food and/or non-food areas." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","04M","Evidence of mice or live mice present in facility's food and/or non-food areas." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","04M","Evidence of mice or live mice present in facility's food and/or non-food areas." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","04M","Evidence of mice or live mice present in facility's food and/or non-food areas." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","04M","Live roaches present in facility's food and/or non-food areas." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","04N","Evidence of mice or live mice present in facility." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","04N","Evidence of roaches or live roaches present in facility's food and/or non-food areas." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","04N","Evidence of roaches or live roaches present in facility's food and/or non-food areas." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","04N","Evidence of roaches or live roaches present in facility's food and/or non-food areas." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","04N","Evidence of roaches or live roaches present in facility's food and/or non-food areas." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","04N","Filth flies or food/refuse/sewage-associated (FRSA) flies present in facility’s food and/or non-food areas. Filth flies include house flies, little house flies, blow flies, bottle flies and flesh flies. Food/refuse/sewage-associated flies include fruit flies, drain flies and Phorid flies." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","04O","Evidence of roaches or live roaches present in facility." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","04O","Evidence of flying insects or live flying insects present in facility's food and/or non-food areas." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","04O","Evidence of flying insects or live flying insects present in facility's food and/or non-food areas." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","04O","Evidence of flying insects or live flying insects present in facility's food and/or non-food areas." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","04O","Evidence of flying insects or live flying insects present in facility's food and/or non-food areas." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","04O","Live animals other than fish in tank or service animal present in facility's food and/or non-food areas." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","04P","Evidence of, or live flies/other insects present in facility." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","04P","Other live animal present in facility's food and/or non-food areas." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","04P","Other live animal present in facility's food and/or non-food areas." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","04P","Other live animal present in facility's food and/or non-food areas." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","04P","Other live animal present in facility's food and/or non-food areas." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","04Q","Live animal present in facility." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","05A","Food worker prepares food or handles utensil when ill with a disease transmissible by food, or have exposed infected cut or burn on their hand." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","05A","Sewage disposal system improper or unapproved." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","05A","Sewage disposal system improper or unapproved." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","05A","Sewage disposal system improper or unapproved." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","05A","Sewage disposal system improper or unapproved." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","05A","Sewage disposal system improper or unapproved." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","05A","Sewage disposal system improper or unapproved." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","05B","Food worker does not use proper utensil to eliminate bare hand contact with food that will not receive adequate additional heat treatment." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","05B","Harmful, noxious gas or vapor detected. Carbon Monoxide ≥ 13 ppm." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","05B","Harmful, noxious gas or vapor detected. CO > 13 ppm." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","05B","Harmful, noxious gas or vapor detected. CO > 13 ppm." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","05B","Harmful, noxious gas or vapor detected. CO > 13 ppm." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","05B","Harmful, noxious gas or vapor detected. CO > 13 ppm." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","05B","Harmful, noxious gas or vapor detected. CO ~1 3 ppm." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","05C","Food worker does not wash hands thoroughly after visiting the toilet, coughing, sneezing, smoking, preparing raw foods or otherwise contaminating hands." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","05C","Food contact surface improperly constructed or located. Unacceptable material used." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","05C","Food contact surface improperly constructed or located. Unacceptable material used." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","05C","Food contact surface improperly constructed or located. Unacceptable material used." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","05C","Food contact surface improperly constructed or located. Unacceptable material used." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","05C","Food contact surface improperly constructed or located. Unacceptable material used." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","05C","Food contact surface improperly constructed or located. Unacceptable material used." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","05D","Hand washing facility not provided in or near food preparation area and toilet room. Hot and cold running water at adequate pressure not provided at facility. Soap and an acceptable hand-drying device not provided." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","05D","Hand washing facility not provided in or near food preparation area and toilet room. Hot and cold running water at adequate pressure not provided at facility. Soap and an acceptable hand-drying device not provided." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","05D","Hand washing facility not provided in or near food preparation area and toilet room. Hot and cold running water at adequate pressure not provided at facility. Soap and an acceptable hand-drying device not provided." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","05D","Hand washing facility not provided in or near food preparation area and toilet room. Hot and cold running water at adequate pressure not provided at facility. Soap and an acceptable hand-drying device not provided." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","05D","Hand washing facility not provided in or near food preparation area and toilet room. Hot and cold running water at adequate pressure not provided at facility. Soap and an acceptable hand-drying device not provided." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","05D","Hand washing facility not provided in or near food preparation area and toilet room. Hot and cold running water at adequate pressure to enable cleanliness of employees not provided at facility. Soap and an acceptable hand-drying device not provided." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","05E","Toilet facility not provided for employees or for patrons when required." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","05E","Toilet facility not provided for employees or for patrons when required." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","05E","Toilet facility not provided for employees or for patrons when required." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","05E","Toilet facility not provided for employees or for patrons when required." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","05E","Toilet facility not provided for employees or for patrons when required." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","05E","Toilet facility not provided for employees or for patrons when required." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","05F","Refrigerated or hot holding equipment to keep potentially hazardous foods at required temperatures not provided." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","05F","Refrigerated or hot holding equipment to keep potentially hazardous foods at required temperatures not provided." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","05F","Refrigerated or hot holding equipment to keep potentially hazardous foods at required temperatures not provided." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","05F","Refrigerated or hot holding equipment to keep potentially hazardous foods at required temperatures not provided." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","05F","Refrigerated or hot holding equipment to keep potentially hazardous foods at required temperatures not provided." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","05F","Insufficient or no refrigerated or hot holding equipment to keep potentially hazardous foods at required temperatures." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","05G","Sufficient refrigerated or hot holding equipment not provided to meet proper time and temperature requirements for potentially hazardous foods." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","05G","Sufficient refrigerated or hot holding equipment not provided to meet proper time and temperature requirements for potentially hazardous foods." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","05G","Sufficient refrigerated or hot holding equipment not provided to meet proper time and temperature requirements for potentially hazardous foods." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","05G","Sufficient refrigerated or hot holding equipment not provided to meet proper time and temperature requirements for potentially hazardous foods." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","05G","Sufficient refrigerated or hot holding equipment not provided to meet proper time and temperature requirements for potentially hazardous foods." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","05G","Properly enclosed service/maintenance area not provided." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","05H","Properly enclosed service/maintenance area not provided." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","05H","Properly enclosed service/maintenance area not provided." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","05H","Properly enclosed service/maintenance area not provided." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","05H","Properly enclosed service/maintenance area not provided." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","05H","Properly enclosed service/maintenance area not provided." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","05H","No facilities available to wash, rinse and sanitize utensils and/or equipment." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","05I","Nuisance created or allowed to exist. Facility not free from unsafe, hazardous, offensive or annoying condition." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","05I","No facility available to wash, rinse, and sanitize utensils and/or equipment not provided." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","05I","No facility available to wash, rinse, and sanitize utensils and/or equipment not provided." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","05I","No facility available to wash, rinse, and sanitize utensils and/or equipment not provided." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","05I","No facility available to wash, rinse, and sanitize utensils and/or equipment not provided." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","05I","Refrigeration used to implement HACCP plan not equipped with an electronic system that continuously monitors time and temperature." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","05J","Nuisance created or allowed to exist. Facility not free from unsafe, hazardous, offensive or annoying condition." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","05J","Nuisance created or allowed to exist. Facility not free from unsafe, hazardous, offensive or annoying condition." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","05J","Nuisance created or allowed to exist. Facility not free from unsafe, hazardous, offensive or annoying condition." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","05J","Nuisance created or allowed to exist. Facility not free from unsafe, hazardous, offensive or annoying condition." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","06A","Toxic chemical improperly labeled, stored or used so that contamination of food may occur." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","06A","Personal cleanliness inadequate. Clean outer garments, effective hair restraint not worn." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","06A","Personal cleanliness inadequate. Clean outer garments, effective hair restraint not worn." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","06A","Personal cleanliness inadequate. Clean outer garments, effective hair restraint not worn." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","06A","Personal cleanliness inadequate. Clean outer garments, effective hair restraint not worn." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","06A","Personal cleanliness inadequate. Clean outer garments, effective hair restraint not worn." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","06A","Personal cleanliness inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn in an area where food is prepared." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","06B","Food, food preparation area, food storage area, area used by employees or patrons, contaminated by sewage or liquid waste." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","06B","Tobacco use, eating, drinking in food preparation, food storage or dishwashing area observed." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","06B","Tobacco use, eating, drinking in food preparation, food storage or dishwashing area observed." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","06B","Tobacco use, eating, drinking in food preparation, food storage or dishwashing area observed." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","06B","Tobacco use, eating, drinking in food preparation, food storage or dishwashing area observed." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","06B","Tobacco use, eating, drinking in food preparation, food storage or dishwashing area observed." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","06B","Tobacco use, eating, or drinking from open container in food preparation, food storage or dishwashing area observed." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","06C","Unprotected potentially hazardous food re-served." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","06C","Food not protected from potential source of contamination during storage, preparation, transportation, display or service." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","06C","Food not protected from potential source of contamination during storage, preparation, transportation, display or service." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","06C","Food not protected from potential source of contamination during storage, preparation, transportation, display or service." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","06C","Food not protected from potential source of contamination during storage, preparation, transportation, display or service." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","06C","Food not protected from potential source of contamination during storage, preparation, transportation, display or service." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","06C","Food not protected from potential source of contamination during storage, preparation, transportation, display or service." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","06D","Food in contact with utensil, container, or pipe that consist of toxic material." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","06D","Food contact surface not properly maintained or not washed, rinsed and sanitized after each use and following any activity when contamination may have occurred" +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","06D","Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","06D","Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","06D","Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","06D","Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","06D","Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","06E","Cooked or prepared food is cross contaminated." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","06E","Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","06E","Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","06E","Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","06E","Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","06E","Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","06E","Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","06F","Appropriately scaled metal stem-type thermometer not provided or used to evaluate temperatures of potentially hazardous foods during cooking, cooling, reheating and holding." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","06F","Wiping cloths dirty or not stored in sanitizing solution." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","06F","Wiping cloths dirty or not stored in sanitizing solution." +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","06F","Wiping cloths dirty or not stored in sanitizing solution." +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","06F","Wiping cloths dirty or not stored in sanitizing solution." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","06F","Wiping cloths dirty or not stored in sanitizing solution." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","06F","Wiping cloths soiled or not stored in sanitizing solution." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","06G","Live animal present in food storage, preparation or service area. Citation may include and is not limited to cockroaches, flies, mice, rats, cats, and dogs." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","06G","Acceptable facilities to wash rinse and sanitize utensils not provided." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","06G","HACCP plan not approved and/or approved plan not on premises" +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","06G","HACCP plan not approved or approved HACCP plan not maintained on premises." +"2003-03-24 00:00:00","2005-02-17 00:00:00","Y","06H","Detail not available in this format." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","06H","Records and logs not maintained to demonstrate proper implementation of HACCP plan." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","06H","Records and logs not maintained to demonstrate that HACCP plan has been properly implemented." +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","06I","Food not labelled in accordance with HACCP plan." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","06I","Food not labeled in accordance with HACCP plan." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","07A","Sewage disposal system improper or unapproved." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","07A","Facility not vermin proof. Harborage or conditions conducive to vermin exist." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","07A","Administration other" +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","07A","Administration other" +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","07A","Administration other" +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","07A","Interference with or obstruction of duties of an officer of the department." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","07A","Duties of an officer of the Department interfered with or obstructed." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","07B","Harmful, noxious gas or vapor detected. CO ≥ 13 ppm." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","07B","Garbage receptacles not provided or inadequate. Garbage storage area not properly constructed or maintained; grinder or compactor dirty." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","07B","Food Temperature" +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","07B","Food Temperature" +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","07B","Food Temperature" +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","07B","Food Temperature" +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","07C","Food contact surface improperly constructed or located. Unacceptable material used." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","07C","Pesticide use not in accordance with label or applicable laws. Prohibited chemical used/stored. Open bait station used." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","07C","Food Source" +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","07C","Food Source" +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","07C","Food Source" +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","07C","Food Source" +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","07D","Hand washing facility not provided in or near food preparation area and toilet room. Hot and cold running water at adequate pressure not provided at facility." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","07D","Food Protection" +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","07D","Food Protection" +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","07D","Food Protection" +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","07D","Food Protection" +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","07E","Toilet facility not provided for employees or for patrons when required." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","07E","Facility Design" +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","07E","Facility Design" +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","07E","Facility Design" +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","07E","Facility Design" +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","07F","Refrigerated or hot holding equipment to keep potentially hazardous foods at required temperatures not provided." +"2005-02-18 00:00:00","2007-06-30 00:00:00","Y","07F","Personal Hygiene and other food protection" +"2007-07-01 00:00:00","2008-06-30 00:00:00","Y","07F","Personal Hygiene and other food protection" +"2008-07-01 00:00:00","2009-08-01 00:00:00","Y","07F","Personal Hygiene and other food protection" +"2009-08-02 00:00:00","2010-07-25 00:00:00","Y","07F","Personal Hygiene" +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","07G","Sufficient refrigerated or hot holding equipment not provided to meet proper time and temperature requirements for potentially hazardous foods." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","07H","Dimensions of mobile food unit exceed prescribed limits." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","07I","Nuisance created or allowed to exist. Facility not free from unsafe, hazardous, offensive or annoying condition." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","08A","Personal cleanliness inadequate. Clean outer garment, effective hair restraint not worn." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","08A","Toilet facility not maintained and provided with toilet paper, waste receptacle and self-closing door." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","08A","Facility not vermin proof. Harborage or conditions conducive to vermin exist." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","08A","Facility not vermin proof. Harborage or conditions conducive to vermin exist." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","08A","Facility not vermin proof. Harborage or conditions conducive to vermin exist." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","08A","Facility not vermin proof. Harborage or conditions conducive to vermin exist." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","08A","Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","08B","Tobacco use, eating, drinking in food preparation, food storage or dishwashing area observed." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","08B","Plumbing not properly installed or maintained; anti-siphonage or backflow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","08B","Garbage receptacles not provided or inadequate. Garbage storage area not properly constructed or maintained; grinder or compactor dirty." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","08B","Garbage receptacles not provided or inadequate. Garbage storage area not properly constructed or maintained; grinder or compactor dirty." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","08B","Garbage receptacles not provided or inadequate. Garbage storage area not properly constructed or maintained; grinder or compactor dirty." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","08B","Garbage receptacles not provided or inadequate. Garbage storage area not properly constructed or maintained; grinder or compactor dirty." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","08B","Covered garbage receptacle not provided or inadequate, except that garbage receptacle may be uncovered during active use. Garbage storage area not properly constructed or maintained; grinder or compactor dirty." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","08C","Hand wash facility not properly maintained, provided with soap and an acceptable hand-drying device." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","08C","Lighting inadequate. Fixture not shielded." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","08C","Pesticide use not in accordance with label or applicable laws. Prohibited chemical used/stored. Open bait station used." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","08C","Pesticide use not in accordance with label or applicable laws. Prohibited chemical used/stored. Open bait station used." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","08C","Pesticide use not in accordance with label or applicable laws. Prohibited chemical used/stored. Open bait station used." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","08C","Pesticide use not in accordance with label or applicable laws. Prohibited chemical used/stored. Open bait station used." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","08C","Pesticide use not in accordance with label or applicable laws. Prohibited chemical used/stored. Open bait station used." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","08D","Ventilation system not provided, improperly installed or in disrepair." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","08E","Accurate thermometer not provided in refrigerated or hot holding equipment." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","08F","Equipment not easily movable or sealed to floor, adjoining equipment, adjacent walls or ceiling. Aisle or workspace inadequate." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","08G","Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","08H","Food service operation occurring in room used as living or sleeping quarters." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","08I","Minimum final rinse temperature of 170°F or proper chemical and temperature levels not maintained in manual utensil washing operation." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","08J","Mechanical dishwasher not operated as per manufacturer's specifications (time/temperature/chemical concentration); machine defective." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","08K","Immersion basket not provided, used or of incorrect size. Incorrect manual technique. Test kit and thermometer not provided or used. Improper drying practices." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","08L","Single service item reused, improperly stored, dispensed; not used when required." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","08M","Detail not available in this format." +"1901-01-01 00:00:00","2003-03-23 00:00:00","Y","09A","Raw food not properly washed prior to serving." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","09A","Permit not conspicuously displayed." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","09A","Canned food product observed severely dented." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","09A","Canned food product observed severely dented." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","09A","Canned food product observed severely dented." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","09A","Canned food product observed severely dented." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","09A","Canned food product observed dented and not segregated from other consumable food items." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","09B","Thawing procedures improper." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","09B","Manufacture of frozen dessert not authorized on Food Service Establishment permit." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","09B","Milk or milk product undated, improperly dated or expired." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","09B","Milk or milk product undated, improperly dated or expired." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","09B","Milk or milk product undated, improperly dated or expired." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","09B","Milk or milk product undated, improperly dated or expired." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","09B","Thawing procedures improper." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","09C","Food not protected from potential source of contamination during storage, preparation, transportation, display or service." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","09C","Failure of event sponsor to exclude vendor without a current valid permit or registration." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","09C","Thawing procedures improper." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","09C","Thawing procedures improper." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","09C","Thawing procedures improper." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","09C","Thawing procedures improper." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","09C","Food contact surface not properly maintained." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","09D","Food contact surface not properly maintained or not washed, rinsed and sanitized after each use and following any activity when contamination may have occurred." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","09D",""Choking first aid" poster not posted." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","09D","Food contact surface not properly maintained." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","09D","Food contact surface not properly maintained." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","09D","Food contact surface not properly maintained." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","09D","Food contact surface not properly maintained." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","09E","Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","09E",""Alcohol and pregnancy" warning sign not posted." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","09F","Wiping cloths dirty or not stored in sanitizing solution." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","09F",""Wash hands" sign not posted at hand wash facility." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","09G","Acceptable facilities to wash rinse and sanitize utensils not provided." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","09G","Resuscitation equipment: exhaled air resuscitation masks (adult & pediatric), latex gloves, sign not posted." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","09H","Unprotected food re-served." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","09H","Inspection report sign not posted." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","10A","Vermin or other live animal present in non-food area." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","10A","Toilet facility not maintained and provided with toilet paper, waste receptacle and self-closing door." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","10A","Toilet facility not maintained and provided with toilet paper, waste receptacle and self-closing door." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","10A","Toilet facility not maintained and provided with toilet paper, waste receptacle and self-closing door." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","10A","Toilet facility not maintained and provided with toilet paper, waste receptacle and self-closing door." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","10A","Toilet facility not maintained and provided with toilet paper, waste receptacle and self-closing door." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","10B","Facility not vermin proof. Harborage or conditions conducive to vermin exist." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","10B","Plumbing not properly installed or maintained; anti-siphonage or backflow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","10B","Plumbing not properly installed or maintained; anti-siphonage or backflow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","10B","Plumbing not properly installed or maintained; anti-siphonage or backflow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","10B","Plumbing not properly installed or maintained; anti-siphonage or backflow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","10B","Plumbing not properly installed or maintained; anti-siphonage or backflow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","10C","Garbage receptacles not provided or inadequate. Garbage storage area not properly constructed or maintained; grinder or compactor dirty." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","10C","Lighting inadequate. Fixture not shielded." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","10C","Lighting inadequate. Bulb not shielded or shatterproof." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","10C","Lighting inadequate. Bulb not shielded or shatterproof." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","10C","Lighting inadequate. Bulb not shielded or shatterproof." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","10C","Lighting inadequate; permanent lighting not provided in food preparation areas, ware washing areas, and storage rooms." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","10D","Pesticide use not in accordance with label or applicable laws. Prohibited chemical used/stored. Open bait station used." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","10D","Ventilation system not provided, improperly installed or in disrepair." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","10D","Ventilation system not provided, improperly installed or in disrepair." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","10D","Ventilation system not provided, improperly installed or in disrepair." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","10D","Ventilation system not provided, improperly installed or in disrepair." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","10D","Mechanical or natural ventilation system not provided, improperly installed, in disrepair and/or fails to prevent excessive build-up of grease, heat, steam condensation vapors, odors, smoke, and fumes." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","10E","Accurate thermometer not provided in refrigerated or hot holding equipment." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","10E","Accurate thermometer not provided in refrigerated or hot holding equipment." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","10E","Accurate thermometer not provided in refrigerated or hot holding equipment." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","10E","Accurate thermometer not provided in refrigerated or hot holding equipment." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","10E","Accurate thermometer not provided in refrigerated or hot holding equipment." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","10F","Equipment not easily movable or sealed to floor, adjoining equipment, adjacent walls or ceiling. Aisle or workspace inadequate." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","10F","Equipment not easily movable or sealed to floor, adjoining equipment, adjacent walls or ceiling. Aisle or workspace inadequate." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","10F","Equipment not easily movable or sealed to floor, adjoining equipment, adjacent walls or ceiling. Aisle or workspace inadequate." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","10F","Equipment not easily movable or sealed to floor, adjoining equipment, adjacent walls or ceiling. Aisle or workspace inadequate." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","10F","Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","10G","Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","10G","Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","10G","Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","10G","Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","10G","Food service operation occurring in room used as living or sleeping quarters." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","10H","Food service operation occurring in room used as living or sleeping quarters." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","10H","Food service operation occurring in room used as living or sleeping quarters." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","10H","Food service operation occurring in room used as living or sleeping quarters." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","10H","Food service operation occurring in room used as living or sleeping quarters." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","10H","Proper sanitization not provided for utensil ware washing operation." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","10I","Minimum final rinse temperature of 170°F or proper chemical and temperature levels not maintained in manual utensil washing operation." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","10I","Minimum final rinse temperature of 170°F or proper chemical and temperature levels not maintained in manual utensil washing operation." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","10I","Minimum final rinse temperature of 170°F or proper chemical and temperature levels not maintained in manual utensil washing operation." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","10I","Minimum final rinse temperature of 170°F or proper chemical and temperature levels not maintained in manual utensil washing operation." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","10I","Single service item reused, improperly stored, dispensed; not used when required." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","10J","Mechanical dishwasher not operated as per manufacturer's specifications (time/temperature/chemical concentration); machine defective." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","10J","Mechanical dishwasher not operated as per manufacturer's specifications (time/temperature/chemical concentration); machine defective." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","10J","Mechanical dishwasher not operated as per manufacturer's specifications (time/temperature/chemical concentration); machine defective." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","10J","Mechanical dishwasher not operated as per manufacturer's specifications (time/temperature/chemical concentration); machine defective." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","10J","""Wash hands” sign not posted at hand wash facility." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","10K","Immersion basket not provided, used or of incorrect size. Incorrect manual technique. Test kit and thermometer not provided or used. Improper drying practices." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","10K","Immersion basket not provided, used or of incorrect size. Incorrect manual technique. Test kit and thermometer not provided or used. Improper drying practices." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","10K","Immersion basket not provided, used or of incorrect size. Incorrect manual technique. Test kit and thermometer not provided or used. Improper drying practices." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","10K","Immersion basket not provided, used or of incorrect size. Incorrect manual technique. Test kit and thermometer not provided or used. Improper drying practices." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","10L","Single service item reused, improperly stored, dispensed; not used when required." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","10L","Single service item reused, improperly stored, dispensed; not used when required." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","10L","Single service item reused, improperly stored, dispensed; not used when required." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","10L","Single service item reused, improperly stored, dispensed; not used when required." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","10M",""Wash Hands" sign not posted at hand wash facility" +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","11A","Permit or license not conspicuously displayed." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","11A","Permit not conspicuously displayed." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","11A","Permit not conspicuously displayed." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","11A","Permit not conspicuously displayed." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","11B","Manufacture of frozen dessert not authorized on Food Service Establishment permit." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","11B","Manufacture of frozen dessert not authorized on Food Service Establishment permit." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","11B","Manufacture of frozen dessert not authorized on Food Service Establishment permit." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","11B","Manufacture of frozen dessert not authorized on Food Service Establishment permit." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","11C","Failure of event sponsor to exclude vendor without a current valid permit or registration." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","11C","Failure of event sponsor to exclude vendor without a current valid permit or registration." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","11C","Failure of event sponsor to exclude vendor without a current valid permit or registration." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","11C","Failure of event sponsor to exclude vendor without a current valid permit or registration." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","11D",""Choking first aid" poster not posted."Alcohol and Pregnancy" Warning sign not posted. "Wash hands" sign not posted at hand wash facility. Resuscitation equipment: exhaled air resuscitation masks(adult & pediatric), latex gloves, sign not posted. Inspection report sign not posted." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","11D",""Choking first aid" poster not posted."Alcohol and Pregnancy" Warning sign not posted. "Wash hands" sign not posted at hand wash facility. Resuscitation equipment: exhaled air resuscitation masks(adult & pediatric), latex gloves, sign not posted. Inspection report sign not posted." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","11D",""Choking first aid" poster not posted."Alcohol and Pregnancy" Warning sign not posted. "Wash hands" sign not posted at hand wash facility. Resuscitation equipment: exhaled air resuscitation masks(adult & pediatric), latex gloves, sign not posted. Inspection report sign not posted." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","12A","Toilet facility not maintained and provided with toilet paper, waste receptacle and self-closing door." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","12A","General" +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","12A","Other general violation." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","12A","Other general violation." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","12A","ROP processing equipment not approved by DOHMH" +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","12B","Plumbing not properly installed or maintained; antisiphonage or backflow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","12C","Lighting inadequate. Fixture not shielded." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","12D","Ventilation system not provided, improperly installed or in disrepair." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","12E","Accurate thermometer not provided in refrigerated or hot holding equipment." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","12F","Equipment not easily movable or sealed to floor, adjoining equipment, adjacent walls or ceiling. Aisle or workspace inadequate." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","12G","Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","12H","Food service operation occurring in room used as living or sleeping quarters." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","13A","Minimum final rinse temperature of 170°F or proper chemical and temperature levels not maintained in manual utensil washing operation." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","13B","Mechanical dishwasher not operated as per manufacturer's specifications (time/temperature/chemical concentration); machine defective." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","13C","Immersion basket not provided, used or of incorrect size. Incorrect manual technique. Test kit and thermometer not provided or used. Improper drying practices." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","13D","Single service item reused, improperly stored, dispensed; not used when required." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","13E","Detail not available in this format." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","14A",""Choking first aid" poster not posted." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","14B",""Alcohol and pregnancy" warning sign not posted." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","14C",""Wash hands" sign not posted at hand wash facility." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","14D","Resuscitation equipment: exhaled air resuscitation masks (adult & pediatric), latex gloves, sign not posted." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","14E","Inspection report sign not posted." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","15A","Tobacco vending machine present where prohibited." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","15A","Tobacco vending machine present where prohibited." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","15A","Tobacco vending machine present where prohibited." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","15A","Tobacco vending machine present where prohibited." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","15A","Tobacco vending machine present where prohibited." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","15A","Tobacco vending machine present where prohibited." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","15A","Tobacco vending machine present where prohibited." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","15B","Tobacco vending machine placed less than 25' from entrance to premises." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","15B","Tobacco vending machine placed less than 25' from entrance to premises." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","15B","Tobacco vending machine place less than 25' from entrance to premises." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","15B","Tobacco vending machine place less than 25' from entrance to premises." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","15B","Tobacco vending machine place less than 25' from entrance to premises." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","15B","Tobacco vending machine placed less than 25 feet from entrance to premises." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","15B","Tobacco vending machine placed less than 25 feet from entrance to premises." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","15C","Tobacco vending machine not visible to the operator, employee or agent." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","15C","Tobacco vending machine not visible to the operator, employee or agent." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","15C","Tobacco vending machine not visible to the operator, employee or agent." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","15C","Tobacco vending machine not visible to the operator, employee or agent." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","15C","Tobacco vending machine not visible to the operator, employee or agent." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","15C","Tobacco vending machine not visible to the operator, employee or agent." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","15C","Tobacco vending machine not visible to the operator, employee or agent." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","15D","Durable sign with license number, expiration date, and address and phone number not posted." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","15D","Durable sign with license number, expiration date, and address and phone number not posted." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","15D","Durable sign with license number, expiration date, and address and phone number not posted." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","15D","Durable sign with license number, expiration date, and address and phone number not posted." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","15D","Durable sign with license number, expiration date, and address and phone number not posted." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","15D","Durable sign with license number, expiration date, and address and phone number not posted." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","15D","Durable sign with license number, expiration date, and address and phone number not posted." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","15E","Out-of package sale observed." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","15E","Out-of package sale observed." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","15E","Out-of package sale observed." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","15E","Out-of package sale observed." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","15E","Out-of package sale observed." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","15E","Out-of package sale of tabacco products observed." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","15E","Out-of package sale of tobacco products observed." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","15F","Age restriction on handling not enforced." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","15F","Age restriction on handling not enforced." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","15F","Age restriction on handling not enforced." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","15F","Age restriction on handling not enforced." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","15F","Age restriction on handling not enforced." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","15F","Employee under age of 18 selling tobacco products without direct supervision of an adult retail dealer or dealer" +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","15F","Employee under the age of 18 selling tobacco products without direct supervision of an adult retail dealer or dealer." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","15G","Sale to minor observed." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","15G","Sale to minor observed." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","15G","Sale to minor observed." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","15G","Sale to minor observed." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","15G","Sale to minor observed." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","15G","Sale to minor observed." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","15G","Sale to minor observed." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","15H","Sign prohibiting sale of tobacco products to minors not conspicuously posted." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","15H","Sign prohibiting sale of tobacco products to minors not conspicuously posted." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","15H","Sign prohibiting sale of tobacco products to minors not conspicuously posted." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","15H","Sign prohibiting sale of tobacco products to minors not conspicuously posted." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","15H","Sign prohibiting sale of tobacco products to minors not conspicuously posted." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","15H","Sign prohibiting sale of tobacco products to minors not conspicuously posted." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","15H","Sign prohibiting sale of tobacco products to minors not conspicuously posted." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","15I",""Smoking Permitted" and/or "No Smoking" sign not conspicuously posted. Health warning not present on "Smoking Permitted" sign." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","15I",""Smoking Permitted" and/or "No Smoking" sign not conspicuously posted. Health warning not present on "Smoking Permitted" sign." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","15I",""Smoking Permitted" and/or "No Smoking" sign not conspicuously posted. Health warning not present on "Smoking Permitted" sign." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","15I",""Smoking Permitted" and/or "No Smoking" sign not conspicuously posted. Health warning not present on "Smoking Permitted" sign." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","15I",""Smoking Permitted" and/or "No Smoking" sign not conspicuously posted. Health warning not present on "Smoking Permitted" sign." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","15I",""Smoking Permitted" and/or "No Smoking" sign not conspicuously posted. Health warning not present on "Smoking Permitted" sign." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","15I","""No Smoking” and/or 'Smoking Permitted” sign not conspicuously posted. Health warning not present on 'Smoking Permitted”" +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","15J","Ashtray present in smoke-free area." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","15J","Ashtray present in smoke-free area." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","15J","Ashtray present in smoke-free area." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","15J","Ashtray present in smoke-free area." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","15J","Ashtray present in smoke-free area." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","15J","Ashtray present in smoke-free area." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","15J","Ashtray present in smoke-free area." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","15K","Failure to make good faith effort to inform violator. Violations points are not assessed for Smoke Free Air Act, trans fat, calorie posting or permit and poster violations." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","15K","Failure to make good faith effort to inform violator. Violations points are not assessed for Smoke Free Air Act, trans fat, calorie posting or permit and poster violations." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","15K","Failure to make good faith effort to inform violator. Violations points are not assessed for Smoke Free Air Act, trans fat, calorie posting or permit and poster violations." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","15K","Failure to make good faith effort to inform violator. Violations points are not assessed for Smoke Free Air Act, trans fat, calorie posting or permit and poster violations." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","15K","Failure to make good faith effort to inform violator. Violations points are not assessed for Smoke Free Air Act, trans fat, calorie posting or permit and poster violations." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","15K","Operator failed to make good failth effort to inform smokers of the Smoke-Free Air Act prohibition of smoking." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","15K","Operator failed to make good faith effort to inform smokers of the Smoke-free Act prohibition of smoking." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","15L","Certificate of Seating Capacity not available." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","15L","Certificate of Seating Capacity not available." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","15L","Work place smoking policy inadequate, not posted, not provided." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","15L","Work place smoking policy inadequate, not posted, not provided." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","15L","Work place smoking policy inadequate, not posted, not provided." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","15L","Smoke free workplace smoking policy inadequate, not posted or provided to employees." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","15L","Smoke free workplace smoking policy inadequate, not posted, not provided to employees." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","15M","Use of tobacco product on school premises (at or below the 12th grade level) observed." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","15M","Use of tobacco product on school premises (at or below the 12th grade level) observed." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","15M","Use of tobacco product on school premises (at or below the 12th grade level) observed." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","15M","Use of tobacco product on school premises (at or below the 12th grade level) observed." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","15M","Use of tobacco product on school premises (at or below the 12th grade level) observed." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","15M","Use of tobacco product on school premises (at or below the 12th grade level) observed." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","15M","Use of tobacco product on school premises (at or below the 12th grade level) observed." +"1901-01-01 00:00:00","2003-03-23 00:00:00","N","15N","Detail not available in this format." +"2003-03-24 00:00:00","2005-02-17 00:00:00","N","15N","Detail not available in this format." +"2005-02-18 00:00:00","2007-06-30 00:00:00","N","15N","Other/Employee in separate smoking room." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","15N","Other/Employee in separate smoking room." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","15N","Other/Employee in separate smoking room." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","15N","Other." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","15N","Smoking permitted and/or allowed in smoking prohibited area under the operator’s control." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","15O","Sale of herbal cigarettes to minors observed." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","15O","Sale of herbal cigarettes to minors observed." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","15O","Sale of herbal cigarettes to minors observed." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","15O","Sale of herbal cigarettes to minors observed." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","15P","No tobacco health warning and smoking cessation sign(s) are posted." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","15Q","Tobacco health warning and smoking cessation sign(s) are obstructed and/or not prominently displayed." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","15R","No large tobacco health warning and smoking cessation sign is posted where tobacco products are displayed; small sign(s) are not posted at each register or place of payment." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","15S","Flavored tobacco products sold or offered for sale." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","15T","Original label for tobacco products sold or offered for sale." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","16A","A food containing artificial trans fat, with 0.5 grams or more of trans fact per serving, is being stored, distributed, held for service, used in preparation of a menu item, or served." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","16A","A food containing 0.5 grams or more of artificial trans fat per serving, is being served, stored, distributed, held for service, or used in preparation of a menu item." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","16A","A food containing 0.5 grams or more of artificial trans fat per serving, is being stored, distributed, held for service, used in preparation of a menu item or served." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","16A","A food containing artificial trans fat, with 0.5 grams or more of trans fat per serving, is being stored, distributed, held for service, used in preparation of a menu item, or served." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","16B","The original nutritional fact labels and/or ingredient label for a cooking oil, shortening or margarine or food item sold in bulk, or acceptable manufacturer's documentation not maintained on site." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","16B","The original nutritional fact labels and/or ingredient label for, or acceptable manufacturer's documentation for a product containing oil, shortening or margarine is not maintained on site." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","16B","The original nutritional fact labels and/or ingredient label for cooking oil, shortening or margarine or food item sold in bulk, or acceptable manufacturer's documentation not maintained on site." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","16B","The original nutritional fact labels and/or ingredient label for a cooking oil, shortening or margarine or food item sold in bulk, or acceptable manufacturer’s documentation not maintained on site." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","16C","Caloric content not posted on menus, menu boards or food tags." +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","16C","Caloric content not posted on menus, menu boards or food tags." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","16C","Caloric content not posted on menus, menu boards or food tags, in a food service establishment that is 1 of 15 or more outlets operating the same types of business nationally under common ownership or control, or as a franchise or doing business under the same name, for each menu item that is served in portions, the size and content of which are standardized." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","16C","Caloric content not posted on menus, menu boards or food tags, in a food service establishment that is 1 of 15 or more outlets operating the same type of business nationally under common ownership or control, or as a franchise or doing business under the same name, for each menu item that is served in portions, the size and content of which are standardized." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","16D","Posted caloric content on the menu(s), menu board(s), food tag(s) or stanchions" +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","16D","Posted caloric content on the menu(s), menu board(s), food tag(s) or stanchions" +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","16D","Posted caloric content on the menu(s), menu board(s), food tag(s) or stanchions adjacent to menu boards for drive-through windows deficient, in that the size and/or font for posted calories is not as prominent as the name of the menu item or its price." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","16D","Posted caloric content on the menu(s), menu board(s), food tag(s) or stanchions adjacent to menu boards for drive-through windows deficient, in that the size and/or font for posted calories is not as prominent as the name of the menu item or its price." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","16E","Caloric content range (minimum to maximum) not posted on menus and or menu" +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","16E","Caloric content range (minimum to maximum) not posted on menus and or menu" +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","16E","Caloric content range (minimum to maximum) not posted on menus, menu boards for each flavor, variety and size of each menu item that is offered for sale in different flavors, varieties and sizes." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","16E","Caloric content range (minimum to maximum) not posted on menus and or menu boards for each flavor, variety and size of each menu item that is offered for sale in different flavors, varieties and sizes." +"2007-07-01 00:00:00","2008-06-30 00:00:00","N","16F","Specific caloric content or range thereof not posted on menus, menu boards or" +"2008-07-01 00:00:00","2009-08-01 00:00:00","N","16F","Specific caloric content or range thereof not posted on menus, menu boards or" +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","16F","Specific caloric content or range thereof not posted on menus, menu boards or food tags for each menu item offered as a combination meal with multiple options that are listed as single items." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","16F","Specific caloric content or range thereof not posted on menus, menu boards or food tags for each menu item offered as a combination meal with multiple options that are listed as single items." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","18A","Current valid permit, registration or other authorization to operate establishment not available." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","18A","Current valid permit, registration or other authorization to operate establishment not available." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","18B","Document issued by the Board, Commissioner or Department unlawfully reproduced or altered." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","18B","Document issued by the Board of Health, Commissioner or Department unlawfully reproduced or altered." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","18C","Notice of the department or Board mutilated, obstructed, or removed." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","18C","Notice of the Department of Board of Health mutilated, obstructed, or removed." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","18D","Failure to comply with an Order of the Board, Commissioner or Department." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","18D","Failure to comply with an Order of the Board of Health, Commissioner, or Department." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","18E","Failure to report occurrences of suspected food borne illness to the Department." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","18E","Failure to report occurrences of suspected food borne illness to the Department." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","18F","Permit not conspicuously displayed." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","18F","Permit not conspicuously displayed." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","18G","Manufacture of frozen dessert not authorized on Food Service Establishment permit." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","18G","Manufacture of frozen dessert not authorized on Food Service Establishment permit." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","18H","Failure of event sponsor to exclude vendor without a current valid permit or registration." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","18H","Failure of event sponsor to exclude vendor without a current valid permit or registration." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","18I","Choking first aid poster not posted. Alcohol and Pregnancy warning sign, inspection report sign; not posted. CPR sign not posted, equipment (resuscitation masks, adult & pediatric, latex gloves) not provided." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","20A","Food allergy information poster not conspicuously posted where food is being prepared or processed by food workers." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","20B","Food allergy information poster not posted in language understood by all food workers." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","20C","Food allergy poster does not contain text provided or approved by Department." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","20D","“Choking first aid” poster not posted. “Alcohol and pregnancy” warning sign not posted. Resuscitation equipment: exhaled air resuscitation masks (adult & pediatric), latex gloves, sign not posted. Inspection report sign not posted." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","20E","Letter Grade or Grade Pending card not conspicuously posted and visible to passersby." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","20F","Current letter grade card not posted." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","22A","Nuisance created or allowed to exist. Facility not free from unsafe, hazardous, offensive or annoying conditions." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","22B","Toilet facility used by women does not have at least one covered garbage receptacle." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","22C","Bulb not shielded or shatterproof, in areas where there is extreme heat, temperature changes, or where accidental contact may occur." +"2010-07-26 00:00:00","2099-12-31 00:00:00","Y","22E","ROP processing equipment not approved by DOHMH." +"2009-08-02 00:00:00","2010-07-25 00:00:00","N","99B","Other general violation." +"2010-07-26 00:00:00","2099-12-31 00:00:00","N","99B","Other general violation." diff --git a/Lesson1_restaurants/parse faster.ipynb b/Lesson1_restaurants/parse faster.ipynb new file mode 100644 index 0000000..3ceecbc --- /dev/null +++ b/Lesson1_restaurants/parse faster.ipynb @@ -0,0 +1,196 @@ +{ + "metadata": { + "name": "" + }, + "nbformat": 3, + "nbformat_minor": 0, + "worksheets": [ + { + "cells": [ + { + "cell_type": "code", + "collapsed": false, + "input": [ + "f = open('data/original data/WebExtract.txt')\n", + "data = f.readlines()\n", + "f.close()" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 9 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "len(data)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 10, + "text": [ + "544064" + ] + } + ], + "prompt_number": 10 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "header_row = data[0]" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 11 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "data = list(set(data)) # this is a hack!\n", + "print len(data)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "544025\n" + ] + } + ], + "prompt_number": 12 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "print header_row" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "\"CAMIS\",\"DBA\",\"BORO\",\"BUILDING\",\"STREET\",\"ZIPCODE\",\"PHONE\",\"CUISINECODE\",\"INSPDATE\",\"ACTION\",\"VIOLCODE\",\"SCORE\",\"CURRENTGRADE\",\"GRADEDATE\",\"RECORDDATE\"\r\n", + "\n" + ] + } + ], + "prompt_number": 13 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "japanese_restaurants = []\n", + "for record in data:\n", + " if record.split(',')[7] == '\"49\"':\n", + " japanese_restaurants.append(record)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 16 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "len(japanese_restaurants)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 17, + "text": [ + "18130" + ] + } + ], + "prompt_number": 17 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "japanese_rest_scores = []\n", + "\n", + "for record in japanese_restaurants:\n", + " score_field = record.split(',')[11]\n", + " score = score_field.strip('\"') # get rid of of the double quotes\n", + " japanese_rest_scores.append(score)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 24 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "len(japanese_rest_scores)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 25, + "text": [ + "18130" + ] + } + ], + "prompt_number": 25 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "japanese_rest_scores[0:10]" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 26, + "text": [ + "['13', '10', '22', '10', '19', '34', '11', '13', '13', '10']" + ] + } + ], + "prompt_number": 26 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [], + "language": "python", + "metadata": {}, + "outputs": [] + } + ], + "metadata": {} + } + ] +} \ No newline at end of file diff --git a/Lesson2_scraping/citibike.py b/Lesson2_scraping/citibike.py new file mode 100755 index 0000000..ebb7dc5 --- /dev/null +++ b/Lesson2_scraping/citibike.py @@ -0,0 +1,5 @@ +import requests + +if __name__ == '__main__': + data = requests.get("https://citibikenyc.com/stations/json") + print data.text diff --git a/Lesson3_MarkovChains/Markov Chains and art.ipynb b/Lesson3_MarkovChains/Markov Chains and art.ipynb new file mode 100755 index 0000000..f014c5a --- /dev/null +++ b/Lesson3_MarkovChains/Markov Chains and art.ipynb @@ -0,0 +1,171 @@ +{ + "metadata": { + "name": "" + }, + "nbformat": 3, + "nbformat_minor": 0, + "worksheets": [ + { + "cells": [ + { + "cell_type": "heading", + "level": 2, + "metadata": {}, + "source": [ + "Markov Chains and art" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The [National Gallery of Art](http://www.nga.gov/content/ngaweb.html) puts thumbnails and descriptions of the works in their collection online. One could, theoretically, crawl these descriptions and process them." + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "import pickle\n", + "import random\n", + "\n", + "art = pickle.load(open('art.pickle'))" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 22 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The thumbnails are really interesting. Each one looks like this: \n", + "\n", + "...and you can play with them to end up with images like this one, which shows the average color of each thumbnail (where each square represents a unique work of art):\n", + "\n", + "" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "...and if you look at the descriptions, you might end up with a data structure like this:" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "print art[0]" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "{'name': 'Saint Paul', 'artist': 'Bernardo Daddi', 'material': 'tempera on panel', 'year': '1333', 'thumbnail': 'http://www.nga.gov:80/thumb-l/a000c6/a000c643.jpg', 'desc': 'The narrow shape and large size of this panel suggest it was meant to hang against a colossal pillar in a church. The original frame utilizes decorative motifs similar to those in the borders of Gothic illuminated manuscripts.\\n Saint Paul holds a book, recalling the Epistles he wrote. The sword he displays has several meanings: his early career as a Roman soldier; his position as defender of the Christian faith; and the instrument of his martyrdom by beheading. The great dignity of his erect figure and the monumental effect of the drapery correspond to his stern, direct gaze. His imposing presence implies that the painter Bernardo Daddi may have been a pupil of \\n A sweeter, gentler mood emanates from the small figures representing the donors who commissioned this painting. Although depictions of donors are not unusual in Gothic art, it is rare to find so many husbands and wives shown kneeling together. The couples are separated, just as men and women were while worshiping in church during the Middle Ages.\\n '}\n" + ] + } + ], + "prompt_number": 26 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The best kind of probabilistic mischief we can get up to with data like this is a structure called a Markov Chain." + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# only run this code if we haven't run it already (to save time)\n", + "try:\n", + " trigrams = pickle.load(open('trigrams.pickle'))\n", + "except IOError:\n", + " all_art = pickle.load(open('art.pickle'))\n", + "\n", + " text_data = ''\n", + " for art in all_art: # deconstruct the descriptions of the works of art\n", + " if art.get('desc',''):\n", + " text_data += art['desc'] # add all descriptions of art into one variable\n", + "\n", + " text = [w.lower() for w in text_data.split()] #break it apart\n", + " trigrams = []\n", + " for i in range(0, len(text)-2):\n", + " trigrams.append((text[i], text[i+1], text[i+2])) # build all trigrams\n", + "\n", + "random_seed = ' '.join(random.choice(trigrams))\n", + "print random_seed\n" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "with cézanne in\n" + ] + } + ], + "prompt_number": 27 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# build lookup table\n", + "lookup_table = {}\n", + "for w1, w2, w3 in trigrams:\n", + " lookup_table.setdefault((w1, w2), []).append(w3)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 14 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "#input_text = \"against this\"\n", + "input_text = random_seed # we need some text to start with!\n", + "max_len = 40 # [n] words, please\n", + "seed_word, next_word = input_text.split()[-2:]\n", + " \n", + "fake_art = []\n", + "for i in range(max_len): # for each word we need to generate...\n", + " fake_art.append(next_word) # append the next word\n", + " try: # pick a random choice from the lookup table\n", + " seed_word, next_word = next_word, random.choice(lookup_table[(seed_word, next_word)])\n", + " except KeyError:\n", + " seed_word, next_word = random.choice(lookup_table.keys()) # if there isn't anything\n", + " # ... pick something random\n", + " \n", + "fake_art.append(next_word)\n", + "print ' '.join(fake_art)\n" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "drawn with sketchy parallel strokes, probably with charcoal or black chalk. in the foreground, the draperylike framing, the clear, bright, color scheme, with its brilliant emerald green surface distinguish it from the innocence of childhood, to the fervid drama is the\n" + ] + } + ], + "prompt_number": 16 + } + ], + "metadata": {} + } + ] +} \ No newline at end of file diff --git a/Lesson3_MarkovChains/art.pickle b/Lesson3_MarkovChains/art.pickle new file mode 100755 index 0000000..689e5ac --- /dev/null +++ b/Lesson3_MarkovChains/art.pickle @@ -0,0 +1,1085307 @@ +(lp0 +(dp1 +S'name' +p2 +S'Saint Paul' +p3 +sS'artist' +p4 +S'Bernardo Daddi' +p5 +sS'material' +p6 +S'tempera on panel' +p7 +sS'year' +p8 +S'1333' +p9 +sS'thumbnail' +p10 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c643.jpg' +p11 +sS'desc' +p12 +S'The narrow shape and large size of this panel suggest it was meant to hang against a colossal pillar in a church. The original frame utilizes decorative motifs similar to those in the borders of Gothic illuminated manuscripts.\n Saint Paul holds a book, recalling the Epistles he wrote. The sword he displays has several meanings: his early career as a Roman soldier; his position as defender of the Christian faith; and the instrument of his martyrdom by beheading. The great dignity of his erect figure and the monumental effect of the drapery correspond to his stern, direct gaze. His imposing presence implies that the painter Bernardo Daddi may have been a pupil of \n A sweeter, gentler mood emanates from the small figures representing the donors who commissioned this painting. Although depictions of donors are not unusual in Gothic art, it is rare to find so many husbands and wives shown kneeling together. The couples are separated, just as men and women were while worshiping in church during the Middle Ages.\n ' +p13 +sa(dp14 +g2 +S'The Nativity with the Prophets Isaiah and Ezekiel' +p15 +sg4 +S'Duccio di Buoninsegna' +p16 +sg6 +S'tempera on single panel' +p17 +sg8 +S'1308/1311' +p18 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a07.jpg' +p19 +sg12 +S"This work comes from the front predella, the separate horizontal\r\nband of narrative scenes at the base of the great \n In the \n Duccio's unique contribution to the Byzantine style is his use of elegantly flowing lines, most evident here in the drapery folds and mountain ridges. The soft, undulating brushstrokes downplay the austerity of the earlier style, as do the sensitive rendering of the Virgin's face and the individual characterizations of Isaiah and Ezekiel, expressing a true sense of human feeling.\n " +p20 +sa(dp21 +g2 +S'Georgiana, Duchess of Devonshire' +p22 +sg4 +S'Thomas Gainsborough' +p23 +sg6 +S'oil on canvas' +p24 +sg8 +S'1783' +p25 +sg10 +S'http://www.nga.gov:80/thumb-l/a00004/a00004f0.jpg' +p26 +sg12 +S'' +p27 +sa(dp28 +g2 +S'Eve Eating the Apple' +p29 +sg4 +S'Auguste Rodin' +p30 +sg6 +S'terracotta' +p31 +sg8 +S'c. 1885' +p32 +sg10 +S'http://www.nga.gov:80/thumb-l/a00054/a0005439.jpg' +p33 +sg12 +g27 +sa(dp34 +g2 +S'The White Negress' +p35 +sg4 +S'Rembrandt van Rijn' +p36 +sg6 +S'etching' +p37 +sg8 +S'c. 1630' +p38 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d38c.jpg' +p39 +sg12 +g27 +sa(dp40 +g2 +S'Negress Lying Down' +p41 +sg4 +S'Rembrandt van Rijn' +p42 +sg6 +S'etching, drypoint and burin' +p43 +sg8 +S'1658' +p44 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d338.jpg' +p45 +sg12 +g27 +sa(dp46 +g2 +S'Negress Lying Down' +p47 +sg4 +S'Rembrandt van Rijn' +p48 +sg6 +S'etching, drypoint and burin' +p49 +sg8 +S'1658' +p50 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d334.jpg' +p51 +sg12 +g27 +sa(dp52 +g2 +S'The Goldsmith' +p53 +sg4 +S'Rembrandt van Rijn' +p54 +sg6 +S'etching and drypoint' +p55 +sg8 +S'1655' +p56 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d30e.jpg' +p57 +sg12 +g27 +sa(dp58 +g2 +S'The Image Seen by Nebuchadnezzar' +p59 +sg4 +S'Rembrandt van Rijn' +p60 +sg6 +S'etching, burin and drypoint' +p61 +sg8 +S'1655' +p62 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2d0.jpg' +p63 +sg12 +g27 +sa(dp64 +g2 +S"Jacob's Ladder" +p65 +sg4 +S'Rembrandt van Rijn' +p66 +sg6 +S'etching, burin and drypoint' +p67 +sg8 +S'1655' +p68 +sg10 +S'http://www.nga.gov:80/thumb-l/a00056/a000565a.jpg' +p69 +sg12 +g27 +sa(dp70 +g2 +S"Jacob's Ladder" +p71 +sg4 +S'Rembrandt van Rijn' +p72 +sg6 +S'etching, burin and drypoint' +p73 +sg8 +S'1655' +p74 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2d2.jpg' +p75 +sg12 +g27 +sa(dp76 +g2 +S"Jacob's Ladder" +p77 +sg4 +S'Rembrandt van Rijn' +p78 +sg6 +S'etching, burin and drypoint' +p79 +sg8 +S'1655' +p80 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2d6.jpg' +p81 +sg12 +g27 +sa(dp82 +g2 +S'Christ Returning from the Temple with His Parents' +p83 +sg4 +S'Rembrandt van Rijn' +p84 +sg6 +S'etching and drypoint' +p85 +sg8 +S'1654' +p86 +sg10 +S'http://www.nga.gov:80/thumb-l/a00056/a0005653.jpg' +p87 +sg12 +g27 +sa(dp88 +g2 +S'Christ Seated Disputing with the Doctors' +p89 +sg4 +S'Rembrandt van Rijn' +p90 +sg6 +S'etching' +p91 +sg8 +S'1654' +p92 +sg10 +S'http://www.nga.gov:80/thumb-l/a00058/a00058b0.jpg' +p93 +sg12 +g27 +sa(dp94 +g2 +S'Right Hand' +p95 +sg4 +S'Auguste Rodin' +p96 +sg6 +S'terracotta' +p97 +sg8 +S'possibly 1880s' +p98 +sg10 +S'http://www.nga.gov:80/thumb-l/a00054/a000543a.jpg' +p99 +sg12 +g27 +sa(dp100 +g2 +S'The Circumcision in the Stable' +p101 +sg4 +S'Rembrandt van Rijn' +p102 +sg6 +S'etching' +p103 +sg8 +S'1654' +p104 +sg10 +S'http://www.nga.gov:80/thumb-l/a00056/a0005657.jpg' +p105 +sg12 +g27 +sa(dp106 +g2 +S'The Adoration of the Shepherds: with the Lamp' +p107 +sg4 +S'Rembrandt van Rijn' +p108 +sg6 +S'etching' +p109 +sg8 +S'c. 1654' +p110 +sg10 +S'http://www.nga.gov:80/thumb-l/a00056/a0005658.jpg' +p111 +sg12 +g27 +sa(dp112 +g12 +g27 +sg6 +S'etching (and burin where biting failed in state i)' +p113 +sg8 +S'c. 1654' +p114 +sg2 +S'The Adoration of the Shepherds: with the Lamp' +p115 +sg4 +S'Rembrandt van Rijn' +p116 +sa(dp117 +g2 +S'The Golf Player' +p118 +sg4 +S'Rembrandt van Rijn' +p119 +sg6 +S'etching' +p120 +sg8 +S'1654' +p121 +sg10 +S'http://www.nga.gov:80/thumb-l/a0005c/a0005c90.jpg' +p122 +sg12 +g27 +sa(dp123 +g2 +S'Peasant Family on the Tramp' +p124 +sg4 +S'Rembrandt van Rijn' +p125 +sg6 +S'etching' +p126 +sg8 +S'c. 1652' +p127 +sg10 +S'http://www.nga.gov:80/thumb-l/a00057/a00057ea.jpg' +p128 +sg12 +g27 +sa(dp129 +g2 +S'David in Prayer' +p130 +sg4 +S'Rembrandt van Rijn' +p131 +sg6 +S'etching and some drypoint' +p132 +sg8 +S'1652' +p133 +sg10 +S'http://www.nga.gov:80/thumb-l/a00056/a0005664.jpg' +p134 +sg12 +g27 +sa(dp135 +g2 +S'The Star of the Kings: a Night Piece' +p136 +sg4 +S'Rembrandt van Rijn' +p137 +sg6 +S'etching, with a few touches of drypoint' +p138 +sg8 +S'c. 1651' +p139 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2fe.jpg' +p140 +sg12 +g27 +sa(dp141 +g2 +S'The Flight into Egypt: a Night Piece' +p142 +sg4 +S'Rembrandt van Rijn' +p143 +sg6 +S'etching, burin and drypoint on yellowish paper' +p144 +sg8 +S'1651' +p145 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2dd.jpg' +p146 +sg12 +g27 +sa(dp147 +g2 +S'The Flight into Egypt: a Night Piece' +p148 +sg4 +S'Rembrandt van Rijn' +p149 +sg6 +S'etching, burin and drypoint' +p150 +sg8 +S'1651' +p151 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2df.jpg' +p152 +sg12 +g27 +sa(dp153 +g2 +S'The Bathers' +p154 +sg4 +S'Rembrandt van Rijn' +p155 +sg6 +S'etching' +p156 +sg8 +S'1651' +p157 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d339.jpg' +p158 +sg12 +g27 +sa(dp159 +g2 +S'La France' +p160 +sg4 +S'Auguste Rodin' +p161 +sg6 +S'bronze' +p162 +sg8 +S'1904' +p163 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e37.jpg' +p164 +sg12 +g27 +sa(dp165 +g2 +S'Landscape with a Square Tower' +p166 +sg4 +S'Rembrandt van Rijn' +p167 +sg6 +S'etching and drypoint' +p168 +sg8 +S'1650' +p169 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d342.jpg' +p170 +sg12 +g27 +sa(dp171 +g2 +S'Landscape with a Cow' +p172 +sg4 +S'Rembrandt van Rijn' +p173 +sg6 +S'etching and drypoint' +p174 +sg8 +S'c. 1650' +p175 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d354.jpg' +p176 +sg12 +g27 +sa(dp177 +g2 +S'Canal with a Large Boat and Bridge' +p178 +sg4 +S'Rembrandt van Rijn' +p179 +sg6 +S'etching and drypoint' +p180 +sg8 +S'1650' +p181 +sg10 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b11.jpg' +p182 +sg12 +g27 +sa(dp183 +g2 +S'Canal with an Angler and Two Swans' +p184 +sg4 +S'Rembrandt van Rijn' +p185 +sg6 +S'etching and drypoint' +p186 +sg8 +S'1650' +p187 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d345.jpg' +p188 +sg12 +g27 +sa(dp189 +g2 +S'Jews in the Synagogue' +p190 +sg4 +S'Rembrandt van Rijn' +p191 +sg6 +S'etching and drypoint' +p192 +sg8 +S'1648' +p193 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d318.jpg' +p194 +sg12 +g27 +sa(dp195 +g2 +S'Jews in the Synagogue' +p196 +sg4 +S'Rembrandt van Rijn' +p197 +sg6 +S'etching and drypoint' +p198 +sg8 +S'1648' +p199 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d317.jpg' +p200 +sg12 +g27 +sa(dp201 +g2 +S'Sheet of Studies with the Head of the Artist, a Beggar Man, and Woman and Child' +p202 +sg4 +S'Rembrandt van Rijn' +p203 +sg6 +S'etching' +p204 +sg8 +S'1651' +p205 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d395.jpg' +p206 +sg12 +g27 +sa(dp207 +g2 +S'Nude Man Seated on the Ground with One Leg Extended' +p208 +sg4 +S'Rembrandt van Rijn' +p209 +sg6 +S'etching' +p210 +sg8 +S'1646' +p211 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d335.jpg' +p212 +sg12 +g27 +sa(dp213 +g2 +S'The Rest on the Flight: Lightly Etched' +p214 +sg4 +S'Rembrandt van Rijn' +p215 +sg6 +S'etching, with touches of drypoint' +p216 +sg8 +S'1645' +p217 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2e5.jpg' +p218 +sg12 +g27 +sa(dp219 +g2 +S'Three Heads of Women, One Lightly Etched' +p220 +sg4 +S'Rembrandt van Rijn' +p221 +sg6 +S'etching' +p222 +sg8 +S'c. 1637' +p223 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d398.jpg' +p224 +sg12 +g27 +sa(dp225 +g2 +S"The Age of Bronze (L'Age d'Airain)" +p226 +sg4 +S'Auguste Rodin' +p227 +sg6 +S'bronze' +p228 +sg8 +S'model 1875-1876, cast 1903-1904' +p229 +sg10 +S'http://www.nga.gov:80/thumb-l/a00029/a00029c3.jpg' +p230 +sg12 +g27 +sa(dp231 +g2 +S'Three Heads of Women, One Asleep' +p232 +sg4 +S'Rembrandt van Rijn' +p233 +sg6 +S'etching' +p234 +sg8 +S'1637' +p235 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d397.jpg' +p236 +sg12 +g27 +sa(dp237 +g2 +S'Young Man in a Velvet Cap (Ferdinand Bol?)' +p238 +sg4 +S'Rembrandt van Rijn' +p239 +sg6 +S'etching' +p240 +sg8 +S'1637' +p241 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d356.jpg' +p242 +sg12 +g27 +sa(dp243 +g2 +S'Bearded Man in a Velvet Cap with a Jewel Clasp' +p244 +sg4 +S'Rembrandt van Rijn' +p245 +sg6 +S'etching' +p246 +sg8 +S'1637' +p247 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d37a.jpg' +p248 +sg12 +g27 +sa(dp249 +g2 +S'Abraham Casting Out Hagar and Ishmael' +p250 +sg4 +S'Rembrandt van Rijn' +p251 +sg6 +S'etching with touches of drypoint' +p252 +sg8 +S'1637' +p253 +sg10 +S'http://www.nga.gov:80/thumb-l/a00053/a00053b5.jpg' +p254 +sg12 +g27 +sa(dp255 +g2 +S'Abraham Caressing Isaac' +p256 +sg4 +S'Rembrandt van Rijn' +p257 +sg6 +S'etching' +p258 +sg8 +S'c. 1637' +p259 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2d7.jpg' +p260 +sg12 +g27 +sa(dp261 +g2 +S'Samuel Menasseh ben Israel' +p262 +sg4 +S'Rembrandt van Rijn' +p263 +sg6 +S'etching' +p264 +sg8 +S'1636' +p265 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d359.jpg' +p266 +sg12 +g27 +sa(dp267 +g2 +S'Self-Portrait with Saskia' +p268 +sg4 +S'Rembrandt van Rijn' +p269 +sg6 +S'etching' +p270 +sg8 +S'1636' +p271 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2c6.jpg' +p272 +sg12 +g27 +sa(dp273 +g2 +S'The Strolling Musicians' +p274 +sg4 +S'Rembrandt van Rijn' +p275 +sg6 +S'etching' +p276 +sg8 +S'c. 1635' +p277 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d309.jpg' +p278 +sg12 +g27 +sa(dp279 +g2 +S'The Strolling Musicians' +p280 +sg4 +S'Rembrandt van Rijn' +p281 +sg6 +S'etching' +p282 +sg8 +S'c. 1635' +p283 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d307.jpg' +p284 +sg12 +g27 +sa(dp285 +g2 +S'The Pancake Woman' +p286 +sg4 +S'Rembrandt van Rijn' +p287 +sg6 +S'etching' +p288 +sg8 +S'1635' +p289 +sg10 +S'http://www.nga.gov:80/thumb-l/a00057/a00057eb.jpg' +p290 +sg12 +g27 +sa(dp291 +g2 +S"The Walking Man (L'Homme qui marche)" +p292 +sg4 +S'Auguste Rodin' +p293 +sg6 +S'bronze' +p294 +sg8 +S'model 1878-1900, cast probably 1903' +p295 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c1b.jpg' +p296 +sg12 +g27 +sa(dp297 +g2 +S'The Quacksalver' +p298 +sg4 +S'Rembrandt van Rijn' +p299 +sg6 +S'etching' +p300 +sg8 +S'1635' +p301 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d311.jpg' +p302 +sg12 +g27 +sa(dp303 +g2 +S'Curly-Headed Man with a Wry Mouth' +p304 +sg4 +S'Artist Information (' +p305 +sg6 +S'Dutch, 1606 - 1669' +p306 +sg8 +S'(related artist)' +p307 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d39d.jpg' +p308 +sg12 +g27 +sa(dp309 +g2 +S'Bald Old Man with a Short Beard in Profile' +p310 +sg4 +S'Rembrandt van Rijn' +p311 +sg6 +S'etching' +p312 +sg8 +S'c. 1635' +p313 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d37d.jpg' +p314 +sg12 +g27 +sa(dp315 +g2 +S'Bald Old Man with a Short Beard in Profile' +p316 +sg4 +S'Rembrandt van Rijn' +p317 +sg6 +S'etching' +p318 +sg8 +S'c. 1635' +p319 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d37e.jpg' +p320 +sg12 +g27 +sa(dp321 +g2 +S'Head of an Old Man in High Fur Cap' +p322 +sg4 +S'Artist Information (' +p323 +sg6 +S'Dutch, 1606 - 1669' +p324 +sg8 +S'(artist)' +p325 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3a1.jpg' +p326 +sg12 +g27 +sa(dp327 +g2 +S'The Stoning of Saint Stephen' +p328 +sg4 +S'Rembrandt van Rijn' +p329 +sg6 +S'etching' +p330 +sg8 +S'1635' +p331 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2fb.jpg' +p332 +sg12 +g27 +sa(dp333 +g2 +S'The Stoning of Saint Stephen' +p334 +sg4 +S'Rembrandt van Rijn' +p335 +sg6 +S'etching' +p336 +sg8 +S'1635' +p337 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2fc.jpg' +p338 +sg12 +g27 +sa(dp339 +g2 +S'The Tribute Money' +p340 +sg4 +S'Rembrandt van Rijn' +p341 +sg6 +S'etching' +p342 +sg8 +S'c. 1635' +p343 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2ef.jpg' +p344 +sg12 +g27 +sa(dp345 +g2 +S'The Crucifixion: Small Plate' +p346 +sg4 +S'Rembrandt van Rijn' +p347 +sg6 +S'etching' +p348 +sg8 +S'c. 1635' +p349 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2f1.jpg' +p350 +sg12 +g27 +sa(dp351 +g2 +S'Christ and the Woman of Samaria Among Ruins' +p352 +sg4 +S'Rembrandt van Rijn' +p353 +sg6 +S'etching' +p354 +sg8 +S'1634' +p355 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2ed.jpg' +p356 +sg12 +g27 +sa(dp357 +g2 +S'The Thinker (Le Penseur)' +p358 +sg4 +S'Auguste Rodin' +p359 +sg6 +S'bronze' +p360 +sg8 +S'model 1880, cast 1901' +p361 +sg10 +S'http://www.nga.gov:80/thumb-l/a00029/a00029c4.jpg' +p362 +sg12 +S"The Thinker\n The theme for \n Rodin's \n " +p363 +sa(dp364 +g2 +S'Christ at Emmaus: the Smaller Plate' +p365 +sg4 +S'Rembrandt van Rijn' +p366 +sg6 +S'etching, with touches of drypoint' +p367 +sg8 +S'1634' +p368 +sg10 +S'http://www.nga.gov:80/thumb-l/a00069/a0006913.jpg' +p369 +sg12 +g27 +sa(dp370 +g2 +S'Saskia with Pearls in Her Hair' +p371 +sg4 +S'Rembrandt van Rijn' +p372 +sg6 +S'etching' +p373 +sg8 +S'1634' +p374 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d382.jpg' +p375 +sg12 +g27 +sa(dp376 +g2 +S'Self-Portrait (?) with Plumed Cap and Lowered Sabre' +p377 +sg4 +S'Rembrandt van Rijn' +p378 +sg6 +S'etching' +p379 +sg8 +S'1634' +p380 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2cd.jpg' +p381 +sg12 +g27 +sa(dp382 +g2 +S'Self-Portrait with Raised Sabre' +p383 +sg4 +S'Rembrandt van Rijn' +p384 +sg6 +S'etching with touches of drypoint' +p385 +sg8 +S'1634' +p386 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2c7.jpg' +p387 +sg12 +g27 +sa(dp388 +g2 +S"Joseph's Coat Brought to Jacob" +p389 +sg4 +S'Rembrandt van Rijn' +p390 +sg6 +S'etching and touches of drypoint' +p391 +sg8 +S'c. 1633' +p392 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2d5.jpg' +p393 +sg12 +g27 +sa(dp394 +g2 +S'Three Oriental Figures (Jacob and Laban?)' +p395 +sg4 +S'Rembrandt van Rijn' +p396 +sg6 +S'etching' +p397 +sg8 +S'1641' +p398 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d30c.jpg' +p399 +sg12 +g27 +sa(dp400 +g2 +S'Bust of an Old Man with Flowing Beard and White Sleeve' +p401 +sg4 +S'Rembrandt van Rijn' +p402 +sg6 +S'etching' +p403 +sg8 +S'c. 1630' +p404 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d374.jpg' +p405 +sg12 +g27 +sa(dp406 +g2 +S"A Burgher of Calais (Jean d'Aire)" +p407 +sg4 +S'Auguste Rodin' +p408 +sg6 +S'bronze' +p409 +sg8 +S'model 1884-1889, reduction cast probably 1895' +p410 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f3a.jpg' +p411 +sg12 +S"Rodin designed this figure as one of six colossal statues forming a monument to a group of\nfourteenth-century citizens of the northern French town of Calais. The six men had offered\nthemselves as hostages to induce the English to lift a siege and spare their starving city. When\nmodern Calais, about to tear down its medieval walls, decided to erect a monument reaffirming\nits ancient identity, Rodin pursued the commission eagerly and won it in 1884.\n Rodin's burghers, following the conqueror's orders, are stripped down to their shirts, with\nhalters around their necks and the keys to the city in their hands as a sign of submission. The\nsculptor portrayed the men as they were leaving their town for the English camp, where they\nexpected execution. Rodin conceived the burghers less as ideally noble heroes than as ordinary\nmen, ragged and emaciated after the ordeal of the siege, each experiencing a personal\nconfrontation with death.\n Jean d'Aire, his gaunt body visible through the sides of his shirt, stands upright as a pillar,\nwith squared shoulders, massive clenched hands, and a stoically set jaw. In his bony face and\nsunken eyes one can read what his sacrifice is costing.\n " +p412 +sa(dp413 +g2 +S'Self-Portrait in a Cap, Open-Mouthed' +p414 +sg4 +S'Rembrandt van Rijn' +p415 +sg6 +S'etching' +p416 +sg8 +S'1630' +p417 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d381.jpg' +p418 +sg12 +g27 +sa(dp419 +g2 +S'The Blind Fiddler' +p420 +sg4 +S'Rembrandt van Rijn' +p421 +sg6 +S'etching' +p422 +sg8 +S'1631' +p423 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d313.jpg' +p424 +sg12 +g27 +sa(dp425 +g2 +S'The Blind Fiddler' +p426 +sg4 +S'Rembrandt van Rijn' +p427 +sg6 +S'etching' +p428 +sg8 +S'1631' +p429 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d312.jpg' +p430 +sg12 +g27 +sa(dp431 +g2 +S'A Peasant Calling Out: "tis vinnich kout" (It\'s biting cold)' +p432 +sg4 +S'Rembrandt van Rijn' +p433 +sg6 +S'etching' +p434 +sg8 +S'1634' +p435 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d32a.jpg' +p436 +sg12 +g27 +sa(dp437 +g2 +S'A Peasant Replying: "Dats niet" (That\'s nothing)' +p438 +sg4 +S'Rembrandt van Rijn' +p439 +sg6 +S'etching' +p440 +sg8 +S'1634' +p441 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d32b.jpg' +p442 +sg12 +g27 +sa(dp443 +g2 +S'Old Woman Sleeping' +p444 +sg4 +S'Rembrandt van Rijn' +p445 +sg6 +S'etching' +p446 +sg8 +S'c. 1635/1637' +p447 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d391.jpg' +p448 +sg12 +g27 +sa(dp449 +g2 +S'Old Bearded Man in a High Fur Cap, with Eyes Closed' +p450 +sg4 +S'Rembrandt van Rijn' +p451 +sg6 +S'etching' +p452 +sg8 +S'c. 1635' +p453 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d375.jpg' +p454 +sg12 +g27 +sa(dp455 +g2 +S'The Entombment' +p456 +sg4 +S'Rembrandt van Rijn' +p457 +sg6 +S'etching, drypoint and burin' +p458 +sg8 +S'c. 1654' +p459 +sg10 +S'http://www.nga.gov:80/thumb-l/a00056/a000565d.jpg' +p460 +sg12 +g27 +sa(dp461 +g2 +S'Landscape with a Hay Barn and a Flock of Sheep' +p462 +sg4 +S'Rembrandt van Rijn' +p463 +sg6 +S'etching and drypoint' +p464 +sg8 +S'1652' +p465 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d349.jpg' +p466 +sg12 +g27 +sa(dp467 +g2 +S'Head of Balzac' +p468 +sg4 +S'Auguste Rodin' +p469 +sg6 +S'bronze' +p470 +sg8 +S'model 1897, cast probably early 20th century' +p471 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e36.jpg' +p472 +sg12 +g27 +sa(dp473 +g12 +g27 +sg6 +S'lithograph' +p474 +sg8 +S'1912' +p475 +sg2 +S'French Canal and American Cranes' +p476 +sg4 +S'Joseph Pennell' +p477 +sa(dp478 +g2 +S'The Steel Bridge' +p479 +sg4 +S'Joseph Pennell' +p480 +sg6 +S'lithograph' +p481 +sg8 +S'1910' +p482 +sg10 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b48.jpg' +p483 +sg12 +g27 +sa(dp484 +g2 +S'Old and New Rome, Victor Emanuel Monument' +p485 +sg4 +S'Joseph Pennell' +p486 +sg6 +S'lithograph' +p487 +sg8 +S'1911' +p488 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b5d.jpg' +p489 +sg12 +g27 +sa(dp490 +g12 +g27 +sg6 +S'lithograph' +p491 +sg8 +S'1916' +p492 +sg2 +S'The Perambulator' +p493 +sg4 +S'Joseph Pennell' +p494 +sa(dp495 +g12 +g27 +sg6 +S'lithograph' +p496 +sg8 +S'1916' +p497 +sg2 +S'The Great Hammer' +p498 +sg4 +S'Joseph Pennell' +p499 +sa(dp500 +g12 +g27 +sg6 +S'lithograph' +p501 +sg8 +S'1910' +p502 +sg2 +S'Falls Station, Niagara' +p503 +sg4 +S'Joseph Pennell' +p504 +sa(dp505 +g12 +g27 +sg6 +S'lithograph' +p506 +sg8 +S'1916' +p507 +sg2 +S'The Balloon-Shed' +p508 +sg4 +S'Joseph Pennell' +p509 +sa(dp510 +g12 +g27 +sg6 +S'lithograph' +p511 +sg8 +S'1910' +p512 +sg2 +S'Work Castles, Wilkesbarre' +p513 +sg4 +S'Joseph Pennell' +p514 +sa(dp515 +g12 +g27 +sg6 +S'lithograph' +p516 +sg8 +S'1917' +p517 +sg2 +S'Building Engines for the Allies' +p518 +sg4 +S'Joseph Pennell' +p519 +sa(dp520 +g12 +g27 +sg6 +S'lithograph' +p521 +sg8 +S'1917' +p522 +sg2 +S'Making War Locomotives' +p523 +sg4 +S'Joseph Pennell' +p524 +sa(dp525 +g2 +S'The Kiss (Le Baiser)' +p526 +sg4 +S'Auguste Rodin' +p527 +sg6 +S'bronze' +p528 +sg8 +S'model 1880-1887, cast c. 1898/1902' +p529 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c1c.jpg' +p530 +sg12 +S"Nineteenth-century viewers and critics were immediately taken with Rodin's three-dimensional group, entitled \n By including only one specific reference to the lovers' story (Paolo holds in his left hand the book of courtly love they read together), Rodin encouraged viewers to become immersed in the spiraling rhythms of the entwined bodies and the sensuous finish of smooth limbs against pitted rock.\n Rodin had intended to include this work in his monumental \n " +p531 +sa(dp532 +g12 +g27 +sg6 +S'lithograph' +p533 +sg8 +S'1917' +p534 +sg2 +S'The Flying Locomotive' +p535 +sg4 +S'Joseph Pennell' +p536 +sa(dp537 +g12 +g27 +sg6 +S'lithograph' +p538 +sg8 +S'1917' +p539 +sg2 +S'The Gun-Testing Ground' +p540 +sg4 +S'Joseph Pennell' +p541 +sa(dp542 +g12 +g27 +sg6 +S'lithograph' +p543 +sg8 +S'1911' +p544 +sg2 +S'The Iron Gate, Charleroi' +p545 +sg4 +S'Joseph Pennell' +p546 +sa(dp547 +g12 +g27 +sg6 +S'lithograph' +p548 +sg8 +S'1916' +p549 +sg2 +S'The Great Chimney, the Motor Park' +p550 +sg4 +S'Joseph Pennell' +p551 +sa(dp552 +g12 +g27 +sg6 +S'lithograph' +p553 +sg8 +S'1911' +p554 +sg2 +S'The Canal at Blanzy, France' +p555 +sg4 +S'Joseph Pennell' +p556 +sa(dp557 +g12 +g27 +sg6 +S'lithograph' +p558 +sg8 +S'1912' +p559 +sg2 +S'Looking up the Cut from Bas Obispo' +p560 +sg4 +S'Joseph Pennell' +p561 +sa(dp562 +g12 +g27 +sg6 +S'lithograph' +p563 +sg8 +S'1913' +p564 +sg2 +S'Eleusis, the Pavement of the Temple' +p565 +sg4 +S'Joseph Pennell' +p566 +sa(dp567 +g12 +g27 +sg6 +S'lithograph' +p568 +sg8 +S'1912' +p569 +sg2 +S'Steam Shovel at Work in Culebra Cut' +p570 +sg4 +S'Joseph Pennell' +p571 +sa(dp572 +g12 +g27 +sg6 +S'lithograph' +p573 +sg8 +S'1912' +p574 +sg2 +S'At the Bottom of Gatun Lock' +p575 +sg4 +S'Joseph Pennell' +p576 +sa(dp577 +g12 +g27 +sg6 +S'lithograph' +p578 +sg8 +S'1911' +p579 +sg2 +S'Coal Mines, Monceau, France' +p580 +sg4 +S'Joseph Pennell' +p581 +sa(dp582 +g2 +S'Katherine Seney Simpson (Mrs. John W. Simpson)' +p583 +sg4 +S'Auguste Rodin' +p584 +sg6 +S'marble' +p585 +sg8 +S'1902-1903' +p586 +sg10 +S'http://www.nga.gov:80/thumb-l/a00030/a000304b.jpg' +p587 +sg12 +g27 +sa(dp588 +g12 +g27 +sg6 +S'lithograph' +p589 +sg8 +S'1917' +p590 +sg2 +S'The Old and the New' +p591 +sg4 +S'Joseph Pennell' +p592 +sa(dp593 +g12 +g27 +sg6 +S'lithograph' +p594 +sg8 +S'1912' +p595 +sg2 +S'Steam Shovel in the Cut at Bas Obispo' +p596 +sg4 +S'Joseph Pennell' +p597 +sa(dp598 +g12 +g27 +sg6 +S'lithograph' +p599 +sg8 +S'1912' +p600 +sg2 +S'The Cut from Culebra' +p601 +sg4 +S'Joseph Pennell' +p602 +sa(dp603 +g2 +S'Old Million Eyes' +p604 +sg4 +S'Joseph Pennell' +p605 +sg6 +S'lithograph' +p606 +sg8 +S'1910' +p607 +sg10 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b4d.jpg' +p608 +sg12 +g27 +sa(dp609 +g2 +S'Valley of Desolation' +p610 +sg4 +S'Joseph Pennell' +p611 +sg6 +S'lithograph' +p612 +sg8 +S'1910' +p613 +sg10 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b47.jpg' +p614 +sg12 +g27 +sa(dp615 +g12 +g27 +sg6 +S'lithograph' +p616 +sg8 +S'1914' +p617 +sg2 +S'The Big Mill, Gary, Indiana' +p618 +sg4 +S'Joseph Pennell' +p619 +sa(dp620 +g12 +g27 +sg6 +S'lithograph' +p621 +sg8 +S'1912' +p622 +sg2 +S'Offical Ancon' +p623 +sg4 +S'Joseph Pennell' +p624 +sa(dp625 +g12 +g27 +sg6 +S'lithograph' +p626 +sg8 +S'1913' +p627 +sg2 +S'The Columns of Castor and Pollux, Girgenti' +p628 +sg4 +S'Joseph Pennell' +p629 +sa(dp630 +g12 +g27 +sg6 +S'lithograph' +p631 +sg8 +S'1910' +p632 +sg2 +S'Shenandoah' +p633 +sg4 +S'Joseph Pennell' +p634 +sa(dp635 +g12 +g27 +sg6 +S'lithograph' +p636 +sg8 +S'1916' +p637 +sg2 +S'Making Pig-Iron' +p638 +sg4 +S'Joseph Pennell' +p639 +sa(dp640 +g2 +S'Mrs. Thomas Scott Jackson' +p641 +sg4 +S'George Romney' +p642 +sg6 +S'oil on canvas' +p643 +sg8 +S'c. 1770/1773' +p644 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a0000563.jpg' +p645 +sg12 +S'This full-length Grand Manner portrait by Romney, \n ' +p646 +sa(dp647 +g2 +S'The Evil Spirits' +p648 +sg4 +S'Auguste Rodin' +p649 +sg6 +S'marble' +p650 +sg8 +S'c. 1899' +p651 +sg10 +S'http://www.nga.gov:80/thumb-l/a00054/a000542a.jpg' +p652 +sg12 +g27 +sa(dp653 +g12 +g27 +sg6 +S'lithograph' +p654 +sg8 +S'1912' +p655 +sg2 +S'Early Morning, Miraflores' +p656 +sg4 +S'Joseph Pennell' +p657 +sa(dp658 +g12 +g27 +sg6 +S'lithograph' +p659 +sg8 +S'1916' +p660 +sg2 +S'By-Products' +p661 +sg4 +S'Joseph Pennell' +p662 +sa(dp663 +g12 +g27 +sg6 +S'lithograph' +p664 +sg8 +S'1921' +p665 +sg2 +S'Bridge at Charlottenburg' +p666 +sg4 +S'Joseph Pennell' +p667 +sa(dp668 +g12 +g27 +sg6 +S'lithograph' +p669 +sg8 +S'1921' +p670 +sg2 +S'View on the Spree, Berlin' +p671 +sg4 +S'Joseph Pennell' +p672 +sa(dp673 +g2 +S'Peasants Carrying Hay (Paysans portant du foin)' +p674 +sg4 +S'Camille Pissarro' +p675 +sg6 +S'etching and drypoint' +p676 +sg8 +S'1900' +p677 +sg10 +S'http://www.nga.gov:80/thumb-l/a00099/a00099a2.jpg' +p678 +sg12 +g27 +sa(dp679 +g2 +S'Paul Signac (Portrait de Paul Signac)' +p680 +sg4 +S'Camille Pissarro' +p681 +sg6 +S'etching' +p682 +sg8 +S'c. 1890' +p683 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dbb.jpg' +p684 +sg12 +g27 +sa(dp685 +g2 +S"Eglise et ferme d'\xc3\x89ragny (A Church and Farm at \xc3\x89ragny)" +p686 +sg4 +S'Camille Pissarro' +p687 +sg6 +S'color etching and drypoint with aquatint' +p688 +sg8 +S'1890' +p689 +sg10 +S'http://www.nga.gov:80/thumb-l/a00099/a00099aa.jpg' +p690 +sg12 +g27 +sa(dp691 +g2 +S'A Woman Emptying a Wheelbarrow (Femme vidant une brouette)' +p692 +sg4 +S'Camille Pissarro' +p693 +sg6 +S'aquatint with drypoint' +p694 +sg8 +S'1880' +p695 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009db6.jpg' +p696 +sg12 +g27 +sa(dp697 +g2 +S'Saints Peter and Paul under a Canopy' +p698 +sg4 +S'Wilhelm Pleydenwurff' +p699 +sg6 +S'woodcut' +p700 +sg8 +S'unknown date\n' +p701 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a636.jpg' +p702 +sg12 +g27 +sa(dp703 +g12 +g27 +sg6 +S'lithograph' +p704 +sg8 +S'unknown date\n' +p705 +sg2 +S'619 Cass Street' +p706 +sg4 +S'Howard Raftery' +p707 +sa(dp708 +g2 +S'Morning' +p709 +sg4 +S'Auguste Rodin' +p710 +sg6 +S'marble' +p711 +sg8 +S'1906' +p712 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f3b.jpg' +p713 +sg12 +g27 +sa(dp714 +g12 +g27 +sg6 +S'lithograph' +p715 +sg8 +S'unknown date\n' +p716 +sg2 +S'The Coaling Tower' +p717 +sg4 +S'Howard Raftery' +p718 +sa(dp719 +g12 +g27 +sg6 +S'lithograph' +p720 +sg8 +S'unknown date\n' +p721 +sg2 +S'4851 Drexel Boulevard' +p722 +sg4 +S'Howard Raftery' +p723 +sa(dp724 +g12 +g27 +sg6 +S'lithograph' +p725 +sg8 +S'unknown date\n' +p726 +sg2 +S'Groveland Park, Gate Lodge' +p727 +sg4 +S'Howard Raftery' +p728 +sa(dp729 +g12 +g27 +sg6 +S'lithograph' +p730 +sg8 +S'unknown date\n' +p731 +sg2 +S'100 East Chicago Avenue' +p732 +sg4 +S'Howard Raftery' +p733 +sa(dp734 +g12 +g27 +sg6 +S'lithograph' +p735 +sg8 +S'unknown date\n' +p736 +sg2 +S'The de Koven House' +p737 +sg4 +S'Howard Raftery' +p738 +sa(dp739 +g12 +g27 +sg6 +S'lithograph' +p740 +sg8 +S'unknown date\n' +p741 +sg2 +S'Route 64, Maywood' +p742 +sg4 +S'Howard Raftery' +p743 +sa(dp744 +g12 +g27 +sg6 +S'lithograph' +p745 +sg8 +S'unknown date\n' +p746 +sg2 +S'Tower Court' +p747 +sg4 +S'Howard Raftery' +p748 +sa(dp749 +g12 +g27 +sg6 +S'lithograph' +p750 +sg8 +S'unknown date\n' +p751 +sg2 +S'The Glessner House' +p752 +sg4 +S'Howard Raftery' +p753 +sa(dp754 +g12 +g27 +sg6 +S'lithograph' +p755 +sg8 +S'unknown date\n' +p756 +sg2 +S'Chapel of Saint Andrew, Saint James Cathedral' +p757 +sg4 +S'Howard Raftery' +p758 +sa(dp759 +g12 +g27 +sg6 +S'lithograph' +p760 +sg8 +S'unknown date\n' +p761 +sg2 +S'The Marshall Field House' +p762 +sg4 +S'Howard Raftery' +p763 +sa(dp764 +g2 +S"Woman and Child (originally Premi\xc3\xa8re Impression d'Amour)" +p765 +sg4 +S'Auguste Rodin' +p766 +sg6 +S'marble' +p767 +sg8 +S'model c. 1885, carved c. 1900-1901' +p768 +sg10 +S'http://www.nga.gov:80/thumb-l/a00054/a000542b.jpg' +p769 +sg12 +g27 +sa(dp770 +g12 +g27 +sg6 +S'lithograph' +p771 +sg8 +S'unknown date\n' +p772 +sg2 +S"Judge Carpenter's House" +p773 +sg4 +S'Howard Raftery' +p774 +sa(dp775 +g12 +g27 +sg6 +S'lithograph' +p776 +sg8 +S'unknown date\n' +p777 +sg2 +S'Wells Street' +p778 +sg4 +S'Howard Raftery' +p779 +sa(dp780 +g12 +g27 +sg6 +S'lithograph' +p781 +sg8 +S'unknown date\n' +p782 +sg2 +S'11 East Walton Place' +p783 +sg4 +S'Howard Raftery' +p784 +sa(dp785 +g12 +g27 +sg6 +S'lithograph' +p786 +sg8 +S'unknown date\n' +p787 +sg2 +S'The Potter Palmer House' +p788 +sg4 +S'Howard Raftery' +p789 +sa(dp790 +g12 +g27 +sg6 +S'lithograph' +p791 +sg8 +S'unknown date\n' +p792 +sg2 +S'West Erie Street' +p793 +sg4 +S'Howard Raftery' +p794 +sa(dp795 +g12 +g27 +sg6 +S'lithograph' +p796 +sg8 +S'unknown date\n' +p797 +sg2 +S'The Widow Clark House' +p798 +sg4 +S'Howard Raftery' +p799 +sa(dp800 +g12 +g27 +sg6 +S'lithograph' +p801 +sg8 +S'unknown date\n' +p802 +sg2 +S'Aldine Square' +p803 +sg4 +S'Howard Raftery' +p804 +sa(dp805 +g12 +g27 +sg6 +S'lithograph' +p806 +sg8 +S'unknown date\n' +p807 +sg2 +S'625 Cass Street' +p808 +sg4 +S'Howard Raftery' +p809 +sa(dp810 +g12 +g27 +sg6 +S'lithograph' +p811 +sg8 +S'unknown date\n' +p812 +sg2 +S'The Harold McCormick House' +p813 +sg4 +S'Howard Raftery' +p814 +sa(dp815 +g12 +g27 +sg6 +S'lithograph' +p816 +sg8 +S'unknown date\n' +p817 +sg2 +S'2120 Prarie Avenue' +p818 +sg4 +S'Howard Raftery' +p819 +sa(dp820 +g2 +S'Aurora and Tithonus' +p821 +sg4 +S'Auguste Rodin' +p822 +sg6 +S'plaster' +p823 +sg8 +S'1905 or 1906' +p824 +sg10 +S'http://www.nga.gov:80/thumb-l/a00054/a000542d.jpg' +p825 +sg12 +g27 +sa(dp826 +g12 +g27 +sg6 +S'lithograph' +p827 +sg8 +S'unknown date\n' +p828 +sg2 +S'Illinois Farm House' +p829 +sg4 +S'Howard Raftery' +p830 +sa(dp831 +g12 +g27 +sg6 +S'lithograph' +p832 +sg8 +S'unknown date\n' +p833 +sg2 +S'700 Rush Street' +p834 +sg4 +S'Howard Raftery' +p835 +sa(dp836 +g12 +g27 +sg6 +S'lithograph' +p837 +sg8 +S'unknown date\n' +p838 +sg2 +S'The Opera, No.I' +p839 +sg4 +S'Howard Raftery' +p840 +sa(dp841 +g2 +S'The Man with Two Trumpets' +p842 +sg4 +S'Artist Information (' +p843 +sg6 +S'(artist after)' +p844 +sg8 +S'\n' +p845 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c787.jpg' +p846 +sg12 +g27 +sa(dp847 +g2 +S'A Censer' +p848 +sg4 +S'Marcantonio Raimondi' +p849 +sg6 +S'engraving' +p850 +sg8 +S'unknown date\n' +p851 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c868.jpg' +p852 +sg12 +g27 +sa(dp853 +g2 +S'Hope' +p854 +sg4 +S'Artist Information (' +p855 +sg6 +S'(artist after)' +p856 +sg8 +S'\n' +p857 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c78e.jpg' +p858 +sg12 +g27 +sa(dp859 +g2 +S'Prudence' +p860 +sg4 +S'Artist Information (' +p861 +sg6 +S'(artist after)' +p862 +sg8 +S'\n' +p863 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c81f.jpg' +p864 +sg12 +g27 +sa(dp865 +g2 +S'Charity' +p866 +sg4 +S'Artist Information (' +p867 +sg6 +S'(artist after)' +p868 +sg8 +S'\n' +p869 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c791.jpg' +p870 +sg12 +g27 +sa(dp871 +g2 +S'Faith' +p872 +sg4 +S'Artist Information (' +p873 +sg6 +S'(artist after)' +p874 +sg8 +S'\n' +p875 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c790.jpg' +p876 +sg12 +g27 +sa(dp877 +g2 +S'Justice' +p878 +sg4 +S'Artist Information (' +p879 +sg6 +S'(artist after)' +p880 +sg8 +S'\n' +p881 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c78c.jpg' +p882 +sg12 +g27 +sa(dp883 +g2 +S'Mask of Katherine Seney Simpson (Mrs. John W. Simpson)' +p884 +sg4 +S'Auguste Rodin' +p885 +sg6 +S'plaster' +p886 +sg8 +S'1902' +p887 +sg10 +S'http://www.nga.gov:80/thumb-l/a00054/a000542e.jpg' +p888 +sg12 +g27 +sa(dp889 +g2 +S'Fortitude' +p890 +sg4 +S'Artist Information (' +p891 +sg6 +S'(artist after)' +p892 +sg8 +S'\n' +p893 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c78f.jpg' +p894 +sg12 +g27 +sa(dp895 +g2 +S'Temperance' +p896 +sg4 +S'Artist Information (' +p897 +sg6 +S'(artist after)' +p898 +sg8 +S'\n' +p899 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c78d.jpg' +p900 +sg12 +g27 +sa(dp901 +g2 +S'God Appearing to Noah' +p902 +sg4 +S'Artist Information (' +p903 +sg6 +S'(artist after)' +p904 +sg8 +S'\n' +p905 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c857.jpg' +p906 +sg12 +g27 +sa(dp907 +g2 +S'The Guitar Player' +p908 +sg4 +S'Marcantonio Raimondi' +p909 +sg6 +S'engraving' +p910 +sg8 +S'unknown date\n' +p911 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c81e.jpg' +p912 +sg12 +g27 +sa(dp913 +g2 +S'Hercules and Antaeus' +p914 +sg4 +S'Artist Information (' +p915 +sg6 +S'(artist after)' +p916 +sg8 +S'\n' +p917 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c863.jpg' +p918 +sg12 +g27 +sa(dp919 +g2 +S"Joseph and Potiphar's Wife" +p920 +sg4 +S'Artist Information (' +p921 +sg6 +S'(artist after)' +p922 +sg8 +S'\n' +p923 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c85d.jpg' +p924 +sg12 +g27 +sa(dp925 +g2 +S'Madonna under a Palm Tree' +p926 +sg4 +S'Artist Information (' +p927 +sg6 +S'(artist after)' +p928 +sg8 +S'\n' +p929 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c85e.jpg' +p930 +sg12 +g27 +sa(dp931 +g2 +S'Venus and Cupid' +p932 +sg4 +S'Artist Information (' +p933 +sg6 +S'(artist after)' +p934 +sg8 +S'\n' +p935 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c768.jpg' +p936 +sg12 +g27 +sa(dp937 +g2 +S'Two Sibyls and an Angel' +p938 +sg4 +S'Artist Information (' +p939 +sg6 +S'(artist after)' +p940 +sg8 +S'\n' +p941 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c82a.jpg' +p942 +sg12 +g27 +sa(dp943 +g2 +S'Claude Renoir, head lowered (Claude Renoir, la tete baissee)' +p944 +sg4 +S'Auguste Renoir' +p945 +sg6 +S'lithograph on japan paper [trial proof]' +p946 +sg8 +S'1904' +p947 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ca8.jpg' +p948 +sg12 +g27 +sa(dp949 +g2 +S'Hand of Rodin with a Female Figure' +p950 +sg4 +S'Auguste Rodin' +p951 +sg6 +S'plaster' +p952 +sg8 +S'1917' +p953 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f3c.jpg' +p954 +sg12 +g27 +sa(dp955 +g2 +S'Claude Renoir, turned left (Claude Renoir, tourne a gauche)' +p956 +sg4 +S'Auguste Renoir' +p957 +sg6 +S'lithograph on japan paper [trial proof]' +p958 +sg8 +S'1904' +p959 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cab.jpg' +p960 +sg12 +g27 +sa(dp961 +g2 +S'On the Beach - At Berneval (Sur la plage - a Berneval)' +p962 +sg4 +S'Auguste Renoir' +p963 +sg6 +S'drypoint' +p964 +sg8 +S'1892' +p965 +sg10 +S'http://www.nga.gov:80/thumb-l/a00099/a00099bb.jpg' +p966 +sg12 +g27 +sa(dp967 +g2 +S'Saint Jerome Hearing the Trumpet of the Last Judgment' +p968 +sg4 +S'Jusepe de Ribera' +p969 +sg6 +S'etching, drypoint, and engraving' +p970 +sg8 +S'1621' +p971 +sg10 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bda.jpg' +p972 +sg12 +g27 +sa(dp973 +g12 +g27 +sg6 +S'lithograph' +p974 +sg8 +S'1932' +p975 +sg2 +S'Viva Zapata' +p976 +sg4 +S'Diego Rivera' +p977 +sa(dp978 +g2 +S'The Adoration of the Magi' +p979 +sg4 +S'Christofano Robetta' +p980 +sg6 +S'engraving' +p981 +sg8 +S'unknown date\n' +p982 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7b4.jpg' +p983 +sg12 +g27 +sa(dp984 +g2 +S'Saint Sebastian and Saint Roch' +p985 +sg4 +S'Christofano Robetta' +p986 +sg6 +S'engraving' +p987 +sg8 +S'unknown date\n' +p988 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c707.jpg' +p989 +sg12 +g27 +sa(dp990 +g2 +S'Allegory of Mother Earth' +p991 +sg4 +S'Christofano Robetta' +p992 +sg6 +S'engraving' +p993 +sg8 +S'unknown date\n' +p994 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7af.jpg' +p995 +sg12 +g27 +sa(dp996 +g2 +S'Allegory of Carnal Love' +p997 +sg4 +S'Christofano Robetta' +p998 +sg6 +S'engraving' +p999 +sg8 +S'unknown date\n' +p1000 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7b6.jpg' +p1001 +sg12 +g27 +sa(dp1002 +g2 +S'October Rain: Posuclos in the Guardarramas, Near Madrid' +p1003 +sg4 +S'Sir John Charles Robinson' +p1004 +sg6 +S'etching and drypoint' +p1005 +sg8 +S'in or after 1876' +p1006 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a25.jpg' +p1007 +sg12 +g27 +sa(dp1008 +g2 +S'Corfe Castle: Effect of Sunshine after Rain' +p1009 +sg4 +S'Sir John Charles Robinson' +p1010 +sg6 +S'etching and drypoint' +p1011 +sg8 +S'1878' +p1012 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a20.jpg' +p1013 +sg12 +g27 +sa(dp1014 +g2 +S'The Lovers' +p1015 +sg4 +S'Auguste Rodin' +p1016 +sg6 +S'plaster' +p1017 +sg8 +S'model mid 1880s, cast after 1900' +p1018 +sg10 +S'http://www.nga.gov:80/thumb-l/a00054/a000542f.jpg' +p1019 +sg12 +g27 +sa(dp1020 +g2 +S'Retreat at Waterloo' +p1021 +sg4 +S'Auguste Raffet' +p1022 +sg6 +S'lithograph' +p1023 +sg8 +S'1835' +p1024 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dcc.jpg' +p1025 +sg12 +g27 +sa(dp1026 +g2 +S'Nocturnal Review' +p1027 +sg4 +S'Auguste Raffet' +p1028 +sg6 +S'lithograph' +p1029 +sg8 +S'1836' +p1030 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dcb.jpg' +p1031 +sg12 +g27 +sa(dp1032 +g2 +S'Et il avait dans sa main droit sept etoiles, et de sa bouch sortait une epee aigue a deux tranchants (And he had in his right hand seven stars; and out of his mouth went a sharp two-edged sword)' +p1033 +sg4 +S'Artist Information (' +p1034 +sg6 +S'French, 1867 - 1939' +p1035 +sg8 +S'(artist)' +p1036 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fe2.jpg' +p1037 +sg12 +g27 +sa(dp1038 +g2 +S"Puis l'ange prit l'encensoir (And the angel took the censer)" +p1039 +sg4 +S'Artist Information (' +p1040 +sg6 +S'French, 1867 - 1939' +p1041 +sg8 +S'(artist)' +p1042 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fdf.jpg' +p1043 +sg12 +g27 +sa(dp1044 +g2 +S'Et il tombe du ciel une grande etoile ardente (And there fell a great star from heaven burning as it were a lamp)' +p1045 +sg4 +S'Artist Information (' +p1046 +sg6 +S'French, 1867 - 1939' +p1047 +sg8 +S'(artist)' +p1048 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fdb.jpg' +p1049 +sg12 +g27 +sa(dp1050 +g2 +S'Une femme rev\xc3\xaatue du Soleil (A woman clothed with the sun)' +p1051 +sg4 +S'Artist Information (' +p1052 +sg6 +S'(artist)' +p1053 +sg8 +S'\n' +p1054 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fdd.jpg' +p1055 +sg12 +g27 +sa(dp1056 +g2 +S'Et un autre ange sortit du temple qui est au ciel, ayant lui aussi une faucille tranchante (And another angel came out of the temple which is in heaven, and he also having a sharp sickle)' +p1057 +sg4 +S'Artist Information (' +p1058 +sg6 +S'(artist)' +p1059 +sg8 +S'\n' +p1060 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fe0.jpg' +p1061 +sg12 +g27 +sa(dp1062 +g2 +S"Et le diable qui les seduisait, fut jete dans l'etang de feu et de soufre, ou es la b ete et le faux prophete (And the devil thatdeceived them was cast into the lake of fire and brimstone, where the beast and the false prophet are)" +p1063 +sg4 +S'Artist Information (' +p1064 +sg6 +S'(artist)' +p1065 +sg8 +S'\n' +p1066 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fd8.jpg' +p1067 +sg12 +g27 +sa(dp1068 +g2 +S"Et moi, Jean, Je vis la sainte cite, la nouvelle Jerusalem, qui descendait du ciel, d'aupres de dieu (And I John saw the holy city, new Jerusalem, coming down from God out of heaven)" +p1069 +sg4 +S'Artist Information (' +p1070 +sg6 +S'French, 1867 - 1939' +p1071 +sg8 +S'(artist)' +p1072 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fd9.jpg' +p1073 +sg12 +g27 +sa(dp1074 +g2 +S"C'est moi, Jean, qui ai vu et qui ai oie ces choses (And I John saw these things and heard them" +p1075 +sg4 +S'Artist Information (' +p1076 +sg6 +S'French, 1867 - 1939' +p1077 +sg8 +S'(artist)' +p1078 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fde.jpg' +p1079 +sg12 +g27 +sa(dp1080 +g2 +S'Head of a Woman' +p1081 +sg4 +S'Auguste Rodin' +p1082 +sg6 +S'plaster' +p1083 +sg8 +S'possibly 1880s' +p1084 +sg10 +S'http://www.nga.gov:80/thumb-l/a00054/a0005430.jpg' +p1085 +sg12 +g27 +sa(dp1086 +g2 +S'Puis je vis, dans la main droite de celui quietait assis sur le trone, un livre ecritdedans et dehors, scelle de sept sceaux (And I saw in the right hand of him that sat on the throne a book written within and on the backside, sealed with seven seals )' +p1087 +sg4 +S'Artist Information (' +p1088 +sg6 +S'French, 1867 - 1939' +p1089 +sg8 +S'(artist)' +p1090 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fd7.jpg' +p1091 +sg12 +g27 +sa(dp1092 +g2 +S'Et le lia pour mille ans (And bound him a thousand years)' +p1093 +sg4 +S'Artist Information (' +p1094 +sg6 +S'(artist)' +p1095 +sg8 +S'\n' +p1096 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fe1.jpg' +p1097 +sg12 +g27 +sa(dp1098 +g2 +S'Et celui qui \xc3\xa9tait mont\xc3\xa9 dessus se nommait la Mort (And his name that sat on him was Death)' +p1099 +sg4 +S'Artist Information (' +p1100 +sg6 +S'French, 1867 - 1939' +p1101 +sg8 +S'(artist)' +p1102 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fdc.jpg' +p1103 +sg12 +g27 +sa(dp1104 +g2 +S"Apres cela je vis descendre du ciel un ange qui avait la clef de l'abime, et une grande chaine en sa main (And I saw an angel come down from heaven, having the key of the bottomless pit and a great chain in his hand)" +p1105 +sg4 +S'Artist Information (' +p1106 +sg6 +S'(artist)' +p1107 +sg8 +S'\n' +p1108 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fda.jpg' +p1109 +sg12 +g27 +sa(dp1110 +g2 +S'Frontispiece' +p1111 +sg4 +S'Odilon Redon' +p1112 +sg6 +S'lithograph' +p1113 +sg8 +S'1889' +p1114 +sg10 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d6f.jpg' +p1115 +sg12 +g27 +sa(dp1116 +g2 +S'Saint-Antoine...A travers ses longs cheveux qui lui couvraient la figure, j\'ai cru reconnaitre Ammonaria (Saint Anthony: "Beneathe her long hair , which covered her face, I thought I recognized Ammonaria)' +p1117 +sg4 +S'Odilon Redon' +p1118 +sg6 +S'lithograph' +p1119 +sg8 +S'1889' +p1120 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c85.jpg' +p1121 +sg12 +g27 +sa(dp1122 +g2 +S'Une longue chrysalide couleur de sang (A longchrysalis, the color of blood)' +p1123 +sg4 +S'Odilon Redon' +p1124 +sg6 +S'lithograph' +p1125 +sg8 +S'1889' +p1126 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c89.jpg' +p1127 +sg12 +g27 +sa(dp1128 +g2 +S'La Mort: Mon ironie depasse toutes les autres! (Death: My iron surpasses all others!)' +p1129 +sg4 +S'Odilon Redon' +p1130 +sg6 +S'lithograph' +p1131 +sg8 +S'1889' +p1132 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c88.jpg' +p1133 +sg12 +g27 +sa(dp1134 +g2 +S'Saint-Antoine: Il doit y avoir quelque part des figures primordiales dont les corps ne sont que les images (Saint Anthony: "Somewhere there must be primordial shapes whose bodiesare only images")' +p1135 +sg4 +S'Odilon Redon' +p1136 +sg6 +S'lithograph' +p1137 +sg8 +S'1889' +p1138 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c8b.jpg' +p1139 +sg12 +g27 +sa(dp1140 +g2 +S'Le Sphynx...mon regard que rien ne peut devier, demeure tendu a travers les choses sur un horizon inaccessible. La Chimere: Moi,Je suis legere et joyeuse (The Sphinx: "My gaze, which nothing can deflect, passes through the things and remains fixed on an inaccessible horizon." The Chimera: "I am weightless and joyful")' +p1141 +sg4 +S'Odilon Redon' +p1142 +sg6 +S'lithograph' +p1143 +sg8 +S'1889' +p1144 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c87.jpg' +p1145 +sg12 +g27 +sa(dp1146 +g2 +S'Head of Saint John the Baptist' +p1147 +sg4 +S'Auguste Rodin' +p1148 +sg6 +S'plaster' +p1149 +sg8 +S'1887' +p1150 +sg10 +S'http://www.nga.gov:80/thumb-l/a00054/a0005431.jpg' +p1151 +sg12 +g27 +sa(dp1152 +g2 +S'Les Sciapodes: La tete le plus bas possible, c\'est le secret du bonheur! (The Skiapods: "The head as low as possible, that is the secret of happiness!")' +p1153 +sg4 +S'Odilon Redon' +p1154 +sg6 +S'lithograph' +p1155 +sg8 +S'1889' +p1156 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c86.jpg' +p1157 +sg12 +g27 +sa(dp1158 +g2 +S"L'Aile (The Wing)" +p1159 +sg4 +S'Odilon Redon' +p1160 +sg6 +S'lithograph' +p1161 +sg8 +S'1893' +p1162 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c94.jpg' +p1163 +sg12 +g27 +sa(dp1164 +g12 +g27 +sg6 +S'color etching' +p1165 +sg8 +S'1932' +p1166 +sg2 +S'The Giaour: Title Page' +p1167 +sg4 +S'Imre Reiner' +p1168 +sa(dp1169 +g12 +g27 +sg6 +S'color etching' +p1170 +sg8 +S'1932' +p1171 +sg2 +S'The Giaour: Title Page' +p1172 +sg4 +S'Imre Reiner' +p1173 +sa(dp1174 +g12 +g27 +sg6 +S'color etching' +p1175 +sg8 +S'1932' +p1176 +sg2 +S'The Giaour: Title Page' +p1177 +sg4 +S'Imre Reiner' +p1178 +sa(dp1179 +g12 +g27 +sg6 +S'etching' +p1180 +sg8 +S'1932' +p1181 +sg2 +S'The Giaour: Title Page' +p1182 +sg4 +S'Imre Reiner' +p1183 +sa(dp1184 +g12 +g27 +sg6 +S'color etching' +p1185 +sg8 +S'1932' +p1186 +sg2 +S'The Giaour: Title Page' +p1187 +sg4 +S'Imre Reiner' +p1188 +sa(dp1189 +g12 +g27 +sg6 +S'pen and black, red and green ink with colored chalk on laid paper' +p1190 +sg8 +S'1932' +p1191 +sg2 +S'Cyrano and a Clown' +p1192 +sg4 +S'Imre Reiner' +p1193 +sa(dp1194 +g12 +g27 +sg6 +S'pen and black ink with black and yellow chalk on laid paper' +p1195 +sg8 +S'1932' +p1196 +sg2 +S'Two Gentlemen' +p1197 +sg4 +S'Imre Reiner' +p1198 +sa(dp1199 +g2 +S'Right Hand' +p1200 +sg4 +S'Auguste Rodin' +p1201 +sg6 +S'plaster' +p1202 +sg8 +S'possibly 1880' +p1203 +sg10 +S'http://www.nga.gov:80/thumb-l/a00054/a0005432.jpg' +p1204 +sg12 +g27 +sa(dp1205 +g12 +g27 +sg6 +S'pen and black ink with colored chalk on blue paper' +p1206 +sg8 +S'1932' +p1207 +sg2 +S'Gentleman with Sword' +p1208 +sg4 +S'Imre Reiner' +p1209 +sa(dp1210 +g12 +g27 +sg6 +S'pen and black, blue and green ink with blue and red chalk on laid paper' +p1211 +sg8 +S'1932' +p1212 +sg2 +S'Title Page' +p1213 +sg4 +S'Imre Reiner' +p1214 +sa(dp1215 +g12 +g27 +sg6 +S'pen and white ink with green and blue chalk on black paper' +p1216 +sg8 +S'1932' +p1217 +sg2 +S'The Balcony' +p1218 +sg4 +S'Imre Reiner' +p1219 +sa(dp1220 +g12 +g27 +sg6 +S'pen and black ink with colored chalk on laid paper' +p1221 +sg8 +S'1932' +p1222 +sg2 +S'Gentleman and Lady' +p1223 +sg4 +S'Imre Reiner' +p1224 +sa(dp1225 +g12 +g27 +sg6 +S'pen and brown ink with red and black chalk on orange paper' +p1226 +sg8 +S'1932' +p1227 +sg2 +S'Woman and Two Soldiers at a Campfire' +p1228 +sg4 +S'Imre Reiner' +p1229 +sa(dp1230 +g12 +g27 +sg6 +S'pen and black ink with colored chalk on blue paper' +p1231 +sg8 +S'1932' +p1232 +sg2 +S'Flowers' +p1233 +sg4 +S'Imre Reiner' +p1234 +sa(dp1235 +g12 +g27 +sg6 +S'pen and black ink with colored chalk on laid paper' +p1236 +sg8 +S'1932' +p1237 +sg2 +S'Interior Scene with Five Figures and Set Table' +p1238 +sg4 +S'Imre Reiner' +p1239 +sa(dp1240 +g12 +g27 +sg6 +S'pen and black, blue and red ink with blue and red chalk on laid paper' +p1241 +sg8 +S'1932' +p1242 +sg2 +S'A Duel' +p1243 +sg4 +S'Imre Reiner' +p1244 +sa(dp1245 +g2 +S'La Ronde' +p1246 +sg4 +S'Auguste Rodin' +p1247 +sg6 +S'drypoint' +p1248 +sg8 +S'probably 1883' +p1249 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cbd.jpg' +p1250 +sg12 +g27 +sa(dp1251 +g2 +S'Antonin Proust' +p1252 +sg4 +S'Auguste Rodin' +p1253 +sg6 +S'drypoint' +p1254 +sg8 +S'1885' +p1255 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cc1.jpg' +p1256 +sg12 +g27 +sa(dp1257 +g2 +S'Lady Elizabeth Delm\xc3\xa9 and Her Children' +p1258 +sg4 +S'Sir Joshua Reynolds' +p1259 +sg6 +S'oil on canvas' +p1260 +sg8 +S'1777-1779' +p1261 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a000056b.jpg' +p1262 +sg12 +S"Reynolds sought to elevate British painting, including portraiture, to the lofty realms of classical expression. After traveling to Rome, Florence, Bologna, and Venice, Reynolds became the first president of the Royal Academy, which had been founded in 1768. Through his teaching at the Academy and the publication of his annual lectures, the \n In \n The rich, warm colors of the informal landscape and the beautifully controlled movement of light into the deep reaches of the background owe much to Titian. Finally, Reynolds' sensitive use of everyday, intimate details prevents the portrait from becoming remote and unapproachable. The tenderness with which Lady Delmé holds her two sons, the nuances of personality in the three faces, the realistic costumes of the children, and the attentive posture of the Skye terrier give the painting a worldly, familiar context.\n\n " +p1263 +sa(dp1264 +g2 +S'Right Hand' +p1265 +sg4 +S'Auguste Rodin' +p1266 +sg6 +S'plaster' +p1267 +sg8 +S'possibly 1880' +p1268 +sg10 +S'http://www.nga.gov:80/thumb-l/a00054/a0005433.jpg' +p1269 +sg12 +g27 +sa(dp1270 +g2 +S'Antonin Proust' +p1271 +sg4 +S'Auguste Rodin' +p1272 +sg6 +S'drypoint' +p1273 +sg8 +S'1885' +p1274 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cc0.jpg' +p1275 +sg12 +g27 +sa(dp1276 +g2 +S'Victor Hugo, De Trois Quarts' +p1277 +sg4 +S'Auguste Rodin' +p1278 +sg6 +S'drypoint' +p1279 +sg8 +S'1884' +p1280 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cbf.jpg' +p1281 +sg12 +g27 +sa(dp1282 +g2 +S'Victor Hugo, De Face' +p1283 +sg4 +S'Auguste Rodin' +p1284 +sg6 +S'drypoint' +p1285 +sg8 +S'1886' +p1286 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cbe.jpg' +p1287 +sg12 +g27 +sa(dp1288 +g2 +S'Victor Hugo, De Face' +p1289 +sg4 +S'Auguste Rodin' +p1290 +sg6 +S'drypoint' +p1291 +sg8 +S'1886' +p1292 +sg10 +S'http://www.nga.gov:80/thumb-l/a00099/a00099c0.jpg' +p1293 +sg12 +g27 +sa(dp1294 +g2 +S'Victor Hugo, De Trois Quarts' +p1295 +sg4 +S'Auguste Rodin' +p1296 +sg6 +S'drypoint' +p1297 +sg8 +S'1884' +p1298 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cc3.jpg' +p1299 +sg12 +g27 +sa(dp1300 +g2 +S'Ames du Purgatoire' +p1301 +sg4 +S'Auguste Rodin' +p1302 +sg6 +S'drypoint' +p1303 +sg8 +S'1893' +p1304 +sg10 +S'http://www.nga.gov:80/thumb-l/a00099/a00099c6.jpg' +p1305 +sg12 +g27 +sa(dp1306 +g2 +S'Henri Becque' +p1307 +sg4 +S'Auguste Rodin' +p1308 +sg6 +S'drypoint' +p1309 +sg8 +S'1885' +p1310 +sg10 +S'http://www.nga.gov:80/thumb-l/a00099/a00099bf.jpg' +p1311 +sg12 +g27 +sa(dp1312 +g2 +S'The Parable of the Sower (Le Semeur de Paraboles)' +p1313 +sg4 +S'F\xc3\xa9licien Rops' +p1314 +sg6 +S'etching' +p1315 +sg8 +S'1876' +p1316 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d801.jpg' +p1317 +sg12 +g27 +sa(dp1318 +g2 +S'Ornament Panel: Victoria Augusta' +p1319 +sg4 +S'Nicoletto da Modena' +p1320 +sg6 +S'engraving' +p1321 +sg8 +S'c. 1507' +p1322 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c84e.jpg' +p1323 +sg12 +g27 +sa(dp1324 +g2 +S'Ornament Panel with a Birdcage' +p1325 +sg4 +S'Nicoletto da Modena' +p1326 +sg6 +S'engraving' +p1327 +sg8 +S'c. 1507' +p1328 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c84d.jpg' +p1329 +sg12 +g27 +sa(dp1330 +g2 +S'Right Hand' +p1331 +sg4 +S'Auguste Rodin' +p1332 +sg6 +S'plaster' +p1333 +sg8 +S'possibly 1880' +p1334 +sg10 +S'http://www.nga.gov:80/thumb-l/a00054/a0005434.jpg' +p1335 +sg12 +g27 +sa(dp1336 +g2 +S'Ornament Panel: Mars, God of Battles' +p1337 +sg4 +S'Nicoletto da Modena' +p1338 +sg6 +S'engraving' +p1339 +sg8 +S'c. 1507' +p1340 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c84c.jpg' +p1341 +sg12 +g27 +sa(dp1342 +g2 +S'Ornament Panel with Orpheus and the Judgment of Paris' +p1343 +sg4 +S'Nicoletto da Modena' +p1344 +sg6 +S'engraving' +p1345 +sg8 +S'c. 1507' +p1346 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c84b.jpg' +p1347 +sg12 +g27 +sa(dp1348 +g2 +S'Triton Carrying a Child' +p1349 +sg4 +S'Nicoletto da Modena' +p1350 +sg6 +S'engraving' +p1351 +sg8 +S'c. 1507' +p1352 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c767.jpg' +p1353 +sg12 +g27 +sa(dp1354 +g2 +S'Allegorical Figure: Woman with Sword and Sphere' +p1355 +sg4 +S'Artist Information (' +p1356 +sg6 +S'(artist)' +p1357 +sg8 +S'\n' +p1358 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c72a.jpg' +p1359 +sg12 +g27 +sa(dp1360 +g2 +S'Roman Warrior' +p1361 +sg4 +S'Nicoletto da Modena' +p1362 +sg6 +S'engraving' +p1363 +sg8 +S'c. 1507' +p1364 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c765.jpg' +p1365 +sg12 +g27 +sa(dp1366 +g2 +S'Fama' +p1367 +sg4 +S'Nicoletto da Modena' +p1368 +sg6 +S'engraving' +p1369 +sg8 +S'c. 1507' +p1370 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c763.jpg' +p1371 +sg12 +g27 +sa(dp1372 +g2 +S'Andrew D. White' +p1373 +sg4 +S'Jacques Reich' +p1374 +sg6 +S'etching' +p1375 +sg8 +S'unknown date\n' +p1376 +sg10 +S'http://www.nga.gov:80/thumb-l/a000fb/a000fb10.jpg' +p1377 +sg12 +g27 +sa(dp1378 +g2 +S'Edgar Allen Poe' +p1379 +sg4 +S'Jacques Reich' +p1380 +sg6 +S'etching' +p1381 +sg8 +S'unknown date\n' +p1382 +sg10 +S'http://www.nga.gov:80/thumb-l/a000fb/a000fb19.jpg' +p1383 +sg12 +g27 +sa(dp1384 +g12 +g27 +sg6 +S'etching' +p1385 +sg8 +S'unknown date\n' +p1386 +sg2 +S'Splashing Horses' +p1387 +sg4 +S'Philip Reisman' +p1388 +sa(dp1389 +g12 +g27 +sg6 +S'etching' +p1390 +sg8 +S'unknown date\n' +p1391 +sg2 +S'John Burroughs' +p1392 +sg4 +S'M. Paul Roche' +p1393 +sa(dp1394 +g2 +S'Left Hand' +p1395 +sg4 +S'Auguste Rodin' +p1396 +sg6 +S'plaster' +p1397 +sg8 +S'possibly 1880' +p1398 +sg10 +S'http://www.nga.gov:80/thumb-l/a00054/a0005435.jpg' +p1399 +sg12 +g27 +sa(dp1400 +g2 +S'Charles Balthazar Julien Fevre de Saint Memin' +p1401 +sg4 +S'Max Rosenthal' +p1402 +sg6 +S'mezzotint' +p1403 +sg8 +S'unknown date\n' +p1404 +sg10 +S'http://www.nga.gov:80/thumb-l/a000fb/a000fb0e.jpg' +p1405 +sg12 +g27 +sa(dp1406 +g2 +S'Charles Balthazar Julien Fevre de Saint Memin' +p1407 +sg4 +S'Max Rosenthal' +p1408 +sg6 +S'mezzotint' +p1409 +sg8 +S'unknown date\n' +p1410 +sg10 +S'http://www.nga.gov:80/thumb-l/a000fb/a000fb0f.jpg' +p1411 +sg12 +g27 +sa(dp1412 +g2 +S'Louis, Chevalier de Toussard' +p1413 +sg4 +S'Max Rosenthal' +p1414 +sg6 +S'mezzotint' +p1415 +sg8 +S'1900' +p1416 +sg10 +S'http://www.nga.gov:80/thumb-l/a000fb/a000fb0d.jpg' +p1417 +sg12 +g27 +sa(dp1418 +g2 +S'Louis, Chevalier de Toussard' +p1419 +sg4 +S'Max Rosenthal' +p1420 +sg6 +S'mezzotint' +p1421 +sg8 +S'1900' +p1422 +sg10 +S'http://www.nga.gov:80/thumb-l/a000fb/a000fb0c.jpg' +p1423 +sg12 +g27 +sa(dp1424 +g12 +g27 +sg6 +S'drypoint' +p1425 +sg8 +S'1941' +p1426 +sg2 +S'Blair Tower from Laughton' +p1427 +sg4 +S'Louis Conrad Rosenberg' +p1428 +sa(dp1429 +g12 +g27 +sg6 +S'etching' +p1430 +sg8 +S'1925' +p1431 +sg2 +S'Mudejar Doors, Seville' +p1432 +sg4 +S'Louis Conrad Rosenberg' +p1433 +sa(dp1434 +g12 +g27 +sg6 +S'etching [cancellation proof]' +p1435 +sg8 +S'1925' +p1436 +sg2 +S'Mudejar Doors, Seville' +p1437 +sg4 +S'Louis Conrad Rosenberg' +p1438 +sa(dp1439 +g12 +g27 +sg6 +S'etching' +p1440 +sg8 +S'1922' +p1441 +sg2 +S'St. Prassede, Rome' +p1442 +sg4 +S'Louis Conrad Rosenberg' +p1443 +sa(dp1444 +g12 +g27 +sg6 +S'drypoint on blue-green paper' +p1445 +sg8 +S'1927' +p1446 +sg2 +S'Campo dei Gesuiti, Venice' +p1447 +sg4 +S'Louis Conrad Rosenberg' +p1448 +sa(dp1449 +g12 +g27 +sg6 +S'drypoint' +p1450 +sg8 +S'1925' +p1451 +sg2 +S'Plaza del Rey, Barcelona' +p1452 +sg4 +S'Louis Conrad Rosenberg' +p1453 +sa(dp1454 +g2 +S'Right Foot' +p1455 +sg4 +S'Auguste Rodin' +p1456 +sg6 +S'plaster' +p1457 +sg8 +S'possibly 1880' +p1458 +sg10 +S'http://www.nga.gov:80/thumb-l/a00054/a0005436.jpg' +p1459 +sg12 +g27 +sa(dp1460 +g12 +g27 +sg6 +S'etching in brown' +p1461 +sg8 +S'1923' +p1462 +sg2 +S'San Gimignano' +p1463 +sg4 +S'Louis Conrad Rosenberg' +p1464 +sa(dp1465 +g12 +g27 +sg6 +S'drypoint' +p1466 +sg8 +S'1929' +p1467 +sg2 +S'Drying Nets, Villefranche' +p1468 +sg4 +S'Louis Conrad Rosenberg' +p1469 +sa(dp1470 +g12 +g27 +sg6 +S'etching' +p1471 +sg8 +S'1923' +p1472 +sg2 +S'Moorish Archway, Toledo' +p1473 +sg4 +S'Louis Conrad Rosenberg' +p1474 +sa(dp1475 +g12 +g27 +sg6 +S'drypoint' +p1476 +sg8 +S'1927' +p1477 +sg2 +S'Temple of Minerva Medica, Rome' +p1478 +sg4 +S'Louis Conrad Rosenberg' +p1479 +sa(dp1480 +g12 +g27 +sg6 +S'drypoint' +p1481 +sg8 +S'1927' +p1482 +sg2 +S'The Aurelian Walls, Rome' +p1483 +sg4 +S'Louis Conrad Rosenberg' +p1484 +sa(dp1485 +g12 +g27 +sg6 +S'drypoint' +p1486 +sg8 +S'1927' +p1487 +sg2 +S'Piazza della Rotonda, Rome' +p1488 +sg4 +S'Louis Conrad Rosenberg' +p1489 +sa(dp1490 +g12 +g27 +sg6 +S'drypoint' +p1491 +sg8 +S'1926' +p1492 +sg2 +S'Loggia della Podesta, San Gimignano' +p1493 +sg4 +S'Louis Conrad Rosenberg' +p1494 +sa(dp1495 +g12 +g27 +sg6 +S'etching' +p1496 +sg8 +S'1925' +p1497 +sg2 +S'Arab Coffee House, Tangiers' +p1498 +sg4 +S'Louis Conrad Rosenberg' +p1499 +sa(dp1500 +g12 +g27 +sg6 +S'drypoint' +p1501 +sg8 +S'1925' +p1502 +sg2 +S'The Little Market, Tours' +p1503 +sg4 +S'Louis Conrad Rosenberg' +p1504 +sa(dp1505 +g12 +g27 +sg6 +S'etching' +p1506 +sg8 +S'1924' +p1507 +sg2 +S'Chatelet, Vitre' +p1508 +sg4 +S'Louis Conrad Rosenberg' +p1509 +sa(dp1510 +g2 +S'Satyrs at Play' +p1511 +sg4 +S'Clodion' +p1512 +sg6 +S'terracotta' +p1513 +sg8 +S'c. 1783/1785' +p1514 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c02.jpg' +p1515 +sg12 +g27 +sa(dp1516 +g12 +g27 +sg6 +S'etching' +p1517 +sg8 +S'1921' +p1518 +sg2 +S"St. Peter's, Rome" +p1519 +sg4 +S'Louis Conrad Rosenberg' +p1520 +sa(dp1521 +g12 +g27 +sg6 +S'drypoint' +p1522 +sg8 +S'1925' +p1523 +sg2 +S'La Rue Mirebeau, Bourges' +p1524 +sg4 +S'Louis Conrad Rosenberg' +p1525 +sa(dp1526 +g12 +g27 +sg6 +S'drypoint on blue-green paper' +p1527 +sg8 +S'1927' +p1528 +sg2 +S'Aya Sophia No.2' +p1529 +sg4 +S'Louis Conrad Rosenberg' +p1530 +sa(dp1531 +g12 +g27 +sg6 +S'drypoint' +p1532 +sg8 +S'1926' +p1533 +sg2 +S'La Badia, Florence' +p1534 +sg4 +S'Louis Conrad Rosenberg' +p1535 +sa(dp1536 +g12 +g27 +sg6 +S'etching' +p1537 +sg8 +S'1921' +p1538 +sg2 +S'Little Wine Shop, Rome' +p1539 +sg4 +S'Louis Conrad Rosenberg' +p1540 +sa(dp1541 +g12 +g27 +sg6 +S'etching' +p1542 +sg8 +S'1924' +p1543 +sg2 +S'St. Malo' +p1544 +sg4 +S'Louis Conrad Rosenberg' +p1545 +sa(dp1546 +g12 +g27 +sg6 +S'etching' +p1547 +sg8 +S'1922' +p1548 +sg2 +S'Spanish Steps, Rome' +p1549 +sg4 +S'Louis Conrad Rosenberg' +p1550 +sa(dp1551 +g12 +g27 +sg6 +S'drypoint' +p1552 +sg8 +S'1924' +p1553 +sg2 +S'Transepts of Strasbourg' +p1554 +sg4 +S'Louis Conrad Rosenberg' +p1555 +sa(dp1556 +g12 +g27 +sg6 +S'drypoint' +p1557 +sg8 +S'1926' +p1558 +sg2 +S'Santa Cecilia, Ronda' +p1559 +sg4 +S'Louis Conrad Rosenberg' +p1560 +sa(dp1561 +g12 +g27 +sg6 +S'etching' +p1562 +sg8 +S'1924' +p1563 +sg2 +S'Notre Dame, Beaune' +p1564 +sg4 +S'Louis Conrad Rosenberg' +p1565 +sa(dp1566 +g2 +S'Nude Woman Carrying Vase on Head' +p1567 +sg4 +S'Auguste Rodin' +p1568 +sg6 +S'graphite and watercolor' +p1569 +sg8 +S'1909' +p1570 +sg10 +S'http://www.nga.gov:80/thumb-l/a00073/a000730b.jpg' +p1571 +sg12 +g27 +sa(dp1572 +g12 +g27 +sg6 +S'etching' +p1573 +sg8 +S'1924' +p1574 +sg2 +S'Notre Dame du Val, Provins' +p1575 +sg4 +S'Louis Conrad Rosenberg' +p1576 +sa(dp1577 +g12 +g27 +sg6 +S'etching' +p1578 +sg8 +S'1924' +p1579 +sg2 +S'Street in Constantine, Algiers' +p1580 +sg4 +S'Louis Conrad Rosenberg' +p1581 +sa(dp1582 +g12 +g27 +sg6 +S'drypoint' +p1583 +sg8 +S'1926' +p1584 +sg2 +S'Hospital of Santa Cruz, Barcelona' +p1585 +sg4 +S'Louis Conrad Rosenberg' +p1586 +sa(dp1587 +g12 +g27 +sg6 +S'drypoint' +p1588 +sg8 +S'1927' +p1589 +sg2 +S"St. Mark's Doorway, Venice" +p1590 +sg4 +S'Louis Conrad Rosenberg' +p1591 +sa(dp1592 +g12 +g27 +sg6 +S'etching' +p1593 +sg8 +S'1925' +p1594 +sg2 +S'The Fez Gate, Tangiers' +p1595 +sg4 +S'Louis Conrad Rosenberg' +p1596 +sa(dp1597 +g12 +g27 +sg6 +S'drypoint' +p1598 +sg8 +S'1927' +p1599 +sg2 +S'House of Phanar, Constantinople' +p1600 +sg4 +S'Louis Conrad Rosenberg' +p1601 +sa(dp1602 +g12 +g27 +sg6 +S'drypoint' +p1603 +sg8 +S'1926' +p1604 +sg2 +S'Porta Ostiense, Rome' +p1605 +sg4 +S'Louis Conrad Rosenberg' +p1606 +sa(dp1607 +g12 +g27 +sg6 +S'drypoint' +p1608 +sg8 +S'1928' +p1609 +sg2 +S'Via del Pianta, Rome' +p1610 +sg4 +S'Louis Conrad Rosenberg' +p1611 +sa(dp1612 +g12 +g27 +sg6 +S'drypoint' +p1613 +sg8 +S'1927' +p1614 +sg2 +S'Ponte Fabricio, Rome' +p1615 +sg4 +S'Louis Conrad Rosenberg' +p1616 +sa(dp1617 +g12 +g27 +sg6 +S'drypoint' +p1618 +sg8 +S'1924' +p1619 +sg2 +S'Place St. Louis, Metz' +p1620 +sg4 +S'Louis Conrad Rosenberg' +p1621 +sa(dp1622 +g2 +S'Figure Bending Forward with Right Knee Raised' +p1623 +sg4 +S'Auguste Rodin' +p1624 +sg6 +S'graphite and watercolor' +p1625 +sg8 +S'unknown date\n' +p1626 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a0007407.jpg' +p1627 +sg12 +g27 +sa(dp1628 +g12 +g27 +sg6 +S'drypoint' +p1629 +sg8 +S'1927' +p1630 +sg2 +S'Piazza di Spagna, Rome' +p1631 +sg4 +S'Louis Conrad Rosenberg' +p1632 +sa(dp1633 +g12 +g27 +sg6 +S'drypoint' +p1634 +sg8 +S'1927' +p1635 +sg2 +S'Loggia of the Doges Palace, Venice' +p1636 +sg4 +S'Louis Conrad Rosenberg' +p1637 +sa(dp1638 +g12 +g27 +sg6 +S'drypoint' +p1639 +sg8 +S'1927' +p1640 +sg2 +S'Grand Canal, Venice' +p1641 +sg4 +S'Louis Conrad Rosenberg' +p1642 +sa(dp1643 +g12 +g27 +sg6 +S'drypoint' +p1644 +sg8 +S'1926' +p1645 +sg2 +S'Rue de Chartres, St. Malo' +p1646 +sg4 +S'Louis Conrad Rosenberg' +p1647 +sa(dp1648 +g12 +g27 +sg6 +S'drypoint' +p1649 +sg8 +S'1925' +p1650 +sg2 +S'Carrera del Darro, Granada' +p1651 +sg4 +S'Louis Conrad Rosenberg' +p1652 +sa(dp1653 +g12 +g27 +sg6 +S'etching' +p1654 +sg8 +S'1922' +p1655 +sg2 +S"St. Peter's Colonnade, Rome" +p1656 +sg4 +S'Louis Conrad Rosenberg' +p1657 +sa(dp1658 +g12 +g27 +sg6 +S'drypoint' +p1659 +sg8 +S'1941' +p1660 +sg2 +S'Fulo Hall, Institute for Advanced Study, Princeton University' +p1661 +sg4 +S'Louis Conrad Rosenberg' +p1662 +sa(dp1663 +g12 +g27 +sg6 +S'drypoint' +p1664 +sg8 +S'1929' +p1665 +sg2 +S'Rue des Petites Soeurs, Grasse' +p1666 +sg4 +S'Louis Conrad Rosenberg' +p1667 +sa(dp1668 +g12 +g27 +sg6 +S'drypoint' +p1669 +sg8 +S'1929' +p1670 +sg2 +S'Place Victor Hugo, Lisieux' +p1671 +sg4 +S'Louis Conrad Rosenberg' +p1672 +sa(dp1673 +g12 +g27 +sg6 +S'drypoint' +p1674 +sg8 +S'1929' +p1675 +sg2 +S'The Harbor, Villefranche sur Mer' +p1676 +sg4 +S'Louis Conrad Rosenberg' +p1677 +sa(dp1678 +g2 +S'Figure Facing Forward' +p1679 +sg4 +S'Auguste Rodin' +p1680 +sg6 +S'graphite and watercolor' +p1681 +sg8 +S'unknown date\n' +p1682 +sg10 +S'http://www.nga.gov:80/thumb-l/a00037/a00037e9.jpg' +p1683 +sg12 +g27 +sa(dp1684 +g12 +g27 +sg6 +S'drypoint' +p1685 +sg8 +S'1929' +p1686 +sg2 +S'Cours Saleya, Nice' +p1687 +sg4 +S'Louis Conrad Rosenberg' +p1688 +sa(dp1689 +g12 +g27 +sg6 +S'drypoint' +p1690 +sg8 +S'1929' +p1691 +sg2 +S'Acropolis, Athens' +p1692 +sg4 +S'Louis Conrad Rosenberg' +p1693 +sa(dp1694 +g12 +g27 +sg6 +S'drypoint' +p1695 +sg8 +S'1925' +p1696 +sg2 +S'Tour Goguin, Nevers' +p1697 +sg4 +S'Louis Conrad Rosenberg' +p1698 +sa(dp1699 +g12 +g27 +sg6 +S'drypoint' +p1700 +sg8 +S'1929' +p1701 +sg2 +S"Tintoretto's House in the Rio della Sensa, Venice" +p1702 +sg4 +S'Louis Conrad Rosenberg' +p1703 +sa(dp1704 +g12 +g27 +sg6 +S'drypoint' +p1705 +sg8 +S'1928' +p1706 +sg2 +S'Quai de la Marine, Villefranche' +p1707 +sg4 +S'Louis Conrad Rosenberg' +p1708 +sa(dp1709 +g12 +g27 +sg6 +S'drypoint on blue-green paper' +p1710 +sg8 +S'1927' +p1711 +sg2 +S'Mosque of Sultan Bayazid, Constantinople' +p1712 +sg4 +S'Louis Conrad Rosenberg' +p1713 +sa(dp1714 +g12 +g27 +sg6 +S'drypoint' +p1715 +sg8 +S'1928' +p1716 +sg2 +S'Little Greek Cafe, Athens' +p1717 +sg4 +S'Louis Conrad Rosenberg' +p1718 +sa(dp1719 +g12 +g27 +sg6 +S'drypoint on blue-green paper' +p1720 +sg8 +S'1927' +p1721 +sg2 +S'Grand Bazaar, Constantinople' +p1722 +sg4 +S'Louis Conrad Rosenberg' +p1723 +sa(dp1724 +g12 +g27 +sg6 +S'etching' +p1725 +sg8 +S'1922' +p1726 +sg2 +S'Campo di Fiore, Rome' +p1727 +sg4 +S'Louis Conrad Rosenberg' +p1728 +sa(dp1729 +g12 +g27 +sg6 +S'drypoint' +p1730 +sg8 +S'1925' +p1731 +sg2 +S'Torre del Ora, Seville' +p1732 +sg4 +S'Louis Conrad Rosenberg' +p1733 +sa(dp1734 +g2 +S'Rear View of Female Figure in Action' +p1735 +sg4 +S'Auguste Rodin' +p1736 +sg6 +S'graphite and watercolor over brown crayon' +p1737 +sg8 +S'1904' +p1738 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a0007408.jpg' +p1739 +sg12 +g27 +sa(dp1740 +g12 +g27 +sg6 +S'etching' +p1741 +sg8 +S'1923' +p1742 +sg2 +S'Sospel' +p1743 +sg4 +S'Louis Conrad Rosenberg' +p1744 +sa(dp1745 +g12 +g27 +sg6 +S'drypoint' +p1746 +sg8 +S'1925' +p1747 +sg2 +S'Gate of Justice, Alhambra, Granada' +p1748 +sg4 +S'Louis Conrad Rosenberg' +p1749 +sa(dp1750 +g12 +g27 +sg6 +S'etching' +p1751 +sg8 +S'1924' +p1752 +sg2 +S'Grande Porte, St. Malo' +p1753 +sg4 +S'Louis Conrad Rosenberg' +p1754 +sa(dp1755 +g12 +g27 +sg6 +S'etching' +p1756 +sg8 +S'1925' +p1757 +sg2 +S'St. Etienne, Toulouse' +p1758 +sg4 +S'Louis Conrad Rosenberg' +p1759 +sa(dp1760 +g12 +g27 +sg6 +S'drypoint' +p1761 +sg8 +S'1925' +p1762 +sg2 +S'House of the Salmon, Chartres' +p1763 +sg4 +S'Louis Conrad Rosenberg' +p1764 +sa(dp1765 +g12 +g27 +sg6 +S'drypoint' +p1766 +sg8 +S'1924' +p1767 +sg2 +S'Via Appia Antica, Rome' +p1768 +sg4 +S'Louis Conrad Rosenberg' +p1769 +sa(dp1770 +g12 +g27 +sg6 +S'etching' +p1771 +sg8 +S'1921' +p1772 +sg2 +S'Island in the Tiber, Rome' +p1773 +sg4 +S'Louis Conrad Rosenberg' +p1774 +sa(dp1775 +g12 +g27 +sg6 +S'drypoint' +p1776 +sg8 +S'1927' +p1777 +sg2 +S'Aya Sophia, Constantinople' +p1778 +sg4 +S'Louis Conrad Rosenberg' +p1779 +sa(dp1780 +g12 +g27 +sg6 +S'drypoint' +p1781 +sg8 +S'1926' +p1782 +sg2 +S'Grande Mosque, Kairouan, Tunisia' +p1783 +sg4 +S'Louis Conrad Rosenberg' +p1784 +sa(dp1785 +g12 +g27 +sg6 +S'etching' +p1786 +sg8 +S'1935' +p1787 +sg2 +S'Street in Assisi' +p1788 +sg4 +S'Ernest David Roth' +p1789 +sa(dp1790 +g2 +S'Dancing Figure' +p1791 +sg4 +S'Auguste Rodin' +p1792 +sg6 +S'graphite and watercolor' +p1793 +sg8 +S'1905' +p1794 +sg10 +S'http://www.nga.gov:80/thumb-l/a00037/a00037ea.jpg' +p1795 +sg12 +g27 +sa(dp1796 +g12 +g27 +sg6 +S'etching' +p1797 +sg8 +S'1907' +p1798 +sg2 +S'Covered Street, Florence' +p1799 +sg4 +S'Ernest David Roth' +p1800 +sa(dp1801 +g12 +g27 +sg6 +S'etching' +p1802 +sg8 +S'1926' +p1803 +sg2 +S'Independence Hall, Philadelphia' +p1804 +sg4 +S'Ernest David Roth' +p1805 +sa(dp1806 +g12 +g27 +sg6 +S'etching' +p1807 +sg8 +S'unknown date\n' +p1808 +sg2 +S'Cliffside' +p1809 +sg4 +S'Ernest David Roth' +p1810 +sa(dp1811 +g12 +g27 +sg6 +S'etching' +p1812 +sg8 +S'1907' +p1813 +sg2 +S'A Cloister, Venice' +p1814 +sg4 +S'Ernest David Roth' +p1815 +sa(dp1816 +g12 +g27 +sg6 +S'etching' +p1817 +sg8 +S'1918' +p1818 +sg2 +S'Rockport' +p1819 +sg4 +S'Ernest David Roth' +p1820 +sa(dp1821 +g12 +g27 +sg6 +S'etching' +p1822 +sg8 +S'1923' +p1823 +sg2 +S'Sevilla - Church of the Magdalena' +p1824 +sg4 +S'Ernest David Roth' +p1825 +sa(dp1826 +g12 +g27 +sg6 +S'etching' +p1827 +sg8 +S'1919' +p1828 +sg2 +S'Wheelwright Shop' +p1829 +sg4 +S'Ernest David Roth' +p1830 +sa(dp1831 +g12 +g27 +sg6 +S'etching' +p1832 +sg8 +S'1913' +p1833 +sg2 +S'Looking over the Ponte Vecchio' +p1834 +sg4 +S'Ernest David Roth' +p1835 +sa(dp1836 +g12 +g27 +sg6 +S'etching' +p1837 +sg8 +S'1907' +p1838 +sg2 +S'Ponte Vecchio - Morning - Florence' +p1839 +sg4 +S'Ernest David Roth' +p1840 +sa(dp1841 +g2 +S'Lady Mary Templetown and Her Eldest Son' +p1842 +sg4 +S'Sir Thomas Lawrence' +p1843 +sg6 +S'oil on canvas' +p1844 +sg8 +S'1802' +p1845 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a0000568.jpg' +p1846 +sg12 +S'Like Reynolds and Romney before him, Lawrence preferred the "higher" genre of\nhistory painting but, through talent and necessity, became a portraitist. He was\nenormously successful in his own lifetime, was knighted in 1815, and elected president\nof the Royal Academy in 1820.\n Although unschooled, Lawrence had a great natural gift for fluent linear rhythms\nand for the dramatic uses of light and color. Composed, gentle, and serene, Lady\nTempletown is a woodland goddess of otherworldly proportions. The purity and simplicity\nof the sitters\' costumes draw the pair into a sympathetic unity that is further\nenhanced by the surrounding darker tones of the broadly rendered landscape. Lawrence\nanimated the paint surface with accents of vibrant red in Lady Templetown\'s earrings\nand necklace, her son\'s cheeks, and in the landscape.\n Lawrence\'s idealized presentation of his sitters in an expressive, theatrical landscape\nepitomizes the romantic style of portraiture. But Lawrence, like Reynolds, was also\na passionate student of the classical past. His ideas on beauty were adapted from\nAristotle\'s \n ' +p1847 +sa(dp1848 +g2 +S'Two Figures' +p1849 +sg4 +S'Auguste Rodin' +p1850 +sg6 +S'graphite with wash' +p1851 +sg8 +S'c. 1905' +p1852 +sg10 +S'http://www.nga.gov:80/thumb-l/a00037/a00037eb.jpg' +p1853 +sg12 +g27 +sa(dp1854 +g12 +g27 +sg6 +S'etching' +p1855 +sg8 +S'1907' +p1856 +sg2 +S'Florence' +p1857 +sg4 +S'Ernest David Roth' +p1858 +sa(dp1859 +g12 +g27 +sg6 +S'graphite, pen and brown ink and red chalk' +p1860 +sg8 +S'unknown date\n' +p1861 +sg2 +S'The Fireside' +p1862 +sg4 +S'Sir Henry Rushbury' +p1863 +sa(dp1864 +g12 +g27 +sg6 +S'pen and brown ink with brown and gray wash over graphite on paperboard' +p1865 +sg8 +S'1928' +p1866 +sg2 +S'House of Knights of Malta' +p1867 +sg4 +S'Sir Henry Rushbury' +p1868 +sa(dp1869 +g12 +g27 +sg6 +S'black chalk and watercolor' +p1870 +sg8 +S'unknown date\n' +p1871 +sg2 +S'Assisi' +p1872 +sg4 +S'Sir Henry Rushbury' +p1873 +sa(dp1874 +g12 +g27 +sg6 +S'graphite with gray and brown wash' +p1875 +sg8 +S'unknown date\n' +p1876 +sg2 +S'S.S. Quattro' +p1877 +sg4 +S'Sir Henry Rushbury' +p1878 +sa(dp1879 +g12 +g27 +sg6 +S'drypoint' +p1880 +sg8 +S'unknown date\n' +p1881 +sg2 +S'Porto Maggiore, Orvieto' +p1882 +sg4 +S'Sir Henry Rushbury' +p1883 +sa(dp1884 +g12 +g27 +sg6 +S'black chalk and watercolor on paperboard' +p1885 +sg8 +S'unknown date\n' +p1886 +sg2 +S'La Rochelle' +p1887 +sg4 +S'Sir Henry Rushbury' +p1888 +sa(dp1889 +g12 +g27 +sg6 +S'graphite and watercolor' +p1890 +sg8 +S'unknown date\n' +p1891 +sg2 +S'In Provence' +p1892 +sg4 +S'Sir Henry Rushbury' +p1893 +sa(dp1894 +g12 +g27 +sg6 +S'drypoint' +p1895 +sg8 +S'unknown date\n' +p1896 +sg2 +S'Genoa' +p1897 +sg4 +S'Sir Henry Rushbury' +p1898 +sa(dp1899 +g12 +g27 +sg6 +S'drypoint' +p1900 +sg8 +S'unknown date\n' +p1901 +sg2 +S'Pont Marie' +p1902 +sg4 +S'Sir Henry Rushbury' +p1903 +sa(dp1904 +g2 +S'Seated Female Nude Leaning to the Left' +p1905 +sg4 +S'Auguste Rodin' +p1906 +sg6 +S'graphite on folded paper' +p1907 +sg8 +S'1908' +p1908 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a0007404.jpg' +p1909 +sg12 +g27 +sa(dp1910 +g12 +g27 +sg6 +S'drypoint' +p1911 +sg8 +S'1912' +p1912 +sg2 +S"Clifford's Inn" +p1913 +sg4 +S'Sir Henry Rushbury' +p1914 +sa(dp1915 +g12 +g27 +sg6 +S'drypoint' +p1916 +sg8 +S'1919' +p1917 +sg2 +S'Butter Cross, Ludlow' +p1918 +sg4 +S'Sir Henry Rushbury' +p1919 +sa(dp1920 +g12 +g27 +sg6 +S'drypoint' +p1921 +sg8 +S'unknown date\n' +p1922 +sg2 +S'Monte Aventino, Rome' +p1923 +sg4 +S'Sir Henry Rushbury' +p1924 +sa(dp1925 +g12 +g27 +sg6 +S'drypoint' +p1926 +sg8 +S'1922' +p1927 +sg2 +S'Fish Market, Marseilles' +p1928 +sg4 +S'Sir Henry Rushbury' +p1929 +sa(dp1930 +g12 +g27 +sg6 +S'drypoint' +p1931 +sg8 +S'1923' +p1932 +sg2 +S'Canal de la Douane, Marseille' +p1933 +sg4 +S'Sir Henry Rushbury' +p1934 +sa(dp1935 +g12 +g27 +sg6 +S'drypoint' +p1936 +sg8 +S'1921' +p1937 +sg2 +S'Saint Victor, Marseilles' +p1938 +sg4 +S'Sir Henry Rushbury' +p1939 +sa(dp1940 +g12 +g27 +sg6 +S'drypoint' +p1941 +sg8 +S'1922' +p1942 +sg2 +S'The Walls of Siena' +p1943 +sg4 +S'Sir Henry Rushbury' +p1944 +sa(dp1945 +g12 +g27 +sg6 +S'drypoint and engraving' +p1946 +sg8 +S'1914' +p1947 +sg2 +S"Saint James's Church, Clerkenwell" +p1948 +sg4 +S'Sir Henry Rushbury' +p1949 +sa(dp1950 +g12 +g27 +sg6 +S'drypoint and engraving' +p1951 +sg8 +S'1914' +p1952 +sg2 +S"Saint Olave's, Crutched Friars" +p1953 +sg4 +S'Sir Henry Rushbury' +p1954 +sa(dp1955 +g12 +g27 +sg6 +S'drypoint and engraving' +p1956 +sg8 +S'1914' +p1957 +sg2 +S'A Cotswold Farm' +p1958 +sg4 +S'Sir Henry Rushbury' +p1959 +sa(dp1960 +g2 +S'Seated Female Nude Looking Forward' +p1961 +sg4 +S'Auguste Rodin' +p1962 +sg6 +S'graphite on folded paper' +p1963 +sg8 +S'1908' +p1964 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a0007403.jpg' +p1965 +sg12 +g27 +sa(dp1966 +g12 +g27 +sg6 +S'drypoint' +p1967 +sg8 +S'c. 1927' +p1968 +sg2 +S"Saint Olave's, Tooley Street" +p1969 +sg4 +S'Sir Henry Rushbury' +p1970 +sa(dp1971 +g12 +g27 +sg6 +S'drypoint' +p1972 +sg8 +S'unknown date\n' +p1973 +sg2 +S'Carceri San Gimignano' +p1974 +sg4 +S'Sir Henry Rushbury' +p1975 +sa(dp1976 +g12 +g27 +sg6 +S'drypoint' +p1977 +sg8 +S'1927' +p1978 +sg2 +S'Bookstalls, Paris' +p1979 +sg4 +S'Sir Henry Rushbury' +p1980 +sa(dp1981 +g12 +g27 +sg6 +S'engraving and drypoint' +p1982 +sg8 +S'1913' +p1983 +sg2 +S'The Last of the General Post Office' +p1984 +sg4 +S'Sir Henry Rushbury' +p1985 +sa(dp1986 +g12 +g27 +sg6 +S'drypoint' +p1987 +sg8 +S'unknown date\n' +p1988 +sg2 +S'Viterbo' +p1989 +sg4 +S'Sir Henry Rushbury' +p1990 +sa(dp1991 +g12 +g27 +sg6 +S'drypoint' +p1992 +sg8 +S'unknown date\n' +p1993 +sg2 +S'Old Port Marseilles' +p1994 +sg4 +S'Sir Henry Rushbury' +p1995 +sa(dp1996 +g12 +g27 +sg6 +S'drypoint' +p1997 +sg8 +S'1924' +p1998 +sg2 +S'Lindesfarne' +p1999 +sg4 +S'Sir Henry Rushbury' +p2000 +sa(dp2001 +g12 +g27 +sg6 +S'drypoint' +p2002 +sg8 +S'unknown date\n' +p2003 +sg2 +S'Place des Victories' +p2004 +sg4 +S'Sir Henry Rushbury' +p2005 +sa(dp2006 +g12 +g27 +sg6 +S'drypoint' +p2007 +sg8 +S'1922' +p2008 +sg2 +S'Les Baux, Provence' +p2009 +sg4 +S'Sir Henry Rushbury' +p2010 +sa(dp2011 +g12 +g27 +sg6 +S'drypoint' +p2012 +sg8 +S'1926' +p2013 +sg2 +S"L'Isle de la Cite" +p2014 +sg4 +S'Sir Henry Rushbury' +p2015 +sa(dp2016 +g2 +S'Les Amours Conduisant le Monde' +p2017 +sg4 +S'Auguste Rodin' +p2018 +sg6 +S'drypoint' +p2019 +sg8 +S'1881' +p2020 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cb9.jpg' +p2021 +sg12 +g27 +sa(dp2022 +g12 +g27 +sg6 +S'drypoint and engraving' +p2023 +sg8 +S'1916' +p2024 +sg2 +S'Amberley Castle, Sussex' +p2025 +sg4 +S'Sir Henry Rushbury' +p2026 +sa(dp2027 +g12 +g27 +sg6 +S'drypoint' +p2028 +sg8 +S'1927' +p2029 +sg2 +S'Low Tide La Rochelle' +p2030 +sg4 +S'Sir Henry Rushbury' +p2031 +sa(dp2032 +g12 +g27 +sg6 +S'drypoint and engraving' +p2033 +sg8 +S'1914' +p2034 +sg2 +S'The Quarry' +p2035 +sg4 +S'Sir Henry Rushbury' +p2036 +sa(dp2037 +g12 +g27 +sg6 +S'drypoint and engraving' +p2038 +sg8 +S'unknown date\n' +p2039 +sg2 +S'Lothbury Court, Bank of England' +p2040 +sg4 +S'Sir Henry Rushbury' +p2041 +sa(dp2042 +g12 +g27 +sg6 +S'drypoint and etching' +p2043 +sg8 +S'unknown date\n' +p2044 +sg2 +S"Governors' Court" +p2045 +sg4 +S'Sir Henry Rushbury' +p2046 +sa(dp2047 +g2 +S'Alexander de Medicis and Cosmo de Medicis' +p2048 +sg4 +S'Martino Rota' +p2049 +sg6 +S'engraving' +p2050 +sg8 +S'unknown date\n' +p2051 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c779.jpg' +p2052 +sg12 +g27 +sa(dp2053 +g2 +S'Emperor Maximillian II' +p2054 +sg4 +S'Martino Rota' +p2055 +sg6 +S'engraving' +p2056 +sg8 +S'1574' +p2057 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c77d.jpg' +p2058 +sg12 +g27 +sa(dp2059 +g12 +g27 +sg6 +S'lithograph' +p2060 +sg8 +S'1926' +p2061 +sg2 +S'Self-Portrait III' +p2062 +sg4 +S'Georges Rouault' +p2063 +sa(dp2064 +g2 +S'A Little Brook in Winter, Wiltshire' +p2065 +sg4 +S'Theodore Roussel' +p2066 +sg6 +S'drypoint' +p2067 +sg8 +S'1910/1911' +p2068 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007da9.jpg' +p2069 +sg12 +g27 +sa(dp2070 +g2 +S'Figure of a Woman Lying Down' +p2071 +sg4 +S'Theodore Roussel' +p2072 +sg6 +S'drypoint' +p2073 +sg8 +S'unknown date\n' +p2074 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c5e.jpg' +p2075 +sg12 +g27 +sa(dp2076 +g2 +S'Buste de Bellone' +p2077 +sg4 +S'Auguste Rodin' +p2078 +sg6 +S'etching and drypoint' +p2079 +sg8 +S'1883' +p2080 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cb8.jpg' +p2081 +sg12 +g27 +sa(dp2082 +g2 +S'Nude Woman Seated' +p2083 +sg4 +S'Theodore Roussel' +p2084 +sg6 +S'drypoint' +p2085 +sg8 +S'unknown date\n' +p2086 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c2d.jpg' +p2087 +sg12 +g27 +sa(dp2088 +g2 +S'October Evening' +p2089 +sg4 +S'Theodore Roussel' +p2090 +sg6 +S'etching' +p2091 +sg8 +S'unknown date\n' +p2092 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dca.jpg' +p2093 +sg12 +g27 +sa(dp2094 +g2 +S'Marshland' +p2095 +sg4 +S'Theodore Roussel' +p2096 +sg6 +S'etching' +p2097 +sg8 +S'unknown date\n' +p2098 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007ddc.jpg' +p2099 +sg12 +g27 +sa(dp2100 +g2 +S'The Art Student' +p2101 +sg4 +S'Theodore Roussel' +p2102 +sg6 +S'drypoint' +p2103 +sg8 +S'unknown date\n' +p2104 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d41.jpg' +p2105 +sg12 +g27 +sa(dp2106 +g2 +S'Ships at Fowey, in Cornwall' +p2107 +sg4 +S'Theodore Roussel' +p2108 +sg6 +S'etching' +p2109 +sg8 +S'unknown date\n' +p2110 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d7c.jpg' +p2111 +sg12 +g27 +sa(dp2112 +g2 +S'Dr. Bilderbeck Gomess' +p2113 +sg4 +S'Theodore Roussel' +p2114 +sg6 +S'drypoint' +p2115 +sg8 +S'unknown date\n' +p2116 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d9a.jpg' +p2117 +sg12 +g27 +sa(dp2118 +g2 +S'Une Apache' +p2119 +sg4 +S'Theodore Roussel' +p2120 +sg6 +S'drypoint' +p2121 +sg8 +S'unknown date\n' +p2122 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d8a.jpg' +p2123 +sg12 +g27 +sa(dp2124 +g2 +S'Portrait of Mrs. A. Melville' +p2125 +sg4 +S'Theodore Roussel' +p2126 +sg6 +S'drypoint' +p2127 +sg8 +S'unknown date\n' +p2128 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a2d.jpg' +p2129 +sg12 +g27 +sa(dp2130 +g2 +S'A Baby' +p2131 +sg4 +S'Theodore Roussel' +p2132 +sg6 +S'drypoint' +p2133 +sg8 +S'unknown date\n' +p2134 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dba.jpg' +p2135 +sg12 +g27 +sa(dp2136 +g2 +S'Moonrise from the River' +p2137 +sg4 +S'Theodore Roussel' +p2138 +sg6 +S'etching' +p2139 +sg8 +S'unknown date\n' +p2140 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d50.jpg' +p2141 +sg12 +g27 +sa(dp2142 +g2 +S'Victor Hugo, De Trois Quarts' +p2143 +sg4 +S'Auguste Rodin' +p2144 +sg6 +S'drypoint' +p2145 +sg8 +S'1884' +p2146 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cc4.jpg' +p2147 +sg12 +g27 +sa(dp2148 +g2 +S'Monaco from La Condamine' +p2149 +sg4 +S'Theodore Roussel' +p2150 +sg6 +S'etching' +p2151 +sg8 +S'unknown date\n' +p2152 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007e/a0007e01.jpg' +p2153 +sg12 +g27 +sa(dp2154 +g2 +S'Portrait of Miss Hetty Pettigrew' +p2155 +sg4 +S'Theodore Roussel' +p2156 +sg6 +S'drypoint' +p2157 +sg8 +S'unknown date\n' +p2158 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a2e.jpg' +p2159 +sg12 +g27 +sa(dp2160 +g2 +S'The Alcove' +p2161 +sg4 +S'Theodore Roussel' +p2162 +sg6 +S'drypoint' +p2163 +sg8 +S'unknown date\n' +p2164 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c4e.jpg' +p2165 +sg12 +g27 +sa(dp2166 +g2 +S'The Terrace' +p2167 +sg4 +S'Theodore Roussel' +p2168 +sg6 +S'drypoint' +p2169 +sg8 +S'unknown date\n' +p2170 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007def.jpg' +p2171 +sg12 +g27 +sa(dp2172 +g2 +S'Corner of Luna' +p2173 +sg4 +S'Theodore Roussel' +p2174 +sg6 +S'etching in green' +p2175 +sg8 +S'unknown date\n' +p2176 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007da4.jpg' +p2177 +sg12 +g27 +sa(dp2178 +g2 +S'Corner of Luna' +p2179 +sg4 +S'Theodore Roussel' +p2180 +sg6 +S'etching' +p2181 +sg8 +S'unknown date\n' +p2182 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d94.jpg' +p2183 +sg12 +g27 +sa(dp2184 +g2 +S"Parson's Green" +p2185 +sg4 +S'Theodore Roussel' +p2186 +sg6 +S'etching' +p2187 +sg8 +S'unknown date\n' +p2188 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a2a.jpg' +p2189 +sg12 +g27 +sa(dp2190 +g2 +S"The Children's Hour" +p2191 +sg4 +S'Theodore Roussel' +p2192 +sg6 +S'etching' +p2193 +sg8 +S'unknown date\n' +p2194 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c7e.jpg' +p2195 +sg12 +g27 +sa(dp2196 +g2 +S'Trees by Moonlight' +p2197 +sg4 +S'Theodore Roussel' +p2198 +sg6 +S'etching' +p2199 +sg8 +S'unknown date\n' +p2200 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007ccd.jpg' +p2201 +sg12 +g27 +sa(dp2202 +g2 +S'Nymph Bathing, Moonlight' +p2203 +sg4 +S'Theodore Roussel' +p2204 +sg6 +S'etching' +p2205 +sg8 +S'unknown date\n' +p2206 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cda.jpg' +p2207 +sg12 +g27 +sa(dp2208 +g12 +g27 +sg6 +S'drypoint' +p2209 +sg8 +S'1905' +p2210 +sg2 +S'Ayr Prison' +p2211 +sg4 +S'Sir Muirhead Bone' +p2212 +sa(dp2213 +g2 +S'A Stag' +p2214 +sg4 +S'Theodore Roussel' +p2215 +sg6 +S'etching' +p2216 +sg8 +S'unknown date\n' +p2217 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cb4.jpg' +p2218 +sg12 +g27 +sa(dp2219 +g2 +S'Poppy in a Vase' +p2220 +sg4 +S'Theodore Roussel' +p2221 +sg6 +S'mezzotint' +p2222 +sg8 +S'unknown date\n' +p2223 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cc0.jpg' +p2224 +sg12 +g27 +sa(dp2225 +g2 +S'Portrait of Miss Edith Austen' +p2226 +sg4 +S'Theodore Roussel' +p2227 +sg6 +S'drypoint' +p2228 +sg8 +S'unknown date\n' +p2229 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d2c.jpg' +p2230 +sg12 +g27 +sa(dp2231 +g2 +S'Head of Girl, Leaning on her Hand' +p2232 +sg4 +S'Theodore Roussel' +p2233 +sg6 +S'drypoint' +p2234 +sg8 +S'unknown date\n' +p2235 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c8c.jpg' +p2236 +sg12 +g27 +sa(dp2237 +g2 +S'Head of Girl, Leaning on her Hand' +p2238 +sg4 +S'Theodore Roussel' +p2239 +sg6 +S'drypoint on green paper' +p2240 +sg8 +S'unknown date\n' +p2241 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c9a.jpg' +p2242 +sg12 +g27 +sa(dp2243 +g2 +S'Two Flowers, Vernis Mou' +p2244 +sg4 +S'Theodore Roussel' +p2245 +sg6 +S'etching' +p2246 +sg8 +S'unknown date\n' +p2247 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007ca8.jpg' +p2248 +sg12 +g27 +sa(dp2249 +g2 +S'Profile of a Woman' +p2250 +sg4 +S'Theodore Roussel' +p2251 +sg6 +S'drypoint' +p2252 +sg8 +S'unknown date\n' +p2253 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c3e.jpg' +p2254 +sg12 +g27 +sa(dp2255 +g2 +S'The Putney Sawmill' +p2256 +sg4 +S'Theodore Roussel' +p2257 +sg6 +S'etching' +p2258 +sg8 +S'unknown date\n' +p2259 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c38.jpg' +p2260 +sg12 +g27 +sa(dp2261 +g2 +S'The Chelsea Gate' +p2262 +sg4 +S'Theodore Roussel' +p2263 +sg6 +S'etching on green paper' +p2264 +sg8 +S'unknown date\n' +p2265 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dd6.jpg' +p2266 +sg12 +g27 +sa(dp2267 +g2 +S'Chelsea Children' +p2268 +sg4 +S'Theodore Roussel' +p2269 +sg6 +S'etching' +p2270 +sg8 +S'unknown date\n' +p2271 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d84.jpg' +p2272 +sg12 +g27 +sa(dp2273 +g12 +g27 +sg6 +S'drypoint' +p2274 +sg8 +S'1907' +p2275 +sg2 +S'The Ballantrae Road' +p2276 +sg4 +S'Sir Muirhead Bone' +p2277 +sa(dp2278 +g2 +S'Laburnums, Battersea' +p2279 +sg4 +S'Theodore Roussel' +p2280 +sg6 +S'cliche verre' +p2281 +sg8 +S'unknown date\n' +p2282 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a29.jpg' +p2283 +sg12 +g27 +sa(dp2284 +g2 +S'Study from the Nude' +p2285 +sg4 +S'Theodore Roussel' +p2286 +sg6 +S'drypoint' +p2287 +sg8 +S'unknown date\n' +p2288 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cf5.jpg' +p2289 +sg12 +g27 +sa(dp2290 +g2 +S'Study from the Nude' +p2291 +sg4 +S'Theodore Roussel' +p2292 +sg6 +S'drypoint' +p2293 +sg8 +S'unknown date\n' +p2294 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007ce7.jpg' +p2295 +sg12 +g27 +sa(dp2296 +g2 +S'The Henley Hat' +p2297 +sg4 +S'Theodore Roussel' +p2298 +sg6 +S'drypoint' +p2299 +sg8 +S'unknown date\n' +p2300 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d10.jpg' +p2301 +sg12 +g27 +sa(dp2302 +g2 +S'The Henley Hat' +p2303 +sg4 +S'Theodore Roussel' +p2304 +sg6 +S'drypoint in red' +p2305 +sg8 +S'unknown date\n' +p2306 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d1e.jpg' +p2307 +sg12 +g27 +sa(dp2308 +g2 +S'The Henley Hat' +p2309 +sg4 +S'Theodore Roussel' +p2310 +sg6 +S'drypoint in red' +p2311 +sg8 +S'unknown date\n' +p2312 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d02.jpg' +p2313 +sg12 +g27 +sa(dp2314 +g2 +S'Pleasure Boats, Chelsea' +p2315 +sg4 +S'Theodore Roussel' +p2316 +sg6 +S'etching' +p2317 +sg8 +S'unknown date\n' +p2318 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dfb.jpg' +p2319 +sg12 +g27 +sa(dp2320 +g2 +S'Chelsea Embankment, June 1889' +p2321 +sg4 +S'Theodore Roussel' +p2322 +sg6 +S'etching' +p2323 +sg8 +S'unknown date\n' +p2324 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d76.jpg' +p2325 +sg12 +g27 +sa(dp2326 +g2 +S'The Window Cleaner' +p2327 +sg4 +S'Theodore Roussel' +p2328 +sg6 +S'etching and drypoint' +p2329 +sg8 +S'unknown date\n' +p2330 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007db4.jpg' +p2331 +sg12 +g27 +sa(dp2332 +g2 +S'The Window Cleaner' +p2333 +sg4 +S'Theodore Roussel' +p2334 +sg6 +S'etching and drypoint in green' +p2335 +sg8 +S'1888-1889' +p2336 +sg10 +S'http://www.nga.gov:80/thumb-l/a00069/a0006919.jpg' +p2337 +sg12 +g27 +sa(dp2338 +g12 +g27 +sg6 +S'drypoint' +p2339 +sg8 +S'1905' +p2340 +sg2 +S'Somerset House' +p2341 +sg4 +S'Sir Muirhead Bone' +p2342 +sa(dp2343 +g2 +S'Little Girls and Perambulator' +p2344 +sg4 +S'Theodore Roussel' +p2345 +sg6 +S'etching' +p2346 +sg8 +S'unknown date\n' +p2347 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007de9.jpg' +p2348 +sg12 +g27 +sa(dp2349 +g2 +S'Battersea from Chelsea' +p2350 +sg4 +S'Theodore Roussel' +p2351 +sg6 +S'etching and drypoint' +p2352 +sg8 +S'unknown date\n' +p2353 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d3b.jpg' +p2354 +sg12 +g27 +sa(dp2355 +g2 +S'Bank Holiday' +p2356 +sg4 +S'Theodore Roussel' +p2357 +sg6 +S'etching in green' +p2358 +sg8 +S'unknown date\n' +p2359 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c27.jpg' +p2360 +sg12 +g27 +sa(dp2361 +g2 +S'Emma and Her Baby' +p2362 +sg4 +S'Theodore Roussel' +p2363 +sg6 +S'etching in green' +p2364 +sg8 +S'unknown date\n' +p2365 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c68.jpg' +p2366 +sg12 +g27 +sa(dp2367 +g2 +S'Emma and Her Baby' +p2368 +sg4 +S'Theodore Roussel' +p2369 +sg6 +S'etching in green' +p2370 +sg8 +S'unknown date\n' +p2371 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c58.jpg' +p2372 +sg12 +g27 +sa(dp2373 +g2 +S'The Little Fish Shop' +p2374 +sg4 +S'Theodore Roussel' +p2375 +sg6 +S'etching' +p2376 +sg8 +S'unknown date\n' +p2377 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d67.jpg' +p2378 +sg12 +g27 +sa(dp2379 +g2 +S'Penelope' +p2380 +sg4 +S'Theodore Roussel' +p2381 +sg6 +S'etching in green' +p2382 +sg8 +S'unknown date\n' +p2383 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d59.jpg' +p2384 +sg12 +g27 +sa(dp2385 +g2 +S'Penelope' +p2386 +sg4 +S'Theodore Roussel' +p2387 +sg6 +S'etching' +p2388 +sg8 +S'unknown date\n' +p2389 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d4a.jpg' +p2390 +sg12 +g27 +sa(dp2391 +g2 +S'Pierrot' +p2392 +sg4 +S'Theodore Roussel' +p2393 +sg6 +S'etching' +p2394 +sg8 +S'unknown date\n' +p2395 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a2c.jpg' +p2396 +sg12 +g27 +sa(dp2397 +g2 +S'Events over the Railing' +p2398 +sg4 +S'Theodore Roussel' +p2399 +sg6 +S'etching' +p2400 +sg8 +S'unknown date\n' +p2401 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c78.jpg' +p2402 +sg12 +g27 +sa(dp2403 +g12 +g27 +sg6 +S'drypoint' +p2404 +sg8 +S'1923/1925' +p2405 +sg2 +S'Joseph Conrad Listening to Music' +p2406 +sg4 +S'Sir Muirhead Bone' +p2407 +sa(dp2408 +g2 +S'Chelsea Regatta' +p2409 +sg4 +S'Theodore Roussel' +p2410 +sg6 +S'etching' +p2411 +sg8 +S'unknown date\n' +p2412 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c48.jpg' +p2413 +sg12 +g27 +sa(dp2414 +g2 +S'Chelsea Embankment' +p2415 +sg4 +S'Theodore Roussel' +p2416 +sg6 +S'etching' +p2417 +sg8 +S'unknown date\n' +p2418 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dc4.jpg' +p2419 +sg12 +g27 +sa(dp2420 +g2 +S'The Pastoral Play' +p2421 +sg4 +S'Theodore Roussel' +p2422 +sg6 +S'etching' +p2423 +sg8 +S'unknown date\n' +p2424 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c86.jpg' +p2425 +sg12 +g27 +sa(dp2426 +g2 +S'The Pastoral Play' +p2427 +sg4 +S'Theodore Roussel' +p2428 +sg6 +S'etching in green' +p2429 +sg8 +S'unknown date\n' +p2430 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c94.jpg' +p2431 +sg12 +g27 +sa(dp2432 +g2 +S'A French Girl' +p2433 +sg4 +S'Theodore Roussel' +p2434 +sg6 +S'drypoint' +p2435 +sg8 +S'unknown date\n' +p2436 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d6d.jpg' +p2437 +sg12 +g27 +sa(dp2438 +g2 +S'A Flower' +p2439 +sg4 +S'Theodore Roussel' +p2440 +sg6 +S'drypoint' +p2441 +sg8 +S'unknown date\n' +p2442 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d5f.jpg' +p2443 +sg12 +g27 +sa(dp2444 +g2 +S'Christ Disputing with the Doctors [recto]' +p2445 +sg4 +S'German 16th Century' +p2446 +sg6 +S'overall: 20.8 x 15.5 cm (8 3/16 x 6 1/8 in.)' +p2447 +sg8 +S'\npen and black ink with brush and gray ink and gray wash heightened with white on gray prepared paper' +p2448 +sg10 +S'http://www.nga.gov:80/thumb-l/a00079/a0007952.jpg' +p2449 +sg12 +g27 +sa(dp2450 +g2 +S'Christ Healing the Lame [verso]' +p2451 +sg4 +S'German 16th Century' +p2452 +sg6 +S'overall: 20.8 x 15.5 cm (8 3/16 x 6 1/8 in.)' +p2453 +sg8 +S'\npen and black ink with brush and gray ink and gray wash heightened with white on gray prepared paper' +p2454 +sg10 +S'http://www.nga.gov:80/thumb-l/a00079/a0007953.jpg' +p2455 +sg12 +g27 +sa(dp2456 +g2 +S'The Three Oaks' +p2457 +sg4 +S'Jacob van Ruisdael' +p2458 +sg6 +S'etching' +p2459 +sg8 +S'unknown date\n' +p2460 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3a5.jpg' +p2461 +sg12 +g27 +sa(dp2462 +g2 +S'The Little Bridge' +p2463 +sg4 +S'Jacob van Ruisdael' +p2464 +sg6 +S'etching' +p2465 +sg8 +S'unknown date\n' +p2466 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d55b.jpg' +p2467 +sg12 +g27 +sa(dp2468 +g2 +S'Lady Elizabeth Compton' +p2469 +sg4 +S'Sir Joshua Reynolds' +p2470 +sg6 +S'oil on canvas' +p2471 +sg8 +S'1780-1782' +p2472 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a000056c.jpg' +p2473 +sg12 +g27 +sa(dp2474 +g12 +g27 +sg6 +S'drypoint' +p2475 +sg8 +S'1923/1925' +p2476 +sg2 +S'Joseph Conrad' +p2477 +sg4 +S'Sir Muirhead Bone' +p2478 +sa(dp2479 +g2 +S'Grain Field at the Edge of a Wood (Corn Field)' +p2480 +sg4 +S'Jacob van Ruisdael' +p2481 +sg6 +S'etching and drypoint' +p2482 +sg8 +S'unknown date\n' +p2483 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3a3.jpg' +p2484 +sg12 +g27 +sa(dp2485 +g2 +S'A Forest Marsh with Travelers on a Bank (The Travelers)' +p2486 +sg4 +S'Jacob van Ruisdael' +p2487 +sg6 +S'etching and drypoint' +p2488 +sg8 +S'unknown date\n' +p2489 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d55e.jpg' +p2490 +sg12 +g27 +sa(dp2491 +g2 +S'Cottage on a Hill' +p2492 +sg4 +S'Jacob van Ruisdael' +p2493 +sg6 +S'etching and drypoint' +p2494 +sg8 +S'unknown date\n' +p2495 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d55d.jpg' +p2496 +sg12 +g27 +sa(dp2497 +g12 +g27 +sg6 +S'drypoint' +p2498 +sg8 +S'1942' +p2499 +sg2 +S'French Hill' +p2500 +sg4 +S'Chauncey Foster Ryder' +p2501 +sa(dp2502 +g12 +g27 +sg6 +S'color lithograph' +p2503 +sg8 +S'unknown date\n' +p2504 +sg2 +S'Rockport Quay' +p2505 +sg4 +S'Leonard Pytlak' +p2506 +sa(dp2507 +g12 +g27 +sg6 +S'lithograph' +p2508 +sg8 +S'1936' +p2509 +sg2 +S'El acaparador (The Monopolizer)' +p2510 +sg4 +S'Puyol' +p2511 +sa(dp2512 +g12 +g27 +sg6 +S'portfolio with ten lithographs' +p2513 +sg8 +S'published 1937' +p2514 +sg2 +S'10 Litografias por Piiyol' +p2515 +sg4 +S'Puyol' +p2516 +sa(dp2517 +g12 +g27 +sg6 +S'lithograph' +p2518 +sg8 +S'1936' +p2519 +sg2 +S'El inquierdista (?)' +p2520 +sg4 +S'Puyol' +p2521 +sa(dp2522 +g12 +g27 +sg6 +S'lithograph' +p2523 +sg8 +S'1936' +p2524 +sg2 +S'El aerrotista (?)' +p2525 +sg4 +S'Puyol' +p2526 +sa(dp2527 +g12 +g27 +sg6 +S'lithograph' +p2528 +sg8 +S'1936' +p2529 +sg2 +S'El rumor (The Rumor)' +p2530 +sg4 +S'Puyol' +p2531 +sa(dp2532 +g12 +g27 +sg6 +S'drypoint' +p2533 +sg8 +S'1908' +p2534 +sg2 +S'Country Mews' +p2535 +sg4 +S'Sir Muirhead Bone' +p2536 +sa(dp2537 +g12 +g27 +sg6 +S'lithograph' +p2538 +sg8 +S'1936' +p2539 +sg2 +S'El espia (The Spy)' +p2540 +sg4 +S'Puyol' +p2541 +sa(dp2542 +g12 +g27 +sg6 +S'lithograph' +p2543 +sg8 +S'1936' +p2544 +sg2 +S'El optimista (The Optimist)' +p2545 +sg4 +S'Puyol' +p2546 +sa(dp2547 +g12 +g27 +sg6 +S'lithograph' +p2548 +sg8 +S'1936' +p2549 +sg2 +S'El turista (The Tourist)' +p2550 +sg4 +S'Puyol' +p2551 +sa(dp2552 +g12 +g27 +sg6 +S'lithograph' +p2553 +sg8 +S'1936' +p2554 +sg2 +S'El bulista' +p2555 +sg4 +S'Puyol' +p2556 +sa(dp2557 +g12 +g27 +sg6 +S'lithograph' +p2558 +sg8 +S'1936' +p2559 +sg2 +S'El pesimista (The Pessimist)' +p2560 +sg4 +S'Puyol' +p2561 +sa(dp2562 +g12 +g27 +sg6 +S'lithograph' +p2563 +sg8 +S'1936' +p2564 +sg2 +S'El estrategico (The Strategist)' +p2565 +sg4 +S'Puyol' +p2566 +sa(dp2567 +g2 +S'Woodland Scene' +p2568 +sg4 +S'Artist Information (' +p2569 +sg6 +S'(artist after)' +p2570 +sg8 +S'\n' +p2571 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d028.jpg' +p2572 +sg12 +g27 +sa(dp2573 +g2 +S'Draughtsman on a Stone before a Bridge' +p2574 +sg4 +S'Artist Information (' +p2575 +sg6 +S'(artist after)' +p2576 +sg8 +S'\n' +p2577 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d029.jpg' +p2578 +sg12 +g27 +sa(dp2579 +g2 +S'Woodland Scene with a Waterfall' +p2580 +sg4 +S'Artist Information (' +p2581 +sg6 +S'(artist after)' +p2582 +sg8 +S'\n' +p2583 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d025.jpg' +p2584 +sg12 +g27 +sa(dp2585 +g2 +S'Three Hunters and Two Dogs near a Pool' +p2586 +sg4 +S'Artist Information (' +p2587 +sg6 +S'(artist after)' +p2588 +sg8 +S'\n' +p2589 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d024.jpg' +p2590 +sg12 +g27 +sa(dp2591 +g12 +g27 +sg6 +S'drypoint' +p2592 +sg8 +S'1903' +p2593 +sg2 +S'Clare Market' +p2594 +sg4 +S'Sir Muirhead Bone' +p2595 +sa(dp2596 +g2 +S'Landscape with an Inn to the Right and House on Rocks to the Left' +p2597 +sg4 +S'Artist Information (' +p2598 +sg6 +S'(artist after)' +p2599 +sg8 +S'\n' +p2600 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d026.jpg' +p2601 +sg12 +g27 +sa(dp2602 +g2 +S'Woodland Scene with Two Hunters and a Dog to the Left' +p2603 +sg4 +S'Artist Information (' +p2604 +sg6 +S'(artist after)' +p2605 +sg8 +S'\n' +p2606 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d027.jpg' +p2607 +sg12 +g27 +sa(dp2608 +g2 +S'Head of an Apostle with Beard and Cap' +p2609 +sg4 +S'Aegidius Sadeler II' +p2610 +sg6 +S'engraving [partial proof]' +p2611 +sg8 +S'1597' +p2612 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d02e.jpg' +p2613 +sg12 +g27 +sa(dp2614 +g2 +S'Pieter Brueghel, the Younger' +p2615 +sg4 +S'Artist Information (' +p2616 +sg6 +S'(artist after)' +p2617 +sg8 +S'\n' +p2618 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d02d.jpg' +p2619 +sg12 +g27 +sa(dp2620 +g2 +S'Le bal par\xc3\xa9' +p2621 +sg4 +S'Artist Information (' +p2622 +sg6 +S'(artist after)' +p2623 +sg8 +S'\n' +p2624 +sg10 +S'http://www.nga.gov:80/thumb-l/a00096/a00096fe.jpg' +p2625 +sg12 +g27 +sa(dp2626 +g2 +S'The Annunciation' +p2627 +sg4 +S'Hans Leonard Sch\xc3\xa4ufelein' +p2628 +sg6 +S'woodcut' +p2629 +sg8 +S'unknown date\n' +p2630 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b27b.jpg' +p2631 +sg12 +g27 +sa(dp2632 +g2 +S'Le concert' +p2633 +sg4 +S'Artist Information (' +p2634 +sg6 +S'(artist after)' +p2635 +sg8 +S'\n' +p2636 +sg10 +S'http://www.nga.gov:80/thumb-l/a00096/a00096fb.jpg' +p2637 +sg12 +g27 +sa(dp2638 +g2 +S'Christ Bearing the Cross' +p2639 +sg4 +S'Hans Leonard Sch\xc3\xa4ufelein' +p2640 +sg6 +S'woodcut' +p2641 +sg8 +S'unknown date\n' +p2642 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b279.jpg' +p2643 +sg12 +g27 +sa(dp2644 +g2 +S'Christ Taken Prisoner' +p2645 +sg4 +S'Hans Leonard Sch\xc3\xa4ufelein' +p2646 +sg6 +S'woodcut' +p2647 +sg8 +S'unknown date\n' +p2648 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad7c.jpg' +p2649 +sg12 +g27 +sa(dp2650 +g2 +S'Mater Dolorosa and Saint Joseph' +p2651 +sg4 +S'Hans Leonard Sch\xc3\xa4ufelein' +p2652 +sg6 +S'woodcut' +p2653 +sg8 +S'unknown date\n' +p2654 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad7d.jpg' +p2655 +sg12 +g27 +sa(dp2656 +g12 +g27 +sg6 +S'drypoint' +p2657 +sg8 +S'unknown date\n' +p2658 +sg2 +S'Distant Ely' +p2659 +sg4 +S'Sir Muirhead Bone' +p2660 +sa(dp2661 +g12 +g27 +sg6 +S'woodcut' +p2662 +sg8 +S'1914' +p2663 +sg2 +S'Cats I (Katzen I)' +p2664 +sg4 +S'Karl Schmidt-Rottluff' +p2665 +sa(dp2666 +g12 +g27 +sg6 +S'etching' +p2667 +sg8 +S'unknown date\n' +p2668 +sg2 +S'Lincoln' +p2669 +sg4 +S'Otto J. Schneider' +p2670 +sa(dp2671 +g2 +S'Saint Jerome' +p2672 +sg4 +S'Giuseppe Scolari' +p2673 +sg6 +S'woodcut' +p2674 +sg8 +S'unknown date\n' +p2675 +sg10 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d0f.jpg' +p2676 +sg12 +g27 +sa(dp2677 +g12 +g27 +sg6 +S'pen and black ink with black and gray wash' +p2678 +sg8 +S'unknown date\n' +p2679 +sg2 +S'Woman Seated' +p2680 +sg4 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p2681 +sa(dp2682 +g12 +g27 +sg6 +S'etching' +p2683 +sg8 +S'unknown date\n' +p2684 +sg2 +S'California Coast, Big Sur' +p2685 +sg4 +S'Ralph Fletcher Seymour' +p2686 +sa(dp2687 +g12 +g27 +sg6 +S'etching' +p2688 +sg8 +S'unknown date\n' +p2689 +sg2 +S'Dinner-Time on Board the Timber Barque "Marie" Unloading at Conway' +p2690 +sg4 +S'Sir Frank Short' +p2691 +sa(dp2692 +g12 +g27 +sg6 +S'drypoint' +p2693 +sg8 +S'unknown date\n' +p2694 +sg2 +S'A Wintry Blast on the Stourbridge Canal' +p2695 +sg4 +S'Sir Frank Short' +p2696 +sa(dp2697 +g12 +g27 +sg6 +S'mezzotint on japan paper' +p2698 +sg8 +S'unknown date\n' +p2699 +sg2 +S'Per Horse-Power Per Hour, Whitby Harbour' +p2700 +sg4 +S'Sir Frank Short' +p2701 +sa(dp2702 +g12 +g27 +sg6 +S'(artist after)' +p2703 +sg8 +S'\n' +p2704 +sg2 +S'Cottage with Harvesters' +p2705 +sg4 +S'Artist Information (' +p2706 +sa(dp2707 +g12 +g27 +sg6 +S'(artist after)' +p2708 +sg8 +S'\n' +p2709 +sg2 +S'Kingston Bank, No.2' +p2710 +sg4 +S'Artist Information (' +p2711 +sa(dp2712 +g12 +g27 +sg6 +S'drypoint' +p2713 +sg8 +S'1927' +p2714 +sg2 +S'Rev. Dr. James' +p2715 +sg4 +S'Sir Muirhead Bone' +p2716 +sa(dp2717 +g12 +g27 +sg6 +S'etching' +p2718 +sg8 +S'unknown date\n' +p2719 +sg2 +S'Entrance to the Mersey' +p2720 +sg4 +S'Sir Frank Short' +p2721 +sa(dp2722 +g12 +g27 +sg6 +S'mezzotint' +p2723 +sg8 +S'unknown date\n' +p2724 +sg2 +S'Nithsdale' +p2725 +sg4 +S'Sir Frank Short' +p2726 +sa(dp2727 +g12 +g27 +sg6 +S'(artist after)' +p2728 +sg8 +S'\n' +p2729 +sg2 +S'The Timber Raft on the Rhine' +p2730 +sg4 +S'Artist Information (' +p2731 +sa(dp2732 +g12 +g27 +sg6 +S'etching' +p2733 +sg8 +S'1907' +p2734 +sg2 +S'Strolling Players Lydd' +p2735 +sg4 +S'Sir Frank Short' +p2736 +sa(dp2737 +g12 +g27 +sg6 +S'(artist after)' +p2738 +sg8 +S'\n' +p2739 +sg2 +S'The Snow Drift' +p2740 +sg4 +S'Artist Information (' +p2741 +sa(dp2742 +g12 +g27 +sg6 +S'(artist after)' +p2743 +sg8 +S'\n' +p2744 +sg2 +S'A Sussex Down' +p2745 +sg4 +S'Artist Information (' +p2746 +sa(dp2747 +g12 +g27 +sg6 +S'etching' +p2748 +sg8 +S'1888' +p2749 +sg2 +S"Low Tide, the Evening Star, and Rye's Long Pier Deserted" +p2750 +sg4 +S'Sir Frank Short' +p2751 +sa(dp2752 +g12 +g27 +sg6 +S'mezzotint' +p2753 +sg8 +S'unknown date\n' +p2754 +sg2 +S'A Slant of Light in Polperro Harbour, No. 1' +p2755 +sg4 +S'Sir Frank Short' +p2756 +sa(dp2757 +g12 +g27 +sg6 +S'(artist after)' +p2758 +sg8 +S'\n' +p2759 +sg2 +S'Wensleydale' +p2760 +sg4 +S'Artist Information (' +p2761 +sa(dp2762 +g12 +g27 +sg6 +S'(artist after)' +p2763 +sg8 +S'\n' +p2764 +sg2 +S'Hayfield in Yorkshire' +p2765 +sg4 +S'Artist Information (' +p2766 +sa(dp2767 +g12 +g27 +sg6 +S'drypoint' +p2768 +sg8 +S'1908' +p2769 +sg2 +S'East Blatchington' +p2770 +sg4 +S'Sir Muirhead Bone' +p2771 +sa(dp2772 +g12 +g27 +sg6 +S'mezzotint' +p2773 +sg8 +S'unknown date\n' +p2774 +sg2 +S'Shap Fells' +p2775 +sg4 +S'Sir Frank Short' +p2776 +sa(dp2777 +g12 +g27 +sg6 +S'mezzotint' +p2778 +sg8 +S'unknown date\n' +p2779 +sg2 +S'When the Weary Moon was in the Wane - Dort' +p2780 +sg4 +S'Sir Frank Short' +p2781 +sa(dp2782 +g12 +g27 +sg6 +S'mezzotint' +p2783 +sg8 +S'unknown date\n' +p2784 +sg2 +S'Moonrise on the Bure' +p2785 +sg4 +S'Sir Frank Short' +p2786 +sa(dp2787 +g12 +g27 +sg6 +S'mezzotint' +p2788 +sg8 +S'unknown date\n' +p2789 +sg2 +S'Coblenz' +p2790 +sg4 +S'Sir Frank Short' +p2791 +sa(dp2792 +g12 +g27 +sg6 +S'(artist after)' +p2793 +sg8 +S'\n' +p2794 +sg2 +S'Moonlight on a River (Lucerne?)' +p2795 +sg4 +S'Artist Information (' +p2796 +sa(dp2797 +g12 +g27 +sg6 +S'(artist after)' +p2798 +sg8 +S'\n' +p2799 +sg2 +S'A Roman Canal' +p2800 +sg4 +S'Artist Information (' +p2801 +sa(dp2802 +g12 +g27 +sg6 +S'(artist after)' +p2803 +sg8 +S'\n' +p2804 +sg2 +S'The Mouth of the Thames - Isle of Sheppey in Distance' +p2805 +sg4 +S'Artist Information (' +p2806 +sa(dp2807 +g12 +g27 +sg6 +S'aquatint' +p2808 +sg8 +S'unknown date\n' +p2809 +sg2 +S"Sunrise o'er Whitby Scaur" +p2810 +sg4 +S'Sir Frank Short' +p2811 +sa(dp2812 +g2 +S'The Mummer' +p2813 +sg4 +S'Joseph Simpson' +p2814 +sg6 +S'etching' +p2815 +sg8 +S'unknown date\n' +p2816 +sg10 +S'http://www.nga.gov:80/thumb-l/a00081/a0008192.jpg' +p2817 +sg12 +g27 +sa(dp2818 +g2 +S'Brangwyn' +p2819 +sg4 +S'Joseph Simpson' +p2820 +sg6 +S'etching' +p2821 +sg8 +S'unknown date\n' +p2822 +sg10 +S'http://www.nga.gov:80/thumb-l/a00081/a0008190.jpg' +p2823 +sg12 +g27 +sa(dp2824 +g12 +g27 +sg6 +S'drypoint' +p2825 +sg8 +S'1903' +p2826 +sg2 +S"Fisher's Creek, King's Lynn" +p2827 +sg4 +S'Sir Muirhead Bone' +p2828 +sa(dp2829 +g2 +S'George Bernard Shaw' +p2830 +sg4 +S'Joseph Simpson' +p2831 +sg6 +S'etching on light green paper' +p2832 +sg8 +S'unknown date\n' +p2833 +sg10 +S'http://www.nga.gov:80/thumb-l/a00081/a0008193.jpg' +p2834 +sg12 +g27 +sa(dp2835 +g12 +g27 +sg6 +S'portfolio with 304 lithographs' +p2836 +sg8 +S'published 1913' +p2837 +sg2 +S'Illustrations for Benvenuto Cellini' +p2838 +sg4 +S'Max Slevogt' +p2839 +sa(dp2840 +g12 +g27 +sg6 +S'etching' +p2841 +sg8 +S'1931' +p2842 +sg2 +S'Robert Henri, Painter' +p2843 +sg4 +S'John Sloan' +p2844 +sa(dp2845 +g12 +g27 +sg6 +S'etching' +p2846 +sg8 +S'1908' +p2847 +sg2 +S'Copyist at the Metropolitan Museum' +p2848 +sg4 +S'John Sloan' +p2849 +sa(dp2850 +g12 +g27 +sg6 +S'etching' +p2851 +sg8 +S'unknown date\n' +p2852 +sg2 +S'Meal' +p2853 +sg4 +S'Jose Gutierrez Solana' +p2854 +sa(dp2855 +g12 +g27 +sg6 +S'etching' +p2856 +sg8 +S'unknown date\n' +p2857 +sg2 +S'Street in Spain' +p2858 +sg4 +S'Jose Gutierrez Solana' +p2859 +sa(dp2860 +g2 +S'Ornament' +p2861 +sg4 +S'Virgil Solis' +p2862 +sg6 +S'engraving' +p2863 +sg8 +S'unknown date\n' +p2864 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad75.jpg' +p2865 +sg12 +g27 +sa(dp2866 +g12 +g27 +sg6 +S'bound volume with 18 engravings' +p2867 +sg8 +S'c. 1550' +p2868 +sg2 +S'The Passion' +p2869 +sg4 +S'Virgil Solis' +p2870 +sa(dp2871 +g2 +S'Mvsica (Music)' +p2872 +sg4 +S'Virgil Solis' +p2873 +sg6 +S'engraving' +p2874 +sg8 +S'unknown date\n' +p2875 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad76.jpg' +p2876 +sg12 +g27 +sa(dp2877 +g2 +S'Gramatica (Grammar)' +p2878 +sg4 +S'Virgil Solis' +p2879 +sg6 +S'engraving' +p2880 +sg8 +S'unknown date\n' +p2881 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad77.jpg' +p2882 +sg12 +g27 +sa(dp2883 +g12 +g27 +sg6 +S'drypoint' +p2884 +sg8 +S'1906' +p2885 +sg2 +S'Hampstead Heath' +p2886 +sg4 +S'Sir Muirhead Bone' +p2887 +sa(dp2888 +g2 +S'Astrologia (Astrology)' +p2889 +sg4 +S'Virgil Solis' +p2890 +sg6 +S'engraving' +p2891 +sg8 +S'unknown date\n' +p2892 +sg10 +S'http://www.nga.gov:80/thumb-l/a00065/a0006522.jpg' +p2893 +sg12 +g27 +sa(dp2894 +g2 +S'Rhetorica (Rhetoric)' +p2895 +sg4 +S'Virgil Solis' +p2896 +sg6 +S'engraving' +p2897 +sg8 +S'unknown date\n' +p2898 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad78.jpg' +p2899 +sg12 +g27 +sa(dp2900 +g2 +S'Dialectica (Dialectics)' +p2901 +sg4 +S'Virgil Solis' +p2902 +sg6 +S'engraving' +p2903 +sg8 +S'unknown date\n' +p2904 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad79.jpg' +p2905 +sg12 +g27 +sa(dp2906 +g2 +S'Artihmetria (Arithmetic)' +p2907 +sg4 +S'Virgil Solis' +p2908 +sg6 +S'engraving' +p2909 +sg8 +S'unknown date\n' +p2910 +sg10 +S'http://www.nga.gov:80/thumb-l/a00065/a000651e.jpg' +p2911 +sg12 +g27 +sa(dp2912 +g2 +S'Geometria (Geometry)' +p2913 +sg4 +S'Virgil Solis' +p2914 +sg6 +S'engraving' +p2915 +sg8 +S'unknown date\n' +p2916 +sg10 +S'http://www.nga.gov:80/thumb-l/a00065/a000651f.jpg' +p2917 +sg12 +g27 +sa(dp2918 +g2 +S'Spring' +p2919 +sg4 +S'Virgil Solis' +p2920 +sg6 +S'engraving' +p2921 +sg8 +S'unknown date\n' +p2922 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad7a.jpg' +p2923 +sg12 +g27 +sa(dp2924 +g2 +S'The Enclosed Valley' +p2925 +sg4 +S'Hercules Seghers' +p2926 +sg6 +S'etching and drypoint in brown' +p2927 +sg8 +S'unknown date\n' +p2928 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6ca.jpg' +p2929 +sg12 +g27 +sa(dp2930 +g12 +g27 +sg6 +S'lithograph on paper' +p2931 +sg8 +S'unknown date\n' +p2932 +sg2 +S'Self-Portrait' +p2933 +sg4 +S'Raphael Soyer' +p2934 +sa(dp2935 +g12 +g27 +sg6 +S'lithograph' +p2936 +sg8 +S'1935' +p2937 +sg2 +S'Backstage' +p2938 +sg4 +S'Raphael Soyer' +p2939 +sa(dp2940 +g12 +g27 +sg6 +S'etching' +p2941 +sg8 +S'unknown date\n' +p2942 +sg2 +S'Shadow and Shade' +p2943 +sg4 +S'Nathaniel Sparks' +p2944 +sa(dp2945 +g12 +g27 +sg6 +S'graphite with gray wash' +p2946 +sg8 +S'unknown date\n' +p2947 +sg2 +S'Near Siena' +p2948 +sg4 +S'Sir Muirhead Bone' +p2949 +sa(dp2950 +g12 +g27 +sg6 +S'etching' +p2951 +sg8 +S'1924' +p2952 +sg2 +S"Artist's Father" +p2953 +sg4 +S'Nathaniel Sparks' +p2954 +sa(dp2955 +g2 +S'The People Work - Morning' +p2956 +sg4 +S'Benton Murdoch Spruance' +p2957 +sg6 +S'lithograph in black' +p2958 +sg8 +S'1937' +p2959 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b95.jpg' +p2960 +sg12 +g27 +sa(dp2961 +g12 +g27 +sg6 +S'portfolio with four lithographs in black' +p2962 +sg8 +S'published 1937' +p2963 +sg2 +S'The People Work' +p2964 +sg4 +S'Benton Murdoch Spruance' +p2965 +sa(dp2966 +g2 +S'The People Work - Noon' +p2967 +sg4 +S'Benton Murdoch Spruance' +p2968 +sg6 +S'lithograph in black' +p2969 +sg8 +S'1937' +p2970 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b96.jpg' +p2971 +sg12 +g27 +sa(dp2972 +g2 +S'The People Work - Evening' +p2973 +sg4 +S'Benton Murdoch Spruance' +p2974 +sg6 +S'lithograph in black' +p2975 +sg8 +S'1937' +p2976 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b97.jpg' +p2977 +sg12 +g27 +sa(dp2978 +g2 +S'The People Work - Night' +p2979 +sg4 +S'Benton Murdoch Spruance' +p2980 +sg6 +S'lithograph in black' +p2981 +sg8 +S'1937' +p2982 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b98.jpg' +p2983 +sg12 +g27 +sa(dp2984 +g12 +g27 +sg6 +S'lithograph in black' +p2985 +sg8 +S'1938' +p2986 +sg2 +S'Vagrant' +p2987 +sg4 +S'Benton Murdoch Spruance' +p2988 +sa(dp2989 +g12 +g27 +sg6 +S'lithograph (stone) in black' +p2990 +sg8 +S'1938' +p2991 +sg2 +S'Macbeth - Act V' +p2992 +sg4 +S'Benton Murdoch Spruance' +p2993 +sa(dp2994 +g12 +g27 +sg6 +S'etching and aquatint in black on wove paper' +p2995 +sg8 +S'1932' +p2996 +sg2 +S'Construction' +p2997 +sg4 +S'Harry Sternberg' +p2998 +sa(dp2999 +g12 +g27 +sg6 +S'aquatint and etching' +p3000 +sg8 +S'1941' +p3001 +sg2 +S'Man and War' +p3002 +sg4 +S'Harry Sternberg' +p3003 +sa(dp3004 +g12 +g27 +sg6 +S'drypoint' +p3005 +sg8 +S'1913' +p3006 +sg2 +S'On the Y, Amsterdam' +p3007 +sg4 +S'Sir Muirhead Bone' +p3008 +sa(dp3009 +g12 +g27 +sg6 +S'lithograph' +p3010 +sg8 +S'unknown date\n' +p3011 +sg2 +S'Steel Mills' +p3012 +sg4 +S'Harry Sternberg' +p3013 +sa(dp3014 +g2 +S'Rudyard Kipling' +p3015 +sg4 +S'William Strang' +p3016 +sg6 +S'etching' +p3017 +sg8 +S'unknown date\n' +p3018 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a34.jpg' +p3019 +sg12 +g27 +sa(dp3020 +g2 +S'Self-Portrait' +p3021 +sg4 +S'William Strang' +p3022 +sg6 +S'drypoint' +p3023 +sg8 +S'1897' +p3024 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c53.jpg' +p3025 +sg12 +g27 +sa(dp3026 +g12 +g27 +sg6 +S'(author)' +p3027 +sg8 +S'\n' +p3028 +sg2 +S'Paradise Lost' +p3029 +sg4 +S'Artist Information (' +p3030 +sa(dp3031 +g12 +g27 +sg6 +S'1 vol: ill: etchings and drypoints' +p3032 +sg8 +S'published 1894' +p3033 +sg2 +S"Death and the Ploughman's Wife" +p3034 +sg4 +S'William Strang' +p3035 +sa(dp3036 +g12 +g27 +sg6 +S'1 vol: ill: etchings and drypoints' +p3037 +sg8 +S'published 1892' +p3038 +sg2 +S'The Earth Fiend' +p3039 +sg4 +S'William Strang' +p3040 +sa(dp3041 +g12 +g27 +sg6 +S'etching and drypoint' +p3042 +sg8 +S'unknown date\n' +p3043 +sg2 +S"Portrait of the Artist's Mother" +p3044 +sg4 +S'Oskar Stossel' +p3045 +sa(dp3046 +g2 +S'River View' +p3047 +sg4 +S'Pieter Stevens' +p3048 +sg6 +S'pen and brown ink with brown and gray wash on laid paper' +p3049 +sg8 +S'unknown date\n' +p3050 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006df4.jpg' +p3051 +sg12 +g27 +sa(dp3052 +g2 +S'The Court Rules' +p3053 +sg4 +S'Dwight Case Sturges' +p3054 +sg6 +S'etching' +p3055 +sg8 +S'1927' +p3056 +sg10 +S'http://www.nga.gov:80/thumb-l/a0010e/a0010ec8.jpg' +p3057 +sg12 +g27 +sa(dp3058 +g2 +S'The Court Rules' +p3059 +sg4 +S'Dwight Case Sturges' +p3060 +sg6 +S'etching [cancellation proof]' +p3061 +sg8 +S'1927' +p3062 +sg10 +S'http://www.nga.gov:80/thumb-l/a0010e/a0010ec9.jpg' +p3063 +sg12 +g27 +sa(dp3064 +g2 +S'George IV as Prince of Wales' +p3065 +sg4 +S'Gainsborough Dupont' +p3066 +sg6 +S'oil on canvas' +p3067 +sg8 +S'1781' +p3068 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e9b.jpg' +p3069 +sg12 +g27 +sa(dp3070 +g12 +g27 +sg6 +S'drypoint' +p3071 +sg8 +S'1915' +p3072 +sg2 +S'Piccadilly Circus, 1915' +p3073 +sg4 +S'Sir Muirhead Bone' +p3074 +sa(dp3075 +g2 +S'The Violinist' +p3076 +sg4 +S'Dwight Case Sturges' +p3077 +sg6 +S'etching' +p3078 +sg8 +S'1929' +p3079 +sg10 +S'http://www.nga.gov:80/thumb-l/a0010e/a0010ecf.jpg' +p3080 +sg12 +g27 +sa(dp3081 +g2 +S'The Violinist' +p3082 +sg4 +S'Dwight Case Sturges' +p3083 +sg6 +S'etching [cancellation proof]' +p3084 +sg8 +S'1929' +p3085 +sg10 +S'http://www.nga.gov:80/thumb-l/a0010e/a0010ece.jpg' +p3086 +sg12 +g27 +sa(dp3087 +g2 +S'The Violinist' +p3088 +sg4 +S'Dwight Case Sturges' +p3089 +sg6 +S'etching [cancellation proof]' +p3090 +sg8 +S'1929' +p3091 +sg10 +S'http://www.nga.gov:80/thumb-l/a0010e/a0010ecd.jpg' +p3092 +sg12 +g27 +sa(dp3093 +g2 +S'The Station Agent' +p3094 +sg4 +S'Dwight Case Sturges' +p3095 +sg6 +S'etching' +p3096 +sg8 +S'1929' +p3097 +sg10 +S'http://www.nga.gov:80/thumb-l/a0010e/a0010ecc.jpg' +p3098 +sg12 +g27 +sa(dp3099 +g2 +S'Canfield' +p3100 +sg4 +S'Dwight Case Sturges' +p3101 +sg6 +S'etching' +p3102 +sg8 +S'unknown date\n' +p3103 +sg10 +S'http://www.nga.gov:80/thumb-l/a0010e/a0010ecb.jpg' +p3104 +sg12 +g27 +sa(dp3105 +g2 +S'The Skipper' +p3106 +sg4 +S'Dwight Case Sturges' +p3107 +sg6 +S'etching' +p3108 +sg8 +S'unknown date\n' +p3109 +sg10 +S'http://www.nga.gov:80/thumb-l/a0010e/a0010ec6.jpg' +p3110 +sg12 +g27 +sa(dp3111 +g2 +S'Mother' +p3112 +sg4 +S'Dwight Case Sturges' +p3113 +sg6 +S'etching' +p3114 +sg8 +S'1928' +p3115 +sg10 +S'http://www.nga.gov:80/thumb-l/a0010e/a0010ec7.jpg' +p3116 +sg12 +g27 +sa(dp3117 +g2 +S'Yarns' +p3118 +sg4 +S'Dwight Case Sturges' +p3119 +sg6 +S'etching' +p3120 +sg8 +S'1930' +p3121 +sg10 +S'http://www.nga.gov:80/thumb-l/a0010e/a0010ec5.jpg' +p3122 +sg12 +g27 +sa(dp3123 +g2 +S'Hear Ye, Hear Ye, Hear Ye' +p3124 +sg4 +S'Dwight Case Sturges' +p3125 +sg6 +S'etching' +p3126 +sg8 +S'1928' +p3127 +sg10 +S'http://www.nga.gov:80/thumb-l/a0010e/a0010ec4.jpg' +p3128 +sg12 +g27 +sa(dp3129 +g2 +S'Lobsterman' +p3130 +sg4 +S'Dwight Case Sturges' +p3131 +sg6 +S'etching' +p3132 +sg8 +S'1930' +p3133 +sg10 +S'http://www.nga.gov:80/thumb-l/a0010e/a0010ed0.jpg' +p3134 +sg12 +g27 +sa(dp3135 +g12 +g27 +sg6 +S'drypoint' +p3136 +sg8 +S'1927' +p3137 +sg2 +S'Leonard Gow' +p3138 +sg4 +S'Sir Muirhead Bone' +p3139 +sa(dp3140 +g2 +S'President Coolidge' +p3141 +sg4 +S'Dwight Case Sturges' +p3142 +sg6 +S'etching' +p3143 +sg8 +S'1925' +p3144 +sg10 +S'http://www.nga.gov:80/thumb-l/a0010e/a0010eca.jpg' +p3145 +sg12 +g27 +sa(dp3146 +g12 +g27 +sg6 +S'drypoint' +p3147 +sg8 +S'unknown date\n' +p3148 +sg2 +S'The Harbour, La Rochelle' +p3149 +sg4 +S'Douglas Ion Smart' +p3150 +sa(dp3151 +g2 +S'Phoebe Hoppner' +p3152 +sg4 +S'Artist Information (' +p3153 +sg6 +S'(artist after)' +p3154 +sg8 +S'\n' +p3155 +sg10 +S'http://www.nga.gov:80/thumb-l/a00078/a000781c.jpg' +p3156 +sg12 +g27 +sa(dp3157 +g2 +S'Richard Robinson' +p3158 +sg4 +S'Artist Information (' +p3159 +sg6 +S'(artist after)' +p3160 +sg8 +S'\n' +p3161 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c49.jpg' +p3162 +sg12 +g27 +sa(dp3163 +g12 +g27 +sg6 +S'(artist after)' +p3164 +sg8 +S'\n' +p3165 +sg2 +S'Lieutenant Colonel Sir Banastre Tarleton' +p3166 +sg4 +S'Artist Information (' +p3167 +sa(dp3168 +g2 +S'In the Rain: Mother and Children (Sous la pluie: La mere et les enfants)' +p3169 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3170 +sg6 +S'etching and aquatint' +p3171 +sg8 +S'1915' +p3172 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a010.jpg' +p3173 +sg12 +g27 +sa(dp3174 +g2 +S'In the Rain: Mother and Children (Sous la pluie: La mere et les enfants)' +p3175 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3176 +sg6 +S'etching and aquatint' +p3177 +sg8 +S'1915' +p3178 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a00f.jpg' +p3179 +sg12 +g27 +sa(dp3180 +g2 +S'Waiting (En attendant)' +p3181 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3182 +sg6 +S'lithograph' +p3183 +sg8 +S'1895' +p3184 +sg10 +S'http://www.nga.gov:80/thumb-l/a00069/a000693f.jpg' +p3185 +sg12 +g27 +sa(dp3186 +g2 +S"Girls Coming from School (Gamines sortant de l'ecole)" +p3187 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3188 +sg6 +S'etching (copper)' +p3189 +sg8 +S'1911' +p3190 +sg10 +S'http://www.nga.gov:80/thumb-l/a00069/a000693d.jpg' +p3191 +sg12 +g27 +sa(dp3192 +g2 +S'Prophet (Le prophete)' +p3193 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3194 +sg6 +S'etching (zinc)' +p3195 +sg8 +S'1902' +p3196 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a016.jpg' +p3197 +sg12 +g27 +sa(dp3198 +g12 +g27 +sg6 +S'drypoint' +p3199 +sg8 +S'1920' +p3200 +sg2 +S'Rabindranath Tagore' +p3201 +sg4 +S'Sir Muirhead Bone' +p3202 +sa(dp3203 +g2 +S'Poor People (Les pauvres gens)' +p3204 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3205 +sg6 +S'etching and drypoint' +p3206 +sg8 +S'1914' +p3207 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a012.jpg' +p3208 +sg12 +g27 +sa(dp3209 +g2 +S"Exodus (L'exode)" +p3210 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3211 +sg6 +S'etching' +p3212 +sg8 +S'1916' +p3213 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a015.jpg' +p3214 +sg12 +g27 +sa(dp3215 +g2 +S'Three Companions (Les trois compagnons)' +p3216 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3217 +sg6 +S'etching and drypoint (copper)' +p3218 +sg8 +S'1912' +p3219 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a013.jpg' +p3220 +sg12 +g27 +sa(dp3221 +g2 +S'Soldiers on Leave - Night Scene (Permissionnaires - Effet de Nuit)' +p3222 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3223 +sg6 +S'etching' +p3224 +sg8 +S'1916' +p3225 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e26.jpg' +p3226 +sg12 +g27 +sa(dp3227 +g2 +S'Misery and Splendor (Misere et splendeur)' +p3228 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3229 +sg6 +S'lithograph' +p3230 +sg8 +S'1908' +p3231 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e23.jpg' +p3232 +sg12 +g27 +sa(dp3233 +g2 +S'Three Companions (Les trois compagnons)' +p3234 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3235 +sg6 +S'etching and drypoint (copper)' +p3236 +sg8 +S'1912' +p3237 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a014.jpg' +p3238 +sg12 +g27 +sa(dp3239 +g2 +S'Self-Portrait (Steinlen de face, tete droite)' +p3240 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3241 +sg6 +S'lithograph' +p3242 +sg8 +S'1905' +p3243 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e28.jpg' +p3244 +sg12 +g27 +sa(dp3245 +g2 +S'The Cats: Tsching, Batzar and Blanc-Blanc' +p3246 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3247 +sg6 +S'charcoal' +p3248 +sg8 +S'unknown date\n' +p3249 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a000740d.jpg' +p3250 +sg12 +g27 +sa(dp3251 +g2 +S"Thunder Storm (Temps d'orage)" +p3252 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3253 +sg6 +S'etching and drypoint' +p3254 +sg8 +S'unknown date\n' +p3255 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e25.jpg' +p3256 +sg12 +g27 +sa(dp3257 +g2 +S'The Distant City (La ville lointaine)' +p3258 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3259 +sg6 +S'etching and drypoint' +p3260 +sg8 +S'1914' +p3261 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e27.jpg' +p3262 +sg12 +g27 +sa(dp3263 +g12 +g27 +sg6 +S'drypoint' +p3264 +sg8 +S'1913' +p3265 +sg2 +S'Rainy Night in Rome' +p3266 +sg4 +S'Sir Muirhead Bone' +p3267 +sa(dp3268 +g2 +S'Tramp with Bundle (Le chemineau a la besace)' +p3269 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3270 +sg6 +S'drypoint and (etching?)' +p3271 +sg8 +S'1914' +p3272 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e24.jpg' +p3273 +sg12 +g27 +sa(dp3274 +g2 +S'To the True Poor: The Wicked Rich (Aux vrais pauvres: Les mauvais riches)' +p3275 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3276 +sg6 +S'lithograph' +p3277 +sg8 +S'1894' +p3278 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e29.jpg' +p3279 +sg12 +g27 +sa(dp3280 +g2 +S'The Encounter (Recontre)' +p3281 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3282 +sg6 +S'etching (copper)' +p3283 +sg8 +S'1902' +p3284 +sg10 +S'http://www.nga.gov:80/thumb-l/a00091/a00091c7.jpg' +p3285 +sg12 +g27 +sa(dp3286 +g2 +S'Study of a Woman' +p3287 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3288 +sg6 +S'graphite and colored crayon' +p3289 +sg8 +S'unknown date\n' +p3290 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a0007410.jpg' +p3291 +sg12 +g27 +sa(dp3292 +g2 +S'Return from the Wash House (Retour de lavoir)' +p3293 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3294 +sg6 +S'color soft-ground etching and aquatint (zinc)' +p3295 +sg8 +S'1912' +p3296 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a011.jpg' +p3297 +sg12 +g27 +sa(dp3298 +g2 +S'From the Sixth Floor' +p3299 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3300 +sg6 +S'watercolor on paperboard' +p3301 +sg8 +S'unknown date\n' +p3302 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a000740f.jpg' +p3303 +sg12 +g27 +sa(dp3304 +g2 +S"Portrait of the Artist's Wife" +p3305 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3306 +sg6 +S'pen and brown ink' +p3307 +sg8 +S'unknown date\n' +p3308 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e0d.jpg' +p3309 +sg12 +g27 +sa(dp3310 +g2 +S'Sa famille (chanson)' +p3311 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3312 +sg6 +S'brush and black ink and colored chalk' +p3313 +sg8 +S'unknown date\n' +p3314 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a0007415.jpg' +p3315 +sg12 +g27 +sa(dp3316 +g2 +S'La mort des pauvres-Baudelaire' +p3317 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3318 +sg6 +S'black and colored crayon' +p3319 +sg8 +S'unknown date\n' +p3320 +sg10 +S'http://www.nga.gov:80/thumb-l/a00073/a0007310.jpg' +p3321 +sg12 +g27 +sa(dp3322 +g2 +S'He Acts Like a Painter' +p3323 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3324 +sg6 +S'brush and black ink and black crayon' +p3325 +sg8 +S'unknown date\n' +p3326 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a0007411.jpg' +p3327 +sg12 +g27 +sa(dp3328 +g12 +g27 +sg6 +S'drypoint' +p3329 +sg8 +S'1908' +p3330 +sg2 +S'South Coast - No. 2' +p3331 +sg4 +S'Sir Muirhead Bone' +p3332 +sa(dp3333 +g2 +S"Sailors' Wives" +p3334 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3335 +sg6 +S'black and colored crayon' +p3336 +sg8 +S'unknown date\n' +p3337 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a000740e.jpg' +p3338 +sg12 +g27 +sa(dp3339 +g2 +S'Fille de Ferme' +p3340 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3341 +sg6 +S'pen and black ink and colored crayon' +p3342 +sg8 +S'unknown date\n' +p3343 +sg10 +S'http://www.nga.gov:80/thumb-l/a00073/a000730d.jpg' +p3344 +sg12 +g27 +sa(dp3345 +g2 +S'Sheet of Sketches' +p3346 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3347 +sg6 +S'black chalk and black crayon' +p3348 +sg8 +S'unknown date\n' +p3349 +sg10 +S'http://www.nga.gov:80/thumb-l/a00073/a000730e.jpg' +p3350 +sg12 +g27 +sa(dp3351 +g2 +S'Sketches for "Lovers on a Bench"' +p3352 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3353 +sg6 +S'black chalk' +p3354 +sg8 +S'unknown date\n' +p3355 +sg10 +S'http://www.nga.gov:80/thumb-l/a00073/a000730f.jpg' +p3356 +sg12 +g27 +sa(dp3357 +g2 +S'The Coconut Merchant' +p3358 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3359 +sg6 +S'blue and black chalk' +p3360 +sg8 +S'unknown date\n' +p3361 +sg10 +S'http://www.nga.gov:80/thumb-l/a00073/a0007318.jpg' +p3362 +sg12 +g27 +sa(dp3363 +g2 +S"C'est ici, chez nous!" +p3364 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3365 +sg6 +S'black chalk' +p3366 +sg8 +S'1917' +p3367 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a0007413.jpg' +p3368 +sg12 +g27 +sa(dp3369 +g2 +S'Watching the Crowd' +p3370 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3371 +sg6 +S'pen and black ink, black chalk and colored crayon' +p3372 +sg8 +S'unknown date\n' +p3373 +sg10 +S'http://www.nga.gov:80/thumb-l/a00073/a0007319.jpg' +p3374 +sg12 +g27 +sa(dp3375 +g2 +S'Gossips' +p3376 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3377 +sg6 +S'black chalk and watercolor' +p3378 +sg8 +S'unknown date\n' +p3379 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a0007412.jpg' +p3380 +sg12 +g27 +sa(dp3381 +g2 +S'To the Village' +p3382 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3383 +sg6 +S'collage of pen and black ink, graphite and blue and red crayon on two overlapped sheets of paper' +p3384 +sg8 +S'unknown date\n' +p3385 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a0007414.jpg' +p3386 +sg12 +g27 +sa(dp3387 +g2 +S'Chez Maxime' +p3388 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3389 +sg6 +S'pen and brush and black ink with gray wash over blue and black chalk' +p3390 +sg8 +S'unknown date\n' +p3391 +sg10 +S'http://www.nga.gov:80/thumb-l/a00073/a0007314.jpg' +p3392 +sg12 +g27 +sa(dp3393 +g12 +g27 +sg6 +S'drypoint' +p3394 +sg8 +S'1925' +p3395 +sg2 +S'A Spanish Good Friday (Ronda)' +p3396 +sg4 +S'Sir Muirhead Bone' +p3397 +sa(dp3398 +g2 +S'La chienne au loup' +p3399 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3400 +sg6 +S'brush and black ink with black and colored chalk' +p3401 +sg8 +S'unknown date\n' +p3402 +sg10 +S'http://www.nga.gov:80/thumb-l/a00073/a0007317.jpg' +p3403 +sg12 +g27 +sa(dp3404 +g2 +S'Penitence' +p3405 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3406 +sg6 +S'brush and black ink with black and colored crayon' +p3407 +sg8 +S'unknown date\n' +p3408 +sg10 +S'http://www.nga.gov:80/thumb-l/a00073/a0007315.jpg' +p3409 +sg12 +g27 +sa(dp3410 +g2 +S'Les petits joyeux' +p3411 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3412 +sg6 +S'black chalk, pen and black ink, colored crayon andpaper' +p3413 +sg8 +S'unknown date\n' +p3414 +sg10 +S'http://www.nga.gov:80/thumb-l/a00073/a0007316.jpg' +p3415 +sg12 +g27 +sa(dp3416 +g2 +S'La Rafle' +p3417 +sg4 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p3418 +sg6 +S'brush and black ink and colored crayon' +p3419 +sg8 +S'unknown date\n' +p3420 +sg10 +S'http://www.nga.gov:80/thumb-l/a00073/a0007311.jpg' +p3421 +sg12 +g27 +sa(dp3422 +g2 +S'Gillis de Glarges' +p3423 +sg4 +S'Artist Information (' +p3424 +sg6 +S'(artist after)' +p3425 +sg8 +S'\n' +p3426 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d58c.jpg' +p3427 +sg12 +g27 +sa(dp3428 +g2 +S'Andreas Rivetus' +p3429 +sg4 +S'Artist Information (' +p3430 +sg6 +S'(artist after)' +p3431 +sg8 +S'\n' +p3432 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d59a.jpg' +p3433 +sg12 +g27 +sa(dp3434 +g2 +S'Hendrik Goltzius' +p3435 +sg4 +S'Jonas Suyderhoff' +p3436 +sg6 +S'etching and engraving' +p3437 +sg8 +S'unknown date\n' +p3438 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d58f.jpg' +p3439 +sg12 +g27 +sa(dp3440 +g2 +S'David Nuyts' +p3441 +sg4 +S'Jonas Suyderhoff' +p3442 +sg6 +S'engraving' +p3443 +sg8 +S'1645' +p3444 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d595.jpg' +p3445 +sg12 +g27 +sa(dp3446 +g2 +S'Johannes Been' +p3447 +sg4 +S'Artist Information (' +p3448 +sg6 +S'(artist after)' +p3449 +sg8 +S'\n' +p3450 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d574.jpg' +p3451 +sg12 +g27 +sa(dp3452 +g12 +g27 +sg6 +S'drypoint' +p3453 +sg8 +S'1920' +p3454 +sg2 +S'Yarmouth, Isle of Wight' +p3455 +sg4 +S'Sir Muirhead Bone' +p3456 +sa(dp3457 +g2 +S'Theodorus Wikenburg' +p3458 +sg4 +S'Jonas Suyderhoff' +p3459 +sg6 +S'engraving' +p3460 +sg8 +S'unknown date\n' +p3461 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d593.jpg' +p3462 +sg12 +g27 +sa(dp3463 +g2 +S'Franciscus Plante' +p3464 +sg4 +S'Artist Information (' +p3465 +sg6 +S'(artist after)' +p3466 +sg8 +S'\n' +p3467 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d594.jpg' +p3468 +sg12 +g27 +sa(dp3469 +g2 +S'Conrad Vietor van Aken' +p3470 +sg4 +S'Artist Information (' +p3471 +sg6 +S'(artist after)' +p3472 +sg8 +S'\n' +p3473 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d59c.jpg' +p3474 +sg12 +g27 +sa(dp3475 +g2 +S'Adriaen Tegularius' +p3476 +sg4 +S'Artist Information (' +p3477 +sg6 +S'(artist after)' +p3478 +sg8 +S'\n' +p3479 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d596.jpg' +p3480 +sg12 +g27 +sa(dp3481 +g2 +S'Frederick Spanheim' +p3482 +sg4 +S'Artist Information (' +p3483 +sg6 +S'(artist after)' +p3484 +sg8 +S'\n' +p3485 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d599.jpg' +p3486 +sg12 +g27 +sa(dp3487 +g2 +S'Jacob Revius' +p3488 +sg4 +S'Artist Information (' +p3489 +sg6 +S'(artist after)' +p3490 +sg8 +S'\n' +p3491 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d598.jpg' +p3492 +sg12 +g27 +sa(dp3493 +g2 +S'Johannes Hoornbeeck' +p3494 +sg4 +S'Jonas Suyderhoff' +p3495 +sg6 +S'engraving' +p3496 +sg8 +S'unknown date\n' +p3497 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d58a.jpg' +p3498 +sg12 +g27 +sa(dp3499 +g2 +S'Nicolas Bodding van Laer' +p3500 +sg4 +S'Jonas Suyderhoff' +p3501 +sg6 +S'engraving' +p3502 +sg8 +S'unknown date\n' +p3503 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3d4.jpg' +p3504 +sg12 +g27 +sa(dp3505 +g2 +S'Samuel Ampzing' +p3506 +sg4 +S'Artist Information (' +p3507 +sg6 +S'(artist after)' +p3508 +sg8 +S'\n' +p3509 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d580.jpg' +p3510 +sg12 +g27 +sa(dp3511 +g2 +S'Julius Beyma' +p3512 +sg4 +S'Jonas Suyderhoff' +p3513 +sg6 +S'engraving' +p3514 +sg8 +S'unknown date\n' +p3515 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3d5.jpg' +p3516 +sg12 +g27 +sa(dp3517 +g12 +g27 +sg6 +S'drypoint' +p3518 +sg8 +S'1913' +p3519 +sg2 +S'Walberswick Ferry' +p3520 +sg4 +S'Sir Muirhead Bone' +p3521 +sa(dp3522 +g2 +S'Eleazer Swalmius' +p3523 +sg4 +S'Artist Information (' +p3524 +sg6 +S'(artist after)' +p3525 +sg8 +S'\n' +p3526 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d597.jpg' +p3527 +sg12 +g27 +sa(dp3528 +g2 +S'Jacob van Wassenaer van Obdam' +p3529 +sg4 +S'Artist Information (' +p3530 +sg6 +S'(artist after)' +p3531 +sg8 +S'\n' +p3532 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d592.jpg' +p3533 +sg12 +g27 +sa(dp3534 +g2 +S"Constantijn L'Empereur" +p3535 +sg4 +S'Artist Information (' +p3536 +sg6 +S'(artist after)' +p3537 +sg8 +S'\n' +p3538 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d59b.jpg' +p3539 +sg12 +g27 +sa(dp3540 +g2 +S'Emperor Ferdinand III' +p3541 +sg4 +S'Artist Information (' +p3542 +sg6 +S'(artist after)' +p3543 +sg8 +S'\n' +p3544 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d579.jpg' +p3545 +sg12 +g27 +sa(dp3546 +g2 +S'Marcus-Zuerius Boxhorn' +p3547 +sg4 +S'Artist Information (' +p3548 +sg6 +S'(artist after)' +p3549 +sg8 +S'\n' +p3550 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d582.jpg' +p3551 +sg12 +g27 +sa(dp3552 +g2 +S'Rudolph Hegger' +p3553 +sg4 +S'Artist Information (' +p3554 +sg6 +S'(artist after)' +p3555 +sg8 +S'\n' +p3556 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d583.jpg' +p3557 +sg12 +g27 +sa(dp3558 +g2 +S'Johannes Cocceius' +p3559 +sg4 +S'Artist Information (' +p3560 +sg6 +S'(artist after)' +p3561 +sg8 +S'\n' +p3562 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d584.jpg' +p3563 +sg12 +g27 +sa(dp3564 +g2 +S'Martin van Tromp' +p3565 +sg4 +S'Artist Information (' +p3566 +sg6 +S'(artist after)' +p3567 +sg8 +S'\n' +p3568 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d591.jpg' +p3569 +sg12 +g27 +sa(dp3570 +g2 +S'Henrietta Maria, Queen of England' +p3571 +sg4 +S'Artist Information (' +p3572 +sg6 +S'(artist after)' +p3573 +sg8 +S'\n' +p3574 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d57e.jpg' +p3575 +sg12 +g27 +sa(dp3576 +g2 +S'Charles I, King of England' +p3577 +sg4 +S'Artist Information (' +p3578 +sg6 +S'(artist after)' +p3579 +sg8 +S'\n' +p3580 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d578.jpg' +p3581 +sg12 +g27 +sa(dp3582 +g12 +g27 +sg6 +S'drypoint' +p3583 +sg8 +S'1913' +p3584 +sg2 +S'Walberswick Ferry' +p3585 +sg4 +S'Sir Muirhead Bone' +p3586 +sa(dp3587 +g2 +S'John the Fearless, Duke of Burgundy' +p3588 +sg4 +S'Artist Information (' +p3589 +sg6 +S'(artist after)' +p3590 +sg8 +S'\n' +p3591 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d57d.jpg' +p3592 +sg12 +g27 +sa(dp3593 +g2 +S'Caspar Sibelius' +p3594 +sg4 +S'Artist Information (' +p3595 +sg6 +S'(artist after)' +p3596 +sg8 +S'\n' +p3597 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3d6.jpg' +p3598 +sg12 +g27 +sa(dp3599 +g2 +S'Petrus Winsemius' +p3600 +sg4 +S'Jonas Suyderhoff' +p3601 +sg6 +S'engraving' +p3602 +sg8 +S'unknown date\n' +p3603 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3de.jpg' +p3604 +sg12 +g27 +sa(dp3605 +g2 +S'Daniel Heinsius' +p3606 +sg4 +S'Artist Information (' +p3607 +sg6 +S'(artist after)' +p3608 +sg8 +S'\n' +p3609 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d586.jpg' +p3610 +sg12 +g27 +sa(dp3611 +g2 +S'Hendrick de Keyser' +p3612 +sg4 +S'Artist Information (' +p3613 +sg6 +S'(artist after)' +p3614 +sg8 +S'\n' +p3615 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3dd.jpg' +p3616 +sg12 +g27 +sa(dp3617 +g2 +S'Adriaen Heereboord' +p3618 +sg4 +S'Artist Information (' +p3619 +sg6 +S'(artist after)' +p3620 +sg8 +S'\n' +p3621 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d587.jpg' +p3622 +sg12 +g27 +sa(dp3623 +g2 +S'Lodewijk de Dieu' +p3624 +sg4 +S'Artist Information (' +p3625 +sg6 +S'(artist after)' +p3626 +sg8 +S'\n' +p3627 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d588.jpg' +p3628 +sg12 +g27 +sa(dp3629 +g2 +S'Daniel Heinsius' +p3630 +sg4 +S'Artist Information (' +p3631 +sg6 +S'(artist after)' +p3632 +sg8 +S'\n' +p3633 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d585.jpg' +p3634 +sg12 +g27 +sa(dp3635 +g2 +S'Johannes Schade' +p3636 +sg4 +S'Artist Information (' +p3637 +sg6 +S'(artist after)' +p3638 +sg8 +S'\n' +p3639 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d590.jpg' +p3640 +sg12 +g27 +sa(dp3641 +g2 +S'Augustyn Bloemaert' +p3642 +sg4 +S'Artist Information (' +p3643 +sg6 +S'(artist after)' +p3644 +sg8 +S'\n' +p3645 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d581.jpg' +p3646 +sg12 +g27 +sa(dp3647 +g12 +g27 +sg6 +S'drypoint' +p3648 +sg8 +S'1903' +p3649 +sg2 +S"Moore's Yard, Cambridge" +p3650 +sg4 +S'Sir Muirhead Bone' +p3651 +sa(dp3652 +g12 +g27 +sg6 +S'red-brown and black crayon on light green laid paper' +p3653 +sg8 +S'unknown date\n' +p3654 +sg2 +S'Pensive Girl' +p3655 +sg4 +S'Frederic Taubes' +p3656 +sa(dp3657 +g12 +g27 +sg6 +S'woodcut' +p3658 +sg8 +S'unknown date\n' +p3659 +sg2 +S'Woodchopper' +p3660 +sg4 +S'Tsuneo Tamagami' +p3661 +sa(dp3662 +g12 +g27 +sg6 +S'etching' +p3663 +sg8 +S'unknown date\n' +p3664 +sg2 +S'The Road Kentig' +p3665 +sg4 +S'Charles William Taylor' +p3666 +sa(dp3667 +g12 +g27 +sg6 +S'etching' +p3668 +sg8 +S'unknown date\n' +p3669 +sg2 +S'Marsh Homes' +p3670 +sg4 +S'Charles William Taylor' +p3671 +sa(dp3672 +g12 +g27 +sg6 +S'etching' +p3673 +sg8 +S'unknown date\n' +p3674 +sg2 +S'Bridgeworth' +p3675 +sg4 +S'Charles William Taylor' +p3676 +sa(dp3677 +g12 +g27 +sg6 +S'etching' +p3678 +sg8 +S'unknown date\n' +p3679 +sg2 +S'Beyond Chadwell Saint Mary' +p3680 +sg4 +S'Charles William Taylor' +p3681 +sa(dp3682 +g12 +g27 +sg6 +S'lithograph in black on wove paper' +p3683 +sg8 +S'1941' +p3684 +sg2 +S'Pulqueria' +p3685 +sg4 +S'Prentiss Taylor' +p3686 +sa(dp3687 +g12 +g27 +sg6 +S'lithograph' +p3688 +sg8 +S'unknown date\n' +p3689 +sg2 +S'Pizzicato Polka' +p3690 +sg4 +S'Robert N. Taylor' +p3691 +sa(dp3692 +g2 +S'Venus se plaint a Jupiter de la tempete que Junon a excitee contre Enee' +p3693 +sg4 +S'Artist Information (' +p3694 +sg6 +S'(artist after)' +p3695 +sg8 +S'\n' +p3696 +sg10 +S'http://www.nga.gov:80/thumb-l/a00096/a0009645.jpg' +p3697 +sg12 +g27 +sa(dp3698 +g2 +S'Joseph Kneels with the Child before Mary on the Donkey' +p3699 +sg4 +S'Giovanni Domenico Tiepolo' +p3700 +sg6 +S'etching' +p3701 +sg8 +S'published 1753' +p3702 +sg10 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb95.jpg' +p3703 +sg12 +g27 +sa(dp3704 +g2 +S'Miss Catherine Tatton' +p3705 +sg4 +S'Thomas Gainsborough' +p3706 +sg6 +S'oil on canvas' +p3707 +sg8 +S'1786' +p3708 +sg10 +S'http://www.nga.gov:80/thumb-l/a00055/a000557f.jpg' +p3709 +sg12 +S'In 1786, at the age of eighteen, Catherine\r\n Tatton married James Drake-Brockman, who became High Sheriff of County Kent.\r\n This wedding portrait was commissioned by the Rev. John Lynch, Archdeacon of Canterbury, her uncle and the executor of her father\'s estate. Miss Tatton is fashionably attired\r\n with a wide-brimmed sun hat silhouetting the loose ringlets of her hair.\n Gainsborough held his posing sessions during business hours, but Sir\r\n Joshua Reynolds also noted "his custom of painting by night" with candles\r\n under which "the flesh seems to take a higher and richer tone of colour." In\r\n addition to imitating the flattering glow of candlelight, Gainsborough is\r\n known to have used exceptionally long brushes that he wielded like fencers\'\r\n foils, vivaciously touching in "odd scratches and marks." Such extreme\r\n sketchiness is apparent even in this bust-length portrait. Reynolds\r\n reluctantly admitted that "this chaos, this uncouth and shapeless\r\n appearance, by a kind of magick, at a certain distance assumes form, and all\r\n the parts seem to drop into their proper place."\n Rather than working from extensive preliminary drawings—the academic\r\n practice advised by Reynolds—Gainsborough dashed off his portraits\r\n directly on the canvas. Here, the puff of the blue sash and the hand\r\n elegantly toying with it were afterthoughts.\n ' +p3710 +sa(dp3711 +g2 +S'Les Petites Chaumi\xc3\xa8res (Thatched Cottages--Small Plate)' +p3712 +sg4 +S'F\xc3\xa9lix-Hilaire Buhot' +p3713 +sg6 +S'etching, aquatint and drypoint on parchment' +p3714 +sg8 +S'1878' +p3715 +sg10 +S'http://www.nga.gov:80/thumb-l/a00098/a000980e.jpg' +p3716 +sg12 +g27 +sa(dp3717 +g2 +S'The Flight, Holy Family Walking with Angel' +p3718 +sg4 +S'Giovanni Domenico Tiepolo' +p3719 +sg6 +S'etching' +p3720 +sg8 +S'published 1753' +p3721 +sg10 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb91.jpg' +p3722 +sg12 +g27 +sa(dp3723 +g2 +S'The Rest on the Flight, with Adoring Angels' +p3724 +sg4 +S'Giovanni Domenico Tiepolo' +p3725 +sg6 +S'etching' +p3726 +sg8 +S'1750' +p3727 +sg10 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb9a.jpg' +p3728 +sg12 +g27 +sa(dp3729 +g2 +S'The Flight with Joseph in the Foreground' +p3730 +sg4 +S'Giovanni Domenico Tiepolo' +p3731 +sg6 +S'etching' +p3732 +sg8 +S'1753' +p3733 +sg10 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cba1.jpg' +p3734 +sg12 +g27 +sa(dp3735 +g2 +S'The Madonna and Child at Left, with a File of Angels' +p3736 +sg4 +S'Giovanni Domenico Tiepolo' +p3737 +sg6 +S'etching' +p3738 +sg8 +S'published 1753' +p3739 +sg10 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbaa.jpg' +p3740 +sg12 +g27 +sa(dp3741 +g2 +S'The Holy Family Arriving at a City Gate' +p3742 +sg4 +S'Giovanni Domenico Tiepolo' +p3743 +sg6 +S'etching' +p3744 +sg8 +S'published 1753' +p3745 +sg10 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cba7.jpg' +p3746 +sg12 +g27 +sa(dp3747 +g2 +S'Magician and Others Regarding a Serpent' +p3748 +sg4 +S'Giovanni Battista Tiepolo' +p3749 +sg6 +S'etching' +p3750 +sg8 +S'unknown date\n' +p3751 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d43c.jpg' +p3752 +sg12 +g27 +sa(dp3753 +g2 +S'Creation of the Universe' +p3754 +sg4 +S'Giovanni Domenico Tiepolo' +p3755 +sg6 +S'pen and gray ink with brown wash on laid paper' +p3756 +sg8 +S'unknown date\n' +p3757 +sg10 +S'http://www.nga.gov:80/thumb-l/a00028/a0002862.jpg' +p3758 +sg12 +g27 +sa(dp3759 +g2 +S'Capitulation of a Town' +p3760 +sg4 +S'Giovanni Battista Tiepolo' +p3761 +sg6 +S'pen and brown ink with brown wash over black chalk on laid paper' +p3762 +sg8 +S'unknown date\n' +p3763 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a000743c.jpg' +p3764 +sg12 +g27 +sa(dp3765 +g2 +S'Angelica and Medoro' +p3766 +sg4 +S'Giovanni Battista Tiepolo' +p3767 +sg6 +S'pen and brown ink with brown wash over black chalk on laid paper' +p3768 +sg8 +S'1740/1745' +p3769 +sg10 +S'http://www.nga.gov:80/thumb-l/a00037/a00037f3.jpg' +p3770 +sg12 +g27 +sa(dp3771 +g12 +g27 +sg6 +S'woodcut' +p3772 +sg8 +S'unknown date\n' +p3773 +sg2 +S'The Old Year' +p3774 +sg4 +S'Felix Timmermans' +p3775 +sa(dp3776 +g2 +S'Les Voisins de Campagne (Country Neighbors)' +p3777 +sg4 +S'F\xc3\xa9lix-Hilaire Buhot' +p3778 +sg6 +S'etching, aquatint, and drypoint in black on vellum' +p3779 +sg8 +S'1879/1880' +p3780 +sg10 +S'http://www.nga.gov:80/thumb-l/a00098/a000980c.jpg' +p3781 +sg12 +g27 +sa(dp3782 +g12 +g27 +sg6 +S'drypoint' +p3783 +sg8 +S'unknown date\n' +p3784 +sg2 +S'McBey - Profile' +p3785 +sg4 +S'Walter Ernest Tittle' +p3786 +sa(dp3787 +g12 +g27 +sg6 +S'drypoint' +p3788 +sg8 +S'unknown date\n' +p3789 +sg2 +S'McBey - Full Face' +p3790 +sg4 +S'Walter Ernest Tittle' +p3791 +sa(dp3792 +g12 +g27 +sg6 +S'drypoint' +p3793 +sg8 +S'unknown date\n' +p3794 +sg2 +S'Joseph Conrad' +p3795 +sg4 +S'Walter Ernest Tittle' +p3796 +sa(dp3797 +g2 +S'The French Fireside' +p3798 +sg4 +S'Peltro William Tomkins' +p3799 +sg6 +S'stipple and etching, hand-colored' +p3800 +sg8 +S'unknown date\n' +p3801 +sg10 +S'http://www.nga.gov:80/thumb-l/a00078/a0007818.jpg' +p3802 +sg12 +g27 +sa(dp3803 +g12 +g27 +sg6 +S'drypoint' +p3804 +sg8 +S'unknown date\n' +p3805 +sg2 +S'Reflections' +p3806 +sg4 +S'Arthur Ralph Middleton Todd' +p3807 +sa(dp3808 +g12 +g27 +sg6 +S'etching' +p3809 +sg8 +S'unknown date\n' +p3810 +sg2 +S'The Accordion Player' +p3811 +sg4 +S'Arthur Ralph Middleton Todd' +p3812 +sa(dp3813 +g12 +g27 +sg6 +S'drypoint' +p3814 +sg8 +S'unknown date\n' +p3815 +sg2 +S'Ponte Vecchio' +p3816 +sg4 +S'Arthur Ralph Middleton Todd' +p3817 +sa(dp3818 +g12 +g27 +sg6 +S'drypoint' +p3819 +sg8 +S'unknown date\n' +p3820 +sg2 +S'The Fiddler' +p3821 +sg4 +S'Arthur Ralph Middleton Todd' +p3822 +sa(dp3823 +g12 +g27 +sg6 +S'drypoint' +p3824 +sg8 +S'unknown date\n' +p3825 +sg2 +S'The Gypsy Basket Maker' +p3826 +sg4 +S'Arthur Ralph Middleton Todd' +p3827 +sa(dp3828 +g12 +g27 +sg6 +S'drypoint' +p3829 +sg8 +S'unknown date\n' +p3830 +sg2 +S'The Connoisseur' +p3831 +sg4 +S'Arthur Ralph Middleton Todd' +p3832 +sa(dp3833 +g12 +g27 +sg6 +S'etching and drypoint' +p3834 +sg8 +S'1911' +p3835 +sg2 +S'Ben Ledi' +p3836 +sg4 +S'David Young Cameron' +p3837 +sa(dp3838 +g12 +g27 +sg6 +S'drypoint' +p3839 +sg8 +S'unknown date\n' +p3840 +sg2 +S'Strolling Players' +p3841 +sg4 +S'Arthur Ralph Middleton Todd' +p3842 +sa(dp3843 +g12 +g27 +sg6 +S'drypoint' +p3844 +sg8 +S'unknown date\n' +p3845 +sg2 +S'The Ancestor' +p3846 +sg4 +S'Arthur Ralph Middleton Todd' +p3847 +sa(dp3848 +g12 +g27 +sg6 +S'(artist after)' +p3849 +sg8 +S'\n' +p3850 +sg2 +S'Sir Philip Bowes Vere Broke' +p3851 +sg4 +S'Artist Information (' +p3852 +sa(dp3853 +g2 +S'The Nativity' +p3854 +sg4 +S'Wolf Traut' +p3855 +sg6 +S'woodcut' +p3856 +sg8 +S'unknown date\n' +p3857 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ad/a000adbd.jpg' +p3858 +sg12 +g27 +sa(dp3859 +g2 +S'Christ on the Cross with Mary and John' +p3860 +sg4 +S'Wolf Traut' +p3861 +sg6 +S'woodcut on vellum' +p3862 +sg8 +S'unknown date\n' +p3863 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b286.jpg' +p3864 +sg12 +g27 +sa(dp3865 +g2 +S'Frontispiece' +p3866 +sg4 +S'Artist Information (' +p3867 +sg6 +S'(artist)' +p3868 +sg8 +S'\n' +p3869 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a42.jpg' +p3870 +sg12 +g27 +sa(dp3871 +g2 +S'Bridge and Cows' +p3872 +sg4 +S'Artist Information (' +p3873 +sg6 +S'(artist)' +p3874 +sg8 +S'\n' +p3875 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a3a.jpg' +p3876 +sg12 +g27 +sa(dp3877 +g2 +S'The Woman and Tambourine' +p3878 +sg4 +S'Artist Information (' +p3879 +sg6 +S'(artist)' +p3880 +sg8 +S'\n' +p3881 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a3f.jpg' +p3882 +sg12 +g27 +sa(dp3883 +g2 +S'Scene on the French Coast' +p3884 +sg4 +S'Artist Information (' +p3885 +sg6 +S'(artist)' +p3886 +sg8 +S'\n' +p3887 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a3e.jpg' +p3888 +sg12 +g27 +sa(dp3889 +g2 +S'Basle' +p3890 +sg4 +S'Artist Information (' +p3891 +sg6 +S'(artist)' +p3892 +sg8 +S'\n' +p3893 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a40.jpg' +p3894 +sg12 +g27 +sa(dp3895 +g12 +g27 +sg6 +S'etching and drypoint' +p3896 +sg8 +S'1907' +p3897 +sg2 +S'Old St. Etienne' +p3898 +sg4 +S'David Young Cameron' +p3899 +sa(dp3900 +g2 +S'Jason' +p3901 +sg4 +S'Artist Information (' +p3902 +sg6 +S'(artist)' +p3903 +sg8 +S'\n' +p3904 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a3d.jpg' +p3905 +sg12 +g27 +sa(dp3906 +g2 +S'The Straw Yard' +p3907 +sg4 +S'Artist Information (' +p3908 +sg6 +S'(artist)' +p3909 +sg8 +S'\n' +p3910 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a3b.jpg' +p3911 +sg12 +g27 +sa(dp3912 +g2 +S'The Castle Above the Meadows' +p3913 +sg4 +S'Artist Information (' +p3914 +sg6 +S'(artist)' +p3915 +sg8 +S'\n' +p3916 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a3c.jpg' +p3917 +sg12 +g27 +sa(dp3918 +g2 +S'Mt. Saint Gothard' +p3919 +sg4 +S'Artist Information (' +p3920 +sg6 +S'(artist)' +p3921 +sg8 +S'\n' +p3922 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a4b.jpg' +p3923 +sg12 +g27 +sa(dp3924 +g2 +S'Ships in a Breeze' +p3925 +sg4 +S'Artist Information (' +p3926 +sg6 +S'(artist)' +p3927 +sg8 +S'\n' +p3928 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a4a.jpg' +p3929 +sg12 +g27 +sa(dp3930 +g2 +S'Holy Island Cathedral' +p3931 +sg4 +S'Artist Information (' +p3932 +sg6 +S'(artist)' +p3933 +sg8 +S'\n' +p3934 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a4c.jpg' +p3935 +sg12 +g27 +sa(dp3936 +g2 +S'Pembury Mill, Kent' +p3937 +sg4 +S'Artist Information (' +p3938 +sg6 +S'(artist)' +p3939 +sg8 +S'\n' +p3940 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a46.jpg' +p3941 +sg12 +g27 +sa(dp3942 +g2 +S'The Bridge in Middle Distance' +p3943 +sg4 +S'Artist Information (' +p3944 +sg6 +S'(artist)' +p3945 +sg8 +S'\n' +p3946 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a48.jpg' +p3947 +sg12 +g27 +sa(dp3948 +g2 +S'Dunstanborough Castle' +p3949 +sg4 +S'Artist Information (' +p3950 +sg6 +S'(artist)' +p3951 +sg8 +S'\n' +p3952 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a4d.jpg' +p3953 +sg12 +g27 +sa(dp3954 +g2 +S'Lake of Thun' +p3955 +sg4 +S'Artist Information (' +p3956 +sg6 +S'(artist)' +p3957 +sg8 +S'\n' +p3958 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a43.jpg' +p3959 +sg12 +g27 +sa(dp3960 +g12 +g27 +sg6 +S'etching and drypoint' +p3961 +sg8 +S'1899' +p3962 +sg2 +S"St. Paul's from the Thames" +p3963 +sg4 +S'David Young Cameron' +p3964 +sa(dp3965 +g2 +S'The Fifth Plague of Egypt' +p3966 +sg4 +S'Artist Information (' +p3967 +sg6 +S'(artist)' +p3968 +sg8 +S'\n' +p3969 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a44.jpg' +p3970 +sg12 +g27 +sa(dp3971 +g2 +S'The Farm-yard with the Cock' +p3972 +sg4 +S'Artist Information (' +p3973 +sg6 +S'(artist)' +p3974 +sg8 +S'\n' +p3975 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a45.jpg' +p3976 +sg12 +g27 +sa(dp3977 +g2 +S'The Fall of the Clyde' +p3978 +sg4 +S'Artist Information (' +p3979 +sg6 +S'(artist)' +p3980 +sg8 +S'\n' +p3981 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a57.jpg' +p3982 +sg12 +g27 +sa(dp3983 +g2 +S"Little Devil's Bridge" +p3984 +sg4 +S'Artist Information (' +p3985 +sg6 +S'(artist)' +p3986 +sg8 +S'\n' +p3987 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a56.jpg' +p3988 +sg12 +g27 +sa(dp3989 +g2 +S'The Leader Sea Piece' +p3990 +sg4 +S'Artist Information (' +p3991 +sg6 +S'(artist)' +p3992 +sg8 +S'\n' +p3993 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a53.jpg' +p3994 +sg12 +g27 +sa(dp3995 +g2 +S'Morpeth' +p3996 +sg4 +S'Artist Information (' +p3997 +sg6 +S'(artist)' +p3998 +sg8 +S'\n' +p3999 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a4f.jpg' +p4000 +sg12 +g27 +sa(dp4001 +g2 +S'Juvenile Tricks' +p4002 +sg4 +S'Artist Information (' +p4003 +sg6 +S'(artist)' +p4004 +sg8 +S'\n' +p4005 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a58.jpg' +p4006 +sg12 +g27 +sa(dp4007 +g2 +S'The Temple of Minerva Medica' +p4008 +sg4 +S'Artist Information (' +p4009 +sg6 +S'(artist)' +p4010 +sg8 +S'\n' +p4011 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a51.jpg' +p4012 +sg12 +g27 +sa(dp4013 +g2 +S'Coast of Yorkshire' +p4014 +sg4 +S'Artist Information (' +p4015 +sg6 +S'(artist)' +p4016 +sg8 +S'\n' +p4017 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a52.jpg' +p4018 +sg12 +g27 +sa(dp4019 +g2 +S'Hind Head Hill' +p4020 +sg4 +S'Artist Information (' +p4021 +sg6 +S'(artist)' +p4022 +sg8 +S'\n' +p4023 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a55.jpg' +p4024 +sg12 +g27 +sa(dp4025 +g2 +S'Kneeling in an Armchair' +p4026 +sg4 +S'Mary Cassatt' +p4027 +sg6 +S'drypoint' +p4028 +sg8 +S'c. 1903' +p4029 +sg10 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa94.jpg' +p4030 +sg12 +g27 +sa(dp4031 +g2 +S'London from Greenwich' +p4032 +sg4 +S'Artist Information (' +p4033 +sg6 +S'(artist)' +p4034 +sg8 +S'\n' +p4035 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a54.jpg' +p4036 +sg12 +g27 +sa(dp4037 +g2 +S'Windmill and Lock' +p4038 +sg4 +S'Artist Information (' +p4039 +sg6 +S'(artist)' +p4040 +sg8 +S'\n' +p4041 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a50.jpg' +p4042 +sg12 +g27 +sa(dp4043 +g2 +S'Junction of Severn and Wye' +p4044 +sg4 +S'Joseph Mallord William Turner' +p4045 +sg6 +S'etching, mezzotint, and aquatint' +p4046 +sg8 +S'published 1811' +p4047 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a61.jpg' +p4048 +sg12 +g27 +sa(dp4049 +g2 +S'Marine Dabblers' +p4050 +sg4 +S'Artist Information (' +p4051 +sg6 +S'(artist)' +p4052 +sg8 +S'\n' +p4053 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a5d.jpg' +p4054 +sg12 +g27 +sa(dp4055 +g2 +S'Near Blair Athol' +p4056 +sg4 +S'Artist Information (' +p4057 +sg6 +S'(artist)' +p4058 +sg8 +S'\n' +p4059 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a5f.jpg' +p4060 +sg12 +g27 +sa(dp4061 +g2 +S'Lauffenbourgh on the Rhine' +p4062 +sg4 +S'Artist Information (' +p4063 +sg6 +S'(artist)' +p4064 +sg8 +S'\n' +p4065 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a62.jpg' +p4066 +sg12 +g27 +sa(dp4067 +g2 +S'Young Anglers' +p4068 +sg4 +S'Artist Information (' +p4069 +sg6 +S'(artist)' +p4070 +sg8 +S'\n' +p4071 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a5e.jpg' +p4072 +sg12 +g27 +sa(dp4073 +g2 +S"Saint Catherine's Hill Near Guilford" +p4074 +sg4 +S'Artist Information (' +p4075 +sg6 +S'(artist)' +p4076 +sg8 +S'\n' +p4077 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a5a.jpg' +p4078 +sg12 +g27 +sa(dp4079 +g2 +S'Martello Towers near Bexhill, Sussex' +p4080 +sg4 +S'Artist Information (' +p4081 +sg6 +S'(artist)' +p4082 +sg8 +S'\n' +p4083 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a5b.jpg' +p4084 +sg12 +g27 +sa(dp4085 +g2 +S'Inverary Pier' +p4086 +sg4 +S'Joseph Mallord William Turner' +p4087 +sg6 +S'etching, mezzotint and aquatint' +p4088 +sg8 +S'published 1811' +p4089 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a59.jpg' +p4090 +sg12 +g27 +sa(dp4091 +g2 +S'The Caress' +p4092 +sg4 +S'Mary Cassatt' +p4093 +sg6 +S'drypoint' +p4094 +sg8 +S'c. 1891' +p4095 +sg10 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa39.jpg' +p4096 +sg12 +g27 +sa(dp4097 +g2 +S"From Spenser's Fairy Queen" +p4098 +sg4 +S'Artist Information (' +p4099 +sg6 +S'(artist)' +p4100 +sg8 +S'\n' +p4101 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a68.jpg' +p4102 +sg12 +g27 +sa(dp4103 +g2 +S'Water Mill' +p4104 +sg4 +S'Artist Information (' +p4105 +sg6 +S'(artist)' +p4106 +sg8 +S'\n' +p4107 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a6a.jpg' +p4108 +sg12 +g27 +sa(dp4109 +g2 +S'Scene in the Campagna' +p4110 +sg4 +S'Artist Information (' +p4111 +sg6 +S'(artist)' +p4112 +sg8 +S'\n' +p4113 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a69.jpg' +p4114 +sg12 +g27 +sa(dp4115 +g2 +S'Crypt of Kirkstall Abbey' +p4116 +sg4 +S'Joseph Mallord William Turner' +p4117 +sg6 +S'etching, mezzotint, and aquatint' +p4118 +sg8 +S'published 1812' +p4119 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a6d.jpg' +p4120 +sg12 +g27 +sa(dp4121 +g2 +S'The Mildmay Sea-Piece' +p4122 +sg4 +S'Artist Information (' +p4123 +sg6 +S'(artist)' +p4124 +sg8 +S'\n' +p4125 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a6c.jpg' +p4126 +sg12 +g27 +sa(dp4127 +g2 +S'Procris and Cephalus' +p4128 +sg4 +S'Artist Information (' +p4129 +sg6 +S'(artist)' +p4130 +sg8 +S'\n' +p4131 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a6e.jpg' +p4132 +sg12 +g27 +sa(dp4133 +g2 +S'Winchelsea, Sussex' +p4134 +sg4 +S'Artist Information (' +p4135 +sg6 +S'(artist)' +p4136 +sg8 +S'\n' +p4137 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a66.jpg' +p4138 +sg12 +g27 +sa(dp4139 +g2 +S'The Bridge and Goats' +p4140 +sg4 +S'Artist Information (' +p4141 +sg6 +S'(artist)' +p4142 +sg8 +S'\n' +p4143 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a6b.jpg' +p4144 +sg12 +g27 +sa(dp4145 +g2 +S'Calm' +p4146 +sg4 +S'Joseph Mallord William Turner' +p4147 +sg6 +S'mezzotint' +p4148 +sg8 +S'published 1812' +p4149 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a79.jpg' +p4150 +sg12 +g27 +sa(dp4151 +g2 +S'Peat Bog, Scotland' +p4152 +sg4 +S'Artist Information (' +p4153 +sg6 +S'(artist)' +p4154 +sg8 +S'\n' +p4155 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a71.jpg' +p4156 +sg12 +g27 +sa(dp4157 +g2 +S'The Mirror' +p4158 +sg4 +S'Mary Cassatt' +p4159 +sg6 +S'drypoint' +p4160 +sg8 +S'c. 1891' +p4161 +sg10 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa38.jpg' +p4162 +sg12 +g27 +sa(dp4163 +g2 +S'Rispah' +p4164 +sg4 +S'Artist Information (' +p4165 +sg6 +S'(artist)' +p4166 +sg8 +S'\n' +p4167 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a72.jpg' +p4168 +sg12 +g27 +sa(dp4169 +g2 +S'Hedging and Ditching' +p4170 +sg4 +S'Artist Information (' +p4171 +sg6 +S'(artist)' +p4172 +sg8 +S'\n' +p4173 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a76.jpg' +p4174 +sg12 +g27 +sa(dp4175 +g2 +S'River Wye' +p4176 +sg4 +S'Artist Information (' +p4177 +sg6 +S'(artist)' +p4178 +sg8 +S'\n' +p4179 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a74.jpg' +p4180 +sg12 +g27 +sa(dp4181 +g2 +S'Chain of Alps from Grenoble to Chamberi' +p4182 +sg4 +S'Artist Information (' +p4183 +sg6 +S'(artist)' +p4184 +sg8 +S'\n' +p4185 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a75.jpg' +p4186 +sg12 +g27 +sa(dp4187 +g2 +S'Mer de Glace' +p4188 +sg4 +S'Joseph Mallord William Turner' +p4189 +sg6 +S'etching and mezzotint' +p4190 +sg8 +S'published 1812' +p4191 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a7b.jpg' +p4192 +sg12 +g27 +sa(dp4193 +g2 +S'Rivaux Abbey' +p4194 +sg4 +S'Artist Information (' +p4195 +sg6 +S'(artist)' +p4196 +sg8 +S'\n' +p4197 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a7a.jpg' +p4198 +sg12 +g27 +sa(dp4199 +g2 +S'Solway Moss' +p4200 +sg4 +S'Artist Information (' +p4201 +sg6 +S'(artist)' +p4202 +sg8 +S'\n' +p4203 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a80.jpg' +p4204 +sg12 +g27 +sa(dp4205 +g2 +S'Solitude' +p4206 +sg4 +S'Artist Information (' +p4207 +sg6 +S'(artist)' +p4208 +sg8 +S'\n' +p4209 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a84.jpg' +p4210 +sg12 +g27 +sa(dp4211 +g2 +S'Mill near the Grand Chartreuse' +p4212 +sg4 +S'Artist Information (' +p4213 +sg6 +S'(artist)' +p4214 +sg8 +S'\n' +p4215 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a82.jpg' +p4216 +sg12 +g27 +sa(dp4217 +g2 +S'Entrance of Calais Harbour' +p4218 +sg4 +S'Joseph Mallord William Turner' +p4219 +sg6 +S'etching and mezzotint' +p4220 +sg8 +S'published 1816' +p4221 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a7f.jpg' +p4222 +sg12 +g27 +sa(dp4223 +g2 +S'Maternal Caress' +p4224 +sg4 +S'Mary Cassatt' +p4225 +sg6 +S'color drypoint and soft-ground etching on cream wove paper' +p4226 +sg8 +S'c. 1891' +p4227 +sg10 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa45.jpg' +p4228 +sg12 +g27 +sa(dp4229 +g2 +S'Dumblain Abbey' +p4230 +sg4 +S'Artist Information (' +p4231 +sg6 +S'(artist)' +p4232 +sg8 +S'\n' +p4233 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a81.jpg' +p4234 +sg12 +g27 +sa(dp4235 +g2 +S'Norham Castle' +p4236 +sg4 +S'Artist Information (' +p4237 +sg6 +S'(artist)' +p4238 +sg8 +S'\n' +p4239 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a83.jpg' +p4240 +sg12 +g27 +sa(dp4241 +g2 +S'Berry Pomeroy Castle' +p4242 +sg4 +S'Joseph Mallord William Turner' +p4243 +sg6 +S'etching and mezzotint' +p4244 +sg8 +S'published 1816' +p4245 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a7e.jpg' +p4246 +sg12 +g27 +sa(dp4247 +g2 +S'Ville de Thun' +p4248 +sg4 +S'Artist Information (' +p4249 +sg6 +S'(artist)' +p4250 +sg8 +S'\n' +p4251 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a85.jpg' +p4252 +sg12 +g27 +sa(dp4253 +g2 +S'The Source of the Arveron' +p4254 +sg4 +S'Artist Information (' +p4255 +sg6 +S'(artist)' +p4256 +sg8 +S'\n' +p4257 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a87.jpg' +p4258 +sg12 +g27 +sa(dp4259 +g2 +S'Tenth Plague of Egypt' +p4260 +sg4 +S'Artist Information (' +p4261 +sg6 +S'(artist)' +p4262 +sg8 +S'\n' +p4263 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a8f.jpg' +p4264 +sg12 +g27 +sa(dp4265 +g2 +S'Watercress Gatherers' +p4266 +sg4 +S'Artist Information (' +p4267 +sg6 +S'(artist)' +p4268 +sg8 +S'\n' +p4269 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a86.jpg' +p4270 +sg12 +g27 +sa(dp4271 +g2 +S'Isleworth' +p4272 +sg4 +S'Artist Information (' +p4273 +sg6 +S'(artist)' +p4274 +sg8 +S'\n' +p4275 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a8c.jpg' +p4276 +sg12 +g27 +sa(dp4277 +g2 +S'Bonneville' +p4278 +sg4 +S'Artist Information (' +p4279 +sg6 +S'(artist)' +p4280 +sg8 +S'\n' +p4281 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a88.jpg' +p4282 +sg12 +g27 +sa(dp4283 +g2 +S'Inverary Castle and Town' +p4284 +sg4 +S'Artist Information (' +p4285 +sg6 +S'(artist)' +p4286 +sg8 +S'\n' +p4287 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a8a.jpg' +p4288 +sg12 +g27 +sa(dp4289 +g2 +S'Combe Bottom' +p4290 +sg4 +S'Francis Seymour Haden' +p4291 +sg6 +S'etching and drypoint' +p4292 +sg8 +S'1860' +p4293 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d4d.jpg' +p4294 +sg12 +g27 +sa(dp4295 +g2 +S'Aesacus and Hesperie' +p4296 +sg4 +S'Joseph Mallord William Turner' +p4297 +sg6 +S'etching and mezzotint' +p4298 +sg8 +S'published 1819' +p4299 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a89.jpg' +p4300 +sg12 +g27 +sa(dp4301 +g2 +S'East Gate, Winchelsea' +p4302 +sg4 +S'Artist Information (' +p4303 +sg6 +S'(artist)' +p4304 +sg8 +S'\n' +p4305 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a92.jpg' +p4306 +sg12 +g27 +sa(dp4307 +g2 +S'Isis' +p4308 +sg4 +S'Artist Information (' +p4309 +sg6 +S'(artist)' +p4310 +sg8 +S'\n' +p4311 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a98.jpg' +p4312 +sg12 +g27 +sa(dp4313 +g2 +S'Ben Arthur' +p4314 +sg4 +S'Artist Information (' +p4315 +sg6 +S'(artist)' +p4316 +sg8 +S'\n' +p4317 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a9b.jpg' +p4318 +sg12 +g27 +sa(dp4319 +g2 +S'Interior of a Church' +p4320 +sg4 +S'Joseph Mallord William Turner' +p4321 +sg6 +S'etching and mezzotint' +p4322 +sg8 +S'published 1819' +p4323 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a9c.jpg' +p4324 +sg12 +g27 +sa(dp4325 +g2 +S'The Woman of Samaria' +p4326 +sg4 +S'Artist Information (' +p4327 +sg6 +S'(artist)' +p4328 +sg8 +S'\n' +p4329 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a9a.jpg' +p4330 +sg12 +g27 +sa(dp4331 +g2 +S'Tewkesbury Abbey' +p4332 +sg4 +S'Joseph Mallord William Turner' +p4333 +sg6 +S'graphite' +p4334 +sg8 +S'unknown date\n' +p4335 +sg10 +S'http://www.nga.gov:80/thumb-l/a00069/a000697a.jpg' +p4336 +sg12 +g27 +sa(dp4337 +g2 +S'The Woman and Tambourine' +p4338 +sg4 +S'Joseph Mallord William Turner' +p4339 +sg6 +S'etching' +p4340 +sg8 +S'published 1807' +p4341 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a38.jpg' +p4342 +sg12 +g27 +sa(dp4343 +g2 +S'Winchelsea, Sussex' +p4344 +sg4 +S'Joseph Mallord William Turner' +p4345 +sg6 +S'etching' +p4346 +sg8 +S'published 1812' +p4347 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a64.jpg' +p4348 +sg12 +g27 +sa(dp4349 +g2 +S'Calm' +p4350 +sg4 +S'Joseph Mallord William Turner' +p4351 +sg6 +S'mezzotint and etching' +p4352 +sg8 +S'published 1812' +p4353 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a77.jpg' +p4354 +sg12 +g27 +sa(dp4355 +g2 +S'Mrs. John Taylor' +p4356 +sg4 +S'Thomas Gainsborough' +p4357 +sg6 +S'oil on canvas' +p4358 +sg8 +S'c. 1778' +p4359 +sg10 +S'http://www.nga.gov:80/thumb-l/a00004/a00004ef.jpg' +p4360 +sg12 +g27 +sa(dp4361 +g2 +S'Challow Farm' +p4362 +sg4 +S'Francis Seymour Haden' +p4363 +sg6 +S'drypoint (copper)' +p4364 +sg8 +S'in or after 1877' +p4365 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c81.jpg' +p4366 +sg12 +g27 +sa(dp4367 +g12 +g27 +sg6 +S'color screenprint' +p4368 +sg8 +S'1942' +p4369 +sg2 +S'In the Park' +p4370 +sg4 +S'Albert Urban' +p4371 +sa(dp4372 +g12 +g27 +sg6 +S'color screenprint' +p4373 +sg8 +S'1942' +p4374 +sg2 +S'Dance' +p4375 +sg4 +S'Albert Urban' +p4376 +sa(dp4377 +g12 +g27 +sg6 +S'color screenprint' +p4378 +sg8 +S'1942' +p4379 +sg2 +S'Riders' +p4380 +sg4 +S'Albert Urban' +p4381 +sa(dp4382 +g12 +g27 +sg6 +S'color screenprint' +p4383 +sg8 +S'1942' +p4384 +sg2 +S'Contemplation' +p4385 +sg4 +S'Albert Urban' +p4386 +sa(dp4387 +g12 +g27 +sg6 +S'color screenprint' +p4388 +sg8 +S'1942' +p4389 +sg2 +S'Reflection' +p4390 +sg4 +S'Albert Urban' +p4391 +sa(dp4392 +g12 +g27 +sg6 +S'color screenprint' +p4393 +sg8 +S'1942' +p4394 +sg2 +S'Tombstone' +p4395 +sg4 +S'Albert Urban' +p4396 +sa(dp4397 +g12 +g27 +sg6 +S'color screenprint' +p4398 +sg8 +S'1942' +p4399 +sg2 +S'Night' +p4400 +sg4 +S'Albert Urban' +p4401 +sa(dp4402 +g12 +g27 +sg6 +S'color screenprint' +p4403 +sg8 +S'1942' +p4404 +sg2 +S'Rain' +p4405 +sg4 +S'Albert Urban' +p4406 +sa(dp4407 +g12 +g27 +sg6 +S'color screenprint' +p4408 +sg8 +S'1942' +p4409 +sg2 +S'David before Saul' +p4410 +sg4 +S'Albert Urban' +p4411 +sa(dp4412 +g12 +g27 +sg6 +S'color screenprint' +p4413 +sg8 +S'1942' +p4414 +sg2 +S'Swamp' +p4415 +sg4 +S'Albert Urban' +p4416 +sa(dp4417 +g2 +S'An Early Riser' +p4418 +sg4 +S'Francis Seymour Haden' +p4419 +sg6 +S'mezzotint' +p4420 +sg8 +S'1897' +p4421 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007e/a0007e00.jpg' +p4422 +sg12 +g27 +sa(dp4423 +g2 +S'Cornelis Mayer' +p4424 +sg4 +S'Bernard Vaillant' +p4425 +sg6 +S'mezzotint' +p4426 +sg8 +S'unknown date\n' +p4427 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5cb.jpg' +p4428 +sg12 +g27 +sa(dp4429 +g2 +S'Erasmus' +p4430 +sg4 +S'Artist Information (' +p4431 +sg6 +S'(artist after)' +p4432 +sg8 +S'\n' +p4433 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d458.jpg' +p4434 +sg12 +g27 +sa(dp4435 +g12 +g27 +sg6 +S'mezzotint' +p4436 +sg8 +S'unknown date\n' +p4437 +sg2 +S'Nude by the Window' +p4438 +sg4 +S'Alessandro Mastro-Valerio' +p4439 +sa(dp4440 +g12 +g27 +sg6 +S'drypoint' +p4441 +sg8 +S'unknown date\n' +p4442 +sg2 +S'French Customs' +p4443 +sg4 +S'Salomon van Abb\xc3\xa9' +p4444 +sa(dp4445 +g12 +g27 +sg6 +S'drypoint' +p4446 +sg8 +S'unknown date\n' +p4447 +sg2 +S'Declarations - Plate 1' +p4448 +sg4 +S'Salomon van Abb\xc3\xa9' +p4449 +sa(dp4450 +g12 +g27 +sg6 +S'drypoint' +p4451 +sg8 +S'unknown date\n' +p4452 +sg2 +S'Gossip Page' +p4453 +sg4 +S'Salomon van Abb\xc3\xa9' +p4454 +sa(dp4455 +g12 +g27 +sg6 +S'drypoint' +p4456 +sg8 +S'unknown date\n' +p4457 +sg2 +S'Pots and Pans' +p4458 +sg4 +S'Salomon van Abb\xc3\xa9' +p4459 +sa(dp4460 +g2 +S'Dr. Gachet (Man with a Pipe)' +p4461 +sg4 +S'Vincent van Gogh' +p4462 +sg6 +S'etching' +p4463 +sg8 +S'1890' +p4464 +sg10 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c0c.jpg' +p4465 +sg12 +g27 +sa(dp4466 +g2 +S'The Board Players' +p4467 +sg4 +S'Leendert van der Cooghen' +p4468 +sg6 +g27 +sg8 +S'unknown date\n' +p4469 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0c5.jpg' +p4470 +sg12 +g27 +sa(dp4471 +g2 +S'Young Herdsman with a Bull' +p4472 +sg4 +S'Adriaen van de Velde' +p4473 +sg6 +S'etching' +p4474 +sg8 +S'1659' +p4475 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d465.jpg' +p4476 +sg12 +g27 +sa(dp4477 +g2 +S'Kensington Gardens (The Larger Plate)' +p4478 +sg4 +S'Francis Seymour Haden' +p4479 +sg6 +S'etching with drypoint' +p4480 +sg8 +S'1860' +p4481 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cbf.jpg' +p4482 +sg12 +g27 +sa(dp4483 +g2 +S'Recumbent Cow' +p4484 +sg4 +S'Adriaen van de Velde' +p4485 +sg6 +S'etching' +p4486 +sg8 +S'1657' +p4487 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d464.jpg' +p4488 +sg12 +g27 +sa(dp4489 +g2 +S'Standing Bull' +p4490 +sg4 +S'Adriaen van de Velde' +p4491 +sg6 +S'etching' +p4492 +sg8 +S'c. 1657/1659' +p4493 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d468.jpg' +p4494 +sg12 +g27 +sa(dp4495 +g2 +S'Two Cows and a Sheep' +p4496 +sg4 +S'Adriaen van de Velde' +p4497 +sg6 +S'etching' +p4498 +sg8 +S'c. 1657/1659' +p4499 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d466.jpg' +p4500 +sg12 +g27 +sa(dp4501 +g2 +S'Three Cows' +p4502 +sg4 +S'Adriaen van de Velde' +p4503 +sg6 +S'etching' +p4504 +sg8 +S'c. 1657/1659' +p4505 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d463.jpg' +p4506 +sg12 +g27 +sa(dp4507 +g2 +S'Bull Standing in Water' +p4508 +sg4 +S'Adriaen van de Velde' +p4509 +sg6 +S'etching' +p4510 +sg8 +S'c. 1657/1659' +p4511 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d462.jpg' +p4512 +sg12 +g27 +sa(dp4513 +g2 +S'Grazing Horse' +p4514 +sg4 +S'Adriaen van de Velde' +p4515 +sg6 +S'etching' +p4516 +sg8 +S'c. 1657/1659' +p4517 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d460.jpg' +p4518 +sg12 +g27 +sa(dp4519 +g2 +S'Grazing Calf' +p4520 +sg4 +S'Adriaen van de Velde' +p4521 +sg6 +S'etching' +p4522 +sg8 +S'c. 1657/1659' +p4523 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d467.jpg' +p4524 +sg12 +g27 +sa(dp4525 +g2 +S'Fighting Dogs' +p4526 +sg4 +S'Adriaen van de Velde' +p4527 +sg6 +S'etching' +p4528 +sg8 +S'c. 1657/1659' +p4529 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d469.jpg' +p4530 +sg12 +g27 +sa(dp4531 +g2 +S'Recumbent Goats' +p4532 +sg4 +S'Adriaen van de Velde' +p4533 +sg6 +S'etching' +p4534 +sg8 +S'c. 1657/1659' +p4535 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d46a.jpg' +p4536 +sg12 +g27 +sa(dp4537 +g2 +S'Peasants Lunching in Open Air' +p4538 +sg4 +S'Esaias van de Velde I' +p4539 +sg6 +S'etching' +p4540 +sg8 +S'unknown date\n' +p4541 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d45c.jpg' +p4542 +sg12 +g27 +sa(dp4543 +g2 +S'Early Morning - Richmond' +p4544 +sg4 +S'Francis Seymour Haden' +p4545 +sg6 +S'etching and drypoint' +p4546 +sg8 +S'1859' +p4547 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cd9.jpg' +p4548 +sg12 +g27 +sa(dp4549 +g2 +S'Air' +p4550 +sg4 +S'Artist Information (' +p4551 +sg6 +S'(artist after)' +p4552 +sg8 +S'\n' +p4553 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5cf.jpg' +p4554 +sg12 +g27 +sa(dp4555 +g2 +S'Water' +p4556 +sg4 +S'Artist Information (' +p4557 +sg6 +S'(artist after)' +p4558 +sg8 +S'\n' +p4559 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5d2.jpg' +p4560 +sg12 +g27 +sa(dp4561 +g2 +S'Fire' +p4562 +sg4 +S'Artist Information (' +p4563 +sg6 +S'(artist after)' +p4564 +sg8 +S'\n' +p4565 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5d0.jpg' +p4566 +sg12 +g27 +sa(dp4567 +g2 +S'Earth' +p4568 +sg4 +S'Artist Information (' +p4569 +sg6 +S'(artist after)' +p4570 +sg8 +S'\n' +p4571 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5d1.jpg' +p4572 +sg12 +g27 +sa(dp4573 +g2 +S'Death Taking a Couple by Surprise' +p4574 +sg4 +S'Jan van de Velde II' +p4575 +sg6 +S'etching' +p4576 +sg8 +S'unknown date\n' +p4577 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d475.jpg' +p4578 +sg12 +g27 +sa(dp4579 +g2 +S'Two Figures in Costume' +p4580 +sg4 +S'Jan van de Velde II' +p4581 +sg6 +S'etching' +p4582 +sg8 +S'unknown date\n' +p4583 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d46d.jpg' +p4584 +sg12 +g27 +sa(dp4585 +g2 +S'Two Figures in Costume' +p4586 +sg4 +S'Jan van de Velde II' +p4587 +sg6 +S'etching' +p4588 +sg8 +S'unknown date\n' +p4589 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d46c.jpg' +p4590 +sg12 +g27 +sa(dp4591 +g2 +S'Two Figures in Costume' +p4592 +sg4 +S'Jan van de Velde II' +p4593 +sg6 +S'etching' +p4594 +sg8 +S'unknown date\n' +p4595 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d46e.jpg' +p4596 +sg12 +g27 +sa(dp4597 +g2 +S'Two Figures in Costume' +p4598 +sg4 +S'Jan van de Velde II' +p4599 +sg6 +S'etching' +p4600 +sg8 +S'unknown date\n' +p4601 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d46f.jpg' +p4602 +sg12 +g27 +sa(dp4603 +g2 +S'Two Figures in Costume' +p4604 +sg4 +S'Jan van de Velde II' +p4605 +sg6 +S'etching' +p4606 +sg8 +S'unknown date\n' +p4607 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d470.jpg' +p4608 +sg12 +g27 +sa(dp4609 +g2 +S'Mytton Hall' +p4610 +sg4 +S'Francis Seymour Haden' +p4611 +sg6 +S'drypoint in brown' +p4612 +sg8 +S'1859' +p4613 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d49.jpg' +p4614 +sg12 +g27 +sa(dp4615 +g2 +S'Two Figures in Costume' +p4616 +sg4 +S'Jan van de Velde II' +p4617 +sg6 +S'etching' +p4618 +sg8 +S'unknown date\n' +p4619 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d471.jpg' +p4620 +sg12 +g27 +sa(dp4621 +g2 +S'Two Figures in Costume' +p4622 +sg4 +S'Jan van de Velde II' +p4623 +sg6 +S'etching' +p4624 +sg8 +S'unknown date\n' +p4625 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d472.jpg' +p4626 +sg12 +g27 +sa(dp4627 +g2 +S'Two Figures in Costume' +p4628 +sg4 +S'Jan van de Velde II' +p4629 +sg6 +S'etching' +p4630 +sg8 +S'unknown date\n' +p4631 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d473.jpg' +p4632 +sg12 +g27 +sa(dp4633 +g2 +S'Ferdinand II' +p4634 +sg4 +S'Artist Information (' +p4635 +sg6 +S'(artist after)' +p4636 +sg8 +S'\n' +p4637 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d572.jpg' +p4638 +sg12 +g27 +sa(dp4639 +g2 +S'Amelia Elizabeth, Countess of Hesse' +p4640 +sg4 +S'Ludwig von Siegen' +p4641 +sg6 +S'mezzotint' +p4642 +sg8 +S'1642' +p4643 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d570.jpg' +p4644 +sg12 +g27 +sa(dp4645 +g2 +S'Pieter Bruegel the Younger' +p4646 +sg4 +S'Sir Anthony van Dyck' +p4647 +sg6 +S'etching' +p4648 +sg8 +S'probably 1626/1641' +p4649 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0e9.jpg' +p4650 +sg12 +g27 +sa(dp4651 +g2 +S'Self-Portrait' +p4652 +sg4 +S'Sir Anthony van Dyck' +p4653 +sg6 +S'etching' +p4654 +sg8 +S'probably 1626/1641' +p4655 +sg10 +S'http://www.nga.gov:80/thumb-l/a00054/a000545f.jpg' +p4656 +sg12 +g27 +sa(dp4657 +g2 +S'Erasmus of Rotterdam' +p4658 +sg4 +S'Artist Information (' +p4659 +sg6 +S'(artist after)' +p4660 +sg8 +S'\n' +p4661 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0e7.jpg' +p4662 +sg12 +g27 +sa(dp4663 +g2 +S'Frans Francken II' +p4664 +sg4 +S'Sir Anthony van Dyck' +p4665 +sg6 +S'etching and engraving' +p4666 +sg8 +S'probably 1626/1641' +p4667 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0e6.jpg' +p4668 +sg12 +g27 +sa(dp4669 +g2 +S'Jodocus de Momper' +p4670 +sg4 +S'Sir Anthony van Dyck' +p4671 +sg6 +S'etching' +p4672 +sg8 +S'probably 1626/1641' +p4673 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0e4.jpg' +p4674 +sg12 +g27 +sa(dp4675 +g2 +S'Shere Mill Pond (The Larger Plate)' +p4676 +sg4 +S'Francis Seymour Haden' +p4677 +sg6 +S'etching with drypoint' +p4678 +sg8 +S'in or after 1860' +p4679 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d01.jpg' +p4680 +sg12 +g27 +sa(dp4681 +g2 +S'Jodocus de Momper' +p4682 +sg4 +S'Sir Anthony van Dyck' +p4683 +sg6 +S'etching' +p4684 +sg8 +S'probably 1626/1641' +p4685 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0e5.jpg' +p4686 +sg12 +g27 +sa(dp4687 +g2 +S'Paulus Pontius' +p4688 +sg4 +S'Sir Anthony van Dyck' +p4689 +sg6 +S'etching' +p4690 +sg8 +S'probably 1626/1641' +p4691 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0ed.jpg' +p4692 +sg12 +g27 +sa(dp4693 +g2 +S'Jan Snellinx' +p4694 +sg4 +S'Sir Anthony van Dyck' +p4695 +sg6 +S'etching' +p4696 +sg8 +S'probably 1626/1641' +p4697 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0e2.jpg' +p4698 +sg12 +g27 +sa(dp4699 +g2 +S'Frans Snyders' +p4700 +sg4 +S'Sir Anthony van Dyck' +p4701 +sg6 +S'etching' +p4702 +sg8 +S'probably 1626/1641' +p4703 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0e0.jpg' +p4704 +sg12 +g27 +sa(dp4705 +g2 +S'Justus Suttermans' +p4706 +sg4 +S'Sir Anthony van Dyck' +p4707 +sg6 +S'etching' +p4708 +sg8 +S'probably 1626/1641' +p4709 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0eb.jpg' +p4710 +sg12 +g27 +sa(dp4711 +g2 +S'Lucas Vorsterman' +p4712 +sg4 +S'Sir Anthony van Dyck' +p4713 +sg6 +S'etching' +p4714 +sg8 +S'probably 1626/1641' +p4715 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0ec.jpg' +p4716 +sg12 +g27 +sa(dp4717 +g2 +S'Willem de Vos' +p4718 +sg4 +S'Artist Information (' +p4719 +sg6 +S'(artist)' +p4720 +sg8 +S'\n' +p4721 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0f2.jpg' +p4722 +sg12 +g27 +sa(dp4723 +g2 +S'Paul de Vos' +p4724 +sg4 +S'Sir Anthony van Dyck' +p4725 +sg6 +S'etching' +p4726 +sg8 +S'probably 1626/1641' +p4727 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0fa.jpg' +p4728 +sg12 +g27 +sa(dp4729 +g2 +S'Paul de Vos' +p4730 +sg4 +S'Artist Information (' +p4731 +sg6 +S'(artist)' +p4732 +sg8 +S'\n' +p4733 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0f9.jpg' +p4734 +sg12 +g27 +sa(dp4735 +g2 +S'Jan de Wael' +p4736 +sg4 +S'Sir Anthony van Dyck' +p4737 +sg6 +S'etching and engraving' +p4738 +sg8 +S'probably 1626/1641' +p4739 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0f1.jpg' +p4740 +sg12 +g27 +sa(dp4741 +g2 +S'Kensington Gardens (The Small Plate)' +p4742 +sg4 +S'Francis Seymour Haden' +p4743 +sg6 +S'etching in dark brown' +p4744 +sg8 +S'1859' +p4745 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d3e.jpg' +p4746 +sg12 +g27 +sa(dp4747 +g2 +S'Figure of a Man [recto]' +p4748 +sg4 +S'Ventura Salimbeni' +p4749 +sg6 +S'black and white chalk on blue laid paper' +p4750 +sg8 +S'unknown date\n' +p4751 +sg10 +S'http://www.nga.gov:80/thumb-l/a00075/a0007519.jpg' +p4752 +sg12 +g27 +sa(dp4753 +g12 +g27 +sg6 +S'black chalk on blue laid paper' +p4754 +sg8 +S'unknown date\n' +p4755 +sg2 +S'Seated Woman and Head of a Woman [verso]' +p4756 +sg4 +S'Ventura Salimbeni' +p4757 +sa(dp4758 +g2 +S'Petrus Stevens' +p4759 +sg4 +S'Artist Information (' +p4760 +sg6 +S'(artist after)' +p4761 +sg8 +S'\n' +p4762 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d110.jpg' +p4763 +sg12 +g27 +sa(dp4764 +g2 +S'Jan van der Wouwer' +p4765 +sg4 +S'Artist Information (' +p4766 +sg6 +S'(artist)' +p4767 +sg8 +S'\n' +p4768 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0f8.jpg' +p4769 +sg12 +g27 +sa(dp4770 +g2 +S'Jan Baptista Barbe' +p4771 +sg4 +S'Artist Information (' +p4772 +sg6 +S'(artist after)' +p4773 +sg8 +S'\n' +p4774 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0f7.jpg' +p4775 +sg12 +g27 +sa(dp4776 +g2 +S'Adriaen Brouwer' +p4777 +sg4 +S'Artist Information (' +p4778 +sg6 +S'(artist after)' +p4779 +sg8 +S'\n' +p4780 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0f6.jpg' +p4781 +sg12 +g27 +sa(dp4782 +g2 +S'Marten Pepyn' +p4783 +sg4 +S'Artist Information (' +p4784 +sg6 +S'(artist after)' +p4785 +sg8 +S'\n' +p4786 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0f5.jpg' +p4787 +sg12 +g27 +sa(dp4788 +g2 +S'Artus Wolfart' +p4789 +sg4 +S'Artist Information (' +p4790 +sg6 +S'(artist after)' +p4791 +sg8 +S'\n' +p4792 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0f4.jpg' +p4793 +sg12 +g27 +sa(dp4794 +g2 +S'Frans Francken II' +p4795 +sg4 +S'Artist Information (' +p4796 +sg6 +S'(artist after)' +p4797 +sg8 +S'\n' +p4798 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d101.jpg' +p4799 +sg12 +g27 +sa(dp4800 +g2 +S'Willem Hondius' +p4801 +sg4 +S'Artist Information (' +p4802 +sg6 +S'(artist after)' +p4803 +sg8 +S'\n' +p4804 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d103.jpg' +p4805 +sg12 +g27 +sa(dp4806 +g2 +S'Thames Fishermen' +p4807 +sg4 +S'Francis Seymour Haden' +p4808 +sg6 +S'drypoint with etching' +p4809 +sg8 +S'1859' +p4810 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d13.jpg' +p4811 +sg12 +g27 +sa(dp4812 +g2 +S'Adam de Coster' +p4813 +sg4 +S'Artist Information (' +p4814 +sg6 +S'(artist after)' +p4815 +sg8 +S'\n' +p4816 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d100.jpg' +p4817 +sg12 +g27 +sa(dp4818 +g2 +S'Adam de Coster' +p4819 +sg4 +S'Artist Information (' +p4820 +sg6 +S'(artist after)' +p4821 +sg8 +S'\n' +p4822 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0ff.jpg' +p4823 +sg12 +g27 +sa(dp4824 +g2 +S'Cornelis van Poelenburgh' +p4825 +sg4 +S'Artist Information (' +p4826 +sg6 +S'(artist after)' +p4827 +sg8 +S'\n' +p4828 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0fe.jpg' +p4829 +sg12 +g27 +sa(dp4830 +g2 +S'Hendrick van Balen' +p4831 +sg4 +S'Artist Information (' +p4832 +sg6 +S'(artist after)' +p4833 +sg8 +S'\n' +p4834 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0fd.jpg' +p4835 +sg12 +g27 +sa(dp4836 +g2 +S'Gerrit van Honthorst' +p4837 +sg4 +S'Artist Information (' +p4838 +sg6 +S'(artist after)' +p4839 +sg8 +S'\n' +p4840 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d102.jpg' +p4841 +sg12 +g27 +sa(dp4842 +g2 +S'Paulus Pontius' +p4843 +sg4 +S'Artist Information (' +p4844 +sg6 +S'(artist after)' +p4845 +sg8 +S'\n' +p4846 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d107.jpg' +p4847 +sg12 +g27 +sa(dp4848 +g2 +S'Adriaen van Stalbemt' +p4849 +sg4 +S'Artist Information (' +p4850 +sg6 +S'(artist after)' +p4851 +sg8 +S'\n' +p4852 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d105.jpg' +p4853 +sg12 +g27 +sa(dp4854 +g2 +S'Simon de Vos' +p4855 +sg4 +S'Artist Information (' +p4856 +sg6 +S'(artist after)' +p4857 +sg8 +S'\n' +p4858 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0fc.jpg' +p4859 +sg12 +g27 +sa(dp4860 +g2 +S'Simon Vouet' +p4861 +sg4 +S'Artist Information (' +p4862 +sg6 +S'(artist after)' +p4863 +sg8 +S'\n' +p4864 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d104.jpg' +p4865 +sg12 +g27 +sa(dp4866 +g2 +S'Deodat Delmont' +p4867 +sg4 +S'Artist Information (' +p4868 +sg6 +S'(artist after)' +p4869 +sg8 +S'\n' +p4870 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0fb.jpg' +p4871 +sg12 +g27 +sa(dp4872 +g2 +S'The Towing Path' +p4873 +sg4 +S'Francis Seymour Haden' +p4874 +sg6 +S'etching and drypoint (copper)' +p4875 +sg8 +S'1864' +p4876 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c51.jpg' +p4877 +sg12 +g27 +sa(dp4878 +g2 +S'Orazio Gentileschi' +p4879 +sg4 +S'Artist Information (' +p4880 +sg6 +S'(artist after)' +p4881 +sg8 +S'\n' +p4882 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d10a.jpg' +p4883 +sg12 +g27 +sa(dp4884 +g2 +S'Pieter de Jode the Elder' +p4885 +sg4 +S'Artist Information (' +p4886 +sg6 +S'(artist after)' +p4887 +sg8 +S'\n' +p4888 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d10d.jpg' +p4889 +sg12 +g27 +sa(dp4890 +g2 +S'Jan Lievens' +p4891 +sg4 +S'Artist Information (' +p4892 +sg6 +S'(artist after)' +p4893 +sg8 +S'\n' +p4894 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ff9f.jpg' +p4895 +sg12 +g27 +sa(dp4896 +g2 +S'Lucas van Uden' +p4897 +sg4 +S'Artist Information (' +p4898 +sg6 +S'(artist after)' +p4899 +sg8 +S'\n' +p4900 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d10c.jpg' +p4901 +sg12 +g27 +sa(dp4902 +g2 +S'Martin Rijckaert' +p4903 +sg4 +S'Artist Information (' +p4904 +sg6 +S'(artist after)' +p4905 +sg8 +S'\n' +p4906 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d502.jpg' +p4907 +sg12 +g27 +sa(dp4908 +g2 +S'Joannes Meyssens' +p4909 +sg4 +S'Artist Information (' +p4910 +sg6 +S'(artist after)' +p4911 +sg8 +S'\n' +p4912 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d504.jpg' +p4913 +sg12 +g27 +sa(dp4914 +g2 +S'Jacques Callot' +p4915 +sg4 +S'Artist Information (' +p4916 +sg6 +S'(artist after)' +p4917 +sg8 +S'\n' +p4918 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d45b.jpg' +p4919 +sg12 +g27 +sa(dp4920 +g2 +S'Baker Sounding His Horn' +p4921 +sg4 +S'Adriaen van Ostade' +p4922 +sg6 +S'etching' +p4923 +sg8 +S'probably 1664' +p4924 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d293.jpg' +p4925 +sg12 +g27 +sa(dp4926 +g2 +S'Peasant Wearing a Pointed Cap' +p4927 +sg4 +S'Adriaen van Ostade' +p4928 +sg6 +S'etching' +p4929 +sg8 +S'probably 1640' +p4930 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d296.jpg' +p4931 +sg12 +g27 +sa(dp4932 +g2 +S'Smoker at a Window' +p4933 +sg4 +S'Adriaen van Ostade' +p4934 +sg6 +S'etching' +p4935 +sg8 +S'probably 1667' +p4936 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d288.jpg' +p4937 +sg12 +g27 +sa(dp4938 +g2 +S'On the Test' +p4939 +sg4 +S'Francis Seymour Haden' +p4940 +sg6 +S'etching and drypoint' +p4941 +sg8 +S'in or after 1859' +p4942 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cdd.jpg' +p4943 +sg12 +g27 +sa(dp4944 +g2 +S'Peasant Couple in a Doorway (Village Romance)' +p4945 +sg4 +S'Adriaen van Ostade' +p4946 +sg6 +S'etching' +p4947 +sg8 +S'1667' +p4948 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d289.jpg' +p4949 +sg12 +g27 +sa(dp4950 +g2 +S'Man and Woman Conversing' +p4951 +sg4 +S'Adriaen van Ostade' +p4952 +sg6 +S'etching' +p4953 +sg8 +S'probably 1673' +p4954 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d295.jpg' +p4955 +sg12 +g27 +sa(dp4956 +g2 +S'The Empty Jug' +p4957 +sg4 +S'Adriaen van Ostade' +p4958 +sg6 +S'etching' +p4959 +sg8 +S'probably 1653' +p4960 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d290.jpg' +p4961 +sg12 +g27 +sa(dp4962 +g2 +S'Child Reaching for a Doll' +p4963 +sg4 +S'Adriaen van Ostade' +p4964 +sg6 +S'etching' +p4965 +sg8 +S'1679' +p4966 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d291.jpg' +p4967 +sg12 +g27 +sa(dp4968 +g2 +S"Peasants' Quarrel" +p4969 +sg4 +S'Adriaen van Ostade' +p4970 +sg6 +S'etching' +p4971 +sg8 +S'1653' +p4972 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d28a.jpg' +p4973 +sg12 +g27 +sa(dp4974 +g2 +S'The Singers' +p4975 +sg4 +S'Adriaen van Ostade' +p4976 +sg6 +S'etching' +p4977 +sg8 +S'probably 1667' +p4978 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d541.jpg' +p4979 +sg12 +g27 +sa(dp4980 +g2 +S'Peasant with a Crooked Back' +p4981 +sg4 +S'Adriaen van Ostade' +p4982 +sg6 +S'etching' +p4983 +sg8 +S'probably 1675' +p4984 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d298.jpg' +p4985 +sg12 +g27 +sa(dp4986 +g2 +S'Interior of a Barn' +p4987 +sg4 +S'Adriaen van Ostade' +p4988 +sg6 +S'etching' +p4989 +sg8 +S'1647' +p4990 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d29e.jpg' +p4991 +sg12 +g27 +sa(dp4992 +g2 +S'Couple Walking' +p4993 +sg4 +S'Adriaen van Ostade' +p4994 +sg6 +S'etching' +p4995 +sg8 +S'probably 1638' +p4996 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d297.jpg' +p4997 +sg12 +g27 +sa(dp4998 +g2 +S'Woman Winding upon a Reel (La Devideuse)' +p4999 +sg4 +S'Adriaen van Ostade' +p5000 +sg6 +S'etching' +p5001 +sg8 +S'probably 1684' +p5002 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d299.jpg' +p5003 +sg12 +g27 +sa(dp5004 +g2 +S'Miss Eleanor Urquhart' +p5005 +sg4 +S'Sir Henry Raeburn' +p5006 +sg6 +S'oil on canvas' +p5007 +sg8 +S'c. 1793' +p5008 +sg10 +S'http://www.nga.gov:80/thumb-l/a00039/a00039a8.jpg' +p5009 +sg12 +S"This lovely Scottish woman was the eldest\r\n daughter of William Urquhart, 2d Laird of Craigston, Aberdeenshire. Her\r\n portrait and companion likenesses of her parents were paid for on 10 January\r\n 1794; the artist's receipt was preserved among Urquhart family papers.\n It is unfortunate that nothing more is known of the sitter's life,\r\n because \n That this painting can be documented to just before 1794 is important\r\n because Raeburn did not keep studio account books and never dated any of his\r\n pictures. His style matured early, without much modification, after a few\r\n months in London and a year or two in Rome during the mid-1780s. So, it is\r\n difficult to establish a chronology for the more than one thousand portraits\r\n he made during a fifty-year career as Scotland's foremost painter. Although\r\n dedicated to his art, Raeburn need not have worked at all. At twenty-four,\r\n he had married a wealthy widow and become a member of Edinburgh society.\n " +p5010 +sa(dp5011 +g2 +S'The Church at Old Lyme' +p5012 +sg4 +S'Childe Hassam' +p5013 +sg6 +S'etching' +p5014 +sg8 +S'1924' +p5015 +sg10 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f5ba.jpg' +p5016 +sg12 +g27 +sa(dp5017 +g2 +S'The Angler' +p5018 +sg4 +S'Adriaen van Ostade' +p5019 +sg6 +S'etching' +p5020 +sg8 +S'probably 1653' +p5021 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d29a.jpg' +p5022 +sg12 +g27 +sa(dp5023 +g2 +S'Eyeglass Peddlar' +p5024 +sg4 +S'Adriaen van Ostade' +p5025 +sg6 +S'etching' +p5026 +sg8 +S'probably 1646' +p5027 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2af.jpg' +p5028 +sg12 +g27 +sa(dp5029 +g2 +S'Cobbler' +p5030 +sg4 +S'Adriaen van Ostade' +p5031 +sg6 +S'etching' +p5032 +sg8 +S'1671' +p5033 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d29d.jpg' +p5034 +sg12 +g27 +sa(dp5035 +g2 +S'The Spinner' +p5036 +sg4 +S'Adriaen van Ostade' +p5037 +sg6 +S'etching' +p5038 +sg8 +S'1652' +p5039 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2a2.jpg' +p5040 +sg12 +g27 +sa(dp5041 +g2 +S'Painter in His Studio' +p5042 +sg4 +S'Adriaen van Ostade' +p5043 +sg6 +S'etching' +p5044 +sg8 +S'probably 1667' +p5045 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2a0.jpg' +p5046 +sg12 +g27 +sa(dp5047 +g2 +S'The Pater Familias (Le Pere de famille)' +p5048 +sg4 +S'Adriaen van Ostade' +p5049 +sg6 +S'etching' +p5050 +sg8 +S'1648' +p5051 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2a6.jpg' +p5052 +sg12 +g27 +sa(dp5053 +g2 +S'Peasant Family Saying Grace' +p5054 +sg4 +S'Adriaen van Ostade' +p5055 +sg6 +S'etching' +p5056 +sg8 +S'1653' +p5057 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2a3.jpg' +p5058 +sg12 +g27 +sa(dp5059 +g2 +S'Wandering Musicians' +p5060 +sg4 +S'Adriaen van Ostade' +p5061 +sg6 +S'etching' +p5062 +sg8 +S'probably 1642' +p5063 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2a9.jpg' +p5064 +sg12 +g27 +sa(dp5065 +g2 +S'Two Gossips' +p5066 +sg4 +S'Adriaen van Ostade' +p5067 +sg6 +S'etching' +p5068 +sg8 +S'probably 1642' +p5069 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2a8.jpg' +p5070 +sg12 +g27 +sa(dp5071 +g2 +S'Independence Hall' +p5072 +sg4 +S'Childe Hassam' +p5073 +sg6 +S'drypoint' +p5074 +sg8 +S'1926' +p5075 +sg10 +S'http://www.nga.gov:80/thumb-l/a00104/a00104e5.jpg' +p5076 +sg12 +g27 +sa(dp5077 +g2 +S'Quacksalver' +p5078 +sg4 +S'Adriaen van Ostade' +p5079 +sg6 +S'etching' +p5080 +sg8 +S'1648' +p5081 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2b3.jpg' +p5082 +sg12 +g27 +sa(dp5083 +g2 +S'Pig Slaughterers' +p5084 +sg4 +S'Adriaen van Ostade' +p5085 +sg6 +S'etching' +p5086 +sg8 +S'probably 1642' +p5087 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2b1.jpg' +p5088 +sg12 +g27 +sa(dp5089 +g2 +S'Peasant Settling His Debt' +p5090 +sg4 +S'Adriaen van Ostade' +p5091 +sg6 +S'etching' +p5092 +sg8 +S'probably 1646' +p5093 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2b0.jpg' +p5094 +sg12 +g27 +sa(dp5095 +g2 +S'Hunchbacked Fiddler' +p5096 +sg4 +S'Adriaen van Ostade' +p5097 +sg6 +S'etching' +p5098 +sg8 +S'1654' +p5099 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2b4.jpg' +p5100 +sg12 +g27 +sa(dp5101 +g2 +S'Peasant Family' +p5102 +sg4 +S'Adriaen van Ostade' +p5103 +sg6 +S'etching' +p5104 +sg8 +S'1647' +p5105 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2b8.jpg' +p5106 +sg12 +g27 +sa(dp5107 +g2 +S'Dance under the Trellis' +p5108 +sg4 +S'Adriaen van Ostade' +p5109 +sg6 +S'etching' +p5110 +sg8 +S'probably 1652' +p5111 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2b6.jpg' +p5112 +sg12 +g27 +sa(dp5113 +g2 +S'Dance under the Trellis' +p5114 +sg4 +S'Adriaen van Ostade' +p5115 +sg6 +S'etching' +p5116 +sg8 +S'probably 1652' +p5117 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2b7.jpg' +p5118 +sg12 +g27 +sa(dp5119 +g2 +S'Dance in a Tavern' +p5120 +sg4 +S'Adriaen van Ostade' +p5121 +sg6 +S'etching' +p5122 +sg8 +S'1652' +p5123 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d53d.jpg' +p5124 +sg12 +g27 +sa(dp5125 +g2 +S'Organ Grinder' +p5126 +sg4 +S'Adriaen van Ostade' +p5127 +sg6 +S'etching' +p5128 +sg8 +S'1647' +p5129 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d28d.jpg' +p5130 +sg12 +g27 +sa(dp5131 +g2 +S'Interior of a Courtyard' +p5132 +sg4 +S'Artist Information (' +p5133 +sg6 +S'Dutch, 1621 - 1649' +p5134 +sg8 +S'(artist after)' +p5135 +sg10 +S'http://www.nga.gov:80/thumb-l/a00070/a0007050.jpg' +p5136 +sg12 +g27 +sa(dp5137 +g2 +S'Portsmouth Doorway' +p5138 +sg4 +S'Childe Hassam' +p5139 +sg6 +S'etching and drypoint' +p5140 +sg8 +S'1916' +p5141 +sg10 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f5b6.jpg' +p5142 +sg12 +g27 +sa(dp5143 +g2 +S'Brawl in an Inn' +p5144 +sg4 +S'Artist Information (' +p5145 +sg6 +S'Dutch, 1610 - 1685' +p5146 +sg8 +S'(related artist)' +p5147 +sg10 +S'http://www.nga.gov:80/thumb-l/a00070/a000707f.jpg' +p5148 +sg12 +g27 +sa(dp5149 +g2 +S'The Lovers' +p5150 +sg4 +S'Artist Information (' +p5151 +sg6 +S'(artist after)' +p5152 +sg8 +S'\n' +p5153 +sg10 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c1c.jpg' +p5154 +sg12 +g27 +sa(dp5155 +g2 +S'Farmer and Wife with Goose' +p5156 +sg4 +S'Artist Information (' +p5157 +sg6 +S'(artist after)' +p5158 +sg8 +S'\n' +p5159 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a464.jpg' +p5160 +sg12 +g27 +sa(dp5161 +g2 +S'The Deluge' +p5162 +sg4 +S'Dirk Jacobsz Vellert' +p5163 +sg6 +S'etching and engraving' +p5164 +sg8 +S'1544' +p5165 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d015.jpg' +p5166 +sg12 +g27 +sa(dp5167 +g12 +g27 +sg6 +S'etching' +p5168 +sg8 +S'unknown date\n' +p5169 +sg2 +S'Market Day Bruges' +p5170 +sg4 +S'Paul Verrees' +p5171 +sa(dp5172 +g2 +S'Christ and the Woman of Samaria' +p5173 +sg4 +S'Dirk Jacobsz Vellert' +p5174 +sg6 +S'engraving' +p5175 +sg8 +S'1523' +p5176 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cec3.jpg' +p5177 +sg12 +g27 +sa(dp5178 +g2 +S'The Temptation of Christ' +p5179 +sg4 +S'Dirk Jacobsz Vellert' +p5180 +sg6 +S'engraving' +p5181 +sg8 +S'1523' +p5182 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cec2.jpg' +p5183 +sg12 +g27 +sa(dp5184 +g2 +S'Christ Summoning Peter' +p5185 +sg4 +S'Dirk Jacobsz Vellert' +p5186 +sg6 +S'engraving' +p5187 +sg8 +S'1523' +p5188 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cec0.jpg' +p5189 +sg12 +g27 +sa(dp5190 +g12 +g27 +sg6 +S'color woodcut' +p5191 +sg8 +S'1932' +p5192 +sg2 +S'Malines Cathedral' +p5193 +sg4 +S'Emile Antoine Verpilleux' +p5194 +sa(dp5195 +g2 +S'Saint James the Less and Saint Simon' +p5196 +sg4 +S'Hans Vischer' +p5197 +sg6 +S'woodcut' +p5198 +sg8 +S'1518' +p5199 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b288.jpg' +p5200 +sg12 +g27 +sa(dp5201 +g2 +S'A Vermont Village' +p5202 +sg4 +S'Childe Hassam' +p5203 +sg6 +S'etching (with drypoint?)' +p5204 +sg8 +S'1923' +p5205 +sg10 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f5bc.jpg' +p5206 +sg12 +g27 +sa(dp5207 +g2 +S'Procession of Feasting Lepers' +p5208 +sg4 +S'Claes Jansz Visscher' +p5209 +sg6 +S'etching' +p5210 +sg8 +S'1608' +p5211 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d477.jpg' +p5212 +sg12 +g27 +sa(dp5213 +g2 +S'The Seller of Rat Poison' +p5214 +sg4 +S'Cornelis Visscher' +p5215 +sg6 +S'engraving and etching' +p5216 +sg8 +S'1655' +p5217 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5e1.jpg' +p5218 +sg12 +g27 +sa(dp5219 +g2 +S"Head of an Old Woman (Visscher's Mother)" +p5220 +sg4 +S'Cornelis Visscher' +p5221 +sg6 +S'etching and engraving' +p5222 +sg8 +S'unknown date\n' +p5223 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d494.jpg' +p5224 +sg12 +g27 +sa(dp5225 +g2 +S'Title Page: Two Cripples Receiving Alms' +p5226 +sg4 +S'Johannes van Vliet' +p5227 +sg6 +S'etching' +p5228 +sg8 +S'1632' +p5229 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d495.jpg' +p5230 +sg12 +g27 +sa(dp5231 +g2 +S'Beggar with a Wooden Leg' +p5232 +sg4 +S'Johannes van Vliet' +p5233 +sg6 +S'etching' +p5234 +sg8 +S'1632' +p5235 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d496.jpg' +p5236 +sg12 +g27 +sa(dp5237 +g2 +S'Beggar Carrying a Woman on His Back' +p5238 +sg4 +S'Johannes van Vliet' +p5239 +sg6 +S'etching' +p5240 +sg8 +S'1632' +p5241 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d499.jpg' +p5242 +sg12 +g27 +sa(dp5243 +g2 +S'Beggar with Two Crutches' +p5244 +sg4 +S'Johannes van Vliet' +p5245 +sg6 +S'etching' +p5246 +sg8 +S'1632' +p5247 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d498.jpg' +p5248 +sg12 +g27 +sa(dp5249 +g2 +S'Seated Beggar' +p5250 +sg4 +S'Johannes van Vliet' +p5251 +sg6 +S'etching' +p5252 +sg8 +S'1632' +p5253 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d497.jpg' +p5254 +sg12 +g27 +sa(dp5255 +g2 +S'Beggar Woman Fleaing a Boy' +p5256 +sg4 +S'Johannes van Vliet' +p5257 +sg6 +S'etching' +p5258 +sg8 +S'1632' +p5259 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d49a.jpg' +p5260 +sg12 +g27 +sa(dp5261 +g2 +S'The Peddler' +p5262 +sg4 +S'Johannes van Vliet' +p5263 +sg6 +S'etching' +p5264 +sg8 +S'1632' +p5265 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d49c.jpg' +p5266 +sg12 +g27 +sa(dp5267 +g2 +S"Washington's Headquarters near Valley Forge" +p5268 +sg4 +S'Childe Hassam' +p5269 +sg6 +S'etching with drypoint' +p5270 +sg8 +S'1926' +p5271 +sg10 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f5b8.jpg' +p5272 +sg12 +g27 +sa(dp5273 +g2 +S'The Rat Catcher' +p5274 +sg4 +S'Johannes van Vliet' +p5275 +sg6 +S'etching' +p5276 +sg8 +S'1632' +p5277 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d49b.jpg' +p5278 +sg12 +g27 +sa(dp5279 +g2 +S'The Hurdy-Gurdy Player' +p5280 +sg4 +S'Johannes van Vliet' +p5281 +sg6 +S'etching' +p5282 +sg8 +S'1632' +p5283 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d49d.jpg' +p5284 +sg12 +g27 +sa(dp5285 +g2 +S'Beggar Woman Playing the Violin' +p5286 +sg4 +S'Johannes van Vliet' +p5287 +sg6 +S'etching' +p5288 +sg8 +S'1632' +p5289 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d49e.jpg' +p5290 +sg12 +g27 +sa(dp5291 +g2 +S'On the "Pont de l\'Europe"' +p5292 +sg4 +S'Artist Information (' +p5293 +sg6 +S'(artist)' +p5294 +sg8 +S'\n' +p5295 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000fac.jpg' +p5296 +sg12 +g27 +sa(dp5297 +g12 +g27 +sg6 +S'drypoint (and etching?)' +p5298 +sg8 +S'unknown date\n' +p5299 +sg2 +S'The Bullfight, Madrid' +p5300 +sg4 +S'William Walcot' +p5301 +sa(dp5302 +g12 +g27 +sg6 +S'drypoint (and etching?)' +p5303 +sg8 +S'unknown date\n' +p5304 +sg2 +S'Westminster' +p5305 +sg4 +S'William Walcot' +p5306 +sa(dp5307 +g12 +g27 +sg6 +S'etching' +p5308 +sg8 +S'unknown date\n' +p5309 +sg2 +S'Durham Cathedral' +p5310 +sg4 +S'William Walcot' +p5311 +sa(dp5312 +g12 +g27 +sg6 +S'etching' +p5313 +sg8 +S'unknown date\n' +p5314 +sg2 +S'San Carlo' +p5315 +sg4 +S'William Walcot' +p5316 +sa(dp5317 +g2 +S'Notre Dame de Caudelec' +p5318 +sg4 +S'Herbert Gordon Warlow' +p5319 +sg6 +S'etching' +p5320 +sg8 +S'unknown date\n' +p5321 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007e/a0007ebe.jpg' +p5322 +sg12 +g27 +sa(dp5323 +g2 +S'Petersborough' +p5324 +sg4 +S'Herbert Gordon Warlow' +p5325 +sg6 +S'etching' +p5326 +sg8 +S'unknown date\n' +p5327 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007e/a0007ebf.jpg' +p5328 +sg12 +g27 +sa(dp5329 +g2 +S'George Washington' +p5330 +sg4 +S'William Edgar Marshall' +p5331 +sg6 +S'engraving on paperboard' +p5332 +sg8 +S'c. 1862' +p5333 +sg10 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fae3.jpg' +p5334 +sg12 +g27 +sa(dp5335 +g2 +S'Canterbury' +p5336 +sg4 +S'Herbert Gordon Warlow' +p5337 +sg6 +S'etching' +p5338 +sg8 +S'unknown date\n' +p5339 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007e/a0007ec4.jpg' +p5340 +sg12 +g27 +sa(dp5341 +g12 +g27 +sg6 +S'(artist after)' +p5342 +sg8 +S'\n' +p5343 +sg2 +S'The First of September, Morning' +p5344 +sg4 +S'Artist Information (' +p5345 +sa(dp5346 +g12 +g27 +sg6 +S'(artist after)' +p5347 +sg8 +S'\n' +p5348 +sg2 +S'The First of September, Evening' +p5349 +sg4 +S'Artist Information (' +p5350 +sa(dp5351 +g2 +S'Robert Burns' +p5352 +sg4 +S'Artist Information (' +p5353 +sg6 +S'(artist)' +p5354 +sg8 +S'\n' +p5355 +sg10 +S'http://www.nga.gov:80/thumb-l/a00081/a00081ed.jpg' +p5356 +sg12 +g27 +sa(dp5357 +g12 +g27 +sg6 +S'drypoint' +p5358 +sg8 +S'unknown date\n' +p5359 +sg2 +S'Devout Disciple of Saint Francis' +p5360 +sg4 +S'Cadwallader Washburn' +p5361 +sa(dp5362 +g12 +g27 +sg6 +S'engraving' +p5363 +sg8 +S'1928' +p5364 +sg2 +S'La Rochelle' +p5365 +sg4 +S'William Washington' +p5366 +sa(dp5367 +g2 +S'Lucinda, Miss Moore' +p5368 +sg4 +S'Artist Information (' +p5369 +sg6 +S'(artist after)' +p5370 +sg8 +S'\n' +p5371 +sg10 +S'http://www.nga.gov:80/thumb-l/a00078/a0007832.jpg' +p5372 +sg12 +g27 +sa(dp5373 +g2 +S'Samuel Johnson' +p5374 +sg4 +S'Artist Information (' +p5375 +sg6 +S'(artist after)' +p5376 +sg8 +S'\n' +p5377 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d2d.jpg' +p5378 +sg12 +g27 +sa(dp5379 +g2 +S'Catherine, Lady Bampfylde' +p5380 +sg4 +S'Artist Information (' +p5381 +sg6 +S'(artist after)' +p5382 +sg8 +S'\n' +p5383 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d03.jpg' +p5384 +sg12 +g27 +sa(dp5385 +g2 +S'Portrait of Whistler' +p5386 +sg4 +S'Thomas Robert Way' +p5387 +sg6 +S'lithograph' +p5388 +sg8 +S'unknown date\n' +p5389 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c91.jpg' +p5390 +sg12 +g27 +sa(dp5391 +g12 +g27 +sg6 +S'drypoint' +p5392 +sg8 +S'1920' +p5393 +sg2 +S'Margot as Lopokova' +p5394 +sg4 +S'James McBey' +p5395 +sa(dp5396 +g2 +S'Saint Benedict' +p5397 +sg4 +S'Hans S\xc3\xbcss von Kulmbach' +p5398 +sg6 +S'brush (and pen?) with gray ink on laid paper' +p5399 +sg8 +S'1510/1515' +p5400 +sg10 +S'http://www.nga.gov:80/thumb-l/a00079/a0007995.jpg' +p5401 +sg12 +g27 +sa(dp5402 +g2 +S'Knight and the Servant' +p5403 +sg4 +S'Hans Wechtlin I' +p5404 +sg6 +S'chiarscuro woodcut' +p5405 +sg8 +S'unknown date\n' +p5406 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b1b6.jpg' +p5407 +sg12 +g27 +sa(dp5408 +g2 +S'Baptism in Jordan' +p5409 +sg4 +S'Hans Wechtlin I' +p5410 +sg6 +S'woodcut' +p5411 +sg8 +S'unknown date\n' +p5412 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad64.jpg' +p5413 +sg12 +g27 +sa(dp5414 +g2 +S'Pyrgoteles' +p5415 +sg4 +S'Hans Wechtlin I' +p5416 +sg6 +S'chiaroscuro woodcut' +p5417 +sg8 +S'unknown date\n' +p5418 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad61.jpg' +p5419 +sg12 +g27 +sa(dp5420 +g2 +S'Last Supper' +p5421 +sg4 +S'German 15th Century' +p5422 +sg6 +S'Schreiber Manuel, no. 3448' +p5423 +sg8 +S'\nhand-colored woodcut' +p5424 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5ed.jpg' +p5425 +sg12 +g27 +sa(dp5426 +g2 +S'Mary Magdalen Washing Feet of Christ' +p5427 +sg4 +S'Hans Wechtlin I' +p5428 +sg6 +S'woodcut' +p5429 +sg8 +S'unknown date\n' +p5430 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad65.jpg' +p5431 +sg12 +g27 +sa(dp5432 +g2 +S'Piet\xc3\xa0' +p5433 +sg4 +S'Hans Weiditz, II' +p5434 +sg6 +S', unknown date' +p5435 +sg8 +S'\n' +p5436 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b1b8.jpg' +p5437 +sg12 +g27 +sa(dp5438 +g2 +S'The Man of Sorrows Standing' +p5439 +sg4 +S'Hans Weiditz, II' +p5440 +sg6 +S'chiaroscuro woodcut' +p5441 +sg8 +S'1522' +p5442 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b1b9.jpg' +p5443 +sg12 +g27 +sa(dp5444 +g2 +S'Allegory - Religious Frivolity' +p5445 +sg4 +S'Hans Weiditz, II' +p5446 +sg6 +S'woodcut' +p5447 +sg8 +S'unknown date\n' +p5448 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad5d.jpg' +p5449 +sg12 +g27 +sa(dp5450 +g2 +S'Page from Troianischen Kreig - Ausberg' +p5451 +sg4 +S'Hans Weiditz, II' +p5452 +sg6 +S'woodcut' +p5453 +sg8 +S'1536' +p5454 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad66.jpg' +p5455 +sg12 +g27 +sa(dp5456 +g2 +S'The Ferry House' +p5457 +sg4 +S'Joseph Pennell' +p5458 +sg6 +S'etching' +p5459 +sg8 +S'1919' +p5460 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b5b.jpg' +p5461 +sg12 +g27 +sa(dp5462 +g2 +S'Page from Geschlechter Buch - Ausberg' +p5463 +sg4 +S'Hans Weiditz, II' +p5464 +sg6 +S'woodcut' +p5465 +sg8 +S'1550' +p5466 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b1b4.jpg' +p5467 +sg12 +g27 +sa(dp5468 +g2 +S'Smithy' +p5469 +sg4 +S'Elisha Kent Kane Wetherill' +p5470 +sg6 +S'etching' +p5471 +sg8 +S'unknown date\n' +p5472 +sg10 +S'http://www.nga.gov:80/thumb-l/a000f9/a000f96b.jpg' +p5473 +sg12 +g27 +sa(dp5474 +g12 +g27 +sg6 +S'color linoleum cut' +p5475 +sg8 +S'1935' +p5476 +sg2 +S'Manuel of Tesuque' +p5477 +sg4 +S'Treva Wheete' +p5478 +sa(dp5479 +g12 +g27 +sg6 +S'(artist after)' +p5480 +sg8 +S'\n' +p5481 +sg2 +S'The Death of General Wolf' +p5482 +sg4 +S'Artist Information (' +p5483 +sa(dp5484 +g12 +g27 +sg6 +S'(artist after)' +p5485 +sg8 +S'\n' +p5486 +sg2 +S"William Penn's Treaty with the Indians" +p5487 +sg4 +S'Artist Information (' +p5488 +sa(dp5489 +g12 +g27 +sg6 +S'lithograph' +p5490 +sg8 +S'1942' +p5491 +sg2 +S'Lock House' +p5492 +sg4 +S'Stow Wengenroth' +p5493 +sa(dp5494 +g12 +g27 +sg6 +S'lithograph' +p5495 +sg8 +S'1941' +p5496 +sg2 +S"Lobsterman's Cove" +p5497 +sg4 +S'Stow Wengenroth' +p5498 +sa(dp5499 +g12 +g27 +sg6 +S'lithograph' +p5500 +sg8 +S'1938' +p5501 +sg2 +S'Inlet Light' +p5502 +sg4 +S'Stow Wengenroth' +p5503 +sa(dp5504 +g12 +g27 +sg6 +S'lithograph' +p5505 +sg8 +S'1940' +p5506 +sg2 +S'Meeting House' +p5507 +sg4 +S'Stow Wengenroth' +p5508 +sa(dp5509 +g12 +g27 +sg6 +S'lithograph' +p5510 +sg8 +S'1942' +p5511 +sg2 +S'Ruffed Grouse' +p5512 +sg4 +S'Stow Wengenroth' +p5513 +sa(dp5514 +g2 +S'Four-Story House' +p5515 +sg4 +S'Joseph Pennell' +p5516 +sg6 +S'etching' +p5517 +sg8 +S'1904' +p5518 +sg10 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b64.jpg' +p5519 +sg12 +g27 +sa(dp5520 +g12 +g27 +sg6 +S'lithograph' +p5521 +sg8 +S'1936' +p5522 +sg2 +S'Waterfront' +p5523 +sg4 +S'Stow Wengenroth' +p5524 +sa(dp5525 +g2 +S'Large jug, the handle formed by a snake' +p5526 +sg4 +S'Georg Wechter I' +p5527 +sg6 +S'engraving' +p5528 +sg8 +S'published 1579' +p5529 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad8a.jpg' +p5530 +sg12 +g27 +sa(dp5531 +g2 +S'Chalice with Head of a Warrior' +p5532 +sg4 +S'Georg Wechter I' +p5533 +sg6 +S'engraving' +p5534 +sg8 +S'published 1579' +p5535 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b281.jpg' +p5536 +sg12 +g27 +sa(dp5537 +g2 +S'Goblet decorated with masque' +p5538 +sg4 +S'Georg Wechter I' +p5539 +sg6 +S'engraving' +p5540 +sg8 +S'published 1579' +p5541 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad80.jpg' +p5542 +sg12 +g27 +sa(dp5543 +g2 +S'Goblet with base decorated with two large scallops' +p5544 +sg4 +S'Georg Wechter I' +p5545 +sg6 +S'engraving' +p5546 +sg8 +S'published 1579' +p5547 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b280.jpg' +p5548 +sg12 +g27 +sa(dp5549 +g2 +S'Goblet with lid surmounted by a Roman soldier' +p5550 +sg4 +S'Georg Wechter I' +p5551 +sg6 +S'engraving' +p5552 +sg8 +S'published 1579' +p5553 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b27f.jpg' +p5554 +sg12 +g27 +sa(dp5555 +g2 +S'Goblet with Putto on lid' +p5556 +sg4 +S'Georg Wechter I' +p5557 +sg6 +S'engraving' +p5558 +sg8 +S'published 1579' +p5559 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b283.jpg' +p5560 +sg12 +g27 +sa(dp5561 +g2 +S'Goblet with two Masques on lid' +p5562 +sg4 +S'Georg Wechter I' +p5563 +sg6 +S'engraving' +p5564 +sg8 +S'published 1579' +p5565 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad83.jpg' +p5566 +sg12 +g27 +sa(dp5567 +g2 +S'Goblet decorated with a masque with open mouth' +p5568 +sg4 +S'Georg Wechter I' +p5569 +sg6 +S'engraving' +p5570 +sg8 +S'published 1579' +p5571 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b27e.jpg' +p5572 +sg12 +g27 +sa(dp5573 +g2 +S'Two small goblets superimposed in reverse' +p5574 +sg4 +S'Georg Wechter I' +p5575 +sg6 +S'engraving' +p5576 +sg8 +S'published 1579' +p5577 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad81.jpg' +p5578 +sg12 +g27 +sa(dp5579 +g2 +S'The Woolworth Building' +p5580 +sg4 +S'Joseph Pennell' +p5581 +sg6 +S'etching' +p5582 +sg8 +S'1915' +p5583 +sg10 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bb1.jpg' +p5584 +sg12 +g27 +sa(dp5585 +g2 +S'Goblet, rim decorated with masque with gaping mouth' +p5586 +sg4 +S'Georg Wechter I' +p5587 +sg6 +S'engraving' +p5588 +sg8 +S'published 1579' +p5589 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad85.jpg' +p5590 +sg12 +g27 +sa(dp5591 +g2 +S'Goblet, rim decorated with masque and bouquet of fruit' +p5592 +sg4 +S'Georg Wechter I' +p5593 +sg6 +S'engraving' +p5594 +sg8 +S'published 1579' +p5595 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b282.jpg' +p5596 +sg12 +g27 +sa(dp5597 +g2 +S'Chalice with six embossings, base decorated with two dolphins' +p5598 +sg4 +S'Georg Wechter I' +p5599 +sg6 +S'engraving' +p5600 +sg8 +S'published 1579' +p5601 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad86.jpg' +p5602 +sg12 +g27 +sa(dp5603 +g2 +S'Sketches on the Coast Survey Plate' +p5604 +sg4 +S'James McNeill Whistler' +p5605 +sg6 +S'etching' +p5606 +sg8 +S'1854/1855' +p5607 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9b8.jpg' +p5608 +sg12 +g27 +sa(dp5609 +g2 +S'Little Arthur' +p5610 +sg4 +S'James McNeill Whistler' +p5611 +sg6 +S'etching' +p5612 +sg8 +S'c. 1857/1858' +p5613 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9c4.jpg' +p5614 +sg12 +g27 +sa(dp5615 +g2 +S'Little Arthur' +p5616 +sg4 +S'James McNeill Whistler' +p5617 +sg6 +S'etching' +p5618 +sg8 +S'c. 1857/1858' +p5619 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9c3.jpg' +p5620 +sg12 +g27 +sa(dp5621 +g2 +S'Annie' +p5622 +sg4 +S'James McNeill Whistler' +p5623 +sg6 +S'etching' +p5624 +sg8 +S'c. 1857/1858' +p5625 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9c0.jpg' +p5626 +sg12 +g27 +sa(dp5627 +g2 +S'La Mere Gerard' +p5628 +sg4 +S'James McNeill Whistler' +p5629 +sg6 +S'etching' +p5630 +sg8 +S'1858' +p5631 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9bf.jpg' +p5632 +sg12 +g27 +sa(dp5633 +g2 +S'La Retameuse' +p5634 +sg4 +S'James McNeill Whistler' +p5635 +sg6 +S'etching' +p5636 +sg8 +S'1858' +p5637 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9c1.jpg' +p5638 +sg12 +g27 +sa(dp5639 +g2 +S'Liverdun' +p5640 +sg4 +S'James McNeill Whistler' +p5641 +sg6 +S'etching' +p5642 +sg8 +S'1858' +p5643 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9bd.jpg' +p5644 +sg12 +g27 +sa(dp5645 +g2 +S'Colonel Francis James Scott' +p5646 +sg4 +S'Sir Henry Raeburn' +p5647 +sg6 +S'oil on canvas' +p5648 +sg8 +S'1796/1811' +p5649 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f6b.jpg' +p5650 +sg12 +g27 +sa(dp5651 +g2 +S'Tracks, Oberhausen' +p5652 +sg4 +S'Joseph Pennell' +p5653 +sg6 +S'etching' +p5654 +sg8 +S'1910' +p5655 +sg10 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bb3.jpg' +p5656 +sg12 +g27 +sa(dp5657 +g2 +S'The Unsafe Tenement' +p5658 +sg4 +S'James McNeill Whistler' +p5659 +sg6 +S'etching' +p5660 +sg8 +S'1858' +p5661 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9ba.jpg' +p5662 +sg12 +g27 +sa(dp5663 +g2 +S'The Unsafe Tenement' +p5664 +sg4 +S'James McNeill Whistler' +p5665 +sg6 +S'etching' +p5666 +sg8 +S'1858' +p5667 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9b9.jpg' +p5668 +sg12 +g27 +sa(dp5669 +g2 +S'Street at Saverne' +p5670 +sg4 +S'James McNeill Whistler' +p5671 +sg6 +S'etching' +p5672 +sg8 +S'1858' +p5673 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aac3.jpg' +p5674 +sg12 +g27 +sa(dp5675 +g2 +S'Street at Saverne' +p5676 +sg4 +S'James McNeill Whistler' +p5677 +sg6 +S'etching' +p5678 +sg8 +S'1858' +p5679 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bd9.jpg' +p5680 +sg12 +g27 +sa(dp5681 +g2 +S'Street at Saverne' +p5682 +sg4 +S'James McNeill Whistler' +p5683 +sg6 +S'etching' +p5684 +sg8 +S'1858' +p5685 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aac2.jpg' +p5686 +sg12 +g27 +sa(dp5687 +g2 +S'La Vieille aux Loques' +p5688 +sg4 +S'James McNeill Whistler' +p5689 +sg6 +S'etching' +p5690 +sg8 +S'1858' +p5691 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aac1.jpg' +p5692 +sg12 +g27 +sa(dp5693 +g2 +S'La Marchande de Moutarde' +p5694 +sg4 +S'James McNeill Whistler' +p5695 +sg6 +S'etching' +p5696 +sg8 +S'1858' +p5697 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9d1.jpg' +p5698 +sg12 +g27 +sa(dp5699 +g2 +S'La Marchande de Moutarde' +p5700 +sg4 +S'James McNeill Whistler' +p5701 +sg6 +S'etching' +p5702 +sg8 +S'1858' +p5703 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bda.jpg' +p5704 +sg12 +g27 +sa(dp5705 +g2 +S'La Marchande de Moutarde' +p5706 +sg4 +S'James McNeill Whistler' +p5707 +sg6 +S'etching' +p5708 +sg8 +S'1858' +p5709 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9d0.jpg' +p5710 +sg12 +g27 +sa(dp5711 +g12 +g27 +sg6 +S'lithograph' +p5712 +sg8 +S'1912' +p5713 +sg2 +S'The Jungle' +p5714 +sg4 +S'Joseph Pennell' +p5715 +sa(dp5716 +g2 +S'The Kitchen' +p5717 +sg4 +S'James McNeill Whistler' +p5718 +sg6 +S'etching' +p5719 +sg8 +S'1858' +p5720 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bdb.jpg' +p5721 +sg12 +g27 +sa(dp5722 +g2 +S'The Kitchen' +p5723 +sg4 +S'James McNeill Whistler' +p5724 +sg6 +S'etching' +p5725 +sg8 +S'1858' +p5726 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9d4.jpg' +p5727 +sg12 +g27 +sa(dp5728 +g2 +S'The Title to the French Set' +p5729 +sg4 +S'James McNeill Whistler' +p5730 +sg6 +S'etching' +p5731 +sg8 +S'1858' +p5732 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aabe.jpg' +p5733 +sg12 +g27 +sa(dp5734 +g2 +S'Reading in Bed' +p5735 +sg4 +S'James McNeill Whistler' +p5736 +sg6 +S'etching' +p5737 +sg8 +S'1858' +p5738 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9c8.jpg' +p5739 +sg12 +g27 +sa(dp5740 +g2 +S'Seymour, Seated' +p5741 +sg4 +S'James McNeill Whistler' +p5742 +sg6 +S'etching' +p5743 +sg8 +S'unknown date\n' +p5744 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9cb.jpg' +p5745 +sg12 +g27 +sa(dp5746 +g2 +S'The Music-Room' +p5747 +sg4 +S'James McNeill Whistler' +p5748 +sg6 +S'etching' +p5749 +sg8 +S'1858' +p5750 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bdc.jpg' +p5751 +sg12 +g27 +sa(dp5752 +g2 +S'Greenwich Pensioner' +p5753 +sg4 +S'James McNeill Whistler' +p5754 +sg6 +S'etching' +p5755 +sg8 +S'1859' +p5756 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a996.jpg' +p5757 +sg12 +g27 +sa(dp5758 +g2 +S'Landscape with the Horse' +p5759 +sg4 +S'James McNeill Whistler' +p5760 +sg6 +S'etching' +p5761 +sg8 +S'1859' +p5762 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a999.jpg' +p5763 +sg12 +g27 +sa(dp5764 +g2 +S'Nursemaid and Child' +p5765 +sg4 +S'James McNeill Whistler' +p5766 +sg6 +S'etching' +p5767 +sg8 +S'1859' +p5768 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a995.jpg' +p5769 +sg12 +g27 +sa(dp5770 +g2 +S'Thames Warehouses' +p5771 +sg4 +S'James McNeill Whistler' +p5772 +sg6 +S'etching [trial proof]' +p5773 +sg8 +S'1859' +p5774 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aac4.jpg' +p5775 +sg12 +g27 +sa(dp5776 +g12 +g27 +sg6 +S'lithograph' +p5777 +sg8 +S'1912' +p5778 +sg2 +S'Laying the Floor of Pedro Muguel Lock' +p5779 +sg4 +S'Joseph Pennell' +p5780 +sa(dp5781 +g2 +S'Old Westminster Bridge' +p5782 +sg4 +S'James McNeill Whistler' +p5783 +sg6 +S'etching' +p5784 +sg8 +S'1859' +p5785 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a997.jpg' +p5786 +sg12 +g27 +sa(dp5787 +g2 +S'Limehouse' +p5788 +sg4 +S'James McNeill Whistler' +p5789 +sg6 +S'etching' +p5790 +sg8 +S'1859' +p5791 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a998.jpg' +p5792 +sg12 +g27 +sa(dp5793 +g2 +S'Eagle Wharf' +p5794 +sg4 +S'James McNeill Whistler' +p5795 +sg6 +S'etching' +p5796 +sg8 +S'1859' +p5797 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aac5.jpg' +p5798 +sg12 +g27 +sa(dp5799 +g2 +S'The Pool' +p5800 +sg4 +S'James McNeill Whistler' +p5801 +sg6 +S'etching and drypoint' +p5802 +sg8 +S'1859' +p5803 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aacf.jpg' +p5804 +sg12 +g27 +sa(dp5805 +g2 +S'Thames Police' +p5806 +sg4 +S'James McNeill Whistler' +p5807 +sg6 +S'etching and drypoint' +p5808 +sg8 +S'1859' +p5809 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a99c.jpg' +p5810 +sg12 +g27 +sa(dp5811 +g2 +S'Thames Police' +p5812 +sg4 +S'James McNeill Whistler' +p5813 +sg6 +S'etching and drypoint' +p5814 +sg8 +S'1859' +p5815 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a99d.jpg' +p5816 +sg12 +g27 +sa(dp5817 +g2 +S'Longshoremen' +p5818 +sg4 +S'James McNeill Whistler' +p5819 +sg6 +S'etching and drypoint' +p5820 +sg8 +S'1859' +p5821 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9a1.jpg' +p5822 +sg12 +g27 +sa(dp5823 +g2 +S'The Lime-Burner' +p5824 +sg4 +S'James McNeill Whistler' +p5825 +sg6 +S'etching and drypoint' +p5826 +sg8 +S'1859' +p5827 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bdd.jpg' +p5828 +sg12 +g27 +sa(dp5829 +g2 +S'Soupe a Trois Sous' +p5830 +sg4 +S'James McNeill Whistler' +p5831 +sg6 +S'drypoint' +p5832 +sg8 +S'1859' +p5833 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9a3.jpg' +p5834 +sg12 +g27 +sa(dp5835 +g2 +S'The Approach to Gatun Lock' +p5836 +sg4 +S'Joseph Pennell' +p5837 +sg6 +S'lithograph' +p5838 +sg8 +S'1912' +p5839 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b5c.jpg' +p5840 +sg12 +g27 +sa(dp5841 +g2 +S'Bibi Lalouette' +p5842 +sg4 +S'James McNeill Whistler' +p5843 +sg6 +S'etching and drypoint' +p5844 +sg8 +S'1859' +p5845 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aacd.jpg' +p5846 +sg12 +g27 +sa(dp5847 +g2 +S'Becquet' +p5848 +sg4 +S'James McNeill Whistler' +p5849 +sg6 +S'etching' +p5850 +sg8 +S'1859' +p5851 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9aa.jpg' +p5852 +sg12 +g27 +sa(dp5853 +g2 +S'Becquet' +p5854 +sg4 +S'James McNeill Whistler' +p5855 +sg6 +S'etching' +p5856 +sg8 +S'1859' +p5857 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaca.jpg' +p5858 +sg12 +g27 +sa(dp5859 +g2 +S'Astruc, A Literary Man' +p5860 +sg4 +S'James McNeill Whistler' +p5861 +sg6 +S'etching' +p5862 +sg8 +S'1859' +p5863 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aacc.jpg' +p5864 +sg12 +g27 +sa(dp5865 +g2 +S'Venus' +p5866 +sg4 +S'James McNeill Whistler' +p5867 +sg6 +S'etching and drypoint in black on cream wove paper' +p5868 +sg8 +S'1859' +p5869 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aace.jpg' +p5870 +sg12 +g27 +sa(dp5871 +g2 +S'Venus' +p5872 +sg4 +S'James McNeill Whistler' +p5873 +sg6 +S'etching' +p5874 +sg8 +S'1859' +p5875 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9a4.jpg' +p5876 +sg12 +g27 +sa(dp5877 +g2 +S'Isle de la Cite, Paris' +p5878 +sg4 +S'James McNeill Whistler' +p5879 +sg6 +S'etching' +p5880 +sg8 +S'1859' +p5881 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aac9.jpg' +p5882 +sg12 +g27 +sa(dp5883 +g2 +S'Annie Haden' +p5884 +sg4 +S'James McNeill Whistler' +p5885 +sg6 +S'etching' +p5886 +sg8 +S'1860' +p5887 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab5e.jpg' +p5888 +sg12 +g27 +sa(dp5889 +g2 +S'Mr. Davis (Mr. Mann)' +p5890 +sg4 +S'James McNeill Whistler' +p5891 +sg6 +S'drypoint on laid paper' +p5892 +sg8 +S'1860' +p5893 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9b7.jpg' +p5894 +sg12 +g27 +sa(dp5895 +g2 +S'Rotherhithe' +p5896 +sg4 +S'James McNeill Whistler' +p5897 +sg6 +S'etching' +p5898 +sg8 +S'1860' +p5899 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bde.jpg' +p5900 +sg12 +g27 +sa(dp5901 +g2 +S'George Washington' +p5902 +sg4 +S'Rembrandt Peale' +p5903 +sg6 +S'oil on canvas' +p5904 +sg8 +S'c. 1850' +p5905 +sg10 +S'http://www.nga.gov:80/thumb-l/a00001/a00001a6.jpg' +p5906 +sg12 +g27 +sa(dp5907 +g2 +S'The Penny Boat' +p5908 +sg4 +S'James McNeill Whistler' +p5909 +sg6 +S'etching' +p5910 +sg8 +S'1859' +p5911 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9b3.jpg' +p5912 +sg12 +g27 +sa(dp5913 +g2 +S'The Forge' +p5914 +sg4 +S'James McNeill Whistler' +p5915 +sg6 +S'etching' +p5916 +sg8 +S'1861' +p5917 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bdf.jpg' +p5918 +sg12 +g27 +sa(dp5919 +g2 +S'The Miser' +p5920 +sg4 +S'James McNeill Whistler' +p5921 +sg6 +S'etching' +p5922 +sg8 +S'c. 1861' +p5923 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9b2.jpg' +p5924 +sg12 +g27 +sa(dp5925 +g2 +S'Little Wapping' +p5926 +sg4 +S'James McNeill Whistler' +p5927 +sg6 +S'etching' +p5928 +sg8 +S'1861' +p5929 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9ad.jpg' +p5930 +sg12 +g27 +sa(dp5931 +g2 +S'Little Wapping' +p5932 +sg4 +S'James McNeill Whistler' +p5933 +sg6 +S'etching' +p5934 +sg8 +S'1861' +p5935 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9ae.jpg' +p5936 +sg12 +g27 +sa(dp5937 +g2 +S'The Little Pool' +p5938 +sg4 +S'James McNeill Whistler' +p5939 +sg6 +S'etching' +p5940 +sg8 +S'1861' +p5941 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9b0.jpg' +p5942 +sg12 +g27 +sa(dp5943 +g2 +S'The Little Pool' +p5944 +sg4 +S'James McNeill Whistler' +p5945 +sg6 +S'etching' +p5946 +sg8 +S'1861' +p5947 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9af.jpg' +p5948 +sg12 +g27 +sa(dp5949 +g2 +S'Old Hungerford Bridge' +p5950 +sg4 +S'James McNeill Whistler' +p5951 +sg6 +S'etching' +p5952 +sg8 +S'1861' +p5953 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9b4.jpg' +p5954 +sg12 +g27 +sa(dp5955 +g2 +S"Jo's Bent Head" +p5956 +sg4 +S'James McNeill Whistler' +p5957 +sg6 +S'drypoint' +p5958 +sg8 +S'1861' +p5959 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9b5.jpg' +p5960 +sg12 +g27 +sa(dp5961 +g2 +S'The Punt' +p5962 +sg4 +S'James McNeill Whistler' +p5963 +sg6 +S'etching' +p5964 +sg8 +S'1861' +p5965 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9de.jpg' +p5966 +sg12 +g27 +sa(dp5967 +g2 +S'Portrait of a Gentleman' +p5968 +sg4 +S'George Knapton' +p5969 +sg6 +S', c. 1750/1755' +p5970 +sg8 +S'\n' +p5971 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f8d.jpg' +p5972 +sg12 +g27 +sa(dp5973 +g2 +S'Sketching, No.I' +p5974 +sg4 +S'James McNeill Whistler' +p5975 +sg6 +S'etching and drypoint' +p5976 +sg8 +S'1861' +p5977 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9df.jpg' +p5978 +sg12 +g27 +sa(dp5979 +g2 +S'Ross Winans' +p5980 +sg4 +S'James McNeill Whistler' +p5981 +sg6 +S'etching and drypoint' +p5982 +sg8 +S'1861' +p5983 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab61.jpg' +p5984 +sg12 +g27 +sa(dp5985 +g2 +S'Chelsea Wharf' +p5986 +sg4 +S'James McNeill Whistler' +p5987 +sg6 +S'etching in black on blued white laid paper' +p5988 +sg8 +S'1863' +p5989 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9dd.jpg' +p5990 +sg12 +g27 +sa(dp5991 +g2 +S'Amsterdam from the Tolhuis' +p5992 +sg4 +S'James McNeill Whistler' +p5993 +sg6 +S'etching' +p5994 +sg8 +S'1863' +p5995 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab65.jpg' +p5996 +sg12 +g27 +sa(dp5997 +g2 +S'Amsterdam from the Tolhuis' +p5998 +sg4 +S'James McNeill Whistler' +p5999 +sg6 +S'etching' +p6000 +sg8 +S'1863' +p6001 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9da.jpg' +p6002 +sg12 +g27 +sa(dp6003 +g2 +S'Weary' +p6004 +sg4 +S'James McNeill Whistler' +p6005 +sg6 +S'drypoint' +p6006 +sg8 +S'1863' +p6007 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000be0.jpg' +p6008 +sg12 +g27 +sa(dp6009 +g2 +S'Chelsea Bridge and Church' +p6010 +sg4 +S'James McNeill Whistler' +p6011 +sg6 +S'etching' +p6012 +sg8 +S'c. 1870/1871' +p6013 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9e3.jpg' +p6014 +sg12 +g27 +sa(dp6015 +g2 +S'Speke Hall, No.1' +p6016 +sg4 +S'James McNeill Whistler' +p6017 +sg6 +S'etching and drypoint' +p6018 +sg8 +S'1870' +p6019 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab63.jpg' +p6020 +sg12 +g27 +sa(dp6021 +g2 +S'The Swan, Chelsea' +p6022 +sg4 +S'James McNeill Whistler' +p6023 +sg6 +S'etching' +p6024 +sg8 +S'1872' +p6025 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9e4.jpg' +p6026 +sg12 +g27 +sa(dp6027 +g2 +S'The Model Resting' +p6028 +sg4 +S'James McNeill Whistler' +p6029 +sg6 +S'etching' +p6030 +sg8 +S'1870' +p6031 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9db.jpg' +p6032 +sg12 +g27 +sa(dp6033 +g2 +S'Jane Browne' +p6034 +sg4 +S'John Singleton Copley' +p6035 +sg6 +S'oil on canvas' +p6036 +sg8 +S'1756' +p6037 +sg10 +S'http://www.nga.gov:80/thumb-l/a00000/a000005b.jpg' +p6038 +sg12 +S'The eighteen-year-old Copley proudly signed and dated this picture \r\n “1756.” His sitter, Jane Browne (1734-1802), daughter of an Anglican \r\n minister from Portsmouth, New Hampshire, later married a judge, Samuel \r\n Livermore. The painted oval border and the subject’s elegant pose derive \r\n from engravings of English portraits. The awkward anatomy, however, \r\n indicates that Copley lacked formal training. Still, the young artist did \r\n carefully distinguish the textures of taffeta, lace, and beads. \n ' +p6039 +sa(dp6040 +g2 +S'The Model Resting' +p6041 +sg4 +S'James McNeill Whistler' +p6042 +sg6 +S'etching' +p6043 +sg8 +S'1870' +p6044 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab66.jpg' +p6045 +sg12 +g27 +sa(dp6046 +g2 +S'The Velvet Dress' +p6047 +sg4 +S'James McNeill Whistler' +p6048 +sg6 +S'drypoint in black on Japan paper' +p6049 +sg8 +S'1873' +p6050 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9d6.jpg' +p6051 +sg12 +g27 +sa(dp6052 +g2 +S'The Little Velvet Dress' +p6053 +sg4 +S'James McNeill Whistler' +p6054 +sg6 +S'etching' +p6055 +sg8 +S'1873' +p6056 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9e1.jpg' +p6057 +sg12 +g27 +sa(dp6058 +g2 +S'Fanny Leyland' +p6059 +sg4 +S'James McNeill Whistler' +p6060 +sg6 +S'drypoint' +p6061 +sg8 +S'1873' +p6062 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9dc.jpg' +p6063 +sg12 +g27 +sa(dp6064 +g2 +S'Elinor Leyland' +p6065 +sg4 +S'James McNeill Whistler' +p6066 +sg6 +S'drypoint' +p6067 +sg8 +S'1873' +p6068 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9d9.jpg' +p6069 +sg12 +g27 +sa(dp6070 +g2 +S'Tatting' +p6071 +sg4 +S'James McNeill Whistler' +p6072 +sg6 +S'etching on old japanes paper' +p6073 +sg8 +S'c. 1873' +p6074 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa41.jpg' +p6075 +sg12 +g27 +sa(dp6076 +g2 +S'The Muff' +p6077 +sg4 +S'James McNeill Whistler' +p6078 +sg6 +S'drypoint' +p6079 +sg8 +S'c. 1873' +p6080 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa40.jpg' +p6081 +sg12 +g27 +sa(dp6082 +g2 +S'Maud, Standing' +p6083 +sg4 +S'James McNeill Whistler' +p6084 +sg6 +S'etching and drypoint' +p6085 +sg8 +S'c. 1873' +p6086 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa44.jpg' +p6087 +sg12 +g27 +sa(dp6088 +g2 +S'Maud, Standing' +p6089 +sg4 +S'James McNeill Whistler' +p6090 +sg6 +S'etching and drypoint with white chalk' +p6091 +sg8 +S'c. 1873' +p6092 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000be1.jpg' +p6093 +sg12 +g27 +sa(dp6094 +g2 +S'The Boy' +p6095 +sg4 +S'James McNeill Whistler' +p6096 +sg6 +S'etching' +p6097 +sg8 +S'c. 1873/1875' +p6098 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab2d.jpg' +p6099 +sg12 +g27 +sa(dp6100 +g2 +S'Leslie Pease Barnum' +p6101 +sg4 +S'Frank Duveneck' +p6102 +sg6 +S'oil on canvas' +p6103 +sg8 +S'1876' +p6104 +sg10 +S'http://www.nga.gov:80/thumb-l/a00000/a000008a.jpg' +p6105 +sg12 +g27 +sa(dp6106 +g2 +S'The Boy' +p6107 +sg4 +S'James McNeill Whistler' +p6108 +sg6 +S'etching and drypoint' +p6109 +sg8 +S'c. 1873/1875' +p6110 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab2f.jpg' +p6111 +sg12 +g27 +sa(dp6112 +g2 +S'The Guitar Player' +p6113 +sg4 +S'James McNeill Whistler' +p6114 +sg6 +S'drypoint' +p6115 +sg8 +S'1875' +p6116 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab32.jpg' +p6117 +sg12 +g27 +sa(dp6118 +g2 +S'The Piano' +p6119 +sg4 +S'James McNeill Whistler' +p6120 +sg6 +S'drypoint' +p6121 +sg8 +S'1875' +p6122 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa49.jpg' +p6123 +sg12 +g27 +sa(dp6124 +g2 +S'Speke Shore' +p6125 +sg4 +S'James McNeill Whistler' +p6126 +sg6 +S'etching and drypoint' +p6127 +sg8 +S'c. 1875' +p6128 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa45.jpg' +p6129 +sg12 +g27 +sa(dp6130 +g2 +S'The Dam Wood' +p6131 +sg4 +S'James McNeill Whistler' +p6132 +sg6 +S'drypoint' +p6133 +sg8 +S'1875' +p6134 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa42.jpg' +p6135 +sg12 +g27 +sa(dp6136 +g2 +S'The Little Forge' +p6137 +sg4 +S'James McNeill Whistler' +p6138 +sg6 +S'drypoint' +p6139 +sg8 +S'1875' +p6140 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab31.jpg' +p6141 +sg12 +g27 +sa(dp6142 +g2 +S'The Little Forge' +p6143 +sg4 +S'James McNeill Whistler' +p6144 +sg6 +S'drypoint' +p6145 +sg8 +S'1875' +p6146 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa47.jpg' +p6147 +sg12 +g27 +sa(dp6148 +g2 +S'The Little Forge' +p6149 +sg4 +S'James McNeill Whistler' +p6150 +sg6 +S'drypoint' +p6151 +sg8 +S'1875' +p6152 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab2e.jpg' +p6153 +sg12 +g27 +sa(dp6154 +g2 +S'Two Ships' +p6155 +sg4 +S'James McNeill Whistler' +p6156 +sg6 +S'etching and drypoint' +p6157 +sg8 +S'1875' +p6158 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab2b.jpg' +p6159 +sg12 +g27 +sa(dp6160 +g2 +S'Steamboats off the Tower' +p6161 +sg4 +S'James McNeill Whistler' +p6162 +sg6 +S'etching' +p6163 +sg8 +S'1875' +p6164 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab3a.jpg' +p6165 +sg12 +g27 +sa(dp6166 +g2 +S'William Gedney Bunce' +p6167 +sg4 +S'Frank Duveneck' +p6168 +sg6 +S'oil on canvas' +p6169 +sg8 +S'c. 1877-1878' +p6170 +sg10 +S'http://www.nga.gov:80/thumb-l/a00000/a000008b.jpg' +p6171 +sg12 +g27 +sa(dp6172 +g2 +S'Steamboats off the Tower' +p6173 +sg4 +S'James McNeill Whistler' +p6174 +sg6 +S'etching' +p6175 +sg8 +S'1875' +p6176 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab3b.jpg' +p6177 +sg12 +g27 +sa(dp6178 +g2 +S'The White Tower' +p6179 +sg4 +S'James McNeill Whistler' +p6180 +sg6 +S'etching' +p6181 +sg8 +S'c. 1875' +p6182 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa43.jpg' +p6183 +sg12 +g27 +sa(dp6184 +g2 +S'London Bridge' +p6185 +sg4 +S'James McNeill Whistler' +p6186 +sg6 +S'etching' +p6187 +sg8 +S'c. 1875' +p6188 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa48.jpg' +p6189 +sg12 +g27 +sa(dp6190 +g2 +S"Price's Candle-Works" +p6191 +sg4 +S'James McNeill Whistler' +p6192 +sg6 +S'etching in black ink on laid paper' +p6193 +sg8 +S'c. 1875' +p6194 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa15.jpg' +p6195 +sg12 +g27 +sa(dp6196 +g2 +S"Price's Candle-Works" +p6197 +sg4 +S'James McNeill Whistler' +p6198 +sg6 +S'etching' +p6199 +sg8 +S'c. 1875' +p6200 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa14.jpg' +p6201 +sg12 +g27 +sa(dp6202 +g2 +S"Price's Candle-Works" +p6203 +sg4 +S'James McNeill Whistler' +p6204 +sg6 +S'etching' +p6205 +sg8 +S'c. 1875' +p6206 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa12.jpg' +p6207 +sg12 +g27 +sa(dp6208 +g2 +S'Battersea: Dawn' +p6209 +sg4 +S'James McNeill Whistler' +p6210 +sg6 +S'etching' +p6211 +sg8 +S'1875' +p6212 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa18.jpg' +p6213 +sg12 +g27 +sa(dp6214 +g2 +S'Battersea: Dawn' +p6215 +sg4 +S'James McNeill Whistler' +p6216 +sg6 +S'etching' +p6217 +sg8 +S'1875' +p6218 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa16.jpg' +p6219 +sg12 +g27 +sa(dp6220 +g2 +S'Fishing-Boats, Hastings' +p6221 +sg4 +S'James McNeill Whistler' +p6222 +sg6 +S'etching' +p6223 +sg8 +S'1877' +p6224 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab38.jpg' +p6225 +sg12 +g27 +sa(dp6226 +g2 +S'Wych Street' +p6227 +sg4 +S'James McNeill Whistler' +p6228 +sg6 +S'etching and drypoint' +p6229 +sg8 +S'1877' +p6230 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa13.jpg' +p6231 +sg12 +g27 +sa(dp6232 +g2 +S'Portrait of a Lady' +p6233 +sg4 +S'Joseph Highmore' +p6234 +sg6 +S'oil on canvas' +p6235 +sg8 +S'c. 1730/1735' +p6236 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f3f.jpg' +p6237 +sg12 +g27 +sa(dp6238 +g2 +S'Wych Street' +p6239 +sg4 +S'James McNeill Whistler' +p6240 +sg6 +S'etching and drypoint' +p6241 +sg8 +S'1877' +p6242 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa1a.jpg' +p6243 +sg12 +g27 +sa(dp6244 +g2 +S'Little Smithfield' +p6245 +sg4 +S'James McNeill Whistler' +p6246 +sg6 +S'etching' +p6247 +sg8 +S'c. 1877' +p6248 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab3e.jpg' +p6249 +sg12 +g27 +sa(dp6250 +g2 +S'Temple Bar' +p6251 +sg4 +S'James McNeill Whistler' +p6252 +sg6 +S'etching' +p6253 +sg8 +S'c. 1877' +p6254 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab3c.jpg' +p6255 +sg12 +g27 +sa(dp6256 +g2 +S'Free Trade Wharf' +p6257 +sg4 +S'James McNeill Whistler' +p6258 +sg6 +S'etching' +p6259 +sg8 +S'1877' +p6260 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa1c.jpg' +p6261 +sg12 +g27 +sa(dp6262 +g2 +S'Lord Wolseley' +p6263 +sg4 +S'James McNeill Whistler' +p6264 +sg6 +S'etching' +p6265 +sg8 +S'c. 1877' +p6266 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab34.jpg' +p6267 +sg12 +g27 +sa(dp6268 +g2 +S'The Thames Towards Erith' +p6269 +sg4 +S'James McNeill Whistler' +p6270 +sg6 +S'etching' +p6271 +sg8 +S'c. 1877' +p6272 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa19.jpg' +p6273 +sg12 +g27 +sa(dp6274 +g2 +S'The Thames Towards Erith' +p6275 +sg4 +S'James McNeill Whistler' +p6276 +sg6 +S'etching' +p6277 +sg8 +S'c. 1877' +p6278 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa1b.jpg' +p6279 +sg12 +g27 +sa(dp6280 +g2 +S'Lindsey Houses' +p6281 +sg4 +S'James McNeill Whistler' +p6282 +sg6 +S'drypoint' +p6283 +sg8 +S'1877' +p6284 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa17.jpg' +p6285 +sg12 +g27 +sa(dp6286 +g2 +S'From Pickle-Herring Stairs' +p6287 +sg4 +S'James McNeill Whistler' +p6288 +sg6 +S'etching and drypoint' +p6289 +sg8 +S'c. 1878' +p6290 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9f4.jpg' +p6291 +sg12 +g27 +sa(dp6292 +g2 +S'From Pickle-Herring Stairs' +p6293 +sg4 +S'James McNeill Whistler' +p6294 +sg6 +S'etching and drypoint' +p6295 +sg8 +S'c. 1878' +p6296 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab39.jpg' +p6297 +sg12 +g27 +sa(dp6298 +g2 +S'Madonna and Child with Angels and Cherubim' +p6299 +sg4 +S'Matteo di Giovanni' +p6300 +sg6 +S'tempera (?) on panel' +p6301 +sg8 +S'c. 1460/1465' +p6302 +sg10 +S'http://www.nga.gov:80/thumb-l/a00007/a000077c.jpg' +p6303 +sg12 +S"This panel painted early in the career of Matteo di Giovanni reflects the format of devotional images made popular in Siena by \n Like Sano's panel, \n Matteo was not born in Siena but probably received most of his training there. His later works also reveal a familiarity with Florentine artists such as \n " +p6304 +sa(dp6305 +g2 +S'John Tait and His Grandson' +p6306 +sg4 +S'Sir Henry Raeburn' +p6307 +sg6 +S'oil on canvas' +p6308 +sg8 +S'c. 1793, with additions c. 1800' +p6309 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a000057a.jpg' +p6310 +sg12 +g27 +sa(dp6311 +g2 +S'Augustus Fielding Hawkins' +p6312 +sg4 +S'Matthew Harris Jouett' +p6313 +sg6 +S'oil on wood' +p6314 +sg8 +S'c. 1820' +p6315 +sg10 +S'http://www.nga.gov:80/thumb-l/a00001/a0000127.jpg' +p6316 +sg12 +g27 +sa(dp6317 +g2 +S'A Sketch from Billingsgate' +p6318 +sg4 +S'James McNeill Whistler' +p6319 +sg6 +S'drypoint in black on laid paper' +p6320 +sg8 +S'1878' +p6321 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9f3.jpg' +p6322 +sg12 +g27 +sa(dp6323 +g2 +S'A Sketch from Billingsgate' +p6324 +sg4 +S'James McNeill Whistler' +p6325 +sg6 +S'drypoint' +p6326 +sg8 +S'1878' +p6327 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9f5.jpg' +p6328 +sg12 +g27 +sa(dp6329 +g2 +S'Whistler with the White Lock' +p6330 +sg4 +S'James McNeill Whistler' +p6331 +sg6 +S'etching' +p6332 +sg8 +S'1879' +p6333 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9f9.jpg' +p6334 +sg12 +g27 +sa(dp6335 +g2 +S'Whistler with the White Lock' +p6336 +sg4 +S'James McNeill Whistler' +p6337 +sg6 +S'etching' +p6338 +sg8 +S'1879' +p6339 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9f8.jpg' +p6340 +sg12 +g27 +sa(dp6341 +g2 +S'The Large Pool' +p6342 +sg4 +S'James McNeill Whistler' +p6343 +sg6 +S'etching' +p6344 +sg8 +S'c. 1879' +p6345 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab35.jpg' +p6346 +sg12 +g27 +sa(dp6347 +g2 +S'The "Adam and Eve," Old Chelsea' +p6348 +sg4 +S'James McNeill Whistler' +p6349 +sg6 +S'etching and drypoint' +p6350 +sg8 +S'1879' +p6351 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab6d.jpg' +p6352 +sg12 +g27 +sa(dp6353 +g2 +S'The "Adam and Eve," Old Chelsea' +p6354 +sg4 +S'James McNeill Whistler' +p6355 +sg6 +S'etching and drypoint' +p6356 +sg8 +S'1879' +p6357 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000be2.jpg' +p6358 +sg12 +g27 +sa(dp6359 +g2 +S'Under Old Battersea Bridge' +p6360 +sg4 +S'James McNeill Whistler' +p6361 +sg6 +S'etching and drypoint' +p6362 +sg8 +S'1879' +p6363 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab67.jpg' +p6364 +sg12 +g27 +sa(dp6365 +g2 +S'Old Battersea Bridge' +p6366 +sg4 +S'James McNeill Whistler' +p6367 +sg6 +S'etching' +p6368 +sg8 +S'1879' +p6369 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab6e.jpg' +p6370 +sg12 +g27 +sa(dp6371 +g2 +S'An Artist and His Family' +p6372 +sg4 +S'German 19th Century' +p6373 +sg6 +S'overall: 75 x 63.5 cm (29 1/2 x 25 in.)\r\nframed: 97.2 x 85.7 x 7.6 cm (38 1/4 x 33 3/4 x 3 in.)' +p6374 +sg8 +S'\noil on canvas' +p6375 +sg10 +S'http://www.nga.gov:80/thumb-l/a00004/a00004c7.jpg' +p6376 +sg12 +g27 +sa(dp6377 +g2 +S'Old Putney Bridge' +p6378 +sg4 +S'James McNeill Whistler' +p6379 +sg6 +S'etching' +p6380 +sg8 +S'1879' +p6381 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000be3.jpg' +p6382 +sg12 +g27 +sa(dp6383 +g2 +S'The Little Putney, No.II' +p6384 +sg4 +S'James McNeill Whistler' +p6385 +sg6 +S'etching' +p6386 +sg8 +S'1879' +p6387 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9f2.jpg' +p6388 +sg12 +g27 +sa(dp6389 +g2 +S'Fulham' +p6390 +sg4 +S'James McNeill Whistler' +p6391 +sg6 +S'etching' +p6392 +sg8 +S'1879' +p6393 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9f7.jpg' +p6394 +sg12 +g27 +sa(dp6395 +g2 +S'Little Venice' +p6396 +sg4 +S'James McNeill Whistler' +p6397 +sg6 +S'etching' +p6398 +sg8 +S'1880' +p6399 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab68.jpg' +p6400 +sg12 +g27 +sa(dp6401 +g2 +S'Nocturne' +p6402 +sg4 +S'James McNeill Whistler' +p6403 +sg6 +S'etching in brownish-black ink' +p6404 +sg8 +S'1879/1880' +p6405 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000be4.jpg' +p6406 +sg12 +g27 +sa(dp6407 +g2 +S'Nocturne' +p6408 +sg4 +S'James McNeill Whistler' +p6409 +sg6 +S'etching and drypoint in dark brown on off-white laid paper' +p6410 +sg8 +S'1879/1880' +p6411 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab6a.jpg' +p6412 +sg12 +g27 +sa(dp6413 +g2 +S'The Little Mast' +p6414 +sg4 +S'James McNeill Whistler' +p6415 +sg6 +S'etching' +p6416 +sg8 +S'1880' +p6417 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab3f.jpg' +p6418 +sg12 +g27 +sa(dp6419 +g2 +S'The Little Lagoon' +p6420 +sg4 +S'James McNeill Whistler' +p6421 +sg6 +S'etching' +p6422 +sg8 +S'1879/1880' +p6423 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9f0.jpg' +p6424 +sg12 +g27 +sa(dp6425 +g2 +S'The Palaces' +p6426 +sg4 +S'James McNeill Whistler' +p6427 +sg6 +S'etching and drypoint' +p6428 +sg8 +S'1880' +p6429 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bae.jpg' +p6430 +sg12 +g27 +sa(dp6431 +g2 +S'The Piazzetta' +p6432 +sg4 +S'James McNeill Whistler' +p6433 +sg6 +S'etching and drypoint' +p6434 +sg8 +S'1880' +p6435 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9ef.jpg' +p6436 +sg12 +g27 +sa(dp6437 +g2 +S'Portrait of a Man' +p6438 +sg4 +S'American 19th Century' +p6439 +sg6 +S'overall: 76.9 x 63.2 cm (30 1/4 x 24 7/8 in.)\r\nframed: 99.7 x 87.3 x 10.2 cm (39 1/4 x 34 3/8 x 4 in.)' +p6440 +sg8 +S'\noil on canvas' +p6441 +sg10 +S'http://www.nga.gov:80/thumb-l/a00004/a000045d.jpg' +p6442 +sg12 +g27 +sa(dp6443 +g2 +S'The Traghetto, No.II' +p6444 +sg4 +S'James McNeill Whistler' +p6445 +sg6 +S'etching and drypoint' +p6446 +sg8 +S'c. 1879/1880' +p6447 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab45.jpg' +p6448 +sg12 +g27 +sa(dp6449 +g2 +S'The Riva, No.I' +p6450 +sg4 +S'James McNeill Whistler' +p6451 +sg6 +S'etching' +p6452 +sg8 +S'1879/1880' +p6453 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab44.jpg' +p6454 +sg12 +g27 +sa(dp6455 +g2 +S'Two Doorways' +p6456 +sg4 +S'James McNeill Whistler' +p6457 +sg6 +S'etching in brownish-black ink' +p6458 +sg8 +S'c. 1879/1880' +p6459 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab51.jpg' +p6460 +sg12 +g27 +sa(dp6461 +g2 +S'Two Doorways' +p6462 +sg4 +S'James McNeill Whistler' +p6463 +sg6 +S'etching in brownish-black ink' +p6464 +sg8 +S'1880' +p6465 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000baf.jpg' +p6466 +sg12 +g27 +sa(dp6467 +g2 +S'The Beggars' +p6468 +sg4 +S'James McNeill Whistler' +p6469 +sg6 +S'etching' +p6470 +sg8 +S'1879/1880' +p6471 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab4f.jpg' +p6472 +sg12 +g27 +sa(dp6473 +g2 +S'The Beggars' +p6474 +sg4 +S'James McNeill Whistler' +p6475 +sg6 +S'etching' +p6476 +sg8 +S'1879/1880' +p6477 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab4e.jpg' +p6478 +sg12 +g27 +sa(dp6479 +g2 +S'The Mast' +p6480 +sg4 +S'James McNeill Whistler' +p6481 +sg6 +S'etching and drypoint' +p6482 +sg8 +S'1879/1880' +p6483 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab4a.jpg' +p6484 +sg12 +g27 +sa(dp6485 +g2 +S'Bead-Stringers' +p6486 +sg4 +S'James McNeill Whistler' +p6487 +sg6 +S'etching' +p6488 +sg8 +S'1879/1880' +p6489 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa01.jpg' +p6490 +sg12 +g27 +sa(dp6491 +g2 +S'Turkeys' +p6492 +sg4 +S'James McNeill Whistler' +p6493 +sg6 +S'etching and drypoint' +p6494 +sg8 +S'1880' +p6495 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9fc.jpg' +p6496 +sg12 +g27 +sa(dp6497 +g2 +S'Fruit-Stall' +p6498 +sg4 +S'James McNeill Whistler' +p6499 +sg6 +S'etching and drypoint' +p6500 +sg8 +S'1880' +p6501 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9fd.jpg' +p6502 +sg12 +g27 +sa(dp6503 +g2 +S'John Philip de Haas' +p6504 +sg4 +S'Charles Willson Peale' +p6505 +sg6 +S'oil on canvas' +p6506 +sg8 +S'1772' +p6507 +sg10 +S'http://www.nga.gov:80/thumb-l/a00001/a00001a2.jpg' +p6508 +sg12 +g27 +sa(dp6509 +g2 +S'San Giorgio' +p6510 +sg4 +S'James McNeill Whistler' +p6511 +sg6 +S'etching' +p6512 +sg8 +S'1880' +p6513 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab5b.jpg' +p6514 +sg12 +g27 +sa(dp6515 +g2 +S'Nocturne: Palaces' +p6516 +sg4 +S'James McNeill Whistler' +p6517 +sg6 +S'etching and drypoint in brownish-black ink' +p6518 +sg8 +S'1879/1880' +p6519 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab57.jpg' +p6520 +sg12 +g27 +sa(dp6521 +g2 +S'Long Lagoon' +p6522 +sg4 +S'James McNeill Whistler' +p6523 +sg6 +S'etching and drypoint' +p6524 +sg8 +S'1880' +p6525 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9ff.jpg' +p6526 +sg12 +g27 +sa(dp6527 +g2 +S'Long Lagoon' +p6528 +sg4 +S'James McNeill Whistler' +p6529 +sg6 +S'etching and drypoint' +p6530 +sg8 +S'1880' +p6531 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bb0.jpg' +p6532 +sg12 +g27 +sa(dp6533 +g2 +S'The Bridge' +p6534 +sg4 +S'James McNeill Whistler' +p6535 +sg6 +S'etching' +p6536 +sg8 +S'1879/1880' +p6537 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab56.jpg' +p6538 +sg12 +g27 +sa(dp6539 +g2 +S'The Bridge' +p6540 +sg4 +S'James McNeill Whistler' +p6541 +sg6 +S'etching' +p6542 +sg8 +S'1879/1880' +p6543 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b50a.jpg' +p6544 +sg12 +g27 +sa(dp6545 +g2 +S'Upright Venice' +p6546 +sg4 +S'James McNeill Whistler' +p6547 +sg6 +S'etching' +p6548 +sg8 +S'1880' +p6549 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab53.jpg' +p6550 +sg12 +g27 +sa(dp6551 +g2 +S'Upright Venice' +p6552 +sg4 +S'James McNeill Whistler' +p6553 +sg6 +S'etching' +p6554 +sg8 +S'1880' +p6555 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab54.jpg' +p6556 +sg12 +g27 +sa(dp6557 +g2 +S'The Riva, No.II' +p6558 +sg4 +S'James McNeill Whistler' +p6559 +sg6 +S'etching and drypoint' +p6560 +sg8 +S'1880' +p6561 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab5a.jpg' +p6562 +sg12 +g27 +sa(dp6563 +g2 +S'The Balcony' +p6564 +sg4 +S'James McNeill Whistler' +p6565 +sg6 +S'etching' +p6566 +sg8 +S'1879/1880' +p6567 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab9b.jpg' +p6568 +sg12 +g27 +sa(dp6569 +g2 +S'The Return of Rip Van Winkle' +p6570 +sg4 +S'John Quidor' +p6571 +sg6 +S'oil on canvas' +p6572 +sg8 +S'1849' +p6573 +sg10 +S'http://www.nga.gov:80/thumb-l/a00001/a00001d8.jpg' +p6574 +sg12 +S"Washington Irving's \n Quidor's painting is a perfect pantomime to the climax of Irving's story, as Rip\ndiscovers -- to his bewilderment -- that he has a son and grandson, both namesakes.\nThe scene is animated by thick strokes of pure white paint, phantom highlights within\nthe golden, dreamlike haze. Quidor's obsession with depicting Rip Van Winkle has\nbeen interpreted as indicative of the artist's own search for acceptance. Although\nQuidor spent four years training under a society portraitist and occasionally exhibited\npictures of literary themes at the National Academy of Design, he had to earn his\nliving by painting signs and decorating fire engines.\n " +p6575 +sa(dp6576 +g2 +S'Fishing-Boat' +p6577 +sg4 +S'James McNeill Whistler' +p6578 +sg6 +S'etching and drypoint' +p6579 +sg8 +S'1880' +p6580 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa02.jpg' +p6581 +sg12 +g27 +sa(dp6582 +g2 +S'Ponte del Piovan' +p6583 +sg4 +S'James McNeill Whistler' +p6584 +sg6 +S'etching and drypoint' +p6585 +sg8 +S'1880' +p6586 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa22.jpg' +p6587 +sg12 +g27 +sa(dp6588 +g2 +S'Garden' +p6589 +sg4 +S'James McNeill Whistler' +p6590 +sg6 +S'etching and drypoint' +p6591 +sg8 +S'1880' +p6592 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab96.jpg' +p6593 +sg12 +g27 +sa(dp6594 +g2 +S'The Rialto' +p6595 +sg4 +S'James McNeill Whistler' +p6596 +sg6 +S'etching and drypoint' +p6597 +sg8 +S'1880' +p6598 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab9c.jpg' +p6599 +sg12 +g27 +sa(dp6600 +g2 +S'The Rialto' +p6601 +sg4 +S'James McNeill Whistler' +p6602 +sg6 +S'etching and drypoint' +p6603 +sg8 +S'1880' +p6604 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab9a.jpg' +p6605 +sg12 +g27 +sa(dp6606 +g2 +S'Long Venice' +p6607 +sg4 +S'James McNeill Whistler' +p6608 +sg6 +S'etching' +p6609 +sg8 +S'1879/1880' +p6610 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b50b.jpg' +p6611 +sg12 +g27 +sa(dp6612 +g2 +S'Nocturne: Furnace' +p6613 +sg4 +S'James McNeill Whistler' +p6614 +sg6 +S'etching and drypoint' +p6615 +sg8 +S'1880' +p6616 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa1f.jpg' +p6617 +sg12 +g27 +sa(dp6618 +g2 +S'Quiet Canal' +p6619 +sg4 +S'James McNeill Whistler' +p6620 +sg6 +S'etching and drypoint' +p6621 +sg8 +S'1880' +p6622 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa21.jpg' +p6623 +sg12 +g27 +sa(dp6624 +g2 +S'La Salute: Dawn' +p6625 +sg4 +S'James McNeill Whistler' +p6626 +sg6 +S'etching' +p6627 +sg8 +S'1879/1880' +p6628 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa29.jpg' +p6629 +sg12 +g27 +sa(dp6630 +g2 +S'Lagoon: Noon' +p6631 +sg4 +S'James McNeill Whistler' +p6632 +sg6 +S'etching' +p6633 +sg8 +S'1879/1880' +p6634 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa27.jpg' +p6635 +sg12 +g27 +sa(dp6636 +g2 +S'Captain Joseph Anthony' +p6637 +sg4 +S'Gilbert Stuart' +p6638 +sg6 +S'oil on canvas' +p6639 +sg8 +S'1794' +p6640 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a0000235.jpg' +p6641 +sg12 +g27 +sa(dp6642 +g2 +S'Fish-Shop, Venice' +p6643 +sg4 +S'James McNeill Whistler' +p6644 +sg6 +S'etching and drypoint' +p6645 +sg8 +S'1880' +p6646 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa25.jpg' +p6647 +sg12 +g27 +sa(dp6648 +g2 +S'Little Salute' +p6649 +sg4 +S'James McNeill Whistler' +p6650 +sg6 +S'drypoint' +p6651 +sg8 +S'1879/1880' +p6652 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa28.jpg' +p6653 +sg12 +g27 +sa(dp6654 +g2 +S'Old Women' +p6655 +sg4 +S'James McNeill Whistler' +p6656 +sg6 +S'etching' +p6657 +sg8 +S'1879/1880' +p6658 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b50c.jpg' +p6659 +sg12 +g27 +sa(dp6660 +g2 +S'Wheelwright' +p6661 +sg4 +S'James McNeill Whistler' +p6662 +sg6 +S'etching' +p6663 +sg8 +S'1879/1880' +p6664 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa50.jpg' +p6665 +sg12 +g27 +sa(dp6666 +g2 +S'Temple' +p6667 +sg4 +S'James McNeill Whistler' +p6668 +sg6 +S'etching' +p6669 +sg8 +S'c. 1880/1881' +p6670 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa51.jpg' +p6671 +sg12 +g27 +sa(dp6672 +g2 +S'Lobster-Pots' +p6673 +sg4 +S'James McNeill Whistler' +p6674 +sg6 +S'etching' +p6675 +sg8 +S'c. 1880/1881' +p6676 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa4c.jpg' +p6677 +sg12 +g27 +sa(dp6678 +g2 +S'Lobster-Pots' +p6679 +sg4 +S'James McNeill Whistler' +p6680 +sg6 +S'etching' +p6681 +sg8 +S'c. 1880/1881' +p6682 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa4a.jpg' +p6683 +sg12 +g27 +sa(dp6684 +g2 +S'Little Court' +p6685 +sg4 +S'James McNeill Whistler' +p6686 +sg6 +S'etching' +p6687 +sg8 +S'c. 1880/1881' +p6688 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa4f.jpg' +p6689 +sg12 +g27 +sa(dp6690 +g2 +S'Drury Lane' +p6691 +sg4 +S'James McNeill Whistler' +p6692 +sg6 +S'etching' +p6693 +sg8 +S'c. 1880/1881' +p6694 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa3c.jpg' +p6695 +sg12 +g27 +sa(dp6696 +g2 +S'John Ashe' +p6697 +sg4 +S'Gilbert Stuart' +p6698 +sg6 +S', c. 1793/1794' +p6699 +sg8 +S'\n' +p6700 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a0000275.jpg' +p6701 +sg12 +g27 +sa(dp6702 +g2 +S"Regent's Quadrant" +p6703 +sg4 +S'James McNeill Whistler' +p6704 +sg6 +S'etching' +p6705 +sg8 +S'1880/1881' +p6706 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa38.jpg' +p6707 +sg12 +g27 +sa(dp6708 +g2 +S"Regent's Quadrant" +p6709 +sg4 +S'James McNeill Whistler' +p6710 +sg6 +S'etching' +p6711 +sg8 +S'1880/1881' +p6712 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa39.jpg' +p6713 +sg12 +g27 +sa(dp6714 +g2 +S'The Smithy' +p6715 +sg4 +S'James McNeill Whistler' +p6716 +sg6 +S'etching and drypoint' +p6717 +sg8 +S'c. 1880' +p6718 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bb1.jpg' +p6719 +sg12 +g27 +sa(dp6720 +g2 +S'The Smithy' +p6721 +sg4 +S'James McNeill Whistler' +p6722 +sg6 +S'etching and drypoint' +p6723 +sg8 +S'c. 1880' +p6724 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa36.jpg' +p6725 +sg12 +g27 +sa(dp6726 +g2 +S'Dordrecht' +p6727 +sg4 +S'James McNeill Whistler' +p6728 +sg6 +S'etching' +p6729 +sg8 +S'1884' +p6730 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa37.jpg' +p6731 +sg12 +g27 +sa(dp6732 +g2 +S'Boats, Dordrecht' +p6733 +sg4 +S'James McNeill Whistler' +p6734 +sg6 +S'etching' +p6735 +sg8 +S'1884' +p6736 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa3f.jpg' +p6737 +sg12 +g27 +sa(dp6738 +g2 +S'Cottage Door' +p6739 +sg4 +S'James McNeill Whistler' +p6740 +sg6 +S'etching' +p6741 +sg8 +S'c. 1884/1886' +p6742 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa0e.jpg' +p6743 +sg12 +g27 +sa(dp6744 +g2 +S'The Village Sweet-Shop' +p6745 +sg4 +S'James McNeill Whistler' +p6746 +sg6 +S'etching and drypoint' +p6747 +sg8 +S'1887' +p6748 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bb2.jpg' +p6749 +sg12 +g27 +sa(dp6750 +g2 +S'The Seamstress' +p6751 +sg4 +S'James McNeill Whistler' +p6752 +sg6 +S'etching' +p6753 +sg8 +S'c. 1884/1886' +p6754 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa0d.jpg' +p6755 +sg12 +g27 +sa(dp6756 +g2 +S'The Towing-Path' +p6757 +sg4 +S'James McNeill Whistler' +p6758 +sg6 +S'etching' +p6759 +sg8 +S'unknown date\n' +p6760 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa10.jpg' +p6761 +sg12 +g27 +sa(dp6762 +g2 +S'Matilda Caroline Cruger' +p6763 +sg4 +S'American 18th Century' +p6764 +sg6 +S'overall: 91.7 x 71.6 cm (36 1/8 x 28 3/16 in.)\r\nframed: 123.2 x 102.2 x 7 cm (48 1/2 x 40 1/4 x 2 3/4 in.)' +p6765 +sg8 +S'\noil on canvas' +p6766 +sg10 +S'http://www.nga.gov:80/thumb-l/a00066/a00066ec.jpg' +p6767 +sg12 +g27 +sa(dp6768 +g2 +S"Saint James's Park" +p6769 +sg4 +S'James McNeill Whistler' +p6770 +sg6 +S'etching' +p6771 +sg8 +S'c. 1884/1886' +p6772 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa0b.jpg' +p6773 +sg12 +g27 +sa(dp6774 +g2 +S'Old-Clothes Shop, No.I' +p6775 +sg4 +S'James McNeill Whistler' +p6776 +sg6 +S'etching' +p6777 +sg8 +S'c. 1884/1886' +p6778 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa0c.jpg' +p6779 +sg12 +g27 +sa(dp6780 +g2 +S'Old-Clothes Shop, No.II' +p6781 +sg4 +S'James McNeill Whistler' +p6782 +sg6 +S'etching' +p6783 +sg8 +S'c. 1884/1886' +p6784 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa06.jpg' +p6785 +sg12 +g27 +sa(dp6786 +g2 +S'A Sketch on the Embankment' +p6787 +sg4 +S'James McNeill Whistler' +p6788 +sg6 +S'etching' +p6789 +sg8 +S'c. 1884/1886' +p6790 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa0a.jpg' +p6791 +sg12 +g27 +sa(dp6792 +g2 +S'Little Steps, Chelsea' +p6793 +sg4 +S'James McNeill Whistler' +p6794 +sg6 +S'etching' +p6795 +sg8 +S'c. 1884/1886' +p6796 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa2a.jpg' +p6797 +sg12 +g27 +sa(dp6798 +g2 +S"T.A. Nash's Fruit-Shop" +p6799 +sg4 +S'James McNeill Whistler' +p6800 +sg6 +S'etching' +p6801 +sg8 +S'c. 1886' +p6802 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa2d.jpg' +p6803 +sg12 +g27 +sa(dp6804 +g2 +S'The Fish-Shop, Busy Chelsea' +p6805 +sg4 +S'James McNeill Whistler' +p6806 +sg6 +S'etching' +p6807 +sg8 +S'1887' +p6808 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa31.jpg' +p6809 +sg12 +g27 +sa(dp6810 +g2 +S"Woods's Fruit Shop" +p6811 +sg4 +S'James McNeill Whistler' +p6812 +sg6 +S'etching in brown on laid paper' +p6813 +sg8 +S'c. 1886/1888' +p6814 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa2b.jpg' +p6815 +sg12 +g27 +sa(dp6816 +g2 +S'York Street, Westminster' +p6817 +sg4 +S'James McNeill Whistler' +p6818 +sg6 +S'etching' +p6819 +sg8 +S'c. 1886/1888' +p6820 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa30.jpg' +p6821 +sg12 +g27 +sa(dp6822 +g2 +S"The Barber's" +p6823 +sg4 +S'James McNeill Whistler' +p6824 +sg6 +S'etching' +p6825 +sg8 +S'c. 1886/1888' +p6826 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa34.jpg' +p6827 +sg12 +g27 +sa(dp6828 +g2 +S'Counsellor John Dunn' +p6829 +sg4 +S'Gilbert Stuart' +p6830 +sg6 +S'oil on canvas' +p6831 +sg8 +S'c. 1798' +p6832 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a0000239.jpg' +p6833 +sg12 +g27 +sa(dp6834 +g2 +S"Rag-Shop, Milman's Row" +p6835 +sg4 +S'James McNeill Whistler' +p6836 +sg6 +S'etching' +p6837 +sg8 +S'c. 1886/1888' +p6838 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa33.jpg' +p6839 +sg12 +g27 +sa(dp6840 +g2 +S'Justice Walk - Chelsea' +p6841 +sg4 +S'James McNeill Whistler' +p6842 +sg6 +S'etching' +p6843 +sg8 +S'c. 1886/1888' +p6844 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa35.jpg' +p6845 +sg12 +g27 +sa(dp6846 +g2 +S'Bird-Cages Chelsea' +p6847 +sg4 +S'James McNeill Whistler' +p6848 +sg6 +S'etching' +p6849 +sg8 +S'c. 1886/1888' +p6850 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa62.jpg' +p6851 +sg12 +g27 +sa(dp6852 +g2 +S'Exeter Street' +p6853 +sg4 +S'James McNeill Whistler' +p6854 +sg6 +S'etching' +p6855 +sg8 +S'c. 1886/1888' +p6856 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa64.jpg' +p6857 +sg12 +g27 +sa(dp6858 +g2 +S'Bird-Cages, Drury Lane' +p6859 +sg4 +S'James McNeill Whistler' +p6860 +sg6 +S'etching' +p6861 +sg8 +S'c. 1886/1888' +p6862 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa67.jpg' +p6863 +sg12 +g27 +sa(dp6864 +g2 +S'Marbles' +p6865 +sg4 +S'James McNeill Whistler' +p6866 +sg6 +S'etching and drypoint' +p6867 +sg8 +S'c. 1887' +p6868 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa68.jpg' +p6869 +sg12 +g27 +sa(dp6870 +g2 +S'Petticoat Lane' +p6871 +sg4 +S'James McNeill Whistler' +p6872 +sg6 +S'etching' +p6873 +sg8 +S'c. 1886/1888' +p6874 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa69.jpg' +p6875 +sg12 +g27 +sa(dp6876 +g2 +S'Clothes Exchange, No.I' +p6877 +sg4 +S'James McNeill Whistler' +p6878 +sg6 +S'etching' +p6879 +sg8 +S'1887' +p6880 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa61.jpg' +p6881 +sg12 +g27 +sa(dp6882 +g2 +S'Clothes Exchange, No.I' +p6883 +sg4 +S'James McNeill Whistler' +p6884 +sg6 +S'etching' +p6885 +sg8 +S'1887' +p6886 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa60.jpg' +p6887 +sg12 +g27 +sa(dp6888 +g2 +S'Clothes Exchange, No.II' +p6889 +sg4 +S'James McNeill Whistler' +p6890 +sg6 +S'etching' +p6891 +sg8 +S'c. 1886/1888' +p6892 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa63.jpg' +p6893 +sg12 +g27 +sa(dp6894 +g2 +S'Mrs. William Hartigan' +p6895 +sg4 +S'Carl Fredrik von Breda' +p6896 +sg6 +S'oil on canvas' +p6897 +sg8 +S'1787/1796' +p6898 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e95.jpg' +p6899 +sg12 +g27 +sa(dp6900 +g2 +S'Fleur de Lys Passage' +p6901 +sg4 +S'James McNeill Whistler' +p6902 +sg6 +S'etching' +p6903 +sg8 +S'c. 1886/1888' +p6904 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa65.jpg' +p6905 +sg12 +g27 +sa(dp6906 +g2 +S"Saint James's Place, Hounsditch" +p6907 +sg4 +S'James McNeill Whistler' +p6908 +sg6 +S'etching' +p6909 +sg8 +S'c. 1886/1888' +p6910 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa66.jpg' +p6911 +sg12 +g27 +sa(dp6912 +g2 +S'Cutler Street, Hounsditch' +p6913 +sg4 +S'James McNeill Whistler' +p6914 +sg6 +S'etching' +p6915 +sg8 +S'1887' +p6916 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa72.jpg' +p6917 +sg12 +g27 +sa(dp6918 +g2 +S'Melon-Shop, Hounsditch' +p6919 +sg4 +S'James McNeill Whistler' +p6920 +sg6 +S'etching' +p6921 +sg8 +S'c. 1886/1888' +p6922 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa75.jpg' +p6923 +sg12 +g27 +sa(dp6924 +g2 +S'After the Sale, Hounsditch' +p6925 +sg4 +S'James McNeill Whistler' +p6926 +sg6 +S'etching' +p6927 +sg8 +S'c. 1886/1888' +p6928 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa76.jpg' +p6929 +sg12 +g27 +sa(dp6930 +g2 +S"Steps, Gray's Inn" +p6931 +sg4 +S'James McNeill Whistler' +p6932 +sg6 +S'etching' +p6933 +sg8 +S'c. 1886/1888' +p6934 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa6f.jpg' +p6935 +sg12 +g27 +sa(dp6936 +g2 +S"Seats, Gray's Inn" +p6937 +sg4 +S'James McNeill Whistler' +p6938 +sg6 +S'etching' +p6939 +sg8 +S'c. 1886/1888' +p6940 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa70.jpg' +p6941 +sg12 +g27 +sa(dp6942 +g2 +S'The Little Nurse' +p6943 +sg4 +S'James McNeill Whistler' +p6944 +sg6 +S'etching' +p6945 +sg8 +S'c. 1886/1888' +p6946 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa6e.jpg' +p6947 +sg12 +g27 +sa(dp6948 +g2 +S'Church Doorway, Edgemere' +p6949 +sg4 +S'James McNeill Whistler' +p6950 +sg6 +S'etching' +p6951 +sg8 +S'unknown date\n' +p6952 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa6c.jpg' +p6953 +sg12 +g27 +sa(dp6954 +g2 +S'Miss Juliana Willoughby' +p6955 +sg4 +S'George Romney' +p6956 +sg6 +S'oil on canvas' +p6957 +sg8 +S'1781-1783' +p6958 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d7c.jpg' +p6959 +sg12 +S"Juliana Willoughby stands quietly but alertly, engaging the viewer with her direct,\nslightly questioning gaze. The blended harmonies of the pinks, whites, and creams of\nher skin tones, her dress, and her shining wisps of fine hair evoke not just Juliana,\nbut the essence of all little girls of this age. The dramatic diagonals of the landscape,\nthe energetic brushwork of the trees at the right, and the strong coloration of\nthe sky provide a dynamic backdrop for the young subject.\n Romney's sure sense of formal values is evident here in the effective balance of\nfigure and landscape. In this portrait Romney successfully adapted his composition\nto a change in the sitter's costume, X-rays show that Juliana originally wore a\nsmall, brimless cap. During the two years it took Romney to complete the portrait,\nJuliana, who was by then almost six years old, had outgrown her mobcap and wore,\ninstead, this broad-brimmed bonnet.\n Like many of his contemporaries, Romney traveled to Italy, where he spent two years\nstudying the work of Renaissance masters, in particular paintings by Titian and\nRaphael. The impact of these artists on his work can be seen in the simply expressed\nfolds of Juliana's dress, the case and certainty of his outlines, and the artful\nbalance of broad areas of color.\n " +p6960 +sa(dp6961 +g2 +S'Dr. William Hartigan (?)' +p6962 +sg4 +S'Gilbert Stuart' +p6963 +sg6 +S'oil on canvas' +p6964 +sg8 +S'c. 1793' +p6965 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a000023a.jpg' +p6966 +sg12 +g27 +sa(dp6967 +g2 +S'The Cock and the Pump' +p6968 +sg4 +S'James McNeill Whistler' +p6969 +sg6 +S'etching' +p6970 +sg8 +S'c. 1887' +p6971 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa77.jpg' +p6972 +sg12 +g27 +sa(dp6973 +g2 +S'Ramparts, Sandwich' +p6974 +sg4 +S'James McNeill Whistler' +p6975 +sg6 +S'etching' +p6976 +sg8 +S'c. 1887' +p6977 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa74.jpg' +p6978 +sg12 +g27 +sa(dp6979 +g2 +S'Charing Cross Railway-Bridge' +p6980 +sg4 +S'James McNeill Whistler' +p6981 +sg6 +S'etching' +p6982 +sg8 +S'c. 1887' +p6983 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa6d.jpg' +p6984 +sg12 +g27 +sa(dp6985 +g2 +S'Wild West, Buffalo Bill' +p6986 +sg4 +S'James McNeill Whistler' +p6987 +sg6 +S'etching and drypoint' +p6988 +sg8 +S'1887' +p6989 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa73.jpg' +p6990 +sg12 +g27 +sa(dp6991 +g2 +S'Tilbury' +p6992 +sg4 +S'James McNeill Whistler' +p6993 +sg6 +S'etching' +p6994 +sg8 +S'1887' +p6995 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa5b.jpg' +p6996 +sg12 +g27 +sa(dp6997 +g2 +S'Monitors' +p6998 +sg4 +S'James McNeill Whistler' +p6999 +sg6 +S'etching' +p7000 +sg8 +S'1887' +p7001 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa5f.jpg' +p7002 +sg12 +g27 +sa(dp7003 +g2 +S'Dry-Dock, Southampton' +p7004 +sg4 +S'James McNeill Whistler' +p7005 +sg6 +S'etching' +p7006 +sg8 +S'1887' +p7007 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa59.jpg' +p7008 +sg12 +g27 +sa(dp7009 +g2 +S'Dipping the Flag' +p7010 +sg4 +S'James McNeill Whistler' +p7011 +sg6 +S'etching' +p7012 +sg8 +S'1887' +p7013 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa5a.jpg' +p7014 +sg12 +g27 +sa(dp7015 +g2 +S'Ryde Pier' +p7016 +sg4 +S'James McNeill Whistler' +p7017 +sg6 +S'etching' +p7018 +sg8 +S'1887' +p7019 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa57.jpg' +p7020 +sg12 +g27 +sa(dp7021 +g2 +S'Windsor, No. 2' +p7022 +sg4 +S'James McNeill Whistler' +p7023 +sg6 +S'etching' +p7024 +sg8 +S'1887' +p7025 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa58.jpg' +p7026 +sg12 +g27 +sa(dp7027 +g2 +S'Commodore Thomas Macdonough' +p7028 +sg4 +S'Gilbert Stuart' +p7029 +sg6 +S'oil on wood' +p7030 +sg8 +S'c. 1815/1818' +p7031 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a000023b.jpg' +p7032 +sg12 +g27 +sa(dp7033 +g2 +S'The Fur Cloak' +p7034 +sg4 +S'James McNeill Whistler' +p7035 +sg6 +S'etching' +p7036 +sg8 +S'unknown date\n' +p7037 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa5e.jpg' +p7038 +sg12 +g27 +sa(dp7039 +g2 +S'Nora Quinn' +p7040 +sg4 +S'James McNeill Whistler' +p7041 +sg6 +S'etching' +p7042 +sg8 +S'unknown date\n' +p7043 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa5d.jpg' +p7044 +sg12 +g27 +sa(dp7045 +g2 +S'Miss Lenoir' +p7046 +sg4 +S'James McNeill Whistler' +p7047 +sg6 +S'etching and drypoint' +p7048 +sg8 +S'c. 1887' +p7049 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa55.jpg' +p7050 +sg12 +g27 +sa(dp7051 +g2 +S'The Little Hat' +p7052 +sg4 +S'James McNeill Whistler' +p7053 +sg6 +S'etching' +p7054 +sg8 +S'unknown date\n' +p7055 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa54.jpg' +p7056 +sg12 +g27 +sa(dp7057 +g2 +S'The Mantle' +p7058 +sg4 +S'James McNeill Whistler' +p7059 +sg6 +S'etching' +p7060 +sg8 +S'unknown date\n' +p7061 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa53.jpg' +p7062 +sg12 +g27 +sa(dp7063 +g2 +S'Gipsy Baby' +p7064 +sg4 +S'James McNeill Whistler' +p7065 +sg6 +S'etching' +p7066 +sg8 +S'unknown date\n' +p7067 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa56.jpg' +p7068 +sg12 +g27 +sa(dp7069 +g2 +S'Little Nude Figure' +p7070 +sg4 +S'James McNeill Whistler' +p7071 +sg6 +S'etching' +p7072 +sg8 +S'unknown date\n' +p7073 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa84.jpg' +p7074 +sg12 +g27 +sa(dp7075 +g2 +S'Cameo, No.I' +p7076 +sg4 +S'James McNeill Whistler' +p7077 +sg6 +S'etching' +p7078 +sg8 +S'unknown date\n' +p7079 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa8c.jpg' +p7080 +sg12 +g27 +sa(dp7081 +g2 +S'Canal, Ostend' +p7082 +sg4 +S'James McNeill Whistler' +p7083 +sg6 +S'etching' +p7084 +sg8 +S'1887' +p7085 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa87.jpg' +p7086 +sg12 +g27 +sa(dp7087 +g2 +S'Church, Brussels' +p7088 +sg4 +S'James McNeill Whistler' +p7089 +sg6 +S'etching' +p7090 +sg8 +S'1887' +p7091 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa89.jpg' +p7092 +sg12 +g27 +sa(dp7093 +g2 +S'George Pollock' +p7094 +sg4 +S'Gilbert Stuart' +p7095 +sg6 +S'oil on canvas' +p7096 +sg8 +S'1793/1794' +p7097 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a0000236.jpg' +p7098 +sg12 +g27 +sa(dp7099 +g2 +S'High Street, Brussels' +p7100 +sg4 +S'James McNeill Whistler' +p7101 +sg6 +S'etching' +p7102 +sg8 +S'1887' +p7103 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa8b.jpg' +p7104 +sg12 +g27 +sa(dp7105 +g2 +S'Gold-House, Brussels' +p7106 +sg4 +S'James McNeill Whistler' +p7107 +sg6 +S'etching on laid paper' +p7108 +sg8 +S'1887' +p7109 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa88.jpg' +p7110 +sg12 +g27 +sa(dp7111 +g2 +S'Palaces, Brussels' +p7112 +sg4 +S'James McNeill Whistler' +p7113 +sg6 +S'etching and drypoint' +p7114 +sg8 +S'1887' +p7115 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bb3.jpg' +p7116 +sg12 +g27 +sa(dp7117 +g2 +S"Grand' Place, Brussels" +p7118 +sg4 +S'James McNeill Whistler' +p7119 +sg6 +S'etching on laid paper' +p7120 +sg8 +S'1887' +p7121 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa8e.jpg' +p7122 +sg12 +g27 +sa(dp7123 +g2 +S'Courtyard, Rue P.L. Courier' +p7124 +sg4 +S'James McNeill Whistler' +p7125 +sg6 +S'etching' +p7126 +sg8 +S'1888' +p7127 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa85.jpg' +p7128 +sg12 +g27 +sa(dp7129 +g2 +S'Railway Station, Voves' +p7130 +sg4 +S'James McNeill Whistler' +p7131 +sg6 +S'etching' +p7132 +sg8 +S'1887' +p7133 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa8d.jpg' +p7134 +sg12 +g27 +sa(dp7135 +g2 +S'Little Market Place, Tours' +p7136 +sg4 +S'James McNeill Whistler' +p7137 +sg6 +S'etching' +p7138 +sg8 +S'1888' +p7139 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa8a.jpg' +p7140 +sg12 +g27 +sa(dp7141 +g2 +S"Hangman's House, Tours" +p7142 +sg4 +S'James McNeill Whistler' +p7143 +sg6 +S'etching in black on laid paper' +p7144 +sg8 +S'1888' +p7145 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa86.jpg' +p7146 +sg12 +g27 +sa(dp7147 +g2 +S'Mairie, Loches' +p7148 +sg4 +S'James McNeill Whistler' +p7149 +sg6 +S'etching' +p7150 +sg8 +S'1888' +p7151 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa9d.jpg' +p7152 +sg12 +g27 +sa(dp7153 +g2 +S'Chancellerie, Loches' +p7154 +sg4 +S'James McNeill Whistler' +p7155 +sg6 +S'etching' +p7156 +sg8 +S'1888' +p7157 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab8a.jpg' +p7158 +sg12 +g27 +sa(dp7159 +g2 +S'Catherine Yates Pollock (Mrs. George Pollock)' +p7160 +sg4 +S'Gilbert Stuart' +p7161 +sg6 +S'oil on canvas' +p7162 +sg8 +S'1793/1794' +p7163 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a000023c.jpg' +p7164 +sg12 +g27 +sa(dp7165 +g2 +S'Hotel de Ville, Loches' +p7166 +sg4 +S'James McNeill Whistler' +p7167 +sg6 +S'etching in brown on "old Dutch" paper' +p7168 +sg8 +S'1888' +p7169 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab89.jpg' +p7170 +sg12 +g27 +sa(dp7171 +g2 +S'Poultry-Market, Loches' +p7172 +sg4 +S'James McNeill Whistler' +p7173 +sg6 +S'etching' +p7174 +sg8 +S'1888' +p7175 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa99.jpg' +p7176 +sg12 +g27 +sa(dp7177 +g2 +S'Tour St. Antoine, Loches' +p7178 +sg4 +S'James McNeill Whistler' +p7179 +sg6 +S'etching' +p7180 +sg8 +S'1888' +p7181 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa9a.jpg' +p7182 +sg12 +g27 +sa(dp7183 +g2 +S'Clock-Tower, Amboise' +p7184 +sg4 +S'James McNeill Whistler' +p7185 +sg6 +S'etching' +p7186 +sg8 +S'1888' +p7187 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa9c.jpg' +p7188 +sg12 +g27 +sa(dp7189 +g2 +S'Hotel Lallement, Bourges' +p7190 +sg4 +S'James McNeill Whistler' +p7191 +sg6 +S'etching' +p7192 +sg8 +S'1888' +p7193 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bb4.jpg' +p7194 +sg12 +g27 +sa(dp7195 +g2 +S'Windows Opposite Hotel, Bourges' +p7196 +sg4 +S'James McNeill Whistler' +p7197 +sg6 +S'etching' +p7198 +sg8 +S'1888' +p7199 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa98.jpg' +p7200 +sg12 +g27 +sa(dp7201 +g2 +S'Steps, Amsterdam' +p7202 +sg4 +S'James McNeill Whistler' +p7203 +sg6 +S'etching and drypoint in dark brown on Asian tissue, mounted on off-white paperboard' +p7204 +sg8 +S'1889' +p7205 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bb5.jpg' +p7206 +sg12 +g27 +sa(dp7207 +g2 +S'Square House, Amsterdam' +p7208 +sg4 +S'James McNeill Whistler' +p7209 +sg6 +S'etching and drypoint in dark brown on cream laid paper' +p7210 +sg8 +S'1889' +p7211 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab8b.jpg' +p7212 +sg12 +g27 +sa(dp7213 +g2 +S'Balcony, Amsterdam' +p7214 +sg4 +S'James McNeill Whistler' +p7215 +sg6 +S'etching and drypoint in brownish-black ink' +p7216 +sg8 +S'1889' +p7217 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab88.jpg' +p7218 +sg12 +g27 +sa(dp7219 +g2 +S"Long House - Dyer's - Amsterdam" +p7220 +sg4 +S'James McNeill Whistler' +p7221 +sg6 +S'etching and drypoint' +p7222 +sg8 +S'1889' +p7223 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab87.jpg' +p7224 +sg12 +g27 +sa(dp7225 +g2 +S'Stephen Van Rensselaer III' +p7226 +sg4 +S'Gilbert Stuart' +p7227 +sg6 +S'oil on canvas' +p7228 +sg8 +S'1793/1795' +p7229 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a000023d.jpg' +p7230 +sg12 +g27 +sa(dp7231 +g2 +S'Pierrot' +p7232 +sg4 +S'James McNeill Whistler' +p7233 +sg6 +S'etching and drypoint' +p7234 +sg8 +S'1889' +p7235 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa9e.jpg' +p7236 +sg12 +g27 +sa(dp7237 +g2 +S'Nocturne: Dance House' +p7238 +sg4 +S'James McNeill Whistler' +p7239 +sg6 +S'etching and drypoint in brown-black on laid paper' +p7240 +sg8 +S'1889' +p7241 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bb6.jpg' +p7242 +sg12 +g27 +sa(dp7243 +g2 +S'Bridge, Amsterdam' +p7244 +sg4 +S'James McNeill Whistler' +p7245 +sg6 +S'etching and drypoint' +p7246 +sg8 +S'1889' +p7247 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bb7.jpg' +p7248 +sg12 +g27 +sa(dp7249 +g2 +S'The Embroidered Curtain' +p7250 +sg4 +S'James McNeill Whistler' +p7251 +sg6 +S'etching and drypoint' +p7252 +sg8 +S'1889' +p7253 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa9f.jpg' +p7254 +sg12 +g27 +sa(dp7255 +g2 +S'Little Drawbridge, Amsterdam' +p7256 +sg4 +S'James McNeill Whistler' +p7257 +sg6 +S'etching' +p7258 +sg8 +S'1889' +p7259 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9e7.jpg' +p7260 +sg12 +g27 +sa(dp7261 +g2 +S'The Mill' +p7262 +sg4 +S'James McNeill Whistler' +p7263 +sg6 +S'etching and drypoint' +p7264 +sg8 +S'1889' +p7265 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9ec.jpg' +p7266 +sg12 +g27 +sa(dp7267 +g2 +S'Zaandam' +p7268 +sg4 +S'James McNeill Whistler' +p7269 +sg6 +S'etching' +p7270 +sg8 +S'1889' +p7271 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9ea.jpg' +p7272 +sg12 +g27 +sa(dp7273 +g2 +S'Quai de Montebello' +p7274 +sg4 +S'James McNeill Whistler' +p7275 +sg6 +S'etching' +p7276 +sg8 +S'1893' +p7277 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9eb.jpg' +p7278 +sg12 +g27 +sa(dp7279 +g2 +S"Passages de l'Opera" +p7280 +sg4 +S'James McNeill Whistler' +p7281 +sg6 +S'etching' +p7282 +sg8 +S'unknown date\n' +p7283 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9e8.jpg' +p7284 +sg12 +g27 +sa(dp7285 +g2 +S'Rue de la Rochefoucault' +p7286 +sg4 +S'James McNeill Whistler' +p7287 +sg6 +S'etching' +p7288 +sg8 +S'1893' +p7289 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9e9.jpg' +p7290 +sg12 +g27 +sa(dp7291 +g2 +S'Sir Joshua Reynolds' +p7292 +sg4 +S'Gilbert Stuart' +p7293 +sg6 +S'oil on canvas' +p7294 +sg8 +S'1784' +p7295 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a0000237.jpg' +p7296 +sg12 +g27 +sa(dp7297 +g2 +S'Le Boulevard Poissoniere' +p7298 +sg4 +S'James McNeill Whistler' +p7299 +sg6 +S'etching' +p7300 +sg8 +S'1893' +p7301 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9ed.jpg' +p7302 +sg12 +g27 +sa(dp7303 +g2 +S'San Biagio' +p7304 +sg4 +S'James McNeill Whistler' +p7305 +sg6 +S'etching' +p7306 +sg8 +S'1879/1880' +p7307 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab4c.jpg' +p7308 +sg12 +g27 +sa(dp7309 +g2 +S'Doorway and Vine' +p7310 +sg4 +S'James McNeill Whistler' +p7311 +sg6 +S'etching' +p7312 +sg8 +S'1880' +p7313 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa04.jpg' +p7314 +sg12 +g27 +sa(dp7315 +g2 +S'Fruit-Stall' +p7316 +sg4 +S'James McNeill Whistler' +p7317 +sg6 +S'etching and drypoint' +p7318 +sg8 +S'1880' +p7319 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9fe.jpg' +p7320 +sg12 +g27 +sa(dp7321 +g2 +S'Robert Barr' +p7322 +sg4 +S'James McNeill Whistler' +p7323 +sg6 +S'etching' +p7324 +sg8 +S'unknown date\n' +p7325 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9e5.jpg' +p7326 +sg12 +g27 +sa(dp7327 +g2 +S'Fitzroy Square' +p7328 +sg4 +S'James McNeill Whistler' +p7329 +sg6 +S'etching' +p7330 +sg8 +S'unknown date\n' +p7331 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9e6.jpg' +p7332 +sg12 +g27 +sa(dp7333 +g2 +S'Drouet' +p7334 +sg4 +S'James McNeill Whistler' +p7335 +sg6 +S'etching and drypoint' +p7336 +sg8 +S'1859' +p7337 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9a8.jpg' +p7338 +sg12 +g27 +sa(dp7339 +g2 +S'Drouet' +p7340 +sg4 +S'James McNeill Whistler' +p7341 +sg6 +S'etching and drypoint' +p7342 +sg8 +S'1859' +p7343 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a99f.jpg' +p7344 +sg12 +g27 +sa(dp7345 +g2 +S'Study' +p7346 +sg4 +S'James McNeill Whistler' +p7347 +sg6 +S'lithotint' +p7348 +sg8 +S'1878' +p7349 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000aba6.jpg' +p7350 +sg12 +g27 +sa(dp7351 +g2 +S'Limehouse' +p7352 +sg4 +S'James McNeill Whistler' +p7353 +sg6 +S'lithograph in black on cream Japanese paper' +p7354 +sg8 +S'1878' +p7355 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000aba3.jpg' +p7356 +sg12 +g27 +sa(dp7357 +g2 +S'Ann Calvert Stuart Robinson (Mrs. William Robinson)' +p7358 +sg4 +S'Gilbert Stuart' +p7359 +sg6 +S'oil on wood' +p7360 +sg8 +S'c. 1804' +p7361 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a000023e.jpg' +p7362 +sg12 +g27 +sa(dp7363 +g2 +S'Nocturne' +p7364 +sg4 +S'James McNeill Whistler' +p7365 +sg6 +S'lithotint' +p7366 +sg8 +S'1878' +p7367 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000aba4.jpg' +p7368 +sg12 +g27 +sa(dp7369 +g2 +S'Nocturne' +p7370 +sg4 +S'James McNeill Whistler' +p7371 +sg6 +S'lithotint' +p7372 +sg8 +S'1878' +p7373 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bb8.jpg' +p7374 +sg12 +g27 +sa(dp7375 +g2 +S'The Toilet' +p7376 +sg4 +S'James McNeill Whistler' +p7377 +sg6 +S'lithotint' +p7378 +sg8 +S'1878' +p7379 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000aba0.jpg' +p7380 +sg12 +g27 +sa(dp7381 +g2 +S'The Toilet' +p7382 +sg4 +S'James McNeill Whistler' +p7383 +sg6 +S'lithotint' +p7384 +sg8 +S'1878' +p7385 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000aba1.jpg' +p7386 +sg12 +g27 +sa(dp7387 +g2 +S'Early Morning' +p7388 +sg4 +S'James McNeill Whistler' +p7389 +sg6 +S'lithotint' +p7390 +sg8 +S'1878' +p7391 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab9f.jpg' +p7392 +sg12 +g27 +sa(dp7393 +g2 +S'The Broad Bridge' +p7394 +sg4 +S'James McNeill Whistler' +p7395 +sg6 +S'lithotint' +p7396 +sg8 +S'1878' +p7397 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab82.jpg' +p7398 +sg12 +g27 +sa(dp7399 +g2 +S'The Tall Bridge' +p7400 +sg4 +S'James McNeill Whistler' +p7401 +sg6 +S'lithotint in brown' +p7402 +sg8 +S'1878' +p7403 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab83.jpg' +p7404 +sg12 +g27 +sa(dp7405 +g2 +S'Gaiety Stage Door' +p7406 +sg4 +S'James McNeill Whistler' +p7407 +sg6 +S'lithograph in black on cream chine (Japanese paper) mounted on white plate paper' +p7408 +sg8 +S'1879' +p7409 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab7e.jpg' +p7410 +sg12 +g27 +sa(dp7411 +g2 +S'Victoria Club' +p7412 +sg4 +S'James McNeill Whistler' +p7413 +sg6 +S'lithograph in black on cream chine (Japanese paper) mounted on white plate paper' +p7414 +sg8 +S'1879' +p7415 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab7d.jpg' +p7416 +sg12 +g27 +sa(dp7417 +g2 +S'Old Battersea Bridge' +p7418 +sg4 +S'James McNeill Whistler' +p7419 +sg6 +S'lithograph in black on cream wove paper' +p7420 +sg8 +S'1879' +p7421 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab85.jpg' +p7422 +sg12 +g27 +sa(dp7423 +g2 +S'Edward Stow' +p7424 +sg4 +S'Gilbert Stuart' +p7425 +sg6 +S'oil on wood' +p7426 +sg8 +S'c. 1803' +p7427 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a000023f.jpg' +p7428 +sg12 +g27 +sa(dp7429 +g2 +S'Reading' +p7430 +sg4 +S'James McNeill Whistler' +p7431 +sg6 +S'lithograph in black on cream chine (Japanese paper) mounted on ivory plate paper' +p7432 +sg8 +S'1879' +p7433 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab7c.jpg' +p7434 +sg12 +g27 +sa(dp7435 +g2 +S'Reading' +p7436 +sg4 +S'James McNeill Whistler' +p7437 +sg6 +S'lithograph in black on cream wove paper' +p7438 +sg8 +S'1879' +p7439 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bb9.jpg' +p7440 +sg12 +g27 +sa(dp7441 +g2 +S'Entrance Gate' +p7442 +sg4 +S'James McNeill Whistler' +p7443 +sg6 +S'lithograph in black on cream laid paper' +p7444 +sg8 +S'1887' +p7445 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa80.jpg' +p7446 +sg12 +g27 +sa(dp7447 +g2 +S'Churchyard' +p7448 +sg4 +S'James McNeill Whistler' +p7449 +sg6 +S'lithograph on cream laid paper' +p7450 +sg8 +S'1887' +p7451 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab7f.jpg' +p7452 +sg12 +g27 +sa(dp7453 +g2 +S'Little Court, Cloth Fair' +p7454 +sg4 +S'James McNeill Whistler' +p7455 +sg6 +S'lithograph on cream Japanese paper' +p7456 +sg8 +S'1887' +p7457 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa81.jpg' +p7458 +sg12 +g27 +sa(dp7459 +g2 +S'Lindsay Row, Chelsea' +p7460 +sg4 +S'James McNeill Whistler' +p7461 +sg6 +S'lithograph on cream wove paper' +p7462 +sg8 +S'1888' +p7463 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab80.jpg' +p7464 +sg12 +g27 +sa(dp7465 +g2 +S'Chelsea Shops' +p7466 +sg4 +S'James McNeill Whistler' +p7467 +sg6 +S'lithograph on grayish ivory chine mounted on ivory plate paper' +p7468 +sg8 +S'1888' +p7469 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab7b.jpg' +p7470 +sg12 +g27 +sa(dp7471 +g2 +S'Drury Lane Rags' +p7472 +sg4 +S'James McNeill Whistler' +p7473 +sg6 +S'lithograph on cream laid paper' +p7474 +sg8 +S'1888' +p7475 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa7b.jpg' +p7476 +sg12 +g27 +sa(dp7477 +g2 +S'Drury Lane Rags' +p7478 +sg4 +S'James McNeill Whistler' +p7479 +sg6 +S'lithograph in black, hand-colored with chalk on off-white plate paper' +p7480 +sg8 +S'1888' +p7481 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab84.jpg' +p7482 +sg12 +g27 +sa(dp7483 +g2 +S'Chelsea Rags' +p7484 +sg4 +S'James McNeill Whistler' +p7485 +sg6 +S'lithograph on cream laid paper' +p7486 +sg8 +S'1888' +p7487 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa82.jpg' +p7488 +sg12 +g27 +sa(dp7489 +g12 +g27 +sg6 +S'overall: 90 x 71 cm (35 7/16 x 27 15/16 in.)\r\nframed: 109.9 x 92.1 x 8.3 cm (43 1/4 x 36 1/4 x 3 1/4 in.)' +p7490 +sg8 +S'\noil on canvas' +p7491 +sg2 +S'Possibly Robert Thew' +p7492 +sg4 +S'British 18th Century' +p7493 +sa(dp7494 +g2 +S'Courtyard, Chelsea Hospital' +p7495 +sg4 +S'James McNeill Whistler' +p7496 +sg6 +S'lithograph on cream wove paper' +p7497 +sg8 +S'1888' +p7498 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abaa.jpg' +p7499 +sg12 +g27 +sa(dp7500 +g2 +S'The Farriers' +p7501 +sg4 +S'James McNeill Whistler' +p7502 +sg6 +S'lithograph on grayish ivory chine mounted on ivory plate paper' +p7503 +sg8 +S'1888' +p7504 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abaf.jpg' +p7505 +sg12 +g27 +sa(dp7506 +g2 +S'The Winged Hat' +p7507 +sg4 +S'James McNeill Whistler' +p7508 +sg6 +S'lithograph on cream laid paper' +p7509 +sg8 +S'1890' +p7510 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abab.jpg' +p7511 +sg12 +g27 +sa(dp7512 +g2 +S'Gants de Su\xc3\xa8de' +p7513 +sg4 +S'James McNeill Whistler' +p7514 +sg6 +S'lithograph on cream laid paper' +p7515 +sg8 +S'1890' +p7516 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa7e.jpg' +p7517 +sg12 +g27 +sa(dp7518 +g2 +S'The Tyresmith' +p7519 +sg4 +S'James McNeill Whistler' +p7520 +sg6 +S'lithograph in black on cream Japanese paper' +p7521 +sg8 +S'1890' +p7522 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa7a.jpg' +p7523 +sg12 +g27 +sa(dp7524 +g2 +S"Maunder's Fish Shop, Chelsea" +p7525 +sg4 +S'James McNeill Whistler' +p7526 +sg6 +S'lithograph on cream laid paper' +p7527 +sg8 +S'1890' +p7528 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa83.jpg' +p7529 +sg12 +g27 +sa(dp7530 +g2 +S'The Little Nude Model, Reading' +p7531 +sg4 +S'James McNeill Whistler' +p7532 +sg6 +S'lithograph on grayish ivory chine mounted on ivory plate paper' +p7533 +sg8 +S'1889/1890' +p7534 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abac.jpg' +p7535 +sg12 +g27 +sa(dp7536 +g2 +S'The Dancing Girl' +p7537 +sg4 +S'James McNeill Whistler' +p7538 +sg6 +S'lithograph on tan laid paper' +p7539 +sg8 +S'1889' +p7540 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa78.jpg' +p7541 +sg12 +g27 +sa(dp7542 +g2 +S'Model Draping' +p7543 +sg4 +S'James McNeill Whistler' +p7544 +sg6 +S'lithograph on cream laid paper' +p7545 +sg8 +S'probably 1889' +p7546 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa7d.jpg' +p7547 +sg12 +g27 +sa(dp7548 +g2 +S'The Horoscope' +p7549 +sg4 +S'James McNeill Whistler' +p7550 +sg6 +S'lithograph on cream laid paper' +p7551 +sg8 +S'probably 1889' +p7552 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abae.jpg' +p7553 +sg12 +g27 +sa(dp7554 +g2 +S'William Thornton' +p7555 +sg4 +S'Gilbert Stuart' +p7556 +sg6 +S'oil on canvas' +p7557 +sg8 +S'1804' +p7558 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a0000240.jpg' +p7559 +sg12 +g27 +sa(dp7560 +g2 +S'The Novel: Girl Reading' +p7561 +sg4 +S'James McNeill Whistler' +p7562 +sg6 +S'lithograph on grayish ivory laid proofing paper laid down on grayish ivory laid proofing paper' +p7563 +sg8 +S'probably 1889' +p7564 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa7c.jpg' +p7565 +sg12 +g27 +sa(dp7566 +g2 +S"Gatti's" +p7567 +sg4 +S'James McNeill Whistler' +p7568 +sg6 +S'lithograph on cream wove paper' +p7569 +sg8 +S'1890' +p7570 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa7f.jpg' +p7571 +sg12 +g27 +sa(dp7572 +g2 +S'H\xc3\xb4tel Colbert, Windows' +p7573 +sg4 +S'James McNeill Whistler' +p7574 +sg6 +S'lithograph on cream laid paper' +p7575 +sg8 +S'1891' +p7576 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bbb.jpg' +p7577 +sg12 +g27 +sa(dp7578 +g2 +S'Cocks and Hens, H\xc3\xb4tel Colbert' +p7579 +sg4 +S'James McNeill Whistler' +p7580 +sg6 +S'lithograph on cream wove paper' +p7581 +sg8 +S'1891' +p7582 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa92.jpg' +p7583 +sg12 +g27 +sa(dp7584 +g2 +S'The Garden' +p7585 +sg4 +S'James McNeill Whistler' +p7586 +sg6 +S'lithograph on cream Japanese paper' +p7587 +sg8 +S'1891' +p7588 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa95.jpg' +p7589 +sg12 +g27 +sa(dp7590 +g2 +S'The Garden' +p7591 +sg4 +S'James McNeill Whistler' +p7592 +sg6 +S'lithograph on cream wove paper' +p7593 +sg8 +S'1891' +p7594 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa94.jpg' +p7595 +sg12 +g27 +sa(dp7596 +g2 +S'Vitr\xc3\xa9: The Canal' +p7597 +sg4 +S'James McNeill Whistler' +p7598 +sg6 +S'lithograph on cream laid paper' +p7599 +sg8 +S'1893' +p7600 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa8f.jpg' +p7601 +sg12 +g27 +sa(dp7602 +g2 +S'The Marketplace, Vitr\xc3\xa9' +p7603 +sg4 +S'James McNeill Whistler' +p7604 +sg6 +S'lithograph on cream laid paper' +p7605 +sg8 +S'1893' +p7606 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa90.jpg' +p7607 +sg12 +g27 +sa(dp7608 +g2 +S'Gabled Roofs, Vitre' +p7609 +sg4 +S'James McNeill Whistler' +p7610 +sg6 +S'lithograph' +p7611 +sg8 +S'1893' +p7612 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000aba8.jpg' +p7613 +sg12 +g27 +sa(dp7614 +g2 +S'The Clock-Makers, Paimpol' +p7615 +sg4 +S'James McNeill Whistler' +p7616 +sg6 +S'lithograph' +p7617 +sg8 +S'1893' +p7618 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa97.jpg' +p7619 +sg12 +g27 +sa(dp7620 +g2 +S'Mrs. Davies Davenport' +p7621 +sg4 +S'George Romney' +p7622 +sg6 +S'oil on canvas' +p7623 +sg8 +S'1782-1784' +p7624 +sg10 +S'http://www.nga.gov:80/thumb-l/a00039/a00039aa.jpg' +p7625 +sg12 +g27 +sa(dp7626 +g2 +S'Anna Maria Brodeau Thornton (Mrs. William Thornton)' +p7627 +sg4 +S'Gilbert Stuart' +p7628 +sg6 +S'oil on canvas' +p7629 +sg8 +S'1804' +p7630 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a0000241.jpg' +p7631 +sg12 +g27 +sa(dp7632 +g2 +S'The Steps, Luxembourg Gardens' +p7633 +sg4 +S'James McNeill Whistler' +p7634 +sg6 +S'lithograph' +p7635 +sg8 +S'1893' +p7636 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bbc.jpg' +p7637 +sg12 +g27 +sa(dp7638 +g2 +S'Conversation under the Statue, Luxembourg Gardens' +p7639 +sg4 +S'James McNeill Whistler' +p7640 +sg6 +S'lithograph' +p7641 +sg8 +S'1893' +p7642 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa91.jpg' +p7643 +sg12 +g27 +sa(dp7644 +g2 +S'The Pantheon, from Terrace of Luxembourg Gardens' +p7645 +sg4 +S'James McNeill Whistler' +p7646 +sg6 +S'lithograph' +p7647 +sg8 +S'1893' +p7648 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa93.jpg' +p7649 +sg12 +g27 +sa(dp7650 +g2 +S'The Draped Figure Seated' +p7651 +sg4 +S'James McNeill Whistler' +p7652 +sg6 +S'lithograph' +p7653 +sg8 +S'1893' +p7654 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaa3.jpg' +p7655 +sg12 +g27 +sa(dp7656 +g2 +S'Nude Model Reclining' +p7657 +sg4 +S'James McNeill Whistler' +p7658 +sg6 +S'lithograph' +p7659 +sg8 +S'1893' +p7660 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaa2.jpg' +p7661 +sg12 +g27 +sa(dp7662 +g2 +S'Nursemaids - Les Bonnes du Luxembourg' +p7663 +sg4 +S'James McNeill Whistler' +p7664 +sg6 +S'lithograph' +p7665 +sg8 +S'1894' +p7666 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaa0.jpg' +p7667 +sg12 +g27 +sa(dp7668 +g2 +S'The Long Balcony' +p7669 +sg4 +S'James McNeill Whistler' +p7670 +sg6 +S'lithograph' +p7671 +sg8 +S'1894' +p7672 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaa4.jpg' +p7673 +sg12 +g27 +sa(dp7674 +g2 +S'The Little Balcony' +p7675 +sg4 +S'James McNeill Whistler' +p7676 +sg6 +S'lithograph' +p7677 +sg8 +S'1894' +p7678 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaa1.jpg' +p7679 +sg12 +g27 +sa(dp7680 +g2 +S'Little Draped Figure Leaning' +p7681 +sg4 +S'James McNeill Whistler' +p7682 +sg6 +S'lithograph' +p7683 +sg8 +S'1894' +p7684 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaa6.jpg' +p7685 +sg12 +g27 +sa(dp7686 +g2 +S'The Long Gallery, Louvre' +p7687 +sg4 +S'James McNeill Whistler' +p7688 +sg6 +S'lithograph' +p7689 +sg8 +S'1894' +p7690 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aad9.jpg' +p7691 +sg12 +g27 +sa(dp7692 +g2 +S'George Washington (Vaughan portrait)' +p7693 +sg4 +S'Gilbert Stuart' +p7694 +sg6 +S'oil on canvas' +p7695 +sg8 +S'1795' +p7696 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a0000242.jpg' +p7697 +sg12 +S'Gilbert Stuart was exclusively a portraitist; in his five-decade career, he produced\nwell over 1100 pictures, less than ten of which were not likenesses. Of these portraits,\nnearly one-tenth are images of George Washington, to whom he was introduced by their\nmutual friend Chief Justice John Jay. Stuart\'s 104 known likenesses of the first\npresident are divided into categories named after the owners of Stuart\'s originals,\nfrom which he made his own replicas: the National Gallery\'s \n A charming conversationalist, Stuart would chat while painting, thereby entertaining\nhis sitters to maintain the freshness of their expressions during the long hours\nof posing. To the serious and taciturn Washington, however, Stuart\'s glib wit was\nannoying. The artist claimed, "An apathy seemed to seize him, and a vacuity spread\nover his countenance, most appalling to paint." Nevertheless, this image has spontaneity\nbecause of its quick, sketchy handling. To impart the sixty-three-year-old subject\'s\nimposing physical presence, Stuart placed the head high in the design. Finally,\nhe added the crimson glow that complements Washington\'s ruddy complexion and surrounds\nhis head like a superhuman aureole.\n ' +p7698 +sa(dp7699 +g2 +S'The Whitesmiths - Impasse des Carmelites' +p7700 +sg4 +S'James McNeill Whistler' +p7701 +sg6 +S'lithograph' +p7702 +sg8 +S'1894' +p7703 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000aba9.jpg' +p7704 +sg12 +g27 +sa(dp7705 +g2 +S'Tete-a-Tete in the Garden' +p7706 +sg4 +S'James McNeill Whistler' +p7707 +sg6 +S'lithograph' +p7708 +sg8 +S'1894' +p7709 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aad8.jpg' +p7710 +sg12 +g27 +sa(dp7711 +g2 +S'The Terrace Luxembourg' +p7712 +sg4 +S'James McNeill Whistler' +p7713 +sg6 +S'lithograph' +p7714 +sg8 +S'1894' +p7715 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aad4.jpg' +p7716 +sg12 +g27 +sa(dp7717 +g2 +S'The Little Cafe au Bois' +p7718 +sg4 +S'James McNeill Whistler' +p7719 +sg6 +S'lithograph' +p7720 +sg8 +S'1894' +p7721 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aad2.jpg' +p7722 +sg12 +g27 +sa(dp7723 +g2 +S'Late Picquet' +p7724 +sg4 +S'James McNeill Whistler' +p7725 +sg6 +S'lithograph' +p7726 +sg8 +S'1894' +p7727 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aad7.jpg' +p7728 +sg12 +g27 +sa(dp7729 +g2 +S'The Laundress - La Blanchisseuse de la Place Dauphine' +p7730 +sg4 +S'James McNeill Whistler' +p7731 +sg6 +S'lithograph' +p7732 +sg8 +S'1894' +p7733 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aadd.jpg' +p7734 +sg12 +g27 +sa(dp7735 +g2 +S'Rue Furstenberg' +p7736 +sg4 +S'James McNeill Whistler' +p7737 +sg6 +S'lithograph' +p7738 +sg8 +S'1894' +p7739 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aad5.jpg' +p7740 +sg12 +g27 +sa(dp7741 +g2 +S'Confidences in the Garden' +p7742 +sg4 +S'James McNeill Whistler' +p7743 +sg6 +S'lithograph' +p7744 +sg8 +S'1894' +p7745 +sg10 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004bb4.jpg' +p7746 +sg12 +g27 +sa(dp7747 +g2 +S'La Jolie New Yorkaise' +p7748 +sg4 +S'James McNeill Whistler' +p7749 +sg6 +S'lithograph' +p7750 +sg8 +S'1894' +p7751 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aadb.jpg' +p7752 +sg12 +g27 +sa(dp7753 +g2 +S'La Belle Dame Paresseuse' +p7754 +sg4 +S'James McNeill Whistler' +p7755 +sg6 +S'lithograph' +p7756 +sg8 +S'1894' +p7757 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aad6.jpg' +p7758 +sg12 +g27 +sa(dp7759 +g2 +S'Luke White' +p7760 +sg4 +S'Gilbert Stuart' +p7761 +sg6 +S'oil on canvas' +p7762 +sg8 +S'c. 1787' +p7763 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a0000243.jpg' +p7764 +sg12 +g27 +sa(dp7765 +g2 +S'La Belle Jardiniere' +p7766 +sg4 +S'James McNeill Whistler' +p7767 +sg6 +S'lithograph' +p7768 +sg8 +S'1894' +p7769 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac11.jpg' +p7770 +sg12 +g27 +sa(dp7771 +g2 +S'The Duet' +p7772 +sg4 +S'James McNeill Whistler' +p7773 +sg6 +S'lithograph' +p7774 +sg8 +S'1894' +p7775 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aadc.jpg' +p7776 +sg12 +g27 +sa(dp7777 +g2 +S'The Duet, No.II' +p7778 +sg4 +S'James McNeill Whistler' +p7779 +sg6 +S'lithograph' +p7780 +sg8 +S'1894' +p7781 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aad3.jpg' +p7782 +sg12 +g27 +sa(dp7783 +g2 +S'St\xc3\xa9phane Mallarm\xc3\xa9' +p7784 +sg4 +S'James McNeill Whistler' +p7785 +sg6 +S'lithograph' +p7786 +sg8 +S'1894' +p7787 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aad0.jpg' +p7788 +sg12 +g27 +sa(dp7789 +g2 +S'The Draped Figure, Back View' +p7790 +sg4 +S'James McNeill Whistler' +p7791 +sg6 +S'lithograph' +p7792 +sg8 +S'1894' +p7793 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab23.jpg' +p7794 +sg12 +g27 +sa(dp7795 +g2 +S'La Robe Rouge' +p7796 +sg4 +S'James McNeill Whistler' +p7797 +sg6 +S'lithograph' +p7798 +sg8 +S'1894' +p7799 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab20.jpg' +p7800 +sg12 +g27 +sa(dp7801 +g2 +S'La Belle Dame Endormie' +p7802 +sg4 +S'James McNeill Whistler' +p7803 +sg6 +S'lithograph' +p7804 +sg8 +S'1894' +p7805 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab25.jpg' +p7806 +sg12 +g27 +sa(dp7807 +g2 +S'La Fruitiere de la Rue de Grenelle' +p7808 +sg4 +S'James McNeill Whistler' +p7809 +sg6 +S'lithograph' +p7810 +sg8 +S'1894' +p7811 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b570.jpg' +p7812 +sg12 +g27 +sa(dp7813 +g2 +S'The Forge - Passage du Dragon' +p7814 +sg4 +S'James McNeill Whistler' +p7815 +sg6 +S'lithograph' +p7816 +sg8 +S'1894' +p7817 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab27.jpg' +p7818 +sg12 +g27 +sa(dp7819 +g2 +S'Richard Yates' +p7820 +sg4 +S'Gilbert Stuart' +p7821 +sg6 +S'oil on canvas' +p7822 +sg8 +S'1793/1794' +p7823 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a0000244.jpg' +p7824 +sg12 +g27 +sa(dp7825 +g2 +S'The Smith - Passage du Dragon' +p7826 +sg4 +S'James McNeill Whistler' +p7827 +sg6 +S'lithograph' +p7828 +sg8 +S'1894' +p7829 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac14.jpg' +p7830 +sg12 +g27 +sa(dp7831 +g2 +S"The Priest's House, Rouen" +p7832 +sg4 +S'James McNeill Whistler' +p7833 +sg6 +S'lithograph' +p7834 +sg8 +S'1894' +p7835 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab28.jpg' +p7836 +sg12 +g27 +sa(dp7837 +g2 +S'A Portrait - Miss Howells' +p7838 +sg4 +S'James McNeill Whistler' +p7839 +sg6 +S'lithograph' +p7840 +sg8 +S'1895' +p7841 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab29.jpg' +p7842 +sg12 +g27 +sa(dp7843 +g2 +S'The Doctor' +p7844 +sg4 +S'James McNeill Whistler' +p7845 +sg6 +S'lithograph' +p7846 +sg8 +S'1895' +p7847 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab1f.jpg' +p7848 +sg12 +g27 +sa(dp7849 +g2 +S'Walter Sickert' +p7850 +sg4 +S'James McNeill Whistler' +p7851 +sg6 +S'lithograph' +p7852 +sg8 +S'1895' +p7853 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab21.jpg' +p7854 +sg12 +g27 +sa(dp7855 +g2 +S'Mother and Child, No.I' +p7856 +sg4 +S'James McNeill Whistler' +p7857 +sg6 +S'lithograph' +p7858 +sg8 +S'1895' +p7859 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab90.jpg' +p7860 +sg12 +g27 +sa(dp7861 +g2 +S'Girl with Bowl' +p7862 +sg4 +S'James McNeill Whistler' +p7863 +sg6 +S'lithograph' +p7864 +sg8 +S'1895' +p7865 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaea.jpg' +p7866 +sg12 +g27 +sa(dp7867 +g2 +S'The Little Doorway, Lyme Regis' +p7868 +sg4 +S'James McNeill Whistler' +p7869 +sg6 +S'lithograph' +p7870 +sg8 +S'1895' +p7871 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aae0.jpg' +p7872 +sg12 +g27 +sa(dp7873 +g2 +S'The Master Smith' +p7874 +sg4 +S'James McNeill Whistler' +p7875 +sg6 +S'lithograph' +p7876 +sg8 +S'1895' +p7877 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaeb.jpg' +p7878 +sg12 +g27 +sa(dp7879 +g2 +S'John Quincy Adams' +p7880 +sg4 +S'Thomas Sully' +p7881 +sg6 +S'oil on canvas' +p7882 +sg8 +S'1824' +p7883 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a000025b.jpg' +p7884 +sg12 +g27 +sa(dp7885 +g2 +S'The Sunny Smith' +p7886 +sg4 +S'James McNeill Whistler' +p7887 +sg6 +S'lithograph' +p7888 +sg8 +S'1895' +p7889 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aae8.jpg' +p7890 +sg12 +g27 +sa(dp7891 +g2 +S'The Good Shoe' +p7892 +sg4 +S'James McNeill Whistler' +p7893 +sg6 +S'lithograph' +p7894 +sg8 +S'1895' +p7895 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aae9.jpg' +p7896 +sg12 +g27 +sa(dp7897 +g2 +S'Father and Son' +p7898 +sg4 +S'James McNeill Whistler' +p7899 +sg6 +S'lithograph' +p7900 +sg8 +S'1895' +p7901 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aae7.jpg' +p7902 +sg12 +g27 +sa(dp7903 +g2 +S"The Smith's Yard" +p7904 +sg4 +S'James McNeill Whistler' +p7905 +sg6 +S'lithograph' +p7906 +sg8 +S'1895' +p7907 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aadf.jpg' +p7908 +sg12 +g27 +sa(dp7909 +g2 +S'The Strong Arm' +p7910 +sg4 +S'James McNeill Whistler' +p7911 +sg6 +S'lithograph' +p7912 +sg8 +S'1895' +p7913 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aae6.jpg' +p7914 +sg12 +g27 +sa(dp7915 +g2 +S'The Blacksmith' +p7916 +sg4 +S'James McNeill Whistler' +p7917 +sg6 +S'lithograph' +p7918 +sg8 +S'1895' +p7919 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aae3.jpg' +p7920 +sg12 +g27 +sa(dp7921 +g2 +S'The Brothers' +p7922 +sg4 +S'James McNeill Whistler' +p7923 +sg6 +S'lithograph' +p7924 +sg8 +S'1895' +p7925 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aae4.jpg' +p7926 +sg12 +g27 +sa(dp7927 +g2 +S'The Fair' +p7928 +sg4 +S'James McNeill Whistler' +p7929 +sg6 +S'lithograph' +p7930 +sg8 +S'1895' +p7931 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aade.jpg' +p7932 +sg12 +g27 +sa(dp7933 +g2 +S'John Grove' +p7934 +sg4 +S'James McNeill Whistler' +p7935 +sg6 +S'lithograph' +p7936 +sg8 +S'1895' +p7937 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aae5.jpg' +p7938 +sg12 +g27 +sa(dp7939 +g2 +S'The Little Steps, Lyme Regis' +p7940 +sg4 +S'James McNeill Whistler' +p7941 +sg6 +S'lithograph' +p7942 +sg8 +S'1895' +p7943 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaf2.jpg' +p7944 +sg12 +g27 +sa(dp7945 +g2 +S'Major Thomas Biddle' +p7946 +sg4 +S'Artist Information (' +p7947 +sg6 +S'(artist)' +p7948 +sg8 +S'\n' +p7949 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a000025c.jpg' +p7950 +sg12 +g27 +sa(dp7951 +g2 +S'Study of a Horse' +p7952 +sg4 +S'James McNeill Whistler' +p7953 +sg6 +S'lithograph' +p7954 +sg8 +S'1895' +p7955 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaec.jpg' +p7956 +sg12 +g27 +sa(dp7957 +g2 +S'Sunday, Lyme Regis' +p7958 +sg4 +S'James McNeill Whistler' +p7959 +sg6 +S'lithograph' +p7960 +sg8 +S'1895' +p7961 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaf1.jpg' +p7962 +sg12 +g27 +sa(dp7963 +g2 +S'Fifth of November' +p7964 +sg4 +S'James McNeill Whistler' +p7965 +sg6 +S'lithograph' +p7966 +sg8 +S'1895' +p7967 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab91.jpg' +p7968 +sg12 +g27 +sa(dp7969 +g2 +S"The Old Smith's Story" +p7970 +sg4 +S'James McNeill Whistler' +p7971 +sg6 +S'lithograph' +p7972 +sg8 +S'1896' +p7973 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaf4.jpg' +p7974 +sg12 +g27 +sa(dp7975 +g2 +S'Red House, Paimpol' +p7976 +sg4 +S'James McNeill Whistler' +p7977 +sg6 +S'lithograph' +p7978 +sg8 +S'1893' +p7979 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bbd.jpg' +p7980 +sg12 +g27 +sa(dp7981 +g2 +S'Yellow House, Lannion' +p7982 +sg4 +S'James McNeill Whistler' +p7983 +sg6 +S'lithograph' +p7984 +sg8 +S'1893' +p7985 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac23.jpg' +p7986 +sg12 +g27 +sa(dp7987 +g2 +S'Mother and Child, No.II' +p7988 +sg4 +S'James McNeill Whistler' +p7989 +sg6 +S'lithograph' +p7990 +sg8 +S'1890' +p7991 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaf6.jpg' +p7992 +sg12 +g27 +sa(dp7993 +g2 +S'Firelight' +p7994 +sg4 +S'James McNeill Whistler' +p7995 +sg6 +S'lithograph' +p7996 +sg8 +S'1896' +p7997 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaf5.jpg' +p7998 +sg12 +g27 +sa(dp7999 +g2 +S'Firelight - Joseph Pennell, No.I' +p8000 +sg4 +S'James McNeill Whistler' +p8001 +sg6 +S'lithograph' +p8002 +sg8 +S'1896' +p8003 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaf7.jpg' +p8004 +sg12 +g27 +sa(dp8005 +g2 +S'Firelight - Joseph Pennell, No.II' +p8006 +sg4 +S'James McNeill Whistler' +p8007 +sg6 +S'lithograph' +p8008 +sg8 +S'1896' +p8009 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaf8.jpg' +p8010 +sg12 +g27 +sa(dp8011 +g2 +S'Ann Biddle Hopkinson (Mrs. Francis Hopkinson)' +p8012 +sg4 +S'Thomas Sully' +p8013 +sg6 +S'oil on canvas' +p8014 +sg8 +S'1834' +p8015 +sg10 +S'http://www.nga.gov:80/thumb-l/a00004/a0000468.jpg' +p8016 +sg12 +g27 +sa(dp8017 +g2 +S"The Barber's Shop in the Mews" +p8018 +sg4 +S'James McNeill Whistler' +p8019 +sg6 +S'lithograph' +p8020 +sg8 +S'1896' +p8021 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaee.jpg' +p8022 +sg12 +g27 +sa(dp8023 +g2 +S'Study - Mr. Thomas Way, No.I' +p8024 +sg4 +S'James McNeill Whistler' +p8025 +sg6 +S'lithograph' +p8026 +sg8 +S'1896' +p8027 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaf0.jpg' +p8028 +sg12 +g27 +sa(dp8029 +g2 +S'Study - Mr. Thomas Way, No.II' +p8030 +sg4 +S'James McNeill Whistler' +p8031 +sg6 +S'lithograph' +p8032 +sg8 +S'1896' +p8033 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaef.jpg' +p8034 +sg12 +g27 +sa(dp8035 +g2 +S'Kensington Gardens' +p8036 +sg4 +S'James McNeill Whistler' +p8037 +sg6 +S'lithograph' +p8038 +sg8 +S'1896' +p8039 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaf9.jpg' +p8040 +sg12 +g27 +sa(dp8041 +g2 +S'Little Evelyn' +p8042 +sg4 +S'James McNeill Whistler' +p8043 +sg6 +S'lithograph' +p8044 +sg8 +S'1896' +p8045 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaf3.jpg' +p8046 +sg12 +g27 +sa(dp8047 +g2 +S'Study - Joseph Pennell' +p8048 +sg4 +S'James McNeill Whistler' +p8049 +sg6 +S'lithograph' +p8050 +sg8 +S'1896' +p8051 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaff.jpg' +p8052 +sg12 +g27 +sa(dp8053 +g2 +S'The Russian Schube' +p8054 +sg4 +S'James McNeill Whistler' +p8055 +sg6 +S'lithograph' +p8056 +sg8 +S'1896' +p8057 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab05.jpg' +p8058 +sg12 +g27 +sa(dp8059 +g2 +S'The Russian Schube' +p8060 +sg4 +S'James McNeill Whistler' +p8061 +sg6 +S'lithograph' +p8062 +sg8 +S'1896' +p8063 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab04.jpg' +p8064 +sg12 +g27 +sa(dp8065 +g2 +S'Needlework' +p8066 +sg4 +S'James McNeill Whistler' +p8067 +sg6 +S'lithograph' +p8068 +sg8 +S'1896' +p8069 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abb9.jpg' +p8070 +sg12 +g27 +sa(dp8071 +g2 +S'Little Dorothy' +p8072 +sg4 +S'James McNeill Whistler' +p8073 +sg6 +S'lithograph' +p8074 +sg8 +S'1896' +p8075 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab03.jpg' +p8076 +sg12 +g27 +sa(dp8077 +g2 +S'Francis Hopkinson' +p8078 +sg4 +S'Thomas Sully' +p8079 +sg6 +S'oil on canvas' +p8080 +sg8 +S'1834' +p8081 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a000025d.jpg' +p8082 +sg12 +g27 +sa(dp8083 +g2 +S'Portrait Study - Mrs. Phillip' +p8084 +sg4 +S'James McNeill Whistler' +p8085 +sg6 +S'lithograph' +p8086 +sg8 +S'1896' +p8087 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abb8.jpg' +p8088 +sg12 +g27 +sa(dp8089 +g2 +S'Savoy Pigeons' +p8090 +sg4 +S'James McNeill Whistler' +p8091 +sg6 +S'lithograph' +p8092 +sg8 +S'1896' +p8093 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab01.jpg' +p8094 +sg12 +g27 +sa(dp8095 +g2 +S'Evening - Little Waterloo Bridge' +p8096 +sg4 +S'James McNeill Whistler' +p8097 +sg6 +S'lithograph' +p8098 +sg8 +S'1896' +p8099 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab02.jpg' +p8100 +sg12 +g27 +sa(dp8101 +g2 +S'Charing Cross Railway Bridge' +p8102 +sg4 +S'James McNeill Whistler' +p8103 +sg6 +S'lithograph' +p8104 +sg8 +S'1896' +p8105 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab06.jpg' +p8106 +sg12 +g27 +sa(dp8107 +g2 +S'Little London' +p8108 +sg4 +S'James McNeill Whistler' +p8109 +sg6 +S'lithograph' +p8110 +sg8 +S'1896' +p8111 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aafb.jpg' +p8112 +sg12 +g27 +sa(dp8113 +g2 +S'Waterloo Bridge' +p8114 +sg4 +S'James McNeill Whistler' +p8115 +sg6 +S'lithograph' +p8116 +sg8 +S'1896' +p8117 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aafa.jpg' +p8118 +sg12 +g27 +sa(dp8119 +g2 +S'The Thames' +p8120 +sg4 +S'James McNeill Whistler' +p8121 +sg6 +S'lithograph' +p8122 +sg8 +S'1896' +p8123 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abbb.jpg' +p8124 +sg12 +g27 +sa(dp8125 +g2 +S"Saint Anne's, Soho" +p8126 +sg4 +S'James McNeill Whistler' +p8127 +sg6 +S'lithograph' +p8128 +sg8 +S'1896' +p8129 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab12.jpg' +p8130 +sg12 +g27 +sa(dp8131 +g2 +S'Sketch of Mr. Henley' +p8132 +sg4 +S'James McNeill Whistler' +p8133 +sg6 +S'lithograph' +p8134 +sg8 +S'1896' +p8135 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab0d.jpg' +p8136 +sg12 +g27 +sa(dp8137 +g2 +S"The Butcher's Dog" +p8138 +sg4 +S'James McNeill Whistler' +p8139 +sg6 +S'lithograph' +p8140 +sg8 +S'1896' +p8141 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab0b.jpg' +p8142 +sg12 +g27 +sa(dp8143 +g2 +S'Andrew Jackson' +p8144 +sg4 +S'Thomas Sully' +p8145 +sg6 +S'oil on canvas' +p8146 +sg8 +S'1845' +p8147 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a000025e.jpg' +p8148 +sg12 +g27 +sa(dp8149 +g2 +S"The Butcher's Dog" +p8150 +sg4 +S'James McNeill Whistler' +p8151 +sg6 +S'lithograph' +p8152 +sg8 +S'1896' +p8153 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab8c.jpg' +p8154 +sg12 +g27 +sa(dp8155 +g2 +S'St. Giles-in-the-Fields' +p8156 +sg4 +S'James McNeill Whistler' +p8157 +sg6 +S'lithograph' +p8158 +sg8 +S'1896' +p8159 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab11.jpg' +p8160 +sg12 +g27 +sa(dp8161 +g2 +S'Little London Model' +p8162 +sg4 +S'James McNeill Whistler' +p8163 +sg6 +S'lithograph' +p8164 +sg8 +S'1896' +p8165 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab0f.jpg' +p8166 +sg12 +g27 +sa(dp8167 +g2 +S'Count Robert de Montesquiou' +p8168 +sg4 +S'James McNeill Whistler' +p8169 +sg6 +S'lithograph' +p8170 +sg8 +S'1895' +p8171 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abb5.jpg' +p8172 +sg12 +g27 +sa(dp8173 +g2 +S'Count Robert de Montesquiou, No.II' +p8174 +sg4 +S'James McNeill Whistler' +p8175 +sg6 +S'lithograph' +p8176 +sg8 +S'1895' +p8177 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abb3.jpg' +p8178 +sg12 +g27 +sa(dp8179 +g2 +S'Count Robert de Montesquiou, No.III' +p8180 +sg4 +S'James McNeill Whistler' +p8181 +sg6 +S'lithograph' +p8182 +sg8 +S'1895' +p8183 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abb4.jpg' +p8184 +sg12 +g27 +sa(dp8185 +g2 +S'The Garden Porch' +p8186 +sg4 +S'James McNeill Whistler' +p8187 +sg6 +S'lithograph' +p8188 +sg8 +S'1894' +p8189 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abb6.jpg' +p8190 +sg12 +g27 +sa(dp8191 +g2 +S'Sketch of a Blacksmith' +p8192 +sg4 +S'James McNeill Whistler' +p8193 +sg6 +S'lithograph' +p8194 +sg8 +S'1895' +p8195 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab08.jpg' +p8196 +sg12 +g27 +sa(dp8197 +g2 +S'Sketch - Grand Rue Dieppe' +p8198 +sg4 +S'James McNeill Whistler' +p8199 +sg6 +S'lithograph' +p8200 +sg8 +S'1891' +p8201 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab09.jpg' +p8202 +sg12 +g27 +sa(dp8203 +g2 +S'Abraham Kintzing' +p8204 +sg4 +S'Thomas Sully' +p8205 +sg6 +S'oil on canvas' +p8206 +sg8 +S'1815' +p8207 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a000025f.jpg' +p8208 +sg12 +g27 +sa(dp8209 +g2 +S'Sketch - Grand Rue Dieppe' +p8210 +sg4 +S'James McNeill Whistler' +p8211 +sg6 +S'lithograph' +p8212 +sg8 +S'1891' +p8213 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab07.jpg' +p8214 +sg12 +g27 +sa(dp8215 +g2 +S'Afternoon Tea' +p8216 +sg4 +S'Artist Information (' +p8217 +sg6 +S'French, 1867 - 1939' +p8218 +sg8 +S'(artist)' +p8219 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abb2.jpg' +p8220 +sg12 +g27 +sa(dp8221 +g2 +S'Portrait Study - Miss Charlotte R. Williams' +p8222 +sg4 +S'James McNeill Whistler' +p8223 +sg6 +S'lithograph' +p8224 +sg8 +S'unknown date\n' +p8225 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab0a.jpg' +p8226 +sg12 +g27 +sa(dp8227 +g2 +S'St\xc3\xa9phane Mallarm\xc3\xa9' +p8228 +sg4 +S'James McNeill Whistler' +p8229 +sg6 +S'lithograph' +p8230 +sg8 +S'1894' +p8231 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab1e.jpg' +p8232 +sg12 +g27 +sa(dp8233 +g2 +S'The Shoemaker' +p8234 +sg4 +S'James McNeill Whistler' +p8235 +sg6 +S'lithograph' +p8236 +sg8 +S'unknown date\n' +p8237 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abb1.jpg' +p8238 +sg12 +g27 +sa(dp8239 +g2 +S'The Medici Collar' +p8240 +sg4 +S'James McNeill Whistler' +p8241 +sg6 +S'lithograph' +p8242 +sg8 +S'unknown date\n' +p8243 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab1b.jpg' +p8244 +sg12 +g27 +sa(dp8245 +g2 +S'Draped Figure Standing' +p8246 +sg4 +S'James McNeill Whistler' +p8247 +sg6 +S'lithograph' +p8248 +sg8 +S'unknown date\n' +p8249 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab16.jpg' +p8250 +sg12 +g27 +sa(dp8251 +g2 +S'Draped Figure Reclining' +p8252 +sg4 +S'James McNeill Whistler' +p8253 +sg6 +S'color lithograph' +p8254 +sg8 +S'unknown date\n' +p8255 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bbe.jpg' +p8256 +sg12 +g27 +sa(dp8257 +g2 +S'The Girl' +p8258 +sg4 +S'James McNeill Whistler' +p8259 +sg6 +S'lithograph' +p8260 +sg8 +S'unknown date\n' +p8261 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab1a.jpg' +p8262 +sg12 +g27 +sa(dp8263 +g2 +S'Nude Figure Seated' +p8264 +sg4 +S'James McNeill Whistler' +p8265 +sg6 +S'lithograph' +p8266 +sg8 +S'unknown date\n' +p8267 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab18.jpg' +p8268 +sg12 +g27 +sa(dp8269 +g2 +S'Lady Caroline Howard' +p8270 +sg4 +S'Sir Joshua Reynolds' +p8271 +sg6 +S'oil on canvas' +p8272 +sg8 +S'1778' +p8273 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a0000578.jpg' +p8274 +sg12 +S' Lady Caroline Howard, daughter of Frederick, the fifth Earl of Carlisle, and\nMargaret Caroline Howard, and niece of Lady Delmé, was portrayed by Reynolds at\nthe age of seven.\n Reynolds deliberately imposed on his compositions certain\nformal artistic qualities that would give them the solidity and nobility of Greek,\nRoman, and Renaissance art. He also liked to suggest associations in his portraits\nthat elevate them to some level beyond the merely descriptive. Roses are symbolically\nrelated to Venus and the Three Graces, and Reynolds may well have intended to allude\nto their attributes, Chastity, Beauty, and Love, as ideals to which Lady Caroline\nshould aspire.\n Lady Caroline\'s father affectionately described his daughter as a determined, strong-minded\nchild whose need for discipline he met fairly but reluctantly. He wrote that she\nwas "always a great favorite," suggesting that her spirited personality made her\nfaults tolerable. Reynolds captured some of Lady Caroline\'s complexity in the serious,\nintent expression of her attractive face, her averted gaze, and the tension implied\nin her closed left hand.\n ' +p8275 +sa(dp8276 +g2 +S'Zachariah Schoonmaker' +p8277 +sg4 +S'John Vanderlyn' +p8278 +sg6 +S'oil on canvas' +p8279 +sg8 +S'1815/1818' +p8280 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a0000283.jpg' +p8281 +sg12 +g27 +sa(dp8282 +g2 +S'Draped Model Standing' +p8283 +sg4 +S'James McNeill Whistler' +p8284 +sg6 +S'lithograph' +p8285 +sg8 +S'unknown date\n' +p8286 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab19.jpg' +p8287 +sg12 +g27 +sa(dp8288 +g2 +S'Mrs or Miss McNay' +p8289 +sg4 +S'James McNeill Whistler' +p8290 +sg6 +S'pen and brown ink on folded wove paper' +p8291 +sg8 +S'1882' +p8292 +sg10 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0f3.jpg' +p8293 +sg12 +g27 +sa(dp8294 +g2 +S'Standing Female Nude a Holding Bowl [recto]' +p8295 +sg4 +S'James McNeill Whistler' +p8296 +sg6 +S'graphite, colored chalk and pastel on brown paper' +p8297 +sg8 +S'1868/1873' +p8298 +sg10 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4d8.jpg' +p8299 +sg12 +g27 +sa(dp8300 +g12 +g27 +sg6 +S'graphite, chalk and pastel on brown paper' +p8301 +sg8 +S'1868/1873' +p8302 +sg2 +S'Study for "Variations in Blue and Green" [verso]' +p8303 +sg4 +S'James McNeill Whistler' +p8304 +sa(dp8305 +g2 +S'Nude Standing with Legs Crossed' +p8306 +sg4 +S'James McNeill Whistler' +p8307 +sg6 +S'chalk on brown paper' +p8308 +sg8 +S'c. 1878' +p8309 +sg10 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4d7.jpg' +p8310 +sg12 +g27 +sa(dp8311 +g2 +S'Nude Leaning on a Rail [recto]' +p8312 +sg4 +S'James McNeill Whistler' +p8313 +sg6 +S'chalk and pastel on brown paper' +p8314 +sg8 +S'1871/1874' +p8315 +sg10 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4d9.jpg' +p8316 +sg12 +g27 +sa(dp8317 +g12 +g27 +sg6 +S'chalk on brown paper' +p8318 +sg8 +S'1871/1874' +p8319 +sg2 +S'Standing Figure [verso]' +p8320 +sg4 +S'James McNeill Whistler' +p8321 +sa(dp8322 +g2 +S'Seated Woman with Red Hair' +p8323 +sg4 +S'James McNeill Whistler' +p8324 +sg6 +S'pastel and chalk on brown paper' +p8325 +sg8 +S'1870/1873' +p8326 +sg10 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4da.jpg' +p8327 +sg12 +g27 +sa(dp8328 +g2 +S'Sheet of Sketches [recto]' +p8329 +sg4 +S'Beatrice Godwin Whistler' +p8330 +sg6 +S'graphite on laid paper' +p8331 +sg8 +S'late 19th century' +p8332 +sg10 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0fc.jpg' +p8333 +sg12 +g27 +sa(dp8334 +g2 +S'Studies for Jewelry Designs [recto]' +p8335 +sg4 +S'Beatrice Godwin Whistler' +p8336 +sg6 +S'graphite and pen and brown ink on laid paper' +p8337 +sg8 +S'late 19th century' +p8338 +sg10 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0f9.jpg' +p8339 +sg12 +g27 +sa(dp8340 +g2 +S'Portrait of a Lady' +p8341 +sg4 +S'Unknown 19th Century' +p8342 +sg6 +S'overall: 62.7 x 52 cm (24 11/16 x 20 1/2 in.)\r\nframed: 84.5 x 72.7 cm (33 1/4 x 28 5/8 in.)' +p8343 +sg8 +S'\noil on canvas' +p8344 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c569.jpg' +p8345 +sg12 +g27 +sa(dp8346 +g2 +S'Studies for Jewelry Designs [recto]' +p8347 +sg4 +S'Beatrice Godwin Whistler' +p8348 +sg6 +S'graphite on an envelope of laid paper' +p8349 +sg8 +S'late 19th century' +p8350 +sg10 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0fd.jpg' +p8351 +sg12 +g27 +sa(dp8352 +g2 +S'Harper Pennington' +p8353 +sg4 +S'James McNeill Whistler' +p8354 +sg6 +S'chalk and pastel on brown paper' +p8355 +sg8 +S'1880/1882' +p8356 +sg10 +S'http://www.nga.gov:80/thumb-l/a00009/a00009f7.jpg' +p8357 +sg12 +g27 +sa(dp8358 +g2 +S'Woman with a Fan' +p8359 +sg4 +S'James McNeill Whistler' +p8360 +sg6 +S'black crayon heightened with white (chalk?) on brown paper' +p8361 +sg8 +S'1873/1875' +p8362 +sg10 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0f1.jpg' +p8363 +sg12 +g27 +sa(dp8364 +g2 +S'Two Sketches of Landscape Pictures hung at the Society of British Artists' +p8365 +sg4 +S'James McNeill Whistler' +p8366 +sg6 +S'graphite on laid paper' +p8367 +sg8 +S'probably 1887' +p8368 +sg10 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0f6.jpg' +p8369 +sg12 +g27 +sa(dp8370 +g2 +S"Sketch of Mrs. Godwin's Portrait when hung at the Society of British Artists" +p8371 +sg4 +S'James McNeill Whistler' +p8372 +sg6 +S'graphite on laid paper' +p8373 +sg8 +S'1886/1887' +p8374 +sg10 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0f8.jpg' +p8375 +sg12 +g27 +sa(dp8376 +g2 +S'Miss Cumberlege' +p8377 +sg4 +S'James McNeill Whistler' +p8378 +sg6 +S'pen and brown ink on wove paper' +p8379 +sg8 +S'1882' +p8380 +sg10 +S'http://www.nga.gov:80/thumb-l/a00009/a00009f8.jpg' +p8381 +sg12 +g27 +sa(dp8382 +g2 +S'Arrangement in Black - No.3' +p8383 +sg4 +S'James McNeill Whistler' +p8384 +sg6 +S'graphite, pen and brown ink on off-white laid paper' +p8385 +sg8 +S'1881' +p8386 +sg10 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0f4.jpg' +p8387 +sg12 +g27 +sa(dp8388 +g2 +S'At Sea' +p8389 +sg4 +S'James McNeill Whistler' +p8390 +sg6 +S'pen and brown ink on wove paper' +p8391 +sg8 +S'probably 1901' +p8392 +sg10 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0f7.jpg' +p8393 +sg12 +g27 +sa(dp8394 +g2 +S'Nocturnal Note' +p8395 +sg4 +S'James McNeill Whistler' +p8396 +sg6 +S'black crayon on wove paper' +p8397 +sg8 +S'probably 1880' +p8398 +sg10 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdcb.jpg' +p8399 +sg12 +g27 +sa(dp8400 +g12 +g27 +sg6 +S', late 19th century' +p8401 +sg8 +S'\n' +p8402 +sg2 +S'Venice' +p8403 +sg4 +S'James McNeill Whistler' +p8404 +sa(dp8405 +g2 +S'Robert G. L. De Peyster' +p8406 +sg4 +S'Samuel Lovett Waldo' +p8407 +sg6 +S'oil on wood' +p8408 +sg8 +S'1828' +p8409 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a0000287.jpg' +p8410 +sg12 +g27 +sa(dp8411 +g2 +S'Standing Female Figure' +p8412 +sg4 +S'James McNeill Whistler' +p8413 +sg6 +S'pen and brown ink on the back of a printed calling card for Mrs. Henry B. Callander, 72, Cadogan Place' +p8414 +sg8 +S'c. 1883' +p8415 +sg10 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0f5.jpg' +p8416 +sg12 +g27 +sa(dp8417 +g2 +S'Sketch of Maud' +p8418 +sg4 +S'James McNeill Whistler' +p8419 +sg6 +S'pen and brown ink on laid paper' +p8420 +sg8 +S'c. 1871/1873' +p8421 +sg10 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0f2.jpg' +p8422 +sg12 +g27 +sa(dp8423 +g12 +g27 +sg6 +S'color linoleum cut' +p8424 +sg8 +S'1943' +p8425 +sg2 +S'Once Upon a Midnight Dreary' +p8426 +sg4 +S'Ernest William Watson' +p8427 +sa(dp8428 +g2 +S'The Two Couples in the Forest' +p8429 +sg4 +S'Artist Information (' +p8430 +sg6 +S'(artist after)' +p8431 +sg8 +S'\n' +p8432 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cec1.jpg' +p8433 +sg12 +g27 +sa(dp8434 +g2 +S'Abel Francois Poisson, Marquis de Marigny' +p8435 +sg4 +S'Artist Information (' +p8436 +sg6 +S'(artist after)' +p8437 +sg8 +S'\n' +p8438 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b389.jpg' +p8439 +sg12 +g27 +sa(dp8440 +g12 +g27 +sg6 +S'etching on laid paper' +p8441 +sg8 +S'1918' +p8442 +sg2 +S'North End of Telegraph Hill' +p8443 +sg4 +S'John W. Winkler' +p8444 +sa(dp8445 +g12 +g27 +sg6 +S'etching on laid paper' +p8446 +sg8 +S'1920' +p8447 +sg2 +S'Old Wharves of San Francisco' +p8448 +sg4 +S'John W. Winkler' +p8449 +sa(dp8450 +g12 +g27 +sg6 +S'etching on wove paper' +p8451 +sg8 +S'1922' +p8452 +sg2 +S'Ginger Shop' +p8453 +sg4 +S'John W. Winkler' +p8454 +sa(dp8455 +g2 +S"Noah's Ark" +p8456 +sg4 +S'Pierre II Woeiriot de Bouzey' +p8457 +sg6 +S', unknown date' +p8458 +sg8 +S'\n' +p8459 +sg10 +S'http://www.nga.gov:80/thumb-l/a00083/a00083a7.jpg' +p8460 +sg12 +g27 +sa(dp8461 +g2 +S'Pharaoh and the Plague of Frogs' +p8462 +sg4 +S'Pierre II Woeiriot de Bouzey' +p8463 +sg6 +S', unknown date' +p8464 +sg8 +S'\n' +p8465 +sg10 +S'http://www.nga.gov:80/thumb-l/a00083/a000839c.jpg' +p8466 +sg12 +g27 +sa(dp8467 +g2 +S'Benjamin West' +p8468 +sg4 +S'Artist Information (' +p8469 +sg6 +S'American, 1738 - 1820' +p8470 +sg8 +S'(artist after)' +p8471 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a0000293.jpg' +p8472 +sg12 +g27 +sa(dp8473 +g12 +g27 +sg6 +S'etching' +p8474 +sg8 +S'published 1939' +p8475 +sg2 +S'Winter Chores' +p8476 +sg4 +S'Ronau William Woiceske' +p8477 +sa(dp8478 +g2 +S'Winter, the Fox Hunt' +p8479 +sg4 +S'Artist Information (' +p8480 +sg6 +S'(artist after)' +p8481 +sg8 +S'\n' +p8482 +sg10 +S'http://www.nga.gov:80/thumb-l/a000f2/a000f2d1.jpg' +p8483 +sg12 +g27 +sa(dp8484 +g12 +g27 +sg6 +S'etching' +p8485 +sg8 +S'unknown date\n' +p8486 +sg2 +S'Black Cap' +p8487 +sg4 +S'Franklin T. Wood' +p8488 +sa(dp8489 +g12 +g27 +sg6 +S'etching' +p8490 +sg8 +S'unknown date\n' +p8491 +sg2 +S'Back to Earth' +p8492 +sg4 +S'George Hand Wright' +p8493 +sa(dp8494 +g12 +g27 +sg6 +S'wood engraving [print and wrapper]' +p8495 +sg8 +S'1939' +p8496 +sg2 +S'Forest Pool' +p8497 +sg4 +S'John Buckland Wright' +p8498 +sa(dp8499 +g2 +S'Madonna' +p8500 +sg4 +S'Anders Zorn' +p8501 +sg6 +S'etching' +p8502 +sg8 +S'1900' +p8503 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed35.jpg' +p8504 +sg12 +g27 +sa(dp8505 +g2 +S'Anatole France' +p8506 +sg4 +S'Anders Zorn' +p8507 +sg6 +S'etching' +p8508 +sg8 +S'1906' +p8509 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed26.jpg' +p8510 +sg12 +g27 +sa(dp8511 +g2 +S'Mona' +p8512 +sg4 +S'Anders Zorn' +p8513 +sg6 +S'etching in dark brown' +p8514 +sg8 +S'1911' +p8515 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed39.jpg' +p8516 +sg12 +g27 +sa(dp8517 +g2 +S'Dagmar' +p8518 +sg4 +S'Anders Zorn' +p8519 +sg6 +S'etching' +p8520 +sg8 +S'1912' +p8521 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed3b.jpg' +p8522 +sg12 +g27 +sa(dp8523 +g2 +S'An Irish Girl' +p8524 +sg4 +S'Anders Zorn' +p8525 +sg6 +S'etching' +p8526 +sg8 +S'1894' +p8527 +sg10 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005da9.jpg' +p8528 +sg12 +g27 +sa(dp8529 +g2 +S'Mary Walton Morris' +p8530 +sg4 +S'John Wollaston' +p8531 +sg6 +S'oil on canvas' +p8532 +sg8 +S'1749/1752' +p8533 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a00002a4.jpg' +p8534 +sg12 +g27 +sa(dp8535 +g2 +S'Storm' +p8536 +sg4 +S'Anders Zorn' +p8537 +sg6 +S'etching on laid paper' +p8538 +sg8 +S'1891' +p8539 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed2f.jpg' +p8540 +sg12 +g27 +sa(dp8541 +g2 +S'Girl with Cigarette' +p8542 +sg4 +S'Anders Zorn' +p8543 +sg6 +S'etching' +p8544 +sg8 +S'1891' +p8545 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed30.jpg' +p8546 +sg12 +g27 +sa(dp8547 +g2 +S'Fisherman at Saint Ives' +p8548 +sg4 +S'Anders Zorn' +p8549 +sg6 +S'etching' +p8550 +sg8 +S'1891' +p8551 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed2d.jpg' +p8552 +sg12 +g27 +sa(dp8553 +g2 +S'Mrs. Granberg' +p8554 +sg4 +S'Anders Zorn' +p8555 +sg6 +S'etching' +p8556 +sg8 +S'1903' +p8557 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed32.jpg' +p8558 +sg12 +g27 +sa(dp8559 +g2 +S'Albert Besnard and His Model' +p8560 +sg4 +S'Anders Zorn' +p8561 +sg6 +S'etching' +p8562 +sg8 +S'1896' +p8563 +sg10 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005daa.jpg' +p8564 +sg12 +g27 +sa(dp8565 +g2 +S'Ernest Renan' +p8566 +sg4 +S'Anders Zorn' +p8567 +sg6 +S'etching' +p8568 +sg8 +S'1892' +p8569 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed29.jpg' +p8570 +sg12 +g27 +sa(dp8571 +g2 +S'The Waltz' +p8572 +sg4 +S'Anders Zorn' +p8573 +sg6 +S'etching' +p8574 +sg8 +S'1891' +p8575 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed2b.jpg' +p8576 +sg12 +g27 +sa(dp8577 +g2 +S'Auguste Rodin' +p8578 +sg4 +S'Anders Zorn' +p8579 +sg6 +S'etching' +p8580 +sg8 +S'1906' +p8581 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed3e.jpg' +p8582 +sg12 +g27 +sa(dp8583 +g2 +S'Bather III (Baigneuse de Dos)' +p8584 +sg4 +S'Anders Zorn' +p8585 +sg6 +S'etching' +p8586 +sg8 +S'1896' +p8587 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed34.jpg' +p8588 +sg12 +g27 +sa(dp8589 +g2 +S'Precipice' +p8590 +sg4 +S'Anders Zorn' +p8591 +sg6 +S'etching' +p8592 +sg8 +S'1909' +p8593 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed3a.jpg' +p8594 +sg12 +g27 +sa(dp8595 +g2 +S'A Gentleman of the Morris Family' +p8596 +sg4 +S'John Wollaston' +p8597 +sg6 +S'oil on canvas' +p8598 +sg8 +S'1749/1752' +p8599 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a00002a5.jpg' +p8600 +sg12 +g27 +sa(dp8601 +g2 +S'A Toast II' +p8602 +sg4 +S'Anders Zorn' +p8603 +sg6 +S'etching' +p8604 +sg8 +S'1893' +p8605 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed38.jpg' +p8606 +sg12 +g27 +sa(dp8607 +g12 +g27 +sg6 +S'etching' +p8608 +sg8 +S'unknown date\n' +p8609 +sg2 +S'Manolas' +p8610 +sg4 +S'Ignacio Zuloaga' +p8611 +sa(dp8612 +g12 +g27 +sg6 +S'etching' +p8613 +sg8 +S'unknown date\n' +p8614 +sg2 +S'Manolas' +p8615 +sg4 +S'Ignacio Zuloaga' +p8616 +sa(dp8617 +g2 +S'The Baptism of Christ' +p8618 +sg4 +S'Netherlandish 16th Century' +p8619 +sg6 +S'Overall: 40.3 x 50.7 cm (15 7/8 x 19 15/16 in.)\r\nsupport: 46.8 x 60.4 cm (18 7/16 x 23 3/4 in.)' +p8620 +sg8 +S'\nblack chalk heightened with white chalk' +p8621 +sg10 +S'http://www.nga.gov:80/thumb-l/a00071/a00071c0.jpg' +p8622 +sg12 +g27 +sa(dp8623 +g2 +S'Descent from the Cross' +p8624 +sg4 +S'Artist Information (' +p8625 +sg6 +S'Italian, c. 1509 - 1566' +p8626 +sg8 +S'(artist after)' +p8627 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a00074a6.jpg' +p8628 +sg12 +g27 +sa(dp8629 +g2 +S'Horatius Cocles Defending Rome' +p8630 +sg4 +S'Artist Information (' +p8631 +sg6 +S'(artist)' +p8632 +sg8 +S'\n' +p8633 +sg10 +S'http://www.nga.gov:80/thumb-l/a00075/a0007524.jpg' +p8634 +sg12 +g27 +sa(dp8635 +g2 +S'Madonna and Child with Rosary and Saint' +p8636 +sg4 +S'Abraham van Diepenbeeck' +p8637 +sg6 +S'black and red chalk with gray wash, heightened with white' +p8638 +sg8 +S'unknown date\n' +p8639 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cf8.jpg' +p8640 +sg12 +g27 +sa(dp8641 +g2 +S'The Brazen Serpent' +p8642 +sg4 +S'Artist Information (' +p8643 +sg6 +S'Italian, 1518 - 1594' +p8644 +sg8 +S'(artist after)' +p8645 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a00074a3.jpg' +p8646 +sg12 +g27 +sa(dp8647 +g2 +S'The Martyrdom of Saint Lawrence' +p8648 +sg4 +S'Italian 16th Century' +p8649 +sg6 +S'overall (shield-shaped): 32.6 x 37.5 cm (12 13/16 x 14 3/4 in.)' +p8650 +sg8 +S'\npen and brown ink with gray-brown wash heightened with white on gray-blue paper' +p8651 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a00074a0.jpg' +p8652 +sg12 +g27 +sa(dp8653 +g2 +S'Ceres Changing Ascalaphus into a Bird of Evil Omen' +p8654 +sg4 +S'Paolo Farinati' +p8655 +sg6 +S'pen and brown ink with brown wash heightened with white on blue laid paper' +p8656 +sg8 +S'unknown date\n' +p8657 +sg10 +S'http://www.nga.gov:80/thumb-l/a00075/a000753f.jpg' +p8658 +sg12 +g27 +sa(dp8659 +g12 +g27 +sg6 +S'engraving' +p8660 +sg8 +S'unknown date\n' +p8661 +sg2 +S'The Washington Family' +p8662 +sg4 +S'Edward Savage' +p8663 +sa(dp8664 +g2 +S'Flagellation of Christ' +p8665 +sg4 +S'Luca Cambiaso' +p8666 +sg6 +S'pen and brown ink on laid paper' +p8667 +sg8 +S'unknown date\n' +p8668 +sg10 +S'http://www.nga.gov:80/thumb-l/a00075/a0007531.jpg' +p8669 +sg12 +g27 +sa(dp8670 +g2 +S'God Enthroned Surrounded by Saints' +p8671 +sg4 +S'Giovanni Battista Trotti' +p8672 +sg6 +S'pen and brown ink with brown wash over black chalk (graphite?) on laid paper' +p8673 +sg8 +S'possibly 1585/1590' +p8674 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a00074a5.jpg' +p8675 +sg12 +g27 +sa(dp8676 +g2 +S'Judith with the Head of Holofernes' +p8677 +sg4 +S'Carlo Maratta' +p8678 +sg6 +S'red chalk on laid paper' +p8679 +sg8 +S'unknown date\n' +p8680 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a00074c1.jpg' +p8681 +sg12 +g27 +sa(dp8682 +g2 +S'Coronation of the Emperor' +p8683 +sg4 +S'Artist Information (' +p8684 +sg6 +S'Flemish, 1532 - 1603' +p8685 +sg8 +S'(artist after)' +p8686 +sg10 +S'http://www.nga.gov:80/thumb-l/a00070/a000709d.jpg' +p8687 +sg12 +g27 +sa(dp8688 +g2 +S'Procris and Cephalus (?)' +p8689 +sg4 +S'Artist Information (' +p8690 +sg6 +S'French, 1590 - 1649' +p8691 +sg8 +S'(related artist)' +p8692 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cfd.jpg' +p8693 +sg12 +g27 +sa(dp8694 +g2 +S'Scipio Restoring His Captive to Her Lover' +p8695 +sg4 +S'Italian 17th Century' +p8696 +sg6 +S'overall: 38 x 22.5 cm (14 15/16 x 8 7/8 in.)' +p8697 +sg8 +S'\nblack chalk with black wash and white heightening on green-blue paper' +p8698 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a0007488.jpg' +p8699 +sg12 +g27 +sa(dp8700 +g2 +S'Holy Family with Infant Saint John' +p8701 +sg4 +S'Luca Cambiaso' +p8702 +sg6 +S'pen and brown ink with brown wash on brown paper' +p8703 +sg8 +S'unknown date\n' +p8704 +sg10 +S'http://www.nga.gov:80/thumb-l/a00075/a0007534.jpg' +p8705 +sg12 +g27 +sa(dp8706 +g2 +S'The Conversion of Saint Paul' +p8707 +sg4 +S'Artist Information (' +p8708 +sg6 +S'Italian, 1555 - 1619' +p8709 +sg8 +S'(artist after)' +p8710 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a00074d2.jpg' +p8711 +sg12 +g27 +sa(dp8712 +g2 +S'Triumphal Procession' +p8713 +sg4 +S'Baccio Bandinelli' +p8714 +sg6 +S'pen and brown ink on laid paper' +p8715 +sg8 +S'unknown date\n' +p8716 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a0007499.jpg' +p8717 +sg12 +g27 +sa(dp8718 +g2 +S'The Last Supper' +p8719 +sg4 +S'Italian 16th Century' +p8720 +sg6 +S'overall: 26 x 43 cm (10 1/4 x 16 15/16 in.)' +p8721 +sg8 +S'\npen and brown ink with brown wash and white heightening squared in black chalk on laid paper' +p8722 +sg10 +S'http://www.nga.gov:80/thumb-l/a00075/a0007523.jpg' +p8723 +sg12 +g27 +sa(dp8724 +g2 +S'Andrew W. Mellon' +p8725 +sg4 +S'Jo Davidson' +p8726 +sg6 +S'bronze' +p8727 +sg8 +S'1927' +p8728 +sg10 +S'http://www.nga.gov:80/thumb-l/a00016/a00016d8.jpg' +p8729 +sg12 +g27 +sa(dp8730 +g2 +S'Ecstasy of a Saint' +p8731 +sg4 +S'Artist Information (' +p8732 +sg6 +S'Italian, 1582 - 1647' +p8733 +sg8 +S'(related artist)' +p8734 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a00074b0.jpg' +p8735 +sg12 +g27 +sa(dp8736 +g2 +S'Madonna Surrounded by Saints' +p8737 +sg4 +S'Domenico Piola I' +p8738 +sg6 +S'charcoal with brown wash on laid paper' +p8739 +sg8 +S'unknown date\n' +p8740 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a00074bf.jpg' +p8741 +sg12 +g27 +sa(dp8742 +g2 +S'Death of Phaeton' +p8743 +sg4 +S'Artist Information (' +p8744 +sg6 +S'(artist after)' +p8745 +sg8 +S'\n' +p8746 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d25.jpg' +p8747 +sg12 +g27 +sa(dp8748 +g2 +S'Saint Luke' +p8749 +sg4 +S'Netherlandish 16th Century' +p8750 +sg6 +S'overall: 17.8 x 13.9 cm (7 x 5 1/2 in.)' +p8751 +sg8 +S'\npen and brown ink with brown wash over red chalk on laid paper' +p8752 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ec8.jpg' +p8753 +sg12 +g27 +sa(dp8754 +g2 +S'The Annunciation' +p8755 +sg4 +S'Artist Information (' +p8756 +sg6 +S'Flemish, c. 1519 - 1570' +p8757 +sg8 +S'(related artist)' +p8758 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e52.jpg' +p8759 +sg12 +g27 +sa(dp8760 +g2 +S'Scene from Ancient History' +p8761 +sg4 +S'Artist Information (' +p8762 +sg6 +S'Italian, c. 1499 - probably 1543' +p8763 +sg8 +S'(artist after)' +p8764 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fc4.jpg' +p8765 +sg12 +g27 +sa(dp8766 +g2 +S'Two Figures Struggling before a King' +p8767 +sg4 +S'Cesare Nebbia' +p8768 +sg6 +S'pen and brown ink with brown wash over black chalk on laid paper' +p8769 +sg8 +S'probably c. 1567/1569' +p8770 +sg10 +S'http://www.nga.gov:80/thumb-l/a00065/a00065d4.jpg' +p8771 +sg12 +g27 +sa(dp8772 +g2 +S'Sacrifice Scene (Gaius Mucius Scaevola?)' +p8773 +sg4 +S'Netherlandish 16th Century' +p8774 +sg6 +S'overall (octagon): 24.7 x 35.7 cm (9 3/4 x 14 1/16 in.)' +p8775 +sg8 +S'\npen and brown ink with brown wash on laid paper' +p8776 +sg10 +S'http://www.nga.gov:80/thumb-l/a00070/a0007022.jpg' +p8777 +sg12 +g27 +sa(dp8778 +g2 +S'The Last Judgment' +p8779 +sg4 +S'Giovanni Battista della Rovere' +p8780 +sg6 +S'pen and brown ink with brown wash over graphite' +p8781 +sg8 +S'unknown date\n' +p8782 +sg10 +S'http://www.nga.gov:80/thumb-l/a00075/a000757e.jpg' +p8783 +sg12 +g27 +sa(dp8784 +g2 +S'Tribute Money' +p8785 +sg4 +S'Artist Information (' +p8786 +sg6 +S'Flemish, 1577 - 1640' +p8787 +sg8 +S'(artist after)' +p8788 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e20.jpg' +p8789 +sg12 +g27 +sa(dp8790 +g2 +S'The Feast of the Gods' +p8791 +sg4 +S'Artist Information (' +p8792 +sg6 +S'(painter)' +p8793 +sg8 +S'\n' +p8794 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a00005f2.jpg' +p8795 +sg12 +S'Giovanni Bellini and Titian\xe2\x80\x99s \n The \n ' +p8796 +sa(dp8797 +g2 +S'Historical Scene [recto]' +p8798 +sg4 +S'Angelo Marullo' +p8799 +sg6 +S'pen and brown ink with brown wash over black chalk on laid paper' +p8800 +sg8 +S'unknown date\n' +p8801 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a00074bc.jpg' +p8802 +sg12 +g27 +sa(dp8803 +g2 +S'Two Draped Female Figures; Rest on the Flight into Egypt [verso]' +p8804 +sg4 +S'Angelo Marullo' +p8805 +sg6 +S'pen and brown ink with brown wash over black chalk on laid paper' +p8806 +sg8 +S'unknown date\n' +p8807 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a00074bd.jpg' +p8808 +sg12 +g27 +sa(dp8809 +g2 +S'Figure of a Man' +p8810 +sg4 +S'Artist Information (' +p8811 +sg6 +S'Italian, c. 1499 - probably 1543' +p8812 +sg8 +S'(artist after)' +p8813 +sg10 +S'http://www.nga.gov:80/thumb-l/a00075/a0007577.jpg' +p8814 +sg12 +g27 +sa(dp8815 +g2 +S'The Meeting of San Carlo Borromeo and San Filippo Neri' +p8816 +sg4 +S'Italian 17th Century' +p8817 +sg6 +S'overall (approximate): 16.5 x 37.6 cm (6 1/2 x 14 13/16 in.)' +p8818 +sg8 +S'\npen and brown ink with brown wash on laid paper' +p8819 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a0007487.jpg' +p8820 +sg12 +g27 +sa(dp8821 +g2 +S'Sacrifice of Abraham' +p8822 +sg4 +S'Alessandro Allori' +p8823 +sg6 +S'pen and brown ink with gray wash over black chalk on darkened paper' +p8824 +sg8 +S'unknown date\n' +p8825 +sg10 +S'http://www.nga.gov:80/thumb-l/a00075/a0007520.jpg' +p8826 +sg12 +g27 +sa(dp8827 +g2 +S'Battle Scene' +p8828 +sg4 +S'Girolamo Genga' +p8829 +sg6 +S'pen and brown ink on laid paper' +p8830 +sg8 +S'unknown date\n' +p8831 +sg10 +S'http://www.nga.gov:80/thumb-l/a00075/a0007540.jpg' +p8832 +sg12 +g27 +sa(dp8833 +g2 +S'Virtue Triumphing over Vices' +p8834 +sg4 +S'Italian 16th Century' +p8835 +sg6 +S'Overall (approximate): 11.6 x 15.7 cm (4 9/16 x 6 3/16 in.)\r\nsupport: 18.7 x 25.2 cm (7 3/8 x 9 15/16 in.)' +p8836 +sg8 +S'\npen and brown ink with brown wash on laid paper' +p8837 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a00074ed.jpg' +p8838 +sg12 +g27 +sa(dp8839 +g2 +S'Philomela, Procne, and the Thracian King Tereus' +p8840 +sg4 +S'Artist Information (' +p8841 +sg6 +S'Flemish, 1596 - 1675' +p8842 +sg8 +S'(related artist)' +p8843 +sg10 +S'http://www.nga.gov:80/thumb-l/a00072/a00072dd.jpg' +p8844 +sg12 +g27 +sa(dp8845 +g2 +S'Saint Peter' +p8846 +sg4 +S'Artist Information (' +p8847 +sg6 +S'Italian, 1510 - 1563' +p8848 +sg8 +S'(artist after)' +p8849 +sg10 +S'http://www.nga.gov:80/thumb-l/a00075/a000751d.jpg' +p8850 +sg12 +g27 +sa(dp8851 +g2 +S'Nude Male Figure [recto]' +p8852 +sg4 +S'Italian 17th Century' +p8853 +sg6 +S'overall: 43.3 x 28.6 cm (17 1/16 x 11 1/4 in.)' +p8854 +sg8 +S'\nred chalk heightened with white chalk' +p8855 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a0007489.jpg' +p8856 +sg12 +g27 +sa(dp8857 +g2 +S'Orpheus' +p8858 +sg4 +S'Venetian 16th Century' +p8859 +sg6 +S'overall: 39.5 x 81 cm (15 9/16 x 31 7/8 in.)\r\nframed: 67.3 x 101.1 x 4.4 cm (26 1/2 x 39 13/16 x 1 3/4 in.)' +p8860 +sg8 +S'\noil on panel transferred to canvas' +p8861 +sg10 +S'http://www.nga.gov:80/thumb-l/a00008/a0000850.jpg' +p8862 +sg12 +g27 +sa(dp8863 +g2 +S'Nude Female Figure [verso]' +p8864 +sg4 +S'Italian 17th Century' +p8865 +sg6 +S'overall: 43.3 x 28.6 cm (17 1/16 x 11 1/4 in.)' +p8866 +sg8 +S'\nred chalk heightened with white chalk' +p8867 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a000748a.jpg' +p8868 +sg12 +g27 +sa(dp8869 +g2 +S'Nude Figure (academic study)' +p8870 +sg4 +S'Italian 17th Century' +p8871 +sg6 +S'overall: 42.4 x 26.8 cm (16 11/16 x 10 9/16 in.)' +p8872 +sg8 +S'\nblack chalk with white heightening on blue paper' +p8873 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a000748d.jpg' +p8874 +sg12 +g27 +sa(dp8875 +g2 +S'Saint Barbara in Glory with Saints Nicholas and Jerome' +p8876 +sg4 +S'Italian 16th Century' +p8877 +sg6 +S'sheet: 42 x 28.2 cm (16 9/16 x 11 1/8 in.)\r\nsupport: 46.5 x 33.3 cm (18 5/16 x 13 1/8 in.)' +p8878 +sg8 +S'\npen and brown ink with brown and gray wash heightened with white on handmade rag paper' +p8879 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a00074a1.jpg' +p8880 +sg12 +g27 +sa(dp8881 +g2 +S'Saint Jerome (?)' +p8882 +sg4 +S'Netherlandish 16th Century' +p8883 +sg6 +S'overall: 29.9 x 19.4 cm (11 3/4 x 7 5/8 in.)' +p8884 +sg8 +S'\npen and brown ink with brown and peach wash squared with black chalk' +p8885 +sg10 +S'http://www.nga.gov:80/thumb-l/a00071/a000710f.jpg' +p8886 +sg12 +g27 +sa(dp8887 +g2 +S'The Deluge, from the Loggia of the Vatican' +p8888 +sg4 +S'Artist Information (' +p8889 +sg6 +S'Italian, 1483 - 1520' +p8890 +sg8 +S'(artist after)' +p8891 +sg10 +S'http://www.nga.gov:80/thumb-l/a00075/a000751f.jpg' +p8892 +sg12 +g27 +sa(dp8893 +g2 +S'Christ and the Woman Taken in Adultery' +p8894 +sg4 +S'Netherlandish 16th Century' +p8895 +sg6 +S'overall: 15.3 x 20.7 cm (6 x 8 1/8 in.)' +p8896 +sg8 +S'\npen and brown ink with brown and gray wash on laidpaper' +p8897 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f29.jpg' +p8898 +sg12 +g27 +sa(dp8899 +g2 +S'Two Nudes' +p8900 +sg4 +S'Italian 17th Century' +p8901 +sg6 +S'overall: 15.4 x 23.2 cm (6 1/16 x 9 1/8 in.)' +p8902 +sg8 +S'\nred chalk on laid paper' +p8903 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a000746d.jpg' +p8904 +sg12 +g27 +sa(dp8905 +g2 +S'The Prodigal Son' +p8906 +sg4 +S'Artist Information (' +p8907 +sg6 +S'Italian, 1612 - 1650' +p8908 +sg8 +S'(artist after)' +p8909 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a00074cd.jpg' +p8910 +sg12 +g27 +sa(dp8911 +g2 +S'Nine Figures' +p8912 +sg4 +S'Artist Information (' +p8913 +sg6 +S'Italian, active first half 16th century' +p8914 +sg8 +S'(artist after)' +p8915 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a0007444.jpg' +p8916 +sg12 +g27 +sa(dp8917 +g2 +S'Birth Scene' +p8918 +sg4 +S'Giulio Benso' +p8919 +sg6 +S'pen and brown ink with brown wash over traces of black chalk' +p8920 +sg8 +S'unknown date\n' +p8921 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a0007494.jpg' +p8922 +sg12 +g27 +sa(dp8923 +g2 +S'Mountain Landscape with Bridge' +p8924 +sg4 +S'Thomas Gainsborough' +p8925 +sg6 +S'oil on canvas' +p8926 +sg8 +S'c. 1783/1784' +p8927 +sg10 +S'http://www.nga.gov:80/thumb-l/a00007/a0000730.jpg' +p8928 +sg12 +S'Gainsborough increasingly strove to depict\r\n idyllic scenery and extraordinary colors. This picturesque vista of\r\n butter-yellow clouds floating in a mauve sky is far too perfect to exist in\r\n the real world. Gainsborough, however, required a tangible subject so that\r\n he could study and capture the shimmering effects of light upon\r\n surfaces.\n Writing about some of Gainsborough\'s landscapes, his rival Sir Joshua\r\n Reynolds revealed, "He even framed a kind of model of landskips, on his\r\n table; composed of broken stones, dried herbs, and pieces of looking glass,\r\n which he magnified and improved into rocks, trees, and water." Here, shiny\r\n hard coal may have served for the wet banks of the brook, a crushed mirror\r\n for the glistening ripples, and broccoli and brussels sprouts for the\r\n forest. Thus, from a scale model, Gainsborough did indeed "magnify and\r\n improve" upon nature.\n Liked and respected by his colleagues, Gainsborough developed a painting\r\n technique so personal that he had virtually no followers. He, in fact,\r\n embodies the notion of eccentric genius. In an age when a Grand Tour was\r\n considered a necessary part of one\'s education, he never went abroad. Though\r\n a founding member of the Royal Academy in 1769, he ignored its business\r\n meetings and, following a quarrel over the hanging of his pictures, refused\r\n to exhibit there after 1783.\n ' +p8929 +sa(dp8930 +g2 +S'Madonna and Child with Saint Jerome and Saint Bernardino of Siena' +p8931 +sg4 +S'Benvenuto di Giovanni' +p8932 +sg6 +S'tempera on panel' +p8933 +sg8 +S'c. 1480/1485' +p8934 +sg10 +S'http://www.nga.gov:80/thumb-l/a00008/a0000884.jpg' +p8935 +sg12 +g27 +sa(dp8936 +g2 +S'The Triumph of Neptune' +p8937 +sg4 +S'French 18th Century' +p8938 +sg6 +S'overall: 32.9 x 42.5 cm (12 15/16 x 16 3/4 in.)' +p8939 +sg8 +S'\nblack crayon with white heightening on blue paper' +p8940 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fbb.jpg' +p8941 +sg12 +g27 +sa(dp8942 +g2 +S'Madonna and Child with Saints John and Joseph [recto]' +p8943 +sg4 +S'Italian 17th Century' +p8944 +sg6 +S'overall: 28.3 x 42.4 cm (11 1/8 x 16 11/16 in.)' +p8945 +sg8 +S'\nred chalk on laid paper' +p8946 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a000748b.jpg' +p8947 +sg12 +g27 +sa(dp8948 +g2 +S'Joseph and His Brother in Egypt [verso]' +p8949 +sg4 +S'Italian 17th Century' +p8950 +sg6 +S'overall: 28.3 x 42.4 cm (11 1/8 x 16 11/16 in.)' +p8951 +sg8 +S'\npen and brown ink with brown wash over red chalk on laid paper' +p8952 +sg10 +S'http://www.nga.gov:80/thumb-l/a00074/a000748c.jpg' +p8953 +sg12 +g27 +sa(dp8954 +g2 +S'The Entry of Saint Antoninus into Florence' +p8955 +sg4 +S'Giovanni Balducci' +p8956 +sg6 +S', unknown date' +p8957 +sg8 +S'\n' +p8958 +sg10 +S'http://www.nga.gov:80/thumb-l/a00075/a000752d.jpg' +p8959 +sg12 +g27 +sa(dp8960 +g12 +g27 +sg6 +S'drypoint' +p8961 +sg8 +S'1926' +p8962 +sg2 +S'Charles Cundall' +p8963 +sg4 +S'Francis Dodd' +p8964 +sa(dp8965 +g12 +g27 +sg6 +S'graphite on wove paper' +p8966 +sg8 +S'1931' +p8967 +sg2 +S'Street in Sospel, France' +p8968 +sg4 +S'Earl Stetson Crawford' +p8969 +sa(dp8970 +g12 +g27 +sg6 +S'etching' +p8971 +sg8 +S'1928' +p8972 +sg2 +S'The Stairway, Old Menton' +p8973 +sg4 +S'Earl Stetson Crawford' +p8974 +sa(dp8975 +g12 +g27 +sg6 +S'etching' +p8976 +sg8 +S'1927' +p8977 +sg2 +S'Chiesa della Salute from San Giorgio' +p8978 +sg4 +S'Earl Stetson Crawford' +p8979 +sa(dp8980 +g12 +g27 +sg6 +S'etching' +p8981 +sg8 +S'unknown date\n' +p8982 +sg2 +S"The Fountain at Peille, Cote d'Azur" +p8983 +sg4 +S'Earl Stetson Crawford' +p8984 +sa(dp8985 +g2 +S'Sign of the White Horse' +p8986 +sg4 +S'Theodore Roussel' +p8987 +sg6 +S'etching' +p8988 +sg8 +S'unknown date\n' +p8989 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c6e.jpg' +p8990 +sg12 +g27 +sa(dp8991 +g2 +S'Francesco Sforza' +p8992 +sg4 +S'North Italian 15th Century' +p8993 +sg6 +S'painted surface: 69.5 x 59.5 cm (27 3/8 x 23 7/16 in.)\r\noverall (with backing, collar, and cradle): 72.4 x 62.1 cm (28 1/2 x 24 7/16 in.)\r\nframed: 103.5 x 92.7 x 8.9 cm (40 3/4 x 36 1/2 x 3 1/2 in.)' +p8994 +sg8 +S'\noil on panel' +p8995 +sg10 +S'http://www.nga.gov:80/thumb-l/a00008/a0000868.jpg' +p8996 +sg12 +g27 +sa(dp8997 +g2 +S'Pierrot - Portrait of Lady C.' +p8998 +sg4 +S'Theodore Roussel' +p8999 +sg6 +S'etching in red' +p9000 +sg8 +S'unknown date\n' +p9001 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a2b.jpg' +p9002 +sg12 +g27 +sa(dp9003 +g2 +S"L'Agonie des Fleurs" +p9004 +sg4 +S'Theodore Roussel' +p9005 +sg6 +S'color softground etching, etching, and aquatint with hand-coloring on laid paper' +p9006 +sg8 +S'unknown date\n' +p9007 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f7e.jpg' +p9008 +sg12 +g27 +sa(dp9009 +g2 +S'Limehouse' +p9010 +sg4 +S'James McNeill Whistler' +p9011 +sg6 +S'lithograph' +p9012 +sg8 +S'1878' +p9013 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ab/a000aba2.jpg' +p9014 +sg12 +g27 +sa(dp9015 +g12 +g27 +sg6 +S'aquatint' +p9016 +sg8 +S'unknown date\n' +p9017 +sg2 +S'Stanstead Hall Barn' +p9018 +sg4 +S'Morton Mathews' +p9019 +sa(dp9020 +g2 +S'The Log Team' +p9021 +sg4 +S'George Soper' +p9022 +sg6 +S'etching and drypoint' +p9023 +sg8 +S'unknown date\n' +p9024 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a33.jpg' +p9025 +sg12 +g27 +sa(dp9026 +g12 +g27 +sg6 +S'drypoint [trial proof?]' +p9027 +sg8 +S'unknown date\n' +p9028 +sg2 +S'Charles John Vint, Esq.' +p9029 +sg4 +S'Malcolm Osborne' +p9030 +sa(dp9031 +g2 +S'Sir George Calvert, Lord Baltimore' +p9032 +sg4 +S'John Thane' +p9033 +sg6 +S'engraving' +p9034 +sg8 +S'unknown date\n' +p9035 +sg10 +S'http://www.nga.gov:80/thumb-l/a00076/a000769c.jpg' +p9036 +sg12 +g27 +sa(dp9037 +g12 +g27 +sg6 +S'etching' +p9038 +sg8 +S'1930' +p9039 +sg2 +S'By Burgos, Spain' +p9040 +sg4 +S'Murray Macpherson Tod' +p9041 +sa(dp9042 +g12 +g27 +sg6 +S'etching' +p9043 +sg8 +S'1929' +p9044 +sg2 +S'George W. Davison' +p9045 +sg4 +S'James McBey' +p9046 +sa(dp9047 +g2 +S'James McNeil Whistler' +p9048 +sg4 +S'Mortimer Menpes' +p9049 +sg6 +S'etching' +p9050 +sg8 +S'unknown date\n' +p9051 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007e/a0007e19.jpg' +p9052 +sg12 +g27 +sa(dp9053 +g2 +S'The Baptism of Christ' +p9054 +sg4 +S'Paris Bordone' +p9055 +sg6 +S'oil on canvas' +p9056 +sg8 +S'c. 1535/1540' +p9057 +sg10 +S'http://www.nga.gov:80/thumb-l/a00008/a000080c.jpg' +p9058 +sg12 +S'For centuries artists referred to the Gospels of Matthew, Mark, and Luke\n for their depictions of Jesus\' baptism in the Jordan River by his precursor\n John the Baptist. With his head lowered and his hands folded in prayer,\n Jesus stands in the river as John pours water over his head from a shallow\n dish. To the left an angel waits to clothe Jesus at the conclusion of the\n purification ritual. In the upper left, a flood of heavenly light suggests\n the voice of God, who declared, "This is my beloved Son, in whom I am well\n pleased."\n Paris Bordone was born in Treviso, but he soon moved to Venice, where he\n studied briefly in Titian\'s studio. Bordone\'s pictures, like works by his\n teacher, are active and energetic. Here, the figures\' potential for\n movement is emphasized by their heavy musculature and by the dramatic light\n that dances over the surfaces of their bodies. In contrast to Titian\'s use\n of rich and generally warm colors, Bordone fills his palette with cooler\n and more metallic colors, and his tighter handling of the paint results in\n a more precise description of realistic details.\n ' +p9059 +sa(dp9060 +g2 +S'Hans Sebald Beham' +p9061 +sg4 +S'Alfred von Franck' +p9062 +sg6 +S'lithograph' +p9063 +sg8 +S'unknown date\n' +p9064 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b395.jpg' +p9065 +sg12 +g27 +sa(dp9066 +g12 +g27 +sg6 +S'drypoint' +p9067 +sg8 +S'1928' +p9068 +sg2 +S'Market Place, Nuremberg' +p9069 +sg4 +S'Louis Conrad Rosenberg' +p9070 +sa(dp9071 +g12 +g27 +sg6 +S'drypoint' +p9072 +sg8 +S'1928' +p9073 +sg2 +S'Jakober Gate, Augsburg' +p9074 +sg4 +S'Louis Conrad Rosenberg' +p9075 +sa(dp9076 +g12 +g27 +sg6 +S'drypoint' +p9077 +sg8 +S'1928' +p9078 +sg2 +S'Dinkelsbuehl Houses' +p9079 +sg4 +S'Louis Conrad Rosenberg' +p9080 +sa(dp9081 +g12 +g27 +sg6 +S'drypoint' +p9082 +sg8 +S'1927' +p9083 +sg2 +S'Fountain of Aya Sophia, Constantinople' +p9084 +sg4 +S'Louis Conrad Rosenberg' +p9085 +sa(dp9086 +g12 +g27 +sg6 +S'lithograph' +p9087 +sg8 +S'unknown date\n' +p9088 +sg2 +S'Canna' +p9089 +sg4 +S'Alexander Patrick Fleming' +p9090 +sa(dp9091 +g12 +g27 +sg6 +S'lithograph' +p9092 +sg8 +S'unknown date\n' +p9093 +sg2 +S'Cactus Flowers' +p9094 +sg4 +S'Alexander Patrick Fleming' +p9095 +sa(dp9096 +g12 +g27 +sg6 +S'lithograph' +p9097 +sg8 +S'unknown date\n' +p9098 +sg2 +S'Magnolia' +p9099 +sg4 +S'Alexander Patrick Fleming' +p9100 +sa(dp9101 +g12 +g27 +sg6 +S'lithograph' +p9102 +sg8 +S'unknown date\n' +p9103 +sg2 +S'Water Lilies' +p9104 +sg4 +S'Alexander Patrick Fleming' +p9105 +sa(dp9106 +g12 +g27 +sg6 +S'lithograph' +p9107 +sg8 +S'unknown date\n' +p9108 +sg2 +S'Gardenias' +p9109 +sg4 +S'Alexander Patrick Fleming' +p9110 +sa(dp9111 +g2 +S'A Young Woman and Her Little Boy' +p9112 +sg4 +S'Agnolo Bronzino' +p9113 +sg6 +S'oil on panel' +p9114 +sg8 +S'c. 1540' +p9115 +sg10 +S'http://www.nga.gov:80/thumb-l/a00008/a000080d.jpg' +p9116 +sg12 +S"Who is this elegant lady? A noblewoman surely, and most likely a member of the\ncourt of Cosimo I de' Medici, Duke of Florence in the mid-sixteenth century. Her\nornate and costly attire establish her as an aristocrat. She holds herself rigidly\nwith the controlled demeanor that distinguishes portraits of members of Cosimo's\ncourt. Bronzino was the principal portraitist to the court, and one wonders how\nmuch his own coldly idealized, polished style of painting may, itself, have contributed\nto the taste for the marble-hard perfection and chilly hauteur of his models.\n Tucked in the corner of the panel, the small blond boy was an afterthought, added\nby Bronzino in a second campaign of painting. X-radiography has revealed that the\nwoman had first stood alone with her proper right hand placed against her dress.\nNot only did Bronzino insert the ivory-skinned child, but he also brought the woman's\napparel up to date: her headdress grew larger and more elaborate; the puffed sleeves\nof her dress were broadened (a change evident in the darker silhouette of the contours\nthat were painted over the green background); the gloves were added and, probably,\nthe damask pattern on the bodice as well.\n " +p9117 +sa(dp9118 +g12 +g27 +sg6 +S'lithograph' +p9119 +sg8 +S'unknown date\n' +p9120 +sg2 +S'Orange Blossoms' +p9121 +sg4 +S'Alexander Patrick Fleming' +p9122 +sa(dp9123 +g12 +g27 +sg6 +S'etching' +p9124 +sg8 +S'c. 1906' +p9125 +sg2 +S'Jacob Epstein, No. 2' +p9126 +sg4 +S'Augustus John' +p9127 +sa(dp9128 +g12 +g27 +sg6 +S'woodcut' +p9129 +sg8 +S'unknown date\n' +p9130 +sg2 +S'Russian Soldier' +p9131 +sg4 +S'Solomon Borisovich Judovin' +p9132 +sa(dp9133 +g12 +g27 +sg6 +S'drypoint in black on laid paper' +p9134 +sg8 +S'1938' +p9135 +sg2 +S'Manhattan Nocturne' +p9136 +sg4 +S'Armin Landeck' +p9137 +sa(dp9138 +g12 +g27 +sg6 +S'wood engraving on wove paper' +p9139 +sg8 +S'1931' +p9140 +sg2 +S'The Old Manse, Concord' +p9141 +sg4 +S'Thomas Willoughby Nason' +p9142 +sa(dp9143 +g12 +g27 +sg6 +S'wood engraving' +p9144 +sg8 +S'unknown date\n' +p9145 +sg2 +S'Boat' +p9146 +sg4 +S'Wsesolod Woinoff' +p9147 +sa(dp9148 +g12 +g27 +sg6 +S'wood engraving' +p9149 +sg8 +S'unknown date\n' +p9150 +sg2 +S'Portrait' +p9151 +sg4 +S'Wsesolod Woinoff' +p9152 +sa(dp9153 +g12 +g27 +sg6 +S'color linocut (?)' +p9154 +sg8 +S'1935' +p9155 +sg2 +S'Barnyard' +p9156 +sg4 +S'Richard Floethe' +p9157 +sa(dp9158 +g2 +S'Reflections at Finchingfield, England' +p9159 +sg4 +S'John Taylor Arms' +p9160 +sg6 +S'etching on yellow Whatman laid paper' +p9161 +sg8 +S'1938' +p9162 +sg10 +S'http://www.nga.gov:80/thumb-l/a00009/a0000932.jpg' +p9163 +sg12 +g27 +sa(dp9164 +g12 +g27 +sg6 +S'drypoint' +p9165 +sg8 +S'unknown date\n' +p9166 +sg2 +S'Fall Ducks' +p9167 +sg4 +S'Richard Evett Bishop' +p9168 +sa(dp9169 +g2 +S'The Campo di SS. Giovanni e Paolo, Venice' +p9170 +sg4 +S'Bernardo Bellotto' +p9171 +sg6 +S'oil on canvas' +p9172 +sg8 +S'1743/1747' +p9173 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a00005f9.jpg' +p9174 +sg12 +g27 +sa(dp9175 +g12 +g27 +sg6 +S'wood engraving' +p9176 +sg8 +S'1937' +p9177 +sg2 +S'Repose' +p9178 +sg4 +S'Sir Lionel Arthur Lindsay' +p9179 +sa(dp9180 +g2 +S'Curb Market, Arles France' +p9181 +sg4 +S'Benjamin Chambers Brown' +p9182 +sg6 +g27 +sg8 +S'1940' +p9183 +sg10 +S'http://www.nga.gov:80/thumb-l/a000f3/a000f3cd.jpg' +p9184 +sg12 +g27 +sa(dp9185 +g2 +S'Winnowers, Majorca' +p9186 +sg4 +S'Clare Leighton' +p9187 +sg6 +S'wood engraving' +p9188 +sg8 +S'unknown date\n' +p9189 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b01.jpg' +p9190 +sg12 +g27 +sa(dp9191 +g12 +g27 +sg6 +S'color linoleum cut' +p9192 +sg8 +S'1942' +p9193 +sg2 +S'Gulls and Spray' +p9194 +sg4 +S'Eva Auld Watson' +p9195 +sa(dp9196 +g12 +g27 +sg6 +S'etching' +p9197 +sg8 +S'1920' +p9198 +sg2 +S'Stadshuset - Stockholm' +p9199 +sg4 +S'Gerhard Albin Albe' +p9200 +sa(dp9201 +g2 +S'Forsmarck' +p9202 +sg4 +S'Elias Martin' +p9203 +sg6 +S'etching' +p9204 +sg8 +S'unknown date\n' +p9205 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed41.jpg' +p9206 +sg12 +g27 +sa(dp9207 +g12 +g27 +sg6 +S'wood engraving' +p9208 +sg8 +S'unknown date\n' +p9209 +sg2 +S'The Collectors' +p9210 +sg4 +S'Hans Alexander Mueller' +p9211 +sa(dp9212 +g12 +g27 +sg6 +S'black chalk on wove paper' +p9213 +sg8 +S'unknown date\n' +p9214 +sg2 +S'Head of a Girl' +p9215 +sg4 +S'Henri Matisse' +p9216 +sa(dp9217 +g12 +g27 +sg6 +S'etching and engraving' +p9218 +sg8 +S'1646' +p9219 +sg2 +S'Pont Neuf, Paris' +p9220 +sg4 +S'Stefano Della Bella' +p9221 +sa(dp9222 +g2 +S'Endpaper with Animals' +p9223 +sg4 +S'Johann Maisch' +p9224 +sg6 +S'woodcut in silver on lavender paper [restrike]' +p9225 +sg8 +S'unknown date\n' +p9226 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f54.jpg' +p9227 +sg12 +g27 +sa(dp9228 +g2 +S'David with the Head of Goliath' +p9229 +sg4 +S'Andrea del Castagno' +p9230 +sg6 +S'tempera on leather on wood' +p9231 +sg8 +S'c. 1450/1455' +p9232 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a00005d0.jpg' +p9233 +sg12 +S"David with the Head of Goliath\n The subject was especially appropriate for a Florentine audience of the 15th century. As the smallest major political power on the Italian peninsula, the city saw itself as a young David contending with such powerful Goliaths as the Pope, the Duke of Milan, the King of Naples, and the Doge of Venice. In Castagno's shield, David is depicted preparing to attack Goliath, having already chosen a smooth stone from the riverbank for his sling. The conclusion appears at the bottom of the shield; the terrible giant's severed head, with the stone embedded in its forehead, lies at David's feet as a warning to any potential enemies of Florence.\n For this interpretation of the Old Testament hero, Castagno chose a young athlete, whose pose shows the painter's awareness of classical prototypes. Castagno demonstrated his knowledge of the new science of anatomy by modeling the figure in light and shadow, articulating the muscles and veins of the arms and legs, and giving powerful activity to David's running pose and windblown garments.\n " +p9234 +sa(dp9235 +g12 +g27 +sg6 +S'woodcut in gold on light blue paper [restrike]' +p9236 +sg8 +S'unknown date\n' +p9237 +sg2 +S'Endpaper with Animals' +p9238 +sg4 +S'Johann Maisch' +p9239 +sa(dp9240 +g12 +g27 +sg6 +S'woodcut in black on bright yellow paper [restrike]' +p9241 +sg8 +S'unknown date\n' +p9242 +sg2 +S'Endpaper with Animals' +p9243 +sg4 +S'Johann Maisch' +p9244 +sa(dp9245 +g12 +g27 +sg6 +S'woodcut in black on orange paper [restrike]' +p9246 +sg8 +S'unknown date\n' +p9247 +sg2 +S'Endpaper with Animals' +p9248 +sg4 +S'Johann Maisch' +p9249 +sa(dp9250 +g12 +g27 +sg6 +S'woodcut in black on green paper [restrike]' +p9251 +sg8 +S'unknown date\n' +p9252 +sg2 +S'Endpaper with Animals' +p9253 +sg4 +S'Johann Maisch' +p9254 +sa(dp9255 +g12 +g27 +sg6 +S'woodcut in silver on black paper [restrike]' +p9256 +sg8 +S'unknown date\n' +p9257 +sg2 +S'Endpaper with Animals' +p9258 +sg4 +S'Johann Maisch' +p9259 +sa(dp9260 +g12 +g27 +sg6 +S'woodcut in black on blue paper [restrike]' +p9261 +sg8 +S'unknown date\n' +p9262 +sg2 +S'Endpaper with Animals' +p9263 +sg4 +S'Johann Maisch' +p9264 +sa(dp9265 +g12 +g27 +sg6 +S'(artist)' +p9266 +sg8 +S'\n' +p9267 +sg2 +S'Endpaper' +p9268 +sg4 +S'Artist Information (' +p9269 +sa(dp9270 +g12 +g27 +sg6 +S'Rosenwald Collection' +p9271 +sg8 +S'\nwoodcut in gold metallic ink on hand-washed rose paper' +p9272 +sg2 +S'Endpaper with Floral Pattern' +p9273 +sg4 +S'Italian 18th Century' +p9274 +sa(dp9275 +g12 +g27 +sg6 +S'Rosenwald Collection' +p9276 +sg8 +S'\nwoodcut in gold metallic ink on hand-washed rose paper' +p9277 +sg2 +S'Endpaper with Mixed Floral Pattern' +p9278 +sg4 +S'Italian 18th Century' +p9279 +sa(dp9280 +g12 +g27 +sg6 +S'(artist)' +p9281 +sg8 +S'\n' +p9282 +sg2 +S'Endpaper' +p9283 +sg4 +S'Artist Information (' +p9284 +sa(dp9285 +g2 +S'The White Horse' +p9286 +sg4 +S'John Constable' +p9287 +sg6 +S'oil on canvas' +p9288 +sg8 +S'1818-1819' +p9289 +sg10 +S'http://www.nga.gov:80/thumb-l/a00038/a0003857.jpg' +p9290 +sg12 +S'The White Horse\n Hidden beneath this painting is a version of another Constable painting, \n ' +p9291 +sa(dp9292 +g12 +g27 +sg6 +S'Rosenwald Collection' +p9293 +sg8 +S'\nwoodcut; brocade endpaper in gold on white paper' +p9294 +sg2 +S'Endpaper with Animals' +p9295 +sg4 +S'German 18th Century' +p9296 +sa(dp9297 +g12 +g27 +sg6 +S'Rosenwald Collection' +p9298 +sg8 +S'\nwoodcut; brocade endpaper in gold on deep rose prepared paper' +p9299 +sg2 +S'Endpaper - "Zwarg Gesellschaft"' +p9300 +sg4 +S'German 18th Century' +p9301 +sa(dp9302 +g12 +g27 +sg6 +S'woodcut in gold metallic ink on hand-washed tan-green paper' +p9303 +sg8 +S'1777' +p9304 +sg2 +S'Endpaper with Scenes of the Trades' +p9305 +sg4 +S'Johann Carl Munck' +p9306 +sa(dp9307 +g12 +g27 +sg6 +S'Rosenwald Collection' +p9308 +sg8 +S'\nwoodcut; brocade endpaper in gold on pale rose prepared paper' +p9309 +sg2 +S'Endpaper with Birds' +p9310 +sg4 +S'German 18th Century' +p9311 +sa(dp9312 +g12 +g27 +sg6 +S'German, c. 1766 - 1839' +p9313 +sg8 +S'(artist after)' +p9314 +sg2 +S'Endpaper with Saints' +p9315 +sg4 +S'Artist Information (' +p9316 +sa(dp9317 +g12 +g27 +sg6 +S'woodcut in gold metallic ink on hand-washed purple paper' +p9318 +sg8 +S'unknown date\n' +p9319 +sg2 +S'Endpaper' +p9320 +sg4 +S'Johann Lechner' +p9321 +sa(dp9322 +g12 +g27 +sg6 +S'woodcut in gold metallic ink on hand-washed orange paper' +p9323 +sg8 +S'unknown date\n' +p9324 +sg2 +S'Endpaper' +p9325 +sg4 +S'Johann Lechner' +p9326 +sa(dp9327 +g12 +g27 +sg6 +S'woodcut in gold metallic ink on hand-washed red paper' +p9328 +sg8 +S'unknown date\n' +p9329 +sg2 +S'Endpaper with Birds' +p9330 +sg4 +S'Johann Georg Eckart' +p9331 +sa(dp9332 +g12 +g27 +sg6 +S'Rosenwald Collection' +p9333 +sg8 +S'\nwoodcut in gold metallic ink on hand-washed blue paper' +p9334 +sg2 +S'Endpaper with Four Circus (?) Scenes' +p9335 +sg4 +S'German 18th Century' +p9336 +sa(dp9337 +g12 +g27 +sg6 +S'Rosenwald Collection' +p9338 +sg8 +S'\nwoodcut in gold metallic ink on hand-washed rose paper' +p9339 +sg2 +S'Endpaper with Three Bands of Courtly Scenes' +p9340 +sg4 +S'German 18th Century' +p9341 +sa(dp9342 +g2 +S'Wivenhoe Park, Essex' +p9343 +sg4 +S'John Constable' +p9344 +sg6 +S'oil on canvas' +p9345 +sg8 +S'1816' +p9346 +sg10 +S'http://www.nga.gov:80/thumb-l/a00004/a00004c4.jpg' +p9347 +sg12 +S"A pleasant sense of ease and harmony pervades this landscape of almost photographic clarity. The large areas of brilliant sunshine and cool shade, the rambling line of the fence, and the beautiful balance of trees, meadow, and river are evidence of the artist's creative synthesis of the actual site. The precision of Constable's brushwork, seen in the animals, birds, and people, lends importance to these smaller details.\n Constable was a native of Suffolk, the county just north of Essex. His deep, consuming attachment to the landscape of this rural area is a constant factor in his works. His studies and sketchbooks reveal his complete absorption in the pictorial elements of his native countryside: the movement of cloud masses, the feel of the lowlands crossed by rivers and streams, and the dramatic play of light over all.\n The commission for this painting came from Major General Francis Slater–Rebow, owner of Wivenhoe Park, who had been a close friend of Constable's father and was the artist's first important patron. This was not the first work Constable had done for the Rebows; in 1812 he had painted a full–length portrait of the couple's daughter, then aged seven. She can be seen in this painting riding in a donkey cart at the left.\n " +p9348 +sa(dp9349 +g12 +g27 +sg6 +S'woodcut in gold metallic ink on hand-washed blue paper' +p9350 +sg8 +S'unknown date\n' +p9351 +sg2 +S'Endpaper with Scenes of the Trades' +p9352 +sg4 +S'Paul Reimund' +p9353 +sa(dp9354 +g12 +g27 +sg6 +S'woodcut in gold metallic ink on hand-washed gray-purple paper' +p9355 +sg8 +S'unknown date\n' +p9356 +sg2 +S'Endpaper with Birds' +p9357 +sg4 +S'Johann Georg Eckart' +p9358 +sa(dp9359 +g12 +g27 +sg6 +S'woodcut in gold metallic ink on hand-washed yellow paper' +p9360 +sg8 +S'c. 1790' +p9361 +sg2 +S'Endpaper with Animals' +p9362 +sg4 +S'Georg M. Maisch' +p9363 +sa(dp9364 +g12 +g27 +sg6 +S'Rosenwald Collection' +p9365 +sg8 +S'\nwoodcut in gold metallic ink on hand-washed gray paper' +p9366 +sg2 +S'Endpaper with Three Bands of Courtly Scenes' +p9367 +sg4 +S'German 18th Century' +p9368 +sa(dp9369 +g2 +S'War (The Accusers of Theft, Adultery, Murder)' +p9370 +sg4 +S'William Blake' +p9371 +sg6 +S'engraving' +p9372 +sg8 +S'c. 1803/1810' +p9373 +sg10 +S'http://www.nga.gov:80/thumb-l/a00076/a0007658.jpg' +p9374 +sg12 +g27 +sa(dp9375 +g2 +S'The Accusers of Theft, Adultery, Murder (War)' +p9376 +sg4 +S'William Blake' +p9377 +sg6 +S'color-printed etching' +p9378 +sg8 +S'c. 1794/1796' +p9379 +sg10 +S'http://www.nga.gov:80/thumb-l/a00010/a0001062.jpg' +p9380 +sg12 +g27 +sa(dp9381 +g2 +S'Unknown subject (Let Him look up into the Heaven and laugh in the bright air)' +p9382 +sg4 +S'William Blake' +p9383 +sg6 +S'engraving and relief-etching' +p9384 +sg8 +S'possibly c. 1805' +p9385 +sg10 +S'http://www.nga.gov:80/thumb-l/a00076/a00076de.jpg' +p9386 +sg12 +g27 +sa(dp9387 +g2 +S'The Chaining of Orc' +p9388 +sg4 +S'William Blake' +p9389 +sg6 +S'relief etching' +p9390 +sg8 +S'1812' +p9391 +sg10 +S'http://www.nga.gov:80/thumb-l/a00076/a0007653.jpg' +p9392 +sg12 +g27 +sa(dp9393 +g2 +S'Lear and Cordelia' +p9394 +sg4 +S'Artist Information (' +p9395 +sg6 +S'(artist after)' +p9396 +sg8 +S'\n' +p9397 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dbb.jpg' +p9398 +sg12 +g27 +sa(dp9399 +g2 +S'Lear and Cordelia' +p9400 +sg4 +S'Artist Information (' +p9401 +sg6 +S'(artist after)' +p9402 +sg8 +S'\n' +p9403 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007daa.jpg' +p9404 +sg12 +g27 +sa(dp9405 +g2 +S"The Artist's Studio" +p9406 +sg4 +S'Jean-Baptiste-Camille Corot' +p9407 +sg6 +S'oil on wood' +p9408 +sg8 +S'c. 1868' +p9409 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000da7.jpg' +p9410 +sg12 +g27 +sa(dp9411 +g2 +S'Lear and Cordelia' +p9412 +sg4 +S'Artist Information (' +p9413 +sg6 +S'(artist after)' +p9414 +sg8 +S'\n' +p9415 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d9b.jpg' +p9416 +sg12 +g27 +sa(dp9417 +g2 +S'Lear and Cordelia' +p9418 +sg4 +S'Artist Information (' +p9419 +sg6 +S'(artist after)' +p9420 +sg8 +S'\n' +p9421 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d8b.jpg' +p9422 +sg12 +g27 +sa(dp9423 +g2 +S'Lear and Cordelia' +p9424 +sg4 +S'Artist Information (' +p9425 +sg6 +S'(artist after)' +p9426 +sg8 +S'\n' +p9427 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d7d.jpg' +p9428 +sg12 +g27 +sa(dp9429 +g2 +S'Joseph of Arimathea Among the Rocks of Albion' +p9430 +sg4 +S'William Blake' +p9431 +sg6 +S'engraving' +p9432 +sg8 +S'c. 1803/1810' +p9433 +sg10 +S'http://www.nga.gov:80/thumb-l/a00076/a00076e2.jpg' +p9434 +sg12 +g27 +sa(dp9435 +g2 +S"George Cumberland's Card" +p9436 +sg4 +S'William Blake' +p9437 +sg6 +S'engraving in brown' +p9438 +sg8 +S'1827' +p9439 +sg10 +S'http://www.nga.gov:80/thumb-l/a00076/a0007674.jpg' +p9440 +sg12 +g27 +sa(dp9441 +g2 +S"George Cumberland's Card" +p9442 +sg4 +S'William Blake' +p9443 +sg6 +S'engraving in black' +p9444 +sg8 +S'1827' +p9445 +sg10 +S'http://www.nga.gov:80/thumb-l/a00076/a0007675.jpg' +p9446 +sg12 +g27 +sa(dp9447 +g2 +S"The Man Sweeping the Interpreter's Parlor" +p9448 +sg4 +S'William Blake' +p9449 +sg6 +S'relief etching and white-line engraving' +p9450 +sg8 +S'c. 1820/1822' +p9451 +sg10 +S'http://www.nga.gov:80/thumb-l/a00076/a0007655.jpg' +p9452 +sg12 +g27 +sa(dp9453 +g2 +S'The Camp of Stothard, Blake, Ogleby' +p9454 +sg4 +S'Thomas Stothard' +p9455 +sg6 +S'etching' +p9456 +sg8 +S'c. 1780' +p9457 +sg10 +S'http://www.nga.gov:80/thumb-l/a00078/a0007816.jpg' +p9458 +sg12 +g27 +sa(dp9459 +g2 +S'Mrs. Q.' +p9460 +sg4 +S'Artist Information (' +p9461 +sg6 +S'(artist after)' +p9462 +sg8 +S'\n' +p9463 +sg10 +S'http://www.nga.gov:80/thumb-l/a00077/a00077c7.jpg' +p9464 +sg12 +g27 +sa(dp9465 +g2 +S'The Hiding of Moses' +p9466 +sg4 +S'William Blake' +p9467 +sg6 +S'engraving' +p9468 +sg8 +S'1824' +p9469 +sg10 +S'http://www.nga.gov:80/thumb-l/a00076/a0007652.jpg' +p9470 +sg12 +g27 +sa(dp9471 +g2 +S'The Forest of Coubron' +p9472 +sg4 +S'Jean-Baptiste-Camille Corot' +p9473 +sg6 +S'oil on canvas' +p9474 +sg8 +S'1872' +p9475 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000da8.jpg' +p9476 +sg12 +g27 +sa(dp9477 +g2 +S'Joseph of Arimathea Preaching to the Britons' +p9478 +sg4 +S'William Blake' +p9479 +sg6 +S'relief etching, color-printed, with pen and watercolor' +p9480 +sg8 +S'c. 1794/1796' +p9481 +sg10 +S'http://www.nga.gov:80/thumb-l/a00076/a0007651.jpg' +p9482 +sg12 +g27 +sa(dp9483 +g2 +S'The Soul Hovering Over the Body [from Marriage of Heaven and Hell," plate 14]' +p9484 +sg4 +S'William Blake' +p9485 +sg6 +S'relief etching, color-printed' +p9486 +sg8 +S'c. 1796' +p9487 +sg10 +S'http://www.nga.gov:80/thumb-l/a00076/a0007654.jpg' +p9488 +sg12 +g27 +sa(dp9489 +g2 +S'The Dance of Albion (Glad Day)' +p9490 +sg4 +S'William Blake' +p9491 +sg6 +S'engraving' +p9492 +sg8 +S'c. 1803/1810' +p9493 +sg10 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b0d.jpg' +p9494 +sg12 +g27 +sa(dp9495 +g12 +g27 +sg6 +S'engraving' +p9496 +sg8 +S'1810' +p9497 +sg2 +S'The Canterbury Pilgrims' +p9498 +sg4 +S'William Blake' +p9499 +sa(dp9500 +g12 +g27 +sg6 +S'engraving' +p9501 +sg8 +S'1810' +p9502 +sg2 +S'The Canterbury Pilgrims' +p9503 +sg4 +S'William Blake' +p9504 +sa(dp9505 +g12 +g27 +sg6 +S'engraving' +p9506 +sg8 +S'1810' +p9507 +sg2 +S'The Canterbury Pilgrims' +p9508 +sg4 +S'William Blake' +p9509 +sa(dp9510 +g2 +S'Dream of Thiralatha [from "America," cancelled plate d]' +p9511 +sg4 +S'William Blake' +p9512 +sg6 +S'relief etching, color-printed (with hand-coloring?)' +p9513 +sg8 +S'c. 1794/1796' +p9514 +sg10 +S'http://www.nga.gov:80/thumb-l/a00076/a0007657.jpg' +p9515 +sg12 +g27 +sa(dp9516 +g2 +S'Christ Appearing to His Disciples After the Resurrection' +p9517 +sg4 +S'William Blake' +p9518 +sg6 +S'color print (monotype), hand-colored with watercolor and tempera' +p9519 +sg8 +S'c. 1795' +p9520 +sg10 +S'http://www.nga.gov:80/thumb-l/a00010/a0001063.jpg' +p9521 +sg12 +g27 +sa(dp9522 +g2 +S'The Ghost of Samuel Appearing to Saul' +p9523 +sg4 +S'William Blake' +p9524 +sg6 +S'pen and ink with watercolor over graphite' +p9525 +sg8 +S'c. 1800' +p9526 +sg10 +S'http://www.nga.gov:80/thumb-l/a00022/a00022b2.jpg' +p9527 +sg12 +g27 +sa(dp9528 +g2 +S'The Great Red Dragon and the Beast from the Sea' +p9529 +sg4 +S'William Blake' +p9530 +sg6 +S'pen and ink with watercolor over graphite' +p9531 +sg8 +S'c. 1805' +p9532 +sg10 +S'http://www.nga.gov:80/thumb-l/a00022/a00022bf.jpg' +p9533 +sg12 +g27 +sa(dp9534 +g2 +S'Salisbury Cathedral from Lower Marsh Close' +p9535 +sg4 +S'John Constable' +p9536 +sg6 +S'oil on canvas' +p9537 +sg8 +S'1820' +p9538 +sg10 +S'http://www.nga.gov:80/thumb-l/a000da/a000dab7.jpg' +p9539 +sg12 +S'Constable frequently depicted Salisbury’s famous spire, which, at 404 \r\n feet, is the tallest in England. Piercing the air, the lofty steeple \r\n attracts attention to the atmosphere around it. One of Constable’s main \r\n interests was portraying the weather—a process he called “skying.”\n When the Gothic cathedral was finished in the 1300s, its grounds were \r\n walled or enclosed; this Close forms a lush, marshy park. The couple \r\n strolling through the Close’s avenue of elms may be John Fisher, the \r\n Archbishop of Salisbury, and his wife. Their nephew, an archdeacon and art \r\n patron, was Constable’s closest friend. This personal souvenir, kept by the \r\n artist, freshly observes the sunshine dappling the lawn. With long shadows \r\n falling from the west, the time is early evening. The canvas was executed \r\n spontaneously on the spot, and its brown underpainted layer is still \r\n visible beneath the trees.\n ' +p9540 +sa(dp9541 +g2 +S'View near Epernon' +p9542 +sg4 +S'Jean-Baptiste-Camille Corot' +p9543 +sg6 +S'oil on canvas' +p9544 +sg8 +S'1850/1860' +p9545 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dae.jpg' +p9546 +sg12 +g27 +sa(dp9547 +g2 +S"Queen Katherine's Dream [recto]" +p9548 +sg4 +S'Artist Information (' +p9549 +sg6 +S'(artist after)' +p9550 +sg8 +S'\n' +p9551 +sg10 +S'http://www.nga.gov:80/thumb-l/a00071/a0007130.jpg' +p9552 +sg12 +g27 +sa(dp9553 +g2 +S'Los and His Spectre [verso]' +p9554 +sg4 +S'William Blake' +p9555 +sg6 +S'graphite, squared' +p9556 +sg8 +S'c. 1804/1807' +p9557 +sg10 +S'http://www.nga.gov:80/thumb-l/a00071/a0007103.jpg' +p9558 +sg12 +g27 +sa(dp9559 +g2 +S'The Great Red Dragon and the Woman Clothed with the Sun' +p9560 +sg4 +S'William Blake' +p9561 +sg6 +S'pen and ink with watercolor over graphite' +p9562 +sg8 +S'c. 1805' +p9563 +sg10 +S'http://www.nga.gov:80/thumb-l/a0001d/a0001dc3.jpg' +p9564 +sg12 +g27 +sa(dp9565 +g2 +S"Wat Tyler's Daughter" +p9566 +sg4 +S'William Blake' +p9567 +sg6 +S'graphite' +p9568 +sg8 +S'c. 1819' +p9569 +sg10 +S'http://www.nga.gov:80/thumb-l/a00072/a0007202.jpg' +p9570 +sg12 +g27 +sa(dp9571 +g2 +S'King Canute' +p9572 +sg4 +S'William Blake' +p9573 +sg6 +S'graphite' +p9574 +sg8 +S'c. 1819/1820' +p9575 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d2d.jpg' +p9576 +sg12 +g27 +sa(dp9577 +g2 +S'King Edward' +p9578 +sg4 +S'William Blake' +p9579 +sg6 +S'graphite' +p9580 +sg8 +S'c. 1819' +p9581 +sg10 +S'http://www.nga.gov:80/thumb-l/a00071/a0007191.jpg' +p9582 +sg12 +g27 +sa(dp9583 +g2 +S'A Warring Angel [recto]' +p9584 +sg4 +S'William Blake' +p9585 +sg6 +S'graphite on laid paper' +p9586 +sg8 +S'c. 1780' +p9587 +sg10 +S'http://www.nga.gov:80/thumb-l/a00069/a0006957.jpg' +p9588 +sg12 +g27 +sa(dp9589 +g12 +g27 +sg6 +S'graphite on laid paper' +p9590 +sg8 +S'c. 1780' +p9591 +sg2 +S'Man with Arms Upraised [verso]' +p9592 +sg4 +S'William Blake' +p9593 +sa(dp9594 +g2 +S"Time's Triple Bow [recto]" +p9595 +sg4 +S'William Blake' +p9596 +sg6 +S'graphite' +p9597 +sg8 +S'c. 1804/1807' +p9598 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006de8.jpg' +p9599 +sg12 +g27 +sa(dp9600 +g12 +g27 +sg6 +S'graphite' +p9601 +sg8 +S'c. 1804/1807' +p9602 +sg2 +S'Tight Spiral of Figures (?) [verso]' +p9603 +sg4 +S'William Blake' +p9604 +sa(dp9605 +g2 +S'Landscape with Picnickers and Donkeys by a Gate' +p9606 +sg4 +S'Joseph Paul' +p9607 +sg6 +S', c. 1830-1880' +p9608 +sg8 +S'\n' +p9609 +sg10 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a13.jpg' +p9610 +sg12 +g27 +sa(dp9611 +g2 +S'Saint Augustine Converting King Ethelbert of Kent' +p9612 +sg4 +S'William Blake' +p9613 +sg6 +S'graphite on laid paper' +p9614 +sg8 +S'probably c. 1793' +p9615 +sg10 +S'http://www.nga.gov:80/thumb-l/a00070/a0007043.jpg' +p9616 +sg12 +g27 +sa(dp9617 +g2 +S'A Man Seen from Behind, Rising on Clouds' +p9618 +sg4 +S'William Blake' +p9619 +sg6 +S'graphite on laid paper' +p9620 +sg8 +S'probably c. 1794' +p9621 +sg10 +S'http://www.nga.gov:80/thumb-l/a00070/a0007075.jpg' +p9622 +sg12 +g27 +sa(dp9623 +g2 +S'The Infant Hercules Throttling the Serpents' +p9624 +sg4 +S'William Blake' +p9625 +sg6 +S'graphite' +p9626 +sg8 +S'1790-1793' +p9627 +sg10 +S'http://www.nga.gov:80/thumb-l/a00070/a00070d4.jpg' +p9628 +sg12 +g27 +sa(dp9629 +g2 +S'Two Legs' +p9630 +sg4 +S'William Blake' +p9631 +sg6 +S'graphite' +p9632 +sg8 +S'probably 1805/1810' +p9633 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d89.jpg' +p9634 +sg12 +g27 +sa(dp9635 +g2 +S'The Descent of Peace [recto]' +p9636 +sg4 +S'William Blake' +p9637 +sg6 +S'graphite' +p9638 +sg8 +S'c. 1815' +p9639 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e45.jpg' +p9640 +sg12 +g27 +sa(dp9641 +g12 +g27 +sg6 +S'graphite' +p9642 +sg8 +S'c. 1810' +p9643 +sg2 +S'Half-Length Figure of a Man [verso]' +p9644 +sg4 +S'William Blake' +p9645 +sa(dp9646 +g2 +S'A Figure Ascending in a Glory of Clouds (?)' +p9647 +sg4 +S'William Blake' +p9648 +sg6 +S'graphite' +p9649 +sg8 +S'probably c. 1805' +p9650 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cff.jpg' +p9651 +sg12 +g27 +sa(dp9652 +g2 +S'An Armed Man Spurning a Woman [recto]' +p9653 +sg4 +S'William Blake' +p9654 +sg6 +S'graphite on laid paper' +p9655 +sg8 +S'c. 1790/1795' +p9656 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e76.jpg' +p9657 +sg12 +g27 +sa(dp9658 +g12 +g27 +sg6 +S'graphite on laid paper' +p9659 +sg8 +S'c. 1790/1795' +p9660 +sg2 +S'Border Design [verso]' +p9661 +sg4 +S'William Blake' +p9662 +sa(dp9663 +g2 +S'An Ascending Spiral of Figures [recto]' +p9664 +sg4 +S'William Blake' +p9665 +sg6 +S'graphite on two joined sheets of laid paper' +p9666 +sg8 +S'probably c. 1820' +p9667 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d5b.jpg' +p9668 +sg12 +g27 +sa(dp9669 +g2 +S'Lady and Gentleman on Horseback' +p9670 +sg4 +S'Aelbert Cuyp' +p9671 +sg6 +S'oil on canvas' +p9672 +sg8 +S'c. 1655, reworked 1660/1665' +p9673 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e55.jpg' +p9674 +sg12 +S"This double portrait on horseback is unique in Dutch art and seventeenth-century Europe, because equestrian likenesses usually were reserved\r\nfor individual monarchs. The couple is probably husband and wife. Cuyp originally included a larger hunting party. Presumably the sitters wanted more attention directed to themselves, so Cuyp reworked and simplified the composition. The burdock plants at the left, for instance, conceal traces of several dogs now overpainted.\n Reusing favorite motifs, Cuyp repeated the lady's white steed in his \n Outside the Netherlands, the five Cuyps in the National Gallery constitute the most varied collection of his work. \n " +p9675 +sa(dp9676 +g12 +g27 +sg6 +S'graphite on two joined sheets of laid paper' +p9677 +sg8 +S'probably c. 1820' +p9678 +sg2 +S'God the Father [verso]' +p9679 +sg4 +S'William Blake' +p9680 +sa(dp9681 +g2 +S'Job and His Daughters' +p9682 +sg4 +S'William Blake' +p9683 +sg6 +S'graphite on laid paper' +p9684 +sg8 +S'c. 1821' +p9685 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ece.jpg' +p9686 +sg12 +g27 +sa(dp9687 +g2 +S'Lady Torrens and Family' +p9688 +sg4 +S'Artist Information (' +p9689 +sg6 +S'(artist after)' +p9690 +sg8 +S'\n' +p9691 +sg10 +S'http://www.nga.gov:80/thumb-l/a00072/a00072e7.jpg' +p9692 +sg12 +g27 +sa(dp9693 +g2 +S'Design for a Title-Page' +p9694 +sg4 +S'William Blake' +p9695 +sg6 +S'graphite and pen and ink' +p9696 +sg8 +S'c. 1823/1826' +p9697 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006efe.jpg' +p9698 +sg12 +g27 +sa(dp9699 +g2 +S'John Linnell' +p9700 +sg4 +S'William Blake' +p9701 +sg6 +S'graphite' +p9702 +sg8 +S'1825' +p9703 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dba.jpg' +p9704 +sg12 +g27 +sa(dp9705 +g2 +S'The Last Judgment' +p9706 +sg4 +S'William Blake' +p9707 +sg6 +S'pen and ink with wash over graphite' +p9708 +sg8 +S'c. 1809' +p9709 +sg10 +S'http://www.nga.gov:80/thumb-l/a00063/a00063b0.jpg' +p9710 +sg12 +g27 +sa(dp9711 +g2 +S'Job and His Family Restored to Prosperity' +p9712 +sg4 +S'William Blake' +p9713 +sg6 +S'pen and ink with watercolor over graphite' +p9714 +sg8 +S'1821' +p9715 +sg10 +S'http://www.nga.gov:80/thumb-l/a00031/a0003194.jpg' +p9716 +sg12 +g27 +sa(dp9717 +g2 +S'Christ Disputing with the Doctors' +p9718 +sg4 +S'German 16th Century' +p9719 +sg6 +S'overall: 19 x 14.8 cm (7 1/2 x 5 13/16 in.)' +p9720 +sg8 +S'\npen and black ink with brush and gray ink and gray wash heightened with white on gray prepared paper' +p9721 +sg10 +S'http://www.nga.gov:80/thumb-l/a00079/a0007958.jpg' +p9722 +sg12 +g27 +sa(dp9723 +g12 +g27 +sg6 +S'etching' +p9724 +sg8 +S'1895' +p9725 +sg2 +S'Christiana Boheme' +p9726 +sg4 +S'Edvard Munch' +p9727 +sa(dp9728 +g12 +g27 +sg6 +S'etching and aquatint' +p9729 +sg8 +S'1895' +p9730 +sg2 +S'Moonlight (Mondschein)' +p9731 +sg4 +S'Edvard Munch' +p9732 +sa(dp9733 +g2 +S'Horsemen and Herdsmen with Cattle' +p9734 +sg4 +S'Aelbert Cuyp' +p9735 +sg6 +S'oil on canvas' +p9736 +sg8 +S'1655/1660' +p9737 +sg10 +S'http://www.nga.gov:80/thumb-l/a00043/a00043ea.jpg' +p9738 +sg12 +g27 +sa(dp9739 +g12 +g27 +sg6 +S'etching' +p9740 +sg8 +S'1894' +p9741 +sg2 +S'Girl at Window (Madchen im Hemd am Fenster)' +p9742 +sg4 +S'Edvard Munch' +p9743 +sa(dp9744 +g12 +g27 +sg6 +S'etching' +p9745 +sg8 +S'1908/1909' +p9746 +sg2 +S'Norwegian Landscape (Norwegische Landschaft)' +p9747 +sg4 +S'Edvard Munch' +p9748 +sa(dp9749 +g12 +g27 +sg6 +S'drypoint and aquatint' +p9750 +sg8 +S'1895' +p9751 +sg2 +S'Lovers at the Seaside (Liebespaar am Strande)' +p9752 +sg4 +S'Edvard Munch' +p9753 +sa(dp9754 +g12 +g27 +sg6 +S'etching' +p9755 +sg8 +S'1895' +p9756 +sg2 +S'Dr. Max Asch' +p9757 +sg4 +S'Edvard Munch' +p9758 +sa(dp9759 +g12 +g27 +sg6 +S'etching and aquatint' +p9760 +sg8 +S'1895' +p9761 +sg2 +S'The Morning After (Der Tag danach)' +p9762 +sg4 +S'Edvard Munch' +p9763 +sa(dp9764 +g12 +g27 +sg6 +S'etching and aquatint' +p9765 +sg8 +S'1902' +p9766 +sg2 +S'Postdamer Platz' +p9767 +sg4 +S'Edvard Munch' +p9768 +sa(dp9769 +g12 +g27 +sg6 +S'drypoint' +p9770 +sg8 +S'1905' +p9771 +sg2 +S'Head of a Girl (Kinderkopf)' +p9772 +sg4 +S'Edvard Munch' +p9773 +sa(dp9774 +g12 +g27 +sg6 +S'lithograph' +p9775 +sg8 +S'1911' +p9776 +sg2 +S'Panther Prowling (Schleichender Panther)' +p9777 +sg4 +S'Edvard Munch' +p9778 +sa(dp9779 +g12 +g27 +sg6 +S'lithograph in black' +p9780 +sg8 +S'1895' +p9781 +sg2 +S'Count Kessler' +p9782 +sg4 +S'Edvard Munch' +p9783 +sa(dp9784 +g12 +g27 +sg6 +S'lithograph' +p9785 +sg8 +S'1895' +p9786 +sg2 +S'Count Kessler' +p9787 +sg4 +S'Edvard Munch' +p9788 +sa(dp9789 +g2 +S'The Saint Anne Altarpiece: Saint Nicholas [left panel]' +p9790 +sg4 +S'Artist Information (' +p9791 +sg6 +S'(painter)' +p9792 +sg8 +S'\n' +p9793 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ff94.jpg' +p9794 +sg12 +g27 +sa(dp9795 +g12 +g27 +sg6 +S'lithograph' +p9796 +sg8 +S'1896' +p9797 +sg2 +S'August Strindberg' +p9798 +sg4 +S'Edvard Munch' +p9799 +sa(dp9800 +g12 +g27 +sg6 +S'etching, drypoint, and roulette' +p9801 +sg8 +S'1895' +p9802 +sg2 +S'Lovers at the Seaside (Liebespaar am Strande)' +p9803 +sg4 +S'Edvard Munch' +p9804 +sa(dp9805 +g12 +g27 +sg6 +S'lithograph' +p9806 +sg8 +S'1912' +p9807 +sg2 +S'Self-Portrait (Selbstbildnis)' +p9808 +sg4 +S'Edvard Munch' +p9809 +sa(dp9810 +g12 +g27 +sg6 +S'color lithograph' +p9811 +sg8 +S'1906/1907' +p9812 +sg2 +S'Death of Marat (Der Tod des Marat)' +p9813 +sg4 +S'Edvard Munch' +p9814 +sa(dp9815 +g12 +g27 +sg6 +S'lithograph in brown' +p9816 +sg8 +S'1895' +p9817 +sg2 +S'Tingeltangel' +p9818 +sg4 +S'Edvard Munch' +p9819 +sa(dp9820 +g12 +g27 +sg6 +S'lithograph' +p9821 +sg8 +S'1896' +p9822 +sg2 +S'Gunnar Heiberg' +p9823 +sg4 +S'Edvard Munch' +p9824 +sa(dp9825 +g2 +S'Geschrei (The Scream)' +p9826 +sg4 +S'Edvard Munch' +p9827 +sg6 +S'lithograph' +p9828 +sg8 +S'1895' +p9829 +sg10 +S'http://www.nga.gov:80/thumb-l/a0001d/a0001df0.jpg' +p9830 +sg12 +g27 +sa(dp9831 +g2 +S'Alter Dampfer' +p9832 +sg4 +S'Paul Klee' +p9833 +sg6 +S"oil transfer drawing and watercolor on laid paper, on Klee's original mount" +p9834 +sg8 +S'1922' +p9835 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a3a.jpg' +p9836 +sg12 +g27 +sa(dp9837 +g2 +S'The Monarchist' +p9838 +sg4 +S'Paul Klee' +p9839 +sg6 +S'etching and aquatint on zinc' +p9840 +sg8 +S'1904' +p9841 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ef/a000eff6.jpg' +p9842 +sg12 +g27 +sa(dp9843 +g2 +S'Zwei M\xc3\xa4nner, einander in h\xc3\xb6herer Stellung vermutend, begegnen sich (Two Men Meet, Each Believing the Other to Be of Higher Rank' +p9844 +sg4 +S'Paul Klee' +p9845 +sg6 +S'etching on zinc' +p9846 +sg8 +S'1903' +p9847 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ef/a000eff7.jpg' +p9848 +sg12 +g27 +sa(dp9849 +g2 +S'The Saint Anne Altarpiece: Saint Anne with the Virgin and Child [middle panel]' +p9850 +sg4 +S'Artist Information (' +p9851 +sg6 +S'(painter)' +p9852 +sg8 +S'\n' +p9853 +sg10 +S'http://www.nga.gov:80/thumb-l/a00102/a0010217.jpg' +p9854 +sg12 +S'Originally the center panel, which shows Saint Anne seated with her daughter Mary and Jesus, was taller than the flanking ones of Saint Nicholas (left) and Anthony of Padua (right), and all three had arched tops. Probably they stood above a \n No master would have completed such a large commission alone. Today, new scientific techniques, especially infrared reflectography, which makes it possible to see the underdrawing hidden beneath the paint, are helping to discern the participation of workshop assistants. Here the basic composition in all three panels was drawn with sketchy parallel strokes, probably with charcoal or black chalk. In the central panel only there is additional underdrawing in ink or paint. This provides more detailed instructions and could indicate that David’s assistants, who would have needed more guidance than the master himself, were responsible for the center panel. Presumably David painted much of the two wings himself. Notice how the underdrawing shows through the folds in Anne’s robe as blue-gray hatching.\n ' +p9855 +sa(dp9856 +g2 +S'The Boston Massacre' +p9857 +sg4 +S'Paul Revere' +p9858 +sg6 +S'hand-colored engraving' +p9859 +sg8 +S'1770' +p9860 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b71.jpg' +p9861 +sg12 +g27 +sa(dp9862 +g2 +S'Simon Lord Lovat' +p9863 +sg4 +S'William Hogarth' +p9864 +sg6 +S'etching' +p9865 +sg8 +S'1746' +p9866 +sg10 +S'http://www.nga.gov:80/thumb-l/a00078/a00078ce.jpg' +p9867 +sg12 +g27 +sa(dp9868 +g12 +g27 +sg6 +S'brush and black ink with blue chalk heightened with white over graphite' +p9869 +sg8 +S'probably 1938' +p9870 +sg2 +S'Would You Oblige Me with a Match Please?' +p9871 +sg4 +S'David Low' +p9872 +sa(dp9873 +g12 +g27 +sg6 +S'graphite heightened with white' +p9874 +sg8 +S'unknown date\n' +p9875 +sg2 +S'Winston Churchill' +p9876 +sg4 +S'David Low' +p9877 +sa(dp9878 +g12 +g27 +sg6 +S'watercolor and graphite' +p9879 +sg8 +S'unknown date\n' +p9880 +sg2 +S'Twenty-Five Years. The Past Meets the Present' +p9881 +sg4 +S'David Low' +p9882 +sa(dp9883 +g12 +g27 +sg6 +S'graphite' +p9884 +sg8 +S'unknown date\n' +p9885 +sg2 +S'Lord Oxford' +p9886 +sg4 +S'David Low' +p9887 +sa(dp9888 +g12 +g27 +sg6 +S'brush and black ink with blue chalk heightened with white over graphite' +p9889 +sg8 +S'1938' +p9890 +sg2 +S"Shut Up! I Can't Hear Myself!" +p9891 +sg4 +S'David Low' +p9892 +sa(dp9893 +g2 +S"Apres l'attentat, Juin '97" +p9894 +sg4 +S'Jean-Louis Forain' +p9895 +sg6 +S'brush and black ink with watercolor on wove paper' +p9896 +sg8 +S'1897' +p9897 +sg10 +S'http://www.nga.gov:80/thumb-l/a00072/a00072bc.jpg' +p9898 +sg12 +g27 +sa(dp9899 +g2 +S'La Journee Electoral' +p9900 +sg4 +S'Jean-Louis Forain' +p9901 +sg6 +S'black crayon on wove paper' +p9902 +sg8 +S'unknown date\n' +p9903 +sg10 +S'http://www.nga.gov:80/thumb-l/a00071/a0007148.jpg' +p9904 +sg12 +g27 +sa(dp9905 +g2 +S'La Journee Electoral' +p9906 +sg4 +S'Jean-Louis Forain' +p9907 +sg6 +S'brush and black ink on laid paper' +p9908 +sg8 +S'unknown date\n' +p9909 +sg10 +S'http://www.nga.gov:80/thumb-l/a00072/a000721f.jpg' +p9910 +sg12 +g27 +sa(dp9911 +g2 +S'The Saint Anne Altarpiece: Saint Anthony of Padua [right panel]' +p9912 +sg4 +S'Artist Information (' +p9913 +sg6 +S'(painter)' +p9914 +sg8 +S'\n' +p9915 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ff95.jpg' +p9916 +sg12 +g27 +sa(dp9917 +g2 +S'At the Peace Conference' +p9918 +sg4 +S'Jean-Louis Forain' +p9919 +sg6 +S'brush and black ink and black crayon on laid paper' +p9920 +sg8 +S'c. 1919' +p9921 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d51.jpg' +p9922 +sg12 +g27 +sa(dp9923 +g2 +S'Au congres de la Paix' +p9924 +sg4 +S'Jean-Louis Forain' +p9925 +sg6 +S'brush and brown ink over graphite on wove paper' +p9926 +sg8 +S'c. 1919' +p9927 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cf5.jpg' +p9928 +sg12 +g27 +sa(dp9929 +g2 +S'A Versailles juillet 1919' +p9930 +sg4 +S'Jean-Louis Forain' +p9931 +sg6 +S'brush and black ink and black crayon on wove paper' +p9932 +sg8 +S'probably 1919' +p9933 +sg10 +S'http://www.nga.gov:80/thumb-l/a00072/a00072df.jpg' +p9934 +sg12 +g27 +sa(dp9935 +g2 +S'At the Conference' +p9936 +sg4 +S'Jean-Louis Forain' +p9937 +sg6 +S'brush and brown ink and black crayon on laid paper' +p9938 +sg8 +S'c. 1919' +p9939 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d23.jpg' +p9940 +sg12 +g27 +sa(dp9941 +g2 +S'Negotiations at the Trianon Palace, Versailles' +p9942 +sg4 +S'Jean-Louis Forain' +p9943 +sg6 +S'brush and black ink over graphite on wove paper' +p9944 +sg8 +S'c. 1919' +p9945 +sg10 +S'http://www.nga.gov:80/thumb-l/a00072/a0007272.jpg' +p9946 +sg12 +g27 +sa(dp9947 +g2 +S'France Waits' +p9948 +sg4 +S'Jean-Louis Forain' +p9949 +sg6 +S'black crayon with watercolor on laid paper' +p9950 +sg8 +S'c. 1914/1919' +p9951 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ecc.jpg' +p9952 +sg12 +g27 +sa(dp9953 +g2 +S'France Watching' +p9954 +sg4 +S'Jean-Louis Forain' +p9955 +sg6 +S'brush and gray and black ink on wove paper' +p9956 +sg8 +S'c. 1914/1919' +p9957 +sg10 +S'http://www.nga.gov:80/thumb-l/a00072/a000723e.jpg' +p9958 +sg12 +g27 +sa(dp9959 +g2 +S'M. Clemenceau. La lettre du Cte Czernin' +p9960 +sg4 +S'Jean-Louis Forain' +p9961 +sg6 +S'brush and black ink on wove paper' +p9962 +sg8 +S'c. 1914/1919' +p9963 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e12.jpg' +p9964 +sg12 +g27 +sa(dp9965 +g2 +S"C'est la Paix. Tu vois pas un kepi!" +p9966 +sg4 +S'Jean-Louis Forain' +p9967 +sg6 +S'brush and black ink over black crayon on (tracing paper?)' +p9968 +sg8 +S'c. 1919' +p9969 +sg10 +S'http://www.nga.gov:80/thumb-l/a00072/a00072ab.jpg' +p9970 +sg12 +g27 +sa(dp9971 +g2 +S'The Tuileries Garden (Le jardin des Tuileries)' +p9972 +sg4 +S'Edouard Vuillard' +p9973 +sg6 +S'color lithograph on china paper' +p9974 +sg8 +S'published 1896' +p9975 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a065.jpg' +p9976 +sg12 +g27 +sa(dp9977 +g2 +S'The Races' +p9978 +sg4 +S'Edgar Degas' +p9979 +sg6 +S'oil on wood' +p9980 +sg8 +S'1871-1872' +p9981 +sg10 +S'http://www.nga.gov:80/thumb-l/a00007/a000071b.jpg' +p9982 +sg12 +g27 +sa(dp9983 +g2 +S'Bust of a Balding Man' +p9984 +sg4 +S'Jan Lievens' +p9985 +sg6 +S'chiaroscuro woodcut with light brown tone block' +p9986 +sg8 +S'unknown date\n' +p9987 +sg10 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d13.jpg' +p9988 +sg12 +g27 +sa(dp9989 +g2 +S'Holy Family with Saint Elizabeth and the Infant Saint John the Baptist' +p9990 +sg4 +S"Jacopo de' Barbari" +p9991 +sg6 +S'engraving' +p9992 +sg8 +S'c. 1499/1501' +p9993 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c79d.jpg' +p9994 +sg12 +g27 +sa(dp9995 +g12 +g27 +sg6 +S'lithograph' +p9996 +sg8 +S'1927' +p9997 +sg2 +S'Self-Portrait in Profile (Selbstbildnis im Profil)' +p9998 +sg4 +S'K\xc3\xa4the Kollwitz' +p9999 +sa(dp10000 +g2 +S'Philippe le Roy, Lord of Ravels' +p10001 +sg4 +S'Sir Anthony van Dyck' +p10002 +sg6 +S'etching' +p10003 +sg8 +S'probably 1626/1641' +p10004 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0ee.jpg' +p10005 +sg12 +g27 +sa(dp10006 +g2 +S'Faust' +p10007 +sg4 +S'Rembrandt van Rijn' +p10008 +sg6 +S'etching, drypoint and burin' +p10009 +sg8 +S'c. 1652' +p10010 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d35d.jpg' +p10011 +sg12 +g27 +sa(dp10012 +g2 +S"Landscape with a View toward Haarlem (The Goldweigher's Field)" +p10013 +sg4 +S'Rembrandt van Rijn' +p10014 +sg6 +S'etching and drypoint' +p10015 +sg8 +S'1651' +p10016 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f74.jpg' +p10017 +sg12 +g27 +sa(dp10018 +g2 +S'Man in a Fantastic Helmet' +p10019 +sg4 +S'Italian 15th Century' +p10020 +sg6 +S'sheet: 12.8 x 7.5 cm (5 1/16 x 2 15/16 in.)' +p10021 +sg8 +S'\nengraving' +p10022 +sg10 +S'http://www.nga.gov:80/thumb-l/a00016/a000164c.jpg' +p10023 +sg12 +g27 +sa(dp10024 +g2 +S'The Daughters of Sir Thomas Frankland' +p10025 +sg4 +S'Artist Information (' +p10026 +sg6 +S'(artist after)' +p10027 +sg8 +S'\n' +p10028 +sg10 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d95.jpg' +p10029 +sg12 +g27 +sa(dp10030 +g2 +S'La Torre di Malghera' +p10031 +sg4 +S'Canaletto' +p10032 +sg6 +S'etching' +p10033 +sg8 +S'c. 1735/1746' +p10034 +sg10 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb40.jpg' +p10035 +sg12 +g27 +sa(dp10036 +g2 +S'Before the Ballet' +p10037 +sg4 +S'Edgar Degas' +p10038 +sg6 +S'oil on canvas' +p10039 +sg8 +S'1890/1892' +p10040 +sg10 +S'http://www.nga.gov:80/thumb-l/a00006/a00006b6.jpg' +p10041 +sg12 +g27 +sa(dp10042 +g2 +S'Saint John the Baptist' +p10043 +sg4 +S'Giulio Campagnola' +p10044 +sg6 +S'engraving and stipple engraving' +p10045 +sg8 +S'c. 1505' +p10046 +sg10 +S'http://www.nga.gov:80/thumb-l/a00010/a000106c.jpg' +p10047 +sg12 +g27 +sa(dp10048 +g2 +S'The Young Courier' +p10049 +sg4 +S'Honor\xc3\xa9 Daumier' +p10050 +sg6 +S'black crayon and gray wash on laid paper; gray wash figure on verso' +p10051 +sg8 +S'unknown date\n' +p10052 +sg10 +S'http://www.nga.gov:80/thumb-l/a00070/a0007063.jpg' +p10053 +sg12 +g27 +sa(dp10054 +g2 +S'Hercules and Nessus' +p10055 +sg4 +S'Marcantonio Raimondi' +p10056 +sg6 +S'engraving' +p10057 +sg8 +S'c. 1504/1509' +p10058 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c782.jpg' +p10059 +sg12 +g27 +sa(dp10060 +g2 +S'Allegory of Life' +p10061 +sg4 +S'Giorgio Ghisi' +p10062 +sg6 +S'engraving on laid paper' +p10063 +sg8 +S'1561' +p10064 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8c2.jpg' +p10065 +sg12 +g27 +sa(dp10066 +g2 +S'Antwerp Cathedral' +p10067 +sg4 +S'Wenceslaus Hollar' +p10068 +sg6 +S'etching' +p10069 +sg8 +S'1649' +p10070 +sg10 +S'http://www.nga.gov:80/thumb-l/a000db/a000db32.jpg' +p10071 +sg12 +g27 +sa(dp10072 +g2 +S'Two Peasants Fighting' +p10073 +sg4 +S'Master of the Housebook' +p10074 +sg6 +S'drypoint' +p10075 +sg8 +S'c. 1475/1480' +p10076 +sg10 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e25.jpg' +p10077 +sg12 +g27 +sa(dp10078 +g2 +S'Arearea no Varua Ino (Words of the Devil) [recto]' +p10079 +sg4 +S'Paul Gauguin' +p10080 +sg6 +S'watercolor monotype on japan paper, mounted\r\nto tan cardboard on whose verso is a fragment of another print' +p10081 +sg8 +S'1894' +p10082 +sg10 +S'http://www.nga.gov:80/thumb-l/a00022/a000223d.jpg' +p10083 +sg12 +g27 +sa(dp10084 +g12 +g27 +sg6 +S'color woodcut printed by Louis Roy' +p10085 +sg8 +S'1894' +p10086 +sg2 +S'Auti te Pape (Women at the River) [verso]' +p10087 +sg4 +S'Paul Gauguin' +p10088 +sa(dp10089 +g2 +S'Horses Exercising' +p10090 +sg4 +S'Th\xc3\xa9odore Gericault' +p10091 +sg6 +S'lithograph' +p10092 +sg8 +S'1821' +p10093 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f67.jpg' +p10094 +sg12 +g27 +sa(dp10095 +g2 +S'Rinaldo, Astride Baiardo, Flies Off in Pursuit of Angelica' +p10096 +sg4 +S'Jean-Honor\xc3\xa9 Fragonard' +p10097 +sg6 +S'black chalk with brown wash and touches of pen andbrown ink on laid paper' +p10098 +sg8 +S'c. 1795' +p10099 +sg10 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d26.jpg' +p10100 +sg12 +g27 +sa(dp10101 +g2 +S'Mrs. Paul Cobb Methuen' +p10102 +sg4 +S'Thomas Gainsborough' +p10103 +sg6 +S'oil on canvas' +p10104 +sg8 +S'c. 1776/1777' +p10105 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cda.jpg' +p10106 +sg12 +g27 +sa(dp10107 +g12 +g27 +sg6 +S'hand-colored woodcut' +p10108 +sg8 +S'1919' +p10109 +sg2 +S'Man in Prayer (Mannerbildnis)' +p10110 +sg4 +S'Erich Heckel' +p10111 +sa(dp10112 +g2 +S'The Temptation of Christ' +p10113 +sg4 +S'Master LCz' +p10114 +sg6 +S'engraving on laid paper' +p10115 +sg8 +S'c. 1500/1505' +p10116 +sg10 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e12.jpg' +p10117 +sg12 +g27 +sa(dp10118 +g2 +S'Leda and the Swan' +p10119 +sg4 +S'Giovanni Battista Palumba' +p10120 +sg6 +S'engraving' +p10121 +sg8 +S'c. 1510' +p10122 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c76e.jpg' +p10123 +sg12 +g27 +sa(dp10124 +g2 +S'The Races (Les courses)' +p10125 +sg4 +S'Edouard Manet' +p10126 +sg6 +S'lithograph' +p10127 +sg8 +S'1865' +p10128 +sg10 +S'http://www.nga.gov:80/thumb-l/a00017/a000178d.jpg' +p10129 +sg12 +g27 +sa(dp10130 +g2 +S'Battle of the Sea Gods [left half]' +p10131 +sg4 +S'Andrea Mantegna' +p10132 +sg6 +S'engraving' +p10133 +sg8 +S'c. 1485/1488' +p10134 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7a6.jpg' +p10135 +sg12 +g27 +sa(dp10136 +g2 +S'Cupid carrying a fowl accompanied by a dog, and another cupid playing a trumpet' +p10137 +sg4 +S'Maso Finiguerra' +p10138 +sg6 +S'niello engraving' +p10139 +sg8 +S'c. 1450' +p10140 +sg10 +S'http://www.nga.gov:80/thumb-l/a00096/a00096c0.jpg' +p10141 +sg12 +g27 +sa(dp10142 +g2 +S'Saint Sebastian' +p10143 +sg4 +S'Francesco Francia' +p10144 +sg6 +S', c. 1470/1480' +p10145 +sg8 +S'\n' +p10146 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c72e.jpg' +p10147 +sg12 +g27 +sa(dp10148 +g2 +S'Hope' +p10149 +sg4 +S'Francesco Francia' +p10150 +sg6 +S', c. 1470/1480' +p10151 +sg8 +S'\n' +p10152 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c72b.jpg' +p10153 +sg12 +g27 +sa(dp10154 +g2 +S'Head of a Girl with Curly Hair' +p10155 +sg4 +S'Francesco Francia' +p10156 +sg6 +S'niello print' +p10157 +sg8 +S'c. 1480/1500' +p10158 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c725.jpg' +p10159 +sg12 +g27 +sa(dp10160 +g2 +S'Saint' +p10161 +sg4 +S'Francesco Francia' +p10162 +sg6 +S', c. 1470/1480' +p10163 +sg8 +S'\n' +p10164 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c72d.jpg' +p10165 +sg12 +g27 +sa(dp10166 +g2 +S'Mortlake Terrace' +p10167 +sg4 +S'Joseph Mallord William Turner' +p10168 +sg6 +S'oil on canvas' +p10169 +sg8 +S'1827' +p10170 +sg10 +S'http://www.nga.gov:80/thumb-l/a00007/a000073f.jpg' +p10171 +sg12 +S"This painting, one of two views of Mortlake Terrace painted by Turner, is a view\nfrom the house, looking directly west into the luminous glow of the setting sun.\nTurner established the quiet mood of the late-afternoon scene with two ivy-covered\nelm trees, whose soft, feathery leaves and curving limbs frame the painting. Long\nshadows create elegant patterns on the lawn that almost obscure the human element\nin the scene. Scattered about are a gardener's ladder, a hoop, a doll on a red chair,\nand an open portfolio of pictures that have been just left behind by figures watching\nthe Lord Mayor's ceremonial barge.\n The painting was done about eight years after Turner's first stay in Venice, where\nhis perception of nature and the physical world was profoundly changed by the city's\nunique light and atmosphere. Light immobilizes the river and gives its surface a\ndreamlike shimmer. The stable mass of the classical gazebo, the delicate linear\nclarity of its architectural details, and the carefully depicted windows in the\nbuildings on the left bank of the river coexist in Turner's vision with the heavy\nimpasto of the sun's forceful rays that spill over the top of the embankment wall\nand dissolve the stone's very substance.\n " +p10172 +sa(dp10173 +g2 +S'The Hon. Mrs. Thomas Graham' +p10174 +sg4 +S'Thomas Gainsborough' +p10175 +sg6 +S'oil on canvas' +p10176 +sg8 +S'c. 1775/1777' +p10177 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a0000528.jpg' +p10178 +sg12 +g27 +sa(dp10179 +g2 +S'The Nativity' +p10180 +sg4 +S'Mair von Landshut' +p10181 +sg6 +S'engraving' +p10182 +sg8 +S'1499' +p10183 +sg10 +S'http://www.nga.gov:80/thumb-l/a00010/a000106e.jpg' +p10184 +sg12 +g27 +sa(dp10185 +g2 +S"Jezebel Promising Naboth's Vineyard to King Ahab" +p10186 +sg4 +S'Lucas van Leyden' +p10187 +sg6 +S'woodcut' +p10188 +sg8 +S'1516/1519' +p10189 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce98.jpg' +p10190 +sg12 +g27 +sa(dp10191 +g2 +S'Allegory of Fortitude (?)' +p10192 +sg4 +S'Master of 1515' +p10193 +sg6 +S'engraving' +p10194 +sg8 +S'c. 1515/1520' +p10195 +sg10 +S'http://www.nga.gov:80/thumb-l/a00068/a000681b.jpg' +p10196 +sg12 +g27 +sa(dp10197 +g12 +g27 +sg6 +S'aquatint and roulette over heliogravure' +p10198 +sg8 +S'1923' +p10199 +sg2 +S'"Aimez-vous les uns les autres"' +p10200 +sg4 +S'Georges Rouault' +p10201 +sa(dp10202 +g2 +S'The Episode of the Falling Idol' +p10203 +sg4 +S'Giovanni Domenico Tiepolo' +p10204 +sg6 +S'etching' +p10205 +sg8 +S'published 1753' +p10206 +sg10 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cba2.jpg' +p10207 +sg12 +g27 +sa(dp10208 +g2 +S'Cottages and Barn beside a Road' +p10209 +sg4 +S'Rembrandt van Rijn' +p10210 +sg6 +S'pen and brown ink with brown and gray wash on laid paper' +p10211 +sg8 +S'c. 1650' +p10212 +sg10 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006ffc.jpg' +p10213 +sg12 +g27 +sa(dp10214 +g2 +S'The States General of France (Les Etats Generaux de France)' +p10215 +sg4 +S'Jan Ziarnko' +p10216 +sg6 +S'etching' +p10217 +sg8 +S'1614' +p10218 +sg10 +S'http://www.nga.gov:80/thumb-l/a000de/a000dec8.jpg' +p10219 +sg12 +g27 +sa(dp10220 +g2 +S'Elephant' +p10221 +sg4 +S'Martin Schongauer' +p10222 +sg6 +S'engraving' +p10223 +sg8 +S'c. 1480/1490' +p10224 +sg10 +S'http://www.nga.gov:80/thumb-l/a00065/a0006537.jpg' +p10225 +sg12 +g27 +sa(dp10226 +g2 +S'The Visitation' +p10227 +sg4 +S'Master E.S.' +p10228 +sg6 +S'engraving' +p10229 +sg8 +S'c. 1450/1460' +p10230 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3ae.jpg' +p10231 +sg12 +g27 +sa(dp10232 +g2 +S'The Archangel Gabriel' +p10233 +sg4 +S'Martin Schongauer' +p10234 +sg6 +S'engraving on laid paper' +p10235 +sg8 +S'c. 1490/1491' +p10236 +sg10 +S'http://www.nga.gov:80/thumb-l/a00020/a000202b.jpg' +p10237 +sg12 +g27 +sa(dp10238 +g2 +S'John, 4th Earl of Darnley' +p10239 +sg4 +S'Thomas Gainsborough' +p10240 +sg6 +S'oil on canvas' +p10241 +sg8 +S'1785' +p10242 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cdb.jpg' +p10243 +sg12 +g27 +sa(dp10244 +g2 +S"Tourelle de la Rue de la Tix\xc3\xa9randerie, Paris (House with a Turret, Weavers' Street, Paris)" +p10245 +sg4 +S'Charles Meryon' +p10246 +sg6 +S'etching on green paper' +p10247 +sg8 +S'1852' +p10248 +sg10 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d0f.jpg' +p10249 +sg12 +g27 +sa(dp10250 +g2 +S'Saint George' +p10251 +sg4 +S'Benedetto Montagna' +p10252 +sg6 +S'engraving' +p10253 +sg8 +S'c. 1506' +p10254 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c753.jpg' +p10255 +sg12 +g27 +sa(dp10256 +g2 +S'The Virgin in the Clouds' +p10257 +sg4 +S'Artist Information (' +p10258 +sg6 +S'(artist)' +p10259 +sg8 +S'\n' +p10260 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5c7.jpg' +p10261 +sg12 +g27 +sa(dp10262 +g2 +S'Black Lion Wharf' +p10263 +sg4 +S'James McNeill Whistler' +p10264 +sg6 +S'etching' +p10265 +sg8 +S'1859' +p10266 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bbf.jpg' +p10267 +sg12 +g27 +sa(dp10268 +g2 +S'The Little Nude Model Reading' +p10269 +sg4 +S'James McNeill Whistler' +p10270 +sg6 +S'lithograph' +p10271 +sg8 +S'1890' +p10272 +sg10 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa79.jpg' +p10273 +sg12 +g27 +sa(dp10274 +g2 +S'Virgin at the Window' +p10275 +sg4 +S'Barthel Beham' +p10276 +sg6 +S'engraving' +p10277 +sg8 +S'unknown date\n' +p10278 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7aa.jpg' +p10279 +sg12 +g27 +sa(dp10280 +g2 +S'The Agony in the Garden' +p10281 +sg4 +S'Rembrandt van Rijn' +p10282 +sg6 +S'etching and drypoint' +p10283 +sg8 +S'c. 1657' +p10284 +sg10 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005ac8.jpg' +p10285 +sg12 +g27 +sa(dp10286 +g2 +S'Lady Hamilton as Nature' +p10287 +sg4 +S'Artist Information (' +p10288 +sg6 +S'(artist after)' +p10289 +sg8 +S'\n' +p10290 +sg10 +S'http://www.nga.gov:80/thumb-l/a00078/a0007822.jpg' +p10291 +sg12 +g27 +sa(dp10292 +g12 +g27 +sg6 +S'etching and drypoint' +p10293 +sg8 +S'1642' +p10294 +sg2 +S'The Descent from the Cross: a Sketch' +p10295 +sg4 +S'Rembrandt van Rijn' +p10296 +sa(dp10297 +g2 +S'Lucrezia Sommaria' +p10298 +sg4 +S'Ridolfo Ghirlandaio' +p10299 +sg6 +S'oil on panel' +p10300 +sg8 +S'c. 1510' +p10301 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a00005d5.jpg' +p10302 +sg12 +g27 +sa(dp10303 +g2 +S'Christ at Emmaus: the Larger Plate' +p10304 +sg4 +S'Rembrandt van Rijn' +p10305 +sg6 +S'etching, burin and drypoint' +p10306 +sg8 +S'1654' +p10307 +sg10 +S'http://www.nga.gov:80/thumb-l/a00058/a00058b1.jpg' +p10308 +sg12 +g27 +sa(dp10309 +g2 +S'The Virgin and Child with the Cat and Snake' +p10310 +sg4 +S'Rembrandt van Rijn' +p10311 +sg6 +S'etching' +p10312 +sg8 +S'1654' +p10313 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f75.jpg' +p10314 +sg12 +g27 +sa(dp10315 +g2 +S'The Flight into Egypt: Crossing a Brook' +p10316 +sg4 +S'Rembrandt van Rijn' +p10317 +sg6 +S'etching and drypoint' +p10318 +sg8 +S'1654' +p10319 +sg10 +S'http://www.nga.gov:80/thumb-l/a00056/a0005655.jpg' +p10320 +sg12 +g27 +sa(dp10321 +g2 +S'Christ Crucified between the Two Thieves (The Three Crosses)' +p10322 +sg4 +S'Rembrandt van Rijn' +p10323 +sg6 +S'drypoint and burin' +p10324 +sg8 +S'1653' +p10325 +sg10 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005ac9.jpg' +p10326 +sg12 +g27 +sa(dp10327 +g2 +S'Landscape with Three Gabled Cottages beside a Road' +p10328 +sg4 +S'Rembrandt van Rijn' +p10329 +sg6 +S'etching and drypoint' +p10330 +sg8 +S'1650' +p10331 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d33c.jpg' +p10332 +sg12 +g27 +sa(dp10333 +g2 +S'Self-Portrait Leaning on a Stone Sill' +p10334 +sg4 +S'Rembrandt van Rijn' +p10335 +sg6 +S'etching' +p10336 +sg8 +S'1639' +p10337 +sg10 +S'http://www.nga.gov:80/thumb-l/a00050/a0005091.jpg' +p10338 +sg12 +g27 +sa(dp10339 +g2 +S'The Three Trees' +p10340 +sg4 +S'Rembrandt van Rijn' +p10341 +sg6 +S'etching with drypoint and engraving on laid paper' +p10342 +sg8 +S'1643' +p10343 +sg10 +S'http://www.nga.gov:80/thumb-l/a00016/a000164e.jpg' +p10344 +sg12 +g27 +sa(dp10345 +g2 +S'Philippe le Roy, Lord of Ravels' +p10346 +sg4 +S'Sir Anthony van Dyck' +p10347 +sg6 +S'etching' +p10348 +sg8 +S'probably 1626/1641' +p10349 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0df.jpg' +p10350 +sg12 +g27 +sa(dp10351 +g2 +S'The Raising of Lazarus' +p10352 +sg4 +S'Benozzo Gozzoli' +p10353 +sg6 +S'oil (?) on canvas' +p10354 +sg8 +S'mid 1490s' +p10355 +sg10 +S'http://www.nga.gov:80/thumb-l/a00008/a0000885.jpg' +p10356 +sg12 +g27 +sa(dp10357 +g2 +S'The Milkmaid' +p10358 +sg4 +S'Lucas van Leyden' +p10359 +sg6 +S'engraving' +p10360 +sg8 +S'1510' +p10361 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce96.jpg' +p10362 +sg12 +g27 +sa(dp10363 +g2 +S"Tourelle de la Rue de la Tix\xc3\xa9randerie, Paris (House with a Turret, Weavers' Street, Paris)" +p10364 +sg4 +S'Charles Meryon' +p10365 +sg6 +S'etching' +p10366 +sg8 +S'1852' +p10367 +sg10 +S'http://www.nga.gov:80/thumb-l/a00099/a000995a.jpg' +p10368 +sg12 +g27 +sa(dp10369 +g12 +g27 +sg6 +S'lithograph' +p10370 +sg8 +S'unknown date\n' +p10371 +sg2 +S'The Cannon' +p10372 +sg4 +S'Aleksandr Nikolaevich Samokhvalov' +p10373 +sa(dp10374 +g12 +g27 +sg6 +S'lithograph' +p10375 +sg8 +S'1933' +p10376 +sg2 +S'Woman on White Horse' +p10377 +sg4 +S'Aleksandr Nikolaevich Samokhvalov' +p10378 +sa(dp10379 +g12 +g27 +sg6 +S'lithograph' +p10380 +sg8 +S'1936' +p10381 +sg2 +S'Coffee' +p10382 +sg4 +S'Alfred Bendiner' +p10383 +sa(dp10384 +g2 +S'Le stryge (The Vampire)' +p10385 +sg4 +S'Charles Meryon' +p10386 +sg6 +S'etching' +p10387 +sg8 +S'1853' +p10388 +sg10 +S'http://www.nga.gov:80/thumb-l/a00099/a0009960.jpg' +p10389 +sg12 +g27 +sa(dp10390 +g2 +S'Allegory of War and Peace' +p10391 +sg4 +S'German 15th Century' +p10392 +sg6 +S'Schreiber, no. 1944, State m' +p10393 +sg8 +S'\nwoodcut' +p10394 +sg10 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c0a.jpg' +p10395 +sg12 +g27 +sa(dp10396 +g2 +S'Allegory of the Meeting of Pope Paul II and Emperor Frederick III' +p10397 +sg4 +S'German 15th Century' +p10398 +sg6 +S'image: 41.3 x 29.2 cm (16 1/4 x 11 1/2 in.)\r\nsheet: 38.4 x 28.8 cm (15 1/8 x 11 5/16 in.)\r\noverall (external frame dimensions): 59.7 x 44.5 cm (23 1/2 x 17 1/2 in.)' +p10399 +sg8 +S'\nwoodcut, hand-colored in green, red lake, yellow, tan, and orange' +p10400 +sg10 +S'http://www.nga.gov:80/thumb-l/a00056/a000562e.jpg' +p10401 +sg12 +g27 +sa(dp10402 +g2 +S"Queen Katherine's Dream" +p10403 +sg4 +S'William Blake' +p10404 +sg6 +S'pen and ink with watercolor heightened with white and gold over graphite' +p10405 +sg8 +S'c. 1825' +p10406 +sg10 +S'http://www.nga.gov:80/thumb-l/a00029/a0002955.jpg' +p10407 +sg12 +g27 +sa(dp10408 +g2 +S'Marin Cureau de La Chambre' +p10409 +sg4 +S'Robert Nanteuil' +p10410 +sg6 +S'graphite with scraping on vellum' +p10411 +sg8 +S'c. 1656' +p10412 +sg10 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f99.jpg' +p10413 +sg12 +g27 +sa(dp10414 +g2 +S'Saint Martin and the Beggar' +p10415 +sg4 +S'El Greco' +p10416 +sg6 +S', 1597/1599' +p10417 +sg8 +S'\n' +p10418 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a00005f1.jpg' +p10419 +sg12 +S'Commissioned for the Chapel of San José in Toledo by Martín\nRamírez, a namesake\nof the saint and donor of the chapel, \n The saint, who lived during the reign of Constantine the Great, was a member of\nthe imperial cavalry stationed near Amiens, in Gaul. Coming upon a shivering beggar\nnear the city gates on a cold winter day, the young soldier divided his cloak with\nhis sword and shared it with him. Tradition has it that Christ later appeared to\nMartin in a dream, saying, "What thou hast done for that poor man, thou hast done\nfor me."\n El Greco portrayed the fourth-century saint as a young nobleman, clad in elegant\ngold-damascened armor, astride a white Arabian horse. Seen from a low vantage point,\nthe figures seem monumental, looming over the landscape with its distant view of\nToledo and the river Tagus. The saint\'s relatively naturalistic proportions contrast\nwith the attenuated form of the nearly nude beggar. The obvious distortion of the\nbeggar\'s form suggests that he is not of this world and hints at the later revelation\nof his true identity in Martin\'s dream.\n ' +p10420 +sa(dp10421 +g2 +S'Marin Cureau de la Chambre' +p10422 +sg4 +S'Robert Nanteuil' +p10423 +sg6 +S'engraving' +p10424 +sg8 +S'1656' +p10425 +sg10 +S'http://www.nga.gov:80/thumb-l/a00061/a00061ea.jpg' +p10426 +sg12 +g27 +sa(dp10427 +g2 +S'The Weary Ploughman, or The Herdsman, or Tardus Bubulcus' +p10428 +sg4 +S'Samuel Palmer' +p10429 +sg6 +S'etching' +p10430 +sg8 +S'in or after 1858' +p10431 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c406.jpg' +p10432 +sg12 +g27 +sa(dp10433 +g2 +S'Design for Calendar' +p10434 +sg4 +S'Philipp Otto Runge' +p10435 +sg6 +S'engraving' +p10436 +sg8 +S'unknown date\n' +p10437 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b470.jpg' +p10438 +sg12 +g27 +sa(dp10439 +g2 +S'Saint Bonaventure Arriving and Preaching in Lyon' +p10440 +sg4 +S'French 15th Century' +p10441 +sg6 +S'Schreiber, Vol. IX, no. 1282, State x' +p10442 +sg8 +S'\nwoodcut, hand-colored in vermilion, orange-rose, light and dark gray-blue, and lavender' +p10443 +sg10 +S'http://www.nga.gov:80/thumb-l/a00082/a00082ec.jpg' +p10444 +sg12 +g27 +sa(dp10445 +g2 +S'Woman in a Cape (La femme \xc3\xa0 la p\xc3\xa8lerine)' +p10446 +sg4 +S'Albert Besnard' +p10447 +sg6 +S'etching' +p10448 +sg8 +S'1889' +p10449 +sg10 +S'http://www.nga.gov:80/thumb-l/a00097/a0009775.jpg' +p10450 +sg12 +g27 +sa(dp10451 +g12 +g27 +sg6 +S'bound volume with 119 woodcuts' +p10452 +sg8 +S'published 1799' +p10453 +sg2 +S"Images de Saints et de Saintes issus de la famille de l'Empereur Maximilien I" +p10454 +sg4 +S'Leonhard Beck' +p10455 +sa(dp10456 +g12 +g27 +sg6 +S'Rosenwald Collection' +p10457 +sg8 +S'\nbound album of 125 drawings in pen and ink and watercolor plus 1 hand-colored engraving' +p10458 +sg2 +S'Album of Heroes, Kings, and Queens' +p10459 +sg4 +S'British 16th Century' +p10460 +sa(dp10461 +g12 +g27 +sg6 +S'Rosenwald Collection' +p10462 +sg8 +S'\nbound volume with 10 pages of engravings with text' +p10463 +sg2 +S'Plates from John Leslie\'s "De Origine Scotorum"' +p10464 +sg4 +S'British 17th Century' +p10465 +sa(dp10466 +g12 +g27 +sg6 +S'Rosenwald Collection' +p10467 +sg8 +S'\nbound volume with 11 engravings; proofs of the plates from the 1675 edition' +p10468 +sg2 +S'Plates from John Leslie\'s "De Origine Scotorum"' +p10469 +sg4 +S'British 17th Century' +p10470 +sa(dp10471 +g12 +g27 +sg6 +S'English, 1571 - 1625' +p10472 +sg8 +S'(artist after)' +p10473 +sg2 +S'Portraits of English Sovereigns, William I to James I' +p10474 +sg4 +S'Artist Information (' +p10475 +sa(dp10476 +g2 +S'Madonna and Child with Saint Martina and Saint Agnes' +p10477 +sg4 +S'El Greco' +p10478 +sg6 +S', 1597/1599' +p10479 +sg8 +S'\n' +p10480 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a0000588.jpg' +p10481 +sg12 +S'This painting and \n ' +p10482 +sa(dp10483 +g12 +g27 +sg6 +S'(artist)' +p10484 +sg8 +S'\n' +p10485 +sg2 +S'Heads of Kings and Queens of England' +p10486 +sg4 +S'Artist Information (' +p10487 +sa(dp10488 +g12 +g27 +sg6 +S'Rosenwald Collection' +p10489 +sg8 +S'\nbound volume with 13 engravings' +p10490 +sg2 +S'Effigies Regum Anglorum' +p10491 +sg4 +S'British 17th Century' +p10492 +sa(dp10493 +g12 +g27 +sg6 +S'French, 1723 - 1797' +p10494 +sg8 +S'(artist)' +p10495 +sg2 +S'English Royal Portraits' +p10496 +sg4 +S'Artist Information (' +p10497 +sa(dp10498 +g12 +g27 +sg6 +S'bound volume with 31 color stipple engravings' +p10499 +sg8 +S'unknown date\n' +p10500 +sg2 +S'Portraits of Kings and Queens of England' +p10501 +sg4 +S'John Chapman' +p10502 +sa(dp10503 +g12 +g27 +sg6 +S'bound volume with 12 mezzotints' +p10504 +sg8 +S'unknown date\n' +p10505 +sg2 +S'Mezzotint Portraits of British Sovereigns' +p10506 +sg4 +S'John Faber II' +p10507 +sa(dp10508 +g12 +g27 +sg6 +S', 1584' +p10509 +sg8 +S'\n' +p10510 +sg2 +S'The Throne with Sceptre and Orb' +p10511 +sg4 +S'Hendrick Goltzius' +p10512 +sa(dp10513 +g12 +g27 +sg6 +S', 1584' +p10514 +sg8 +S'\n' +p10515 +sg2 +S'Antiquissima Noblissimaque Ang. Regum (first edition)' +p10516 +sg4 +S'Hendrick Goltzius' +p10517 +sa(dp10518 +g12 +g27 +sg6 +S', 1584' +p10519 +sg8 +S'\n' +p10520 +sg2 +S'A Herald' +p10521 +sg4 +S'Hendrick Goltzius' +p10522 +sa(dp10523 +g12 +g27 +sg6 +S', 1584' +p10524 +sg8 +S'\n' +p10525 +sg2 +S'William the Conqueror' +p10526 +sg4 +S'Hendrick Goltzius' +p10527 +sa(dp10528 +g12 +g27 +sg6 +S', 1584' +p10529 +sg8 +S'\n' +p10530 +sg2 +S'William II' +p10531 +sg4 +S'Hendrick Goltzius' +p10532 +sa(dp10533 +g2 +S'Grand Canal with the Rialto Bridge, Venice' +p10534 +sg4 +S'Francesco Guardi' +p10535 +sg6 +S'oil on canvas' +p10536 +sg8 +S'probably c. 1780' +p10537 +sg10 +S'http://www.nga.gov:80/thumb-l/a00006/a000060d.jpg' +p10538 +sg12 +S"For several decades after Canaletto painted his \n The Rialto Bridge, built in 1592 as the first stone bridge to span the Grand Canal, is the focal\npoint of Guardi's composition, one of several versions of this popular attraction. Lined with\nmarket stalls and shops, it formed the hub of an important commercial center. Just beyond the\nbridge at the right is the Fondaco dei Tedeschi, the warehouse of the German merchants -- now a\npost office -- that became famous in the Renaissance when Giorgione and Titian frescoed its\nfacade.\n People poke their heads out of windows and gather on the balconies to watch the spectacle of\ndaily life on the Rialto. The artist must have taken his view from a similar perch, looking down\non the bustling scene. Market barges draped in canvas canopies are tied up at the quayside.\nEnergetic gondoliers pole their boats up the crowded canal.\n " +p10539 +sa(dp10540 +g12 +g27 +sg6 +S', 1584' +p10541 +sg8 +S'\n' +p10542 +sg2 +S'Henry I' +p10543 +sg4 +S'Hendrick Goltzius' +p10544 +sa(dp10545 +g12 +g27 +sg6 +S', 1584' +p10546 +sg8 +S'\n' +p10547 +sg2 +S'Stephen' +p10548 +sg4 +S'Hendrick Goltzius' +p10549 +sa(dp10550 +g12 +g27 +sg6 +S', 1584' +p10551 +sg8 +S'\n' +p10552 +sg2 +S'Henry II' +p10553 +sg4 +S'Hendrick Goltzius' +p10554 +sa(dp10555 +g12 +g27 +sg6 +S', 1584' +p10556 +sg8 +S'\n' +p10557 +sg2 +S'Richard the Lion-Hearted' +p10558 +sg4 +S'Hendrick Goltzius' +p10559 +sa(dp10560 +g12 +g27 +sg6 +S', 1584' +p10561 +sg8 +S'\n' +p10562 +sg2 +S'John without Land' +p10563 +sg4 +S'Hendrick Goltzius' +p10564 +sa(dp10565 +g12 +g27 +sg6 +S', 1584' +p10566 +sg8 +S'\n' +p10567 +sg2 +S'Henry III' +p10568 +sg4 +S'Hendrick Goltzius' +p10569 +sa(dp10570 +g12 +g27 +sg6 +S', 1584' +p10571 +sg8 +S'\n' +p10572 +sg2 +S'Edward I' +p10573 +sg4 +S'Hendrick Goltzius' +p10574 +sa(dp10575 +g12 +g27 +sg6 +S', 1584' +p10576 +sg8 +S'\n' +p10577 +sg2 +S'Edward II' +p10578 +sg4 +S'Hendrick Goltzius' +p10579 +sa(dp10580 +g12 +g27 +sg6 +S', 1584' +p10581 +sg8 +S'\n' +p10582 +sg2 +S'Edward III' +p10583 +sg4 +S'Hendrick Goltzius' +p10584 +sa(dp10585 +g12 +g27 +sg6 +S', 1584' +p10586 +sg8 +S'\n' +p10587 +sg2 +S'Richard II' +p10588 +sg4 +S'Hendrick Goltzius' +p10589 +sa(dp10590 +g2 +S'Portrait of a Man' +p10591 +sg4 +S'Frans Hals' +p10592 +sg6 +S'oil on canvas' +p10593 +sg8 +S'1648/1650' +p10594 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e5e.jpg' +p10595 +sg12 +S"In the lower left corner, this canvas bears Frans Hals' monogram: \n The fluid brushstrokes defining individual strands of hair are consistent with Hals' later work. At that time, hats with cylindrical crowns and upturned brims were stylish. This hat must have been painted out sometime before 1673. That was the year of the death of a minor Dutch artist who copied this portrait with the model bare-headed. In 1991, National Gallery conservators removed the overpaint and revealed the portrait's original appearance with the hat pushed back high on the head.\n " +p10596 +sa(dp10597 +g12 +g27 +sg6 +S', 1584' +p10598 +sg8 +S'\n' +p10599 +sg2 +S'Henry IV' +p10600 +sg4 +S'Hendrick Goltzius' +p10601 +sa(dp10602 +g12 +g27 +sg6 +S', 1584' +p10603 +sg8 +S'\n' +p10604 +sg2 +S'Henry V' +p10605 +sg4 +S'Hendrick Goltzius' +p10606 +sa(dp10607 +g12 +g27 +sg6 +S', 1584' +p10608 +sg8 +S'\n' +p10609 +sg2 +S'Henry VI' +p10610 +sg4 +S'Hendrick Goltzius' +p10611 +sa(dp10612 +g12 +g27 +sg6 +S', 1584' +p10613 +sg8 +S'\n' +p10614 +sg2 +S'Edward IV' +p10615 +sg4 +S'Hendrick Goltzius' +p10616 +sa(dp10617 +g12 +g27 +sg6 +S', 1584' +p10618 +sg8 +S'\n' +p10619 +sg2 +S'Edward V' +p10620 +sg4 +S'Hendrick Goltzius' +p10621 +sa(dp10622 +g12 +g27 +sg6 +S', 1584' +p10623 +sg8 +S'\n' +p10624 +sg2 +S'Richard III' +p10625 +sg4 +S'Hendrick Goltzius' +p10626 +sa(dp10627 +g12 +g27 +sg6 +S', 1584' +p10628 +sg8 +S'\n' +p10629 +sg2 +S'Henry VII' +p10630 +sg4 +S'Hendrick Goltzius' +p10631 +sa(dp10632 +g12 +g27 +sg6 +S', 1584' +p10633 +sg8 +S'\n' +p10634 +sg2 +S'Henry VIII' +p10635 +sg4 +S'Hendrick Goltzius' +p10636 +sa(dp10637 +g12 +g27 +sg6 +S', 1584' +p10638 +sg8 +S'\n' +p10639 +sg2 +S'Edward VI' +p10640 +sg4 +S'Hendrick Goltzius' +p10641 +sa(dp10642 +g12 +g27 +sg6 +S', 1584' +p10643 +sg8 +S'\n' +p10644 +sg2 +S'Mary' +p10645 +sg4 +S'Hendrick Goltzius' +p10646 +sa(dp10647 +g2 +S'Portrait of a Gentleman' +p10648 +sg4 +S'Frans Hals' +p10649 +sg6 +S'oil on canvas' +p10650 +sg8 +S'1650/1652' +p10651 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e5f.jpg' +p10652 +sg12 +S"Sketchy contours, especially around the hat and cape, are\r\n evidence that \r\n Hals improvised and adjusted this design as he worked. The long\r\n cape, the \r\n tassels on the collar, and the gloves dangling idly from one hand\r\n indicate \r\n that the patron was a person of some means. Like Hals' \n The very fact that this is a three-quarter-length figure adds to its dignity. Full-length, life-size portraits of individual sitters were very unusual in\r\nseventeenth-century Holland, probably because the Dutch burghers associated such large images with aristocratic pretensions. Frans Hals painted only one\r\nlife-size, full-length likeness of an individual sitter. A three-quarter-length portrait, therefore, is as about as grandiose a work as this matter-of-fact artist\r\nproduced. Even here, though, Hals candidly recorded a mole on the handsome sitter's cheek.\n " +p10653 +sa(dp10654 +g12 +g27 +sg6 +S', 1584' +p10655 +sg8 +S'\n' +p10656 +sg2 +S'Elizabeth' +p10657 +sg4 +S'Hendrick Goltzius' +p10658 +sa(dp10659 +g12 +g27 +sg6 +S', in or after 1585' +p10660 +sg8 +S'\n' +p10661 +sg2 +S'The Throne with the Sceptre and Orb' +p10662 +sg4 +S'Hendrick Goltzius' +p10663 +sa(dp10664 +g12 +g27 +sg6 +S', in or after 1585' +p10665 +sg8 +S'\n' +p10666 +sg2 +S'Antiquissima Noblissimaque Ang. Regum (late edition)' +p10667 +sg4 +S'Hendrick Goltzius' +p10668 +sa(dp10669 +g12 +g27 +sg6 +S', in or after 1585' +p10670 +sg8 +S'\n' +p10671 +sg2 +S'A Herald' +p10672 +sg4 +S'Hendrick Goltzius' +p10673 +sa(dp10674 +g12 +g27 +sg6 +S', in or after 1585' +p10675 +sg8 +S'\n' +p10676 +sg2 +S'William I' +p10677 +sg4 +S'Hendrick Goltzius' +p10678 +sa(dp10679 +g12 +g27 +sg6 +S', in or after 1585' +p10680 +sg8 +S'\n' +p10681 +sg2 +S'William II' +p10682 +sg4 +S'Hendrick Goltzius' +p10683 +sa(dp10684 +g12 +g27 +sg6 +S', in or after 1585' +p10685 +sg8 +S'\n' +p10686 +sg2 +S'Henry I' +p10687 +sg4 +S'Hendrick Goltzius' +p10688 +sa(dp10689 +g12 +g27 +sg6 +S', in or after 1585' +p10690 +sg8 +S'\n' +p10691 +sg2 +S'Stephen' +p10692 +sg4 +S'Hendrick Goltzius' +p10693 +sa(dp10694 +g12 +g27 +sg6 +S', in or after 1585' +p10695 +sg8 +S'\n' +p10696 +sg2 +S'Henry II' +p10697 +sg4 +S'Hendrick Goltzius' +p10698 +sa(dp10699 +g12 +g27 +sg6 +S', in or after 1585' +p10700 +sg8 +S'\n' +p10701 +sg2 +S'Richard the Lion-Hearted' +p10702 +sg4 +S'Hendrick Goltzius' +p10703 +sa(dp10704 +g2 +S'Hut among Trees' +p10705 +sg4 +S'Meindert Hobbema' +p10706 +sg6 +S'oil on canvas' +p10707 +sg8 +S'c. 1664' +p10708 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e65.jpg' +p10709 +sg12 +g27 +sa(dp10710 +g12 +g27 +sg6 +S', in or after 1585' +p10711 +sg8 +S'\n' +p10712 +sg2 +S'John without Land' +p10713 +sg4 +S'Hendrick Goltzius' +p10714 +sa(dp10715 +g12 +g27 +sg6 +S', in or after 1585' +p10716 +sg8 +S'\n' +p10717 +sg2 +S'Henry III' +p10718 +sg4 +S'Hendrick Goltzius' +p10719 +sa(dp10720 +g12 +g27 +sg6 +S', in or after 1585' +p10721 +sg8 +S'\n' +p10722 +sg2 +S'Edward I' +p10723 +sg4 +S'Hendrick Goltzius' +p10724 +sa(dp10725 +g12 +g27 +sg6 +S', in or after 1585' +p10726 +sg8 +S'\n' +p10727 +sg2 +S'Edward II' +p10728 +sg4 +S'Hendrick Goltzius' +p10729 +sa(dp10730 +g12 +g27 +sg6 +S', in or after 1585' +p10731 +sg8 +S'\n' +p10732 +sg2 +S'Edward III' +p10733 +sg4 +S'Hendrick Goltzius' +p10734 +sa(dp10735 +g12 +g27 +sg6 +S', in or after 1585' +p10736 +sg8 +S'\n' +p10737 +sg2 +S'Richard II' +p10738 +sg4 +S'Hendrick Goltzius' +p10739 +sa(dp10740 +g12 +g27 +sg6 +S', in or after 1585' +p10741 +sg8 +S'\n' +p10742 +sg2 +S'Henry IV' +p10743 +sg4 +S'Hendrick Goltzius' +p10744 +sa(dp10745 +g12 +g27 +sg6 +S', in or after 1585' +p10746 +sg8 +S'\n' +p10747 +sg2 +S'Henry V' +p10748 +sg4 +S'Hendrick Goltzius' +p10749 +sa(dp10750 +g12 +g27 +sg6 +S', in or after 1585' +p10751 +sg8 +S'\n' +p10752 +sg2 +S'Henry VI' +p10753 +sg4 +S'Hendrick Goltzius' +p10754 +sa(dp10755 +g12 +g27 +sg6 +S', in or after 1585' +p10756 +sg8 +S'\n' +p10757 +sg2 +S'Edward IV' +p10758 +sg4 +S'Hendrick Goltzius' +p10759 +sa(dp10760 +g2 +S'Approach to Venice' +p10761 +sg4 +S'Joseph Mallord William Turner' +p10762 +sg6 +S'oil on canvas' +p10763 +sg8 +S'1844' +p10764 +sg10 +S'http://www.nga.gov:80/thumb-l/a00007/a0000731.jpg' +p10765 +sg12 +S'As barges and gondolas slowly cross the Venetian lagoon, the misty city \r\n vanishes in the twilight. \n ' +p10766 +sa(dp10767 +g2 +S'The Travelers' +p10768 +sg4 +S'Meindert Hobbema' +p10769 +sg6 +S'oil on canvas' +p10770 +sg8 +S'166[2?]' +p10771 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e66.jpg' +p10772 +sg12 +S'Hobbema studied under \n To create his picturesque canvases, Hobbema rearranged certain\r\n favorite \r\n elements such as old water mills, thatch-roofed cottages, and\r\n embanked \r\n dikes. Hobbema’s hallmark is rolling clouds that give promise of a \r\n refreshing rain. Patches of sunshine illuminate the rutted roads or\r\n small \r\n streams that lead back into the rustic woods. All six of the\r\n National Gallery’s canvases by Hobbema share these \r\n characteristics.\n In 1669, Hobbema was appointed Amsterdam’s inspector of imported\r\n wine. This \r\n civil-service job must have been profitable because very few\r\n paintings date \r\n from the remaining forty years of Hobbema’s life.\n ' +p10773 +sa(dp10774 +g12 +g27 +sg6 +S', in or after 1585' +p10775 +sg8 +S'\n' +p10776 +sg2 +S'Edward V' +p10777 +sg4 +S'Hendrick Goltzius' +p10778 +sa(dp10779 +g12 +g27 +sg6 +S', in or after 1585' +p10780 +sg8 +S'\n' +p10781 +sg2 +S'Richard III' +p10782 +sg4 +S'Hendrick Goltzius' +p10783 +sa(dp10784 +g12 +g27 +sg6 +S', in or after 1585' +p10785 +sg8 +S'\n' +p10786 +sg2 +S'Henry VII' +p10787 +sg4 +S'Hendrick Goltzius' +p10788 +sa(dp10789 +g12 +g27 +sg6 +S', in or after 1585' +p10790 +sg8 +S'\n' +p10791 +sg2 +S'Henry VIII' +p10792 +sg4 +S'Hendrick Goltzius' +p10793 +sa(dp10794 +g12 +g27 +sg6 +S', in or after 1585' +p10795 +sg8 +S'\n' +p10796 +sg2 +S'Edward VI' +p10797 +sg4 +S'Hendrick Goltzius' +p10798 +sa(dp10799 +g12 +g27 +sg6 +S', in or after 1585' +p10800 +sg8 +S'\n' +p10801 +sg2 +S'Mary' +p10802 +sg4 +S'Hendrick Goltzius' +p10803 +sa(dp10804 +g12 +g27 +sg6 +S', in or after 1585' +p10805 +sg8 +S'\n' +p10806 +sg2 +S'Elizabeth' +p10807 +sg4 +S'Hendrick Goltzius' +p10808 +sa(dp10809 +g12 +g27 +sg6 +S', in or after 1585' +p10810 +sg8 +S'\n' +p10811 +sg2 +S'James I' +p10812 +sg4 +S'Hendrick Goltzius' +p10813 +sa(dp10814 +g12 +g27 +sg6 +S', in or after 1585' +p10815 +sg8 +S'\n' +p10816 +sg2 +S'Anne of Denmark' +p10817 +sg4 +S'Hendrick Goltzius' +p10818 +sa(dp10819 +g12 +g27 +sg6 +S'bound volume with 22 engravings plus title page for each of the 4 volumes of published edition' +p10820 +sg8 +S'published 1726/1727' +p10821 +sg2 +S'Royal Portraits and Title Pages from "Acta Regia"' +p10822 +sg4 +S'Michiel van der Gucht' +p10823 +sa(dp10824 +g2 +S'Village near a Pool' +p10825 +sg4 +S'Meindert Hobbema' +p10826 +sg6 +S'oil on canvas' +p10827 +sg8 +S'c. 1670' +p10828 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e67.jpg' +p10829 +sg12 +g27 +sa(dp10830 +g12 +g27 +sg6 +S'(artist after)' +p10831 +sg8 +S'\n' +p10832 +sg2 +S'The Marriage of Henry VIII and Anne Boleyn' +p10833 +sg4 +S'Artist Information (' +p10834 +sa(dp10835 +g12 +g27 +sg6 +S'(artist after)' +p10836 +sg8 +S'\n' +p10837 +sg2 +S'Events in the Life of King Henry VIII' +p10838 +sg4 +S'Artist Information (' +p10839 +sa(dp10840 +g12 +g27 +sg6 +S'(artist after)' +p10841 +sg8 +S'\n' +p10842 +sg2 +S'Henry VIII in Danger of His Life' +p10843 +sg4 +S'Artist Information (' +p10844 +sa(dp10845 +g12 +g27 +sg6 +S'(artist after)' +p10846 +sg8 +S'\n' +p10847 +sg2 +S'Henry VIII Travels to Meet the Princess of Cleves' +p10848 +sg4 +S'Artist Information (' +p10849 +sa(dp10850 +g12 +g27 +sg6 +S'(artist after)' +p10851 +sg8 +S'\n' +p10852 +sg2 +S'Henry VIII Surprises the Viscountess of Rochefort and Anne Boleyn' +p10853 +sg4 +S'Artist Information (' +p10854 +sa(dp10855 +g12 +g27 +sg6 +S'(artist after)' +p10856 +sg8 +S'\n' +p10857 +sg2 +S'The Crowning of Anne Boleyn' +p10858 +sg4 +S'Artist Information (' +p10859 +sa(dp10860 +g12 +g27 +sg6 +S'(artist after)' +p10861 +sg8 +S'\n' +p10862 +sg2 +S'Interview between Henry VIII and Francis I' +p10863 +sg4 +S'Artist Information (' +p10864 +sa(dp10865 +g12 +g27 +sg6 +S'(artist after)' +p10866 +sg8 +S'\n' +p10867 +sg2 +S'Cardinal Wolsey Names Henry VIII His Heir' +p10868 +sg4 +S'Artist Information (' +p10869 +sa(dp10870 +g12 +g27 +sg6 +S'(artist after)' +p10871 +sg8 +S'\n' +p10872 +sg2 +S'Henry VIII Embraces Anne Boleyn' +p10873 +sg4 +S'Artist Information (' +p10874 +sa(dp10875 +g12 +g27 +sg6 +S'(artist after)' +p10876 +sg8 +S'\n' +p10877 +sg2 +S'Henry VIII Embraces and Cardinal Campeggio' +p10878 +sg4 +S'Artist Information (' +p10879 +sa(dp10880 +g2 +S'The Bedroom' +p10881 +sg4 +S'Pieter de Hooch' +p10882 +sg6 +S'oil on canvas' +p10883 +sg8 +S'1658/1660' +p10884 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d7b.jpg' +p10885 +sg12 +g27 +sa(dp10886 +g12 +g27 +sg6 +S'(artist after)' +p10887 +sg8 +S'\n' +p10888 +sg2 +S'Henry VIII before the Tribunal of the Legates' +p10889 +sg4 +S'Artist Information (' +p10890 +sa(dp10891 +g12 +g27 +sg6 +S'(artist after)' +p10892 +sg8 +S'\n' +p10893 +sg2 +S'Henry VIII and Anne Boleyn in the Country' +p10894 +sg4 +S'Artist Information (' +p10895 +sa(dp10896 +g12 +g27 +sg6 +S'(artist after)' +p10897 +sg8 +S'\n' +p10898 +sg2 +S'Henry VIII Opens the Verdict He Has Received Concerning His Marriage' +p10899 +sg4 +S'Artist Information (' +p10900 +sa(dp10901 +g12 +g27 +sg6 +S'(artist after)' +p10902 +sg8 +S'\n' +p10903 +sg2 +S'Henry VIII Repudiates Catherine' +p10904 +sg4 +S'Artist Information (' +p10905 +sa(dp10906 +g12 +g27 +sg6 +S'(artist after)' +p10907 +sg8 +S'\n' +p10908 +sg2 +S'The Death of Henry VIII' +p10909 +sg4 +S'Artist Information (' +p10910 +sa(dp10911 +g12 +g27 +sg6 +S'(artist)' +p10912 +sg8 +S'\n' +p10913 +sg2 +S'Prints from Gilbert Burnet\'s "Histoire de... en Angleterre"' +p10914 +sg4 +S'Artist Information (' +p10915 +sa(dp10916 +g12 +g27 +sg6 +S'(artist)' +p10917 +sg8 +S'\n' +p10918 +sg2 +S'Royal Portraits from "A Complete History of England ..."' +p10919 +sg4 +S'Artist Information (' +p10920 +sa(dp10921 +g12 +g27 +sg6 +S'Dutch, 1659 - c. 1724' +p10922 +sg8 +S'(artist)' +p10923 +sg2 +S'Portraits' +p10924 +sg4 +S'Artist Information (' +p10925 +sa(dp10926 +g12 +g27 +sg6 +S'English, 1684 - 1756' +p10927 +sg8 +S'(artist)' +p10928 +sg2 +S'The Heads of the Kings of England ...' +p10929 +sg4 +S'Artist Information (' +p10930 +sa(dp10931 +g12 +g27 +sg6 +S'(artist)' +p10932 +sg8 +S'\n' +p10933 +sg2 +S'Kings and Queens of England' +p10934 +sg4 +S'Artist Information (' +p10935 +sa(dp10936 +g2 +S'Woman and Child in a Courtyard' +p10937 +sg4 +S'Pieter de Hooch' +p10938 +sg6 +S'oil on canvas' +p10939 +sg8 +S'1658/1660' +p10940 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e69.jpg' +p10941 +sg12 +g27 +sa(dp10942 +g12 +g27 +sg6 +S'Dutch, 1659 - 1722' +p10943 +sg8 +S'(artist after)' +p10944 +sg2 +S'British Royal Portraits' +p10945 +sg4 +S'Artist Information (' +p10946 +sa(dp10947 +g12 +g27 +sg6 +S', unknown date' +p10948 +sg8 +S'\n' +p10949 +sg2 +S'Elizabeth, Queen of England' +p10950 +sg4 +S'Simon van de Passe' +p10951 +sa(dp10952 +g12 +g27 +sg6 +S', unknown date' +p10953 +sg8 +S'\n' +p10954 +sg2 +S'Shield of Queen Elizabeth' +p10955 +sg4 +S'Simon van de Passe' +p10956 +sa(dp10957 +g12 +g27 +sg6 +S', unknown date' +p10958 +sg8 +S'\n' +p10959 +sg2 +S'Elizabeth, Queen of England' +p10960 +sg4 +S'Simon van de Passe' +p10961 +sa(dp10962 +g12 +g27 +sg6 +S', unknown date' +p10963 +sg8 +S'\n' +p10964 +sg2 +S'Shield of Queen Elizabeth' +p10965 +sg4 +S'Simon van de Passe' +p10966 +sa(dp10967 +g12 +g27 +sg6 +S', unknown date' +p10968 +sg8 +S'\n' +p10969 +sg2 +S'Elizabeth, Queen of England' +p10970 +sg4 +S'Simon van de Passe' +p10971 +sa(dp10972 +g12 +g27 +sg6 +S', unknown date' +p10973 +sg8 +S'\n' +p10974 +sg2 +S'Shield of Queen of England' +p10975 +sg4 +S'Simon van de Passe' +p10976 +sa(dp10977 +g12 +g27 +sg6 +S', unknown date' +p10978 +sg8 +S'\n' +p10979 +sg2 +S'Shield of Queen Elizabeth [left half]' +p10980 +sg4 +S'Simon van de Passe' +p10981 +sa(dp10982 +g12 +g27 +sg6 +S', unknown date' +p10983 +sg8 +S'\n' +p10984 +sg2 +S'Elizabeth, Queen of England [right half]' +p10985 +sg4 +S'Simon van de Passe' +p10986 +sa(dp10987 +g12 +g27 +sg6 +S', unknown date' +p10988 +sg8 +S'\n' +p10989 +sg2 +S'Elizabeth, Queen of England' +p10990 +sg4 +S'Simon van de Passe' +p10991 +sa(dp10992 +g2 +S'The Hoppner Children' +p10993 +sg4 +S'John Hoppner' +p10994 +sg6 +S'oil on canvas' +p10995 +sg8 +S'1791' +p10996 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f41.jpg' +p10997 +sg12 +S"John Hoppner exhibited this engaging portrait of his own three sons at \n the Royal Academy in 1791. Preparing to bathe in a brook, seven-year-old \n Catherine Hampden unbuttons his jacket. As the eldest brother, he stands \n with dignity and greets the viewer. Richard, already undressed, looks \n adoringly up at Catherine, while baby Wilson struggles gamely to undo his \n frock. As adults, the older boys had political and diplomatic careers; the \n baby became a painter.\n John Hoppner, something of a prodigy, won the Royal Academy's \n gold medal for the best painting of the year when he was only twenty-three. \n Hoppner's father was a German-born surgeon to the British court. The \n artist himself, however, encouraged rumors that he was the illegitimate son \n of King George III. Such association with royalty, even though dubious, \n elevated him in society and boosted his career.\n " +p10998 +sa(dp10999 +g12 +g27 +sg6 +S', unknown date' +p11000 +sg8 +S'\n' +p11001 +sg2 +S'Shield of Queen Elizabeth' +p11002 +sg4 +S'Simon van de Passe' +p11003 +sa(dp11004 +g12 +g27 +sg6 +S', unknown date' +p11005 +sg8 +S'\n' +p11006 +sg2 +S'Shield of Queen Elizabeth' +p11007 +sg4 +S'Simon van de Passe' +p11008 +sa(dp11009 +g12 +g27 +sg6 +S', unknown date' +p11010 +sg8 +S'\n' +p11011 +sg2 +S'Shield of Queen Elizabeth' +p11012 +sg4 +S'Simon van de Passe' +p11013 +sa(dp11014 +g12 +g27 +sg6 +S', unknown date' +p11015 +sg8 +S'\n' +p11016 +sg2 +S'James I, King of England' +p11017 +sg4 +S'Simon van de Passe' +p11018 +sa(dp11019 +g12 +g27 +sg6 +S', unknown date' +p11020 +sg8 +S'\n' +p11021 +sg2 +S'Shield of James I' +p11022 +sg4 +S'Simon van de Passe' +p11023 +sa(dp11024 +g12 +g27 +sg6 +S', unknown date' +p11025 +sg8 +S'\n' +p11026 +sg2 +S'James I, King of England [top half]' +p11027 +sg4 +S'Simon van de Passe' +p11028 +sa(dp11029 +g12 +g27 +sg6 +S', unknown date' +p11030 +sg8 +S'\n' +p11031 +sg2 +S'Shield of James I [bottom half]' +p11032 +sg4 +S'Simon van de Passe' +p11033 +sa(dp11034 +g12 +g27 +sg6 +S', unknown date' +p11035 +sg8 +S'\n' +p11036 +sg2 +S'James I, King of England' +p11037 +sg4 +S'Simon van de Passe' +p11038 +sa(dp11039 +g12 +g27 +sg6 +S', unknown date' +p11040 +sg8 +S'\n' +p11041 +sg2 +S'James I, King of England' +p11042 +sg4 +S'Simon van de Passe' +p11043 +sa(dp11044 +g12 +g27 +sg6 +S', unknown date' +p11045 +sg8 +S'\n' +p11046 +sg2 +S'Shield of James I' +p11047 +sg4 +S'Simon van de Passe' +p11048 +sa(dp11049 +g2 +S"Leonardo de' Ginori" +p11050 +sg4 +S'Giuliano Bugiardini' +p11051 +sg6 +S'oil on panel' +p11052 +sg8 +S'c. 1528' +p11053 +sg10 +S'http://www.nga.gov:80/thumb-l/a00008/a0000809.jpg' +p11054 +sg12 +g27 +sa(dp11055 +g12 +g27 +sg6 +S', unknown date' +p11056 +sg8 +S'\n' +p11057 +sg2 +S'James I, King of England [top half]' +p11058 +sg4 +S'Simon van de Passe' +p11059 +sa(dp11060 +g12 +g27 +sg6 +S', unknown date' +p11061 +sg8 +S'\n' +p11062 +sg2 +S'Shield of James I [bottom half]' +p11063 +sg4 +S'Simon van de Passe' +p11064 +sa(dp11065 +g12 +g27 +sg6 +S', unknown date' +p11066 +sg8 +S'\n' +p11067 +sg2 +S'James I, King of England [top half]' +p11068 +sg4 +S'Simon van de Passe' +p11069 +sa(dp11070 +g12 +g27 +sg6 +S', unknown date' +p11071 +sg8 +S'\n' +p11072 +sg2 +S'Shield of James I [bottom half]' +p11073 +sg4 +S'Simon van de Passe' +p11074 +sa(dp11075 +g12 +g27 +sg6 +S', unknown date' +p11076 +sg8 +S'\n' +p11077 +sg2 +S'James I, King of England' +p11078 +sg4 +S'Simon van de Passe' +p11079 +sa(dp11080 +g12 +g27 +sg6 +S', unknown date' +p11081 +sg8 +S'\n' +p11082 +sg2 +S'James I, King of England' +p11083 +sg4 +S'Simon van de Passe' +p11084 +sa(dp11085 +g12 +g27 +sg6 +S', unknown date' +p11086 +sg8 +S'\n' +p11087 +sg2 +S'James I, King of England' +p11088 +sg4 +S'Simon van de Passe' +p11089 +sa(dp11090 +g12 +g27 +sg6 +S', unknown date' +p11091 +sg8 +S'\n' +p11092 +sg2 +S'James I, King of England' +p11093 +sg4 +S'Simon van de Passe' +p11094 +sa(dp11095 +g12 +g27 +sg6 +S', unknown date' +p11096 +sg8 +S'\n' +p11097 +sg2 +S'James I, King of England' +p11098 +sg4 +S'Simon van de Passe' +p11099 +sa(dp11100 +g12 +g27 +sg6 +S', unknown date' +p11101 +sg8 +S'\n' +p11102 +sg2 +S'Anne of Denmark' +p11103 +sg4 +S'Simon van de Passe' +p11104 +sa(dp11105 +g2 +S'Mrs. Robert Blencowe' +p11106 +sg4 +S'Sir Thomas Lawrence' +p11107 +sg6 +S'oil on canvas' +p11108 +sg8 +S'c. 1792' +p11109 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f46.jpg' +p11110 +sg12 +g27 +sa(dp11111 +g12 +g27 +sg6 +S', unknown date' +p11112 +sg8 +S'\n' +p11113 +sg2 +S'Anne of Denmark' +p11114 +sg4 +S'Simon van de Passe' +p11115 +sa(dp11116 +g12 +g27 +sg6 +S', unknown date' +p11117 +sg8 +S'\n' +p11118 +sg2 +S'Anne of Denmark' +p11119 +sg4 +S'Simon van de Passe' +p11120 +sa(dp11121 +g12 +g27 +sg6 +S', unknown date' +p11122 +sg8 +S'\n' +p11123 +sg2 +S'Anne of Denmark' +p11124 +sg4 +S'Simon van de Passe' +p11125 +sa(dp11126 +g12 +g27 +sg6 +S', unknown date' +p11127 +sg8 +S'\n' +p11128 +sg2 +S'Shield of Anne of Denmark' +p11129 +sg4 +S'Simon van de Passe' +p11130 +sa(dp11131 +g12 +g27 +sg6 +S', 1616' +p11132 +sg8 +S'\n' +p11133 +sg2 +S'Charles I, King of England' +p11134 +sg4 +S'Simon van de Passe' +p11135 +sa(dp11136 +g12 +g27 +sg6 +S', unknown date' +p11137 +sg8 +S'\n' +p11138 +sg2 +S'Charles I, King of England' +p11139 +sg4 +S'Simon van de Passe' +p11140 +sa(dp11141 +g12 +g27 +sg6 +S', unknown date' +p11142 +sg8 +S'\n' +p11143 +sg2 +S'Charles I, King of England, On Horseback' +p11144 +sg4 +S'Simon van de Passe' +p11145 +sa(dp11146 +g12 +g27 +sg6 +S', unknown date' +p11147 +sg8 +S'\n' +p11148 +sg2 +S'Charles I, King of England' +p11149 +sg4 +S'Simon van de Passe' +p11150 +sa(dp11151 +g12 +g27 +sg6 +S', unknown date' +p11152 +sg8 +S'\n' +p11153 +sg2 +S'Charles I, King of England, On Horseback' +p11154 +sg4 +S'Simon van de Passe' +p11155 +sa(dp11156 +g12 +g27 +sg6 +S', 1616' +p11157 +sg8 +S'\n' +p11158 +sg2 +S'Charles I, King of England' +p11159 +sg4 +S'Simon van de Passe' +p11160 +sa(dp11161 +g2 +S'Portrait of Lorenzo di Credi' +p11162 +sg4 +S'Pietro Perugino' +p11163 +sg6 +S'oil on panel transferred to canvas' +p11164 +sg8 +S'1488' +p11165 +sg10 +S'http://www.nga.gov:80/thumb-l/a00007/a0000779.jpg' +p11166 +sg12 +S'Before this painting was transferred to a canvas support, an inscription on the back of the original wood panel read, "Lorenzo di Credi, most excellent painter, 1488, age 32 years, 8 months." It was probably added in the sixteenth century, when Credi\'s reputation was at its height. He was one of many students in the busy Florentine workshop of \n The subject\'s aquiline nose and jutting chin compare well with another known likeness of Credi as an older man, and for many years the painting was accepted as a self-portrait. Now, however, it is thought to reveal Credi\'s face—but Perugino\'s hand. Other landscapes by Perugino have the same silvery quality we see here. Moreover, the strong planes of the face and tousled coiffure more closely resemble Perugino\'s bolder style than Credi\'s smoother, more polished painting.\n The unusual backward tilt of the head reinforces the melancholy mood established by Credi\'s sad, distant gaze and set mouth. It has been suggested that Perugino painted this image of Credi just after the death of their beloved master Verrocchio in 1488, the same date inscribed on the panel. Credi was Verrocchio\'s heir and took over his shop. It was his unhappy task to accompany Verrocchio\'s remains back to Florence for burial after his death in Venice.\n ' +p11167 +sa(dp11168 +g12 +g27 +sg6 +S', 1616' +p11169 +sg8 +S'\n' +p11170 +sg2 +S'Shield of Charles I' +p11171 +sg4 +S'Simon van de Passe' +p11172 +sa(dp11173 +g12 +g27 +sg6 +S', 1616' +p11174 +sg8 +S'\n' +p11175 +sg2 +S'Charles I, King of England' +p11176 +sg4 +S'Simon van de Passe' +p11177 +sa(dp11178 +g12 +g27 +sg6 +S', unknown date' +p11179 +sg8 +S'\n' +p11180 +sg2 +S'Charles I, King of England [top half]' +p11181 +sg4 +S'Simon van de Passe' +p11182 +sa(dp11183 +g12 +g27 +sg6 +S', unknown date' +p11184 +sg8 +S'\n' +p11185 +sg2 +S'Charles I, King of England, On Horseback [bottom half]' +p11186 +sg4 +S'Simon van de Passe' +p11187 +sa(dp11188 +g12 +g27 +sg6 +S', unknown date' +p11189 +sg8 +S'\n' +p11190 +sg2 +S'Charles I, King of England' +p11191 +sg4 +S'Simon van de Passe' +p11192 +sa(dp11193 +g12 +g27 +sg6 +S', unknown date' +p11194 +sg8 +S'\n' +p11195 +sg2 +S'Charles I, King of England, On Horseback' +p11196 +sg4 +S'Simon van de Passe' +p11197 +sa(dp11198 +g12 +g27 +sg6 +S', unknown date' +p11199 +sg8 +S'\n' +p11200 +sg2 +S'Charles I, King of England' +p11201 +sg4 +S'Simon van de Passe' +p11202 +sa(dp11203 +g12 +g27 +sg6 +S', unknown date' +p11204 +sg8 +S'\n' +p11205 +sg2 +S'Charles I, King of England, on Horseback' +p11206 +sg4 +S'Simon van de Passe' +p11207 +sa(dp11208 +g12 +g27 +sg6 +S', unknown date' +p11209 +sg8 +S'\n' +p11210 +sg2 +S'Charles I, King of England' +p11211 +sg4 +S'Simon van de Passe' +p11212 +sa(dp11213 +g12 +g27 +sg6 +S', unknown date' +p11214 +sg8 +S'\n' +p11215 +sg2 +S'Charles I, King of England, On Horseback' +p11216 +sg4 +S'Simon van de Passe' +p11217 +sa(dp11218 +g2 +S'The Satyr and the Peasant' +p11219 +sg4 +S'Johann Liss' +p11220 +sg6 +S'oil on canvas' +p11221 +sg8 +S'possibly c. 1623/1626' +p11222 +sg10 +S'http://www.nga.gov:80/thumb-l/a00004/a00004ce.jpg' +p11223 +sg12 +S"The unusual subject of this painting comes from one of Aesop's fables. In his\n\n Johann Liss was among the initiators of the dynamic baroque style of the 1600s.\nThe sonorous color scheme shows his knowledge of past Venetian masters such as Titian\nand Veronese, while the dramatic conflict of light and shadow reveals an acquaintance\nwith the spotlighting which Caravaggio concurrently employed in Rome. But the main\ninfluences here are the energized movement and robust figure types derived from\nthe contemporary Antwerp geniuses, Jacob Jordaens and Peter Paul Rubens.\n " +p11224 +sa(dp11225 +g12 +g27 +sg6 +S', unknown date' +p11226 +sg8 +S'\n' +p11227 +sg2 +S'James I, Anne of Denmark, and Prince Charles' +p11228 +sg4 +S'Simon van de Passe' +p11229 +sa(dp11230 +g12 +g27 +sg6 +S', unknown date' +p11231 +sg8 +S'\n' +p11232 +sg2 +S'Shield of James I, Anne of Denmark, and Prince Charles' +p11233 +sg4 +S'Simon van de Passe' +p11234 +sa(dp11235 +g12 +g27 +sg6 +S', unknown date' +p11236 +sg8 +S'\n' +p11237 +sg2 +S'James I, Anne of Denmark, and Prince Charles' +p11238 +sg4 +S'Simon van de Passe' +p11239 +sa(dp11240 +g12 +g27 +sg6 +S', unknown date' +p11241 +sg8 +S'\n' +p11242 +sg2 +S'Shield of James I, Anne of Denmark, and Prince Charles' +p11243 +sg4 +S'Simon van de Passe' +p11244 +sa(dp11245 +g12 +g27 +sg6 +S', unknown date' +p11246 +sg8 +S'\n' +p11247 +sg2 +S'James I, Anne of Denmark, and Prince Charles' +p11248 +sg4 +S'Simon van de Passe' +p11249 +sa(dp11250 +g12 +g27 +sg6 +S', unknown date' +p11251 +sg8 +S'\n' +p11252 +sg2 +S'James I, Anne of Denmark, and Prince Charles' +p11253 +sg4 +S'Simon van de Passe' +p11254 +sa(dp11255 +g12 +g27 +sg6 +S', unknown date' +p11256 +sg8 +S'\n' +p11257 +sg2 +S'James I, Anne of Denmark, and Prince Charles' +p11258 +sg4 +S'Simon van de Passe' +p11259 +sa(dp11260 +g12 +g27 +sg6 +S', unknown date' +p11261 +sg8 +S'\n' +p11262 +sg2 +S'Frederick V, Elizabeth, and Prince Frederick Henry' +p11263 +sg4 +S'Simon van de Passe' +p11264 +sa(dp11265 +g12 +g27 +sg6 +S', unknown date' +p11266 +sg8 +S'\n' +p11267 +sg2 +S'Shields of Frederick V, Elizabeth, and Prince Frederick Henry' +p11268 +sg4 +S'Simon van de Passe' +p11269 +sa(dp11270 +g12 +g27 +sg6 +S', unknown date' +p11271 +sg8 +S'\n' +p11272 +sg2 +S'Frederick V, Elizabeth, and Prince Frederick Henry' +p11273 +sg4 +S'Simon van de Passe' +p11274 +sa(dp11275 +g2 +S'The Dead Toreador' +p11276 +sg4 +S'Edouard Manet' +p11277 +sg6 +S'oil on canvas' +p11278 +sg8 +S'probably 1864' +p11279 +sg10 +S'http://www.nga.gov:80/thumb-l/a00006/a0000680.jpg' +p11280 +sg12 +S"In 1864 Manet exhibited a large painting he called \n Although Manet may have acted in response to the harsh criticism, it was not uncommon for him to rework compositions. He repainted the background, extracting the figure from the context of the bullfight, and in so doing changed the nature of his painting. The fallen matador is no longer part of a narrative but is instead an icon, an isolated and compelling figure of sudden and violent death. From the now featureless background the man's body is dramatically foreshortened, thrusting toward the viewer. Its proximity and isolation are startling. Only the man's costume informs us about him, traces of blood the only signs of a painful death.\n Manet's choice of a Spanish subject—he did many early in his career—reflects his interest in the seventeenth-century painter \n " +p11281 +sa(dp11282 +g12 +g27 +sg6 +S', unknown date' +p11283 +sg8 +S'\n' +p11284 +sg2 +S'Shields of Frederick V, Elizabeth, and Prince Frederick Henry' +p11285 +sg4 +S'Simon van de Passe' +p11286 +sa(dp11287 +g12 +g27 +sg6 +S', unknown date' +p11288 +sg8 +S'\n' +p11289 +sg2 +S'Shields of Frederick V, Elizabeth, and Prince Frederick Henry' +p11290 +sg4 +S'Simon van de Passe' +p11291 +sa(dp11292 +g12 +g27 +sg6 +S', unknown date' +p11293 +sg8 +S'\n' +p11294 +sg2 +S'Frederick V, Elizabeth, and Prince Frederick Frederick Henry' +p11295 +sg4 +S'Simon van de Passe' +p11296 +sa(dp11297 +g12 +g27 +sg6 +S', unknown date' +p11298 +sg8 +S'\n' +p11299 +sg2 +S'Maria of Austria, Infanta of Spain [top half]' +p11300 +sg4 +S'Simon van de Passe' +p11301 +sa(dp11302 +g12 +g27 +sg6 +S', unknown date' +p11303 +sg8 +S'\n' +p11304 +sg2 +S'Lettering [bottom half]' +p11305 +sg4 +S'Simon van de Passe' +p11306 +sa(dp11307 +g12 +g27 +sg6 +S', unknown date' +p11308 +sg8 +S'\n' +p11309 +sg2 +S'Henri IV and Maria de Medici [top half]' +p11310 +sg4 +S'Simon van de Passe' +p11311 +sa(dp11312 +g12 +g27 +sg6 +S', unknown date' +p11313 +sg8 +S'\n' +p11314 +sg2 +S'Shields of Henri IV and Maria de Medici [bottom half]' +p11315 +sg4 +S'Simon van de Passe' +p11316 +sa(dp11317 +g12 +g27 +sg6 +S', unknown date' +p11318 +sg8 +S'\n' +p11319 +sg2 +S'Henri IV and Maria de Medici [top half]' +p11320 +sg4 +S'Simon van de Passe' +p11321 +sa(dp11322 +g12 +g27 +sg6 +S', unknown date' +p11323 +sg8 +S'\n' +p11324 +sg2 +S'Shields of Henry IV and Maria de Medici [bottom half]' +p11325 +sg4 +S'Simon van de Passe' +p11326 +sa(dp11327 +g12 +g27 +sg6 +S', unknown date' +p11328 +sg8 +S'\n' +p11329 +sg2 +S'Henry IV and Maria de Medici' +p11330 +sg4 +S'Simon van de Passe' +p11331 +sa(dp11332 +g2 +S'The Frankland Sisters' +p11333 +sg4 +S'John Hoppner' +p11334 +sg6 +S'oil on canvas' +p11335 +sg8 +S'1795' +p11336 +sg10 +S'http://www.nga.gov:80/thumb-l/a00007/a000073d.jpg' +p11337 +sg12 +S'The Frankland Sisters,\n ' +p11338 +sa(dp11339 +g2 +S'At the Races' +p11340 +sg4 +S'Edouard Manet' +p11341 +sg6 +S'oil on wood' +p11342 +sg8 +S'c. 1875' +p11343 +sg10 +S'http://www.nga.gov:80/thumb-l/a00006/a0000664.jpg' +p11344 +sg12 +g27 +sa(dp11345 +g12 +g27 +sg6 +S', unknown date' +p11346 +sg8 +S'\n' +p11347 +sg2 +S'Shields of Henry IV and Maria de Medici' +p11348 +sg4 +S'Simon van de Passe' +p11349 +sa(dp11350 +g12 +g27 +sg6 +S', unknown date' +p11351 +sg8 +S'\n' +p11352 +sg2 +S'Henry IV and Maria de Medici [left half]' +p11353 +sg4 +S'Simon van de Passe' +p11354 +sa(dp11355 +g12 +g27 +sg6 +S', unknown date' +p11356 +sg8 +S'\n' +p11357 +sg2 +S'Shields of Henry IV and Maria de Medici [right half]' +p11358 +sg4 +S'Simon van de Passe' +p11359 +sa(dp11360 +g12 +g27 +sg6 +S', unknown date' +p11361 +sg8 +S'\n' +p11362 +sg2 +S'Shields of Henry IV and Maria de Medici [left half]' +p11363 +sg4 +S'Simon van de Passe' +p11364 +sa(dp11365 +g12 +g27 +sg6 +S', unknown date' +p11366 +sg8 +S'\n' +p11367 +sg2 +S'Henry IV and Maria de Medici [right half]' +p11368 +sg4 +S'Simon van de Passe' +p11369 +sa(dp11370 +g12 +g27 +sg6 +S', unknown date' +p11371 +sg8 +S'\n' +p11372 +sg2 +S'Henry IV and Maria de Medici' +p11373 +sg4 +S'Simon van de Passe' +p11374 +sa(dp11375 +g12 +g27 +sg6 +S', unknown date' +p11376 +sg8 +S'\n' +p11377 +sg2 +S'The Emperor Matthias' +p11378 +sg4 +S'Simon van de Passe' +p11379 +sa(dp11380 +g12 +g27 +sg6 +S', unknown date' +p11381 +sg8 +S'\n' +p11382 +sg2 +S'Shields of the Emperor Matthias' +p11383 +sg4 +S'Simon van de Passe' +p11384 +sa(dp11385 +g12 +g27 +sg6 +S', unknown date' +p11386 +sg8 +S'\n' +p11387 +sg2 +S'The Emperor Matthias' +p11388 +sg4 +S'Simon van de Passe' +p11389 +sa(dp11390 +g12 +g27 +sg6 +S', unknown date' +p11391 +sg8 +S'\n' +p11392 +sg2 +S'Shields of the Emperor Matthias' +p11393 +sg4 +S'Simon van de Passe' +p11394 +sa(dp11395 +g2 +S'Judith with the Head of Holofernes' +p11396 +sg4 +S'Artist Information (' +p11397 +sg6 +S'(painter)' +p11398 +sg8 +S'\n' +p11399 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a00005da.jpg' +p11400 +sg12 +S'The story of Judith and Holofernes comes from the Old Testament Apocrypha,\nsacred texts that were excluded from the Bible. Besieged by the Assyrians, the\nbeautiful Israelite widow Judith went into the enemy camp of Holofernes to win his\nconfidence. During a great banquet Holofernes became drunk, and later in his tent\nJudith seized his sword and cut off his head. Their leader gone, the enemy was soon\ndefeated by the Israelites. This ancient heroine was understood in the Renaissance\nas a symbol of civic virtue, of intolerance of tyranny, and of a just cause triumphing\nover evil. The moralizing subject was a favorite of the artist.\n Judith is portrayed as if she were a classical statue. The drapery folds of her\ncostume, a clinging white gown, fall in sculptural forms, and her stance, the twisting\n\n Mantegna was trained in the Paduan workshop of Squarcione, but he was strongly influenced\nby the Florentine sculptor Donatello. He married the daughter of the Venetian artist\nJacopo Bellini, and was influenced by his work, as well as that of his brother-in-law\nGiovanni Bellini.\n ' +p11401 +sa(dp11402 +g12 +g27 +sg6 +S', unknown date' +p11403 +sg8 +S'\n' +p11404 +sg2 +S'Richard Sackville, 3rd Earl of Dorset [left half]' +p11405 +sg4 +S'Simon van de Passe' +p11406 +sa(dp11407 +g12 +g27 +sg6 +S', unknown date' +p11408 +sg8 +S'\n' +p11409 +sg2 +S'Shield of Richard Sackville, 3rd Earl of Dorset [right half]' +p11410 +sg4 +S'Simon van de Passe' +p11411 +sa(dp11412 +g12 +g27 +sg6 +S'German, c. 1595 - 1647' +p11413 +sg8 +S'(related artist)' +p11414 +sg2 +S'Queen Elizabeth [left half]' +p11415 +sg4 +S'Artist Information (' +p11416 +sa(dp11417 +g12 +g27 +sg6 +S'German, c. 1595 - 1647' +p11418 +sg8 +S'(related artist)' +p11419 +sg2 +S'Emblem of the Phoenix and the motto "Dieu et mon droit" [right half]' +p11420 +sg4 +S'Artist Information (' +p11421 +sa(dp11422 +g12 +g27 +sg6 +S'German, c. 1595 - 1647' +p11423 +sg8 +S'(related artist)' +p11424 +sg2 +S'Sheet of Seven Roundels with Portraits' +p11425 +sg4 +S'Artist Information (' +p11426 +sa(dp11427 +g12 +g27 +sg6 +S'German, c. 1595 - 1647' +p11428 +sg8 +S'(related artist)' +p11429 +sg2 +S'Sheet of Seven Roundels with Portraits' +p11430 +sg4 +S'Artist Information (' +p11431 +sa(dp11432 +g12 +g27 +sg6 +S'German, c. 1595 - 1647' +p11433 +sg8 +S'(related artist)' +p11434 +sg2 +S'James I, King of England' +p11435 +sg4 +S'Artist Information (' +p11436 +sa(dp11437 +g12 +g27 +sg6 +S'German, c. 1595 - 1647' +p11438 +sg8 +S'(related artist)' +p11439 +sg2 +S'Charles, Prince of Wales' +p11440 +sg4 +S'Artist Information (' +p11441 +sa(dp11442 +g12 +g27 +sg6 +S'German, c. 1595 - 1647' +p11443 +sg8 +S'(related artist)' +p11444 +sg2 +S'Henrietta Maria' +p11445 +sg4 +S'Artist Information (' +p11446 +sa(dp11447 +g12 +g27 +sg6 +S'German, c. 1595 - 1647' +p11448 +sg8 +S'(related artist)' +p11449 +sg2 +S'James I, King of England' +p11450 +sg4 +S'Artist Information (' +p11451 +sa(dp11452 +g2 +S'The Death of the Fox' +p11453 +sg4 +S'George Morland' +p11454 +sg6 +S'oil on canvas' +p11455 +sg8 +S'c. 1791/1794' +p11456 +sg10 +S'http://www.nga.gov:80/thumb-l/a00004/a00004e0.jpg' +p11457 +sg12 +g27 +sa(dp11458 +g12 +g27 +sg6 +S'German, c. 1595 - 1647' +p11459 +sg8 +S'(related artist)' +p11460 +sg2 +S'Charles, Prince of Wales' +p11461 +sg4 +S'Artist Information (' +p11462 +sa(dp11463 +g12 +g27 +sg6 +S'German, c. 1595 - 1647' +p11464 +sg8 +S'(related artist)' +p11465 +sg2 +S'James I, King of England' +p11466 +sg4 +S'Artist Information (' +p11467 +sa(dp11468 +g12 +g27 +sg6 +S'German, c. 1595 - 1647' +p11469 +sg8 +S'(related artist)' +p11470 +sg2 +S'Charles, Prince of Wales' +p11471 +sg4 +S'Artist Information (' +p11472 +sa(dp11473 +g12 +g27 +sg6 +S'German, c. 1595 - 1647' +p11474 +sg8 +S'(related artist)' +p11475 +sg2 +S'Charles, Prince of Wales' +p11476 +sg4 +S'Artist Information (' +p11477 +sa(dp11478 +g12 +g27 +sg6 +S'German, c. 1595 - 1647' +p11479 +sg8 +S'(related artist)' +p11480 +sg2 +S'Henrietta Maria' +p11481 +sg4 +S'Artist Information (' +p11482 +sa(dp11483 +g12 +g27 +sg6 +S'German, c. 1595 - 1647' +p11484 +sg8 +S'(related artist)' +p11485 +sg2 +S'Henrietta Maria' +p11486 +sg4 +S'Artist Information (' +p11487 +sa(dp11488 +g12 +g27 +sg6 +S'German, c. 1595 - 1647' +p11489 +sg8 +S'(related artist)' +p11490 +sg2 +S'Charles I, King of England' +p11491 +sg4 +S'Artist Information (' +p11492 +sa(dp11493 +g12 +g27 +sg6 +S'German, c. 1595 - 1647' +p11494 +sg8 +S'(related artist)' +p11495 +sg2 +S'Charles I and Henrietta Maria Facing to the Right [left half]' +p11496 +sg4 +S'Artist Information (' +p11497 +sa(dp11498 +g12 +g27 +sg6 +S'German, c. 1595 - 1647' +p11499 +sg8 +S'(related artist)' +p11500 +sg2 +S'Charles I and Henrietta Maria Facing to the Left [right half]' +p11501 +sg4 +S'Artist Information (' +p11502 +sa(dp11503 +g12 +g27 +sg6 +S'German, c. 1595 - 1647' +p11504 +sg8 +S'(related artist)' +p11505 +sg2 +S'Three Crowns Supported by Two Sceptres [left half]' +p11506 +sg4 +S'Artist Information (' +p11507 +sa(dp11508 +g2 +S'Madonna and Child' +p11509 +sg4 +S'Francesco Benaglio' +p11510 +sg6 +S'tempera on panel transferred to canvas' +p11511 +sg8 +S'late 1460s' +p11512 +sg10 +S'http://www.nga.gov:80/thumb-l/a00008/a0000852.jpg' +p11513 +sg12 +g27 +sa(dp11514 +g12 +g27 +sg6 +S'German, c. 1595 - 1647' +p11515 +sg8 +S'(related artist)' +p11516 +sg2 +S'Three Crowns Supported by Two Sceptres [right half]' +p11517 +sg4 +S'Artist Information (' +p11518 +sa(dp11519 +g12 +g27 +sg6 +S'German, c. 1595 - 1647' +p11520 +sg8 +S'(related artist)' +p11521 +sg2 +S'Princess Elizabeth, Queen of Bohemia (?)' +p11522 +sg4 +S'Artist Information (' +p11523 +sa(dp11524 +g12 +g27 +sg6 +S'German, c. 1595 - 1647' +p11525 +sg8 +S'(related artist)' +p11526 +sg2 +S'George Villiers, 1st Duke of Buckingham' +p11527 +sg4 +S'Artist Information (' +p11528 +sa(dp11529 +g2 +S'Two Boats for "L\'Abside de Notre-Dame de Paris"' +p11530 +sg4 +S'Charles Meryon' +p11531 +sg6 +S'graphite on laid paper' +p11532 +sg8 +S'probably c. 1854' +p11533 +sg10 +S'http://www.nga.gov:80/thumb-l/a00071/a0007153.jpg' +p11534 +sg12 +g27 +sa(dp11535 +g2 +S'Two Men' +p11536 +sg4 +S'Honor\xc3\xa9 Daumier' +p11537 +sg6 +S'graphite on heavy wove paper' +p11538 +sg8 +S'unknown date\n' +p11539 +sg10 +S'http://www.nga.gov:80/thumb-l/a00070/a0007093.jpg' +p11540 +sg12 +g27 +sa(dp11541 +g2 +S'Man Carrying a Sack' +p11542 +sg4 +S'Honor\xc3\xa9 Daumier' +p11543 +sg6 +S'charcoal on laid paper' +p11544 +sg8 +S'unknown date\n' +p11545 +sg10 +S'http://www.nga.gov:80/thumb-l/a00071/a00071c8.jpg' +p11546 +sg12 +g27 +sa(dp11547 +g2 +S'Charity' +p11548 +sg4 +S'Heinrich Aldegrever' +p11549 +sg6 +g27 +sg8 +S'1552' +p11550 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6f5.jpg' +p11551 +sg12 +g27 +sa(dp11552 +g2 +S'Patience' +p11553 +sg4 +S'Heinrich Aldegrever' +p11554 +sg6 +g27 +sg8 +S'1552' +p11555 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6f7.jpg' +p11556 +sg12 +g27 +sa(dp11557 +g2 +S'Chastity' +p11558 +sg4 +S'Heinrich Aldegrever' +p11559 +sg6 +g27 +sg8 +S'1552' +p11560 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6f8.jpg' +p11561 +sg12 +g27 +sa(dp11562 +g2 +S'Temperance' +p11563 +sg4 +S'Heinrich Aldegrever' +p11564 +sg6 +g27 +sg8 +S'1552' +p11565 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6f6.jpg' +p11566 +sg12 +g27 +sa(dp11567 +g2 +S'"Titian\'s Schoolmaster"' +p11568 +sg4 +S'Giovanni Battista Moroni' +p11569 +sg6 +S'oil on canvas' +p11570 +sg8 +S'c. 1575' +p11571 +sg10 +S'http://www.nga.gov:80/thumb-l/a00008/a0000818.jpg' +p11572 +sg12 +S"Few artists could match Moroni's skill in depicting the appearance of his sitters,\nfar less his ability to conjure the inner workings of their minds. The identity\nof the gentleman in this penetrating portrait is a mystery. For a long time the\npainting was thought to be by Titian and to represent that artist's ideal of a schoolmaster.\nBut according to another tradition, the picture got its name because Titian admired\nit and learned so much from it. Whether or not the older master ever saw this painting,\nMoroni's strong, simple composition and trenchant characterization did impress two\nlater specialists in portraiture: Anthony van Dyck and Joshua Reynolds both made\ncopies of it.\n The subject, dressed all in black, sits in a Savanarola chair that is seen -- unexpectedly\n-- in profile. He rests one beautifully drawn hand on the arm of the chair and turns\nas if to regard the spectator. With his other hand he holds his place in a book,\nthoughts of which, judging from his absorbed gaze, still occupy his mind. The white,\nembroidered collar sets off the face, and the asymmetrical points echo the man's\nuneven features. Even the bristly textures of the trimmed whiskers and clipped,\ngrizzled hair command attention.\n " +p11573 +sa(dp11574 +g2 +S'Compassion' +p11575 +sg4 +S'Heinrich Aldegrever' +p11576 +sg6 +g27 +sg8 +S'1552' +p11577 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6f9.jpg' +p11578 +sg12 +g27 +sa(dp11579 +g2 +S'Diligence' +p11580 +sg4 +S'Heinrich Aldegrever' +p11581 +sg6 +g27 +sg8 +S'1552' +p11582 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6fa.jpg' +p11583 +sg12 +g27 +sa(dp11584 +g12 +g27 +sg6 +S'woodcut' +p11585 +sg8 +S'unknown date\n' +p11586 +sg2 +S'The Fountain of Youth [one of 4 sheets]' +p11587 +sg4 +S'Sebald Beham' +p11588 +sa(dp11589 +g12 +g27 +sg6 +S'woodcut' +p11590 +sg8 +S'unknown date\n' +p11591 +sg2 +S'The Fountain of Youth [one of 4 sheets]' +p11592 +sg4 +S'Sebald Beham' +p11593 +sa(dp11594 +g12 +g27 +sg6 +S'woodcut' +p11595 +sg8 +S'unknown date\n' +p11596 +sg2 +S'The Fountain of Youth [one of 4 sheets]' +p11597 +sg4 +S'Sebald Beham' +p11598 +sa(dp11599 +g2 +S'Hercules Killing Anthaeus' +p11600 +sg4 +S'Sebald Beham' +p11601 +sg6 +S'engraving' +p11602 +sg8 +S'1545' +p11603 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a826.jpg' +p11604 +sg12 +g27 +sa(dp11605 +g2 +S'Hercules Killing the Neumaeic Lion' +p11606 +sg4 +S'Sebald Beham' +p11607 +sg6 +S'engraving' +p11608 +sg8 +S'1548' +p11609 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a825.jpg' +p11610 +sg12 +g27 +sa(dp11611 +g2 +S'Death of Hercules' +p11612 +sg4 +S'Sebald Beham' +p11613 +sg6 +S'engraving' +p11614 +sg8 +S'1542/1548' +p11615 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a822.jpg' +p11616 +sg12 +g27 +sa(dp11617 +g2 +S'Satyr Woman Playing Bagpipe' +p11618 +sg4 +S'Sebald Beham' +p11619 +sg6 +S'engraving' +p11620 +sg8 +S'unknown date\n' +p11621 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a82b.jpg' +p11622 +sg12 +g27 +sa(dp11623 +g2 +S'Two Loving Pairs with Clown' +p11624 +sg4 +S'Sebald Beham' +p11625 +sg6 +S'engraving' +p11626 +sg8 +S'1535' +p11627 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a86d.jpg' +p11628 +sg12 +g27 +sa(dp11629 +g2 +S'Two Women at a Window' +p11630 +sg4 +S'Bartolom\xc3\xa9 Esteban Murillo' +p11631 +sg6 +S'oil on canvas' +p11632 +sg8 +S'c. 1655/1660' +p11633 +sg10 +S'http://www.nga.gov:80/thumb-l/a00004/a00004ac.jpg' +p11634 +sg12 +S"Seville's most popular painter in the later seventeenth century was Bartolomé Esteban Murillo.\n While Murillo is best known for works with religious themes, he also produced a number of genre paintings of figures from contemporary life engaged in ordinary pursuits. These pictures often possess a wistful charm; \n The convincingly modeled, life–size figures, framed within an illusionistically painted window, derive from Dutch paintings that were meant to fool the eye.\n " +p11635 +sa(dp11636 +g2 +S'Two Loving Pairs with Clown' +p11637 +sg4 +S'Artist Information (' +p11638 +sg6 +S'German, 1500 - 1550' +p11639 +sg8 +S'(artist after)' +p11640 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a86e.jpg' +p11641 +sg12 +g27 +sa(dp11642 +g2 +S'Eve Seated' +p11643 +sg4 +S'Sebald Beham' +p11644 +sg6 +S'engraving' +p11645 +sg8 +S'1519' +p11646 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a811.jpg' +p11647 +sg12 +g27 +sa(dp11648 +g12 +g27 +sg6 +S'etching' +p11649 +sg8 +S'unknown date\n' +p11650 +sg2 +S'Hombre Bueno' +p11651 +sg4 +S'Adolfo Bellocq' +p11652 +sa(dp11653 +g12 +g27 +sg6 +S'etching' +p11654 +sg8 +S'unknown date\n' +p11655 +sg2 +S'Vagabundo' +p11656 +sg4 +S'Adolfo Bellocq' +p11657 +sa(dp11658 +g2 +S'Three Months' +p11659 +sg4 +S'Franz Brun' +p11660 +sg6 +S'engraving' +p11661 +sg8 +S'1584' +p11662 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b090.jpg' +p11663 +sg12 +g27 +sa(dp11664 +g2 +S'Three Months' +p11665 +sg4 +S'Franz Brun' +p11666 +sg6 +S'engraving' +p11667 +sg8 +S'1584' +p11668 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b091.jpg' +p11669 +sg12 +g27 +sa(dp11670 +g2 +S'Three Months' +p11671 +sg4 +S'Franz Brun' +p11672 +sg6 +S'engraving' +p11673 +sg8 +S'1584' +p11674 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b092.jpg' +p11675 +sg12 +g27 +sa(dp11676 +g2 +S'Saturn' +p11677 +sg4 +S'Abraham de Bruyn' +p11678 +sg6 +S'engraving' +p11679 +sg8 +S'1569' +p11680 +sg10 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf1f.jpg' +p11681 +sg12 +g27 +sa(dp11682 +g2 +S'Jupiter' +p11683 +sg4 +S'Abraham de Bruyn' +p11684 +sg6 +S'engraving' +p11685 +sg8 +S'1569' +p11686 +sg10 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf1e.jpg' +p11687 +sg12 +g27 +sa(dp11688 +g2 +S'Mercury' +p11689 +sg4 +S'Abraham de Bruyn' +p11690 +sg6 +S'engraving' +p11691 +sg8 +S'1569' +p11692 +sg10 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf24.jpg' +p11693 +sg12 +g27 +sa(dp11694 +g2 +S'Portrait of a Lady' +p11695 +sg4 +S"Neroccio de' Landi" +p11696 +sg6 +S'tempera on panel' +p11697 +sg8 +S'c. 1485' +p11698 +sg10 +S'http://www.nga.gov:80/thumb-l/a00037/a00037c7.jpg' +p11699 +sg12 +S'This is often described as one of the earliest portraits from Renaissance Siena. While humanism and a focus on man and individual accomplishment had helped create a market for portraiture in Florence in the mid 1400s, in Siena it remained rare. There was little demand for private secular art of any kind until the last quarter of the century, when humanism finally asserted itself following the election \r\nof Pope Pius II, the former Aeneas Silvius Piccolomini. A member of a prominent Sienese family and noted humanist, he was the first pope to write a true autobiography.\n The young woman on this panel has a dreamy and \r\nidealized beauty, accented by masses of blond hair. (Saint Bernardino preached against women who bleached their hair in the sun and sat in public squares to dry it.) Her three-quarter pose is unusual; most female portraits \r\nin Italy at this date were in profile.\n Many portraits were commissioned to commemorate \r\na marriage or betrothal. This woman\'s loose hairstyle \r\nsuggests that she is not yet married. She may have been \r\na member of the Bandini family, whose crest of sphere-\r\nbiting eagles appears around the frame, which is probably original. The flames that alternate with the Bandini crest may be a reference to her future husband, or they may hint that her given name was Fiammetta (related to the word for "blaze").\n ' +p11700 +sa(dp11701 +g2 +S'Sun' +p11702 +sg4 +S'Abraham de Bruyn' +p11703 +sg6 +S'engraving' +p11704 +sg8 +S'1569' +p11705 +sg10 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf21.jpg' +p11706 +sg12 +g27 +sa(dp11707 +g2 +S'Mars' +p11708 +sg4 +S'Abraham de Bruyn' +p11709 +sg6 +S'engraving' +p11710 +sg8 +S'1569' +p11711 +sg10 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf20.jpg' +p11712 +sg12 +g27 +sa(dp11713 +g2 +S'Moon' +p11714 +sg4 +S'Abraham de Bruyn' +p11715 +sg6 +S'engraving' +p11716 +sg8 +S'1569' +p11717 +sg10 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf23.jpg' +p11718 +sg12 +g27 +sa(dp11719 +g2 +S'Exempel und Lehr Jetziger Welt Lauf' +p11720 +sg4 +S'Andreas Bretschneider III' +p11721 +sg6 +S'etching' +p11722 +sg8 +S'published 1622' +p11723 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2ad.jpg' +p11724 +sg12 +g27 +sa(dp11725 +g2 +S'Exempel und Lehr Jetziger Welt Lauf' +p11726 +sg4 +S'Andreas Bretschneider III' +p11727 +sg6 +S'etching' +p11728 +sg8 +S'published 1622' +p11729 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2ae.jpg' +p11730 +sg12 +g27 +sa(dp11731 +g2 +S'Exempel und Lehr Jetziger Welt Lauf' +p11732 +sg4 +S'Andreas Bretschneider III' +p11733 +sg6 +S'etching' +p11734 +sg8 +S'published 1622' +p11735 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2b0.jpg' +p11736 +sg12 +g27 +sa(dp11737 +g2 +S'Exempel und Lehr Jetziger Welt Lauf' +p11738 +sg4 +S'Andreas Bretschneider III' +p11739 +sg6 +S'etching' +p11740 +sg8 +S'published 1622' +p11741 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2b2.jpg' +p11742 +sg12 +g27 +sa(dp11743 +g2 +S'Exempel und Lehr Jetziger Welt Lauf' +p11744 +sg4 +S'Andreas Bretschneider III' +p11745 +sg6 +S'etching' +p11746 +sg8 +S'published 1622' +p11747 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2b5.jpg' +p11748 +sg12 +g27 +sa(dp11749 +g2 +S'Exempel und Lehr Jetziger Welt Lauf' +p11750 +sg4 +S'Andreas Bretschneider III' +p11751 +sg6 +S'etching' +p11752 +sg8 +S'published 1622' +p11753 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2b1.jpg' +p11754 +sg12 +g27 +sa(dp11755 +g2 +S'Exempel und Lehr Jetziger Welt Lauf' +p11756 +sg4 +S'Andreas Bretschneider III' +p11757 +sg6 +S'etching' +p11758 +sg8 +S'published 1622' +p11759 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2b4.jpg' +p11760 +sg12 +g27 +sa(dp11761 +g2 +S'The Cottage Dooryard' +p11762 +sg4 +S'Adriaen van Ostade' +p11763 +sg6 +S'oil on canvas' +p11764 +sg8 +S'1673' +p11765 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e74.jpg' +p11766 +sg12 +S"In contrast to the paved, urban gardens portrayed by Pieter de Hooch, this country cottage has only a dirt yard, where the wife cleans mussels for dinner. Laundry dries on a line attached to a shed, which also supports a pigeon coop, and the shelf by the door holds beehives. The clinging vines may allude to family unity.\n In addition to such touching and dignified portrayals of peasants, Van Ostade painted bawdy scenes of taverns and barns. He entered the Haarlem guild in 1634, probably after studying under \n Adriaen van Ostade's students included \n " +p11767 +sa(dp11768 +g2 +S'Exempel und Lehr Jetziger Welt Lauf' +p11769 +sg4 +S'Andreas Bretschneider III' +p11770 +sg6 +S'etching' +p11771 +sg8 +S'published 1622' +p11772 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2b8.jpg' +p11773 +sg12 +g27 +sa(dp11774 +g2 +S'Exempel und Lehr Jetziger Welt Lauf' +p11775 +sg4 +S'Andreas Bretschneider III' +p11776 +sg6 +S'etching' +p11777 +sg8 +S'published 1622' +p11778 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2b3.jpg' +p11779 +sg12 +g27 +sa(dp11780 +g2 +S'Exempel und Lehr Jetziger Welt Lauf' +p11781 +sg4 +S'Andreas Bretschneider III' +p11782 +sg6 +S'etching' +p11783 +sg8 +S'published 1622' +p11784 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2b6.jpg' +p11785 +sg12 +g27 +sa(dp11786 +g2 +S'Exempel und Lehr Jetziger Welt Lauf' +p11787 +sg4 +S'Andreas Bretschneider III' +p11788 +sg6 +S'etching' +p11789 +sg8 +S'published 1622' +p11790 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2b7.jpg' +p11791 +sg12 +g27 +sa(dp11792 +g2 +S'Exempel und Lehr Jetziger Welt Lauf' +p11793 +sg4 +S'Andreas Bretschneider III' +p11794 +sg6 +S'etching' +p11795 +sg8 +S'published 1622' +p11796 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2af.jpg' +p11797 +sg12 +g27 +sa(dp11798 +g2 +S'Exempel und Lehr Jetziger Welt Lauf' +p11799 +sg4 +S'Andreas Bretschneider III' +p11800 +sg6 +S'etching' +p11801 +sg8 +S'published 1622' +p11802 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2b9.jpg' +p11803 +sg12 +g27 +sa(dp11804 +g2 +S'Ex-Libris pour "L\'Ensorcel\xc3\xa9e" (Bookplate for "L\'Ensorcel\xc3\xa9e")' +p11805 +sg4 +S'F\xc3\xa9lix-Hilaire Buhot' +p11806 +sg6 +S'etching, drypoint, aquatint, and roulette in black on moderately thick cream (discolored to light brown) laid paper' +p11807 +sg8 +S'c. 1883/1885' +p11808 +sg10 +S'http://www.nga.gov:80/thumb-l/a00097/a00097e4.jpg' +p11809 +sg12 +g27 +sa(dp11810 +g2 +S'The Circle of the Lustful: Paolo and Francesca' +p11811 +sg4 +S'William Blake' +p11812 +sg6 +S'engraving printed by Harry Hoehn in 1968' +p11813 +sg8 +S'1827' +p11814 +sg10 +S'http://www.nga.gov:80/thumb-l/a00077/a0007706.jpg' +p11815 +sg12 +g27 +sa(dp11816 +g2 +S'Voyez, Mr. Mayeux, cet animal...' +p11817 +sg4 +S'Honor\xc3\xa9 Daumier' +p11818 +sg6 +S'hand-colored lithograph' +p11819 +sg8 +S'1836' +p11820 +sg10 +S'http://www.nga.gov:80/thumb-l/a00092/a0009215.jpg' +p11821 +sg12 +g27 +sa(dp11822 +g2 +S'The Halt at the Inn' +p11823 +sg4 +S'Isack van Ostade' +p11824 +sg6 +S'oil on panel transferred to canvas' +p11825 +sg8 +S'1645' +p11826 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e75.jpg' +p11827 +sg12 +S"One of the most delightful aspects of seventeenth-century Dutch art is that\nit conveys a vivid sense of daily life. In this painting, for example, we see the\nbustle of activity outside a village inn as two well-dressed travelers arrive and\ndismount from their horses. A beggar woman with a child strapped to her back stands\nto watch while other figures converse with one of the travelers. The main street\nof the village is filled with other groups, among them men smoking pipes at a bench\nbefore the inn, a child playing with a mother's apron, and a man talking to a woman\nspinning yarn. Van Ostade creates a sense of conviviality by the apparent informality\nof these human contacts, and by including an array of animals within the scene.\nHe also was careful to suggest the picturesque character of the buildings, trees\nand vines, and depicted the aged brick and mortar construction of the inn.\n Isack van Ostade was the most important of a number of Haarlem artists who painted\nsuch subjects in the early seventeenth century. A student of his more famous, older\nbrother, Adrian van Ostade, Isack tragically died at the age of twenty-eight. Despite\nhis short artistic career, he had an extensive influence on his contemporaries,\nincluding Jan Steen, with whom he occasionally collaborated.\n " +p11828 +sa(dp11829 +g2 +S'Bobonne... ne le regarde pas tant!' +p11830 +sg4 +S'Honor\xc3\xa9 Daumier' +p11831 +sg6 +S'hand-colored lithograph' +p11832 +sg8 +S'1836' +p11833 +sg10 +S'http://www.nga.gov:80/thumb-l/a00092/a0009212.jpg' +p11834 +sg12 +g27 +sa(dp11835 +g2 +S"Dieu de Dieu! mais c'est un pppolisson..." +p11836 +sg4 +S'Honor\xc3\xa9 Daumier' +p11837 +sg6 +S'hand-colored lithograph' +p11838 +sg8 +S'1836' +p11839 +sg10 +S'http://www.nga.gov:80/thumb-l/a00092/a0009213.jpg' +p11840 +sg12 +g27 +sa(dp11841 +g2 +S'La Potion' +p11842 +sg4 +S'Honor\xc3\xa9 Daumier' +p11843 +sg6 +S'hand-colored lithograph' +p11844 +sg8 +S'1836' +p11845 +sg10 +S'http://www.nga.gov:80/thumb-l/a00092/a0009217.jpg' +p11846 +sg12 +g27 +sa(dp11847 +g2 +S'Une lecture entrainante' +p11848 +sg4 +S'Honor\xc3\xa9 Daumier' +p11849 +sg6 +S'hand-colored lithograph' +p11850 +sg8 +S'1836' +p11851 +sg10 +S'http://www.nga.gov:80/thumb-l/a00092/a0009218.jpg' +p11852 +sg12 +g27 +sa(dp11853 +g2 +S"L'amateur d'huitres" +p11854 +sg4 +S'Honor\xc3\xa9 Daumier' +p11855 +sg6 +S'hand-colored lithograph' +p11856 +sg8 +S'1836' +p11857 +sg10 +S'http://www.nga.gov:80/thumb-l/a00092/a0009219.jpg' +p11858 +sg12 +g27 +sa(dp11859 +g2 +S'Le bon morceau' +p11860 +sg4 +S'Honor\xc3\xa9 Daumier' +p11861 +sg6 +S'hand-colored lithograph' +p11862 +sg8 +S'1836' +p11863 +sg10 +S'http://www.nga.gov:80/thumb-l/a00092/a0009222.jpg' +p11864 +sg12 +g27 +sa(dp11865 +g2 +S'Fameuse perruque' +p11866 +sg4 +S'Honor\xc3\xa9 Daumier' +p11867 +sg6 +S'hand-colored lithograph' +p11868 +sg8 +S'1836' +p11869 +sg10 +S'http://www.nga.gov:80/thumb-l/a00092/a000921d.jpg' +p11870 +sg12 +g27 +sa(dp11871 +g2 +S'La renomm\xc3\xa9e des glaces' +p11872 +sg4 +S'Honor\xc3\xa9 Daumier' +p11873 +sg6 +S'hand-colored lithograph' +p11874 +sg8 +S'1836' +p11875 +sg10 +S'http://www.nga.gov:80/thumb-l/a00092/a0009221.jpg' +p11876 +sg12 +g27 +sa(dp11877 +g2 +S'La bonne prise' +p11878 +sg4 +S'Honor\xc3\xa9 Daumier' +p11879 +sg6 +S'hand-colored lithograph' +p11880 +sg8 +S'1836' +p11881 +sg10 +S'http://www.nga.gov:80/thumb-l/a00092/a0009220.jpg' +p11882 +sg12 +g27 +sa(dp11883 +g2 +S'Le vrai Fumeur' +p11884 +sg4 +S'Honor\xc3\xa9 Daumier' +p11885 +sg6 +S'hand-colored lithograph' +p11886 +sg8 +S'1836' +p11887 +sg10 +S'http://www.nga.gov:80/thumb-l/a00092/a000921f.jpg' +p11888 +sg12 +g27 +sa(dp11889 +g2 +S'Madonna and Child' +p11890 +sg4 +S'Artist Information (' +p11891 +sg6 +S'Italian, c. 1406 - 1469' +p11892 +sg8 +S'(related artist)' +p11893 +sg10 +S'http://www.nga.gov:80/thumb-l/a00008/a0000880.jpg' +p11894 +sg12 +g27 +sa(dp11895 +g2 +S'Oh! ma femme est morte!' +p11896 +sg4 +S'Honor\xc3\xa9 Daumier' +p11897 +sg6 +S'hand-colored lithograph' +p11898 +sg8 +S'1836' +p11899 +sg10 +S'http://www.nga.gov:80/thumb-l/a00092/a0009223.jpg' +p11900 +sg12 +g27 +sa(dp11901 +g2 +S'La carte a payer' +p11902 +sg4 +S'Honor\xc3\xa9 Daumier' +p11903 +sg6 +S'hand-colored lithograph' +p11904 +sg8 +S'1837' +p11905 +sg10 +S'http://www.nga.gov:80/thumb-l/a00092/a000921e.jpg' +p11906 +sg12 +g27 +sa(dp11907 +g2 +S'Encore une heure!!' +p11908 +sg4 +S'Honor\xc3\xa9 Daumier' +p11909 +sg6 +S'hand-colored lithograph' +p11910 +sg8 +S'1837' +p11911 +sg10 +S'http://www.nga.gov:80/thumb-l/a00092/a0009224.jpg' +p11912 +sg12 +g27 +sa(dp11913 +g2 +S'First Wise Virgin' +p11914 +sg4 +S'Martin Schongauer' +p11915 +sg6 +S'engraving' +p11916 +sg8 +S'c. 1490' +p11917 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a487.jpg' +p11918 +sg12 +g27 +sa(dp11919 +g2 +S'Saint George on Foot' +p11920 +sg4 +S'German 16th Century' +p11921 +sg6 +S'Rosenwald Collection' +p11922 +sg8 +S'\nniello print' +p11923 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c718.jpg' +p11924 +sg12 +g27 +sa(dp11925 +g2 +S'The Last Supper' +p11926 +sg4 +S'Hendrick Goltzius' +p11927 +sg6 +S', 1598' +p11928 +sg8 +S'\n' +p11929 +sg10 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdfd.jpg' +p11930 +sg12 +g27 +sa(dp11931 +g2 +S'Christ on the Mount of Olives' +p11932 +sg4 +S'Hendrick Goltzius' +p11933 +sg6 +S', 1597' +p11934 +sg8 +S'\n' +p11935 +sg10 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdfe.jpg' +p11936 +sg12 +g27 +sa(dp11937 +g2 +S'Christ Taken Captive' +p11938 +sg4 +S'Hendrick Goltzius' +p11939 +sg6 +S', 1598' +p11940 +sg8 +S'\n' +p11941 +sg10 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdff.jpg' +p11942 +sg12 +g27 +sa(dp11943 +g2 +S'Christ before Caiphas' +p11944 +sg4 +S'Hendrick Goltzius' +p11945 +sg6 +S', 1597' +p11946 +sg8 +S'\n' +p11947 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce01.jpg' +p11948 +sg12 +g27 +sa(dp11949 +g2 +S'Christ before Pilate' +p11950 +sg4 +S'Hendrick Goltzius' +p11951 +sg6 +S', 1596' +p11952 +sg8 +S'\n' +p11953 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce00.jpg' +p11954 +sg12 +g27 +sa(dp11955 +g2 +S'Madonna and Child' +p11956 +sg4 +S'Florentine 15th Century' +p11957 +sg6 +S'painted and gilded terracotta' +p11958 +sg8 +S'c. 1425' +p11959 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d78.jpg' +p11960 +sg12 +S'With this terra-cotta statue, slightly under life-size, we encounter figures that demonstrate the\nbeginnings of the Italian Renaissance admiration for the human body. Earlier statues in the\ncollection, like the Pisan Annunciation pair, \n The mother, whose costume details recall ancient sculpture -- classical sandals, a fillet around\nthe head, and palmette ornament on the sleeve cuffs -- shares much with images conceived by the\nFlorentine master Donatello (1385/86-1466), the greatest sculptor of the early Renaissance.\n ' +p11961 +sa(dp11962 +g2 +S'Portrait of a Young Woman' +p11963 +sg4 +S'Florentine 16th Century' +p11964 +sg6 +S'oil on panel' +p11965 +sg8 +S'1530/1540' +p11966 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dd1.jpg' +p11967 +sg12 +g27 +sa(dp11968 +g2 +S'Flagellation of Christ' +p11969 +sg4 +S'Hendrick Goltzius' +p11970 +sg6 +S', 1597' +p11971 +sg8 +S'\n' +p11972 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce02.jpg' +p11973 +sg12 +g27 +sa(dp11974 +g2 +S'Christ Crowned with Thorns' +p11975 +sg4 +S'Hendrick Goltzius' +p11976 +sg6 +S', 1597' +p11977 +sg8 +S'\n' +p11978 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce03.jpg' +p11979 +sg12 +g27 +sa(dp11980 +g2 +S'Ecce Homo' +p11981 +sg4 +S'Hendrick Goltzius' +p11982 +sg6 +S', 1597' +p11983 +sg8 +S'\n' +p11984 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce04.jpg' +p11985 +sg12 +g27 +sa(dp11986 +g2 +S'Christ Carrying the Cross' +p11987 +sg4 +S'Hendrick Goltzius' +p11988 +sg6 +S', probably 1598' +p11989 +sg8 +S'\n' +p11990 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce05.jpg' +p11991 +sg12 +g27 +sa(dp11992 +g2 +S'The Crucifixion' +p11993 +sg4 +S'Hendrick Goltzius' +p11994 +sg6 +S', probably 1598' +p11995 +sg8 +S'\n' +p11996 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce06.jpg' +p11997 +sg12 +g27 +sa(dp11998 +g2 +S'Burial of Christ' +p11999 +sg4 +S'Hendrick Goltzius' +p12000 +sg6 +S', 1596' +p12001 +sg8 +S'\n' +p12002 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce07.jpg' +p12003 +sg12 +g27 +sa(dp12004 +g2 +S'The Resurrection' +p12005 +sg4 +S'Hendrick Goltzius' +p12006 +sg6 +S', 1596' +p12007 +sg8 +S'\n' +p12008 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce08.jpg' +p12009 +sg12 +g27 +sa(dp12010 +g2 +S'Christ' +p12011 +sg4 +S'Hendrick Goltzius' +p12012 +sg6 +S', probably 1589' +p12013 +sg8 +S'\n' +p12014 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce0b.jpg' +p12015 +sg12 +g27 +sa(dp12016 +g2 +S'Saint Bartholomew' +p12017 +sg4 +S'Hendrick Goltzius' +p12018 +sg6 +S', probably 1589' +p12019 +sg8 +S'\n' +p12020 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce11.jpg' +p12021 +sg12 +g27 +sa(dp12022 +g2 +S'Saint Thomas' +p12023 +sg4 +S'Hendrick Goltzius' +p12024 +sg6 +S', probably 1589' +p12025 +sg8 +S'\n' +p12026 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce12.jpg' +p12027 +sg12 +g27 +sa(dp12028 +g2 +S"A Farrier's Shop" +p12029 +sg4 +S'Paulus Potter' +p12030 +sg6 +S'oil on panel' +p12031 +sg8 +S'1648' +p12032 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e78.jpg' +p12033 +sg12 +S"\r\n\tFarriers are blacksmiths who shoe horses and serve as veterinarians. This bald, spectacled farrier files the tooth of a terrified horse restrained in a brake. Potter gained instant fame for his superb depictions of animal anatomy and psychology. For example, the dogs here ignore the horse's dilemma while snarling over a bone, and chickens diligently scratch for food.\r\n\n \r\n\tThis painting, signed and dated on the door lintel above the blacksmith’s forge, is an exceptional achievement for an artist only twenty-three years old. In a daring interplay of indoor and outdoor lighting effects, Potter contrasted the sparks flying from the smoking forge, the sunshine that streams through the clouds, and the morning fog still clinging over the cattle pasture.\r\n\n \r\n\tPotter was trained by his father and was painting by age fifteen. He moved frequently, working in Delft, The Hague, and Amsterdam, where he died at age twenty-eight. Even though his career was short, Potter was a tireless worker who left a considerable number of large and small pictures of livestock in farmyards and meadows.\r\n\n " +p12034 +sa(dp12035 +g2 +S'Saint Matthew' +p12036 +sg4 +S'Hendrick Goltzius' +p12037 +sg6 +S', probably 1589' +p12038 +sg8 +S'\n' +p12039 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce13.jpg' +p12040 +sg12 +g27 +sa(dp12041 +g2 +S'Saint James the Lesser' +p12042 +sg4 +S'Hendrick Goltzius' +p12043 +sg6 +S', probably 1589' +p12044 +sg8 +S'\n' +p12045 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce14.jpg' +p12046 +sg12 +g27 +sa(dp12047 +g2 +S'Saint Jude' +p12048 +sg4 +S'Hendrick Goltzius' +p12049 +sg6 +S', probably 1589' +p12050 +sg8 +S'\n' +p12051 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce15.jpg' +p12052 +sg12 +g27 +sa(dp12053 +g2 +S'Saint Matthias' +p12054 +sg4 +S'Hendrick Goltzius' +p12055 +sg6 +S', probably 1589' +p12056 +sg8 +S'\n' +p12057 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce16.jpg' +p12058 +sg12 +g27 +sa(dp12059 +g2 +S'Saint Paul' +p12060 +sg4 +S'Hendrick Goltzius' +p12061 +sg6 +S', probably 1589' +p12062 +sg8 +S'\n' +p12063 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce17.jpg' +p12064 +sg12 +g27 +sa(dp12065 +g2 +S'Saint Peter' +p12066 +sg4 +S'Hendrick Goltzius' +p12067 +sg6 +S', 1589' +p12068 +sg8 +S'\n' +p12069 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce0c.jpg' +p12070 +sg12 +g27 +sa(dp12071 +g2 +S'Saint Andrew' +p12072 +sg4 +S'Hendrick Goltzius' +p12073 +sg6 +S', probably 1589' +p12074 +sg8 +S'\n' +p12075 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce0d.jpg' +p12076 +sg12 +g27 +sa(dp12077 +g2 +S'Saint James Major' +p12078 +sg4 +S'Hendrick Goltzius' +p12079 +sg6 +S', probably 1589' +p12080 +sg8 +S'\n' +p12081 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce0e.jpg' +p12082 +sg12 +g27 +sa(dp12083 +g2 +S'Saint John' +p12084 +sg4 +S'Hendrick Goltzius' +p12085 +sg6 +S', probably 1589' +p12086 +sg8 +S'\n' +p12087 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce0f.jpg' +p12088 +sg12 +g27 +sa(dp12089 +g2 +S'Saint Philip' +p12090 +sg4 +S'Hendrick Goltzius' +p12091 +sg6 +S', probably 1589' +p12092 +sg8 +S'\n' +p12093 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce10.jpg' +p12094 +sg12 +g27 +sa(dp12095 +g2 +S'Bianca Maria Sforza' +p12096 +sg4 +S'Ambrogio de Predis' +p12097 +sg6 +S'oil on panel' +p12098 +sg8 +S'probably 1493' +p12099 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a00005db.jpg' +p12100 +sg12 +g27 +sa(dp12101 +g2 +S'Euterpe' +p12102 +sg4 +S'Hendrick Goltzius' +p12103 +sg6 +S', probably 1592' +p12104 +sg8 +S'\n' +p12105 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce1d.jpg' +p12106 +sg12 +g27 +sa(dp12107 +g2 +S'Erato' +p12108 +sg4 +S'Hendrick Goltzius' +p12109 +sg6 +S', probably 1592' +p12110 +sg8 +S'\n' +p12111 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce1c.jpg' +p12112 +sg12 +g27 +sa(dp12113 +g2 +S'Polyhymnia' +p12114 +sg4 +S'Hendrick Goltzius' +p12115 +sg6 +S', probably 1592' +p12116 +sg8 +S'\n' +p12117 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce1b.jpg' +p12118 +sg12 +g27 +sa(dp12119 +g2 +S'Urania' +p12120 +sg4 +S'Hendrick Goltzius' +p12121 +sg6 +S', probably 1592' +p12122 +sg8 +S'\n' +p12123 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce1a.jpg' +p12124 +sg12 +g27 +sa(dp12125 +g2 +S'Jacques de la Faille' +p12126 +sg4 +S'Hendrick Goltzius' +p12127 +sg6 +S', probably 1589' +p12128 +sg8 +S'\n' +p12129 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce26.jpg' +p12130 +sg12 +g27 +sa(dp12131 +g2 +S'Cornelia van de Capelle' +p12132 +sg4 +S'Hendrick Goltzius' +p12133 +sg6 +S', 1589' +p12134 +sg8 +S'\n' +p12135 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce29.jpg' +p12136 +sg12 +g27 +sa(dp12137 +g2 +S'Letter A' +p12138 +sg4 +S'Hans Holbein the Younger' +p12139 +sg6 +S'woodcut' +p12140 +sg8 +S'unknown date\n' +p12141 +sg10 +S'http://www.nga.gov:80/thumb-l/a00057/a00057ec.jpg' +p12142 +sg12 +g27 +sa(dp12143 +g2 +S'Letter B' +p12144 +sg4 +S'Hans Holbein the Younger' +p12145 +sg6 +S'woodcut' +p12146 +sg8 +S'unknown date\n' +p12147 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b259.jpg' +p12148 +sg12 +g27 +sa(dp12149 +g2 +S'Letter C' +p12150 +sg4 +S'Hans Holbein the Younger' +p12151 +sg6 +S'woodcut' +p12152 +sg8 +S'unknown date\n' +p12153 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b25a.jpg' +p12154 +sg12 +g27 +sa(dp12155 +g2 +S'Letter D' +p12156 +sg4 +S'Hans Holbein the Younger' +p12157 +sg6 +S'woodcut' +p12158 +sg8 +S'unknown date\n' +p12159 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b25b.jpg' +p12160 +sg12 +g27 +sa(dp12161 +g2 +S'Rest' +p12162 +sg4 +S'Pierre Puvis de Chavannes' +p12163 +sg6 +S'oil on canvas' +p12164 +sg8 +S'c. 1863' +p12165 +sg10 +S'http://www.nga.gov:80/thumb-l/a00006/a00006d2.jpg' +p12166 +sg12 +g27 +sa(dp12167 +g2 +S'Letter E' +p12168 +sg4 +S'Hans Holbein the Younger' +p12169 +sg6 +S'woodcut' +p12170 +sg8 +S'unknown date\n' +p12171 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b25c.jpg' +p12172 +sg12 +g27 +sa(dp12173 +g2 +S'Letter F' +p12174 +sg4 +S'Hans Holbein the Younger' +p12175 +sg6 +S'woodcut' +p12176 +sg8 +S'unknown date\n' +p12177 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b25d.jpg' +p12178 +sg12 +g27 +sa(dp12179 +g2 +S'Letter G' +p12180 +sg4 +S'Hans Holbein the Younger' +p12181 +sg6 +S'woodcut' +p12182 +sg8 +S'unknown date\n' +p12183 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b25e.jpg' +p12184 +sg12 +g27 +sa(dp12185 +g2 +S'Letter H' +p12186 +sg4 +S'Hans Holbein the Younger' +p12187 +sg6 +S'woodcut' +p12188 +sg8 +S'unknown date\n' +p12189 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b25f.jpg' +p12190 +sg12 +g27 +sa(dp12191 +g2 +S'Letter I' +p12192 +sg4 +S'Hans Holbein the Younger' +p12193 +sg6 +S'woodcut' +p12194 +sg8 +S'unknown date\n' +p12195 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b260.jpg' +p12196 +sg12 +g27 +sa(dp12197 +g2 +S'Letter K' +p12198 +sg4 +S'Hans Holbein the Younger' +p12199 +sg6 +S'woodcut' +p12200 +sg8 +S'unknown date\n' +p12201 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b261.jpg' +p12202 +sg12 +g27 +sa(dp12203 +g2 +S'Letter L' +p12204 +sg4 +S'Hans Holbein the Younger' +p12205 +sg6 +S'woodcut' +p12206 +sg8 +S'unknown date\n' +p12207 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b262.jpg' +p12208 +sg12 +g27 +sa(dp12209 +g2 +S'Letter M' +p12210 +sg4 +S'Hans Holbein the Younger' +p12211 +sg6 +S'woodcut' +p12212 +sg8 +S'unknown date\n' +p12213 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b263.jpg' +p12214 +sg12 +g27 +sa(dp12215 +g2 +S'Letter N' +p12216 +sg4 +S'Hans Holbein the Younger' +p12217 +sg6 +S'woodcut' +p12218 +sg8 +S'unknown date\n' +p12219 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b264.jpg' +p12220 +sg12 +g27 +sa(dp12221 +g2 +S'Letter O' +p12222 +sg4 +S'Hans Holbein the Younger' +p12223 +sg6 +S'woodcut' +p12224 +sg8 +S'unknown date\n' +p12225 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b265.jpg' +p12226 +sg12 +g27 +sa(dp12227 +g2 +S'Work' +p12228 +sg4 +S'Pierre Puvis de Chavannes' +p12229 +sg6 +S'oil on canvas' +p12230 +sg8 +S'c. 1863' +p12231 +sg10 +S'http://www.nga.gov:80/thumb-l/a00006/a00006d3.jpg' +p12232 +sg12 +g27 +sa(dp12233 +g2 +S'Letter P' +p12234 +sg4 +S'Hans Holbein the Younger' +p12235 +sg6 +S'woodcut' +p12236 +sg8 +S'unknown date\n' +p12237 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b266.jpg' +p12238 +sg12 +g27 +sa(dp12239 +g2 +S'Letter Q' +p12240 +sg4 +S'Hans Holbein the Younger' +p12241 +sg6 +S'woodcut' +p12242 +sg8 +S'unknown date\n' +p12243 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b267.jpg' +p12244 +sg12 +g27 +sa(dp12245 +g2 +S'Letter R' +p12246 +sg4 +S'Hans Holbein the Younger' +p12247 +sg6 +S'woodcut' +p12248 +sg8 +S'unknown date\n' +p12249 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b268.jpg' +p12250 +sg12 +g27 +sa(dp12251 +g2 +S'Letter S' +p12252 +sg4 +S'Hans Holbein the Younger' +p12253 +sg6 +S'woodcut' +p12254 +sg8 +S'unknown date\n' +p12255 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b269.jpg' +p12256 +sg12 +g27 +sa(dp12257 +g2 +S'Letter T' +p12258 +sg4 +S'Hans Holbein the Younger' +p12259 +sg6 +S'woodcut' +p12260 +sg8 +S'unknown date\n' +p12261 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b26a.jpg' +p12262 +sg12 +g27 +sa(dp12263 +g2 +S'Letter V' +p12264 +sg4 +S'Hans Holbein the Younger' +p12265 +sg6 +S'woodcut' +p12266 +sg8 +S'unknown date\n' +p12267 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b26b.jpg' +p12268 +sg12 +g27 +sa(dp12269 +g2 +S'Letter W' +p12270 +sg4 +S'Hans Holbein the Younger' +p12271 +sg6 +S'woodcut' +p12272 +sg8 +S'unknown date\n' +p12273 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b26c.jpg' +p12274 +sg12 +g27 +sa(dp12275 +g2 +S'Letter X' +p12276 +sg4 +S'Hans Holbein the Younger' +p12277 +sg6 +S'woodcut' +p12278 +sg8 +S'unknown date\n' +p12279 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b26d.jpg' +p12280 +sg12 +g27 +sa(dp12281 +g2 +S'Letter Y' +p12282 +sg4 +S'Hans Holbein the Younger' +p12283 +sg6 +S'woodcut' +p12284 +sg8 +S'unknown date\n' +p12285 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b26e.jpg' +p12286 +sg12 +g27 +sa(dp12287 +g2 +S'Letter Z' +p12288 +sg4 +S'Hans Holbein the Younger' +p12289 +sg6 +S'woodcut' +p12290 +sg8 +S'unknown date\n' +p12291 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b26f.jpg' +p12292 +sg12 +g27 +sa(dp12293 +g2 +S'David Anderson' +p12294 +sg4 +S'Sir Henry Raeburn' +p12295 +sg6 +S'oil on canvas' +p12296 +sg8 +S'1790' +p12297 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d44.jpg' +p12298 +sg12 +S"The Scottish portraitist Henry Raeburn\r\n favored warm, dramatic illumination. Here the subject is bathed in twilight,\r\n his face half-lit, half-shaded. David Anderson stands proudly, holding an\r\n empty glove nonchalantly against his hip, while his bare hand holds his\r\n upturned hat. The portrait reveals no strain on Anderson's character even\r\n though it was created during a crisis in his career.\n Anderson had served under the first governor-general of British India,\r\n Warren Hastings. Upon their return to Britain in 1785, Hastings agreed to\r\n commission his portrait from Sir Joshua Reynolds, London's court painter, as\r\n a gift to Anderson. In turn, Anderson sent this likeness by Raeburn,\r\n Edinburgh's leading artist, to Hastings in 1790. Therefore, in creating this\r\n portrait, Raeburn pitted his emerging reputation against that of Reynolds,\r\n under whom he had recently studied.\n The exchanged tokens of friendship may have bolstered the sitters'\r\n spirits during one of the most infamous political scandals in British\r\n history—the Warren Hastings' Trial. A cabal of Englishmen, wishing to\r\n exploit India, had sullied Hastings' reputation by turning him into a\r\n scapegoat for their own greed. Although Hastings was exonerated in 1795, his\r\n impeachment proceedings had lasted seven years, during which time Raeburn\r\n portrayed Hastings' beleaguered associate.\n " +p12299 +sa(dp12300 +g12 +g27 +sg6 +S'woodcut' +p12301 +sg8 +S'1922/1923' +p12302 +sg2 +S'The Sacrifice (Das Opfer)' +p12303 +sg4 +S'K\xc3\xa4the Kollwitz' +p12304 +sa(dp12305 +g12 +g27 +sg6 +S'portfolio with six woodcuts including cover plus table of contents' +p12306 +sg8 +S'1922/1923' +p12307 +sg2 +S'War (Krieg)' +p12308 +sg4 +S'K\xc3\xa4the Kollwitz' +p12309 +sa(dp12310 +g12 +g27 +sg6 +S'woodcut' +p12311 +sg8 +S'1922/1923' +p12312 +sg2 +S'The Parents (Die Eltern)' +p12313 +sg4 +S'K\xc3\xa4the Kollwitz' +p12314 +sa(dp12315 +g12 +g27 +sg6 +S'woodcut' +p12316 +sg8 +S'1922/1923' +p12317 +sg2 +S'The Widow I (Die Witwe I)' +p12318 +sg4 +S'K\xc3\xa4the Kollwitz' +p12319 +sa(dp12320 +g12 +g27 +sg6 +S'woodcut' +p12321 +sg8 +S'1922/1923' +p12322 +sg2 +S'The Widow II (Die Witwe II)' +p12323 +sg4 +S'K\xc3\xa4the Kollwitz' +p12324 +sa(dp12325 +g12 +g27 +sg6 +S'woodcut' +p12326 +sg8 +S'1922/1923' +p12327 +sg2 +S'The People (Das Volk)' +p12328 +sg4 +S'K\xc3\xa4the Kollwitz' +p12329 +sa(dp12330 +g12 +g27 +sg6 +S'woodcut in black on brown paper; portfolio cover' +p12331 +sg8 +S'1922/1923' +p12332 +sg2 +S'The Widow I (Die Witwe I)' +p12333 +sg4 +S'K\xc3\xa4the Kollwitz' +p12334 +sa(dp12335 +g2 +S'Saint Matthew' +p12336 +sg4 +S'Johann Ladenspelder' +p12337 +sg6 +S'engraving' +p12338 +sg8 +S'unknown date\n' +p12339 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ac/a000aca8.jpg' +p12340 +sg12 +g27 +sa(dp12341 +g2 +S'Saint Mark' +p12342 +sg4 +S'Johann Ladenspelder' +p12343 +sg6 +S'engraving' +p12344 +sg8 +S'unknown date\n' +p12345 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ac/a000aca7.jpg' +p12346 +sg12 +g27 +sa(dp12347 +g2 +S'Saint Luke' +p12348 +sg4 +S'Johann Ladenspelder' +p12349 +sg6 +S'engraving' +p12350 +sg8 +S'unknown date\n' +p12351 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ac/a000aca6.jpg' +p12352 +sg12 +g27 +sa(dp12353 +g2 +S'The Small Cowper Madonna' +p12354 +sg4 +S'Raphael' +p12355 +sg6 +S'oil on panel' +p12356 +sg8 +S'c. 1505' +p12357 +sg10 +S'http://www.nga.gov:80/thumb-l/a00008/a0000888.jpg' +p12358 +sg12 +S'Raphael was in Florence from late 1504 until 1508. Seventeen images of the Virgin and Child from those few years survive today, two of them are on this tour. Probably many of these works were made for the art market—images of the Madonna and Child were often given as wedding presents—rather than to fulfill a specific commission.\n The Small Cowper Madonna\n ' +p12359 +sa(dp12360 +g2 +S'Saint John' +p12361 +sg4 +S'Johann Ladenspelder' +p12362 +sg6 +S'engraving' +p12363 +sg8 +S'unknown date\n' +p12364 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ac/a000aca5.jpg' +p12365 +sg12 +g27 +sa(dp12366 +g2 +S'Crest' +p12367 +sg4 +S'Michel Le Blon' +p12368 +sg6 +S'engraving' +p12369 +sg8 +S'unknown date\n' +p12370 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2ea.jpg' +p12371 +sg12 +g27 +sa(dp12372 +g2 +S'Crest' +p12373 +sg4 +S'Michel Le Blon' +p12374 +sg6 +S'engraving' +p12375 +sg8 +S'unknown date\n' +p12376 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2e9.jpg' +p12377 +sg12 +g27 +sa(dp12378 +g2 +S'Crest' +p12379 +sg4 +S'Michel Le Blon' +p12380 +sg6 +S'engraving' +p12381 +sg8 +S'unknown date\n' +p12382 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2e4.jpg' +p12383 +sg12 +g27 +sa(dp12384 +g2 +S'Crest' +p12385 +sg4 +S'Michel Le Blon' +p12386 +sg6 +S'engraving' +p12387 +sg8 +S'unknown date\n' +p12388 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2e8.jpg' +p12389 +sg12 +g27 +sa(dp12390 +g2 +S'Crest' +p12391 +sg4 +S'Michel Le Blon' +p12392 +sg6 +S'engraving' +p12393 +sg8 +S'unknown date\n' +p12394 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2e7.jpg' +p12395 +sg12 +g27 +sa(dp12396 +g2 +S'Crest' +p12397 +sg4 +S'Michel Le Blon' +p12398 +sg6 +S'engraving' +p12399 +sg8 +S'unknown date\n' +p12400 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2e5.jpg' +p12401 +sg12 +g27 +sa(dp12402 +g2 +S'Crest' +p12403 +sg4 +S'Michel Le Blon' +p12404 +sg6 +S'engraving' +p12405 +sg8 +S'unknown date\n' +p12406 +sg10 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2e6.jpg' +p12407 +sg12 +g27 +sa(dp12408 +g12 +g27 +sg6 +S'woodcut in red' +p12409 +sg8 +S'published 1937' +p12410 +sg2 +S'Title Page: Daphnis Bathing' +p12411 +sg4 +S'Aristide Maillol' +p12412 +sa(dp12413 +g12 +g27 +sg6 +S'portfolio with forty-nine woodcuts in red' +p12414 +sg8 +S'published 1937' +p12415 +sg2 +S'Daphnis and Chloe' +p12416 +sg4 +S'Aristide Maillol' +p12417 +sa(dp12418 +g2 +S'Head of Saint Matthew' +p12419 +sg4 +S'Artist Information (' +p12420 +sg6 +S'Dutch, 1606 - 1669' +p12421 +sg8 +S'(related artist)' +p12422 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e83.jpg' +p12423 +sg12 +g27 +sa(dp12424 +g12 +g27 +sg6 +S'woodcut in red' +p12425 +sg8 +S'published 1937' +p12426 +sg2 +S'Frontispiece: Daphnis and Chloe (Daphnis et Chloe enlaces)' +p12427 +sg4 +S'Aristide Maillol' +p12428 +sa(dp12429 +g12 +g27 +sg6 +S'woodcut in red' +p12430 +sg8 +S'published 1937' +p12431 +sg2 +S'First Book: Three Goats, First Plate (Chevreaux, premiere planche)' +p12432 +sg4 +S'Aristide Maillol' +p12433 +sa(dp12434 +g12 +g27 +sg6 +S'woodcut in red' +p12435 +sg8 +S'published 1937' +p12436 +sg2 +S'First Book: Two Nymphs Dancing (Les nymphs de la grotte)' +p12437 +sg4 +S'Aristide Maillol' +p12438 +sa(dp12439 +g12 +g27 +sg6 +S'woodcut in red' +p12440 +sg8 +S'published 1937' +p12441 +sg2 +S'First Book: Daphnis and Chloe Picking Flowers(Daphnis et Chloe rammassant des fleurs)' +p12442 +sg4 +S'Aristide Maillol' +p12443 +sa(dp12444 +g12 +g27 +sg6 +S'woodcut in red' +p12445 +sg8 +S'published 1937' +p12446 +sg2 +S"First Book: Daphnis Playing His Pipe for Chloe (Daphnis jouant de l'harmonica pour Chloe)" +p12447 +sg4 +S'Aristide Maillol' +p12448 +sa(dp12449 +g12 +g27 +sg6 +S'woodcut in red' +p12450 +sg8 +S'published 1937' +p12451 +sg2 +S"First Book: Daphnis Playing His Pipe for Chloe (Daphnis jouant de l'harmonica pour Chloe)" +p12452 +sg4 +S'Aristide Maillol' +p12453 +sa(dp12454 +g12 +g27 +sg6 +S'woodcut in red' +p12455 +sg8 +S'published 1937' +p12456 +sg2 +S'First Book: Chloe Washing Daphnis in the Cave of the Nymphs (Chloe lave Daphnis dansla caverne des nymphes)' +p12457 +sg4 +S'Aristide Maillol' +p12458 +sa(dp12459 +g12 +g27 +sg6 +S'woodcut in red' +p12460 +sg8 +S'published 1937' +p12461 +sg2 +S'First Book: Chloe Kisses Daphnis (Chloe donne un baiser a Daphnis de preference a dorcon)' +p12462 +sg4 +S'Aristide Maillol' +p12463 +sa(dp12464 +g12 +g27 +sg6 +S'woodcut in red' +p12465 +sg8 +S'published 1937' +p12466 +sg2 +S'First Book: Chloe Washing Her Naked Limbs (Chloe se baignant dans une fontaine)' +p12467 +sg4 +S'Aristide Maillol' +p12468 +sa(dp12469 +g12 +g27 +sg6 +S'woodcut in red' +p12470 +sg8 +S'published 1937' +p12471 +sg2 +S"First Book: Chloe Puts a Chaplet Upon Daphnis' Head (Chloe met une couronne sur le tete de Daphnis)" +p12472 +sg4 +S'Aristide Maillol' +p12473 +sa(dp12474 +g2 +S'The Apostle Paul' +p12475 +sg4 +S'Artist Information (' +p12476 +sg6 +S'(painter)' +p12477 +sg8 +S'\n' +p12478 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e84.jpg' +p12479 +sg12 +g27 +sa(dp12480 +g12 +g27 +sg6 +S'woodcut in red' +p12481 +sg8 +S'published 1937' +p12482 +sg2 +S'First Book: Daphnis Teaches Chloe to Play on the Pipe (Daphnis apprend a Chloe a jouer de la flute)' +p12483 +sg4 +S'Aristide Maillol' +p12484 +sa(dp12485 +g12 +g27 +sg6 +S'woodcut in red' +p12486 +sg8 +S'published 1937' +p12487 +sg2 +S'First Book: Daphnis Observes the Sleeping Chloe (Daphnis regarde Chloe dormir)' +p12488 +sg4 +S'Aristide Maillol' +p12489 +sa(dp12490 +g12 +g27 +sg6 +S'woodcut in red' +p12491 +sg8 +S'published 1937' +p12492 +sg2 +S"First Book: Daphnis Draws the Grasshopper from Chloe's Bosom (Daphnis met la main dans le sein de Chloe pour en retirer une cigale)" +p12493 +sg4 +S'Aristide Maillol' +p12494 +sa(dp12495 +g12 +g27 +sg6 +S'woodcut in red' +p12496 +sg8 +S'published 1937' +p12497 +sg2 +S'First Book: Chloe Casting Daphnis into Her Arms (Daphnis et Chloe se lavent ensemble dans la caverne des nymphes)' +p12498 +sg4 +S'Aristide Maillol' +p12499 +sa(dp12500 +g12 +g27 +sg6 +S'woodcut in red' +p12501 +sg8 +S'published 1937' +p12502 +sg2 +S'First Book: Chloe Bathing (Chloe au milieu des roseaux)' +p12503 +sg4 +S'Aristide Maillol' +p12504 +sa(dp12505 +g12 +g27 +sg6 +S'woodcut in red' +p12506 +sg8 +S'published 1937' +p12507 +sg2 +S'Second Book: The Vintage (Pendant les vendanges)' +p12508 +sg4 +S'Aristide Maillol' +p12509 +sa(dp12510 +g12 +g27 +sg6 +S'woodcut in red' +p12511 +sg8 +S'published 1937' +p12512 +sg2 +S'Second Book: Philetas Speaking to Daphnis and Chloe (Le discours de Philetas a Daphnis et Chloe)' +p12513 +sg4 +S'Aristide Maillol' +p12514 +sa(dp12515 +g12 +g27 +sg6 +S'woodcut in red' +p12516 +sg8 +S'published 1937' +p12517 +sg2 +S'Second Book: Goats, Second Plate (Chevreux, deuxieme planche)' +p12518 +sg4 +S'Aristide Maillol' +p12519 +sa(dp12520 +g12 +g27 +sg6 +S'woodcut in red' +p12521 +sg8 +S'published 1937' +p12522 +sg2 +S"Second Book: Daphnis and Chloe Sitting Close Together (Daphnis et Chloe assis sous unchene et s'embrassant)" +p12523 +sg4 +S'Aristide Maillol' +p12524 +sa(dp12525 +g12 +g27 +sg6 +S'woodcut in red' +p12526 +sg8 +S'published 1937' +p12527 +sg2 +S"Second Book: Daphnis and Chloe Run Smiling Together (Daphnis et Chloe courent l'un vers l'autre" +p12528 +sg4 +S'Aristide Maillol' +p12529 +sa(dp12530 +g2 +S'The Circumcision' +p12531 +sg4 +S'Rembrandt van Rijn' +p12532 +sg6 +S'oil on canvas' +p12533 +sg8 +S'1661' +p12534 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e4f.jpg' +p12535 +sg12 +g27 +sa(dp12536 +g12 +g27 +sg6 +S'woodcut in red' +p12537 +sg8 +S'published 1937' +p12538 +sg2 +S'Second Book: Three Goats, Third Plate (Chevreaux, troisieme planche)' +p12539 +sg4 +S'Aristide Maillol' +p12540 +sa(dp12541 +g12 +g27 +sg6 +S'woodcut in red' +p12542 +sg8 +S'published 1937' +p12543 +sg2 +S'Second Book: Daphnis and Chloe Embrace One Another (Daphnis et Chloe apres le depart des Methymniens)' +p12544 +sg4 +S'Aristide Maillol' +p12545 +sa(dp12546 +g12 +g27 +sg6 +S'woodcut in red' +p12547 +sg8 +S'published 1937' +p12548 +sg2 +S'Second Book: Daphnis and Chloe Playing (Daphnis poursuivant Chloe)' +p12549 +sg4 +S'Aristide Maillol' +p12550 +sa(dp12551 +g12 +g27 +sg6 +S'woodcut in red' +p12552 +sg8 +S'published 1937' +p12553 +sg2 +S'Second Book: Methymnaean Carrying Chloe Away (Chloe enlevee par le Methymnien)' +p12554 +sg4 +S'Aristide Maillol' +p12555 +sa(dp12556 +g12 +g27 +sg6 +S'woodcut in red' +p12557 +sg8 +S'published 1937' +p12558 +sg2 +S'Second Book: Daphnis Rushing into the Embraces of Chloe (Daphnis et Chloe se retrouvent apres la captivite de Chloe' +p12559 +sg4 +S'Aristide Maillol' +p12560 +sa(dp12561 +g12 +g27 +sg6 +S'woodcut in red' +p12562 +sg8 +S'published 1937' +p12563 +sg2 +S'Second Book: Daphnis and Chloe Sacrificing a Crowned Goat (Daphnis et Chloe emmenant le bouc, chef du troupeau, pour le sacrifier a Pan)' +p12564 +sg4 +S'Aristide Maillol' +p12565 +sa(dp12566 +g12 +g27 +sg6 +S'woodcut in red' +p12567 +sg8 +S'published 1937' +p12568 +sg2 +S'Second Book: Syrinx Disappears in a Grove of Reeds (Syringe, poursuivie par Pan, se jette dans un marais et disparait dans les roseaux)' +p12569 +sg4 +S'Aristide Maillol' +p12570 +sa(dp12571 +g12 +g27 +sg6 +S'woodcut in red' +p12572 +sg8 +S'published 1937' +p12573 +sg2 +S"Second Book: Daphnis Driving Home His Flock (Daphnis ramene ses betes a l'etable)" +p12574 +sg4 +S'Aristide Maillol' +p12575 +sa(dp12576 +g12 +g27 +sg6 +S'woodcut in red' +p12577 +sg8 +S'published 1937' +p12578 +sg2 +S'Second Book: Three Goats Resting, Fourth Plate (Trois chevreaux couches, quatrieme planche)' +p12579 +sg4 +S'Aristide Maillol' +p12580 +sa(dp12581 +g12 +g27 +sg6 +S'woodcut in red' +p12582 +sg8 +S'published 1937' +p12583 +sg2 +S"Second Book: Daphnis and Chloe Remember Their Sweet Conversation (L'hiver, Daphnis eet Chloe s'entrelacent et s'embrassent)" +p12584 +sg4 +S'Aristide Maillol' +p12585 +sa(dp12586 +g2 +S'The Adoration of the Magi' +p12587 +sg4 +S'Benvenuto di Giovanni' +p12588 +sg6 +S'tempera on panel' +p12589 +sg8 +S'c. 1470/1475' +p12590 +sg10 +S'http://www.nga.gov:80/thumb-l/a00007/a0000783.jpg' +p12591 +sg12 +S"Many Italian cities celebrated the feast of Epiphany with elaborate pageants that reenacted the procession of the Three Magi. This panel, a maze of pattern and rich decoration, captures the splendor of these spectacles. Costly brocades and furs adorn the three kings. A page on the right wears a peacock-feather cap; even his horse has an elaborately coiffed mane. Crowns and sword hilts are raised in plaster relief and gilded. The figures crowd the front of the picture plane, but we are separated from the holy figures rather than drawn into their world. The central placement of the Virgin—rather than the Magi—reflects her importance in Siena.\n The harsh colors and brittle hardness convey a sensation of an airless, crystalline world. The ground is strewn with smooth, vividly colored stones; probably these jewel-toned beads are borrowed from manuscript illuminations. Benvenuto punctuated his scene with fantasy—look, for example, at the soldier's armor in the scene of Christ carrying the cross. Also typical is his inclusion of such everyday details as the young boys who have climbed a tree for a better view.\n " +p12592 +sa(dp12593 +g2 +S'A Little Boy' +p12594 +sg4 +S'Desiderio da Settignano' +p12595 +sg6 +S'marble' +p12596 +sg8 +S'1455/1460' +p12597 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d77.jpg' +p12598 +sg12 +S"\n This bust of an infant, without any attributes to identify him as a religious figure, may have been created as a portrait of an actual child. Carved of pure white marble, it presents its young subject with a solemn but relaxed expression. The eyes, with uncarved irises and pupils, possess a timeless, classical character, while the slight asymmetry and skillful handling of the marble create a sense of life and movement. The deeply cut mouth falls open. Soft wisps of hair fall loosely over the ears and forehead. The sensitive carving of the stone to convey the resilience of young flesh and the silky texture of a child's hair is characteristic of Desiderio's best work.\n \n \n Desiderio was born in the quarry town of Settignano, where his father was a stone cutter. Perhaps trained in the Florentine studio of Bernardo Rossellino, Desiderio had established himself as an independent master in that city by 1453. His work, like that of the Rossellino brothers Antonio and Bernardo, filled a vigorous demand for portraits, religious images, and church furnishings. During his short career, Desiderio was celebrated for his skill in creating marble busts of women and young children.\n \n " +p12599 +sa(dp12600 +g2 +S'The Descent from the Cross' +p12601 +sg4 +S'Artist Information (' +p12602 +sg6 +S'Dutch, 1606 - 1669' +p12603 +sg8 +S'(related artist)' +p12604 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e85.jpg' +p12605 +sg12 +g27 +sa(dp12606 +g12 +g27 +sg6 +S'woodcut in red' +p12607 +sg8 +S'published 1937' +p12608 +sg2 +S"Third Book: Daphnis and Chloe in Dryas' House (Daphnis et Chloe dans la maison de Dryas)" +p12609 +sg4 +S'Aristide Maillol' +p12610 +sa(dp12611 +g12 +g27 +sg6 +S'woodcut in red' +p12612 +sg8 +S'published 1937' +p12613 +sg2 +S'Third Book: Daphnis Lifts Chloe Up (Daphnis soulevant Chloe)' +p12614 +sg4 +S'Aristide Maillol' +p12615 +sa(dp12616 +g12 +g27 +sg6 +S'woodcut in red' +p12617 +sg8 +S'published 1937' +p12618 +sg2 +S"Third Book: Lycaenium Teaches Daphnis the Secret of Love (Lycenion donne une lecon d'Amour a Daphnis)" +p12619 +sg4 +S'Aristide Maillol' +p12620 +sa(dp12621 +g12 +g27 +sg6 +S'woodcut in red' +p12622 +sg8 +S'published 1937' +p12623 +sg2 +S'Third Book: The Echo, Daughter of a Nymph (La nymphe Echo)' +p12624 +sg4 +S'Aristide Maillol' +p12625 +sa(dp12626 +g12 +g27 +sg6 +S'woodcut in red' +p12627 +sg8 +S'published 1937' +p12628 +sg2 +S'Third Book: Chloe Embraces Daphne (Chloe embrasse Daphnis)' +p12629 +sg4 +S'Aristide Maillol' +p12630 +sa(dp12631 +g12 +g27 +sg6 +S'woodcut in red' +p12632 +sg8 +S'published 1937' +p12633 +sg2 +S'Third Book: Three Goats, Fifth Plate (Chevreaux, cinquieme planche)' +p12634 +sg4 +S'Aristide Maillol' +p12635 +sa(dp12636 +g12 +g27 +sg6 +S'woodcut in red' +p12637 +sg8 +S'published 1937' +p12638 +sg2 +S'Third Book: Daphnis Pulls an Apple for Chloe (Daphnis donne la pomme a Chloe)' +p12639 +sg4 +S'Aristide Maillol' +p12640 +sa(dp12641 +g12 +g27 +sg6 +S'woodcut in red' +p12642 +sg8 +S'published 1937' +p12643 +sg2 +S"Third Book: Daphnis Puts the Apple into Chloe's Bosom (Daphnis met la pomme entre le seins de Chloe)" +p12644 +sg4 +S'Aristide Maillol' +p12645 +sa(dp12646 +g12 +g27 +sg6 +S'woodcut in red' +p12647 +sg8 +S'published 1937' +p12648 +sg2 +S"Third Book: Daphnis Puts the Apple into Chloe's Bosom, First Conception (Daphnis met le pomme entre seins de Chloe, variante)" +p12649 +sg4 +S'Aristide Maillol' +p12650 +sa(dp12651 +g12 +g27 +sg6 +S'woodcut in red' +p12652 +sg8 +S'published 1937' +p12653 +sg2 +S'Fourth Book: Daphnis and Chloe at Play (Daphnis monte sur le dos de Chloe)' +p12654 +sg4 +S'Aristide Maillol' +p12655 +sa(dp12656 +g2 +S'The Mill' +p12657 +sg4 +S'Rembrandt van Rijn' +p12658 +sg6 +S'oil on canvas' +p12659 +sg8 +S'1645/1648' +p12660 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e86.jpg' +p12661 +sg12 +S"The Mill\n While we may find such interpretations unfounded today, particularly after the painting's blue sky was revealed during restoration in the 1970s, the painting still speaks to us as a powerfully expressive work. Rembrandt evokes a feeling of the forces of nature in the dramatic confrontation of the iconic mill, so central to the Dutch way of life, against the sweep of the sky. At the same time, the figures within the landscape give it a human element that we can respond to on a personal basis.\n " +p12662 +sa(dp12663 +g12 +g27 +sg6 +S'woodcut in red' +p12664 +sg8 +S'published 1937' +p12665 +sg2 +S'Fourth Book: Chloe Helps Daphnis with His Goats (Chloe trait une chevre de Daphnis)' +p12666 +sg4 +S'Aristide Maillol' +p12667 +sa(dp12668 +g12 +g27 +sg6 +S'woodcut in red' +p12669 +sg8 +S'published 1937' +p12670 +sg2 +S'Fourth Book: Daphnis Plays to His Goats (Daphnis joue de la flute au milieu de ses chevres)' +p12671 +sg4 +S'Aristide Maillol' +p12672 +sa(dp12673 +g12 +g27 +sg6 +S'woodcut in red' +p12674 +sg8 +S'published 1937' +p12675 +sg2 +S'Fourth Book: Daphnis and Chloe (Groupe de Daphnis et Chloe)' +p12676 +sg4 +S'Aristide Maillol' +p12677 +sa(dp12678 +g12 +g27 +sg6 +S'woodcut in red' +p12679 +sg8 +S'published 1937' +p12680 +sg2 +S'Fourth Book: Lampis Ravishing Chloe Away (Le Bouvier Lampis enleve Chloe)' +p12681 +sg4 +S'Aristide Maillol' +p12682 +sa(dp12683 +g12 +g27 +sg6 +S'woodcut in red' +p12684 +sg8 +S'published 1937' +p12685 +sg2 +S'Fourth Book: Chloe is Given to Daphnis (Chloeunie a Daphnis)' +p12686 +sg4 +S'Aristide Maillol' +p12687 +sa(dp12688 +g12 +g27 +sg6 +S'woodcut in red' +p12689 +sg8 +S'published 1937' +p12690 +sg2 +S'Fourth Book: Daphnis and Chloe Lying Together, Second Variant (Daphnis et Chloe couches ensemble, deuxieme variante)' +p12691 +sg4 +S'Aristide Maillol' +p12692 +sa(dp12693 +g12 +g27 +sg6 +S'woodcut in red' +p12694 +sg8 +S'published 1937' +p12695 +sg2 +S'Fourth Book: Daphnis and Chloe Lying Together, Third Variant (Daphnis et Chloe couches ensemble, troisieme variante)' +p12696 +sg4 +S'Aristide Maillol' +p12697 +sa(dp12698 +g12 +g27 +sg6 +S'woodcut in red' +p12699 +sg8 +S'published 1937' +p12700 +sg2 +S'Fourth Book: Chloe Bathing in the Cave of the nymphs (Chloe se baignant dans la grotte des nymphes)' +p12701 +sg4 +S'Aristide Maillol' +p12702 +sa(dp12703 +g2 +S'Dance of Death I' +p12704 +sg4 +S'Master A.C.' +p12705 +sg6 +S'engraving' +p12706 +sg8 +S'1562' +p12707 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ace2.jpg' +p12708 +sg12 +g27 +sa(dp12709 +g2 +S'Dance of Death II' +p12710 +sg4 +S'Master A.C.' +p12711 +sg6 +S'engraving' +p12712 +sg8 +S'1562' +p12713 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ace0.jpg' +p12714 +sg12 +g27 +sa(dp12715 +g2 +S'Study of an Old Man' +p12716 +sg4 +S'Artist Information (' +p12717 +sg6 +S'Dutch, 1606 - 1669' +p12718 +sg8 +S'(related artist)' +p12719 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e87.jpg' +p12720 +sg12 +g27 +sa(dp12721 +g2 +S'Dance of Death III' +p12722 +sg4 +S'Master A.C.' +p12723 +sg6 +S'engraving' +p12724 +sg8 +S'1562' +p12725 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ace4.jpg' +p12726 +sg12 +g27 +sa(dp12727 +g2 +S'Dance of Death IV' +p12728 +sg4 +S'Master A.C.' +p12729 +sg6 +S'engraving' +p12730 +sg8 +S'1562' +p12731 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ace1.jpg' +p12732 +sg12 +g27 +sa(dp12733 +g2 +S'Dance of Death V' +p12734 +sg4 +S'Master A.C.' +p12735 +sg6 +S'engraving' +p12736 +sg8 +S'1562' +p12737 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ace5.jpg' +p12738 +sg12 +g27 +sa(dp12739 +g2 +S'Dance of Death VI' +p12740 +sg4 +S'Master A.C.' +p12741 +sg6 +S'engraving' +p12742 +sg8 +S'1562' +p12743 +sg10 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ace3.jpg' +p12744 +sg12 +g27 +sa(dp12745 +g2 +S'Fameio (Servant)' +p12746 +sg4 +S'Master of the E-Series Tarocchi' +p12747 +sg6 +S'engraving with traces of gilding' +p12748 +sg8 +S'c. 1465' +p12749 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6da.jpg' +p12750 +sg12 +g27 +sa(dp12751 +g2 +S'Artixan (Artisan)' +p12752 +sg4 +S'Master of the E-Series Tarocchi' +p12753 +sg6 +S'engraving with gilding' +p12754 +sg8 +S'c. 1465' +p12755 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6d9.jpg' +p12756 +sg12 +g27 +sa(dp12757 +g2 +S'Merchadante (Merchant)' +p12758 +sg4 +S'Master of the E-Series Tarocchi' +p12759 +sg6 +S'engraving' +p12760 +sg8 +S'c. 1465' +p12761 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6d8.jpg' +p12762 +sg12 +g27 +sa(dp12763 +g2 +S'Zintilomo (Gentleman)' +p12764 +sg4 +S'Master of the E-Series Tarocchi' +p12765 +sg6 +S'engraving with traces of gilding' +p12766 +sg8 +S'c. 1465' +p12767 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6d7.jpg' +p12768 +sg12 +g27 +sa(dp12769 +g2 +S'Chavalier (Knight)' +p12770 +sg4 +S'Master of the E-Series Tarocchi' +p12771 +sg6 +S'engraving with traces of gilding' +p12772 +sg8 +S'c. 1465' +p12773 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6d6.jpg' +p12774 +sg12 +g27 +sa(dp12775 +g2 +S'Doxe (Doge)' +p12776 +sg4 +S'Master of the E-Series Tarocchi' +p12777 +sg6 +S'engraving with gilding' +p12778 +sg8 +S'c. 1465' +p12779 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6d5.jpg' +p12780 +sg12 +g27 +sa(dp12781 +g2 +S'Head of an Aged Woman' +p12782 +sg4 +S'Artist Information (' +p12783 +sg6 +S'Dutch, 1606 - 1669' +p12784 +sg8 +S'(related artist)' +p12785 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e88.jpg' +p12786 +sg12 +g27 +sa(dp12787 +g2 +S'Re (King)' +p12788 +sg4 +S'Master of the E-Series Tarocchi' +p12789 +sg6 +S'engraving with traces of gilding' +p12790 +sg8 +S'c. 1465' +p12791 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6d4.jpg' +p12792 +sg12 +g27 +sa(dp12793 +g2 +S'Papa (Pope)' +p12794 +sg4 +S'Master of the E-Series Tarocchi' +p12795 +sg6 +S'engraving with traces of gilding' +p12796 +sg8 +S'c. 1465' +p12797 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6d2.jpg' +p12798 +sg12 +g27 +sa(dp12799 +g2 +S'Grammatica (Grammar)' +p12800 +sg4 +S'Master of the E-Series Tarocchi' +p12801 +sg6 +S'engraving with gilding' +p12802 +sg8 +S'c. 1465' +p12803 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6e5.jpg' +p12804 +sg12 +g27 +sa(dp12805 +g2 +S'Loica (Logic)' +p12806 +sg4 +S'Master of the E-Series Tarocchi' +p12807 +sg6 +S'engraving' +p12808 +sg8 +S'c. 1465' +p12809 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6e6.jpg' +p12810 +sg12 +g27 +sa(dp12811 +g2 +S'Geometria (Geometry)' +p12812 +sg4 +S'Master of the E-Series Tarocchi' +p12813 +sg6 +S'engraving with traces of gilding' +p12814 +sg8 +S'c. 1465' +p12815 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6f4.jpg' +p12816 +sg12 +g27 +sa(dp12817 +g2 +S'Aritmetricha (Arithmetic)' +p12818 +sg4 +S'Master of the E-Series Tarocchi' +p12819 +sg6 +S'engraving' +p12820 +sg8 +S'c. 1465' +p12821 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6f3.jpg' +p12822 +sg12 +g27 +sa(dp12823 +g2 +S'Musicha (Music)' +p12824 +sg4 +S'Master of the E-Series Tarocchi' +p12825 +sg6 +S'engraving with gilding' +p12826 +sg8 +S'c. 1465' +p12827 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6f2.jpg' +p12828 +sg12 +g27 +sa(dp12829 +g2 +S'Poesia (Poetry)' +p12830 +sg4 +S'Master of the E-Series Tarocchi' +p12831 +sg6 +S'engraving with traces of gilding' +p12832 +sg8 +S'c. 1465' +p12833 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6f1.jpg' +p12834 +sg12 +g27 +sa(dp12835 +g2 +S'Philosofia (Philosophy)' +p12836 +sg4 +S'Master of the E-Series Tarocchi' +p12837 +sg6 +S'engraving' +p12838 +sg8 +S'c. 1465' +p12839 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6f0.jpg' +p12840 +sg12 +g27 +sa(dp12841 +g2 +S'Theologia (Theology)' +p12842 +sg4 +S'Master of the E-Series Tarocchi' +p12843 +sg6 +S'engraving' +p12844 +sg8 +S'c. 1465' +p12845 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6ef.jpg' +p12846 +sg12 +g27 +sa(dp12847 +g2 +S'Philemon and Baucis' +p12848 +sg4 +S'Rembrandt van Rijn' +p12849 +sg6 +S'oil on panel transferred to panel' +p12850 +sg8 +S'1658' +p12851 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e89.jpg' +p12852 +sg12 +g27 +sa(dp12853 +g12 +g27 +sg6 +S'lithograph' +p12854 +sg8 +S'1937' +p12855 +sg2 +S'Title Page' +p12856 +sg4 +S'Francisco Mateos' +p12857 +sa(dp12858 +g12 +g27 +sg6 +S'portfolio with ten lithographs' +p12859 +sg8 +S'published 1937' +p12860 +sg2 +S'El Sito de Madrid' +p12861 +sg4 +S'Francisco Mateos' +p12862 +sa(dp12863 +g12 +g27 +sg6 +S'lithograph' +p12864 +sg8 +S'1937' +p12865 +sg2 +S'Los legionarios' +p12866 +sg4 +S'Francisco Mateos' +p12867 +sa(dp12868 +g12 +g27 +sg6 +S'lithograph' +p12869 +sg8 +S'1937' +p12870 +sg2 +S'Los requetes' +p12871 +sg4 +S'Francisco Mateos' +p12872 +sa(dp12873 +g12 +g27 +sg6 +S'lithograph' +p12874 +sg8 +S'1937' +p12875 +sg2 +S'Las justicia' +p12876 +sg4 +S'Francisco Mateos' +p12877 +sa(dp12878 +g12 +g27 +sg6 +S'lithograph' +p12879 +sg8 +S'1937' +p12880 +sg2 +S'La Morisma' +p12881 +sg4 +S'Francisco Mateos' +p12882 +sa(dp12883 +g12 +g27 +sg6 +S'lithograph' +p12884 +sg8 +S'1937' +p12885 +sg2 +S'Los jefes prusianos' +p12886 +sg4 +S'Francisco Mateos' +p12887 +sa(dp12888 +g12 +g27 +sg6 +S'lithograph' +p12889 +sg8 +S'1937' +p12890 +sg2 +S'La guardia civil' +p12891 +sg4 +S'Francisco Mateos' +p12892 +sa(dp12893 +g12 +g27 +sg6 +S'lithograph' +p12894 +sg8 +S'1937' +p12895 +sg2 +S'El esta do mayor' +p12896 +sg4 +S'Francisco Mateos' +p12897 +sa(dp12898 +g12 +g27 +sg6 +S'lithograph' +p12899 +sg8 +S'1937' +p12900 +sg2 +S'Los Vaticanistas' +p12901 +sg4 +S'Francisco Mateos' +p12902 +sa(dp12903 +g2 +S'The Philosopher' +p12904 +sg4 +S'Artist Information (' +p12905 +sg6 +S'Dutch, 1606 - 1669' +p12906 +sg8 +S'(related artist)' +p12907 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e8a.jpg' +p12908 +sg12 +g27 +sa(dp12909 +g12 +g27 +sg6 +S'lithograph' +p12910 +sg8 +S'1937' +p12911 +sg2 +S'Musica italiana' +p12912 +sg4 +S'Francisco Mateos' +p12913 +sa(dp12914 +g2 +S'Pilate Washing His Hands' +p12915 +sg4 +S'German 15th Century' +p12916 +sg6 +S'Schreiber Manuel, no. 3448' +p12917 +sg8 +S'\nhand-colored woodcut' +p12918 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5f2.jpg' +p12919 +sg12 +g27 +sa(dp12920 +g2 +S'Christ Bearing the Cross' +p12921 +sg4 +S'German 15th Century' +p12922 +sg6 +S'Schreiber Manuel, no. 3448' +p12923 +sg8 +S'\nhand-colored woodcut' +p12924 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5f3.jpg' +p12925 +sg12 +g27 +sa(dp12926 +g2 +S'Christ Nailed to the Cross' +p12927 +sg4 +S'German 15th Century' +p12928 +sg6 +S'Schreiber Manuel, no. 3448' +p12929 +sg8 +S'\nhand-colored woodcut' +p12930 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5f4.jpg' +p12931 +sg12 +g27 +sa(dp12932 +g2 +S'Raising the Cross' +p12933 +sg4 +S'German 15th Century' +p12934 +sg6 +S'Schreiber Manuel, no. 3448' +p12935 +sg8 +S'\nhand-colored woodcut' +p12936 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5f5.jpg' +p12937 +sg12 +g27 +sa(dp12938 +g2 +S'The Crucifixion' +p12939 +sg4 +S'German 15th Century' +p12940 +sg6 +S'Schreiber Manuel, no. 3448' +p12941 +sg8 +S'\nhand-colored woodcut' +p12942 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5f6.jpg' +p12943 +sg12 +g27 +sa(dp12944 +g2 +S'Madonna Overcome' +p12945 +sg4 +S'German 15th Century' +p12946 +sg6 +S'Schreiber Manuel, no. 3448' +p12947 +sg8 +S'\nhand-colored woodcut' +p12948 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5f7.jpg' +p12949 +sg12 +g27 +sa(dp12950 +g2 +S'Descent from the Cross' +p12951 +sg4 +S'German 15th Century' +p12952 +sg6 +S'Schreiber Manuel, no. 3448' +p12953 +sg8 +S'\nhand-colored woodcut' +p12954 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5f8.jpg' +p12955 +sg12 +g27 +sa(dp12956 +g2 +S'The Entombment' +p12957 +sg4 +S'German 15th Century' +p12958 +sg6 +S'Schreiber Manuel, no. 3448' +p12959 +sg8 +S'\nhand-colored woodcut' +p12960 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5f9.jpg' +p12961 +sg12 +g27 +sa(dp12962 +g2 +S'Descent into Limbo' +p12963 +sg4 +S'German 15th Century' +p12964 +sg6 +S'Schreiber Manuel, no. 3448' +p12965 +sg8 +S'\nhand-colored woodcut' +p12966 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5fa.jpg' +p12967 +sg12 +g27 +sa(dp12968 +g2 +S'Portrait of a Gentleman with a Tall Hat and Gloves' +p12969 +sg4 +S'Rembrandt van Rijn' +p12970 +sg6 +S'oil on canvas transferred to canvas' +p12971 +sg8 +S'c. 1658/1660' +p12972 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e8b.jpg' +p12973 +sg12 +g27 +sa(dp12974 +g2 +S'The Resurrection' +p12975 +sg4 +S'German 15th Century' +p12976 +sg6 +S'Schreiber Manuel, no. 3448' +p12977 +sg8 +S'\nhand-colored woodcut' +p12978 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5fb.jpg' +p12979 +sg12 +g27 +sa(dp12980 +g2 +S'Ascension' +p12981 +sg4 +S'German 15th Century' +p12982 +sg6 +S'Schreiber Manuel, no. 3448' +p12983 +sg8 +S'\nhand-colored woodcut' +p12984 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5fc.jpg' +p12985 +sg12 +g27 +sa(dp12986 +g2 +S'The Descent of the Holy Ghost' +p12987 +sg4 +S'German 15th Century' +p12988 +sg6 +S'Schreiber Manuel, no. 3448' +p12989 +sg8 +S'\nhand-colored woodcut' +p12990 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5fd.jpg' +p12991 +sg12 +g27 +sa(dp12992 +g2 +S'Last Judgment' +p12993 +sg4 +S'German 15th Century' +p12994 +sg6 +S'Schreiber Manuel, no. 3448' +p12995 +sg8 +S'\nhand-colored woodcut' +p12996 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5fe.jpg' +p12997 +sg12 +g27 +sa(dp12998 +g12 +g27 +sg6 +S'Rosenwald Collection' +p12999 +sg8 +S'\nhand-colored woodcut' +p13000 +sg2 +S'Playing Card' +p13001 +sg4 +S'Italian 17th Century' +p13002 +sa(dp13003 +g12 +g27 +sg6 +S'Rosenwald Collection' +p13004 +sg8 +S'\nhand-colored woodcut' +p13005 +sg2 +S'Playing Card' +p13006 +sg4 +S'Italian 17th Century' +p13007 +sa(dp13008 +g12 +g27 +sg6 +S'Rosenwald Collection' +p13009 +sg8 +S'\nhand-colored woodcut' +p13010 +sg2 +S'Playing Card' +p13011 +sg4 +S'Italian 17th Century' +p13012 +sa(dp13013 +g12 +g27 +sg6 +S'Rosenwald Collection' +p13014 +sg8 +S'\nhand-colored woodcut' +p13015 +sg2 +S'Playing Card' +p13016 +sg4 +S'Italian 17th Century' +p13017 +sa(dp13018 +g12 +g27 +sg6 +S'Rosenwald Collection' +p13019 +sg8 +S'\nhand-colored woodcut' +p13020 +sg2 +S'Playing Card' +p13021 +sg4 +S'Italian 17th Century' +p13022 +sa(dp13023 +g12 +g27 +sg6 +S'Rosenwald Collection' +p13024 +sg8 +S'\nhand-colored woodcut' +p13025 +sg2 +S'Playing Card' +p13026 +sg4 +S'Italian 17th Century' +p13027 +sa(dp13028 +g2 +S'Portrait of a Lady with an Ostrich-Feather Fan' +p13029 +sg4 +S'Rembrandt van Rijn' +p13030 +sg6 +S'oil on canvas transferred to canvas' +p13031 +sg8 +S'c. 1658/1660' +p13032 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e8c.jpg' +p13033 +sg12 +g27 +sa(dp13034 +g12 +g27 +sg6 +S'Rosenwald Collection' +p13035 +sg8 +S'\nhand-colored woodcut' +p13036 +sg2 +S'Playing Card' +p13037 +sg4 +S'Italian 17th Century' +p13038 +sa(dp13039 +g12 +g27 +sg6 +S'Rosenwald Collection' +p13040 +sg8 +S'\nhand-colored woodcut' +p13041 +sg2 +S'Playing Card' +p13042 +sg4 +S'Italian 17th Century' +p13043 +sa(dp13044 +g12 +g27 +sg6 +S'Rosenwald Collection' +p13045 +sg8 +S'\nhand-colored woodcut' +p13046 +sg2 +S'Playing Card' +p13047 +sg4 +S'Italian 17th Century' +p13048 +sa(dp13049 +g12 +g27 +sg6 +S'Rosenwald Collection' +p13050 +sg8 +S'\nhand-colored woodcut' +p13051 +sg2 +S'Playing Card' +p13052 +sg4 +S'Italian 17th Century' +p13053 +sa(dp13054 +g12 +g27 +sg6 +S'Rosenwald Collection' +p13055 +sg8 +S'\nhand-colored woodcut' +p13056 +sg2 +S'Playing Card' +p13057 +sg4 +S'Italian 17th Century' +p13058 +sa(dp13059 +g12 +g27 +sg6 +S'Rosenwald Collection' +p13060 +sg8 +S'\nhand-colored woodcut' +p13061 +sg2 +S'Playing Card' +p13062 +sg4 +S'Italian 17th Century' +p13063 +sa(dp13064 +g12 +g27 +sg6 +S'Rosenwald Collection' +p13065 +sg8 +S'\nhand-colored woodcut' +p13066 +sg2 +S'Playing Card' +p13067 +sg4 +S'Italian 17th Century' +p13068 +sa(dp13069 +g12 +g27 +sg6 +S'Rosenwald Collection' +p13070 +sg8 +S'\nhand-colored woodcut' +p13071 +sg2 +S'Playing Card' +p13072 +sg4 +S'Italian 17th Century' +p13073 +sa(dp13074 +g12 +g27 +sg6 +S'Rosenwald Collection' +p13075 +sg8 +S'\nhand-colored woodcut' +p13076 +sg2 +S'Playing Card' +p13077 +sg4 +S'Italian 17th Century' +p13078 +sa(dp13079 +g12 +g27 +sg6 +S'Rosenwald Collection' +p13080 +sg8 +S'\nhand-colored woodcut' +p13081 +sg2 +S'Playing Card' +p13082 +sg4 +S'Italian 17th Century' +p13083 +sa(dp13084 +g2 +S'Portrait of a Man in a Tall Hat' +p13085 +sg4 +S'Rembrandt van Rijn' +p13086 +sg6 +S'oil on canvas' +p13087 +sg8 +S'c. 1663' +p13088 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e8d.jpg' +p13089 +sg12 +g27 +sa(dp13090 +g2 +S'The Twelve Year Old Jesus in the Temple' +p13091 +sg4 +S'German 15th Century' +p13092 +sg6 +S'Schreiber, no. 130, State a' +p13093 +sg8 +S'\nwoodcut, hand-colored in dark blue, red, yellow, ochre, and brown-violet' +p13094 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a624.jpg' +p13095 +sg12 +g27 +sa(dp13096 +g2 +S'Christ Washing the Feet of the Apostles' +p13097 +sg4 +S'German 15th Century' +p13098 +sg6 +S'Schreiber, no. 164, State b' +p13099 +sg8 +S'\nwoodcut, hand-colored in red lake, dark blue, and lilac' +p13100 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a625.jpg' +p13101 +sg12 +g27 +sa(dp13102 +g2 +S'Christ before Pilate' +p13103 +sg4 +S'German 15th Century' +p13104 +sg6 +S'Schreiber, no. 263, State a' +p13105 +sg8 +S'\nwoodcut, hand-colored in red lake, dark blue, yellow, and brown' +p13106 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a626.jpg' +p13107 +sg12 +g27 +sa(dp13108 +g2 +S'The Crucifixion' +p13109 +sg4 +S'German 15th Century' +p13110 +sg6 +S'Schreiber, no. 493, State b' +p13111 +sg8 +S'\nwoodcut, hand-colored in red lake, blue, yellow, green, and vermilion' +p13112 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a627.jpg' +p13113 +sg12 +g27 +sa(dp13114 +g2 +S'Christ on the Cross between the Two Thieves' +p13115 +sg4 +S'German 15th Century' +p13116 +sg6 +S'Schreiber, no. 965, State a' +p13117 +sg8 +S'\nwoodcut, hand-colored in red lake, dark blue, green, and yellow' +p13118 +sg10 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a628.jpg' +p13119 +sg12 +g27 +sa(dp13120 +g2 +S'Le bruit de deux sabots tra\xc3\xaenant... (The sound of two clogs shuffling...)' +p13121 +sg4 +S'F\xc3\xa9lix-Hilaire Buhot' +p13122 +sg6 +S'etching, drypoint, and roulette in black on moderately thick cream wove paper' +p13123 +sg8 +S'1878' +p13124 +sg10 +S'http://www.nga.gov:80/thumb-l/a00097/a00097c6.jpg' +p13125 +sg12 +g27 +sa(dp13126 +g2 +S'On allume les cierges pour les Morts (They light candles for the dead)' +p13127 +sg4 +S'F\xc3\xa9lix-Hilaire Buhot' +p13128 +sg6 +S'etching, drypoint, and roulette in black on Japanese paper' +p13129 +sg8 +S'1878' +p13130 +sg10 +S'http://www.nga.gov:80/thumb-l/a00097/a00097ca.jpg' +p13131 +sg12 +g27 +sa(dp13132 +g2 +S'Portrait of Rembrandt' +p13133 +sg4 +S'Artist Information (' +p13134 +sg6 +S'Dutch, 1606 - 1669' +p13135 +sg8 +S'(related artist)' +p13136 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ea2.jpg' +p13137 +sg12 +g27 +sa(dp13138 +g2 +S"Je fis ce qu'on appelle un bon march\xc3\xa9 (I made what I would call a good bargain)" +p13139 +sg4 +S'F\xc3\xa9lix-Hilaire Buhot' +p13140 +sg6 +S'etching, drypoint, and softground etching (for the grainy texture in the lower left margin) in black on Japanese paper' +p13141 +sg8 +S'1878' +p13142 +sg10 +S'http://www.nga.gov:80/thumb-l/a00097/a00097c9.jpg' +p13143 +sg12 +g27 +sa(dp13144 +g2 +S'A cette lueur soudaine... (In the sudden gleam of light...)' +p13145 +sg4 +S'F\xc3\xa9lix-Hilaire Buhot' +p13146 +sg6 +S'etching, drypoint, and softground etching (for the grainy texture in the sky) in black on Japanese paper' +p13147 +sg8 +S'1878' +p13148 +sg10 +S'http://www.nga.gov:80/thumb-l/a00097/a00097c8.jpg' +p13149 +sg12 +g27 +sa(dp13150 +g2 +S'Le soir m\xc3\xaame... (The same evening...)' +p13151 +sg4 +S'F\xc3\xa9lix-Hilaire Buhot' +p13152 +sg6 +S'etching, drypoint, and roulette in black on moderately thick cream wove paper' +p13153 +sg8 +S'1878' +p13154 +sg10 +S'http://www.nga.gov:80/thumb-l/a00097/a00097c7.jpg' +p13155 +sg12 +g27 +sa(dp13156 +g2 +S"The Circle of the Traitors; Dante's Foot Striking Bocca degli Abbate" +p13157 +sg4 +S'William Blake' +p13158 +sg6 +S'engraving printed by Harry Hoehn in 1968' +p13159 +sg8 +S'1827' +p13160 +sg10 +S'http://www.nga.gov:80/thumb-l/a00077/a0007712.jpg' +p13161 +sg12 +g27 +sa(dp13162 +g2 +S'The Circle of the Falsifiers; Dante and Virgil Covering their Noses because of the stench' +p13163 +sg4 +S'William Blake' +p13164 +sg6 +S'engraving printed by Harry Hoehn in 1968' +p13165 +sg8 +S'1827' +p13166 +sg10 +S'http://www.nga.gov:80/thumb-l/a00077/a0007710.jpg' +p13167 +sg12 +g27 +sa(dp13168 +g2 +S'The Circle of the Corrupt Officials; The Devils Tormenting Ciampolo' +p13169 +sg4 +S'William Blake' +p13170 +sg6 +S'engraving printed by Harry Hoehn in 1968' +p13171 +sg8 +S'1827' +p13172 +sg10 +S'http://www.nga.gov:80/thumb-l/a00077/a0007708.jpg' +p13173 +sg12 +g27 +sa(dp13174 +g2 +S'The Circle of the Thieves; Buoso Donati Attacked by the Serpent' +p13175 +sg4 +S'William Blake' +p13176 +sg6 +S'engraving printed by Harry Hoehn in 1968' +p13177 +sg8 +S'1827' +p13178 +sg10 +S'http://www.nga.gov:80/thumb-l/a00077/a000770e.jpg' +p13179 +sg12 +g27 +sa(dp13180 +g2 +S'The Circle of the Thieves; Agnolo Brunelleschi Attacked by a Six-Footed Serpent' +p13181 +sg4 +S'William Blake' +p13182 +sg6 +S'engraving printed by Harry Hoehn in 1968' +p13183 +sg8 +S'1827' +p13184 +sg10 +S'http://www.nga.gov:80/thumb-l/a00077/a000770c.jpg' +p13185 +sg12 +g27 +sa(dp13186 +g2 +S'The Circle of the Corrupt Officials; The Devils Mauling Each Other' +p13187 +sg4 +S'William Blake' +p13188 +sg6 +S'engraving printed by Harry Hoehn in 1968' +p13189 +sg8 +S'1827' +p13190 +sg10 +S'http://www.nga.gov:80/thumb-l/a00077/a000770a.jpg' +p13191 +sg12 +g27 +sa(dp13192 +g2 +S'Madonna and Child' +p13193 +sg4 +S'Artist Information (' +p13194 +sg6 +S'Italian, 1435 - 1488' +p13195 +sg8 +S'(artist after)' +p13196 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f8c.jpg' +p13197 +sg12 +g27 +sa(dp13198 +g12 +g27 +sg6 +S'marble' +p13199 +sg8 +S'c. 1860' +p13200 +sg2 +S'Madonna and Child' +p13201 +sg4 +S'Florentine 19th Century' +p13202 +sa(dp13203 +g2 +S'Saskia van Uylenburgh, the Wife of the Artist' +p13204 +sg4 +S'Rembrandt van Rijn' +p13205 +sg6 +S'oil on panel' +p13206 +sg8 +S'probably begun 1634/1635 and completed 1638/1640' +p13207 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e8e.jpg' +p13208 +sg12 +g27 +sa(dp13209 +g2 +S'Saint Margaret' +p13210 +sg4 +S'Sassetta' +p13211 +sg6 +S'tempera on panel' +p13212 +sg8 +S'c. 1435' +p13213 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b16.jpg' +p13214 +sg12 +g27 +sa(dp13215 +g2 +S'Saint Apollonia' +p13216 +sg4 +S'Sassetta' +p13217 +sg6 +S'tempera on panel' +p13218 +sg8 +S'c. 1435' +p13219 +sg10 +S'http://www.nga.gov:80/thumb-l/a00008/a0000860.jpg' +p13220 +sg12 +g27 +sa(dp13221 +g2 +S'The Dancer' +p13222 +sg4 +S'Auguste Renoir' +p13223 +sg6 +S'oil on canvas' +p13224 +sg8 +S'1874' +p13225 +sg10 +S'http://www.nga.gov:80/thumb-l/a00037/a00037e3.jpg' +p13226 +sg12 +S'The Dancer\n The Dancer\n Although Renoir himself never identified\r\nthe figure, the model is almost\r\ncertainly Henriette Henriot, the young\r\nactress who posed regularly for the artist\r\nin the mid-1870s and whose likeness was\r\nfeatured in \n Ultimately, however, Renoir\xe2\x80\x99s virtuoso\r\nbrushwork is the painting\xe2\x80\x99s most compelling\r\nfeature. His paint handling is varied,\r\nranging from the delicate brushstrokes\r\nthat define the dancer\xe2\x80\x99s face to the loose,\r\nalmost careless application of paint in the\r\npicture\xe2\x80\x99s background. The dancer\xe2\x80\x99s skirt\r\nis a true tour de force; Renoir masterfully\r\ncaptured the gauzy softness of the tulle. It\r\nfloats about her body like a cloud, seeming\r\nto dissolve into the hazy background, the\r\nfabric as light and insubstantial as mist.\n Four years after appearing in this\r\nhistoric exhibition, \n (Text by Kimberly Jones, \n Notes\n \n \n ' +p13227 +sa(dp13228 +g2 +S'Madonna and Child' +p13229 +sg4 +S'Lorenzo Monaco' +p13230 +sg6 +S'tempera on panel' +p13231 +sg8 +S'1413' +p13232 +sg10 +S'http://www.nga.gov:80/thumb-l/a00008/a000085b.jpg' +p13233 +sg12 +g27 +sa(dp13234 +g2 +S'Saint Catherine of Alexandria' +p13235 +sg4 +S'"Ugolino Lorenzetti"' +p13236 +sg6 +S'tempera on panel' +p13237 +sg8 +S'probably c. 1335' +p13238 +sg10 +S'http://www.nga.gov:80/thumb-l/a00008/a000085a.jpg' +p13239 +sg12 +g27 +sa(dp13240 +g2 +S'The Hon. Mrs. Gray' +p13241 +sg4 +S'Daniel Gardner' +p13242 +sg6 +S'oil on canvas' +p13243 +sg8 +S'c. 1785/1790' +p13244 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cdc.jpg' +p13245 +sg12 +g27 +sa(dp13246 +g2 +S'The Baptism of Christ' +p13247 +sg4 +S'Alessandro Magnasco' +p13248 +sg6 +S'oil on canvas' +p13249 +sg8 +S'c. 1740' +p13250 +sg10 +S'http://www.nga.gov:80/thumb-l/a00006/a0000616.jpg' +p13251 +sg12 +g27 +sa(dp13252 +g2 +S'The Holy Family with Angels' +p13253 +sg4 +S'Domenico Beccafumi' +p13254 +sg6 +S'oil on panel' +p13255 +sg8 +S'c. 1545/1550' +p13256 +sg10 +S'http://www.nga.gov:80/thumb-l/a00037/a00037b0.jpg' +p13257 +sg12 +g27 +sa(dp13258 +g2 +S'Christ at the Sea of Galilee' +p13259 +sg4 +S'Alessandro Magnasco' +p13260 +sg6 +S'oil on canvas' +p13261 +sg8 +S'c. 1740' +p13262 +sg10 +S'http://www.nga.gov:80/thumb-l/a00006/a0000617.jpg' +p13263 +sg12 +g27 +sa(dp13264 +g2 +S'Lady Cornewall' +p13265 +sg4 +S'Sir Joshua Reynolds' +p13266 +sg6 +S'oil on canvas' +p13267 +sg8 +S'c. 1785-1786' +p13268 +sg10 +S'http://www.nga.gov:80/thumb-l/a00043/a00043fa.jpg' +p13269 +sg12 +g27 +sa(dp13270 +g2 +S'The Last Supper' +p13271 +sg4 +S'Sebastiano Ricci' +p13272 +sg6 +S'oil on canvas' +p13273 +sg8 +S'1713/1714' +p13274 +sg10 +S'http://www.nga.gov:80/thumb-l/a00006/a000061f.jpg' +p13275 +sg12 +g27 +sa(dp13276 +g2 +S'Bindo Altoviti' +p13277 +sg4 +S'Raphael' +p13278 +sg6 +S'oil on panel' +p13279 +sg8 +S'c. 1515' +p13280 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a00005f4.jpg' +p13281 +sg12 +S"This arresting image was thought in the nineteenth century to be a Raphael self-portrait. However, we know today that this handsome young man was Bindo Altoviti, a wealthy Florentine banker and friend of the artist in Rome.\n He turns in a dramatic, almost theatrical, way to fix the eye of the viewer. Perhaps one viewer in particular was meant to receive his captivating look: Bindo's wife Fiammetta Soderini. Renaissance poets and courtiers were unanimous in believing that a person first fell in love through the eyes. They were called the "guides of love," which could "reveal the passion within more effectively than the tongue itself, or letter, or messengers." Bindo's flushed cheeks contribute to the impression of passion, and a ring is prominent\r\non the hand he holds above his heart. The robe slipping from his shoulder reveals a bare nape caressed by soft curls. Their golden color would have underscored the nobility and purity of his love.\n Bindo and Fiammetta, daughter of a prominent Florentine family, were married in 1511, when Bindo would have been about twenty. The couple had six children, but Fiammetta continued to live in Florence while Bindo's business with the papal court required his presence in Rome. This portrait, which apparently hung in the couple's home in Florence, would have provided Fiammetta with a vivid reminder of her absent husband. It remained in the Altoviti family for nearly three hundred years.\n " +p13282 +sa(dp13283 +g2 +S'The Annunciation' +p13284 +sg4 +S'Fra Filippo Lippi' +p13285 +sg6 +S'tempera on panel' +p13286 +sg8 +S'c. 1435/1440' +p13287 +sg10 +S'http://www.nga.gov:80/thumb-l/a00008/a0000857.jpg' +p13288 +sg12 +g27 +sa(dp13289 +g2 +S'The Coronation of the Virgin' +p13290 +sg4 +S'Filippino Lippi' +p13291 +sg6 +S'oil and tempera (?) on panel' +p13292 +sg8 +S'c. 1475' +p13293 +sg10 +S'http://www.nga.gov:80/thumb-l/a00007/a000076f.jpg' +p13294 +sg12 +S"Filippino was the son of the artist \n This painting is probably a very early work by Filippino—some, in \r\n fact, believe it to be his earliest one to survive. At this point in his \r\n career, Filippino was still strongly under Botticelli's influence. The \r\n lyrical and graceful line—the rippling cascades of drapery and the \r\n fanlike fall of cloth at the Virgin's hem—show Filippino's debt to his \r\n teacher, but the confident colors are the artist's own. As his style \r\n matured, Filippino moved away from the linearity of Botticelli. The \r\n diaphanous shimmer of fabric and sad delicacy of his faces give his works \r\n an elusive and poetic quality.\n The half-round shape of this painting, called a lunette, was used most \r\n often over doorways. Probably this one was placed over the entrance to a \r\n private chapel or sacristy, but its original location remains unknown.\n " +p13295 +sa(dp13296 +g2 +S'Madonna and Child with Saints' +p13297 +sg4 +S'Artist Information (' +p13298 +sg6 +S'Italian, c. 1430/1435 - 1516' +p13299 +sg8 +S'(related artist)' +p13300 +sg10 +S'http://www.nga.gov:80/thumb-l/a00008/a0000883.jpg' +p13301 +sg12 +g27 +sa(dp13302 +g2 +S'Wealth and Benefits of the Spanish Monarchy under Charles III' +p13303 +sg4 +S'Giovanni Battista Tiepolo' +p13304 +sg6 +S'oil on canvas' +p13305 +sg8 +S'1762' +p13306 +sg10 +S'http://www.nga.gov:80/thumb-l/a00068/a000683c.jpg' +p13307 +sg12 +S"Famed as a decorator, Tiepolo made this small sketch as his model for a vast ceiling fresco\nin the throne room of the Royal Palace of Madrid, a project that was the climax of his illustrious\ncareer. Taking its cue from the room's function, Tiepolo's design has as its central feature the\nallegorical figure of Spain enthroned and flanked by Herculean statues. Just above is the\ntrumpeting figure of Fame. The borders are packed with lively figures representing the provinces\nof Spain and the continents where she held colonies. At the upper left, Christopher Columbus\nstands with outstretched arms on the deck of his ship. Nearby are Neptune, god of the sea, who\nguides the expedition, and an American Indian in a feathered headdress.\n One must think of this as a design to be seen overhead in a large, high-ceilinged room. With\nhis legendary facility, Tiepolo resolved the difficulties of foreshortening forms seen from sharply\nbelow, of deploying the figures in coherent groups, and, in turn, incorporating the groups into an\neffective overall design. The result is an airy sweep that seems to open directly to the heavens\nwith all its buoyant and extravagant population paying homage to Spain.\n " +p13308 +sa(dp13309 +g2 +S'Madonna of the Goldfinch' +p13310 +sg4 +S'Giovanni Battista Tiepolo' +p13311 +sg6 +S'oil on canvas' +p13312 +sg8 +S'c. 1767/1770' +p13313 +sg10 +S'http://www.nga.gov:80/thumb-l/a00006/a0000626.jpg' +p13314 +sg12 +g27 +sa(dp13315 +g2 +S'Francesco II Gonzaga, Fourth Marquis of Mantua' +p13316 +sg4 +S"Baldassare d'Este" +p13317 +sg6 +S'tempera on panel' +p13318 +sg8 +S'c. 1474/1480' +p13319 +sg10 +S'http://www.nga.gov:80/thumb-l/a00062/a00062dc.jpg' +p13320 +sg12 +g27 +sa(dp13321 +g2 +S'Lady Elizabeth Hamilton' +p13322 +sg4 +S'Sir Joshua Reynolds' +p13323 +sg6 +S'oil on canvas' +p13324 +sg8 +S'1758' +p13325 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a000053c.jpg' +p13326 +sg12 +g27 +sa(dp13327 +g2 +S'Madonna and Child with Angels' +p13328 +sg4 +S'Master of the Life of Saint John the Baptist' +p13329 +sg6 +S'tempera on panel' +p13330 +sg8 +S'probably 1330/1340' +p13331 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000be6.jpg' +p13332 +sg12 +g27 +sa(dp13333 +g2 +S'Madonna and Child with Angels' +p13334 +sg4 +S'Sandro Botticelli' +p13335 +sg6 +S', 1465/1470' +p13336 +sg8 +S'\n' +p13337 +sg10 +S'http://www.nga.gov:80/thumb-l/a00008/a0000869.jpg' +p13338 +sg12 +g27 +sa(dp13339 +g2 +S'Saint John in the Desert' +p13340 +sg4 +S'Domenico Veneziano' +p13341 +sg6 +S'tempera on panel' +p13342 +sg8 +S'c. 1445/1450' +p13343 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a00005d4.jpg' +p13344 +sg12 +S"One of Domenico Veneziano's major works is an altarpiece that he painted about 1445 for the Church of Santa Lucia dei Magnoli, in Florence. The incident illustrated in this small panel from the base of the altarpiece is John's act of exchanging his rich, worldly clothes for a rough, camel–hair coat. In the few known representations of John in the wilderness that preceded Domenico's version, the emphasis was placed either on the divine origin of the saint's animal skin or on his preaching. Domenico, however, shifted attention from mere narration to the spiritual significance of John's decision to forsake luxury in favor of a life of piety.\n Rather than showing the saint in the usual manner, as a mature, bearded hermit, Domenico painted a youthful figure. Clearly classical in appearance, his saint is one of the earliest embodiments of the Renaissance preoccupation with antique models. However, a fusion of pagan and Christian ideas is suggested; the Grecian type is transformed into a religious being by the golden halo above his head. Another innovative combination of elements exists in the arrangement of this male nude in a landscape that retains artistic features from the High Gothic era of the late Middle Ages. Symbolic rather than realistic, the rugged mountains enliven the drama of John's decision by emphasizing the desolate nature of his chosen environment.\n " +p13345 +sa(dp13346 +g2 +S'Circe and Her Lovers in a Landscape' +p13347 +sg4 +S'Dosso Dossi' +p13348 +sg6 +S'oil on canvas' +p13349 +sg8 +S'c. 1525' +p13350 +sg10 +S'http://www.nga.gov:80/thumb-l/a0004a/a0004a46.jpg' +p13351 +sg12 +g27 +sa(dp13352 +g2 +S'Capriccio of a Harbor' +p13353 +sg4 +S'Francesco Guardi' +p13354 +sg6 +S'oil on canvas' +p13355 +sg8 +S'c. 1760/1770' +p13356 +sg10 +S'http://www.nga.gov:80/thumb-l/a00006/a0000611.jpg' +p13357 +sg12 +g27 +sa(dp13358 +g2 +S"Miss Nelly O'Brien" +p13359 +sg4 +S'Artist Information (' +p13360 +sg6 +S'British, 1723 - 1792' +p13361 +sg8 +S'(artist after)' +p13362 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ea3.jpg' +p13363 +sg12 +g27 +sa(dp13364 +g2 +S"Procris' Prayer to Diana" +p13365 +sg4 +S'Bernardino Luini' +p13366 +sg6 +S'fresco' +p13367 +sg8 +S'c. 1520/1522' +p13368 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f4b.jpg' +p13369 +sg12 +S"In Act I, Cephalus had tested his wife's fidelity by appearing in \r\n disguise and bribing her with gifts. Recognizing her would-be seducer as \r\n her husband, Procris fled into the wilderness. The first scene in Luini's \r\n surviving frescoes is an episode from Act II of Niccolò da Correggio's \r\n play.\n On bended knee, Procris implores the help of the gods. Hastening down a \r\n winding path to answer her prayer is Diana, the goddess of chastity and the \r\n hunt. Diana accepts the princess as a follower, clothes her as a huntress, \r\n and gives her weapons. By portraying Procris already dressed as a virgin \r\n huntress with bow and arrows, Luini condensed time to clarify the \r\n narrative.\n " +p13370 +sa(dp13371 +g2 +S'Cephalus Hiding the Jewels' +p13372 +sg4 +S'Bernardino Luini' +p13373 +sg6 +S'fresco' +p13374 +sg8 +S'c. 1520/1522' +p13375 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f4c.jpg' +p13376 +sg12 +S'Regretting his rash actions, Cephalus buries the jewels he used to trick \r\n his wife. Possibly combining different narratives from the poem and play, \r\n Luini depicted the prince digging in the ground twice.\n ' +p13377 +sa(dp13378 +g2 +S'Cephalus and Pan at the Temple of Diana' +p13379 +sg4 +S'Bernardino Luini' +p13380 +sg6 +S'fresco' +p13381 +sg8 +S'c. 1520/1522' +p13382 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f4d.jpg' +p13383 +sg12 +S'Act V of Niccolò’s drama concludes the story with the young bride being \r\n revived by the benevolent goddess Diana. Cephalus, led toward his happy \r\n second reunion by the goat-footed satyr, Pan, approaches a temple. Its \r\n sacred portal is inscribed “VIRGINITAS” and is topped by a statue of Diana, \r\n the spear-bearing goddess of the hunt and chastity.\n Luini’s imaginary temple shows his profound knowledge of classical \r\n architecture; the octagonal structure with Corinthian columns possesses a \r\n majestic clarity of proportion. The edges of the building reveal Luini’s \r\n preliminary outlines scratched onto the wet plaster through his cartoon, or \r\n full-scale preparatory drawing, before he began painting.\n ' +p13384 +sa(dp13385 +g2 +S'Cephalus Punished at the Hunt' +p13386 +sg4 +S'Bernardino Luini' +p13387 +sg6 +S'fresco' +p13388 +sg8 +S'c. 1520/1522' +p13389 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f4e.jpg' +p13390 +sg12 +S'This violent scene of Cephalus using a club to defend himself against \r\n dogs occurs in neither the ancient poem nor the Renaissance drama. The \r\n goddess Diana, angered at Cephalus’ treatment of his wife, urges her hounds \r\n to attack him. Procris, hiding in the bushes, seems astonished at Diana’s \r\n vengeance, while the goddess’ nymphs run to join the fray.\n Act III of the play, either never included in Luini’s frescoes or \r\n destroyed when his paintings were removed from the walls, deals with the \r\n couple’s reconciliation. As a sign of their renewed union, Procris gives \r\n her husband a magical weapon bestowed upon her by Diana—a spear that \r\n never misses its mark.\n ' +p13391 +sa(dp13392 +g2 +S"Procris Pierced by Cephalus' Javelin" +p13393 +sg4 +S'Bernardino Luini' +p13394 +sg6 +S'fresco' +p13395 +sg8 +S'c. 1520/1522' +p13396 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f4f.jpg' +p13397 +sg12 +S'Following the newlyweds’ reunion, Procris becomes jealous in turn. \r\n Suspecting Cephalus of infidelity, she follows him on a hunting trip. He \r\n hears her and, thinking some wild animal is near, hurls his magic spear. In \r\n this vivid illustration from Act IV, the dying Procris reels against the \r\n force of the javelin. Ovid’s ancient myth ends tragically at this point, \r\n leaving Cephalus to wander the earth in lonely guilt.\n Here Procris appears considerably larger in scale than most of the other \r\n figures in the cycle. Her prominence, appropriate for the story’s climax, \r\n suggests that this scene was a focal point of the decorative scheme and \r\n occupied an important position in the room.\n ' +p13398 +sa(dp13399 +g2 +S'Cephalus and the Nymphs' +p13400 +sg4 +S'Bernardino Luini' +p13401 +sg6 +S'fresco' +p13402 +sg8 +S'c. 1520/1522' +p13403 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f50.jpg' +p13404 +sg12 +S'Cephalus encounters two nymphs at the end of Act IV. Companions of the \r\n hunting goddess Diana, they sleep beside their weapons and dogs. The \r\n widowed prince confides his grief to the nymphs. In the distance, Luini \r\n depicted a city with church and bell towers capped by Christian \r\n crosses.\n ' +p13405 +sa(dp13406 +g2 +S'The Despair of Cephalus' +p13407 +sg4 +S'Bernardino Luini' +p13408 +sg6 +S'fresco' +p13409 +sg8 +S'c. 1520/1522' +p13410 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f51.jpg' +p13411 +sg12 +S'On the distant hill, Cephalus throws up his arms in despair over his \r\n fate. Then he attempts to strangle himself with a cord, but his suicide is \r\n thwarted by the shepherd. Luini added a few final touches to the frescoes \r\n with tempera paints on the dried wall; here, some blossoms and leaves lie \r\n on top of the plaster rather than within it.\n ' +p13412 +sa(dp13413 +g2 +S'The Misfortunes of Cephalus' +p13414 +sg4 +S'Bernardino Luini' +p13415 +sg6 +S'fresco' +p13416 +sg8 +S'c. 1520/1522' +p13417 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f52.jpg' +p13418 +sg12 +S'Chaos reigns, and wolves devour a flock of sheep as the gods turn \r\n against Cephalus, who appears twice. In the foreground, a shepherd tries to \r\n comfort Cephalus, but with head averted and hands raised in protest, the \r\n prince refuses his help.\n ' +p13419 +sa(dp13420 +g2 +S'Procris and the Unicorn' +p13421 +sg4 +S'Bernardino Luini' +p13422 +sg6 +S'fresco' +p13423 +sg8 +S'c. 1520/1522' +p13424 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f53.jpg' +p13425 +sg12 +S'Although related to the joyous events from the fifth act, the final \r\n scene is another invention that does not appear in the drama. Procris \r\n extends one arm gently toward a unicorn, which kneels in deference to her \r\n purity. This fabulous animal does not come from ancient mythology but, \r\n rather, is a symbol of virginity in the Christian faith.\n The unicorn functions as a metaphor, suggesting that, through her \r\n earthly sorrows, Procris has suffered martyrdom and been resurrected. Thus, \r\n in translating Niccolò da Correggio’s play into painted images, Bernardino \r\n Luini followed two Renaissance practices: an interest in reviving classical \r\n style as well as a tendency to give moralizing religious meanings to pagan \r\n myths.\n ' +p13426 +sa(dp13427 +g2 +S'Mrs. Alexander Blair' +p13428 +sg4 +S'George Romney' +p13429 +sg6 +S'oil on canvas' +p13430 +sg8 +S'1787-1789' +p13431 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cde.jpg' +p13432 +sg12 +S'A configuration of linked ovals, this\r\n composition rises from the full skirt through a flounced bodice to a\r\n wide-brimmed bonnet that frames the sitter\'s face like a halo. The oval back\r\n of the chair and the pose of the raised wrist echo the flowing curves.\n The equally masterful color scheme of variations on black, white, and red\r\n is now hard to appreciate because Romney used bitumen. A pigment derived\r\n from coal tar, bitumen gives lush depth to shadows, but rapidly decays,\r\n causing cracks to appear in the dark areas.\n The sheet music and the books provide clues to Mary Johnson Blair\'s\r\n personality. She was a prominent London hostess with acquaintances in\r\n musical, literary, and aristocratic circles. The crimson drapery and fluted\r\n column are Grand Manner attributes of classical culture. Romney\'s studio\r\n appointment books indicate that Mrs. Blair sat seven times between 13 April\r\n 1787 and 4 May 1789.\n Ironically, Romney\'s lifelong ambition to create monumental scenes from\r\n history and literature was thwarted by his own rejection of London\'s Royal\r\n Academy, England\'s only major avenue for exhibiting or selling such\r\n narrative pictures. Instead, he achieved fame and fortune for doing what he\r\n liked least—creating likenesses. Romney muttered about "this cursed\r\n portrait-painting! How I am shackled with it!"\n ' +p13433 +sa(dp13434 +g2 +S'Piet\xc3\xa0' +p13435 +sg4 +S'Giovanni della Robbia' +p13436 +sg6 +S'glazed terracotta' +p13437 +sg8 +S'c. 1510/1520' +p13438 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d91.jpg' +p13439 +sg12 +g27 +sa(dp13440 +g12 +g27 +sg6 +S'marble' +p13441 +sg8 +S'c. 1455/1460' +p13442 +sg2 +S'The Virgin Annunciate' +p13443 +sg4 +S'Mino da Fiesole' +p13444 +sa(dp13445 +g2 +S'Lady Arabella Ward' +p13446 +sg4 +S'George Romney' +p13447 +sg6 +S'oil on canvas' +p13448 +sg8 +S'1783-1788' +p13449 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a0000534.jpg' +p13450 +sg12 +g27 +sa(dp13451 +g2 +S'Standing Angel' +p13452 +sg4 +S'Artist Information (' +p13453 +sg6 +S'Italian, 1467/1477 - after 1518' +p13454 +sg8 +S'(sculptor)' +p13455 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c3b.jpg' +p13456 +sg12 +g27 +sa(dp13457 +g2 +S'The Young Christ (?)' +p13458 +sg4 +S'Giovanni della Robbia' +p13459 +sg6 +S'terracotta' +p13460 +sg8 +S'c. 1500/1510' +p13461 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d7e.jpg' +p13462 +sg12 +g27 +sa(dp13463 +g12 +g27 +sg6 +S'Italian, c. 1431 - 1498' +p13464 +sg8 +S'(related artist)' +p13465 +sg2 +S'Bust of a Warrior' +p13466 +sg4 +S'Artist Information (' +p13467 +sa(dp13468 +g2 +S'A Gentleman' +p13469 +sg4 +S'Florentine 15th Century' +p13470 +sg6 +S'terracotta' +p13471 +sg8 +S'c. 1485/1490' +p13472 +sg10 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d932.jpg' +p13473 +sg12 +g27 +sa(dp13474 +g2 +S'Saint Sebastian' +p13475 +sg4 +S'Matteo Civitali' +p13476 +sg6 +S'painted terracotta' +p13477 +sg8 +S'c. 1492' +p13478 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d75.jpg' +p13479 +sg12 +S'Matteo Civitali was born in the city of Lucca, in Tuscany.\r\nProbably trained in the Florentine studio of \n According to legend, the pagan emperor Diocletian\r\nordered that Saint Sebastian be shot with arrows in persecution\r\nof his Christian faith. With his hands bound behind\r\nhim to a tree trunk, Sebastian stands in classical \n The story of Saint Sebastian was popular during the\r\nItalian Renaissance. The public venerated Sebastian as a\r\ndefender against the plague, and his story provided artists\r\nan opportunity to portray the male nude. The intimate\r\nscale of this figure, perhaps based on a larger version for\r\na church altar, suggests that it was made for devotion in\r\na private home.\n ' +p13480 +sa(dp13481 +g2 +S'Filippo Maria Visconti' +p13482 +sg4 +S'Artist Information (' +p13483 +sg6 +S'Italian, active 1477 - after 1514' +p13484 +sg8 +S'(related artist)' +p13485 +sg10 +S'http://www.nga.gov:80/thumb-l/a00063/a00063d4.jpg' +p13486 +sg12 +g27 +sa(dp13487 +g12 +g27 +sg6 +S'Italian, 1427 - 1479' +p13488 +sg8 +S'(artist after)' +p13489 +sg2 +S'Madonna and Child with Angels' +p13490 +sg4 +S'Artist Information (' +p13491 +sa(dp13492 +g2 +S'The Young Saint John the Baptist' +p13493 +sg4 +S'Antonio Rossellino' +p13494 +sg6 +S'marble' +p13495 +sg8 +S'c. 1470' +p13496 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a00005ee.jpg' +p13497 +sg12 +S"Like Desiderio, Antonio Rossellino probably came from Settignano. He was the most\naccomplished sculptor among five brothers, all trained in the important workshop led by the\neldest brother Bernardo. Widespread admiration for Antonio's skill may explain why his\nnickname \n John the Baptist, portrayed by Antonio in this graceful bust, was a patron saint of the city of\nFlorence and a favorite figure in Florentine painting and sculpture. The Florentine theologian,\nCardinal Giovanni Dominici, recommended around 1410 that parents display images of the\nChrist Child and the young John together in their homes, as religious and moral examples for\ntheir children. When it was first made, this bust may have served just such a purpose in a\nFlorentine home. But for at least the 180 years before 1940, it was in a Florentine religious\nbuilding, the oratory of San Francesco of the Vanchettoni, together with Desiderio da\nSettignano's bust of the Christ Child, now exhibited in the same gallery. The Desiderio boy is\nconsiderably younger, with plump cheeks and silky hair; Rossellino's John is close to\nadolescence. His richly waving curls and the fine curving lines of his lips suggest the beauty of a\nyoung classical god.\n " +p13498 +sa(dp13499 +g12 +g27 +sg6 +S'Italian, 1429 - 1484' +p13500 +sg8 +S'(artist after)' +p13501 +sg2 +S'Rinaldo della Luna' +p13502 +sg4 +S'Artist Information (' +p13503 +sa(dp13504 +g2 +S'David' +p13505 +sg4 +S'Master of the David and Saint John Statuettes' +p13506 +sg6 +S'terracotta' +p13507 +sg8 +S'late 15th - early 16th century' +p13508 +sg10 +S'http://www.nga.gov:80/thumb-l/a00055/a00055c1.jpg' +p13509 +sg12 +g27 +sa(dp13510 +g2 +S'The Rape of the Sabine Women' +p13511 +sg4 +S'French 18th Century' +p13512 +sg6 +S'overall: 56.5 x 108.9 cm (22 1/4 x 42 7/8 in.)' +p13513 +sg8 +S'\noil on paper on canvas' +p13514 +sg10 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005aab.jpg' +p13515 +sg12 +g27 +sa(dp13516 +g2 +S'Madonna Adoring the Child' +p13517 +sg4 +S'Italian 20th Century' +p13518 +sg6 +S'overall: 120.3 x 113 x 58.1 cm (47 3/8 x 44 1/2 x 22 7/8 in.)' +p13519 +sg8 +S'\nterracotta with traces of polychromy' +p13520 +sg10 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f1b.jpg' +p13521 +sg12 +g27 +sa(dp13522 +g12 +g27 +sg6 +S'Italian, c. 1429 - 1464' +p13523 +sg8 +S'(related artist)' +p13524 +sg2 +S'Saint John the Baptist' +p13525 +sg4 +S'Artist Information (' +p13526 +sa(dp13527 +g12 +g27 +sg6 +S', c. 1590/1600' +p13528 +sg8 +S'\n' +p13529 +sg2 +S'Giovanni Capponi' +p13530 +sg4 +S'Giovanni Battista Caccini' +p13531 +sa(dp13532 +g2 +S'A Knight of Santiago' +p13533 +sg4 +S'Francesco Segala' +p13534 +sg6 +S', c. 1570/1580' +p13535 +sg8 +S'\n' +p13536 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d68.jpg' +p13537 +sg12 +g27 +sa(dp13538 +g2 +S'Justice' +p13539 +sg4 +S'Barth\xc3\xa9lemy Prieur' +p13540 +sg6 +S'marble' +p13541 +sg8 +S'1610' +p13542 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c19.jpg' +p13543 +sg12 +S"Holding a sword and olive branch, this figure represents Justice. It was \n commissioned to decorate a monument in which the hearts of French king \n Henry IV and his queen, Marie de'Medici, were entombed at the Jesuit \n College of La Flèche.\n Though the project was never completed, a drawing for it indicates that \n this figure, placed on the right corner, would have gazed in the direction \n of the king and queen, whose statues were planned for the center. This is \n the only figure from the monument known today and may have been finished \n later by another artist. That would explain the differences between this \n work and others by Prieur, which tend, for example, to have more voluminous \n drapery than Justice's form-fitting doublet. Her idealized features, smooth \n surfaces, and dignified, still pose are all characteristic of the \n classicizing taste in French sculpture during the early 1600s.\n While the sword that the figure holds is a common attribute of Justice, \n the olive branch is more often associated with Peace. Their combination here \n may suggest that France, after decades of bloody religious wars between \n Protestant Hugenots and Catholics, wished to see peace as an aspect of \n justice.\n " +p13544 +sa(dp13545 +g2 +S'Louis XIV' +p13546 +sg4 +S'Artist Information (' +p13547 +sg6 +S'Italian, 1598 - 1680' +p13548 +sg8 +S'(artist after)' +p13549 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d70.jpg' +p13550 +sg12 +g27 +sa(dp13551 +g12 +g27 +sg6 +S'marble' +p13552 +sg8 +S'unknown date\n' +p13553 +sg2 +S"Philippe, Duc D'Orleans" +p13554 +sg4 +S'Jacques Prou II' +p13555 +sa(dp13556 +g2 +S'Neapolitan Fisherboy (P\xc3\xaacheur napolitain \xc3\xa0 la coquille)' +p13557 +sg4 +S'Jean-Baptiste Carpeaux' +p13558 +sg6 +S'marble' +p13559 +sg8 +S'1857-after 1861' +p13560 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002ae9.jpg' +p13561 +sg12 +S"Carpeaux received many important public commissions, but, like other \r\n sculptors of his day, increasingly made uncommissioned works on \r\n speculation. \n Carpeaux challenged the academic tradition, which was still dominated by \r\n the influence of ancient sculpture. He sought subjects in the streets and \r\n treated them with decidedly unclassical vigor, demonstrated here in the \r\n boy's vitality, detailed anatomy, and intricately balanced pose. Carpeaux \r\n claimed that he based the \n " +p13562 +sa(dp13563 +g2 +S'Girl with a Shell (Jeune fille \xc3\xa0 la coquille)' +p13564 +sg4 +S'Jean-Baptiste Carpeaux' +p13565 +sg6 +S'marble' +p13566 +sg8 +S'1863-1867' +p13567 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002aea.jpg' +p13568 +sg12 +g27 +sa(dp13569 +g2 +S"Lorenzo de' Medici" +p13570 +sg4 +S'Artist Information (' +p13571 +sg6 +S'(sculptor)' +p13572 +sg8 +S'\n' +p13573 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a00005e4.jpg' +p13574 +sg12 +S"Lorenzo de' Medici, head of the family that dominated Florence, survived a 1478 assassination plot that took the life of his younger brother \n This portrait expresses power as much as individual personality. Although the costume is that of an ordinary Florentine citizen, the forms of this portrait bust are monumental: massive, simple, and over-life-size. Lorenzo's overhanging brows and grimly set mouth suggest a man who has survived the worst attack his enemies could mount and warns them not to try again. A cleaning of the sculpture completed in 2006 removed a dull brown coating of dirt and overpaint, revealing its original naturalistic details: Lorenzo's cheeks and lips have rosy pink touches, his eyebrows are dark, and there are delicate traces of beard stubble painted around his mouth. The bust has thus regained the immediacy that must have greeted its Renaissance audience.\n " +p13575 +sa(dp13576 +g2 +S'Forest Scene' +p13577 +sg4 +S'Jacob van Ruisdael' +p13578 +sg6 +S'oil on canvas' +p13579 +sg8 +S'c. 1655' +p13580 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e8f.jpg' +p13581 +sg12 +S"The culmination of Dutch landscape painting occurs in the work of Jacob van Ruisdael. This great painter began his career in Haarlem but moved to Amsterdam around 1656. Throughout his long and productive professional life he portrayed many types of scenes, but his most characteristic paintings are those in which massive oak trees with craggy branches tower above the rugged countryside. Many of these paintings are inspired by Ruisdael\xe2\x80\x99s travels near the Dutch–German border, rather than the mostly flat Dutch landscape.\n Ruisdael had a vision of the grandeur and forces of nature. Figures in his paintings seem fragile, dwarfed by the elements of nature. In this scene a man and a woman walk along a path near some grazing sheep in the middle distance, but they are almost inconsequential in comparison to the broad waterfall, the rocks, and the huge fallen birch tree in the foreground.\n The mood in Ruisdael's paintings is somber, yet indicates the persistence and vigor of life. The clouds are heavy and gray, and the greens of the grass and foliage are dark. Trees do not grow easily for their twisted roots need to grasp onto rocky outcroppings for support and nourishment. Yet flowers bloom near breaks in the wood. The massive broken trees in the foreground are not just compositional devices, they are conscious reminders of the struggle of existence.\n " +p13582 +sa(dp13583 +g2 +S'Madonna and Child' +p13584 +sg4 +S'Florentine 15th Century' +p13585 +sg6 +S'painted and gilded terracotta with wood backing' +p13586 +sg8 +S'c. 1425' +p13587 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002af1.jpg' +p13588 +sg12 +S'This \n The combination of elegance and energy suggests\r\nan artist who was influenced by the Florentine masters\r\nLorenzo Ghiberti and \n ' +p13589 +sa(dp13590 +g2 +S'The Christ Child (?)' +p13591 +sg4 +S'Desiderio da Settignano' +p13592 +sg6 +S'marble' +p13593 +sg8 +S'c. 1460' +p13594 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a00005e8.jpg' +p13595 +sg12 +S"In contrast to the wide-eyed innocence of \n From sometime before 1756 until 1940, this bust was installed above a doorway next to the high altar in the Oratory of San Francesco of the Vanchettoni in Florence. Antonio Rossellino's \n " +p13596 +sa(dp13597 +g2 +S'The Peasant Dance' +p13598 +sg4 +S'Artist Information (' +p13599 +sg6 +S'(artist after)' +p13600 +sg8 +S'\n' +p13601 +sg10 +S'http://www.nga.gov:80/thumb-l/a00096/a0009648.jpg' +p13602 +sg12 +g27 +sa(dp13603 +g2 +S"Le Comte d'Artois as an enfant with Mlle. Clotide" +p13604 +sg4 +S'Artist Information (' +p13605 +sg6 +S'(artist after)' +p13606 +sg8 +S'\n' +p13607 +sg10 +S'http://www.nga.gov:80/thumb-l/a00096/a0009651.jpg' +p13608 +sg12 +g27 +sa(dp13609 +g2 +S'Duchesse de Nemours' +p13610 +sg4 +S'Artist Information (' +p13611 +sg6 +S'(artist after)' +p13612 +sg8 +S'\n' +p13613 +sg10 +S'http://www.nga.gov:80/thumb-l/a00096/a00096f8.jpg' +p13614 +sg12 +g27 +sa(dp13615 +g12 +g27 +sg6 +S'(artist after)' +p13616 +sg8 +S'\n' +p13617 +sg2 +S'La Bonne M\xc3\xa8re' +p13618 +sg4 +S'Artist Information (' +p13619 +sa(dp13620 +g2 +S'Mother of Pearl and Silver: The Andalusian' +p13621 +sg4 +S'James McNeill Whistler' +p13622 +sg6 +S'oil on canvas' +p13623 +sg8 +S'1888(?)-1900' +p13624 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d52.jpg' +p13625 +sg12 +S"Whistler claimed to excel \n Ethel Birnie Philip, daughter of a sculptor, married in 1895. The next year saw the death of her sister, who was Whistler's wife. This elegant depiction of light gleaming in the dark, though, represents neither a bride nor a mourner. Whistler firmly stated, "Art should be independent of clap-trap—should stand alone, and appeal to the artistic sense of eye or ear, without confounding this with emotions entirely foreign to it, as devotion, pity, love, patriotism and the like."\n In \n " +p13626 +sa(dp13627 +g2 +S'Symphony in White, No. 1: The White Girl' +p13628 +sg4 +S'James McNeill Whistler' +p13629 +sg6 +S'oil on canvas' +p13630 +sg8 +S'1862' +p13631 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d4b.jpg' +p13632 +sg12 +S"When Whistler submitted \n Whistler used variations of white pigment to create interesting spatial and formal relationships. By limiting his palette, minimizing tonal contrast, and sharply skewing the perspective, he flattened forms and emphasized their abstract patterns. This dramatic compositional approach reflects the influence of Japanese prints, which were becoming well known in Paris as international trade increased.\n Clearly, Whistler was more interested in creating an abstract design than in capturing an exact likeness of the model, his mistress Joanna Hiffernan. His radical espousal of a purely aesthetic orientation and the creation of "art for art's sake" became a virtual rallying cry of modernism.\n " +p13633 +sa(dp13634 +g2 +S"A Painter's Studio" +p13635 +sg4 +S'Louis-L\xc3\xa9opold Boilly' +p13636 +sg6 +S'oil on canvas' +p13637 +sg8 +S'c. 1800' +p13638 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d9d.jpg' +p13639 +sg12 +g27 +sa(dp13640 +g12 +g27 +sg6 +S'Italian, c. 1429 - 1464' +p13641 +sg8 +S'(related artist)' +p13642 +sg2 +S'Christ with Saint John the Baptist as Children' +p13643 +sg4 +S'Artist Information (' +p13644 +sa(dp13645 +g2 +S'The Dancing Couple' +p13646 +sg4 +S'Jan Steen' +p13647 +sg6 +S'oil on canvas' +p13648 +sg8 +S'1663' +p13649 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ea6.jpg' +p13650 +sg12 +S"The mood and subject matter in Steen's paintings range enormously, from intimate moments when a family says grace before a meal to festive celebrations of \n The Dancing Couple\n Despite the apparent frivolity of the scene, the painting has a more sobering message. Steen was a moralist who often used emblematic references in his paintings to express the transience of human life. The cut flowers and broken eggshells on the floor, and the young boy blowing bubbles on the right are symbolic. Steen seems to suggest that earthly pleasures are short–lived and we should contemplate more lasting values, symbolized here by the church tower in the background.\n " +p13651 +sa(dp13652 +g2 +S'The Bath of Venus' +p13653 +sg4 +S'Fran\xc3\xa7ois Boucher' +p13654 +sg6 +S'oil on canvas' +p13655 +sg8 +S'1751' +p13656 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d55.jpg' +p13657 +sg12 +S"In Enlightenment France the dedicated search to define truth engendered a re–evaluation of the natural. The belief that it was right to follow nature, and that the pursuit of pleasure was natural, influenced the prevailing conception of the nude. François Boucher, who became the first painter to Louis XV, fully explored his century's interest in the relationship between the rational and the sensual.\n In \n " +p13658 +sa(dp13659 +g2 +S'Portrait of a Man' +p13660 +sg4 +S'Artist Information (' +p13661 +sg6 +S'French, 1699 - 1779' +p13662 +sg8 +S'(related artist)' +p13663 +sg10 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005aaa.jpg' +p13664 +sg12 +g27 +sa(dp13665 +g2 +S'Fruit, Jug, and a Glass' +p13666 +sg4 +S'Jean Sim\xc3\xa9on Chardin' +p13667 +sg6 +S'oil on canvas' +p13668 +sg8 +S'c. 1726/1728' +p13669 +sg10 +S'http://www.nga.gov:80/thumb-l/a0004a/a0004add.jpg' +p13670 +sg12 +g27 +sa(dp13671 +g2 +S'Young Woman with a Muff' +p13672 +sg4 +S'French 18th Century' +p13673 +sg6 +S'overall: 118 x 95.3 cm (46 7/16 x 37 1/2 in.)\r\nframed: 149.9 x 127.6 cm (59 x 50 1/4 in.)' +p13674 +sg8 +S'\noil on canvas' +p13675 +sg10 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005aa5.jpg' +p13676 +sg12 +g27 +sa(dp13677 +g2 +S'Saint Jerome' +p13678 +sg4 +S'El Greco' +p13679 +sg6 +S', c. 1610/1614' +p13680 +sg8 +S'\n' +p13681 +sg10 +S'http://www.nga.gov:80/thumb-l/a00004/a0000494.jpg' +p13682 +sg12 +S"The Counter-Reformation renewed emphasis on penance and other sacraments attacked by Protestants. Here Saint Jerome, who translated the Bible into Latin\r\nin the late fourth century, has retreated to the desert. He holds the rock he will use to beat his chest in punishment for loving secular learning too much.\n This unfinished painting provides evidence of El Greco's working method. He began with a ground coat of dark reddish brown, still visible in many places. He outlined the figure with heavy dark contours, as in Jerome's lower left leg, then used thin, fluid strokes of lighter paint to define the body, as the right leg reveals. With a stiff brush and thick white paint he enlivened some parts of the anatomy, most noticeably the torso. And in completed areas such as the saint's face, he smoothed these jagged contours.\n " +p13683 +sa(dp13684 +g2 +S'The Healing of the Paralytic' +p13685 +sg4 +S'Netherlandish 16th Century' +p13686 +sg6 +S'overall: 107.8 x 76 cm (42 7/16 x 29 15/16 in.)\r\nframed: 136.5 x 109.8 cm (53 3/4 x 43 1/4 in.)' +p13687 +sg8 +S'\noil on panel' +p13688 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a00005a0.jpg' +p13689 +sg12 +g27 +sa(dp13690 +g2 +S'Still Life' +p13691 +sg4 +S'Willem Kalf' +p13692 +sg6 +S'oil on canvas' +p13693 +sg8 +S'c. 1660' +p13694 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e6b.jpg' +p13695 +sg12 +g27 +sa(dp13696 +g2 +S'Head of One of the Three Kings: Melchior, The Assyrian King' +p13697 +sg4 +S'Artist Information (' +p13698 +sg6 +S'(painter)' +p13699 +sg8 +S'\n' +p13700 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e38.jpg' +p13701 +sg12 +g27 +sa(dp13702 +g2 +S'Portrait of a Venetian Senator' +p13703 +sg4 +S'Jacopo Tintoretto' +p13704 +sg6 +S'oil on canvas' +p13705 +sg8 +S'c. 1570' +p13706 +sg10 +S'http://www.nga.gov:80/thumb-l/a00037/a00037f6.jpg' +p13707 +sg12 +g27 +sa(dp13708 +g2 +S'Saint Lucy' +p13709 +sg4 +S'Francisco de Zurbar\xc3\xa1n' +p13710 +sg6 +S'oil on canvas' +p13711 +sg8 +S'c. 1625/1630' +p13712 +sg10 +S'http://www.nga.gov:80/thumb-l/a00004/a00004b3.jpg' +p13713 +sg12 +S"Few images of saints show women as gorgeously attired as Francisco de Zurbarán's.\nHis \n Multiple versions of the legend of Saint Lucy, the daughter of an aristocratic family in\nfourth-century Syracuse, arose during the Counter-Reformation. One popular interpretation,\ninspired by her unusual attribute, maintained that Lucy, determined to dedicate her life to Christ,\nhad plucked out her eyes and sent them to a tenacious suitor after he insisted that their beauty\nallowed him no peace. Astounded by her devotion to her faith, the admirer converted to\nChristianity, and Lucy, the legend continues, later found her eyesight miraculously restored one\nday during prayer. It is possible that the young saint's connection with eyes originated in the\nLatin source for her name, \n The success of Zurbarán's many images of virgin martyrs derived not only from their\ninherently pleasing theme -- beautiful, splendidly dressed women -- but also from the artist's gifts\nas a colorist and his talent for combining the spiritual and material.\n " +p13714 +sa(dp13715 +g2 +S'Emilia di Spilimbergo' +p13716 +sg4 +S'Artist Information (' +p13717 +sg6 +S'Italian, c. 1490 - 1576' +p13718 +sg8 +S'(related artist)' +p13719 +sg10 +S'http://www.nga.gov:80/thumb-l/a00008/a0000895.jpg' +p13720 +sg12 +g27 +sa(dp13721 +g12 +g27 +sg2 +S'Embroideries' +p13722 +sg4 +S'American 20th Century' +p13723 +sa(dp13724 +g12 +g27 +sg2 +S'Embroidered Picture' +p13725 +sg4 +S'Evelyn Bailey' +p13726 +sa(dp13727 +g12 +g27 +sg2 +S'Feather Stitching' +p13728 +sg4 +S'Gordena Jackson' +p13729 +sa(dp13730 +g12 +g27 +sg2 +S'Table Cover' +p13731 +sg4 +S'Ruth M. Barnes' +p13732 +sa(dp13733 +g12 +g27 +sg2 +S'Sampler (Stitching)' +p13734 +sg4 +S'Ruth M. Barnes' +p13735 +sa(dp13736 +g12 +g27 +sg2 +S'Sampler (Stitching)' +p13737 +sg4 +S'Ruth M. Barnes' +p13738 +sa(dp13739 +g12 +g27 +sg2 +S'Crazy Quilt (Stitches)' +p13740 +sg4 +S'William Kieckhofel' +p13741 +sa(dp13742 +g12 +g27 +sg2 +S'Crazy Quilt' +p13743 +sg4 +S'William Kieckhofel' +p13744 +sa(dp13745 +g12 +g27 +sg2 +S'Crazy Quilt' +p13746 +sg4 +S'William Kieckhofel' +p13747 +sa(dp13748 +g12 +g27 +sg2 +S'Samples of Stitching' +p13749 +sg4 +S'Edith Towner' +p13750 +sa(dp13751 +g2 +S'Irene di Spilimbergo' +p13752 +sg4 +S'Artist Information (' +p13753 +sg6 +S'Italian, c. 1490 - 1576' +p13754 +sg8 +S'(related artist)' +p13755 +sg10 +S'http://www.nga.gov:80/thumb-l/a00008/a0000896.jpg' +p13756 +sg12 +g27 +sa(dp13757 +g12 +g27 +sg2 +S'Sampler' +p13758 +sg4 +S'Edith Towner' +p13759 +sa(dp13760 +g12 +g27 +sg2 +S'Sampler' +p13761 +sg4 +S'Ralph Morton' +p13762 +sa(dp13763 +g12 +g27 +sg2 +S'Sampler' +p13764 +sg4 +S'Ella Josephine Sterling' +p13765 +sa(dp13766 +g12 +g27 +sg10 +S'http://www.nga.gov:80/thumb-l/a00058/a0005894.jpg' +p13767 +sg2 +S'Sampler' +p13768 +sg4 +S'Alfred Walbeck' +p13769 +sa(dp13770 +g12 +g27 +sg10 +S'http://www.nga.gov:80/thumb-l/a00058/a0005898.jpg' +p13771 +sg2 +S'Sampler' +p13772 +sg4 +S'Alfred Walbeck' +p13773 +sa(dp13774 +g12 +g27 +sg10 +S'http://www.nga.gov:80/thumb-l/a00058/a00058cd.jpg' +p13775 +sg2 +S'Sampler' +p13776 +sg4 +S'Max Unger' +p13777 +sa(dp13778 +g12 +g27 +sg10 +S'http://www.nga.gov:80/thumb-l/a00058/a00058ce.jpg' +p13779 +sg2 +S'Sampler' +p13780 +sg4 +S'Adolph Opstad' +p13781 +sa(dp13782 +g12 +g27 +sg2 +S'Sampler' +p13783 +sg4 +S'Arelia Arbo' +p13784 +sa(dp13785 +g12 +g27 +sg10 +S'http://www.nga.gov:80/thumb-l/a00058/a00058cf.jpg' +p13786 +sg2 +S'Sampler' +p13787 +sg4 +S'Arelia Arbo' +p13788 +sa(dp13789 +g12 +g27 +sg2 +S'Tavern Sign' +p13790 +sg4 +S'Alfred Parys' +p13791 +sa(dp13792 +g2 +S'Venus and Adonis' +p13793 +sg4 +S'Titian' +p13794 +sg6 +S'oil on canvas' +p13795 +sg8 +S'c. 1560' +p13796 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f87.jpg' +p13797 +sg12 +S"Titian painted the first version of \n The story of Venus and Adonis derives from Ovid's \n It is odd to see Venus depicted as a vulnerable figure and from a rear\n view. Titian wrote that by posing her from behind, he hoped to provide\n variety among the many nudes in King Philip's collection. By painting Venus\n from the back, Titian also allowed viewers to complete her beauty according\n to their own ideal of perfection.\n " +p13798 +sa(dp13799 +g12 +g27 +sg10 +S'http://www.nga.gov:80/thumb-l/a00058/a00058d0.jpg' +p13800 +sg2 +S'Sampler' +p13801 +sg4 +S'Henry Meyers' +p13802 +sa(dp13803 +g12 +g27 +sg10 +S'http://www.nga.gov:80/thumb-l/a00058/a000589e.jpg' +p13804 +sg2 +S'Sampler' +p13805 +sg4 +S'Elizabeth Valentine' +p13806 +sa(dp13807 +g12 +g27 +sg10 +S'http://www.nga.gov:80/thumb-l/a00058/a0005896.jpg' +p13808 +sg2 +S'Sampler' +p13809 +sg4 +S'Charlotte Angus' +p13810 +sa(dp13811 +g12 +g27 +sg10 +S'http://www.nga.gov:80/thumb-l/a00058/a00058d1.jpg' +p13812 +sg2 +S'Sampler' +p13813 +sg4 +S'Eva Wilson' +p13814 +sa(dp13815 +g12 +g27 +sg2 +S'Sampler' +p13816 +sg4 +S'Charles Roadman' +p13817 +sa(dp13818 +g12 +g27 +sg10 +S'http://www.nga.gov:80/thumb-l/a00058/a000589b.jpg' +p13819 +sg2 +S'Sampler' +p13820 +sg4 +S'Eileen Knox' +p13821 +sa(dp13822 +g12 +S"Although many articles were woven at home throughout the eighteenth and nineteenth\n centuries, professional weavers and itinerant journeymen relieved American women\n of many of these chores. Housewives could think beyond providing the sternest\n necessities to adding touches of grace and luxury to their homes. For this, they\n turned to needlework. Needlework was a practical necessity from colonial times\n onward, for clothes and other articles had to be made, marked, and mended.\n Yet, for American women, needlework was also a luxury that permitted them\n to embellish their homes and to express their love of beauty. Moreover, needlework\n provided an opportunity to preserve the decorative traditions brought from their native\n lands as well as a means for displaying their sewing skills. Proficiency in needlework\n was commonly demonstrated in samplers made by young girls when, in the course\n of their education at home and at school, they had mastered the art of embroidery.\n The earliest samplers were actually collections of different stitches and served as\n needlework guides. By the mid-eighteenth century, samplers had become showpieces.\n They generally included a central scene, several types of alphabets, quotations from\n the Bible or pious verses, the maker's name, the date, and her age. Here a young\n seamstress had used silk embroidery on linen to depict a house, possibly her own,\n and outbuilding. A variety of stitches are demonstrated in the pictorial forms, and\n still others compose the rows of flowers and plants that separate the alphabets,\n numbers, and biographical information. Samplers like this were proudly displayed by\n the girl's parents and, after she married, in her own home.\n " +p13823 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a00002a8.jpg' +p13824 +sg2 +S'Sampler' +p13825 +sg4 +S'Sarah F. Williams' +p13826 +sa(dp13827 +g12 +g27 +sg2 +S'Sampler' +p13828 +sg4 +S'Esther Martindale' +p13829 +sa(dp13830 +g12 +g27 +sg2 +S'Sampler' +p13831 +sg4 +S'Esther Martindale' +p13832 +sa(dp13833 +g12 +g27 +sg2 +S'Sampler' +p13834 +sg4 +S'Clyde L. Cheney' +p13835 +sa(dp13836 +g2 +S'Venice: The Dogana and San Giorgio Maggiore' +p13837 +sg4 +S'Joseph Mallord William Turner' +p13838 +sg6 +S'oil on canvas' +p13839 +sg8 +S'1834' +p13840 +sg10 +S'http://www.nga.gov:80/thumb-l/a00007/a0000740.jpg' +p13841 +sg12 +S'At the “especial suggestion” of a British textile manufacturer, Turner \r\n devised this Venetian cityscape as a symbolic salute to commerce. Gondolas \r\n carry cargoes of fine fabrics and exotic spices. On the right is the \r\n Dogana, or Customs House, topped by a statue of Fortune, which Turner \r\n greatly enlarged in size. Moreover, the Church of San Giorgio Maggiore has \r\n been pushed very far back in space, making the Grand Canal seem much wider \r\n than it really is.\n These theatrical exaggerations and the precise, linear drafting of the \r\n architecture owe much to \r\n \n ' +p13842 +sa(dp13843 +g12 +g27 +sg2 +S'Embroidery Sampler' +p13844 +sg4 +S'Paul Smith' +p13845 +sa(dp13846 +g12 +g27 +sg10 +S'http://www.nga.gov:80/thumb-l/a00058/a0005890.jpg' +p13847 +sg2 +S'Embroidery Sampler' +p13848 +sg4 +S'Elzy J. Bird' +p13849 +sa(dp13850 +g12 +g27 +sg10 +S'http://www.nga.gov:80/thumb-l/a00058/a000589c.jpg' +p13851 +sg2 +S'Sampler' +p13852 +sg4 +S'William Parkinson' +p13853 +sa(dp13854 +g12 +g27 +sg2 +S'Plaid Homespun' +p13855 +sg4 +S'Clyde L. Cheney' +p13856 +sa(dp13857 +g12 +g27 +sg2 +S'Sampler' +p13858 +sg4 +S'Frank Maurer' +p13859 +sa(dp13860 +g12 +g27 +sg2 +S'Sampler' +p13861 +sg4 +S'LeRoy McCarrel' +p13862 +sa(dp13863 +g12 +g27 +sg10 +S'http://www.nga.gov:80/thumb-l/a00058/a00058d2.jpg' +p13864 +sg2 +S'Sampler' +p13865 +sg4 +S'Edna C. Rex' +p13866 +sa(dp13867 +g12 +g27 +sg2 +S'Needlepoint Dog' +p13868 +sg4 +S'Evelyn Bailey' +p13869 +sa(dp13870 +g12 +g27 +sg10 +S'http://www.nga.gov:80/thumb-l/a00055/a0005524.jpg' +p13871 +sg2 +S'Adam & Eve Embroidered Picture' +p13872 +sg4 +S'Martha Elliot' +p13873 +sa(dp13874 +g12 +g27 +sg2 +S'Firescreen' +p13875 +sg4 +S'Vincent P. Rosel' +p13876 +sa(dp13877 +g2 +S'Keelmen Heaving in Coals by Moonlight' +p13878 +sg4 +S'Joseph Mallord William Turner' +p13879 +sg6 +S'oil on canvas' +p13880 +sg8 +S'1835' +p13881 +sg10 +S'http://www.nga.gov:80/thumb-l/a00004/a00004e1.jpg' +p13882 +sg12 +S"Here Turner brings the great force of his romantic genius to a common scene of working–class men at hard labor. Although the subject of the painting is rooted in the grim realities of the industrial revolution, in Turner's hands it transcends the specifics of time and place and becomes an image of startling visual poetry.\n An almost palpable flood of moonlight breaks through the clouds in a great vault that spans the banks of the channel and illuminates the sky and the water. The heavy impasto of the moon's reflection on the unbroken expanse of water rivals the radiance of the sky, where gradations of light create a powerful, swirling vortex.\n To the right, the keelmen and the dark, flat–bottomed keels that carried the coal from Northumberland and Durham down the River Tyne are silhouetted against the orange and white flames from the torches, as the coal is transferred to the sailing ships. To the left, square riggers wait to sail out on the morning tide. Behind these ships Turner suggested the distant cluster of factories and ships with touches of gray paint and a few thin lines. Through the shadowy atmosphere ships' riggings, keels and keelmen, fiery torches, and reflections on the water merge into a richly textured surface pattern.\n " +p13883 +sa(dp13884 +g12 +g27 +sg2 +S'Bookmark' +p13885 +sg4 +S'Manuel G. Runyan' +p13886 +sa(dp13887 +g12 +g27 +sg2 +S'Religious Embroidery' +p13888 +sg4 +S'Stanley Mazur' +p13889 +sa(dp13890 +g12 +g27 +sg2 +S'Embroidered Picture' +p13891 +sg4 +S'James Vail' +p13892 +sa(dp13893 +g12 +g27 +sg2 +S'Woolen Parrot' +p13894 +sg4 +S'Wellington Blewett' +p13895 +sa(dp13896 +g12 +g27 +sg2 +S'Religious Embroidery' +p13897 +sg4 +S'Stanley Mazur' +p13898 +sa(dp13899 +g12 +g27 +sg2 +S'Coat of Arms' +p13900 +sg4 +S'William Roberts' +p13901 +sa(dp13902 +g12 +g27 +sg2 +S'Embroidery Needlepoint' +p13903 +sg4 +S'Eugene Croe' +p13904 +sa(dp13905 +g12 +g27 +sg2 +S'Embroidery Needlepoint' +p13906 +sg4 +S'Eugene Croe' +p13907 +sa(dp13908 +g12 +g27 +sg2 +S'Adam & Eve Embroidered Picture' +p13909 +sg4 +S'Artist Information (' +p13910 +sa(dp13911 +g12 +g27 +sg2 +S'Needlepoint Picture' +p13912 +sg4 +S'Jules Lefevere' +p13913 +sa(dp13914 +g2 +S'The Junction of the Thames and the Medway' +p13915 +sg4 +S'Joseph Mallord William Turner' +p13916 +sg6 +S'oil on canvas' +p13917 +sg8 +S'1807' +p13918 +sg10 +S'http://www.nga.gov:80/thumb-l/a00004/a00004e2.jpg' +p13919 +sg12 +S'Turner, who earned an early reputation for producing accurate \r\n topographical views, opened his own private sales gallery, where he \r\n exhibited this turbulent seascape. Based on notes in the artist’s \r\n sketchbooks, the scene is the wide mouth of the Thames joining the North \r\n Sea, where the smaller River Medway further churns the waves. To the south, \r\n the town on the far shore is the seaport of Sheerness.\n To heighten the storm’s impact, Turner artfully manipulated the lighting \r\n in this composition. The sails at the right, for instance, are brilliantly \r\n silhouetted against the dark clouds. In actuality, however, the sun is \r\n obscured high in the sky behind the thunderheads, making it impossible for \r\n sunbeams to strike those ships from the side.\n ' +p13920 +sa(dp13921 +g12 +g27 +sg2 +S'Needlepoint Picture' +p13922 +sg4 +S'Jules Lefevere' +p13923 +sa(dp13924 +g12 +g27 +sg2 +S'Hand Needlework' +p13925 +sg4 +S'Frank J. Mace' +p13926 +sa(dp13927 +g12 +g27 +sg2 +S'Friendship Pillow' +p13928 +sg4 +S'Max Fernekes' +p13929 +sa(dp13930 +g12 +g27 +sg2 +S'Coverlet' +p13931 +sg4 +S'Artist Information (' +p13932 +sa(dp13933 +g12 +g27 +sg2 +S'Lace Hardanger' +p13934 +sg4 +S'American 20th Century' +p13935 +sa(dp13936 +g12 +g27 +sg2 +S'Floral Motifs' +p13937 +sg4 +S'American 20th Century' +p13938 +sa(dp13939 +g12 +g27 +sg2 +S'Pillow' +p13940 +sg4 +S'Natalie Simon' +p13941 +sa(dp13942 +g12 +g27 +sg2 +S'Bookmark' +p13943 +sg4 +S'Ellen Duncan' +p13944 +sa(dp13945 +g12 +g27 +sg2 +S'Watch Holder' +p13946 +sg4 +S'Gordena Jackson' +p13947 +sa(dp13948 +g12 +g27 +sg2 +S'Embroidery on Pillow' +p13949 +sg4 +S'Florence Huston' +p13950 +sa(dp13951 +g2 +S'The Virgin as Intercessor' +p13952 +sg4 +S'Sir Anthony van Dyck' +p13953 +sg6 +S'oil on canvas' +p13954 +sg8 +S'1628/1629' +p13955 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e1e.jpg' +p13956 +sg12 +S'The Virgin as Intercessor\n ' +p13957 +sa(dp13958 +g12 +g27 +sg2 +S'Handkerchief Case' +p13959 +sg4 +S'Gordena Jackson' +p13960 +sa(dp13961 +g12 +g27 +sg2 +S'Embroidery' +p13962 +sg4 +S'Evelyn Bailey' +p13963 +sa(dp13964 +g12 +g27 +sg2 +S'Corner of Needlepoint Cushion' +p13965 +sg4 +S'Natalie Simon' +p13966 +sa(dp13967 +g12 +g27 +sg2 +S'Handkerchief' +p13968 +sg4 +S'Gordena Jackson' +p13969 +sa(dp13970 +g12 +g27 +sg2 +S'Embroidery' +p13971 +sg4 +S'Ann Gene Buckley' +p13972 +sa(dp13973 +g12 +g27 +sg2 +S'Applique Quilt (Detail)' +p13974 +sg4 +S'Ruth Buker' +p13975 +sa(dp13976 +g12 +g27 +sg2 +S'Coverlet' +p13977 +sg4 +S'Cornelius Christoffels' +p13978 +sa(dp13979 +g12 +g27 +sg2 +S'Candlewick Bedspread' +p13980 +sg4 +S'Artist Information (' +p13981 +sa(dp13982 +g12 +g27 +sg2 +S'Needlepoint Tapestry' +p13983 +sg4 +S'Cornelius Christoffels' +p13984 +sa(dp13985 +g12 +g27 +sg2 +S'Woven Bedspread' +p13986 +sg4 +S'Gladys C. Parker' +p13987 +sa(dp13988 +g2 +S'Giovanni Vincenzo Imperiale' +p13989 +sg4 +S'Sir Anthony van Dyck' +p13990 +sg6 +S'oil on canvas' +p13991 +sg8 +S'1626' +p13992 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002af0.jpg' +p13993 +sg12 +g27 +sa(dp13994 +g12 +g27 +sg2 +S'Embroidery for Dress' +p13995 +sg4 +S'Gladys C. Parker' +p13996 +sa(dp13997 +g12 +g27 +sg2 +S'Collar' +p13998 +sg4 +S'Marie Famularo' +p13999 +sa(dp14000 +g12 +g27 +sg2 +S'Patchwork Quilt' +p14001 +sg4 +S'Margaret Linsley' +p14002 +sa(dp14003 +g12 +g27 +sg2 +S'Eyelet Embroidery' +p14004 +sg4 +S'Syrena Swanson' +p14005 +sa(dp14006 +g12 +g27 +sg2 +S'Needlepoint Tapestry' +p14007 +sg4 +S'Cornelius Christoffels' +p14008 +sa(dp14009 +g12 +g27 +sg2 +S'Table Scarf' +p14010 +sg4 +S'Ruth M. Barnes' +p14011 +sa(dp14012 +g12 +g27 +sg2 +S'Table Scarf' +p14013 +sg4 +S'Ruth M. Barnes' +p14014 +sa(dp14015 +g12 +g27 +sg2 +S'Eyelet Embroidery' +p14016 +sg4 +S'Edith Towner' +p14017 +sa(dp14018 +g12 +g27 +sg2 +S'Quilting on Silk (Detail)' +p14019 +sg4 +S'Edward Jewett' +p14020 +sa(dp14021 +g12 +g27 +sg2 +S'Wedding Dress Motif (Insert)' +p14022 +sg4 +S'Ruth Buker' +p14023 +sa(dp14024 +g2 +S'The Prefect Raffaele Raggi' +p14025 +sg4 +S'Sir Anthony van Dyck' +p14026 +sg6 +S'oil on canvas' +p14027 +sg8 +S'c. 1625' +p14028 +sg10 +S'http://www.nga.gov:80/thumb-l/a00037/a00037b4.jpg' +p14029 +sg12 +S'The Prefect Raffaele Raggi\n ' +p14030 +sa(dp14031 +g12 +g27 +sg2 +S'Fireplace Screen' +p14032 +sg4 +S'Hazel Sheckler' +p14033 +sa(dp14034 +g12 +g27 +sg2 +S'Bed Hanging (Detail)' +p14035 +sg4 +S'Martha Elliot' +p14036 +sa(dp14037 +g12 +g27 +sg2 +S'Linen Cuffs' +p14038 +sg4 +S'Isabella Ruth Doerfler' +p14039 +sa(dp14040 +g12 +g27 +sg2 +S'Bed Valance (Detail)' +p14041 +sg4 +S'Marion Gaylord' +p14042 +sa(dp14043 +g12 +g27 +sg2 +S'Embroidery' +p14044 +sg4 +S'Isabella Ruth Doerfler' +p14045 +sa(dp14046 +g12 +g27 +sg2 +S'Embroidered Purse' +p14047 +sg4 +S'Isabella Ruth Doerfler' +p14048 +sa(dp14049 +g12 +g27 +sg2 +S'White Quilted Coverlet' +p14050 +sg4 +S'Edward L. Loper' +p14051 +sa(dp14052 +g12 +g27 +sg2 +S'Coverlet' +p14053 +sg4 +S'Edward L. Loper' +p14054 +sa(dp14055 +g12 +g27 +sg2 +S'Coverlet' +p14056 +sg4 +S'Regina Henderer' +p14057 +sa(dp14058 +g12 +g27 +sg2 +S'Chair Cover' +p14059 +sg4 +S'Mabel Ritter' +p14060 +sa(dp14061 +g2 +S'Madonna and Child' +p14062 +sg4 +S'Artist Information (' +p14063 +sg6 +S'Italian, 1418 - probably 1481' +p14064 +sg8 +S'(related artist)' +p14065 +sg10 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d42.jpg' +p14066 +sg12 +g27 +sa(dp14067 +g2 +S'A Genoese Noblewoman and Her Son' +p14068 +sg4 +S'Sir Anthony van Dyck' +p14069 +sg6 +S'oil on canvas' +p14070 +sg8 +S'c. 1626' +p14071 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e2d.jpg' +p14072 +sg12 +S'A Genoese Noblewoman and Her Son\n ' +p14073 +sa(dp14074 +g12 +g27 +sg2 +S'Chair Seat' +p14075 +sg4 +S'Mabel Ritter' +p14076 +sa(dp14077 +g12 +g27 +sg2 +S'Bookmark (Valentine)' +p14078 +sg4 +S'Manuel G. Runyan' +p14079 +sa(dp14080 +g12 +g27 +sg2 +S'Silk Petticoat (Fragment)' +p14081 +sg4 +S'Manuel G. Runyan' +p14082 +sa(dp14083 +g12 +g27 +sg2 +S'Bookmark' +p14084 +sg4 +S'Fred Hassebrock' +p14085 +sa(dp14086 +g12 +g27 +sg2 +S'Detail of Quilt - Tulip Pattern' +p14087 +sg4 +S'Fred Hassebrock' +p14088 +sa(dp14089 +g12 +g27 +sg2 +S'Chenille Embroidery' +p14090 +sg4 +S'O.A. Kirby' +p14091 +sa(dp14092 +g12 +g27 +sg2 +S'Gros Point Needlework - Flowers' +p14093 +sg4 +S'Artist Information (' +p14094 +sa(dp14095 +g12 +g27 +sg2 +S'Embroidery Detail' +p14096 +sg4 +S'Emily Gierman' +p14097 +sa(dp14098 +g12 +g27 +sg10 +S'http://www.nga.gov:80/thumb-l/a00058/a000589d.jpg' +p14099 +sg2 +S'Sampler' +p14100 +sg4 +S'Michael Rekucki' +p14101 +sa(dp14102 +g12 +g27 +sg2 +S'Bundle Carrier' +p14103 +sg4 +S'Edward Bashaw' +p14104 +sa(dp14105 +g2 +S'Marchesa Elena Grimaldi Cattaneo' +p14106 +sg4 +S'Sir Anthony van Dyck' +p14107 +sg6 +S'oil on canvas' +p14108 +sg8 +S'1623' +p14109 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e2e.jpg' +p14110 +sg12 +S"Anthony van Dyck's portraits of the Genoese nobility are generally recognized as one of the supreme achievements of Western portraiture and as the high point of the artist's career. Of these paintings, his portrayal of Elena Grimaldi is the most brilliant. A marchesa both by birth and by marriage, the elegant Italian noblewoman is depicted in a stately setting expressive of her social status; she steps out of a Corinthian–columned portico onto a balustraded terrace. Behind her extends a luxuriant estate beneath a dramatically cloud–filled sky.\n The painting hangs in an arrangement at the National Gallery similar to its presumed original placement in the Cattaneo palace: flanked by Van Dyck's sensitive portraits of the marchesa's two children, \n In an oil sketch for this portrait (Smithsonian Institution), the marchesa wears a red flower at her right cheek. A careful study of the large, completed painting in the National Gallery reveals that the artist revised the final composition, ultimately replacing the flower with the parasol held by a black servant. This brilliant scarlet ellipse sets off her fair complexion, and the parasol's radiating spokes converge on her head.\n " +p14111 +sa(dp14112 +g12 +g27 +sg2 +S'Handwoven Linen' +p14113 +sg4 +S'Mary C. Davidson' +p14114 +sa(dp14115 +g12 +g27 +sg2 +S'Sampler' +p14116 +sg4 +S'Joseph L. Boyd' +p14117 +sa(dp14118 +g12 +g27 +sg2 +S'Lace Wedding Veil (Section of)' +p14119 +sg4 +S'Joseph L. Boyd' +p14120 +sa(dp14121 +g12 +g27 +sg2 +S'Piano Cover' +p14122 +sg4 +S'Carl Buergerniss' +p14123 +sa(dp14124 +g12 +g27 +sg2 +S'Coverlet' +p14125 +sg4 +S'Mildred E. Bent' +p14126 +sa(dp14127 +g12 +g27 +sg2 +S'Petticoat (Detail)' +p14128 +sg4 +S'Mildred E. Bent' +p14129 +sa(dp14130 +g12 +g27 +sg2 +S'Love Tokens' +p14131 +sg4 +S'Charles Bowman' +p14132 +sa(dp14133 +g12 +g27 +sg2 +S'Dress Material' +p14134 +sg4 +S'Douglas Campbell' +p14135 +sa(dp14136 +g12 +g27 +sg2 +S'Embroidery' +p14137 +sg4 +S'Elizabeth Moutal' +p14138 +sa(dp14139 +g12 +g27 +sg2 +S'Bed Hanging' +p14140 +sg4 +S'Phyllis Dorr' +p14141 +sa(dp14142 +g2 +S'Filippo Cattaneo' +p14143 +sg4 +S'Sir Anthony van Dyck' +p14144 +sg6 +S'oil on canvas' +p14145 +sg8 +S'1623' +p14146 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e2f.jpg' +p14147 +sg12 +S'Filippo Cattaneo\n ' +p14148 +sa(dp14149 +g12 +g27 +sg2 +S'Valance (section)' +p14150 +sg4 +S'Helen E. Gilman' +p14151 +sa(dp14152 +g12 +g27 +sg10 +S'http://www.nga.gov:80/thumb-l/a00055/a0005517.jpg' +p14153 +sg2 +S'Petticoat Border' +p14154 +sg4 +S'Suzanne Chapman' +p14155 +sa(dp14156 +g12 +g27 +sg2 +S'Crewel Embroidered Chair Seat' +p14157 +sg4 +S'Phyllis Dorr' +p14158 +sa(dp14159 +g12 +g27 +sg2 +S'Piece of Crewel Embroidery' +p14160 +sg4 +S'Phyllis Dorr' +p14161 +sa(dp14162 +g12 +g27 +sg2 +S'Purse' +p14163 +sg4 +S'Phyllis Dorr' +p14164 +sa(dp14165 +g12 +g27 +sg2 +S'Blanket (Detail)' +p14166 +sg4 +S'Alfred Denghausen' +p14167 +sa(dp14168 +g12 +g27 +sg2 +S'Crewel Embroidery' +p14169 +sg4 +S'Helen E. Gilman' +p14170 +sa(dp14171 +g12 +g27 +sg2 +S'Crewel Embroidered Panel' +p14172 +sg4 +S'Phyllis Dorr' +p14173 +sa(dp14174 +g12 +g27 +sg2 +S"Child's Shoe" +p14175 +sg4 +S'Frances Cohen' +p14176 +sa(dp14177 +g12 +g27 +sg2 +S'Section of Bed Curtain' +p14178 +sg4 +S'Helen E. Gilman' +p14179 +sa(dp14180 +g2 +S'Maddalena Cattaneo' +p14181 +sg4 +S'Sir Anthony van Dyck' +p14182 +sg6 +S'oil on canvas' +p14183 +sg8 +S'1623' +p14184 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e30.jpg' +p14185 +sg12 +S'Maddalena Cattaneo\n ' +p14186 +sa(dp14187 +g12 +g27 +sg2 +S'Embroidery' +p14188 +sg4 +S'Eugene Croe' +p14189 +sa(dp14190 +g12 +g27 +sg2 +S'Coverlet' +p14191 +sg4 +S'William Kerby' +p14192 +sa(dp14193 +g12 +g27 +sg2 +S'Embroidered Picture' +p14194 +sg4 +S'Rex F. Bush' +p14195 +sa(dp14196 +g12 +g27 +sg2 +S'Cross-Stitch Antimacassar' +p14197 +sg4 +S'Elmer Weise' +p14198 +sa(dp14199 +g12 +g27 +sg2 +S'Piece of Cross-Stitch' +p14200 +sg4 +S'George Beyer' +p14201 +sa(dp14202 +g12 +g27 +sg2 +S'Quilt' +p14203 +sg4 +S'Frank Gutting' +p14204 +sa(dp14205 +g12 +g27 +sg2 +S'Embroidered Leather' +p14206 +sg4 +S'Donald Williams' +p14207 +sa(dp14208 +g12 +g27 +sg2 +S'Needlepoint Bell Pull' +p14209 +sg4 +S'Edmond Lorts' +p14210 +sa(dp14211 +g12 +g27 +sg2 +S'English Embroidery' +p14212 +sg4 +S'Carl Buergerniss' +p14213 +sa(dp14214 +g12 +g27 +sg2 +S'Embroidered Collar' +p14215 +sg4 +S'Marie Famularo' +p14216 +sa(dp14217 +g2 +S"Catherine Howard, Lady d'Aubigny" +p14218 +sg4 +S'Sir Anthony van Dyck' +p14219 +sg6 +S'oil on canvas' +p14220 +sg8 +S'c. 1638' +p14221 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e4d.jpg' +p14222 +sg12 +g27 +sa(dp14223 +g12 +g27 +sg2 +S'Embroidered Linen Collar' +p14224 +sg4 +S'Marie Famularo' +p14225 +sa(dp14226 +g12 +g27 +sg2 +S'Embroidery Piece' +p14227 +sg4 +S'Raymond Manupelli' +p14228 +sa(dp14229 +g12 +g27 +sg2 +S'Embroidered Linen Collar' +p14230 +sg4 +S'Edith Miller' +p14231 +sa(dp14232 +g12 +g27 +sg2 +S'Embroidered Linen Collar' +p14233 +sg4 +S'Edith Miller' +p14234 +sa(dp14235 +g12 +g27 +sg2 +S'Embroidered Linen Collar' +p14236 +sg4 +S'Edith Miller' +p14237 +sa(dp14238 +g12 +g27 +sg2 +S'Embroidered Cuff' +p14239 +sg4 +S'Erwin Schwabe' +p14240 +sa(dp14241 +g12 +g27 +sg2 +S'Needlepoint and Beadwork Square' +p14242 +sg4 +S'Erwin Schwabe' +p14243 +sa(dp14244 +g12 +g27 +sg2 +S'Collar' +p14245 +sg4 +S'Marie Famularo' +p14246 +sa(dp14247 +g12 +g27 +sg2 +S'Collar' +p14248 +sg4 +S'Marie Famularo' +p14249 +sa(dp14250 +g12 +g27 +sg2 +S'Embroidered Edging' +p14251 +sg4 +S'Marie Famularo' +p14252 +sa(dp14253 +g2 +S'Portrait of a Young Man' +p14254 +sg4 +S'Venetian 16th Century' +p14255 +sg6 +S'overall (maximum height and width): 28.1 x 23.3 cm (11 1/16 x 9 3/16 in.)\r\noverall (minimum height and width): 27.9 x 23 cm (11 x 9 1/16 in.)' +p14256 +sg8 +S'\noil on panel' +p14257 +sg10 +S'http://www.nga.gov:80/thumb-l/a00007/a00007fa.jpg' +p14258 +sg12 +g27 +sa(dp14259 +g12 +g27 +sg2 +S'Homespun Quilt' +p14260 +sg4 +S'Julie C. Brush' +p14261 +sa(dp14262 +g12 +g27 +sg2 +S'Table Scarf' +p14263 +sg4 +S'Erwin Schwabe' +p14264 +sa(dp14265 +g12 +g27 +sg2 +S'Shawl Strap' +p14266 +sg4 +S'Grace Halpin' +p14267 +sa(dp14268 +g12 +g27 +sg2 +S'Embroidered Collar' +p14269 +sg4 +S'Marie Famularo' +p14270 +sa(dp14271 +g12 +g27 +sg2 +S'Embroidered Lace Collar' +p14272 +sg4 +S'Frank Nelson' +p14273 +sa(dp14274 +g12 +g27 +sg2 +S'Petipoint Bag' +p14275 +sg4 +S'Herbert Marsh' +p14276 +sa(dp14277 +g12 +g27 +sg2 +S'Embroidered Undersleeve' +p14278 +sg4 +S'Douglas Cox' +p14279 +sa(dp14280 +g12 +g27 +sg2 +S'Embroidered Linen Collar' +p14281 +sg4 +S'Grace Halpin' +p14282 +sa(dp14283 +g12 +g27 +sg2 +S'Beadwork Book Marker' +p14284 +sg4 +S'Edith Miller' +p14285 +sa(dp14286 +g12 +g27 +sg2 +S'Pillow Sampler' +p14287 +sg4 +S'Edith Magnette' +p14288 +sa(dp14289 +g2 +S'Woman Holding a Balance' +p14290 +sg4 +S'Johannes Vermeer' +p14291 +sg6 +S'oil on canvas' +p14292 +sg8 +S'c. 1664' +p14293 +sg10 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e1f.jpg' +p14294 +sg12 +S'A woman dressed in a blue jacket with fur trim stands alone before a table in a corner of a room. She holds a balance in her right hand and with lowered eyes waits for it to come to rest. Behind her, on the back wall of the room, is a large painting of \n Woman Holding a Balance\n ' +p14295 +sa(dp14296 +g12 +g27 +sg2 +S'Embroidered Lace Collar' +p14297 +sg4 +S"Thomas O'Connor" +p14298 +sa(dp14299 +g12 +g27 +sg2 +S'Cotton Vestie' +p14300 +sg4 +S'Herbert Marsh' +p14301 +sa(dp14302 +g12 +g27 +sg2 +S'Dress Trimming' +p14303 +sg4 +S'Herbert Marsh' +p14304 +sa(dp14305 +g12 +g27 +sg2 +S'Embroidered Yoke' +p14306 +sg4 +S'Herbert Marsh' +p14307 +sa(dp14308 +g12 +g27 +sg2 +S'Embroidered Linen Collar' +p14309 +sg4 +S'Edith Miller' +p14310 +sa(dp14311 +g12 +g27 +sg2 +S'Victorian Shelf Drapery' +p14312 +sg4 +S'Vera Van Voris' +p14313 +sa(dp14314 +g12 +g27 +sg2 +S'Embroidered Cuff' +p14315 +sg4 +S'Marie Famularo' +p14316 +sa(dp14317 +g12 +g27 +sg2 +S'Beaded Lamp Mat' +p14318 +sg4 +S'Raymond Manupelli' +p14319 +sa(dp14320 +g12 +g27 +sg2 +S'Lace Collar' +p14321 +sg4 +S'Frank Nelson' +p14322 +sa(dp14323 +g12 +g27 +sg2 +S'Pin Cushion Doily' +p14324 +sg4 +S'Frank Nelson' +p14325 +sa(dp14326 +g2 +S'Girl with a Flute' +p14327 +sg4 +S'Johannes Vermeer' +p14328 +sg6 +S', probably 1665/1670' +p14329 +sg8 +S'\n' +p14330 +sg10 +S'http://www.nga.gov:80/thumb-l/a00007/a00007d7.jpg' +p14331 +sg12 +g27 +sa(dp14332 +g12 +g27 +sg2 +S'Sampler' +p14333 +sg4 +S'Raymond Manupelli' +p14334 +sa(dp14335 +g12 +g27 +sg2 +S'Bible Book Marker' +p14336 +sg4 +S'Carl Buergerniss' +p14337 +sa(dp14338 +g12 +g27 +sg2 +S'Handmade Embroidery' +p14339 +sg4 +S'Edith Magnette' +p14340 +sa(dp14341 +g12 +g27 +sg2 +S'Embroidery' +p14342 +sg4 +S'Edith Magnette' +p14343 +sa(dp14344 +g12 +g27 +sg2 +S'Embroidered Linen Collar' +p14345 +sg4 +S'Grace Halpin' +p14346 +sa(dp14347 +g12 +g27 +sg2 +S'Collar' +p14348 +sg4 +S'Marie Famularo' +p14349 +sa(dp14350 +g12 +g27 +sg2 +S'Wedding Veil' +p14351 +sg4 +S'Mary Fitzgerald' +p14352 +sa(dp14353 +g12 +g27 +sg2 +S'Crewel Wall Hanging' +p14354 +sg4 +S'Isabelle De Strange' +p14355 +sa(dp14356 +g12 +g27 +sg2 +S'Fragment of Bed Curtain' +p14357 +sg4 +S'Florence Earl' +p14358 +sa(dp14359 +g12 +g27 +sg2 +S'Printed Linen' +p14360 +sg4 +S'Millia Davenport' +p14361 +sa(dp14362 +g2 +S'Grey and Silver: Chelsea Wharf' +p14363 +sg4 +S'James McNeill Whistler' +p14364 +sg6 +S'oil on canvas' +p14365 +sg8 +S'c. 1864/1868' +p14366 +sg10 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d49.jpg' +p14367 +sg12 +S'After reworking the National Gallery\'s \n The subtle tonal scheme is composed entirely of muted variations on the complementary colors of blue and orange. Whistler stated, "As music is the poetry of sound, so is painting the poetry of sight." In other words, various musical notes relate to a dominant key, just as various colors relate to a unifying hue in painting.\n In writing a review about another nocturnal landscape, the British art critic John Ruskin accused Whistler of "flinging a pot of paint in the public\'s face." Whistler sued Ruskin for libel in 1878. When a lawyer asked whether two days\' work justified that picture\'s high price, Whistler curtly replied, "No. I ask it for the knowledge of a lifetime." This famous retort established a legal precedent for artists\' acquired experiences. Whistler won the case, but the proceedings left him bankrupt.\n ' +p14368 +sa(dp14369 +g12 +g27 +sg2 +S'Wool Coverlet' +p14370 +sg4 +S'Edmond W. Brown' +p14371 +sa(dp14372 +g12 +g27 +sg2 +S'Bedspread' +p14373 +sg4 +S'Andrew Topolosky' +p14374 +sa(dp14375 +g12 +g27 +sg2 +S'Shelf Lambrequin' +p14376 +sg4 +S'Arthur G. Merkley' +p14377 +sa(dp14378 +g12 +g27 +sg2 +S'Wedding Handkerchief' +p14379 +sg4 +S'Eleanor Gausser' +p14380 +sa(dp14381 +g12 +g27 +sg2 +S'Friendship Quilt' +p14382 +sg4 +S'Isabelle De Strange' +p14383 +sa(dp14384 +g12 +g27 +sg2 +S'Rug or Wall Hanging' +p14385 +sg4 +S'Isabelle De Strange' +p14386 +sa(dp14387 +g12 +g27 +sg2 +S'Printed Cotton (Winter Sports)' +p14388 +sg4 +S'Pearl Gibbo' +p14389 +sa(dp14390 +g12 +g27 +sg2 +S'Printed Cotton (Quilt)' +p14391 +sg4 +S'John Tubrant' +p14392 +sa(dp14393 +g12 +g27 +sg10 +S'http://www.nga.gov:80/thumb-l/a00058/a0005893.jpg' +p14394 +sg2 +S'Crewel Embroidery' +p14395 +sg4 +S'John Oster' +p14396 +sa(dp14397 +g12 +g27 +sg2 +S'Crewel Bedspread' +p14398 +sg4 +S'Mary Berner' +p14399 +sa(dp14400 +g2 +S'Joseph E. Widener' +p14401 +sg4 +S'Augustus John' +p14402 +sg6 +S'oil on canvas' +p14403 +sg8 +S'1921' +p14404 +sg10 +S'http://www.nga.gov:80/thumb-l/a00010/a0001068.jpg' +p14405 +sg12 +S"After the death of his father, Peter, in 1915, \n The Welsh artist Augustus Edwin John used an expressionist style that enlivens Joseph Widener's portrait with a flickering, abstracted \n setting.\n " +p14406 +sa(dp14407 +g12 +g27 +sg2 +S'Bedspread (Details)' +p14408 +sg4 +S'Mary Berner' +p14409 +sa(dp14410 +g12 +g27 +sg2 +S'Bedspread' +p14411 +sg4 +S'Millia Davenport' +p14412 +sa(dp14413 +g12 +g27 +sg2 +S'Plaid Woolen Blanket' +p14414 +sg4 +S'Arthur G. Merkley' +p14415 +sa(dp14416 +g12 +g27 +sg2 +S'Blanket' +p14417 +sg4 +S'Mary Berner' +p14418 +sa(dp14419 +g12 +g27 +sg2 +S'Quilted Bedspread' +p14420 +sg4 +S'Irene Schaefer' +p14421 +sa(dp14422 +g12 +g27 +sg2 +S'Bedspread' +p14423 +sg4 +S'Irene Schaefer' +p14424 +sa(dp14425 +g12 +g27 +sg2 +S'Bedspread' +p14426 +sg4 +S'Mary Berner' +p14427 +sa(dp14428 +g12 +g27 +sg2 +S'Bedspread' +p14429 +sg4 +S'Mary Berner' +p14430 +sa(dp14431 +g12 +g27 +sg2 +S'Bedspread' +p14432 +sg4 +S'Mary Berner' +p14433 +sa(dp14434 +g12 +g27 +sg2 +S"Man's Handkerchief" +p14435 +sg4 +S'Sylvia De Zon' +p14436 +sa(dp14437 +g2 +S'Charity' +p14438 +sg4 +S'Mino da Fiesole' +p14439 +sg6 +S'marble' +p14440 +sg8 +S'1475/1480' +p14441 +sg10 +S'http://www.nga.gov:80/thumb-l/a00039/a00039a9.jpg' +p14442 +sg12 +S'In the art of the Middle Ages and Renaissance, the Virtues were often personified by human\nfigures carrying identifying attributes. Charity typically holds one or more children. As represented by Mino da Fiesole, a contemporary of Desiderio da Settignano and Antonio Rossellino, \n Set in arched niches, the figures must have been intended as part of a monument combining\narchitecture and sculpture, probably a wall tomb inside a church. The Virtues would represent\nreasons for the deceased person\'s good memory on earth and hopes for Paradise.\n Faith\n ' +p14443 +sa(dp14444 +g2 +S'Peter A. B. Widener' +p14445 +sg4 +S'John Singer Sargent' +p14446 +sg6 +S'oil on canvas' +p14447 +sg8 +S'1902' +p14448 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a0000200.jpg' +p14449 +sg12 +S'During the Civil War, \n John Singer Sargent, an American artist who was a cosmopolitan celebrity, painted this shadowed, sober portrait of Peter A. B. Widener in London.\n ' +p14450 +sa(dp14451 +g12 +g27 +sg2 +S'Embroidered Coverlet' +p14452 +sg4 +S'Jules Lefevere' +p14453 +sa(dp14454 +g12 +g27 +sg2 +S'Stuffed Bureau Cover' +p14455 +sg4 +S'Irene Schaefer' +p14456 +sa(dp14457 +g12 +g27 +sg2 +S'Candlewick Coverlet (Woven)' +p14458 +sg4 +S'Jules Lefevere' +p14459 +sa(dp14460 +g12 +g27 +sg2 +S'Candlewick Coverlet (Woven)' +p14461 +sg4 +S'Jules Lefevere' +p14462 +sa(dp14463 +g12 +g27 +sg2 +S'Crewel Embroidery' +p14464 +sg4 +S'Fanchon Larzelere' +p14465 +sa(dp14466 +g12 +g27 +sg2 +S'Crewel Embroidery' +p14467 +sg4 +S'Fanchon Larzelere' +p14468 +sa(dp14469 +g12 +g27 +sg2 +S'Crewel Embroidery' +p14470 +sg4 +S'Fanchon Larzelere' +p14471 +sa(dp14472 +g12 +g27 +sg2 +S'Crewel Embroidery' +p14473 +sg4 +S'Fanchon Larzelere' +p14474 +sa(dp14475 +g12 +g27 +sg2 +S'Embroidered Coverlet' +p14476 +sg4 +S'Jules Lefevere' +p14477 +sa(dp14478 +g12 +g27 +sg2 +S'Embroidered Coverlet' +p14479 +sg4 +S'Mae A. Clarke' +p14480 +sa(dp14481 +g12 +g27 +sg6 +S'overall: 48.1 x 20 x 22.9 cm (18 15/16 x 7 7/8 x 9 in.)' +p14482 +sg8 +S'\nbronze' +p14483 +sg2 +S'Samson Slaying the Philistine' +p14484 +sg4 +S'German 16th Century' +p14485 +sa(dp14486 +g12 +g27 +sg2 +S'Embroidered Blanket' +p14487 +sg4 +S'Dorothy Lacey' +p14488 +sa(dp14489 +g12 +S"Embroidered rugs were less common than the hooked variety because they had to be made from new materials instead of scraps. This rug of homespun wool was embroidered in bold and untraditional stitchery. Two roosters done in gray, russet, purple, \n and pink are set into a framelike composition surrounded by a border of flowers and leaves. The relationship of round shapes serves to unify the design; notice the round floral forms, the curves of the roosters' breasts and tails, and the rounded \n corners of the rectangle. The design is freely rendered in a symmetrical pattern and bright colors.\n " +p14490 +sg10 +S'http://www.nga.gov:80/thumb-l/a00003/a00003c6.jpg' +p14491 +sg2 +S'Embroidered Rug' +p14492 +sg4 +S'Dorothy Lacey' +p14493 +sa(dp14494 +g12 +g27 +sg2 +S'Doll' +p14495 +sg4 +S'Verna Tallman' +p14496 +sa(dp14497 +g12 +g27 +sg2 +S'Tufted Candlewick Bedspread' +p14498 +sg4 +S'Catherine Fowler' +p14499 +sa(dp14500 +g12 +g27 +sg2 +S'Embroidered Blanket' +p14501 +sg4 +S'Jenny Almgren' +p14502 +sa(dp14503 +g12 +g27 +sg2 +S'Handkerchief' +p14504 +sg4 +S'Charlotte Winter' +p14505 +sa(dp14506 +g12 +g27 +sg2 +S'Mourning Embroidery' +p14507 +sg4 +S'Harry Jennings' +p14508 +sa(dp14509 +g12 +g27 +sg2 +S'Crewel Embroidery' +p14510 +sg4 +S'John Wilkes' +p14511 +sa(dp14512 +g12 +g27 +sg2 +S'Coverlet (Blanket)' +p14513 +sg4 +S'Ralph Atkinson' +p14514 +sa(dp14515 +g12 +g27 +sg2 +S'Beaded Pin Cushion' +p14516 +sg4 +S'J. Howard Iams' +p14517 +sa(dp14518 +g12 +g27 +sg6 +S'Italian, active 1496 - 1525/1538' +p14519 +sg8 +S'(related artist)' +p14520 +sg2 +S'David' +p14521 +sg4 +S'Artist Information (' +p14522 +sa(dp14523 +g12 +g27 +sg2 +S'Crewel Work Wreath' +p14524 +sg4 +S'Robert Stewart' +p14525 +sa(dp14526 +g12 +g27 +sg2 +S'Crewel Wreath' +p14527 +sg4 +S'Genevieve Jordan' +p14528 +sa(dp14529 +g12 +g27 +sg2 +S'Crewel Wreath' +p14530 +sg4 +S'Genevieve Jordan' +p14531 +sa(dp14532 +g12 +g27 +sg2 +S'Handkerchief Case' +p14533 +sg4 +S'Sarah F. Williams' +p14534 +sa(dp14535 +g12 +g27 +sg2 +S'Crochet' +p14536 +sg4 +S'William Parkinson' +p14537 +sa(dp14538 +g12 +g27 +sg2 +S'Hardanger' +p14539 +sg4 +S'Wilford H. Shurtliff' +p14540 +sa(dp14541 +g12 +g27 +sg2 +S'Embroidery' +p14542 +sg4 +S'Frank J. Mace' +p14543 +sa(dp14544 +g12 +g27 +sg2 +S'Quilt Block: "Audax et Fides"' +p14545 +sg4 +S'Florence Truelson' +p14546 +sa(dp14547 +g12 +g27 +sg2 +S'Quilt Block' +p14548 +sg4 +S'Florence Truelson' +p14549 +sa(dp14550 +g12 +g27 +sg2 +S'Crewel embroidery' +p14551 +sg4 +S'Frank Maurer' +p14552 +sa(dp14553 +g2 +S'Neptune on a Sea Monster' +p14554 +sg4 +S'Severo da Ravenna' +p14555 +sg6 +S'bronze' +p14556 +sg8 +S'c. 1500/1509' +p14557 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d96.jpg' +p14558 +sg12 +S"Severo worked nearly his entire career in Padua, a university city where patrons' appreciation for the classical past fueled demand for small-scale works like this one. It was probably loosely inspired by the Greek myth of Perseus, who rescued the beautiful Andromeda from the rock where she had been chained by a sea monster. Here, it is the god of the sea who has vanquished the sea monster, a few links of the chain by which he had tethered the beast still surviving in his left hand. The reworking of classical themes was a specialty of Severo's, who had probably the largest bronze workshop in Padua. In \n Neptune's carefully modeled, youthful body reveals the sculptor's command of anatomy and celebrates the god's eternal youth. His face, meanwhile, with deeply curling hair and beard, is that of an older man, who is more aware of the burdens of the world; this is a more common representation of the sea god. The head shows Severo's meticulous craftsmanship to advantage, as does the body of the sea monster, whose scales contrast with Neptune's smooth skin, and whose doggish ears and flippered paws show Severo's imaginative fantasy.\n " +p14559 +sa(dp14560 +g12 +g27 +sg2 +S'Handmade Flowers on Black' +p14561 +sg4 +S'Frank J. Mace' +p14562 +sa(dp14563 +g12 +g27 +sg2 +S'Embroidery' +p14564 +sg4 +S'Frank J. Mace' +p14565 +sa(dp14566 +g12 +g27 +sg2 +S'Pillow Sham' +p14567 +sg4 +S'Edna C. Rex' +p14568 +sa(dp14569 +g12 +g27 +sg2 +S'Needlework' +p14570 +sg4 +S'Clarence Secor' +p14571 +sa(dp14572 +g12 +g27 +sg2 +S'Afghan Throw' +p14573 +sg4 +S'Erwin Stenzel' +p14574 +sa(dp14575 +g12 +g27 +sg2 +S'Hooked Rug' +p14576 +sg4 +S'Ruth M. Barnes' +p14577 +sa(dp14578 +g12 +g27 +sg2 +S'Hooked Rug' +p14579 +sg4 +S'Ruth M. Barnes' +p14580 +sa(dp14581 +g12 +g27 +sg2 +S'Hooked Rug' +p14582 +sg4 +S'Ruth M. Barnes' +p14583 +sa(dp14584 +g12 +g27 +sg2 +S'Hooked Rug' +p14585 +sg4 +S'Ruth M. Barnes' +p14586 +sa(dp14587 +g12 +g27 +sg2 +S'Hooked Rug - Center Design' +p14588 +sg4 +S'Ruth M. Barnes' +p14589 +sa(dp14590 +g12 +g27 +sg6 +S'(sculptor)' +p14591 +sg8 +S'\n' +p14592 +sg2 +S'Pietro Talani' +p14593 +sg4 +S'Artist Information (' +p14594 +sa(dp14595 +g12 +g27 +sg2 +S'Hooked Rug' +p14596 +sg4 +S'Ruth M. Barnes' +p14597 +sa(dp14598 +g12 +g27 +sg2 +S'Hooked Rug' +p14599 +sg4 +S'Ruth M. Barnes' +p14600 +sa(dp14601 +g12 +g27 +sg2 +S'Hooked Rug' +p14602 +sg4 +S'Ruth M. Barnes' +p14603 +sa(dp14604 +g12 +g27 +sg2 +S'Hooked Rug (Section of Border)' +p14605 +sg4 +S'Ruth M. Barnes' +p14606 +sa(dp14607 +g12 +g27 +sg2 +S'Hooked Rug' +p14608 +sg4 +S'James Vail' +p14609 +sa(dp14610 +g12 +g27 +sg2 +S'Hooked Rug' +p14611 +sg4 +S'Georgine E. Mason' +p14612 +sa(dp14613 +g12 +g27 +sg2 +S'Hooked Rug (Detail)' +p14614 +sg4 +S'Georgine E. Mason' +p14615 +sa(dp14616 +g12 +g27 +sg2 +S'Octagonal Hooked Rug' +p14617 +sg4 +S'Beverly Chichester' +p14618 +sa(dp14619 +g12 +g27 +sg2 +S'Hooked Rug' +p14620 +sg4 +S'Carl Keksi' +p14621 +sa(dp14622 +g12 +g27 +sg2 +S'Hooked Rug' +p14623 +sg4 +S'William P. Shearwood' +p14624 +sa(dp14625 +g2 +S'A Man in Armor' +p14626 +sg4 +S'Vincenzo Onofri' +p14627 +sg6 +S'painted and gilded terracotta' +p14628 +sg8 +S'c. 1500' +p14629 +sg10 +S'http://www.nga.gov:80/thumb-l/a00055/a0005581.jpg' +p14630 +sg12 +g27 +sa(dp14631 +g12 +g27 +sg2 +S'Hooked Rug with Horse' +p14632 +sg4 +S'Joseph Glover' +p14633 +sa(dp14634 +g12 +g27 +sg2 +S'Bedspread' +p14635 +sg4 +S'Michael Trekur' +p14636 +sa(dp14637 +g12 +g27 +sg2 +S'Hooked Rug' +p14638 +sg4 +S'Alfonso Umana' +p14639 +sa(dp14640 +g12 +g27 +sg2 +S'Hooked Rug' +p14641 +sg4 +S'Lillian M. Mosseller' +p14642 +sa(dp14643 +g12 +g27 +sg2 +S'Hooked Rug' +p14644 +sg4 +S'Elizabeth Valentine' +p14645 +sa(dp14646 +g12 +g27 +sg2 +S'Embroidered Rug' +p14647 +sg4 +S'Jules Lefevere' +p14648 +sa(dp14649 +g12 +g27 +sg2 +S'Hooked Rug' +p14650 +sg4 +S'Jules Lefevere' +p14651 +sa(dp14652 +g12 +g27 +sg2 +S'Button Rug' +p14653 +sg4 +S'Jules Lefevere' +p14654 +sa(dp14655 +g12 +g27 +sg2 +S'Button Rug' +p14656 +sg4 +S'Jules Lefevere' +p14657 +sa(dp14658 +g12 +g27 +sg2 +S'Rug' +p14659 +sg4 +S'Dorothy Kiernan' +p14660 +sa(dp14661 +g12 +g27 +sg6 +g27 +sg8 +S'(sculptor)' +p14662 +sg2 +S'Virtue Overcoming Vice' +p14663 +sg4 +S'Artist Information (' +p14664 +sa(dp14665 +g12 +g27 +sg2 +S'Hooked Rug' +p14666 +sg4 +S'Lillian M. Mosseller' +p14667 +sa(dp14668 +g12 +g27 +sg2 +S'Hooked Rug' +p14669 +sg4 +S'Lillian M. Mosseller' +p14670 +sa(dp14671 +g12 +g27 +sg2 +S'Hooked Rug' +p14672 +sg4 +S'Jules Lefevere' +p14673 +sa(dp14674 +g12 +g27 +sg2 +S'Hooked Rug' +p14675 +sg4 +S'Elizabeth Valentine' +p14676 +sa(dp14677 +g12 +g27 +sg2 +S'Embroidered Rug' +p14678 +sg4 +S'Dorothy Lacey' +p14679 +sa(dp14680 +g12 +g27 +sg2 +S'Hooked Rug' +p14681 +sg4 +S'Henry Granet' +p14682 +sa(dp14683 +g12 +S'Pennsylvania German housewives produced most of the textiles used in their homes. Hooked rugs were made by taking short pieces of yarn or cloth and pulling them through the mesh of a backing -- usually linen or burlap -- so that the two ends were on one \n side. The loops could then be trimmed to determine the pile of the rug. The technique of hooking rugs lent itself naturally to a variety of colors and designs. Designs were outlined on the backing and filled in with dyed scraps. This hooked rug shows an \n assemblage of stars, horses, birds, trees, circles, and crescents in a gay symmetrical arrangement. The rug is hooked on a burlap base while portions of the design are worked in cross-stitch. The bold colors used are characteristic of the Pennsylvania\n German style.\n ' +p14684 +sg10 +S'http://www.nga.gov:80/thumb-l/a00003/a00003c5.jpg' +p14685 +sg2 +S'Hooked Rug' +p14686 +sg4 +S'Charlotte Angus' +p14687 +sa(dp14688 +g12 +g27 +sg2 +S'Rug' +p14689 +sg4 +S'Eva Wilson' +p14690 +sa(dp14691 +g12 +g27 +sg2 +S'Quilted Pieces - Squares' +p14692 +sg4 +S'American 20th Century' +p14693 +sa(dp14694 +g12 +g27 +sg2 +S'Quilts - Pieced' +p14695 +sg4 +S'American 20th Century' +p14696 +sa(dp14697 +g12 +g27 +sg6 +S'French, 1732 - 1806' +p14698 +sg8 +S'(artist after)' +p14699 +sg2 +S'Bacchanal' +p14700 +sg4 +S'Artist Information (' +p14701 +sa(dp14702 +g12 +g27 +sg2 +S'Quilt Applique (Stars)' +p14703 +sg4 +S'American 20th Century' +p14704 +sa(dp14705 +g12 +g27 +sg2 +S'Applique Quilt' +p14706 +sg4 +S'Hollmana' +p14707 +sa(dp14708 +g12 +g27 +sg2 +S'Crazy Quilt' +p14709 +sg4 +S'Evelyn Bailey' +p14710 +sa(dp14711 +g12 +g27 +sg2 +S'Crazy Quilt - Patchwork' +p14712 +sg4 +S'Bertha Semple' +p14713 +sa(dp14714 +g12 +g27 +sg2 +S'Patchwork Pattern' +p14715 +sg4 +S'Evelyn Bailey' +p14716 +sa(dp14717 +g12 +g27 +sg2 +S'Patchwork Quilt and Detail' +p14718 +sg4 +S'Ellen Duncan' +p14719 +sa(dp14720 +g12 +g27 +sg2 +S'Patchwork Quilt' +p14721 +sg4 +S'Rose Campbell-Gerke' +p14722 +sa(dp14723 +g12 +g27 +sg2 +S'Applique Bedspread' +p14724 +sg4 +S'Rose Campbell-Gerke' +p14725 +sa(dp14726 +g12 +g27 +sg2 +S'Quilt - Tulip Design' +p14727 +sg4 +S'Ethel Dougan' +p14728 +sa(dp14729 +g12 +g27 +sg2 +S'Patchwork Quilt - Top' +p14730 +sg4 +S'Bertha Semple' +p14731 +sa(dp14732 +g2 +S'Faun Family' +p14733 +sg4 +S'Clodion' +p14734 +sg6 +S'terracotta' +p14735 +sg8 +S'c. 1785' +p14736 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c03.jpg' +p14737 +sg12 +g27 +sa(dp14738 +g12 +g27 +sg2 +S'Pieced Bed Cover' +p14739 +sg4 +S'Ethel Dougan' +p14740 +sa(dp14741 +g12 +g27 +sg2 +S'Applique Quilt (Friendship Quilt)' +p14742 +sg4 +S'Verna Tallman' +p14743 +sa(dp14744 +g12 +g27 +sg2 +S'Quilts, Pieced' +p14745 +sg4 +S'Florence Hastings' +p14746 +sa(dp14747 +g12 +g27 +sg2 +S'Pieced Quilt (1 Square)' +p14748 +sg4 +S'William Herbert' +p14749 +sa(dp14750 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Square)' +p14751 +sg4 +S'Artist Information (' +p14752 +sa(dp14753 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Square)' +p14754 +sg4 +S'Artist Information (' +p14755 +sa(dp14756 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Piece)' +p14757 +sg4 +S'Artist Information (' +p14758 +sa(dp14759 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Piece)' +p14760 +sg4 +S'Artist Information (' +p14761 +sa(dp14762 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Square)' +p14763 +sg4 +S'Artist Information (' +p14764 +sa(dp14765 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Piece)' +p14766 +sg4 +S'Artist Information (' +p14767 +sa(dp14768 +g12 +g27 +sg6 +S'bronze' +p14769 +sg8 +S'1686' +p14770 +sg2 +S'Louis II de Bourbon, Prince de Cond\xc3\xa9' +p14771 +sg4 +S'Antoine Coysevox' +p14772 +sa(dp14773 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Piece)' +p14774 +sg4 +S'Artist Information (' +p14775 +sa(dp14776 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Piece)' +p14777 +sg4 +S'Artist Information (' +p14778 +sa(dp14779 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Piece)' +p14780 +sg4 +S'Artist Information (' +p14781 +sa(dp14782 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Piece)' +p14783 +sg4 +S'Artist Information (' +p14784 +sa(dp14785 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Piece)' +p14786 +sg4 +S'Artist Information (' +p14787 +sa(dp14788 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Piece)' +p14789 +sg4 +S'Artist Information (' +p14790 +sa(dp14791 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Square)' +p14792 +sg4 +S'Artist Information (' +p14793 +sa(dp14794 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Piece)' +p14795 +sg4 +S'Artist Information (' +p14796 +sa(dp14797 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Piece)' +p14798 +sg4 +S'Artist Information (' +p14799 +sa(dp14800 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Piece)' +p14801 +sg4 +S'Artist Information (' +p14802 +sa(dp14803 +g2 +S'Faith' +p14804 +sg4 +S'Mino da Fiesole' +p14805 +sg6 +S'marble' +p14806 +sg8 +S'1475/1480' +p14807 +sg10 +S'http://www.nga.gov:80/thumb-l/a00037/a00037c3.jpg' +p14808 +sg12 +S"In the art of the Middle Ages and Renaissance, the Virtues were often personified by human\nfigures carrying identifying attributes. Faith in this case had a chalice and a cross, now broken. As represented by Mino da Fiesole, a contemporary of Desiderio da Settignano and Antonio Rossellino, \n Set in arched niches, the figures must have been intended as part of a monument combining\narchitecture and sculpture, probably a wall tomb inside a church. The Virtues would represent\nreasons for the deceased person's good memory on earth and hopes for Paradise.\n Faith\n " +p14809 +sa(dp14810 +g2 +S'The Descent from the Cross' +p14811 +sg4 +S'Vincenzo Danti' +p14812 +sg6 +S'bronze' +p14813 +sg8 +S'c. 1560' +p14814 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d76.jpg' +p14815 +sg12 +S"As Christ's body is lowered from the cross, mourners support the Virgin, near collapse under the weight of grief. Viewers are meant to feel the same harrowing sadness, and Danti uses the high relief of the foreground figures to intensify this response. Nearly in the round, their awkward, off-balance poses are accentuated to convey in a physical way the wrenching force of emotion.\n By contrast, the two thieves crucified with Christ nearly merge into the background, the crosses only incised on the surface. It is easy to understand these lines as drawn through the soft wax model from which the bronze was cast. The minimal chasing and polishing that was done after casting leave the pliant textures and immediacy of the modeled wax. In this regard, the \n Christ's body has the elongated, elegant proportions of mannerist works—a style that emphasized self-conscious artifice over naturalistic depiction. Mannerism, sometimes viewed as a reaction to the clarity and unity of the High Renaissance, can also be seen as a natural extension of it, for example in the emphatic modeling of Michelangelo, whom Danti himself cited as his greatest influence.\n " +p14816 +sa(dp14817 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Piece)' +p14818 +sg4 +S'Artist Information (' +p14819 +sa(dp14820 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Piece)' +p14821 +sg4 +S'Artist Information (' +p14822 +sa(dp14823 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Piece)' +p14824 +sg4 +S'Artist Information (' +p14825 +sa(dp14826 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Piece)' +p14827 +sg4 +S'Artist Information (' +p14828 +sa(dp14829 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Piece)' +p14830 +sg4 +S'Artist Information (' +p14831 +sa(dp14832 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Piece)' +p14833 +sg4 +S'Artist Information (' +p14834 +sa(dp14835 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Piece)' +p14836 +sg4 +S'Artist Information (' +p14837 +sa(dp14838 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Piece)' +p14839 +sg4 +S'Artist Information (' +p14840 +sa(dp14841 +g12 +g27 +sg2 +S'Pieced Autograph Quilt (1 Piece)' +p14842 +sg4 +S'Artist Information (' +p14843 +sa(dp14844 +g12 +g27 +sg2 +S'Coverlet (Applique) Quilt' +p14845 +sg4 +S'Ruth M. Barnes' +p14846 +sa(dp14847 +g12 +g27 +sg6 +S', 1450/1475, with later alterations' +p14848 +sg8 +S'\n' +p14849 +sg2 +S'A Young Lady' +p14850 +sg4 +S'Florentine 15th Century' +p14851 +sa(dp14852 +g12 +g27 +sg2 +S'Coverlet (Applique Quilt)' +p14853 +sg4 +S'Ruth M. Barnes' +p14854 +sa(dp14855 +g12 +g27 +sg2 +S'Coverlet (Applique Quilt)' +p14856 +sg4 +S'Ruth M. Barnes' +p14857 +sa(dp14858 +g12 +g27 +sg2 +S'Quilt' +p14859 +sg4 +S'Ruth M. Barnes' +p14860 +sa(dp14861 +g12 +g27 +sg2 +S'Quilt' +p14862 +sg4 +S'Ruth M. Barnes' +p14863 +sa(dp14864 +g12 +g27 +sg2 +S'Applique Quilt' +p14865 +sg4 +S'Ruth M. Barnes' +p14866 +sa(dp14867 +g12 +g27 +sg2 +S'Applique Quilt' +p14868 +sg4 +S'Ruth Buker' +p14869 +sa(dp14870 +g12 +g27 +sg2 +S'Applique Quilt' +p14871 +sg4 +S'Ruth Buker' +p14872 +sa(dp14873 +g12 +g27 +sg2 +S'Quilt (Section)' +p14874 +sg4 +S'Ruth M. Barnes' +p14875 +sa(dp14876 +g12 +g27 +sg2 +S'Quilt (1 Section)' +p14877 +sg4 +S'Ruth M. Barnes' +p14878 +sa(dp14879 +g12 +g27 +sg2 +S'Quilt (1 Section)' +p14880 +sg4 +S'Ruth M. Barnes' +p14881 +sa(dp14882 +g2 +S'Saint Jerome in the Desert' +p14883 +sg4 +S'Desiderio da Settignano' +p14884 +sg6 +S'marble' +p14885 +sg8 +S'c. 1461' +p14886 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a00005e7.jpg' +p14887 +sg12 +S'Desiderio da Settignano, born in a small village in the hills above Florence, numbers among\nthe most brilliant marble sculptors of the Renaissance. His mastery of relief sculpture is apparent\nin this pictorially rich image, with its complicated space in which figures move in different\nplanes, all suggested by the subtlest manipulations of the marble surface.\n Clearly Desiderio had learned much from the low-relief techniques of Donatello. The\nsculptor invented a rocky, wilderness landscape with a cloud-streaked sky and tall, pointed\ncypress trees receding into the distance among the cliffs. In the foreground, Saint Jerome kneels\nin penitential prayer before a crucifix. He wears only a few crumpled wisps of drapery, and his\ngaunt face tells of fervent, ascetic devotion. On the right, in particularly fine low relief,\nsuggesting he is some distance in the background, a terrified boy flees from the lions that emerge\nfrom the rocks on the left behind the cross.\n According to legend, Jerome tamed a lion by removing a thorn from its paw, and the lion\ntherefore often appears as his attribute in art. The lions here, clearly no threat to the saint, suggest\nhis harmonious relationship with nature, achieved through solitary meditation, prayer, and\npenance.\n ' +p14888 +sa(dp14889 +g12 +g27 +sg2 +S'Quilted Coverlet' +p14890 +sg4 +S'Ruth M. Barnes' +p14891 +sa(dp14892 +g12 +g27 +sg2 +S'Quilt Block' +p14893 +sg4 +S'Ruth M. Barnes' +p14894 +sa(dp14895 +g12 +g27 +sg2 +S'Quilt Section' +p14896 +sg4 +S'Cornelius Christoffels' +p14897 +sa(dp14898 +g12 +g27 +sg2 +S'Quilt Section' +p14899 +sg4 +S'Artist Information (' +p14900 +sa(dp14901 +g12 +g27 +sg2 +S'Quilt Section' +p14902 +sg4 +S'Artist Information (' +p14903 +sa(dp14904 +g12 +g27 +sg2 +S'Quilt - "Double Star"' +p14905 +sg4 +S'Edith Towner' +p14906 +sa(dp14907 +g12 +g27 +sg2 +S'Applique Quilt' +p14908 +sg4 +S'Margaret Linsley' +p14909 +sa(dp14910 +g12 +g27 +sg2 +S'Autographed Quilt' +p14911 +sg4 +S'Margaret Linsley' +p14912 +sa(dp14913 +g12 +g27 +sg2 +S'Quilt - Appliqued in Bellflower Design' +p14914 +sg4 +S'Margaret Linsley' +p14915 +sa(dp14916 +g12 +g27 +sg2 +S'Quilt - Appliqued in Bellflower Design' +p14917 +sg4 +S'Margaret Linsley' +p14918 +sa(dp14919 +g12 +g27 +sg6 +S', c. 1640/1650' +p14920 +sg8 +S'\n' +p14921 +sg2 +S'Cupid (?)' +p14922 +sg4 +S'Lucas Faydherbe' +p14923 +sa(dp14924 +g12 +g27 +sg2 +S'Quilt (Corner Section)' +p14925 +sg4 +S'Cornelius Christoffels' +p14926 +sa(dp14927 +g12 +g27 +sg2 +S'Quilt - "Eastern Star"' +p14928 +sg4 +S'Margaret Linsley' +p14929 +sa(dp14930 +g12 +g27 +sg2 +S'Crazy Quilt (Detail)' +p14931 +sg4 +S'Edith Towner' +p14932 +sa(dp14933 +g12 +g27 +sg2 +S'Crazy Quilt' +p14934 +sg4 +S'Ruth M. Barnes' +p14935 +sa(dp14936 +g12 +g27 +sg2 +S'Crazy Quilt Detail' +p14937 +sg4 +S'Ruth M. Barnes' +p14938 +sa(dp14939 +g12 +g27 +sg2 +S'Crazy Quilt (Detail)' +p14940 +sg4 +S'Ruth M. Barnes' +p14941 +sa(dp14942 +g12 +g27 +sg2 +S'Crazy Quilt (Section)' +p14943 +sg4 +S'Ruth M. Barnes' +p14944 +sa(dp14945 +g12 +g27 +sg2 +S'Block from Bedspread' +p14946 +sg4 +S'Ruth M. Barnes' +p14947 +sa(dp14948 +g12 +g27 +sg2 +S'Block from Bedspread' +p14949 +sg4 +S'Ruth M. Barnes' +p14950 +sa(dp14951 +g12 +g27 +sg2 +S'Log Cabin Quilt' +p14952 +sg4 +S'Ruth M. Barnes' +p14953 +sa(dp14954 +g2 +S'The David of the Casa Martelli' +p14955 +sg4 +S'Artist Information (' +p14956 +sg6 +S'(sculptor)' +p14957 +sg8 +S'\n' +p14958 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a00005ed.jpg' +p14959 +sg12 +S"\r\n Confidently focusing his attention upward, David stands triumphant with his chin high, hand on hip, and a foot on the severed head of Goliath. In his right hand, his sling is already reloaded, poised for battle should any Philistines dare return. Powerful in spirit and mind but not physically intimidating, the shepherd boy David was often used as a symbol in fifteenth-century Florence. Tucked into the hills of Tuscany, this small republic built its prosperity upon a textile industry and financial astuteness. As it grew in political importance, it became intent upon governing itself. Nearly every major Florentine sculptor, in response to the high demand from patrons, put his tools to a David triumphing over Goliath.\r\n \n \r\n This David, which once stood in the courtyard of the palace of the Martelli family in Florence, appears in Agnolo Bronzino's painting \n " +p14960 +sa(dp14961 +g12 +g27 +sg2 +S'Crazy Quilt Detail' +p14962 +sg4 +S'Edith Towner' +p14963 +sa(dp14964 +g12 +g27 +sg2 +S'Patchwork Quilt (Section)' +p14965 +sg4 +S'Edith Towner' +p14966 +sa(dp14967 +g12 +g27 +sg2 +S'Patchwork Quilt (Section)' +p14968 +sg4 +S'Edith Towner' +p14969 +sa(dp14970 +g12 +g27 +sg2 +S'Hand Made Quilt' +p14971 +sg4 +S'Florence Hastings' +p14972 +sa(dp14973 +g12 +g27 +sg2 +S'Quilt' +p14974 +sg4 +S'George E. Rhone' +p14975 +sa(dp14976 +g12 +g27 +sg2 +S'Appliqued Coverlet - Tree Design' +p14977 +sg4 +S'Ernest A. Towers, Jr.' +p14978 +sa(dp14979 +g12 +g27 +sg2 +S'Applique Coverlet' +p14980 +sg4 +S'John R. Towers' +p14981 +sa(dp14982 +g12 +g27 +sg2 +S'Coverlet for Crib' +p14983 +sg4 +S'Artist Information (' +p14984 +sa(dp14985 +g12 +g27 +sg2 +S'Mision Santa Margarita' +p14986 +sg4 +S'James Jones' +p14987 +sa(dp14988 +g12 +g27 +sg2 +S'Patchwork Quilt' +p14989 +sg4 +S'Mabel Ritter' +p14990 +sa(dp14991 +g12 +g27 +sg6 +S'marble' +p14992 +sg8 +S'unknown date\n' +p14993 +sg2 +S'The Punishment of Cupid' +p14994 +sg4 +S'Etienne-Maurice Falconet' +p14995 +sa(dp14996 +g12 +g27 +sg2 +S'Pieced Quilt' +p14997 +sg4 +S'Maud M. Holme' +p14998 +sa(dp14999 +g12 +g27 +sg2 +S'Quilted and Pieced Coverlet' +p15000 +sg4 +S'Cora Parker' +p15001 +sa(dp15002 +g12 +g27 +sg2 +S'Quilt - Log Cabin Pattern' +p15003 +sg4 +S'Magnus S. Fossum' +p15004 +sa(dp15005 +g12 +g27 +sg2 +S'Quilt' +p15006 +sg4 +S'Magnus S. Fossum' +p15007 +sa(dp15008 +g12 +g27 +sg2 +S'Pieced and Quilted Coverlet' +p15009 +sg4 +S'Maud M. Holme' +p15010 +sa(dp15011 +g12 +g27 +sg2 +S'Pieced and Quilted Coverlet' +p15012 +sg4 +S'Maud M. Holme' +p15013 +sa(dp15014 +g12 +g27 +sg2 +S'Silk Couch Cover' +p15015 +sg4 +S'Carmel Wilson' +p15016 +sa(dp15017 +g12 +g27 +sg2 +S'Velvet Pieced Quilt' +p15018 +sg4 +S'Cora Parker' +p15019 +sa(dp15020 +g12 +g27 +sg2 +S'Crib Quilt' +p15021 +sg4 +S'Cora Parker' +p15022 +sa(dp15023 +g12 +g27 +sg2 +S'Applique and Quilted Coverlet' +p15024 +sg4 +S'Manuel G. Runyan' +p15025 +sa(dp15026 +g2 +S'Mercury' +p15027 +sg4 +S'Venetian 16th Century' +p15028 +sg6 +S'overall: 20.4 x 29.4 cm (8 1/16 x 11 9/16 in.)' +p15029 +sg8 +S'\nbronze' +p15030 +sg10 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f0f.jpg' +p15031 +sg12 +g27 +sa(dp15032 +g12 +g27 +sg2 +S'Applique and Quilted Coverlet' +p15033 +sg4 +S'Manuel G. Runyan' +p15034 +sa(dp15035 +g12 +g27 +sg2 +S'Double Star Patchwork Quilt' +p15036 +sg4 +S'Maud M. Holme' +p15037 +sa(dp15038 +g12 +g27 +sg2 +S'Quilt' +p15039 +sg4 +S'Artist Information (' +p15040 +sa(dp15041 +g12 +g27 +sg2 +S'Quilt - Tulip Pattern' +p15042 +sg4 +S'Fred Hassebrock' +p15043 +sa(dp15044 +g12 +g27 +sg2 +S'Star and Flag Design Quilt' +p15045 +sg4 +S'Fred Hassebrock' +p15046 +sa(dp15047 +g12 +g27 +sg2 +S'Quilt - Top Star and Flag Design' +p15048 +sg4 +S'Fred Hassebrock' +p15049 +sa(dp15050 +g12 +g27 +sg2 +S'Quilt' +p15051 +sg4 +S'James Vail' +p15052 +sa(dp15053 +g12 +g27 +sg2 +S'Quilt Swatches' +p15054 +sg4 +S'John Osbold' +p15055 +sa(dp15056 +g12 +g27 +sg2 +S'Patchwork Quilt' +p15057 +sg4 +S'Elbert S. Mowery' +p15058 +sa(dp15059 +g12 +g27 +sg2 +S'Patchwork Quilt - "Evening Star"' +p15060 +sg4 +S'Lon Cronk' +p15061 +sa(dp15062 +g12 +g27 +sg6 +S'bronze' +p15063 +sg8 +S'16th century' +p15064 +sg2 +S'Brunaccino Rinaldi' +p15065 +sg4 +S'Florentine 16th Century' +p15066 +sa(dp15067 +g12 +g27 +sg2 +S'Patchwork or Pieced Quilt' +p15068 +sg4 +S'Elbert S. Mowery' +p15069 +sa(dp15070 +g12 +g27 +sg2 +S'Patchwork Quilt' +p15071 +sg4 +S'George V. Vezolles' +p15072 +sa(dp15073 +g12 +g27 +sg2 +S'Quilt (detail) - "Honeycomb Pattern"' +p15074 +sg4 +S'Mrs. Goodwin' +p15075 +sa(dp15076 +g12 +g27 +sg2 +S'Patchwork Quilt' +p15077 +sg4 +S'Elbert S. Mowery' +p15078 +sa(dp15079 +g12 +g27 +sg2 +S'Patchwork Quilt' +p15080 +sg4 +S'Alois E. Ulrich' +p15081 +sa(dp15082 +g12 +g27 +sg2 +S'Log Cabin Quilt' +p15083 +sg4 +S'Ada Barnes' +p15084 +sa(dp15085 +g12 +g27 +sg2 +S'Silk Quilt' +p15086 +sg4 +S'Elbert S. Mowery' +p15087 +sa(dp15088 +g12 +g27 +sg2 +S'Shaker Patchwork Quilt' +p15089 +sg4 +S'Elbert S. Mowery' +p15090 +sa(dp15091 +g12 +g27 +sg2 +S'Quilt Block' +p15092 +sg4 +S'Ada Barnes' +p15093 +sa(dp15094 +g12 +g27 +sg2 +S'Patchwork Quilt Squares (4)' +p15095 +sg4 +S'Ralph N. Morgan' +p15096 +sa(dp15097 +g2 +S'Hercules and Antaeus' +p15098 +sg4 +S'Paduan 16th Century' +p15099 +sg6 +S'overall: 38 x 12 x 26.5 cm (14 15/16 x 4 3/4 x 10 7/16 in.)' +p15100 +sg8 +S'\nbronze' +p15101 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002af4.jpg' +p15102 +sg12 +g27 +sa(dp15103 +g12 +g27 +sg2 +S'Quilt Pattern Square' +p15104 +sg4 +S'Ralph N. Morgan' +p15105 +sa(dp15106 +g12 +g27 +sg2 +S'Shaker Quilt Pattern' +p15107 +sg4 +S'Ralph N. Morgan' +p15108 +sa(dp15109 +g12 +g27 +sg2 +S'Quilt' +p15110 +sg4 +S'Ralph N. Morgan' +p15111 +sa(dp15112 +g12 +g27 +sg2 +S'Quilt Pattern' +p15113 +sg4 +S'Alois E. Ulrich' +p15114 +sa(dp15115 +g12 +g27 +sg2 +S'Silk Quilt (Hexagonal Pattern)' +p15116 +sg4 +S'Ralph N. Morgan' +p15117 +sa(dp15118 +g12 +g27 +sg2 +S'Quilt Pattern' +p15119 +sg4 +S'Ralph N. Morgan' +p15120 +sa(dp15121 +g12 +g27 +sg2 +S'Quilt Pattern' +p15122 +sg4 +S'Ralph N. Morgan' +p15123 +sa(dp15124 +g12 +g27 +sg2 +S'Quilt Square' +p15125 +sg4 +S'Baye M. Yancey' +p15126 +sa(dp15127 +g12 +g27 +sg2 +S'Patchwork Quilt Pattern' +p15128 +sg4 +S'T. Joyce' +p15129 +sa(dp15130 +g12 +g27 +sg2 +S'Applique Quilt' +p15131 +sg4 +S'Mildred E. Bent' +p15132 +sa(dp15133 +g12 +g27 +sg6 +S'overall: 23.1 x 11.1 x 10.8 cm (9 1/8 x 4 3/8 x 4 1/4 in.)' +p15134 +sg8 +S'\nbronze' +p15135 +sg2 +S'A Dancing Faun' +p15136 +sg4 +S'German 17th Century' +p15137 +sa(dp15138 +g12 +g27 +sg2 +S'Quilt Applique' +p15139 +sg4 +S'Mildred E. Bent' +p15140 +sa(dp15141 +g12 +g27 +sg2 +S'Quilt Blocks - Applique Star' +p15142 +sg4 +S'American 20th Century' +p15143 +sa(dp15144 +g12 +g27 +sg2 +S'Quilt' +p15145 +sg4 +S'Lillian Causey' +p15146 +sa(dp15147 +g12 +g27 +sg2 +S'Applique Quilt' +p15148 +sg4 +S'Madeline Arnold' +p15149 +sa(dp15150 +g12 +g27 +sg2 +S'Quilt' +p15151 +sg4 +S'William High' +p15152 +sa(dp15153 +g12 +g27 +sg2 +S'Quilt' +p15154 +sg4 +S'Lillian Causey' +p15155 +sa(dp15156 +g12 +g27 +sg2 +S'Quilt' +p15157 +sg4 +S'Lillian Causey' +p15158 +sa(dp15159 +g12 +g27 +sg2 +S'Quilt, applique' +p15160 +sg4 +S'Lillian Causey' +p15161 +sa(dp15162 +g12 +S'Pieced and appliqué quilts of the nineteenth century were often made from separate\n blocks sewn together and quilted by women at a gathering called a quilting bee.\n This was usually a festive occasion for the entire community. The technique of making\n quilt tops in individual squares led to the development of a special kind of quilt, known\n variously as signature, autograph, album, friendship, or presentation quilts, made for a\n special friend or event. These quilts, popular during the 1840s and 1850s, were made\n from blocks donated by friends, who would gather at an "album party" to piece together\n and quilt the individual squares. As in this doll\'s bed quilt, probably made by a group of\n young people, each contributor appliquéed a design on her own square. The appliqué\n designs were often embellished by the contributor\'s signature in ink or embroidery,\n hence the term "signature quilt." Album quilts are characterized by their varied designs;\n here floral motifs are combined with animals, birds, and even a horse and rider.\n Unity depends upon compatibility of scale and harmony of color as well as upon\n orderly arrangement. In this example, the most complex designs have been placed\n in a row across the middle of the quilt; the simpler designs are at top and bottom.\n The calico neatly frames the blocks and creates a lively contrast of pattern against\n solid colors. Album quilts such as this one are records of cooperative efforts to honor\n a recipient or to commemorate an occasion; in their workmanship, patterns, and\n cultural significance, they are among the most interesting of American quilts.\n ' +p15163 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a00002bf.jpg' +p15164 +sg2 +S'Doll Bed Applique Patchwork Quilt' +p15165 +sg4 +S'Beverly Chichester' +p15166 +sa(dp15167 +g12 +g27 +sg2 +S'Bedspread' +p15168 +sg4 +S'Floyd R. Sharp' +p15169 +sa(dp15170 +g2 +S'A Princess of the House of Aragon' +p15171 +sg4 +S'Francesco Laurana' +p15172 +sg6 +S'marble' +p15173 +sg8 +S'c. 1475' +p15174 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c38.jpg' +p15175 +sg12 +g27 +sa(dp15176 +g2 +S'Hercules Carrying the Erymanthian Boar' +p15177 +sg4 +S'Artist Information (' +p15178 +sg6 +S'Flemish, 1529 - 1608' +p15179 +sg8 +S'(artist after)' +p15180 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d9e.jpg' +p15181 +sg12 +g27 +sa(dp15182 +g12 +g27 +sg2 +S'Log Cabin Quilt' +p15183 +sg4 +S'Floyd R. Sharp' +p15184 +sa(dp15185 +g12 +g27 +sg2 +S'Friendship Quilt' +p15186 +sg4 +S'Carl Keksi' +p15187 +sa(dp15188 +g12 +g27 +sg2 +S'Cotton Quilt - Tulip Design' +p15189 +sg4 +S'Frank Gutting' +p15190 +sa(dp15191 +g12 +g27 +sg2 +S'Quilt' +p15192 +sg4 +S'Ralph M. Lewis' +p15193 +sa(dp15194 +g12 +g27 +sg2 +S'Quilt' +p15195 +sg4 +S'Francis Law Durand' +p15196 +sa(dp15197 +g12 +g27 +sg2 +S'Quilt' +p15198 +sg4 +S'Francis Law Durand' +p15199 +sa(dp15200 +g12 +g27 +sg2 +S'Pieced Quilt' +p15201 +sg4 +S'Francis Law Durand' +p15202 +sa(dp15203 +g12 +g27 +sg2 +S"Infant's Quilt (Bed Covering)" +p15204 +sg4 +S'Francis Law Durand' +p15205 +sa(dp15206 +g12 +g27 +sg2 +S'Silk Patchwork for Pillow' +p15207 +sg4 +S'Edith Magnette' +p15208 +sa(dp15209 +g12 +g27 +sg2 +S'Quilt' +p15210 +sg4 +S'Grace Halpin' +p15211 +sa(dp15212 +g12 +g27 +sg6 +g27 +sg8 +S'(sculptor)' +p15213 +sg2 +S'Rearing Horse' +p15214 +sg4 +S'Artist Information (' +p15215 +sa(dp15216 +g12 +g27 +sg2 +S'Quilt - Oak Leaf' +p15217 +sg4 +S'Paul Ward' +p15218 +sa(dp15219 +g12 +g27 +sg2 +S'Quilt (Bed Covering)' +p15220 +sg4 +S'Francis Law Durand' +p15221 +sa(dp15222 +g12 +g27 +sg2 +S'Quilt (Bed Coverlet)' +p15223 +sg4 +S'Francis Law Durand' +p15224 +sa(dp15225 +g12 +g27 +sg2 +S'Patchwork Quilt' +p15226 +sg4 +S'Paul Ward' +p15227 +sa(dp15228 +g12 +g27 +sg2 +S'Patchwork for Quilting' +p15229 +sg4 +S'Edith Magnette' +p15230 +sa(dp15231 +g12 +g27 +sg2 +S'Quilt' +p15232 +sg4 +S'Frank Nelson' +p15233 +sa(dp15234 +g12 +g27 +sg2 +S'Quilt - "Rising Sun"' +p15235 +sg4 +S'Maud Schmid' +p15236 +sa(dp15237 +g12 +g27 +sg2 +S'Woven Wool Coverlet' +p15238 +sg4 +S'William P. Shearwood' +p15239 +sa(dp15240 +g12 +g27 +sg2 +S'Quilt' +p15241 +sg4 +S'Gladys Phillips' +p15242 +sa(dp15243 +g12 +g27 +sg2 +S'Quilt' +p15244 +sg4 +S'William P. Shearwood' +p15245 +sa(dp15246 +g2 +S'Alexandre Brongniart' +p15247 +sg4 +S'Jean-Antoine Houdon' +p15248 +sg6 +S'marble' +p15249 +sg8 +S'1777' +p15250 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c35.jpg' +p15251 +sg12 +g27 +sa(dp15252 +g12 +g27 +sg2 +S'Bedspread' +p15253 +sg4 +S'Isabelle De Strange' +p15254 +sa(dp15255 +g12 +g27 +sg2 +S'Patchwork Quilt' +p15256 +sg4 +S'Gladys Phillips' +p15257 +sa(dp15258 +g12 +g27 +sg2 +S'Patchwork Quilt' +p15259 +sg4 +S'Genevieve Sherlock' +p15260 +sa(dp15261 +g12 +g27 +sg2 +S'Wedding Dress' +p15262 +sg4 +S'Bessie Forman' +p15263 +sa(dp15264 +g12 +g27 +sg2 +S'Bedspread' +p15265 +sg4 +S'Alfonso Umana' +p15266 +sa(dp15267 +g12 +g27 +sg2 +S'Patchwork Quilt' +p15268 +sg4 +S'Charlotte Winter' +p15269 +sa(dp15270 +g12 +g27 +sg2 +S'Bedspread (Detail of Center)' +p15271 +sg4 +S'Charlotte Winter' +p15272 +sa(dp15273 +g12 +g27 +sg2 +S'Patchwork and Applique Quilt' +p15274 +sg4 +S'Mary Berner' +p15275 +sa(dp15276 +g12 +g27 +sg2 +S'Bedspread' +p15277 +sg4 +S'Henry Granet' +p15278 +sa(dp15279 +g12 +g27 +sg2 +S'Patchwork Quilt' +p15280 +sg4 +S'Irene Schaefer' +p15281 +sa(dp15282 +g2 +S'Louise Brongniart' +p15283 +sg4 +S'Jean-Antoine Houdon' +p15284 +sg6 +S'marble' +p15285 +sg8 +S'1777' +p15286 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c36.jpg' +p15287 +sg12 +g27 +sa(dp15288 +g12 +g27 +sg2 +S'Patchwork Quilt' +p15289 +sg4 +S'Jules Lefevere' +p15290 +sa(dp15291 +g12 +g27 +sg2 +S'Applique Coverlet' +p15292 +sg4 +S'Jules Lefevere' +p15293 +sa(dp15294 +g12 +g27 +sg2 +S'Patchwork Quilt' +p15295 +sg4 +S'George Loughridge' +p15296 +sa(dp15297 +g12 +g27 +sg2 +S'Applique Quilt' +p15298 +sg4 +S'Suzanne Roy' +p15299 +sa(dp15300 +g12 +g27 +sg2 +S'Patchwork Quilt' +p15301 +sg4 +S'Irene Schaefer' +p15302 +sa(dp15303 +g12 +g27 +sg2 +S'Crib Coverlet' +p15304 +sg4 +S'Suzanne Roy' +p15305 +sa(dp15306 +g12 +g27 +sg2 +S'Bedspread' +p15307 +sg4 +S'Irene Schaefer' +p15308 +sa(dp15309 +g12 +g27 +sg2 +S'Patchwork Quilt' +p15310 +sg4 +S'George Loughridge' +p15311 +sa(dp15312 +g12 +g27 +sg2 +S'Bedspread' +p15313 +sg4 +S'Irene Schaefer' +p15314 +sa(dp15315 +g12 +g27 +sg2 +S'Applique Quilt' +p15316 +sg4 +S'Suzanne Roy' +p15317 +sa(dp15318 +g12 +g27 +sg6 +S'French, 1741 - 1828' +p15319 +sg8 +S'(related artist)' +p15320 +sg2 +S'Alexandre Brongniart' +p15321 +sg4 +S'Artist Information (' +p15322 +sa(dp15323 +g12 +g27 +sg2 +S'Applique and Patchwork Quilt' +p15324 +sg4 +S'John Oster' +p15325 +sa(dp15326 +g12 +g27 +sg2 +S'Quilt (Applique)' +p15327 +sg4 +S'Mary Berner' +p15328 +sa(dp15329 +g12 +g27 +sg2 +S'Patchwork Quilt' +p15330 +sg4 +S'Elizabeth Valentine' +p15331 +sa(dp15332 +g12 +g27 +sg2 +S'Patchwork Quilt' +p15333 +sg4 +S'Irene Schaefer' +p15334 +sa(dp15335 +g12 +g27 +sg2 +S'Bedspread' +p15336 +sg4 +S'Irene Schaefer' +p15337 +sa(dp15338 +g12 +g27 +sg2 +S'Patchwork Quilt' +p15339 +sg4 +S'Irene Schaefer' +p15340 +sa(dp15341 +g12 +g27 +sg2 +S'Bedspread' +p15342 +sg4 +S'Mary Berner' +p15343 +sa(dp15344 +g12 +g27 +sg2 +S'Patchwork Quilt' +p15345 +sg4 +S'Charlotte Winter' +p15346 +sa(dp15347 +g12 +g27 +sg2 +S'Applique Bedspread' +p15348 +sg4 +S'Mary Berner' +p15349 +sa(dp15350 +g12 +g27 +sg2 +S'Applique Quilt' +p15351 +sg4 +S'Suzanne Roy' +p15352 +sa(dp15353 +g12 +g27 +sg6 +S'French, 1741 - 1828' +p15354 +sg8 +S'(related artist)' +p15355 +sg2 +S'Louise Brongniart' +p15356 +sg4 +S'Artist Information (' +p15357 +sa(dp15358 +g12 +S'Along with pieced quilts, appliqué quilts were popular. In appliqué quilts, each element\n of the design was cut out, the edges turned under, and the pieces stitched to a plain\n backing, usually white muslin. This method provided for a wide range of decorative\n patterns. In addition to geometric designs, elaborate floral motifs were prevalent.\n Here is a meticulously crafted appliqué quilt with decoration based on a rose\n design, a common motif from colonial times through the nineteenth century. Brilliant\n reds, green, and yellows contrast vividly with the white background, producing a\n decorative effect of great gaiety. The design is well composed, with four floral groups\n disposed evenly in the square center, or field, of the quilt. A paneled effect is achieved\n by the quilting pattern -- a combination of shells and plumes -- that separates the floral\n groups and defines four subsidiary squares in the field. The entire field is surrounded by\n a continuous border of roses, repeating the form of those in the center. The fluid curves\n of the border echo the scrolling forms of the central flowers and of the background\n quilting as well. Here, appliqué decoration and quilting are perfectly balanced to create\n a design of outstanding decorative interest.\n ' +p15359 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a00002bd.jpg' +p15360 +sg2 +S'Quilt' +p15361 +sg4 +S'Marion Curtiss' +p15362 +sa(dp15363 +g12 +g27 +sg2 +S'Applique Quilt' +p15364 +sg4 +S'Artist Information (' +p15365 +sa(dp15366 +g12 +g27 +sg2 +S'Quilt' +p15367 +sg4 +S'Therkel Anderson' +p15368 +sa(dp15369 +g12 +g27 +sg2 +S'Quilt' +p15370 +sg4 +S'Therkel Anderson' +p15371 +sa(dp15372 +g12 +g27 +sg2 +S'Quilt' +p15373 +sg4 +S'Therkel Anderson' +p15374 +sa(dp15375 +g12 +g27 +sg2 +S'Quilt' +p15376 +sg4 +S'Therkel Anderson' +p15377 +sa(dp15378 +g12 +g27 +sg2 +S'Quilt Block' +p15379 +sg4 +S'Charlotte Angus' +p15380 +sa(dp15381 +g12 +g27 +sg2 +S'Quilt Block Pattern' +p15382 +sg4 +S'Charlotte Angus' +p15383 +sa(dp15384 +g12 +g27 +sg2 +S'Pepperberry Quilt' +p15385 +sg4 +S'Ralph Atkinson' +p15386 +sa(dp15387 +g12 +g27 +sg2 +S'Quilt' +p15388 +sg4 +S'Katherine Hastings' +p15389 +sa(dp15390 +g2 +S'Voltaire' +p15391 +sg4 +S'Jean-Antoine Houdon' +p15392 +sg6 +S'marble' +p15393 +sg8 +S'1778' +p15394 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c0e.jpg' +p15395 +sg12 +g27 +sa(dp15396 +g12 +g27 +sg2 +S'Valance for Tester' +p15397 +sg4 +S'Charlotte Angus' +p15398 +sa(dp15399 +g12 +g27 +sg2 +S'Patchwork Squares' +p15400 +sg4 +S'Charlotte Angus' +p15401 +sa(dp15402 +g12 +g27 +sg2 +S'Quilt' +p15403 +sg4 +S'Katherine Hastings' +p15404 +sa(dp15405 +g12 +g27 +sg2 +S'Quilt - Meadow Lily Variant' +p15406 +sg4 +S'C.H. Hastings' +p15407 +sa(dp15408 +g12 +g27 +sg2 +S'Quilt - Basket Design' +p15409 +sg4 +S'Edward White' +p15410 +sa(dp15411 +g12 +g27 +sg2 +S'Quilt - Garden Wreath' +p15412 +sg4 +S'Katherine Hastings' +p15413 +sa(dp15414 +g12 +g27 +sg2 +S'Quilt' +p15415 +sg4 +S'Genevieve Jordan' +p15416 +sa(dp15417 +g12 +g27 +sg2 +S'Quilt (Red and Green Leaves)' +p15418 +sg4 +S'Charles Roadman' +p15419 +sa(dp15420 +g12 +g27 +sg2 +S'Quilt' +p15421 +sg4 +S'Eva Wilson' +p15422 +sa(dp15423 +g12 +g27 +sg2 +S'Quilt' +p15424 +sg4 +S'Eva Wilson' +p15425 +sa(dp15426 +g2 +S'Bust of a Little Girl' +p15427 +sg4 +S'Jacques-Fran\xc3\xa7ois-Joseph Saly' +p15428 +sg6 +S'bronze' +p15429 +sg8 +S'model 1744, cast probably 1750/1753' +p15430 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c21.jpg' +p15431 +sg12 +g27 +sa(dp15432 +g12 +g27 +sg2 +S'Quilt' +p15433 +sg4 +S'Katherine Hastings' +p15434 +sa(dp15435 +g12 +g27 +sg2 +S'Quilt' +p15436 +sg4 +S'Betty Jacob' +p15437 +sa(dp15438 +g12 +g27 +sg2 +S'Pillow top Insert' +p15439 +sg4 +S'Albert Ryder' +p15440 +sa(dp15441 +g12 +g27 +sg2 +S'Pillow Top Insert' +p15442 +sg4 +S'Albert Ryder' +p15443 +sa(dp15444 +g12 +g27 +sg2 +S'Pillow Top Insert' +p15445 +sg4 +S'Albert Ryder' +p15446 +sa(dp15447 +g12 +g27 +sg2 +S'Pillow Top Insert' +p15448 +sg4 +S'Henry Murphy' +p15449 +sa(dp15450 +g12 +g27 +sg10 +S'http://www.nga.gov:80/thumb-l/a00055/a000553c.jpg' +p15451 +sg2 +S'Crazy Quilt: Detail' +p15452 +sg4 +S'Esther Molina' +p15453 +sa(dp15454 +g12 +g27 +sg2 +S'Friendship Quilt Block' +p15455 +sg4 +S'Florence Truelson' +p15456 +sa(dp15457 +g12 +g27 +sg2 +S'Block from Friendship Quilt' +p15458 +sg4 +S'Florence Truelson' +p15459 +sa(dp15460 +g12 +g27 +sg2 +S'Quilt' +p15461 +sg4 +S'Clyde L. Cheney' +p15462 +sa(dp15463 +g2 +S"Ferdinando II de' Medici, Grand Duke of Tuscany" +p15464 +sg4 +S'Giovanni Battista Foggini' +p15465 +sg6 +S'marble' +p15466 +sg8 +S'c. 1690' +p15467 +sg10 +S'http://www.nga.gov:80/thumb-l/a00034/a0003405.jpg' +p15468 +sg12 +g27 +sa(dp15469 +g12 +g27 +sg2 +S'Hand Made Quilt' +p15470 +sg4 +S'Wilford H. Shurtliff' +p15471 +sa(dp15472 +g12 +g27 +sg2 +S'Quilt' +p15473 +sg4 +S'Clyde L. Cheney' +p15474 +sa(dp15475 +g12 +g27 +sg2 +S'Friendship Quilt Block' +p15476 +sg4 +S'Florence Truelson' +p15477 +sa(dp15478 +g12 +g27 +sg2 +S'Quilt Block - "E. Cooper" Design' +p15479 +sg4 +S'Florence Truelson' +p15480 +sa(dp15481 +g12 +g27 +sg2 +S'Quilt Block: "Constancy"' +p15482 +sg4 +S'Florence Truelson' +p15483 +sa(dp15484 +g12 +g27 +sg2 +S'Quilt Block' +p15485 +sg4 +S'Frank Maurer' +p15486 +sa(dp15487 +g12 +g27 +sg2 +S'Patchwork Quilt - Section' +p15488 +sg4 +S'Florence Truelson' +p15489 +sa(dp15490 +g12 +g27 +sg2 +S'Patchwork Quilt' +p15491 +sg4 +S'Florence Truelson' +p15492 +sa(dp15493 +g12 +g27 +sg2 +S'Patchwork Quilt (Section)' +p15494 +sg4 +S'Florence Truelson' +p15495 +sa(dp15496 +g12 +g27 +sg2 +S'Quilt Section - Patchwork' +p15497 +sg4 +S'Florence Truelson' +p15498 +sa(dp15499 +g2 +S'Vittoria della Rovere, Wife of Ferdinando II' +p15500 +sg4 +S'Giovanni Battista Foggini' +p15501 +sg6 +S'marble' +p15502 +sg8 +S'c. 1690' +p15503 +sg10 +S'http://www.nga.gov:80/thumb-l/a00034/a0003406.jpg' +p15504 +sg12 +g27 +sa(dp15505 +g12 +g27 +sg2 +S'Silk Quilt - Roman Stripe' +p15506 +sg4 +S'Elgin Moncure Styll' +p15507 +sa(dp15508 +g12 +g27 +sg2 +S'Silk Quilt - "Honeycomb" Pattern' +p15509 +sg4 +S'Elgin Moncure Styll' +p15510 +sa(dp15511 +g12 +g27 +sg2 +S'Silk Bed Quilt' +p15512 +sg4 +S'Elgin Moncure Styll' +p15513 +sa(dp15514 +g12 +g27 +sg2 +S'Cotton Bed Quilt' +p15515 +sg4 +S'Elgin Moncure Styll' +p15516 +sa(dp15517 +g12 +g27 +sg2 +S'Patchwork Quilt' +p15518 +sg4 +S'Elgin Moncure Styll' +p15519 +sa(dp15520 +g12 +g27 +sg2 +S'Calico Quilt (Patchwork)' +p15521 +sg4 +S'Renee A. Monfalcone' +p15522 +sa(dp15523 +g12 +g27 +sg2 +S'Applique Quilt (Friendship Quilt, or "Baltimo re Bride\'s Quilt")' +p15524 +sg4 +S'Mary Ann Burton' +p15525 +sa(dp15526 +g12 +g27 +sg2 +S'Quilt' +p15527 +sg4 +S'Jacob Gielens' +p15528 +sa(dp15529 +g12 +g27 +sg2 +S'Patchwork Quilting' +p15530 +sg4 +S'Harvey Thoss' +p15531 +sa(dp15532 +g12 +g27 +sg2 +S'Towel' +p15533 +sg4 +S'John Hall' +p15534 +sa(dp15535 +g2 +S'Lodovico Sforza, Duke of Bari' +p15536 +sg4 +S'Benedetto Briosco' +p15537 +sg6 +S'marble' +p15538 +sg8 +S'early 1490s' +p15539 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d71.jpg' +p15540 +sg12 +g27 +sa(dp15541 +g2 +S'Relief from an Altar or Tabernacle' +p15542 +sg4 +S'Benedetto da Rovezzano' +p15543 +sg6 +S'marble' +p15544 +sg8 +S'c. 1507/1512' +p15545 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d6e.jpg' +p15546 +sg12 +g27 +sa(dp15547 +g12 +g27 +sg2 +S'Crocheted Lace' +p15548 +sg4 +S'Lena Nastasi' +p15549 +sa(dp15550 +g12 +g27 +sg2 +S'Lace' +p15551 +sg4 +S'Gordena Jackson' +p15552 +sa(dp15553 +g12 +g27 +sg2 +S'Macrame/Lace' +p15554 +sg4 +S'Bertha Semple' +p15555 +sa(dp15556 +g12 +g27 +sg2 +S'Afghan (detail)' +p15557 +sg4 +S'Ethel Dougan' +p15558 +sa(dp15559 +g12 +g27 +sg2 +S'Afghan' +p15560 +sg4 +S'Ethel Dougan' +p15561 +sa(dp15562 +g12 +g27 +sg2 +S'Tie and Cuff' +p15563 +sg4 +S'Lillian Causey' +p15564 +sa(dp15565 +g12 +g27 +sg2 +S'Lace' +p15566 +sg4 +S'Erwin Schwabe' +p15567 +sa(dp15568 +g12 +g27 +sg2 +S'Crochet Doily' +p15569 +sg4 +S'Herbert Marsh' +p15570 +sa(dp15571 +g12 +g27 +sg2 +S'Doily' +p15572 +sg4 +S'Frank Nelson' +p15573 +sa(dp15574 +g12 +g27 +sg2 +S'Cotton Thread Scarf' +p15575 +sg4 +S'Walter W. Jennings' +p15576 +sa(dp15577 +g12 +g27 +sg6 +S'Italian, 1500/1510 - 1577' +p15578 +sg8 +S'(related artist)' +p15579 +sg2 +S'Cup with Allegorical Scenes and Shields of Este Arms' +p15580 +sg4 +S'Artist Information (' +p15581 +sa(dp15582 +g12 +g27 +sg2 +S'Lace Detail' +p15583 +sg4 +S'Edith Miller' +p15584 +sa(dp15585 +g12 +g27 +sg2 +S'Embroidered Lace' +p15586 +sg4 +S'Florence Stevenson' +p15587 +sa(dp15588 +g12 +g27 +sg2 +S'Lace Trim' +p15589 +sg4 +S'Walter W. Jennings' +p15590 +sa(dp15591 +g12 +g27 +sg2 +S'Lace Edging' +p15592 +sg4 +S'Marie Famularo' +p15593 +sa(dp15594 +g12 +g27 +sg2 +S'Lace Edging' +p15595 +sg4 +S'Raymond Guterl' +p15596 +sa(dp15597 +g12 +g27 +sg2 +S'Doily' +p15598 +sg4 +S'Frank Nelson' +p15599 +sa(dp15600 +g12 +g27 +sg2 +S'Lace' +p15601 +sg4 +S'Carl Buergerniss' +p15602 +sa(dp15603 +g12 +g27 +sg2 +S'Embroidered Flower Motif' +p15604 +sg4 +S'Carl Buergerniss' +p15605 +sa(dp15606 +g12 +g27 +sg2 +S'Lace Collar' +p15607 +sg4 +S'Walter W. Jennings' +p15608 +sa(dp15609 +g12 +g27 +sg2 +S'Lace Collar' +p15610 +sg4 +S'Grace Halpin' +p15611 +sa(dp15612 +g2 +S'A Companion of Diana' +p15613 +sg4 +S'Jean-Louis Lemoyne' +p15614 +sg6 +S'marble' +p15615 +sg8 +S'1724' +p15616 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c13.jpg' +p15617 +sg12 +S"A few of the National Gallery's sculptures were conceived for display outdoors; one of the\nfinest such works is this \n In classical mythology Diana was goddess of the moon and of the hunt. Her woodland\ncompanions were nymphs like this one, appropriate denizens for a royal hunting preserve.\nLemoyne's \n With a dancing step, the girl seems barely to touch the ground as she lifts the leash to signal\nthe beginning of the chase. In amusement and affection she smiles down at her hound and,\nincidentally at the viewer, who would have seen her on a high pedestal.\n " +p15618 +sa(dp15619 +g12 +g27 +sg2 +S'Cuff Lace' +p15620 +sg4 +S'Erwin Schwabe' +p15621 +sa(dp15622 +g12 +g27 +sg2 +S'Lace Collar' +p15623 +sg4 +S'Richard Whitaker' +p15624 +sa(dp15625 +g12 +g27 +sg2 +S'Cutwork Lace Bib' +p15626 +sg4 +S'Richard Whitaker' +p15627 +sa(dp15628 +g12 +g27 +sg2 +S'Linen Square' +p15629 +sg4 +S'Maud Schmid' +p15630 +sa(dp15631 +g12 +g27 +sg2 +S'Curtain Tassel' +p15632 +sg4 +S'J. Howard Iams' +p15633 +sa(dp15634 +g12 +g27 +sg2 +S'Lace Scarf' +p15635 +sg4 +S'Katherine Hastings' +p15636 +sa(dp15637 +g12 +g27 +sg2 +S'Silk Lace' +p15638 +sg4 +S'Florence Truelson' +p15639 +sa(dp15640 +g12 +g27 +sg2 +S'Knitted Lace Edging' +p15641 +sg4 +S'Frank J. Mace' +p15642 +sa(dp15643 +g12 +g27 +sg2 +S'Afghan' +p15644 +sg4 +S'Renee A. Monfalcone' +p15645 +sa(dp15646 +g12 +g27 +sg2 +S'Woven Brocade (Chair Covers)' +p15647 +sg4 +S'Dorothy Kiernan' +p15648 +sa(dp15649 +g2 +S'The Young Saint John the Baptist' +p15650 +sg4 +S'Artist Information (' +p15651 +sg6 +S'(sculptor)' +p15652 +sg8 +S'\n' +p15653 +sg10 +S'http://www.nga.gov:80/thumb-l/a00055/a0005582.jpg' +p15654 +sg12 +g27 +sa(dp15655 +g12 +g27 +sg2 +S'Dress' +p15656 +sg4 +S'Rosalia Lane' +p15657 +sa(dp15658 +g12 +g27 +sg2 +S'Dress' +p15659 +sg4 +S'Ruggiero Pierotti' +p15660 +sa(dp15661 +g12 +g27 +sg2 +S'Mision Santa Margarita' +p15662 +sg4 +S'James Jones' +p15663 +sa(dp15664 +g12 +g27 +sg2 +S'Dressing Gown' +p15665 +sg4 +S'Sylvia De Zon' +p15666 +sa(dp15667 +g12 +g27 +sg2 +S'Sleeveless Jacket' +p15668 +sg4 +S'American 20th Century' +p15669 +sa(dp15670 +g12 +g27 +sg2 +S'Coverlet Detail' +p15671 +sg4 +S'Miriam Y. Solomon' +p15672 +sa(dp15673 +g12 +g27 +sg2 +S'Blouse' +p15674 +sg4 +S'Mrs. Inez Montgomery' +p15675 +sa(dp15676 +g12 +g27 +sg2 +S'Patchwork Picture: "Gossips"' +p15677 +sg4 +S'Carmel Wilson' +p15678 +sa(dp15679 +g12 +g27 +sg2 +S'Coverlet' +p15680 +sg4 +S'Magnus S. Fossum' +p15681 +sa(dp15682 +g12 +g27 +sg2 +S'Linen and Cotton Homespun' +p15683 +sg4 +S'Mabel S. Kelton' +p15684 +sa(dp15685 +g2 +S'Astorgio Manfredi' +p15686 +sg4 +S'Mino da Fiesole' +p15687 +sg6 +S'marble' +p15688 +sg8 +S'1455' +p15689 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c3f.jpg' +p15690 +sg12 +S'Mino da Fiesole and his patrons, the Medici family of Florence,\r\nwere pioneers in the revival of an ancient Roman art\r\nform—the independent portrait bust. The subject of this\r\nwork, Astorgio Manfredi, was a \n Manfredi is depicted as a man of action. With deeply\r\nincised eyes set beneath a furrowed brow, he gazes intently\r\ninto the distance. His face sags softly under his chin; deep\r\nvertical folds cut into the flesh of his cheeks. Over a shirt\r\nof intricately carved chain mail, Manfredi wears a richly\r\nembossed breastplate. An inscription on the underside of\r\nthe work—one of the earliest to be found on a Renaissance\r\nportrait bust—identifies the sitter, artist, and date of completion:\r\nASTORGIVS. MANFREDVS. SECVNDVS. FAVENTIE.\r\nDOMINVS./ ANNO. XLII. ETATIS SVE./ 1455./ OPVS. NINI.\r\n(“Astorgio II Manfredi, Lord of Faenza, in the 42nd year of\r\nhis age, 1455, the work of Nino.”) The spelling here of Mino’s\r\nname as Nino remains unexplained.\n ' +p15691 +sa(dp15692 +g12 +g27 +sg2 +S'Woven Coverlet' +p15693 +sg4 +S'John Gasaway' +p15694 +sa(dp15695 +g12 +g27 +sg2 +S'Coverlet' +p15696 +sg4 +S'Charles Goodwin' +p15697 +sa(dp15698 +g12 +g27 +sg2 +S'Underneath Cloth' +p15699 +sg4 +S'Marie Alain' +p15700 +sa(dp15701 +g12 +g27 +sg2 +S'Stenciled Table Cover' +p15702 +sg4 +S'Marie Alain' +p15703 +sa(dp15704 +g12 +g27 +sg2 +S'Handwoven Curtain' +p15705 +sg4 +S'Alfred Denghausen' +p15706 +sa(dp15707 +g12 +g27 +sg2 +S'Woven Covering for Chair Seat' +p15708 +sg4 +S'Elizabeth Moutal' +p15709 +sa(dp15710 +g12 +g27 +sg2 +S'Shaker Tablecloth' +p15711 +sg4 +S'George Constantine' +p15712 +sa(dp15713 +g12 +S'In colonial times, the home was the center of textile production, which began with the\n sowing of seed for flax and the raising of sheep for wool. Long hours were spent\n in preparing the fibers, spinning them into yarn, dyeing or bleaching the yarn, and then\n weaving the fabrics needed to clothe family members and to provide the basic\n material for bedding and other household articles. Home-woven fabrics, like this piece\n of linen, were called homespun, and were generally plain in weave. Although early\n fabrics were often of only one color -- being woven from either bleached linen or wool,\n or from yarns dyed with colors derived from common garden plants and\n trees -- some American women enlivened their products by using combinations\n of colored yarns to produce handsome designs. Simple geometric patterns could\n be created on home looms; thus, striped or checked designs, as seen here, are a\n common feature of homespun fabric.\n ' +p15714 +sg10 +S'http://www.nga.gov:80/thumb-l/a00003/a000033d.jpg' +p15715 +sg2 +S"Shaker Man's Handkerchief" +p15716 +sg4 +S'George Constantine' +p15717 +sa(dp15718 +g12 +g27 +sg2 +S'Shaker Tablecloth' +p15719 +sg4 +S'Elizabeth Moutal' +p15720 +sa(dp15721 +g12 +g27 +sg2 +S"Man's Dressing Gown" +p15722 +sg4 +S'Jessie M. Benge' +p15723 +sa(dp15724 +g12 +g27 +sg6 +S'overall: 20.2 x 17.5 x 9.5 cm (7 15/16 x 6 7/8 x 3 3/4 in.)' +p15725 +sg8 +S'\nbronze' +p15726 +sg2 +S'Bust of a Man' +p15727 +sg4 +S'North Italian 16th Century' +p15728 +sa(dp15729 +g12 +g27 +sg2 +S'Textile' +p15730 +sg4 +S'Grace Halpin' +p15731 +sa(dp15732 +g12 +g27 +sg2 +S'Homespun Tablecloth' +p15733 +sg4 +S'Paul Ward' +p15734 +sa(dp15735 +g12 +g27 +sg2 +S'Material used in Costume' +p15736 +sg4 +S'Isabelle De Strange' +p15737 +sa(dp15738 +g12 +g27 +sg2 +S'Table Napkin' +p15739 +sg4 +S'Arthur G. Merkley' +p15740 +sa(dp15741 +g12 +g27 +sg2 +S'Homespun Cotton Textile' +p15742 +sg4 +S'Percival Jenner' +p15743 +sa(dp15744 +g12 +g27 +sg2 +S'Tablecloth' +p15745 +sg4 +S'Isabelle De Strange' +p15746 +sa(dp15747 +g12 +g27 +sg2 +S'Piece of Handwoven Linen' +p15748 +sg4 +S'Daniel Fletcher' +p15749 +sa(dp15750 +g12 +g27 +sg2 +S'Piece of Linen' +p15751 +sg4 +S'Maud Schmid' +p15752 +sa(dp15753 +g12 +g27 +sg2 +S'Piece of Linen' +p15754 +sg4 +S'Daniel Fletcher' +p15755 +sa(dp15756 +g12 +g27 +sg2 +S'Hand Woven Linen' +p15757 +sg4 +S'Daniel Fletcher' +p15758 +sa(dp15759 +g2 +S'A Warrior' +p15760 +sg4 +S'Paduan 16th Century' +p15761 +sg6 +S'overall: 17.3 x 13.7 x 10.7 cm (6 13/16 x 5 3/8 x 4 3/16 in.)' +p15762 +sg8 +S'\nbronze' +p15763 +sg10 +S'http://www.nga.gov:80/thumb-l/a000df/a000dfc5.jpg' +p15764 +sg12 +g27 +sa(dp15765 +g12 +g27 +sg2 +S'Red and White Table Napkin' +p15766 +sg4 +S'Arthur G. Merkley' +p15767 +sa(dp15768 +g12 +g27 +sg2 +S'Linen Luncheon Set' +p15769 +sg4 +S'Edith Olney' +p15770 +sa(dp15771 +g12 +g27 +sg2 +S'Silk Scarf' +p15772 +sg4 +S'Marie Lutrell' +p15773 +sa(dp15774 +g12 +g27 +sg2 +S'Textile' +p15775 +sg4 +S'Pearl Gibbo' +p15776 +sa(dp15777 +g12 +g27 +sg2 +S'Linen Towel - Flower Design' +p15778 +sg4 +S'Eva Wilson' +p15779 +sa(dp15780 +g12 +g27 +sg2 +S'Linen Towel - Flower Design' +p15781 +sg4 +S'Eva Wilson' +p15782 +sa(dp15783 +g12 +g27 +sg2 +S'Table Cover' +p15784 +sg4 +S'Dorothy Posten' +p15785 +sa(dp15786 +g12 +g27 +sg2 +S'Cotton Towel - Blue Border and Fringe' +p15787 +sg4 +S'Eva Wilson' +p15788 +sa(dp15789 +g12 +g27 +sg2 +S'Linen Towel' +p15790 +sg4 +S'Eva Wilson' +p15791 +sa(dp15792 +g12 +g27 +sg2 +S'Linen Towel' +p15793 +sg4 +S'Eva Wilson' +p15794 +sa(dp15795 +g2 +S'Seated Female Figure' +p15796 +sg4 +S'North Italian 16th Century' +p15797 +sg6 +S'overall: 19 x 13.2 x 13.3 cm (7 1/2 x 5 3/16 x 5 1/4 in.)' +p15798 +sg8 +S'\nbronze' +p15799 +sg10 +S'http://www.nga.gov:80/thumb-l/a00055/a0005583.jpg' +p15800 +sg12 +g27 +sa(dp15801 +g12 +g27 +sg2 +S'Cotton Towel' +p15802 +sg4 +S'Eva Wilson' +p15803 +sa(dp15804 +g12 +g27 +sg2 +S'Linen - Red Border with Sunflower' +p15805 +sg4 +S'Eva Wilson' +p15806 +sa(dp15807 +g12 +g27 +sg2 +S'Linen Towel - Brown Border' +p15808 +sg4 +S'Eva Wilson' +p15809 +sa(dp15810 +g12 +g27 +sg2 +S'Textile' +p15811 +sg4 +S'Esther Martindale' +p15812 +sa(dp15813 +g12 +g27 +sg2 +S'Wool Cloth' +p15814 +sg4 +S'Esther Martindale' +p15815 +sa(dp15816 +g12 +g27 +sg2 +S'Woven Striped Linsey Wooley' +p15817 +sg4 +S'Clyde L. Cheney' +p15818 +sa(dp15819 +g12 +g27 +sg2 +S'Textile' +p15820 +sg4 +S'Clyde L. Cheney' +p15821 +sa(dp15822 +g12 +g27 +sg2 +S'Textile' +p15823 +sg4 +S'Frank Maurer' +p15824 +sa(dp15825 +g12 +g27 +sg2 +S'Wool Cushion Top' +p15826 +sg4 +S'Frank J. Mace' +p15827 +sa(dp15828 +g12 +g27 +sg2 +S'Woolen Cloth' +p15829 +sg4 +S'Frank J. Mace' +p15830 +sa(dp15831 +g12 +g27 +sg6 +g27 +sg8 +S'(sculptor)' +p15832 +sg2 +S'Incense Burner' +p15833 +sg4 +S'Artist Information (' +p15834 +sa(dp15835 +g12 +g27 +sg2 +S'Coverlet' +p15836 +sg4 +S'Ann Belle N. Eubank' +p15837 +sa(dp15838 +g12 +g27 +sg2 +S'Coverlet Detail' +p15839 +sg4 +S'Annie L. Vaughn' +p15840 +sa(dp15841 +g12 +g27 +sg2 +S'Blue Silk Scarf' +p15842 +sg4 +S'Samuel Faigin' +p15843 +sa(dp15844 +g12 +g27 +sg2 +S'Woven Textile' +p15845 +sg4 +S'Cornelius Christoffels' +p15846 +sa(dp15847 +g12 +g27 +sg2 +S'Handwoven Coverlet' +p15848 +sg4 +S'Howard H. Sherman' +p15849 +sa(dp15850 +g12 +g27 +sg2 +S'Coverlet Detail' +p15851 +sg4 +S'Ruth M. Barnes' +p15852 +sa(dp15853 +g12 +g27 +sg2 +S'Coverlet Detail' +p15854 +sg4 +S'Ruth M. Barnes' +p15855 +sa(dp15856 +g12 +g27 +sg2 +S'Coverlet (Reverse Side)' +p15857 +sg4 +S'Ruth M. Barnes' +p15858 +sa(dp15859 +g12 +g27 +sg2 +S'Coverlet (Section)' +p15860 +sg4 +S'Ruth M. Barnes' +p15861 +sa(dp15862 +g12 +g27 +sg2 +S'Coverlet (Detail)' +p15863 +sg4 +S'Ruth M. Barnes' +p15864 +sa(dp15865 +g2 +S'Inkstand with Bound Satyrs and Three Labors of Hercules' +p15866 +sg4 +S'North Italian 16th Century' +p15867 +sg6 +S'overall: 24.9 x 19 x 16 cm (9 13/16 x 7 1/2 x 6 5/16 in.)' +p15868 +sg8 +S'\nbronze' +p15869 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d86.jpg' +p15870 +sg12 +g27 +sa(dp15871 +g12 +g27 +sg2 +S'Handwoven Coverlet' +p15872 +sg4 +S'Howard H. Sherman' +p15873 +sa(dp15874 +g12 +g27 +sg2 +S'Coverlet (Section)' +p15875 +sg4 +S'Ruth M. Barnes' +p15876 +sa(dp15877 +g12 +g27 +sg2 +S'Coverlet (Section of)' +p15878 +sg4 +S'Cornelius Christoffels' +p15879 +sa(dp15880 +g12 +g27 +sg2 +S'Coverlet' +p15881 +sg4 +S'Cornelius Christoffels' +p15882 +sa(dp15883 +g12 +g27 +sg2 +S'Coverlet (Section)' +p15884 +sg4 +S'Cornelius Christoffels' +p15885 +sa(dp15886 +g12 +g27 +sg2 +S'Coverlet Detail' +p15887 +sg4 +S'Cornelius Christoffels' +p15888 +sa(dp15889 +g12 +g27 +sg2 +S'Coverlet' +p15890 +sg4 +S'Cornelius Christoffels' +p15891 +sa(dp15892 +g12 +g27 +sg2 +S'Coverlet' +p15893 +sg4 +S'Cornelius Christoffels' +p15894 +sa(dp15895 +g12 +g27 +sg2 +S'Coverlet' +p15896 +sg4 +S'Cornelius Christoffels' +p15897 +sa(dp15898 +g12 +g27 +sg2 +S'Coverlet' +p15899 +sg4 +S'Cornelius Christoffels' +p15900 +sa(dp15901 +g2 +S'Gian Galeazzo Maria Sforza, Duke of Milan' +p15902 +sg4 +S'Artist Information (' +p15903 +sg6 +S'Italian, active 1477 - after 1514' +p15904 +sg8 +S'(related artist)' +p15905 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d72.jpg' +p15906 +sg12 +g27 +sa(dp15907 +g2 +S'Madonna and Child' +p15908 +sg4 +S'Luca della Robbia' +p15909 +sg6 +S'glazed terracotta' +p15910 +sg8 +S'c. 1475' +p15911 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d7d.jpg' +p15912 +sg12 +g27 +sa(dp15913 +g12 +g27 +sg2 +S'Coverlet Detail' +p15914 +sg4 +S'Ruth M. Barnes' +p15915 +sa(dp15916 +g12 +g27 +sg2 +S'Coverlet Detail "Farmer\'s Fancy"' +p15917 +sg4 +S'Ruth M. Barnes' +p15918 +sa(dp15919 +g12 +g27 +sg2 +S'Coverlet Detail "Farmer\'s Fancy"' +p15920 +sg4 +S'Ruth M. Barnes' +p15921 +sa(dp15922 +g12 +g27 +sg2 +S'Coverlet' +p15923 +sg4 +S'Cornelius Christoffels' +p15924 +sa(dp15925 +g12 +g27 +sg2 +S'Coverlet - Section of Right Side' +p15926 +sg4 +S'Cornelius Christoffels' +p15927 +sa(dp15928 +g12 +g27 +sg2 +S'Coverlet - Section of Reverse Side' +p15929 +sg4 +S'Cornelius Christoffels' +p15930 +sa(dp15931 +g12 +g27 +sg2 +S'Coverlet - Section of Reverse Side' +p15932 +sg4 +S'Cornelius Christoffels' +p15933 +sa(dp15934 +g12 +g27 +sg2 +S'Mision Santa Margarita' +p15935 +sg4 +S'James Jones' +p15936 +sa(dp15937 +g12 +g27 +sg2 +S'Coverlet (Section)' +p15938 +sg4 +S'Cornelius Christoffels' +p15939 +sa(dp15940 +g12 +g27 +sg2 +S'Coverlet (Section)' +p15941 +sg4 +S'Cornelius Christoffels' +p15942 +sa(dp15943 +g2 +S'The Young Saint John the Baptist' +p15944 +sg4 +S'Artist Information (' +p15945 +sg6 +S'Italian, c. 1429 - 1464' +p15946 +sg8 +S'(related artist)' +p15947 +sg10 +S'http://www.nga.gov:80/thumb-l/a00066/a00066ad.jpg' +p15948 +sg12 +g27 +sa(dp15949 +g12 +g27 +sg2 +S'Coverlet' +p15950 +sg4 +S'Cornelius Christoffels' +p15951 +sa(dp15952 +g12 +g27 +sg2 +S'Coverlet (Section)' +p15953 +sg4 +S'Cornelius Christoffels' +p15954 +sa(dp15955 +g12 +g27 +sg2 +S'Coverlet Detail' +p15956 +sg4 +S'Ruth M. Barnes' +p15957 +sa(dp15958 +g12 +g27 +sg2 +S'Coverlet' +p15959 +sg4 +S'Cornelius Christoffels' +p15960 +sa(dp15961 +g12 +g27 +sg2 +S'Coverlet' +p15962 +sg4 +S'Cornelius Christoffels' +p15963 +sa(dp15964 +g12 +g27 +sg2 +S'Coverlet Detail' +p15965 +sg4 +S'Ruth M. Barnes' +p15966 +sa(dp15967 +g12 +S'Although American women continued to weave articles for their families, by the late\n colonial period, much weaving was done by itinerant professional weavers.\n Woven coverlets, or bed coverings, were, perhaps, the most handsome products\n of both the housewives and the journeymen weavers. From the late seventeenth\n century until about 1850, overshot coverlets like this example were popular.\n The overshot weave was relatively simple, though more complex than the plain\n homespun weave. There was one warp yarn, usually a two-ply linen or cotton,\n a binder weft yarn in the same material as the warp, but often single ply, and\n a pattern weft, which was of colored woolen yarn. The term "overshot" means\n that the supplementary weft patterning thread is "shot," or floated, over the plain\n warp threads, creating areas of solid color that stand out above a plain supporting\n weave. The overshot weft threads, seen here as a combination of blue and red yarns,\n create variations in texture as well as pattern and produce the lively geometric surfaces\n that are characteristic of overshot coverlets. The patterns for these coverlets were\n largely traditional and were based on written drafts, or pattern guides, brought to\n America by European, English, and Scandinavian settlers. These drafts resemble\n musical notations, and, appropriately, the coverlets woven from them are, like this\n example, strikingly rhythmic in design.\n ' +p15968 +sg10 +S'http://www.nga.gov:80/thumb-l/a00003/a000033e.jpg' +p15969 +sg2 +S'Coverlet' +p15970 +sg4 +S'Ruth M. Barnes' +p15971 +sa(dp15972 +g12 +g27 +sg2 +S'Coverlet' +p15973 +sg4 +S'Ruth M. Barnes' +p15974 +sa(dp15975 +g12 +g27 +sg2 +S'Coverlet (Section of)' +p15976 +sg4 +S'William Kieckhofel' +p15977 +sa(dp15978 +g12 +g27 +sg2 +S'Coverlet (Section of)' +p15979 +sg4 +S'Ruth M. Barnes' +p15980 +sa(dp15981 +g12 +g27 +sg6 +S'overall: 79.2 x 37.6 cm (31 3/16 x 14 13/16 in.)' +p15982 +sg8 +S'\nbronze' +p15983 +sg2 +S'Andiron with Figure of Jupiter' +p15984 +sg4 +S'Italian 17th/19th Century' +p15985 +sa(dp15986 +g12 +g27 +sg2 +S'Coverlet' +p15987 +sg4 +S'Cornelius Christoffels' +p15988 +sa(dp15989 +g12 +g27 +sg2 +S'Coverlet' +p15990 +sg4 +S'Cornelius Christoffels' +p15991 +sa(dp15992 +g12 +g27 +sg2 +S'Coverlet' +p15993 +sg4 +S'Cornelius Christoffels' +p15994 +sa(dp15995 +g12 +g27 +sg2 +S'Coverlet (Section)' +p15996 +sg4 +S'Cornelius Christoffels' +p15997 +sa(dp15998 +g12 +g27 +sg2 +S'Coverlet' +p15999 +sg4 +S'Cornelius Christoffels' +p16000 +sa(dp16001 +g12 +g27 +sg2 +S'Coverlet' +p16002 +sg4 +S'Cornelius Christoffels' +p16003 +sa(dp16004 +g12 +g27 +sg2 +S'Coverlet' +p16005 +sg4 +S'Cornelius Christoffels' +p16006 +sa(dp16007 +g12 +g27 +sg2 +S'Handwoven Coverlet (Detail)' +p16008 +sg4 +S'Fred Peterson' +p16009 +sa(dp16010 +g12 +g27 +sg2 +S'Mision Santa Margarita' +p16011 +sg4 +S'James Jones' +p16012 +sa(dp16013 +g12 +g27 +sg2 +S'Coverlet' +p16014 +sg4 +S'Margaret Stottlemeyer' +p16015 +sa(dp16016 +g12 +g27 +sg6 +S'overall: 79.6 x 37.6 cm (31 5/16 x 14 13/16 in.)' +p16017 +sg8 +S'\nbronze' +p16018 +sg2 +S'Andiron with Figure of Juno' +p16019 +sg4 +S'Italian 17th/19th Century' +p16020 +sa(dp16021 +g12 +S'Here is a variation of the overshot weave. This coverlet is in the "summer-winter"\n weave, said to have been brought to America by the Pennsylvania German settlers,\n who used it frequently. Though more tightly woven than some overshot coverlets,\n the "summer-winter" weave pattern also depends upon weft threads floated over\n and under the structural weave. By alternating floating elements, a reversible fabric\n is formed. Notice that the corner of this coverlet has been folded back to reveal the\n light or "summer" side, which corresponds in pattern to the contrasting dark, or "winter"\n surface. As in other overshot coverlets, blue and red, combined with white or neutral\n yarns, dominate the design. Blue was frequently used in weaving, as in the indigo plant,\n from which the dye was made, was grown domestically and thus was readily available.\n In addition, imported indigo was sold inexpensively in shops and by itinerant peddlers.\n Second in popularity were reds, obtained from such common sources as sumac,\n madder roots, cherries, pokeberries, and the bloodroot plant.\n ' +p16022 +sg10 +S'http://www.nga.gov:80/thumb-l/a00000/a0000073.jpg' +p16023 +sg2 +S'Woven Coverlet' +p16024 +sg4 +S'Magnus S. Fossum' +p16025 +sa(dp16026 +g12 +g27 +sg2 +S'Woven Coverlet (Detail)' +p16027 +sg4 +S'Magnus S. Fossum' +p16028 +sa(dp16029 +g12 +g27 +sg2 +S'Woven Coverlet' +p16030 +sg4 +S'Manuel G. Runyan' +p16031 +sa(dp16032 +g12 +g27 +sg2 +S'Handwoven Coverlet' +p16033 +sg4 +S'Magnus S. Fossum' +p16034 +sa(dp16035 +g12 +g27 +sg2 +S'Handwoven Coverlet' +p16036 +sg4 +S'Maud M. Holme' +p16037 +sa(dp16038 +g12 +S'Another type of woven coverlet is the double weave, or double cloth coverlet, a detail\n of which appears here. Most coverlets of this type were made between 1725 and 1825.\n Double weave coverlets were woven with two sets of warp and weft threads, resulting\n in two separate pieces of cloth interwoven at certain points. The double thickness\n made these coverlets heavy and particularly well suited to cold climates, where\n extremely warm bedding was a necessity. Unlike other woven coverlets, which had\n cotton or linen warp threads, wool was often used for both warp and weft in the double\n weave structure. The designs of double weave coverlets were generally geometrical\n and frequently featured a pine tree border. Notice that the border here is composed\n of a triple pine tree configuration. In these coverlets, the pine tree motif is often\n combined with a snowball design, as is evident here.\n ' +p16039 +sg10 +S'http://www.nga.gov:80/thumb-l/a00001/a00001cd.jpg' +p16040 +sg2 +S'Handwoven Coverlet' +p16041 +sg4 +S'Fred Hassebrock' +p16042 +sa(dp16043 +g12 +g27 +sg2 +S'Coverlet Fragment' +p16044 +sg4 +S'Alois E. Ulrich' +p16045 +sa(dp16046 +g12 +g27 +sg2 +S'Coverlet' +p16047 +sg4 +S'Lon Cronk' +p16048 +sa(dp16049 +g12 +g27 +sg2 +S'Coverlet' +p16050 +sg4 +S'Alois E. Ulrich' +p16051 +sa(dp16052 +g12 +g27 +sg2 +S'Woolen Coverlet' +p16053 +sg4 +S'Edward D. Williams' +p16054 +sa(dp16055 +g2 +S'A Jurist' +p16056 +sg4 +S'Paduan 16th Century' +p16057 +sg6 +S'overall: 82 x 71.5 x 34.3 cm (32 5/16 x 28 1/8 x 13 1/2 in.)' +p16058 +sg8 +S'\nbronze' +p16059 +sg10 +S'http://www.nga.gov:80/thumb-l/a0004a/a0004a04.jpg' +p16060 +sg12 +g27 +sa(dp16061 +g12 +g27 +sg2 +S'Coverlet' +p16062 +sg4 +S'Lon Cronk' +p16063 +sa(dp16064 +g12 +g27 +sg2 +S'Woven Coverlet' +p16065 +sg4 +S'Martha L. Lanscher' +p16066 +sa(dp16067 +g12 +g27 +sg2 +S'Woven Coverlet' +p16068 +sg4 +S'Martha L. Lanscher' +p16069 +sa(dp16070 +g12 +g27 +sg2 +S'Fragment of Comforter' +p16071 +sg4 +S'Hardin Walsh' +p16072 +sa(dp16073 +g12 +g27 +sg2 +S'Fragment of Comforter' +p16074 +sg4 +S'Donald Williams' +p16075 +sa(dp16076 +g12 +g27 +sg2 +S'Homespun Bedspread' +p16077 +sg4 +S'Julie C. Brush' +p16078 +sa(dp16079 +g12 +g27 +sg2 +S'Handspun Bedspread' +p16080 +sg4 +S'Julie C. Brush' +p16081 +sa(dp16082 +g12 +g27 +sg2 +S'Handwoven Coverlet' +p16083 +sg4 +S'Maud Schmid' +p16084 +sa(dp16085 +g12 +g27 +sg2 +S'Red, White & Blue Coverlet' +p16086 +sg4 +S'Arthur G. Merkley' +p16087 +sa(dp16088 +g12 +g27 +sg2 +S'Coverlet' +p16089 +sg4 +S'Arthur G. Merkley' +p16090 +sa(dp16091 +g2 +S'Agnesina Badoer Giustinian' +p16092 +sg4 +S'Venetian 16th Century' +p16093 +sg6 +S'overall: 52.8 x 49.5 x 27 cm (20 13/16 x 19 1/2 x 10 5/8 in.)' +p16094 +sg8 +S'\nbronze' +p16095 +sg10 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c61f.jpg' +p16096 +sg12 +S"Without the 16th-century costume or the bust\xc2\x92s ovoid shape, we might be tempted to ascribe these starkly realistic features to a conservative matron from Republican Rome, not the gilded republic of Renaissance Venice. And without the mantle loosely resting on her shoulders, we might mistake the sitter for a peasant, not a wealthy patrician. The elderly lady's intelligence and toughness are evident, her chin elevated in pride above a stout neck. The flesh of her face, with its asymmetrical features, seems to bear the imprint of experience and age. \n The unknown Venetian artist deftly captured the enduring vitality and mental acuity of his elderly subject—qualities that reflect what we know of her life. Agnesina Badoer Giustinian (c. 1472–1542) was a wealthy heiress and art patron. One of three children of Venetian patrician Girolamo Badoer, Agnesina lost both her brothers and first husband early in life. When her father died in 1497, she became the universal heir of her Badoer line and its fortune, including a residence in Venice and extensive properties on the mainland. She was remarried the same year to the patrician Girolamo Giustinian. From 1511 to 1513 Agnesina and her husband focused their energies on construction of an impressive villa—Castello di Roncade—on Badoer ancestral lands near Treviso.\n This startlingly realistic portrait is probably based on a mask of Agnesina's face taken at the time of her death, at about the age of 70. \n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n " +p16097 +sa(dp16098 +g12 +g27 +sg2 +S'Old Colonial Handwoven Bedspread' +p16099 +sg4 +S'Pearl Gibbo' +p16100 +sa(dp16101 +g12 +g27 +sg2 +S'Woven Coverlet' +p16102 +sg4 +S'Elizabeth Valentine' +p16103 +sa(dp16104 +g12 +g27 +sg2 +S'Handwoven Coverlet' +p16105 +sg4 +S'Dorothy Lacey' +p16106 +sa(dp16107 +g12 +g27 +sg2 +S'Coverlet' +p16108 +sg4 +S'Charles Roadman' +p16109 +sa(dp16110 +g12 +g27 +sg2 +S'Coverlet' +p16111 +sg4 +S'Betty Jacob' +p16112 +sa(dp16113 +g12 +g27 +sg2 +S'Coverlet' +p16114 +sg4 +S'Eva Wilson' +p16115 +sa(dp16116 +g12 +g27 +sg2 +S'Coverlet' +p16117 +sg4 +S'Charles Roadman' +p16118 +sa(dp16119 +g12 +g27 +sg2 +S'Coverlet' +p16120 +sg4 +S'Sarah F. Williams' +p16121 +sa(dp16122 +g12 +g27 +sg2 +S'Handwoven Coverlet' +p16123 +sg4 +S'William O. Fletcher' +p16124 +sa(dp16125 +g12 +g27 +sg2 +S'Blue and White Homespun' +p16126 +sg4 +S'William O. Fletcher' +p16127 +sa(dp16128 +g2 +S'Virgin and Child with Saint John' +p16129 +sg4 +S'Artist Information (' +p16130 +sg6 +S'Italian, 1435 - 1488' +p16131 +sg8 +S'(related artist)' +p16132 +sg10 +S'http://www.nga.gov:80/thumb-l/a00059/a000592d.jpg' +p16133 +sg12 +g27 +sa(dp16134 +g12 +g27 +sg2 +S'Woven Wool Bedspread' +p16135 +sg4 +S'Christopher Hobbs' +p16136 +sa(dp16137 +g12 +g27 +sg2 +S'Woven Coverlet' +p16138 +sg4 +S'William McAuley' +p16139 +sa(dp16140 +g12 +g27 +sg2 +S'Coverlet' +p16141 +sg4 +S'Ruth M. Barnes' +p16142 +sa(dp16143 +g12 +g27 +sg2 +S'Coverlet' +p16144 +sg4 +S'Ruth M. Barnes' +p16145 +sa(dp16146 +g12 +g27 +sg2 +S'Historic Coverlet' +p16147 +sg4 +S'Ruth M. Barnes' +p16148 +sa(dp16149 +g12 +g27 +sg2 +S'Handwoven Coverlet' +p16150 +sg4 +S'Howard H. Sherman' +p16151 +sa(dp16152 +g12 +g27 +sg2 +S'Woven Coverlet' +p16153 +sg4 +S'Howard H. Sherman' +p16154 +sa(dp16155 +g12 +g27 +sg2 +S'Handwoven Coverlet' +p16156 +sg4 +S'Howard H. Sherman' +p16157 +sa(dp16158 +g12 +g27 +sg2 +S'Handwoven Coverlet' +p16159 +sg4 +S'Cornelius Christoffels' +p16160 +sa(dp16161 +g12 +g27 +sg2 +S'Handwoven Coverlet' +p16162 +sg4 +S'Cornelius Christoffels' +p16163 +sa(dp16164 +g2 +S'Empire Triumphant over Avarice' +p16165 +sg4 +S'Adriaen de Vries' +p16166 +sg6 +S'bronze' +p16167 +sg8 +S'1610' +p16168 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d9a.jpg' +p16169 +sg12 +S"Adriaen de Vries was one of the leading late Renaissance masters of northern\nEurope. His heroic figures -- female as well as male -- reflect study of the antique and of\nMichelangelo's sculpture, with an emphasis on self-consciously complicated, twisting poses.\n Adriaen devised this bronze allegory for the Holy Roman Emperor Rudolf II, who had\nappointed him court sculptor at Prague in 1601. Once thought simply to represent "Virtue\nOvercoming Vice," the bronze has recently been interpreted as a specific theme close to the\nEmperor's heart. The dominant female figure, crowned with laurel, symbolizes Empire. The\nsecond laurel wreath she holds high proclaims her victory over a figure with ass' ears and a bag\nof gold coins that identify her as Avarice (the ears and the gold come from the ancient myth of\nKing Midas, known for his greed and bad judgment). Rudolf was fighting, none too successfully,\nin wars against the Turks, and also struggling with the lands he ruled that were reluctant to grant\nthe funds he needed to continue. The bronze gives form to his wish for triumph over both\nadversaries. The sculptor gave psychological force to this symbolic program in the rippling\ntension of the torsos and in the gaze that passes between the coolly imperious victor and the\ndistraught vanquished.\n " +p16170 +sa(dp16171 +g12 +g27 +sg2 +S'Coverlet' +p16172 +sg4 +S'Cornelius Christoffels' +p16173 +sa(dp16174 +g12 +g27 +sg2 +S'Coverlet' +p16175 +sg4 +S'William Hoffman' +p16176 +sa(dp16177 +g12 +g27 +sg2 +S'Coverlet' +p16178 +sg4 +S'Cornelius Christoffels' +p16179 +sa(dp16180 +g12 +g27 +sg2 +S'Coverlet (Section)' +p16181 +sg4 +S'Cornelius Christoffels' +p16182 +sa(dp16183 +g12 +g27 +sg2 +S'Coverlet' +p16184 +sg4 +S'Cornelius Christoffels' +p16185 +sa(dp16186 +g12 +g27 +sg2 +S'Coverlet' +p16187 +sg4 +S'Margaret Linsley' +p16188 +sa(dp16189 +g12 +g27 +sg2 +S'Coverlet Section' +p16190 +sg4 +S'Margaret Linsley' +p16191 +sa(dp16192 +g12 +g27 +sg2 +S'Coverlet Section' +p16193 +sg4 +S'Margaret Linsley' +p16194 +sa(dp16195 +g12 +g27 +sg2 +S'Coverlet' +p16196 +sg4 +S'Margaret Linsley' +p16197 +sa(dp16198 +g12 +g27 +sg2 +S'Handwoven Coverlet' +p16199 +sg4 +S'Hazel Sheckler' +p16200 +sa(dp16201 +g12 +g27 +sg6 +S'overall: 10.6 x 19.7 cm (4 3/16 x 7 3/4 in.)' +p16202 +sg8 +S'\nbronze' +p16203 +sg2 +S'Cover of a writing casket: Geniuses with Wreath and Medusa Head' +p16204 +sg4 +S'Paduan 15th Century' +p16205 +sa(dp16206 +g12 +g27 +sg2 +S'Handwoven Coverlet' +p16207 +sg4 +S'William McAuley' +p16208 +sa(dp16209 +g12 +g27 +sg2 +S'Homespun Coverlet' +p16210 +sg4 +S'Cornelius Christoffels' +p16211 +sa(dp16212 +g12 +g27 +sg2 +S'Homespun Coverlet' +p16213 +sg4 +S'Alexander Chudom' +p16214 +sa(dp16215 +g12 +g27 +sg2 +S'Homespun Coverlet' +p16216 +sg4 +S'Alexander Chudom' +p16217 +sa(dp16218 +g12 +g27 +sg2 +S'Coverlet' +p16219 +sg4 +S'Ruth M. Barnes' +p16220 +sa(dp16221 +g12 +g27 +sg2 +S'Coverlet' +p16222 +sg4 +S'Ruth M. Barnes' +p16223 +sa(dp16224 +g12 +g27 +sg2 +S'Coverlet' +p16225 +sg4 +S'Ruth M. Barnes' +p16226 +sa(dp16227 +g12 +g27 +sg2 +S'Coverlet' +p16228 +sg4 +S'Ruth M. Barnes' +p16229 +sa(dp16230 +g12 +g27 +sg2 +S'Coverlet' +p16231 +sg4 +S'Hazel Sheckler' +p16232 +sa(dp16233 +g12 +g27 +sg2 +S'Coverlet' +p16234 +sg4 +S'William McAuley' +p16235 +sa(dp16236 +g12 +g27 +sg6 +S'Italian, 1470 - 1532' +p16237 +sg8 +S'(artist after)' +p16238 +sg2 +S'Lamp, Upper Portion' +p16239 +sg4 +S'Artist Information (' +p16240 +sa(dp16241 +g12 +g27 +sg2 +S'Coverlet' +p16242 +sg4 +S'Ruth M. Barnes' +p16243 +sa(dp16244 +g12 +g27 +sg2 +S'Coverlet (Wool)' +p16245 +sg4 +S'Ruth M. Barnes' +p16246 +sa(dp16247 +g12 +g27 +sg2 +S'Coverlet' +p16248 +sg4 +S'Ruth M. Barnes' +p16249 +sa(dp16250 +g12 +g27 +sg2 +S'Coverlet' +p16251 +sg4 +S'Cornelius Christoffels' +p16252 +sa(dp16253 +g12 +g27 +sg2 +S'Coverlet' +p16254 +sg4 +S'Cornelius Christoffels' +p16255 +sa(dp16256 +g12 +g27 +sg2 +S'Coverlet' +p16257 +sg4 +S'Cornelius Christoffels' +p16258 +sa(dp16259 +g12 +g27 +sg2 +S'Coverlet' +p16260 +sg4 +S'Cornelius Christoffels' +p16261 +sa(dp16262 +g12 +g27 +sg2 +S'Eagle Coverlet' +p16263 +sg4 +S'George E. Rhone' +p16264 +sa(dp16265 +g12 +g27 +sg2 +S'Coverlet' +p16266 +sg4 +S'Cornelius Christoffels' +p16267 +sa(dp16268 +g12 +g27 +sg2 +S'Coverlet' +p16269 +sg4 +S'Cornelius Christoffels' +p16270 +sa(dp16271 +g2 +S'Madonna and Child with Cherubim' +p16272 +sg4 +S'Andrea della Robbia' +p16273 +sg6 +S'glazed terracotta' +p16274 +sg8 +S'c. 1485' +p16275 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d8f.jpg' +p16276 +sg12 +S"Andrea della Robbia carried on the popular and lucrative production of terra-cotta sculpture\ncovered with enamel glaze, a technique developed in the 1430s and 1440s by his uncle Luca. The\nglazed coating gave the colors of della Robbia's works a degree of durability impossible for\nsculpture that was simply painted. Their white-glazed figures, set off against deep blue grounds\nand sometimes surrounded by multicolored garlands of fruit or flowers (as in Andrea's\n\n The half-length treatment of the Virgin brings us close to the figures, whose attitudes\ncombine tenderness and solemnity. The Virgin holds the Child gently, her forehead grazing his\nhair. The child rests his left arm against her chest and clutches her left hand, as he clings to a\ncorner of her veil. Yet for all their physical closeness, they do not look at each other, and their\nexpressions are grave. The Virgin's downcast gaze suggests meditation on the child's fate. The\nchild turns his face toward the world, but his eyes, with pupils drifting upward, also suggest\ncontemplation. Their thoughts seem to converge on the same sorrowful theme: the coming\nPassion and death of Christ.\n " +p16277 +sa(dp16278 +g12 +g27 +sg6 +S'overall: 17.6 x 17.5 cm (6 15/16 x 6 7/8 in.)' +p16279 +sg8 +S'\ngilt bronze' +p16280 +sg2 +S'Lock Face Plate' +p16281 +sg4 +S'Italian 16th Century' +p16282 +sa(dp16283 +g12 +g27 +sg2 +S'Woven Coverlet' +p16284 +sg4 +S'Ernest A. Towers, Jr.' +p16285 +sa(dp16286 +g12 +g27 +sg2 +S'Woven Coverlet' +p16287 +sg4 +S'James M. Lawson' +p16288 +sa(dp16289 +g12 +g27 +sg2 +S'Woven Quilt' +p16290 +sg4 +S'Artist Information (' +p16291 +sa(dp16292 +g12 +g27 +sg2 +S'Handwoven Coverlet' +p16293 +sg4 +S'Maud M. Holme' +p16294 +sa(dp16295 +g12 +g27 +sg2 +S'Handwoven Coverlet' +p16296 +sg4 +S'Maud M. Holme' +p16297 +sa(dp16298 +g12 +g27 +sg2 +S'Coverlet' +p16299 +sg4 +S'Carmel Wilson' +p16300 +sa(dp16301 +g12 +g27 +sg2 +S'Woolen Textile' +p16302 +sg4 +S'Archie Thompson' +p16303 +sa(dp16304 +g12 +g27 +sg2 +S'Hand Woven Coverlet' +p16305 +sg4 +S'M. Louise Kent' +p16306 +sa(dp16307 +g12 +g27 +sg2 +S'Handwoven Coverlet' +p16308 +sg4 +S'M. Louise Kent' +p16309 +sa(dp16310 +g12 +g27 +sg2 +S'Jacquard Coverlet (Detail)' +p16311 +sg4 +S'Ralph N. Morgan' +p16312 +sa(dp16313 +g12 +g27 +sg6 +S'overall (length): 22.2 cm (8 3/4 in.)' +p16314 +sg8 +S'\ngilt bronze' +p16315 +sg2 +S'Lock Strap' +p16316 +sg4 +S'Italian 16th Century' +p16317 +sa(dp16318 +g12 +g27 +sg2 +S'Jacquard Coverlet (Detail)' +p16319 +sg4 +S'Alois E. Ulrich' +p16320 +sa(dp16321 +g12 +g27 +sg2 +S'Quilt' +p16322 +sg4 +S'Lillian Causey' +p16323 +sa(dp16324 +g12 +g27 +sg2 +S'Coverlet' +p16325 +sg4 +S'Rex F. Bush' +p16326 +sa(dp16327 +g12 +g27 +sg2 +S'Coverlet' +p16328 +sg4 +S'Rex F. Bush' +p16329 +sa(dp16330 +g12 +g27 +sg2 +S'Homespun Bedspread' +p16331 +sg4 +S'Gene Luedke' +p16332 +sa(dp16333 +g12 +g27 +sg2 +S'Homespun Bedspread' +p16334 +sg4 +S'Gene Luedke' +p16335 +sa(dp16336 +g12 +g27 +sg2 +S'Blue and White Woolen Coverlet' +p16337 +sg4 +S'Frank Gutting' +p16338 +sa(dp16339 +g12 +g27 +sg2 +S'Textile Sample' +p16340 +sg4 +S'Paul Kelly' +p16341 +sa(dp16342 +g12 +g27 +sg2 +S'Textile Samples' +p16343 +sg4 +S'Paul Kelly' +p16344 +sa(dp16345 +g12 +g27 +sg2 +S'Textile Samples' +p16346 +sg4 +S'Paul Kelly' +p16347 +sa(dp16348 +g12 +g27 +sg6 +S'bronze' +p16349 +sg8 +S'probably after 1502' +p16350 +sg2 +S'Elisabetta Gonzaga, died 1528, Duchess of Urbino, Wife of Guidobaldo I 1489 [obverse]' +p16351 +sg4 +S'Adriano Fiorentino' +p16352 +sa(dp16353 +g12 +g27 +sg2 +S'Textile' +p16354 +sg4 +S'Lucille Lacoursiere' +p16355 +sa(dp16356 +g12 +g27 +sg2 +S'Piece of Wool Plaid' +p16357 +sg4 +S'Raymond Manupelli' +p16358 +sa(dp16359 +g12 +g27 +sg2 +S'Linsey Woolsey' +p16360 +sg4 +S'Raymond Manupelli' +p16361 +sa(dp16362 +g12 +g27 +sg2 +S'Piece of Homespun Wool' +p16363 +sg4 +S'Hugh Clarke' +p16364 +sa(dp16365 +g12 +g27 +sg2 +S'Homespun Linen' +p16366 +sg4 +S'Marjorie McIntyre' +p16367 +sa(dp16368 +g12 +g27 +sg2 +S'Homespun Wool' +p16369 +sg4 +S'Raymond Manupelli' +p16370 +sa(dp16371 +g12 +g27 +sg2 +S'Quilt' +p16372 +sg4 +S'Isabelle De Strange' +p16373 +sa(dp16374 +g12 +g27 +sg2 +S'Quilt' +p16375 +sg4 +S'Isabelle De Strange' +p16376 +sa(dp16377 +g12 +g27 +sg2 +S'White House Bed Cover' +p16378 +sg4 +S'Edmond W. Brown' +p16379 +sa(dp16380 +g12 +g27 +sg2 +S'Shoulder Shawl' +p16381 +sg4 +S'Arthur G. Merkley' +p16382 +sa(dp16383 +g12 +g27 +sg6 +S'bronze' +p16384 +sg8 +S'probably after 1502' +p16385 +sg2 +S'Female Figure Holding a Bridle [reverse]' +p16386 +sg4 +S'Adriano Fiorentino' +p16387 +sa(dp16388 +g12 +g27 +sg2 +S'Tyler Coverlet' +p16389 +sg4 +S'Arthur G. Merkley' +p16390 +sa(dp16391 +g12 +g27 +sg2 +S'Tyler Coverlet' +p16392 +sg4 +S'Arthur G. Merkley' +p16393 +sa(dp16394 +g12 +g27 +sg2 +S'Tyler Coverlet' +p16395 +sg4 +S'Arthur G. Merkley' +p16396 +sa(dp16397 +g12 +g27 +sg2 +S'Woven Textile' +p16398 +sg4 +S'Pearl Gibbo' +p16399 +sa(dp16400 +g12 +g27 +sg2 +S'Tyler Coverlet' +p16401 +sg4 +S'Arthur G. Merkley' +p16402 +sa(dp16403 +g12 +g27 +sg2 +S'Hooked Rug' +p16404 +sg4 +S'Lillian M. Mosseller' +p16405 +sa(dp16406 +g12 +g27 +sg2 +S'Woven Coverlet' +p16407 +sg4 +S'Dorothy Lacey' +p16408 +sa(dp16409 +g12 +g27 +sg2 +S'Woven Coverlet' +p16410 +sg4 +S'Mary Berner' +p16411 +sa(dp16412 +g12 +g27 +sg2 +S'Woven Bedspread' +p16413 +sg4 +S'Elizabeth Valentine' +p16414 +sa(dp16415 +g12 +g27 +sg2 +S'Tablecloth' +p16416 +sg4 +S'Elizabeth Valentine' +p16417 +sa(dp16418 +g2 +S'Antonia del Balzo, 1441-1538, Wife of Gianfrancesco Gonzaga di Rodigo 1479 [obverse]' +p16419 +sg4 +S'Antico' +p16420 +sg6 +S'bronze' +p16421 +sg8 +S'unknown date\n' +p16422 +sg10 +S'http://www.nga.gov:80/thumb-l/a00069/a0006946.jpg' +p16423 +sg12 +g27 +sa(dp16424 +g12 +g27 +sg2 +S'Coverlet' +p16425 +sg4 +S'Jules Lefevere' +p16426 +sa(dp16427 +g12 +g27 +sg2 +S'Woven Coverlet' +p16428 +sg4 +S'Dorothy Lacey' +p16429 +sa(dp16430 +g12 +g27 +sg2 +S'Woven Napkin' +p16431 +sg4 +S'Suzanne Roy' +p16432 +sa(dp16433 +g12 +g27 +sg2 +S'Woven Coverlet' +p16434 +sg4 +S'Helen Bronson' +p16435 +sa(dp16436 +g12 +g27 +sg2 +S'Coverlet' +p16437 +sg4 +S'J. Howard Iams' +p16438 +sa(dp16439 +g12 +g27 +sg2 +S'Coverlet' +p16440 +sg4 +S'Betty Jacob' +p16441 +sa(dp16442 +g12 +g27 +sg2 +S'Coverlet' +p16443 +sg4 +S'J. Howard Iams' +p16444 +sa(dp16445 +g12 +g27 +sg2 +S'Coverlet' +p16446 +sg4 +S'Henry Moran' +p16447 +sa(dp16448 +g12 +g27 +sg2 +S'Coverlet' +p16449 +sg4 +S'Eva Wilson' +p16450 +sa(dp16451 +g12 +g27 +sg2 +S'Coverlet' +p16452 +sg4 +S'Florence Milto' +p16453 +sa(dp16454 +g2 +S'Hope on the Prow of a Broken-Masted Vessel [reverse]' +p16455 +sg4 +S'Antico' +p16456 +sg6 +S'bronze' +p16457 +sg8 +S'unknown date\n' +p16458 +sg10 +S'http://www.nga.gov:80/thumb-l/a00069/a0006947.jpg' +p16459 +sg12 +g27 +sa(dp16460 +g12 +g27 +sg2 +S'Eagle Coverlet' +p16461 +sg4 +S'Eva Wilson' +p16462 +sa(dp16463 +g12 +g27 +sg2 +S'Jacquard Coverlet' +p16464 +sg4 +S'Eva Wilson' +p16465 +sa(dp16466 +g12 +g27 +sg2 +S'Coverlet' +p16467 +sg4 +S'Eva Wilson' +p16468 +sa(dp16469 +g12 +g27 +sg2 +S'Coverlet' +p16470 +sg4 +S'Florence Milto' +p16471 +sa(dp16472 +g12 +g27 +sg2 +S'Coverlet' +p16473 +sg4 +S'Florence Milto' +p16474 +sa(dp16475 +g12 +g27 +sg2 +S'Coverlet' +p16476 +sg4 +S'Betty Jacob' +p16477 +sa(dp16478 +g12 +g27 +sg2 +S'Coverlet: Boston Town' +p16479 +sg4 +S'Byron Dingman' +p16480 +sa(dp16481 +g12 +g27 +sg2 +S'Coverlet: Eagle Coin' +p16482 +sg4 +S'Eileen Knox' +p16483 +sa(dp16484 +g12 +g27 +sg2 +S'Damask Coverlet' +p16485 +sg4 +S'Eva Wilson' +p16486 +sa(dp16487 +g12 +g27 +sg2 +S'Coverlet' +p16488 +sg4 +S'J. Howard Iams' +p16489 +sa(dp16490 +g12 +g27 +sg6 +S'gilt bronze' +p16491 +sg8 +S'unknown date\n' +p16492 +sg2 +S"Marie de' Medici, 1573-1642, Wife of King Henri IV of France 1600 [obverse]" +p16493 +sg4 +S'Guillaume Dupr\xc3\xa9' +p16494 +sa(dp16495 +g12 +g27 +sg2 +S'Coverlet' +p16496 +sg4 +S'Mary E. Humes' +p16497 +sa(dp16498 +g12 +g27 +sg2 +S'Plaid Homespun Coverlet' +p16499 +sg4 +S'Clyde L. Cheney' +p16500 +sa(dp16501 +g12 +g27 +sg2 +S'Plaid Homespun Cloth' +p16502 +sg4 +S'Clyde L. Cheney' +p16503 +sa(dp16504 +g12 +g27 +sg2 +S'Linsey Woolsey' +p16505 +sg4 +S'Frank J. Mace' +p16506 +sa(dp16507 +g12 +g27 +sg2 +S'Linsey Woolsey' +p16508 +sg4 +S'Frank J. Mace' +p16509 +sa(dp16510 +g12 +g27 +sg2 +S'Striped Kersey' +p16511 +sg4 +S'William Parkinson' +p16512 +sa(dp16513 +g12 +g27 +sg2 +S'Plaid Homespun Cloth' +p16514 +sg4 +S'Frank J. Mace' +p16515 +sa(dp16516 +g12 +g27 +sg2 +S'Homespun Cloth' +p16517 +sg4 +S'Frank J. Mace' +p16518 +sa(dp16519 +g12 +g27 +sg2 +S'Plaid Homespun Coverlet' +p16520 +sg4 +S'Frank J. Mace' +p16521 +sa(dp16522 +g12 +g27 +sg2 +S'Wool Tablecloth' +p16523 +sg4 +S'Frank Maurer' +p16524 +sa(dp16525 +g12 +g27 +sg6 +S'gilt bronze' +p16526 +sg8 +S'unknown date\n' +p16527 +sg2 +S"Marie de' Medici as Mother of the Gods" +p16528 +sg4 +S'Guillaume Dupr\xc3\xa9' +p16529 +sa(dp16530 +g12 +g27 +sg2 +S'Bedspread' +p16531 +sg4 +S'Eldon Allen' +p16532 +sa(dp16533 +g12 +g27 +sg2 +S'Linsey Blanket' +p16534 +sg4 +S'Frank Maurer' +p16535 +sa(dp16536 +g12 +g27 +sg2 +S'Homemade Cloth' +p16537 +sg4 +S'Frank J. Mace' +p16538 +sa(dp16539 +g12 +g27 +sg2 +S'Homemade Cloth' +p16540 +sg4 +S'LeRoy McCarrel' +p16541 +sa(dp16542 +g12 +g27 +sg2 +S'Shirred Rug' +p16543 +sg4 +S'Elbert S. Mowery' +p16544 +sa(dp16545 +g12 +g27 +sg2 +S'Woven Textile' +p16546 +sg4 +S'Mary C. Davidson' +p16547 +sa(dp16548 +g12 +g27 +sg2 +S'Woven Wool Carpet' +p16549 +sg4 +S'William Bos' +p16550 +sa(dp16551 +g12 +g27 +sg2 +S'Stair Carpet' +p16552 +sg4 +S'Arthur G. Merkley' +p16553 +sa(dp16554 +g12 +g27 +sg2 +S'Carpet' +p16555 +sg4 +S'George Loughridge' +p16556 +sa(dp16557 +g12 +g27 +sg2 +S'Handwoven Carpet' +p16558 +sg4 +S'Jules Lefevere' +p16559 +sa(dp16560 +g12 +g27 +sg6 +S'bronze' +p16561 +sg8 +S'c. 1465/1469' +p16562 +sg2 +S"Giovanni di Cosimo de' Medici, 1421-1463" +p16563 +sg4 +S'Florentine 15th Century' +p16564 +sa(dp16565 +g12 +g27 +sg2 +S'Ingrain Carpet' +p16566 +sg4 +S'Jules Lefevere' +p16567 +sa(dp16568 +g12 +g27 +sg2 +S'Ingrain Carpet' +p16569 +sg4 +S'Marion Curtiss' +p16570 +sa(dp16571 +g12 +g27 +sg2 +S'Brussels Carpet Bag' +p16572 +sg4 +S'Jules Lefevere' +p16573 +sa(dp16574 +g12 +g27 +sg2 +S'Ingrain Carpet' +p16575 +sg4 +S'Dorothy Lacey' +p16576 +sa(dp16577 +g12 +g27 +sg2 +S'Carpet Bag' +p16578 +sg4 +S'Mary Berner' +p16579 +sa(dp16580 +g12 +g27 +sg2 +S'Brussels Carpet' +p16581 +sg4 +S'Charlotte Winter' +p16582 +sa(dp16583 +g12 +g27 +sg2 +S'Ingrain Carpet' +p16584 +sg4 +S'Dorothy Lacey' +p16585 +sa(dp16586 +g12 +g27 +sg2 +S'Quilt' +p16587 +sg4 +S'Ruth M. Barnes' +p16588 +sa(dp16589 +g12 +g27 +sg2 +S'Quilt Patchwork' +p16590 +sg4 +S'Margaret Linsley' +p16591 +sa(dp16592 +g12 +g27 +sg2 +S'Piece of Calico' +p16593 +sg4 +S'Edward Grant' +p16594 +sa(dp16595 +g12 +g27 +sg6 +S'overall (diameter): 7.1 cm (2 13/16 in.)\r\ngross weight: 90.33 gr (0.09 kg)' +p16596 +sg8 +S'\nbronze' +p16597 +sg2 +S'Francesco I of Carrara' +p16598 +sg4 +S'Italian 15th Century' +p16599 +sa(dp16600 +g12 +g27 +sg2 +S'Coverlet-Applique Quilt' +p16601 +sg4 +S'Manuel G. Runyan' +p16602 +sa(dp16603 +g12 +g27 +sg2 +S'Textile' +p16604 +sg4 +S'James Vail' +p16605 +sa(dp16606 +g12 +g27 +sg2 +S'Textile Drapery' +p16607 +sg4 +S'James Vail' +p16608 +sa(dp16609 +g12 +g27 +sg2 +S"Girl's Wrapper - Textile Pattern" +p16610 +sg4 +S'Ivar Julius' +p16611 +sa(dp16612 +g12 +g27 +sg2 +S'Resist Fabric' +p16613 +sg4 +S'Milton Bevier' +p16614 +sa(dp16615 +g12 +g27 +sg2 +S'Printed Cotton' +p16616 +sg4 +S'Lon Cronk' +p16617 +sa(dp16618 +g12 +g27 +sg2 +S'Patchwork Quilt' +p16619 +sg4 +S'Elbert S. Mowery' +p16620 +sa(dp16621 +g12 +g27 +sg2 +S'Cotton Antique Prints' +p16622 +sg4 +S'Millia Davenport' +p16623 +sa(dp16624 +g12 +g27 +sg2 +S'Calico Prints from Costume' +p16625 +sg4 +S'Mary C. Davidson' +p16626 +sa(dp16627 +g12 +g27 +sg2 +S'Printed Cotton' +p16628 +sg4 +S'Mary C. Davidson' +p16629 +sa(dp16630 +g2 +S'Madonna and Child with Donor' +p16631 +sg4 +S'Lippo Memmi' +p16632 +sg6 +S'tempera on panel' +p16633 +sg8 +S'probably c. 1335' +p16634 +sg10 +S'http://www.nga.gov:80/thumb-l/a00008/a0000858.jpg' +p16635 +sg12 +g27 +sa(dp16636 +g2 +S'Madonna and Child with God the Father and Cherubim' +p16637 +sg4 +S'Artist Information (' +p16638 +sg6 +S'Italian, 1435 - 1525' +p16639 +sg8 +S'(related artist)' +p16640 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d90.jpg' +p16641 +sg12 +g27 +sa(dp16642 +g12 +g27 +sg6 +S'Italian, active 1464/1471' +p16643 +sg8 +S'(artist after)' +p16644 +sg2 +S'Paul II (Pietro Barbo, 1417-1471), Pope 1464 [obverse]' +p16645 +sg4 +S'Artist Information (' +p16646 +sa(dp16647 +g12 +g27 +sg2 +S'Printed Textiles' +p16648 +sg4 +S'Francis Bruner' +p16649 +sa(dp16650 +g12 +g27 +sg2 +S'Calico Prints' +p16651 +sg4 +S'Ada Barnes' +p16652 +sa(dp16653 +g12 +g27 +sg2 +S'Printed Swatches' +p16654 +sg4 +S'Mary C. Davidson' +p16655 +sa(dp16656 +g12 +g27 +sg2 +S'Calico Print' +p16657 +sg4 +S'Ralph N. Morgan' +p16658 +sa(dp16659 +g12 +g27 +sg2 +S'Printed Swatches' +p16660 +sg4 +S'Mary C. Davidson' +p16661 +sa(dp16662 +g12 +g27 +sg2 +S'Printed Cotton Swatches' +p16663 +sg4 +S'Edward D. Williams' +p16664 +sa(dp16665 +g12 +g27 +sg2 +S'Printed Calico' +p16666 +sg4 +S'Arelia Arbo' +p16667 +sa(dp16668 +g12 +g27 +sg2 +S'Bandanna' +p16669 +sg4 +S'Joseph L. Boyd' +p16670 +sa(dp16671 +g12 +g27 +sg2 +S'Curtains' +p16672 +sg4 +S'Lillian Causey' +p16673 +sa(dp16674 +g12 +g27 +sg2 +S'Textile Samples' +p16675 +sg4 +S'Edmond Lorts' +p16676 +sa(dp16677 +g12 +g27 +sg6 +S'Italian, active 1464/1471' +p16678 +sg8 +S'(artist after)' +p16679 +sg2 +S'Paul II (Pietro Barbo, 1417-1471), Pope 1464 [reverse]' +p16680 +sg4 +S'Artist Information (' +p16681 +sa(dp16682 +g12 +g27 +sg2 +S'Printed Textile' +p16683 +sg4 +S'Eleanor Rogers' +p16684 +sa(dp16685 +g12 +g27 +sg2 +S'Printed Textile' +p16686 +sg4 +S'Lucille Lacoursiere' +p16687 +sa(dp16688 +g12 +g27 +sg2 +S'Printed Textile' +p16689 +sg4 +S'Ralph M. Lewis' +p16690 +sa(dp16691 +g12 +g27 +sg2 +S'Printed Textile' +p16692 +sg4 +S'Eleanor Rogers' +p16693 +sa(dp16694 +g12 +g27 +sg2 +S'Printed Textile' +p16695 +sg4 +S'Cleon Barton' +p16696 +sa(dp16697 +g12 +g27 +sg2 +S'Printed Textile' +p16698 +sg4 +S'Ralph M. Lewis' +p16699 +sa(dp16700 +g12 +g27 +sg2 +S'Printed Textile' +p16701 +sg4 +S'Eleanor Rogers' +p16702 +sa(dp16703 +g12 +g27 +sg2 +S'Textile Print' +p16704 +sg4 +S'Lucille Lacoursiere' +p16705 +sa(dp16706 +g12 +g27 +sg2 +S'Printed Textile' +p16707 +sg4 +S'Lucille Lacoursiere' +p16708 +sa(dp16709 +g12 +g27 +sg2 +S'Textile Print' +p16710 +sg4 +S'Ralph M. Lewis' +p16711 +sa(dp16712 +g12 +g27 +sg6 +S'(artist)' +p16713 +sg8 +S'\n' +p16714 +sg2 +S'Louis XII, 1462-1515, King of France 1498 [obverse]' +p16715 +sg4 +S'Artist Information (' +p16716 +sa(dp16717 +g12 +g27 +sg2 +S'Printed Textile' +p16718 +sg4 +S'Ralph M. Lewis' +p16719 +sa(dp16720 +g12 +g27 +sg2 +S'Textile - Piece of Old Quilted Cloth' +p16721 +sg4 +S'Lucille Lacoursiere' +p16722 +sa(dp16723 +g12 +g27 +sg2 +S'Printed Quilted Patches' +p16724 +sg4 +S'Francis Law Durand' +p16725 +sa(dp16726 +g12 +g27 +sg2 +S'Printed Quilt Patches' +p16727 +sg4 +S'Edith Magnette' +p16728 +sa(dp16729 +g12 +g27 +sg2 +S'Woven Quilt Details' +p16730 +sg4 +S'Francis Law Durand' +p16731 +sa(dp16732 +g12 +g27 +sg2 +S'Quilt Patches' +p16733 +sg4 +S'Francis Law Durand' +p16734 +sa(dp16735 +g12 +g27 +sg2 +S'Curtain Drapery' +p16736 +sg4 +S'Henry Meyers' +p16737 +sa(dp16738 +g12 +g27 +sg2 +S'Kerchief Scarf' +p16739 +sg4 +S'Erwin Schwabe' +p16740 +sa(dp16741 +g12 +g27 +sg2 +S'Glazed Chintz' +p16742 +sg4 +S'Grace Halpin' +p16743 +sa(dp16744 +g12 +g27 +sg2 +S'Calico' +p16745 +sg4 +S'Grace Halpin' +p16746 +sa(dp16747 +g12 +g27 +sg6 +S'(artist)' +p16748 +sg8 +S'\n' +p16749 +sg2 +S'Anne of Brittany, 1477-1514, Wife of Louis XII 1498 [reverse]' +p16750 +sg4 +S'Artist Information (' +p16751 +sa(dp16752 +g12 +g27 +sg2 +S'Printed Cotton' +p16753 +sg4 +S'Julie C. Brush' +p16754 +sa(dp16755 +g12 +g27 +sg2 +S'Glazed Chintz' +p16756 +sg4 +S'Edith Miller' +p16757 +sa(dp16758 +g12 +g27 +sg2 +S'Calico' +p16759 +sg4 +S'Grace Halpin' +p16760 +sa(dp16761 +g12 +g27 +sg2 +S'Bedspread' +p16762 +sg4 +S'Henry Meyers' +p16763 +sa(dp16764 +g12 +g27 +sg2 +S'Printed Cotton' +p16765 +sg4 +S'Julie C. Brush' +p16766 +sa(dp16767 +g12 +g27 +sg2 +S'Printed Cotton' +p16768 +sg4 +S'Julie C. Brush' +p16769 +sa(dp16770 +g12 +g27 +sg2 +S'Detail of Quilt' +p16771 +sg4 +S'Francis Law Durand' +p16772 +sa(dp16773 +g12 +g27 +sg2 +S"Infant's Quilt (Detail)" +p16774 +sg4 +S'Francis Law Durand' +p16775 +sa(dp16776 +g12 +g27 +sg2 +S'Waistcoat' +p16777 +sg4 +S'Catherine Fowler' +p16778 +sa(dp16779 +g12 +g27 +sg2 +S'Hand Blocked Chintz' +p16780 +sg4 +S'Edith Magnette' +p16781 +sa(dp16782 +g12 +g27 +sg6 +S'bronze' +p16783 +sg8 +S'unknown date\n' +p16784 +sg2 +S'Maarten de Hane, 1475-1556, Flemish Merchant [obverse]' +p16785 +sg4 +S'Leone Leoni' +p16786 +sa(dp16787 +g12 +g27 +sg2 +S'Quilt (Detail)' +p16788 +sg4 +S'Francis Law Durand' +p16789 +sa(dp16790 +g12 +g27 +sg2 +S'Patchwork for Quilt' +p16791 +sg4 +S'Edith Magnette' +p16792 +sa(dp16793 +g12 +g27 +sg2 +S'Patches of Diamond Patchwork Quilt' +p16794 +sg4 +S'Edith Magnette' +p16795 +sa(dp16796 +g12 +g27 +sg2 +S'Calico' +p16797 +sg4 +S'Florence Stevenson' +p16798 +sa(dp16799 +g12 +g27 +sg2 +S'Chintz' +p16800 +sg4 +S'Henry Meyers' +p16801 +sa(dp16802 +g12 +g27 +sg2 +S'Calico' +p16803 +sg4 +S'Florence Stevenson' +p16804 +sa(dp16805 +g12 +g27 +sg2 +S'Handkerchief' +p16806 +sg4 +S'Grace Halpin' +p16807 +sa(dp16808 +g12 +g27 +sg2 +S'Printed Cotton' +p16809 +sg4 +S'Julie C. Brush' +p16810 +sa(dp16811 +g12 +g27 +sg2 +S'Chintz Border' +p16812 +sg4 +S'Edith Miller' +p16813 +sa(dp16814 +g12 +g27 +sg2 +S'Silk Kerchief' +p16815 +sg4 +S'Percival Jenner' +p16816 +sa(dp16817 +g12 +g27 +sg6 +S'bronze' +p16818 +sg8 +S'unknown date\n' +p16819 +sg2 +S'Hope with Hands Raised in Prayer [reverse]' +p16820 +sg4 +S'Leone Leoni' +p16821 +sa(dp16822 +g12 +g27 +sg2 +S'Cotton Kerchief' +p16823 +sg4 +S'Percival Jenner' +p16824 +sa(dp16825 +g12 +g27 +sg2 +S'Printed Cotton' +p16826 +sg4 +S'Edith Magnette' +p16827 +sa(dp16828 +g12 +g27 +sg2 +S'Portrait Medallions of George Washington' +p16829 +sg4 +S'Edith Magnette' +p16830 +sa(dp16831 +g12 +g27 +sg2 +S'Kerchief' +p16832 +sg4 +S'Julie C. Brush' +p16833 +sa(dp16834 +g12 +g27 +sg2 +S'Bandanna' +p16835 +sg4 +S'Edith Miller' +p16836 +sa(dp16837 +g12 +g27 +sg2 +S'Ribbon' +p16838 +sg4 +S'Marie Lutrell' +p16839 +sa(dp16840 +g12 +g27 +sg2 +S'Quilt' +p16841 +sg4 +S'Daniel Fletcher' +p16842 +sa(dp16843 +g12 +g27 +sg2 +S'Patches from Quilt' +p16844 +sg4 +S'Eleanor Gausser' +p16845 +sa(dp16846 +g12 +g27 +sg2 +S'Printed Quilt Patterns' +p16847 +sg4 +S'William P. Shearwood' +p16848 +sa(dp16849 +g12 +g27 +sg2 +S'Kerchief' +p16850 +sg4 +S'Isabelle De Strange' +p16851 +sa(dp16852 +g12 +g27 +sg6 +S'bronze' +p16853 +sg8 +S'unknown date\n' +p16854 +sg2 +S'Giovanni Francesco Marascha [obverse]' +p16855 +sg4 +S'Lysippus Junior' +p16856 +sa(dp16857 +g12 +g27 +sg2 +S'Four Textile Samples' +p16858 +sg4 +S'Pearl Gibbo' +p16859 +sa(dp16860 +g12 +g27 +sg2 +S'Friendship Quilt-Patchwork Section' +p16861 +sg4 +S'Maud Schmid' +p16862 +sa(dp16863 +g12 +g27 +sg2 +S"Lining of Baby's Hood" +p16864 +sg4 +S'Florence Earl' +p16865 +sa(dp16866 +g12 +g27 +sg2 +S'Glazed Chintz' +p16867 +sg4 +S'Edmond W. Brown' +p16868 +sa(dp16869 +g12 +g27 +sg2 +S'Quilt Patches' +p16870 +sg4 +S'Mary Fitzgerald' +p16871 +sa(dp16872 +g12 +g27 +sg2 +S'Patchwork Quilt' +p16873 +sg4 +S'Edmond W. Brown' +p16874 +sa(dp16875 +g12 +g27 +sg2 +S'Details of Patchwork Quilt' +p16876 +sg4 +S'Gladys Phillips' +p16877 +sa(dp16878 +g12 +g27 +sg2 +S'Chintz Square' +p16879 +sg4 +S'Howard Lumbard' +p16880 +sa(dp16881 +g12 +g27 +sg2 +S'Tapestry' +p16882 +sg4 +S'Pearl Gibbo' +p16883 +sa(dp16884 +g12 +g27 +sg2 +S'Printed Textile' +p16885 +sg4 +S'Pearl Gibbo' +p16886 +sa(dp16887 +g12 +g27 +sg6 +S'bronze' +p16888 +sg8 +S'unknown date\n' +p16889 +sg2 +S'Hope with Cornucopia [reverse]' +p16890 +sg4 +S'Lysippus Junior' +p16891 +sa(dp16892 +g12 +g27 +sg2 +S'Tapestry' +p16893 +sg4 +S'Pearl Gibbo' +p16894 +sa(dp16895 +g12 +g27 +sg2 +S'Tapestry' +p16896 +sg4 +S'Pearl Gibbo' +p16897 +sa(dp16898 +g12 +g27 +sg2 +S'Cotton Cloth' +p16899 +sg4 +S'Pearl Gibbo' +p16900 +sa(dp16901 +g12 +g27 +sg2 +S"Boy's Coat and Trousers" +p16902 +sg4 +S'Henry De Wolfe' +p16903 +sa(dp16904 +g12 +g27 +sg2 +S'Chintz' +p16905 +sg4 +S'Isabelle De Strange' +p16906 +sa(dp16907 +g12 +g27 +sg2 +S'Printed Cotton' +p16908 +sg4 +S'Pearl Gibbo' +p16909 +sa(dp16910 +g12 +g27 +sg2 +S"Man's Linen Kerchief" +p16911 +sg4 +S'Percival Jenner' +p16912 +sa(dp16913 +g12 +g27 +sg2 +S'Silk Gown (Detail)' +p16914 +sg4 +S'Lester Kausch' +p16915 +sa(dp16916 +g12 +g27 +sg2 +S'Santa Claus Tapestry' +p16917 +sg4 +S'Pearl Gibbo' +p16918 +sa(dp16919 +g12 +g27 +sg2 +S'Calico' +p16920 +sg4 +S'Genevieve Sherlock' +p16921 +sa(dp16922 +g12 +g27 +sg6 +S'bronze' +p16923 +sg8 +S'unknown date\n' +p16924 +sg2 +S'Giovanni Alvise Toscani, c. 1450-1478, Milanese Jurisconsult, Consistorial Advocate, and Auditor General under Pope Sixtus IV [obverse]' +p16925 +sg4 +S'Lysippus Junior' +p16926 +sa(dp16927 +g12 +g27 +sg2 +S'Sample of Calico' +p16928 +sg4 +S'Genevieve Sherlock' +p16929 +sa(dp16930 +g12 +g27 +sg2 +S'Cloth with Numeration Table' +p16931 +sg4 +S'Marie Lutrell' +p16932 +sa(dp16933 +g12 +g27 +sg2 +S'Calico' +p16934 +sg4 +S'Marie Lutrell' +p16935 +sa(dp16936 +g12 +g27 +sg2 +S'Patchwork Quilt' +p16937 +sg4 +S'Henry Granet' +p16938 +sa(dp16939 +g12 +g27 +sg2 +S'Patchwork Quilt' +p16940 +sg4 +S'Millia Davenport' +p16941 +sa(dp16942 +g12 +g27 +sg2 +S'Historical Printed Cotton' +p16943 +sg4 +S'Charles Rose' +p16944 +sa(dp16945 +g12 +g27 +sg2 +S'Swatch from Patchwork Quilt' +p16946 +sg4 +S'A. Zimet' +p16947 +sa(dp16948 +g12 +g27 +sg2 +S'Printed and Woven Cotton' +p16949 +sg4 +S'Millia Davenport' +p16950 +sa(dp16951 +g12 +g27 +sg2 +S'Printed Cottons' +p16952 +sg4 +S'Millia Davenport' +p16953 +sa(dp16954 +g12 +g27 +sg2 +S'Printed Cottons' +p16955 +sg4 +S'Millia Davenport' +p16956 +sa(dp16957 +g12 +g27 +sg6 +S'bronze' +p16958 +sg8 +S'unknown date\n' +p16959 +sg2 +S'Inscription in a Wreath [reverse]' +p16960 +sg4 +S'Lysippus Junior' +p16961 +sa(dp16962 +g12 +g27 +sg2 +S'Printed Cottons' +p16963 +sg4 +S'Millia Davenport' +p16964 +sa(dp16965 +g12 +g27 +sg2 +S'Printed Cottons' +p16966 +sg4 +S'Millia Davenport' +p16967 +sa(dp16968 +g12 +g27 +sg2 +S'Chintz' +p16969 +sg4 +S'George Loughridge' +p16970 +sa(dp16971 +g12 +g27 +sg2 +S'Chintz' +p16972 +sg4 +S'George Loughridge' +p16973 +sa(dp16974 +g12 +g27 +sg2 +S'Textiles from Patchwork Quilt' +p16975 +sg4 +S'Millia Davenport' +p16976 +sa(dp16977 +g12 +g27 +sg2 +S'Patchwork and Applique Quilt' +p16978 +sg4 +S'Artist Information (' +p16979 +sa(dp16980 +g12 +g27 +sg2 +S'Printed Cotton' +p16981 +sg4 +S'Eugene La Foret' +p16982 +sa(dp16983 +g12 +g27 +sg2 +S'Chintz' +p16984 +sg4 +S'Marie Mitchell' +p16985 +sa(dp16986 +g12 +g27 +sg2 +S'Printed Coverlet' +p16987 +sg4 +S'Dorothy Lacey' +p16988 +sa(dp16989 +g12 +g27 +sg2 +S'Chintz' +p16990 +sg4 +S'Suzanne Roy' +p16991 +sa(dp16992 +g12 +g27 +sg6 +S'overall: 77 x 41 cm (30 5/16 x 16 1/8 in.)' +p16993 +sg8 +S'\nterracotta' +p16994 +sg2 +S'The Virgin in Adoration' +p16995 +sg4 +S'Italian 19th Century' +p16996 +sa(dp16997 +g12 +g27 +sg6 +S'bronze' +p16998 +sg8 +S'unknown date\n' +p16999 +sg2 +S'Giovanni Alvise Toscani, c. 1450-1478, Milanese Jurisconsult, Consistorial Advocate, and Auditor General under Pope Sixtus IV [obverse]' +p17000 +sg4 +S'Lysippus Junior' +p17001 +sa(dp17002 +g12 +g27 +sg2 +S'Chintz' +p17003 +sg4 +S'George Loughridge' +p17004 +sa(dp17005 +g12 +g27 +sg2 +S'Applique Crib Coverlet' +p17006 +sg4 +S'Marion Curtiss' +p17007 +sa(dp17008 +g12 +g27 +sg2 +S'Bedspread' +p17009 +sg4 +S'Mary Berner' +p17010 +sa(dp17011 +g12 +g27 +sg2 +S'Chintz' +p17012 +sg4 +S'Suzanne Roy' +p17013 +sa(dp17014 +g12 +g27 +sg2 +S'Printed Cotton' +p17015 +sg4 +S'Millia Davenport' +p17016 +sa(dp17017 +g12 +g27 +sg2 +S'Textiles from Quilt' +p17018 +sg4 +S'Millia Davenport' +p17019 +sa(dp17020 +g12 +g27 +sg2 +S'Textile from Quilt' +p17021 +sg4 +S'Millia Davenport' +p17022 +sa(dp17023 +g12 +g27 +sg2 +S'Block Printed Handkerchief' +p17024 +sg4 +S'Dorothy Lacey' +p17025 +sa(dp17026 +g12 +g27 +sg2 +S'Printed Cotton' +p17027 +sg4 +S'Millia Davenport' +p17028 +sa(dp17029 +g12 +g27 +sg2 +S'Printed Delaines' +p17030 +sg4 +S'Millia Davenport' +p17031 +sa(dp17032 +g12 +g27 +sg6 +S'bronze' +p17033 +sg8 +S'unknown date\n' +p17034 +sg2 +S'Neptune in a Sea-Car [reverse]' +p17035 +sg4 +S'Lysippus Junior' +p17036 +sa(dp17037 +g12 +g27 +sg2 +S'Yellow Glazed Chintz' +p17038 +sg4 +S'Joseph Lubrano' +p17039 +sa(dp17040 +g12 +g27 +sg2 +S'Chintz' +p17041 +sg4 +S'Erwin Stenzel' +p17042 +sa(dp17043 +g12 +g27 +sg2 +S'Quilted Chintz Coverlet' +p17044 +sg4 +S'Eugene La Foret' +p17045 +sa(dp17046 +g12 +g27 +sg2 +S'Printed Textile' +p17047 +sg4 +S'Sidney Liswood' +p17048 +sa(dp17049 +g12 +g27 +sg2 +S'Printed Textile' +p17050 +sg4 +S'George Loughridge' +p17051 +sa(dp17052 +g12 +g27 +sg2 +S'Resist Printed Linen' +p17053 +sg4 +S'Michael Trekur' +p17054 +sa(dp17055 +g12 +g27 +sg2 +S'Quilt Patches' +p17056 +sg4 +S'Millia Davenport' +p17057 +sa(dp17058 +g12 +g27 +sg2 +S'Printed Textiles' +p17059 +sg4 +S'Suzanne Roy' +p17060 +sa(dp17061 +g12 +g27 +sg2 +S'Resist Print' +p17062 +sg4 +S'Michael Trekur' +p17063 +sa(dp17064 +g12 +g27 +sg2 +S'Printed Cottons' +p17065 +sg4 +S'Martha Reed' +p17066 +sa(dp17067 +g2 +S'Gianfrancesco Gonzaga di Rodigo, 1445-1496, Lord of Bozzolo, Sabbioneta, and Viadana 1478 [obverse]' +p17068 +sg4 +S'Mantuan 15th Century' +p17069 +sg6 +S'overall (diameter): 3.51 cm (1 3/8 in.)\r\ngross weight: 26.15 gr (0.058 lb.)\r\naxis: 6:00' +p17070 +sg8 +S'\nbronze' +p17071 +sg10 +S'http://www.nga.gov:80/thumb-l/a00068/a0006851.jpg' +p17072 +sg12 +g27 +sa(dp17073 +g12 +g27 +sg2 +S'Printed Delaines' +p17074 +sg4 +S'Martha Reed' +p17075 +sa(dp17076 +g12 +g27 +sg2 +S'Textiles in Patchwork Quilt' +p17077 +sg4 +S'Charlotte Winter' +p17078 +sa(dp17079 +g12 +g27 +sg2 +S'Textiles' +p17080 +sg4 +S'Martha Reed' +p17081 +sa(dp17082 +g12 +g27 +sg2 +S'Chintzes from Quilt' +p17083 +sg4 +S'Catherine Fowler' +p17084 +sa(dp17085 +g12 +g27 +sg2 +S'Historical Printed Cotton' +p17086 +sg4 +S'Esther Hansen' +p17087 +sa(dp17088 +g12 +g27 +sg2 +S'Printed Textile of George Washington' +p17089 +sg4 +S'Joseph Lubrano' +p17090 +sa(dp17091 +g12 +g27 +sg2 +S'Printed Textile' +p17092 +sg4 +S'Sylvia De Zon' +p17093 +sa(dp17094 +g12 +g27 +sg2 +S'Printed Cotton' +p17095 +sg4 +S'Michael Trekur' +p17096 +sa(dp17097 +g12 +g27 +sg2 +S'Printed Cotton' +p17098 +sg4 +S'Michael Trekur' +p17099 +sa(dp17100 +g12 +g27 +sg2 +S'Portrait of George Washington' +p17101 +sg4 +S'Suzanne Roy' +p17102 +sa(dp17103 +g2 +S'House between Two Hills [reverse]' +p17104 +sg4 +S'Mantuan 15th Century' +p17105 +sg6 +S'overall (diameter): 3.51 cm (1 3/8 in.)\r\ngross weight: 26.15 gr (0.058 lb.)\r\naxis: 6:00' +p17106 +sg8 +S'\nbronze' +p17107 +sg10 +S'http://www.nga.gov:80/thumb-l/a00068/a0006850.jpg' +p17108 +sg12 +g27 +sa(dp17109 +g12 +g27 +sg2 +S'Textile Swatches' +p17110 +sg4 +S'Charlotte Winter' +p17111 +sa(dp17112 +g12 +g27 +sg2 +S'Historical Printed Textile' +p17113 +sg4 +S'Suzanne Roy' +p17114 +sa(dp17115 +g12 +g27 +sg2 +S'Swatches' +p17116 +sg4 +S'Catherine Fowler' +p17117 +sa(dp17118 +g12 +g27 +sg2 +S'Historical Printed Cotton' +p17119 +sg4 +S'Suzanne Roy' +p17120 +sa(dp17121 +g12 +g27 +sg2 +S'Printed Chintz' +p17122 +sg4 +S'Hubbell McBride' +p17123 +sa(dp17124 +g12 +g27 +sg2 +S'Printed Textiles' +p17125 +sg4 +S'Jenny Almgren' +p17126 +sa(dp17127 +g12 +g27 +sg2 +S'Printed Textile' +p17128 +sg4 +S'Artist Information (' +p17129 +sa(dp17130 +g12 +g27 +sg2 +S'Printed Cotton' +p17131 +sg4 +S'Henry Granet' +p17132 +sa(dp17133 +g12 +g27 +sg2 +S'Historical Printed Textile' +p17134 +sg4 +S'Artist Information (' +p17135 +sa(dp17136 +g12 +g27 +sg2 +S'Historic Printed Textile' +p17137 +sg4 +S'Suzanne Roy' +p17138 +sa(dp17139 +g12 +g27 +sg6 +S'bronze' +p17140 +sg8 +S'1502' +p17141 +sg2 +S'Filiberto II le Beau (the Fair), 1480-1504, 8th Duke of Savoy 1497, and Margaret of Austria, 1480-1530, His Wife [obverse]' +p17142 +sg4 +S'Jean Marende' +p17143 +sa(dp17144 +g12 +g27 +sg2 +S'Printed Cotton' +p17145 +sg4 +S'Ernest Capaldo' +p17146 +sa(dp17147 +g12 +g27 +sg2 +S'Historical Printed Cotton' +p17148 +sg4 +S'D Davin' +p17149 +sa(dp17150 +g12 +g27 +sg2 +S'Historical Printed Textile' +p17151 +sg4 +S'E.A. Smaller' +p17152 +sa(dp17153 +g12 +g27 +sg2 +S'Printed Cotton Chintz' +p17154 +sg4 +S'Joseph Lubrano' +p17155 +sa(dp17156 +g12 +g27 +sg2 +S'Printed Textile' +p17157 +sg4 +S'Joseph Lubrano' +p17158 +sa(dp17159 +g12 +g27 +sg2 +S'Printed Textile' +p17160 +sg4 +S'Joseph Lubrano' +p17161 +sa(dp17162 +g12 +g27 +sg2 +S'Printed Cotton' +p17163 +sg4 +S'Charlotte Winter' +p17164 +sa(dp17165 +g12 +g27 +sg2 +S'Printed Textiles' +p17166 +sg4 +S'Ernest Capaldo' +p17167 +sa(dp17168 +g12 +g27 +sg2 +S'Printed Textiles' +p17169 +sg4 +S'Ernest Capaldo' +p17170 +sa(dp17171 +g12 +g27 +sg2 +S'Printed Textile' +p17172 +sg4 +S'Mildred Ford' +p17173 +sa(dp17174 +g12 +g27 +sg6 +S'bronze' +p17175 +sg8 +S'1502' +p17176 +sg2 +S'Arms of Filiberto Impalling Those of Margaret [reverse]' +p17177 +sg4 +S'Jean Marende' +p17178 +sa(dp17179 +g12 +g27 +sg2 +S'Printed Textiles' +p17180 +sg4 +S'Joseph Lubrano' +p17181 +sa(dp17182 +g12 +g27 +sg2 +S'Printed Cotton' +p17183 +sg4 +S'Mina Lowry' +p17184 +sa(dp17185 +g12 +g27 +sg2 +S'Printed Cotton' +p17186 +sg4 +S'Suzanne Roy' +p17187 +sa(dp17188 +g12 +g27 +sg2 +S'Historical Printed Cotton' +p17189 +sg4 +S'Arlene Perkins' +p17190 +sa(dp17191 +g12 +g27 +sg2 +S'Printed Cotton' +p17192 +sg4 +S'Joseph Lubrano' +p17193 +sa(dp17194 +g12 +g27 +sg2 +S'Historical Printed Cotton' +p17195 +sg4 +S'Ernest Capaldo' +p17196 +sa(dp17197 +g12 +g27 +sg2 +S'Printed Textile' +p17198 +sg4 +S'Joseph Lubrano' +p17199 +sa(dp17200 +g12 +g27 +sg2 +S'Printed Textile' +p17201 +sg4 +S'Arlene Perkins' +p17202 +sa(dp17203 +g12 +g27 +sg2 +S'Printed Textile' +p17204 +sg4 +S'Ernest Capaldo' +p17205 +sa(dp17206 +g12 +S'In America, commercial production of printed textiles was a profitable business by\n 1800. While the growth of the textile industry in America was encouraged by the\n availability of cheap cotton and by protective tariffs, mechanization was the key\n to an expanding textile industry. Mechanical spinning was introduced in Rhode Island\n in 1789, and the power loom came into use in 1814. With these machines American\n mills accelerated and vastly increased the production of textiles. The tedious\n wood-block technique gave way to the more expeditious process of roller printing,\n that is, using metal cylinders with engraved surface designs as the means by which\n patterns were transferred to fabric. By the middle of the nineteenth century,\n textile mills were flourishing throughout New England and the mid-Atlantic states.\n Fall River, Massachusetts, became an important textile manufacturing and printing\n center, and among the factories in that location, Andrew Robeson and Company\n was pre-eminent. Here is a cotton print produced by the Robeson Company\n between 1834 and 1848 and bearing the company\'s label. The fabric is woven in\n stripes of white and soft yellow. The striped design is overlaid with a floral pattern\n printed in black and red and reminiscent of the floral forms seen in Indian fabrics.\n The delicacy of the printed pattern is in keeping with the refinement of the colors\n and justifies the many awards the company received for the "fineness" of their products.\n ' +p17207 +sg10 +S'http://www.nga.gov:80/thumb-l/a00050/a0005088.jpg' +p17208 +sg2 +S'Printed Textile' +p17209 +sg4 +S'Joseph Lubrano' +p17210 +sa(dp17211 +g12 +g27 +sg6 +S'bronze' +p17212 +sg8 +S'1446' +p17213 +sg2 +S'Isotta degli Atti, 1432/1433-1474, Mistress 1446, then Wife after 1453, of Sigismondo Malatesta [obverse]' +p17214 +sg4 +S"Matteo de' Pasti" +p17215 +sa(dp17216 +g12 +g27 +sg2 +S'Printed Cotton' +p17217 +sg4 +S'Catherine Fowler' +p17218 +sa(dp17219 +g12 +g27 +sg2 +S'Printed Cotton' +p17220 +sg4 +S'Charlotte Winter' +p17221 +sa(dp17222 +g12 +g27 +sg2 +S'Printed Textile' +p17223 +sg4 +S'Joseph Lubrano' +p17224 +sa(dp17225 +g12 +g27 +sg2 +S'Printed Textile (Historical)' +p17226 +sg4 +S'Arlene Perkins' +p17227 +sa(dp17228 +g12 +g27 +sg2 +S'Printed Cotton' +p17229 +sg4 +S'Ernest Capaldo' +p17230 +sa(dp17231 +g12 +g27 +sg2 +S'Printed Cotton' +p17232 +sg4 +S'Joseph Lubrano' +p17233 +sa(dp17234 +g12 +g27 +sg2 +S'Cotton Prints' +p17235 +sg4 +S'Albert Levone' +p17236 +sa(dp17237 +g12 +g27 +sg2 +S'Printed Cottons (from Quilt)' +p17238 +sg4 +S'Albert Levone' +p17239 +sa(dp17240 +g12 +g27 +sg10 +S'http://www.nga.gov:80/thumb-l/a00002/a00002ba.jpg' +p17241 +sg2 +S'Printed Cotton' +p17242 +sg4 +S'Albert Levone' +p17243 +sa(dp17244 +g12 +g27 +sg2 +S'Printed Cotton' +p17245 +sg4 +S'Albert Levone' +p17246 +sa(dp17247 +g12 +g27 +sg6 +S'bronze' +p17248 +sg8 +S'1446' +p17249 +sg2 +S'The Malatesta Elephant in a Meadow [reverse]' +p17250 +sg4 +S"Matteo de' Pasti" +p17251 +sa(dp17252 +g12 +g27 +sg2 +S'Figured Material from Quilt' +p17253 +sg4 +S'Dorothy Posten' +p17254 +sa(dp17255 +g12 +g27 +sg2 +S'Figured Material from Quilt' +p17256 +sg4 +S'Dorothy Posten' +p17257 +sa(dp17258 +g12 +g27 +sg2 +S'Figured Material from Quilt' +p17259 +sg4 +S'Dorothy Posten' +p17260 +sa(dp17261 +g12 +g27 +sg2 +S'Materials from Patchwork Quilt' +p17262 +sg4 +S'Katherine Hastings' +p17263 +sa(dp17264 +g12 +g27 +sg2 +S'Materials from Patchwork Quilt' +p17265 +sg4 +S'Katherine Hastings' +p17266 +sa(dp17267 +g12 +g27 +sg2 +S'Materials from Patchwork Quilt' +p17268 +sg4 +S'Katherine Hastings' +p17269 +sa(dp17270 +g12 +g27 +sg2 +S'Materials from Quilt' +p17271 +sg4 +S'Katherine Hastings' +p17272 +sa(dp17273 +g12 +g27 +sg2 +S'Materials from Quilt' +p17274 +sg4 +S'Edward White' +p17275 +sa(dp17276 +g12 +g27 +sg2 +S'Materials from Quilt' +p17277 +sg4 +S'Dorothy Posten' +p17278 +sa(dp17279 +g12 +g27 +sg2 +S'Materials from Quilt' +p17280 +sg4 +S'Dorothy Posten' +p17281 +sa(dp17282 +g12 +g27 +sg6 +S'bronze' +p17283 +sg8 +S'1446' +p17284 +sg2 +S'Isotta degli Atti, 1432/1433-1474, Mistress 1446, then Wife after 1453, of Sigismondo Malatesta [obverse]' +p17285 +sg4 +S"Matteo de' Pasti" +p17286 +sa(dp17287 +g12 +g27 +sg2 +S'Patchwork from Spread (Quilt)' +p17288 +sg4 +S'Inez McCombs' +p17289 +sa(dp17290 +g12 +g27 +sg2 +S'Printed Cottons from Quilt' +p17291 +sg4 +S'Albert Levone' +p17292 +sa(dp17293 +g12 +g27 +sg2 +S'Vest Material' +p17294 +sg4 +S'Robert Stewart' +p17295 +sa(dp17296 +g12 +g27 +sg2 +S'Vest Material' +p17297 +sg4 +S'Robert Stewart' +p17298 +sa(dp17299 +g12 +g27 +sg2 +S'Vest Material' +p17300 +sg4 +S'Robert Stewart' +p17301 +sa(dp17302 +g12 +g27 +sg2 +S'Vest Material' +p17303 +sg4 +S'Robert Stewart' +p17304 +sa(dp17305 +g12 +g27 +sg2 +S'Materials from Quilt' +p17306 +sg4 +S'Katherine Hastings' +p17307 +sa(dp17308 +g12 +g27 +sg2 +S'Materials from Quilt' +p17309 +sg4 +S'Katherine Hastings' +p17310 +sa(dp17311 +g12 +g27 +sg2 +S'Materials from Quilt' +p17312 +sg4 +S'Dorothy Posten' +p17313 +sa(dp17314 +g12 +g27 +sg2 +S'Materials from Quilt' +p17315 +sg4 +S'Dorothy Posten' +p17316 +sa(dp17317 +g12 +g27 +sg6 +S'bronze' +p17318 +sg8 +S'1446' +p17319 +sg2 +S'The Malatesta Elephant in a Meadow [reverse]' +p17320 +sg4 +S"Matteo de' Pasti" +p17321 +sa(dp17322 +g12 +g27 +sg2 +S'Materials from Quilt' +p17323 +sg4 +S'Dorothy Posten' +p17324 +sa(dp17325 +g12 +g27 +sg2 +S'Materials from Quilt' +p17326 +sg4 +S'Dorothy Posten' +p17327 +sa(dp17328 +g12 +g27 +sg2 +S'Materials from Quilt' +p17329 +sg4 +S'Dorothy Posten' +p17330 +sa(dp17331 +g12 +g27 +sg2 +S'Materials from Quilt' +p17332 +sg4 +S'Dorothy Posten' +p17333 +sa(dp17334 +g12 +g27 +sg2 +S'Materials from Quilt' +p17335 +sg4 +S'Dorothy Posten' +p17336 +sa(dp17337 +g12 +g27 +sg2 +S'Materials from Quilt' +p17338 +sg4 +S'Dorothy Posten' +p17339 +sa(dp17340 +g12 +g27 +sg2 +S'Materials from Quilt' +p17341 +sg4 +S'Dorothy Posten' +p17342 +sa(dp17343 +g12 +g27 +sg2 +S'Materials from Quilt' +p17344 +sg4 +S'Dorothy Posten' +p17345 +sa(dp17346 +g12 +g27 +sg2 +S'Quilt Patches' +p17347 +sg4 +S'Dorothy Posten' +p17348 +sa(dp17349 +g12 +g27 +sg2 +S'Quilt Patches' +p17350 +sg4 +S'Dorothy Posten' +p17351 +sa(dp17352 +g12 +g27 +sg6 +S'plaster' +p17353 +sg8 +S'c. 1475' +p17354 +sg2 +S'Madonna and Child' +p17355 +sg4 +S'Antonio Rossellino' +p17356 +sa(dp17357 +g12 +g27 +sg6 +S'bronze' +p17358 +sg8 +S'1446' +p17359 +sg2 +S'Sigismondo Pandolfo Malatesta, 1417-1468, Lord of Rimini and Fano [obverse]' +p17360 +sg4 +S"Matteo de' Pasti" +p17361 +sa(dp17362 +g12 +g27 +sg2 +S'Quilt Patches' +p17363 +sg4 +S'Edward White' +p17364 +sa(dp17365 +g12 +g27 +sg2 +S'Cotton Prints' +p17366 +sg4 +S'Albert Levone' +p17367 +sa(dp17368 +g12 +g27 +sg2 +S'Cloth Samples' +p17369 +sg4 +S'Albert Levone' +p17370 +sa(dp17371 +g12 +g27 +sg2 +S'Cotton Prints' +p17372 +sg4 +S'Erskine Carter' +p17373 +sa(dp17374 +g12 +g27 +sg2 +S'Patchwork Bedspread' +p17375 +sg4 +S'Frances Lichten' +p17376 +sa(dp17377 +g12 +g27 +sg2 +S'Materials from Patchwork Bedspread' +p17378 +sg4 +S'Frances Lichten' +p17379 +sa(dp17380 +g12 +g27 +sg2 +S'Materials from Patchwork Bedspread' +p17381 +sg4 +S'Frances Lichten' +p17382 +sa(dp17383 +g12 +g27 +sg2 +S'Materials from Patchwork Bedspread' +p17384 +sg4 +S'Frances Lichten' +p17385 +sa(dp17386 +g12 +g27 +sg2 +S'Materials from Patchwork Bedspread' +p17387 +sg4 +S'Frances Lichten' +p17388 +sa(dp17389 +g12 +g27 +sg2 +S'Materials from Patchwork Bedspread' +p17390 +sg4 +S'Frances Lichten' +p17391 +sa(dp17392 +g12 +g27 +sg6 +S'bronze' +p17393 +sg8 +S'1446' +p17394 +sg2 +S'The Castle of Rimini [reverse]' +p17395 +sg4 +S"Matteo de' Pasti" +p17396 +sa(dp17397 +g12 +g27 +sg2 +S'Materials from Patchwork Bedspread' +p17398 +sg4 +S'Frances Lichten' +p17399 +sa(dp17400 +g12 +g27 +sg2 +S'Materials from Patchwork Bedspread' +p17401 +sg4 +S'Frances Lichten' +p17402 +sa(dp17403 +g12 +g27 +sg2 +S'Materials from Patchwork Bedspread' +p17404 +sg4 +S'Frances Lichten' +p17405 +sa(dp17406 +g12 +g27 +sg2 +S'Quilt Patches' +p17407 +sg4 +S'Katherine Hastings' +p17408 +sa(dp17409 +g12 +g27 +sg2 +S'Quilt Patches' +p17410 +sg4 +S'Edward White' +p17411 +sa(dp17412 +g12 +g27 +sg2 +S'Quilt Patches' +p17413 +sg4 +S'Katherine Hastings' +p17414 +sa(dp17415 +g12 +g27 +sg2 +S'Quilt Patches' +p17416 +sg4 +S'Katherine Hastings' +p17417 +sa(dp17418 +g12 +g27 +sg2 +S'Quilt Patches' +p17419 +sg4 +S'Charles Moss' +p17420 +sa(dp17421 +g12 +g27 +sg2 +S'Quilt Patches' +p17422 +sg4 +S'Charles Moss' +p17423 +sa(dp17424 +g12 +g27 +sg2 +S'Printed Cotton' +p17425 +sg4 +S'J. Howard Iams' +p17426 +sa(dp17427 +g12 +g27 +sg6 +S'bronze' +p17428 +sg8 +S'c. 1441' +p17429 +sg2 +S'Filippo Maria Visconti, 1392-1447, Duke of Milan 1412 [obverse]' +p17430 +sg4 +S'Pisanello' +p17431 +sa(dp17432 +g12 +g27 +sg2 +S'Bed Curtain' +p17433 +sg4 +S'Alice Braun' +p17434 +sa(dp17435 +g12 +g27 +sg2 +S'Chintz (From Quilt)' +p17436 +sg4 +S'J. Howard Iams' +p17437 +sa(dp17438 +g12 +g27 +sg2 +S'Quilt Patches' +p17439 +sg4 +S'Katherine Hastings' +p17440 +sa(dp17441 +g12 +g27 +sg2 +S'Quilt Patches' +p17442 +sg4 +S'Katherine Hastings' +p17443 +sa(dp17444 +g12 +g27 +sg2 +S'Material from Dress' +p17445 +sg4 +S'Mary E. Humes' +p17446 +sa(dp17447 +g12 +g27 +sg2 +S'Flag: Civil War' +p17448 +sg4 +S'Edward Grant' +p17449 +sa(dp17450 +g12 +g27 +sg2 +S'Flag: Mexican War' +p17451 +sg4 +S'Edward Grant' +p17452 +sa(dp17453 +g12 +g27 +sg2 +S'Revolutionary Flag' +p17454 +sg4 +S'Edward Grant' +p17455 +sa(dp17456 +g12 +g27 +sg2 +S'Flag' +p17457 +sg4 +S'Joseph Sudek' +p17458 +sa(dp17459 +g12 +g27 +sg2 +S'Miniature Revolutionary Flag' +p17460 +sg4 +S'John Hall' +p17461 +sa(dp17462 +g12 +g27 +sg6 +S'bronze' +p17463 +sg8 +S'c. 1441' +p17464 +sg2 +S'Filippo Maria Visconti Riding in a Mountainous Landscape [reverse]' +p17465 +sg4 +S'Pisanello' +p17466 +sa(dp17467 +g12 +g27 +sg2 +S'Night Cap' +p17468 +sg4 +S'Percival Jenner' +p17469 +sa(dp17470 +g12 +g27 +sg2 +S'Cap' +p17471 +sg4 +S'Percival Jenner' +p17472 +sa(dp17473 +g12 +g27 +sg2 +S'Headdress' +p17474 +sg4 +S'Eva Noe' +p17475 +sa(dp17476 +g12 +g27 +sg2 +S'Headdress' +p17477 +sg4 +S'Eva Noe' +p17478 +sa(dp17479 +g12 +g27 +sg2 +S'Headdress' +p17480 +sg4 +S'Eva Noe' +p17481 +sa(dp17482 +g12 +g27 +sg2 +S'Headdress' +p17483 +sg4 +S'Eva Noe' +p17484 +sa(dp17485 +g12 +g27 +sg2 +S'Headdress' +p17486 +sg4 +S'Eva Noe' +p17487 +sa(dp17488 +g12 +g27 +sg2 +S'Headdress' +p17489 +sg4 +S'Eva Noe' +p17490 +sa(dp17491 +g12 +g27 +sg2 +S'Headdress' +p17492 +sg4 +S'Eva Noe' +p17493 +sa(dp17494 +g12 +g27 +sg2 +S'Headdress' +p17495 +sg4 +S'Eva Noe' +p17496 +sa(dp17497 +g12 +g27 +sg6 +S'bronze' +p17498 +sg8 +S'c. 1446' +p17499 +sg2 +S"Vittorino de' Rambaldoni da Feltre, 1379-1446, Humanist [obverse]" +p17500 +sg4 +S'Pisanello' +p17501 +sa(dp17502 +g12 +g27 +sg2 +S'Headdress' +p17503 +sg4 +S'Eva Noe' +p17504 +sa(dp17505 +g12 +g27 +sg2 +S'Bonnet' +p17506 +sg4 +S'Dorothy M. Gerhard' +p17507 +sa(dp17508 +g12 +g27 +sg2 +S"Man's Hat" +p17509 +sg4 +S'William Mills' +p17510 +sa(dp17511 +g12 +g27 +sg2 +S'Lace Cap' +p17512 +sg4 +S'Gladys C. Parker' +p17513 +sa(dp17514 +g12 +g27 +sg2 +S'Hat' +p17515 +sg4 +S'Ruth M. Barnes' +p17516 +sa(dp17517 +g12 +g27 +sg2 +S'Hat' +p17518 +sg4 +S'Ann Gene Buckley' +p17519 +sa(dp17520 +g12 +g27 +sg2 +S'Sealskin Cap' +p17521 +sg4 +S'Dana Bartlett' +p17522 +sa(dp17523 +g12 +g27 +sg2 +S"Baby's Bonnet" +p17524 +sg4 +S'Edith Towner' +p17525 +sa(dp17526 +g12 +g27 +sg2 +S'Hat' +p17527 +sg4 +S'Juanita Donahoo' +p17528 +sa(dp17529 +g12 +g27 +sg2 +S'Hat Mannequin' +p17530 +sg4 +S'Howard Weld' +p17531 +sa(dp17532 +g12 +g27 +sg6 +S'bronze' +p17533 +sg8 +S'c. 1446' +p17534 +sg2 +S'Pelican in Her Piety [reverse]' +p17535 +sg4 +S'Pisanello' +p17536 +sa(dp17537 +g12 +g27 +sg2 +S'Hat Mannequin and Bonnet' +p17538 +sg4 +S'Howard Weld' +p17539 +sa(dp17540 +g12 +g27 +sg2 +S'Black Silk Bonnet' +p17541 +sg4 +S'B. Berndt' +p17542 +sa(dp17543 +g12 +g27 +sg2 +S'Black Satin Bonnet' +p17544 +sg4 +S'B. Berndt' +p17545 +sa(dp17546 +g12 +g27 +sg2 +S'High Beaver Hat' +p17547 +sg4 +S'Gordon Saltar' +p17548 +sa(dp17549 +g12 +g27 +sg2 +S'High Straw Hat' +p17550 +sg4 +S'Ernest A. Towers, Jr.' +p17551 +sa(dp17552 +g12 +g27 +sg2 +S'Calash' +p17553 +sg4 +S'Edward L. Loper' +p17554 +sa(dp17555 +g12 +g27 +sg2 +S"Infant's Dress Yoke and Mull Cup" +p17556 +sg4 +S'Ella Josephine Sterling' +p17557 +sa(dp17558 +g12 +g27 +sg2 +S'Baby Bonnet' +p17559 +sg4 +S'Maud M. Holme' +p17560 +sa(dp17561 +g12 +g27 +sg2 +S'Night Cap' +p17562 +sg4 +S'Cora Parker' +p17563 +sa(dp17564 +g12 +g27 +sg2 +S'Sun Bonnet' +p17565 +sg4 +S'Cora Parker' +p17566 +sa(dp17567 +g12 +g27 +sg6 +S'bronze, partly gilded' +p17568 +sg8 +S'1537' +p17569 +sg2 +S'Charles V, 1500-1558, King of Spain 1516, Holy Roman Emperor 1519-1556 [obverse]' +p17570 +sg4 +S'Hans Reinhart the Elder' +p17571 +sa(dp17572 +g12 +g27 +sg2 +S'Sunbonnet' +p17573 +sg4 +S'Manuel G. Runyan' +p17574 +sa(dp17575 +g12 +g27 +sg2 +S'Bonnet' +p17576 +sg4 +S'Frank M. Keane' +p17577 +sa(dp17578 +g12 +g27 +sg2 +S'Bonnet' +p17579 +sg4 +S'Fred Hassebrock' +p17580 +sa(dp17581 +g12 +g27 +sg2 +S'Coal Scuttle Bonnet' +p17582 +sg4 +S'Charles Johnson' +p17583 +sa(dp17584 +g12 +g27 +sg2 +S'Bonnet' +p17585 +sg4 +S'J. Herman McCollum' +p17586 +sa(dp17587 +g12 +g27 +sg2 +S"Baby's Hood" +p17588 +sg4 +S'Artist Information (' +p17589 +sa(dp17590 +g12 +g27 +sg2 +S'Hat' +p17591 +sg4 +S'Mae Szilvasy' +p17592 +sa(dp17593 +g12 +g27 +sg2 +S'White Satin Hat' +p17594 +sg4 +S'Lucien Verbeke' +p17595 +sa(dp17596 +g12 +g27 +sg2 +S'Hat' +p17597 +sg4 +S'Joseph L. Boyd' +p17598 +sa(dp17599 +g12 +g27 +sg2 +S"Elderly Lady's Bonnet" +p17600 +sg4 +S'Al Curry' +p17601 +sa(dp17602 +g12 +g27 +sg6 +S'bronze, partly gilded' +p17603 +sg8 +S'1537' +p17604 +sg2 +S'Double-headed Eagle, Charged with Shield [reverse]' +p17605 +sg4 +S'Hans Reinhart the Elder' +p17606 +sa(dp17607 +g12 +g27 +sg2 +S'White Satin Bonnet' +p17608 +sg4 +S'Arelia Arbo' +p17609 +sa(dp17610 +g12 +g27 +sg2 +S'Hat' +p17611 +sg4 +S'Lucien Verbeke' +p17612 +sa(dp17613 +g12 +g27 +sg2 +S'Bonnet' +p17614 +sg4 +S'Al Curry' +p17615 +sa(dp17616 +g12 +g27 +sg2 +S'Satin and Lace Hat' +p17617 +sg4 +S'Arelia Arbo' +p17618 +sa(dp17619 +g12 +g27 +sg2 +S'Bonnet' +p17620 +sg4 +S'Lucien Verbeke' +p17621 +sa(dp17622 +g12 +g27 +sg2 +S'Poke Bonnet' +p17623 +sg4 +S'Arelia Arbo' +p17624 +sa(dp17625 +g12 +g27 +sg2 +S'Bonnet' +p17626 +sg4 +S'Lillian Causey' +p17627 +sa(dp17628 +g12 +g27 +sg2 +S'Bonnet' +p17629 +sg4 +S'Lillian Causey' +p17630 +sa(dp17631 +g12 +g27 +sg2 +S'Night Cap' +p17632 +sg4 +S'Marie Alain' +p17633 +sa(dp17634 +g12 +g27 +sg2 +S'Bonnet' +p17635 +sg4 +S'Lillian Causey' +p17636 +sa(dp17637 +g12 +g27 +sg6 +S'overall (diameter): 7.88 cm (3 1/8 in.)\r\ngross weight: 248.6 gr (0.548 lb.)\r\naxis: 12:00' +p17638 +sg8 +S'\nbronze' +p17639 +sg2 +S"Leo X (Giovanni de' Medici, 1475-1521), Pope 1513 [obverse]" +p17640 +sg4 +S'Roman 16th Century' +p17641 +sa(dp17642 +g12 +g27 +sg2 +S'Bonnet' +p17643 +sg4 +S'Stella Mosher' +p17644 +sa(dp17645 +g12 +g27 +sg2 +S'Bonnet' +p17646 +sg4 +S'Lillian Causey' +p17647 +sa(dp17648 +g12 +g27 +sg2 +S'Snood' +p17649 +sg4 +S'Stella Mosher' +p17650 +sa(dp17651 +g12 +g27 +sg2 +S"Woman's Headdress" +p17652 +sg4 +S'James McLellan' +p17653 +sa(dp17654 +g12 +g27 +sg2 +S'Mannequin' +p17655 +sg4 +S'Alice Cosgrove' +p17656 +sa(dp17657 +g12 +g27 +sg2 +S"Woman's Bonnet" +p17658 +sg4 +S'Marie Famularo' +p17659 +sa(dp17660 +g12 +g27 +sg2 +S'Silk Bonnet' +p17661 +sg4 +S'Peter Connin' +p17662 +sa(dp17663 +g12 +g27 +sg2 +S"Child's Bonnet" +p17664 +sg4 +S'Erwin Schwabe' +p17665 +sa(dp17666 +g12 +g27 +sg2 +S"Child's Hat" +p17667 +sg4 +S'Marie Famularo' +p17668 +sa(dp17669 +g12 +g27 +sg2 +S'Bonnet' +p17670 +sg4 +S'Herbert Marsh' +p17671 +sa(dp17672 +g12 +g27 +sg6 +S'overall (diameter): 7.88 cm (3 1/8 in.)\r\ngross weight: 248.6 gr (0.548 lb.)\r\naxis: 12:00' +p17673 +sg8 +S'\nbronze' +p17674 +sg2 +S'Shield with the Medici Arms, Surmounted by the Papal Tiara and Crossed Keys [reverse]' +p17675 +sg4 +S'Roman 16th Century' +p17676 +sa(dp17677 +g12 +g27 +sg2 +S'Opera Hood' +p17678 +sg4 +S'Richard Taylor' +p17679 +sa(dp17680 +g12 +g27 +sg2 +S'Hat' +p17681 +sg4 +S'Marie Famularo' +p17682 +sa(dp17683 +g12 +g27 +sg2 +S"Baby's Cap" +p17684 +sg4 +S'Herbert Marsh' +p17685 +sa(dp17686 +g12 +g27 +sg2 +S'Bonnet' +p17687 +sg4 +S'Grace Halpin' +p17688 +sa(dp17689 +g12 +g27 +sg2 +S'Bonnet' +p17690 +sg4 +S'Francis Law Durand' +p17691 +sa(dp17692 +g12 +g27 +sg2 +S'Straw Bonnet' +p17693 +sg4 +S'Frank Nelson' +p17694 +sa(dp17695 +g12 +g27 +sg2 +S'Crepe Bonnet' +p17696 +sg4 +S'Francis Law Durand' +p17697 +sa(dp17698 +g12 +g27 +sg2 +S'Bonnet' +p17699 +sg4 +S'Francis Law Durand' +p17700 +sa(dp17701 +g12 +g27 +sg2 +S'Night Cap' +p17702 +sg4 +S'Herbert Marsh' +p17703 +sa(dp17704 +g12 +g27 +sg2 +S'Straw Bonnet' +p17705 +sg4 +S'Francis Law Durand' +p17706 +sa(dp17707 +g12 +g27 +sg6 +S'overall: 41 x 30 cm (16 1/8 x 11 13/16 in.)' +p17708 +sg8 +S'\nmarble' +p17709 +sg2 +S'Madonna and Child' +p17710 +sg4 +S'Italian 19th Century' +p17711 +sa(dp17712 +g12 +g27 +sg6 +S'bronze' +p17713 +sg8 +S'probably c. 1478/1482' +p17714 +sg2 +S'Giovanni II Bentivoglio, 1443-1508, Lord of Bologna 1462-1506 [obverse]' +p17715 +sg4 +S'Sperandio' +p17716 +sa(dp17717 +g12 +g27 +sg2 +S'Bonnet' +p17718 +sg4 +S'Francis Law Durand' +p17719 +sa(dp17720 +g12 +g27 +sg2 +S"Child's Cap" +p17721 +sg4 +S'Raymond Guterl' +p17722 +sa(dp17723 +g12 +g27 +sg2 +S"Infant's Cap" +p17724 +sg4 +S'Grace Halpin' +p17725 +sa(dp17726 +g12 +g27 +sg2 +S'Bonnet' +p17727 +sg4 +S'Marion Gaskill' +p17728 +sa(dp17729 +g12 +g27 +sg2 +S'Opera Hood' +p17730 +sg4 +S'Raymond Manupelli' +p17731 +sa(dp17732 +g12 +g27 +sg2 +S'Bonnet' +p17733 +sg4 +S'Florence Earl' +p17734 +sa(dp17735 +g12 +g27 +sg2 +S'Bonnet and Veil' +p17736 +sg4 +S'Isabelle De Strange' +p17737 +sa(dp17738 +g12 +g27 +sg2 +S"Baby's Hood" +p17739 +sg4 +S'Florence Earl' +p17740 +sa(dp17741 +g12 +g27 +sg2 +S'Bonnet' +p17742 +sg4 +S'Florence Earl' +p17743 +sa(dp17744 +g12 +g27 +sg2 +S"Baby's Cap" +p17745 +sg4 +S'Richard Whitaker' +p17746 +sa(dp17747 +g12 +g27 +sg6 +S'bronze' +p17748 +sg8 +S'probably c. 1478/1482' +p17749 +sg2 +S'Giovanni II Bentivoglio and Squire [reverse]' +p17750 +sg4 +S'Sperandio' +p17751 +sa(dp17752 +g12 +g27 +sg2 +S'Straw Bonnet' +p17753 +sg4 +S'Ferdinand Badin' +p17754 +sa(dp17755 +g12 +g27 +sg2 +S"Infant's Cap" +p17756 +sg4 +S'Eleanor Gausser' +p17757 +sa(dp17758 +g12 +g27 +sg2 +S"Baby's Bonnet" +p17759 +sg4 +S'Richard Whitaker' +p17760 +sa(dp17761 +g12 +g27 +sg2 +S'Bonnet' +p17762 +sg4 +S'Ferdinand Badin' +p17763 +sa(dp17764 +g12 +g27 +sg2 +S'Headdress' +p17765 +sg4 +S'Eva Noe' +p17766 +sa(dp17767 +g12 +g27 +sg2 +S'Hat' +p17768 +sg4 +S'Mae Szilvasy' +p17769 +sa(dp17770 +g12 +g27 +sg2 +S'Calash' +p17771 +sg4 +S'Esther Peck' +p17772 +sa(dp17773 +g12 +g27 +sg2 +S'Bonnet' +p17774 +sg4 +S'American 20th Century' +p17775 +sa(dp17776 +g12 +g27 +sg2 +S'Cap' +p17777 +sg4 +S'Rosalia Lane' +p17778 +sa(dp17779 +g12 +g27 +sg2 +S'Bonnet' +p17780 +sg4 +S'Rosalia Lane' +p17781 +sa(dp17782 +g12 +g27 +sg6 +S'bronze' +p17783 +sg8 +S'1538' +p17784 +sg2 +S'Antonio Mula, Venetian Patrician, Duke of Candia 1536, Member of the Council of Ten 1538 [obverse]' +p17785 +sg4 +S'Andrea Spinelli' +p17786 +sa(dp17787 +g12 +g27 +sg2 +S'Hat' +p17788 +sg4 +S'Rosalia Lane' +p17789 +sa(dp17790 +g12 +g27 +sg2 +S'Bonnet' +p17791 +sg4 +S'Sara Garfinkel' +p17792 +sa(dp17793 +g12 +g27 +sg2 +S'Bonnet' +p17794 +sg4 +S'Gertrude Lemberg' +p17795 +sa(dp17796 +g12 +g27 +sg2 +S'Bonnet' +p17797 +sg4 +S'Ruth Bialostosky' +p17798 +sa(dp17799 +g12 +g27 +sg2 +S'Bonnet' +p17800 +sg4 +S'Ruth Bialostosky' +p17801 +sa(dp17802 +g12 +g27 +sg2 +S'Cap' +p17803 +sg4 +S'Jessie M. Benge' +p17804 +sa(dp17805 +g12 +g27 +sg2 +S'Cap' +p17806 +sg4 +S'Rosalia Lane' +p17807 +sa(dp17808 +g12 +g27 +sg2 +S'Calash' +p17809 +sg4 +S'Edna C. Rex' +p17810 +sa(dp17811 +g12 +g27 +sg2 +S'Bonnet' +p17812 +sg4 +S'Sara Garfinkel' +p17813 +sa(dp17814 +g12 +g27 +sg2 +S'Hat' +p17815 +sg4 +S'Jean Peszel' +p17816 +sa(dp17817 +g12 +g27 +sg6 +S'bronze' +p17818 +sg8 +S'1538' +p17819 +sg2 +S'Mula and Another Man Joining Hands [reverse]' +p17820 +sg4 +S'Andrea Spinelli' +p17821 +sa(dp17822 +g12 +g27 +sg2 +S'Hat' +p17823 +sg4 +S'Irene Lawson' +p17824 +sa(dp17825 +g12 +g27 +sg2 +S'Cap' +p17826 +sg4 +S'Melita Hofmann' +p17827 +sa(dp17828 +g12 +g27 +sg2 +S'Cap' +p17829 +sg4 +S'Melita Hofmann' +p17830 +sa(dp17831 +g12 +g27 +sg2 +S'Bonnet' +p17832 +sg4 +S'Margaret Concha' +p17833 +sa(dp17834 +g12 +g27 +sg2 +S"Woman's Hood" +p17835 +sg4 +S'Gertrude Lemberg' +p17836 +sa(dp17837 +g12 +g27 +sg2 +S'Hat' +p17838 +sg4 +S'Melita Hofmann' +p17839 +sa(dp17840 +g12 +g27 +sg2 +S'Smoking Cap' +p17841 +sg4 +S'Alvin Shiren' +p17842 +sa(dp17843 +g12 +g27 +sg2 +S'Hat' +p17844 +sg4 +S'Hedwig Emanuel' +p17845 +sa(dp17846 +g12 +g27 +sg2 +S'Calash' +p17847 +sg4 +S'Fanchon Larzelere' +p17848 +sa(dp17849 +g12 +g27 +sg2 +S'Bonnet' +p17850 +sg4 +S'Roberta Spicer' +p17851 +sa(dp17852 +g12 +g27 +sg6 +S'bronze' +p17853 +sg8 +S'unknown date\n' +p17854 +sg2 +S'Allegory of Victory' +p17855 +sg4 +S'Antico' +p17856 +sa(dp17857 +g12 +g27 +sg2 +S'Cap' +p17858 +sg4 +S'Roberta Spicer' +p17859 +sa(dp17860 +g12 +g27 +sg2 +S'Bonnet' +p17861 +sg4 +S'Gladys Cook' +p17862 +sa(dp17863 +g12 +g27 +sg2 +S'Bonnet' +p17864 +sg4 +S'Gladys Cook' +p17865 +sa(dp17866 +g12 +g27 +sg2 +S'Poke Bonnet' +p17867 +sg4 +S'Nancy Crimi' +p17868 +sa(dp17869 +g12 +g27 +sg2 +S'Opera Hood' +p17870 +sg4 +S'Melita Hofmann' +p17871 +sa(dp17872 +g12 +g27 +sg2 +S'Bonnet' +p17873 +sg4 +S'Doris Beer' +p17874 +sa(dp17875 +g12 +g27 +sg2 +S"Man's Hat" +p17876 +sg4 +S'Alvin Shiren' +p17877 +sa(dp17878 +g12 +g27 +sg2 +S'Hat' +p17879 +sg4 +S'Jean Peszel' +p17880 +sa(dp17881 +g12 +g27 +sg2 +S"Quaker Man's Hat" +p17882 +sg4 +S'Henry De Wolfe' +p17883 +sa(dp17884 +g12 +g27 +sg2 +S'Hat' +p17885 +sg4 +S'Hedwig Emanuel' +p17886 +sa(dp17887 +g12 +g27 +sg6 +S'bronze' +p17888 +sg8 +S'c. 1490' +p17889 +sg2 +S'Diva Faustina [obverse]' +p17890 +sg4 +S'Moderno' +p17891 +sa(dp17892 +g12 +g27 +sg2 +S'Bonnet' +p17893 +sg4 +S'Jessie M. Benge' +p17894 +sa(dp17895 +g12 +g27 +sg2 +S"Man's Hat" +p17896 +sg4 +S'Bessie Forman' +p17897 +sa(dp17898 +g12 +g27 +sg2 +S"Child's Bonnet" +p17899 +sg4 +S'Mary E. Humes' +p17900 +sa(dp17901 +g12 +g27 +sg2 +S'Hat' +p17902 +sg4 +S'Marie Mitchell' +p17903 +sa(dp17904 +g12 +g27 +sg2 +S"Man's Hat" +p17905 +sg4 +S'Henry De Wolfe' +p17906 +sa(dp17907 +g12 +g27 +sg2 +S'Bonnet' +p17908 +sg4 +S'Roberta Spicer' +p17909 +sa(dp17910 +g12 +g27 +sg2 +S'Bonnet' +p17911 +sg4 +S'Bessie Forman' +p17912 +sa(dp17913 +g12 +g27 +sg2 +S'Calash' +p17914 +sg4 +S'Roberta Spicer' +p17915 +sa(dp17916 +g12 +g27 +sg2 +S'Bonnet' +p17917 +sg4 +S'Dorothy Gernon' +p17918 +sa(dp17919 +g12 +g27 +sg2 +S'Bonnet' +p17920 +sg4 +S'Bessie Forman' +p17921 +sa(dp17922 +g12 +g27 +sg6 +S'overall (diameter): 7.6 cm (3 in.) gross weight: 87 gr' +p17923 +sg8 +S'\nbronze' +p17924 +sg2 +S'A Triumph, with Hunting Scenes' +p17925 +sg4 +S'Mantuan 16th Century' +p17926 +sa(dp17927 +g12 +g27 +sg2 +S'Bonnet' +p17928 +sg4 +S'Jean Peszel' +p17929 +sa(dp17930 +g12 +g27 +sg2 +S'Cap' +p17931 +sg4 +S'Jessie M. Benge' +p17932 +sa(dp17933 +g12 +g27 +sg2 +S"Woman's Night Cap" +p17934 +sg4 +S'Virginia Berge' +p17935 +sa(dp17936 +g12 +g27 +sg2 +S'Bonnet' +p17937 +sg4 +S'Doris Beer' +p17938 +sa(dp17939 +g12 +g27 +sg2 +S'Hat' +p17940 +sg4 +S'Nancy Crimi' +p17941 +sa(dp17942 +g12 +g27 +sg2 +S"Man's Hat" +p17943 +sg4 +S'Creighton Kay-Scott' +p17944 +sa(dp17945 +g12 +g27 +sg2 +S'Bonnet' +p17946 +sg4 +S'Jessie M. Benge' +p17947 +sa(dp17948 +g12 +g27 +sg2 +S"Baby's Cap" +p17949 +sg4 +S'Margaret Concha' +p17950 +sa(dp17951 +g12 +g27 +sg2 +S"Child's Bonnet" +p17952 +sg4 +S'Catherine Fowler' +p17953 +sa(dp17954 +g12 +g27 +sg2 +S'Quaker Bonnet' +p17955 +sg4 +S'Rosalia Lane' +p17956 +sa(dp17957 +g12 +g27 +sg6 +S'bronze' +p17958 +sg8 +S'unknown date\n' +p17959 +sg2 +S'Antique Marriage Scene' +p17960 +sg4 +S'Valerio Belli' +p17961 +sa(dp17962 +g12 +g27 +sg2 +S'Bonnet' +p17963 +sg4 +S'Dorothy Gernon' +p17964 +sa(dp17965 +g12 +g27 +sg2 +S"Baby's Cap" +p17966 +sg4 +S'Sylvia De Zon' +p17967 +sa(dp17968 +g12 +g27 +sg2 +S'Headdress' +p17969 +sg4 +S'Nancy Crimi' +p17970 +sa(dp17971 +g12 +g27 +sg2 +S'Headdress' +p17972 +sg4 +S'Bessie Forman' +p17973 +sa(dp17974 +g12 +g27 +sg2 +S'Quaker Bonnet' +p17975 +sg4 +S'Hedwig Emanuel' +p17976 +sa(dp17977 +g12 +g27 +sg2 +S'Quaker Bonnet' +p17978 +sg4 +S'Catherine Fowler' +p17979 +sa(dp17980 +g12 +g27 +sg2 +S'Bonnet' +p17981 +sg4 +S'Rosalia Lane' +p17982 +sa(dp17983 +g12 +g27 +sg2 +S'Bonnet' +p17984 +sg4 +S'Nancy Crimi' +p17985 +sa(dp17986 +g12 +g27 +sg2 +S'Trousers' +p17987 +sg4 +S'Creighton Kay-Scott' +p17988 +sa(dp17989 +g12 +g27 +sg2 +S'Sun Bonnet' +p17990 +sg4 +S'Wilford H. Shurtliff' +p17991 +sa(dp17992 +g12 +g27 +sg6 +S'gilt bronze' +p17993 +sg8 +S'unknown date\n' +p17994 +sg2 +S'The Entombment' +p17995 +sg4 +S'Valerio Belli' +p17996 +sa(dp17997 +g12 +g27 +sg2 +S'Bonnet' +p17998 +sg4 +S'Mary E. Humes' +p17999 +sa(dp18000 +g12 +g27 +sg2 +S"Boy's Hat" +p18001 +sg4 +S'Mary E. Humes' +p18002 +sa(dp18003 +g12 +g27 +sg2 +S"Baby's Cap" +p18004 +sg4 +S'Mary E. Humes' +p18005 +sa(dp18006 +g12 +g27 +sg2 +S"Baby's Cap" +p18007 +sg4 +S'Edna C. Rex' +p18008 +sa(dp18009 +g12 +g27 +sg2 +S"Lady's Cap" +p18010 +sg4 +S'Edna C. Rex' +p18011 +sa(dp18012 +g12 +g27 +sg2 +S"Lady's Cap" +p18013 +sg4 +S'Edna C. Rex' +p18014 +sa(dp18015 +g12 +g27 +sg2 +S"Man's Linen Collar" +p18016 +sg4 +S'Verna Tallman' +p18017 +sa(dp18018 +g12 +g27 +sg2 +S'Neckerchief' +p18019 +sg4 +S'Irene M. Burge' +p18020 +sa(dp18021 +g12 +g27 +sg2 +S'Cravat and Box' +p18022 +sg4 +S'William Spiecker' +p18023 +sa(dp18024 +g12 +g27 +sg2 +S'Cravat' +p18025 +sg4 +S'James Vail' +p18026 +sa(dp18027 +g12 +g27 +sg6 +S'gilt bronze' +p18028 +sg8 +S'unknown date\n' +p18029 +sg2 +S'Judgment of Paris' +p18030 +sg4 +S'Valerio Belli' +p18031 +sa(dp18032 +g12 +g27 +sg2 +S'Stock Tie' +p18033 +sg4 +S'Raymond Manupelli' +p18034 +sa(dp18035 +g12 +g27 +sg2 +S'Cravat' +p18036 +sg4 +S'Columbus Simpson' +p18037 +sa(dp18038 +g12 +g27 +sg2 +S'Scarf' +p18039 +sg4 +S'G.A. Spangenberg' +p18040 +sa(dp18041 +g12 +g27 +sg2 +S'High Linen Collar' +p18042 +sg4 +S'Henry De Wolfe' +p18043 +sa(dp18044 +g12 +g27 +sg2 +S'Collar' +p18045 +sg4 +S'Henry De Wolfe' +p18046 +sa(dp18047 +g12 +g27 +sg2 +S'Cravat' +p18048 +sg4 +S'Catherine Fowler' +p18049 +sa(dp18050 +g12 +g27 +sg2 +S'Cravat' +p18051 +sg4 +S'Catherine Fowler' +p18052 +sa(dp18053 +g12 +g27 +sg2 +S'Cravat' +p18054 +sg4 +S'Marie Mitchell' +p18055 +sa(dp18056 +g12 +g27 +sg2 +S'Collar' +p18057 +sg4 +S'Henry De Wolfe' +p18058 +sa(dp18059 +g12 +g27 +sg2 +S'Cravat' +p18060 +sg4 +S'Henry De Wolfe' +p18061 +sa(dp18062 +g2 +S"Giuliano de' Medici" +p18063 +sg4 +S'Andrea del Verrocchio' +p18064 +sg6 +S'terracotta' +p18065 +sg8 +S'c. 1475/1478' +p18066 +sg10 +S'http://www.nga.gov:80/thumb-l/a00005/a00005e3.jpg' +p18067 +sg12 +S'Verrocchio\'s\n Unfortunately for the Medici, other noble families of Florence were growing tired of their leadership. Inspired to unseat them, the Pazzi conspiracy unraveled during high mass in the Florentine Duomo on April 26, 1478. As originally conceived, the plan was to assassinate both brothers the evening before at a party in Lorenzo\'s villa. Yet Giuliano had remained home to nurse a leg wound. Wanting to avoid a possible escape by Giuliano, the conspirators postponed their assault until Sunday when both brothers would surely be at the morning service. There, the Pazzi henchmen waited for the signal—the priest raising the Host—before attacking. Lorenzo survived, escaping with only minor injuries, but Giuliano was instantly killed. To revenge his brother, Lorenzo strangled the last bit of power out of his enemies, murdered the Pazzi men, banished their women, and imprisoned their relatives.\n ' +p18068 +sa(dp18069 +g12 +g27 +sg6 +S'gilt bronze' +p18070 +sg8 +S'unknown date\n' +p18071 +sg2 +S'Apollo and Marsyas' +p18072 +sg4 +S'Giovanni Bernardi' +p18073 +sa(dp18074 +g12 +g27 +sg2 +S'Petticoat' +p18075 +sg4 +S'Lena Nastasi' +p18076 +sa(dp18077 +g12 +g27 +sg2 +S'Nightgown' +p18078 +sg4 +S'Evelyn Bailey' +p18079 +sa(dp18080 +g12 +g27 +sg2 +S'Drawers Trimmed w/ Drawnwork' +p18081 +sg4 +S'Evelyn Bailey' +p18082 +sa(dp18083 +g12 +g27 +sg2 +S'Chemise' +p18084 +sg4 +S'Evelyn Bailey' +p18085 +sa(dp18086 +g12 +g27 +sg2 +S'Nightgown' +p18087 +sg4 +S'Evelyn Bailey' +p18088 +sa(dp18089 +g12 +g27 +sg2 +S'Nightgown' +p18090 +sg4 +S'Evelyn Bailey' +p18091 +sa(dp18092 +g12 +g27 +sg2 +S'Nightgown (Back View)' +p18093 +sg4 +S'Evelyn Bailey' +p18094 +sa(dp18095 +g12 +g27 +sg2 +S'Nightgown' +p18096 +sg4 +S'Evelyn Bailey' +p18097 +sa(dp18098 +g12 +g27 +sg2 +S'Nightgown' +p18099 +sg4 +S'Evelyn Bailey' +p18100 +sa(dp18101 +g12 +g27 +sg2 +S'Bloomers' +p18102 +sg4 +S'Evelyn Bailey' +p18103 +sa(dp18104 +g12 +g27 +sg6 +S'bronze' +p18105 +sg8 +S'unknown date\n' +p18106 +sg2 +S'The Continence of Scipio [reversed sense]' +p18107 +sg4 +S'Giovanni Bernardi' +p18108 +sa(dp18109 +g12 +g27 +sg2 +S'Chemise' +p18110 +sg4 +S'Evelyn Bailey' +p18111 +sa(dp18112 +g12 +g27 +sg2 +S'Chemise' +p18113 +sg4 +S'Evelyn Bailey' +p18114 +sa(dp18115 +g12 +g27 +sg2 +S'Pantalette' +p18116 +sg4 +S'Edith Towner' +p18117 +sa(dp18118 +g12 +g27 +sg2 +S'Chemise' +p18119 +sg4 +S'Gladys C. Parker' +p18120 +sa(dp18121 +g12 +g27 +sg2 +S'Skirt from Wedding Dress' +p18122 +sg4 +S'Edith Towner' +p18123 +sa(dp18124 +g12 +g27 +sg2 +S'Pantalette' +p18125 +sg4 +S'Edith Towner' +p18126 +sa(dp18127 +g12 +g27 +sg2 +S"Baby's Nightgown" +p18128 +sg4 +S'Maud M. Holme' +p18129 +sa(dp18130 +g12 +g27 +sg2 +S'Corset' +p18131 +sg4 +S'John Thorsen' +p18132 +sa(dp18133 +g12 +g27 +sg2 +S"Girl's Wrapper" +p18134 +sg4 +S'James Vail' +p18135 +sa(dp18136 +g12 +g27 +sg2 +S'Corset' +p18137 +sg4 +S'Frank McEntee' +p18138 +sa(dp18139 +g12 +g27 +sg6 +S'bronze' +p18140 +sg8 +S'unknown date\n' +p18141 +sg2 +S'Prometheus' +p18142 +sg4 +S'Giovanni Bernardi' +p18143 +sa(dp18144 +g12 +g27 +sg2 +S"Baby's Under-waists" +p18145 +sg4 +S'Arelia Arbo' +p18146 +sa(dp18147 +g12 +g27 +sg2 +S"Baby's Petticoat: Details" +p18148 +sg4 +S'Ray Price' +p18149 +sa(dp18150 +g12 +g27 +sg2 +S'Petticoat' +p18151 +sg4 +S'Lillian Causey' +p18152 +sa(dp18153 +g12 +g27 +sg2 +S'Bustle' +p18154 +sg4 +S'Lillian Causey' +p18155 +sa(dp18156 +g12 +g27 +sg2 +S'Night Cap' +p18157 +sg4 +S'Lillian Causey' +p18158 +sa(dp18159 +g12 +g27 +sg2 +S'Quilted Petticoat' +p18160 +sg4 +S'Rex F. Bush' +p18161 +sa(dp18162 +g12 +g27 +sg2 +S'Quilted Petticoat' +p18163 +sg4 +S'Rex F. Bush' +p18164 +sa(dp18165 +g12 +g27 +sg2 +S'Chemise' +p18166 +sg4 +S'Eugene Croe' +p18167 +sa(dp18168 +g12 +g27 +sg2 +S'Petticoat and Pantalettes' +p18169 +sg4 +S'Rex F. Bush' +p18170 +sa(dp18171 +g12 +g27 +sg2 +S'Nightgown' +p18172 +sg4 +S'Rex F. Bush' +p18173 +sa(dp18174 +g12 +g27 +sg6 +S'bronze' +p18175 +sg8 +S'1505 or after' +p18176 +sg2 +S'Abundance and Satyr' +p18177 +sg4 +S'Pseudo Antonio da Brescia' +p18178 +sa(dp18179 +g12 +g27 +sg2 +S'Nightgown' +p18180 +sg4 +S'Eugene Croe' +p18181 +sa(dp18182 +g12 +g27 +sg2 +S'Chemise' +p18183 +sg4 +S'Eugene Croe' +p18184 +sa(dp18185 +g12 +S'The effect of the loosely structured neoclassical style depended upon a foundation \n garment that pushed the bosom upward. The corset pictured here is made of heavy \n cotton sateen. The use of straps indicates it was made in the early part of the \n nineteenth century, about 1815, since straps were no longer used on corsets after \n the 1840s.\n ' +p18186 +sg10 +S'http://www.nga.gov:80/thumb-l/a00003/a000032f.jpg' +p18187 +sg2 +S'Corset' +p18188 +sg4 +S'Rex F. Bush' +p18189 +sa(dp18190 +g12 +g27 +sg2 +S'Petticoat' +p18191 +sg4 +S'Francis Law Durand' +p18192 +sa(dp18193 +g12 +g27 +sg2 +S"Woman's Nightgown" +p18194 +sg4 +S'Edith Miller' +p18195 +sa(dp18196 +g12 +g27 +sg2 +S'Pantalettes' +p18197 +sg4 +S'Marie Famularo' +p18198 +sa(dp18199 +g12 +g27 +sg2 +S'Quilted petticoat' +p18200 +sg4 +S'Julie C. Brush' +p18201 +sa(dp18202 +g12 +g27 +sg2 +S'Chemise' +p18203 +sg4 +S'Edith Magnette' +p18204 +sa(dp18205 +g12 +g27 +sg2 +S'Nightgown and Cap' +p18206 +sg4 +S'Melita Hofmann' +p18207 +sa(dp18208 +g12 +g27 +sg2 +S'Corset' +p18209 +sg4 +S'Sylvia De Zon' +p18210 +sa(dp18211 +g12 +g27 +sg6 +S'bronze' +p18212 +sg8 +S'early 16th century' +p18213 +sg2 +S'Jason (or Apollo) and the Dragon' +p18214 +sg4 +S'Pseudo Antonio da Brescia' +p18215 +sa(dp18216 +g12 +g27 +sg2 +S'Corset' +p18217 +sg4 +S'Sylvia De Zon' +p18218 +sa(dp18219 +g12 +g27 +sg2 +S'Nightgown' +p18220 +sg4 +S'Jean Peszel' +p18221 +sa(dp18222 +g12 +g27 +sg2 +S"Man's Coat" +p18223 +sg4 +S'Henry De Wolfe' +p18224 +sa(dp18225 +g12 +g27 +sg2 +S"Woman's Drawers" +p18226 +sg4 +S'Jean Peszel' +p18227 +sa(dp18228 +g12 +g27 +sg2 +S"Man's Dressing Gown" +p18229 +sg4 +S'Jessie M. Benge' +p18230 +sa(dp18231 +g12 +g27 +sg2 +S'Chemise' +p18232 +sg4 +S'Jean Peszel' +p18233 +sa(dp18234 +g12 +g27 +sg2 +S'Dressing Gown' +p18235 +sg4 +S'Esther Hansen' +p18236 +sa(dp18237 +g12 +S"This is an example of a cage-hoop used underneath a skirt to provide fullness \n at the back of a woman's dress. Dated about 1865, it is made of half circles of \n reeds or whalebone riveted to bands of heavy linen tape. It is fastened at the \n waist with a steel buckle.\n An important effect of the hoop was the graceful, swinging motion it gave to a \n woman's skirt as she walked.\n " +p18238 +sg10 +S'http://www.nga.gov:80/thumb-l/a00003/a0000338.jpg' +p18239 +sg2 +S'Hoop' +p18240 +sg4 +S'Mae Szilvasy' +p18241 +sa(dp18242 +g12 +g27 +sg2 +S'Wrapper' +p18243 +sg4 +S'Mae Szilvasy' +p18244 +sa(dp18245 +g12 +g27 +sg2 +S'Hoop Skirt' +p18246 +sg4 +S'Margaret Concha' +p18247 +sa(dp18248 +g12 +g27 +sg6 +S'gilt bronze' +p18249 +sg8 +S'1505 or after' +p18250 +sg2 +S'Sleeping Bacchante and Satyrs' +p18251 +sg4 +S'Pseudo Antonio da Brescia' +p18252 +sa(dp18253 +g12 +g27 +sg2 +S"Man's Night Cap" +p18254 +sg4 +S'Doris Beer' +p18255 +sa(dp18256 +g12 +g27 +sg2 +S'Diaper Covers' +p18257 +sg4 +S'Gladys Cook' +p18258 +sa(dp18259 +g12 +g27 +sg2 +S'Shift' +p18260 +sg4 +S'Rosalia Lane' +p18261 +sa(dp18262 +g12 +g27 +sg2 +S"Man's Dressing Gown" +p18263 +sg4 +S'Henry De Wolfe' +p18264 +sa(dp18265 +g12 +g27 +sg2 +S'Wedding Corset' +p18266 +sg4 +S'Virginia Berge' +p18267 +sa(dp18268 +g12 +g27 +sg2 +S'Corset' +p18269 +sg4 +S'Marie Mitchell' +p18270 +sa(dp18271 +g12 +g27 +sg2 +S"Woman's Drawers" +p18272 +sg4 +S'Margaret Concha' +p18273 +sa(dp18274 +g12 +g27 +sg2 +S'Nightgown' +p18275 +sg4 +S'Rosalia Lane' +p18276 +sa(dp18277 +g12 +g27 +sg2 +S'Dress with Quilted Petticoat' +p18278 +sg4 +S'Jean Peszel' +p18279 +sa(dp18280 +g12 +g27 +sg2 +S'Petticoat' +p18281 +sg4 +S'Gertrude Lemberg' +p18282 +sa(dp18283 +g12 +g27 +sg6 +S'bronze' +p18284 +sg8 +S'early 16th century' +p18285 +sg2 +S'Sleeping Cupid' +p18286 +sg4 +S'Pseudo Antonio da Brescia' +p18287 +sa(dp18288 +g12 +g27 +sg2 +S'Petticoat' +p18289 +sg4 +S'Gertrude Lemberg' +p18290 +sa(dp18291 +g12 +g27 +sg2 +S'Chemise' +p18292 +sg4 +S'Rosalia Lane' +p18293 +sa(dp18294 +g12 +g27 +sg2 +S'Hoop Skirt' +p18295 +sg4 +S'Esther Hansen' +p18296 +sa(dp18297 +g12 +g27 +sg2 +S'Petticoat' +p18298 +sg4 +S'Daniel Marshack' +p18299 +sa(dp18300 +g12 +g27 +sg2 +S'Wedding Under Bodice' +p18301 +sg4 +S'Edna C. Rex' +p18302 +sa(dp18303 +g12 +g27 +sg2 +S'Wrapper' +p18304 +sg4 +S'Mary E. Humes' +p18305 +sa(dp18306 +g12 +g27 +sg2 +S"Boy's Dressing Gown" +p18307 +sg4 +S'Edna C. Rex' +p18308 +sa(dp18309 +g12 +g27 +sg2 +S'Petticoat' +p18310 +sg4 +S'Mary E. Humes' +p18311 +sa(dp18312 +g12 +g27 +sg2 +S'Bodice' +p18313 +sg4 +S'Margaret Knapp' +p18314 +sa(dp18315 +g12 +g27 +sg2 +S'Shirt-waist' +p18316 +sg4 +S'Mrs. Inez Montgomery' +p18317 +sa(dp18318 +g12 +g27 +sg6 +S'bronze' +p18319 +sg8 +S'unknown date\n' +p18320 +sg2 +S'Marine Scene' +p18321 +sg4 +S'Caradosso Foppa' +p18322 +sa(dp18323 +g12 +g27 +sg2 +S'Silk Waist' +p18324 +sg4 +S'Fred Hassebrock' +p18325 +sa(dp18326 +g12 +g27 +sg2 +S'Silk Waist' +p18327 +sg4 +S'Fred Hassebrock' +p18328 +sa(dp18329 +g12 +g27 +sg2 +S'Opera Cloak' +p18330 +sg4 +S'Al Curry' +p18331 +sa(dp18332 +g12 +g27 +sg2 +S'Cape' +p18333 +sg4 +S'Al Curry' +p18334 +sa(dp18335 +g12 +g27 +sg2 +S'Cape' +p18336 +sg4 +S'Joseph L. Boyd' +p18337 +sa(dp18338 +g12 +g27 +sg2 +S'Jacket' +p18339 +sg4 +S'Arelia Arbo' +p18340 +sa(dp18341 +g12 +g27 +sg2 +S'Taffeta Waist' +p18342 +sg4 +S'Joseph L. Boyd' +p18343 +sa(dp18344 +g12 +g27 +sg2 +S'Silk Waist' +p18345 +sg4 +S'Ray Price' +p18346 +sa(dp18347 +g12 +g27 +sg2 +S'Opera Shoulder Wrap' +p18348 +sg4 +S'Joseph L. Boyd' +p18349 +sa(dp18350 +g12 +g27 +sg2 +S'Cape' +p18351 +sg4 +S'Joseph L. Boyd' +p18352 +sa(dp18353 +g12 +g27 +sg6 +S'bronze' +p18354 +sg8 +S'unknown date\n' +p18355 +sg2 +S'Bacchante' +p18356 +sg4 +S'Donatello' +p18357 +sa(dp18358 +g12 +g27 +sg2 +S'Black Lace Jacket' +p18359 +sg4 +S'Joseph L. Boyd' +p18360 +sa(dp18361 +g12 +g27 +sg2 +S'Waist' +p18362 +sg4 +S'Joseph L. Boyd' +p18363 +sa(dp18364 +g12 +g27 +sg2 +S'Satin Bodice' +p18365 +sg4 +S'Lillian Causey' +p18366 +sa(dp18367 +g12 +g27 +sg2 +S'Basque' +p18368 +sg4 +S'Mrs. Inez Montgomery' +p18369 +sa(dp18370 +g12 +g27 +sg2 +S'Shoulder Cape' +p18371 +sg4 +S'Beverly Chichester' +p18372 +sa(dp18373 +g12 +g27 +sg2 +S"Child's Waist" +p18374 +sg4 +S'Richard Taylor' +p18375 +sa(dp18376 +g12 +g27 +sg2 +S'Cape' +p18377 +sg4 +S'American 20th Century' +p18378 +sa(dp18379 +g12 +g27 +sg2 +S'Dolman' +p18380 +sg4 +S'American 20th Century' +p18381 +sa(dp18382 +g12 +g27 +sg2 +S'Shirtwaist' +p18383 +sg4 +S'Julie C. Brush' +p18384 +sa(dp18385 +g12 +g27 +sg2 +S'Wrap' +p18386 +sg4 +S'Edith Magnette' +p18387 +sa(dp18388 +g2 +S'Christ Attended in the Tomb by Four Angels' +p18389 +sg4 +S'Veneto region 16th Century' +p18390 +sg6 +S'bronze' +p18391 +sg8 +S'c. 1500' +p18392 +sg10 +S'http://www.nga.gov:80/thumb-l/a00067/a00067e0.jpg' +p18393 +sg12 +g27 +sa(dp18394 +g12 +g27 +sg2 +S'Shawl' +p18395 +sg4 +S'Isabelle De Strange' +p18396 +sa(dp18397 +g12 +g27 +sg2 +S'Shawl' +p18398 +sg4 +S'Isabelle De Strange' +p18399 +sa(dp18400 +g12 +g27 +sg2 +S'Jacket' +p18401 +sg4 +S'Florence Earl' +p18402 +sa(dp18403 +g12 +g27 +sg2 +S'Basque' +p18404 +sg4 +S'Florence Earl' +p18405 +sa(dp18406 +g12 +g27 +sg2 +S'Evening Cloak' +p18407 +sg4 +S'Mary Fitzgerald' +p18408 +sa(dp18409 +g12 +g27 +sg2 +S'Basque' +p18410 +sg4 +S'Gladys Cook' +p18411 +sa(dp18412 +g12 +g27 +sg2 +S'Cloak' +p18413 +sg4 +S'American 20th Century' +p18414 +sa(dp18415 +g12 +g27 +sg2 +S'Dolman' +p18416 +sg4 +S'Marie Mitchell' +p18417 +sa(dp18418 +g12 +g27 +sg2 +S"Lady's Pelisse" +p18419 +sg4 +S'Jean Peszel' +p18420 +sa(dp18421 +g12 +g27 +sg2 +S'Shawl' +p18422 +sg4 +S'Jean Peszel' +p18423 +sa(dp18424 +g2 +S'Putto Poised on a Globe' +p18425 +sg4 +S'Andrea del Verrocchio' +p18426 +sg6 +S'unbaked clay' +p18427 +sg8 +S'probably 1480' +p18428 +sg10 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b08.jpg' +p18429 +sg12 +S"Poised tiptoe on a globe, this chubby cherub seems to pirouette, inviting interest from all angles. His complex movement in space is remarkable for a date so early in the Renaissance. Also remarkable is that his projecting limbs have survived for more than five hundred years. This cupid is indeed a rarity—a model in unfired clay.\n It is possible that \n Verrocchio was Florence's leading sculptor in the second half of the fifteenth century. Versatile and inventive, he was also a painter and goldsmith.\n " +p18430 +sa(dp18431 +g12 +g27 +sg6 +S'bronze' +p18432 +sg8 +S'unknown date\n' +p18433 +sg2 +S'Playing Putti' +p18434 +sg4 +S'Donatello' +p18435 +sa(dp18436 +g12 +g27 +sg2 +S'Evening Bodice' +p18437 +sg4 +S'Bessie Forman' +p18438 +sa(dp18439 +g12 +g27 +sg2 +S'Jacket' +p18440 +sg4 +S'Gertrude Lemberg' +p18441 +sa(dp18442 +g12 +g27 +sg2 +S'Cape' +p18443 +sg4 +S'Marie Mitchell' +p18444 +sa(dp18445 +g12 +g27 +sg2 +S'Cape' +p18446 +sg4 +S'Charles Criswell' +p18447 +sa(dp18448 +g12 +g27 +sg2 +S'Cape' +p18449 +sg4 +S'Melita Hofmann' +p18450 +sa(dp18451 +g12 +g27 +sg2 +S'Cape' +p18452 +sg4 +S'Melita Hofmann' +p18453 +sa(dp18454 +g12 +g27 +sg2 +S'Waist' +p18455 +sg4 +S'Sylvia De Zon' +p18456 +sa(dp18457 +g12 +g27 +sg2 +S'Basque' +p18458 +sg4 +S'Mae A. Clarke' +p18459 +sa(dp18460 +g12 +g27 +sg2 +S'Basque' +p18461 +sg4 +S'Melita Hofmann' +p18462 +sa(dp18463 +g12 +g27 +sg2 +S'Spencer' +p18464 +sg4 +S'Rosalia Lane' +p18465 +sa(dp18466 +g12 +g27 +sg6 +g27 +sg8 +S'(artist)' +p18467 +sg2 +S'Saint Jerome' +p18468 +sg4 +S'Artist Information (' +p18469 +sa(dp18470 +g12 +g27 +sg2 +S'Cape' +p18471 +sg4 +S'Catherine Fowler' +p18472 +sa(dp18473 +g12 +g27 +sg2 +S'Cape' +p18474 +sg4 +S'Rosalia Lane' +p18475 +sa(dp18476 +g12 +g27 +sg2 +S'Cape' +p18477 +sg4 +S'Melita Hofmann' +p18478 +sa(dp18479 +g12 +g27 +sg2 +S'Quaker Cape' +p18480 +sg4 +S'Melita Hofmann' +p18481 +sa(dp18482 +g12 +g27 +sg2 +S'Bodice' +p18483 +sg4 +S'Nancy Crimi' +p18484 +sa(dp18485 +g12 +g27 +sg2 +S'Cape' +p18486 +sg4 +S'Marie Mitchell' +p18487 +sa(dp18488 +g12 +S'During the 1890s, women participated in sports to a greater extent than earlier \n in the century. Bicycling had gained in popularity and helped make pants or \n "bloomers" acceptable for women\'s costumes. The word "bloomers" is taken from \n the name of Mrs. Amelia Bloomer of New York, who was an early advocate of women\'s \n rights.\n This "gymnasium suit," dated 1895, is made of black cashmere wool trimmed with \n bands of scarlet cashmere and black soutache -- a flat, narrow ornamental braid \n seen here at the borders of the scarlet trim. Plain, full bloomers, worn under \n the skirt, have elastic bands at the bottom. The costume includes a red and black \n plaid double cape.\n Sports costumes symbolized a new freedom and sense of change that was in the air \n at the end of the nineteenth century.\n ' +p18489 +sg10 +S'http://www.nga.gov:80/thumb-l/a00003/a000033c.jpg' +p18490 +sg2 +S"Woman's Gym Suit" +p18491 +sg4 +S'Daniel Marshack' +p18492 +sa(dp18493 +g12 +g27 +sg2 +S'Bodice' +p18494 +sg4 +S'Edna C. Rex' +p18495 +sa(dp18496 +g12 +g27 +sg2 +S'Blouse' +p18497 +sg4 +S'Edna C. Rex' +p18498 +sa(dp18499 +g12 +g27 +sg2 +S'Apron' +p18500 +sg4 +S'Roberta Elvis' +p18501 +sa(dp18502 +g12 +g27 +sg6 +S'bronze' +p18503 +sg8 +S'unknown date\n' +p18504 +sg2 +S'Satyr' +p18505 +sg4 +S'Donatello' +p18506 +sa(dp18507 +g12 +g27 +sg2 +S'Apron (Detail)' +p18508 +sg4 +S'Lillian Causey' +p18509 +sa(dp18510 +g12 +g27 +sg2 +S'Apron' +p18511 +sg4 +S'Lillian Causey' +p18512 +sa(dp18513 +g12 +g27 +sg2 +S'Tea Apron' +p18514 +sg4 +S'Francis Law Durand' +p18515 +sa(dp18516 +g12 +g27 +sg2 +S'Apron' +p18517 +sg4 +S'Carl Buergerniss' +p18518 +sa(dp18519 +g12 +g27 +sg2 +S'Apron' +p18520 +sg4 +S'Edith Magnette' +p18521 +sa(dp18522 +g12 +g27 +sg2 +S'Riding Habit' +p18523 +sg4 +S'Henry De Wolfe' +p18524 +sa(dp18525 +g12 +g27 +sg2 +S'Apron' +p18526 +sg4 +S'Doris Beer' +p18527 +sa(dp18528 +g12 +g27 +sg2 +S"Woman's Riding Habit" +p18529 +sg4 +S'Henry De Wolfe' +p18530 +sa(dp18531 +g12 +g27 +sg2 +S'Apron' +p18532 +sg4 +S'Gertrude Lemberg' +p18533 +sa(dp18534 +g12 +g27 +sg2 +S'Dress' +p18535 +sg4 +S'American 20th Century' +p18536 +sa(dp18537 +g12 +g27 +sg6 +S'overall (from top loop): 10 x 5.4 cm (3 15/16 x 2 1/8 in.) gross weight: 59 gr' +p18538 +sg8 +S'\nbronze' +p18539 +sg2 +S'Busts of Man and Woman' +p18540 +sg4 +S'Netherlandish 17th Century' +p18541 +sa(dp18542 +g12 +g27 +sg2 +S'Bonnet' +p18543 +sg4 +S'Dorothy M. Gerhard' +p18544 +sa(dp18545 +g12 +g27 +sg2 +S'Wedding Dress' +p18546 +sg4 +S'Gertrude Lemberg' +p18547 +sa(dp18548 +g12 +g27 +sg2 +S'Dress' +p18549 +sg4 +S'Evelyn Bailey' +p18550 +sa(dp18551 +g12 +g27 +sg2 +S'Dress' +p18552 +sg4 +S'Syrena Swanson' +p18553 +sa(dp18554 +g12 +g27 +sg2 +S'Dress' +p18555 +sg4 +S'Syrena Swanson' +p18556 +sa(dp18557 +g12 +g27 +sg2 +S'Wedding Dress' +p18558 +sg4 +S'David P Willoughby' +p18559 +sa(dp18560 +g12 +g27 +sg2 +S'Day Dress' +p18561 +sg4 +S'Irene M. Burge' +p18562 +sa(dp18563 +g12 +g27 +sg2 +S'Day Dress' +p18564 +sg4 +S'Irene M. Burge' +p18565 +sa(dp18566 +g12 +g27 +sg2 +S'Dress (detail)' +p18567 +sg4 +S'Irene M. Burge' +p18568 +sa(dp18569 +g12 +g27 +sg2 +S'Dress' +p18570 +sg4 +S'Josephine C. Romano' +p18571 +sa(dp18572 +g12 +g27 +sg6 +S'overall: 6 x 8.3 cm (2 3/8 x 3 1/4 in.) gross weight: 36 gr' +p18573 +sg8 +S'\ngilt copper' +p18574 +sg2 +S'Ecce Homo' +p18575 +sg4 +S'German 16th Century' +p18576 +sa(dp18577 +g12 +g27 +sg2 +S'Skirt' +p18578 +sg4 +S'Randolph F. Miller' +p18579 +sa(dp18580 +g12 +g27 +sg2 +S'Dress' +p18581 +sg4 +S'Syrena Swanson' +p18582 +sa(dp18583 +g12 +g27 +sg2 +S'Dress' +p18584 +sg4 +S'Syrena Swanson' +p18585 +sa(dp18586 +g12 +g27 +sg2 +S'Silk Dress' +p18587 +sg4 +S'Ella Josephine Sterling' +p18588 +sa(dp18589 +g12 +g27 +sg2 +S'Dress' +p18590 +sg4 +S'Frank M. Keane' +p18591 +sa(dp18592 +g12 +g27 +sg2 +S'Baby Dress' +p18593 +sg4 +S'Fred Hassebrock' +p18594 +sa(dp18595 +g12 +g27 +sg2 +S'Wedding Dress' +p18596 +sg4 +S'Max Unger' +p18597 +sa(dp18598 +g12 +g27 +sg2 +S'Shirtwaist' +p18599 +sg4 +S'Harry Grossen' +p18600 +sa(dp18601 +g12 +g27 +sg2 +S'Dress' +p18602 +sg4 +S'Lelah Nelson' +p18603 +sa(dp18604 +g12 +g27 +sg2 +S"Woman's Dress" +p18605 +sg4 +S'Gerald Scalise' +p18606 +sa(dp18607 +g12 +g27 +sg6 +S'bronze' +p18608 +sg8 +S'unknown date\n' +p18609 +sg2 +S'Madonna and Child between Saint Michael and Saint Lawrence' +p18610 +sg4 +S'Gianfrancesco Enzola' +p18611 +sa(dp18612 +g12 +g27 +sg2 +S'Dress' +p18613 +sg4 +S'J. Herman McCollum' +p18614 +sa(dp18615 +g12 +g27 +sg2 +S'Dress' +p18616 +sg4 +S'Edward Bashaw' +p18617 +sa(dp18618 +g12 +g27 +sg2 +S'Dress' +p18619 +sg4 +S'Margaret Golden' +p18620 +sa(dp18621 +g12 +g27 +sg2 +S'Dress' +p18622 +sg4 +S'Arelia Arbo' +p18623 +sa(dp18624 +g12 +g27 +sg2 +S'Dress' +p18625 +sg4 +S'Arelia Arbo' +p18626 +sa(dp18627 +g12 +g27 +sg2 +S'Dress' +p18628 +sg4 +S'Al Curry' +p18629 +sa(dp18630 +g12 +g27 +sg2 +S'Dress' +p18631 +sg4 +S'Ray Price' +p18632 +sa(dp18633 +g12 +g27 +sg2 +S'Riding Habit' +p18634 +sg4 +S'Arelia Arbo' +p18635 +sa(dp18636 +g12 +g27 +sg2 +S'Dress' +p18637 +sg4 +S'John Tubrant' +p18638 +sa(dp18639 +g12 +g27 +sg2 +S'Dress' +p18640 +sg4 +S'Joseph L. Boyd' +p18641 +sa(dp18642 +g12 +g27 +sg6 +S'Flemish, 1597 - 1643' +p18643 +sg8 +S'(artist after)' +p18644 +sg2 +S'Infant Bacchanalians' +p18645 +sg4 +S'Artist Information (' +p18646 +sa(dp18647 +g12 +g27 +sg2 +S'Wedding Dress' +p18648 +sg4 +S'Arelia Arbo' +p18649 +sa(dp18650 +g12 +g27 +sg2 +S'Visiting Costume' +p18651 +sg4 +S'Joseph L. Boyd' +p18652 +sa(dp18653 +g12 +g27 +sg2 +S'Dress' +p18654 +sg4 +S'Arelia Arbo' +p18655 +sa(dp18656 +g12 +g27 +sg2 +S'Dress' +p18657 +sg4 +S'Lucien Verbeke' +p18658 +sa(dp18659 +g12 +g27 +sg2 +S'Wedding Dress' +p18660 +sg4 +S'Arelia Arbo' +p18661 +sa(dp18662 +g12 +g27 +sg2 +S'Dress' +p18663 +sg4 +S'Joseph L. Boyd' +p18664 +sa(dp18665 +g12 +g27 +sg2 +S'Dress' +p18666 +sg4 +S'Arelia Arbo' +p18667 +sa(dp18668 +g12 +g27 +sg2 +S'Promenade Dress' +p18669 +sg4 +S'Lucien Verbeke' +p18670 +sa(dp18671 +g12 +g27 +sg2 +S'Dress' +p18672 +sg4 +S'Ray Price' +p18673 +sa(dp18674 +g12 +g27 +sg2 +S'Dress' +p18675 +sg4 +S'Arelia Arbo' +p18676 +sa(dp18677 +g12 +g27 +sg6 +S'bronze' +p18678 +sg8 +S'15th century' +p18679 +sg2 +S'Christ in Tomb with Virgin and Saint John' +p18680 +sg4 +S'Anonymous Netherlandish' +p18681 +sa(dp18682 +g12 +g27 +sg2 +S'Dress' +p18683 +sg4 +S'Al Curry' +p18684 +sa(dp18685 +g12 +g27 +sg2 +S'Dress' +p18686 +sg4 +S'Al Curry' +p18687 +sa(dp18688 +g12 +g27 +sg2 +S'Dress' +p18689 +sg4 +S'Joseph L. Boyd' +p18690 +sa(dp18691 +g12 +g27 +sg2 +S'Dress' +p18692 +sg4 +S'Ray Price' +p18693 +sa(dp18694 +g12 +g27 +sg2 +S'Dress' +p18695 +sg4 +S'Arelia Arbo' +p18696 +sa(dp18697 +g12 +g27 +sg2 +S'Dress' +p18698 +sg4 +S'Ray Price' +p18699 +sa(dp18700 +g12 +g27 +sg2 +S'Evening Dress' +p18701 +sg4 +S'Ray Price' +p18702 +sa(dp18703 +g12 +g27 +sg2 +S'Dress' +p18704 +sg4 +S'Lucien Verbeke' +p18705 +sa(dp18706 +g12 +g27 +sg2 +S'Tea Gown' +p18707 +sg4 +S'Joseph L. Boyd' +p18708 +sa(dp18709 +g12 +g27 +sg2 +S'Dress' +p18710 +sg4 +S'Arelia Arbo' +p18711 +sa(dp18712 +g12 +g27 +sg6 +S'overall (diameter): 5.3 cm (2 1/16 in.) gross weight: 35 gr' +p18713 +sg8 +S'\nbronze' +p18714 +sg2 +S'Judgment of Paris' +p18715 +sg4 +S'Franco-Flemish 16th Century' +p18716 +sa(dp18717 +g12 +g27 +sg2 +S'Tea Gown' +p18718 +sg4 +S'Joseph L. Boyd' +p18719 +sa(dp18720 +g12 +g27 +sg2 +S'Street Dress' +p18721 +sg4 +S'Lucien Verbeke' +p18722 +sa(dp18723 +g12 +g27 +sg2 +S'Dress' +p18724 +sg4 +S'Arelia Arbo' +p18725 +sa(dp18726 +g12 +g27 +sg2 +S'Blue Silk Dress' +p18727 +sg4 +S'Joseph L. Boyd' +p18728 +sa(dp18729 +g12 +g27 +sg2 +S'Cream Taffeta Dress' +p18730 +sg4 +S'Arelia Arbo' +p18731 +sa(dp18732 +g12 +g27 +sg2 +S'Blue & Grey Striped Dress' +p18733 +sg4 +S'Joseph L. Boyd' +p18734 +sa(dp18735 +g12 +g27 +sg2 +S'Dress' +p18736 +sg4 +S'Ray Price' +p18737 +sa(dp18738 +g12 +g27 +sg2 +S'Plaid Morning Dress' +p18739 +sg4 +S'Arelia Arbo' +p18740 +sa(dp18741 +g12 +g27 +sg2 +S'Shoulder Cape' +p18742 +sg4 +S'Joseph L. Boyd' +p18743 +sa(dp18744 +g12 +g27 +sg2 +S'Blue Velvet Dolman' +p18745 +sg4 +S'Arelia Arbo' +p18746 +sa(dp18747 +g12 +g27 +sg6 +g27 +sg8 +S'(sculptor)' +p18748 +sg2 +S'The Triumph of Poverty' +p18749 +sg4 +S'Artist Information (' +p18750 +sa(dp18751 +g12 +g27 +sg2 +S'Dress' +p18752 +sg4 +S'Joseph L. Boyd' +p18753 +sa(dp18754 +g12 +g27 +sg2 +S'Evening Dress' +p18755 +sg4 +S'Joseph L. Boyd' +p18756 +sa(dp18757 +g12 +g27 +sg2 +S'Afternoon Dress' +p18758 +sg4 +S'Ray Price' +p18759 +sa(dp18760 +g12 +g27 +sg2 +S'Dress' +p18761 +sg4 +S'Arelia Arbo' +p18762 +sa(dp18763 +g12 +g27 +sg2 +S'Afternoon Dress' +p18764 +sg4 +S'Ray Price' +p18765 +sa(dp18766 +g12 +g27 +sg2 +S'Dress' +p18767 +sg4 +S'Hans Mangelsdorf' +p18768 +sa(dp18769 +g12 +g27 +sg2 +S'Wedding Dress' +p18770 +sg4 +S'Hans Mangelsdorf' +p18771 +sa(dp18772 +g12 +g27 +sg2 +S'Visiting Gown' +p18773 +sg4 +S'Hans Mangelsdorf' +p18774 +sa(dp18775 +g12 +g27 +sg2 +S'Dolman' +p18776 +sg4 +S'Joseph L. Boyd' +p18777 +sa(dp18778 +S'artist' +p18779 +S'Joseph L. Boyd' +p18780 +sS'name' +p18781 +S'Brown Silk Afternoon Dress' +p18782 +sS'desc' +p18783 +g27 +sa(dp18784 +g18781 +S'Portrait of a Lady, "Giovanna Albizzi"' +p18785 +sg18779 +S'Giovanni Bastianini' +p18786 +sS'material' +p18787 +S'gesso and polychrome over wood and mixed media' +p18788 +sS'year' +p18789 +S'c. 1860' +p18790 +sS'thumbnail' +p18791 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d6c.jpg' +p18792 +sg18783 +g27 +sa(dp18793 +g18779 +S'Artist Information (' +p18794 +sg18787 +g27 +sg18789 +S'(sculptor)' +p18795 +sg18781 +S'The Triumph of Religion' +p18796 +sg18783 +g27 +sa(dp18797 +g18779 +S'Joseph L. Boyd' +p18798 +sg18781 +S'Afternoon Coat' +p18799 +sg18783 +g27 +sa(dp18800 +g18779 +S'Lucien Verbeke' +p18801 +sg18781 +S'Wedding Gown' +p18802 +sg18783 +g27 +sa(dp18803 +g18779 +S'Joseph L. Boyd' +p18804 +sg18781 +S'Evening Dress' +p18805 +sg18783 +g27 +sa(dp18806 +g18779 +S'Ray Price' +p18807 +sg18781 +S'Dress' +p18808 +sg18783 +g27 +sa(dp18809 +g18779 +S'Lillian Causey' +p18810 +sg18781 +S'Dress' +p18811 +sg18783 +g27 +sa(dp18812 +g18779 +S'Lillian Causey' +p18813 +sg18781 +S'Dress' +p18814 +sg18783 +g27 +sa(dp18815 +g18779 +S'Lillian Causey' +p18816 +sg18781 +S"Lady's Costume" +p18817 +sg18783 +g27 +sa(dp18818 +g18779 +S'Lillian Causey' +p18819 +sg18781 +S'Dress' +p18820 +sg18783 +g27 +sa(dp18821 +g18779 +S'Lillian Causey' +p18822 +sg18781 +S'Dress' +p18823 +sg18783 +g27 +sa(dp18824 +g18779 +S'Lillian Causey' +p18825 +sg18781 +S'Dress' +p18826 +sg18783 +g27 +sa(dp18827 +g18781 +S'Apollo, Marsyas, and Olympus' +p18828 +sg18779 +S'Florentine 15th Century' +p18829 +sg18787 +S'bronze' +p18830 +sg18789 +S'15th century' +p18831 +sg18791 +S'http://www.nga.gov:80/thumb-l/a000df/a000dfb3.jpg' +p18832 +sg18783 +g27 +sa(dp18833 +g18779 +S'Lillian Causey' +p18834 +sg18781 +S'Dress' +p18835 +sg18783 +g27 +sa(dp18836 +g18779 +S'Lillian Causey' +p18837 +sg18781 +S'Wedding Dress' +p18838 +sg18783 +g27 +sa(dp18839 +g18779 +S'Lillian Causey' +p18840 +sg18781 +S'Dress' +p18841 +sg18783 +g27 +sa(dp18842 +g18779 +S'Lillian Causey' +p18843 +sg18781 +S'Quaker Dress' +p18844 +sg18783 +g27 +sa(dp18845 +g18779 +S'Lillian Causey' +p18846 +sg18781 +S'Quaker Dress' +p18847 +sg18783 +g27 +sa(dp18848 +g18779 +S'Lillian Causey' +p18849 +sg18781 +S'Skirt' +p18850 +sg18783 +g27 +sa(dp18851 +g18779 +S'Lillian Causey' +p18852 +sg18781 +S"Woman's Dress" +p18853 +sg18783 +g27 +sa(dp18854 +g18779 +S'Julie C. Brush' +p18855 +sg18781 +S'Dress' +p18856 +sg18783 +g27 +sa(dp18857 +g18779 +S'Marie Famularo' +p18858 +sg18781 +S'Dress' +p18859 +sg18783 +g27 +sa(dp18860 +g18779 +S'Julie C. Brush' +p18861 +sg18781 +S'Dress' +p18862 +sg18783 +g27 +sa(dp18863 +g18779 +S'Florentine 15th Century' +p18864 +sg18787 +S'bronze' +p18865 +sg18789 +S'c. 1500' +p18866 +sg18781 +S'Bust of Alexander' +p18867 +sg18783 +g27 +sa(dp18868 +g18779 +S'Julie C. Brush' +p18869 +sg18781 +S'House Dress' +p18870 +sg18783 +g27 +sa(dp18871 +g18779 +S'Julie C. Brush' +p18872 +sg18781 +S'Dress' +p18873 +sg18783 +g27 +sa(dp18874 +g18779 +S'Francis Law Durand' +p18875 +sg18781 +S'Dress' +p18876 +sg18783 +g27 +sa(dp18877 +g18779 +S'Julie C. Brush' +p18878 +sg18781 +S'Dress' +p18879 +sg18783 +g27 +sa(dp18880 +g18779 +S'Julie C. Brush' +p18881 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a000033b.jpg' +p18882 +sg18781 +S'Dress' +p18883 +sg18783 +S'While the bustle continued to be fashionable into the 1890s, a new style, called \n the "hourglass look," began to emerge. In this dress, dated about 1893, the \n hourglass effect of a narrow waist was achieved by padding the hips and widening \n the shoulders. The balloon sleeves and ruffles seen here are silk. The decorative \n band at the bottom of the skirt is embroidered black velvet.\n The designs of Charles Frederick Worth in Paris were enormously influential at \n this time, owing to fashion magazines such as \n ' +p18884 +sa(dp18885 +g18779 +S'Julie C. Brush' +p18886 +sg18781 +S'Dress' +p18887 +sg18783 +g27 +sa(dp18888 +g18779 +S'Frederick Jackson' +p18889 +sg18781 +S'Dress' +p18890 +sg18783 +g27 +sa(dp18891 +g18779 +S'Edith Magnette' +p18892 +sg18781 +S'Ball Dress' +p18893 +sg18783 +g27 +sa(dp18894 +g18779 +S'Edith Magnette' +p18895 +sg18781 +S'Ball Dress' +p18896 +sg18783 +g27 +sa(dp18897 +g18779 +S'Edith Magnette' +p18898 +sg18781 +S'Dress' +p18899 +sg18783 +g27 +sa(dp18900 +g18779 +S'Artist Information (' +p18901 +sg18787 +S'(artist after)' +p18902 +sg18789 +S'\n' +p18903 +sg18781 +S'Centaur' +p18904 +sg18783 +g27 +sa(dp18905 +g18779 +S'Francis Law Durand' +p18906 +sg18781 +S'Dress' +p18907 +sg18783 +g27 +sa(dp18908 +g18779 +S'Marie Famularo' +p18909 +sg18781 +S'Dress' +p18910 +sg18783 +g27 +sa(dp18911 +g18779 +S'Marie Famularo' +p18912 +sg18781 +S'Dress' +p18913 +sg18783 +g27 +sa(dp18914 +g18779 +S'Edith Miller' +p18915 +sg18781 +S'Dress' +p18916 +sg18783 +g27 +sa(dp18917 +g18779 +S'Edith Miller' +p18918 +sg18781 +S'Dress' +p18919 +sg18783 +g27 +sa(dp18920 +g18779 +S'Erwin Schwabe' +p18921 +sg18781 +S'Dress' +p18922 +sg18783 +g27 +sa(dp18923 +g18779 +S'Julie C. Brush' +p18924 +sg18781 +S'Dress' +p18925 +sg18783 +g27 +sa(dp18926 +g18779 +S'Herbert Marsh' +p18927 +sg18781 +S'Dress' +p18928 +sg18783 +g27 +sa(dp18929 +g18779 +S'Frederick Jackson' +p18930 +sg18781 +S'Dress' +p18931 +sg18783 +g27 +sa(dp18932 +g18779 +S'Julie C. Brush' +p18933 +sg18781 +S'Dress' +p18934 +sg18783 +g27 +sa(dp18935 +g18779 +S'Artist Information (' +p18936 +sg18787 +S'Italian, 1538 - 1591' +p18937 +sg18789 +S'(related artist)' +p18938 +sg18781 +S'Christ on Tomb with Two Angels' +p18939 +sg18783 +g27 +sa(dp18940 +g18779 +S'Julie C. Brush' +p18941 +sg18781 +S"Woman's Dress" +p18942 +sg18783 +g27 +sa(dp18943 +g18779 +S'Mary Fitzgerald' +p18944 +sg18781 +S'Wedding Dress' +p18945 +sg18783 +g27 +sa(dp18946 +g18779 +S'Eleanor Gausser' +p18947 +sg18781 +S"Girl's Pinafore" +p18948 +sg18783 +g27 +sa(dp18949 +g18779 +S'Isabelle De Strange' +p18950 +sg18781 +S'Brocade Costume' +p18951 +sg18783 +g27 +sa(dp18952 +g18779 +S'Mary Fitzgerald' +p18953 +sg18781 +S'Wedding Dress' +p18954 +sg18783 +g27 +sa(dp18955 +g18779 +S'Julie C. Brush' +p18956 +sg18781 +S'Dress' +p18957 +sg18783 +g27 +sa(dp18958 +g18779 +S'Florence Earl' +p18959 +sg18781 +S'Dress' +p18960 +sg18783 +g27 +sa(dp18961 +g18779 +S'Lester Kausch' +p18962 +sg18781 +S'Dress' +p18963 +sg18783 +g27 +sa(dp18964 +g18779 +S'Lester Kausch' +p18965 +sg18781 +S'Dress' +p18966 +sg18783 +g27 +sa(dp18967 +g18779 +S'Margaret Concha' +p18968 +sg18781 +S'Wedding Dress' +p18969 +sg18783 +g27 +sa(dp18970 +g18779 +S'German 17th Century' +p18971 +sg18787 +S'overall: 7.2 x 8.5 cm (2 13/16 x 3 3/8 in.) gross weight: 36 gr' +p18972 +sg18789 +S'\nbronze' +p18973 +sg18781 +S'Burial of a Saint' +p18974 +sg18783 +g27 +sa(dp18975 +g18779 +S'Nancy Crimi' +p18976 +sg18781 +S'Dress' +p18977 +sg18783 +g27 +sa(dp18978 +g18779 +S'Nancy Crimi' +p18979 +sg18781 +S'Dress' +p18980 +sg18783 +g27 +sa(dp18981 +g18779 +S'Esther Hansen' +p18982 +sg18781 +S'Dress' +p18983 +sg18783 +g27 +sa(dp18984 +g18779 +S'William Hoffman' +p18985 +sg18781 +S'Dress' +p18986 +sg18783 +g27 +sa(dp18987 +g18779 +S'Melita Hofmann' +p18988 +sg18781 +S'Dress' +p18989 +sg18783 +g27 +sa(dp18990 +g18779 +S'Charles Criswell' +p18991 +sg18781 +S'Dress' +p18992 +sg18783 +g27 +sa(dp18993 +g18779 +S'Mae Szilvasy' +p18994 +sg18781 +S'Dress' +p18995 +sg18783 +g27 +sa(dp18996 +g18779 +S'Dorothy Gernon' +p18997 +sg18781 +S'Bonnet' +p18998 +sg18783 +g27 +sa(dp18999 +g18779 +S'Nancy Crimi' +p19000 +sg18781 +S'Dress' +p19001 +sg18783 +g27 +sa(dp19002 +g18779 +S'Melita Hofmann' +p19003 +sg18781 +S'Dress' +p19004 +sg18783 +g27 +sa(dp19005 +g18779 +S'Master I.F.P.' +p19006 +sg18787 +S'bronze' +p19007 +sg18789 +S'c. 1500' +p19008 +sg18781 +S'The Resurrection' +p19009 +sg18783 +g27 +sa(dp19010 +g18779 +S'Marie Mitchell' +p19011 +sg18781 +S'Wedding Dress' +p19012 +sg18783 +g27 +sa(dp19013 +g18779 +S'Melita Hofmann' +p19014 +sg18781 +S'Dress' +p19015 +sg18783 +g27 +sa(dp19016 +g18779 +S'Mae A. Clarke' +p19017 +sg18781 +S'Dress' +p19018 +sg18783 +g27 +sa(dp19019 +g18779 +S'Bessie Forman' +p19020 +sg18781 +S'Dress' +p19021 +sg18783 +g27 +sa(dp19022 +g18779 +S'Catherine Fowler' +p19023 +sg18781 +S'Wedding Dress' +p19024 +sg18783 +g27 +sa(dp19025 +g18779 +S'Irene Lawson' +p19026 +sg18781 +S'Dress Pattern' +p19027 +sg18783 +g27 +sa(dp19028 +g18779 +S'Bessie Forman' +p19029 +sg18781 +S'Dress Pattern' +p19030 +sg18783 +g27 +sa(dp19031 +g18779 +S'Bessie Forman' +p19032 +sg18781 +S'Dress Pattern' +p19033 +sg18783 +g27 +sa(dp19034 +g18779 +S'Roberta Spicer' +p19035 +sg18781 +S'Dress' +p19036 +sg18783 +g27 +sa(dp19037 +g18779 +S'Nancy Crimi' +p19038 +sg18781 +S'Wedding Dress' +p19039 +sg18783 +g27 +sa(dp19040 +g18779 +S'Master IO.F.F.' +p19041 +sg18787 +S'bronze' +p19042 +sg18789 +S'second half 15th century' +p19043 +sg18781 +S'Judgment of Paris, Sword-Hilt' +p19044 +sg18783 +g27 +sa(dp19045 +g18779 +S'Jean Peszel' +p19046 +sg18781 +S'Dress' +p19047 +sg18783 +g27 +sa(dp19048 +g18779 +S'Jean Peszel' +p19049 +sg18781 +S'Pattern for Dress' +p19050 +sg18783 +g27 +sa(dp19051 +g18779 +S'Jean Peszel' +p19052 +sg18781 +S'Dress (Pattern)' +p19053 +sg18783 +g27 +sa(dp19054 +g18779 +S'Nancy Crimi' +p19055 +sg18781 +S'Dress' +p19056 +sg18783 +g27 +sa(dp19057 +g18779 +S'Jessie M. Benge' +p19058 +sg18781 +S'Dress' +p19059 +sg18783 +g27 +sa(dp19060 +g18779 +S'Margaret Concha' +p19061 +sg18781 +S"Child's Coat" +p19062 +sg18783 +g27 +sa(dp19063 +g18779 +S'Nancy Crimi' +p19064 +sg18781 +S'Dress' +p19065 +sg18783 +g27 +sa(dp19066 +g18779 +S'Mina Lowry' +p19067 +sg18781 +S'Dress' +p19068 +sg18783 +g27 +sa(dp19069 +g18779 +S'Virginia Berge' +p19070 +sg18781 +S'Dress' +p19071 +sg18783 +g27 +sa(dp19072 +g18779 +S'Gertrude Lemberg' +p19073 +sg18781 +S'Dress' +p19074 +sg18783 +g27 +sa(dp19075 +g18779 +S'Master IO.F.F.' +p19076 +sg18787 +S'bronze' +p19077 +sg18789 +S'second half 15th century' +p19078 +sg18781 +S'Ariadne, Sword-Hilt' +p19079 +sg18783 +g27 +sa(dp19080 +g18779 +S'Jessie M. Benge' +p19081 +sg18781 +S'Dress' +p19082 +sg18783 +g27 +sa(dp19083 +g18779 +S'Melita Hofmann' +p19084 +sg18781 +S'Dress' +p19085 +sg18783 +g27 +sa(dp19086 +g18779 +S'Margaret Concha' +p19087 +sg18781 +S'Wedding Dress' +p19088 +sg18783 +g27 +sa(dp19089 +g18779 +S'Mae Szilvasy' +p19090 +sg18781 +S'Dress' +p19091 +sg18783 +g27 +sa(dp19092 +g18779 +S'Virginia Berge' +p19093 +sg18781 +S'Dress' +p19094 +sg18783 +g27 +sa(dp19095 +g18779 +S'Melita Hofmann' +p19096 +sg18781 +S'Dress' +p19097 +sg18783 +g27 +sa(dp19098 +g18779 +S'Jean Peszel' +p19099 +sg18781 +S'Dress' +p19100 +sg18783 +g27 +sa(dp19101 +g18779 +S'Emery Herrett' +p19102 +sg18781 +S'Dress Pattern' +p19103 +sg18783 +g27 +sa(dp19104 +g18779 +S'Emery Herrett' +p19105 +sg18781 +S'Dress Pattern' +p19106 +sg18783 +g27 +sa(dp19107 +g18779 +S'Jean Peszel' +p19108 +sg18781 +S'Pattern for Dress' +p19109 +sg18783 +g27 +sa(dp19110 +g18779 +S'Master IO.F.F.' +p19111 +sg18787 +S'gilt bronze' +p19112 +sg18789 +S'second half 15th century' +p19113 +sg18781 +S'Ariadne on Naxos' +p19114 +sg18783 +g27 +sa(dp19115 +g18779 +S'Dorothy Gernon' +p19116 +sg18781 +S'Dress' +p19117 +sg18783 +g27 +sa(dp19118 +g18779 +S'Dorothy Gernon' +p19119 +sg18781 +S'Dress (Pattern)' +p19120 +sg18783 +g27 +sa(dp19121 +g18779 +S'Dorothy Gernon' +p19122 +sg18781 +S'Dress (Pattern)' +p19123 +sg18783 +g27 +sa(dp19124 +g18779 +S'Nancy Crimi' +p19125 +sg18781 +S'Dress Cape' +p19126 +sg18783 +g27 +sa(dp19127 +g18779 +S'Nancy Crimi' +p19128 +sg18781 +S'Dress' +p19129 +sg18783 +g27 +sa(dp19130 +g18779 +S'Bessie Forman' +p19131 +sg18781 +S'Wedding Dress' +p19132 +sg18783 +g27 +sa(dp19133 +g18779 +S'Dorothea Mierisch' +p19134 +sg18781 +S"Woman's Coat" +p19135 +sg18783 +g27 +sa(dp19136 +g18779 +S'Bessie Forman' +p19137 +sg18781 +S'Dress' +p19138 +sg18783 +g27 +sa(dp19139 +g18779 +S'Virginia Berge' +p19140 +sg18781 +S'Dress' +p19141 +sg18783 +g27 +sa(dp19142 +g18779 +S'Margaret Concha' +p19143 +sg18781 +S'Dress' +p19144 +sg18783 +g27 +sa(dp19145 +g18781 +S'Saint John the Baptist' +p19146 +sg18779 +S'Artist Information (' +p19147 +sg18787 +S'(artist after)' +p19148 +sg18789 +S'\n' +p19149 +sg18791 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d6d.jpg' +p19150 +sg18783 +S'The popular Florentine subject of the young John the Baptist is here presented in a different\r\nconception from that of \n ' +p19151 +sa(dp19152 +g18779 +S'Master IO.F.F.' +p19153 +sg18787 +S', second half 15th century' +p19154 +sg18789 +S'\n' +p19155 +sg18781 +S'Assembly of Gods' +p19156 +sg18783 +g27 +sa(dp19157 +g18779 +S'Melita Hofmann' +p19158 +sg18781 +S'Dress' +p19159 +sg18783 +g27 +sa(dp19160 +g18779 +S'Marie Mitchell' +p19161 +sg18781 +S'Dress' +p19162 +sg18783 +g27 +sa(dp19163 +g18779 +S'Marie Mitchell' +p19164 +sg18781 +S'Dress' +p19165 +sg18783 +g27 +sa(dp19166 +g18779 +S'Catherine Fowler' +p19167 +sg18781 +S'Dress' +p19168 +sg18783 +g27 +sa(dp19169 +g18779 +S'Margaret Concha' +p19170 +sg18781 +S'Dress' +p19171 +sg18783 +g27 +sa(dp19172 +g18779 +S'Rosalia Lane' +p19173 +sg18781 +S'Dress' +p19174 +sg18783 +g27 +sa(dp19175 +g18779 +S'Jean Peszel' +p19176 +sg18781 +S'Dress' +p19177 +sg18783 +g27 +sa(dp19178 +g18779 +S'Jessie M. Benge' +p19179 +sg18781 +S'Dress' +p19180 +sg18783 +g27 +sa(dp19181 +g18779 +S'Nancy Crimi' +p19182 +sg18781 +S'Dress' +p19183 +sg18783 +g27 +sa(dp19184 +g18779 +S'Nancy Crimi' +p19185 +sg18781 +S'Wedding Dress' +p19186 +sg18783 +g27 +sa(dp19187 +g18779 +S'Master IO.F.F.' +p19188 +sg18787 +S'gilt bronze' +p19189 +sg18789 +S'second half 15th century' +p19190 +sg18781 +S'Horatius' +p19191 +sg18783 +g27 +sa(dp19192 +g18779 +S'Nancy Crimi' +p19193 +sg18781 +S'Dress with Cape Collar' +p19194 +sg18783 +g27 +sa(dp19195 +g18779 +S'Jessie M. Benge' +p19196 +sg18781 +S'Dress' +p19197 +sg18783 +g27 +sa(dp19198 +g18779 +S'Bessie Forman' +p19199 +sg18781 +S'Dress' +p19200 +sg18783 +g27 +sa(dp19201 +g18779 +S'Catherine Fowler' +p19202 +sg18781 +S'Dress' +p19203 +sg18783 +g27 +sa(dp19204 +g18779 +S'Rosalia Lane' +p19205 +sg18781 +S'Shift' +p19206 +sg18783 +g27 +sa(dp19207 +g18779 +S'Rosalia Lane' +p19208 +sg18781 +S'Dress' +p19209 +sg18783 +g27 +sa(dp19210 +g18779 +S'Jessie M. Benge' +p19211 +sg18781 +S'Dress' +p19212 +sg18783 +g27 +sa(dp19213 +g18779 +S'Melita Hofmann' +p19214 +sg18781 +S'Dress' +p19215 +sg18783 +g27 +sa(dp19216 +g18779 +S'Melita Hofmann' +p19217 +sg18781 +S'Dress' +p19218 +sg18783 +g27 +sa(dp19219 +g18779 +S'Virginia Berge' +p19220 +sg18781 +S"Girl's Dress" +p19221 +sg18783 +g27 +sa(dp19222 +g18779 +S'Master IO.F.F.' +p19223 +sg18787 +S'gilt bronze' +p19224 +sg18789 +S'unknown date\n' +p19225 +sg18781 +S'Judgment of Paris' +p19226 +sg18783 +g27 +sa(dp19227 +g18779 +S'Melita Hofmann' +p19228 +sg18781 +S'Wedding Dress' +p19229 +sg18783 +g27 +sa(dp19230 +g18779 +S'Nancy Crimi' +p19231 +sg18781 +S'Wedding Dress' +p19232 +sg18783 +g27 +sa(dp19233 +g18779 +S'Bessie Forman' +p19234 +sg18781 +S'Dress' +p19235 +sg18783 +g27 +sa(dp19236 +g18779 +S'Julia Boyd' +p19237 +sg18781 +S'Dress' +p19238 +sg18783 +g27 +sa(dp19239 +g18779 +S'Melita Hofmann' +p19240 +sg18781 +S'Dress' +p19241 +sg18783 +g27 +sa(dp19242 +g18779 +S'Jean Peszel' +p19243 +sg18781 +S'Dressing Gown' +p19244 +sg18783 +g27 +sa(dp19245 +g18779 +S'Roberta Spicer' +p19246 +sg18781 +S'Dress' +p19247 +sg18783 +g27 +sa(dp19248 +g18779 +S'Nancy Crimi' +p19249 +sg18781 +S'Dress' +p19250 +sg18783 +g27 +sa(dp19251 +g18779 +S'Nancy Crimi' +p19252 +sg18781 +S'Dress' +p19253 +sg18783 +g27 +sa(dp19254 +g18779 +S'Nancy Crimi' +p19255 +sg18781 +S'Dress' +p19256 +sg18783 +g27 +sa(dp19257 +g18779 +S'Master IO.F.F.' +p19258 +sg18787 +S'gilt bronze' +p19259 +sg18789 +S'second half 15th century' +p19260 +sg18781 +S'Judgment of Paris' +p19261 +sg18783 +g27 +sa(dp19262 +g18779 +S'Mae Szilvasy' +p19263 +sg18781 +S'Dress' +p19264 +sg18783 +g27 +sa(dp19265 +g18779 +S'Eleanor Ruelos' +p19266 +sg18781 +S'Carriage Dress' +p19267 +sg18783 +g27 +sa(dp19268 +g18779 +S'Mina Greene' +p19269 +sg18781 +S"Woman's Coat" +p19270 +sg18783 +g27 +sa(dp19271 +g18779 +S'Jean Peszel' +p19272 +sg18781 +S'Dress' +p19273 +sg18783 +g27 +sa(dp19274 +g18779 +S'Gertrude Lemberg' +p19275 +sg18781 +S'Petticoat Dress' +p19276 +sg18783 +g27 +sa(dp19277 +g18779 +S'Melita Hofmann' +p19278 +sg18781 +S'Dress' +p19279 +sg18783 +g27 +sa(dp19280 +g18779 +S'Nancy Crimi' +p19281 +sg18781 +S'Dress' +p19282 +sg18783 +g27 +sa(dp19283 +g18779 +S'Nancy Crimi' +p19284 +sg18781 +S'Dress (Pattern)' +p19285 +sg18783 +g27 +sa(dp19286 +g18779 +S'Nancy Crimi' +p19287 +sg18781 +S'Dress (Pattern)' +p19288 +sg18783 +g27 +sa(dp19289 +g18779 +S'Mina Greene' +p19290 +sg18781 +S"Woman's Coat (Pattern)" +p19291 +sg18783 +g27 +sa(dp19292 +g18779 +S'Master IO.F.F.' +p19293 +sg18787 +S'gilt bronze' +p19294 +sg18789 +S'second half 15th century' +p19295 +sg18781 +S'Mucius Scaevola' +p19296 +sg18783 +g27 +sa(dp19297 +g18779 +S'Melita Hofmann' +p19298 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a0000351.jpg' +p19299 +sg18781 +S'Dress' +p19300 +sg18783 +S'Most formal eighteenth-century dresses were open in front, showing a petticoat \n worn beneath. The petticoat was constructed separately from the dress but was \n not considered an undergarment. A quilted satin petticoat is shown in this 1740 \n costume.\n Oval-shaped hoops, called \n ' +p19301 +sa(dp19302 +g18779 +S'Sara Garfinkel' +p19303 +sg18781 +S"Girl's Dress" +p19304 +sg18783 +g27 +sa(dp19305 +g18779 +S'Mina Greene' +p19306 +sg18781 +S'Coat' +p19307 +sg18783 +g27 +sa(dp19308 +g18779 +S'Nancy Crimi' +p19309 +sg18781 +S'Ball Dress' +p19310 +sg18783 +g27 +sa(dp19311 +g18779 +S'Melita Hofmann' +p19312 +sg18781 +S'Court Dress' +p19313 +sg18783 +g27 +sa(dp19314 +g18779 +S'Margaret Concha' +p19315 +sg18781 +S'Wedding Dress' +p19316 +sg18783 +g27 +sa(dp19317 +g18779 +S'Margaret Concha' +p19318 +sg18781 +S'Description of a Wedding Dress' +p19319 +sg18783 +g27 +sa(dp19320 +g18779 +S'Mina Greene' +p19321 +sg18781 +S'Bustle Dress' +p19322 +sg18783 +g27 +sa(dp19323 +g18779 +S'Mae Szilvasy' +p19324 +sg18781 +S'Dress' +p19325 +sg18783 +g27 +sa(dp19326 +g18779 +S'Nancy Crimi' +p19327 +sg18781 +S'Spencer' +p19328 +sg18783 +g27 +sa(dp19329 +g18779 +S'Master IO.F.F.' +p19330 +sg18787 +S'gilt bronze' +p19331 +sg18789 +S'second half 15th century' +p19332 +sg18781 +S'Sacrifice of Iphigenia' +p19333 +sg18783 +g27 +sa(dp19334 +g18779 +S'Bessie Forman' +p19335 +sg18781 +S'Dress' +p19336 +sg18783 +g27 +sa(dp19337 +g18779 +S'Nancy Crimi' +p19338 +sg18781 +S'Ball Dress' +p19339 +sg18783 +g27 +sa(dp19340 +g18779 +S'Melita Hofmann' +p19341 +sg18781 +S'Dress' +p19342 +sg18783 +g27 +sa(dp19343 +g18779 +S'Jessie M. Benge' +p19344 +sg18781 +S'Dress' +p19345 +sg18783 +g27 +sa(dp19346 +g18779 +S'Gladys Cook' +p19347 +sg18781 +S'Dress' +p19348 +sg18783 +g27 +sa(dp19349 +g18779 +S'Marie Mitchell' +p19350 +sg18781 +S'Riding Habit' +p19351 +sg18783 +g27 +sa(dp19352 +g18779 +S'Jean Peszel' +p19353 +sg18781 +S'Dress' +p19354 +sg18783 +g27 +sa(dp19355 +g18779 +S'Jean Peszel' +p19356 +sg18781 +S'Dress' +p19357 +sg18783 +g27 +sa(dp19358 +g18779 +S'Roberta Spicer' +p19359 +sg18781 +S'Dress' +p19360 +sg18783 +g27 +sa(dp19361 +g18779 +S'Jean Peszel' +p19362 +sg18781 +S'Dress' +p19363 +sg18783 +g27 +sa(dp19364 +g18779 +S'Master IO.F.F.' +p19365 +sg18787 +S'bronze' +p19366 +sg18789 +S'second half 15th century' +p19367 +sg18781 +S'Sacrifice of Iphigenia' +p19368 +sg18783 +g27 +sa(dp19369 +g18779 +S'Nancy Crimi' +p19370 +sg18781 +S'Traveling Coat' +p19371 +sg18783 +g27 +sa(dp19372 +g18779 +S'Jean Peszel' +p19373 +sg18781 +S'Dress' +p19374 +sg18783 +g27 +sa(dp19375 +g18779 +S'Gertrude Lemberg' +p19376 +sg18781 +S'Brocaded Silk Dress' +p19377 +sg18783 +g27 +sa(dp19378 +g18779 +S'Jessie M. Benge' +p19379 +sg18781 +S'Dress' +p19380 +sg18783 +g27 +sa(dp19381 +g18779 +S'Mae Szilvasy' +p19382 +sg18781 +S'Dress' +p19383 +sg18783 +g27 +sa(dp19384 +g18779 +S'Melita Hofmann' +p19385 +sg18781 +S'Dress' +p19386 +sg18783 +g27 +sa(dp19387 +g18779 +S'Melita Hofmann' +p19388 +sg18781 +S'Dress' +p19389 +sg18783 +g27 +sa(dp19390 +g18779 +S'Melita Hofmann' +p19391 +sg18781 +S'Dress' +p19392 +sg18783 +g27 +sa(dp19393 +g18779 +S'Nancy Crimi' +p19394 +sg18781 +S'Dress' +p19395 +sg18783 +g27 +sa(dp19396 +g18779 +S'Jessie M. Benge' +p19397 +sg18781 +S'Dress' +p19398 +sg18783 +g27 +sa(dp19399 +g18779 +S'Italian 16th Century' +p19400 +sg18787 +S'overall (silhouetted contour): 11.9 x 3.5 cm (4 11/16 x 1 3/8 in.) gross weight: 175 gr' +p19401 +sg18789 +S'\nbronze' +p19402 +sg18781 +S'Madonna and Child' +p19403 +sg18783 +g27 +sa(dp19404 +g18779 +S'Roberta Spicer' +p19405 +sg18781 +S'Dress' +p19406 +sg18783 +g27 +sa(dp19407 +g18779 +S'Melita Hofmann' +p19408 +sg18781 +S'Dress' +p19409 +sg18783 +g27 +sa(dp19410 +g18779 +S'Virginia Berge' +p19411 +sg18781 +S'Pelerine' +p19412 +sg18783 +g27 +sa(dp19413 +g18779 +S'Melita Hofmann' +p19414 +sg18781 +S'Dress' +p19415 +sg18783 +g27 +sa(dp19416 +g18779 +S'Mary E. Humes' +p19417 +sg18781 +S'Dress' +p19418 +sg18783 +g27 +sa(dp19419 +g18779 +S'Mary E. Humes' +p19420 +sg18781 +S'Dress' +p19421 +sg18783 +g27 +sa(dp19422 +g18779 +S'Mary E. Humes' +p19423 +sg18781 +S'Dress' +p19424 +sg18783 +g27 +sa(dp19425 +g18779 +S'Mary E. Humes' +p19426 +sg18781 +S'Dress' +p19427 +sg18783 +g27 +sa(dp19428 +g18779 +S'Mary E. Humes' +p19429 +sg18781 +S'Wedding Dress' +p19430 +sg18783 +g27 +sa(dp19431 +g18779 +S'Mary E. Humes' +p19432 +sg18781 +S'Dress' +p19433 +sg18783 +g27 +sa(dp19434 +g18779 +S'Italian 15th Century' +p19435 +sg18787 +S'overall (silhouetted contour): 17.6 x 5.4 cm (6 15/16 x 2 1/8 in.) gross weight: 266 gr' +p19436 +sg18789 +S'\nbronze' +p19437 +sg18781 +S'A Bishop (Saint Gebhard)' +p19438 +sg18783 +g27 +sa(dp19439 +g18779 +S'Mary E. Humes' +p19440 +sg18781 +S'Suit (Costume)' +p19441 +sg18783 +g27 +sa(dp19442 +g18779 +S'Mary E. Humes' +p19443 +sg18781 +S'Opera Cloak' +p19444 +sg18783 +g27 +sa(dp19445 +g18779 +S'Virginia Berge' +p19446 +sg18781 +S"Child's Dress" +p19447 +sg18783 +g27 +sa(dp19448 +g18779 +S'Virginia Berge' +p19449 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a0000357.jpg' +p19450 +sg18781 +S'Dress' +p19451 +sg18783 +S'The development of industrialization during the nineteenth century led to an \n abundance of manufactured goods, including textiles, and contributed to reducing \n the overall cost of clothing. As a result, great variety in fashions was feasible. \n A well-to-do woman could have a selection of dresses for different social occasions.\n This is an example of a "visiting dress," dated about 1823. The bodice is neoclassical \n in style. The sleeves, known as the "leg o\' mutton" type, gained popularity, \n reaching a balloon-like fullness in the 1830s.\n ' +p19452 +sa(dp19453 +g18779 +S'Linnet Alward' +p19454 +sg18781 +S'Wedding Dress' +p19455 +sg18783 +g27 +sa(dp19456 +g18779 +S'Mary E. Humes' +p19457 +sg18781 +S'Dress' +p19458 +sg18783 +g27 +sa(dp19459 +g18779 +S'Mary E. Humes' +p19460 +sg18781 +S'Dress with Hoop Skirt' +p19461 +sg18783 +g27 +sa(dp19462 +g18779 +S'Henry De Wolfe' +p19463 +sg18781 +S'Dress' +p19464 +sg18783 +g27 +sa(dp19465 +g18779 +S'Irene Lawson' +p19466 +sg18781 +S'Wedding Dress' +p19467 +sg18783 +g27 +sa(dp19468 +g18779 +S'Verna Tallman' +p19469 +sg18781 +S"Man's Work Shirt" +p19470 +sg18783 +g27 +sa(dp19471 +g18779 +S'Italian 16th Century' +p19472 +sg18787 +S'overall (diameter): 5.5 cm (2 3/16 in.) gross weight: 22 gr' +p19473 +sg18789 +S'\ngilt bronze' +p19474 +sg18781 +S'Allegorical Representation of Victory' +p19475 +sg18783 +g27 +sa(dp19476 +g18779 +S'Rose Campbell-Gerke' +p19477 +sg18781 +S'Money Vest' +p19478 +sg18783 +g27 +sa(dp19479 +g18779 +S'Syrena Swanson' +p19480 +sg18781 +S"T. Jefferson's Vest" +p19481 +sg18783 +g27 +sa(dp19482 +g18779 +S'Syrena Swanson' +p19483 +sg18781 +S"Boy's Waistcoat" +p19484 +sg18783 +g27 +sa(dp19485 +g18779 +S'Irene M. Burge' +p19486 +sg18781 +S"Child's Jacket" +p19487 +sg18783 +g27 +sa(dp19488 +g18779 +S'Syrena Swanson' +p19489 +sg18781 +S'Waistcoat' +p19490 +sg18783 +g27 +sa(dp19491 +g18779 +S'Ann Gene Buckley' +p19492 +sg18781 +S'Waistcoat' +p19493 +sg18783 +g27 +sa(dp19494 +g18779 +S'Syrena Swanson' +p19495 +sg18781 +S'Bolero Jacket' +p19496 +sg18783 +g27 +sa(dp19497 +g18779 +S'Carmel Wilson' +p19498 +sg18781 +S'Vest' +p19499 +sg18783 +g27 +sa(dp19500 +g18779 +S'Clarence W. Dawson' +p19501 +sg18781 +S'Waistcoat' +p19502 +sg18783 +g27 +sa(dp19503 +g18779 +S'Edward Bashaw' +p19504 +sg18781 +S'Cape' +p19505 +sg18783 +g27 +sa(dp19506 +g18781 +S'Mercury' +p19507 +sg18779 +S'Artist Information (' +p19508 +sg18787 +S'Flemish, 1529 - 1608' +p19509 +sg18789 +S'(artist after)' +p19510 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00017/a000178f.jpg' +p19511 +sg18783 +g27 +sa(dp19512 +g18779 +S'Emilian 16th Century' +p19513 +sg18787 +S'overall: 19.5 x 14.5 cm (7 11/16 x 5 11/16 in.) gross weight: 771 gr' +p19514 +sg18789 +S'\nbronze' +p19515 +sg18781 +S'The Adoration of the Shepherds' +p19516 +sg18783 +g27 +sa(dp19517 +g18779 +S'Arelia Arbo' +p19518 +sg18781 +S"Child's Jacket" +p19519 +sg18783 +g27 +sa(dp19520 +g18779 +S'Cecil Smith' +p19521 +sg18781 +S'Baby Dress' +p19522 +sg18783 +g27 +sa(dp19523 +g18779 +S'Mary E. Humes' +p19524 +sg18781 +S'Dress' +p19525 +sg18783 +g27 +sa(dp19526 +g18779 +S'Lillian Causey' +p19527 +sg18781 +S"Man's Vest" +p19528 +sg18783 +g27 +sa(dp19529 +g18779 +S'Lillian Causey' +p19530 +sg18781 +S'Waistcoat' +p19531 +sg18783 +g27 +sa(dp19532 +g18779 +S'Lillian Causey' +p19533 +sg18781 +S'Vest' +p19534 +sg18783 +g27 +sa(dp19535 +g18779 +S'Lillian Causey' +p19536 +sg18781 +S'Vest' +p19537 +sg18783 +g27 +sa(dp19538 +g18779 +S'Lillian Causey' +p19539 +sg18781 +S'Jacket' +p19540 +sg18783 +g27 +sa(dp19541 +g18779 +S'Julie C. Brush' +p19542 +sg18781 +S'Waistcoat' +p19543 +sg18783 +g27 +sa(dp19544 +g18779 +S'Grace Halpin' +p19545 +sg18781 +S'Waistcoat' +p19546 +sg18783 +g27 +sa(dp19547 +g18779 +S'Emilian 16th Century' +p19548 +sg18787 +S'overall: 19.8 x 15 cm (7 13/16 x 5 7/8 in.) gross weight: 808 gr' +p19549 +sg18789 +S'\nbronze' +p19550 +sg18781 +S'The Lamentation' +p19551 +sg18783 +g27 +sa(dp19552 +g18779 +S'Francis Law Durand' +p19553 +sg18781 +S"Boy's Eton Jacket" +p19554 +sg18783 +g27 +sa(dp19555 +g18779 +S'Isabelle De Strange' +p19556 +sg18781 +S'Embroidered Jacket' +p19557 +sg18783 +g27 +sa(dp19558 +g18779 +S'Florence Earl' +p19559 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a0000355.jpg' +p19560 +sg18781 +S'Silk Vest' +p19561 +sg18783 +S'By the middle of the eighteenth century, men\'s waistcoats were becoming shorter \n and more open at the center front. This one, dated from about 1775 to 1780, is \n an example of the shorter-style garment. By 1790, waistcoats would be shortened \n to waist length, and the skirt or "peplum," seen here, would disappear. The scale \n and type of decoration also changed, becoming smaller and more delicate. Floral \n patterns and narrow stripes were also common in the fabrics for women\'s clothing \n during the 1770s.\n ' +p19562 +sa(dp19563 +g18779 +S'Isabelle De Strange' +p19564 +sg18781 +S'Waistcoats' +p19565 +sg18783 +g27 +sa(dp19566 +g18779 +S'Isabelle De Strange' +p19567 +sg18781 +S'Vest' +p19568 +sg18783 +g27 +sa(dp19569 +g18779 +S'Louis Maldarelli' +p19570 +sg18781 +S'Waistcoat' +p19571 +sg18783 +g27 +sa(dp19572 +g18779 +S'American 20th Century' +p19573 +sg18781 +S'Waistcoat' +p19574 +sg18783 +g27 +sa(dp19575 +g18779 +S'Dorothea Mierisch' +p19576 +sg18781 +S"Boy's Cutaway Jacket" +p19577 +sg18783 +g27 +sa(dp19578 +g18779 +S'Dorothea Mierisch' +p19579 +sg18781 +S"Boy's Cutaway Jacket" +p19580 +sg18783 +g27 +sa(dp19581 +g18779 +S'Roberta Spicer' +p19582 +sg18781 +S"Girl's Jacket" +p19583 +sg18783 +g27 +sa(dp19584 +g18779 +S'Italian 16th Century' +p19585 +sg18787 +S'overall: 4.7 x 3.7 cm (1 7/8 x 1 7/16 in.) gross weight: 24 gr' +p19586 +sg18789 +S'\ngilt bronze' +p19587 +sg18781 +S'Hercules and Antaeus' +p19588 +sg18783 +g27 +sa(dp19589 +g18779 +S'Virginia Berge' +p19590 +sg18781 +S'Shirt' +p19591 +sg18783 +g27 +sa(dp19592 +g18779 +S'Margaret Concha' +p19593 +sg18781 +S'Waistcoat' +p19594 +sg18783 +g27 +sa(dp19595 +g18779 +S'Melita Hofmann' +p19596 +sg18781 +S'Waistcoat' +p19597 +sg18783 +g27 +sa(dp19598 +g18779 +S'Dorothy Gernon' +p19599 +sg18781 +S'Waistcoat' +p19600 +sg18783 +g27 +sa(dp19601 +g18779 +S'Marie Mitchell' +p19602 +sg18781 +S'Waistcoat' +p19603 +sg18783 +g27 +sa(dp19604 +g18779 +S'Rosalia Lane' +p19605 +sg18781 +S"Man's Shirt" +p19606 +sg18783 +g27 +sa(dp19607 +g18779 +S'Rosalia Lane' +p19608 +sg18781 +S"Pattern for Man's Shirt" +p19609 +sg18783 +g27 +sa(dp19610 +g18779 +S'Bessie Forman' +p19611 +sg18781 +S'Waistcoat' +p19612 +sg18783 +g27 +sa(dp19613 +g18779 +S'Bessie Forman' +p19614 +sg18781 +S'Waistcoat' +p19615 +sg18783 +g27 +sa(dp19616 +g18779 +S'Bessie Forman' +p19617 +sg18781 +S'Waistcoat' +p19618 +sg18783 +g27 +sa(dp19619 +g18779 +S'Italian 16th Century' +p19620 +sg18787 +S'overall: 5.7 x 7 cm (2 1/4 x 2 3/4 in.) gross weight: 36 gr' +p19621 +sg18789 +S'\nbronze' +p19622 +sg18781 +S'The Holy Family' +p19623 +sg18783 +g27 +sa(dp19624 +g18779 +S'Bessie Forman' +p19625 +sg18781 +S'Waistcoat' +p19626 +sg18783 +g27 +sa(dp19627 +g18779 +S'Rosalia Lane' +p19628 +sg18781 +S'Waistcoat' +p19629 +sg18783 +g27 +sa(dp19630 +g18779 +S'Fanchon Larzelere' +p19631 +sg18781 +S'Waistcoat' +p19632 +sg18783 +g27 +sa(dp19633 +g18779 +S'Sylvia De Zon' +p19634 +sg18781 +S"Man's Miniature Shirt" +p19635 +sg18783 +g27 +sa(dp19636 +g18779 +S'Sylvia De Zon' +p19637 +sg18781 +S"Baby's Shirt" +p19638 +sg18783 +g27 +sa(dp19639 +g18779 +S'Nancy Crimi' +p19640 +sg18781 +S'Waistcoat' +p19641 +sg18783 +g27 +sa(dp19642 +g18779 +S'Catherine Fowler' +p19643 +sg18781 +S"Man's Shirt" +p19644 +sg18783 +g27 +sa(dp19645 +g18779 +S'Margaret Knapp' +p19646 +sg18781 +S"Man's Shirt" +p19647 +sg18783 +g27 +sa(dp19648 +g18779 +S'Melita Hofmann' +p19649 +sg18781 +S'Waistcoat' +p19650 +sg18783 +g27 +sa(dp19651 +g18779 +S'Melita Hofmann' +p19652 +sg18781 +S'Shirt' +p19653 +sg18783 +g27 +sa(dp19654 +g18779 +S'Venetian 16th Century' +p19655 +sg18787 +S'overall: 17.1 x 12.1 cm (6 3/4 x 4 3/4 in.) gross weight: 585 gr' +p19656 +sg18789 +S'\nbronze' +p19657 +sg18781 +S'Madonna and Child with Saint John' +p19658 +sg18783 +g27 +sa(dp19659 +g18779 +S'Jean Peszel' +p19660 +sg18781 +S'Waistcoat' +p19661 +sg18783 +g27 +sa(dp19662 +g18779 +S'Nancy Crimi' +p19663 +sg18781 +S'Waistcoat' +p19664 +sg18783 +g27 +sa(dp19665 +g18779 +S'Mae Szilvasy' +p19666 +sg18781 +S'Shirt Front' +p19667 +sg18783 +g27 +sa(dp19668 +g18779 +S'Virginia Berge' +p19669 +sg18781 +S'Shirt' +p19670 +sg18783 +g27 +sa(dp19671 +g18779 +S'Henry De Wolfe' +p19672 +sg18781 +S"Man's Shirt" +p19673 +sg18783 +g27 +sa(dp19674 +g18779 +S'Virginia Berge' +p19675 +sg18781 +S'Shirt' +p19676 +sg18783 +g27 +sa(dp19677 +g18779 +S'Irene M. Burge' +p19678 +sg18781 +S'Shirt' +p19679 +sg18783 +g27 +sa(dp19680 +g18779 +S'Dorothy Gernon' +p19681 +sg18781 +S'Waistcoat' +p19682 +sg18783 +g27 +sa(dp19683 +g18779 +S'Marie Mitchell' +p19684 +sg18781 +S'Waistcoat' +p19685 +sg18783 +g27 +sa(dp19686 +g18779 +S'Margaret Concha' +p19687 +sg18781 +S'Waistcoat' +p19688 +sg18783 +g27 +sa(dp19689 +g18779 +S'Italian 16th Century' +p19690 +sg18787 +S'overall: 7.5 x 15.4 cm (2 15/16 x 6 1/16 in.) gross weight: 244 gr' +p19691 +sg18789 +S'\nbronze' +p19692 +sg18781 +S'The Last Supper' +p19693 +sg18783 +g27 +sa(dp19694 +g18779 +S'Agnes Sims' +p19695 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a00003d1.jpg' +p19696 +sg18781 +S'Bulto of Santiago' +p19697 +sg18783 +S'Perhaps the best example of a small group, this "bulto" represents Saint James Santiago, the warrior saint of Spain and the patron saint of horses and horsemen. Saint James is a national hero in Spain, having supposedly caused the Spanish victory against the Moors in the Battle of Clavijo in 834. According to legend, he is buried at Compostela in northwestern Spain, perhaps the most famous shrine in Europe during the Middle Ages. In many cases, Saint James is therefore shown as a pilgrim; but in the New World, his venerators more closely identified with his image as a horseman — the killer of the Moors — and that is how he is shown here. The horse is traditionally white; but unlike similar European versions, it is quite small in proportion to its rider, indicating that the main concern of the craftsman was the saint himself.\n ' +p19698 +sa(dp19699 +g18779 +S'Sara Garfinkel' +p19700 +sg18781 +S'Waistcoat' +p19701 +sg18783 +g27 +sa(dp19702 +g18779 +S'Louis Maldarelli' +p19703 +sg18781 +S'Vest' +p19704 +sg18783 +g27 +sa(dp19705 +g18779 +S'Artist Information (' +p19706 +sg18781 +S'Vest' +p19707 +sg18783 +g27 +sa(dp19708 +g18779 +S'Nancy Crimi' +p19709 +sg18781 +S"Man's Waistcoat" +p19710 +sg18783 +g27 +sa(dp19711 +g18779 +S'Ruggiero Pierotti' +p19712 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a0000354.jpg' +p19713 +sg18781 +S"Man's Waistcoat" +p19714 +sg18783 +S'A man\'s suit in the eighteenth century consisted of a coat, waistcoat, and \n breeches. The coat and breeches were often made of matching material. The waistcoat \n was frequently the most decorative part of the costume.\n This gentlemen\'s waistcoat from the early part of the eighteenth century is made \n of white linen with intricate embroidery called "whitework." This highly specialized \n form of embroidery, which incorporated a great variety of stitches, was widely \n used at the time. The eyelets on the left side of the opening in front were most \n likely for removable buttons or studs.\n ' +p19715 +sa(dp19716 +g18779 +S'Frank J. Mace' +p19717 +sg18781 +S'Vest' +p19718 +sg18783 +g27 +sa(dp19719 +g18779 +S'Edna C. Rex' +p19720 +sg18781 +S'Wedding Vest' +p19721 +sg18783 +g27 +sa(dp19722 +g18779 +S'Mary E. Humes' +p19723 +sg18781 +S"Infant's Shirt" +p19724 +sg18783 +g27 +sa(dp19725 +g18779 +S'Edna C. Rex' +p19726 +sg18781 +S'Wedding Vest' +p19727 +sg18783 +g27 +sa(dp19728 +g18779 +S'Italian 16th Century' +p19729 +sg18787 +S'overall (oval): 5.7 x 6.6 cm (2 1/4 x 2 5/8 in.) gross weight: 43 gr' +p19730 +sg18789 +S'\nbronze' +p19731 +sg18781 +S'Leda and the Swan' +p19732 +sg18783 +g27 +sa(dp19733 +g18779 +S'Clarence Secor' +p19734 +sg18781 +S'Quilted Silk Vest' +p19735 +sg18783 +g27 +sa(dp19736 +g18779 +S'Florence Huston' +p19737 +sg18781 +S"Boy's Pants" +p19738 +sg18783 +g27 +sa(dp19739 +g18779 +S'Syrena Swanson' +p19740 +sg18781 +S'Trousers' +p19741 +sg18783 +g27 +sa(dp19742 +g18779 +S'Georgine E. Mason' +p19743 +sg18781 +S'Homespun Breeches' +p19744 +sg18783 +g27 +sa(dp19745 +g18779 +S'Frederick Jackson' +p19746 +sg18781 +S'Knee Pants' +p19747 +sg18783 +g27 +sa(dp19748 +g18779 +S'Henry De Wolfe' +p19749 +sg18781 +S"Pattern for Man's Suit" +p19750 +sg18783 +g27 +sa(dp19751 +g18779 +S'Henry De Wolfe' +p19752 +sg18781 +S'Written Instructions for Making a Suit' +p19753 +sg18783 +g27 +sa(dp19754 +g18779 +S'Henry De Wolfe' +p19755 +sg18781 +S'Trousers' +p19756 +sg18783 +g27 +sa(dp19757 +g18779 +S'Daniel Marshack' +p19758 +sg18781 +S'Trousers' +p19759 +sg18783 +g27 +sa(dp19760 +g18779 +S'Mary E. Humes' +p19761 +sg18781 +S'Hunting Trousers' +p19762 +sg18783 +g27 +sa(dp19763 +g18779 +S'Artist Information (' +p19764 +sg18787 +S'Italian, 1486 - 1570' +p19765 +sg18789 +S'(related artist)' +p19766 +sg18781 +S'The Madonna of the Rosary' +p19767 +sg18783 +g27 +sa(dp19768 +g18779 +S'William O. Fletcher' +p19769 +sg18781 +S'Trousers' +p19770 +sg18783 +g27 +sa(dp19771 +g18779 +S'Nancy Crimi' +p19772 +sg18781 +S"Man's Coat" +p19773 +sg18783 +g27 +sa(dp19774 +g18779 +S'Tabea Hosier' +p19775 +sg18781 +S"Boy's Dress" +p19776 +sg18783 +g27 +sa(dp19777 +g18779 +S'Syrena Swanson' +p19778 +sg18781 +S"Overcoat, T. Jefferson's" +p19779 +sg18783 +g27 +sa(dp19780 +g18779 +S'Edith Towner' +p19781 +sg18781 +S"Boy's Dress" +p19782 +sg18783 +g27 +sa(dp19783 +g18779 +S'Artist Information (' +p19784 +sg18781 +S'Dress Coat' +p19785 +sg18783 +g27 +sa(dp19786 +g18779 +S'B. Berndt' +p19787 +sg18781 +S"Men's Coat" +p19788 +sg18783 +g27 +sa(dp19789 +g18779 +S'Lelah Nelson' +p19790 +sg18781 +S'Prince Albert coat' +p19791 +sg18783 +g27 +sa(dp19792 +g18779 +S'Sarah F. Williams' +p19793 +sg18781 +S"Lady's Night Cap" +p19794 +sg18783 +g27 +sa(dp19795 +g18779 +S'Adele Brooks' +p19796 +sg18781 +S'Deer Skin Coat' +p19797 +sg18783 +g27 +sa(dp19798 +g18779 +S'Artist Information (' +p19799 +sg18787 +S'Italian, 1486 - 1570' +p19800 +sg18789 +S'(related artist)' +p19801 +sg18781 +S'The Madonna of the Rosary' +p19802 +sg18783 +g27 +sa(dp19803 +g18779 +S'Frederick Jackson' +p19804 +sg18781 +S"Man's Great Coat" +p19805 +sg18783 +g27 +sa(dp19806 +g18779 +S'Julie C. Brush' +p19807 +sg18781 +S"Boy's Suit" +p19808 +sg18783 +g27 +sa(dp19809 +g18779 +S'Marjorie McIntyre' +p19810 +sg18781 +S"Boy's Suit" +p19811 +sg18783 +g27 +sa(dp19812 +g18779 +S'Edith Miller' +p19813 +sg18781 +S"Man's Sack Coat" +p19814 +sg18783 +g27 +sa(dp19815 +g18779 +S'Joseph Sudek' +p19816 +sg18781 +S"Boy's Suit" +p19817 +sg18783 +g27 +sa(dp19818 +g18779 +S'Nancy Crimi' +p19819 +sg18781 +S"Man's Suit" +p19820 +sg18783 +g27 +sa(dp19821 +g18779 +S'Henry De Wolfe' +p19822 +sg18781 +S"Boy's Suit" +p19823 +sg18783 +g27 +sa(dp19824 +g18779 +S'Dorothy Gernon' +p19825 +sg18781 +S"Boy's Coat" +p19826 +sg18783 +g27 +sa(dp19827 +g18779 +S'Dorothea Mierisch' +p19828 +sg18781 +S"Boy's Suit" +p19829 +sg18783 +g27 +sa(dp19830 +g18779 +S'Henry De Wolfe' +p19831 +sg18781 +S"Man's Suit" +p19832 +sg18783 +g27 +sa(dp19833 +g18779 +S'Italian 16th Century' +p19834 +sg18787 +S'overall (diameter): 4.3 cm (1 11/16 in.) gross weight: 31 gr' +p19835 +sg18789 +S'\nbronze' +p19836 +sg18781 +S'Marcus Curtius' +p19837 +sg18783 +g27 +sa(dp19838 +g18779 +S'Virginia Berge' +p19839 +sg18781 +S'Tail Coat' +p19840 +sg18783 +g27 +sa(dp19841 +g18779 +S'Jean Peszel' +p19842 +sg18781 +S"Boy's Suit" +p19843 +sg18783 +g27 +sa(dp19844 +g18779 +S'Esther Hansen' +p19845 +sg18781 +S"Boy's Dress" +p19846 +sg18783 +g27 +sa(dp19847 +g18779 +S'Nancy Crimi' +p19848 +sg18781 +S"Boy's Suit" +p19849 +sg18783 +g27 +sa(dp19850 +g18779 +S'Henry De Wolfe' +p19851 +sg18781 +S"Man's Topcoat" +p19852 +sg18783 +g27 +sa(dp19853 +g18779 +S'Doris Beer' +p19854 +sg18781 +S"Boy's Dress" +p19855 +sg18783 +g27 +sa(dp19856 +g18779 +S'Jessie M. Benge' +p19857 +sg18781 +S"Boy's Suit" +p19858 +sg18783 +g27 +sa(dp19859 +g18779 +S'Nancy Crimi' +p19860 +sg18781 +S"Man's Suit" +p19861 +sg18783 +g27 +sa(dp19862 +g18779 +S'Melita Hofmann' +p19863 +sg18781 +S"Man's Coat and Waistcoat" +p19864 +sg18783 +g27 +sa(dp19865 +g18779 +S'Nancy Crimi' +p19866 +sg18781 +S"Man's Suit" +p19867 +sg18783 +g27 +sa(dp19868 +g18781 +S'Venus' +p19869 +sg18779 +S'Artist Information (' +p19870 +sg18787 +S'(sculptor)' +p19871 +sg18789 +S'\n' +p19872 +sg18791 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c3c.jpg' +p19873 +sg18783 +S'This \n The \n ' +p19874 +sa(dp19875 +g18779 +S'Italian 16th Century' +p19876 +sg18787 +S'overall: 9.2 x 7.2 cm (3 5/8 x 2 13/16 in.)' +p19877 +sg18789 +S'\nbronze' +p19878 +sg18781 +S'Piet\xc3\xa0' +p19879 +sg18783 +g27 +sa(dp19880 +g18779 +S'Henry De Wolfe' +p19881 +sg18781 +S"Man's Suit" +p19882 +sg18783 +g27 +sa(dp19883 +g18779 +S'Henry De Wolfe' +p19884 +sg18781 +S'Written Instructions for Making Suit' +p19885 +sg18783 +g27 +sa(dp19886 +g18779 +S'Henry De Wolfe' +p19887 +sg18781 +S'Suit Pattern' +p19888 +sg18783 +g27 +sa(dp19889 +g18779 +S'Henry De Wolfe' +p19890 +sg18781 +S'Suit Pattern' +p19891 +sg18783 +g27 +sa(dp19892 +g18779 +S'Alvin Shiren' +p19893 +sg18781 +S"Man's Topcoat" +p19894 +sg18783 +g27 +sa(dp19895 +g18779 +S'Creighton Kay-Scott' +p19896 +sg18781 +S'Tail Coat' +p19897 +sg18783 +g27 +sa(dp19898 +g18779 +S'Creighton Kay-Scott' +p19899 +sg18781 +S'Coat' +p19900 +sg18783 +g27 +sa(dp19901 +g18779 +S'Henry De Wolfe' +p19902 +sg18781 +S"Man's Coat" +p19903 +sg18783 +g27 +sa(dp19904 +g18779 +S'Henry De Wolfe' +p19905 +sg18781 +S'Tail Coat' +p19906 +sg18783 +g27 +sa(dp19907 +g18779 +S'Henry De Wolfe' +p19908 +sg18781 +S"Boy's Coat and Trousers" +p19909 +sg18783 +g27 +sa(dp19910 +g18779 +S'Italian 16th Century' +p19911 +sg18787 +S'overall: 12.9 x 8.9 cm (5 1/16 x 3 1/2 in.) gross weight: 300 gr' +p19912 +sg18789 +S'\nbronze' +p19913 +sg18781 +S'Piet\xc3\xa0' +p19914 +sg18783 +g27 +sa(dp19915 +g18779 +S'Mae A. Clarke' +p19916 +sg18781 +S"Boy's Coat and Trousers" +p19917 +sg18783 +g27 +sa(dp19918 +g18779 +S'Henry De Wolfe' +p19919 +sg18781 +S"Man's Top Coat" +p19920 +sg18783 +g27 +sa(dp19921 +g18779 +S'Henry De Wolfe' +p19922 +sg18781 +S"Sugar Merchant's Suit" +p19923 +sg18783 +g27 +sa(dp19924 +g18779 +S'Henry De Wolfe' +p19925 +sg18781 +S"Man's Suit" +p19926 +sg18783 +g27 +sa(dp19927 +g18779 +S'Sara Garfinkel' +p19928 +sg18781 +S"Boy's Suit" +p19929 +sg18783 +g27 +sa(dp19930 +g18779 +S'Henry De Wolfe' +p19931 +sg18781 +S"Boy's Suit" +p19932 +sg18783 +g27 +sa(dp19933 +g18779 +S'Creighton Kay-Scott' +p19934 +sg18781 +S'Coat and Trousers' +p19935 +sg18783 +g27 +sa(dp19936 +g18779 +S'Creighton Kay-Scott' +p19937 +sg18781 +S'Top Coat' +p19938 +sg18783 +g27 +sa(dp19939 +g18779 +S'Creighton Kay-Scott' +p19940 +sg18781 +S'Tail Coat' +p19941 +sg18783 +g27 +sa(dp19942 +g18779 +S'Henry De Wolfe' +p19943 +sg18781 +S"Man's Suit" +p19944 +sg18783 +g27 +sa(dp19945 +g18779 +S'Artist Information (' +p19946 +sg18787 +g27 +sg18789 +S'(artist)' +p19947 +sg18781 +S'The Triumph of Cupid' +p19948 +sg18783 +g27 +sa(dp19949 +g18779 +S'Creighton Kay-Scott' +p19950 +sg18781 +S"Man's Suit" +p19951 +sg18783 +g27 +sa(dp19952 +g18779 +S'Creighton Kay-Scott' +p19953 +sg18781 +S'Tail Coat' +p19954 +sg18783 +g27 +sa(dp19955 +g18779 +S'Creighton Kay-Scott' +p19956 +sg18781 +S'Coat and Trousers' +p19957 +sg18783 +g27 +sa(dp19958 +g18779 +S'Louis Maldarelli' +p19959 +sg18781 +S"Man's Coat" +p19960 +sg18783 +g27 +sa(dp19961 +g18779 +S'Nancy Crimi' +p19962 +sg18781 +S"Boy's Dress" +p19963 +sg18783 +g27 +sa(dp19964 +g18779 +S'Mae A. Clarke' +p19965 +sg18781 +S"Boy's Dress" +p19966 +sg18783 +g27 +sa(dp19967 +g18779 +S'Nancy Crimi' +p19968 +sg18781 +S"Boy's Dress and Jacket" +p19969 +sg18783 +g27 +sa(dp19970 +g18779 +S'Daniel Marshack' +p19971 +sg18781 +S"Boy's Poplin Suit" +p19972 +sg18783 +g27 +sa(dp19973 +g18779 +S'Nancy Crimi' +p19974 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a0000336.jpg' +p19975 +sg18781 +S"Boy's Suit" +p19976 +sg18783 +S'This boy\'s two-piece suit, dated 1850-1860, reflects a taste for elegance probably \n inspired by admiration of British and European portraits of young aristocrats.\n Designed for little boys under the age of ten, this type of suit came to be known \n later as "Little Lord Fauntleroy." The name was taken from a popular story published \n in 1866 by Frances Hodgson Burnett and illustrated by Reginald Birch.\n To complete the outfit, a child would wear white silk stockings and buckled shoes.\n ' +p19977 +sa(dp19978 +g18779 +S'Ruggiero Pierotti' +p19979 +sg18781 +S"Boy's Suit" +p19980 +sg18783 +g27 +sa(dp19981 +g18779 +S'Italian 16th Century' +p19982 +sg18787 +S'overall (oval): 2.6 x 7.6 cm (1 x 3 in.) gross weight: 34 gr' +p19983 +sg18789 +S'\ngilt bronze' +p19984 +sg18781 +S'The Triumph of Flora' +p19985 +sg18783 +g27 +sa(dp19986 +g18779 +S'Artist Information (' +p19987 +sg18781 +S"Boy's Suit" +p19988 +sg18783 +g27 +sa(dp19989 +g18779 +S'Gwyneth King' +p19990 +sg18781 +S"Boy's Suit" +p19991 +sg18783 +g27 +sa(dp19992 +g18779 +S'Mary E. Humes' +p19993 +sg18781 +S"Man's Coat & Waistcoat" +p19994 +sg18783 +g27 +sa(dp19995 +g18779 +S'Mary E. Humes' +p19996 +sg18781 +S"Man's Suit" +p19997 +sg18783 +g27 +sa(dp19998 +g18779 +S'Gladys C. Parker' +p19999 +sg18781 +S'Civil War Sash' +p20000 +sg18783 +g27 +sa(dp20001 +g18779 +S'Artist Information (' +p20002 +sg18781 +S'Coat of Naval Lieutenant' +p20003 +sg18783 +g27 +sa(dp20004 +g18779 +S'Annie B. Johnston' +p20005 +sg18791 +S'http://www.nga.gov:80/thumb-l/a000f9/a000f900.jpg' +p20006 +sg18781 +S'Confederate Uniform' +p20007 +sg18783 +g27 +sa(dp20008 +g18779 +S'James Vail' +p20009 +sg18781 +S'Military Chapeau' +p20010 +sg18783 +g27 +sa(dp20011 +g18779 +S'Gerald Scalise' +p20012 +sg18781 +S"Fireman's Belt" +p20013 +sg18783 +g27 +sa(dp20014 +g18779 +S'Robert Gilson' +p20015 +sg18781 +S"Fireman's Shirt" +p20016 +sg18783 +g27 +sa(dp20017 +g18779 +S'Italian 16th Century' +p20018 +sg18787 +S'overall: 2.5 x 7.3 cm (1 x 2 7/8 in.) gross weight: 40 gr' +p20019 +sg18789 +S'\nbronze' +p20020 +sg18781 +S'The Triumph of Flora' +p20021 +sg18783 +g27 +sa(dp20022 +g18779 +S'Lillian Causey' +p20023 +sg18781 +S"Man's Uniforms" +p20024 +sg18783 +g27 +sa(dp20025 +g18779 +S'Lillian Causey' +p20026 +sg18781 +S'Uniform' +p20027 +sg18783 +g27 +sa(dp20028 +g18779 +S'David Ramage' +p20029 +sg18781 +S"Fireman's Helmet" +p20030 +sg18783 +g27 +sa(dp20031 +g18779 +S'David Ramage' +p20032 +sg18781 +S"Fireman's Helmet" +p20033 +sg18783 +g27 +sa(dp20034 +g18779 +S'Adele Brooks' +p20035 +sg18781 +S"Child's Soldier Suit" +p20036 +sg18783 +g27 +sa(dp20037 +g18779 +S'Mary Fitzgerald' +p20038 +sg18781 +S'Quilted Chest Protection' +p20039 +sg18783 +g27 +sa(dp20040 +g18779 +S'Aaron Fastovsky' +p20041 +sg18781 +S"Field Officer's Hat" +p20042 +sg18783 +g27 +sa(dp20043 +g18779 +S'Aaron Fastovsky' +p20044 +sg18781 +S'Full Dress Helmet' +p20045 +sg18783 +g27 +sa(dp20046 +g18779 +S'Helen Bronson' +p20047 +sg18781 +S"Fireman's Hat" +p20048 +sg18783 +g27 +sa(dp20049 +g18779 +S'Harry Jennings' +p20050 +sg18781 +S"Fireman's Hat" +p20051 +sg18783 +g27 +sa(dp20052 +g18779 +S'Italian 17th Century' +p20053 +sg18787 +S'overall: 19.2 x 12.1 cm (7 9/16 x 4 3/4 in.) gross weight: 426 gr' +p20054 +sg18789 +S'\nbronze' +p20055 +sg18781 +S'Madonna and Child' +p20056 +sg18783 +g27 +sa(dp20057 +g18779 +S'Eugene Shellady' +p20058 +sg18781 +S"Fireman's Hat" +p20059 +sg18783 +g27 +sa(dp20060 +g18779 +S'Elmer G. Anderson' +p20061 +sg18781 +S"Fireman's Helmet" +p20062 +sg18783 +g27 +sa(dp20063 +g18779 +S'Eugene Bartz' +p20064 +sg18781 +S"Fireman's Helmet" +p20065 +sg18783 +g27 +sa(dp20066 +g18779 +S'Eugene Bartz' +p20067 +sg18781 +S"Fireman's Helmet" +p20068 +sg18783 +g27 +sa(dp20069 +g18779 +S'Alfonso Moreno' +p20070 +sg18781 +S"Fireman's Life Belt" +p20071 +sg18783 +g27 +sa(dp20072 +g18779 +S'William Lang' +p20073 +sg18781 +S"Fireman's Hat" +p20074 +sg18783 +g27 +sa(dp20075 +g18779 +S'Alexander Anderson' +p20076 +sg18781 +S"Volunteer Fireman's Cap" +p20077 +sg18783 +g27 +sa(dp20078 +g18779 +S'Robert Tardiff' +p20079 +sg18781 +S"Fireman's Hat" +p20080 +sg18783 +g27 +sa(dp20081 +g18779 +S'George Bobholz' +p20082 +sg18781 +S"Fireman's Belt" +p20083 +sg18783 +g27 +sa(dp20084 +g18779 +S'Herman O. Stroh' +p20085 +sg18781 +S'Police Club and Belt' +p20086 +sg18783 +g27 +sa(dp20087 +g18779 +S'Artist Information (' +p20088 +sg18787 +S'Italian, c. 1467 - 1529' +p20089 +sg18789 +S'(related artist)' +p20090 +sg18781 +S'Madonna and Child with Saints' +p20091 +sg18783 +g27 +sa(dp20092 +g18779 +S'Evelyn Bailey' +p20093 +sg18781 +S"Child's Jacket" +p20094 +sg18783 +g27 +sa(dp20095 +g18779 +S'Evelyn Bailey' +p20096 +sg18781 +S"Child's Apron Dress" +p20097 +sg18783 +g27 +sa(dp20098 +g18779 +S'Evelyn Bailey' +p20099 +sg18781 +S"Infant's Dress" +p20100 +sg18783 +g27 +sa(dp20101 +g18779 +S'Evelyn Bailey' +p20102 +sg18781 +S'Baptismal Dress' +p20103 +sg18783 +g27 +sa(dp20104 +g18779 +S'Kathryn Uhl' +p20105 +sg18781 +S"Infant's Dress" +p20106 +sg18783 +g27 +sa(dp20107 +g18779 +S'Evelyn Bailey' +p20108 +sg18781 +S"Child's Dress" +p20109 +sg18783 +g27 +sa(dp20110 +g18779 +S'Verna Tallman' +p20111 +sg18781 +S"Girl's Dress" +p20112 +sg18783 +g27 +sa(dp20113 +g18779 +S'Gladys C. Parker' +p20114 +sg18781 +S"Child's Dress" +p20115 +sg18783 +g27 +sa(dp20116 +g18779 +S'Gladys C. Parker' +p20117 +sg18781 +S"Child's Dress" +p20118 +sg18783 +g27 +sa(dp20119 +g18779 +S'Edith Towner' +p20120 +sg18781 +S"Infant's Dress" +p20121 +sg18783 +g27 +sa(dp20122 +g18781 +S'The Fountain of the Sciences' +p20123 +sg18779 +S'Jacopo Nizzola da Trezzo' +p20124 +sg18787 +S'bronze' +p20125 +sg18789 +S'c. 1550' +p20126 +sg18791 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002db5.jpg' +p20127 +sg18783 +g27 +sa(dp20128 +g18779 +S'Edith Towner' +p20129 +sg18781 +S'Baby Coat' +p20130 +sg18783 +g27 +sa(dp20131 +g18779 +S'Ella Josephine Sterling' +p20132 +sg18781 +S'Embroidered Christening Robe & Cap' +p20133 +sg18783 +g27 +sa(dp20134 +g18779 +S'Ella Josephine Sterling' +p20135 +sg18781 +S'Embroidered Dress & Mull Cap' +p20136 +sg18783 +g27 +sa(dp20137 +g18779 +S'Ella Josephine Sterling' +p20138 +sg18781 +S'Embroidered Christening Robe & Mull Cap' +p20139 +sg18783 +g27 +sa(dp20140 +g18779 +S'Ella Josephine Sterling' +p20141 +sg18781 +S"Infant's Dress and Shirt" +p20142 +sg18783 +g27 +sa(dp20143 +g18779 +S'Ella Josephine Sterling' +p20144 +sg18781 +S'Christening Robe' +p20145 +sg18783 +g27 +sa(dp20146 +g18779 +S'Cora Parker' +p20147 +sg18781 +S"Doll's Bonnet" +p20148 +sg18783 +g27 +sa(dp20149 +g18779 +S'Manuel G. Runyan' +p20150 +sg18781 +S'Baby Dress' +p20151 +sg18783 +g27 +sa(dp20152 +g18779 +S'Cora Parker' +p20153 +sg18781 +S'Baby Dress' +p20154 +sg18783 +g27 +sa(dp20155 +g18779 +S'Mary Porter' +p20156 +sg18781 +S"Child's Dress" +p20157 +sg18783 +g27 +sa(dp20158 +g18779 +S'Master of the Orpheus Legend' +p20159 +sg18787 +S'bronze' +p20160 +sg18789 +S'fourth quarter 15th century' +p20161 +sg18781 +S'The Centaur Chiron' +p20162 +sg18783 +g27 +sa(dp20163 +g18779 +S'Al Curry' +p20164 +sg18781 +S"Child's Dress" +p20165 +sg18783 +g27 +sa(dp20166 +g18779 +S'Ray Price' +p20167 +sg18781 +S"Child's Dress" +p20168 +sg18783 +g27 +sa(dp20169 +g18779 +S'Al Curry' +p20170 +sg18781 +S"Child's Dress" +p20171 +sg18783 +g27 +sa(dp20172 +g18779 +S'Ray Price' +p20173 +sg18781 +S"Child's Dress" +p20174 +sg18783 +g27 +sa(dp20175 +g18779 +S'Lucien Verbeke' +p20176 +sg18781 +S"Child's Coat" +p20177 +sg18783 +g27 +sa(dp20178 +g18779 +S'Ray Price' +p20179 +sg18781 +S'Baby Coat' +p20180 +sg18783 +g27 +sa(dp20181 +g18779 +S'Lucien Verbeke' +p20182 +sg18781 +S"Child's Dress and Jacket" +p20183 +sg18783 +g27 +sa(dp20184 +g18779 +S'Joseph L. Boyd' +p20185 +sg18781 +S"Child's Dress" +p20186 +sg18783 +g27 +sa(dp20187 +g18779 +S'Ray Price' +p20188 +sg18781 +S"Child's Dress" +p20189 +sg18783 +g27 +sa(dp20190 +g18779 +S'Joseph L. Boyd' +p20191 +sg18781 +S"Infant's Dress" +p20192 +sg18783 +g27 +sa(dp20193 +g18779 +S'Moderno' +p20194 +sg18787 +S'bronze' +p20195 +sg18789 +S'late 15th - early 16th century' +p20196 +sg18781 +S'The Crucifixion' +p20197 +sg18783 +g27 +sa(dp20198 +g18779 +S'Ray Price' +p20199 +sg18781 +S"Child's Dress" +p20200 +sg18783 +g27 +sa(dp20201 +g18779 +S'Joseph L. Boyd' +p20202 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a0000359.jpg' +p20203 +sg18781 +S"Child's Dress" +p20204 +sg18783 +S"This child's dress was made about 1860 in New Orleans. The fabric is blue and \n green plaid linen. It has velvet ribbon trimming and silk fringe. The lining is \n unbleached cotton.\n Girls' clothing was patterned after adult styles. In most cases the length of the \n skirt was an indication of a girl's age; the shorter the skirt the younger the wearer.\n " +p20205 +sa(dp20206 +g18779 +S'Lucien Verbeke' +p20207 +sg18781 +S"Child's Dress" +p20208 +sg18783 +g27 +sa(dp20209 +g18779 +S'Ray Price' +p20210 +sg18781 +S"Child's Dress" +p20211 +sg18783 +g27 +sa(dp20212 +g18779 +S'Hans Mangelsdorf' +p20213 +sg18781 +S"Child's Dress" +p20214 +sg18783 +g27 +sa(dp20215 +g18779 +S'Lucien Verbeke' +p20216 +sg18781 +S"Child's Dress" +p20217 +sg18783 +g27 +sa(dp20218 +g18779 +S'Joseph L. Boyd' +p20219 +sg18781 +S'Doll' +p20220 +sg18783 +g27 +sa(dp20221 +g18779 +S'Lucien Verbeke' +p20222 +sg18781 +S"Infant's Dress (Front View)" +p20223 +sg18783 +g27 +sa(dp20224 +g18779 +S'Lucien Verbeke' +p20225 +sg18781 +S'Baby Dress' +p20226 +sg18783 +g27 +sa(dp20227 +g18779 +S'Lucien Verbeke' +p20228 +sg18781 +S"Child's Dress" +p20229 +sg18783 +g27 +sa(dp20230 +g18781 +S'Claudia Quinta' +p20231 +sg18779 +S"Neroccio de' Landi" +p20232 +sg18787 +S'tempera on panel' +p20233 +sg18789 +S'c. 1490/1495' +p20234 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a00005df.jpg' +p20235 +sg18783 +S'Claudia Quinta embodied the greatest virtues of Roman womanhood—chastity, piety, and fortitude. It had been prophesied that Roman victory in the Second Punic War depended on bringing Cybele, the Anatolian Great Mother goddess, to Rome. But when a ship with her image arrived at the mouth of the Tiber River, it became mired in mud. Strong men were unable to free it. Claudia was a virtuous young matron, falsely accused of impropriety, who had prayed to Cybele for a sign of her innocence. At the goddess\'s direction she slipped a slender cord over the ship\'s bow and easily pulled the vessel free.\n This painting was part of a set of at least seven works representing paragons of virtue. Such cycles devoted to famous men and women of the past had been popular since the Middle Ages and seemed to enjoy particular favor in Siena. The men and women in this set, taken from ancient literature and the Bible, were renowned for chastity, fortitude, or self-restraint. In civic buildings such cycles usually focused on men of political courage, but because this group contains so many women and concentrates on more "domestic" virtues, it probably decorated a private house.\n ' +p20236 +sa(dp20237 +g18781 +S'Bacchus and a Faun' +p20238 +sg18779 +S'Milanese 16th Century' +p20239 +sg18787 +S'bronze' +p20240 +sg18789 +S'1580/1600' +p20241 +sg18791 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c3d.jpg' +p20242 +sg18783 +g27 +sa(dp20243 +g18779 +S'Moderno' +p20244 +sg18787 +S'bronze' +p20245 +sg18789 +S'1507 or before' +p20246 +sg18781 +S'David Triumphant over Goliath' +p20247 +sg18783 +g27 +sa(dp20248 +g18779 +S'Lillian Causey' +p20249 +sg18781 +S'Baby Costume' +p20250 +sg18783 +g27 +sa(dp20251 +g18779 +S'Lillian Causey' +p20252 +sg18781 +S"Child's Dress" +p20253 +sg18783 +g27 +sa(dp20254 +g18779 +S'Lillian Causey' +p20255 +sg18781 +S'Quaker Baby Shirt' +p20256 +sg18783 +g27 +sa(dp20257 +g18779 +S'Lillian Causey' +p20258 +sg18781 +S'Quaker Baby Shirt' +p20259 +sg18783 +g27 +sa(dp20260 +g18779 +S'Lillian Causey' +p20261 +sg18781 +S"Baby's Cap" +p20262 +sg18783 +g27 +sa(dp20263 +g18779 +S'Douglas Campbell' +p20264 +sg18781 +S"Child's Dress" +p20265 +sg18783 +g27 +sa(dp20266 +g18779 +S'Anne Colman' +p20267 +sg18781 +S'Baby Bonnet' +p20268 +sg18783 +g27 +sa(dp20269 +g18779 +S'Rex F. Bush' +p20270 +sg18781 +S"Baby's Shirt" +p20271 +sg18783 +g27 +sa(dp20272 +g18779 +S'Marjorie McIntyre' +p20273 +sg18781 +S"Child's Dress" +p20274 +sg18783 +g27 +sa(dp20275 +g18779 +S'Frederick Jackson' +p20276 +sg18781 +S"Boy's Suit" +p20277 +sg18783 +g27 +sa(dp20278 +g18779 +S'Moderno' +p20279 +sg18787 +S'bronze' +p20280 +sg18789 +S'late 15th - early 16th century' +p20281 +sg18781 +S'The Death of Hippolytus, or The Fall of Phaeton' +p20282 +sg18783 +g27 +sa(dp20283 +g18779 +S'Edward Strzalkowski' +p20284 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a0000300.jpg' +p20285 +sg18781 +S'Puppet: "Punch"' +p20286 +sg18783 +S'Toy makers have found numerous ways of animating their products, and puppets,\n activated by sticks or strings, are perfect examples of toys in motion. This is\n Punch, the villainous hero of the English puppet play, \n ' +p20287 +sa(dp20288 +g18779 +S'Marie Famularo' +p20289 +sg18781 +S"Infant's Dress" +p20290 +sg18783 +g27 +sa(dp20291 +g18779 +S'Marie Famularo' +p20292 +sg18781 +S"Girl's Chintz Dress" +p20293 +sg18783 +g27 +sa(dp20294 +g18779 +S'Grace Halpin' +p20295 +sg18781 +S"Infant's Cap" +p20296 +sg18783 +g27 +sa(dp20297 +g18779 +S'Marie Famularo' +p20298 +sg18781 +S"Infant's Cap" +p20299 +sg18783 +g27 +sa(dp20300 +g18779 +S'Raymond Manupelli' +p20301 +sg18781 +S"Child's Dress" +p20302 +sg18783 +g27 +sa(dp20303 +g18779 +S'Eleanor Gausser' +p20304 +sg18781 +S"Baby's Bib" +p20305 +sg18783 +g27 +sa(dp20306 +g18779 +S'Marie Lutrell' +p20307 +sg18781 +S"Child's Dress" +p20308 +sg18783 +g27 +sa(dp20309 +g18779 +S'Isabelle De Strange' +p20310 +sg18781 +S"Baby's Hood" +p20311 +sg18783 +g27 +sa(dp20312 +g18779 +S'Eleanor Gausser' +p20313 +sg18781 +S"Child's Dress" +p20314 +sg18783 +g27 +sa(dp20315 +g18779 +S'Moderno' +p20316 +sg18787 +S'bronze' +p20317 +sg18789 +S'late 15th - early 16th century' +p20318 +sg18781 +S'The Flagellation' +p20319 +sg18783 +g27 +sa(dp20320 +g18779 +S'Richard Whitaker' +p20321 +sg18781 +S"Baby's Lace Cap" +p20322 +sg18783 +g27 +sa(dp20323 +g18779 +S'Richard Whitaker' +p20324 +sg18781 +S"Infant's Shirt" +p20325 +sg18783 +g27 +sa(dp20326 +g18779 +S'Eleanor Gausser' +p20327 +sg18781 +S"Quaker's Baby Bonnet" +p20328 +sg18783 +g27 +sa(dp20329 +g18779 +S'Fanchon Larzelere' +p20330 +sg18781 +S'Dutch Dress' +p20331 +sg18783 +g27 +sa(dp20332 +g18779 +S'Jean Peszel' +p20333 +sg18781 +S"Child's Dress" +p20334 +sg18783 +g27 +sa(dp20335 +g18779 +S'Jean Peszel' +p20336 +sg18781 +S"Child's Dress" +p20337 +sg18783 +g27 +sa(dp20338 +g18779 +S'Gertrude Lemberg' +p20339 +sg18781 +S"Child's Dress" +p20340 +sg18783 +g27 +sa(dp20341 +g18779 +S'Sara Garfinkel' +p20342 +sg18781 +S"Child's Dress" +p20343 +sg18783 +g27 +sa(dp20344 +g18779 +S'Margaret Concha' +p20345 +sg18781 +S"Child's Dress" +p20346 +sg18783 +g27 +sa(dp20347 +g18779 +S'Margaret Concha' +p20348 +sg18781 +S"Child's Dress" +p20349 +sg18783 +g27 +sa(dp20350 +g18779 +S'Moderno' +p20351 +sg18787 +S'bronze' +p20352 +sg18789 +S'late 15th - early 16th century' +p20353 +sg18781 +S'Hercules and the Lernaean Hydra' +p20354 +sg18783 +g27 +sa(dp20355 +g18779 +S'Virginia Berge' +p20356 +sg18781 +S'Christening Dress' +p20357 +sg18783 +g27 +sa(dp20358 +g18779 +S'Catherine Fowler' +p20359 +sg18781 +S"Child's Dress" +p20360 +sg18783 +g27 +sa(dp20361 +g18779 +S'Dorothy Gernon' +p20362 +sg18781 +S"Child's Dress" +p20363 +sg18783 +g27 +sa(dp20364 +g18779 +S'Catherine Fowler' +p20365 +sg18781 +S"Child's Dress" +p20366 +sg18783 +g27 +sa(dp20367 +g18779 +S'Roberta Spicer' +p20368 +sg18781 +S"Child's Dress & Collar" +p20369 +sg18783 +g27 +sa(dp20370 +g18779 +S'Melita Hofmann' +p20371 +sg18781 +S"Child's Dress" +p20372 +sg18783 +g27 +sa(dp20373 +g18779 +S'Sara Garfinkel' +p20374 +sg18781 +S"Child's Dress" +p20375 +sg18783 +g27 +sa(dp20376 +g18779 +S'Melita Hofmann' +p20377 +sg18781 +S"Child's Bonnet" +p20378 +sg18783 +g27 +sa(dp20379 +g18779 +S'Nancy Crimi' +p20380 +sg18781 +S"Child's Dress" +p20381 +sg18783 +g27 +sa(dp20382 +g18779 +S'Virginia Berge' +p20383 +sg18781 +S"Infant's Bib" +p20384 +sg18783 +g27 +sa(dp20385 +g18779 +S'Moderno' +p20386 +sg18787 +S'gilt bronze' +p20387 +sg18789 +S'late 15th - early 16th century' +p20388 +sg18781 +S'Hercules and the Nemean Lion' +p20389 +sg18783 +g27 +sa(dp20390 +g18779 +S'Dorothea Mierisch' +p20391 +sg18781 +S"Child's Bonnet" +p20392 +sg18783 +g27 +sa(dp20393 +g18779 +S'Gertrude Lemberg' +p20394 +sg18781 +S"Child's Cape" +p20395 +sg18783 +g27 +sa(dp20396 +g18779 +S'Dorothy Gernon' +p20397 +sg18781 +S"Child's Coat" +p20398 +sg18783 +g27 +sa(dp20399 +g18779 +S'Catherine Fowler' +p20400 +sg18781 +S"Child's Dress" +p20401 +sg18783 +g27 +sa(dp20402 +g18779 +S'Virginia Berge' +p20403 +sg18781 +S"Baby's Shirt" +p20404 +sg18783 +g27 +sa(dp20405 +g18779 +S'Nancy Crimi' +p20406 +sg18781 +S"Boy's Coat" +p20407 +sg18783 +g27 +sa(dp20408 +g18779 +S'Marie Mitchell' +p20409 +sg18781 +S"Boy's Coat" +p20410 +sg18783 +g27 +sa(dp20411 +g18779 +S'Nancy Crimi' +p20412 +sg18781 +S"Girl's Dress" +p20413 +sg18783 +g27 +sa(dp20414 +g18779 +S'Winifred Gibbes' +p20415 +sg18781 +S"Girl's Dress" +p20416 +sg18783 +g27 +sa(dp20417 +g18779 +S'Nancy Crimi' +p20418 +sg18781 +S"Girl's Dress with Pantaloons" +p20419 +sg18783 +g27 +sa(dp20420 +g18779 +S'Moderno' +p20421 +sg18787 +S'bronze' +p20422 +sg18789 +S'late 15th - early 16th century' +p20423 +sg18781 +S'Lucretia' +p20424 +sg18783 +g27 +sa(dp20425 +g18779 +S'Nancy Crimi' +p20426 +sg18781 +S"Child's Coat & Bonnet" +p20427 +sg18783 +g27 +sa(dp20428 +g18779 +S'Sarah F. Williams' +p20429 +sg18781 +S"Infant's Baptismal Dress" +p20430 +sg18783 +g27 +sa(dp20431 +g18779 +S'Mary E. Humes' +p20432 +sg18781 +S"Infant's Dress" +p20433 +sg18783 +g27 +sa(dp20434 +g18779 +S'Mary E. Humes' +p20435 +sg18781 +S"Child's Dress" +p20436 +sg18783 +g27 +sa(dp20437 +g18779 +S'Mary E. Humes' +p20438 +sg18781 +S"Child's Bonnet" +p20439 +sg18783 +g27 +sa(dp20440 +g18779 +S'Mary E. Humes' +p20441 +sg18781 +S"Child's Coat" +p20442 +sg18783 +g27 +sa(dp20443 +g18779 +S'Mary E. Humes' +p20444 +sg18781 +S"Child's Dress" +p20445 +sg18783 +g27 +sa(dp20446 +g18779 +S'Edna C. Rex' +p20447 +sg18781 +S"Child's Cape" +p20448 +sg18783 +g27 +sa(dp20449 +g18779 +S'Cora Parker' +p20450 +sg18781 +S"Child's Stocking" +p20451 +sg18783 +g27 +sa(dp20452 +g18779 +S'H. Langden Brown' +p20453 +sg18781 +S'Stockings' +p20454 +sg18783 +g27 +sa(dp20455 +g18779 +S'Moderno' +p20456 +sg18787 +S'bronze' +p20457 +sg18789 +S'late 15th - early 16th century' +p20458 +sg18781 +S'Madonna and Child with Saints' +p20459 +sg18783 +g27 +sa(dp20460 +g18779 +S'William High' +p20461 +sg18781 +S'Stockings' +p20462 +sg18783 +g27 +sa(dp20463 +g18779 +S'E.J. Gilsleider' +p20464 +sg18781 +S'Knit Hose' +p20465 +sg18783 +g27 +sa(dp20466 +g18779 +S'Margaret Concha' +p20467 +sg18781 +S'Stockings' +p20468 +sg18783 +g27 +sa(dp20469 +g18779 +S'Dorothy M. Gerhard' +p20470 +sg18781 +S'Stockings' +p20471 +sg18783 +g27 +sa(dp20472 +g18779 +S'Melita Hofmann' +p20473 +sg18781 +S'Stockings' +p20474 +sg18783 +g27 +sa(dp20475 +g18779 +S'Melita Hofmann' +p20476 +sg18781 +S'Spats' +p20477 +sg18783 +g27 +sa(dp20478 +g18779 +S'Sylvia De Zon' +p20479 +sg18781 +S'Stockings' +p20480 +sg18783 +g27 +sa(dp20481 +g18779 +S'Sylvia De Zon' +p20482 +sg18781 +S'Stockings' +p20483 +sg18783 +g27 +sa(dp20484 +g18779 +S'Rosalia Lane' +p20485 +sg18781 +S'Stockings' +p20486 +sg18783 +g27 +sa(dp20487 +g18779 +S'Rose Campbell-Gerke' +p20488 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a00003d7.jpg' +p20489 +sg18781 +S'Inlaid Spur' +p20490 +sg18783 +S'Spurs presented an opportunity for embellishment using both leather and metal. While sometimes the heel bands and shanks were left plain, more frequently they were decorated. This example has an engraved silver design in the hand-forged steel.\r\n The leather is intricately tooled; in some rare cases, even jewels were set in the leather. This spur was made in California about 1890. Like the saddle, it reflects the tradition of adornment inherited from the Spanish "caballero."\n ' +p20491 +sa(dp20492 +g18779 +S'Moderno' +p20493 +sg18787 +S'bronze' +p20494 +sg18789 +S'late 15th - early 16th century' +p20495 +sg18781 +S'Madonna and Child with Saints' +p20496 +sg18783 +g27 +sa(dp20497 +g18779 +S'Vera Van Voris' +p20498 +sg18781 +S'Spur' +p20499 +sg18783 +g27 +sa(dp20500 +g18779 +S'James Dwyer' +p20501 +sg18781 +S'Spur' +p20502 +sg18783 +g27 +sa(dp20503 +g18779 +S'Margaret Stottlemeyer' +p20504 +sg18781 +S'Ice Skate' +p20505 +sg18783 +g27 +sa(dp20506 +g18779 +S'Samuel Fineman' +p20507 +sg18781 +S'Ice Skate' +p20508 +sg18783 +g27 +sa(dp20509 +g18779 +S'Alfred Walbeck' +p20510 +sg18781 +S'Spur' +p20511 +sg18783 +g27 +sa(dp20512 +g18779 +S'Fred Hassebrock' +p20513 +sg18781 +S"Rider's Spur" +p20514 +sg18783 +g27 +sa(dp20515 +g18779 +S'Albert Rudin' +p20516 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00055/a0005537.jpg' +p20517 +sg18781 +S'Roller Skates' +p20518 +sg18783 +g27 +sa(dp20519 +g18779 +S'Raymond Neumann' +p20520 +sg18781 +S'Snow Skates' +p20521 +sg18783 +g27 +sa(dp20522 +g18779 +S'Sydney Roberts' +p20523 +sg18781 +S'File Skates' +p20524 +sg18783 +g27 +sa(dp20525 +g18779 +S'Harley Kempter' +p20526 +sg18781 +S'Ice Skates' +p20527 +sg18783 +g27 +sa(dp20528 +g18779 +S'Moderno' +p20529 +sg18787 +S', late 15th - early 16th century' +p20530 +sg18789 +S'\n' +p20531 +sg18781 +S'Orpheus Playing to the Animals' +p20532 +sg18783 +g27 +sa(dp20533 +g18779 +S'Gerald Bernhardt' +p20534 +sg18781 +S'Ice Skate' +p20535 +sg18783 +g27 +sa(dp20536 +g18779 +S'Samuel O. Klein' +p20537 +sg18781 +S'Ice Skate' +p20538 +sg18783 +g27 +sa(dp20539 +g18779 +S'Clyde L. Cheney' +p20540 +sg18781 +S'Spurs' +p20541 +sg18783 +g27 +sa(dp20542 +g18779 +S'LeRoy McCarrel' +p20543 +sg18781 +S'Spurs' +p20544 +sg18783 +g27 +sa(dp20545 +g18779 +S'Eldon Allen' +p20546 +sg18781 +S'Spur' +p20547 +sg18783 +g27 +sa(dp20548 +g18779 +S'Eldon Allen' +p20549 +sg18781 +S'Spur' +p20550 +sg18783 +g27 +sa(dp20551 +g18779 +S'Albert Geuppert' +p20552 +sg18781 +S'Spurs' +p20553 +sg18783 +g27 +sa(dp20554 +g18779 +S'Clarence Secor' +p20555 +sg18781 +S'Ice Skate' +p20556 +sg18783 +g27 +sa(dp20557 +g18779 +S'Eugene Bartz' +p20558 +sg18781 +S'Ice Skate' +p20559 +sg18783 +g27 +sa(dp20560 +g18779 +S'Lloyd Charles Lemcke' +p20561 +sg18781 +S'Ice Skate' +p20562 +sg18783 +g27 +sa(dp20563 +g18779 +S'Moderno' +p20564 +sg18787 +S'bronze' +p20565 +sg18789 +S'late 15th - early 16th century' +p20566 +sg18781 +S'The Resurrection of Christ' +p20567 +sg18783 +g27 +sa(dp20568 +g18779 +S'Erwin Stenzel' +p20569 +sg18781 +S'Ice Skate' +p20570 +sg18783 +g27 +sa(dp20571 +g18779 +S'Ethel Dougan' +p20572 +sg18781 +S"Woman's Spur" +p20573 +sg18783 +g27 +sa(dp20574 +g18779 +S'William Kieckhofel' +p20575 +sg18781 +S'Evening Slipper' +p20576 +sg18783 +g27 +sa(dp20577 +g18779 +S'Ann Gene Buckley' +p20578 +sg18781 +S"Woman's Slipper" +p20579 +sg18783 +g27 +sa(dp20580 +g18779 +S'William Kieckhofel' +p20581 +sg18781 +S"Woman's Sandal" +p20582 +sg18783 +g27 +sa(dp20583 +g18779 +S'Edward L. Loper' +p20584 +sg18781 +S'Pattens' +p20585 +sg18783 +g27 +sa(dp20586 +g18779 +S'Edward L. Loper' +p20587 +sg18781 +S'Pattens' +p20588 +sg18783 +g27 +sa(dp20589 +g18779 +S'Vincent P. Rosel' +p20590 +sg18781 +S"Lady's Shoe" +p20591 +sg18783 +g27 +sa(dp20592 +g18779 +S'Ella Josephine Sterling' +p20593 +sg18781 +S"Lady's Overshoes" +p20594 +sg18783 +g27 +sa(dp20595 +g18779 +S'Ella Josephine Sterling' +p20596 +sg18781 +S"Woman's Slipper" +p20597 +sg18783 +g27 +sa(dp20598 +g18779 +S'Moderno' +p20599 +sg18787 +S'bronze' +p20600 +sg18789 +S'late 15th - early 16th century' +p20601 +sg18781 +S'Saint Sebastian' +p20602 +sg18783 +g27 +sa(dp20603 +g18779 +S'Frank S. Browne' +p20604 +sg18781 +S'Slippers' +p20605 +sg18783 +g27 +sa(dp20606 +g18779 +S'Fred Hassebrock' +p20607 +sg18781 +S'Gaiter' +p20608 +sg18783 +g27 +sa(dp20609 +g18779 +S'Frank McEntee' +p20610 +sg18781 +S"Ladies' Slippers" +p20611 +sg18783 +g27 +sa(dp20612 +g18779 +S'Maxil Ballinger' +p20613 +sg18781 +S"Woman's Sabot" +p20614 +sg18783 +g27 +sa(dp20615 +g18779 +S'H. Langden Brown' +p20616 +sg18781 +S"Woman's Silk Shoe" +p20617 +sg18783 +g27 +sa(dp20618 +g18779 +S'Harry Grossen' +p20619 +sg18781 +S"Woman's Clogs" +p20620 +sg18783 +g27 +sa(dp20621 +g18779 +S'Arlington Gregg' +p20622 +sg18781 +S'Shoe' +p20623 +sg18783 +g27 +sa(dp20624 +g18779 +S'Rocco Navigato' +p20625 +sg18781 +S'Iron Sole' +p20626 +sg18783 +g27 +sa(dp20627 +g18779 +S'LeRoy Griffith' +p20628 +sg18781 +S'Needlepoint Slippers' +p20629 +sg18783 +g27 +sa(dp20630 +g18779 +S'Ray Price' +p20631 +sg18781 +S"Woman's Slippers" +p20632 +sg18783 +g27 +sa(dp20633 +g18779 +S'North Italian 15th Century' +p20634 +sg18787 +S'overall (silhouetted contour): 7.7 x 6 cm (3 1/16 x 2 3/8 in.) gross weight: 62 gr' +p20635 +sg18789 +S'\ngilt bronze' +p20636 +sg18781 +S'Judith' +p20637 +sg18783 +g27 +sa(dp20638 +g18779 +S'Al Curry' +p20639 +sg18781 +S"Woman's Slippers" +p20640 +sg18783 +g27 +sa(dp20641 +g18779 +S'Lillian Causey' +p20642 +sg18781 +S"Woman's Shoes" +p20643 +sg18783 +g27 +sa(dp20644 +g18779 +S'Lillian Causey' +p20645 +sg18781 +S"Woman's Slippers" +p20646 +sg18783 +g27 +sa(dp20647 +g18779 +S'Lillian Causey' +p20648 +sg18781 +S"Woman's Slippers" +p20649 +sg18783 +g27 +sa(dp20650 +g18779 +S'Lillian Causey' +p20651 +sg18781 +S"Woman's Slippers" +p20652 +sg18783 +g27 +sa(dp20653 +g18779 +S'Marie Alain' +p20654 +sg18781 +S'Walking Slippers' +p20655 +sg18783 +g27 +sa(dp20656 +g18779 +S'Marie Alain' +p20657 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a0000352.jpg' +p20658 +sg18781 +S"Woman's Shoes" +p20659 +sg18783 +S'These brocaded silk shoes exemplify the beautiful and elaborate accessories \n that were part of the fashionable eighteenth-century wardrobe. Since they were \n not suitable for walking out-of-doors, clogs or pattens -- separate wooden or leather \n soles -- were strapped on over the shoes when necessary.\n ' +p20660 +sa(dp20661 +g18779 +S'Stella Mosher' +p20662 +sg18781 +S"Child's Shoes" +p20663 +sg18783 +g27 +sa(dp20664 +g18779 +S'Stella Mosher' +p20665 +sg18781 +S"Woman's Shoes" +p20666 +sg18783 +g27 +sa(dp20667 +g18779 +S'Adele Brooks' +p20668 +sg18781 +S"Woman's Slipper" +p20669 +sg18783 +g27 +sa(dp20670 +g18779 +S'North Italian 16th Century' +p20671 +sg18787 +S'overall (without loops): 5.2 x 3.5 cm (2 1/16 x 1 3/8 in.)\r\naccessory size: 5.7 x 6.3 cm (2 1/4 x 2 1/2 in.)\r\ngross weight: 41.000 gr' +p20672 +sg18789 +S'\ngilt bronze' +p20673 +sg18781 +S'Madonna' +p20674 +sg18783 +g27 +sa(dp20675 +g18779 +S'Columbus Simpson' +p20676 +sg18781 +S"Woman's Shoe" +p20677 +sg18783 +g27 +sa(dp20678 +g18779 +S'Columbus Simpson' +p20679 +sg18781 +S"Woman's Shoe" +p20680 +sg18783 +g27 +sa(dp20681 +g18779 +S'John Hall' +p20682 +sg18781 +S"Woman's Shoe" +p20683 +sg18783 +g27 +sa(dp20684 +g18779 +S'Francis Law Durand' +p20685 +sg18781 +S"Woman's Slipper" +p20686 +sg18783 +g27 +sa(dp20687 +g18779 +S'Francis Law Durand' +p20688 +sg18781 +S"Woman's Shoe" +p20689 +sg18783 +g27 +sa(dp20690 +g18779 +S'Grace Halpin' +p20691 +sg18781 +S"Woman's Slipper" +p20692 +sg18783 +g27 +sa(dp20693 +g18779 +S'Columbus Simpson' +p20694 +sg18781 +S"Woman's Shoe" +p20695 +sg18783 +g27 +sa(dp20696 +g18779 +S'Marjorie McIntyre' +p20697 +sg18781 +S"Boy's Shoes" +p20698 +sg18783 +g27 +sa(dp20699 +g18779 +S'Grace Halpin' +p20700 +sg18781 +S'Slipper' +p20701 +sg18783 +g27 +sa(dp20702 +g18779 +S'American 20th Century' +p20703 +sg18781 +S"Woman's Shoe" +p20704 +sg18783 +g27 +sa(dp20705 +g18779 +S'North Italian 16th Century' +p20706 +sg18787 +S'overall (silhouette contour without loops): 4.6 x 3.2 cm (1 13/16 x 1 1/4 in.) gross weight: 30 gr' +p20707 +sg18789 +S'\ngilt bronze' +p20708 +sg18781 +S'John the Evangelist' +p20709 +sg18783 +g27 +sa(dp20710 +g18779 +S'Marie Mitchell' +p20711 +sg18781 +S'Patten' +p20712 +sg18783 +g27 +sa(dp20713 +g18779 +S'Melita Hofmann' +p20714 +sg18781 +S"Woman's Shoe" +p20715 +sg18783 +g27 +sa(dp20716 +g18779 +S'Melita Hofmann' +p20717 +sg18781 +S"Woman's Shoe" +p20718 +sg18783 +g27 +sa(dp20719 +g18779 +S'Doris Beer' +p20720 +sg18781 +S'Wedding Slippers' +p20721 +sg18783 +g27 +sa(dp20722 +g18779 +S'Nancy Crimi' +p20723 +sg18781 +S'Slipper' +p20724 +sg18783 +g27 +sa(dp20725 +g18779 +S'Sylvia De Zon' +p20726 +sg18781 +S"Woman's Shoe" +p20727 +sg18783 +g27 +sa(dp20728 +g18779 +S'Doris Beer' +p20729 +sg18781 +S'Carriage Boot' +p20730 +sg18783 +g27 +sa(dp20731 +g18779 +S'Gladys Cook' +p20732 +sg18781 +S'Baby Shoe' +p20733 +sg18783 +g27 +sa(dp20734 +g18779 +S'Margaret Concha' +p20735 +sg18781 +S"Woman's Shoe" +p20736 +sg18783 +g27 +sa(dp20737 +g18779 +S'Melita Hofmann' +p20738 +sg18781 +S"Woman's Slipper" +p20739 +sg18783 +g27 +sa(dp20740 +g18779 +S'North Italian 15th Century' +p20741 +sg18787 +S'Overall (without suspension tab): 9.3 x 6.7 cm (3 11/16 x 2 5/8 in.)\r\noverall (height with suspension tab): 10.2 cm (4 in.)\r\noverall: 1.2 cm (1/2 in.) gross weight: 234 gr' +p20742 +sg18789 +S'\ngilt bronze' +p20743 +sg18781 +S'Bust of Christ' +p20744 +sg18783 +g27 +sa(dp20745 +g18779 +S'Carl Schutz' +p20746 +sg18781 +S"Woman's Shoe" +p20747 +sg18783 +g27 +sa(dp20748 +g18779 +S'Roberta Spicer' +p20749 +sg18781 +S"Woman's Shoe" +p20750 +sg18783 +g27 +sa(dp20751 +g18779 +S'Melita Hofmann' +p20752 +sg18781 +S"Woman's Shoe" +p20753 +sg18783 +g27 +sa(dp20754 +g18779 +S'Margaret Concha' +p20755 +sg18781 +S"Woman's Shoe" +p20756 +sg18783 +g27 +sa(dp20757 +g18779 +S'Melita Hofmann' +p20758 +sg18781 +S"Woman's Clog" +p20759 +sg18783 +g27 +sa(dp20760 +g18779 +S'Melita Hofmann' +p20761 +sg18781 +S'Slipper' +p20762 +sg18783 +g27 +sa(dp20763 +g18779 +S'Esther Hansen' +p20764 +sg18781 +S"Woman's Slippers" +p20765 +sg18783 +g27 +sa(dp20766 +g18779 +S'Melita Hofmann' +p20767 +sg18781 +S"Woman's Shoe" +p20768 +sg18783 +g27 +sa(dp20769 +g18779 +S'Creighton Kay-Scott' +p20770 +sg18781 +S"Woman's Shoe" +p20771 +sg18783 +g27 +sa(dp20772 +g18779 +S'Nancy Crimi' +p20773 +sg18781 +S"Woman's Shoe" +p20774 +sg18783 +g27 +sa(dp20775 +g18779 +S'North Italian 15th Century' +p20776 +sg18787 +S'overall (maximum dimensions): 14.5 x 10.1 cm (5 11/16 x 3 15/16 in.)\r\noverall (plaquette field): 7.7 x 4.8 cm (3 1/16 x 1 7/8 in.)\r\ngross weight: 288 gr (0.635 lb.)' +p20777 +sg18789 +S'\nbronze' +p20778 +sg18781 +S'The Dead Christ' +p20779 +sg18783 +g27 +sa(dp20780 +g18779 +S'Jean Peszel' +p20781 +sg18781 +S"Woman's Slipper" +p20782 +sg18783 +g27 +sa(dp20783 +g18779 +S'Nancy Crimi' +p20784 +sg18781 +S"Woman's Slipper" +p20785 +sg18783 +g27 +sa(dp20786 +g18779 +S'Mabel Ritter' +p20787 +sg18781 +S'Pipe' +p20788 +sg18783 +g27 +sa(dp20789 +g18779 +S'Bessie Forman' +p20790 +sg18781 +S"Woman's Shoe" +p20791 +sg18783 +g27 +sa(dp20792 +g18779 +S'Charles Garjian' +p20793 +sg18781 +S"Woman's Shoe" +p20794 +sg18783 +g27 +sa(dp20795 +g18779 +S'Bessie Forman' +p20796 +sg18781 +S"Woman's Slipper" +p20797 +sg18783 +g27 +sa(dp20798 +g18779 +S'Marie Mitchell' +p20799 +sg18781 +S"Woman's Slipper" +p20800 +sg18783 +g27 +sa(dp20801 +g18779 +S'Nancy Crimi' +p20802 +sg18781 +S"Woman's Slipper" +p20803 +sg18783 +g27 +sa(dp20804 +g18779 +S'Dorothy Gernon' +p20805 +sg18781 +S'Slipper' +p20806 +sg18783 +g27 +sa(dp20807 +g18779 +S'Daniel Marshack' +p20808 +sg18781 +S"Woman's Shoe" +p20809 +sg18783 +g27 +sa(dp20810 +g18779 +S'North Italian 16th Century' +p20811 +sg18787 +S'overall: 5 x 7.6 cm (1 15/16 x 3 in.) gross weight: 69 gr' +p20812 +sg18789 +S'\nbronze' +p20813 +sg18781 +S'A Triumph' +p20814 +sg18783 +g27 +sa(dp20815 +g18779 +S'Virginia Berge' +p20816 +sg18781 +S"Woman's Slipper" +p20817 +sg18783 +g27 +sa(dp20818 +g18779 +S'Daniel Marshack' +p20819 +sg18781 +S"Woman's Shoe" +p20820 +sg18783 +g27 +sa(dp20821 +g18779 +S'Daniel Marshack' +p20822 +sg18781 +S"Woman's Shoe" +p20823 +sg18783 +g27 +sa(dp20824 +g18779 +S'Daniel Marshack' +p20825 +sg18781 +S"Woman's Shoe" +p20826 +sg18783 +g27 +sa(dp20827 +g18779 +S'Daniel Marshack' +p20828 +sg18781 +S'Slipper' +p20829 +sg18783 +g27 +sa(dp20830 +g18779 +S'Virginia Berge' +p20831 +sg18781 +S"Woman's Slipper" +p20832 +sg18783 +g27 +sa(dp20833 +g18779 +S'Dorothy Dwin' +p20834 +sg18781 +S"Lady's Boot" +p20835 +sg18783 +g27 +sa(dp20836 +g18779 +S'Frank Maurer' +p20837 +sg18781 +S"Woman's Slipper" +p20838 +sg18783 +g27 +sa(dp20839 +g18779 +S'Edna C. Rex' +p20840 +sg18781 +S"Woman's Slippers" +p20841 +sg18783 +g27 +sa(dp20842 +g18779 +S'Bessie Forman' +p20843 +sg18781 +S'Shoe' +p20844 +sg18783 +g27 +sa(dp20845 +g18779 +S'North Italian 16th Century' +p20846 +sg18787 +S'overall: 4.1 x 6.3 cm (1 5/8 x 2 1/2 in.) gross weight: 40 gr' +p20847 +sg18789 +S'\nbronze' +p20848 +sg18781 +S'Triumphal Procession' +p20849 +sg18783 +g27 +sa(dp20850 +g18779 +S'Edna C. Rex' +p20851 +sg18781 +S'Wedding Slippers' +p20852 +sg18783 +g27 +sa(dp20853 +g18779 +S'John Cooke' +p20854 +sg18781 +S"Woman's Shoe" +p20855 +sg18783 +g27 +sa(dp20856 +g18779 +S'Lloyd Charles Lemcke' +p20857 +sg18781 +S'Wooden Shoe' +p20858 +sg18783 +g27 +sa(dp20859 +g18779 +S'Eugene C. Miller' +p20860 +sg18781 +S'Birch Bark Shoe' +p20861 +sg18783 +g27 +sa(dp20862 +g18779 +S'Samuel Faigin' +p20863 +sg18781 +S'Wooden Shoe' +p20864 +sg18783 +g27 +sa(dp20865 +g18779 +S'Rose Campbell-Gerke' +p20866 +sg18781 +S'Leather Shoe' +p20867 +sg18783 +g27 +sa(dp20868 +g18779 +S'Ann Gene Buckley' +p20869 +sg18781 +S"Man's Dancing Shoe" +p20870 +sg18783 +g27 +sa(dp20871 +g18779 +S'Artist Information (' +p20872 +sg18781 +S'Shoes' +p20873 +sg18783 +g27 +sa(dp20874 +g18779 +S'Edna C. Rex' +p20875 +sg18781 +S'Wedding Shoe' +p20876 +sg18783 +g27 +sa(dp20877 +g18779 +S'Michael France' +p20878 +sg18781 +S"Man's Shoe" +p20879 +sg18783 +g27 +sa(dp20880 +g18779 +S'Italian 16th Century' +p20881 +sg18787 +S'overall (rounded above): 12.7 x 7.7 cm (5 x 3 1/16 in.) gross weight: 313 gr' +p20882 +sg18789 +S'\nbronze' +p20883 +sg18781 +S'Descent from the Cross' +p20884 +sg18783 +g27 +sa(dp20885 +g18779 +S'Majel G. Claflin' +p20886 +sg18781 +S"Copper-toed Child's Shoe" +p20887 +sg18783 +g27 +sa(dp20888 +g18779 +S'Majel G. Claflin' +p20889 +sg18781 +S"Man's shoe" +p20890 +sg18783 +g27 +sa(dp20891 +g18779 +S'Gladys Cook' +p20892 +sg18781 +S"Man's Shoe" +p20893 +sg18783 +g27 +sa(dp20894 +g18779 +S'Marie Mitchell' +p20895 +sg18781 +S"Man's Shoe" +p20896 +sg18783 +g27 +sa(dp20897 +g18779 +S'Roberta Spicer' +p20898 +sg18781 +S"Man's Shoes" +p20899 +sg18783 +g27 +sa(dp20900 +g18779 +S'Dorothy Gernon' +p20901 +sg18781 +S'Riding Boot' +p20902 +sg18783 +g27 +sa(dp20903 +g18779 +S'Dorothy Dwin' +p20904 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a0000353.jpg' +p20905 +sg18781 +S"Man's Shoe" +p20906 +sg18783 +S"Men's shoes surviving from the eighteenth century are extremely rare. This \n man's shoe, dated about 1775, is made of gray suede and has a one-inch red leather \n heel and a brass buckle. The low, broad heel first appeared in America in the \n 1770s and continued in fashion until the turn of the century. Shoe buckles were \n both functional and decorative. Usually, no distinction was made between the left \n and right shoe; each shoe of a pair could be worn on either the left or the right foot.\n " +p20907 +sa(dp20908 +g18779 +S'Mary E. Humes' +p20909 +sg18781 +S"Man's Slippers" +p20910 +sg18783 +g27 +sa(dp20911 +g18779 +S'Eugene C. Miller' +p20912 +sg18781 +S"Man's Boot" +p20913 +sg18783 +g27 +sa(dp20914 +g18779 +S'Eugene C. Miller' +p20915 +sg18781 +S'Boot' +p20916 +sg18783 +g27 +sa(dp20917 +g18779 +S'Paduan 15th Century' +p20918 +sg18787 +S'overall: 10 x 8.6 cm (3 15/16 x 3 3/8 in.) gross weight: 407 gr' +p20919 +sg18789 +S'\nsilvered bronze' +p20920 +sg18781 +S"Christ's Body Held by Two Angels" +p20921 +sg18783 +g27 +sa(dp20922 +g18779 +S'Edith Towner' +p20923 +sg18781 +S'Baby Shoes' +p20924 +sg18783 +g27 +sa(dp20925 +g18779 +S'Syrena Swanson' +p20926 +sg18781 +S"Peg'in Stitch Boot" +p20927 +sg18783 +g27 +sa(dp20928 +g18779 +S'Harry Grossen' +p20929 +sg18781 +S"Boy's Boots" +p20930 +sg18783 +g27 +sa(dp20931 +g18779 +S'LeRoy Griffith' +p20932 +sg18781 +S"Child's Boot" +p20933 +sg18783 +g27 +sa(dp20934 +g18779 +S'Earl Butlin' +p20935 +sg18781 +S"Child's Boot" +p20936 +sg18783 +g27 +sa(dp20937 +g18779 +S'Margery Parish' +p20938 +sg18781 +S"Child's Shoes" +p20939 +sg18783 +g27 +sa(dp20940 +g18779 +S'Mae A. Clarke' +p20941 +sg18781 +S'Baby Shoe' +p20942 +sg18783 +g27 +sa(dp20943 +g18779 +S'Jessie M. Benge' +p20944 +sg18781 +S"Boy's Boot" +p20945 +sg18783 +g27 +sa(dp20946 +g18779 +S'Mae Szilvasy' +p20947 +sg18781 +S"Child's Shoe" +p20948 +sg18783 +g27 +sa(dp20949 +g18779 +S'Margaret Concha' +p20950 +sg18781 +S"Child's Shoe" +p20951 +sg18783 +g27 +sa(dp20952 +g18779 +S'Paduan 15th Century' +p20953 +sg18787 +S'overall: 67.5 x 50 cm (26 9/16 x 19 11/16 in.) gross weight: 58 gr' +p20954 +sg18789 +S'\ngilt bronze' +p20955 +sg18781 +S'Descent from the Cross' +p20956 +sg18783 +g27 +sa(dp20957 +g18779 +S'Jean Peszel' +p20958 +sg18781 +S"Child's Shoe" +p20959 +sg18783 +g27 +sa(dp20960 +g18779 +S'Margaret Concha' +p20961 +sg18781 +S'Baby Shoe' +p20962 +sg18783 +g27 +sa(dp20963 +g18779 +S'Margaret Concha' +p20964 +sg18781 +S'Baby Shoe' +p20965 +sg18783 +g27 +sa(dp20966 +g18779 +S'Gladys M. Guillaudeu' +p20967 +sg18781 +S"Child's Shoes" +p20968 +sg18783 +g27 +sa(dp20969 +g18779 +S'William Frank' +p20970 +sg18781 +S"Baby's Shoe" +p20971 +sg18783 +g27 +sa(dp20972 +g18779 +S'Alexander Anderson' +p20973 +sg18781 +S"Child's Shoe" +p20974 +sg18783 +g27 +sa(dp20975 +g18779 +S'Gordena Jackson' +p20976 +sg18781 +S'Bead Belt' +p20977 +sg18783 +g27 +sa(dp20978 +g18779 +S'Syrena Swanson' +p20979 +sg18781 +S'Costume Accessories: Worn by T. Jefferson' +p20980 +sg18783 +g27 +sa(dp20981 +g18779 +S'Gladys Cook' +p20982 +sg18781 +S'Belt' +p20983 +sg18783 +g27 +sa(dp20984 +g18779 +S'Nancy Crimi' +p20985 +sg18781 +S'Belt' +p20986 +sg18783 +g27 +sa(dp20987 +g18779 +S'Paduan 15th Century' +p20988 +sg18787 +S'overall: 4.3 x 4.4 cm (1 11/16 x 1 3/4 in.) gross weight: 19 gr' +p20989 +sg18789 +S'\nbronze' +p20990 +sg18781 +S'The Entombment' +p20991 +sg18783 +g27 +sa(dp20992 +g18779 +S'Jean Peszel' +p20993 +sg18781 +S'Belt' +p20994 +sg18783 +g27 +sa(dp20995 +g18779 +S'Marius Hansen' +p20996 +sg18781 +S'Bootjack & Slipper-Holder' +p20997 +sg18783 +g27 +sa(dp20998 +g18779 +S'William McAuley' +p20999 +sg18781 +S'Bootjack' +p21000 +sg18783 +g27 +sa(dp21001 +g18779 +S'Marius Hansen' +p21002 +sg18781 +S'Bootjack' +p21003 +sg18783 +g27 +sa(dp21004 +g18779 +S'Artist Information (' +p21005 +sg18781 +S'Bootjack' +p21006 +sg18783 +g27 +sa(dp21007 +g18779 +S'Robert W.R. Taylor' +p21008 +sg18781 +S'Bootjack' +p21009 +sg18783 +g27 +sa(dp21010 +g18779 +S'William McAuley' +p21011 +sg18781 +S'Bootjack' +p21012 +sg18783 +g27 +sa(dp21013 +g18779 +S'Marius Hansen' +p21014 +sg18781 +S'Bootjack' +p21015 +sg18783 +g27 +sa(dp21016 +g18779 +S'Marius Hansen' +p21017 +sg18781 +S'Bootjack' +p21018 +sg18783 +g27 +sa(dp21019 +g18779 +S'Gordon Saltar' +p21020 +sg18781 +S'Bootjack' +p21021 +sg18783 +g27 +sa(dp21022 +g18779 +S'Artist Information (' +p21023 +sg18787 +S'Italian, c. 1386 - 1466' +p21024 +sg18789 +S'(related artist)' +p21025 +sg18781 +S'Madonna and Child between Two Candelabra' +p21026 +sg18783 +g27 +sa(dp21027 +g18779 +S'Ralph Morton' +p21028 +sg18781 +S'Bootjack' +p21029 +sg18783 +g27 +sa(dp21030 +g18779 +S'Amos C. Brinton' +p21031 +sg18781 +S'Bootjack' +p21032 +sg18783 +g27 +sa(dp21033 +g18779 +S'John Price' +p21034 +sg18781 +S'Bootjack' +p21035 +sg18783 +g27 +sa(dp21036 +g18779 +S'Wellington Blewett' +p21037 +sg18781 +S'Bootjack' +p21038 +sg18783 +g27 +sa(dp21039 +g18779 +S'Albert Rudin' +p21040 +sg18781 +S'Bootjack' +p21041 +sg18783 +g27 +sa(dp21042 +g18779 +S'Claude Marshall' +p21043 +sg18781 +S'Bootjack' +p21044 +sg18783 +g27 +sa(dp21045 +g18779 +S'Claude Marshall' +p21046 +sg18781 +S'Bootjack' +p21047 +sg18783 +g27 +sa(dp21048 +g18779 +S'LeRoy Griffith' +p21049 +sg18781 +S'Bootjack' +p21050 +sg18783 +g27 +sa(dp21051 +g18779 +S'Doris Hollingsworth' +p21052 +sg18781 +S'Bootjack' +p21053 +sg18783 +g27 +sa(dp21054 +g18779 +S'F.C. Davenport' +p21055 +sg18781 +S'Bootjack' +p21056 +sg18783 +g27 +sa(dp21057 +g18779 +S'Artist Information (' +p21058 +sg18787 +S'Italian, c. 1386 - 1466' +p21059 +sg18789 +S'(artist after)' +p21060 +sg18781 +S'Madonna and Child before a Niche' +p21061 +sg18783 +g27 +sa(dp21062 +g18779 +S'Elmer Weise' +p21063 +sg18781 +S'Bootjack' +p21064 +sg18783 +g27 +sa(dp21065 +g18779 +S'George File' +p21066 +sg18781 +S'Bootjack' +p21067 +sg18783 +g27 +sa(dp21068 +g18779 +S'Rex F. Bush' +p21069 +sg18781 +S'Bootjack' +p21070 +sg18783 +g27 +sa(dp21071 +g18779 +S'Chris Makrenos' +p21072 +sg18781 +S'Bootjack' +p21073 +sg18783 +g27 +sa(dp21074 +g18779 +S'Hardin Walsh' +p21075 +sg18781 +S'Bootjack' +p21076 +sg18783 +g27 +sa(dp21077 +g18779 +S'Dolores Haupt' +p21078 +sg18781 +S'Bootjack' +p21079 +sg18783 +g27 +sa(dp21080 +g18779 +S'Richard Taylor' +p21081 +sg18781 +S'Bootjack with Needlepoint Top' +p21082 +sg18783 +g27 +sa(dp21083 +g18779 +S'Walter G. Capuozzo' +p21084 +sg18781 +S'Bootjack' +p21085 +sg18783 +g27 +sa(dp21086 +g18779 +S'Howard Lumbard' +p21087 +sg18781 +S'Bootjack' +p21088 +sg18783 +g27 +sa(dp21089 +g18779 +S'Isabelle De Strange' +p21090 +sg18781 +S'Bootjack' +p21091 +sg18783 +g27 +sa(dp21092 +g18779 +S'Paduan 15th Century' +p21093 +sg18787 +S'Overall (with suspension ring): 10.4 x 8.2 cm (4 1/16 x 3 3/16 in.)\r\noverall (height without suspension ring): 9.3 cm (3 5/8 in.) gross weight: 194 gr' +p21094 +sg18789 +S'\nbronze' +p21095 +sg18781 +S'Madonna and Child between Two Candelabra' +p21096 +sg18783 +g27 +sa(dp21097 +g18779 +S'Filippo Porreca' +p21098 +sg18781 +S'Bootjack' +p21099 +sg18783 +g27 +sa(dp21100 +g18779 +S'Herman Bader' +p21101 +sg18781 +S'Bootjack' +p21102 +sg18783 +g27 +sa(dp21103 +g18779 +S'Filippo Porreca' +p21104 +sg18781 +S'Bootjack' +p21105 +sg18783 +g27 +sa(dp21106 +g18779 +S'Salvatore Borrazzo' +p21107 +sg18781 +S'Bootjack' +p21108 +sg18783 +g27 +sa(dp21109 +g18779 +S'Salvatore Borrazzo' +p21110 +sg18781 +S'Bootjack' +p21111 +sg18783 +g27 +sa(dp21112 +g18779 +S'Filippo Porreca' +p21113 +sg18781 +S'Bootjack' +p21114 +sg18783 +g27 +sa(dp21115 +g18779 +S'Gordon Sanborn' +p21116 +sg18781 +S'Bootjack' +p21117 +sg18783 +g27 +sa(dp21118 +g18779 +S'Gordon Sanborn' +p21119 +sg18781 +S'Bootjack' +p21120 +sg18783 +g27 +sa(dp21121 +g18779 +S'Helen Hobart' +p21122 +sg18781 +S'Bootjack' +p21123 +sg18783 +g27 +sa(dp21124 +g18779 +S'Austin L. Davison' +p21125 +sg18781 +S'Bootjack' +p21126 +sg18783 +g27 +sa(dp21127 +g18781 +S'Madonna and Child with Angels' +p21128 +sg18779 +S'Paduan 15th Century' +p21129 +sg18787 +S'overall (with finial and suspension loop): 13.3 x 8.9 cm (5 1/4 x 3 1/2 in.)\r\noverall (inner field): 9.6 x 7.6 cm (3 3/4 x 3 in.)\r\noverall (height without suspension loop): 12.5 cm (4 15/16 in.)\r\noverall (height without finial and suspension loop): 10.8 cm (4 1/4 in.)\r\ngross weight: 227 gr (0.5 lb.)' +p21130 +sg18789 +S'\nbronze' +p21131 +sg18791 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f19.jpg' +p21132 +sg18783 +g27 +sa(dp21133 +g18779 +S'Henry Rasmusen' +p21134 +sg18781 +S'Brass Bootjack' +p21135 +sg18783 +g27 +sa(dp21136 +g18779 +S'Augustine Haugland' +p21137 +sg18781 +S'Bootjack' +p21138 +sg18783 +g27 +sa(dp21139 +g18779 +S'Albert Geuppert' +p21140 +sg18781 +S'Boot Form' +p21141 +sg18783 +g27 +sa(dp21142 +g18779 +S'Alexander Anderson' +p21143 +sg18781 +S'Bootjack' +p21144 +sg18783 +g27 +sa(dp21145 +g18779 +S'Lloyd A. Davidson' +p21146 +sg18781 +S'Bootjack' +p21147 +sg18783 +g27 +sa(dp21148 +g18779 +S'Gerald Bernhardt' +p21149 +sg18781 +S'Bootjack' +p21150 +sg18783 +g27 +sa(dp21151 +g18779 +S'Thomas Dooley' +p21152 +sg18781 +S'Bootjack' +p21153 +sg18783 +g27 +sa(dp21154 +g18779 +S'Albert Geuppert' +p21155 +sg18781 +S'Bootjack' +p21156 +sg18783 +g27 +sa(dp21157 +g18779 +S'Mary Fitzgerald' +p21158 +sg18781 +S'Buttons' +p21159 +sg18783 +g27 +sa(dp21160 +g18779 +S'Isidore Steinberg' +p21161 +sg18781 +S'Buttons' +p21162 +sg18783 +g27 +sa(dp21163 +g18779 +S'Andrea Briosco, called Riccio' +p21164 +sg18787 +S'bronze' +p21165 +sg18789 +S'c. 1500' +p21166 +sg18781 +S'Augustus and the Sibyl' +p21167 +sg18783 +g27 +sa(dp21168 +g18779 +S'Michael Fenga' +p21169 +sg18781 +S'Buttons' +p21170 +sg18783 +g27 +sa(dp21171 +g18779 +S'Gertrude Lemberg' +p21172 +sg18781 +S'Buttons' +p21173 +sg18783 +g27 +sa(dp21174 +g18779 +S'Gertrude Lemberg' +p21175 +sg18781 +S'Buttons' +p21176 +sg18783 +g27 +sa(dp21177 +g18779 +S'John H. Tercuzzi' +p21178 +sg18781 +S'Buttons' +p21179 +sg18783 +g27 +sa(dp21180 +g18779 +S'Isidore Steinberg' +p21181 +sg18781 +S'Buttons' +p21182 +sg18783 +g27 +sa(dp21183 +g18779 +S'John H. Tercuzzi' +p21184 +sg18781 +S'Buttons' +p21185 +sg18783 +g27 +sa(dp21186 +g18779 +S'Dorothy Dwin' +p21187 +sg18781 +S'Buttons' +p21188 +sg18783 +g27 +sa(dp21189 +g18779 +S'William McAuley' +p21190 +sg18781 +S'Walking Stick' +p21191 +sg18783 +g27 +sa(dp21192 +g18779 +S'William McAuley' +p21193 +sg18781 +S'Walking Stick' +p21194 +sg18783 +g27 +sa(dp21195 +g18779 +S'Artist Information (' +p21196 +sg18781 +S'Walking Stick' +p21197 +sg18783 +g27 +sa(dp21198 +g18779 +S'Andrea Briosco, called Riccio' +p21199 +sg18787 +S'bronze' +p21200 +sg18789 +S'unknown date\n' +p21201 +sg18781 +S'Combat at a City Gate' +p21202 +sg18783 +g27 +sa(dp21203 +g18779 +S'Kurt Melzer' +p21204 +sg18781 +S'Walking Sticks' +p21205 +sg18783 +g27 +sa(dp21206 +g18779 +S'Robert Clark' +p21207 +sg18781 +S'Cane Head or Handle' +p21208 +sg18783 +g27 +sa(dp21209 +g18779 +S'Francis Law Durand' +p21210 +sg18781 +S'Cane Head or Handle' +p21211 +sg18783 +g27 +sa(dp21212 +g18779 +S'Francis Law Durand' +p21213 +sg18781 +S'Quilt Patches' +p21214 +sg18783 +g27 +sa(dp21215 +g18779 +S'Gladys Cook' +p21216 +sg18781 +S'Cane' +p21217 +sg18783 +g27 +sa(dp21218 +g18779 +S'Frank J. Mace' +p21219 +sg18781 +S'Cowhorn Cane' +p21220 +sg18783 +g27 +sa(dp21221 +g18779 +S'Robert W.R. Taylor' +p21222 +sg18781 +S'Card Tray' +p21223 +sg18783 +g27 +sa(dp21224 +g18779 +S'Edward W. Buechner' +p21225 +sg18781 +S'Nubian with Cotton Basket Card Tray' +p21226 +sg18783 +g27 +sa(dp21227 +g18779 +S'Ella Josephine Sterling' +p21228 +sg18781 +S'Card Purse' +p21229 +sg18783 +g27 +sa(dp21230 +g18779 +S'Melita Hofmann' +p21231 +sg18781 +S'Card Case' +p21232 +sg18783 +g27 +sa(dp21233 +g18779 +S'Andrea Briosco, called Riccio' +p21234 +sg18787 +S'bronze' +p21235 +sg18789 +S'unknown date\n' +p21236 +sg18781 +S'The Entombment' +p21237 +sg18783 +g27 +sa(dp21238 +g18779 +S'Helen Hobart' +p21239 +sg18781 +S'Visiting Card Tray' +p21240 +sg18783 +g27 +sa(dp21241 +g18779 +S'Mildred Ford' +p21242 +sg18781 +S'Visiting Card Tray' +p21243 +sg18783 +g27 +sa(dp21244 +g18779 +S'Daniel Marshack' +p21245 +sg18781 +S'Card Case' +p21246 +sg18783 +g27 +sa(dp21247 +g18779 +S'Daniel Marshack' +p21248 +sg18781 +S'Card Case' +p21249 +sg18783 +g27 +sa(dp21250 +g18779 +S'James Jones' +p21251 +sg18781 +S'Mision San Diego de Alcala' +p21252 +sg18783 +g27 +sa(dp21253 +g18779 +S'Frank J. Mace' +p21254 +sg18781 +S'Collar & Cuff Box' +p21255 +sg18783 +g27 +sa(dp21256 +g18779 +S'Tulita Westfall' +p21257 +sg18781 +S'Feather Fan' +p21258 +sg18783 +g27 +sa(dp21259 +g18779 +S'Ann Gene Buckley' +p21260 +sg18781 +S'Fan' +p21261 +sg18783 +g27 +sa(dp21262 +g18779 +S'Ella Josephine Sterling' +p21263 +sg18781 +S'Fan' +p21264 +sg18783 +g27 +sa(dp21265 +g18779 +S'Al Curry' +p21266 +sg18781 +S'Swinging Fan' +p21267 +sg18783 +g27 +sa(dp21268 +g18779 +S'Andrea Briosco, called Riccio' +p21269 +sg18787 +S'bronze' +p21270 +sg18789 +S'unknown date\n' +p21271 +sg18781 +S'The Entombment of Christ' +p21272 +sg18783 +g27 +sa(dp21273 +g18779 +S'Bessie Forman' +p21274 +sg18781 +S'Fan' +p21275 +sg18783 +g27 +sa(dp21276 +g18779 +S'Jean Peszel' +p21277 +sg18781 +S'Fan' +p21278 +sg18783 +g27 +sa(dp21279 +g18779 +S'Vincent Burzy' +p21280 +sg18781 +S'Fan' +p21281 +sg18783 +g27 +sa(dp21282 +g18779 +S'Jessie M. Benge' +p21283 +sg18781 +S'Fan' +p21284 +sg18783 +g27 +sa(dp21285 +g18779 +S'Rosalia Lane' +p21286 +sg18781 +S'Fan' +p21287 +sg18783 +g27 +sa(dp21288 +g18779 +S'Frank J. Mace' +p21289 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a0000334.jpg' +p21290 +sg18781 +S'Fan' +p21291 +sg18783 +S"The folding fan was probably invented in Japan in the seventh century. Examples \n of fans from the East were brought into Europe during the Crusades. Folding fans \n were common as costume accessories by the eighteenth century and were introduced \n to America as early as 1732. During the colonial period, Boston was a fan-making \n center.\n This fan from about 1860 is constructed of black wood supports decorated with \n red and gold flowers. The upper portion is a colored engraving of fashionable \n young women and men amusing themselves in the countryside.\n In addition to the beauty of this accessory, the way a fan was used indicated \n something of a woman's social grace. The English writer Joseph Addison, in his \n work \n " +p21292 +sa(dp21293 +g18779 +S'Edna C. Rex' +p21294 +sg18781 +S'Fan' +p21295 +sg18783 +g27 +sa(dp21296 +g18779 +S'Edna C. Rex' +p21297 +sg18781 +S'Fan' +p21298 +sg18783 +g27 +sa(dp21299 +g18779 +S'Edna C. Rex' +p21300 +sg18781 +S'Peacock Feather Fan' +p21301 +sg18783 +g27 +sa(dp21302 +g18779 +S'Syrena Swanson' +p21303 +sg18781 +S'Wedding Garter' +p21304 +sg18783 +g27 +sa(dp21305 +g18779 +S'Andrea Briosco, called Riccio' +p21306 +sg18787 +S'bronze' +p21307 +sg18789 +S'unknown date\n' +p21308 +sg18781 +S'Horseman and Foot-Soldier' +p21309 +sg18783 +g27 +sa(dp21310 +g18779 +S'Ella Josephine Sterling' +p21311 +sg18781 +S'Suspenders' +p21312 +sg18783 +g27 +sa(dp21313 +g18779 +S'Ella Josephine Sterling' +p21314 +sg18781 +S'Wedding Garters' +p21315 +sg18783 +g27 +sa(dp21316 +g18779 +S'Dolores Haupt' +p21317 +sg18781 +S'Suspender' +p21318 +sg18783 +g27 +sa(dp21319 +g18779 +S'Katherine Hastings' +p21320 +sg18781 +S"Boy's Suspenders" +p21321 +sg18783 +g27 +sa(dp21322 +g18779 +S'Ethel Dougan' +p21323 +sg18781 +S'Mittens' +p21324 +sg18783 +g27 +sa(dp21325 +g18779 +S'Syrena Swanson' +p21326 +sg18781 +S'Mitt' +p21327 +sg18783 +g27 +sa(dp21328 +g18779 +S'Ruth M. Barnes' +p21329 +sg18781 +S'Mitts' +p21330 +sg18783 +g27 +sa(dp21331 +g18779 +S'Ann Gene Buckley' +p21332 +sg18781 +S'Mitt' +p21333 +sg18783 +g27 +sa(dp21334 +g18779 +S'Archie Thompson' +p21335 +sg18781 +S'Mittens' +p21336 +sg18783 +g27 +sa(dp21337 +g18779 +S'Lillian Causey' +p21338 +sg18781 +S'Mitt' +p21339 +sg18783 +g27 +sa(dp21340 +g18779 +S'Andrea Briosco, called Riccio' +p21341 +sg18787 +S'bronze' +p21342 +sg18789 +S'unknown date\n' +p21343 +sg18781 +S'The Sacrifice of a Swine' +p21344 +sg18783 +g27 +sa(dp21345 +g18779 +S'Marie Alain' +p21346 +sg18781 +S'Mitt' +p21347 +sg18783 +g27 +sa(dp21348 +g18779 +S'Marie Alain' +p21349 +sg18781 +S'Mitt' +p21350 +sg18783 +g27 +sa(dp21351 +g18779 +S'Carl Keksi' +p21352 +sg18781 +S'Mitten' +p21353 +sg18783 +g27 +sa(dp21354 +g18779 +S'Francis Law Durand' +p21355 +sg18781 +S'Mitts' +p21356 +sg18783 +g27 +sa(dp21357 +g18779 +S'Jessie M. Benge' +p21358 +sg18781 +S'Wedding Gloves' +p21359 +sg18783 +g27 +sa(dp21360 +g18779 +S'Gladys Cook' +p21361 +sg18781 +S'Wedding Gloves' +p21362 +sg18783 +g27 +sa(dp21363 +g18779 +S'Jessie M. Benge' +p21364 +sg18781 +S'Gloves' +p21365 +sg18783 +g27 +sa(dp21366 +g18779 +S'Frank J. Mace' +p21367 +sg18781 +S'Wristlet' +p21368 +sg18783 +g27 +sa(dp21369 +g18779 +S'Edna C. Rex' +p21370 +sg18781 +S'Mitt' +p21371 +sg18783 +g27 +sa(dp21372 +g18779 +S'American 20th Century' +p21373 +sg18781 +S'Purse' +p21374 +sg18783 +g27 +sa(dp21375 +g18779 +S'German 17th Century' +p21376 +sg18787 +S'overall: 11.1 x 5.6 cm (4 3/8 x 2 3/16 in.) gross weight: 38 gr' +p21377 +sg18789 +S'\nbronze' +p21378 +sg18781 +S'Model of an Escutcheon' +p21379 +sg18783 +g27 +sa(dp21380 +g18779 +S'Ellen Duncan' +p21381 +sg18781 +S'Wedding Coin Purse' +p21382 +sg18783 +g27 +sa(dp21383 +g18779 +S'Benjamin Bryant' +p21384 +sg18781 +S'Buckskin Purse' +p21385 +sg18783 +g27 +sa(dp21386 +g18779 +S'Edith Towner' +p21387 +sg18781 +S'Reticule' +p21388 +sg18783 +g27 +sa(dp21389 +g18779 +S'Josephine C. Romano' +p21390 +sg18781 +S'Handbag' +p21391 +sg18783 +g27 +sa(dp21392 +g18779 +S'Ann Gene Buckley' +p21393 +sg18781 +S'Reticule' +p21394 +sg18783 +g27 +sa(dp21395 +g18779 +S'Cornelius Christoffels' +p21396 +sg18781 +S'Purse' +p21397 +sg18783 +g27 +sa(dp21398 +g18779 +S'Cornelius Christoffels' +p21399 +sg18781 +S'Beaded Purse' +p21400 +sg18783 +g27 +sa(dp21401 +g18779 +S'Ann Gene Buckley' +p21402 +sg18781 +S'Purse' +p21403 +sg18783 +g27 +sa(dp21404 +g18779 +S'George E. Rhone' +p21405 +sg18781 +S'Beaded Bag' +p21406 +sg18783 +g27 +sa(dp21407 +g18779 +S'Ruth Buker' +p21408 +sg18781 +S'Purse' +p21409 +sg18783 +g27 +sa(dp21410 +g18779 +S'Venetian 15th Century' +p21411 +sg18787 +S'overall: 19.1 x 13.5 cm (7 1/2 x 5 5/16 in.) gross weight: 498 gr' +p21412 +sg18789 +S'\nbronze' +p21413 +sg18781 +S'Christ Appearing to the Apostles' +p21414 +sg18783 +g27 +sa(dp21415 +g18779 +S'Ann Gene Buckley' +p21416 +sg18781 +S'Reticule' +p21417 +sg18783 +g27 +sa(dp21418 +g18779 +S'Ruth M. Barnes' +p21419 +sg18781 +S'Slipper' +p21420 +sg18783 +g27 +sa(dp21421 +g18779 +S'William Kieckhofel' +p21422 +sg18781 +S'Beaded Bag' +p21423 +sg18783 +g27 +sa(dp21424 +g18779 +S'Syrena Swanson' +p21425 +sg18781 +S'Purse' +p21426 +sg18783 +g27 +sa(dp21427 +g18779 +S'Cornelius Christoffels' +p21428 +sg18781 +S'Purse' +p21429 +sg18783 +g27 +sa(dp21430 +g18779 +S'Margaret Linsley' +p21431 +sg18781 +S'Bag' +p21432 +sg18783 +g27 +sa(dp21433 +g18779 +S'Cornelius Christoffels' +p21434 +sg18781 +S'Bag' +p21435 +sg18783 +g27 +sa(dp21436 +g18779 +S'Cornelius Christoffels' +p21437 +sg18781 +S'Beaded Coin Purse' +p21438 +sg18783 +g27 +sa(dp21439 +g18779 +S'Ruth M. Barnes' +p21440 +sg18781 +S'Purse' +p21441 +sg18783 +g27 +sa(dp21442 +g18779 +S'Frank C. Barks' +p21443 +sg18781 +S'Bag' +p21444 +sg18783 +g27 +sa(dp21445 +g18779 +S'Artist Information (' +p21446 +sg18787 +S'(sculptor)' +p21447 +sg18789 +S'\n' +p21448 +sg18781 +S'The Entombment' +p21449 +sg18783 +g27 +sa(dp21450 +g18779 +S'Frank C. Barks' +p21451 +sg18781 +S'Bag' +p21452 +sg18783 +g27 +sa(dp21453 +g18779 +S'Hazel Sheckler' +p21454 +sg18781 +S'Cotton Bag' +p21455 +sg18783 +g27 +sa(dp21456 +g18779 +S'Cornelius Christoffels' +p21457 +sg18781 +S'Beaded Bag' +p21458 +sg18783 +g27 +sa(dp21459 +g18779 +S'Cornelius Christoffels' +p21460 +sg18781 +S'Beaded Bag' +p21461 +sg18783 +g27 +sa(dp21462 +g18779 +S'Cornelius Christoffels' +p21463 +sg18781 +S'Bag' +p21464 +sg18783 +g27 +sa(dp21465 +g18779 +S'Cornelius Christoffels' +p21466 +sg18781 +S'Bag' +p21467 +sg18783 +g27 +sa(dp21468 +g18779 +S'Marion Gaylord' +p21469 +sg18781 +S'Purse' +p21470 +sg18783 +g27 +sa(dp21471 +g18779 +S'Ralph Morton' +p21472 +sg18781 +S'Purse' +p21473 +sg18783 +g27 +sa(dp21474 +g18779 +S'Walter Pyle' +p21475 +sg18781 +S'Purse' +p21476 +sg18783 +g27 +sa(dp21477 +g18779 +S'Ralph Morton' +p21478 +sg18781 +S'Gold Purse' +p21479 +sg18783 +g27 +sa(dp21480 +g18779 +S'Italian 16th Century' +p21481 +sg18787 +S'Overall (without frame): 9.1 x 6.7 cm (3 9/16 x 2 5/8 in.)\r\naccessory size: 13.3 x 6.6 cm (5 1/4 x 2 5/8 in.) gross weight: 159 gr' +p21482 +sg18789 +S'\nsilver' +p21483 +sg18781 +S'Christ Appearing to the Apostles' +p21484 +sg18783 +g27 +sa(dp21485 +g18779 +S'Ralph Morton' +p21486 +sg18781 +S'Wallet' +p21487 +sg18783 +g27 +sa(dp21488 +g18779 +S'Mabel Ritter' +p21489 +sg18781 +S'Purse' +p21490 +sg18783 +g27 +sa(dp21491 +g18779 +S'Ella Josephine Sterling' +p21492 +sg18781 +S'Bag' +p21493 +sg18783 +g27 +sa(dp21494 +g18779 +S'Mabel Ritter' +p21495 +sg18781 +S'Purse' +p21496 +sg18783 +g27 +sa(dp21497 +g18779 +S'Mabel Ritter' +p21498 +sg18781 +S'Purse' +p21499 +sg18783 +g27 +sa(dp21500 +g18779 +S'Carmel Wilson' +p21501 +sg18791 +S'http://www.nga.gov:80/thumb-l/a000f8/a000f8fe.jpg' +p21502 +sg18781 +S'Beaded Silk Bag' +p21503 +sg18783 +g27 +sa(dp21504 +g18779 +S'Archie Thompson' +p21505 +sg18781 +S"John Hancock's Wallet" +p21506 +sg18783 +g27 +sa(dp21507 +g18779 +S'Louella Long' +p21508 +sg18781 +S'Handbag' +p21509 +sg18783 +g27 +sa(dp21510 +g18779 +S'John Thorsen' +p21511 +sg18781 +S'Bag' +p21512 +sg18783 +g27 +sa(dp21513 +g18779 +S'Norma Lockwood' +p21514 +sg18781 +S'Pocketbook' +p21515 +sg18783 +g27 +sa(dp21516 +g18779 +S'French 19th Century' +p21517 +sg18787 +S'copper alloy with glass insert' +p21518 +sg18789 +S'c. 1850' +p21519 +sg18781 +S'Inkwell in the Form of a Grotesque Head' +p21520 +sg18783 +g27 +sa(dp21521 +g18779 +S'Ray Price' +p21522 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a0000332.jpg' +p21523 +sg18781 +S'Beaded Handbag' +p21524 +sg18783 +S'This handbag was made about 1850 in New Orleans. It is crocheted in black cotton, \n beaded, and has cut steel and jet ball trimmings. The design and decorative detail \n reflect a general taste in costume and the decorative arts at this time, which \n was more exuberant and less constrained than taste of the previous decade.\n ' +p21525 +sa(dp21526 +g18779 +S'Ray Price' +p21527 +sg18781 +S'Coin Purse' +p21528 +sg18783 +g27 +sa(dp21529 +g18779 +S'Percival Jenner' +p21530 +sg18781 +S'Purse' +p21531 +sg18783 +g27 +sa(dp21532 +g18779 +S'Lillian Causey' +p21533 +sg18781 +S'Bag' +p21534 +sg18783 +g27 +sa(dp21535 +g18779 +S'William High' +p21536 +sg18781 +S'Bag' +p21537 +sg18783 +g27 +sa(dp21538 +g18779 +S'Lillian Causey' +p21539 +sg18781 +S'Bag' +p21540 +sg18783 +g27 +sa(dp21541 +g18779 +S'Marie Alain' +p21542 +sg18781 +S'Reticule' +p21543 +sg18783 +g27 +sa(dp21544 +g18779 +S'Stella Mosher' +p21545 +sg18781 +S'Beaded Purse' +p21546 +sg18783 +g27 +sa(dp21547 +g18779 +S'Harriette Gale' +p21548 +sg18781 +S'Bag' +p21549 +sg18783 +g27 +sa(dp21550 +g18779 +S'Carl Buergerniss' +p21551 +sg18781 +S'Coin Purse' +p21552 +sg18783 +g27 +sa(dp21553 +g18781 +S'Chalice of the Abbot Suger of Saint-Denis' +p21554 +sg18779 +S'French 12th Century' +p21555 +sg18787 +S'sardonyx cup with heavily gilded silver mounting, adorned with filigrees set with stones, pearls, glass insets, and opaque white glass pearls' +p21556 +sg18789 +S'2nd/1st century B.C. (cup); 1137-1140 (mounting)' +p21557 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000511.jpg' +p21558 +sg18783 +S"This chalice, a vessel to hold wine for Mass, is one of the most splendid treasures from the\n Middle Ages. Acquired by Abbot Suger for the French royal abbey of Saint-Denis, near Paris,\n the stone cup was set in gold and probably used in the consecration ceremony for the new altar\n chapels of the church on 11 June 1144.\n Suger, abbot of Saint-Denis from 1122 to 1151, was not only a Benedictine monk but also a\n brilliant administrator who served as regent of France during the Second Crusade. With objects\n such as this chalice and the abbey's new Gothic architecture, he aimed to create a vision of\n paradise on earth that would awe beholders. In his writings, Suger equated Divine Light with the\n real light shimmering through stained glass and glistening from gems.\n The cup incorporated in Abbot Suger's chalice was carved from sardonyx, probably in\n Alexandria, Egypt during the second to first centuries B.C. Suger's goldsmiths mounted the cup\n in a gold and silver setting with delicate gold-wire filigree and adorned it with gems. On the foot,\n a medallion depicts the haloed Christ, flanked by the Greek letters signifying: "I am the\n Alpha and Omega, the Beginning and the End."\n " +p21559 +sa(dp21560 +g18779 +S'James McLellan' +p21561 +sg18781 +S'Beaded Bag' +p21562 +sg18783 +g27 +sa(dp21563 +g18779 +S'James McLellan' +p21564 +sg18781 +S'Beaded Bag' +p21565 +sg18783 +g27 +sa(dp21566 +g18779 +S'Florian Rokita' +p21567 +sg18781 +S'Bag' +p21568 +sg18783 +g27 +sa(dp21569 +g18779 +S'Gene Luedke' +p21570 +sg18781 +S'Bag' +p21571 +sg18783 +g27 +sa(dp21572 +g18779 +S'Dolores Haupt' +p21573 +sg18781 +S'Silk-straw Reticule' +p21574 +sg18783 +g27 +sa(dp21575 +g18779 +S'Dolores Haupt' +p21576 +sg18781 +S'Beaded Bag' +p21577 +sg18783 +g27 +sa(dp21578 +g18779 +S'Albert Allen' +p21579 +sg18781 +S'Hand Bag' +p21580 +sg18783 +g27 +sa(dp21581 +g18779 +S'Adele Brooks' +p21582 +sg18781 +S'Carpet Bag' +p21583 +sg18783 +g27 +sa(dp21584 +g18779 +S'Dolores Haupt' +p21585 +sg18781 +S'Knit Beaded Bag' +p21586 +sg18783 +g27 +sa(dp21587 +g18779 +S'Gerard Barnett' +p21588 +sg18781 +S'Satchel' +p21589 +sg18783 +g27 +sa(dp21590 +g18781 +S'Reliquary Ch\xc3\xa2sse' +p21591 +sg18779 +S'French 12th Century' +p21592 +sg18787 +S'overall: 19.1 x 26.7 x 11.5 cm (7 1/2 x 10 1/2 x 4 1/2 in.)' +p21593 +sg18789 +S'\nchamplev? enamel on gilded copper with oak core' +p21594 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000512.jpg' +p21595 +sg18783 +g27 +sa(dp21596 +g18779 +S'Lucille Lacoursiere' +p21597 +sg18781 +S'Beaded Bag' +p21598 +sg18783 +g27 +sa(dp21599 +g18779 +S'Eleanor Alexander' +p21600 +sg18781 +S'Crewel Purse' +p21601 +sg18783 +g27 +sa(dp21602 +g18779 +S'Eleanor Alexander' +p21603 +sg18781 +S'Purse' +p21604 +sg18783 +g27 +sa(dp21605 +g18779 +S'Thomas Holloway' +p21606 +sg18781 +S'Wallet' +p21607 +sg18783 +g27 +sa(dp21608 +g18779 +S'Edith Magnette' +p21609 +sg18781 +S'Purse' +p21610 +sg18783 +g27 +sa(dp21611 +g18779 +S'Hugh Clarke' +p21612 +sg18781 +S'Wallet' +p21613 +sg18783 +g27 +sa(dp21614 +g18779 +S'Hugh Clarke' +p21615 +sg18781 +S'Silk Purse' +p21616 +sg18783 +g27 +sa(dp21617 +g18779 +S'Samuel O. Klein' +p21618 +sg18781 +S'Bag' +p21619 +sg18783 +g27 +sa(dp21620 +g18779 +S'Erwin Schwabe' +p21621 +sg18781 +S'Crocheted Handbag' +p21622 +sg18783 +g27 +sa(dp21623 +g18779 +S'Raymond Manupelli' +p21624 +sg18781 +S'Purse' +p21625 +sg18783 +g27 +sa(dp21626 +g18781 +S'Ciborium' +p21627 +sg18779 +S'Spanish 14th Century' +p21628 +sg18787 +S'overall (height): 36.1 cm (14 3/16 in.)\r\noverall (diameter of base): 17.7 cm (6 15/16 in.)\r\noverall (diameter of bowl): 12.1 cm (4 3/4 in.)' +p21629 +sg18789 +S'\ngilded copper and champlev? enamel' +p21630 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000523.jpg' +p21631 +sg18783 +g27 +sa(dp21632 +g18779 +S'Raymond Manupelli' +p21633 +sg18781 +S'Handbag' +p21634 +sg18783 +g27 +sa(dp21635 +g18779 +S'Vincent Murphy' +p21636 +sg18781 +S'Bag' +p21637 +sg18783 +g27 +sa(dp21638 +g18779 +S'Samuel O. Klein' +p21639 +sg18781 +S'Carpet Bag' +p21640 +sg18783 +g27 +sa(dp21641 +g18779 +S'Marion Gaskill' +p21642 +sg18781 +S'Beaded Bag' +p21643 +sg18783 +g27 +sa(dp21644 +g18779 +S'John Cutting' +p21645 +sg18781 +S'Wool Pocketbook' +p21646 +sg18783 +g27 +sa(dp21647 +g18779 +S'Carl Buergerniss' +p21648 +sg18781 +S'Handbag' +p21649 +sg18783 +g27 +sa(dp21650 +g18779 +S'Carl Buergerniss' +p21651 +sg18781 +S'Handbag' +p21652 +sg18783 +g27 +sa(dp21653 +g18779 +S'Florence Earl' +p21654 +sg18781 +S'Carpet Bag' +p21655 +sg18783 +g27 +sa(dp21656 +g18779 +S'Isidore Steinberg' +p21657 +sg18781 +S'Purse' +p21658 +sg18783 +g27 +sa(dp21659 +g18779 +S'John H. Tercuzzi' +p21660 +sg18781 +S'Opera Bag' +p21661 +sg18783 +g27 +sa(dp21662 +g18781 +S'Aquamanile in the Form of a Horseman' +p21663 +sg18779 +S'Artist Information (' +p21664 +sg18787 +g27 +sg18789 +S'(artist)' +p21665 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00004/a00004fb.jpg' +p21666 +sg18783 +g27 +sa(dp21667 +g18779 +S'Marie Famularo' +p21668 +sg18781 +S'Hat' +p21669 +sg18783 +g27 +sa(dp21670 +g18779 +S'Gladys Cook' +p21671 +sg18781 +S'Coin Purse' +p21672 +sg18783 +g27 +sa(dp21673 +g18779 +S'Jessie M. Benge' +p21674 +sg18781 +S'Beaded Purse' +p21675 +sg18783 +g27 +sa(dp21676 +g18779 +S'Gladys Cook' +p21677 +sg18781 +S"Child's Handbag" +p21678 +sg18783 +g27 +sa(dp21679 +g18779 +S'Gladys Cook' +p21680 +sg18781 +S'Coin Purse' +p21681 +sg18783 +g27 +sa(dp21682 +g18779 +S'Roberta Spicer' +p21683 +sg18781 +S'Money Bag' +p21684 +sg18783 +g27 +sa(dp21685 +g18779 +S'Rosalia Lane' +p21686 +sg18781 +S'Pocket Case or Reticule' +p21687 +sg18783 +g27 +sa(dp21688 +g18779 +S'Marie Mitchell' +p21689 +sg18781 +S'Carpet Bag' +p21690 +sg18783 +g27 +sa(dp21691 +g18779 +S'Ralph Atkinson' +p21692 +sg18781 +S'Beaded Bag' +p21693 +sg18783 +g27 +sa(dp21694 +g18779 +S'Ralph Atkinson' +p21695 +sg18781 +S'Purse' +p21696 +sg18783 +g27 +sa(dp21697 +g18781 +S'Aquamanile in the Form of a Lion' +p21698 +sg18779 +S'Artist Information (' +p21699 +sg18787 +g27 +sg18789 +S'(artist)' +p21700 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a000051f.jpg' +p21701 +sg18783 +g27 +sa(dp21702 +g18779 +S'Ralph Atkinson' +p21703 +sg18781 +S'Beaded Bag' +p21704 +sg18783 +g27 +sa(dp21705 +g18779 +S'Robert Stewart' +p21706 +sg18781 +S'Beaded Bag' +p21707 +sg18783 +g27 +sa(dp21708 +g18779 +S'Byron Dingman' +p21709 +sg18781 +S'Beaded Bag' +p21710 +sg18783 +g27 +sa(dp21711 +g18779 +S'Byron Dingman' +p21712 +sg18781 +S'Twin Beaded Bag' +p21713 +sg18783 +g27 +sa(dp21714 +g18779 +S'Flora G. Guerra' +p21715 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00055/a0005538.jpg' +p21716 +sg18781 +S'Money Bag' +p21717 +sg18783 +g27 +sa(dp21718 +g18779 +S'A.R. Tolman' +p21719 +sg18781 +S'Oregon Boot Satchel' +p21720 +sg18783 +g27 +sa(dp21721 +g18779 +S'Florence Truelson' +p21722 +sg18781 +S'Beaded Cushion' +p21723 +sg18783 +g27 +sa(dp21724 +g18779 +S'Edna C. Rex' +p21725 +sg18781 +S'Carpet Bag' +p21726 +sg18783 +g27 +sa(dp21727 +g18779 +S'Edna C. Rex' +p21728 +sg18781 +S'Reticule' +p21729 +sg18783 +g27 +sa(dp21730 +g18779 +S'Clementine Fossek' +p21731 +sg18781 +S'Carpet Bag' +p21732 +sg18783 +g27 +sa(dp21733 +g18781 +S'Crucifix' +p21734 +sg18779 +S'Artist Information (' +p21735 +sg18787 +g27 +sg18789 +S'(artist)' +p21736 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000521.jpg' +p21737 +sg18783 +g27 +sa(dp21738 +g18779 +S'Eugene Bartz' +p21739 +sg18781 +S'Bag' +p21740 +sg18783 +g27 +sa(dp21741 +g18779 +S'John Cooke' +p21742 +sg18781 +S'Reticule' +p21743 +sg18783 +g27 +sa(dp21744 +g18779 +S'Samuel Faigin' +p21745 +sg18781 +S'Carpet Bag' +p21746 +sg18783 +g27 +sa(dp21747 +g18779 +S'Hans Mangelsdorf' +p21748 +sg18781 +S'Tippet and Muff' +p21749 +sg18783 +g27 +sa(dp21750 +g18779 +S'Lillian Causey' +p21751 +sg18781 +S'Muff' +p21752 +sg18783 +g27 +sa(dp21753 +g18779 +S'John Swientochowski' +p21754 +sg18781 +S'Parasol' +p21755 +sg18783 +g27 +sa(dp21756 +g18779 +S'John Swientochowski' +p21757 +sg18781 +S'Parasol' +p21758 +sg18783 +g27 +sa(dp21759 +g18779 +S'Arelia Arbo' +p21760 +sg18781 +S'Carriage Sunshade' +p21761 +sg18783 +g27 +sa(dp21762 +g18779 +S'Joseph L. Boyd' +p21763 +sg18781 +S'Parasol' +p21764 +sg18783 +g27 +sa(dp21765 +g18779 +S'Marie Alain' +p21766 +sg18781 +S'Parasol' +p21767 +sg18783 +g27 +sa(dp21768 +g18779 +S'Artist Information (' +p21769 +sg18787 +g27 +sg18789 +S'(artist)' +p21770 +sg18781 +S'Saint Agnes' +p21771 +sg18783 +g27 +sa(dp21772 +g18779 +S'Peter Connin' +p21773 +sg18781 +S'Parasol' +p21774 +sg18783 +g27 +sa(dp21775 +g18779 +S'Carl Buergerniss' +p21776 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a0000333.jpg' +p21777 +sg18781 +S'Parasol' +p21778 +sg18783 +S"Parasols -- used for protection against the sun -- became stylish in Europe in \n the middle of the eighteenth century. In 1772, a Baltimore merchant's chance \n purchase from a ship's store introduced the parasol to America. Soon the fashion \n centers of Philadelphia and New York took an interset in this kind of accessory. \n By the nineteenth century, parasols were commonly used by women for carriage \n rides or for promenading.\n This silk parasol has an ivory handle and has black lace applied to sections \n of the covering. The style of lace indicates that the parasol is from the \n mid-nineteenth century.\n " +p21779 +sa(dp21780 +g18779 +S"J.J. O'Neill" +p21781 +sg18781 +S'Parasol' +p21782 +sg18783 +g27 +sa(dp21783 +g18779 +S'Marie Famularo' +p21784 +sg18781 +S'Parasol' +p21785 +sg18783 +g27 +sa(dp21786 +g18779 +S'Christabel Scrymser' +p21787 +sg18781 +S'Sunshade' +p21788 +sg18783 +g27 +sa(dp21789 +g18779 +S'Gladys Cook' +p21790 +sg18781 +S'Parasol' +p21791 +sg18783 +g27 +sa(dp21792 +g18779 +S'Melita Hofmann' +p21793 +sg18781 +S'Parasol' +p21794 +sg18783 +g27 +sa(dp21795 +g18779 +S'Virginia Berge' +p21796 +sg18781 +S'Parasol' +p21797 +sg18783 +g27 +sa(dp21798 +g18779 +S'Lee Hager' +p21799 +sg18781 +S'Sunshade' +p21800 +sg18783 +g27 +sa(dp21801 +g18779 +S'George Roehl' +p21802 +sg18781 +S'Parasol' +p21803 +sg18783 +g27 +sa(dp21804 +g18781 +S'Pyx in the Form of a Dove' +p21805 +sg18779 +S'French 13th Century' +p21806 +sg18787 +S'overall: 18.2 x 22.6 x 19.1 cm (7 3/16 x 8 7/8 x 7 1/2 in.)\r\noverall (height of turrets): 4.1 cm (1 5/8 in.)\r\noverall (diameter of base): 16.8 cm (6 5/8 in.)\r\noverall (diameter of disk): 8.2 cm (3 1/4 in.)\r\noverall (height of wall around base): 2.4 cm (15/16 in.)' +p21807 +sg18789 +S'\ngilded copper with enamel' +p21808 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a000051b.jpg' +p21809 +sg18783 +g27 +sa(dp21810 +g18779 +S'Gertrude Lemberg' +p21811 +sg18781 +S'Bonnet' +p21812 +sg18783 +g27 +sa(dp21813 +g18779 +S'Malcolm Hackney' +p21814 +sg18781 +S'Pipe' +p21815 +sg18783 +g27 +sa(dp21816 +g18779 +S'Mabel Ritter' +p21817 +sg18781 +S'Pipe' +p21818 +sg18783 +g27 +sa(dp21819 +g18779 +S'Manuel G. Runyan' +p21820 +sg18781 +S'Pipe' +p21821 +sg18783 +g27 +sa(dp21822 +g18779 +S'Manuel G. Runyan' +p21823 +sg18781 +S'Clay Pipe' +p21824 +sg18783 +g27 +sa(dp21825 +g18779 +S'Robert Clark' +p21826 +sg18781 +S'Pipe' +p21827 +sg18783 +g27 +sa(dp21828 +g18779 +S'Sydney Roberts' +p21829 +sg18781 +S'Pipe' +p21830 +sg18783 +g27 +sa(dp21831 +g18779 +S'Carl Keksi' +p21832 +sg18781 +S'Pipe Bowl' +p21833 +sg18783 +g27 +sa(dp21834 +g18779 +S'Carl Keksi' +p21835 +sg18781 +S'Pipe Bowl' +p21836 +sg18783 +g27 +sa(dp21837 +g18779 +S'Harold Weisenborn' +p21838 +sg18781 +S'Corn-cob Pipe' +p21839 +sg18783 +g27 +sa(dp21840 +g18779 +S'European 19th Century' +p21841 +sg18787 +S'ivory, wood case with bone and wood intarsia' +p21842 +sg18789 +S'c. 1800/1839' +p21843 +sg18781 +S'Diptych with Scenes from the Life of Christ' +p21844 +sg18783 +g27 +sa(dp21845 +g18779 +S'John Hall' +p21846 +sg18781 +S'Pipe' +p21847 +sg18783 +g27 +sa(dp21848 +g18779 +S'Maud Schmid' +p21849 +sg18781 +S'Pipe Stand' +p21850 +sg18783 +g27 +sa(dp21851 +g18779 +S'Lloyd Charles Lemcke' +p21852 +sg18781 +S'Pipe' +p21853 +sg18783 +g27 +sa(dp21854 +g18779 +S'Ann Gene Buckley' +p21855 +sg18781 +S'Colonial Pocket' +p21856 +sg18783 +g27 +sa(dp21857 +g18779 +S'Joseph Lubrano' +p21858 +sg18781 +S"Woman's Pocket" +p21859 +sg18783 +g27 +sa(dp21860 +g18779 +S'Sebastian Simonet' +p21861 +sg18781 +S'Corset Cover Sachet' +p21862 +sg18783 +g27 +sa(dp21863 +g18779 +S'Cora Parker' +p21864 +sg18781 +S'Spectacles' +p21865 +sg18783 +g27 +sa(dp21866 +g18779 +S'H. Langden Brown' +p21867 +sg18781 +S'Spectacles and Case' +p21868 +sg18783 +g27 +sa(dp21869 +g18779 +S'H. Langden Brown' +p21870 +sg18781 +S'Eye Shades' +p21871 +sg18783 +g27 +sa(dp21872 +g18779 +S'William High' +p21873 +sg18781 +S'Spectacles' +p21874 +sg18783 +g27 +sa(dp21875 +g18779 +S'Artist Information (' +p21876 +sg18787 +g27 +sg18789 +S'(carver)' +p21877 +sg18781 +S'Pax: The Annunciation' +p21878 +sg18783 +g27 +sa(dp21879 +g18779 +S'Charles Enjoian' +p21880 +sg18781 +S'Tortoise Shell Lorgnette' +p21881 +sg18783 +g27 +sa(dp21882 +g18779 +S'Herbert Marsh' +p21883 +sg18781 +S'Spectacles with Green Lenses' +p21884 +sg18783 +g27 +sa(dp21885 +g18779 +S'Frank Nelson' +p21886 +sg18781 +S'Spectacles' +p21887 +sg18783 +g27 +sa(dp21888 +g18779 +S'Donald Kirkpatrick' +p21889 +sg18781 +S'Spectacles' +p21890 +sg18783 +g27 +sa(dp21891 +g18779 +S'Isidore Steinberg' +p21892 +sg18781 +S'Lorgnette' +p21893 +sg18783 +g27 +sa(dp21894 +g18779 +S'Dorothy Dwin' +p21895 +sg18781 +S'Spectacles' +p21896 +sg18783 +g27 +sa(dp21897 +g18779 +S'George Roehl' +p21898 +sg18781 +S"Lumberman's First Aid Kit" +p21899 +sg18783 +g27 +sa(dp21900 +g18779 +S'Regina Henderer' +p21901 +sg18781 +S'Turn Key Tooth Extractor' +p21902 +sg18783 +g27 +sa(dp21903 +g18779 +S'Joseph Cannella' +p21904 +sg18781 +S'Tooth Puller' +p21905 +sg18783 +g27 +sa(dp21906 +g18779 +S'Regina Henderer' +p21907 +sg18781 +S'Lancet and Case' +p21908 +sg18783 +g27 +sa(dp21909 +g18781 +S'Morse with the Trinity' +p21910 +sg18779 +S'Artist Information (' +p21911 +sg18787 +g27 +sg18789 +S'(artist)' +p21912 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00004/a00004fd.jpg' +p21913 +sg18783 +g27 +sa(dp21914 +g18779 +S'Joseph Cannella' +p21915 +sg18781 +S'Spring Lancet' +p21916 +sg18783 +g27 +sa(dp21917 +g18779 +S'Alfred Walbeck' +p21918 +sg18781 +S'Pocket Manicure' +p21919 +sg18783 +g27 +sa(dp21920 +g18779 +S'Clarence Secor' +p21921 +sg18781 +S'Razor' +p21922 +sg18783 +g27 +sa(dp21923 +g18779 +S'Adele Brooks' +p21924 +sg18781 +S'Tooth Key (or Tooth Extractor)' +p21925 +sg18783 +g27 +sa(dp21926 +g18779 +S'John H. Tercuzzi' +p21927 +sg18781 +S'Toothpick' +p21928 +sg18783 +g27 +sa(dp21929 +g18779 +S'Frank Fumagalli' +p21930 +sg18781 +S'Toothpick' +p21931 +sg18783 +g27 +sa(dp21932 +g18779 +S'Gladys C. Parker' +p21933 +sg18781 +S'Shackles or Leg Irons' +p21934 +sg18783 +g27 +sa(dp21935 +g18779 +S'Robert W.R. Taylor' +p21936 +sg18781 +S'Convict Boot' +p21937 +sg18783 +g27 +sa(dp21938 +g18779 +S'Cornelius Frazier' +p21939 +sg18781 +S'Handcuffs with One Key' +p21940 +sg18783 +g27 +sa(dp21941 +g18779 +S'Stanley Mazur' +p21942 +sg18781 +S'Slave Handcuffs' +p21943 +sg18783 +g27 +sa(dp21944 +g18779 +S'Master of the Triptych of Louis XII' +p21945 +sg18787 +S'enamel on copper' +p21946 +sg18789 +S'early 16th century' +p21947 +sg18781 +S'Triptych: Piet\xc3\xa0' +p21948 +sg18783 +g27 +sa(dp21949 +g18779 +S'Al Curry' +p21950 +sg18781 +S'Slave Collar' +p21951 +sg18783 +g27 +sa(dp21952 +g18779 +S'Al Curry' +p21953 +sg18781 +S'Handcuffs' +p21954 +sg18783 +g27 +sa(dp21955 +g18779 +S'Vera Van Voris' +p21956 +sg18781 +S'Brooch and Earrings' +p21957 +sg18783 +g27 +sa(dp21958 +g18779 +S'Tulita Westfall' +p21959 +sg18781 +S'Earrings and Brooch' +p21960 +sg18783 +g27 +sa(dp21961 +g18779 +S'Bertha Semple' +p21962 +sg18781 +S'Pin and Earring Set' +p21963 +sg18783 +g27 +sa(dp21964 +g18779 +S'Kurt Melzer' +p21965 +sg18781 +S'Brooch and Earrings' +p21966 +sg18783 +g27 +sa(dp21967 +g18779 +S'Stanley Mazur' +p21968 +sg18781 +S'Brooch and Earrings' +p21969 +sg18783 +g27 +sa(dp21970 +g18779 +S'John Thorsen' +p21971 +sg18781 +S'Brooch and Earrings' +p21972 +sg18783 +g27 +sa(dp21973 +g18779 +S'William High' +p21974 +sg18781 +S'Horsehair Jewelry' +p21975 +sg18783 +g27 +sa(dp21976 +g18779 +S'G.A. Ayers' +p21977 +sg18781 +S'Brooch and Earrings' +p21978 +sg18783 +g27 +sa(dp21979 +g18781 +S'Plaque with the Last Supper' +p21980 +sg18779 +S'Jean I Penicaud' +p21981 +sg18787 +S', c. 1530' +p21982 +sg18789 +S'\n' +p21983 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000520.jpg' +p21984 +sg18783 +g27 +sa(dp21985 +g18779 +S'Florence Stevenson' +p21986 +sg18781 +S'Hair Bracelet, Earrings, and Brooch' +p21987 +sg18783 +g27 +sa(dp21988 +g18779 +S'Charles Enjoian' +p21989 +sg18781 +S'Earrings and Pendant' +p21990 +sg18783 +g27 +sa(dp21991 +g18779 +S'William P. Shearwood' +p21992 +sg18781 +S'Hair Brooch and Ring' +p21993 +sg18783 +g27 +sa(dp21994 +g18779 +S'Sylvia De Zon' +p21995 +sg18781 +S'Chatelaine' +p21996 +sg18783 +g27 +sa(dp21997 +g18779 +S'John H. Tercuzzi' +p21998 +sg18781 +S'Brooch and Earrings' +p21999 +sg18783 +g27 +sa(dp22000 +g18779 +S'Dorothy Posten' +p22001 +sg18781 +S'Cameo Pin and Ring' +p22002 +sg18783 +g27 +sa(dp22003 +g18779 +S'Samuel O. Klein' +p22004 +sg18781 +S'Bouquet Holder' +p22005 +sg18783 +g27 +sa(dp22006 +g18779 +S'Doris Beer' +p22007 +sg18781 +S'Bouquet Holder' +p22008 +sg18783 +g27 +sa(dp22009 +g18779 +S'Tulita Westfall' +p22010 +sg18781 +S'Bracelets' +p22011 +sg18783 +g27 +sa(dp22012 +g18779 +S'Bertha Semple' +p22013 +sg18781 +S'Bracelets' +p22014 +sg18783 +g27 +sa(dp22015 +g18781 +S'Oval Dish with the Birth of Adonis' +p22016 +sg18779 +S'Artist Information (' +p22017 +sg18787 +S'French, active 1553 - active c. 1585' +p22018 +sg18789 +S'(related artist)' +p22019 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000518.jpg' +p22020 +sg18783 +g27 +sa(dp22021 +g18779 +S'Gordena Jackson' +p22022 +sg18781 +S'Bracelet' +p22023 +sg18783 +g27 +sa(dp22024 +g18779 +S'Tulita Westfall' +p22025 +sg18781 +S'Bracelet' +p22026 +sg18783 +g27 +sa(dp22027 +g18779 +S'Tulita Westfall' +p22028 +sg18781 +S'Onyx Bracelet' +p22029 +sg18783 +g27 +sa(dp22030 +g18779 +S'Irene M. Burge' +p22031 +sg18781 +S'Woven Hair Bracelet' +p22032 +sg18783 +g27 +sa(dp22033 +g18779 +S'William High' +p22034 +sg18781 +S'Bracelet' +p22035 +sg18783 +g27 +sa(dp22036 +g18779 +S'Marion Gaskill' +p22037 +sg18781 +S'Bracelet' +p22038 +sg18783 +g27 +sa(dp22039 +g18779 +S'William P. Shearwood' +p22040 +sg18781 +S'Hair Brooch and Bracelet' +p22041 +sg18783 +g27 +sa(dp22042 +g18779 +S'William P. Shearwood' +p22043 +sg18781 +S'Bracelets' +p22044 +sg18783 +g27 +sa(dp22045 +g18779 +S'Walter G. Capuozzo' +p22046 +sg18781 +S'Bracelet' +p22047 +sg18783 +g27 +sa(dp22048 +g18779 +S'William P. Shearwood' +p22049 +sg18781 +S'Bracelet' +p22050 +sg18783 +g27 +sa(dp22051 +g18781 +S'Oval Dish with the Whore of Babylon' +p22052 +sg18779 +S'Martial Courteys' +p22053 +sg18787 +S'enamel painted on copper' +p22054 +sg18789 +S'c. 1570' +p22055 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a000050f.jpg' +p22056 +sg18783 +g27 +sa(dp22057 +g18779 +S'Frank Fumagalli' +p22058 +sg18781 +S'Bracelet' +p22059 +sg18783 +g27 +sa(dp22060 +g18779 +S'John H. Tercuzzi' +p22061 +sg18781 +S'Bracelet' +p22062 +sg18783 +g27 +sa(dp22063 +g18779 +S'James Jones' +p22064 +sg18781 +S'Mision Santa Clara' +p22065 +sg18783 +g27 +sa(dp22066 +g18779 +S'Edna C. Rex' +p22067 +sg18781 +S'Bracelet' +p22068 +sg18783 +g27 +sa(dp22069 +g18779 +S'Tulita Westfall' +p22070 +sg18781 +S'Brooch' +p22071 +sg18783 +g27 +sa(dp22072 +g18779 +S'Ellen Duncan' +p22073 +sg18781 +S'Brooch' +p22074 +sg18783 +g27 +sa(dp22075 +g18779 +S'Bertha Semple' +p22076 +sg18781 +S'Brooch' +p22077 +sg18783 +g27 +sa(dp22078 +g18779 +S'Bertha Semple' +p22079 +sg18781 +S'Brooch' +p22080 +sg18783 +g27 +sa(dp22081 +g18779 +S'Bertha Semple' +p22082 +sg18781 +S'Brooch' +p22083 +sg18783 +g27 +sa(dp22084 +g18779 +S'Syrena Swanson' +p22085 +sg18781 +S'Hair Brooch' +p22086 +sg18783 +g27 +sa(dp22087 +g18781 +S'Portrait of a Huguenot' +p22088 +sg18779 +S'Leonard Limousin' +p22089 +sg18787 +S'enamel painted on copper' +p22090 +sg18789 +S'1540' +p22091 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a000051c.jpg' +p22092 +sg18783 +g27 +sa(dp22093 +g18779 +S'David P Willoughby' +p22094 +sg18781 +S'Brooch' +p22095 +sg18783 +g27 +sa(dp22096 +g18779 +S'Emma Wilson' +p22097 +sg18781 +S'Brooch' +p22098 +sg18783 +g27 +sa(dp22099 +g18779 +S'Kurt Melzer' +p22100 +sg18781 +S'Brooch' +p22101 +sg18783 +g27 +sa(dp22102 +g18779 +S'Kurt Melzer' +p22103 +sg18781 +S'Brooch' +p22104 +sg18783 +g27 +sa(dp22105 +g18779 +S'Kurt Melzer' +p22106 +sg18781 +S'Brooch' +p22107 +sg18783 +g27 +sa(dp22108 +g18779 +S'Madeline Arnold' +p22109 +sg18781 +S'Brooch' +p22110 +sg18783 +g27 +sa(dp22111 +g18779 +S'Madeline Arnold' +p22112 +sg18781 +S'Brooch' +p22113 +sg18783 +g27 +sa(dp22114 +g18779 +S'Francis Jennings' +p22115 +sg18781 +S'Brooch' +p22116 +sg18783 +g27 +sa(dp22117 +g18779 +S'Frederick Jackson' +p22118 +sg18781 +S'Cameo Brooch' +p22119 +sg18783 +g27 +sa(dp22120 +g18779 +S'Hugh Clarke' +p22121 +sg18781 +S'Brooch' +p22122 +sg18783 +g27 +sa(dp22123 +g18781 +S'Round Dish with the Wedding Feast of Cupid and Psyche' +p22124 +sg18779 +S'Leonard Limousin' +p22125 +sg18787 +S'enamel painted in grisaille on copper' +p22126 +sg18789 +S'c. 1562' +p22127 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000500.jpg' +p22128 +sg18783 +g27 +sa(dp22129 +g18779 +S'Florence Stevenson' +p22130 +sg18781 +S'Brooch' +p22131 +sg18783 +g27 +sa(dp22132 +g18779 +S'James Jones' +p22133 +sg18781 +S'Mision Santa Clara' +p22134 +sg18783 +g27 +sa(dp22135 +g18779 +S'Grace Halpin' +p22136 +sg18781 +S'Brooch' +p22137 +sg18783 +g27 +sa(dp22138 +g18779 +S'Grace Halpin' +p22139 +sg18781 +S'Cameo Brooch' +p22140 +sg18783 +g27 +sa(dp22141 +g18779 +S'Marion Gaskill' +p22142 +sg18781 +S'Brooch' +p22143 +sg18783 +g27 +sa(dp22144 +g18779 +S'Peter Connin' +p22145 +sg18781 +S'Brooch' +p22146 +sg18783 +g27 +sa(dp22147 +g18779 +S'Florence Stevenson' +p22148 +sg18781 +S'Brooch' +p22149 +sg18783 +g27 +sa(dp22150 +g18779 +S'William P. Shearwood' +p22151 +sg18781 +S'Brooch' +p22152 +sg18783 +g27 +sa(dp22153 +g18779 +S'William P. Shearwood' +p22154 +sg18781 +S'Brooch' +p22155 +sg18783 +g27 +sa(dp22156 +g18779 +S'William P. Shearwood' +p22157 +sg18781 +S'Brooch' +p22158 +sg18783 +g27 +sa(dp22159 +g18779 +S'Artist Information (' +p22160 +sg18787 +S'(artist)' +p22161 +sg18789 +S'\n' +p22162 +sg18781 +S'Altar Cross' +p22163 +sg18783 +g27 +sa(dp22164 +g18779 +S'William P. Shearwood' +p22165 +sg18781 +S'Brooch and Bracelet with Portrait' +p22166 +sg18783 +g27 +sa(dp22167 +g18779 +S'John Garay' +p22168 +sg18781 +S'Pin' +p22169 +sg18783 +g27 +sa(dp22170 +g18779 +S'John H. Tercuzzi' +p22171 +sg18781 +S'Brooch' +p22172 +sg18783 +g27 +sa(dp22173 +g18779 +S'John H. Tercuzzi' +p22174 +sg18781 +S'Brooch' +p22175 +sg18783 +g27 +sa(dp22176 +g18779 +S'John H. Tercuzzi' +p22177 +sg18781 +S'Brooch' +p22178 +sg18783 +g27 +sa(dp22179 +g18779 +S'John H. Tercuzzi' +p22180 +sg18781 +S'Brooch' +p22181 +sg18783 +g27 +sa(dp22182 +g18779 +S'John H. Tercuzzi' +p22183 +sg18781 +S'Brooch' +p22184 +sg18783 +g27 +sa(dp22185 +g18779 +S'Sylvia De Zon' +p22186 +sg18781 +S'Brooch' +p22187 +sg18783 +g27 +sa(dp22188 +g18779 +S'Irene Lawson' +p22189 +sg18781 +S'Brooch' +p22190 +sg18783 +g27 +sa(dp22191 +g18779 +S'John H. Tercuzzi' +p22192 +sg18781 +S'Brooch' +p22193 +sg18783 +g27 +sa(dp22194 +g18781 +S'Reliquary Cross' +p22195 +sg18779 +S'Spanish 16th Century' +p22196 +sg18787 +S'overall (across arms): 27 x 11.6 cm (10 5/8 x 4 9/16 in.)\r\noverall (oval base): 13.4 x 10.7 cm (5 1/4 x 4 3/16 in.)' +p22197 +sg18789 +S'\nenameled gold, rock crystal, diamonds, emerald, rubies, glass pearls' +p22198 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00068/a0006816.jpg' +p22199 +sg18783 +g27 +sa(dp22200 +g18779 +S'Doris Beer' +p22201 +sg18781 +S'Cameo Brooch' +p22202 +sg18783 +g27 +sa(dp22203 +g18779 +S'Isidore Steinberg' +p22204 +sg18781 +S'Brooch' +p22205 +sg18783 +g27 +sa(dp22206 +g18779 +S'Isidore Steinberg' +p22207 +sg18781 +S'Brooch' +p22208 +sg18783 +g27 +sa(dp22209 +g18779 +S'Isidore Steinberg' +p22210 +sg18781 +S'Brooch' +p22211 +sg18783 +g27 +sa(dp22212 +g18779 +S'Dorothy Dwin' +p22213 +sg18781 +S'Brooch' +p22214 +sg18783 +g27 +sa(dp22215 +g18779 +S'Edward White' +p22216 +sg18781 +S'Brooch' +p22217 +sg18783 +g27 +sa(dp22218 +g18779 +S'Robert Stewart' +p22219 +sg18781 +S'Brooch' +p22220 +sg18783 +g27 +sa(dp22221 +g18779 +S'Evelyn Bailey' +p22222 +sg18781 +S'Buckle' +p22223 +sg18783 +g27 +sa(dp22224 +g18779 +S'Bertha Semple' +p22225 +sg18781 +S'Dress Buckle' +p22226 +sg18783 +g27 +sa(dp22227 +g18779 +S'Lyman Young' +p22228 +sg18781 +S'Belt Buckle' +p22229 +sg18783 +g27 +sa(dp22230 +g18779 +S'Artist Information (' +p22231 +sg18787 +g27 +sg18789 +S'(artist)' +p22232 +sg18781 +S'Covered Cup with Shield of Arms of the Countess of Gleichen' +p22233 +sg18783 +g27 +sa(dp22234 +g18779 +S'James M. Lawson' +p22235 +sg18781 +S'Knee Buckles' +p22236 +sg18783 +g27 +sa(dp22237 +g18779 +S'Claude Marshall' +p22238 +sg18781 +S'Buckles' +p22239 +sg18783 +g27 +sa(dp22240 +g18779 +S'Emil Warns' +p22241 +sg18781 +S'Skirt Hook' +p22242 +sg18783 +g27 +sa(dp22243 +g18779 +S'Donald Streeter' +p22244 +sg18781 +S'Knee Buckle' +p22245 +sg18783 +g27 +sa(dp22246 +g18779 +S'Thomas Holloway' +p22247 +sg18781 +S'Steel Buckle' +p22248 +sg18783 +g27 +sa(dp22249 +g18779 +S'Mary Fitzgerald' +p22250 +sg18781 +S'Slides and Buckles' +p22251 +sg18783 +g27 +sa(dp22252 +g18779 +S'Kalamian Walton' +p22253 +sg18781 +S'Neck Buckle' +p22254 +sg18783 +g27 +sa(dp22255 +g18779 +S'Sylvia De Zon' +p22256 +sg18781 +S'Shoe Buckle' +p22257 +sg18783 +g27 +sa(dp22258 +g18779 +S'John Dieterich' +p22259 +sg18781 +S'Shoe Buckles' +p22260 +sg18783 +g27 +sa(dp22261 +g18779 +S'John Dieterich' +p22262 +sg18781 +S'Shoe Buckle' +p22263 +sg18783 +g27 +sa(dp22264 +g18781 +S'Covered Cup with Serpent Handle' +p22265 +sg18779 +S'Artist Information (' +p22266 +sg18787 +g27 +sg18789 +S'(artist)' +p22267 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00054/a0005425.jpg' +p22268 +sg18783 +g27 +sa(dp22269 +g18779 +S'John Dieterich' +p22270 +sg18781 +S'Shoe Buckles' +p22271 +sg18783 +g27 +sa(dp22272 +g18779 +S'John Dieterich' +p22273 +sg18781 +S'Buckles' +p22274 +sg18783 +g27 +sa(dp22275 +g18779 +S'Kalamian Walton' +p22276 +sg18781 +S"Lady's Shoe Buckle" +p22277 +sg18783 +g27 +sa(dp22278 +g18779 +S'Tulita Westfall' +p22279 +sg18781 +S'Comb' +p22280 +sg18783 +g27 +sa(dp22281 +g18779 +S'Harry Jennings' +p22282 +sg18781 +S'Comb' +p22283 +sg18783 +g27 +sa(dp22284 +g18779 +S'Charles Rose' +p22285 +sg18781 +S'Hair Ornament' +p22286 +sg18783 +g27 +sa(dp22287 +g18779 +S'Cora Parker' +p22288 +sg18781 +S'Comb' +p22289 +sg18783 +g27 +sa(dp22290 +g18779 +S'Manuel G. Runyan' +p22291 +sg18781 +S'Comb' +p22292 +sg18783 +g27 +sa(dp22293 +g18779 +S'O.A. Kirby' +p22294 +sg18781 +S'Hair Brooch' +p22295 +sg18783 +g27 +sa(dp22296 +g18779 +S'Douglas Campbell' +p22297 +sg18781 +S'Hair Jewelry' +p22298 +sg18783 +g27 +sa(dp22299 +g18779 +S'Artist Information (' +p22300 +sg18787 +g27 +sg18789 +S'(artist)' +p22301 +sg18781 +S'Vessel in the Form of a Dragon' +p22302 +sg18783 +g27 +sa(dp22303 +g18779 +S'Douglas Campbell' +p22304 +sg18781 +S'Hair Ornament' +p22305 +sg18783 +g27 +sa(dp22306 +g18779 +S'Erwin Schwabe' +p22307 +sg18781 +S'Tortoise Shell Comb' +p22308 +sg18783 +g27 +sa(dp22309 +g18779 +S'Edith Magnette' +p22310 +sg18781 +S'Comb' +p22311 +sg18783 +g27 +sa(dp22312 +g18779 +S'Erwin Schwabe' +p22313 +sg18781 +S'Comb' +p22314 +sg18783 +g27 +sa(dp22315 +g18779 +S'Gertrude Lemberg' +p22316 +sg18781 +S'Comb' +p22317 +sg18783 +g27 +sa(dp22318 +g18779 +S'John H. Tercuzzi' +p22319 +sg18781 +S'Comb' +p22320 +sg18783 +g27 +sa(dp22321 +g18779 +S'Gertrude Lemberg' +p22322 +sg18781 +S'Comb' +p22323 +sg18783 +g27 +sa(dp22324 +g18779 +S'Vincent Burzy' +p22325 +sg18781 +S'Comb' +p22326 +sg18783 +g27 +sa(dp22327 +g18779 +S'Sylvia De Zon' +p22328 +sg18781 +S'Comb' +p22329 +sg18783 +g27 +sa(dp22330 +g18779 +S'Sylvia De Zon' +p22331 +sg18781 +S'Comb' +p22332 +sg18783 +g27 +sa(dp22333 +g18779 +S'Artist Information (' +p22334 +sg18787 +g27 +sg18789 +S'(artist)' +p22335 +sg18781 +S'Vessel Engraved with Hunting Scenes' +p22336 +sg18783 +g27 +sa(dp22337 +g18779 +S'Melita Hofmann' +p22338 +sg18781 +S'Hair Ornament' +p22339 +sg18783 +g27 +sa(dp22340 +g18779 +S'Sylvia De Zon' +p22341 +sg18781 +S'Group of Hair Jewelry' +p22342 +sg18783 +g27 +sa(dp22343 +g18779 +S'John H. Tercuzzi' +p22344 +sg18781 +S'Comb' +p22345 +sg18783 +g27 +sa(dp22346 +g18779 +S'Hester Duany' +p22347 +sg18781 +S'Comb' +p22348 +sg18783 +g27 +sa(dp22349 +g18779 +S'Jessie M. Benge' +p22350 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a0000331.jpg' +p22351 +sg18781 +S'Comb' +p22352 +sg18783 +S'The production of combs began in America in 1759. By 1773, in addition to their \n functional use, combs of ivory and tortoiseshell were in demand as hair ornaments. \n By the nineteenth century, great varieties of ornamental combs were available.\n This tortoiseshell comb, made between 1825 and 1830, is both carved and etched; \n the etching is identical on both sides. The comb is 9 3/4 inches wide, and its \n height at the center is 9 inches. Its size and elaborate open carving give it \n a striking effect.\n ' +p22353 +sa(dp22354 +g18779 +S'Artist Information (' +p22355 +sg18781 +S'Comb' +p22356 +sg18783 +g27 +sa(dp22357 +g18779 +S'Irene Lawson' +p22358 +sg18781 +S'Comb' +p22359 +sg18783 +g27 +sa(dp22360 +g18779 +S'Irene Lawson' +p22361 +sg18781 +S'Comb' +p22362 +sg18783 +g27 +sa(dp22363 +g18779 +S'Samuel Faigin' +p22364 +sg18781 +S'Hair Wreath' +p22365 +sg18783 +g27 +sa(dp22366 +g18779 +S'John H. Tercuzzi' +p22367 +sg18781 +S'Cuff Buttons' +p22368 +sg18783 +g27 +sa(dp22369 +g18779 +S'Viennese 19th Century' +p22370 +sg18787 +S'rock crystal and enameled gold' +p22371 +sg18789 +S'1850/1900' +p22372 +sg18781 +S'Cylindrical Vessel' +p22373 +sg18783 +g27 +sa(dp22374 +g18779 +S'Frank Fumagalli' +p22375 +sg18781 +S'Cuff Button' +p22376 +sg18783 +g27 +sa(dp22377 +g18779 +S'Dorothy Dwin' +p22378 +sg18781 +S'Cuff Link' +p22379 +sg18783 +g27 +sa(dp22380 +g18779 +S'Tulita Westfall' +p22381 +sg18781 +S'Loop Earring' +p22382 +sg18783 +g27 +sa(dp22383 +g18779 +S'Tulita Westfall' +p22384 +sg18781 +S"Baby's Earring" +p22385 +sg18783 +g27 +sa(dp22386 +g18779 +S'Vera Van Voris' +p22387 +sg18781 +S'Earrings' +p22388 +sg18783 +g27 +sa(dp22389 +g18779 +S'Tulita Westfall' +p22390 +sg18781 +S'Earrings' +p22391 +sg18783 +g27 +sa(dp22392 +g18779 +S'Bertha Semple' +p22393 +sg18781 +S'Earring' +p22394 +sg18783 +g27 +sa(dp22395 +g18779 +S'American 20th Century' +p22396 +sg18781 +S'Earrings' +p22397 +sg18783 +g27 +sa(dp22398 +g18779 +S'American 20th Century' +p22399 +sg18781 +S'Earrings' +p22400 +sg18783 +g27 +sa(dp22401 +g18779 +S'Tulita Westfall' +p22402 +sg18781 +S'Earrings' +p22403 +sg18783 +g27 +sa(dp22404 +g18781 +S'Vase with Two Handles' +p22405 +sg18779 +S'Artist Information (' +p22406 +sg18787 +g27 +sg18789 +S'(artist)' +p22407 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00054/a0005404.jpg' +p22408 +sg18783 +g27 +sa(dp22409 +g18779 +S'Tulita Westfall' +p22410 +sg18781 +S'Gold Earring' +p22411 +sg18783 +g27 +sa(dp22412 +g18779 +S'Roberta Elvis' +p22413 +sg18781 +S'Earring' +p22414 +sg18783 +g27 +sa(dp22415 +g18779 +S'Grace Halpin' +p22416 +sg18781 +S'Earrings' +p22417 +sg18783 +g27 +sa(dp22418 +g18779 +S'Theodore Kraus' +p22419 +sg18781 +S'Earring' +p22420 +sg18783 +g27 +sa(dp22421 +g18779 +S'Harry Jennings' +p22422 +sg18781 +S'Earrings' +p22423 +sg18783 +g27 +sa(dp22424 +g18779 +S'Albert Camilli' +p22425 +sg18781 +S'Earrings' +p22426 +sg18783 +g27 +sa(dp22427 +g18779 +S'John H. Tercuzzi' +p22428 +sg18781 +S'Earrings' +p22429 +sg18783 +g27 +sa(dp22430 +g18779 +S'Isidore Steinberg' +p22431 +sg18781 +S'Earrings' +p22432 +sg18783 +g27 +sa(dp22433 +g18779 +S'Vincent Burzy' +p22434 +sg18781 +S'Earrings' +p22435 +sg18783 +g27 +sa(dp22436 +g18779 +S'Isidore Steinberg' +p22437 +sg18791 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b7d.jpg' +p22438 +sg18781 +S"Child's Earring" +p22439 +sg18783 +g27 +sa(dp22440 +g18779 +S'Artist Information (' +p22441 +sg18787 +S'French, 1839 - 1919' +p22442 +sg18789 +S'(related artist)' +p22443 +sg18781 +S'Covered Cup' +p22444 +sg18783 +g27 +sa(dp22445 +g18779 +S'Frank Fumagalli' +p22446 +sg18781 +S'Earrings' +p22447 +sg18783 +g27 +sa(dp22448 +g18779 +S'Edward White' +p22449 +sg18781 +S'Garnet Earring' +p22450 +sg18783 +g27 +sa(dp22451 +g18779 +S'J. Howard Iams' +p22452 +sg18781 +S'Earrings' +p22453 +sg18783 +g27 +sa(dp22454 +g18779 +S'Bertha Semple' +p22455 +sg18781 +S'Necklace' +p22456 +sg18783 +g27 +sa(dp22457 +g18779 +S'Tulita Westfall' +p22458 +sg18781 +S'Cross Necklace' +p22459 +sg18783 +g27 +sa(dp22460 +g18779 +S'Tulita Westfall' +p22461 +sg18781 +S'Cross and Chain' +p22462 +sg18783 +g27 +sa(dp22463 +g18779 +S'Fanchon Larzelere' +p22464 +sg18781 +S'Bonnet' +p22465 +sg18783 +g27 +sa(dp22466 +g18779 +S'Marie Famularo' +p22467 +sg18781 +S'Hat' +p22468 +sg18783 +g27 +sa(dp22469 +g18779 +S'Dana Bartlett' +p22470 +sg18781 +S'Medallion and Chain' +p22471 +sg18783 +g27 +sa(dp22472 +g18779 +S'Vincent Murphy' +p22473 +sg18781 +S'Locket' +p22474 +sg18783 +g27 +sa(dp22475 +g18779 +S'Artist Information (' +p22476 +sg18787 +g27 +sg18789 +S'(artist)' +p22477 +sg18781 +S'Ewer and Cover' +p22478 +sg18783 +g27 +sa(dp22479 +g18779 +S'Majel G. Claflin' +p22480 +sg18781 +S'Coral Beads and Crucifix' +p22481 +sg18783 +g27 +sa(dp22482 +g18779 +S'William P. Shearwood' +p22483 +sg18781 +S'Mourning Pendants' +p22484 +sg18783 +g27 +sa(dp22485 +g18779 +S'Vincent Burzy' +p22486 +sg18781 +S'Locket' +p22487 +sg18783 +g27 +sa(dp22488 +g18779 +S'John H. Tercuzzi' +p22489 +sg18781 +S'Locket' +p22490 +sg18783 +g27 +sa(dp22491 +g18779 +S'Doris Beer' +p22492 +sg18781 +S'Clasp for Necklace' +p22493 +sg18783 +g27 +sa(dp22494 +g18779 +S'Doris Beer' +p22495 +sg18781 +S'Necklace' +p22496 +sg18783 +g27 +sa(dp22497 +g18779 +S'John H. Tercuzzi' +p22498 +sg18781 +S'Necklace' +p22499 +sg18783 +g27 +sa(dp22500 +g18779 +S'James M. Lawson' +p22501 +sg18781 +S'Tortoise Shell Necklace & Locket' +p22502 +sg18783 +g27 +sa(dp22503 +g18779 +S'Edward White' +p22504 +sg18781 +S'Locket' +p22505 +sg18783 +g27 +sa(dp22506 +g18779 +S'Dorothy Posten' +p22507 +sg18781 +S'Gold Chain' +p22508 +sg18783 +g27 +sa(dp22509 +g18781 +S'Pendant with Europa and the Bull' +p22510 +sg18779 +S'Alfred Andr\xc3\xa9' +p22511 +sg18787 +S'baroque pearl; gold enameled in white, black, dark green, pale blue, translucent red, green, yellow, and blue; 22 colorless stones (sapphires, diamonds), 1 blue sapphire, 19 red stones (rubies, glass), 6 pearls' +p22512 +sg18789 +S'1870/1890' +p22513 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000501.jpg' +p22514 +sg18783 +g27 +sa(dp22515 +g18779 +S'Katherine Hastings' +p22516 +sg18781 +S'Necklace' +p22517 +sg18783 +g27 +sa(dp22518 +g18779 +S'Molly Bodenstein' +p22519 +sg18781 +S'Necklace and Locket' +p22520 +sg18783 +g27 +sa(dp22521 +g18779 +S'Walter Praefke' +p22522 +sg18781 +S'Trade Beads' +p22523 +sg18783 +g27 +sa(dp22524 +g18779 +S'Bessie Forman' +p22525 +sg18781 +S'Bonnet' +p22526 +sg18783 +g27 +sa(dp22527 +g18779 +S'Tulita Westfall' +p22528 +sg18781 +S'Pearl Pin' +p22529 +sg18783 +g27 +sa(dp22530 +g18779 +S'Vera Van Voris' +p22531 +sg18781 +S'Cross-shaped Pin' +p22532 +sg18783 +g27 +sa(dp22533 +g18779 +S'Ellen Duncan' +p22534 +sg18781 +S'Sword Pin' +p22535 +sg18783 +g27 +sa(dp22536 +g18779 +S'George Seideneck' +p22537 +sg18781 +S'Stick Pin' +p22538 +sg18783 +g27 +sa(dp22539 +g18779 +S'Tulita Westfall' +p22540 +sg18781 +S'Bird Stick Pin' +p22541 +sg18783 +g27 +sa(dp22542 +g18779 +S'Tulita Westfall' +p22543 +sg18781 +S'Pin' +p22544 +sg18783 +g27 +sa(dp22545 +g18779 +S'Manuel G. Runyan' +p22546 +sg18781 +S'Hair Pin' +p22547 +sg18783 +g27 +sa(dp22548 +g18779 +S'Vincent Burzy' +p22549 +sg18781 +S'Pin' +p22550 +sg18783 +g27 +sa(dp22551 +g18779 +S'Kalamian Walton' +p22552 +sg18781 +S"Man's Stick Pin" +p22553 +sg18783 +g27 +sa(dp22554 +g18779 +S'Kalamian Walton' +p22555 +sg18781 +S'Stick Pin' +p22556 +sg18783 +g27 +sa(dp22557 +g18779 +S'John H. Tercuzzi' +p22558 +sg18781 +S'Cap or Bonnet Pin' +p22559 +sg18783 +g27 +sa(dp22560 +g18779 +S'Frank Fumagalli' +p22561 +sg18781 +S'Pin' +p22562 +sg18783 +g27 +sa(dp22563 +g18779 +S'Dorothy Dwin' +p22564 +sg18781 +S'Pin' +p22565 +sg18783 +g27 +sa(dp22566 +g18779 +S'Dorothy Dwin' +p22567 +sg18781 +S'Pin' +p22568 +sg18783 +g27 +sa(dp22569 +g18779 +S'Bertha Semple' +p22570 +sg18781 +S'Wedding Ring' +p22571 +sg18783 +g27 +sa(dp22572 +g18779 +S'Kurt Melzer' +p22573 +sg18781 +S'Ring' +p22574 +sg18783 +g27 +sa(dp22575 +g18781 +S'Pendant with the Head of Medusa' +p22576 +sg18779 +S'Alfred Andr\xc3\xa9' +p22577 +sg18787 +S'chalcedony; gold enameled in black, white, pale blue, translucent red, blue and green; 6 diamonds, 4 rubies, 1 pearl' +p22578 +sg18789 +S'1885/1890' +p22579 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00051/a00051d3.jpg' +p22580 +sg18783 +g27 +sa(dp22581 +g18779 +S'Lillian Hunter' +p22582 +sg18781 +S'Memorial Ring' +p22583 +sg18783 +g27 +sa(dp22584 +g18779 +S'Frank Nelson' +p22585 +sg18781 +S'Gold Ring' +p22586 +sg18783 +g27 +sa(dp22587 +g18779 +S'William P. Shearwood' +p22588 +sg18781 +S'Seal Ring' +p22589 +sg18783 +g27 +sa(dp22590 +g18779 +S'John H. Tercuzzi' +p22591 +sg18781 +S'Hair Ring' +p22592 +sg18783 +g27 +sa(dp22593 +g18779 +S'John H. Tercuzzi' +p22594 +sg18781 +S'Ring' +p22595 +sg18783 +g27 +sa(dp22596 +g18779 +S'John H. Tercuzzi' +p22597 +sg18781 +S'Topaz Ring' +p22598 +sg18783 +g27 +sa(dp22599 +g18779 +S'John H. Tercuzzi' +p22600 +sg18781 +S'Emerald Ring' +p22601 +sg18783 +g27 +sa(dp22602 +g18779 +S'Michael Fenga' +p22603 +sg18781 +S'Mourning Ring' +p22604 +sg18783 +g27 +sa(dp22605 +g18779 +S'John H. Tercuzzi' +p22606 +sg18781 +S'Mourning Ring' +p22607 +sg18783 +g27 +sa(dp22608 +g18779 +S'John H. Tercuzzi' +p22609 +sg18781 +S'Mourning Ring' +p22610 +sg18783 +g27 +sa(dp22611 +g18781 +S'Necklace and Pendant with a Sphinx' +p22612 +sg18779 +S'Alfred Andr\xc3\xa9' +p22613 +sg18787 +S'gold enameled in white, black, translucent red, blue, and green; 28 diamonds, 5 emeralds, 43 rubies, 37 pearls' +p22614 +sg18789 +S'c. 1890' +p22615 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000502.jpg' +p22616 +sg18783 +g27 +sa(dp22617 +g18779 +S'Michael Fenga' +p22618 +sg18781 +S'Memorial Ring' +p22619 +sg18783 +g27 +sa(dp22620 +g18779 +S'Michael Fenga' +p22621 +sg18781 +S'Mourning Ring' +p22622 +sg18783 +g27 +sa(dp22623 +g18779 +S'Michael Fenga' +p22624 +sg18781 +S'Memorial Ring' +p22625 +sg18783 +g27 +sa(dp22626 +g18779 +S'Tulita Westfall' +p22627 +sg18781 +S'Watch Chain' +p22628 +sg18783 +g27 +sa(dp22629 +g18779 +S'Kathryn Uhl' +p22630 +sg18781 +S'Watch Fob with Human Hair Chain' +p22631 +sg18783 +g27 +sa(dp22632 +g18779 +S'Bertha Semple' +p22633 +sg18781 +S'Watch Fob' +p22634 +sg18783 +g27 +sa(dp22635 +g18779 +S'Tulita Westfall' +p22636 +sg18781 +S'Horse Watch Fob' +p22637 +sg18783 +g27 +sa(dp22638 +g18779 +S'Lawrence Flynn' +p22639 +sg18781 +S'Watch Fob' +p22640 +sg18783 +g27 +sa(dp22641 +g18779 +S'William H. Edwards' +p22642 +sg18781 +S'Watch Holder' +p22643 +sg18783 +g27 +sa(dp22644 +g18779 +S'Robert Clark' +p22645 +sg18781 +S'Watch Key' +p22646 +sg18783 +g27 +sa(dp22647 +g18781 +S'Pendant with a Mermaid' +p22648 +sg18779 +S'Alfred Andr\xc3\xa9' +p22649 +sg18787 +S'baroque pearl; gold enameled in white, black, pale blue, translucent blue, red, and green; 14 diamonds, 10 rubies, 9 pearls' +p22650 +sg18789 +S'1885/1890' +p22651 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000503.jpg' +p22652 +sg18783 +g27 +sa(dp22653 +g18779 +S'Harry G. Alexander' +p22654 +sg18781 +S'Gold Watch Frame and Case' +p22655 +sg18783 +g27 +sa(dp22656 +g18779 +S'Harry G. Aberdeen' +p22657 +sg18781 +S'Watch Case' +p22658 +sg18783 +g27 +sa(dp22659 +g18779 +S'Harry G. Aberdeen' +p22660 +sg18781 +S'Gold Watch and Frame' +p22661 +sg18783 +g27 +sa(dp22662 +g18779 +S'Harry G. Aberdeen' +p22663 +sg18781 +S'Gold Watch with Frame and Case' +p22664 +sg18783 +g27 +sa(dp22665 +g18779 +S'Harry G. Alexander' +p22666 +sg18781 +S'Watch, Face and Case' +p22667 +sg18783 +g27 +sa(dp22668 +g18779 +S'Harry G. Aberdeen' +p22669 +sg18781 +S'Watch, Frame and Case' +p22670 +sg18783 +g27 +sa(dp22671 +g18779 +S'Harry G. Aberdeen' +p22672 +sg18781 +S'Sporting Watch' +p22673 +sg18783 +g27 +sa(dp22674 +g18779 +S'Harry G. Aberdeen' +p22675 +sg18781 +S'Watch Dial and Frame' +p22676 +sg18783 +g27 +sa(dp22677 +g18779 +S'Harry G. Aberdeen' +p22678 +sg18781 +S'Watch, Dial and Frame' +p22679 +sg18783 +g27 +sa(dp22680 +g18779 +S'Harry G. Aberdeen' +p22681 +sg18781 +S'Watch and Case' +p22682 +sg18783 +g27 +sa(dp22683 +g18781 +S'Pendant with a Triton' +p22684 +sg18779 +S'Alfred Andr\xc3\xa9' +p22685 +sg18787 +S'baroque pearl; gold enameled in white, black, translucent red, green, blue, and yellow; 2 diamonds, 37 rubies, 4 pearls' +p22686 +sg18789 +S'1885/1890' +p22687 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000504.jpg' +p22688 +sg18783 +g27 +sa(dp22689 +g18779 +S'Harry Grossen' +p22690 +sg18781 +S'Watch Key' +p22691 +sg18783 +g27 +sa(dp22692 +g18779 +S'Robert Clark' +p22693 +sg18781 +S'Watch Key' +p22694 +sg18783 +g27 +sa(dp22695 +g18779 +S'Harry Grossen' +p22696 +sg18781 +S'Watch Key' +p22697 +sg18783 +g27 +sa(dp22698 +g18779 +S'William P. Shearwood' +p22699 +sg18781 +S'Watch Chain Locket' +p22700 +sg18783 +g27 +sa(dp22701 +g18779 +S'Eliseo Rodriguez' +p22702 +sg18781 +S'Fob Seal' +p22703 +sg18783 +g27 +sa(dp22704 +g18779 +S'Vincent Burzy' +p22705 +sg18781 +S'Pencil Charm' +p22706 +sg18783 +g27 +sa(dp22707 +g18779 +S'Frank Fumagalli' +p22708 +sg18781 +S'Watch Chain' +p22709 +sg18783 +g27 +sa(dp22710 +g18779 +S'Irene Lawson' +p22711 +sg18781 +S"Man's Watch Chain" +p22712 +sg18783 +g27 +sa(dp22713 +g18779 +S'Edna C. Rex' +p22714 +sg18781 +S'Watch Chain' +p22715 +sg18783 +g27 +sa(dp22716 +g18779 +S'William O. Fletcher' +p22717 +sg18781 +S'Pickaninny Watch Stand' +p22718 +sg18783 +g27 +sa(dp22719 +g18781 +S'Saint Apollonia Destroys a Pagan Idol' +p22720 +sg18779 +S"Giovanni d'Alemagna" +p22721 +sg18787 +S'tempera on panel' +p22722 +sg18789 +S'c. 1442/1445' +p22723 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a00005de.jpg' +p22724 +sg18783 +g27 +sa(dp22725 +g18781 +S'Pendant with a Centaur' +p22726 +sg18779 +S'Alfred Andr\xc3\xa9' +p22727 +sg18787 +S'baroque pearl; gold enameled in black, white, pale blue, translucent red, green, and blue; 2 emeralds, 2 rubies, 1 piece of rock crystal or glass, 4 hanging pearls, 10 small pearls in the chain' +p22728 +sg18789 +S'1885/1890' +p22729 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000505.jpg' +p22730 +sg18783 +g27 +sa(dp22731 +g18779 +S'Bruce Gentry' +p22732 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00058/a0005892.jpg' +p22733 +sg18781 +S'Sampler' +p22734 +sg18783 +g27 +sa(dp22735 +g18779 +S'Vincent P. Rosel' +p22736 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00058/a0005899.jpg' +p22737 +sg18781 +S'Embroidered Sampler' +p22738 +sg18783 +g27 +sa(dp22739 +g18779 +S'Raymond Manupelli' +p22740 +sg18781 +S'Sampler' +p22741 +sg18783 +g27 +sa(dp22742 +g18779 +S'Albert Levone' +p22743 +sg18781 +S'Sampler' +p22744 +sg18783 +g27 +sa(dp22745 +g18779 +S'Frances Lichten' +p22746 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00002/a00002a9.jpg' +p22747 +sg18781 +S'Embroidered Towel' +p22748 +sg18783 +S"Women lavished much attention on show towels, embroidered panels hung over the ordinary towels used by the family or otherwise displayed as decorations on\r\n doors. Show towels were most frequently made by Pennsylvania German settlers,\r\n who brought to America their European traditions. The practice of concealing homely\r\n everyday towels behind a decoratively embroidered panel gave evidence of a well-kept\r\n home and of the housewife's deftness with the flax wheel and the needle. In this\r\n example, a restrained design is composed of schematic urns and flowers\r\n worked in cross-stitch. Though the design is extremely refined, a lively decorative\r\n effect is created by the bright reds and greens used in the embroidery; the colors\r\n stand out boldly against the light natural linen background.\n " +p22749 +sa(dp22750 +g18779 +S'Eva Wilson' +p22751 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00058/a000589a.jpg' +p22752 +sg18781 +S'Sampler' +p22753 +sg18783 +g27 +sa(dp22754 +g18779 +S'Eva Wilson' +p22755 +sg18781 +S'Sampler' +p22756 +sg18783 +g27 +sa(dp22757 +g18779 +S'Joseph Wolins' +p22758 +sg18781 +S'Sampler' +p22759 +sg18783 +g27 +sa(dp22760 +g18779 +S'Byron Dingman' +p22761 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00058/a0005891.jpg' +p22762 +sg18781 +S'Sampler' +p22763 +sg18783 +g27 +sa(dp22764 +g18779 +S'Alfonso Moreno' +p22765 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00058/a000587e.jpg' +p22766 +sg18781 +S'Sampler' +p22767 +sg18783 +g27 +sa(dp22768 +g18781 +S'The Virgin Annunciate' +p22769 +sg18779 +S'Giovanni di Domenico' +p22770 +sg18787 +S'stained glass' +p22771 +sg18789 +S'1498/1503' +p22772 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000513.jpg' +p22773 +sg18783 +g27 +sa(dp22774 +g18779 +S'Carmel Wilson' +p22775 +sg18781 +S'Embroidered Stool Cover' +p22776 +sg18783 +g27 +sa(dp22777 +g18779 +S'Charles Bowman' +p22778 +sg18781 +S'Sampler' +p22779 +sg18783 +g27 +sa(dp22780 +g18779 +S'Charles Bowman' +p22781 +sg18781 +S'Sampler' +p22782 +sg18783 +g27 +sa(dp22783 +g18779 +S'Phyllis Dorr' +p22784 +sg18781 +S'Petit Point Embroidery' +p22785 +sg18783 +g27 +sa(dp22786 +g18779 +S'Phyllis Dorr' +p22787 +sg18781 +S'Needlepoint Panel' +p22788 +sg18783 +g27 +sa(dp22789 +g18779 +S'J. Howard Iams' +p22790 +sg18781 +S'Landscape in Petit Point' +p22791 +sg18783 +g27 +sa(dp22792 +g18779 +S'Frank J. Mace' +p22793 +sg18781 +S'Embroidered Picture' +p22794 +sg18783 +g27 +sa(dp22795 +g18779 +S'Edward Unger' +p22796 +sg18781 +S'Yarn Picture' +p22797 +sg18783 +g27 +sa(dp22798 +g18779 +S'Marion Gaylord' +p22799 +sg18781 +S'Valance (Detail)' +p22800 +sg18783 +g27 +sa(dp22801 +g18779 +S'Marion Gaylord' +p22802 +sg18781 +S'Valance (Detail)' +p22803 +sg18783 +g27 +sa(dp22804 +g18781 +S'The Angel of the Annunciation' +p22805 +sg18779 +S'Giovanni di Domenico' +p22806 +sg18787 +S'stained glass' +p22807 +sg18789 +S'1498/1503' +p22808 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000514.jpg' +p22809 +sg18783 +g27 +sa(dp22810 +g18779 +S'Mabel S. Kelton' +p22811 +sg18781 +S'Embroidered Table Scarf' +p22812 +sg18783 +g27 +sa(dp22813 +g18779 +S'Mildred E. Bent' +p22814 +sg18781 +S'Embroidered Petticoat (Detail)' +p22815 +sg18783 +g27 +sa(dp22816 +g18779 +S'Mildred E. Bent' +p22817 +sg18781 +S'Bed Canopy Detail' +p22818 +sg18783 +g27 +sa(dp22819 +g18779 +S'Mildred E. Bent' +p22820 +sg18781 +S'Embroidered Bed Hanging' +p22821 +sg18783 +g27 +sa(dp22822 +g18779 +S'Mildred E. Bent' +p22823 +sg18781 +S'Bedspread (Detail)' +p22824 +sg18783 +g27 +sa(dp22825 +g18779 +S'Suzanne Chapman' +p22826 +sg18781 +S'Chair Seat' +p22827 +sg18783 +g27 +sa(dp22828 +g18779 +S'Lawrence Peterson' +p22829 +sg18781 +S'Crewel Embroidered Valance' +p22830 +sg18783 +g27 +sa(dp22831 +g18779 +S'Phyllis Dorr' +p22832 +sg18781 +S'Crewel Embroidery' +p22833 +sg18783 +g27 +sa(dp22834 +g18779 +S'Suzanne Chapman' +p22835 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00002/a00002aa.jpg' +p22836 +sg18781 +S'Valance' +p22837 +sg18783 +S'Embroidery worked with loosely twisted yarn, called crewel, is known as crewelwork. Also known as "worsted" yarn, crewel was widely available in England by the seventeenth century, when favorable agricultural conditions produced robust sheep capable of growing the longer strands of wool required for this yarn. American crewelwork was inherited from Jacobean England. While the embroidery is generally less dense than that of English prototypes, English patterns were perpetuated in American designs. Coastal New England was the center of crewelwork activity on this side of the Atlantic. The needlewomen of New England purchased their yarn, as well as the fabric on which they embroidered, from England and generally followed English needlework styles. Crewelwork motifs were derived from painted and printed cottons imported into England from India during the seventeenth and eighteenth centuries. Typical crewelwork designs showed flowering trees rising from delineated hills, as in this eighteenth-century example made in Massachusetts. Exotic birds in scroll-like branches were also popular, as were floral sprays scattered irregularly upon the ground fabric, which was usually of linen plain-weave. This crewel-embroidered valance retains the luxuriant character of Indian designs in the forms of the exotic trees and in the rich combination of brilliant colors. Crewelwork decorated counterpanes (bedspreads), hangings for four-poster beds, valances for windows, chair coverings, or curtains for the home.\n ' +p22838 +sa(dp22839 +g18779 +S'Lawrence Peterson' +p22840 +sg18781 +S'Jacobean Embroidery' +p22841 +sg18783 +g27 +sa(dp22842 +g18781 +S'Plate with border of putti and trophies amid grotesques; in the center, a winged putto standing, armed, in a landscape' +p22843 +sg18779 +S'Artist Information (' +p22844 +sg18787 +g27 +sg18789 +S'(ceramist)' +p22845 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000524.jpg' +p22846 +sg18783 +g27 +sa(dp22847 +g18779 +S'Phyllis Dorr' +p22848 +sg18781 +S'Crewel Embroidery' +p22849 +sg18783 +g27 +sa(dp22850 +g18779 +S'Suzanne Chapman' +p22851 +sg18781 +S'Crewel Embroidery' +p22852 +sg18783 +g27 +sa(dp22853 +g18779 +S'Eleanor Cunningham' +p22854 +sg18781 +S'Valance' +p22855 +sg18783 +g27 +sa(dp22856 +g18779 +S'Phyllis Dorr' +p22857 +sg18781 +S'Bedspread' +p22858 +sg18783 +g27 +sa(dp22859 +g18779 +S'Lawrence Peterson' +p22860 +sg18781 +S'Embroidered Petticoat Border' +p22861 +sg18783 +g27 +sa(dp22862 +g18779 +S'Eleanor Cunningham' +p22863 +sg18781 +S'Crewel Embroidery Chair Seat' +p22864 +sg18783 +g27 +sa(dp22865 +g18779 +S'Eleanor Cunningham' +p22866 +sg18781 +S'Embroidery' +p22867 +sg18783 +g27 +sa(dp22868 +g18779 +S'Lawrence Peterson' +p22869 +sg18781 +S'Crewel Embroidery Chair Piece' +p22870 +sg18783 +g27 +sa(dp22871 +g18779 +S'Betty Fuerst' +p22872 +sg18781 +S'Crewel Embroidery' +p22873 +sg18783 +g27 +sa(dp22874 +g18779 +S'Helen E. Gilman' +p22875 +sg18781 +S'Crewel Embroidery' +p22876 +sg18783 +g27 +sa(dp22877 +g18779 +S'Artist Information (' +p22878 +sg18787 +g27 +sg18789 +S'(ceramist)' +p22879 +sg18781 +S'Plate with border of grotesques on an orange ground and three shields of the arms of the Gritti of Venice; in the center, putti holding another shield of the same arms' +p22880 +sg18783 +g27 +sa(dp22881 +g18779 +S'Robert T. Gills' +p22882 +sg18781 +S'Crewel Embroidered Bed Curtain' +p22883 +sg18783 +g27 +sa(dp22884 +g18779 +S'Helen E. Gilman' +p22885 +sg18781 +S'Crewel Embroidery' +p22886 +sg18783 +g27 +sa(dp22887 +g18779 +S'Elmer Weise' +p22888 +sg18781 +S'Cross Stitch' +p22889 +sg18783 +g27 +sa(dp22890 +g18779 +S'Samuel O. Klein' +p22891 +sg18781 +S'Chair Seat' +p22892 +sg18783 +g27 +sa(dp22893 +g18779 +S'Frank Nelson' +p22894 +sg18781 +S'Embroidered sleeve' +p22895 +sg18783 +g27 +sa(dp22896 +g18779 +S'American 20th Century' +p22897 +sg18781 +S'Bedspread' +p22898 +sg18783 +g27 +sa(dp22899 +g18779 +S'Bessie Forman' +p22900 +sg18781 +S'Bedspread' +p22901 +sg18783 +g27 +sa(dp22902 +g18779 +S'Suzanne Roy' +p22903 +sg18781 +S'Bedspread' +p22904 +sg18783 +g27 +sa(dp22905 +g18779 +S'Suzanne Roy' +p22906 +sg18781 +S'Crewel Embroidered Bedspread' +p22907 +sg18783 +g27 +sa(dp22908 +g18779 +S'William Parkinson' +p22909 +sg18781 +S'Mourning Embroidery' +p22910 +sg18783 +g27 +sa(dp22911 +g18781 +S'Plate with border of grotesques on an orange ground; in the center, Narcissus gazing at his reflection in a fountain' +p22912 +sg18779 +S'Sienese 16th Century' +p22913 +sg18787 +S'overall (diameter): 26.1 cm (10 1/4 in.)' +p22914 +sg18789 +S'\ntin-glazed earthenware (maiolica)' +p22915 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000522.jpg' +p22916 +sg18783 +g27 +sa(dp22917 +g18779 +S'Edward Unger' +p22918 +sg18781 +S'Embroidered Footstool Cover' +p22919 +sg18783 +g27 +sa(dp22920 +g18779 +S'Dorothy M. Gerhard' +p22921 +sg18781 +S'Cap' +p22922 +sg18783 +g27 +sa(dp22923 +g18779 +S'Alice Cosgrove' +p22924 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00002/a00002f1.jpg' +p22925 +sg18781 +S'Hooked Rug' +p22926 +sg18783 +S"American women displayed a brilliant sense of design not only in embroidery,\n but also in hooked rugs, which were produced by housewives everywhere.\n Hooked rugs testify also to the homemakers' thrift, for the women made them from\n worn-out clothing that was cut into long strips. These strips were pulled with a metal\n hook through a coarse foundation such as linen or burlap. Frequently, discarded\n feed bags were used as backing. Each strip was looped on the surface of the rug\n and pulled flat on the reverse side; the process was repeated again and again to\n create a nubby surface of innumerable loops. At times the loops were clipped to\n achieve textural variation. Designs were usually bold and simple; geometric forms\n were used frequently, although flowers, animals, houses, and ships were also popular.\n Motifs were often combined; here a strong geometric border frames a floral bouquet. \n Generally a lively effect is achieved through strong color contrasts, as in this \n rug, where tones of gold set off the vivid reds and greens of the flowers.\n " +p22927 +sa(dp22928 +g18779 +S'Jessie Trueworthy' +p22929 +sg18781 +S'Rug' +p22930 +sg18783 +g27 +sa(dp22931 +g18779 +S'Dorothy Lacey' +p22932 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00002/a00002b8.jpg' +p22933 +sg18781 +S'Caswell Carpet' +p22934 +sg18783 +S'In the early nineteenth century, American women often used their leisure time to\n embroider rugs. One of the most famous embroidered rugs is the Caswell Carpet,\n a portion of which is seen here. It was made in Vermont between 1832 and\n 1835 by Zeruah Higley Guernsey, who later married a Mr. Caswell; the rug is known\n by the latter name. The wool used in the rug was grown, spun, and dyed at home.\n Nearly eighty separate blocks were embroidered in a double chain stitch, or\n "Kensington stitch," on a coarse homespun foundation. Each block has its own\n complete design. While floral motifs predominate, diversity is achieved by modifying\n the floral forms and by varying their arrangement within each square. In some blocks,\n flowers or leaves stand alone; in others, they are combined with baskets, vases, birds,\n or butterflies. The overall design is further enriched through the inclusion of non-floral\n motifs such as kittens and puppies and, in one square, a bridal couple, believed to refer\n to the approaching marriage of the maker. On one end of the carpet is a\n long panel embroidered with a sawtooth border and a central design showing a basket\n filled with flowers and fruit. During the summer, when the fireplace was not in use, this\n panel covered the hearth; in winter it was folded under the body of the rug, in order to\n leave the hearth uncovered. The presence of the hearth panel indicates that the rug\n was not made solely for decoration, but that year-round utility was also a consideration\n in its design.\n ' +p22935 +sa(dp22936 +g18779 +S'Charlotte Winter' +p22937 +sg18781 +S'Caswell Carpet' +p22938 +sg18783 +g27 +sa(dp22939 +g18779 +S'Charlotte Angus' +p22940 +sg18781 +S'Hooked Rug (Cotton)' +p22941 +sg18783 +g27 +sa(dp22942 +g18779 +S'Ella Josephine Sterling' +p22943 +sg18781 +S'Patchwork Quilt' +p22944 +sg18783 +g27 +sa(dp22945 +g18779 +S'Maud M. Holme' +p22946 +sg18781 +S'Pieced Quilt - "Star Pattern"' +p22947 +sg18783 +g27 +sa(dp22948 +g18779 +S'Manuel G. Runyan' +p22949 +sg18781 +S'Star & Ring Quilt' +p22950 +sg18783 +g27 +sa(dp22951 +g18781 +S'Deep bowl with "Persian palmette" ornament; in the center, a profile bust of a young man wearing a wreath' +p22952 +sg18779 +S'Artist Information (' +p22953 +sg18787 +g27 +sg18789 +S'(ceramist)' +p22954 +sg18791 +S'http://www.nga.gov:80/thumb-l/a000da/a000daad.jpg' +p22955 +sg18783 +g27 +sa(dp22956 +g18779 +S'Artist Information (' +p22957 +sg18781 +S'Sunburst Quilt - Applique' +p22958 +sg18783 +g27 +sa(dp22959 +g18779 +S'Cora Parker' +p22960 +sg18781 +S'Quilt - Grape Pattern' +p22961 +sg18783 +g27 +sa(dp22962 +g18779 +S'Adolph Opstad' +p22963 +sg18781 +S'Applique Coverlet (Detail)' +p22964 +sg18783 +g27 +sa(dp22965 +g18779 +S'Adolph Opstad' +p22966 +sg18781 +S'Applique Coverlet (Detail)' +p22967 +sg18783 +g27 +sa(dp22968 +g18779 +S'Adolph Opstad' +p22969 +sg18781 +S'Coverlet Detail (Red Riding Hood)' +p22970 +sg18783 +g27 +sa(dp22971 +g18779 +S'Adolph Opstad' +p22972 +sg18781 +S'Applique Coverlet (Detail)' +p22973 +sg18783 +g27 +sa(dp22974 +g18779 +S'Adolph Opstad' +p22975 +sg18781 +S'Applique Coverlet (Detail)' +p22976 +sg18783 +g27 +sa(dp22977 +g18779 +S'Adolph Opstad' +p22978 +sg18781 +S'Applique Coverlet (Detail)' +p22979 +sg18783 +g27 +sa(dp22980 +g18779 +S'Adolph Opstad' +p22981 +sg18781 +S'Applique Coverlet (Detail)' +p22982 +sg18783 +g27 +sa(dp22983 +g18779 +S'Adolph Opstad' +p22984 +sg18781 +S'Coverlet (Detail of Bluebird)' +p22985 +sg18783 +g27 +sa(dp22986 +g18781 +S'Large dish with segmental border of plant sprays and scale pattern; in the center, an emblematic female figure holding a crowned toad and cornucopia' +p22987 +sg18779 +S'Deruta 16th Century' +p22988 +sg18787 +S'overall (diameter): 40.3 cm (15 7/8 in.)' +p22989 +sg18789 +S'\ntin-glazed earthenware (maiolica)' +p22990 +sg18791 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e016.jpg' +p22991 +sg18783 +g27 +sa(dp22992 +g18779 +S'Mrs. Goodwin' +p22993 +sg18781 +S'Window Seat Cover' +p22994 +sg18783 +g27 +sa(dp22995 +g18779 +S'Charles Goodwin' +p22996 +sg18781 +S'Patchwork Quilt' +p22997 +sg18783 +g27 +sa(dp22998 +g18779 +S'Elbert S. Mowery' +p22999 +sg18781 +S'Applique Quilt - "King David\'s Crown"' +p23000 +sg18783 +g27 +sa(dp23001 +g18779 +S'Mildred E. Bent' +p23002 +sg18781 +S'Applique Quilt' +p23003 +sg18783 +g27 +sa(dp23004 +g18779 +S'Mildred E. Bent' +p23005 +sg18781 +S'Pineapple Quilt' +p23006 +sg18783 +g27 +sa(dp23007 +g18779 +S'Mildred E. Bent' +p23008 +sg18781 +S'Applique Quilt' +p23009 +sg18783 +g27 +sa(dp23010 +g18779 +S'Mildred E. Bent' +p23011 +sg18781 +S'Appliqued Quilt' +p23012 +sg18783 +g27 +sa(dp23013 +g18779 +S'Charles Bowman' +p23014 +sg18781 +S'Quilt' +p23015 +sg18783 +g27 +sa(dp23016 +g18779 +S'Marie Alain' +p23017 +sg18781 +S'Quilt' +p23018 +sg18783 +g27 +sa(dp23019 +g18779 +S'Douglas Campbell' +p23020 +sg18781 +S'Quilt' +p23021 +sg18783 +g27 +sa(dp23022 +g18781 +S'Large dish with running plant border; in the center, horsemen fighting' +p23023 +sg18779 +S'Deruta 16th Century' +p23024 +sg18787 +S'overall (diameter): 40.5 cm (15 15/16 in.)' +p23025 +sg18789 +S'\ntin-glazed earthenware (maiolica)' +p23026 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000507.jpg' +p23027 +sg18783 +g27 +sa(dp23028 +g18779 +S'Stella Mosher' +p23029 +sg18781 +S"Quilt for Doll's Bed" +p23030 +sg18783 +g27 +sa(dp23031 +g18779 +S'Dolores Haupt' +p23032 +sg18781 +S'Crazy Quilt' +p23033 +sg18783 +g27 +sa(dp23034 +g18779 +S'Alice Cosgrove' +p23035 +sg18781 +S'Quilt - Tulip Pattern' +p23036 +sg18783 +g27 +sa(dp23037 +g18779 +S'Edith Magnette' +p23038 +sg18781 +S'Patchwork Quilt' +p23039 +sg18783 +g27 +sa(dp23040 +g18779 +S'Edith Magnette' +p23041 +sg18781 +S'Table Cover' +p23042 +sg18783 +g27 +sa(dp23043 +g18779 +S'Lily Capson' +p23044 +sg18781 +S'Quilt - Applique Patterns with Border' +p23045 +sg18783 +g27 +sa(dp23046 +g18779 +S'Jenny Almgren' +p23047 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00055/a000551f.jpg' +p23048 +sg18781 +S'Patchwork Quilt' +p23049 +sg18783 +g27 +sa(dp23050 +g18779 +S'Charlotte Winter' +p23051 +sg18781 +S'Sunburst Quilt' +p23052 +sg18783 +g27 +sa(dp23053 +g18779 +S'Mary Berner' +p23054 +sg18781 +S'Patchwork and Applique Quilt' +p23055 +sg18783 +g27 +sa(dp23056 +g18779 +S'Dorothy Gernon' +p23057 +sg18781 +S'Bonnet' +p23058 +sg18783 +g27 +sa(dp23059 +g18781 +S'Large dish with plant-pattern border; in the center, the arms of a Medici pope' +p23060 +sg18779 +S'Deruta 16th Century' +p23061 +sg18787 +S'overall (diameter): 41.6 cm (16 3/8 in.)' +p23062 +sg18789 +S'\ntin-glazed earthenware (maiolica)' +p23063 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a000050d.jpg' +p23064 +sg18783 +g27 +sa(dp23065 +g18779 +S'Mary Berner' +p23066 +sg18781 +S'Patchwork Quilt' +p23067 +sg18783 +g27 +sa(dp23068 +g18779 +S'Suzanne Roy' +p23069 +sg18781 +S'Quilt Top' +p23070 +sg18783 +g27 +sa(dp23071 +g18779 +S'Henry Granet' +p23072 +sg18781 +S'Patchwork Quilt (Section)' +p23073 +sg18783 +g27 +sa(dp23074 +g18779 +S'Jessie M. Benge' +p23075 +sg18781 +S'Bonnet' +p23076 +sg18783 +g27 +sa(dp23077 +g18779 +S'Catherine Fowler' +p23078 +sg18781 +S'Quilt' +p23079 +sg18783 +g27 +sa(dp23080 +g18779 +S'Mina Greene' +p23081 +sg18781 +S'Crazy Quilt (Section of)' +p23082 +sg18783 +g27 +sa(dp23083 +g18779 +S'Sylvia De Zon' +p23084 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00002/a00002bb.jpg' +p23085 +sg18781 +S'Patchwork Quilt' +p23086 +sg18783 +S'American families needed warm bedding for the cold winters, so, in addition to woven\n coverlets, they made quilts. A quilt consists of two layers of material with wadding\n between; the layers are held together by stitches, often in a variety of patterns.\n The triple thickness of quilts provided bedcovers of the necessary warmth. Their\n elaborate designs made quilts a focal point in the decoration of eighteenth- and\n nineteenth-century American homes. Patchwork, or pieced, quilts are distinctively\n American and provide another example of the thrift of American housewives. Although\n commercially produced printed cottons were available from the late nineteenth century\n onward, these fabrics were regarded as precious; every scrap was used, and pieces of\n fabric from worn-out clothing were carefully saved. From her scrap bag, the housewife\n took bits of fabric and cut them into geometric shapes. The geometric units were then\n pieced, or sewn, together in a pleasing design. The resulting panel was used for the\n quilt top. This quilt top consists of small hexagons painstakingly pieced together to\n form an overall mosaiclike design. In this type of pieced quilt, made about 1810, heavy\n paper was used under the patches in order to create well-defined shapes. The edges\n of the fabric were folded under the paper hexagons and basted in place. The hexagons\n were then pieced together to form the quilt top; careful attention was given to \n the placement of the colors in order to achieve an orderly and lively design.\n ' +p23087 +sa(dp23088 +g18779 +S'Catherine Fowler' +p23089 +sg18781 +S'Bedspread' +p23090 +sg18783 +g27 +sa(dp23091 +g18779 +S'Artist Information (' +p23092 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00055/a0005539.jpg' +p23093 +sg18781 +S'Applique Bedspread' +p23094 +sg18783 +g27 +sa(dp23095 +g18779 +S'Catherine Fowler' +p23096 +sg18781 +S'Turkey Track Quilt' +p23097 +sg18783 +g27 +sa(dp23098 +g18781 +S'Large dish with scale border; in the center, an imperial Roman figure and the letter N crowned' +p23099 +sg18779 +S'Deruta 16th Century' +p23100 +sg18787 +S'overall (diameter): 42.6 cm (16 3/4 in.)' +p23101 +sg18789 +S'\ntin-glazed earthenware (maiolica)' +p23102 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000508.jpg' +p23103 +sg18783 +g27 +sa(dp23104 +g18779 +S'Daniel Fletcher' +p23105 +sg18781 +S'Patchwork Quilt with Eagles' +p23106 +sg18783 +g27 +sa(dp23107 +g18779 +S'Therkel Anderson' +p23108 +sg18781 +S'Dated Quilt' +p23109 +sg18783 +g27 +sa(dp23110 +g18779 +S'Nancy Crimi' +p23111 +sg18781 +S'Wedding Bonnet' +p23112 +sg18783 +g27 +sa(dp23113 +g18779 +S'Roberta Spicer' +p23114 +sg18781 +S'Bonnet' +p23115 +sg18783 +g27 +sa(dp23116 +g18779 +S'Ralph Atkinson' +p23117 +sg18781 +S'Quilt - Circle with Tulips' +p23118 +sg18783 +g27 +sa(dp23119 +g18779 +S'Byron Dingman' +p23120 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00002/a00002be.jpg' +p23121 +sg18781 +S'Quilt' +p23122 +sg18783 +S'In this detail of a mid-nineteenth century appliqué quilt, the elaborate quilted patterns\n attain a decorative importance equal to that of the brightly colored appliqué work.\n The quilting is a complex combination of motifs featuring scrolling flowers, feathers,\n and the American eagle. The quilting has been given great prominence in the overall\n design of the piece not only through density of pattern, but also through the addition\n of extra padding to produce a sculptural appearance. The sculptural effect was\n achieved by a special method of stuffing. The designs were first outlined with quilting\n stitches; then, by means of a long needle, cotton wadding was pushed through the\n coarse backing of the quilt. As a result the quilted design stands out in high relief\n against the background. In the early nineteenth century, women made elegant all-white\n quilts or coverlets decorated entirely with such "stuffed-work" designs. In this example,\n the raised stuffed-work design enhances the colorful appliqué decoration\n and adds greatly to the ornamental quality of the quilt.\n ' +p23123 +sa(dp23124 +g18779 +S'Flora G. Guerra' +p23125 +sg18781 +S'Friendship Quilt' +p23126 +sg18783 +g27 +sa(dp23127 +g18779 +S'Florence Truelson' +p23128 +sg18781 +S'Friendship Quilt' +p23129 +sg18783 +g27 +sa(dp23130 +g18779 +S'Frank Maurer' +p23131 +sg18781 +S'Pillow Top' +p23132 +sg18783 +g27 +sa(dp23133 +g18779 +S'Florence Truelson' +p23134 +sg18781 +S'Patchwork Quilt' +p23135 +sg18783 +g27 +sa(dp23136 +g18779 +S'Deruta 16th Century' +p23137 +sg18787 +S'tin-glazed earthenware (maiolica)' +p23138 +sg18789 +S'c. 1500/1525' +p23139 +sg18781 +S'Large dish with border of floral scrollwork with cornucopias and a crown; in the center, a griffin holding a shield of arms amid roses' +p23140 +sg18783 +g27 +sa(dp23141 +g18779 +S'Lloyd Charles Lemcke' +p23142 +sg18781 +S'Star Design Comforter' +p23143 +sg18783 +g27 +sa(dp23144 +g18779 +S'Raymond Manupelli' +p23145 +sg18781 +S'Black Lace Shawl' +p23146 +sg18783 +g27 +sa(dp23147 +g18779 +S'Carl Buergerniss' +p23148 +sg18781 +S'Black Lace' +p23149 +sg18783 +g27 +sa(dp23150 +g18779 +S'Dorothy Dwin' +p23151 +sg18781 +S'Runner' +p23152 +sg18783 +g27 +sa(dp23153 +g18779 +S'Arthur G. Merkley' +p23154 +sg18781 +S'Red and White Napkin' +p23155 +sg18783 +g27 +sa(dp23156 +g18779 +S'Jessie M. Benge' +p23157 +sg18781 +S'Bonnet' +p23158 +sg18783 +g27 +sa(dp23159 +g18779 +S'Eva Wilson' +p23160 +sg18781 +S'Mat' +p23161 +sg18783 +g27 +sa(dp23162 +g18779 +S'Nancy Crimi' +p23163 +sg18781 +S'Bonnet' +p23164 +sg18783 +g27 +sa(dp23165 +g18779 +S'Lucille Lacoursiere' +p23166 +sg18781 +S'Woven Coverlet' +p23167 +sg18783 +g27 +sa(dp23168 +g18779 +S'Katherine Hastings' +p23169 +sg18781 +S'Piece of a Coverlet - Cobalt Blue & Rose' +p23170 +sg18783 +g27 +sa(dp23171 +g18781 +S'Large dish with border of floral scrollwork and cornucopias; in the center, profile bust of "Faustina"' +p23172 +sg18779 +S'Deruta 16th Century' +p23173 +sg18787 +S'overall (diameter): 41.2 cm (16 1/4 in.)' +p23174 +sg18789 +S'\ntin-glazed earthenware (maiolica)' +p23175 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000509.jpg' +p23176 +sg18783 +g27 +sa(dp23177 +g18779 +S'Katherine Hastings' +p23178 +sg18781 +S'Coverlet' +p23179 +sg18783 +g27 +sa(dp23180 +g18779 +S'Dorothy Posten' +p23181 +sg18781 +S'Coverlet' +p23182 +sg18783 +g27 +sa(dp23183 +g18779 +S'Katherine Hastings' +p23184 +sg18781 +S'Coverlet' +p23185 +sg18783 +g27 +sa(dp23186 +g18779 +S'Edward White' +p23187 +sg18781 +S'Coverlet' +p23188 +sg18783 +g27 +sa(dp23189 +g18779 +S'Byron Dingman' +p23190 +sg18781 +S'Woven Textile' +p23191 +sg18783 +g27 +sa(dp23192 +g18779 +S'Artist Information (' +p23193 +sg18781 +S'Handwoven Table Cover' +p23194 +sg18783 +g27 +sa(dp23195 +g18779 +S'Carmel Wilson' +p23196 +sg18781 +S'Woven Coverlet' +p23197 +sg18783 +g27 +sa(dp23198 +g18779 +S'Jean Gordon' +p23199 +sg18781 +S'Hoop' +p23200 +sg18783 +g27 +sa(dp23201 +g18779 +S'American 20th Century' +p23202 +sg18781 +S'Shoe' +p23203 +sg18783 +g27 +sa(dp23204 +g18779 +S'Alois E. Ulrich' +p23205 +sg18781 +S'Woven Coverlet' +p23206 +sg18783 +g27 +sa(dp23207 +g18781 +S'Large dish with segmental border of plant sprays and scale pattern; in the center, a profile bust of a woman in a winged headdress' +p23208 +sg18779 +S'Deruta 16th Century' +p23209 +sg18787 +S'overall (diameter): 41.3 cm (16 1/4 in.)' +p23210 +sg18789 +S'\ntin-glazed earthenware (maiolica)' +p23211 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a000050a.jpg' +p23212 +sg18783 +g27 +sa(dp23213 +g18779 +S'Elmer Weise' +p23214 +sg18781 +S'Handwoven Tapestry Coverlet' +p23215 +sg18783 +g27 +sa(dp23216 +g18779 +S'Melita Hofmann' +p23217 +sg18781 +S'Black Leather Slipper' +p23218 +sg18783 +g27 +sa(dp23219 +g18779 +S'Paul Kelly' +p23220 +sg18781 +S'Jacquard Coverlet' +p23221 +sg18783 +g27 +sa(dp23222 +g18779 +S'Edith Magnette' +p23223 +sg18781 +S'Double Faced Blanket' +p23224 +sg18783 +g27 +sa(dp23225 +g18779 +S'Edith Magnette' +p23226 +sg18781 +S'Woven Coverlet' +p23227 +sg18783 +g27 +sa(dp23228 +g18779 +S'Suzanne Roy' +p23229 +sg18781 +S'Coverlet' +p23230 +sg18783 +g27 +sa(dp23231 +g18779 +S'Charlotte Winter' +p23232 +sg18781 +S'Coverlet' +p23233 +sg18783 +g27 +sa(dp23234 +g18779 +S'Arthur G. Merkley' +p23235 +sg18781 +S'Tyler Coverlet' +p23236 +sg18783 +g27 +sa(dp23237 +g18779 +S'Arthur G. Merkley' +p23238 +sg18781 +S'Tyler Coverlet' +p23239 +sg18783 +g27 +sa(dp23240 +g18779 +S'Arthur G. Merkley' +p23241 +sg18781 +S'Tyler Coverlet (Section)' +p23242 +sg18783 +g27 +sa(dp23243 +g18779 +S'Deruta 16th Century' +p23244 +sg18787 +S'overall (diameter): 41 cm (16 1/8 in.)' +p23245 +sg18789 +S'\ntin-glazed earthenware (maiolica)' +p23246 +sg18781 +S'Large dish with segmental border of half plant sprays and scale pattern; in the center, profile bust of a woman' +p23247 +sg18783 +g27 +sa(dp23248 +g18779 +S'Arthur G. Merkley' +p23249 +sg18781 +S'Tyler Coverlet' +p23250 +sg18783 +g27 +sa(dp23251 +g18779 +S'Arthur G. Merkley' +p23252 +sg18781 +S'Tyler Coverlet' +p23253 +sg18783 +g27 +sa(dp23254 +g18779 +S'Harry Jennings' +p23255 +sg18781 +S'Coverlet' +p23256 +sg18783 +g27 +sa(dp23257 +g18779 +S'Helen Bronson' +p23258 +sg18781 +S'Woven Coverlet' +p23259 +sg18783 +g27 +sa(dp23260 +g18779 +S'Theodore Pfitzer' +p23261 +sg18781 +S'Woven Coverlet' +p23262 +sg18783 +g27 +sa(dp23263 +g18779 +S'Therkel Anderson' +p23264 +sg18781 +S'Coverlet' +p23265 +sg18783 +g27 +sa(dp23266 +g18779 +S'J. Howard Iams' +p23267 +sg18781 +S'Coverlet' +p23268 +sg18783 +g27 +sa(dp23269 +g18779 +S'Byron Dingman' +p23270 +sg18781 +S'Coverlet, "Boston Town"' +p23271 +sg18783 +g27 +sa(dp23272 +g18779 +S'Ralph Atkinson' +p23273 +sg18781 +S'Coverlet' +p23274 +sg18783 +g27 +sa(dp23275 +g18779 +S'Charlotte Angus' +p23276 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00002/a00002f0.jpg' +p23277 +sg18781 +S'Woven Coverlet' +p23278 +sg18783 +S'The most colorful and complex of the woven coverlets were those made on looms equipped with a Jacquard attachment. This device, invented in France by Joseph Jacquard in 1801, contained a series of pattern cards, punched through with holes through \n which the threads were guided. Mounted on an existing loom in place of the conventional heddles, this mechanism allowed each thread in the warp to be separately controlled, thus making possible an almost unlimited range of patterns and variations \n in design. The Jacquard attachment was introduced in America in the 1820s, resulting in the production of innumerable elaborately patterned coverlets. Here is a detail of a Jacquard coverlet made in Bucks County, Pennsylvania. While patriotic symbols, \n such as the American eagle, were frequently featured in Jacquard designs, this coverlet retains traditional Pennsylvania German motifs in its stylized tulips, roosters, and stars. Woven inscriptions often appear at the corners of Jacquard coverlets. \n Here the weaver has followed the common practice of including his own name and that of the owner, the date, and the name of the county.\n ' +p23279 +sa(dp23280 +g18781 +S'Large dish with scale border; in the center, the Madonna and Child' +p23281 +sg18779 +S'Deruta 16th Century' +p23282 +sg18787 +S'overall (diameter): 45.5 cm (17 15/16 in.)' +p23283 +sg18789 +S'\ntin-glazed earthenware (maiolica)' +p23284 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a000050b.jpg' +p23285 +sg18783 +g27 +sa(dp23286 +g18779 +S'Byron Dingman' +p23287 +sg18781 +S'Coverlet' +p23288 +sg18783 +g27 +sa(dp23289 +g18779 +S'Eva Wilson' +p23290 +sg18781 +S'Coverlet' +p23291 +sg18783 +g27 +sa(dp23292 +g18779 +S'Esther Hansen' +p23293 +sg18781 +S'Textile of George Washington' +p23294 +sg18783 +g27 +sa(dp23295 +g18779 +S'Betty Jacob' +p23296 +sg18781 +S'Coverlet' +p23297 +sg18783 +g27 +sa(dp23298 +g18779 +S'Melita Hofmann' +p23299 +sg18781 +S'Slipper' +p23300 +sg18783 +g27 +sa(dp23301 +g18779 +S'Alice Braun' +p23302 +sg18781 +S'Carpet Sample' +p23303 +sg18783 +g27 +sa(dp23304 +g18779 +S'Clyde L. Cheney' +p23305 +sg18781 +S'Rag Carpet' +p23306 +sg18783 +g27 +sa(dp23307 +g18779 +S'Frank J. Mace' +p23308 +sg18781 +S'Woven Rag Carpet' +p23309 +sg18783 +g27 +sa(dp23310 +g18779 +S'Edward Kibbee' +p23311 +sg18781 +S'Printed Textile' +p23312 +sg18783 +g27 +sa(dp23313 +g18779 +S'Edward Kibbee' +p23314 +sg18781 +S'Printed Bedspread' +p23315 +sg18783 +g27 +sa(dp23316 +g18781 +S'Small flat plate with border of cornucopias, scrollwork, and lozenges in four sections; in the center, a bust of Saint Paul with raised sword' +p23317 +sg18779 +S'Artist Information (' +p23318 +sg18787 +S'Italian, c. 1465/1470 - c. 1553' +p23319 +sg18789 +S'(related artist)' +p23320 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000506.jpg' +p23321 +sg18783 +g27 +sa(dp23322 +g18779 +S'A. Zimet' +p23323 +sg18781 +S'Patchwork Quilt' +p23324 +sg18783 +g27 +sa(dp23325 +g18779 +S'Esther Hansen' +p23326 +sg18781 +S'Historical Printed Textile' +p23327 +sg18783 +g27 +sa(dp23328 +g18779 +S'Michael Trekur' +p23329 +sg18781 +S'Printed Textile: Genre Scene' +p23330 +sg18783 +g27 +sa(dp23331 +g18779 +S'Sylvia De Zon' +p23332 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00002/a00002c6.jpg' +p23333 +sg18781 +S'Chintz' +p23334 +sg18783 +S'Reflecting the English and European fashions during the eighteenth century, printed\n cottons of all types were in great demand in America. Most printed textiles of the time\n were imported from England, since laws prohibited the manufacture and printing of\n fabrics in the colonies. By the middle of the eighteenth century, however, the colonists\n were defying the English bans, and cottons and linens were being printed openly by\n shops in New England and in the mid-Atlantic colonies. Early printed textiles, like this\n example, received their patterns through a technique of printing with wood blocks.\n A design was cut in high relief on a block of wood. Colored dyes were applied to the\n relief design, which was then stamped on the fabric, thus transferring the pattern.\n Along with historical scenes based upon American figures and events, floral patterns\n were popular. In this late eighteenth-century American printed cotton, the lavish pattern\n of brightly colored flowers recalls the elaborate designs of Indian fabrics and of their\n European counterparts.\n ' +p23335 +sa(dp23336 +g18779 +S'Dorothy Dwin' +p23337 +sg18781 +S'Historical Printed Textile' +p23338 +sg18783 +g27 +sa(dp23339 +g18779 +S'Charlotte Winter' +p23340 +sg18781 +S'Printed Cotton' +p23341 +sg18783 +g27 +sa(dp23342 +g18779 +S'Ernest Capaldo' +p23343 +sg18781 +S'Historical Printed Textile' +p23344 +sg18783 +g27 +sa(dp23345 +g18779 +S'Dorothy Dwin' +p23346 +sg18781 +S'Printed Textile' +p23347 +sg18783 +g27 +sa(dp23348 +g18779 +S'Catherine Fowler' +p23349 +sg18781 +S'Printed Cotton' +p23350 +sg18783 +g27 +sa(dp23351 +g18779 +S'Arlene Perkins' +p23352 +sg18781 +S'Bedspread' +p23353 +sg18783 +g27 +sa(dp23354 +g18781 +S'Plate with border of rounded hills within pointed arches with flowers between them; in the center, a wading bird between stylized plants' +p23355 +sg18779 +S'Artist Information (' +p23356 +sg18787 +g27 +sg18789 +S'(ceramist)' +p23357 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a000050c.jpg' +p23358 +sg18783 +g27 +sa(dp23359 +g18779 +S'Ernest Capaldo' +p23360 +sg18781 +S'Printed Textile' +p23361 +sg18783 +g27 +sa(dp23362 +g18779 +S'Ernest Capaldo' +p23363 +sg18781 +S'Printed Cotton' +p23364 +sg18783 +g27 +sa(dp23365 +g18779 +S'Angelo Bulone' +p23366 +sg18781 +S'Textile (State Emblems)' +p23367 +sg18783 +g27 +sa(dp23368 +g18779 +S'Frances Lichten' +p23369 +sg18781 +S'Patchwork Bedspread Material' +p23370 +sg18783 +g27 +sa(dp23371 +g18779 +S'Frances Lichten' +p23372 +sg18781 +S'Patchwork Bedspread' +p23373 +sg18783 +g27 +sa(dp23374 +g18779 +S'H. Langden Brown' +p23375 +sg18781 +S'Centennial Textile - Flag' +p23376 +sg18783 +g27 +sa(dp23377 +g18779 +S'Marie Alain' +p23378 +sg18781 +S'Nightcap' +p23379 +sg18783 +g27 +sa(dp23380 +g18779 +S'Lillian Causey' +p23381 +sg18781 +S'Sleighing Bonnet' +p23382 +sg18783 +g27 +sa(dp23383 +g18779 +S'Stella Mosher' +p23384 +sg18781 +S'Bonnet' +p23385 +sg18783 +g27 +sa(dp23386 +g18779 +S'Stella Mosher' +p23387 +sg18781 +S'Bonnet' +p23388 +sg18783 +g27 +sa(dp23389 +g18781 +S'Plate with running plant border and geometric panels on well; in the center, profile bust of a man in armor' +p23390 +sg18779 +S'Artist Information (' +p23391 +sg18787 +g27 +sg18789 +S'(ceramist)' +p23392 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a000050e.jpg' +p23393 +sg18783 +g27 +sa(dp23394 +g18779 +S'Beverly Chichester' +p23395 +sg18781 +S'Hat Model' +p23396 +sg18783 +g27 +sa(dp23397 +g18779 +S'Wilbur M Rice' +p23398 +sg18781 +S'Horseshoe Bonnet' +p23399 +sg18783 +g27 +sa(dp23400 +g18779 +S'Florence Earl' +p23401 +sg18781 +S'Bonnet' +p23402 +sg18783 +g27 +sa(dp23403 +g18779 +S'Henry De Wolfe' +p23404 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a0000339.jpg' +p23405 +sg18781 +S'Lace and Straw Bonnet' +p23406 +sg18783 +S"The style of women's hats is another fashion that changed about the time of \n the Civil War. The earlier bonnet that covered the hair and shielded the face \n gave way to small, elaborately trimmed hats with veils.\n This straw hat with a black veil is dated about 1865. The bowed ribbon, seen behind \n the veil, was tied under the woman's chin to hold the hat in place. A knitted \n hemp scarf with fringed ends is wound around the center crown and falls over the \n rim at the back.\n " +p23407 +sa(dp23408 +g18779 +S'Nancy Crimi' +p23409 +sg18781 +S'Bonnet' +p23410 +sg18783 +g27 +sa(dp23411 +g18779 +S'Gwyneth King' +p23412 +sg18781 +S'Bonnet' +p23413 +sg18783 +g27 +sa(dp23414 +g18779 +S'Marie Alain' +p23415 +sg18781 +S'Collar' +p23416 +sg18783 +g27 +sa(dp23417 +g18779 +S'Andrew Topolosky' +p23418 +sg18781 +S'Collar' +p23419 +sg18783 +g27 +sa(dp23420 +g18779 +S'Paul Ward' +p23421 +sg18781 +S'Nightgown' +p23422 +sg18783 +g27 +sa(dp23423 +g18779 +S'Jean Gordon' +p23424 +sg18781 +S'Brocade Shoes' +p23425 +sg18783 +g27 +sa(dp23426 +g18781 +S'Broad-rimmed bowl with palmette and cornucopia border; in the center, shield of arms of the Saracinelli of Orvieto' +p23427 +sg18779 +S'Artist Information (' +p23428 +sg18787 +S'Italian, c. 1465/1470 - c. 1553' +p23429 +sg18789 +S'(related artist)' +p23430 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00004/a00004f6.jpg' +p23431 +sg18783 +g27 +sa(dp23432 +g18779 +S'Mae Szilvasy' +p23433 +sg18781 +S'Wrapper' +p23434 +sg18783 +g27 +sa(dp23435 +g18779 +S'Marie Alain' +p23436 +sg18781 +S'Quaker Cape' +p23437 +sg18783 +g27 +sa(dp23438 +g18779 +S'Rex F. Bush' +p23439 +sg18781 +S'Silk Apron' +p23440 +sg18783 +g27 +sa(dp23441 +g18779 +S'Erwin Schwabe' +p23442 +sg18781 +S'Silk Apron' +p23443 +sg18783 +g27 +sa(dp23444 +g18779 +S'Douglas Campbell' +p23445 +sg18781 +S'Gown' +p23446 +sg18783 +g27 +sa(dp23447 +g18779 +S'Douglas Campbell' +p23448 +sg18781 +S'Gown' +p23449 +sg18783 +g27 +sa(dp23450 +g18779 +S'Lillian Causey' +p23451 +sg18781 +S'Gown' +p23452 +sg18783 +g27 +sa(dp23453 +g18779 +S'Douglas Campbell' +p23454 +sg18781 +S'Gown, Coat, and Muff' +p23455 +sg18783 +g27 +sa(dp23456 +g18779 +S'Nancy Crimi' +p23457 +sg18781 +S"Man's Shoe" +p23458 +sg18783 +g27 +sa(dp23459 +g18779 +S'Lillian Causey' +p23460 +sg18781 +S'Dressing Gown' +p23461 +sg18783 +g27 +sa(dp23462 +g18781 +S'Shallow bowl with Hercules overcoming Antaeus' +p23463 +sg18779 +S'Artist Information (' +p23464 +sg18787 +S'Italian, c. 1465/1470 - c. 1553' +p23465 +sg18789 +S'(related artist)' +p23466 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00004/a00004f7.jpg' +p23467 +sg18783 +g27 +sa(dp23468 +g18779 +S'Marie Alain' +p23469 +sg18781 +S'Dress' +p23470 +sg18783 +g27 +sa(dp23471 +g18779 +S'Marie Alain' +p23472 +sg18781 +S'Dress' +p23473 +sg18783 +g27 +sa(dp23474 +g18779 +S'Betty Fuerst' +p23475 +sg18781 +S'Dress' +p23476 +sg18783 +g27 +sa(dp23477 +g18779 +S'Julie C. Brush' +p23478 +sg18781 +S'Dress' +p23479 +sg18783 +g27 +sa(dp23480 +g18779 +S'Erwin Schwabe' +p23481 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a0000356.jpg' +p23482 +sg18781 +S'Dress' +p23483 +sg18783 +S"A dramatic change in fashion away from extravagance and formality began to \n emerge in women's clothes during the last decades of the eighteenth century. \n Influenced by a resurgent interest in classical culture, owing to the archeological \n excavations of Pompii and Herculaneum earlier in the century, a neoclassical \n style of clothing came into vogue. More loosely structured dresses made from \n lightweight fabrics appeared in the 1770s and remained popular throughout the \n first two decades of the nineteenth century. Frequently these dresses featured \n a high-waisted bodice that was gathered and adjusted by means of a drawstring. \n The example shown here, dated about 1822, consists of a satin underdress and an \n embroidered gauze or net overdress.\n " +p23484 +sa(dp23485 +g18779 +S'Julie C. Brush' +p23486 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a0000350.jpg' +p23487 +sg18781 +S'Dress' +p23488 +sg18783 +S'In the eighteenth century, elegant dresses were created with elaborately patterned \n fabrics, lace trim, and ruffles. Costume accessories and hair styles were equally \n elaborate, modeled on the fashions of women in the French court. French fashion \n exerted strong influence on English fashions, which were enthusiastically adopted \n by colonial gentlewomen.\n This dress is made from a silk fabric known as "spitalfields," from an area in \n London where designers and weavers produced silks in a great variety of handsome \n patterns. Spitalfields fabrics can be dated quite precisely because of surviving \n records of the weaving designs. This dress can be dated around 1740, since the \n fabric was most likely woven in that year.\n ' +p23489 +sa(dp23490 +g18779 +S'Julie C. Brush' +p23491 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a0000330.jpg' +p23492 +sg18781 +S'House Dress' +p23493 +sg18783 +S'Multicolored printed cotton or linen fabrics were fashionable in Europe as \n early as the seventeenth century, when trade with the East began to flourish. \n Later, English and French textile manufacturers began to produce their own \n versions to compete with imported materials. By the beginning of the nineteenth \n century, American textile manufacturers were producing inexpensive printed \n fabrics because of the availability of cheap cotton and the introduction of \n mechanical spinning machines.\n This "house dress," from about 1835 or 1836, is made of a printed cotton fabric. \n The sleeves, between the forearm and shoulder, required a special down-filled \n padding to support their large balloon shape. The skirt was extended outward by \n layers of petticoats.\n ' +p23494 +sa(dp23495 +g18779 +S'Julie C. Brush' +p23496 +sg18781 +S'Dress' +p23497 +sg18783 +g27 +sa(dp23498 +g18779 +S'Hedwig Emanuel' +p23499 +sg18781 +S'Dress' +p23500 +sg18783 +g27 +sa(dp23501 +g18779 +S'Henry De Wolfe' +p23502 +sg18781 +S'Dress' +p23503 +sg18783 +g27 +sa(dp23504 +g18781 +S'Plate with border of foliate scrollwork; in the center, shield of arms of Vigerio of Savona' +p23505 +sg18779 +S'Artist Information (' +p23506 +sg18787 +S'Italian, c. 1465/1470 - c. 1553' +p23507 +sg18789 +S'(related artist)' +p23508 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00055/a00055e9.jpg' +p23509 +sg18783 +g27 +sa(dp23510 +g18779 +S'Nancy Crimi' +p23511 +sg18781 +S'Dress' +p23512 +sg18783 +g27 +sa(dp23513 +g18779 +S'Nancy Crimi' +p23514 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a000035a.jpg' +p23515 +sg18781 +S'Afternoon Dress' +p23516 +sg18783 +S'Women\'s fashions changed somewhat about the time of the Civil War. Most noticeable \n is the transition in the shape of the skirt from the full circular style to one \n in which the fullness is at the back.\n This two-piece, red silk "afternoon" dress has a cage-type skirt hoop to emphasize \n the fullness behind and includes a train at the floor to carry out the effect. \n Double sleeves were popular in the 1850s and 1860s; the idea was adapted from \n men\'s fashions where the shirt cuffs protruded beyond the sleeves of the jacket. \n Here the undersleeve, or "engageant," is of lace.\n ' +p23517 +sa(dp23518 +g18779 +S'Virginia Berge' +p23519 +sg18781 +S'Dress' +p23520 +sg18783 +g27 +sa(dp23521 +g18779 +S'J. Howard Iams' +p23522 +sg18781 +S'Dress' +p23523 +sg18783 +g27 +sa(dp23524 +g18779 +S'Charles Bowman' +p23525 +sg18781 +S"Man's Vest" +p23526 +sg18783 +g27 +sa(dp23527 +g18779 +S'Lillian Causey' +p23528 +sg18781 +S"Child's Coat" +p23529 +sg18783 +g27 +sa(dp23530 +g18779 +S'Douglas Campbell' +p23531 +sg18781 +S"Boy's Jacket" +p23532 +sg18783 +g27 +sa(dp23533 +g18779 +S'Marie Famularo' +p23534 +sg18781 +S"Infant's Dress" +p23535 +sg18783 +g27 +sa(dp23536 +g18779 +S'Max Fernekes' +p23537 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00055/a000553a.jpg' +p23538 +sg18781 +S"Challis Girl's Dress" +p23539 +sg18783 +g27 +sa(dp23540 +g18779 +S'Cecil Smith' +p23541 +sg18781 +S'Silver Dollar Spurs' +p23542 +sg18783 +g27 +sa(dp23543 +g18781 +S'Plate with border of foliate scrollwork with dolphin heads and cornucopias; in the center, shield of arms of Vigerio of Savona' +p23544 +sg18779 +S'Artist Information (' +p23545 +sg18787 +S'Italian, c. 1465/1470 - c. 1553' +p23546 +sg18789 +S'(related artist)' +p23547 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00004/a00004f8.jpg' +p23548 +sg18783 +g27 +sa(dp23549 +g18779 +S'Frank M. Keane' +p23550 +sg18791 +S'http://www.nga.gov:80/thumb-l/a000f8/a000f8ff.jpg' +p23551 +sg18781 +S'Uniform Accessories' +p23552 +sg18783 +g27 +sa(dp23553 +g18779 +S'Frank McEntee' +p23554 +sg18781 +S'Pannier Pockets' +p23555 +sg18783 +g27 +sa(dp23556 +g18779 +S'Georgine E. Mason' +p23557 +sg18781 +S'Bag' +p23558 +sg18783 +g27 +sa(dp23559 +g18779 +S'Lillian Causey' +p23560 +sg18781 +S'Parasol' +p23561 +sg18783 +g27 +sa(dp23562 +g18779 +S'James Jones' +p23563 +sg18781 +S'Mision Santa Clara' +p23564 +sg18783 +g27 +sa(dp23565 +g18779 +S'Esther Hansen' +p23566 +sg18781 +S"Lady's Slipper" +p23567 +sg18783 +g27 +sa(dp23568 +g18779 +S'Harry G. Aberdeen' +p23569 +sg18781 +S'Locket for Perfume' +p23570 +sg18783 +g27 +sa(dp23571 +g18779 +S'Orville Cline' +p23572 +sg18781 +S'Fan' +p23573 +sg18783 +g27 +sa(dp23574 +g18779 +S'Frank Maurer' +p23575 +sg18781 +S'Fan' +p23576 +sg18783 +g27 +sa(dp23577 +g18779 +S'Eva Wilson' +p23578 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00058/a0005897.jpg' +p23579 +sg18781 +S'Sampler' +p23580 +sg18783 +g27 +sa(dp23581 +g18779 +S'Artist Information (' +p23582 +sg18787 +S'Italian, c. 1465/1470 - c. 1553' +p23583 +sg18789 +S'(related artist)' +p23584 +sg18781 +S'Plate with the reconciliation of Cupid and Minerva' +p23585 +sg18783 +g27 +sa(dp23586 +g18779 +S'Katherine Hastings' +p23587 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00058/a00058d3.jpg' +p23588 +sg18781 +S'Sampler' +p23589 +sg18783 +g27 +sa(dp23590 +g18779 +S'Katherine Hastings' +p23591 +sg18781 +S'Sampler' +p23592 +sg18783 +g27 +sa(dp23593 +g18779 +S'Eva Wilson' +p23594 +sg18781 +S'Round Sampler' +p23595 +sg18783 +g27 +sa(dp23596 +g18779 +S'Walter Praefke' +p23597 +sg18781 +S'Sampler' +p23598 +sg18783 +g27 +sa(dp23599 +g18779 +S'Vera Van Voris' +p23600 +sg18781 +S'Barber Pole' +p23601 +sg18783 +g27 +sa(dp23602 +g18779 +S'Melita Hofmann' +p23603 +sg18781 +S'Velvet Slipper' +p23604 +sg18783 +g27 +sa(dp23605 +g18779 +S'Isabella Ruth Doerfler' +p23606 +sg18781 +S'Bed Hanging' +p23607 +sg18783 +g27 +sa(dp23608 +g18779 +S'Isabella Ruth Doerfler' +p23609 +sg18781 +S'Bed Valance Detail' +p23610 +sg18783 +g27 +sa(dp23611 +g18779 +S'Martha Elliot' +p23612 +sg18781 +S'Embroidery' +p23613 +sg18783 +g27 +sa(dp23614 +g18779 +S'Ella Josephine Sterling' +p23615 +sg18781 +S'Crewel Embroidery' +p23616 +sg18783 +g27 +sa(dp23617 +g18781 +S'Flat plate with a battle scene' +p23618 +sg18779 +S'Artist Information (' +p23619 +sg18787 +S'Italian, c. 1465/1470 - c. 1553' +p23620 +sg18789 +S'(related artist)' +p23621 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000517.jpg' +p23622 +sg18783 +g27 +sa(dp23623 +g18779 +S'Lawrence Peterson' +p23624 +sg18781 +S'Crewel Embroidery for Chair Seat' +p23625 +sg18783 +g27 +sa(dp23626 +g18779 +S'Lawrence Peterson' +p23627 +sg18781 +S'Crewel Embroidery Valance' +p23628 +sg18783 +g27 +sa(dp23629 +g18779 +S'Lawrence Peterson' +p23630 +sg18781 +S'Crewel Bedspread' +p23631 +sg18783 +g27 +sa(dp23632 +g18779 +S'Phyllis Dorr' +p23633 +sg18781 +S'Embroidered Christening Blanket' +p23634 +sg18783 +g27 +sa(dp23635 +g18779 +S'Helen E. Gilman' +p23636 +sg18781 +S'Crewel Bed Hanging' +p23637 +sg18783 +g27 +sa(dp23638 +g18779 +S'Lawrence Peterson' +p23639 +sg18781 +S'Crewel Embroidery (Border)' +p23640 +sg18783 +g27 +sa(dp23641 +g18779 +S'Mildred E. Bent' +p23642 +sg18781 +S'Bedspread (Detail)' +p23643 +sg18783 +g27 +sa(dp23644 +g18779 +S'Edith Magnette' +p23645 +sg18781 +S'Crewel Embroidery for Table' +p23646 +sg18783 +g27 +sa(dp23647 +g18779 +S'Charlotte Winter' +p23648 +sg18781 +S'Bedspread' +p23649 +sg18783 +g27 +sa(dp23650 +g18779 +S'Mae A. Clarke' +p23651 +sg18781 +S'Valance' +p23652 +sg18783 +g27 +sa(dp23653 +g18781 +S'Plate with border of palmettes and scrollwork; in the center, a shield of arms and the initials A.F.' +p23654 +sg18779 +S'Artist Information (' +p23655 +sg18787 +S'Italian, c. 1465/1470 - c. 1553' +p23656 +sg18789 +S'(related artist)' +p23657 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00004/a00004f9.jpg' +p23658 +sg18783 +g27 +sa(dp23659 +g18779 +S'Jenny Almgren' +p23660 +sg18781 +S'Embroidered Cotton Blanket' +p23661 +sg18783 +g27 +sa(dp23662 +g18779 +S'J. Howard Iams' +p23663 +sg18781 +S'Afghan Carriage Robe' +p23664 +sg18783 +g27 +sa(dp23665 +g18779 +S'Herman O. Stroh' +p23666 +sg18781 +S'Embroidery' +p23667 +sg18783 +g27 +sa(dp23668 +g18779 +S'Maud M. Holme' +p23669 +sg18781 +S'Quilt Applique Pattern' +p23670 +sg18783 +g27 +sa(dp23671 +g18779 +S'Dorothy Gernon' +p23672 +sg18781 +S'Slipper' +p23673 +sg18783 +g27 +sa(dp23674 +g18779 +S'Dorothea Bates' +p23675 +sg18781 +S'Appliqued Quilt' +p23676 +sg18783 +g27 +sa(dp23677 +g18779 +S'Douglas Campbell' +p23678 +sg18781 +S'Pieced Quilt' +p23679 +sg18783 +g27 +sa(dp23680 +g18779 +S'Edith Magnette' +p23681 +sg18781 +S'Quilt' +p23682 +sg18783 +g27 +sa(dp23683 +g18779 +S'Edith Magnette' +p23684 +sg18781 +S'Wheel of Fortune Quilt' +p23685 +sg18783 +g27 +sa(dp23686 +g18779 +S'Edith Magnette' +p23687 +sg18781 +S'Crazy Quilt' +p23688 +sg18783 +g27 +sa(dp23689 +g18781 +S'Plate with Venus in her chariot and Cupid, riding through a night sky' +p23690 +sg18779 +S'Artist Information (' +p23691 +sg18787 +S'(ceramist)' +p23692 +sg18789 +S'\n' +p23693 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a000051d.jpg' +p23694 +sg18783 +S'\r\n Potters in several Italian cities, including Urbino, Deruta, and Gubbio, specialized in brilliantly colored tin-glazed earthenware, a luxury ceramic often embellished with metallic luster glazes. Some depicted portraits or family crests, but many were decorated with elaborate narrative scenes from the Bible or ancient mythology. These wares are known as maiolica, probably because the techniques for making them entered Italy from Spain by way of Majorca.\r\n\n ' +p23695 +sa(dp23696 +g18779 +S'Edith Magnette' +p23697 +sg18781 +S'Crazy Quilt' +p23698 +sg18783 +g27 +sa(dp23699 +g18779 +S'Edith Magnette' +p23700 +sg18781 +S'Quilt' +p23701 +sg18783 +g27 +sa(dp23702 +g18779 +S'Margaret Concha' +p23703 +sg18781 +S'Applique Quilt' +p23704 +sg18783 +g27 +sa(dp23705 +g18779 +S'Charlotte Winter' +p23706 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00002/a00002bc.jpg' +p23707 +sg18781 +S'Crazy Quilt' +p23708 +sg18783 +S'Patchwork quilts put together in random fashion are called "crazy quilts."\n The crazy quilt is the oldest form of American patchwork and evolved from the\n necessity for using every scrap of material. By the late eighteenth century, pieced\n quilts in geometric patterns had replaced crazy quilts; quilts displaying irregular patterns\n became popular again after the middle of the nineteenth century, when they were used\n as ornamental throws on couches in fashionable parlors. The crazy quilts of the late\n nineteenth century, unlike earlier quilts, generally included scraps of silk, satin, or velvet\n in addition to the customary cotton patches. The luxurious quality of the fabrics was\n emphasized by the manner in which the oddly shaped patches were pieced together.\n Unlike their earlier counterparts, the seams were sewn in elaborate embroidery stitches.\n This crazy quilt combines a variety of ornate and colorful fabrics joined by embroidery in\n contrasting hues. Additional ornamentation is provided by designs embroidered on the\n individual patches. Supplementary needlework of this kind became fashionable shortly\n before 1850 and soon became a common method of heightening the ornamental\n quality of quilts.\n ' +p23709 +sa(dp23710 +g18779 +S'Melita Hofmann' +p23711 +sg18781 +S'Slippers' +p23712 +sg18783 +g27 +sa(dp23713 +g18779 +S'Margaret Concha' +p23714 +sg18781 +S'Applique and Embroidered Coverlet' +p23715 +sg18783 +g27 +sa(dp23716 +g18779 +S'A. Zimet' +p23717 +sg18781 +S'Applique and Patchwork Quilt' +p23718 +sg18783 +g27 +sa(dp23719 +g18779 +S'Katherine Hastings' +p23720 +sg18781 +S'Quilt' +p23721 +sg18783 +g27 +sa(dp23722 +g18779 +S'Katherine Hastings' +p23723 +sg18781 +S'Feathered Star Quilt' +p23724 +sg18783 +g27 +sa(dp23725 +g18779 +S'Katherine Hastings' +p23726 +sg18781 +S'Quilt' +p23727 +sg18783 +g27 +sa(dp23728 +g18781 +S'Plate with Hero leaping to her death from her tower and the drowned Leander; in the center, a shield of arms' +p23729 +sg18779 +S'Artist Information (' +p23730 +sg18787 +S'(ceramist)' +p23731 +sg18789 +S'\n' +p23732 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000515.jpg' +p23733 +sg18783 +g27 +sa(dp23734 +g18779 +S'Dorothy Posten' +p23735 +sg18781 +S'Applique Quilt' +p23736 +sg18783 +g27 +sa(dp23737 +g18779 +S'Dorothy Posten' +p23738 +sg18781 +S'Applique Quilt' +p23739 +sg18783 +g27 +sa(dp23740 +g18779 +S'Ralph Atkinson' +p23741 +sg18781 +S'Quilt' +p23742 +sg18783 +g27 +sa(dp23743 +g18779 +S'Katherine Hastings' +p23744 +sg18781 +S'Patchwork Quilt' +p23745 +sg18783 +g27 +sa(dp23746 +g18779 +S'Katherine Hastings' +p23747 +sg18781 +S'Quilt' +p23748 +sg18783 +g27 +sa(dp23749 +g18779 +S'J. Howard Iams' +p23750 +sg18781 +S'Quilt' +p23751 +sg18783 +g27 +sa(dp23752 +g18779 +S'Dorothy Posten' +p23753 +sg18781 +S'Quilt' +p23754 +sg18783 +g27 +sa(dp23755 +g18779 +S'Dorothy Posten' +p23756 +sg18781 +S'Quilt' +p23757 +sg18783 +g27 +sa(dp23758 +g18779 +S'Charles Moss' +p23759 +sg18781 +S'Quilt' +p23760 +sg18783 +g27 +sa(dp23761 +g18779 +S'Eva Wilson' +p23762 +sg18781 +S'Quilt' +p23763 +sg18783 +g27 +sa(dp23764 +g18781 +S'Shallow bowl on low foot with the death of Laoco\xc3\xb6n and his two sons' +p23765 +sg18779 +S'Artist Information (' +p23766 +sg18787 +S'(ceramist)' +p23767 +sg18789 +S'\n' +p23768 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000525.jpg' +p23769 +sg18783 +g27 +sa(dp23770 +g18779 +S'Dorothy Posten' +p23771 +sg18781 +S'Quilt' +p23772 +sg18783 +g27 +sa(dp23773 +g18779 +S'Dorothy Posten' +p23774 +sg18781 +S'Quilt' +p23775 +sg18783 +g27 +sa(dp23776 +g18779 +S'Katherine Hastings' +p23777 +sg18781 +S'Quilt' +p23778 +sg18783 +g27 +sa(dp23779 +g18779 +S'Katherine Hastings' +p23780 +sg18781 +S'Quilt' +p23781 +sg18783 +g27 +sa(dp23782 +g18779 +S'Herman O. Stroh' +p23783 +sg18781 +S'Circus Pony Robe' +p23784 +sg18783 +g27 +sa(dp23785 +g18779 +S'Helen Balfour' +p23786 +sg18781 +S'Black Lace' +p23787 +sg18783 +g27 +sa(dp23788 +g18779 +S'Henry Granet' +p23789 +sg18781 +S'Bedspread' +p23790 +sg18783 +g27 +sa(dp23791 +g18779 +S'Edith Magnette' +p23792 +sg18781 +S'Quilt' +p23793 +sg18783 +g27 +sa(dp23794 +g18779 +S'A. Zimet' +p23795 +sg18781 +S'Quilted Coverlet' +p23796 +sg18783 +g27 +sa(dp23797 +g18779 +S'A. Zimet' +p23798 +sg18781 +S'Bedspread' +p23799 +sg18783 +g27 +sa(dp23800 +g18779 +S'Artist Information (' +p23801 +sg18787 +g27 +sg18789 +S'(ceramist)' +p23802 +sg18781 +S'Plate with Jupiter, Juno and Io transformed into a cow' +p23803 +sg18783 +g27 +sa(dp23804 +g18779 +S'Sylvia De Zon' +p23805 +sg18781 +S'Stuffed Quilt' +p23806 +sg18783 +g27 +sa(dp23807 +g18779 +S'Katherine Hastings' +p23808 +sg18781 +S'Linen Towel - Flower Design' +p23809 +sg18783 +g27 +sa(dp23810 +g18779 +S'Eva Wilson' +p23811 +sg18781 +S'Linen Table Cloth' +p23812 +sg18783 +g27 +sa(dp23813 +g18779 +S'John Thorsen' +p23814 +sg18781 +S'U.S. Grant Coverlet' +p23815 +sg18783 +g27 +sa(dp23816 +g18779 +S'Edith Magnette' +p23817 +sg18781 +S'Woven Coverlet' +p23818 +sg18783 +g27 +sa(dp23819 +g18779 +S'Helen Balfour' +p23820 +sg18781 +S'Coverlet' +p23821 +sg18783 +g27 +sa(dp23822 +g18779 +S'Mary Berner' +p23823 +sg18781 +S'Woven Jacquard Coverlet' +p23824 +sg18783 +g27 +sa(dp23825 +g18779 +S'Artist Information (' +p23826 +sg18781 +S'Star of Bethlehem Quilt' +p23827 +sg18783 +g27 +sa(dp23828 +g18779 +S'Charlotte Winter' +p23829 +sg18781 +S'Bedspread' +p23830 +sg18783 +g27 +sa(dp23831 +g18779 +S'Arthur G. Merkley' +p23832 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00004/a0000437.jpg' +p23833 +sg18781 +S'Tyler Coverlet' +p23834 +sg18783 +g27 +sa(dp23835 +g18781 +S'The Adoration of the Magi' +p23836 +sg18779 +S'Giovanni di Paolo' +p23837 +sg18787 +S'tempera on panel' +p23838 +sg18789 +S'c. 1450' +p23839 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00008/a0000812.jpg' +p23840 +sg18783 +g27 +sa(dp23841 +g18779 +S'Artist Information (' +p23842 +sg18787 +S'Italian, c. 1465/1470 - c. 1553' +p23843 +sg18789 +S'(related artist)' +p23844 +sg18781 +S'Shallow bowl on low foot with the muse Clio riding on a swan through a watery landscape' +p23845 +sg18783 +g27 +sa(dp23846 +g18779 +S'John Wilkes' +p23847 +sg18781 +S'Commemorative Coverlet' +p23848 +sg18783 +g27 +sa(dp23849 +g18779 +S'J. Howard Iams' +p23850 +sg18781 +S'Coverlet' +p23851 +sg18783 +g27 +sa(dp23852 +g18779 +S'Albert Eyth' +p23853 +sg18781 +S'Coverlet' +p23854 +sg18783 +g27 +sa(dp23855 +g18779 +S'J. Howard Iams' +p23856 +sg18781 +S'Coverlet (U.S. Seal)' +p23857 +sg18783 +g27 +sa(dp23858 +g18779 +S'Dorothy Posten' +p23859 +sg18781 +S'Woven Coverlet' +p23860 +sg18783 +g27 +sa(dp23861 +g18779 +S'J. Howard Iams' +p23862 +sg18781 +S'Woven Coverlet' +p23863 +sg18783 +g27 +sa(dp23864 +g18779 +S'Eva Wilson' +p23865 +sg18781 +S'Coverlet (Plaid)' +p23866 +sg18783 +g27 +sa(dp23867 +g18779 +S'Margaret Concha' +p23868 +sg18781 +S"Woman's Shoes" +p23869 +sg18783 +g27 +sa(dp23870 +g18779 +S'Ralph Atkinson' +p23871 +sg18781 +S'Woven Coverlet' +p23872 +sg18783 +g27 +sa(dp23873 +g18779 +S'Cornelius Christoffels' +p23874 +sg18781 +S'Coverlet' +p23875 +sg18783 +g27 +sa(dp23876 +g18781 +S'Panel with the Adoration of the Magi' +p23877 +sg18779 +S'Nicola da Urbino' +p23878 +sg18787 +S', c. 1525' +p23879 +sg18789 +S'\n' +p23880 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a000051e.jpg' +p23881 +sg18783 +g27 +sa(dp23882 +g18779 +S'American 20th Century' +p23883 +sg18781 +S'Hat' +p23884 +sg18783 +g27 +sa(dp23885 +g18779 +S'Tabea Hosier' +p23886 +sg18781 +S'Silk Gown' +p23887 +sg18783 +g27 +sa(dp23888 +g18779 +S'Rosalia Lane' +p23889 +sg18781 +S"Woman's Dress" +p23890 +sg18783 +g27 +sa(dp23891 +g18779 +S'Dorothy Posten' +p23892 +sg18781 +S'Ingrain Carpet' +p23893 +sg18783 +g27 +sa(dp23894 +g18779 +S'Robert Stewart' +p23895 +sg18781 +S'Ingrain Carpet' +p23896 +sg18783 +g27 +sa(dp23897 +g18779 +S'Raymond Manupelli' +p23898 +sg18781 +S'Chintz' +p23899 +sg18783 +g27 +sa(dp23900 +g18779 +S'Paul Ward' +p23901 +sg18781 +S'Quilt' +p23902 +sg18783 +g27 +sa(dp23903 +g18779 +S'Jean Peszel' +p23904 +sg18781 +S'Dress' +p23905 +sg18783 +g27 +sa(dp23906 +g18779 +S'Mary Berner' +p23907 +sg18781 +S'Printed Textile' +p23908 +sg18783 +g27 +sa(dp23909 +g18779 +S'Daniel Fletcher' +p23910 +sg18781 +S'Chintz Square' +p23911 +sg18783 +g27 +sa(dp23912 +g18781 +S'Circular plaque with fruited wreath enclosing a shield of arms' +p23913 +sg18779 +S'Faentine 16th Century' +p23914 +sg18787 +S'tin-glazed earthenware (maiolica)' +p23915 +sg18789 +S'1532' +p23916 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00004/a00004fc.jpg' +p23917 +sg18783 +g27 +sa(dp23918 +g18779 +S'Julius Mihalik' +p23919 +sg18781 +S'Chintz Bedspread' +p23920 +sg18783 +g27 +sa(dp23921 +g18779 +S'Eleanor Ruelos' +p23922 +sg18781 +S'Dress' +p23923 +sg18783 +g27 +sa(dp23924 +g18779 +S'Albert Eyth' +p23925 +sg18781 +S'Table Cover (Chenille)' +p23926 +sg18783 +g27 +sa(dp23927 +g18779 +S'Ralph Atkinson' +p23928 +sg18781 +S'Quilt (Flowers in Circle)' +p23929 +sg18783 +g27 +sa(dp23930 +g18779 +S'Michael Trekur' +p23931 +sg18781 +S'George Washington Banner' +p23932 +sg18783 +g27 +sa(dp23933 +g18779 +S'Artist Information (' +p23934 +sg18781 +S'Veil' +p23935 +sg18783 +g27 +sa(dp23936 +g18779 +S'Russell Madole' +p23937 +sg18781 +S'Collar' +p23938 +sg18783 +g27 +sa(dp23939 +g18779 +S'Eva Wilson' +p23940 +sg18781 +S'Shawl (Plaid)' +p23941 +sg18783 +g27 +sa(dp23942 +g18779 +S'Edith Magnette' +p23943 +sg18781 +S'Sewing Apron' +p23944 +sg18783 +g27 +sa(dp23945 +g18779 +S'Marie Mitchell' +p23946 +sg18781 +S'Riding Habit' +p23947 +sg18783 +g27 +sa(dp23948 +g18781 +S'Broad-rimmed bowl with border of dolphins and "delphigriffs"; in the center, head of a young man' +p23949 +sg18779 +S'Urbino district 16th Century' +p23950 +sg18787 +S'tin-glazed earthenware (maiolica)' +p23951 +sg18789 +S'c. 1520/1530' +p23952 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000519.jpg' +p23953 +sg18783 +g27 +sa(dp23954 +g18779 +S'Julie C. Brush' +p23955 +sg18781 +S'Dress' +p23956 +sg18783 +g27 +sa(dp23957 +g18779 +S'Gwyneth King' +p23958 +sg18781 +S'Dress' +p23959 +sg18783 +g27 +sa(dp23960 +g18779 +S'Mina Lowry' +p23961 +sg18781 +S'Dress' +p23962 +sg18783 +g27 +sa(dp23963 +g18779 +S'Angelo Bulone' +p23964 +sg18781 +S'Brocade Kerchief' +p23965 +sg18783 +g27 +sa(dp23966 +g18779 +S'Cornelius Christoffels' +p23967 +sg18781 +S'Coverlet (Section)' +p23968 +sg18783 +g27 +sa(dp23969 +g18779 +S'Dorothy Lacey' +p23970 +sg18781 +S'Woven Coverlet' +p23971 +sg18783 +g27 +sa(dp23972 +g18779 +S'Cornelius Christoffels' +p23973 +sg18781 +S'Coverlet (Section)' +p23974 +sg18783 +g27 +sa(dp23975 +g18779 +S'Cornelius Christoffels' +p23976 +sg18781 +S'Coverlet (Section)' +p23977 +sg18783 +g27 +sa(dp23978 +g18779 +S'Artist Information (' +p23979 +sg18781 +S'Coverlet' +p23980 +sg18783 +g27 +sa(dp23981 +g18779 +S'Margaret Linsley' +p23982 +sg18781 +S'Woven Coverlet' +p23983 +sg18783 +g27 +sa(dp23984 +g18781 +S"Broad-rimmed bowl with border of urns and cherubs' heads; in the center, device of a bird standing on a bundle with the inscription VINCENZO" +p23985 +sg18779 +S'Urbino district 16th Century' +p23986 +sg18787 +S'overall (diameter): 24.1 cm (9 1/2 in.)' +p23987 +sg18789 +S'\ntin-glazed earthenware (maiolica)' +p23988 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a000051a.jpg' +p23989 +sg18783 +g27 +sa(dp23990 +g18779 +S'Joseph Goldberg' +p23991 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a000037b.jpg' +p23992 +sg18781 +S'Linen Bag' +p23993 +sg18783 +S'Weaving was a craft assigned to Shaker women, known as "sisters." They produced\n a variety of fabrics such as woolens, cottons, linens, and silk. Although made primarily\n for use within the community, Shaker fabrics were sold to the outside world as well.\n Shakers usually shunned decorative designs, but they were not opposed to the restrained \n geometric patterns that were readily produced on the loom. By incorporating three \n colors -- blue, tan, and white in these pieces -- designs could be woven that expressed \n the Shaker appreciation for pattern and color.\n ' +p23994 +sa(dp23995 +g18779 +S'Joseph Goldberg' +p23996 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a000037c.jpg' +p23997 +sg18781 +S'Linen' +p23998 +sg18783 +g27 +sa(dp23999 +g18779 +S'George Constantine' +p24000 +sg18781 +S'Shaker Linen' +p24001 +sg18783 +g27 +sa(dp24002 +g18779 +S'American 20th Century' +p24003 +sg18781 +S'Handkerchief' +p24004 +sg18783 +g27 +sa(dp24005 +g18779 +S'Irene Lawson' +p24006 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a0000358.jpg' +p24007 +sg18781 +S'"Poke" Bonnet' +p24008 +sg18783 +S'This is called a "Poke" bonnet. The word "poke" refers to the fact that there \n is room at the back for the hair to be poked up inside the bonnet so that the \n hairdo was completely covered.\n Dated from the 1840s, the bonnet is Victorian in style. The Victorian Age corresponds \n to the reign of England\'s Queen Victoria. Victorianism, in general, fostered \n certain attitudes about respectability, particularly with regard to the behavior \n of women. This bonnet, fitting down over the sides of the face, was intended to \n shield the wearer from the gaze of strangers.\n ' +p24009 +sa(dp24010 +g18779 +S'Martha Elliot' +p24011 +sg18781 +S'Bed Hanging' +p24012 +sg18783 +g27 +sa(dp24013 +g18779 +S'Esther Hansen' +p24014 +sg18781 +S'Bedspread' +p24015 +sg18783 +g27 +sa(dp24016 +g18779 +S'Carl Strehlau' +p24017 +sg18781 +S'Weather Vane' +p24018 +sg18783 +g27 +sa(dp24019 +g18779 +S'American 20th Century' +p24020 +sg18781 +S'Lavender Taffeta Dress' +p24021 +sg18783 +g27 +sa(dp24022 +g18779 +S'James Jones' +p24023 +sg18781 +S'Mision San Juan Bautista' +p24024 +sg18783 +g27 +sa(dp24025 +g18781 +S'Broad-rimmed bowl with Neptune raping Theophane; arms of Pucci with an "ombrellino"' +p24026 +sg18779 +S'Francesco Xanto Avelli' +p24027 +sg18787 +S'tin-glazed earthenware (maiolica)' +p24028 +sg18789 +S'1532' +p24029 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000516.jpg' +p24030 +sg18783 +g27 +sa(dp24031 +g18779 +S'Jean Peszel' +p24032 +sg18781 +S'Dress' +p24033 +sg18783 +g27 +sa(dp24034 +g18779 +S'Hedwig Emanuel' +p24035 +sg18781 +S'Hat' +p24036 +sg18783 +g27 +sa(dp24037 +g18779 +S'American 20th Century' +p24038 +sg18781 +S'Quaker Bonnet' +p24039 +sg18783 +g27 +sa(dp24040 +g18779 +S'Jean Peszel' +p24041 +sg18781 +S'Dress' +p24042 +sg18783 +g27 +sa(dp24043 +g18779 +S'American 20th Century' +p24044 +sg18781 +S'Muslin Dress' +p24045 +sg18783 +g27 +sa(dp24046 +g18779 +S'James Jones' +p24047 +sg18781 +S'Mision San Juan Bautista' +p24048 +sg18783 +g27 +sa(dp24049 +g18779 +S'American 20th Century' +p24050 +sg18781 +S'Brown Velvet Cap' +p24051 +sg18783 +g27 +sa(dp24052 +g18779 +S'Jessie M. Benge' +p24053 +sg18781 +S'Dress' +p24054 +sg18783 +g27 +sa(dp24055 +g18779 +S'American 20th Century' +p24056 +sg18781 +S'Taffeta Dress' +p24057 +sg18783 +g27 +sa(dp24058 +g18779 +S'Helen E. Gilman' +p24059 +sg18781 +S"Shaker Man's Costume" +p24060 +sg18783 +g27 +sa(dp24061 +g18781 +S'Broad-rimmed bowl with the sacrifice of the Greeks at Aulis and the omen of the serpent devouring nine birds, interpreted by the priest Calchas; arms of Anne de Montmorency' +p24062 +sg18779 +S'Artist Information (' +p24063 +sg18787 +S'Italian, active 1520 - 1576' +p24064 +sg18789 +S'(related artist)' +p24065 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000586.jpg' +p24066 +sg18783 +g27 +sa(dp24067 +g18779 +S'Joseph Goldberg' +p24068 +sg18781 +S'Shaker Bonnet' +p24069 +sg18783 +g27 +sa(dp24070 +g18779 +S'Lillian M. Mosseller' +p24071 +sg18781 +S'Hooked Rug' +p24072 +sg18783 +g27 +sa(dp24073 +g18779 +S'Dorothy Lacey' +p24074 +sg18781 +S'Hooked Rug' +p24075 +sg18783 +g27 +sa(dp24076 +g18779 +S'Marie Lutrell' +p24077 +sg18781 +S'Printed Calico' +p24078 +sg18783 +g27 +sa(dp24079 +g18779 +S'Artist Information (' +p24080 +sg18781 +S'Log Cabin Quilt Square' +p24081 +sg18783 +g27 +sa(dp24082 +g18779 +S'Cornelius Christoffels' +p24083 +sg18781 +S'Coverlet Detail' +p24084 +sg18783 +g27 +sa(dp24085 +g18779 +S'Cornelius Christoffels' +p24086 +sg18781 +S'Coverlet' +p24087 +sg18783 +g27 +sa(dp24088 +g18779 +S'Arthur G. Merkley' +p24089 +sg18781 +S'Striped Stair Carpet' +p24090 +sg18783 +g27 +sa(dp24091 +g18779 +S'Cornelius Christoffels' +p24092 +sg18781 +S'Coverlet (Reverse Side)' +p24093 +sg18783 +g27 +sa(dp24094 +g18779 +S'Cornelius Christoffels' +p24095 +sg18781 +S'Coverlet (Reverse Side)' +p24096 +sg18783 +g27 +sa(dp24097 +g18779 +S'Artist Information (' +p24098 +sg18787 +g27 +sg18789 +S'(ceramist)' +p24099 +sg18781 +S'Broad-rimmed bowl with Leda and the Swan' +p24100 +sg18783 +g27 +sa(dp24101 +g18779 +S'Alice Cosgrove' +p24102 +sg18781 +S'Printed Cotton' +p24103 +sg18783 +g27 +sa(dp24104 +g18779 +S'Syrena Swanson' +p24105 +sg18781 +S'Ecclesiastical Vestment' +p24106 +sg18783 +g27 +sa(dp24107 +g18779 +S'Harry Jennings' +p24108 +sg18781 +S'Coverlet' +p24109 +sg18783 +g27 +sa(dp24110 +g18779 +S'Ruth Buker' +p24111 +sg18781 +S'Needle Case' +p24112 +sg18783 +g27 +sa(dp24113 +g18779 +S'Ruth M. Barnes' +p24114 +sg18781 +S'Hooked Rug' +p24115 +sg18783 +g27 +sa(dp24116 +g18779 +S'Elbert S. Mowery' +p24117 +sg18781 +S'Log Cabin Quilt' +p24118 +sg18783 +g27 +sa(dp24119 +g18779 +S'Syrena Swanson' +p24120 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a00003df.jpg' +p24121 +sg18781 +S'Ecclesiastical Vestment (front view)' +p24122 +sg18783 +S'This ecclesiastical vestment was made from a Chinese embroidered, red silk shawl that was probably brought across the Pacific on a Spanish galleon to Acapulco, Mexico, and then shipped to California. Around 1890, an Indian woman at the Mission of San Buenaventura made it into a priestly garment, binding it with gold braid.\n ' +p24123 +sa(dp24124 +g18779 +S'Joseph L. Boyd' +p24125 +sg18781 +S'Piece of Calico Patchwork' +p24126 +sg18783 +g27 +sa(dp24127 +g18779 +S'Mona Brown' +p24128 +sg18781 +S'Patchwork Quilt' +p24129 +sg18783 +g27 +sa(dp24130 +g18779 +S'Arlene Perkins' +p24131 +sg18781 +S'Coverlet' +p24132 +sg18783 +g27 +sa(dp24133 +g18779 +S'Francesco Durantino' +p24134 +sg18787 +S', c. 1540/1545' +p24135 +sg18789 +S'\n' +p24136 +sg18781 +S'Plate with Bacchus seducing Erigone; at the top, a shield of arms' +p24137 +sg18783 +g27 +sa(dp24138 +g18779 +S'Jules Lefevere' +p24139 +sg18781 +S'Patchwork Crib Quilt' +p24140 +sg18783 +g27 +sa(dp24141 +g18779 +S'Marion Curtiss' +p24142 +sg18781 +S'Crib Coverlet' +p24143 +sg18783 +g27 +sa(dp24144 +g18779 +S'George Loughridge' +p24145 +sg18781 +S'Applique & Patchwork Coverlet' +p24146 +sg18783 +g27 +sa(dp24147 +g18779 +S'Beverly Chichester' +p24148 +sg18781 +S'Applique Linen Panel' +p24149 +sg18783 +g27 +sa(dp24150 +g18779 +S'Albert Levone' +p24151 +sg18781 +S'Cotton Prints' +p24152 +sg18783 +g27 +sa(dp24153 +g18779 +S'Frank Fumagalli' +p24154 +sg18781 +S'Cuff Buttons' +p24155 +sg18783 +g27 +sa(dp24156 +g18779 +S'American 20th Century' +p24157 +sg18781 +S"Woman's Slipper" +p24158 +sg18783 +g27 +sa(dp24159 +g18779 +S'Ferdinand Badin' +p24160 +sg18781 +S'Beaded Handbag' +p24161 +sg18783 +g27 +sa(dp24162 +g18779 +S'Louie H. Ewing' +p24163 +sg18781 +S'Side Chair' +p24164 +sg18783 +g27 +sa(dp24165 +g18779 +S'Frank Nelson' +p24166 +sg18781 +S'Quilt' +p24167 +sg18783 +g27 +sa(dp24168 +g18781 +S'Shallow bowl on low foot with the Conversion of Saul' +p24169 +sg18779 +S'Francesco Xanto Avelli' +p24170 +sg18787 +S', c. 1525' +p24171 +sg18789 +S'\n' +p24172 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00004/a00004fa.jpg' +p24173 +sg18783 +g27 +sa(dp24174 +g18779 +S'Cornelius Christoffels' +p24175 +sg18781 +S'Coverlet Detail' +p24176 +sg18783 +g27 +sa(dp24177 +g18779 +S'Ruth M. Barnes' +p24178 +sg18781 +S'Coverlet Detail' +p24179 +sg18783 +g27 +sa(dp24180 +g18779 +S'Nancy Crimi' +p24181 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a0000337.jpg' +p24182 +sg18781 +S"Girl's Coat" +p24183 +sg18783 +S"Intended for a seven-year-old girl, this coat resembles adult women's fashions \n of the 1860s. Many of these fashions were inspired by theatrical costumes, as \n is suggested here by the style of the cape.\n The coat is made of dove-gray cashmere wool, trimmed with red velvet ribbon. The \n coat is fastened down the front with hooks and eyes, and the red satin buttons \n are tacked on for decoration. The coat's lining is hand-quilted, white China silk.\n " +p24184 +sa(dp24185 +g18779 +S'Perkins Harnly' +p24186 +sg18787 +g27 +sg18789 +S'c. 1931' +p24187 +sg18781 +S'Reception Foyer of Rooming House, 1910-1911' +p24188 +sg18783 +g27 +sa(dp24189 +g18779 +S'Betty Jacob' +p24190 +sg18781 +S'Pa. German Dress' +p24191 +sg18783 +g27 +sa(dp24192 +g18779 +S'Julie C. Brush' +p24193 +sg18781 +S'Study for Quilted Petticoat' +p24194 +sg18783 +g27 +sa(dp24195 +g18779 +S'Minnetta Good' +p24196 +sg18781 +S'Quilt Coverlet' +p24197 +sg18783 +g27 +sa(dp24198 +g18779 +S'Frances Lichten' +p24199 +sg18781 +S'Pa. German Embroidered Towel' +p24200 +sg18783 +g27 +sa(dp24201 +g18779 +S'Stella Mosher' +p24202 +sg18781 +S"Man's Straw Hat" +p24203 +sg18783 +g27 +sa(dp24204 +g18779 +S'Bessie Forman' +p24205 +sg18781 +S'Dress' +p24206 +sg18783 +g27 +sa(dp24207 +g18779 +S'Artist Information (' +p24208 +sg18787 +g27 +sg18789 +S'(ceramist)' +p24209 +sg18781 +S'Plate with Hercules, Omphale, and Cupid' +p24210 +sg18783 +g27 +sa(dp24211 +g18779 +S'Margery Parish' +p24212 +sg18781 +S'Jerga (Carpet)' +p24213 +sg18783 +g27 +sa(dp24214 +g18779 +S'Max Slevogt' +p24215 +sg18781 +S'Section of Crewel Embroidery on Border of Petticoat' +p24216 +sg18783 +g27 +sa(dp24217 +g18779 +S'Mildred E. Bent' +p24218 +sg18781 +S'Bedspread Detail' +p24219 +sg18783 +g27 +sa(dp24220 +g18779 +S'James Jones' +p24221 +sg18781 +S'Mision San Juan Bautista' +p24222 +sg18783 +g27 +sa(dp24223 +g18779 +S'Magnus S. Fossum' +p24224 +sg18791 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f5a3.jpg' +p24225 +sg18781 +S'Boston Town Coverlet' +p24226 +sg18783 +g27 +sa(dp24227 +g18779 +S'Fritz Boehmer' +p24228 +sg18781 +S'Zoar Jacquard Coverlet' +p24229 +sg18783 +g27 +sa(dp24230 +g18779 +S'Fritz Boehmer' +p24231 +sg18781 +S'Upholstery Trim' +p24232 +sg18783 +g27 +sa(dp24233 +g18779 +S'Charlotte Angus' +p24234 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00003/a00003c7.jpg' +p24235 +sg18781 +S'Pennsylvania German Show Towel' +p24236 +sg18783 +S'Like elaborately decorated pottery and Jacquard coverlets, "show towels" were made primarily for display rather than for use. They were often hung as decorations on doors or were used to hide more functional towels when guests appeared. Many show \n towels were made by young girls in anticipation of marriage. Show towels were woven of flax and carefully embroidered. This example is linen decorated with traditional flower and bird motifs. The inscription, worked in cross-stitch, reads: \n "Samuel L. Weaver 1838 When This You See Remember Me Maria Weaver."\n ' +p24237 +sa(dp24238 +g18779 +S'James Jones' +p24239 +sg18781 +S'Mision San Juan Bautista' +p24240 +sg18783 +g27 +sa(dp24241 +g18779 +S'American 20th Century' +p24242 +sg18781 +S'Log Cabin Patchwork Quilt' +p24243 +sg18783 +g27 +sa(dp24244 +g18781 +S'Cup on high foot with the royal arms of France crowned' +p24245 +sg18779 +S'French 16th Century' +p24246 +sg18787 +S'lead-glazed fine earthenware' +p24247 +sg18789 +S'c. 1540/1560' +p24248 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00004/a00004fe.jpg' +p24249 +sg18783 +g27 +sa(dp24250 +g18779 +S'Alois E. Ulrich' +p24251 +sg18781 +S'Patchwork Quilt' +p24252 +sg18783 +g27 +sa(dp24253 +g18779 +S'Mildred E. Bent' +p24254 +sg18781 +S'Appliqued Quilt' +p24255 +sg18783 +g27 +sa(dp24256 +g18779 +S'Ray Price' +p24257 +sg18781 +S'Patchwork Quilt' +p24258 +sg18783 +g27 +sa(dp24259 +g18779 +S'Marion Curtiss' +p24260 +sg18781 +S'Eagle and Stars Bedspread' +p24261 +sg18783 +g27 +sa(dp24262 +g18779 +S'Mina Greene' +p24263 +sg18781 +S'Patchwork Bedspread' +p24264 +sg18783 +g27 +sa(dp24265 +g18779 +S'Joseph Lubrano' +p24266 +sg18781 +S'Quilt: Reverse Side' +p24267 +sg18783 +g27 +sa(dp24268 +g18779 +S'Florence Truelson' +p24269 +sg18781 +S'Quilt Block "Red Lion"' +p24270 +sg18783 +g27 +sa(dp24271 +g18779 +S'Ralph N. Morgan' +p24272 +sg18781 +S'Patchwork Quilt' +p24273 +sg18783 +g27 +sa(dp24274 +g18779 +S'Catherine Fowler' +p24275 +sg18781 +S'Applique Quilt' +p24276 +sg18783 +g27 +sa(dp24277 +g18779 +S'Marion Curtiss' +p24278 +sg18781 +S'Embroidered Applique Quilt' +p24279 +sg18783 +g27 +sa(dp24280 +g18781 +S'Candlestick' +p24281 +sg18779 +S'French 16th Century' +p24282 +sg18787 +S'lead-glazed fine earthenware' +p24283 +sg18789 +S'c. 1547/1559' +p24284 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000585.jpg' +p24285 +sg18783 +g27 +sa(dp24286 +g18779 +S'Marie Lutrell' +p24287 +sg18781 +S'Quilt' +p24288 +sg18783 +g27 +sa(dp24289 +g18779 +S'Mary Berner' +p24290 +sg18781 +S'Applique Quilt' +p24291 +sg18783 +g27 +sa(dp24292 +g18779 +S'Marion Curtiss' +p24293 +sg18781 +S'Applique Quilt' +p24294 +sg18783 +g27 +sa(dp24295 +g18779 +S'Elizabeth T. Reike' +p24296 +sg18781 +S'Quilt' +p24297 +sg18783 +g27 +sa(dp24298 +g18779 +S'Marion Curtiss' +p24299 +sg18781 +S'Applique Quilt' +p24300 +sg18783 +g27 +sa(dp24301 +g18779 +S'Cora Parker' +p24302 +sg18781 +S'Patchwork Quilt' +p24303 +sg18783 +g27 +sa(dp24304 +g18779 +S'Gene Luedke' +p24305 +sg18781 +S'Quilt' +p24306 +sg18783 +g27 +sa(dp24307 +g18779 +S'Charlotte Angus' +p24308 +sg18781 +S'Oak Leaf Pattern Quilt' +p24309 +sg18783 +g27 +sa(dp24310 +g18779 +S'Vincent P. Rosel' +p24311 +sg18781 +S'Patchwork Quilt' +p24312 +sg18783 +g27 +sa(dp24313 +g18779 +S'Charlotte Angus' +p24314 +sg18781 +S'Crib Quilt' +p24315 +sg18783 +g27 +sa(dp24316 +g18781 +S'Salt' +p24317 +sg18779 +S'French 16th Century' +p24318 +sg18787 +S'lead-glazed fine earthenware' +p24319 +sg18789 +S'c. 1540/1560' +p24320 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00004/a00004ff.jpg' +p24321 +sg18783 +g27 +sa(dp24322 +g18779 +S'Charles Roadman' +p24323 +sg18781 +S'Coverlet' +p24324 +sg18783 +g27 +sa(dp24325 +g18779 +S'Fred Hassebrock' +p24326 +sg18791 +S'http://www.nga.gov:80/thumb-l/a000f9/a000f907.jpg' +p24327 +sg18781 +S'Tulip Pattern Quilt' +p24328 +sg18783 +g27 +sa(dp24329 +g18779 +S'Arthur G. Merkley' +p24330 +sg18781 +S'Tyler Coverlet' +p24331 +sg18783 +g27 +sa(dp24332 +g18779 +S'Ralph Atkinson' +p24333 +sg18781 +S'Quilt - Rose Design' +p24334 +sg18783 +g27 +sa(dp24335 +g18779 +S'Lon Cronk' +p24336 +sg18781 +S'Appliqued Quilt' +p24337 +sg18783 +g27 +sa(dp24338 +g18779 +S'American 20th Century' +p24339 +sg18781 +S'Centennial Quilt' +p24340 +sg18783 +g27 +sa(dp24341 +g18779 +S'Alois E. Ulrich' +p24342 +sg18781 +S'Applique Quilt' +p24343 +sg18783 +g27 +sa(dp24344 +g18779 +S'Henry Granet' +p24345 +sg18781 +S'Quilt (Star and Triangle)' +p24346 +sg18783 +g27 +sa(dp24347 +g18779 +S'Florence Truelson' +p24348 +sg18781 +S'Block from Friendship Quilt' +p24349 +sg18783 +g27 +sa(dp24350 +g18779 +S'Florence Hastings' +p24351 +sg18781 +S'Applique Quilt' +p24352 +sg18783 +g27 +sa(dp24353 +g18781 +S'Flask' +p24354 +sg18779 +S'Medici Porcelain Factory' +p24355 +sg18787 +S'imitation porcelain (a version of soft-paste porcelain)' +p24356 +sg18789 +S'c. 1575/1587, or slightly later' +p24357 +sg18791 +S'http://www.nga.gov:80/thumb-l/a00005/a0000584.jpg' +p24358 +sg18783 +S'\r\nIn 1487, the sultan of Mamluk Egypt sent a gift to Lorenzo de’ Medici of exotic animals and “large vessels of porcelain, the like of which has never been seen.” By the mid 1500s, the Medici family’s porcelains, most from China, numbered in the hundreds. Italian potters were able to create a soft-paste imitation of porcelain, and in 1574 Francesco de’ Medici established two ceramic workshops in Florence to produce these wares. Today, some seventy examples of Medici porcelains are known, including this flask, possibly used for oil.\r\n\n ' +p24359 +sa(dp24360 +g18779 +S'Charles Roadman' +p24361 +sg18781 +S'Woven Coverlet' +p24362 +sg18783 +g27 +sa(dp24363 +g18779 +S'Mina Greene' +p24364 +sg18781 +S'Minute Men Valance' +p24365 +sg18783 +g27 +sa(dp24366 +g18779 +S'Julie C. Brush' +p24367 +sg18781 +S"Child's Jacket" +p24368 +sg18783 +g27 +sa(dp24369 +g18779 +S'Gertrude Lemberg' +p24370 +sg18781 +S'Wedding Dress' +p24371 +sg18783 +g27 +sa(dp24372 +g18779 +S'John Oster' +p24373 +sg18781 +S'Textile' +p24374 +sg18783 +g27 +sa(dp24375 +g18779 +S'Ruth M. Barnes' +p24376 +sg18781 +S'Hooked Rug' +p24377 +sg18783 +g27 +sa(dp24378 +g18779 +S'Gertrude Lemberg' +p24379 +sg18781 +S'Apron' +p24380 +sg18783 +g27 +sa(dp24381 +g18779 +S'Lucien Verbeke' +p24382 +sg18781 +S"Infant's Dress (Back View)" +p24383 +sg18783 +g27 +sa(dp24384 +g18779 +S'Edmond Lorts' +p24385 +sg18781 +S'Woolen Coverlet' +p24386 +sg18783 +g27 +sa(dp24387 +g18779 +S'Creighton Kay-Scott' +p24388 +sg18781 +S'Design for Bodice' +p24389 +sg18783 +g27 +sa(dp24390 +g18781 +S'Helmet (burgonet) in the Form of a Dolphin Mask' +p24391 +sg18779 +S'Giovanni Paolo Negroli' +p24392 +sg18787 +S'iron or steel, repouss?, embossed, and chiseled' +p24393 +sg18789 +S'1540/1545' +p24394 +sg18791 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d89.jpg' +p24395 +sg18783 +g27 +sa(dp24396 +g18779 +S'American 20th Century' +p24397 +sg18781 +S'Spencer' +p24398 +sg18783 +g27 +sa(dp24399 +g18779 +S'Mae Szilvasy' +p24400 +sg18781 +S'Dressing Sacque' +p24401 +sg18783 +g27 +sa(dp24402 +g18779 +S'Gladys Cook' +p24403 +sg18781 +S'Bodice' +p24404 +sg18783 +g27 +sa(dp24405 +g18779 +S'Mae A. Clarke' +p24406 +sg18781 +S'Evening Bodice, Line Drawing' +p24407 +sg18783 +g27 +sa(dp24408 +g18779 +S'Mae Szilvasy' +p24409 +sg18781 +S'Basque' +p24410 +sg18783 +g27 +sa(dp24411 +g18779 +S'Artist Information (' +p24412 +sg18781 +S'Belt' +p24413 +sg18783 +g27 +sa(dp24414 +g18779 +S'Gladys Cook' +p24415 +sg18781 +S'Belts' +p24416 +sg18783 +g27 +sa(dp24417 +g18779 +S'Fanchon Larzelere' +p24418 +sg18781 +S'Belt' +p24419 +sg18783 +g27 +sa(dp24420 +g18779 +S'Nancy Crimi' +p24421 +sg18781 +S'Belt' +p24422 +sg18783 +g27 +sa(dp24423 +g18779 +S'Sara Garfinkel' +p24424 +sg18781 +S"Infant's Boots" +p24425 +sg18783 +g27 +sa(dp24426 +g18781 +S'"The Morosini Helmet" (visored burgonet)' +p24427 +sg18779 +S'Milanese 16th Century' +p24428 +sg18787 +S'repouss? and embossed iron or steel, with gilding and silvering' +p24429 +sg18789 +S'probably 1550/1560' +p24430 +sg18791 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002da9.jpg' +p24431 +sg18783 +g27 +sa(dp24432 +g18779 +S'Sara Garfinkel' +p24433 +sg18781 +S"Infant's Booties" +p24434 +sg18783 +g27 +sa(dp24435 +g18779 +S'Florence Earl' +p24436 +sg18781 +S"Infant's Cape" +p24437 +sg18783 +g27 +sa(dp24438 +g18779 +S'Florence Earl' +p24439 +sg18781 +S"Infant's Cape" +p24440 +sg18783 +g27 +sa(dp24441 +g18779 +S'Irene M. Burge' +p24442 +sg18781 +S"Child's Cape" +p24443 +sg18783 +g27 +sa(dp24444 +g18779 +S'Charles Criswell' +p24445 +sg18781 +S'Cape' +p24446 +sg18783 +g27 +sa(dp24447 +g18779 +S'Marie Mitchell' +p24448 +sg18781 +S'Dolman' +p24449 +sg18783 +g27 +sa(dp24450 +g18779 +S'Roberta Spicer' +p24451 +sg18781 +S"Girl's Coat" +p24452 +sg18783 +g27 +sa(dp24453 +g18779 +S'Nancy Crimi' +p24454 +sg18781 +S"Boy's Coat" +p24455 +sg18783 +g27 +sa(dp24456 +g18779 +S'Dorothy Gernon' +p24457 +sg18781 +S"Boy's Coat" +p24458 +sg18783 +g27 +sa(dp24459 +g18779 +S'Frederick Jackson' +p24460 +sg18781 +S"Man's Great Coat" +p24461 +sg18783 +g27 +sa(dp24462 +g18779 +S'Florentine 16th Century' +p24463 +sg18787 +S'walnut, embossed brass or copper sheet metal, and cast and gilded brass' +p24464 +sg18789 +S'c. 1520' +p24465 +sg18781 +S'Dantesca Chair, Silver Gilt with Bronze Mountings' +p24466 +sg18783 +g27 +sa(dp24467 +g18779 +S'Frederick Jackson' +p24468 +sg18781 +S"Man's Great Coat" +p24469 +sg18783 +g27 +sa(dp24470 +g18779 +S'Mae A. Clarke' +p24471 +sg18781 +S'Tail Coat' +p24472 +sg18783 +g27 +sa(dp24473 +g18779 +S'Charles Criswell' +p24474 +sg18781 +S"Lady's Coat" +p24475 +sg18783 +g27 +sa(dp24476 +g18779 +S'Ray Price' +p24477 +sg18781 +S'Coat Suit' +p24478 +sg18783 +g27 +sa(dp24479 +g18779 +S'Sylvia De Zon' +p24480 +sg18781 +S'Neckerchief' +p24481 +sg18783 +g27 +sa(dp24482 +g18779 +S'Mae A. Clarke' +p24483 +sg18781 +S'Coat (Pattern)' +p24484 +sg18783 +g27 +sa(dp24485 +g18779 +S'Mina Greene' +p24486 +sg18781 +S'Coat (Pattern)' +p24487 +sg18783 +g27 +sa(dp24488 +g18779 +S'Mae A. Clarke' +p24489 +sg18781 +S'Coat' +p24490 +sg18783 +g27 +sa(dp24491 +g18779 +S'Roberta Spicer' +p24492 +sg18781 +S"Woman's Coat" +p24493 +sg18783 +g27 +sa(dp24494 +g18779 +S'Mina Greene' +p24495 +sg18781 +S"Woman's Coat" +p24496 +sg18783 +g27 +sa(dp24497 +g18779 +S'Florentine 16th Century' +p24498 +sg18787 +S'poplar and walnut' +p24499 +sg18789 +S'second half 16th century' +p24500 +sg18781 +S'Cassapanca, made for Strozzi Family' +p24501 +sg18783 +g27 +sa(dp24502 +g18779 +S'Jean Peszel' +p24503 +sg18781 +S"Lady's Pelisse" +p24504 +sg18783 +g27 +sa(dp24505 +g18779 +S'Charles Criswell' +p24506 +sg18781 +S"Woman's Coat" +p24507 +sg18783 +g27 +sa(dp24508 +g18779 +S'Jessie M. Benge' +p24509 +sg18781 +S'Coat' +p24510 +sg18783 +g27 +sa(dp24511 +g18779 +S'Mae Szilvasy' +p24512 +sg18781 +S'Coat' +p24513 +sg18783 +g27 +sa(dp24514 +g18779 +S'Mina Greene' +p24515 +sg18781 +S"Woman's Coat" +p24516 +sg18783 +g27 +sa(dp24517 +g18779 +S'Mae Szilvasy' +p24518 +sg18781 +S'Corset' +p24519 +sg18783 +g27 +sa(dp24520 +g18779 +S'Melita Hofmann' +p24521 +sg18781 +S"Child's Dress" +p24522 +sg18783 +g27 +sa(dp24523 +g18779 +S'Catherine Fowler' +p24524 +sg18781 +S"Child's Dress" +p24525 +sg18783 +g27 +sa(dp24526 +g18779 +S'Nancy Crimi' +p24527 +sg18781 +S"Boy's Suit" +p24528 +sg18783 +g27 +sa(dp24529 +g18779 +S'Irene Lawson' +p24530 +sg18781 +S"Child's Dress" +p24531 +sg18783 +g27 +sa(dp24532 +g18779 +S'Italian 16th Century' +p24533 +sg18787 +S'overall: 155.2 x 57.7 x 56.2 cm (61 1/8 x 22 11/16 x 22 1/8 in.)' +p24534 +sg18789 +S'\nwalnut with gilded gesso' +p24535 +sg18781 +S'Cassone with Garlands and Cupids' +p24536 +sg18783 +g27 +sa(dp24537 +g18779 +S'Raymond Manupelli' +p24538 +sg18781 +S"Child's Dress" +p24539 +sg18783 +g27 +sa(dp24540 +g18779 +S'Mae A. Clarke' +p24541 +sg18781 +S"Child's Dress" +p24542 +sg18783 +g27 +sa(dp24543 +g18779 +S'Jessie M. Benge' +p24544 +sg18781 +S'Dress' +p24545 +sg18783 +g27 +sa(dp24546 +g18779 +S'Jean Gordon' +p24547 +sg18781 +S'Dress' +p24548 +sg18783 +g27 +sa(dp24549 +g18779 +S'Mary E. Humes' +p24550 +sg18781 +S'Wedding Dress' +p24551 +sg18783 +g27 +sa(dp24552 +g18779 +S'Jessie M. Benge' +p24553 +sg18781 +S'Dress' +p24554 +sg18783 +g27 +sa(dp24555 +g18779 +S'Jessie M. Benge' +p24556 +sg18781 +S'Dress' +p24557 +sg18783 +g27 +sa(dp24558 +g18779 +S'Ann Belle N. Eubank' +p24559 +sg18781 +S'Dress' +p24560 +sg18783 +g27 +sa(dp24561 +g18779 +S'Julie C. Brush' +p24562 +sg18781 +S'Dress' +p24563 +sg18783 +g27 +sa(dp24564 +g18779 +S'Fanchon Larzelere' +p24565 +sg18781 +S'Dress' +p24566 +sg18783 +g27 +sa(dp24567 +g18779 +S'Italian 16th Century' +p24568 +sg18787 +S'overall: 171.2 x 57 x 60.4 cm (67 3/8 x 22 7/16 x 23 3/4 in.)' +p24569 +sg18789 +S'\nwalnut with gilded gesso' +p24570 +sg18781 +S'Cassone with Garlands and Cupids' +p24571 +sg18783 +g27 +sa(dp24572 +g18779 +S'Marie Mitchell' +p24573 +sg18781 +S'Dress' +p24574 +sg18783 +g27 +sa(dp24575 +g18779 +S'Jean Peszel' +p24576 +sg18781 +S'Wedding Dress' +p24577 +sg18783 +g27 +sa(dp24578 +g18779 +S'Jean Peszel' +p24579 +sg18781 +S'Dress' +p24580 +sg18783 +g27 +sa(dp24581 +g18779 +S'Charles Criswell' +p24582 +sg18781 +S'Dress' +p24583 +sg18783 +g27 +sa(dp24584 +g18779 +S'Nancy Crimi' +p24585 +sg18781 +S'Dress' +p24586 +sg18783 +g27 +sa(dp24587 +g18779 +S'Jean Peszel' +p24588 +sg18781 +S'Quaker Dress' +p24589 +sg18783 +g27 +sa(dp24590 +g18779 +S'Roberta Spicer' +p24591 +sg18781 +S'Quaker Dress' +p24592 +sg18783 +g27 +sa(dp24593 +g18779 +S'Isabelle De Strange' +p24594 +sg18781 +S'Dress' +p24595 +sg18783 +g27 +sa(dp24596 +g18779 +S'Melita Hofmann' +p24597 +sg18781 +S'Wedding Dress with Scarf' +p24598 +sg18783 +g27 +sa(dp24599 +g18779 +S'Jessie M. Benge' +p24600 +sg18781 +S'Dress' +p24601 +sg18783 +g27 +sa(dp24602 +g18781 +S'Walnut Stool (Sgabello), Carved and Gilded' +p24603 +sg18779 +S'Italian 16th Century' +p24604 +sg18787 +S'overall: 31.1 x 99.1 x 49.9 cm (12 1/4 x 39 x 19 5/8 in.)' +p24605 +sg18789 +S'\ngilded walnut' +p24606 +sg18791 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d933.jpg' +p24607 +sg18783 +g27 +sa(dp24608 +g18779 +S'Margaret Concha' +p24609 +sg18781 +S'Dress' +p24610 +sg18783 +g27 +sa(dp24611 +g18779 +S'Dorothy Gernon' +p24612 +sg18781 +S'Dress' +p24613 +sg18783 +g27 +sa(dp24614 +g18779 +S'Melita Hofmann' +p24615 +sg18781 +S'Dress' +p24616 +sg18783 +g27 +sa(dp24617 +g18779 +S'Rosalia Lane' +p24618 +sg18781 +S'Dress' +p24619 +sg18783 +g27 +sa(dp24620 +g18779 +S'Melita Hofmann' +p24621 +sg18781 +S'Dress' +p24622 +sg18783 +g27 +sa(dp24623 +g18779 +S'Mary E. Humes' +p24624 +sg18781 +S'Dress' +p24625 +sg18783 +g27 +sa(dp24626 +g18779 +S'Margaret Concha' +p24627 +sg18781 +S'Descripiton of a Wedding Dress' +p24628 +sg18783 +g27 +sa(dp24629 +g18779 +S'Julie C. Brush' +p24630 +sg18781 +S'Dress' +p24631 +sg18783 +g27 +sa(dp24632 +g18779 +S'Margaret Concha' +p24633 +sg18781 +S'Quaker Dress' +p24634 +sg18783 +g27 +sa(dp24635 +g18779 +S'Irene Lawson' +p24636 +sg18781 +S'Dress' +p24637 +sg18783 +g27 +sa(dp24638 +g18779 +S'Italian 16th Century' +p24639 +sg18787 +S'overall: 30.8 x 97.8 x 52.4 cm (12 1/8 x 38 1/2 x 20 5/8 in.)' +p24640 +sg18789 +S'\ngilded walnut' +p24641 +sg18781 +S'Walnut Stool (Sgabello), Carved and Gilded' +p24642 +sg18783 +g27 +sa(dp24643 +g18779 +S'Mary Berner' +p24644 +sg18781 +S'Dress' +p24645 +sg18783 +g27 +sa(dp24646 +g18779 +S'Julie C. Brush' +p24647 +sg18781 +S'Dress' +p24648 +sg18783 +g27 +sa(dp24649 +g18779 +S'American 20th Century' +p24650 +sg18781 +S'Description of a Dress' +p24651 +sg18783 +g27 +sa(dp24652 +g18779 +S'Bessie Forman' +p24653 +sg18781 +S'Pattern for a Dress' +p24654 +sg18783 +g27 +sa(dp24655 +g18779 +S'Mary E. Humes' +p24656 +sg18781 +S'Wedding Dress' +p24657 +sg18783 +g27 +sa(dp24658 +g18779 +S'Bessie Forman' +p24659 +sg18781 +S'Dress' +p24660 +sg18783 +g27 +sa(dp24661 +g18779 +S'Melita Hofmann' +p24662 +sg18781 +S'Wedding Dress' +p24663 +sg18783 +g27 +sa(dp24664 +g18779 +S'Arelia Arbo' +p24665 +sg18781 +S'Wedding Dress' +p24666 +sg18783 +g27 +sa(dp24667 +g18779 +S'Irene Lawson' +p24668 +sg18781 +S'Dress' +p24669 +sg18783 +g27 +sa(dp24670 +g18779 +S'Sara Garfinkel' +p24671 +sg18781 +S'Quaker Dress' +p24672 +sg18783 +g27 +sa(dp24673 +g18779 +S'Tuscan 15th Century' +p24674 +sg18787 +S'overall: 68.8 x 99.3 x 56.1 cm (27 1/16 x 39 1/8 x 22 1/16 in.)' +p24675 +sg18789 +S'\nwalnut' +p24676 +sg18781 +S'Walnut Savonarola Chair' +p24677 +sg18783 +g27 +sa(dp24678 +g18779 +S'Jessie M. Benge' +p24679 +sg18781 +S'Dress' +p24680 +sg18783 +g27 +sa(dp24681 +g18779 +S'Marie Mitchell' +p24682 +sg18781 +S"Child's Dress" +p24683 +sg18783 +g27 +sa(dp24684 +g18779 +S'J. Howard Iams' +p24685 +sg18781 +S'Dress' +p24686 +sg18783 +g27 +sa(dp24687 +g18779 +S'Julie C. Brush' +p24688 +sg18781 +S'Dress' +p24689 +sg18783 +g27 +sa(dp24690 +g18779 +S'Jean Gordon' +p24691 +sg18781 +S'Dress' +p24692 +sg18783 +g27 +sa(dp24693 +g18779 +S'Fanchon Larzelere' +p24694 +sg18781 +S'Dress' +p24695 +sg18783 +g27 +sa(dp24696 +g18779 +S'Sylvia De Zon' +p24697 +sg18781 +S'Dress' +p24698 +sg18783 +g27 +sa(dp24699 +g18779 +S'Gladys Cook' +p24700 +sg18781 +S'Dress' +p24701 +sg18783 +g27 +sa(dp24702 +g18779 +S'Fanchon Larzelere' +p24703 +sg18781 +S'Dress' +p24704 +sg18783 +g27 +sa(dp24705 +g18779 +S'Arelia Arbo' +p24706 +sg18781 +S'Dress' +p24707 +sg18783 +g27 +sa(dp24708 +g18779 +S'Tuscan 15th Century' +p24709 +sg18787 +S'overall: 69.8 x 100.4 x 57.5 cm (27 1/2 x 39 1/2 x 22 5/8 in.)' +p24710 +sg18789 +S'\nwalnut' +p24711 +sg18781 +S'Walnut Savonarola Chair' +p24712 +sg18783 +g27 +sa(dp24713 +g18779 +S'Esther Hansen' +p24714 +sg18781 +S'Dressing Gown' +p24715 +sg18783 +g27 +sa(dp24716 +g18779 +S'Jean Gordon' +p24717 +sg18781 +S'Dress' +p24718 +sg18783 +g27 +sa(dp24719 +g18779 +S'George B. Wally' +p24720 +sg18781 +S'Dress' +p24721 +sg18783 +g27 +sa(dp24722 +g18779 +S'Dorothy Gernon' +p24723 +sg18781 +S'Evening Dress and Cape' +p24724 +sg18783 +g27 +sa(dp24725 +g18779 +S'William Kieckhofel' +p24726 +sg18781 +S'Quilt (Corner)' +p24727 +sg18783 +g27 +sa(dp24728 +g18779 +S'Evelyn Bailey' +p24729 +sg18781 +S'Patchwork Pattern' +p24730 +sg18783 +g27 +sa(dp24731 +g18779 +S'Irene Schaefer' +p24732 +sg18781 +S'Quilted Bedspread' +p24733 +sg18783 +g27 +sa(dp24734 +g18779 +S'Edith Towner' +p24735 +sg18781 +S'Quilt - "Double Star"' +p24736 +sg18783 +g27 +sa(dp24737 +g18779 +S'Cornelius Frazier' +p24738 +sg18781 +S'Applique Quilt' +p24739 +sg18783 +g27 +sa(dp24740 +g18779 +S'Frank Gutting' +p24741 +sg18781 +S'Quilt' +p24742 +sg18783 +g27 +sa(dp24743 +g18779 +S'Florentine 16th Century' +p24744 +sg18787 +S'walnut' +p24745 +sg18789 +S'c. 1540/1560' +p24746 +sg18781 +S'Walnut Table with Eagles on the Supports' +p24747 +sg18783 +g27 +sa(dp24748 +g18779 +S'Lena Nastasi' +p24749 +sg18781 +S'Crazy Quilt' +p24750 +sg18783 +g27 +sa(dp24751 +g18779 +S'Willoughby Ions' +p24752 +sg18781 +S'Coverlet' +p24753 +sg18783 +g27 +sa(dp24754 +g18779 +S'Arthur G. Merkley' +p24755 +sg18781 +S'Carpet' +p24756 +sg18783 +g27 +sa(dp24757 +g18779 +S'Arthur G. Merkley' +p24758 +sg18781 +S'Carpet' +p24759 +sg18783 +g27 +sa(dp24760 +g18779 +S'Mary Berner' +p24761 +sg18781 +S'Crewel Embroidery' +p24762 +sg18783 +g27 +sa(dp24763 +g18779 +S'Mary Berner' +p24764 +sg18781 +S'Bed Hanging' +p24765 +sg18783 +g27 +sa(dp24766 +g18779 +S'Mary Berner' +p24767 +sg18781 +S'Crewel Embroidery' +p24768 +sg18783 +g27 +sa(dp24769 +g18779 +S'Eugene La Foret' +p24770 +sg18781 +S'Curtain' +p24771 +sg18783 +g27 +sa(dp24772 +g18779 +S'Fanchon Larzelere' +p24773 +sg18781 +S'Border or Valance' +p24774 +sg18783 +g27 +sa(dp24775 +g18779 +S'Jules Lefevere' +p24776 +sg18781 +S'Embroidered Coverlet' +p24777 +sg18783 +g27 +sa(dp24778 +g18779 +S'Italian 16th Century' +p24779 +sg18787 +S'overall: 120.3 x 92 x 82.5 cm (47 3/8 x 36 1/4 x 32 1/2 in.)' +p24780 +sg18789 +S'\nwalnut, marble, and maple' +p24781 +sg18781 +S'Walnut Pedestal Table with Inlaid Marble Top' +p24782 +sg18783 +g27 +sa(dp24783 +g18779 +S'Henry Rasmusen' +p24784 +sg18781 +S'Embroidery' +p24785 +sg18783 +g27 +sa(dp24786 +g18779 +S'Byron Dingman' +p24787 +sg18781 +S'Woven Textile' +p24788 +sg18783 +g27 +sa(dp24789 +g18779 +S'Ruth M. Barnes' +p24790 +sg18781 +S'Sampler' +p24791 +sg18783 +g27 +sa(dp24792 +g18779 +S'Evelyn Bailey' +p24793 +sg18781 +S'Embroidered Night Gown' +p24794 +sg18783 +g27 +sa(dp24795 +g18779 +S'Julie C. Brush' +p24796 +sg18781 +S'Handmade Embroidery' +p24797 +sg18783 +g27 +sa(dp24798 +g18779 +S'Robert Stewart' +p24799 +sg18781 +S'Sampler' +p24800 +sg18783 +g27 +sa(dp24801 +g18779 +S'William Kieckhofel' +p24802 +sg18781 +S'Crazy Quilt Stitches' +p24803 +sg18783 +g27 +sa(dp24804 +g18779 +S'Stella Mosher' +p24805 +sg18781 +S'Chair Seat Cover' +p24806 +sg18783 +g27 +sa(dp24807 +g18779 +S'Charles Bowman' +p24808 +sg18781 +S'Fire Screen' +p24809 +sg18783 +g27 +sa(dp24810 +g18779 +S'J. Howard Iams' +p24811 +sg18781 +S'Needlepoint' +p24812 +sg18783 +g27 +sa(dp24813 +g18779 +S'Italian 16th Century' +p24814 +sg18787 +S'overall: 155 x 87.7 x 91.1 cm (61 x 34 1/2 x 35 7/8 in.)' +p24815 +sg18789 +S'\nwalnut, oak, beech, and maple' +p24816 +sg18781 +S'Walnut Table with Herms and Sphinxes at the Ends' +p24817 +sg18783 +g27 +sa(dp24818 +g18779 +S'Lillian M. Mosseller' +p24819 +sg18781 +S'Hooked Rug' +p24820 +sg18783 +g27 +sa(dp24821 +g18779 +S'Lillian M. Mosseller' +p24822 +sg18781 +S'Hooked Rug' +p24823 +sg18783 +g27 +sa(dp24824 +g18779 +S'Paul Ward' +p24825 +sg18781 +S'Embroidered Cloth' +p24826 +sg18783 +g27 +sa(dp24827 +g18779 +S'Dorothy Lacey' +p24828 +sg18781 +S'Hooked Rug' +p24829 +sg18783 +g27 +sa(dp24830 +g18779 +S'Joseph Lubrano' +p24831 +sg18781 +S'Historical Printed Textile' +p24832 +sg18783 +g27 +sa(dp24833 +g18779 +S'Henry Meyers' +p24834 +sg18781 +S'Drapery or Curtain' +p24835 +sg18783 +g27 +sa(dp24836 +g18779 +S'Jean Peszel' +p24837 +sg18781 +S'Dress' +p24838 +sg18783 +g27 +sa(dp24839 +g18779 +S'Isabelle De Strange' +p24840 +sg18781 +S'Dress' +p24841 +sg18783 +g27 +sa(dp24842 +g18779 +S'Florence Earl' +p24843 +sg18781 +S'Walking Costume' +p24844 +sg18783 +g27 +sa(dp24845 +g18779 +S'Rosalia Lane' +p24846 +sg18781 +S'Fan' +p24847 +sg18783 +g27 +sa(dp24848 +g18781 +S'Walnut Cassone made for Strozzi Family' +p24849 +sg18779 +S'Florentine 16th Century' +p24850 +sg18787 +S'walnut and poplar' +p24851 +sg18789 +S'first half 16th century' +p24852 +sg18791 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b4a6.jpg' +p24853 +sg18783 +g27 +sa(dp24854 +g18779 +S'Gwyneth King' +p24855 +sg18781 +S'Gown and Slipper' +p24856 +sg18783 +g27 +sa(dp24857 +g18779 +S'Jessie M. Benge' +p24858 +sg18781 +S"Man's Shoe" +p24859 +sg18783 +g27 +sa(dp24860 +g18779 +S'Nancy Crimi' +p24861 +sg18781 +S'Slipper' +p24862 +sg18783 +g27 +sa(dp24863 +g18779 +S'Dorothy Dwin' +p24864 +sg18781 +S'Slipper' +p24865 +sg18783 +g27 +sa(dp24866 +g18779 +S'Melita Hofmann' +p24867 +sg18781 +S'Slipper' +p24868 +sg18783 +g27 +sa(dp24869 +g18779 +S'Irene Lawson' +p24870 +sg18781 +S'Slipper' +p24871 +sg18783 +g27 +sa(dp24872 +g18779 +S'Gladys Cook' +p24873 +sg18781 +S'Slipper' +p24874 +sg18783 +g27 +sa(dp24875 +g18779 +S'Melita Hofmann' +p24876 +sg18781 +S'Slipper' +p24877 +sg18783 +g27 +sa(dp24878 +g18779 +S'Ada V. May' +p24879 +sg18781 +S'Baby Shoe' +p24880 +sg18783 +g27 +sa(dp24881 +g18779 +S'Margaret Concha' +p24882 +sg18781 +S"Woman's Shoe" +p24883 +sg18783 +g27 +sa(dp24884 +g18779 +S'Florentine 16th Century' +p24885 +sg18787 +S'walnut and poplar' +p24886 +sg18789 +S'first half 16th century' +p24887 +sg18781 +S'Walnut Cassone made for Altoviti Family' +p24888 +sg18783 +g27 +sa(dp24889 +g18779 +S'Gwyneth King' +p24890 +sg18781 +S'Quaker Wedding Shoes' +p24891 +sg18783 +g27 +sa(dp24892 +g18779 +S'Emery Herrett' +p24893 +sg18781 +S'Coat (Pattern)' +p24894 +sg18783 +g27 +sa(dp24895 +g18779 +S'Cornelius Christoffels' +p24896 +sg18781 +S'Purse' +p24897 +sg18783 +g27 +sa(dp24898 +g18779 +S'Cornelius Christoffels' +p24899 +sg18781 +S'Bag' +p24900 +sg18783 +g27 +sa(dp24901 +g18779 +S'Arthur Sander' +p24902 +sg18781 +S'Dress' +p24903 +sg18783 +g27 +sa(dp24904 +g18779 +S'Roberta Elvis' +p24905 +sg18781 +S'Bag' +p24906 +sg18783 +g27 +sa(dp24907 +g18779 +S'Artist Information (' +p24908 +sg18781 +S'Purse' +p24909 +sg18783 +g27 +sa(dp24910 +g18779 +S'Isidore Steinberg' +p24911 +sg18781 +S'Purse' +p24912 +sg18783 +g27 +sa(dp24913 +g18779 +S'Melita Hofmann' +p24914 +sg18781 +S'Turban' +p24915 +sg18783 +g27 +sa(dp24916 +g18779 +S'Jean Peszel' +p24917 +sg18781 +S'Cap' +p24918 +sg18783 +g27 +sa(dp24919 +g18779 +S'French 16th Century' +p24920 +sg18787 +S'Widener Collection' +p24921 +sg18789 +S'\nwalnut, beech, and oak' +p24922 +sg18781 +S'Small Square Walnut Table' +p24923 +sg18783 +g27 +sa(dp24924 +g18779 +S'Melita Hofmann' +p24925 +sg18781 +S'Bonnet' +p24926 +sg18783 +g27 +sa(dp24927 +g18779 +S'Nancy Crimi' +p24928 +sg18781 +S'Poke Bonnet' +p24929 +sg18783 +g27 +sa(dp24930 +g18779 +S'Rosalia Lane' +p24931 +sg18781 +S'Cap' +p24932 +sg18783 +g27 +sa(dp24933 +g18779 +S'Sylvia De Zon' +p24934 +sg18781 +S"Baby's Cap" +p24935 +sg18783 +g27 +sa(dp24936 +g18779 +S'Sylvia De Zon' +p24937 +sg18781 +S"Baby's Cap" +p24938 +sg18783 +g27 +sa(dp24939 +g18779 +S'Rosalia Lane' +p24940 +sg18781 +S'Bonnet' +p24941 +sg18783 +g27 +sa(dp24942 +g18779 +S'Rosalia Lane' +p24943 +sg18781 +S'Bonnet' +p24944 +sg18783 +g27 +sa(dp24945 +g18779 +S'Frank Nelson' +p24946 +sg18781 +S'Bonnet' +p24947 +sg18783 +g27 +sa(dp24948 +g18779 +S'Doris Beer' +p24949 +sg18781 +S'Bonnet' +p24950 +sg18783 +g27 +sa(dp24951 +g18779 +S'Roberta Spicer' +p24952 +sg18781 +S'Sunbonnet' +p24953 +sg18783 +g27 +sa(dp24954 +g18779 +S'French 16th Century' +p24955 +sg18787 +S'overall: 117.5 x 56 x 90.2 cm (46 1/4 x 22 1/16 x 35 1/2 in.)' +p24956 +sg18789 +S'\nwalnut' +p24957 +sg18781 +S'Walnut Serving Table with Sphinxes Resting on Lions' +p24958 +sg18783 +g27 +sa(dp24959 +g18779 +S'Roberta Spicer' +p24960 +sg18781 +S'Sunbonnet' +p24961 +sg18783 +g27 +sa(dp24962 +g18779 +S'Bessie Forman' +p24963 +sg18781 +S'Bonnet' +p24964 +sg18783 +g27 +sa(dp24965 +g18779 +S'Louis Maldarelli' +p24966 +sg18781 +S'Wedding Bonnet' +p24967 +sg18783 +g27 +sa(dp24968 +g18779 +S'Lillian Causey' +p24969 +sg18781 +S'Rain Bonnet' +p24970 +sg18783 +g27 +sa(dp24971 +g18779 +S'Ann Gene Buckley' +p24972 +sg18781 +S'Bonnet' +p24973 +sg18783 +g27 +sa(dp24974 +g18779 +S'Lillian Causey' +p24975 +sg18781 +S'Quaker Bonnet' +p24976 +sg18783 +g27 +sa(dp24977 +g18779 +S'Mary E. Humes' +p24978 +sg18781 +S'Wedding Bonnet' +p24979 +sg18783 +g27 +sa(dp24980 +g18779 +S'Columbus Simpson' +p24981 +sg18781 +S'Opera Hood' +p24982 +sg18783 +g27 +sa(dp24983 +g18779 +S'Columbus Simpson' +p24984 +sg18781 +S'Opera Hood' +p24985 +sg18783 +g27 +sa(dp24986 +g18779 +S'Columbus Simpson' +p24987 +sg18781 +S'Opera Hood' +p24988 +sg18783 +g27 +sa(dp24989 +g18779 +S'French 16th Century' +p24990 +sg18787 +S'overall: 146.6 x 87.5 x 81 cm (57 11/16 x 34 7/16 x 31 7/8 in.)' +p24991 +sg18789 +S'\nwalnut' +p24992 +sg18781 +S'Walnut Serving Table with Herms and Sphinxes' +p24993 +sg18783 +g27 +sa(dp24994 +g18779 +S'Dorothy Gernon' +p24995 +sg18781 +S'Bonnet' +p24996 +sg18783 +g27 +sa(dp24997 +g18779 +S'Mae A. Clarke' +p24998 +sg18781 +S'Hat' +p24999 +sg18783 +g27 +sa(dp25000 +g18779 +S'Fanchon Larzelere' +p25001 +sg18781 +S'Bonnet' +p25002 +sg18783 +g27 +sa(dp25003 +g18779 +S'Catherine Fowler' +p25004 +sg18781 +S'Hat' +p25005 +sg18783 +g27 +sa(dp25006 +g18779 +S'Joseph L. Boyd' +p25007 +sg18781 +S'House Cap' +p25008 +sg18783 +g27 +sa(dp25009 +g18779 +S'Margaret Concha' +p25010 +sg18781 +S'Bonnet' +p25011 +sg18783 +g27 +sa(dp25012 +g18779 +S'Bessie Forman' +p25013 +sg18781 +S'Bonnet' +p25014 +sg18783 +g27 +sa(dp25015 +g18779 +S'Margaret Concha' +p25016 +sg18781 +S'Bonnet' +p25017 +sg18783 +g27 +sa(dp25018 +g18779 +S'Dorothy M. Gerhard' +p25019 +sg18781 +S'Bonnet' +p25020 +sg18783 +g27 +sa(dp25021 +g18779 +S'American 20th Century' +p25022 +sg18781 +S'Caps' +p25023 +sg18783 +g27 +sa(dp25024 +g18779 +S'French 16th Century' +p25025 +sg18787 +S'overall: 150.5 x 88 x 83.8 cm (59 1/4 x 34 5/8 x 33 in.)' +p25026 +sg18789 +S'\nwalnut' +p25027 +sg18781 +S'Walnut Table with Lion Sphinxes' +p25028 +sg18783 +g27 +sa(dp25029 +g18779 +S'American 20th Century' +p25030 +sg18781 +S'Headdress' +p25031 +sg18783 +g27 +sa(dp25032 +g18779 +S'Dorothy Gernon' +p25033 +sg18781 +S'Headdress and Collar' +p25034 +sg18783 +g27 +sa(dp25035 +g18779 +S'Dorothy Gernon' +p25036 +sg18781 +S'Jacket' +p25037 +sg18783 +g27 +sa(dp25038 +g18779 +S'Marie Alain' +p25039 +sg18781 +S'Nightgown' +p25040 +sg18783 +g27 +sa(dp25041 +g18779 +S"J.J. O'Neill" +p25042 +sg18781 +S'Parasol' +p25043 +sg18783 +g27 +sa(dp25044 +g18779 +S'Douglas Cox' +p25045 +sg18781 +S'Parasol' +p25046 +sg18783 +g27 +sa(dp25047 +g18779 +S'Charlotte Winter' +p25048 +sg18781 +S'Patten' +p25049 +sg18783 +g27 +sa(dp25050 +g18779 +S'Rosalia Lane' +p25051 +sg18781 +S'Pocket' +p25052 +sg18783 +g27 +sa(dp25053 +g18779 +S'Margaret Concha' +p25054 +sg18781 +S'Shawl' +p25055 +sg18783 +g27 +sa(dp25056 +g18779 +S'William Frank' +p25057 +sg18781 +S"Baby's Shirt" +p25058 +sg18783 +g27 +sa(dp25059 +g18779 +S'Italian 16th Century' +p25060 +sg18787 +S'overall: 296.9 x 51.1 x 83.8 cm (116 7/8 x 20 1/8 x 33 in.)' +p25061 +sg18789 +S'\nwalnut, oak, elm, and pine' +p25062 +sg18781 +S'Cassone with Coats-of-Arms' +p25063 +sg18783 +g27 +sa(dp25064 +g18779 +S'Margaret Concha' +p25065 +sg18781 +S"Boy's Suit" +p25066 +sg18783 +g27 +sa(dp25067 +g18779 +S'Dorothy Gernon' +p25068 +sg18781 +S"Boy's Suit" +p25069 +sg18783 +g27 +sa(dp25070 +g18779 +S'American 20th Century' +p25071 +sg18781 +S"Boy's Suit" +p25072 +sg18783 +g27 +sa(dp25073 +g18779 +S'Henry De Wolfe' +p25074 +sg18781 +S"Boy's Suit" +p25075 +sg18783 +g27 +sa(dp25076 +g18779 +S'Henry De Wolfe' +p25077 +sg18781 +S"Boy's Suit" +p25078 +sg18783 +g27 +sa(dp25079 +g18779 +S'Marjorie McIntyre' +p25080 +sg18781 +S"Boy's Suit" +p25081 +sg18783 +g27 +sa(dp25082 +g18779 +S'Marjorie McIntyre' +p25083 +sg18781 +S"Boy's Suit" +p25084 +sg18783 +g27 +sa(dp25085 +g18779 +S'Esther Hansen' +p25086 +sg18781 +S"Man's Suit" +p25087 +sg18783 +g27 +sa(dp25088 +g18779 +S'Frank J. Mace' +p25089 +sg18781 +S'Plaid Homespun' +p25090 +sg18783 +g27 +sa(dp25091 +g18779 +S'Marion Curtiss' +p25092 +sg18781 +S'Hooked Rug' +p25093 +sg18783 +g27 +sa(dp25094 +g18779 +S'Italian 16th Century' +p25095 +sg18787 +S'overall: 60 x 123.5 x 55.3 cm (23 5/8 x 48 5/8 x 21 3/4 in.)' +p25096 +sg18789 +S'\nwalnut, poplar, tooled and gilded leather, and gilded metal nails' +p25097 +sg18781 +S'Leather-covered Walnut Armchair' +p25098 +sg18783 +g27 +sa(dp25099 +g18779 +S'Jessie M. Benge' +p25100 +sg18781 +S"Man's Court Suit" +p25101 +sg18783 +g27 +sa(dp25102 +g18779 +S'Marie Mitchell' +p25103 +sg18781 +S"Man's Court Costume" +p25104 +sg18783 +g27 +sa(dp25105 +g18779 +S'Nancy Crimi' +p25106 +sg18781 +S'Suit' +p25107 +sg18783 +g27 +sa(dp25108 +g18779 +S'Charles Criswell' +p25109 +sg18781 +S'Suit' +p25110 +sg18783 +g27 +sa(dp25111 +g18779 +S'American 20th Century' +p25112 +sg18781 +S'Suit' +p25113 +sg18783 +g27 +sa(dp25114 +g18779 +S'Charles Criswell' +p25115 +sg18781 +S"Man's Suit" +p25116 +sg18783 +g27 +sa(dp25117 +g18779 +S'Jessie M. Benge' +p25118 +sg18781 +S"Man's Costume" +p25119 +sg18783 +g27 +sa(dp25120 +g18779 +S'Charles Criswell' +p25121 +sg18781 +S"Man's Suit" +p25122 +sg18783 +g27 +sa(dp25123 +g18779 +S'Jessie M. Benge' +p25124 +sg18781 +S"Man's Court Costume" +p25125 +sg18783 +g27 +sa(dp25126 +g18779 +S'Melita Hofmann' +p25127 +sg18781 +S"Man's Suit" +p25128 +sg18783 +g27 +sa(dp25129 +g18779 +S'Italian 16th Century' +p25130 +sg18787 +S'overall: 61 x 123.8 x 56 cm (24 x 48 3/4 x 22 1/16 in.)' +p25131 +sg18789 +S'\nwalnut, poplar, tooled and gilded leather, and gilded metal nails' +p25132 +sg18781 +S'Leather-covered Walnut Armchair' +p25133 +sg18783 +g27 +sa(dp25134 +g18779 +S'Margaret Concha' +p25135 +sg18781 +S'Coat and Waistcoat' +p25136 +sg18783 +g27 +sa(dp25137 +g18779 +S'Rosalia Lane' +p25138 +sg18781 +S"Man's Coat" +p25139 +sg18783 +g27 +sa(dp25140 +g18779 +S'Henry De Wolfe' +p25141 +sg18781 +S'Pantaloons' +p25142 +sg18783 +g27 +sa(dp25143 +g18779 +S'Frederick Jackson' +p25144 +sg18781 +S'Trousers' +p25145 +sg18783 +g27 +sa(dp25146 +g18779 +S'Erwin Schwabe' +p25147 +sg18781 +S'Epaulet' +p25148 +sg18783 +g27 +sa(dp25149 +g18779 +S'Andrew Topolosky' +p25150 +sg18781 +S'Under Bodice' +p25151 +sg18783 +g27 +sa(dp25152 +g18779 +S'James Vail' +p25153 +sg18781 +S'Military Headdress' +p25154 +sg18783 +g27 +sa(dp25155 +g18779 +S'Bernard Krieger' +p25156 +sg18781 +S'Uniform' +p25157 +sg18783 +g27 +sa(dp25158 +g18779 +S'Harold Smith' +p25159 +sg18781 +S'Uniform' +p25160 +sg18783 +g27 +sa(dp25161 +g18779 +S'Jean Gordon' +p25162 +sg18781 +S"Sargent's Dress Uniform" +p25163 +sg18783 +g27 +sa(dp25164 +g18779 +S'Italian 16th Century' +p25165 +sg18787 +S'overall: 60.5 x 121 x 58.5 cm (23 13/16 x 47 5/8 x 23 1/16 in.)' +p25166 +sg18789 +S'\nwalnut, poplar, tooled and gilded leather, and gilded metal nails' +p25167 +sg18781 +S'Leather-covered Walnut Armchair' +p25168 +sg18783 +g27 +sa(dp25169 +g18779 +S'Harold Smith' +p25170 +sg18781 +S'Civil War Field Uniform' +p25171 +sg18783 +g27 +sa(dp25172 +g18779 +S'Aaron Fastovsky' +p25173 +sg18781 +S'Uniform' +p25174 +sg18783 +g27 +sa(dp25175 +g18779 +S'Bernard Krieger' +p25176 +sg18781 +S'Full Dress Uniform' +p25177 +sg18783 +g27 +sa(dp25178 +g18779 +S'Rosalia Lane' +p25179 +sg18781 +S'Waistcoat' +p25180 +sg18783 +g27 +sa(dp25181 +g18779 +S'American 20th Century' +p25182 +sg18781 +S'Waistcoat' +p25183 +sg18783 +g27 +sa(dp25184 +g18779 +S'Rosalia Lane' +p25185 +sg18781 +S'Waistcoat Pattern' +p25186 +sg18783 +g27 +sa(dp25187 +g18779 +S'Louis Maldarelli' +p25188 +sg18781 +S'Waistcoat' +p25189 +sg18783 +g27 +sa(dp25190 +g18779 +S'Sara Garfinkel' +p25191 +sg18781 +S'Waistcoat' +p25192 +sg18783 +g27 +sa(dp25193 +g18779 +S'Mae A. Clarke' +p25194 +sg18781 +S'Waistcoat' +p25195 +sg18783 +g27 +sa(dp25196 +g18779 +S'Melita Hofmann' +p25197 +sg18781 +S"Man's Gloves" +p25198 +sg18783 +g27 +sa(dp25199 +g18779 +S'Italian 16th Century' +p25200 +sg18787 +S'overall: 60.5 x 122.2 x 56.2 cm (23 13/16 x 48 1/8 x 22 1/8 in.)' +p25201 +sg18789 +S'\nwalnut, poplar, tooled and gilded leather, and gilded metal nails' +p25202 +sg18781 +S'Leather-covered Walnut Armchair' +p25203 +sg18783 +g27 +sa(dp25204 +g18779 +S'Jean Peszel' +p25205 +sg18781 +S'Waistcoat' +p25206 +sg18783 +g27 +sa(dp25207 +g18779 +S'Louis Maldarelli' +p25208 +sg18781 +S'Waistcoat' +p25209 +sg18783 +g27 +sa(dp25210 +g18779 +S'Frank C. Barks' +p25211 +sg18781 +S'Beaded Bag' +p25212 +sg18783 +g27 +sa(dp25213 +g18779 +S'Mary E. Humes' +p25214 +sg18781 +S'Figurehead: "Jolly Tar"' +p25215 +sg18783 +g27 +sa(dp25216 +g18779 +S'Jessie M. Benge' +p25217 +sg18781 +S'Cap' +p25218 +sg18783 +g27 +sa(dp25219 +g18779 +S'Ray Price' +p25220 +sg18781 +S'Evening Dress' +p25221 +sg18783 +g27 +sa(dp25222 +g18779 +S'Jessie M. Benge' +p25223 +sg18781 +S'Court Train' +p25224 +sg18783 +g27 +sa(dp25225 +g18779 +S'Emery Herrett' +p25226 +sg18781 +S'Pattern for Spats' +p25227 +sg18783 +g27 +sa(dp25228 +g18779 +S'American 20th Century' +p25229 +sg18781 +S'Spats or Gaiters' +p25230 +sg18783 +g27 +sa(dp25231 +g18779 +S'American 20th Century' +p25232 +sg18781 +S'Shift: pattern' +p25233 +sg18783 +g27 +sa(dp25234 +g18779 +S'Italian 16th Century' +p25235 +sg18787 +S'overall: 62 x 120.2 x 59.6 cm (24 7/16 x 47 5/16 x 23 7/16 in.)' +p25236 +sg18789 +S'\nwalnut, poplar, tooled and gilded leather, and gilded metal nails' +p25237 +sg18781 +S'Leather-covered Walnut Armchair' +p25238 +sg18783 +g27 +sa(dp25239 +g18779 +S'Raymond Manupelli' +p25240 +sg18781 +S"Child's Lace Cap" +p25241 +sg18783 +g27 +sa(dp25242 +g18779 +S'Richard Whitaker' +p25243 +sg18781 +S'White Linen Corded Bonnet' +p25244 +sg18783 +g27 +sa(dp25245 +g18779 +S'R. Stone' +p25246 +sg18781 +S'Toy Train' +p25247 +sg18783 +g27 +sa(dp25248 +g18779 +S'Irene Lawson' +p25249 +sg18781 +S'Dress' +p25250 +sg18783 +g27 +sa(dp25251 +g18779 +S'Nicholas Acampora' +p25252 +sg18781 +S'Hoop' +p25253 +sg18783 +g27 +sa(dp25254 +g18779 +S'Julie C. Brush' +p25255 +sg18781 +S"Boy's Suit" +p25256 +sg18783 +g27 +sa(dp25257 +g18779 +S'Virginia Berge' +p25258 +sg18781 +S'Shoe' +p25259 +sg18783 +g27 +sa(dp25260 +g18779 +S'Syrena Swanson' +p25261 +sg18781 +S"Child's Dress" +p25262 +sg18783 +g27 +sa(dp25263 +g18779 +S'Bessie Forman' +p25264 +sg18781 +S"Child's Dress" +p25265 +sg18783 +g27 +sa(dp25266 +S'desc' +p25267 +g27 +sS'name' +p25268 +S'Morning Dress' +p25269 +sS'artist' +p25270 +S'Mary E. Humes' +p25271 +sa(dp25272 +S'material' +p25273 +S'overall: 61.2 x 120 x 60.7 cm (24 1/8 x 47 1/4 x 23 7/8 in.)' +p25274 +sg25267 +g27 +sS'year' +p25275 +S'\nwalnut, poplar, tooled and gilded leather, and gilded metal nails' +p25276 +sg25268 +S'Leather-covered Walnut Armchair' +p25277 +sg25270 +S'Italian 16th Century' +p25278 +sa(dp25279 +g25267 +g27 +sg25268 +S'Blue Afternoon Dress' +p25280 +sg25270 +S'Lucien Verbeke' +p25281 +sa(dp25282 +g25267 +g27 +sg25268 +S"Child's Bonnet" +p25283 +sg25270 +S'American 20th Century' +p25284 +sa(dp25285 +g25267 +g27 +sg25268 +S'Afternoon Gown' +p25286 +sg25270 +S'Ray Price' +p25287 +sa(dp25288 +g25267 +g27 +sg25268 +S'Bracelet' +p25289 +sg25270 +S'Gladys Cook' +p25290 +sa(dp25291 +g25267 +g27 +sg25268 +S'Cameo Brooch' +p25292 +sg25270 +S'Michael Fenga' +p25293 +sa(dp25294 +g25267 +g27 +sg25268 +S'Cameo Brooch' +p25295 +sg25270 +S'Marie Famularo' +p25296 +sa(dp25297 +g25267 +g27 +sg25268 +S'Cameo Brooch' +p25298 +sg25270 +S'Grace Halpin' +p25299 +sa(dp25300 +g25267 +g27 +sg25268 +S'Brooch' +p25301 +sg25270 +S'Dorothy Dwin' +p25302 +sa(dp25303 +g25267 +g27 +sg25268 +S'Pin' +p25304 +sg25270 +S'Vincent Burzy' +p25305 +sa(dp25306 +g25267 +g27 +sg25268 +S'Brooch' +p25307 +sg25270 +S'Marie Mitchell' +p25308 +sa(dp25309 +g25268 +S'Large Walnut Table with Uberti Arms' +p25310 +sg25270 +S'Italian 16th Century' +p25311 +sg25273 +S'overall: 405.1 x 98 x 79.6 cm (159 1/2 x 38 9/16 x 31 5/16 in.)' +p25312 +sg25275 +S'\nwalnut, pine, and maple inlay' +p25313 +sS'thumbnail' +p25314 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d935.jpg' +p25315 +sg25267 +g27 +sa(dp25316 +g25267 +g27 +sg25268 +S'Oval Pin' +p25317 +sg25270 +S'Tulita Westfall' +p25318 +sa(dp25319 +g25267 +g27 +sg25268 +S'Brooch' +p25320 +sg25270 +S'John Dieterich' +p25321 +sa(dp25322 +g25267 +g27 +sg25268 +S'Brooch' +p25323 +sg25270 +S'Irene Lawson' +p25324 +sa(dp25325 +g25267 +g27 +sg25268 +S'Brooch' +p25326 +sg25270 +S'Doris Beer' +p25327 +sa(dp25328 +g25267 +g27 +sg25268 +S"Lady's Shoe Buckle" +p25329 +sg25270 +S'Kalamian Walton' +p25330 +sa(dp25331 +g25267 +g27 +sg25268 +S"Man's Shoe Buckle" +p25332 +sg25270 +S'Charles Criswell' +p25333 +sa(dp25334 +g25267 +g27 +sg25268 +S"Men's Stock Buckles" +p25335 +sg25270 +S'Charles Criswell' +p25336 +sa(dp25337 +g25267 +g27 +sg25268 +S"Gentleman's Stock Buckles" +p25338 +sg25270 +S'Charles Criswell' +p25339 +sa(dp25340 +g25267 +g27 +sg25268 +S"Lady's Shoe Buckle" +p25341 +sg25270 +S'Kalamian Walton' +p25342 +sa(dp25343 +g25267 +g27 +sg25268 +S"Woman's Buckles" +p25344 +sg25270 +S'Charles Criswell' +p25345 +sa(dp25346 +g25273 +S'overall: 67 x 102.3 x 63.5 cm (26 3/8 x 40 1/4 x 25 in.)' +p25347 +sg25267 +g27 +sg25275 +S'\nwalnut' +p25348 +sg25268 +S'Walnut Savonarola Chair with Letters A.G.' +p25349 +sg25270 +S'Italian 16th Century' +p25350 +sa(dp25351 +g25267 +g27 +sg25268 +S"Lady's Buckles" +p25352 +sg25270 +S'Charles Criswell' +p25353 +sa(dp25354 +g25267 +g27 +sg25268 +S'Buckle' +p25355 +sg25270 +S'Charles Criswell' +p25356 +sa(dp25357 +g25267 +g27 +sg25268 +S"Man's Shoe Buckles" +p25358 +sg25270 +S'Helen Hobart' +p25359 +sa(dp25360 +g25267 +g27 +sg25268 +S'Knee Buckle' +p25361 +sg25270 +S'Edna C. Rex' +p25362 +sa(dp25363 +g25267 +g27 +sg25268 +S"Man's Shoe Buckle" +p25364 +sg25270 +S'Charles Criswell' +p25365 +sa(dp25366 +g25267 +g27 +sg25268 +S"Woman's Buckle" +p25367 +sg25270 +S'Charles Criswell' +p25368 +sa(dp25369 +g25267 +g27 +sg25268 +S"Man's Stock Buckle" +p25370 +sg25270 +S'Charles Criswell' +p25371 +sa(dp25372 +g25267 +g27 +sg25268 +S'Comb' +p25373 +sg25270 +S'American 20th Century' +p25374 +sa(dp25375 +g25267 +g27 +sg25268 +S'Comb' +p25376 +sg25270 +S'Isidore Steinberg' +p25377 +sa(dp25378 +g25267 +g27 +sg25268 +S'Comb' +p25379 +sg25270 +S'Margaret Concha' +p25380 +sa(dp25381 +g25273 +S'height: 133.1 cm (52 3/8 in.)' +p25382 +sg25267 +g27 +sg25275 +S'\npoplar, pine, cast brass, and upholstery' +p25383 +sg25268 +S'High Armchair with Bronze Finials' +p25384 +sg25270 +S'Venetian 16th Century' +p25385 +sa(dp25386 +g25267 +g27 +sg25268 +S'Cross' +p25387 +sg25270 +S'Gladys Cook' +p25388 +sa(dp25389 +g25267 +g27 +sg25268 +S'Cuff Links' +p25390 +sg25270 +S'Dorothy Dwin' +p25391 +sa(dp25392 +g25267 +g27 +sg25268 +S"Man's Bolero" +p25393 +sg25270 +S'Syrena Swanson' +p25394 +sa(dp25395 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b7e.jpg' +p25396 +sg25268 +S'Watch Fob' +p25397 +sg25270 +S'Isidore Steinberg' +p25398 +sa(dp25399 +g25267 +g27 +sg25268 +S'Cascarone (eggshell) Stick Pin' +p25400 +sg25270 +S'Harry Mann Waddell' +p25401 +sa(dp25402 +g25267 +g27 +sg25268 +S'Locket' +p25403 +sg25270 +S'Vincent Burzy' +p25404 +sa(dp25405 +g25267 +g27 +sg25268 +S'Necklace' +p25406 +sg25270 +S'Michael Fenga' +p25407 +sa(dp25408 +g25267 +g27 +sg25268 +S'Tie Pin' +p25409 +sg25270 +S'Eugene Barrell' +p25410 +sa(dp25411 +g25267 +g27 +sg25268 +S'Tie Clasp' +p25412 +sg25270 +S'Isidore Steinberg' +p25413 +sa(dp25414 +g25267 +g27 +sg25268 +S'Friendship Pin' +p25415 +sg25270 +S'Herbert Marsh' +p25416 +sa(dp25417 +g25273 +S'height: 134 cm (52 3/4 in.)' +p25418 +sg25267 +g27 +sg25275 +S'\npoplar, pine, cast brass, and upholstery' +p25419 +sg25268 +S'High Armchair with Bronze Finials' +p25420 +sg25270 +S'Venetian 16th Century' +p25421 +sa(dp25422 +g25267 +g27 +sg25268 +S'Brooch and Earrings' +p25423 +sg25270 +S'Roberta Elvis' +p25424 +sa(dp25425 +g25267 +S'This ecclesiastical vestment was made from a Chinese embroidered, red silk shawl that was probably brought across the Pacific on a Spanish galleon to Acapulco, Mexico, and then shipped to California.\r\n Around 1890, an Indian woman at the Mission of San Buenaventura made it into a priestly garment, binding it with gold braid.\n ' +p25426 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003e0.jpg' +p25427 +sg25268 +S'Ecclesiastical Vestment (back view)' +p25428 +sg25270 +S'Syrena Swanson' +p25429 +sa(dp25430 +g25267 +g27 +sg25268 +S'Hair Brooch and Earrings' +p25431 +sg25270 +S'William P. Shearwood' +p25432 +sa(dp25433 +g25267 +g27 +sg25268 +S'Ring' +p25434 +sg25270 +S'American 20th Century' +p25435 +sa(dp25436 +g25267 +g27 +sg25268 +S'Ring' +p25437 +sg25270 +S'Michael Fenga' +p25438 +sa(dp25439 +g25267 +g27 +sg25268 +S"Lady's Watch Case and Frame" +p25440 +sg25270 +S'Harry G. Aberdeen' +p25441 +sa(dp25442 +g25267 +g27 +sg25268 +S'Charm for Watch Chain' +p25443 +sg25270 +S'Doris Beer' +p25444 +sa(dp25445 +g25267 +g27 +sg25268 +S'Brooch' +p25446 +sg25270 +S'William P. Shearwood' +p25447 +sa(dp25448 +g25267 +g27 +sg25268 +S'Watch Chain' +p25449 +sg25270 +S'Edna C. Rex' +p25450 +sa(dp25451 +g25267 +g27 +sg25268 +S'Watch Key' +p25452 +sg25270 +S'Harry Grossen' +p25453 +sa(dp25454 +g25273 +S'overall: 183.5 x 99.8 x 41 cm (72 1/4 x 39 5/16 x 16 1/8 in.)' +p25455 +sg25267 +g27 +sg25275 +S'\ncarved, gilded, and polychromed walnut and oak' +p25456 +sg25268 +S'Walnut Bench with Balustraded Back' +p25457 +sg25270 +S'Sienese 16th Century' +p25458 +sa(dp25459 +g25267 +g27 +sg25268 +S'Watch Key' +p25460 +sg25270 +S'Gladys Cook' +p25461 +sa(dp25462 +g25267 +g27 +sg25268 +S'Watch Key' +p25463 +sg25270 +S'Harry Grossen' +p25464 +sa(dp25465 +g25267 +g27 +sg25268 +S'Watch Case' +p25466 +sg25270 +S'Thomas Watts' +p25467 +sa(dp25468 +g25267 +g27 +sg25268 +S'Detail of Coverlet: Technique Demonstration' +p25469 +sg25270 +S'Cornelius Christoffels' +p25470 +sa(dp25471 +g25267 +g27 +sg25268 +S'Textile' +p25472 +sg25270 +S'American 20th Century' +p25473 +sa(dp25474 +g25267 +g27 +sg25268 +S'Technique Demo (Jacquard Coverlet)' +p25475 +sg25270 +S'William Paul Childers' +p25476 +sa(dp25477 +g25267 +g27 +sg25268 +S'Textile Detail' +p25478 +sg25270 +S'Dorothea Bates' +p25479 +sa(dp25480 +g25267 +g27 +sg25268 +S'Technique Demonstration' +p25481 +sg25270 +S'Roy Caswell' +p25482 +sa(dp25483 +g25267 +g27 +sg25268 +S'Beadwork: Technique Demonstration' +p25484 +sg25270 +S'Cornelius Christoffels' +p25485 +sa(dp25486 +g25267 +g27 +sg25268 +S'Textile: Technique Demonstration' +p25487 +sg25270 +S'Cornelius Christoffels' +p25488 +sa(dp25489 +g25268 +S'Walnut Bench with Balustraded Back' +p25490 +sg25270 +S'Sienese 16th Century' +p25491 +sg25273 +S'overall: 188.7 x 101.4 x 38.9 cm (74 5/16 x 39 15/16 x 15 5/16 in.)' +p25492 +sg25275 +S'\ncarved, gilded, and polychromed walnut and oak' +p25493 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3eb.jpg' +p25494 +sg25267 +g27 +sa(dp25495 +g25267 +g27 +sg25268 +S'Embroidery: Technique Demonstration' +p25496 +sg25270 +S'William Kieckhofel' +p25497 +sa(dp25498 +g25267 +g27 +sg25268 +S'Textile: Technique Demonstration' +p25499 +sg25270 +S'Della Button' +p25500 +sa(dp25501 +g25267 +g27 +sg25268 +S'Textile: Technique Demonstration' +p25502 +sg25270 +S'American 20th Century' +p25503 +sa(dp25504 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a00058d8.jpg' +p25505 +sg25268 +S'Sampler' +p25506 +sg25270 +S'William Kieckhofel' +p25507 +sa(dp25508 +g25267 +g27 +sg25268 +S'Woven Textile: Technique Demonstration' +p25509 +sg25270 +S'Dorothea Bates' +p25510 +sa(dp25511 +g25267 +g27 +sg25268 +S'Ox Collar' +p25512 +sg25270 +S'Alexander Anderson' +p25513 +sa(dp25514 +g25267 +g27 +sg25268 +S'Chart of Coverlet Thread Construction' +p25515 +sg25270 +S'Arthur G. Merkley' +p25516 +sa(dp25517 +g25267 +g27 +sg25268 +S'Factory Cloth Samples' +p25518 +sg25270 +S'Frank J. Mace' +p25519 +sa(dp25520 +g25267 +g27 +sg25268 +S'Jacquard coverlet' +p25521 +sg25270 +S'H. Langden Brown' +p25522 +sa(dp25523 +g25267 +g27 +sg25268 +S'Textile: Technique Demonstration' +p25524 +sg25270 +S'American 20th Century' +p25525 +sa(dp25526 +g25273 +S'overall: 94.5 x 92.2 x 82.8 cm (37 3/16 x 36 5/16 x 32 5/8 in.)' +p25527 +sg25267 +g27 +sg25275 +S'\nwalnut, pine, maple, and cast bronze' +p25528 +sg25268 +S'Square Table with Legs Carved as Winged Figures' +p25529 +sg25270 +S'Venetian 16th Century' +p25530 +sa(dp25531 +g25267 +g27 +sg25268 +S'Embroidery: Technique Demonstration' +p25532 +sg25270 +S'American 20th Century' +p25533 +sa(dp25534 +g25267 +g27 +sg25268 +S'Beadwork on Purse (Tech. demonstration)' +p25535 +sg25270 +S'Harriette Gale' +p25536 +sa(dp25537 +g25267 +g27 +sg25268 +S'Necklace' +p25538 +sg25270 +S'Alfred H. Smith' +p25539 +sa(dp25540 +g25267 +g27 +sg25268 +S'Crewel Embroidery' +p25541 +sg25270 +S'Helen Dana' +p25542 +sa(dp25543 +g25267 +g27 +sg25268 +S'Coverlet' +p25544 +sg25270 +S'J. Howard Iams' +p25545 +sa(dp25546 +g25267 +g27 +sg25268 +S'Coverlet' +p25547 +sg25270 +S'Edward White' +p25548 +sa(dp25549 +g25267 +g27 +sg25268 +S'Coverlet' +p25550 +sg25270 +S'J. Howard Iams' +p25551 +sa(dp25552 +g25267 +g27 +sg25268 +S'Coverlet' +p25553 +sg25270 +S'Ralph Atkinson' +p25554 +sa(dp25555 +g25267 +g27 +sg25268 +S'Coverlet' +p25556 +sg25270 +S'Katherine Hastings' +p25557 +sa(dp25558 +g25267 +g27 +sg25268 +S'Coverlet' +p25559 +sg25270 +S'Eva Wilson' +p25560 +sa(dp25561 +g25273 +S'overall: 69.8 x 94.8 x 51.6 cm (27 1/2 x 37 5/16 x 20 5/16 in.)' +p25562 +sg25267 +g27 +sg25275 +S'\nwalnut, maple inlay, and upholstery' +p25563 +sg25268 +S'Dantesca Chair with Inlay Work' +p25564 +sg25270 +S'Italian 15th Century' +p25565 +sa(dp25566 +g25267 +g27 +sg25268 +S'Coverlet' +p25567 +sg25270 +S'Ralph Atkinson' +p25568 +sa(dp25569 +g25267 +g27 +sg25268 +S'Coverlet' +p25570 +sg25270 +S'Ralph Atkinson' +p25571 +sa(dp25572 +g25267 +g27 +sg25268 +S'Coverlet' +p25573 +sg25270 +S'Ralph Atkinson' +p25574 +sa(dp25575 +g25267 +g27 +sg25268 +S'Coverlet' +p25576 +sg25270 +S'Christopher Hobbs' +p25577 +sa(dp25578 +g25267 +g27 +sg25268 +S'Coverlet' +p25579 +sg25270 +S'J. Howard Iams' +p25580 +sa(dp25581 +g25267 +g27 +sg25268 +S'Coverlet' +p25582 +sg25270 +S'Katherine Hastings' +p25583 +sa(dp25584 +g25267 +g27 +sg25268 +S'Coverlet' +p25585 +sg25270 +S'Albert Eyth' +p25586 +sa(dp25587 +g25267 +g27 +sg25268 +S'Coverlet' +p25588 +sg25270 +S'Christopher Hobbs' +p25589 +sa(dp25590 +g25267 +g27 +sg25268 +S'Coverlet' +p25591 +sg25270 +S'Katherine Hastings' +p25592 +sa(dp25593 +g25267 +g27 +sg25268 +S'Coverlet' +p25594 +sg25270 +S'Dorothy Posten' +p25595 +sa(dp25596 +g25273 +S'overall: 63.2 x 99.5 x 53.5 cm (24 7/8 x 39 3/16 x 21 1/16 in.)' +p25597 +sg25267 +g27 +sg25275 +S'\nwalnut, maple inlay, and upholstery' +p25598 +sg25268 +S'Dantesca Chair with Inlay Work' +p25599 +sg25270 +S'Italian 15th Century' +p25600 +sa(dp25601 +g25267 +g27 +sg25268 +S'Coverlet' +p25602 +sg25270 +S'Edward White' +p25603 +sa(dp25604 +g25267 +g27 +sg25268 +S'Coverlet' +p25605 +sg25270 +S'Dorothy Posten' +p25606 +sa(dp25607 +g25267 +g27 +sg25268 +S'Coverlet' +p25608 +sg25270 +S'Katherine Hastings' +p25609 +sa(dp25610 +g25267 +g27 +sg25268 +S'Coverlet' +p25611 +sg25270 +S'Margaret Linsley' +p25612 +sa(dp25613 +g25267 +g27 +sg25268 +S'Homespun Coverlet' +p25614 +sg25270 +S'Cornelius Christoffels' +p25615 +sa(dp25616 +g25267 +g27 +sg25268 +S'Hooked Rug' +p25617 +sg25270 +S'Alfonso Umana' +p25618 +sa(dp25619 +g25267 +g27 +sg25268 +S'Coverlet' +p25620 +sg25270 +S'Cornelius Christoffels' +p25621 +sa(dp25622 +g25267 +g27 +sg25268 +S'Damask Coverlet' +p25623 +sg25270 +S'Katherine Hastings' +p25624 +sa(dp25625 +g25267 +g27 +sg25268 +S'Coverlet' +p25626 +sg25270 +S'Cornelius Christoffels' +p25627 +sa(dp25628 +g25267 +g27 +sg25268 +S'Coverlet (Section)' +p25629 +sg25270 +S'Cornelius Christoffels' +p25630 +sa(dp25631 +g25268 +S'Cassone Carved and Gilded' +p25632 +sg25270 +S'Florentine 15th Century' +p25633 +sg25273 +S'gilded walnut' +p25634 +sg25275 +S'fourth quarter 15th century' +p25635 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d936.jpg' +p25636 +sg25267 +g27 +sa(dp25637 +g25267 +g27 +sg25268 +S'Handwoven Table Cover' +p25638 +sg25270 +S'Maud M. Holme' +p25639 +sa(dp25640 +g25267 +g27 +sg25268 +S'Coverlet' +p25641 +sg25270 +S'Sarkis Erganian' +p25642 +sa(dp25643 +g25267 +g27 +sg25268 +S'Hat Mannequin and Bonnet' +p25644 +sg25270 +S'Howard Weld' +p25645 +sa(dp25646 +g25267 +g27 +sg25268 +S'Hat Mannequin' +p25647 +sg25270 +S'Howard Weld' +p25648 +sa(dp25649 +g25267 +g27 +sg25268 +S'Hooked Rug' +p25650 +sg25270 +S'Jules Lefevere' +p25651 +sa(dp25652 +g25267 +g27 +sg25268 +S'Sewed "Caterpillar" Rug' +p25653 +sg25270 +S'Marion Curtiss' +p25654 +sa(dp25655 +g25267 +g27 +sg25268 +S'Hooked Rug' +p25656 +sg25270 +S'Elizabeth Valentine' +p25657 +sa(dp25658 +g25267 +g27 +sg25268 +S'Hooked Rug' +p25659 +sg25270 +S'Lillian M. Mosseller' +p25660 +sa(dp25661 +g25267 +g27 +sg25268 +S'Materials from Quilt' +p25662 +sg25270 +S'Dorothy Posten' +p25663 +sa(dp25664 +g25267 +g27 +sg25268 +S'Swatches from Patchwork Quilt' +p25665 +sg25270 +S'Henry Granet' +p25666 +sa(dp25667 +g25273 +S'overall: 68 x 86.4 x 52.1 cm (26 3/4 x 34 x 20 1/2 in.)' +p25668 +sg25267 +g27 +sg25275 +S'\nbeech, with oak or chestnut feet' +p25669 +sg25268 +S'Walnut Savonarola Chair with Incised Ornament' +p25670 +sg25270 +S'Italian 16th Century' +p25671 +sa(dp25672 +g25267 +g27 +sg25268 +S'Squares of Patchwork' +p25673 +sg25270 +S'Carl Buergerniss' +p25674 +sa(dp25675 +g25267 +g27 +sg25268 +S'Printed Quilt Patterns' +p25676 +sg25270 +S'Maud Schmid' +p25677 +sa(dp25678 +g25267 +g27 +sg25268 +S'Padded Coverlet' +p25679 +sg25270 +S'Artist Information (' +p25680 +sa(dp25681 +g25267 +g27 +sg25268 +S'Patchwork Quilt' +p25682 +sg25270 +S'Genevieve Sherlock' +p25683 +sa(dp25684 +g25267 +g27 +sg25268 +S'Applique Quilt' +p25685 +sg25270 +S'Mildred E. Bent' +p25686 +sa(dp25687 +g25267 +g27 +sg25268 +S'Quilt (Crib Quilt)' +p25688 +sg25270 +S'Francis Law Durand' +p25689 +sa(dp25690 +g25267 +g27 +sg25268 +S'Patchwork Quilt' +p25691 +sg25270 +S'Edmond W. Brown' +p25692 +sa(dp25693 +g25267 +g27 +sg25268 +S'Patchwork Quilt' +p25694 +sg25270 +S'Paul Ward' +p25695 +sa(dp25696 +g25267 +g27 +sg25268 +S'Detail from Appliqued Quilt' +p25697 +sg25270 +S'American 20th Century' +p25698 +sa(dp25699 +g25267 +g27 +sg25268 +S'Applique Quilt' +p25700 +sg25270 +S'American 20th Century' +p25701 +sa(dp25702 +g25273 +S'overall: 73.3 x 100.6 x 66.3 cm (28 7/8 x 39 5/8 x 26 1/8 in.)' +p25703 +sg25267 +g27 +sg25275 +S'\nwalnut' +p25704 +sg25268 +S'Walnut Savonarola Chair with Letters G.M.' +p25705 +sg25270 +S'Italian 16th Century' +p25706 +sa(dp25707 +g25267 +g27 +sg25268 +S'Brussels Carpet' +p25708 +sg25270 +S'Charlotte Winter' +p25709 +sa(dp25710 +g25267 +g27 +sg25268 +S'Pillow Sham' +p25711 +sg25270 +S'Edna C. Rex' +p25712 +sa(dp25713 +g25267 +g27 +sg25268 +S'Mourning Picture' +p25714 +sg25270 +S'Jules Lefevere' +p25715 +sa(dp25716 +g25267 +g27 +sg25268 +S'Mourning Picture' +p25717 +sg25270 +S'John Oster' +p25718 +sa(dp25719 +g25267 +g27 +sg25268 +S'Embroidery' +p25720 +sg25270 +S'A. Zimet' +p25721 +sa(dp25722 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a000588f.jpg' +p25723 +sg25268 +S'Sampler' +p25724 +sg25270 +S'Douglas Campbell' +p25725 +sa(dp25726 +g25267 +g27 +sg25268 +S'Lace' +p25727 +sg25270 +S'Florence Earl' +p25728 +sa(dp25729 +g25267 +g27 +sg25268 +S'Lace Edging' +p25730 +sg25270 +S'Raymond Manupelli' +p25731 +sa(dp25732 +g25267 +g27 +sg25268 +S'Needlework' +p25733 +sg25270 +S'Lena Nastasi' +p25734 +sa(dp25735 +g25267 +g27 +sg25268 +S'Small Cravat' +p25736 +sg25270 +S'Dorothy M. Gerhard' +p25737 +sa(dp25738 +g25273 +S'overall: 73.3 x 102.5 x 61.6 cm (28 7/8 x 40 3/8 x 24 1/4 in.)' +p25739 +sg25267 +g27 +sg25275 +S'\nwalnut, with oak feet' +p25740 +sg25268 +S'Walnut Savonarola Chair with Dolphins' +p25741 +sg25270 +S'Italian 16th Century' +p25742 +sa(dp25743 +g25267 +g27 +sg25268 +S'Lace Cravat' +p25744 +sg25270 +S'Jean Peszel' +p25745 +sa(dp25746 +g25267 +g27 +sg25268 +S"Child's Collar" +p25747 +sg25270 +S'Doris Beer' +p25748 +sa(dp25749 +g25267 +g27 +sg25268 +S'Embroidered Panel for Sleeve' +p25750 +sg25270 +S'Gordena Jackson' +p25751 +sa(dp25752 +g25267 +g27 +sg25268 +S'Printed Historic Textiles' +p25753 +sg25270 +S'Michael Trekur' +p25754 +sa(dp25755 +g25267 +g27 +sg25268 +S'Quilted Bedspread' +p25756 +sg25270 +S'Irene Schaefer' +p25757 +sa(dp25758 +g25267 +g27 +sg25268 +S'Patchwork Quilt' +p25759 +sg25270 +S'Edmond W. Brown' +p25760 +sa(dp25761 +g25267 +g27 +sg25268 +S'Block Print' +p25762 +sg25270 +S'George Loughridge' +p25763 +sa(dp25764 +g25267 +g27 +sg25268 +S'Calico' +p25765 +sg25270 +S'Marie Lutrell' +p25766 +sa(dp25767 +g25267 +g27 +sg25268 +S'Chintz' +p25768 +sg25270 +S'George Loughridge' +p25769 +sa(dp25770 +g25267 +g27 +sg25268 +S'Calico' +p25771 +sg25270 +S'Marie Lutrell' +p25772 +sa(dp25773 +g25273 +S'walnut and poplar' +p25774 +sg25267 +g27 +sg25275 +S'c. 1540/1560' +p25775 +sg25268 +S'Walnut Cassabanca with Medici Arms' +p25776 +sg25270 +S'Florentine 16th Century' +p25777 +sa(dp25778 +g25267 +g27 +sg25268 +S'Calico' +p25779 +sg25270 +S'Marie Lutrell' +p25780 +sa(dp25781 +g25267 +g27 +sg25268 +S'Calico' +p25782 +sg25270 +S'Florence Stevenson' +p25783 +sa(dp25784 +g25267 +g27 +sg25268 +S'Printed Cotton' +p25785 +sg25270 +S'George Loughridge' +p25786 +sa(dp25787 +g25267 +g27 +sg25268 +S'Glazed Chintz' +p25788 +sg25270 +S'Florence Stevenson' +p25789 +sa(dp25790 +g25267 +g27 +sg25268 +S'Cotton Cloth' +p25791 +sg25270 +S'Pearl Gibbo' +p25792 +sa(dp25793 +g25267 +g27 +sg25268 +S"Child's Dress (Section)" +p25794 +sg25270 +S'Raymond Manupelli' +p25795 +sa(dp25796 +g25267 +g27 +sg25268 +S'Flowered Challis Gown' +p25797 +sg25270 +S'Lester Kausch' +p25798 +sa(dp25799 +g25267 +g27 +sg25268 +S'Quilt' +p25800 +sg25270 +S'Suzanne Roy' +p25801 +sa(dp25802 +g25267 +g27 +sg25268 +S'Bundle Handkerchief' +p25803 +sg25270 +S'Alfred Denghausen' +p25804 +sa(dp25805 +g25267 +g27 +sg25268 +S"Fireman's Hat" +p25806 +sg25270 +S'Page Coffman' +p25807 +sa(dp25808 +g25273 +S'wood, painted and gilded gesso, and lead white (?); gilded brass handle; velvet lining' +p25809 +sg25267 +g27 +sg25275 +S'c. 1375/1400' +p25810 +sg25268 +S'Cassetta' +p25811 +sg25270 +S'Tuscan 14th Century' +p25812 +sa(dp25813 +g25267 +g27 +sg25268 +S"Coverlet: Gentleman's Fancy" +p25814 +sg25270 +S'Elbert S. Mowery' +p25815 +sa(dp25816 +g25267 +g27 +sg25268 +S"Coverlet: Gentleman's Fancy" +p25817 +sg25270 +S'Elbert S. Mowery' +p25818 +sa(dp25819 +g25267 +g27 +sg25268 +S'Linen and Cotton Homespun' +p25820 +sg25270 +S'Frank S. Browne' +p25821 +sa(dp25822 +g25267 +g27 +sg25268 +S'Linen and Cotton Homespun' +p25823 +sg25270 +S'Magnus S. Fossum' +p25824 +sa(dp25825 +g25267 +g27 +sg25268 +S'Linen and Cotton Homespun' +p25826 +sg25270 +S'American 20th Century' +p25827 +sa(dp25828 +g25267 +g27 +sg25268 +S"Doll's Straw Bonnet" +p25829 +sg25270 +S'Carmel Wilson' +p25830 +sa(dp25831 +g25267 +g27 +sg25268 +S"Child's Dress" +p25832 +sg25270 +S'Nancy Crimi' +p25833 +sa(dp25834 +g25267 +g27 +sg25268 +S'Coverlet' +p25835 +sg25270 +S'Mae A. Clarke' +p25836 +sa(dp25837 +g25267 +g27 +sg25268 +S'Coverlet' +p25838 +sg25270 +S'Mae A. Clarke' +p25839 +sa(dp25840 +g25267 +g27 +sg25268 +S'Quilt (Star of Bethlehem)' +p25841 +sg25270 +S'Charles Bowman' +p25842 +sa(dp25843 +g25273 +S'overall: 70.2 x 97.9 x 57.1 cm (27 5/8 x 38 9/16 x 22 1/2 in.)' +p25844 +sg25267 +g27 +sg25275 +S'\nwalnut' +p25845 +sg25268 +S'Walnut Savonarola Chair with Medici Arms' +p25846 +sg25270 +S'Italian 16th Century' +p25847 +sa(dp25848 +g25267 +g27 +sg25268 +S'Walking Stick' +p25849 +sg25270 +S'Clyde L. Cheney' +p25850 +sa(dp25851 +g25267 +g27 +sg25268 +S'Dental Forceps' +p25852 +sg25270 +S'May B. Tebo' +p25853 +sa(dp25854 +g25267 +g27 +sg25268 +S'Fractur: Christening Certificate' +p25855 +sg25270 +S'Ella Josephine Sterling' +p25856 +sa(dp25857 +g25267 +g27 +sg25268 +S'Painted Chest' +p25858 +sg25270 +S'E. Boyd' +p25859 +sa(dp25860 +g25267 +g27 +sg25268 +S'Fractur' +p25861 +sg25270 +S'Albert Levone' +p25862 +sa(dp25863 +g25267 +g27 +sg25268 +S'Illuminated Title Page from Manuscript Songbook' +p25864 +sg25270 +S'Elmer G. Anderson' +p25865 +sa(dp25866 +g25267 +g27 +sg25268 +S'Pa. German Book Marker' +p25867 +sg25270 +S'Albert Levone' +p25868 +sa(dp25869 +g25267 +g27 +sg25268 +S'Fractur Paintings (Upper-a Hymn; Lower- Religious Motto)' +p25870 +sg25270 +S'Albert Levone' +p25871 +sa(dp25872 +g25267 +g27 +sg25268 +S'Fractur (Illuminated Writing)' +p25873 +sg25270 +S'John Koehl' +p25874 +sa(dp25875 +g25267 +S'Fractur is a term referring to a style of writing as well at to the illuminated documents on which it was executed. Brought to Pennsylvania by German scribes, fractur was an art form peculiar to the Pennsylvania Germans. Fractur writing was based \n upon the sixteenth-century fractur typeface, a loose imitation of bold, rigid Gothic lettering. In the German manner, fractur painting followed the tradition of medieval manuscript illumination. The fractur writer held several positions within the \n Pennsylvania German community. As the representative of learning, he was often the schoolmaster as well as clergyman. With his skill in drawing and writing, he performed such services as illustrating books and hymnals and drawing up important documents. \n This fractur is a hymnbook illustraion that commemorates the 100th Psalm. Bold lettering contrasts with lighter, more graceful forms. The decorative motifs of angels, tulips, and stars were hand-drawn and colored.\n ' +p25876 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000377.jpg' +p25877 +sg25268 +S'Manuscript and Miniature' +p25878 +sg25270 +S'Albert Levone' +p25879 +sa(dp25880 +g25273 +S'overall: 66.6 x 100.4 x 55.9 cm (26 1/4 x 39 1/2 x 22 in.)' +p25881 +sg25267 +g27 +sg25275 +S'\nwalnut' +p25882 +sg25268 +S'Walnut Savonarola Chair with Medici Arms' +p25883 +sg25270 +S'Italian 16th Century' +p25884 +sa(dp25885 +g25267 +g27 +sg25268 +S'Pa. German Fractur Designs' +p25886 +sg25270 +S'Page Coffman' +p25887 +sa(dp25888 +g25267 +g27 +sg25268 +S'Pa. German Birth Certificate (Waltman #3)' +p25889 +sg25270 +S'Emma M. Krumrine' +p25890 +sa(dp25891 +g25267 +g27 +sg25268 +S'Illuminated Psalm' +p25892 +sg25270 +S'Emma M. Krumrine' +p25893 +sa(dp25894 +g25267 +g27 +sg25268 +S'Fractur Drawing (Birth Certificate)' +p25895 +sg25270 +S'Jessica Price' +p25896 +sa(dp25897 +g25267 +g27 +sg25268 +S'Fraktur - Birth and Baptismal Certificate' +p25898 +sg25270 +S'Emma M. Krumrine' +p25899 +sa(dp25900 +g25267 +g27 +sg25268 +S'Pa. German Death Certificate' +p25901 +sg25270 +S'Albert Levone' +p25902 +sa(dp25903 +g25267 +g27 +sg25268 +S'Pa. German Birth Certificate' +p25904 +sg25270 +S'Elmer G. Anderson' +p25905 +sa(dp25906 +g25267 +g27 +sg25268 +S'Pa. German Birth Certificate' +p25907 +sg25270 +S'Albert Levone' +p25908 +sa(dp25909 +g25267 +g27 +sg25268 +S'Unframed Birth Certificate' +p25910 +sg25270 +S'Edward White' +p25911 +sa(dp25912 +g25267 +g27 +sg25268 +S'Certificate, Birth and Baptismal; (Fractur)' +p25913 +sg25270 +S'Ruth Thomson' +p25914 +sa(dp25915 +g25273 +S'overall: 94 x 68.6 x 45.1 cm (37 x 27 x 17 3/4 in.)' +p25916 +sg25267 +g27 +sg25275 +S'\nelm, with leather seat, velvet upholstery, and bone, horn, and boxwood inlay' +p25917 +sg25268 +S'Dantesca Chair with Inlay Work' +p25918 +sg25270 +S'Italian 16th Century' +p25919 +sa(dp25920 +g25267 +g27 +sg25268 +S'Birth Certificate (taufschein)' +p25921 +sg25270 +S'Albert Levone' +p25922 +sa(dp25923 +g25267 +g27 +sg25268 +S'Memorial-Pennsylvania Fractur and Cut-out Commemorating Jacob Bauer' +p25924 +sg25270 +S'Fritz Boehmer' +p25925 +sa(dp25926 +g25267 +g27 +sg25268 +S'Pa. German Birth Certificate' +p25927 +sg25270 +S'John Wilkes' +p25928 +sa(dp25929 +g25267 +g27 +sg25268 +S'Pa. German Birth Certificate' +p25930 +sg25270 +S'Elmer G. Anderson' +p25931 +sa(dp25932 +g25267 +g27 +sg25268 +S'Pa. German Birth Certificate' +p25933 +sg25270 +S'Albert Levone' +p25934 +sa(dp25935 +g25267 +g27 +sg25268 +S'Pa. German Birth Certificate' +p25936 +sg25270 +S'Ethelbert Brown' +p25937 +sa(dp25938 +g25267 +g27 +sg25268 +S'Pa. German Fractur Design' +p25939 +sg25270 +S'Charlotte Angus' +p25940 +sa(dp25941 +g25267 +g27 +sg25268 +S'Pa. German Birth Certificate' +p25942 +sg25270 +S'Herbert Barnard' +p25943 +sa(dp25944 +g25267 +g27 +sg25268 +S'Pa. German Illustrated Fractur' +p25945 +sg25270 +S'Jerry Guinta' +p25946 +sa(dp25947 +g25267 +g27 +sg25268 +S'Pa. German Birth and Baptismal Certificate' +p25948 +sg25270 +S'Roy S. Brown' +p25949 +sa(dp25950 +g25268 +S'Chimneypiece with Shield of Arms of the Barbo of Venice' +p25951 +sg25270 +S'North Italian 15th Century' +p25952 +sg25273 +S'Widener Collection' +p25953 +sg25275 +S'\nstone' +p25954 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3ec.jpg' +p25955 +sg25267 +g27 +sa(dp25956 +g25267 +g27 +sg25268 +S'Pa. German Birth and Baptismal Certificate' +p25957 +sg25270 +S'Elmer R. Kottcamp' +p25958 +sa(dp25959 +g25267 +g27 +sg25268 +S'Pa. German Birth Certificate' +p25960 +sg25270 +S'Ethelbert Brown' +p25961 +sa(dp25962 +g25267 +g27 +sg25268 +S'Pa. German Birth Certificate' +p25963 +sg25270 +S'Elmer G. Anderson' +p25964 +sa(dp25965 +g25267 +g27 +sg25268 +S'Pa. German Birth Certificate' +p25966 +sg25270 +S'Albert Levone' +p25967 +sa(dp25968 +g25267 +g27 +sg25268 +S'Portion of Birth Certificate' +p25969 +sg25270 +S'Albert Levone' +p25970 +sa(dp25971 +g25267 +g27 +sg25268 +S'Pa. German Painted Wooden Box' +p25972 +sg25270 +S'Elmer G. Anderson' +p25973 +sa(dp25974 +g25267 +g27 +sg25268 +S'Pa. German Wallpaper Box' +p25975 +sg25270 +S'Edward W. Buechner' +p25976 +sa(dp25977 +g25267 +g27 +sg25268 +S'Pa. German Band Box' +p25978 +sg25270 +S'Frances Lichten' +p25979 +sa(dp25980 +g25267 +g27 +sg25268 +S'Pa. German Bandbox' +p25981 +sg25270 +S'Betty Jacob' +p25982 +sa(dp25983 +g25267 +g27 +sg25268 +S'Pa. German Cap Box' +p25984 +sg25270 +S'Frances Lichten' +p25985 +sa(dp25986 +g25273 +S'overall: 43.4 x 73.9 x 38.8 cm (17 1/16 x 29 1/8 x 15 1/4 in.)' +p25987 +sg25267 +g27 +sg25275 +S'\nwalnut, oak, and upholstery' +p25988 +sg25268 +S'Small Side Chair' +p25989 +sg25270 +S'Italian 16th Century' +p25990 +sa(dp25991 +g25267 +g27 +sg25268 +S'Pa. German Bandbox' +p25992 +sg25270 +S'Elmer G. Anderson' +p25993 +sa(dp25994 +g25267 +g27 +sg25268 +S'Pa. German Bride or Cap Box' +p25995 +sg25270 +S'Frances Lichten' +p25996 +sa(dp25997 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005520.jpg' +p25998 +sg25268 +S'Plate with Soldier on Horseback' +p25999 +sg25270 +S'Albert Levone' +p26000 +sa(dp26001 +g25267 +g27 +sg25268 +S'Pa. German Hat Box' +p26002 +sg25270 +S'Eugene C. Miller' +p26003 +sa(dp26004 +g25267 +g27 +sg25268 +S"Pa. German Bride's Box" +p26005 +sg25270 +S'Jessica Price' +p26006 +sa(dp26007 +g25267 +g27 +sg25268 +S'Pa. German Cap Box' +p26008 +sg25270 +S'Rolland Livingstone' +p26009 +sa(dp26010 +g25267 +g27 +sg25268 +S"Pa. German's Bride's Box" +p26011 +sg25270 +S'Meyer Goldbaum' +p26012 +sa(dp26013 +g25267 +g27 +sg25268 +S"Pa. German Bride's Box" +p26014 +sg25270 +S'Jessica Price' +p26015 +sa(dp26016 +g25267 +g27 +sg25268 +S'Pa. German Box' +p26017 +sg25270 +S'Joseph Rothenberg' +p26018 +sa(dp26019 +g25267 +g27 +sg25268 +S"Pa. German Bride's Box" +p26020 +sg25270 +S'American 20th Century' +p26021 +sa(dp26022 +g25273 +S'overall: 44.5 x 81.6 x 37.5 cm (17 1/2 x 32 1/8 x 14 3/4 in.)' +p26023 +sg25267 +g27 +sg25275 +S'\nwalnut, oak, and upholstery' +p26024 +sg25268 +S'Small Side Chair' +p26025 +sg25270 +S'Italian 16th Century' +p26026 +sa(dp26027 +g25267 +g27 +sg25268 +S"Pa. German Child's Bank" +p26028 +sg25270 +S'Luther D. Wenrich' +p26029 +sa(dp26030 +g25267 +g27 +sg25268 +S'Pa. German Cheese Strainer' +p26031 +sg25270 +S'Robert Stewart' +p26032 +sa(dp26033 +g25267 +g27 +sg25268 +S'Pa. German Whistle' +p26034 +sg25270 +S'Yolande Delasser' +p26035 +sa(dp26036 +g25267 +g27 +sg25268 +S'Pa. German Ceramic Horse' +p26037 +sg25270 +S'Carl Strehlau' +p26038 +sa(dp26039 +g25267 +g27 +sg25268 +S'Pa. German Pottery Bank' +p26040 +sg25270 +S'William L. Antrim' +p26041 +sa(dp26042 +g25267 +g27 +sg25268 +S'Pa. German Money Bank' +p26043 +sg25270 +S'Frances Lichten' +p26044 +sa(dp26045 +g25267 +g27 +sg25268 +S'Pa. German Gravy Boat' +p26046 +sg25270 +S'Elmer G. Anderson' +p26047 +sa(dp26048 +g25267 +g27 +sg25268 +S'Pa. German Jar' +p26049 +sg25270 +S'Eugene Shellady' +p26050 +sa(dp26051 +g25267 +g27 +sg25268 +S'Pa. German Bowl' +p26052 +sg25270 +S'Alvin Shiren' +p26053 +sa(dp26054 +g25267 +g27 +sg25268 +S'Pa. German Sugar Bowl and Creamer' +p26055 +sg25270 +S'William L. Antrim' +p26056 +sa(dp26057 +g25273 +S'overall: 102.5 x 85.1 x 75.3 cm (40 3/8 x 33 1/2 x 29 5/8 in.)' +p26058 +sg25267 +g27 +sg25275 +S'\nwalnut, pine, marble, and gilding' +p26059 +sg25268 +S'Table with Green Marble Top' +p26060 +sg25270 +S'Italian 16th Century' +p26061 +sa(dp26062 +g25267 +g27 +sg25268 +S'Pa. German Earthenware Bowl' +p26063 +sg25270 +S'Jessica Price' +p26064 +sa(dp26065 +g25267 +g27 +sg25268 +S'Pa. German Jar' +p26066 +sg25270 +S'William L. Antrim' +p26067 +sa(dp26068 +g25267 +g27 +sg25268 +S'Sugar Bowl and Creamer' +p26069 +sg25270 +S'William L. Antrim' +p26070 +sa(dp26071 +g25267 +S'Sgraffito and slip decoration are expertly combined on this Pennsylvania German plate. The design, a central, eight-pointed star surrounded by a balanced arrangement of tulip sprays and geometric motifs, is delineated by firmly drawn sgraffito lines. \n In addition, the potter has scraped away areas of the yellow slip coating to reveal the red clay underneath and has filled the corresponding spaces in the design with touches of green slip, brushed on over the light background. By deftly blending \n his decorative methods, the potter has produced a varied and colorful design.\n ' +p26072 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000463.jpg' +p26073 +sg25268 +S'Pennsylvania German Pie Plate' +p26074 +sg25270 +S'Elmer G. Anderson' +p26075 +sa(dp26076 +g25267 +g27 +sg25268 +S'Pa. German Covered Dish' +p26077 +sg25270 +S'Alvin Shiren' +p26078 +sa(dp26079 +g25267 +g27 +sg25268 +S'Pa. German Octagonal Dish' +p26080 +sg25270 +S'Frances Lichten' +p26081 +sa(dp26082 +g25267 +g27 +sg25268 +S'Pa. German Tobacco Bowl w/ Lid' +p26083 +sg25270 +S'Albert Levone' +p26084 +sa(dp26085 +g25267 +g27 +sg25268 +S'Pa. German Covered Jar' +p26086 +sg25270 +S'Margaret Stottlemeyer' +p26087 +sa(dp26088 +g25267 +g27 +sg25268 +S'Pa. German Jar with Cover' +p26089 +sg25270 +S'Max Soltmann' +p26090 +sa(dp26091 +g25267 +g27 +sg25268 +S'Pa. German Bean Pot with Lid' +p26092 +sg25270 +S'Henrietta S. Bukill' +p26093 +sa(dp26094 +g25268 +S'Cassabanca with Atlantes Supporting the Arms' +p26095 +sg25270 +S'Italian 16th Century' +p26096 +sg25273 +S'overall: 257.3 x 90.5 x 73.8 cm (101 5/16 x 35 5/8 x 29 1/16 in.)' +p26097 +sg25275 +S'\nwalnut, pine, maple, and oak' +p26098 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3ea.jpg' +p26099 +sg25267 +g27 +sa(dp26100 +g25267 +g27 +sg25268 +S'Pa. German Covered Jar' +p26101 +sg25270 +S'William L. Antrim' +p26102 +sa(dp26103 +g25267 +g27 +sg25268 +S'Pa. German Jar with Lid' +p26104 +sg25270 +S'Ethelbert Brown' +p26105 +sa(dp26106 +g25267 +g27 +sg25268 +S'Pa. German Jar' +p26107 +sg25270 +S'Eugene Shellady' +p26108 +sa(dp26109 +g25267 +g27 +sg25268 +S'Pa. German Bowl' +p26110 +sg25270 +S'Fritz Boehmer' +p26111 +sa(dp26112 +g25267 +g27 +sg25268 +S'Pa. German Pie Plate' +p26113 +sg25270 +S'Mina Lowry' +p26114 +sa(dp26115 +g25267 +g27 +sg25268 +S'Pa. German Stoneware Flask' +p26116 +sg25270 +S'Beverly Chichester' +p26117 +sa(dp26118 +g25267 +g27 +sg25268 +S'Pa. German Shaving Basin' +p26119 +sg25270 +S'Charlotte Angus' +p26120 +sa(dp26121 +g25267 +g27 +sg25268 +S'Pa. German Puzzle Mug' +p26122 +sg25270 +S'Eugene Shellady' +p26123 +sa(dp26124 +g25267 +g27 +sg25268 +S'Pa. German Jar' +p26125 +sg25270 +S'Eugene Shellady' +p26126 +sa(dp26127 +g25267 +g27 +sg25268 +S'Pa. German Stoneware Flask' +p26128 +sg25270 +S'V.L. Vance' +p26129 +sa(dp26130 +g25273 +S'overall: 45.4 x 80.3 x 43 cm (17 7/8 x 31 5/8 x 16 15/16 in.)' +p26131 +sg25267 +g27 +sg25275 +S'\nwalnut' +p26132 +sg25268 +S'Small Side Chair' +p26133 +sg25270 +S'Sienese 16th Century' +p26134 +sa(dp26135 +g25267 +g27 +sg25268 +S'Pa. German Butter Crock' +p26136 +sg25270 +S'Betty Jacob' +p26137 +sa(dp26138 +g25267 +g27 +sg25268 +S'Pa. German Jar' +p26139 +sg25270 +S'William L. Antrim' +p26140 +sa(dp26141 +g25267 +g27 +sg25268 +S'Pa. German Jar' +p26142 +sg25270 +S'Eugene Shellady' +p26143 +sa(dp26144 +g25267 +g27 +sg25268 +S'Pa. German Jug' +p26145 +sg25270 +S'Frances Lichten' +p26146 +sa(dp26147 +g25267 +g27 +sg25268 +S'Pa. German Jar' +p26148 +sg25270 +S'William L. Antrim' +p26149 +sa(dp26150 +g25267 +g27 +sg25268 +S'Cup and Saucer' +p26151 +sg25270 +S'Robert Stewart' +p26152 +sa(dp26153 +g25267 +g27 +sg25268 +S'Pa. German Hildebrandt Mug' +p26154 +sg25270 +S'Thomas Watts' +p26155 +sa(dp26156 +g25267 +g27 +sg25268 +S'Pa. German Drinking Mug' +p26157 +sg25270 +S'William L. Antrim' +p26158 +sa(dp26159 +g25267 +g27 +sg25268 +S'Pa. German Cup and Saucer' +p26160 +sg25270 +S'Max Soltmann' +p26161 +sa(dp26162 +g25267 +g27 +sg25268 +S'Pa. German Cup' +p26163 +sg25270 +S'Albert Levone' +p26164 +sa(dp26165 +g25273 +S'overall: 45.2 x 80.4 x 41.6 cm (17 13/16 x 31 5/8 x 16 3/8 in.)' +p26166 +sg25267 +g27 +sg25275 +S'\nwalnut' +p26167 +sg25268 +S'Small Side Chair' +p26168 +sg25270 +S'Sienese 16th Century' +p26169 +sa(dp26170 +g25267 +g27 +sg25268 +S'Pa. German Moravian Loving Cup' +p26171 +sg25270 +S'Archie Thompson' +p26172 +sa(dp26173 +g25267 +g27 +sg25268 +S'Pa. German Jardiniere' +p26174 +sg25270 +S'Giacinto Capelli' +p26175 +sa(dp26176 +g25267 +g27 +sg25268 +S'Pa. German Flower Vase' +p26177 +sg25270 +S'Max Soltmann' +p26178 +sa(dp26179 +g25267 +g27 +sg25268 +S'Pa. German Flower Pot and Saucer' +p26180 +sg25270 +S'Ethelbert Brown' +p26181 +sa(dp26182 +g25267 +g27 +sg25268 +S'Pa. German Flower Holder' +p26183 +sg25270 +S'Frances Lichten' +p26184 +sa(dp26185 +g25267 +g27 +sg25268 +S'Pa. German Gelatin Mold' +p26186 +sg25270 +S'Robert Stewart' +p26187 +sa(dp26188 +g25267 +g27 +sg25268 +S'Pa. German Soap Dish' +p26189 +sg25270 +S'Anne Mentzoff' +p26190 +sa(dp26191 +g25267 +g27 +sg25268 +S'Slip Cup' +p26192 +sg25270 +S'Hedwig Emanuel' +p26193 +sa(dp26194 +g25267 +g27 +sg25268 +S'Soap Dish' +p26195 +sg25270 +S'Anne Mentzoff' +p26196 +sa(dp26197 +g25267 +g27 +sg25268 +S'Pa. German Jug' +p26198 +sg25270 +S'Eugene Shellady' +p26199 +sa(dp26200 +g25268 +S'Walnut Dantesca Chair with Inlay Work' +p26201 +sg25270 +S'Lombard 15th Century' +p26202 +sg25273 +S'overall: 76.2 x 66 x 51.1 cm (30 x 26 x 20 1/8 in.)' +p26203 +sg25275 +S'\nelm, with velvet upholstery and bone, horn, and boxwood inlay' +p26204 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00069/a0006936.jpg' +p26205 +sg25267 +g27 +sa(dp26206 +g25267 +g27 +sg25268 +S'Pa. German Pitcher' +p26207 +sg25270 +S'Yolande Delasser' +p26208 +sa(dp26209 +g25267 +g27 +sg25268 +S'Pa. German Pitcher' +p26210 +sg25270 +S'Carl Strehlau' +p26211 +sa(dp26212 +g25267 +g27 +sg25268 +S'Pa. German Pie Plate' +p26213 +sg25270 +S'Eugene Shellady' +p26214 +sa(dp26215 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26216 +sg25270 +S'Eugene Shellady' +p26217 +sa(dp26218 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p26219 +sg25270 +S'Eugene Shellady' +p26220 +sa(dp26221 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26222 +sg25270 +S'Max Soltmann' +p26223 +sa(dp26224 +g25267 +g27 +sg25268 +S'Pa. German Pie Plate' +p26225 +sg25270 +S'Jessica Price' +p26226 +sa(dp26227 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p26228 +sg25270 +S'Jessica Price' +p26229 +sa(dp26230 +g25267 +g27 +sg25268 +S'Pa. German Pie Plate' +p26231 +sg25270 +S'Jack Carr' +p26232 +sa(dp26233 +g25267 +g27 +sg25268 +S'Pa. German Pie Plate' +p26234 +sg25270 +S'American 20th Century' +p26235 +sa(dp26236 +g25268 +S'Writing Table (table \xc3\xa0 \xc3\xa9crire)' +p26237 +sg25270 +S'Jean-Henri Riesener' +p26238 +sg25273 +S'veneered on oak with mahogany, sycamore, ebony, and boxwood' +p26239 +sg25275 +S'1784' +p26240 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005578.jpg' +p26241 +sg25267 +S"\n According to Jean-Henri Riesener's account ledger for May 28, 1784, this table was ordered for Queen Marie Antoinette's private apartments in the Tuileries Palace, Paris. Detailed descriptions and measurements, as well as a court inventory number inked underneath the tabletop, confirm its identity. After the French Revolution erupted in 1789, the royal family was held for three years in the Tuileries. Marie Antoinette must have used this piece during that imprisonment before she was guillotined in 1793.\n \n \n Besides its historical interest, the single-drawer table is a superb example of Riesener's artistry. With great perception, he emphasized the delicate taper of the legs by inlaying panels of darker wood that interrupt the paler surrounding veneer. Flanked by Roman flutings alternating with openwork palmettes, gilded central plaques depict cupids frolicking among clouds while playing musical instruments.\n \n \n It may not be coincidental that Riesener, the official cabinetmaker to Marie Antoinette and Louis XVI, came from Essen, Germany. The French queen, born in Austria, also spoke German. Ironically, the French Revolution did not destroy Riesener's career; he was employed to remove the royal emblems from \n his own court furniture!\n \n " +p26242 +sa(dp26243 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26244 +sg25270 +S'Yolande Delasser' +p26245 +sa(dp26246 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26247 +sg25270 +S'Austin L. Davison' +p26248 +sa(dp26249 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26250 +sg25270 +S'Archie Thompson' +p26251 +sa(dp26252 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26253 +sg25270 +S'Eugene Shellady' +p26254 +sa(dp26255 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26256 +sg25270 +S'Austin L. Davison' +p26257 +sa(dp26258 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26259 +sg25270 +S'Aaron Fastovsky' +p26260 +sa(dp26261 +g25267 +g27 +sg25268 +S'Pa. German Pie Dish' +p26262 +sg25270 +S'William L. Antrim' +p26263 +sa(dp26264 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26265 +sg25270 +S'William L. Antrim' +p26266 +sa(dp26267 +g25267 +S'This is a candle box dated 1738. Made with a sliding lid, it is decorated with a floral and geometric design painted in bright colors. \n Notice that the panel in front is recessed so that the dark background forms a frame around the symmetrical tulip motif.\n ' +p26268 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000036c.jpg' +p26269 +sg25268 +S'Pennsylvania German Candle Box' +p26270 +sg25270 +S'Rolland Livingstone' +p26271 +sa(dp26272 +g25267 +g27 +sg25268 +S'Pa. German Pie Plate' +p26273 +sg25270 +S'Charlotte Angus' +p26274 +sa(dp26275 +g25268 +S'Chest of Drawers (commode)' +p26276 +sg25270 +S'Jean Desforges' +p26277 +sg25273 +S'veneered on oak, mostly stained black, with panels of Japanese black-and-gold (_togidashi_) lacquer; gilded bronze mounts; marble top' +p26278 +sg25275 +S'1745/1749' +p26279 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005571.jpg' +p26280 +sg25267 +S'\r\n Panels of black-and-gold lacquer sprinkled with metallic powders (\n \r\n Eighteenth-century Europeans used the French term \n \r\n The commode bears the initial C surmounted by a crown on all its gilt-bronze mounts. This legal mark on metals with \r\n a copper content was used only from 1745 to 1749. The oak body is stamped DF, which has been traditionally identified as the mark of \n ' +p26281 +sa(dp26282 +g25267 +g27 +sg25268 +S'Pennsylvania German Plate' +p26283 +sg25270 +S'Yolande Delasser' +p26284 +sa(dp26285 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26286 +sg25270 +S'Eugene Shellady' +p26287 +sa(dp26288 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26289 +sg25270 +S'Eugene Shellady' +p26290 +sa(dp26291 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26292 +sg25270 +S'William L. Antrim' +p26293 +sa(dp26294 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26295 +sg25270 +S'Eugene Shellady' +p26296 +sa(dp26297 +g25267 +g27 +sg25268 +S'Pa. German Pie Plate' +p26298 +sg25270 +S'Albert Levone' +p26299 +sa(dp26300 +g25267 +g27 +sg25268 +S'Pa. German Pie Plate' +p26301 +sg25270 +S'William L. Antrim' +p26302 +sa(dp26303 +g25267 +g27 +sg25268 +S'Pa. German Small Plate' +p26304 +sg25270 +S'Eugene Shellady' +p26305 +sa(dp26306 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26307 +sg25270 +S'Eugene Shellady' +p26308 +sa(dp26309 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26310 +sg25270 +S'Giacinto Capelli' +p26311 +sa(dp26312 +g25268 +S'Writing Table (table \xc3\xa0 \xc3\xa9crire)' +p26313 +sg25270 +S'Jean-Henri Riesener' +p26314 +sg25273 +S'veneered on oak with mahogany, sycamore, purplewood, boxwood, ebony, and holly; gilded bronze mounts' +p26315 +sg25275 +S'c. 1780' +p26316 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005561.jpg' +p26317 +sg25267 +S"\n At a quick glance, this lady's \n \n Each table has a wide writing slide on the front and a single deep drawer on one side. The gilt-bronze spiral ribbings, which cause both tables' legs to shimmer in the light, are so much alike that they must have been cast from the same molds.\n \n \n Distinction, however, is gained in several ways. Whereas all four sides of the queen's table bear gilded plaques representing cupids, this table is ornamented with scrolling panels of classical acanthus foliage centered on sunflowers. Gilded metal covers all fronts of the queen's table, while here, much of each front is veneer that repeats the diamond or trellis pattern created on the tabletop by parallel, triple stripes of wood.\n \n " +p26318 +sa(dp26319 +g25267 +g27 +sg25268 +S'Pa. German Pie Dish' +p26320 +sg25270 +S'William L. Antrim' +p26321 +sa(dp26322 +g25267 +g27 +sg25268 +S'Plate' +p26323 +sg25270 +S'Roy S. Brown' +p26324 +sa(dp26325 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26326 +sg25270 +S'Charlotte Angus' +p26327 +sa(dp26328 +g25267 +g27 +sg25268 +S'Pa. German Pie Dish' +p26329 +sg25270 +S'Charlotte Angus' +p26330 +sa(dp26331 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26332 +sg25270 +S'Charlotte Angus' +p26333 +sa(dp26334 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p26335 +sg25270 +S'Robert Stewart' +p26336 +sa(dp26337 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26338 +sg25270 +S'Eugene Shellady' +p26339 +sa(dp26340 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005521.jpg' +p26341 +sg25268 +S'Plate with Tulip and Two Flowers' +p26342 +sg25270 +S'Giacinto Capelli' +p26343 +sa(dp26344 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p26345 +sg25270 +S'Eugene Shellady' +p26346 +sa(dp26347 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p26348 +sg25270 +S'William L. Antrim' +p26349 +sa(dp26350 +g25268 +S'Roll-top Desk (Bureau \xc3\xa0 cylindre)' +p26351 +sg25270 +S'Jean-Henri Riesener' +p26352 +sg25273 +S'veneered on oak principally with tulipwood and purplewood, with ebony (or wood stained to resemble ebony) and boxwood for stringing; gilded bronze mounts' +p26353 +sg25275 +S'c. 1775/1785' +p26354 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000557a.jpg' +p26355 +sg25267 +S"\n This rolltop desk is stamped underneath by Jean-Henri Riesener, one of the greatest Parisian cabinetmakers. After his master Jean-François Oeben died in 1763, Riesener inherited the studio and, five years later, married Oeben's widow.\n \n \n The rolltop desk was introduced about 1760 by Oeben. The top of this one includes a tilting, adjustable easel, so that a gentleman could stand to read or write. Wide writing slides and long drawers with inkwells are concealed on both sides, providing work space for two male secretaries.\n \n \n Mountings with neoclassical motifs of circular laurel wreaths and symmetrical sprays of acanthus foliage enhance Riesener's desk. These geometrical plants and straight edges contrast with the subtle curve of the legs, a transitional reminder of the rococo style.\n \n \n In the center of the front drawer and in the corresponding position on the back, intertwined ribbons of gilt bronze form the letters LB. This monogram could refer to any number of men named Louis in the Bourbon-Condé royal family. Since the initials are a different color metal, however, they may be later additions.\n \n " +p26356 +sa(dp26357 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26358 +sg25270 +S'Carl Strehlau' +p26359 +sa(dp26360 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26361 +sg25270 +S'Charles Garjian' +p26362 +sa(dp26363 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p26364 +sg25270 +S'Frank Fumagalli' +p26365 +sa(dp26366 +g25267 +g27 +sg25268 +S'Plate' +p26367 +sg25270 +S'Hedwig Emanuel' +p26368 +sa(dp26369 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26370 +sg25270 +S'Charles Garjian' +p26371 +sa(dp26372 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26373 +sg25270 +S'Roy Weber' +p26374 +sa(dp26375 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26376 +sg25270 +S'Charles Garjian' +p26377 +sa(dp26378 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p26379 +sg25270 +S'Jessica Price' +p26380 +sa(dp26381 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26382 +sg25270 +S'Hedwig Emanuel' +p26383 +sa(dp26384 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26385 +sg25270 +S'Yolande Delasser' +p26386 +sa(dp26387 +g25268 +S'Chest of Drawers (commode)' +p26388 +sg25270 +S'Joseph Baumhauer' +p26389 +sg25273 +S'oak veneered with tulipwood, kingwood, casuarina, and purplewood; gilded bronze mounts; breccia marble top' +p26390 +sg25275 +S'probably between 1767 and 1772 but possibly a decade earlier' +p26391 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a00055b6.jpg' +p26392 +sg25267 +g27 +sa(dp26393 +g25267 +g27 +sg25268 +S'Pa. German plate' +p26394 +sg25270 +S'Aaron Fastovsky' +p26395 +sa(dp26396 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26397 +sg25270 +S'Giacinto Capelli' +p26398 +sa(dp26399 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p26400 +sg25270 +S'Eugene Shellady' +p26401 +sa(dp26402 +g25267 +g27 +sg25268 +S'Pa. German Pie Dish' +p26403 +sg25270 +S'Max Soltmann' +p26404 +sa(dp26405 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26406 +sg25270 +S'Charlotte Sperber' +p26407 +sa(dp26408 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26409 +sg25270 +S'Henry Moran' +p26410 +sa(dp26411 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26412 +sg25270 +S'Albert Levone' +p26413 +sa(dp26414 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26415 +sg25270 +S'David Ellinger' +p26416 +sa(dp26417 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26418 +sg25270 +S'Albert Levone' +p26419 +sa(dp26420 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26421 +sg25270 +S'Charlotte Angus' +p26422 +sa(dp26423 +g25268 +S'Chest of Drawers (commode)' +p26424 +sg25270 +S'Joseph Baumhauer' +p26425 +sg25273 +S'oak veneered with tulipwood, kingwood, casuarina, and purplewood; gilded bronze mounts; breccia marble top' +p26426 +sg25275 +S'probably between 1767 and 1772 but possibly a decade earlier' +p26427 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000556d.jpg' +p26428 +sg25267 +S'\n This chest of drawers with \n \n The oak body is stamped with the name "Joseph," the mark of a cabinetmaker of German birth, \n ' +p26429 +sa(dp26430 +g25267 +g27 +sg25268 +S'Pa. German Deep Dish' +p26431 +sg25270 +S'Fritz Boehmer' +p26432 +sa(dp26433 +g25267 +g27 +sg25268 +S'Pa. German Shaving Basin' +p26434 +sg25270 +S'Frances Lichten' +p26435 +sa(dp26436 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26437 +sg25270 +S'David Ellinger' +p26438 +sa(dp26439 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26440 +sg25270 +S'William L. Antrim' +p26441 +sa(dp26442 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26443 +sg25270 +S'Giacinto Capelli' +p26444 +sa(dp26445 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26446 +sg25270 +S'Aaron Fastovsky' +p26447 +sa(dp26448 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26449 +sg25270 +S'Aaron Fastovsky' +p26450 +sa(dp26451 +g25267 +g27 +sg25268 +S'Pa. German Shaving Basin' +p26452 +sg25270 +S'Eugene Shellady' +p26453 +sa(dp26454 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p26455 +sg25270 +S'Eugene Shellady' +p26456 +sa(dp26457 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p26458 +sg25270 +S'Aaron Fastovsky' +p26459 +sa(dp26460 +g25268 +S'Writing and Toilet Table (table m\xc3\xa9canique)' +p26461 +sg25270 +S'Jean-Fran\xc3\xa7ois Oeben' +p26462 +sg25273 +S', c. 1750/1755' +p26463 +sg25275 +S'\n' +p26464 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005577.jpg' +p26465 +sg25267 +S"\n\n \r\n A highly original and influential master with a large shop of twelve workbenches, Oeben taught Martin Carlin, Jean-François Leleu, and Jean-Henri Riesener-all of whom are represented by neoclassical works in the Gallery. Oeben’s daughter, incidentally, was the mother of the romantic painter Eugène Delacroix (1798-1863).\r\n \n \r\n Oeben excelled in figurative veneer such as the still life of musical instruments, berries, and palm fronds on the top of this lady’s mechanical table. For such a dainty piece, it contains an astonishing variety of fittings. The front center drawer, for example, is false, but aging has warped the veneer enough to disclose a smaller secret compartment once hidden by the floral patterns. When the table is opened, a pivoting work surface swivels around, with a toilet mirror on one side and a leather writing pad on the other.\r\n \n \r\n Oeben made at least eleven other tables of this type, with differing interior arrangements and rococo motifs. One table bears his stamp along with that of his former pupil Riesener, and two others place Oeben's mark beside that of his brother-in-law Roger Vandercruse (called Lacroix).\r\n \n " +p26466 +sa(dp26467 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p26468 +sg25270 +S'William L. Antrim' +p26469 +sa(dp26470 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p26471 +sg25270 +S'Aaron Fastovsky' +p26472 +sa(dp26473 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p26474 +sg25270 +S'Margaret Stottlemeyer' +p26475 +sa(dp26476 +g25267 +g27 +sg25268 +S'Pa. German Scraffito Plate' +p26477 +sg25270 +S'Aaron Fastovsky' +p26478 +sa(dp26479 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p26480 +sg25270 +S'William L. Antrim' +p26481 +sa(dp26482 +g25267 +g27 +sg25268 +S'Pa. German Deep Dish' +p26483 +sg25270 +S'Eugene Shellady' +p26484 +sa(dp26485 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p26486 +sg25270 +S'Eugene Shellady' +p26487 +sa(dp26488 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p26489 +sg25270 +S'Eugene Shellady' +p26490 +sa(dp26491 +g25267 +g27 +sg25268 +S'Chalkware Birds' +p26492 +sg25270 +S'Roy S. Brown' +p26493 +sa(dp26494 +g25267 +g27 +sg25268 +S'Pa. German Toy Lovebirds' +p26495 +sg25270 +S'Ruth Bialostosky' +p26496 +sa(dp26497 +g25268 +S'Chest of Drawers (commode)' +p26498 +sg25270 +S'Jean-Mathieu Chevallier' +p26499 +sg25273 +S'veneered on oak stained black with tulipwood, kingwood, sycamore, purplewood, boxwood, and other woods, some showing traces of having been colored by staining; gilded bronze mounts; marble top' +p26500 +sg25275 +S'mid-18th century, possibly 1743/1744' +p26501 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a00055b9.jpg' +p26502 +sg25267 +S"\r\n This two-drawer commode, with its sides undulating in bombé swellings, defines the rococo style at its most opulent. Like the Chinese porcelains and the furniture with Japanese lacquer in these rooms, it is an escapist fantasy based on exotic cultures. As trade with the Far East increased, importing Oriental materials and customs such as wearing silk and drinking tea became fads in eighteenth-century Europe.\r\n \n \r\n In the commode's veneer, peonies, which are Oriental blossoms, emerge from horns of plenty to create large oval shapes. This bold, spotted effect continues in the choice of a splotchy marble, called breccia, for the top. \n \r\n The lively gilt-bronze mounts include cattails as well as Chinese men holding dragons, parrots, and parasols. Two fighting dragons guard the lower keyhole. Two more dragons, with serpentine tails and arrowhead tongues, fly upside-down across the bottom edge near the front legs. In a rococo whimsy, they are contrasted to each other. The one at the left has feathered bird wings, but the dragon on the right flies on membraned bat wings.\r\n \n " +p26503 +sa(dp26504 +g25267 +g27 +sg25268 +S'Chalkware Roosters' +p26505 +sg25270 +S'Mina Lowry' +p26506 +sa(dp26507 +g25267 +g27 +sg25268 +S'Chalkware Lovebirds' +p26508 +sg25270 +S'Mina Lowry' +p26509 +sa(dp26510 +g25267 +g27 +sg25268 +S'Chalkware Parrot' +p26511 +sg25270 +S'Mina Lowry' +p26512 +sa(dp26513 +g25267 +g27 +sg25268 +S'Earthenware Bird' +p26514 +sg25270 +S'Aaron Fastovsky' +p26515 +sa(dp26516 +g25267 +g27 +sg25268 +S'Pa. German Chalkware Cat with Mouse' +p26517 +sg25270 +S'Mina Lowry' +p26518 +sa(dp26519 +g25267 +g27 +sg25268 +S'Pa. German Seated Chalkware Cat' +p26520 +sg25270 +S'Mina Lowry' +p26521 +sa(dp26522 +g25267 +g27 +sg25268 +S'Pa. German Chalkware Sheep' +p26523 +sg25270 +S'Dorothy Harris' +p26524 +sa(dp26525 +g25267 +g27 +sg25268 +S'Pa. German Chalkware Sheep' +p26526 +sg25270 +S'Dorothy Harris' +p26527 +sa(dp26528 +g25267 +g27 +sg25268 +S'Pa. German Chalkware Sheep' +p26529 +sg25270 +S'Mina Lowry' +p26530 +sa(dp26531 +g25267 +g27 +sg25268 +S'Pa. German Chalkware Deer' +p26532 +sg25270 +S'Mina Lowry' +p26533 +sa(dp26534 +g25273 +S'(cabinetmaker)' +p26535 +sg25267 +g27 +sg25275 +S'\n' +p26536 +sg25268 +S"Writing Table (bureau plat \xc3\xa0 espagnolettes coiff\xc3\xa9es d'aigrettes)" +p26537 +sg25270 +S'Artist Information (' +p26538 +sa(dp26539 +g25267 +g27 +sg25268 +S'Pa. German Seated Chalkware Rabbit' +p26540 +sg25270 +S'Andrew Topolosky' +p26541 +sa(dp26542 +g25267 +g27 +sg25268 +S'Seated Chalkware Rabbit' +p26543 +sg25270 +S'Andrew Topolosky' +p26544 +sa(dp26545 +g25267 +g27 +sg25268 +S'Pa. German Chalkware Lamp and Sheep' +p26546 +sg25270 +S'Mina Lowry' +p26547 +sa(dp26548 +g25267 +g27 +sg25268 +S'Pa. German Chalkware Squirrel' +p26549 +sg25270 +S'Inez McCombs' +p26550 +sa(dp26551 +g25267 +g27 +sg25268 +S'Pa. German Chalkware Shepherd Boy' +p26552 +sg25270 +S'Mina Lowry' +p26553 +sa(dp26554 +g25267 +g27 +sg25268 +S'Pa. German Chalkware Angel Figure' +p26555 +sg25270 +S'Mina Lowry' +p26556 +sa(dp26557 +g25267 +g27 +sg25268 +S'Pa. German Chalkware Woman on Horse' +p26558 +sg25270 +S'Mina Lowry' +p26559 +sa(dp26560 +g25267 +g27 +sg25268 +S'Pa. German Chalkware Mother and Child' +p26561 +sg25270 +S'Mina Lowry' +p26562 +sa(dp26563 +g25267 +g27 +sg25268 +S'Pa. German Chalkware Bloomer Girl' +p26564 +sg25270 +S'Mina Lowry' +p26565 +sa(dp26566 +g25267 +g27 +sg25268 +S'Pa. German Chalkware Shrine' +p26567 +sg25270 +S'Mina Lowry' +p26568 +sa(dp26569 +g25268 +S'Writing Table with Mechanical Fittings (table m\xc3\xa9canique or schreibtisch)' +p26570 +sg25270 +S'Artist Information (' +p26571 +sg25273 +S'(cabinetmaker)' +p26572 +sg25275 +S'\n' +p26573 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000557e.jpg' +p26574 +sg25267 +S"\n\n \n Roentgen's passion for intricate woodwork was matched by his zeal for complicated mechanisms. This desk's drawers automatically unfold into complex storage areas with many secret compartments.\n \n \n The flat top's \n \n In 1779, Roentgen had sold to Louis XVI a huge, upright secretary-bookcase, including a clock and musical organ, for the highest price paid by the French crown for furniture during the eighteenth century. King Frederick the Great of Prussia and the duke of Lorraine both commissioned simpler variations of that fantastic piece. The National Gallery's table probably incorporates fragments of yet another version.\n \n " +p26575 +sa(dp26576 +g25267 +g27 +sg25268 +S'Pa. German Chalkware Mary and Her Lamb' +p26577 +sg25270 +S'Mina Lowry' +p26578 +sa(dp26579 +g25267 +g27 +sg25268 +S'Chalkware Urn with Fruit and Birds' +p26580 +sg25270 +S'Mina Lowry' +p26581 +sa(dp26582 +g25267 +g27 +sg25268 +S'Pa. German Chalkware Mantel Ornament' +p26583 +sg25270 +S'Mina Lowry' +p26584 +sa(dp26585 +g25267 +g27 +sg25268 +S'Pa. German Chalkware Mantel Stop' +p26586 +sg25270 +S'Mina Lowry' +p26587 +sa(dp26588 +g25267 +g27 +sg25268 +S'Pa. German Chalkware Mantel Stop' +p26589 +sg25270 +S'Mina Lowry' +p26590 +sa(dp26591 +g25267 +g27 +sg25268 +S'Pa. German Chalkware Mantel Ornament' +p26592 +sg25270 +S'Inez McCombs' +p26593 +sa(dp26594 +g25267 +g27 +sg25268 +S'Pa. German Pewter Cupboard' +p26595 +sg25270 +S'Henrietta S. Hukill' +p26596 +sa(dp26597 +g25267 +g27 +sg25268 +S'Pa. German Wall Corner Cupboard' +p26598 +sg25270 +S'Charlotte Angus' +p26599 +sa(dp26600 +g25267 +g27 +sg25268 +S'Pa. German Cupboard' +p26601 +sg25270 +S'Edgar L. Pearce' +p26602 +sa(dp26603 +g25267 +g27 +sg25268 +S'Pa. German Wall Corner Cupboard' +p26604 +sg25270 +S'Austin L. Davison' +p26605 +sa(dp26606 +g25268 +S'Corner-Cupboard (encoignure)' +p26607 +sg25270 +S'Jean Desforges' +p26608 +sg25273 +S'veneered on oak, stained black, with ebonized wood; japanned on each door with _vernis Martin_; gilded bronze mounts; black and gold Portor marble top' +p26609 +sg25275 +S'probably 1745/1749' +p26610 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005572.jpg' +p26611 +sg25267 +S'\r\n French imitations of Oriental lacquer, regardless of which craftsmen made them, are called \n \r\n The landscapes contrast the themes of war and peace. \r\n On the cabinet shown in this tour, mounted Chinese soldiers attack a building with a closed gate. On the other \n ' +p26612 +sa(dp26613 +g25267 +g27 +sg25268 +S'Pa. German Hanging Cupboard' +p26614 +sg25270 +S'David Dorfman' +p26615 +sa(dp26616 +g25267 +g27 +sg25268 +S'Wall Cabinet' +p26617 +sg25270 +S'Ethelbert Brown' +p26618 +sa(dp26619 +g25267 +g27 +sg25268 +S'Pa. German Arm Chair' +p26620 +sg25270 +S'Charlotte Angus' +p26621 +sa(dp26622 +g25267 +g27 +sg25268 +S'Pa. German Chair' +p26623 +sg25270 +S'Frances Lichten' +p26624 +sa(dp26625 +g25267 +g27 +sg25268 +S'Pa. German Chair' +p26626 +sg25270 +S'Frances Lichten' +p26627 +sa(dp26628 +g25267 +g27 +sg25268 +S'Pa. German Rocking Chair' +p26629 +sg25270 +S'LeRoy Griffith' +p26630 +sa(dp26631 +g25267 +g27 +sg25268 +S'Pa. German Rocking Chair' +p26632 +sg25270 +S'Edmond W. Brown' +p26633 +sa(dp26634 +g25267 +g27 +sg25268 +S'Pa. German Chair' +p26635 +sg25270 +S'Rosa Burger' +p26636 +sa(dp26637 +g25267 +g27 +sg25268 +S'Pa. German Chair' +p26638 +sg25270 +S'Rosa Burger' +p26639 +sa(dp26640 +g25267 +g27 +sg25268 +S'Pa. German Chair' +p26641 +sg25270 +S'Charles Henning' +p26642 +sa(dp26643 +g25268 +S'Corner-Cupboard (encoignure)' +p26644 +sg25270 +S'Jean Desforges' +p26645 +sg25273 +S'veneered on oak, stained black, with ebonized wood, sycamore and kingwood veneers; japanned on each door with _vernis Martin_; gilded bronze mounts; black and gold Portor marble top' +p26646 +sg25275 +S'probably 1745/1749' +p26647 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005573.jpg' +p26648 +sg25267 +g27 +sa(dp26649 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00051/a00051d4.jpg' +p26650 +sg25268 +S'Pa. German Chair' +p26651 +sg25270 +S'Edward L. Loper' +p26652 +sa(dp26653 +g25267 +g27 +sg25268 +S'Pa. German Chair' +p26654 +sg25270 +S'Henry Zwysen' +p26655 +sa(dp26656 +g25267 +g27 +sg25268 +S'Pa. German Chair' +p26657 +sg25270 +S'Henry Moran' +p26658 +sa(dp26659 +g25267 +g27 +sg25268 +S'Pa. German Chair' +p26660 +sg25270 +S'Charlotte Angus' +p26661 +sa(dp26662 +g25267 +g27 +sg25268 +S'Pa. German Table' +p26663 +sg25270 +S'Frances Lichten' +p26664 +sa(dp26665 +g25267 +g27 +sg25268 +S'Pa. German Table' +p26666 +sg25270 +S'Carl Strehlau' +p26667 +sa(dp26668 +g25267 +g27 +sg25268 +S'Pa. German Table' +p26669 +sg25270 +S'Frances Lichten' +p26670 +sa(dp26671 +g25267 +g27 +sg25268 +S'Wagon Bench' +p26672 +sg25270 +S'Vincent P. Rosel' +p26673 +sa(dp26674 +g25267 +g27 +sg25268 +S'Pa. German Trestle Table' +p26675 +sg25270 +S'Lawrence Porth' +p26676 +sa(dp26677 +g25267 +g27 +sg25268 +S'Pa. German Table' +p26678 +sg25270 +S'Frances Lichten' +p26679 +sa(dp26680 +g25268 +S'Lean-to Writing Desk (secr\xc3\xa9taire en pente)' +p26681 +sg25270 +S'Bernard van Risenburgh II' +p26682 +sg25273 +S'veneered on oak (stained purple on the underside of the top) with tulipwood cut on the quarter, root-cut kingwood, and other end-cut woods; gilded bronze mounts' +p26683 +sg25275 +S'c. 1750' +p26684 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000557b.jpg' +p26685 +sg25267 +S'\r\n This lady’s diminutive desk \r\n has bulging, \n \r\n Such floral veneer, making the most of natural wood tones, characterizes the style of \n \r\n Specializing in small-scale luxury furniture, Bernard was exceptionally versatile in technique. He used wood marquetry and Oriental lacquer, and is likely to have been the first cabinetmaker to decorate his pieces with plaques of Sévres porcelain. The second of three generations of Parisian furniture makers of Dutch origin, Bernard II van Risamburgh was among the finest eighteenth-century craftsmen.\r\n \n ' +p26686 +sa(dp26687 +g25267 +g27 +sg25268 +S'Pa. German Hutch Table' +p26688 +sg25270 +S'Rex F. Bush' +p26689 +sa(dp26690 +g25267 +g27 +sg25268 +S'Pa. German Hutch Table' +p26691 +sg25270 +S'Rex F. Bush' +p26692 +sa(dp26693 +g25267 +g27 +sg25268 +S'Pa. German Dower Chest' +p26694 +sg25270 +S'Francis Borelli' +p26695 +sa(dp26696 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26697 +sg25270 +S'Betty Jean Davis' +p26698 +sa(dp26699 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26700 +sg25270 +S'Eileen Knox' +p26701 +sa(dp26702 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26703 +sg25270 +S'Frances Lichten' +p26704 +sa(dp26705 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26706 +sg25270 +S'Malcolm Hackney' +p26707 +sa(dp26708 +g25267 +g27 +sg25268 +S'Pa. German Love Chest' +p26709 +sg25270 +S'Ella Josephine Sterling' +p26710 +sa(dp26711 +g25267 +g27 +sg25268 +S'Pa. German Dower Chest' +p26712 +sg25270 +S'Bernard Krieger' +p26713 +sa(dp26714 +g25267 +g27 +sg25268 +S'Pa. German Dower Chest' +p26715 +sg25270 +S'Bernard Krieger' +p26716 +sa(dp26717 +g25268 +S'Work and Writing Table (table en chiffonni\xc3\xa8re)' +p26718 +sg25270 +S'Bernard van Risenburgh II' +p26719 +sg25273 +S'veneered partly on oak and partly on pine with tulipwood, purplewood, crosscut kingwood, and casuarina; gilded bronze mounts' +p26720 +sg25275 +S'c. 1750/1760' +p26721 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000557c.jpg' +p26722 +sg25267 +S"\r\n Bernard II van Risamburgh inked \r\n his initials on this tiny work table. Maintaining exceptionally \r\n high standards, he ran \r\n a small studio with only three workbenches. He also perfected the technique of using an end-cut wood that produced the vibrant whorls and textures seen on the \r\n floral top here. Louis XV was among the purchasers of his luxury pieces, and a table similar to this one appears in several portraits by François Boucher of the king's mistress, Madame de Pompadour.\r\n \n \r\n This table has been modified. Although the veneer is intact, the interior now holds a deep well for sewing materials. Some of the gilt-bronze mounts may be nineteenth-century replacements, and the tray that stabilizes the slender legs may also be a later addition.\r\n \n \r\n (The foreign names of many craftsmen active in France can be explained, in part, by the country's religious history. In 1598, the Edict of Nantes had protected the French Protestants, or Huguenots, who were mostly merchants and artisans. When Louis XIV revoked the edict in 1685, however, many Huguenots fled. To make up for the shortage of native-born craftsmen, foreigners immigrated to France. The Gallery displays work by the Dutch-descended van Risamburgh, the Caffiéri of Italian origin, and the German-born Baumhauer, Oeben, Carlin, and Riesener. Conversely, many of the best craftsmen outside France came from refugee Huguenot families, including the colonial Boston silversmith Paul Revere.)\r\n \n " +p26723 +sa(dp26724 +g25267 +g27 +sg25268 +S'Pa. German Dower Chest' +p26725 +sg25270 +S'Fanchon Larzelere' +p26726 +sa(dp26727 +g25267 +g27 +sg25268 +S'Pa. German Dower Chest' +p26728 +sg25270 +S'Francis Borelli' +p26729 +sa(dp26730 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26731 +sg25270 +S'Edgar L. Pearce' +p26732 +sa(dp26733 +g25267 +g27 +sg25268 +S'Pa. German Dower Chest' +p26734 +sg25270 +S'Joseph Rothenberg' +p26735 +sa(dp26736 +g25267 +g27 +sg25268 +S'Pa. German Dower Chest' +p26737 +sg25270 +S'Lorenz Rothkranz' +p26738 +sa(dp26739 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26740 +sg25270 +S'Betty Jean Davis' +p26741 +sa(dp26742 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26743 +sg25270 +S'Betty Jean Davis' +p26744 +sa(dp26745 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26746 +sg25270 +S'Betty Jean Davis' +p26747 +sa(dp26748 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26749 +sg25270 +S'David Dorfman' +p26750 +sa(dp26751 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26752 +sg25270 +S'Rolland Livingstone' +p26753 +sa(dp26754 +g25273 +S'German, 1721 - 1763' +p26755 +sg25267 +g27 +sg25275 +S'(related artist)' +p26756 +sg25268 +S'Writing Table with Mechanical Fittings (table \xc3\xa0 transformation)' +p26757 +sg25270 +S'Artist Information (' +p26758 +sa(dp26759 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26760 +sg25270 +S'Samuel Philpot' +p26761 +sa(dp26762 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26763 +sg25270 +S'Luther D. Wenrich' +p26764 +sa(dp26765 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a0006368.jpg' +p26766 +sg25268 +S'Pa. German Chest' +p26767 +sg25270 +S'Carl Strehlau' +p26768 +sa(dp26769 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26770 +sg25270 +S'Carl Strehlau' +p26771 +sa(dp26772 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26773 +sg25270 +S'Carl Strehlau' +p26774 +sa(dp26775 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26776 +sg25270 +S'Austin L. Davison' +p26777 +sa(dp26778 +g25267 +g27 +sg25268 +S'Pa. German Painted Chest' +p26779 +sg25270 +S'Frances Lichten' +p26780 +sa(dp26781 +g25267 +g27 +sg25268 +S'Pa. German Dower Chest' +p26782 +sg25270 +S'John Dieterich' +p26783 +sa(dp26784 +g25267 +g27 +sg25268 +S'Pa. German Sample Chest' +p26785 +sg25270 +S'Betty Jean Davis' +p26786 +sa(dp26787 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26788 +sg25270 +S'Betty Jean Davis' +p26789 +sa(dp26790 +g25268 +S'Combined Toilet and Writing Table (toilette \xc3\xa0 transformations)' +p26791 +sg25270 +S'Jean-Fran\xc3\xa7ois Leleu' +p26792 +sg25273 +S'veneered on oak with tulipwood, kingwood, pearwood, purplewood, sycamore, holly, boxwood, and ebony, some of the woods being originally stained green and other colors; drawers partially of mahogany; sparsely mounted with gilded bronze' +p26793 +sg25275 +S'c. 1764/1775' +p26794 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005574.jpg' +p26795 +sg25267 +S"\n A ribboned, floral bouquet executed in wood marquetry fills the top of this table. The yellow of the daffodils has faded, but traces remain of the green and red dyes used to stain the leaves and roses. Otherwise, this lady's desk is extraordinarily well preserved.\n \n \n When the key is inserted, springs move the top back halfway while a writing compartment glides forward, doubling the work area. Deep drawers on both sides are simultaneously unlocked and then can be pulled out manually. The owner, when finished with her correspondence or household accounts, could lift the hinged writing surface to reveal the mirror on its back and compartments for cosmetics below.\n \n \n Jean-François Leleu, who signed this work, also supplied furniture for the pleasure pavilion built in 1770-1771 at Louveciennes for Madame du Barry, the last mistress of Louis XV. The decoration at Louveciennes presented neoclassicism as the approved court style. The straight lines and perfect circles of this early, transitional-style table are imposed on a curving, rococo silhouette.\n \n \n Leleu gained his expertise in pictorial veneer from his teacher, Jean-François Oeben. For a man who could invent such refined designs, Leleu had a violent temper. When a fellow apprentice, \n " +p26796 +sa(dp26797 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26798 +sg25270 +S'Carl Strehlau' +p26799 +sa(dp26800 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26801 +sg25270 +S'Frances Lichten' +p26802 +sa(dp26803 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26804 +sg25270 +S'Elmer G. Anderson' +p26805 +sa(dp26806 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26807 +sg25270 +S'Frances Lichten' +p26808 +sa(dp26809 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26810 +sg25270 +S'Carl Strehlau' +p26811 +sa(dp26812 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26813 +sg25270 +S'Elmer G. Anderson' +p26814 +sa(dp26815 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26816 +sg25270 +S'Elmer G. Anderson' +p26817 +sa(dp26818 +g25267 +g27 +sg25268 +S'Chest' +p26819 +sg25270 +S'Frances Lichten' +p26820 +sa(dp26821 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26822 +sg25270 +S'Elmer G. Anderson' +p26823 +sa(dp26824 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p26825 +sg25270 +S'Carl Strehlau' +p26826 +sa(dp26827 +g25268 +S'Writing Table (bureau plat)' +p26828 +sg25270 +S'Charles Cressent' +p26829 +sg25273 +S'veneered on oak and pine with kingwood, tulipwood, purplewood, boxwood, and ebony; gilded bronze mounts' +p26830 +sg25275 +S'c. 1740/1745' +p26831 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005570.jpg' +p26832 +sg25267 +S"\r\n The maker of this magnificent writing table is \n \r\n As cabinetmaker to the young king's regent, the duc d'Orleans, and later to the king himself, Cressent may have grown arrogant. He was fined three times by tribunals for casting or gilding his own bronze mounts, which, by law, should have been done by specialists in metalwork.\r\n \n \r\n The overall silhouettes of Cressent's furniture flow in fluid, sculptural masses. The gilt-bronze mounts, such as the four female busts emerging gracefully from this table's corners, reveal the finest modeling and hand-finishing. Details of the women's faces and lace caps were engraved or chased with stippled, shimmering textures.\r\n \n " +p26833 +sa(dp26834 +g25267 +g27 +sg25268 +S'Pa. German Flat-iron Holder' +p26835 +sg25270 +S'Herman Bader' +p26836 +sa(dp26837 +g25267 +g27 +sg25268 +S'Pa. German Flat-iron Holder' +p26838 +sg25270 +S'Gordon Sanborn' +p26839 +sa(dp26840 +g25267 +g27 +sg25268 +S'Patch Pocket and Decorations on Ky. Rifle' +p26841 +sg25270 +S'Charles Moss' +p26842 +sa(dp26843 +g25267 +g27 +sg25268 +S'Patch Pocket, Butt Plate & Stock on Ky. Rifle' +p26844 +sg25270 +S'Charles Moss' +p26845 +sa(dp26846 +g25267 +g27 +sg25268 +S'Patch Box of Kentucky Rifle' +p26847 +sg25270 +S'Albert Levone' +p26848 +sa(dp26849 +g25267 +g27 +sg25268 +S'Patch Box of Kentucky Rifle' +p26850 +sg25270 +S'Albert Levone' +p26851 +sa(dp26852 +g25267 +g27 +sg25268 +S'Patch Box of Kentucky Rifle' +p26853 +sg25270 +S'Albert Levone' +p26854 +sa(dp26855 +g25267 +g27 +sg25268 +S'Patch-box from Cavalry Carbine Stock' +p26856 +sg25270 +S'Elmer R. Kottcamp' +p26857 +sa(dp26858 +g25267 +g27 +sg25268 +S'Patch Box of Kentucky Rifle' +p26859 +sg25270 +S'Albert Levone' +p26860 +sa(dp26861 +g25267 +g27 +sg25268 +S'Patch Box from Ky. Rifle' +p26862 +sg25270 +S'Albert Levone' +p26863 +sa(dp26864 +g25268 +S'Lean-to Writing Desk (table \xc3\xa0 abbattant)' +p26865 +sg25270 +S'Pierre Migeon II' +p26866 +sg25273 +S', c. 1750' +p26867 +sg25275 +S'\n' +p26868 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000555e.jpg' +p26869 +sg25267 +S'\r\n Arabesques of curling lobes and cusps characterized \r\n earlier rococo design. For variety here, the pale tulipwood veneer of the background is arranged in fan shapes within the dark scrolls of purple-wood. Later, in \r\n the mid-eighteenth century, floral patterns would \r\n become fashionable.\r\n \n \r\n Somewhat larger than most ladies’ desks, this one has steel rods that, when pulled out, support its opened lid as a writing surface. The interior has two tiers of drawers; the lower set, hidden beneath a sliding, false bottom, protected valuables \r\n and private papers.\r\n \n \r\n Trained by his father, Pierre II Migeon apparently never officially became a master craftsman, presumably because he was a Calvinist, and guild regulations in Paris prohibited membership by Protestants. Even so, he was a favorite of Madame de Pompadour.\r\n \n \r\n Migeon was a \n ' +p26870 +sa(dp26871 +g25267 +g27 +sg25268 +S'Patch Box from Ky. Rifle' +p26872 +sg25270 +S'Albert Levone' +p26873 +sa(dp26874 +g25267 +S'In a molten state brass can be cast into intricate shapes like this hinged patchbox cover. A patchbox is a container inlayed into the buttstock of a flintlock rifle that holds a greased cloth or other small piece of equipment. Flintlock rifles, developed by the Pennsylvania Germans, played an important role in the Revolutionary War. Also called Kentucky rifles, they were made famous by such backwoods heroes as Daniel Boone and Davy Crockett. This patchbox cover was probably made about 1810. Pennsylvania German gunsmiths displayed their love of fine decoration by including elaborate detail on their rifles. The scroll design of this patchbox cover reflects the ornate style fashionable during the "Golden Age" of Kentucky rifles, while the bird motif is in keeping with Pennsylvania German tradition.\n ' +p26875 +sg25268 +S'Patch Boxes of Kentucky Rifles' +p26876 +sg25270 +S'Albert Levone' +p26877 +sa(dp26878 +g25267 +g27 +sg25268 +S'Flat-iron Holder' +p26879 +sg25270 +S'Filippo Porreca' +p26880 +sa(dp26881 +g25267 +g27 +sg25268 +S'Pa. German Flat-iron Holder' +p26882 +sg25270 +S'Julius Bellamy' +p26883 +sa(dp26884 +g25267 +g27 +sg25268 +S'German Flat-iron Holder' +p26885 +sg25270 +S'Herman Bader' +p26886 +sa(dp26887 +g25267 +g27 +sg25268 +S'Pa. German Cake Mold' +p26888 +sg25270 +S'Walter Hochstrasser' +p26889 +sa(dp26890 +g25267 +g27 +sg25268 +S'Pa. German Waffle Iron' +p26891 +sg25270 +S'Roy Weber' +p26892 +sa(dp26893 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p26894 +sg25270 +S'Elmer G. Anderson' +p26895 +sa(dp26896 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p26897 +sg25270 +S'Elmer G. Anderson' +p26898 +sa(dp26899 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005522.jpg' +p26900 +sg25268 +S'Pa. German Stove Plate' +p26901 +sg25270 +S'Elmer G. Anderson' +p26902 +sa(dp26903 +g25268 +S'Work and Writing Table' +p26904 +sg25270 +S'Martin Carlin' +p26905 +sg25273 +S'veneered with sycamore, tulipwood, purplewood, ebony, boxwood, and various other woods; gilded bronze mounts' +p26906 +sg25275 +S'c. 1770' +p26907 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000556f.jpg' +p26908 +sg25267 +S"\n When the writing surface of this lady's table is pulled forward, the top automatically slides back. The gilt-bronze corner ornaments consist of crossed torches and quivers of arrows. These ancient military motifs act here as emblems of love-burning passions and Cupid's darts.\n \n \n The top is veneered with a neoclassical pattern of checkered squares punctuated by rosettes. Fluted legs taper to a daring slenderness, and the center panels of all four sides drop below the main silhouette. These deep falls appear to defy gravity, adding to the piece's apparent weightlessness.\n \n \n Martin Carlin, who signed this table, was noted for such elegant proportions. He specialized in ladies' small-scale furniture, which he usually sold ready-made through dealers instead of working on commissions from patrons. Carlin's popularity is indicated in purchases made by Madame du Barry, Marie Antoinette, and the great-aunts of Louis XVI.\n \n \n Born in Baden, Germany, Carlin had moved to Paris \n by 1759, when he married a sister of the cabinetmaker Jean-François Oeben. Along with Oeben's other pupils, including Leleu and Riesener, Carlin was among the most fashionable \n of neoclassical designers.\n\n\n " +p26909 +sa(dp26910 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p26911 +sg25270 +S'Elmer G. Anderson' +p26912 +sa(dp26913 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p26914 +sg25270 +S'Franklyn Syres' +p26915 +sa(dp26916 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p26917 +sg25270 +S'Elmer G. Anderson' +p26918 +sa(dp26919 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p26920 +sg25270 +S'Elmer G. Anderson' +p26921 +sa(dp26922 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p26923 +sg25270 +S'Edward L. Loper' +p26924 +sa(dp26925 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p26926 +sg25270 +S'Austin L. Davison' +p26927 +sa(dp26928 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p26929 +sg25270 +S'Austin L. Davison' +p26930 +sa(dp26931 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p26932 +sg25270 +S'Austin L. Davison' +p26933 +sa(dp26934 +g25267 +g27 +sg25268 +S'Pa. German Stove Back' +p26935 +sg25270 +S'Austin L. Davison' +p26936 +sa(dp26937 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p26938 +sg25270 +S'Roy Weber' +p26939 +sa(dp26940 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(cabinetmaker)' +p26941 +sg25268 +S'Sofa' +p26942 +sg25270 +S'Artist Information (' +p26943 +sa(dp26944 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p26945 +sg25270 +S'Roy Weber' +p26946 +sa(dp26947 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p26948 +sg25270 +S'Roy Weber' +p26949 +sa(dp26950 +g25267 +g27 +sg25268 +S'Pa. German Stove and Plate' +p26951 +sg25270 +S'William H. Edwards' +p26952 +sa(dp26953 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005523.jpg' +p26954 +sg25268 +S'Pennsylvania German Fireback' +p26955 +sg25270 +S'Edward L. Loper' +p26956 +sa(dp26957 +g25267 +g27 +sg25268 +S'Pa. German Flat-iron Holder' +p26958 +sg25270 +S'Milton Grubstein' +p26959 +sa(dp26960 +g25267 +g27 +sg25268 +S'Pa. German Flat-iron Holder' +p26961 +sg25270 +S'Philip Johnson' +p26962 +sa(dp26963 +g25267 +g27 +sg25268 +S'Pa. German Flat-iron Holder' +p26964 +sg25270 +S'Filippo Porreca' +p26965 +sa(dp26966 +g25267 +g27 +sg25268 +S'Pa. German Flat-iron Holder' +p26967 +sg25270 +S'Gordon Sanborn' +p26968 +sa(dp26969 +g25267 +g27 +sg25268 +S'Pa. German Flat-iron Holder' +p26970 +sg25270 +S'Albert Taxson' +p26971 +sa(dp26972 +g25267 +g27 +sg25268 +S'Pa. German Flat-iron Holder' +p26973 +sg25270 +S'Jack Staloff' +p26974 +sa(dp26975 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(cabinetmaker)' +p26976 +sg25268 +S'Sofa' +p26977 +sg25270 +S'Artist Information (' +p26978 +sa(dp26979 +g25267 +g27 +sg25268 +S'Flat-iron Holder' +p26980 +sg25270 +S'Jack Staloff' +p26981 +sa(dp26982 +g25267 +g27 +sg25268 +S'Pa. German Trivet' +p26983 +sg25270 +S'Filippo Porreca' +p26984 +sa(dp26985 +g25267 +g27 +sg25268 +S'Pa. German Trivet' +p26986 +sg25270 +S'Artist Information (' +p26987 +sa(dp26988 +g25267 +g27 +sg25268 +S'Pa. German Trivet' +p26989 +sg25270 +S'Filippo Porreca' +p26990 +sa(dp26991 +g25267 +g27 +sg25268 +S'Pa. German Trivet' +p26992 +sg25270 +S'Herman Bader' +p26993 +sa(dp26994 +g25267 +g27 +sg25268 +S'Pa. German Trivet' +p26995 +sg25270 +S'Herman Bader' +p26996 +sa(dp26997 +g25267 +g27 +sg25268 +S'Pa. German Trivet' +p26998 +sg25270 +S'Artist Information (' +p26999 +sa(dp27000 +g25267 +g27 +sg25268 +S'Pa. German Flat-iron Holder' +p27001 +sg25270 +S'Herman Bader' +p27002 +sa(dp27003 +g25267 +g27 +sg25268 +S'Pa. German Flatiron Holder' +p27004 +sg25270 +S'Salvatore Borrazzo' +p27005 +sa(dp27006 +g25267 +g27 +sg25268 +S'Pa. German Flat-iron Holder' +p27007 +sg25270 +S'Gordon Sanborn' +p27008 +sa(dp27009 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(cabinetmaker)' +p27010 +sg25268 +S'Armchair' +p27011 +sg25270 +S'Artist Information (' +p27012 +sa(dp27013 +g25267 +g27 +sg25268 +S'Pa. German Flatiron Holder' +p27014 +sg25270 +S'Salvatore Borrazzo' +p27015 +sa(dp27016 +g25267 +g27 +sg25268 +S'Pa. German Trivet' +p27017 +sg25270 +S'John Dana' +p27018 +sa(dp27019 +g25267 +g27 +sg25268 +S'Pa. German Flat-iron Holder' +p27020 +sg25270 +S'Charles Garjian' +p27021 +sa(dp27022 +g25267 +g27 +sg25268 +S'Pa. German Flat-iron Stand' +p27023 +sg25270 +S'Amos C. Brinton' +p27024 +sa(dp27025 +g25267 +g27 +sg25268 +S'Pa. German Cheese Strainer' +p27026 +sg25270 +S'Luther D. Wenrich' +p27027 +sa(dp27028 +g25267 +g27 +sg25268 +S'Pa. German Spark Shield' +p27029 +sg25270 +S'Elmer R. Kottcamp' +p27030 +sa(dp27031 +g25267 +g27 +sg25268 +S'Pa. German Cottage Cheese Strainer' +p27032 +sg25270 +S'Don Cecilio' +p27033 +sa(dp27034 +g25267 +g27 +sg25268 +S'Pa. German Graduated Measure' +p27035 +sg25270 +S'Amelia Tuccio' +p27036 +sa(dp27037 +g25267 +g27 +sg25268 +S'Pa. German Cheese Strainer' +p27038 +sg25270 +S'Amelia Tuccio' +p27039 +sa(dp27040 +g25267 +g27 +sg25268 +S'Pa. German Bridal Box' +p27041 +sg25270 +S'Adele Brooks' +p27042 +sa(dp27043 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(cabinetmaker)' +p27044 +sg25268 +S'Armchair' +p27045 +sg25270 +S'Artist Information (' +p27046 +sa(dp27047 +g25267 +g27 +sg25268 +S'Pa. German Tinder Box' +p27048 +sg25270 +S'Gordon Sanborn' +p27049 +sa(dp27050 +g25267 +g27 +sg25268 +S"Pa. German Shoemaker's Peg Box" +p27051 +sg25270 +S'Elmer R. Kottcamp' +p27052 +sa(dp27053 +g25267 +g27 +sg25268 +S'Pa. German Coffee Pot' +p27054 +sg25270 +S'Samuel O. Klein' +p27055 +sa(dp27056 +g25267 +g27 +sg25268 +S'Pa. German Fork' +p27057 +sg25270 +S'Roy Weber' +p27058 +sa(dp27059 +g25267 +g27 +sg25268 +S'Pa. German Coffee Pot' +p27060 +sg25270 +S"James O'Mara" +p27061 +sa(dp27062 +g25267 +g27 +sg25268 +S'Pa. German Coffee Pot' +p27063 +sg25270 +S'Herman Bader' +p27064 +sa(dp27065 +g25267 +g27 +sg25268 +S'Pa. German Shaving Mug and Basin' +p27066 +sg25270 +S'Carl Strehlau' +p27067 +sa(dp27068 +g25267 +g27 +sg25268 +S'Pa. German Coffee Pot Designs' +p27069 +sg25270 +S'Albert Levone' +p27070 +sa(dp27071 +g25267 +g27 +sg25268 +S'Pa. German Coffee Pot' +p27072 +sg25270 +S'Frances Lichten' +p27073 +sa(dp27074 +g25267 +g27 +sg25268 +S'Pa. German Coffee Pot' +p27075 +sg25270 +S'Filippo Porreca' +p27076 +sa(dp27077 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(cabinetmaker)' +p27078 +sg25268 +S'Armchair' +p27079 +sg25270 +S'Artist Information (' +p27080 +sa(dp27081 +g25267 +g27 +sg25268 +S'Pa. German Coffee Pot' +p27082 +sg25270 +S'Carl Strehlau' +p27083 +sa(dp27084 +g25267 +g27 +sg25268 +S'Pa. German Coffee Pot' +p27085 +sg25270 +S'Frances Lichten' +p27086 +sa(dp27087 +g25267 +g27 +sg25268 +S'Pa. German Coffee Pot' +p27088 +sg25270 +S'Amelia Tuccio' +p27089 +sa(dp27090 +g25267 +g27 +sg25268 +S'Pa. German Chandelier' +p27091 +sg25270 +S'Elmer R. Kottcamp' +p27092 +sa(dp27093 +g25267 +g27 +sg25268 +S'Pa. German Coffee Pot' +p27094 +sg25270 +S'Carl Strehlau' +p27095 +sa(dp27096 +g25267 +g27 +sg25268 +S'Pa. German Foot Warmer' +p27097 +sg25270 +S'Amelia Tuccio' +p27098 +sa(dp27099 +g25267 +g27 +sg25268 +S'Hinges and Hasp on a Conestoga Wagon Tool Box' +p27100 +sg25270 +S'American 20th Century' +p27101 +sa(dp27102 +g25267 +g27 +sg25268 +S'Pa. German Butt of Side Hinge' +p27103 +sg25270 +S'Mildred Ford' +p27104 +sa(dp27105 +g25267 +g27 +sg25268 +S'Pa. German Hinge' +p27106 +sg25270 +S'Mildred Ford' +p27107 +sa(dp27108 +g25267 +g27 +sg25268 +S'Pa. German Hinges and Hasp on a Conestoga Wagon Tool Box' +p27109 +sg25270 +S'Herman Bader' +p27110 +sa(dp27111 +g25273 +S'(cabinetmaker)' +p27112 +sg25267 +g27 +sg25275 +S'\n' +p27113 +sg25268 +S'Armchair' +p27114 +sg25270 +S'Artist Information (' +p27115 +sa(dp27116 +g25267 +g27 +sg25268 +S'Moravian Hinge' +p27117 +sg25270 +S'Franklyn Syres' +p27118 +sa(dp27119 +g25267 +g27 +sg25268 +S'Pa. German Door Handle' +p27120 +sg25270 +S'Jack Staloff' +p27121 +sa(dp27122 +g25267 +g27 +sg25268 +S'Conestoga Axe Holder' +p27123 +sg25270 +S'John Petrucci' +p27124 +sa(dp27125 +g25267 +g27 +sg25268 +S'Conestoga Axe Holder' +p27126 +sg25270 +S'G.L. Schafer' +p27127 +sa(dp27128 +g25267 +g27 +sg25268 +S'Pa. German Hoe' +p27129 +sg25270 +S'Maurice Van Felix' +p27130 +sa(dp27131 +g25267 +g27 +sg25268 +S'Pa. German Axe Socket' +p27132 +sg25270 +S'Nicholas Amantea' +p27133 +sa(dp27134 +g25267 +g27 +sg25268 +S"Pa. German Hound's Band from Conestoga Wagon" +p27135 +sg25270 +S'Jacob Lipkin' +p27136 +sa(dp27137 +g25267 +g27 +sg25268 +S'Conestoga Wagon Jack' +p27138 +sg25270 +S'Edward L. Loper' +p27139 +sa(dp27140 +g25267 +g27 +sg25268 +S'Pa. German Axe Socket' +p27141 +sg25270 +S'Nicholas Amantea' +p27142 +sa(dp27143 +g25267 +g27 +sg25268 +S"Pa. German Hound's Band from Conestoga Wagon" +p27144 +sg25270 +S'Jacob Lipkin' +p27145 +sa(dp27146 +g25273 +S'(cabinetmaker)' +p27147 +sg25267 +g27 +sg25275 +S'\n' +p27148 +sg25268 +S'Armchair' +p27149 +sg25270 +S'Artist Information (' +p27150 +sa(dp27151 +g25267 +g27 +sg25268 +S'Pa. German Show Towel' +p27152 +sg25270 +S'Frances Lichten' +p27153 +sa(dp27154 +g25267 +g27 +sg25268 +S'Pa. German Linen Towel' +p27155 +sg25270 +S'Frances Lichten' +p27156 +sa(dp27157 +g25267 +g27 +sg25268 +S'Pa. German Toy Bellows Rooster' +p27158 +sg25270 +S'John Fisk' +p27159 +sa(dp27160 +g25267 +g27 +sg25268 +S'Pa. German Toy Rooster w/ Bellows' +p27161 +sg25270 +S'John Fisk' +p27162 +sa(dp27163 +g25267 +g27 +sg25268 +S'Pa. German Bellows Toy Rooster' +p27164 +sg25270 +S'John Fisk' +p27165 +sa(dp27166 +g25267 +g27 +sg25268 +S'Pa. German Toy Rooster with Bellows' +p27167 +sg25270 +S'Isabelle De Strange' +p27168 +sa(dp27169 +g25267 +g27 +sg25268 +S'Pa. German Squeak Toy Rooster' +p27170 +sg25270 +S'Frank McEntee' +p27171 +sa(dp27172 +g25267 +g27 +sg25268 +S'Pa. German Rooster' +p27173 +sg25270 +S'Raoul Du Bois' +p27174 +sa(dp27175 +g25267 +g27 +sg25268 +S'Pa. German Three Carved and Painted Birds' +p27176 +sg25270 +S'Victor F. Muollo' +p27177 +sa(dp27178 +g25267 +g27 +sg25268 +S'Pa. German Parrot' +p27179 +sg25270 +S'Mina Lowry' +p27180 +sa(dp27181 +g25273 +S'(cabinetmaker)' +p27182 +sg25267 +g27 +sg25275 +S'\n' +p27183 +sg25268 +S'Armchair' +p27184 +sg25270 +S'Artist Information (' +p27185 +sa(dp27186 +g25267 +g27 +sg25268 +S'Wooden Rooster, Pheasant, and Parrot' +p27187 +sg25270 +S'Victor F. Muollo' +p27188 +sa(dp27189 +g25267 +g27 +sg25268 +S'Pa. German Rooster Mantel Ornament' +p27190 +sg25270 +S'Beverly Chichester' +p27191 +sa(dp27192 +g25267 +g27 +sg25268 +S'Pa. German Wooden Eagles' +p27193 +sg25270 +S'Laura Bilodeau' +p27194 +sa(dp27195 +g25267 +g27 +sg25268 +S'Pa. German Carved Wooden Chicken' +p27196 +sg25270 +S'Robert Harlow' +p27197 +sa(dp27198 +g25267 +g27 +sg25268 +S'Pa. German Toy Birds' +p27199 +sg25270 +S'Arsen Maralian' +p27200 +sa(dp27201 +g25267 +g27 +sg25268 +S'Pa. German Carved Bird' +p27202 +sg25270 +S'William H. Edwards' +p27203 +sa(dp27204 +g25267 +g27 +sg25268 +S'Pa. German Toy Bird' +p27205 +sg25270 +S'Arsen Maralian' +p27206 +sa(dp27207 +g25267 +g27 +sg25268 +S'Pa. German Robin Figurine' +p27208 +sg25270 +S'Mina Lowry' +p27209 +sa(dp27210 +g25267 +g27 +sg25268 +S'Pa. German Toy Bird' +p27211 +sg25270 +S'Charles Garjian' +p27212 +sa(dp27213 +g25267 +g27 +sg25268 +S'Pa. German Toy Bird' +p27214 +sg25270 +S'John Fisk' +p27215 +sa(dp27216 +g25273 +S'(cabinetmaker)' +p27217 +sg25267 +g27 +sg25275 +S'\n' +p27218 +sg25268 +S'Armchair' +p27219 +sg25270 +S'Artist Information (' +p27220 +sa(dp27221 +g25267 +g27 +sg25268 +S'Pa. German Carved Bird' +p27222 +sg25270 +S'Carl Strehlau' +p27223 +sa(dp27224 +g25267 +g27 +sg25268 +S'Pa. German Parrot' +p27225 +sg25270 +S'Giacinto Capelli' +p27226 +sa(dp27227 +g25267 +g27 +sg25268 +S'Pa. German Toy Hen' +p27228 +sg25270 +S'Hester Duany' +p27229 +sa(dp27230 +g25267 +g27 +sg25268 +S'Pa. German Toy Hen' +p27231 +sg25270 +S'Robert Harlow' +p27232 +sa(dp27233 +g25267 +g27 +sg25268 +S'Pa. German Toy Rooster' +p27234 +sg25270 +S'Betty Jean Davis' +p27235 +sa(dp27236 +g25267 +g27 +sg25268 +S'Pa. German Rooster Figurine' +p27237 +sg25270 +S'Arsen Maralian' +p27238 +sa(dp27239 +g25267 +g27 +sg25268 +S'Pa. German Toy Rooster' +p27240 +sg25270 +S'Mina Lowry' +p27241 +sa(dp27242 +g25267 +g27 +sg25268 +S'Pa. German Toy Rooster' +p27243 +sg25270 +S'Frank Budash' +p27244 +sa(dp27245 +g25267 +g27 +sg25268 +S'Pa. German Toy Turkey' +p27246 +sg25270 +S'Selma Sandler' +p27247 +sa(dp27248 +g25267 +g27 +sg25268 +S'Pa. German Spice Box' +p27249 +sg25270 +S'Austin L. Davison' +p27250 +sa(dp27251 +g25273 +S'(cabinetmaker)' +p27252 +sg25267 +g27 +sg25275 +S'\n' +p27253 +sg25268 +S'Armchair' +p27254 +sg25270 +S'Artist Information (' +p27255 +sa(dp27256 +g25267 +g27 +sg25268 +S'Trinket Box' +p27257 +sg25270 +S'Marie Famularo' +p27258 +sa(dp27259 +g25267 +S'Pennsylvania Germans made wooden boxes for a variety of uses. They were often carved or whittled into ornamental shapes and then painted with decorative motifs. This box, used to store salt, was hung near the fireplace to keep its contents dry. \n Hanging boxes were also made to hold kitchen knives, tableware, and other utensils. The floral motif decorating this box is surrounded by geometrical shapes and a white notch-like border. The box is inscribed with the owner\'s name and that of the \n craftsman: "Anne Leterman Anno Dommini 1797" and "John Drissell his hand May 22nd 1797."\n ' +p27260 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003bf.jpg' +p27261 +sg25268 +S'Pennsylvania German Hanging Salt Box' +p27262 +sg25270 +S'Betty Jean Davis' +p27263 +sa(dp27264 +g25267 +g27 +sg25268 +S'Pa. German Box' +p27265 +sg25270 +S'Frank Budash' +p27266 +sa(dp27267 +g25267 +g27 +sg25268 +S'Pa. German Spoon Rack' +p27268 +sg25270 +S'William H. Edwards' +p27269 +sa(dp27270 +g25267 +g27 +sg25268 +S'Pa. German Box' +p27271 +sg25270 +S'J. Herman McCollum' +p27272 +sa(dp27273 +g25267 +g27 +sg25268 +S"Pa. German Bride's Hat Box" +p27274 +sg25270 +S'George File' +p27275 +sa(dp27276 +g25267 +g27 +sg25268 +S'Pa. German Box' +p27277 +sg25270 +S'Frances Lichten' +p27278 +sa(dp27279 +g25267 +g27 +sg25268 +S'Pa. German Box' +p27280 +sg25270 +S'Frank Budash' +p27281 +sa(dp27282 +g25267 +g27 +sg25268 +S'Pa. German Box' +p27283 +sg25270 +S'Ethelbert Brown' +p27284 +sa(dp27285 +g25267 +g27 +sg25268 +S'Pa. German Box' +p27286 +sg25270 +S'Ethelbert Brown' +p27287 +sa(dp27288 +g25273 +S'(cabinetmaker)' +p27289 +sg25267 +g27 +sg25275 +S'\n' +p27290 +sg25268 +S'Armchair' +p27291 +sg25270 +S'Artist Information (' +p27292 +sa(dp27293 +g25267 +g27 +sg25268 +S'Pa. German Box' +p27294 +sg25270 +S'William L. Antrim' +p27295 +sa(dp27296 +g25267 +g27 +sg25268 +S'Pa. German Toilet Box' +p27297 +sg25270 +S'Carl Strehlau' +p27298 +sa(dp27299 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27300 +sg25270 +S'Charlotte Angus' +p27301 +sa(dp27302 +g25267 +g27 +sg25268 +S'Pa. German Butter Stamp' +p27303 +sg25270 +S'Frances Lichten' +p27304 +sa(dp27305 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27306 +sg25270 +S'Charlotte Angus' +p27307 +sa(dp27308 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27309 +sg25270 +S'Albert Levone' +p27310 +sa(dp27311 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27312 +sg25270 +S'Charlotte Angus' +p27313 +sa(dp27314 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27315 +sg25270 +S'Albert Levone' +p27316 +sa(dp27317 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27318 +sg25270 +S'Albert Levone' +p27319 +sa(dp27320 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27321 +sg25270 +S'Albert Levone' +p27322 +sa(dp27323 +g25273 +S'(cabinetmaker)' +p27324 +sg25267 +g27 +sg25275 +S'\n' +p27325 +sg25268 +S'Armchair' +p27326 +sg25270 +S'Artist Information (' +p27327 +sa(dp27328 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27329 +sg25270 +S'Albert Levone' +p27330 +sa(dp27331 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27332 +sg25270 +S'Alfred H. Smith' +p27333 +sa(dp27334 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27335 +sg25270 +S'Charlotte Angus' +p27336 +sa(dp27337 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27338 +sg25270 +S'Albert Levone' +p27339 +sa(dp27340 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27341 +sg25270 +S'Charlotte Angus' +p27342 +sa(dp27343 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27344 +sg25270 +S'Franklyn Syres' +p27345 +sa(dp27346 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27347 +sg25270 +S'Luther D. Wenrich' +p27348 +sa(dp27349 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27350 +sg25270 +S'Roy Weber' +p27351 +sa(dp27352 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27353 +sg25270 +S'Charlotte Angus' +p27354 +sa(dp27355 +g25267 +g27 +sg25268 +S'Pa. German Cake Mold' +p27356 +sg25270 +S'Franklyn Syres' +p27357 +sa(dp27358 +g25273 +S'(cabinetmaker)' +p27359 +sg25267 +g27 +sg25275 +S'\n' +p27360 +sg25268 +S'Small Screen' +p27361 +sg25270 +S'Artist Information (' +p27362 +sa(dp27363 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27364 +sg25270 +S'Albert Levone' +p27365 +sa(dp27366 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27367 +sg25270 +S'Charlotte Angus' +p27368 +sa(dp27369 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27370 +sg25270 +S'Charlotte Angus' +p27371 +sa(dp27372 +g25267 +g27 +sg25268 +S'Spanish Colonial Mission Bench' +p27373 +sg25270 +S'Edward Jewett' +p27374 +sa(dp27375 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27376 +sg25270 +S'Charlotte Angus' +p27377 +sa(dp27378 +g25267 +g27 +sg25268 +S'Pa. German Treen Double Butter Stamp' +p27379 +sg25270 +S'Archie Thompson' +p27380 +sa(dp27381 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27382 +sg25270 +S'Franklyn Syres' +p27383 +sa(dp27384 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27385 +sg25270 +S'Franklyn Syres' +p27386 +sa(dp27387 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27388 +sg25270 +S'Charlotte Angus' +p27389 +sa(dp27390 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27391 +sg25270 +S'Franklyn Syres' +p27392 +sa(dp27393 +g25268 +S'Covered Jar in Gilt-Bronze Mount' +p27394 +sg25270 +S'Chinese Qing Dynasty' +p27395 +sg25273 +S'Overall (without mount): 62.6 x 36.8 cm (24 5/8 x 14 1/2 in.)\r\noverall (with mount): 74.9 x 42.9 cm (29 1/2 x 16 7/8 in.)' +p27396 +sg25275 +S'\nporcelain with overglaze famille verte enamel decoration, in gilt-bronze mount' +p27397 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d4f.jpg' +p27398 +sg25267 +g27 +sa(dp27399 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27400 +sg25270 +S'Franklyn Syres' +p27401 +sa(dp27402 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27403 +sg25270 +S'Charlotte Angus' +p27404 +sa(dp27405 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27406 +sg25270 +S'Charlotte Angus' +p27407 +sa(dp27408 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27409 +sg25270 +S'Clyde L. Cheney' +p27410 +sa(dp27411 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27412 +sg25270 +S'Albert Levone' +p27413 +sa(dp27414 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27415 +sg25270 +S'Roy Weber' +p27416 +sa(dp27417 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27418 +sg25270 +S'Charlotte Angus' +p27419 +sa(dp27420 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27421 +sg25270 +S'Franklyn Syres' +p27422 +sa(dp27423 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27424 +sg25270 +S'Henry Zwysen' +p27425 +sa(dp27426 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27427 +sg25270 +S'Henry Zwysen' +p27428 +sa(dp27429 +g25268 +S'Profile Portrait of a Young Man' +p27430 +sg25270 +S'Florentine 15th Century' +p27431 +sg25273 +S'tempera on panel' +p27432 +sg25275 +S'1430/1450' +p27433 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005cb.jpg' +p27434 +sg25267 +g27 +sa(dp27435 +g25268 +S'Madonna and Child [obverse]' +p27436 +sg25270 +S'Andrea di Bartolo' +p27437 +sg25273 +S'tempera on panel' +p27438 +sg25275 +S'c. 1415' +p27439 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000084d.jpg' +p27440 +sg25267 +S"While Andrea's scenes of the Virgin's life were intended to relate a \r\n story and to engage the viewer by depicting sacred events in familiar \r\n settings, this small image invites contemplation.\n This way of representing the Virgin—in which she sits not on an \r\n elaborate throne but on a simple cushion on the ground—is known as the \r\n Madonna of Humility, probably reflecting the relationship between the Latin \r\n words \n " +p27441 +sa(dp27442 +g25268 +S'Covered Jar in Gilt-Bronze Mount' +p27443 +sg25270 +S'Chinese Qing Dynasty' +p27444 +sg25273 +S'Overall (without mount): 62.9 x 36.2 cm (24 3/4 x 14 1/4 in.)\r\noverall (with mount): 75.6 x 42.9 cm (29 3/4 x 16 7/8 in.)' +p27445 +sg25275 +S'\nporcelain with overglaze famille verte enamel decoration, in gilt-bronze mount' +p27446 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d50.jpg' +p27447 +sg25267 +g27 +sa(dp27448 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27449 +sg25270 +S'Charlotte Angus' +p27450 +sa(dp27451 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27452 +sg25270 +S'C. Mansfield' +p27453 +sa(dp27454 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27455 +sg25270 +S'Charlotte Angus' +p27456 +sa(dp27457 +g25267 +g27 +sg25268 +S'Pa. German Butter Mold' +p27458 +sg25270 +S'Charlotte Angus' +p27459 +sa(dp27460 +g25267 +g27 +sg25268 +S'Zoar Buttermold' +p27461 +sg25270 +S'Fritz Boehmer' +p27462 +sa(dp27463 +g25267 +g27 +sg25268 +S'Pa. German Figurine' +p27464 +sg25270 +S'Mina Lowry' +p27465 +sa(dp27466 +g25267 +g27 +sg25268 +S'Pa. German Squirrel Figurine' +p27467 +sg25270 +S'Arsen Maralian' +p27468 +sa(dp27469 +g25267 +g27 +sg25268 +S'Pennsylvania German Toy Dachshund' +p27470 +sg25270 +S'Mina Lowry' +p27471 +sa(dp27472 +g25267 +g27 +sg25268 +S'Pa. German Eaglet' +p27473 +sg25270 +S'Hester Duany' +p27474 +sa(dp27475 +g25267 +g27 +sg25268 +S'Pa. German Stamping Blocks for Homespun Cotton or Linens' +p27476 +sg25270 +S'Fritz Boehmer' +p27477 +sa(dp27478 +g25268 +S'Vase Mounted as an Ewer' +p27479 +sg25270 +S'Chinese Qing Dynasty' +p27480 +sg25273 +S'Overall (without mount): 37.8 x 22.2 cm (14 7/8 x 8 3/4 in.)\r\noverall (with mount): 61.2 x 24.6 cm (24 1/8 x 9 11/16 in.)' +p27481 +sg25275 +S'\nporcelain with light green celadon glaze and underglaze decoration in white slip, with lip, handle, and foot of gilded bronze' +p27482 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d51.jpg' +p27483 +sg25267 +g27 +sa(dp27484 +g25267 +g27 +sg25268 +S'Pa. German Eagle' +p27485 +sg25270 +S'Mina Lowry' +p27486 +sa(dp27487 +g25267 +g27 +sg25268 +S'Pa. German Eagle Figure' +p27488 +sg25270 +S'Mina Lowry' +p27489 +sa(dp27490 +g25267 +g27 +sg25268 +S'Pa. German Block Used in Pressing and Steaming' +p27491 +sg25270 +S'Charlotte Angus' +p27492 +sa(dp27493 +g25267 +g27 +sg25268 +S'Pa. German Toy Merry-Go-Round' +p27494 +sg25270 +S'Mina Lowry' +p27495 +sa(dp27496 +g25267 +g27 +sg25268 +S'Pa. German Picture Frame' +p27497 +sg25270 +S'Raymond McGough' +p27498 +sa(dp27499 +g25267 +g27 +sg25268 +S'Pa. German Cabbage Cutter' +p27500 +sg25270 +S'Nicholas Amantea' +p27501 +sa(dp27502 +g25267 +g27 +sg25268 +S'Pa. German Rolling Pin' +p27503 +sg25270 +S'Frank Budash' +p27504 +sa(dp27505 +g25267 +g27 +sg25268 +S'Pa. German Treen Pie Board' +p27506 +sg25270 +S'Frank McEntee' +p27507 +sa(dp27508 +g25267 +g27 +sg25268 +S'Pa. German Pie Marker' +p27509 +sg25270 +S'Roy Weber' +p27510 +sa(dp27511 +g25267 +g27 +sg25268 +S'Pa. German Whistle' +p27512 +sg25270 +S'Stewart Wheeler' +p27513 +sa(dp27514 +g25268 +S'Vase Mounted as an Ewer' +p27515 +sg25270 +S'Chinese Qing Dynasty' +p27516 +sg25273 +S'Overall (without mount): 39.2 x 23.2 cm (15 7/16 x 9 1/8 in.)\r\noverall (with mount): 61.2 x 24.6 cm (24 1/8 x 9 11/16 in.)' +p27517 +sg25275 +S'\nporcelain with light green celadon glaze and underglaze decoration in white slip, with lip, handle, and foot of gilded bronze' +p27518 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d52.jpg' +p27519 +sg25267 +g27 +sa(dp27520 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a000544b.jpg' +p27521 +sg25268 +S'Pa. German Toy Ninepin' +p27522 +sg25270 +S'Harold Lehman' +p27523 +sa(dp27524 +g25267 +g27 +sg25268 +S'Toy Rocking Horse and Rider' +p27525 +sg25270 +S'Mina Lowry' +p27526 +sa(dp27527 +g25267 +g27 +sg25268 +S'Springerle Board for Christmas Cakes' +p27528 +sg25270 +S'Fritz Boehmer' +p27529 +sa(dp27530 +g25267 +g27 +sg25268 +S'Pa. German Cookie Cutter' +p27531 +sg25270 +S'Adele Brooks' +p27532 +sa(dp27533 +g25267 +g27 +sg25268 +S'Pa. German Springerle Board' +p27534 +sg25270 +S'Fritz Boehmer' +p27535 +sa(dp27536 +g25267 +g27 +sg25268 +S'Pa. German Sugar Tub' +p27537 +sg25270 +S'Ethelbert Brown' +p27538 +sa(dp27539 +g25267 +g27 +sg25268 +S'Pa. German Saffron Box' +p27540 +sg25270 +S'Charles Henning' +p27541 +sa(dp27542 +g25267 +g27 +sg25268 +S'Pa. German Wooden Acorns' +p27543 +sg25270 +S'Hester Duany' +p27544 +sa(dp27545 +g25267 +g27 +sg25268 +S'Pa. German Saffron Box' +p27546 +sg25270 +S'Mildred Ford' +p27547 +sa(dp27548 +g25267 +g27 +sg25268 +S'Pa. German Salt Cup' +p27549 +sg25270 +S'Charles Henning' +p27550 +sa(dp27551 +g25268 +S'Vase in the Form of a Carp, Mounted as an Ewer' +p27552 +sg25270 +S'Chinese Qing Dynasty' +p27553 +sg25273 +S'Overall (without mount): 21.7 x 6.1 x 10.8 cm (8 9/16 x 2 3/8 x 4 1/4 in.)\r\noverall (with mount): 31.1 x 10.3 x 17.3 cm (12 1/4 x 4 1/16 x 6 13/16 in.)' +p27554 +sg25275 +S'\nporcelain with blue celadon glaze, in gilt-bronze mount' +p27555 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d53.jpg' +p27556 +sg25267 +S'This vessel takes the form of a carp, its grotesque open-jawed \n head oriented downward and its tail raised. The tail is open at the end, \n forming the mouth of the vase. The porcelain was transformed from a vase \n into a pouring vessel or ewer for decorative use by the addition of a gilt-bronze mount made in France in the eighteenth century. The mount, in the \n form of scrolling vegetation, forms a base and high-rising handle.\n Mounted celadon fish such as this were popular in eighteenth-century \n France, and several examples survive.\n Both singly and in pairs, fish are a traditional Chinese motif in the decorative arts and painting. The carp is the species most often \n encountered. It is often found in ceramics of the Song and Yuan dynasties, \n and paired carp occur as a mark on the base of some Kangxi porcelains. \n Paired fish were one of the Eight Buddhist Emblems (or Happy Omens), and \n they also symbolize marital fidelity. A carp leaping from the waves is a \n subject appealing to the literati because it symbolizes the aspirations and \n struggle of the scholar for success in the imperial examinations. Jessica \n Rawson explores an interesting relationship of the monster-head fish with \n the Indian \n In this vessel, vertical incised lines define the tail \n structure. The spine is raised, and overlapping scales are shown in relief \n on the body. A pronounced, protruding brow ridge, bulging spherical eyes, \n and a rounded nose characterize the monsterlike head. Beneath these, a \n gaping mouth dominates the lower third of the vessel. The upper jaw bears \n square teeth and pointed fangs, also in relief. The lower jaw, which is \n mostly covered by the mount, is decorated with an emanation of scrolls. A \n flamelike double set of fins sweeping back from the corners of the mouth is \n also partly obscured by the mount. The form of the enormous mouth allows \n for a wide rectangular base with rounded corners. The wide foot-ring is \n unglazed and brown, the base glazed. The pale blue, translucent celadon \n glaze has a soft luster and is finely bubbled. Where it runs thin over the \n relief elements, the pure white of the porcelain body shows through. The \n glaze on 1942.9.443 is slightly more blue and very slightly thicker than \n that on the companion piece.\n (Text by Josephine Hadley Knapp, published in the NGA Systematic Catalogue: \n Notes

\n
\n \n \n \n \n ' +p27557 +sa(dp27558 +g25267 +g27 +sg25268 +S'Pa. German Pail and Cover' +p27559 +sg25270 +S'Eugene Shellady' +p27560 +sa(dp27561 +g25267 +g27 +sg25268 +S'Pa. German Salt Cup' +p27562 +sg25270 +S'Charles Henning' +p27563 +sa(dp27564 +g25267 +g27 +sg25268 +S'Pa. German Spice Jar' +p27565 +sg25270 +S'Betty Jean Davis' +p27566 +sa(dp27567 +g25267 +g27 +sg25268 +S'Pa. German Saffron Box' +p27568 +sg25270 +S'J. Howard Iams' +p27569 +sa(dp27570 +g25267 +g27 +sg25268 +S'Zoar Apple Basket' +p27571 +sg25270 +S'Julius Mihalik' +p27572 +sa(dp27573 +g25267 +g27 +sg25268 +S'Zoar Sewing Basket' +p27574 +sg25270 +S'John Wilkes' +p27575 +sa(dp27576 +g25267 +g27 +sg25268 +S'Zoar Fat Lamp' +p27577 +sg25270 +S'Fritz Boehmer' +p27578 +sa(dp27579 +g25267 +g27 +sg25268 +S'Zoar Fireplace Tile' +p27580 +sg25270 +S'Angelo Bulone' +p27581 +sa(dp27582 +g25267 +g27 +sg25268 +S'Zoar Pottery Assembly Horn' +p27583 +sg25270 +S'Fritz Boehmer' +p27584 +sa(dp27585 +g25267 +g27 +sg25268 +S'Zoar Colander' +p27586 +sg25270 +S'Fritz Boehmer' +p27587 +sa(dp27588 +g25268 +S'Vase in the Form of a Carp, Mounted as an Ewer' +p27589 +sg25270 +S'Chinese Qing Dynasty' +p27590 +sg25273 +S'Overall (without mount): 21.3 x 5.9 x 11.3 cm (8 3/8 x 2 5/16 x 4 7/16 in.)\r\noverall (with mount): 31.4 x 10 x 16.4 cm (12 3/8 x 3 15/16 x 6 7/16 in.)' +p27591 +sg25275 +S'\nporcelain with blue celadon glaze, in gilt-bronze mount' +p27592 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d54.jpg' +p27593 +sg25267 +g27 +sa(dp27594 +g25267 +g27 +sg25268 +S'Zoar Milk Pitcher' +p27595 +sg25270 +S'Ralph Russell' +p27596 +sa(dp27597 +g25267 +g27 +sg25268 +S'Zoar Pottery Roof Tile' +p27598 +sg25270 +S'Ralph Russell' +p27599 +sa(dp27600 +g25267 +g27 +sg25268 +S'Zoar Jug' +p27601 +sg25270 +S'Angelo Bulone' +p27602 +sa(dp27603 +g25267 +g27 +sg25268 +S'Zoar Dish and Coffee and Cider Cup w/ Lid' +p27604 +sg25270 +S'Angelo Bulone' +p27605 +sa(dp27606 +g25267 +g27 +sg25268 +S'Zoar Flower Pot' +p27607 +sg25270 +S'Richard Barnett' +p27608 +sa(dp27609 +g25267 +g27 +sg25268 +S'Zoar Embroidered Flannel Petticoat' +p27610 +sg25270 +S'Fritz Boehmer' +p27611 +sa(dp27612 +g25267 +g27 +sg25268 +S'Zoar Beaded Wristlet, Mitten and Sock' +p27613 +sg25270 +S'Fritz Boehmer' +p27614 +sa(dp27615 +g25267 +S'Men\'s clothing of the mid-nineteenth century has the simplicity of style to \n which we are accustomed today. This coat and hat, dated about 1840, were made \n for Joseph Bimmler, founder of the Zoar Society, a religious community in Ohio. \n The coat of darkblue broadcloth was made in the community sewing house. The hat, \n called a "Beaver" or tall hat, has a label inside indicating that it was made \n by E. Brown in Philadelphia.\n The boots, dated about 1870, are from the Zoar Society\'s boot shop. During the \n second half of the nineteenth century, boots and shoes were made on wooden forms \n called "lasts," which were shaped for the left and right feet. Such forms are \n used for making shoes today.\n ' +p27616 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000335.jpg' +p27617 +sg25268 +S"Zoar Man's Hat, Boots and Coat" +p27618 +sg25270 +S'Fritz Boehmer' +p27619 +sa(dp27620 +g25267 +g27 +sg25268 +S'Zoar Decorated Painting' +p27621 +sg25270 +S'Jerry Guinta' +p27622 +sa(dp27623 +g25267 +g27 +sg25268 +S'Zoar Ceiling Ornament' +p27624 +sg25270 +S'Fritz Boehmer' +p27625 +sa(dp27626 +g25268 +S'Christ and the Woman Taken in Adultery' +p27627 +sg25270 +S'Netherlandish 16th Century' +p27628 +sg25273 +S'overall: 255.3 x 334.3 cm (100 1/2 x 131 5/8 in.)' +p27629 +sg25275 +S'\ntapestry: undyed wool warp; dyed wool, silk, and silver-gilt- and silver-wrapped silk weft' +p27630 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a000577e.jpg' +p27631 +sg25267 +g27 +sa(dp27632 +g25267 +g27 +sg25268 +S'Zoar Calendar' +p27633 +sg25270 +S'Fritz Boehmer' +p27634 +sa(dp27635 +g25267 +g27 +sg25268 +S'Zoar Decorative Painting: "This World and the Next"' +p27636 +sg25270 +S'Angelo Bulone' +p27637 +sa(dp27638 +g25267 +g27 +sg25268 +S'Zoar Door' +p27639 +sg25270 +S'Fritz Boehmer' +p27640 +sa(dp27641 +g25267 +g27 +sg25268 +S'Zoar Door' +p27642 +sg25270 +S'Fritz Boehmer' +p27643 +sa(dp27644 +g25267 +g27 +sg25268 +S'Zoar Door Panels' +p27645 +sg25270 +S'Fritz Boehmer' +p27646 +sa(dp27647 +g25267 +g27 +sg25268 +S'Zoar Four-Post Bed' +p27648 +sg25270 +S'Fritz Boehmer' +p27649 +sa(dp27650 +g25267 +g27 +sg25268 +S'Zoar Wash Bench' +p27651 +sg25270 +S'Angelo Bulone' +p27652 +sa(dp27653 +g25267 +g27 +sg25268 +S'Zoar Cherry Bonnet Cabinet' +p27654 +sg25270 +S'Angelo Bulone' +p27655 +sa(dp27656 +g25267 +g27 +sg25268 +S'Zoar "Peasant" Chair' +p27657 +sg25270 +S'Ralph Russell' +p27658 +sa(dp27659 +g25267 +g27 +sg25268 +S'Zoar Chair' +p27660 +sg25270 +S'Angelo Bulone' +p27661 +sa(dp27662 +g25268 +S'The Triumph of Christ ("The Mazarin Tapestry")' +p27663 +sg25270 +S'Netherlandish 16th Century' +p27664 +sg25273 +S'overall: 341 x 439.4 cm (134 1/4 x 173 in.)' +p27665 +sg25275 +S'\ntapestry: undyed wool warp; dyed wool, silk, and silver-gilt- and silver-wrapped silk weft' +p27666 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000555f.jpg' +p27667 +sg25267 +S'Gold and silver threads add life to this tapestry, often described as the finest surviving from the Middle Ages and early Renaissance. Everything indicates that this was an important commission: its size—more than 13 feet wide; its workmanship—woven with as many as 28 warp (vertical) threads per inch; and its lavish materials—with up to thirty percent of the surface woven with gold or silver wrapped threads. Perhaps this tapestry was made to celebrate a royal wedding, but the first information about it dates from 150 years after its creation. It was listed in a 1653 inventory of the effects of the powerful French Cardinal Mazarin, prime minister and virtual ruler of France. Mazarin owned more than 350 tapestries and prized this one among them.\n Tapestries were generally more expensive, more valued than paintings; they served the dual purpose of insulating drafty rooms while beautifying them. For important tapestries, renowned artists would often draw the design, called a cartoon, which was then woven in specialized studios. By 1500 Brussels was the most important weaving center; the Mazarin Tapestry was probably made there although the artist responsible for the cartoon remains unknown.\n The imagery depicted in \n ' +p27668 +sa(dp27669 +g25267 +g27 +sg25268 +S'Zoar Cupboard' +p27670 +sg25270 +S'Angelo Bulone' +p27671 +sa(dp27672 +g25267 +g27 +sg25268 +S"Zoar Child's Bed" +p27673 +sg25270 +S'Fritz Boehmer' +p27674 +sa(dp27675 +g25267 +g27 +sg25268 +S'Zoar "Sleigh" Bed' +p27676 +sg25270 +S'Fritz Boehmer' +p27677 +sa(dp27678 +g25267 +g27 +sg25268 +S'Zoar Bed Side Stand' +p27679 +sg25270 +S'Angelo Bulone' +p27680 +sa(dp27681 +g25267 +g27 +sg25268 +S'Zoar Candlestick, Snuffer and Lantern' +p27682 +sg25270 +S'Orville Cline' +p27683 +sa(dp27684 +g25267 +g27 +sg25268 +S'Zoar Coverlet' +p27685 +sg25270 +S'Ralph Russell' +p27686 +sa(dp27687 +g25267 +g27 +sg25268 +S'Zoar Shingle Axe' +p27688 +sg25270 +S'Clarence Horton' +p27689 +sa(dp27690 +g25267 +g27 +sg25268 +S'Iron Bracket from Zoar Tavern' +p27691 +sg25270 +S'Ralph Russell' +p27692 +sa(dp27693 +g25267 +g27 +sg25268 +S'Zoar Whetstone Case' +p27694 +sg25270 +S'Jerry Guinta' +p27695 +sa(dp27696 +g25267 +g27 +sg25268 +S'Zoar Apple Hook' +p27697 +sg25270 +S'Fritz Boehmer' +p27698 +sa(dp27699 +g25268 +S'The Garden of Gethsemane' +p27700 +sg25270 +S'Artist Information (' +p27701 +sg25273 +S'(artist after)' +p27702 +sg25275 +S'\n' +p27703 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000dad6.jpg' +p27704 +sg25267 +g27 +sa(dp27705 +g25267 +g27 +sg25268 +S'Zoar Lock w/ Key' +p27706 +sg25270 +S'Angelo Bulone' +p27707 +sa(dp27708 +g25267 +g27 +sg25268 +S'Zoar Fire Tongs, Poker and Shovel' +p27709 +sg25270 +S'Jerry Guinta' +p27710 +sa(dp27711 +g25267 +g27 +sg25268 +S'Zoar Tin Coffee Pot and Pail' +p27712 +sg25270 +S'John Wilkes' +p27713 +sa(dp27714 +g25267 +g27 +sg25268 +S'Zoar Invalid Wagon' +p27715 +sg25270 +S'Fritz Boehmer' +p27716 +sa(dp27717 +g25267 +g27 +sg25268 +S'Zoar Picture Frame' +p27718 +sg25270 +S'James Drake' +p27719 +sa(dp27720 +g25267 +g27 +sg25268 +S'Zoar Butter Mold' +p27721 +sg25270 +S'John Wilkes' +p27722 +sa(dp27723 +g25267 +g27 +sg25268 +S'Zoar Picture Frame' +p27724 +sg25270 +S'Carol Larson' +p27725 +sa(dp27726 +g25267 +g27 +sg25268 +S'Zoar Bird Cage' +p27727 +sg25270 +S'Angelo Bulone' +p27728 +sa(dp27729 +g25267 +g27 +sg25268 +S'Zoar Thread Holder' +p27730 +sg25270 +S'Percival Jenner' +p27731 +sa(dp27732 +g25267 +g27 +sg25268 +S'Zoar Stove' +p27733 +sg25270 +S'Fritz Boehmer' +p27734 +sa(dp27735 +g25268 +S'The Crucifixion' +p27736 +sg25270 +S'Artist Information (' +p27737 +sg25273 +S'(artist after)' +p27738 +sg25275 +S'\n' +p27739 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a000665d.jpg' +p27740 +sg25267 +g27 +sa(dp27741 +g25267 +g27 +sg25268 +S'Zoar Floor Lighting Device' +p27742 +sg25270 +S'Carol Larson' +p27743 +sa(dp27744 +g25267 +g27 +sg25268 +S'Economite Bowl or Cake Mold' +p27745 +sg25270 +S'Edward White' +p27746 +sa(dp27747 +g25267 +g27 +sg25268 +S'Economite Bowl w/ Handle' +p27748 +sg25270 +S'Edward White' +p27749 +sa(dp27750 +g25267 +g27 +sg25268 +S'Economy Tint Lamp' +p27751 +sg25270 +S'Edward White' +p27752 +sa(dp27753 +g25267 +g27 +sg25268 +S'Economy Pie Plate' +p27754 +sg25270 +S'Edward White' +p27755 +sa(dp27756 +g25267 +g27 +sg25268 +S'Economy Redware Pitcher' +p27757 +sg25270 +S'Ralph Atkinson' +p27758 +sa(dp27759 +g25267 +g27 +sg25268 +S'Economite Bowl or Cake Mold' +p27760 +sg25270 +S'Ralph Atkinson' +p27761 +sa(dp27762 +g25267 +g27 +sg25268 +S'Lard or Whale Oil Lamp' +p27763 +sg25270 +S'Ralph Atkinson' +p27764 +sa(dp27765 +g25267 +g27 +sg25268 +S'Economy Square Oil Lantern' +p27766 +sg25270 +S'Ralph Atkinson' +p27767 +sa(dp27768 +g25267 +g27 +sg25268 +S'Economy Shoulder Yoke' +p27769 +sg25270 +S'Ralph Atkinson' +p27770 +sa(dp27771 +g25268 +S'The Deposition' +p27772 +sg25270 +S'Artist Information (' +p27773 +sg25273 +S'Netherlandish, c. 1488 - 1541' +p27774 +sg25275 +S'(artist after)' +p27775 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005a50.jpg' +p27776 +sg25267 +g27 +sa(dp27777 +g25267 +g27 +sg25268 +S'Economy "Schnitzelbank"' +p27778 +sg25270 +S'Ralph Atkinson' +p27779 +sa(dp27780 +g25267 +g27 +sg25268 +S'Economy Redware Jug' +p27781 +sg25270 +S'Edward White' +p27782 +sa(dp27783 +g25267 +g27 +sg25268 +S'Economy Pie Plate' +p27784 +sg25270 +S'Ralph Atkinson' +p27785 +sa(dp27786 +g25267 +g27 +sg25268 +S'Economy Lamp' +p27787 +sg25270 +S'Edward White' +p27788 +sa(dp27789 +g25267 +g27 +sg25268 +S'Economy: Detail of Cloth and Bonnet' +p27790 +sg25270 +S'J. Howard Iams' +p27791 +sa(dp27792 +g25267 +g27 +sg25268 +S'Amana Bread-raising Basket' +p27793 +sg25270 +S'Frank Eiseman' +p27794 +sa(dp27795 +g25267 +g27 +sg25268 +S'Metal Door Lock' +p27796 +sg25270 +S'Earl Butlin' +p27797 +sa(dp27798 +g25267 +g27 +sg25268 +S'Amana Shoe Scraper' +p27799 +sg25270 +S'Arthur Stewart' +p27800 +sa(dp27801 +g25267 +g27 +sg25268 +S"Amana Baker's Hoe" +p27802 +sg25270 +S'Arthur Stewart' +p27803 +sa(dp27804 +g25267 +g27 +sg25268 +S"Amana Baker's Oven Lamp" +p27805 +sg25270 +S'Frank Eiseman' +p27806 +sa(dp27807 +g25268 +S'The Crucifixion [reverse]' +p27808 +sg25270 +S'Andrea di Bartolo' +p27809 +sg25273 +S'tempera on panel' +p27810 +sg25275 +S'c. 1415' +p27811 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000834.jpg' +p27812 +sg25267 +S"The foreboding mood of Andrea's \n " +p27813 +sa(dp27814 +g25273 +S'overall: 39.4 x 34.9 cm (15 1/2 x 13 3/4 in.)' +p27815 +sg25267 +g27 +sg25275 +S'\ntapestry: undyed silk warp; spun silver, silver-gilt, and dyed silk weft' +p27816 +sg25268 +S'Ecce Homo' +p27817 +sg25270 +S'Netherlandish 16th Century' +p27818 +sa(dp27819 +g25267 +g27 +sg25268 +S'Amana Dough Trough Scrapers' +p27820 +sg25270 +S'Harley Kempter' +p27821 +sa(dp27822 +g25267 +g27 +sg25268 +S'Amana Stove' +p27823 +sg25270 +S'Raymond Neumann' +p27824 +sa(dp27825 +g25267 +g27 +sg25268 +S'Bishop Hill: Dress' +p27826 +sg25270 +S'H. Langden Brown' +p27827 +sa(dp27828 +g25267 +g27 +sg25268 +S'Bishop Hill: Hotel Lantern' +p27829 +sg25270 +S'Archie Thompson' +p27830 +sa(dp27831 +g25267 +g27 +sg25268 +S'Bishop Hill: Cradle' +p27832 +sg25270 +S'Wellington Blewett' +p27833 +sa(dp27834 +g25267 +g27 +sg25268 +S'Bishop Hill: Bed' +p27835 +sg25270 +S'Alfred Koehn' +p27836 +sa(dp27837 +g25267 +g27 +sg25268 +S'Bishop Hill: Salt Box' +p27838 +sg25270 +S'Adele Brooks' +p27839 +sa(dp27840 +g25267 +g27 +sg25268 +S'Bishop Hill: Bridal Box' +p27841 +sg25270 +S'Ethel Clarke' +p27842 +sa(dp27843 +g25267 +g27 +sg25268 +S'Bishop Hill: Desk' +p27844 +sg25270 +S'Alfred Koehn' +p27845 +sa(dp27846 +g25267 +g27 +sg25268 +S'Bishop Hill: Dressing Case' +p27847 +sg25270 +S'Kurt Melzer' +p27848 +sa(dp27849 +g25273 +S'overall: 39.4 x 30.5 cm (15 1/2 x 12 in.)' +p27850 +sg25267 +g27 +sg25275 +S'\ntapestry: undyed silk warp; spun silver, silver-gilt, and dyed silk weft' +p27851 +sg25268 +S'Mater Dolorosa' +p27852 +sg25270 +S'Netherlandish 16th Century' +p27853 +sa(dp27854 +g25267 +g27 +sg25268 +S'Bishop Hill: Cupboard' +p27855 +sg25270 +S'Wellington Blewett' +p27856 +sa(dp27857 +g25267 +g27 +sg25268 +S'Bishop Hill: Table' +p27858 +sg25270 +S'Roberta Elvis' +p27859 +sa(dp27860 +g25267 +g27 +sg25268 +S'Bishop Hill: Table' +p27861 +sg25270 +S'Kurt Melzer' +p27862 +sa(dp27863 +g25267 +g27 +sg25268 +S'Bishop Hill: Auger' +p27864 +sg25270 +S'Michael Chomyk' +p27865 +sa(dp27866 +g25267 +g27 +sg25268 +S'Bishop Hill: Pitcher' +p27867 +sg25270 +S'James Vail' +p27868 +sa(dp27869 +g25267 +g27 +sg25268 +S'Bishop Hill: Seal' +p27870 +sg25270 +S'Wellington Blewett' +p27871 +sa(dp27872 +g25267 +g27 +sg25268 +S'Bishop Hill: Auger' +p27873 +sg25270 +S'Harry G. Aberdeen' +p27874 +sa(dp27875 +g25267 +g27 +sg25268 +S'Bishop Hill: Washing Flail' +p27876 +sg25270 +S'Wellington Blewett' +p27877 +sa(dp27878 +g25267 +g27 +sg25268 +S'Bishop Hill: Flail' +p27879 +sg25270 +S'Archie Thompson' +p27880 +sa(dp27881 +g25267 +g27 +sg25268 +S'Bishop Hill: Wooden Screw Cutter' +p27882 +sg25270 +S'H. Langden Brown' +p27883 +sa(dp27884 +g25268 +S'Dream of Rinaldo' +p27885 +sg25270 +S'Artist Information (' +p27886 +sg25273 +S'(artist)' +p27887 +sg25275 +S'\n' +p27888 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000556e.jpg' +p27889 +sg25267 +S"\r\n Court painter to Louis XV and Madame de Pompadour, \n \r\n The cartoon was woven three times at Beauvais. Boucher derived the scene from \n \r\n Rinaldo, a Christian hero, sleeps in the enchanted garden of the sorceress Armida, who sided with the Saracens. Nymphs and cupids—companions of Venus, the classical goddess of love—play amid fluffy rococo foliage watered by a dolphin-shaped fountain, itself a symbol of Venus’ birth from the sea. As an indication that the dreaming Rinaldo will awaken from Armida's seductive spell and lead the crusaders to victory, he holds his plumed helmet.\r\n \n " +p27890 +sa(dp27891 +g25267 +g27 +sg25268 +S'Bishop Hill: Mangler' +p27892 +sg25270 +S'H. Langden Brown' +p27893 +sa(dp27894 +g25267 +g27 +sg25268 +S'Bishop Hill: Skate' +p27895 +sg25270 +S'James Vail' +p27896 +sa(dp27897 +g25267 +g27 +sg25268 +S'Bishop Hill: Clock Hand' +p27898 +sg25270 +S'Ivar Julius' +p27899 +sa(dp27900 +g25267 +g27 +sg25268 +S'Bishop Hill: Table' +p27901 +sg25270 +S'Wellington Blewett' +p27902 +sa(dp27903 +g25267 +g27 +sg25268 +S'Bishop Hill: Church Pew' +p27904 +sg25270 +S'H. Langden Brown' +p27905 +sa(dp27906 +g25267 +g27 +sg25268 +S'Shaker Baskets' +p27907 +sg25270 +S'Orville Cline' +p27908 +sa(dp27909 +g25267 +g27 +sg25268 +S'Shaker Basket' +p27910 +sg25270 +S'Kapousouz' +p27911 +sa(dp27912 +g25267 +g27 +sg25268 +S'Shaker Laundry Basket' +p27913 +sg25270 +S'Orville A. Carroll' +p27914 +sa(dp27915 +g25267 +g27 +sg25268 +S'Shaker Wooden Bonnet Mold' +p27916 +sg25270 +S'Charles Goodwin' +p27917 +sa(dp27918 +g25267 +g27 +sg25268 +S'Shaker Infirmary Cap' +p27919 +sg25270 +S'Betty Fuerst' +p27920 +sa(dp27921 +g25273 +S'(artist)' +p27922 +sg25267 +g27 +sg25275 +S'\n' +p27923 +sg25268 +S'Spring' +p27924 +sg25270 +S'Artist Information (' +p27925 +sa(dp27926 +g25267 +g27 +sg25268 +S'Shaker Bonnet Mold' +p27927 +sg25270 +S'Francis Bruner' +p27928 +sa(dp27929 +g25267 +g27 +sg25268 +S"Shaker Woman's Bonnet" +p27930 +sg25270 +S'Elizabeth Moutal' +p27931 +sa(dp27932 +g25267 +g27 +sg25268 +S'Shaker Bonnet' +p27933 +sg25270 +S'Alice Stearns' +p27934 +sa(dp27935 +g25267 +g27 +sg25268 +S'Shaker Bonnet' +p27936 +sg25270 +S'Frances Cohen' +p27937 +sa(dp27938 +g25267 +g27 +sg25268 +S'Shaker Bonnet' +p27939 +sg25270 +S'Alois E. Ulrich' +p27940 +sa(dp27941 +g25267 +g27 +sg25268 +S'Shaker Work Apron' +p27942 +sg25270 +S'Lucille Chabot' +p27943 +sa(dp27944 +g25267 +g27 +sg25268 +S"Shaker Doll's Cloak" +p27945 +sg25270 +S'Eleanor Gausser' +p27946 +sa(dp27947 +g25267 +g27 +sg25268 +S'Shaker Work Apron' +p27948 +sg25270 +S'Joseph Goldberg' +p27949 +sa(dp27950 +g25267 +g27 +sg25268 +S'Shaker Costume' +p27951 +sg25270 +S'William Paul Childers' +p27952 +sa(dp27953 +g25267 +g27 +sg25268 +S'Shaker Cape' +p27954 +sg25270 +S'Francis Bruner' +p27955 +sa(dp27956 +g25273 +S'(weaver)' +p27957 +sg25267 +g27 +sg25275 +S'\n' +p27958 +sg25268 +S'Summer' +p27959 +sg25270 +S'Artist Information (' +p27960 +sa(dp27961 +g25267 +g27 +sg25268 +S"Shaker Man's Coat" +p27962 +sg25270 +S'Ingrid Selmer-Larsen' +p27963 +sa(dp27964 +g25267 +g27 +sg25268 +S'Shaker Dress' +p27965 +sg25270 +S'Lillian Causey' +p27966 +sa(dp27967 +g25267 +g27 +sg25268 +S'Shaker Straw Bonnet' +p27968 +sg25270 +S'Mona Brown' +p27969 +sa(dp27970 +g25267 +g27 +sg25268 +S'Shaker Cape' +p27971 +sg25270 +S'Francis Bruner' +p27972 +sa(dp27973 +g25267 +g27 +sg25268 +S"Shaker Man's Coat" +p27974 +sg25270 +S'Joseph Goldberg' +p27975 +sa(dp27976 +g25267 +g27 +sg25268 +S"Man's Smock and Trousers" +p27977 +sg25270 +S'Frances Cohen' +p27978 +sa(dp27979 +g25267 +g27 +sg25268 +S"Shaker Woman's Cloak" +p27980 +sg25270 +S'Ingrid Selmer-Larsen' +p27981 +sa(dp27982 +g25267 +g27 +sg25268 +S"Shaker Man's Trousers" +p27983 +sg25270 +S'Alice Stearns' +p27984 +sa(dp27985 +g25267 +g27 +sg25268 +S'Shaker Glove' +p27986 +sg25270 +S'Helen E. Gilman' +p27987 +sa(dp27988 +g25267 +g27 +sg25268 +S'Shaker Silk Kerchief' +p27989 +sg25270 +S'Helen E. Gilman' +p27990 +sa(dp27991 +g25273 +S'(weaver)' +p27992 +sg25267 +g27 +sg25275 +S'\n' +p27993 +sg25268 +S'Autumn' +p27994 +sg25270 +S'Artist Information (' +p27995 +sa(dp27996 +g25267 +g27 +sg25268 +S'Shaker Kerchief' +p27997 +sg25270 +S'Betty Fuerst' +p27998 +sa(dp27999 +g25267 +g27 +sg25268 +S'Shaker Kerchief' +p28000 +sg25270 +S'Ingrid Selmer-Larsen' +p28001 +sa(dp28002 +g25267 +g27 +sg25268 +S'Shaker Shawl' +p28003 +sg25270 +S'Jessie M. Benge' +p28004 +sa(dp28005 +g25267 +g27 +sg25268 +S'Shaker Hair Wreath' +p28006 +sg25270 +S'Helen Bronson' +p28007 +sa(dp28008 +g25267 +g27 +sg25268 +S'Shaker Kerchief' +p28009 +sg25270 +S'Charles Goodwin' +p28010 +sa(dp28011 +g25267 +g27 +sg25268 +S'Afternoon Dress' +p28012 +sg25270 +S'Mina Lowry' +p28013 +sa(dp28014 +g25267 +g27 +sg25268 +S'Shaker Tin Safe' +p28015 +sg25270 +S'George V. Vezolles' +p28016 +sa(dp28017 +g25267 +g27 +sg25268 +S'Gown' +p28018 +sg25270 +S'American 20th Century' +p28019 +sa(dp28020 +g25267 +g27 +sg25268 +S'Dress' +p28021 +sg25270 +S'Jessie M. Benge' +p28022 +sa(dp28023 +g25267 +g27 +sg25268 +S'Gown' +p28024 +sg25270 +S'Dorothy Gernon' +p28025 +sa(dp28026 +g25273 +S'(weaver)' +p28027 +sg25267 +g27 +sg25275 +S'\n' +p28028 +sg25268 +S'Winter' +p28029 +sg25270 +S'Artist Information (' +p28030 +sa(dp28031 +g25267 +g27 +sg25268 +S'Wedding Dress' +p28032 +sg25270 +S'Margaret Concha' +p28033 +sa(dp28034 +g25267 +g27 +sg25268 +S'Evening Dress' +p28035 +sg25270 +S'Sylvia De Zon' +p28036 +sa(dp28037 +g25267 +g27 +sg25268 +S'Dress' +p28038 +sg25270 +S'Dorothy Gernon' +p28039 +sa(dp28040 +g25267 +g27 +sg25268 +S'Dress' +p28041 +sg25270 +S'Charlotte Winter' +p28042 +sa(dp28043 +g25267 +g27 +sg25268 +S'Betrothal Dress' +p28044 +sg25270 +S'Edith Towner' +p28045 +sa(dp28046 +g25267 +g27 +sg25268 +S"Woman's Dress" +p28047 +sg25270 +S'Bessie Forman' +p28048 +sa(dp28049 +g25267 +g27 +sg25268 +S"Woman's Dress" +p28050 +sg25270 +S'Jessie M. Benge' +p28051 +sa(dp28052 +g25267 +g27 +sg25268 +S"Woman's Coat" +p28053 +sg25270 +S'Margaret Concha' +p28054 +sa(dp28055 +g25267 +g27 +sg25268 +S'Dress' +p28056 +sg25270 +S'Jean Peszel' +p28057 +sa(dp28058 +g25267 +g27 +sg25268 +S'Dress' +p28059 +sg25270 +S'Jessie M. Benge' +p28060 +sa(dp28061 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p28062 +sg25268 +S'Tapestry-covered Cushion' +p28063 +sg25270 +S'Artist Information (' +p28064 +sa(dp28065 +g25267 +g27 +sg25268 +S'Reception Gown' +p28066 +sg25270 +S'Jean Peszel' +p28067 +sa(dp28068 +g25267 +g27 +sg25268 +S'Dress' +p28069 +sg25270 +S'Jean Peszel' +p28070 +sa(dp28071 +g25267 +g27 +sg25268 +S'Bed Posts' +p28072 +sg25270 +S'Walter W. Jennings' +p28073 +sa(dp28074 +g25267 +g27 +sg25268 +S'Sleigh Bed' +p28075 +sg25270 +S'Kurt Melzer' +p28076 +sa(dp28077 +g25267 +g27 +sg25268 +S'Headboard' +p28078 +sg25270 +S'Gordon Saltar' +p28079 +sa(dp28080 +g25267 +g27 +sg25268 +S'Bedstead' +p28081 +sg25270 +S'Robert Gilson' +p28082 +sa(dp28083 +g25267 +g27 +sg25268 +S'Bed' +p28084 +sg25270 +S'B. Holst-Grubbe' +p28085 +sa(dp28086 +g25267 +g27 +sg25268 +S'Bedstead' +p28087 +sg25270 +S'Frank Wenger' +p28088 +sa(dp28089 +g25267 +g27 +sg25268 +S'Bed' +p28090 +sg25270 +S'B. Holst-Grubbe' +p28091 +sa(dp28092 +g25267 +g27 +sg25268 +S'Bedstead' +p28093 +sg25270 +S'Irene Malawicz' +p28094 +sa(dp28095 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p28096 +sg25268 +S'Tapestry-covered Cushion' +p28097 +sg25270 +S'Artist Information (' +p28098 +sa(dp28099 +g25267 +g27 +sg25268 +S'Four Poster Bed' +p28100 +sg25270 +S'Columbus Simpson' +p28101 +sa(dp28102 +g25267 +g27 +sg25268 +S'Four Post Bed' +p28103 +sg25270 +S'Fred Weiss' +p28104 +sa(dp28105 +g25267 +g27 +sg25268 +S'Bedroom of House' +p28106 +sg25270 +S'Anna Aloisi' +p28107 +sa(dp28108 +g25267 +g27 +sg25268 +S'Bed' +p28109 +sg25270 +S'Bernard Gussow' +p28110 +sa(dp28111 +g25267 +g27 +sg25268 +S'Bedstead' +p28112 +sg25270 +S'Irene Malawicz' +p28113 +sa(dp28114 +g25267 +g27 +sg25268 +S'Bed and Trundle Bed' +p28115 +sg25270 +S'Jack Bochner' +p28116 +sa(dp28117 +g25267 +g27 +sg25268 +S'High Post Bed' +p28118 +sg25270 +S'Florence Choate' +p28119 +sa(dp28120 +g25267 +g27 +sg25268 +S'Four Post Bed' +p28121 +sg25270 +S'David S. De Vault' +p28122 +sa(dp28123 +g25267 +g27 +sg25268 +S'Bed Double' +p28124 +sg25270 +S'Virginia Kennady' +p28125 +sa(dp28126 +g25267 +g27 +sg25268 +S'Trundle Bed' +p28127 +sg25270 +S'Mattie P. Goodman' +p28128 +sa(dp28129 +g25268 +S'Tapestry-covered Cushion' +p28130 +sg25270 +S'Artist Information (' +p28131 +sg25273 +g27 +sg25275 +S'(artist)' +p28132 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa64.jpg' +p28133 +sg25267 +g27 +sa(dp28134 +g25267 +g27 +sg25268 +S'Three-quarter Bed' +p28135 +sg25270 +S'Grace Dwyer' +p28136 +sa(dp28137 +g25267 +g27 +sg25268 +S'Small Day Bed' +p28138 +sg25270 +S'Grace Bolser' +p28139 +sa(dp28140 +g25267 +g27 +sg25268 +S'Sleigh Bed' +p28141 +sg25270 +S'Joe Brennan' +p28142 +sa(dp28143 +g25267 +g27 +sg25268 +S'Day Bed' +p28144 +sg25270 +S'Rosa Rivero' +p28145 +sa(dp28146 +g25267 +g27 +sg25268 +S'Day Bed' +p28147 +sg25270 +S'Peter C. Ustinoff' +p28148 +sa(dp28149 +g25267 +g27 +sg25268 +S'Bed' +p28150 +sg25270 +S'Pearl Davis' +p28151 +sa(dp28152 +g25267 +g27 +sg25268 +S'Half-canopy Carved Bed' +p28153 +sg25270 +S'Dorothy Posten' +p28154 +sa(dp28155 +g25267 +g27 +sg25268 +S'Half-canopy Carved Bed' +p28156 +sg25270 +S'Dorothy Posten' +p28157 +sa(dp28158 +g25267 +g27 +sg25268 +S'Half-canopy Carved Bed' +p28159 +sg25270 +S'Dorothy Posten' +p28160 +sa(dp28161 +g25267 +g27 +sg25268 +S'Half-canopy Carved Bed' +p28162 +sg25270 +S'Dorothy Posten' +p28163 +sa(dp28164 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p28165 +sg25268 +S'Tapestry-covered Cushion' +p28166 +sg25270 +S'Artist Information (' +p28167 +sa(dp28168 +g25267 +g27 +sg25268 +S'Bed' +p28169 +sg25270 +S'Dana Bartlett' +p28170 +sa(dp28171 +g25267 +g27 +sg25268 +S'Bed' +p28172 +sg25270 +S'Otto E. Hake' +p28173 +sa(dp28174 +g25267 +g27 +sg25268 +S'Bed, Burl Walnut' +p28175 +sg25270 +S'Randolph F. Miller' +p28176 +sa(dp28177 +g25267 +g27 +sg25268 +S'Bed' +p28178 +sg25270 +S'Natalie Simon' +p28179 +sa(dp28180 +g25267 +g27 +sg25268 +S'Rope Bed' +p28181 +sg25270 +S'Walter G. Capuozzo' +p28182 +sa(dp28183 +g25267 +g27 +sg25268 +S'Bed' +p28184 +sg25270 +S'Juanita Lantz' +p28185 +sa(dp28186 +g25267 +g27 +sg25268 +S'Bed' +p28187 +sg25270 +S'Wellington Blewett' +p28188 +sa(dp28189 +g25267 +g27 +sg25268 +S'Bedstead' +p28190 +sg25270 +S'Florence Truelson' +p28191 +sa(dp28192 +g25267 +g27 +sg25268 +S'Bench' +p28193 +sg25270 +S'Philip Johnson' +p28194 +sa(dp28195 +g25267 +g27 +sg25268 +S'Moravian Church Bench' +p28196 +sg25270 +S'Amos C. Brinton' +p28197 +sa(dp28198 +g25268 +S'Tapestry-covered Cushion' +p28199 +sg25270 +S'Artist Information (' +p28200 +sg25273 +g27 +sg25275 +S'(artist)' +p28201 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010d/a0010d99.jpg' +p28202 +sg25267 +g27 +sa(dp28203 +g25267 +g27 +sg25268 +S'Wrought Iron Garden Bench' +p28204 +sg25270 +S'Al Curry' +p28205 +sa(dp28206 +g25267 +g27 +sg25268 +S'Meal Bench' +p28207 +sg25270 +S'George Fairbanks' +p28208 +sa(dp28209 +g25267 +g27 +sg25268 +S'Bench' +p28210 +sg25270 +S'Donald Streeter' +p28211 +sa(dp28212 +g25267 +g27 +sg25268 +S"Child's Bench" +p28213 +sg25270 +S'Albert Camilli' +p28214 +sa(dp28215 +g25267 +g27 +sg25268 +S'Cabinet' +p28216 +sg25270 +S'Franklin C. Moyan' +p28217 +sa(dp28218 +g25267 +g27 +sg25268 +S'Bed' +p28219 +sg25270 +S'Jack Bochner' +p28220 +sa(dp28221 +g25267 +g27 +sg25268 +S'Bench in Cemetary Lot' +p28222 +sg25270 +S'Fred Hassebrock' +p28223 +sa(dp28224 +g25267 +g27 +sg25268 +S"Cobbler's Bench" +p28225 +sg25270 +S'Leonard Battee' +p28226 +sa(dp28227 +g25267 +g27 +sg25268 +S'Shoe Bench' +p28228 +sg25270 +S'Clarence W. Dawson' +p28229 +sa(dp28230 +g25267 +g27 +sg25268 +S"Shoemaker's Bench" +p28231 +sg25270 +S'Albert Ryder' +p28232 +sa(dp28233 +g25268 +S'Tapestry-covered Cushion' +p28234 +sg25270 +S'Artist Information (' +p28235 +sg25273 +g27 +sg25275 +S'(artist)' +p28236 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010d/a0010da4.jpg' +p28237 +sg25267 +g27 +sa(dp28238 +g25267 +g27 +sg25268 +S"Wood Carver's Bench" +p28239 +sg25270 +S'Lloyd Charles Lemcke' +p28240 +sa(dp28241 +g25267 +g27 +sg25268 +S"Tailor's Bench" +p28242 +sg25270 +S'Manuel G. Runyan' +p28243 +sa(dp28244 +g25267 +g27 +sg25268 +S'Bookcase' +p28245 +sg25270 +S'Vincent P. Rosel' +p28246 +sa(dp28247 +g25267 +g27 +sg25268 +S'Bookcase and Writing Desk' +p28248 +sg25270 +S'Henry Meyers' +p28249 +sa(dp28250 +g25267 +g27 +sg25268 +S'Bookcase and Writing Desk' +p28251 +sg25270 +S'Henry Meyers' +p28252 +sa(dp28253 +g25267 +g27 +sg25268 +S'Bookcase' +p28254 +sg25270 +S'American 20th Century' +p28255 +sa(dp28256 +g25267 +g27 +sg25268 +S'Walnut Desk and Bookcase' +p28257 +sg25270 +S'Harry King' +p28258 +sa(dp28259 +g25267 +g27 +sg25268 +S'Secretary Bookcase' +p28260 +sg25270 +S'Rex F. Bush' +p28261 +sa(dp28262 +g25267 +g27 +sg25268 +S'Bookcase - Gothic Type' +p28263 +sg25270 +S'Eileen Knox' +p28264 +sa(dp28265 +g25267 +g27 +sg25268 +S'Bureau' +p28266 +sg25270 +S'Natalie Simon' +p28267 +sa(dp28268 +g25268 +S'Tapestry-covered Cushion' +p28269 +sg25270 +S'Artist Information (' +p28270 +sg25273 +g27 +sg25275 +S'(artist)' +p28271 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010d/a0010daa.jpg' +p28272 +sg25267 +g27 +sa(dp28273 +g25267 +g27 +sg25268 +S'Dresser with Marble Top' +p28274 +sg25270 +S'Geoffrey Holt' +p28275 +sa(dp28276 +g25267 +g27 +sg25268 +S'Bureau' +p28277 +sg25270 +S'Natalie Simon' +p28278 +sa(dp28279 +g25267 +g27 +sg25268 +S'Dresser' +p28280 +sg25270 +S'Gordena Jackson' +p28281 +sa(dp28282 +g25267 +g27 +sg25268 +S'Bureau' +p28283 +sg25270 +S'Grace Halpin' +p28284 +sa(dp28285 +g25267 +g27 +sg25268 +S"Bride's Bureau" +p28286 +sg25270 +S'Kurt Melzer' +p28287 +sa(dp28288 +g25267 +g27 +sg25268 +S"Bride's Bureau" +p28289 +sg25270 +S'Archie Thompson' +p28290 +sa(dp28291 +g25267 +g27 +sg25268 +S'Cupboard' +p28292 +sg25270 +S'Meyer Goldbaum' +p28293 +sa(dp28294 +g25267 +g27 +sg25268 +S'Cupboard' +p28295 +sg25270 +S'Jack Bochner' +p28296 +sa(dp28297 +g25267 +g27 +sg25268 +S'Cabinet, with Ivory Keyholes' +p28298 +sg25270 +S'William Kieckhofel' +p28299 +sa(dp28300 +g25267 +g27 +sg25268 +S'Cabinet, with Ivory Keyholes' +p28301 +sg25270 +S'William Kieckhofel' +p28302 +sa(dp28303 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p28304 +sg25268 +S'Tapestry-covered Cushion' +p28305 +sg25270 +S'Artist Information (' +p28306 +sa(dp28307 +g25267 +g27 +sg25268 +S'Wall Cabinet, Hand Carved' +p28308 +sg25270 +S'Harry Mann Waddell' +p28309 +sa(dp28310 +g25267 +g27 +sg25268 +S'Whalebone Cabinet' +p28311 +sg25270 +S'Augustine Haugland' +p28312 +sa(dp28313 +g25267 +g27 +sg25268 +S'Sewing Cabinet' +p28314 +sg25270 +S'Frank Eiseman' +p28315 +sa(dp28316 +g25267 +g27 +sg25268 +S'Hand Carved Cabinet' +p28317 +sg25270 +S'Ethel Dougan' +p28318 +sa(dp28319 +g25267 +g27 +sg25268 +S'Cabinet' +p28320 +sg25270 +S'Grace Thomas' +p28321 +sa(dp28322 +g25267 +g27 +sg25268 +S'Cabinet' +p28323 +sg25270 +S'Gordena Jackson' +p28324 +sa(dp28325 +g25267 +g27 +sg25268 +S'Cabinet' +p28326 +sg25270 +S'Harry Mann Waddell' +p28327 +sa(dp28328 +g25267 +g27 +sg25268 +S'Secretary Cabinet' +p28329 +sg25270 +S'William Kieckhofel' +p28330 +sa(dp28331 +g25267 +g27 +sg25268 +S'Kas' +p28332 +sg25270 +S'Isadore Goldberg' +p28333 +sa(dp28334 +g25267 +g27 +sg25268 +S'Linen Press' +p28335 +sg25270 +S'Dorothea A. Farrington' +p28336 +sa(dp28337 +g25273 +S'Widener Collection' +p28338 +sg25267 +g27 +sg25275 +S'\n' +p28339 +sg25268 +S'Cushion Cover (August)' +p28340 +sg25270 +S'German 17th Century' +p28341 +sa(dp28342 +g25267 +g27 +sg25268 +S'Wall Cupboard' +p28343 +sg25270 +S'Samuel W. Ford' +p28344 +sa(dp28345 +g25267 +g27 +sg25268 +S'Cabinet' +p28346 +sg25270 +S'Elmer R. Kottcamp' +p28347 +sa(dp28348 +g25267 +g27 +sg25268 +S'Egg Cabinet' +p28349 +sg25270 +S'Eileen Knox' +p28350 +sa(dp28351 +g25267 +g27 +sg25268 +S'Cabinet' +p28352 +sg25270 +S'Artist Information (' +p28353 +sa(dp28354 +g25267 +g27 +sg25268 +S'Tewer or Cupboard' +p28355 +sg25270 +S'Sarah F. Williams' +p28356 +sa(dp28357 +g25267 +g27 +sg25268 +S'Kitchen Cupboard' +p28358 +sg25270 +S'Joseph Sudek' +p28359 +sa(dp28360 +g25267 +g27 +sg25268 +S'Wall Cabinet' +p28361 +sg25270 +S'Betty Jean Davis' +p28362 +sa(dp28363 +g25267 +g27 +sg25268 +S'Candle Stand' +p28364 +sg25270 +S'Paul Ward' +p28365 +sa(dp28366 +g25267 +g27 +sg25268 +S'Pole Screen and Candlestand' +p28367 +sg25270 +S'Rolland Livingstone' +p28368 +sa(dp28369 +g25267 +g27 +sg25268 +S'Candle Stand' +p28370 +sg25270 +S'Paul Ward' +p28371 +sa(dp28372 +g25267 +g27 +sg25268 +S'Maple Candlestand' +p28373 +sg25270 +S'Vincent P. Rosel' +p28374 +sa(dp28375 +g25267 +g27 +sg25268 +S'Candlestand' +p28376 +sg25270 +S'Rosa Burger' +p28377 +sa(dp28378 +g25267 +g27 +sg25268 +S"Cobbler's Table with Candle Stand" +p28379 +sg25270 +S'Ella Josephine Sterling' +p28380 +sa(dp28381 +g25267 +g27 +sg25268 +S'Cellaret' +p28382 +sg25270 +S'Artist Information (' +p28383 +sa(dp28384 +g25267 +g27 +sg25268 +S'Cellarette' +p28385 +sg25270 +S'Artist Information (' +p28386 +sa(dp28387 +g25267 +g27 +sg25268 +S'Cellaret' +p28388 +sg25270 +S'Donald Harding' +p28389 +sa(dp28390 +g25267 +S'Open chairs were more widely used in America than the solid wainscot chair.\r\n Carver and Brewster chairs, named after seventeenth-century Massachusetts governors,\r\n were two popular types of open-back chairs. The Carver armchair, seen here, has\r\n a characteristic seat back consisting of a single row of three turned spindles\r\n set between horizontal cross rails. The Brewster chair was more complicated, having\r\n tiers of turned spindles on the back, and, frequently, under the seat rails as\r\n well.\n ' +p28391 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002c2.jpg' +p28392 +sg25268 +S'Carver Armchair' +p28393 +sg25270 +S'Anne Ger' +p28394 +sa(dp28395 +g25267 +g27 +sg25268 +S'Chair' +p28396 +sg25270 +S'Isadore Goldberg' +p28397 +sa(dp28398 +g25267 +g27 +sg25268 +S'Carver Armchair' +p28399 +sg25270 +S'Charles Squires' +p28400 +sa(dp28401 +g25267 +g27 +sg25268 +S'Carver Armchair' +p28402 +sg25270 +S'M. Rosenshield-von-Paulin' +p28403 +sa(dp28404 +g25267 +g27 +sg25268 +S'Carved Chair' +p28405 +sg25270 +S'Joseph Sudek' +p28406 +sa(dp28407 +g25267 +g27 +sg25268 +S'Jacobean Chair-table' +p28408 +sg25270 +S'William Sanders' +p28409 +sa(dp28410 +g25267 +g27 +sg25268 +S'Chair' +p28411 +sg25270 +S'M. Rosenshield-von-Paulin' +p28412 +sa(dp28413 +g25267 +g27 +sg25268 +S'Chair' +p28414 +sg25270 +S'Thomas J. Eliot' +p28415 +sa(dp28416 +g25267 +g27 +sg25268 +S'Side Chair' +p28417 +sg25270 +S'Lawrence Phillips' +p28418 +sa(dp28419 +g25267 +g27 +sg25268 +S'Side Chair' +p28420 +sg25270 +S'Lawrence Phillips' +p28421 +sa(dp28422 +g25267 +g27 +sg25268 +S'Side Chair, with Cane Back and Seat' +p28423 +sg25270 +S'Nicholas Gorid' +p28424 +sa(dp28425 +g25267 +g27 +sg25268 +S'Side Chair' +p28426 +sg25270 +S'Nicholas Gorid' +p28427 +sa(dp28428 +g25267 +g27 +sg25268 +S'Side Chair' +p28429 +sg25270 +S'American 20th Century' +p28430 +sa(dp28431 +g25267 +g27 +sg25268 +S'Side Chair' +p28432 +sg25270 +S'Nicholas Gorid' +p28433 +sa(dp28434 +g25267 +g27 +sg25268 +S'Side Chair' +p28435 +sg25270 +S'Frank Wenger' +p28436 +sa(dp28437 +g25267 +g27 +sg25268 +S'Armchair' +p28438 +sg25270 +S'American 20th Century' +p28439 +sa(dp28440 +g25267 +g27 +sg25268 +S'Armchair' +p28441 +sg25270 +S'Agnes Karlin' +p28442 +sa(dp28443 +g25267 +g27 +sg25268 +S'Drawing of a Chair' +p28444 +sg25270 +S'American 20th Century' +p28445 +sa(dp28446 +g25267 +g27 +sg25268 +S'Armchair' +p28447 +sg25270 +S'Nicholas Gorid' +p28448 +sa(dp28449 +g25267 +g27 +sg25268 +S'Drawing of Chair' +p28450 +sg25270 +S'Nicholas Gorid' +p28451 +sa(dp28452 +g25267 +g27 +sg25268 +S'Side Chair' +p28453 +sg25270 +S'M. Rosenshield-von-Paulin' +p28454 +sa(dp28455 +g25267 +g27 +sg25268 +S'Banister Back Side Chair' +p28456 +sg25270 +S'Michael Riccitelli' +p28457 +sa(dp28458 +g25267 +g27 +sg25268 +S'Side Chair' +p28459 +sg25270 +S'Bernard Gussow' +p28460 +sa(dp28461 +g25267 +g27 +sg25268 +S'Banister Back Chair' +p28462 +sg25270 +S'Henry Murphy' +p28463 +sa(dp28464 +g25273 +S'Widener Collection' +p28465 +sg25267 +g27 +sg25275 +S'\n' +p28466 +sg25268 +S'Cushion Cover (November)' +p28467 +sg25270 +S'German 17th Century' +p28468 +sa(dp28469 +g25267 +g27 +sg25268 +S'Banister-back Armchair' +p28470 +sg25270 +S'M. Rosenshield-von-Paulin' +p28471 +sa(dp28472 +g25267 +g27 +sg25268 +S'Side Chair' +p28473 +sg25270 +S'Florence Choate' +p28474 +sa(dp28475 +g25267 +g27 +sg25268 +S'Armchair' +p28476 +sg25270 +S'Simon Weiss' +p28477 +sa(dp28478 +g25267 +g27 +sg25268 +S'Walnut Armchair' +p28479 +sg25270 +S'Simon Weiss' +p28480 +sa(dp28481 +g25267 +g27 +sg25268 +S'Armchair' +p28482 +sg25270 +S'Carl Weiss' +p28483 +sa(dp28484 +g25267 +g27 +sg25268 +S'Armchair' +p28485 +sg25270 +S'M. Rosenshield-von-Paulin' +p28486 +sa(dp28487 +g25267 +g27 +sg25268 +S'Side Chair' +p28488 +sg25270 +S'Joseph Rothenberg' +p28489 +sa(dp28490 +g25267 +g27 +sg25268 +S'Side Chair' +p28491 +sg25270 +S'Jack Bochner' +p28492 +sa(dp28493 +g25267 +g27 +sg25268 +S'Side Chair (one of pair)' +p28494 +sg25270 +S'Harold Smith' +p28495 +sa(dp28496 +g25267 +g27 +sg25268 +S'American Chair with Turkey Work' +p28497 +sg25270 +S'Victor F. Muollo' +p28498 +sa(dp28499 +g25267 +g27 +sg25268 +S'Side Chair' +p28500 +sg25270 +S'Gilbert Sackerman' +p28501 +sa(dp28502 +g25267 +g27 +sg25268 +S'Baluster Back Chair' +p28503 +sg25270 +S'Gerald Bernhardt' +p28504 +sa(dp28505 +g25267 +g27 +sg25268 +S'Heart and Crown Chair' +p28506 +sg25270 +S'Howard Weld' +p28507 +sa(dp28508 +g25267 +g27 +sg25268 +S'High Back Chair' +p28509 +sg25270 +S'Artist Information (' +p28510 +sa(dp28511 +g25267 +g27 +sg25268 +S"Shoemaker's Bench" +p28512 +sg25270 +S'Irving I. Smith' +p28513 +sa(dp28514 +g25267 +g27 +sg25268 +S'School Seat' +p28515 +sg25270 +S'Annie B. Johnston' +p28516 +sa(dp28517 +g25267 +g27 +sg25268 +S'Combination Desk and Bookcase' +p28518 +sg25270 +S'Ray Price' +p28519 +sa(dp28520 +g25267 +g27 +sg25268 +S'Carved Chair' +p28521 +sg25270 +S'Joseph Sudek' +p28522 +sa(dp28523 +g25267 +g27 +sg25268 +S'Kas' +p28524 +sg25270 +S'David Dorfman' +p28525 +sa(dp28526 +g25267 +g27 +sg25268 +S'Ladder Back Chair' +p28527 +sg25270 +S'Roger Deats' +p28528 +sa(dp28529 +g25267 +g27 +sg25268 +S'Chair-Round-A-Bout' +p28530 +sg25270 +S'J. Howard Iams' +p28531 +sa(dp28532 +g25267 +g27 +sg25268 +S'Side Chair' +p28533 +sg25270 +S'B. Holst-Grubbe' +p28534 +sa(dp28535 +g25267 +g27 +sg25268 +S'Armchair' +p28536 +sg25270 +S'Margaret Knapp' +p28537 +sa(dp28538 +g25267 +g27 +sg25268 +S'Ladder Back Chair' +p28539 +sg25270 +S'American 20th Century' +p28540 +sa(dp28541 +g25267 +g27 +sg25268 +S'Chair' +p28542 +sg25270 +S'B. Holst-Grubbe' +p28543 +sa(dp28544 +g25267 +g27 +sg25268 +S'Armchair' +p28545 +sg25270 +S'Frank Wenger' +p28546 +sa(dp28547 +g25267 +S'Slat-back chairs were popular in American houses during both the eighteenth and\r\n nineteenth centuries. The horizontal curved back splats were more comfortable than\r\n the rigidly vertical spindles of Carver and Brewster chairs. Slat-back chairs display\r\n turned construction except for the slats, which were carved as solid curved forms\r\n set between turned uprights to form the seat back. The shape of the slat often\r\n distinguishes the region in which the chair was made. New England slats were generally\r\n cut straight on the lower edge and curved or shaped on the upper, as in this example.\n ' +p28548 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002c3.jpg' +p28549 +sg25268 +S'Armchair' +p28550 +sg25270 +S'Isadore Goldberg' +p28551 +sa(dp28552 +g25267 +g27 +sg25268 +S'Corner Chair' +p28553 +sg25270 +S'Rolland Livingstone' +p28554 +sa(dp28555 +g25267 +g27 +sg25268 +S'Cane Bottom Chair' +p28556 +sg25270 +S'Laurette Gauthier' +p28557 +sa(dp28558 +g25267 +g27 +sg25268 +S'Ladderback Chair' +p28559 +sg25270 +S'Alfred Walbeck' +p28560 +sa(dp28561 +g25267 +g27 +sg25268 +S'Ladderback Chair' +p28562 +sg25270 +S'Gerald Bernhardt' +p28563 +sa(dp28564 +g25267 +g27 +sg25268 +S'Ladderback Chair' +p28565 +sg25270 +S'Gerald Bernhardt' +p28566 +sa(dp28567 +g25267 +g27 +sg25268 +S'Armchair' +p28568 +sg25270 +S'Frank Wenger' +p28569 +sa(dp28570 +g25267 +g27 +sg25268 +S'Armchair' +p28571 +sg25270 +S'Frank Wenger' +p28572 +sa(dp28573 +g25267 +g27 +sg25268 +S'Side Chair' +p28574 +sg25270 +S'Ruth Bialostosky' +p28575 +sa(dp28576 +g25267 +g27 +sg25268 +S'Side Chair' +p28577 +sg25270 +S'B. Holst-Grubbe' +p28578 +sa(dp28579 +g25267 +g27 +sg25268 +S'Straw Bottom Chair' +p28580 +sg25270 +S'George Nelson' +p28581 +sa(dp28582 +g25267 +g27 +sg25268 +S'Ladderback Chair' +p28583 +sg25270 +S'Julie C. Brush' +p28584 +sa(dp28585 +g25267 +g27 +sg25268 +S'Chair' +p28586 +sg25270 +S'American 20th Century' +p28587 +sa(dp28588 +g25267 +g27 +sg25268 +S'Chair' +p28589 +sg25270 +S'Samuel O. Klein' +p28590 +sa(dp28591 +g25273 +S'Widener Collection' +p28592 +sg25267 +g27 +sg25275 +S'\n' +p28593 +sg25268 +S'Cushion Cover (September)' +p28594 +sg25270 +S'German 17th Century' +p28595 +sa(dp28596 +g25267 +g27 +sg25268 +S'Ladder Back Chair' +p28597 +sg25270 +S'Florence Grant Brown' +p28598 +sa(dp28599 +g25267 +g27 +sg25268 +S'Pennsylvania Ladder Back Chair' +p28600 +sg25270 +S'Samuel W. Ford' +p28601 +sa(dp28602 +g25267 +g27 +sg25268 +S'Wing Chair' +p28603 +sg25270 +S'Rolland Livingstone' +p28604 +sa(dp28605 +g25267 +g27 +sg25268 +S'Easy Chair' +p28606 +sg25270 +S'Arthur Johnson' +p28607 +sa(dp28608 +g25267 +g27 +sg25268 +S'Wing Chair' +p28609 +sg25270 +S'Ferdinand Cartier' +p28610 +sa(dp28611 +g25267 +g27 +sg25268 +S'Easy Chair' +p28612 +sg25270 +S'Florence Neal' +p28613 +sa(dp28614 +g25267 +g27 +sg25268 +S'Wing Chair' +p28615 +sg25270 +S'Michael Trekur' +p28616 +sa(dp28617 +g25267 +g27 +sg25268 +S'Wing Chair' +p28618 +sg25270 +S'M. Rosenshield-von-Paulin' +p28619 +sa(dp28620 +g25267 +g27 +sg25268 +S'Duncan Phyfe Chair' +p28621 +sg25270 +S'Walter W. Jennings' +p28622 +sa(dp28623 +g25267 +g27 +sg25268 +S'Chair, Wing, Turned Front Legs' +p28624 +sg25270 +S'George Loughridge' +p28625 +sa(dp28626 +g25267 +g27 +sg25268 +S'Windsor Chair' +p28627 +sg25270 +S'Ella Josephine Sterling' +p28628 +sa(dp28629 +g25267 +g27 +sg25268 +S'Windsor Chair' +p28630 +sg25270 +S'Florence Neal' +p28631 +sa(dp28632 +g25267 +g27 +sg25268 +S'Chair' +p28633 +sg25270 +S'Simon Weiss' +p28634 +sa(dp28635 +g25267 +g27 +sg25268 +S'Windsor Fan-back Chair' +p28636 +sg25270 +S'Vincent P. Rosel' +p28637 +sa(dp28638 +g25267 +g27 +sg25268 +S'Windsor Chair' +p28639 +sg25270 +S'Gerald Bernhardt' +p28640 +sa(dp28641 +g25267 +g27 +sg25268 +S'Windsor Chair' +p28642 +sg25270 +S'Ray Holden' +p28643 +sa(dp28644 +g25267 +g27 +sg25268 +S'Study Chair' +p28645 +sg25270 +S'Sydney Roberts' +p28646 +sa(dp28647 +g25267 +g27 +sg25268 +S'Windsor Desk Armchair' +p28648 +sg25270 +S'Eugene Croe' +p28649 +sa(dp28650 +g25267 +g27 +sg25268 +S"Child's Arm Chair" +p28651 +sg25270 +S'Mina Lowry' +p28652 +sa(dp28653 +g25267 +g27 +sg25268 +S"Harvard Student's Chair (Windsor)" +p28654 +sg25270 +S'Adele Brooks' +p28655 +sa(dp28656 +g25267 +g27 +sg25268 +S'Windsor Chair' +p28657 +sg25270 +S'Adele Brooks' +p28658 +sa(dp28659 +g25267 +g27 +sg25268 +S'Writing Arm Chair' +p28660 +sg25270 +S'Rolland Livingstone' +p28661 +sa(dp28662 +g25267 +g27 +sg25268 +S'Writing Armchair' +p28663 +sg25270 +S'Rolland Livingstone' +p28664 +sa(dp28665 +g25267 +g27 +sg25268 +S'Writing Armchair' +p28666 +sg25270 +S'Rolland Livingstone' +p28667 +sa(dp28668 +g25267 +g27 +sg25268 +S'Windsor Comb-back Chair' +p28669 +sg25270 +S'Ernest A. Towers, Jr.' +p28670 +sa(dp28671 +g25267 +g27 +sg25268 +S'Handmade Arm Chair' +p28672 +sg25270 +S'Wilbur M Rice' +p28673 +sa(dp28674 +g25267 +g27 +sg25268 +S'Windsor Armchair' +p28675 +sg25270 +S'Donald Harding' +p28676 +sa(dp28677 +g25267 +g27 +sg25268 +S'Low-back Stretcher Chair' +p28678 +sg25270 +S'Edward L. Loper' +p28679 +sa(dp28680 +g25267 +S'Although the development of American Windsor chairs postdates the Jacobean period,\r\n Windsor construction, like the early furniture, relies upon the use of spindles.\r\n Because the spindles of the seat back usually fan out from a curved seat, seating\r\n space is ample and comfortable. This may account for the continuing use of Windsor\r\n chairs throughout the eighteenth and nineteenth centuries. Windsor chairs originated\r\n in England, but American craftsmen developed a wide variety of types that left\r\n the English models far behind. Windsor chairs are named according to the style of\r\n their back; here is a hoop-back armchair, so-called because of its broadly curving\r\n back rail, which has been bent downward to meet the arms. The boldly splayed or\r\n angled legs and the delicate spindles set off the generous proportions and sweeping\r\n arcs of this chair.\n ' +p28681 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002c7.jpg' +p28682 +sg25268 +S'Windsor Chair' +p28683 +sg25270 +S'Louis Plogsted' +p28684 +sa(dp28685 +g25267 +g27 +sg25268 +S'Chair (Windsor)' +p28686 +sg25270 +S'American 20th Century' +p28687 +sa(dp28688 +g25267 +g27 +sg25268 +S'Corner Windsor Chair' +p28689 +sg25270 +S'Ernest A. Towers, Jr.' +p28690 +sa(dp28691 +g25267 +g27 +sg25268 +S'Windsor Bamboo-turned Chair' +p28692 +sg25270 +S'Edward L. Loper' +p28693 +sa(dp28694 +g25267 +g27 +sg25268 +S'Armchair' +p28695 +sg25270 +S'Clyde L. Cheney' +p28696 +sa(dp28697 +g25267 +g27 +sg25268 +S'"Bastard" Windsor Chair' +p28698 +sg25270 +S'Magnus S. Fossum' +p28699 +sa(dp28700 +g25267 +g27 +sg25268 +S'Windsor Chair' +p28701 +sg25270 +S'Dana Bartlett' +p28702 +sa(dp28703 +g25267 +g27 +sg25268 +S'Chair' +p28704 +sg25270 +S'Simon Weiss' +p28705 +sa(dp28706 +g25267 +g27 +sg25268 +S'Windsor Chair' +p28707 +sg25270 +S'Eugene Croe' +p28708 +sa(dp28709 +g25267 +g27 +sg25268 +S'Windsor Chair' +p28710 +sg25270 +S'Ralph Russell' +p28711 +sa(dp28712 +g25267 +g27 +sg25268 +S'Corner Chair' +p28713 +sg25270 +S'Lorenz Rothkranz' +p28714 +sa(dp28715 +g25267 +g27 +sg25268 +S'Corner chair' +p28716 +sg25270 +S'Lorenz Rothkranz' +p28717 +sa(dp28718 +g25273 +S'Widener Collection' +p28719 +sg25267 +g27 +sg25275 +S'\n' +p28720 +sg25268 +S'Cushion Cover (October)' +p28721 +sg25270 +S'German 17th Century' +p28722 +sa(dp28723 +g25267 +g27 +sg25268 +S'Side Chair' +p28724 +sg25270 +S'Harry Eisman' +p28725 +sa(dp28726 +g25267 +g27 +sg25268 +S'Side Chair' +p28727 +sg25270 +S'Arthur Johnson' +p28728 +sa(dp28729 +g25267 +g27 +sg25268 +S'Drawing for Chair' +p28730 +sg25270 +S'Jack Bochner' +p28731 +sa(dp28732 +g25267 +g27 +sg25268 +S'Chair' +p28733 +sg25270 +S'Francis Law Durand' +p28734 +sa(dp28735 +g25267 +g27 +sg25268 +S'Roundabout Chair' +p28736 +sg25270 +S'Arsen Maralian' +p28737 +sa(dp28738 +g25267 +g27 +sg25268 +S'Chair (Host)' +p28739 +sg25270 +S'Francis Law Durand' +p28740 +sa(dp28741 +g25267 +g27 +sg25268 +S'Chair' +p28742 +sg25270 +S'Francis Law Durand' +p28743 +sa(dp28744 +g25267 +g27 +sg25268 +S'Armchair' +p28745 +sg25270 +S'Florence Choate' +p28746 +sa(dp28747 +g25267 +g27 +sg25268 +S'Armchair' +p28748 +sg25270 +S'Robert Brigadier' +p28749 +sa(dp28750 +g25267 +g27 +sg25268 +S'Armchair' +p28751 +sg25270 +S'Tabea Hosier' +p28752 +sa(dp28753 +g25267 +g27 +sg25268 +S'Armchair' +p28754 +sg25270 +S'Louis Annino' +p28755 +sa(dp28756 +g25267 +g27 +sg25268 +S'Roundabout Chair' +p28757 +sg25270 +S'Harry Eisman' +p28758 +sa(dp28759 +g25267 +g27 +sg25268 +S'Armchair' +p28760 +sg25270 +S'Charles Squires' +p28761 +sa(dp28762 +g25267 +S'Queen Anne chairs are characterized by graceful curving lines. A distinctive\r\n feature is the solid back splat, shaped like a vase or violin. The splat in this \r\n chair rises from the seat to the center of the curving top rail, where it ends \r\n in n a carved shell. The front legs have the cabriole shape and are ornamented \r\n with carved shells at the knee; the back legs are plain and round—a common feature. \r\n The uprights of the seat back follow a gentle S-curve, bending inward at the \r\n base and outward toward the top. The curve of the top continues from the central \r\n shell into the curve of the uprights. Unlike typical Queen Anne furniture, this \r\n chair has the ball and claw feet which were a hallmark of later eighteenth-century \r\n pieces; their presence here marks a transition to the Chippendale style which \r\n was popular in America after 1750.\n ' +p28763 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000370.jpg' +p28764 +sg25268 +S'Side Chair' +p28765 +sg25270 +S'Charles Squires' +p28766 +sa(dp28767 +g25267 +g27 +sg25268 +S'Side Chair' +p28768 +sg25270 +S'Charles Squires' +p28769 +sa(dp28770 +g25267 +g27 +sg25268 +S'Walnut Side Chair' +p28771 +sg25270 +S'Michael Trekur' +p28772 +sa(dp28773 +g25267 +g27 +sg25268 +S'Side Chair' +p28774 +sg25270 +S'Henry Granet' +p28775 +sa(dp28776 +g25267 +g27 +sg25268 +S'Side Chair' +p28777 +sg25270 +S'Henry Granet' +p28778 +sa(dp28779 +g25267 +g27 +sg25268 +S'Chair' +p28780 +sg25270 +S'Arsen Maralian' +p28781 +sa(dp28782 +g25267 +g27 +sg25268 +S'Chair' +p28783 +sg25270 +S'Arsen Maralian' +p28784 +sa(dp28785 +g25267 +g27 +sg25268 +S'Side Chair' +p28786 +sg25270 +S'Louis Annino' +p28787 +sa(dp28788 +g25267 +g27 +sg25268 +S'Side Chair' +p28789 +sg25270 +S'Lawrence Phillips' +p28790 +sa(dp28791 +g25267 +g27 +sg25268 +S'Sheraton Chair' +p28792 +sg25270 +S'John Price' +p28793 +sa(dp28794 +g25267 +g27 +sg25268 +S'Chair for Bliss House' +p28795 +sg25270 +S'Arthur Johnson' +p28796 +sa(dp28797 +g25267 +g27 +sg25268 +S'Armchair' +p28798 +sg25270 +S'Harry Eisman' +p28799 +sa(dp28800 +g25267 +g27 +sg25268 +S'Queen Anne Chair' +p28801 +sg25270 +S'Ralph Morton' +p28802 +sa(dp28803 +g25267 +g27 +sg25268 +S'Queen Anne Side Chair' +p28804 +sg25270 +S'Alvin M. Gully' +p28805 +sa(dp28806 +g25267 +g27 +sg25268 +S'Chair' +p28807 +sg25270 +S'Regina Henderer' +p28808 +sa(dp28809 +g25267 +g27 +sg25268 +S'Side Chair (one of a pair)' +p28810 +sg25270 +S'Francisco Alvarez' +p28811 +sa(dp28812 +g25267 +g27 +sg25268 +S'Chair' +p28813 +sg25270 +S'John Sullivan' +p28814 +sa(dp28815 +g25267 +g27 +sg25268 +S'Armchair' +p28816 +sg25270 +S'Virginia Kennady' +p28817 +sa(dp28818 +g25267 +g27 +sg25268 +S'Chair' +p28819 +sg25270 +S'Samuel Fineman' +p28820 +sa(dp28821 +g25267 +g27 +sg25268 +S'Salem Chair' +p28822 +sg25270 +S'William Kieckhofel' +p28823 +sa(dp28824 +g25267 +g27 +sg25268 +S'Chair' +p28825 +sg25270 +S'Edward L. Loper' +p28826 +sa(dp28827 +g25267 +g27 +sg25268 +S'Side Chair' +p28828 +sg25270 +S'Mario De Ferrante' +p28829 +sa(dp28830 +g25267 +g27 +sg25268 +S'Chair' +p28831 +sg25270 +S'George Nelson' +p28832 +sa(dp28833 +g25267 +g27 +sg25268 +S'Side Chair' +p28834 +sg25270 +S'Isidore Sovensky' +p28835 +sa(dp28836 +g25267 +g27 +sg25268 +S'Side Chair' +p28837 +sg25270 +S'M. Rosenshield-von-Paulin' +p28838 +sa(dp28839 +g25267 +g27 +sg25268 +S'Side Chair' +p28840 +sg25270 +S'M. Rosenshield-von-Paulin' +p28841 +sa(dp28842 +g25267 +g27 +sg25268 +S'Side Chair (one of a pair)' +p28843 +sg25270 +S'Ruth Bialostosky' +p28844 +sa(dp28845 +g25273 +S'Widener Collection' +p28846 +sg25267 +g27 +sg25275 +S'\n' +p28847 +sg25268 +S'Cushion Cover (July)' +p28848 +sg25270 +S'German 17th Century' +p28849 +sa(dp28850 +g25267 +g27 +sg25268 +S'Side Chair' +p28851 +sg25270 +S'Hans Westendorff' +p28852 +sa(dp28853 +g25267 +g27 +sg25268 +S'Side Chair' +p28854 +sg25270 +S'Francis Law Durand' +p28855 +sa(dp28856 +g25267 +g27 +sg25268 +S'Inlaid Chippendale Chair Panel' +p28857 +sg25270 +S'Ralph Morton' +p28858 +sa(dp28859 +g25267 +g27 +sg25268 +S'Chair' +p28860 +sg25270 +S'Michael Riccitelli' +p28861 +sa(dp28862 +g25267 +g27 +sg25268 +S'None Recorded' +p28863 +sg25270 +S'American 20th Century' +p28864 +sa(dp28865 +g25267 +g27 +sg25268 +S'Chippendale Side Chair' +p28866 +sg25270 +S'John Garay' +p28867 +sa(dp28868 +g25267 +g27 +sg25268 +S'Chair' +p28869 +sg25270 +S'Francis Law Durand' +p28870 +sa(dp28871 +g25267 +g27 +sg25268 +S'Chippendale Mahogany Side Chair' +p28872 +sg25270 +S'Arthur Johnson' +p28873 +sa(dp28874 +g25267 +g27 +sg25268 +S'Chippendale Chair' +p28875 +sg25270 +S'Edward A. Darby' +p28876 +sa(dp28877 +g25267 +g27 +sg25268 +S'Chair' +p28878 +sg25270 +S'Ruth Bialostosky' +p28879 +sa(dp28880 +g25267 +g27 +sg25268 +S'Chair' +p28881 +sg25270 +S'Ruth Bialostosky' +p28882 +sa(dp28883 +g25267 +g27 +sg25268 +S'Side Chair' +p28884 +sg25270 +S'Ernest Busenbark' +p28885 +sa(dp28886 +g25267 +g27 +sg25268 +S'Chair' +p28887 +sg25270 +S'Suzanne Roy' +p28888 +sa(dp28889 +g25267 +g27 +sg25268 +S'Chair' +p28890 +sg25270 +S'John Garay' +p28891 +sa(dp28892 +g25267 +g27 +sg25268 +S'Chair' +p28893 +sg25270 +S'Henry Granet' +p28894 +sa(dp28895 +g25267 +g27 +sg25268 +S'None Given' +p28896 +sg25270 +S'American 20th Century' +p28897 +sa(dp28898 +g25267 +g27 +sg25268 +S'Armchair' +p28899 +sg25270 +S'Edward L. Loper' +p28900 +sa(dp28901 +g25267 +g27 +sg25268 +S'Armchair' +p28902 +sg25270 +S'M. Rosenshield-von-Paulin' +p28903 +sa(dp28904 +g25267 +g27 +sg25268 +S'Roundabout Chair' +p28905 +sg25270 +S'Ruth Bialostosky' +p28906 +sa(dp28907 +g25267 +g27 +sg25268 +S'Roundabout Chair' +p28908 +sg25270 +S'Harold Smith' +p28909 +sa(dp28910 +g25267 +g27 +sg25268 +S'Side Chair' +p28911 +sg25270 +S'Bernard Krieger' +p28912 +sa(dp28913 +g25267 +g27 +sg25268 +S'Side Chair' +p28914 +sg25270 +S'Bernard Krieger' +p28915 +sa(dp28916 +g25267 +g27 +sg25268 +S'Armchair' +p28917 +sg25270 +S'Rolland Livingstone' +p28918 +sa(dp28919 +g25267 +g27 +sg25268 +S'Armchair' +p28920 +sg25270 +S'Rolland Livingstone' +p28921 +sa(dp28922 +g25267 +g27 +sg25268 +S'Armchair' +p28923 +sg25270 +S'Lorenz Rothkranz' +p28924 +sa(dp28925 +g25267 +g27 +sg25268 +S'Armchair' +p28926 +sg25270 +S'Lorenz Rothkranz' +p28927 +sa(dp28928 +g25267 +g27 +sg25268 +S'Side Chair' +p28929 +sg25270 +S'Nicholas Gorid' +p28930 +sa(dp28931 +g25267 +g27 +sg25268 +S'Rush Bottom Chair' +p28932 +sg25270 +S'Artist Information (' +p28933 +sa(dp28934 +g25267 +g27 +sg25268 +S'Dining Room Chair' +p28935 +sg25270 +S'Ralph Morton' +p28936 +sa(dp28937 +g25267 +g27 +sg25268 +S'Ladderback Chair' +p28938 +sg25270 +S'Albert Ryder' +p28939 +sa(dp28940 +g25267 +g27 +sg25268 +S'Empire Chair (American)' +p28941 +sg25270 +S'Genevieve Sherlock' +p28942 +sa(dp28943 +g25267 +g27 +sg25268 +S'Kitchen Chair' +p28944 +sg25270 +S'Rosa Burger' +p28945 +sa(dp28946 +g25267 +g27 +sg25268 +S'Kitchen Chair' +p28947 +sg25270 +S'Rosa Burger' +p28948 +sa(dp28949 +g25267 +g27 +sg25268 +S'Maple Side Chair' +p28950 +sg25270 +S'David S. De Vault' +p28951 +sa(dp28952 +g25267 +g27 +sg25268 +S'Rush Bottom Chair' +p28953 +sg25270 +S'Samuel O. Klein' +p28954 +sa(dp28955 +g25267 +g27 +sg25268 +S'Side Chair' +p28956 +sg25270 +S'Charles Henning' +p28957 +sa(dp28958 +g25267 +g27 +sg25268 +S'Side Chair' +p28959 +sg25270 +S'Rolland Livingstone' +p28960 +sa(dp28961 +g25267 +g27 +sg25268 +S'Side Chair' +p28962 +sg25270 +S'Rolland Livingstone' +p28963 +sa(dp28964 +g25267 +g27 +sg25268 +S'Armchair' +p28965 +sg25270 +S'Rolland Livingstone' +p28966 +sa(dp28967 +g25267 +g27 +sg25268 +S'Armchair' +p28968 +sg25270 +S'Rolland Livingstone' +p28969 +sa(dp28970 +g25273 +S'Widener Collection' +p28971 +sg25267 +g27 +sg25275 +S'\n' +p28972 +sg25268 +S'Cushion Cover (December)' +p28973 +sg25270 +S'German 17th Century' +p28974 +sa(dp28975 +g25267 +g27 +sg25268 +S'Armchair' +p28976 +sg25270 +S'Lawrence Phillips' +p28977 +sa(dp28978 +g25267 +g27 +sg25268 +S'Chair' +p28979 +sg25270 +S'Edna C. Rex' +p28980 +sa(dp28981 +g25267 +S'An interest in classical culture was stimulated by the discovery of the ancient\r\n Roman cities of Herculaneum in 1738 and Pompeii in 1748. Robert Adam, a Scottish\r\n architect who had visited the ancient Roman sites before he settled in England\r\n in 1762, helped change the fashion in interior decoration. Adam turned to antiquity\r\n for motifs, whereas the motifs of the earlier eighteenth century were inspired\r\n by Renaissance and baroque design. A restrained neoclassicism replaced the exuberant\r\n Chippendale forms. \n ' +p28982 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002ce.jpg' +p28983 +sg25268 +S'Side Chair' +p28984 +sg25270 +S'Louis Annino' +p28985 +sa(dp28986 +g25267 +g27 +sg25268 +S'Hepplewhite Chair' +p28987 +sg25270 +S'Samuel Fineman' +p28988 +sa(dp28989 +g25267 +g27 +sg25268 +S'Hepplewhite Chair' +p28990 +sg25270 +S'Artist Information (' +p28991 +sa(dp28992 +g25267 +g27 +sg25268 +S'Side Chair (one of six)' +p28993 +sg25270 +S'Alfred Nason' +p28994 +sa(dp28995 +g25267 +g27 +sg25268 +S'Dining Chair' +p28996 +sg25270 +S'Artist Information (' +p28997 +sa(dp28998 +g25267 +g27 +sg25268 +S'Armchair' +p28999 +sg25270 +S'Ferdinand Cartier' +p29000 +sa(dp29001 +g25267 +g27 +sg25268 +S'Chair' +p29002 +sg25270 +S'American 20th Century' +p29003 +sa(dp29004 +g25267 +g27 +sg25268 +S'Side Chair' +p29005 +sg25270 +S'Florence Choate' +p29006 +sa(dp29007 +g25267 +g27 +sg25268 +S'Side Chair' +p29008 +sg25270 +S'Nicholas Gorid' +p29009 +sa(dp29010 +g25267 +g27 +sg25268 +S'Chair' +p29011 +sg25270 +S'Mina Lowry' +p29012 +sa(dp29013 +g25267 +S"While shield and heart-shaped chair backs are commonly associated with the Hepplewhite\r\n style, Sheraton chairs frequently feature a square back. Sheraton chair backs were\r\n carved in a variety of ornamental motifs including drapery swags, urns, pointed\r\n arches, colonettes, fans, and rosettes. This square-back New York side chair strongly\r\n resembles a plate from the 1794 edition of Sheraton's \n " +p29014 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002d2.jpg' +p29015 +sg25268 +S'Side Chair' +p29016 +sg25270 +S'Michael Trekur' +p29017 +sa(dp29018 +g25267 +g27 +sg25268 +S'Side Chair' +p29019 +sg25270 +S'Michael Trekur' +p29020 +sa(dp29021 +g25267 +g27 +sg25268 +S'Chair' +p29022 +sg25270 +S'M. Rosenshield-von-Paulin' +p29023 +sa(dp29024 +g25267 +g27 +sg25268 +S'Armchair' +p29025 +sg25270 +S'Nicholas Gorid' +p29026 +sa(dp29027 +g25267 +g27 +sg25268 +S'Armchair' +p29028 +sg25270 +S'Nicholas Gorid' +p29029 +sa(dp29030 +g25267 +g27 +sg25268 +S'Armchair' +p29031 +sg25270 +S'Nicholas Gorid' +p29032 +sa(dp29033 +g25267 +g27 +sg25268 +S'Side Chair' +p29034 +sg25270 +S'Paul Farkas' +p29035 +sa(dp29036 +g25267 +g27 +sg25268 +S'Armchair' +p29037 +sg25270 +S'Arthur Johnson' +p29038 +sa(dp29039 +g25267 +g27 +sg25268 +S'Armchair' +p29040 +sg25270 +S'Bernard Gussow' +p29041 +sa(dp29042 +g25267 +g27 +sg25268 +S'Side Chair' +p29043 +sg25270 +S'Ferdinand Cartier' +p29044 +sa(dp29045 +g25267 +g27 +sg25268 +S'Side Chair' +p29046 +sg25270 +S'Arthur Johnson' +p29047 +sa(dp29048 +g25267 +g27 +sg25268 +S'Side Chair' +p29049 +sg25270 +S'Mina Lowry' +p29050 +sa(dp29051 +g25267 +g27 +sg25268 +S'Side Chair' +p29052 +sg25270 +S'Bernard Gussow' +p29053 +sa(dp29054 +g25267 +g27 +sg25268 +S'Side Chair' +p29055 +sg25270 +S'American 20th Century' +p29056 +sa(dp29057 +g25267 +g27 +sg25268 +S'American Chair' +p29058 +sg25270 +S'Florence Neal' +p29059 +sa(dp29060 +g25267 +g27 +sg25268 +S'Chair' +p29061 +sg25270 +S'Rolland Livingstone' +p29062 +sa(dp29063 +g25267 +g27 +sg25268 +S'Chair' +p29064 +sg25270 +S'American 20th Century' +p29065 +sa(dp29066 +g25267 +g27 +sg25268 +S'Armchair' +p29067 +sg25270 +S'Ernest Busenbark' +p29068 +sa(dp29069 +g25267 +g27 +sg25268 +S'Armchair' +p29070 +sg25270 +S'Harold Smith' +p29071 +sa(dp29072 +g25267 +g27 +sg25268 +S'Armchair' +p29073 +sg25270 +S'Elizabeth Curtis' +p29074 +sa(dp29075 +g25267 +g27 +sg25268 +S'Side chair' +p29076 +sg25270 +S'George Loughridge' +p29077 +sa(dp29078 +g25267 +g27 +sg25268 +S'Chair' +p29079 +sg25270 +S'Henry Granet' +p29080 +sa(dp29081 +g25267 +g27 +sg25268 +S'Chair' +p29082 +sg25270 +S'Bernard Gussow' +p29083 +sa(dp29084 +g25267 +g27 +sg25268 +S'Armchair' +p29085 +sg25270 +S'American 20th Century' +p29086 +sa(dp29087 +g25267 +g27 +sg25268 +S'Armchair' +p29088 +sg25270 +S'Frank Wenger' +p29089 +sa(dp29090 +g25267 +g27 +sg25268 +S'Armchair' +p29091 +sg25270 +S'M. Rosenshield-von-Paulin' +p29092 +sa(dp29093 +g25267 +g27 +sg25268 +S'Chair' +p29094 +sg25270 +S'Ella Josephine Sterling' +p29095 +sa(dp29096 +g25267 +g27 +sg25268 +S'Side Chair' +p29097 +sg25270 +S'Ferdinand Cartier' +p29098 +sa(dp29099 +g25273 +S'overall: 232 x 198.5 cm (91 5/16 x 78 1/8 in.)' +p29100 +sg25267 +g27 +sg25275 +S'\nembroidered velvet: dyed silk warp and weft; spun silver-gilt, yellow silk, and linen thread; silver-gilt tinsel; silver-gilt sequins; paper; light blue taffeta' +p29101 +sg25268 +S'Velvet Table Cover' +p29102 +sg25270 +S'Italian 16th Century' +p29103 +sa(dp29104 +g25267 +g27 +sg25268 +S'Side Chair' +p29105 +sg25270 +S'Arthur Johnson' +p29106 +sa(dp29107 +g25267 +g27 +sg25268 +S'Side Chair' +p29108 +sg25270 +S'Robert Brigadier' +p29109 +sa(dp29110 +g25267 +S'After about 1810, Sheraton furniture became heavier than that of earlier years\r\n and gradually developed into what is called "Regency," a style named after the\r\n regency of George IV in England. The Regency style represented a second phase of\r\n classicism and was strongly influenced by the forms of ancient furniture rather\r\n than by decorative motifs alone. Furniture designed to reproduce ancient models\r\n was favored in America during the Regency period, which lasted through the 1820s,\r\n and reflected fashions in both England and France. This Regency-style chair was\r\n made by Duncan Phyfe, the prolific New York cabinetmaker of the nineteenth century.\r\n It represents his second period of furniture design based upon classical models\r\n and is distinguished from his earlier work in which Sheraton\'s influence prevailed.\r\n The design of this chair is based on the "klismos," an ancient Greek chair form with\r\n incurved legs and with the seat rail and back in an unbroken curve. Phyfe introduced\r\n this form into American furniture design.\n ' +p29111 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002f3.jpg' +p29112 +sg25268 +S'Side Chair' +p29113 +sg25270 +S'Frank Wenger' +p29114 +sa(dp29115 +g25267 +g27 +sg25268 +S'Side Chair' +p29116 +sg25270 +S'Nicholas Gorid' +p29117 +sa(dp29118 +g25267 +g27 +sg25268 +S'Walnut Carved Back Chair' +p29119 +sg25270 +S'Robert Stewart' +p29120 +sa(dp29121 +g25267 +g27 +sg25268 +S'Side Chair' +p29122 +sg25270 +S'Ferdinand Cartier' +p29123 +sa(dp29124 +g25267 +g27 +sg25268 +S'Side Chair' +p29125 +sg25270 +S'Ferdinand Cartier' +p29126 +sa(dp29127 +g25267 +g27 +sg25268 +S'Side Chair' +p29128 +sg25270 +S'Francisco Alvarez' +p29129 +sa(dp29130 +g25267 +g27 +sg25268 +S'Side Chair' +p29131 +sg25270 +S'Mattie P. Goodman' +p29132 +sa(dp29133 +g25267 +g27 +sg25268 +S'Chair' +p29134 +sg25270 +S'Helen Bronson' +p29135 +sa(dp29136 +g25268 +S'Interior of the Pantheon, Rome' +p29137 +sg25270 +S'Giovanni Paolo Panini' +p29138 +sg25273 +S'oil on canvas' +p29139 +sg25275 +S'c. 1734' +p29140 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000638.jpg' +p29141 +sg25267 +S"In Panini's day, as in our own, the Pantheon was one of the great tourist attractions of Rome. Built under Hadrian in the 2nd century, this monumental domed temple has survived intact, owing to its consecration as a Christian church—Santa Maria Rotunda—in AD 609. Panini's depiction is populated with foreign visitors and a lively mix of Romans from all social strata who congregate in the Pantheon to pray, to chat, and to admire the wondrous architecture.\n Trained in architecture and theatrical design, Panini manipulated the perspective to show a larger view of the interior than is actually possible from any single place. The viewpoint is deep within the building, facing the entrance. The portals open to the colossal columns of the porch and a glimpse of the obelisk in the piazza before the church. Through the oculus in the center of the dome, Panini revealed the bright blue sky flecked with clouds.\n As Canaletto was to Venice, so Panini was to Rome. Both artists documented with exacting skill and vibrancy the monuments of their cities and the daily comings and goings of the inhabitants. In this case, Panini depicted the classical landmark that inspired the design of the Rotunda in the National Gallery's West Building.\n " +p29142 +sa(dp29143 +g25273 +S'overall: 124.5 x 259.3 cm (49 x 102 1/16 in.)' +p29144 +sg25267 +g27 +sg25275 +S'\nvelvet: dyed silk warp and weft; trim: dyed silk, spun silver and silver-gilt yarn, silver tinsel; lining: dyed silk warp and weft' +p29145 +sg25268 +S'Velvet Gothic Cope' +p29146 +sg25270 +S'Italian 15th Century' +p29147 +sa(dp29148 +g25267 +g27 +sg25268 +S'Chair' +p29149 +sg25270 +S'Arthur Johnson' +p29150 +sa(dp29151 +g25267 +g27 +sg25268 +S'Chair' +p29152 +sg25270 +S'William Paul Childers' +p29153 +sa(dp29154 +g25267 +g27 +sg25268 +S'Mahogany chair' +p29155 +sg25270 +S'James M. Lawson' +p29156 +sa(dp29157 +g25267 +g27 +sg25268 +S'Chair (Samuel Chase)' +p29158 +sg25270 +S'James Fisher' +p29159 +sa(dp29160 +g25267 +g27 +sg25268 +S'Samuel Chase Chair' +p29161 +sg25270 +S'Samuel W. Ford' +p29162 +sa(dp29163 +g25267 +g27 +sg25268 +S'Chair (frame)' +p29164 +sg25270 +S'George C. Brown' +p29165 +sa(dp29166 +g25267 +g27 +sg25268 +S'Early Dayton Chair' +p29167 +sg25270 +S'Therkel Anderson' +p29168 +sa(dp29169 +g25267 +g27 +sg25268 +S'Side Chair' +p29170 +sg25270 +S'Herbert S. Frere' +p29171 +sa(dp29172 +g25267 +g27 +sg25268 +S'Chair' +p29173 +sg25270 +S'Henry Murphy' +p29174 +sa(dp29175 +g25267 +g27 +sg25268 +S'Empire Chair' +p29176 +sg25270 +S'Artist Information (' +p29177 +sa(dp29178 +g25268 +S'Polonaise Carpet' +p29179 +sg25270 +S'Isfahan 17th Century' +p29180 +sg25273 +S'silk pile and metal brocade on cotton warp and cotton and silk weft' +p29181 +sg25275 +S'first half 17th century' +p29182 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d55.jpg' +p29183 +sg25267 +g27 +sa(dp29184 +g25267 +g27 +sg25268 +S'Chair' +p29185 +sg25270 +S'Artist Information (' +p29186 +sa(dp29187 +g25267 +g27 +sg25268 +S'Rush Bottom Chair' +p29188 +sg25270 +S'Henry Meyers' +p29189 +sa(dp29190 +g25267 +g27 +sg25268 +S'Fiddle-back Chair' +p29191 +sg25270 +S'Edith Magnette' +p29192 +sa(dp29193 +g25267 +g27 +sg25268 +S'Fiddle-back Chair' +p29194 +sg25270 +S'Edith Magnette' +p29195 +sa(dp29196 +g25267 +g27 +sg25268 +S'Chair' +p29197 +sg25270 +S'Magnus S. Fossum' +p29198 +sa(dp29199 +g25267 +g27 +sg25268 +S'Side Chair' +p29200 +sg25270 +S'Frank Wenger' +p29201 +sa(dp29202 +g25267 +g27 +sg25268 +S'Chair' +p29203 +sg25270 +S'John Sullivan' +p29204 +sa(dp29205 +g25267 +g27 +sg25268 +S'Parlor Chair' +p29206 +sg25270 +S'LeRoy Griffith' +p29207 +sa(dp29208 +g25267 +g27 +sg25268 +S'Chair (painted)' +p29209 +sg25270 +S'Lillian Causey' +p29210 +sa(dp29211 +g25267 +g27 +sg25268 +S'Armchair' +p29212 +sg25270 +S'Elisabeth Fulda' +p29213 +sa(dp29214 +g25268 +S'Polonaise Rug' +p29215 +sg25270 +S'Isfahan 17th Century' +p29216 +sg25273 +S'silk pile with gold and silver brocade on cotton warp and cotton and silk weft' +p29217 +sg25275 +S'first half 17th century' +p29218 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d56.jpg' +p29219 +sg25267 +g27 +sa(dp29220 +g25267 +g27 +sg25268 +S'Hoopskirt chair' +p29221 +sg25270 +S'Kurt Melzer' +p29222 +sa(dp29223 +g25267 +g27 +sg25268 +S'Hoopskirt Chair' +p29224 +sg25270 +S'Kurt Melzer' +p29225 +sa(dp29226 +g25267 +g27 +sg25268 +S'Rosewood Chair' +p29227 +sg25270 +S'Rex F. Bush' +p29228 +sa(dp29229 +g25267 +g27 +sg25268 +S'Rosewood Chair' +p29230 +sg25270 +S'Rex F. Bush' +p29231 +sa(dp29232 +g25267 +g27 +sg25268 +S'Side Chair' +p29233 +sg25270 +S'Charles Garjian' +p29234 +sa(dp29235 +g25267 +g27 +sg25268 +S'Armchair' +p29236 +sg25270 +S'Charles Cullen' +p29237 +sa(dp29238 +g25267 +g27 +sg25268 +S'Side Chair (one of four)' +p29239 +sg25270 +S'Bernard Gussow' +p29240 +sa(dp29241 +g25267 +g27 +sg25268 +S'Balter Chair' +p29242 +sg25270 +S'Beverly Chichester' +p29243 +sa(dp29244 +g25267 +g27 +sg25268 +S'Armchair' +p29245 +sg25270 +S'Ernest Busenbark' +p29246 +sa(dp29247 +g25267 +g27 +sg25268 +S'Chair and Tapestry' +p29248 +sg25270 +S'Edith Olney' +p29249 +sa(dp29250 +g25268 +S'Scenic Animal Carpet' +p29251 +sg25270 +S'Northwest Indian 17th Century' +p29252 +sg25273 +S'overall: 416 x 191 cm (163 3/4 x 75 3/16 in.)' +p29253 +sg25275 +S'\nwool pile on cotton warp and cotton weft' +p29254 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d57.jpg' +p29255 +sg25267 +g27 +sa(dp29256 +g25267 +g27 +sg25268 +S'Armchair' +p29257 +sg25270 +S'Floyd R. Sharp' +p29258 +sa(dp29259 +g25267 +g27 +sg25268 +S'Armchair' +p29260 +sg25270 +S'Edna C. Rex' +p29261 +sa(dp29262 +g25267 +g27 +sg25268 +S'Armchair' +p29263 +sg25270 +S'Edward A. Darby' +p29264 +sa(dp29265 +g25267 +g27 +sg25268 +S'Chair' +p29266 +sg25270 +S'Florence Huston' +p29267 +sa(dp29268 +g25267 +g27 +sg25268 +S'Carved Side Chair' +p29269 +sg25270 +S'Robert Stewart' +p29270 +sa(dp29271 +g25267 +g27 +sg25268 +S'Chair' +p29272 +sg25270 +S'Frank Wenger' +p29273 +sa(dp29274 +g25267 +g27 +sg25268 +S'Chair' +p29275 +sg25270 +S'Jack Bochner' +p29276 +sa(dp29277 +g25267 +g27 +sg25268 +S'Chair' +p29278 +sg25270 +S'Jack Bochner' +p29279 +sa(dp29280 +g25267 +g27 +sg25268 +S'Chair' +p29281 +sg25270 +S'Marcus Moran' +p29282 +sa(dp29283 +g25267 +g27 +sg25268 +S'Side Chair' +p29284 +sg25270 +S'Edna C. Rex' +p29285 +sa(dp29286 +g25268 +S'Arabesque Band Carpet' +p29287 +sg25270 +S'Artist Information (' +p29288 +sg25273 +g27 +sg25275 +S'(artist)' +p29289 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d58.jpg' +p29290 +sg25267 +g27 +sa(dp29291 +g25267 +g27 +sg25268 +S'Side Chair' +p29292 +sg25270 +S'Edna C. Rex' +p29293 +sa(dp29294 +g25267 +g27 +sg25268 +S'Chair' +p29295 +sg25270 +S'Charles Goodwin' +p29296 +sa(dp29297 +g25267 +g27 +sg25268 +S'Chair (one of a pair)' +p29298 +sg25270 +S'Charles Cullen' +p29299 +sa(dp29300 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005ece.jpg' +p29301 +sg25268 +S'Window Chair (one of a pair)' +p29302 +sg25270 +S'Henry Blonkenfeld' +p29303 +sa(dp29304 +g25267 +g27 +sg25268 +S'Chair' +p29305 +sg25270 +S'Dorothea A. Farrington' +p29306 +sa(dp29307 +g25267 +g27 +sg25268 +S'Rush Bottom Chair' +p29308 +sg25270 +S'Dana Bartlett' +p29309 +sa(dp29310 +g25267 +g27 +sg25268 +S'Hitchcock Chair' +p29311 +sg25270 +S'David S. De Vault' +p29312 +sa(dp29313 +g25267 +g27 +sg25268 +S'Hitchcock Side Chair' +p29314 +sg25270 +S'David S. De Vault' +p29315 +sa(dp29316 +g25267 +g27 +sg25268 +S'Stencilled Chair - One of Set of Six' +p29317 +sg25270 +S'Lawrence Flynn' +p29318 +sa(dp29319 +g25267 +g27 +sg25268 +S'Hitchcock Chair' +p29320 +sg25270 +S'Cushman Parker' +p29321 +sa(dp29322 +g25268 +S'Medallion and Animal Carpet' +p29323 +sg25270 +S'Isfahan 17th Century' +p29324 +sg25273 +S'wool pile on silk warp and wool and cotton weft' +p29325 +sg25275 +S'c. 1600' +p29326 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d59.jpg' +p29327 +sg25267 +g27 +sa(dp29328 +g25267 +g27 +sg25268 +S'Chair' +p29329 +sg25270 +S'Lillian Causey' +p29330 +sa(dp29331 +g25267 +g27 +sg25268 +S'Rocking Chair' +p29332 +sg25270 +S'Artist Information (' +p29333 +sa(dp29334 +g25267 +g27 +sg25268 +S'Boston Rocker' +p29335 +sg25270 +S'Einar Heiberg' +p29336 +sa(dp29337 +g25267 +g27 +sg25268 +S'Hitchcock chair' +p29338 +sg25270 +S'Lawrence Flynn' +p29339 +sa(dp29340 +g25267 +g27 +sg25268 +S'Design on Back of Hitchcock Chair' +p29341 +sg25270 +S'Lawrence Flynn' +p29342 +sa(dp29343 +g25267 +g27 +sg25268 +S'Hitchcock Rocker' +p29344 +sg25270 +S'Lawrence Flynn' +p29345 +sa(dp29346 +g25267 +g27 +sg25268 +S'Boston Rocker' +p29347 +sg25270 +S'Genevieve Sherlock' +p29348 +sa(dp29349 +g25267 +g27 +sg25268 +S'Hitchcock Rocker' +p29350 +sg25270 +S'David S. De Vault' +p29351 +sa(dp29352 +g25267 +g27 +sg25268 +S'Rocker' +p29353 +sg25270 +S'George C. Brown' +p29354 +sa(dp29355 +g25267 +g27 +sg25268 +S'Boston Rocker' +p29356 +sg25270 +S'Genevieve Sherlock' +p29357 +sa(dp29358 +g25268 +S'Silk Medallion Rug' +p29359 +sg25270 +S'Kashan 16th Century' +p29360 +sg25273 +S'silk pile on silk warp and weft' +p29361 +sg25275 +S'late 16th century' +p29362 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d5a.jpg' +p29363 +sg25267 +g27 +sa(dp29364 +g25267 +g27 +sg25268 +S'Boston Rocker' +p29365 +sg25270 +S'Einar Heiberg' +p29366 +sa(dp29367 +g25267 +g27 +sg25268 +S'Chair' +p29368 +sg25270 +S'Howard Weld' +p29369 +sa(dp29370 +g25267 +g27 +sg25268 +S'Back of Hitchcock Chair' +p29371 +sg25270 +S'Lawrence Flynn' +p29372 +sa(dp29373 +g25267 +g27 +sg25268 +S'Hitchcock Chair Back' +p29374 +sg25270 +S'Lawrence Flynn' +p29375 +sa(dp29376 +g25267 +g27 +sg25268 +S'Detail of Hitchcock Chair' +p29377 +sg25270 +S'Natalie Thompson' +p29378 +sa(dp29379 +g25267 +g27 +sg25268 +S'Detail of Hitchcock Chair' +p29380 +sg25270 +S'Natalie Thompson' +p29381 +sa(dp29382 +g25267 +g27 +sg25268 +S'Chair (detail of Hitchcock)' +p29383 +sg25270 +S'Natalie Thompson' +p29384 +sa(dp29385 +g25267 +g27 +sg25268 +S'Detail of Hitchcock Chair' +p29386 +sg25270 +S'Natalie Thompson' +p29387 +sa(dp29388 +g25267 +g27 +sg25268 +S'Detail of Hitchcock Chair' +p29389 +sg25270 +S'Genevieve Sherlock' +p29390 +sa(dp29391 +g25267 +g27 +sg25268 +S'Hitchcock Chair' +p29392 +sg25270 +S'Genevieve Sherlock' +p29393 +sa(dp29394 +g25268 +S'Gourd-Shaped Vase' +p29395 +sg25270 +S'Chinese Qing Dynasty' +p29396 +sg25273 +S'overall: 14.2 x 6.2 cm (5 9/16 x 2 7/16 in.)' +p29397 +sg25275 +S'\nporcelain with pale blue glaze' +p29398 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d5b.jpg' +p29399 +sg25267 +g27 +sa(dp29400 +g25267 +g27 +sg25268 +S'Hitchcock Chair' +p29401 +sg25270 +S'Genevieve Sherlock' +p29402 +sa(dp29403 +g25267 +g27 +sg25268 +S'Hitchcock Chair' +p29404 +sg25270 +S'Genevieve Sherlock' +p29405 +sa(dp29406 +g25267 +g27 +sg25268 +S'Hitchcock Chair' +p29407 +sg25270 +S'Genevieve Sherlock' +p29408 +sa(dp29409 +g25267 +g27 +sg25268 +S'Hitchcock Chair' +p29410 +sg25270 +S'Genevieve Sherlock' +p29411 +sa(dp29412 +g25267 +g27 +sg25268 +S'Hitchcock Chair' +p29413 +sg25270 +S'Genevieve Sherlock' +p29414 +sa(dp29415 +g25267 +g27 +sg25268 +S'Hitchcock Chair' +p29416 +sg25270 +S'Harry Jennings' +p29417 +sa(dp29418 +g25267 +g27 +sg25268 +S'Hitchcock Chair' +p29419 +sg25270 +S'Genevieve Sherlock' +p29420 +sa(dp29421 +g25267 +g27 +sg25268 +S'Chair with Carved Grape Leaf Decoration and Gothic Top' +p29422 +sg25270 +S'Robert Stewart' +p29423 +sa(dp29424 +g25267 +g27 +sg25268 +S'Three Legged Chair' +p29425 +sg25270 +S'Francis Jennings' +p29426 +sa(dp29427 +g25267 +g27 +sg25268 +S'Side Chair' +p29428 +sg25270 +S'Joseph Rothenberg' +p29429 +sa(dp29430 +g25268 +S'Gourd-Shaped Vase' +p29431 +sg25270 +S'Chinese Qing Dynasty' +p29432 +sg25273 +S'overall: 13.9 x 6.1 cm (5 1/2 x 2 3/8 in.)' +p29433 +sg25275 +S'\nporcelain with pale blue glaze' +p29434 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d5c.jpg' +p29435 +sg25267 +g27 +sa(dp29436 +g25267 +g27 +sg25268 +S'Cathedral Chair' +p29437 +sg25270 +S'Artist Information (' +p29438 +sa(dp29439 +g25267 +g27 +sg25268 +S'Handcarved Side Chair' +p29440 +sg25270 +S'Cornelius Christoffels' +p29441 +sa(dp29442 +g25267 +g27 +sg25268 +S'Windsor Chair' +p29443 +sg25270 +S'Dana Bartlett' +p29444 +sa(dp29445 +g25267 +g27 +sg25268 +S'Chair' +p29446 +sg25270 +S'Archie Thompson' +p29447 +sa(dp29448 +g25267 +g27 +sg25268 +S'Comb Back Chair' +p29449 +sg25270 +S'Claude Marshall' +p29450 +sa(dp29451 +g25267 +g27 +sg25268 +S'Ladder Back Chair' +p29452 +sg25270 +S'John Cutting' +p29453 +sa(dp29454 +g25267 +g27 +sg25268 +S'Kitchen Chair' +p29455 +sg25270 +S'Edward Bashaw' +p29456 +sa(dp29457 +g25267 +g27 +sg25268 +S'Chair' +p29458 +sg25270 +S'Wellington Blewett' +p29459 +sa(dp29460 +g25267 +g27 +sg25268 +S'Chair' +p29461 +sg25270 +S'John Sullivan' +p29462 +sa(dp29463 +g25267 +g27 +sg25268 +S'Chair' +p29464 +sg25270 +S'Harry Mann Waddell' +p29465 +sa(dp29466 +g25268 +S'Water Pot' +p29467 +sg25270 +S'Chinese Qing Dynasty' +p29468 +sg25273 +S'overall: 7.4 x 10.4 cm (2 15/16 x 4 1/8 in.)' +p29469 +sg25275 +S'\nporcelain with pale blue glaze' +p29470 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d5e.jpg' +p29471 +sg25267 +g27 +sa(dp29472 +g25267 +g27 +sg25268 +S'Rocking Armchair' +p29473 +sg25270 +S'Georgine E. Mason' +p29474 +sa(dp29475 +g25267 +g27 +sg25268 +S'Chair' +p29476 +sg25270 +S'Ralph Morton' +p29477 +sa(dp29478 +g25267 +g27 +sg25268 +S'Boot-jack Chair' +p29479 +sg25270 +S'John Lang' +p29480 +sa(dp29481 +g25267 +g27 +sg25268 +S'Chair' +p29482 +sg25270 +S'Lillian Causey' +p29483 +sa(dp29484 +g25267 +g27 +sg25268 +S'Painted Chair' +p29485 +sg25270 +S'Kurt Melzer' +p29486 +sa(dp29487 +g25267 +g27 +sg25268 +S'Chair - with Hudson River Scenes' +p29488 +sg25270 +S'Ella Josephine Sterling' +p29489 +sa(dp29490 +g25267 +g27 +sg25268 +S'Chair - with Hudson River Scenes' +p29491 +sg25270 +S'Ella Josephine Sterling' +p29492 +sa(dp29493 +g25267 +g27 +sg25268 +S'Chair Back Decoration' +p29494 +sg25270 +S'Austin L. Davison' +p29495 +sa(dp29496 +g25267 +g27 +sg25268 +S'Empire Chair' +p29497 +sg25270 +S'Genevieve Sherlock' +p29498 +sa(dp29499 +g25267 +g27 +sg25268 +S'Hitchcock Armchair' +p29500 +sg25270 +S'Therkel Anderson' +p29501 +sa(dp29502 +g25268 +S'Water Pot' +p29503 +sg25270 +S'Chinese Qing Dynasty' +p29504 +sg25273 +S'overall: 7.4 x 10.4 cm (2 15/16 x 4 1/8 in.)' +p29505 +sg25275 +S'\nporcelain with pale blue glaze' +p29506 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d60.jpg' +p29507 +sg25267 +g27 +sa(dp29508 +g25267 +g27 +sg25268 +S'Chair' +p29509 +sg25270 +S'Lillian Causey' +p29510 +sa(dp29511 +g25267 +g27 +sg25268 +S'Dining Room Chair' +p29512 +sg25270 +S'Sarkis Erganian' +p29513 +sa(dp29514 +g25267 +g27 +sg25268 +S'Side Chair' +p29515 +sg25270 +S'David S. De Vault' +p29516 +sa(dp29517 +g25267 +g27 +sg25268 +S'Chair' +p29518 +sg25270 +S'Walter W. Jennings' +p29519 +sa(dp29520 +g25267 +g27 +sg25268 +S'Chinese Cane Chair' +p29521 +sg25270 +S'Sebastian Simonet' +p29522 +sa(dp29523 +g25267 +g27 +sg25268 +S"Child's (living room) Chair" +p29524 +sg25270 +S'Francis Law Durand' +p29525 +sa(dp29526 +g25267 +g27 +sg25268 +S'Chair' +p29527 +sg25270 +S'George Fairbanks' +p29528 +sa(dp29529 +g25267 +g27 +sg25268 +S'Chair' +p29530 +sg25270 +S'George Kirschner' +p29531 +sa(dp29532 +g25267 +g27 +sg25268 +S'Chair' +p29533 +sg25270 +S'Wellington Blewett' +p29534 +sa(dp29535 +g25267 +g27 +sg25268 +S'Slat-back Chair' +p29536 +sg25270 +S'George Kirschner' +p29537 +sa(dp29538 +g25268 +S'Covered Bowl' +p29539 +sg25270 +S'Chinese Qing Dynasty' +p29540 +sg25273 +S'overall: 9.8 x 9.2 cm (3 7/8 x 3 5/8 in.)' +p29541 +sg25275 +S'\nporcelain with pale blue glaze' +p29542 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d62.jpg' +p29543 +sg25267 +g27 +sa(dp29544 +g25267 +g27 +sg25268 +S'Spool Armchair' +p29545 +sg25270 +S'Ella Josephine Sterling' +p29546 +sa(dp29547 +g25267 +g27 +sg25268 +S'Handcarved Chair' +p29548 +sg25270 +S'Florence Hastings' +p29549 +sa(dp29550 +g25267 +g27 +sg25268 +S'Horn chair' +p29551 +sg25270 +S'Robert W.R. Taylor' +p29552 +sa(dp29553 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000553b.jpg' +p29554 +sg25268 +S'Gothic Chair' +p29555 +sg25270 +S'Rosa Rivero' +p29556 +sa(dp29557 +g25267 +g27 +sg25268 +S'Side Chair' +p29558 +sg25270 +S'Joseph Rothenberg' +p29559 +sa(dp29560 +g25267 +g27 +sg25268 +S'Side Chair' +p29561 +sg25270 +S'Bernard Krieger' +p29562 +sa(dp29563 +g25267 +g27 +sg25268 +S"Child's stool chair" +p29564 +sg25270 +S'Alfonso Moreno' +p29565 +sa(dp29566 +g25267 +g27 +sg25268 +S'Chair, Pine with Rush Seat' +p29567 +sg25270 +S'Frank M. Keane' +p29568 +sa(dp29569 +g25267 +g27 +sg25268 +S'Handmade Chair - Rawhide Seat' +p29570 +sg25270 +S'Manuel G. Runyan' +p29571 +sa(dp29572 +g25267 +g27 +sg25268 +S'Handmade Chair' +p29573 +sg25270 +S'Annie B. Johnston' +p29574 +sa(dp29575 +g25268 +S'Brush Washer' +p29576 +sg25270 +S'Chinese Qing Dynasty' +p29577 +sg25273 +S'overall: 4.8 x 12.1 cm (1 7/8 x 4 3/4 in.)' +p29578 +sg25275 +S'\nporcelain with pale blue glaze' +p29579 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d64.jpg' +p29580 +sg25267 +g27 +sa(dp29581 +g25267 +g27 +sg25268 +S'Dining Room Chair' +p29582 +sg25270 +S'Manuel G. Runyan' +p29583 +sa(dp29584 +g25267 +g27 +sg25268 +S'Hickory High Chair' +p29585 +sg25270 +S'Florence Hastings' +p29586 +sa(dp29587 +g25267 +g27 +sg25268 +S'Rocker' +p29588 +sg25270 +S'Grace Thomas' +p29589 +sa(dp29590 +g25267 +g27 +sg25268 +S'Chair (Ranch Type)' +p29591 +sg25270 +S'Ellen Duncan' +p29592 +sa(dp29593 +g25267 +g27 +sg25268 +S'Rocker' +p29594 +sg25270 +S'Ursula Lauderdale' +p29595 +sa(dp29596 +g25267 +g27 +sg25268 +S'Chair' +p29597 +sg25270 +S'Louita Gourley' +p29598 +sa(dp29599 +g25267 +g27 +sg25268 +S'Braided Rawhide-bottomed Chair' +p29600 +sg25270 +S'Joe Brennan' +p29601 +sa(dp29602 +g25267 +g27 +sg25268 +S'Hide-bottom High-seat Chair' +p29603 +sg25270 +S'Dorothy Johnson' +p29604 +sa(dp29605 +g25267 +g27 +sg25268 +S'Double Back Chair' +p29606 +sg25270 +S'Dorothy Johnson' +p29607 +sa(dp29608 +g25267 +g27 +sg25268 +S'High Armchair' +p29609 +sg25270 +S'Virgil A. Liberto' +p29610 +sa(dp29611 +g25268 +S'Bottle Vase' +p29612 +sg25270 +S'Chinese Qing Dynasty' +p29613 +sg25273 +S'overall: 15.3 x 7.5 cm (6 x 2 15/16 in.)' +p29614 +sg25275 +S'\nporcelain with pale blue glaze' +p29615 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d66.jpg' +p29616 +sg25267 +g27 +sa(dp29617 +g25267 +g27 +sg25268 +S'Armchair' +p29618 +sg25270 +S'Joe Brennan' +p29619 +sa(dp29620 +g25267 +g27 +sg25268 +S'Hickory Rocking Chair' +p29621 +sg25270 +S'Pearl Davis' +p29622 +sa(dp29623 +g25267 +g27 +sg25268 +S'Braided Rawhide Bottom Chair' +p29624 +sg25270 +S'Dorothy Johnson' +p29625 +sa(dp29626 +g25267 +g27 +sg25268 +S'Laced Chair' +p29627 +sg25270 +S'Pearl Davis' +p29628 +sa(dp29629 +g25267 +g27 +sg25268 +S"Child's Chair" +p29630 +sg25270 +S'Randolph Atkinson' +p29631 +sa(dp29632 +g25267 +g27 +sg25268 +S'Rawhide-bottom Chair' +p29633 +sg25270 +S'Dorothy Johnson' +p29634 +sa(dp29635 +g25267 +g27 +sg25268 +S"Child's High Chair" +p29636 +sg25270 +S'Dorothy Johnson' +p29637 +sa(dp29638 +g25267 +g27 +sg25268 +S"Child's Armchair" +p29639 +sg25270 +S'Dorothy Johnson' +p29640 +sa(dp29641 +g25267 +g27 +sg25268 +S'High-bottom High-back Armchair' +p29642 +sg25270 +S'Dorothy Johnson' +p29643 +sa(dp29644 +g25267 +g27 +sg25268 +S'Wooden Straight Chair' +p29645 +sg25270 +S'Wilbur M Rice' +p29646 +sa(dp29647 +g25268 +S'Bottle Vase' +p29648 +sg25270 +S'Chinese Qing Dynasty' +p29649 +sg25273 +S'overall: 15.3 x 7.5 cm (6 x 2 15/16 in.)' +p29650 +sg25275 +S'\nporcelain with pale blue glaze' +p29651 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d68.jpg' +p29652 +sg25267 +g27 +sa(dp29653 +g25267 +g27 +sg25268 +S'Chair' +p29654 +sg25270 +S'Frank Eiseman' +p29655 +sa(dp29656 +g25267 +g27 +sg25268 +S"Child's High Chair" +p29657 +sg25270 +S'Donald Harding' +p29658 +sa(dp29659 +g25267 +g27 +sg25268 +S'Ladder Back Chair' +p29660 +sg25270 +S'Adelaide Dyball' +p29661 +sa(dp29662 +g25267 +g27 +sg25268 +S'Chair' +p29663 +sg25270 +S'Lee Brown' +p29664 +sa(dp29665 +g25267 +g27 +sg25268 +S'Kitchen Chair' +p29666 +sg25270 +S'Sydney Roberts' +p29667 +sa(dp29668 +g25267 +g27 +sg25268 +S'Kitchen Chair (plank bottom)' +p29669 +sg25270 +S'Sydney Roberts' +p29670 +sa(dp29671 +g25267 +g27 +sg25268 +S'Hickory Chair' +p29672 +sg25270 +S'E.J. Reynolds' +p29673 +sa(dp29674 +g25267 +g27 +sg25268 +S'Chair (handmade)' +p29675 +sg25270 +S'Glenn Wilson' +p29676 +sa(dp29677 +g25267 +g27 +sg25268 +S'"Ladder Back" Chair - Called "Jolting Chair"' +p29678 +sg25270 +S'Magnus S. Fossum' +p29679 +sa(dp29680 +g25267 +g27 +sg25268 +S'Early American Chair' +p29681 +sg25270 +S'Rex F. Bush' +p29682 +sa(dp29683 +g25268 +S'Vase' +p29684 +sg25270 +S'Chinese Qing Dynasty' +p29685 +sg25273 +S'overall: 21 x 7.8 cm (8 1/4 x 3 1/16 in.)' +p29686 +sg25275 +S'\nporcelain with pale blue glaze' +p29687 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d6a.jpg' +p29688 +sg25267 +g27 +sa(dp29689 +g25267 +g27 +sg25268 +S'Side Chair' +p29690 +sg25270 +S'Edna C. Rex' +p29691 +sa(dp29692 +g25267 +g27 +sg25268 +S'Chair' +p29693 +sg25270 +S'Willoughby Ions' +p29694 +sa(dp29695 +g25267 +g27 +sg25268 +S'Chair (Jack Knife Type)' +p29696 +sg25270 +S'Rex F. Bush' +p29697 +sa(dp29698 +g25267 +g27 +sg25268 +S'Wooden chiar' +p29699 +sg25270 +S'Clyde L. Cheney' +p29700 +sa(dp29701 +g25267 +g27 +sg25268 +S'Mahogany Chair with Card Rose Design on UpperWrung' +p29702 +sg25270 +S'Florence Truelson' +p29703 +sa(dp29704 +g25267 +g27 +sg25268 +S'Red Plush Morris Chair' +p29705 +sg25270 +S'Florence Truelson' +p29706 +sa(dp29707 +g25267 +g27 +sg25268 +S'Victorian Upholstered Chair' +p29708 +sg25270 +S'Florence Truelson' +p29709 +sa(dp29710 +g25267 +g27 +sg25268 +S'Red Pioneer Chair' +p29711 +sg25270 +S'Florence Truelson' +p29712 +sa(dp29713 +g25267 +g27 +sg25268 +S'Wooden Chair' +p29714 +sg25270 +S'Clyde L. Cheney' +p29715 +sa(dp29716 +g25267 +g27 +sg25268 +S'Walnut Chair' +p29717 +sg25270 +S'Florence Truelson' +p29718 +sa(dp29719 +g25268 +S'Brush Washer' +p29720 +sg25270 +S'Chinese Qing Dynasty' +p29721 +sg25273 +S'overall: 4.2 x 11.8 cm (1 5/8 x 4 5/8 in.)' +p29722 +sg25275 +S'\nporcelain with pale blue glaze' +p29723 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d6c.jpg' +p29724 +sg25267 +g27 +sa(dp29725 +g25267 +g27 +sg25268 +S'Chair' +p29726 +sg25270 +S'Florence Truelson' +p29727 +sa(dp29728 +g25267 +g27 +sg25268 +S'Chair' +p29729 +sg25270 +S'Clyde L. Cheney' +p29730 +sa(dp29731 +g25267 +g27 +sg25268 +S'Folding Oak Chair' +p29732 +sg25270 +S'Florence Truelson' +p29733 +sa(dp29734 +g25267 +g27 +sg25268 +S'"The Three Bear\'s Chairs"' +p29735 +sg25270 +S'Florence Truelson' +p29736 +sa(dp29737 +g25267 +g27 +sg25268 +S'Wooden Chair' +p29738 +sg25270 +S'Florence Truelson' +p29739 +sa(dp29740 +g25267 +g27 +sg25268 +S'Queen Anne Chair' +p29741 +sg25270 +S'Florence Truelson' +p29742 +sa(dp29743 +g25267 +g27 +sg25268 +S'Rocking Chair with Rawhide Seat' +p29744 +sg25270 +S'Frank M. Keane' +p29745 +sa(dp29746 +g25267 +g27 +sg25268 +S'Rocking Chair' +p29747 +sg25270 +S'Alfred Walbeck' +p29748 +sa(dp29749 +g25267 +g27 +sg25268 +S'Rocking Chair' +p29750 +sg25270 +S'James Fisher' +p29751 +sa(dp29752 +g25267 +g27 +sg25268 +S'Rocking Chair' +p29753 +sg25270 +S'Edward A. Darby' +p29754 +sa(dp29755 +g25268 +S'Brush Washer' +p29756 +sg25270 +S'Chinese Qing Dynasty' +p29757 +sg25273 +S'overall: 4.2 x 11.7 cm (1 5/8 x 4 5/8 in.)' +p29758 +sg25275 +S'\nporcelain with pale blue glaze' +p29759 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d6e.jpg' +p29760 +sg25267 +g27 +sa(dp29761 +g25267 +g27 +sg25268 +S'Rocking chair' +p29762 +sg25270 +S'Orison Daeda' +p29763 +sa(dp29764 +g25267 +g27 +sg25268 +S'Rocker with Black Horse-hair Seat' +p29765 +sg25270 +S'Florence Truelson' +p29766 +sa(dp29767 +g25267 +g27 +sg25268 +S'Chair with Head Rests' +p29768 +sg25270 +S'Florence Truelson' +p29769 +sa(dp29770 +g25267 +g27 +sg25268 +S'Rocking Chair' +p29771 +sg25270 +S'John R. Towers' +p29772 +sa(dp29773 +g25267 +g27 +sg25268 +S'Rocking Chair' +p29774 +sg25270 +S'Anne Colman' +p29775 +sa(dp29776 +g25267 +g27 +sg25268 +S'Rocking Chair' +p29777 +sg25270 +S'Henry Meyers' +p29778 +sa(dp29779 +g25267 +g27 +sg25268 +S'Rocking Chair' +p29780 +sg25270 +S'Henry Meyers' +p29781 +sa(dp29782 +g25267 +g27 +sg25268 +S'Rocking Chair' +p29783 +sg25270 +S'Maud M. Holme' +p29784 +sa(dp29785 +g25267 +g27 +sg25268 +S'Colonial Rocking Chair' +p29786 +sg25270 +S'Florence Truelson' +p29787 +sa(dp29788 +g25267 +g27 +sg25268 +S'Rocker' +p29789 +sg25270 +S'Violet Hartenstein' +p29790 +sa(dp29791 +g25268 +S'Water Pot' +p29792 +sg25270 +S'Chinese Qing Dynasty' +p29793 +sg25273 +S'overall: 7.3 x 10.5 cm (2 7/8 x 4 1/8 in.)' +p29794 +sg25275 +S'\nporcelain with pale blue glaze' +p29795 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d70.jpg' +p29796 +sg25267 +g27 +sa(dp29797 +g25267 +g27 +sg25268 +S'Rocking Chair' +p29798 +sg25270 +S'Henry Murphy' +p29799 +sa(dp29800 +g25267 +g27 +sg25268 +S'Rocker' +p29801 +sg25270 +S'Dorothy Johnson' +p29802 +sa(dp29803 +g25267 +g27 +sg25268 +S'Ladder Back Rocking Chair' +p29804 +sg25270 +S'J. Howard Iams' +p29805 +sa(dp29806 +g25267 +g27 +sg25268 +S'Rocking Chair' +p29807 +sg25270 +S'Florence Truelson' +p29808 +sa(dp29809 +g25267 +g27 +sg25268 +S'Rocking Chair' +p29810 +sg25270 +S'Artist Information (' +p29811 +sa(dp29812 +g25267 +g27 +sg25268 +S'Rocking Chair' +p29813 +sg25270 +S'John Lang' +p29814 +sa(dp29815 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f9/a000f904.jpg' +p29816 +sg25268 +S"Child's Folding Chair" +p29817 +sg25270 +S'Magnus S. Fossum' +p29818 +sa(dp29819 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f9/a000f905.jpg' +p29820 +sg25268 +S"Child's Folding Chair" +p29821 +sg25270 +S'Magnus S. Fossum' +p29822 +sa(dp29823 +g25267 +g27 +sg25268 +S'Chair' +p29824 +sg25270 +S'Leonard Battee' +p29825 +sa(dp29826 +g25267 +g27 +sg25268 +S'Chair' +p29827 +sg25270 +S'Charles Bowman' +p29828 +sa(dp29829 +g25268 +S'Water Pot' +p29830 +sg25270 +S'Chinese Qing Dynasty' +p29831 +sg25273 +S'overall: 7.1 x 10.4 cm (2 13/16 x 4 1/8 in.)' +p29832 +sg25275 +S'\nporcelain with pale blue glaze' +p29833 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d72.jpg' +p29834 +sg25267 +S'Water pots, sometimes called water coupes, were designed as ornamental and \n functional forms for the Chinese scholar\'s desk. They contained water for use \n in making ink or replenishing the brush washer.\n Pale blue glaze appears to have been more broadly used during the Kangxi \n and Yongzheng reigns than peachbloom and was applied to a wide variety of \n vase shapes rather than to only eight types. Nevertheless, certain forms \n are found in both glazes,\n Small globular water pots can be subdivided into those with and without \n necks. While peachbloom examples have been published in both types, among \n the pale blue wares the short-necked form is predominant.\n "Two favorite designs, for example, of the little water-bottles intended \n to be used with the writer\'s pallet \n The water pots with short necks do resemble pomegranates more than \n apples, although they lack the foliated lip found on the globular pots \n usually described as pomegranate-shaped.\n (Text by Virginia Bower, published in the NGA Systematic Catalogue: \n Notes

\n
\n \n \n \n \n \n \n \n ' +p29835 +sa(dp29836 +g25267 +g27 +sg25268 +S'Rocker' +p29837 +sg25270 +S'Robert Stewart' +p29838 +sa(dp29839 +g25267 +g27 +sg25268 +S'Rocking Chair' +p29840 +sg25270 +S'Edward Bashaw' +p29841 +sa(dp29842 +g25267 +g27 +sg25268 +S'Raw Hide Bottom Rocker' +p29843 +sg25270 +S'Dorothy Johnson' +p29844 +sa(dp29845 +g25267 +g27 +sg25268 +S'Colonial Rocker' +p29846 +sg25270 +S'Frank Nelson' +p29847 +sa(dp29848 +g25267 +g27 +sg25268 +S'Rocking Chair' +p29849 +sg25270 +S'John Cutting' +p29850 +sa(dp29851 +g25267 +g27 +sg25268 +S'Rocking Chair' +p29852 +sg25270 +S'Robert Pohle' +p29853 +sa(dp29854 +g25267 +g27 +sg25268 +S'Chair' +p29855 +sg25270 +S'Henry Tomaszewski' +p29856 +sa(dp29857 +g25267 +g27 +sg25268 +S'Ladder Rock Chair' +p29858 +sg25270 +S'John Sullivan' +p29859 +sa(dp29860 +g25267 +g27 +sg25268 +S"Child's Rocking Chair" +p29861 +sg25270 +S'Clarence Secor' +p29862 +sa(dp29863 +g25267 +g27 +sg25268 +S'Carved Oak Chair' +p29864 +sg25270 +S'Florence Truelson' +p29865 +sa(dp29866 +g25268 +S'Amphora Vase' +p29867 +sg25270 +S'Chinese Qing Dynasty' +p29868 +sg25273 +S'overall: 16.2 x 5.7 cm (6 3/8 x 2 1/4 in.)' +p29869 +sg25275 +S'\nporcelain with pale blue glaze' +p29870 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d74.jpg' +p29871 +sg25267 +g27 +sa(dp29872 +g25267 +g27 +sg25268 +S'Camp Chair' +p29873 +sg25270 +S'George C. Brown' +p29874 +sa(dp29875 +g25267 +g27 +sg25268 +S"Child's Chair" +p29876 +sg25270 +S'Violet Hartenstein' +p29877 +sa(dp29878 +g25267 +g27 +sg25268 +S'Platform Rocker' +p29879 +sg25270 +S'Ursula Lauderdale' +p29880 +sa(dp29881 +g25267 +g27 +sg25268 +S'Dental Chair' +p29882 +sg25270 +S'Lucien Verbeke' +p29883 +sa(dp29884 +g25267 +g27 +sg25268 +S'Dental Chair' +p29885 +sg25270 +S'Lucien Verbeke' +p29886 +sa(dp29887 +g25267 +g27 +sg25268 +S'Garden Chair' +p29888 +sg25270 +S'Katherine Hastings' +p29889 +sa(dp29890 +g25267 +g27 +sg25268 +S'Music Room Chair' +p29891 +sg25270 +S'Virginia Kennady' +p29892 +sa(dp29893 +g25267 +g27 +sg25268 +S'Billiard Chair' +p29894 +sg25270 +S'Artist Information (' +p29895 +sa(dp29896 +g25267 +g27 +sg25268 +S'Commode Chair' +p29897 +sg25270 +S'Ernest A. Towers, Jr.' +p29898 +sa(dp29899 +g25267 +g27 +sg25268 +S'Church Chair' +p29900 +sg25270 +S'Florence Huston' +p29901 +sa(dp29902 +g25268 +S'Amphora Vase' +p29903 +sg25270 +S'Chinese Qing Dynasty' +p29904 +sg25273 +S'overall: 16.1 x 5.7 cm (6 5/16 x 2 1/4 in.)' +p29905 +sg25275 +S'\nporcelain with pale blue glaze' +p29906 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d76.jpg' +p29907 +sg25267 +g27 +sa(dp29908 +g25267 +g27 +sg25268 +S'Sleepyhollow Armchair' +p29909 +sg25270 +S'Dana Bartlett' +p29910 +sa(dp29911 +g25267 +g27 +sg25268 +S'Chair' +p29912 +sg25270 +S'Ethelbert Brown' +p29913 +sa(dp29914 +g25267 +g27 +sg25268 +S'Office Swivel Chair' +p29915 +sg25270 +S'George Kirschner' +p29916 +sa(dp29917 +g25267 +g27 +sg25268 +S"Child's High Chair" +p29918 +sg25270 +S'Herman O. Stroh' +p29919 +sa(dp29920 +g25267 +g27 +sg25268 +S'High Chair' +p29921 +sg25270 +S'Nicholas Gorid' +p29922 +sa(dp29923 +g25267 +g27 +sg25268 +S'Baby High Chair' +p29924 +sg25270 +S'Max Fernekes' +p29925 +sa(dp29926 +g25267 +g27 +sg25268 +S'Baby High Chair' +p29927 +sg25270 +S'John Swientochowski' +p29928 +sa(dp29929 +g25267 +g27 +sg25268 +S'High Chair' +p29930 +sg25270 +S'Raymond Chard' +p29931 +sa(dp29932 +g25267 +g27 +sg25268 +S"Infant's High Chair" +p29933 +sg25270 +S'Isidore Sovensky' +p29934 +sa(dp29935 +g25267 +g27 +sg25268 +S'High Chair' +p29936 +sg25270 +S'Michael Riccitelli' +p29937 +sa(dp29938 +g25268 +S'Amphora Vase' +p29939 +sg25270 +S'Chinese Qing Dynasty' +p29940 +sg25273 +S'overall: 15.9 x 5.7 cm (6 1/4 x 2 1/4 in.)' +p29941 +sg25275 +S'\nporcelain with pale blue glaze' +p29942 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d78.jpg' +p29943 +sg25267 +g27 +sa(dp29944 +g25267 +g27 +sg25268 +S'High Chair (for infants)' +p29945 +sg25270 +S'Frank Gutting' +p29946 +sa(dp29947 +g25267 +g27 +sg25268 +S"Child's High Chair" +p29948 +sg25270 +S'Samuel W. Ford' +p29949 +sa(dp29950 +g25267 +g27 +sg25268 +S"Child's High Chair" +p29951 +sg25270 +S'Cora Parker' +p29952 +sa(dp29953 +g25267 +g27 +sg25268 +S"Child's High Chair" +p29954 +sg25270 +S'Cora Parker' +p29955 +sa(dp29956 +g25267 +g27 +sg25268 +S"Child's High Chair" +p29957 +sg25270 +S'Annie B. Johnston' +p29958 +sa(dp29959 +g25267 +g27 +sg25268 +S'High Chair' +p29960 +sg25270 +S'Elizabeth Curtis' +p29961 +sa(dp29962 +g25267 +g27 +sg25268 +S"Child's High Chair" +p29963 +sg25270 +S'Isidore Sovensky' +p29964 +sa(dp29965 +g25267 +g27 +sg25268 +S"Child's High Chair" +p29966 +sg25270 +S'Frederick Jackson' +p29967 +sa(dp29968 +g25267 +g27 +sg25268 +S"Child's High Chair" +p29969 +sg25270 +S'Michael Chomyk' +p29970 +sa(dp29971 +g25267 +g27 +sg25268 +S"Baby's High Chair" +p29972 +sg25270 +S'Edith Magnette' +p29973 +sa(dp29974 +g25268 +S'Vase, Meiping Shape' +p29975 +sg25270 +S'Chinese Qing Dynasty' +p29976 +sg25273 +S'overall: 21.3 x 10.8 cm (8 3/8 x 4 1/4 in.)' +p29977 +sg25275 +S'\nporcelain with pale blue glaze' +p29978 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d7a.jpg' +p29979 +sg25267 +g27 +sa(dp29980 +g25267 +g27 +sg25268 +S"Child's chair" +p29981 +sg25270 +S'Cora Parker' +p29982 +sa(dp29983 +g25267 +g27 +sg25268 +S"Child's Chair (View of Seat Bottom)" +p29984 +sg25270 +S'Cora Parker' +p29985 +sa(dp29986 +g25267 +g27 +sg25268 +S"Child's Chair" +p29987 +sg25270 +S'Gordena Jackson' +p29988 +sa(dp29989 +g25267 +g27 +sg25268 +S"Youth's Chair" +p29990 +sg25270 +S'Artist Information (' +p29991 +sa(dp29992 +g25267 +g27 +sg25268 +S"Child's Chair" +p29993 +sg25270 +S'Samuel W. Ford' +p29994 +sa(dp29995 +g25267 +g27 +sg25268 +S'Small Rush Bottom Chair' +p29996 +sg25270 +S'Edith Magnette' +p29997 +sa(dp29998 +g25267 +g27 +sg25268 +S"Decorated Child's Rocking Chair" +p29999 +sg25270 +S'James Fisher' +p30000 +sa(dp30001 +g25267 +g27 +sg25268 +S"Child's Rocking Chair" +p30002 +sg25270 +S'William H. Edwards' +p30003 +sa(dp30004 +g25267 +g27 +sg25268 +S'Rocking Chair' +p30005 +sg25270 +S'Dorothy Handy' +p30006 +sa(dp30007 +g25267 +g27 +sg25268 +S"Child's Rocking Chair" +p30008 +sg25270 +S'Florence Grant Brown' +p30009 +sa(dp30010 +g25268 +S'Vase, Meiping Shape' +p30011 +sg25270 +S'Chinese Qing Dynasty' +p30012 +sg25273 +S'overall: 21.8 x 10.5 cm (8 9/16 x 4 1/8 in.)' +p30013 +sg25275 +S'\nporcelain with pale blue glaze' +p30014 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d7c.jpg' +p30015 +sg25267 +g27 +sa(dp30016 +g25267 +g27 +sg25268 +S'Rocking Chair' +p30017 +sg25270 +S'Charlotte Winter' +p30018 +sa(dp30019 +g25267 +g27 +sg25268 +S"Child's Rocking Chair" +p30020 +sg25270 +S'Austin L. Davison' +p30021 +sa(dp30022 +g25267 +g27 +sg25268 +S"Rocking Chair, Small, Child's" +p30023 +sg25270 +S'Simon Weiss' +p30024 +sa(dp30025 +g25267 +g27 +sg25268 +S"Child's Rocking Chair" +p30026 +sg25270 +S'Herman O. Stroh' +p30027 +sa(dp30028 +g25267 +g27 +sg25268 +S'Armchair' +p30029 +sg25270 +S'Isadore Goldberg' +p30030 +sa(dp30031 +g25267 +g27 +sg25268 +S'Side Chair' +p30032 +sg25270 +S'Lelah Nelson' +p30033 +sa(dp30034 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005525.jpg' +p30035 +sg25268 +S'Armchair' +p30036 +sg25270 +S'Harry Eisman' +p30037 +sa(dp30038 +g25267 +g27 +sg25268 +S'Sewing Chair' +p30039 +sg25270 +S'Dorothy Johnson' +p30040 +sa(dp30041 +g25267 +g27 +sg25268 +S"Invalid's Chair" +p30042 +sg25270 +S'Orville A. Carroll' +p30043 +sa(dp30044 +g25267 +g27 +sg25268 +S'Side Chair' +p30045 +sg25270 +S'Louis Annino' +p30046 +sa(dp30047 +g25268 +S'Vase, Meiping Shape' +p30048 +sg25270 +S'Chinese Qing Dynasty' +p30049 +sg25273 +S'overall: 20.7 x 10.8 cm (8 1/8 x 4 1/4 in.)' +p30050 +sg25275 +S'\nporcelain with pale blue glaze' +p30051 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d7e.jpg' +p30052 +sg25267 +g27 +sa(dp30053 +g25267 +g27 +sg25268 +S'High Back Side Chair' +p30054 +sg25270 +S'Louis Annino' +p30055 +sa(dp30056 +g25267 +g27 +sg25268 +S'High-Back Side Chair' +p30057 +sg25270 +S'Arthur Johnson' +p30058 +sa(dp30059 +g25267 +g27 +sg25268 +S'Side Chair' +p30060 +sg25270 +S'Harry Eisman' +p30061 +sa(dp30062 +g25267 +g27 +sg25268 +S'Side Chair' +p30063 +sg25270 +S'Harry Eisman' +p30064 +sa(dp30065 +g25267 +g27 +sg25268 +S'Rawhide Bottomed Chair' +p30066 +sg25270 +S'Rafaela Gomez' +p30067 +sa(dp30068 +g25267 +g27 +sg25268 +S"Monk's Chair" +p30069 +sg25270 +S'Ursula Lauderdale' +p30070 +sa(dp30071 +g25267 +g27 +sg25268 +S'Rocking Chair' +p30072 +sg25270 +S'Josephine Miller' +p30073 +sa(dp30074 +g25267 +g27 +sg25268 +S'Rocking Chair' +p30075 +sg25270 +S'Amos C. Brinton' +p30076 +sa(dp30077 +g25267 +g27 +sg25268 +S'Mahogany Chair' +p30078 +sg25270 +S'Edward L. Loper' +p30079 +sa(dp30080 +g25267 +g27 +sg25268 +S'Windsor Comb-Back Chair' +p30081 +sg25270 +S'Roger Deats' +p30082 +sa(dp30083 +g25268 +S'Vase, Meiping Shape' +p30084 +sg25270 +S'Chinese Qing Dynasty' +p30085 +sg25273 +S'overall: 21 x 10.8 cm (8 1/4 x 4 1/4 in.)' +p30086 +sg25275 +S'\nporcelain with pale blue glaze' +p30087 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d80.jpg' +p30088 +sg25267 +g27 +sa(dp30089 +g25267 +g27 +sg25268 +S"Child's Chair" +p30090 +sg25270 +S'Randolph Atkinson' +p30091 +sa(dp30092 +g25267 +g27 +sg25268 +S'Rawhide Bottom Chair' +p30093 +sg25270 +S'Virgil A. Liberto' +p30094 +sa(dp30095 +g25267 +g27 +sg25268 +S'Rope Bottom Chair' +p30096 +sg25270 +S'Dorothy Johnson' +p30097 +sa(dp30098 +g25267 +g27 +sg25268 +S'Rocking Chair' +p30099 +sg25270 +S'LeRoy Griffith' +p30100 +sa(dp30101 +g25267 +g27 +sg25268 +S'Rocking Chair' +p30102 +sg25270 +S'Raymond Neumann' +p30103 +sa(dp30104 +g25267 +g27 +sg25268 +S'Chair' +p30105 +sg25270 +S'Rolland Livingstone' +p30106 +sa(dp30107 +g25267 +g27 +sg25268 +S'Side Chair' +p30108 +sg25270 +S'Lawrence Phillips' +p30109 +sa(dp30110 +g25267 +g27 +sg25268 +S'Back of Stencilled Chair' +p30111 +sg25270 +S'Lawrence Flynn' +p30112 +sa(dp30113 +g25267 +g27 +sg25268 +S'Hitchcock Chair Back' +p30114 +sg25270 +S'Lawrence Flynn' +p30115 +sa(dp30116 +g25267 +g27 +sg25268 +S'Stencilled Rocker' +p30117 +sg25270 +S'Lawrence Flynn' +p30118 +sa(dp30119 +g25268 +S'Petal-Decorated Vase' +p30120 +sg25270 +S'Chinese Qing Dynasty' +p30121 +sg25273 +S'overall: 21.4 x 8.6 cm (8 7/16 x 3 3/8 in.)' +p30122 +sg25275 +S'\nporcelain with celadon glaze' +p30123 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d82.jpg' +p30124 +sg25267 +g27 +sa(dp30125 +g25267 +g27 +sg25268 +S'Wooden Log Chair' +p30126 +sg25270 +S'Lloyd Charles Lemcke' +p30127 +sa(dp30128 +g25267 +g27 +sg25268 +S'Hitchcock Chair' +p30129 +sg25270 +S'Lawrence Flynn' +p30130 +sa(dp30131 +g25267 +g27 +sg25268 +S'Ladder Back Chair' +p30132 +sg25270 +S'Annie B. Johnston' +p30133 +sa(dp30134 +g25267 +g27 +sg25268 +S'Armchair' +p30135 +sg25270 +S'Harry Mann Waddell' +p30136 +sa(dp30137 +g25267 +g27 +sg25268 +S'Chest with Two Drawers' +p30138 +sg25270 +S'Isabella Ruth Doerfler' +p30139 +sa(dp30140 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30141 +sg25270 +S'Lorenz Rothkranz' +p30142 +sa(dp30143 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30144 +sg25270 +S'Thomas J. Eliot' +p30145 +sa(dp30146 +g25267 +g27 +sg25268 +S'Chest with Drawers' +p30147 +sg25270 +S'Ulrich Fischer' +p30148 +sa(dp30149 +g25267 +g27 +sg25268 +S'Chest (with two drawers)' +p30150 +sg25270 +S'Michael Trekur' +p30151 +sa(dp30152 +g25267 +g27 +sg25268 +S'Court Chest' +p30153 +sg25270 +S'Lawrence Phillips' +p30154 +sa(dp30155 +g25268 +S'Petal-Decorated Vase' +p30156 +sg25270 +S'Chinese Qing Dynasty' +p30157 +sg25273 +S'overall: 21.3 x 8.5 cm (8 3/8 x 3 3/8 in.)' +p30158 +sg25275 +S'\nporcelain with celadon glaze' +p30159 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d84.jpg' +p30160 +sg25267 +g27 +sa(dp30161 +g25267 +g27 +sg25268 +S'Cabinet for Storage' +p30162 +sg25270 +S'Charles Squires' +p30163 +sa(dp30164 +g25267 +g27 +sg25268 +S'Chest with Two Drawers' +p30165 +sg25270 +S'Isabella Ruth Doerfler' +p30166 +sa(dp30167 +g25267 +g27 +sg25268 +S'Blanket Chest - Front View' +p30168 +sg25270 +S'Martin Partyka' +p30169 +sa(dp30170 +g25267 +g27 +sg25268 +S'Side View of Blanket Chest' +p30171 +sg25270 +S'Martin Partyka' +p30172 +sa(dp30173 +g25267 +g27 +sg25268 +S'Chest with Two Drawers' +p30174 +sg25270 +S'Artist Information (' +p30175 +sa(dp30176 +g25267 +g27 +sg25268 +S'Cabinet for Storage' +p30177 +sg25270 +S'Bernard Krieger' +p30178 +sa(dp30179 +g25267 +g27 +sg25268 +S'Chest' +p30180 +sg25270 +S'John Dana' +p30181 +sa(dp30182 +g25267 +g27 +sg25268 +S'Chest' +p30183 +sg25270 +S'Nicholas Gorid' +p30184 +sa(dp30185 +g25267 +g27 +sg25268 +S'Two Drawer Sunflower Chest - front view' +p30186 +sg25270 +S'Martin Partyka' +p30187 +sa(dp30188 +g25267 +g27 +sg25268 +S'Two Drawer Sunflower Chest - side view' +p30189 +sg25270 +S'Martin Partyka' +p30190 +sa(dp30191 +g25268 +S'Vase with Ringed Neck' +p30192 +sg25270 +S'Chinese Qing Dynasty' +p30193 +sg25273 +S'overall: 19.3 x 8 cm (7 5/8 x 3 1/8 in.)' +p30194 +sg25275 +S'\nporcelain with celadon glaze' +p30195 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d86.jpg' +p30196 +sg25267 +S'This dragon-decorated vase is essentially a variant of one of the prescribed \n peachbloom shapes, the "three-string vase," so named after the three ridges \n adorning the base of its neck\n Some scholars suggest that the smooth-skinned, three-clawed, single-horned, \n fork-tailed relief dragons on these celadon vases more closely resemble the \n archaistic \n Dragons frequently appear on Chinese ceramics, often in pairs contending over \n a flaming, magical pearl. The image presented here of two dragons cavorting \n among clouds and waves is a variant. It may owe something to the influential \n paintings of Chen Rong (fl. c. 1200-1266), who often painted dragons fighting \n among clouds and waves, though judging from the works attributed to him, his \n dragons were scaled and two-horned.\n (Text by Virginia Bower/Stephen Little, published in the NGA Systematic Catalogue: \n \n Notes

\n
\n \n \n \n \n \n \n \n \n ' +p30197 +sa(dp30198 +g25267 +g27 +sg25268 +S'Hartford Chest' +p30199 +sg25270 +S'Martin Partyka' +p30200 +sa(dp30201 +g25267 +g27 +sg25268 +S'Side View of Hartford Chest' +p30202 +sg25270 +S'Martin Partyka' +p30203 +sa(dp30204 +g25267 +g27 +sg25268 +S'Chest' +p30205 +sg25270 +S'Meyer Goldbaum' +p30206 +sa(dp30207 +g25267 +g27 +sg25268 +S'Chest' +p30208 +sg25270 +S'John Dana' +p30209 +sa(dp30210 +g25267 +g27 +sg25268 +S'Chest' +p30211 +sg25270 +S'Charles Squires' +p30212 +sa(dp30213 +g25267 +g27 +sg25268 +S'Chest' +p30214 +sg25270 +S'M. Rosenshield-von-Paulin' +p30215 +sa(dp30216 +g25267 +g27 +sg25268 +S'Chest' +p30217 +sg25270 +S'Charles Squires' +p30218 +sa(dp30219 +g25267 +g27 +sg25268 +S'A Connecticut-type Hadley Chest' +p30220 +sg25270 +S'Martin Partyka' +p30221 +sa(dp30222 +g25267 +g27 +sg25268 +S'A Connecticut-type Hadley Chest' +p30223 +sg25270 +S'Martin Partyka' +p30224 +sa(dp30225 +g25267 +g27 +sg25268 +S'Connecticut-type Hadley Chest-Detail of Central Panel' +p30226 +sg25270 +S'Martin Partyka' +p30227 +sa(dp30228 +g25268 +S'"Beehive" Water Pot' +p30229 +sg25270 +S'Chinese Qing Dynasty' +p30230 +sg25273 +S'overall: 7.9 x 12.7 cm (3 1/8 x 5 in.)' +p30231 +sg25275 +S'\nporcelain with yellow glaze' +p30232 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d88.jpg' +p30233 +sg25267 +S'"Beehive" water pots are usually seen in peachbloom or sometimes pale \n blue glaze.\n This unusual pot has been an object of attention both because yellow \n glaze on "beehive"-shaped water pots is so rarely seen, and because of \n certain technical features that differ from typical Kangxi porcelains, \n specifically from peachbloom water pots. These include the glazing in color \n of all surfaces except the interior, which has been left unglazed, and the \n small spur marks on the glazed foot-ring. Some authorities have questioned \n the style of the calligraphy on the Kangxi mark, although others have \n pointed out that marks of the Kangxi period vary greatly. Opinions as to \n the proper dating of this vessel have likewise varied, with some scholars \n expressing doubt about a Kangxi attribution.\n The Metropolitan Museum of Art, New York, has a yellow water pot that is \n also glazed yellow over the foot and base.\n (Text by Josephine Hadley Knapp, published in the NGA Systematic Catalogue: \n Notes

\n
\n \n \n \n \n \n \n \n ' +p30234 +sa(dp30235 +g25267 +g27 +sg25268 +S'A Connecticut-type Hadley Chest-side View' +p30236 +sg25270 +S'Martin Partyka' +p30237 +sa(dp30238 +g25267 +g27 +sg25268 +S'Blanket Chest' +p30239 +sg25270 +S'Lawrence Flynn' +p30240 +sa(dp30241 +g25267 +g27 +sg25268 +S'Chest' +p30242 +sg25270 +S'Arthur Johnson' +p30243 +sa(dp30244 +g25267 +g27 +sg25268 +S'Chest' +p30245 +sg25270 +S'Robert Brigadier' +p30246 +sa(dp30247 +g25267 +g27 +sg25268 +S'Chest with Drawer' +p30248 +sg25270 +S'Charles Squires' +p30249 +sa(dp30250 +g25267 +g27 +sg25268 +S'Painted Chest' +p30251 +sg25270 +S'Sumner Merrill' +p30252 +sa(dp30253 +g25267 +g27 +sg25268 +S'Chest' +p30254 +sg25270 +S'Francis Borelli' +p30255 +sa(dp30256 +g25267 +g27 +sg25268 +S'Chest' +p30257 +sg25270 +S'John Dieterich' +p30258 +sa(dp30259 +g25267 +g27 +sg25268 +S'Chest' +p30260 +sg25270 +S'John Dieterich' +p30261 +sa(dp30262 +g25267 +g27 +sg25268 +S'Chair' +p30263 +sg25270 +S'Frederick Jackson' +p30264 +sa(dp30265 +g25268 +S'Water Pot' +p30266 +sg25270 +S'Chinese Qing Dynasty' +p30267 +sg25273 +S'overall: 7.6 x 9.9 cm (3 x 3 7/8 in.)' +p30268 +sg25275 +S'\nporcelain with peachbloom glaze' +p30269 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d8a.jpg' +p30270 +sg25267 +g27 +sa(dp30271 +g25267 +g27 +sg25268 +S'Rush Bottom Chair' +p30272 +sg25270 +S'Henry Meyers' +p30273 +sa(dp30274 +g25267 +g27 +sg25268 +S'Armchair' +p30275 +sg25270 +S'Erwin Schwabe' +p30276 +sa(dp30277 +g25267 +g27 +sg25268 +S'Chair' +p30278 +sg25270 +S'Edgar L. Pearce' +p30279 +sa(dp30280 +g25267 +g27 +sg25268 +S'Armchair' +p30281 +sg25270 +S'Irving I. Smith' +p30282 +sa(dp30283 +g25267 +g27 +sg25268 +S'Slat-back Armchair' +p30284 +sg25270 +S'Alfred Nason' +p30285 +sa(dp30286 +g25267 +g27 +sg25268 +S'Armchair' +p30287 +sg25270 +S'M. Rosenshield-von-Paulin' +p30288 +sa(dp30289 +g25267 +g27 +sg25268 +S'Chest' +p30290 +sg25270 +S'Irving I. Smith' +p30291 +sa(dp30292 +g25267 +g27 +sg25268 +S'Hadley Chest' +p30293 +sg25270 +S'Lawrence Foster' +p30294 +sa(dp30295 +g25267 +g27 +sg25268 +S'Mantel Clock' +p30296 +sg25270 +S'Frank Wenger' +p30297 +sa(dp30298 +g25267 +g27 +sg25268 +S'Chest' +p30299 +sg25270 +S'Leon Witt' +p30300 +sa(dp30301 +g25268 +S'Brush Washer' +p30302 +sg25270 +S'Chinese Qing Dynasty' +p30303 +sg25273 +S'overall: 3.5 x 11.8 cm (1 3/8 x 4 5/8 in.)' +p30304 +sg25275 +S'\nporcelain with peachbloom glaze' +p30305 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d8c.jpg' +p30306 +sg25267 +g27 +sa(dp30307 +g25267 +g27 +sg25268 +S'Hadley Chest' +p30308 +sg25270 +S'Martin Partyka' +p30309 +sa(dp30310 +g25267 +g27 +sg25268 +S'Chest' +p30311 +sg25270 +S'Arthur Johnson' +p30312 +sa(dp30313 +g25267 +g27 +sg25268 +S'Hadley Chest' +p30314 +sg25270 +S'Victor F. Muollo' +p30315 +sa(dp30316 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30317 +sg25270 +S'Charles Squires' +p30318 +sa(dp30319 +g25267 +g27 +sg25268 +S'Hadley Chest' +p30320 +sg25270 +S'Harold Merriam' +p30321 +sa(dp30322 +g25267 +g27 +sg25268 +S'Hadley Chest' +p30323 +sg25270 +S'Harold Merriam' +p30324 +sa(dp30325 +g25267 +g27 +sg25268 +S'Hadley Chest (Hartford type)' +p30326 +sg25270 +S'Harold Merriam' +p30327 +sa(dp30328 +g25267 +g27 +sg25268 +S'Connnecticut Chest' +p30329 +sg25270 +S'Charles Squires' +p30330 +sa(dp30331 +g25267 +g27 +sg25268 +S'Chest' +p30332 +sg25270 +S'Bernard Krieger' +p30333 +sa(dp30334 +g25267 +g27 +sg25268 +S'Painted Wooden Chest or Casket' +p30335 +sg25270 +S'Roy Moon' +p30336 +sa(dp30337 +g25268 +S'Brush Washer' +p30338 +sg25270 +S'Chinese Qing Dynasty' +p30339 +sg25273 +S'overall: 3.7 x 11.8 cm (1 7/16 x 4 5/8 in.)' +p30340 +sg25275 +S'\nporcelain with peachbloom glaze' +p30341 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d8e.jpg' +p30342 +sg25267 +g27 +sa(dp30343 +g25267 +g27 +sg25268 +S'Small Carved Chest' +p30344 +sg25270 +S'Ralph Boyer' +p30345 +sa(dp30346 +g25267 +g27 +sg25268 +S'Painted Guilford Chest' +p30347 +sg25270 +S'Edward F. Engel' +p30348 +sa(dp30349 +g25267 +g27 +sg25268 +S'Treasure Chest' +p30350 +sg25270 +S'Andrew Topolosky' +p30351 +sa(dp30352 +g25267 +g27 +sg25268 +S'Painted Wooden Chest' +p30353 +sg25270 +S'Daniel Fletcher' +p30354 +sa(dp30355 +g25267 +g27 +sg25268 +S'Chest (Front View)' +p30356 +sg25270 +S'Lawrence Flynn' +p30357 +sa(dp30358 +g25267 +g27 +sg25268 +S'Chest (Side View)' +p30359 +sg25270 +S'Lawrence Flynn' +p30360 +sa(dp30361 +g25267 +g27 +sg25268 +S'Painted Guilford Chest' +p30362 +sg25270 +S'Edward F. Engel' +p30363 +sa(dp30364 +g25267 +g27 +sg25268 +S'Side View of Guilford Painted Chest' +p30365 +sg25270 +S'Isabella Ruth Doerfler' +p30366 +sa(dp30367 +g25267 +g27 +sg25268 +S'Guilford Blanket Chest' +p30368 +sg25270 +S'Isabella Ruth Doerfler' +p30369 +sa(dp30370 +g25267 +g27 +sg25268 +S'Chest' +p30371 +sg25270 +S'Martin Partyka' +p30372 +sa(dp30373 +g25268 +S'Covered Box for Seal Paste' +p30374 +sg25270 +S'Chinese Qing Dynasty' +p30375 +sg25273 +S'overall: 3.5 x 7.2 cm (1 3/8 x 2 13/16 in.)' +p30376 +sg25275 +S'\nporcelain with peachbloom glaze' +p30377 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e022.jpg' +p30378 +sg25267 +S'This is one of the eight peachbloom shapes traditional for the \n scholar\'s desk, many of which can be found in English and American peachbloom collections.\n Among a group of boxes of superior quality and condition, the principal variable is the fortuitous effect of color and its \n distribution. The velvety surface of 1942.9.506 is richly mottled with dark \n red on the cover. The peachbloom glaze is paler on the lower section, \n becoming very light green at the closing edge. \n \n Notes

\n
\n \n \n ' +p30379 +sa(dp30380 +g25267 +g27 +sg25268 +S'Chest with Drawer' +p30381 +sg25270 +S'Isadore Goldberg' +p30382 +sa(dp30383 +g25267 +g27 +sg25268 +S'Sugar Chest' +p30384 +sg25270 +S'Sarah F. Williams' +p30385 +sa(dp30386 +g25267 +g27 +sg25268 +S'Sugar Chest' +p30387 +sg25270 +S'Harry Jennings' +p30388 +sa(dp30389 +g25267 +g27 +sg25268 +S'Chest on Frame' +p30390 +sg25270 +S'Artist Information (' +p30391 +sa(dp30392 +g25267 +g27 +sg25268 +S'Chest on Frame' +p30393 +sg25270 +S'B. Holst-Grubbe' +p30394 +sa(dp30395 +g25267 +g27 +sg25268 +S'Medicine Bottle Chest' +p30396 +sg25270 +S'Gilbert Sackerman' +p30397 +sa(dp30398 +g25267 +g27 +sg25268 +S'Medicine Chest' +p30399 +sg25270 +S'Joseph L. Boyd' +p30400 +sa(dp30401 +g25267 +g27 +sg25268 +S'Medicine Cabinet' +p30402 +sg25270 +S'Mattie P. Goodman' +p30403 +sa(dp30404 +g25267 +g27 +sg25268 +S'Portable Medicine Cabinet' +p30405 +sg25270 +S'Regina Henderer' +p30406 +sa(dp30407 +g25267 +g27 +sg25268 +S'Chest' +p30408 +sg25270 +S'Samuel Fineman' +p30409 +sa(dp30410 +g25268 +S'Covered Box for Seal Paste' +p30411 +sg25270 +S'Chinese Qing Dynasty' +p30412 +sg25273 +S'overall: 3.8 x 7.2 cm (1 1/2 x 2 13/16 in.)' +p30413 +sg25275 +S'\nporcelain with peachbloom glaze' +p30414 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d92.jpg' +p30415 +sg25267 +g27 +sa(dp30416 +g25267 +g27 +sg25268 +S'Cedar Chest' +p30417 +sg25270 +S'Henry Meyers' +p30418 +sa(dp30419 +g25267 +g27 +sg25268 +S'Early American Chest' +p30420 +sg25270 +S'Al Curry' +p30421 +sa(dp30422 +g25267 +g27 +sg25268 +S'Wooden Chest' +p30423 +sg25270 +S'James Dwyer' +p30424 +sa(dp30425 +g25267 +g27 +sg25268 +S'Wooden Chest' +p30426 +sg25270 +S'Eugene C. Miller' +p30427 +sa(dp30428 +g25267 +g27 +sg25268 +S'"Sea Chest", U.S. Navy' +p30429 +sg25270 +S'Willoughby Ions' +p30430 +sa(dp30431 +g25267 +g27 +sg25268 +S'Sea Chest' +p30432 +sg25270 +S'Artist Information (' +p30433 +sa(dp30434 +g25267 +g27 +sg25268 +S'Money Chest in Old Swedes Church' +p30435 +sg25270 +S'Samuel Fineman' +p30436 +sa(dp30437 +g25267 +g27 +sg25268 +S'Chest' +p30438 +sg25270 +S'Frederick Jackson' +p30439 +sa(dp30440 +g25267 +g27 +sg25268 +S'Chest' +p30441 +sg25270 +S'Columbus Simpson' +p30442 +sa(dp30443 +g25267 +g27 +sg25268 +S'Utility Chest' +p30444 +sg25270 +S'Albert Ryder' +p30445 +sa(dp30446 +g25268 +S'Covered Box for Seal Paste' +p30447 +sg25270 +S'Chinese Qing Dynasty' +p30448 +sg25273 +S'overall: 3.8 x 7.2 cm (1 1/2 x 2 13/16 in.)' +p30449 +sg25275 +S'\nporcelain with peachbloom glaze' +p30450 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d94.jpg' +p30451 +sg25267 +g27 +sa(dp30452 +g25267 +g27 +sg25268 +S'Utility Chest' +p30453 +sg25270 +S'Henry Tomaszewski' +p30454 +sa(dp30455 +g25267 +g27 +sg25268 +S'Utility Chest' +p30456 +sg25270 +S'Dorothy Handy' +p30457 +sa(dp30458 +g25267 +g27 +sg25268 +S'Chest' +p30459 +sg25270 +S'Katharine Morris' +p30460 +sa(dp30461 +g25267 +g27 +sg25268 +S'Chest' +p30462 +sg25270 +S'Georgine E. Mason' +p30463 +sa(dp30464 +g25267 +g27 +sg25268 +S'Chest' +p30465 +sg25270 +S'Henry Meyers' +p30466 +sa(dp30467 +g25267 +g27 +sg25268 +S'Blanket Chest' +p30468 +sg25270 +S'Sarah F. Williams' +p30469 +sa(dp30470 +g25267 +g27 +sg25268 +S'Chest with Drawers' +p30471 +sg25270 +S'Walter G. Capuozzo' +p30472 +sa(dp30473 +g25267 +g27 +sg25268 +S'Chest-on-Chest' +p30474 +sg25270 +S'Lorenz Rothkranz' +p30475 +sa(dp30476 +g25267 +g27 +sg25268 +S'Chest-on-Chest' +p30477 +sg25270 +S'Lawrence Phillips' +p30478 +sa(dp30479 +g25267 +g27 +sg25268 +S'Chest-on-Chest' +p30480 +sg25270 +S'Arthur Johnson' +p30481 +sa(dp30482 +g25268 +S'Covered Box for Seal Paste' +p30483 +sg25270 +S'Chinese Qing Dynasty' +p30484 +sg25273 +S'overall: 3.8 x 7.2 cm (1 1/2 x 2 13/16 in.)' +p30485 +sg25275 +S'\nporcelain with peachbloom glaze' +p30486 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d96.jpg' +p30487 +sg25267 +g27 +sa(dp30488 +g25267 +g27 +sg25268 +S'Chest-On-Chest' +p30489 +sg25270 +S'Frank Wenger' +p30490 +sa(dp30491 +g25267 +g27 +sg25268 +S'Chest-On-Chest' +p30492 +sg25270 +S'Arthur Johnson' +p30493 +sa(dp30494 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30495 +sg25270 +S'Francis Borelli' +p30496 +sa(dp30497 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30498 +sg25270 +S'Philip Johnson' +p30499 +sa(dp30500 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30501 +sg25270 +S'Lorenz Rothkranz' +p30502 +sa(dp30503 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30504 +sg25270 +S'Florence Neal' +p30505 +sa(dp30506 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30507 +sg25270 +S'Florence Neal' +p30508 +sa(dp30509 +g25267 +g27 +sg25268 +S'Guilford Painted Chest' +p30510 +sg25270 +S'Martin Partyka' +p30511 +sa(dp30512 +g25267 +g27 +sg25268 +S'Guilford Painted Chest' +p30513 +sg25270 +S'Martin Partyka' +p30514 +sa(dp30515 +g25267 +g27 +sg25268 +S'Side View of Guilford Painted Chest' +p30516 +sg25270 +S'Martin Partyka' +p30517 +sa(dp30518 +g25268 +S'Covered Box for Seal Paste' +p30519 +sg25270 +S'Chinese Qing Dynasty' +p30520 +sg25273 +S'overall: 3.8 x 7.2 cm (1 1/2 x 2 13/16 in.)' +p30521 +sg25275 +S'\nporcelain with peachbloom glaze' +p30522 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d98.jpg' +p30523 +sg25267 +g27 +sa(dp30524 +g25267 +g27 +sg25268 +S'Chest with Drawers' +p30525 +sg25270 +S'Isidore Sovensky' +p30526 +sa(dp30527 +g25267 +g27 +sg25268 +S'Blanket Chest' +p30528 +sg25270 +S'Martin Partyka' +p30529 +sa(dp30530 +g25267 +g27 +sg25268 +S'Painted Chest' +p30531 +sg25270 +S'Martin Partyka' +p30532 +sa(dp30533 +g25267 +g27 +sg25268 +S'Painted Chest' +p30534 +sg25270 +S'Ralph Boyer' +p30535 +sa(dp30536 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30537 +sg25270 +S'Charles Henning' +p30538 +sa(dp30539 +g25267 +g27 +sg25268 +S'Painted Chest of Drawers' +p30540 +sg25270 +S'Martin Partyka' +p30541 +sa(dp30542 +g25267 +g27 +sg25268 +S'Painted Chest of Drawers' +p30543 +sg25270 +S'Isabella Ruth Doerfler' +p30544 +sa(dp30545 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30546 +sg25270 +S'Francis Borelli' +p30547 +sa(dp30548 +g25267 +g27 +sg25268 +S'Block Front Chest of Drawers' +p30549 +sg25270 +S'Alvin M. Gully' +p30550 +sa(dp30551 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30552 +sg25270 +S'Jesus Pena' +p30553 +sa(dp30554 +g25268 +S'Petal-Decorated Vase' +p30555 +sg25270 +S'Chinese Qing Dynasty' +p30556 +sg25273 +S'overall: 21.3 x 8.8 cm (8 3/8 x 3 7/16 in.)' +p30557 +sg25275 +S'\nporcelain with peachbloom glaze' +p30558 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d9a.jpg' +p30559 +sg25267 +g27 +sa(dp30560 +g25267 +g27 +sg25268 +S'Chest' +p30561 +sg25270 +S'Lillian Causey' +p30562 +sa(dp30563 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30564 +sg25270 +S'American 20th Century' +p30565 +sa(dp30566 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30567 +sg25270 +S'Francis Law Durand' +p30568 +sa(dp30569 +g25267 +g27 +sg25268 +S'Butternut Wood Chest of Drawers' +p30570 +sg25270 +S'Lon Cronk' +p30571 +sa(dp30572 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30573 +sg25270 +S'M. Rosenshield-von-Paulin' +p30574 +sa(dp30575 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30576 +sg25270 +S'Ferdinand Cartier' +p30577 +sa(dp30578 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30579 +sg25270 +S'Arthur Johnson' +p30580 +sa(dp30581 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30582 +sg25270 +S'Arthur Johnson' +p30583 +sa(dp30584 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30585 +sg25270 +S'Lorenz Rothkranz' +p30586 +sa(dp30587 +g25267 +g27 +sg25268 +S'Chest' +p30588 +sg25270 +S'Henry Meyers' +p30589 +sa(dp30590 +g25268 +S'Petal-Decorated Vase' +p30591 +sg25270 +S'Chinese Qing Dynasty' +p30592 +sg25273 +S'overall: 20.9 x 8.9 cm (8 1/4 x 3 1/2 in.)' +p30593 +sg25275 +S'\nporcelain with peachbloom glaze' +p30594 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d9c.jpg' +p30595 +sg25267 +g27 +sa(dp30596 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30597 +sg25270 +S'Robert Stewart' +p30598 +sa(dp30599 +g25267 +S'Although carved decoration appears in Hepplewhite design, most Hepplewhite furniture\r\n is ornamented with inlays of contrasting woods which emphasize the graceful, sleek\r\n lines of the form. This bow-front chest of drawers illustrates the handsome effect\r\n achieved through contrasting veneers of richly figured mahogany and satinwood.\r\n The tiers of side drawers are ornamented with finely wrought fan inlays at the corners,\r\n and each drawer is further delineated by two narrow lines of inlay, called "stringing,"\r\n in contrasting wood. The curve of the chest front is emphasized by the light color\r\n of the central section of drawers; an inlaid oval medallion highlights the top drawer.\r\n The inlay shows the American eagle, a decorative motif favored by the patriotic\r\n citizens of the newly formed republic.\n ' +p30600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002cf.jpg' +p30601 +sg25268 +S'Chest of Drawers' +p30602 +sg25270 +S'Ferdinand Cartier' +p30603 +sa(dp30604 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30605 +sg25270 +S'Isidore Sovensky' +p30606 +sa(dp30607 +g25267 +g27 +sg25268 +S'Bombe Front Chest of Drawers' +p30608 +sg25270 +S'Alfred H. Smith' +p30609 +sa(dp30610 +g25267 +g27 +sg25268 +S'Highboy' +p30611 +sg25270 +S'Kurt Melzer' +p30612 +sa(dp30613 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30614 +sg25270 +S'Norma Lockwood' +p30615 +sa(dp30616 +g25267 +g27 +sg25268 +S'Lowboy' +p30617 +sg25270 +S'Henry Tomaszewski' +p30618 +sa(dp30619 +g25267 +g27 +sg25268 +S'Chest-Mahogany, Pine & Maple' +p30620 +sg25270 +S'Eva Wilson' +p30621 +sa(dp30622 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30623 +sg25270 +S'Frank Wenger' +p30624 +sa(dp30625 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30626 +sg25270 +S'Arthur Mathews' +p30627 +sa(dp30628 +g25268 +S'Petal-Decorated Vase' +p30629 +sg25270 +S'Chinese Qing Dynasty' +p30630 +sg25273 +S'overall: 20.8 x 8.8 cm (8 3/16 x 3 7/16 in.)' +p30631 +sg25275 +S'\nporcelain with peachbloom glaze' +p30632 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d9e.jpg' +p30633 +sg25267 +g27 +sa(dp30634 +g25267 +g27 +sg25268 +S'Bureau' +p30635 +sg25270 +S'Rex F. Bush' +p30636 +sa(dp30637 +g25267 +g27 +sg25268 +S'Cherry Chest of Drawers' +p30638 +sg25270 +S'Joseph Ficcadenti' +p30639 +sa(dp30640 +g25267 +g27 +sg25268 +S'Chest' +p30641 +sg25270 +S'Eva Wilson' +p30642 +sa(dp30643 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30644 +sg25270 +S'Walter G. Capuozzo' +p30645 +sa(dp30646 +g25267 +g27 +sg25268 +S'Clock' +p30647 +sg25270 +S'Lawrence Phillips' +p30648 +sa(dp30649 +g25267 +g27 +sg25268 +S'Clock' +p30650 +sg25270 +S'Lawrence Phillips' +p30651 +sa(dp30652 +g25267 +g27 +sg25268 +S'Wall Clock' +p30653 +sg25270 +S'Frank Wenger' +p30654 +sa(dp30655 +g25267 +g27 +sg25268 +S'Mantel Clock' +p30656 +sg25270 +S'Francis Law Durand' +p30657 +sa(dp30658 +g25267 +g27 +sg25268 +S'Shelf Clock' +p30659 +sg25270 +S'M. Rosenshield-von-Paulin' +p30660 +sa(dp30661 +g25267 +g27 +sg25268 +S'Clock Face' +p30662 +sg25270 +S'Gene Luedke' +p30663 +sa(dp30664 +g25268 +S'"Beehive" Water Pot' +p30665 +sg25270 +S'Chinese Qing Dynasty' +p30666 +sg25273 +S'overall: 8.3 x 12.7 cm (3 1/4 x 5 in.)' +p30667 +sg25275 +S'\nporcelain with peachbloom glaze' +p30668 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004da0.jpg' +p30669 +sg25267 +g27 +sa(dp30670 +g25267 +g27 +sg25268 +S'Shelf Clock' +p30671 +sg25270 +S'Frank Wenger' +p30672 +sa(dp30673 +g25267 +g27 +sg25268 +S'Eli Terry Clock' +p30674 +sg25270 +S'Herman O. Stroh' +p30675 +sa(dp30676 +g25267 +g27 +sg25268 +S'Mechanism of Eli Terry Clock' +p30677 +sg25270 +S'Herman O. Stroh' +p30678 +sa(dp30679 +g25267 +g27 +sg25268 +S'Wall Clock with Mantel' +p30680 +sg25270 +S'Richard Taylor' +p30681 +sa(dp30682 +g25267 +g27 +sg25268 +S'Side Chair' +p30683 +sg25270 +S'John Dana' +p30684 +sa(dp30685 +g25267 +g27 +sg25268 +S'Wing Chair' +p30686 +sg25270 +S'Isidore Sovensky' +p30687 +sa(dp30688 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30689 +sg25270 +S'Leonard Battee' +p30690 +sa(dp30691 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p30692 +sg25270 +S'Ferdinand Cartier' +p30693 +sa(dp30694 +g25267 +g27 +sg25268 +S'Shelf Clock' +p30695 +sg25270 +S'Frank Wenger' +p30696 +sa(dp30697 +g25267 +g27 +sg25268 +S'Clock' +p30698 +sg25270 +S'Rex F. Bush' +p30699 +sa(dp30700 +g25268 +S'"Beehive" Water Pot' +p30701 +sg25270 +S'Chinese Qing Dynasty' +p30702 +sg25273 +S'overall: 89 x 12.5 cm (35 1/16 x 4 15/16 in.)' +p30703 +sg25275 +S'\nporcelain with peachbloom glaze' +p30704 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004da2.jpg' +p30705 +sg25267 +g27 +sa(dp30706 +g25267 +g27 +sg25268 +S'Clock' +p30707 +sg25270 +S'Lawrence Phillips' +p30708 +sa(dp30709 +g25267 +g27 +sg25268 +S'Shelf Clock' +p30710 +sg25270 +S'Raymond Neumann' +p30711 +sa(dp30712 +g25267 +g27 +sg25268 +S'Wall Clock' +p30713 +sg25270 +S'Ulrich Fischer' +p30714 +sa(dp30715 +g25267 +g27 +sg25268 +S'Mantel Clock' +p30716 +sg25270 +S'Artist Information (' +p30717 +sa(dp30718 +g25267 +g27 +sg25268 +S'Shelf Clock' +p30719 +sg25270 +S'James Fisher' +p30720 +sa(dp30721 +g25267 +g27 +sg25268 +S'Wall Clock' +p30722 +sg25270 +S'Isadore Goldberg' +p30723 +sa(dp30724 +g25267 +g27 +sg25268 +S'Wall Clock' +p30725 +sg25270 +S'Lawrence Phillips' +p30726 +sa(dp30727 +g25267 +g27 +sg25268 +S'Wall Clock' +p30728 +sg25270 +S'Ernest Busenbark' +p30729 +sa(dp30730 +g25267 +g27 +sg25268 +S'Shelf Clock' +p30731 +sg25270 +S'Harry Eisman' +p30732 +sa(dp30733 +g25267 +g27 +sg25268 +S'Clock' +p30734 +sg25270 +S'Paul Ward' +p30735 +sa(dp30736 +g25268 +S'Amphora Vase' +p30737 +sg25270 +S'Chinese Qing Dynasty' +p30738 +sg25273 +S'overall: 15.7 x 5.2 cm (6 3/16 x 2 1/16 in.)' +p30739 +sg25275 +S'\nporcelain with peachbloom glaze' +p30740 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004da4.jpg' +p30741 +sg25267 +g27 +sa(dp30742 +g25267 +g27 +sg25268 +S'Pendulum Clock' +p30743 +sg25270 +S'John Jordan' +p30744 +sa(dp30745 +g25267 +g27 +sg25268 +S'Painted Clock' +p30746 +sg25270 +S'John Koehl' +p30747 +sa(dp30748 +g25267 +g27 +sg25268 +S'Clock' +p30749 +sg25270 +S'Arthur Mathews' +p30750 +sa(dp30751 +g25267 +g27 +sg25268 +S'Shelf Clock' +p30752 +sg25270 +S'Alvin M. Gully' +p30753 +sa(dp30754 +g25267 +g27 +sg25268 +S'Clock' +p30755 +sg25270 +S'Lawrence Phillips' +p30756 +sa(dp30757 +g25267 +g27 +sg25268 +S'Clock' +p30758 +sg25270 +S'Lawrence Phillips' +p30759 +sa(dp30760 +g25267 +g27 +sg25268 +S'Clock, Eight Day' +p30761 +sg25270 +S'Walter W. Jennings' +p30762 +sa(dp30763 +g25267 +g27 +sg25268 +S'Design on Door of Seth Thomas Clock' +p30764 +sg25270 +S'M.H. McDowell' +p30765 +sa(dp30766 +g25267 +g27 +sg25268 +S'Clock' +p30767 +sg25270 +S'Lawrence Phillips' +p30768 +sa(dp30769 +g25267 +g27 +sg25268 +S'Shelf Clock or Mantel Clock' +p30770 +sg25270 +S'James M. Lawson' +p30771 +sa(dp30772 +g25268 +S'Amphora Vase' +p30773 +sg25270 +S'Chinese Qing Dynasty' +p30774 +sg25273 +S'overall: 15.6 x 5.3 cm (6 1/8 x 2 1/16 in.)' +p30775 +sg25275 +S'\nporcelain with peachbloom glaze' +p30776 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004da6.jpg' +p30777 +sg25267 +g27 +sa(dp30778 +g25267 +g27 +sg25268 +S'Chest' +p30779 +sg25270 +S'B. Holst-Grubbe' +p30780 +sa(dp30781 +g25267 +g27 +sg25268 +S'Seth Thomas Clock' +p30782 +sg25270 +S'Arthur Mathews' +p30783 +sa(dp30784 +g25267 +g27 +sg25268 +S'Clock, Seth Thomas' +p30785 +sg25270 +S'Dana Bartlett' +p30786 +sa(dp30787 +g25267 +g27 +sg25268 +S'Alarm Clock (Timepiece)' +p30788 +sg25270 +S'Francis Law Durand' +p30789 +sa(dp30790 +g25267 +g27 +sg25268 +S'Mahogany Clock' +p30791 +sg25270 +S'Carl Buergerniss' +p30792 +sa(dp30793 +g25267 +g27 +sg25268 +S'Shelf Clock' +p30794 +sg25270 +S'Edward Bashaw' +p30795 +sa(dp30796 +g25267 +g27 +sg25268 +S'Seth Thomas Clock' +p30797 +sg25270 +S'Arthur Mathews' +p30798 +sa(dp30799 +g25267 +g27 +sg25268 +S'Mantel Clock' +p30800 +sg25270 +S'Ralph Atkinson' +p30801 +sa(dp30802 +g25267 +g27 +sg25268 +S'Shelf Clock' +p30803 +sg25270 +S'Artist Information (' +p30804 +sa(dp30805 +g25267 +g27 +sg25268 +S'Shelf Clock' +p30806 +sg25270 +S'Artist Information (' +p30807 +sa(dp30808 +g25268 +S'Amphora Vase' +p30809 +sg25270 +S'Chinese Qing Dynasty' +p30810 +sg25273 +S'overall: 15.6 x 5.3 cm (6 1/8 x 2 1/16 in.)' +p30811 +sg25275 +S'\nporcelain with peachbloom glaze' +p30812 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004da8.jpg' +p30813 +sg25267 +g27 +sa(dp30814 +g25267 +g27 +sg25268 +S'Wall Clock' +p30815 +sg25270 +S'Marie Famularo' +p30816 +sa(dp30817 +g25267 +g27 +sg25268 +S'Shelf Clock' +p30818 +sg25270 +S'Ferdinand Cartier' +p30819 +sa(dp30820 +g25267 +g27 +sg25268 +S'Shelf Clock' +p30821 +sg25270 +S'Ferdinand Cartier' +p30822 +sa(dp30823 +g25267 +g27 +sg25268 +S'Wall Clock Antique' +p30824 +sg25270 +S'Jordan E.' +p30825 +sa(dp30826 +g25267 +g27 +sg25268 +S'Clock' +p30827 +sg25270 +S'Frank Wenger' +p30828 +sa(dp30829 +g25267 +g27 +sg25268 +S'Mantel Clock' +p30830 +sg25270 +S'Ernest A. Towers, Jr.' +p30831 +sa(dp30832 +g25267 +g27 +sg25268 +S'Mantel Clock' +p30833 +sg25270 +S'Artist Information (' +p30834 +sa(dp30835 +g25267 +g27 +sg25268 +S'Jewelers Sign Watch' +p30836 +sg25270 +S'Paul Poffinbarger' +p30837 +sa(dp30838 +g25267 +g27 +sg25268 +S'Ansonia Clock' +p30839 +sg25270 +S'Edith Magnette' +p30840 +sa(dp30841 +g25267 +g27 +sg25268 +S'Metal Wall Clock' +p30842 +sg25270 +S'Peter Connin' +p30843 +sa(dp30844 +g25268 +S'Amphora Vase' +p30845 +sg25270 +S'Chinese Qing Dynasty' +p30846 +sg25273 +S'overall: 15.7 x 5.2 cm (6 3/16 x 2 1/16 in.)' +p30847 +sg25275 +S'\nporcelain with peachbloom glaze' +p30848 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004daa.jpg' +p30849 +sg25267 +g27 +sa(dp30850 +g25267 +g27 +sg25268 +S'Banjo Clock' +p30851 +sg25270 +S'Frank M. Keane' +p30852 +sa(dp30853 +g25267 +g27 +sg25268 +S'Wall Clock' +p30854 +sg25270 +S'Lawrence Phillips' +p30855 +sa(dp30856 +g25267 +g27 +sg25268 +S'Banjo Clock' +p30857 +sg25270 +S'M. Rosenshield-von-Paulin' +p30858 +sa(dp30859 +g25267 +g27 +sg25268 +S'Clock' +p30860 +sg25270 +S'John Dieterich' +p30861 +sa(dp30862 +g25267 +g27 +sg25268 +S'Clock' +p30863 +sg25270 +S'John Dieterich' +p30864 +sa(dp30865 +g25267 +g27 +sg25268 +S'Banjo Clock' +p30866 +sg25270 +S'Ulrich Fischer' +p30867 +sa(dp30868 +g25267 +g27 +sg25268 +S'Banjo Clock' +p30869 +sg25270 +S'Nicholas Gorid' +p30870 +sa(dp30871 +g25267 +g27 +sg25268 +S'Wall Clock' +p30872 +sg25270 +S'Thomas Holloway' +p30873 +sa(dp30874 +g25267 +g27 +sg25268 +S'Clock, Girandole' +p30875 +sg25270 +S'George Loughridge' +p30876 +sa(dp30877 +g25267 +g27 +sg25268 +S'Banjo Clock' +p30878 +sg25270 +S'Ralph Morton' +p30879 +sa(dp30880 +g25268 +S'Amphora Vase' +p30881 +sg25270 +S'Chinese Qing Dynasty' +p30882 +sg25273 +S'overall: 15.4 x 5.3 cm (6 1/16 x 2 1/16 in.)' +p30883 +sg25275 +S'\nporcelain with peachbloom glaze' +p30884 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dac.jpg' +p30885 +sg25267 +g27 +sa(dp30886 +g25267 +g27 +sg25268 +S'Wall Clock' +p30887 +sg25270 +S'John Cutting' +p30888 +sa(dp30889 +g25267 +g27 +sg25268 +S'Watch Clock' +p30890 +sg25270 +S'Artist Information (' +p30891 +sa(dp30892 +g25267 +g27 +sg25268 +S'Clock' +p30893 +sg25270 +S'Florence Stevenson' +p30894 +sa(dp30895 +g25267 +g27 +sg25268 +S'Wall Clock' +p30896 +sg25270 +S'Albert Camilli' +p30897 +sa(dp30898 +g25267 +g27 +sg25268 +S'Shelf Clock' +p30899 +sg25270 +S'Louis Plogsted' +p30900 +sa(dp30901 +g25267 +g27 +sg25268 +S'Clock' +p30902 +sg25270 +S'Albert Eyth' +p30903 +sa(dp30904 +g25267 +g27 +sg25268 +S'J.C. Brown Clock' +p30905 +sg25270 +S'William O. Fletcher' +p30906 +sa(dp30907 +g25267 +g27 +sg25268 +S'Shelf Clock' +p30908 +sg25270 +S'Lorenz Rothkranz' +p30909 +sa(dp30910 +g25267 +g27 +sg25268 +S'Mantel Clock' +p30911 +sg25270 +S'Francis Law Durand' +p30912 +sa(dp30913 +g25267 +g27 +sg25268 +S'Clock' +p30914 +sg25270 +S'Lawrence Phillips' +p30915 +sa(dp30916 +g25268 +S'Petal-Decorated Vase' +p30917 +sg25270 +S'Chinese Qing Dynasty' +p30918 +sg25273 +S'overall: 21.2 x 8.9 cm (8 3/8 x 3 1/2 in.)' +p30919 +sg25275 +S'\nporcelain with peachbloom glaze' +p30920 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dae.jpg' +p30921 +sg25267 +g27 +sa(dp30922 +g25267 +g27 +sg25268 +S'Clock' +p30923 +sg25270 +S'Lawrence Phillips' +p30924 +sa(dp30925 +g25267 +g27 +sg25268 +S'Clock' +p30926 +sg25270 +S'Walter W. Jennings' +p30927 +sa(dp30928 +g25267 +g27 +sg25268 +S'Mantel Clock' +p30929 +sg25270 +S'Ernest A. Towers, Jr.' +p30930 +sa(dp30931 +g25267 +g27 +sg25268 +S'Clock' +p30932 +sg25270 +S'Lawrence Phillips' +p30933 +sa(dp30934 +g25267 +g27 +sg25268 +S'Shelf Clock' +p30935 +sg25270 +S'Frank Wenger' +p30936 +sa(dp30937 +g25267 +g27 +sg25268 +S'Shelf Clock' +p30938 +sg25270 +S'Lawrence Phillips' +p30939 +sa(dp30940 +g25267 +g27 +sg25268 +S'Clock' +p30941 +sg25270 +S'Lorenz Rothkranz' +p30942 +sa(dp30943 +g25267 +g27 +sg25268 +S'Shelf Clock' +p30944 +sg25270 +S'Therkel Anderson' +p30945 +sa(dp30946 +g25267 +g27 +sg25268 +S'Clock' +p30947 +sg25270 +S'Dorothea A. Farrington' +p30948 +sa(dp30949 +g25267 +g27 +sg25268 +S'Shelf Clock' +p30950 +sg25270 +S'Francis Law Durand' +p30951 +sa(dp30952 +g25268 +S'Matteo Olivieri (?)' +p30953 +sg25270 +S'Florentine 15th Century' +p30954 +sg25273 +S'tempera (and oil?) on panel transferred to canvas' +p30955 +sg25275 +S'1430s' +p30956 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005d8.jpg' +p30957 +sg25267 +S'This portrait is among the first from the Renaissance. During the late Middle Ages, depictions of individual donors had often been included in religious paintings, but it was not until the early fifteenth century that independent portraits were commissioned. The earliest ones are, like these, simple—even austere—profile views. Very likely, they were influenced by portrait busts and the profile heads on ancient gems and coins, which were avidly collected by Renaissance humanists. The popularity of the independent portrait was spurred by a new focus on the individual and an appreciation of individual accomplishments—a new conception of fame.\n Probably, the portrait is of Matteo Olivieri—his name appears on the ledge—and was originally paired with one of his son Michele, who may have commissioned both works. Though painted long after Matteo had died (he left a will in 1365), the portrait depicts a young man, as did the portrait of his son, who must have been at least sixty-five when the works were painted. Most portraits were probably commissioned as commemorations of the deceased by families who wished to remember them in the prime of life. As Renaissance art theorist Alberti noted, a portrait "like friendship can make an absent man seem present and a dead one seem alive."\n ' +p30958 +sa(dp30959 +g25268 +S'Madonna and Child' +p30960 +sg25270 +S'Bartolomeo Montagna' +p30961 +sg25273 +S'oil on panel' +p30962 +sg25275 +S'c. 1490' +p30963 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000086d.jpg' +p30964 +sg25267 +g27 +sa(dp30965 +g25268 +S'Petal-Decorated Vase' +p30966 +sg25270 +S'Chinese Qing Dynasty' +p30967 +sg25273 +S'overall: 21.3 x 8.9 cm (8 3/8 x 3 1/2 in.)' +p30968 +sg25275 +S'\nporcelain with peachbloom glaze' +p30969 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004db0.jpg' +p30970 +sg25267 +g27 +sa(dp30971 +g25267 +g27 +sg25268 +S'Mantel Clock' +p30972 +sg25270 +S'Francis Law Durand' +p30973 +sa(dp30974 +g25267 +g27 +sg25268 +S'Mantle Clock' +p30975 +sg25270 +S'Richard Taylor' +p30976 +sa(dp30977 +g25267 +g27 +sg25268 +S'Mantle Clock' +p30978 +sg25270 +S'John B. Moll' +p30979 +sa(dp30980 +g25267 +g27 +sg25268 +S'Mantle Clock' +p30981 +sg25270 +S'Ernest A. Towers, Jr.' +p30982 +sa(dp30983 +g25267 +g27 +sg25268 +S'Shelf Clock' +p30984 +sg25270 +S'Lawrence Phillips' +p30985 +sa(dp30986 +g25267 +g27 +sg25268 +S'Shelf Clock' +p30987 +sg25270 +S'Lawrence Phillips' +p30988 +sa(dp30989 +g25267 +g27 +sg25268 +S'Clock' +p30990 +sg25270 +S'Edith Miller' +p30991 +sa(dp30992 +g25267 +g27 +sg25268 +S'Steeple Clock' +p30993 +sg25270 +S'Arthur Mathews' +p30994 +sa(dp30995 +g25267 +g27 +sg25268 +S'Steeple Clock' +p30996 +sg25270 +S'Francis Law Durand' +p30997 +sa(dp30998 +g25267 +g27 +sg25268 +S'Clock' +p30999 +sg25270 +S'Lawrence Phillips' +p31000 +sa(dp31001 +g25268 +S'Covered Box for Seal Paste' +p31002 +sg25270 +S'Chinese Qing Dynasty' +p31003 +sg25273 +S'overall: 3.8 x 7.2 cm (1 1/2 x 2 13/16 in.)' +p31004 +sg25275 +S'\nporcelain with peachbloom glaze' +p31005 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004db2.jpg' +p31006 +sg25267 +g27 +sa(dp31007 +g25267 +g27 +sg25268 +S'Clock' +p31008 +sg25270 +S'Lawrence Phillips' +p31009 +sa(dp31010 +g25267 +g27 +sg25268 +S'Mantle Clock' +p31011 +sg25270 +S'Lon Cronk' +p31012 +sa(dp31013 +g25267 +g27 +sg25268 +S'Clock' +p31014 +sg25270 +S'Ralph Morton' +p31015 +sa(dp31016 +g25267 +g27 +sg25268 +S'Seth Thomas Clock (?)' +p31017 +sg25270 +S'J. Herman McCollum' +p31018 +sa(dp31019 +g25267 +g27 +sg25268 +S'Clock' +p31020 +sg25270 +S'Lawrence Phillips' +p31021 +sa(dp31022 +g25267 +g27 +sg25268 +S'Clock' +p31023 +sg25270 +S'Grace Halpin' +p31024 +sa(dp31025 +g25267 +g27 +sg25268 +S'Clock-Toby (front and side view)' +p31026 +sg25270 +S'Ralph Atkinson' +p31027 +sa(dp31028 +g25267 +g27 +sg25268 +S'Clock' +p31029 +sg25270 +S'John Dieterich' +p31030 +sa(dp31031 +g25267 +g27 +sg25268 +S'Clock' +p31032 +sg25270 +S'Lawrence Phillips' +p31033 +sa(dp31034 +g25267 +g27 +sg25268 +S'Shelf Clock' +p31035 +sg25270 +S'Manuel G. Runyan' +p31036 +sa(dp31037 +g25268 +S'Covered Box for Seal Paste' +p31038 +sg25270 +S'Chinese Qing Dynasty' +p31039 +sg25273 +S'overall: 3.7 x 7.2 cm (1 7/16 x 2 13/16 in.)' +p31040 +sg25275 +S'\nporcelain with peachbloom glaze' +p31041 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004db4.jpg' +p31042 +sg25267 +g27 +sa(dp31043 +g25267 +g27 +sg25268 +S'Mantle Clock' +p31044 +sg25270 +S'John Cutting' +p31045 +sa(dp31046 +g25267 +g27 +sg25268 +S'Clock' +p31047 +sg25270 +S'Edward L. Loper' +p31048 +sa(dp31049 +g25267 +g27 +sg25268 +S'Lyre Clock' +p31050 +sg25270 +S'Isidore Sovensky' +p31051 +sa(dp31052 +g25267 +g27 +sg25268 +S'Eight Day Marine Clock' +p31053 +sg25270 +S'Edward L. Loper' +p31054 +sa(dp31055 +g25267 +g27 +sg25268 +S'Magic Lamp Clock in 18th Century Figure' +p31056 +sg25270 +S'George File' +p31057 +sa(dp31058 +g25267 +g27 +sg25268 +S'Decorated Cast Iron Clock' +p31059 +sg25270 +S'George H. Alexander' +p31060 +sa(dp31061 +g25267 +g27 +sg25268 +S'Clock - Lyre Type' +p31062 +sg25270 +S'Rex F. Bush' +p31063 +sa(dp31064 +g25267 +g27 +sg25268 +S"Grandfather's Clock" +p31065 +sg25270 +S'Geoffrey Holt' +p31066 +sa(dp31067 +g25267 +g27 +sg25268 +S'Grandfather Clock, Angular View' +p31068 +sg25270 +S'Dana Bartlett' +p31069 +sa(dp31070 +g25267 +g27 +sg25268 +S'Grandfather Clock Dial' +p31071 +sg25270 +S'Geoffrey Holt' +p31072 +sa(dp31073 +g25268 +S'Vase' +p31074 +sg25270 +S'Chinese Qing Dynasty' +p31075 +sg25273 +S'overall: 39.3 x 19.7 cm (15 1/2 x 7 3/4 in.)' +p31076 +sg25275 +S'\nporcelain with oxblood glaze' +p31077 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004db5.jpg' +p31078 +sg25267 +g27 +sa(dp31079 +g25267 +g27 +sg25268 +S'Grandfather Clock' +p31080 +sg25270 +S'Cornelius Christoffels' +p31081 +sa(dp31082 +g25267 +g27 +sg25268 +S'Tall Clock' +p31083 +sg25270 +S'Lawrence Phillips' +p31084 +sa(dp31085 +g25267 +g27 +sg25268 +S'Grandfather Clock' +p31086 +sg25270 +S'Ernest A. Towers, Jr.' +p31087 +sa(dp31088 +g25267 +g27 +sg25268 +S'Grandfather Clock' +p31089 +sg25270 +S'Ernest A. Towers, Jr.' +p31090 +sa(dp31091 +g25267 +g27 +sg25268 +S"Grandfather's Clock" +p31092 +sg25270 +S'Ernest A. Towers, Jr.' +p31093 +sa(dp31094 +g25267 +g27 +sg25268 +S'Grandfather Clock' +p31095 +sg25270 +S'Ernest A. Towers, Jr.' +p31096 +sa(dp31097 +g25267 +g27 +sg25268 +S'Grandfather Clock' +p31098 +sg25270 +S'Ernest A. Towers, Jr.' +p31099 +sa(dp31100 +g25267 +g27 +sg25268 +S"Grandfather's Clock" +p31101 +sg25270 +S'Ernest A. Towers, Jr.' +p31102 +sa(dp31103 +g25267 +g27 +sg25268 +S"Grandfather's Clock" +p31104 +sg25270 +S'Ernest A. Towers, Jr.' +p31105 +sa(dp31106 +g25267 +g27 +sg25268 +S"Grandfather's Clock" +p31107 +sg25270 +S'Ernest A. Towers, Jr.' +p31108 +sa(dp31109 +g25268 +S'Vase' +p31110 +sg25270 +S'Chinese Qing Dynasty' +p31111 +sg25273 +S'overall: 43.3 x 19.7 cm (17 1/16 x 7 3/4 in.)' +p31112 +sg25275 +S'\nporcelain with oxblood glaze' +p31113 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004db6.jpg' +p31114 +sg25267 +g27 +sa(dp31115 +g25267 +g27 +sg25268 +S'Grandfather Clock' +p31116 +sg25270 +S'Ernest A. Towers, Jr.' +p31117 +sa(dp31118 +g25267 +g27 +sg25268 +S'Grandfather Clock' +p31119 +sg25270 +S'Ernest A. Towers, Jr.' +p31120 +sa(dp31121 +g25267 +g27 +sg25268 +S"Grandfather's Clock" +p31122 +sg25270 +S'Ernest A. Towers, Jr.' +p31123 +sa(dp31124 +g25267 +g27 +sg25268 +S"Grandfather's Clock" +p31125 +sg25270 +S'Ernest A. Towers, Jr.' +p31126 +sa(dp31127 +g25267 +g27 +sg25268 +S'Grandfather Clock' +p31128 +sg25270 +S'James Fisher' +p31129 +sa(dp31130 +g25267 +g27 +sg25268 +S'Duncan Beard Grandfather Clock' +p31131 +sg25270 +S'Ernest A. Towers, Jr.' +p31132 +sa(dp31133 +g25267 +g27 +sg25268 +S"Grandfather's Clock" +p31134 +sg25270 +S'Ralph Morton' +p31135 +sa(dp31136 +g25267 +g27 +sg25268 +S"Grandfather's Clock" +p31137 +sg25270 +S'Cornelius Frazier' +p31138 +sa(dp31139 +g25267 +g27 +sg25268 +S'Grandfather Clock' +p31140 +sg25270 +S'Alfred Koehn' +p31141 +sa(dp31142 +g25267 +g27 +sg25268 +S'Clock, Tall' +p31143 +sg25270 +S'Virginia Richards' +p31144 +sa(dp31145 +g25268 +S'Vase, called "The Fire Cloud"' +p31146 +sg25270 +S'Chinese Qing Dynasty' +p31147 +sg25273 +S'overall: 43.8 x 18.1 cm (17 1/4 x 7 1/8 in.)' +p31148 +sg25275 +S'\nporcelain with oxblood glaze' +p31149 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004db7.jpg' +p31150 +sg25267 +g27 +sa(dp31151 +g25267 +g27 +sg25268 +S'Clock (Grandfather)' +p31152 +sg25270 +S'Lawrence Phillips' +p31153 +sa(dp31154 +g25267 +g27 +sg25268 +S"Hall Clock (Grandfather's Clock)" +p31155 +sg25270 +S'Theodore Pfitzer' +p31156 +sa(dp31157 +g25267 +g27 +sg25268 +S'Wall Clock' +p31158 +sg25270 +S'Therkel Anderson' +p31159 +sa(dp31160 +g25267 +g27 +sg25268 +S'Shelf Clock' +p31161 +sg25270 +S'Ulrich Fischer' +p31162 +sa(dp31163 +g25267 +g27 +sg25268 +S'Shelf Clock' +p31164 +sg25270 +S'Ulrich Fischer' +p31165 +sa(dp31166 +g25267 +g27 +sg25268 +S'Miniature Tall Clock' +p31167 +sg25270 +S'Isadore Goldberg' +p31168 +sa(dp31169 +g25267 +g27 +sg25268 +S"Grandfather's Clock" +p31170 +sg25270 +S'Frederick Jackson' +p31171 +sa(dp31172 +g25267 +g27 +sg25268 +S'Clock' +p31173 +sg25270 +S'Nicholas Gorid' +p31174 +sa(dp31175 +g25267 +g27 +sg25268 +S"Grandfather's Clock (Old Pine)" +p31176 +sg25270 +S'Edith Magnette' +p31177 +sa(dp31178 +g25267 +g27 +sg25268 +S'Grandfather Clock' +p31179 +sg25270 +S'A. Zaidenberg' +p31180 +sa(dp31181 +g25268 +S'Vase, called "The Flame"' +p31182 +sg25270 +S'Chinese Qing Dynasty' +p31183 +sg25273 +S'overall: 43.8 x 17.8 cm (17 1/4 x 7 in.)' +p31184 +sg25275 +S'\nporcelain with oxblood glaze' +p31185 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004db8.jpg' +p31186 +sg25267 +S'The tall, slender shape of this baluster vase is quite restrained. The \n mouth turns outward only slightly; the neck is short, the shoulder \n sloping.\n The porcelain is fine-textured, white, and smooth where it is revealed on the \n carefully beveled foot-ring. A transparent, pale greenish glaze covers the inside \n and the base. On the outside, the dark red of the glaze drains away from the \n lip and streaks down the sides from the shoulder, becoming very deep in color \n on the lower half of the vessel. The glaze collects just at the bevel of the \n foot in a thick, perfectly controlled welt. On one side of the body there is \n a lighter streaked area. These color variations give the piece a lively individuality. \n At some time in its recent history, an unknown connoisseur aptly named this \n vase "The Flame."\n (Text by Josephine Hadley Knapp, published in the NGA Systematic Catalogue: \n Notes

\n
\n \n \n \n ' +p31187 +sa(dp31188 +g25267 +g27 +sg25268 +S"Grandfather's Clock" +p31189 +sg25270 +S'Francis Law Durand' +p31190 +sa(dp31191 +g25267 +g27 +sg25268 +S"Moon Disc Paintings for Grandfather's Clock" +p31192 +sg25270 +S'Francis Law Durand' +p31193 +sa(dp31194 +g25267 +g27 +sg25268 +S'Grandfather Clock (Timepiece)' +p31195 +sg25270 +S'Francis Law Durand' +p31196 +sa(dp31197 +g25267 +g27 +sg25268 +S"Grandfather's Clock (Timepiece)" +p31198 +sg25270 +S'Francis Law Durand' +p31199 +sa(dp31200 +g25267 +g27 +sg25268 +S"Grandfather's Clock (Timepiece)" +p31201 +sg25270 +S'Francis Law Durand' +p31202 +sa(dp31203 +g25267 +g27 +sg25268 +S'Tall Clock' +p31204 +sg25270 +S'Elizabeth Curtis' +p31205 +sa(dp31206 +g25267 +g27 +sg25268 +S'Clock' +p31207 +sg25270 +S'American 20th Century' +p31208 +sa(dp31209 +g25267 +g27 +sg25268 +S'Tall Clock' +p31210 +sg25270 +S'Lawrence Phillips' +p31211 +sa(dp31212 +g25267 +g27 +sg25268 +S'Tall Clock' +p31213 +sg25270 +S'Isidore Sovensky' +p31214 +sa(dp31215 +g25267 +g27 +sg25268 +S'Clock Face' +p31216 +sg25270 +S'Ann Gene Buckley' +p31217 +sa(dp31218 +g25268 +S'Vase' +p31219 +sg25270 +S'Chinese Qing Dynasty' +p31220 +sg25273 +S'overall: 42.1 x 18.7 cm (16 9/16 x 7 3/8 in.)' +p31221 +sg25275 +S'\nporcelain with oxblood glaze' +p31222 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004db9.jpg' +p31223 +sg25267 +g27 +sa(dp31224 +g25267 +g27 +sg25268 +S'Tall Clock' +p31225 +sg25270 +S'Arsen Maralian' +p31226 +sa(dp31227 +g25267 +g27 +sg25268 +S'Tall Clock' +p31228 +sg25270 +S'Arthur Johnson' +p31229 +sa(dp31230 +g25267 +g27 +sg25268 +S'Clock' +p31231 +sg25270 +S'Nicholas Gorid' +p31232 +sa(dp31233 +g25267 +g27 +sg25268 +S'Clock' +p31234 +sg25270 +S'Nicholas Gorid' +p31235 +sa(dp31236 +g25267 +g27 +sg25268 +S'Tall Clock' +p31237 +sg25270 +S'Frank Wenger' +p31238 +sa(dp31239 +g25267 +g27 +sg25268 +S'Clock (Chronometer)' +p31240 +sg25270 +S'William Frank' +p31241 +sa(dp31242 +g25267 +g27 +sg25268 +S'"Grandfather" Clock' +p31243 +sg25270 +S'Magnus S. Fossum' +p31244 +sa(dp31245 +g25267 +g27 +sg25268 +S'Clock Face' +p31246 +sg25270 +S'Ann Gene Buckley' +p31247 +sa(dp31248 +g25267 +g27 +sg25268 +S'Clock Face' +p31249 +sg25270 +S'Ann Gene Buckley' +p31250 +sa(dp31251 +g25267 +g27 +sg25268 +S'Clock Case' +p31252 +sg25270 +S'John Dieterich' +p31253 +sa(dp31254 +g25268 +S'Vase' +p31255 +sg25270 +S'Chinese Qing Dynasty' +p31256 +sg25273 +S'overall: 42.7 x 21.6 cm (16 13/16 x 8 1/2 in.)' +p31257 +sg25275 +S'\nporcelain with oxblood glaze' +p31258 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dba.jpg' +p31259 +sg25267 +g27 +sa(dp31260 +g25267 +g27 +sg25268 +S'Clock' +p31261 +sg25270 +S'John Dieterich' +p31262 +sa(dp31263 +g25267 +g27 +sg25268 +S'Clock' +p31264 +sg25270 +S'Artist Information (' +p31265 +sa(dp31266 +g25267 +g27 +sg25268 +S'Clock' +p31267 +sg25270 +S'Gilbert Sackerman' +p31268 +sa(dp31269 +g25267 +g27 +sg25268 +S'Church Clock Hands' +p31270 +sg25270 +S'Walter Praefke' +p31271 +sa(dp31272 +g25267 +g27 +sg25268 +S'Grandfather Clock' +p31273 +sg25270 +S'Nicholas Gorid' +p31274 +sa(dp31275 +g25267 +g27 +sg25268 +S"Grandfather's Clock" +p31276 +sg25270 +S'J.F. Rust' +p31277 +sa(dp31278 +g25267 +g27 +sg25268 +S'Hall Clock (Miniature)' +p31279 +sg25270 +S'Albert Gold' +p31280 +sa(dp31281 +g25267 +g27 +sg25268 +S'China Cabinet' +p31282 +sg25270 +S'Ferdinand Cartier' +p31283 +sa(dp31284 +g25267 +g27 +sg25268 +S'Design from China Closet' +p31285 +sg25270 +S'Ferdinand Cartier' +p31286 +sa(dp31287 +g25267 +g27 +sg25268 +S'China Closet' +p31288 +sg25270 +S'Artist Information (' +p31289 +sa(dp31290 +g25268 +S'Covered Box for Seal Paste' +p31291 +sg25270 +S'Chinese Qing Dynasty' +p31292 +sg25273 +S'overall: 3.7 x 7.2 cm (1 7/16 x 2 13/16 in.)' +p31293 +sg25275 +S'\nporcelain with peachbloom glaze' +p31294 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dbc.jpg' +p31295 +sg25267 +g27 +sa(dp31296 +g25267 +g27 +sg25268 +S'China Cupboard' +p31297 +sg25270 +S'Edward A. Darby' +p31298 +sa(dp31299 +g25267 +g27 +sg25268 +S'China Closet' +p31300 +sg25270 +S'Henry Meyers' +p31301 +sa(dp31302 +g25267 +g27 +sg25268 +S'Corner Cupboard' +p31303 +sg25270 +S'Michael Riccitelli' +p31304 +sa(dp31305 +g25267 +g27 +sg25268 +S'Corner Cupboard' +p31306 +sg25270 +S'Ferdinand Cartier' +p31307 +sa(dp31308 +g25267 +g27 +sg25268 +S'Corner Cupboard' +p31309 +sg25270 +S'Ferdinand Cartier' +p31310 +sa(dp31311 +g25267 +g27 +sg25268 +S'Corner Cupboard' +p31312 +sg25270 +S'Leslie Macklem' +p31313 +sa(dp31314 +g25267 +g27 +sg25268 +S'Corner Cupboard' +p31315 +sg25270 +S'George V. Vezolles' +p31316 +sa(dp31317 +g25267 +g27 +sg25268 +S'Corner Cupboard' +p31318 +sg25270 +S'George V. Vezolles' +p31319 +sa(dp31320 +g25267 +g27 +sg25268 +S'Corner Cupboard' +p31321 +sg25270 +S'Henry Moran' +p31322 +sa(dp31323 +g25267 +g27 +sg25268 +S'Corner Cupboard' +p31324 +sg25270 +S'George Fairbanks' +p31325 +sa(dp31326 +g25268 +S'Baluster Vase with Dragon Handles' +p31327 +sg25270 +S'Chinese Ming Dynasty' +p31328 +sg25273 +S'overall: 39.9 x 13.9 cm (15 11/16 x 5 1/2 in.)' +p31329 +sg25275 +S'\nporcelain with green glaze' +p31330 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dbe.jpg' +p31331 +sg25267 +S'This tall, slender vase is a more elegant and attenuated version of the customarily \n sturdy Ming baluster vase shape.\n The two creatures climbing the sides of the neck are descendants of Bronze \n Age dragons, with manes and bifurcated tails.\n The glaze is a brilliant glossy emerald green. Originally, most of the surface \n was decorated in gold. So much has been lost that only here and there can a \n fleck of actual gold be seen. Owing to changes in surface gloss, in certain \n reflected light the evanescent design can be detected. A residue of the adhesive \n of the lost gold painting has remained on the glossy surface of the glaze. It \n is possible to make out floral scrolls, a scroll band at the base, lotus and \n water plants, and a starlike band. Gilding is a frequent addition to the surface \n of porcelains in the Ming and Qing periods, either alone, as in this Ming example, \n or in combination with low-fired lead enamels on single colored glazes, or with \n the \n It is interesting to speculate on the possible relationship of this vase to \n An almost identical vase of impeccable provenance is in the Baltimore Museum of Art. It was formerly in the collections of William H. Whitridge, J. P. Morgan, and Marsden Perry.\n There are examples of this same general shape but of heavier appearance dating from as early as the fifteenth century. Wares of this type are thought to be products of unofficial kilns, which assumed growing importance in the last part of the Ming dynasty as a result of weak imperial patronage.\n (Text by Josephine Hadley Knapp, published in the NGA Systematic Catalogue: \n Notes\n \n \n \n \n ' +p31332 +sa(dp31333 +g25267 +g27 +sg25268 +S'Cradle' +p31334 +sg25270 +S'Albert Gold' +p31335 +sa(dp31336 +g25267 +g27 +sg25268 +S"Child's Cradle" +p31337 +sg25270 +S'Gerald Bernhardt' +p31338 +sa(dp31339 +g25267 +g27 +sg25268 +S'Cradle' +p31340 +sg25270 +S'Gerald Bernhardt' +p31341 +sa(dp31342 +g25267 +g27 +sg25268 +S'Cradle' +p31343 +sg25270 +S'Ulrich Fischer' +p31344 +sa(dp31345 +g25267 +g27 +sg25268 +S"Baby's Cradle" +p31346 +sg25270 +S'Edna C. Rex' +p31347 +sa(dp31348 +g25267 +g27 +sg25268 +S'Cradle' +p31349 +sg25270 +S'Alfred H. Smith' +p31350 +sa(dp31351 +g25267 +g27 +sg25268 +S'Cradle' +p31352 +sg25270 +S'Karl Joubert' +p31353 +sa(dp31354 +g25267 +g27 +sg25268 +S'Cradle' +p31355 +sg25270 +S'Louis Plogsted' +p31356 +sa(dp31357 +g25267 +g27 +sg25268 +S'Cradle' +p31358 +sg25270 +S'Archie Thompson' +p31359 +sa(dp31360 +g25267 +g27 +sg25268 +S'Cradle' +p31361 +sg25270 +S'Virginia Kennady' +p31362 +sa(dp31363 +g25268 +S'Jar' +p31364 +sg25270 +S'Chinese Qing Dynasty' +p31365 +sg25273 +S'overall: 20.6 x 18.5 cm (8 1/8 x 7 5/16 in.)' +p31366 +sg25275 +S'\nporcelain with apple-green glaze' +p31367 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dbf.jpg' +p31368 +sg25267 +g27 +sa(dp31369 +g25267 +g27 +sg25268 +S'Baby Cradle' +p31370 +sg25270 +S'Artist Information (' +p31371 +sa(dp31372 +g25267 +g27 +sg25268 +S'Cradle' +p31373 +sg25270 +S'Wellington Blewett' +p31374 +sa(dp31375 +g25267 +g27 +sg25268 +S'Wicker Cradle' +p31376 +sg25270 +S'Artist Information (' +p31377 +sa(dp31378 +g25267 +g27 +sg25268 +S'Hooded Cradle' +p31379 +sg25270 +S'Ludmilla Calderon' +p31380 +sa(dp31381 +g25267 +g27 +sg25268 +S'Wooden Cradle' +p31382 +sg25270 +S'Arthur Stewart' +p31383 +sa(dp31384 +g25267 +g27 +sg25268 +S'Mahogany Cradle' +p31385 +sg25270 +S'Louis Plogsted' +p31386 +sa(dp31387 +g25267 +g27 +sg25268 +S'Walnut Crib' +p31388 +sg25270 +S'Edward A. Darby' +p31389 +sa(dp31390 +g25267 +g27 +sg25268 +S'Cradle' +p31391 +sg25270 +S'Arsen Maralian' +p31392 +sa(dp31393 +g25267 +g27 +sg25268 +S'Cradle' +p31394 +sg25270 +S'Edna C. Rex' +p31395 +sa(dp31396 +g25267 +g27 +sg25268 +S'Walnut Cradle' +p31397 +sg25270 +S'Edward A. Darby' +p31398 +sa(dp31399 +g25268 +S'Jar' +p31400 +sg25270 +S'Chinese Qing Dynasty' +p31401 +sg25273 +S'overall: 21.6 x 18.5 cm (8 1/2 x 7 5/16 in.)' +p31402 +sg25275 +S'\nporcelain with apple-green glaze' +p31403 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dc0.jpg' +p31404 +sg25267 +g27 +sa(dp31405 +g25267 +g27 +sg25268 +S'Cradle' +p31406 +sg25270 +S'George V. Vezolles' +p31407 +sa(dp31408 +g25267 +g27 +sg25268 +S"Pioneer Baby's Cradle" +p31409 +sg25270 +S'George V. Vezolles' +p31410 +sa(dp31411 +g25267 +g27 +sg25268 +S'Press Cupboard' +p31412 +sg25270 +S'Artist Information (' +p31413 +sa(dp31414 +g25267 +g27 +sg25268 +S'Press Cupboard' +p31415 +sg25270 +S'Francis Borelli' +p31416 +sa(dp31417 +g25267 +g27 +sg25268 +S'Press Cupboard' +p31418 +sg25270 +S'Francis Borelli' +p31419 +sa(dp31420 +g25267 +g27 +sg25268 +S'Court Cupboard' +p31421 +sg25270 +S'Louis Annino' +p31422 +sa(dp31423 +g25267 +g27 +sg25268 +S'Hartford Cupboard' +p31424 +sg25270 +S'Martin Partyka' +p31425 +sa(dp31426 +g25267 +g27 +sg25268 +S'Side View of Hartford Cupboard' +p31427 +sg25270 +S'Martin Partyka' +p31428 +sa(dp31429 +g25267 +g27 +sg25268 +S'Press Cupboard' +p31430 +sg25270 +S'Anne Ger' +p31431 +sa(dp31432 +g25267 +g27 +sg25268 +S'Press Cupboard' +p31433 +sg25270 +S'Elizabeth Curtis' +p31434 +sa(dp31435 +g25268 +S'Bottle Vase' +p31436 +sg25270 +S'Chinese Qing Dynasty' +p31437 +sg25273 +S'overall: 18.2 x 11.1 cm (7 3/16 x 4 3/8 in.)' +p31438 +sg25275 +S'\nporcelain with apple-green glaze' +p31439 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dc1.jpg' +p31440 +sg25267 +g27 +sa(dp31441 +g25267 +g27 +sg25268 +S'Guilford Press Cupboard' +p31442 +sg25270 +S'Martin Partyka' +p31443 +sa(dp31444 +g25267 +g27 +sg25268 +S'Dresser or Cupboard' +p31445 +sg25270 +S'Irving I. Smith' +p31446 +sa(dp31447 +g25267 +g27 +sg25268 +S'Corner Cupboard' +p31448 +sg25270 +S'Edward A. Darby' +p31449 +sa(dp31450 +g25267 +g27 +sg25268 +S'Cupboard' +p31451 +sg25270 +S'Virginia Kennady' +p31452 +sa(dp31453 +g25267 +g27 +sg25268 +S'Corner Cupboard' +p31454 +sg25270 +S'George H. Alexander' +p31455 +sa(dp31456 +g25267 +g27 +sg25268 +S'Cupboard' +p31457 +sg25270 +S'Bernard Gussow' +p31458 +sa(dp31459 +g25267 +g27 +sg25268 +S'Cupboard' +p31460 +sg25270 +S'Charles Henning' +p31461 +sa(dp31462 +g25267 +g27 +sg25268 +S'Corner Cupboard' +p31463 +sg25270 +S'Byron Dingman' +p31464 +sa(dp31465 +g25267 +g27 +sg25268 +S'Hanging Closet' +p31466 +sg25270 +S'Ernest A. Towers, Jr.' +p31467 +sa(dp31468 +g25267 +g27 +sg25268 +S'Hanging Corner Cupboard' +p31469 +sg25270 +S'Artist Information (' +p31470 +sa(dp31471 +g25268 +S'Vase, Meiping Shape' +p31472 +sg25270 +S'Chinese Qing Dynasty' +p31473 +sg25273 +S'overall: 17.2 x 10.1 cm (6 3/4 x 4 in.)' +p31474 +sg25275 +S'\nporcelain with apple-green glaze' +p31475 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dc2.jpg' +p31476 +sg25267 +g27 +sa(dp31477 +g25267 +g27 +sg25268 +S'Day Bed' +p31478 +sg25270 +S'Nicholas Gorid' +p31479 +sa(dp31480 +g25267 +g27 +sg25268 +S'Sewing Settee' +p31481 +sg25270 +S'Vera Van Voris' +p31482 +sa(dp31483 +g25267 +g27 +sg25268 +S'Daybed' +p31484 +sg25270 +S'Artist Information (' +p31485 +sa(dp31486 +g25267 +g27 +sg25268 +S'Tambour Desk' +p31487 +sg25270 +S'Bernard Gussow' +p31488 +sa(dp31489 +g25267 +g27 +sg25268 +S"Lady's Writing Cabinet" +p31490 +sg25270 +S'American 20th Century' +p31491 +sa(dp31492 +g25267 +g27 +sg25268 +S'Desk' +p31493 +sg25270 +S'Dorothea A. Farrington' +p31494 +sa(dp31495 +g25267 +g27 +sg25268 +S'Box Desk' +p31496 +sg25270 +S'Arthur Johnson' +p31497 +sa(dp31498 +g25267 +g27 +sg25268 +S'Mahogany Desk with Bookcase Top' +p31499 +sg25270 +S'George Loughridge' +p31500 +sa(dp31501 +g25267 +g27 +sg25268 +S'Desk' +p31502 +sg25270 +S'Francis Borelli' +p31503 +sa(dp31504 +g25267 +g27 +sg25268 +S'Desk' +p31505 +sg25270 +S'Eugene Croe' +p31506 +sa(dp31507 +g25268 +S'Bottle Vase' +p31508 +sg25270 +S'Chinese Qing Dynasty' +p31509 +sg25273 +S'overall: 16.6 x 10.7 cm (6 9/16 x 4 3/16 in.)' +p31510 +sg25275 +S'\nporcelain with apple-green glaze' +p31511 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dc3.jpg' +p31512 +sg25267 +g27 +sa(dp31513 +g25267 +g27 +sg25268 +S'Desk' +p31514 +sg25270 +S'Joseph Cannella' +p31515 +sa(dp31516 +g25267 +g27 +sg25268 +S'Secretary' +p31517 +sg25270 +S'Ralph Morton' +p31518 +sa(dp31519 +g25267 +g27 +sg25268 +S'Mahogany Desk' +p31520 +sg25270 +S'Edward A. Darby' +p31521 +sa(dp31522 +g25267 +g27 +sg25268 +S'Desk' +p31523 +sg25270 +S'Rex F. Bush' +p31524 +sa(dp31525 +g25267 +g27 +sg25268 +S'Desk' +p31526 +sg25270 +S'Paul Ward' +p31527 +sa(dp31528 +g25267 +g27 +sg25268 +S'Melodeon Converted into Desk' +p31529 +sg25270 +S'Magnus S. Fossum' +p31530 +sa(dp31531 +g25267 +g27 +sg25268 +S'Desk' +p31532 +sg25270 +S'Marie Alain' +p31533 +sa(dp31534 +g25267 +g27 +sg25268 +S"Desk (Lady's)" +p31535 +sg25270 +S'Georgine E. Mason' +p31536 +sa(dp31537 +g25267 +g27 +sg25268 +S'Desk' +p31538 +sg25270 +S'Charles Squires' +p31539 +sa(dp31540 +g25267 +g27 +sg25268 +S'Desk' +p31541 +sg25270 +S'Ruth Bialostosky' +p31542 +sa(dp31543 +g25268 +S'Vase' +p31544 +sg25270 +S'Chinese Qing Dynasty' +p31545 +sg25273 +S'overall: 18.5 x 10.2 cm (7 5/16 x 4 in.)' +p31546 +sg25275 +S'\nporcelain with apple-green glaze' +p31547 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dc4.jpg' +p31548 +sg25267 +S'This striking pear-shaped vase is one of the most beautiful apple-green \n vessels in the National Gallery collection, despite the pinhole on its \n neck. Its graceful profile coupled with its brilliant emerald green surface \n distinguish it from the two more squared-off and pale bottle vases in the \n collection (\n This particular shape, which the Chinese call "gall-bladder shaped" \n (Text by Virginia Bower, published in the NGA Systematic Catalogue: \n Notes

\n
\n \n \n ' +p31549 +sa(dp31550 +g25267 +g27 +sg25268 +S'Desk' +p31551 +sg25270 +S'Arsen Maralian' +p31552 +sa(dp31553 +g25267 +g27 +sg25268 +S'Secretary' +p31554 +sg25270 +S'Bernard Krieger' +p31555 +sa(dp31556 +g25267 +g27 +sg25268 +S'Desk-White Oak' +p31557 +sg25270 +S'Henry Moran' +p31558 +sa(dp31559 +g25267 +g27 +sg25268 +S'Desk' +p31560 +sg25270 +S'Samuel Fineman' +p31561 +sa(dp31562 +g25267 +g27 +sg25268 +S"Scrutoir or Butler's Desk" +p31563 +sg25270 +S'Fred Weiss' +p31564 +sa(dp31565 +g25267 +g27 +sg25268 +S"Scrutoir or Butler's Desk" +p31566 +sg25270 +S'Fred Weiss' +p31567 +sa(dp31568 +g25267 +g27 +sg25268 +S'Desk' +p31569 +sg25270 +S'David S. De Vault' +p31570 +sa(dp31571 +g25267 +g27 +sg25268 +S'Writing Desk' +p31572 +sg25270 +S'Carl Buergerniss' +p31573 +sa(dp31574 +g25267 +g27 +sg25268 +S'Writing Desk' +p31575 +sg25270 +S'Carl Buergerniss' +p31576 +sa(dp31577 +g25267 +g27 +sg25268 +S'Desk' +p31578 +sg25270 +S'Fred Weiss' +p31579 +sa(dp31580 +g25268 +S'Vase' +p31581 +sg25270 +S'Chinese Qing Dynasty' +p31582 +sg25273 +S'overall: 23.2 x 13 cm (9 1/8 x 5 1/8 in.)' +p31583 +sg25275 +S'\nporcelain with apple-green glaze' +p31584 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dc5.jpg' +p31585 +sg25267 +g27 +sa(dp31586 +g25267 +g27 +sg25268 +S'Desk' +p31587 +sg25270 +S'Fred Weiss' +p31588 +sa(dp31589 +g25267 +g27 +sg25268 +S"Child's Desk" +p31590 +sg25270 +S'Ernest Busenbark' +p31591 +sa(dp31592 +g25267 +g27 +sg25268 +S'Desk' +p31593 +sg25270 +S'Albert Ryder' +p31594 +sa(dp31595 +g25267 +g27 +sg25268 +S'Writing Desk' +p31596 +sg25270 +S'Robert Birrell' +p31597 +sa(dp31598 +g25267 +g27 +sg25268 +S'Box Desk on Frame' +p31599 +sg25270 +S'Francis Borelli' +p31600 +sa(dp31601 +g25267 +g27 +sg25268 +S'Box Desk on Frame' +p31602 +sg25270 +S'Lorenz Rothkranz' +p31603 +sa(dp31604 +g25267 +g27 +sg25268 +S'Box Desk' +p31605 +sg25270 +S'Leo Drozdoff' +p31606 +sa(dp31607 +g25267 +g27 +sg25268 +S"Child's Desk" +p31608 +sg25270 +S'Harry Eisman' +p31609 +sa(dp31610 +g25267 +g27 +sg25268 +S"Child's Desk" +p31611 +sg25270 +S'Lawrence Phillips' +p31612 +sa(dp31613 +g25267 +g27 +sg25268 +S'Desk' +p31614 +sg25270 +S'Aaron Dermansky' +p31615 +sa(dp31616 +g25268 +S'Vase' +p31617 +sg25270 +S'Chinese Qing Dynasty' +p31618 +sg25273 +S'overall: 21.6 x 12.7 cm (8 1/2 x 5 in.)' +p31619 +sg25275 +S'\nporcelain with apple-green glaze' +p31620 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dc6.jpg' +p31621 +sg25267 +S'Among published apple-green wares, no vessel very similar to this vase has \n been found. A more pear-shaped vase, attributed to the eighteenth century, might \n be considered a comparison; its neck is quite similar, but it lacks the distinctive \n raised spreading foot and stepped base seen in the National Gallery example.\n The shape of this vase, with its three distinct segments, differs from \n the fluid and elegant forms most often seen in Kangxi- and Yongzheng-period \n monochromes as exemplified by those so marked and/or attributed in the \n National Gallery collection, whether delicate peachbloom, celadon, pale \n blue, or more sturdy oxblood vases. None of the National Gallery\'s vases \n exhibits this characteristic. Indeed, this shape seems more typical of \n those seen in later eighteenth- and nineteenth-century Chinese ceramics, \n which accounts for its dating.\n (Text by Virginia Bower, published in the NGA Systematic Catalogue: \n Notes

\n
\n \n \n \n ' +p31622 +sa(dp31623 +g25267 +g27 +sg25268 +S'Desk' +p31624 +sg25270 +S'Isadore Goldberg' +p31625 +sa(dp31626 +g25267 +g27 +sg25268 +S'Accounting Desk' +p31627 +sg25270 +S'Kurt Melzer' +p31628 +sa(dp31629 +g25267 +g27 +sg25268 +S'Desk' +p31630 +sg25270 +S'Frank Wenger' +p31631 +sa(dp31632 +g25267 +g27 +sg25268 +S'Writing Table and Desk' +p31633 +sg25270 +S'Henry Meyers' +p31634 +sa(dp31635 +g25267 +g27 +sg25268 +S'Desk' +p31636 +sg25270 +S'Frank Wenger' +p31637 +sa(dp31638 +g25267 +g27 +sg25268 +S'Desk' +p31639 +sg25270 +S'Frank Wenger' +p31640 +sa(dp31641 +g25267 +g27 +sg25268 +S'Desk' +p31642 +sg25270 +S'Frank Wenger' +p31643 +sa(dp31644 +g25267 +g27 +sg25268 +S'Desk' +p31645 +sg25270 +S'Edward L. Loper' +p31646 +sa(dp31647 +g25267 +g27 +sg25268 +S'Desk' +p31648 +sg25270 +S'Frank Wenger' +p31649 +sa(dp31650 +g25267 +g27 +sg25268 +S'Desk (in two sections) Used by Members of Congress' +p31651 +sg25270 +S'Rollington Campbell' +p31652 +sa(dp31653 +g25268 +S'Vase' +p31654 +sg25270 +S'Chinese Qing Dynasty' +p31655 +sg25273 +S'overall: 17.7 x 8.8 cm (6 15/16 x 3 7/16 in.)' +p31656 +sg25275 +S'\nporcelain with apple-green glaze' +p31657 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dc7.jpg' +p31658 +sg25267 +g27 +sa(dp31659 +g25267 +g27 +sg25268 +S'Desk' +p31660 +sg25270 +S'Lawrence Phillips' +p31661 +sa(dp31662 +g25267 +g27 +sg25268 +S'Desk' +p31663 +sg25270 +S'Lawrence Phillips' +p31664 +sa(dp31665 +g25267 +g27 +sg25268 +S'Desk' +p31666 +sg25270 +S'Frederick Jackson' +p31667 +sa(dp31668 +g25267 +g27 +sg25268 +S'Writing Table and Desk' +p31669 +sg25270 +S'Henry Meyers' +p31670 +sa(dp31671 +g25267 +g27 +sg25268 +S'Desk' +p31672 +sg25270 +S'George Fairbanks' +p31673 +sa(dp31674 +g25267 +g27 +sg25268 +S'Desk' +p31675 +sg25270 +S'Arthur Stewart' +p31676 +sa(dp31677 +g25267 +g27 +sg25268 +S'Knee-hole Desk' +p31678 +sg25270 +S'Robert Stewart' +p31679 +sa(dp31680 +g25267 +g27 +sg25268 +S'Desk' +p31681 +sg25270 +S'George Fairbanks' +p31682 +sa(dp31683 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f8/a000f8fd.jpg' +p31684 +sg25268 +S'Stoneware Jar' +p31685 +sg25270 +S'Annie B. Johnston' +p31686 +sa(dp31687 +g25267 +g27 +sg25268 +S'Bowl with Ornamented Rim' +p31688 +sg25270 +S'Annie B. Johnston' +p31689 +sa(dp31690 +g25268 +S'Portrait of a Young Woman' +p31691 +sg25270 +S'Giuliano Bugiardini' +p31692 +sg25273 +S'oil on canvas' +p31693 +sg25275 +S'c. 1525' +p31694 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a05.jpg' +p31695 +sg25267 +g27 +sa(dp31696 +g25268 +S'Bottle Vase' +p31697 +sg25270 +S'Chinese Qing Dynasty' +p31698 +sg25273 +S'overall: 18.8 x 12.3 cm (7 3/8 x 4 13/16 in.)' +p31699 +sg25275 +S'\nporcelain with apple-green glaze' +p31700 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dc8.jpg' +p31701 +sg25267 +g27 +sa(dp31702 +g25267 +g27 +sg25268 +S'Stoneware Jug' +p31703 +sg25270 +S'Annie B. Johnston' +p31704 +sa(dp31705 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f8/a000f8fc.jpg' +p31706 +sg25268 +S'Stoneware Jug' +p31707 +sg25270 +S'Annie B. Johnston' +p31708 +sa(dp31709 +g25267 +g27 +sg25268 +S'Stoneware Jug' +p31710 +sg25270 +S'Annie B. Johnston' +p31711 +sa(dp31712 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p31713 +sg25270 +S'Annie B. Johnston' +p31714 +sa(dp31715 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p31716 +sg25270 +S'Annie B. Johnston' +p31717 +sa(dp31718 +g25267 +g27 +sg25268 +S'Pottery Vase' +p31719 +sg25270 +S'Annie B. Johnston' +p31720 +sa(dp31721 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p31722 +sg25270 +S'Annie B. Johnston' +p31723 +sa(dp31724 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p31725 +sg25270 +S'Annie B. Johnston' +p31726 +sa(dp31727 +g25267 +g27 +sg25268 +S'Stoneware Jug' +p31728 +sg25270 +S'Annie B. Johnston' +p31729 +sa(dp31730 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p31731 +sg25270 +S'Annie B. Johnston' +p31732 +sa(dp31733 +g25268 +S'Vase' +p31734 +sg25270 +S'Chinese Qing Dynasty' +p31735 +sg25273 +S'overall: 15.7 x 8.9 cm (6 3/16 x 3 1/2 in.)' +p31736 +sg25275 +S'\nporcelain with apple-green glaze' +p31737 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dc9.jpg' +p31738 +sg25267 +g27 +sa(dp31739 +g25267 +g27 +sg25268 +S'Stoneware Jug' +p31740 +sg25270 +S'Annie B. Johnston' +p31741 +sa(dp31742 +g25267 +g27 +sg25268 +S'Stoneware Jug' +p31743 +sg25270 +S'Annie B. Johnston' +p31744 +sa(dp31745 +g25267 +g27 +sg25268 +S'Stoneware Jug' +p31746 +sg25270 +S'Annie B. Johnston' +p31747 +sa(dp31748 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p31749 +sg25270 +S'Annie B. Johnston' +p31750 +sa(dp31751 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p31752 +sg25270 +S'Annie B. Johnston' +p31753 +sa(dp31754 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p31755 +sg25270 +S'Annie B. Johnston' +p31756 +sa(dp31757 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p31758 +sg25270 +S'Annie B. Johnston' +p31759 +sa(dp31760 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p31761 +sg25270 +S'Annie B. Johnston' +p31762 +sa(dp31763 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p31764 +sg25270 +S'Annie B. Johnston' +p31765 +sa(dp31766 +g25267 +g27 +sg25268 +S'Stoneware Churn' +p31767 +sg25270 +S'Annie B. Johnston' +p31768 +sa(dp31769 +g25268 +S'Small Jar' +p31770 +sg25270 +S'Chinese Qing Dynasty' +p31771 +sg25273 +S'overall: 10.8 x 9.2 cm (4 1/4 x 3 5/8 in.)' +p31772 +sg25275 +S'\nporcelain with apple-green glaze' +p31773 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dca.jpg' +p31774 +sg25267 +g27 +sa(dp31775 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p31776 +sg25270 +S'Annie B. Johnston' +p31777 +sa(dp31778 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p31779 +sg25270 +S'Annie B. Johnston' +p31780 +sa(dp31781 +g25267 +g27 +sg25268 +S'Stoneware Jug' +p31782 +sg25270 +S'Annie B. Johnston' +p31783 +sa(dp31784 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p31785 +sg25270 +S'Annie B. Johnston' +p31786 +sa(dp31787 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p31788 +sg25270 +S'Annie B. Johnston' +p31789 +sa(dp31790 +g25267 +g27 +sg25268 +S'Stoneware Jug' +p31791 +sg25270 +S'Annie B. Johnston' +p31792 +sa(dp31793 +g25267 +g27 +sg25268 +S'Stoneware Jug' +p31794 +sg25270 +S'Annie B. Johnston' +p31795 +sa(dp31796 +g25267 +g27 +sg25268 +S'Stoneware Jug' +p31797 +sg25270 +S'Annie B. Johnston' +p31798 +sa(dp31799 +g25267 +g27 +sg25268 +S"School-master's desk" +p31800 +sg25270 +S'Sarah F. Williams' +p31801 +sa(dp31802 +g25267 +g27 +sg25268 +S"Surgeon's Field Desk and Kit" +p31803 +sg25270 +S'Eva Perry' +p31804 +sa(dp31805 +g25268 +S'Bowl' +p31806 +sg25270 +S'Chinese Qing Dynasty' +p31807 +sg25273 +S'overall: 7.3 x 10.9 cm (2 7/8 x 4 5/16 in.)' +p31808 +sg25275 +S'\nporcelain with apple-green glaze' +p31809 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dcb.jpg' +p31810 +sg25267 +g27 +sa(dp31811 +g25267 +g27 +sg25268 +S'Desk' +p31812 +sg25270 +S'Frank Wenger' +p31813 +sa(dp31814 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p31815 +sg25270 +S'Annie B. Johnston' +p31816 +sa(dp31817 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p31818 +sg25270 +S'Annie B. Johnston' +p31819 +sa(dp31820 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p31821 +sg25270 +S'Annie B. Johnston' +p31822 +sa(dp31823 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p31824 +sg25270 +S'Annie B. Johnston' +p31825 +sa(dp31826 +g25267 +g27 +sg25268 +S'Stoneware Jug' +p31827 +sg25270 +S'Annie B. Johnston' +p31828 +sa(dp31829 +g25267 +g27 +sg25268 +S'Stone Jug' +p31830 +sg25270 +S'Wilford H. Shurtliff' +p31831 +sa(dp31832 +g25267 +g27 +sg25268 +S'Vinegar Jug' +p31833 +sg25270 +S'Charles Kempter' +p31834 +sa(dp31835 +g25267 +g27 +sg25268 +S'Sugar Jar' +p31836 +sg25270 +S'Robert Gilson' +p31837 +sa(dp31838 +g25267 +g27 +sg25268 +S'Jug' +p31839 +sg25270 +S'Nicholas Amantea' +p31840 +sa(dp31841 +g25268 +S'Bowl' +p31842 +sg25270 +S'Chinese Qing Dynasty' +p31843 +sg25273 +S'overall: 6.5 x 9.6 cm (2 9/16 x 3 3/4 in.)' +p31844 +sg25275 +S'\nporcelain with apple-green glaze' +p31845 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dcc.jpg' +p31846 +sg25267 +g27 +sa(dp31847 +g25267 +g27 +sg25268 +S'Pitcher' +p31848 +sg25270 +S'George Loughridge' +p31849 +sa(dp31850 +g25267 +g27 +sg25268 +S'Pitcher' +p31851 +sg25270 +S'John Tarantino' +p31852 +sa(dp31853 +g25267 +g27 +sg25268 +S'Stoneware Beer Bottle' +p31854 +sg25270 +S'Wilbur M Rice' +p31855 +sa(dp31856 +g25267 +g27 +sg25268 +S'Small Pot or Crock' +p31857 +sg25270 +S'John Tarantino' +p31858 +sa(dp31859 +g25267 +g27 +sg25268 +S'Crock' +p31860 +sg25270 +S'Yolande Delasser' +p31861 +sa(dp31862 +g25267 +g27 +sg25268 +S'Crock' +p31863 +sg25270 +S'Yolande Delasser' +p31864 +sa(dp31865 +g25267 +g27 +sg25268 +S'Stoneware Jug' +p31866 +sg25270 +S'Edgar L. Pearce' +p31867 +sa(dp31868 +g25267 +g27 +sg25268 +S'Crock' +p31869 +sg25270 +S'Yolande Delasser' +p31870 +sa(dp31871 +g25267 +g27 +sg25268 +S'Cider Jug' +p31872 +sg25270 +S'Jerome Hoxie' +p31873 +sa(dp31874 +g25267 +g27 +sg25268 +S'Butter Crock' +p31875 +sg25270 +S'Jerome Hoxie' +p31876 +sa(dp31877 +g25268 +S'Large Vase' +p31878 +sg25270 +S'Chinese Qing Dynasty' +p31879 +sg25273 +S'overall: 45.7 x 23.5 cm (18 x 9 1/4 in.)' +p31880 +sg25275 +S'\nporcelain with turquoise glaze' +p31881 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dcd.jpg' +p31882 +sg25267 +g27 +sa(dp31883 +g25267 +g27 +sg25268 +S'Churn' +p31884 +sg25270 +S'Jerome Hoxie' +p31885 +sa(dp31886 +g25267 +g27 +sg25268 +S'Stoneware Pitcher' +p31887 +sg25270 +S'Jerome Hoxie' +p31888 +sa(dp31889 +g25267 +g27 +sg25268 +S'Churn' +p31890 +sg25270 +S'Jerome Hoxie' +p31891 +sa(dp31892 +g25267 +g27 +sg25268 +S'Jug' +p31893 +sg25270 +S'Frank Fumagalli' +p31894 +sa(dp31895 +g25267 +g27 +sg25268 +S'Two Handled Preserve Crock' +p31896 +sg25270 +S'Jerome Hoxie' +p31897 +sa(dp31898 +g25267 +g27 +sg25268 +S'Stoneware Crock' +p31899 +sg25270 +S'Jerome Hoxie' +p31900 +sa(dp31901 +g25267 +g27 +sg25268 +S'Pitcher' +p31902 +sg25270 +S'Frank Fumagalli' +p31903 +sa(dp31904 +g25267 +g27 +sg25268 +S'Water Cooler' +p31905 +sg25270 +S'John Tarantino' +p31906 +sa(dp31907 +g25267 +g27 +sg25268 +S'Cookie Jar with Cover' +p31908 +sg25270 +S'Nicholas Amantea' +p31909 +sa(dp31910 +g25267 +g27 +sg25268 +S'Stoneware Jug' +p31911 +sg25270 +S'Daniel Fletcher' +p31912 +sa(dp31913 +g25268 +S'Vase' +p31914 +sg25270 +S'Chinese Qing Dynasty' +p31915 +sg25273 +S'overall: 14 x 8.6 cm (5 1/2 x 3 3/8 in.)' +p31916 +sg25275 +S'\nsteatitic porcelain with colorless glaze' +p31917 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dce.jpg' +p31918 +sg25267 +g27 +sa(dp31919 +g25267 +g27 +sg25268 +S'Crock' +p31920 +sg25270 +S'Artist Information (' +p31921 +sa(dp31922 +g25267 +g27 +sg25268 +S'Stoneware Jug' +p31923 +sg25270 +S'Annie B. Johnston' +p31924 +sa(dp31925 +g25267 +g27 +sg25268 +S'Preserve Jar' +p31926 +sg25270 +S'Jerome Hoxie' +p31927 +sa(dp31928 +g25267 +g27 +sg25268 +S'Jar' +p31929 +sg25270 +S'Charlotte Sperber' +p31930 +sa(dp31931 +g25267 +g27 +sg25268 +S'Jar' +p31932 +sg25270 +S'George Loughridge' +p31933 +sa(dp31934 +g25267 +g27 +sg25268 +S'Jug' +p31935 +sg25270 +S'John Dana' +p31936 +sa(dp31937 +g25267 +g27 +sg25268 +S'Jar' +p31938 +sg25270 +S'Yolande Delasser' +p31939 +sa(dp31940 +g25267 +g27 +sg25268 +S'Crock' +p31941 +sg25270 +S'Yolande Delasser' +p31942 +sa(dp31943 +g25267 +g27 +sg25268 +S'Churn' +p31944 +sg25270 +S'Frank Fumagalli' +p31945 +sa(dp31946 +g25267 +g27 +sg25268 +S'Churn' +p31947 +sg25270 +S'Frank Fumagalli' +p31948 +sa(dp31949 +g25268 +S'Vase, Meiping Shape' +p31950 +sg25270 +S'Chinese Qing Dynasty' +p31951 +sg25273 +S'overall: 15.2 x 8.2 cm (6 x 3 1/4 in.)' +p31952 +sg25275 +S'\nsteatitic porcelain with colorless glaze' +p31953 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dcf.jpg' +p31954 +sg25267 +g27 +sa(dp31955 +g25267 +g27 +sg25268 +S'Jug' +p31956 +sg25270 +S'Charles Caseau' +p31957 +sa(dp31958 +g25267 +g27 +sg25268 +S'Crock' +p31959 +sg25270 +S'Artist Information (' +p31960 +sa(dp31961 +g25267 +g27 +sg25268 +S'Jug' +p31962 +sg25270 +S'John Dana' +p31963 +sa(dp31964 +g25267 +g27 +sg25268 +S'Crock' +p31965 +sg25270 +S'Nicholas Amantea' +p31966 +sa(dp31967 +g25267 +g27 +sg25268 +S'Butter Crock' +p31968 +sg25270 +S'Jerome Hoxie' +p31969 +sa(dp31970 +g25267 +g27 +sg25268 +S'Vinegar Jug' +p31971 +sg25270 +S'Fred Weiss' +p31972 +sa(dp31973 +g25267 +g27 +sg25268 +S'Stoneware Crock' +p31974 +sg25270 +S'Fred Weiss' +p31975 +sa(dp31976 +g25267 +g27 +sg25268 +S'Stoneware Crock' +p31977 +sg25270 +S'Fred Weiss' +p31978 +sa(dp31979 +g25267 +g27 +sg25268 +S'Stoneware Vase' +p31980 +sg25270 +S'Fred Weiss' +p31981 +sa(dp31982 +g25267 +g27 +sg25268 +S'Stoneware Vase' +p31983 +sg25270 +S'Fred Weiss' +p31984 +sa(dp31985 +g25268 +S'Vase' +p31986 +sg25270 +S'Chinese Qing Dynasty' +p31987 +sg25273 +S'overall: 32.4 x 19 cm (12 3/4 x 7 1/2 in.)' +p31988 +sg25275 +S'\nsteatitic porcelain with colorless glaze' +p31989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dd0.jpg' +p31990 +sg25267 +g27 +sa(dp31991 +g25267 +g27 +sg25268 +S'Stoneware Vase' +p31992 +sg25270 +S'Fred Weiss' +p31993 +sa(dp31994 +g25267 +g27 +sg25268 +S'Water Filter and Cooler' +p31995 +sg25270 +S'Nicholas Amantea' +p31996 +sa(dp31997 +g25267 +g27 +sg25268 +S'Water Cooler' +p31998 +sg25270 +S'John Tarantino' +p31999 +sa(dp32000 +g25267 +g27 +sg25268 +S'Porcelain Lavabo' +p32001 +sg25270 +S'Al Curry' +p32002 +sa(dp32003 +g25267 +g27 +sg25268 +S'Jug' +p32004 +sg25270 +S'Henry Meyers' +p32005 +sa(dp32006 +g25267 +g27 +sg25268 +S'Pitcher' +p32007 +sg25270 +S'John Tarantino' +p32008 +sa(dp32009 +g25267 +g27 +sg25268 +S'Pitcher' +p32010 +sg25270 +S'George Loughridge' +p32011 +sa(dp32012 +g25267 +g27 +sg25268 +S'Pitcher' +p32013 +sg25270 +S'Yolande Delasser' +p32014 +sa(dp32015 +g25267 +g27 +sg25268 +S'Stoneware Pitcher' +p32016 +sg25270 +S'Isabelle De Strange' +p32017 +sa(dp32018 +g25267 +g27 +sg25268 +S'Pitcher' +p32019 +sg25270 +S'Giacinto Capelli' +p32020 +sa(dp32021 +g25268 +S'Bowl with "Rice Grain" Decoration' +p32022 +sg25270 +S'Chinese Qing Dynasty' +p32023 +sg25273 +S'overall: 12.5 x 20 cm (4 15/16 x 7 7/8 in.)' +p32024 +sg25275 +S'\nporcelain with colorless glaze' +p32025 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dd1.jpg' +p32026 +sg25267 +S'This elegant vessel has the shape of a Buddhist monk\'s begging bowl. \n Floral decoration is pierced through the body in the so-called "rice-grain" \n technique. The perforations in the body are filled by the colorless glaze. \n Incised \n The fabrication technique of this vessel is characteristic of the finest \n Qianlong period "rice-grain" pieces, and it can be tentatively dated to \n this period by comparison with marked Qianlong examples.\n (Text by Stephen Little, published in the NGA Systematic Catalogue: \n Notes

\n
\n \n ' +p32027 +sa(dp32028 +g25267 +g27 +sg25268 +S'Pitcher' +p32029 +sg25270 +S'John Tarantino' +p32030 +sa(dp32031 +g25267 +g27 +sg25268 +S'Pitcher' +p32032 +sg25270 +S'Yolande Delasser' +p32033 +sa(dp32034 +g25267 +g27 +sg25268 +S'Stone Pitcher' +p32035 +sg25270 +S'Isabelle De Strange' +p32036 +sa(dp32037 +g25267 +g27 +sg25268 +S'Stoneware Cream Pitcher' +p32038 +sg25270 +S'Margaret Stottlemeyer' +p32039 +sa(dp32040 +g25267 +g27 +sg25268 +S'Stone Beer Mug' +p32041 +sg25270 +S'Carl Buergerniss' +p32042 +sa(dp32043 +g25267 +g27 +sg25268 +S'Beer Mug' +p32044 +sg25270 +S'Carl Buergerniss' +p32045 +sa(dp32046 +g25267 +g27 +sg25268 +S'Beer Mug' +p32047 +sg25270 +S'Carl Buergerniss' +p32048 +sa(dp32049 +g25267 +g27 +sg25268 +S'Mug' +p32050 +sg25270 +S'Giacinto Capelli' +p32051 +sa(dp32052 +g25267 +g27 +sg25268 +S'Stoneware Mug' +p32053 +sg25270 +S'Carl Buergerniss' +p32054 +sa(dp32055 +g25267 +g27 +sg25268 +S'Stoneware and Pewter Beer Mug' +p32056 +sg25270 +S'Arthur Mathews' +p32057 +sa(dp32058 +g25268 +S'Vase in the Shape of a Double Gourd' +p32059 +sg25270 +S'Chinese Qing Dynasty' +p32060 +sg25273 +S'overall: 43.6 x 24.8 cm (17 3/16 x 9 3/4 in.)' +p32061 +sg25275 +S'\nporcelain with yellow glaze' +p32062 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dd2.jpg' +p32063 +sg25267 +g27 +sa(dp32064 +g25267 +g27 +sg25268 +S'Stone Mug' +p32065 +sg25270 +S'Carl Buergerniss' +p32066 +sa(dp32067 +g25267 +g27 +sg25268 +S'Mug' +p32068 +sg25270 +S'Yolande Delasser' +p32069 +sa(dp32070 +g25267 +g27 +sg25268 +S'Earthenware Beer Mug' +p32071 +sg25270 +S'Wilbur M Rice' +p32072 +sa(dp32073 +g25267 +g27 +sg25268 +S'Stoneware Mug for Beer' +p32074 +sg25270 +S'Lloyd Charles Lemcke' +p32075 +sa(dp32076 +g25267 +g27 +sg25268 +S'Jelly Mold' +p32077 +sg25270 +S'George H. Alexander' +p32078 +sa(dp32079 +g25267 +g27 +sg25268 +S'Crockery Mold "Rockingham"' +p32080 +sg25270 +S'William Kieckhofel' +p32081 +sa(dp32082 +g25267 +g27 +sg25268 +S'Double Mold' +p32083 +sg25270 +S'Fritz Boehmer' +p32084 +sa(dp32085 +g25267 +g27 +sg25268 +S'Baking Dish' +p32086 +sg25270 +S'Isadore Goldberg' +p32087 +sa(dp32088 +g25267 +g27 +sg25268 +S'Milk Pan' +p32089 +sg25270 +S'Gertrude Semnene' +p32090 +sa(dp32091 +g25267 +g27 +sg25268 +S'Baking Dish' +p32092 +sg25270 +S'Yolande Delasser' +p32093 +sa(dp32094 +g25268 +S'"Ruby-Back" Dish' +p32095 +sg25270 +S'Chinese Qing Dynasty' +p32096 +sg25273 +S'overall: 3.5 x 20.9 cm (1 3/8 x 8 1/4 in.)' +p32097 +sg25275 +S'\nporcelain with overglaze famille rose enamels' +p32098 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dd4.jpg' +p32099 +sg25267 +g27 +sa(dp32100 +g25267 +g27 +sg25268 +S'Stone Cream Crock' +p32101 +sg25270 +S'Henrietta S. Hukill' +p32102 +sa(dp32103 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000553d.jpg' +p32104 +sg25268 +S'Grotesque Jug' +p32105 +sg25270 +S'Frank Fumagalli' +p32106 +sa(dp32107 +g25267 +g27 +sg25268 +S'Grotesque Jug' +p32108 +sg25270 +S'Frank Fumagalli' +p32109 +sa(dp32110 +g25267 +g27 +sg25268 +S'Batter Jug with Paddle' +p32111 +sg25270 +S'Richard Donovan' +p32112 +sa(dp32113 +g25267 +g27 +sg25268 +S'Water Jug' +p32114 +sg25270 +S'George Loughridge' +p32115 +sa(dp32116 +g25267 +g27 +sg25268 +S'Cider Jug' +p32117 +sg25270 +S'John Tarantino' +p32118 +sa(dp32119 +g25267 +g27 +sg25268 +S'Jug' +p32120 +sg25270 +S'Anne Nemtzoff' +p32121 +sa(dp32122 +g25267 +g27 +sg25268 +S'Jug' +p32123 +sg25270 +S'Artist Information (' +p32124 +sa(dp32125 +g25267 +g27 +sg25268 +S'Jug' +p32126 +sg25270 +S'LeRoy Griffith' +p32127 +sa(dp32128 +g25267 +g27 +sg25268 +S'Stone Jug' +p32129 +sg25270 +S'Margaret Stottlemeyer' +p32130 +sa(dp32131 +g25268 +S'"Ruby-Back" Dish' +p32132 +sg25270 +S'Chinese Qing Dynasty' +p32133 +sg25273 +S'overall: 3.7 x 20.8 cm (1 7/16 x 8 3/16 in.)' +p32134 +sg25275 +S'\nporcelain with overglaze famille rose enamels' +p32135 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dd6.jpg' +p32136 +sg25267 +g27 +sa(dp32137 +g25267 +g27 +sg25268 +S'Jug' +p32138 +sg25270 +S'Artist Information (' +p32139 +sa(dp32140 +g25267 +g27 +sg25268 +S'Stone Bottle' +p32141 +sg25270 +S'Carl Buergerniss' +p32142 +sa(dp32143 +g25267 +g27 +sg25268 +S'Jug' +p32144 +sg25270 +S'Charlotte Sperber' +p32145 +sa(dp32146 +g25267 +g27 +sg25268 +S'Jug' +p32147 +sg25270 +S'Yolande Delasser' +p32148 +sa(dp32149 +g25267 +g27 +sg25268 +S'Crockery Pitcher' +p32150 +sg25270 +S'Lucille Manson' +p32151 +sa(dp32152 +g25267 +g27 +sg25268 +S'Jug' +p32153 +sg25270 +S'Nicholas Amantea' +p32154 +sa(dp32155 +g25267 +g27 +sg25268 +S'Water Jug' +p32156 +sg25270 +S'Nicholas Amantea' +p32157 +sa(dp32158 +g25267 +g27 +sg25268 +S'Jug' +p32159 +sg25270 +S'Nicholas Amantea' +p32160 +sa(dp32161 +g25267 +g27 +sg25268 +S'Two Handled Jar - Stoneware' +p32162 +sg25270 +S'Philip Smith' +p32163 +sa(dp32164 +g25267 +g27 +sg25268 +S'Gray Stone Jar' +p32165 +sg25270 +S'John Price' +p32166 +sa(dp32167 +g25268 +S'"Ruby-Back" Dish' +p32168 +sg25270 +S'Chinese Qing Dynasty' +p32169 +sg25273 +S'overall: 3.5 x 19.9 cm (1 3/8 x 7 13/16 in.)' +p32170 +sg25275 +S'\nporcelain with overglaze famille rose enamels' +p32171 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dd8.jpg' +p32172 +sg25267 +g27 +sa(dp32173 +g25267 +g27 +sg25268 +S'Jar' +p32174 +sg25270 +S'Anne Nemtzoff' +p32175 +sa(dp32176 +g25267 +g27 +sg25268 +S'Jar' +p32177 +sg25270 +S'George Loughridge' +p32178 +sa(dp32179 +g25267 +g27 +sg25268 +S'Jar' +p32180 +sg25270 +S'Janet Riza' +p32181 +sa(dp32182 +g25267 +g27 +sg25268 +S'Crock' +p32183 +sg25270 +S'Artist Information (' +p32184 +sa(dp32185 +g25267 +g27 +sg25268 +S'Jar' +p32186 +sg25270 +S'Nicholas Amantea' +p32187 +sa(dp32188 +g25267 +g27 +sg25268 +S'Stone Fruit Jar' +p32189 +sg25270 +S'Margaret Stottlemeyer' +p32190 +sa(dp32191 +g25267 +g27 +sg25268 +S'Stone Fruit Jar' +p32192 +sg25270 +S'Margaret Stottlemeyer' +p32193 +sa(dp32194 +g25267 +g27 +sg25268 +S'Stone Fruit Jar' +p32195 +sg25270 +S'Margaret Stottlemeyer' +p32196 +sa(dp32197 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p32198 +sg25270 +S'Eugene Gill' +p32199 +sa(dp32200 +g25267 +g27 +sg25268 +S'Stoneware Quart Jar' +p32201 +sg25270 +S'Lon Cronk' +p32202 +sa(dp32203 +g25268 +S'"Ruby-Back" Dish' +p32204 +sg25270 +S'Chinese Qing Dynasty' +p32205 +sg25273 +S'overall: 3.5 x 20.3 cm (1 3/8 x 8 in.)' +p32206 +sg25275 +S'\nporcelain with overglaze famille rose enamels' +p32207 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dda.jpg' +p32208 +sg25267 +g27 +sa(dp32209 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p32210 +sg25270 +S'Lon Cronk' +p32211 +sa(dp32212 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p32213 +sg25270 +S'Philip Smith' +p32214 +sa(dp32215 +g25267 +g27 +sg25268 +S'Earthenware Jar' +p32216 +sg25270 +S'American 20th Century' +p32217 +sa(dp32218 +g25267 +g27 +sg25268 +S'Pickle Jar' +p32219 +sg25270 +S'Artist Information (' +p32220 +sa(dp32221 +g25267 +g27 +sg25268 +S'Stoneware Crock' +p32222 +sg25270 +S'Edward W. Buechner' +p32223 +sa(dp32224 +g25267 +g27 +sg25268 +S'Jar' +p32225 +sg25270 +S'Yolande Delasser' +p32226 +sa(dp32227 +g25267 +g27 +sg25268 +S'Jar' +p32228 +sg25270 +S'George Loughridge' +p32229 +sa(dp32230 +g25267 +g27 +sg25268 +S'Jar' +p32231 +sg25270 +S'George Loughridge' +p32232 +sa(dp32233 +g25267 +g27 +sg25268 +S'Jar' +p32234 +sg25270 +S'Dorothy Dwin' +p32235 +sa(dp32236 +g25267 +g27 +sg25268 +S'Jar' +p32237 +sg25270 +S'John Tarantino' +p32238 +sa(dp32239 +g25268 +S'"Ruby-Back" Dish' +p32240 +sg25270 +S'Chinese Qing Dynasty' +p32241 +sg25273 +S'overall: 3.5 x 15.8 cm (1 3/8 x 6 1/4 in.)' +p32242 +sg25275 +S'\nporcelain with overglaze famille rose enamels' +p32243 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004ddc.jpg' +p32244 +sg25267 +g27 +sa(dp32245 +g25267 +g27 +sg25268 +S'Crock' +p32246 +sg25270 +S'Samuel Sulkowitz' +p32247 +sa(dp32248 +g25267 +g27 +sg25268 +S'Flask' +p32249 +sg25270 +S'Frank Fumagalli' +p32250 +sa(dp32251 +g25267 +g27 +sg25268 +S'Flask' +p32252 +sg25270 +S'John Tarantino' +p32253 +sa(dp32254 +g25267 +g27 +sg25268 +S'Flask' +p32255 +sg25270 +S'John Tarantino' +p32256 +sa(dp32257 +g25267 +g27 +sg25268 +S'Stone Flask' +p32258 +sg25270 +S'Vincent P. Rosel' +p32259 +sa(dp32260 +g25267 +g27 +sg25268 +S'Flask' +p32261 +sg25270 +S'John Tarantino' +p32262 +sa(dp32263 +g25267 +g27 +sg25268 +S'Flask' +p32264 +sg25270 +S'Yolande Delasser' +p32265 +sa(dp32266 +g25267 +g27 +sg25268 +S'Miniature Flask' +p32267 +sg25270 +S'John Tarantino' +p32268 +sa(dp32269 +g25267 +g27 +sg25268 +S'Crock' +p32270 +sg25270 +S'Elsie Wein' +p32271 +sa(dp32272 +g25267 +g27 +sg25268 +S'Crock' +p32273 +sg25270 +S'Elsie Wein' +p32274 +sa(dp32275 +g25268 +S'Miniature Table' +p32276 +sg25270 +S'Chinese Qing Dynasty' +p32277 +sg25273 +S'overall: 7.1 x 33.3 x 14.8 cm (2 13/16 x 13 1/8 x 5 13/16 in.)' +p32278 +sg25275 +S'\nporcelain with famille jaune enamels on the biscuit' +p32279 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004ddd.jpg' +p32280 +sg25267 +g27 +sa(dp32281 +g25267 +g27 +sg25268 +S'Crock' +p32282 +sg25270 +S'John Tarantino' +p32283 +sa(dp32284 +g25267 +g27 +sg25268 +S'Covered Jar' +p32285 +sg25270 +S'George Loughridge' +p32286 +sa(dp32287 +g25267 +g27 +sg25268 +S'Crock' +p32288 +sg25270 +S'Nicholas Amantea' +p32289 +sa(dp32290 +g25267 +g27 +sg25268 +S'Crock' +p32291 +sg25270 +S'Nicholas Amantea' +p32292 +sa(dp32293 +g25267 +g27 +sg25268 +S'Crock with Cover' +p32294 +sg25270 +S'Isadore Goldberg' +p32295 +sa(dp32296 +g25267 +g27 +sg25268 +S'Crock' +p32297 +sg25270 +S'John Tarantino' +p32298 +sa(dp32299 +g25267 +g27 +sg25268 +S'Crock' +p32300 +sg25270 +S'Isadore Goldberg' +p32301 +sa(dp32302 +g25267 +g27 +sg25268 +S'Crock' +p32303 +sg25270 +S'Yolande Delasser' +p32304 +sa(dp32305 +g25267 +g27 +sg25268 +S'Stone Jar' +p32306 +sg25270 +S'Marin J. Bright' +p32307 +sa(dp32308 +g25267 +g27 +sg25268 +S'Jar' +p32309 +sg25270 +S'Nicholas Amantea' +p32310 +sa(dp32311 +g25268 +S'Wine Pot' +p32312 +sg25270 +S'Chinese Qing Dynasty' +p32313 +sg25273 +S'overall (with lid): 14.1 x 16.8 cm (5 9/16 x 6 5/8 in.)' +p32314 +sg25275 +S'\nporcelain with famille verte enamels on the biscuit' +p32315 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dde.jpg' +p32316 +sg25267 +g27 +sa(dp32317 +g25267 +g27 +sg25268 +S'Crock' +p32318 +sg25270 +S'Artist Information (' +p32319 +sa(dp32320 +g25267 +g27 +sg25268 +S'Pickle Jar' +p32321 +sg25270 +S'Francis Law Durand' +p32322 +sa(dp32323 +g25267 +g27 +sg25268 +S'Crock' +p32324 +sg25270 +S'Charles Caseau' +p32325 +sa(dp32326 +g25267 +g27 +sg25268 +S'Crock' +p32327 +sg25270 +S'John Tarantino' +p32328 +sa(dp32329 +g25267 +g27 +sg25268 +S'Crock' +p32330 +sg25270 +S'Anne Nemtzoff' +p32331 +sa(dp32332 +g25267 +g27 +sg25268 +S'Crock' +p32333 +sg25270 +S'Yolande Delasser' +p32334 +sa(dp32335 +g25267 +g27 +sg25268 +S'Crock' +p32336 +sg25270 +S'Yolande Delasser' +p32337 +sa(dp32338 +g25267 +g27 +sg25268 +S'Earthenware jar' +p32339 +sg25270 +S'Jessica Price' +p32340 +sa(dp32341 +g25267 +g27 +sg25268 +S'Crock' +p32342 +sg25270 +S'Yolande Delasser' +p32343 +sa(dp32344 +g25267 +g27 +sg25268 +S'Crock' +p32345 +sg25270 +S'Hedwig Emanuel' +p32346 +sa(dp32347 +g25268 +S'Wine Pot' +p32348 +sg25270 +S'Chinese Qing Dynasty' +p32349 +sg25273 +S'overall (with lid): 14 x 15.9 cm (5 1/2 x 6 1/4 in.)' +p32350 +sg25275 +S'\nporcelain with famille jaune enamels on the biscuit' +p32351 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004ddf.jpg' +p32352 +sg25267 +g27 +sa(dp32353 +g25267 +g27 +sg25268 +S'Crock' +p32354 +sg25270 +S'Frank Fumagalli' +p32355 +sa(dp32356 +g25267 +g27 +sg25268 +S'Ring Bottle' +p32357 +sg25270 +S'Giacinto Capelli' +p32358 +sa(dp32359 +g25267 +g27 +sg25268 +S'Weiss Beer Bottle' +p32360 +sg25270 +S'Lloyd Charles Lemcke' +p32361 +sa(dp32362 +g25267 +g27 +sg25268 +S'Stoneware Beer Bottle' +p32363 +sg25270 +S'Herman O. Stroh' +p32364 +sa(dp32365 +g25267 +g27 +sg25268 +S'Earthenware Ale Bottle' +p32366 +sg25270 +S'Gerald Transpota' +p32367 +sa(dp32368 +g25267 +g27 +sg25268 +S'Stone Bottle' +p32369 +sg25270 +S'Frank Maurer' +p32370 +sa(dp32371 +g25267 +g27 +sg25268 +S'Gemel Bottle' +p32372 +sg25270 +S'Isadore Goldberg' +p32373 +sa(dp32374 +g25267 +g27 +sg25268 +S'Gemel Bottle' +p32375 +sg25270 +S'Yolande Delasser' +p32376 +sa(dp32377 +g25267 +g27 +sg25268 +S'Bottle, Root Beer' +p32378 +sg25270 +S'Charles Caseau' +p32379 +sa(dp32380 +g25267 +g27 +sg25268 +S'Beer Bottle' +p32381 +sg25270 +S'Arthur Stewart' +p32382 +sa(dp32383 +g25268 +S'Wine Pot' +p32384 +sg25270 +S'Chinese Qing Dynasty' +p32385 +sg25273 +S'overall (with lid): 11.3 x 15.4 cm (4 7/16 x 6 1/16 in.)' +p32386 +sg25275 +S'\nporcelain with famille verte, famille jaune, and famille noire enamels on the biscuit' +p32387 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004de0.jpg' +p32388 +sg25267 +g27 +sa(dp32389 +g25267 +g27 +sg25268 +S'Stoneware Ink Bottle or Catsup Bottle' +p32390 +sg25270 +S'Richard Barnett' +p32391 +sa(dp32392 +g25267 +g27 +sg25268 +S'Ring Bottle' +p32393 +sg25270 +S'Yolande Delasser' +p32394 +sa(dp32395 +g25267 +g27 +sg25268 +S'Bowl' +p32396 +sg25270 +S'Lloyd Charles Lemcke' +p32397 +sa(dp32398 +g25267 +g27 +sg25268 +S'Pitcher' +p32399 +sg25270 +S'Edward Unger' +p32400 +sa(dp32401 +g25267 +g27 +sg25268 +S'Pottery Jug' +p32402 +sg25270 +S'Willoughby Ions' +p32403 +sa(dp32404 +g25267 +g27 +sg25268 +S'Wall Pocket for Flowers' +p32405 +sg25270 +S'John Fisk' +p32406 +sa(dp32407 +g25267 +g27 +sg25268 +S'Flower Pot with Saucer' +p32408 +sg25270 +S'David Ellinger' +p32409 +sa(dp32410 +g25267 +g27 +sg25268 +S'Pitcher' +p32411 +sg25270 +S'Janet Riza' +p32412 +sa(dp32413 +g25267 +g27 +sg25268 +S'Wall Pocket for Flowers' +p32414 +sg25270 +S'John Fisk' +p32415 +sa(dp32416 +g25267 +g27 +sg25268 +S'Shaving Mug' +p32417 +sg25270 +S'Mina Lowry' +p32418 +sa(dp32419 +g25268 +S'Wine Pot' +p32420 +sg25270 +S'Chinese Qing Dynasty' +p32421 +sg25273 +S'overall (with lid): 11.4 x 15.2 cm (4 1/2 x 6 in.)' +p32422 +sg25275 +S'\nporcelain with famille verte, famille jaune, and famille noire enamels on the biscuit' +p32423 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004de1.jpg' +p32424 +sg25267 +g27 +sa(dp32425 +g25267 +g27 +sg25268 +S'Pitcher' +p32426 +sg25270 +S'Mina Lowry' +p32427 +sa(dp32428 +g25267 +g27 +sg25268 +S'Desk Box' +p32429 +sg25270 +S'Joseph Rothenberg' +p32430 +sa(dp32431 +g25267 +g27 +sg25268 +S'Folding Desk' +p32432 +sg25270 +S'Thomas Holloway' +p32433 +sa(dp32434 +g25267 +g27 +sg25268 +S'Folding Desk' +p32435 +sg25270 +S'Thomas Holloway' +p32436 +sa(dp32437 +g25267 +g27 +sg25268 +S'Lap Desk' +p32438 +sg25270 +S'Edna C. Rex' +p32439 +sa(dp32440 +g25267 +g27 +sg25268 +S'Writing Desk, Lap' +p32441 +sg25270 +S'Mattie P. Goodman' +p32442 +sa(dp32443 +g25267 +g27 +sg25268 +S'High Chest of Drawers' +p32444 +sg25270 +S'Carl Weiss' +p32445 +sa(dp32446 +g25267 +g27 +sg25268 +S'Chest' +p32447 +sg25270 +S'Eugene Barrell' +p32448 +sa(dp32449 +g25267 +g27 +sg25268 +S'Highboy' +p32450 +sg25270 +S'Harry Eisman' +p32451 +sa(dp32452 +g25267 +g27 +sg25268 +S'Highboy' +p32453 +sg25270 +S'Isadore Goldberg' +p32454 +sa(dp32455 +g25268 +S'Wine Ewer' +p32456 +sg25270 +S'Chinese Qing Dynasty' +p32457 +sg25273 +S'overall (with lid): 33 x 17.8 cm (13 x 7 in.)' +p32458 +sg25275 +S'\nporcelain with overglaze famille verte enamels' +p32459 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004de2.jpg' +p32460 +sg25267 +S'The hexagonal wine ewer employs the colors yellow, aubergine, black, and \n two shades of green. The primary motifs in the decoration are the large \n \n (Text by Stephen Little, published in the NGA Systematic Catalogue: \n ' +p32461 +sa(dp32462 +g25267 +g27 +sg25268 +S'Highboy' +p32463 +sg25270 +S'Isadore Goldberg' +p32464 +sa(dp32465 +g25267 +g27 +sg25268 +S'Highboy' +p32466 +sg25270 +S'Artist Information (' +p32467 +sa(dp32468 +g25267 +g27 +sg25268 +S'High-boy' +p32469 +sg25270 +S'Randolph F. Miller' +p32470 +sa(dp32471 +g25267 +g27 +sg25268 +S'Highboy-front and Side Views' +p32472 +sg25270 +S'Fred Weiss' +p32473 +sa(dp32474 +g25267 +g27 +sg25268 +S'Early American highboy' +p32475 +sg25270 +S'Ralph Boyer' +p32476 +sa(dp32477 +g25267 +g27 +sg25268 +S'Highboy' +p32478 +sg25270 +S'Louis Annino' +p32479 +sa(dp32480 +g25267 +g27 +sg25268 +S'Highboy' +p32481 +sg25270 +S'Francis Borelli' +p32482 +sa(dp32483 +g25267 +g27 +sg25268 +S'Highboy' +p32484 +sg25270 +S'Charles Squires' +p32485 +sa(dp32486 +g25267 +g27 +sg25268 +S'Highboy' +p32487 +sg25270 +S'David S. De Vault' +p32488 +sa(dp32489 +g25267 +g27 +sg25268 +S'Highboy' +p32490 +sg25270 +S'Martin Partyka' +p32491 +sa(dp32492 +g25268 +S'Reticulated Perfume Ball' +p32493 +sg25270 +S'Chinese Qing Dynasty' +p32494 +sg25273 +S'overall: 9.9 x 11.1 cm (3 7/8 x 4 3/8 in.)' +p32495 +sg25275 +S'\nporcelain with famille jaune enamels on the biscuit' +p32496 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004de3.jpg' +p32497 +sg25267 +g27 +sa(dp32498 +g25267 +g27 +sg25268 +S'Highboy' +p32499 +sg25270 +S'Charles Squires' +p32500 +sa(dp32501 +g25267 +g27 +sg25268 +S'Highboy' +p32502 +sg25270 +S'Fred Weiss' +p32503 +sa(dp32504 +g25267 +g27 +sg25268 +S'Highboy' +p32505 +sg25270 +S'Isadore Goldberg' +p32506 +sa(dp32507 +g25267 +g27 +sg25268 +S'Highboy' +p32508 +sg25270 +S'Harry Eisman' +p32509 +sa(dp32510 +g25267 +g27 +sg25268 +S'Lowboy' +p32511 +sg25270 +S'Frank Wenger' +p32512 +sa(dp32513 +g25267 +g27 +sg25268 +S'Lowboy' +p32514 +sg25270 +S'Alfred Walbeck' +p32515 +sa(dp32516 +g25267 +g27 +sg25268 +S'Lowboy' +p32517 +sg25270 +S'Isidore Sovensky' +p32518 +sa(dp32519 +g25267 +g27 +sg25268 +S'Lowboy' +p32520 +sg25270 +S'Charles Squires' +p32521 +sa(dp32522 +g25267 +g27 +sg25268 +S'Lowboy' +p32523 +sg25270 +S'Henry Moore' +p32524 +sa(dp32525 +g25267 +g27 +sg25268 +S'Lowboy' +p32526 +sg25270 +S'Eva Fox' +p32527 +sa(dp32528 +g25268 +S'Stand' +p32529 +sg25270 +S'Chinese Qing Dynasty' +p32530 +sg25273 +S'overall: 7.5 x 9.5 cm (2 15/16 x 3 3/4 in.)' +p32531 +sg25275 +S'\nporcelain with famille jaune enamels on the biscuit' +p32532 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004de3.jpg' +p32533 +sg25267 +g27 +sa(dp32534 +g25267 +g27 +sg25268 +S'Lowboy' +p32535 +sg25270 +S'M. Rosenshield-von-Paulin' +p32536 +sa(dp32537 +g25267 +g27 +sg25268 +S'Lowboy' +p32538 +sg25270 +S'Alvin M. Gully' +p32539 +sa(dp32540 +g25267 +g27 +sg25268 +S'Lowboy' +p32541 +sg25270 +S'Arthur Johnson' +p32542 +sa(dp32543 +g25267 +g27 +sg25268 +S'Lowboy' +p32544 +sg25270 +S'Alvin M. Gully' +p32545 +sa(dp32546 +g25267 +S'In the William and Mary period, low chests on legs were often used as supports\r\n for high chests. In eighteenth-century America, they were frequently made as separate\r\n pieces, and the term "lowboy" became part of popular terminology. This lowboy, made\r\n by William Savery, the Philadelphia cabinetmaker, is a companion piece to the highboy\r\n seen in the previous frame. Like the highboy, this piece has shaped skirting with\r\n rocaille, or shell-like, carving. The cabriole legs, ending in bold claw and ball\r\n feet, are vigorously carved at the knee in an acanthus design. The quarter columns\r\n at the front corners are ornamented with vine carvings. The top is edged with a\r\n variety of carved borders: a Greek fret design lies beneath a running band of wavelike,\r\n interlaced curves called a guilloche border. The elaborately carved middle drawer\r\n dominates the decoration and brings together both shell and foliate motifs.\n ' +p32547 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002cc.jpg' +p32548 +sg25268 +S'Lowboy' +p32549 +sg25270 +S'Isadore Goldberg' +p32550 +sa(dp32551 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p32552 +sg25270 +S'Florence Choate' +p32553 +sa(dp32554 +g25267 +g27 +sg25268 +S'Dresser' +p32555 +sg25270 +S'Ethel Dougan' +p32556 +sa(dp32557 +g25267 +g27 +sg25268 +S'Dresser' +p32558 +sg25270 +S'Dana Bartlett' +p32559 +sa(dp32560 +g25267 +g27 +sg25268 +S'Drawers and Mirror' +p32561 +sg25270 +S'Juanita Lantz' +p32562 +sa(dp32563 +g25267 +g27 +sg25268 +S'Chest' +p32564 +sg25270 +S'Lelah Nelson' +p32565 +sa(dp32566 +g25268 +S'Reticulated Perfume Ball' +p32567 +sg25270 +S'Chinese Qing Dynasty' +p32568 +sg25273 +S'overall: 10.5 x 10.8 cm (4 1/8 x 4 1/4 in.)' +p32569 +sg25275 +S'\nporcelain with famille verte enamels on the biscuit' +p32570 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004de4.jpg' +p32571 +sg25267 +g27 +sa(dp32572 +g25267 +g27 +sg25268 +S'Dressing Table' +p32573 +sg25270 +S'Eugene Croe' +p32574 +sa(dp32575 +g25267 +g27 +sg25268 +S'Bureau' +p32576 +sg25270 +S'Ernest A. Towers, Jr.' +p32577 +sa(dp32578 +g25267 +g27 +sg25268 +S'Dressing Table' +p32579 +sg25270 +S'Michael Trekur' +p32580 +sa(dp32581 +g25267 +g27 +sg25268 +S'Old Dresser' +p32582 +sg25270 +S'Mary E. Humes' +p32583 +sa(dp32584 +g25267 +g27 +sg25268 +S'Dressing Table' +p32585 +sg25270 +S'William H. Edwards' +p32586 +sa(dp32587 +g25267 +g27 +sg25268 +S'Comb Box' +p32588 +sg25270 +S'Chris Makrenos' +p32589 +sa(dp32590 +g25267 +g27 +sg25268 +S'Fire Screen' +p32591 +sg25270 +S'Maud Schmid' +p32592 +sa(dp32593 +g25267 +g27 +sg25268 +S'Pole Screen' +p32594 +sg25270 +S'Melita Hofmann' +p32595 +sa(dp32596 +g25267 +g27 +sg25268 +S'Fire Screen' +p32597 +sg25270 +S'Vincent P. Rosel' +p32598 +sa(dp32599 +g25267 +g27 +sg25268 +S'Embroidered Fire Screen' +p32600 +sg25270 +S'Ernest A. Towers, Jr.' +p32601 +sa(dp32602 +g25268 +S'Reticulated Perfume Ball' +p32603 +sg25270 +S'Chinese Qing Dynasty' +p32604 +sg25273 +S'overall: 9.4 x 9.9 cm (3 11/16 x 3 7/8 in.)' +p32605 +sg25275 +S'\nporcelain with famille jaune enamels on the biscuit' +p32606 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004de5.jpg' +p32607 +sg25267 +g27 +sa(dp32608 +g25267 +g27 +sg25268 +S'Petit Point Fire Screen' +p32609 +sg25270 +S'Ernest A. Towers, Jr.' +p32610 +sa(dp32611 +g25267 +g27 +sg25268 +S'Petit Point Fire Screen' +p32612 +sg25270 +S'Ernest A. Towers, Jr.' +p32613 +sa(dp32614 +g25267 +g27 +sg25268 +S'Parlor Flower Stand' +p32615 +sg25270 +S'Nicholas Zupa' +p32616 +sa(dp32617 +g25267 +g27 +sg25268 +S'Picture Frame-Carved Wood' +p32618 +sg25270 +S'Natalie Simon' +p32619 +sa(dp32620 +g25267 +g27 +sg25268 +S'Picture Frame' +p32621 +sg25270 +S'Manuel G. Runyan' +p32622 +sa(dp32623 +g25267 +g27 +sg25268 +S'Pottery Picture Frame' +p32624 +sg25270 +S'Fritz Boehmer' +p32625 +sa(dp32626 +g25267 +g27 +sg25268 +S'Picture Frame' +p32627 +sg25270 +S'Katherine Hastings' +p32628 +sa(dp32629 +g25267 +g27 +sg25268 +S'Elliptical Picture Frame' +p32630 +sg25270 +S'Helen McCollum' +p32631 +sa(dp32632 +g25267 +g27 +sg25268 +S'Mirror Frame' +p32633 +sg25270 +S'Lawrence Phillips' +p32634 +sa(dp32635 +g25267 +g27 +sg25268 +S'Hand-carved Picture Frame "River of Life" Motif' +p32636 +sg25270 +S'Vera Van Voris' +p32637 +sa(dp32638 +g25268 +S'Reticulated Box' +p32639 +sg25270 +S'Chinese Qing Dynasty' +p32640 +sg25273 +S'overall: 26.2 x 24.9 cm (10 5/16 x 9 13/16 in.)' +p32641 +sg25275 +S'\nporcelain with famille jaune enamels on the biscuit' +p32642 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004de7.jpg' +p32643 +sg25267 +g27 +sa(dp32644 +g25267 +g27 +sg25268 +S'Picture Frame' +p32645 +sg25270 +S'Harry Mann Waddell' +p32646 +sa(dp32647 +g25267 +g27 +sg25268 +S'Picture Frame' +p32648 +sg25270 +S'Artist Information (' +p32649 +sa(dp32650 +g25267 +g27 +sg25268 +S'Carved Picture Frame Molding' +p32651 +sg25270 +S'Vera Van Voris' +p32652 +sa(dp32653 +g25267 +g27 +sg25268 +S'Footstool' +p32654 +sg25270 +S'Frank Nelson' +p32655 +sa(dp32656 +g25267 +g27 +sg25268 +S'Footstool' +p32657 +sg25270 +S'Jack Williamson' +p32658 +sa(dp32659 +g25267 +g27 +sg25268 +S'Footstool' +p32660 +sg25270 +S'Charles Moss' +p32661 +sa(dp32662 +g25267 +g27 +sg25268 +S'Footstool' +p32663 +sg25270 +S'Albert Geuppert' +p32664 +sa(dp32665 +g25267 +g27 +sg25268 +S'Cricket (Foot Stool)' +p32666 +sg25270 +S'Dan Ziger' +p32667 +sa(dp32668 +g25267 +g27 +sg25268 +S'Pine Footstool' +p32669 +sg25270 +S'Henry Moran' +p32670 +sa(dp32671 +g25267 +g27 +sg25268 +S'Stool-Living Room' +p32672 +sg25270 +S'Carl Weiss' +p32673 +sa(dp32674 +g25268 +S'Wine Cup' +p32675 +sg25270 +S'Chinese Qing Dynasty' +p32676 +sg25273 +S'overall (without handle): 3.1 x 5.1 cm (1 1/4 x 2 in.)' +p32677 +sg25275 +S'\nporcelain with famille verte and famille jaune enamels on the biscuit' +p32678 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004de9.jpg' +p32679 +sg25267 +g27 +sa(dp32680 +g25267 +g27 +sg25268 +S'Ottoman' +p32681 +sg25270 +S'Hugh Clarke' +p32682 +sa(dp32683 +g25267 +g27 +sg25268 +S'Rocker Footstool' +p32684 +sg25270 +S'Artist Information (' +p32685 +sa(dp32686 +g25267 +g27 +sg25268 +S'Stool' +p32687 +sg25270 +S'Florence Huston' +p32688 +sa(dp32689 +g25267 +g27 +sg25268 +S'Stool' +p32690 +sg25270 +S'Frank Wenger' +p32691 +sa(dp32692 +g25267 +g27 +sg25268 +S'Stool' +p32693 +sg25270 +S'Frank Wenger' +p32694 +sa(dp32695 +g25267 +g27 +sg25268 +S'Foot Stool' +p32696 +sg25270 +S'Frank Nelson' +p32697 +sa(dp32698 +g25267 +g27 +sg25268 +S'Foot Stool' +p32699 +sg25270 +S'Albert Camilli' +p32700 +sa(dp32701 +g25267 +g27 +sg25268 +S'Stool' +p32702 +sg25270 +S'Frank Wenger' +p32703 +sa(dp32704 +g25267 +g27 +sg25268 +S'Foot Stool' +p32705 +sg25270 +S'Alexander Anderson' +p32706 +sa(dp32707 +g25267 +g27 +sg25268 +S'Seat' +p32708 +sg25270 +S'Dorothy Handy' +p32709 +sa(dp32710 +g25268 +S'Wine Cup' +p32711 +sg25270 +S'Chinese Qing Dynasty' +p32712 +sg25273 +S'overall (without handle): 3.2 x 5.2 cm (1 1/4 x 2 1/16 in.)' +p32713 +sg25275 +S'\nporcelain with famille verte and famille jaune enamels on the biscuit' +p32714 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004deb.jpg' +p32715 +sg25267 +S'This molded cup is decorated in the \n (Text by Stephen Little, published in the NGA Systematic Catalogue: \n ' +p32716 +sa(dp32717 +g25267 +g27 +sg25268 +S'Stool' +p32718 +sg25270 +S'Charles Bowman' +p32719 +sa(dp32720 +g25267 +g27 +sg25268 +S'Foot Stool - Mahogany with Horse Hair Covering' +p32721 +sg25270 +S'Magnus S. Fossum' +p32722 +sa(dp32723 +g25267 +g27 +sg25268 +S'Foot Rest' +p32724 +sg25270 +S'Georgine E. Mason' +p32725 +sa(dp32726 +g25267 +g27 +sg25268 +S'Mirror' +p32727 +sg25270 +S'Francis Borelli' +p32728 +sa(dp32729 +g25267 +g27 +sg25268 +S'Mirror' +p32730 +sg25270 +S'Francis Borelli' +p32731 +sa(dp32732 +g25267 +g27 +sg25268 +S'Mirror' +p32733 +sg25270 +S'Arthur Johnson' +p32734 +sa(dp32735 +g25267 +g27 +sg25268 +S'Dressing Mirror' +p32736 +sg25270 +S'Frank Wenger' +p32737 +sa(dp32738 +g25267 +g27 +sg25268 +S'Mirror' +p32739 +sg25270 +S'Harold Smith' +p32740 +sa(dp32741 +g25267 +g27 +sg25268 +S'Mirror' +p32742 +sg25270 +S'Nicholas Gorid' +p32743 +sa(dp32744 +g25267 +g27 +sg25268 +S'Looking-glass' +p32745 +sg25270 +S'Rex Dolmith' +p32746 +sa(dp32747 +g25268 +S'Wine Cup' +p32748 +sg25270 +S'Chinese Qing Dynasty' +p32749 +sg25273 +S'overall (without handle): 3 x 5.3 cm (1 3/16 x 2 1/16 in.)' +p32750 +sg25275 +S'\nporcelain with famille verte and famille jaune enamels on the biscuit' +p32751 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004ded.jpg' +p32752 +sg25267 +g27 +sa(dp32753 +g25267 +g27 +sg25268 +S'Looking-glass' +p32754 +sg25270 +S'Rex Dolmith' +p32755 +sa(dp32756 +g25267 +g27 +sg25268 +S'Pier-glass' +p32757 +sg25270 +S'Rex Dolmith' +p32758 +sa(dp32759 +g25267 +S'Mirror glass became available to the colonists after 1673, when the English\r\n began producing it. For the next century, English mirror glass was used by American\r\n cabinetmakers. At first it was made in small sheets, but gradually, the size was\r\n increased. Frames were enlarged to accommodate larger mirror panels, and their\r\n design became more elaborate. The preference for slim forms exhibited in other Queen\r\n Anne furniture can be observed in the mirrors of the period. Typically, a long\r\n narrow frame contains two panels of glass, as in this tall mirror, which bears\r\n on its back the inscription "Trimbell, 1747, Phila." An elegant effect is achieved\r\n through the contrast of the rich wood tones of the frame with the carved gold-leaf\r\n inner border and gilded medallion. The characteristic Queen Anne S-curve is \r\n seen in the carved scrolls that give the crest its ornamental silhouette.\n ' +p32760 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000036e.jpg' +p32761 +sg25268 +S'Queen Anne Mirror' +p32762 +sg25270 +S'Leslie Macklem' +p32763 +sa(dp32764 +g25267 +g27 +sg25268 +S'Mirror' +p32765 +sg25270 +S'Fred Weiss' +p32766 +sa(dp32767 +g25267 +g27 +sg25268 +S'Mirror' +p32768 +sg25270 +S'Gilbert Sackerman' +p32769 +sa(dp32770 +g25267 +g27 +sg25268 +S'Mirror' +p32771 +sg25270 +S'Lorenz Rothkranz' +p32772 +sa(dp32773 +g25267 +g27 +sg25268 +S'Mirror' +p32774 +sg25270 +S'Arthur Johnson' +p32775 +sa(dp32776 +g25267 +g27 +sg25268 +S'Mirror' +p32777 +sg25270 +S'Arthur Johnson' +p32778 +sa(dp32779 +g25267 +g27 +sg25268 +S'Mirror' +p32780 +sg25270 +S'Arthur Johnson' +p32781 +sa(dp32782 +g25267 +g27 +sg25268 +S'Mirror' +p32783 +sg25270 +S'Arthur Johnson' +p32784 +sa(dp32785 +g25268 +S'Wine Cup' +p32786 +sg25270 +S'Chinese Qing Dynasty' +p32787 +sg25273 +S'overall (without handle): 3.2 x 5.6 cm (1 1/4 x 2 3/16 in.)' +p32788 +sg25275 +S'\nporcelain with famille verte and famille jaune enamels on the biscuit' +p32789 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004def.jpg' +p32790 +sg25267 +g27 +sa(dp32791 +g25267 +g27 +sg25268 +S'Mirror' +p32792 +sg25270 +S'American 20th Century' +p32793 +sa(dp32794 +g25267 +g27 +sg25268 +S'Mirror' +p32795 +sg25270 +S'Fred Weiss' +p32796 +sa(dp32797 +g25267 +g27 +sg25268 +S'Hepplewhite Mirror' +p32798 +sg25270 +S'Nicholas Gorid' +p32799 +sa(dp32800 +g25267 +g27 +sg25268 +S'Mirror Frame' +p32801 +sg25270 +S'David S. De Vault' +p32802 +sa(dp32803 +g25267 +g27 +sg25268 +S'Mirror' +p32804 +sg25270 +S'Wellington Blewett' +p32805 +sa(dp32806 +g25267 +g27 +sg25268 +S'Tall Clock' +p32807 +sg25270 +S'Ferdinand Cartier' +p32808 +sa(dp32809 +g25267 +g27 +sg25268 +S'Clock' +p32810 +sg25270 +S'Leonard Battee' +p32811 +sa(dp32812 +g25267 +g27 +sg25268 +S'Grandfather Clock' +p32813 +sg25270 +S'Amos C. Brinton' +p32814 +sa(dp32815 +g25267 +g27 +sg25268 +S'Tall Clock' +p32816 +sg25270 +S'Francis Borelli' +p32817 +sa(dp32818 +g25267 +g27 +sg25268 +S'Grandfather Clock' +p32819 +sg25270 +S'Stanley Mazur' +p32820 +sa(dp32821 +g25268 +S'Wine Cup' +p32822 +sg25270 +S'Chinese Qing Dynasty' +p32823 +sg25273 +S'overall (without handle): 3.2 x 5.1 cm (1 1/4 x 2 in.)' +p32824 +sg25275 +S'\nporcelain with famille verte and famille jaune enamels on the biscuit' +p32825 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004df1.jpg' +p32826 +sg25267 +g27 +sa(dp32827 +g25267 +g27 +sg25268 +S'Clock' +p32828 +sg25270 +S'Lawrence Phillips' +p32829 +sa(dp32830 +g25267 +g27 +sg25268 +S'Tall Clock' +p32831 +sg25270 +S'Lorenz Rothkranz' +p32832 +sa(dp32833 +g25267 +g27 +sg25268 +S'Corner Cupboard (Used for Storing China)' +p32834 +sg25270 +S'Francis Law Durand' +p32835 +sa(dp32836 +g25267 +g27 +sg25268 +S'Corner Cupboard' +p32837 +sg25270 +S'Ernest A. Towers, Jr.' +p32838 +sa(dp32839 +g25267 +g27 +sg25268 +S'Cupboard' +p32840 +sg25270 +S'Leslie Macklem' +p32841 +sa(dp32842 +g25267 +g27 +sg25268 +S'Cradle' +p32843 +sg25270 +S'Harry King' +p32844 +sa(dp32845 +g25267 +g27 +sg25268 +S'Wooden Cradle' +p32846 +sg25270 +S'Edmond Lorts' +p32847 +sa(dp32848 +g25267 +g27 +sg25268 +S'Corner cupboard' +p32849 +sg25270 +S'Leslie Macklem' +p32850 +sa(dp32851 +g25267 +g27 +sg25268 +S'Cradle' +p32852 +sg25270 +S'Leonard Battee' +p32853 +sa(dp32854 +g25267 +g27 +sg25268 +S'Corner Cupboard' +p32855 +sg25270 +S'Joseph Ficcadenti' +p32856 +sa(dp32857 +g25268 +S'Wine Cup' +p32858 +sg25270 +S'Chinese Qing Dynasty' +p32859 +sg25273 +S'overall (without handle): 3.1 x 5.4 cm (1 1/4 x 2 1/8 in.)' +p32860 +sg25275 +S'\nporcelain with famille verte and famille jaune enamels on the biscuit' +p32861 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004df3.jpg' +p32862 +sg25267 +g27 +sa(dp32863 +g25267 +g27 +sg25268 +S'Cupboard with Drawers' +p32864 +sg25270 +S'Harold Merriam' +p32865 +sa(dp32866 +g25267 +g27 +sg25268 +S'Court Cupboard' +p32867 +sg25270 +S'Artist Information (' +p32868 +sa(dp32869 +g25267 +g27 +sg25268 +S'Press Cupboard' +p32870 +sg25270 +S'Charles Henning' +p32871 +sa(dp32872 +g25267 +g27 +sg25268 +S'Hanging Corner Cupboard' +p32873 +sg25270 +S'Wilbur M Rice' +p32874 +sa(dp32875 +g25267 +g27 +sg25268 +S'Miniature Chest' +p32876 +sg25270 +S'Frank Gray' +p32877 +sa(dp32878 +g25267 +g27 +sg25268 +S'Hanging Corner Cupboard' +p32879 +sg25270 +S'William H. Edwards' +p32880 +sa(dp32881 +g25267 +g27 +sg25268 +S'Cupboard' +p32882 +sg25270 +S'Florence Truelson' +p32883 +sa(dp32884 +g25267 +g27 +sg25268 +S'Dressing Table' +p32885 +sg25270 +S'Charles Henning' +p32886 +sa(dp32887 +g25267 +g27 +sg25268 +S'Day Bed' +p32888 +sg25270 +S'Harry Eisman' +p32889 +sa(dp32890 +g25267 +g27 +sg25268 +S"Gentlemen's Smoking Lounge" +p32891 +sg25270 +S'Leonard Battee' +p32892 +sa(dp32893 +g25268 +S'Wine Cup' +p32894 +sg25270 +S'Chinese Qing Dynasty' +p32895 +sg25273 +S'overall (without handle): 3.2 x 5.1 cm (1 1/4 x 2 in.)' +p32896 +sg25275 +S'\nporcelain with famille verte and famille jaune enamels on the biscuit' +p32897 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004df5.jpg' +p32898 +sg25267 +g27 +sa(dp32899 +g25267 +g27 +sg25268 +S'Desk' +p32900 +sg25270 +S'Fritz Boehmer' +p32901 +sa(dp32902 +g25267 +g27 +sg25268 +S'Desk' +p32903 +sg25270 +S'Charles Bowman' +p32904 +sa(dp32905 +g25267 +g27 +sg25268 +S'Roll-top Desk' +p32906 +sg25270 +S'M. Rosenshield-von-Paulin' +p32907 +sa(dp32908 +g25267 +g27 +sg25268 +S'Desk' +p32909 +sg25270 +S'Harry Eisman' +p32910 +sa(dp32911 +g25267 +g27 +sg25268 +S'Desk' +p32912 +sg25270 +S'Einar Heiberg' +p32913 +sa(dp32914 +g25267 +g27 +sg25268 +S'Desk' +p32915 +sg25270 +S'Isidore Sovensky' +p32916 +sa(dp32917 +g25267 +g27 +sg25268 +S'Desk' +p32918 +sg25270 +S'Isadore Goldberg' +p32919 +sa(dp32920 +g25267 +g27 +sg25268 +S'Highboy' +p32921 +sg25270 +S'M. Rosenshield-von-Paulin' +p32922 +sa(dp32923 +g25267 +g27 +sg25268 +S'Desk' +p32924 +sg25270 +S'Ferdinand Cartier' +p32925 +sa(dp32926 +g25267 +g27 +sg25268 +S'Desk' +p32927 +sg25270 +S'Ferdinand Cartier' +p32928 +sa(dp32929 +g25268 +S'Wine Cup' +p32930 +sg25270 +S'Chinese Qing Dynasty' +p32931 +sg25273 +S'overall (without handle): 3.2 x 5.1 cm (1 1/4 x 2 in.)' +p32932 +sg25275 +S'\nporcelain with famille verte and famille jaune enamels on the biscuit' +p32933 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004df7.jpg' +p32934 +sg25267 +g27 +sa(dp32935 +g25267 +g27 +sg25268 +S'Desk' +p32936 +sg25270 +S'Frank Eiseman' +p32937 +sa(dp32938 +g25267 +g27 +sg25268 +S'Mirror' +p32939 +sg25270 +S'Artist Information (' +p32940 +sa(dp32941 +g25267 +g27 +sg25268 +S'Mirror' +p32942 +sg25270 +S'Arthur Johnson' +p32943 +sa(dp32944 +g25267 +g27 +sg25268 +S'Mirror' +p32945 +sg25270 +S'Nicholas Gorid' +p32946 +sa(dp32947 +g25267 +g27 +sg25268 +S'Mirror' +p32948 +sg25270 +S'Nicholas Gorid' +p32949 +sa(dp32950 +g25267 +g27 +sg25268 +S'Frame for a Mirror' +p32951 +sg25270 +S'Nicholas Gorid' +p32952 +sa(dp32953 +g25267 +g27 +sg25268 +S'Mirror' +p32954 +sg25270 +S'Nicholas Gorid' +p32955 +sa(dp32956 +g25267 +g27 +sg25268 +S'Looking Glass with Decorated Glass Panel' +p32957 +sg25270 +S'Carl Strehlau' +p32958 +sa(dp32959 +g25267 +g27 +sg25268 +S'Mantel Looking Glass' +p32960 +sg25270 +S'Arthur Johnson' +p32961 +sa(dp32962 +g25267 +g27 +sg25268 +S'Mirror' +p32963 +sg25270 +S'Roberta Elvis' +p32964 +sa(dp32965 +g25268 +S'Wine Cup' +p32966 +sg25270 +S'Chinese Qing Dynasty' +p32967 +sg25273 +S'overall (without handle): 3.2 x 5.1 cm (1 1/4 x 2 in.)' +p32968 +sg25275 +S'\nporcelain with famille verte and famille jaune enamels on the biscuit' +p32969 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004df9.jpg' +p32970 +sg25267 +g27 +sa(dp32971 +g25267 +g27 +sg25268 +S'Empire Mirror' +p32972 +sg25270 +S'Alvin M. Gully' +p32973 +sa(dp32974 +g25267 +g27 +sg25268 +S'Frame for Mirror' +p32975 +sg25270 +S'American 20th Century' +p32976 +sa(dp32977 +g25267 +g27 +sg25268 +S'Mirror (one of a pair)' +p32978 +sg25270 +S'Ferdinand Cartier' +p32979 +sa(dp32980 +g25267 +g27 +sg25268 +S'Colonial Mirror' +p32981 +sg25270 +S'Alfred Walbeck' +p32982 +sa(dp32983 +g25267 +g27 +sg25268 +S'Mantel Looking Glass' +p32984 +sg25270 +S'Arthur Johnson' +p32985 +sa(dp32986 +g25267 +g27 +sg25268 +S'Mirror' +p32987 +sg25270 +S'Marie Famularo' +p32988 +sa(dp32989 +g25267 +g27 +sg25268 +S'Looking-glass' +p32990 +sg25270 +S'George Loughridge' +p32991 +sa(dp32992 +g25267 +g27 +sg25268 +S'Mirror' +p32993 +sg25270 +S'Marie Lutrell' +p32994 +sa(dp32995 +g25267 +g27 +sg25268 +S'Shaving Stand' +p32996 +sg25270 +S'William H. Edwards' +p32997 +sa(dp32998 +g25267 +g27 +sg25268 +S'Mirror with Wood Base' +p32999 +sg25270 +S'Thomas Holloway' +p33000 +sa(dp33001 +g25268 +S'Wine Cup' +p33002 +sg25270 +S'Chinese Qing Dynasty' +p33003 +sg25273 +S'overall (without handle): 3.2 x 5.1 cm (1 1/4 x 2 in.)' +p33004 +sg25275 +S'\nporcelain with famille verte and famille jaune enamels on the biscuit' +p33005 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dfb.jpg' +p33006 +sg25267 +g27 +sa(dp33007 +g25267 +g27 +sg25268 +S'Hand Glass' +p33008 +sg25270 +S'Edith Magnette' +p33009 +sa(dp33010 +g25267 +g27 +sg25268 +S'Dressing Glass' +p33011 +sg25270 +S'Lorenz Rothkranz' +p33012 +sa(dp33013 +g25267 +g27 +sg25268 +S'Dressing-glass' +p33014 +sg25270 +S'Eugene Croe' +p33015 +sa(dp33016 +g25267 +g27 +sg25268 +S'Mirror' +p33017 +sg25270 +S'Frank Wenger' +p33018 +sa(dp33019 +g25267 +g27 +sg25268 +S'Dressing Mirror' +p33020 +sg25270 +S'Samuel O. Klein' +p33021 +sa(dp33022 +g25267 +g27 +sg25268 +S'Mirror' +p33023 +sg25270 +S'Frances Lichten' +p33024 +sa(dp33025 +g25267 +g27 +sg25268 +S'Dressing Mirror' +p33026 +sg25270 +S'Samuel O. Klein' +p33027 +sa(dp33028 +g25267 +g27 +sg25268 +S'Dressing Mirror (cast iron)' +p33029 +sg25270 +S'Paul Ward' +p33030 +sa(dp33031 +g25267 +g27 +sg25268 +S'Shaving Mirror' +p33032 +sg25270 +S'Dana Bartlett' +p33033 +sa(dp33034 +g25267 +g27 +sg25268 +S'Mirror' +p33035 +sg25270 +S'Florence Stevenson' +p33036 +sa(dp33037 +g25268 +S'Wine Cup' +p33038 +sg25270 +S'Chinese Qing Dynasty' +p33039 +sg25273 +S'overall (without handle): 3 x 5.1 cm (1 3/16 x 2 in.)' +p33040 +sg25275 +S'\nporcelain with famille verte and famille jaune enamels on the biscuit' +p33041 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dfd.jpg' +p33042 +sg25267 +g27 +sa(dp33043 +g25267 +g27 +sg25268 +S'Mirror Frame' +p33044 +sg25270 +S'John H. Tercuzzi' +p33045 +sa(dp33046 +g25267 +g27 +sg25268 +S'Ladies Toilet Set' +p33047 +sg25270 +S'William Vergani' +p33048 +sa(dp33049 +g25267 +g27 +sg25268 +S'Mirror' +p33050 +sg25270 +S'Alice Cosgrove' +p33051 +sa(dp33052 +g25267 +g27 +sg25268 +S'Hand Carved Mirror Frame' +p33053 +sg25270 +S'Rolland Ayres' +p33054 +sa(dp33055 +g25267 +g27 +sg25268 +S'Wall Mirror' +p33056 +sg25270 +S'Raymond Manupelli' +p33057 +sa(dp33058 +g25267 +g27 +sg25268 +S'Mirror' +p33059 +sg25270 +S'Raymond Neumann' +p33060 +sa(dp33061 +g25267 +g27 +sg25268 +S'Mirror' +p33062 +sg25270 +S'Kurt Melzer' +p33063 +sa(dp33064 +g25267 +g27 +sg25268 +S'House Looking Glass' +p33065 +sg25270 +S'Emilio Zito' +p33066 +sa(dp33067 +g25267 +g27 +sg25268 +S'Mirror' +p33068 +sg25270 +S'David S. De Vault' +p33069 +sa(dp33070 +g25267 +g27 +sg25268 +S'Mirror Support - Red Six Point Star' +p33071 +sg25270 +S'Helen Bronson' +p33072 +sa(dp33073 +g25268 +S'Wine Cup' +p33074 +sg25270 +S'Chinese Qing Dynasty' +p33075 +sg25273 +S'overall (without handle): 2.8 x 5.1 cm (1 1/8 x 2 in.)' +p33076 +sg25275 +S'\nporcelain with famille verte and famille jaune enamels on the biscuit' +p33077 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004dff.jpg' +p33078 +sg25267 +g27 +sa(dp33079 +g25267 +g27 +sg25268 +S'Mirror Support - Blue Six Point Star' +p33080 +sg25270 +S'Helen Bronson' +p33081 +sa(dp33082 +g25267 +g27 +sg25268 +S'Mirror Support - Victory Head' +p33083 +sg25270 +S'Harry Jennings' +p33084 +sa(dp33085 +g25267 +g27 +sg25268 +S'Mirror Support - Lady Bust' +p33086 +sg25270 +S'Helen Bronson' +p33087 +sa(dp33088 +g25267 +g27 +sg25268 +S'Church Pew' +p33089 +sg25270 +S'Randolph Atkinson' +p33090 +sa(dp33091 +g25267 +g27 +sg25268 +S'Meeting House Pew' +p33092 +sg25270 +S'Donald Streeter' +p33093 +sa(dp33094 +g25267 +g27 +sg25268 +S'Redwood Burl Pulpit' +p33095 +sg25270 +S'Lena Nastasi' +p33096 +sa(dp33097 +g25267 +g27 +sg25268 +S'Hanging Comb Rack' +p33098 +sg25270 +S'Frank Budash' +p33099 +sa(dp33100 +g25267 +g27 +sg25268 +S'Comb and Brush Case' +p33101 +sg25270 +S'J. Herman McCollum' +p33102 +sa(dp33103 +g25267 +g27 +sg25268 +S'Towel Rack' +p33104 +sg25270 +S'Elizabeth Fairchild' +p33105 +sa(dp33106 +g25267 +g27 +sg25268 +S'Hat Rack (Shaped Like Ox Yoke)' +p33107 +sg25270 +S'Charlotte Angus' +p33108 +sa(dp33109 +g25268 +S'Hexagonal Covered Jar' +p33110 +sg25270 +S'Chinese Qing Dynasty' +p33111 +sg25273 +S'overall (height with lid): 30 cm (11 13/16 in.)' +p33112 +sg25275 +S'\nporcelain with famille jaune enamels on the biscuit' +p33113 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e00.jpg' +p33114 +sg25267 +g27 +sa(dp33115 +g25267 +g27 +sg25268 +S'Wall Rack for Newspapers' +p33116 +sg25270 +S'Lloyd Charles Lemcke' +p33117 +sa(dp33118 +g25267 +g27 +sg25268 +S'Wall Hat Rack' +p33119 +sg25270 +S'Vincent P. Rosel' +p33120 +sa(dp33121 +g25267 +g27 +sg25268 +S'Hat-rack' +p33122 +sg25270 +S'Pearl Davis' +p33123 +sa(dp33124 +g25267 +g27 +sg25268 +S'Comb Wall Case' +p33125 +sg25270 +S'Alexander Anderson' +p33126 +sa(dp33127 +g25267 +g27 +sg25268 +S'Clothes Rack' +p33128 +sg25270 +S'Dayton Brown' +p33129 +sa(dp33130 +g25267 +g27 +sg25268 +S'Drying Rack' +p33131 +sg25270 +S'Mary Hansen' +p33132 +sa(dp33133 +g25267 +g27 +sg25268 +S'Comb and Brush Rack' +p33134 +sg25270 +S'James M. Lawson' +p33135 +sa(dp33136 +g25267 +g27 +sg25268 +S'Hall Tree, of Mahogany' +p33137 +sg25270 +S'Randolph F. Miller' +p33138 +sa(dp33139 +g25267 +g27 +sg25268 +S'Combination Hat Rack and Umbrella Stand' +p33140 +sg25270 +S'Edward L. Loper' +p33141 +sa(dp33142 +g25267 +g27 +sg25268 +S'Comb Case' +p33143 +sg25270 +S'Wilford H. Shurtliff' +p33144 +sa(dp33145 +g25268 +S'Hexagonal Covered Jar' +p33146 +sg25270 +S'Chinese Qing Dynasty' +p33147 +sg25273 +S'overall (height with lid): 30.5 cm (12 in.)' +p33148 +sg25275 +S'\nporcelain with famille jaune enamels on the biscuit' +p33149 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e01.jpg' +p33150 +sg25267 +g27 +sa(dp33151 +g25267 +g27 +sg25268 +S'Carved Walnut Hall Rack' +p33152 +sg25270 +S'Thomas Byrne' +p33153 +sa(dp33154 +g25267 +g27 +sg25268 +S'Secretary' +p33155 +sg25270 +S'Randolph F. Miller' +p33156 +sa(dp33157 +g25267 +g27 +sg25268 +S'Cabinet-top Desk Secretary' +p33158 +sg25270 +S'Ferdinand Cartier' +p33159 +sa(dp33160 +g25267 +g27 +sg25268 +S'Cabinet-top Desk' +p33161 +sg25270 +S'Rolland Livingstone' +p33162 +sa(dp33163 +g25267 +g27 +sg25268 +S'Cabinet-top Desk' +p33164 +sg25270 +S'Rolland Livingstone' +p33165 +sa(dp33166 +g25267 +g27 +sg25268 +S'Secretary' +p33167 +sg25270 +S'Arsen Maralian' +p33168 +sa(dp33169 +g25267 +S'Large, important case pieces were featured in eighteenth-century rooms. This\r\n imposing secretary is a typical form favored in the Chippendale period. Rather\r\n than having the common ball and claw foot, it stands upon boldly carved ogee feet,\r\n that is, a form combining both convex and concave curves. The vigor of the carving\r\n is continued in the block form of the base, which is composed of alternating recessed\r\n and projecting panels cut from solid wood. The sculptural quality of the piece\r\n is further emphasized by the undulating shapes of the interior compartments and\r\n drawers, by the carved panels of the upper doors, and by the molding that outlines\r\n the sweeping curves of the bonnet. Although West Indian mahogany was the predominant\r\n wood of the Chippendale period, cherry and maple were also used. Here, the cabinetmaker\r\n has taken full advantage of the rich, warm tones of native American cherry wood.\n ' +p33170 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002cd.jpg' +p33171 +sg25268 +S'Block-front Desk' +p33172 +sg25270 +S'Harry Eisman' +p33173 +sa(dp33174 +g25267 +g27 +sg25268 +S'Portable Seat' +p33175 +sg25270 +S'Alfred Walbeck' +p33176 +sa(dp33177 +g25267 +g27 +sg25268 +S'Secretary' +p33178 +sg25270 +S'Rolland Livingstone' +p33179 +sa(dp33180 +g25267 +g27 +sg25268 +S'Secretary (Cabinet Top Desk)' +p33181 +sg25270 +S'Rolland Livingstone' +p33182 +sa(dp33183 +g25268 +S'Hexagonal Covered Jar' +p33184 +sg25270 +S'Chinese Qing Dynasty' +p33185 +sg25273 +S'overall (height with lid): 29.9 cm (11 3/4 in.)' +p33186 +sg25275 +S'\nporcelain with famille jaune enamels on the biscuit' +p33187 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e02.jpg' +p33188 +sg25267 +g27 +sa(dp33189 +g25267 +g27 +sg25268 +S'Block-front Secretary (walnut)' +p33190 +sg25270 +S'John Hall' +p33191 +sa(dp33192 +g25267 +g27 +sg25268 +S'Block Front Desk with Cabinet Top' +p33193 +sg25270 +S'Jack Bochner' +p33194 +sa(dp33195 +g25267 +g27 +sg25268 +S'Block Front Desk with Cabinet Top' +p33196 +sg25270 +S'Jack Bochner' +p33197 +sa(dp33198 +g25267 +g27 +sg25268 +S'Secretary' +p33199 +sg25270 +S'Isadore Goldberg' +p33200 +sa(dp33201 +g25267 +g27 +sg25268 +S'Combination Book Case, Desk, and Bureau' +p33202 +sg25270 +S'Henry Meyers' +p33203 +sa(dp33204 +g25267 +g27 +sg25268 +S'Secretary' +p33205 +sg25270 +S'Leon Witt' +p33206 +sa(dp33207 +g25267 +g27 +sg25268 +S'Portable Secretary' +p33208 +sg25270 +S'Edward L. Loper' +p33209 +sa(dp33210 +g25267 +g27 +sg25268 +S'Secretary' +p33211 +sg25270 +S'Bernard Gussow' +p33212 +sa(dp33213 +g25267 +g27 +sg25268 +S'Secretary-desk Cabinet Top' +p33214 +sg25270 +S'Eugene Croe' +p33215 +sa(dp33216 +g25267 +g27 +sg25268 +S'Secretary' +p33217 +sg25270 +S'Ernest Busenbark' +p33218 +sa(dp33219 +g25268 +S'Hexagonal Trumpet Beaker Vase' +p33220 +sg25270 +S'Chinese Qing Dynasty' +p33221 +sg25273 +S'overall (height): 26 cm (10 1/4 in.)' +p33222 +sg25275 +S'\nporcelain with famille jaune enamels on the biscuit' +p33223 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e03.jpg' +p33224 +sg25267 +g27 +sa(dp33225 +g25267 +g27 +sg25268 +S'Secretary' +p33226 +sg25270 +S'Ernest Busenbark' +p33227 +sa(dp33228 +g25267 +g27 +sg25268 +S'Settee' +p33229 +sg25270 +S'Frank Wenger' +p33230 +sa(dp33231 +g25267 +g27 +sg25268 +S'Settee' +p33232 +sg25270 +S'Robert Brigadier' +p33233 +sa(dp33234 +g25267 +g27 +sg25268 +S'Settee' +p33235 +sg25270 +S'Arthur Johnson' +p33236 +sa(dp33237 +g25267 +g27 +sg25268 +S'Settee' +p33238 +sg25270 +S'Jack Bochner' +p33239 +sa(dp33240 +g25267 +g27 +sg25268 +S'Settee' +p33241 +sg25270 +S'Katherine Hastings' +p33242 +sa(dp33243 +g25267 +g27 +sg25268 +S'Porch Settee (one of a pair)' +p33244 +sg25270 +S'Edna C. Rex' +p33245 +sa(dp33246 +g25267 +g27 +sg25268 +S'Settee' +p33247 +sg25270 +S'Vincent P. Rosel' +p33248 +sa(dp33249 +g25267 +g27 +sg25268 +S'Settee or Chaise Lounge' +p33250 +sg25270 +S'Lillian Causey' +p33251 +sa(dp33252 +g25267 +g27 +sg25268 +S'Settee' +p33253 +sg25270 +S'Rosa Burger' +p33254 +sa(dp33255 +g25268 +S'Hexagonal Trumpet Beaker Vase' +p33256 +sg25270 +S'Chinese Qing Dynasty' +p33257 +sg25273 +S'overall (height): 26 cm (10 1/4 in.)' +p33258 +sg25275 +S'\nporcelain with famille jaune enamels on the biscuit' +p33259 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e04.jpg' +p33260 +sg25267 +g27 +sa(dp33261 +g25267 +g27 +sg25268 +S'Settee' +p33262 +sg25270 +S'George Loughridge' +p33263 +sa(dp33264 +g25267 +g27 +sg25268 +S'Settee or Hall Seat' +p33265 +sg25270 +S'Henry Meyers' +p33266 +sa(dp33267 +g25267 +g27 +sg25268 +S'Settee' +p33268 +sg25270 +S'Harry Eisman' +p33269 +sa(dp33270 +g25267 +g27 +sg25268 +S'Settee' +p33271 +sg25270 +S'B. Holst-Grubbe' +p33272 +sa(dp33273 +g25267 +g27 +sg25268 +S'Settee' +p33274 +sg25270 +S'Harry Eisman' +p33275 +sa(dp33276 +g25267 +g27 +sg25268 +S'Cradle Settee' +p33277 +sg25270 +S'Frederick Jackson' +p33278 +sa(dp33279 +g25267 +g27 +sg25268 +S'Rocking Settee Cradle' +p33280 +sg25270 +S'Beverly Chichester' +p33281 +sa(dp33282 +g25267 +g27 +sg25268 +S'Highboy' +p33283 +sg25270 +S'Charles Squires' +p33284 +sa(dp33285 +g25267 +S'A popular new furniture form of the William and Mary period was a chest raised\r\n on a stand. Notice the feeling of lightness achieved as\r\n the chest portion is raised high off the floor. It rests on an elaborately\r\n and finely shaped frame. The design, modeled after Oriental cabinets on stands, is\r\n enhanced by richly painted surface decoration. The ornament imitates that of Oriental\r\n lacquered furniture, which, during the eighteenth century, was being imported into\r\n Europe by the Dutch East India Company. European taste for the luxurious and exotic\r\n wares of the Orient was echoed in America; craftsmen tried to duplicate the appearance\r\n of Oriental lacquered decoration through the use of varnishes, gilt, and polychrome\r\n paints in a technique known as "Japanning."\n ' +p33286 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002c9.jpg' +p33287 +sg25268 +S'Highboy' +p33288 +sg25270 +S'M. Rosenshield-von-Paulin' +p33289 +sa(dp33290 +g25267 +g27 +sg25268 +S'Highboy' +p33291 +sg25270 +S'Arsen Maralian' +p33292 +sa(dp33293 +g25268 +S'Hexagonal Lantern' +p33294 +sg25270 +S'Chinese Qing Dynasty' +p33295 +sg25273 +S'overall: 28.5 x 19 cm (11 1/4 x 7 1/2 in.)' +p33296 +sg25275 +S'\nporcelain with overglaze famille verte enamels on the biscuit' +p33297 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e07.jpg' +p33298 +sg25267 +g27 +sa(dp33299 +g25267 +g27 +sg25268 +S'Highboy' +p33300 +sg25270 +S'Elisabeth Fulda' +p33301 +sa(dp33302 +g25267 +g27 +sg25268 +S'Highboy' +p33303 +sg25270 +S'Francis Borelli' +p33304 +sa(dp33305 +g25267 +g27 +sg25268 +S'Lowboy' +p33306 +sg25270 +S'Arthur Johnson' +p33307 +sa(dp33308 +g25267 +g27 +sg25268 +S'Secretary' +p33309 +sg25270 +S'Ernest A. Towers, Jr.' +p33310 +sa(dp33311 +g25267 +g27 +sg25268 +S'Lowboy' +p33312 +sg25270 +S'Isidore Sovensky' +p33313 +sa(dp33314 +g25267 +g27 +sg25268 +S'Lowboy' +p33315 +sg25270 +S'Frank Wenger' +p33316 +sa(dp33317 +g25267 +g27 +sg25268 +S'Lowboy' +p33318 +sg25270 +S'Francis Borelli' +p33319 +sa(dp33320 +g25267 +g27 +sg25268 +S'Dressing Table' +p33321 +sg25270 +S'Francis Borelli' +p33322 +sa(dp33323 +g25267 +g27 +sg25268 +S'Picture Frame' +p33324 +sg25270 +S'John Koehl' +p33325 +sa(dp33326 +g25267 +g27 +sg25268 +S'Carved Picture Frame' +p33327 +sg25270 +S'Adolph Opstad' +p33328 +sa(dp33329 +g25268 +S'Hexagonal Lantern' +p33330 +sg25270 +S'Chinese Qing Dynasty' +p33331 +sg25273 +S'overall: 28.5 x 19.4 cm (11 1/4 x 7 5/8 in.)' +p33332 +sg25275 +S'\nporcelain with overglaze famille verte enamels on the biscuit' +p33333 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e0a.jpg' +p33334 +sg25267 +g27 +sa(dp33335 +g25267 +g27 +sg25268 +S'Ottoman' +p33336 +sg25270 +S'Adele Brooks' +p33337 +sa(dp33338 +g25267 +g27 +sg25268 +S'Mirror' +p33339 +sg25270 +S'Wellington Blewett' +p33340 +sa(dp33341 +g25267 +g27 +sg25268 +S'Mirror' +p33342 +sg25270 +S'Archie Thompson' +p33343 +sa(dp33344 +g25267 +g27 +sg25268 +S'Painted mirror' +p33345 +sg25270 +S'Oscar Bluhme' +p33346 +sa(dp33347 +g25267 +g27 +sg25268 +S'Shaving Stand' +p33348 +sg25270 +S'Hugh Clarke' +p33349 +sa(dp33350 +g25267 +g27 +sg25268 +S'Mahogany Shaving Mirror' +p33351 +sg25270 +S'Cushman Parker' +p33352 +sa(dp33353 +g25267 +g27 +sg25268 +S'Shaving Stand' +p33354 +sg25270 +S'Charles Bowman' +p33355 +sa(dp33356 +g25267 +g27 +sg25268 +S'Shaving Stand' +p33357 +sg25270 +S'Ray Price' +p33358 +sa(dp33359 +g25267 +g27 +sg25268 +S'Brick-a-brack Shelf' +p33360 +sg25270 +S'Julie C. Brush' +p33361 +sa(dp33362 +g25267 +g27 +sg25268 +S'Clock Shelf' +p33363 +sg25270 +S'Isidore Danziger' +p33364 +sa(dp33365 +g25268 +S'Lantern' +p33366 +sg25270 +S'Chinese Qing Dynasty' +p33367 +sg25273 +S'overall: 21.6 x 15.2 cm (8 1/2 x 6 in.)' +p33368 +sg25275 +S'\nporcelain with overglaze famille verte enamels' +p33369 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e0e.jpg' +p33370 +sg25267 +g27 +sa(dp33371 +g25267 +g27 +sg25268 +S'Mahogany Shelf' +p33372 +sg25270 +S'Marie Lutrell' +p33373 +sa(dp33374 +g25267 +g27 +sg25268 +S'Hanging Shelf' +p33375 +sg25270 +S'Rolland Livingstone' +p33376 +sa(dp33377 +g25267 +g27 +sg25268 +S'Book Rest - Mahogany' +p33378 +sg25270 +S'Frank M. Keane' +p33379 +sa(dp33380 +g25267 +g27 +sg25268 +S'Shelf (Corner Bracket)' +p33381 +sg25270 +S'Magnus S. Fossum' +p33382 +sa(dp33383 +g25267 +g27 +sg25268 +S'Hanging Shelf' +p33384 +sg25270 +S'William H. Edwards' +p33385 +sa(dp33386 +g25267 +g27 +sg25268 +S'Show Case' +p33387 +sg25270 +S'Josephine Prado' +p33388 +sa(dp33389 +g25267 +g27 +sg25268 +S'Table' +p33390 +sg25270 +S'Sebastian Simonet' +p33391 +sa(dp33392 +g25267 +g27 +sg25268 +S'Side Board' +p33393 +sg25270 +S'George Fairbanks' +p33394 +sa(dp33395 +g25267 +g27 +sg25268 +S'Side Board' +p33396 +sg25270 +S'Nicholas Gorid' +p33397 +sa(dp33398 +g25267 +g27 +sg25268 +S'Side Board' +p33399 +sg25270 +S'Robert Pohle' +p33400 +sa(dp33401 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p33402 +sg25268 +S'Silver Stand' +p33403 +sg25270 +S'Artist Information (' +p33404 +sa(dp33405 +g25267 +g27 +sg25268 +S'Side Board-Sheraton' +p33406 +sg25270 +S'Edgar L. Pearce' +p33407 +sa(dp33408 +g25267 +g27 +sg25268 +S'Sideboard, Mahogany' +p33409 +sg25270 +S'Geoffrey Holt' +p33410 +sa(dp33411 +g25267 +g27 +sg25268 +S'Sideboard' +p33412 +sg25270 +S'Harry Eisman' +p33413 +sa(dp33414 +g25267 +g27 +sg25268 +S'Sideboard' +p33415 +sg25270 +S'B. Holst-Grubbe' +p33416 +sa(dp33417 +g25267 +g27 +sg25268 +S'Sheraton Sideboard' +p33418 +sg25270 +S'Amos C. Brinton' +p33419 +sa(dp33420 +g25267 +g27 +sg25268 +S'Sideboard' +p33421 +sg25270 +S'Michael France' +p33422 +sa(dp33423 +g25267 +g27 +sg25268 +S'Sideboard' +p33424 +sg25270 +S'Arsen Maralian' +p33425 +sa(dp33426 +g25267 +g27 +sg25268 +S'Sideboard (Hepplewhite)' +p33427 +sg25270 +S'John Dieterich' +p33428 +sa(dp33429 +g25267 +g27 +sg25268 +S'Side Board' +p33430 +sg25270 +S'John Dieterich' +p33431 +sa(dp33432 +g25267 +g27 +sg25268 +S'Side Board (Hepplewhite)' +p33433 +sg25270 +S'Nicholas Gorid' +p33434 +sa(dp33435 +g25268 +S'Lantern' +p33436 +sg25270 +S'Chinese Qing Dynasty' +p33437 +sg25273 +S'overall: 21.5 x 15.2 cm (8 7/16 x 6 in.)' +p33438 +sg25275 +S'\nporcelain with overglaze famille verte enamels' +p33439 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e12.jpg' +p33440 +sg25267 +g27 +sa(dp33441 +g25267 +g27 +sg25268 +S'Sideboard' +p33442 +sg25270 +S'J.F. Rust' +p33443 +sa(dp33444 +g25267 +g27 +sg25268 +S'Sheraton Sideboard' +p33445 +sg25270 +S'Amos C. Brinton' +p33446 +sa(dp33447 +g25267 +g27 +sg25268 +S'Settee' +p33448 +sg25270 +S'John Dieterich' +p33449 +sa(dp33450 +g25267 +g27 +sg25268 +S'Settee' +p33451 +sg25270 +S'John Dieterich' +p33452 +sa(dp33453 +g25267 +g27 +sg25268 +S'Settee' +p33454 +sg25270 +S'John Dieterich' +p33455 +sa(dp33456 +g25267 +g27 +sg25268 +S'Sofa' +p33457 +sg25270 +S'Frank Wenger' +p33458 +sa(dp33459 +g25267 +g27 +sg25268 +S'Sofa (Sheraton)' +p33460 +sg25270 +S'Simon Weiss' +p33461 +sa(dp33462 +g25267 +g27 +sg25268 +S'Sofa' +p33463 +sg25270 +S'Carl Weiss' +p33464 +sa(dp33465 +g25267 +g27 +sg25268 +S'Sofa' +p33466 +sg25270 +S'Carl Weiss' +p33467 +sa(dp33468 +g25267 +g27 +sg25268 +S'Sofa' +p33469 +sg25270 +S'John Dieterich' +p33470 +sa(dp33471 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p33472 +sg25268 +S'Silver Stand' +p33473 +sg25270 +S'Artist Information (' +p33474 +sa(dp33475 +g25267 +g27 +sg25268 +S'Sofa' +p33476 +sg25270 +S'John Dieterich' +p33477 +sa(dp33478 +g25267 +g27 +sg25268 +S'Sofa' +p33479 +sg25270 +S'John Dieterich' +p33480 +sa(dp33481 +g25267 +g27 +sg25268 +S'Sofa' +p33482 +sg25270 +S'M. Rosenshield-von-Paulin' +p33483 +sa(dp33484 +g25267 +g27 +sg25268 +S'Sofa' +p33485 +sg25270 +S'Florence Choate' +p33486 +sa(dp33487 +g25267 +g27 +sg25268 +S'Sofa' +p33488 +sg25270 +S'Isidore Sovensky' +p33489 +sa(dp33490 +g25267 +g27 +sg25268 +S'Sofa' +p33491 +sg25270 +S'Michael Trekur' +p33492 +sa(dp33493 +g25267 +g27 +sg25268 +S'Sofa' +p33494 +sg25270 +S'Ferdinand Cartier' +p33495 +sa(dp33496 +g25267 +g27 +sg25268 +S'Sofa' +p33497 +sg25270 +S'Ernest Busenbark' +p33498 +sa(dp33499 +g25267 +g27 +sg25268 +S'Sofa' +p33500 +sg25270 +S'Frank Wenger' +p33501 +sa(dp33502 +g25267 +g27 +sg25268 +S'Sofa' +p33503 +sg25270 +S'Nicholas Gorid' +p33504 +sa(dp33505 +g25268 +S'Shou Lao, the God of Longevity' +p33506 +sg25270 +S'Chinese Qing Dynasty' +p33507 +sg25273 +S'overall (figure): 27.5 x 14 x 9.2 cm (10 13/16 x 5 1/2 x 3 5/8 in.)\r\noverall (throne): 12.1 x 16.5 x 10.5 cm (4 3/4 x 6 1/2 x 4 1/8 in.)' +p33508 +sg25275 +S'\nporcelain with famille verte enamels on the biscuit' +p33509 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e13.jpg' +p33510 +sg25267 +S'The figure of Shou Lao may originally have been designed for use on a \n temple or family altar. The seated deity is shown in formal court robes and \n is recognizable by his tall, domed head and long beard.\n A standing figurine of Shou Lao decorated in a similar manner is in the \n Altman collection, Metropolitan Museum of Art, New York.\n (Text by Stephen Little, published in the NGA Systematic Catalogue: \n Notes

\n
\n \n \n ' +p33511 +sa(dp33512 +g25267 +g27 +sg25268 +S'Settee' +p33513 +sg25270 +S'David S. De Vault' +p33514 +sa(dp33515 +g25267 +g27 +sg25268 +S'Sofa' +p33516 +sg25270 +S'Artist Information (' +p33517 +sa(dp33518 +g25267 +S'After the 1820s, the grace and elegance of Regency furniture gave way to the\r\n heavier and bulkier forms of the American Empire style, named after its French counterpart.\r\n American Empire furniture continued to reflect classical prototypes, but often the\r\n features were exaggerated. In this period, one finds an abundance of thick pedestals\r\n and columns, rolled backs and arms, and animal claw or scrolled feet. Vigorous carving\r\n and richly figured woods were emphasized, but Empire furniture was also painted;\r\n often it was ornamented with decorative metal mounts and with gilt stencil patterns\r\n that reflected the metal designs. This late Empire couch dates from\r\n the mid-nineteenth century. The form is based upon classical Greek and Roman banquet\r\n couches with asymmetrical arms. The exuberance of the scrolled arms is echoed in\r\n the sweeping curves of the back. The piece is elaborately stenciled; a profusion\r\n of decorative motifs includes leafy anthemion and acanthus patterns, lyres, cornucopias,\r\n and rosettes, representing a full range of antique ornament. The decorative motifs\r\n flow into each other and reinforce the fluid curves of the form. The boldly flared\r\n animal paw feet, popular in this period, provide strong support and a vigorous counterbalance\r\n for the scrolling forms of the body. Empire furniture, extravagant in design and\r\n profusely decorated, was a popular feature of fashionable homes at a time when\r\n America\'s abundance held promise for all, and "peace and plenty" was a common slogan.\n ' +p33519 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002d5.jpg' +p33520 +sg25268 +S'Sofa' +p33521 +sg25270 +S'Nicholas Gorid' +p33522 +sa(dp33523 +g25267 +g27 +sg25268 +S'Sofa' +p33524 +sg25270 +S'Nicholas Gorid' +p33525 +sa(dp33526 +g25267 +g27 +sg25268 +S'Settee' +p33527 +sg25270 +S'Alfred Walbeck' +p33528 +sa(dp33529 +g25267 +g27 +sg25268 +S'Sofa' +p33530 +sg25270 +S'Vincent P. Rosel' +p33531 +sa(dp33532 +g25267 +g27 +sg25268 +S'High Back Lounge' +p33533 +sg25270 +S'Magnus S. Fossum' +p33534 +sa(dp33535 +g25267 +g27 +sg25268 +S'Sofa' +p33536 +sg25270 +S'Artist Information (' +p33537 +sa(dp33538 +g25267 +g27 +sg25268 +S"Child's Settee" +p33539 +sg25270 +S'David S. De Vault' +p33540 +sa(dp33541 +g25267 +g27 +sg25268 +S'Sofa' +p33542 +sg25270 +S'Wellington Blewett' +p33543 +sa(dp33544 +g25268 +S'Young Woman' +p33545 +sg25270 +S'Chinese Qing Dynasty' +p33546 +sg25273 +S'overall (height): 23.8 cm (9 3/8 in.)' +p33547 +sg25275 +S'\nporcelain with famille verte enamels on the biscuit' +p33548 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e14.jpg' +p33549 +sg25267 +g27 +sa(dp33550 +g25267 +g27 +sg25268 +S'Sofa' +p33551 +sg25270 +S'Nicholas Gorid' +p33552 +sa(dp33553 +g25267 +g27 +sg25268 +S'Sofa' +p33554 +sg25270 +S'Anna Aloisi' +p33555 +sa(dp33556 +g25267 +g27 +sg25268 +S'Sofa' +p33557 +sg25270 +S'Anna Aloisi' +p33558 +sa(dp33559 +g25267 +g27 +sg25268 +S'Sofa (Empire)' +p33560 +sg25270 +S'American 20th Century' +p33561 +sa(dp33562 +g25267 +g27 +sg25268 +S'Sofa' +p33563 +sg25270 +S'Nicholas Gorid' +p33564 +sa(dp33565 +g25267 +g27 +sg25268 +S'Sofa' +p33566 +sg25270 +S'Nicholas Gorid' +p33567 +sa(dp33568 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005ecd.jpg' +p33569 +sg25268 +S'Sofa' +p33570 +sg25270 +S'Henry Blonkenfeld' +p33571 +sa(dp33572 +g25267 +g27 +sg25268 +S'Sofa' +p33573 +sg25270 +S'Magnus S. Fossum' +p33574 +sa(dp33575 +g25267 +g27 +sg25268 +S'Sofa' +p33576 +sg25270 +S'Wellington Blewett' +p33577 +sa(dp33578 +g25267 +g27 +sg25268 +S'Settee (Eagle)' +p33579 +sg25270 +S'Henry Moran' +p33580 +sa(dp33581 +g25268 +S'Young Woman' +p33582 +sg25270 +S'Chinese Qing Dynasty' +p33583 +sg25273 +S'overall (height): 24.1 cm (9 1/2 in.)' +p33584 +sg25275 +S'\nporcelain with famille verte enamels on the biscuit' +p33585 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e15.jpg' +p33586 +sg25267 +g27 +sa(dp33587 +g25267 +g27 +sg25268 +S'Sofa' +p33588 +sg25270 +S'Bernard Gussow' +p33589 +sa(dp33590 +g25267 +g27 +sg25268 +S'Mahogany Sofa' +p33591 +sg25270 +S'Edward A. Darby' +p33592 +sa(dp33593 +g25267 +g27 +sg25268 +S'Queen Anne Settee' +p33594 +sg25270 +S'Florence Truelson' +p33595 +sa(dp33596 +g25267 +g27 +sg25268 +S'Settee Couch' +p33597 +sg25270 +S'Beverly Chichester' +p33598 +sa(dp33599 +g25267 +g27 +sg25268 +S'Rosewood Sofa' +p33600 +sg25270 +S'Eugene Croe' +p33601 +sa(dp33602 +g25267 +g27 +sg25268 +S'Settee' +p33603 +sg25270 +S'Florence Huston' +p33604 +sa(dp33605 +g25267 +g27 +sg25268 +S'Settee, Walnut' +p33606 +sg25270 +S'Geoffrey Holt' +p33607 +sa(dp33608 +g25267 +g27 +sg25268 +S'Sofa' +p33609 +sg25270 +S'Paul Ward' +p33610 +sa(dp33611 +g25267 +g27 +sg25268 +S'Detail of Sofa' +p33612 +sg25270 +S'Paul Ward' +p33613 +sa(dp33614 +g25267 +g27 +sg25268 +S'Sofa' +p33615 +sg25270 +S'Wellington Blewett' +p33616 +sa(dp33617 +g25268 +S'Guanyin, the Bodhisattva of Compassion' +p33618 +sg25270 +S'Chinese Qing Dynasty' +p33619 +sg25273 +S'overall (height): 25.4 cm (10 in.)' +p33620 +sg25275 +S'\nporcelain with famille verte enamels on the biscuit' +p33621 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e16.jpg' +p33622 +sg25267 +g27 +sa(dp33623 +g25267 +g27 +sg25268 +S'Carvings of a Sofa' +p33624 +sg25270 +S'Robert Stewart' +p33625 +sa(dp33626 +g25267 +g27 +sg25268 +S'Settee - Sofa' +p33627 +sg25270 +S'Edna C. Rex' +p33628 +sa(dp33629 +g25267 +g27 +sg25268 +S'Settee-Sofa' +p33630 +sg25270 +S'Edna C. Rex' +p33631 +sa(dp33632 +g25267 +g27 +sg25268 +S'Sofa' +p33633 +sg25270 +S'Edith Magnette' +p33634 +sa(dp33635 +g25267 +g27 +sg25268 +S'Sofa' +p33636 +sg25270 +S'Edith Magnette' +p33637 +sa(dp33638 +g25267 +g27 +sg25268 +S'Sofa' +p33639 +sg25270 +S'William Mills' +p33640 +sa(dp33641 +g25267 +g27 +sg25268 +S'Sofa' +p33642 +sg25270 +S'Henry Granet' +p33643 +sa(dp33644 +g25267 +g27 +sg25268 +S'Office High Stool' +p33645 +sg25270 +S'Ursula Lauderdale' +p33646 +sa(dp33647 +g25267 +g27 +sg25268 +S'Pennsylvania Dutch Bed Stool' +p33648 +sg25270 +S'John Swientochowski' +p33649 +sa(dp33650 +g25267 +g27 +sg25268 +S'Old Wood Stool' +p33651 +sg25270 +S'Geoffrey Holt' +p33652 +sa(dp33653 +g25268 +S'Female Attendant' +p33654 +sg25270 +S'Chinese Qing Dynasty' +p33655 +sg25273 +S'overall: 22.5 x 8.6 x 5 cm (8 7/8 x 3 3/8 x 1 15/16 in.)' +p33656 +sg25275 +S'\nporcelain with famille verte enamels on the biscuit' +p33657 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e17.jpg' +p33658 +sg25267 +g27 +sa(dp33659 +g25267 +g27 +sg25268 +S'Stool' +p33660 +sg25270 +S'M. Rosenshield-von-Paulin' +p33661 +sa(dp33662 +g25267 +g27 +sg25268 +S'Stool' +p33663 +sg25270 +S'M. Rosenshield-von-Paulin' +p33664 +sa(dp33665 +g25267 +g27 +sg25268 +S'Round Stool' +p33666 +sg25270 +S'Verna Tallman' +p33667 +sa(dp33668 +g25267 +g27 +sg25268 +S'Sheraton Wall Table' +p33669 +sg25270 +S'Ernest A. Towers, Jr.' +p33670 +sa(dp33671 +g25267 +g27 +sg25268 +S'Card Table' +p33672 +sg25270 +S'Henry Meyers' +p33673 +sa(dp33674 +g25267 +g27 +sg25268 +S'Card Table' +p33675 +sg25270 +S'Henry Meyers' +p33676 +sa(dp33677 +g25267 +g27 +sg25268 +S'Card Table' +p33678 +sg25270 +S'Harry Eisman' +p33679 +sa(dp33680 +g25267 +g27 +sg25268 +S'Card Table' +p33681 +sg25270 +S'Harry Eisman' +p33682 +sa(dp33683 +g25267 +g27 +sg25268 +S'Card Table' +p33684 +sg25270 +S'Ferdinand Cartier' +p33685 +sa(dp33686 +g25267 +g27 +sg25268 +S'Card Table' +p33687 +sg25270 +S'Henry Meyers' +p33688 +sa(dp33689 +g25268 +S'Li Tieguai' +p33690 +sg25270 +S'Chinese Qing Dynasty' +p33691 +sg25273 +S'overall (height): 30.2 cm (11 7/8 in.)' +p33692 +sg25275 +S'\nporcelain with famille noire enamels on the biscuit' +p33693 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e18.jpg' +p33694 +sg25267 +g27 +sa(dp33695 +g25267 +g27 +sg25268 +S'Card Table' +p33696 +sg25270 +S'Henry Meyers' +p33697 +sa(dp33698 +g25267 +g27 +sg25268 +S'Card Table' +p33699 +sg25270 +S'Henry Meyers' +p33700 +sa(dp33701 +g25267 +g27 +sg25268 +S'Card Table' +p33702 +sg25270 +S'Henry Meyers' +p33703 +sa(dp33704 +g25267 +g27 +sg25268 +S'Card Table' +p33705 +sg25270 +S'Florence Neal' +p33706 +sa(dp33707 +g25267 +g27 +sg25268 +S'Card Table' +p33708 +sg25270 +S'Mario De Ferrante' +p33709 +sa(dp33710 +g25267 +g27 +sg25268 +S'Card Table' +p33711 +sg25270 +S'Arsen Maralian' +p33712 +sa(dp33713 +g25267 +g27 +sg25268 +S'Card Table' +p33714 +sg25270 +S'Louis Annino' +p33715 +sa(dp33716 +g25267 +g27 +sg25268 +S'Three Leaf Gaming Table' +p33717 +sg25270 +S'Edward L. Loper' +p33718 +sa(dp33719 +g25267 +g27 +sg25268 +S'Mahogany Card Table' +p33720 +sg25270 +S'Dorothy Posten' +p33721 +sa(dp33722 +g25267 +g27 +sg25268 +S'Card Table' +p33723 +sg25270 +S'Arsen Maralian' +p33724 +sa(dp33725 +g25268 +S'Dancing Woman' +p33726 +sg25270 +S'Chinese Qing Dynasty' +p33727 +sg25273 +S'overall: 29 x 10.2 x 6.1 cm (11 7/16 x 4 x 2 3/8 in.)' +p33728 +sg25275 +S'\nporcelain with famille verte enamels on the biscuit' +p33729 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e19.jpg' +p33730 +sg25267 +g27 +sa(dp33731 +g25267 +g27 +sg25268 +S'Inlaid Wood Table' +p33732 +sg25270 +S'Sebastian Simonet' +p33733 +sa(dp33734 +g25267 +g27 +sg25268 +S'Tea Table' +p33735 +sg25270 +S'Nicholas Gorid' +p33736 +sa(dp33737 +g25267 +g27 +sg25268 +S'Top of Table' +p33738 +sg25270 +S'Nicholas Gorid' +p33739 +sa(dp33740 +g25267 +g27 +sg25268 +S'Checker Table' +p33741 +sg25270 +S'Nicholas Gorid' +p33742 +sa(dp33743 +g25267 +g27 +sg25268 +S'Checkerboard Table' +p33744 +sg25270 +S'Nicholas Gorid' +p33745 +sa(dp33746 +g25267 +g27 +sg25268 +S'Marquetry Table, Showing Style' +p33747 +sg25270 +S'Geoffrey Holt' +p33748 +sa(dp33749 +g25267 +g27 +sg25268 +S'Marquetry Table: Showing Inlay Top' +p33750 +sg25270 +S'Geoffrey Holt' +p33751 +sa(dp33752 +g25267 +g27 +sg25268 +S'Checker-board Table-tilt Top' +p33753 +sg25270 +S'Magnus S. Fossum' +p33754 +sa(dp33755 +g25267 +g27 +sg25268 +S'Card Table' +p33756 +sg25270 +S'Ferdinand Cartier' +p33757 +sa(dp33758 +g25267 +g27 +sg25268 +S'Console Table' +p33759 +sg25270 +S'Nicholas Gorid' +p33760 +sa(dp33761 +g25268 +S'Female Attendant' +p33762 +sg25270 +S'Chinese Qing Dynasty' +p33763 +sg25273 +S'overall (height): 13.7 cm (5 3/8 in.)' +p33764 +sg25275 +S'\nporcelain with famille verte enamels on the biscuit' +p33765 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e1a.jpg' +p33766 +sg25267 +g27 +sa(dp33767 +g25267 +g27 +sg25268 +S'Table (Console or Card Table)' +p33768 +sg25270 +S'Rolland Livingstone' +p33769 +sa(dp33770 +g25267 +g27 +sg25268 +S'Dining Table' +p33771 +sg25270 +S'Harry Eisman' +p33772 +sa(dp33773 +g25267 +g27 +sg25268 +S'Dining Table' +p33774 +sg25270 +S'M. Rosenshield-von-Paulin' +p33775 +sa(dp33776 +g25267 +g27 +sg25268 +S'Table, Round Top' +p33777 +sg25270 +S'Henry Moore' +p33778 +sa(dp33779 +g25267 +g27 +sg25268 +S'Table, Patrick Henry' +p33780 +sg25270 +S'Edna C. Rex' +p33781 +sa(dp33782 +g25267 +g27 +sg25268 +S'Drop-leaf Table' +p33783 +sg25270 +S'Isadore Goldberg' +p33784 +sa(dp33785 +g25267 +g27 +sg25268 +S'Drop-leaf Table' +p33786 +sg25270 +S'Charles Charon' +p33787 +sa(dp33788 +g25267 +g27 +sg25268 +S'Drop Leaf Table' +p33789 +sg25270 +S'Dorothea A. Farrington' +p33790 +sa(dp33791 +g25267 +g27 +sg25268 +S'Occasional Table' +p33792 +sg25270 +S'Albert Ryder' +p33793 +sa(dp33794 +g25267 +g27 +sg25268 +S'Cherry Table' +p33795 +sg25270 +S'Carl Buergerniss' +p33796 +sa(dp33797 +g25268 +S'Female Attendant' +p33798 +sg25270 +S'Chinese Qing Dynasty' +p33799 +sg25273 +S'overall (height): 14 cm (5 1/2 in.)' +p33800 +sg25275 +S'\nporcelain with famille verte enamels on the biscuit' +p33801 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e1b.jpg' +p33802 +sg25267 +g27 +sa(dp33803 +g25267 +g27 +sg25268 +S'Table (Dining?)' +p33804 +sg25270 +S'George V. Vezolles' +p33805 +sa(dp33806 +g25267 +g27 +sg25268 +S'Table (Dining?)' +p33807 +sg25270 +S'Edward D. Williams' +p33808 +sa(dp33809 +g25267 +g27 +sg25268 +S'Dining Table' +p33810 +sg25270 +S'Lon Cronk' +p33811 +sa(dp33812 +g25267 +g27 +sg25268 +S'Drop-leaf Table' +p33813 +sg25270 +S'Bernard Gussow' +p33814 +sa(dp33815 +g25267 +g27 +sg25268 +S'Drop Leaf Table' +p33816 +sg25270 +S'Frank Wenger' +p33817 +sa(dp33818 +g25267 +g27 +sg25268 +S'Drop Leaf Table' +p33819 +sg25270 +S'Ruth Bialostosky' +p33820 +sa(dp33821 +g25267 +g27 +sg25268 +S'Pembroke Table' +p33822 +sg25270 +S'Artist Information (' +p33823 +sa(dp33824 +g25267 +g27 +sg25268 +S'Table' +p33825 +sg25270 +S'Lawrence Porth' +p33826 +sa(dp33827 +g25267 +g27 +sg25268 +S'Table' +p33828 +sg25270 +S'Alfred Walbeck' +p33829 +sa(dp33830 +g25267 +g27 +sg25268 +S'"General Cass Table"' +p33831 +sg25270 +S'Eugene Croe' +p33832 +sa(dp33833 +g25268 +S'Female Attendant' +p33834 +sg25270 +S'Chinese Qing Dynasty' +p33835 +sg25273 +S'overall (height): 14 cm (5 1/2 in.)' +p33836 +sg25275 +S'\nporcelain with famille verte enamels on the biscuit' +p33837 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e1c.jpg' +p33838 +sg25267 +g27 +sa(dp33839 +g25267 +g27 +sg25268 +S'Drop-Leaf Table' +p33840 +sg25270 +S'Henry Granet' +p33841 +sa(dp33842 +g25267 +g27 +sg25268 +S'Newspaper Wall Rack' +p33843 +sg25270 +S'Nicholas Amantea' +p33844 +sa(dp33845 +g25267 +g27 +sg25268 +S'Gun Rack' +p33846 +sg25270 +S'Cecil Smith' +p33847 +sa(dp33848 +g25267 +g27 +sg25268 +S'Ox Cart Chair' +p33849 +sg25270 +S'Wilbur M Rice' +p33850 +sa(dp33851 +g25267 +g27 +sg25268 +S'Prairie Schooner Seat' +p33852 +sg25270 +S'Wilbur M Rice' +p33853 +sa(dp33854 +g25267 +g27 +sg25268 +S'Wagon Seat' +p33855 +sg25270 +S'Manford Shattuck' +p33856 +sa(dp33857 +g25267 +g27 +sg25268 +S'Secretary' +p33858 +sg25270 +S'Leonard Battee' +p33859 +sa(dp33860 +g25267 +g27 +sg25268 +S'Chippendale Secretary' +p33861 +sg25270 +S'Amos C. Brinton' +p33862 +sa(dp33863 +g25267 +g27 +sg25268 +S'Black Painted Settee' +p33864 +sg25270 +S'Ella Josephine Sterling' +p33865 +sa(dp33866 +g25267 +g27 +sg25268 +S'Settee' +p33867 +sg25270 +S'Amos C. Brinton' +p33868 +sa(dp33869 +g25268 +S'Duck on Lotus Leaf' +p33870 +sg25270 +S'Chinese Qing Dynasty' +p33871 +sg25273 +S'overall: 34 x 22.8 cm (13 3/8 x 9 in.)' +p33872 +sg25275 +S'\nporcelain with famille verte enamels on the biscuit' +p33873 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e1d.jpg' +p33874 +sg25267 +g27 +sa(dp33875 +g25267 +g27 +sg25268 +S'Settee' +p33876 +sg25270 +S'Harry Eisman' +p33877 +sa(dp33878 +g25267 +g27 +sg25268 +S'Settee' +p33879 +sg25270 +S'Ralph Morton' +p33880 +sa(dp33881 +g25267 +g27 +sg25268 +S'Shaving Stand' +p33882 +sg25270 +S'Joseph Cannella' +p33883 +sa(dp33884 +g25267 +g27 +sg25268 +S'Wall Shelf' +p33885 +sg25270 +S'Carl Keksi' +p33886 +sa(dp33887 +g25267 +g27 +sg25268 +S'Sideboard (Hepplewhite)' +p33888 +sg25270 +S'Charles Bowman' +p33889 +sa(dp33890 +g25267 +g27 +sg25268 +S'Sideboard' +p33891 +sg25270 +S'Isidore Sovensky' +p33892 +sa(dp33893 +g25267 +g27 +sg25268 +S'Settee' +p33894 +sg25270 +S'Rolland Livingstone' +p33895 +sa(dp33896 +g25267 +g27 +sg25268 +S'Sofa' +p33897 +sg25270 +S'Rolland Livingstone' +p33898 +sa(dp33899 +g25267 +g27 +sg25268 +S'Velvet Lounge' +p33900 +sg25270 +S'Florence Truelson' +p33901 +sa(dp33902 +g25267 +g27 +sg25268 +S'Sofa' +p33903 +sg25270 +S'Harry Eisman' +p33904 +sa(dp33905 +g25268 +S'Lion on High Pedestal' +p33906 +sg25270 +S'Chinese Qing Dynasty' +p33907 +sg25273 +S'overall (lion): 25.1 x 18.4 x 10.6 cm (9 7/8 x 7 1/4 x 4 3/16 in.)\r\noverall (pedestal): 13.7 x 23.7 x 15.7 cm (5 3/8 x 9 5/16 x 6 3/16 in.)' +p33908 +sg25275 +S'\nporcelain with famille verte enamels on the biscuit' +p33909 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e1e.jpg' +p33910 +sg25267 +g27 +sa(dp33911 +g25267 +g27 +sg25268 +S'Love Seat' +p33912 +sg25270 +S'Ralph Morton' +p33913 +sa(dp33914 +g25267 +g27 +sg25268 +S'Stool' +p33915 +sg25270 +S'Harold Ballerd' +p33916 +sa(dp33917 +g25267 +g27 +sg25268 +S'Card Table' +p33918 +sg25270 +S'M. Rosenshield-von-Paulin' +p33919 +sa(dp33920 +g25267 +g27 +sg25268 +S'Gaming Table' +p33921 +sg25270 +S'M. Rosenshield-von-Paulin' +p33922 +sa(dp33923 +g25267 +g27 +sg25268 +S'Gaming Table' +p33924 +sg25270 +S'M. Rosenshield-von-Paulin' +p33925 +sa(dp33926 +g25267 +g27 +sg25268 +S'Gaming Table' +p33927 +sg25270 +S'American 20th Century' +p33928 +sa(dp33929 +g25267 +g27 +sg25268 +S'Table - Folding Top' +p33930 +sg25270 +S'Harold Oldfield' +p33931 +sa(dp33932 +g25267 +g27 +sg25268 +S'Dining Room Table' +p33933 +sg25270 +S'Howard Weld' +p33934 +sa(dp33935 +g25267 +g27 +sg25268 +S'Details of Dining Room Table' +p33936 +sg25270 +S'Howard Weld' +p33937 +sa(dp33938 +g25267 +g27 +sg25268 +S'Pembroke Table' +p33939 +sg25270 +S'Ulrich Fischer' +p33940 +sa(dp33941 +g25268 +S'Lion on High Pedestal' +p33942 +sg25270 +S'Chinese Qing Dynasty' +p33943 +sg25273 +S'overall (lion): 24.7 x 17.8 x 10 cm (9 3/4 x 7 x 3 15/16 in.)\r\noverall (pedestal): 13.3 x 23.5 x 15.9 cm (5 1/4 x 9 1/4 x 6 1/4 in.)' +p33944 +sg25275 +S'\nporcelain with famille verte enamels on the biscuit' +p33945 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e1f.jpg' +p33946 +sg25267 +g27 +sa(dp33947 +g25267 +g27 +sg25268 +S'Sheraton Table' +p33948 +sg25270 +S'Edith Magnette' +p33949 +sa(dp33950 +g25267 +g27 +sg25268 +S'Pembroke Table (Drop Leaf)' +p33951 +sg25270 +S'Bernard Gussow' +p33952 +sa(dp33953 +g25267 +g27 +sg25268 +S'Pembroke Table' +p33954 +sg25270 +S'J.F. Rust' +p33955 +sa(dp33956 +g25267 +g27 +sg25268 +S'Oval Table Drop Leaf' +p33957 +sg25270 +S'Edith Magnette' +p33958 +sa(dp33959 +g25267 +g27 +sg25268 +S'Table-drop Leaf' +p33960 +sg25270 +S'American 20th Century' +p33961 +sa(dp33962 +g25267 +g27 +sg25268 +S'Table (Drop-leaf)' +p33963 +sg25270 +S'Nicholas Acampora' +p33964 +sa(dp33965 +g25267 +g27 +sg25268 +S'Table' +p33966 +sg25270 +S'Nicholas Acampora' +p33967 +sa(dp33968 +g25267 +g27 +sg25268 +S'Table' +p33969 +sg25270 +S'Harry Eisman' +p33970 +sa(dp33971 +g25267 +g27 +sg25268 +S'Butterfly Table' +p33972 +sg25270 +S'Lawrence Foster' +p33973 +sa(dp33974 +g25267 +g27 +sg25268 +S'Table' +p33975 +sg25270 +S'Ernest A. Towers, Jr.' +p33976 +sa(dp33977 +g25268 +S'Baluster Vase' +p33978 +sg25270 +S'Chinese Qing Dynasty' +p33979 +sg25273 +S'overall (height): 43.2 cm (17 in.)' +p33980 +sg25275 +S'\nporcelain with famille verte enamels on the biscuit' +p33981 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00020/a00020fe.jpg' +p33982 +sg25267 +g27 +sa(dp33983 +g25267 +g27 +sg25268 +S'Card Table' +p33984 +sg25270 +S'Virginia Kennady' +p33985 +sa(dp33986 +g25267 +g27 +sg25268 +S'Drop-leaf Table' +p33987 +sg25270 +S'Edward A. Darby' +p33988 +sa(dp33989 +g25267 +g27 +sg25268 +S'Pembroke Table' +p33990 +sg25270 +S'John Garay' +p33991 +sa(dp33992 +g25267 +g27 +sg25268 +S'Table, Drop-leaf' +p33993 +sg25270 +S'Edith Towner' +p33994 +sa(dp33995 +g25267 +g27 +sg25268 +S'Drop-leaf Table' +p33996 +sg25270 +S'David S. De Vault' +p33997 +sa(dp33998 +g25267 +g27 +sg25268 +S'Pembroke Table' +p33999 +sg25270 +S'Florence Choate' +p34000 +sa(dp34001 +g25267 +g27 +sg25268 +S'Drop Leaf, Pedestal Table' +p34002 +sg25270 +S'Arthur Johnson' +p34003 +sa(dp34004 +g25267 +g27 +sg25268 +S'Card Table' +p34005 +sg25270 +S'Francis Borelli' +p34006 +sa(dp34007 +g25267 +g27 +sg25268 +S'Card Table' +p34008 +sg25270 +S'Isidore Sovensky' +p34009 +sa(dp34010 +g25267 +g27 +sg25268 +S'Table' +p34011 +sg25270 +S'Jack Bochner' +p34012 +sa(dp34013 +g25268 +S'Baluster Vase' +p34014 +sg25270 +S'Chinese Qing Dynasty' +p34015 +sg25273 +S'overall: 43.2 x 20.3 cm (17 x 8 in.)' +p34016 +sg25275 +S'\nporcelain with famille verte enamels on the biscuit' +p34017 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e20.jpg' +p34018 +sg25267 +S'The decoration on this vase consists of two large four-clawed dragons \n chasing flaming pearls among stylized flames on the main body and two \n phoenixes on the neck. The enamel palette includes green, yellow, \n aubergine, and black. The two dragons, one yellow and the other aubergine, \n are of different types. The aubergine dragon resembles the characteristic \n late-Ming dragon, with an elongated head. The other has a more typical \n Kangxi-period head, which is much larger. Around the eyes of the latter, \n brown lines of the underdrawing are visibly painted directly on the \n porcelain body. \n (Text by Stephen Little, published in the NGA Systematic Catalogue: \n ' +p34019 +sa(dp34020 +g25267 +g27 +sg25268 +S'Gate-legged Table' +p34021 +sg25270 +S'Frank Wenger' +p34022 +sa(dp34023 +g25267 +g27 +sg25268 +S'Gate-legged Table' +p34024 +sg25270 +S'B. Holst-Grubbe' +p34025 +sa(dp34026 +g25267 +g27 +sg25268 +S'Gate-leg Table' +p34027 +sg25270 +S'M. Rosenshield-von-Paulin' +p34028 +sa(dp34029 +g25267 +g27 +sg25268 +S'Gate-leg Table' +p34030 +sg25270 +S'M. Rosenshield-von-Paulin' +p34031 +sa(dp34032 +g25267 +g27 +sg25268 +S'Table (Drop-leaf)' +p34033 +sg25270 +S'Bernard Gussow' +p34034 +sa(dp34035 +g25267 +g27 +sg25268 +S'Gate-leg Table' +p34036 +sg25270 +S'Artist Information (' +p34037 +sa(dp34038 +g25267 +g27 +sg25268 +S'Gate-leg Table' +p34039 +sg25270 +S'Fletcher Hanks' +p34040 +sa(dp34041 +g25267 +g27 +sg25268 +S'Three Legged Gate-leg Table' +p34042 +sg25270 +S'Rex Dolmith' +p34043 +sa(dp34044 +g25267 +g27 +sg25268 +S'Eight Leg Table with Drawer' +p34045 +sg25270 +S'Ernest A. Towers, Jr.' +p34046 +sa(dp34047 +g25267 +g27 +sg25268 +S'Gate-legged Table' +p34048 +sg25270 +S'Frank Wenger' +p34049 +sa(dp34050 +g25268 +S'Baluster Vase' +p34051 +sg25270 +S'Chinese Qing Dynasty' +p34052 +sg25273 +S'overall: 75.2 x 28.3 cm (29 5/8 x 11 1/8 in.)' +p34053 +sg25275 +S'\nporcelain with famille verte enamels on the biscuit' +p34054 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e21.jpg' +p34055 +sg25267 +g27 +sa(dp34056 +g25267 +g27 +sg25268 +S'Gate-legged Table' +p34057 +sg25270 +S'B. Holst-Grubbe' +p34058 +sa(dp34059 +g25267 +g27 +sg25268 +S'Gate-legged Table, Ball & Claw Feet' +p34060 +sg25270 +S'Joseph Sudek' +p34061 +sa(dp34062 +g25267 +g27 +sg25268 +S'Gate-legged Table' +p34063 +sg25270 +S'George Nelson' +p34064 +sa(dp34065 +g25267 +g27 +sg25268 +S'Settle-table' +p34066 +sg25270 +S'Arthur Johnson' +p34067 +sa(dp34068 +g25267 +g27 +sg25268 +S'Chest-Settee-Table-Comb' +p34069 +sg25270 +S'Franklin C. Moyan' +p34070 +sa(dp34071 +g25267 +g27 +sg25268 +S'Combination Table and Chair (as chair)' +p34072 +sg25270 +S'Joseph Sudek' +p34073 +sa(dp34074 +g25267 +g27 +sg25268 +S'Settle-table' +p34075 +sg25270 +S'B. Holst-Grubbe' +p34076 +sa(dp34077 +g25267 +g27 +sg25268 +S'Chair-table' +p34078 +sg25270 +S'M. Rosenshield-von-Paulin' +p34079 +sa(dp34080 +g25267 +g27 +sg25268 +S'Chair-table' +p34081 +sg25270 +S'M. Rosenshield-von-Paulin' +p34082 +sa(dp34083 +g25267 +g27 +sg25268 +S'Table (Bench or Chair Combination)' +p34084 +sg25270 +S'Bertha Stefano' +p34085 +sa(dp34086 +g25268 +S'Rectangular Vase Illustrating Poems by Tao Qian and Su Shi' +p34087 +sg25270 +S'Chinese Qing Dynasty' +p34088 +sg25273 +S'overall: 35.6 x 14 x 14 cm (14 x 5 1/2 x 5 1/2 in.)' +p34089 +sg25275 +S'\nporcelain with famille jaune and famille noire enamels on the biscuit' +p34090 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00020/a00020ff.jpg' +p34091 +sg25267 +g27 +sa(dp34092 +g25267 +g27 +sg25268 +S'Hutch Table' +p34093 +sg25270 +S'Nicholas Gorid' +p34094 +sa(dp34095 +g25267 +g27 +sg25268 +S'Tip Table (Hutch)' +p34096 +sg25270 +S'Nicholas Gorid' +p34097 +sa(dp34098 +g25267 +g27 +sg25268 +S'Tip Table' +p34099 +sg25270 +S'American 20th Century' +p34100 +sa(dp34101 +g25267 +g27 +sg25268 +S'Table Hutch Bench or Chair Combination' +p34102 +sg25270 +S'Rosa Burger' +p34103 +sa(dp34104 +g25267 +g27 +sg25268 +S'Kitchen Bench Table' +p34105 +sg25270 +S'Vincent P. Rosel' +p34106 +sa(dp34107 +g25267 +g27 +sg25268 +S'Table - Double Lyre Base' +p34108 +sg25270 +S'J. Howard Iams' +p34109 +sa(dp34110 +g25267 +g27 +sg25268 +S'Table (Lyre Pedestal)' +p34111 +sg25270 +S'Joseph Rothenberg' +p34112 +sa(dp34113 +g25267 +g27 +sg25268 +S'Table (Lyre Pedestal)' +p34114 +sg25270 +S'American 20th Century' +p34115 +sa(dp34116 +g25267 +g27 +sg25268 +S'Wall Table' +p34117 +sg25270 +S'James M. Lawson' +p34118 +sa(dp34119 +g25267 +g27 +sg25268 +S'Card Table' +p34120 +sg25270 +S'Florence Neal' +p34121 +sa(dp34122 +g25268 +S'Bottle Vase' +p34123 +sg25270 +S'Chinese Qing Dynasty' +p34124 +sg25273 +S'overall: 38.7 x 21 cm (15 1/4 x 8 1/4 in.)' +p34125 +sg25275 +S'\nporcelain with famille noire enamels and carved decoration' +p34126 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e22.jpg' +p34127 +sg25267 +g27 +sa(dp34128 +g25267 +g27 +sg25268 +S'Pier Table' +p34129 +sg25270 +S'Nicholas Gorid' +p34130 +sa(dp34131 +g25267 +g27 +sg25268 +S'Ebony, Marble-top Table' +p34132 +sg25270 +S'Edward A. Darby' +p34133 +sa(dp34134 +g25267 +g27 +sg25268 +S'Center Table, with Marble Top' +p34135 +sg25270 +S'Dana Bartlett' +p34136 +sa(dp34137 +g25267 +g27 +sg25268 +S'Console Table' +p34138 +sg25270 +S'Robert Pohle' +p34139 +sa(dp34140 +g25267 +g27 +sg25268 +S'Pier Table' +p34141 +sg25270 +S'John Dieterich' +p34142 +sa(dp34143 +g25267 +g27 +sg25268 +S'Pier Table' +p34144 +sg25270 +S'John Garay' +p34145 +sa(dp34146 +g25267 +g27 +sg25268 +S'Pier Table' +p34147 +sg25270 +S'John Garay' +p34148 +sa(dp34149 +g25267 +g27 +sg25268 +S'Marble Top Table' +p34150 +sg25270 +S'George Nelson' +p34151 +sa(dp34152 +g25267 +g27 +sg25268 +S'Marble Top Table' +p34153 +sg25270 +S'George Nelson' +p34154 +sa(dp34155 +g25267 +g27 +sg25268 +S'Console Table' +p34156 +sg25270 +S'Joseph Rothenberg' +p34157 +sa(dp34158 +g25268 +S'Vase, Meiping Shape' +p34159 +sg25270 +S'Chinese Qing Dynasty' +p34160 +sg25273 +S'overall: 34.6 x 19.7 cm (13 5/8 x 7 3/4 in.)' +p34161 +sg25275 +S'\nporcelain with famille verte enamels on the biscuit' +p34162 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f61.jpg' +p34163 +sg25267 +S'The exterior of the vase is decorated with a depiction of egrets in a \n lotus pond. The aubergine ground is unusual and suggests that the vase \n dates from an early phase in the evolution of the \n The vase is also unusual in that it represents a rare appearance of the \n \n (Text by Stephen Little, published in the NGA Systematic Catalogue: \n ' +p34164 +sa(dp34165 +g25267 +g27 +sg25268 +S'Tea Table' +p34166 +sg25270 +S'Henry Moore' +p34167 +sa(dp34168 +g25267 +g27 +sg25268 +S'Tea Table' +p34169 +sg25270 +S'Isadore Goldberg' +p34170 +sa(dp34171 +g25267 +g27 +sg25268 +S'Wall-table' +p34172 +sg25270 +S'Michael Riccitelli' +p34173 +sa(dp34174 +g25267 +g27 +sg25268 +S'Rectangular Table' +p34175 +sg25270 +S'Ruth Bialostosky' +p34176 +sa(dp34177 +g25267 +g27 +sg25268 +S'Rectangular Serving Table' +p34178 +sg25270 +S'American 20th Century' +p34179 +sa(dp34180 +g25267 +g27 +sg25268 +S'Silver Table (Tea?)' +p34181 +sg25270 +S'Meyer Goldbaum' +p34182 +sa(dp34183 +g25267 +g27 +sg25268 +S'Tea Table' +p34184 +sg25270 +S'Owen Middleton' +p34185 +sa(dp34186 +g25267 +g27 +sg25268 +S'"Butler\'s Table"' +p34187 +sg25270 +S'Carl Keksi' +p34188 +sa(dp34189 +g25267 +g27 +sg25268 +S'Invalid Bedside Table' +p34190 +sg25270 +S'Magnus S. Fossum' +p34191 +sa(dp34192 +g25267 +g27 +sg25268 +S'Circular Desk' +p34193 +sg25270 +S'Cornelius Frazier' +p34194 +sa(dp34195 +g25268 +S'Rectangular Vase' +p34196 +sg25270 +S'Chinese Qing Dynasty' +p34197 +sg25273 +S'overall (height): 56.1 cm (22 1/16 in.)' +p34198 +sg25275 +S'\nporcelain with famille jaune enamels on the biscuit' +p34199 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f62.jpg' +p34200 +sg25267 +g27 +sa(dp34201 +g25267 +g27 +sg25268 +S'Bedside Table' +p34202 +sg25270 +S'Isidore Sovensky' +p34203 +sa(dp34204 +g25267 +g27 +sg25268 +S'Serving Table' +p34205 +sg25270 +S'Edward L. Loper' +p34206 +sa(dp34207 +g25267 +g27 +sg25268 +S'Table' +p34208 +sg25270 +S'Marie Alain' +p34209 +sa(dp34210 +g25267 +g27 +sg25268 +S'Table' +p34211 +sg25270 +S'Hebilly West' +p34212 +sa(dp34213 +g25267 +g27 +sg25268 +S'T-base Candle Stand' +p34214 +sg25270 +S'Robert Brigadier' +p34215 +sa(dp34216 +g25267 +g27 +sg25268 +S'Writing or Sewing Table' +p34217 +sg25270 +S'Frank Wenger' +p34218 +sa(dp34219 +g25267 +g27 +sg25268 +S'Duncan Phyfe Sewing Cabinet' +p34220 +sg25270 +S'Mattie P. Goodman' +p34221 +sa(dp34222 +g25267 +g27 +sg25268 +S'Duncan Phyfe Sewing Cabinet' +p34223 +sg25270 +S'Mattie P. Goodman' +p34224 +sa(dp34225 +g25267 +g27 +sg25268 +S'Table' +p34226 +sg25270 +S'Edna C. Rex' +p34227 +sa(dp34228 +g25267 +g27 +sg25268 +S'Duncan Phyfe Sewing Cabinet' +p34229 +sg25270 +S'Edna C. Rex' +p34230 +sa(dp34231 +g25268 +S'Rectangular Vase' +p34232 +sg25270 +S'Chinese Qing Dynasty' +p34233 +sg25273 +S'overall (height): 56.5 cm (22 1/4 in.)' +p34234 +sg25275 +S'\nporcelain with famille jaune enamels on the biscuit' +p34235 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f63.jpg' +p34236 +sg25267 +g27 +sa(dp34237 +g25267 +g27 +sg25268 +S'Dining Table' +p34238 +sg25270 +S'Isidore Sovensky' +p34239 +sa(dp34240 +g25267 +g27 +sg25268 +S'Hepplewhite Drop Leaf Table' +p34241 +sg25270 +S'Hugh Ryan' +p34242 +sa(dp34243 +g25267 +g27 +sg25268 +S'Gate-legged Dining Table' +p34244 +sg25270 +S'Amos C. Brinton' +p34245 +sa(dp34246 +g25267 +g27 +sg25268 +S'Gatelegged (Table) Ball & Claw Feet' +p34247 +sg25270 +S'Joseph Sudek' +p34248 +sa(dp34249 +g25267 +g27 +sg25268 +S'Dining Table' +p34250 +sg25270 +S'William H. Edwards' +p34251 +sa(dp34252 +g25267 +g27 +sg25268 +S'Settle-table' +p34253 +sg25270 +S'Harry Eisman' +p34254 +sa(dp34255 +g25267 +g27 +sg25268 +S'Work Table' +p34256 +sg25270 +S'John Dana' +p34257 +sa(dp34258 +g25267 +g27 +sg25268 +S'Sideboard Table' +p34259 +sg25270 +S'Isidore Sovensky' +p34260 +sa(dp34261 +g25267 +g27 +sg25268 +S'Table' +p34262 +sg25270 +S'Isadore Goldberg' +p34263 +sa(dp34264 +g25267 +g27 +sg25268 +S'Table' +p34265 +sg25270 +S'Isidore Sovensky' +p34266 +sa(dp34267 +g25268 +S'Vase in the Shape of an Archaic Bronze Fang Hu' +p34268 +sg25270 +S'Chinese Qing Dynasty' +p34269 +sg25273 +S'overall: 50.8 x 19.8 x 17.8 cm (20 x 7 13/16 x 7 in.)' +p34270 +sg25275 +S'\nporcelain with famille jaune enamels on the biscuit' +p34271 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f64.jpg' +p34272 +sg25267 +g27 +sa(dp34273 +g25267 +g27 +sg25268 +S'Kitchen Table' +p34274 +sg25270 +S'Stanley Mazur' +p34275 +sa(dp34276 +g25267 +g27 +sg25268 +S'Mirror Stand' +p34277 +sg25270 +S'Harry Eisman' +p34278 +sa(dp34279 +g25267 +g27 +sg25268 +S'Sewing Table' +p34280 +sg25270 +S'Charles Goodwin' +p34281 +sa(dp34282 +g25267 +g27 +sg25268 +S'Sewing Table' +p34283 +sg25270 +S'Ernest A. Towers, Jr.' +p34284 +sa(dp34285 +g25267 +g27 +sg25268 +S'Drop-leaf Table' +p34286 +sg25270 +S'Rex F. Bush' +p34287 +sa(dp34288 +g25267 +g27 +sg25268 +S'Work Table' +p34289 +sg25270 +S'Fred Peterson' +p34290 +sa(dp34291 +g25267 +g27 +sg25268 +S'Mahogany Sewing Table' +p34292 +sg25270 +S'Anne B. Trepagnier' +p34293 +sa(dp34294 +g25267 +g27 +sg25268 +S'Table with Deep Drawer' +p34295 +sg25270 +S'Mattie P. Goodman' +p34296 +sa(dp34297 +g25267 +g27 +sg25268 +S'Sewing Table' +p34298 +sg25270 +S'Nicholas Gorid' +p34299 +sa(dp34300 +g25267 +g27 +sg25268 +S'Half-round Table' +p34301 +sg25270 +S'Georgine E. Mason' +p34302 +sa(dp34303 +g25268 +S'Zun-Shaped Beaker Vase' +p34304 +sg25270 +S'Chinese Qing Dynasty' +p34305 +sg25273 +S'overall: 46.1 x 22.7 cm (18 1/8 x 8 15/16 in.)' +p34306 +sg25275 +S'\nporcelain with famille noire enamels on the biscuit' +p34307 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f65.jpg' +p34308 +sg25267 +g27 +sa(dp34309 +g25267 +g27 +sg25268 +S'Rectangular Table for Serving or Tea' +p34310 +sg25270 +S'American 20th Century' +p34311 +sa(dp34312 +g25267 +g27 +sg25268 +S'Tea Table' +p34313 +sg25270 +S'Bernard Krieger' +p34314 +sa(dp34315 +g25267 +g27 +sg25268 +S'Tea Table' +p34316 +sg25270 +S'Florence Neal' +p34317 +sa(dp34318 +g25267 +g27 +sg25268 +S'Serving Table' +p34319 +sg25270 +S'John Swientochowski' +p34320 +sa(dp34321 +g25267 +g27 +sg25268 +S'Table (Occasional)' +p34322 +sg25270 +S'Francis Law Durand' +p34323 +sa(dp34324 +g25267 +g27 +sg25268 +S'Work Table' +p34325 +sg25270 +S'Bernard Gussow' +p34326 +sa(dp34327 +g25267 +g27 +sg25268 +S'Two Drawer Stand' +p34328 +sg25270 +S'Edith Magnette' +p34329 +sa(dp34330 +g25267 +g27 +sg25268 +S'Two Drawer Stand' +p34331 +sg25270 +S'Edith Magnette' +p34332 +sa(dp34333 +g25267 +g27 +sg25268 +S"Lady's Companion" +p34334 +sg25270 +S'Edna C. Rex' +p34335 +sa(dp34336 +g25267 +g27 +sg25268 +S'Sewing Table' +p34337 +sg25270 +S'Florence Choate' +p34338 +sa(dp34339 +g25268 +S'Zun-Shaped Beaker Vase' +p34340 +sg25270 +S'Chinese Qing Dynasty' +p34341 +sg25273 +S'overall: 46.6 x 23 cm (18 3/8 x 9 1/16 in.)' +p34342 +sg25275 +S'\nporcelain with famille noire enamels on the biscuit' +p34343 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e23.jpg' +p34344 +sg25267 +g27 +sa(dp34345 +g25267 +g27 +sg25268 +S'Writing or Sewing Table' +p34346 +sg25270 +S'Frank Wenger' +p34347 +sa(dp34348 +g25267 +g27 +sg25268 +S'Sewing Table' +p34349 +sg25270 +S'Elizabeth Curtis' +p34350 +sa(dp34351 +g25267 +g27 +sg25268 +S'Sewing Table' +p34352 +sg25270 +S'Bessie Forman' +p34353 +sa(dp34354 +g25267 +g27 +sg25268 +S'Serving and Work Table' +p34355 +sg25270 +S'American 20th Century' +p34356 +sa(dp34357 +g25267 +g27 +sg25268 +S'Sewing and Work Table' +p34358 +sg25270 +S'American 20th Century' +p34359 +sa(dp34360 +g25267 +g27 +sg25268 +S'Sewing-table' +p34361 +sg25270 +S'Edna C. Rex' +p34362 +sa(dp34363 +g25267 +g27 +sg25268 +S'Sewing Table' +p34364 +sg25270 +S'Artist Information (' +p34365 +sa(dp34366 +g25267 +g27 +sg25268 +S'Dropleaf Table' +p34367 +sg25270 +S'Alfred Walbeck' +p34368 +sa(dp34369 +g25267 +g27 +sg25268 +S'Table' +p34370 +sg25270 +S'Vincent P. Rosel' +p34371 +sa(dp34372 +g25267 +g27 +sg25268 +S'Tray Table' +p34373 +sg25270 +S'Robert Cole' +p34374 +sa(dp34375 +g25268 +S'Square Vase' +p34376 +sg25270 +S'Chinese Qing Dynasty' +p34377 +sg25273 +S'overall: 49.2 x 14.6 cm (19 3/8 x 5 3/4 in.)' +p34378 +sg25275 +S'\nporcelain with famille noire enamels on the biscuit' +p34379 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e25.jpg' +p34380 +sg25267 +g27 +sa(dp34381 +g25267 +g27 +sg25268 +S'Table' +p34382 +sg25270 +S'George Fairbanks' +p34383 +sa(dp34384 +g25267 +g27 +sg25268 +S'Utility Table' +p34385 +sg25270 +S'Henry Tomaszewski' +p34386 +sa(dp34387 +g25267 +g27 +sg25268 +S'Table' +p34388 +sg25270 +S'Jack Williamson' +p34389 +sa(dp34390 +g25267 +g27 +sg25268 +S'Table (Occassional)' +p34391 +sg25270 +S'Francis Law Durand' +p34392 +sa(dp34393 +g25267 +g27 +sg25268 +S'Table' +p34394 +sg25270 +S'Wellington Blewett' +p34395 +sa(dp34396 +g25267 +g27 +sg25268 +S'Dining Room Suite' +p34397 +sg25270 +S'Juanita Lantz' +p34398 +sa(dp34399 +g25267 +g27 +sg25268 +S'Dining Room Suite' +p34400 +sg25270 +S'Juanita Lantz' +p34401 +sa(dp34402 +g25267 +g27 +sg25268 +S'Mahogany Tilt-top Table' +p34403 +sg25270 +S'Erwin Schwabe' +p34404 +sa(dp34405 +g25267 +g27 +sg25268 +S'Drop Leaf Table' +p34406 +sg25270 +S'Dorothea A. Farrington' +p34407 +sa(dp34408 +g25267 +g27 +sg25268 +S'Duncan Phyfe Table' +p34409 +sg25270 +S'Arthur Mathews' +p34410 +sa(dp34411 +g25268 +S'Baluster Vase' +p34412 +sg25270 +S'Chinese Qing Dynasty' +p34413 +sg25273 +S'overall (height): 42.2 cm (16 5/8 in.)' +p34414 +sg25275 +S'\nporcelain with famille noire enamels on the biscuit' +p34415 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e26.jpg' +p34416 +sg25267 +g27 +sa(dp34417 +g25267 +g27 +sg25268 +S'Table' +p34418 +sg25270 +S'Arthur Mathews' +p34419 +sa(dp34420 +g25267 +g27 +sg25268 +S'Card Table' +p34421 +sg25270 +S'Jack Carr' +p34422 +sa(dp34423 +g25267 +g27 +sg25268 +S'Table Pedestal' +p34424 +sg25270 +S'Bernard Krieger' +p34425 +sa(dp34426 +g25267 +g27 +sg25268 +S'Table Pedestal' +p34427 +sg25270 +S'Nicholas Gorid' +p34428 +sa(dp34429 +g25267 +g27 +sg25268 +S'Card Table' +p34430 +sg25270 +S'Bessie Forman' +p34431 +sa(dp34432 +g25267 +g27 +sg25268 +S'Table Pedestal' +p34433 +sg25270 +S'Arthur Johnson' +p34434 +sa(dp34435 +g25267 +g27 +sg25268 +S'Card Table' +p34436 +sg25270 +S'Bessie Forman' +p34437 +sa(dp34438 +g25267 +g27 +sg25268 +S'Sofa Table' +p34439 +sg25270 +S'M. Rosenshield-von-Paulin' +p34440 +sa(dp34441 +g25267 +g27 +sg25268 +S'Sofa Table' +p34442 +sg25270 +S'Isidore Sovensky' +p34443 +sa(dp34444 +g25267 +g27 +sg25268 +S'Table' +p34445 +sg25270 +S'Henry Moore' +p34446 +sa(dp34447 +g25268 +S'Baluster Vase' +p34448 +sg25270 +S'Chinese Qing Dynasty' +p34449 +sg25273 +S'overall (height): 44.1 cm (17 3/8 in.)' +p34450 +sg25275 +S'\nporcelain with famille noire enamels on the biscuit' +p34451 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e27.jpg' +p34452 +sg25267 +g27 +sa(dp34453 +g25267 +g27 +sg25268 +S'Tavern Table (Top Missing)' +p34454 +sg25270 +S'Austin L. Davison' +p34455 +sa(dp34456 +g25267 +g27 +sg25268 +S'Refectory Table' +p34457 +sg25270 +S'Austin L. Davison' +p34458 +sa(dp34459 +g25267 +g27 +sg25268 +S'Tavern Table or Refectory Table' +p34460 +sg25270 +S'Louis Annino' +p34461 +sa(dp34462 +g25267 +g27 +sg25268 +S'Table' +p34463 +sg25270 +S'Frederick Jackson' +p34464 +sa(dp34465 +g25267 +g27 +sg25268 +S'Tavern Table' +p34466 +sg25270 +S'Arthur Johnson' +p34467 +sa(dp34468 +g25267 +g27 +sg25268 +S'Table' +p34469 +sg25270 +S'Lawrence Phillips' +p34470 +sa(dp34471 +g25267 +g27 +sg25268 +S'Tavern Table' +p34472 +sg25270 +S'Isadore Goldberg' +p34473 +sa(dp34474 +g25267 +g27 +sg25268 +S'Tavern Table or Stretcher' +p34475 +sg25270 +S'Dorothea A. Farrington' +p34476 +sa(dp34477 +g25267 +g27 +sg25268 +S'Tavern Table' +p34478 +sg25270 +S'Harry Eisman' +p34479 +sa(dp34480 +g25267 +g27 +sg25268 +S'Trestle Table' +p34481 +sg25270 +S'Fletcher Hanks' +p34482 +sa(dp34483 +g25268 +S'Bowl' +p34484 +sg25270 +S'Chinese Qing Dynasty' +p34485 +sg25273 +S'overall: 9.4 x 22.8 cm (3 11/16 x 9 in.)' +p34486 +sg25275 +S'\nporcelain with overglaze famille rose and famille noire enamels' +p34487 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e29.jpg' +p34488 +sg25267 +g27 +sa(dp34489 +g25267 +g27 +sg25268 +S'Trestle Table' +p34490 +sg25270 +S'Charles Henning' +p34491 +sa(dp34492 +g25267 +g27 +sg25268 +S'Candle Table' +p34493 +sg25270 +S'David S. De Vault' +p34494 +sa(dp34495 +g25267 +g27 +sg25268 +S'Table (Occasional)' +p34496 +sg25270 +S'Michael Riccitelli' +p34497 +sa(dp34498 +g25267 +g27 +sg25268 +S'Table' +p34499 +sg25270 +S'Mario De Ferrante' +p34500 +sa(dp34501 +g25267 +g27 +sg25268 +S'Side Table' +p34502 +sg25270 +S'Henry Moore' +p34503 +sa(dp34504 +g25267 +g27 +sg25268 +S'Tip-table or Cant-table' +p34505 +sg25270 +S'William McAuley' +p34506 +sa(dp34507 +g25267 +g27 +sg25268 +S'Tip-table or Cant-table' +p34508 +sg25270 +S'William McAuley' +p34509 +sa(dp34510 +g25267 +g27 +sg25268 +S'Candle Table' +p34511 +sg25270 +S'Carl Buergerniss' +p34512 +sa(dp34513 +g25267 +g27 +sg25268 +S'Tilt Top Table' +p34514 +sg25270 +S'Henry Murphy' +p34515 +sa(dp34516 +g25267 +g27 +sg25268 +S'Table (Tripod)' +p34517 +sg25270 +S'Michael Riccitelli' +p34518 +sa(dp34519 +g25268 +S'Rouleau-Shaped Vase' +p34520 +sg25270 +S'Chinese Qing Dynasty' +p34521 +sg25273 +S'overall (height): 60.3 cm (23 3/4 in.)' +p34522 +sg25275 +S'\nporcelain with famille noire enamels on the biscuit' +p34523 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e2a.jpg' +p34524 +sg25267 +g27 +sa(dp34525 +g25267 +g27 +sg25268 +S'Card Table' +p34526 +sg25270 +S'Bessie Forman' +p34527 +sa(dp34528 +g25267 +g27 +sg25268 +S'Occasional Table' +p34529 +sg25270 +S'Artist Information (' +p34530 +sa(dp34531 +g25267 +g27 +sg25268 +S'Table' +p34532 +sg25270 +S'Michael Riccitelli' +p34533 +sa(dp34534 +g25267 +g27 +sg25268 +S'Candlestand' +p34535 +sg25270 +S'Max Schwartz' +p34536 +sa(dp34537 +g25267 +g27 +sg25268 +S'Tripod-table' +p34538 +sg25270 +S'Arthur Johnson' +p34539 +sa(dp34540 +g25267 +g27 +sg25268 +S'Table' +p34541 +sg25270 +S'Hans Westendorff' +p34542 +sa(dp34543 +g25267 +g27 +sg25268 +S'Table' +p34544 +sg25270 +S'Hans Westendorff' +p34545 +sa(dp34546 +g25267 +g27 +sg25268 +S'Tilt-top Table' +p34547 +sg25270 +S'Rolland Livingstone' +p34548 +sa(dp34549 +g25267 +S'As the colonists\' standard of living became more luxurious, specialized furniture\r\n forms were developed. The habit of drinking tea became popular in the 1730s, and\r\n tea tables became an important eighteenth-century furniture form after 1740. During\r\n the Chippendale period, cabinetmakers developed a tripod base tea table with its\r\n top supported by a birdcage device of the kind that appears here. The "birdcage"\r\n apparatus was ornamental as well as functional; it permitted the top to revolve\r\n when the table was in use for serving, but a peg inserted through the center prevented\r\n the top from spinning wildly. This characteristic Chippendale tea table stands on\r\n three boldly outthrust cabriole legs carved at the knee and ending with the usual\r\n ball and claw foot. The top is scalloped and edged with molding cut from the solid\r\n wood; the molded edge gave rise to the term "piecrust table," frequently used in\r\n reference to tables such as this one.\n ' +p34550 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002f2.jpg' +p34551 +sg25268 +S'Table' +p34552 +sg25270 +S'Frank Wenger' +p34553 +sa(dp34554 +g25267 +g27 +sg25268 +S'Table' +p34555 +sg25270 +S'Frank Wenger' +p34556 +sa(dp34557 +g25268 +S'Rouleau-Shaped Vase' +p34558 +sg25270 +S'Chinese Qing Dynasty' +p34559 +sg25273 +S'overall (height): 60 cm (23 5/8 in.)' +p34560 +sg25275 +S'\nporcelain with famille noire enamels on the biscuit' +p34561 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e2b.jpg' +p34562 +sg25267 +g27 +sa(dp34563 +g25267 +g27 +sg25268 +S'Drawing of Table' +p34564 +sg25270 +S'Hans Westendorff' +p34565 +sa(dp34566 +g25267 +g27 +sg25268 +S'Tilt-top Table' +p34567 +sg25270 +S'Francis Borelli' +p34568 +sa(dp34569 +g25267 +g27 +sg25268 +S'Tilt-top Table' +p34570 +sg25270 +S'Artist Information (' +p34571 +sa(dp34572 +g25267 +g27 +sg25268 +S'Tripod Table' +p34573 +sg25270 +S'Arthur Johnson' +p34574 +sa(dp34575 +g25267 +g27 +sg25268 +S'Tip-top Table' +p34576 +sg25270 +S'Hans Korsch' +p34577 +sa(dp34578 +g25267 +g27 +sg25268 +S'Tripod Table' +p34579 +sg25270 +S'A. Zaidenberg' +p34580 +sa(dp34581 +g25267 +g27 +sg25268 +S'Tripod Stand' +p34582 +sg25270 +S'Lorenz Rothkranz' +p34583 +sa(dp34584 +g25267 +g27 +sg25268 +S'Table' +p34585 +sg25270 +S'American 20th Century' +p34586 +sa(dp34587 +g25267 +g27 +sg25268 +S'Tilt Top Table' +p34588 +sg25270 +S'Herbert Marsh' +p34589 +sa(dp34590 +g25267 +g27 +sg25268 +S'Tilt-top Table' +p34591 +sg25270 +S'Holger Hansen' +p34592 +sa(dp34593 +g25268 +S'The Annunciation' +p34594 +sg25270 +S'Masolino da Panicale' +p34595 +sg25273 +S'tempera (and possibly oil glazes) on panel' +p34596 +sg25275 +S'c. 1423/1424' +p34597 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005e2.jpg' +p34598 +sg25267 +S"Fifteenth-century viewers of this Annunciation would have\r\n recognized not \r\n only its general subject, but also the particular moment Masolino \r\n chose to \r\n paint. Street preachers gave vivid accounts of Gabriel's message to\r\n Mary \r\n about Christ's birth, and audiences would also have seen the\r\n Annunciation \r\n reenacted on its feast day. In Florence, Brunelleschi designed an \r\n apparatus to \r\n lower an actor portraying Gabriel from the cathedral dome, as young\r\n children dressed as angels hung suspended in rigging. Events in the\r\n drama took place in sequence. Mary was first startled at the\r\n angel's sudden \r\n appearance; she reflected on his message and queried Gabriel about\r\n her \r\n fitness; finally, kneeling, she submitted to God's will. Here\r\n Mary's \r\n downcast eyes and musing gesture—hand resting tentatively on her\r\n breast—suggest the second, and most often depicted, of these stages:\r\n reflection. \r\n As did actors in the religious plays, artists used gesture and\r\n posture to \r\n communicate states of mind.\n Masolino is best known for his collaboration with Masaccio on\r\n the \r\n frescoes of the Brancacci chapel in Florence—and for his failure\r\n to \r\n pursue Masaccio's innovations. Masolino continued to paint in a\r\n style that \r\n was delicate and ornamental. His colors are flowerlike, his figures\r\n elegant \r\n but unreal. They do not seem so much to exist within the painted\r\n space as \r\n to be placed before it. In the ceiling, colorful tiles, a device\r\n used by \r\n Masaccio to create perspective lines, are merely decorative and\r\n leave space \r\n ambiguous.\n " +p34599 +sa(dp34600 +g25268 +S'Rouleau-Shaped Vase' +p34601 +sg25270 +S'Chinese Qing Dynasty' +p34602 +sg25273 +S'overall (height): 60 cm (23 5/8 in.)' +p34603 +sg25275 +S'\nporcelain with famille noire enamels on the biscuit' +p34604 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e2c.jpg' +p34605 +sg25267 +g27 +sa(dp34606 +g25267 +g27 +sg25268 +S"Crow's Nest Tilt Top Table" +p34607 +sg25270 +S'Herbert Marsh' +p34608 +sa(dp34609 +g25267 +g27 +sg25268 +S'Tip-top-table' +p34610 +sg25270 +S'Frank Wenger' +p34611 +sa(dp34612 +g25267 +g27 +sg25268 +S'Tilt Table' +p34613 +sg25270 +S'Ferdinand Cartier' +p34614 +sa(dp34615 +g25267 +g27 +sg25268 +S'Tilt Table' +p34616 +sg25270 +S'Ferdinand Cartier' +p34617 +sa(dp34618 +g25267 +g27 +sg25268 +S'Tilt Top Table' +p34619 +sg25270 +S'Dorothy Handy' +p34620 +sa(dp34621 +g25267 +g27 +sg25268 +S'Table (Collapsible)' +p34622 +sg25270 +S'Franklin C. Moyan' +p34623 +sa(dp34624 +g25267 +g27 +sg25268 +S'Fire Screen' +p34625 +sg25270 +S'Artist Information (' +p34626 +sa(dp34627 +g25267 +S"During the Federal period, from about 1780 to 1820, work tables became popular,\r\n and many new types were developed. Sheraton's \n " +p34628 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002d1.jpg' +p34629 +sg25268 +S'Sewing Table' +p34630 +sg25270 +S'Rolland Livingstone' +p34631 +sa(dp34632 +g25267 +g27 +sg25268 +S'Highboy' +p34633 +sg25270 +S'Ferdinand Cartier' +p34634 +sa(dp34635 +g25267 +g27 +sg25268 +S'Lowboy' +p34636 +sg25270 +S'American 20th Century' +p34637 +sa(dp34638 +g25268 +S'Rouleau-Shaped Vase' +p34639 +sg25270 +S'Chinese Qing Dynasty' +p34640 +sg25273 +S'overall (height): 59.9 cm (23 9/16 in.)' +p34641 +sg25275 +S'\nporcelain with famille noire enamels on the biscuit' +p34642 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e2d.jpg' +p34643 +sg25267 +g27 +sa(dp34644 +g25267 +g27 +sg25268 +S'Mantel Clock or Shelf Clock' +p34645 +sg25270 +S'Samuel Fineman' +p34646 +sa(dp34647 +g25267 +g27 +sg25268 +S'Thirty Hour Clock' +p34648 +sg25270 +S'Artist Information (' +p34649 +sa(dp34650 +g25267 +g27 +sg25268 +S'Sofa Table' +p34651 +sg25270 +S'Francis Borelli' +p34652 +sa(dp34653 +g25267 +g27 +sg25268 +S'Window Seat' +p34654 +sg25270 +S'Harry Eisman' +p34655 +sa(dp34656 +g25267 +g27 +sg25268 +S'Sewing Table' +p34657 +sg25270 +S'Isidore Sovensky' +p34658 +sa(dp34659 +g25267 +S"In addition to Hepplewhite's \n " +p34660 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002d0.jpg' +p34661 +sg25268 +S'Card Table' +p34662 +sg25270 +S'Ferdinand Cartier' +p34663 +sa(dp34664 +g25267 +S'As an alternative to inlaid ornament, Sheraton designs customarily rely upon\r\n carved decoration. This well-proportioned mahogany sofa displays expertly carved,\r\n reeded arms that slope gracefully to join slender reeded and turned front posts.\r\n The front legs, too, are finely reeded, and a long triple panel crest rail is adorned\r\n with elegantly carved swags, bow-knots, and tassels. The sofa was made between\r\n 1810 and 1815 by Duncan Phyfe, a well-known New York cabinetmaker; it represents\r\n an early stage in his career, when he was producing furniture in the Sheraton style.\n ' +p34665 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002d3.jpg' +p34666 +sg25268 +S'Sofa' +p34667 +sg25270 +S'Ferdinand Cartier' +p34668 +sa(dp34669 +g25267 +g27 +sg25268 +S'Lowboy' +p34670 +sg25270 +S'Ferdinand Cartier' +p34671 +sa(dp34672 +g25267 +g27 +sg25268 +S'Mixing Table' +p34673 +sg25270 +S'Ferdinand Cartier' +p34674 +sa(dp34675 +g25267 +g27 +sg25268 +S'Highboy' +p34676 +sg25270 +S'Lorenz Rothkranz' +p34677 +sa(dp34678 +g25268 +S'Baluster Vase' +p34679 +sg25270 +S'Chinese Qing Dynasty' +p34680 +sg25273 +S'overall (height): 69.4 cm (27 5/16 in.)' +p34681 +sg25275 +S'\nporcelain with famille noire enamels on the biscuit' +p34682 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e2e.jpg' +p34683 +sg25267 +g27 +sa(dp34684 +g25267 +g27 +sg25268 +S'Cabinet Top Desk' +p34685 +sg25270 +S'Ferdinand Cartier' +p34686 +sa(dp34687 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a000544a.jpg' +p34688 +sg25268 +S'Chest' +p34689 +sg25270 +S'Ferdinand Cartier' +p34690 +sa(dp34691 +g25267 +S'The wainscot chair was the fine chair of the Jacobean period. This one is made\r\n of oak, a wood commonly used in the seventeenth century. The paneled back of the\r\n chair is similar to panels on chests and cupboards of the same period. This aspect\r\n of Jacobean style is derived from wainscoting, the wooden paneling used in Elizabethan\r\n rooms. The arched niche cut into the center of the seat back and repeated in the\r\n carved arcades of the seat rail is another decorative motif adapted from an architectural\r\n form. Notice the turned bulbous shape of the front legs and the arm posts, which\r\n are a characteristic feature of Jacobean furniture.\n ' +p34692 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002c1.jpg' +p34693 +sg25268 +S'Wainscot Armchair' +p34694 +sg25270 +S'Leo Drozdoff' +p34695 +sa(dp34696 +g25267 +g27 +sg25268 +S'Shelf Clock' +p34697 +sg25270 +S'Frank Wenger' +p34698 +sa(dp34699 +g25267 +g27 +sg25268 +S'Side Board' +p34700 +sg25270 +S'American 20th Century' +p34701 +sa(dp34702 +g25267 +g27 +sg25268 +S'Occasional Table' +p34703 +sg25270 +S'Artist Information (' +p34704 +sa(dp34705 +g25267 +g27 +sg25268 +S'Three-cornered Safe' +p34706 +sg25270 +S'Pearl Davis' +p34707 +sa(dp34708 +g25267 +g27 +sg25268 +S'Flour Bin' +p34709 +sg25270 +S'Grace Bolser' +p34710 +sa(dp34711 +g25267 +g27 +sg25268 +S'Secretary' +p34712 +sg25270 +S'Artist Information (' +p34713 +sa(dp34714 +g25267 +g27 +sg25268 +S'Desk' +p34715 +sg25270 +S'Peter C. Ustinoff' +p34716 +sa(dp34717 +g25268 +S'Baluster Vase' +p34718 +sg25270 +S'Chinese Qing Dynasty' +p34719 +sg25273 +S'overall (height): 67.4 cm (26 9/16 in.)' +p34720 +sg25275 +S'\nporcelain with famille noire enamels on the biscuit' +p34721 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e30.jpg' +p34722 +sg25267 +g27 +sa(dp34723 +g25267 +g27 +sg25268 +S'Kitchen Safe' +p34724 +sg25270 +S'Peter C. Ustinoff' +p34725 +sa(dp34726 +g25267 +g27 +sg25268 +S'Wardrobe' +p34727 +sg25270 +S'Dorothy Johnson' +p34728 +sa(dp34729 +g25267 +g27 +sg25268 +S'Wardrobe' +p34730 +sg25270 +S'Rosa Rivero' +p34731 +sa(dp34732 +g25267 +g27 +sg25268 +S'Pine Wardrobe' +p34733 +sg25270 +S'Grace Bolser' +p34734 +sa(dp34735 +g25267 +g27 +sg25268 +S'China Closet' +p34736 +sg25270 +S'Josephine Prado' +p34737 +sa(dp34738 +g25267 +g27 +sg25268 +S'China Closet' +p34739 +sg25270 +S'Grace Bolser' +p34740 +sa(dp34741 +g25267 +g27 +sg25268 +S'Cabinet' +p34742 +sg25270 +S'Grace Bolser' +p34743 +sa(dp34744 +g25267 +g27 +sg25268 +S'Panel Door' +p34745 +sg25270 +S'Angeline Starr' +p34746 +sa(dp34747 +g25267 +g27 +sg25268 +S'Wash-stand' +p34748 +sg25270 +S'Eugene R. Szepessy' +p34749 +sa(dp34750 +g25267 +g27 +sg25268 +S'Dresser' +p34751 +sg25270 +S'Pearl Davis' +p34752 +sa(dp34753 +g25268 +S'Baluster Vase' +p34754 +sg25270 +S'Chinese Qing Dynasty' +p34755 +sg25273 +S'overall (height): 74.9 cm (29 1/2 in.)' +p34756 +sg25275 +S'\nporcelain with famille noire enamels on the biscuit' +p34757 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e32.jpg' +p34758 +sg25267 +S'The exterior of this vase is decorated with garden rocks, blossoming \n plum trees, bamboo, and birds against a black ground. The painting is \n accomplished but rather perfunctory. The full \n (Text by Stephen Little, published in the NGA Systematic Catalogue: \n ' +p34759 +sa(dp34760 +g25267 +g27 +sg25268 +S'Chest' +p34761 +sg25270 +S'Grace Bolser' +p34762 +sa(dp34763 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p34764 +sg25270 +S'Joe Brennan' +p34765 +sa(dp34766 +g25267 +g27 +sg25268 +S'Gateleg Table' +p34767 +sg25270 +S'Peter C. Ustinoff' +p34768 +sa(dp34769 +g25267 +g27 +sg25268 +S'Round Top Table' +p34770 +sg25270 +S'Josephine Prado' +p34771 +sa(dp34772 +g25267 +g27 +sg25268 +S'Wash Stand' +p34773 +sg25270 +S'Joe Brennan' +p34774 +sa(dp34775 +g25267 +g27 +sg25268 +S'Cradle' +p34776 +sg25270 +S'Pearl Davis' +p34777 +sa(dp34778 +g25267 +g27 +sg25268 +S'Box Cradle' +p34779 +sg25270 +S'Mary Hansen' +p34780 +sa(dp34781 +g25267 +g27 +sg25268 +S'Cradle' +p34782 +sg25270 +S'Pearl Davis' +p34783 +sa(dp34784 +g25267 +g27 +sg25268 +S'Octagonal Table' +p34785 +sg25270 +S'Peter C. Ustinoff' +p34786 +sa(dp34787 +g25267 +g27 +sg25268 +S'Round Top Table' +p34788 +sg25270 +S'Artist Information (' +p34789 +sa(dp34790 +g25268 +S'Baluster Vase' +p34791 +sg25270 +S'Chinese Qing Dynasty' +p34792 +sg25273 +S'overall: 69.2 x 27.3 cm (27 1/4 x 10 3/4 in.)' +p34793 +sg25275 +S'\nporcelain with famille noire enamels on the biscuit' +p34794 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e33.jpg' +p34795 +sg25267 +g27 +sa(dp34796 +g25267 +g27 +sg25268 +S'Kas' +p34797 +sg25270 +S'Arthur Johnson' +p34798 +sa(dp34799 +g25267 +g27 +sg25268 +S'Kas' +p34800 +sg25270 +S'Lorenz Rothkranz' +p34801 +sa(dp34802 +g25267 +g27 +sg25268 +S'Kas' +p34803 +sg25270 +S'Isadore Goldberg' +p34804 +sa(dp34805 +g25267 +g27 +sg25268 +S"Wardrobe, John Marshall's" +p34806 +sg25270 +S'Edna C. Rex' +p34807 +sa(dp34808 +g25267 +g27 +sg25268 +S"Wardrobe, John Marshall's" +p34809 +sg25270 +S'Edna C. Rex' +p34810 +sa(dp34811 +g25267 +g27 +sg25268 +S'Wardrobe' +p34812 +sg25270 +S'George Fairbanks' +p34813 +sa(dp34814 +g25267 +g27 +sg25268 +S'Wardrobe' +p34815 +sg25270 +S'George Fairbanks' +p34816 +sa(dp34817 +g25267 +g27 +sg25268 +S'Wardrobe' +p34818 +sg25270 +S'Katharine Morris' +p34819 +sa(dp34820 +g25267 +g27 +sg25268 +S'Wardrobe' +p34821 +sg25270 +S'Lee Brown' +p34822 +sa(dp34823 +g25267 +g27 +sg25268 +S'Armoire' +p34824 +sg25270 +S'Sarkis Erganian' +p34825 +sa(dp34826 +g25268 +S'Baluster Vase' +p34827 +sg25270 +S'Chinese Qing Dynasty' +p34828 +sg25273 +S'overall: 70.2 x 27.6 cm (27 5/8 x 10 7/8 in.)' +p34829 +sg25275 +S'\nporcelain with famille noire enamels on the biscuit' +p34830 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e34.jpg' +p34831 +sg25267 +g27 +sa(dp34832 +g25267 +g27 +sg25268 +S'Painted Wardrobe' +p34833 +sg25270 +S'Edward A. Darby' +p34834 +sa(dp34835 +g25267 +g27 +sg25268 +S'Walnut Wash Stand' +p34836 +sg25270 +S'Harry King' +p34837 +sa(dp34838 +g25267 +g27 +sg25268 +S'Washstand' +p34839 +sg25270 +S'Walter W. Jennings' +p34840 +sa(dp34841 +g25267 +g27 +sg25268 +S'Washstand' +p34842 +sg25270 +S'Nicholas Gorid' +p34843 +sa(dp34844 +g25267 +g27 +sg25268 +S'Washstand' +p34845 +sg25270 +S'Nicholas Gorid' +p34846 +sa(dp34847 +g25267 +g27 +sg25268 +S'Washstand' +p34848 +sg25270 +S'Ulrich Fischer' +p34849 +sa(dp34850 +g25267 +g27 +sg25268 +S'Colonial Wash Stand' +p34851 +sg25270 +S'Florence Truelson' +p34852 +sa(dp34853 +g25267 +g27 +sg25268 +S'Wash Stand' +p34854 +sg25270 +S'American 20th Century' +p34855 +sa(dp34856 +g25267 +g27 +sg25268 +S'Wash Cabinet, with Marble Top and Semi-back' +p34857 +sg25270 +S'Artist Information (' +p34858 +sa(dp34859 +g25267 +g27 +sg25268 +S'Corner Wash-stand' +p34860 +sg25270 +S'Charlotte Winter' +p34861 +sa(dp34862 +g25268 +S'Large Jar' +p34863 +sg25270 +S'Chinese Qing Dynasty' +p34864 +sg25273 +S'overall (height with lid): 62.8 cm (24 3/4 in.)\r\noverall (lid): 14.6 cm (5 3/4 in.)\r\noverall (height without lid): 49.5 cm (19 1/2 in.)' +p34865 +sg25275 +S'\nporcelain with famille noire enamels on the biscuit' +p34866 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e35.jpg' +p34867 +sg25267 +g27 +sa(dp34868 +g25267 +g27 +sg25268 +S'Wash Stand' +p34869 +sg25270 +S'Della Button' +p34870 +sa(dp34871 +g25267 +g27 +sg25268 +S'Wash-stand' +p34872 +sg25270 +S'Edna C. Rex' +p34873 +sa(dp34874 +g25267 +g27 +sg25268 +S'Corner Wash-stand' +p34875 +sg25270 +S'Bernard Gussow' +p34876 +sa(dp34877 +g25267 +g27 +sg25268 +S'Wash-stand' +p34878 +sg25270 +S'Edward A. Darby' +p34879 +sa(dp34880 +g25267 +g27 +sg25268 +S'Wash Stand' +p34881 +sg25270 +S'American 20th Century' +p34882 +sa(dp34883 +g25267 +g27 +sg25268 +S'Dutch Sink' +p34884 +sg25270 +S'Ernest A. Towers, Jr.' +p34885 +sa(dp34886 +g25267 +g27 +sg25268 +S'Washstand' +p34887 +sg25270 +S'Henry Moran' +p34888 +sa(dp34889 +g25267 +g27 +sg25268 +S'Lowboy' +p34890 +sg25270 +S'Frank Wenger' +p34891 +sa(dp34892 +g25267 +g27 +sg25268 +S'Slate-top Table' +p34893 +sg25270 +S'M. Rosenshield-von-Paulin' +p34894 +sa(dp34895 +g25267 +g27 +sg25268 +S'Slate-top Table' +p34896 +sg25270 +S'M. Rosenshield-von-Paulin' +p34897 +sa(dp34898 +g25268 +S'Baluster Vase' +p34899 +sg25270 +S'Chinese Qing Dynasty' +p34900 +sg25273 +S'overall: 74.1 x 28 cm (29 3/16 x 11 in.)' +p34901 +sg25275 +S'\nporcelain with overglaze famille verte enamels' +p34902 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e36.jpg' +p34903 +sg25267 +g27 +sa(dp34904 +g25267 +g27 +sg25268 +S'Slate-top Table' +p34905 +sg25270 +S'M. Rosenshield-von-Paulin' +p34906 +sa(dp34907 +g25267 +g27 +sg25268 +S'Slate-top Table' +p34908 +sg25270 +S'M. Rosenshield-von-Paulin' +p34909 +sa(dp34910 +g25267 +g27 +sg25268 +S'Window Seat' +p34911 +sg25270 +S'Jack Carr' +p34912 +sa(dp34913 +g25267 +g27 +sg25268 +S'Settee' +p34914 +sg25270 +S'Charles Cullen' +p34915 +sa(dp34916 +g25267 +g27 +sg25268 +S'Window Seat' +p34917 +sg25270 +S'Ferdinand Cartier' +p34918 +sa(dp34919 +g25267 +g27 +sg25268 +S'Window Seat' +p34920 +sg25270 +S'Nicholas Gorid' +p34921 +sa(dp34922 +g25267 +g27 +sg25268 +S'Nicholas Bayard Estate' +p34923 +sg25270 +S'Helen Miller' +p34924 +sa(dp34925 +g25267 +g27 +sg25268 +S'Wine Cooler' +p34926 +sg25270 +S'Artist Information (' +p34927 +sa(dp34928 +g25267 +g27 +sg25268 +S'Wine Cooler' +p34929 +sg25270 +S'Henry Meyers' +p34930 +sa(dp34931 +g25267 +g27 +sg25268 +S'Wine Cooler with Cover' +p34932 +sg25270 +S'Artist Information (' +p34933 +sa(dp34934 +g25268 +S'Baluster Vase' +p34935 +sg25270 +S'Chinese Qing Dynasty' +p34936 +sg25273 +S'overall: 77.5 x 29.5 cm (30 1/2 x 11 5/8 in.)' +p34937 +sg25275 +S'\nporcelain with overglaze famille verte enamels' +p34938 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e37.jpg' +p34939 +sg25267 +g27 +sa(dp34940 +g25267 +g27 +sg25268 +S'Wine Chest' +p34941 +sg25270 +S'Charles Bowman' +p34942 +sa(dp34943 +g25267 +g27 +sg25268 +S'Table' +p34944 +sg25270 +S'Warren Booth' +p34945 +sa(dp34946 +g25267 +g27 +sg25268 +S'Table (pedestal)' +p34947 +sg25270 +S'LeRoy Griffith' +p34948 +sa(dp34949 +g25267 +S'The trestle table, which is described in mid-seventeenth-century inventories\r\n as a "table board and frame," is the oldest form of American table. In this New\r\n England example, the "table board" is a single plank of pine two feet wide and\r\n over twelve feet in length. The long, narrow plank rests on a frame consisting of\r\n three oak trestles. The trestles are held in position by a pine brace that passes\r\n through them and is pegged into place.\n ' +p34950 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002c4.jpg' +p34951 +sg25268 +S'Trestle Table' +p34952 +sg25270 +S'Isadore Goldberg' +p34953 +sa(dp34954 +g25267 +g27 +sg25268 +S'Candle Stand' +p34955 +sg25270 +S'Rex F. Bush' +p34956 +sa(dp34957 +g25267 +g27 +sg25268 +S'Candle Stand' +p34958 +sg25270 +S'Rex F. Bush' +p34959 +sa(dp34960 +g25267 +g27 +sg25268 +S'Carved Mahogany Table' +p34961 +sg25270 +S'Florence Truelson' +p34962 +sa(dp34963 +g25267 +g27 +sg25268 +S'Table' +p34964 +sg25270 +S'Charles Bowman' +p34965 +sa(dp34966 +g25267 +g27 +sg25268 +S'Washstand' +p34967 +sg25270 +S'Joseph Cannella' +p34968 +sa(dp34969 +g25267 +g27 +sg25268 +S'Washstand' +p34970 +sg25270 +S'Leo Drozdoff' +p34971 +sa(dp34972 +g25268 +S'Baluster Vase' +p34973 +sg25270 +S'Chinese Qing Dynasty' +p34974 +sg25273 +S'overall: 77.3 x 28.6 cm (30 7/16 x 11 1/4 in.)' +p34975 +sg25275 +S'\nporcelain with overglaze famille verte enamels' +p34976 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f66.jpg' +p34977 +sg25267 +g27 +sa(dp34978 +g25267 +g27 +sg25268 +S'Wooden Armoire' +p34979 +sg25270 +S'Adele Brooks' +p34980 +sa(dp34981 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005526.jpg' +p34982 +sg25268 +S'Triangular Corner Safe' +p34983 +sg25270 +S'Rosa Rivero' +p34984 +sa(dp34985 +g25267 +g27 +sg25268 +S'Chest' +p34986 +sg25270 +S'Eva Perry' +p34987 +sa(dp34988 +g25267 +g27 +sg25268 +S'Washstand' +p34989 +sg25270 +S'Anne B. Trepagnier' +p34990 +sa(dp34991 +g25267 +g27 +sg25268 +S'Tea Table' +p34992 +sg25270 +S'Charles Henning' +p34993 +sa(dp34994 +g25267 +g27 +sg25268 +S'Plantation Clock' +p34995 +sg25270 +S'Al Curry' +p34996 +sa(dp34997 +g25267 +g27 +sg25268 +S'Writing Desk' +p34998 +sg25270 +S'Herbert S. Frere' +p34999 +sa(dp35000 +g25267 +g27 +sg25268 +S'Wooden Bed' +p35001 +sg25270 +S'Al Curry' +p35002 +sa(dp35003 +g25267 +g27 +sg25268 +S'Writing Desk' +p35004 +sg25270 +S'Artist Information (' +p35005 +sa(dp35006 +g25267 +g27 +sg25268 +S'Duncan Phyfe Sofa' +p35007 +sg25270 +S'Edward L. Loper' +p35008 +sa(dp35009 +g25268 +S'Large Covered Baluster Jar' +p35010 +sg25270 +S'Chinese Qing Dynasty' +p35011 +sg25273 +S'overall (with cover): 133.4 x 48.9 cm (52 1/2 x 19 1/4 in.)\r\noverall (height without cover): 107.6 cm (42 3/8 in.)' +p35012 +sg25275 +S'\nporcelain with overglaze famille rose enamels' +p35013 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f67.jpg' +p35014 +sg25267 +g27 +sa(dp35015 +g25267 +g27 +sg25268 +S'Tabarette' +p35016 +sg25270 +S'Ralph Morton' +p35017 +sa(dp35018 +g25267 +g27 +sg25268 +S'Sofa' +p35019 +sg25270 +S'Florence Choate' +p35020 +sa(dp35021 +g25267 +g27 +sg25268 +S'Side Chair' +p35022 +sg25270 +S'Arthur Johnson' +p35023 +sa(dp35024 +g25267 +g27 +sg25268 +S'Chest' +p35025 +sg25270 +S'Charles Squires' +p35026 +sa(dp35027 +g25267 +g27 +sg25268 +S'Tall Clock' +p35028 +sg25270 +S'Artist Information (' +p35029 +sa(dp35030 +g25267 +g27 +sg25268 +S'Card Table' +p35031 +sg25270 +S'Leo Drozdoff' +p35032 +sa(dp35033 +g25267 +S'Between 1760 and 1770, American highboys became very ornate. The most elaborate\r\n pieces came from Philadelphia, which was a center of style and culture and one\r\n of the most important American cities both before and after the Revolution. This\r\n highboy was made by William Savery, a leading cabinetmaker of Philadelphia. It\r\n has a carved scrolled bonnet top; between the scrolls is a lavishly carved design\r\n of leaves and tendrils. The quarter columns at the front corners are ornamented\r\n with vine carving. Carved designs in the acanthus motif appear on the cabriole\r\n legs, and carved shell-like forms ornament the shaped skirting. The elaborate carving,\r\n a combination of motifs based upon rhythmically intertwined curves, produces an\r\n effect of great decorative richness, characteristic of the fully developed Chippendale\r\n style as practiced by the cabinetmakers of Philadelphia.\n ' +p35034 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002cb.jpg' +p35035 +sg25268 +S'Highboy' +p35036 +sg25270 +S'Francis Borelli' +p35037 +sa(dp35038 +g25267 +g27 +sg25268 +S'Highboy' +p35039 +sg25270 +S'Charles Squires' +p35040 +sa(dp35041 +g25267 +g27 +sg25268 +S'Shelf Clock' +p35042 +sg25270 +S'Frank Wenger' +p35043 +sa(dp35044 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p35045 +sg25270 +S'Artist Information (' +p35046 +sa(dp35047 +g25268 +S'Large Covered Baluster Jar' +p35048 +sg25270 +S'Chinese Qing Dynasty' +p35049 +sg25273 +S'overall (with cover): 133 x 49.7 cm (52 3/8 x 19 9/16 in.)\r\noverall (height without cover): 107.3 cm (42 1/4 in.)' +p35050 +sg25275 +S'\nporcelain with overglaze famille rose enamels' +p35051 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f68.jpg' +p35052 +sg25267 +g27 +sa(dp35053 +g25267 +g27 +sg25268 +S'Dining Room Table' +p35054 +sg25270 +S'Ernest A. Towers, Jr.' +p35055 +sa(dp35056 +g25267 +g27 +sg25268 +S'Bureau' +p35057 +sg25270 +S'Rosa Rivero' +p35058 +sa(dp35059 +g25267 +g27 +sg25268 +S'Occasional Table' +p35060 +sg25270 +S'Michael Riccitelli' +p35061 +sa(dp35062 +g25267 +g27 +sg25268 +S'Painted Wooden Chest' +p35063 +sg25270 +S'Daniel Fletcher' +p35064 +sa(dp35065 +g25267 +S'The Chippendale style is an ornate variation of Queen Anne designs. The style\r\n is named for an English cabinetmaker, Thomas Chippendale, whose volumes of plates\r\n and text, \n ' +p35066 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002ca.jpg' +p35067 +sg25268 +S'Chair' +p35068 +sg25270 +S'Bernard Gussow' +p35069 +sa(dp35070 +g25267 +g27 +sg25268 +S'Seat Table' +p35071 +sg25270 +S'Paul Poffinbarger' +p35072 +sa(dp35073 +g25267 +g27 +sg25268 +S'Hutch Dresser' +p35074 +sg25270 +S'Leslie Macklem' +p35075 +sa(dp35076 +g25267 +g27 +sg25268 +S'Bible Box' +p35077 +sg25270 +S'Alfred Koehn' +p35078 +sa(dp35079 +g25267 +S'As the popular William and Mary forms were refined to meet new demands for elegant\r\n furniture, another style evolved, named after Queen Anne, who ruled England from\r\n 1702 to 1714. American Queen Anne furniture was produced from the 1720s until about\r\n 1750 and is characterized by delicate lines, slender proportions, graceful S-curves,\r\n and handsomely carved woods. Walnut was the favored wood, but mahogany imported\r\n from the West Indies, native American cherry, and maple were also used. Jappaning\r\n continued to be popular, but natural wood, richly figured and carved, was extremely\r\n fashionable. During the Queen Anne period in America, the highboy attained its characteristic\r\n form. This highboy, made of curly maple, is surmounted by a scrolled pediment with\r\n a broken arch, called a bonnet top, a consistent feature of the highboy form. Three\r\n finials, vigorously carved in a flame design, echo the sweeping curves of the bonnet.\r\n The natural decorative quality of the figured wood is complemented by restrained\r\n shell carving on the middle drawers at both top and bottom of the case. The high\r\n chest stands on cabriole legs, that is, legs with broad outcurving knees tapering\r\n to slim incurved ankles, which spread into a pad foot. The cabriole leg was a distinctive\r\n feature developed in the Queen Anne period; its shape repeats the S-curve that\r\n dominated all Queen Anne design.\n ' +p35080 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000363.jpg' +p35081 +sg25268 +S'Highboy' +p35082 +sg25270 +S'Leonard Battee' +p35083 +sa(dp35084 +g25267 +g27 +sg25268 +S'Shaker Chair - Rocker' +p35085 +sg25270 +S'Adele Brooks' +p35086 +sa(dp35087 +g25268 +S'Covered Jar' +p35088 +sg25270 +S'Chinese Qing Dynasty' +p35089 +sg25273 +S'overall: 50.8 x 25.4 cm (20 x 10 in.)' +p35090 +sg25275 +S'\nporcelain with overglaze famille rose enamels, on gilded bronze mount' +p35091 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f69.jpg' +p35092 +sg25267 +g27 +sa(dp35093 +g25267 +g27 +sg25268 +S"Infant's High Chair" +p35094 +sg25270 +S'Mario De Ferrante' +p35095 +sa(dp35096 +g25267 +g27 +sg25268 +S'Side Chair' +p35097 +sg25270 +S'Lawrence Phillips' +p35098 +sa(dp35099 +g25267 +g27 +sg25268 +S'Keystone' +p35100 +sg25270 +S'Raymond E. Noble' +p35101 +sa(dp35102 +g25267 +g27 +sg25268 +S'Wall Painting' +p35103 +sg25270 +S'Hal Blakeley' +p35104 +sa(dp35105 +g25267 +g27 +sg25268 +S'Arched Doorway Mission San Diego' +p35106 +sg25270 +S'William Kieckhofel' +p35107 +sa(dp35108 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a000610f.jpg' +p35109 +sg25268 +S'Restoration Drawing Wall Painting and Door, Facade Mission House' +p35110 +sg25270 +S'Cornelius Christoffels' +p35111 +sa(dp35112 +g25267 +g27 +sg25268 +S'Restoration Drawing Wall Painting and Door, Facade Mission House' +p35113 +sg25270 +S'Artist Information (' +p35114 +sa(dp35115 +g25267 +g27 +sg25268 +S'Doorway, Stone' +p35116 +sg25270 +S'Juanita Donahoo' +p35117 +sa(dp35118 +g25267 +g27 +sg25268 +S'Stone Doorway, Carved' +p35119 +sg25270 +S'Cornelius Christoffels' +p35120 +sa(dp35121 +g25267 +g27 +sg25268 +S'Doorway, Stone' +p35122 +sg25270 +S'Juanita Donahoo' +p35123 +sa(dp35124 +g25268 +S'Covered Jar' +p35125 +sg25270 +S'Chinese Qing Dynasty' +p35126 +sg25273 +S'overall: 50.8 x 25.4 cm (20 x 10 in.)' +p35127 +sg25275 +S'\nporcelain with overglaze famille rose enamels, on gilded bronze mount' +p35128 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f6a.jpg' +p35129 +sg25267 +g27 +sa(dp35130 +g25267 +g27 +sg25268 +S'Stone Doorway, Carved' +p35131 +sg25270 +S'Hal Blakeley' +p35132 +sa(dp35133 +g25267 +S"Aided by the fertility of its lands, San Fernando Rey de España became one of\r\n the most prosperous missions in California. It is located between Santa Barbara\r\n and Los Angeles. In 1819, the mission owned cattle and sheep numbering twelve\r\n thousand or more, along with five hundred horses and mules. The vineyards produced\r\n as much as two thousand gallons a year of both wine and brandy. The wall painting\r\n decorated the doorway of the mission house. The hunting scene illustrated the\r\n Indian practice of decoying deer: the animal on the right is actually a deer's\r\n pelt draped over the hunter, enabling him to come within shooting distance of\r\n the creature he is stalking. Painted in red on a white ground, the design\r\n represents the native Indian style and shows affinities with hunting-culture\r\n paintings elsewhere.\n " +p35134 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000038d.jpg' +p35135 +sg25268 +S'Restoration Drawing: Wall Decoration Over Doorway, Facade of Mission-House' +p35136 +sg25270 +S'Geoffrey Holt' +p35137 +sa(dp35138 +g25267 +g27 +sg25268 +S'Restoration Drawing: Wall Decoration Over Doorway, Facade of Mission House' +p35139 +sg25270 +S'Robert W.R. Taylor' +p35140 +sa(dp35141 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a000610b.jpg' +p35142 +sg25268 +S'Restoration Drawing: Facade of Mission House' +p35143 +sg25270 +S'Geoffrey Holt' +p35144 +sa(dp35145 +g25267 +g27 +sg25268 +S'Restoration Drawing: Wall Decoration over Doorway, Facade of Mission House' +p35146 +sg25270 +S'Robert W.R. Taylor' +p35147 +sa(dp35148 +g25267 +g27 +sg25268 +S'Reconstruction of Interior' +p35149 +sg25270 +S'Artist Information (' +p35150 +sa(dp35151 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a0006112.jpg' +p35152 +sg25268 +S'Restoration Drawing: Main Doorway & Arch to Mission House' +p35153 +sg25270 +S'Artist Information (' +p35154 +sa(dp35155 +g25267 +g27 +sg25268 +S'Restoration Drawing: Main Doorway & Arch to Mission House' +p35156 +sg25270 +S'William Kieckhofel' +p35157 +sa(dp35158 +g25267 +g27 +sg25268 +S'Restoration Drawing: Detail of Arch, Main Doorway, and Door, Mission-House' +p35159 +sg25270 +S'Artist Information (' +p35160 +sa(dp35161 +g25267 +g27 +sg25268 +S'Restoration Drawing: Main Doorway, with Decorations, Mission House' +p35162 +sg25270 +S'Artist Information (' +p35163 +sa(dp35164 +g25268 +S'Covered Jar' +p35165 +sg25270 +S'Chinese Qing Dynasty' +p35166 +sg25273 +S'overall: 50.8 x 25.4 cm (20 x 10 in.)' +p35167 +sg25275 +S'\nporcelain with overglaze famille rose enamels, on gilded bronze mount' +p35168 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f6b.jpg' +p35169 +sg25267 +g27 +sa(dp35170 +g25267 +g27 +sg25268 +S'Doorway' +p35171 +sg25270 +S'Robert W.R. Taylor' +p35172 +sa(dp35173 +g25267 +g27 +sg25268 +S'Restoration Drawing: Main Doorway & Arch to Mission House' +p35174 +sg25270 +S'Robert W.R. Taylor' +p35175 +sa(dp35176 +g25267 +g27 +sg25268 +S'Restoration Drawing: Main Doorway and Arch toMission House' +p35177 +sg25270 +S'Robert W.R. Taylor' +p35178 +sa(dp35179 +g25267 +g27 +sg25268 +S'Restoration Drawing' +p35180 +sg25270 +S'Artist Information (' +p35181 +sa(dp35182 +g25267 +g27 +sg25268 +S'Wall Painting (Door)' +p35183 +sg25270 +S'William Kieckhofel' +p35184 +sa(dp35185 +g25267 +g27 +sg25268 +S'Wall Painting and Door (Interior)' +p35186 +sg25270 +S'Artist Information (' +p35187 +sa(dp35188 +g25267 +g27 +sg25268 +S'Wall Painting and Door (Interior)' +p35189 +sg25270 +S'Artist Information (' +p35190 +sa(dp35191 +g25267 +g27 +sg25268 +S'Wall Painting and Door (Interior)' +p35192 +sg25270 +S'Robert W.R. Taylor' +p35193 +sa(dp35194 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a0006110.jpg' +p35195 +sg25268 +S'Restoration Drawing: Wall Painting' +p35196 +sg25270 +S'Artist Information (' +p35197 +sa(dp35198 +g25267 +g27 +sg25268 +S'South Wall of "Governor\'s Room" at Mission' +p35199 +sg25270 +S'N.H. Yeckley' +p35200 +sa(dp35201 +g25268 +S'Beaker Vase' +p35202 +sg25270 +S'Chinese Qing Dynasty' +p35203 +sg25273 +S'overall: 34.9 x 19.1 cm (13 3/4 x 7 1/2 in.)' +p35204 +sg25275 +S'\nporcelain with overglaze famille rose enamels' +p35205 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f6c.jpg' +p35206 +sg25267 +g27 +sa(dp35207 +g25267 +g27 +sg25268 +S'Doorway' +p35208 +sg25270 +S'Dayton Brown' +p35209 +sa(dp35210 +g25267 +g27 +sg25268 +S'Doorway and Wall Painting' +p35211 +sg25270 +S'Juanita Donahoo' +p35212 +sa(dp35213 +g25267 +g27 +sg25268 +S'Doorway and Wall Painting' +p35214 +sg25270 +S'Randolph F. Miller' +p35215 +sa(dp35216 +g25267 +g27 +sg25268 +S'Doorway, Wall Painting and Doors' +p35217 +sg25270 +S'Edward Jewett' +p35218 +sa(dp35219 +g25267 +g27 +sg25268 +S'Doors' +p35220 +sg25270 +S'Edward Jewett' +p35221 +sa(dp35222 +g25267 +g27 +sg25268 +S'Chimney' +p35223 +sg25270 +S'Raymond E. Noble' +p35224 +sa(dp35225 +g25267 +g27 +sg25268 +S'Chimney' +p35226 +sg25270 +S'Raymond E. Noble' +p35227 +sa(dp35228 +g25267 +g27 +sg25268 +S'Wall Painting and Baptismal Niche' +p35229 +sg25270 +S'Juanita Donahoo' +p35230 +sa(dp35231 +g25267 +g27 +sg25268 +S'Wall Painting and Baptismal Niche' +p35232 +sg25270 +S'Harry Mann Waddell' +p35233 +sa(dp35234 +g25267 +g27 +sg25268 +S'Wall Painting and Niche: Restoration Drawing' +p35235 +sg25270 +S'George E. Rhone' +p35236 +sa(dp35237 +g25268 +S'Beaker Vase' +p35238 +sg25270 +S'Chinese Qing Dynasty' +p35239 +sg25273 +S'overall: 35.6 x 18.4 cm (14 x 7 1/4 in.)' +p35240 +sg25275 +S'\nporcelain with overglaze famille rose enamels' +p35241 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f6d.jpg' +p35242 +sg25267 +S'This vase is a part of garniture of five porcelains that conforms to the standard eighteenth-century ideal in comprising three identical covered jars and two identical beaker vases.\n (Text by Stephen Little, published in the NGA Systematic Catalogue: \n Notes

\n
\n \n ' +p35243 +sa(dp35244 +g25267 +g27 +sg25268 +S'Wall Decorations (Drawing Made from a Restoration)' +p35245 +sg25270 +S'Randolph F. Miller' +p35246 +sa(dp35247 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00112/a00112d4.jpg' +p35248 +sg25268 +S'Ceiling Decoration, Detail of (From a Restoration)' +p35249 +sg25270 +S'Randolph F. Miller' +p35250 +sa(dp35251 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a0006111.jpg' +p35252 +sg25268 +S'Restoration Drawing: Wall Decoration Over Doorway in Mission House' +p35253 +sg25270 +S'Geoffrey Holt' +p35254 +sa(dp35255 +g25267 +g27 +sg25268 +S'Statue of Santo (probably St. Dominic)' +p35256 +sg25270 +S'Juanita Donahoo' +p35257 +sa(dp35258 +g25267 +g27 +sg25268 +S'Wall Painting: Restoration Drawing' +p35259 +sg25270 +S'Edith Towner' +p35260 +sa(dp35261 +g25267 +g27 +sg25268 +S'Wall Painting' +p35262 +sg25270 +S'Edward Jewett' +p35263 +sa(dp35264 +g25267 +g27 +sg25268 +S'Wall and Ceiling Decorations' +p35265 +sg25270 +S'Randolph F. Miller' +p35266 +sa(dp35267 +g25267 +g27 +sg25268 +S'Wall Painting' +p35268 +sg25270 +S'George E. Rhone' +p35269 +sa(dp35270 +g25267 +g27 +sg25268 +S'Wall Painting' +p35271 +sg25270 +S'William McAuley' +p35272 +sa(dp35273 +g25267 +g27 +sg25268 +S'Restoration Drawing: Wall Painting Around Window, with Grille' +p35274 +sg25270 +S'Artist Information (' +p35275 +sa(dp35276 +g25268 +S'Large Fish Bowl' +p35277 +sg25270 +S'Chinese Qing Dynasty' +p35278 +sg25273 +S'overall: 43.2 x 61.6 cm (17 x 24 1/4 in.)' +p35279 +sg25275 +S'\nporcelain with blue and overglaze famille rose enamels' +p35280 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f6f.jpg' +p35281 +sg25267 +g27 +sa(dp35282 +g25267 +g27 +sg25268 +S'Wall Painting' +p35283 +sg25270 +S'George E. Rhone' +p35284 +sa(dp35285 +g25267 +g27 +sg25268 +S'Wall Painting' +p35286 +sg25270 +S'Cornelius Christoffels' +p35287 +sa(dp35288 +g25267 +g27 +sg25268 +S'Restoration Drawing: Wall Painting' +p35289 +sg25270 +S'Artist Information (' +p35290 +sa(dp35291 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a000610e.jpg' +p35292 +sg25268 +S'Restoration Drawing: Wall Painting; Door' +p35293 +sg25270 +S'Artist Information (' +p35294 +sa(dp35295 +g25267 +g27 +sg25268 +S'Wall Painting' +p35296 +sg25270 +S'Edward Jewett' +p35297 +sa(dp35298 +g25267 +g27 +sg25268 +S'Shell Top Doorway San Luis Rey Mission' +p35299 +sg25270 +S'Howard H. Sherman' +p35300 +sa(dp35301 +g25267 +S'This window from the Mission of Santa Barbara is located in the sanctuary of\r\n the church. Executed in tempera paint on plaster, the graceful floral design\r\n around the window reflects a distinctly European inspiration, in contrast to the\r\n native character of some mission painting. The painting was possibly designed\r\n by a padre, or, more probably, by a layman decorator engaged for the work. In\r\n either case, the designer would have been assisted in painting by an Indian\r\n apprentice. Originally done in about 1820, this painting was restored after\r\n the earthquake of 1925.\n ' +p35302 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000038c.jpg' +p35303 +sg25268 +S'Wall Painting' +p35304 +sg25270 +S'Edward Jewett' +p35305 +sa(dp35306 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a000610d.jpg' +p35307 +sg25268 +S'Wall Painting' +p35308 +sg25270 +S'Edward Jewett' +p35309 +sa(dp35310 +g25267 +g27 +sg25268 +S'Painted Wall Decoration, Detail of Pilaster' +p35311 +sg25270 +S'Warren W. Lemmon' +p35312 +sa(dp35313 +g25267 +g27 +sg25268 +S'Detail, Painted Decoration on Sanctuary Wall' +p35314 +sg25270 +S'Edward Jewett' +p35315 +sa(dp35316 +g25268 +S'Large Fish Bowl' +p35317 +sg25270 +S'Chinese Qing Dynasty' +p35318 +sg25273 +S'overall: 41.9 x 59.5 cm (16 1/2 x 23 7/16 in.)' +p35319 +sg25275 +S'\nporcelain with blue and overglaze famille rose enamels' +p35320 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e38.jpg' +p35321 +sg25267 +g27 +sa(dp35322 +g25267 +g27 +sg25268 +S'Details of Painted Decorations on Reredos and Walls' +p35323 +sg25270 +S'Randolph F. Miller' +p35324 +sa(dp35325 +g25267 +g27 +sg25268 +S'Pilaster and Sidewall in Church San Luis Rey Mission' +p35326 +sg25270 +S'Howard H. Sherman' +p35327 +sa(dp35328 +g25267 +g27 +sg25268 +S'Detail of Painting on Altar Panel' +p35329 +sg25270 +S'Emery Gellert' +p35330 +sa(dp35331 +g25267 +g27 +sg25268 +S'Wall Painting' +p35332 +sg25270 +S'Dana Bartlett' +p35333 +sa(dp35334 +g25267 +g27 +sg25268 +S'Wall Decoration, on Adobe Ranch House' +p35335 +sg25270 +S'Frank C. Barks' +p35336 +sa(dp35337 +g25267 +g27 +sg25268 +S'Wall Painting' +p35338 +sg25270 +S'Edward Jewett' +p35339 +sa(dp35340 +g25267 +g27 +sg25268 +S'Wall Painting (Reredos)' +p35341 +sg25270 +S'Cornelius Christoffels' +p35342 +sa(dp35343 +g25267 +g27 +sg25268 +S'Wall Painting (Reredos)' +p35344 +sg25270 +S'William McAuley' +p35345 +sa(dp35346 +g25267 +S'The interiors of Spanish colonial missions were usually decorated with wall\n paintings. Seen here are the holy water font, beam, and ceiling decoration from\n Mission San Juan Capistrano, located between modern Los Angeles and San Diego.\n Although the mission itself dates from about 1776, the decoration is a restoration\n from about 1812-1813. The font is carved sandstone and plaster. Bold, brilliant\n colors are used to create strong contrasts. In the ornamental borders the motifs\n are derived from European art but appear in simplified, almost primitive shapes.\n There was no single "mission style" of decoration in California; European, Mexican,\n and Indian influences were intermingled everywhere, and the arts found at the\n different missions were markedly individual in character.\n ' +p35347 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000038b.jpg' +p35348 +sg25268 +S'Wall and Ceiling Decorations, and Holy Water Font; Restoration Drawing' +p35349 +sg25270 +S'Randolph F. Miller' +p35350 +sa(dp35351 +g25267 +g27 +sg25268 +S'Details of Wall Paintings, Side Wall of Sanctuary' +p35352 +sg25270 +S'Randolph F. Miller' +p35353 +sa(dp35354 +g25268 +S'The Presentation of the Virgin' +p35355 +sg25270 +S'Andrea di Bartolo' +p35356 +sg25273 +S'tempera on panel' +p35357 +sg25275 +S'c. 1400' +p35358 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b10.jpg' +p35359 +sg25267 +S'Here, the young Virgin enters the same temple \r\n portico and is greeted by the same priest we saw in the first panel, \n ' +p35360 +sa(dp35361 +g25268 +S'Large Fish Bowl' +p35362 +sg25270 +S'Chinese Qing Dynasty' +p35363 +sg25273 +S'overall: 43 x 60.3 cm (16 15/16 x 23 3/4 in.)' +p35364 +sg25275 +S'\nporcelain with blue and overglaze famille rose enamels' +p35365 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e3a.jpg' +p35366 +sg25267 +g27 +sa(dp35367 +g25267 +g27 +sg25268 +S'Detail of Wall Painting' +p35368 +sg25270 +S'Randolph F. Miller' +p35369 +sa(dp35370 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p35371 +sg25270 +S'Hugh Ryan' +p35372 +sa(dp35373 +g25267 +g27 +sg25268 +S'Flower Pot' +p35374 +sg25270 +S'Anna Aloisi' +p35375 +sa(dp35376 +g25267 +g27 +sg25268 +S'Large Mug' +p35377 +sg25270 +S'Elizabeth Jones' +p35378 +sa(dp35379 +g25267 +g27 +sg25268 +S'Large Mug' +p35380 +sg25270 +S'Mina Lowry' +p35381 +sa(dp35382 +g25267 +g27 +sg25268 +S'Small Cup and Saucer' +p35383 +sg25270 +S'Harry Mann Waddell' +p35384 +sa(dp35385 +g25267 +g27 +sg25268 +S'Bowl' +p35386 +sg25270 +S'Wilford H. Shurtliff' +p35387 +sa(dp35388 +g25267 +g27 +sg25268 +S'Small Earthen Jar' +p35389 +sg25270 +S'Ludmilla Calderon' +p35390 +sa(dp35391 +g25267 +g27 +sg25268 +S'Crockery Flower Vase' +p35392 +sg25270 +S'Clyde L. Cheney' +p35393 +sa(dp35394 +g25267 +g27 +sg25268 +S'Earthen Pitcher' +p35395 +sg25270 +S'Clyde L. Cheney' +p35396 +sa(dp35397 +g25268 +S'Large Fish Bowl' +p35398 +sg25270 +S'Chinese Qing Dynasty' +p35399 +sg25273 +S'overall: 44.5 x 59.8 cm (17 1/2 x 23 9/16 in.)' +p35400 +sg25275 +S'\nporcelain with blue and overglaze famille rose enamels' +p35401 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e3c.jpg' +p35402 +sg25267 +g27 +sa(dp35403 +g25267 +g27 +sg25268 +S'Eardley Jar' +p35404 +sg25270 +S'Clyde L. Cheney' +p35405 +sa(dp35406 +g25267 +g27 +sg25268 +S'Preserving Jar' +p35407 +sg25270 +S'Clyde L. Cheney' +p35408 +sa(dp35409 +g25267 +g27 +sg25268 +S'Preserving Jar' +p35410 +sg25270 +S'Clyde L. Cheney' +p35411 +sa(dp35412 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p35413 +sg25270 +S'Wilford H. Shurtliff' +p35414 +sa(dp35415 +g25267 +g27 +sg25268 +S'Pitcher' +p35416 +sg25270 +S'Wilford H. Shurtliff' +p35417 +sa(dp35418 +g25267 +g27 +sg25268 +S'Bourganet' +p35419 +sg25270 +S'Aaron Fastovsky' +p35420 +sa(dp35421 +g25267 +g27 +sg25268 +S'Moravian Pitcher' +p35422 +sg25270 +S'Wellington Blewett' +p35423 +sa(dp35424 +g25267 +g27 +sg25268 +S'Vase' +p35425 +sg25270 +S'Charles Moss' +p35426 +sa(dp35427 +g25267 +g27 +sg25268 +S'Hen on Basket' +p35428 +sg25270 +S'J. Howard Iams' +p35429 +sa(dp35430 +g25267 +g27 +sg25268 +S'Pitcher' +p35431 +sg25270 +S'Alvin Shiren' +p35432 +sa(dp35433 +g25268 +S'Large Fish Bowl' +p35434 +sg25270 +S'Chinese Qing Dynasty' +p35435 +sg25273 +S'overall: 42.9 x 58.3 cm (16 7/8 x 22 15/16 in.)' +p35436 +sg25275 +S'\nporcelain with overglaze famille verte enamels' +p35437 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e3d.jpg' +p35438 +sg25267 +g27 +sa(dp35439 +g25267 +g27 +sg25268 +S'Bowl' +p35440 +sg25270 +S'Alfred Parys' +p35441 +sa(dp35442 +g25267 +g27 +sg25268 +S'Redware Pitcher' +p35443 +sg25270 +S'Betty Jacob' +p35444 +sa(dp35445 +g25267 +g27 +sg25268 +S'Bowl' +p35446 +sg25270 +S'Agnes Karlin' +p35447 +sa(dp35448 +g25267 +g27 +sg25268 +S'Earthenware, Jelly Mold' +p35449 +sg25270 +S'Ruth Bialostosky' +p35450 +sa(dp35451 +g25267 +g27 +sg25268 +S'"Turk\'s Head" Mold' +p35452 +sg25270 +S'Isadore Goldberg' +p35453 +sa(dp35454 +g25267 +g27 +sg25268 +S'Earthenware Pot' +p35455 +sg25270 +S'Artist Information (' +p35456 +sa(dp35457 +g25267 +g27 +sg25268 +S'Measure with Handle' +p35458 +sg25270 +S'Anna Aloisi' +p35459 +sa(dp35460 +g25267 +g27 +sg25268 +S'Jar' +p35461 +sg25270 +S'Yolande Delasser' +p35462 +sa(dp35463 +g25267 +g27 +sg25268 +S'Vase' +p35464 +sg25270 +S'Jessica Price' +p35465 +sa(dp35466 +g25267 +g27 +sg25268 +S'"Turk\'s Head" Mold' +p35467 +sg25270 +S'Isadore Goldberg' +p35468 +sa(dp35469 +g25268 +S'Large Fish Bowl' +p35470 +sg25270 +S'Chinese Qing Dynasty' +p35471 +sg25273 +S'overall: 49.7 x 56 cm (19 9/16 x 22 1/16 in.)' +p35472 +sg25275 +S'\nporcelain with overglaze famille verte enamels' +p35473 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e3e.jpg' +p35474 +sg25267 +g27 +sa(dp35475 +g25267 +g27 +sg25268 +S'Jug' +p35476 +sg25270 +S'Anna Aloisi' +p35477 +sa(dp35478 +g25267 +g27 +sg25268 +S'Churn' +p35479 +sg25270 +S'Frank Fumagalli' +p35480 +sa(dp35481 +g25267 +g27 +sg25268 +S'Pitcher' +p35482 +sg25270 +S'Richard Barnett' +p35483 +sa(dp35484 +g25267 +g27 +sg25268 +S'Asthma Jar' +p35485 +sg25270 +S'Richard Barnett' +p35486 +sa(dp35487 +g25267 +g27 +sg25268 +S'Earthenware Bowl' +p35488 +sg25270 +S'Richard Barnett' +p35489 +sa(dp35490 +g25267 +g27 +sg25268 +S'Teapot' +p35491 +sg25270 +S'Rex F. Bush' +p35492 +sa(dp35493 +g25267 +g27 +sg25268 +S'Cracker and Butter Jar' +p35494 +sg25270 +S'John Jordan' +p35495 +sa(dp35496 +g25267 +g27 +sg25268 +S'Pitcher' +p35497 +sg25270 +S'Carl Buergerniss' +p35498 +sa(dp35499 +g25267 +g27 +sg25268 +S'Wide Top Jug or Pitcher' +p35500 +sg25270 +S'Carl Buergerniss' +p35501 +sa(dp35502 +g25267 +g27 +sg25268 +S'Earthenware Mug' +p35503 +sg25270 +S'Paul Ward' +p35504 +sa(dp35505 +g25268 +S'Large Fish Bowl' +p35506 +sg25270 +S'Chinese Qing Dynasty' +p35507 +sg25273 +S'overall: 49.7 x 56 cm (19 9/16 x 22 1/16 in.)' +p35508 +sg25275 +S'\nporcelain with overglaze famille verte enamels' +p35509 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e3f.jpg' +p35510 +sg25267 +g27 +sa(dp35511 +g25267 +g27 +sg25268 +S'Earthenware Pitcher' +p35512 +sg25270 +S'Mina Lowry' +p35513 +sa(dp35514 +g25267 +g27 +sg25268 +S'Pitcher' +p35515 +sg25270 +S'Mina Lowry' +p35516 +sa(dp35517 +g25267 +g27 +sg25268 +S'Small Pitcher' +p35518 +sg25270 +S'Thomas Holloway' +p35519 +sa(dp35520 +g25267 +g27 +sg25268 +S'Preserving Crock' +p35521 +sg25270 +S'Joseph Sudek' +p35522 +sa(dp35523 +g25267 +S'At the end of the eighteenth century, English pottery factories, in hopes of regaining their rich prewar markets in America, flooded the country with cheaply made earthenware. While these imports were popular, having great decorative appeal, \n by the beginning of the nineteenth century American sentiment discouraged industrial dependence on England; American potteries were encouraged to compete for the growing domestic markets. Mass production techniques, modeled upon processes \n used in England, were brought to this country by immigrant potters. Often these immigrants brought with them as well the molds and patterns they had used at home. Thus, popular English ceramic styles and forms could be duplicated in the \n United States, satisfying the American taste for imported styles with domestically made products. The pottery centers that developed in Vermont, New Jersey, and Ohio produced a wide variety of utilitarian and decorative, or "fancy," wares \n based upon English pottery types. Close to its English prototype is this "Toby jug," which features a popular English character, Toby Fillpot, the subject of an eighteenth-century English barroom ballad. The jug, made in New Jersey, \n may have been modeled by Daniel Greatbach, an English potter who came to America in the 1830s to design molded ware for potteries in New Jersey and in Vermont.\n ' +p35524 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003ea.jpg' +p35525 +sg25268 +S'Toby Mug Set (2 pieces)' +p35526 +sg25270 +S'John Cutting' +p35527 +sa(dp35528 +g25267 +g27 +sg25268 +S'Pitcher' +p35529 +sg25270 +S'Francis Law Durand' +p35530 +sa(dp35531 +g25267 +g27 +sg25268 +S'Mug' +p35532 +sg25270 +S'Mina Lowry' +p35533 +sa(dp35534 +g25267 +g27 +sg25268 +S'Bean Pot' +p35535 +sg25270 +S'Artist Information (' +p35536 +sa(dp35537 +g25267 +g27 +sg25268 +S'Jam Crock' +p35538 +sg25270 +S'Carl Buergerniss' +p35539 +sa(dp35540 +g25267 +g27 +sg25268 +S'Cup' +p35541 +sg25270 +S'Francis Law Durand' +p35542 +sa(dp35543 +g25268 +S'Large Fish Bowl' +p35544 +sg25270 +S'Chinese Qing Dynasty' +p35545 +sg25273 +S'overall: 46.4 x 57.6 cm (18 1/4 x 22 11/16 in.)' +p35546 +sg25275 +S'\nporcelain with underglaze blue and famille verte enamels' +p35547 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e40.jpg' +p35548 +sg25267 +g27 +sa(dp35549 +g25267 +g27 +sg25268 +S'Server Dish' +p35550 +sg25270 +S'Joseph Sudek' +p35551 +sa(dp35552 +g25267 +g27 +sg25268 +S'Pitcher' +p35553 +sg25270 +S'Francis Law Durand' +p35554 +sa(dp35555 +g25267 +g27 +sg25268 +S'Pitcher (Individual Creamer)' +p35556 +sg25270 +S'Francis Law Durand' +p35557 +sa(dp35558 +g25267 +g27 +sg25268 +S'Pitcher' +p35559 +sg25270 +S'Philip Smith' +p35560 +sa(dp35561 +g25267 +g27 +sg25268 +S'Jug' +p35562 +sg25270 +S'Sydney Roberts' +p35563 +sa(dp35564 +g25267 +g27 +sg25268 +S'Jug' +p35565 +sg25270 +S'Clarence W. Dawson' +p35566 +sa(dp35567 +g25267 +g27 +sg25268 +S'Flower Urn' +p35568 +sg25270 +S'Clarence W. Dawson' +p35569 +sa(dp35570 +g25267 +g27 +sg25268 +S'Pottery Milk Jug' +p35571 +sg25270 +S'Edward Bashaw' +p35572 +sa(dp35573 +g25267 +g27 +sg25268 +S'Vase' +p35574 +sg25270 +S'Edward Bashaw' +p35575 +sa(dp35576 +g25267 +g27 +sg25268 +S'(Large) Fruit Jar' +p35577 +sg25270 +S'Robert Cole' +p35578 +sa(dp35579 +g25273 +g27 +sg25267 +g27 +sg25275 +S'19th century' +p35580 +sg25268 +S'Cut Velvet, White Ground' +p35581 +sg25270 +S'Unknown 19th Century' +p35582 +sa(dp35583 +g25267 +g27 +sg25268 +S'Pottery Jug' +p35584 +sg25270 +S'Gerald Scalise' +p35585 +sa(dp35586 +g25267 +g27 +sg25268 +S'Galena Pottery (Bowl)' +p35587 +sg25270 +S'Alfred Koehn' +p35588 +sa(dp35589 +g25267 +g27 +sg25268 +S'Pottery Pitcher' +p35590 +sg25270 +S'Bisby Finley' +p35591 +sa(dp35592 +g25267 +g27 +sg25268 +S'Galena Jug' +p35593 +sg25270 +S'Archie Thompson' +p35594 +sa(dp35595 +g25267 +g27 +sg25268 +S'Pottery Jug' +p35596 +sg25270 +S'Bisby Finley' +p35597 +sa(dp35598 +g25267 +g27 +sg25268 +S'Pottery Jug' +p35599 +sg25270 +S'Al Curry' +p35600 +sa(dp35601 +g25267 +g27 +sg25268 +S'Pottery Jar' +p35602 +sg25270 +S'Bisby Finley' +p35603 +sa(dp35604 +g25267 +g27 +sg25268 +S'Pottery Jar with Lid' +p35605 +sg25270 +S'Annie B. Johnston' +p35606 +sa(dp35607 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p35608 +sg25270 +S'Annie B. Johnston' +p35609 +sa(dp35610 +g25267 +g27 +sg25268 +S'Pottery Flower Pot' +p35611 +sg25270 +S'Annie B. Johnston' +p35612 +sa(dp35613 +g25273 +g27 +sg25267 +g27 +sg25275 +S'19th century' +p35614 +sg25268 +S'Cut Velvet, Yellow Ground' +p35615 +sg25270 +S'Unknown 19th Century' +p35616 +sa(dp35617 +g25267 +g27 +sg25268 +S'Stoneware Flower Pot' +p35618 +sg25270 +S'Annie B. Johnston' +p35619 +sa(dp35620 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p35621 +sg25270 +S'Annie B. Johnston' +p35622 +sa(dp35623 +g25267 +g27 +sg25268 +S'Pottery Flower Pot' +p35624 +sg25270 +S'Annie B. Johnston' +p35625 +sa(dp35626 +g25267 +g27 +sg25268 +S'Earthenware Jar' +p35627 +sg25270 +S'Annie B. Johnston' +p35628 +sa(dp35629 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p35630 +sg25270 +S'Annie B. Johnston' +p35631 +sa(dp35632 +g25267 +g27 +sg25268 +S'Pottery Jar with Lid' +p35633 +sg25270 +S'Annie B. Johnston' +p35634 +sa(dp35635 +g25267 +g27 +sg25268 +S'Stoneware Flower Pot' +p35636 +sg25270 +S'Annie B. Johnston' +p35637 +sa(dp35638 +g25267 +g27 +sg25268 +S'Pottery Flower Pot' +p35639 +sg25270 +S'Annie B. Johnston' +p35640 +sa(dp35641 +g25267 +g27 +sg25268 +S'Pottery Flat Bowl' +p35642 +sg25270 +S'Annie B. Johnston' +p35643 +sa(dp35644 +g25267 +g27 +sg25268 +S'Crock' +p35645 +sg25270 +S'James M. Lawson' +p35646 +sa(dp35647 +g25273 +g27 +sg25267 +g27 +sg25275 +S'19th century' +p35648 +sg25268 +S'Cut Velvet, Gold Ground' +p35649 +sg25270 +S'Unknown 19th Century' +p35650 +sa(dp35651 +g25267 +g27 +sg25268 +S'Crock' +p35652 +sg25270 +S'Artist Information (' +p35653 +sa(dp35654 +g25267 +g27 +sg25268 +S'Pitcher' +p35655 +sg25270 +S'Gordon Saltar' +p35656 +sa(dp35657 +g25267 +g27 +sg25268 +S'Pitcher' +p35658 +sg25270 +S'Gordon Saltar' +p35659 +sa(dp35660 +g25267 +g27 +sg25268 +S'Pitcher' +p35661 +sg25270 +S'George H. Alexander' +p35662 +sa(dp35663 +g25267 +g27 +sg25268 +S'Bread Tray' +p35664 +sg25270 +S'John Matulis' +p35665 +sa(dp35666 +g25267 +g27 +sg25268 +S'Meat Dish' +p35667 +sg25270 +S'Philip Smith' +p35668 +sa(dp35669 +g25267 +g27 +sg25268 +S'Pie Plate' +p35670 +sg25270 +S'Artist Information (' +p35671 +sa(dp35672 +g25267 +g27 +sg25268 +S'Pie Plate' +p35673 +sg25270 +S'Paul Ward' +p35674 +sa(dp35675 +g25267 +g27 +sg25268 +S'Plate' +p35676 +sg25270 +S'Giacinto Capelli' +p35677 +sa(dp35678 +g25267 +g27 +sg25268 +S'Plate' +p35679 +sg25270 +S'Giacinto Capelli' +p35680 +sa(dp35681 +g25273 +g27 +sg25267 +g27 +sg25275 +S'19th century' +p35682 +sg25268 +S'Cut Velvet, Blue Ground' +p35683 +sg25270 +S'Unknown 19th Century' +p35684 +sa(dp35685 +g25267 +g27 +sg25268 +S'Small Plate or Saucer' +p35686 +sg25270 +S'John Matulis' +p35687 +sa(dp35688 +g25267 +g27 +sg25268 +S'Pie Plate' +p35689 +sg25270 +S'Carl Buergerniss' +p35690 +sa(dp35691 +g25267 +g27 +sg25268 +S'Pie Plate' +p35692 +sg25270 +S'Elmer Weise' +p35693 +sa(dp35694 +g25267 +g27 +sg25268 +S'Pie Plate' +p35695 +sg25270 +S'John Matulis' +p35696 +sa(dp35697 +g25267 +g27 +sg25268 +S'Small Pie Plate' +p35698 +sg25270 +S'Carl Buergerniss' +p35699 +sa(dp35700 +g25267 +g27 +sg25268 +S'Pie Plate' +p35701 +sg25270 +S'Carl Buergerniss' +p35702 +sa(dp35703 +g25267 +g27 +sg25268 +S'Plate' +p35704 +sg25270 +S'John Dana' +p35705 +sa(dp35706 +g25267 +g27 +sg25268 +S'Pie Plate' +p35707 +sg25270 +S'Anna Aloisi' +p35708 +sa(dp35709 +g25267 +g27 +sg25268 +S'Plate' +p35710 +sg25270 +S'Yolande Delasser' +p35711 +sa(dp35712 +g25267 +g27 +sg25268 +S'Dish' +p35713 +sg25270 +S'Isadore Goldberg' +p35714 +sa(dp35715 +g25268 +S'The Nativity of the Virgin' +p35716 +sg25270 +S'Andrea di Bartolo' +p35717 +sg25273 +S'tempera on panel' +p35718 +sg25275 +S'c. 1400' +p35719 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000084e.jpg' +p35720 +sg25267 +S"In this panel—the second in a series of three paintings by this artist illustrating scenes from the life of Mary—we see Anne and the new infant being tended \r\n just after her birth. Details—such as the chicken brought to the new mother—made the Virgin \r\n approachable and brought sacred events into the realm of the viewer's \r\n own experience.\n " +p35721 +sa(dp35722 +g25273 +g27 +sg25267 +g27 +sg25275 +S'19th century' +p35723 +sg25268 +S'Velvet, Green' +p35724 +sg25270 +S'Unknown 19th Century' +p35725 +sa(dp35726 +g25267 +g27 +sg25268 +S'Pie Plate' +p35727 +sg25270 +S'Mina Lowry' +p35728 +sa(dp35729 +g25267 +g27 +sg25268 +S'Pie Plate' +p35730 +sg25270 +S'Rolland Livingstone' +p35731 +sa(dp35732 +g25267 +S'The potter has used both slip decoration and a very thin lead glaze on this pie plate. The notched edge is characteristic of New England decoration, as are the wavy lines that adorn the surface. The linear ornament was produced by "trailing on," \n or pouring slip, that is, liquid clay, directly from a bottle through a quill onto the clay body. The piece was then sprinkled lightly with powdered lead and fired.\n ' +p35733 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003e2.jpg' +p35734 +sg25268 +S'Pie Plate' +p35735 +sg25270 +S'Alfred Parys' +p35736 +sa(dp35737 +g25267 +g27 +sg25268 +S'Pottery Jug' +p35738 +sg25270 +S'Sydney Roberts' +p35739 +sa(dp35740 +g25267 +g27 +sg25268 +S'Small Pitcher' +p35741 +sg25270 +S'William Schmidt' +p35742 +sa(dp35743 +g25267 +g27 +sg25268 +S'Jug' +p35744 +sg25270 +S'Frank Fumagalli' +p35745 +sa(dp35746 +g25267 +g27 +sg25268 +S'Small Pitcher' +p35747 +sg25270 +S'Guido Metelli' +p35748 +sa(dp35749 +g25267 +g27 +sg25268 +S'Bean Pot' +p35750 +sg25270 +S'John Matulis' +p35751 +sa(dp35752 +g25267 +g27 +sg25268 +S'Jug' +p35753 +sg25270 +S'Alfred Parys' +p35754 +sa(dp35755 +g25267 +g27 +sg25268 +S'Jug' +p35756 +sg25270 +S'John Dana' +p35757 +sa(dp35758 +g25273 +g27 +sg25267 +g27 +sg25275 +S'19th century' +p35759 +sg25268 +S'Velvet, Green Ground' +p35760 +sg25270 +S'Unknown 19th Century' +p35761 +sa(dp35762 +g25267 +g27 +sg25268 +S'Jug' +p35763 +sg25270 +S'John Matulis' +p35764 +sa(dp35765 +g25267 +g27 +sg25268 +S'Creamer' +p35766 +sg25270 +S'John Matulis' +p35767 +sa(dp35768 +g25267 +g27 +sg25268 +S'Small Jug' +p35769 +sg25270 +S'Philip Smith' +p35770 +sa(dp35771 +g25267 +g27 +sg25268 +S'Covered Jar' +p35772 +sg25270 +S'John Collins' +p35773 +sa(dp35774 +g25267 +g27 +sg25268 +S'Vase' +p35775 +sg25270 +S'Alfred H. Smith' +p35776 +sa(dp35777 +g25267 +g27 +sg25268 +S'Preserve Jar' +p35778 +sg25270 +S'Clyde L. Cheney' +p35779 +sa(dp35780 +g25267 +g27 +sg25268 +S'Pottery Basket' +p35781 +sg25270 +S'J. Howard Iams' +p35782 +sa(dp35783 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p35784 +sg25270 +S'Yolande Delasser' +p35785 +sa(dp35786 +g25267 +g27 +sg25268 +S'Churn' +p35787 +sg25270 +S'Aaron Fastovsky' +p35788 +sa(dp35789 +g25267 +g27 +sg25268 +S'Apple Butter Pot' +p35790 +sg25270 +S'Nicholas Amantea' +p35791 +sa(dp35792 +g25273 +g27 +sg25267 +g27 +sg25275 +S'19th century' +p35793 +sg25268 +S'Velvet, Green Ground' +p35794 +sg25270 +S'Unknown 19th Century' +p35795 +sa(dp35796 +g25267 +g27 +sg25268 +S'Pitcher' +p35797 +sg25270 +S'Eugene Shellady' +p35798 +sa(dp35799 +g25267 +g27 +sg25268 +S'Flower Pot' +p35800 +sg25270 +S'Charles Moss' +p35801 +sa(dp35802 +g25267 +g27 +sg25268 +S'Pitcher' +p35803 +sg25270 +S'Betty Jacob' +p35804 +sa(dp35805 +g25267 +g27 +sg25268 +S'Vase' +p35806 +sg25270 +S'Giacinto Capelli' +p35807 +sa(dp35808 +g25267 +g27 +sg25268 +S'Pitcher' +p35809 +sg25270 +S'Genevieve Jordan' +p35810 +sa(dp35811 +g25267 +g27 +sg25268 +S'Pitcher' +p35812 +sg25270 +S'Henry Moran' +p35813 +sa(dp35814 +g25267 +g27 +sg25268 +S'Flower Crock' +p35815 +sg25270 +S'Robert Stewart' +p35816 +sa(dp35817 +g25267 +g27 +sg25268 +S'Pitcher' +p35818 +sg25270 +S'Henry Moran' +p35819 +sa(dp35820 +g25267 +g27 +sg25268 +S'Moravian Pitcher' +p35821 +sg25270 +S'William Ludwig' +p35822 +sa(dp35823 +g25267 +g27 +sg25268 +S'Jar' +p35824 +sg25270 +S'Carl Buergerniss' +p35825 +sa(dp35826 +g25273 +S'velvet: dyed silk warp and weft; linings (old and modern): unbleached linen, dyed silk and cotton' +p35827 +sg25267 +g27 +sg25275 +S'19th century' +p35828 +sg25268 +S'Velvet Cope, Green with Gold Lining' +p35829 +sg25270 +S'Unknown 19th Century' +p35830 +sa(dp35831 +g25267 +g27 +sg25268 +S'Flower Vase' +p35832 +sg25270 +S'Francis Law Durand' +p35833 +sa(dp35834 +g25267 +g27 +sg25268 +S'Vase' +p35835 +sg25270 +S'John Matulis' +p35836 +sa(dp35837 +g25267 +g27 +sg25268 +S'Vase' +p35838 +sg25270 +S'Nicholas Amantea' +p35839 +sa(dp35840 +g25267 +g27 +sg25268 +S'Bean Pot' +p35841 +sg25270 +S'Vincent Murphy' +p35842 +sa(dp35843 +g25267 +g27 +sg25268 +S'Spice Jar' +p35844 +sg25270 +S'John Matulis' +p35845 +sa(dp35846 +g25267 +g27 +sg25268 +S'Covered Jar' +p35847 +sg25270 +S'Alfred Parys' +p35848 +sa(dp35849 +g25267 +g27 +sg25268 +S'Snuff Jar' +p35850 +sg25270 +S'Guido Metelli' +p35851 +sa(dp35852 +g25267 +g27 +sg25268 +S'Jar with Cover' +p35853 +sg25270 +S'Guido Metelli' +p35854 +sa(dp35855 +g25267 +g27 +sg25268 +S'Preserve Jar' +p35856 +sg25270 +S'Alfred Parys' +p35857 +sa(dp35858 +g25267 +g27 +sg25268 +S'Preserve Jar' +p35859 +sg25270 +S'John Matulis' +p35860 +sa(dp35861 +g25273 +g27 +sg25267 +g27 +sg25275 +S'19th century' +p35862 +sg25268 +S'Velvet Dalmatic, Red' +p35863 +sg25270 +S'Unknown 19th Century' +p35864 +sa(dp35865 +g25267 +g27 +sg25268 +S'Melon Shaped Jar' +p35866 +sg25270 +S'American 20th Century' +p35867 +sa(dp35868 +g25267 +g27 +sg25268 +S'Cup and Saucer' +p35869 +sg25270 +S'Aaron Fastovsky' +p35870 +sa(dp35871 +g25267 +g27 +sg25268 +S'Water Cooler' +p35872 +sg25270 +S'Frank Fumagalli' +p35873 +sa(dp35874 +g25267 +g27 +sg25268 +S'Red Glazed Preserve Jar' +p35875 +sg25270 +S'Alfred Parys' +p35876 +sa(dp35877 +g25267 +g27 +sg25268 +S'Preserve Jar' +p35878 +sg25270 +S'Philip Smith' +p35879 +sa(dp35880 +g25267 +g27 +sg25268 +S'Preserve Jar' +p35881 +sg25270 +S'John Matulis' +p35882 +sa(dp35883 +g25267 +g27 +sg25268 +S'Jar' +p35884 +sg25270 +S'John Matulis' +p35885 +sa(dp35886 +g25267 +g27 +sg25268 +S'Cup' +p35887 +sg25270 +S'Aaron Fastovsky' +p35888 +sa(dp35889 +g25267 +g27 +sg25268 +S'Mug' +p35890 +sg25270 +S'Nicholas Amantea' +p35891 +sa(dp35892 +g25267 +g27 +sg25268 +S'Cup with Slip Decoration' +p35893 +sg25270 +S'John Matulis' +p35894 +sa(dp35895 +g25268 +S'T\xc3\xaate-\xc3\xa0-t\xc3\xaate' +p35896 +sg25270 +S'Fran\xc3\xa7ois Boucher' +p35897 +sg25273 +S'black chalk heightened with white on laid paper' +p35898 +sg25275 +S'1764' +p35899 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001d/a0001dc4.jpg' +p35900 +sg25267 +g27 +sa(dp35901 +g25267 +g27 +sg25268 +S'Mug with Slip Decoration' +p35902 +sg25270 +S'John Matulis' +p35903 +sa(dp35904 +g25267 +g27 +sg25268 +S'Shaving Mug' +p35905 +sg25270 +S'Mina Lowry' +p35906 +sa(dp35907 +g25267 +g27 +sg25268 +S'Tall Drinking Mug' +p35908 +sg25270 +S'American 20th Century' +p35909 +sa(dp35910 +g25267 +g27 +sg25268 +S'Drinking Cup' +p35911 +sg25270 +S'John Matulis' +p35912 +sa(dp35913 +g25267 +g27 +sg25268 +S'Drinking Cup' +p35914 +sg25270 +S'John Matulis' +p35915 +sa(dp35916 +g25267 +g27 +sg25268 +S'Bowl' +p35917 +sg25270 +S'Philip Smith' +p35918 +sa(dp35919 +g25267 +g27 +sg25268 +S'Small Vase' +p35920 +sg25270 +S'Guido Metelli' +p35921 +sa(dp35922 +g25267 +g27 +sg25268 +S'Small Bowl' +p35923 +sg25270 +S'Alfred Parys' +p35924 +sa(dp35925 +g25267 +g27 +sg25268 +S'Pie Plate' +p35926 +sg25270 +S'Agnes Karlin' +p35927 +sa(dp35928 +g25267 +g27 +sg25268 +S'Bowl' +p35929 +sg25270 +S'John Matulis' +p35930 +sa(dp35931 +g25268 +S'Young Woman in Netherlandish Dress' +p35932 +sg25270 +S'Albrecht D\xc3\xbcrer' +p35933 +sg25273 +S'brush and brown and white ink on gray-violet prepared paper' +p35934 +sg25275 +S'1521' +p35935 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00024/a0002447.jpg' +p35936 +sg25267 +g27 +sa(dp35937 +g25267 +g27 +sg25268 +S'Small Vase' +p35938 +sg25270 +S'Philip Smith' +p35939 +sa(dp35940 +g25267 +g27 +sg25268 +S'Pie Plate' +p35941 +sg25270 +S'Jules Lefevere' +p35942 +sa(dp35943 +g25267 +g27 +sg25268 +S'Curtain Tie Back' +p35944 +sg25270 +S'Frank Fumagalli' +p35945 +sa(dp35946 +g25267 +g27 +sg25268 +S'Teapot' +p35947 +sg25270 +S'Margaret Stottlemeyer' +p35948 +sa(dp35949 +g25267 +S"This soap dish is finished in a type of glaze called flint enamel, made popular by the Fenton pottery in Bennington, Vermont. A flint-enamel finish is achieved by adding colored oxides to a brown Rockingham glaze or to a clear glaze. Here \n the green tones have been produced through the use of copper oxide. In 1849, Christopher Webber Fenton patented his method of adding color to glazed surfaces; Fenton's process\n consisted of sprinkling powdered oxides on a previously glazed piece and then firing it again. In the kiln, the oxides melted and fused with the glaze, producing a lustrous, enamellike surface of the kind we see here.\n " +p35950 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003ed.jpg' +p35951 +sg25268 +S'Soap Dish and Strainer' +p35952 +sg25270 +S'Roy Williams' +p35953 +sa(dp35954 +g25267 +g27 +sg25268 +S'Bowl - Bennington' +p35955 +sg25270 +S'Charles Moss' +p35956 +sa(dp35957 +g25267 +g27 +sg25268 +S'Candlestick' +p35958 +sg25270 +S'Lawrence Porth' +p35959 +sa(dp35960 +g25267 +g27 +sg25268 +S'Stoneware Teapot' +p35961 +sg25270 +S'Arthur G. Merkley' +p35962 +sa(dp35963 +g25267 +g27 +sg25268 +S'Mug for Table Use' +p35964 +sg25270 +S'Carl Buergerniss' +p35965 +sa(dp35966 +g25267 +S'Frequently, redware was glazed to seal the surface, making the pottery less absorbent and easier to clean. Early colonial potters dusted powdered lead onto the unfired clay. Later potters often dipped the unfired ware into a liquid that \n combined powdered lead, fine sand, and water. During the firing process, the lead melted and fused with the silica in the clay to form a hard, transparent coating, or glaze. For decorative effect, manganese oxide was often added to the glaze to \n produce mottling, which ranged from brown to black. On this covered jar, you can see how the transparent glaze is enriched by splashes of dark color. The handsome surface is further enhanced by a series of incised lines that encircle the vessel \n and emphasize its roundness.\n ' +p35967 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003e1.jpg' +p35968 +sg25268 +S'Jar with Cover' +p35969 +sg25270 +S'Hedwig Emanuel' +p35970 +sa(dp35971 +g25268 +S'The Dismissal of Hagar' +p35972 +sg25270 +S'Artist Information (' +p35973 +sg25273 +S'Dutch, 1606 - 1669' +p35974 +sg25275 +S'(related artist)' +p35975 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dd0.jpg' +p35976 +sg25267 +g27 +sa(dp35977 +g25267 +g27 +sg25268 +S'Pottery Foot Warmer' +p35978 +sg25270 +S'Annie B. Johnston' +p35979 +sa(dp35980 +g25267 +S'The nineteenth century was a time of experimentation not only with novel forms, but also with a variety of glazes. Both the Norton and Fenton potteries of Bennington, Vermont, became famous for their "Rockingham" ware. \n Typically, Rockingham pottery is covered with a mottled brown glaze, made to imitate the tortoiseshell appearance of wares produced at the Marquis of Rockingham\'s pottery in England. This inhaler, or "croup kettle," \n displays the brown streaks and splotches characteristic of Rockingham glaze. The brown color is part of the glaze itself, which was spattered on the fired clay body. Variations in color were achieved by applying the glaze more heavily in some \n spots, thinning it in others, and by allowing it to streak. The glazing process permitted random and accidental effects; consequently, no two pieces of Rockingham ware were alike. Although Rockingham ware is associated primarily with Bennington, \n other American potteries also produced it. The Bennington pieces, at least until 1856, were exceptionally fine in finish because a double glaze technique was used. A glossy underglaze was applied to the clay piece. After an initial firing, the \n brown Rockingham glaze was spattered on and the piece was fired again. The result was a final glaze effect of extraordinary depth and brilliance.\n ' +p35981 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003ec.jpg' +p35982 +sg25268 +S'Inhaler' +p35983 +sg25270 +S'Yolande Delasser' +p35984 +sa(dp35985 +g25267 +g27 +sg25268 +S'Candlestick' +p35986 +sg25270 +S'Roy Williams' +p35987 +sa(dp35988 +g25267 +g27 +sg25268 +S'Shaving Mug' +p35989 +sg25270 +S'Yolande Delasser' +p35990 +sa(dp35991 +g25267 +g27 +sg25268 +S'Shaving Mug' +p35992 +sg25270 +S'Frank Fumagalli' +p35993 +sa(dp35994 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p35995 +sg25270 +S'Nicholas Amantea' +p35996 +sa(dp35997 +g25267 +g27 +sg25268 +S'Shaving Mug' +p35998 +sg25270 +S'Mina Lowry' +p35999 +sa(dp36000 +g25267 +S'Among the many unusual animal and Toby forms designed by Daniel Greatbach, pitchers of this type, with its handle in the shape of a hound, were very popular. Hound-handled pitchers are often identified with \n the Bennington, Vermont, potteries, but they were, in fact, produced by many others as well. This pitcher was probably made in Ohio, for it has the crisp shape, precise relief-molded decoration, \n and overall brown-orange glaze characteristically produced by the potteries of the Ohio River Valley.\n ' +p36001 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003eb.jpg' +p36002 +sg25268 +S'Pitcher' +p36003 +sg25270 +S'Samuel W. Ford' +p36004 +sa(dp36005 +g25267 +g27 +sg25268 +S'Pitcher' +p36006 +sg25270 +S'Giacinto Capelli' +p36007 +sa(dp36008 +g25267 +g27 +sg25268 +S'Pitcher' +p36009 +sg25270 +S'Max Soltmann' +p36010 +sa(dp36011 +g25268 +S'The Adoration of the Shepherds' +p36012 +sg25270 +S'Artist Information (' +p36013 +sg25273 +S'Dutch, 1606 - 1669' +p36014 +sg25275 +S'(related artist)' +p36015 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f39.jpg' +p36016 +sg25267 +g27 +sa(dp36017 +g25267 +g27 +sg25268 +S'Pitcher' +p36018 +sg25270 +S'J. Howard Iams' +p36019 +sa(dp36020 +g25267 +g27 +sg25268 +S'Pitcher' +p36021 +sg25270 +S'Max Soltmann' +p36022 +sa(dp36023 +g25267 +g27 +sg25268 +S'Pitcher' +p36024 +sg25270 +S'John Fisk' +p36025 +sa(dp36026 +g25267 +g27 +sg25268 +S'Pitcher' +p36027 +sg25270 +S'Giacinto Capelli' +p36028 +sa(dp36029 +g25267 +g27 +sg25268 +S'Pitcher' +p36030 +sg25270 +S'Charles Caseau' +p36031 +sa(dp36032 +g25267 +g27 +sg25268 +S'Crockery Pitcher' +p36033 +sg25270 +S'Ernest A. Towers, Jr.' +p36034 +sa(dp36035 +g25267 +g27 +sg25268 +S'Pitcher' +p36036 +sg25270 +S'M.H. McDowell' +p36037 +sa(dp36038 +g25267 +g27 +sg25268 +S'Crockery Pitcher' +p36039 +sg25270 +S'Ernest A. Towers, Jr.' +p36040 +sa(dp36041 +g25267 +g27 +sg25268 +S'Pitcher' +p36042 +sg25270 +S'John Fisk' +p36043 +sa(dp36044 +g25267 +g27 +sg25268 +S'Pitcher' +p36045 +sg25270 +S'Charles Caseau' +p36046 +sa(dp36047 +g25268 +S'Angel Standing' +p36048 +sg25270 +S'Rembrandt van Rijn' +p36049 +sg25273 +S', unknown date' +p36050 +sg25275 +S'\n' +p36051 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fce.jpg' +p36052 +sg25267 +g27 +sa(dp36053 +g25267 +g27 +sg25268 +S'Pitcher' +p36054 +sg25270 +S'Charlotte Sperber' +p36055 +sa(dp36056 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p36057 +sg25270 +S'Charles Moss' +p36058 +sa(dp36059 +g25267 +g27 +sg25268 +S'Butter Crock' +p36060 +sg25270 +S'Charles Moss' +p36061 +sa(dp36062 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p36063 +sg25270 +S'Robert Stewart' +p36064 +sa(dp36065 +g25267 +g27 +sg25268 +S'Cake Mold' +p36066 +sg25270 +S'Richard Barnett' +p36067 +sa(dp36068 +g25267 +g27 +sg25268 +S'Cake Mold' +p36069 +sg25270 +S'Charles Moss' +p36070 +sa(dp36071 +g25267 +g27 +sg25268 +S'Cake Mold' +p36072 +sg25270 +S'Randolph Atkinson' +p36073 +sa(dp36074 +g25267 +g27 +sg25268 +S"Turk's Head Baking Dish" +p36075 +sg25270 +S'John B. Moll' +p36076 +sa(dp36077 +g25267 +g27 +sg25268 +S'Mold' +p36078 +sg25270 +S'Anna Aloisi' +p36079 +sa(dp36080 +g25267 +g27 +sg25268 +S'Crockery Mold' +p36081 +sg25270 +S'William Kieckhofel' +p36082 +sa(dp36083 +g25268 +S'Joachim and the Beggars' +p36084 +sg25270 +S'Andrea di Bartolo' +p36085 +sg25273 +S'tempera on panel' +p36086 +sg25275 +S'c. 1400' +p36087 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000833.jpg' +p36088 +sg25267 +S"As devotion to the Virgin increased in the late Middle Ages, so did the \r\n legends surrounding her life. An entire cycle of stories evolved that \r\n loosely paralleled events of Christ's own birth and childhood, and they \r\n became popular subjects for artists.\n This panel, as well as \n " +p36089 +sa(dp36090 +g25268 +S'Hagar Seated at the Fountain' +p36091 +sg25270 +S'Rembrandt van Rijn' +p36092 +sg25273 +S'pen and brown ink' +p36093 +sg25275 +S'1654/1655' +p36094 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ee6.jpg' +p36095 +sg25267 +g27 +sa(dp36096 +g25267 +g27 +sg25268 +S'Posset Pot' +p36097 +sg25270 +S'Roberta Elvis' +p36098 +sa(dp36099 +g25267 +g27 +sg25268 +S'Wall Pocket for Flowers' +p36100 +sg25270 +S'Gertrude Lemberg' +p36101 +sa(dp36102 +g25267 +g27 +sg25268 +S'Stew pot' +p36103 +sg25270 +S'Joseph Sudek' +p36104 +sa(dp36105 +g25267 +g27 +sg25268 +S'Syrup Pitcher' +p36106 +sg25270 +S'William Ludwig' +p36107 +sa(dp36108 +g25267 +g27 +sg25268 +S'Rockingham Pitcher' +p36109 +sg25270 +S'Richard Barnett' +p36110 +sa(dp36111 +g25267 +g27 +sg25268 +S'Pitcher' +p36112 +sg25270 +S'Samuel O. Klein' +p36113 +sa(dp36114 +g25267 +g27 +sg25268 +S'Bennington Pitcher' +p36115 +sg25270 +S'Margaret Stottlemeyer' +p36116 +sa(dp36117 +g25267 +g27 +sg25268 +S'Ewer - Fulton Steamboat' +p36118 +sg25270 +S'George Yanosko' +p36119 +sa(dp36120 +g25267 +g27 +sg25268 +S'Rockingham Pitcher' +p36121 +sg25270 +S'Eleanor Gausser' +p36122 +sa(dp36123 +g25267 +g27 +sg25268 +S'Earthen Jug' +p36124 +sg25270 +S'Ursula Lauderdale' +p36125 +sa(dp36126 +g25268 +S'Christ before Pilate' +p36127 +sg25270 +S'Artist Information (' +p36128 +sg25273 +S'Dutch, 1606 - 1669' +p36129 +sg25275 +S'(related artist)' +p36130 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d18.jpg' +p36131 +sg25267 +g27 +sa(dp36132 +g25267 +g27 +sg25268 +S'Pitcher' +p36133 +sg25270 +S"J.J. O'Neill" +p36134 +sa(dp36135 +g25267 +g27 +sg25268 +S'Trick Drinking Mug' +p36136 +sg25270 +S'Artist Information (' +p36137 +sa(dp36138 +g25267 +g27 +sg25268 +S'Pitcher' +p36139 +sg25270 +S'Elmo Fleming' +p36140 +sa(dp36141 +g25267 +g27 +sg25268 +S'Bennington Pitcher' +p36142 +sg25270 +S'Howard H. Sherman' +p36143 +sa(dp36144 +g25267 +g27 +sg25268 +S'Pitcher' +p36145 +sg25270 +S'Ralph Atkinson' +p36146 +sa(dp36147 +g25267 +g27 +sg25268 +S'Pitcher' +p36148 +sg25270 +S'Francis Law Durand' +p36149 +sa(dp36150 +g25267 +g27 +sg25268 +S'Pitcher' +p36151 +sg25270 +S'Francis Law Durand' +p36152 +sa(dp36153 +g25267 +g27 +sg25268 +S'Cheese Pot' +p36154 +sg25270 +S'Frank Fumagalli' +p36155 +sa(dp36156 +g25267 +g27 +sg25268 +S'Napoleon Toby Mug' +p36157 +sg25270 +S'Grace Halpin' +p36158 +sa(dp36159 +g25267 +g27 +sg25268 +S'Napoleon Toby Jug' +p36160 +sg25270 +S'Eugene Shellady' +p36161 +sa(dp36162 +g25268 +S'Death and the Miser' +p36163 +sg25270 +S'Nicolaes Maes' +p36164 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p36165 +sg25275 +S'1650/1655' +p36166 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b14.jpg' +p36167 +sg25267 +g27 +sa(dp36168 +g25267 +g27 +sg25268 +S'Toby Mug' +p36169 +sg25270 +S'John Cutting' +p36170 +sa(dp36171 +g25267 +g27 +sg25268 +S'Toby Pottery Jug' +p36172 +sg25270 +S'Katharine Merrill' +p36173 +sa(dp36174 +g25267 +g27 +sg25268 +S'Brown Pottery Toby Jug' +p36175 +sg25270 +S'Dorothy Brennan' +p36176 +sa(dp36177 +g25267 +g27 +sg25268 +S'Napoleon Jug' +p36178 +sg25270 +S'Roy Moon' +p36179 +sa(dp36180 +g25267 +g27 +sg25268 +S'Toby Mug' +p36181 +sg25270 +S'John Cutting' +p36182 +sa(dp36183 +g25267 +g27 +sg25268 +S'Pottery Jug' +p36184 +sg25270 +S'George C. Brown' +p36185 +sa(dp36186 +g25267 +g27 +sg25268 +S'Demi-John Pottery' +p36187 +sg25270 +S'John Jordan' +p36188 +sa(dp36189 +g25267 +g27 +sg25268 +S'Jug' +p36190 +sg25270 +S'Yolande Delasser' +p36191 +sa(dp36192 +g25267 +g27 +sg25268 +S'Jug' +p36193 +sg25270 +S'Vincent Carano' +p36194 +sa(dp36195 +g25267 +g27 +sg25268 +S'Jug' +p36196 +sg25270 +S'Bessie Forman' +p36197 +sa(dp36198 +g25268 +S'Eliezer and Rebecca at the Well' +p36199 +sg25270 +S'Rembrandt van Rijn' +p36200 +sg25273 +S'reed pen and brown ink with brown wash and white gouache' +p36201 +sg25275 +S'1640s' +p36202 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00026/a00026e3.jpg' +p36203 +sg25267 +g27 +sa(dp36204 +g25267 +g27 +sg25268 +S'Flower Pot' +p36205 +sg25270 +S'Alfred Parys' +p36206 +sa(dp36207 +g25267 +g27 +sg25268 +S'Jug for Batter' +p36208 +sg25270 +S'Yolande Delasser' +p36209 +sa(dp36210 +g25267 +g27 +sg25268 +S'Jug for Batter' +p36211 +sg25270 +S'Yolande Delasser' +p36212 +sa(dp36213 +g25267 +g27 +sg25268 +S'Pottery Jar' +p36214 +sg25270 +S'Paul Ward' +p36215 +sa(dp36216 +g25267 +g27 +sg25268 +S'Jar' +p36217 +sg25270 +S'Charles Caseau' +p36218 +sa(dp36219 +g25267 +g27 +sg25268 +S'Pottery Piece' +p36220 +sg25270 +S'Sydney Roberts' +p36221 +sa(dp36222 +g25267 +g27 +sg25268 +S'Jar' +p36223 +sg25270 +S'Nicholas Amantea' +p36224 +sa(dp36225 +g25267 +g27 +sg25268 +S'Jar with Cover' +p36226 +sg25270 +S'Jessica Price' +p36227 +sa(dp36228 +g25267 +g27 +sg25268 +S'Flower Pot' +p36229 +sg25270 +S'Fritz Boehmer' +p36230 +sa(dp36231 +g25267 +g27 +sg25268 +S'Jug' +p36232 +sg25270 +S'John Dana' +p36233 +sa(dp36234 +g25268 +S'God the Father Supported by Angels' +p36235 +sg25270 +S'Rembrandt van Rijn' +p36236 +sg25273 +S'pen and brown ink on laid paper' +p36237 +sg25275 +S'1655/1660' +p36238 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b13.jpg' +p36239 +sg25267 +g27 +sa(dp36240 +g25267 +g27 +sg25268 +S'Flower Pot' +p36241 +sg25270 +S'James Vail' +p36242 +sa(dp36243 +g25267 +g27 +sg25268 +S'Flower Pot' +p36244 +sg25270 +S'William Spiecker' +p36245 +sa(dp36246 +g25267 +g27 +sg25268 +S'Jardiniere' +p36247 +sg25270 +S'Frank Fumagalli' +p36248 +sa(dp36249 +g25267 +g27 +sg25268 +S'Vinegar Jug' +p36250 +sg25270 +S'Francis Law Durand' +p36251 +sa(dp36252 +g25267 +g27 +sg25268 +S'Bottle' +p36253 +sg25270 +S'Charles Caseau' +p36254 +sa(dp36255 +g25267 +g27 +sg25268 +S'Spirit Flask' +p36256 +sg25270 +S'J. Herman McCollum' +p36257 +sa(dp36258 +g25267 +g27 +sg25268 +S'Bottle' +p36259 +sg25270 +S'Alfred Parys' +p36260 +sa(dp36261 +g25267 +g27 +sg25268 +S'Flask' +p36262 +sg25270 +S'Charles Caseau' +p36263 +sa(dp36264 +g25267 +g27 +sg25268 +S'Flask' +p36265 +sg25270 +S'John Fisk' +p36266 +sa(dp36267 +g25267 +g27 +sg25268 +S'Flask' +p36268 +sg25270 +S'John Fisk' +p36269 +sa(dp36270 +g25268 +S'Hannah Rejecting the Reproaches of the Prophet Eli' +p36271 +sg25270 +S'Artist Information (' +p36272 +sg25273 +S'Dutch, 1606 - 1669' +p36273 +sg25275 +S'(artist after)' +p36274 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e2d.jpg' +p36275 +sg25267 +g27 +sa(dp36276 +g25267 +g27 +sg25268 +S'Liquor Bottle' +p36277 +sg25270 +S'Charles Caseau' +p36278 +sa(dp36279 +g25267 +g27 +sg25268 +S'Bottle' +p36280 +sg25270 +S'John Matulis' +p36281 +sa(dp36282 +g25267 +g27 +sg25268 +S'Pottery Bottle' +p36283 +sg25270 +S'Willoughby Ions' +p36284 +sa(dp36285 +g25267 +g27 +sg25268 +S'Pottery Bottle' +p36286 +sg25270 +S'Willoughby Ions' +p36287 +sa(dp36288 +g25267 +g27 +sg25268 +S'Ring-shaped Pottery Bottle' +p36289 +sg25270 +S'Artist Information (' +p36290 +sa(dp36291 +g25267 +g27 +sg25268 +S'Ring Bottle' +p36292 +sg25270 +S'John Dana' +p36293 +sa(dp36294 +g25267 +g27 +sg25268 +S'Ring Bottle' +p36295 +sg25270 +S'Jessica Price' +p36296 +sa(dp36297 +g25267 +g27 +sg25268 +S'Book Flask' +p36298 +sg25270 +S'Richard Barnett' +p36299 +sa(dp36300 +g25267 +g27 +sg25268 +S'Water Bottle' +p36301 +sg25270 +S'William H. Edwards' +p36302 +sa(dp36303 +g25267 +S'In the nineteenth century, newly developed glazes often appeared on novelty forms. This coachman winebottle, an offshoot of the Toby form, was another design produced by the prolific English potter, Daniel Greatbach, while he was working at \n Bennington. Here, the fluidity of the Rockingham glaze enhances the cascading folds of the voluminous cloak. Though this piece is in the form of a wine bottle, it was intended also as a household ornament; therefore, its design is predominantly \n decorative rather than solely utilitarian.\n ' +p36304 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003ee.jpg' +p36305 +sg25268 +S'Wine Bottle' +p36306 +sg25270 +S'Al Curry' +p36307 +sa(dp36308 +g25268 +S"Jacob's Dream" +p36309 +sg25270 +S'Artist Information (' +p36310 +sg25273 +S'Dutch, 1606 - 1669' +p36311 +sg25275 +S'(related artist)' +p36312 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dfe.jpg' +p36313 +sg25267 +g27 +sa(dp36314 +g25267 +g27 +sg25268 +S'Terracotta Wine Bottle' +p36315 +sg25270 +S'Al Curry' +p36316 +sa(dp36317 +g25267 +g27 +sg25268 +S'Book Bottle' +p36318 +sg25270 +S'Yolande Delasser' +p36319 +sa(dp36320 +g25267 +g27 +sg25268 +S'Ring Bottle' +p36321 +sg25270 +S'A. Zaidenberg' +p36322 +sa(dp36323 +g25267 +g27 +sg25268 +S'Book Bottle' +p36324 +sg25270 +S'Anna Aloisi' +p36325 +sa(dp36326 +g25267 +g27 +sg25268 +S'Pottery Pig Bottle' +p36327 +sg25270 +S'Eugene W. Davis' +p36328 +sa(dp36329 +g25267 +g27 +sg25268 +S'Bird Decorations on Stoneware' +p36330 +sg25270 +S'Charles Caseau' +p36331 +sa(dp36332 +g25267 +g27 +sg25268 +S'Jar' +p36333 +sg25270 +S'Jessica Price' +p36334 +sa(dp36335 +g25267 +g27 +sg25268 +S'Jug' +p36336 +sg25270 +S'Yolande Delasser' +p36337 +sa(dp36338 +g25267 +g27 +sg25268 +S'Jug' +p36339 +sg25270 +S'Yolande Delasser' +p36340 +sa(dp36341 +g25267 +g27 +sg25268 +S'Jug' +p36342 +sg25270 +S'Yolande Delasser' +p36343 +sa(dp36344 +g25268 +S'Judas Leaving the High Priest' +p36345 +sg25270 +S'Artist Information (' +p36346 +sg25273 +S'Dutch, 1606 - 1669' +p36347 +sg25275 +S'(related artist)' +p36348 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e5d.jpg' +p36349 +sg25267 +g27 +sa(dp36350 +g25267 +g27 +sg25268 +S'Jug' +p36351 +sg25270 +S'Yolande Delasser' +p36352 +sa(dp36353 +g25267 +g27 +sg25268 +S'Decoration for Stoneware' +p36354 +sg25270 +S'A. Zimet' +p36355 +sa(dp36356 +g25267 +g27 +sg25268 +S'Decoration for Stoneware' +p36357 +sg25270 +S'A. Zimet' +p36358 +sa(dp36359 +g25267 +g27 +sg25268 +S'Decoration for Stoneware' +p36360 +sg25270 +S'A. Zimet' +p36361 +sa(dp36362 +g25267 +g27 +sg25268 +S'Decoration for Stoneware' +p36363 +sg25270 +S'A. Zimet' +p36364 +sa(dp36365 +g25267 +g27 +sg25268 +S'Crock' +p36366 +sg25270 +S'John Tarantino' +p36367 +sa(dp36368 +g25267 +g27 +sg25268 +S'Churn' +p36369 +sg25270 +S'Eugene Barrell' +p36370 +sa(dp36371 +g25267 +g27 +sg25268 +S'Churn' +p36372 +sg25270 +S'Charles Caseau' +p36373 +sa(dp36374 +g25267 +g27 +sg25268 +S'Crock' +p36375 +sg25270 +S'Yolande Delasser' +p36376 +sa(dp36377 +g25267 +g27 +sg25268 +S'Jug' +p36378 +sg25270 +S'Artist Information (' +p36379 +sa(dp36380 +g25268 +S'Lot and His Family Leaving Sodom' +p36381 +sg25270 +S'Rembrandt van Rijn' +p36382 +sg25273 +S'pen and light brown ink' +p36383 +sg25275 +S'1652/1655' +p36384 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00026/a00026eb.jpg' +p36385 +sg25267 +g27 +sa(dp36386 +g25267 +g27 +sg25268 +S'Jug' +p36387 +sg25270 +S'Yolande Delasser' +p36388 +sa(dp36389 +g25267 +g27 +sg25268 +S'Jug' +p36390 +sg25270 +S'Yolande Delasser' +p36391 +sa(dp36392 +g25267 +g27 +sg25268 +S'Crock' +p36393 +sg25270 +S'John Tarantino' +p36394 +sa(dp36395 +g25267 +g27 +sg25268 +S'Crock' +p36396 +sg25270 +S'George Loughridge' +p36397 +sa(dp36398 +g25267 +g27 +sg25268 +S'Jug' +p36399 +sg25270 +S'Yolande Delasser' +p36400 +sa(dp36401 +g25267 +g27 +sg25268 +S'Jug' +p36402 +sg25270 +S'Frank Fumagalli' +p36403 +sa(dp36404 +g25267 +g27 +sg25268 +S'Jug' +p36405 +sg25270 +S'Yolande Delasser' +p36406 +sa(dp36407 +g25267 +g27 +sg25268 +S'Jug' +p36408 +sg25270 +S'John Dana' +p36409 +sa(dp36410 +g25267 +g27 +sg25268 +S'Jar' +p36411 +sg25270 +S'George Loughridge' +p36412 +sa(dp36413 +g25267 +g27 +sg25268 +S'Crock' +p36414 +sg25270 +S'John Tarantino' +p36415 +sa(dp36416 +g25268 +S'The Betrothal of the Holy Virgin' +p36417 +sg25270 +S'Artist Information (' +p36418 +sg25273 +S'Dutch, 1606 - 1669' +p36419 +sg25275 +S'(related artist)' +p36420 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f68.jpg' +p36421 +sg25267 +g27 +sa(dp36422 +g25267 +g27 +sg25268 +S'Jug' +p36423 +sg25270 +S'Charlotte Sperber' +p36424 +sa(dp36425 +g25267 +g27 +sg25268 +S'Churn' +p36426 +sg25270 +S'John Fisk' +p36427 +sa(dp36428 +g25267 +g27 +sg25268 +S'Jar' +p36429 +sg25270 +S'Aaron Fastovsky' +p36430 +sa(dp36431 +g25267 +g27 +sg25268 +S'Jar' +p36432 +sg25270 +S'Artist Information (' +p36433 +sa(dp36434 +g25267 +g27 +sg25268 +S'Churn' +p36435 +sg25270 +S'Charles Caseau' +p36436 +sa(dp36437 +g25267 +g27 +sg25268 +S'Jug' +p36438 +sg25270 +S'Lillian Hunter' +p36439 +sa(dp36440 +g25267 +g27 +sg25268 +S'Pitcher' +p36441 +sg25270 +S'Carl Buergerniss' +p36442 +sa(dp36443 +g25267 +g27 +sg25268 +S'Stone Jug' +p36444 +sg25270 +S'Carl Buergerniss' +p36445 +sa(dp36446 +g25267 +g27 +sg25268 +S'Crock' +p36447 +sg25270 +S'John Tarantino' +p36448 +sa(dp36449 +g25267 +g27 +sg25268 +S'Three Quart Beer Pitcher' +p36450 +sg25270 +S'Carl Buergerniss' +p36451 +sa(dp36452 +g25268 +S'Mother and Child' +p36453 +sg25270 +S'Artist Information (' +p36454 +sg25273 +S'Dutch, 1606 - 1669' +p36455 +sg25275 +S'(artist after)' +p36456 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d73.jpg' +p36457 +sg25267 +g27 +sa(dp36458 +g25267 +g27 +sg25268 +S'Crock' +p36459 +sg25270 +S'Yolande Delasser' +p36460 +sa(dp36461 +g25267 +g27 +sg25268 +S'Crock' +p36462 +sg25270 +S'Charles Caseau' +p36463 +sa(dp36464 +g25267 +g27 +sg25268 +S'Jug' +p36465 +sg25270 +S'Giacinto Capelli' +p36466 +sa(dp36467 +g25267 +g27 +sg25268 +S'Jar' +p36468 +sg25270 +S'Jules Lefevere' +p36469 +sa(dp36470 +g25267 +g27 +sg25268 +S'Crock' +p36471 +sg25270 +S'John Tarantino' +p36472 +sa(dp36473 +g25267 +g27 +sg25268 +S'Crock' +p36474 +sg25270 +S'Yolande Delasser' +p36475 +sa(dp36476 +g25267 +g27 +sg25268 +S'Crock' +p36477 +sg25270 +S'Nicholas Amantea' +p36478 +sa(dp36479 +g25267 +g27 +sg25268 +S'Jug' +p36480 +sg25270 +S'Nicholas Amantea' +p36481 +sa(dp36482 +g25267 +g27 +sg25268 +S'Jug' +p36483 +sg25270 +S'Yolande Delasser' +p36484 +sa(dp36485 +g25267 +g27 +sg25268 +S'Inkwell' +p36486 +sg25270 +S'John Tarantino' +p36487 +sa(dp36488 +g25268 +S'An Oriental' +p36489 +sg25270 +S'Artist Information (' +p36490 +sg25273 +S'Dutch, 1606 - 1669' +p36491 +sg25275 +S'(related artist)' +p36492 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d44.jpg' +p36493 +sg25267 +g27 +sa(dp36494 +g25267 +g27 +sg25268 +S'Crock' +p36495 +sg25270 +S'Charlotte Sperber' +p36496 +sa(dp36497 +g25267 +g27 +sg25268 +S'Holland Gin Keg' +p36498 +sg25270 +S'Bertha Stefano' +p36499 +sa(dp36500 +g25267 +g27 +sg25268 +S'Holland Gin Keg' +p36501 +sg25270 +S'Charles Caseau' +p36502 +sa(dp36503 +g25267 +g27 +sg25268 +S'Jug' +p36504 +sg25270 +S'John Tarantino' +p36505 +sa(dp36506 +g25267 +g27 +sg25268 +S'Crock' +p36507 +sg25270 +S'John Tarantino' +p36508 +sa(dp36509 +g25267 +g27 +sg25268 +S'Two Gallon Crock' +p36510 +sg25270 +S'John Tarantino' +p36511 +sa(dp36512 +g25267 +g27 +sg25268 +S'Pot' +p36513 +sg25270 +S'Nicholas Amantea' +p36514 +sa(dp36515 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p36516 +sg25270 +S'Nicholas Amantea' +p36517 +sa(dp36518 +g25267 +g27 +sg25268 +S'Jug' +p36519 +sg25270 +S'Jessica Price' +p36520 +sa(dp36521 +g25267 +g27 +sg25268 +S'Jar' +p36522 +sg25270 +S'Yolande Delasser' +p36523 +sa(dp36524 +g25268 +S'Saskia' +p36525 +sg25270 +S'Govert Flinck' +p36526 +sg25273 +S', unknown date' +p36527 +sg25275 +S'\n' +p36528 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00025/a000251f.jpg' +p36529 +sg25267 +g27 +sa(dp36530 +g25267 +g27 +sg25268 +S'Jar' +p36531 +sg25270 +S'Yolande Delasser' +p36532 +sa(dp36533 +g25267 +g27 +sg25268 +S'Stone Storage Jar' +p36534 +sg25270 +S'Arthur G. Merkley' +p36535 +sa(dp36536 +g25267 +g27 +sg25268 +S'Jug' +p36537 +sg25270 +S'Charles Caseau' +p36538 +sa(dp36539 +g25267 +g27 +sg25268 +S'Bird Decorations on Stoneware' +p36540 +sg25270 +S'Charles Caseau' +p36541 +sa(dp36542 +g25267 +g27 +sg25268 +S'Bird Decorations on Stoneware' +p36543 +sg25270 +S'American 20th Century' +p36544 +sa(dp36545 +g25267 +g27 +sg25268 +S'Jug' +p36546 +sg25270 +S'Yolande Delasser' +p36547 +sa(dp36548 +g25267 +g27 +sg25268 +S'Bird Decorations for Stoneware' +p36549 +sg25270 +S'Charles Caseau' +p36550 +sa(dp36551 +g25267 +g27 +sg25268 +S'Jug' +p36552 +sg25270 +S'Charles Caseau' +p36553 +sa(dp36554 +g25267 +g27 +sg25268 +S'Crock' +p36555 +sg25270 +S'Yolande Delasser' +p36556 +sa(dp36557 +g25267 +g27 +sg25268 +S'Jug' +p36558 +sg25270 +S'Yolande Delasser' +p36559 +sa(dp36560 +g25268 +S'Satan Tempting Christ to Change Stones into Bread' +p36561 +sg25270 +S'Rembrandt van Rijn' +p36562 +sg25273 +S'pen and brown ink' +p36563 +sg25275 +S'1635/1640' +p36564 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037de.jpg' +p36565 +sg25267 +g27 +sa(dp36566 +g25267 +g27 +sg25268 +S'Jar' +p36567 +sg25270 +S'Yolande Delasser' +p36568 +sa(dp36569 +g25267 +g27 +sg25268 +S'Crock' +p36570 +sg25270 +S'George Loughridge' +p36571 +sa(dp36572 +g25267 +g27 +sg25268 +S'Jug' +p36573 +sg25270 +S'Nicholas Amantea' +p36574 +sa(dp36575 +g25267 +g27 +sg25268 +S'Crock' +p36576 +sg25270 +S'Elsie Wein' +p36577 +sa(dp36578 +g25267 +g27 +sg25268 +S'Jug' +p36579 +sg25270 +S'Yolande Delasser' +p36580 +sa(dp36581 +g25267 +g27 +sg25268 +S'Harvester Jug' +p36582 +sg25270 +S'Yolande Delasser' +p36583 +sa(dp36584 +g25267 +g27 +sg25268 +S'Jug' +p36585 +sg25270 +S'Charles Caseau' +p36586 +sa(dp36587 +g25267 +g27 +sg25268 +S'Crock' +p36588 +sg25270 +S'Nicholas Amantea' +p36589 +sa(dp36590 +g25267 +g27 +sg25268 +S'Crock' +p36591 +sg25270 +S'Yolande Delasser' +p36592 +sa(dp36593 +g25267 +g27 +sg25268 +S'Crock' +p36594 +sg25270 +S'Yolande Delasser' +p36595 +sa(dp36596 +g25268 +S'An Old Scholar at His Desk' +p36597 +sg25270 +S'Artist Information (' +p36598 +sg25273 +S'Dutch, 1606 - 1669' +p36599 +sg25275 +S'(related artist)' +p36600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006da2.jpg' +p36601 +sg25267 +g27 +sa(dp36602 +g25267 +g27 +sg25268 +S'Harvester Jug' +p36603 +sg25270 +S'Yolande Delasser' +p36604 +sa(dp36605 +g25267 +g27 +sg25268 +S'Crock' +p36606 +sg25270 +S'Yolande Delasser' +p36607 +sa(dp36608 +g25267 +g27 +sg25268 +S'Jar' +p36609 +sg25270 +S'Jean Peszel' +p36610 +sa(dp36611 +g25267 +g27 +sg25268 +S'Jar' +p36612 +sg25270 +S'John Dana' +p36613 +sa(dp36614 +g25267 +g27 +sg25268 +S'Crock' +p36615 +sg25270 +S'Jessica Price' +p36616 +sa(dp36617 +g25267 +g27 +sg25268 +S'Crock with Cover' +p36618 +sg25270 +S'Yolande Delasser' +p36619 +sa(dp36620 +g25267 +g27 +sg25268 +S'Gray Stoneware Crock' +p36621 +sg25270 +S'Luella Schroeder' +p36622 +sa(dp36623 +g25267 +g27 +sg25268 +S'Crock' +p36624 +sg25270 +S'John Fisk' +p36625 +sa(dp36626 +g25267 +g27 +sg25268 +S'Crock' +p36627 +sg25270 +S'George Loughridge' +p36628 +sa(dp36629 +g25267 +g27 +sg25268 +S'Crock' +p36630 +sg25270 +S'Yolande Delasser' +p36631 +sa(dp36632 +g25268 +S'Bust of an Elderly Man in a Flat Cap' +p36633 +sg25270 +S'Rembrandt van Rijn' +p36634 +sg25273 +S'pen and brown ink on laid paper' +p36635 +sg25275 +S'1635/1637' +p36636 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000708c.jpg' +p36637 +sg25267 +g27 +sa(dp36638 +g25267 +g27 +sg25268 +S'Crock' +p36639 +sg25270 +S'George Loughridge' +p36640 +sa(dp36641 +g25267 +g27 +sg25268 +S'Crock' +p36642 +sg25270 +S'Nicholas Amantea' +p36643 +sa(dp36644 +g25267 +g27 +sg25268 +S'Crock' +p36645 +sg25270 +S'John Tarantino' +p36646 +sa(dp36647 +g25267 +g27 +sg25268 +S'Jar' +p36648 +sg25270 +S'George Loughridge' +p36649 +sa(dp36650 +g25267 +g27 +sg25268 +S'Crock' +p36651 +sg25270 +S'Nicholas Amantea' +p36652 +sa(dp36653 +g25267 +g27 +sg25268 +S'Jar' +p36654 +sg25270 +S'Nicholas Amantea' +p36655 +sa(dp36656 +g25267 +g27 +sg25268 +S'Jar' +p36657 +sg25270 +S'Nicholas Amantea' +p36658 +sa(dp36659 +g25267 +g27 +sg25268 +S'Crock' +p36660 +sg25270 +S'Yolande Delasser' +p36661 +sa(dp36662 +g25267 +g27 +sg25268 +S'Crock' +p36663 +sg25270 +S'Paul Ward' +p36664 +sa(dp36665 +g25267 +g27 +sg25268 +S'Jug' +p36666 +sg25270 +S'Charles Caseau' +p36667 +sa(dp36668 +g25268 +S'Sketches from a Tavern: Woman Standing and Two Men Seated' +p36669 +sg25270 +S'Rembrandt van Rijn' +p36670 +sg25273 +S', unknown date' +p36671 +sg25275 +S'\n' +p36672 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000705c.jpg' +p36673 +sg25267 +g27 +sa(dp36674 +g25267 +g27 +sg25268 +S'Jug for Pancake Batter' +p36675 +sg25270 +S'Jessica Price' +p36676 +sa(dp36677 +g25267 +g27 +sg25268 +S'Jug' +p36678 +sg25270 +S'Yolande Delasser' +p36679 +sa(dp36680 +g25267 +g27 +sg25268 +S'Crock' +p36681 +sg25270 +S'John Tarantino' +p36682 +sa(dp36683 +g25267 +g27 +sg25268 +S'Jug' +p36684 +sg25270 +S'Nicholas Amantea' +p36685 +sa(dp36686 +g25267 +g27 +sg25268 +S'Crock' +p36687 +sg25270 +S'Yolande Delasser' +p36688 +sa(dp36689 +g25267 +g27 +sg25268 +S'Crock' +p36690 +sg25270 +S'Yolande Delasser' +p36691 +sa(dp36692 +g25267 +g27 +sg25268 +S'Crock' +p36693 +sg25270 +S'Yolande Delasser' +p36694 +sa(dp36695 +g25267 +g27 +sg25268 +S'Crock' +p36696 +sg25270 +S'John Tarantino' +p36697 +sa(dp36698 +g25267 +g27 +sg25268 +S'Crock' +p36699 +sg25270 +S'John Tarantino' +p36700 +sa(dp36701 +g25267 +g27 +sg25268 +S'Jar' +p36702 +sg25270 +S'George Loughridge' +p36703 +sa(dp36704 +g25273 +S'pen and india ink' +p36705 +sg25267 +g27 +sg25275 +S'1790' +p36706 +sg25268 +S'Le glorieux' +p36707 +sg25270 +S'Antoine Borel' +p36708 +sa(dp36709 +g25267 +g27 +sg25268 +S'Jar' +p36710 +sg25270 +S'John Tarantino' +p36711 +sa(dp36712 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p36713 +sg25270 +S'Edward D. Williams' +p36714 +sa(dp36715 +g25267 +g27 +sg25268 +S'Jar' +p36716 +sg25270 +S'John Tarantino' +p36717 +sa(dp36718 +g25267 +g27 +sg25268 +S'Jar' +p36719 +sg25270 +S'Yolande Delasser' +p36720 +sa(dp36721 +g25267 +g27 +sg25268 +S'Jar' +p36722 +sg25270 +S'John Tarantino' +p36723 +sa(dp36724 +g25267 +g27 +sg25268 +S'Crock' +p36725 +sg25270 +S'George Loughridge' +p36726 +sa(dp36727 +g25267 +g27 +sg25268 +S'Jug' +p36728 +sg25270 +S'Yolande Delasser' +p36729 +sa(dp36730 +g25267 +g27 +sg25268 +S'Crock' +p36731 +sg25270 +S'Anne Nemtzoff' +p36732 +sa(dp36733 +g25267 +g27 +sg25268 +S'Jar' +p36734 +sg25270 +S'Yolande Delasser' +p36735 +sa(dp36736 +g25267 +g27 +sg25268 +S'Jar' +p36737 +sg25270 +S'Yolande Delasser' +p36738 +sa(dp36739 +g25273 +S'bound volume with 6 drawings in pen and india ink' +p36740 +sg25267 +g27 +sg25275 +S'1790' +p36741 +sg25268 +S'Drawings for "Oeuvres de Destouche"' +p36742 +sg25270 +S'Antoine Borel' +p36743 +sa(dp36744 +g25267 +g27 +sg25268 +S'Jug for Molasses' +p36745 +sg25270 +S'Charles Caseau' +p36746 +sa(dp36747 +g25267 +g27 +sg25268 +S'Water or Cider Jug' +p36748 +sg25270 +S'Giacinto Capelli' +p36749 +sa(dp36750 +g25267 +g27 +sg25268 +S'Water or Cider Jug' +p36751 +sg25270 +S'Nicholas Amantea' +p36752 +sa(dp36753 +g25267 +g27 +sg25268 +S'Crock' +p36754 +sg25270 +S'Nicholas Amantea' +p36755 +sa(dp36756 +g25267 +g27 +sg25268 +S'Jar' +p36757 +sg25270 +S'Yolande Delasser' +p36758 +sa(dp36759 +g25267 +g27 +sg25268 +S'Inkwell' +p36760 +sg25270 +S'Charles Caseau' +p36761 +sa(dp36762 +g25267 +g27 +sg25268 +S'Stoneware Jug' +p36763 +sg25270 +S'Annie B. Johnston' +p36764 +sa(dp36765 +g25267 +g27 +sg25268 +S'Pitcher' +p36766 +sg25270 +S'John Tarantino' +p36767 +sa(dp36768 +g25267 +g27 +sg25268 +S'Jug' +p36769 +sg25270 +S'George Loughridge' +p36770 +sa(dp36771 +g25267 +g27 +sg25268 +S'Jug' +p36772 +sg25270 +S'George Loughridge' +p36773 +sa(dp36774 +g25273 +S'pen and india ink' +p36775 +sg25267 +g27 +sg25275 +S'1790' +p36776 +sg25268 +S'Le fausse Agnes, Act II, Scene 6' +p36777 +sg25270 +S'Antoine Borel' +p36778 +sa(dp36779 +g25267 +g27 +sg25268 +S'Jug' +p36780 +sg25270 +S'George Loughridge' +p36781 +sa(dp36782 +g25267 +g27 +sg25268 +S'Crock' +p36783 +sg25270 +S'Anna Aloisi' +p36784 +sa(dp36785 +g25267 +g27 +sg25268 +S'Jug' +p36786 +sg25270 +S'Yolande Delasser' +p36787 +sa(dp36788 +g25267 +g27 +sg25268 +S'Jug' +p36789 +sg25270 +S'Charles Caseau' +p36790 +sa(dp36791 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005527.jpg' +p36792 +sg25268 +S'Water Jug' +p36793 +sg25270 +S'Yolande Delasser' +p36794 +sa(dp36795 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005528.jpg' +p36796 +sg25268 +S'Water Jug' +p36797 +sg25270 +S'Yolande Delasser' +p36798 +sa(dp36799 +g25267 +g27 +sg25268 +S'Jug' +p36800 +sg25270 +S'Charles Caseau' +p36801 +sa(dp36802 +g25267 +g27 +sg25268 +S'Crock' +p36803 +sg25270 +S'Yolande Delasser' +p36804 +sa(dp36805 +g25267 +g27 +sg25268 +S'Crock' +p36806 +sg25270 +S'Charles Caseau' +p36807 +sa(dp36808 +g25267 +g27 +sg25268 +S'Vase' +p36809 +sg25270 +S'John Tarantino' +p36810 +sa(dp36811 +g25268 +S'The Crucifixion' +p36812 +sg25270 +S'Sano di Pietro' +p36813 +sg25273 +S'tempera on panel' +p36814 +sg25275 +S'c. 1445/1450' +p36815 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000767.jpg' +p36816 +sg25267 +g27 +sa(dp36817 +g25273 +S'pen and india ink' +p36818 +sg25267 +g27 +sg25275 +S'1790' +p36819 +sg25268 +S'Le fausse Agnes' +p36820 +sg25270 +S'Antoine Borel' +p36821 +sa(dp36822 +g25267 +g27 +sg25268 +S'Butter Churn' +p36823 +sg25270 +S'Giacinto Capelli' +p36824 +sa(dp36825 +g25267 +g27 +sg25268 +S'Butter Churn' +p36826 +sg25270 +S'Giacinto Capelli' +p36827 +sa(dp36828 +g25267 +g27 +sg25268 +S'Jar' +p36829 +sg25270 +S'John Tarantino' +p36830 +sa(dp36831 +g25267 +g27 +sg25268 +S'Jar' +p36832 +sg25270 +S'Charles Caseau' +p36833 +sa(dp36834 +g25267 +g27 +sg25268 +S'Crock' +p36835 +sg25270 +S'Yolande Delasser' +p36836 +sa(dp36837 +g25267 +g27 +sg25268 +S'Crock' +p36838 +sg25270 +S'Yolande Delasser' +p36839 +sa(dp36840 +g25267 +g27 +sg25268 +S'Crock' +p36841 +sg25270 +S'Charles Caseau' +p36842 +sa(dp36843 +g25267 +g27 +sg25268 +S'Jar' +p36844 +sg25270 +S'Yolande Delasser' +p36845 +sa(dp36846 +g25267 +g27 +sg25268 +S'Crock' +p36847 +sg25270 +S'Nicholas Amantea' +p36848 +sa(dp36849 +g25267 +g27 +sg25268 +S'Crock' +p36850 +sg25270 +S'Yolande Delasser' +p36851 +sa(dp36852 +g25273 +S'pen and india ink' +p36853 +sg25267 +g27 +sg25275 +S'1790' +p36854 +sg25268 +S'Le tambour nocturne' +p36855 +sg25270 +S'Antoine Borel' +p36856 +sa(dp36857 +g25267 +g27 +sg25268 +S'Crock' +p36858 +sg25270 +S'Yolande Delasser' +p36859 +sa(dp36860 +g25267 +g27 +sg25268 +S'Crock' +p36861 +sg25270 +S'Yolande Delasser' +p36862 +sa(dp36863 +g25267 +g27 +sg25268 +S'Jar' +p36864 +sg25270 +S'Charles Caseau' +p36865 +sa(dp36866 +g25267 +g27 +sg25268 +S'Jar' +p36867 +sg25270 +S'Charles Caseau' +p36868 +sa(dp36869 +g25267 +g27 +sg25268 +S'Jar' +p36870 +sg25270 +S'Charles Caseau' +p36871 +sa(dp36872 +g25267 +g27 +sg25268 +S'Jug' +p36873 +sg25270 +S'George Loughridge' +p36874 +sa(dp36875 +g25267 +g27 +sg25268 +S'Crock' +p36876 +sg25270 +S'George Loughridge' +p36877 +sa(dp36878 +g25267 +g27 +sg25268 +S'Jug' +p36879 +sg25270 +S'Francis Borelli' +p36880 +sa(dp36881 +g25267 +g27 +sg25268 +S'Jug' +p36882 +sg25270 +S'Frank Fumagalli' +p36883 +sa(dp36884 +g25267 +g27 +sg25268 +S'Jug' +p36885 +sg25270 +S'Nicholas Amantea' +p36886 +sa(dp36887 +g25268 +S'Le mari confident' +p36888 +sg25270 +S'Antoine Borel' +p36889 +sg25273 +S'pen and india ink' +p36890 +sg25275 +S'1790' +p36891 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a00062ee.jpg' +p36892 +sg25267 +g27 +sa(dp36893 +g25267 +g27 +sg25268 +S'Crock' +p36894 +sg25270 +S'Charles Caseau' +p36895 +sa(dp36896 +g25267 +g27 +sg25268 +S'Crock' +p36897 +sg25270 +S'Nicholas Amantea' +p36898 +sa(dp36899 +g25267 +g27 +sg25268 +S'Jar' +p36900 +sg25270 +S'Giacinto Capelli' +p36901 +sa(dp36902 +g25267 +g27 +sg25268 +S'Jar' +p36903 +sg25270 +S'Giacinto Capelli' +p36904 +sa(dp36905 +g25267 +g27 +sg25268 +S'Jar' +p36906 +sg25270 +S'Giacinto Capelli' +p36907 +sa(dp36908 +g25267 +g27 +sg25268 +S'Crock' +p36909 +sg25270 +S'Charles Caseau' +p36910 +sa(dp36911 +g25267 +g27 +sg25268 +S'Jar' +p36912 +sg25270 +S'Charles Caseau' +p36913 +sa(dp36914 +g25267 +g27 +sg25268 +S'Jar' +p36915 +sg25270 +S'Charles Caseau' +p36916 +sa(dp36917 +g25267 +g27 +sg25268 +S'Jar' +p36918 +sg25270 +S'Artist Information (' +p36919 +sa(dp36920 +g25267 +g27 +sg25268 +S'Jug' +p36921 +sg25270 +S'Jessica Price' +p36922 +sa(dp36923 +g25273 +S'pen and india ink' +p36924 +sg25267 +g27 +sg25275 +S'1790' +p36925 +sg25268 +S"L'archi menteur" +p36926 +sg25270 +S'Antoine Borel' +p36927 +sa(dp36928 +g25267 +g27 +sg25268 +S'Jug' +p36929 +sg25270 +S'Frank Fumagalli' +p36930 +sa(dp36931 +g25267 +g27 +sg25268 +S'Jar' +p36932 +sg25270 +S'John Tarantino' +p36933 +sa(dp36934 +g25267 +g27 +sg25268 +S'Jar' +p36935 +sg25270 +S'John Tarantino' +p36936 +sa(dp36937 +g25267 +g27 +sg25268 +S'Crock' +p36938 +sg25270 +S'Charles Caseau' +p36939 +sa(dp36940 +g25267 +g27 +sg25268 +S'Jug' +p36941 +sg25270 +S'Yolande Delasser' +p36942 +sa(dp36943 +g25267 +g27 +sg25268 +S'Jug' +p36944 +sg25270 +S'Charles Caseau' +p36945 +sa(dp36946 +g25267 +g27 +sg25268 +S'Jug' +p36947 +sg25270 +S'Charles Caseau' +p36948 +sa(dp36949 +g25267 +g27 +sg25268 +S'Jug' +p36950 +sg25270 +S'Yolande Delasser' +p36951 +sa(dp36952 +g25267 +g27 +sg25268 +S'Jug' +p36953 +sg25270 +S'Charles Caseau' +p36954 +sa(dp36955 +g25267 +g27 +sg25268 +S'Jug' +p36956 +sg25270 +S'Charles Caseau' +p36957 +sa(dp36958 +g25273 +S'pen and black ink with brown wash' +p36959 +sg25267 +g27 +sg25275 +S'1757' +p36960 +sg25268 +S'Title Page for Volume I of Boccaccio\'s "Decamerone"' +p36961 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p36962 +sa(dp36963 +g25267 +g27 +sg25268 +S'Jar' +p36964 +sg25270 +S'Charles Caseau' +p36965 +sa(dp36966 +g25267 +g27 +sg25268 +S'Jar' +p36967 +sg25270 +S'Charles Caseau' +p36968 +sa(dp36969 +g25267 +g27 +sg25268 +S'Jug' +p36970 +sg25270 +S'Charles Caseau' +p36971 +sa(dp36972 +g25267 +g27 +sg25268 +S'Jug' +p36973 +sg25270 +S'Charles Caseau' +p36974 +sa(dp36975 +g25267 +g27 +sg25268 +S'Jug' +p36976 +sg25270 +S'Charles Caseau' +p36977 +sa(dp36978 +g25267 +g27 +sg25268 +S'Jug' +p36979 +sg25270 +S'Charles Caseau' +p36980 +sa(dp36981 +g25267 +g27 +sg25268 +S'Jar' +p36982 +sg25270 +S'Yolande Delasser' +p36983 +sa(dp36984 +g25267 +g27 +sg25268 +S'Jar' +p36985 +sg25270 +S'Charles Caseau' +p36986 +sa(dp36987 +g25267 +g27 +sg25268 +S'Jar' +p36988 +sg25270 +S'Charles Caseau' +p36989 +sa(dp36990 +g25267 +g27 +sg25268 +S'Jar' +p36991 +sg25270 +S'Charles Caseau' +p36992 +sa(dp36993 +g25273 +S'French, 1699 - 1773' +p36994 +sg25267 +g27 +sg25275 +S'(artist)' +p36995 +sg25268 +S'Album of Preliminary Drawings for Boccaccio\'s "Decamerone" (1757 edition), volume I' +p36996 +sg25270 +S'Artist Information (' +p36997 +sa(dp36998 +g25267 +g27 +sg25268 +S'Jug' +p36999 +sg25270 +S'Giacinto Capelli' +p37000 +sa(dp37001 +g25267 +g27 +sg25268 +S'Teapot' +p37002 +sg25270 +S'Giacinto Capelli' +p37003 +sa(dp37004 +g25267 +g27 +sg25268 +S'Pitcher' +p37005 +sg25270 +S'Frank Fumagalli' +p37006 +sa(dp37007 +g25267 +g27 +sg25268 +S'Jug' +p37008 +sg25270 +S'Nicholas Amantea' +p37009 +sa(dp37010 +g25267 +g27 +sg25268 +S'Water Jug' +p37011 +sg25270 +S'Giacinto Capelli' +p37012 +sa(dp37013 +g25267 +g27 +sg25268 +S'Crock' +p37014 +sg25270 +S'Jessica Price' +p37015 +sa(dp37016 +g25267 +g27 +sg25268 +S'Jug' +p37017 +sg25270 +S'Yolande Delasser' +p37018 +sa(dp37019 +g25267 +g27 +sg25268 +S'Jug' +p37020 +sg25270 +S'John Fisk' +p37021 +sa(dp37022 +g25267 +g27 +sg25268 +S'Jar' +p37023 +sg25270 +S'John Tarantino' +p37024 +sa(dp37025 +g25267 +g27 +sg25268 +S'Chintz Valance for Poster Bed' +p37026 +sg25270 +S'Raymond Manupelli' +p37027 +sa(dp37028 +g25273 +S'pen and black ink with brown wash' +p37029 +sg25267 +g27 +sg25275 +S'1757' +p37030 +sg25268 +S'First Day, Frontispiece' +p37031 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p37032 +sa(dp37033 +g25267 +g27 +sg25268 +S'Jug' +p37034 +sg25270 +S'Frank Fumagalli' +p37035 +sa(dp37036 +g25267 +g27 +sg25268 +S'Crock' +p37037 +sg25270 +S'Janet Riza' +p37038 +sa(dp37039 +g25267 +g27 +sg25268 +S'Jug' +p37040 +sg25270 +S'Charles Caseau' +p37041 +sa(dp37042 +g25267 +g27 +sg25268 +S'Jug' +p37043 +sg25270 +S'Charles Caseau' +p37044 +sa(dp37045 +g25267 +g27 +sg25268 +S'Jug' +p37046 +sg25270 +S'Yolande Delasser' +p37047 +sa(dp37048 +g25267 +g27 +sg25268 +S'Jar' +p37049 +sg25270 +S'John Tarantino' +p37050 +sa(dp37051 +g25267 +g27 +sg25268 +S'Jug' +p37052 +sg25270 +S'Yolande Delasser' +p37053 +sa(dp37054 +g25267 +g27 +sg25268 +S'Jar' +p37055 +sg25270 +S'Yolande Delasser' +p37056 +sa(dp37057 +g25267 +g27 +sg25268 +S'Jar' +p37058 +sg25270 +S'John Tarantino' +p37059 +sa(dp37060 +g25267 +g27 +sg25268 +S'Jar' +p37061 +sg25270 +S'Giacinto Capelli' +p37062 +sa(dp37063 +g25273 +S'pen and black ink with brown wash' +p37064 +sg25267 +g27 +sg25275 +S'1757' +p37065 +sg25268 +S'First Day, First Story, The Confession of St. Ciapelletto' +p37066 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p37067 +sa(dp37068 +g25267 +g27 +sg25268 +S'Jar' +p37069 +sg25270 +S'Annie B. Johnston' +p37070 +sa(dp37071 +g25267 +g27 +sg25268 +S'Jar' +p37072 +sg25270 +S'Gertrude Lemberg' +p37073 +sa(dp37074 +g25267 +g27 +sg25268 +S'Jar' +p37075 +sg25270 +S'Yolande Delasser' +p37076 +sa(dp37077 +g25267 +g27 +sg25268 +S'Jug' +p37078 +sg25270 +S'Yolande Delasser' +p37079 +sa(dp37080 +g25267 +g27 +sg25268 +S'Jug' +p37081 +sg25270 +S'Yolande Delasser' +p37082 +sa(dp37083 +g25267 +g27 +sg25268 +S'Jar' +p37084 +sg25270 +S'Frank Fumagalli' +p37085 +sa(dp37086 +g25267 +g27 +sg25268 +S'Jug' +p37087 +sg25270 +S'Giacinto Capelli' +p37088 +sa(dp37089 +g25267 +g27 +sg25268 +S'Crock' +p37090 +sg25270 +S'Jessica Price' +p37091 +sa(dp37092 +g25267 +g27 +sg25268 +S'Jar' +p37093 +sg25270 +S'Yolande Delasser' +p37094 +sa(dp37095 +g25267 +g27 +sg25268 +S'Jar' +p37096 +sg25270 +S'John Dana' +p37097 +sa(dp37098 +g25273 +S'pen and black ink with brown wash' +p37099 +sg25267 +g27 +sg25275 +S'1757' +p37100 +sg25268 +S'First Day, Third Story, Melchizedeck and the Three Rings' +p37101 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p37102 +sa(dp37103 +g25267 +g27 +sg25268 +S'Jug and Decoration' +p37104 +sg25270 +S'Yolande Delasser' +p37105 +sa(dp37106 +g25267 +g27 +sg25268 +S'Crock' +p37107 +sg25270 +S'Ada V. May' +p37108 +sa(dp37109 +g25267 +g27 +sg25268 +S'Crock' +p37110 +sg25270 +S'John Tarantino' +p37111 +sa(dp37112 +g25267 +g27 +sg25268 +S'Crock' +p37113 +sg25270 +S'John Tarantino' +p37114 +sa(dp37115 +g25267 +g27 +sg25268 +S'Stoneware Jug' +p37116 +sg25270 +S'Arthur Mathews' +p37117 +sa(dp37118 +g25267 +g27 +sg25268 +S'Stoneware Jug' +p37119 +sg25270 +S'Arthur Mathews' +p37120 +sa(dp37121 +g25267 +g27 +sg25268 +S'Jug' +p37122 +sg25270 +S'Yolande Delasser' +p37123 +sa(dp37124 +g25267 +g27 +sg25268 +S'Jug' +p37125 +sg25270 +S'Arthur Mathews' +p37126 +sa(dp37127 +g25267 +g27 +sg25268 +S'Crock' +p37128 +sg25270 +S'Giacinto Capelli' +p37129 +sa(dp37130 +g25267 +g27 +sg25268 +S'Jug' +p37131 +sg25270 +S'Giacinto Capelli' +p37132 +sa(dp37133 +g25273 +S'graphite' +p37134 +sg25267 +g27 +sg25275 +S'1757' +p37135 +sg25268 +S"First Day, Fourth Story, The Abbot, the Monk and the Peasant's Daughter" +p37136 +sg25270 +S'Charles Eisen' +p37137 +sa(dp37138 +g25267 +g27 +sg25268 +S'Jug' +p37139 +sg25270 +S'Jean Peszel' +p37140 +sa(dp37141 +g25267 +g27 +sg25268 +S'Jug' +p37142 +sg25270 +S'Frank Fumagalli' +p37143 +sa(dp37144 +g25267 +g27 +sg25268 +S'Jug' +p37145 +sg25270 +S'Yolande Delasser' +p37146 +sa(dp37147 +g25267 +g27 +sg25268 +S'Crock' +p37148 +sg25270 +S'Nicholas Amantea' +p37149 +sa(dp37150 +g25267 +g27 +sg25268 +S'Crock' +p37151 +sg25270 +S'Yolande Delasser' +p37152 +sa(dp37153 +g25267 +g27 +sg25268 +S'Jug' +p37154 +sg25270 +S'Charles Caseau' +p37155 +sa(dp37156 +g25267 +g27 +sg25268 +S'Crock' +p37157 +sg25270 +S'Yolande Delasser' +p37158 +sa(dp37159 +g25267 +g27 +sg25268 +S'Jug' +p37160 +sg25270 +S'Frank Fumagalli' +p37161 +sa(dp37162 +g25267 +g27 +sg25268 +S'Water Pitcher' +p37163 +sg25270 +S'Jessie M. Youngs' +p37164 +sa(dp37165 +g25267 +g27 +sg25268 +S'Water Pitcher' +p37166 +sg25270 +S'Jessie M. Youngs' +p37167 +sa(dp37168 +g25273 +S'pen and black ink with brown wash' +p37169 +sg25267 +g27 +sg25275 +S'1757' +p37170 +sg25268 +S'First Day, Fifth Story, The Dinner of Chickens' +p37171 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p37172 +sa(dp37173 +g25267 +g27 +sg25268 +S'Water Pitcher' +p37174 +sg25270 +S'Jessie M. Youngs' +p37175 +sa(dp37176 +g25267 +g27 +sg25268 +S'Wall Painting' +p37177 +sg25270 +S'Gerald Transpota' +p37178 +sa(dp37179 +g25267 +g27 +sg25268 +S'Ceiling of Baptistry Niche, Mission Dolores' +p37180 +sg25270 +S'Hilda Olson' +p37181 +sa(dp37182 +g25267 +g27 +sg25268 +S'Pilaster with Holy Water-Font & Arch Below Choir Loft' +p37183 +sg25270 +S'Howard H. Sherman' +p37184 +sa(dp37185 +g25267 +g27 +sg25268 +S'La Purisima Mission - Restored in 1941' +p37186 +sg25270 +S'William Kieckhofel' +p37187 +sa(dp37188 +g25267 +g27 +sg25268 +S'Side Altar, San Luis Rey Mission' +p37189 +sg25270 +S'William Kieckhofel' +p37190 +sa(dp37191 +g25267 +g27 +sg25268 +S'Side Altar, San Luis Rey Mission' +p37192 +sg25270 +S'Howard H. Sherman' +p37193 +sa(dp37194 +g25267 +g27 +sg25268 +S'Pulpit and Wall Painting' +p37195 +sg25270 +S'Randolph F. Miller' +p37196 +sa(dp37197 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a000610c.jpg' +p37198 +sg25268 +S'Reredos and Wall Paintings' +p37199 +sg25270 +S'Randolph F. Miller' +p37200 +sa(dp37201 +g25267 +g27 +sg25268 +S'Decorations on Reredos and Sanctuary Walls' +p37202 +sg25270 +S'William Kieckhofel' +p37203 +sa(dp37204 +g25273 +S'graphite' +p37205 +sg25267 +g27 +sg25275 +S'1757' +p37206 +sg25268 +S'First Day, Sixth Story, Hypocrisy of the Clergy Reproved' +p37207 +sg25270 +S'Charles Eisen' +p37208 +sa(dp37209 +g25267 +g27 +sg25268 +S'Painted Ceiling Decorations' +p37210 +sg25270 +S'Randolph F. Miller' +p37211 +sa(dp37212 +g25267 +g27 +sg25268 +S'Ceiling Decorations' +p37213 +sg25270 +S'William Kieckhofel' +p37214 +sa(dp37215 +g25267 +g27 +sg25268 +S'Ceiling Decoration' +p37216 +sg25270 +S'William Kieckhofel' +p37217 +sa(dp37218 +g25267 +g27 +sg25268 +S'Ceiling Decoration' +p37219 +sg25270 +S'William Kieckhofel' +p37220 +sa(dp37221 +g25267 +g27 +sg25268 +S'Wall Painting' +p37222 +sg25270 +S'George E. Rhone' +p37223 +sa(dp37224 +g25267 +g27 +sg25268 +S'Restoration Drawing: Wall Painting' +p37225 +sg25270 +S'William McAuley' +p37226 +sa(dp37227 +g25267 +g27 +sg25268 +S'Wall Painting (Fragment)' +p37228 +sg25270 +S'William Kieckhofel' +p37229 +sa(dp37230 +g25267 +g27 +sg25268 +S'Wall Painting, Restoration Drawing from Reassembled Fragments' +p37231 +sg25270 +S'Gerald Transpota' +p37232 +sa(dp37233 +g25267 +g27 +sg25268 +S'Wall Painting (Restoration Drawing)' +p37234 +sg25270 +S'Raymond E. Noble' +p37235 +sa(dp37236 +g25267 +g27 +sg25268 +S'Keystone, Painted' +p37237 +sg25270 +S'Randolph F. Miller' +p37238 +sa(dp37239 +g25273 +S'graphite' +p37240 +sg25267 +g27 +sg25275 +S'1757' +p37241 +sg25268 +S"First Day, Seventh Story, Cane della Scala's Avarice Reproved" +p37242 +sg25270 +S'Charles Eisen' +p37243 +sa(dp37244 +g25267 +g27 +sg25268 +S'Ceiling Ornament' +p37245 +sg25270 +S'Dana Bartlett' +p37246 +sa(dp37247 +g25267 +g27 +sg25268 +S'Wall Painting, Pineapple Motif' +p37248 +sg25270 +S'Ruth Buker' +p37249 +sa(dp37250 +g25267 +g27 +sg25268 +S'Wall Painting, Pineapple' +p37251 +sg25270 +S'Ruth Buker' +p37252 +sa(dp37253 +g25267 +g27 +sg25268 +S'Wood Grille' +p37254 +sg25270 +S'Albert Pratt' +p37255 +sa(dp37256 +g25267 +g27 +sg25268 +S'Window Shutters and Details' +p37257 +sg25270 +S'William Kieckhofel' +p37258 +sa(dp37259 +g25267 +g27 +sg25268 +S'Grille and Mission-House Window (Interior)' +p37260 +sg25270 +S'Geoffrey Holt' +p37261 +sa(dp37262 +g25267 +g27 +sg25268 +S'Window Recess, and Casement Details' +p37263 +sg25270 +S'Geoffrey Holt' +p37264 +sa(dp37265 +g25267 +g27 +sg25268 +S'Lintel, over Cemetery Gateway' +p37266 +sg25270 +S'Albert Pratt' +p37267 +sa(dp37268 +g25267 +g27 +sg25268 +S'Aurora, from Behind Saint' +p37269 +sg25270 +S'Cornelius Christoffels' +p37270 +sa(dp37271 +g25267 +g27 +sg25268 +S'Window in Choir Loft Looking South San Luis Rey Mission' +p37272 +sg25270 +S'Howard H. Sherman' +p37273 +sa(dp37274 +g25273 +S'pen and black ink with brown wash' +p37275 +sg25267 +g27 +sg25275 +S'1757' +p37276 +sg25268 +S"First Day, Eighth Story, Ermino di Grimaldi's Covetousness Checked" +p37277 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p37278 +sa(dp37279 +g25267 +g27 +sg25268 +S'Vigas' +p37280 +sg25270 +S'Margery Parish' +p37281 +sa(dp37282 +g25267 +g27 +sg25268 +S'Chancel Railing' +p37283 +sg25270 +S'Hal Blakeley' +p37284 +sa(dp37285 +g25267 +g27 +sg25268 +S'Screen, for Choir' +p37286 +sg25270 +S'Edith Towner' +p37287 +sa(dp37288 +g25267 +g27 +sg25268 +S'Lunette from Altar-Church at Llano Quemado Altar Rail-Church at Sanctuario, Chimayo' +p37289 +sg25270 +S'E. Boyd' +p37290 +sa(dp37291 +g25267 +g27 +sg25268 +S'Steps Leading to Chancel Rail and Detail of Railing, San Luis Rey Mission Church' +p37292 +sg25270 +S'Howard H. Sherman' +p37293 +sa(dp37294 +g25267 +g27 +sg25268 +S'Choir Rail' +p37295 +sg25270 +S'William Kieckhofel' +p37296 +sa(dp37297 +g25267 +g27 +sg25268 +S'Railing, Detail of' +p37298 +sg25270 +S'George E. Rhone' +p37299 +sa(dp37300 +g25267 +g27 +sg25268 +S'Basket' +p37301 +sg25270 +S'Gordena Jackson' +p37302 +sa(dp37303 +g25267 +g27 +sg25268 +S'Basket Tray' +p37304 +sg25270 +S'Gordena Jackson' +p37305 +sa(dp37306 +g25267 +g27 +sg25268 +S'Corbel' +p37307 +sg25270 +S'Harry Mann Waddell' +p37308 +sa(dp37309 +g25273 +S'pen and black ink with brown wash' +p37310 +sg25267 +g27 +sg25275 +S'1757' +p37311 +sg25268 +S"First Day, Ninth Story, The King of Cyprus's Reformation" +p37312 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p37313 +sa(dp37314 +g25267 +g27 +sg25268 +S'Corbel' +p37315 +sg25270 +S'Edith Towner' +p37316 +sa(dp37317 +g25267 +g27 +sg25268 +S'Painted Wall-stand for Flowers, etc.' +p37318 +sg25270 +S'Hal Blakeley' +p37319 +sa(dp37320 +g25267 +g27 +sg25268 +S'Corbel and Ceiling Beam' +p37321 +sg25270 +S'Cornelius Christoffels' +p37322 +sa(dp37323 +g25267 +g27 +sg25268 +S'Original Outside Door to Sacristy' +p37324 +sg25270 +S'Geoffrey Holt' +p37325 +sa(dp37326 +g25267 +g27 +sg25268 +S'Old Paneled Door: Outside Door to Monastery' +p37327 +sg25270 +S'Geoffrey Holt' +p37328 +sa(dp37329 +g25267 +g27 +sg25268 +S'Old Paneled Doors: Main Entrance to Monastery' +p37330 +sg25270 +S'Geoffrey Holt' +p37331 +sa(dp37332 +g25267 +g27 +sg25268 +S'Original Wooden Shutters from Monastery' +p37333 +sg25270 +S'Geoffrey Holt' +p37334 +sa(dp37335 +g25267 +g27 +sg25268 +S'One of Original Inside Doors to Sacristy' +p37336 +sg25270 +S'Geoffrey Holt' +p37337 +sa(dp37338 +g25267 +g27 +sg25268 +S'Sacristy Door' +p37339 +sg25270 +S'Geoffrey Holt' +p37340 +sa(dp37341 +g25267 +g27 +sg25268 +S'Restoration Drawing of Original "Needle\'s Eye"Doors, Formerly Main Entrance Doors of' +p37342 +sg25270 +S'Geoffrey Holt' +p37343 +sa(dp37344 +g25273 +S'graphite' +p37345 +sg25267 +g27 +sg25275 +S'1757' +p37346 +sg25268 +S'First Day, Tenth Story, Maestro Alberto da Bologna' +p37347 +sg25270 +S'Charles-Nicolas Cochin II' +p37348 +sa(dp37349 +g25267 +g27 +sg25268 +S'Original Inside Door to Sacristy' +p37350 +sg25270 +S'Geoffrey Holt' +p37351 +sa(dp37352 +g25267 +g27 +sg25268 +S'Sacristy Door' +p37353 +sg25270 +S'Geoffrey Holt' +p37354 +sa(dp37355 +g25267 +g27 +sg25268 +S'Grille Doors of Wood' +p37356 +sg25270 +S'Harry Mann Waddell' +p37357 +sa(dp37358 +g25267 +g27 +sg25268 +S'Iron Hinges on Door' +p37359 +sg25270 +S'Bertha Semple' +p37360 +sa(dp37361 +g25267 +g27 +sg25268 +S'Wooden Cabinet Doors' +p37362 +sg25270 +S'Rose Campbell-Gerke' +p37363 +sa(dp37364 +g25267 +g27 +sg25268 +S'Cabinet Doors at Mission San Jose de Guadalupe' +p37365 +sg25270 +S'Bertha Semple' +p37366 +sa(dp37367 +g25267 +g27 +sg25268 +S'Two Wall Doors' +p37368 +sg25270 +S'Majel G. Claflin' +p37369 +sa(dp37370 +g25267 +g27 +sg25268 +S'Sacristy Door at Mission San Juan Bautista' +p37371 +sg25270 +S'Ethel Dougan' +p37372 +sa(dp37373 +g25267 +g27 +sg25268 +S'Ornamental Gate to Nave of Church' +p37374 +sg25270 +S'Randolph F. Miller' +p37375 +sa(dp37376 +g25267 +g27 +sg25268 +S'Doors to Baptistry - Mission San Juan Bautista' +p37377 +sg25270 +S'Ethel Dougan' +p37378 +sa(dp37379 +g25273 +S'pen and black ink with brown wash' +p37380 +sg25267 +g27 +sg25275 +S'1757' +p37381 +sg25268 +S'Second Day, Frontispiece' +p37382 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p37383 +sa(dp37384 +g25267 +g27 +sg25268 +S'Doors to Confessional' +p37385 +sg25270 +S'Ethel Dougan' +p37386 +sa(dp37387 +g25267 +g27 +sg25268 +S'Painted Wooden Shutter' +p37388 +sg25270 +S'Edward Jewett' +p37389 +sa(dp37390 +g25267 +g27 +sg25268 +S'Doors (Inside View)' +p37391 +sg25270 +S'Geoffrey Holt' +p37392 +sa(dp37393 +g25267 +g27 +sg25268 +S'Doorway and Doors' +p37394 +sg25270 +S'R.J. De Freitas' +p37395 +sa(dp37396 +g25267 +g27 +sg25268 +S'Carved Stone Arch Over Doorway' +p37397 +sg25270 +S'Emile Cero' +p37398 +sa(dp37399 +g25267 +g27 +sg25268 +S'Mission Church Doorway' +p37400 +sg25270 +S'Harry Mann Waddell' +p37401 +sa(dp37402 +g25267 +g27 +sg25268 +S'Mission Church Doors and Doorway' +p37403 +sg25270 +S'Artist Information (' +p37404 +sa(dp37405 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p37406 +sg25270 +S'Ernest Busenbark' +p37407 +sa(dp37408 +g25267 +g27 +sg25268 +S'Archway' +p37409 +sg25270 +S'Rose Campbell-Gerke' +p37410 +sa(dp37411 +g25267 +g27 +sg25268 +S'Hardware Details (of doors)' +p37412 +sg25270 +S'Geoffrey Holt' +p37413 +sa(dp37414 +g25273 +S'pen and black ink with brown wash' +p37415 +sg25267 +g27 +sg25275 +S'1757' +p37416 +sg25268 +S'Second Day, First Story, Martellino Feigns Himself a Cripple' +p37417 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p37418 +sa(dp37419 +g25267 +g27 +sg25268 +S'Carved Stone Doorway, Mission San Carlos Borromeo' +p37420 +sg25270 +S'Gordena Jackson' +p37421 +sa(dp37422 +g25267 +g27 +sg25268 +S'Church Doors' +p37423 +sg25270 +S'Dayton Brown' +p37424 +sa(dp37425 +g25267 +g27 +sg25268 +S'Church Door (Interior)' +p37426 +sg25270 +S'Dayton Brown' +p37427 +sa(dp37428 +g25267 +g27 +sg25268 +S'Chapel Doors' +p37429 +sg25270 +S'William McAuley' +p37430 +sa(dp37431 +g25267 +g27 +sg25268 +S'Door, Facade of Mission House' +p37432 +sg25270 +S'Artist Information (' +p37433 +sa(dp37434 +g25267 +g27 +sg25268 +S'Wall Bracket (Ecclesiastical)' +p37435 +sg25270 +S'Edward Jewett' +p37436 +sa(dp37437 +g25267 +g27 +sg25268 +S'Bracket, for Wall (Ecclesiastical)' +p37438 +sg25270 +S'Hal Blakeley' +p37439 +sa(dp37440 +g25267 +g27 +sg25268 +S'Architectural Detail (Wall Brackets)' +p37441 +sg25270 +S'William Kieckhofel' +p37442 +sa(dp37443 +g25267 +g27 +sg25268 +S'Architectural Detail (Wall Bracket)' +p37444 +sg25270 +S'Dana Bartlett' +p37445 +sa(dp37446 +g25267 +g27 +sg25268 +S'Wall Bracket (Ecclesiastical)' +p37447 +sg25270 +S'Dayton Brown' +p37448 +sa(dp37449 +g25268 +S"Second Day, Second Story: Rinaldo d'Asti and the Widow" +p37450 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p37451 +sg25273 +S'pen and gray ink with brown wash on laid paper' +p37452 +sg25275 +S'c. 1757' +p37453 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a00060d4.jpg' +p37454 +sg25267 +g27 +sa(dp37455 +g25267 +g27 +sg25268 +S'Wall Bracket, (Ecclesiastical)' +p37456 +sg25270 +S'Edward Jewett' +p37457 +sa(dp37458 +g25267 +g27 +sg25268 +S'Wall Bracket (Eccleasiastical)' +p37459 +sg25270 +S'Edward Jewett' +p37460 +sa(dp37461 +g25267 +g27 +sg25268 +S'Antependium of Altar' +p37462 +sg25270 +S'Edward Jewett' +p37463 +sa(dp37464 +g25267 +g27 +sg25268 +S'Antependium of Altar' +p37465 +sg25270 +S'Edward Jewett' +p37466 +sa(dp37467 +g25267 +g27 +sg25268 +S'Altar for Chinese Temple' +p37468 +sg25270 +S'Vera Van Voris' +p37469 +sa(dp37470 +g25267 +g27 +sg25268 +S'Baptismal Font and Stand' +p37471 +sg25270 +S'William Kieckhofel' +p37472 +sa(dp37473 +g25267 +g27 +sg25268 +S'Baptismal Font and Stand' +p37474 +sg25270 +S'Hal Blakeley' +p37475 +sa(dp37476 +g25267 +g27 +sg25268 +S'Stand for Baptismal Font' +p37477 +sg25270 +S'Edward Jewett' +p37478 +sa(dp37479 +g25267 +g27 +sg25268 +S'Baptismal Font' +p37480 +sg25270 +S'Artist Information (' +p37481 +sa(dp37482 +g25267 +g27 +sg25268 +S'Baptismal Font, Cover' +p37483 +sg25270 +S'Artist Information (' +p37484 +sa(dp37485 +g25273 +S'pen and black ink with brown wash' +p37486 +sg25267 +g27 +sg25275 +S'1757' +p37487 +sg25268 +S"Second Day, Third Story, The King of England's Daughter Disguised as an Abbe" +p37488 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p37489 +sa(dp37490 +g25267 +g27 +sg25268 +S'Chandelier' +p37491 +sg25270 +S'Edward Jewett' +p37492 +sa(dp37493 +g25267 +g27 +sg25268 +S'Chandelier' +p37494 +sg25270 +S'Cornelius Christoffels' +p37495 +sa(dp37496 +g25267 +g27 +sg25268 +S'Candlestick' +p37497 +sg25270 +S'Cornelius Christoffels' +p37498 +sa(dp37499 +g25267 +g27 +sg25268 +S'Candlestick' +p37500 +sg25270 +S'Cornelius Christoffels' +p37501 +sa(dp37502 +g25267 +g27 +sg25268 +S'Candlestick (Ecclesiastical)' +p37503 +sg25270 +S'Albert Pratt' +p37504 +sa(dp37505 +g25267 +g27 +sg25268 +S'Candlestick (Ecclesiastical)' +p37506 +sg25270 +S'Edward Jewett' +p37507 +sa(dp37508 +g25267 +g27 +sg25268 +S'Candleholder (Ecclesiastical)' +p37509 +sg25270 +S'Edward Jewett' +p37510 +sa(dp37511 +g25267 +g27 +sg25268 +S'Tenebrae Candelabra' +p37512 +sg25270 +S'David P Willoughby' +p37513 +sa(dp37514 +g25267 +g27 +sg25268 +S'Wooden Candlestick' +p37515 +sg25270 +S'David P Willoughby' +p37516 +sa(dp37517 +g25267 +g27 +sg25268 +S'Carved Wooden Candleholder' +p37518 +sg25270 +S'Vera Van Voris' +p37519 +sa(dp37520 +g25273 +S'pen and black ink with brown wash' +p37521 +sg25267 +g27 +sg25275 +S'1757' +p37522 +sg25268 +S'Second Day, Fourth Story, Landolfo Ruffolo Becomes a Pirate' +p37523 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p37524 +sa(dp37525 +g25267 +g27 +sg25268 +S'Confessional' +p37526 +sg25270 +S'William Kieckhofel' +p37527 +sa(dp37528 +g25267 +g27 +sg25268 +S'Detail of Confessional' +p37529 +sg25270 +S'Harry Mann Waddell' +p37530 +sa(dp37531 +g25267 +g27 +sg25268 +S'Detail, Front of Confessional' +p37532 +sg25270 +S'William Kieckhofel' +p37533 +sa(dp37534 +g25267 +g27 +sg25268 +S'Detail, Side of Confessional' +p37535 +sg25270 +S'Harry Mann Waddell' +p37536 +sa(dp37537 +g25267 +g27 +sg25268 +S'Detail, Side of Confessional' +p37538 +sg25270 +S'William Kieckhofel' +p37539 +sa(dp37540 +g25267 +g27 +sg25268 +S'Detail, Side of Confessional' +p37541 +sg25270 +S'William Kieckhofel' +p37542 +sa(dp37543 +g25267 +g27 +sg25268 +S'Confessional, Detail from Side' +p37544 +sg25270 +S'Harry Mann Waddell' +p37545 +sa(dp37546 +g25267 +g27 +sg25268 +S'Monstrance' +p37547 +sg25270 +S'Verna Tallman' +p37548 +sa(dp37549 +g25267 +g27 +sg25268 +S'Side of Original Confessional' +p37550 +sg25270 +S'Geoffrey Holt' +p37551 +sa(dp37552 +g25267 +g27 +sg25268 +S'Carved Wood Ornament' +p37553 +sg25270 +S'Bertha Semple' +p37554 +sa(dp37555 +g25273 +S'graphite' +p37556 +sg25267 +g27 +sg25275 +S'1757' +p37557 +sg25268 +S"Second Day, Fifth Story, Andreuccio's Three Accidents in a Night" +p37558 +sg25270 +S'Charles-Nicolas Cochin II' +p37559 +sa(dp37560 +g25267 +g27 +sg25268 +S'Confessional' +p37561 +sg25270 +S'Randolph F. Miller' +p37562 +sa(dp37563 +g25267 +g27 +sg25268 +S'Detail of Confessional' +p37564 +sg25270 +S'Randolph F. Miller' +p37565 +sa(dp37566 +g25267 +g27 +sg25268 +S'Detail - Top of Confessional' +p37567 +sg25270 +S'Randolph F. Miller' +p37568 +sa(dp37569 +g25267 +g27 +sg25268 +S'Cabinet Doors' +p37570 +sg25270 +S'Rose Campbell-Gerke' +p37571 +sa(dp37572 +g25267 +g27 +sg25268 +S'Copper-studded Door (One of a Pair)' +p37573 +sg25270 +S'Mary Hansen' +p37574 +sa(dp37575 +g25267 +g27 +sg25268 +S'Pulpit' +p37576 +sg25270 +S'Hal Blakeley' +p37577 +sa(dp37578 +g25267 +g27 +sg25268 +S'Pulpit Panel' +p37579 +sg25270 +S'Artist Information (' +p37580 +sa(dp37581 +g25267 +g27 +sg25268 +S'Confessional' +p37582 +sg25270 +S'Edith Towner' +p37583 +sa(dp37584 +g25267 +g27 +sg25268 +S'Ceremonial Candlestick (Ecclesiastical Furniture)' +p37585 +sg25270 +S'William Kieckhofel' +p37586 +sa(dp37587 +g25267 +g27 +sg25268 +S'Pascal Candlestick' +p37588 +sg25270 +S'Ethel Dougan' +p37589 +sa(dp37590 +g25273 +S'pen and black ink with brown wash' +p37591 +sg25267 +g27 +sg25275 +S'1757' +p37592 +sg25268 +S'Second Day, Sixth Story, Madonna Beritola and the Two Goats' +p37593 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p37594 +sa(dp37595 +g25267 +g27 +sg25268 +S'Baptismal Font' +p37596 +sg25270 +S'William Kieckhofel' +p37597 +sa(dp37598 +g25267 +g27 +sg25268 +S'Candlestick (Ecclesiastical)' +p37599 +sg25270 +S'Edward Jewett' +p37600 +sa(dp37601 +g25267 +g27 +sg25268 +S'Cut Tin Candleholder' +p37602 +sg25270 +S'Hal Blakeley' +p37603 +sa(dp37604 +g25267 +g27 +sg25268 +S'Tabernacle (Ecclesiastical Furniture)' +p37605 +sg25270 +S'Cornelius Christoffels' +p37606 +sa(dp37607 +g25267 +g27 +sg25268 +S'Missal Stand' +p37608 +sg25270 +S'Gerald Transpota' +p37609 +sa(dp37610 +g25267 +g27 +sg25268 +S'Missal Holder' +p37611 +sg25270 +S'Vera Van Voris' +p37612 +sa(dp37613 +g25267 +g27 +sg25268 +S'Missal Stand' +p37614 +sg25270 +S'William Kieckhofel' +p37615 +sa(dp37616 +g25267 +g27 +sg25268 +S'Missal Stand' +p37617 +sg25270 +S'William Kieckhofel' +p37618 +sa(dp37619 +g25267 +g27 +sg25268 +S'Missal Holder' +p37620 +sg25270 +S'Gordena Jackson' +p37621 +sa(dp37622 +g25267 +g27 +sg25268 +S'Lectern (Reading Stand)' +p37623 +sg25270 +S'David P Willoughby' +p37624 +sa(dp37625 +g25268 +S'Second Day, Seventh Story: The Duke of Athens Contemplating the Sleeping Princess Alatiel' +p37626 +sg25270 +S'Artist Information (' +p37627 +sg25273 +S'(artist after)' +p37628 +sg25275 +S'\n' +p37629 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a00060d1.jpg' +p37630 +sg25267 +g27 +sa(dp37631 +g25267 +g27 +sg25268 +S'Stand for Missal' +p37632 +sg25270 +S'Gerald Transpota' +p37633 +sa(dp37634 +g25267 +g27 +sg25268 +S'Wooden Cabinet for Music' +p37635 +sg25270 +S'Rose Campbell-Gerke' +p37636 +sa(dp37637 +g25267 +g27 +sg25268 +S'Candlestick (Ecclesiastical)' +p37638 +sg25270 +S'Harry Mann Waddell' +p37639 +sa(dp37640 +g25267 +g27 +sg25268 +S'Tabernacle (Ecclesiastical Furniture)' +p37641 +sg25270 +S'William Kieckhofel' +p37642 +sa(dp37643 +g25267 +g27 +sg25268 +S'Altar Tabernacle' +p37644 +sg25270 +S'Cornelius Christoffels' +p37645 +sa(dp37646 +g25267 +g27 +sg25268 +S'Pulpit' +p37647 +sg25270 +S'Ethel Dougan' +p37648 +sa(dp37649 +g25267 +g27 +sg25268 +S'Prayer Bench' +p37650 +sg25270 +S'Harry Mann Waddell' +p37651 +sa(dp37652 +g25267 +g27 +sg25268 +S'Shrine' +p37653 +sg25270 +S'Emile Cero' +p37654 +sa(dp37655 +g25267 +g27 +sg25268 +S'Original Tabernacle, for Communion Vessels' +p37656 +sg25270 +S'Dayton Brown' +p37657 +sa(dp37658 +g25267 +g27 +sg25268 +S'Tabernacle' +p37659 +sg25270 +S'Josephine C. Romano' +p37660 +sa(dp37661 +g25273 +S'pen and black ink with brown wash' +p37662 +sg25267 +g27 +sg25275 +S'1757' +p37663 +sg25268 +S'Second Day, Eighth Story, History of the Count of Anguersa' +p37664 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p37665 +sa(dp37666 +g25267 +g27 +sg25268 +S'Cabinet, for Vestments' +p37667 +sg25270 +S'Randolph F. Miller' +p37668 +sa(dp37669 +g25267 +g27 +sg25268 +S'Vestment Chest' +p37670 +sg25270 +S'Artist Information (' +p37671 +sa(dp37672 +g25267 +g27 +sg25268 +S'Copper Baptismal Font' +p37673 +sg25270 +S'Juanita Donahoo' +p37674 +sa(dp37675 +g25267 +g27 +sg25268 +S'Baptismal Font' +p37676 +sg25270 +S'William Kieckhofel' +p37677 +sa(dp37678 +g25267 +g27 +sg25268 +S'Baptismal Font' +p37679 +sg25270 +S'Harry Mann Waddell' +p37680 +sa(dp37681 +g25267 +g27 +sg25268 +S'Tooled Leather Cover for Baptismal Font' +p37682 +sg25270 +S'Gerald Transpota' +p37683 +sa(dp37684 +g25267 +g27 +sg25268 +S'Baptismal Font' +p37685 +sg25270 +S'Harry Mann Waddell' +p37686 +sa(dp37687 +g25267 +g27 +sg25268 +S'Hammered-Copper Bucket' +p37688 +sg25270 +S'William Kieckhofel' +p37689 +sa(dp37690 +g25267 +g27 +sg25268 +S'Holy-Water Bucket' +p37691 +sg25270 +S'William Kieckhofel' +p37692 +sa(dp37693 +g25267 +g27 +sg25268 +S'Copper Bucket' +p37694 +sg25270 +S'Dana Bartlett' +p37695 +sa(dp37696 +g25273 +S'pen and black ink with brown wash' +p37697 +sg25267 +g27 +sg25275 +S'1757' +p37698 +sg25268 +S'Second Day, Ninth Story, Bernabo of Genoa and His Wife' +p37699 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p37700 +sa(dp37701 +g25267 +g27 +sg25268 +S'Holy-Water Bucket' +p37702 +sg25270 +S'Artist Information (' +p37703 +sa(dp37704 +g25267 +g27 +sg25268 +S'Bucket' +p37705 +sg25270 +S'Artist Information (' +p37706 +sa(dp37707 +g25267 +g27 +sg25268 +S'Bucket' +p37708 +sg25270 +S'William Kieckhofel' +p37709 +sa(dp37710 +g25267 +g27 +sg25268 +S'Copper Cruet' +p37711 +sg25270 +S'Edward Jewett' +p37712 +sa(dp37713 +g25267 +g27 +sg25268 +S'Pitcher (Ecclesiastical)' +p37714 +sg25270 +S'N.H. Yeckley' +p37715 +sa(dp37716 +g25267 +g27 +sg25268 +S"Individual Container for Indian's Daily Portion of Food" +p37717 +sg25270 +S'Rose Campbell-Gerke' +p37718 +sa(dp37719 +g25267 +g27 +sg25268 +S'Copper Kettle' +p37720 +sg25270 +S'Edward Jewett' +p37721 +sa(dp37722 +g25267 +g27 +sg25268 +S'Copper Vat' +p37723 +sg25270 +S'Edward Jewett' +p37724 +sa(dp37725 +g25267 +g27 +sg25268 +S'Copper Cauldron' +p37726 +sg25270 +S'Edward Jewett' +p37727 +sa(dp37728 +g25267 +g27 +sg25268 +S'Lighter (Mecha) for Flint' +p37729 +sg25270 +S'Josephine C. Romano' +p37730 +sa(dp37731 +g25273 +S'pen and black ink with brown wash' +p37732 +sg25267 +g27 +sg25275 +S'1757' +p37733 +sg25268 +S'Third Day, First Story, Lamporecchio in the Convent' +p37734 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p37735 +sa(dp37736 +g25267 +g27 +sg25268 +S'Painted Wooden Candle Stick, with Grooves andCircles' +p37737 +sg25270 +S'Majel G. Claflin' +p37738 +sa(dp37739 +g25267 +g27 +sg25268 +S'Tin Candelabra' +p37740 +sg25270 +S'E. Boyd' +p37741 +sa(dp37742 +g25267 +g27 +sg25268 +S'Candle Sconce' +p37743 +sg25270 +S'E. Boyd' +p37744 +sa(dp37745 +g25267 +g27 +sg25268 +S'Cut Tin Candleholder (Candelero)' +p37746 +sg25270 +S'Irene M. Burge' +p37747 +sa(dp37748 +g25267 +g27 +sg25268 +S'Tin Mirror Frame with 2 Candle Sockets' +p37749 +sg25270 +S'Majel G. Claflin' +p37750 +sa(dp37751 +g25267 +g27 +sg25268 +S'Tin Candle Sconce' +p37752 +sg25270 +S'Majel G. Claflin' +p37753 +sa(dp37754 +g25267 +g27 +sg25268 +S'Penitente Processional Lantern' +p37755 +sg25270 +S'Majel G. Claflin' +p37756 +sa(dp37757 +g25267 +g27 +sg25268 +S'Penitente Altar Candle Stick' +p37758 +sg25270 +S'Majel G. Claflin' +p37759 +sa(dp37760 +g25267 +g27 +sg25268 +S'Candlestick (One of a Pair)' +p37761 +sg25270 +S'Juanita Donahoo' +p37762 +sa(dp37763 +g25267 +g27 +sg25268 +S'Cut Tin Candleholder' +p37764 +sg25270 +S'Irene M. Burge' +p37765 +sa(dp37766 +g25273 +S'pen and black ink with brown wash' +p37767 +sg25267 +g27 +sg25275 +S'1757' +p37768 +sg25268 +S'Third Day, Second Story, King Agilulf and His Equerry' +p37769 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p37770 +sa(dp37771 +g25267 +g27 +sg25268 +S'Candleholder (Candelero) Cut Tin' +p37772 +sg25270 +S'Hal Blakeley' +p37773 +sa(dp37774 +g25267 +g27 +sg25268 +S'Candleholder (Candelero) Cut Tin' +p37775 +sg25270 +S'Hal Blakeley' +p37776 +sa(dp37777 +g25267 +g27 +sg25268 +S'Tin and Painted Glass Cross' +p37778 +sg25270 +S'Majel G. Claflin' +p37779 +sa(dp37780 +g25267 +g27 +sg25268 +S'Crucifix' +p37781 +sg25270 +S'Juanita Donahoo' +p37782 +sa(dp37783 +g25267 +g27 +sg25268 +S'Crucifix' +p37784 +sg25270 +S'Geoffrey Holt' +p37785 +sa(dp37786 +g25267 +g27 +sg25268 +S'Tin & Wall Paper Cross' +p37787 +sg25270 +S'Majel G. Claflin' +p37788 +sa(dp37789 +g25267 +g27 +sg25268 +S'Tin and Painted Glass Cross, Church or Home Use' +p37790 +sg25270 +S'E. Boyd' +p37791 +sa(dp37792 +g25267 +g27 +sg25268 +S'Tin & Wall Paper Cross' +p37793 +sg25270 +S'Majel G. Claflin' +p37794 +sa(dp37795 +g25267 +g27 +sg25268 +S'Silver Crown (Crown of the Holy Ghost)' +p37796 +sg25270 +S'Artist Information (' +p37797 +sa(dp37798 +g25267 +g27 +sg25268 +S'Picture Frame' +p37799 +sg25270 +S'Irene M. Burge' +p37800 +sa(dp37801 +g25273 +S'pen and black ink with brown wash' +p37802 +sg25267 +g27 +sg25275 +S'1757' +p37803 +sg25268 +S"Third Day, Fourth Story, Puccio's Penance and His Wife's Amusement" +p37804 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p37805 +sa(dp37806 +g25267 +g27 +sg25268 +S'Panels from Tin Frames and Nichos' +p37807 +sg25270 +S'E. Boyd' +p37808 +sa(dp37809 +g25267 +g27 +sg25268 +S'Nicho' +p37810 +sg25270 +S'Margery Parish' +p37811 +sa(dp37812 +g25267 +g27 +sg25268 +S'Tin Nicho with Santo Nino' +p37813 +sg25270 +S'Margery Parish' +p37814 +sa(dp37815 +g25267 +g27 +sg25268 +S'Tin Mirror Frame' +p37816 +sg25270 +S'Majel G. Claflin' +p37817 +sa(dp37818 +g25267 +g27 +sg25268 +S'Tin Frame' +p37819 +sg25270 +S'Alfonso Mirabal' +p37820 +sa(dp37821 +g25267 +g27 +sg25268 +S'Small Tin Framed Mirror' +p37822 +sg25270 +S'Majel G. Claflin' +p37823 +sa(dp37824 +g25267 +g27 +sg25268 +S'Cut Tin Picture Frame' +p37825 +sg25270 +S'Hal Blakeley' +p37826 +sa(dp37827 +g25267 +g27 +sg25268 +S'Copper Cruet' +p37828 +sg25270 +S'Edward Jewett' +p37829 +sa(dp37830 +g25267 +g27 +sg25268 +S'Jar' +p37831 +sg25270 +S'Yolande Delasser' +p37832 +sa(dp37833 +g25267 +g27 +sg25268 +S'Small Tin Framed Mirror' +p37834 +sg25270 +S'Majel G. Claflin' +p37835 +sa(dp37836 +g25273 +S'pen and black ink with brown wash' +p37837 +sg25267 +g27 +sg25275 +S'1757' +p37838 +sg25268 +S'Third Day, Sixth Story, Ricciardo Minutolo' +p37839 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p37840 +sa(dp37841 +g25267 +g27 +sg25268 +S'Tin Mirror Frame' +p37842 +sg25270 +S'Majel G. Claflin' +p37843 +sa(dp37844 +g25267 +g27 +sg25268 +S'Tin Mirror Frame - (One of a Pair)' +p37845 +sg25270 +S'Majel G. Claflin' +p37846 +sa(dp37847 +g25267 +g27 +sg25268 +S'Hand Drawn Guadalupe in Tin Form' +p37848 +sg25270 +S'Majel G. Claflin' +p37849 +sa(dp37850 +g25267 +g27 +sg25268 +S'Mirror, Framed with Wall Paper Panels, Bordered in Tin' +p37851 +sg25270 +S'Majel G. Claflin' +p37852 +sa(dp37853 +g25267 +g27 +sg25268 +S'Sheep Bell' +p37854 +sg25270 +S'Raymond E. Noble' +p37855 +sa(dp37856 +g25267 +g27 +sg25268 +S'Church Bell' +p37857 +sg25270 +S'Cornelius Christoffels' +p37858 +sa(dp37859 +g25267 +g27 +sg25268 +S'Dinner Bell' +p37860 +sg25270 +S'William Kieckhofel' +p37861 +sa(dp37862 +g25267 +g27 +sg25268 +S"Ship's Bell" +p37863 +sg25270 +S'Raymond E. Noble' +p37864 +sa(dp37865 +g25267 +g27 +sg25268 +S'Wooden Bell' +p37866 +sg25270 +S'Edward Jewett' +p37867 +sa(dp37868 +g25267 +g27 +sg25268 +S'Rattle (Matraca)' +p37869 +sg25270 +S'William Kieckhofel' +p37870 +sa(dp37871 +g25273 +S'pen and black ink with brown wash' +p37872 +sg25267 +g27 +sg25275 +S'1757' +p37873 +sg25268 +S'Third Day, Eighth Story, Ferondo in Purgatory' +p37874 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p37875 +sa(dp37876 +g25267 +g27 +sg25268 +S'Brass Bell' +p37877 +sg25270 +S'Artist Information (' +p37878 +sa(dp37879 +g25267 +g27 +sg25268 +S'Bell, from Presidential Yacht "Sylph"' +p37880 +sg25270 +S'Edith Towner' +p37881 +sa(dp37882 +g25267 +g27 +sg25268 +S'Animal Bell' +p37883 +sg25270 +S'Gerald Transpota' +p37884 +sa(dp37885 +g25267 +g27 +sg25268 +S'Altar Chimes' +p37886 +sg25270 +S'David P Willoughby' +p37887 +sa(dp37888 +g25267 +g27 +sg25268 +S'Altar Chimes on Wheel' +p37889 +sg25270 +S'Cornelius Christoffels' +p37890 +sa(dp37891 +g25267 +g27 +sg25268 +S"Ship's Bell" +p37892 +sg25270 +S'Edith Towner' +p37893 +sa(dp37894 +g25267 +g27 +sg25268 +S'Bell' +p37895 +sg25270 +S'Robert W.R. Taylor' +p37896 +sa(dp37897 +g25267 +g27 +sg25268 +S'Elementary School Bell' +p37898 +sg25270 +S'William Kieckhofel' +p37899 +sa(dp37900 +g25267 +g27 +sg25268 +S'Church Bell' +p37901 +sg25270 +S'Edith Towner' +p37902 +sa(dp37903 +g25267 +g27 +sg25268 +S'Sanctus Bell' +p37904 +sg25270 +S'Syrena Swanson' +p37905 +sa(dp37906 +g25273 +S'pen and black ink with brown wash' +p37907 +sg25267 +g27 +sg25275 +S'1757' +p37908 +sg25268 +S'Third Day, Ninth Story, Gileta di Nerbona and Count Betramo di Rossiglione' +p37909 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p37910 +sa(dp37911 +g25267 +g27 +sg25268 +S'Cow Bell' +p37912 +sg25270 +S'Georgina King' +p37913 +sa(dp37914 +g25267 +g27 +sg25268 +S'Candlestick' +p37915 +sg25270 +S'Charles Garjian' +p37916 +sa(dp37917 +g25267 +g27 +sg25268 +S'Hand Wrought Iron Candlestick' +p37918 +sg25270 +S'Emile Cero' +p37919 +sa(dp37920 +g25267 +g27 +sg25268 +S'Hand Wrought Iron Candlestick' +p37921 +sg25270 +S'Gordena Jackson' +p37922 +sa(dp37923 +g25267 +g27 +sg25268 +S'Candelabrum' +p37924 +sg25270 +S'Robert W.R. Taylor' +p37925 +sa(dp37926 +g25267 +g27 +sg25268 +S'Pierced Metal Screen from Confessional' +p37927 +sg25270 +S'Geoffrey Holt' +p37928 +sa(dp37929 +g25267 +g27 +sg25268 +S'Pierced Metal Screen from Confessional' +p37930 +sg25270 +S'Geoffrey Holt' +p37931 +sa(dp37932 +g25267 +g27 +sg25268 +S'Pierced Metal Screen from Confessional' +p37933 +sg25270 +S'Geoffrey Holt' +p37934 +sa(dp37935 +g25267 +g27 +sg25268 +S'Pierced Metal Screen Inside Confessional' +p37936 +sg25270 +S'Geoffrey Holt' +p37937 +sa(dp37938 +g25267 +g27 +sg25268 +S'Iron Cross' +p37939 +sg25270 +S'Dayton Brown' +p37940 +sa(dp37941 +g25273 +S'graphite' +p37942 +sg25267 +g27 +sg25275 +S'1757' +p37943 +sg25268 +S'Fourth Day, First Story, Tancredi Prince of Salerno and His Daughter' +p37944 +sg25270 +S'Charles-Nicolas Cochin II' +p37945 +sa(dp37946 +g25267 +g27 +sg25268 +S'Iron Cross' +p37947 +sg25270 +S'Dayton Brown' +p37948 +sa(dp37949 +g25267 +g27 +sg25268 +S'Portion of Original Weather Vane' +p37950 +sg25270 +S'Geoffrey Holt' +p37951 +sa(dp37952 +g25267 +g27 +sg25268 +S'Wrought Iron Cross, Campanario' +p37953 +sg25270 +S'Cornelius Christoffels' +p37954 +sa(dp37955 +g25267 +g27 +sg25268 +S'Iron Grille at Window' +p37956 +sg25270 +S'William Kieckhofel' +p37957 +sa(dp37958 +g25267 +g27 +sg25268 +S'Iron Grille' +p37959 +sg25270 +S'William Kieckhofel' +p37960 +sa(dp37961 +g25267 +g27 +sg25268 +S'Iron Grille (at Window) a Restoration Drawing' +p37962 +sg25270 +S'Geoffrey Holt' +p37963 +sa(dp37964 +g25267 +g27 +sg25268 +S'Iron Grille at Window: Restoration Drawing' +p37965 +sg25270 +S'William Kieckhofel' +p37966 +sa(dp37967 +g25267 +g27 +sg25268 +S'Iron Grille at Window: Restoration Drawing' +p37968 +sg25270 +S'Harry Mann Waddell' +p37969 +sa(dp37970 +g25267 +g27 +sg25268 +S'Iron Grille at Window (a Restoration)' +p37971 +sg25270 +S'William Kieckhofel' +p37972 +sa(dp37973 +g25267 +g27 +sg25268 +S'Reredos-Mission San Juan Bautista' +p37974 +sg25270 +S'Ethel Dougan' +p37975 +sa(dp37976 +g25273 +S'graphite' +p37977 +sg25267 +g27 +sg25275 +S'1757' +p37978 +sg25268 +S"Fourth Day, Fourth Story, Gerbino and the King of Tunis' Daughter" +p37979 +sg25270 +S'Charles Eisen' +p37980 +sa(dp37981 +g25267 +g27 +sg25268 +S'Saddle' +p37982 +sg25270 +S'Gerald Transpota' +p37983 +sa(dp37984 +g25267 +g27 +sg25268 +S'Candlestick Sconce' +p37985 +sg25270 +S'Majel G. Claflin' +p37986 +sa(dp37987 +g25267 +g27 +sg25268 +S'Cross' +p37988 +sg25270 +S'Majel G. Claflin' +p37989 +sa(dp37990 +g25267 +g27 +sg25268 +S'Tin Nicho Containing Guadalupe Bulto' +p37991 +sg25270 +S'Majel G. Claflin' +p37992 +sa(dp37993 +g25267 +g27 +sg25268 +S'Station of the Cross No. 1: "Jesus is Condemned to Death' +p37994 +sg25270 +S'Beulah Bradleigh' +p37995 +sa(dp37996 +g25267 +g27 +sg25268 +S'Station of the Cross No. 2: "The Cross is Laid on Jesus"' +p37997 +sg25270 +S'William Herbert' +p37998 +sa(dp37999 +g25267 +g27 +sg25268 +S'Station of the Cross No. 2: "The Cross is Laid on Jesus' +p38000 +sg25270 +S'Geoffrey Holt' +p38001 +sa(dp38002 +g25267 +g27 +sg25268 +S'Station of the Cross No. 3: "Jesus Falls the First Time"' +p38003 +sg25270 +S'William Herbert' +p38004 +sa(dp38005 +g25267 +g27 +sg25268 +S'Station of the Cross No. 4: "Jesus Meets His Mother"' +p38006 +sg25270 +S'William Herbert' +p38007 +sa(dp38008 +g25267 +g27 +sg25268 +S'Station of the Cross No. 5: "Jesus is Assisted in Carrying His Cross' +p38009 +sg25270 +S'William Herbert' +p38010 +sa(dp38011 +g25273 +S'graphite' +p38012 +sg25267 +g27 +sg25275 +S'1757' +p38013 +sg25268 +S'Fourth Day, Fifth Story, Isabella and the Pot of Basil' +p38014 +sg25270 +S'Charles Eisen' +p38015 +sa(dp38016 +g25267 +g27 +sg25268 +S'Station of the Cross No. 5: "Jesus is Assisted in Carrying His Cross' +p38017 +sg25270 +S'William Herbert' +p38018 +sa(dp38019 +g25267 +g27 +sg25268 +S'Station of the Cross No. 1: "Jesus is Condemned to Death' +p38020 +sg25270 +S'Beulah Bradleigh' +p38021 +sa(dp38022 +g25267 +g27 +sg25268 +S'Station of the Cross No. 4: "Jesus Meets His Mother' +p38023 +sg25270 +S'William Herbert' +p38024 +sa(dp38025 +g25267 +g27 +sg25268 +S'Station of the Cross No. 6: "Veronica RendersService to Jesus"' +p38026 +sg25270 +S'Geoffrey Holt' +p38027 +sa(dp38028 +g25267 +g27 +sg25268 +S'Station of the Cross No. 6: "Veronica Renders Service to Jesus"' +p38029 +sg25270 +S'Geoffrey Holt' +p38030 +sa(dp38031 +g25267 +g27 +sg25268 +S'Station of the Cross No. 7: "Jesus Falls the Second Time"' +p38032 +sg25270 +S'Beulah Bradleigh' +p38033 +sa(dp38034 +g25267 +g27 +sg25268 +S'Station of the Cross No. 7: "Jesus Falls the Second Time"' +p38035 +sg25270 +S'Beulah Bradleigh' +p38036 +sa(dp38037 +g25267 +g27 +sg25268 +S'Station of the Cross No. 8: "Jesus Speaks to the Women of Jerusalem"' +p38038 +sg25270 +S'Geoffrey Holt' +p38039 +sa(dp38040 +g25267 +g27 +sg25268 +S'Stations of the Cross No. 8: "Jesus Speaks to the Women of Jerusalem' +p38041 +sg25270 +S'Geoffrey Holt' +p38042 +sa(dp38043 +g25267 +g27 +sg25268 +S'Station of the Cross No. 9: Jesus Falls the Third Time' +p38044 +sg25270 +S'Beulah Bradleigh' +p38045 +sa(dp38046 +g25273 +S'pen and black ink with brown wash' +p38047 +sg25267 +g27 +sg25275 +S'1757' +p38048 +sg25268 +S'Fourth Day, Seventh Story, Two Lovers Poisoned by a Leaf' +p38049 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38050 +sa(dp38051 +g25267 +g27 +sg25268 +S'Station of the Cross No. 9: "Jesus Falls the Third Time' +p38052 +sg25270 +S'Beulah Bradleigh' +p38053 +sa(dp38054 +g25267 +g27 +sg25268 +S'Station of the Cross No. 10: "Jesus is Stripped of His Garments' +p38055 +sg25270 +S'Geoffrey Holt' +p38056 +sa(dp38057 +g25267 +g27 +sg25268 +S'Station of the Cross No. 10: "Jesus is Stripped of His Garments"' +p38058 +sg25270 +S'Geoffrey Holt' +p38059 +sa(dp38060 +g25267 +g27 +sg25268 +S'Station of the Cross No. 12: "Jesus Dies Upon the Cross"' +p38061 +sg25270 +S'William Herbert' +p38062 +sa(dp38063 +g25267 +g27 +sg25268 +S'Station of the Cross No. 13: "Jesus is Taken Down from the Cross"' +p38064 +sg25270 +S'William Herbert' +p38065 +sa(dp38066 +g25267 +g27 +sg25268 +S'Station of the Cross No. 13: "Jesus is Taken Down from the Cross' +p38067 +sg25270 +S'William Herbert' +p38068 +sa(dp38069 +g25267 +g27 +sg25268 +S'Station of the Cross No. 14: "Jesus is Laid in His Tomb"' +p38070 +sg25270 +S'William Herbert' +p38071 +sa(dp38072 +g25267 +g27 +sg25268 +S'Station of the Cross No. 14: "Jesus is Laid in His Tomb' +p38073 +sg25270 +S'American 20th Century' +p38074 +sa(dp38075 +g25267 +g27 +sg25268 +S'Station of the Cross No. 11: "Jesus is Nailed to the Cross"' +p38076 +sg25270 +S'Geoffrey Holt' +p38077 +sa(dp38078 +g25267 +g27 +sg25268 +S'"Stations of the Cross" No. 11. "Jesus is Nailed to the Cross' +p38079 +sg25270 +S'Cornelius Christoffels' +p38080 +sa(dp38081 +g25273 +S'pen and black ink with brown wash' +p38082 +sg25267 +g27 +sg25275 +S'1757' +p38083 +sg25268 +S"Fourth Day, Eighth Story, Girolamo's Love and Death for Salvestra" +p38084 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38085 +sa(dp38086 +g25267 +g27 +sg25268 +S'Station of the Cross No. 12: "Jesus Dies Upon the Cross"' +p38087 +sg25270 +S'Geoffrey Holt' +p38088 +sa(dp38089 +g25267 +g27 +sg25268 +S'Bulto' +p38090 +sg25270 +S'American 20th Century' +p38091 +sa(dp38092 +g25267 +g27 +sg25268 +S'Penetente Death Cart & Death Figure' +p38093 +sg25270 +S'Majel G. Claflin' +p38094 +sa(dp38095 +g25267 +g27 +sg25268 +S'Figure of Death "Muerto"' +p38096 +sg25270 +S'Majel G. Claflin' +p38097 +sa(dp38098 +g25267 +g27 +sg25268 +S'"El Muerto" Death Figure and Cart' +p38099 +sg25270 +S'Majel G. Claflin' +p38100 +sa(dp38101 +g25267 +g27 +sg25268 +S'Christ in Sepulchre' +p38102 +sg25270 +S'E. Boyd' +p38103 +sa(dp38104 +g25267 +g27 +sg25268 +S'Crucifix - From the Vicinity of Mora' +p38105 +sg25270 +S'E. Boyd' +p38106 +sa(dp38107 +g25267 +g27 +sg25268 +S'Bulto; Saint Acacio' +p38108 +sg25270 +S'E. Boyd' +p38109 +sa(dp38110 +g25267 +g27 +sg25268 +S'Wooden Painted Christo' +p38111 +sg25270 +S'Majel G. Claflin' +p38112 +sa(dp38113 +g25267 +g27 +sg25268 +S'Wooden Christo, Painted (Front view)' +p38114 +sg25270 +S'Majel G. Claflin' +p38115 +sa(dp38116 +g25273 +S'pen and black ink with brown wash' +p38117 +sg25267 +g27 +sg25275 +S'1757' +p38118 +sg25268 +S"Fourth Day, Ninth Story, Rossiglione Dresses Guardastagno's Heart for His Wife's Supper" +p38119 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38120 +sa(dp38121 +g25267 +g27 +sg25268 +S'Wooden Christo, Painted (Side view)' +p38122 +sg25270 +S'Majel G. Claflin' +p38123 +sa(dp38124 +g25267 +g27 +sg25268 +S'Painted Wooden Crucifix' +p38125 +sg25270 +S'Majel G. Claflin' +p38126 +sa(dp38127 +g25267 +g27 +sg25268 +S'Bulto, Crucifix' +p38128 +sg25270 +S'Majel G. Claflin' +p38129 +sa(dp38130 +g25267 +g27 +sg25268 +S'Crucifix, from Vicinity of Taos' +p38131 +sg25270 +S'E. Boyd' +p38132 +sa(dp38133 +g25267 +g27 +sg25268 +S'Cristo, Carved and Painted, on Black Carved Wooden Cross' +p38134 +sg25270 +S'Majel G. Claflin' +p38135 +sa(dp38136 +g25267 +g27 +sg25268 +S'Bulto - Holy Family' +p38137 +sg25270 +S'E. Boyd' +p38138 +sa(dp38139 +g25267 +g27 +sg25268 +S'Bulto of San Ysidro' +p38140 +sg25270 +S'E. Boyd' +p38141 +sa(dp38142 +g25267 +g27 +sg25268 +S'Bulto - Santa Rita' +p38143 +sg25270 +S'Majel G. Claflin' +p38144 +sa(dp38145 +g25267 +g27 +sg25268 +S'Bulto, Santa Rita' +p38146 +sg25270 +S'Majel G. Claflin' +p38147 +sa(dp38148 +g25267 +g27 +sg25268 +S'Carved and Painted Santo - Santa Rita' +p38149 +sg25270 +S'Majel G. Claflin' +p38150 +sa(dp38151 +g25273 +S'pen and black ink with brown wash' +p38152 +sg25267 +g27 +sg25275 +S'1757' +p38153 +sg25268 +S"Fourth Day, Tenth Story, A Doctor's Wife Puts Her Lover in a Chest" +p38154 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38155 +sa(dp38156 +g25267 +g27 +sg25268 +S'Santa Rita - (Bulto)' +p38157 +sg25270 +S'Majel G. Claflin' +p38158 +sa(dp38159 +g25267 +g27 +sg25268 +S'Santa (One of Eight Virgins) Front View' +p38160 +sg25270 +S'Majel G. Claflin' +p38161 +sa(dp38162 +g25267 +g27 +sg25268 +S'Santa (One of Eight Virgins) Side View' +p38163 +sg25270 +S'Majel G. Claflin' +p38164 +sa(dp38165 +g25267 +g27 +sg25268 +S'New Mexico, "Bulto", Polychromed Wooden Figure' +p38166 +sg25270 +S'E. Boyd' +p38167 +sa(dp38168 +g25267 +g27 +sg25268 +S'"Guadalupe" Wood Santo or Bulto' +p38169 +sg25270 +S'Majel G. Claflin' +p38170 +sa(dp38171 +g25267 +g27 +sg25268 +S'Our Lady of Guadalupe (Bulto)' +p38172 +sg25270 +S'Majel G. Claflin' +p38173 +sa(dp38174 +g25267 +g27 +sg25268 +S'Bulto (Virgin)' +p38175 +sg25270 +S'Majel G. Claflin' +p38176 +sa(dp38177 +g25267 +g27 +sg25268 +S'Bulto (Santa Rita)' +p38178 +sg25270 +S'Majel G. Claflin' +p38179 +sa(dp38180 +g25267 +g27 +sg25268 +S'Head of Guadalupe' +p38181 +sg25270 +S'Majel G. Claflin' +p38182 +sa(dp38183 +g25267 +g27 +sg25268 +S'Bulto' +p38184 +sg25270 +S"Carl O'Bergh" +p38185 +sa(dp38186 +g25273 +S'pen and black ink with brown wash' +p38187 +sg25267 +g27 +sg25275 +S'1757' +p38188 +sg25268 +S'Fifth Day, Frontispiece' +p38189 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38190 +sa(dp38191 +g25267 +g27 +sg25268 +S'Bulto of the Virgin of Guadalupe' +p38192 +sg25270 +S'E. Boyd' +p38193 +sa(dp38194 +g25267 +g27 +sg25268 +S'Large Painted Wooden Saint-Virgin Mary' +p38195 +sg25270 +S'Majel G. Claflin' +p38196 +sa(dp38197 +g25267 +g27 +sg25268 +S'Carved and Painted Wooden Santo (St. Joseph)' +p38198 +sg25270 +S'Majel G. Claflin' +p38199 +sa(dp38200 +g25267 +g27 +sg25268 +S'Santo - San Antonio de Padua' +p38201 +sg25270 +S'Ranka S. Woods' +p38202 +sa(dp38203 +g25267 +g27 +sg25268 +S'Head of Carved Figure with Tin Crown' +p38204 +sg25270 +S'Majel G. Claflin' +p38205 +sa(dp38206 +g25267 +g27 +sg25268 +S'Bulto, St. Francis' +p38207 +sg25270 +S'Majel G. Claflin' +p38208 +sa(dp38209 +g25267 +g27 +sg25268 +S'Santo "Christo"' +p38210 +sg25270 +S'Majel G. Claflin' +p38211 +sa(dp38212 +g25267 +g27 +sg25268 +S'San Jose, Carved and Painted Wooden Santo' +p38213 +sg25270 +S'Majel G. Claflin' +p38214 +sa(dp38215 +g25267 +g27 +sg25268 +S'Carved and Painted Santo - San Jose' +p38216 +sg25270 +S'Majel G. Claflin' +p38217 +sa(dp38218 +g25267 +g27 +sg25268 +S'Old Bulto San Lorenzo' +p38219 +sg25270 +S'Conrado Barrio' +p38220 +sa(dp38221 +g25268 +S'Portrait of a Man' +p38222 +sg25270 +S'Andrea del Castagno' +p38223 +sg25273 +S'tempera on panel' +p38224 +sg25275 +S'c. 1450' +p38225 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000772.jpg' +p38226 +sg25267 +S"Today, we are accustomed to meeting the gazes of men and women who look out at us from portraits, but this has not always been the case. The first independent portraits of the Renaissance presented sitters in strict profile, a pose that offered a concise likeness while maintaining a hierarchical reserve appropriate to high status. By the 1430s or so, artists in northern Europe began to adopt a three-quarter pose, which could convey a much greater sense of personality. In Italy, however, profile views continued to dominate. Perhaps their popularity was linked with profile portrait medals—very popular among Italian collectors—and with the ancient Roman coins that inspired them. In any case, Castagno's image is one of the earliest three-quarter-view portraits from Italy to survive; it is also one of only two known until the appearance of Leonardo's \n The man's forceful personality is almost aggressively projected. His face is composed of brightly lit and sharply delineated planes, which seem almost to carve his features with palpable form. He turns a proud, animated face to hold our eye.\n " +p38227 +sa(dp38228 +g25273 +S'pen and black ink with brown wash' +p38229 +sg25267 +g27 +sg25275 +S'1757' +p38230 +sg25268 +S'Fifth Day, Third Story, Pietro Boccamazza' +p38231 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38232 +sa(dp38233 +g25267 +g27 +sg25268 +S'Bulto:"Holy Trinity"' +p38234 +sg25270 +S'Majel G. Claflin' +p38235 +sa(dp38236 +g25267 +g27 +sg25268 +S'Immaculate Conception' +p38237 +sg25270 +S'Majel G. Claflin' +p38238 +sa(dp38239 +g25267 +g27 +sg25268 +S'Bulto St. Rocce' +p38240 +sg25270 +S'E. Boyd' +p38241 +sa(dp38242 +g25267 +g27 +sg25268 +S'Unnamed Bulto' +p38243 +sg25270 +S'Majel G. Claflin' +p38244 +sa(dp38245 +g25267 +g27 +sg25268 +S'Bulto (Wooden Figure of Saint)' +p38246 +sg25270 +S'E. Boyd' +p38247 +sa(dp38248 +g25267 +g27 +sg25268 +S'Bulto-Figure of Saint' +p38249 +sg25270 +S'E. Boyd' +p38250 +sa(dp38251 +g25267 +g27 +sg25268 +S'Santo Bulto' +p38252 +sg25270 +S'George E. Rhone' +p38253 +sa(dp38254 +g25267 +g27 +sg25268 +S'Bulto' +p38255 +sg25270 +S"Carl O'Bergh" +p38256 +sa(dp38257 +g25267 +g27 +sg25268 +S'Bulto' +p38258 +sg25270 +S"Carl O'Bergh" +p38259 +sa(dp38260 +g25267 +g27 +sg25268 +S'Friar - Probably a Santo' +p38261 +sg25270 +S'Majel G. Claflin' +p38262 +sa(dp38263 +g25273 +S'graphite' +p38264 +sg25267 +g27 +sg25275 +S'1757' +p38265 +sg25268 +S'Fifth Day, Fourth Story, The Nightingale' +p38266 +sg25270 +S'Charles Eisen' +p38267 +sa(dp38268 +g25267 +g27 +sg25268 +S'Carved and Painted Wooden Santo (St. Anthony)' +p38269 +sg25270 +S'Majel G. Claflin' +p38270 +sa(dp38271 +g25267 +g27 +sg25268 +S'Wooden Santo - Friar with Cross on Breast' +p38272 +sg25270 +S'Majel G. Claflin' +p38273 +sa(dp38274 +g25267 +g27 +sg25268 +S'Wooden Santo in Bright Green Dress' +p38275 +sg25270 +S'Majel G. Claflin' +p38276 +sa(dp38277 +g25267 +g27 +sg25268 +S'Bulto, probably San Antonio' +p38278 +sg25270 +S'E. Boyd' +p38279 +sa(dp38280 +g25267 +g27 +sg25268 +S'Lunette and Detail from Altar Church at Sanctuario, Chimayo' +p38281 +sg25270 +S'E. Boyd' +p38282 +sa(dp38283 +g25267 +S'One of the popular motifs for the "retablo" painter was the Holy Trinity "La Santisima Trinidad." This has always been a difficult subject for the artist to depict;\r\n the usual portrayal consists of the Father, the Son, and a dove representing the Holy Spirit. The version shown in this "retablo" originated in Byzantium.\r\n It portrays the Holy Trinity as three men. The Byzantine form was abandoned in Europe in 1745 because of a papal edict, but continued unchanged in Spanish America.\n ' +p38284 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003cf.jpg' +p38285 +sg25268 +S'Retabla of the Trinity' +p38286 +sg25270 +S'E. Boyd' +p38287 +sa(dp38288 +g25267 +g27 +sg25268 +S'Fragment of Reredos' +p38289 +sg25270 +S'Warren W. Lemmon' +p38290 +sa(dp38291 +g25267 +g27 +sg25268 +S'Fragment of Reredos' +p38292 +sg25270 +S'Edward Jewett' +p38293 +sa(dp38294 +g25267 +g27 +sg25268 +S'Detail of Panel from Reredos, Church of Sanctuario at Chimayo' +p38295 +sg25270 +S'E. Boyd' +p38296 +sa(dp38297 +g25267 +g27 +sg25268 +S'Detail from Main Reredos at Sanctuario Church, Chimayo' +p38298 +sg25270 +S'E. Boyd' +p38299 +sa(dp38300 +g25273 +S'pen and black ink with brown wash' +p38301 +sg25267 +g27 +sg25275 +S'1757' +p38302 +sg25268 +S"Fifth Day, Fifth Story, Guidotto da Cremona's Daughter" +p38303 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38304 +sa(dp38305 +g25267 +g27 +sg25268 +S'Main Reredos in Santa Cruz Church, Santa Fe County' +p38306 +sg25270 +S'E. Boyd' +p38307 +sa(dp38308 +g25267 +g27 +sg25268 +S'Companion Panel from Main Reredos, Church of Sanctuario, Chimayo' +p38309 +sg25270 +S'E. Boyd' +p38310 +sa(dp38311 +g25267 +g27 +sg25268 +S'Laguna Main Altarpiece' +p38312 +sg25270 +S'E. Boyd' +p38313 +sa(dp38314 +g25267 +g27 +sg25268 +S'Hand Drawn "Santo Nino de Atocha"-Hand Made Tin Frame' +p38315 +sg25270 +S'Majel G. Claflin' +p38316 +sa(dp38317 +g25267 +g27 +sg25268 +S"Retablo-Child's Saint" +p38318 +sg25270 +S'E. Boyd' +p38319 +sa(dp38320 +g25267 +g27 +sg25268 +S'The Christ Child-Retalba El Nino Perdido, (The Lost Child) a Retabla' +p38321 +sg25270 +S'E. Boyd' +p38322 +sa(dp38323 +g25267 +g27 +sg25268 +S'Santo' +p38324 +sg25270 +S'Maude Valle' +p38325 +sa(dp38326 +g25267 +g27 +sg25268 +S'Retablo' +p38327 +sg25270 +S'E. Boyd' +p38328 +sa(dp38329 +g25267 +g27 +sg25268 +S'Small Christo Head - Retablo' +p38330 +sg25270 +S'Majel G. Claflin' +p38331 +sa(dp38332 +g25267 +g27 +sg25268 +S'Panel - Cross and Drapes' +p38333 +sg25270 +S'American 20th Century' +p38334 +sa(dp38335 +g25273 +S'pen and black ink with brown wash' +p38336 +sg25267 +g27 +sg25275 +S'1757' +p38337 +sg25268 +S'Fifth Day, Tenth Story, The Wives of Pietro di Vinciolo and Hercolano' +p38338 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38339 +sa(dp38340 +g25267 +g27 +sg25268 +S'Retablo (Sacred Heart)' +p38341 +sg25270 +S'Majel G. Claflin' +p38342 +sa(dp38343 +g25267 +g27 +sg25268 +S'Retablo' +p38344 +sg25270 +S'E. Boyd' +p38345 +sa(dp38346 +g25267 +g27 +sg25268 +S'Retablo' +p38347 +sg25270 +S'E. Boyd' +p38348 +sa(dp38349 +g25267 +g27 +sg25268 +S'Retablo' +p38350 +sg25270 +S'Margery Parish' +p38351 +sa(dp38352 +g25267 +g27 +sg25268 +S'Retablo-Santa Rita' +p38353 +sg25270 +S'Majel G. Claflin' +p38354 +sa(dp38355 +g25267 +g27 +sg25268 +S'Santo Retablo' +p38356 +sg25270 +S'Emile Cero' +p38357 +sa(dp38358 +g25267 +g27 +sg25268 +S'Santa Clara de Asis' +p38359 +sg25270 +S'American 20th Century' +p38360 +sa(dp38361 +g25267 +g27 +sg25268 +S'Santos Retablos' +p38362 +sg25270 +S'Maude Valle' +p38363 +sa(dp38364 +g25267 +g27 +sg25268 +S'Santo' +p38365 +sg25270 +S'Maude Valle' +p38366 +sa(dp38367 +g25267 +g27 +sg25268 +S'Santo' +p38368 +sg25270 +S'Maude Valle' +p38369 +sa(dp38370 +g25273 +S'pen and black ink with brown wash' +p38371 +sg25267 +g27 +sg25275 +S'1757' +p38372 +sg25268 +S'Title Page for Volume II of Boccaccio\'s "Decamerone"' +p38373 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38374 +sa(dp38375 +g25267 +g27 +sg25268 +S'Retablo' +p38376 +sg25270 +S'Margery Parish' +p38377 +sa(dp38378 +g25267 +g27 +sg25268 +S'Santos Retablos' +p38379 +sg25270 +S'Maude Valle' +p38380 +sa(dp38381 +g25267 +g27 +sg25268 +S'Wall Hanging of Santa Barbara' +p38382 +sg25270 +S'E. Boyd' +p38383 +sa(dp38384 +g25267 +S"The New Mexican panel paintings were known as "retablos." They were probably the work of only about a dozen men. This particular piece has been attributed to Miguel Aragon of Cordova, New Mexico, one of the best-known artists. Representing Saint Anthony in a characteristic pose, this panel is from an early nineteenth-century altarpiece in the Church of Llano Quemado near Taos. The altarpiece, or "reredos," had eight panels arranged in two tiers of four each; it was similar in concept to the many-paneled altarpieces of fifteenth-century Spain and Italy. Typical of Miguel Aragon's work, the panels of this altarpiece have white backgrounds with simple figure compositions. Also typical of the artist's style are the two small trees in the foreground, the draperylike framing, the clear, bright, color scheme, and the carefully delineated eyelids of the saint.\n " +p38385 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003cd.jpg' +p38386 +sg25268 +S'Panel from Altar Piece of San Antonio' +p38387 +sg25270 +S'E. Boyd' +p38388 +sa(dp38389 +g25267 +g27 +sg25268 +S'Retablo' +p38390 +sg25270 +S'Majel G. Claflin' +p38391 +sa(dp38392 +g25267 +g27 +sg25268 +S'Santos Retablos' +p38393 +sg25270 +S'Maude Valle' +p38394 +sa(dp38395 +g25267 +g27 +sg25268 +S'Retablo' +p38396 +sg25270 +S'American 20th Century' +p38397 +sa(dp38398 +g25267 +g27 +sg25268 +S'Retablo' +p38399 +sg25270 +S'American 20th Century' +p38400 +sa(dp38401 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a000610a.jpg' +p38402 +sg25268 +S'San Buenaventura' +p38403 +sg25270 +S'American 20th Century' +p38404 +sa(dp38405 +g25267 +g27 +sg25268 +S'St. Joseph' +p38406 +sg25270 +S'Artist Information (' +p38407 +sa(dp38408 +g25273 +S'(artist)' +p38409 +sg25267 +g27 +sg25275 +S'\n' +p38410 +sg25268 +S'Album of Preliminary Drawings for Boccaccio\'s "Decamerone" (1757 edition), volume II' +p38411 +sg25270 +S'Artist Information (' +p38412 +sa(dp38413 +g25267 +g27 +sg25268 +S'Panel from Altar Piece of San Antonio' +p38414 +sg25270 +S'E. Boyd' +p38415 +sa(dp38416 +g25267 +g27 +sg25268 +S'Retablo' +p38417 +sg25270 +S'E. Boyd' +p38418 +sa(dp38419 +g25267 +g27 +sg25268 +S'St. John Nepomucene-Painted on Buffalo Hide Prior to 1800' +p38420 +sg25270 +S'E. Boyd' +p38421 +sa(dp38422 +g25267 +g27 +sg25268 +S'Detail from Large Altar on East Wall of Sanctuario Church at Chimayo. St. Christopher' +p38423 +sg25270 +S'E. Boyd' +p38424 +sa(dp38425 +g25267 +g27 +sg25268 +S'St. John Nepomucene-Painted on Buffalo Hide Prior to 1800' +p38426 +sg25270 +S'E. Boyd' +p38427 +sa(dp38428 +g25267 +g27 +sg25268 +S'Santos Retablos' +p38429 +sg25270 +S'Maude Valle' +p38430 +sa(dp38431 +g25267 +g27 +sg25268 +S'Santo de Retablo' +p38432 +sg25270 +S'Robert W.R. Taylor' +p38433 +sa(dp38434 +g25267 +g27 +sg25268 +S'Santo' +p38435 +sg25270 +S'Maude Valle' +p38436 +sa(dp38437 +g25267 +g27 +sg25268 +S'Santo Bulto (Santiago or San Diego)' +p38438 +sg25270 +S'Eldora P. Lorenzini' +p38439 +sa(dp38440 +g25267 +g27 +sg25268 +S'Santos (San Juan)' +p38441 +sg25270 +S"Carl O'Bergh" +p38442 +sa(dp38443 +g25273 +S'pen and black ink with brown wash' +p38444 +sg25267 +g27 +sg25275 +S'1757' +p38445 +sg25268 +S'Sixth Day, Second Story, Cisti the Baker and His Wine' +p38446 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38447 +sa(dp38448 +g25267 +g27 +sg25268 +S'Santo (Lady of Guadaloupe)' +p38449 +sg25270 +S"Carl O'Bergh" +p38450 +sa(dp38451 +g25267 +g27 +sg25268 +S'Santo (Nuestra-Sonora di la Luze)' +p38452 +sg25270 +S"Carl O'Bergh" +p38453 +sa(dp38454 +g25267 +g27 +sg25268 +S'Retabla of Holy Ghost' +p38455 +sg25270 +S'E. Boyd' +p38456 +sa(dp38457 +g25267 +g27 +sg25268 +S'Retabla of Holy Ghost' +p38458 +sg25270 +S'E. Boyd' +p38459 +sa(dp38460 +g25267 +g27 +sg25268 +S'Retablo - Virgin & Child' +p38461 +sg25270 +S'E. Boyd' +p38462 +sa(dp38463 +g25267 +g27 +sg25268 +S'Retablo-Santa Rita' +p38464 +sg25270 +S'E. Boyd' +p38465 +sa(dp38466 +g25267 +g27 +sg25268 +S'Santo' +p38467 +sg25270 +S'Maude Valle' +p38468 +sa(dp38469 +g25267 +g27 +sg25268 +S'Retablo' +p38470 +sg25270 +S'Ranka S. Woods' +p38471 +sa(dp38472 +g25267 +g27 +sg25268 +S'Retablo' +p38473 +sg25270 +S'Ranka S. Woods' +p38474 +sa(dp38475 +g25267 +g27 +sg25268 +S'Mission Chant' +p38476 +sg25270 +S'Ann Gene Buckley' +p38477 +sa(dp38478 +g25273 +S'pen and black ink with brown wash' +p38479 +sg25267 +g27 +sg25275 +S'1757' +p38480 +sg25268 +S'Sixth Day, Fifth Story, Forese da Rabatta and Giotto the Painter' +p38481 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38482 +sa(dp38483 +g25267 +g27 +sg25268 +S'Full Rigged Pack-Saddle' +p38484 +sg25270 +S'American 20th Century' +p38485 +sa(dp38486 +g25267 +g27 +sg25268 +S'Water Filter' +p38487 +sg25270 +S'Gordena Jackson' +p38488 +sa(dp38489 +g25267 +g27 +sg25268 +S'Baptismal Font with Top' +p38490 +sg25270 +S'George Seideneck' +p38491 +sa(dp38492 +g25267 +g27 +sg25268 +S'Baptismal Font' +p38493 +sg25270 +S'George Seideneck' +p38494 +sa(dp38495 +g25267 +g27 +sg25268 +S'Stone Baptismal Font' +p38496 +sg25270 +S'George Seideneck' +p38497 +sa(dp38498 +g25267 +g27 +sg25268 +S'Sandstone Holy Water Font' +p38499 +sg25270 +S'Rose Campbell-Gerke' +p38500 +sa(dp38501 +g25267 +g27 +sg25268 +S'Stone Baptismal Font' +p38502 +sg25270 +S'Rose Campbell-Gerke' +p38503 +sa(dp38504 +g25267 +g27 +sg25268 +S'Lavabo' +p38505 +sg25270 +S'Rose Campbell-Gerke' +p38506 +sa(dp38507 +g25267 +g27 +sg25268 +S'Carved Stone Wash Basin at Carmel Mission' +p38508 +sg25270 +S'Gordena Jackson' +p38509 +sa(dp38510 +g25267 +g27 +sg25268 +S'Carved Stone was Basin' +p38511 +sg25270 +S'Rose Campbell-Gerke' +p38512 +sa(dp38513 +g25273 +S'pen and black ink with brown wash' +p38514 +sg25267 +g27 +sg25275 +S'1757' +p38515 +sg25268 +S"Sixth Day, Seventh Story, Madonna Filipa's Escape" +p38516 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38517 +sa(dp38518 +g25267 +g27 +sg25268 +S'Baptismal Font at San Luis Rey Mission Church' +p38519 +sg25270 +S'Howard H. Sherman' +p38520 +sa(dp38521 +g25267 +g27 +sg25268 +S'Holy Water Font' +p38522 +sg25270 +S'Bill Bowen' +p38523 +sa(dp38524 +g25267 +g27 +sg25268 +S'Holy Water Font, Santa Barbara' +p38525 +sg25270 +S'W.J. Goodacre' +p38526 +sa(dp38527 +g25267 +g27 +sg25268 +S'Chapel Window' +p38528 +sg25270 +S'Vera Van Voris' +p38529 +sa(dp38530 +g25267 +g27 +sg25268 +S'Small Stone Fountain' +p38531 +sg25270 +S'Ursula Lauderdale' +p38532 +sa(dp38533 +g25267 +g27 +sg25268 +S'Keystone in Arch at San Juan Capistrano Mission' +p38534 +sg25270 +S'Randolph F. Miller' +p38535 +sa(dp38536 +g25267 +g27 +sg25268 +S'Keystone in Arch' +p38537 +sg25270 +S'Randolph F. Miller' +p38538 +sa(dp38539 +g25267 +g27 +sg25268 +S'Capital on Column' +p38540 +sg25270 +S'Gerald Transpota' +p38541 +sa(dp38542 +g25267 +g27 +sg25268 +S'Tombstone' +p38543 +sg25270 +S'J. Henry Marley' +p38544 +sa(dp38545 +g25267 +g27 +sg25268 +S'Ceiling Ornament, Sandstone' +p38546 +sg25270 +S'Edith Towner' +p38547 +sa(dp38548 +g25273 +S'pen and black ink with brown wash' +p38549 +sg25267 +g27 +sg25275 +S'1757' +p38550 +sg25268 +S'Sixth Day, Eighth Story, Fresco and His Niece' +p38551 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38552 +sa(dp38553 +g25267 +g27 +sg25268 +S'Cement Head Stone' +p38554 +sg25270 +S'Majel G. Claflin' +p38555 +sa(dp38556 +g25267 +g27 +sg25268 +S'Cross over Main Entrance to Mission' +p38557 +sg25270 +S'Geoffrey Holt' +p38558 +sa(dp38559 +g25267 +g27 +sg25268 +S'Cross over Main Entrance to Mission' +p38560 +sg25270 +S'Geoffrey Holt' +p38561 +sa(dp38562 +g25267 +g27 +sg25268 +S'Fragment from Original Architrave of Mission Church Facade' +p38563 +sg25270 +S'W.J. Goodacre' +p38564 +sa(dp38565 +g25267 +g27 +sg25268 +S'Keystone Design' +p38566 +sg25270 +S'William Herbert' +p38567 +sa(dp38568 +g25267 +g27 +sg25268 +S'Doorway, Main Entrance to Mission' +p38569 +sg25270 +S'Geoffrey Holt' +p38570 +sa(dp38571 +g25267 +g27 +sg25268 +S'Small Statue of Guadalupe Cut in Stone' +p38572 +sg25270 +S'Majel G. Claflin' +p38573 +sa(dp38574 +g25267 +g27 +sg25268 +S'"Faith, Hope and Charity": Stone Figures from Facade of Mission' +p38575 +sg25270 +S'Edward Jewett' +p38576 +sa(dp38577 +g25267 +g27 +sg25268 +S'Carving "Soul in Purgatory"' +p38578 +sg25270 +S'Ethel Dougan' +p38579 +sa(dp38580 +g25267 +S'This waterspout in the form of a human face, from the Mission of San Luis Rey de Francia, in San Diego County, and the one from Santa Barbara may both have been designed by the same person — Padre Antonio Peyri or his assistant. Padre Peyri was in\r\n charge of San Luis mission from its establishment in 1798 until 1832. The Mission of San Luis Rey, named after King Louis IX of France, was adorned with other stone waterspouts carved in the shape of animal or human faces. Such decoration derives from\r\n European tradition; in Spain, such faces can be seen as corbels, or architectural supports, on medieval churches.\n ' +p38581 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003cb.jpg' +p38582 +sg25268 +S'Water Spout' +p38583 +sg25270 +S'Raymond E. Noble' +p38584 +sa(dp38585 +g25273 +S'pen and black ink with brown wash' +p38586 +sg25267 +g27 +sg25275 +S'1757' +p38587 +sg25268 +S'Sixth Day, Ninth Story, Guido Cavalcanti and the Florentines' +p38588 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38589 +sa(dp38590 +g25267 +S'In California, most existing carving in the round is of stone, in contrast\r\n to the many wooden "bultos," or statues, of New Mexico. An example is this sandstone waterspout from the Santa Barbara mission. One of the reasons the site was selected for a\r\n mission, in fact, was the presence of abundant building stone. This piece may represent the grizzly bear, native to California. The waterspout was situated at the head of a stone laundry vat below a fountain in front of the mission.\r\n The overflow from the fountain was conducted to the laundry vat, emptying through the mouth of\r\n the bear into the basin of the vat. Indians brought their family wash to this basin, dipping garments in the water and beating them against the rim with paddles.\n ' +p38591 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003ca.jpg' +p38592 +sg25268 +S'Water Spout, Sandstone' +p38593 +sg25270 +S'Raymond E. Noble' +p38594 +sa(dp38595 +g25267 +g27 +sg25268 +S'Stone Fountain' +p38596 +sg25270 +S'Raymond E. Noble' +p38597 +sa(dp38598 +g25267 +g27 +sg25268 +S'Mission Fountain' +p38599 +sg25270 +S'Geoffrey Holt' +p38600 +sa(dp38601 +g25267 +g27 +sg25268 +S'Finial, from Reredos' +p38602 +sg25270 +S'R.J. De Freitas' +p38603 +sa(dp38604 +g25267 +g27 +sg25268 +S'Carved Wood Panel' +p38605 +sg25270 +S'Edward Jewett' +p38606 +sa(dp38607 +g25267 +g27 +sg25268 +S'Wooden Grave Marker' +p38608 +sg25270 +S'Majel G. Claflin' +p38609 +sa(dp38610 +g25267 +g27 +sg25268 +S'Wooden Cross used as Headstone' +p38611 +sg25270 +S'Majel G. Claflin' +p38612 +sa(dp38613 +g25267 +g27 +sg25268 +S'Hand Made & Painted Wooden Cross - Headstone' +p38614 +sg25270 +S'Majel G. Claflin' +p38615 +sa(dp38616 +g25267 +g27 +sg25268 +S'Wooden Cross used as Headstone (Hand Made)' +p38617 +sg25270 +S'Majel G. Claflin' +p38618 +sa(dp38619 +g25267 +g27 +sg25268 +S"Child's Grave with Hand Made Cross of Wood" +p38620 +sg25270 +S'Majel G. Claflin' +p38621 +sa(dp38622 +g25273 +S'pen and black ink with brown wash' +p38623 +sg25267 +g27 +sg25275 +S'1757' +p38624 +sg25268 +S"Sixth Day, Tenth Story, Brother Cipolla and the Angel Gabriel's Feather" +p38625 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38626 +sa(dp38627 +g25267 +g27 +sg25268 +S'Cedar Cross' +p38628 +sg25270 +S'Majel G. Claflin' +p38629 +sa(dp38630 +g25267 +g27 +sg25268 +S'Cross' +p38631 +sg25270 +S"Carl O'Bergh" +p38632 +sa(dp38633 +g25267 +g27 +sg25268 +S'Carved Cross - Grave' +p38634 +sg25270 +S'Majel G. Claflin' +p38635 +sa(dp38636 +g25267 +g27 +sg25268 +S'Crucifix' +p38637 +sg25270 +S'Pearl Davis' +p38638 +sa(dp38639 +g25267 +g27 +sg25268 +S'Processional Cross' +p38640 +sg25270 +S'William Hoffman' +p38641 +sa(dp38642 +g25267 +g27 +sg25268 +S"Child's Grave with Wooden Cross - Bottle Decorations" +p38643 +sg25270 +S'Majel G. Claflin' +p38644 +sa(dp38645 +g25267 +g27 +sg25268 +S'Straw Inlay Cross' +p38646 +sg25270 +S'Margery Parish' +p38647 +sa(dp38648 +g25267 +g27 +sg25268 +S'Processional Cross' +p38649 +sg25270 +S'David P Willoughby' +p38650 +sa(dp38651 +g25267 +g27 +sg25268 +S'Altar Chimes on Wheel' +p38652 +sg25270 +S'William Kieckhofel' +p38653 +sa(dp38654 +g25267 +g27 +sg25268 +S'Carved and Painted Keystone' +p38655 +sg25270 +S'Randolph F. Miller' +p38656 +sa(dp38657 +g25273 +S'pen and black ink with brown wash' +p38658 +sg25267 +g27 +sg25275 +S'1757' +p38659 +sg25268 +S"Seventh Day, First Story, Gianni Lotteringhi and His Wife's Conjurations" +p38660 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38661 +sa(dp38662 +g25267 +g27 +sg25268 +S'Keystone' +p38663 +sg25270 +S'Raymond E. Noble' +p38664 +sa(dp38665 +g25267 +g27 +sg25268 +S'Penitente Santo Entierro or (Saint in Earth)' +p38666 +sg25270 +S'Eldora P. Lorenzini' +p38667 +sa(dp38668 +g25267 +g27 +sg25268 +S'Cruciform - Bulto' +p38669 +sg25270 +S'Majel G. Claflin' +p38670 +sa(dp38671 +g25267 +g27 +sg25268 +S'Carved Wooden Crucifix' +p38672 +sg25270 +S'Vera Van Voris' +p38673 +sa(dp38674 +g25267 +g27 +sg25268 +S'Santo' +p38675 +sg25270 +S'Eldora P. Lorenzini' +p38676 +sa(dp38677 +g25267 +g27 +sg25268 +S'Santo (Bulto)' +p38678 +sg25270 +S'Polly Duncan' +p38679 +sa(dp38680 +g25267 +g27 +sg25268 +S'Santo-bulto' +p38681 +sg25270 +S'Eldora P. Lorenzini' +p38682 +sa(dp38683 +g25267 +g27 +sg25268 +S'Retablo' +p38684 +sg25270 +S'Eldora P. Lorenzini' +p38685 +sa(dp38686 +g25267 +g27 +sg25268 +S'Immaculate Conception' +p38687 +sg25270 +S'Majel G. Claflin' +p38688 +sa(dp38689 +g25267 +g27 +sg25268 +S'Retablo - Santa Maria' +p38690 +sg25270 +S'Majel G. Claflin' +p38691 +sa(dp38692 +g25273 +S'pen and black ink with brown wash' +p38693 +sg25267 +g27 +sg25275 +S'1757' +p38694 +sg25268 +S"Seventh Day, Third Story, Brother Rinaldo's Cure for the Worms" +p38695 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38696 +sa(dp38697 +g25267 +g27 +sg25268 +S'One painted, Wooden Candelabrum, with Dove' +p38698 +sg25270 +S'Majel G. Claflin' +p38699 +sa(dp38700 +g25267 +g27 +sg25268 +S'Cross' +p38701 +sg25270 +S"Carl O'Bergh" +p38702 +sa(dp38703 +g25267 +g27 +sg25268 +S'Bulto (Penitente Nazarine Christ)' +p38704 +sg25270 +S'Eldora P. Lorenzini' +p38705 +sa(dp38706 +g25267 +g27 +sg25268 +S'Santo Bulto' +p38707 +sg25270 +S'Eldora P. Lorenzini' +p38708 +sa(dp38709 +g25267 +g27 +sg25268 +S'Bulto, Priest Carrying Cross and Skull' +p38710 +sg25270 +S"Carl O'Bergh" +p38711 +sa(dp38712 +g25267 +g27 +sg25268 +S'Santo (St. Joseph)' +p38713 +sg25270 +S"Carl O'Bergh" +p38714 +sa(dp38715 +g25267 +g27 +sg25268 +S'Santo (Santa Rita)' +p38716 +sg25270 +S"Carl O'Bergh" +p38717 +sa(dp38718 +g25267 +S'In New Mexico, priests taught skills to local workers, who became known as "santeros." The latter produced ""santos," or religious images, that were either carved in the round — "bultos" — or painted on panels — "retablos." \r\n Whereas the California missions owned numbers of oil paintings, either imported from Mexico or the work of mission-trained artists, in New Mexico such paintings are rarely found. \r\n Instead, the artists were taught to paint with tempera on wooden panels that were first treated with gesso. A few panels were modeled in the gesso, like this one representing Our Lady of Sorrows. \r\n This type is rare and is believed to be from the early "santero" period in New Mexico. Such paintings have been dated by tree rings in the wood panels to the period 1765–1812.\n ' +p38719 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003cc.jpg' +p38720 +sg25268 +S'Santo' +p38721 +sg25270 +S'Maude Valle' +p38722 +sa(dp38723 +g25267 +g27 +sg25268 +S'San Acacio' +p38724 +sg25270 +S'Margery Parish' +p38725 +sa(dp38726 +g25267 +g27 +sg25268 +S'Santos Retablos' +p38727 +sg25270 +S'Maude Valle' +p38728 +sa(dp38729 +g25273 +S'pen and black ink with brown wash' +p38730 +sg25267 +g27 +sg25275 +S'1757' +p38731 +sg25268 +S"Seventh Day, Fourth Story, Monna Ghita's Trick upon Her Husband Tofano" +p38732 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38733 +sa(dp38734 +g25267 +g27 +sg25268 +S'Bulto (Santa Barbara)' +p38735 +sg25270 +S'Eldora P. Lorenzini' +p38736 +sa(dp38737 +g25267 +g27 +sg25268 +S'Santo, Bulto (Our Lady)' +p38738 +sg25270 +S'Polly Duncan' +p38739 +sa(dp38740 +g25267 +g27 +sg25268 +S'Bulto (San Acacio)' +p38741 +sg25270 +S'Eldora P. Lorenzini' +p38742 +sa(dp38743 +g25267 +g27 +sg25268 +S'Mission Chimes' +p38744 +sg25270 +S'Bertha Semple' +p38745 +sa(dp38746 +g25267 +g27 +sg25268 +S'Altar Chimes' +p38747 +sg25270 +S'Artist Information (' +p38748 +sa(dp38749 +g25267 +g27 +sg25268 +S'Saint George & the Dragon, Carved Out of Section of Plank - Painted' +p38750 +sg25270 +S'Majel G. Claflin' +p38751 +sa(dp38752 +g25267 +g27 +sg25268 +S'Retablo-Our Lady of Sorrows "Nuestra Senora de los Siete Dolores' +p38753 +sg25270 +S'Majel G. Claflin' +p38754 +sa(dp38755 +g25267 +g27 +sg25268 +S'Retablos' +p38756 +sg25270 +S'Ranka S. Woods' +p38757 +sa(dp38758 +g25267 +g27 +sg25268 +S'Santo (Bulto)' +p38759 +sg25270 +S'Polly Duncan' +p38760 +sa(dp38761 +g25267 +g27 +sg25268 +S'San Antonio de Padua, Santo bulto' +p38762 +sg25270 +S'Artist Information (' +p38763 +sa(dp38764 +g25273 +S'pen and black ink with brown wash' +p38765 +sg25267 +g27 +sg25275 +S'1757' +p38766 +sg25268 +S"Seventh Day, Fifth Story, The Husband's Confession of His Wife" +p38767 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38768 +sa(dp38769 +g25267 +g27 +sg25268 +S'Bulto' +p38770 +sg25270 +S"Carl O'Bergh" +p38771 +sa(dp38772 +g25267 +g27 +sg25268 +S'Crucifix' +p38773 +sg25270 +S"Carl O'Bergh" +p38774 +sa(dp38775 +g25267 +g27 +sg25268 +S'Crucifix' +p38776 +sg25270 +S"Carl O'Bergh" +p38777 +sa(dp38778 +g25267 +g27 +sg25268 +S'Santo Bulto (Santiago or San Diego)' +p38779 +sg25270 +S'Eldora P. Lorenzini' +p38780 +sa(dp38781 +g25267 +S'This is an exceptionally fine "bulto." It represents the Virgin and Child, a favorite subject of New Mexico artists. The Virgin, "Nuestra Señora," was portrayed in at least half a dozen versions that differ in their attributes. In this case, several attributes have been merged, such as the crescent on the skirt, which usually belongs to the praying Immaculata Virgin; and the outstretched arm, which is a gesture characteristic of the Madonna known as Our Lady of Mount Carmel.\r\n The tilt of the head and the gestures of the arms give particular liveliness to this "bulto." The upper part of the figure is solid; the lower part is a hollow framework built up on an armature of sticks, bound together, fastened to the waist and base, and covered with cloth dipped in gesso. The bell-shaped skirt gave a fine opportunity for decoration. Figures like this, about two feet high, were carried in processions at church festivals.\n ' +p38782 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003db.jpg' +p38783 +sg25268 +S'Nuestra Senora' +p38784 +sg25270 +S'Polly Duncan' +p38785 +sa(dp38786 +g25267 +g27 +sg25268 +S'Bulto (The Holy Family)' +p38787 +sg25270 +S'Eldora P. Lorenzini' +p38788 +sa(dp38789 +g25267 +g27 +sg25268 +S'Retablo (St. Longinus)' +p38790 +sg25270 +S'Eldora P. Lorenzini' +p38791 +sa(dp38792 +g25267 +g27 +sg25268 +S'"Santos Retablos"' +p38793 +sg25270 +S'Maude Valle' +p38794 +sa(dp38795 +g25267 +g27 +sg25268 +S'Bulto (San Miguel)' +p38796 +sg25270 +S'Eldora P. Lorenzini' +p38797 +sa(dp38798 +g25267 +g27 +sg25268 +S'Santo' +p38799 +sg25270 +S'Eldora P. Lorenzini' +p38800 +sa(dp38801 +g25273 +S'pen and black ink with brown wash' +p38802 +sg25267 +g27 +sg25275 +S'1757' +p38803 +sg25268 +S'Seventh Day, Sixth Story, Isabella, Leonetto and Lambertuccio' +p38804 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38805 +sa(dp38806 +g25267 +g27 +sg25268 +S'Retablo' +p38807 +sg25270 +S'Ranka S. Woods' +p38808 +sa(dp38809 +g25267 +g27 +sg25268 +S'Bulto (Saint with Hands Extended)' +p38810 +sg25270 +S"Carl O'Bergh" +p38811 +sa(dp38812 +g25267 +g27 +sg25268 +S'New Mexico, "Bulto", Polychromed Wooden Figure' +p38813 +sg25270 +S'E. Boyd' +p38814 +sa(dp38815 +g25267 +g27 +sg25268 +S'Tin-Mirror Candle Sconce' +p38816 +sg25270 +S'Majel G. Claflin' +p38817 +sa(dp38818 +g25267 +g27 +sg25268 +S'Penitente Cross, Carved Wood' +p38819 +sg25270 +S'Majel G. Claflin' +p38820 +sa(dp38821 +g25267 +g27 +sg25268 +S'Sanctum, Carved from Wood' +p38822 +sg25270 +S'Alexander Chudom' +p38823 +sa(dp38824 +g25267 +g27 +sg25268 +S'Shrine for statuette' +p38825 +sg25270 +S'Albert Pratt' +p38826 +sa(dp38827 +g25267 +g27 +sg25268 +S'Wooden Cross, Carved, Used as Headstone' +p38828 +sg25270 +S'Majel G. Claflin' +p38829 +sa(dp38830 +g25267 +g27 +sg25268 +S'Retablo - San Christopher' +p38831 +sg25270 +S'Majel G. Claflin' +p38832 +sa(dp38833 +g25267 +g27 +sg25268 +S'Wooden Santa' +p38834 +sg25270 +S'Syrena Swanson' +p38835 +sa(dp38836 +g25273 +S'pen and black ink with brown wash' +p38837 +sg25267 +g27 +sg25275 +S'1757' +p38838 +sg25268 +S'Seventh Day, Seventh Story, Beatrice Sends Her Lover to Beat Her Husband' +p38839 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38840 +sa(dp38841 +g25267 +g27 +sg25268 +S'Bulto-"Madonna"' +p38842 +sg25270 +S"Carl O'Bergh" +p38843 +sa(dp38844 +g25267 +g27 +sg25268 +S'Santos Retablos' +p38845 +sg25270 +S'Maude Valle' +p38846 +sa(dp38847 +g25267 +g27 +sg25268 +S'Station of The Cross No. 3: "Jesus Falls the First Time"' +p38848 +sg25270 +S'William Herbert' +p38849 +sa(dp38850 +g25267 +g27 +sg25268 +S'Carved and Painted Santo-San Jose' +p38851 +sg25270 +S'Majel G. Claflin' +p38852 +sa(dp38853 +g25267 +S'Muted color schemes are typical of "retablos" in New Mexico. This "retablo," depicting Saint Michael, is painted on gesso over cottonwood. In keeping with most other "retablos," the design of this piece is flat and abstract in feeling; decorative motifs like the drapery are simplified. In these respects it is akin to a folk art style; the origins of this type of painting, however, go back to the numerous devotional images painted by followers of the seventeenth-century Spanish painter Murillo.\n ' +p38854 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003d9.jpg' +p38855 +sg25268 +S'Santo (St. Michael)' +p38856 +sg25270 +S'Margery Parish' +p38857 +sa(dp38858 +g25267 +g27 +sg25268 +S'Red Wooden Cross used as Headstone' +p38859 +sg25270 +S'Majel G. Claflin' +p38860 +sa(dp38861 +g25267 +g27 +sg25268 +S'Wooden Retablo, San Antonio' +p38862 +sg25270 +S'Majel G. Claflin' +p38863 +sa(dp38864 +g25267 +g27 +sg25268 +S'Section of Wall Decoration-Mission San Francisco de Assis (Dolores)' +p38865 +sg25270 +S'Hilda Olson' +p38866 +sa(dp38867 +g25267 +g27 +sg25268 +S'Archangel "Bulto"' +p38868 +sg25270 +S'Majel G. Claflin' +p38869 +sa(dp38870 +g25267 +g27 +sg25268 +S'Retablo (Virgin)' +p38871 +sg25270 +S'Majel G. Claflin' +p38872 +sa(dp38873 +g25273 +S'pen and black ink with brown wash' +p38874 +sg25267 +g27 +sg25275 +S'1757' +p38875 +sg25268 +S'Seventh Day, Eighth Story, Arriguccio Outwitted by His Wife' +p38876 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38877 +sa(dp38878 +g25267 +g27 +sg25268 +S'San Miguel - The Archangel and Satan' +p38879 +sg25270 +S'E. Boyd' +p38880 +sa(dp38881 +g25267 +g27 +sg25268 +S'Santo' +p38882 +sg25270 +S'Maude Valle' +p38883 +sa(dp38884 +g25267 +S"The individual "santeros," or artists who created images of saints, are usually not known by name, but scholarly research has identified several distinct styles and artists. A painter whose work stands out was Molleno. This unidentified saint, possibly Saint Rosalia of Palermo, is shown on one of a series of altarpieces of a church. The panel exemplifies Molleno's early style, somewhat like traditional Spanish style, especially in the elongated figure and expressive hands. The color scheme, with its emphasis on bold, black outlines, is characteristic of Molleno's work.\n " +p38885 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003ce.jpg' +p38886 +sg25268 +S'Retablo' +p38887 +sg25270 +S"Carl O'Bergh" +p38888 +sa(dp38889 +g25267 +g27 +sg25268 +S'Map' +p38890 +sg25270 +S'Hal Blakeley' +p38891 +sa(dp38892 +g25267 +g27 +sg25268 +S'Arm Chair (Ecclesiastical)' +p38893 +sg25270 +S'Artist Information (' +p38894 +sa(dp38895 +g25267 +g27 +sg25268 +S'Hand-Carved Armchair' +p38896 +sg25270 +S'Cornelius Christoffels' +p38897 +sa(dp38898 +g25267 +g27 +sg25268 +S'Wooden Chest' +p38899 +sg25270 +S'Emile Cero' +p38900 +sa(dp38901 +g25267 +g27 +sg25268 +S'Iron Window Grille' +p38902 +sg25270 +S'Artist Information (' +p38903 +sa(dp38904 +g25267 +g27 +sg25268 +S'Iron Grille at Window: Restoration Drawing' +p38905 +sg25270 +S'Artist Information (' +p38906 +sa(dp38907 +g25267 +g27 +sg25268 +S'Sacristy Chair' +p38908 +sg25270 +S'Rose Campbell-Gerke' +p38909 +sa(dp38910 +g25273 +S'pen and black ink with brown wash' +p38911 +sg25267 +g27 +sg25275 +S'1757' +p38912 +sg25268 +S'Seventh Day, Ninth Story, Lidia Makes Her Husband Discredit His Own Eyes' +p38913 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38914 +sa(dp38915 +g25267 +g27 +sg25268 +S'Painted Keystone' +p38916 +sg25270 +S'Randolph F. Miller' +p38917 +sa(dp38918 +g25267 +g27 +sg25268 +S'Candlesticks' +p38919 +sg25270 +S'Edith Towner' +p38920 +sa(dp38921 +g25267 +g27 +sg25268 +S'Mission Bench' +p38922 +sg25270 +S'Edward Jewett' +p38923 +sa(dp38924 +g25267 +g27 +sg25268 +S'Wooden Bench' +p38925 +sg25270 +S'Edward Jewett' +p38926 +sa(dp38927 +g25267 +g27 +sg25268 +S'Folding Bed' +p38928 +sg25270 +S'Edward Jewett' +p38929 +sa(dp38930 +g25267 +g27 +sg25268 +S'Bed' +p38931 +sg25270 +S'Richard Reimer' +p38932 +sa(dp38933 +g25267 +g27 +sg25268 +S'Bed, Four Poster' +p38934 +sg25270 +S'Arthur P. Reynolds' +p38935 +sa(dp38936 +g25267 +g27 +sg25268 +S'Rawhide Bedstead' +p38937 +sg25270 +S'Edward Jewett' +p38938 +sa(dp38939 +g25267 +g27 +sg25268 +S'Bench' +p38940 +sg25270 +S'Hal Blakeley' +p38941 +sa(dp38942 +g25267 +g27 +sg25268 +S'Water Pitcher' +p38943 +sg25270 +S'Jessie M. Youngs' +p38944 +sa(dp38945 +g25273 +S'pen and black ink with brown wash' +p38946 +sg25267 +g27 +sg25275 +S'1757' +p38947 +sg25268 +S'Seventh Day, Tenth Story, Tingoccio, after Dying, Revisits His Friend Meuccio' +p38948 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p38949 +sa(dp38950 +g25267 +g27 +sg25268 +S'Crock' +p38951 +sg25270 +S'Nicholas Amantea' +p38952 +sa(dp38953 +g25267 +g27 +sg25268 +S'Molasses Jug' +p38954 +sg25270 +S'Giacinto Capelli' +p38955 +sa(dp38956 +g25267 +g27 +sg25268 +S'Crock' +p38957 +sg25270 +S'John Tarantino' +p38958 +sa(dp38959 +g25267 +g27 +sg25268 +S'Crock' +p38960 +sg25270 +S'Nicholas Amantea' +p38961 +sa(dp38962 +g25267 +g27 +sg25268 +S'Jar' +p38963 +sg25270 +S'Charles Caseau' +p38964 +sa(dp38965 +g25267 +g27 +sg25268 +S'Jug' +p38966 +sg25270 +S'Giacinto Capelli' +p38967 +sa(dp38968 +g25267 +g27 +sg25268 +S'Jug' +p38969 +sg25270 +S'Howard Lumbard' +p38970 +sa(dp38971 +g25267 +g27 +sg25268 +S'Jar' +p38972 +sg25270 +S'Yolande Delasser' +p38973 +sa(dp38974 +g25267 +g27 +sg25268 +S'Crock' +p38975 +sg25270 +S'Charles Caseau' +p38976 +sa(dp38977 +g25267 +g27 +sg25268 +S'Jug' +p38978 +sg25270 +S'John Dana' +p38979 +sa(dp38980 +g25268 +S'Eighth Day, First Story, Madonna Ambruogia Gives Her Husband the Two Hundred Florins She Was Given by Gulfardo in Payment for Her Favors' +p38981 +sg25270 +S'Charles-Nicolas Cochin II' +p38982 +sg25273 +S'graphite on vellum with a bordern line in pen and brown ink' +p38983 +sg25275 +S'c. 1757' +p38984 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a00060d5.jpg' +p38985 +sg25267 +g27 +sa(dp38986 +g25267 +g27 +sg25268 +S'Pitcher' +p38987 +sg25270 +S'Giacinto Capelli' +p38988 +sa(dp38989 +g25267 +g27 +sg25268 +S'Pitcher' +p38990 +sg25270 +S'Frank Fumagalli' +p38991 +sa(dp38992 +g25267 +g27 +sg25268 +S'Jug' +p38993 +sg25270 +S'Yolande Delasser' +p38994 +sa(dp38995 +g25267 +g27 +sg25268 +S'Jug' +p38996 +sg25270 +S'Yolande Delasser' +p38997 +sa(dp38998 +g25267 +g27 +sg25268 +S'Miniature Crock' +p38999 +sg25270 +S'Janet Riza' +p39000 +sa(dp39001 +g25267 +g27 +sg25268 +S'Jar' +p39002 +sg25270 +S'Yolande Delasser' +p39003 +sa(dp39004 +g25267 +g27 +sg25268 +S'Jar' +p39005 +sg25270 +S'Yolande Delasser' +p39006 +sa(dp39007 +g25267 +g27 +sg25268 +S'Water Jug' +p39008 +sg25270 +S'Yolande Delasser' +p39009 +sa(dp39010 +g25267 +g27 +sg25268 +S'Water Jug' +p39011 +sg25270 +S'Yolande Delasser' +p39012 +sa(dp39013 +g25267 +S'After about 1825, the simple, straightforward, functional forms of stoneware were enlivened by exuberantly painted decoration. Freehand designs in cobalt blue display new freedom and fluidity as seen in the broad, \n bold brushstrokes on this milk pan. The clarity and vigor of the floral design aptly complement the clean, fluid shape of the pot.\n ' +p39014 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003e7.jpg' +p39015 +sg25268 +S'Milk Pan' +p39016 +sg25270 +S'John Tarantino' +p39017 +sa(dp39018 +g25273 +S'pen and black ink with brown wash' +p39019 +sg25267 +g27 +sg25275 +S'1757' +p39020 +sg25268 +S"Eighth Day, Third Story, Calandrino's Search for the Heliotrope" +p39021 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39022 +sa(dp39023 +g25267 +g27 +sg25268 +S'Jug' +p39024 +sg25270 +S'Bisby Finley' +p39025 +sa(dp39026 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p39027 +sg25270 +S'Richard Barnett' +p39028 +sa(dp39029 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p39030 +sg25270 +S'Richard Barnett' +p39031 +sa(dp39032 +g25267 +g27 +sg25268 +S'Stoneware Pitcher' +p39033 +sg25270 +S'Richard Barnett' +p39034 +sa(dp39035 +g25267 +g27 +sg25268 +S'Five Gallon Churn' +p39036 +sg25270 +S'Clyde L. Cheney' +p39037 +sa(dp39038 +g25267 +g27 +sg25268 +S'Stoneware Bowl' +p39039 +sg25270 +S'Chris Makrenos' +p39040 +sa(dp39041 +g25267 +g27 +sg25268 +S'Five Gallon Churn' +p39042 +sg25270 +S'Richard Barnett' +p39043 +sa(dp39044 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p39045 +sg25270 +S'Richard Barnett' +p39046 +sa(dp39047 +g25267 +g27 +sg25268 +S'Jug with Stopper' +p39048 +sg25270 +S'Gertrude Lemberg' +p39049 +sa(dp39050 +g25267 +g27 +sg25268 +S'Wine Cask' +p39051 +sg25270 +S'Yolande Delasser' +p39052 +sa(dp39053 +g25273 +S'pen and black ink with brown wash' +p39054 +sg25267 +g27 +sg25275 +S'1757' +p39055 +sg25268 +S'Eighth Day, Fourth Story, The Provost Caught with the Ugly Maid' +p39056 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39057 +sa(dp39058 +g25267 +g27 +sg25268 +S'Pitcher' +p39059 +sg25270 +S'John Tarantino' +p39060 +sa(dp39061 +g25267 +g27 +sg25268 +S'Earthenware Jug' +p39062 +sg25270 +S'L. Vladimar Fischer' +p39063 +sa(dp39064 +g25267 +g27 +sg25268 +S'Crock' +p39065 +sg25270 +S'Aaron Fastovsky' +p39066 +sa(dp39067 +g25267 +g27 +sg25268 +S'Crock' +p39068 +sg25270 +S'John Tarantino' +p39069 +sa(dp39070 +g25267 +g27 +sg25268 +S'Crock' +p39071 +sg25270 +S'Jeanne Taylor' +p39072 +sa(dp39073 +g25267 +g27 +sg25268 +S'Jar' +p39074 +sg25270 +S'Yolande Delasser' +p39075 +sa(dp39076 +g25267 +g27 +sg25268 +S'Pot' +p39077 +sg25270 +S'Giacinto Capelli' +p39078 +sa(dp39079 +g25267 +g27 +sg25268 +S'Pitcher' +p39080 +sg25270 +S'George Loughridge' +p39081 +sa(dp39082 +g25267 +g27 +sg25268 +S'Crock' +p39083 +sg25270 +S'Charles Caseau' +p39084 +sa(dp39085 +g25267 +g27 +sg25268 +S'Jug' +p39086 +sg25270 +S'John Tarantino' +p39087 +sa(dp39088 +g25273 +S'pen and black ink with brown wash' +p39089 +sg25267 +g27 +sg25275 +S'1757' +p39090 +sg25268 +S'Eighth Day, Fifth Story, Three Young Sparks and a Judge' +p39091 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39092 +sa(dp39093 +g25267 +g27 +sg25268 +S'Jug (for Wine, Cider, or Vinegar)' +p39094 +sg25270 +S'John Tarantino' +p39095 +sa(dp39096 +g25267 +g27 +sg25268 +S'Crock' +p39097 +sg25270 +S'Isadore Goldberg' +p39098 +sa(dp39099 +g25267 +g27 +sg25268 +S'Stoneware Jug' +p39100 +sg25270 +S'Arthur Mathews' +p39101 +sa(dp39102 +g25267 +g27 +sg25268 +S'Batter Jug' +p39103 +sg25270 +S'John Tarantino' +p39104 +sa(dp39105 +g25267 +g27 +sg25268 +S'Batter Jug' +p39106 +sg25270 +S'John Tarantino' +p39107 +sa(dp39108 +g25267 +g27 +sg25268 +S'Crock' +p39109 +sg25270 +S'Elsie Wein' +p39110 +sa(dp39111 +g25267 +g27 +sg25268 +S'Jug' +p39112 +sg25270 +S'Anne Nemtzoff' +p39113 +sa(dp39114 +g25267 +g27 +sg25268 +S'Jug' +p39115 +sg25270 +S'Anne Nemtzoff' +p39116 +sa(dp39117 +g25267 +g27 +sg25268 +S'Water Crock' +p39118 +sg25270 +S'Vincent P. Rosel' +p39119 +sa(dp39120 +g25267 +g27 +sg25268 +S'Batter Pitcher' +p39121 +sg25270 +S'J. Howard Iams' +p39122 +sa(dp39123 +g25273 +S'pen and black ink with brown wash' +p39124 +sg25267 +g27 +sg25275 +S'1757' +p39125 +sg25268 +S"Eighth Day, Seventh Story, The Scholar's Revenge" +p39126 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39127 +sa(dp39128 +g25267 +g27 +sg25268 +S'4 Gal Crock' +p39129 +sg25270 +S'Betty Jacob' +p39130 +sa(dp39131 +g25267 +g27 +sg25268 +S'Field Jug' +p39132 +sg25270 +S'Robert Stewart' +p39133 +sa(dp39134 +g25267 +g27 +sg25268 +S'Gray Stoneware Crock' +p39135 +sg25270 +S'Charles Moss' +p39136 +sa(dp39137 +g25267 +g27 +sg25268 +S'Batter Pitcher' +p39138 +sg25270 +S'J. Howard Iams' +p39139 +sa(dp39140 +g25267 +g27 +sg25268 +S'Jug' +p39141 +sg25270 +S'Yolande Delasser' +p39142 +sa(dp39143 +g25267 +g27 +sg25268 +S'Stoneware Cream Pitcher' +p39144 +sg25270 +S'Margaret Stottlemeyer' +p39145 +sa(dp39146 +g25267 +g27 +sg25268 +S'Fruit Jar' +p39147 +sg25270 +S'Violet Hartenstein' +p39148 +sa(dp39149 +g25267 +g27 +sg25268 +S'Jar' +p39150 +sg25270 +S'Yolande Delasser' +p39151 +sa(dp39152 +g25267 +g27 +sg25268 +S'Pitcher' +p39153 +sg25270 +S'Isadore Goldberg' +p39154 +sa(dp39155 +g25267 +g27 +sg25268 +S'Pitcher' +p39156 +sg25270 +S'Carl Strehlau' +p39157 +sa(dp39158 +g25273 +S'pen and black ink with brown wash' +p39159 +sg25267 +g27 +sg25275 +S'1757' +p39160 +sg25268 +S'Eighth Day, Eighth Story, The Witty Revenge' +p39161 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39162 +sa(dp39163 +g25267 +g27 +sg25268 +S'Jar' +p39164 +sg25270 +S'Elsie Wein' +p39165 +sa(dp39166 +g25267 +g27 +sg25268 +S'Crock' +p39167 +sg25270 +S'Nicholas Amantea' +p39168 +sa(dp39169 +g25267 +g27 +sg25268 +S'Crock' +p39170 +sg25270 +S'John Tarantino' +p39171 +sa(dp39172 +g25267 +g27 +sg25268 +S'Jug' +p39173 +sg25270 +S'Giacinto Capelli' +p39174 +sa(dp39175 +g25267 +g27 +sg25268 +S'Crock' +p39176 +sg25270 +S'I. Domskoy Kallman' +p39177 +sa(dp39178 +g25267 +g27 +sg25268 +S'Pottery Jam Jar' +p39179 +sg25270 +S'Magnus S. Fossum' +p39180 +sa(dp39181 +g25267 +g27 +sg25268 +S'Jug' +p39182 +sg25270 +S'Samuel Sulkowitz' +p39183 +sa(dp39184 +g25267 +g27 +sg25268 +S'Jar' +p39185 +sg25270 +S'Jessica Price' +p39186 +sa(dp39187 +g25267 +g27 +sg25268 +S'Crock' +p39188 +sg25270 +S'Yolande Delasser' +p39189 +sa(dp39190 +g25267 +g27 +sg25268 +S'Jug' +p39191 +sg25270 +S'Artist Information (' +p39192 +sa(dp39193 +g25273 +S'pen and black ink with brown wash' +p39194 +sg25267 +g27 +sg25275 +S'1757' +p39195 +sg25268 +S"Eighth Day, Tenth Story, The Merchant's Revenge on the Courtesan" +p39196 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39197 +sa(dp39198 +g25267 +g27 +sg25268 +S'Gray Pottery Jar' +p39199 +sg25270 +S'Gerald Scalise' +p39200 +sa(dp39201 +g25267 +g27 +sg25268 +S'Jar' +p39202 +sg25270 +S'John Dana' +p39203 +sa(dp39204 +g25267 +g27 +sg25268 +S'Design' +p39205 +sg25270 +S'Hedwig Emanuel' +p39206 +sa(dp39207 +g25267 +g27 +sg25268 +S'Pitcher' +p39208 +sg25270 +S'Hedwig Emanuel' +p39209 +sa(dp39210 +g25267 +g27 +sg25268 +S'Teapot' +p39211 +sg25270 +S'American 20th Century' +p39212 +sa(dp39213 +g25267 +g27 +sg25268 +S'Churn' +p39214 +sg25270 +S'Mary Berner' +p39215 +sa(dp39216 +g25267 +g27 +sg25268 +S'Pitcher' +p39217 +sg25270 +S'Anna Aloisi' +p39218 +sa(dp39219 +g25267 +g27 +sg25268 +S'Stone Jar' +p39220 +sg25270 +S'Edna C. Rex' +p39221 +sa(dp39222 +g25267 +g27 +sg25268 +S'Flask' +p39223 +sg25270 +S'John Tarantino' +p39224 +sa(dp39225 +g25267 +g27 +sg25268 +S'Pitcher' +p39226 +sg25270 +S'Gertrude Lemberg' +p39227 +sa(dp39228 +g25273 +S'pen and black ink with brown wash' +p39229 +sg25267 +g27 +sg25275 +S'1757' +p39230 +sg25268 +S'Ninth Day, Second Story, The Abbess, the Nun and the Breeches' +p39231 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39232 +sa(dp39233 +g25267 +g27 +sg25268 +S'Pitcher' +p39234 +sg25270 +S'John Fisk' +p39235 +sa(dp39236 +g25267 +g27 +sg25268 +S'Wall Pocket for Flowers' +p39237 +sg25270 +S'Gertrude Lemberg' +p39238 +sa(dp39239 +g25267 +g27 +sg25268 +S'Flask' +p39240 +sg25270 +S'John Tarantino' +p39241 +sa(dp39242 +g25267 +g27 +sg25268 +S'Flask' +p39243 +sg25270 +S'Alvin Shiren' +p39244 +sa(dp39245 +g25267 +g27 +sg25268 +S'Pitcher' +p39246 +sg25270 +S'Charles Caseau' +p39247 +sa(dp39248 +g25267 +g27 +sg25268 +S'Plate' +p39249 +sg25270 +S'Gertrude Lemberg' +p39250 +sa(dp39251 +g25267 +g27 +sg25268 +S'Pie Plate' +p39252 +sg25270 +S'Meyer Goldbaum' +p39253 +sa(dp39254 +g25267 +g27 +sg25268 +S'Jug' +p39255 +sg25270 +S'Nicholas Amantea' +p39256 +sa(dp39257 +g25267 +g27 +sg25268 +S'Jar' +p39258 +sg25270 +S'American 20th Century' +p39259 +sa(dp39260 +g25267 +g27 +sg25268 +S'Jug' +p39261 +sg25270 +S'Salvatore Borrazzo' +p39262 +sa(dp39263 +g25273 +S'graphite' +p39264 +sg25267 +g27 +sg25275 +S'1757' +p39265 +sg25268 +S'Ninth Day, Fourth Story, Fortarrigo Gets His Master Apprehended as a Thief' +p39266 +sg25270 +S'Charles Eisen' +p39267 +sa(dp39268 +g25267 +g27 +sg25268 +S'Jar' +p39269 +sg25270 +S'Francis Bruner' +p39270 +sa(dp39271 +g25267 +g27 +sg25268 +S'Quart Stoneware Preserving Jar' +p39272 +sg25270 +S'George V. Vezolles' +p39273 +sa(dp39274 +g25267 +g27 +sg25268 +S'Pitcher' +p39275 +sg25270 +S'C.W. Perky' +p39276 +sa(dp39277 +g25267 +g27 +sg25268 +S'Pitcher' +p39278 +sg25270 +S'Max Soltmann' +p39279 +sa(dp39280 +g25267 +g27 +sg25268 +S'Crock' +p39281 +sg25270 +S'Paul Poffinbarger' +p39282 +sa(dp39283 +g25267 +g27 +sg25268 +S'Pitcher' +p39284 +sg25270 +S'Frank Fumagalli' +p39285 +sa(dp39286 +g25267 +g27 +sg25268 +S'Crock' +p39287 +sg25270 +S'Nicholas Amantea' +p39288 +sa(dp39289 +g25267 +g27 +sg25268 +S'Crock' +p39290 +sg25270 +S'John Tarantino' +p39291 +sa(dp39292 +g25267 +g27 +sg25268 +S'Gray Stone Crockery Jug' +p39293 +sg25270 +S'Henrietta S. Hukill' +p39294 +sa(dp39295 +g25267 +g27 +sg25268 +S'Pitcher' +p39296 +sg25270 +S'John Tarantino' +p39297 +sa(dp39298 +g25273 +S'pen and black ink with brown wash' +p39299 +sg25267 +g27 +sg25275 +S'1757' +p39300 +sg25268 +S'Ninth Day, Seventh Story, The Termigant and the Wolf' +p39301 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39302 +sa(dp39303 +g25267 +g27 +sg25268 +S'Jug for Batter' +p39304 +sg25270 +S'Frank Fumagalli' +p39305 +sa(dp39306 +g25267 +g27 +sg25268 +S'Crock' +p39307 +sg25270 +S'Yolande Delasser' +p39308 +sa(dp39309 +g25267 +g27 +sg25268 +S'Crock' +p39310 +sg25270 +S'Isadore Goldberg' +p39311 +sa(dp39312 +g25267 +g27 +sg25268 +S'Crock' +p39313 +sg25270 +S'Isadore Goldberg' +p39314 +sa(dp39315 +g25267 +g27 +sg25268 +S'Jug' +p39316 +sg25270 +S'Yolande Delasser' +p39317 +sa(dp39318 +g25267 +g27 +sg25268 +S'Crock' +p39319 +sg25270 +S'Nicholas Amantea' +p39320 +sa(dp39321 +g25267 +g27 +sg25268 +S'Crock' +p39322 +sg25270 +S'Annie B. Johnston' +p39323 +sa(dp39324 +g25267 +g27 +sg25268 +S'Churn' +p39325 +sg25270 +S'George Loughridge' +p39326 +sa(dp39327 +g25267 +g27 +sg25268 +S'Churn' +p39328 +sg25270 +S'Yolande Delasser' +p39329 +sa(dp39330 +g25267 +g27 +sg25268 +S'Churn' +p39331 +sg25270 +S'Frank Fumagalli' +p39332 +sa(dp39333 +g25273 +S'pen and black ink with brown wash' +p39334 +sg25267 +g27 +sg25275 +S'1757' +p39335 +sg25268 +S"Ninth Day, Ninth Story, Solomon's Advice to Two Young Men" +p39336 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39337 +sa(dp39338 +g25267 +g27 +sg25268 +S'Jug' +p39339 +sg25270 +S'Yolande Delasser' +p39340 +sa(dp39341 +g25267 +g27 +sg25268 +S'Churn' +p39342 +sg25270 +S'David S. De Vault' +p39343 +sa(dp39344 +g25267 +g27 +sg25268 +S'Jug' +p39345 +sg25270 +S'Nicholas Amantea' +p39346 +sa(dp39347 +g25267 +g27 +sg25268 +S'Jug' +p39348 +sg25270 +S'Nicholas Amantea' +p39349 +sa(dp39350 +g25267 +g27 +sg25268 +S'Jar' +p39351 +sg25270 +S'Nicholas Amantea' +p39352 +sa(dp39353 +g25267 +g27 +sg25268 +S'Jar' +p39354 +sg25270 +S'Yolande Delasser' +p39355 +sa(dp39356 +g25267 +g27 +sg25268 +S'Jar' +p39357 +sg25270 +S'Yolande Delasser' +p39358 +sa(dp39359 +g25267 +g27 +sg25268 +S'Jug' +p39360 +sg25270 +S'Yolande Delasser' +p39361 +sa(dp39362 +g25267 +g27 +sg25268 +S'Jug' +p39363 +sg25270 +S'John Dana' +p39364 +sa(dp39365 +g25267 +g27 +sg25268 +S'Jug' +p39366 +sg25270 +S'Nicholas Amantea' +p39367 +sa(dp39368 +g25273 +S'pen and black ink with brown wash' +p39369 +sg25267 +g27 +sg25275 +S'1757' +p39370 +sg25268 +S'Tenth Day, Frontispiece' +p39371 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39372 +sa(dp39373 +g25267 +g27 +sg25268 +S'Jug' +p39374 +sg25270 +S'Charles Garjian' +p39375 +sa(dp39376 +g25267 +g27 +sg25268 +S'Jug' +p39377 +sg25270 +S'Yolande Delasser' +p39378 +sa(dp39379 +g25267 +g27 +sg25268 +S'Jug' +p39380 +sg25270 +S'Nicholas Amantea' +p39381 +sa(dp39382 +g25267 +g27 +sg25268 +S'Jug' +p39383 +sg25270 +S'Nicholas Amantea' +p39384 +sa(dp39385 +g25267 +g27 +sg25268 +S'Jar' +p39386 +sg25270 +S'John Tarantino' +p39387 +sa(dp39388 +g25267 +g27 +sg25268 +S'Crock' +p39389 +sg25270 +S'Daniel Fletcher' +p39390 +sa(dp39391 +g25267 +g27 +sg25268 +S'Stone Fruit Jar with Star' +p39392 +sg25270 +S'Margaret Stottlemeyer' +p39393 +sa(dp39394 +g25267 +g27 +sg25268 +S'Jug' +p39395 +sg25270 +S'Elsie Wein' +p39396 +sa(dp39397 +g25267 +g27 +sg25268 +S'One Gallon Jug' +p39398 +sg25270 +S'A.R. Tolman' +p39399 +sa(dp39400 +g25267 +g27 +sg25268 +S'Jug' +p39401 +sg25270 +S'Yolande Delasser' +p39402 +sa(dp39403 +g25273 +S'pen and black ink with brown wash' +p39404 +sg25267 +g27 +sg25275 +S'1757' +p39405 +sg25268 +S"Tenth Day, First Story, Ruggieri de' Figiovanni and the King of Spain" +p39406 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39407 +sa(dp39408 +g25267 +g27 +sg25268 +S'Jar' +p39409 +sg25270 +S'Howell Rosenbaum' +p39410 +sa(dp39411 +g25267 +g27 +sg25268 +S'Pitcher' +p39412 +sg25270 +S'Roberta Spicer' +p39413 +sa(dp39414 +g25267 +g27 +sg25268 +S'Server Dish' +p39415 +sg25270 +S'Joseph Sudek' +p39416 +sa(dp39417 +g25267 +g27 +sg25268 +S'Pitcher' +p39418 +sg25270 +S'Joseph Sudek' +p39419 +sa(dp39420 +g25267 +g27 +sg25268 +S'Mold' +p39421 +sg25270 +S'Roberta Spicer' +p39422 +sa(dp39423 +g25267 +g27 +sg25268 +S'Mold' +p39424 +sg25270 +S'Roberta Spicer' +p39425 +sa(dp39426 +g25267 +g27 +sg25268 +S'Compote' +p39427 +sg25270 +S'Bena Mayer' +p39428 +sa(dp39429 +g25267 +g27 +sg25268 +S'Water Pitcher' +p39430 +sg25270 +S'Edward White' +p39431 +sa(dp39432 +g25267 +g27 +sg25268 +S'Inkwell' +p39433 +sg25270 +S'Jessie M. Youngs' +p39434 +sa(dp39435 +g25267 +g27 +sg25268 +S'Inkwell' +p39436 +sg25270 +S'Frank Fumagalli' +p39437 +sa(dp39438 +g25273 +S'pen and black ink with brown wash' +p39439 +sg25267 +g27 +sg25275 +S'1757' +p39440 +sg25268 +S'Tenth Day, Second Story, The Robber Tacco Cures the Abbot of Cligni' +p39441 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39442 +sa(dp39443 +g25267 +g27 +sg25268 +S'Inkwell' +p39444 +sg25270 +S'Frank Fumagalli' +p39445 +sa(dp39446 +g25267 +g27 +sg25268 +S'Ink Bottle' +p39447 +sg25270 +S'John Jordan' +p39448 +sa(dp39449 +g25267 +g27 +sg25268 +S'Punch Bowl' +p39450 +sg25270 +S'Charles Caseau' +p39451 +sa(dp39452 +g25267 +g27 +sg25268 +S'Bowl: "Sinking of the Maine"' +p39453 +sg25270 +S'Edith Magnette' +p39454 +sa(dp39455 +g25267 +g27 +sg25268 +S'Pitcher' +p39456 +sg25270 +S'Rolland Livingstone' +p39457 +sa(dp39458 +g25267 +g27 +sg25268 +S'Pitcher' +p39459 +sg25270 +S'Charles Caseau' +p39460 +sa(dp39461 +g25267 +g27 +sg25268 +S'Punch Bowl' +p39462 +sg25270 +S'Rolland Livingstone' +p39463 +sa(dp39464 +g25267 +g27 +sg25268 +S'Pitcher' +p39465 +sg25270 +S'Francis Law Durand' +p39466 +sa(dp39467 +g25267 +g27 +sg25268 +S'Small Crock' +p39468 +sg25270 +S'George Loughridge' +p39469 +sa(dp39470 +g25267 +g27 +sg25268 +S'Pottery Jug' +p39471 +sg25270 +S'Frances Godfrey' +p39472 +sa(dp39473 +g25273 +S'pen and black ink with brown wash' +p39474 +sg25267 +g27 +sg25275 +S'1757' +p39475 +sg25268 +S"Tenth Day, Third Story, Mitridanes Overcome by Nathan's Generosity" +p39476 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39477 +sa(dp39478 +g25267 +g27 +sg25268 +S'Jar' +p39479 +sg25270 +S'Charles Caseau' +p39480 +sa(dp39481 +g25267 +g27 +sg25268 +S'Churn' +p39482 +sg25270 +S'Magnus S. Fossum' +p39483 +sa(dp39484 +g25267 +g27 +sg25268 +S'Crock' +p39485 +sg25270 +S'John Tarantino' +p39486 +sa(dp39487 +g25267 +g27 +sg25268 +S'Churn' +p39488 +sg25270 +S'Samuel Sulkowitz' +p39489 +sa(dp39490 +g25267 +g27 +sg25268 +S'Jug' +p39491 +sg25270 +S'Nicholas Amantea' +p39492 +sa(dp39493 +g25267 +g27 +sg25268 +S'Molasses Jug' +p39494 +sg25270 +S'Samuel Faigin' +p39495 +sa(dp39496 +g25267 +g27 +sg25268 +S'Yellow Stoneware Jug' +p39497 +sg25270 +S'Herman O. Stroh' +p39498 +sa(dp39499 +g25267 +g27 +sg25268 +S'Jug' +p39500 +sg25270 +S'William Frank' +p39501 +sa(dp39502 +g25267 +g27 +sg25268 +S'Vase' +p39503 +sg25270 +S'Anne Nemtzoff' +p39504 +sa(dp39505 +g25267 +g27 +sg25268 +S'Jug' +p39506 +sg25270 +S'Aaron Fastovsky' +p39507 +sa(dp39508 +g25273 +S'pen and black ink with brown wash' +p39509 +sg25267 +g27 +sg25275 +S'1757' +p39510 +sg25268 +S"Tenth Day, Fourth Story, Gentil de Carisendi's Generosity" +p39511 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39512 +sa(dp39513 +g25267 +g27 +sg25268 +S'Crock' +p39514 +sg25270 +S'Nicholas Amantea' +p39515 +sa(dp39516 +g25267 +g27 +sg25268 +S'Crock' +p39517 +sg25270 +S'Yolande Delasser' +p39518 +sa(dp39519 +g25267 +g27 +sg25268 +S'Crock' +p39520 +sg25270 +S'Charles Caseau' +p39521 +sa(dp39522 +g25267 +g27 +sg25268 +S'Vase' +p39523 +sg25270 +S'John Cutting' +p39524 +sa(dp39525 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p39526 +sg25270 +S'John Fisk' +p39527 +sa(dp39528 +g25267 +g27 +sg25268 +S'Pottery Jug' +p39529 +sg25270 +S'Michael J. Miceli' +p39530 +sa(dp39531 +g25267 +g27 +sg25268 +S'Cream Pitcher and Sugar Bowl' +p39532 +sg25270 +S'Frank Nelson' +p39533 +sa(dp39534 +g25267 +g27 +sg25268 +S'Pottery Ornament of Little Red Riding Hood' +p39535 +sg25270 +S'Dana Bartlett' +p39536 +sa(dp39537 +g25267 +g27 +sg25268 +S'Pitcher' +p39538 +sg25270 +S'Barnes' +p39539 +sa(dp39540 +g25267 +g27 +sg25268 +S'Pitcher' +p39541 +sg25270 +S'Barnes' +p39542 +sa(dp39543 +g25273 +S'pen and black ink with brown wash' +p39544 +sg25267 +g27 +sg25275 +S'1757' +p39545 +sg25268 +S"Tenth Day, Fifth Story, Ansaldo's Garden" +p39546 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39547 +sa(dp39548 +g25267 +g27 +sg25268 +S'Pitcher' +p39549 +sg25270 +S'Barnes' +p39550 +sa(dp39551 +g25267 +g27 +sg25268 +S'Majolica Pitcher' +p39552 +sg25270 +S'Della Button' +p39553 +sa(dp39554 +g25267 +g27 +sg25268 +S'Jar' +p39555 +sg25270 +S'Harry Mann Waddell' +p39556 +sa(dp39557 +g25267 +g27 +sg25268 +S'Owl Pitcher' +p39558 +sg25270 +S'Amos C. Brinton' +p39559 +sa(dp39560 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p39561 +sg25270 +S'Edward L. Loper' +p39562 +sa(dp39563 +g25267 +g27 +sg25268 +S'Water Pitcher' +p39564 +sg25270 +S'Al Curry' +p39565 +sa(dp39566 +g25267 +g27 +sg25268 +S'Dog Pitcher' +p39567 +sg25270 +S'Ernest A. Towers, Jr.' +p39568 +sa(dp39569 +g25267 +g27 +sg25268 +S'Possum Pitcher' +p39570 +sg25270 +S'Ernest A. Towers, Jr.' +p39571 +sa(dp39572 +g25267 +g27 +sg25268 +S'Pitcher' +p39573 +sg25270 +S'Carl Buergerniss' +p39574 +sa(dp39575 +g25267 +g27 +sg25268 +S'Crockery Pitcher' +p39576 +sg25270 +S'Doris Hollingsworth' +p39577 +sa(dp39578 +g25273 +S'pen and black ink with brown wash' +p39579 +sg25267 +g27 +sg25275 +S'1757' +p39580 +sg25268 +S"Tenth Day, Sixth Story, King Carlo and Uberti's Daughters" +p39581 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39582 +sa(dp39583 +g25267 +g27 +sg25268 +S'Plate' +p39584 +sg25270 +S'Dorothy Posten' +p39585 +sa(dp39586 +g25267 +g27 +sg25268 +S'Pitcher' +p39587 +sg25270 +S'Samuel O. Klein' +p39588 +sa(dp39589 +g25267 +g27 +sg25268 +S'Fish Pitcher' +p39590 +sg25270 +S'Edward L. Loper' +p39591 +sa(dp39592 +g25267 +g27 +sg25268 +S'Majolica Pitcher' +p39593 +sg25270 +S'Vina Dishon' +p39594 +sa(dp39595 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p39596 +sg25270 +S'Herbert Marsh' +p39597 +sa(dp39598 +g25267 +g27 +sg25268 +S'Pitcher' +p39599 +sg25270 +S'Arthur Wegg' +p39600 +sa(dp39601 +g25267 +g27 +sg25268 +S'Pitcher' +p39602 +sg25270 +S'Samuel O. Klein' +p39603 +sa(dp39604 +g25267 +g27 +sg25268 +S'Pitcher' +p39605 +sg25270 +S'David P Willoughby' +p39606 +sa(dp39607 +g25267 +g27 +sg25268 +S'Plate' +p39608 +sg25270 +S'J. Howard Iams' +p39609 +sa(dp39610 +g25267 +g27 +sg25268 +S'Bowl' +p39611 +sg25270 +S'John Cutting' +p39612 +sa(dp39613 +g25273 +S'pen and black ink with brown wash' +p39614 +sg25267 +g27 +sg25275 +S'1757' +p39615 +sg25268 +S"Tenth Day, Seventh Story, King Petro and the Apothecary's Daughter" +p39616 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39617 +sa(dp39618 +g25267 +g27 +sg25268 +S'Teapot' +p39619 +sg25270 +S'Samuel O. Klein' +p39620 +sa(dp39621 +g25267 +g27 +sg25268 +S'Wedgewood Teapot' +p39622 +sg25270 +S'Herbert Marsh' +p39623 +sa(dp39624 +g25267 +g27 +sg25268 +S'Bowl' +p39625 +sg25270 +S'John Cutting' +p39626 +sa(dp39627 +g25267 +g27 +sg25268 +S'Bowl' +p39628 +sg25270 +S'J. Howard Iams' +p39629 +sa(dp39630 +g25267 +g27 +sg25268 +S'Server Dish' +p39631 +sg25270 +S'Joseph Sudek' +p39632 +sa(dp39633 +g25267 +g27 +sg25268 +S'Syrup Pitcher' +p39634 +sg25270 +S'Grace Halpin' +p39635 +sa(dp39636 +g25267 +g27 +sg25268 +S'Pitcher' +p39637 +sg25270 +S'Louis Annino' +p39638 +sa(dp39639 +g25267 +g27 +sg25268 +S'Water Pitcher' +p39640 +sg25270 +S'Carl Buergerniss' +p39641 +sa(dp39642 +g25267 +g27 +sg25268 +S'Parian Ware Syrup Pitcher' +p39643 +sg25270 +S'Richard Whitaker' +p39644 +sa(dp39645 +g25267 +g27 +sg25268 +S'Parian Pitcher' +p39646 +sg25270 +S'John Matulis' +p39647 +sa(dp39648 +g25273 +S'pen and black ink with brown wash' +p39649 +sg25267 +g27 +sg25275 +S'1757' +p39650 +sg25268 +S'Tenth Day, Eighth Story, Sophronia, Gisippo and Tito Quintio Fulvo' +p39651 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39652 +sa(dp39653 +g25267 +g27 +sg25268 +S'Syrup Pitcher' +p39654 +sg25270 +S'Cleo Lovett' +p39655 +sa(dp39656 +g25267 +g27 +sg25268 +S'Pitcher' +p39657 +sg25270 +S'Louis Annino' +p39658 +sa(dp39659 +g25267 +g27 +sg25268 +S'Syrup Jug' +p39660 +sg25270 +S'Anna Aloisi' +p39661 +sa(dp39662 +g25267 +g27 +sg25268 +S'Pitcher' +p39663 +sg25270 +S'Anna Aloisi' +p39664 +sa(dp39665 +g25267 +g27 +sg25268 +S'Syrup Jug' +p39666 +sg25270 +S'John Dana' +p39667 +sa(dp39668 +g25267 +g27 +sg25268 +S'Water Pitcher' +p39669 +sg25270 +S'John Dana' +p39670 +sa(dp39671 +g25267 +g27 +sg25268 +S'Plate' +p39672 +sg25270 +S'Beverly Chichester' +p39673 +sa(dp39674 +g25267 +g27 +sg25268 +S'Plate' +p39675 +sg25270 +S'Florian Rokita' +p39676 +sa(dp39677 +g25267 +g27 +sg25268 +S'Plate' +p39678 +sg25270 +S'Erwin Schwabe' +p39679 +sa(dp39680 +g25267 +g27 +sg25268 +S'Plate' +p39681 +sg25270 +S'Katherine Hastings' +p39682 +sa(dp39683 +g25268 +S'Tenth Day, Ninth Story: Saladin Bestows Rich Gifts on the Sleeping Torello' +p39684 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39685 +sg25273 +S'pen and black ink with brown wash over touches of red chalk on laid paper' +p39686 +sg25275 +S'c. 1757' +p39687 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a00060d0.jpg' +p39688 +sg25267 +g27 +sa(dp39689 +g25267 +g27 +sg25268 +S'Plate' +p39690 +sg25270 +S'Edith Olney' +p39691 +sa(dp39692 +g25267 +g27 +sg25268 +S'Plate' +p39693 +sg25270 +S'William Kerby' +p39694 +sa(dp39695 +g25267 +g27 +sg25268 +S'Teapot' +p39696 +sg25270 +S'Charles Moss' +p39697 +sa(dp39698 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p39699 +sg25270 +S'Elmer R. Kottcamp' +p39700 +sa(dp39701 +g25267 +g27 +sg25268 +S'Teapot' +p39702 +sg25270 +S'Edward White' +p39703 +sa(dp39704 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p39705 +sg25270 +S'Arthur Wegg' +p39706 +sa(dp39707 +g25267 +g27 +sg25268 +S'Bowl' +p39708 +sg25270 +S'Marie Alain' +p39709 +sa(dp39710 +g25267 +g27 +sg25268 +S'Bowl with Lid' +p39711 +sg25270 +S'Eva Wilson' +p39712 +sa(dp39713 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p39714 +sg25270 +S'J. Howard Iams' +p39715 +sa(dp39716 +g25267 +g27 +sg25268 +S'Plate' +p39717 +sg25270 +S'American 20th Century' +p39718 +sa(dp39719 +g25273 +S'pen and black ink with brown wash' +p39720 +sg25267 +g27 +sg25275 +S'1757' +p39721 +sg25268 +S'Tenth Day, Tenth Story, Griselda' +p39722 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39723 +sa(dp39724 +g25267 +g27 +sg25268 +S'Cup' +p39725 +sg25270 +S'Edward White' +p39726 +sa(dp39727 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p39728 +sg25270 +S'Edward White' +p39729 +sa(dp39730 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p39731 +sg25270 +S'Richard Barnett' +p39732 +sa(dp39733 +g25267 +g27 +sg25268 +S'Parian Ware Tie Back' +p39734 +sg25270 +S'Richard Barnett' +p39735 +sa(dp39736 +g25267 +g27 +sg25268 +S'Oval Shaving Mug' +p39737 +sg25270 +S'J. Howard Iams' +p39738 +sa(dp39739 +g25267 +g27 +sg25268 +S'Porcelain Vase' +p39740 +sg25270 +S'Herbert Gallager' +p39741 +sa(dp39742 +g25267 +g27 +sg25268 +S'China Plate' +p39743 +sg25270 +S'Geoffrey Holt' +p39744 +sa(dp39745 +g25267 +g27 +sg25268 +S'Vase' +p39746 +sg25270 +S'Cleo Lovett' +p39747 +sa(dp39748 +g25267 +g27 +sg25268 +S'Swan' +p39749 +sg25270 +S'Cleo Lovett' +p39750 +sa(dp39751 +g25267 +g27 +sg25268 +S'Vase' +p39752 +sg25270 +S'J. Howard Iams' +p39753 +sa(dp39754 +g25273 +S'pen and black ink with brown wash' +p39755 +sg25267 +g27 +sg25275 +S'1757' +p39756 +sg25268 +S'Title Page for Volume III of Boccaccio\'s "Decamerone"' +p39757 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39758 +sa(dp39759 +g25267 +g27 +sg25268 +S"China Invalid's Cup" +p39760 +sg25270 +S'Vincent P. Rosel' +p39761 +sa(dp39762 +g25267 +g27 +sg25268 +S'Egg Cup' +p39763 +sg25270 +S'Roberta Spicer' +p39764 +sa(dp39765 +g25267 +g27 +sg25268 +S'Cup and Saucer' +p39766 +sg25270 +S'William Ludwig' +p39767 +sa(dp39768 +g25267 +g27 +sg25268 +S'Cup' +p39769 +sg25270 +S'Joseph Sudek' +p39770 +sa(dp39771 +g25267 +g27 +sg25268 +S'Bowl' +p39772 +sg25270 +S'Geoffrey Holt' +p39773 +sa(dp39774 +g25267 +g27 +sg25268 +S'Platter' +p39775 +sg25270 +S'Joseph Sudek' +p39776 +sa(dp39777 +g25267 +g27 +sg25268 +S'Platter' +p39778 +sg25270 +S'Joseph Sudek' +p39779 +sa(dp39780 +g25267 +g27 +sg25268 +S'Platter' +p39781 +sg25270 +S'Joseph Sudek' +p39782 +sa(dp39783 +g25267 +g27 +sg25268 +S'Pie Dish' +p39784 +sg25270 +S'Joseph Sudek' +p39785 +sa(dp39786 +g25267 +g27 +sg25268 +S'Platter' +p39787 +sg25270 +S'Joseph Sudek' +p39788 +sa(dp39789 +g25273 +S'bound volume with 34 drawings' +p39790 +sg25267 +g27 +sg25275 +S'1757' +p39791 +sg25268 +S'Album of Preliminary Drawings for Boccaccio\'s "Decamerone" (1757 ed.), volume III' +p39792 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39793 +sa(dp39794 +g25267 +g27 +sg25268 +S'Platter' +p39795 +sg25270 +S'Joseph Sudek' +p39796 +sa(dp39797 +g25267 +g27 +sg25268 +S'Dinner Platter' +p39798 +sg25270 +S'Joseph Sudek' +p39799 +sa(dp39800 +g25267 +g27 +sg25268 +S'Cup Plate' +p39801 +sg25270 +S'Florence Stevenson' +p39802 +sa(dp39803 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p39804 +sg25270 +S'Julie C. Brush' +p39805 +sa(dp39806 +g25267 +g27 +sg25268 +S'Dinner Tray' +p39807 +sg25270 +S'Joseph Sudek' +p39808 +sa(dp39809 +g25267 +g27 +sg25268 +S'Saucer' +p39810 +sg25270 +S'Irene M. Burge' +p39811 +sa(dp39812 +g25267 +g27 +sg25268 +S'Platter' +p39813 +sg25270 +S'Joseph Sudek' +p39814 +sa(dp39815 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p39816 +sg25270 +S'John Cutting' +p39817 +sa(dp39818 +g25267 +g27 +sg25268 +S'Bowl' +p39819 +sg25270 +S'William Ludwig' +p39820 +sa(dp39821 +g25267 +g27 +sg25268 +S'Jar' +p39822 +sg25270 +S'Margaret Stottlemeyer' +p39823 +sa(dp39824 +g25273 +S'pen and black ink with brown wash' +p39825 +sg25267 +g27 +sg25275 +S'1757' +p39826 +sg25268 +S'Cul-de-lampe for Second Day, Third Story and Vignette for the Life of Boccaccio' +p39827 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39828 +sa(dp39829 +g25267 +g27 +sg25268 +S'Waste Bowl' +p39830 +sg25270 +S'J. Howard Iams' +p39831 +sa(dp39832 +g25267 +g27 +sg25268 +S'Soup Bowl' +p39833 +sg25270 +S'William Kerby' +p39834 +sa(dp39835 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p39836 +sg25270 +S'Ludmilla Calderon' +p39837 +sa(dp39838 +g25267 +g27 +sg25268 +S'Bowl' +p39839 +sg25270 +S'Carl Buergerniss' +p39840 +sa(dp39841 +g25267 +g27 +sg25268 +S'Bowl' +p39842 +sg25270 +S'Hugh Clarke' +p39843 +sa(dp39844 +g25267 +g27 +sg25268 +S'Bowl' +p39845 +sg25270 +S'Joseph Sudek' +p39846 +sa(dp39847 +g25267 +g27 +sg25268 +S'Bowl' +p39848 +sg25270 +S'Joseph Sudek' +p39849 +sa(dp39850 +g25267 +g27 +sg25268 +S'Bowl' +p39851 +sg25270 +S'Lillian Causey' +p39852 +sa(dp39853 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p39854 +sg25270 +S'Joseph Sudek' +p39855 +sa(dp39856 +g25267 +g27 +sg25268 +S'Jubilee Cup' +p39857 +sg25270 +S'Frank J. Mace' +p39858 +sa(dp39859 +g25273 +S'pen and black ink with brown wash' +p39860 +sg25267 +g27 +sg25275 +S'1757' +p39861 +sg25268 +S'Cul-de-lampe for First Day, Introduction and Cul-de-lampe for First Day, First Story' +p39862 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39863 +sa(dp39864 +g25267 +g27 +sg25268 +S'Shaving Mug' +p39865 +sg25270 +S'Roberta Spicer' +p39866 +sa(dp39867 +g25267 +g27 +sg25268 +S'Shaving Mug' +p39868 +sg25270 +S'Roberta Spicer' +p39869 +sa(dp39870 +g25267 +g27 +sg25268 +S'Shaving Mug' +p39871 +sg25270 +S'Mary Ann Burton' +p39872 +sa(dp39873 +g25267 +g27 +sg25268 +S'Mug' +p39874 +sg25270 +S'Roberta Spicer' +p39875 +sa(dp39876 +g25267 +g27 +sg25268 +S'Foot Warmer' +p39877 +sg25270 +S'Gordon Saltar' +p39878 +sa(dp39879 +g25267 +g27 +sg25268 +S'Luster Mug' +p39880 +sg25270 +S'Robert Schuerer' +p39881 +sa(dp39882 +g25267 +g27 +sg25268 +S'Plate' +p39883 +sg25270 +S'J. Howard Iams' +p39884 +sa(dp39885 +g25267 +g27 +sg25268 +S'Plate' +p39886 +sg25270 +S'Samuel Faigin' +p39887 +sa(dp39888 +g25267 +g27 +sg25268 +S'Plate' +p39889 +sg25270 +S'Kurt Melzer' +p39890 +sa(dp39891 +g25267 +g27 +sg25268 +S'Plate' +p39892 +sg25270 +S'Joseph Sudek' +p39893 +sa(dp39894 +g25273 +S'pen and black ink with brown wash' +p39895 +sg25267 +g27 +sg25275 +S'1757' +p39896 +sg25268 +S'Cul-de-lampe for First Day, Third Story and Cul-de-lampe for First Day, Fifth Story' +p39897 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39898 +sa(dp39899 +g25267 +g27 +sg25268 +S'Plate' +p39900 +sg25270 +S'Joseph Sudek' +p39901 +sa(dp39902 +g25267 +g27 +sg25268 +S'Dinner Plate' +p39903 +sg25270 +S'Joseph Sudek' +p39904 +sa(dp39905 +g25267 +g27 +sg25268 +S'Cup and Saucer' +p39906 +sg25270 +S'Albert Camilli' +p39907 +sa(dp39908 +g25267 +g27 +sg25268 +S'Teacup and Saucer' +p39909 +sg25270 +S'David Ramage' +p39910 +sa(dp39911 +g25267 +g27 +sg25268 +S'Tea Cup' +p39912 +sg25270 +S'J. Howard Iams' +p39913 +sa(dp39914 +g25267 +g27 +sg25268 +S'Moustache Cup and Saucer' +p39915 +sg25270 +S'Hal Blakeley' +p39916 +sa(dp39917 +g25267 +g27 +sg25268 +S"Invalid's Feeding Cup" +p39918 +sg25270 +S'Carl Buergerniss' +p39919 +sa(dp39920 +g25267 +g27 +sg25268 +S'Cup and Saucer' +p39921 +sg25270 +S'Erwin Schwabe' +p39922 +sa(dp39923 +g25267 +g27 +sg25268 +S'Cup and Saucer' +p39924 +sg25270 +S'Irene M. Burge' +p39925 +sa(dp39926 +g25267 +g27 +sg25268 +S'Cup and Saucer' +p39927 +sg25270 +S'Thomas Holloway' +p39928 +sa(dp39929 +g25273 +S'brush and brown ink with brown wash over red chalk(top), and pen and black ink with brown wash (bottom), on two joined sheets' +p39930 +sg25267 +g27 +sg25275 +S'1757' +p39931 +sg25268 +S'Cul-de-lampe for First Day, Sixth Story and Cul-de-lampe for Second Day, Fourth Story' +p39932 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39933 +sa(dp39934 +g25267 +g27 +sg25268 +S'Cup' +p39935 +sg25270 +S'J. Howard Iams' +p39936 +sa(dp39937 +g25267 +g27 +sg25268 +S'Cup and Saucer' +p39938 +sg25270 +S'Hugh Clarke' +p39939 +sa(dp39940 +g25267 +g27 +sg25268 +S'Egg Cup' +p39941 +sg25270 +S'William Vergani' +p39942 +sa(dp39943 +g25267 +g27 +sg25268 +S'Moustache Cup and Saucer' +p39944 +sg25270 +S'Hal Blakeley' +p39945 +sa(dp39946 +g25267 +g27 +sg25268 +S'Cup and Saucer' +p39947 +sg25270 +S'Lillian Causey' +p39948 +sa(dp39949 +g25267 +g27 +sg25268 +S'Saucer' +p39950 +sg25270 +S'Joseph Sudek' +p39951 +sa(dp39952 +g25267 +g27 +sg25268 +S'Saucer' +p39953 +sg25270 +S'Joseph Sudek' +p39954 +sa(dp39955 +g25267 +g27 +sg25268 +S'Cup' +p39956 +sg25270 +S'Joseph Sudek' +p39957 +sa(dp39958 +g25267 +g27 +sg25268 +S'Teacup' +p39959 +sg25270 +S'Dana Bartlett' +p39960 +sa(dp39961 +g25267 +g27 +sg25268 +S'Robineau Scarab Vase' +p39962 +sg25270 +S'Richard Whitaker' +p39963 +sa(dp39964 +g25273 +S'pen and black ink with brown wash' +p39965 +sg25267 +g27 +sg25275 +S'1757' +p39966 +sg25268 +S'Cul-de-lampe for Third Day, Ninth Story and Cul-de-lampe for Third Day, Tenth Story' +p39967 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p39968 +sa(dp39969 +g25267 +g27 +sg25268 +S'Pitcher' +p39970 +sg25270 +S'American 20th Century' +p39971 +sa(dp39972 +g25267 +g27 +sg25268 +S'Hen on Nest' +p39973 +sg25270 +S'Robert Gilson' +p39974 +sa(dp39975 +g25267 +g27 +sg25268 +S'Pitcher' +p39976 +sg25270 +S'Mamie M. Jones' +p39977 +sa(dp39978 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p39979 +sg25270 +S'Ella Josephine Sterling' +p39980 +sa(dp39981 +g25267 +g27 +sg25268 +S'Pitcher' +p39982 +sg25270 +S'Alfred Walbeck' +p39983 +sa(dp39984 +g25267 +g27 +sg25268 +S'Pitcher' +p39985 +sg25270 +S'Roberta Spicer' +p39986 +sa(dp39987 +g25267 +g27 +sg25268 +S'Pitcher' +p39988 +sg25270 +S'Roberta Spicer' +p39989 +sa(dp39990 +g25267 +g27 +sg25268 +S'Pitcher' +p39991 +sg25270 +S'Joseph Sudek' +p39992 +sa(dp39993 +g25267 +g27 +sg25268 +S'Chocolate Pitcher' +p39994 +sg25270 +S'Robert Schuerer' +p39995 +sa(dp39996 +g25267 +g27 +sg25268 +S'Pitcher' +p39997 +sg25270 +S'John Cutting' +p39998 +sa(dp39999 +g25273 +S'pen and black ink with brown wash over traces of red chalk' +p40000 +sg25267 +g27 +sg25275 +S'1757' +p40001 +sg25268 +S'Cul-de-lampe for Fourth Day, Introduction and Cul-de-lampe for Fourth Day, Eighth Story' +p40002 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40003 +sa(dp40004 +g25267 +g27 +sg25268 +S'Bisque Water Pitcher' +p40005 +sg25270 +S'Ernest A. Towers, Jr.' +p40006 +sa(dp40007 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p40008 +sg25270 +S'Joseph Sudek' +p40009 +sa(dp40010 +g25267 +g27 +sg25268 +S'Pitcher' +p40011 +sg25270 +S'Joseph Sudek' +p40012 +sa(dp40013 +g25267 +g27 +sg25268 +S'Teapot' +p40014 +sg25270 +S'Joseph Sudek' +p40015 +sa(dp40016 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p40017 +sg25270 +S'Joseph Sudek' +p40018 +sa(dp40019 +g25267 +g27 +sg25268 +S'Pitcher' +p40020 +sg25270 +S'J. Howard Iams' +p40021 +sa(dp40022 +g25267 +g27 +sg25268 +S'Pie Plate and Cup Plate' +p40023 +sg25270 +S'Cora Parker' +p40024 +sa(dp40025 +g25267 +g27 +sg25268 +S'Pitcher' +p40026 +sg25270 +S'Ella Josephine Sterling' +p40027 +sa(dp40028 +g25267 +g27 +sg25268 +S'Pitcher' +p40029 +sg25270 +S'Frances Lichten' +p40030 +sa(dp40031 +g25267 +g27 +sg25268 +S'Pitcher' +p40032 +sg25270 +S'Roberta Spicer' +p40033 +sa(dp40034 +g25273 +S'pen and black ink with brown wash over red chalk' +p40035 +sg25267 +g27 +sg25275 +S'1757' +p40036 +sg25268 +S'Cul-de-lampe for Fourth Day, First Story and Cul-de-lampe for Fourth Day, Ninth Story' +p40037 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40038 +sa(dp40039 +g25267 +g27 +sg25268 +S'Pitcher' +p40040 +sg25270 +S'Frances Lichten' +p40041 +sa(dp40042 +g25267 +g27 +sg25268 +S'White Glazed Porcelain Pitcher' +p40043 +sg25270 +S'Paul Ward' +p40044 +sa(dp40045 +g25267 +g27 +sg25268 +S'Pitcher' +p40046 +sg25270 +S'Francis Law Durand' +p40047 +sa(dp40048 +g25267 +g27 +sg25268 +S'Plate' +p40049 +sg25270 +S'Byron Dingman' +p40050 +sa(dp40051 +g25267 +g27 +sg25268 +S'Plate' +p40052 +sg25270 +S'Byron Dingman' +p40053 +sa(dp40054 +g25267 +g27 +sg25268 +S'Shaving Mug' +p40055 +sg25270 +S'Irene M. Burge' +p40056 +sa(dp40057 +g25267 +g27 +sg25268 +S'Mug' +p40058 +sg25270 +S'George B. Meyer' +p40059 +sa(dp40060 +g25267 +g27 +sg25268 +S'Mug' +p40061 +sg25270 +S'Samuel O. Klein' +p40062 +sa(dp40063 +g25267 +g27 +sg25268 +S'Pitcher' +p40064 +sg25270 +S'Eugene Shellady' +p40065 +sa(dp40066 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p40067 +sg25270 +S'Thomas Holloway' +p40068 +sa(dp40069 +g25273 +S'pen and black ink with brown wash over red chalk' +p40070 +sg25267 +g27 +sg25275 +S'1757' +p40071 +sg25268 +S'Cul-de-lampe for Fourth Day, Second Story and Cul-de-lampe for Fourth Day, Third Story' +p40072 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40073 +sa(dp40074 +g25267 +g27 +sg25268 +S'Beer Pitcher' +p40075 +sg25270 +S'Florence Stevenson' +p40076 +sa(dp40077 +g25267 +g27 +sg25268 +S'Beer Pitcher' +p40078 +sg25270 +S'Florence Stevenson' +p40079 +sa(dp40080 +g25267 +g27 +sg25268 +S'Bowl' +p40081 +sg25270 +S'Edward White' +p40082 +sa(dp40083 +g25267 +g27 +sg25268 +S'Small Sugar Bowl' +p40084 +sg25270 +S'Thomas Holloway' +p40085 +sa(dp40086 +g25267 +g27 +sg25268 +S'Creamer' +p40087 +sg25270 +S'Thomas Holloway' +p40088 +sa(dp40089 +g25267 +g27 +sg25268 +S'Soup Tureen' +p40090 +sg25270 +S'Joseph Sudek' +p40091 +sa(dp40092 +g25267 +g27 +sg25268 +S'Creamer' +p40093 +sg25270 +S'Joseph Sudek' +p40094 +sa(dp40095 +g25267 +g27 +sg25268 +S'Pitcher' +p40096 +sg25270 +S'Eva Wilson' +p40097 +sa(dp40098 +g25267 +g27 +sg25268 +S'Plate' +p40099 +sg25270 +S'Albert Eyth' +p40100 +sa(dp40101 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p40102 +sg25270 +S'Albert Eyth' +p40103 +sa(dp40104 +g25273 +S'pen and black ink with brown wash over red chalk' +p40105 +sg25267 +g27 +sg25275 +S'1757' +p40106 +sg25268 +S'Cul-de-lampe for Fourth Day, Fifth Story and Cul-de-lampe for Fourth Day, Seventh Story' +p40107 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40108 +sa(dp40109 +g25267 +g27 +sg25268 +S'Plate' +p40110 +sg25270 +S'Albert Eyth' +p40111 +sa(dp40112 +g25267 +g27 +sg25268 +S'Plate' +p40113 +sg25270 +S'Albert Eyth' +p40114 +sa(dp40115 +g25267 +g27 +sg25268 +S'Plate' +p40116 +sg25270 +S'Albert Eyth' +p40117 +sa(dp40118 +g25267 +g27 +sg25268 +S'Teapot' +p40119 +sg25270 +S'Edward White' +p40120 +sa(dp40121 +g25267 +g27 +sg25268 +S'Pitcher' +p40122 +sg25270 +S'Edward White' +p40123 +sa(dp40124 +g25267 +g27 +sg25268 +S'Inkwell' +p40125 +sg25270 +S'Gertrude Lemberg' +p40126 +sa(dp40127 +g25267 +g27 +sg25268 +S'Inkwell' +p40128 +sg25270 +S'Nicholas Amantea' +p40129 +sa(dp40130 +g25267 +g27 +sg25268 +S'Wash Bowl' +p40131 +sg25270 +S'Frank Fumagalli' +p40132 +sa(dp40133 +g25267 +g27 +sg25268 +S'Wash Bowl and Pitcher' +p40134 +sg25270 +S'Frank Fumagalli' +p40135 +sa(dp40136 +g25267 +g27 +sg25268 +S'Ceramic Ink Well' +p40137 +sg25270 +S'John Jordan' +p40138 +sa(dp40139 +g25273 +S'pen and black ink with brown wash' +p40140 +sg25267 +g27 +sg25275 +S'1757' +p40141 +sg25268 +S'Cul-de-lampe for Fifth Day, First Story and Cul-de-lampe for Fifth Day, Fourth Story' +p40142 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40143 +sa(dp40144 +g25267 +g27 +sg25268 +S'Pottery Ink Stand' +p40145 +sg25270 +S'John Jordan' +p40146 +sa(dp40147 +g25267 +g27 +sg25268 +S'Syrup Pitcher' +p40148 +sg25270 +S'John Cutting' +p40149 +sa(dp40150 +g25267 +g27 +sg25268 +S'Ink Bottle' +p40151 +sg25270 +S'Marie Lutrell' +p40152 +sa(dp40153 +g25267 +g27 +sg25268 +S'Wash Bowl' +p40154 +sg25270 +S'Frank Fumagalli' +p40155 +sa(dp40156 +g25267 +g27 +sg25268 +S'Inkwell' +p40157 +sg25270 +S'Isadore Goldberg' +p40158 +sa(dp40159 +g25267 +g27 +sg25268 +S'Inkwell' +p40160 +sg25270 +S'William High' +p40161 +sa(dp40162 +g25267 +g27 +sg25268 +S'Ink Bottle' +p40163 +sg25270 +S'Frank Fumagalli' +p40164 +sa(dp40165 +g25267 +g27 +sg25268 +S'Teapot' +p40166 +sg25270 +S'Ludmilla Calderon' +p40167 +sa(dp40168 +g25267 +g27 +sg25268 +S'Pitcher' +p40169 +sg25270 +S'Charles Caseau' +p40170 +sa(dp40171 +g25267 +g27 +sg25268 +S'Saucer' +p40172 +sg25270 +S'Joseph Sudek' +p40173 +sa(dp40174 +g25273 +S'pen and black ink with brown wash' +p40175 +sg25267 +g27 +sg25275 +S'1757' +p40176 +sg25268 +S'Cul-de-lampe for Fifth Day, Introduction and Cul-de-lampe for Fifth Day, Second Story' +p40177 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40178 +sa(dp40179 +g25267 +g27 +sg25268 +S'Cake Saucer' +p40180 +sg25270 +S'Joseph Sudek' +p40181 +sa(dp40182 +g25267 +g27 +sg25268 +S'Pitcher' +p40183 +sg25270 +S'William L. Antrim' +p40184 +sa(dp40185 +g25267 +g27 +sg25268 +S'Spirit Lamp with Teapot' +p40186 +sg25270 +S'J. Howard Iams' +p40187 +sa(dp40188 +g25267 +g27 +sg25268 +S'Plates' +p40189 +sg25270 +S'J. Howard Iams' +p40190 +sa(dp40191 +g25267 +g27 +sg25268 +S'Stoneware Pitcher' +p40192 +sg25270 +S'Lucille Pettijohn' +p40193 +sa(dp40194 +g25267 +g27 +sg25268 +S'Stoneware Crock' +p40195 +sg25270 +S'George Loughridge' +p40196 +sa(dp40197 +g25267 +g27 +sg25268 +S'Jug' +p40198 +sg25270 +S'Artist Information (' +p40199 +sa(dp40200 +g25267 +g27 +sg25268 +S'Cask' +p40201 +sg25270 +S'Richard Barnett' +p40202 +sa(dp40203 +g25267 +g27 +sg25268 +S'Water Cooler' +p40204 +sg25270 +S'Richard Barnett' +p40205 +sa(dp40206 +g25267 +g27 +sg25268 +S'Wine jug' +p40207 +sg25270 +S'Fritz Boehmer' +p40208 +sa(dp40209 +g25273 +S'pen and black ink with brown wash' +p40210 +sg25267 +g27 +sg25275 +S'1757' +p40211 +sg25268 +S'Cul-de-lampe for Fifth Day, Fifth Story and Cul-de-lampe for Fifth Day, Sixth Story' +p40212 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40213 +sa(dp40214 +g25267 +S'Stoneware is made from fine, dense gray-blue or buff clay that is capable of withstanding a high firing temperature. The clay is fired to the point at which it fuses and becomes glasslike and impervious to liquids. This hard, durable, \n nonporous pottery was imported in great quantities from Europe and England until the Revolution. Up to that time, the only clay deposits suitable for stoneware were located in the New York-New Jersey coastal areas, and colonists found it \n less expensive to import stoneware than to ship the clay to potteries in other areas, since transportation among the colonies was poor and domestic shipping costly. American stoneware production developed initially because most foreign \n supplies were cut off during the Revolution and, later, because of high tariffs on foreign imports. Eventually, improved domestic waterways and newly found deposits of the high-firing clay made it possible for American potters to produce \n stoneware cheaply. Although stoneware will hold liquid without being glazed, in most cases it was finished by a simple process known as salt glazing. Common salt was shoveled into the fire of the kiln when it was at its highest temperature. \n Salt vapors condensed on the pottery, mixing with the silica in the clay to form a thin, hard, glossy, finish. The luster of this New York-made stoneware jug is characteristic of a salt-glazed surface.\n ' +p40215 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003e5.jpg' +p40216 +sg25268 +S'Jug' +p40217 +sg25270 +S'Giacinto Capelli' +p40218 +sa(dp40219 +g25267 +g27 +sg25268 +S'Jug' +p40220 +sg25270 +S'John Tarantino' +p40221 +sa(dp40222 +g25267 +g27 +sg25268 +S'Jar' +p40223 +sg25270 +S'George Loughridge' +p40224 +sa(dp40225 +g25267 +S"Late eighteenth-century and early nineteenth-century stoneware was generally bulbous in profile. The bulging egg shape of this jug was a common form before 1840. Early stoneware was decorated simply, usually with an incised design. It \n became increasingly common to enhance the incised decoration with blue slip, painted on before firing and glazing. Cobalt blue is the characteristic color of stoneware decoration. The bow knot design that appears on this piece was a favored motif \n of Thomas Commeraw, a potter who made stoneware between 1802 and 1820 at Corlear's Hook, near New York. Notice that the jug is marked with his name and the location of his pottery, a frequent practice in the nineteenth century.\n " +p40226 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003e6.jpg' +p40227 +sg25268 +S'Jug' +p40228 +sg25270 +S'George Loughridge' +p40229 +sa(dp40230 +g25267 +g27 +sg25268 +S'Jug' +p40231 +sg25270 +S'John Tarantino' +p40232 +sa(dp40233 +g25267 +g27 +sg25268 +S'Bird Decorations on Jug' +p40234 +sg25270 +S'Charles Caseau' +p40235 +sa(dp40236 +g25267 +g27 +sg25268 +S'Crock' +p40237 +sg25270 +S'George Loughridge' +p40238 +sa(dp40239 +g25267 +g27 +sg25268 +S'Stone Jug' +p40240 +sg25270 +S'Carl Buergerniss' +p40241 +sa(dp40242 +g25267 +g27 +sg25268 +S'Jug' +p40243 +sg25270 +S'Yolande Delasser' +p40244 +sa(dp40245 +g25267 +g27 +sg25268 +S'Jug' +p40246 +sg25270 +S'Francis Law Durand' +p40247 +sa(dp40248 +g25273 +S'pen and black ink with brown wash' +p40249 +sg25267 +g27 +sg25275 +S'1757' +p40250 +sg25268 +S'Cul-de-lampe for Sixth Day, Tenth Story' +p40251 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40252 +sa(dp40253 +g25267 +g27 +sg25268 +S'Pickle Jar' +p40254 +sg25270 +S'Francis Law Durand' +p40255 +sa(dp40256 +g25267 +g27 +sg25268 +S'Jar' +p40257 +sg25270 +S'Carl Buergerniss' +p40258 +sa(dp40259 +g25267 +g27 +sg25268 +S'Galena Big Jug' +p40260 +sg25270 +S'William Spiecker' +p40261 +sa(dp40262 +g25267 +g27 +sg25268 +S'Crock' +p40263 +sg25270 +S'Eleanor Gausser' +p40264 +sa(dp40265 +g25267 +g27 +sg25268 +S'Crock' +p40266 +sg25270 +S'Fred Weiss' +p40267 +sa(dp40268 +g25267 +g27 +sg25268 +S'Two-Handled Crock' +p40269 +sg25270 +S'Fred Weiss' +p40270 +sa(dp40271 +g25267 +g27 +sg25268 +S'Batter Jar' +p40272 +sg25270 +S'Fred Weiss' +p40273 +sa(dp40274 +g25267 +g27 +sg25268 +S'Water or Wine Keg' +p40275 +sg25270 +S'Giacinto Capelli' +p40276 +sa(dp40277 +g25267 +g27 +sg25268 +S'Jug' +p40278 +sg25270 +S'Samuel Philpot' +p40279 +sa(dp40280 +g25267 +g27 +sg25268 +S'Jug' +p40281 +sg25270 +S'Giacinto Capelli' +p40282 +sa(dp40283 +g25273 +S'pen and black ink with brown wash' +p40284 +sg25267 +g27 +sg25275 +S'1757' +p40285 +sg25268 +S'Cul-de-lampe for Seventh Day, Introduction and Cul-de-lampe for Seventh Day, First Story' +p40286 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40287 +sa(dp40288 +g25267 +g27 +sg25268 +S'Galena Pottery Jug' +p40289 +sg25270 +S'William Spiecker' +p40290 +sa(dp40291 +g25267 +g27 +sg25268 +S'Jug' +p40292 +sg25270 +S'Lee Brown' +p40293 +sa(dp40294 +g25267 +g27 +sg25268 +S'Stoneware Crock' +p40295 +sg25270 +S'Mary Fitzgerald' +p40296 +sa(dp40297 +g25267 +g27 +sg25268 +S'Wine or Water Jar' +p40298 +sg25270 +S'Giacinto Capelli' +p40299 +sa(dp40300 +g25267 +S'The earliest stoneware was unglazed on the inside, because pieces were stacked mouth-to-mouth in the kiln to conserve space. The inside surfaces, therefore, could not be reached by the salt vapor. \n After 1800, the interiors were usually coated before firing with dark brown or "Albany mud," named after the color of the clay and the location of its source. The brown lining of this jar is of Albany slip. \n The presence of an Albany slip coating does not indicate, however, that a pot was made only in that area, for during the nineteenth century, the clay was shipped from Albany, New York, to potteries throughout the country.\n ' +p40301 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003e8.jpg' +p40302 +sg25268 +S'Jar' +p40303 +sg25270 +S'Nicholas Amantea' +p40304 +sa(dp40305 +g25267 +g27 +sg25268 +S'Churn' +p40306 +sg25270 +S'Nicholas Amantea' +p40307 +sa(dp40308 +g25267 +g27 +sg25268 +S'Earthenware Butter Churn' +p40309 +sg25270 +S'Wilbur M Rice' +p40310 +sa(dp40311 +g25267 +g27 +sg25268 +S'Pottery Vase' +p40312 +sg25270 +S'Stanley Mazur' +p40313 +sa(dp40314 +g25267 +g27 +sg25268 +S'Galena Covered Jug' +p40315 +sg25270 +S'William Spiecker' +p40316 +sa(dp40317 +g25267 +g27 +sg25268 +S'Slipware Platter' +p40318 +sg25270 +S'Fred Weiss' +p40319 +sa(dp40320 +g25273 +S'pen and black ink with brown wash' +p40321 +sg25267 +g27 +sg25275 +S'1757' +p40322 +sg25268 +S'Cul-de-lampe for Seventh Day, Second Story and Cul-de-lampe for Seventh Day, Third Story' +p40323 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40324 +sa(dp40325 +g25267 +g27 +sg25268 +S'Pottery Molds' +p40326 +sg25270 +S'Joseph Shapiro' +p40327 +sa(dp40328 +g25267 +g27 +sg25268 +S'Glazed Pottery Duck Bottle' +p40329 +sg25270 +S'Ethel Clarke' +p40330 +sa(dp40331 +g25267 +g27 +sg25268 +S'Jug' +p40332 +sg25270 +S'Alfred Parys' +p40333 +sa(dp40334 +g25267 +g27 +sg25268 +S'Grotesque Jug' +p40335 +sg25270 +S'Frank Fumagalli' +p40336 +sa(dp40337 +g25267 +g27 +sg25268 +S'Grotesque Jug' +p40338 +sg25270 +S'Yolande Delasser' +p40339 +sa(dp40340 +g25267 +g27 +sg25268 +S'Jar: For Salt, Meat, or Lard' +p40341 +sg25270 +S'Margaret Gordon' +p40342 +sa(dp40343 +g25267 +g27 +sg25268 +S'Wine Jug' +p40344 +sg25270 +S'Fritz Boehmer' +p40345 +sa(dp40346 +g25267 +g27 +sg25268 +S'Crock' +p40347 +sg25270 +S'John Tarantino' +p40348 +sa(dp40349 +g25267 +g27 +sg25268 +S'Pitcher' +p40350 +sg25270 +S'Francis Law Durand' +p40351 +sa(dp40352 +g25267 +g27 +sg25268 +S'Pitcher w/ Hound Handle' +p40353 +sg25270 +S'Edith Miller' +p40354 +sa(dp40355 +g25273 +S'pen and black ink with brown wash (top), and brushand brown ink over red chalk (bottom), on two joined sheets' +p40356 +sg25267 +g27 +sg25275 +S'1757' +p40357 +sg25268 +S'Cul-de-lampe for Seventh Day, Fourth Story and Cul-de-lampe for First Day, Fourth Story' +p40358 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40359 +sa(dp40360 +g25267 +g27 +sg25268 +S'Churn' +p40361 +sg25270 +S'Racine Vernier' +p40362 +sa(dp40363 +g25267 +g27 +sg25268 +S'Preserving Jar' +p40364 +sg25270 +S'Frank Maurer' +p40365 +sa(dp40366 +g25267 +g27 +sg25268 +S'Water Pitcher' +p40367 +sg25270 +S'Raymond McGough' +p40368 +sa(dp40369 +g25267 +g27 +sg25268 +S'Pickle Jar' +p40370 +sg25270 +S'Fritz Boehmer' +p40371 +sa(dp40372 +g25267 +g27 +sg25268 +S'Jar' +p40373 +sg25270 +S'Giacinto Capelli' +p40374 +sa(dp40375 +g25267 +g27 +sg25268 +S'Jar' +p40376 +sg25270 +S'Isadore Goldberg' +p40377 +sa(dp40378 +g25267 +g27 +sg25268 +S'Tan Stoneware Jug' +p40379 +sg25270 +S'George Loughridge' +p40380 +sa(dp40381 +g25267 +g27 +sg25268 +S'Jar' +p40382 +sg25270 +S'Clinton Myers' +p40383 +sa(dp40384 +g25267 +g27 +sg25268 +S'Jar' +p40385 +sg25270 +S'Aaron Fastovsky' +p40386 +sa(dp40387 +g25267 +g27 +sg25268 +S'Crock' +p40388 +sg25270 +S'George Loughridge' +p40389 +sa(dp40390 +g25273 +S'pen and black ink with brown wash (top), and pen and brown ink with brown wash over red chalk (bottom), on two joined sheets' +p40391 +sg25267 +g27 +sg25275 +S'1757' +p40392 +sg25268 +S'Cul-de-lampe for Seventh Day, Fifth Story and Cul-de-lampe for Fourth Day, Tenth Story' +p40393 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40394 +sa(dp40395 +g25267 +g27 +sg25268 +S'Crock' +p40396 +sg25270 +S'Nicholas Amantea' +p40397 +sa(dp40398 +g25267 +g27 +sg25268 +S'Jug' +p40399 +sg25270 +S'Charlotte Sperber' +p40400 +sa(dp40401 +g25267 +g27 +sg25268 +S'Crock' +p40402 +sg25270 +S'Edith Miller' +p40403 +sa(dp40404 +g25267 +g27 +sg25268 +S'Vase' +p40405 +sg25270 +S'Isadore Goldberg' +p40406 +sa(dp40407 +g25267 +g27 +sg25268 +S'Jug' +p40408 +sg25270 +S'Yolande Delasser' +p40409 +sa(dp40410 +g25267 +S'By the middle of the nineteenth century, most of the active pottery shops had become full-scale factories. Expansion and mechanization led to changes in the appearance of stoneware products. Jars and crocks became flat-based and straight-sided, \n a form more quickly and easily made. This stoneware jar exemplifies factory techniques. Notice the "ear" handles, which are both easier to shape and less likely to break than the open loop handles of earlier wares. Late nineteenth-century \n stoneware also differs from earlier products in that time-consuming freehand painting gave way to faster decorative techniques. Simple slip-trailed designs as well as stenciled decoration came into general use. Although this jar retains \n a few summarily painted lines, the stenciled decoration is dominant.\n ' +p40411 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003e9.jpg' +p40412 +sg25268 +S'Churn' +p40413 +sg25270 +S'John Tarantino' +p40414 +sa(dp40415 +g25267 +g27 +sg25268 +S'Jar' +p40416 +sg25270 +S'Giacinto Capelli' +p40417 +sa(dp40418 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005529.jpg' +p40419 +sg25268 +S'Crock' +p40420 +sg25270 +S'Artist Information (' +p40421 +sa(dp40422 +g25267 +g27 +sg25268 +S'Apple Butter Crock' +p40423 +sg25270 +S'Fritz Boehmer' +p40424 +sa(dp40425 +g25267 +g27 +sg25268 +S'Jar' +p40426 +sg25270 +S'John Tarantino' +p40427 +sa(dp40428 +g25273 +S'pen and black ink with brown wash' +p40429 +sg25267 +g27 +sg25275 +S'1757' +p40430 +sg25268 +S'Cul-de-lampe for Seventh Day, Eighth Story and Cul-de-lampe for Seventh Day, Sixth Story' +p40431 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40432 +sa(dp40433 +g25267 +g27 +sg25268 +S'Crock' +p40434 +sg25270 +S'Yolande Delasser' +p40435 +sa(dp40436 +g25267 +g27 +sg25268 +S'Jug' +p40437 +sg25270 +S'Elsie Wein' +p40438 +sa(dp40439 +g25267 +g27 +sg25268 +S'Wine Keg' +p40440 +sg25270 +S'John Tarantino' +p40441 +sa(dp40442 +g25267 +g27 +sg25268 +S'Bowl' +p40443 +sg25270 +S'Lloyd Charles Lemcke' +p40444 +sa(dp40445 +g25267 +g27 +sg25268 +S'Pitcher' +p40446 +sg25270 +S'Giacinto Capelli' +p40447 +sa(dp40448 +g25267 +g27 +sg25268 +S'Jug' +p40449 +sg25270 +S'Giacinto Capelli' +p40450 +sa(dp40451 +g25267 +g27 +sg25268 +S'Jar with Cover' +p40452 +sg25270 +S'Alvin Shiren' +p40453 +sa(dp40454 +g25267 +g27 +sg25268 +S'Large Earthen Jar' +p40455 +sg25270 +S'Clyde L. Cheney' +p40456 +sa(dp40457 +g25267 +g27 +sg25268 +S'Glazed Clay Bowl' +p40458 +sg25270 +S'Clyde L. Cheney' +p40459 +sa(dp40460 +g25267 +g27 +sg25268 +S'Pitcher' +p40461 +sg25270 +S'Mina Lowry' +p40462 +sa(dp40463 +g25273 +S'pen and black ink with brown wash' +p40464 +sg25267 +g27 +sg25275 +S'1757' +p40465 +sg25268 +S'Cul-de-lampe for Seventh Day, Ninth Story and Cul-de-lampe for Seventh Day, Tenth Story' +p40466 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40467 +sa(dp40468 +g25267 +g27 +sg25268 +S'Plate' +p40469 +sg25270 +S'Anna Aloisi' +p40470 +sa(dp40471 +g25267 +g27 +sg25268 +S'Two Quart Jar' +p40472 +sg25270 +S'Clyde L. Cheney' +p40473 +sa(dp40474 +g25267 +g27 +sg25268 +S'Brown Crock' +p40475 +sg25270 +S'John Tarantino' +p40476 +sa(dp40477 +g25267 +g27 +sg25268 +S'Pitcher' +p40478 +sg25270 +S'John Tarantino' +p40479 +sa(dp40480 +g25267 +g27 +sg25268 +S'Bean Pot' +p40481 +sg25270 +S'Georgine E. Mason' +p40482 +sa(dp40483 +g25267 +g27 +sg25268 +S'Pottery Dog Ornament' +p40484 +sg25270 +S'Cleo Lovett' +p40485 +sa(dp40486 +g25267 +g27 +sg25268 +S'Ceramic Pitcher' +p40487 +sg25270 +S'Ray Price' +p40488 +sa(dp40489 +g25267 +g27 +sg25268 +S'Tall Drinking Mug' +p40490 +sg25270 +S'John Matulis' +p40491 +sa(dp40492 +g25267 +g27 +sg25268 +S'Toby Mug' +p40493 +sg25270 +S'Cleo Lovett' +p40494 +sa(dp40495 +g25267 +g27 +sg25268 +S'Preserving Jar' +p40496 +sg25270 +S'Frank J. Mace' +p40497 +sa(dp40498 +g25268 +S'Nine Children Listening to a Girl Tell a Story; A Boy Handing a Purse to a Girl Seated on a Bed' +p40499 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40500 +sg25273 +S'pen and gray ink with brown wash on laid paper' +p40501 +sg25275 +S'c. 1757' +p40502 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a00060d2.jpg' +p40503 +sg25267 +g27 +sa(dp40504 +g25267 +g27 +sg25268 +S'Fruit Jar' +p40505 +sg25270 +S'Paul Poffinbarger' +p40506 +sa(dp40507 +g25267 +g27 +sg25268 +S'Eardley Jar' +p40508 +sg25270 +S'Frank J. Mace' +p40509 +sa(dp40510 +g25267 +g27 +sg25268 +S'Earthen Churn' +p40511 +sg25270 +S'Clyde L. Cheney' +p40512 +sa(dp40513 +g25267 +g27 +sg25268 +S'Preserving Jar' +p40514 +sg25270 +S'Wilford H. Shurtliff' +p40515 +sa(dp40516 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p40517 +sg25270 +S'Joseph Goldberg' +p40518 +sa(dp40519 +g25267 +g27 +sg25268 +S'Crock' +p40520 +sg25270 +S'Joseph Goldberg' +p40521 +sa(dp40522 +g25267 +g27 +sg25268 +S'Jar' +p40523 +sg25270 +S'John Tarantino' +p40524 +sa(dp40525 +g25267 +g27 +sg25268 +S'Preserve Jar' +p40526 +sg25270 +S'John Tarantino' +p40527 +sa(dp40528 +g25267 +g27 +sg25268 +S'Preserve Jar' +p40529 +sg25270 +S'Frank Fumagalli' +p40530 +sa(dp40531 +g25267 +g27 +sg25268 +S'Grotesque Jug' +p40532 +sg25270 +S'George Loughridge' +p40533 +sa(dp40534 +g25273 +S'pen and black ink with brown wash' +p40535 +sg25267 +g27 +sg25275 +S'1757' +p40536 +sg25268 +S'Cul-de-lampe for Eighth Day, Second Story and Cul-de-lampe for Eighth Day, Sixth Story' +p40537 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40538 +sa(dp40539 +g25267 +g27 +sg25268 +S'Water Jug' +p40540 +sg25270 +S'Arthur Mathews' +p40541 +sa(dp40542 +g25267 +g27 +sg25268 +S'Pitcher' +p40543 +sg25270 +S'Elsie Wein' +p40544 +sa(dp40545 +g25267 +g27 +sg25268 +S'Jar' +p40546 +sg25270 +S'John Tarantino' +p40547 +sa(dp40548 +g25267 +g27 +sg25268 +S'Jar' +p40549 +sg25270 +S'American 20th Century' +p40550 +sa(dp40551 +g25267 +g27 +sg25268 +S'Jar' +p40552 +sg25270 +S'Giacinto Capelli' +p40553 +sa(dp40554 +g25267 +g27 +sg25268 +S'Jug' +p40555 +sg25270 +S'Aaron Fastovsky' +p40556 +sa(dp40557 +g25267 +g27 +sg25268 +S'Water Pitcher' +p40558 +sg25270 +S'Al Curry' +p40559 +sa(dp40560 +g25267 +g27 +sg25268 +S'Pitcher' +p40561 +sg25270 +S'Paul Ward' +p40562 +sa(dp40563 +g25267 +g27 +sg25268 +S'Stoneware Ink Bottle' +p40564 +sg25270 +S'Sydney Roberts' +p40565 +sa(dp40566 +g25267 +g27 +sg25268 +S'Yellow Jar' +p40567 +sg25270 +S'Richard Barnett' +p40568 +sa(dp40569 +g25273 +S'pen and black ink with brown wash' +p40570 +sg25267 +g27 +sg25275 +S'1757' +p40571 +sg25268 +S'Cul-de-lampe for Eighth Day, Third Story and Cul-de-lampe for Eighth Day, Fourth Story' +p40572 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40573 +sa(dp40574 +g25267 +g27 +sg25268 +S'Earthenware Pitcher' +p40575 +sg25270 +S'Richard Barnett' +p40576 +sa(dp40577 +g25267 +g27 +sg25268 +S'Coffee Pot' +p40578 +sg25270 +S'Richard Barnett' +p40579 +sa(dp40580 +g25267 +g27 +sg25268 +S'Water or Wine Jug' +p40581 +sg25270 +S'Nicholas Amantea' +p40582 +sa(dp40583 +g25267 +g27 +sg25268 +S'Jug' +p40584 +sg25270 +S'Nicholas Amantea' +p40585 +sa(dp40586 +g25267 +g27 +sg25268 +S'Jar' +p40587 +sg25270 +S'Nicholas Amantea' +p40588 +sa(dp40589 +g25267 +S'Earthenware pottery is distinct from porcelain in that it is made from a coarse, iron-bearing clay. American potters produced a variety of wares named after the color of the clay used, but by far the most common American pottery made in the \n eighteenth and nineteenth centuries was "redware," earthenware made from the red clay readily available along most of the Eastern seaboard. Red clay lay close to the surface and was easily dug; it could be worked with little difficulty and fired \n at a low temperature. Thus, early potters needed only simple equipment to make redware articles for colonial kitchens. Redware was used primarily at the table, for its porosity rendered it less desirable for prolonged food storage. Although \n most redware was produced strictly for utilitarian purposes, colonial potters would frequently put decorative designs on their products. On this jar, "1765" has been painted boldly in cream-colored slip. Slip is a clay diluted with water so that \n it can be applied with a brush. The numbers provide a lively contrast with the red clay as well as information as to the date of manufacture.\n ' +p40590 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003d4.jpg' +p40591 +sg25268 +S'Covered Jar' +p40592 +sg25270 +S'John Matulis' +p40593 +sa(dp40594 +g25267 +g27 +sg25268 +S'Vase' +p40595 +sg25270 +S'Byron Dingman' +p40596 +sa(dp40597 +g25267 +g27 +sg25268 +S'Vase' +p40598 +sg25270 +S'Gerald Transpota' +p40599 +sa(dp40600 +g25267 +g27 +sg25268 +S'Vase' +p40601 +sg25270 +S'Dana Bartlett' +p40602 +sa(dp40603 +g25267 +g27 +sg25268 +S'Porcelain Vase' +p40604 +sg25270 +S'Edith Magnette' +p40605 +sa(dp40606 +g25273 +S'pen and black ink with brown wash' +p40607 +sg25267 +g27 +sg25275 +S'1757' +p40608 +sg25268 +S'Cul-de-lampe for Eighth Day, Ninth Story and Cul-de-lampe for Eighth Day, Tenth Story' +p40609 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40610 +sa(dp40611 +g25267 +g27 +sg25268 +S'Vase' +p40612 +sg25270 +S'John Dana' +p40613 +sa(dp40614 +g25267 +g27 +sg25268 +S'Vase' +p40615 +sg25270 +S'John Dana' +p40616 +sa(dp40617 +g25267 +g27 +sg25268 +S'White Porcelain Vase' +p40618 +sg25270 +S'Josephine Lindley' +p40619 +sa(dp40620 +g25267 +g27 +sg25268 +S'Porcelain Vase' +p40621 +sg25270 +S'John Fisk' +p40622 +sa(dp40623 +g25267 +g27 +sg25268 +S'Vase' +p40624 +sg25270 +S'Charles Moss' +p40625 +sa(dp40626 +g25267 +g27 +sg25268 +S'Jug' +p40627 +sg25270 +S'John Tarantino' +p40628 +sa(dp40629 +g25267 +g27 +sg25268 +S'Creamer' +p40630 +sg25270 +S'Joseph Sudek' +p40631 +sa(dp40632 +g25267 +g27 +sg25268 +S'Waste Jar' +p40633 +sg25270 +S'Joseph Sudek' +p40634 +sa(dp40635 +g25267 +g27 +sg25268 +S'Tureen' +p40636 +sg25270 +S'Ralph Atkinson' +p40637 +sa(dp40638 +g25267 +g27 +sg25268 +S'Porcelain Jar' +p40639 +sg25270 +S'Raymond Manupelli' +p40640 +sa(dp40641 +g25273 +S'pen and black ink with brown wash' +p40642 +sg25267 +g27 +sg25275 +S'1757' +p40643 +sg25268 +S'Cul-de-lampe for Ninth Day, First Story and Cul-de-lampe for Ninth Day, Third Story' +p40644 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40645 +sa(dp40646 +g25267 +g27 +sg25268 +S'Lazy Susan' +p40647 +sg25270 +S'Harry Mann Waddell' +p40648 +sa(dp40649 +g25267 +g27 +sg25268 +S'Plate' +p40650 +sg25270 +S'Margaret Stottlemeyer' +p40651 +sa(dp40652 +g25267 +g27 +sg25268 +S'Potpourri Jar' +p40653 +sg25270 +S'Frank M. Keane' +p40654 +sa(dp40655 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p40656 +sg25270 +S'Robert Stewart' +p40657 +sa(dp40658 +g25267 +g27 +sg25268 +S'Teapot' +p40659 +sg25270 +S'Robert Stewart' +p40660 +sa(dp40661 +g25267 +g27 +sg25268 +S'Perfume Bottle' +p40662 +sg25270 +S'Erwin Schwabe' +p40663 +sa(dp40664 +g25267 +g27 +sg25268 +S'Candle Holder' +p40665 +sg25270 +S'Thomas Holloway' +p40666 +sa(dp40667 +g25267 +g27 +sg25268 +S'Fruit Bowl' +p40668 +sg25270 +S'Margaret Stottlemeyer' +p40669 +sa(dp40670 +g25267 +g27 +sg25268 +S'Teapot' +p40671 +sg25270 +S'Erwin Schwabe' +p40672 +sa(dp40673 +g25267 +g27 +sg25268 +S'Sugar Bowl and Teapot' +p40674 +sg25270 +S'Frances Lichten' +p40675 +sa(dp40676 +g25273 +S'pen and black ink with brown wash' +p40677 +sg25267 +g27 +sg25275 +S'1757' +p40678 +sg25268 +S'Cul-de-lampe for Ninth Day, Fifth Story and Cul-de-lampe for Ninth Day, Eighth Story' +p40679 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40680 +sa(dp40681 +g25267 +g27 +sg25268 +S'Teapot' +p40682 +sg25270 +S'Ralph Atkinson' +p40683 +sa(dp40684 +g25267 +g27 +sg25268 +S'Teapot' +p40685 +sg25270 +S'J. Howard Iams' +p40686 +sa(dp40687 +g25267 +g27 +sg25268 +S'Teapot' +p40688 +sg25270 +S'Joseph Sudek' +p40689 +sa(dp40690 +g25267 +g27 +sg25268 +S'Teapot' +p40691 +sg25270 +S'Ralph Atkinson' +p40692 +sa(dp40693 +g25267 +g27 +sg25268 +S'Teapot' +p40694 +sg25270 +S'Thomas Holloway' +p40695 +sa(dp40696 +g25267 +g27 +sg25268 +S'Earthenware Roasting Pot' +p40697 +sg25270 +S'Einar Heiberg' +p40698 +sa(dp40699 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p40700 +sg25270 +S'Eugene Shellady' +p40701 +sa(dp40702 +g25267 +g27 +sg25268 +S'Pa. German Covered Bowl' +p40703 +sg25270 +S'Alvin Shiren' +p40704 +sa(dp40705 +g25267 +S'This jug, probably a product of a Pennsylvania craftsman, illustrates a technique known as "sgraffito." In this technique, a piece was completely covered with a thin coating of a light-colored slip. When the slip was partially dry, the design \n was drawn by scratching lines through the slip coating, exposing the clay beneath. In addition to the floral design that covers the surface of the jug, a German inscription appears on the neck. It says, "This and the giver are thine forever. 1775." \n Inscribed and dated pieces such as this one were customarily made as special marriage gifts, although elaborately decorated wares were also made to commemorate other occasions, such as births and baptisms.\n ' +p40706 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003e4.jpg' +p40707 +sg25268 +S'Pennsylvania German Puzzle Jug' +p40708 +sg25270 +S'Yolande Delasser' +p40709 +sa(dp40710 +g25267 +g27 +sg25268 +S'Mission Bench' +p40711 +sg25270 +S'Vera Van Voris' +p40712 +sa(dp40713 +g25273 +S'pen and black ink with brown wash' +p40714 +sg25267 +g27 +sg25275 +S'1757' +p40715 +sg25268 +S'Cul-de-lampe for Ninth Day, Seventh Story and Cul-de-lampe for Ninth Day, Sixth Story' +p40716 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40717 +sa(dp40718 +g25267 +g27 +sg25268 +S'Mission Bench' +p40719 +sg25270 +S'Emile Cero' +p40720 +sa(dp40721 +g25267 +g27 +sg25268 +S'Church Bench - Wooden' +p40722 +sg25270 +S'Majel G. Claflin' +p40723 +sa(dp40724 +g25267 +g27 +sg25268 +S'Bench' +p40725 +sg25270 +S'Margery Parish' +p40726 +sa(dp40727 +g25267 +g27 +sg25268 +S'Bench' +p40728 +sg25270 +S'Robert W.R. Taylor' +p40729 +sa(dp40730 +g25267 +g27 +sg25268 +S'Bench' +p40731 +sg25270 +S'Edward Jewett' +p40732 +sa(dp40733 +g25267 +g27 +sg25268 +S'Mission Bench' +p40734 +sg25270 +S'Edward Jewett' +p40735 +sa(dp40736 +g25267 +g27 +sg25268 +S'Mission Bench' +p40737 +sg25270 +S'Randolph F. Miller' +p40738 +sa(dp40739 +g25267 +g27 +sg25268 +S'"Highboy" (Chest of Drawers)' +p40740 +sg25270 +S'Edith Towner' +p40741 +sa(dp40742 +g25267 +g27 +sg25268 +S'Cupboard' +p40743 +sg25270 +S'Edward Jewett' +p40744 +sa(dp40745 +g25267 +g27 +sg25268 +S'Cupboard for Corner' +p40746 +sg25270 +S'Edward Jewett' +p40747 +sa(dp40748 +g25273 +S'pen and black ink with brown wash' +p40749 +sg25267 +g27 +sg25275 +S'1757' +p40750 +sg25268 +S'Cul-de-lampe for Ninth Day, Ninth Story and Cul-de-lampe for Tenth Day, First Story' +p40751 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40752 +sa(dp40753 +g25267 +g27 +sg25268 +S'Built-in Cabinet' +p40754 +sg25270 +S'Marius Hansen' +p40755 +sa(dp40756 +g25267 +g27 +sg25268 +S'Hand-carved Cabinet' +p40757 +sg25270 +S'Vera Van Voris' +p40758 +sa(dp40759 +g25267 +g27 +sg25268 +S'Chest of Native Pine, Painted in Oil' +p40760 +sg25270 +S'E. Boyd' +p40761 +sa(dp40762 +g25267 +S'Richly painted chests had been made in the area of Chihuahua, Mexico, at the turn of the eighteenth century. Visitors from New Mexico brought examples back with them as containers for wedding finery. During the first part of the nineteenth century,\r\n such chests were copied in New Mexico, possibly by artists who had lived in or had come from Mexico. This example, made in pine, is attributed to a period between 1810 and 1820. It is from the Rio Grande Valley south of Taos. One of a group of about forty chests of a similar type, it displays lush decorative motifs and bright colors.\n ' +p40763 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003d5.jpg' +p40764 +sg25268 +S'Chest of Native Pine Painted in Oil' +p40765 +sg25270 +S'E. Boyd' +p40766 +sa(dp40767 +g25267 +g27 +sg25268 +S'Painted Chest, Michoacan' +p40768 +sg25270 +S'Chester Faris' +p40769 +sa(dp40770 +g25267 +g27 +sg25268 +S'Painted Chest' +p40771 +sg25270 +S'Majel G. Claflin' +p40772 +sa(dp40773 +g25267 +g27 +sg25268 +S'Painted Chest' +p40774 +sg25270 +S'D.P. Jones' +p40775 +sa(dp40776 +g25267 +g27 +sg25268 +S'Painted Chest' +p40777 +sg25270 +S'Chester Faris' +p40778 +sa(dp40779 +g25267 +g27 +sg25268 +S'Side of Chest' +p40780 +sg25270 +S'D.P. Jones' +p40781 +sa(dp40782 +g25267 +g27 +sg25268 +S'End of Chest' +p40783 +sg25270 +S'D.P. Jones' +p40784 +sa(dp40785 +g25273 +S'pen and black ink with brown wash' +p40786 +sg25267 +g27 +sg25275 +S'1757' +p40787 +sg25268 +S'Cul-de-lampe for Ninth Day, Tenth Story and Cul-de-lampe for Tenth Day, Introduction' +p40788 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40789 +sa(dp40790 +g25267 +g27 +sg25268 +S'Chest' +p40791 +sg25270 +S'D.P. Jones' +p40792 +sa(dp40793 +g25267 +g27 +sg25268 +S'Chest' +p40794 +sg25270 +S'Margery Parish' +p40795 +sa(dp40796 +g25267 +g27 +sg25268 +S'Chest' +p40797 +sg25270 +S'American 20th Century' +p40798 +sa(dp40799 +g25267 +g27 +sg25268 +S'Trastero (chest)' +p40800 +sg25270 +S'Margery Parish' +p40801 +sa(dp40802 +g25267 +g27 +sg25268 +S'Small Chest' +p40803 +sg25270 +S'E. Boyd' +p40804 +sa(dp40805 +g25267 +g27 +sg25268 +S'Box' +p40806 +sg25270 +S'Majel G. Claflin' +p40807 +sa(dp40808 +g25267 +g27 +sg25268 +S'Large Chest' +p40809 +sg25270 +S'Majel G. Claflin' +p40810 +sa(dp40811 +g25267 +g27 +sg25268 +S'Native Pine Box' +p40812 +sg25270 +S'E. Boyd' +p40813 +sa(dp40814 +g25267 +g27 +sg25268 +S'Rawhide Chest, with Lock (Inside View)' +p40815 +sg25270 +S'Gerald Transpota' +p40816 +sa(dp40817 +g25267 +g27 +sg25268 +S'Chest' +p40818 +sg25270 +S'Margery Parish' +p40819 +sa(dp40820 +g25273 +S'pen and black ink with brown wash' +p40821 +sg25267 +g27 +sg25275 +S'1757' +p40822 +sg25268 +S'Cul-de-lampe for Tenth Day, Second Story and Cul-de-lampe for Tenth Day, Fourth Story' +p40823 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40824 +sa(dp40825 +g25267 +g27 +sg25268 +S'Chest' +p40826 +sg25270 +S'Margery Parish' +p40827 +sa(dp40828 +g25267 +S'The carving of this chest is identified with Taos, New Mexico. The piece dates from about 1870. Decorative motifs are contained in separate units which, varied and repeated, cover the panel without any connection between the units; sequence rather than rhythm is the underlying principle. The sawtooth motif on the base is typical of effects resulting from limited tools. The massive proportions of such chests were in harmony with the large adobe houses of the southwest.\n ' +p40829 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003dc.jpg' +p40830 +sg25268 +S'"Casa en Mesita" or Chest on Stand' +p40831 +sg25270 +S'Majel G. Claflin' +p40832 +sa(dp40833 +g25267 +g27 +sg25268 +S'Chest' +p40834 +sg25270 +S'Edward Jewett' +p40835 +sa(dp40836 +g25267 +g27 +sg25268 +S'Chest' +p40837 +sg25270 +S'Majel G. Claflin' +p40838 +sa(dp40839 +g25267 +g27 +sg25268 +S'Grain Chest' +p40840 +sg25270 +S'Majel G. Claflin' +p40841 +sa(dp40842 +g25267 +g27 +sg25268 +S'Chest' +p40843 +sg25270 +S'Margery Parish' +p40844 +sa(dp40845 +g25267 +g27 +sg25268 +S'"Chest"' +p40846 +sg25270 +S'Edith Towner' +p40847 +sa(dp40848 +g25267 +g27 +sg25268 +S'Chest for Clothing or Blankets' +p40849 +sg25270 +S'Majel G. Claflin' +p40850 +sa(dp40851 +g25267 +g27 +sg25268 +S'Baby Cradle' +p40852 +sg25270 +S'Grace Thomas' +p40853 +sa(dp40854 +g25267 +g27 +sg25268 +S'Chair' +p40855 +sg25270 +S'Vera Van Voris' +p40856 +sa(dp40857 +g25273 +S'pen and black ink with brown wash' +p40858 +sg25267 +g27 +sg25275 +S'1757' +p40859 +sg25268 +S'Cul-de-lampe for Tenth Day, Third Story and Cul-de-lampe for Tenth Day, Sixth Story' +p40860 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40861 +sa(dp40862 +g25267 +g27 +sg25268 +S'Chair' +p40863 +sg25270 +S'Natalie Simon' +p40864 +sa(dp40865 +g25267 +g27 +sg25268 +S'Chair' +p40866 +sg25270 +S'Majel G. Claflin' +p40867 +sa(dp40868 +g25267 +g27 +sg25268 +S'Sanctuary Chair' +p40869 +sg25270 +S'William Kieckhofel' +p40870 +sa(dp40871 +g25267 +g27 +sg25268 +S'Chair' +p40872 +sg25270 +S'Edward Jewett' +p40873 +sa(dp40874 +g25267 +g27 +sg25268 +S'Chair (Scale Drawing)' +p40875 +sg25270 +S'Edward Jewett' +p40876 +sa(dp40877 +g25267 +g27 +sg25268 +S'Chair' +p40878 +sg25270 +S'Majel G. Claflin' +p40879 +sa(dp40880 +g25267 +S'Spanish Renaissance traditions were continued in the furniture of Mexico and reached California and New Mexico with the establishment of the early missions. This armchair from California is of pine and dates from the late eighteenth century. Often such furniture, doweled and pegged together without nails, shows the natural unpainted wood and a native folk style in the carved motifs. The primitive lines and rigid construction of the pieces can be attributed to the scarcity of tools and implements.\n ' +p40881 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003d3.jpg' +p40882 +sg25268 +S'Chair (Arm)' +p40883 +sg25270 +S'Hal Blakeley' +p40884 +sa(dp40885 +g25267 +g27 +sg25268 +S'Chair' +p40886 +sg25270 +S'William Kieckhofel' +p40887 +sa(dp40888 +g25267 +g27 +sg25268 +S'Chair' +p40889 +sg25270 +S'Robert W.R. Taylor' +p40890 +sa(dp40891 +g25267 +g27 +sg25268 +S'Arm Chair' +p40892 +sg25270 +S'Hal Blakeley' +p40893 +sa(dp40894 +g25273 +S'pen and black ink with brown wash' +p40895 +sg25267 +g27 +sg25275 +S'1757' +p40896 +sg25268 +S'Cul-de-lampe for Tenth Day, Fifth Story and Cul-de-lampe for Tenth Day, Seventh Story' +p40897 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40898 +sa(dp40899 +g25267 +g27 +sg25268 +S'Sacristy chair' +p40900 +sg25270 +S'Vera Van Voris' +p40901 +sa(dp40902 +g25267 +g27 +sg25268 +S'Sacramental Chair' +p40903 +sg25270 +S'Gordena Jackson' +p40904 +sa(dp40905 +g25267 +g27 +sg25268 +S'Dining Room Suite' +p40906 +sg25270 +S'Juanita Lantz' +p40907 +sa(dp40908 +g25267 +g27 +sg25268 +S'Chair' +p40909 +sg25270 +S'Margery Parish' +p40910 +sa(dp40911 +g25267 +g27 +sg25268 +S"Miner's Chair - Hand Made" +p40912 +sg25270 +S'Rose Campbell-Gerke' +p40913 +sa(dp40914 +g25267 +g27 +sg25268 +S'Chair' +p40915 +sg25270 +S'Grace Thomas' +p40916 +sa(dp40917 +g25267 +g27 +sg25268 +S'Wooden Chair' +p40918 +sg25270 +S'Majel G. Claflin' +p40919 +sa(dp40920 +g25267 +g27 +sg25268 +S'Chair' +p40921 +sg25270 +S'Grace Thomas' +p40922 +sa(dp40923 +g25267 +g27 +sg25268 +S'Small Wooden Chair' +p40924 +sg25270 +S'Majel G. Claflin' +p40925 +sa(dp40926 +g25267 +g27 +sg25268 +S'Ranch Chair' +p40927 +sg25270 +S'Verna Tallman' +p40928 +sa(dp40929 +g25273 +S'pen and black ink with brown wash' +p40930 +sg25267 +g27 +sg25275 +S'1757' +p40931 +sg25268 +S'Cul-de-lampe for Tenth Day, Eighth Story and Cul-de-lampe for Tenth Day, Tenth Story' +p40932 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40933 +sa(dp40934 +g25267 +g27 +sg25268 +S'Chair' +p40935 +sg25270 +S'Majel G. Claflin' +p40936 +sa(dp40937 +g25267 +g27 +sg25268 +S'Hutch Table' +p40938 +sg25270 +S'Margery Parish' +p40939 +sa(dp40940 +g25267 +g27 +sg25268 +S'Sanctuary Table' +p40941 +sg25270 +S'Dayton Brown' +p40942 +sa(dp40943 +g25267 +g27 +sg25268 +S'Bier' +p40944 +sg25270 +S'Randolph F. Miller' +p40945 +sa(dp40946 +g25267 +g27 +sg25268 +S'Table' +p40947 +sg25270 +S'William Kieckhofel' +p40948 +sa(dp40949 +g25267 +g27 +sg25268 +S'Decorative Panel Under Window' +p40950 +sg25270 +S'Albert Pratt' +p40951 +sa(dp40952 +g25267 +g27 +sg25268 +S'Sant de Retablo' +p40953 +sg25270 +S'Artist Information (' +p40954 +sa(dp40955 +g25267 +g27 +sg25268 +S'Santo de Retablo (Virgin Mary)' +p40956 +sg25270 +S'Artist Information (' +p40957 +sa(dp40958 +g25267 +g27 +sg25268 +S'Reliquary of Father Junipero Serra' +p40959 +sg25270 +S'William Kieckhofel' +p40960 +sa(dp40961 +g25267 +g27 +sg25268 +S'Water Spout' +p40962 +sg25270 +S'Raymond E. Noble' +p40963 +sa(dp40964 +g25273 +S'pen and black ink with brown wash' +p40965 +sg25267 +g27 +sg25275 +S'1757' +p40966 +sg25268 +S'Cul-de-lampe for Tenth Day, Ninth Story and Cul-de-lampe for Last Page' +p40967 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p40968 +sa(dp40969 +g25267 +g27 +sg25268 +S'Wrought Iron Cross (Restored)' +p40970 +sg25270 +S'Gordena Jackson' +p40971 +sa(dp40972 +g25267 +g27 +sg25268 +S'Wooden Plaque - Lamb of God' +p40973 +sg25270 +S'Gordena Jackson' +p40974 +sa(dp40975 +g25267 +g27 +sg25268 +S'Armchair' +p40976 +sg25270 +S'Robert W.R. Taylor' +p40977 +sa(dp40978 +g25267 +g27 +sg25268 +S'Doorway and Doors' +p40979 +sg25270 +S'Randolph F. Miller' +p40980 +sa(dp40981 +g25267 +g27 +sg25268 +S'Book Cover' +p40982 +sg25270 +S'Randolph F. Miller' +p40983 +sa(dp40984 +g25267 +S'The workshops of San Fernando were renowned for their ironwork. Produced by\r\n Indian blacksmiths, this handsome window grille is an example of their craft, and its style is typical of San Fernando, which created the most ornate grilles of all the missions.\r\n This window grille continues an art form that was indigenous to Spain. Not only is the design of European origin, but iron itself was a new artistic medium for the Indian craftsmen of California who had previously worked only in stone and wood.\n ' +p40985 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003d8.jpg' +p40986 +sg25268 +S'Iron Grille' +p40987 +sg25270 +S'William Kieckhofel' +p40988 +sa(dp40989 +g25267 +g27 +sg25268 +S'Mission Fountain' +p40990 +sg25270 +S'William Kieckhofel' +p40991 +sa(dp40992 +g25267 +g27 +sg25268 +S'Mission Fountain' +p40993 +sg25270 +S'Raymond E. Noble' +p40994 +sa(dp40995 +g25267 +g27 +sg25268 +S'Hand-carved Armchair' +p40996 +sg25270 +S'Gerald Transpota' +p40997 +sa(dp40998 +g25267 +g27 +sg25268 +S'Choir Rail' +p40999 +sg25270 +S'Josephine C. Romano' +p41000 +sa(dp41001 +g25273 +S'Italian, 1313 - 1375' +p41002 +sg25267 +g27 +sg25275 +S'(author)' +p41003 +sg25268 +S'Le Decameron ... (volume I)' +p41004 +sg25270 +S'Artist Information (' +p41005 +sa(dp41006 +g25267 +g27 +sg25268 +S'Pa. German Fractur' +p41007 +sg25270 +S'Elmer R. Kottcamp' +p41008 +sa(dp41009 +g25267 +g27 +sg25268 +S'Pa. German Fraktur' +p41010 +sg25270 +S'Albert Levone' +p41011 +sa(dp41012 +g25267 +g27 +sg25268 +S'Pa. German Music Book' +p41013 +sg25270 +S'Elmer G. Anderson' +p41014 +sa(dp41015 +g25267 +g27 +sg25268 +S'Pa. German Birth Certificate' +p41016 +sg25270 +S'Charlotte Angus' +p41017 +sa(dp41018 +g25267 +g27 +sg25268 +S'Pa. German Birth Certificate' +p41019 +sg25270 +S'Myra Newswanger' +p41020 +sa(dp41021 +g25267 +S'Births, baptisms, and deaths were three important family occasions recorded in fracturs. Because such records were required by law in the old country, the tradition was continued in America. \n This is a birth certificate recording the birth of Lea Herold, April 5, 1824. Done on old wrapping paper, the elaborate design dwarfs the writing. Flowers sprawl profusely over the page in the bold colors that mark Pennsylvania German art.\n ' +p41022 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000379.jpg' +p41023 +sg25268 +S'Birth Certificate' +p41024 +sg25270 +S'Charles Roadman' +p41025 +sa(dp41026 +g25267 +g27 +sg25268 +S'Love Seat' +p41027 +sg25270 +S'Joseph Rothenberg' +p41028 +sa(dp41029 +g25267 +g27 +sg25268 +S'Gate Leg Table' +p41030 +sg25270 +S'Frank Wenger' +p41031 +sa(dp41032 +g25267 +g27 +sg25268 +S'Low Boy' +p41033 +sg25270 +S'Frank Wenger' +p41034 +sa(dp41035 +g25267 +g27 +sg25268 +S'Sideboard' +p41036 +sg25270 +S'M. Rosenshield-von-Paulin' +p41037 +sa(dp41038 +g25273 +S'Italian, 1313 - 1375' +p41039 +sg25267 +g27 +sg25275 +S'(author)' +p41040 +sg25268 +S'Le Decameron ... (volume II)' +p41041 +sg25270 +S'Artist Information (' +p41042 +sa(dp41043 +g25267 +g27 +sg25268 +S'Table (Knee Hole)' +p41044 +sg25270 +S'Filippo Porreca' +p41045 +sa(dp41046 +g25267 +g27 +sg25268 +S'Butterfly Table' +p41047 +sg25270 +S'Charles Squires' +p41048 +sa(dp41049 +g25267 +g27 +sg25268 +S'Pembroke Table' +p41050 +sg25270 +S'Florence Choate' +p41051 +sa(dp41052 +g25267 +g27 +sg25268 +S'Dressing Table' +p41053 +sg25270 +S'Lorenz Rothkranz' +p41054 +sa(dp41055 +g25267 +g27 +sg25268 +S'Sideboard' +p41056 +sg25270 +S'American 20th Century' +p41057 +sa(dp41058 +g25267 +g27 +sg25268 +S'Gaming Table' +p41059 +sg25270 +S'Ferdinand Cartier' +p41060 +sa(dp41061 +g25267 +g27 +sg25268 +S'Sewing Table' +p41062 +sg25270 +S'Ferdinand Cartier' +p41063 +sa(dp41064 +g25267 +g27 +sg25268 +S'Card Table' +p41065 +sg25270 +S'Anna Aloisi' +p41066 +sa(dp41067 +g25267 +g27 +sg25268 +S'Card Table' +p41068 +sg25270 +S'Nicholas Gorid' +p41069 +sa(dp41070 +g25267 +g27 +sg25268 +S'Sofa Table' +p41071 +sg25270 +S'Francis Borelli' +p41072 +sa(dp41073 +g25273 +S'Italian, 1313 - 1375' +p41074 +sg25267 +g27 +sg25275 +S'(author)' +p41075 +sg25268 +S'Le Decameron ... (volume III)' +p41076 +sg25270 +S'Artist Information (' +p41077 +sa(dp41078 +g25267 +g27 +sg25268 +S'Petroglyphs' +p41079 +sg25270 +S'Lala Eve Rivol' +p41080 +sa(dp41081 +g25267 +g27 +sg25268 +S'Petroglyphs' +p41082 +sg25270 +S'Lala Eve Rivol' +p41083 +sa(dp41084 +g25267 +g27 +sg25268 +S'Petroglyphs - Human Figures' +p41085 +sg25270 +S'Lala Eve Rivol' +p41086 +sa(dp41087 +g25267 +g27 +sg25268 +S'Petroglyph Design' +p41088 +sg25270 +S'Lala Eve Rivol' +p41089 +sa(dp41090 +g25267 +g27 +sg25268 +S'Petroglyph Design' +p41091 +sg25270 +S'Lala Eve Rivol' +p41092 +sa(dp41093 +g25267 +g27 +sg25268 +S'Petroglyph - Human Figures' +p41094 +sg25270 +S'Lala Eve Rivol' +p41095 +sa(dp41096 +g25267 +g27 +sg25268 +S'Petroglyph - Human Figures' +p41097 +sg25270 +S'Lala Eve Rivol' +p41098 +sa(dp41099 +g25267 +g27 +sg25268 +S'Petroglyph - Human Figures' +p41100 +sg25270 +S'Lala Eve Rivol' +p41101 +sa(dp41102 +g25267 +g27 +sg25268 +S'Petroglyph - Human Figures' +p41103 +sg25270 +S'Lala Eve Rivol' +p41104 +sa(dp41105 +g25267 +g27 +sg25268 +S'Petroglyph Design' +p41106 +sg25270 +S'Lala Eve Rivol' +p41107 +sa(dp41108 +g25273 +S'Italian, 1313 - 1375' +p41109 +sg25267 +g27 +sg25275 +S'(author)' +p41110 +sg25268 +S'Le Decameron ... (volume IV)' +p41111 +sg25270 +S'Artist Information (' +p41112 +sa(dp41113 +g25267 +g27 +sg25268 +S'Petroglyph - Human Figures' +p41114 +sg25270 +S'Lala Eve Rivol' +p41115 +sa(dp41116 +g25267 +g27 +sg25268 +S'Petroglyph - Human Figures' +p41117 +sg25270 +S'Lala Eve Rivol' +p41118 +sa(dp41119 +g25267 +g27 +sg25268 +S'Petroglyph Design' +p41120 +sg25270 +S'Lala Eve Rivol' +p41121 +sa(dp41122 +g25267 +g27 +sg25268 +S'Petroglyph Design' +p41123 +sg25270 +S'Lala Eve Rivol' +p41124 +sa(dp41125 +g25267 +g27 +sg25268 +S'Petroglyph - Animal' +p41126 +sg25270 +S'Lala Eve Rivol' +p41127 +sa(dp41128 +g25267 +g27 +sg25268 +S'Petroglyph - Signs' +p41129 +sg25270 +S'Lala Eve Rivol' +p41130 +sa(dp41131 +g25267 +g27 +sg25268 +S'Petroglyph' +p41132 +sg25270 +S'Lala Eve Rivol' +p41133 +sa(dp41134 +g25267 +g27 +sg25268 +S'Petroglyph' +p41135 +sg25270 +S'Lala Eve Rivol' +p41136 +sa(dp41137 +g25267 +g27 +sg25268 +S'Petroglyph' +p41138 +sg25270 +S'Lala Eve Rivol' +p41139 +sa(dp41140 +g25267 +g27 +sg25268 +S'Petroglyph' +p41141 +sg25270 +S'Lala Eve Rivol' +p41142 +sa(dp41143 +g25273 +S'Italian, 1313 - 1375' +p41144 +sg25267 +g27 +sg25275 +S'(author)' +p41145 +sg25268 +S'Le Decameron ... (volume V)' +p41146 +sg25270 +S'Artist Information (' +p41147 +sa(dp41148 +g25267 +g27 +sg25268 +S'Petroglyph' +p41149 +sg25270 +S'Lala Eve Rivol' +p41150 +sa(dp41151 +g25267 +g27 +sg25268 +S'Petroglyph' +p41152 +sg25270 +S'Lala Eve Rivol' +p41153 +sa(dp41154 +g25267 +g27 +sg25268 +S'Petroglyph' +p41155 +sg25270 +S'Lala Eve Rivol' +p41156 +sa(dp41157 +g25267 +g27 +sg25268 +S'Petroglyph' +p41158 +sg25270 +S'Lala Eve Rivol' +p41159 +sa(dp41160 +g25267 +g27 +sg25268 +S'Petroglyph' +p41161 +sg25270 +S'Lala Eve Rivol' +p41162 +sa(dp41163 +g25267 +g27 +sg25268 +S'Petroglyph' +p41164 +sg25270 +S'Lala Eve Rivol' +p41165 +sa(dp41166 +g25267 +g27 +sg25268 +S'Petroglyph' +p41167 +sg25270 +S'Lala Eve Rivol' +p41168 +sa(dp41169 +g25267 +g27 +sg25268 +S'Petroglyph' +p41170 +sg25270 +S'Lala Eve Rivol' +p41171 +sa(dp41172 +g25267 +g27 +sg25268 +S'Petroglyph' +p41173 +sg25270 +S'Lala Eve Rivol' +p41174 +sa(dp41175 +g25267 +g27 +sg25268 +S'Petroglyph' +p41176 +sg25270 +S'Lala Eve Rivol' +p41177 +sa(dp41178 +g25273 +S'French, 1621 - 1695' +p41179 +sg25267 +g27 +sg25275 +S'(author)' +p41180 +sg25268 +S'Contes et nouvelles en vers (volume I)' +p41181 +sg25270 +S'Artist Information (' +p41182 +sa(dp41183 +g25268 +S'Basement of Urban House, 1910' +p41184 +sg25270 +S'Perkins Harnly' +p41185 +sg25273 +S'watercolor, pen and ink, gouache, and graphite on paper' +p41186 +sg25275 +S'c. 1947' +p41187 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a00064fa.jpg' +p41188 +sg25267 +g27 +sa(dp41189 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a00058e9.jpg' +p41190 +sg25268 +S'Boudoir' +p41191 +sg25270 +S'Perkins Harnly' +p41192 +sa(dp41193 +g25267 +g27 +sg25268 +S'Sitting Room' +p41194 +sg25270 +S'Perkins Harnly' +p41195 +sa(dp41196 +g25267 +g27 +sg25268 +S'Interior of Pullman Coach, 1888' +p41197 +sg25270 +S'American 20th Century' +p41198 +sa(dp41199 +g25267 +g27 +sg25268 +S'Conservatory Fountain' +p41200 +sg25270 +S'Artist Information (' +p41201 +sa(dp41202 +g25267 +g27 +sg25268 +S"Woman's Bedroom" +p41203 +sg25270 +S'Perkins Harnly' +p41204 +sa(dp41205 +g25267 +g27 +sg25268 +S"Dentist's Operating Room" +p41206 +sg25270 +S'Perkins Harnly' +p41207 +sa(dp41208 +g25273 +S'watercolor, gouache, and graphite on paper' +p41209 +sg25267 +g27 +sg25275 +S'1935/1942' +p41210 +sg25268 +S'Second Floor Stair Landing and Hall' +p41211 +sg25270 +S'Perkins Harnly' +p41212 +sa(dp41213 +g25267 +g27 +sg25268 +S'Pullman Coach' +p41214 +sg25270 +S'Perkins Harnly' +p41215 +sa(dp41216 +g25267 +g27 +sg25268 +S'Entrance Hall' +p41217 +sg25270 +S'Perkins Harnly' +p41218 +sa(dp41219 +g25273 +S'pen and black ink and brush and black ink with gray wash' +p41220 +sg25267 +g27 +sg25275 +S'1795' +p41221 +sg25268 +S'Le depart' +p41222 +sg25270 +S'Jean-Jacques-Fran\xc3\xa7ois Le Barbier I' +p41223 +sa(dp41224 +g25273 +S'watercolor, gouache, pen and ink, and graphite on paper' +p41225 +sg25267 +g27 +sg25275 +S'1935/1942' +p41226 +sg25268 +S'Iron Foundry, 1910' +p41227 +sg25270 +S'Perkins Harnly' +p41228 +sa(dp41229 +g25273 +S'watercolor, gouache, pen and ink, and graphite on paper' +p41230 +sg25267 +g27 +sg25275 +S'1935/1942' +p41231 +sg25268 +S'Window Alcove' +p41232 +sg25270 +S'Perkins Harnly' +p41233 +sa(dp41234 +g25267 +g27 +sg25268 +S'Stage Backdrop' +p41235 +sg25270 +S'Perkins Harnly' +p41236 +sa(dp41237 +g25267 +g27 +sg25268 +S'Fire Station' +p41238 +sg25270 +S'Perkins Harnly' +p41239 +sa(dp41240 +g25267 +g27 +sg25268 +S'Conservatory Window with Flowers' +p41241 +sg25270 +S'Perkins Harnly' +p41242 +sa(dp41243 +g25273 +S'watercolor, gouache, pen and ink, and graphite on paper' +p41244 +sg25267 +g27 +sg25275 +S'c. 1946' +p41245 +sg25268 +S'Hollywood Hotel Lobby, 1902' +p41246 +sg25270 +S'Perkins Harnly' +p41247 +sa(dp41248 +g25267 +g27 +sg25268 +S'Backdrop for Vaudeville Stage' +p41249 +sg25270 +S'Artist Information (' +p41250 +sa(dp41251 +g25267 +g27 +sg25268 +S'Bathroom' +p41252 +sg25270 +S'Perkins Harnly' +p41253 +sa(dp41254 +g25267 +g27 +sg25268 +S'Stable' +p41255 +sg25270 +S'Perkins Harnly' +p41256 +sa(dp41257 +g25267 +g27 +sg25268 +S'Cozy Corner' +p41258 +sg25270 +S'Perkins Harnly' +p41259 +sa(dp41260 +g25273 +S'French, 1732 - 1806' +p41261 +sg25267 +g27 +sg25275 +S'(artist after)' +p41262 +sg25268 +S"La Matrone d'Ephese" +p41263 +sg25270 +S'Artist Information (' +p41264 +sa(dp41265 +g25267 +g27 +sg25268 +S'Dining Room' +p41266 +sg25270 +S'Perkins Harnly' +p41267 +sa(dp41268 +g25267 +g27 +sg25268 +S'Grocery Store' +p41269 +sg25270 +S'Perkins Harnly' +p41270 +sa(dp41271 +g25267 +g27 +sg25268 +S'Soda Fountain' +p41272 +sg25270 +S'Hans Westendorff' +p41273 +sa(dp41274 +g25273 +S'watercolor, pen and ink, gouache, and graphite on paper' +p41275 +sg25267 +g27 +sg25275 +S'1935/1942' +p41276 +sg25268 +S'Millinery Shop, 1905' +p41277 +sg25270 +S'Perkins Harnly' +p41278 +sa(dp41279 +g25273 +S'watercolor, gouache, pen and ink, and graphite on paperboard' +p41280 +sg25267 +g27 +sg25275 +S'1935/1942' +p41281 +sg25268 +S'Print Shop, 1870' +p41282 +sg25270 +S'Perkins Harnly' +p41283 +sa(dp41284 +g25273 +S'watercolor, gouache, pen and ink, and graphite on paper' +p41285 +sg25267 +g27 +sg25275 +S'1935/1942' +p41286 +sg25268 +S'Pool Room, 1890' +p41287 +sg25270 +S'Perkins Harnly' +p41288 +sa(dp41289 +g25273 +S'watercolor, gouache, pen and ink, and graphite on paper' +p41290 +sg25267 +g27 +sg25275 +S'1935/1942' +p41291 +sg25268 +S'Rural Sitting Room, 1900' +p41292 +sg25270 +S'Perkins Harnly' +p41293 +sa(dp41294 +g25273 +S'watercolor, gouache, pen and ink, and graphite on paper' +p41295 +sg25267 +g27 +sg25275 +S'1935/1942' +p41296 +sg25268 +S'Blacksmith Shop' +p41297 +sg25270 +S'Perkins Harnly' +p41298 +sa(dp41299 +g25273 +S'watercolor, gouache, pen and ink, and graphite on paper' +p41300 +sg25267 +g27 +sg25275 +S'1935/1942' +p41301 +sg25268 +S"Architect's Drafting Room, 1884" +p41302 +sg25270 +S'Perkins Harnly' +p41303 +sa(dp41304 +g25273 +S'watercolor, pen and ink, gouache, and graphite on paper' +p41305 +sg25267 +g27 +sg25275 +S'1935/1942' +p41306 +sg25268 +S'Barn Gangway' +p41307 +sg25270 +S'Perkins Harnly' +p41308 +sa(dp41309 +g25273 +S'French, 1621 - 1695' +p41310 +sg25267 +g27 +sg25275 +S'(author)' +p41311 +sg25268 +S'Contes et nouvelles en vers (volume II)' +p41312 +sg25270 +S'Artist Information (' +p41313 +sa(dp41314 +g25273 +S'watercolor, pen and ink, and graphite on paper' +p41315 +sg25267 +g27 +sg25275 +S'1935/1942' +p41316 +sg25268 +S'Cigar Store, 1901' +p41317 +sg25270 +S'Perkins Harnly' +p41318 +sa(dp41319 +g25273 +S'watercolor, gouache, pen and ink, and graphite on paper' +p41320 +sg25267 +g27 +sg25275 +S'1935/1942' +p41321 +sg25268 +S'Cocktail Lounge, 1946' +p41322 +sg25270 +S'Perkins Harnly' +p41323 +sa(dp41324 +g25267 +g27 +sg25268 +S'Drugstore' +p41325 +sg25270 +S'American 20th Century' +p41326 +sa(dp41327 +g25273 +S'watercolor, gouache, pen and ink, and graphite on paper' +p41328 +sg25267 +g27 +sg25275 +S'1935/1942' +p41329 +sg25268 +S'Baptist Church, 1901' +p41330 +sg25270 +S'Perkins Harnly' +p41331 +sa(dp41332 +g25273 +S'watercolor, pen and ink, and graphite on paper' +p41333 +sg25267 +g27 +sg25275 +S'1935/1942' +p41334 +sg25268 +S'Bedroom, 1940' +p41335 +sg25270 +S'Perkins Harnly' +p41336 +sa(dp41337 +g25273 +S'watercolor, pen and ink, and graphite on paper' +p41338 +sg25267 +g27 +sg25275 +S'1935/1942' +p41339 +sg25268 +S'Veranda, 1885' +p41340 +sg25270 +S'Perkins Harnly' +p41341 +sa(dp41342 +g25273 +S'watercolor, gouache, pen and ink, and graphite on paper' +p41343 +sg25267 +g27 +sg25275 +S'1935/1942' +p41344 +sg25268 +S'Stairway and Hall, Hotel Del Coronado' +p41345 +sg25270 +S'Perkins Harnly' +p41346 +sa(dp41347 +g25273 +S'watercolor, gouache, pen and ink, and graphite on paper' +p41348 +sg25267 +g27 +sg25275 +S'1946' +p41349 +sg25268 +S'"Japan" Lacquer Dipping Vat' +p41350 +sg25270 +S'Perkins Harnly' +p41351 +sa(dp41352 +g25268 +S'Garage of Funeral Parlor, 1917' +p41353 +sg25270 +S'Perkins Harnly' +p41354 +sg25273 +S'watercolor, gouache, pen and ink, and graphite on paper' +p41355 +sg25275 +S'1935/1942' +p41356 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a00064fb.jpg' +p41357 +sg25267 +g27 +sa(dp41358 +g25273 +S'watercolor, gouache, pen and ink, and graphite on paper' +p41359 +sg25267 +g27 +sg25275 +S'1935/1942' +p41360 +sg25268 +S'Monument Display Room, 1888' +p41361 +sg25270 +S'Perkins Harnly' +p41362 +sa(dp41363 +g25273 +S'engraving' +p41364 +sg25267 +g27 +sg25275 +S'1767' +p41365 +sg25268 +S'Title Page' +p41366 +sg25270 +S'Pierre-Philippe Choffard' +p41367 +sa(dp41368 +g25273 +S'watercolor, gouache, pen and ink, and graphite on paper' +p41369 +sg25267 +g27 +sg25275 +S'c. 1946' +p41370 +sg25268 +S"Foyer's Men's Club, 1880-1910" +p41371 +sg25270 +S'Perkins Harnly' +p41372 +sa(dp41373 +g25268 +S'Funeral Parlor, 1895-1920' +p41374 +sg25270 +S'Perkins Harnly' +p41375 +sg25273 +S'watercolor, gouache, pen and ink, and graphite on paper' +p41376 +sg25275 +S'c. 1947' +p41377 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a00064fc.jpg' +p41378 +sg25267 +g27 +sa(dp41379 +g25273 +S'watercolor, gouache, pen and ink, and graphite on paper' +p41380 +sg25267 +g27 +sg25275 +S'1935/1942' +p41381 +sg25268 +S'Theatre Lobby' +p41382 +sg25270 +S'Perkins Harnly' +p41383 +sa(dp41384 +g25273 +S'watercolor, gouache, pen and ink, and graphite on paper' +p41385 +sg25267 +g27 +sg25275 +S'c. 1947' +p41386 +sg25268 +S'Theatre Box, 1892' +p41387 +sg25270 +S'Perkins Harnly' +p41388 +sa(dp41389 +g25273 +S'watercolor, gouache, pen and ink, and graphite on paper' +p41390 +sg25267 +g27 +sg25275 +S'1935/1942' +p41391 +sg25268 +S'Semi-Rural Kitchen and Dining Room, 1910' +p41392 +sg25270 +S'Perkins Harnly' +p41393 +sa(dp41394 +g25273 +S'watercolor, pen and ink, and graphite on paper' +p41395 +sg25267 +g27 +sg25275 +S'c. 1947' +p41396 +sg25268 +S'Interior Sand Blasting Chamber, 1935' +p41397 +sg25270 +S'Perkins Harnly' +p41398 +sa(dp41399 +g25273 +S'watercolor, gouache, pen and ink, and graphite on paper' +p41400 +sg25267 +g27 +sg25275 +S'1935/1942' +p41401 +sg25268 +S'Room House Bed-Living Room' +p41402 +sg25270 +S'Perkins Harnly' +p41403 +sa(dp41404 +g25273 +S'watercolor, gouache, pen and ink, and graphite on paper' +p41405 +sg25267 +g27 +sg25275 +S'c. 1947' +p41406 +sg25268 +S'Melrose Hotel Lobby, 1880' +p41407 +sg25270 +S'Perkins Harnly' +p41408 +sa(dp41409 +g25273 +S'watercolor, gouache, pen and ink, and graphite on paper' +p41410 +sg25267 +g27 +sg25275 +S'1935/1942' +p41411 +sg25268 +S'Exterior Sand Blasting Chamber, 1935' +p41412 +sg25270 +S'Perkins Harnly' +p41413 +sa(dp41414 +g25267 +S'Furniture in the Jacobean style was made in America from about 1640 to about\r\n 1690. Pieces such as this chest were the work of the joiner, or carpenter, for cabinetmaking\r\n had not yet evolved as a specialty. Simple rectangular construction was the rule.\r\n During the seventeenth century, drawers were added to the box form of early chests,\r\n and the form evolved gradually into the chest of drawers as we know it today. Chest\r\n fronts were often divided into panels that were architectural in character. Frequently\r\n the panels were carved in shallow foliate designs, as seen on this late seventeenth-century\r\n oak chest. In addition to carving them, the seventeenth-century craftsman\r\n embellished his products with turning, that is, with bulbous shapes turned on a\r\n lathe. Turnings, split in half and painted black, were frequently applied between\r\n carved panels on chests, as has been done here.\n ' +p41415 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002c0.jpg' +p41416 +sg25268 +S'Tulip and Sunflower Chest' +p41417 +sg25270 +S'Harold Merriam' +p41418 +sa(dp41419 +g25273 +S'Widener Collection' +p41420 +sg25267 +g27 +sg25275 +S'\nbound volume with 15 drawings and 21 prints by various artists for 1767-1771 ed. of "Les Metamorphoses d\'Ovide"' +p41421 +sg25268 +S'Album of Preliminary Drawings and Prints for "Les Metamorphoses d\'Ovide" (volume 1)' +p41422 +sg25270 +S'Various Artists' +p41423 +sa(dp41424 +g25267 +g27 +sg25268 +S'Wall Painting' +p41425 +sg25270 +S'Martin Partyka' +p41426 +sa(dp41427 +g25267 +g27 +sg25268 +S'Map: California Land Grant Study' +p41428 +sg25270 +S'Hal Blakeley' +p41429 +sa(dp41430 +g25267 +g27 +sg25268 +S'Lockwood Painted Mirror' +p41431 +sg25270 +S'Majel G. Claflin' +p41432 +sa(dp41433 +g25267 +g27 +sg25268 +S'Decorah Altar' +p41434 +sg25270 +S'Raymond Neumann' +p41435 +sa(dp41436 +g25267 +g27 +sg25268 +S'Tavern Sign' +p41437 +sg25270 +S'John Matulis' +p41438 +sa(dp41439 +g25267 +g27 +sg25268 +S'Nameboard from Schooner' +p41440 +sg25270 +S'Beverly Chichester' +p41441 +sa(dp41442 +g25267 +g27 +sg25268 +S'Painted Chest' +p41443 +sg25270 +S'American 20th Century' +p41444 +sa(dp41445 +g25267 +g27 +sg25268 +S'Clock' +p41446 +sg25270 +S'Frank Wenger' +p41447 +sa(dp41448 +g25267 +g27 +sg25268 +S'Wall Painting' +p41449 +sg25270 +S'Martin Partyka' +p41450 +sa(dp41451 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000553e.jpg' +p41452 +sg25268 +S'Shaker Rug' +p41453 +sg25270 +S'George V. Vezolles' +p41454 +sa(dp41455 +g25273 +S'engraving' +p41456 +sg25267 +g27 +sg25275 +S'1767' +p41457 +sg25268 +S'Dedication Page' +p41458 +sg25270 +S'Pierre-Philippe Choffard' +p41459 +sa(dp41460 +g25267 +g27 +sg25268 +S'Jacquard' +p41461 +sg25270 +S'Arthur G. Merkley' +p41462 +sa(dp41463 +g25267 +g27 +sg25268 +S'Tavern Sign' +p41464 +sg25270 +S'American 20th Century' +p41465 +sa(dp41466 +g25267 +g27 +sg25268 +S'Tavern Sign' +p41467 +sg25270 +S'Alfred Parys' +p41468 +sa(dp41469 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p41470 +sg25270 +S'Walter Hochstrasser' +p41471 +sa(dp41472 +g25267 +g27 +sg25268 +S'Death Angel and Cart' +p41473 +sg25270 +S'Eldora P. Lorenzini' +p41474 +sa(dp41475 +g25267 +S"Made in the late nineteenth century, this weather vane represents a contemporaneous\n fire engine. By combining brass, copper, zinc, and iron, the craftsman created a\n functional yet decorative object. The boiler of the engine is made of brass, while\n the other engine parts, the men's bodies, and the horses are copper. The heads\n of the firemen are zinc; the supporting bars are iron painted black. This weather vane\n may have topped a firehouse. Compared with the simple, stylized forms common in\n the folk art tradition, the attention to detail marks this fire engine as an unusually\n fine piece. The craftsman who executed such a work had to be skilled in shaping\n the metal as well as sensitive to the elements of design.\n " +p41476 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002e6.jpg' +p41477 +sg25268 +S'Weather Vane: Model Fire Engine' +p41478 +sg25270 +S'Beverly Chichester' +p41479 +sa(dp41480 +g25267 +g27 +sg25268 +S'Chest' +p41481 +sg25270 +S'D.P. Jones' +p41482 +sa(dp41483 +g25267 +g27 +sg25268 +S'Hand-Painted Wall' +p41484 +sg25270 +S'Martin Partyka' +p41485 +sa(dp41486 +g25267 +g27 +sg25268 +S'Hand-Painted Wall' +p41487 +sg25270 +S'Martin Partyka' +p41488 +sa(dp41489 +g25267 +g27 +sg25268 +S'Wall Stencil' +p41490 +sg25270 +S'Mildred E. Bent' +p41491 +sa(dp41492 +g25273 +S'engraving' +p41493 +sg25267 +g27 +sg25275 +S'1767' +p41494 +sg25268 +S'Dedication Page' +p41495 +sg25270 +S'Pierre-Philippe Choffard' +p41496 +sa(dp41497 +g25267 +g27 +sg25268 +S'Wall Stencil' +p41498 +sg25270 +S'Artist Information (' +p41499 +sa(dp41500 +g25267 +g27 +sg25268 +S'Wall Stencil' +p41501 +sg25270 +S'Michael Lauretano' +p41502 +sa(dp41503 +g25267 +g27 +sg25268 +S'Wall Stencil (copy)' +p41504 +sg25270 +S'Ray Holden' +p41505 +sa(dp41506 +g25267 +g27 +sg25268 +S'Wall Stencil' +p41507 +sg25270 +S'Ray Holden' +p41508 +sa(dp41509 +g25267 +g27 +sg25268 +S'Wall Stencil' +p41510 +sg25270 +S'Alvin M. Gully' +p41511 +sa(dp41512 +g25267 +g27 +sg25268 +S'Colcha' +p41513 +sg25270 +S'Margery Parish' +p41514 +sa(dp41515 +g25267 +g27 +sg25268 +S'Stencilled Floor' +p41516 +sg25270 +S'Jerome Hoxie' +p41517 +sa(dp41518 +g25267 +g27 +sg25268 +S'Stencilled Floor' +p41519 +sg25270 +S'Jerome Hoxie' +p41520 +sa(dp41521 +g25267 +g27 +sg25268 +S'Tavern Bust' +p41522 +sg25270 +S'Walter Hochstrasser' +p41523 +sa(dp41524 +g25267 +g27 +sg25268 +S'Stencilled Floor' +p41525 +sg25270 +S'Michael Lauretano' +p41526 +sa(dp41527 +g25273 +S'graphite' +p41528 +sg25267 +g27 +sg25275 +S'1765' +p41529 +sg25268 +S'Ovide recoit des mains da sa muse ...' +p41530 +sg25270 +S'Charles Eisen' +p41531 +sa(dp41532 +g25267 +g27 +sg25268 +S'Virgin Mary' +p41533 +sg25270 +S'Stanley Mazur' +p41534 +sa(dp41535 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p41536 +sg25270 +S'American 20th Century' +p41537 +sa(dp41538 +g25267 +g27 +sg25268 +S'Male Tea Shop Figure' +p41539 +sg25270 +S'David Ramage' +p41540 +sa(dp41541 +g25267 +g27 +sg25268 +S'Stencilled Floor' +p41542 +sg25270 +S'Michael Lauretano' +p41543 +sa(dp41544 +g25267 +g27 +sg25268 +S'Hand Carved Eagle' +p41545 +sg25270 +S'John Cutting' +p41546 +sa(dp41547 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p41548 +sg25270 +S'Stanley Mazur' +p41549 +sa(dp41550 +g25267 +g27 +sg25268 +S"Doctor's Buggy" +p41551 +sg25270 +S'Fred Weiss' +p41552 +sa(dp41553 +g25267 +g27 +sg25268 +S'Corner Cupboard' +p41554 +sg25270 +S'Robert Stewart' +p41555 +sa(dp41556 +g25267 +g27 +sg25268 +S'Highboy' +p41557 +sg25270 +S'Frank Wenger' +p41558 +sa(dp41559 +g25267 +g27 +sg25268 +S'Mirror' +p41560 +sg25270 +S'Robert Stewart' +p41561 +sa(dp41562 +g25273 +S'(artist after)' +p41563 +sg25267 +g27 +sg25275 +S'\n' +p41564 +sg25268 +S'Ovide recoit des mains de sa muse ...' +p41565 +sg25270 +S'Artist Information (' +p41566 +sa(dp41567 +g25267 +g27 +sg25268 +S'Gilt Mirror' +p41568 +sg25270 +S'Robert Stewart' +p41569 +sa(dp41570 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p41571 +sg25270 +S'Richard F. Smith' +p41572 +sa(dp41573 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c628.jpg' +p41574 +sg25268 +S'Cigar Store Indian' +p41575 +sg25270 +S'Walter Hochstrasser' +p41576 +sa(dp41577 +g25267 +g27 +sg25268 +S'Tall Clock' +p41578 +sg25270 +S'Ferdinand Cartier' +p41579 +sa(dp41580 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p41581 +sg25270 +S'Eugene Croe' +p41582 +sa(dp41583 +g25267 +g27 +sg25268 +S'Window Shade' +p41584 +sg25270 +S'Artist Information (' +p41585 +sa(dp41586 +g25267 +g27 +sg25268 +S'Window Shade' +p41587 +sg25270 +S'Artist Information (' +p41588 +sa(dp41589 +g25267 +g27 +sg25268 +S'Hudson River Estate' +p41590 +sg25270 +S'Virginia Richards' +p41591 +sa(dp41592 +g25267 +g27 +sg25268 +S'Shop Figure' +p41593 +sg25270 +S'Frank Gray' +p41594 +sa(dp41595 +g25267 +g27 +sg25268 +S'Carousel Horse' +p41596 +sg25270 +S'Mina Lowry' +p41597 +sa(dp41598 +g25273 +S'(artist after)' +p41599 +sg25267 +g27 +sg25275 +S'\n' +p41600 +sg25268 +S'Dieu debrouille le Cahos ...' +p41601 +sg25270 +S'Artist Information (' +p41602 +sa(dp41603 +g25267 +g27 +sg25268 +S'Doll Carriage' +p41604 +sg25270 +S'Louella Long' +p41605 +sa(dp41606 +g25267 +g27 +sg25268 +S'Hobby Horse' +p41607 +sg25270 +S'Mina Lowry' +p41608 +sa(dp41609 +g25267 +S"Wax dolls have been made from very early times — by the ancient Romans, for example, on through the first quarter of the twentieth century. This wax doll was probably made in England, which was noted for its wax dolls in the last half of the nineteenth century. This doll dates from the 1870s, and her elaborate costume is typical of the period. The dress is of blue taffeta trimmed with white organdy lace. The doll's childlike face and hairstyle might seem better suited to a child's body, but the true child doll was not yet common. Not until the 1880s was there a change from predominantly adult dolls to dolls representing children and babies. Many collectors still prefer dolls with features of a child but dressed as an adult.\n " +p41610 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002ef.jpg' +p41611 +sg25268 +S'Doll in Blue Dress' +p41612 +sg25270 +S'Lillian Causey' +p41613 +sa(dp41614 +g25267 +g27 +sg25268 +S'"Age of Chivalry" Circus Wagon' +p41615 +sg25270 +S'Howard Weld' +p41616 +sa(dp41617 +g25267 +g27 +sg25268 +S'Desk' +p41618 +sg25270 +S'Ferdinand Cartier' +p41619 +sa(dp41620 +g25267 +g27 +sg25268 +S'Highboy' +p41621 +sg25270 +S'Lawrence Phillips' +p41622 +sa(dp41623 +g25267 +g27 +sg25268 +S'Jacobean Armchair' +p41624 +sg25270 +S'Artist Information (' +p41625 +sa(dp41626 +g25267 +g27 +sg25268 +S'Highboy' +p41627 +sg25270 +S'M. Rosenshield-von-Paulin' +p41628 +sa(dp41629 +g25267 +g27 +sg25268 +S'Clock' +p41630 +sg25270 +S'Isidore Sovensky' +p41631 +sa(dp41632 +g25267 +g27 +sg25268 +S'Wine Chest' +p41633 +sg25270 +S'Leonard Battee' +p41634 +sa(dp41635 +g25273 +S'(artist after)' +p41636 +sg25267 +g27 +sg25275 +S'\n' +p41637 +sg25268 +S'Dieu debrouille le Cahos ...' +p41638 +sg25270 +S'Artist Information (' +p41639 +sa(dp41640 +g25267 +g27 +sg25268 +S'Apotheosis of Franklin' +p41641 +sg25270 +S'A. Zimet' +p41642 +sa(dp41643 +g25267 +g27 +sg25268 +S'Tavern Sign' +p41644 +sg25270 +S'Alfred Parys' +p41645 +sa(dp41646 +g25267 +g27 +sg25268 +S'Wall Design' +p41647 +sg25270 +S'American 20th Century' +p41648 +sa(dp41649 +g25267 +g27 +sg25268 +S'Cutting House (NYC)' +p41650 +sg25270 +S'J.N. Colgan' +p41651 +sa(dp41652 +g25267 +g27 +sg25268 +S'Wall Design' +p41653 +sg25270 +S'American 20th Century' +p41654 +sa(dp41655 +g25267 +g27 +sg25268 +S'Quilt' +p41656 +sg25270 +S'American 20th Century' +p41657 +sa(dp41658 +g25267 +g27 +sg25268 +S'Court Cupboard' +p41659 +sg25270 +S'Leo Drozdoff' +p41660 +sa(dp41661 +g25267 +g27 +sg25268 +S'Sleigh' +p41662 +sg25270 +S'Fred Weiss' +p41663 +sa(dp41664 +g25267 +g27 +sg25268 +S'Panels from Hartford Chest' +p41665 +sg25270 +S'Harold Merriam' +p41666 +sa(dp41667 +g25267 +g27 +sg25268 +S'Cigar Store Indian "Trapper"' +p41668 +sg25270 +S'Stanley Mazur' +p41669 +sa(dp41670 +g25273 +S'graphite' +p41671 +sg25267 +g27 +sg25275 +S'1765' +p41672 +sg25268 +S"Promethee forme l'homme de terre et d'eau, et Minerve anime son ouvrage" +p41673 +sg25270 +S'Charles Eisen' +p41674 +sa(dp41675 +g25267 +g27 +sg25268 +S'Entrance to Cutting House' +p41676 +sg25270 +S'Lorenz Rothkranz' +p41677 +sa(dp41678 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000553f.jpg' +p41679 +sg25268 +S'Gate' +p41680 +sg25270 +S'American 20th Century' +p41681 +sa(dp41682 +g25267 +g27 +sg25268 +S'Quilt' +p41683 +sg25270 +S'Margaret Concha' +p41684 +sa(dp41685 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p41686 +sg25270 +S'Walter Hochstrasser' +p41687 +sa(dp41688 +g25267 +g27 +sg25268 +S'Chest Design' +p41689 +sg25270 +S'Chester Faris' +p41690 +sa(dp41691 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a0005449.jpg' +p41692 +sg25268 +S'Locomotive' +p41693 +sg25270 +S'American 20th Century' +p41694 +sa(dp41695 +g25267 +g27 +sg25268 +S'Christ in the Sepulchre' +p41696 +sg25270 +S'Eldora P. Lorenzini' +p41697 +sa(dp41698 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p41699 +sg25270 +S'Vincent McPharlin' +p41700 +sa(dp41701 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p41702 +sg25270 +S'Walter Hochstrasser' +p41703 +sa(dp41704 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p41705 +sg25270 +S'Walter Hochstrasser' +p41706 +sa(dp41707 +g25273 +S'(artist after)' +p41708 +sg25267 +g27 +sg25275 +S'\n' +p41709 +sg25268 +S"Promethee forme l'homme de terre et d'eau, et Minerve anime son ouvrage" +p41710 +sg25270 +S'Artist Information (' +p41711 +sa(dp41712 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p41713 +sg25270 +S'Walter Hochstrasser' +p41714 +sa(dp41715 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p41716 +sg25270 +S'Walter Hochstrasser' +p41717 +sa(dp41718 +g25267 +g27 +sg25268 +S'Wallpaper' +p41719 +sg25270 +S'American 20th Century' +p41720 +sa(dp41721 +g25267 +g27 +sg25268 +S'Wallpaper' +p41722 +sg25270 +S'American 20th Century' +p41723 +sa(dp41724 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a000544d.jpg' +p41725 +sg25268 +S'Whirligig' +p41726 +sg25270 +S'Mina Lowry' +p41727 +sa(dp41728 +g25267 +g27 +sg25268 +S'Tavern Sign: "J. Porter"' +p41729 +sg25270 +S'Alfred Parys' +p41730 +sa(dp41731 +g25267 +g27 +sg25268 +S'Stepping Stone' +p41732 +sg25270 +S'Edward DiGennero' +p41733 +sa(dp41734 +g25267 +g27 +sg25268 +S'Hand Painted Wall (Detail)' +p41735 +sg25270 +S'Martin Partyka' +p41736 +sa(dp41737 +g25267 +g27 +sg25268 +S'Fragment of Wall Decoration' +p41738 +sg25270 +S'Michael Lauretano' +p41739 +sa(dp41740 +g25267 +g27 +sg25268 +S'Wall Decoration' +p41741 +sg25270 +S'Michael Lauretano' +p41742 +sa(dp41743 +g25273 +S'graphite' +p41744 +sg25267 +g27 +sg25275 +S'1765' +p41745 +sg25268 +S'Le printemps, saison ou tout renait dans la nature' +p41746 +sg25270 +S'Charles Eisen' +p41747 +sa(dp41748 +g25267 +g27 +sg25268 +S'Free Hand Wall Decoration' +p41749 +sg25270 +S'Michael Lauretano' +p41750 +sa(dp41751 +g25267 +g27 +sg25268 +S'Wall Decoration Below Chair Rail' +p41752 +sg25270 +S'Alvin M. Gully' +p41753 +sa(dp41754 +g25267 +g27 +sg25268 +S'Free Hand Decorated Wall' +p41755 +sg25270 +S'Michael Lauretano' +p41756 +sa(dp41757 +g25267 +g27 +sg25268 +S'Fragment of Wall Decoration' +p41758 +sg25270 +S'Michael Lauretano' +p41759 +sa(dp41760 +g25267 +g27 +sg25268 +S'Free Hand Decorated Wall' +p41761 +sg25270 +S'Michael Lauretano' +p41762 +sa(dp41763 +g25267 +g27 +sg25268 +S'Hand Painted Wall (Detail)' +p41764 +sg25270 +S'Martin Partyka' +p41765 +sa(dp41766 +g25267 +g27 +sg25268 +S'Hand Painted Wall' +p41767 +sg25270 +S'Martin Partyka' +p41768 +sa(dp41769 +g25267 +g27 +sg25268 +S'A Silk Screen Printing of Early Connecticut Wall Decorations, Portfolio Cover' +p41770 +sg25270 +S'Lawrence Flynn' +p41771 +sa(dp41772 +g25267 +g27 +sg25268 +S'Free Hand Decoration' +p41773 +sg25270 +S'Michael Lauretano' +p41774 +sa(dp41775 +g25267 +g27 +sg25268 +S'Decorated Wall' +p41776 +sg25270 +S'Martin Partyka' +p41777 +sa(dp41778 +g25273 +S'(artist after)' +p41779 +sg25267 +g27 +sg25275 +S'\n' +p41780 +sg25268 +S'Le printemps, saison ou tout renait dans la Nature' +p41781 +sg25270 +S'Artist Information (' +p41782 +sa(dp41783 +g25267 +g27 +sg25268 +S'Free Hand Decorated Wall (Detail)' +p41784 +sg25270 +S'Michael Lauretano' +p41785 +sa(dp41786 +g25267 +g27 +sg25268 +S'Hand Painted Wall (Detail)' +p41787 +sg25270 +S'Michael Lauretano' +p41788 +sa(dp41789 +g25267 +g27 +sg25268 +S'Hand Painted Wall' +p41790 +sg25270 +S'Martin Partyka' +p41791 +sa(dp41792 +g25267 +g27 +sg25268 +S'Free Hand Decorated Wall' +p41793 +sg25270 +S'Michael Lauretano' +p41794 +sa(dp41795 +g25267 +g27 +sg25268 +S'Stencilled Wall' +p41796 +sg25270 +S'Michael Lauretano' +p41797 +sa(dp41798 +g25267 +g27 +sg25268 +S'Free Hand Wall Decoration' +p41799 +sg25270 +S'Michael Lauretano' +p41800 +sa(dp41801 +g25267 +g27 +sg25268 +S'Wall Decoration' +p41802 +sg25270 +S'Alvin M. Gully' +p41803 +sa(dp41804 +g25267 +g27 +sg25268 +S'Wall Decoration' +p41805 +sg25270 +S'Martin Partyka' +p41806 +sa(dp41807 +g25267 +g27 +sg25268 +S'Free Hand Decorated Wall' +p41808 +sg25270 +S'Michael Lauretano' +p41809 +sa(dp41810 +g25267 +g27 +sg25268 +S'Free Hand Decorated Wall' +p41811 +sg25270 +S'Edward DiGennero' +p41812 +sa(dp41813 +g25273 +S'graphite' +p41814 +sg25267 +g27 +sg25275 +S'1765' +p41815 +sg25268 +S"L'ete, saison riante et autant utile que belle" +p41816 +sg25270 +S'Charles Eisen' +p41817 +sa(dp41818 +g25267 +g27 +sg25268 +S'Fragment of Wall Decoration' +p41819 +sg25270 +S'Michael Lauretano' +p41820 +sa(dp41821 +g25267 +g27 +sg25268 +S'Hand Painted Wall (Detail)' +p41822 +sg25270 +S'Martin Partyka' +p41823 +sa(dp41824 +g25267 +g27 +sg25268 +S'Hand Painted Wall (Detail)' +p41825 +sg25270 +S'Artist Information (' +p41826 +sa(dp41827 +g25267 +g27 +sg25268 +S'Stencilled Wall' +p41828 +sg25270 +S'Ray Holden' +p41829 +sa(dp41830 +g25267 +g27 +sg25268 +S'Hand Painted Wall (Detail)' +p41831 +sg25270 +S'Martin Partyka' +p41832 +sa(dp41833 +g25267 +g27 +sg25268 +S'Masonic Picture' +p41834 +sg25270 +S'Artist Information (' +p41835 +sa(dp41836 +g25267 +S"Miniature rooms are among the choicest items in the eyes of collectors. Here\n is a kitchen, only ten inches high, made of tinned sheet iron. One wall has been\n entirely omitted, as in a doll's house, to allow a complete view of the interior.\n A red-painted stove and hood are on the back wall, and a working pump is on the\n side wall. Some kitchen utensils are on the stove and floor; others hang on the\n three walls from hooks or are placed on racks.\n " +p41837 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002fb.jpg' +p41838 +sg25268 +S'Toy Kitchen' +p41839 +sg25270 +S'Artist Information (' +p41840 +sa(dp41841 +g25267 +g27 +sg25268 +S'Toy Stove' +p41842 +sg25270 +S'Einar Heiberg' +p41843 +sa(dp41844 +g25267 +g27 +sg25268 +S'Toy Cannon' +p41845 +sg25270 +S'Charles Henning' +p41846 +sa(dp41847 +g25267 +g27 +sg25268 +S'Trotter in Action' +p41848 +sg25270 +S'Henry Murphy' +p41849 +sa(dp41850 +g25268 +S'Madonna Enthroned with Saints and Angels [left panel]' +p41851 +sg25270 +S'Agnolo Gaddi' +p41852 +sg25273 +S'tempera on panel' +p41853 +sg25275 +S'1380/1390' +p41854 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002bf9.jpg' +p41855 +sg25267 +S'This three-part altarpiece or triptych (1937.1.4.a shown here, see also \n Four saints flank the throne. At the far left, holding the cross upon which he was crucified, is Andrew the Apostle, one of Christ’s first disciples. On the far right is Catherine of Alexandria. A princess and scholar, she wears a crown and carries a book. She stands upon a broken wheel with spikes, in reference to a torture from which she was miraculously rescued, and holds a palm frond to signify her triumph over death as a martyr.\n Saint Benedict, a sixth-century founder of monasticism, displays a text with the opening words of the Benedictine Rule, “Harken, O son, to the precepts of the master.” Reading from another book is Saint Bernard, a twelfth-century monastic reformer who helped found the strict, Cistercian branch of Benedictine monks. The white robes of Benedict and Bernard suggest the altar was commissioned for a Cistercian monastery.\n The clearly organized color scheme makes it evident why Agnolo Gaddi, whose father had been a pupil of \n ' +p41856 +sa(dp41857 +g25268 +S'The Adoration of the Child' +p41858 +sg25270 +S'Filippino Lippi' +p41859 +sg25273 +S'oil (?) on panel' +p41860 +sg25275 +S'c. 1475/1480' +p41861 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000775.jpg' +p41862 +sg25267 +g27 +sa(dp41863 +g25273 +S'(artist after)' +p41864 +sg25267 +g27 +sg25275 +S'\n' +p41865 +sg25268 +S"L'ete, saison riante et autant utile que belle" +p41866 +sg25270 +S'Artist Information (' +p41867 +sa(dp41868 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002fa.jpg' +p41869 +sg25268 +S'Toy Wagon' +p41870 +sg25270 +S'Philip Johnson' +p41871 +sa(dp41872 +g25267 +S'With the introduction of tin toys about 1840, more complicated methods of animation\n were developed. This brightly painted model of a side-wheeler, made of both wood\n and tin, has a windup mechanism that turns the paddle wheels.\n ' +p41873 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002db.jpg' +p41874 +sg25268 +S'Model of a Side-Wheeler' +p41875 +sg25270 +S'William Pollman' +p41876 +sa(dp41877 +g25267 +S"Pull toys, set on wheels, provided animation to heighten a child's pleasure.\n Pull toys were frequently made of wood, as in this streetcar model of about 1885.\n Inscribed with the owner's name, Vera, this handmade toy is of pine. The sides\n have sawn-out decorations of crescents, and the windows of the ends and cupola\n are backed with colored glass. There is a hole on top to insert a candle.\n " +p41878 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002d6.jpg' +p41879 +sg25268 +S'Toy Streetcar' +p41880 +sg25270 +S'Michael Fallon' +p41881 +sa(dp41882 +g25267 +S'Vehicular toys record the history of transportation in the United States. This\n is a miniature covered wagon, pulled by oxen. It imitates the primitive oxcarts\n in general use in the 1860s and 1870s and was made by an unknown pioneer settler\n near Stoughton, Wisconsin. The model is hand-carved of pine; the covering of the\n wagon is linen.\n ' +p41883 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002d8.jpg' +p41884 +sg25268 +S'Miniature Oxcart' +p41885 +sg25270 +S'Eugene Bartz' +p41886 +sa(dp41887 +g25267 +S'Noah\'s Ark with its many animals has been a favorite toy of children for generations.\n This example was probably made by a Pennsylvania German craftsman about 1835. The\n colorful ark consists of pieces of pine glued together. It has one sliding panel\n to let the animals go inside. Fifteen animals are whittled from pine and painted\n in polychrome oil colors. The ark is decorated with a painted and stenciled design\n in mat polychrome. Noah\'s Ark was known as "Sunday toy": children were not allowed\n to play with most toys on Sunday, but Noah\'s Ark was an exception because of its\n biblical subject matter.\n ' +p41888 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002f7.jpg' +p41889 +sg25268 +S"Noah's Ark and Animals" +p41890 +sg25270 +S'Ben Lassen' +p41891 +sa(dp41892 +g25267 +g27 +sg25268 +S'Toy Horse' +p41893 +sg25270 +S'Charlotte Angus' +p41894 +sa(dp41895 +g25267 +g27 +sg25268 +S'Hobby Horse' +p41896 +sg25270 +S'Adele Brooks' +p41897 +sa(dp41898 +g25267 +g27 +sg25268 +S'Toy Rooster' +p41899 +sg25270 +S'Mina Lowry' +p41900 +sa(dp41901 +g25267 +g27 +sg25268 +S'Toy Horse' +p41902 +sg25270 +S'Elizabeth Moutal' +p41903 +sa(dp41904 +g25267 +S'Another pull toy is this dachshund of about 1880. Loosely jointed, it undoubtedly\n once had wheels under the legs so that it could move along a flat surface with its\n body undulating from side to side.\n ' +p41905 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002f6.jpg' +p41906 +sg25268 +S'Dachshund' +p41907 +sg25270 +S'Frank Budash' +p41908 +sa(dp41909 +g25273 +S'graphite' +p41910 +sg25267 +g27 +sg25275 +S'1765' +p41911 +sg25268 +S"L'automne, saison ou triomphe Bacchus" +p41912 +sg25270 +S'Charles Eisen' +p41913 +sa(dp41914 +g25267 +g27 +sg25268 +S'Doll: "Maggie Bentley"' +p41915 +sg25270 +S'Artist Information (' +p41916 +sa(dp41917 +g25267 +g27 +sg25268 +S'Doll' +p41918 +sg25270 +S'John Sullivan' +p41919 +sa(dp41920 +g25267 +S"This china-headed doll has a particularly lovely costume. The dress is plaid \r\n silk taffeta; it is worn over a petticoat of tan alpaca trimmed with blue silk bands. The pantalettes are of cotton with eyelet embroidery. The doll's hairstyle makes her a collector's item; china dolls with a knot on the head are rare. This feature, however, is almost completely hidden by the silk bonnet. This doll has a cloth body and arms and feet of kid. The head is glazed porcelain. China-head dolls were first made in Europe around 1750 but did not become extremely popular until the 1840s. This doll dates from 1840–1850. Often the heads were imported to America and used on American-made dolls' bodies.\n " +p41921 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002eb.jpg' +p41922 +sg25268 +S'Doll in Plaid Dress' +p41923 +sg25270 +S'Beverly Chichester' +p41924 +sa(dp41925 +g25267 +g27 +sg25268 +S'Doll with China Head' +p41926 +sg25270 +S'J. Herman McCollum' +p41927 +sa(dp41928 +g25267 +g27 +sg25268 +S'Doll: "Donald"' +p41929 +sg25270 +S'Eugene Croe' +p41930 +sa(dp41931 +g25267 +g27 +sg25268 +S'Doll: "Camela"' +p41932 +sg25270 +S'Eugene Croe' +p41933 +sa(dp41934 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005500.jpg' +p41935 +sg25268 +S'Doll' +p41936 +sg25270 +S'Molly Bodenstein' +p41937 +sa(dp41938 +g25267 +g27 +sg25268 +S'Civil War Soldier' +p41939 +sg25270 +S'Mina Lowry' +p41940 +sa(dp41941 +g25267 +g27 +sg25268 +S'Marionette: "King Saul"' +p41942 +sg25270 +S'Elmer Weise' +p41943 +sa(dp41944 +g25267 +g27 +sg25268 +S'Doll: "Eugenia"' +p41945 +sg25270 +S'Eugene Croe' +p41946 +sa(dp41947 +g25273 +S'(artist after)' +p41948 +sg25267 +g27 +sg25275 +S'\n' +p41949 +sg25268 +S"L'automne, saison ou triomphe Bacchus" +p41950 +sg25270 +S'Artist Information (' +p41951 +sa(dp41952 +g25267 +g27 +sg25268 +S'Doll (Greiner Patented Head)' +p41953 +sg25270 +S'Stanley Mazur' +p41954 +sa(dp41955 +g25267 +g27 +sg25268 +S"Child's Rocking Chair" +p41956 +sg25270 +S'Alfred H. Smith' +p41957 +sa(dp41958 +g25267 +g27 +sg25268 +S'Sled' +p41959 +sg25270 +S'Harriette Gale' +p41960 +sa(dp41961 +g25267 +S'This is a child\'s sled made of pine and poplar wood with oak struts. The sled\n is painted and includes a butterfly motif in white. It must have been made for a\n girl, since the name "Lettie Augusta Davis" is painted on the top in white letters,\n but such coasting sleds were usually intended for boys at that time. The sled was\n made in 1874 by Carpenter Davis.\n ' +p41962 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000302.jpg' +p41963 +sg25268 +S'Sled' +p41964 +sg25270 +S'Wayne White' +p41965 +sa(dp41966 +g25267 +S"The rocking horse, or hobbyhorse, has survived in many versions. This nineteenth-century example is made of pine painted with oil colors. The two parallel rockers are each cut in profile from a single piece of wood. The actual form of the horse is incidental in this case: a horse's head and neck, cut in profile, are attached to the forward end of the rocker. The harness and ears are leather and fastened on with tacks. This rocking horse is essentially a low-back Windsor chair with splayed legs fastened to a rocking platform; since the chair is more complex than the horse, it is possible that the craftsman was a chair maker by trade.\n " +p41967 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f66.jpg' +p41968 +sg25268 +S'Rocking Horse' +p41969 +sg25270 +S'Mina Lowry' +p41970 +sa(dp41971 +g25267 +g27 +sg25268 +S'Toy Bank: Hunter Shooting Bear' +p41972 +sg25270 +S'Einar Heiberg' +p41973 +sa(dp41974 +g25267 +g27 +sg25268 +S'Day Bed' +p41975 +sg25270 +S'Nicholas Gorid' +p41976 +sa(dp41977 +g25267 +g27 +sg25268 +S'Day Bed' +p41978 +sg25270 +S'B. Holst-Grubbe' +p41979 +sa(dp41980 +g25267 +g27 +sg25268 +S'Day Bed' +p41981 +sg25270 +S'B. Holst-Grubbe' +p41982 +sa(dp41983 +g25267 +g27 +sg25268 +S'Wash Stand' +p41984 +sg25270 +S'Francis Borelli' +p41985 +sa(dp41986 +g25273 +S'graphite' +p41987 +sg25267 +g27 +sg25275 +S'1765' +p41988 +sg25268 +S"L'hiver, saison qui quoiqu'utile a la nature ..." +p41989 +sg25270 +S'Charles Eisen' +p41990 +sa(dp41991 +g25267 +g27 +sg25268 +S'Corner Cupboard' +p41992 +sg25270 +S'Meyer Goldbaum' +p41993 +sa(dp41994 +g25267 +g27 +sg25268 +S'Pole Screen and Candlestand' +p41995 +sg25270 +S'Elizabeth Curtis' +p41996 +sa(dp41997 +g25267 +g27 +sg25268 +S'Study for Drawing of Chair' +p41998 +sg25270 +S'American 20th Century' +p41999 +sa(dp42000 +g25267 +g27 +sg25268 +S'Windsor Chair' +p42001 +sg25270 +S'Ray Holden' +p42002 +sa(dp42003 +g25267 +g27 +sg25268 +S'High-Back Side Chair' +p42004 +sg25270 +S'Arthur Johnson' +p42005 +sa(dp42006 +g25267 +g27 +sg25268 +S'Side Chair' +p42007 +sg25270 +S'M. Rosenshield-von-Paulin' +p42008 +sa(dp42009 +g25267 +g27 +sg25268 +S'Hepplewhite Arm Chair' +p42010 +sg25270 +S'Elizabeth Curtis' +p42011 +sa(dp42012 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p42013 +sg25270 +S'Lorenz Rothkranz' +p42014 +sa(dp42015 +g25267 +g27 +sg25268 +S'Chest' +p42016 +sg25270 +S'Paul Farkas' +p42017 +sa(dp42018 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p42019 +sg25270 +S'Harry Eisman' +p42020 +sa(dp42021 +g25273 +S'(artist after)' +p42022 +sg25267 +g27 +sg25275 +S'\n' +p42023 +sg25268 +S"L'hiver, saison qui quoiqu'utile a la nature ..." +p42024 +sg25270 +S'Artist Information (' +p42025 +sa(dp42026 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p42027 +sg25270 +S'Gilbert Sackerman' +p42028 +sa(dp42029 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p42030 +sg25270 +S'Louis Annino' +p42031 +sa(dp42032 +g25267 +g27 +sg25268 +S'Clock' +p42033 +sg25270 +S'Nicholas Gorid' +p42034 +sa(dp42035 +g25267 +g27 +sg25268 +S'Clock' +p42036 +sg25270 +S'Ruth Bialostosky' +p42037 +sa(dp42038 +g25267 +g27 +sg25268 +S'Tall Clock' +p42039 +sg25270 +S'John Dieterich' +p42040 +sa(dp42041 +g25267 +g27 +sg25268 +S'Clock' +p42042 +sg25270 +S'Lawrence Phillips' +p42043 +sa(dp42044 +g25267 +g27 +sg25268 +S'Clock' +p42045 +sg25270 +S'Lawrence Phillips' +p42046 +sa(dp42047 +g25267 +g27 +sg25268 +S'Grandfather Clock' +p42048 +sg25270 +S'Francis Law Durand' +p42049 +sa(dp42050 +g25267 +g27 +sg25268 +S'Clock' +p42051 +sg25270 +S'Nicholas Gorid' +p42052 +sa(dp42053 +g25267 +g27 +sg25268 +S'Clock' +p42054 +sg25270 +S'Artist Information (' +p42055 +sa(dp42056 +g25273 +S'graphite' +p42057 +sg25267 +g27 +sg25275 +S'1765' +p42058 +sg25268 +S"L'age d'or et l'age d'argent ..." +p42059 +sg25270 +S'Charles Eisen' +p42060 +sa(dp42061 +g25267 +g27 +sg25268 +S'Grandfather Clock' +p42062 +sg25270 +S'Giacinto Capelli' +p42063 +sa(dp42064 +g25267 +g27 +sg25268 +S'Shelf Clock' +p42065 +sg25270 +S'M. Rosenshield-von-Paulin' +p42066 +sa(dp42067 +g25267 +g27 +sg25268 +S'Grandfather Clock' +p42068 +sg25270 +S'Walter W. Jennings' +p42069 +sa(dp42070 +g25267 +g27 +sg25268 +S'Grandfather Clock' +p42071 +sg25270 +S'Nicholas Gorid' +p42072 +sa(dp42073 +g25267 +g27 +sg25268 +S'Cradle' +p42074 +sg25270 +S'American 20th Century' +p42075 +sa(dp42076 +g25267 +g27 +sg25268 +S'Cradle' +p42077 +sg25270 +S'Anna Aloisi' +p42078 +sa(dp42079 +g25267 +g27 +sg25268 +S"Doll's Cradle and Quilt" +p42080 +sg25270 +S'Margaret Linsley' +p42081 +sa(dp42082 +g25267 +g27 +sg25268 +S'Day Bed' +p42083 +sg25270 +S'Irene Malawicz' +p42084 +sa(dp42085 +g25267 +g27 +sg25268 +S'Day Bed' +p42086 +sg25270 +S'B. Holst-Grubbe' +p42087 +sa(dp42088 +g25267 +g27 +sg25268 +S'Wooden Table' +p42089 +sg25270 +S'Hal Blakeley' +p42090 +sa(dp42091 +g25273 +S'(artist after)' +p42092 +sg25267 +g27 +sg25275 +S'\n' +p42093 +sg25268 +S"L'age d'or et l'age d'argent ..." +p42094 +sg25270 +S'Artist Information (' +p42095 +sa(dp42096 +g25267 +g27 +sg25268 +S'Table' +p42097 +sg25270 +S'John Garay' +p42098 +sa(dp42099 +g25267 +g27 +sg25268 +S'Shaker Dining Table with Marble Top' +p42100 +sg25270 +S'John W. Kelleher' +p42101 +sa(dp42102 +g25267 +g27 +sg25268 +S'Table' +p42103 +sg25270 +S'Harry Eisman' +p42104 +sa(dp42105 +g25267 +g27 +sg25268 +S'Console Table' +p42106 +sg25270 +S'Ferdinand Cartier' +p42107 +sa(dp42108 +g25267 +g27 +sg25268 +S'Table' +p42109 +sg25270 +S'Frederick Jackson' +p42110 +sa(dp42111 +g25267 +g27 +sg25268 +S'Tavern Table' +p42112 +sg25270 +S'Isadore Goldberg' +p42113 +sa(dp42114 +g25267 +g27 +sg25268 +S'Card Table' +p42115 +sg25270 +S'Florence Choate' +p42116 +sa(dp42117 +g25267 +g27 +sg25268 +S'Sofa' +p42118 +sg25270 +S'Ernest Busenbark' +p42119 +sa(dp42120 +g25267 +g27 +sg25268 +S'Sofa' +p42121 +sg25270 +S'Florence Neal' +p42122 +sa(dp42123 +g25267 +g27 +sg25268 +S'Queen Ann Sofa' +p42124 +sg25270 +S'Florence Neal' +p42125 +sa(dp42126 +g25273 +S'graphite' +p42127 +sg25267 +g27 +sg25275 +S'1765' +p42128 +sg25268 +S"L'age d'arian et l'age de fer ..." +p42129 +sg25270 +S'Charles Eisen' +p42130 +sa(dp42131 +g25267 +g27 +sg25268 +S'Sideboard' +p42132 +sg25270 +S'Harry Eisman' +p42133 +sa(dp42134 +g25267 +g27 +sg25268 +S'Mirror' +p42135 +sg25270 +S'Nicholas Gorid' +p42136 +sa(dp42137 +g25267 +g27 +sg25268 +S'Bench' +p42138 +sg25270 +S'Elizabeth Curtis' +p42139 +sa(dp42140 +g25267 +g27 +sg25268 +S'Bench' +p42141 +sg25270 +S'Elizabeth Curtis' +p42142 +sa(dp42143 +g25267 +g27 +sg25268 +S'Lowboy' +p42144 +sg25270 +S'Isadore Goldberg' +p42145 +sa(dp42146 +g25267 +g27 +sg25268 +S'Lowboy' +p42147 +sg25270 +S'Louis Annino' +p42148 +sa(dp42149 +g25267 +g27 +sg25268 +S'Roll-Top Desk' +p42150 +sg25270 +S'M. Rosenshield-von-Paulin' +p42151 +sa(dp42152 +g25267 +g27 +sg25268 +S'Shaker Desk' +p42153 +sg25270 +S'Alfred H. Smith' +p42154 +sa(dp42155 +g25267 +g27 +sg25268 +S'Cabinet-Top Desk' +p42156 +sg25270 +S'Francis Borelli' +p42157 +sa(dp42158 +g25267 +g27 +sg25268 +S"Child's Desk" +p42159 +sg25270 +S'Mina Lowry' +p42160 +sa(dp42161 +g25273 +S'(artist after)' +p42162 +sg25267 +g27 +sg25275 +S'\n' +p42163 +sg25268 +S"L'age d'arain et l'age de fer" +p42164 +sg25270 +S'Artist Information (' +p42165 +sa(dp42166 +g25267 +g27 +sg25268 +S'Roll-Top Desk' +p42167 +sg25270 +S'George Loughridge' +p42168 +sa(dp42169 +g25267 +g27 +sg25268 +S"Lady's Writing Cabinet" +p42170 +sg25270 +S'Nicholas Gorid' +p42171 +sa(dp42172 +g25267 +g27 +sg25268 +S'American Desk' +p42173 +sg25270 +S'Aaron Dermansky' +p42174 +sa(dp42175 +g25267 +g27 +sg25268 +S'American Desk' +p42176 +sg25270 +S'Aaron Dermansky' +p42177 +sa(dp42178 +g25267 +g27 +sg25268 +S'Table' +p42179 +sg25270 +S'American 20th Century' +p42180 +sa(dp42181 +g25267 +g27 +sg25268 +S'Plan for Rendering' +p42182 +sg25270 +S'American 20th Century' +p42183 +sa(dp42184 +g25267 +g27 +sg25268 +S'Slant-Top Desk' +p42185 +sg25270 +S'Nicholas Gorid' +p42186 +sa(dp42187 +g25267 +g27 +sg25268 +S'Large Mug' +p42188 +sg25270 +S'Mina Lowry' +p42189 +sa(dp42190 +g25267 +g27 +sg25268 +S'Storage Box (Copper)' +p42191 +sg25270 +S'Albert Pratt' +p42192 +sa(dp42193 +g25267 +g27 +sg25268 +S'Utility Box' +p42194 +sg25270 +S'Christabel Scrymser' +p42195 +sa(dp42196 +g25273 +S'graphite' +p42197 +sg25267 +g27 +sg25275 +S'1765' +p42198 +sg25268 +S'Les geants foudroyes par Jupiter ...' +p42199 +sg25270 +S'Charles Eisen' +p42200 +sa(dp42201 +g25267 +g27 +sg25268 +S'Snuff Box' +p42202 +sg25270 +S'Madeline Arnold' +p42203 +sa(dp42204 +g25267 +g27 +sg25268 +S'Box' +p42205 +sg25270 +S'Sylvia De Zon' +p42206 +sa(dp42207 +g25267 +g27 +sg25268 +S'Dough Trough' +p42208 +sg25270 +S'Charles Charon' +p42209 +sa(dp42210 +g25267 +g27 +sg25268 +S'Painted Box' +p42211 +sg25270 +S'Douglas Cox' +p42212 +sa(dp42213 +g25267 +g27 +sg25268 +S'Wood Box' +p42214 +sg25270 +S'Betty Jean Davis' +p42215 +sa(dp42216 +g25267 +g27 +sg25268 +S'Cupboard' +p42217 +sg25270 +S'Edward Jewett' +p42218 +sa(dp42219 +g25267 +g27 +sg25268 +S'Hand Carved Cabinet' +p42220 +sg25270 +S'Ethel Dougan' +p42221 +sa(dp42222 +g25267 +g27 +sg25268 +S'Cabinet' +p42223 +sg25270 +S'Isadore Goldberg' +p42224 +sa(dp42225 +g25267 +g27 +sg25268 +S'Knife and Spoon Box' +p42226 +sg25270 +S'Harry Eisman' +p42227 +sa(dp42228 +g25267 +g27 +sg25268 +S'Cellaret' +p42229 +sg25270 +S'Carl Weiss' +p42230 +sa(dp42231 +g25273 +S'(artist after)' +p42232 +sg25267 +g27 +sg25275 +S'\n' +p42233 +sg25268 +S'Les geants foudroyes par Jupiter ...' +p42234 +sg25270 +S'Artist Information (' +p42235 +sa(dp42236 +g25267 +g27 +sg25268 +S'Plate' +p42237 +sg25270 +S'Charlotte Sperber' +p42238 +sa(dp42239 +g25267 +g27 +sg25268 +S'Crock' +p42240 +sg25270 +S'George Loughridge' +p42241 +sa(dp42242 +g25267 +g27 +sg25268 +S'Wash Bowl and Pitcher' +p42243 +sg25270 +S'Frank Fumagalli' +p42244 +sa(dp42245 +g25267 +g27 +sg25268 +S'Crock' +p42246 +sg25270 +S'John Tarantino' +p42247 +sa(dp42248 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p42249 +sg25270 +S'John Dana' +p42250 +sa(dp42251 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p42252 +sg25270 +S'John Dana' +p42253 +sa(dp42254 +g25267 +g27 +sg25268 +S'Stoneware Crock' +p42255 +sg25270 +S'Anna Aloisi' +p42256 +sa(dp42257 +g25267 +g27 +sg25268 +S'Preserve Jar' +p42258 +sg25270 +S'Yolande Delasser' +p42259 +sa(dp42260 +g25267 +g27 +sg25268 +S'Jar' +p42261 +sg25270 +S'Francis Borelli' +p42262 +sa(dp42263 +g25267 +g27 +sg25268 +S'Small Pot' +p42264 +sg25270 +S'Yolande Delasser' +p42265 +sa(dp42266 +g25273 +S'graphite with brown wash' +p42267 +sg25267 +g27 +sg25275 +S'1765' +p42268 +sg25268 +S"Jupiter fait assembler les dieux, et propose de detruire l'univers" +p42269 +sg25270 +S'Charles Monnet' +p42270 +sa(dp42271 +g25267 +g27 +sg25268 +S'Jar' +p42272 +sg25270 +S'Yolande Delasser' +p42273 +sa(dp42274 +g25267 +g27 +sg25268 +S'Crock' +p42275 +sg25270 +S'Yolande Delasser' +p42276 +sa(dp42277 +g25267 +g27 +sg25268 +S'Crock' +p42278 +sg25270 +S'John Fisk' +p42279 +sa(dp42280 +g25267 +g27 +sg25268 +S'Crock' +p42281 +sg25270 +S'John Tarantino' +p42282 +sa(dp42283 +g25267 +g27 +sg25268 +S'Jar' +p42284 +sg25270 +S'Frank Fumagalli' +p42285 +sa(dp42286 +g25267 +g27 +sg25268 +S'Crock' +p42287 +sg25270 +S'John Tarantino' +p42288 +sa(dp42289 +g25267 +g27 +sg25268 +S'Wooden Noggin' +p42290 +sg25270 +S'Gene Luedke' +p42291 +sa(dp42292 +g25267 +g27 +sg25268 +S'Cup' +p42293 +sg25270 +S'Jessica Price' +p42294 +sa(dp42295 +g25267 +g27 +sg25268 +S'Mustache Cup and Saucer' +p42296 +sg25270 +S'Dana Bartlett' +p42297 +sa(dp42298 +g25267 +g27 +sg25268 +S'Butter Box' +p42299 +sg25270 +S'Harry Grossen' +p42300 +sa(dp42301 +g25273 +S'(artist after)' +p42302 +sg25267 +g27 +sg25275 +S'\n' +p42303 +sg25268 +S"Jupiter fait assembler les dieux, et propose de detruire l'univers" +p42304 +sg25270 +S'Artist Information (' +p42305 +sa(dp42306 +g25267 +g27 +sg25268 +S'Andiron' +p42307 +sg25270 +S'Max Schwartz' +p42308 +sa(dp42309 +g25267 +g27 +sg25268 +S'Andiron' +p42310 +sg25270 +S'Alexander Berth' +p42311 +sa(dp42312 +g25267 +g27 +sg25268 +S'Andiron (One of Pair)' +p42313 +sg25270 +S'Mildred Ford' +p42314 +sa(dp42315 +g25267 +g27 +sg25268 +S'Andiron (One of Pair)' +p42316 +sg25270 +S'Mildred Ford' +p42317 +sa(dp42318 +g25267 +g27 +sg25268 +S'Andiron (One of Pair)' +p42319 +sg25270 +S'Mildred Ford' +p42320 +sa(dp42321 +g25267 +g27 +sg25268 +S'Andirons' +p42322 +sg25270 +S'Hans Korsch' +p42323 +sa(dp42324 +g25267 +g27 +sg25268 +S'Andirons' +p42325 +sg25270 +S'Hans Korsch' +p42326 +sa(dp42327 +g25267 +g27 +sg25268 +S'Andiron' +p42328 +sg25270 +S'Hans Korsch' +p42329 +sa(dp42330 +g25267 +g27 +sg25268 +S'Andiron' +p42331 +sg25270 +S'Hans Korsch' +p42332 +sa(dp42333 +g25267 +g27 +sg25268 +S'Andiron' +p42334 +sg25270 +S'Hans Korsch' +p42335 +sa(dp42336 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p42337 +sg25267 +g27 +sg25275 +S'published 1767/1771' +p42338 +sg25268 +S"Jupiter pour punir Lycaon Roi d'Arcadie, le Metamorphose en Loup" +p42339 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p42340 +sa(dp42341 +g25267 +g27 +sg25268 +S'Bandbox' +p42342 +sg25270 +S'Joseph Rothenberg' +p42343 +sa(dp42344 +g25267 +g27 +sg25268 +S'Bandbox' +p42345 +sg25270 +S'Paul Farkas' +p42346 +sa(dp42347 +g25267 +g27 +sg25268 +S'Bandbox' +p42348 +sg25270 +S'Arsen Maralian' +p42349 +sa(dp42350 +g25267 +g27 +sg25268 +S'Bandbox' +p42351 +sg25270 +S'Selma Sandler' +p42352 +sa(dp42353 +g25267 +g27 +sg25268 +S'Toilette Box' +p42354 +sg25270 +S'John Cutting' +p42355 +sa(dp42356 +g25267 +g27 +sg25268 +S'Bandbox' +p42357 +sg25270 +S'Joseph Rothenberg' +p42358 +sa(dp42359 +g25267 +g27 +sg25268 +S'Bandbox' +p42360 +sg25270 +S'Jessie M. Youngs' +p42361 +sa(dp42362 +g25267 +g27 +sg25268 +S'Bandbox' +p42363 +sg25270 +S'Gilbert Sackerman' +p42364 +sa(dp42365 +g25267 +g27 +sg25268 +S'Bandbox' +p42366 +sg25270 +S'Lina Manetto' +p42367 +sa(dp42368 +g25267 +g27 +sg25268 +S'Bandbox' +p42369 +sg25270 +S'Lee Hager' +p42370 +sa(dp42371 +g25273 +S'(artist after)' +p42372 +sg25267 +g27 +sg25275 +S'\n' +p42373 +sg25268 +S"Jupiter pour punir Lycaon Roi d'Arcadie, le Metamorphose en Loup" +p42374 +sg25270 +S'Artist Information (' +p42375 +sa(dp42376 +g25267 +g27 +sg25268 +S'Beaded Purse' +p42377 +sg25270 +S'Josephine C. Romano' +p42378 +sa(dp42379 +g25267 +g27 +sg25268 +S'Beaded Purse' +p42380 +sg25270 +S'Ann Gene Buckley' +p42381 +sa(dp42382 +g25267 +g27 +sg25268 +S'Bellows' +p42383 +sg25270 +S'Benjamin Resnick' +p42384 +sa(dp42385 +g25267 +g27 +sg25268 +S'Billethead' +p42386 +sg25270 +S'Hazel Hyde' +p42387 +sa(dp42388 +g25267 +g27 +sg25268 +S'Wooden Birds' +p42389 +sg25270 +S'Alice Domey' +p42390 +sa(dp42391 +g25267 +g27 +sg25268 +S'Bishop Hill: Dowel Cutter' +p42392 +sg25270 +S'H. Langden Brown' +p42393 +sa(dp42394 +g25267 +g27 +sg25268 +S'Parchment Book Cover' +p42395 +sg25270 +S'Edith Towner' +p42396 +sa(dp42397 +g25267 +g27 +sg25268 +S'Parchment Book Cover' +p42398 +sg25270 +S'Robert W.R. Taylor' +p42399 +sa(dp42400 +g25267 +g27 +sg25268 +S"Baby's Shoe" +p42401 +sg25270 +S'Josephine C. Romano' +p42402 +sa(dp42403 +g25267 +g27 +sg25268 +S'Slippers' +p42404 +sg25270 +S'Doris Beer' +p42405 +sa(dp42406 +g25268 +S'The Great Flood' +p42407 +sg25270 +S'Charles Eisen' +p42408 +sg25273 +S'graphite on vellum' +p42409 +sg25275 +S'1765' +p42410 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a00061a2.jpg' +p42411 +sg25267 +g27 +sa(dp42412 +g25267 +g27 +sg25268 +S'Stock' +p42413 +sg25270 +S'Eva Noe' +p42414 +sa(dp42415 +g25267 +g27 +sg25268 +S'Door Knocker' +p42416 +sg25270 +S'Joseph Stonefield' +p42417 +sa(dp42418 +g25267 +g27 +sg25268 +S'Door Knocker' +p42419 +sg25270 +S'Winifred Luten' +p42420 +sa(dp42421 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p42422 +sg25270 +S'Joseph Goldberg' +p42423 +sa(dp42424 +g25267 +g27 +sg25268 +S'Doorstop (Doll)' +p42425 +sg25270 +S'Rosa Burger' +p42426 +sa(dp42427 +g25267 +g27 +sg25268 +S'Doll: "Florence"' +p42428 +sg25270 +S'Edith Towner' +p42429 +sa(dp42430 +g25267 +g27 +sg25268 +S'Doll: "Carrie"' +p42431 +sg25270 +S'Edith Towner' +p42432 +sa(dp42433 +g25267 +g27 +sg25268 +S'Wax Face Cotton Doll' +p42434 +sg25270 +S'Charles Goodwin' +p42435 +sa(dp42436 +g25267 +g27 +sg25268 +S'Doll' +p42437 +sg25270 +S'Arthur Wolfson' +p42438 +sa(dp42439 +g25267 +g27 +sg25268 +S'Dancing Doll' +p42440 +sg25270 +S'Mina Lowry' +p42441 +sa(dp42442 +g25273 +S'(artist after)' +p42443 +sg25267 +g27 +sg25275 +S'\n' +p42444 +sg25268 +S'Le deluge universel' +p42445 +sg25270 +S'Artist Information (' +p42446 +sa(dp42447 +g25267 +g27 +sg25268 +S'Doll: "Flora Richardson"' +p42448 +sg25270 +S'Edith Towner' +p42449 +sa(dp42450 +g25267 +g27 +sg25268 +S'Doll: "Rachel"' +p42451 +sg25270 +S'Edith Towner' +p42452 +sa(dp42453 +g25267 +g27 +sg25268 +S'Doll: "Rose Bates"' +p42454 +sg25270 +S'Edith Towner' +p42455 +sa(dp42456 +g25267 +g27 +sg25268 +S'Doll: "Lydia Sherman"' +p42457 +sg25270 +S'Edith Towner' +p42458 +sa(dp42459 +g25267 +g27 +sg25268 +S'Doll: "Betsey Paine"' +p42460 +sg25270 +S'Edith Towner' +p42461 +sa(dp42462 +g25267 +g27 +sg25268 +S'Dough Trough' +p42463 +sg25270 +S'Hedwig Emanuel' +p42464 +sa(dp42465 +g25267 +g27 +sg25268 +S"Ship's Sternpiece" +p42466 +sg25270 +S'Cornelius Christoffels' +p42467 +sa(dp42468 +g25267 +g27 +sg25268 +S'Fan' +p42469 +sg25270 +S'Vincent Burzy' +p42470 +sa(dp42471 +g25267 +g27 +sg25268 +S'Figurehead' +p42472 +sg25270 +S'Elizabeth Fairchild' +p42473 +sa(dp42474 +g25267 +g27 +sg25268 +S'Figurehead: Hercules' +p42475 +sg25270 +S'Mina Lowry' +p42476 +sa(dp42477 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p42478 +sg25267 +g27 +sg25275 +S'published 1767/1771' +p42479 +sg25268 +S'Neptune calme les flots ...' +p42480 +sg25270 +S'Charles Monnet' +p42481 +sa(dp42482 +g25267 +g27 +sg25268 +S'Figurehead: "Andrew Jackson"' +p42483 +sg25270 +S'Elizabeth Fairchild' +p42484 +sa(dp42485 +g25267 +g27 +sg25268 +S'Indian' +p42486 +sg25270 +S'A. Zaidenberg' +p42487 +sa(dp42488 +g25267 +g27 +sg25268 +S'Tongs and Shovel' +p42489 +sg25270 +S'Hans Korsch' +p42490 +sa(dp42491 +g25267 +g27 +sg25268 +S'Tongs and Shovel' +p42492 +sg25270 +S'Hans Korsch' +p42493 +sa(dp42494 +g25267 +g27 +sg25268 +S'Warming Pan' +p42495 +sg25270 +S'Gordon Sanborn' +p42496 +sa(dp42497 +g25267 +g27 +sg25268 +S'Tongs and Shovel' +p42498 +sg25270 +S'Hans Korsch' +p42499 +sa(dp42500 +g25267 +g27 +sg25268 +S'Fireplace Equipment' +p42501 +sg25270 +S'Jack Staloff' +p42502 +sa(dp42503 +g25267 +g27 +sg25268 +S'Shoe Shine Foot Rest' +p42504 +sg25270 +S'Stanley Mazur' +p42505 +sa(dp42506 +g25267 +g27 +sg25268 +S'Pewter Foot Warmer' +p42507 +sg25270 +S'Charles Garjian' +p42508 +sa(dp42509 +g25267 +g27 +sg25268 +S'Feather Wreath Oval Frame' +p42510 +sg25270 +S'Artist Information (' +p42511 +sa(dp42512 +g25273 +S'(artist after)' +p42513 +sg25267 +g27 +sg25275 +S'\n' +p42514 +sg25268 +S'Neptune calme les flots ...' +p42515 +sg25270 +S'Artist Information (' +p42516 +sa(dp42517 +g25267 +g27 +sg25268 +S'Bed' +p42518 +sg25270 +S'Isadore Goldberg' +p42519 +sa(dp42520 +g25267 +g27 +sg25268 +S'Spindle Settee Chest' +p42521 +sg25270 +S'Roberta Elvis' +p42522 +sa(dp42523 +g25267 +g27 +sg25268 +S"Boy's Suit" +p42524 +sg25270 +S'Nancy Crimi' +p42525 +sa(dp42526 +g25267 +g27 +sg25268 +S"Boy's Suit" +p42527 +sg25270 +S'Nancy Crimi' +p42528 +sa(dp42529 +g25267 +g27 +sg25268 +S"Child's Dress" +p42530 +sg25270 +S'George Robin' +p42531 +sa(dp42532 +g25267 +g27 +sg25268 +S"Boy's Suit" +p42533 +sg25270 +S'Nancy Crimi' +p42534 +sa(dp42535 +g25267 +g27 +sg25268 +S"Sugar Merchant's Suit" +p42536 +sg25270 +S'Henry De Wolfe' +p42537 +sa(dp42538 +g25267 +g27 +sg25268 +S"Child's Dress" +p42539 +sg25270 +S'Esther Hansen' +p42540 +sa(dp42541 +g25267 +g27 +sg25268 +S'Coat' +p42542 +sg25270 +S'Margaret Concha' +p42543 +sa(dp42544 +g25267 +g27 +sg25268 +S"Woman's Coat" +p42545 +sg25270 +S'Margaret Concha' +p42546 +sa(dp42547 +g25273 +S'(artist after)' +p42548 +sg25267 +g27 +sg25275 +S'\n' +p42549 +sg25268 +S'Neptune calme les flots ...' +p42550 +sg25270 +S'Artist Information (' +p42551 +sa(dp42552 +g25267 +g27 +sg25268 +S'Pants and Coat' +p42553 +sg25270 +S'Margaret Concha' +p42554 +sa(dp42555 +g25267 +g27 +sg25268 +S'Suit' +p42556 +sg25270 +S'Margaret Concha' +p42557 +sa(dp42558 +g25267 +g27 +sg25268 +S'Coat' +p42559 +sg25270 +S'Roberta Spicer' +p42560 +sa(dp42561 +g25267 +g27 +sg25268 +S"Boys's Dress" +p42562 +sg25270 +S'Esther Hansen' +p42563 +sa(dp42564 +g25267 +g27 +sg25268 +S'Apron' +p42565 +sg25270 +S'Miriam Goldberg' +p42566 +sa(dp42567 +g25267 +g27 +sg25268 +S'Apron' +p42568 +sg25270 +S'Nancy Crimi' +p42569 +sa(dp42570 +g25267 +g27 +sg25268 +S'Apron' +p42571 +sg25270 +S'Mae Szilvasy' +p42572 +sa(dp42573 +g25267 +g27 +sg25268 +S'Handbag' +p42574 +sg25270 +S'Florence Earl' +p42575 +sa(dp42576 +g25267 +g27 +sg25268 +S'Pa. German Jar' +p42577 +sg25270 +S'Aaron Fastovsky' +p42578 +sa(dp42579 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p42580 +sg25270 +S'Eugene Shellady' +p42581 +sa(dp42582 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p42583 +sg25267 +g27 +sg25275 +S'published 1767/1771' +p42584 +sg25268 +S"Deucalion et Pyrrha repeuplant la terre, suivant l'oracle de Themis" +p42585 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p42586 +sa(dp42587 +g25267 +g27 +sg25268 +S'Hand Painted Wall (Detail)' +p42588 +sg25270 +S'Martin Partyka' +p42589 +sa(dp42590 +g25267 +g27 +sg25268 +S'Jar with Cover' +p42591 +sg25270 +S'Charlotte Angus' +p42592 +sa(dp42593 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p42594 +sg25270 +S'Eugene Shellady' +p42595 +sa(dp42596 +g25267 +g27 +sg25268 +S'Pa. German Pie Plate' +p42597 +sg25270 +S'Elmer G. Anderson' +p42598 +sa(dp42599 +g25267 +S'This sgrafitto jar is dated 1830. As Pennsylvania German potters became more experienced, techniques and styles became bold and assured. The design of curved tulip leaves and petals, scallops, dots, \n and borders is highlighted by touches of green in the glaze.\n ' +p42600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003c3.jpg' +p42601 +sg25268 +S'Pennsylvania German Covered Jar' +p42602 +sg25270 +S'Henry Moran' +p42603 +sa(dp42604 +g25267 +g27 +sg25268 +S'Jar with Cover' +p42605 +sg25270 +S'Alvin Shiren' +p42606 +sa(dp42607 +g25267 +g27 +sg25268 +S'Jar' +p42608 +sg25270 +S'Charles Caseau' +p42609 +sa(dp42610 +g25267 +g27 +sg25268 +S'Jar' +p42611 +sg25270 +S'Charles Caseau' +p42612 +sa(dp42613 +g25267 +g27 +sg25268 +S'Covered Bowl' +p42614 +sg25270 +S'Jessica Price' +p42615 +sa(dp42616 +g25267 +g27 +sg25268 +S'Jar' +p42617 +sg25270 +S'American 20th Century' +p42618 +sa(dp42619 +g25273 +S'(artist after)' +p42620 +sg25267 +g27 +sg25275 +S'\n' +p42621 +sg25268 +S"Deucalion et Pyrrha repeuplant la terre, suivant l'oracle de Themis" +p42622 +sg25270 +S'Artist Information (' +p42623 +sa(dp42624 +g25267 +g27 +sg25268 +S'Jug' +p42625 +sg25270 +S'Charles Caseau' +p42626 +sa(dp42627 +g25267 +g27 +sg25268 +S'Jar' +p42628 +sg25270 +S'Jean Peszel' +p42629 +sa(dp42630 +g25267 +g27 +sg25268 +S'Cookie Jar with Cover' +p42631 +sg25270 +S'Nicholas Amantea' +p42632 +sa(dp42633 +g25267 +g27 +sg25268 +S'Crock' +p42634 +sg25270 +S'Charles Caseau' +p42635 +sa(dp42636 +g25267 +g27 +sg25268 +S'Jug' +p42637 +sg25270 +S'Nicholas Amantea' +p42638 +sa(dp42639 +g25267 +S'In the early days when every Pennsylvania German family had to farm for its livelihood, pottery was made by farmer-artisans skilled in that craft. Having brought these skills from the homeland, they were able to supplement \n the family income by supplying plates, dishes, and other ceramic articles to neighboring households. Because Pennsylvania earth was rich in red clay, potters produced redware -- pottery that turned a deep brownish red after firing. \n This plate, inscribed, "1793 H R," may have been made by the potter Henry Roudebush. The proudly strutting peacock and stylized flower are typical Pennsylvania German motifs. The plate is decorated by a technique know as sgraffito or "scratching." \n In this process the potter coated the concave surface of the plate with white slip -- a thin white clay. After it dried, the design was scratched into the white slip with a sharp instrument to expose the red clay underneath. \n A transparent glaze was applied and the piece was then fired. Because of their decorative nature, plates of this kind were commonly presented as gifts.\n ' +p42640 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000369.jpg' +p42641 +sg25268 +S'Pennsylvania German Plate' +p42642 +sg25270 +S'Aaron Fastovsky' +p42643 +sa(dp42644 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p42645 +sg25270 +S'Aaron Fastovsky' +p42646 +sa(dp42647 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p42648 +sg25270 +S'Frances Lichten' +p42649 +sa(dp42650 +g25267 +S'Many of the surviving redware pieces are those that were made with special care and intended primarily for decorative purposes. The earliest redware was almost purely utilitarian, but gradually ornamentation emerged as an integral part of the \n potter\'s craft. The Pennsylvania Germans, in particular, were known for their elaborately decorated pottery, as exemplified by this slip-decorated plate. Here the potter has trailed on a design of blue, black, and yellow slips, which contrast vividly \n with the red clay background. Slip designs of this kind were beaten into the moist clay body to smooth and level the surface before firing. The symmetrical design, composed of floral and star motifs, is characteristic of Pennsylvania German art. \n The large, bold forms in the center of the plate are framed by a carefully lettered border in German that says, "Fortune or misfortune is our breakfast every morning, 1796, 18th of August."\n ' +p42651 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003e3.jpg' +p42652 +sg25268 +S'Pennsylvania German Dish' +p42653 +sg25270 +S'Eugene Shellady' +p42654 +sa(dp42655 +g25267 +S'Slip-trailing was another method used by potters to decorate ornamental redware. A more difficult technique than sgraffito, slip-trailed decoration resulted from pouring slip -- a thin, white clay -- from a slip cup through a goose quill. \n This method required great skill in controlling the thin stream of slip to achieve the desired pattern. In decorating this plate, several goose quills were used at once in the slip-trailing process to achieve the concentric lines \n around the border. When the slip dried, it was beaten into the piece so that the decoration became an integral part of the fired dish. The design on this dish, representing the traditional Pennsylvania German tulip, was drawn in white, \n green, and black slip. Dated October 1797, the dish was made by John Leidy when he was sixteen years old. The inscription around the rim reads: "Rather would I single live than the wife the breeches give."\n ' +p42656 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000372.jpg' +p42657 +sg25268 +S'Pennsylvania German Plate' +p42658 +sg25270 +S'Eugene Shellady' +p42659 +sa(dp42660 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p42661 +sg25267 +g27 +sg25275 +S'published 1767/1771' +p42662 +sg25268 +S'Le serpent python tu\xc3\xa9 \xc3\xa0 coups de fleches par Apollon' +p42663 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p42664 +sa(dp42665 +g25267 +g27 +sg25268 +S'Earthenware Drain Tile' +p42666 +sg25270 +S'Annie B. Johnston' +p42667 +sa(dp42668 +g25267 +g27 +sg25268 +S'Dinner Plate' +p42669 +sg25270 +S'Edith Olney' +p42670 +sa(dp42671 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000366.jpg' +p42672 +sg25268 +S'Carousel Horse' +p42673 +sg25270 +S'George Constantine' +p42674 +sa(dp42675 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003ad.jpg' +p42676 +sg25268 +S'Carousel Reindeer' +p42677 +sg25270 +S'Michael Riccitelli' +p42678 +sa(dp42679 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003aa.jpg' +p42680 +sg25268 +S'Tavern Sign' +p42681 +sg25270 +S'Alfred Parys' +p42682 +sa(dp42683 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003a1.jpg' +p42684 +sg25268 +S'St. Joseph Carving' +p42685 +sg25270 +S'Stanley Mazur' +p42686 +sa(dp42687 +g25267 +S'Shop figures and trade signs are a form of American folk art that is still in use today for ornamental\n purposes. The first shop signs, however, were not only decorative, they were a practical aid to those\n potential customers that could not read. In addition, signs pinpointed the location of a shop before\n the days of house numbers. Early American streets presented a lively picture of activities with signs such\n as barber poles, wooden Indians, gloves, clocks, boots, and spectacles calling attention to services or\n goods offered for sale. Some carvers of shop figures and signs were drawn from among the makers of\n ship decorations. The shift in emphasis was increasingly felt in the late nineteenth century, when\n figurehead carvers were being forced out of business with the demise of the clipper ship era. These\n craftsmen gradually turned to the full-time production of wooden Indians and other signs. The Indian, as\n the first American to cultivate tobacco, became the traditional symbol for cigar stores. The production of\n wooden Indians flourished from about 1840 to the end of the century. In the 1890s, city ordinances\n required that figures be confined to the interiors of shops, and gradually the statues went out of use. This\n woman, or Pocahontas, as female Indian figures were sometimes called, was made by a particularly\n capable artisan. The pose of the statue reflects classical or Egyptian inspiration. The figure is elegantly\n fashioned; the stance seems natural, the costume has been simplified, and the colors are harmonious.\n ' +p42688 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003f5.jpg' +p42689 +sg25268 +S'Cigar Store Indian' +p42690 +sg25270 +S'Henry Tomaszewski' +p42691 +sa(dp42692 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000399.jpg' +p42693 +sg25268 +S'Muse with a Scroll' +p42694 +sg25270 +S'John Matulis' +p42695 +sa(dp42696 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000039a.jpg' +p42697 +sg25268 +S'Circus Wagon Figure' +p42698 +sg25270 +S'John Matulis' +p42699 +sa(dp42700 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000031a.jpg' +p42701 +sg25268 +S'Horse Weather Vane' +p42702 +sg25270 +S'Nicholas Acampora' +p42703 +sa(dp42704 +g25273 +S'(artist after)' +p42705 +sg25267 +g27 +sg25275 +S'\n' +p42706 +sg25268 +S'Le serpent python tue a coups de fleches par Apollon' +p42707 +sg25270 +S'Artist Information (' +p42708 +sa(dp42709 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003ab.jpg' +p42710 +sg25268 +S'Eagle Figurehead' +p42711 +sg25270 +S'F.W. Powell' +p42712 +sa(dp42713 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003a9.jpg' +p42714 +sg25268 +S'Red Lion Inn Sign' +p42715 +sg25270 +S'Martin Partyka' +p42716 +sa(dp42717 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003a2.jpg' +p42718 +sg25268 +S'Circus wagon figure: dancing girl' +p42719 +sg25270 +S'Katharine Merrill' +p42720 +sa(dp42721 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000035f.jpg' +p42722 +sg25268 +S'Carousel horse' +p42723 +sg25270 +S'Mildred E. Bent' +p42724 +sa(dp42725 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000464.jpg' +p42726 +sg25268 +S'Carousel Rooster' +p42727 +sg25270 +S'Clayton Clements' +p42728 +sa(dp42729 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000039b.jpg' +p42730 +sg25268 +S'Circus wagon figure: medieval lady' +p42731 +sg25270 +S'John Matulis' +p42732 +sa(dp42733 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000362.jpg' +p42734 +sg25268 +S'Carousel Panthers' +p42735 +sg25270 +S'Dorothy Handy' +p42736 +sa(dp42737 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003ba.jpg' +p42738 +sg25268 +S'Carousel Horse' +p42739 +sg25270 +S'Henry Tomaszewski' +p42740 +sa(dp42741 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003a7.jpg' +p42742 +sg25268 +S'Shop Sign' +p42743 +sg25270 +S'Henry Murphy' +p42744 +sa(dp42745 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000395.jpg' +p42746 +sg25268 +S'Sacred Cod' +p42747 +sg25270 +S'John W. Kelleher' +p42748 +sa(dp42749 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p42750 +sg25267 +g27 +sg25275 +S'published 1767/1771' +p42751 +sg25268 +S'Daphne poursuivie par Apollon, et changee en Laurier par son Pere' +p42752 +sg25270 +S'Charles Monnet' +p42753 +sa(dp42754 +g25267 +S"The ideal trade sign was completely self-explanatory. This butcher's sign is not only clear in its message,\n but it is well composed and witty in design. It was made between 1830 and 1850 for a slaughterhouse. \n " +p42755 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000035d.jpg' +p42756 +sg25268 +S"Butcher's Shop Sign" +p42757 +sg25270 +S'Laura Bilodeau' +p42758 +sa(dp42759 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000032d.jpg' +p42760 +sg25268 +S'Carousel Dog' +p42761 +sg25270 +S'Dorothy Handy' +p42762 +sa(dp42763 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000365.jpg' +p42764 +sg25268 +S"David Reed's Tavern Sign (verso)" +p42765 +sg25270 +S'Frances Cohen' +p42766 +sa(dp42767 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000465.jpg' +p42768 +sg25268 +S"David Reed's Tavern Sign (recto)" +p42769 +sg25270 +S'Frances Cohen' +p42770 +sa(dp42771 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003b6.jpg' +p42772 +sg25268 +S'Hardware Shop Sign' +p42773 +sg25270 +S'Alice Stearns' +p42774 +sa(dp42775 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000322.jpg' +p42776 +sg25268 +S"Tea importer's sign" +p42777 +sg25270 +S'George Constantine' +p42778 +sa(dp42779 +g25267 +S"Certain wooden household articles were related functionally. Weathervanes, designed to adorn\n the roof of a house and to move with the wind, were akin to whirligigs. The latter also functioned\n as toys. Weathervanes, among the first meteorological instruments, have been a part of American\n folk art for more than 300 years. While many were made of metal, a large number were also of wood,\n providing one of the earliest avenues of expression for the woodcarver's art in America. The first\n American weathervanes were probably used on churches and were frequently in the shape of\n roosters -- a reference to Christ's warning that Peter would deny him before the cock crowed\n twice. But flourishing farm life in the nineteenth century prompted the adoption of many diverse\n silhouettes. Running-horse weathervanes were popular. Some were fashioned after Currier and\n Ives prints, but this one is somewhat more unusual. While interesting texture is added through\n the repeated grooves of mane and tail, the artist has concentrated on uninhibited, flowing\n contours. The most important aspect of a weathervane, indeed, was its silhouette, since it would\n be viewed from a distance against the sky. \n " +p42780 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000347.jpg' +p42781 +sg25268 +S'Horse Weather Vane' +p42782 +sg25270 +S'Lloyd Broome' +p42783 +sa(dp42784 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000393.jpg' +p42785 +sg25268 +S'Eagle' +p42786 +sg25270 +S'Jane Iverson' +p42787 +sa(dp42788 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000039c.jpg' +p42789 +sg25268 +S'Inn Sign: "J. Carter" (verso)' +p42790 +sg25270 +S'John Matulis' +p42791 +sa(dp42792 +g25267 +S'Not all shop signs were human figures. Many, like this shoe, simply exhibited a sample of the goods for\n sale within. This is a more direct method of advertising. This carving of a shoe is a fine piece of craftsmanship, with\n graceful lines and precise details. The grain and character of the wood are shown to good advantage.\n ' +p42793 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000340.jpg' +p42794 +sg25268 +S'Shop Sign' +p42795 +sg25270 +S'Robert Pohle' +p42796 +sa(dp42797 +g25273 +S'Widener Collection' +p42798 +sg25267 +g27 +sg25275 +S'\nbound volume with 17 drawings and 18 prints by various artists for the 1767-1771 ed. of "Les Metamorphoses d\' Ovide"' +p42799 +sg25268 +S'Album of Preliminary Drawings and Prints for "Les Metamorphoses d\'Ovide" (volume 2)' +p42800 +sg25270 +S'Various Artists' +p42801 +sa(dp42802 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003bb.jpg' +p42803 +sg25268 +S'Barber Pole' +p42804 +sg25270 +S'Vera Van Voris' +p42805 +sa(dp42806 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003b4.jpg' +p42807 +sg25268 +S'Fish Woodcarving' +p42808 +sg25270 +S'Ingrid Selmer-Larsen' +p42809 +sa(dp42810 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000039d.jpg' +p42811 +sg25268 +S'Inn Sign: "J. Carter" (recto)' +p42812 +sg25270 +S'John Matulis' +p42813 +sa(dp42814 +g25267 +S'This ballet girl, a rather plump blonde with luxuriantly disheveled hair, was an ornament for the\n calliope, or steam organ. Carved around 1895, it is typical of the figures of dancers and\n musicians favored as suitable subjects for calliopes.\n ' +p42815 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000343.jpg' +p42816 +sg25268 +S'Carousel Calliope Figure' +p42817 +sg25270 +S'Robert Pohle' +p42818 +sa(dp42819 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003a3.jpg' +p42820 +sg25268 +S'Wooden Weather Vane' +p42821 +sg25270 +S'Zabelle Missirian' +p42822 +sa(dp42823 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000324.jpg' +p42824 +sg25268 +S'Cigar Store Indian' +p42825 +sg25270 +S'Eugene Croe' +p42826 +sa(dp42827 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003ac.jpg' +p42828 +sg25268 +S'Tavern Sign' +p42829 +sg25270 +S'E.J. Reynolds' +p42830 +sa(dp42831 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000321.jpg' +p42832 +sg25268 +S'Shop Sign' +p42833 +sg25270 +S'Frances Cohen' +p42834 +sa(dp42835 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003ae.jpg' +p42836 +sg25268 +S'Rooster Weather Vane' +p42837 +sg25270 +S'Michael Riccitelli' +p42838 +sa(dp42839 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000396.jpg' +p42840 +sg25268 +S"Tea Importer's Sign" +p42841 +sg25270 +S'Artist Information (' +p42842 +sa(dp42843 +g25273 +S'(artist after)' +p42844 +sg25267 +g27 +sg25275 +S'\n' +p42845 +sg25268 +S'Daphne poursuivie par Apollon, et changee en Laurier par son Pere' +p42846 +sg25270 +S'Artist Information (' +p42847 +sa(dp42848 +g25267 +g27 +sg25268 +S'Carousel Dog' +p42849 +sg25270 +S'Robert Pohle' +p42850 +sa(dp42851 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000329.jpg' +p42852 +sg25268 +S'Tavern sign' +p42853 +sg25270 +S'Harriette Gale' +p42854 +sa(dp42855 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000032e.jpg' +p42856 +sg25268 +S'Taniscot Engine House Sign' +p42857 +sg25270 +S'Edbury Hatch' +p42858 +sa(dp42859 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000327.jpg' +p42860 +sg25268 +S'Circus Wagon Figure' +p42861 +sg25270 +S'Lawrence Flynn' +p42862 +sa(dp42863 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000031b.jpg' +p42864 +sg25268 +S'Sternpiece from "Shanunga"' +p42865 +sg25270 +S'Mildred E. Bent' +p42866 +sa(dp42867 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000325.jpg' +p42868 +sg25268 +S'Peacock Stern Carving' +p42869 +sg25270 +S'John Davis' +p42870 +sa(dp42871 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000031d.jpg' +p42872 +sg25268 +S'George Washington' +p42873 +sg25270 +S'Laura Bilodeau' +p42874 +sa(dp42875 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000031f.jpg' +p42876 +sg25268 +S'Serpent Weather Vane' +p42877 +sg25270 +S'Lloyd Broome' +p42878 +sa(dp42879 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000394.jpg' +p42880 +sg25268 +S'Dragon Weather Vane' +p42881 +sg25270 +S'Dorothy Hay Jensen' +p42882 +sa(dp42883 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003a4.jpg' +p42884 +sg25268 +S'Figurehead from the Sloop "Postmaster"' +p42885 +sg25270 +S'Elizabeth Moutal' +p42886 +sa(dp42887 +g25268 +S"Jupiter couvre la Terre de Nuages pour jouir d'Io" +p42888 +sg25270 +S'Charles Monnet' +p42889 +sg25273 +S'pen and black ink and brush and brown ink with brown wash over graphite' +p42890 +sg25275 +S'published 1767/1771' +p42891 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a00061a0.jpg' +p42892 +sg25267 +g27 +sa(dp42893 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000031c.jpg' +p42894 +sg25268 +S'Wooden Rooster' +p42895 +sg25270 +S'Sadie Berman' +p42896 +sa(dp42897 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000031e.jpg' +p42898 +sg25268 +S'Knife and Fork Holder' +p42899 +sg25270 +S'Wellington Blewett' +p42900 +sa(dp42901 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000032a.jpg' +p42902 +sg25268 +S'Carved Box' +p42903 +sg25270 +S'Charles Garjian' +p42904 +sa(dp42905 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000323.jpg' +p42906 +sg25268 +S"Tradesman's Sign" +p42907 +sg25270 +S'George Constantine' +p42908 +sa(dp42909 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003b8.jpg' +p42910 +sg25268 +S'Decorated Box' +p42911 +sg25270 +S'Carl Strehlau' +p42912 +sa(dp42913 +g25267 +S"The billethead, in use for centuries, was common in America between 1830 and 1880. An alternative to the figurehead, it was a less elaborate and costly decoration for a ship's bow. Despite its smaller size and lack of a nameable subject, carvers often lavished it with considerable attention. The liveliness of this example with its lush foliate design and crisp carving bespeaks an experienced and talented craftsman. At one time painted (the Index data sheet describes minute traces of black and salmon), its cracked and weather-beaten surface is evidence of its age and history. According to the records of the Peabody Essex Museum in Salem, Massachusetts, in whose collection the object has been since 1905, this billethead once decorated the ship \n " +p42914 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003f3.jpg' +p42915 +sg25268 +S'Billethead from Ship "Favorite"' +p42916 +sg25270 +S'Hazel Hyde' +p42917 +sa(dp42918 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000032b.jpg' +p42919 +sg25268 +S'The Windham Bacchus' +p42920 +sg25270 +S'Alvin M. Gully' +p42921 +sa(dp42922 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003bc.jpg' +p42923 +sg25268 +S'Oxen Yoke' +p42924 +sg25270 +S'Henry Waldeck' +p42925 +sa(dp42926 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003a5.jpg' +p42927 +sg25268 +S'Figurehead from Schooner "Packet"' +p42928 +sg25270 +S'Elizabeth Moutal' +p42929 +sa(dp42930 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000326.jpg' +p42931 +sg25268 +S'Rabbet Plane' +p42932 +sg25270 +S'Samuel Faigin' +p42933 +sa(dp42934 +g25273 +S'(artist after)' +p42935 +sg25267 +g27 +sg25275 +S'\n' +p42936 +sg25268 +S"Jupiter couvre la Terre de Nuages pour jouir d'Io" +p42937 +sg25270 +S'Artist Information (' +p42938 +sa(dp42939 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003a8.jpg' +p42940 +sg25268 +S"Ship's Figurehead" +p42941 +sg25270 +S'Marian Page' +p42942 +sa(dp42943 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003b3.jpg' +p42944 +sg25268 +S'Utility Box' +p42945 +sg25270 +S'Christabel Scrymser' +p42946 +sa(dp42947 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000361.jpg' +p42948 +sg25268 +S"Tradesman's Sign" +p42949 +sg25270 +S'Beatrice DeKalb' +p42950 +sa(dp42951 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003b0.jpg' +p42952 +sg25268 +S'Dough Trough' +p42953 +sg25270 +S'M. Rosenshield-von-Paulin' +p42954 +sa(dp42955 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000392.jpg' +p42956 +sg25268 +S'Stern Board from Ship "John Penrose"' +p42957 +sg25270 +S'Mary E. Humes' +p42958 +sa(dp42959 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000320.jpg' +p42960 +sg25268 +S"Ship's Billethead" +p42961 +sg25270 +S'Lucille Chabot' +p42962 +sa(dp42963 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003b7.jpg' +p42964 +sg25268 +S'Tavern Sign' +p42965 +sg25270 +S'Alice Stearns' +p42966 +sa(dp42967 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000039e.jpg' +p42968 +sg25268 +S"J. Alderman's Tavern Sign" +p42969 +sg25270 +S'John Matulis' +p42970 +sa(dp42971 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000328.jpg' +p42972 +sg25268 +S'Billethead' +p42973 +sg25270 +S'Betty Fuerst' +p42974 +sa(dp42975 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000398.jpg' +p42976 +sg25268 +S'Cigar Store Indian' +p42977 +sg25270 +S'Georgine E. Mason' +p42978 +sa(dp42979 +g25273 +S', 1766' +p42980 +sg25267 +g27 +sg25275 +S'\n' +p42981 +sg25268 +S'Jupiter change Io en Vache pour la d\xc3\xa9rober a jalousie de Junon' +p42982 +sg25270 +S'Jean-Michel Moreau the Younger' +p42983 +sa(dp42984 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000360.jpg' +p42985 +sg25268 +S"Shoemaker's Bench" +p42986 +sg25270 +S'Pearl Davis' +p42987 +sa(dp42988 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a0005451.jpg' +p42989 +sg25268 +S'Eagle from Paddle Wheel Cover of "Island Home"' +p42990 +sg25270 +S'Alfred H. Smith' +p42991 +sa(dp42992 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000397.jpg' +p42993 +sg25268 +S'Cigar Store Figure: Punch' +p42994 +sg25270 +S'Elmer R. Kottcamp' +p42995 +sa(dp42996 +g25267 +S'The traveling circus received its start in America in 1824, when John Robinson took three wagons, five horses, and a tent across the Allegheny mountains. It was not long before the American circus became the "Greatest Show on Earth," bringing excitement to many towns, small and large, across the country. Circuses were transported by means of wagons, which became glamorous showpieces in themselves. The wagon builders employed woodcarvers to decorate the exteriors with figures and scrollwork. The result added to the impressive effect of a traveling company. Few circus carvings remain, however; not only were the wooden figures perishable, but they were not taken seriously in their own time and usually were not considered worthy of preservation. This circus wagon, of about 1875, is named "United States." Elaborately gilded and carved, it appropriately displays the Goddess of Liberty flanked by Indian maidens as symbols of our country. \n ' +p42997 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000341.jpg' +p42998 +sg25268 +S'Circus Wagon' +p42999 +sg25270 +S'Frank M. Keane' +p43000 +sa(dp43001 +g25267 +S'Wood carving and whittling were favorite pastimes of men and boys in early America, and particularly in the Pennsylvania German region where wood was abundant. With only a small knife and a block of wood, amateur carvers created a variety of useful \n and decorative items for the home. This carved group of "Adam and Eve in the Garden of Eden" was done by Wilhelm Schimmel. An itinerant carver of the mid-nineteenth century, he wandered throughout the southeastern counties of Pennsylvania exchanging \n his whittled animals and toys for a meal or a glass of rum. This unusual carving may have been a "Sunday toy" -- a toy with which children could play on Sundays when boisterous activity was not permitted. Schimmel carved each of the pieces in this \n group separately, then combined them and finished the work with oil color. While technically crude, Schimmel\'s carvings are treasured for their lively portrayal of his subjects.\n ' +p43002 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000371.jpg' +p43003 +sg25268 +S'Adam and Eve' +p43004 +sg25270 +S'Yolande Delasser' +p43005 +sa(dp43006 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000038f.jpg' +p43007 +sg25268 +S'Desk Box' +p43008 +sg25270 +S'Henry Granet' +p43009 +sa(dp43010 +g25267 +S'An architectural arrangement was not always painted onto dower chests but was sometimes built in. This chest is constructed with three recessed panels divided by brown and ivory-colored pilasters. Red and green flowers and stars on an ivory ground \n provide the decorative motifs. Made in the late eighteenth century, this chest is set on onion feet. It is inscribed with the name of the original owner, "Christina Ernstin."\n ' +p43011 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000036f.jpg' +p43012 +sg25268 +S'Dower Chest' +p43013 +sg25270 +S'Carl Strehlau' +p43014 +sa(dp43015 +g25267 +S'Pennsylvania German furniture is heavy and ornate, much like traditional German peasant styles. Because the Pennsylvania forests supplied an abundance of wood, there was never a shortage of materials. Furniture, like this kitchen cupboard, was often \n made for the dowry of a son or daughter. If the farmer was a skilled cabinetmaker he would make the piece himself, leaving the decoration to an itinerant journeyman. Decoration of furniture was done both freehand and by stenciling. This cupboard was \n made for Rebecca Braun in 1828. The bright red paint contrasts with the ivory-colored window frames and green trim. The circular geometrical shapes are similar to decorations often found on Pennsylvania German barns. The angels on the door panels were \n traced from designs on birth certificates of that time. Cupboards were used not only for storage of household utensils, but to display ornamental pottery and toleware as well.\n ' +p43016 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003b2.jpg' +p43017 +sg25268 +S'Painted Cabinet' +p43018 +sg25270 +S'Carl Strehlau' +p43019 +sa(dp43020 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000391.jpg' +p43021 +sg25268 +S'Chest of Drawers' +p43022 +sg25270 +S'Charles Henning' +p43023 +sa(dp43024 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003b9.jpg' +p43025 +sg25268 +S'Trunk' +p43026 +sg25270 +S'John Thorsen' +p43027 +sa(dp43028 +g25268 +S'Cupids Disarming Sleeping Nymphs' +p43029 +sg25270 +S'Giuseppe Maria Crespi' +p43030 +sg25273 +S'oil on copper' +p43031 +sg25275 +S'c. 1690/1705' +p43032 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000603.jpg' +p43033 +sg25267 +g27 +sa(dp43034 +g25273 +S'(artist after)' +p43035 +sg25267 +g27 +sg25275 +S'\n' +p43036 +sg25268 +S'Jupiter change Io en Vache pour la d\xc3\xa9rober \xc3\xa0 la jalousie de Junon' +p43037 +sg25270 +S'Artist Information (' +p43038 +sa(dp43039 +g25267 +S'Dishes made by Pennsylvania German potters came in a variety of sizes and shapes. This oval one with scalloped edges was elaborately decorated by the sgraffito technique. Notice the bold floral design that contrasts with \n the light strokes of lettering that form a delicate border. Splashes of green worked into the glaze heighten the color of the red clay that is exposed. The dish was made by Samuel Troxel. The inscription reads: "From clay and many skills, \n the potter fashions what he will, July the 19th 1823."\n ' +p43040 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003c1.jpg' +p43041 +sg25268 +S'Pennsylvania German Dish' +p43042 +sg25270 +S'Albert Levone' +p43043 +sa(dp43044 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003b1.jpg' +p43045 +sg25268 +S'Carousel Horse' +p43046 +sg25270 +S'Albert Ryder' +p43047 +sa(dp43048 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000466.jpg' +p43049 +sg25268 +S'Circus Wagon Figure: Pan' +p43050 +sg25270 +S'John Collins' +p43051 +sa(dp43052 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003a6.jpg' +p43053 +sg25268 +S'Figurehead' +p43054 +sg25270 +S'Elizabeth Moutal' +p43055 +sa(dp43056 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000032c.jpg' +p43057 +sg25268 +S'Cigar Store Indian' +p43058 +sg25270 +S'Emil Hagen' +p43059 +sa(dp43060 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000390.jpg' +p43061 +sg25268 +S"Ship Carver's Sign" +p43062 +sg25270 +S'Dorothy Hay Jensen' +p43063 +sa(dp43064 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003af.jpg' +p43065 +sg25268 +S'Carousel Dog' +p43066 +sg25270 +S'Michael Riccitelli' +p43067 +sa(dp43068 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000033f.jpg' +p43069 +sg25268 +S'Carousel Horse' +p43070 +sg25270 +S'John W. Kelleher' +p43071 +sa(dp43072 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000039f.jpg' +p43073 +sg25268 +S"R. Angell's Tavern Sign" +p43074 +sg25270 +S'John Matulis' +p43075 +sa(dp43076 +g25267 +S'Wilhelm Schimmel was a Pennsylvania carver well known for his eagles, parrots,\n and roosters. An example of his work is this small, perky rooster. Though just ten inches high, it\n has an air of monumentality. Schimmel, born in Germany, immigrated to the United States\n shortly after the Civil War. He was an itinerant worker who wandered the Pennsylvania\n countryside making carvings to earn his keep. His only tools were a jackknife, bits of glass to\n smooth away the knife marks, and a few paint brushes. He died in a almshouse, but today his\n carvings are famous. \n ' +p43077 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000034f.jpg' +p43078 +sg25268 +S'Rooster Woodcarving' +p43079 +sg25270 +S'Marian Page' +p43080 +sa(dp43081 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p43082 +sg25267 +g27 +sg25275 +S'published 1767/1771' +p43083 +sg25268 +S'Syrinx, fille du Fleuve Ladon, est poursuivie par Pan, et changee en Roseaux' +p43084 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p43085 +sa(dp43086 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003a0.jpg' +p43087 +sg25268 +S"William Gordon's Tavern Sign" +p43088 +sg25270 +S'John Matulis' +p43089 +sa(dp43090 +g25267 +g27 +sg25268 +S'Rifle Patchbox' +p43091 +sg25270 +S'Albert Levone' +p43092 +sa(dp43093 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000038e.jpg' +p43094 +sg25268 +S'Figurehead' +p43095 +sg25270 +S'Joseph Goldberg' +p43096 +sa(dp43097 +g25267 +g27 +sg25268 +S"Child's Side Saddle" +p43098 +sg25270 +S'Rose Campbell-Gerke' +p43099 +sa(dp43100 +g25267 +g27 +sg25268 +S'Chalkware Rooster' +p43101 +sg25270 +S'Betty Fuerst' +p43102 +sa(dp43103 +g25267 +g27 +sg25268 +S'Toy Train' +p43104 +sg25270 +S'Robert Clark' +p43105 +sa(dp43106 +g25267 +S'Baskets of the California Indians have been considered the finest of their type ever made. This one was made in 1822 at the Mission of Buenaventura. An inscription woven into the border reads:\r\n "Made by Anna Maria Marta, Neophyte of the Mission of the Serafic Doctor, Saint Bonaventura." The central panel shows the coat of arms of Spain: a crown above the castles of Castile and the lions of Leon. The representation of the coat of arms is so simplified that it is barely recognizable, partly because the technique of weaving tends to give a geometric character to any design.\r\n The basket is made in the usual Indian fashion: coils of a tall, thin grass were covered with rush and sewn together.\n ' +p43107 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003de.jpg' +p43108 +sg25268 +S'Indian Basket' +p43109 +sg25270 +S'Gordena Jackson' +p43110 +sa(dp43111 +g25267 +g27 +sg25268 +S'Metal Toy: Trick Pony Bell Ringer' +p43112 +sg25270 +S'Charles Henning' +p43113 +sa(dp43114 +g25267 +g27 +sg25268 +S'Toy Spinning Wheel' +p43115 +sg25270 +S'Walter Praefke' +p43116 +sa(dp43117 +g25267 +g27 +sg25268 +S'Figurehead: "Marie-Antoinette"' +p43118 +sg25270 +S'Mildred E. Bent' +p43119 +sa(dp43120 +g25273 +S'(artist after)' +p43121 +sg25267 +g27 +sg25275 +S'\n' +p43122 +sg25268 +S'Syrinx, fille du Fleuve Ladon, est poursuvie par Pan, et changee en Roseaux' +p43123 +sg25270 +S'Artist Information (' +p43124 +sa(dp43125 +g25267 +g27 +sg25268 +S'Figurehead' +p43126 +sg25270 +S'Helen E. Gilman' +p43127 +sa(dp43128 +g25267 +g27 +sg25268 +S'Figurehead' +p43129 +sg25270 +S'John W. Kelleher' +p43130 +sa(dp43131 +g25267 +g27 +sg25268 +S'Figurehead: "Janus"' +p43132 +sg25270 +S'Ingrid Selmer-Larsen' +p43133 +sa(dp43134 +g25267 +g27 +sg25268 +S'Figurehead: "Quaker"' +p43135 +sg25270 +S'Elizabeth Moutal' +p43136 +sa(dp43137 +g25267 +g27 +sg25268 +S'Figurehead' +p43138 +sg25270 +S'Alfred Denghausen' +p43139 +sa(dp43140 +g25267 +g27 +sg25268 +S'Figurehead' +p43141 +sg25270 +S'George Constantine' +p43142 +sa(dp43143 +g25267 +g27 +sg25268 +S'Figurehead from "Julia Lawrence"' +p43144 +sg25270 +S'Rosamond P. Gray' +p43145 +sa(dp43146 +g25267 +g27 +sg25268 +S'Figurehead' +p43147 +sg25270 +S'John Davis' +p43148 +sa(dp43149 +g25267 +g27 +sg25268 +S'Figurehead' +p43150 +sg25270 +S'Ingrid Selmer-Larsen' +p43151 +sa(dp43152 +g25267 +g27 +sg25268 +S'Figurehead' +p43153 +sg25270 +S'Rosamond P. Gray' +p43154 +sa(dp43155 +g25273 +S'graphite' +p43156 +sg25267 +g27 +sg25275 +S'1765' +p43157 +sg25268 +S"Argus gardien d'Io est endormi par Mercure, qui lui tranche la Tete" +p43158 +sg25270 +S'Charles Eisen' +p43159 +sa(dp43160 +g25267 +g27 +sg25268 +S'Figurehead' +p43161 +sg25270 +S'Lucille Chabot' +p43162 +sa(dp43163 +g25267 +g27 +sg25268 +S'Pine Bust of Washington' +p43164 +sg25270 +S'Lucille Chabot' +p43165 +sa(dp43166 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003c9.jpg' +p43167 +sg25268 +S"Carved Figure (Possibly a Tailor's Shop Sign)" +p43168 +sg25270 +S'Frank McEntee' +p43169 +sa(dp43170 +g25267 +S'Before the Civil War, most American dolls were made at home, and the practice \n continued much later, in many cases. This rag doll, one of the most popular doll \n types, is a charming product of home manufacture during the 1880s. Named "Mollie \n Bentley," this doll was the work of a girl by the same name who lived in Lancaster \n County, Pennsylvania. The doll\'s body and dress were made of various scraps of \n materials found about the house. "Mollie\'s" clothing includes two types of cotton \n fabric popular in the nineteenth century: calico, a name derived from Calicut, \n India, where cotton textiles were first printed; and gingham, whose name is of \n either Malayan or French origin, a fabric that had been used from the early days \n of the colonies.\n ' +p43171 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000030b.jpg' +p43172 +sg25268 +S'Doll: "Mollie Bentley"' +p43173 +sg25270 +S'Artist Information (' +p43174 +sa(dp43175 +g25267 +g27 +sg25268 +S'Side Saddle' +p43176 +sg25270 +S'Frank C. Barks' +p43177 +sa(dp43178 +g25267 +g27 +sg25268 +S'Spur' +p43179 +sg25270 +S'Raymond E. Noble' +p43180 +sa(dp43181 +g25267 +g27 +sg25268 +S'Spur' +p43182 +sg25270 +S'Gerald Transpota' +p43183 +sa(dp43184 +g25267 +g27 +sg25268 +S'Spur' +p43185 +sg25270 +S'William Kieckhofel' +p43186 +sa(dp43187 +g25273 +S'watercolor, graphite, pen and ink, and gouache on paper' +p43188 +sg25267 +g27 +sg25275 +S'1946' +p43189 +sg25268 +S'"California Mission Style" Interior' +p43190 +sg25270 +S'Perkins Harnly' +p43191 +sa(dp43192 +g25267 +g27 +sg25268 +S'Painted Chest' +p43193 +sg25270 +S'E. Boyd' +p43194 +sa(dp43195 +g25273 +S'(artist after)' +p43196 +sg25267 +g27 +sg25275 +S'\n' +p43197 +sg25268 +S"Argus gardien d'Io est endormi par Mercure, qui lui tranche la tete" +p43198 +sg25270 +S'Artist Information (' +p43199 +sa(dp43200 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005530.jpg' +p43201 +sg25268 +S'Civil War Drum' +p43202 +sg25270 +S'Wayne White' +p43203 +sa(dp43204 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a0006388.jpg' +p43205 +sg25268 +S'Eagle Sternpiece' +p43206 +sg25270 +S'Alfred H. Smith' +p43207 +sa(dp43208 +g25267 +g27 +sg25268 +S'Wooden Jointed Doll' +p43209 +sg25270 +S'Jane Iverson' +p43210 +sa(dp43211 +g25267 +g27 +sg25268 +S'Potato Masher' +p43212 +sg25270 +S'Luther D. Wenrich' +p43213 +sa(dp43214 +g25267 +g27 +sg25268 +S'Lard Oil Lamp' +p43215 +sg25270 +S'Franklyn Syres' +p43216 +sa(dp43217 +g25267 +g27 +sg25268 +S'Roasting Stand with Drip Pan' +p43218 +sg25270 +S'Roy Weber' +p43219 +sa(dp43220 +g25267 +g27 +sg25268 +S'Whirligig' +p43221 +sg25270 +S'Luther D. Wenrich' +p43222 +sa(dp43223 +g25267 +g27 +sg25268 +S'William Penn Carving' +p43224 +sg25270 +S'Frances Lichten' +p43225 +sa(dp43226 +g25267 +g27 +sg25268 +S'Pa. German Music Box' +p43227 +sg25270 +S'Charlotte Angus' +p43228 +sa(dp43229 +g25267 +g27 +sg25268 +S'Andirons' +p43230 +sg25270 +S'Henry Meyers' +p43231 +sa(dp43232 +g25273 +S'pen and black ink and brush and brown ink with brown wash over graphite' +p43233 +sg25267 +g27 +sg25275 +S'published 1767/1771' +p43234 +sg25268 +S"Jupiter prie Junon de changer le sort d'Io" +p43235 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p43236 +sa(dp43237 +g25267 +g27 +sg25268 +S'Andiron' +p43238 +sg25270 +S'Jacob Lipkin' +p43239 +sa(dp43240 +g25267 +g27 +sg25268 +S'Andiron' +p43241 +sg25270 +S'Jack Staloff' +p43242 +sa(dp43243 +g25267 +g27 +sg25268 +S'Fire Dogs' +p43244 +sg25270 +S'Rex F. Bush' +p43245 +sa(dp43246 +g25267 +g27 +sg25268 +S'Large Andiron' +p43247 +sg25270 +S'Artist Information (' +p43248 +sa(dp43249 +g25267 +g27 +sg25268 +S'Andiron' +p43250 +sg25270 +S'Salvatore Borrazzo' +p43251 +sa(dp43252 +g25267 +g27 +sg25268 +S'Andirons' +p43253 +sg25270 +S'Dana Bartlett' +p43254 +sa(dp43255 +g25267 +g27 +sg25268 +S'Andirons' +p43256 +sg25270 +S'Ray Price' +p43257 +sa(dp43258 +g25267 +g27 +sg25268 +S'Brass Andirons' +p43259 +sg25270 +S'Robert Clark' +p43260 +sa(dp43261 +g25267 +g27 +sg25268 +S'Newspaper Brand Announcements' +p43262 +sg25270 +S'Elizabeth Johnson' +p43263 +sa(dp43264 +g25267 +g27 +sg25268 +S'Adze' +p43265 +sg25270 +S'Lloyd Charles Lemcke' +p43266 +sa(dp43267 +g25273 +S'(artist after)' +p43268 +sg25267 +g27 +sg25275 +S'\n' +p43269 +sg25268 +S"Jupiter prie Junon de changer le sort d'Io" +p43270 +sg25270 +S'Artist Information (' +p43271 +sa(dp43272 +g25267 +g27 +sg25268 +S'Coopers Adz' +p43273 +sg25270 +S'Francis Jennings' +p43274 +sa(dp43275 +g25267 +g27 +sg25268 +S'Hand Forged Adze' +p43276 +sg25270 +S'Donald Streeter' +p43277 +sa(dp43278 +g25267 +g27 +sg25268 +S'Altar Rail Gate' +p43279 +sg25270 +S'Manuel G. Runyan' +p43280 +sa(dp43281 +g25267 +g27 +sg25268 +S'Chinese Altar Tray' +p43282 +sg25270 +S'Vera Van Voris' +p43283 +sa(dp43284 +g25267 +g27 +sg25268 +S'Butter Box' +p43285 +sg25270 +S'William Spiecker' +p43286 +sa(dp43287 +g25267 +g27 +sg25268 +S'Round Top Table' +p43288 +sg25270 +S'Violet Hartenstein' +p43289 +sa(dp43290 +g25267 +g27 +sg25268 +S"Baker's Mixing Spoon" +p43291 +sg25270 +S'Paul Poffinbarger' +p43292 +sa(dp43293 +g25267 +g27 +sg25268 +S"Baker's Cabinet" +p43294 +sg25270 +S'American 20th Century' +p43295 +sa(dp43296 +g25267 +g27 +sg25268 +S'Footstool' +p43297 +sg25270 +S'Frank Eiseman' +p43298 +sa(dp43299 +g25267 +g27 +sg25268 +S'Dough Trough Bench' +p43300 +sg25270 +S'LeRoy Griffith' +p43301 +sa(dp43302 +g25268 +S'Phaeton au Palais du Soleil ...' +p43303 +sg25270 +S'Jean-Michel Moreau the Younger' +p43304 +sg25273 +S', 1766' +p43305 +sg25275 +S'\n' +p43306 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a00061a1.jpg' +p43307 +sg25267 +g27 +sa(dp43308 +g25267 +g27 +sg25268 +S'Clothes Pin Basket' +p43309 +sg25270 +S'Herndon Hightower' +p43310 +sa(dp43311 +g25267 +g27 +sg25268 +S'Weather Vane' +p43312 +sg25270 +S'Frank Eiseman' +p43313 +sa(dp43314 +g25267 +g27 +sg25268 +S'Footstool Top' +p43315 +sg25270 +S'E.J. Reynolds' +p43316 +sa(dp43317 +g25267 +g27 +sg25268 +S"Baker's Table" +p43318 +sg25270 +S'Earl Butlin' +p43319 +sa(dp43320 +g25267 +g27 +sg25268 +S'Rocking Chair (Square Back)' +p43321 +sg25270 +S'Robert Gilson' +p43322 +sa(dp43323 +g25267 +g27 +sg25268 +S'Clock Reel' +p43324 +sg25270 +S'Frank Eiseman' +p43325 +sa(dp43326 +g25267 +g27 +sg25268 +S'Sewing Screw' +p43327 +sg25270 +S'Frank Eiseman' +p43328 +sa(dp43329 +g25267 +g27 +sg25268 +S'Ammunition Bag' +p43330 +sg25270 +S'Ethel Dougan' +p43331 +sa(dp43332 +g25267 +g27 +sg25268 +S'Anchor Link' +p43333 +sg25270 +S'Samuel Faigin' +p43334 +sa(dp43335 +g25267 +g27 +sg25268 +S'Anchor Trip Hook' +p43336 +sg25270 +S'William Frank' +p43337 +sa(dp43338 +g25273 +S'(artist after)' +p43339 +sg25267 +g27 +sg25275 +S'\n' +p43340 +sg25268 +S'Pha\xc3\xa9ton au Palais du Soleil, demande \xc3\xa0 son P\xc3\xa8re de conduire son Char pendant un jour' +p43341 +sg25270 +S'Artist Information (' +p43342 +sa(dp43343 +g25267 +g27 +sg25268 +S'Brass Andiron' +p43344 +sg25270 +S'Henry Meyers' +p43345 +sa(dp43346 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43347 +sg25270 +S'Hans Korsch' +p43348 +sa(dp43349 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43350 +sg25270 +S'Hans Korsch' +p43351 +sa(dp43352 +g25267 +g27 +sg25268 +S'Andiron' +p43353 +sg25270 +S'Janet Riza' +p43354 +sa(dp43355 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43356 +sg25270 +S'Hans Korsch' +p43357 +sa(dp43358 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43359 +sg25270 +S'Jack Staloff' +p43360 +sa(dp43361 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43362 +sg25270 +S'Hans Korsch' +p43363 +sa(dp43364 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43365 +sg25270 +S'Jack Staloff' +p43366 +sa(dp43367 +g25267 +g27 +sg25268 +S'Brass Andirons' +p43368 +sg25270 +S'Edward L. Loper' +p43369 +sa(dp43370 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43371 +sg25270 +S'Hans Korsch' +p43372 +sa(dp43373 +g25273 +S'graphite' +p43374 +sg25267 +g27 +sg25275 +S'1766' +p43375 +sg25268 +S'Pour prevenir un Embrasement universal, Jupiter foudroye Phaeton' +p43376 +sg25270 +S'Charles Eisen' +p43377 +sa(dp43378 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43379 +sg25270 +S'Jack Staloff' +p43380 +sa(dp43381 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43382 +sg25270 +S'Hans Korsch' +p43383 +sa(dp43384 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43385 +sg25270 +S'Jack Staloff' +p43386 +sa(dp43387 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43388 +sg25270 +S'Hans Korsch' +p43389 +sa(dp43390 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43391 +sg25270 +S'Jack Staloff' +p43392 +sa(dp43393 +g25267 +g27 +sg25268 +S'Andirons (right and left)' +p43394 +sg25270 +S'Hans Korsch' +p43395 +sa(dp43396 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43397 +sg25270 +S'Hans Korsch' +p43398 +sa(dp43399 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43400 +sg25270 +S'Hans Korsch' +p43401 +sa(dp43402 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43403 +sg25270 +S'Hans Korsch' +p43404 +sa(dp43405 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43406 +sg25270 +S'Hans Korsch' +p43407 +sa(dp43408 +g25268 +S'The Faint' +p43409 +sg25270 +S'Pietro Longhi' +p43410 +sg25273 +S'oil on canvas' +p43411 +sg25275 +S'c. 1744' +p43412 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000614.jpg' +p43413 +sg25267 +S"A woman in a powder-pink gown seems to be at the center of a domestic crisis as she sinks\nback,\ndeathly pale, into a chair. The explanation for her indisposition is not hard to discover. A table\nhas been tipped over at the left, spilling cards, an open purse, and coins on to the floor. The lady\nhas been gambling. Dealt an unfortunate hand of cards, she pretended to faint, conveniently\nupsetting the table as she swooned. Her servants and companions rush to her aid, while the man\non the right may be a doctor, or a gambling partner who had been winning.\n Longhi's fame rested on such intimate glimpses of Venetian upperclass life in a period of\nrefined\ndecadence. His aristocratic subjects were also his patrons, and they would have appreciated this\naccurate portrayal of an elegant interior with a chinoiserie card table and moss-green damask on\nthe walls. The realistic comedy of Longhi's playwright friend Carlo Goldoni may have been a\nsource of inspiration, but Longhi's vignettes lack Goldoni's satirical bite. The feathery touch of\nLonghi's brush and the filtered light soften the scene, as do the pastel colors and the diminutive,\ndoll-like actors.\n " +p43414 +sa(dp43415 +g25273 +S'(artist after)' +p43416 +sg25267 +g27 +sg25275 +S'\n' +p43417 +sg25268 +S'Pour prevenir un Embrasement universel, Jupiter foudroye Phaeton' +p43418 +sg25270 +S'Artist Information (' +p43419 +sa(dp43420 +g25267 +g27 +sg25268 +S'Cast Iron and Brass Andiron' +p43421 +sg25270 +S'Vincent P. Rosel' +p43422 +sa(dp43423 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43424 +sg25270 +S'Hans Korsch' +p43425 +sa(dp43426 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43427 +sg25270 +S'Hans Korsch' +p43428 +sa(dp43429 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43430 +sg25270 +S'Hans Korsch' +p43431 +sa(dp43432 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43433 +sg25270 +S'Hans Korsch' +p43434 +sa(dp43435 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43436 +sg25270 +S'Hans Korsch' +p43437 +sa(dp43438 +g25267 +g27 +sg25268 +S'Andiron' +p43439 +sg25270 +S'Hans Korsch' +p43440 +sa(dp43441 +g25267 +g27 +sg25268 +S'Fire Dogs or Andirons' +p43442 +sg25270 +S'Frank J. Mace' +p43443 +sa(dp43444 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43445 +sg25270 +S'Maurice Van Felix' +p43446 +sa(dp43447 +g25267 +g27 +sg25268 +S'Andirons' +p43448 +sg25270 +S'Ethel Dougan' +p43449 +sa(dp43450 +g25273 +S'(artist after)' +p43451 +sg25267 +g27 +sg25275 +S'\n' +p43452 +sg25268 +S'Pour prevenir un Embrasement universel, Jupiter foudroye Phaeton' +p43453 +sg25270 +S'Artist Information (' +p43454 +sa(dp43455 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43456 +sg25270 +S'Mildred Ford' +p43457 +sa(dp43458 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43459 +sg25270 +S'Jack Staloff' +p43460 +sa(dp43461 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43462 +sg25270 +S'Maurice Van Felix' +p43463 +sa(dp43464 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43465 +sg25270 +S'Herman Bader' +p43466 +sa(dp43467 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43468 +sg25270 +S'Jack Staloff' +p43469 +sa(dp43470 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43471 +sg25270 +S'Artist Information (' +p43472 +sa(dp43473 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43474 +sg25270 +S'Milton Grubstein' +p43475 +sa(dp43476 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43477 +sg25270 +S'Milton Grubstein' +p43478 +sa(dp43479 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43480 +sg25270 +S'Jacob Lipkin' +p43481 +sa(dp43482 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43483 +sg25270 +S'Jacob Lipkin' +p43484 +sa(dp43485 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p43486 +sg25267 +g27 +sg25275 +S'published 1767/1771' +p43487 +sg25268 +S'Le Tombeau de Phaeton ...' +p43488 +sg25270 +S'Charles Monnet' +p43489 +sa(dp43490 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43491 +sg25270 +S'Herman Bader' +p43492 +sa(dp43493 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43494 +sg25270 +S'Herman Bader' +p43495 +sa(dp43496 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43497 +sg25270 +S'Jacob Lipkin' +p43498 +sa(dp43499 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43500 +sg25270 +S'Herman Bader' +p43501 +sa(dp43502 +g25267 +g27 +sg25268 +S'Andiron or Fire Dog' +p43503 +sg25270 +S'Paul Poffinbarger' +p43504 +sa(dp43505 +g25267 +g27 +sg25268 +S'Andiron or Fire Dog' +p43506 +sg25270 +S'Carl Buergerniss' +p43507 +sa(dp43508 +g25267 +g27 +sg25268 +S'Andiron (George Washington)' +p43509 +sg25270 +S'Josephine Lindley' +p43510 +sa(dp43511 +g25267 +g27 +sg25268 +S'Andiron (Marching Hessian)' +p43512 +sg25270 +S'Cushman Parker' +p43513 +sa(dp43514 +g25267 +g27 +sg25268 +S'Andiron' +p43515 +sg25270 +S'Eugene Bartz' +p43516 +sa(dp43517 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43518 +sg25270 +S'Salvatore Borrazzo' +p43519 +sa(dp43520 +g25273 +S'(artist after)' +p43521 +sg25267 +g27 +sg25275 +S'\n' +p43522 +sg25268 +S'Le Tombeau de Phaeton ...' +p43523 +sg25270 +S'Artist Information (' +p43524 +sa(dp43525 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43526 +sg25270 +S'Filippo Porreca' +p43527 +sa(dp43528 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43529 +sg25270 +S'Jack Staloff' +p43530 +sa(dp43531 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43532 +sg25270 +S'Mildred Ford' +p43533 +sa(dp43534 +g25267 +g27 +sg25268 +S'Wrought Iron Andirion' +p43535 +sg25270 +S'Henry Meyers' +p43536 +sa(dp43537 +g25267 +g27 +sg25268 +S'Unicorn' +p43538 +sg25270 +S'Alice Stearns' +p43539 +sa(dp43540 +g25267 +g27 +sg25268 +S'Relief Panel of Bear' +p43541 +sg25270 +S'Flora Merchant' +p43542 +sa(dp43543 +g25267 +g27 +sg25268 +S'Market Basket' +p43544 +sg25270 +S'D.J. Grant' +p43545 +sa(dp43546 +g25267 +g27 +sg25268 +S'Woodcarving of a Lion' +p43547 +sg25270 +S'Alice Stearns' +p43548 +sa(dp43549 +g25267 +g27 +sg25268 +S'Carved Wooden Basket' +p43550 +sg25270 +S'Regina Henderer' +p43551 +sa(dp43552 +g25267 +g27 +sg25268 +S"Mantle Carving (Dog's Head)" +p43553 +sg25270 +S'Henry Murphy' +p43554 +sa(dp43555 +g25268 +S'Jupiter and Callisto' +p43556 +sg25270 +S'Charles Eisen' +p43557 +sg25273 +S'graphite on vellum' +p43558 +sg25275 +S'1765' +p43559 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a00060d9.jpg' +p43560 +sg25267 +g27 +sa(dp43561 +g25267 +g27 +sg25268 +S"Wood Carving of Tiger's Head" +p43562 +sg25270 +S'Joseph Glover' +p43563 +sa(dp43564 +g25267 +g27 +sg25268 +S'Cow and Calf Toy' +p43565 +sg25270 +S'Isabella Ruth Doerfler' +p43566 +sa(dp43567 +g25267 +g27 +sg25268 +S'Cat Head Gargoyle' +p43568 +sg25270 +S'John Davis' +p43569 +sa(dp43570 +g25267 +g27 +sg25268 +S"Carved Dog's Head" +p43571 +sg25270 +S'Vera Van Voris' +p43572 +sa(dp43573 +g25267 +g27 +sg25268 +S"Carved Lion's Head" +p43574 +sg25270 +S'Vera Van Voris' +p43575 +sa(dp43576 +g25267 +g27 +sg25268 +S'Toy Fish' +p43577 +sg25270 +S'Charles Garjian' +p43578 +sa(dp43579 +g25267 +g27 +sg25268 +S'Toy Cow' +p43580 +sg25270 +S'Hester Duany' +p43581 +sa(dp43582 +g25267 +g27 +sg25268 +S'Figure of a Deer' +p43583 +sg25270 +S'Mina Lowry' +p43584 +sa(dp43585 +g25267 +g27 +sg25268 +S'Carved Cat Head (Detail)' +p43586 +sg25270 +S'Alton K. Skillin' +p43587 +sa(dp43588 +g25267 +g27 +sg25268 +S"Decorative Horse's Head" +p43589 +sg25270 +S'Albert Ryder' +p43590 +sa(dp43591 +g25273 +S'(artist after)' +p43592 +sg25267 +g27 +sg25275 +S'\n' +p43593 +sg25268 +S'Jupiter prend la forme de Diane, pour rendre sensible la Nymphe Calisto' +p43594 +sg25270 +S'Artist Information (' +p43595 +sa(dp43596 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43597 +sg25270 +S'Jacob Lipkin' +p43598 +sa(dp43599 +g25267 +g27 +sg25268 +S'Wrought Iron Andiron' +p43600 +sg25270 +S'Natalie Simon' +p43601 +sa(dp43602 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43603 +sg25270 +S'Maurice Van Felix' +p43604 +sa(dp43605 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43606 +sg25270 +S'Jack Staloff' +p43607 +sa(dp43608 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43609 +sg25270 +S'Salvatore Borrazzo' +p43610 +sa(dp43611 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43612 +sg25270 +S'Gordon Sanborn' +p43613 +sa(dp43614 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43615 +sg25270 +S'Maurice Van Felix' +p43616 +sa(dp43617 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43618 +sg25270 +S'Salvatore Borrazzo' +p43619 +sa(dp43620 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43621 +sg25270 +S'Jack Staloff' +p43622 +sa(dp43623 +g25267 +g27 +sg25268 +S'Andiron (one of pair)' +p43624 +sg25270 +S'Arsen Maralian' +p43625 +sa(dp43626 +g25273 +S'graphite' +p43627 +sg25267 +g27 +sg25275 +S'1766' +p43628 +sg25268 +S'Les Nymphes decouvrent a Diane la grossesse de Calisto' +p43629 +sg25270 +S'Charles Eisen' +p43630 +sa(dp43631 +g25267 +g27 +sg25268 +S'Bandbox Design - Rhino' +p43632 +sg25270 +S'Isabella Ruth Doerfler' +p43633 +sa(dp43634 +g25267 +g27 +sg25268 +S'Bandbox Paper' +p43635 +sg25270 +S'Martin Partyka' +p43636 +sa(dp43637 +g25267 +g27 +sg25268 +S'Wallpaper from Bandbox' +p43638 +sg25270 +S'Charlotte Angus' +p43639 +sa(dp43640 +g25267 +g27 +sg25268 +S'Bandbox' +p43641 +sg25270 +S'Martin Partyka' +p43642 +sa(dp43643 +g25267 +g27 +sg25268 +S'Bandbox Design' +p43644 +sg25270 +S'Isabella Ruth Doerfler' +p43645 +sa(dp43646 +g25267 +g27 +sg25268 +S'Bandbox Design' +p43647 +sg25270 +S'Isabella Ruth Doerfler' +p43648 +sa(dp43649 +g25267 +g27 +sg25268 +S'Bandbox Paper' +p43650 +sg25270 +S'Robert Galvin' +p43651 +sa(dp43652 +g25267 +g27 +sg25268 +S'Bandbox Design (Rabbit Hunt)' +p43653 +sg25270 +S'American 20th Century' +p43654 +sa(dp43655 +g25267 +g27 +sg25268 +S'Bandbox Design (Grouse)' +p43656 +sg25270 +S'Harold Merriam' +p43657 +sa(dp43658 +g25267 +g27 +sg25268 +S'Theatrical Painting' +p43659 +sg25270 +S'Gilbert Sackerman' +p43660 +sa(dp43661 +g25273 +S'(artist after)' +p43662 +sg25267 +g27 +sg25275 +S'\n' +p43663 +sg25268 +S'Les Nymphes decouvrent a Diane la grossesse de Calisto' +p43664 +sg25270 +S'Artist Information (' +p43665 +sa(dp43666 +g25267 +g27 +sg25268 +S'Footstool' +p43667 +sg25270 +S'American 20th Century' +p43668 +sa(dp43669 +g25267 +g27 +sg25268 +S'Chalkware Ornament' +p43670 +sg25270 +S'Beatrice DeKalb' +p43671 +sa(dp43672 +g25267 +g27 +sg25268 +S'Chalkware Bird' +p43673 +sg25270 +S'J. Herman McCollum' +p43674 +sa(dp43675 +g25267 +g27 +sg25268 +S'Chalkware Rooster' +p43676 +sg25270 +S'Mina Lowry' +p43677 +sa(dp43678 +g25267 +g27 +sg25268 +S'Chalkware Pigeon Figurine' +p43679 +sg25270 +S'Mina Lowry' +p43680 +sa(dp43681 +g25267 +g27 +sg25268 +S'Parrot' +p43682 +sg25270 +S'Mina Lowry' +p43683 +sa(dp43684 +g25267 +g27 +sg25268 +S'Bank (Dove)' +p43685 +sg25270 +S'Elisabeth Fulda' +p43686 +sa(dp43687 +g25267 +g27 +sg25268 +S'Pottery Pig' +p43688 +sg25270 +S'John Winters' +p43689 +sa(dp43690 +g25267 +g27 +sg25268 +S'Stag Statuette' +p43691 +sg25270 +S'Charles Caseau' +p43692 +sa(dp43693 +g25267 +g27 +sg25268 +S'Statuette of a Dog' +p43694 +sg25270 +S'Frank Fumagalli' +p43695 +sa(dp43696 +g25273 +S'pen and black ink and brush and brown ink with brown and blue wash' +p43697 +sg25267 +g27 +sg25275 +S'1766' +p43698 +sg25268 +S'Arcas pret a tuer sa Mere Calisto' +p43699 +sg25270 +S'Charles Monnet' +p43700 +sa(dp43701 +g25267 +g27 +sg25268 +S'Statuette of a Dog' +p43702 +sg25270 +S'Frank Fumagalli' +p43703 +sa(dp43704 +g25267 +g27 +sg25268 +S'Statuette of a Dog' +p43705 +sg25270 +S'Yolande Delasser' +p43706 +sa(dp43707 +g25267 +g27 +sg25268 +S'Lion' +p43708 +sg25270 +S'John Matulis' +p43709 +sa(dp43710 +g25267 +g27 +sg25268 +S'Dog (Mantel Ornament)' +p43711 +sg25270 +S'Z.S. Lupus' +p43712 +sa(dp43713 +g25267 +g27 +sg25268 +S'Ceramic Coach Dog' +p43714 +sg25270 +S'George Yanosko' +p43715 +sa(dp43716 +g25267 +g27 +sg25268 +S'Lion and Ball Figurine' +p43717 +sg25270 +S'Ella Josephine Sterling' +p43718 +sa(dp43719 +g25267 +g27 +sg25268 +S'Squirrel Statuette' +p43720 +sg25270 +S'Yolande Delasser' +p43721 +sa(dp43722 +g25267 +S'Both earthenware and porcelain were produced at the Bennington potteries. Their output included functional items and a great variety of decorative wares. Among the most popular of the elaborately modeled forms is the so-called "Bennington poodle," \n a standing poodle with a basket of fruit in its mouth. These poodles were usually made in pairs as mantel ornaments; here we see just one of a pair. A variety of glazes was used on these figures; this poodle has been given a Rockingham glaze whose \n fluidity emphasizes the sleekness of the body. In contrast to the smooth surface, the mane is shaggy. The potter achieved this effect, popularly called "cole-slaw decoration," by pushing moist clay through a fine screen. Decorative animal forms were \n produced by most American potteries during the nineteenth century, but Bennington animals, in particular, display careful modeling, uniform and brilliant glazes, and interesting touches of inventiveness and whimsy.\n ' +p43723 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003ef.jpg' +p43724 +sg25268 +S'Ceramic Dog' +p43725 +sg25270 +S'Marion Curtiss' +p43726 +sa(dp43727 +g25267 +g27 +sg25268 +S'Spaniel (Paper Weight)' +p43728 +sg25270 +S'Cleo Lovett' +p43729 +sa(dp43730 +g25267 +g27 +sg25268 +S'Monkey Statuette' +p43731 +sg25270 +S'Frank Fumagalli' +p43732 +sa(dp43733 +g25273 +S'(artist after)' +p43734 +sg25267 +g27 +sg25275 +S'\n' +p43735 +sg25268 +S'Arcas pret a tuer sa Mere Calisto ...' +p43736 +sg25270 +S'Artist Information (' +p43737 +sa(dp43738 +g25267 +g27 +sg25268 +S'Dog Statuette' +p43739 +sg25270 +S'Frank Fumagalli' +p43740 +sa(dp43741 +g25267 +g27 +sg25268 +S'Ornamental Iron Griffon' +p43742 +sg25270 +S'Harriette Gale' +p43743 +sa(dp43744 +g25267 +g27 +sg25268 +S'Garden Ornament (Greyhound)' +p43745 +sg25270 +S'George Constantine' +p43746 +sa(dp43747 +g25267 +g27 +sg25268 +S'Garden Figure (Rabbit)' +p43748 +sg25270 +S'Maurice Van Felix' +p43749 +sa(dp43750 +g25267 +g27 +sg25268 +S'Cast Iron Dog' +p43751 +sg25270 +S'Samuel Fineman' +p43752 +sa(dp43753 +g25267 +g27 +sg25268 +S'Muzzle of a Lion (one of pair)' +p43754 +sg25270 +S'Maurice Van Felix' +p43755 +sa(dp43756 +g25267 +g27 +sg25268 +S'Cast Iron Frog' +p43757 +sg25270 +S'Ralph Morton' +p43758 +sa(dp43759 +g25267 +g27 +sg25268 +S'Paperweight (Deer)' +p43760 +sg25270 +S'Edward W. Buechner' +p43761 +sa(dp43762 +g25267 +g27 +sg25268 +S'Greyhound' +p43763 +sg25270 +S'John B. Moll' +p43764 +sa(dp43765 +g25267 +g27 +sg25268 +S'Rabbit' +p43766 +sg25270 +S'Rex F. Bush' +p43767 +sa(dp43768 +g25268 +S'The Game of the Cooking Pot' +p43769 +sg25270 +S'Pietro Longhi' +p43770 +sg25273 +S'oil on canvas' +p43771 +sg25275 +S'c. 1744' +p43772 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000615.jpg' +p43773 +sg25267 +g27 +sa(dp43774 +g25273 +S'(artist after)' +p43775 +sg25267 +g27 +sg25275 +S'\n' +p43776 +sg25268 +S'Arcas pret a tuer sa Mere Calisto ...' +p43777 +sg25270 +S'Artist Information (' +p43778 +sa(dp43779 +g25267 +g27 +sg25268 +S'Cast Iron Dog' +p43780 +sg25270 +S'Francis Law Durand' +p43781 +sa(dp43782 +g25267 +g27 +sg25268 +S'Cast Lead Dog' +p43783 +sg25270 +S'Herman Bader' +p43784 +sa(dp43785 +g25267 +g27 +sg25268 +S'Chalkware Rabbit' +p43786 +sg25270 +S'Stanley Mazur' +p43787 +sa(dp43788 +g25267 +g27 +sg25268 +S'Chalkware Rabbit' +p43789 +sg25270 +S'Betty Fuerst' +p43790 +sa(dp43791 +g25267 +g27 +sg25268 +S'Chalkware Rabbit' +p43792 +sg25270 +S'Laura Bilodeau' +p43793 +sa(dp43794 +g25267 +g27 +sg25268 +S'Squirrel' +p43795 +sg25270 +S'Mina Lowry' +p43796 +sa(dp43797 +g25267 +g27 +sg25268 +S'Goat' +p43798 +sg25270 +S'Mina Lowry' +p43799 +sa(dp43800 +g25267 +g27 +sg25268 +S'Goat' +p43801 +sg25270 +S'Mina Lowry' +p43802 +sa(dp43803 +g25267 +g27 +sg25268 +S'Goat' +p43804 +sg25270 +S'John W. Kelleher' +p43805 +sa(dp43806 +g25267 +g27 +sg25268 +S'Chalkware Deer' +p43807 +sg25270 +S'Milton Bevier' +p43808 +sa(dp43809 +g25273 +S', published 1767/1771' +p43810 +sg25267 +g27 +sg25275 +S'\n' +p43811 +sg25268 +S'Coronis poursuivie par Neptune, et Metamorphosee en Corneille par Minerve' +p43812 +sg25270 +S'Jean-Michel Moreau the Younger' +p43813 +sa(dp43814 +g25267 +g27 +sg25268 +S'Deer Figurine' +p43815 +sg25270 +S'Mina Lowry' +p43816 +sa(dp43817 +g25267 +g27 +sg25268 +S'Deer Figurine' +p43818 +sg25270 +S'Mina Lowry' +p43819 +sa(dp43820 +g25267 +g27 +sg25268 +S'Chalkware Deer' +p43821 +sg25270 +S'H. Langden Brown' +p43822 +sa(dp43823 +g25267 +g27 +sg25268 +S'Horse Statue' +p43824 +sg25270 +S'Alf Bruseth' +p43825 +sa(dp43826 +g25267 +g27 +sg25268 +S'Toy Cow on Stand' +p43827 +sg25270 +S'James McLellan' +p43828 +sa(dp43829 +g25267 +g27 +sg25268 +S'Prince Charles Spaniel' +p43830 +sg25270 +S'Mina Lowry' +p43831 +sa(dp43832 +g25267 +g27 +sg25268 +S'Chalkware Dog' +p43833 +sg25270 +S'Sadie Berman' +p43834 +sa(dp43835 +g25267 +g27 +sg25268 +S'Chalkware Dog' +p43836 +sg25270 +S'Sadie Berman' +p43837 +sa(dp43838 +g25267 +g27 +sg25268 +S'Chalkware Dog' +p43839 +sg25270 +S'Sadie Berman' +p43840 +sa(dp43841 +g25267 +g27 +sg25268 +S'Chalkware Dog' +p43842 +sg25270 +S'Zabelle Missirian' +p43843 +sa(dp43844 +g25273 +S', 1766' +p43845 +sg25267 +g27 +sg25275 +S'\n' +p43846 +sg25268 +S'Coronis poursuivie par Neptune, et Metamorphosee en Corneille par Minerve' +p43847 +sg25270 +S'Jean-Michel Moreau the Younger' +p43848 +sa(dp43849 +g25267 +g27 +sg25268 +S'Chalkware Greyhound' +p43850 +sg25270 +S'Gertrude Koch' +p43851 +sa(dp43852 +g25267 +g27 +sg25268 +S'Chalkware Cat' +p43853 +sg25270 +S'Gertrude Koch' +p43854 +sa(dp43855 +g25267 +g27 +sg25268 +S'Chalkware Cat' +p43856 +sg25270 +S'Betty Fuerst' +p43857 +sa(dp43858 +g25267 +g27 +sg25268 +S'Cat Saving Bank' +p43859 +sg25270 +S'Mina Lowry' +p43860 +sa(dp43861 +g25267 +g27 +sg25268 +S'Prince Charles Spaniel' +p43862 +sg25270 +S'Mina Lowry' +p43863 +sa(dp43864 +g25267 +g27 +sg25268 +S'Bandbox Design - Squirrels' +p43865 +sg25270 +S'Isabella Ruth Doerfler' +p43866 +sa(dp43867 +g25267 +g27 +sg25268 +S'Bandbox Design' +p43868 +sg25270 +S'Walter Doran' +p43869 +sa(dp43870 +g25267 +g27 +sg25268 +S'Bandbox Design - Hunting Scene' +p43871 +sg25270 +S'Harold Merriam' +p43872 +sa(dp43873 +g25267 +g27 +sg25268 +S'Bandbox Design' +p43874 +sg25270 +S'Lawrence Flynn' +p43875 +sa(dp43876 +g25267 +g27 +sg25268 +S'Ballot Box' +p43877 +sg25270 +S'Rose Campbell-Gerke' +p43878 +sa(dp43879 +g25273 +S'(artist after)' +p43880 +sg25267 +g27 +sg25275 +S'\n' +p43881 +sg25268 +S'Coronis poursuivie par Neptune, et M\xc3\xa9tamorphos\xc3\xa9e en Corneille par Minerve' +p43882 +sg25270 +S'Artist Information (' +p43883 +sa(dp43884 +g25267 +g27 +sg25268 +S'Cannon-shaped Ballot Box' +p43885 +sg25270 +S'Joseph Ficcadenti' +p43886 +sa(dp43887 +g25267 +g27 +sg25268 +S'Ballot Box' +p43888 +sg25270 +S'Robert T. Gills' +p43889 +sa(dp43890 +g25267 +g27 +sg25268 +S'Post Axe' +p43891 +sg25270 +S'James M. Lawson' +p43892 +sa(dp43893 +g25267 +g27 +sg25268 +S'Hacking Axe' +p43894 +sg25270 +S'Fred Hassebrock' +p43895 +sa(dp43896 +g25267 +g27 +sg25268 +S'Post Axe' +p43897 +sg25270 +S'William H. Edwards' +p43898 +sa(dp43899 +g25267 +g27 +sg25268 +S'Axe' +p43900 +sg25270 +S'Hal Blakeley' +p43901 +sa(dp43902 +g25267 +g27 +sg25268 +S"Ship Builder's Axe Head" +p43903 +sg25270 +S'Harvey Beck' +p43904 +sa(dp43905 +g25267 +g27 +sg25268 +S'Pioneeer Broad Axe' +p43906 +sg25270 +S'Glenn Wilson' +p43907 +sa(dp43908 +g25267 +g27 +sg25268 +S'Post Hole Axe' +p43909 +sg25270 +S'George C. Brown' +p43910 +sa(dp43911 +g25267 +g27 +sg25268 +S'Broad Axe' +p43912 +sg25270 +S'Archie Thompson' +p43913 +sa(dp43914 +g25273 +S', 1766' +p43915 +sg25267 +g27 +sg25275 +S'\n' +p43916 +sg25268 +S'Nyctimene metamorphosee en Hibou ...' +p43917 +sg25270 +S'Jean-Michel Moreau the Younger' +p43918 +sa(dp43919 +g25267 +g27 +sg25268 +S'Broad Axe' +p43920 +sg25270 +S'Roberta Elvis' +p43921 +sa(dp43922 +g25267 +g27 +sg25268 +S'Bishop Hill: Old Colony Auger' +p43923 +sg25270 +S'H. Langden Brown' +p43924 +sa(dp43925 +g25267 +g27 +sg25268 +S'Handmade Auger' +p43926 +sg25270 +S'William Frank' +p43927 +sa(dp43928 +g25267 +g27 +sg25268 +S'Auger' +p43929 +sg25270 +S'Herman O. Stroh' +p43930 +sa(dp43931 +g25267 +g27 +sg25268 +S'Auger' +p43932 +sg25270 +S'Alfonso Moreno' +p43933 +sa(dp43934 +g25267 +g27 +sg25268 +S"Ship Builder's Auger" +p43935 +sg25270 +S'Erwin Stenzel' +p43936 +sa(dp43937 +g25267 +g27 +sg25268 +S'Asparagus Buncher' +p43938 +sg25270 +S'Charles Garjian' +p43939 +sa(dp43940 +g25267 +g27 +sg25268 +S'Army Kit' +p43941 +sg25270 +S'Carl Buergerniss' +p43942 +sa(dp43943 +g25267 +g27 +sg25268 +S'Apple Peeler' +p43944 +sg25270 +S'Artist Information (' +p43945 +sa(dp43946 +g25267 +g27 +sg25268 +S'Apple Peeler' +p43947 +sg25270 +S'Samuel W. Ford' +p43948 +sa(dp43949 +g25273 +S'(artist after)' +p43950 +sg25267 +g27 +sg25275 +S'\n' +p43951 +sg25268 +S'Nyctim\xc3\xa8ne m\xc3\xa9tamorphos\xc3\xa9e en Hibou, pour punition de sa flamme criminelle avec son P\xc3\xa8re Nyct\xc3\xa9e' +p43952 +sg25270 +S'Artist Information (' +p43953 +sa(dp43954 +g25267 +g27 +sg25268 +S'Apple Parer' +p43955 +sg25270 +S'Regina Henderer' +p43956 +sa(dp43957 +g25267 +g27 +sg25268 +S"Lion's Head (one of pair)" +p43958 +sg25270 +S'Edward DiGennero' +p43959 +sa(dp43960 +g25267 +g27 +sg25268 +S"Lion's Head (one of pair)" +p43961 +sg25270 +S'Edward DiGennero' +p43962 +sa(dp43963 +g25267 +g27 +sg25268 +S'Bandbox' +p43964 +sg25270 +S'American 20th Century' +p43965 +sa(dp43966 +g25267 +g27 +sg25268 +S'Bandbox' +p43967 +sg25270 +S'Stewart Wheeler' +p43968 +sa(dp43969 +g25267 +g27 +sg25268 +S'Bandbox' +p43970 +sg25270 +S'Dorothy Dwin' +p43971 +sa(dp43972 +g25267 +g27 +sg25268 +S"Man's Hat Box" +p43973 +sg25270 +S'Max Soltmann' +p43974 +sa(dp43975 +g25267 +g27 +sg25268 +S'Bandbox' +p43976 +sg25270 +S'Paul Ward' +p43977 +sa(dp43978 +g25267 +g27 +sg25268 +S'Bandbox' +p43979 +sg25270 +S'Joseph Rothenberg' +p43980 +sa(dp43981 +g25267 +g27 +sg25268 +S'Bandbox' +p43982 +sg25270 +S'Holger Hansen' +p43983 +sa(dp43984 +g25273 +S'graphite' +p43985 +sg25267 +g27 +sg25275 +S'1766' +p43986 +sg25268 +S'Ocyroe Fille du Centaure Chiron announce a son Pere les destines du jeune Esculape' +p43987 +sg25270 +S'Charles Eisen' +p43988 +sa(dp43989 +g25267 +g27 +sg25268 +S'Bandbox' +p43990 +sg25270 +S'Charles Caseau' +p43991 +sa(dp43992 +g25267 +g27 +sg25268 +S'Bandbox' +p43993 +sg25270 +S'Walter Doran' +p43994 +sa(dp43995 +g25267 +g27 +sg25268 +S'Bandbox' +p43996 +sg25270 +S'Gilbert Sackerman' +p43997 +sa(dp43998 +g25267 +g27 +sg25268 +S'Bandbox' +p43999 +sg25270 +S'Lazar Rubinstein' +p44000 +sa(dp44001 +g25267 +g27 +sg25268 +S'Bandbox Sections' +p44002 +sg25270 +S'Lazar Rubinstein' +p44003 +sa(dp44004 +g25267 +g27 +sg25268 +S'Bonnet Box' +p44005 +sg25270 +S'Stewart Wheeler' +p44006 +sa(dp44007 +g25267 +g27 +sg25268 +S'Bandbox' +p44008 +sg25270 +S'Gilbert Sackerman' +p44009 +sa(dp44010 +g25267 +g27 +sg25268 +S'Bandbox - Castle Garden' +p44011 +sg25270 +S'Harold Merriam' +p44012 +sa(dp44013 +g25267 +g27 +sg25268 +S'Bandbox Cover' +p44014 +sg25270 +S'Stewart Wheeler' +p44015 +sa(dp44016 +g25267 +g27 +sg25268 +S'Wallpaper from Bandbox' +p44017 +sg25270 +S'Charlotte Angus' +p44018 +sa(dp44019 +g25273 +S'(artist after)' +p44020 +sg25267 +g27 +sg25275 +S'\n' +p44021 +sg25268 +S'Ocyroe Fille du Centaure Chiron announce a son Pere les destinees du jeune Esculape' +p44022 +sg25270 +S'Artist Information (' +p44023 +sa(dp44024 +g25267 +g27 +sg25268 +S'Bandbox Design (Deaf and Dumb Asylum)' +p44025 +sg25270 +S'Martin Partyka' +p44026 +sa(dp44027 +g25267 +g27 +sg25268 +S'Wallpaper for Bandbox Covering' +p44028 +sg25270 +S'Albert Levone' +p44029 +sa(dp44030 +g25267 +g27 +sg25268 +S'Bandbox' +p44031 +sg25270 +S'David Dorfman' +p44032 +sa(dp44033 +g25267 +g27 +sg25268 +S'Bandbox Design' +p44034 +sg25270 +S'Harold Merriam' +p44035 +sa(dp44036 +g25267 +g27 +sg25268 +S'Bandbox (section)' +p44037 +sg25270 +S'David Dorfman' +p44038 +sa(dp44039 +g25267 +g27 +sg25268 +S'Wallpaper Used as Bandbox Covering' +p44040 +sg25270 +S'Albert Levone' +p44041 +sa(dp44042 +g25267 +g27 +sg25268 +S'Bandbox Design' +p44043 +sg25270 +S'Gilbert Sackerman' +p44044 +sa(dp44045 +g25267 +g27 +sg25268 +S'Bandbox Design' +p44046 +sg25270 +S'Alfonso Umana' +p44047 +sa(dp44048 +g25267 +g27 +sg25268 +S'Bandbox Design' +p44049 +sg25270 +S'American 20th Century' +p44050 +sa(dp44051 +g25267 +g27 +sg25268 +S'Bandbox Design' +p44052 +sg25270 +S'Martin Partyka' +p44053 +sa(dp44054 +g25273 +S'pen and black ink and brush and brown ink with brown ink over graphite' +p44055 +sg25267 +g27 +sg25275 +S'published 1767/1771' +p44056 +sg25268 +S'Mercure Metamorphose en Pierre de Touche le Berger Battus' +p44057 +sg25270 +S'Charles Monnet' +p44058 +sa(dp44059 +g25267 +g27 +sg25268 +S'Wallpaper from Bandbox Cover' +p44060 +sg25270 +S'Charlotte Angus' +p44061 +sa(dp44062 +g25267 +g27 +sg25268 +S'Wallpaper from Bandbox Covering' +p44063 +sg25270 +S'Harold Merriam' +p44064 +sa(dp44065 +g25267 +g27 +sg25268 +S'Bandbox Design (Eagle and Rabbit)' +p44066 +sg25270 +S'Martin Partyka' +p44067 +sa(dp44068 +g25267 +g27 +sg25268 +S'Bandbox Design' +p44069 +sg25270 +S'Harold Merriam' +p44070 +sa(dp44071 +g25267 +g27 +sg25268 +S'Bandbox Design' +p44072 +sg25270 +S'Martin Partyka' +p44073 +sa(dp44074 +g25267 +g27 +sg25268 +S'Bandbox' +p44075 +sg25270 +S'Harold Merriam' +p44076 +sa(dp44077 +g25267 +g27 +sg25268 +S'Bandbox Design' +p44078 +sg25270 +S'Alfred Koehn' +p44079 +sa(dp44080 +g25267 +g27 +sg25268 +S'Bandbox Design - Stagecoach' +p44081 +sg25270 +S'Eleanor Ruelos' +p44082 +sa(dp44083 +g25267 +g27 +sg25268 +S'Bandbox' +p44084 +sg25270 +S'Joseph Rothenberg' +p44085 +sa(dp44086 +g25267 +g27 +sg25268 +S'Bandbox' +p44087 +sg25270 +S'Arsen Maralian' +p44088 +sa(dp44089 +g25273 +S'(artist after)' +p44090 +sg25267 +g27 +sg25275 +S'\n' +p44091 +sg25268 +S'Mercure Metamorphose en Pierre de Touche le Berger Battus' +p44092 +sg25270 +S'Artist Information (' +p44093 +sa(dp44094 +g25267 +g27 +sg25268 +S'Bandbox' +p44095 +sg25270 +S'Gilbert Sackerman' +p44096 +sa(dp44097 +g25267 +g27 +sg25268 +S'Bandbox' +p44098 +sg25270 +S'Gilbert Sackerman' +p44099 +sa(dp44100 +g25267 +g27 +sg25268 +S'Bandbox' +p44101 +sg25270 +S'Gilbert Sackerman' +p44102 +sa(dp44103 +g25267 +g27 +sg25268 +S'Bandbox' +p44104 +sg25270 +S'Joseph Rothenberg' +p44105 +sa(dp44106 +g25267 +g27 +sg25268 +S'Bandbox' +p44107 +sg25270 +S'Gilbert Sackerman' +p44108 +sa(dp44109 +g25267 +g27 +sg25268 +S'Bandbox' +p44110 +sg25270 +S'John Swientochowski' +p44111 +sa(dp44112 +g25267 +g27 +sg25268 +S'Bandbox' +p44113 +sg25270 +S'Arsen Maralian' +p44114 +sa(dp44115 +g25267 +g27 +sg25268 +S'Bandbox' +p44116 +sg25270 +S'Walter Doran' +p44117 +sa(dp44118 +g25267 +g27 +sg25268 +S'Bandbox' +p44119 +sg25270 +S'Carl Buergerniss' +p44120 +sa(dp44121 +g25267 +g27 +sg25268 +S'Bandbox' +p44122 +sg25270 +S'Alfonso Umana' +p44123 +sa(dp44124 +g25273 +S'graphite' +p44125 +sg25267 +g27 +sg25275 +S'1766' +p44126 +sg25268 +S"Apollon gardant les Troupeaux d'Admet dans les Campagnes de Messene" +p44127 +sg25270 +S'Charles Eisen' +p44128 +sa(dp44129 +g25267 +g27 +sg25268 +S'Bandbox' +p44130 +sg25270 +S'Joseph Rothenberg' +p44131 +sa(dp44132 +g25267 +g27 +sg25268 +S'Bandbox' +p44133 +sg25270 +S'American 20th Century' +p44134 +sa(dp44135 +g25267 +g27 +sg25268 +S'Bandbox' +p44136 +sg25270 +S'Joseph Rothenberg' +p44137 +sa(dp44138 +g25267 +g27 +sg25268 +S'Bandbox' +p44139 +sg25270 +S'Walter Doran' +p44140 +sa(dp44141 +g25267 +g27 +sg25268 +S'Bandbox' +p44142 +sg25270 +S'Gilbert Sackerman' +p44143 +sa(dp44144 +g25267 +g27 +sg25268 +S'Bandbox' +p44145 +sg25270 +S'Gilbert Sackerman' +p44146 +sa(dp44147 +g25267 +g27 +sg25268 +S'Hat Box' +p44148 +sg25270 +S'Joseph Rothenberg' +p44149 +sa(dp44150 +g25267 +g27 +sg25268 +S'Hat Box' +p44151 +sg25270 +S'Walter Praefke' +p44152 +sa(dp44153 +g25267 +g27 +sg25268 +S'Bandbox' +p44154 +sg25270 +S'Samuel O. Klein' +p44155 +sa(dp44156 +g25267 +g27 +sg25268 +S'Toilette Box' +p44157 +sg25270 +S'John Cutting' +p44158 +sa(dp44159 +g25273 +S'Widener Collection' +p44160 +sg25267 +g27 +sg25275 +S'\nbound volume with 15 drawings and 22 prints by various artists for the 1767-1771 ed. of "Les Metamorphoses d\'Ovide"' +p44161 +sg25268 +S'Album of Preliminary Drawings and Prints for "Les Metamorphoses d\'Ovide" (volume 3)' +p44162 +sg25270 +S'Various Artists' +p44163 +sa(dp44164 +g25267 +g27 +sg25268 +S'Bonnet Box' +p44165 +sg25270 +S'Stewart Wheeler' +p44166 +sa(dp44167 +g25267 +g27 +sg25268 +S'Bandbox or Hat Box' +p44168 +sg25270 +S'Jessie M. Youngs' +p44169 +sa(dp44170 +g25267 +g27 +sg25268 +S'Hat Box' +p44171 +sg25270 +S'Charles Moss' +p44172 +sa(dp44173 +g25267 +g27 +sg25268 +S'Small Hat Box' +p44174 +sg25270 +S'Charles Moss' +p44175 +sa(dp44176 +g25267 +g27 +sg25268 +S'Bandbox' +p44177 +sg25270 +S'Joseph Rothenberg' +p44178 +sa(dp44179 +g25267 +g27 +sg25268 +S'Bandbox' +p44180 +sg25270 +S'Gilbert Sackerman' +p44181 +sa(dp44182 +g25267 +g27 +sg25268 +S'Bandbox' +p44183 +sg25270 +S'Nicholas Acampora' +p44184 +sa(dp44185 +g25267 +g27 +sg25268 +S'Bandbox' +p44186 +sg25270 +S'Alfonso Umana' +p44187 +sa(dp44188 +g25267 +g27 +sg25268 +S'Bandbox' +p44189 +sg25270 +S'John Tarantino' +p44190 +sa(dp44191 +g25267 +g27 +sg25268 +S'Bandbox' +p44192 +sg25270 +S'Joseph Rothenberg' +p44193 +sa(dp44194 +g25273 +S'(artist after)' +p44195 +sg25267 +g27 +sg25275 +S'\n' +p44196 +sg25268 +S"Apollon gardant les Troupeaux d'Admet dans les Campagnes de Messene" +p44197 +sg25270 +S'Artist Information (' +p44198 +sa(dp44199 +g25267 +g27 +sg25268 +S'Bandbox' +p44200 +sg25270 +S'John Tarantino' +p44201 +sa(dp44202 +g25267 +g27 +sg25268 +S'Bandbox' +p44203 +sg25270 +S'Mina Lowry' +p44204 +sa(dp44205 +g25267 +g27 +sg25268 +S'Bandbox (detail)' +p44206 +sg25270 +S'Holger Hansen' +p44207 +sa(dp44208 +g25267 +g27 +sg25268 +S'Bandbox' +p44209 +sg25270 +S'Joseph Rothenberg' +p44210 +sa(dp44211 +g25267 +g27 +sg25268 +S'Bandbox' +p44212 +sg25270 +S'Dorothy Dwin' +p44213 +sa(dp44214 +g25267 +g27 +sg25268 +S'Bandbox' +p44215 +sg25270 +S'Walter Doran' +p44216 +sa(dp44217 +g25267 +g27 +sg25268 +S'Bandbox Design' +p44218 +sg25270 +S'Walter Doran' +p44219 +sa(dp44220 +g25267 +g27 +sg25268 +S'Bandbox Design' +p44221 +sg25270 +S'Isabella Ruth Doerfler' +p44222 +sa(dp44223 +g25267 +g27 +sg25268 +S'Bandbox' +p44224 +sg25270 +S'Gilbert Sackerman' +p44225 +sa(dp44226 +g25267 +g27 +sg25268 +S'Bandbox' +p44227 +sg25270 +S'Marie Lutrell' +p44228 +sa(dp44229 +g25273 +S'graphite' +p44230 +sg25267 +g27 +sg25275 +S'1766' +p44231 +sg25268 +S"Mercure arrette sur la Ville d'Athenes devient amoureux d'Herse" +p44232 +sg25270 +S'Charles Eisen' +p44233 +sa(dp44234 +g25267 +g27 +sg25268 +S'Bandbox' +p44235 +sg25270 +S'Stewart Wheeler' +p44236 +sa(dp44237 +g25267 +g27 +sg25268 +S'Bandbox' +p44238 +sg25270 +S'Walter Doran' +p44239 +sa(dp44240 +g25267 +g27 +sg25268 +S'Horse on Barrel Bank' +p44241 +sg25270 +S'William O. Fletcher' +p44242 +sa(dp44243 +g25267 +g27 +sg25268 +S'Rearing Horse Bank' +p44244 +sg25270 +S'Alf Bruseth' +p44245 +sa(dp44246 +g25267 +g27 +sg25268 +S'Cat and Ball Coin Bank' +p44247 +sg25270 +S'William O. Fletcher' +p44248 +sa(dp44249 +g25267 +g27 +sg25268 +S'Prize Pig Coin Bank' +p44250 +sg25270 +S'Alf Bruseth' +p44251 +sa(dp44252 +g25267 +g27 +sg25268 +S'Bank Camel' +p44253 +sg25270 +S'William O. Fletcher' +p44254 +sa(dp44255 +g25267 +g27 +sg25268 +S'Toy Bank: Elephant' +p44256 +sg25270 +S'William O. Fletcher' +p44257 +sa(dp44258 +g25267 +g27 +sg25268 +S'Penny Bank: Pig' +p44259 +sg25270 +S'Charles Henning' +p44260 +sa(dp44261 +g25267 +g27 +sg25268 +S'Penny Bank (Elephant)' +p44262 +sg25270 +S'Ben Lassen' +p44263 +sa(dp44264 +g25273 +S'(artist after)' +p44265 +sg25267 +g27 +sg25275 +S'\n' +p44266 +sg25268 +S"Mercure arrette sur la ville d'Athenes devient amoureux d'Herse" +p44267 +sg25270 +S'Artist Information (' +p44268 +sa(dp44269 +g25267 +g27 +sg25268 +S"Child's Saving Bank (Deer)" +p44270 +sg25270 +S'Carl Buergerniss' +p44271 +sa(dp44272 +g25267 +g27 +sg25268 +S'Toy bank: Pig' +p44273 +sg25270 +S'Walter Hochstrasser' +p44274 +sa(dp44275 +g25267 +g27 +sg25268 +S'Bank: Elephant' +p44276 +sg25270 +S'Charles Moss' +p44277 +sa(dp44278 +g25267 +g27 +sg25268 +S'Toy Bank: Horse' +p44279 +sg25270 +S'Chris Makrenos' +p44280 +sa(dp44281 +g25267 +g27 +sg25268 +S'Iron Bank Elephant' +p44282 +sg25270 +S'Z.S. Lupus' +p44283 +sa(dp44284 +g25267 +g27 +sg25268 +S'Toy Bank: Elephant' +p44285 +sg25270 +S'Walter Hochstrasser' +p44286 +sa(dp44287 +g25267 +g27 +sg25268 +S'Monkey Bank' +p44288 +sg25270 +S'Ernest A. Towers, Jr.' +p44289 +sa(dp44290 +g25267 +g27 +sg25268 +S'"I Hear a Call" Bank' +p44291 +sg25270 +S'William O. Fletcher' +p44292 +sa(dp44293 +g25267 +g27 +sg25268 +S"Horse's Head Bank" +p44294 +sg25270 +S'Alf Bruseth' +p44295 +sa(dp44296 +g25267 +g27 +sg25268 +S'Toy Bank: Elephant' +p44297 +sg25270 +S'Frank Gray' +p44298 +sa(dp44299 +g25273 +S'pen and black ink and brush and black ink with gray wash and white heightening' +p44300 +sg25267 +g27 +sg25275 +S'1766' +p44301 +sg25268 +S"Pallas commande a l'Envie de rendre Aglaure jalouse de sa soeur Herse" +p44302 +sg25270 +S'Jean-Baptiste Le Prince' +p44303 +sa(dp44304 +g25267 +g27 +sg25268 +S'Toy Bank: Trick pony' +p44305 +sg25270 +S'Florian Rokita' +p44306 +sa(dp44307 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00051/a00051d5.jpg' +p44308 +sg25268 +S'Toy Bank: Speaking Dog' +p44309 +sg25270 +S'Edward L. Loper' +p44310 +sa(dp44311 +g25267 +g27 +sg25268 +S'Toy Bank: "Jonah and the Whale"' +p44312 +sg25270 +S'Rose Campbell-Gerke' +p44313 +sa(dp44314 +g25267 +S'Perhaps the most avidly collected toys of all are mechanical banks. Simple cast\n iron banks with no animation were first manufactured just after the Civil War. With\n the development of spring mechanisms, many intricate and ingenious models appeared.\n Mechanical banks flourished between about 1870 and 1910. In this example, dated\n 1906, a coin is placed in the gun; when the lever is pressed, the coin is shot into\n a slot in the tree trunk and the bear\'s head springs up. The toy is derived from\n a famous event: Theodore Roosevelt, on a hunting expedition in Mississippi, refused\n to shoot a bear cub. The cartoonist Clifford Berryman was present and immortalized\n the incident in the next day\'s newspaper; thus, the "Teddy bear" was born. This\n bank was made by the Steven Company Iron Foundry of Cromwell, Connecticut.\n ' +p44315 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002dd.jpg' +p44316 +sg25268 +S'Toy Bank: "Teddy and the Bear"' +p44317 +sg25270 +S'Pearl Torell' +p44318 +sa(dp44319 +g25267 +g27 +sg25268 +S'Toy Bank: "Paddy and the Pig"' +p44320 +sg25270 +S'Sarkis Erganian' +p44321 +sa(dp44322 +g25267 +g27 +sg25268 +S'Toy Bank: Chief Big Moon' +p44323 +sg25270 +S'George File' +p44324 +sa(dp44325 +g25267 +g27 +sg25268 +S'Toy Bank: Paddy and the Pig' +p44326 +sg25270 +S'Chris Makrenos' +p44327 +sa(dp44328 +g25267 +g27 +sg25268 +S'Toy: Speaking Dog Bank' +p44329 +sg25270 +S'Chris Makrenos' +p44330 +sa(dp44331 +g25267 +g27 +sg25268 +S'Speaking Dog Mechanical Bank' +p44332 +sg25270 +S'Einar Heiberg' +p44333 +sa(dp44334 +g25267 +g27 +sg25268 +S'Penny Bank' +p44335 +sg25270 +S'Grace Halpin' +p44336 +sa(dp44337 +g25273 +S'(artist after)' +p44338 +sg25267 +g27 +sg25275 +S'\n' +p44339 +sg25268 +S"Pallas commande a l'envie de rendre Aglaure jalouse de sa soeur Herse" +p44340 +sg25270 +S'Artist Information (' +p44341 +sa(dp44342 +g25267 +g27 +sg25268 +S'Toy Bank' +p44343 +sg25270 +S'James McKenzie' +p44344 +sa(dp44345 +g25267 +g27 +sg25268 +S'Toy Bank: Bear and Indian' +p44346 +sg25270 +S'Ethel Clarke' +p44347 +sa(dp44348 +g25267 +g27 +sg25268 +S'Toy Bank: Speaking Dog and Figure' +p44349 +sg25270 +S'American 20th Century' +p44350 +sa(dp44351 +g25267 +g27 +sg25268 +S'Toy Bank: Figure with Mule' +p44352 +sg25270 +S'Chris Makrenos' +p44353 +sa(dp44354 +g25267 +g27 +sg25268 +S'Toy Bank' +p44355 +sg25270 +S'Pearl Torell' +p44356 +sa(dp44357 +g25267 +g27 +sg25268 +S'Toy Bank' +p44358 +sg25270 +S'Nicholas Amantea' +p44359 +sa(dp44360 +g25267 +g27 +sg25268 +S'Toy Bank' +p44361 +sg25270 +S'Alf Bruseth' +p44362 +sa(dp44363 +g25267 +g27 +sg25268 +S'Toy Bank' +p44364 +sg25270 +S'William O. Fletcher' +p44365 +sa(dp44366 +g25267 +g27 +sg25268 +S'Toy Bank' +p44367 +sg25270 +S'Edward D. Williams' +p44368 +sa(dp44369 +g25267 +g27 +sg25268 +S'Toy Bank' +p44370 +sg25270 +S'Archie Thompson' +p44371 +sa(dp44372 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p44373 +sg25267 +g27 +sg25275 +S'published 1767/1771' +p44374 +sg25268 +S"Mercure entre dans l'apartement d'Herse ..." +p44375 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p44376 +sa(dp44377 +g25267 +g27 +sg25268 +S'Toy Bank' +p44378 +sg25270 +S'Bertha Semple' +p44379 +sa(dp44380 +g25267 +g27 +sg25268 +S'Toy Bank' +p44381 +sg25270 +S'Beverly Chichester' +p44382 +sa(dp44383 +g25267 +g27 +sg25268 +S'Cast Iron Mule Bank' +p44384 +sg25270 +S'Sarkis Erganian' +p44385 +sa(dp44386 +g25267 +g27 +sg25268 +S'Toy Bank: Donkey Cart' +p44387 +sg25270 +S'Charles Moss' +p44388 +sa(dp44389 +g25267 +g27 +sg25268 +S'Toy Bank: Building and Revolving Dog' +p44390 +sg25270 +S'William O. Fletcher' +p44391 +sa(dp44392 +g25267 +g27 +sg25268 +S'Toy Bank: Frog' +p44393 +sg25270 +S'Chris Makrenos' +p44394 +sa(dp44395 +g25267 +g27 +sg25268 +S'Toy Bank: Tabby Cat' +p44396 +sg25270 +S'George File' +p44397 +sa(dp44398 +g25267 +g27 +sg25268 +S'Toy Bank: Monkey and Lion' +p44399 +sg25270 +S'George File' +p44400 +sa(dp44401 +g25267 +g27 +sg25268 +S'Toy Bank: Donkey and Cart' +p44402 +sg25270 +S'Isidore Danziger' +p44403 +sa(dp44404 +g25267 +g27 +sg25268 +S'Toy Bank: Donkey and House' +p44405 +sg25270 +S'Jennie Kamar' +p44406 +sa(dp44407 +g25273 +S'(artist after)' +p44408 +sg25267 +g27 +sg25275 +S'\n' +p44409 +sg25268 +S"Mercure entre dans l'apartement d'Herse ..." +p44410 +sg25270 +S'Artist Information (' +p44411 +sa(dp44412 +g25267 +S"The mechanical bank had a special purpose as a child's toy: it made saving fun;\n thrift was turned into a game. The spring and lever action was well suited to a\n wide range of subjects. The bank shown here consists of a bullfrog sitting on a\n cylinder whose walls are pierced in a latticework design. The frog's right front\n foot rests on a spring; when the foot is pressed down, the frog's eyes roll and\n its lower jaw opens to receive coins. Foundries produced mechanical toy banks of\n cast iron by the millions between about 1870 and 1910. This piece was issued a patent\n on August 20, 1872.\n " +p44413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002de.jpg' +p44414 +sg25268 +S'Toy Bank: Frog' +p44415 +sg25270 +S'William O. Fletcher' +p44416 +sa(dp44417 +g25267 +g27 +sg25268 +S'Toy Bank: Mule and Manger' +p44418 +sg25270 +S'Chris Makrenos' +p44419 +sa(dp44420 +g25267 +g27 +sg25268 +S'Toy Bank: Frog' +p44421 +sg25270 +S'William O. Fletcher' +p44422 +sa(dp44423 +g25267 +g27 +sg25268 +S'Toy Bank: Monkey and Hurdy-Gurdy' +p44424 +sg25270 +S'Cushman Parker' +p44425 +sa(dp44426 +g25267 +g27 +sg25268 +S'Toy Bank: Bird Feeding its Young' +p44427 +sg25270 +S'American 20th Century' +p44428 +sa(dp44429 +g25267 +g27 +sg25268 +S'Toy Bank: Eagle' +p44430 +sg25270 +S'William High' +p44431 +sa(dp44432 +g25267 +g27 +sg25268 +S'Toy Bank: Bird' +p44433 +sg25270 +S'George File' +p44434 +sa(dp44435 +g25267 +g27 +sg25268 +S'Toy Bank: "I Always Did \'Spise a Mule"' +p44436 +sg25270 +S'Florian Rokita' +p44437 +sa(dp44438 +g25267 +g27 +sg25268 +S'Rooster Coin Bank' +p44439 +sg25270 +S'William O. Fletcher' +p44440 +sa(dp44441 +g25267 +g27 +sg25268 +S'Mechanical Bank' +p44442 +sg25270 +S'Robert Clark' +p44443 +sa(dp44444 +g25273 +S'(artist after)' +p44445 +sg25267 +g27 +sg25275 +S'\n' +p44446 +sg25268 +S'Jupiter Metamorphose en Taureau ...' +p44447 +sg25270 +S'Artist Information (' +p44448 +sa(dp44449 +g25267 +g27 +sg25268 +S'Iron Bank' +p44450 +sg25270 +S'LeRoy Griffith' +p44451 +sa(dp44452 +g25267 +g27 +sg25268 +S'Toy Bank: Eagle' +p44453 +sg25270 +S'Clarence W. Dawson' +p44454 +sa(dp44455 +g25267 +g27 +sg25268 +S'Owl on Log Bank' +p44456 +sg25270 +S'William O. Fletcher' +p44457 +sa(dp44458 +g25267 +g27 +sg25268 +S'Mechanical Penny Bank: Owl' +p44459 +sg25270 +S'E.J. Gilsleider' +p44460 +sa(dp44461 +g25267 +g27 +sg25268 +S'Cast Iron Toy Bank: Independence Hall' +p44462 +sg25270 +S'Dorothy Brennan' +p44463 +sa(dp44464 +g25267 +g27 +sg25268 +S'State Bank #2' +p44465 +sg25270 +S'Clementine Fossek' +p44466 +sa(dp44467 +g25267 +g27 +sg25268 +S'Tiled Roof House Bank' +p44468 +sg25270 +S'William O. Fletcher' +p44469 +sa(dp44470 +g25267 +g27 +sg25268 +S'Cathedral Coin Box' +p44471 +sg25270 +S'Alf Bruseth' +p44472 +sa(dp44473 +g25267 +g27 +sg25268 +S'Byzantine Dome Coin Bank' +p44474 +sg25270 +S'William O. Fletcher' +p44475 +sa(dp44476 +g25267 +g27 +sg25268 +S'Russian Church Coin Bank' +p44477 +sg25270 +S'Clementine Fossek' +p44478 +sa(dp44479 +g25268 +S'Sir John Reade, Bart.' +p44480 +sg25270 +S'Rosalba Carriera' +p44481 +sg25273 +S'pastel' +p44482 +sg25275 +S'1739' +p44483 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a00062da.jpg' +p44484 +sg25267 +g27 +sa(dp44485 +g25273 +S'pen and black ink and brush and brown ink with brown wash and white heightening' +p44486 +sg25267 +g27 +sg25275 +S'published 1767/1771' +p44487 +sg25268 +S"Agener ordonne a Cadmus d'aller chercher sa Soeur Europe, enlevee par Jupiter" +p44488 +sg25270 +S'Charles Monnet' +p44489 +sa(dp44490 +g25267 +g27 +sg25268 +S'Home Savings bank' +p44491 +sg25270 +S'William O. Fletcher' +p44492 +sa(dp44493 +g25267 +g27 +sg25268 +S'House Coin Bank' +p44494 +sg25270 +S'Alf Bruseth' +p44495 +sa(dp44496 +g25267 +g27 +sg25268 +S'Toy Bank: "Waste Not - Want Not"' +p44497 +sg25270 +S'William O. Fletcher' +p44498 +sa(dp44499 +g25267 +g27 +sg25268 +S'Toy Bank: "Bank Building"' +p44500 +sg25270 +S'Alf Bruseth' +p44501 +sa(dp44502 +g25267 +g27 +sg25268 +S'Iron "Bank" Bank' +p44503 +sg25270 +S'Clementine Fossek' +p44504 +sa(dp44505 +g25267 +g27 +sg25268 +S'Toy Bank Building' +p44506 +sg25270 +S'Alf Bruseth' +p44507 +sa(dp44508 +g25267 +g27 +sg25268 +S'Toy House' +p44509 +sg25270 +S'Nicholas Acampora' +p44510 +sa(dp44511 +g25267 +g27 +sg25268 +S'Penny Bank' +p44512 +sg25270 +S'Samuel O. Klein' +p44513 +sa(dp44514 +g25267 +g27 +sg25268 +S'Bank: Toy Building' +p44515 +sg25270 +S'Telli' +p44516 +sa(dp44517 +g25267 +g27 +sg25268 +S'Penny Bank' +p44518 +sg25270 +S'Herman Schulze' +p44519 +sa(dp44520 +g25273 +S'(artist after)' +p44521 +sg25267 +g27 +sg25275 +S'\n' +p44522 +sg25268 +S"Agener ordonne a Cadmus s'aller chercher sa soeur Europe, enlevee par Jupiter" +p44523 +sg25270 +S'Artist Information (' +p44524 +sa(dp44525 +g25267 +g27 +sg25268 +S'Penny Bank' +p44526 +sg25270 +S'Charles Charon' +p44527 +sa(dp44528 +g25267 +g27 +sg25268 +S'Painted Tin Toy Bank' +p44529 +sg25270 +S'John Hall' +p44530 +sa(dp44531 +g25267 +g27 +sg25268 +S'Red School House Bank' +p44532 +sg25270 +S'William O. Fletcher' +p44533 +sa(dp44534 +g25267 +g27 +sg25268 +S'Bank: Toy Building with Figure' +p44535 +sg25270 +S'Clementine Fossek' +p44536 +sa(dp44537 +g25267 +g27 +sg25268 +S'"City Bank" Toy Bank' +p44538 +sg25270 +S'William O. Fletcher' +p44539 +sa(dp44540 +g25267 +g27 +sg25268 +S'Toy Bank' +p44541 +sg25270 +S'Chris Makrenos' +p44542 +sa(dp44543 +g25267 +g27 +sg25268 +S'Toy Bank' +p44544 +sg25270 +S'Florian Rokita' +p44545 +sa(dp44546 +g25267 +g27 +sg25268 +S'Novelty Bank' +p44547 +sg25270 +S'Alf Bruseth' +p44548 +sa(dp44549 +g25267 +g27 +sg25268 +S'Penny Bank' +p44550 +sg25270 +S'Grace Halpin' +p44551 +sa(dp44552 +g25267 +g27 +sg25268 +S"Wall's Excelsior Bank (mechanical)" +p44553 +sg25270 +S'William O. Fletcher' +p44554 +sa(dp44555 +g25273 +S'pen and black ink and brush and brown ink with brown wash and white heightening' +p44556 +sg25267 +g27 +sg25275 +S'published 1767/1771' +p44557 +sg25268 +S'Cadmus tue le Dragon ...' +p44558 +sg25270 +S'Charles Monnet' +p44559 +sa(dp44560 +g25267 +g27 +sg25268 +S'Mechanical Bank' +p44561 +sg25270 +S'Einar Heiberg' +p44562 +sa(dp44563 +g25267 +g27 +sg25268 +S'Toy bank: Man in a Cabin' +p44564 +sg25270 +S'Chris Makrenos' +p44565 +sa(dp44566 +g25267 +g27 +sg25268 +S'Iron Bank' +p44567 +sg25270 +S'Stella Mosher' +p44568 +sa(dp44569 +g25267 +g27 +sg25268 +S'Home Bank' +p44570 +sg25270 +S'Frank Gray' +p44571 +sa(dp44572 +g25267 +g27 +sg25268 +S'Mechanical Toy Bank' +p44573 +sg25270 +S'Milton Bevier' +p44574 +sa(dp44575 +g25267 +g27 +sg25268 +S'Trick Bank' +p44576 +sg25270 +S'Edward W. Buechner' +p44577 +sa(dp44578 +g25267 +g27 +sg25268 +S'Tammany Toy Bank' +p44579 +sg25270 +S'William O. Fletcher' +p44580 +sa(dp44581 +g25267 +g27 +sg25268 +S'Stump Speaker Bank' +p44582 +sg25270 +S'Alf Bruseth' +p44583 +sa(dp44584 +g25267 +g27 +sg25268 +S'Toy Bank: William Tell' +p44585 +sg25270 +S'George File' +p44586 +sa(dp44587 +g25267 +g27 +sg25268 +S'Toy Bank: Darktown Battery' +p44588 +sg25270 +S'Verna Tallman' +p44589 +sa(dp44590 +g25273 +S'(artist after)' +p44591 +sg25267 +g27 +sg25275 +S'\n' +p44592 +sg25268 +S'Cadmus tue le Dragon ...' +p44593 +sg25270 +S'Artist Information (' +p44594 +sa(dp44595 +g25267 +g27 +sg25268 +S'Mechanical Artillery Bank' +p44596 +sg25270 +S'Alf Bruseth' +p44597 +sa(dp44598 +g25267 +g27 +sg25268 +S'Toy Bank' +p44599 +sg25270 +S'Lew Tower' +p44600 +sa(dp44601 +g25267 +g27 +sg25268 +S'Toy Bank' +p44602 +sg25270 +S'Clementine Fossek' +p44603 +sa(dp44604 +g25267 +g27 +sg25268 +S'Toy Bank' +p44605 +sg25270 +S'Pearl Torell' +p44606 +sa(dp44607 +g25267 +g27 +sg25268 +S'Toy Bank: Santa Claus' +p44608 +sg25270 +S'Charles Henning' +p44609 +sa(dp44610 +g25267 +g27 +sg25268 +S'Toy Bank: Santa Claus' +p44611 +sg25270 +S'Clementine Fossek' +p44612 +sa(dp44613 +g25267 +g27 +sg25268 +S'Toy Bank: Uncle Sam' +p44614 +sg25270 +S'American 20th Century' +p44615 +sa(dp44616 +g25267 +g27 +sg25268 +S'Toy Bank: Dutch Girl at Well' +p44617 +sg25270 +S'Charles Moss' +p44618 +sa(dp44619 +g25267 +g27 +sg25268 +S'Toy Bank' +p44620 +sg25270 +S'Sarkis Erganian' +p44621 +sa(dp44622 +g25267 +g27 +sg25268 +S'Toy Bank: Uncle Sam' +p44623 +sg25270 +S'Kurt Melzer' +p44624 +sa(dp44625 +g25273 +S'(artist after)' +p44626 +sg25267 +g27 +sg25275 +S'\n' +p44627 +sg25268 +S'Cadmus tue le Dragon ...' +p44628 +sg25270 +S'Artist Information (' +p44629 +sa(dp44630 +g25267 +g27 +sg25268 +S'Money Bank' +p44631 +sg25270 +S'Yolande Delasser' +p44632 +sa(dp44633 +g25267 +g27 +sg25268 +S'Bank' +p44634 +sg25270 +S'Aaron Fastovsky' +p44635 +sa(dp44636 +g25267 +g27 +sg25268 +S'Bank' +p44637 +sg25270 +S'Aaron Fastovsky' +p44638 +sa(dp44639 +g25267 +g27 +sg25268 +S'Money Bank' +p44640 +sg25270 +S'Nicholas Amantea' +p44641 +sa(dp44642 +g25267 +g27 +sg25268 +S'Pottery Bank' +p44643 +sg25270 +S'Lee Brown' +p44644 +sa(dp44645 +g25267 +g27 +sg25268 +S'Bishop Hill: Coffee Pot' +p44646 +sg25270 +S'Hardin Walsh' +p44647 +sa(dp44648 +g25267 +g27 +sg25268 +S'Bishop Hill: Fire Extinguisher' +p44649 +sg25270 +S'Hardin Walsh' +p44650 +sa(dp44651 +g25267 +g27 +sg25268 +S'Rocking Chair: Bishop Hill' +p44652 +sg25270 +S'William Spiecker' +p44653 +sa(dp44654 +g25267 +g27 +sg25268 +S'Bed: Bishop Hill' +p44655 +sg25270 +S'Archie Thompson' +p44656 +sa(dp44657 +g25267 +g27 +sg25268 +S'Bicycle' +p44658 +sg25270 +S'Alfred Koehn' +p44659 +sa(dp44660 +g25273 +S'(artist after)' +p44661 +sg25267 +g27 +sg25275 +S'\n' +p44662 +sg25268 +S'Diane se baignant avec ses Nymphes' +p44663 +sg25270 +S'Artist Information (' +p44664 +sa(dp44665 +g25267 +g27 +sg25268 +S'Painted Bellows' +p44666 +sg25270 +S'John Koehl' +p44667 +sa(dp44668 +g25267 +g27 +sg25268 +S'Beadwork Hanging Basket' +p44669 +sg25270 +S'Frank Gray' +p44670 +sa(dp44671 +g25267 +g27 +sg25268 +S'Toy Bank: Trick Dog' +p44672 +sg25270 +S'George File' +p44673 +sa(dp44674 +g25267 +g27 +sg25268 +S'Toy Bank: Mule' +p44675 +sg25270 +S'American 20th Century' +p44676 +sa(dp44677 +g25267 +g27 +sg25268 +S'Bandbox with Cover' +p44678 +sg25270 +S'Gilbert Sackerman' +p44679 +sa(dp44680 +g25267 +g27 +sg25268 +S'Tammany Bank' +p44681 +sg25270 +S'Harry Grossen' +p44682 +sa(dp44683 +g25267 +g27 +sg25268 +S'Cast Iron Toy Bank: Masons' +p44684 +sg25270 +S'Chris Makrenos' +p44685 +sa(dp44686 +g25267 +g27 +sg25268 +S'Metal Toy Bank: Boy on Bar' +p44687 +sg25270 +S'Lew Tower' +p44688 +sa(dp44689 +g25267 +g27 +sg25268 +S'Metal Toy Bank: Tammany Bank' +p44690 +sg25270 +S'George File' +p44691 +sa(dp44692 +g25267 +g27 +sg25268 +S'Cast Iron Toy: Artillery Bank' +p44693 +sg25270 +S'Lew Tower' +p44694 +sa(dp44695 +g25273 +S'graphite' +p44696 +sg25267 +g27 +sg25275 +S'published 1767/1771' +p44697 +sg25268 +S'Acteon Metamorphose en Cerf, est dechire par ses Chiens' +p44698 +sg25270 +S'Charles Eisen' +p44699 +sa(dp44700 +g25267 +g27 +sg25268 +S'Double Faced Negro Head Bank' +p44701 +sg25270 +S'Clementine Fossek' +p44702 +sa(dp44703 +g25267 +g27 +sg25268 +S'Humpty Dumpty Mechanical Bank' +p44704 +sg25270 +S'Alf Bruseth' +p44705 +sa(dp44706 +g25267 +g27 +sg25268 +S'Negro Mammy Bank' +p44707 +sg25270 +S'Robert Clark' +p44708 +sa(dp44709 +g25267 +g27 +sg25268 +S'Toy Bank: Negro Boy Head' +p44710 +sg25270 +S'Walter Hochstrasser' +p44711 +sa(dp44712 +g25267 +g27 +sg25268 +S'Penny Bank' +p44713 +sg25270 +S'Herman Schulze' +p44714 +sa(dp44715 +g25267 +g27 +sg25268 +S'Fat Clown Coin Bank' +p44716 +sg25270 +S'Alf Bruseth' +p44717 +sa(dp44718 +g25267 +g27 +sg25268 +S'Soldier in Khaki Coin Bank' +p44719 +sg25270 +S'William O. Fletcher' +p44720 +sa(dp44721 +g25267 +g27 +sg25268 +S'Baseball Player Coin Bank' +p44722 +sg25270 +S'William O. Fletcher' +p44723 +sa(dp44724 +g25267 +g27 +sg25268 +S'Iron Negro Bank' +p44725 +sg25270 +S'Paul Poffinbarger' +p44726 +sa(dp44727 +g25267 +g27 +sg25268 +S'Toy Bank: Humpty Dumpty' +p44728 +sg25270 +S'Verna Tallman' +p44729 +sa(dp44730 +g25273 +S'(artist after)' +p44731 +sg25267 +g27 +sg25275 +S'\n' +p44732 +sg25268 +S'Acteon metamorphose en cerf, est dechire par ses chiens' +p44733 +sg25270 +S'Artist Information (' +p44734 +sa(dp44735 +g25267 +g27 +sg25268 +S'Indian Chief Coin Bank' +p44736 +sg25270 +S'William O. Fletcher' +p44737 +sa(dp44738 +g25267 +g27 +sg25268 +S'Bank: Policeman' +p44739 +sg25270 +S'William Spiecker' +p44740 +sa(dp44741 +g25267 +g27 +sg25268 +S'Politician Coin Bank' +p44742 +sg25270 +S'Alf Bruseth' +p44743 +sa(dp44744 +g25267 +g27 +sg25268 +S'Cast Iron Coin Bank' +p44745 +sg25270 +S'Hans Mangelsdorf' +p44746 +sa(dp44747 +g25267 +g27 +sg25268 +S'Cast Iron Toy Bank: Humpty Dumpty' +p44748 +sg25270 +S'Lew Tower' +p44749 +sa(dp44750 +g25267 +g27 +sg25268 +S'Cast Iron Toy Bank: "Jolly Nigger"' +p44751 +sg25270 +S'Chris Makrenos' +p44752 +sa(dp44753 +g25267 +g27 +sg25268 +S'Penny Bank: Statue of Liberty' +p44754 +sg25270 +S'Herman Schulze' +p44755 +sa(dp44756 +g25267 +g27 +sg25268 +S'Cast Iron Bank: Merry go Round' +p44757 +sg25270 +S'Sarkis Erganian' +p44758 +sa(dp44759 +g25267 +g27 +sg25268 +S'Iron Bank' +p44760 +sg25270 +S'Ralph Morton' +p44761 +sa(dp44762 +g25267 +g27 +sg25268 +S'Iron Bank' +p44763 +sg25270 +S'Vincent P. Rosel' +p44764 +sa(dp44765 +g25273 +S', 1766' +p44766 +sg25267 +g27 +sg25275 +S'\n' +p44767 +sg25268 +S'Jupiter descend avec toute sa Majeste dans lePalais de Semele' +p44768 +sg25270 +S'Jean-Michel Moreau the Younger' +p44769 +sa(dp44770 +g25267 +g27 +sg25268 +S'"Shell Out" Bank' +p44771 +sg25270 +S'William O. Fletcher' +p44772 +sa(dp44773 +g25267 +g27 +sg25268 +S'Centennial Bank - 1876' +p44774 +sg25270 +S'Alf Bruseth' +p44775 +sa(dp44776 +g25267 +g27 +sg25268 +S'"Safe" Bank' +p44777 +sg25270 +S'William O. Fletcher' +p44778 +sa(dp44779 +g25267 +g27 +sg25268 +S'Bank of Industry' +p44780 +sg25270 +S'William O. Fletcher' +p44781 +sa(dp44782 +g25267 +g27 +sg25268 +S'Young America Bank' +p44783 +sg25270 +S'Clementine Fossek' +p44784 +sa(dp44785 +g25267 +g27 +sg25268 +S'Memorial Money Bank' +p44786 +sg25270 +S'Nicholas Amantea' +p44787 +sa(dp44788 +g25267 +g27 +sg25268 +S'Toy Bank: Globe' +p44789 +sg25270 +S'Walter Hochstrasser' +p44790 +sa(dp44791 +g25267 +g27 +sg25268 +S'Toy Bank: Stump Speaker' +p44792 +sg25270 +S'Pearl Torell' +p44793 +sa(dp44794 +g25267 +g27 +sg25268 +S'Civil War Soldier & Tree Trunk Bank' +p44795 +sg25270 +S'William O. Fletcher' +p44796 +sa(dp44797 +g25267 +g27 +sg25268 +S'Toy Bank' +p44798 +sg25270 +S'Ethel Clarke' +p44799 +sa(dp44800 +g25273 +S'(artist after)' +p44801 +sg25267 +g27 +sg25275 +S'\n' +p44802 +sg25268 +S'Jupiter descend avec toute sa Majest\xc3\xa9 dans le Palais de S\xc3\xa9mel\xc3\xa9' +p44803 +sg25270 +S'Artist Information (' +p44804 +sa(dp44805 +g25267 +g27 +sg25268 +S'Iron Toy Bank' +p44806 +sg25270 +S'Sarkis Erganian' +p44807 +sa(dp44808 +g25267 +g27 +sg25268 +S'Tammany Bank' +p44809 +sg25270 +S'Charles Moss' +p44810 +sa(dp44811 +g25267 +g27 +sg25268 +S'Toy Bank' +p44812 +sg25270 +S'Telli' +p44813 +sa(dp44814 +g25267 +g27 +sg25268 +S'"Creedmore" Penny Bank' +p44815 +sg25270 +S'Stanley Chin' +p44816 +sa(dp44817 +g25267 +g27 +sg25268 +S'Bread Basket' +p44818 +sg25270 +S'Alfonso Moreno' +p44819 +sa(dp44820 +g25267 +g27 +sg25268 +S'Bread Basket' +p44821 +sg25270 +S'J. Howard Iams' +p44822 +sa(dp44823 +g25267 +g27 +sg25268 +S'Hickory Bark and Oat Straw Basket' +p44824 +sg25270 +S'E. Allen Fritz' +p44825 +sa(dp44826 +g25267 +g27 +sg25268 +S'Fruit Basket' +p44827 +sg25270 +S'Frances Lichten' +p44828 +sa(dp44829 +g25267 +g27 +sg25268 +S'Pottery Basket' +p44830 +sg25270 +S'Angelo Bulone' +p44831 +sa(dp44832 +g25267 +g27 +sg25268 +S'Bread Basket' +p44833 +sg25270 +S'John H. Tercuzzi' +p44834 +sa(dp44835 +g25273 +S'(artist after)' +p44836 +sg25267 +g27 +sg25275 +S'\n' +p44837 +sg25268 +S'Jupiter descend avec toute sa Majest\xc3\xa9 dans le Palais de S\xc3\xa9mel\xc3\xa9' +p44838 +sg25270 +S'Artist Information (' +p44839 +sa(dp44840 +g25267 +g27 +sg25268 +S'Miniature Basket' +p44841 +sg25270 +S'Grace Halpin' +p44842 +sa(dp44843 +g25267 +g27 +sg25268 +S'Cap Basket' +p44844 +sg25270 +S'Samuel O. Klein' +p44845 +sa(dp44846 +g25267 +g27 +sg25268 +S'Wicker Basket' +p44847 +sg25270 +S'Bisby Finley' +p44848 +sa(dp44849 +g25267 +g27 +sg25268 +S'Baptismal Font' +p44850 +sg25270 +S'Florence Huston' +p44851 +sa(dp44852 +g25267 +g27 +sg25268 +S'Flour Barrel' +p44853 +sg25270 +S'Wilbur M Rice' +p44854 +sa(dp44855 +g25267 +g27 +sg25268 +S'Keg' +p44856 +sg25270 +S'Charles Caseau' +p44857 +sa(dp44858 +g25267 +g27 +sg25268 +S'Water Barrel or Runlet' +p44859 +sg25270 +S'Dana Bartlett' +p44860 +sa(dp44861 +g25267 +g27 +sg25268 +S'Mercury Barometer' +p44862 +sg25270 +S'Ray Price' +p44863 +sa(dp44864 +g25267 +g27 +sg25268 +S'Barometer' +p44865 +sg25270 +S'William Spiecker' +p44866 +sa(dp44867 +g25267 +g27 +sg25268 +S'Barometer' +p44868 +sg25270 +S'Max Fernekes' +p44869 +sa(dp44870 +g25273 +S'(artist after)' +p44871 +sg25267 +g27 +sg25275 +S'\n' +p44872 +sg25268 +S'Jupiter met au monde Bachus ...' +p44873 +sg25270 +S'Artist Information (' +p44874 +sa(dp44875 +g25267 +g27 +sg25268 +S'Bark Peeler' +p44876 +sg25270 +S'Chester Kluf' +p44877 +sa(dp44878 +g25267 +g27 +sg25268 +S'$1 Banknote from Virginia' +p44879 +sg25270 +S'Carl Buergerniss' +p44880 +sa(dp44881 +g25267 +g27 +sg25268 +S'Punch and Judy Penny Bank' +p44882 +sg25270 +S'Cushman Parker' +p44883 +sa(dp44884 +g25267 +g27 +sg25268 +S'Punch and Judy Bank' +p44885 +sg25270 +S'Alf Bruseth' +p44886 +sa(dp44887 +g25267 +g27 +sg25268 +S'Mechanical Bank: Punch and Judy' +p44888 +sg25270 +S'Dorothea Bates' +p44889 +sa(dp44890 +g25267 +g27 +sg25268 +S'Bank: Statue of Liberty' +p44891 +sg25270 +S'William O. Fletcher' +p44892 +sa(dp44893 +g25267 +g27 +sg25268 +S'Crystal Bank' +p44894 +sg25270 +S'Alf Bruseth' +p44895 +sa(dp44896 +g25267 +g27 +sg25268 +S'Safe Bank' +p44897 +sg25270 +S'William O. Fletcher' +p44898 +sa(dp44899 +g25267 +g27 +sg25268 +S'Key Bank' +p44900 +sg25270 +S'William O. Fletcher' +p44901 +sa(dp44902 +g25267 +g27 +sg25268 +S'"The Globe" Coin Bank' +p44903 +sg25270 +S'William O. Fletcher' +p44904 +sa(dp44905 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p44906 +sg25267 +g27 +sg25275 +S'published 1767/1771' +p44907 +sg25268 +S'La Nymphe Echo ... est changee en voix' +p44908 +sg25270 +S'Charles Monnet' +p44909 +sa(dp44910 +g25267 +g27 +sg25268 +S'"A Money Saver" Coin Bank' +p44911 +sg25270 +S'Clementine Fossek' +p44912 +sa(dp44913 +g25267 +g27 +sg25268 +S'Clock Bank' +p44914 +sg25270 +S'Alf Bruseth' +p44915 +sa(dp44916 +g25267 +g27 +sg25268 +S'Cow Bell #4' +p44917 +sg25270 +S'Dorothy Brennan' +p44918 +sa(dp44919 +g25267 +g27 +sg25268 +S'Cow Bell' +p44920 +sg25270 +S'Max Unger' +p44921 +sa(dp44922 +g25267 +g27 +sg25268 +S'Bell' +p44923 +sg25270 +S'Harry Grossen' +p44924 +sa(dp44925 +g25267 +g27 +sg25268 +S'Colonial Chimes' +p44926 +sg25270 +S'Edward L. Loper' +p44927 +sa(dp44928 +g25267 +g27 +sg25268 +S'Courthouse Bell' +p44929 +sg25270 +S'Erwin Schwabe' +p44930 +sa(dp44931 +g25267 +g27 +sg25268 +S'Courthouse Bell' +p44932 +sg25270 +S'Erwin Schwabe' +p44933 +sa(dp44934 +g25267 +g27 +sg25268 +S'Cow Bell, #1' +p44935 +sg25270 +S'Elmer Weise' +p44936 +sa(dp44937 +g25267 +g27 +sg25268 +S'Cow Bell' +p44938 +sg25270 +S'Dorothy Brennan' +p44939 +sa(dp44940 +g25273 +S'(artist after)' +p44941 +sg25267 +g27 +sg25275 +S'\n' +p44942 +sg25268 +S'La Nymphe Echo ... est changee en voix' +p44943 +sg25270 +S'Artist Information (' +p44944 +sa(dp44945 +g25267 +g27 +sg25268 +S'Bell - From Swedish Church' +p44946 +sg25270 +S'Wellington Blewett' +p44947 +sa(dp44948 +g25267 +g27 +sg25268 +S'Bell Jar' +p44949 +sg25270 +S'Nicholas Zupa' +p44950 +sa(dp44951 +g25267 +g27 +sg25268 +S'Glass Globe - Wax Flowers' +p44952 +sg25270 +S'J. Howard Iams' +p44953 +sa(dp44954 +g25267 +g27 +sg25268 +S'Wool Flowers Under Glass' +p44955 +sg25270 +S'Frank J. Mace' +p44956 +sa(dp44957 +g25267 +g27 +sg25268 +S'Bell Jar' +p44958 +sg25270 +S'David S. De Vault' +p44959 +sa(dp44960 +g25267 +g27 +sg25268 +S'Wedding Cake' +p44961 +sg25270 +S'John Koehl' +p44962 +sa(dp44963 +g25267 +g27 +sg25268 +S'Straw Bee Hive' +p44964 +sg25270 +S'Frank Gray' +p44965 +sa(dp44966 +g25267 +g27 +sg25268 +S'Portable Bath Tub' +p44967 +sg25270 +S'Al Curry' +p44968 +sa(dp44969 +g25267 +g27 +sg25268 +S'Bath Tub' +p44970 +sg25270 +S'John Lang' +p44971 +sa(dp44972 +g25267 +g27 +sg25268 +S'Circular Tin Bath Tub' +p44973 +sg25270 +S'Wilbur M Rice' +p44974 +sa(dp44975 +g25273 +S'charcoal with white heightening' +p44976 +sg25267 +g27 +sg25275 +S'1766' +p44977 +sg25268 +S'Narcisse se voit dans une Fontaine et devientamoreux de lui-meme' +p44978 +sg25270 +S'Charles Monnet' +p44979 +sa(dp44980 +g25267 +g27 +sg25268 +S'Foot Tub' +p44981 +sg25270 +S'Paul Poffinbarger' +p44982 +sa(dp44983 +g25267 +g27 +sg25268 +S'Pioneer Bath Tub' +p44984 +sg25270 +S'American 20th Century' +p44985 +sa(dp44986 +g25267 +g27 +sg25268 +S'Bath Tub' +p44987 +sg25270 +S'Artist Information (' +p44988 +sa(dp44989 +g25267 +g27 +sg25268 +S'Tin Bath Tub' +p44990 +sg25270 +S'Gordon Saltar' +p44991 +sa(dp44992 +g25267 +g27 +sg25268 +S'Basket' +p44993 +sg25270 +S'Gordena Jackson' +p44994 +sa(dp44995 +g25267 +g27 +sg25268 +S'Bee Basket and Cover' +p44996 +sg25270 +S'Charlotte Angus' +p44997 +sa(dp44998 +g25267 +g27 +sg25268 +S'Cheese Basket' +p44999 +sg25270 +S'George File' +p45000 +sa(dp45001 +g25267 +g27 +sg25268 +S'Silver Plate Bread Basket' +p45002 +sg25270 +S'Chris Makrenos' +p45003 +sa(dp45004 +g25267 +g27 +sg25268 +S'Hand Made Work Basket' +p45005 +sg25270 +S'Margaret Stottlemeyer' +p45006 +sa(dp45007 +g25267 +g27 +sg25268 +S'Strawberry Basket' +p45008 +sg25270 +S'William Spiecker' +p45009 +sa(dp45010 +g25273 +S'(artist after)' +p45011 +sg25267 +g27 +sg25275 +S'\n' +p45012 +sg25268 +S'Narcisse se voit dans une Fontaine et devient amoureux de lui-meme' +p45013 +sg25270 +S'Artist Information (' +p45014 +sa(dp45015 +g25267 +g27 +sg25268 +S'Traveling Basket' +p45016 +sg25270 +S'Vincent P. Rosel' +p45017 +sa(dp45018 +g25267 +g27 +sg25268 +S'Bicycle' +p45019 +sg25270 +S'Marjorie Lee' +p45020 +sa(dp45021 +g25267 +g27 +sg25268 +S'Bicycle' +p45022 +sg25270 +S'John Cutting' +p45023 +sa(dp45024 +g25267 +g27 +sg25268 +S'Bicycle' +p45025 +sg25270 +S'Harry G. Aberdeen' +p45026 +sa(dp45027 +g25267 +g27 +sg25268 +S'Bellows' +p45028 +sg25270 +S'American 20th Century' +p45029 +sa(dp45030 +g25267 +g27 +sg25268 +S'Bellows' +p45031 +sg25270 +S'Thomas Watts' +p45032 +sa(dp45033 +g25267 +g27 +sg25268 +S'Bellows' +p45034 +sg25270 +S'Florence Milto' +p45035 +sa(dp45036 +g25267 +g27 +sg25268 +S'Bellows' +p45037 +sg25270 +S'Oscar Bluhme' +p45038 +sa(dp45039 +g25267 +g27 +sg25268 +S'Bellows' +p45040 +sg25270 +S'Charlotte Angus' +p45041 +sa(dp45042 +g25267 +g27 +sg25268 +S'Bellows' +p45043 +sg25270 +S'Stewart Wheeler' +p45044 +sa(dp45045 +g25273 +S'graphite' +p45046 +sg25267 +g27 +sg25275 +S'1767' +p45047 +sg25268 +S'Bachus arrive en triomphe dans le Grece ...' +p45048 +sg25270 +S'Charles Eisen' +p45049 +sa(dp45050 +g25267 +g27 +sg25268 +S'Bellows' +p45051 +sg25270 +S'Katharine Merrill' +p45052 +sa(dp45053 +g25267 +g27 +sg25268 +S'Fireside Bellows' +p45054 +sg25270 +S'Grace Halpin' +p45055 +sa(dp45056 +g25267 +g27 +sg25268 +S'Bellows' +p45057 +sg25270 +S'Benjamin Resnick' +p45058 +sa(dp45059 +g25267 +g27 +sg25268 +S'Bellows' +p45060 +sg25270 +S'Edna C. Rex' +p45061 +sa(dp45062 +g25267 +g27 +sg25268 +S'Bellows' +p45063 +sg25270 +S'Mina Lowry' +p45064 +sa(dp45065 +g25267 +g27 +sg25268 +S'Painted Bellows' +p45066 +sg25270 +S'Ella Josephine Sterling' +p45067 +sa(dp45068 +g25267 +g27 +sg25268 +S'Sleigh Bells' +p45069 +sg25270 +S'Robert Clark' +p45070 +sa(dp45071 +g25267 +g27 +sg25268 +S'Conestoga Wagon Bells' +p45072 +sg25270 +S'Samuel W. Ford' +p45073 +sa(dp45074 +g25267 +g27 +sg25268 +S'Bell (From a Locomotive)' +p45075 +sg25270 +S'Harry Mann Waddell' +p45076 +sa(dp45077 +g25267 +g27 +sg25268 +S'Bell (From a Locomotive)' +p45078 +sg25270 +S'Artist Information (' +p45079 +sa(dp45080 +g25273 +S'(artist after)' +p45081 +sg25267 +g27 +sg25275 +S'\n' +p45082 +sg25268 +S'Bachus arrive en triomphe dans la Grece ...' +p45083 +sg25270 +S'Artist Information (' +p45084 +sa(dp45085 +g25267 +g27 +sg25268 +S"Town Crier's Bell" +p45086 +sg25270 +S'Edith Towner' +p45087 +sa(dp45088 +g25267 +g27 +sg25268 +S'Door Bell' +p45089 +sg25270 +S'Natalie Simon' +p45090 +sa(dp45091 +g25267 +g27 +sg25268 +S'Mule Car Bell' +p45092 +sg25270 +S'William Kieckhofel' +p45093 +sa(dp45094 +g25267 +g27 +sg25268 +S'Bell from Ship' +p45095 +sg25270 +S'Robert W.R. Taylor' +p45096 +sa(dp45097 +g25267 +g27 +sg25268 +S'Desk Bell from Fire Department' +p45098 +sg25270 +S'Al Curry' +p45099 +sa(dp45100 +g25267 +g27 +sg25268 +S'Fontainbleau Plantation Bell' +p45101 +sg25270 +S'Thomas Byrne' +p45102 +sa(dp45103 +g25267 +g27 +sg25268 +S'Cast Iron Bell' +p45104 +sg25270 +S'Arelia Arbo' +p45105 +sa(dp45106 +g25267 +g27 +sg25268 +S'Bell' +p45107 +sg25270 +S'Edna C. Rex' +p45108 +sa(dp45109 +g25267 +g27 +sg25268 +S'Bronze Bell for the Dining Room' +p45110 +sg25270 +S'Carl Buergerniss' +p45111 +sa(dp45112 +g25267 +g27 +sg25268 +S'Cast Iron Table Bell' +p45113 +sg25270 +S'Adele Brooks' +p45114 +sa(dp45115 +g25273 +S'(artist after)' +p45116 +sg25267 +g27 +sg25275 +S'\n' +p45117 +sg25268 +S'Bachus arrive en triomphe dans la Grece ...' +p45118 +sg25270 +S'Artist Information (' +p45119 +sa(dp45120 +g25267 +g27 +sg25268 +S'Portable Brass Hand Bell' +p45121 +sg25270 +S'Columbus Simpson' +p45122 +sa(dp45123 +g25267 +g27 +sg25268 +S'Whittled Bowl with Lid: "Hen on Nest"' +p45124 +sg25270 +S'Frank Budash' +p45125 +sa(dp45126 +g25267 +g27 +sg25268 +S'Wooden Chicken' +p45127 +sg25270 +S'Frances Cohen' +p45128 +sa(dp45129 +g25267 +g27 +sg25268 +S'Wooden Rooster' +p45130 +sg25270 +S'John Davis' +p45131 +sa(dp45132 +g25267 +g27 +sg25268 +S'Gilded Wooden Rooster' +p45133 +sg25270 +S'Karl J. Hentz' +p45134 +sa(dp45135 +g25267 +g27 +sg25268 +S'Figurine: Cock' +p45136 +sg25270 +S'Bernard Westmacott' +p45137 +sa(dp45138 +g25267 +g27 +sg25268 +S'Carved Bird' +p45139 +sg25270 +S'American 20th Century' +p45140 +sa(dp45141 +g25267 +g27 +sg25268 +S'Figurehead from Yacht' +p45142 +sg25270 +S'Ethel Dougan' +p45143 +sa(dp45144 +g25267 +g27 +sg25268 +S'Ship Figurehead' +p45145 +sg25270 +S'Samuel Philpot' +p45146 +sa(dp45147 +g25267 +g27 +sg25268 +S'Billethead' +p45148 +sg25270 +S'Lucille Chabot' +p45149 +sa(dp45150 +g25273 +S'graphite' +p45151 +sg25267 +g27 +sg25275 +S'1766' +p45152 +sg25268 +S'Penthee dechire par sa Mere et les autres Bacchantes' +p45153 +sg25270 +S'Charles Eisen' +p45154 +sa(dp45155 +g25267 +g27 +sg25268 +S'Billethead' +p45156 +sg25270 +S'Henry Murphy' +p45157 +sa(dp45158 +g25267 +g27 +sg25268 +S"Ship's Billethead" +p45159 +sg25270 +S'Jane Iverson' +p45160 +sa(dp45161 +g25267 +g27 +sg25268 +S"Ship's Billethead from Richard S. Leaming" +p45162 +sg25270 +S'Frances Cohen' +p45163 +sa(dp45164 +g25267 +g27 +sg25268 +S'Billethead' +p45165 +sg25270 +S'Marian Page' +p45166 +sa(dp45167 +g25267 +g27 +sg25268 +S'Billethead' +p45168 +sg25270 +S'Frances Cohen' +p45169 +sa(dp45170 +g25267 +g27 +sg25268 +S'Billethead' +p45171 +sg25270 +S'Artist Information (' +p45172 +sa(dp45173 +g25267 +g27 +sg25268 +S'Ship Billethead' +p45174 +sg25270 +S'Dorothy Hay Jensen' +p45175 +sa(dp45176 +g25267 +g27 +sg25268 +S'Billethead from Frigate "Sabine"' +p45177 +sg25270 +S'American 20th Century' +p45178 +sa(dp45179 +g25267 +g27 +sg25268 +S'Figurehead: Eagle' +p45180 +sg25270 +S'Frances Cohen' +p45181 +sa(dp45182 +g25267 +g27 +sg25268 +S'Billethead from a Rockport Schooner' +p45183 +sg25270 +S'Betty Fuerst' +p45184 +sa(dp45185 +g25273 +S'(artist after)' +p45186 +sg25267 +g27 +sg25275 +S'\n' +p45187 +sg25268 +S'Penthee dechire par sa mere et les autres Bacchantes' +p45188 +sg25270 +S'Artist Information (' +p45189 +sa(dp45190 +g25267 +g27 +sg25268 +S'Billethead' +p45191 +sg25270 +S'Hazel Hyde' +p45192 +sa(dp45193 +g25267 +g27 +sg25268 +S'Billethead from "Myrtie B. Crowley"' +p45194 +sg25270 +S'Jane Iverson' +p45195 +sa(dp45196 +g25267 +g27 +sg25268 +S"Ship's Billethead" +p45197 +sg25270 +S'Willard Hazen' +p45198 +sa(dp45199 +g25267 +g27 +sg25268 +S"Bishop Hill: Tailor's Table" +p45200 +sg25270 +S'Archie Thompson' +p45201 +sa(dp45202 +g25267 +g27 +sg25268 +S'Bishop Hill: Accounting Desk' +p45203 +sg25270 +S'William Spiecker' +p45204 +sa(dp45205 +g25267 +g27 +sg25268 +S'Bishop Hill: Chest' +p45206 +sg25270 +S'Wellington Blewett' +p45207 +sa(dp45208 +g25267 +g27 +sg25268 +S'Bishop Hill: Settee and Chest' +p45209 +sg25270 +S'Wellington Blewett' +p45210 +sa(dp45211 +g25267 +g27 +sg25268 +S'Bishop Hill: Chair' +p45212 +sg25270 +S'Wellington Blewett' +p45213 +sa(dp45214 +g25267 +g27 +sg25268 +S'Bishop Hill: Small Spoon' +p45215 +sg25270 +S'William Ludwig' +p45216 +sa(dp45217 +g25267 +g27 +sg25268 +S'Bishop Hill: Bed' +p45218 +sg25270 +S'Wellington Blewett' +p45219 +sa(dp45220 +g25273 +S'pen and black ink and brush and brown ink with brown wash over graphite' +p45221 +sg25267 +g27 +sg25275 +S'published 1767/1771' +p45222 +sg25268 +S"Thisbe prend l'Epee encore fumante du Sang dePyrame ..." +p45223 +sg25270 +S'Charles Monnet' +p45224 +sa(dp45225 +g25267 +g27 +sg25268 +S'Dove' +p45226 +sg25270 +S'Sarkis Erganian' +p45227 +sa(dp45228 +g25267 +g27 +sg25268 +S'Flag-pole Finial Pigeon' +p45229 +sg25270 +S'Chris Makrenos' +p45230 +sa(dp45231 +g25267 +g27 +sg25268 +S'Carved Bird, Garden Decoration' +p45232 +sg25270 +S'Robert Pohle' +p45233 +sa(dp45234 +g25267 +g27 +sg25268 +S'Carved Wood Robin' +p45235 +sg25270 +S'James McLellan' +p45236 +sa(dp45237 +g25267 +g27 +sg25268 +S'Robin (German?)' +p45238 +sg25270 +S'John Thorsen' +p45239 +sa(dp45240 +g25267 +g27 +sg25268 +S'Carved Bird and Nest' +p45241 +sg25270 +S'Adolph Beilin' +p45242 +sa(dp45243 +g25267 +g27 +sg25268 +S'Bird' +p45244 +sg25270 +S'Roberta Spicer' +p45245 +sa(dp45246 +g25267 +g27 +sg25268 +S'Sea Gull Figure' +p45247 +sg25270 +S'Mina Lowry' +p45248 +sa(dp45249 +g25267 +g27 +sg25268 +S'Cast Iron Pigeon' +p45250 +sg25270 +S'Rex F. Bush' +p45251 +sa(dp45252 +g25267 +g27 +sg25268 +S'Eye Bolt' +p45253 +sg25270 +S'Clarence Secor' +p45254 +sa(dp45255 +g25273 +S'(artist after)' +p45256 +sg25267 +g27 +sg25275 +S'\n' +p45257 +sg25268 +S"Thisbe prend l'Epee encore fumante de Sange de Pyrame ..." +p45258 +sg25270 +S'Artist Information (' +p45259 +sa(dp45260 +g25267 +g27 +sg25268 +S'Lock and Key' +p45261 +sg25270 +S'Samuel W. Ford' +p45262 +sa(dp45263 +g25267 +g27 +sg25268 +S'Bolt' +p45264 +sg25270 +S'John Petrucci' +p45265 +sa(dp45266 +g25267 +g27 +sg25268 +S"Blacksmith's Tongs" +p45267 +sg25270 +S'Orison Daeda' +p45268 +sa(dp45269 +g25267 +g27 +sg25268 +S'Horseshoeing Tool' +p45270 +sg25270 +S'George Roehl' +p45271 +sa(dp45272 +g25267 +g27 +sg25268 +S"Blacksmith's Hammer" +p45273 +sg25270 +S'Ethel Dougan' +p45274 +sa(dp45275 +g25267 +g27 +sg25268 +S"Blacksmith's Measuring Wheel" +p45276 +sg25270 +S'John Swientochowski' +p45277 +sa(dp45278 +g25267 +g27 +sg25268 +S"Blacksmith's Measuring Wheel" +p45279 +sg25270 +S'Edward L. Loper' +p45280 +sa(dp45281 +g25267 +g27 +sg25268 +S'Bishop Hill: Newel Post' +p45282 +sg25270 +S'Archie Thompson' +p45283 +sa(dp45284 +g25267 +g27 +sg25268 +S'Bishop Hill: Building Bricks' +p45285 +sg25270 +S'William Spiecker' +p45286 +sa(dp45287 +g25267 +g27 +sg25268 +S'Bishop Hill: Ceiling Decoration' +p45288 +sg25270 +S'H. Langden Brown' +p45289 +sa(dp45290 +g25273 +S'(artist after)' +p45291 +sg25267 +g27 +sg25275 +S'\n' +p45292 +sg25268 +S'Mars et Venus ...' +p45293 +sg25270 +S'Artist Information (' +p45294 +sa(dp45295 +g25267 +g27 +sg25268 +S'Bishop Hill: Wooden Spoon' +p45296 +sg25270 +S'Roberta Elvis' +p45297 +sa(dp45298 +g25267 +g27 +sg25268 +S'Bishop Hill: Copper Skillet' +p45299 +sg25270 +S'Bisby Finley' +p45300 +sa(dp45301 +g25267 +g27 +sg25268 +S'Bishop Hill: Mangle' +p45302 +sg25270 +S'Wellington Blewett' +p45303 +sa(dp45304 +g25267 +g27 +sg25268 +S'Bishop Hill: Dowel Cutter' +p45305 +sg25270 +S'H. Langden Brown' +p45306 +sa(dp45307 +g25267 +g27 +sg25268 +S'Bishop Hill: Scissors' +p45308 +sg25270 +S'Archie Thompson' +p45309 +sa(dp45310 +g25267 +g27 +sg25268 +S'Bishop Hill: Small Scissors' +p45311 +sg25270 +S'Archie Thompson' +p45312 +sa(dp45313 +g25267 +g27 +sg25268 +S'Old Book, "Life of Wesley"' +p45314 +sg25270 +S'Magnus S. Fossum' +p45315 +sa(dp45316 +g25267 +g27 +sg25268 +S'Book - English Grammar' +p45317 +sg25270 +S'Magnus S. Fossum' +p45318 +sa(dp45319 +g25267 +g27 +sg25268 +S'Hymn Book' +p45320 +sg25270 +S'Emma Wilson' +p45321 +sa(dp45322 +g25267 +g27 +sg25268 +S'Dutch Bible' +p45323 +sg25270 +S'David S. De Vault' +p45324 +sa(dp45325 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p45326 +sg25267 +g27 +sg25275 +S'1767' +p45327 +sg25268 +S"Leucothoe, charmee de la beaute d'Apollon ..." +p45328 +sg25270 +S'Charles Monnet' +p45329 +sa(dp45330 +g25267 +g27 +sg25268 +S'Hand-carved Walnut Book Covers' +p45331 +sg25270 +S'Gordena Jackson' +p45332 +sa(dp45333 +g25267 +g27 +sg25268 +S'Book Marks' +p45334 +sg25270 +S'J. Howard Iams' +p45335 +sa(dp45336 +g25267 +g27 +sg25268 +S'Leather Book Cover' +p45337 +sg25270 +S'Vera Van Voris' +p45338 +sa(dp45339 +g25267 +g27 +sg25268 +S'Book Mark & Birthday Wish' +p45340 +sg25270 +S'J. Howard Iams' +p45341 +sa(dp45342 +g25267 +g27 +sg25268 +S'Silk Badge Panel - Woven' +p45343 +sg25270 +S'Edith Olney' +p45344 +sa(dp45345 +g25267 +g27 +sg25268 +S'Bookmark with Design of Cardboard' +p45346 +sg25270 +S'Ellen Duncan' +p45347 +sa(dp45348 +g25267 +g27 +sg25268 +S'Bookmark' +p45349 +sg25270 +S'Edward White' +p45350 +sa(dp45351 +g25267 +g27 +sg25268 +S'Carved Wood Book Cover' +p45352 +sg25270 +S'Natalie Simon' +p45353 +sa(dp45354 +g25267 +g27 +sg25268 +S'Ornamental Shadow Box' +p45355 +sg25270 +S'Fritz Boehmer' +p45356 +sa(dp45357 +g25267 +g27 +sg25268 +S'Comb Box' +p45358 +sg25270 +S'Chris Makrenos' +p45359 +sa(dp45360 +g25273 +S'(artist after)' +p45361 +sg25267 +g27 +sg25275 +S'\n' +p45362 +sg25268 +S"Leucothoe, charmee de la beaute d'Apollon ..." +p45363 +sg25270 +S'Artist Information (' +p45364 +sa(dp45365 +g25267 +g27 +sg25268 +S'Razor Box and Razor' +p45366 +sg25270 +S'Alfred Walbeck' +p45367 +sa(dp45368 +g25267 +g27 +sg25268 +S'Powder Box' +p45369 +sg25270 +S'Thomas Holloway' +p45370 +sa(dp45371 +g25267 +g27 +sg25268 +S'Patch Box' +p45372 +sg25270 +S'George B. Meyer' +p45373 +sa(dp45374 +g25267 +g27 +sg25268 +S'Powder Box' +p45375 +sg25270 +S'Vera Van Voris' +p45376 +sa(dp45377 +g25267 +g27 +sg25268 +S'Plantation Boundary Marker' +p45378 +sg25270 +S'Joseph L. Boyd' +p45379 +sa(dp45380 +g25267 +g27 +sg25268 +S'Bow Piece of a Ship' +p45381 +sg25270 +S'Lucille Chabot' +p45382 +sa(dp45383 +g25267 +g27 +sg25268 +S"Ship's Carving" +p45384 +sg25270 +S'Frances Matsubara' +p45385 +sa(dp45386 +g25267 +g27 +sg25268 +S"Woodcarving from Ship's Bow" +p45387 +sg25270 +S'Beatrice DeKalb' +p45388 +sa(dp45389 +g25267 +g27 +sg25268 +S'Walnut Burl Bowl' +p45390 +sg25270 +S'Beverly Chichester' +p45391 +sa(dp45392 +g25267 +g27 +sg25268 +S'Maple Mixing Bowl' +p45393 +sg25270 +S'John Cutting' +p45394 +sa(dp45395 +g25273 +S'brush and black ink and charcoal with white heightening' +p45396 +sg25267 +g27 +sg25275 +S'published 1767/1771' +p45397 +sg25268 +S'La Nymphe Salmacis veut embrasser le jeune Hermaphrodite ...' +p45398 +sg25270 +S'Charles Monnet' +p45399 +sa(dp45400 +g25267 +g27 +sg25268 +S'Chopping Bowl' +p45401 +sg25270 +S'Wellington Blewett' +p45402 +sa(dp45403 +g25267 +g27 +sg25268 +S'Wooden Salad or Chopping Bowl' +p45404 +sg25270 +S'Rex F. Bush' +p45405 +sa(dp45406 +g25267 +g27 +sg25268 +S'Vat' +p45407 +sg25270 +S'Floyd R. Sharp' +p45408 +sa(dp45409 +g25267 +g27 +sg25268 +S'Bowl' +p45410 +sg25270 +S'Grace Halpin' +p45411 +sa(dp45412 +g25267 +g27 +sg25268 +S'Bread Dough Bowl' +p45413 +sg25270 +S'Mary Hansen' +p45414 +sa(dp45415 +g25267 +g27 +sg25268 +S'Dough Bowl' +p45416 +sg25270 +S'Jesus Pena' +p45417 +sa(dp45418 +g25267 +g27 +sg25268 +S'Maple Butter Bowl' +p45419 +sg25270 +S'Clyde L. Cheney' +p45420 +sa(dp45421 +g25267 +g27 +sg25268 +S'Gourd Bottle' +p45422 +sg25270 +S'Sydney Roberts' +p45423 +sa(dp45424 +g25267 +g27 +sg25268 +S'Tin Bottle' +p45425 +sg25270 +S'Ray Price' +p45426 +sa(dp45427 +g25267 +g27 +sg25268 +S'Willow-Bound Flask' +p45428 +sg25270 +S'Frank Gray' +p45429 +sa(dp45430 +g25273 +S'(artist after)' +p45431 +sg25267 +g27 +sg25275 +S'\n' +p45432 +sg25268 +S'La Nymphe Salmacis veut embrasser le jeune Hermaphrodite ...' +p45433 +sg25270 +S'Artist Information (' +p45434 +sa(dp45435 +g25267 +g27 +sg25268 +S'Wooden Wine Bottle' +p45436 +sg25270 +S'Wilbur M Rice' +p45437 +sa(dp45438 +g25267 +g27 +sg25268 +S'Bit Brace' +p45439 +sg25270 +S'Oscar Bluhme' +p45440 +sa(dp45441 +g25267 +g27 +sg25268 +S'Spice Box' +p45442 +sg25270 +S'Angelo Bulone' +p45443 +sa(dp45444 +g25267 +g27 +sg25268 +S'Knife and Spoon Box' +p45445 +sg25270 +S'Isidore Sovensky' +p45446 +sa(dp45447 +g25267 +g27 +sg25268 +S'Knife Box' +p45448 +sg25270 +S'Harry Eisman' +p45449 +sa(dp45450 +g25267 +g27 +sg25268 +S'Knife and Spoon Box - Line Drawing' +p45451 +sg25270 +S'Isidore Sovensky' +p45452 +sa(dp45453 +g25267 +g27 +sg25268 +S'Sewing Box' +p45454 +sg25270 +S'Albert Levone' +p45455 +sa(dp45456 +g25267 +g27 +sg25268 +S'Leather Hat Box' +p45457 +sg25270 +S'Clarence W. Dawson' +p45458 +sa(dp45459 +g25267 +g27 +sg25268 +S'Hat Box' +p45460 +sg25270 +S'Mary E. Humes' +p45461 +sa(dp45462 +g25267 +g27 +sg25268 +S'Hat Box - Top' +p45463 +sg25270 +S'Mary E. Humes' +p45464 +sa(dp45465 +g25273 +S'graphite' +p45466 +sg25267 +g27 +sg25275 +S'1766' +p45467 +sg25268 +S"Junon commande aux Furies d'aller au Palais d'Athamas" +p45468 +sg25270 +S'Philippe Louis Parizeau' +p45469 +sa(dp45470 +g25267 +g27 +sg25268 +S'Book with U.S. Seal on Cover' +p45471 +sg25270 +S'Wayne White' +p45472 +sa(dp45473 +g25267 +g27 +sg25268 +S'Bishop Hill: Bandwagon' +p45474 +sg25270 +S'H. Langden Brown' +p45475 +sa(dp45476 +g25267 +g27 +sg25268 +S'Bandbox' +p45477 +sg25270 +S'American 20th Century' +p45478 +sa(dp45479 +g25267 +g27 +sg25268 +S'Bell' +p45480 +sg25270 +S'American 20th Century' +p45481 +sa(dp45482 +g25267 +g27 +sg25268 +S'Hoe' +p45483 +sg25270 +S'Cornelius Christoffels' +p45484 +sa(dp45485 +g25267 +g27 +sg25268 +S'Gong' +p45486 +sg25270 +S'Albert Rudin' +p45487 +sa(dp45488 +g25267 +g27 +sg25268 +S'Bell' +p45489 +sg25270 +S'American 20th Century' +p45490 +sa(dp45491 +g25267 +g27 +sg25268 +S'Andiron' +p45492 +sg25270 +S'Donald Streeter' +p45493 +sa(dp45494 +g25267 +g27 +sg25268 +S'Bandbox' +p45495 +sg25270 +S'Gilbert Sackerman' +p45496 +sa(dp45497 +g25267 +g27 +sg25268 +S'Cheese Mold' +p45498 +sg25270 +S'Roberta Elvis' +p45499 +sa(dp45500 +g25273 +S'Widener Collection' +p45501 +sg25267 +g27 +sg25275 +S'\nbound volume with 17 drawings and 18 prints by various artists for the 1767-1771 ed. of "Les Metamorphoses d\'Ovide"' +p45502 +sg25268 +S'Album of Preliminary Drawings and Prints for "Les Metamorphoses d\'Ovide" (volume 4)' +p45503 +sg25270 +S'Various Artists' +p45504 +sa(dp45505 +g25267 +g27 +sg25268 +S'Bandbox Design' +p45506 +sg25270 +S'American 20th Century' +p45507 +sa(dp45508 +g25267 +g27 +sg25268 +S'Cake Basket' +p45509 +sg25270 +S'Mary Berner' +p45510 +sa(dp45511 +g25267 +g27 +sg25268 +S'Teapot' +p45512 +sg25270 +S'American 20th Century' +p45513 +sa(dp45514 +g25267 +g27 +sg25268 +S'Teapot' +p45515 +sg25270 +S'Leo Drozdoff' +p45516 +sa(dp45517 +g25267 +g27 +sg25268 +S'Mug' +p45518 +sg25270 +S'Charlotte Winter' +p45519 +sa(dp45520 +g25267 +g27 +sg25268 +S'Teapot' +p45521 +sg25270 +S'Franklin C. Moyan' +p45522 +sa(dp45523 +g25267 +g27 +sg25268 +S'Axe' +p45524 +sg25270 +S'Donald Streeter' +p45525 +sa(dp45526 +g25267 +g27 +sg25268 +S'Spoon' +p45527 +sg25270 +S'Lon Cronk' +p45528 +sa(dp45529 +g25267 +g27 +sg25268 +S'Teapot' +p45530 +sg25270 +S'John Garay' +p45531 +sa(dp45532 +g25267 +g27 +sg25268 +S'Bandbox' +p45533 +sg25270 +S'Alfonso Umana' +p45534 +sa(dp45535 +g25268 +S'Portrait of a Youth' +p45536 +sg25270 +S'Sandro Botticelli' +p45537 +sg25273 +S'tempera on panel' +p45538 +sg25275 +S'c. 1482/1485' +p45539 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000076c.jpg' +p45540 +sg25267 +g27 +sa(dp45541 +g25273 +S'(artist after)' +p45542 +sg25267 +g27 +sg25275 +S'\n' +p45543 +sg25268 +S"Junon commande aux Furies d'aller au Palais d'Athamas" +p45544 +sg25270 +S'Artist Information (' +p45545 +sa(dp45546 +g25267 +g27 +sg25268 +S'Caster' +p45547 +sg25270 +S'American 20th Century' +p45548 +sa(dp45549 +g25267 +g27 +sg25268 +S'Bandbox Cover' +p45550 +sg25270 +S'Gilbert Sackerman' +p45551 +sa(dp45552 +g25267 +g27 +sg25268 +S'Box' +p45553 +sg25270 +S'Edna C. Rex' +p45554 +sa(dp45555 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p45556 +sg25270 +S'Charles Charon' +p45557 +sa(dp45558 +g25267 +g27 +sg25268 +S'Coffee Pot' +p45559 +sg25270 +S'Charles Cullen' +p45560 +sa(dp45561 +g25267 +g27 +sg25268 +S'Butter Mold' +p45562 +sg25270 +S'Donald Streeter' +p45563 +sa(dp45564 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p45565 +sg25270 +S'Joseph Leboit' +p45566 +sa(dp45567 +g25267 +g27 +sg25268 +S'Bandbox' +p45568 +sg25270 +S'American 20th Century' +p45569 +sa(dp45570 +g25267 +g27 +sg25268 +S'Teapot (Detail)' +p45571 +sg25270 +S'Clayton Braun' +p45572 +sa(dp45573 +g25267 +g27 +sg25268 +S'Cow Bell' +p45574 +sg25270 +S'American 20th Century' +p45575 +sa(dp45576 +g25273 +S'graphite' +p45577 +sg25267 +g27 +sg25275 +S'1767' +p45578 +sg25268 +S"Cadmus et Mermione se retirent dans l'Illyrie et sont metamorphoses en Serpens" +p45579 +sg25270 +S'Charles Eisen' +p45580 +sa(dp45581 +g25267 +g27 +sg25268 +S'Stoneware Flask' +p45582 +sg25270 +S'V.L. Vance' +p45583 +sa(dp45584 +g25267 +g27 +sg25268 +S'Bell' +p45585 +sg25270 +S'L. B. Hartmann' +p45586 +sa(dp45587 +g25267 +g27 +sg25268 +S'Penny Bank' +p45588 +sg25270 +S'Grace Halpin' +p45589 +sa(dp45590 +g25267 +g27 +sg25268 +S'Carving' +p45591 +sg25270 +S'Raoul Du Bois' +p45592 +sa(dp45593 +g25267 +g27 +sg25268 +S'Andirons' +p45594 +sg25270 +S"James O'Mara" +p45595 +sa(dp45596 +g25267 +g27 +sg25268 +S'Andirons' +p45597 +sg25270 +S'Gerald Bernhardt' +p45598 +sa(dp45599 +g25267 +g27 +sg25268 +S'Andiron' +p45600 +sg25270 +S'Mildred Ford' +p45601 +sa(dp45602 +g25267 +g27 +sg25268 +S'Andiron' +p45603 +sg25270 +S'E.N. Dunne' +p45604 +sa(dp45605 +g25267 +g27 +sg25268 +S'Andiron' +p45606 +sg25270 +S'Hans Korsch' +p45607 +sa(dp45608 +g25267 +g27 +sg25268 +S'Andiron' +p45609 +sg25270 +S'Hans Korsch' +p45610 +sa(dp45611 +g25273 +S'(artist after)' +p45612 +sg25267 +g27 +sg25275 +S'\n' +p45613 +sg25268 +S"Cadmus et Hermione se retirent dans l'Illyrie et sont metamorphoses en Serpens" +p45614 +sg25270 +S'Artist Information (' +p45615 +sa(dp45616 +g25267 +g27 +sg25268 +S'Andiron' +p45617 +sg25270 +S'Salvatore Borrazzo' +p45618 +sa(dp45619 +g25267 +g27 +sg25268 +S'Andiron' +p45620 +sg25270 +S'Salvatore Borrazzo' +p45621 +sa(dp45622 +g25267 +g27 +sg25268 +S'Andiron' +p45623 +sg25270 +S'Gordon Sanborn' +p45624 +sa(dp45625 +g25267 +g27 +sg25268 +S'Andiron' +p45626 +sg25270 +S'Frank Fumagalli' +p45627 +sa(dp45628 +g25267 +g27 +sg25268 +S'Andiron' +p45629 +sg25270 +S'Helen Alpiner Blumenstiel' +p45630 +sa(dp45631 +g25267 +g27 +sg25268 +S'Andiron' +p45632 +sg25270 +S'Hans Korsch' +p45633 +sa(dp45634 +g25267 +g27 +sg25268 +S'Andiron' +p45635 +sg25270 +S'Jack Staloff' +p45636 +sa(dp45637 +g25267 +g27 +sg25268 +S'Strong Box' +p45638 +sg25270 +S'Frank Gray' +p45639 +sa(dp45640 +g25267 +g27 +sg25268 +S'Strong Box' +p45641 +sg25270 +S'Chris Makrenos' +p45642 +sa(dp45643 +g25267 +g27 +sg25268 +S'Wooden Work Box' +p45644 +sg25270 +S'Max Soltmann' +p45645 +sa(dp45646 +g25273 +S'graphite' +p45647 +sg25267 +g27 +sg25275 +S'1766' +p45648 +sg25268 +S'Persee presente la tete de Meduse a Atlas ...' +p45649 +sg25270 +S'Charles Eisen' +p45650 +sa(dp45651 +g25267 +g27 +sg25268 +S'Box' +p45652 +sg25270 +S'Frank Fumagalli' +p45653 +sa(dp45654 +g25267 +g27 +sg25268 +S'Drawing Instrument Box' +p45655 +sg25270 +S'Fred Hassebrock' +p45656 +sa(dp45657 +g25267 +g27 +sg25268 +S'Glove Box' +p45658 +sg25270 +S'Sebastian Simonet' +p45659 +sa(dp45660 +g25267 +g27 +sg25268 +S'Box' +p45661 +sg25270 +S'Frank Fumagalli' +p45662 +sa(dp45663 +g25267 +g27 +sg25268 +S'Small Decorated Box (side)' +p45664 +sg25270 +S'Isabella Ruth Doerfler' +p45665 +sa(dp45666 +g25267 +g27 +sg25268 +S'Small Decorated Box (front view)' +p45667 +sg25270 +S'Isabella Ruth Doerfler' +p45668 +sa(dp45669 +g25267 +g27 +sg25268 +S'Candle Box' +p45670 +sg25270 +S'Jacob Gielens' +p45671 +sa(dp45672 +g25267 +g27 +sg25268 +S'Copper Storage Box' +p45673 +sg25270 +S'Albert Pratt' +p45674 +sa(dp45675 +g25267 +g27 +sg25268 +S'Carved Storage or Pin Box' +p45676 +sg25270 +S'Rolland Ayres' +p45677 +sa(dp45678 +g25267 +g27 +sg25268 +S'Painted Tin Trinket Box' +p45679 +sg25270 +S'Grace Halpin' +p45680 +sa(dp45681 +g25273 +S'(artist after)' +p45682 +sg25267 +g27 +sg25275 +S'\n' +p45683 +sg25268 +S'Persee presente la tete de Meduse a Atlas ...' +p45684 +sg25270 +S'Artist Information (' +p45685 +sa(dp45686 +g25267 +g27 +sg25268 +S'Painted Tin Trinket Box' +p45687 +sg25270 +S'Grace Halpin' +p45688 +sa(dp45689 +g25267 +g27 +sg25268 +S'Bureau Box' +p45690 +sg25270 +S'Carl Buergerniss' +p45691 +sa(dp45692 +g25267 +g27 +sg25268 +S'Box for Small Jewelry' +p45693 +sg25270 +S'Carl Buergerniss' +p45694 +sa(dp45695 +g25267 +g27 +sg25268 +S'Jewelry or Sewing Box' +p45696 +sg25270 +S'George V. Vezolles' +p45697 +sa(dp45698 +g25267 +g27 +sg25268 +S'Jewel Casket' +p45699 +sg25270 +S'Ralph Atkinson' +p45700 +sa(dp45701 +g25267 +g27 +sg25268 +S'Jewel Box' +p45702 +sg25270 +S'Eleanor Gausser' +p45703 +sa(dp45704 +g25267 +g27 +sg25268 +S"Lady's Dressing Case" +p45705 +sg25270 +S'Thomas Holloway' +p45706 +sa(dp45707 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a0006390.jpg' +p45708 +sg25268 +S'Wood Box or Chest' +p45709 +sg25270 +S'Carol Larson' +p45710 +sa(dp45711 +g25267 +g27 +sg25268 +S'Game Box (For Poker Chips)' +p45712 +sg25270 +S'Francis Law Durand' +p45713 +sa(dp45714 +g25267 +g27 +sg25268 +S'Game Box (For Poker Chips)' +p45715 +sg25270 +S'Francis Law Durand' +p45716 +sa(dp45717 +g25273 +S'graphite' +p45718 +sg25267 +g27 +sg25275 +S'1766' +p45719 +sg25268 +S'Persee delivre Andromeda' +p45720 +sg25270 +S'Charles Eisen' +p45721 +sa(dp45722 +g25267 +g27 +sg25268 +S"Man's Hat Box" +p45723 +sg25270 +S'Lelah Nelson' +p45724 +sa(dp45725 +g25267 +g27 +sg25268 +S'Hat Box - Wood' +p45726 +sg25270 +S'Gerald Scalise' +p45727 +sa(dp45728 +g25267 +g27 +sg25268 +S'Epaulette Box' +p45729 +sg25270 +S'Cornelius Frazier' +p45730 +sa(dp45731 +g25267 +g27 +sg25268 +S'Epaulette Box' +p45732 +sg25270 +S'Cornelius Frazier' +p45733 +sa(dp45734 +g25267 +g27 +sg25268 +S'Wooden Cutlery Box' +p45735 +sg25270 +S'Erwin Stenzel' +p45736 +sa(dp45737 +g25267 +g27 +sg25268 +S'Knife Box' +p45738 +sg25270 +S'LeRoy Griffith' +p45739 +sa(dp45740 +g25267 +g27 +sg25268 +S'Sugar and Tea Box' +p45741 +sg25270 +S'Edward L. Loper' +p45742 +sa(dp45743 +g25267 +g27 +sg25268 +S'Knife and Spoon Box' +p45744 +sg25270 +S'Artist Information (' +p45745 +sa(dp45746 +g25267 +g27 +sg25268 +S'Knife Box' +p45747 +sg25270 +S'Harry Eisman' +p45748 +sa(dp45749 +g25267 +g27 +sg25268 +S'Knife Box' +p45750 +sg25270 +S'Eugene Croe' +p45751 +sa(dp45752 +g25273 +S'(artist after)' +p45753 +sg25267 +g27 +sg25275 +S'\n' +p45754 +sg25268 +S'Persee delivre Andromeda' +p45755 +sg25270 +S'Artist Information (' +p45756 +sa(dp45757 +g25267 +g27 +sg25268 +S'Knife Box - Mahogany' +p45758 +sg25270 +S'Henry Meyers' +p45759 +sa(dp45760 +g25267 +g27 +sg25268 +S'Knife Box' +p45761 +sg25270 +S'Artist Information (' +p45762 +sa(dp45763 +g25267 +g27 +sg25268 +S'Ginger Box Tin' +p45764 +sg25270 +S'J. Howard Iams' +p45765 +sa(dp45766 +g25267 +g27 +sg25268 +S'Tobacco Box Cover' +p45767 +sg25270 +S'Eugene C. Miller' +p45768 +sa(dp45769 +g25267 +g27 +sg25268 +S'Tobacco Box' +p45770 +sg25270 +S'Paul Poffinbarger' +p45771 +sa(dp45772 +g25267 +g27 +sg25268 +S'Bible Box' +p45773 +sg25270 +S'Raymond McGough' +p45774 +sa(dp45775 +g25267 +g27 +sg25268 +S'Desk Box' +p45776 +sg25270 +S'Leo Drozdoff' +p45777 +sa(dp45778 +g25267 +g27 +sg25268 +S'Desk Box' +p45779 +sg25270 +S'Mario De Ferrante' +p45780 +sa(dp45781 +g25267 +g27 +sg25268 +S'Bible Box' +p45782 +sg25270 +S'Francisco Alvarez' +p45783 +sa(dp45784 +g25267 +g27 +sg25268 +S'Box' +p45785 +sg25270 +S'Anne Ger' +p45786 +sa(dp45787 +g25273 +S'graphite' +p45788 +sg25267 +g27 +sg25275 +S'1767' +p45789 +sg25268 +S'Persee rend graces aux Dieux de sa victoire, et epouse Andromede' +p45790 +sg25270 +S'Charles Eisen' +p45791 +sa(dp45792 +g25267 +g27 +sg25268 +S'Box' +p45793 +sg25270 +S'Anne Ger' +p45794 +sa(dp45795 +g25267 +g27 +sg25268 +S'Bible Box' +p45796 +sg25270 +S'Bernard Gussow' +p45797 +sa(dp45798 +g25267 +g27 +sg25268 +S'Bible Box' +p45799 +sg25270 +S'Samuel Fineman' +p45800 +sa(dp45801 +g25267 +g27 +sg25268 +S'Bible Box' +p45802 +sg25270 +S'Bernard Gussow' +p45803 +sa(dp45804 +g25267 +g27 +sg25268 +S'Desk Box' +p45805 +sg25270 +S'Joseph Rothenberg' +p45806 +sa(dp45807 +g25267 +g27 +sg25268 +S'Box' +p45808 +sg25270 +S'Isidore Sovensky' +p45809 +sa(dp45810 +g25267 +g27 +sg25268 +S'Box' +p45811 +sg25270 +S'Isidore Sovensky' +p45812 +sa(dp45813 +g25267 +g27 +sg25268 +S'Box' +p45814 +sg25270 +S'Francis Borelli' +p45815 +sa(dp45816 +g25267 +g27 +sg25268 +S'Desk Box' +p45817 +sg25270 +S'Francis Borelli' +p45818 +sa(dp45819 +g25267 +g27 +sg25268 +S'Branding Iron' +p45820 +sg25270 +S'Elizabeth Johnson' +p45821 +sa(dp45822 +g25273 +S'(artist after)' +p45823 +sg25267 +g27 +sg25275 +S'\n' +p45824 +sg25268 +S'Persee rend graces aux Dieux de sa victoire, et epouse Andromede' +p45825 +sg25270 +S'Artist Information (' +p45826 +sa(dp45827 +g25267 +g27 +sg25268 +S'Branding Iron' +p45828 +sg25270 +S'Elizabeth Johnson' +p45829 +sa(dp45830 +g25267 +g27 +sg25268 +S'Branding Iron' +p45831 +sg25270 +S'Elizabeth Johnson' +p45832 +sa(dp45833 +g25267 +g27 +sg25268 +S'Branding Iron' +p45834 +sg25270 +S'Elizabeth Johnson' +p45835 +sa(dp45836 +g25267 +g27 +sg25268 +S'Branding Iron' +p45837 +sg25270 +S'Elizabeth Johnson' +p45838 +sa(dp45839 +g25267 +g27 +sg25268 +S'Branding Iron' +p45840 +sg25270 +S'Elizabeth Johnson' +p45841 +sa(dp45842 +g25267 +g27 +sg25268 +S'Branding Iron' +p45843 +sg25270 +S'Elizabeth Johnson' +p45844 +sa(dp45845 +g25267 +g27 +sg25268 +S'Branding Iron' +p45846 +sg25270 +S'Elizabeth Johnson' +p45847 +sa(dp45848 +g25267 +g27 +sg25268 +S"Lumberman's Brailing Pin" +p45849 +sg25270 +S'Frank Volem' +p45850 +sa(dp45851 +g25267 +g27 +sg25268 +S'Swinging Lamp Bracket' +p45852 +sg25270 +S'John H. Tercuzzi' +p45853 +sa(dp45854 +g25267 +g27 +sg25268 +S'Lamp Bracket' +p45855 +sg25270 +S'John H. Tercuzzi' +p45856 +sa(dp45857 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p45858 +sg25267 +g27 +sg25275 +S'1767' +p45859 +sg25268 +S'Phinee entre dans la Salle de Festin ... addressant le parole a Persee' +p45860 +sg25270 +S'Charles Monnet' +p45861 +sa(dp45862 +g25267 +g27 +sg25268 +S'Lamp Bracket' +p45863 +sg25270 +S'John H. Tercuzzi' +p45864 +sa(dp45865 +g25267 +g27 +sg25268 +S'Lamp Bracket' +p45866 +sg25270 +S'John H. Tercuzzi' +p45867 +sa(dp45868 +g25267 +g27 +sg25268 +S'Brace and Bit' +p45869 +sg25270 +S'Violet Hartenstein' +p45870 +sa(dp45871 +g25267 +g27 +sg25268 +S'Brace (Wooden)' +p45872 +sg25270 +S'Violet Hartenstein' +p45873 +sa(dp45874 +g25267 +g27 +sg25268 +S'Brace - For Drilling' +p45875 +sg25270 +S'David S. De Vault' +p45876 +sa(dp45877 +g25267 +g27 +sg25268 +S'Bit Brace' +p45878 +sg25270 +S'Alfonso Moreno' +p45879 +sa(dp45880 +g25267 +g27 +sg25268 +S"Carpenter's Brace" +p45881 +sg25270 +S'Frank Gray' +p45882 +sa(dp45883 +g25267 +g27 +sg25268 +S"Carpenter's Brace" +p45884 +sg25270 +S'Jacob Lipkin' +p45885 +sa(dp45886 +g25267 +g27 +sg25268 +S'Hand Tool' +p45887 +sg25270 +S'Thomas Holloway' +p45888 +sa(dp45889 +g25267 +g27 +sg25268 +S'Bit and Countersink' +p45890 +sg25270 +S'Fred Hassebrock' +p45891 +sa(dp45892 +g25273 +S'(artist after)' +p45893 +sg25267 +g27 +sg25275 +S'\n' +p45894 +sg25268 +S'Phinee entre dans la Salle de Festin ... addressant le parole a Persee' +p45895 +sg25270 +S'Artist Information (' +p45896 +sa(dp45897 +g25267 +g27 +sg25268 +S"Carpenter's Brace" +p45898 +sg25270 +S'Henrietta S. Hukill' +p45899 +sa(dp45900 +g25267 +g27 +sg25268 +S"Carpenter's Brace" +p45901 +sg25270 +S'William H. Edwards' +p45902 +sa(dp45903 +g25267 +g27 +sg25268 +S'Spice Box' +p45904 +sg25270 +S'John Bodine' +p45905 +sa(dp45906 +g25267 +g27 +sg25268 +S'Spice Box' +p45907 +sg25270 +S'Frank Budash' +p45908 +sa(dp45909 +g25267 +g27 +sg25268 +S'Cabinet Spice Box' +p45910 +sg25270 +S'Edward L. Loper' +p45911 +sa(dp45912 +g25267 +g27 +sg25268 +S'Spice Box' +p45913 +sg25270 +S'Lloyd Charles Lemcke' +p45914 +sa(dp45915 +g25267 +g27 +sg25268 +S'Spice Box' +p45916 +sg25270 +S'Edward L. Loper' +p45917 +sa(dp45918 +g25267 +g27 +sg25268 +S'Snuff Box' +p45919 +sg25270 +S'Edward DiGennero' +p45920 +sa(dp45921 +g25267 +g27 +sg25268 +S'Snuff Box' +p45922 +sg25270 +S'Ann Gene Buckley' +p45923 +sa(dp45924 +g25267 +g27 +sg25268 +S'Snuff Box' +p45925 +sg25270 +S'Madeline Arnold' +p45926 +sa(dp45927 +g25268 +S'Perseus Turning Phinneas to Stone with the Head of Medusa' +p45928 +sg25270 +S'Charles Monnet' +p45929 +sg25273 +S'pen and black ink with brown wash over traces of graphite, with double border line by the artist in pen and gray ink, on laid paper' +p45930 +sg25275 +S'1767' +p45931 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a00060d6.jpg' +p45932 +sg25267 +g27 +sa(dp45933 +g25267 +g27 +sg25268 +S'Snuff Box' +p45934 +sg25270 +S'Alf Bruseth' +p45935 +sa(dp45936 +g25267 +g27 +sg25268 +S'Snuff Box' +p45937 +sg25270 +S'Donald Streeter' +p45938 +sa(dp45939 +g25267 +g27 +sg25268 +S'Snuff Box' +p45940 +sg25270 +S'Alfred Walbeck' +p45941 +sa(dp45942 +g25267 +g27 +sg25268 +S'Snuff Box' +p45943 +sg25270 +S'Marie Famularo' +p45944 +sa(dp45945 +g25267 +g27 +sg25268 +S'Branding Hammer' +p45946 +sg25270 +S'Joseph L. Boyd' +p45947 +sa(dp45948 +g25267 +g27 +sg25268 +S'Branding Iron Used for Boxes and Bags' +p45949 +sg25270 +S'Ralph Russell' +p45950 +sa(dp45951 +g25267 +g27 +sg25268 +S'Fish Marker' +p45952 +sg25270 +S'Lloyd Charles Lemcke' +p45953 +sa(dp45954 +g25267 +g27 +sg25268 +S'Log Marker' +p45955 +sg25270 +S'Frank Volem' +p45956 +sa(dp45957 +g25267 +g27 +sg25268 +S'Log Marker' +p45958 +sg25270 +S'Samuel Faigin' +p45959 +sa(dp45960 +g25267 +g27 +sg25268 +S'Branding Iron' +p45961 +sg25270 +S'Henry Rasmusen' +p45962 +sa(dp45963 +g25273 +S'(artist after)' +p45964 +sg25267 +g27 +sg25275 +S'\n' +p45965 +sg25268 +S'Persee ... presente la tete de Meduse' +p45966 +sg25270 +S'Artist Information (' +p45967 +sa(dp45968 +g25267 +g27 +sg25268 +S'Branding Iron' +p45969 +sg25270 +S'Eugene Upton' +p45970 +sa(dp45971 +g25267 +g27 +sg25268 +S'Branding Iron' +p45972 +sg25270 +S'Elizabeth Chambers' +p45973 +sa(dp45974 +g25267 +g27 +sg25268 +S'Branding Iron' +p45975 +sg25270 +S'Elizabeth Chambers' +p45976 +sa(dp45977 +g25267 +g27 +sg25268 +S'Branding Iron' +p45978 +sg25270 +S'Alfonso Moreno' +p45979 +sa(dp45980 +g25267 +g27 +sg25268 +S'Branding Iron' +p45981 +sg25270 +S'Fred Hassebrock' +p45982 +sa(dp45983 +g25267 +g27 +sg25268 +S'Branding Iron' +p45984 +sg25270 +S'J. Henry Marley' +p45985 +sa(dp45986 +g25267 +g27 +sg25268 +S'Branding Iron' +p45987 +sg25270 +S'Geoffrey Holt' +p45988 +sa(dp45989 +g25267 +g27 +sg25268 +S'Branding Iron' +p45990 +sg25270 +S'J. Henry Marley' +p45991 +sa(dp45992 +g25267 +g27 +sg25268 +S'Branding Iron' +p45993 +sg25270 +S'Elizabeth Johnson' +p45994 +sa(dp45995 +g25267 +g27 +sg25268 +S'Branding Iron' +p45996 +sg25270 +S'Elizabeth Johnson' +p45997 +sa(dp45998 +g25273 +S'graphite' +p45999 +sg25267 +g27 +sg25275 +S'1767' +p46000 +sg25268 +S'Minerve va sur le Mont Helicon our visiter les Muses' +p46001 +sg25270 +S'Charles Eisen' +p46002 +sa(dp46003 +g25267 +g27 +sg25268 +S'Branding Iron' +p46004 +sg25270 +S'Elizabeth Johnson' +p46005 +sa(dp46006 +g25267 +g27 +sg25268 +S'Branding Iron' +p46007 +sg25270 +S'Elizabeth Johnson' +p46008 +sa(dp46009 +g25267 +g27 +sg25268 +S'Branding Iron' +p46010 +sg25270 +S'Elizabeth Johnson' +p46011 +sa(dp46012 +g25267 +g27 +sg25268 +S'Branding Iron' +p46013 +sg25270 +S'Elizabeth Johnson' +p46014 +sa(dp46015 +g25267 +g27 +sg25268 +S'Branding Iron' +p46016 +sg25270 +S'Elizabeth Johnson' +p46017 +sa(dp46018 +g25267 +g27 +sg25268 +S'Branding Iron' +p46019 +sg25270 +S'Elizabeth Johnson' +p46020 +sa(dp46021 +g25267 +g27 +sg25268 +S'Branding Iron' +p46022 +sg25270 +S'Elizabeth Johnson' +p46023 +sa(dp46024 +g25267 +g27 +sg25268 +S'Branding Iron' +p46025 +sg25270 +S'Elizabeth Johnson' +p46026 +sa(dp46027 +g25267 +g27 +sg25268 +S'Branding Iron' +p46028 +sg25270 +S'Elizabeth Johnson' +p46029 +sa(dp46030 +g25267 +g27 +sg25268 +S'Branding Iron' +p46031 +sg25270 +S'Elizabeth Johnson' +p46032 +sa(dp46033 +g25273 +S'(artist after)' +p46034 +sg25267 +g27 +sg25275 +S'\n' +p46035 +sg25268 +S'Minerve va sur le Mont Helicon pour visiter les Muses' +p46036 +sg25270 +S'Artist Information (' +p46037 +sa(dp46038 +g25267 +g27 +sg25268 +S'Branding Iron' +p46039 +sg25270 +S'Elizabeth Johnson' +p46040 +sa(dp46041 +g25267 +g27 +sg25268 +S'Branding Iron' +p46042 +sg25270 +S'Elizabeth Johnson' +p46043 +sa(dp46044 +g25267 +g27 +sg25268 +S'Branding Iron' +p46045 +sg25270 +S'Elizabeth Johnson' +p46046 +sa(dp46047 +g25267 +g27 +sg25268 +S'Branding Iron' +p46048 +sg25270 +S'Elizabeth Johnson' +p46049 +sa(dp46050 +g25267 +g27 +sg25268 +S'Branding Iron' +p46051 +sg25270 +S'Elizabeth Johnson' +p46052 +sa(dp46053 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46054 +sg25270 +S'J. Henry Marley' +p46055 +sa(dp46056 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46057 +sg25270 +S'J. Henry Marley' +p46058 +sa(dp46059 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46060 +sg25270 +S'J. Henry Marley' +p46061 +sa(dp46062 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46063 +sg25270 +S'J. Henry Marley' +p46064 +sa(dp46065 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46066 +sg25270 +S'J. Henry Marley' +p46067 +sa(dp46068 +g25273 +S'graphite' +p46069 +sg25267 +g27 +sg25275 +S'1767' +p46070 +sg25268 +S"Venus prie son Fils de percer d'une de ses Fleches le Coeur de Pluton" +p46071 +sg25270 +S'Charles Eisen' +p46072 +sa(dp46073 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46074 +sg25270 +S'J. Henry Marley' +p46075 +sa(dp46076 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46077 +sg25270 +S'J. Henry Marley' +p46078 +sa(dp46079 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46080 +sg25270 +S'J. Henry Marley' +p46081 +sa(dp46082 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46083 +sg25270 +S'J. Henry Marley' +p46084 +sa(dp46085 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46086 +sg25270 +S'J. Henry Marley' +p46087 +sa(dp46088 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46089 +sg25270 +S'J. Henry Marley' +p46090 +sa(dp46091 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46092 +sg25270 +S'J. Henry Marley' +p46093 +sa(dp46094 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46095 +sg25270 +S'J. Henry Marley' +p46096 +sa(dp46097 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46098 +sg25270 +S'J. Henry Marley' +p46099 +sa(dp46100 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46101 +sg25270 +S'J. Henry Marley' +p46102 +sa(dp46103 +g25273 +S'(artist after)' +p46104 +sg25267 +g27 +sg25275 +S'\n' +p46105 +sg25268 +S"Venus prie son Fils de percer d'une deses Flechs le Coeur de Pluton" +p46106 +sg25270 +S'Artist Information (' +p46107 +sa(dp46108 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46109 +sg25270 +S'J. Henry Marley' +p46110 +sa(dp46111 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46112 +sg25270 +S'J. Henry Marley' +p46113 +sa(dp46114 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46115 +sg25270 +S'J. Henry Marley' +p46116 +sa(dp46117 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46118 +sg25270 +S'J. Henry Marley' +p46119 +sa(dp46120 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46121 +sg25270 +S'J. Henry Marley' +p46122 +sa(dp46123 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46124 +sg25270 +S'J. Henry Marley' +p46125 +sa(dp46126 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46127 +sg25270 +S'J. Henry Marley' +p46128 +sa(dp46129 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46130 +sg25270 +S'J. Henry Marley' +p46131 +sa(dp46132 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46133 +sg25270 +S'J. Henry Marley' +p46134 +sa(dp46135 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46136 +sg25270 +S'J. Henry Marley' +p46137 +sa(dp46138 +g25273 +S', 1767' +p46139 +sg25267 +g27 +sg25275 +S'\n' +p46140 +sg25268 +S'Pluton enleve Proserpine et convertit en Montaine Cyane ...' +p46141 +sg25270 +S'Jean-Michel Moreau the Younger' +p46142 +sa(dp46143 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46144 +sg25270 +S'J. Henry Marley' +p46145 +sa(dp46146 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46147 +sg25270 +S'J. Henry Marley' +p46148 +sa(dp46149 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46150 +sg25270 +S'J. Henry Marley' +p46151 +sa(dp46152 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46153 +sg25270 +S'J. Henry Marley' +p46154 +sa(dp46155 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46156 +sg25270 +S'J. Henry Marley' +p46157 +sa(dp46158 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46159 +sg25270 +S'J. Henry Marley' +p46160 +sa(dp46161 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46162 +sg25270 +S'J. Henry Marley' +p46163 +sa(dp46164 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46165 +sg25270 +S'J. Henry Marley' +p46166 +sa(dp46167 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46168 +sg25270 +S'J. Henry Marley' +p46169 +sa(dp46170 +g25267 +g27 +sg25268 +S'Cattle Brand' +p46171 +sg25270 +S'J. Henry Marley' +p46172 +sa(dp46173 +g25273 +S'(artist after)' +p46174 +sg25267 +g27 +sg25275 +S'\n' +p46175 +sg25268 +S"Pluton enl\xc3\xa8ve Proserpine et convertit en Fontaine Cyan\xc3\xa9 qui vouloit s'y opposer" +p46176 +sg25270 +S'Artist Information (' +p46177 +sa(dp46178 +g25267 +g27 +sg25268 +S'Butter Mold' +p46179 +sg25270 +S'John Price' +p46180 +sa(dp46181 +g25267 +g27 +sg25268 +S'Butter Mold' +p46182 +sg25270 +S'Wilbur M Rice' +p46183 +sa(dp46184 +g25267 +g27 +sg25268 +S'Butter Mold' +p46185 +sg25270 +S'Wilbur M Rice' +p46186 +sa(dp46187 +g25267 +g27 +sg25268 +S'Butter Stamp' +p46188 +sg25270 +S'Florence Choate' +p46189 +sa(dp46190 +g25267 +g27 +sg25268 +S'Butter Mold' +p46191 +sg25270 +S'Michael Dadante' +p46192 +sa(dp46193 +g25267 +g27 +sg25268 +S'Butter Mold' +p46194 +sg25270 +S'Robert Pohle' +p46195 +sa(dp46196 +g25267 +g27 +sg25268 +S'Butter Mold' +p46197 +sg25270 +S'Michael Riccitelli' +p46198 +sa(dp46199 +g25267 +g27 +sg25268 +S'Butter Mold' +p46200 +sg25270 +S'Roy Weber' +p46201 +sa(dp46202 +g25267 +g27 +sg25268 +S'Butter Mold' +p46203 +sg25270 +S'Roberta Spicer' +p46204 +sa(dp46205 +g25267 +g27 +sg25268 +S'Butter Mold' +p46206 +sg25270 +S'Roberta Spicer' +p46207 +sa(dp46208 +g25273 +S', 1767' +p46209 +sg25267 +g27 +sg25275 +S'\n' +p46210 +sg25268 +S'Ceres apprend par Arethuse que Pluton avoit enleve sa Fille Proserpine' +p46211 +sg25270 +S'Jean-Michel Moreau the Younger' +p46212 +sa(dp46213 +g25267 +g27 +sg25268 +S'Butter Mold' +p46214 +sg25270 +S'Michael Rekucki' +p46215 +sa(dp46216 +g25267 +g27 +sg25268 +S'Butter Mold' +p46217 +sg25270 +S'Charlotte Angus' +p46218 +sa(dp46219 +g25267 +g27 +sg25268 +S'Butter Mold' +p46220 +sg25270 +S'Marie Lutrell' +p46221 +sa(dp46222 +g25267 +g27 +sg25268 +S'Butter Mold' +p46223 +sg25270 +S'John Hall' +p46224 +sa(dp46225 +g25267 +g27 +sg25268 +S'Brush Cutter' +p46226 +sg25270 +S'Nicholas Amantea' +p46227 +sa(dp46228 +g25267 +g27 +sg25268 +S'Broom' +p46229 +sg25270 +S'Peter Antonelli' +p46230 +sa(dp46231 +g25267 +g27 +sg25268 +S'Squab Broiler' +p46232 +sg25270 +S'Francis Jennings' +p46233 +sa(dp46234 +g25267 +g27 +sg25268 +S'Bristle Remover for Hogs' +p46235 +sg25270 +S'Frank Volem' +p46236 +sa(dp46237 +g25267 +g27 +sg25268 +S"Cowboy's Hackamore Bit" +p46238 +sg25270 +S'Cecil Smith' +p46239 +sa(dp46240 +g25267 +g27 +sg25268 +S'Bridle Bit' +p46241 +sg25270 +S'Cecil Smith' +p46242 +sa(dp46243 +g25268 +S'A Miracle of Saint Francis of Paola' +p46244 +sg25270 +S'Sebastiano Ricci' +p46245 +sg25273 +S'oil on canvas' +p46246 +sg25275 +S'1733' +p46247 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000061d.jpg' +p46248 +sg25267 +g27 +sa(dp46249 +g25273 +S'(artist after)' +p46250 +sg25267 +g27 +sg25275 +S'\n' +p46251 +sg25268 +S'C\xc3\xa9r\xc3\xa8s apprend par Ar\xc3\xa9thuse que Pluton avoit enlev\xc3\xa9 Proserpine' +p46252 +sg25270 +S'Artist Information (' +p46253 +sa(dp46254 +g25267 +g27 +sg25268 +S'"Jay Eye See" Driving Bit' +p46255 +sg25270 +S'Harold Ballerd' +p46256 +sa(dp46257 +g25267 +g27 +sg25268 +S'Iron Breast Plate' +p46258 +sg25270 +S'American 20th Century' +p46259 +sa(dp46260 +g25267 +g27 +sg25268 +S"Lead Miner's Wooden Bucket" +p46261 +sg25270 +S'Artist Information (' +p46262 +sa(dp46263 +g25267 +g27 +sg25268 +S'Sugar Bucket' +p46264 +sg25270 +S'Ardella Watkins' +p46265 +sa(dp46266 +g25267 +g27 +sg25268 +S'Wooden Bucket' +p46267 +sg25270 +S'Charles Garjian' +p46268 +sa(dp46269 +g25267 +g27 +sg25268 +S'Sugar Bucket' +p46270 +sg25270 +S'John Jordan' +p46271 +sa(dp46272 +g25267 +g27 +sg25268 +S'Sugar Pail with Cover' +p46273 +sg25270 +S'Erwin Stenzel' +p46274 +sa(dp46275 +g25267 +g27 +sg25268 +S"Miner's Ore Bucket" +p46276 +sg25270 +S'Max Fernekes' +p46277 +sa(dp46278 +g25267 +g27 +sg25268 +S'Milk Bucket' +p46279 +sg25270 +S'Jacob Gielens' +p46280 +sa(dp46281 +g25267 +g27 +sg25268 +S'Bucket' +p46282 +sg25270 +S'Frank Budash' +p46283 +sa(dp46284 +g25273 +S', 1766' +p46285 +sg25267 +g27 +sg25275 +S'\n' +p46286 +sg25268 +S"Ou fuyez vous Belle Arethuse, s'ecrie alors Alphee, ou fuyez vous" +p46287 +sg25270 +S'Jean-Michel Moreau the Younger' +p46288 +sa(dp46289 +g25267 +g27 +sg25268 +S'Wooden Sugar Bucket' +p46290 +sg25270 +S'Annie B. Johnston' +p46291 +sa(dp46292 +g25267 +g27 +sg25268 +S'Button Hole Cutter' +p46293 +sg25270 +S'Sydney Roberts' +p46294 +sa(dp46295 +g25267 +g27 +sg25268 +S'Butter Firkin' +p46296 +sg25270 +S'Orison Daeda' +p46297 +sa(dp46298 +g25267 +g27 +sg25268 +S'Butter Tub' +p46299 +sg25270 +S'Eugene C. Miller' +p46300 +sa(dp46301 +g25267 +g27 +sg25268 +S'Butter Tub' +p46302 +sg25270 +S'Edward Unger' +p46303 +sa(dp46304 +g25267 +g27 +sg25268 +S'Butter Mold' +p46305 +sg25270 +S'Harry Mann Waddell' +p46306 +sa(dp46307 +g25267 +g27 +sg25268 +S'Butter Mold' +p46308 +sg25270 +S'Edward L. Loper' +p46309 +sa(dp46310 +g25267 +g27 +sg25268 +S'Butter Molder' +p46311 +sg25270 +S'Della Button' +p46312 +sa(dp46313 +g25267 +g27 +sg25268 +S'Butter Worker' +p46314 +sg25270 +S'Gene Luedke' +p46315 +sa(dp46316 +g25267 +g27 +sg25268 +S'Butter Scoop' +p46317 +sg25270 +S'Chris Makrenos' +p46318 +sa(dp46319 +g25273 +S'(artist after)' +p46320 +sg25267 +g27 +sg25275 +S'\n' +p46321 +sg25268 +S"O\xc3\xb9 fuyez vous Belle Ar\xc3\xa9thuse, s'\xc3\xa9crie alors Alph\xc3\xa9e, o\xc3\xb9 fuyez-vous" +p46322 +sg25270 +S'Artist Information (' +p46323 +sa(dp46324 +g25267 +g27 +sg25268 +S'Butter Mold' +p46325 +sg25270 +S'John Hall' +p46326 +sa(dp46327 +g25267 +g27 +sg25268 +S'Butter Worker' +p46328 +sg25270 +S'Hester Duany' +p46329 +sa(dp46330 +g25267 +g27 +sg25268 +S'Butter Ladle' +p46331 +sg25270 +S'Alexander Anderson' +p46332 +sa(dp46333 +g25267 +g27 +sg25268 +S'Butter Paddle' +p46334 +sg25270 +S'James Drake' +p46335 +sa(dp46336 +g25267 +g27 +sg25268 +S'Butter Mold - Burr Design' +p46337 +sg25270 +S'Lawrence Flynn' +p46338 +sa(dp46339 +g25267 +g27 +sg25268 +S'Butter Print and Mold' +p46340 +sg25270 +S'Georgine E. Mason' +p46341 +sa(dp46342 +g25267 +g27 +sg25268 +S'Butter Print and Mold' +p46343 +sg25270 +S'Anthony Zuccarello' +p46344 +sa(dp46345 +g25267 +g27 +sg25268 +S'Wooden Butter Stamp' +p46346 +sg25270 +S'Frank Gray' +p46347 +sa(dp46348 +g25267 +g27 +sg25268 +S'Butter Mold' +p46349 +sg25270 +S'Mary Owen' +p46350 +sa(dp46351 +g25267 +g27 +sg25268 +S'Butter Mold' +p46352 +sg25270 +S'Mary Owen' +p46353 +sa(dp46354 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p46355 +sg25267 +g27 +sg25275 +S'1767' +p46356 +sg25268 +S'Ceres Metamorphose en Lynx Lyncus ...' +p46357 +sg25270 +S'Charles Monnet' +p46358 +sa(dp46359 +g25267 +g27 +sg25268 +S'Butter Molds' +p46360 +sg25270 +S'Harvey Beck' +p46361 +sa(dp46362 +g25267 +g27 +sg25268 +S'Butter Molds' +p46363 +sg25270 +S'Robert Pohle' +p46364 +sa(dp46365 +g25267 +g27 +sg25268 +S'Butter Mold' +p46366 +sg25270 +S'Franklyn Syres' +p46367 +sa(dp46368 +g25267 +g27 +sg25268 +S'Butter Mold' +p46369 +sg25270 +S'Samuel W. Ford' +p46370 +sa(dp46371 +g25267 +g27 +sg25268 +S'Butter Mold' +p46372 +sg25270 +S'Wilford H. Shurtliff' +p46373 +sa(dp46374 +g25267 +g27 +sg25268 +S'Candlestick' +p46375 +sg25270 +S'Jack Staloff' +p46376 +sa(dp46377 +g25267 +g27 +sg25268 +S'Candlestick' +p46378 +sg25270 +S'Henry Meyers' +p46379 +sa(dp46380 +g25267 +g27 +sg25268 +S'Candlestick' +p46381 +sg25270 +S'Alfred Walbeck' +p46382 +sa(dp46383 +g25267 +g27 +sg25268 +S'Candlestick' +p46384 +sg25270 +S'Jack Staloff' +p46385 +sa(dp46386 +g25267 +g27 +sg25268 +S'Candlestick' +p46387 +sg25270 +S'Jack Staloff' +p46388 +sa(dp46389 +g25273 +S'(artist after)' +p46390 +sg25267 +g27 +sg25275 +S'\n' +p46391 +sg25268 +S'Ceres Metamorphose en Lynx Lyncus ...' +p46392 +sg25270 +S'Artist Information (' +p46393 +sa(dp46394 +g25267 +g27 +sg25268 +S'Candlestick' +p46395 +sg25270 +S"James O'Mara" +p46396 +sa(dp46397 +g25267 +g27 +sg25268 +S'Candlestick' +p46398 +sg25270 +S'John Jordan' +p46399 +sa(dp46400 +g25267 +g27 +sg25268 +S'Candlestick' +p46401 +sg25270 +S'Philip Johnson' +p46402 +sa(dp46403 +g25267 +g27 +sg25268 +S'Candlestick' +p46404 +sg25270 +S'Philip Johnson' +p46405 +sa(dp46406 +g25267 +g27 +sg25268 +S'Candlestick' +p46407 +sg25270 +S'Philip Johnson' +p46408 +sa(dp46409 +g25267 +g27 +sg25268 +S'Candlestick' +p46410 +sg25270 +S'Philip Johnson' +p46411 +sa(dp46412 +g25267 +g27 +sg25268 +S'Candlestick' +p46413 +sg25270 +S'Philip Johnson' +p46414 +sa(dp46415 +g25267 +g27 +sg25268 +S'Cancelling Machine' +p46416 +sg25270 +S'Samuel Fineman' +p46417 +sa(dp46418 +g25267 +g27 +sg25268 +S'Candlestick' +p46419 +sg25270 +S'Carl Buergerniss' +p46420 +sa(dp46421 +g25267 +g27 +sg25268 +S'Candlestick' +p46422 +sg25270 +S'Milton Bevier' +p46423 +sa(dp46424 +g25273 +S'(artist after)' +p46425 +sg25267 +g27 +sg25275 +S'\n' +p46426 +sg25268 +S'Ceres Metamorphose en Lynx Lyncus ...' +p46427 +sg25270 +S'Artist Information (' +p46428 +sa(dp46429 +g25267 +g27 +sg25268 +S'Candlestick' +p46430 +sg25270 +S'Philip Johnson' +p46431 +sa(dp46432 +g25267 +g27 +sg25268 +S'Candlestick' +p46433 +sg25270 +S'Sydney Roberts' +p46434 +sa(dp46435 +g25267 +g27 +sg25268 +S'Candlestick' +p46436 +sg25270 +S'Mary Fitzgerald' +p46437 +sa(dp46438 +g25267 +g27 +sg25268 +S'Candlestick' +p46439 +sg25270 +S'William Vergani' +p46440 +sa(dp46441 +g25267 +g27 +sg25268 +S'Candlestick' +p46442 +sg25270 +S'Janet Riza' +p46443 +sa(dp46444 +g25267 +g27 +sg25268 +S'Candlestick' +p46445 +sg25270 +S'Arthur Wegg' +p46446 +sa(dp46447 +g25267 +g27 +sg25268 +S'Candlestick' +p46448 +sg25270 +S'John Hall' +p46449 +sa(dp46450 +g25267 +g27 +sg25268 +S'Candlestick' +p46451 +sg25270 +S'Irene M. Burge' +p46452 +sa(dp46453 +g25267 +g27 +sg25268 +S'Candlestick' +p46454 +sg25270 +S'James M. Lawson' +p46455 +sa(dp46456 +g25267 +g27 +sg25268 +S'Candlestick' +p46457 +sg25270 +S'Jack Staloff' +p46458 +sa(dp46459 +g25273 +S'graphite' +p46460 +sg25267 +g27 +sg25275 +S'1767' +p46461 +sg25268 +S'Arachne Metamorphosee en Araignee par Minerve' +p46462 +sg25270 +S'Charles Eisen' +p46463 +sa(dp46464 +g25267 +g27 +sg25268 +S'Candlestick' +p46465 +sg25270 +S'Irene M. Burge' +p46466 +sa(dp46467 +g25267 +g27 +sg25268 +S'Candlestick' +p46468 +sg25270 +S'Roger Deats' +p46469 +sa(dp46470 +g25267 +g27 +sg25268 +S'Brass Candlestick' +p46471 +sg25270 +S'Carl Buergerniss' +p46472 +sa(dp46473 +g25267 +g27 +sg25268 +S'Candlestick' +p46474 +sg25270 +S'Dorothy Posten' +p46475 +sa(dp46476 +g25267 +g27 +sg25268 +S'Candlestick' +p46477 +sg25270 +S'Alfred Walbeck' +p46478 +sa(dp46479 +g25267 +g27 +sg25268 +S'Candlestick' +p46480 +sg25270 +S'Henry Meyers' +p46481 +sa(dp46482 +g25267 +g27 +sg25268 +S'Candlestick' +p46483 +sg25270 +S'Henry Meyers' +p46484 +sa(dp46485 +g25267 +g27 +sg25268 +S'Candlestick' +p46486 +sg25270 +S'Albert Camilli' +p46487 +sa(dp46488 +g25267 +g27 +sg25268 +S'Candlestick' +p46489 +sg25270 +S'Janet Riza' +p46490 +sa(dp46491 +g25267 +g27 +sg25268 +S'Candlestick' +p46492 +sg25270 +S'Leslie Macklem' +p46493 +sa(dp46494 +g25273 +S'(artist after)' +p46495 +sg25267 +g27 +sg25275 +S'\n' +p46496 +sg25268 +S'Arachne Metamorphosee en Araignee par Minerve' +p46497 +sg25270 +S'Artist Information (' +p46498 +sa(dp46499 +g25267 +g27 +sg25268 +S'Candlestick Double' +p46500 +sg25270 +S'Mary Fitzgerald' +p46501 +sa(dp46502 +g25267 +g27 +sg25268 +S'Candlestick Holder' +p46503 +sg25270 +S'Herman Bader' +p46504 +sa(dp46505 +g25267 +g27 +sg25268 +S'Candlestick with Snuffer' +p46506 +sg25270 +S'Francis Law Durand' +p46507 +sa(dp46508 +g25267 +g27 +sg25268 +S'Candlestick and Holder' +p46509 +sg25270 +S'Franklyn Syres' +p46510 +sa(dp46511 +g25267 +g27 +sg25268 +S'Candlestick' +p46512 +sg25270 +S'Benjamin Resnick' +p46513 +sa(dp46514 +g25267 +g27 +sg25268 +S'Candlestick' +p46515 +sg25270 +S'Amelia Tuccio' +p46516 +sa(dp46517 +g25267 +g27 +sg25268 +S'Candlestick' +p46518 +sg25270 +S'Carl Strehlau' +p46519 +sa(dp46520 +g25267 +g27 +sg25268 +S'Candlestick' +p46521 +sg25270 +S'Mildred Ford' +p46522 +sa(dp46523 +g25267 +g27 +sg25268 +S'Candlestick' +p46524 +sg25270 +S'Eldon Allen' +p46525 +sa(dp46526 +g25267 +g27 +sg25268 +S'Candlestick' +p46527 +sg25270 +S'Samuel Fineman' +p46528 +sa(dp46529 +g25273 +S'pen and black ink and brush and brown ink with brown wash over graphite' +p46530 +sg25267 +g27 +sg25275 +S'1767' +p46531 +sg25268 +S'Apollon et Diane font mourir les enfants de Niobe' +p46532 +sg25270 +S'Charles Monnet' +p46533 +sa(dp46534 +g25267 +g27 +sg25268 +S'Candlestick' +p46535 +sg25270 +S'Gordon Sanborn' +p46536 +sa(dp46537 +g25267 +g27 +sg25268 +S'Candlestick' +p46538 +sg25270 +S'Herman Bader' +p46539 +sa(dp46540 +g25267 +g27 +sg25268 +S'Spiral Candlestick' +p46541 +sg25270 +S'William D. Somers' +p46542 +sa(dp46543 +g25267 +g27 +sg25268 +S'Candlestick' +p46544 +sg25270 +S'Howard Lumbard' +p46545 +sa(dp46546 +g25267 +g27 +sg25268 +S'Spiral Iron Candle Holder' +p46547 +sg25270 +S'Chris Makrenos' +p46548 +sa(dp46549 +g25267 +g27 +sg25268 +S'Candlestick' +p46550 +sg25270 +S'Selma Sandler' +p46551 +sa(dp46552 +g25267 +g27 +sg25268 +S'Candlestick' +p46553 +sg25270 +S'Helen Hobart' +p46554 +sa(dp46555 +g25267 +g27 +sg25268 +S'Candlestick' +p46556 +sg25270 +S'Florence Stevenson' +p46557 +sa(dp46558 +g25267 +g27 +sg25268 +S'Wick Trimmer' +p46559 +sg25270 +S'Samuel O. Klein' +p46560 +sa(dp46561 +g25267 +g27 +sg25268 +S'Candle Snuffer' +p46562 +sg25270 +S'Lee Brown' +p46563 +sa(dp46564 +g25273 +S'(artist after)' +p46565 +sg25267 +g27 +sg25275 +S'\n' +p46566 +sg25268 +S'Apollon et Diane font mourir les enfants de Niobe' +p46567 +sg25270 +S'Artist Information (' +p46568 +sa(dp46569 +g25267 +g27 +sg25268 +S'Candle Snuffer' +p46570 +sg25270 +S'Alfred Walbeck' +p46571 +sa(dp46572 +g25267 +g27 +sg25268 +S'Candle Snuffer' +p46573 +sg25270 +S'A.R. Tolman' +p46574 +sa(dp46575 +g25267 +g27 +sg25268 +S'Candle Snuffer, Trimmer & Tray' +p46576 +sg25270 +S'Eugene Bartz' +p46577 +sa(dp46578 +g25267 +g27 +sg25268 +S'Candle Snuffer' +p46579 +sg25270 +S'Erwin Schwabe' +p46580 +sa(dp46581 +g25267 +g27 +sg25268 +S'Wick Trimmer' +p46582 +sg25270 +S'Sydney Roberts' +p46583 +sa(dp46584 +g25267 +g27 +sg25268 +S'Candle Snuffer' +p46585 +sg25270 +S'Florence Stevenson' +p46586 +sa(dp46587 +g25267 +g27 +sg25268 +S'Candle Stand' +p46588 +sg25270 +S'Luella Schroeder' +p46589 +sa(dp46590 +g25267 +g27 +sg25268 +S'Candlestick' +p46591 +sg25270 +S'Paul Ward' +p46592 +sa(dp46593 +g25267 +g27 +sg25268 +S'Candle Holder' +p46594 +sg25270 +S'Arthur Wegg' +p46595 +sa(dp46596 +g25267 +g27 +sg25268 +S'Sconce' +p46597 +sg25270 +S'Charles Garjian' +p46598 +sa(dp46599 +g25268 +S'The Exaltation of the True Cross' +p46600 +sg25270 +S'Sebastiano Ricci' +p46601 +sg25273 +S'oil on canvas' +p46602 +sg25275 +S'1733' +p46603 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000061e.jpg' +p46604 +sg25267 +g27 +sa(dp46605 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p46606 +sg25267 +g27 +sg25275 +S'1767' +p46607 +sg25268 +S'Jupiter Metamorphose en Grenouilles des paysans qui avoient insulte Latone' +p46608 +sg25270 +S'Charles Monnet' +p46609 +sa(dp46610 +g25267 +g27 +sg25268 +S'Candlestick' +p46611 +sg25270 +S'Henry Meyers' +p46612 +sa(dp46613 +g25267 +g27 +sg25268 +S'Candlestick' +p46614 +sg25270 +S'Henry Meyers' +p46615 +sa(dp46616 +g25267 +g27 +sg25268 +S'Candlestick' +p46617 +sg25270 +S'Henry Meyers' +p46618 +sa(dp46619 +g25267 +g27 +sg25268 +S'Candlestick' +p46620 +sg25270 +S'Rollington Campbell' +p46621 +sa(dp46622 +g25267 +g27 +sg25268 +S'Pewter Candle Holder' +p46623 +sg25270 +S'Artist Information (' +p46624 +sa(dp46625 +g25267 +g27 +sg25268 +S'Candlestick' +p46626 +sg25270 +S'Sidney Liswood' +p46627 +sa(dp46628 +g25267 +g27 +sg25268 +S'Candlestick' +p46629 +sg25270 +S'Henry Meyers' +p46630 +sa(dp46631 +g25267 +g27 +sg25268 +S'Candlestick' +p46632 +sg25270 +S'Henry Meyers' +p46633 +sa(dp46634 +g25267 +g27 +sg25268 +S'Candlestick' +p46635 +sg25270 +S'Eugene Barrell' +p46636 +sa(dp46637 +g25267 +g27 +sg25268 +S'Candlestick' +p46638 +sg25270 +S'Arthur Wegg' +p46639 +sa(dp46640 +g25273 +S'(artist after)' +p46641 +sg25267 +g27 +sg25275 +S'\n' +p46642 +sg25268 +S'Jupiter Metamorphose en Grenouilles des paysans qui avoient insulte Latone' +p46643 +sg25270 +S'Artist Information (' +p46644 +sa(dp46645 +g25267 +g27 +sg25268 +S'Candlestick' +p46646 +sg25270 +S'Joseph Wolins' +p46647 +sa(dp46648 +g25267 +g27 +sg25268 +S'Candlestick' +p46649 +sg25270 +S'Mina Lowry' +p46650 +sa(dp46651 +g25267 +g27 +sg25268 +S'Copper Water Vessel' +p46652 +sg25270 +S'Ethel Clarke' +p46653 +sa(dp46654 +g25267 +g27 +sg25268 +S'Oil Can' +p46655 +sg25270 +S'Leslie Macklem' +p46656 +sa(dp46657 +g25267 +g27 +sg25268 +S'Whale Oil Can' +p46658 +sg25270 +S'Hugh Ryan' +p46659 +sa(dp46660 +g25267 +g27 +sg25268 +S'Syrup Container' +p46661 +sg25270 +S'Clarence Secor' +p46662 +sa(dp46663 +g25267 +g27 +sg25268 +S'Spouted Oil Can' +p46664 +sg25270 +S'Lloyd Charles Lemcke' +p46665 +sa(dp46666 +g25267 +g27 +sg25268 +S'Sperm Oil Can' +p46667 +sg25270 +S'Amelia Tuccio' +p46668 +sa(dp46669 +g25267 +g27 +sg25268 +S'Water Can' +p46670 +sg25270 +S'Mildred Ford' +p46671 +sa(dp46672 +g25267 +g27 +sg25268 +S'Oil Can' +p46673 +sg25270 +S'Maurice Van Felix' +p46674 +sa(dp46675 +g25273 +S', 1767' +p46676 +sg25267 +g27 +sg25275 +S'\n' +p46677 +sg25268 +S'Apollon apres avoir vaincu Marsyas ... le fait ecorcher vif' +p46678 +sg25270 +S'Jean-Michel Moreau the Younger' +p46679 +sa(dp46680 +g25267 +g27 +sg25268 +S'Coffee Can' +p46681 +sg25270 +S'J. Howard Iams' +p46682 +sa(dp46683 +g25267 +g27 +sg25268 +S'Oil Can with Spout' +p46684 +sg25270 +S'Earl Butlin' +p46685 +sa(dp46686 +g25267 +g27 +sg25268 +S'Scepter (Lumberjack Carving)' +p46687 +sg25270 +S'Walter Hochstrasser' +p46688 +sa(dp46689 +g25267 +g27 +sg25268 +S'Cane Head' +p46690 +sg25270 +S'Isidore Steinberg' +p46691 +sa(dp46692 +g25267 +g27 +sg25268 +S'Pewter Tray and Snuffers' +p46693 +sg25270 +S'Carmel Wilson' +p46694 +sa(dp46695 +g25267 +g27 +sg25268 +S'Candle Snuffer and Tray' +p46696 +sg25270 +S'Eleanor Gausser' +p46697 +sa(dp46698 +g25267 +g27 +sg25268 +S'Wick Trimmer' +p46699 +sg25270 +S'Herman O. Stroh' +p46700 +sa(dp46701 +g25267 +g27 +sg25268 +S'Drapery for Candlestick' +p46702 +sg25270 +S'Douglas Campbell' +p46703 +sa(dp46704 +g25267 +g27 +sg25268 +S'Wick Trimmer' +p46705 +sg25270 +S'Leslie Macklem' +p46706 +sa(dp46707 +g25267 +g27 +sg25268 +S'Church' +p46708 +sg25270 +S'Mina Lowry' +p46709 +sa(dp46710 +g25273 +S'(artist after)' +p46711 +sg25267 +g27 +sg25275 +S'\n' +p46712 +sg25268 +S'Apollon apr\xc3\xa8s avoir vaincu Marsyas, dans un d\xc3\xa9fi, le fait \xc3\xa9corcher vif' +p46713 +sg25270 +S'Artist Information (' +p46714 +sa(dp46715 +g25267 +g27 +sg25268 +S"Miner's Cart" +p46716 +sg25270 +S'Frank Eiseman' +p46717 +sa(dp46718 +g25267 +g27 +sg25268 +S'Carousel Horse' +p46719 +sg25270 +S'Ernest A. Towers, Jr.' +p46720 +sa(dp46721 +g25267 +g27 +sg25268 +S'Carousel Horse' +p46722 +sg25270 +S'Ernest A. Towers, Jr.' +p46723 +sa(dp46724 +g25267 +g27 +sg25268 +S'Carousel Horse' +p46725 +sg25270 +S'Samuel Fineman' +p46726 +sa(dp46727 +g25267 +g27 +sg25268 +S'Carrier' +p46728 +sg25270 +S'Wilbur M Rice' +p46729 +sa(dp46730 +g25267 +g27 +sg25268 +S'Baby Chaise' +p46731 +sg25270 +S'Henry Murphy' +p46732 +sa(dp46733 +g25267 +g27 +sg25268 +S'Baby Carriage' +p46734 +sg25270 +S'Edward L. Loper' +p46735 +sa(dp46736 +g25267 +g27 +sg25268 +S'Baby Carriage' +p46737 +sg25270 +S'Ernest A. Towers, Jr.' +p46738 +sa(dp46739 +g25267 +g27 +sg25268 +S'Baby Carriage' +p46740 +sg25270 +S'Artist Information (' +p46741 +sa(dp46742 +g25267 +g27 +sg25268 +S'Baby Carriage' +p46743 +sg25270 +S'Fred Hassebrock' +p46744 +sa(dp46745 +g25273 +S'graphite' +p46746 +sg25267 +g27 +sg25275 +S'1767' +p46747 +sg25268 +S'Teree apres avoir viole, et coupe la lange a Philomele sa belle soeur ...' +p46748 +sg25270 +S'Charles Eisen' +p46749 +sa(dp46750 +g25267 +g27 +sg25268 +S'Baby Carriage' +p46751 +sg25270 +S'Kurt Melzer' +p46752 +sa(dp46753 +g25267 +g27 +sg25268 +S'Carpet Stretching Device' +p46754 +sg25270 +S'Alexander Anderson' +p46755 +sa(dp46756 +g25267 +g27 +sg25268 +S'Iron Carpet Stretcher' +p46757 +sg25270 +S'Edgar L. Pearce' +p46758 +sa(dp46759 +g25267 +g27 +sg25268 +S'Carpet Stretcher' +p46760 +sg25270 +S'Howard Lumbard' +p46761 +sa(dp46762 +g25267 +g27 +sg25268 +S'Whiskey Canteen' +p46763 +sg25270 +S'John Koehl' +p46764 +sa(dp46765 +g25267 +g27 +sg25268 +S'Canteen' +p46766 +sg25270 +S'Edna C. Rex' +p46767 +sa(dp46768 +g25267 +g27 +sg25268 +S'Carousel Horse' +p46769 +sg25270 +S'Albert Ryder' +p46770 +sa(dp46771 +g25267 +g27 +sg25268 +S'Carousel Horse' +p46772 +sg25270 +S'John W. Kelleher' +p46773 +sa(dp46774 +g25267 +g27 +sg25268 +S'Carousel Horse' +p46775 +sg25270 +S'Henry Murphy' +p46776 +sa(dp46777 +g25267 +g27 +sg25268 +S'Wooden Cash Register' +p46778 +sg25270 +S'Wilbur M Rice' +p46779 +sa(dp46780 +g25273 +S'Widener Collection' +p46781 +sg25267 +g27 +sg25275 +S'\nbound volume with 18 drawings and 21 prints by various artists for the 1767-1771 ed. of "Les Metamorphoses d\'Ovide"' +p46782 +sg25268 +S'Album of Preliminary Drawings and Prints for "Les Metamorphoses d\'Ovide" (volume 5)' +p46783 +sg25270 +S'Various Artists' +p46784 +sa(dp46785 +g25267 +g27 +sg25268 +S'Hume Cash Register' +p46786 +sg25270 +S'Joseph Ficcadenti' +p46787 +sa(dp46788 +g25267 +g27 +sg25268 +S'Circus Wagon Decorative Carving' +p46789 +sg25270 +S'Harry King' +p46790 +sa(dp46791 +g25267 +g27 +sg25268 +S'Animal Head' +p46792 +sg25270 +S'Clayton Clements' +p46793 +sa(dp46794 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f9/a000f903.jpg' +p46795 +sg25268 +S'Lion' +p46796 +sg25270 +S'Katharine Merrill' +p46797 +sa(dp46798 +g25267 +g27 +sg25268 +S'Mask' +p46799 +sg25270 +S'Harry King' +p46800 +sa(dp46801 +g25267 +g27 +sg25268 +S'Head of a Leopard' +p46802 +sg25270 +S'Harry King' +p46803 +sa(dp46804 +g25267 +g27 +sg25268 +S'Circus Wagon Figure: Muse' +p46805 +sg25270 +S'John Matulis' +p46806 +sa(dp46807 +g25267 +g27 +sg25268 +S'Circus Wagon Figure: Pan' +p46808 +sg25270 +S'Katharine Merrill' +p46809 +sa(dp46810 +g25267 +g27 +sg25268 +S'Wood Carving - Eagle' +p46811 +sg25270 +S'Harry King' +p46812 +sa(dp46813 +g25267 +g27 +sg25268 +S'Wood Carving - Scroll' +p46814 +sg25270 +S'Lionel Ritchey' +p46815 +sa(dp46816 +g25273 +S'(artist after)' +p46817 +sg25267 +g27 +sg25275 +S'\n' +p46818 +sg25268 +S'Teree apres avoir viole, et coupe la lange Philomele sa belle soeur...' +p46819 +sg25270 +S'Artist Information (' +p46820 +sa(dp46821 +g25267 +g27 +sg25268 +S'Lunette - Massachusetts State Seal' +p46822 +sg25270 +S'Jane Iverson' +p46823 +sa(dp46824 +g25267 +g27 +sg25268 +S'Cartouche from Salem Gate' +p46825 +sg25270 +S'Alfred H. Smith' +p46826 +sa(dp46827 +g25267 +g27 +sg25268 +S'Wood Carving - Shell' +p46828 +sg25270 +S'Clayton Clements' +p46829 +sa(dp46830 +g25267 +g27 +sg25268 +S'Wood Carving - Scroll' +p46831 +sg25270 +S'Clayton Clements' +p46832 +sa(dp46833 +g25267 +g27 +sg25268 +S'Wood Carving' +p46834 +sg25270 +S'Gerard Barnett' +p46835 +sa(dp46836 +g25267 +g27 +sg25268 +S'Pair of Carved Wooden Arms' +p46837 +sg25270 +S'John Davis' +p46838 +sa(dp46839 +g25267 +g27 +sg25268 +S'Wood Carving' +p46840 +sg25270 +S'Clayton Clements' +p46841 +sa(dp46842 +g25267 +g27 +sg25268 +S'Wood Carving - Scroll' +p46843 +sg25270 +S'Clayton Clements' +p46844 +sa(dp46845 +g25267 +g27 +sg25268 +S'Wood Carving - Shell' +p46846 +sg25270 +S'Joseph Ficcadenti' +p46847 +sa(dp46848 +g25267 +g27 +sg25268 +S'Circus Wagon Figure' +p46849 +sg25270 +S'Alvin M. Gully' +p46850 +sa(dp46851 +g25273 +S'graphite' +p46852 +sg25267 +g27 +sg25275 +S'1767' +p46853 +sg25268 +S'Progne delivre Philomele de sa prison ...' +p46854 +sg25270 +S'Charles Eisen' +p46855 +sa(dp46856 +g25267 +g27 +sg25268 +S'Circus Wagon Figure' +p46857 +sg25270 +S'Howard Weld' +p46858 +sa(dp46859 +g25267 +g27 +sg25268 +S'Animal Head' +p46860 +sg25270 +S'Gerard Barnett' +p46861 +sa(dp46862 +g25267 +g27 +sg25268 +S'Lion Head' +p46863 +sg25270 +S'Clayton Clements' +p46864 +sa(dp46865 +g25267 +g27 +sg25268 +S'Needle Case' +p46866 +sg25270 +S'H. Langden Brown' +p46867 +sa(dp46868 +g25267 +g27 +sg25268 +S'Needle Case' +p46869 +sg25270 +S'Thomas Holloway' +p46870 +sa(dp46871 +g25267 +g27 +sg25268 +S'Needle and Pin Case' +p46872 +sg25270 +S'Ann Gene Buckley' +p46873 +sa(dp46874 +g25267 +g27 +sg25268 +S'Miniature Case' +p46875 +sg25270 +S'Thomas Holloway' +p46876 +sa(dp46877 +g25267 +g27 +sg25268 +S'Needle Case' +p46878 +sg25270 +S'Ruth Buker' +p46879 +sa(dp46880 +g25267 +g27 +sg25268 +S'Thimble Case' +p46881 +sg25270 +S'David P Willoughby' +p46882 +sa(dp46883 +g25267 +g27 +sg25268 +S'Carved Cameo in Daguerreotype Case' +p46884 +sg25270 +S'Clementine Fossek' +p46885 +sa(dp46886 +g25273 +S'(artist after)' +p46887 +sg25267 +g27 +sg25275 +S'\n' +p46888 +sg25268 +S'Progne delivre Philomele de sa prison ...' +p46889 +sg25270 +S'Artist Information (' +p46890 +sa(dp46891 +g25267 +g27 +sg25268 +S'Leather Cartridge Case' +p46892 +sg25270 +S'Fred Hassebrock' +p46893 +sa(dp46894 +g25267 +g27 +sg25268 +S'Cartridge Box and Bullet' +p46895 +sg25270 +S'Manuel G. Runyan' +p46896 +sa(dp46897 +g25267 +g27 +sg25268 +S'Daguerreotype Case' +p46898 +sg25270 +S'Robert Schuerer' +p46899 +sa(dp46900 +g25267 +g27 +sg25268 +S'Portrait Case' +p46901 +sg25270 +S'Anthony Zuccarello' +p46902 +sa(dp46903 +g25267 +g27 +sg25268 +S'Metal Frame Daguerreotype (Brass)' +p46904 +sg25270 +S'Frank M. Keane' +p46905 +sa(dp46906 +g25267 +g27 +sg25268 +S'Portrait Case' +p46907 +sg25270 +S'Vincent Murphy' +p46908 +sa(dp46909 +g25267 +g27 +sg25268 +S'Pocket Case' +p46910 +sg25270 +S'William Vergani' +p46911 +sa(dp46912 +g25267 +g27 +sg25268 +S'Portrait Case' +p46913 +sg25270 +S'Marie Famularo' +p46914 +sa(dp46915 +g25267 +g27 +sg25268 +S'Leather Medal Case' +p46916 +sg25270 +S'Marie Famularo' +p46917 +sa(dp46918 +g25267 +g27 +sg25268 +S'Replica of a Carriage' +p46919 +sg25270 +S'Emilio Zito' +p46920 +sa(dp46921 +g25273 +S', 1766' +p46922 +sg25267 +g27 +sg25275 +S'\n' +p46923 +sg25268 +S'Progne fait servir a Terree dans un repas la Tete de son fils Itys ...' +p46924 +sg25270 +S'Jean-Michel Moreau the Younger' +p46925 +sa(dp46926 +g25267 +g27 +sg25268 +S'Wooden Model - Coach & Four Horses' +p46927 +sg25270 +S'Laura Bilodeau' +p46928 +sa(dp46929 +g25267 +g27 +sg25268 +S'Wooden Model of Overland Stage' +p46930 +sg25270 +S'Lucille Chabot' +p46931 +sa(dp46932 +g25267 +g27 +sg25268 +S'Wood Carving - Profile Face' +p46933 +sg25270 +S'Gerard Barnett' +p46934 +sa(dp46935 +g25267 +g27 +sg25268 +S'Insignia Letter "S"' +p46936 +sg25270 +S'Katharine Merrill' +p46937 +sa(dp46938 +g25267 +g27 +sg25268 +S'Wood Carving - Horizontal' +p46939 +sg25270 +S'Clayton Clements' +p46940 +sa(dp46941 +g25267 +g27 +sg25268 +S'Wood Carving - Scroll' +p46942 +sg25270 +S'Lionel Ritchey' +p46943 +sa(dp46944 +g25267 +g27 +sg25268 +S'Wood Carving - Flower' +p46945 +sg25270 +S'Clayton Clements' +p46946 +sa(dp46947 +g25267 +g27 +sg25268 +S'Wood Carving - Flower' +p46948 +sg25270 +S'Lionel Ritchey' +p46949 +sa(dp46950 +g25267 +g27 +sg25268 +S'Wood Carving - Scroll' +p46951 +sg25270 +S'Harry King' +p46952 +sa(dp46953 +g25267 +g27 +sg25268 +S'Wooden Sugar Bowl' +p46954 +sg25270 +S'Edward L. Loper' +p46955 +sa(dp46956 +g25273 +S'(artist after)' +p46957 +sg25267 +g27 +sg25275 +S'\n' +p46958 +sg25268 +S"Progn\xc3\xa9 fait servir \xc3\xa0 Ter\xc3\xa9e dans un repas la T\xc3\xaate de son fils Itys qu'elle avoit poignard\xc3\xa9" +p46959 +sg25270 +S'Artist Information (' +p46960 +sa(dp46961 +g25267 +g27 +sg25268 +S'Bourganet' +p46962 +sg25270 +S'Aaron Fastovsky' +p46963 +sa(dp46964 +g25267 +g27 +sg25268 +S'Bandbox Design' +p46965 +sg25270 +S'American 20th Century' +p46966 +sa(dp46967 +g25267 +g27 +sg25268 +S'Button' +p46968 +sg25270 +S'John H. Tercuzzi' +p46969 +sa(dp46970 +g25267 +g27 +sg25268 +S'Butter Mold' +p46971 +sg25270 +S'Anthony Zuccarello' +p46972 +sa(dp46973 +g25267 +g27 +sg25268 +S'Butter Mold' +p46974 +sg25270 +S'Florence Choate' +p46975 +sa(dp46976 +g25267 +g27 +sg25268 +S'Butter Mold' +p46977 +sg25270 +S'Florence Choate' +p46978 +sa(dp46979 +g25267 +g27 +sg25268 +S'Branding Hammer' +p46980 +sg25270 +S'American 20th Century' +p46981 +sa(dp46982 +g25267 +g27 +sg25268 +S'Candlestick' +p46983 +sg25270 +S'Milton Grubstein' +p46984 +sa(dp46985 +g25267 +g27 +sg25268 +S'Candlestick' +p46986 +sg25270 +S'Yolande Delasser' +p46987 +sa(dp46988 +g25267 +g27 +sg25268 +S'Candlestick' +p46989 +sg25270 +S'Janet Riza' +p46990 +sa(dp46991 +g25273 +S'graphite' +p46992 +sg25267 +g27 +sg25275 +S'1767' +p46993 +sg25268 +S"Boree n'ayant pu obtenir Orithye de son Pere ..." +p46994 +sg25270 +S'Charles Eisen' +p46995 +sa(dp46996 +g25267 +g27 +sg25268 +S'Candlestick' +p46997 +sg25270 +S'Janet Riza' +p46998 +sa(dp46999 +g25267 +g27 +sg25268 +S'Candlestick' +p47000 +sg25270 +S'Holger Hansen' +p47001 +sa(dp47002 +g25267 +g27 +sg25268 +S'Snuffer' +p47003 +sg25270 +S'Hester Duany' +p47004 +sa(dp47005 +g25267 +g27 +sg25268 +S'Snuffer' +p47006 +sg25270 +S'Anna Aloisi' +p47007 +sa(dp47008 +g25267 +g27 +sg25268 +S'Candlestick' +p47009 +sg25270 +S'Marie Lutrell' +p47010 +sa(dp47011 +g25267 +g27 +sg25268 +S'Candlestick' +p47012 +sg25270 +S'Majel G. Claflin' +p47013 +sa(dp47014 +g25267 +g27 +sg25268 +S'Candlestick' +p47015 +sg25270 +S'American 20th Century' +p47016 +sa(dp47017 +g25267 +g27 +sg25268 +S'Candlestick' +p47018 +sg25270 +S'Henry Meyers' +p47019 +sa(dp47020 +g25267 +g27 +sg25268 +S'Candlestick' +p47021 +sg25270 +S'Margaret Stottlemeyer' +p47022 +sa(dp47023 +g25267 +g27 +sg25268 +S'Candle Maker' +p47024 +sg25270 +S'William Hoffman' +p47025 +sa(dp47026 +g25273 +S'(artist after)' +p47027 +sg25267 +g27 +sg25275 +S'\n' +p47028 +sg25268 +S"Boree n'ayant pu obtenir Orithye de son Pere ..." +p47029 +sg25270 +S'Artist Information (' +p47030 +sa(dp47031 +g25267 +g27 +sg25268 +S'Candlestick' +p47032 +sg25270 +S'Hester Duany' +p47033 +sa(dp47034 +g25267 +g27 +sg25268 +S'Candle Holder' +p47035 +sg25270 +S'Charlotte Winter' +p47036 +sa(dp47037 +g25267 +g27 +sg25268 +S'Snuffer' +p47038 +sg25270 +S'Hester Duany' +p47039 +sa(dp47040 +g25267 +g27 +sg25268 +S'Candlestick' +p47041 +sg25270 +S'Margaret Stottlemeyer' +p47042 +sa(dp47043 +g25267 +g27 +sg25268 +S'Snuffer' +p47044 +sg25270 +S'Hester Duany' +p47045 +sa(dp47046 +g25267 +g27 +sg25268 +S'Candlestick' +p47047 +sg25270 +S'Beulah Bradleigh' +p47048 +sa(dp47049 +g25267 +g27 +sg25268 +S'Candlestick' +p47050 +sg25270 +S'Janet Riza' +p47051 +sa(dp47052 +g25267 +g27 +sg25268 +S'Snuffer' +p47053 +sg25270 +S'Hester Duany' +p47054 +sa(dp47055 +g25267 +g27 +sg25268 +S'Candlestick' +p47056 +sg25270 +S'Janet Riza' +p47057 +sa(dp47058 +g25267 +g27 +sg25268 +S'Candlestick' +p47059 +sg25270 +S'Janet Riza' +p47060 +sa(dp47061 +g25273 +S'brush and brown ink with brown wash over graphite' +p47062 +sg25267 +g27 +sg25275 +S'1768' +p47063 +sg25268 +S'Medee recoit les sermens de Jason ...' +p47064 +sg25270 +S'Charles Monnet' +p47065 +sa(dp47066 +g25267 +g27 +sg25268 +S'Candlestick' +p47067 +sg25270 +S'Benjamin Resnick' +p47068 +sa(dp47069 +g25267 +g27 +sg25268 +S'Snuffer' +p47070 +sg25270 +S'Franklin C. Moyan' +p47071 +sa(dp47072 +g25267 +g27 +sg25268 +S'Brake' +p47073 +sg25270 +S'Fred Weiss' +p47074 +sa(dp47075 +g25267 +g27 +sg25268 +S'Tally Ho (?) or Brake' +p47076 +sg25270 +S'Fred Weiss' +p47077 +sa(dp47078 +g25267 +g27 +sg25268 +S'Baby Buggy' +p47079 +sg25270 +S'Einar Heiberg' +p47080 +sa(dp47081 +g25267 +g27 +sg25268 +S'Phaeton' +p47082 +sg25270 +S'Fred Weiss' +p47083 +sa(dp47084 +g25267 +g27 +sg25268 +S'Four Passenger Farm Wagon' +p47085 +sg25270 +S'Fred Weiss' +p47086 +sa(dp47087 +g25267 +g27 +sg25268 +S'Cab or Cabriole' +p47088 +sg25270 +S'Fred Weiss' +p47089 +sa(dp47090 +g25267 +g27 +sg25268 +S'Buggy' +p47091 +sg25270 +S'Fred Weiss' +p47092 +sa(dp47093 +g25267 +g27 +sg25268 +S'Carpet Bag' +p47094 +sg25270 +S"J.J. O'Neill" +p47095 +sa(dp47096 +g25273 +S'(artist after)' +p47097 +sg25267 +g27 +sg25275 +S'\n' +p47098 +sg25268 +S'Medee recoit le sermens de Jason ...' +p47099 +sg25270 +S'Artist Information (' +p47100 +sa(dp47101 +g25267 +g27 +sg25268 +S'Cane' +p47102 +sg25270 +S'Edmond Lorts' +p47103 +sa(dp47104 +g25267 +g27 +sg25268 +S'Candlestick' +p47105 +sg25270 +S'Amelia Tuccio' +p47106 +sa(dp47107 +g25267 +g27 +sg25268 +S'Butter Tub' +p47108 +sg25270 +S'Albert Geuppert' +p47109 +sa(dp47110 +g25267 +g27 +sg25268 +S'Butter Mold' +p47111 +sg25270 +S'Wellington Blewett' +p47112 +sa(dp47113 +g25267 +g27 +sg25268 +S'Butter Mold' +p47114 +sg25270 +S'Wellington Blewett' +p47115 +sa(dp47116 +g25267 +g27 +sg25268 +S'Butter Mold' +p47117 +sg25270 +S'Lawrence Flynn' +p47118 +sa(dp47119 +g25267 +g27 +sg25268 +S'Bridle with Braided Rawhide Reins' +p47120 +sg25270 +S'Clyde L. Cheney' +p47121 +sa(dp47122 +g25267 +g27 +sg25268 +S'Bridle' +p47123 +sg25270 +S'Cecil Smith' +p47124 +sa(dp47125 +g25267 +g27 +sg25268 +S'Woodcarving - Wing' +p47126 +sg25270 +S'Cleon Barton' +p47127 +sa(dp47128 +g25267 +g27 +sg25268 +S'State of Maine Seal' +p47129 +sg25270 +S'Flora Merchant' +p47130 +sa(dp47131 +g25273 +S'graphite' +p47132 +sg25267 +g27 +sg25275 +S'1767' +p47133 +sg25268 +S'Medee ... rajeunit le pere de Jason' +p47134 +sg25270 +S'Charles Eisen' +p47135 +sa(dp47136 +g25267 +g27 +sg25268 +S"Lady's Carpet Bag" +p47137 +sg25270 +S'Kathryn Uhl' +p47138 +sa(dp47139 +g25267 +g27 +sg25268 +S'Walking Stick' +p47140 +sg25270 +S'Lyman Young' +p47141 +sa(dp47142 +g25267 +g27 +sg25268 +S'Visiting Card Tray' +p47143 +sg25270 +S'Helen Hobart' +p47144 +sa(dp47145 +g25267 +g27 +sg25268 +S'Canteen' +p47146 +sg25270 +S'Emilio Zito' +p47147 +sa(dp47148 +g25267 +g27 +sg25268 +S'Canteen' +p47149 +sg25270 +S'Harold Smith' +p47150 +sa(dp47151 +g25267 +g27 +sg25268 +S'Card Counters' +p47152 +sg25270 +S'Jean Gordon' +p47153 +sa(dp47154 +g25267 +g27 +sg25268 +S'Card Tray' +p47155 +sg25270 +S'Florence Stevenson' +p47156 +sa(dp47157 +g25267 +g27 +sg25268 +S'Canteen' +p47158 +sg25270 +S'A. Zimet' +p47159 +sa(dp47160 +g25267 +g27 +sg25268 +S'Platform Railing' +p47161 +sg25270 +S'Austin L. Davison' +p47162 +sa(dp47163 +g25267 +g27 +sg25268 +S'Gate' +p47164 +sg25270 +S'Charlotte Angus' +p47165 +sa(dp47166 +g25273 +S'(artist after)' +p47167 +sg25267 +g27 +sg25275 +S'\n' +p47168 +sg25268 +S'Medee ... rejeunit le pere de Jason' +p47169 +sg25270 +S'Artist Information (' +p47170 +sa(dp47171 +g25267 +g27 +sg25268 +S'Gate' +p47172 +sg25270 +S'Austin L. Davison' +p47173 +sa(dp47174 +g25267 +g27 +sg25268 +S'Plate' +p47175 +sg25270 +S'Giacinto Capelli' +p47176 +sa(dp47177 +g25267 +g27 +sg25268 +S'Clay Flower Jar' +p47178 +sg25270 +S'Cecily Edwards' +p47179 +sa(dp47180 +g25267 +g27 +sg25268 +S'Jar' +p47181 +sg25270 +S'C.W. Perky' +p47182 +sa(dp47183 +g25267 +g27 +sg25268 +S'Pitcher' +p47184 +sg25270 +S'Genevieve Sherlock' +p47185 +sa(dp47186 +g25267 +g27 +sg25268 +S'Porcelain Dogs' +p47187 +sg25270 +S'Walter W. Jennings' +p47188 +sa(dp47189 +g25267 +g27 +sg25268 +S'Log Cabin Quilt' +p47190 +sg25270 +S'Charlotte Angus' +p47191 +sa(dp47192 +g25267 +g27 +sg25268 +S'Ornamental Woodcarving - Stern Board?' +p47193 +sg25270 +S'Laura Bilodeau' +p47194 +sa(dp47195 +g25267 +g27 +sg25268 +S'Vase' +p47196 +sg25270 +S'Katharine Merrill' +p47197 +sa(dp47198 +g25267 +g27 +sg25268 +S'Enamel Pitcher' +p47199 +sg25270 +S'Richard Taylor' +p47200 +sa(dp47201 +g25273 +S'graphite' +p47202 +sg25267 +g27 +sg25275 +S'1765' +p47203 +sg25268 +S'Medee ... se sauve a Athenes' +p47204 +sg25270 +S'Charles Eisen' +p47205 +sa(dp47206 +g25267 +g27 +sg25268 +S'Hand Compass' +p47207 +sg25270 +S'Robert Clark' +p47208 +sa(dp47209 +g25267 +g27 +sg25268 +S"Surveyor's Compass" +p47210 +sg25270 +S'Archie Thompson' +p47211 +sa(dp47212 +g25267 +g27 +sg25268 +S'Floating Compass' +p47213 +sg25270 +S'Archie Thompson' +p47214 +sa(dp47215 +g25267 +g27 +sg25268 +S'Coffee Grinder' +p47216 +sg25270 +S'Archie Thompson' +p47217 +sa(dp47218 +g25267 +g27 +sg25268 +S'Coffee Grinder' +p47219 +sg25270 +S'Hardin Walsh' +p47220 +sa(dp47221 +g25267 +g27 +sg25268 +S'Coffee Grinder' +p47222 +sg25270 +S'Orrie McCombs' +p47223 +sa(dp47224 +g25267 +g27 +sg25268 +S'Clock Jack' +p47225 +sg25270 +S'Joseph Cannella' +p47226 +sa(dp47227 +g25267 +g27 +sg25268 +S'Naval Clapper' +p47228 +sg25270 +S'Albert Rudin' +p47229 +sa(dp47230 +g25267 +g27 +sg25268 +S'Churn (Rocker Type)' +p47231 +sg25270 +S'Frank McEntee' +p47232 +sa(dp47233 +g25267 +g27 +sg25268 +S'Wood and Tin Chandelier' +p47234 +sg25270 +S'George Constantine' +p47235 +sa(dp47236 +g25273 +S'(artist after)' +p47237 +sg25267 +g27 +sg25275 +S'\n' +p47238 +sg25268 +S'Medee ... sa sauve a Athenes' +p47239 +sg25270 +S'Artist Information (' +p47240 +sa(dp47241 +g25267 +g27 +sg25268 +S'Certificate (army discharge)' +p47242 +sg25270 +S'John Koehl' +p47243 +sa(dp47244 +g25267 +g27 +sg25268 +S'Chopping Blade' +p47245 +sg25270 +S'Mae Szilvasy' +p47246 +sa(dp47247 +g25267 +g27 +sg25268 +S'Chopping Knife' +p47248 +sg25270 +S'Nicholas Amantea' +p47249 +sa(dp47250 +g25267 +g27 +sg25268 +S'Food Chopper' +p47251 +sg25270 +S'Sydney Roberts' +p47252 +sa(dp47253 +g25267 +g27 +sg25268 +S'Meat Chopper' +p47254 +sg25270 +S'Eugene R. Szepessy' +p47255 +sa(dp47256 +g25267 +g27 +sg25268 +S'Chopping Knife' +p47257 +sg25270 +S'William Frank' +p47258 +sa(dp47259 +g25267 +g27 +sg25268 +S'Chopping Knife' +p47260 +sg25270 +S'Hester Duany' +p47261 +sa(dp47262 +g25267 +g27 +sg25268 +S'Chopper' +p47263 +sg25270 +S'John R. Towers' +p47264 +sa(dp47265 +g25267 +g27 +sg25268 +S'Chopping Knife' +p47266 +sg25270 +S'Charles Charon' +p47267 +sa(dp47268 +g25267 +g27 +sg25268 +S"Wagon Maker's Chisel" +p47269 +sg25270 +S'William Frank' +p47270 +sa(dp47271 +g25273 +S'graphite' +p47272 +sg25267 +g27 +sg25275 +S'1767' +p47273 +sg25268 +S'Hercule enchaine Cerbere qui de rage souille la terre de son ecume' +p47274 +sg25270 +S'Charles Eisen' +p47275 +sa(dp47276 +g25267 +g27 +sg25268 +S'Chisel' +p47277 +sg25270 +S'George C. Brown' +p47278 +sa(dp47279 +g25267 +g27 +sg25268 +S'Calking Chisel Used in Milwaukee Ship Yard' +p47280 +sg25270 +S'Herman O. Stroh' +p47281 +sa(dp47282 +g25267 +g27 +sg25268 +S'Cherry Pitter' +p47283 +sg25270 +S'Herman Schulze' +p47284 +sa(dp47285 +g25267 +g27 +sg25268 +S'Cherry Pitter' +p47286 +sg25270 +S'Wayne White' +p47287 +sa(dp47288 +g25267 +g27 +sg25268 +S'Cherry Pitter' +p47289 +sg25270 +S'Archie Thompson' +p47290 +sa(dp47291 +g25267 +g27 +sg25268 +S'Chandelier' +p47292 +sg25270 +S'Simon Weiss' +p47293 +sa(dp47294 +g25267 +g27 +sg25268 +S'Chandelier' +p47295 +sg25270 +S'Artist Information (' +p47296 +sa(dp47297 +g25267 +g27 +sg25268 +S'Wood and Tin Chandelier' +p47298 +sg25270 +S'George Constantine' +p47299 +sa(dp47300 +g25267 +g27 +sg25268 +S'Chandelier' +p47301 +sg25270 +S'John H. Tercuzzi' +p47302 +sa(dp47303 +g25267 +g27 +sg25268 +S'Chandelier' +p47304 +sg25270 +S'Florence Huston' +p47305 +sa(dp47306 +g25273 +S'(artist after)' +p47307 +sg25267 +g27 +sg25275 +S'\n' +p47308 +sg25268 +S'Hercule enchaine Cerbere qui de rage souille la terre de son ecume' +p47309 +sg25270 +S'Artist Information (' +p47310 +sa(dp47311 +g25267 +g27 +sg25268 +S'Candle Chandelier' +p47312 +sg25270 +S'Columbus Simpson' +p47313 +sa(dp47314 +g25267 +g27 +sg25268 +S'Candle Chandelier' +p47315 +sg25270 +S'Columbus Simpson' +p47316 +sa(dp47317 +g25267 +g27 +sg25268 +S'Chandelier' +p47318 +sg25270 +S'Mildred Ford' +p47319 +sa(dp47320 +g25267 +g27 +sg25268 +S'Chandelier' +p47321 +sg25270 +S'Mildred Ford' +p47322 +sa(dp47323 +g25267 +g27 +sg25268 +S'Chalice' +p47324 +sg25270 +S'Mina Lowry' +p47325 +sa(dp47326 +g25267 +g27 +sg25268 +S'Chalice' +p47327 +sg25270 +S'Ivar Julius' +p47328 +sa(dp47329 +g25267 +g27 +sg25268 +S'Birth Record' +p47330 +sg25270 +S'Albert Levone' +p47331 +sa(dp47332 +g25267 +g27 +sg25268 +S'Marriage Certificate' +p47333 +sg25270 +S'J. Howard Iams' +p47334 +sa(dp47335 +g25267 +g27 +sg25268 +S'Clothes Washer' +p47336 +sg25270 +S'Alexander Anderson' +p47337 +sa(dp47338 +g25267 +g27 +sg25268 +S'Clothes Wringer' +p47339 +sg25270 +S'Herndon Hightower' +p47340 +sa(dp47341 +g25273 +S'pen and black ink with brush and brown wash' +p47342 +sg25267 +g27 +sg25275 +S'1768' +p47343 +sg25268 +S'Eaque refuse a Minos le secourse ...' +p47344 +sg25270 +S'Charles Monnet' +p47345 +sa(dp47346 +g25267 +g27 +sg25268 +S'Clothes Pin' +p47347 +sg25270 +S'Ralph Atkinson' +p47348 +sa(dp47349 +g25267 +g27 +sg25268 +S'Clothes Pins' +p47350 +sg25270 +S'Harley Kempter' +p47351 +sa(dp47352 +g25267 +g27 +sg25268 +S'Clothes Pins' +p47353 +sg25270 +S'Robert Gilson' +p47354 +sa(dp47355 +g25267 +g27 +sg25268 +S'Clock Jack' +p47356 +sg25270 +S'Benjamin Resnick' +p47357 +sa(dp47358 +g25267 +g27 +sg25268 +S'Clock Jack' +p47359 +sg25270 +S'Al Curry' +p47360 +sa(dp47361 +g25267 +g27 +sg25268 +S'Cleaver' +p47362 +sg25270 +S'Edward Unger' +p47363 +sa(dp47364 +g25267 +g27 +sg25268 +S'Cleaver' +p47365 +sg25270 +S'William Frank' +p47366 +sa(dp47367 +g25267 +g27 +sg25268 +S'Clam Rake' +p47368 +sg25270 +S'William Mills' +p47369 +sa(dp47370 +g25267 +g27 +sg25268 +S'Walnut Screw Clamp' +p47371 +sg25270 +S'George File' +p47372 +sa(dp47373 +g25267 +g27 +sg25268 +S"Carpenter's Clamp" +p47374 +sg25270 +S'Alexander Anderson' +p47375 +sa(dp47376 +g25273 +S'(artist after)' +p47377 +sg25267 +g27 +sg25275 +S'\n' +p47378 +sg25268 +S'Eaque refuse a Minos le secourse ...' +p47379 +sg25270 +S'Artist Information (' +p47380 +sa(dp47381 +g25267 +g27 +sg25268 +S'Clamp' +p47382 +sg25270 +S'Edward Unger' +p47383 +sa(dp47384 +g25267 +g27 +sg25268 +S'Butter Churn' +p47385 +sg25270 +S'Jay Katz' +p47386 +sa(dp47387 +g25267 +g27 +sg25268 +S'Butter Churn' +p47388 +sg25270 +S'Harold Ballerd' +p47389 +sa(dp47390 +g25267 +g27 +sg25268 +S'Wooden Churn' +p47391 +sg25270 +S'Clyde L. Cheney' +p47392 +sa(dp47393 +g25267 +g27 +sg25268 +S'Butter Churn' +p47394 +sg25270 +S'Paul Ward' +p47395 +sa(dp47396 +g25267 +g27 +sg25268 +S'Churn' +p47397 +sg25270 +S'Ardella Watkins' +p47398 +sa(dp47399 +g25267 +g27 +sg25268 +S'Churn' +p47400 +sg25270 +S'Ralph Atkinson' +p47401 +sa(dp47402 +g25267 +g27 +sg25268 +S'Butter Churn' +p47403 +sg25270 +S'Benjamin Resnick' +p47404 +sa(dp47405 +g25267 +g27 +sg25268 +S'Crockery Churn' +p47406 +sg25270 +S'Margaret Golden' +p47407 +sa(dp47408 +g25267 +g27 +sg25268 +S'Butter Churn' +p47409 +sg25270 +S'Paul Ward' +p47410 +sa(dp47411 +g25273 +S'brush and brown ink with brown wash over graphite' +p47412 +sg25267 +g27 +sg25275 +S'1768' +p47413 +sg25268 +S"Jupiter a la priere d'Eaque son fils ..." +p47414 +sg25270 +S'Charles Monnet' +p47415 +sa(dp47416 +g25267 +g27 +sg25268 +S'Stoneware Churn' +p47417 +sg25270 +S'Annie B. Johnston' +p47418 +sa(dp47419 +g25267 +g27 +sg25268 +S'Food Chopper' +p47420 +sg25270 +S'Earl Butlin' +p47421 +sa(dp47422 +g25267 +g27 +sg25268 +S'Chopping Knife' +p47423 +sg25270 +S'Stanley Chin' +p47424 +sa(dp47425 +g25267 +g27 +sg25268 +S'Chopping Knife' +p47426 +sg25270 +S'Nicholas Amantea' +p47427 +sa(dp47428 +g25267 +g27 +sg25268 +S'Chopping Knife' +p47429 +sg25270 +S'Walter Praefke' +p47430 +sa(dp47431 +g25267 +g27 +sg25268 +S'Chopping Knife' +p47432 +sg25270 +S'Nicholas Amantea' +p47433 +sa(dp47434 +g25267 +g27 +sg25268 +S'Six Bladed Food Chopper' +p47435 +sg25270 +S'Thomas Dooley' +p47436 +sa(dp47437 +g25267 +g27 +sg25268 +S'Chopping Knife' +p47438 +sg25270 +S'Charles Charon' +p47439 +sa(dp47440 +g25267 +g27 +sg25268 +S'Chopping Knife' +p47441 +sg25270 +S'Nicholas Amantea' +p47442 +sa(dp47443 +g25267 +g27 +sg25268 +S"Comb (For Horses' Manes and Tails)" +p47444 +sg25270 +S'H. Langden Brown' +p47445 +sa(dp47446 +g25273 +S'(artist after)' +p47447 +sg25267 +g27 +sg25275 +S'\n' +p47448 +sg25268 +S"Jupiter a la priere d'Eaque son fils ..." +p47449 +sg25270 +S'Artist Information (' +p47450 +sa(dp47451 +g25267 +g27 +sg25268 +S'Comb (For Agricultural Use)' +p47452 +sg25270 +S'Charlotte Winter' +p47453 +sa(dp47454 +g25267 +g27 +sg25268 +S'Wool Comb' +p47455 +sg25270 +S'Charlotte Angus' +p47456 +sa(dp47457 +g25267 +g27 +sg25268 +S'Colander' +p47458 +sg25270 +S'Yolande Delasser' +p47459 +sa(dp47460 +g25267 +g27 +sg25268 +S'Coffee Roaster' +p47461 +sg25270 +S'Jessie M. Youngs' +p47462 +sa(dp47463 +g25267 +g27 +sg25268 +S'Fireplace Coffee Roaster' +p47464 +sg25270 +S'Salvatore Borrazzo' +p47465 +sa(dp47466 +g25267 +g27 +sg25268 +S'Coffee Roaster' +p47467 +sg25270 +S'Claude Marshall' +p47468 +sa(dp47469 +g25267 +g27 +sg25268 +S'Coffee Roaster' +p47470 +sg25270 +S'Karl Joubert' +p47471 +sa(dp47472 +g25267 +g27 +sg25268 +S'Coffee Pot' +p47473 +sg25270 +S'Nicholas Acampora' +p47474 +sa(dp47475 +g25267 +g27 +sg25268 +S'Coffee Mill' +p47476 +sg25270 +S'Archie Thompson' +p47477 +sa(dp47478 +g25267 +g27 +sg25268 +S'Coffee Mill' +p47479 +sg25270 +S'Carl Buergerniss' +p47480 +sa(dp47481 +g25273 +S'(artist after)' +p47482 +sg25267 +g27 +sg25275 +S'\n' +p47483 +sg25268 +S"Jupiter a la priere d'Eaque son fils ..." +p47484 +sg25270 +S'Artist Information (' +p47485 +sa(dp47486 +g25267 +g27 +sg25268 +S'Coffee Grinder' +p47487 +sg25270 +S'Archie Thompson' +p47488 +sa(dp47489 +g25267 +g27 +sg25268 +S'Coffee Mill' +p47490 +sg25270 +S'Carl Buergerniss' +p47491 +sa(dp47492 +g25267 +g27 +sg25268 +S'Coffee Mill' +p47493 +sg25270 +S'Milton Bevier' +p47494 +sa(dp47495 +g25267 +g27 +sg25268 +S'Coffee Mill' +p47496 +sg25270 +S'Clarence W. Dawson' +p47497 +sa(dp47498 +g25267 +g27 +sg25268 +S'Coffee Mill' +p47499 +sg25270 +S'Ray Price' +p47500 +sa(dp47501 +g25267 +g27 +sg25268 +S'Coffee Mill' +p47502 +sg25270 +S'Clarence Secor' +p47503 +sa(dp47504 +g25267 +g27 +sg25268 +S'Coffee Grinder' +p47505 +sg25270 +S'Dayton Brown' +p47506 +sa(dp47507 +g25267 +g27 +sg25268 +S'Coffee Mill' +p47508 +sg25270 +S'Frank C. Barks' +p47509 +sa(dp47510 +g25267 +g27 +sg25268 +S'Coffee Grinder' +p47511 +sg25270 +S'William H. Edwards' +p47512 +sa(dp47513 +g25267 +g27 +sg25268 +S'Coffee Grinder' +p47514 +sg25270 +S'Artist Information (' +p47515 +sa(dp47516 +g25268 +S'Aurora and Cephalus' +p47517 +sg25270 +S'Fran\xc3\xa7ois Boucher' +p47518 +sg25273 +S'brown chalk with stumping on light beige laid paper, with later framing line in brown ink' +p47519 +sg25275 +S'c. 1766' +p47520 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00031/a0003197.jpg' +p47521 +sg25267 +g27 +sa(dp47522 +g25267 +g27 +sg25268 +S'Coffee Grinder' +p47523 +sg25270 +S'Richard Taylor' +p47524 +sa(dp47525 +g25267 +g27 +sg25268 +S'Wall Hopper' +p47526 +sg25270 +S'LeRoy Griffith' +p47527 +sa(dp47528 +g25267 +g27 +sg25268 +S'Coffee Grinder' +p47529 +sg25270 +S'Gordon Sanborn' +p47530 +sa(dp47531 +g25267 +g27 +sg25268 +S'Coffee Grinder' +p47532 +sg25270 +S'Raymond Manupelli' +p47533 +sa(dp47534 +g25267 +g27 +sg25268 +S'Coffee Grinder' +p47535 +sg25270 +S'Herman Bader' +p47536 +sa(dp47537 +g25267 +g27 +sg25268 +S'Coffee Grinder' +p47538 +sg25270 +S'Pearl Davis' +p47539 +sa(dp47540 +g25267 +g27 +sg25268 +S'Coal Scuttle' +p47541 +sg25270 +S'Mildred Ford' +p47542 +sa(dp47543 +g25267 +g27 +sg25268 +S'Apron' +p47544 +sg25270 +S'Henry Moran' +p47545 +sa(dp47546 +g25267 +g27 +sg25268 +S'Window Cornice' +p47547 +sg25270 +S'Henry Murphy' +p47548 +sa(dp47549 +g25267 +g27 +sg25268 +S'Fireplace' +p47550 +sg25270 +S'Wellington Blewett' +p47551 +sa(dp47552 +g25273 +S'(artist after)' +p47553 +sg25267 +g27 +sg25275 +S'\n' +p47554 +sg25268 +S"L'Aurore appercoit Cephale dont elle devient amoureuse et l'eleve" +p47555 +sg25270 +S'Artist Information (' +p47556 +sa(dp47557 +g25267 +g27 +sg25268 +S'Cornice' +p47558 +sg25270 +S'Al Curry' +p47559 +sa(dp47560 +g25267 +g27 +sg25268 +S'Cookie Cutter' +p47561 +sg25270 +S'Adolph Opstad' +p47562 +sa(dp47563 +g25267 +g27 +sg25268 +S'Cookie Cutter' +p47564 +sg25270 +S'Michael Rekucki' +p47565 +sa(dp47566 +g25267 +g27 +sg25268 +S'Cooking Pot' +p47567 +sg25270 +S'Ludmilla Calderon' +p47568 +sa(dp47569 +g25267 +g27 +sg25268 +S'Cookie Cutter' +p47570 +sg25270 +S'Helen Hobart' +p47571 +sa(dp47572 +g25267 +g27 +sg25268 +S'Pewter Compote' +p47573 +sg25270 +S'Carmel Wilson' +p47574 +sa(dp47575 +g25267 +g27 +sg25268 +S'Compote' +p47576 +sg25270 +S'Helen Hobart' +p47577 +sa(dp47578 +g25267 +g27 +sg25268 +S"Ship's Compass" +p47579 +sg25270 +S'Magnus S. Fossum' +p47580 +sa(dp47581 +g25267 +g27 +sg25268 +S'Baby Cap' +p47582 +sg25270 +S'Rosalia Lane' +p47583 +sa(dp47584 +g25267 +g27 +sg25268 +S'Cape (Pattern)' +p47585 +sg25270 +S'Charles Criswell' +p47586 +sa(dp47587 +g25273 +S'brush and brown ink with brown wash over graphite' +p47588 +sg25267 +g27 +sg25275 +S'1768' +p47589 +sg25268 +S"Procris tuee d'un coup de fleche ..." +p47590 +sg25270 +S'Charles Monnet' +p47591 +sa(dp47592 +g25267 +g27 +sg25268 +S"Lady's Evening Coat" +p47593 +sg25270 +S'Florence Grant Brown' +p47594 +sa(dp47595 +g25267 +g27 +sg25268 +S"Child's Dress" +p47596 +sg25270 +S'Florence Grant Brown' +p47597 +sa(dp47598 +g25267 +g27 +sg25268 +S"Girl's Dress" +p47599 +sg25270 +S'Virginia Berge' +p47600 +sa(dp47601 +g25267 +g27 +sg25268 +S"Girl's Dress" +p47602 +sg25270 +S'Nancy Crimi' +p47603 +sa(dp47604 +g25267 +g27 +sg25268 +S"Description of a Girl's Dress" +p47605 +sg25270 +S'Nancy Crimi' +p47606 +sa(dp47607 +g25267 +g27 +sg25268 +S"Description of a Girl's Dress" +p47608 +sg25270 +S'Nancy Crimi' +p47609 +sa(dp47610 +g25267 +g27 +sg25268 +S"Girl's Dress (Pattern)" +p47611 +sg25270 +S'Nancy Crimi' +p47612 +sa(dp47613 +g25267 +g27 +sg25268 +S"Girl's Dress (Pattern)" +p47614 +sg25270 +S'Nancy Crimi' +p47615 +sa(dp47616 +g25267 +g27 +sg25268 +S'Dress' +p47617 +sg25270 +S'Edna C. Rex' +p47618 +sa(dp47619 +g25267 +g27 +sg25268 +S'Dress' +p47620 +sg25270 +S'Edna C. Rex' +p47621 +sa(dp47622 +g25273 +S'(artist after)' +p47623 +sg25267 +g27 +sg25275 +S'\n' +p47624 +sg25268 +S"Procris tuee d'un coup de fleche ..." +p47625 +sg25270 +S'Artist Information (' +p47626 +sa(dp47627 +g25267 +g27 +sg25268 +S'Wedding Dress' +p47628 +sg25270 +S'Linnet Alward' +p47629 +sa(dp47630 +g25267 +g27 +sg25268 +S'Wedding Dress' +p47631 +sg25270 +S'Mary E. Humes' +p47632 +sa(dp47633 +g25267 +g27 +sg25268 +S'Silk Taffeta Costume' +p47634 +sg25270 +S'Sarah F. Williams' +p47635 +sa(dp47636 +g25267 +g27 +sg25268 +S'Dress' +p47637 +sg25270 +S'Virginia Berge' +p47638 +sa(dp47639 +g25267 +g27 +sg25268 +S'Dress' +p47640 +sg25270 +S'Paul Ward' +p47641 +sa(dp47642 +g25267 +g27 +sg25268 +S'Afternoon Dress' +p47643 +sg25270 +S'Nancy Crimi' +p47644 +sa(dp47645 +g25267 +g27 +sg25268 +S'Wedding Dress' +p47646 +sg25270 +S'Mary E. Humes' +p47647 +sa(dp47648 +g25267 +g27 +sg25268 +S'Dress' +p47649 +sg25270 +S'Jessie M. Benge' +p47650 +sa(dp47651 +g25267 +g27 +sg25268 +S'Dress' +p47652 +sg25270 +S'Irene Lawson' +p47653 +sa(dp47654 +g25267 +g27 +sg25268 +S'Dress' +p47655 +sg25270 +S'Doris Beer' +p47656 +sa(dp47657 +g25273 +S'graphite' +p47658 +sg25267 +g27 +sg25275 +S'1767' +p47659 +sg25268 +S'Scylla est meprisee par Minos ...' +p47660 +sg25270 +S'Charles Eisen' +p47661 +sa(dp47662 +g25267 +g27 +sg25268 +S'Dress' +p47663 +sg25270 +S'Jean Peszel' +p47664 +sa(dp47665 +g25267 +S'In early America, weather vanes were a common sight atop churches, barns, and shops. Although many vanes were made of wood, craftsmen who worked in iron, copper, tin, and brass also produced weather vanes of outstanding design and conception, often combining several metals. This weather vane, representing the Angel Gabriel, originally graced the steeple of the Universalist Church in Newburyport, Massachusetts. The angel is a much less common weather vane subject than, for example, horses or roosters, and the image of Gabriel is rarer still. Although there are several known examples of the archangel blowing his horn, this version appears to be unique. Made in 1840 by the Gould and Hazlett Company of Boston, the angel has a flat body cut from sheet iron and gilded; the tubular horn was made of copper. The pieces were then fastened together with iron rivets. The work shows grace in the flowing contours of the angel\'s wings and robe, yet it is also crude, in the obvious, heavy bracing that supports the figure. The artist, Lucille Chabot, had to experiment to arrive at a technique that would "get the thing to glow...not to get it grainy." She achieved the desired effect by a "series of glazes, one color over another."\n ' +p47666 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002e1.jpg' +p47667 +sg25268 +S'Gabriel Weather Vane' +p47668 +sg25270 +S'Lucille Chabot' +p47669 +sa(dp47670 +g25267 +g27 +sg25268 +S'Dress' +p47671 +sg25270 +S'Nancy Crimi' +p47672 +sa(dp47673 +g25267 +g27 +sg25268 +S'Dress' +p47674 +sg25270 +S'Mary E. Humes' +p47675 +sa(dp47676 +g25267 +g27 +sg25268 +S'Dress' +p47677 +sg25270 +S'Gertrude Lemberg' +p47678 +sa(dp47679 +g25267 +g27 +sg25268 +S'Costume' +p47680 +sg25270 +S'Mary E. Humes' +p47681 +sa(dp47682 +g25267 +g27 +sg25268 +S'Dress' +p47683 +sg25270 +S'Roberta Spicer' +p47684 +sa(dp47685 +g25267 +g27 +sg25268 +S'Costume' +p47686 +sg25270 +S'Mary E. Humes' +p47687 +sa(dp47688 +g25267 +g27 +sg25268 +S'Costume' +p47689 +sg25270 +S'Mary E. Humes' +p47690 +sa(dp47691 +g25267 +g27 +sg25268 +S'Dress' +p47692 +sg25270 +S'Winifred Gibbes' +p47693 +sa(dp47694 +g25273 +S'(artist after)' +p47695 +sg25267 +g27 +sg25275 +S'\n' +p47696 +sg25268 +S'Scylla est meprisee par Minos ...' +p47697 +sg25270 +S'Artist Information (' +p47698 +sa(dp47699 +g25267 +g27 +sg25268 +S'Dress' +p47700 +sg25270 +S'Bessie Forman' +p47701 +sa(dp47702 +g25267 +g27 +sg25268 +S'Dress' +p47703 +sg25270 +S'Mary E. Humes' +p47704 +sa(dp47705 +g25267 +g27 +sg25268 +S'Dress' +p47706 +sg25270 +S'Katharine Morris' +p47707 +sa(dp47708 +g25267 +g27 +sg25268 +S'Dress' +p47709 +sg25270 +S'Henry Moran' +p47710 +sa(dp47711 +g25267 +g27 +sg25268 +S'Dress' +p47712 +sg25270 +S'Mary E. Humes' +p47713 +sa(dp47714 +g25267 +S"By the 1870s, women's dresses gained fullness in back by use of a padded \n bustle. This two-piece dress, made of red cotton with white eyelet embroidery, \n has a bustle in back. The lines of the dress, however, are softer and fall closer \n to the body than those of fashions in the previous decade, indicating a movement \n toward a more natural form for women's clothing.\n " +p47715 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000035b.jpg' +p47716 +sg25268 +S'Dress' +p47717 +sg25270 +S'Henry De Wolfe' +p47718 +sa(dp47719 +g25267 +g27 +sg25268 +S'Gown' +p47720 +sg25270 +S'Douglas Campbell' +p47721 +sa(dp47722 +g25267 +g27 +sg25268 +S'High Silk Hat' +p47723 +sg25270 +S'John Swientochowski' +p47724 +sa(dp47725 +g25267 +g27 +sg25268 +S'The Sowers' +p47726 +sg25270 +S'Artist Information (' +p47727 +sa(dp47728 +g25267 +g27 +sg25268 +S'Mrs. Charlotte Root' +p47729 +sg25270 +S'Artist Information (' +p47730 +sa(dp47731 +g25273 +S', 1768' +p47732 +sg25267 +g27 +sg25275 +S'\n' +p47733 +sg25268 +S"Thesee par le secours d'Ariene, tue le Minotaur ..." +p47734 +sg25270 +S'Jean-Michel Moreau the Younger' +p47735 +sa(dp47736 +g25267 +g27 +sg25268 +S'Planting Corn' +p47737 +sg25270 +S'Artist Information (' +p47738 +sa(dp47739 +g25267 +g27 +sg25268 +S'Breaking Ground' +p47740 +sg25270 +S'Artist Information (' +p47741 +sa(dp47742 +g25267 +g27 +sg25268 +S'Early Camp Dugouts' +p47743 +sg25270 +S'Artist Information (' +p47744 +sa(dp47745 +g25267 +g27 +sg25268 +S'Women Operating the Pile Driver' +p47746 +sg25270 +S'Artist Information (' +p47747 +sa(dp47748 +g25267 +g27 +sg25268 +S'Lars Soderquist' +p47749 +sg25270 +S'Artist Information (' +p47750 +sa(dp47751 +g25267 +g27 +sg25268 +S'"It Will Soon be Here"' +p47752 +sg25270 +S'Artist Information (' +p47753 +sa(dp47754 +g25267 +g27 +sg25268 +S'Harvesting with Grain Cradles' +p47755 +sg25270 +S'Artist Information (' +p47756 +sa(dp47757 +g25267 +g27 +sg25268 +S'Hat' +p47758 +sg25270 +S'Marie Famularo' +p47759 +sa(dp47760 +g25267 +g27 +sg25268 +S'Black Satin Jacket' +p47761 +sg25270 +S'Joseph L. Boyd' +p47762 +sa(dp47763 +g25267 +g27 +sg25268 +S'Baby Jacket' +p47764 +sg25270 +S'Lucien Verbeke' +p47765 +sa(dp47766 +g25273 +S'(artist after)' +p47767 +sg25267 +g27 +sg25275 +S'\n' +p47768 +sg25268 +S"Th\xc3\xa9s\xc3\xa9e par le secours d'Ariane, tu\xc3\xab le Minotaure, et se d\xc3\xa9livre du labyrinthe" +p47769 +sg25270 +S'Artist Information (' +p47770 +sa(dp47771 +g25267 +g27 +sg25268 +S'Cape' +p47772 +sg25270 +S'Eleanor Gausser' +p47773 +sa(dp47774 +g25267 +g27 +sg25268 +S'Bonnet' +p47775 +sg25270 +S'Margaret Concha' +p47776 +sa(dp47777 +g25267 +g27 +sg25268 +S'Dress' +p47778 +sg25270 +S'Nancy Crimi' +p47779 +sa(dp47780 +g25267 +g27 +sg25268 +S'Cap' +p47781 +sg25270 +S'Rosalia Lane' +p47782 +sa(dp47783 +g25267 +g27 +sg25268 +S'Cap' +p47784 +sg25270 +S'Rosalia Lane' +p47785 +sa(dp47786 +g25267 +g27 +sg25268 +S'Purse' +p47787 +sg25270 +S'Gladys Cook' +p47788 +sa(dp47789 +g25267 +g27 +sg25268 +S'Pattern for a Dress' +p47790 +sg25270 +S'Jean Peszel' +p47791 +sa(dp47792 +g25267 +g27 +sg25268 +S'Handkerchief' +p47793 +sg25270 +S'American 20th Century' +p47794 +sa(dp47795 +g25267 +g27 +sg25268 +S'Dress' +p47796 +sg25270 +S'Roberta Spicer' +p47797 +sa(dp47798 +g25267 +g27 +sg25268 +S'Shoes' +p47799 +sg25270 +S'Jean Peszel' +p47800 +sa(dp47801 +g25273 +S'graphite' +p47802 +sg25267 +g27 +sg25275 +S'1767' +p47803 +sg25268 +S"Le chaleur du Soleil fond la cire qui attachoit les ailes d'Icare ..." +p47804 +sg25270 +S'Charles Eisen' +p47805 +sa(dp47806 +g25267 +g27 +sg25268 +S'Shoes' +p47807 +sg25270 +S'Nancy Crimi' +p47808 +sa(dp47809 +g25267 +g27 +sg25268 +S'Shoe' +p47810 +sg25270 +S'Jessie M. Benge' +p47811 +sa(dp47812 +g25267 +g27 +sg25268 +S'Shoe' +p47813 +sg25270 +S'Mae A. Clarke' +p47814 +sa(dp47815 +g25267 +g27 +sg25268 +S'Slipper' +p47816 +sg25270 +S'Artist Information (' +p47817 +sa(dp47818 +g25267 +g27 +sg25268 +S'Shoe' +p47819 +sg25270 +S'Melita Hofmann' +p47820 +sa(dp47821 +g25267 +g27 +sg25268 +S'Costume' +p47822 +sg25270 +S'Lillian Causey' +p47823 +sa(dp47824 +g25267 +g27 +sg25268 +S'Slipper' +p47825 +sg25270 +S'Melita Hofmann' +p47826 +sa(dp47827 +g25267 +g27 +sg25268 +S'Shoe' +p47828 +sg25270 +S'American 20th Century' +p47829 +sa(dp47830 +g25267 +g27 +sg25268 +S'Shoe' +p47831 +sg25270 +S'Hedwig Emanuel' +p47832 +sa(dp47833 +g25267 +g27 +sg25268 +S'Slippers' +p47834 +sg25270 +S'Margaret Concha' +p47835 +sa(dp47836 +g25273 +S'(artist after)' +p47837 +sg25267 +g27 +sg25275 +S'\n' +p47838 +sg25268 +S"Le chaleur du Soleil fond la cire qui attachoit les ailes d'Icare ..." +p47839 +sg25270 +S'Artist Information (' +p47840 +sa(dp47841 +g25267 +g27 +sg25268 +S'Shoe' +p47842 +sg25270 +S'Melita Hofmann' +p47843 +sa(dp47844 +g25267 +g27 +sg25268 +S'Scarf' +p47845 +sg25270 +S'Sylvia De Zon' +p47846 +sa(dp47847 +g25267 +g27 +sg25268 +S'Slipper' +p47848 +sg25270 +S'Melita Hofmann' +p47849 +sa(dp47850 +g25267 +g27 +sg25268 +S'Slipper' +p47851 +sg25270 +S'Margaret Concha' +p47852 +sa(dp47853 +g25267 +g27 +sg25268 +S'Slipper' +p47854 +sg25270 +S'Nancy Crimi' +p47855 +sa(dp47856 +g25267 +g27 +sg25268 +S'Slipper' +p47857 +sg25270 +S'Melita Hofmann' +p47858 +sa(dp47859 +g25267 +g27 +sg25268 +S'Shoes' +p47860 +sg25270 +S'Nancy Crimi' +p47861 +sa(dp47862 +g25267 +g27 +sg25268 +S'Dress' +p47863 +sg25270 +S'Florence Earl' +p47864 +sa(dp47865 +g25267 +g27 +sg25268 +S'Purse' +p47866 +sg25270 +S'Florence Earl' +p47867 +sa(dp47868 +g25267 +g27 +sg25268 +S'Hat' +p47869 +sg25270 +S'Florence Earl' +p47870 +sa(dp47871 +g25273 +S'(artist after)' +p47872 +sg25267 +g27 +sg25275 +S'\n' +p47873 +sg25268 +S"Le chaleur du Soleil fond la cire qui attachoit les ailes d'Icare ..." +p47874 +sg25270 +S'Artist Information (' +p47875 +sa(dp47876 +g25267 +g27 +sg25268 +S'Hat' +p47877 +sg25270 +S'American 20th Century' +p47878 +sa(dp47879 +g25267 +g27 +sg25268 +S'Jacket' +p47880 +sg25270 +S'Gladys Cook' +p47881 +sa(dp47882 +g25267 +g27 +sg25268 +S'Dress' +p47883 +sg25270 +S'American 20th Century' +p47884 +sa(dp47885 +g25267 +g27 +sg25268 +S'Pattern' +p47886 +sg25270 +S'Percival Jenner' +p47887 +sa(dp47888 +g25267 +g27 +sg25268 +S"Man's Suit" +p47889 +sg25270 +S'Lillian Causey' +p47890 +sa(dp47891 +g25267 +g27 +sg25268 +S'Delaware Militia Coat' +p47892 +sg25270 +S'Artist Information (' +p47893 +sa(dp47894 +g25267 +g27 +sg25268 +S'Waistcoat' +p47895 +sg25270 +S'Louis Maldarelli' +p47896 +sa(dp47897 +g25267 +g27 +sg25268 +S"Girl's Dress" +p47898 +sg25270 +S'Nancy Crimi' +p47899 +sa(dp47900 +g25267 +g27 +sg25268 +S'Dress' +p47901 +sg25270 +S'Nancy Crimi' +p47902 +sa(dp47903 +g25267 +g27 +sg25268 +S'Crimping Wheel' +p47904 +sg25270 +S'John Wilkes' +p47905 +sa(dp47906 +g25273 +S'graphite' +p47907 +sg25267 +g27 +sg25275 +S'1767' +p47908 +sg25268 +S'Perdix ... metamorphose en perdix' +p47909 +sg25270 +S'Charles Eisen' +p47910 +sa(dp47911 +g25267 +g27 +sg25268 +S'Cranberry Picker' +p47912 +sg25270 +S'Frank Budash' +p47913 +sa(dp47914 +g25267 +g27 +sg25268 +S'Corn Jobber' +p47915 +sg25270 +S'Ivar Julius' +p47916 +sa(dp47917 +g25267 +S'This "visiting dress," dated 1883, is made of wool. It is constructed of \n multiple pieces. The waist has eight fitted parts, six in back and two in front. \n The overskirt is draped from the bustle at the back where it falls in a train. \n The vest, cuffs, and ruffle around the bottom of the skirt are of red velvet.\n Complicated designs were common for dresses in the mid-1880s. The introduction \n and development of the sewing machine made construction of dresses with intricate \n patterns possible.\n ' +p47918 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000033a.jpg' +p47919 +sg25268 +S'Visiting Dress' +p47920 +sg25270 +S'Nancy Crimi' +p47921 +sa(dp47922 +g25267 +g27 +sg25268 +S"Child's Silk Coat" +p47923 +sg25270 +S'Jacob Gielens' +p47924 +sa(dp47925 +g25267 +g27 +sg25268 +S"Men's Bedroom Slippers" +p47926 +sg25270 +S'Paul Poffinbarger' +p47927 +sa(dp47928 +g25267 +g27 +sg25268 +S'Knife, Fork, and Spoon' +p47929 +sg25270 +S'William Ludwig' +p47930 +sa(dp47931 +g25267 +g27 +sg25268 +S"Officer's Mess Knife" +p47932 +sg25270 +S'Vincent P. Rosel' +p47933 +sa(dp47934 +g25267 +g27 +sg25268 +S'Cup Holder' +p47935 +sg25270 +S'Irving L. Biehn' +p47936 +sa(dp47937 +g25267 +g27 +sg25268 +S'Drinking Cup' +p47938 +sg25270 +S'Paul Poffinbarger' +p47939 +sa(dp47940 +g25267 +g27 +sg25268 +S'Syrup Cruet' +p47941 +sg25270 +S'Edward L. Loper' +p47942 +sa(dp47943 +g25273 +S'(artist after)' +p47944 +sg25267 +g27 +sg25275 +S'\n' +p47945 +sg25268 +S'Perdix ... metamorphose en perdix' +p47946 +sg25270 +S'Artist Information (' +p47947 +sa(dp47948 +g25267 +g27 +sg25268 +S'Crown' +p47949 +sg25270 +S'Al Curry' +p47950 +sa(dp47951 +g25267 +g27 +sg25268 +S'Cross' +p47952 +sg25270 +S'Ray Price' +p47953 +sa(dp47954 +g25267 +g27 +sg25268 +S'Cross' +p47955 +sg25270 +S'Kurt Melzer' +p47956 +sa(dp47957 +g25267 +g27 +sg25268 +S'Wooden Cross' +p47958 +sg25270 +S'George File' +p47959 +sa(dp47960 +g25267 +g27 +sg25268 +S'Cross' +p47961 +sg25270 +S'Manuel G. Runyan' +p47962 +sa(dp47963 +g25267 +g27 +sg25268 +S'Wrought Iron Cross' +p47964 +sg25270 +S'Arelia Arbo' +p47965 +sa(dp47966 +g25267 +g27 +sg25268 +S'Cross' +p47967 +sg25270 +S'Manuel G. Runyan' +p47968 +sa(dp47969 +g25267 +g27 +sg25268 +S'Cross' +p47970 +sg25270 +S'Al Curry' +p47971 +sa(dp47972 +g25267 +g27 +sg25268 +S'Cross' +p47973 +sg25270 +S'Carl Keksi' +p47974 +sa(dp47975 +g25267 +g27 +sg25268 +S'Cross' +p47976 +sg25270 +S'Lucien Verbeke' +p47977 +sa(dp47978 +g25273 +S'pen and black ink and brush and brown ink with brown wash over graphite' +p47979 +sg25267 +g27 +sg25275 +S'1768' +p47980 +sg25268 +S'Meleagre presente a Atalante la hure du Sanglier de Calydon ...' +p47981 +sg25270 +S'Charles Monnet' +p47982 +sa(dp47983 +g25267 +g27 +sg25268 +S'Cross' +p47984 +sg25270 +S'Ray Price' +p47985 +sa(dp47986 +g25267 +g27 +sg25268 +S'Cross' +p47987 +sg25270 +S'Arelia Arbo' +p47988 +sa(dp47989 +g25267 +g27 +sg25268 +S'Cross' +p47990 +sg25270 +S'Ray Price' +p47991 +sa(dp47992 +g25267 +g27 +sg25268 +S'Cross' +p47993 +sg25270 +S'Lucien Verbeke' +p47994 +sa(dp47995 +g25267 +g27 +sg25268 +S'Cross Bow' +p47996 +sg25270 +S'American 20th Century' +p47997 +sa(dp47998 +g25267 +g27 +sg25268 +S'Pie Crust Crimper' +p47999 +sg25270 +S'Samuel O. Klein' +p48000 +sa(dp48001 +g25267 +g27 +sg25268 +S'Pie Crust Fluter' +p48002 +sg25270 +S'Frank M. Keane' +p48003 +sa(dp48004 +g25267 +g27 +sg25268 +S'Cookie Cutter' +p48005 +sg25270 +S'Jennie Kamar' +p48006 +sa(dp48007 +g25267 +g27 +sg25268 +S'Cookie Cutter' +p48008 +sg25270 +S'George Beyer' +p48009 +sa(dp48010 +g25267 +g27 +sg25268 +S'Pastry Jagger' +p48011 +sg25270 +S'Adelaide Dyball' +p48012 +sa(dp48013 +g25273 +S'(artist after)' +p48014 +sg25267 +g27 +sg25275 +S'\n' +p48015 +sg25268 +S'Meleagre presente a Atalante la hure du Sanglier de Calydon ...' +p48016 +sg25270 +S'Artist Information (' +p48017 +sa(dp48018 +g25267 +g27 +sg25268 +S'Pastry Jagger' +p48019 +sg25270 +S'James Drake' +p48020 +sa(dp48021 +g25267 +g27 +sg25268 +S'Cranberry Harvesting Scoop' +p48022 +sg25270 +S'William Frank' +p48023 +sa(dp48024 +g25267 +g27 +sg25268 +S'Windmill Counterbalance' +p48025 +sg25270 +S'Wilbur M Rice' +p48026 +sa(dp48027 +g25267 +g27 +sg25268 +S'Counterbalance Rooster' +p48028 +sg25270 +S'Lloyd Charles Lemcke' +p48029 +sa(dp48030 +g25267 +g27 +sg25268 +S'Counterbalance Rooster' +p48031 +sg25270 +S'James Vail' +p48032 +sa(dp48033 +g25267 +g27 +sg25268 +S'Corn Planter' +p48034 +sg25270 +S'Max Fernekes' +p48035 +sa(dp48036 +g25267 +g27 +sg25268 +S'Hand Bottle Corker' +p48037 +sg25270 +S'Ray Price' +p48038 +sa(dp48039 +g25267 +g27 +sg25268 +S'Cork Compressor' +p48040 +sg25270 +S'Edward L. Loper' +p48041 +sa(dp48042 +g25267 +g27 +sg25268 +S'Cuspidor' +p48043 +sg25270 +S'Giacinto Capelli' +p48044 +sa(dp48045 +g25267 +g27 +sg25268 +S'Crockery Cuspidor' +p48046 +sg25270 +S'Vincent P. Rosel' +p48047 +sa(dp48048 +g25273 +S'brush and brown ink with brown wash over graphite' +p48049 +sg25267 +g27 +sg25275 +S'1768' +p48050 +sg25268 +S'Thesee a son retour de la chasse de Calydon ...' +p48051 +sg25270 +S'Charles Monnet' +p48052 +sa(dp48053 +g25267 +g27 +sg25268 +S'Cuspidor' +p48054 +sg25270 +S'Hans Mangelsdorf' +p48055 +sa(dp48056 +g25267 +g27 +sg25268 +S'Cuspidor' +p48057 +sg25270 +S'Charles Moss' +p48058 +sa(dp48059 +g25267 +g27 +sg25268 +S'Churn' +p48060 +sg25270 +S'Aaron Fastovsky' +p48061 +sa(dp48062 +g25267 +g27 +sg25268 +S'Dasher for Butter Churn' +p48063 +sg25270 +S'Clyde L. Cheney' +p48064 +sa(dp48065 +g25267 +g27 +sg25268 +S'Decoy (Red-Wing Black Bird)' +p48066 +sg25270 +S'Charles Garjian' +p48067 +sa(dp48068 +g25267 +g27 +sg25268 +S'Decoy Duck' +p48069 +sg25270 +S'Rose Campbell-Gerke' +p48070 +sa(dp48071 +g25267 +g27 +sg25268 +S'Decoy Duck' +p48072 +sg25270 +S'Rose Campbell-Gerke' +p48073 +sa(dp48074 +g25267 +g27 +sg25268 +S'Decoy Duck #1' +p48075 +sg25270 +S'Lloyd Charles Lemcke' +p48076 +sa(dp48077 +g25267 +g27 +sg25268 +S'Wooden Duck' +p48078 +sg25270 +S'American 20th Century' +p48079 +sa(dp48080 +g25267 +g27 +sg25268 +S'Flying Duck' +p48081 +sg25270 +S'Malcolm Hackney' +p48082 +sa(dp48083 +g25273 +S'(artist after)' +p48084 +sg25267 +g27 +sg25275 +S'\n' +p48085 +sg25268 +S'Thesee a son retour de la chasse de Calydon ...' +p48086 +sg25270 +S'Artist Information (' +p48087 +sa(dp48088 +g25267 +g27 +sg25268 +S'Snipe Decoy' +p48089 +sg25270 +S'Lawrence Flynn' +p48090 +sa(dp48091 +g25267 +g27 +sg25268 +S'Wooden Decoy' +p48092 +sg25270 +S'Chris Makrenos' +p48093 +sa(dp48094 +g25267 +g27 +sg25268 +S'Wooden Decoy' +p48095 +sg25270 +S'Chris Makrenos' +p48096 +sa(dp48097 +g25267 +g27 +sg25268 +S'Three Decoy Ducks' +p48098 +sg25270 +S'Harriette Gale' +p48099 +sa(dp48100 +g25267 +g27 +sg25268 +S'Decoy Duck' +p48101 +sg25270 +S'Harriette Gale' +p48102 +sa(dp48103 +g25267 +g27 +sg25268 +S'Decoy' +p48104 +sg25270 +S'Rocco Navigato' +p48105 +sa(dp48106 +g25267 +g27 +sg25268 +S'Decoy' +p48107 +sg25270 +S'Oscar Bluhme' +p48108 +sa(dp48109 +g25267 +g27 +sg25268 +S'Decoy' +p48110 +sg25270 +S'Wellington Blewett' +p48111 +sa(dp48112 +g25267 +g27 +sg25268 +S'Gadwall Decoy' +p48113 +sg25270 +S'Samuel W. Ford' +p48114 +sa(dp48115 +g25267 +g27 +sg25268 +S'Greater Yellow Leg Decoy' +p48116 +sg25270 +S'Samuel W. Ford' +p48117 +sa(dp48118 +g25273 +S'etching and engraving with stipple' +p48119 +sg25267 +g27 +sg25275 +S'published 1767/1771' +p48120 +sg25268 +S'Jupiter et Mercure sous la forme humaine ...' +p48121 +sg25270 +S'Simon Charles Miger' +p48122 +sa(dp48123 +g25267 +g27 +sg25268 +S'Snipe' +p48124 +sg25270 +S'Hester Duany' +p48125 +sa(dp48126 +g25267 +g27 +sg25268 +S'Decoy' +p48127 +sg25270 +S'Charles Garjian' +p48128 +sa(dp48129 +g25267 +g27 +sg25268 +S'Decoy' +p48130 +sg25270 +S'Roberta Spicer' +p48131 +sa(dp48132 +g25267 +g27 +sg25268 +S'Decoy (Gull)' +p48133 +sg25270 +S'Mina Lowry' +p48134 +sa(dp48135 +g25267 +g27 +sg25268 +S'Decoy' +p48136 +sg25270 +S'Chris Makrenos' +p48137 +sa(dp48138 +g25267 +g27 +sg25268 +S'Decoy' +p48139 +sg25270 +S'Franklyn Syres' +p48140 +sa(dp48141 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005531.jpg' +p48142 +sg25268 +S'Decoy' +p48143 +sg25270 +S'Hester Duany' +p48144 +sa(dp48145 +g25267 +g27 +sg25268 +S'Shroud Deck Eye' +p48146 +sg25270 +S'Eugene Bartz' +p48147 +sa(dp48148 +g25267 +g27 +sg25268 +S'Deadeye' +p48149 +sg25270 +S'Lloyd Charles Lemcke' +p48150 +sa(dp48151 +g25267 +g27 +sg25268 +S'Door Knocker' +p48152 +sg25270 +S'Alfred Walbeck' +p48153 +sa(dp48154 +g25268 +S"La Famine par l'ordre de Ceres ..." +p48155 +sg25270 +S'Jean-Michel Moreau the Younger' +p48156 +sg25273 +S', 1767' +p48157 +sg25275 +S'\n' +p48158 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a00062ef.jpg' +p48159 +sg25267 +g27 +sa(dp48160 +g25267 +g27 +sg25268 +S'Door Knocker' +p48161 +sg25270 +S'Jacob Lipkin' +p48162 +sa(dp48163 +g25267 +g27 +sg25268 +S'Door Knocker' +p48164 +sg25270 +S'Jack Staloff' +p48165 +sa(dp48166 +g25267 +g27 +sg25268 +S'Door Pull and Knocker' +p48167 +sg25270 +S'Jack Staloff' +p48168 +sa(dp48169 +g25267 +g27 +sg25268 +S'Door Knocker' +p48170 +sg25270 +S'John H. Tercuzzi' +p48171 +sa(dp48172 +g25267 +g27 +sg25268 +S'Door Knocker' +p48173 +sg25270 +S'Jack Staloff' +p48174 +sa(dp48175 +g25267 +g27 +sg25268 +S'Ornamental Downspout' +p48176 +sg25270 +S'Samuel W. Ford' +p48177 +sa(dp48178 +g25267 +g27 +sg25268 +S'Carved Wooden Door' +p48179 +sg25270 +S'Ray Price' +p48180 +sa(dp48181 +g25267 +g27 +sg25268 +S'Doors' +p48182 +sg25270 +S'Alfred Koehn' +p48183 +sa(dp48184 +g25267 +g27 +sg25268 +S'Doorway' +p48185 +sg25270 +S'Jerome Hoxie' +p48186 +sa(dp48187 +g25267 +g27 +sg25268 +S'Ladle' +p48188 +sg25270 +S'Charles Moss' +p48189 +sa(dp48190 +g25273 +S'Widener Collection' +p48191 +sg25267 +g27 +sg25275 +S'\nbound volume with 17 drawings and 19 prints by various artists for the 1767-1771 ed. of "Les Metamorphoses d\'Ovide"' +p48192 +sg25268 +S'Album of Preliminary Drawings and Prints for "Les Metamorphoses d\'Ovide" (volume 6)' +p48193 +sg25270 +S'Various Artists' +p48194 +sa(dp48195 +g25267 +g27 +sg25268 +S'Wooden Ladle' +p48196 +sg25270 +S'E.J. Reynolds' +p48197 +sa(dp48198 +g25267 +g27 +sg25268 +S'Ladle' +p48199 +sg25270 +S'Charles Garjian' +p48200 +sa(dp48201 +g25267 +g27 +sg25268 +S'Ladle' +p48202 +sg25270 +S'Rosa G. Busey' +p48203 +sa(dp48204 +g25267 +g27 +sg25268 +S'Copper Dipper' +p48205 +sg25270 +S'George V. Vezolles' +p48206 +sa(dp48207 +g25267 +g27 +sg25268 +S'Toddy Ladle' +p48208 +sg25270 +S'Douglas Campbell' +p48209 +sa(dp48210 +g25267 +g27 +sg25268 +S'Wooden Dipper' +p48211 +sg25270 +S'Elmer Weise' +p48212 +sa(dp48213 +g25267 +g27 +sg25268 +S'Candy Ladle' +p48214 +sg25270 +S'William Ludwig' +p48215 +sa(dp48216 +g25267 +g27 +sg25268 +S'Melting Ladle' +p48217 +sg25270 +S'Eugene Bartz' +p48218 +sa(dp48219 +g25267 +g27 +sg25268 +S'Metal Ladle' +p48220 +sg25270 +S'Albert Geuppert' +p48221 +sa(dp48222 +g25267 +g27 +sg25268 +S'Wooden Dipper' +p48223 +sg25270 +S'Jacob Gielens' +p48224 +sa(dp48225 +g25268 +S"La Famine par l'ordre de C\xc3\xa9r\xc3\xa8s vient r\xc3\xa9pandre son venin sur Eresicthon, tandis qu'il dormoit" +p48226 +sg25270 +S'Artist Information (' +p48227 +sg25273 +S'(artist after)' +p48228 +sg25275 +S'\n' +p48229 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a00061f0.jpg' +p48230 +sg25267 +g27 +sa(dp48231 +g25267 +g27 +sg25268 +S'Ladle' +p48232 +sg25270 +S'Charles Moss' +p48233 +sa(dp48234 +g25267 +g27 +sg25268 +S'Cream Ladle' +p48235 +sg25270 +S'Josephine C. Romano' +p48236 +sa(dp48237 +g25267 +g27 +sg25268 +S'Ladle' +p48238 +sg25270 +S'Angelo Bulone' +p48239 +sa(dp48240 +g25267 +g27 +sg25268 +S'Iron Ladle' +p48241 +sg25270 +S'Genevieve Jordan' +p48242 +sa(dp48243 +g25267 +g27 +sg25268 +S'Ladle' +p48244 +sg25270 +S'Lyman Young' +p48245 +sa(dp48246 +g25267 +g27 +sg25268 +S'Ladle' +p48247 +sg25270 +S'A. Zaidenberg' +p48248 +sa(dp48249 +g25267 +g27 +sg25268 +S'Sugar Dipper' +p48250 +sg25270 +S'Annie B. Johnston' +p48251 +sa(dp48252 +g25267 +g27 +sg25268 +S'Sugar Dipper' +p48253 +sg25270 +S'Annie B. Johnston' +p48254 +sa(dp48255 +g25267 +g27 +sg25268 +S'Sugar Dipper' +p48256 +sg25270 +S'Annie B. Johnston' +p48257 +sa(dp48258 +g25267 +g27 +sg25268 +S'Ladle' +p48259 +sg25270 +S'Yolande Delasser' +p48260 +sa(dp48261 +g25273 +S'graphite' +p48262 +sg25267 +g27 +sg25275 +S'1767' +p48263 +sg25268 +S'Achelous se metamorphose en Taureau ...' +p48264 +sg25270 +S'Charles Eisen' +p48265 +sa(dp48266 +g25267 +g27 +sg25268 +S'Door Stop' +p48267 +sg25270 +S'Richard Barnett' +p48268 +sa(dp48269 +g25267 +g27 +sg25268 +S'Frog Door Stop' +p48270 +sg25270 +S'Donald Streeter' +p48271 +sa(dp48272 +g25267 +g27 +sg25268 +S'Door Stop' +p48273 +sg25270 +S'Alf Bruseth' +p48274 +sa(dp48275 +g25267 +g27 +sg25268 +S'Door Stop' +p48276 +sg25270 +S'Winifred Luten' +p48277 +sa(dp48278 +g25267 +g27 +sg25268 +S'Door Knocker' +p48279 +sg25270 +S'J. Howard Iams' +p48280 +sa(dp48281 +g25267 +g27 +sg25268 +S'Door Knocker' +p48282 +sg25270 +S'Janet Riza' +p48283 +sa(dp48284 +g25267 +g27 +sg25268 +S'Door Knocker' +p48285 +sg25270 +S'Jack Staloff' +p48286 +sa(dp48287 +g25267 +g27 +sg25268 +S'Door Knocker' +p48288 +sg25270 +S'Arsen Maralian' +p48289 +sa(dp48290 +g25267 +g27 +sg25268 +S'Door Knocker' +p48291 +sg25270 +S'Julius Bellamy' +p48292 +sa(dp48293 +g25267 +g27 +sg25268 +S'Door Knocker' +p48294 +sg25270 +S'Columbus Simpson' +p48295 +sa(dp48296 +g25273 +S'(artist after)' +p48297 +sg25267 +g27 +sg25275 +S'\n' +p48298 +sg25268 +S'Achelous se metamorphose en Taureau ...' +p48299 +sg25270 +S'Artist Information (' +p48300 +sa(dp48301 +g25267 +g27 +sg25268 +S'Door Knocker' +p48302 +sg25270 +S'Julius Bellamy' +p48303 +sa(dp48304 +g25267 +g27 +sg25268 +S'Door Knocker' +p48305 +sg25270 +S'William L. Antrim' +p48306 +sa(dp48307 +g25267 +g27 +sg25268 +S'Door Knocker' +p48308 +sg25270 +S'William L. Antrim' +p48309 +sa(dp48310 +g25267 +g27 +sg25268 +S'Door Knocker' +p48311 +sg25270 +S'Frank Gray' +p48312 +sa(dp48313 +g25267 +g27 +sg25268 +S'Door Knocker' +p48314 +sg25270 +S'William L. Antrim' +p48315 +sa(dp48316 +g25267 +g27 +sg25268 +S'Door Knocker' +p48317 +sg25270 +S'Grace Halpin' +p48318 +sa(dp48319 +g25267 +g27 +sg25268 +S'Door Knocker' +p48320 +sg25270 +S'Regina Henderer' +p48321 +sa(dp48322 +g25267 +g27 +sg25268 +S'Door Knocker' +p48323 +sg25270 +S'Christopher Hobbs' +p48324 +sa(dp48325 +g25267 +g27 +sg25268 +S'Door Knocker' +p48326 +sg25270 +S'Ben Lassen' +p48327 +sa(dp48328 +g25267 +g27 +sg25268 +S'Door Knocker' +p48329 +sg25270 +S'Wayne White' +p48330 +sa(dp48331 +g25273 +S', 1767' +p48332 +sg25267 +g27 +sg25275 +S'\n' +p48333 +sg25268 +S"L'Enlevement de Dejanire par the Centaure Nessus" +p48334 +sg25270 +S'Jean-Michel Moreau the Younger' +p48335 +sa(dp48336 +g25267 +g27 +sg25268 +S'Door Knocker' +p48337 +sg25270 +S'E.N. Dunne' +p48338 +sa(dp48339 +g25267 +g27 +sg25268 +S'Door Knocker' +p48340 +sg25270 +S'Ben Lassen' +p48341 +sa(dp48342 +g25267 +g27 +sg25268 +S'Door Knocker' +p48343 +sg25270 +S'Janet Riza' +p48344 +sa(dp48345 +g25267 +g27 +sg25268 +S'Door Knocker' +p48346 +sg25270 +S'William L. Antrim' +p48347 +sa(dp48348 +g25267 +g27 +sg25268 +S'Drain Head' +p48349 +sg25270 +S'Herbert Barnard' +p48350 +sa(dp48351 +g25267 +g27 +sg25268 +S'Door Knocker' +p48352 +sg25270 +S'Edgar L. Pearce' +p48353 +sa(dp48354 +g25267 +g27 +sg25268 +S'Door Knocker' +p48355 +sg25270 +S'Columbus Simpson' +p48356 +sa(dp48357 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48358 +sg25270 +S'Philip Johnson' +p48359 +sa(dp48360 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48361 +sg25270 +S'Janet Riza' +p48362 +sa(dp48363 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48364 +sg25270 +S'Janet Riza' +p48365 +sa(dp48366 +g25273 +S'(artist after)' +p48367 +sg25267 +g27 +sg25275 +S'\n' +p48368 +sg25268 +S"L'Enl\xc3\xa8vement de D\xc3\xa9janire par le Centaure Nessus" +p48369 +sg25270 +S'Artist Information (' +p48370 +sa(dp48371 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48372 +sg25270 +S'Matthew Mangiacotti' +p48373 +sa(dp48374 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48375 +sg25270 +S'Janet Riza' +p48376 +sa(dp48377 +g25267 +g27 +sg25268 +S'Drawknife' +p48378 +sg25270 +S'Clarence Secor' +p48379 +sa(dp48380 +g25267 +g27 +sg25268 +S'Drawshave' +p48381 +sg25270 +S'Thomas Dooley' +p48382 +sa(dp48383 +g25267 +g27 +sg25268 +S'Adjustable Drawshave' +p48384 +sg25270 +S'Albert Geuppert' +p48385 +sa(dp48386 +g25267 +g27 +sg25268 +S'Drawknife' +p48387 +sg25270 +S'Gilbert Boese' +p48388 +sa(dp48389 +g25267 +g27 +sg25268 +S'Drawknife' +p48390 +sg25270 +S'George C. Brown' +p48391 +sa(dp48392 +g25267 +g27 +sg25268 +S'Drawknife' +p48393 +sg25270 +S'George C. Brown' +p48394 +sa(dp48395 +g25267 +g27 +sg25268 +S'Cheese Draining Board' +p48396 +sg25270 +S'Walter Praefke' +p48397 +sa(dp48398 +g25267 +g27 +sg25268 +S'Downspout' +p48399 +sg25270 +S'Regina Henderer' +p48400 +sa(dp48401 +g25273 +S'graphite' +p48402 +sg25267 +g27 +sg25275 +S'1767' +p48403 +sg25268 +S'Hercule entendu sur le bucher ...' +p48404 +sg25270 +S'Charles Eisen' +p48405 +sa(dp48406 +g25267 +g27 +sg25268 +S'Dough Tray' +p48407 +sg25270 +S'Leonard Battee' +p48408 +sa(dp48409 +g25267 +g27 +sg25268 +S'Dough Trough' +p48410 +sg25270 +S'Carl Keksi' +p48411 +sa(dp48412 +g25267 +g27 +sg25268 +S'Dipper' +p48413 +sg25270 +S'Jacob Gielens' +p48414 +sa(dp48415 +g25267 +g27 +sg25268 +S'Dough Mixer' +p48416 +sg25270 +S'Roger Deats' +p48417 +sa(dp48418 +g25267 +g27 +sg25268 +S'Dough Bin' +p48419 +sg25270 +S'William H. Edwards' +p48420 +sa(dp48421 +g25267 +g27 +sg25268 +S'Dipper' +p48422 +sg25270 +S'Hyman Pearlman' +p48423 +sa(dp48424 +g25267 +g27 +sg25268 +S'Biscuit Board' +p48425 +sg25270 +S'Sarah F. Williams' +p48426 +sa(dp48427 +g25267 +g27 +sg25268 +S'Dough Mixer' +p48428 +sg25270 +S'Eva Perry' +p48429 +sa(dp48430 +g25267 +g27 +sg25268 +S'Oil Wood Ladle' +p48431 +sg25270 +S'Geoffrey Holt' +p48432 +sa(dp48433 +g25267 +g27 +sg25268 +S'Copper Candy Ladle' +p48434 +sg25270 +S'Frank McEntee' +p48435 +sa(dp48436 +g25273 +S'(artist after)' +p48437 +sg25267 +g27 +sg25275 +S'\n' +p48438 +sg25268 +S'Hercule entendu sur le bucher ...' +p48439 +sg25270 +S'Artist Information (' +p48440 +sa(dp48441 +g25267 +g27 +sg25268 +S'Spoon' +p48442 +sg25270 +S'Edith Towner' +p48443 +sa(dp48444 +g25267 +g27 +sg25268 +S'Door Stop' +p48445 +sg25270 +S'H. Langden Brown' +p48446 +sa(dp48447 +g25267 +g27 +sg25268 +S'Door Stop' +p48448 +sg25270 +S'Archie Thompson' +p48449 +sa(dp48450 +g25267 +g27 +sg25268 +S'Door Stop' +p48451 +sg25270 +S'Sarkis Erganian' +p48452 +sa(dp48453 +g25267 +g27 +sg25268 +S'Door Stop' +p48454 +sg25270 +S'Gerard Barnett' +p48455 +sa(dp48456 +g25267 +g27 +sg25268 +S'Door Stop' +p48457 +sg25270 +S'Ben Lassen' +p48458 +sa(dp48459 +g25267 +g27 +sg25268 +S'Door Stop' +p48460 +sg25270 +S'Nicholas Amantea' +p48461 +sa(dp48462 +g25267 +g27 +sg25268 +S'Cuspidor' +p48463 +sg25270 +S'Adolph Opstad' +p48464 +sa(dp48465 +g25267 +g27 +sg25268 +S'Decoy Duck' +p48466 +sg25270 +S'John Sullivan' +p48467 +sa(dp48468 +g25267 +g27 +sg25268 +S'Family Record' +p48469 +sg25270 +S'John Wilkes' +p48470 +sa(dp48471 +g25273 +S'graphite with gray wash and white heightening' +p48472 +sg25267 +g27 +sg25275 +S'1768' +p48473 +sg25268 +S'Hercule monte au Ciel ...' +p48474 +sg25270 +S'Charles Eisen' +p48475 +sa(dp48476 +g25267 +g27 +sg25268 +S'Gatepost Finial' +p48477 +sg25270 +S'Adolph Opstad' +p48478 +sa(dp48479 +g25267 +g27 +sg25268 +S'Golden Eagle' +p48480 +sg25270 +S'Clarence W. Dawson' +p48481 +sa(dp48482 +g25267 +g27 +sg25268 +S'Eagle' +p48483 +sg25270 +S'Louis Plogsted' +p48484 +sa(dp48485 +g25267 +g27 +sg25268 +S'Plaque' +p48486 +sg25270 +S'Virgil A. Liberto' +p48487 +sa(dp48488 +g25267 +g27 +sg25268 +S'Carved Eagle Head' +p48489 +sg25270 +S'Lucille Chabot' +p48490 +sa(dp48491 +g25267 +g27 +sg25268 +S'Sternboard Eagle' +p48492 +sg25270 +S'F.W. Powell' +p48493 +sa(dp48494 +g25267 +g27 +sg25268 +S'Eagle' +p48495 +sg25270 +S'Helen E. Gilman' +p48496 +sa(dp48497 +g25267 +g27 +sg25268 +S'Wooden Eagle' +p48498 +sg25270 +S'Henry Murphy' +p48499 +sa(dp48500 +g25267 +g27 +sg25268 +S'Eagle' +p48501 +sg25270 +S'John Collins' +p48502 +sa(dp48503 +g25267 +g27 +sg25268 +S'Finial Eagle' +p48504 +sg25270 +S'James McLellan' +p48505 +sa(dp48506 +g25273 +S'(artist after)' +p48507 +sg25267 +g27 +sg25275 +S'\n' +p48508 +sg25268 +S'Hercule monte au Ciel ...' +p48509 +sg25270 +S'Artist Information (' +p48510 +sa(dp48511 +g25267 +g27 +sg25268 +S'Finial Eagle' +p48512 +sg25270 +S'James McLellan' +p48513 +sa(dp48514 +g25267 +g27 +sg25268 +S'Ornamental Wood Carving: Eagle' +p48515 +sg25270 +S'Harriette Gale' +p48516 +sa(dp48517 +g25267 +g27 +sg25268 +S'Figurehead from "Empress"' +p48518 +sg25270 +S'Lucille Chabot' +p48519 +sa(dp48520 +g25267 +g27 +sg25268 +S'Figurehead' +p48521 +sg25270 +S'American 20th Century' +p48522 +sa(dp48523 +g25267 +g27 +sg25268 +S'Figurehead' +p48524 +sg25270 +S'Mary E. Humes' +p48525 +sa(dp48526 +g25267 +g27 +sg25268 +S'Figurehead' +p48527 +sg25270 +S'American 20th Century' +p48528 +sa(dp48529 +g25267 +g27 +sg25268 +S'Figurehead' +p48530 +sg25270 +S'F.W. Powell' +p48531 +sa(dp48532 +g25267 +g27 +sg25268 +S"Ship's Figurehead" +p48533 +sg25270 +S'Charles Bowman' +p48534 +sa(dp48535 +g25267 +g27 +sg25268 +S'Figurehead: Pilgrim' +p48536 +sg25270 +S'Mina Lowry' +p48537 +sa(dp48538 +g25267 +g27 +sg25268 +S'Figurehead' +p48539 +sg25270 +S'Frank Gray' +p48540 +sa(dp48541 +g25273 +S', 1767' +p48542 +sg25267 +g27 +sg25275 +S'\n' +p48543 +sg25268 +S"Lucine a la porte d'Alcmene terrasse Galanthis et la metamorphose in Belette" +p48544 +sg25270 +S'Jean-Michel Moreau the Younger' +p48545 +sa(dp48546 +g25267 +g27 +sg25268 +S'Figurehead: Warrior with Helmet' +p48547 +sg25270 +S'F.W. Powell' +p48548 +sa(dp48549 +g25267 +g27 +sg25268 +S'Figurehead' +p48550 +sg25270 +S'Joseph Goldberg' +p48551 +sa(dp48552 +g25267 +g27 +sg25268 +S'Figurehead for Ship "Marcia Allen"' +p48553 +sg25270 +S'Molly Bodenstein' +p48554 +sa(dp48555 +g25267 +g27 +sg25268 +S'Exterior of Elevated Station' +p48556 +sg25270 +S'Hans Westendorff' +p48557 +sa(dp48558 +g25267 +g27 +sg25268 +S'Tin Egg Boiler' +p48559 +sg25270 +S'Richard Barnett' +p48560 +sa(dp48561 +g25267 +g27 +sg25268 +S'Eagle' +p48562 +sg25270 +S'Artist Information (' +p48563 +sa(dp48564 +g25267 +g27 +sg25268 +S'Door Knocker' +p48565 +sg25270 +S'E.N. Dunne' +p48566 +sa(dp48567 +g25267 +g27 +sg25268 +S'Dutch Oven' +p48568 +sg25270 +S'Manuel G. Runyan' +p48569 +sa(dp48570 +g25267 +g27 +sg25268 +S'Dutch Oven' +p48571 +sg25270 +S'Holger Hansen' +p48572 +sa(dp48573 +g25267 +g27 +sg25268 +S'Dumb Iron' +p48574 +sg25270 +S'Alfonso Moreno' +p48575 +sa(dp48576 +g25273 +S'(artist after)' +p48577 +sg25267 +g27 +sg25275 +S'\n' +p48578 +sg25268 +S"Lucine \xc3\xa0 la porte d'Alcm\xc3\xa8ne terrasse Galanthis et la m\xc3\xa9tamorphose en Belette" +p48579 +sg25270 +S'Artist Information (' +p48580 +sa(dp48581 +g25267 +g27 +sg25268 +S'Drumb' +p48582 +sg25270 +S'Charles Moss' +p48583 +sa(dp48584 +g25267 +g27 +sg25268 +S'Snare Drum' +p48585 +sg25270 +S'Rose Campbell-Gerke' +p48586 +sa(dp48587 +g25267 +g27 +sg25268 +S'Drum' +p48588 +sg25270 +S'Stewart Wheeler' +p48589 +sa(dp48590 +g25267 +g27 +sg25268 +S"Wheelwright's Drill" +p48591 +sg25270 +S'Joseph L. Boyd' +p48592 +sa(dp48593 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48594 +sg25270 +S'Janet Riza' +p48595 +sa(dp48596 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48597 +sg25270 +S'Janet Riza' +p48598 +sa(dp48599 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48600 +sg25270 +S'Hans Korsch' +p48601 +sa(dp48602 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48603 +sg25270 +S'Janet Riza' +p48604 +sa(dp48605 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48606 +sg25270 +S'Matthew Mangiacotti' +p48607 +sa(dp48608 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48609 +sg25270 +S'Janet Riza' +p48610 +sa(dp48611 +g25273 +S'graphite' +p48612 +sg25267 +g27 +sg25275 +S'1767' +p48613 +sg25268 +S"Explication des travaux d'Hercule" +p48614 +sg25270 +S'Charles Eisen' +p48615 +sa(dp48616 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48617 +sg25270 +S'Janet Riza' +p48618 +sa(dp48619 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48620 +sg25270 +S'Janet Riza' +p48621 +sa(dp48622 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48623 +sg25270 +S'Janet Riza' +p48624 +sa(dp48625 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48626 +sg25270 +S'Hans Korsch' +p48627 +sa(dp48628 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48629 +sg25270 +S'Janet Riza' +p48630 +sa(dp48631 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48632 +sg25270 +S'Philip Johnson' +p48633 +sa(dp48634 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48635 +sg25270 +S'Janet Riza' +p48636 +sa(dp48637 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48638 +sg25270 +S'Janet Riza' +p48639 +sa(dp48640 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48641 +sg25270 +S'Janet Riza' +p48642 +sa(dp48643 +g25267 +g27 +sg25268 +S'Handle' +p48644 +sg25270 +S'Artist Information (' +p48645 +sa(dp48646 +g25273 +S'(artist after)' +p48647 +sg25267 +g27 +sg25275 +S'\n' +p48648 +sg25268 +S"Explication des travaux d'Hercule" +p48649 +sg25270 +S'Artist Information (' +p48650 +sa(dp48651 +g25267 +g27 +sg25268 +S'Drawer Pulls' +p48652 +sg25270 +S'Janet Riza' +p48653 +sa(dp48654 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48655 +sg25270 +S'Janet Riza' +p48656 +sa(dp48657 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48658 +sg25270 +S'Philip Johnson' +p48659 +sa(dp48660 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48661 +sg25270 +S'Helen Bronson' +p48662 +sa(dp48663 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48664 +sg25270 +S'Philip Johnson' +p48665 +sa(dp48666 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48667 +sg25270 +S'Philip Johnson' +p48668 +sa(dp48669 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48670 +sg25270 +S'Janet Riza' +p48671 +sa(dp48672 +g25267 +g27 +sg25268 +S'Drawer Pulls and Key Plate' +p48673 +sg25270 +S'Philip Johnson' +p48674 +sa(dp48675 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48676 +sg25270 +S'Janet Riza' +p48677 +sa(dp48678 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48679 +sg25270 +S'Philip Johnson' +p48680 +sa(dp48681 +g25273 +S'(artist after)' +p48682 +sg25267 +g27 +sg25275 +S'\n' +p48683 +sg25268 +S'Explication esclave chez la Reime Omphale ...' +p48684 +sg25270 +S'Artist Information (' +p48685 +sa(dp48686 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48687 +sg25270 +S'Philip Johnson' +p48688 +sa(dp48689 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48690 +sg25270 +S'Janet Riza' +p48691 +sa(dp48692 +g25267 +g27 +sg25268 +S'Drawer Pull' +p48693 +sg25270 +S'Janet Riza' +p48694 +sa(dp48695 +g25267 +g27 +sg25268 +S'Potpourri Jar: Eagle' +p48696 +sg25270 +S'Adolph Opstad' +p48697 +sa(dp48698 +g25267 +g27 +sg25268 +S'Paperweight' +p48699 +sg25270 +S'Roberta Spicer' +p48700 +sa(dp48701 +g25267 +g27 +sg25268 +S'Metal Eagle' +p48702 +sg25270 +S'Doris Hollingsworth' +p48703 +sa(dp48704 +g25267 +g27 +sg25268 +S'Flag Pole Finial' +p48705 +sg25270 +S'Victor F. Muollo' +p48706 +sa(dp48707 +g25267 +g27 +sg25268 +S'Weather Vane Finial' +p48708 +sg25270 +S'Rollington Campbell' +p48709 +sa(dp48710 +g25267 +g27 +sg25268 +S'Door Stop' +p48711 +sg25270 +S'Milton Grubstein' +p48712 +sa(dp48713 +g25267 +g27 +sg25268 +S'Cast Iron Eagle' +p48714 +sg25270 +S'Austin L. Davison' +p48715 +sa(dp48716 +g25273 +S', 1767' +p48717 +sg25267 +g27 +sg25275 +S'\n' +p48718 +sg25268 +S'Lotos metamorphosee en Arbre en fuyant Priape' +p48719 +sg25270 +S'Jean-Michel Moreau the Younger' +p48720 +sa(dp48721 +g25267 +g27 +sg25268 +S'Flag Pole Holder' +p48722 +sg25270 +S'Arthur Stewart' +p48723 +sa(dp48724 +g25267 +g27 +sg25268 +S'Eagle' +p48725 +sg25270 +S'Filippo Porreca' +p48726 +sa(dp48727 +g25267 +g27 +sg25268 +S'Gilt Eagle' +p48728 +sg25270 +S'James Vail' +p48729 +sa(dp48730 +g25267 +g27 +sg25268 +S'Wall Anchor' +p48731 +sg25270 +S'Milton Grubstein' +p48732 +sa(dp48733 +g25267 +g27 +sg25268 +S'Metal Eagle' +p48734 +sg25270 +S'Zabelle Missirian' +p48735 +sa(dp48736 +g25267 +g27 +sg25268 +S'Eagle' +p48737 +sg25270 +S'Herman Bader' +p48738 +sa(dp48739 +g25267 +g27 +sg25268 +S'Eagle' +p48740 +sg25270 +S'Milton Grubstein' +p48741 +sa(dp48742 +g25267 +g27 +sg25268 +S'Door Stop: Eagle' +p48743 +sg25270 +S'Austin L. Davison' +p48744 +sa(dp48745 +g25267 +g27 +sg25268 +S'Door Stop: Eagle' +p48746 +sg25270 +S'Arthur Mathews' +p48747 +sa(dp48748 +g25267 +g27 +sg25268 +S'Pilot House Figure (Eagle)' +p48749 +sg25270 +S'Walter Hochstrasser' +p48750 +sa(dp48751 +g25273 +S'(artist after)' +p48752 +sg25267 +g27 +sg25275 +S'\n' +p48753 +sg25268 +S'Lotos m\xc3\xa9tamorphos\xc3\xa9e en Arbre en fuyant Priape...' +p48754 +sg25270 +S'Artist Information (' +p48755 +sa(dp48756 +g25267 +g27 +sg25268 +S'Pilot House Figure (Eagle)' +p48757 +sg25270 +S'Vincent McPharlin' +p48758 +sa(dp48759 +g25267 +g27 +sg25268 +S'Figurehead from Schooner "Nellie G"' +p48760 +sg25270 +S'American 20th Century' +p48761 +sa(dp48762 +g25267 +g27 +sg25268 +S'Eagle Figure' +p48763 +sg25270 +S'Gordon Sanborn' +p48764 +sa(dp48765 +g25267 +g27 +sg25268 +S'Eagle' +p48766 +sg25270 +S'Bernard Westmacott' +p48767 +sa(dp48768 +g25267 +g27 +sg25268 +S'Wooden Eagle' +p48769 +sg25270 +S'Henry Murphy' +p48770 +sa(dp48771 +g25267 +g27 +sg25268 +S'Ornamental Carving: Eagle and Snake' +p48772 +sg25270 +S'Alfred H. Smith' +p48773 +sa(dp48774 +g25267 +g27 +sg25268 +S"Small Ship's Billet Head" +p48775 +sg25270 +S'Alfred H. Smith' +p48776 +sa(dp48777 +g25267 +g27 +sg25268 +S'Small Carved Bellamy Eagle' +p48778 +sg25270 +S'Harriette Gale' +p48779 +sa(dp48780 +g25267 +g27 +sg25268 +S'Carved Eagle' +p48781 +sg25270 +S'Beverly Chichester' +p48782 +sa(dp48783 +g25267 +g27 +sg25268 +S'Spread Eagle on Bible' +p48784 +sg25270 +S'Joseph Goldberg' +p48785 +sa(dp48786 +g25273 +S'graphite' +p48787 +sg25267 +g27 +sg25275 +S'1767' +p48788 +sg25268 +S'Byblis oblige son frere de fuir, et est Metamorphosee en fontaine' +p48789 +sg25270 +S'Charles Eisen' +p48790 +sa(dp48791 +g25267 +g27 +sg25268 +S'Eagle Emblem' +p48792 +sg25270 +S'Eva Wilson' +p48793 +sa(dp48794 +g25267 +g27 +sg25268 +S'Eagle' +p48795 +sg25270 +S'David Ramage' +p48796 +sa(dp48797 +g25267 +g27 +sg25268 +S'Carved Eagle' +p48798 +sg25270 +S'Alice Cosgrove' +p48799 +sa(dp48800 +g25267 +g27 +sg25268 +S'Ornamental Carving: Eagle' +p48801 +sg25270 +S'Frances Cohen' +p48802 +sa(dp48803 +g25267 +g27 +sg25268 +S'Bellamy Eagle' +p48804 +sg25270 +S'Elizabeth Moutal' +p48805 +sa(dp48806 +g25267 +g27 +sg25268 +S'Eagle Emblem' +p48807 +sg25270 +S'Bernard Westmacott' +p48808 +sa(dp48809 +g25267 +g27 +sg25268 +S'Eagle' +p48810 +sg25270 +S'Frances Cohen' +p48811 +sa(dp48812 +g25267 +g27 +sg25268 +S'Eagle' +p48813 +sg25270 +S'Curry M. Bartlett' +p48814 +sa(dp48815 +g25267 +g27 +sg25268 +S'Eagle' +p48816 +sg25270 +S'John Davis' +p48817 +sa(dp48818 +g25267 +g27 +sg25268 +S'Eagle: Billethead' +p48819 +sg25270 +S'Robert Pohle' +p48820 +sa(dp48821 +g25273 +S'(artist after)' +p48822 +sg25267 +g27 +sg25275 +S'\n' +p48823 +sg25268 +S'Byblis oblige son frere de fuir, et est metamorphosee en fontaine' +p48824 +sg25270 +S'Artist Information (' +p48825 +sa(dp48826 +g25267 +g27 +sg25268 +S'Eagle' +p48827 +sg25270 +S'Elisabeth Fulda' +p48828 +sa(dp48829 +g25267 +g27 +sg25268 +S'Eagle' +p48830 +sg25270 +S'Ethel Clarke' +p48831 +sa(dp48832 +g25267 +g27 +sg25268 +S'Eagle' +p48833 +sg25270 +S'Marian Page' +p48834 +sa(dp48835 +g25267 +g27 +sg25268 +S'Eagle' +p48836 +sg25270 +S'Betty Fuerst' +p48837 +sa(dp48838 +g25267 +g27 +sg25268 +S'Carved Eagle' +p48839 +sg25270 +S'Edward L. Loper' +p48840 +sa(dp48841 +g25267 +g27 +sg25268 +S'Ember Carrier' +p48842 +sg25270 +S'Amelia Tuccio' +p48843 +sa(dp48844 +g25267 +g27 +sg25268 +S'Ember Carrier' +p48845 +sg25270 +S'Maurice Van Felix' +p48846 +sa(dp48847 +g25267 +g27 +sg25268 +S'Coal Carrier' +p48848 +sg25270 +S'Samuel Fineman' +p48849 +sa(dp48850 +g25267 +g27 +sg25268 +S'Election Poster' +p48851 +sg25270 +S'Andrew Herman' +p48852 +sa(dp48853 +g25267 +g27 +sg25268 +S'Electric Generator' +p48854 +sg25270 +S'Carl Buergerniss' +p48855 +sa(dp48856 +g25273 +S', 1767' +p48857 +sg25267 +g27 +sg25275 +S'\n' +p48858 +sg25268 +S'Sacrifice a la Deesse Isis qui metamorphose La jeune Iphis en garcon pour ...' +p48859 +sg25270 +S'Jean-Michel Moreau the Younger' +p48860 +sa(dp48861 +g25267 +g27 +sg25268 +S'Cake Batter Mixer' +p48862 +sg25270 +S'Ray Price' +p48863 +sa(dp48864 +g25267 +g27 +sg25268 +S'Wooden Egg Beater' +p48865 +sg25270 +S'Luther D. Wenrich' +p48866 +sa(dp48867 +g25267 +g27 +sg25268 +S'Egg Roaster' +p48868 +sg25270 +S'Filippo Porreca' +p48869 +sa(dp48870 +g25267 +g27 +sg25268 +S'Egg Boiler' +p48871 +sg25270 +S'Richard Taylor' +p48872 +sa(dp48873 +g25267 +g27 +sg25268 +S'Egg Beater' +p48874 +sg25270 +S'Ivar Julius' +p48875 +sa(dp48876 +g25267 +g27 +sg25268 +S'Economy Handkerchief' +p48877 +sg25270 +S'Katherine Hastings' +p48878 +sa(dp48879 +g25267 +g27 +sg25268 +S'Embroidered Collar' +p48880 +sg25270 +S'Eva Wilson' +p48881 +sa(dp48882 +g25267 +g27 +sg25268 +S'Darned Collar & Pattern of Embroidery' +p48883 +sg25270 +S'Eva Wilson' +p48884 +sa(dp48885 +g25267 +g27 +sg25268 +S'Economy Night Cap' +p48886 +sg25270 +S'Eva Wilson' +p48887 +sa(dp48888 +g25267 +g27 +sg25268 +S'Economy Sewing Supply Holder' +p48889 +sg25270 +S'Eva Wilson' +p48890 +sa(dp48891 +g25273 +S'(artist after)' +p48892 +sg25267 +g27 +sg25275 +S'\n' +p48893 +sg25268 +S'Sacrifice \xc3\xa0 la D\xc3\xa9esse Isis qui m\xc3\xa9tamorphose La jeune Iphis en gar\xc3\xa7on pour \xc3\xa9pouser Janthe' +p48894 +sg25270 +S'Artist Information (' +p48895 +sa(dp48896 +g25267 +g27 +sg25268 +S'Economy White Cap' +p48897 +sg25270 +S'Eva Wilson' +p48898 +sa(dp48899 +g25267 +g27 +sg25268 +S'Economy Red Handkerchief' +p48900 +sg25270 +S'Ralph Atkinson' +p48901 +sa(dp48902 +g25267 +g27 +sg25268 +S'Economy Scarf' +p48903 +sg25270 +S'Ralph Atkinson' +p48904 +sa(dp48905 +g25267 +g27 +sg25268 +S'Economy Handkerchief and Mitts' +p48906 +sg25270 +S'Eva Wilson' +p48907 +sa(dp48908 +g25267 +g27 +sg25268 +S'Economy Samples of Silk' +p48909 +sg25270 +S'Edward White' +p48910 +sa(dp48911 +g25267 +g27 +sg25268 +S'Economy Sample of Silk' +p48912 +sg25270 +S'Ralph Atkinson' +p48913 +sa(dp48914 +g25267 +g27 +sg25268 +S'New York City Hospital' +p48915 +sg25270 +S'Gilbert Sackerman' +p48916 +sa(dp48917 +g25267 +g27 +sg25268 +S'City Garden' +p48918 +sg25270 +S'Gilbert Sackerman' +p48919 +sa(dp48920 +g25267 +g27 +sg25268 +S'New York City Hospital' +p48921 +sg25270 +S'Gilbert Sackerman' +p48922 +sa(dp48923 +g25267 +g27 +sg25268 +S'Brevoort Estate' +p48924 +sg25270 +S'Gladys Cook' +p48925 +sa(dp48926 +g25273 +S', 1767' +p48927 +sg25267 +g27 +sg25275 +S'\n' +p48928 +sg25268 +S"Euridice courant sur l'herbe avec d'autres Nymphes ..." +p48929 +sg25270 +S'Jean-Michel Moreau the Younger' +p48930 +sa(dp48931 +g25267 +g27 +sg25268 +S'House' +p48932 +sg25270 +S'American 20th Century' +p48933 +sa(dp48934 +g25267 +g27 +sg25268 +S'Corner of Pearl and John Streets' +p48935 +sg25270 +S'American 20th Century' +p48936 +sa(dp48937 +g25267 +g27 +sg25268 +S'Caster Estate' +p48938 +sg25270 +S'Gladys Cook' +p48939 +sa(dp48940 +g25267 +g27 +sg25268 +S'Cargle Estate' +p48941 +sg25270 +S'Gladys Cook' +p48942 +sa(dp48943 +g25267 +g27 +sg25268 +S'House' +p48944 +sg25270 +S'American 20th Century' +p48945 +sa(dp48946 +g25267 +g27 +sg25268 +S"Mr. Stewart's House" +p48947 +sg25270 +S'Gladys Cook' +p48948 +sa(dp48949 +g25267 +g27 +sg25268 +S'168 John Street' +p48950 +sg25270 +S'American 20th Century' +p48951 +sa(dp48952 +g25267 +g27 +sg25268 +S'Street Scene' +p48953 +sg25270 +S'American 20th Century' +p48954 +sa(dp48955 +g25267 +g27 +sg25268 +S'House with Flag' +p48956 +sg25270 +S'American 20th Century' +p48957 +sa(dp48958 +g25267 +g27 +sg25268 +S'Stewart House' +p48959 +sg25270 +S'Gladys Cook' +p48960 +sa(dp48961 +g25273 +S'(artist after)' +p48962 +sg25267 +g27 +sg25275 +S'\n' +p48963 +sg25268 +S"Euridice courant sur l'herbe avec d'autres Nymphes ..." +p48964 +sg25270 +S'Artist Information (' +p48965 +sa(dp48966 +g25267 +g27 +sg25268 +S'Old Dutch Farmhouse' +p48967 +sg25270 +S'Gladys Cook' +p48968 +sa(dp48969 +g25267 +g27 +sg25268 +S'The Bowery House' +p48970 +sg25270 +S'Gladys Cook' +p48971 +sa(dp48972 +g25267 +g27 +sg25268 +S'Schermerhorn Residence' +p48973 +sg25270 +S'Helen Miller' +p48974 +sa(dp48975 +g25267 +g27 +sg25268 +S'Grenseback Estate' +p48976 +sg25270 +S'Helen Miller' +p48977 +sa(dp48978 +g25267 +g27 +sg25268 +S'Hot Coal Carrier' +p48979 +sg25270 +S'Douglas Cox' +p48980 +sa(dp48981 +g25267 +g27 +sg25268 +S'Hot Coal Carrier' +p48982 +sg25270 +S'Edith Miller' +p48983 +sa(dp48984 +g25267 +g27 +sg25268 +S'Figurehead' +p48985 +sg25270 +S'Betty Fuerst' +p48986 +sa(dp48987 +g25267 +g27 +sg25268 +S'Figurehead' +p48988 +sg25270 +S'James Vail' +p48989 +sa(dp48990 +g25267 +g27 +sg25268 +S'Figurehead' +p48991 +sg25270 +S'Louis Plogsted' +p48992 +sa(dp48993 +g25267 +g27 +sg25268 +S'Figurehead' +p48994 +sg25270 +S'Frances Cohen' +p48995 +sa(dp48996 +g25273 +S', 1768' +p48997 +sg25267 +g27 +sg25275 +S'\n' +p48998 +sg25268 +S'Euridice est ravie a Orphee ...' +p48999 +sg25270 +S'Jean-Michel Moreau the Younger' +p49000 +sa(dp49001 +g25267 +g27 +sg25268 +S'Figurehead from the "Lady Clinton"' +p49002 +sg25270 +S'Robert Pohle' +p49003 +sa(dp49004 +g25267 +g27 +sg25268 +S'Small Figurehead' +p49005 +sg25270 +S'Karl J. Hentz' +p49006 +sa(dp49007 +g25267 +g27 +sg25268 +S'Figurehead' +p49008 +sg25270 +S'Joseph Goldberg' +p49009 +sa(dp49010 +g25267 +g27 +sg25268 +S'Figurehead' +p49011 +sg25270 +S'American 20th Century' +p49012 +sa(dp49013 +g25267 +g27 +sg25268 +S'"Indian Princess" Figurehead' +p49014 +sg25270 +S'Mary E. Humes' +p49015 +sa(dp49016 +g25267 +g27 +sg25268 +S'"William Wirt" Figurehead' +p49017 +sg25270 +S'Molly Bodenstein' +p49018 +sa(dp49019 +g25267 +g27 +sg25268 +S'Figurehead from Bark "George"' +p49020 +sg25270 +S'Mary E. Humes' +p49021 +sa(dp49022 +g25267 +g27 +sg25268 +S'"Daniel Webster" Figurehead' +p49023 +sg25270 +S'F.W. Powell' +p49024 +sa(dp49025 +g25267 +g27 +sg25268 +S'Figurehead' +p49026 +sg25270 +S'Ingrid Selmer-Larsen' +p49027 +sa(dp49028 +g25267 +g27 +sg25268 +S'"Commodore Morris" Figurehead' +p49029 +sg25270 +S'F.W. Powell' +p49030 +sa(dp49031 +g25273 +S'(artist after)' +p49032 +sg25267 +g27 +sg25275 +S'\n' +p49033 +sg25268 +S'Euridice est ravie \xc3\xa0 Orph\xc3\xa9e' +p49034 +sg25270 +S'Artist Information (' +p49035 +sa(dp49036 +g25267 +g27 +sg25268 +S'Figurehead: Benjamin Franklin' +p49037 +sg25270 +S'Lawrence Flynn' +p49038 +sa(dp49039 +g25267 +g27 +sg25268 +S'Figurehead' +p49040 +sg25270 +S'Betty Fuerst' +p49041 +sa(dp49042 +g25267 +g27 +sg25268 +S'Bust of P.J. Landry' +p49043 +sg25270 +S'Al Curry' +p49044 +sa(dp49045 +g25267 +g27 +sg25268 +S'Half Length Figurehead' +p49046 +sg25270 +S'Rosamond P. Gray' +p49047 +sa(dp49048 +g25267 +g27 +sg25268 +S'Figurehead: Bust of Washington' +p49049 +sg25270 +S'Betty Fuerst' +p49050 +sa(dp49051 +g25267 +g27 +sg25268 +S'Figurehead: Warrior' +p49052 +sg25270 +S'Mary E. Humes' +p49053 +sa(dp49054 +g25267 +g27 +sg25268 +S'Eagle Woodcarving' +p49055 +sg25270 +S'Willard Hazen' +p49056 +sa(dp49057 +g25267 +S'Some small vessels had only an eagle as a bow decoration. In this eagle head, the carving terminates at\n the neck. Aside from patriotic associations, the eagle, with its sharp eyes, was especially appropriate to\n symbolize a lookout or guide. This particular example served as a figurehead on the \n ' +p49058 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003f2.jpg' +p49059 +sg25268 +S'Figurehead' +p49060 +sg25270 +S'Jerome Hoxie' +p49061 +sa(dp49062 +g25267 +g27 +sg25268 +S'Figurehead: Hercules' +p49063 +sg25270 +S'Virginia Richards' +p49064 +sa(dp49065 +g25267 +g27 +sg25268 +S'Figurehead: Hercules' +p49066 +sg25270 +S'Virginia Richards' +p49067 +sa(dp49068 +g25268 +S'Portrait of a Youth' +p49069 +sg25270 +S'Filippino Lippi' +p49070 +sg25273 +S'oil and tempera on panel' +p49071 +sg25275 +S'c. 1485' +p49072 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004a/a0004ae2.jpg' +p49073 +sg25267 +S"Filippino Lippi was the son of the painter Fra Filippo Lippi, who was undoubtedly\nthe boy's first master. After his father died in 1469, he became a pupil of Botticelli,\nwho had a profound influence on his style. In fact, the Washington portrait comes\nso close to Botticelli's style that there has been considerable disagreement among\nscholars as to exactly which artist was responsible for it. Although it has been\nattributed more often to Botticelli than to Filippino, most recent authors are now\nagreed that it is by the younger painter. In 1483 or 1484, Filippino was assigned\nthe task of finishing Masaccio's great frescoes in the Brancacci Chapel in Florence.\nThis portrait bears a great resemblance to a young man portrayed there by Filippino.\n During the Gothic era and early Renaissance, donors of a painting would often be\nportrayed as tiny figures praying at the lower edge of a painting, as in Crivelli's\n\n " +p49074 +sa(dp49075 +g25268 +S'Ugolino Martelli' +p49076 +sg25270 +S'Florentine 16th Century' +p49077 +sg25273 +S'oil on panel' +p49078 +sg25275 +S'mid 16th century' +p49079 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000080f.jpg' +p49080 +sg25267 +g27 +sa(dp49081 +g25273 +S'graphite' +p49082 +sg25267 +g27 +sg25275 +S'1767' +p49083 +sg25268 +S'Orphee sur le mont Rhodope attire ...' +p49084 +sg25270 +S'Charles Eisen' +p49085 +sa(dp49086 +g25267 +g27 +sg25268 +S'Figurehead' +p49087 +sg25270 +S'American 20th Century' +p49088 +sa(dp49089 +g25267 +g27 +sg25268 +S'Figurehead' +p49090 +sg25270 +S'Lucille Lacoursiere' +p49091 +sa(dp49092 +g25267 +g27 +sg25268 +S'Figurehead from "Indian Princess"' +p49093 +sg25270 +S'Elizabeth Moutal' +p49094 +sa(dp49095 +g25267 +g27 +sg25268 +S'Draped Figure' +p49096 +sg25270 +S'Mina Lowry' +p49097 +sa(dp49098 +g25267 +g27 +sg25268 +S'Figurehead' +p49099 +sg25270 +S'Flora Merchant' +p49100 +sa(dp49101 +g25267 +g27 +sg25268 +S'Figurehead "General Schofield"' +p49102 +sg25270 +S'Molly Bodenstein' +p49103 +sa(dp49104 +g25267 +g27 +sg25268 +S'Figurehead "S.S. Robert Fulton"' +p49105 +sg25270 +S'Louis Plogsted' +p49106 +sa(dp49107 +g25267 +g27 +sg25268 +S'Figurehead' +p49108 +sg25270 +S'Robert Pohle' +p49109 +sa(dp49110 +g25267 +g27 +sg25268 +S'Figurehead' +p49111 +sg25270 +S'Helen E. Gilman' +p49112 +sa(dp49113 +g25267 +g27 +sg25268 +S'Figurehead' +p49114 +sg25270 +S'Elizabeth Moutal' +p49115 +sa(dp49116 +g25273 +S'(artist after)' +p49117 +sg25267 +g27 +sg25275 +S'\n' +p49118 +sg25268 +S'Orphee sur le mont Rhodope attire ...' +p49119 +sg25270 +S'Artist Information (' +p49120 +sa(dp49121 +g25267 +g27 +sg25268 +S'Figurehead "Marie"' +p49122 +sg25270 +S'Ingrid Selmer-Larsen' +p49123 +sa(dp49124 +g25267 +g27 +sg25268 +S'Figurehead: Mermaid' +p49125 +sg25270 +S'Lucille Chabot' +p49126 +sa(dp49127 +g25267 +g27 +sg25268 +S'Figurehead "Martha"' +p49128 +sg25270 +S'Mary E. Humes' +p49129 +sa(dp49130 +g25267 +g27 +sg25268 +S'Figurehead' +p49131 +sg25270 +S'Jane Iverson' +p49132 +sa(dp49133 +g25267 +g27 +sg25268 +S'Soldier Figure' +p49134 +sg25270 +S'Joseph Rothenberg' +p49135 +sa(dp49136 +g25267 +g27 +sg25268 +S'Fireplace Ornament' +p49137 +sg25270 +S'Andrew Topolosky' +p49138 +sa(dp49139 +g25267 +g27 +sg25268 +S'Cast Iron Figure' +p49140 +sg25270 +S'Eugene Barrell' +p49141 +sa(dp49142 +g25267 +g27 +sg25268 +S'Cast Iron Ornament' +p49143 +sg25270 +S'Austin L. Davison' +p49144 +sa(dp49145 +g25267 +g27 +sg25268 +S'Figure' +p49146 +sg25270 +S'Byron Dingman' +p49147 +sa(dp49148 +g25267 +g27 +sg25268 +S'Statuette' +p49149 +sg25270 +S'Yolande Delasser' +p49150 +sa(dp49151 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p49152 +sg25267 +g27 +sg25275 +S'1768' +p49153 +sg25268 +S'Cyparisse voulent de donner la mort, est metamorphose en cypres par Apollon' +p49154 +sg25270 +S'Charles Monnet' +p49155 +sa(dp49156 +g25267 +g27 +sg25268 +S'Statuette' +p49157 +sg25270 +S'Yolande Delasser' +p49158 +sa(dp49159 +g25267 +g27 +sg25268 +S'Statuette' +p49160 +sg25270 +S'Yolande Delasser' +p49161 +sa(dp49162 +g25267 +g27 +sg25268 +S'Statuette' +p49163 +sg25270 +S'Yolande Delasser' +p49164 +sa(dp49165 +g25267 +g27 +sg25268 +S'Statuette' +p49166 +sg25270 +S'Frank Fumagalli' +p49167 +sa(dp49168 +g25267 +g27 +sg25268 +S'Statuette' +p49169 +sg25270 +S'Ralph Atkinson' +p49170 +sa(dp49171 +g25267 +g27 +sg25268 +S'Statuette (Queen Victoria)' +p49172 +sg25270 +S'Mina Lowry' +p49173 +sa(dp49174 +g25267 +g27 +sg25268 +S'Horse and Rider' +p49175 +sg25270 +S'Mina Lowry' +p49176 +sa(dp49177 +g25267 +g27 +sg25268 +S'Figure' +p49178 +sg25270 +S'Mina Lowry' +p49179 +sa(dp49180 +g25267 +g27 +sg25268 +S'Chalkware Figure' +p49181 +sg25270 +S'Mina Lowry' +p49182 +sa(dp49183 +g25267 +g27 +sg25268 +S'Fisherman and Woman' +p49184 +sg25270 +S'Mina Lowry' +p49185 +sa(dp49186 +g25273 +S'(artist after)' +p49187 +sg25267 +g27 +sg25275 +S'\n' +p49188 +sg25268 +S'Cyparisse voulant de donner la mort, est metamorphose en cypres par Apollon' +p49189 +sg25270 +S'Artist Information (' +p49190 +sa(dp49191 +g25267 +g27 +sg25268 +S'Portrait Bust' +p49192 +sg25270 +S'Mina Lowry' +p49193 +sa(dp49194 +g25267 +g27 +sg25268 +S'Figurine' +p49195 +sg25270 +S'Mina Lowry' +p49196 +sa(dp49197 +g25267 +g27 +sg25268 +S'Figure of Knickerbocker' +p49198 +sg25270 +S'Gilbert Sackerman' +p49199 +sa(dp49200 +g25267 +g27 +sg25268 +S'Figurine' +p49201 +sg25270 +S'Mina Lowry' +p49202 +sa(dp49203 +g25267 +g27 +sg25268 +S'Figurine' +p49204 +sg25270 +S'Mina Lowry' +p49205 +sa(dp49206 +g25267 +g27 +sg25268 +S'Figurine' +p49207 +sg25270 +S'Mina Lowry' +p49208 +sa(dp49209 +g25267 +g27 +sg25268 +S'Mantle Ornament' +p49210 +sg25270 +S'Mina Lowry' +p49211 +sa(dp49212 +g25267 +g27 +sg25268 +S'Plaster Cast Figurine' +p49213 +sg25270 +S'Austin L. Davison' +p49214 +sa(dp49215 +g25267 +g27 +sg25268 +S'Madonna and Child' +p49216 +sg25270 +S'Mina Lowry' +p49217 +sa(dp49218 +g25267 +g27 +sg25268 +S'Figure of Napolean' +p49219 +sg25270 +S'Mina Lowry' +p49220 +sa(dp49221 +g25273 +S'graphite' +p49222 +sg25267 +g27 +sg25275 +S'1768' +p49223 +sg25268 +S'Jupiter metamorphose en Aigle, enleve Ganimede' +p49224 +sg25270 +S'Charles Eisen' +p49225 +sa(dp49226 +g25267 +g27 +sg25268 +S'Statue Clock Decoration' +p49227 +sg25270 +S'Walter Hochstrasser' +p49228 +sa(dp49229 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49230 +sg25270 +S'Richard F. Smith' +p49231 +sa(dp49232 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49233 +sg25270 +S'Alice Stearns' +p49234 +sa(dp49235 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49236 +sg25270 +S'Alice Stearns' +p49237 +sa(dp49238 +g25267 +g27 +sg25268 +S'Wooden Indian' +p49239 +sg25270 +S'Robert W.R. Taylor' +p49240 +sa(dp49241 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49242 +sg25270 +S'Henry Granet' +p49243 +sa(dp49244 +g25267 +g27 +sg25268 +S'Carved Wooden Indian' +p49245 +sg25270 +S'Verna Tallman' +p49246 +sa(dp49247 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49248 +sg25270 +S'Bernard Westmacott' +p49249 +sa(dp49250 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49251 +sg25270 +S'Henry Granet' +p49252 +sa(dp49253 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49254 +sg25270 +S'Bernard Westmacott' +p49255 +sa(dp49256 +g25273 +S'(artist after)' +p49257 +sg25267 +g27 +sg25275 +S'\n' +p49258 +sg25268 +S'Jupiter metamorphose en Aigle, enleve Ganimede' +p49259 +sg25270 +S'Artist Information (' +p49260 +sa(dp49261 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49262 +sg25270 +S'Walter Hochstrasser' +p49263 +sa(dp49264 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49265 +sg25270 +S'LeRoy Griffith' +p49266 +sa(dp49267 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49268 +sg25270 +S'Sydney Roberts' +p49269 +sa(dp49270 +g25267 +g27 +sg25268 +S'Wooden Indian' +p49271 +sg25270 +S'Robert W.R. Taylor' +p49272 +sa(dp49273 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49274 +sg25270 +S'Joseph Goldberg' +p49275 +sa(dp49276 +g25267 +g27 +sg25268 +S'Indian Chief' +p49277 +sg25270 +S'Harold A. Doughty' +p49278 +sa(dp49279 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49280 +sg25270 +S'Adele Brooks' +p49281 +sa(dp49282 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49283 +sg25270 +S'John Sullivan' +p49284 +sa(dp49285 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49286 +sg25270 +S'Chris Makrenos' +p49287 +sa(dp49288 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49289 +sg25270 +S'Flora Merchant' +p49290 +sa(dp49291 +g25273 +S'graphite' +p49292 +sg25267 +g27 +sg25275 +S'1768' +p49293 +sg25268 +S'Hyacinthe jouant avec Apollon ...' +p49294 +sg25270 +S'Charles Eisen' +p49295 +sa(dp49296 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49297 +sg25270 +S'Gerald Transpota' +p49298 +sa(dp49299 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49300 +sg25270 +S'N.H. Yeckley' +p49301 +sa(dp49302 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49303 +sg25270 +S'Henry Murphy' +p49304 +sa(dp49305 +g25267 +g27 +sg25268 +S'Figurehead' +p49306 +sg25270 +S'Frances Cohen' +p49307 +sa(dp49308 +g25267 +g27 +sg25268 +S'"Victorian Lady" Figurehead' +p49309 +sg25270 +S'Molly Bodenstein' +p49310 +sa(dp49311 +g25267 +g27 +sg25268 +S'"Belle of Oregon" Figurhead' +p49312 +sg25270 +S'Elisabeth Fulda' +p49313 +sa(dp49314 +g25267 +g27 +sg25268 +S'"Galatea" Figurehead' +p49315 +sg25270 +S'Mary E. Humes' +p49316 +sa(dp49317 +g25267 +g27 +sg25268 +S'"The Rhine" Figurehead' +p49318 +sg25270 +S'Rosamond P. Gray' +p49319 +sa(dp49320 +g25267 +g27 +sg25268 +S'"The Rhine" Figurehead' +p49321 +sg25270 +S'Rosamond P. Gray' +p49322 +sa(dp49323 +g25267 +g27 +sg25268 +S'"Tamanend" Figurehead' +p49324 +sg25270 +S'Douglas Campbell' +p49325 +sa(dp49326 +g25273 +S'(artist after)' +p49327 +sg25267 +g27 +sg25275 +S'\n' +p49328 +sg25268 +S'Hyacinthe jouant avec Apollon ...' +p49329 +sg25270 +S'Artist Information (' +p49330 +sa(dp49331 +g25267 +g27 +sg25268 +S'Fountain Figure' +p49332 +sg25270 +S'Roberta Spicer' +p49333 +sa(dp49334 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49335 +sg25270 +S'Henry Murphy' +p49336 +sa(dp49337 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49338 +sg25270 +S'Henry Tomaszewski' +p49339 +sa(dp49340 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49341 +sg25270 +S'Lucille Chabot' +p49342 +sa(dp49343 +g25267 +g27 +sg25268 +S"Tradesman's Sign" +p49344 +sg25270 +S'Laura Bilodeau' +p49345 +sa(dp49346 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49347 +sg25270 +S'Gordon Saltar' +p49348 +sa(dp49349 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49350 +sg25270 +S'Hardin Walsh' +p49351 +sa(dp49352 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49353 +sg25270 +S'V.L. Vance' +p49354 +sa(dp49355 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49356 +sg25270 +S'Einar Heiberg' +p49357 +sa(dp49358 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49359 +sg25270 +S'Charles Moss' +p49360 +sa(dp49361 +g25273 +S'graphite' +p49362 +sg25267 +g27 +sg25275 +S'1768' +p49363 +sg25268 +S'Venus metamorphose en Taureaux les Cerastes...' +p49364 +sg25270 +S'Charles Eisen' +p49365 +sa(dp49366 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49367 +sg25270 +S'Rolland Ayres' +p49368 +sa(dp49369 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49370 +sg25270 +S'Richard F. Smith' +p49371 +sa(dp49372 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49373 +sg25270 +S'Chris Makrenos' +p49374 +sa(dp49375 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49376 +sg25270 +S'Chris Makrenos' +p49377 +sa(dp49378 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49379 +sg25270 +S'Einar Heiberg' +p49380 +sa(dp49381 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49382 +sg25270 +S'Louis Plogsted' +p49383 +sa(dp49384 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49385 +sg25270 +S'Chris Makrenos' +p49386 +sa(dp49387 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49388 +sg25270 +S'Bisby Finley' +p49389 +sa(dp49390 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49391 +sg25270 +S'Artist Information (' +p49392 +sa(dp49393 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49394 +sg25270 +S'Vincent McPharlin' +p49395 +sa(dp49396 +g25273 +S'(artist after)' +p49397 +sg25267 +g27 +sg25275 +S'\n' +p49398 +sg25268 +S'Venus metamorphose en Taureaux les Cerastes ...' +p49399 +sg25270 +S'Artist Information (' +p49400 +sa(dp49401 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49402 +sg25270 +S'American 20th Century' +p49403 +sa(dp49404 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49405 +sg25270 +S'Richard F. Smith' +p49406 +sa(dp49407 +g25267 +g27 +sg25268 +S'Wooden Indian' +p49408 +sg25270 +S'Elmer G. Anderson' +p49409 +sa(dp49410 +g25267 +g27 +sg25268 +S'Carved Wooden Indian' +p49411 +sg25270 +S'Verna Tallman' +p49412 +sa(dp49413 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49414 +sg25270 +S'Henry Tomaszewski' +p49415 +sa(dp49416 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49417 +sg25270 +S'Henry Tomaszewski' +p49418 +sa(dp49419 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49420 +sg25270 +S'Albert Ryder' +p49421 +sa(dp49422 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49423 +sg25270 +S'Einar Heiberg' +p49424 +sa(dp49425 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49426 +sg25270 +S'Violet Hartenstein' +p49427 +sa(dp49428 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49429 +sg25270 +S'LeRoy Griffith' +p49430 +sa(dp49431 +g25268 +S'Saint Peter' +p49432 +sg25270 +S'Michele Giambono' +p49433 +sg25273 +S'tempera (?) on panel' +p49434 +sg25275 +S'c. 1445/1450' +p49435 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000856.jpg' +p49436 +sg25267 +g27 +sa(dp49437 +g25273 +S'(artist after)' +p49438 +sg25267 +g27 +sg25275 +S'\n' +p49439 +sg25268 +S"Pygmalion devient amoureux d'une statue ..." +p49440 +sg25270 +S'Artist Information (' +p49441 +sa(dp49442 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49443 +sg25270 +S'Albert Ryder' +p49444 +sa(dp49445 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49446 +sg25270 +S'Henry Murphy' +p49447 +sa(dp49448 +g25267 +g27 +sg25268 +S'Trapper Indian' +p49449 +sg25270 +S'Al Curry' +p49450 +sa(dp49451 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49452 +sg25270 +S'Eugene Croe' +p49453 +sa(dp49454 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49455 +sg25270 +S'John Davis' +p49456 +sa(dp49457 +g25267 +g27 +sg25268 +S'Wooden Pocahontas Store Figure' +p49458 +sg25270 +S'Stanley Mazur' +p49459 +sa(dp49460 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49461 +sg25270 +S'Walter Hochstrasser' +p49462 +sa(dp49463 +g25267 +g27 +sg25268 +S'Wooden Indian' +p49464 +sg25270 +S'William Kerby' +p49465 +sa(dp49466 +g25267 +g27 +sg25268 +S'Tobacco Store Figure' +p49467 +sg25270 +S'Eugene Croe' +p49468 +sa(dp49469 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49470 +sg25270 +S'Helen E. Gilman' +p49471 +sa(dp49472 +g25273 +S'graphite' +p49473 +sg25267 +g27 +sg25275 +S'1768' +p49474 +sg25268 +S'Myrrha reduite au desespoir par une passion incestueuse ...' +p49475 +sg25270 +S'Charles Eisen' +p49476 +sa(dp49477 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49478 +sg25270 +S'Eugene Croe' +p49479 +sa(dp49480 +g25267 +g27 +sg25268 +S'Indian Figure' +p49481 +sg25270 +S'American 20th Century' +p49482 +sa(dp49483 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49484 +sg25270 +S'American 20th Century' +p49485 +sa(dp49486 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49487 +sg25270 +S'Eugene Croe' +p49488 +sa(dp49489 +g25267 +g27 +sg25268 +S'Wooden Indian' +p49490 +sg25270 +S'Chris Makrenos' +p49491 +sa(dp49492 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49493 +sg25270 +S'Eugene Croe' +p49494 +sa(dp49495 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49496 +sg25270 +S'Walter Hochstrasser' +p49497 +sa(dp49498 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49499 +sg25270 +S'Harry Mann Waddell' +p49500 +sa(dp49501 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49502 +sg25270 +S'Walter Hochstrasser' +p49503 +sa(dp49504 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49505 +sg25270 +S'Walter Hochstrasser' +p49506 +sa(dp49507 +g25273 +S'Widener Collection' +p49508 +sg25267 +g27 +sg25275 +S'\nbound volume with 17 drawings and 19 prints by various artists for the 1767-1771 ed. of "Les Metamorphoses d\'Ovide"' +p49509 +sg25268 +S'Album of Preliminary Drawings and Prints for "Les Metamorphoses d\'Ovide" (volume 7)' +p49510 +sg25270 +S'Various Artists' +p49511 +sa(dp49512 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49513 +sg25270 +S'Walter Hochstrasser' +p49514 +sa(dp49515 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49516 +sg25270 +S'Mina Lowry' +p49517 +sa(dp49518 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49519 +sg25270 +S'Walter Hochstrasser' +p49520 +sa(dp49521 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49522 +sg25270 +S'Ethel Dougan' +p49523 +sa(dp49524 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49525 +sg25270 +S'Sydney Roberts' +p49526 +sa(dp49527 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49528 +sg25270 +S'Ethel Dougan' +p49529 +sa(dp49530 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49531 +sg25270 +S'Walter Hochstrasser' +p49532 +sa(dp49533 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49534 +sg25270 +S'Gordena Jackson' +p49535 +sa(dp49536 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49537 +sg25270 +S'Lucille Lacoursiere' +p49538 +sa(dp49539 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49540 +sg25270 +S'Lucille Lacoursiere' +p49541 +sa(dp49542 +g25273 +S'(artist after)' +p49543 +sg25267 +g27 +sg25275 +S'\n' +p49544 +sg25268 +S'Myrrha reduite au desespoir une passion incestueuse ...' +p49545 +sg25270 +S'Artist Information (' +p49546 +sa(dp49547 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49548 +sg25270 +S'Yolande Delasser' +p49549 +sa(dp49550 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49551 +sg25270 +S'Ralph M. Lewis' +p49552 +sa(dp49553 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49554 +sg25270 +S'Dorothy Handy' +p49555 +sa(dp49556 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49557 +sg25270 +S'Walter Hochstrasser' +p49558 +sa(dp49559 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49560 +sg25270 +S'Alton K. Skillin' +p49561 +sa(dp49562 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49563 +sg25270 +S'William Kerby' +p49564 +sa(dp49565 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49566 +sg25270 +S'Walter Hochstrasser' +p49567 +sa(dp49568 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49569 +sg25270 +S'Sydney Roberts' +p49570 +sa(dp49571 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49572 +sg25270 +S'Robert Pohle' +p49573 +sa(dp49574 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49575 +sg25270 +S'Louis Plogsted' +p49576 +sa(dp49577 +g25273 +S'graphite with white heightening' +p49578 +sg25267 +g27 +sg25275 +S'1768' +p49579 +sg25268 +S'Myrrha retiree dans le pays des Sabeens ...' +p49580 +sg25270 +S'Charles Eisen' +p49581 +sa(dp49582 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49583 +sg25270 +S'Clarence W. Dawson' +p49584 +sa(dp49585 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49586 +sg25270 +S'Arthur Mathews' +p49587 +sa(dp49588 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49589 +sg25270 +S'Violet Hartenstein' +p49590 +sa(dp49591 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49592 +sg25270 +S'Mina Lowry' +p49593 +sa(dp49594 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49595 +sg25270 +S'Richard F. Smith' +p49596 +sa(dp49597 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49598 +sg25270 +S'Beverly Chichester' +p49599 +sa(dp49600 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49601 +sg25270 +S'Charles Bowman' +p49602 +sa(dp49603 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49604 +sg25270 +S'Charles Bowman' +p49605 +sa(dp49606 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49607 +sg25270 +S'Lucille Lacoursiere' +p49608 +sa(dp49609 +g25267 +g27 +sg25268 +S'Cigar Store Pocahontas' +p49610 +sg25270 +S'Lucille Lacoursiere' +p49611 +sa(dp49612 +g25273 +S'(artist after)' +p49613 +sg25267 +g27 +sg25275 +S'\n' +p49614 +sg25268 +S'Myrrha retiree dans le pays des Sabeens ...' +p49615 +sg25270 +S'Artist Information (' +p49616 +sa(dp49617 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49618 +sg25270 +S'James McLellan' +p49619 +sa(dp49620 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49621 +sg25270 +S'American 20th Century' +p49622 +sa(dp49623 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49624 +sg25270 +S'Alvin M. Gully' +p49625 +sa(dp49626 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49627 +sg25270 +S'Irving L. Biehn' +p49628 +sa(dp49629 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49630 +sg25270 +S'Orville Cline' +p49631 +sa(dp49632 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49633 +sg25270 +S'Chris Makrenos' +p49634 +sa(dp49635 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49636 +sg25270 +S'Walter Hochstrasser' +p49637 +sa(dp49638 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49639 +sg25270 +S'Otto E. Hake' +p49640 +sa(dp49641 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49642 +sg25270 +S'Einar Heiberg' +p49643 +sa(dp49644 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49645 +sg25270 +S'Harry King' +p49646 +sa(dp49647 +g25268 +S'Venus appuyee sur son cher Adonis ...' +p49648 +sg25270 +S'Fran\xc3\xa7ois Boucher' +p49649 +sg25273 +S'black and white chalk on faded blue laid paper' +p49650 +sg25275 +S'1767' +p49651 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a00061a3.jpg' +p49652 +sg25267 +g27 +sa(dp49653 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49654 +sg25270 +S'Einar Heiberg' +p49655 +sa(dp49656 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49657 +sg25270 +S'Augustine Haugland' +p49658 +sa(dp49659 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49660 +sg25270 +S'Richard F. Smith' +p49661 +sa(dp49662 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49663 +sg25270 +S'Albert Ryder' +p49664 +sa(dp49665 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49666 +sg25270 +S'Raymond Chard' +p49667 +sa(dp49668 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49669 +sg25270 +S'Robert W.R. Taylor' +p49670 +sa(dp49671 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49672 +sg25270 +S'American 20th Century' +p49673 +sa(dp49674 +g25267 +g27 +sg25268 +S'Cigar Store Pocahontas' +p49675 +sg25270 +S'Mary E. Humes' +p49676 +sa(dp49677 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49678 +sg25270 +S'Elmer G. Anderson' +p49679 +sa(dp49680 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49681 +sg25270 +S'Michael Riccitelli' +p49682 +sa(dp49683 +g25273 +S'(artist after)' +p49684 +sg25267 +g27 +sg25275 +S'\n' +p49685 +sg25268 +S'Venus appuyee sur son cher Adonis ...' +p49686 +sg25270 +S'Artist Information (' +p49687 +sa(dp49688 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49689 +sg25270 +S'Flora Merchant' +p49690 +sa(dp49691 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49692 +sg25270 +S'Walter Hochstrasser' +p49693 +sa(dp49694 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49695 +sg25270 +S'Gerald Transpota' +p49696 +sa(dp49697 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49698 +sg25270 +S'Robert W.R. Taylor' +p49699 +sa(dp49700 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49701 +sg25270 +S'Ray Price' +p49702 +sa(dp49703 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49704 +sg25270 +S'Flora Merchant' +p49705 +sa(dp49706 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c629.jpg' +p49707 +sg25268 +S'Cigar Store Indian' +p49708 +sg25270 +S'Walter Hochstrasser' +p49709 +sa(dp49710 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49711 +sg25270 +S'Walter Hochstrasser' +p49712 +sa(dp49713 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49714 +sg25270 +S'Walter Hochstrasser' +p49715 +sa(dp49716 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49717 +sg25270 +S'Walter Hochstrasser' +p49718 +sa(dp49719 +g25273 +S', 1767' +p49720 +sg25267 +g27 +sg25275 +S'\n' +p49721 +sg25268 +S'Hippomene remporte ls victoire dans une Course Sur Atalante ...' +p49722 +sg25270 +S'Jean-Michel Moreau the Younger' +p49723 +sa(dp49724 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49725 +sg25270 +S'Elmer G. Anderson' +p49726 +sa(dp49727 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49728 +sg25270 +S'John Sullivan' +p49729 +sa(dp49730 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49731 +sg25270 +S'Charles Bowman' +p49732 +sa(dp49733 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49734 +sg25270 +S'Mary Edith Brooks' +p49735 +sa(dp49736 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49737 +sg25270 +S'Michael Riccitelli' +p49738 +sa(dp49739 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49740 +sg25270 +S'Charles Bowman' +p49741 +sa(dp49742 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49743 +sg25270 +S'Robert W.R. Taylor' +p49744 +sa(dp49745 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49746 +sg25270 +S'Richard F. Smith' +p49747 +sa(dp49748 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49749 +sg25270 +S'Albert Ryder' +p49750 +sa(dp49751 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49752 +sg25270 +S'Robert W.R. Taylor' +p49753 +sa(dp49754 +g25273 +S'(artist after)' +p49755 +sg25267 +g27 +sg25275 +S'\n' +p49756 +sg25268 +S'Hippom\xc3\xa8ne remporte la victoire dans une Course sur Atalante ...' +p49757 +sg25270 +S'Artist Information (' +p49758 +sa(dp49759 +g25267 +g27 +sg25268 +S'Cigar Store Pocahontas' +p49760 +sg25270 +S'American 20th Century' +p49761 +sa(dp49762 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49763 +sg25270 +S'Walter Hochstrasser' +p49764 +sa(dp49765 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49766 +sg25270 +S'Richard F. Smith' +p49767 +sa(dp49768 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49769 +sg25270 +S'Elmer G. Anderson' +p49770 +sa(dp49771 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49772 +sg25270 +S'Richard F. Smith' +p49773 +sa(dp49774 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49775 +sg25270 +S'Dorothy Hay Jensen' +p49776 +sa(dp49777 +g25267 +g27 +sg25268 +S'Indian Woman' +p49778 +sg25270 +S'American 20th Century' +p49779 +sa(dp49780 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49781 +sg25270 +S'Alice Domey' +p49782 +sa(dp49783 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49784 +sg25270 +S'Jane Iverson' +p49785 +sa(dp49786 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49787 +sg25270 +S'Richard F. Smith' +p49788 +sa(dp49789 +g25273 +S'(artist after)' +p49790 +sg25267 +g27 +sg25275 +S'\n' +p49791 +sg25268 +S'Venus pleure son cher Adonis blesse a mort a la chasse par un sanglier' +p49792 +sg25270 +S'Artist Information (' +p49793 +sa(dp49794 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49795 +sg25270 +S'Rosamond P. Gray' +p49796 +sa(dp49797 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49798 +sg25270 +S'Walter Hochstrasser' +p49799 +sa(dp49800 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49801 +sg25270 +S'Victor F. Muollo' +p49802 +sa(dp49803 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49804 +sg25270 +S'Stanley Mazur' +p49805 +sa(dp49806 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49807 +sg25270 +S'American 20th Century' +p49808 +sa(dp49809 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49810 +sg25270 +S'J. Herman McCollum' +p49811 +sa(dp49812 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49813 +sg25270 +S'Chris Makrenos' +p49814 +sa(dp49815 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p49816 +sg25270 +S'Eugene Croe' +p49817 +sa(dp49818 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p49819 +sg25270 +S'Elmer G. Anderson' +p49820 +sa(dp49821 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p49822 +sg25270 +S'Donald Streeter' +p49823 +sa(dp49824 +g25273 +S'graphite' +p49825 +sg25267 +g27 +sg25275 +S'1768' +p49826 +sg25268 +S'Orphee mis en pieces par les Dames de Thrace ...' +p49827 +sg25270 +S'Charles Eisen' +p49828 +sa(dp49829 +g25267 +g27 +sg25268 +S'Wooden Scotchman' +p49830 +sg25270 +S'Florian Rokita' +p49831 +sa(dp49832 +g25267 +g27 +sg25268 +S'Cigar Store Figure "Sailor"' +p49833 +sg25270 +S'Hilda Olson' +p49834 +sa(dp49835 +g25267 +g27 +sg25268 +S'Wooden Figure' +p49836 +sg25270 +S'Elmer G. Anderson' +p49837 +sa(dp49838 +g25267 +g27 +sg25268 +S'Cigar Store Soldier' +p49839 +sg25270 +S'Eugene Croe' +p49840 +sa(dp49841 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p49842 +sg25270 +S'Eugene Croe' +p49843 +sa(dp49844 +g25267 +g27 +sg25268 +S'Cigar Store Turk' +p49845 +sg25270 +S'Walter Hochstrasser' +p49846 +sa(dp49847 +g25267 +g27 +sg25268 +S'Cigar Store Turk' +p49848 +sg25270 +S'Walter Hochstrasser' +p49849 +sa(dp49850 +g25267 +g27 +sg25268 +S'Cigar Store Soldier' +p49851 +sg25270 +S'Rex F. Bush' +p49852 +sa(dp49853 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p49854 +sg25270 +S'Robert Pohle' +p49855 +sa(dp49856 +g25267 +g27 +sg25268 +S'Cigar Store Scotchman' +p49857 +sg25270 +S'Florian Rokita' +p49858 +sa(dp49859 +g25273 +S'(artist after)' +p49860 +sg25267 +g27 +sg25275 +S'\n' +p49861 +sg25268 +S'Orphee mis en pieces par les Dames de Thrace ...' +p49862 +sg25270 +S'Artist Information (' +p49863 +sa(dp49864 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49865 +sg25270 +S'Frances Lichten' +p49866 +sa(dp49867 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49868 +sg25270 +S'Emile Cero' +p49869 +sa(dp49870 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49871 +sg25270 +S'Charles R. Shane' +p49872 +sa(dp49873 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49874 +sg25270 +S'Artist Information (' +p49875 +sa(dp49876 +g25267 +g27 +sg25268 +S"Tradesman's Sign: Turk" +p49877 +sg25270 +S'Dorothy Van Dunker' +p49878 +sa(dp49879 +g25267 +g27 +sg25268 +S'Shop Figure' +p49880 +sg25270 +S'John W. Kelleher' +p49881 +sa(dp49882 +g25267 +g27 +sg25268 +S'Cigar Store Figure: "Punch"' +p49883 +sg25270 +S'Robert Pohle' +p49884 +sa(dp49885 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p49886 +sg25270 +S'Walter Hochstrasser' +p49887 +sa(dp49888 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p49889 +sg25270 +S'Louis Plogsted' +p49890 +sa(dp49891 +g25267 +g27 +sg25268 +S'Cigar Store Figure: Turk' +p49892 +sg25270 +S'Irving L. Biehn' +p49893 +sa(dp49894 +g25273 +S'graphite' +p49895 +sg25267 +g27 +sg25275 +S'1768' +p49896 +sg25268 +S'Silene pare guirlandes de fleurs ...' +p49897 +sg25270 +S'Charles Eisen' +p49898 +sa(dp49899 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p49900 +sg25270 +S'Walter Hochstrasser' +p49901 +sa(dp49902 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p49903 +sg25270 +S'Walter Hochstrasser' +p49904 +sa(dp49905 +g25267 +g27 +sg25268 +S'Figure' +p49906 +sg25270 +S'Vera Van Voris' +p49907 +sa(dp49908 +g25267 +g27 +sg25268 +S'Figure' +p49909 +sg25270 +S'Florence Truelson' +p49910 +sa(dp49911 +g25267 +g27 +sg25268 +S'Garden Figure "Pomona"' +p49912 +sg25270 +S'Elizabeth Moutal' +p49913 +sa(dp49914 +g25267 +g27 +sg25268 +S'Carved Wood Figure - "Flying Mercury"' +p49915 +sg25270 +S'Ingrid Selmer-Larsen' +p49916 +sa(dp49917 +g25267 +g27 +sg25268 +S'Garden or Circus Figure' +p49918 +sg25270 +S'Robert Barton' +p49919 +sa(dp49920 +g25267 +g27 +sg25268 +S'Garden Figure' +p49921 +sg25270 +S'Robert Pohle' +p49922 +sa(dp49923 +g25267 +g27 +sg25268 +S'"Cycle of Life" Carving' +p49924 +sg25270 +S'Al Curry' +p49925 +sa(dp49926 +g25267 +g27 +sg25268 +S'Architectural Carving "Hope"' +p49927 +sg25270 +S'John W. Kelleher' +p49928 +sa(dp49929 +g25273 +S'(artist after)' +p49930 +sg25267 +g27 +sg25275 +S'\n' +p49931 +sg25268 +S'Silene pare de guirlandes de fleurs ...' +p49932 +sg25270 +S'Artist Information (' +p49933 +sa(dp49934 +g25267 +g27 +sg25268 +S'Statue' +p49935 +sg25270 +S'Louis Plogsted' +p49936 +sa(dp49937 +g25267 +g27 +sg25268 +S'Decorative Figures "Peace and Plenty"' +p49938 +sg25270 +S'Robert Pohle' +p49939 +sa(dp49940 +g25267 +g27 +sg25268 +S'Female Figurehead' +p49941 +sg25270 +S'Betty Fuerst' +p49942 +sa(dp49943 +g25267 +g27 +sg25268 +S'Wooden Indian Chief' +p49944 +sg25270 +S'Ernest A. Towers, Jr.' +p49945 +sa(dp49946 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000552b.jpg' +p49947 +sg25268 +S'Seated Figure: "Liberty"' +p49948 +sg25270 +S'Elizabeth Moutal' +p49949 +sa(dp49950 +g25267 +g27 +sg25268 +S'"Little Fanny" Carved Figure' +p49951 +sg25270 +S'Stanley Mazur' +p49952 +sa(dp49953 +g25267 +g27 +sg25268 +S'Horse and Man Woodcarving' +p49954 +sg25270 +S'Marie Lutrell' +p49955 +sa(dp49956 +g25267 +g27 +sg25268 +S'Nubian Slave Figure' +p49957 +sg25270 +S'Walter Hochstrasser' +p49958 +sa(dp49959 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49960 +sg25270 +S'Walter Hochstrasser' +p49961 +sa(dp49962 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a00054f7.jpg' +p49963 +sg25268 +S'Dapper Dan Store Figure' +p49964 +sg25270 +S'Helen E. Gilman' +p49965 +sa(dp49966 +g25273 +S'graphite' +p49967 +sg25267 +g27 +sg25275 +S'1768' +p49968 +sg25268 +S"Apollo fait de venir des oreilles d'ane a Midas ..." +p49969 +sg25270 +S'Charles Eisen' +p49970 +sa(dp49971 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49972 +sg25270 +S'Walter Hochstrasser' +p49973 +sa(dp49974 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49975 +sg25270 +S'Walter Hochstrasser' +p49976 +sa(dp49977 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49978 +sg25270 +S'Walter Hochstrasser' +p49979 +sa(dp49980 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49981 +sg25270 +S'Richard F. Smith' +p49982 +sa(dp49983 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p49984 +sg25270 +S'Walter Hochstrasser' +p49985 +sa(dp49986 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p49987 +sg25270 +S'Florian Rokita' +p49988 +sa(dp49989 +g25267 +g27 +sg25268 +S'Tavern Figure' +p49990 +sg25270 +S'Walter Hochstrasser' +p49991 +sa(dp49992 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p49993 +sg25270 +S'Chris Makrenos' +p49994 +sa(dp49995 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p49996 +sg25270 +S'Florian Rokita' +p49997 +sa(dp49998 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p49999 +sg25270 +S'Mina Lowry' +p50000 +sa(dp50001 +g25273 +S'(artist after)' +p50002 +sg25267 +g27 +sg25275 +S'\n' +p50003 +sg25268 +S"Apollo fait de venir des oreilles d'ane a Midas ..." +p50004 +sg25270 +S'Artist Information (' +p50005 +sa(dp50006 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p50007 +sg25270 +S'Mina Lowry' +p50008 +sa(dp50009 +g25267 +g27 +sg25268 +S'Tobacco Store - Male Figure' +p50010 +sg25270 +S'Artist Information (' +p50011 +sa(dp50012 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p50013 +sg25270 +S'Hardin Walsh' +p50014 +sa(dp50015 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p50016 +sg25270 +S'Walter Hochstrasser' +p50017 +sa(dp50018 +g25267 +g27 +sg25268 +S'Indian' +p50019 +sg25270 +S'Frank Gutting' +p50020 +sa(dp50021 +g25267 +g27 +sg25268 +S'Statuette "Hope"' +p50022 +sg25270 +S'Jane Iverson' +p50023 +sa(dp50024 +g25267 +g27 +sg25268 +S'Seated Warrior' +p50025 +sg25270 +S'Charles R. Shane' +p50026 +sa(dp50027 +g25267 +g27 +sg25268 +S'Wooden Figure' +p50028 +sg25270 +S'Bernard Westmacott' +p50029 +sa(dp50030 +g25267 +g27 +sg25268 +S'Wood Carving - "Hexafoos"' +p50031 +sg25270 +S'William Fergusson' +p50032 +sa(dp50033 +g25267 +g27 +sg25268 +S'Wooden Garden Figure' +p50034 +sg25270 +S'Elizabeth Moutal' +p50035 +sa(dp50036 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p50037 +sg25267 +g27 +sg25275 +S'1768' +p50038 +sg25268 +S'Thetis ecoute Protee ...' +p50039 +sg25270 +S'Charles Monnet' +p50040 +sa(dp50041 +g25267 +g27 +sg25268 +S'Wooden "Mercury" Figure' +p50042 +sg25270 +S'Elizabeth Moutal' +p50043 +sa(dp50044 +g25267 +g27 +sg25268 +S'Carved Bust of Voltaire' +p50045 +sg25270 +S'Joseph Goldberg' +p50046 +sa(dp50047 +g25267 +g27 +sg25268 +S'Bust of Paracelsus' +p50048 +sg25270 +S'Joseph Goldberg' +p50049 +sa(dp50050 +g25267 +g27 +sg25268 +S'Carved Wooden Head' +p50051 +sg25270 +S'Cornelius Christoffels' +p50052 +sa(dp50053 +g25267 +g27 +sg25268 +S'Carved Figure' +p50054 +sg25270 +S'Raymond Chard' +p50055 +sa(dp50056 +g25267 +g27 +sg25268 +S'Two Angels' +p50057 +sg25270 +S'Al Curry' +p50058 +sa(dp50059 +g25267 +g27 +sg25268 +S'Carved Statue of the Virgin Mary' +p50060 +sg25270 +S'Vera Van Voris' +p50061 +sa(dp50062 +g25267 +g27 +sg25268 +S'Commemorative Figure' +p50063 +sg25270 +S'Henry Murphy' +p50064 +sa(dp50065 +g25267 +g27 +sg25268 +S'Woodcarving' +p50066 +sg25270 +S'Eugene Croe' +p50067 +sa(dp50068 +g25267 +g27 +sg25268 +S'Figure of a Felon' +p50069 +sg25270 +S'Donald Donovan' +p50070 +sa(dp50071 +g25273 +S'(artist after)' +p50072 +sg25267 +g27 +sg25275 +S'\n' +p50073 +sg25268 +S'Thetis ecoute Protee ...' +p50074 +sg25270 +S'Artist Information (' +p50075 +sa(dp50076 +g25267 +g27 +sg25268 +S'Carved Nude' +p50077 +sg25270 +S'Carol Larson' +p50078 +sa(dp50079 +g25267 +g27 +sg25268 +S'Carved Policeman' +p50080 +sg25270 +S'Mildred E. Bent' +p50081 +sa(dp50082 +g25267 +g27 +sg25268 +S'Carved Soldier' +p50083 +sg25270 +S'Samuel W. Ford' +p50084 +sa(dp50085 +g25267 +g27 +sg25268 +S'Revolutionary Soldier' +p50086 +sg25270 +S'Mina Lowry' +p50087 +sa(dp50088 +g25267 +g27 +sg25268 +S'Seated Woman' +p50089 +sg25270 +S'Mina Lowry' +p50090 +sa(dp50091 +g25267 +g27 +sg25268 +S'Carved Group: "Mennonites Homeward"' +p50092 +sg25270 +S'Selma Sandler' +p50093 +sa(dp50094 +g25267 +g27 +sg25268 +S'Wooden Figure' +p50095 +sg25270 +S'Carl Strehlau' +p50096 +sa(dp50097 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b87.jpg' +p50098 +sg25268 +S'Whipping Post' +p50099 +sg25270 +S'Edward L. Loper' +p50100 +sa(dp50101 +g25267 +g27 +sg25268 +S'Man Pumping Water' +p50102 +sg25270 +S'Beverly Chichester' +p50103 +sa(dp50104 +g25267 +g27 +sg25268 +S'Two Male Figures Seated' +p50105 +sg25270 +S'Al Curry' +p50106 +sa(dp50107 +g25273 +S', 1767' +p50108 +sg25267 +g27 +sg25275 +S'\n' +p50109 +sg25268 +S"Ceix quitte Alcyone pour aller consulter l'Oracle d'Apollon ..." +p50110 +sg25270 +S'Jean-Michel Moreau the Younger' +p50111 +sa(dp50112 +g25267 +g27 +sg25268 +S'Female Figure' +p50113 +sg25270 +S'Al Curry' +p50114 +sa(dp50115 +g25267 +g27 +sg25268 +S"Tradesman's Sign: Highlander" +p50116 +sg25270 +S'American 20th Century' +p50117 +sa(dp50118 +g25267 +g27 +sg25268 +S"Tradesman's Sign" +p50119 +sg25270 +S'Betty Fuerst' +p50120 +sa(dp50121 +g25267 +g27 +sg25268 +S'Slave Advertising Figure' +p50122 +sg25270 +S'Chris Makrenos' +p50123 +sa(dp50124 +g25267 +g27 +sg25268 +S'Shop Figure - Child' +p50125 +sg25270 +S'Beverly Chichester' +p50126 +sa(dp50127 +g25267 +g27 +sg25268 +S'Medicine Man' +p50128 +sg25270 +S'Yolande Delasser' +p50129 +sa(dp50130 +g25267 +g27 +sg25268 +S'Drug Store Figure' +p50131 +sg25270 +S'Ray Price' +p50132 +sa(dp50133 +g25267 +g27 +sg25268 +S'Figure of Coachman' +p50134 +sg25270 +S'Artist Information (' +p50135 +sa(dp50136 +g25267 +g27 +sg25268 +S'Head of a Negro' +p50137 +sg25270 +S'Mina Lowry' +p50138 +sa(dp50139 +g25267 +g27 +sg25268 +S'Shop Figure of Child' +p50140 +sg25270 +S'Beverly Chichester' +p50141 +sa(dp50142 +g25273 +S'(artist after)' +p50143 +sg25267 +g27 +sg25275 +S'\n' +p50144 +sg25268 +S"Ceix quitte Alcyone pour aller consulter l'Oracle d'Apollon ..." +p50145 +sg25270 +S'Artist Information (' +p50146 +sa(dp50147 +g25267 +g27 +sg25268 +S'Wooden Scotchman' +p50148 +sg25270 +S'James McLellan' +p50149 +sa(dp50150 +g25267 +g27 +sg25268 +S'Wooden Indian Bust' +p50151 +sg25270 +S'David Ramage' +p50152 +sa(dp50153 +g25267 +g27 +sg25268 +S'Wooden Indian Bust' +p50154 +sg25270 +S'David Ramage' +p50155 +sa(dp50156 +g25267 +g27 +sg25268 +S'Tavern Bust' +p50157 +sg25270 +S'Richard F. Smith' +p50158 +sa(dp50159 +g25267 +g27 +sg25268 +S'Tavern Figure' +p50160 +sg25270 +S'Richard F. Smith' +p50161 +sa(dp50162 +g25267 +g27 +sg25268 +S'English Sailor' +p50163 +sg25270 +S'Charles R. Shane' +p50164 +sa(dp50165 +g25267 +g27 +sg25268 +S'Tavern Figure' +p50166 +sg25270 +S'Henry Murphy' +p50167 +sa(dp50168 +g25267 +g27 +sg25268 +S'Tea Store Figure' +p50169 +sg25270 +S'Ingrid Selmer-Larsen' +p50170 +sa(dp50171 +g25267 +g27 +sg25268 +S'Tea Store Figure' +p50172 +sg25270 +S'John W. Kelleher' +p50173 +sa(dp50174 +g25267 +g27 +sg25268 +S'Tea Store Figure' +p50175 +sg25270 +S'Joseph Goldberg' +p50176 +sa(dp50177 +g25273 +S'(artist after)' +p50178 +sg25267 +g27 +sg25275 +S'\n' +p50179 +sg25268 +S"Ceix quitte Alcyone pour aller consulter l'Oracle d'Apollon ..." +p50180 +sg25270 +S'Artist Information (' +p50181 +sa(dp50182 +g25267 +g27 +sg25268 +S'Tea Store Figure' +p50183 +sg25270 +S'Chris Makrenos' +p50184 +sa(dp50185 +g25267 +g27 +sg25268 +S'Tea Store Figure' +p50186 +sg25270 +S'Chris Makrenos' +p50187 +sa(dp50188 +g25267 +g27 +sg25268 +S'Leather Water Bucket' +p50189 +sg25270 +S'Edward L. Loper' +p50190 +sa(dp50191 +g25267 +g27 +sg25268 +S'Leather Fire Bucket' +p50192 +sg25270 +S'Mina Lowry' +p50193 +sa(dp50194 +g25267 +g27 +sg25268 +S'Leather Water Bucket' +p50195 +sg25270 +S'Alexander Anderson' +p50196 +sa(dp50197 +g25267 +g27 +sg25268 +S'Iron Steam Fire Engine' +p50198 +sg25270 +S'Harry G. Aberdeen' +p50199 +sa(dp50200 +g25267 +g27 +sg25268 +S'Hand Powered Fire Pump' +p50201 +sg25270 +S'Hans Mangelsdorf' +p50202 +sa(dp50203 +g25267 +g27 +sg25268 +S'Hand Operated Fire Pump' +p50204 +sg25270 +S'Hans Mangelsdorf' +p50205 +sa(dp50206 +g25267 +g27 +sg25268 +S'Fire Bucket' +p50207 +sg25270 +S'Carl Buergerniss' +p50208 +sa(dp50209 +g25267 +g27 +sg25268 +S'Leather Fire Bucket' +p50210 +sg25270 +S'Erwin Schwabe' +p50211 +sa(dp50212 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p50213 +sg25267 +g27 +sg25275 +S'1768' +p50214 +sg25268 +S'La Nymphe Hesperie fuyant Esaque ...' +p50215 +sg25270 +S'Charles Monnet' +p50216 +sa(dp50217 +g25267 +g27 +sg25268 +S'Fire Bucket' +p50218 +sg25270 +S'Marion E. Herrick' +p50219 +sa(dp50220 +g25267 +g27 +sg25268 +S'Fire Bucket' +p50221 +sg25270 +S'Carl Buergerniss' +p50222 +sa(dp50223 +g25267 +g27 +sg25268 +S'Leather Fire Bucket' +p50224 +sg25270 +S'Page Coffman' +p50225 +sa(dp50226 +g25267 +g27 +sg25268 +S'Fire Bucket' +p50227 +sg25270 +S'John Cooke' +p50228 +sa(dp50229 +g25267 +g27 +sg25268 +S"Fireman's Axe" +p50230 +sg25270 +S'Elmer G. Anderson' +p50231 +sa(dp50232 +g25267 +g27 +sg25268 +S'Fire Bucket' +p50233 +sg25270 +S'Stewart Wheeler' +p50234 +sa(dp50235 +g25267 +g27 +sg25268 +S'Firemark' +p50236 +sg25270 +S'Herman Bader' +p50237 +sa(dp50238 +g25267 +g27 +sg25268 +S'Firemark' +p50239 +sg25270 +S'Rose Campbell-Gerke' +p50240 +sa(dp50241 +g25267 +g27 +sg25268 +S'Firemark' +p50242 +sg25270 +S'Rose Campbell-Gerke' +p50243 +sa(dp50244 +g25267 +g27 +sg25268 +S'Firemarks' +p50245 +sg25270 +S'American 20th Century' +p50246 +sa(dp50247 +g25273 +S'(artist after)' +p50248 +sg25267 +g27 +sg25275 +S'\n' +p50249 +sg25268 +S'La Nymphe Hesperie fuyant Esaque ...' +p50250 +sg25270 +S'Artist Information (' +p50251 +sa(dp50252 +g25267 +g27 +sg25268 +S'Fireback' +p50253 +sg25270 +S'Frances Lichten' +p50254 +sa(dp50255 +g25267 +g27 +sg25268 +S'Fireback' +p50256 +sg25270 +S'Charles Von Urban' +p50257 +sa(dp50258 +g25267 +g27 +sg25268 +S'Iron Fireback' +p50259 +sg25270 +S'Henry Meyers' +p50260 +sa(dp50261 +g25267 +g27 +sg25268 +S'Iron Fireback' +p50262 +sg25270 +S'Henry Meyers' +p50263 +sa(dp50264 +g25267 +g27 +sg25268 +S'Fire Marshall Trumpet' +p50265 +sg25270 +S'Thomas Dooley' +p50266 +sa(dp50267 +g25267 +g27 +sg25268 +S"Fireman's Trumpet" +p50268 +sg25270 +S'Samuel O. Klein' +p50269 +sa(dp50270 +g25267 +g27 +sg25268 +S'Speaking Trumpet' +p50271 +sg25270 +S'Samuel O. Klein' +p50272 +sa(dp50273 +g25267 +g27 +sg25268 +S'Parade Fire Horn' +p50274 +sg25270 +S'Elmer G. Anderson' +p50275 +sa(dp50276 +g25267 +g27 +sg25268 +S"Fireman's Trumpet" +p50277 +sg25270 +S'Howard H. Sherman' +p50278 +sa(dp50279 +g25267 +g27 +sg25268 +S"Fireman's Trumpet" +p50280 +sg25270 +S'Florence Hastings' +p50281 +sa(dp50282 +g25268 +S'The Sacrifice of Iphigenia' +p50283 +sg25270 +S'Jean-Michel Moreau the Younger' +p50284 +sg25273 +S', 1769' +p50285 +sg25275 +S'\n' +p50286 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a0006001.jpg' +p50287 +sg25267 +g27 +sa(dp50288 +g25267 +g27 +sg25268 +S'Fire Hydrant' +p50289 +sg25270 +S'Mina Lowry' +p50290 +sa(dp50291 +g25267 +g27 +sg25268 +S'Nozzle' +p50292 +sg25270 +S'Rose Campbell-Gerke' +p50293 +sa(dp50294 +g25267 +g27 +sg25268 +S'Side Panel of a Fire Engine' +p50295 +sg25270 +S'Elmer G. Anderson' +p50296 +sa(dp50297 +g25267 +g27 +sg25268 +S'Hose Holder' +p50298 +sg25270 +S'William Fergusson' +p50299 +sa(dp50300 +g25267 +g27 +sg25268 +S'Hose Holder' +p50301 +sg25270 +S'Elmer G. Anderson' +p50302 +sa(dp50303 +g25267 +g27 +sg25268 +S'Hose Holder' +p50304 +sg25270 +S'Elmer G. Anderson' +p50305 +sa(dp50306 +g25267 +g27 +sg25268 +S'Philadelphia Fire Dept. Emblem' +p50307 +sg25270 +S'Robert Longacre' +p50308 +sa(dp50309 +g25267 +g27 +sg25268 +S'Hose Carriage' +p50310 +sg25270 +S'Elmer G. Anderson' +p50311 +sa(dp50312 +g25267 +g27 +sg25268 +S'Hose Holder for Hand Engine' +p50313 +sg25270 +S'Elmer G. Anderson' +p50314 +sa(dp50315 +g25267 +g27 +sg25268 +S'Model of a Fire Engine' +p50316 +sg25270 +S'Betty Fuerst' +p50317 +sa(dp50318 +g25273 +S'(artist after)' +p50319 +sg25267 +g27 +sg25275 +S'\n' +p50320 +sg25268 +S"Iphig\xc3\xa9nie est conduite \xc3\xa0 l'Autel pour \xc3\xaatre immol\xc3\xa9e" +p50321 +sg25270 +S'Artist Information (' +p50322 +sa(dp50323 +g25267 +g27 +sg25268 +S'Fire Hose Reel' +p50324 +sg25270 +S'Hans Mangelsdorf' +p50325 +sa(dp50326 +g25267 +g27 +sg25268 +S'Firemark' +p50327 +sg25270 +S'Herman Bader' +p50328 +sa(dp50329 +g25267 +g27 +sg25268 +S'Firemark' +p50330 +sg25270 +S'Grace Halpin' +p50331 +sa(dp50332 +g25267 +g27 +sg25268 +S'Firemark' +p50333 +sg25270 +S'Emile Cero' +p50334 +sa(dp50335 +g25267 +g27 +sg25268 +S'Firemark' +p50336 +sg25270 +S'Rose Campbell-Gerke' +p50337 +sa(dp50338 +g25267 +g27 +sg25268 +S'Firemark' +p50339 +sg25270 +S'Emile Cero' +p50340 +sa(dp50341 +g25267 +g27 +sg25268 +S'Firemark' +p50342 +sg25270 +S'Milton Grubstein' +p50343 +sa(dp50344 +g25267 +g27 +sg25268 +S'Firemark' +p50345 +sg25270 +S'Emile Cero' +p50346 +sa(dp50347 +g25267 +g27 +sg25268 +S'Firemark' +p50348 +sg25270 +S'Herman Bader' +p50349 +sa(dp50350 +g25267 +g27 +sg25268 +S'Firemark' +p50351 +sg25270 +S'Herman Bader' +p50352 +sa(dp50353 +g25273 +S'graphite' +p50354 +sg25267 +g27 +sg25275 +S'1768' +p50355 +sg25268 +S'Apres le festin donne aux noces de Pirithous ...' +p50356 +sg25270 +S'Charles Eisen' +p50357 +sa(dp50358 +g25267 +g27 +sg25268 +S'Firemark' +p50359 +sg25270 +S'Herman Bader' +p50360 +sa(dp50361 +g25267 +g27 +sg25268 +S'Firemark' +p50362 +sg25270 +S'Herman Bader' +p50363 +sa(dp50364 +g25267 +g27 +sg25268 +S'Firemark' +p50365 +sg25270 +S'Alf Bruseth' +p50366 +sa(dp50367 +g25267 +g27 +sg25268 +S'Firemark' +p50368 +sg25270 +S'Emile Cero' +p50369 +sa(dp50370 +g25267 +g27 +sg25268 +S'Firemark' +p50371 +sg25270 +S'Rose Campbell-Gerke' +p50372 +sa(dp50373 +g25267 +g27 +sg25268 +S'Spanish Southwest: Hat' +p50374 +sg25270 +S'Harry Mann Waddell' +p50375 +sa(dp50376 +g25267 +g27 +sg25268 +S'Spanish Southwest: Hat' +p50377 +sg25270 +S'Marius Hansen' +p50378 +sa(dp50379 +g25267 +g27 +sg25268 +S'Fireplace Tool' +p50380 +sg25270 +S'Sydney Roberts' +p50381 +sa(dp50382 +g25267 +g27 +sg25268 +S'Fire Tongs and Shovel' +p50383 +sg25270 +S'Hans Korsch' +p50384 +sa(dp50385 +g25267 +g27 +sg25268 +S'Fire Tongs' +p50386 +sg25270 +S'Clyde L. Cheney' +p50387 +sa(dp50388 +g25273 +S'(artist after)' +p50389 +sg25267 +g27 +sg25275 +S'\n' +p50390 +sg25268 +S'Apres les festin donne aux noces de Pirithous...' +p50391 +sg25270 +S'Artist Information (' +p50392 +sa(dp50393 +g25267 +g27 +sg25268 +S'Wrought Iron Fireplace Shovel' +p50394 +sg25270 +S'Donald Streeter' +p50395 +sa(dp50396 +g25267 +g27 +sg25268 +S'Fire Shovel' +p50397 +sg25270 +S'Eva Perry' +p50398 +sa(dp50399 +g25267 +g27 +sg25268 +S'Iron Fork' +p50400 +sg25270 +S'Frank Eiseman' +p50401 +sa(dp50402 +g25267 +g27 +sg25268 +S'Fireplace Shovel' +p50403 +sg25270 +S'Albert Geuppert' +p50404 +sa(dp50405 +g25267 +g27 +sg25268 +S'Fire Tongs and Shovel' +p50406 +sg25270 +S'Hans Korsch' +p50407 +sa(dp50408 +g25267 +g27 +sg25268 +S'Fireplace Tongs' +p50409 +sg25270 +S'Paul Poffinbarger' +p50410 +sa(dp50411 +g25267 +g27 +sg25268 +S'Fire Tongs, Shovel, and Jamb Hooks' +p50412 +sg25270 +S'Hans Korsch' +p50413 +sa(dp50414 +g25267 +g27 +sg25268 +S'Fire Tongs and Shovel' +p50415 +sg25270 +S'American 20th Century' +p50416 +sa(dp50417 +g25267 +g27 +sg25268 +S'Fire Tongs and Shovel' +p50418 +sg25270 +S'Hans Korsch' +p50419 +sa(dp50420 +g25267 +g27 +sg25268 +S'Fire Tongs and Shovel' +p50421 +sg25270 +S'Hans Korsch' +p50422 +sa(dp50423 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p50424 +sg25267 +g27 +sg25275 +S'1769' +p50425 +sg25268 +S"Apres la mort d'Achille, Ajax et Ulisse disputent ses armes ..." +p50426 +sg25270 +S'Charles Monnet' +p50427 +sa(dp50428 +g25267 +g27 +sg25268 +S'Fire Tools' +p50429 +sg25270 +S'Hans Korsch' +p50430 +sa(dp50431 +g25267 +g27 +sg25268 +S'Fire Tongs and Shovel' +p50432 +sg25270 +S'Hans Korsch' +p50433 +sa(dp50434 +g25267 +g27 +sg25268 +S'Fireplace Shovel' +p50435 +sg25270 +S'Arsen Maralian' +p50436 +sa(dp50437 +g25267 +g27 +sg25268 +S'Fire Tongs, Shovel, and Jamb Hooks' +p50438 +sg25270 +S'Hans Korsch' +p50439 +sa(dp50440 +g25267 +g27 +sg25268 +S'Fire Shovel and Tongs' +p50441 +sg25270 +S'Hans Korsch' +p50442 +sa(dp50443 +g25267 +g27 +sg25268 +S'Fire Shovel and Tongs' +p50444 +sg25270 +S'Hans Korsch' +p50445 +sa(dp50446 +g25267 +g27 +sg25268 +S'Flue Shovel' +p50447 +sg25270 +S'John Cooke' +p50448 +sa(dp50449 +g25267 +g27 +sg25268 +S'Fire Shovel' +p50450 +sg25270 +S'Marie Famularo' +p50451 +sa(dp50452 +g25267 +g27 +sg25268 +S'Fire Shovel' +p50453 +sg25270 +S'Marie Famularo' +p50454 +sa(dp50455 +g25267 +g27 +sg25268 +S'Fire Shovel' +p50456 +sg25270 +S'Hans Korsch' +p50457 +sa(dp50458 +g25273 +S'(artist after)' +p50459 +sg25267 +g27 +sg25275 +S'\n' +p50460 +sg25268 +S"Apres la mort d'Achille, Ajax et Ulisse disputent ses armes ..." +p50461 +sg25270 +S'Artist Information (' +p50462 +sa(dp50463 +g25267 +g27 +sg25268 +S'Fireplace Tongs' +p50464 +sg25270 +S'Paul Poffinbarger' +p50465 +sa(dp50466 +g25267 +g27 +sg25268 +S'Paper Fire Grate Cover' +p50467 +sg25270 +S'Vincent P. Rosel' +p50468 +sa(dp50469 +g25267 +g27 +sg25268 +S'Fireside Set' +p50470 +sg25270 +S'Hans Mangelsdorf' +p50471 +sa(dp50472 +g25267 +g27 +sg25268 +S'Fire Rail' +p50473 +sg25270 +S"James O'Mara" +p50474 +sa(dp50475 +g25267 +g27 +sg25268 +S'Iron Fireplace' +p50476 +sg25270 +S'Thomas Byrne' +p50477 +sa(dp50478 +g25267 +g27 +sg25268 +S'Andirons and Fireback' +p50479 +sg25270 +S'Ludmilla Calderon' +p50480 +sa(dp50481 +g25267 +g27 +sg25268 +S'Fork' +p50482 +sg25270 +S'Benjamin Resnick' +p50483 +sa(dp50484 +g25267 +g27 +sg25268 +S'Toasting Fork' +p50485 +sg25270 +S'Anna Aloisi' +p50486 +sa(dp50487 +g25267 +g27 +sg25268 +S'Fork' +p50488 +sg25270 +S'Anthony Zuccarello' +p50489 +sa(dp50490 +g25267 +g27 +sg25268 +S'Wooden Spoon and Fork' +p50491 +sg25270 +S'John Cutting' +p50492 +sa(dp50493 +g25268 +S'The Mystic Marriage of Saint Catherine' +p50494 +sg25270 +S'Correggio' +p50495 +sg25273 +S'oil on panel' +p50496 +sg25275 +S'1510/1515' +p50497 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007ff.jpg' +p50498 +sg25267 +g27 +sa(dp50499 +g25273 +S'graphite' +p50500 +sg25267 +g27 +sg25275 +S'1768' +p50501 +sg25268 +S"Les Grecs s'en retournant en leur pays ..." +p50502 +sg25270 +S'Charles Eisen' +p50503 +sa(dp50504 +g25267 +g27 +sg25268 +S'Fork' +p50505 +sg25270 +S'John Swientochowski' +p50506 +sa(dp50507 +g25267 +g27 +sg25268 +S'Pickle Fork' +p50508 +sg25270 +S'John R. Towers' +p50509 +sa(dp50510 +g25267 +g27 +sg25268 +S'Flour Sifter' +p50511 +sg25270 +S'Arthur Wegg' +p50512 +sa(dp50513 +g25267 +g27 +sg25268 +S'Stencilled Floor' +p50514 +sg25270 +S'Jerome Hoxie' +p50515 +sa(dp50516 +g25267 +g27 +sg25268 +S'Mosaic Marble "Ornament"' +p50517 +sg25270 +S'Gordena Jackson' +p50518 +sa(dp50519 +g25267 +g27 +sg25268 +S'Marble Mosaic Floor' +p50520 +sg25270 +S'Ellen Duncan' +p50521 +sa(dp50522 +g25267 +g27 +sg25268 +S'Parquetry Floor' +p50523 +sg25270 +S'Sebastian Simonet' +p50524 +sa(dp50525 +g25267 +g27 +sg25268 +S'Mosaic Pattern in Doorstep' +p50526 +sg25270 +S'Ellen Duncan' +p50527 +sa(dp50528 +g25267 +g27 +sg25268 +S'Fly Catcher' +p50529 +sg25270 +S'Frank McEntee' +p50530 +sa(dp50531 +g25267 +g27 +sg25268 +S'Flint Lock' +p50532 +sg25270 +S'Stanley Mazur' +p50533 +sa(dp50534 +g25273 +S'(artist after)' +p50535 +sg25267 +g27 +sg25275 +S'\n' +p50536 +sg25268 +S"Les Grecs s'en retournant en leur pays ..." +p50537 +sg25270 +S'Artist Information (' +p50538 +sa(dp50539 +g25267 +g27 +sg25268 +S'Flint Striker' +p50540 +sg25270 +S'Henrietta S. Hukill' +p50541 +sa(dp50542 +g25267 +g27 +sg25268 +S'Flambeau' +p50543 +sg25270 +S'Ivar Julius' +p50544 +sa(dp50545 +g25267 +g27 +sg25268 +S'Pine Knot Flare Holder' +p50546 +sg25270 +S'Al Curry' +p50547 +sa(dp50548 +g25267 +g27 +sg25268 +S'Flail' +p50549 +sg25270 +S'Max Fernekes' +p50550 +sa(dp50551 +g25267 +g27 +sg25268 +S'Flail' +p50552 +sg25270 +S'Frank Eiseman' +p50553 +sa(dp50554 +g25267 +g27 +sg25268 +S'Eel Spear' +p50555 +sg25270 +S'Edward Unger' +p50556 +sa(dp50557 +g25267 +g27 +sg25268 +S'Sturgeon Spear' +p50558 +sg25270 +S'Samuel Faigin' +p50559 +sa(dp50560 +g25267 +g27 +sg25268 +S'Fish Net Mender' +p50561 +sg25270 +S'Dorothea Bates' +p50562 +sa(dp50563 +g25267 +g27 +sg25268 +S'Andiron and Fireplace Set' +p50564 +sg25270 +S'Ludmilla Calderon' +p50565 +sa(dp50566 +g25267 +g27 +sg25268 +S'Fireplace Set' +p50567 +sg25270 +S'Hans Korsch' +p50568 +sa(dp50569 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p50570 +sg25267 +g27 +sg25275 +S'1769' +p50571 +sg25268 +S'Les Dames Troyennes enlevent le corps de Polixene qui vient de mourir' +p50572 +sg25270 +S'Charles Monnet' +p50573 +sa(dp50574 +g25267 +g27 +sg25268 +S"Fireman's Hat and Bucket" +p50575 +sg25270 +S'American 20th Century' +p50576 +sa(dp50577 +g25267 +g27 +sg25268 +S'Strainer with Funnel' +p50578 +sg25270 +S'Yolande Delasser' +p50579 +sa(dp50580 +g25267 +g27 +sg25268 +S'Funnel' +p50581 +sg25270 +S'Charles Garjian' +p50582 +sa(dp50583 +g25267 +g27 +sg25268 +S'Fruit Slicer' +p50584 +sg25270 +S'Edward L. Loper' +p50585 +sa(dp50586 +g25267 +g27 +sg25268 +S'Mirror Frame' +p50587 +sg25270 +S'John H. Tercuzzi' +p50588 +sa(dp50589 +g25267 +g27 +sg25268 +S'Frame of Hair Flowers' +p50590 +sg25270 +S'Clyde L. Cheney' +p50591 +sa(dp50592 +g25267 +g27 +sg25268 +S'Fork and Ladle' +p50593 +sg25270 +S'Rex F. Bush' +p50594 +sa(dp50595 +g25267 +g27 +sg25268 +S'Steel Fork' +p50596 +sg25270 +S'Fred Hassebrock' +p50597 +sa(dp50598 +g25267 +g27 +sg25268 +S'Pickle Fork' +p50599 +sg25270 +S'John R. Towers' +p50600 +sa(dp50601 +g25267 +g27 +sg25268 +S'Fork' +p50602 +sg25270 +S'Alfred Walbeck' +p50603 +sa(dp50604 +g25273 +S'(artist after)' +p50605 +sg25267 +g27 +sg25275 +S'\n' +p50606 +sg25268 +S'Les Dames Troyennes en levent le corps de Polixene qui vient de mourir' +p50607 +sg25270 +S'Artist Information (' +p50608 +sa(dp50609 +g25267 +g27 +sg25268 +S'Frow and Frow Club' +p50610 +sg25270 +S'Oscar Bluhme' +p50611 +sa(dp50612 +g25267 +g27 +sg25268 +S'Drinking Fountain' +p50613 +sg25270 +S'Edward DiGennero' +p50614 +sa(dp50615 +g25267 +g27 +sg25268 +S'Drinking Fountain' +p50616 +sg25270 +S'Edward DiGennero' +p50617 +sa(dp50618 +g25267 +g27 +sg25268 +S'Flour Sifter' +p50619 +sg25270 +S'Richard Taylor' +p50620 +sa(dp50621 +g25267 +g27 +sg25268 +S'Stencilled Floor' +p50622 +sg25270 +S'Edward DiGennero' +p50623 +sa(dp50624 +g25267 +g27 +sg25268 +S'Stencilled Floor' +p50625 +sg25270 +S'Jerome Hoxie' +p50626 +sa(dp50627 +g25267 +g27 +sg25268 +S'Fire Engine' +p50628 +sg25270 +S'H. Langden Brown' +p50629 +sa(dp50630 +g25267 +g27 +sg25268 +S'Fire Engine Pumper' +p50631 +sg25270 +S'Elmer G. Anderson' +p50632 +sa(dp50633 +g25267 +g27 +sg25268 +S"Tradesman's Sign: Chinese Man" +p50634 +sg25270 +S'Ingrid Selmer-Larsen' +p50635 +sa(dp50636 +g25267 +g27 +sg25268 +S'Card Table' +p50637 +sg25270 +S'Henry Meyers' +p50638 +sa(dp50639 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p50640 +sg25267 +g27 +sg25275 +S'1768' +p50641 +sg25268 +S'Enee apres la destruction de Troye se sauve ...' +p50642 +sg25270 +S'Charles Monnet' +p50643 +sa(dp50644 +g25267 +g27 +sg25268 +S'Table' +p50645 +sg25270 +S'American 20th Century' +p50646 +sa(dp50647 +g25267 +g27 +sg25268 +S'Table' +p50648 +sg25270 +S'Bernard Gussow' +p50649 +sa(dp50650 +g25267 +g27 +sg25268 +S'Doll Bed' +p50651 +sg25270 +S'American 20th Century' +p50652 +sa(dp50653 +g25267 +g27 +sg25268 +S'Candle Stand' +p50654 +sg25270 +S'Robert Brigadier' +p50655 +sa(dp50656 +g25267 +g27 +sg25268 +S'Table' +p50657 +sg25270 +S'Arthur Johnson' +p50658 +sa(dp50659 +g25267 +g27 +sg25268 +S'Tea Table' +p50660 +sg25270 +S'Bernard Krieger' +p50661 +sa(dp50662 +g25267 +g27 +sg25268 +S'Silver Table' +p50663 +sg25270 +S'Richard Schoene' +p50664 +sa(dp50665 +g25267 +g27 +sg25268 +S'Bureau' +p50666 +sg25270 +S'Margaret Stottlemeyer' +p50667 +sa(dp50668 +g25267 +g27 +sg25268 +S'Mahogany Stand with Two Drawers' +p50669 +sg25270 +S'Margaret Stottlemeyer' +p50670 +sa(dp50671 +g25267 +g27 +sg25268 +S'Hitchcock Chair' +p50672 +sg25270 +S'Genevieve Sherlock' +p50673 +sa(dp50674 +g25273 +S'(artist after)' +p50675 +sg25267 +g27 +sg25275 +S'\n' +p50676 +sg25268 +S'Enee apres la destruction de Troye se sauve ...' +p50677 +sg25270 +S'Artist Information (' +p50678 +sa(dp50679 +g25267 +g27 +sg25268 +S'Hitchcock Chair' +p50680 +sg25270 +S'Genevieve Sherlock' +p50681 +sa(dp50682 +g25267 +g27 +sg25268 +S'Hitchcock Chair' +p50683 +sg25270 +S'Robert Brigadier' +p50684 +sa(dp50685 +g25267 +g27 +sg25268 +S'Hitchcock Chair' +p50686 +sg25270 +S'Robert Brigadier' +p50687 +sa(dp50688 +g25267 +g27 +sg25268 +S'Side Chair' +p50689 +sg25270 +S'Carl Weiss' +p50690 +sa(dp50691 +g25267 +g27 +sg25268 +S'Desk' +p50692 +sg25270 +S'Edna C. Rex' +p50693 +sa(dp50694 +g25267 +g27 +sg25268 +S'Desk' +p50695 +sg25270 +S'Bernard Gussow' +p50696 +sa(dp50697 +g25267 +g27 +sg25268 +S'Chair' +p50698 +sg25270 +S'Genevieve Sherlock' +p50699 +sa(dp50700 +g25267 +g27 +sg25268 +S'Side Chair' +p50701 +sg25270 +S'Genevieve Sherlock' +p50702 +sa(dp50703 +g25267 +g27 +sg25268 +S'Chair' +p50704 +sg25270 +S'Genevieve Sherlock' +p50705 +sa(dp50706 +g25267 +g27 +sg25268 +S'Hitchcock Chair' +p50707 +sg25270 +S'Genevieve Sherlock' +p50708 +sa(dp50709 +g25273 +S', 1768' +p50710 +sg25267 +g27 +sg25275 +S'\n' +p50711 +sg25268 +S'Polypheme apres avoir chante les louanges de Galatee ...' +p50712 +sg25270 +S'Jean-Michel Moreau the Younger' +p50713 +sa(dp50714 +g25267 +g27 +sg25268 +S'Hitchcock Chair' +p50715 +sg25270 +S'Genevieve Sherlock' +p50716 +sa(dp50717 +g25267 +g27 +sg25268 +S'Sofa' +p50718 +sg25270 +S'Margaret Stottlemeyer' +p50719 +sa(dp50720 +g25267 +g27 +sg25268 +S'Chair' +p50721 +sg25270 +S'Margaret Stottlemeyer' +p50722 +sa(dp50723 +g25267 +g27 +sg25268 +S'Chest' +p50724 +sg25270 +S'Elizabeth Curtis' +p50725 +sa(dp50726 +g25267 +g27 +sg25268 +S'China Cupboard' +p50727 +sg25270 +S'George Fairbanks' +p50728 +sa(dp50729 +g25267 +g27 +sg25268 +S'Highboy' +p50730 +sg25270 +S'American 20th Century' +p50731 +sa(dp50732 +g25267 +g27 +sg25268 +S'Chest' +p50733 +sg25270 +S'Percival Jenner' +p50734 +sa(dp50735 +g25267 +g27 +sg25268 +S'Chair' +p50736 +sg25270 +S'Harold Smith' +p50737 +sa(dp50738 +g25267 +g27 +sg25268 +S'Chest' +p50739 +sg25270 +S'American 20th Century' +p50740 +sa(dp50741 +g25267 +g27 +sg25268 +S'Lowboy' +p50742 +sg25270 +S'Isidore Sovensky' +p50743 +sa(dp50744 +g25273 +S'(artist after)' +p50745 +sg25267 +g27 +sg25275 +S'\n' +p50746 +sg25268 +S"Polyph\xc3\xa8me apr\xc3\xa8s avoir chant\xc3\xa9 les louanges de Galat\xc3\xa9e l'apper\xc3\xa7oit aux pieds du Rocher qui s'entretenoit avec Acis" +p50747 +sg25270 +S'Artist Information (' +p50748 +sa(dp50749 +g25267 +g27 +sg25268 +S'Corner Cupboard' +p50750 +sg25270 +S'George Fairbanks' +p50751 +sa(dp50752 +g25267 +g27 +sg25268 +S'Chest' +p50753 +sg25270 +S'Walter W. Jennings' +p50754 +sa(dp50755 +g25267 +g27 +sg25268 +S'Chair' +p50756 +sg25270 +S'American 20th Century' +p50757 +sa(dp50758 +g25267 +g27 +sg25268 +S'Chair' +p50759 +sg25270 +S'Francis Law Durand' +p50760 +sa(dp50761 +g25267 +g27 +sg25268 +S'Rocking Chair' +p50762 +sg25270 +S'Tulita Westfall' +p50763 +sa(dp50764 +g25267 +g27 +sg25268 +S'Chair' +p50765 +sg25270 +S'American 20th Century' +p50766 +sa(dp50767 +g25267 +g27 +sg25268 +S'Chair' +p50768 +sg25270 +S'Herbert Marsh' +p50769 +sa(dp50770 +g25267 +g27 +sg25268 +S'Armchair' +p50771 +sg25270 +S'Frank Wenger' +p50772 +sa(dp50773 +g25267 +g27 +sg25268 +S'Wing Chair' +p50774 +sg25270 +S'M. Rosenshield-von-Paulin' +p50775 +sa(dp50776 +g25267 +g27 +sg25268 +S'Arm Chair' +p50777 +sg25270 +S'Alfred Nason' +p50778 +sa(dp50779 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p50780 +sg25267 +g27 +sg25275 +S'1769' +p50781 +sg25268 +S'Glaucus devient amoureux de Scylla ...' +p50782 +sg25270 +S'Charles Monnet' +p50783 +sa(dp50784 +g25267 +g27 +sg25268 +S'Side Chair' +p50785 +sg25270 +S'M. Rosenshield-von-Paulin' +p50786 +sa(dp50787 +g25267 +g27 +sg25268 +S'Chair' +p50788 +sg25270 +S'Gerald Bernhardt' +p50789 +sa(dp50790 +g25267 +g27 +sg25268 +S'Chair' +p50791 +sg25270 +S'Francis Law Durand' +p50792 +sa(dp50793 +g25267 +g27 +sg25268 +S'Chair' +p50794 +sg25270 +S'Bernard Gussow' +p50795 +sa(dp50796 +g25267 +g27 +sg25268 +S'Hitchcock Chair' +p50797 +sg25270 +S'Emilio Zito' +p50798 +sa(dp50799 +g25267 +g27 +sg25268 +S'Chair' +p50800 +sg25270 +S'B. Holst-Grubbe' +p50801 +sa(dp50802 +g25267 +g27 +sg25268 +S'Chair' +p50803 +sg25270 +S'John Dieterich' +p50804 +sa(dp50805 +g25267 +g27 +sg25268 +S'Side Chair' +p50806 +sg25270 +S'Alfred Nason' +p50807 +sa(dp50808 +g25267 +g27 +sg25268 +S'Chair' +p50809 +sg25270 +S'American 20th Century' +p50810 +sa(dp50811 +g25267 +g27 +sg25268 +S'Seat' +p50812 +sg25270 +S'Margaret Knapp' +p50813 +sa(dp50814 +g25273 +S'Widener Collection' +p50815 +sg25267 +g27 +sg25275 +S'\nbound volume with 14 drawings and 19 prints by various artists for the 1767-1771 ed. of "Les Metamorphoses d\'Ovide"' +p50816 +sg25268 +S'Album of Preliminary Drawings and Prints for "Les Metamorphoses d\'Ovide" (volume 8)' +p50817 +sg25270 +S'Various Artists' +p50818 +sa(dp50819 +g25267 +g27 +sg25268 +S'Chair' +p50820 +sg25270 +S'American 20th Century' +p50821 +sa(dp50822 +g25267 +g27 +sg25268 +S'Chair' +p50823 +sg25270 +S'American 20th Century' +p50824 +sa(dp50825 +g25267 +g27 +sg25268 +S'Chair' +p50826 +sg25270 +S'Isadore Goldberg' +p50827 +sa(dp50828 +g25267 +g27 +sg25268 +S'Arm Chair' +p50829 +sg25270 +S'Elizabeth Curtis' +p50830 +sa(dp50831 +g25267 +g27 +sg25268 +S'Chair' +p50832 +sg25270 +S'American 20th Century' +p50833 +sa(dp50834 +g25267 +g27 +sg25268 +S'Chair' +p50835 +sg25270 +S'Edith Magnette' +p50836 +sa(dp50837 +g25267 +g27 +sg25268 +S'Chair' +p50838 +sg25270 +S'Francis Law Durand' +p50839 +sa(dp50840 +g25267 +g27 +sg25268 +S'Chair' +p50841 +sg25270 +S'American 20th Century' +p50842 +sa(dp50843 +g25267 +g27 +sg25268 +S'Chair' +p50844 +sg25270 +S'American 20th Century' +p50845 +sa(dp50846 +g25267 +g27 +sg25268 +S'Desk' +p50847 +sg25270 +S'American 20th Century' +p50848 +sa(dp50849 +g25273 +S'(artist after)' +p50850 +sg25267 +g27 +sg25275 +S'\n' +p50851 +sg25268 +S'Glaucus devient amoureux de Scylla ...' +p50852 +sg25270 +S'Artist Information (' +p50853 +sa(dp50854 +g25267 +g27 +sg25268 +S'Mantel Clock' +p50855 +sg25270 +S'Francis Law Durand' +p50856 +sa(dp50857 +g25267 +g27 +sg25268 +S'Box Desk' +p50858 +sg25270 +S'Arthur Johnson' +p50859 +sa(dp50860 +g25267 +g27 +sg25268 +S'Secretary' +p50861 +sg25270 +S'Bernard Krieger' +p50862 +sa(dp50863 +g25267 +g27 +sg25268 +S'Writing Desk' +p50864 +sg25270 +S'Henry Meyers' +p50865 +sa(dp50866 +g25267 +g27 +sg25268 +S'Chest' +p50867 +sg25270 +S'American 20th Century' +p50868 +sa(dp50869 +g25267 +g27 +sg25268 +S'Highboy' +p50870 +sg25270 +S'Frederick Jackson' +p50871 +sa(dp50872 +g25267 +g27 +sg25268 +S'Highboy' +p50873 +sg25270 +S'Frederick Jackson' +p50874 +sa(dp50875 +g25267 +g27 +sg25268 +S'Highboy' +p50876 +sg25270 +S'Jack Bochner' +p50877 +sa(dp50878 +g25267 +g27 +sg25268 +S'Spinning Wheel' +p50879 +sg25270 +S'Ludmilla Calderon' +p50880 +sa(dp50881 +g25267 +g27 +sg25268 +S'Desk' +p50882 +sg25270 +S'Franklin C. Moyan' +p50883 +sa(dp50884 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p50885 +sg25267 +g27 +sg25275 +S'1769' +p50886 +sg25268 +S"Circe vient empoisonner l'antre ..." +p50887 +sg25270 +S'Charles Monnet' +p50888 +sa(dp50889 +g25267 +g27 +sg25268 +S'Desk' +p50890 +sg25270 +S'Dorothea A. Farrington' +p50891 +sa(dp50892 +g25267 +g27 +sg25268 +S'Arm Chair' +p50893 +sg25270 +S'Herbert Marsh' +p50894 +sa(dp50895 +g25267 +g27 +sg25268 +S'Table' +p50896 +sg25270 +S'Edna C. Rex' +p50897 +sa(dp50898 +g25267 +g27 +sg25268 +S'Arm Chair' +p50899 +sg25270 +S'American 20th Century' +p50900 +sa(dp50901 +g25267 +g27 +sg25268 +S'Desk' +p50902 +sg25270 +S'Edna C. Rex' +p50903 +sa(dp50904 +g25267 +g27 +sg25268 +S'Toy Chair' +p50905 +sg25270 +S'Mildred Ford' +p50906 +sa(dp50907 +g25267 +g27 +sg25268 +S'Writing Desk' +p50908 +sg25270 +S'Columbus Simpson' +p50909 +sa(dp50910 +g25267 +g27 +sg25268 +S'Bookcase' +p50911 +sg25270 +S'Henry Meyers' +p50912 +sa(dp50913 +g25267 +g27 +sg25268 +S'Georgian Desk' +p50914 +sg25270 +S'Willoughby Ions' +p50915 +sa(dp50916 +g25267 +g27 +sg25268 +S'Banjo Clock' +p50917 +sg25270 +S'American 20th Century' +p50918 +sa(dp50919 +g25273 +S'(artist after)' +p50920 +sg25267 +g27 +sg25275 +S'\n' +p50921 +sg25268 +S"Circe vient empoisonner l'antre ..." +p50922 +sg25270 +S'Artist Information (' +p50923 +sa(dp50924 +g25267 +g27 +sg25268 +S'Banjo Clock' +p50925 +sg25270 +S'Emilio Zito' +p50926 +sa(dp50927 +g25267 +g27 +sg25268 +S'Desk' +p50928 +sg25270 +S'George Fairbanks' +p50929 +sa(dp50930 +g25267 +g27 +sg25268 +S'Settee and Folding Bed' +p50931 +sg25270 +S'Kurt Melzer' +p50932 +sa(dp50933 +g25267 +g27 +sg25268 +S'Side Chair' +p50934 +sg25270 +S'Edna C. Rex' +p50935 +sa(dp50936 +g25267 +g27 +sg25268 +S'Arm Chair' +p50937 +sg25270 +S'Edna C. Rex' +p50938 +sa(dp50939 +g25267 +g27 +sg25268 +S'Pen and ink on paper' +p50940 +sg25270 +S'Ernest A. Towers, Jr.' +p50941 +sa(dp50942 +g25267 +g27 +sg25268 +S'Clock Case' +p50943 +sg25270 +S'John Dieterich' +p50944 +sa(dp50945 +g25267 +g27 +sg25268 +S'Clock' +p50946 +sg25270 +S'Ernest A. Towers, Jr.' +p50947 +sa(dp50948 +g25267 +g27 +sg25268 +S'Clock' +p50949 +sg25270 +S'Ernest A. Towers, Jr.' +p50950 +sa(dp50951 +g25267 +g27 +sg25268 +S'Clock' +p50952 +sg25270 +S'American 20th Century' +p50953 +sa(dp50954 +g25273 +S'(artist after)' +p50955 +sg25267 +g27 +sg25275 +S'\n' +p50956 +sg25268 +S"Circe vient empoisonner l'antre ..." +p50957 +sg25270 +S'Artist Information (' +p50958 +sa(dp50959 +g25267 +g27 +sg25268 +S'Steeple Clock' +p50960 +sg25270 +S'American 20th Century' +p50961 +sa(dp50962 +g25267 +g27 +sg25268 +S'Clock' +p50963 +sg25270 +S'Matthew Mangiacotti' +p50964 +sa(dp50965 +g25267 +g27 +sg25268 +S'Clock' +p50966 +sg25270 +S'Joseph Rothenberg' +p50967 +sa(dp50968 +g25267 +g27 +sg25268 +S'Clock' +p50969 +sg25270 +S'John Dieterich' +p50970 +sa(dp50971 +g25267 +g27 +sg25268 +S'Mortar and Pestle' +p50972 +sg25270 +S'Janet Riza' +p50973 +sa(dp50974 +g25267 +g27 +sg25268 +S'Mortar and Pestle' +p50975 +sg25270 +S'Eugene Barrell' +p50976 +sa(dp50977 +g25267 +g27 +sg25268 +S'"Hurricane" Shade' +p50978 +sg25270 +S'Frank Fumagalli' +p50979 +sa(dp50980 +g25267 +g27 +sg25268 +S'Cordial Bottle' +p50981 +sg25270 +S'Gertrude Lemberg' +p50982 +sa(dp50983 +g25267 +g27 +sg25268 +S'Bottle' +p50984 +sg25270 +S'Gertrude Lemberg' +p50985 +sa(dp50986 +g25267 +g27 +sg25268 +S'Blown Bottle' +p50987 +sg25270 +S'Ralph Atkinson' +p50988 +sa(dp50989 +g25273 +S', 1769' +p50990 +sg25267 +g27 +sg25275 +S'\n' +p50991 +sg25268 +S'Didon reine de Carthage recoit Enee dans son palais ...' +p50992 +sg25270 +S'Jean-Michel Moreau the Younger' +p50993 +sa(dp50994 +g25267 +g27 +sg25268 +S'Fire Lighter Vase' +p50995 +sg25270 +S'Francis Law Durand' +p50996 +sa(dp50997 +g25267 +g27 +sg25268 +S'Vase' +p50998 +sg25270 +S'Eileen Knox' +p50999 +sa(dp51000 +g25267 +g27 +sg25268 +S'Blue Glass' +p51001 +sg25270 +S'Nicholas Amantea' +p51002 +sa(dp51003 +g25267 +g27 +sg25268 +S'Glass' +p51004 +sg25270 +S'Vincent Burzy' +p51005 +sa(dp51006 +g25267 +g27 +sg25268 +S'Pitcher' +p51007 +sg25270 +S'Vincent Burzy' +p51008 +sa(dp51009 +g25267 +g27 +sg25268 +S'Vase' +p51010 +sg25270 +S'Nicholas Amantea' +p51011 +sa(dp51012 +g25267 +g27 +sg25268 +S'Bowl' +p51013 +sg25270 +S'American 20th Century' +p51014 +sa(dp51015 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p51016 +sg25270 +S'John Tarantino' +p51017 +sa(dp51018 +g25267 +g27 +sg25268 +S'Vase' +p51019 +sg25270 +S'Janet Riza' +p51020 +sa(dp51021 +g25267 +g27 +sg25268 +S'Bottle' +p51022 +sg25270 +S'Van Silvay' +p51023 +sa(dp51024 +g25273 +S'(artist after)' +p51025 +sg25267 +g27 +sg25275 +S'\n' +p51026 +sg25268 +S'Didon reine de Carthage re\xc3\xa7oit \xc3\x89n\xc3\xa9e dans son palais, et en devient amoureuse' +p51027 +sg25270 +S'Artist Information (' +p51028 +sa(dp51029 +g25267 +g27 +sg25268 +S'Vase' +p51030 +sg25270 +S'Lillian Causey' +p51031 +sa(dp51032 +g25267 +g27 +sg25268 +S'Blue-Green Vase' +p51033 +sg25270 +S'Marcus Moran' +p51034 +sa(dp51035 +g25267 +g27 +sg25268 +S'Pitcher' +p51036 +sg25270 +S'Charles Caseau' +p51037 +sa(dp51038 +g25267 +g27 +sg25268 +S'Bottle' +p51039 +sg25270 +S'Marie Lutrell' +p51040 +sa(dp51041 +g25267 +g27 +sg25268 +S'Pitcher' +p51042 +sg25270 +S'Ralph Atkinson' +p51043 +sa(dp51044 +g25267 +g27 +sg25268 +S'Pitcher' +p51045 +sg25270 +S'Marcus Moran' +p51046 +sa(dp51047 +g25267 +g27 +sg25268 +S'Mirror' +p51048 +sg25270 +S'B. Holst-Grubbe' +p51049 +sa(dp51050 +g25267 +g27 +sg25268 +S'Mirror' +p51051 +sg25270 +S'Nicholas Gorid' +p51052 +sa(dp51053 +g25267 +g27 +sg25268 +S'Dairy Counter' +p51054 +sg25270 +S'Lawrence Foster' +p51055 +sa(dp51056 +g25267 +g27 +sg25268 +S'Table' +p51057 +sg25270 +S'Robert Brigadier' +p51058 +sa(dp51059 +g25273 +S'(artist after)' +p51060 +sg25267 +g27 +sg25275 +S'\n' +p51061 +sg25268 +S'Didon reine de Carthage re\xc3\xa7oit \xc3\x89n\xc3\xa9e dans son palais, et en devient amoureuse' +p51062 +sg25270 +S'Artist Information (' +p51063 +sa(dp51064 +g25267 +g27 +sg25268 +S'Shaker Tin Safe' +p51065 +sg25270 +S'George V. Vezolles' +p51066 +sa(dp51067 +g25267 +g27 +sg25268 +S'Shaker Cherry Cabinet with Drawers' +p51068 +sg25270 +S'William Paul Childers' +p51069 +sa(dp51070 +g25267 +g27 +sg25268 +S'Shaker Dining Table (Marble Top)' +p51071 +sg25270 +S'John W. Kelleher' +p51072 +sa(dp51073 +g25267 +g27 +sg25268 +S'Shaker Desk' +p51074 +sg25270 +S'Anne Ger' +p51075 +sa(dp51076 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a00058d4.jpg' +p51077 +sg25268 +S'Bake Room Table' +p51078 +sg25270 +S'Alfred H. Smith' +p51079 +sa(dp51080 +g25267 +g27 +sg25268 +S'Shaker Secretary Desk' +p51081 +sg25270 +S'John W. Kelleher' +p51082 +sa(dp51083 +g25267 +g27 +sg25268 +S'Table (Pedestal)' +p51084 +sg25270 +S'Bernard Krieger' +p51085 +sa(dp51086 +g25267 +g27 +sg25268 +S'Shaker Desk' +p51087 +sg25270 +S'John W. Kelleher' +p51088 +sa(dp51089 +g25267 +g27 +sg25268 +S'Shaker Rocking Chair' +p51090 +sg25270 +S'Alfred H. Smith' +p51091 +sa(dp51092 +g25267 +g27 +sg25268 +S'John B. Bull Garden' +p51093 +sg25270 +S'Gilbert Sackerman' +p51094 +sa(dp51095 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p51096 +sg25267 +g27 +sg25275 +S'1768' +p51097 +sg25268 +S'Apollon accorde a la Sybile ...' +p51098 +sg25270 +S'Charles Monnet' +p51099 +sa(dp51100 +g25267 +g27 +sg25268 +S'Block Plan' +p51101 +sg25270 +S'George Stonehill' +p51102 +sa(dp51103 +g25267 +g27 +sg25268 +S'J. Hopkins Estate' +p51104 +sg25270 +S'Artist Information (' +p51105 +sa(dp51106 +g25267 +g27 +sg25268 +S'J. Audubon Estate' +p51107 +sg25270 +S'Artist Information (' +p51108 +sa(dp51109 +g25267 +g27 +sg25268 +S'Garden' +p51110 +sg25270 +S'American 20th Century' +p51111 +sa(dp51112 +g25267 +g27 +sg25268 +S'Joseph Fisher Estate' +p51113 +sg25270 +S'George Stonehill' +p51114 +sa(dp51115 +g25267 +g27 +sg25268 +S'Cheeseborough Estate' +p51116 +sg25270 +S'Helen Miller' +p51117 +sa(dp51118 +g25267 +g27 +sg25268 +S'Peter K. Knapp Estate' +p51119 +sg25270 +S'George Stonehill' +p51120 +sa(dp51121 +g25267 +g27 +sg25268 +S"C. O'Connor and J.M. Hopkins Estate" +p51122 +sg25270 +S'Artist Information (' +p51123 +sa(dp51124 +g25267 +g27 +sg25268 +S'Isaac P. Martin Garden' +p51125 +sg25270 +S'Artist Information (' +p51126 +sa(dp51127 +g25267 +g27 +sg25268 +S'Garden of Thomas Veitch' +p51128 +sg25270 +S'Artist Information (' +p51129 +sa(dp51130 +g25273 +S'(artist after)' +p51131 +sg25267 +g27 +sg25275 +S'\n' +p51132 +sg25268 +S'Apollon accorde a la Sybile ...' +p51133 +sg25270 +S'Artist Information (' +p51134 +sa(dp51135 +g25267 +g27 +sg25268 +S"A. C. Richards' Garden" +p51136 +sg25270 +S'Artist Information (' +p51137 +sa(dp51138 +g25267 +g27 +sg25268 +S'Corlaer Estate and Garden' +p51139 +sg25270 +S'Meyer Goldbaum' +p51140 +sa(dp51141 +g25267 +g27 +sg25268 +S'M. Ward Estate' +p51142 +sg25270 +S'Artist Information (' +p51143 +sa(dp51144 +g25267 +g27 +sg25268 +S'A. M. Ferris Estate' +p51145 +sg25270 +S'William Merklin' +p51146 +sa(dp51147 +g25267 +g27 +sg25268 +S'J. G. Bennett Estate' +p51148 +sg25270 +S'Artist Information (' +p51149 +sa(dp51150 +g25267 +g27 +sg25268 +S"Madame Jumel's Garden" +p51151 +sg25270 +S'Virginia Richards' +p51152 +sa(dp51153 +g25267 +g27 +sg25268 +S'Eliza Jumel Estate' +p51154 +sg25270 +S'Virginia Richards' +p51155 +sa(dp51156 +g25267 +g27 +sg25268 +S'Jumel Estate #5' +p51157 +sg25270 +S'Virginia Richards' +p51158 +sa(dp51159 +g25267 +g27 +sg25268 +S'Parterre and Fountains of Blind Institution' +p51160 +sg25270 +S'Joseph Stonefield' +p51161 +sa(dp51162 +g25267 +g27 +sg25268 +S'Samuel Harrison House and Garden' +p51163 +sg25270 +S'Meyer Goldbaum' +p51164 +sa(dp51165 +g25273 +S'graphite' +p51166 +sg25267 +g27 +sg25275 +S'published 1767/1771' +p51167 +sg25268 +S'Enee de retour a Cumes ...' +p51168 +sg25270 +S'Charles Eisen' +p51169 +sa(dp51170 +g25267 +g27 +sg25268 +S'M. Ward Estate' +p51171 +sg25270 +S'Virginia Richards' +p51172 +sa(dp51173 +g25267 +g27 +sg25268 +S'Isaac Dyckman House' +p51174 +sg25270 +S'Helen Miller' +p51175 +sa(dp51176 +g25267 +g27 +sg25268 +S'Ward and Green Gardens' +p51177 +sg25270 +S'Meyer Goldbaum' +p51178 +sa(dp51179 +g25267 +g27 +sg25268 +S'W. A. Wheelock Estate' +p51180 +sg25270 +S'Tabea Hosier' +p51181 +sa(dp51182 +g25267 +g27 +sg25268 +S'Thomas Ingham Estate' +p51183 +sg25270 +S'Artist Information (' +p51184 +sa(dp51185 +g25267 +g27 +sg25268 +S'John A. Haven Estate' +p51186 +sg25270 +S'Artist Information (' +p51187 +sa(dp51188 +g25267 +g27 +sg25268 +S'Estate of Isaac P. Martin' +p51189 +sg25270 +S'Artist Information (' +p51190 +sa(dp51191 +g25267 +g27 +sg25268 +S'Frank Thompson Hilltop Estate' +p51192 +sg25270 +S'Artist Information (' +p51193 +sa(dp51194 +g25267 +g27 +sg25268 +S'George Taylor - 2 Residences' +p51195 +sg25270 +S'Meyer Goldbaum' +p51196 +sa(dp51197 +g25267 +g27 +sg25268 +S'William A. Wheelock Estate' +p51198 +sg25270 +S'Tabea Hosier' +p51199 +sa(dp51200 +g25273 +S'(artist after)' +p51201 +sg25267 +g27 +sg25275 +S'\n' +p51202 +sg25268 +S'Enee de retour a Cumes ...' +p51203 +sg25270 +S'Artist Information (' +p51204 +sa(dp51205 +g25267 +g27 +sg25268 +S'Cheeseborough Estate' +p51206 +sg25270 +S'Helen Miller' +p51207 +sa(dp51208 +g25267 +g27 +sg25268 +S'Hayes and Thompson Estate' +p51209 +sg25270 +S'Artist Information (' +p51210 +sa(dp51211 +g25267 +g27 +sg25268 +S'I. Tiebout Estate' +p51212 +sg25270 +S'Meyer Goldbaum' +p51213 +sa(dp51214 +g25267 +g27 +sg25268 +S'Rutgers Estate and Garden' +p51215 +sg25270 +S'Helen Miller' +p51216 +sa(dp51217 +g25267 +g27 +sg25268 +S'J. Duane Estate' +p51218 +sg25270 +S'Meyer Goldbaum' +p51219 +sa(dp51220 +g25267 +g27 +sg25268 +S'Ranelagh Gardens' +p51221 +sg25270 +S'George Stonehill' +p51222 +sa(dp51223 +g25267 +g27 +sg25268 +S'Depeyster Estate and Garden' +p51224 +sg25270 +S'Helen Miller' +p51225 +sa(dp51226 +g25267 +g27 +sg25268 +S'A. Elliot Estate' +p51227 +sg25270 +S'Gilbert Sackerman' +p51228 +sa(dp51229 +g25267 +g27 +sg25268 +S"West India Company's Garden" +p51230 +sg25270 +S'Helen Miller' +p51231 +sa(dp51232 +g25267 +g27 +sg25268 +S'Dutch West India Company' +p51233 +sg25270 +S'Helen Miller' +p51234 +sa(dp51235 +g25273 +S'graphite' +p51236 +sg25267 +g27 +sg25275 +S'1769' +p51237 +sg25268 +S'Ulisse vient au Palais de Circe ...' +p51238 +sg25270 +S'Charles Eisen' +p51239 +sa(dp51240 +g25267 +g27 +sg25268 +S'Peter Stuyvesant Garden' +p51241 +sg25270 +S'George Stonehill' +p51242 +sa(dp51243 +g25267 +g27 +sg25268 +S'Peter Stuyvesant Garden' +p51244 +sg25270 +S'George Stonehill' +p51245 +sa(dp51246 +g25267 +g27 +sg25268 +S'Ketteltas Estate' +p51247 +sg25270 +S'Helen Miller' +p51248 +sa(dp51249 +g25267 +g27 +sg25268 +S'Parterre Claremont' +p51250 +sg25270 +S'Helen Miller' +p51251 +sa(dp51252 +g25267 +g27 +sg25268 +S'Sperry Gardens' +p51253 +sg25270 +S'George Stonehill' +p51254 +sa(dp51255 +g25267 +g27 +sg25268 +S"Lispenard's Estate and Gardens" +p51256 +sg25270 +S'George Stonehill' +p51257 +sa(dp51258 +g25267 +g27 +sg25268 +S'Peter Stuyvesant Garden' +p51259 +sg25270 +S'George Stonehill' +p51260 +sa(dp51261 +g25267 +g27 +sg25268 +S'Thomas Jones Estate' +p51262 +sg25270 +S'Meyer Goldbaum' +p51263 +sa(dp51264 +g25267 +g27 +sg25268 +S'Sperry Gardens' +p51265 +sg25270 +S'George Stonehill' +p51266 +sa(dp51267 +g25267 +g27 +sg25268 +S'J. Dyckman Estate' +p51268 +sg25270 +S'Gilbert Sackerman' +p51269 +sa(dp51270 +g25273 +S'(artist after)' +p51271 +sg25267 +g27 +sg25275 +S'\n' +p51272 +sg25268 +S'Ulisse vient au Palais de Circe ...' +p51273 +sg25270 +S'Artist Information (' +p51274 +sa(dp51275 +g25267 +g27 +sg25268 +S'J. Delancey Estate' +p51276 +sg25270 +S'Gilbert Sackerman' +p51277 +sa(dp51278 +g25267 +g27 +sg25268 +S'Watts Estate and Garden' +p51279 +sg25270 +S'Helen Miller' +p51280 +sa(dp51281 +g25267 +g27 +sg25268 +S'Flower Garden - Lewis Estate' +p51282 +sg25270 +S'Artist Information (' +p51283 +sa(dp51284 +g25267 +g27 +sg25268 +S'Mug' +p51285 +sg25270 +S'Van Silvay' +p51286 +sa(dp51287 +g25267 +g27 +sg25268 +S'Compote' +p51288 +sg25270 +S'Elisabeth Fulda' +p51289 +sa(dp51290 +g25267 +g27 +sg25268 +S'Pitcher' +p51291 +sg25270 +S'Robert Stewart' +p51292 +sa(dp51293 +g25267 +g27 +sg25268 +S'Creamer with Cover' +p51294 +sg25270 +S'Beverly Chichester' +p51295 +sa(dp51296 +g25267 +g27 +sg25268 +S'Powder Horn' +p51297 +sg25270 +S'John Tarantino' +p51298 +sa(dp51299 +g25267 +g27 +sg25268 +S'Pitcher' +p51300 +sg25270 +S'John Tarantino' +p51301 +sa(dp51302 +g25267 +g27 +sg25268 +S'Mug' +p51303 +sg25270 +S'Jessica Price' +p51304 +sa(dp51305 +g25273 +S'graphite' +p51306 +sg25267 +g27 +sg25275 +S'1769' +p51307 +sg25268 +S'Circe ne pouvent ebranler la fidelite que Picus ...' +p51308 +sg25270 +S'Charles Eisen' +p51309 +sa(dp51310 +g25267 +g27 +sg25268 +S'Vase' +p51311 +sg25270 +S'Anna Aloisi' +p51312 +sa(dp51313 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p51314 +sg25270 +S'John Fisk' +p51315 +sa(dp51316 +g25267 +g27 +sg25268 +S'Creamer' +p51317 +sg25270 +S'Janet Riza' +p51318 +sa(dp51319 +g25267 +g27 +sg25268 +S'Compote' +p51320 +sg25270 +S'S. Brodsky' +p51321 +sa(dp51322 +g25267 +g27 +sg25268 +S'Compote' +p51323 +sg25270 +S'Janet Riza' +p51324 +sa(dp51325 +g25267 +g27 +sg25268 +S'Inkwell' +p51326 +sg25270 +S'John Tarantino' +p51327 +sa(dp51328 +g25267 +g27 +sg25268 +S'Glass' +p51329 +sg25270 +S'Janet Riza' +p51330 +sa(dp51331 +g25267 +g27 +sg25268 +S'Glass' +p51332 +sg25270 +S'Lillian Causey' +p51333 +sa(dp51334 +g25267 +g27 +sg25268 +S'Washington Park' +p51335 +sg25270 +S'Meyer Goldbaum' +p51336 +sa(dp51337 +g25267 +g27 +sg25268 +S'Italian Villa Design' +p51338 +sg25270 +S'Virginia Richards' +p51339 +sa(dp51340 +g25273 +S'(artist after)' +p51341 +sg25267 +g27 +sg25275 +S'\n' +p51342 +sg25268 +S'Circe ne pouvant ebranler la fidelite que Pieus ...' +p51343 +sg25270 +S'Artist Information (' +p51344 +sa(dp51345 +g25267 +g27 +sg25268 +S'Gardens' +p51346 +sg25270 +S'Gilbert Sackerman' +p51347 +sa(dp51348 +g25267 +g27 +sg25268 +S'Stoughton Estate' +p51349 +sg25270 +S'Virginia Richards' +p51350 +sa(dp51351 +g25267 +g27 +sg25268 +S'Elgin Botanical Gardens' +p51352 +sg25270 +S'Tabea Hosier' +p51353 +sa(dp51354 +g25267 +g27 +sg25268 +S'Andre Parmentier Garden' +p51355 +sg25270 +S'Artist Information (' +p51356 +sa(dp51357 +g25267 +g27 +sg25268 +S'Ground Plan for Cottage' +p51358 +sg25270 +S'Virginia Richards' +p51359 +sa(dp51360 +g25267 +g27 +sg25268 +S'Warren Estate' +p51361 +sg25270 +S'Tabea Hosier' +p51362 +sa(dp51363 +g25267 +g27 +sg25268 +S'Lenrert Estate' +p51364 +sg25270 +S'Gladys Cook' +p51365 +sa(dp51366 +g25267 +g27 +sg25268 +S'Schermerhorn Estate' +p51367 +sg25270 +S'Helen Miller' +p51368 +sa(dp51369 +g25267 +g27 +sg25268 +S'House of Peter Stuyvesant' +p51370 +sg25270 +S'George Stonehill' +p51371 +sa(dp51372 +g25267 +g27 +sg25268 +S'House of Benjamine C. Moore' +p51373 +sg25270 +S'Gladys Cook' +p51374 +sa(dp51375 +g25273 +S'graphite' +p51376 +sg25267 +g27 +sg25275 +S'1769' +p51377 +sg25268 +S'Venus irritee, metamorphose Acmon et ses camarades en oiseaux ...' +p51378 +sg25270 +S'Charles Eisen' +p51379 +sa(dp51380 +g25267 +g27 +sg25268 +S'I. Beekman Estate' +p51381 +sg25270 +S'Gilbert Sackerman' +p51382 +sa(dp51383 +g25267 +g27 +sg25268 +S'P. Stuyvesant Estate ("Petersfield")' +p51384 +sg25270 +S'Tabea Hosier' +p51385 +sa(dp51386 +g25267 +g27 +sg25268 +S'Parterre Claremont' +p51387 +sg25270 +S'Helen Miller' +p51388 +sa(dp51389 +g25267 +g27 +sg25268 +S'Eliza B. Jumel Estate' +p51390 +sg25270 +S'Virginia Richards' +p51391 +sa(dp51392 +g25267 +g27 +sg25268 +S'Glass Pitcher' +p51393 +sg25270 +S'Francis Law Durand' +p51394 +sa(dp51395 +g25267 +g27 +sg25268 +S'Creamer' +p51396 +sg25270 +S'Beverly Chichester' +p51397 +sa(dp51398 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p51399 +sg25270 +S'Michael J. Miceli' +p51400 +sa(dp51401 +g25267 +g27 +sg25268 +S'Glass Water Pitcher' +p51402 +sg25270 +S'Paul Ward' +p51403 +sa(dp51404 +g25267 +g27 +sg25268 +S'Pitcher' +p51405 +sg25270 +S'John Dana' +p51406 +sa(dp51407 +g25267 +g27 +sg25268 +S'Candlestick' +p51408 +sg25270 +S'Michael Fenga' +p51409 +sa(dp51410 +g25273 +S'(artist after)' +p51411 +sg25267 +g27 +sg25275 +S'\n' +p51412 +sg25268 +S'Venus irritee, Metamorphose Acmon et ses camarades en oiseaux ...' +p51413 +sg25270 +S'Artist Information (' +p51414 +sa(dp51415 +g25267 +g27 +sg25268 +S'Candlestick' +p51416 +sg25270 +S'Elisabeth Fulda' +p51417 +sa(dp51418 +g25267 +g27 +sg25268 +S'Vase' +p51419 +sg25270 +S'Van Silvay' +p51420 +sa(dp51421 +g25267 +g27 +sg25268 +S'Candlestick' +p51422 +sg25270 +S'Giacinto Capelli' +p51423 +sa(dp51424 +g25267 +g27 +sg25268 +S'Ink Well' +p51425 +sg25270 +S'Anthony Zuccarello' +p51426 +sa(dp51427 +g25267 +g27 +sg25268 +S'Candlestick' +p51428 +sg25270 +S'Nicholas Amantea' +p51429 +sa(dp51430 +g25267 +g27 +sg25268 +S'Turtle' +p51431 +sg25270 +S'Van Silvay' +p51432 +sa(dp51433 +g25267 +g27 +sg25268 +S'Inkwell' +p51434 +sg25270 +S'John Dana' +p51435 +sa(dp51436 +g25267 +g27 +sg25268 +S'Glass Vase' +p51437 +sg25270 +S'Richard Whitaker' +p51438 +sa(dp51439 +g25267 +g27 +sg25268 +S'Blue Glass Egg Cup' +p51440 +sg25270 +S'Paul Ward' +p51441 +sa(dp51442 +g25267 +g27 +sg25268 +S'Salt Cellar' +p51443 +sg25270 +S'John Tarantino' +p51444 +sa(dp51445 +g25273 +S'graphite' +p51446 +sg25267 +g27 +sg25275 +S'1769' +p51447 +sg25268 +S'Un Berger est metamorphose en olivier sauvage...' +p51448 +sg25270 +S'Charles Eisen' +p51449 +sa(dp51450 +g25267 +g27 +sg25268 +S'Bowl' +p51451 +sg25270 +S'Van Silvay' +p51452 +sa(dp51453 +g25267 +g27 +sg25268 +S'Bowl' +p51454 +sg25270 +S'John Tarantino' +p51455 +sa(dp51456 +g25267 +g27 +sg25268 +S'"Liberty" Glass Bottle' +p51457 +sg25270 +S'Maud M. Holme' +p51458 +sa(dp51459 +g25267 +g27 +sg25268 +S'Bowl' +p51460 +sg25270 +S'Isidore Steinberg' +p51461 +sa(dp51462 +g25267 +g27 +sg25268 +S'Bowl' +p51463 +sg25270 +S'Van Silvay' +p51464 +sa(dp51465 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p51466 +sg25270 +S'John Tarantino' +p51467 +sa(dp51468 +g25267 +g27 +sg25268 +S'Glass Soda Bottle' +p51469 +sg25270 +S'Bisby Finley' +p51470 +sa(dp51471 +g25267 +g27 +sg25268 +S'Glass Bottle' +p51472 +sg25270 +S'Maud M. Holme' +p51473 +sa(dp51474 +g25267 +g27 +sg25268 +S'Weiss Beer Bottle' +p51475 +sg25270 +S'Herman O. Stroh' +p51476 +sa(dp51477 +g25267 +g27 +sg25268 +S'Beer Bottle' +p51478 +sg25270 +S'Herman O. Stroh' +p51479 +sa(dp51480 +g25273 +S'(artist after)' +p51481 +sg25267 +g27 +sg25275 +S'\n' +p51482 +sg25268 +S'Un Berger est metamorphose en olivier sauvage...' +p51483 +sg25270 +S'Artist Information (' +p51484 +sa(dp51485 +g25267 +g27 +sg25268 +S'Glass Milk Pan' +p51486 +sg25270 +S'Michael J. Miceli' +p51487 +sa(dp51488 +g25267 +g27 +sg25268 +S'Glass Dish' +p51489 +sg25270 +S'Michael J. Miceli' +p51490 +sa(dp51491 +g25267 +g27 +sg25268 +S'Carafe' +p51492 +sg25270 +S'Van Silvay' +p51493 +sa(dp51494 +g25267 +g27 +sg25268 +S'Bowl' +p51495 +sg25270 +S'Isidore Steinberg' +p51496 +sa(dp51497 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p51498 +sg25270 +S'Michael J. Miceli' +p51499 +sa(dp51500 +g25267 +g27 +sg25268 +S'Pitcher' +p51501 +sg25270 +S'Janet Riza' +p51502 +sa(dp51503 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p51504 +sg25270 +S'Van Silvay' +p51505 +sa(dp51506 +g25267 +g27 +sg25268 +S'Mug' +p51507 +sg25270 +S'Frank Fumagalli' +p51508 +sa(dp51509 +g25267 +g27 +sg25268 +S'Salt Cellar' +p51510 +sg25270 +S'John Dana' +p51511 +sa(dp51512 +g25267 +g27 +sg25268 +S'Wine Bottle' +p51513 +sg25270 +S'Frank Nelson' +p51514 +sa(dp51515 +g25273 +S', 1768' +p51516 +sg25267 +g27 +sg25275 +S'\n' +p51517 +sg25268 +S'Cybele metamorphose en Nymphes de la mer les Vaisseaux ...' +p51518 +sg25270 +S'Jean-Michel Moreau the Younger' +p51519 +sa(dp51520 +g25267 +g27 +sg25268 +S'Glass Darning Ball' +p51521 +sg25270 +S'Paul Ward' +p51522 +sa(dp51523 +g25267 +g27 +sg25268 +S'Salt Cellar' +p51524 +sg25270 +S'John Dana' +p51525 +sa(dp51526 +g25267 +g27 +sg25268 +S'Mug' +p51527 +sg25270 +S'John Dana' +p51528 +sa(dp51529 +g25267 +g27 +sg25268 +S'Vase' +p51530 +sg25270 +S'John Tarantino' +p51531 +sa(dp51532 +g25267 +g27 +sg25268 +S'Rose Petal Jar' +p51533 +sg25270 +S'Erwin Schwabe' +p51534 +sa(dp51535 +g25267 +g27 +sg25268 +S'Pitcher' +p51536 +sg25270 +S'Van Silvay' +p51537 +sa(dp51538 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p51539 +sg25270 +S'Elisabeth Fulda' +p51540 +sa(dp51541 +g25267 +g27 +sg25268 +S'Rose Petal Jar' +p51542 +sg25270 +S'Erwin Schwabe' +p51543 +sa(dp51544 +g25267 +g27 +sg25268 +S'Pitcher' +p51545 +sg25270 +S'John Tarantino' +p51546 +sa(dp51547 +g25267 +g27 +sg25268 +S'Creamer' +p51548 +sg25270 +S'Richard Taylor' +p51549 +sa(dp51550 +g25273 +S'(artist after)' +p51551 +sg25267 +g27 +sg25275 +S'\n' +p51552 +sg25268 +S'Cybele m\xc3\xa9tamorphose en Nymphes de la mer les Vaisseaux ...' +p51553 +sg25270 +S'Artist Information (' +p51554 +sa(dp51555 +g25267 +g27 +sg25268 +S'Pitcher' +p51556 +sg25270 +S'John Tarantino' +p51557 +sa(dp51558 +g25267 +g27 +sg25268 +S'Bowl' +p51559 +sg25270 +S'Isidore Steinberg' +p51560 +sa(dp51561 +g25267 +g27 +sg25268 +S'Miniature Cup (Blue)' +p51562 +sg25270 +S'Dorothy Posten' +p51563 +sa(dp51564 +g25267 +g27 +sg25268 +S'Tumbler' +p51565 +sg25270 +S'Gertrude Lemberg' +p51566 +sa(dp51567 +g25267 +g27 +sg25268 +S'Vase' +p51568 +sg25270 +S'Isidore Steinberg' +p51569 +sa(dp51570 +g25267 +g27 +sg25268 +S'Mug' +p51571 +sg25270 +S'Frank Gray' +p51572 +sa(dp51573 +g25267 +g27 +sg25268 +S'Toddy Glass' +p51574 +sg25270 +S'James McCreery' +p51575 +sa(dp51576 +g25267 +g27 +sg25268 +S'Wine Glass' +p51577 +sg25270 +S'Paul Ward' +p51578 +sa(dp51579 +g25267 +g27 +sg25268 +S'Tumbler' +p51580 +sg25270 +S'John Tarantino' +p51581 +sa(dp51582 +g25267 +g27 +sg25268 +S'Wine Glass' +p51583 +sg25270 +S'Janet Riza' +p51584 +sa(dp51585 +g25273 +S'(artist)' +p51586 +sg25267 +g27 +sg25275 +S'\n' +p51587 +sg25268 +S'Vertumne metamorphose en vieille ...' +p51588 +sg25270 +S'Artist Information (' +p51589 +sa(dp51590 +g25267 +g27 +sg25268 +S'Goblet' +p51591 +sg25270 +S'Giacinto Capelli' +p51592 +sa(dp51593 +g25267 +g27 +sg25268 +S'Pitcher' +p51594 +sg25270 +S'Beverly Chichester' +p51595 +sa(dp51596 +g25267 +g27 +sg25268 +S'Glass Pitcher' +p51597 +sg25270 +S'Van Silvay' +p51598 +sa(dp51599 +g25267 +g27 +sg25268 +S'Glass Water Pitcher' +p51600 +sg25270 +S'Paul Ward' +p51601 +sa(dp51602 +g25267 +g27 +sg25268 +S'Pitcher' +p51603 +sg25270 +S'John Dana' +p51604 +sa(dp51605 +g25267 +g27 +sg25268 +S'Creamer' +p51606 +sg25270 +S'Giacinto Capelli' +p51607 +sa(dp51608 +g25267 +g27 +sg25268 +S'Creamer' +p51609 +sg25270 +S'John Tarantino' +p51610 +sa(dp51611 +g25267 +g27 +sg25268 +S'Mug' +p51612 +sg25270 +S'John Dana' +p51613 +sa(dp51614 +g25267 +g27 +sg25268 +S'Goblet' +p51615 +sg25270 +S'Michael Fenga' +p51616 +sa(dp51617 +g25267 +g27 +sg25268 +S'Wine Glass' +p51618 +sg25270 +S'Agnes Karlin' +p51619 +sa(dp51620 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p51621 +sg25267 +g27 +sg25275 +S'1768' +p51622 +sg25268 +S'Mycile absous par un prodige singulier ...' +p51623 +sg25270 +S'Charles Monnet' +p51624 +sa(dp51625 +g25267 +g27 +sg25268 +S'Glass Compote' +p51626 +sg25270 +S'Beverly Chichester' +p51627 +sa(dp51628 +g25267 +g27 +sg25268 +S'Blown Glass' +p51629 +sg25270 +S'Giacinto Capelli' +p51630 +sa(dp51631 +g25267 +g27 +sg25268 +S'Green Glass Vase' +p51632 +sg25270 +S'Beverly Chichester' +p51633 +sa(dp51634 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p51635 +sg25270 +S'John Tarantino' +p51636 +sa(dp51637 +g25267 +g27 +sg25268 +S'Bowl' +p51638 +sg25270 +S'John Dana' +p51639 +sa(dp51640 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p51641 +sg25270 +S'John Dana' +p51642 +sa(dp51643 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p51644 +sg25270 +S'John Dana' +p51645 +sa(dp51646 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p51647 +sg25270 +S'Van Silvay' +p51648 +sa(dp51649 +g25267 +g27 +sg25268 +S'Dish' +p51650 +sg25270 +S'John Tarantino' +p51651 +sa(dp51652 +g25267 +g27 +sg25268 +S'Goblet' +p51653 +sg25270 +S'Giacinto Capelli' +p51654 +sa(dp51655 +g25273 +S'(artist after)' +p51656 +sg25267 +g27 +sg25275 +S'\n' +p51657 +sg25268 +S'Mycile absous par un prodige singulier ...' +p51658 +sg25270 +S'Artist Information (' +p51659 +sa(dp51660 +g25267 +g27 +sg25268 +S'Goblet' +p51661 +sg25270 +S'Frank Fumagalli' +p51662 +sa(dp51663 +g25267 +g27 +sg25268 +S'Wine Glass' +p51664 +sg25270 +S'Rolland Livingstone' +p51665 +sa(dp51666 +g25267 +g27 +sg25268 +S'Pitcher' +p51667 +sg25270 +S'Janet Riza' +p51668 +sa(dp51669 +g25267 +g27 +sg25268 +S'Bowl' +p51670 +sg25270 +S'John Dana' +p51671 +sa(dp51672 +g25267 +g27 +sg25268 +S'Pitcher' +p51673 +sg25270 +S'John Dana' +p51674 +sa(dp51675 +g25267 +g27 +sg25268 +S'Milk Bowl' +p51676 +sg25270 +S'John Dana' +p51677 +sa(dp51678 +g25267 +g27 +sg25268 +S'Sponge Cup' +p51679 +sg25270 +S'John Dana' +p51680 +sa(dp51681 +g25267 +g27 +sg25268 +S'Vase' +p51682 +sg25270 +S'John Dana' +p51683 +sa(dp51684 +g25267 +g27 +sg25268 +S'Jug' +p51685 +sg25270 +S'Yolande Delasser' +p51686 +sa(dp51687 +g25267 +g27 +sg25268 +S'Compote' +p51688 +sg25270 +S'John Tarantino' +p51689 +sa(dp51690 +g25273 +S', 1769' +p51691 +sg25267 +g27 +sg25275 +S'\n' +p51692 +sg25268 +S'Dans le tems que Rome etoit affligee de la Peste ...' +p51693 +sg25270 +S'Jean-Michel Moreau the Younger' +p51694 +sa(dp51695 +g25267 +g27 +sg25268 +S'Pitcher' +p51696 +sg25270 +S'Giacinto Capelli' +p51697 +sa(dp51698 +g25267 +g27 +sg25268 +S'Sauce Dish' +p51699 +sg25270 +S'Isidore Steinberg' +p51700 +sa(dp51701 +g25267 +g27 +sg25268 +S'Pitcher' +p51702 +sg25270 +S'Beverly Chichester' +p51703 +sa(dp51704 +g25267 +g27 +sg25268 +S'"Fish Bitters" Bottle' +p51705 +sg25270 +S'Loraine Makimson' +p51706 +sa(dp51707 +g25267 +g27 +sg25268 +S'Mug' +p51708 +sg25270 +S'John Dana' +p51709 +sa(dp51710 +g25267 +g27 +sg25268 +S'Compote' +p51711 +sg25270 +S'Anna Aloisi' +p51712 +sa(dp51713 +g25267 +g27 +sg25268 +S'Glass Jug' +p51714 +sg25270 +S'Paul Ward' +p51715 +sa(dp51716 +g25267 +g27 +sg25268 +S'Vase' +p51717 +sg25270 +S'Janet Riza' +p51718 +sa(dp51719 +g25267 +g27 +sg25268 +S'Whale Oil Lamp Filler' +p51720 +sg25270 +S'Harry King' +p51721 +sa(dp51722 +g25267 +g27 +sg25268 +S'Mug' +p51723 +sg25270 +S'Gertrude Lemberg' +p51724 +sa(dp51725 +g25273 +S'(artist after)' +p51726 +sg25267 +g27 +sg25275 +S'\n' +p51727 +sg25268 +S'Dans le tems que Rome \xc3\xa9toit afflig\xc3\xa9e de la Peste' +p51728 +sg25270 +S'Artist Information (' +p51729 +sa(dp51730 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p51731 +sg25270 +S'Isidore Steinberg' +p51732 +sa(dp51733 +g25267 +g27 +sg25268 +S'Flint Glass Bottles' +p51734 +sg25270 +S'Ella Josephine Sterling' +p51735 +sa(dp51736 +g25267 +g27 +sg25268 +S'Covered Flip Glass' +p51737 +sg25270 +S'Paul Ward' +p51738 +sa(dp51739 +g25267 +g27 +sg25268 +S'Vase' +p51740 +sg25270 +S'Ella Josephine Sterling' +p51741 +sa(dp51742 +g25267 +g27 +sg25268 +S'Salt Cellar' +p51743 +sg25270 +S'John Tarantino' +p51744 +sa(dp51745 +g25267 +g27 +sg25268 +S'Flip' +p51746 +sg25270 +S'Roberta Spicer' +p51747 +sa(dp51748 +g25267 +g27 +sg25268 +S'Cruet' +p51749 +sg25270 +S'Gertrude Lemberg' +p51750 +sa(dp51751 +g25267 +g27 +sg25268 +S'Flip Glass' +p51752 +sg25270 +S'Francis Law Durand' +p51753 +sa(dp51754 +g25267 +g27 +sg25268 +S'Stiegel Water Tumbler' +p51755 +sg25270 +S'Erwin Schwabe' +p51756 +sa(dp51757 +g25267 +g27 +sg25268 +S'Wine Glass' +p51758 +sg25270 +S'Gertrude Lemberg' +p51759 +sa(dp51760 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p51761 +sg25267 +g27 +sg25275 +S'1769' +p51762 +sg25268 +S'Cippus harangue le Peuple Romain ...' +p51763 +sg25270 +S'Charles Monnet' +p51764 +sa(dp51765 +g25267 +g27 +sg25268 +S'Sugar Bowl with Cover' +p51766 +sg25270 +S'Frank Fumagalli' +p51767 +sa(dp51768 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p51769 +sg25270 +S'John Tarantino' +p51770 +sa(dp51771 +g25267 +g27 +sg25268 +S'Creamer' +p51772 +sg25270 +S'Artist Information (' +p51773 +sa(dp51774 +g25267 +g27 +sg25268 +S'Cobalt Vase' +p51775 +sg25270 +S'Henry Moran' +p51776 +sa(dp51777 +g25267 +g27 +sg25268 +S'Creamer' +p51778 +sg25270 +S'Michael Trekur' +p51779 +sa(dp51780 +g25267 +g27 +sg25268 +S'Sugar Bowl with Cover' +p51781 +sg25270 +S'A. Zaidenberg' +p51782 +sa(dp51783 +g25267 +g27 +sg25268 +S'Salt Cellar' +p51784 +sg25270 +S'John Tarantino' +p51785 +sa(dp51786 +g25267 +g27 +sg25268 +S'Baptismal Bowl' +p51787 +sg25270 +S'Beverly Chichester' +p51788 +sa(dp51789 +g25267 +g27 +sg25268 +S'Salt Cellar' +p51790 +sg25270 +S'John Tarantino' +p51791 +sa(dp51792 +g25267 +g27 +sg25268 +S'Vase' +p51793 +sg25270 +S'Isidore Steinberg' +p51794 +sa(dp51795 +g25273 +S'(artist after)' +p51796 +sg25267 +g27 +sg25275 +S'\n' +p51797 +sg25268 +S'Cippus harangue le Peuple Romain ...' +p51798 +sg25270 +S'Artist Information (' +p51799 +sa(dp51800 +g25267 +g27 +sg25268 +S'Scent Bottle' +p51801 +sg25270 +S'Paul Ward' +p51802 +sa(dp51803 +g25267 +g27 +sg25268 +S'Water Pitcher' +p51804 +sg25270 +S'John Dana' +p51805 +sa(dp51806 +g25267 +g27 +sg25268 +S'Stiegel Perfume Vial' +p51807 +sg25270 +S'John Jordan' +p51808 +sa(dp51809 +g25267 +g27 +sg25268 +S'Vase' +p51810 +sg25270 +S'Isidore Steinberg' +p51811 +sa(dp51812 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p51813 +sg25270 +S'John Dana' +p51814 +sa(dp51815 +g25267 +g27 +sg25268 +S'Stiegel Vase' +p51816 +sg25270 +S'G.A. Spangenberg' +p51817 +sa(dp51818 +g25267 +g27 +sg25268 +S'Flask' +p51819 +sg25270 +S'John Dana' +p51820 +sa(dp51821 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p51822 +sg25270 +S'John Dana' +p51823 +sa(dp51824 +g25267 +g27 +sg25268 +S'Tumbler' +p51825 +sg25270 +S'John Dana' +p51826 +sa(dp51827 +g25267 +g27 +sg25268 +S'Flask (Swirl)' +p51828 +sg25270 +S'Raymond McGough' +p51829 +sa(dp51830 +g25273 +S', 1769' +p51831 +sg25267 +g27 +sg25275 +S'\n' +p51832 +sg25268 +S'Jules Cesar assassine dans le Senat est metamorphose en Comete ...' +p51833 +sg25270 +S'Jean-Michel Moreau the Younger' +p51834 +sa(dp51835 +g25267 +g27 +sg25268 +S'Flask (Pitkin Type)' +p51836 +sg25270 +S'Charles Caseau' +p51837 +sa(dp51838 +g25267 +g27 +sg25268 +S'Salt Cellar' +p51839 +sg25270 +S'Giacinto Capelli' +p51840 +sa(dp51841 +g25267 +g27 +sg25268 +S'Pitcher' +p51842 +sg25270 +S'John Tarantino' +p51843 +sa(dp51844 +g25267 +g27 +sg25268 +S'Wash Bowl and Pitcher' +p51845 +sg25270 +S'Charles Caseau' +p51846 +sa(dp51847 +g25267 +g27 +sg25268 +S'Perfume Bottle' +p51848 +sg25270 +S'William P. Shearwood' +p51849 +sa(dp51850 +g25267 +g27 +sg25268 +S'Cologne Bottle' +p51851 +sg25270 +S'Elizabeth Dimling' +p51852 +sa(dp51853 +g25267 +g27 +sg25268 +S'Toilet Bottle' +p51854 +sg25270 +S'Charles Moss' +p51855 +sa(dp51856 +g25267 +g27 +sg25268 +S'Barber Shop Bottle' +p51857 +sg25270 +S'Gertrude Lemberg' +p51858 +sa(dp51859 +g25267 +g27 +sg25268 +S'Bottle' +p51860 +sg25270 +S'Charles Moss' +p51861 +sa(dp51862 +g25267 +g27 +sg25268 +S'Vase' +p51863 +sg25270 +S'Madeline Arnold' +p51864 +sa(dp51865 +g25273 +S'(artist after)' +p51866 +sg25267 +g27 +sg25275 +S'\n' +p51867 +sg25268 +S'Jules Cesar assassin\xc3\xa9 dans le Senat est m\xc3\xa9tamorphos\xc3\xa9 en Com\xc3\xaate par les soins de Venus' +p51868 +sg25270 +S'Artist Information (' +p51869 +sa(dp51870 +g25267 +g27 +sg25268 +S'Shoe Blacking Bottle' +p51871 +sg25270 +S'Van Silvay' +p51872 +sa(dp51873 +g25267 +g27 +sg25268 +S'Jar' +p51874 +sg25270 +S'Isidore Steinberg' +p51875 +sa(dp51876 +g25267 +g27 +sg25268 +S'Shoe Blacking Bottle' +p51877 +sg25270 +S'Charles Garjian' +p51878 +sa(dp51879 +g25267 +g27 +sg25268 +S'Liquor Flask' +p51880 +sg25270 +S'Arthur G. Merkley' +p51881 +sa(dp51882 +g25267 +g27 +sg25268 +S'Green Bottle' +p51883 +sg25270 +S'Cora Parker' +p51884 +sa(dp51885 +g25267 +g27 +sg25268 +S'Carboy' +p51886 +sg25270 +S'Edward White' +p51887 +sa(dp51888 +g25267 +g27 +sg25268 +S'Blue-green Flask' +p51889 +sg25270 +S'V.L. Vance' +p51890 +sa(dp51891 +g25267 +g27 +sg25268 +S'Gemel Bottle' +p51892 +sg25270 +S'Alvin Shiren' +p51893 +sa(dp51894 +g25267 +g27 +sg25268 +S'Liquor Bottle' +p51895 +sg25270 +S'Nicholas Amantea' +p51896 +sa(dp51897 +g25267 +g27 +sg25268 +S'Gemel Bottle' +p51898 +sg25270 +S'John Dana' +p51899 +sa(dp51900 +g25273 +S'etching [trial proof]' +p51901 +sg25267 +g27 +sg25275 +S'1770' +p51902 +sg25268 +S'Fin des Estampes des Metamorphoses' +p51903 +sg25270 +S'Pierre-Philippe Choffard' +p51904 +sa(dp51905 +g25267 +g27 +sg25268 +S'Wine or Spirits Bottle' +p51906 +sg25270 +S'Anna Aloisi' +p51907 +sa(dp51908 +g25267 +g27 +sg25268 +S'Scent Bottle' +p51909 +sg25270 +S'Anna Aloisi' +p51910 +sa(dp51911 +g25267 +g27 +sg25268 +S'Bellows Bottle' +p51912 +sg25270 +S'Gertrude Lemberg' +p51913 +sa(dp51914 +g25267 +g27 +sg25268 +S'Bellows Bottle' +p51915 +sg25270 +S'Frank Fumagalli' +p51916 +sa(dp51917 +g25267 +g27 +sg25268 +S'Miniature Bellows Bottle' +p51918 +sg25270 +S'John Tarantino' +p51919 +sa(dp51920 +g25267 +g27 +sg25268 +S'Shell Shaped Flask' +p51921 +sg25270 +S'Raymond McGough' +p51922 +sa(dp51923 +g25267 +g27 +sg25268 +S'Oyster Shaped Flask' +p51924 +sg25270 +S'Francis Law Durand' +p51925 +sa(dp51926 +g25267 +g27 +sg25268 +S'Scent Bottle' +p51927 +sg25270 +S'Paul Ward' +p51928 +sa(dp51929 +g25267 +g27 +sg25268 +S'Scent Bottle' +p51930 +sg25270 +S'Paul Ward' +p51931 +sa(dp51932 +g25267 +g27 +sg25268 +S'Scent Bottle' +p51933 +sg25270 +S'Paul Ward' +p51934 +sa(dp51935 +g25273 +S'etching and engraving' +p51936 +sg25267 +g27 +sg25275 +S'1770' +p51937 +sg25268 +S'Fin des Estampes des Metamorphoses' +p51938 +sg25270 +S'Pierre-Philippe Choffard' +p51939 +sa(dp51940 +g25267 +g27 +sg25268 +S'Mouse' +p51941 +sg25270 +S'Giacinto Capelli' +p51942 +sa(dp51943 +g25267 +g27 +sg25268 +S'Toilet Bottle' +p51944 +sg25270 +S'Paul Ward' +p51945 +sa(dp51946 +g25267 +g27 +sg25268 +S'Flask' +p51947 +sg25270 +S'Eugene La Foret' +p51948 +sa(dp51949 +g25267 +g27 +sg25268 +S'Flask' +p51950 +sg25270 +S'Janet Riza' +p51951 +sa(dp51952 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p51953 +sg25270 +S'Beverly Chichester' +p51954 +sa(dp51955 +g25267 +g27 +sg25268 +S'Basket' +p51956 +sg25270 +S'Gertrude Lemberg' +p51957 +sa(dp51958 +g25267 +g27 +sg25268 +S'Vase' +p51959 +sg25270 +S'Lillian Causey' +p51960 +sa(dp51961 +g25267 +g27 +sg25268 +S'Corn Glass Vase' +p51962 +sg25270 +S'Robert Stewart' +p51963 +sa(dp51964 +g25267 +g27 +sg25268 +S'Candlestick' +p51965 +sg25270 +S'William Schmidt' +p51966 +sa(dp51967 +g25267 +g27 +sg25268 +S'Glass Nut Dishes' +p51968 +sg25270 +S'Beulah Bradleigh' +p51969 +sa(dp51970 +g25273 +S'pen and brown ink and watercolor with gray wash on laid paper' +p51971 +sg25267 +g27 +sg25275 +S'c. 1786/1789' +p51972 +sg25268 +S'Costume de Mlle. Saint-Val, Role de Zulma, dans Odmar et Zulma' +p51973 +sg25270 +S'Brion de la Tour' +p51974 +sa(dp51975 +g25267 +g27 +sg25268 +S'Glass' +p51976 +sg25270 +S'Janet Riza' +p51977 +sa(dp51978 +g25267 +g27 +sg25268 +S'Vase' +p51979 +sg25270 +S'Gertrude Lemberg' +p51980 +sa(dp51981 +g25267 +g27 +sg25268 +S'Coster House' +p51982 +sg25270 +S'Meyer Goldbaum' +p51983 +sa(dp51984 +g25267 +g27 +sg25268 +S'N.W. Stuyvesant Residence' +p51985 +sg25270 +S'Tabea Hosier' +p51986 +sa(dp51987 +g25267 +g27 +sg25268 +S'Ingraham Residence' +p51988 +sg25270 +S'William Merklin' +p51989 +sa(dp51990 +g25267 +g27 +sg25268 +S'Wood Residence' +p51991 +sg25270 +S'Tabea Hosier' +p51992 +sa(dp51993 +g25267 +g27 +sg25268 +S'Table' +p51994 +sg25270 +S'Leo Drozdoff' +p51995 +sa(dp51996 +g25267 +g27 +sg25268 +S'Italian Style Villa' +p51997 +sg25270 +S'Virginia Richards' +p51998 +sa(dp51999 +g25267 +g27 +sg25268 +S"Stuyvesant's Great House" +p52000 +sg25270 +S'George Stonehill' +p52001 +sa(dp52002 +g25267 +g27 +sg25268 +S"West India Company's Gardens" +p52003 +sg25270 +S'Helen Miller' +p52004 +sa(dp52005 +g25273 +S'bound volume with 44 drawings (for 1786-89 ed. of " Costumes et annales ...") in pen and ink and watercolor, plus 5 additional drawings' +p52006 +sg25267 +g27 +sg25275 +S'c. 1786/1789' +p52007 +sg25268 +S'Album of Drawings for Charnois\'s "Costumes et annales des grandes theatres de Paris"' +p52008 +sg25270 +S'Brion de la Tour' +p52009 +sa(dp52010 +g25267 +g27 +sg25268 +S'Pier Table' +p52011 +sg25270 +S'John Dieterich' +p52012 +sa(dp52013 +g25267 +g27 +sg25268 +S'Chair' +p52014 +sg25270 +S'Bessie Forman' +p52015 +sa(dp52016 +g25267 +g27 +sg25268 +S'Secretary' +p52017 +sg25270 +S'Henry Meyers' +p52018 +sa(dp52019 +g25267 +g27 +sg25268 +S'Pier Table' +p52020 +sg25270 +S'John Dieterich' +p52021 +sa(dp52022 +g25267 +g27 +sg25268 +S'Lap Desk' +p52023 +sg25270 +S'Edna C. Rex' +p52024 +sa(dp52025 +g25267 +g27 +sg25268 +S'Chair' +p52026 +sg25270 +S'Francis Law Durand' +p52027 +sa(dp52028 +g25267 +g27 +sg25268 +S'Chair' +p52029 +sg25270 +S'Artist Information (' +p52030 +sa(dp52031 +g25267 +g27 +sg25268 +S'Dutch Garden Plan' +p52032 +sg25270 +S'George Stonehill' +p52033 +sa(dp52034 +g25267 +g27 +sg25268 +S'Hooded Cradle' +p52035 +sg25270 +S'Columbus Simpson' +p52036 +sa(dp52037 +g25267 +g27 +sg25268 +S'Chest' +p52038 +sg25270 +S'Columbus Simpson' +p52039 +sa(dp52040 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p52041 +sg25267 +g27 +sg25275 +S'c. 1786/1789' +p52042 +sg25268 +S"Costume de Philippe, Role d'Alcindor dans Belle Arsene" +p52043 +sg25270 +S'Brion de la Tour' +p52044 +sa(dp52045 +g25267 +g27 +sg25268 +S'Writing Desk and Table' +p52046 +sg25270 +S'Henry Meyers' +p52047 +sa(dp52048 +g25267 +g27 +sg25268 +S'Chair' +p52049 +sg25270 +S'Gordon Sanborn' +p52050 +sa(dp52051 +g25267 +g27 +sg25268 +S'Sofa' +p52052 +sg25270 +S'Herman Bader' +p52053 +sa(dp52054 +g25267 +g27 +sg25268 +S'Sewing Table' +p52055 +sg25270 +S'Bessie Forman' +p52056 +sa(dp52057 +g25267 +g27 +sg25268 +S'Cabinet' +p52058 +sg25270 +S'Raymond E. Noble' +p52059 +sa(dp52060 +g25267 +g27 +sg25268 +S'Desk' +p52061 +sg25270 +S'Henry Meyers' +p52062 +sa(dp52063 +g25267 +g27 +sg25268 +S'Desk' +p52064 +sg25270 +S'Bernard Gussow' +p52065 +sa(dp52066 +g25267 +g27 +sg25268 +S'Table' +p52067 +sg25270 +S'Frederick Jackson' +p52068 +sa(dp52069 +g25267 +g27 +sg25268 +S'Cradle' +p52070 +sg25270 +S'Joseph Sudek' +p52071 +sa(dp52072 +g25267 +g27 +sg25268 +S'Cradle' +p52073 +sg25270 +S'Edward L. Loper' +p52074 +sa(dp52075 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p52076 +sg25267 +g27 +sg25275 +S'c. 1786/1789' +p52077 +sg25268 +S"Costume d'Arnolphe dans l'Ecole des Femmes" +p52078 +sg25270 +S'Brion de la Tour' +p52079 +sa(dp52080 +g25267 +g27 +sg25268 +S'Cabinet' +p52081 +sg25270 +S'Ferdinand Cartier' +p52082 +sa(dp52083 +g25267 +g27 +sg25268 +S'Chest' +p52084 +sg25270 +S'Nicholas Gorid' +p52085 +sa(dp52086 +g25267 +g27 +sg25268 +S'Shelf Clock' +p52087 +sg25270 +S'American 20th Century' +p52088 +sa(dp52089 +g25267 +g27 +sg25268 +S'Chest' +p52090 +sg25270 +S'Ada V. May' +p52091 +sa(dp52092 +g25267 +g27 +sg25268 +S'Chest' +p52093 +sg25270 +S'Columbus Simpson' +p52094 +sa(dp52095 +g25267 +g27 +sg25268 +S'Walnut Chair' +p52096 +sg25270 +S'Frederick Jackson' +p52097 +sa(dp52098 +g25267 +g27 +sg25268 +S'Chair' +p52099 +sg25270 +S'Harold Smith' +p52100 +sa(dp52101 +g25267 +g27 +sg25268 +S'Mug' +p52102 +sg25270 +S'Philip Johnson' +p52103 +sa(dp52104 +g25267 +g27 +sg25268 +S'Covered Mug' +p52105 +sg25270 +S'Philip Johnson' +p52106 +sa(dp52107 +g25267 +g27 +sg25268 +S'Amber Glass' +p52108 +sg25270 +S'Raymond Manupelli' +p52109 +sa(dp52110 +g25273 +S'pen and brown ink and watercolor with gray wash on blue laid paper' +p52111 +sg25267 +g27 +sg25275 +S'c. 1786/1789' +p52112 +sg25268 +S'Costume de Babet dans le Droit de Seigneur' +p52113 +sg25270 +S'Brion de la Tour' +p52114 +sa(dp52115 +g25267 +g27 +sg25268 +S'Flip Glass' +p52116 +sg25270 +S'Elizabeth Dimling' +p52117 +sa(dp52118 +g25267 +g27 +sg25268 +S'Glass' +p52119 +sg25270 +S'Nicholas Amantea' +p52120 +sa(dp52121 +g25267 +g27 +sg25268 +S'Wine Glass' +p52122 +sg25270 +S'Agnes Karlin' +p52123 +sa(dp52124 +g25267 +g27 +sg25268 +S'Glass' +p52125 +sg25270 +S'Lillian Causey' +p52126 +sa(dp52127 +g25267 +g27 +sg25268 +S'Drinking Glass' +p52128 +sg25270 +S'Hugh Clarke' +p52129 +sa(dp52130 +g25267 +g27 +sg25268 +S'Goblet' +p52131 +sg25270 +S'Philip Johnson' +p52132 +sa(dp52133 +g25267 +g27 +sg25268 +S'Liqueur Glass' +p52134 +sg25270 +S'Michael Trekur' +p52135 +sa(dp52136 +g25267 +g27 +sg25268 +S'Goblet' +p52137 +sg25270 +S'Janet Riza' +p52138 +sa(dp52139 +g25267 +g27 +sg25268 +S'Wine Glass' +p52140 +sg25270 +S'Albert Eyth' +p52141 +sa(dp52142 +g25267 +g27 +sg25268 +S'Glass' +p52143 +sg25270 +S'Maud M. Holme' +p52144 +sa(dp52145 +g25273 +S'pen and black ink and watercolor with gray wash on laid paper' +p52146 +sg25267 +g27 +sg25275 +S'probably 1786' +p52147 +sg25268 +S'Mlle. Raucourt, Role de Leontine dans Heraclius' +p52148 +sg25270 +S'Brion de la Tour' +p52149 +sa(dp52150 +g25267 +g27 +sg25268 +S'Glass' +p52151 +sg25270 +S'Gertrude Lemberg' +p52152 +sa(dp52153 +g25267 +g27 +sg25268 +S'Glass' +p52154 +sg25270 +S'American 20th Century' +p52155 +sa(dp52156 +g25267 +g27 +sg25268 +S'Spoon Holder' +p52157 +sg25270 +S'Carl Buergerniss' +p52158 +sa(dp52159 +g25267 +g27 +sg25268 +S'Glass' +p52160 +sg25270 +S'Lillian Causey' +p52161 +sa(dp52162 +g25267 +g27 +sg25268 +S'Pitcher' +p52163 +sg25270 +S'Anna Aloisi' +p52164 +sa(dp52165 +g25267 +g27 +sg25268 +S'Mug' +p52166 +sg25270 +S'Gertrude Lemberg' +p52167 +sa(dp52168 +g25267 +g27 +sg25268 +S'Vase' +p52169 +sg25270 +S'American 20th Century' +p52170 +sa(dp52171 +g25267 +g27 +sg25268 +S'Bottle' +p52172 +sg25270 +S'Janet Riza' +p52173 +sa(dp52174 +g25267 +g27 +sg25268 +S'Bowl' +p52175 +sg25270 +S'John Dana' +p52176 +sa(dp52177 +g25267 +g27 +sg25268 +S'Bottle' +p52178 +sg25270 +S'John Tarantino' +p52179 +sa(dp52180 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p52181 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52182 +sg25268 +S'Costume de M. St. Fal, Role de Patrocle dans Briseis' +p52183 +sg25270 +S'Brion de la Tour' +p52184 +sa(dp52185 +g25267 +g27 +sg25268 +S'Vase' +p52186 +sg25270 +S'John Tarantino' +p52187 +sa(dp52188 +g25267 +g27 +sg25268 +S'Mug' +p52189 +sg25270 +S'S. Brodsky' +p52190 +sa(dp52191 +g25267 +g27 +sg25268 +S'Bottle' +p52192 +sg25270 +S'S. Brodsky' +p52193 +sa(dp52194 +g25267 +g27 +sg25268 +S'Whiskey Glass' +p52195 +sg25270 +S'Gertrude Lemberg' +p52196 +sa(dp52197 +g25267 +g27 +sg25268 +S'Pitcher' +p52198 +sg25270 +S'Ella Josephine Sterling' +p52199 +sa(dp52200 +g25267 +g27 +sg25268 +S'Trumpet Glass Vase' +p52201 +sg25270 +S'Ella Josephine Sterling' +p52202 +sa(dp52203 +g25267 +g27 +sg25268 +S'Salt Cellar' +p52204 +sg25270 +S'American 20th Century' +p52205 +sa(dp52206 +g25267 +g27 +sg25268 +S'Sweet Meat Jar' +p52207 +sg25270 +S'Dorothy Posten' +p52208 +sa(dp52209 +g25267 +g27 +sg25268 +S'Mug' +p52210 +sg25270 +S'Lillian Causey' +p52211 +sa(dp52212 +g25267 +g27 +sg25268 +S'Mug' +p52213 +sg25270 +S'John Dana' +p52214 +sa(dp52215 +g25273 +S'pen and black ink and watercolor with brown wash on laid paper' +p52216 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52217 +sg25268 +S"Costume d'un hastat en marche portant sa lance" +p52218 +sg25270 +S'Brion de la Tour' +p52219 +sa(dp52220 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p52221 +sg25270 +S'Janet Riza' +p52222 +sa(dp52223 +g25267 +g27 +sg25268 +S'Vase' +p52224 +sg25270 +S'Janet Riza' +p52225 +sa(dp52226 +g25267 +g27 +sg25268 +S'Cobalt Vase' +p52227 +sg25270 +S'Dorothy Posten' +p52228 +sa(dp52229 +g25267 +g27 +sg25268 +S'Glass' +p52230 +sg25270 +S'John Dana' +p52231 +sa(dp52232 +g25267 +g27 +sg25268 +S'Ruby Bowl with Clear Foot' +p52233 +sg25270 +S'Marcus Moran' +p52234 +sa(dp52235 +g25267 +g27 +sg25268 +S'Vase' +p52236 +sg25270 +S'Gertrude Lemberg' +p52237 +sa(dp52238 +g25267 +g27 +sg25268 +S'Glass' +p52239 +sg25270 +S'John Dana' +p52240 +sa(dp52241 +g25267 +g27 +sg25268 +S'Mug' +p52242 +sg25270 +S'Gertrude Lemberg' +p52243 +sa(dp52244 +g25267 +g27 +sg25268 +S'Rummer' +p52245 +sg25270 +S'John Dana' +p52246 +sa(dp52247 +g25267 +g27 +sg25268 +S'Covered Flip' +p52248 +sg25270 +S'Gertrude Lemberg' +p52249 +sa(dp52250 +g25268 +S'The Parable of Lazarus and the Rich Man' +p52251 +sg25270 +S'Artist Information (' +p52252 +sg25273 +S'Italian, 1589 - 1623' +p52253 +sg25275 +S'(related artist)' +p52254 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000606.jpg' +p52255 +sg25267 +g27 +sa(dp52256 +g25273 +S'pen and black ink and watercolor with gray wash on laid paper' +p52257 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52258 +sg25268 +S"Costume de M. de Blainville ou l'optimiste dans la Comedie de ce nom" +p52259 +sg25270 +S'Brion de la Tour' +p52260 +sa(dp52261 +g25267 +g27 +sg25268 +S'Vase' +p52262 +sg25270 +S'John Dana' +p52263 +sa(dp52264 +g25267 +g27 +sg25268 +S'Liquor Bottle' +p52265 +sg25270 +S'Gertrude Lemberg' +p52266 +sa(dp52267 +g25267 +g27 +sg25268 +S'Vase' +p52268 +sg25270 +S'Frank M. Keane' +p52269 +sa(dp52270 +g25267 +g27 +sg25268 +S'Decanter' +p52271 +sg25270 +S'John Dana' +p52272 +sa(dp52273 +g25267 +g27 +sg25268 +S'Bottle' +p52274 +sg25270 +S'Francis Law Durand' +p52275 +sa(dp52276 +g25267 +g27 +sg25268 +S'Bottle' +p52277 +sg25270 +S'Jessica Price' +p52278 +sa(dp52279 +g25267 +g27 +sg25268 +S'Whiskey Flask' +p52280 +sg25270 +S'G.A. Spangenberg' +p52281 +sa(dp52282 +g25267 +g27 +sg25268 +S'Salt Cup' +p52283 +sg25270 +S'Henry Meyers' +p52284 +sa(dp52285 +g25267 +g27 +sg25268 +S'Inkwell' +p52286 +sg25270 +S'Charles Garjian' +p52287 +sa(dp52288 +g25267 +g27 +sg25268 +S'Bottle' +p52289 +sg25270 +S'Frank Fumagalli' +p52290 +sa(dp52291 +g25273 +S'pen and black ink and watercolor with gray wash on laid paper' +p52292 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52293 +sg25268 +S'Costume de M. St. Fal, Role de Zeangir dans Mustapha' +p52294 +sg25270 +S'Brion de la Tour' +p52295 +sa(dp52296 +g25267 +g27 +sg25268 +S'Pitcher' +p52297 +sg25270 +S'Janet Riza' +p52298 +sa(dp52299 +g25267 +g27 +sg25268 +S'Pitcher' +p52300 +sg25270 +S'Janet Riza' +p52301 +sa(dp52302 +g25267 +g27 +sg25268 +S'Pitcher' +p52303 +sg25270 +S'Gertrude Lemberg' +p52304 +sa(dp52305 +g25267 +g27 +sg25268 +S'Cruet' +p52306 +sg25270 +S'Dorothy Posten' +p52307 +sa(dp52308 +g25267 +g27 +sg25268 +S'Paperweight' +p52309 +sg25270 +S'Gertrude Lemberg' +p52310 +sa(dp52311 +g25267 +g27 +sg25268 +S'Paper Weight' +p52312 +sg25270 +S'Robert Stewart' +p52313 +sa(dp52314 +g25267 +g27 +sg25268 +S'Witch Ball' +p52315 +sg25270 +S'Paul Ward' +p52316 +sa(dp52317 +g25267 +g27 +sg25268 +S'Small Jar' +p52318 +sg25270 +S'Kay Whiteley' +p52319 +sa(dp52320 +g25267 +g27 +sg25268 +S'Compote' +p52321 +sg25270 +S'Anna Aloisi' +p52322 +sa(dp52323 +g25267 +g27 +sg25268 +S'Jumel Mansion' +p52324 +sg25270 +S'Virginia Richards' +p52325 +sa(dp52326 +g25273 +S'pen and black ink and watercolor with gray wash on laid paper' +p52327 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52328 +sg25268 +S"Costume du Mme. Dugazon Role d'Azemia" +p52329 +sg25270 +S'Brion de la Tour' +p52330 +sa(dp52331 +g25267 +g27 +sg25268 +S'Parterre - J. W. Wood' +p52332 +sg25270 +S'Artist Information (' +p52333 +sa(dp52334 +g25267 +g27 +sg25268 +S'Thomas C. Veitch Estate' +p52335 +sg25270 +S'Artist Information (' +p52336 +sa(dp52337 +g25267 +g27 +sg25268 +S'Isaace P. Martin Garden' +p52338 +sg25270 +S'Artist Information (' +p52339 +sa(dp52340 +g25267 +g27 +sg25268 +S'Jumel Estate' +p52341 +sg25270 +S'Virginia Richards' +p52342 +sa(dp52343 +g25267 +g27 +sg25268 +S"Smith's Folly - Mt. Vernon" +p52344 +sg25270 +S'Tabea Hosier' +p52345 +sa(dp52346 +g25267 +g27 +sg25268 +S'Whitehall Estate and Garden' +p52347 +sg25270 +S'Leo Drozdoff' +p52348 +sa(dp52349 +g25267 +g27 +sg25268 +S'Parmentier Grounds' +p52350 +sg25270 +S'Virginia Richards' +p52351 +sa(dp52352 +g25267 +g27 +sg25268 +S'Liquor Bottle' +p52353 +sg25270 +S'Adele Brooks' +p52354 +sa(dp52355 +g25267 +g27 +sg25268 +S'Indian Bottle (Medicine Bottle)' +p52356 +sg25270 +S'Loraine Makimson' +p52357 +sa(dp52358 +g25267 +g27 +sg25268 +S'Wine Glass' +p52359 +sg25270 +S'Palmyra Pimentel' +p52360 +sa(dp52361 +g25273 +S'pen and black ink and watercolor with gray wash on laid paper' +p52362 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52363 +sg25268 +S'Costume du Mme. Dugazon, Role de Sophie de Ville-Hardouin dans la Comedie de Sargines' +p52364 +sg25270 +S'Brion de la Tour' +p52365 +sa(dp52366 +g25267 +g27 +sg25268 +S'Ale Schooner' +p52367 +sg25270 +S'Alice Cosgrove' +p52368 +sa(dp52369 +g25267 +g27 +sg25268 +S'Wine Glass' +p52370 +sg25270 +S'Palmyra Pimentel' +p52371 +sa(dp52372 +g25267 +g27 +sg25268 +S'Goblet' +p52373 +sg25270 +S'John Dana' +p52374 +sa(dp52375 +g25267 +g27 +sg25268 +S'Cordial Glass' +p52376 +sg25270 +S'John Tarantino' +p52377 +sa(dp52378 +g25267 +g27 +sg25268 +S'Wine Glass' +p52379 +sg25270 +S'Frank Fumagalli' +p52380 +sa(dp52381 +g25267 +g27 +sg25268 +S'Wine Glass' +p52382 +sg25270 +S'John Dana' +p52383 +sa(dp52384 +g25267 +g27 +sg25268 +S'Cordial Glass' +p52385 +sg25270 +S'Frank Fumagalli' +p52386 +sa(dp52387 +g25267 +g27 +sg25268 +S'Wine Glass' +p52388 +sg25270 +S'May Hays' +p52389 +sa(dp52390 +g25267 +g27 +sg25268 +S'Wine Glass' +p52391 +sg25270 +S'Michael Fenga' +p52392 +sa(dp52393 +g25267 +g27 +sg25268 +S'Cruet' +p52394 +sg25270 +S'Marie Mitchell' +p52395 +sa(dp52396 +g25273 +S'pen and black ink and watercolor with gray wash on laid paper' +p52397 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52398 +sg25268 +S'Costume de M. Dugazon dans le Menteur' +p52399 +sg25270 +S'Brion de la Tour' +p52400 +sa(dp52401 +g25267 +g27 +sg25268 +S'Cruet' +p52402 +sg25270 +S'Charles Caseau' +p52403 +sa(dp52404 +g25267 +g27 +sg25268 +S'Candlestick' +p52405 +sg25270 +S'John Dana' +p52406 +sa(dp52407 +g25267 +g27 +sg25268 +S'Candlestick' +p52408 +sg25270 +S'Janet Riza' +p52409 +sa(dp52410 +g25267 +g27 +sg25268 +S'Cruet' +p52411 +sg25270 +S'John Tarantino' +p52412 +sa(dp52413 +g25267 +g27 +sg25268 +S'Clear Glass Cruet' +p52414 +sg25270 +S'V.L. Vance' +p52415 +sa(dp52416 +g25267 +g27 +sg25268 +S'Candlestick' +p52417 +sg25270 +S'Margaret Stottlemeyer' +p52418 +sa(dp52419 +g25267 +g27 +sg25268 +S'Vinegar Cruet' +p52420 +sg25270 +S'Ralph Atkinson' +p52421 +sa(dp52422 +g25267 +g27 +sg25268 +S'Compote' +p52423 +sg25270 +S'John Dana' +p52424 +sa(dp52425 +g25267 +g27 +sg25268 +S'Covered Compote' +p52426 +sg25270 +S'John Dana' +p52427 +sa(dp52428 +g25267 +g27 +sg25268 +S'Compote' +p52429 +sg25270 +S'John Tarantino' +p52430 +sa(dp52431 +g25273 +S'pen and black ink and watercolor with gray wash on light blue laid paper' +p52432 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52433 +sg25268 +S'Mlle. Renaud Cadette Role et Costume de Venus dans les Trois Deesses Rivales ou le double judgement de Paris' +p52434 +sg25270 +S'Brion de la Tour' +p52435 +sa(dp52436 +g25267 +g27 +sg25268 +S'Tieback' +p52437 +sg25270 +S'Helen Bronson' +p52438 +sa(dp52439 +g25267 +g27 +sg25268 +S'Hurricane Shade' +p52440 +sg25270 +S'John Dana' +p52441 +sa(dp52442 +g25267 +g27 +sg25268 +S'Witch Ball' +p52443 +sg25270 +S'John Dana' +p52444 +sa(dp52445 +g25267 +g27 +sg25268 +S'Flower (Lily)' +p52446 +sg25270 +S'Grace Halpin' +p52447 +sa(dp52448 +g25267 +g27 +sg25268 +S'Witch Ball' +p52449 +sg25270 +S'Paul Ward' +p52450 +sa(dp52451 +g25267 +g27 +sg25268 +S'Glass Button Hook' +p52452 +sg25270 +S'Francis Law Durand' +p52453 +sa(dp52454 +g25267 +g27 +sg25268 +S'Button Hook' +p52455 +sg25270 +S'Frank Fumagalli' +p52456 +sa(dp52457 +g25267 +g27 +sg25268 +S'Jersey Pipe' +p52458 +sg25270 +S'Francis Law Durand' +p52459 +sa(dp52460 +g25267 +g27 +sg25268 +S'Nursing Bottle' +p52461 +sg25270 +S'Gordon Saltar' +p52462 +sa(dp52463 +g25267 +g27 +sg25268 +S'Glass Medicine Vial' +p52464 +sg25270 +S'American 20th Century' +p52465 +sa(dp52466 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p52467 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52468 +sg25268 +S"Costume de M. Lays, Role de Taddee dans l'opera de Theodore a Venise" +p52469 +sg25270 +S'Brion de la Tour' +p52470 +sa(dp52471 +g25267 +g27 +sg25268 +S'Medicine Bottle' +p52472 +sg25270 +S'John Dana' +p52473 +sa(dp52474 +g25267 +g27 +sg25268 +S'Medicine Bottle' +p52475 +sg25270 +S'Frank Budash' +p52476 +sa(dp52477 +g25267 +g27 +sg25268 +S'Vase' +p52478 +sg25270 +S'Isidore Steinberg' +p52479 +sa(dp52480 +g25267 +g27 +sg25268 +S'Glass Nursing Bottle' +p52481 +sg25270 +S'Artist Information (' +p52482 +sa(dp52483 +g25267 +g27 +sg25268 +S'Medicine Bottle' +p52484 +sg25270 +S'Donald Streeter' +p52485 +sa(dp52486 +g25267 +g27 +sg25268 +S'American "Bohemian" Mug' +p52487 +sg25270 +S'Frank M. Keane' +p52488 +sa(dp52489 +g25267 +g27 +sg25268 +S'Ornamental Goblet' +p52490 +sg25270 +S'Frank Fumagalli' +p52491 +sa(dp52492 +g25267 +g27 +sg25268 +S'Ruby Case-Glass Goblet' +p52493 +sg25270 +S'Robert Stewart' +p52494 +sa(dp52495 +g25267 +g27 +sg25268 +S'Ruby Vase' +p52496 +sg25270 +S'Edward White' +p52497 +sa(dp52498 +g25267 +g27 +sg25268 +S'Ruby Pitcher' +p52499 +sg25270 +S'Ralph Atkinson' +p52500 +sa(dp52501 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p52502 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52503 +sg25268 +S"Mlle. Maillard, dans Tarare, Role d'Astasie" +p52504 +sg25270 +S'Brion de la Tour' +p52505 +sa(dp52506 +g25267 +g27 +sg25268 +S'Vase' +p52507 +sg25270 +S'John Tarantino' +p52508 +sa(dp52509 +g25267 +g27 +sg25268 +S'Decanter' +p52510 +sg25270 +S'Frank M. Keane' +p52511 +sa(dp52512 +g25267 +g27 +sg25268 +S'Vinegar and Oil Bottle' +p52513 +sg25270 +S'Chris Makrenos' +p52514 +sa(dp52515 +g25267 +g27 +sg25268 +S'Glass Perfume Bottle' +p52516 +sg25270 +S'Isabelle De Strange' +p52517 +sa(dp52518 +g25267 +g27 +sg25268 +S'Decanter and Stopper' +p52519 +sg25270 +S'Edward White' +p52520 +sa(dp52521 +g25267 +g27 +sg25268 +S'Carafe' +p52522 +sg25270 +S'Janet Riza' +p52523 +sa(dp52524 +g25267 +g27 +sg25268 +S"Barber's Bottle" +p52525 +sg25270 +S'Edward White' +p52526 +sa(dp52527 +g25267 +g27 +sg25268 +S'Vinegar Cruet' +p52528 +sg25270 +S'Ralph Atkinson' +p52529 +sa(dp52530 +g25267 +g27 +sg25268 +S'Bottle' +p52531 +sg25270 +S'J. Howard Iams' +p52532 +sa(dp52533 +g25267 +g27 +sg25268 +S'Vinegar Cruet' +p52534 +sg25270 +S'Robert Stewart' +p52535 +sa(dp52536 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p52537 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52538 +sg25268 +S'Costume de Mlle. Contat. Role de Rosalie dans les Caprices' +p52539 +sg25270 +S'Brion de la Tour' +p52540 +sa(dp52541 +g25267 +g27 +sg25268 +S'Vase' +p52542 +sg25270 +S'John Dana' +p52543 +sa(dp52544 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p52545 +sg25270 +S'John Dana' +p52546 +sa(dp52547 +g25267 +g27 +sg25268 +S'Celery Vase' +p52548 +sg25270 +S'Palmyra Pimentel' +p52549 +sa(dp52550 +g25267 +g27 +sg25268 +S'Creamer' +p52551 +sg25270 +S'Frank Fumagalli' +p52552 +sa(dp52553 +g25267 +g27 +sg25268 +S'Goblet' +p52554 +sg25270 +S'Charles Garjian' +p52555 +sa(dp52556 +g25267 +g27 +sg25268 +S'Creamer' +p52557 +sg25270 +S'Frank Fumagalli' +p52558 +sa(dp52559 +g25267 +g27 +sg25268 +S'Goblet' +p52560 +sg25270 +S'John Dana' +p52561 +sa(dp52562 +g25267 +g27 +sg25268 +S'Goblet' +p52563 +sg25270 +S'John Dana' +p52564 +sa(dp52565 +g25267 +g27 +sg25268 +S'Paper Weight' +p52566 +sg25270 +S'Joseph Mitry' +p52567 +sa(dp52568 +g25267 +g27 +sg25268 +S'Tumbler' +p52569 +sg25270 +S'Gertrude Lemberg' +p52570 +sa(dp52571 +g25273 +S'pen and black ink with gray wash over graphite on laid paper' +p52572 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52573 +sg25268 +S'Costume de M. de la Rive dans le Role de Tancrede' +p52574 +sg25270 +S'Brion de la Tour' +p52575 +sa(dp52576 +g25267 +g27 +sg25268 +S'Paper Weight' +p52577 +sg25270 +S'Vincent Murphy' +p52578 +sa(dp52579 +g25267 +g27 +sg25268 +S'Paper Weight' +p52580 +sg25270 +S'Frank Fumagalli' +p52581 +sa(dp52582 +g25267 +g27 +sg25268 +S'Jelly Tumbler' +p52583 +sg25270 +S'Van Silvay' +p52584 +sa(dp52585 +g25267 +g27 +sg25268 +S'Whiskey Glasses (Cobalt)' +p52586 +sg25270 +S'Edward White' +p52587 +sa(dp52588 +g25267 +g27 +sg25268 +S'Tumbler' +p52589 +sg25270 +S'Ralph Atkinson' +p52590 +sa(dp52591 +g25267 +g27 +sg25268 +S'Shallow Dish' +p52592 +sg25270 +S'John Tarantino' +p52593 +sa(dp52594 +g25267 +g27 +sg25268 +S'Paper Weight' +p52595 +sg25270 +S'Gertrude Lemberg' +p52596 +sa(dp52597 +g25267 +g27 +sg25268 +S'Glass Plate' +p52598 +sg25270 +S'Wellington Blewett' +p52599 +sa(dp52600 +g25267 +g27 +sg25268 +S'Blown Decanter' +p52601 +sg25270 +S'Robert Stewart' +p52602 +sa(dp52603 +g25267 +g27 +sg25268 +S'Whiskey Glass' +p52604 +sg25270 +S'Emma Wilson' +p52605 +sa(dp52606 +g25268 +S'Madonna and Child' +p52607 +sg25270 +S'Sandro Botticelli' +p52608 +sg25273 +S'tempera on panel' +p52609 +sg25275 +S'c. 1470' +p52610 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000076e.jpg' +p52611 +sg25267 +g27 +sa(dp52612 +g25273 +S'pen and black ink and watercolor with gray wash on laid paper' +p52613 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52614 +sg25268 +S'Costume de Mme. St. Aubin, dans Lucette et Lucase' +p52615 +sg25270 +S'Brion de la Tour' +p52616 +sa(dp52617 +g25267 +g27 +sg25268 +S'Toddy Glass' +p52618 +sg25270 +S'Minnetta Good' +p52619 +sa(dp52620 +g25267 +g27 +sg25268 +S'Bottle' +p52621 +sg25270 +S'Anna Aloisi' +p52622 +sa(dp52623 +g25267 +g27 +sg25268 +S'Small Blue Milk Pitcher' +p52624 +sg25270 +S'Chris Makrenos' +p52625 +sa(dp52626 +g25267 +g27 +sg25268 +S'Glass Sauce Dish' +p52627 +sg25270 +S'V.L. Vance' +p52628 +sa(dp52629 +g25267 +g27 +sg25268 +S'Small Glass Bowl' +p52630 +sg25270 +S'V.L. Vance' +p52631 +sa(dp52632 +g25267 +g27 +sg25268 +S'Glass Bowl' +p52633 +sg25270 +S'V.L. Vance' +p52634 +sa(dp52635 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p52636 +sg25270 +S'Wilford H. Shurtliff' +p52637 +sa(dp52638 +g25267 +g27 +sg25268 +S'Bottle' +p52639 +sg25270 +S'Ralph Atkinson' +p52640 +sa(dp52641 +g25267 +g27 +sg25268 +S'Bottle' +p52642 +sg25270 +S'Alfred Walbeck' +p52643 +sa(dp52644 +g25267 +g27 +sg25268 +S'Powder Horn' +p52645 +sg25270 +S'Edward White' +p52646 +sa(dp52647 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p52648 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52649 +sg25268 +S"Costume de M. St. Prix, Role d'Oreste, dans Andromaque" +p52650 +sg25270 +S'Brion de la Tour' +p52651 +sa(dp52652 +g25267 +g27 +sg25268 +S'Rolling Pin (Glass)' +p52653 +sg25270 +S'Donald Williams' +p52654 +sa(dp52655 +g25267 +g27 +sg25268 +S'Bellows Bottle' +p52656 +sg25270 +S'John Tarantino' +p52657 +sa(dp52658 +g25267 +g27 +sg25268 +S'Sugar Bowl with Cover' +p52659 +sg25270 +S'John Tarantino' +p52660 +sa(dp52661 +g25267 +g27 +sg25268 +S'Bottle' +p52662 +sg25270 +S'John Dana' +p52663 +sa(dp52664 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p52665 +sg25270 +S'John Tarantino' +p52666 +sa(dp52667 +g25267 +g27 +sg25268 +S'Pitcher' +p52668 +sg25270 +S'Michael Trekur' +p52669 +sa(dp52670 +g25267 +g27 +sg25268 +S'Vase (Green with Red Swirl)' +p52671 +sg25270 +S'Elizabeth Dimling' +p52672 +sa(dp52673 +g25267 +g27 +sg25268 +S'Vase (Blue and White)' +p52674 +sg25270 +S'Albert Eyth' +p52675 +sa(dp52676 +g25267 +g27 +sg25268 +S'Pitcher' +p52677 +sg25270 +S'Isidore Steinberg' +p52678 +sa(dp52679 +g25267 +g27 +sg25268 +S'Tumbler' +p52680 +sg25270 +S'Janet Riza' +p52681 +sa(dp52682 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p52683 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52684 +sg25268 +S"Costume de Mlle. Fleury, Role d'Ophelie dans Hamlet" +p52685 +sg25270 +S'Brion de la Tour' +p52686 +sa(dp52687 +g25267 +g27 +sg25268 +S'Glass Vase' +p52688 +sg25270 +S'Robert Schuerer' +p52689 +sa(dp52690 +g25267 +g27 +sg25268 +S'Ornamental Small Basket' +p52691 +sg25270 +S'John Tarantino' +p52692 +sa(dp52693 +g25267 +g27 +sg25268 +S'Vase' +p52694 +sg25270 +S'Michael Trekur' +p52695 +sa(dp52696 +g25267 +g27 +sg25268 +S'Ruby Vase' +p52697 +sg25270 +S'Ralph Atkinson' +p52698 +sa(dp52699 +g25267 +g27 +sg25268 +S'Ornamental Ruby Vase' +p52700 +sg25270 +S'Robert Stewart' +p52701 +sa(dp52702 +g25267 +g27 +sg25268 +S'Vase (Red Opaque Glass)' +p52703 +sg25270 +S'Robert Stewart' +p52704 +sa(dp52705 +g25267 +g27 +sg25268 +S'Tumbler (Ruby)' +p52706 +sg25270 +S'Edward White' +p52707 +sa(dp52708 +g25267 +g27 +sg25268 +S'Vase' +p52709 +sg25270 +S'John Dana' +p52710 +sa(dp52711 +g25267 +g27 +sg25268 +S'Pitcher' +p52712 +sg25270 +S'Ralph Atkinson' +p52713 +sa(dp52714 +g25267 +g27 +sg25268 +S'Vase (Ruby Glass)' +p52715 +sg25270 +S'Ralph Atkinson' +p52716 +sa(dp52717 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p52718 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52719 +sg25268 +S'Costume de M. de la Rive, Role de Pigmalion' +p52720 +sg25270 +S'Brion de la Tour' +p52721 +sa(dp52722 +g25267 +g27 +sg25268 +S'Ruby Pitcher' +p52723 +sg25270 +S'Ralph Atkinson' +p52724 +sa(dp52725 +g25267 +g27 +sg25268 +S'Pitcher (Amberina)' +p52726 +sg25270 +S'George Yanosko' +p52727 +sa(dp52728 +g25267 +g27 +sg25268 +S'Pitcher (Amberina)' +p52729 +sg25270 +S'Joseph Mitry' +p52730 +sa(dp52731 +g25267 +g27 +sg25268 +S'Compote' +p52732 +sg25270 +S'Edith Towner' +p52733 +sa(dp52734 +g25267 +g27 +sg25268 +S'Pitcher' +p52735 +sg25270 +S'Robert Stewart' +p52736 +sa(dp52737 +g25267 +g27 +sg25268 +S'Vase' +p52738 +sg25270 +S'Robert Stewart' +p52739 +sa(dp52740 +g25267 +g27 +sg25268 +S'Vase (Amberina)' +p52741 +sg25270 +S'Robert Stewart' +p52742 +sa(dp52743 +g25267 +g27 +sg25268 +S'Glass' +p52744 +sg25270 +S'Lillian Causey' +p52745 +sa(dp52746 +g25267 +g27 +sg25268 +S'Glass' +p52747 +sg25270 +S'Lillian Causey' +p52748 +sa(dp52749 +g25267 +g27 +sg25268 +S'Vase' +p52750 +sg25270 +S'Grace Halpin' +p52751 +sa(dp52752 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p52753 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52754 +sg25268 +S"Mr. Granger, Role et Costume de Vauglenne, dans l'Habitant de la Guadeloupe" +p52755 +sg25270 +S'Brion de la Tour' +p52756 +sa(dp52757 +g25267 +g27 +sg25268 +S'Salt Cellar' +p52758 +sg25270 +S'Grace Halpin' +p52759 +sa(dp52760 +g25267 +g27 +sg25268 +S'Small Vase' +p52761 +sg25270 +S'Paul Ward' +p52762 +sa(dp52763 +g25267 +g27 +sg25268 +S'Small Vase' +p52764 +sg25270 +S'Paul Ward' +p52765 +sa(dp52766 +g25267 +g27 +sg25268 +S'Covered Compote' +p52767 +sg25270 +S'Beverly Chichester' +p52768 +sa(dp52769 +g25267 +g27 +sg25268 +S'Mouse' +p52770 +sg25270 +S'Giacinto Capelli' +p52771 +sa(dp52772 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p52773 +sg25270 +S'Robert Stewart' +p52774 +sa(dp52775 +g25267 +g27 +sg25268 +S'Jug' +p52776 +sg25270 +S'Roberta Elvis' +p52777 +sa(dp52778 +g25267 +g27 +sg25268 +S'Covered Sugar Bowl' +p52779 +sg25270 +S'Beverly Chichester' +p52780 +sa(dp52781 +g25267 +g27 +sg25268 +S'Mirrored Glass Vase' +p52782 +sg25270 +S'Edward White' +p52783 +sa(dp52784 +g25267 +g27 +sg25268 +S'Water Pitcher' +p52785 +sg25270 +S'John Tarantino' +p52786 +sa(dp52787 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p52788 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52789 +sg25268 +S'Costume de M. de la Rive dans le Role de Tancrede' +p52790 +sg25270 +S'Brion de la Tour' +p52791 +sa(dp52792 +g25267 +g27 +sg25268 +S'Green Vase' +p52793 +sg25270 +S'Edward White' +p52794 +sa(dp52795 +g25267 +g27 +sg25268 +S'Sherry Wine Glass' +p52796 +sg25270 +S'John Dana' +p52797 +sa(dp52798 +g25267 +g27 +sg25268 +S'Glass Pitcher' +p52799 +sg25270 +S'Beverly Chichester' +p52800 +sa(dp52801 +g25267 +g27 +sg25268 +S'Bowl' +p52802 +sg25270 +S'Giacinto Capelli' +p52803 +sa(dp52804 +g25267 +g27 +sg25268 +S'Bar Bottle' +p52805 +sg25270 +S'Isidore Steinberg' +p52806 +sa(dp52807 +g25267 +g27 +sg25268 +S'Amber Pan' +p52808 +sg25270 +S'Chris Makrenos' +p52809 +sa(dp52810 +g25267 +g27 +sg25268 +S'Dish with Foot' +p52811 +sg25270 +S'Beverly Chichester' +p52812 +sa(dp52813 +g25267 +g27 +sg25268 +S'Whiskey Flask' +p52814 +sg25270 +S'Fritz Boehmer' +p52815 +sa(dp52816 +g25267 +g27 +sg25268 +S'Bottle' +p52817 +sg25270 +S'Janet Riza' +p52818 +sa(dp52819 +g25267 +g27 +sg25268 +S'Covered Compote' +p52820 +sg25270 +S'Beverly Chichester' +p52821 +sa(dp52822 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p52823 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52824 +sg25268 +S"Costume de M. Cheron Role d'Oedipe a Colone" +p52825 +sg25270 +S'Brion de la Tour' +p52826 +sa(dp52827 +g25267 +g27 +sg25268 +S'Dish' +p52828 +sg25270 +S'V.L. Vance' +p52829 +sa(dp52830 +g25267 +g27 +sg25268 +S'Milk Bowl' +p52831 +sg25270 +S'Frank Fumagalli' +p52832 +sa(dp52833 +g25267 +g27 +sg25268 +S'Glass Pitcher' +p52834 +sg25270 +S'V.L. Vance' +p52835 +sa(dp52836 +g25267 +g27 +sg25268 +S'Amethyst Glass Bowl' +p52837 +sg25270 +S'V.L. Vance' +p52838 +sa(dp52839 +g25267 +g27 +sg25268 +S'Flask' +p52840 +sg25270 +S'Charles Caseau' +p52841 +sa(dp52842 +g25267 +g27 +sg25268 +S'Flat Glass Bowl' +p52843 +sg25270 +S'V.L. Vance' +p52844 +sa(dp52845 +g25267 +g27 +sg25268 +S'Covered Dish' +p52846 +sg25270 +S'Roberta Elvis' +p52847 +sa(dp52848 +g25267 +g27 +sg25268 +S'Butter Dish (Hen)' +p52849 +sg25270 +S'Edward Bashaw' +p52850 +sa(dp52851 +g25267 +g27 +sg25268 +S'Covered Dish (Hen)' +p52852 +sg25270 +S'Sydney Roberts' +p52853 +sa(dp52854 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p52855 +sg25270 +S'Robert Stewart' +p52856 +sa(dp52857 +g25273 +S'pen and black ink and watercolor on light blue laid paper' +p52858 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52859 +sg25268 +S'Costume de Mr. Trial, Role du Pere la Joie dans les Vendangeurs' +p52860 +sg25270 +S'Brion de la Tour' +p52861 +sa(dp52862 +g25267 +g27 +sg25268 +S'Mug' +p52863 +sg25270 +S'American 20th Century' +p52864 +sa(dp52865 +g25267 +g27 +sg25268 +S'Pitcher' +p52866 +sg25270 +S'Roberta Spicer' +p52867 +sa(dp52868 +g25267 +g27 +sg25268 +S'Candlestick' +p52869 +sg25270 +S'Beulah Bradleigh' +p52870 +sa(dp52871 +g25267 +g27 +sg25268 +S'Compote' +p52872 +sg25270 +S'Ralph Atkinson' +p52873 +sa(dp52874 +g25267 +g27 +sg25268 +S'Salt Cellar' +p52875 +sg25270 +S'Janet Riza' +p52876 +sa(dp52877 +g25267 +g27 +sg25268 +S'Box (Log Cabin)' +p52878 +sg25270 +S'Henry Moran' +p52879 +sa(dp52880 +g25267 +g27 +sg25268 +S'Vase' +p52881 +sg25270 +S'Robert Stewart' +p52882 +sa(dp52883 +g25267 +g27 +sg25268 +S'Salt Shaker' +p52884 +sg25270 +S'Wellington Blewett' +p52885 +sa(dp52886 +g25267 +g27 +sg25268 +S'Flask' +p52887 +sg25270 +S'Nicholas Amantea' +p52888 +sa(dp52889 +g25267 +g27 +sg25268 +S'Flask' +p52890 +sg25270 +S'Charles Caseau' +p52891 +sa(dp52892 +g25273 +S'pen and black ink and watercolor with gray wash on laid paper' +p52893 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52894 +sg25268 +S"Costume de Mlle. St. Huberti, Role d'Iphigenie en Aulide" +p52895 +sg25270 +S'Brion de la Tour' +p52896 +sa(dp52897 +g25267 +g27 +sg25268 +S'Pocket Flask' +p52898 +sg25270 +S'Chris Makrenos' +p52899 +sa(dp52900 +g25267 +g27 +sg25268 +S'Flask - Liquor' +p52901 +sg25270 +S'John Dana' +p52902 +sa(dp52903 +g25267 +g27 +sg25268 +S'Milk Glass Vase' +p52904 +sg25270 +S'Wellington Blewett' +p52905 +sa(dp52906 +g25267 +g27 +sg25268 +S'Glass Pocket Flask' +p52907 +sg25270 +S'G.A. Spangenberg' +p52908 +sa(dp52909 +g25267 +g27 +sg25268 +S'Scent Bottle with Stopper' +p52910 +sg25270 +S'Charles Moss' +p52911 +sa(dp52912 +g25267 +g27 +sg25268 +S'Flask' +p52913 +sg25270 +S'John Tarantino' +p52914 +sa(dp52915 +g25267 +g27 +sg25268 +S'Trinket Box with Lid' +p52916 +sg25270 +S'Charles Moss' +p52917 +sa(dp52918 +g25267 +g27 +sg25268 +S'Powder Box' +p52919 +sg25270 +S'Florence Stevenson' +p52920 +sa(dp52921 +g25267 +g27 +sg25268 +S'Deep Aquamarine Bottle' +p52922 +sg25270 +S'V.L. Vance' +p52923 +sa(dp52924 +g25267 +g27 +sg25268 +S'Flask' +p52925 +sg25270 +S'Dorothy Posten' +p52926 +sa(dp52927 +g25273 +S'graphite with white gouache on laid paper' +p52928 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52929 +sg25268 +S"Costume d'Edouard dans le Siege de Calais" +p52930 +sg25270 +S'Brion de la Tour' +p52931 +sa(dp52932 +g25267 +g27 +sg25268 +S'Table Glass' +p52933 +sg25270 +S'Emilio Zito' +p52934 +sa(dp52935 +g25267 +g27 +sg25268 +S'Iridescent Jar' +p52936 +sg25270 +S'Thomas Holloway' +p52937 +sa(dp52938 +g25267 +g27 +sg25268 +S'Amber Jar (Blown)' +p52939 +sg25270 +S'Ralph Atkinson' +p52940 +sa(dp52941 +g25267 +g27 +sg25268 +S'Flower Vase' +p52942 +sg25270 +S'Paul Ward' +p52943 +sa(dp52944 +g25267 +g27 +sg25268 +S'Vase (Morning Glory)' +p52945 +sg25270 +S'Robert Stewart' +p52946 +sa(dp52947 +g25267 +g27 +sg25268 +S'Butter Dish (Ameberina)' +p52948 +sg25270 +S'Ralph Atkinson' +p52949 +sa(dp52950 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p52951 +sg25270 +S'Janet Riza' +p52952 +sa(dp52953 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p52954 +sg25270 +S'Janet Riza' +p52955 +sa(dp52956 +g25267 +g27 +sg25268 +S'Creamer' +p52957 +sg25270 +S'John Tarantino' +p52958 +sa(dp52959 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p52960 +sg25270 +S'Frank Fumagalli' +p52961 +sa(dp52962 +g25273 +S'pen and black ink and watercolor with gray wash on laid paper' +p52963 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52964 +sg25268 +S'Costume de Mlle. de Garcins jouant le Role dePalmire dans Mahomet' +p52965 +sg25270 +S'Brion de la Tour' +p52966 +sa(dp52967 +g25267 +g27 +sg25268 +S'Christmas Tree Light' +p52968 +sg25270 +S'Samuel O. Klein' +p52969 +sa(dp52970 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p52971 +sg25270 +S'Janet Riza' +p52972 +sa(dp52973 +g25267 +g27 +sg25268 +S'Christmas Light' +p52974 +sg25270 +S'Giacinto Capelli' +p52975 +sa(dp52976 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p52977 +sg25270 +S'Janet Riza' +p52978 +sa(dp52979 +g25267 +g27 +sg25268 +S'Christmas Light' +p52980 +sg25270 +S'John Dana' +p52981 +sa(dp52982 +g25267 +g27 +sg25268 +S'Christmas Light' +p52983 +sg25270 +S'John Dana' +p52984 +sa(dp52985 +g25267 +g27 +sg25268 +S'Bowl' +p52986 +sg25270 +S'John Dana' +p52987 +sa(dp52988 +g25267 +g27 +sg25268 +S'Ribbed Glass Bowl' +p52989 +sg25270 +S'Beverly Chichester' +p52990 +sa(dp52991 +g25267 +g27 +sg25268 +S'Low Glass Dish' +p52992 +sg25270 +S'Beverly Chichester' +p52993 +sa(dp52994 +g25267 +g27 +sg25268 +S'Glass Bowl' +p52995 +sg25270 +S'Ella Josephine Sterling' +p52996 +sa(dp52997 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p52998 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p52999 +sg25268 +S'Mlle. St. Huberti, Role de Penelope' +p53000 +sg25270 +S'Brion de la Tour' +p53001 +sa(dp53002 +g25267 +g27 +sg25268 +S'Glass Bowl' +p53003 +sg25270 +S'Raymond Manupelli' +p53004 +sa(dp53005 +g25267 +g27 +sg25268 +S'Whiskey Bottle' +p53006 +sg25270 +S'Gerald Scalise' +p53007 +sa(dp53008 +g25267 +g27 +sg25268 +S'Log Cabin Flask' +p53009 +sg25270 +S'David S. De Vault' +p53010 +sa(dp53011 +g25267 +g27 +sg25268 +S'Bottle' +p53012 +sg25270 +S'Ralph Atkinson' +p53013 +sa(dp53014 +g25267 +g27 +sg25268 +S'Indian Maiden Bitters Bottle' +p53015 +sg25270 +S'G.A. Spangenberg' +p53016 +sa(dp53017 +g25267 +g27 +sg25268 +S'Bitters Bottle (Indian)' +p53018 +sg25270 +S'G.A. Spangenberg' +p53019 +sa(dp53020 +g25267 +g27 +sg25268 +S'Bottle' +p53021 +sg25270 +S'Dorothy Brennan' +p53022 +sa(dp53023 +g25267 +g27 +sg25268 +S'Glass Bitters Bottle' +p53024 +sg25270 +S'G.A. Spangenberg' +p53025 +sa(dp53026 +g25267 +g27 +sg25268 +S'McHenry Bottle' +p53027 +sg25270 +S'Ralph Atkinson' +p53028 +sa(dp53029 +g25267 +g27 +sg25268 +S'Bottle' +p53030 +sg25270 +S'Loraine Makimson' +p53031 +sa(dp53032 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p53033 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p53034 +sg25268 +S'Costume de Mlle. Carline, Role de Julie dans les Etourdis, ou le Mort Suppose' +p53035 +sg25270 +S'Brion de la Tour' +p53036 +sa(dp53037 +g25267 +g27 +sg25268 +S'Glass Bottle' +p53038 +sg25270 +S'Claude Marshall' +p53039 +sa(dp53040 +g25267 +g27 +sg25268 +S'Jenny Lind Bottle' +p53041 +sg25270 +S'Paul Ward' +p53042 +sa(dp53043 +g25267 +g27 +sg25268 +S'Jersey Milk Bottle' +p53044 +sg25270 +S'Columbus Simpson' +p53045 +sa(dp53046 +g25267 +g27 +sg25268 +S'Glass Bottle' +p53047 +sg25270 +S'Anna Aloisi' +p53048 +sa(dp53049 +g25267 +g27 +sg25268 +S'Covered Dish (Duck)' +p53050 +sg25270 +S'LeRoy Griffith' +p53051 +sa(dp53052 +g25267 +g27 +sg25268 +S'Covered Dish (Cat)' +p53053 +sg25270 +S'James Vail' +p53054 +sa(dp53055 +g25267 +g27 +sg25268 +S'Glass Fruit Jar' +p53056 +sg25270 +S'Robert Penson' +p53057 +sa(dp53058 +g25267 +g27 +sg25268 +S'Fruit Jar' +p53059 +sg25270 +S'J. Howard Iams' +p53060 +sa(dp53061 +g25267 +g27 +sg25268 +S'Jar' +p53062 +sg25270 +S'John Tarantino' +p53063 +sa(dp53064 +g25267 +g27 +sg25268 +S'Ink Bottle' +p53065 +sg25270 +S'Jack Williamson' +p53066 +sa(dp53067 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p53068 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p53069 +sg25268 +S"Mr. Fleuri dans l'Ecole des Pere, Role de St. Fonds" +p53070 +sg25270 +S'Brion de la Tour' +p53071 +sa(dp53072 +g25267 +g27 +sg25268 +S'Inkwell' +p53073 +sg25270 +S'Giacinto Capelli' +p53074 +sa(dp53075 +g25267 +g27 +sg25268 +S'Inkwell' +p53076 +sg25270 +S'John Fisk' +p53077 +sa(dp53078 +g25267 +g27 +sg25268 +S'Inkwell' +p53079 +sg25270 +S'Anne Mentzoff' +p53080 +sa(dp53081 +g25267 +g27 +sg25268 +S'Inkwell' +p53082 +sg25270 +S'Nicholas Amantea' +p53083 +sa(dp53084 +g25267 +g27 +sg25268 +S'Inkwell' +p53085 +sg25270 +S'Frank Fumagalli' +p53086 +sa(dp53087 +g25267 +g27 +sg25268 +S'Inkwell' +p53088 +sg25270 +S'Janet Riza' +p53089 +sa(dp53090 +g25267 +g27 +sg25268 +S'Flower Holder' +p53091 +sg25270 +S'Alfred Walbeck' +p53092 +sa(dp53093 +g25267 +g27 +sg25268 +S'Glass Hat' +p53094 +sg25270 +S'Yolande Delasser' +p53095 +sa(dp53096 +g25267 +g27 +sg25268 +S'Amber Glass Hat' +p53097 +sg25270 +S'Katherine Hastings' +p53098 +sa(dp53099 +g25267 +g27 +sg25268 +S'Glass Hat' +p53100 +sg25270 +S'Michael Trekur' +p53101 +sa(dp53102 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p53103 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p53104 +sg25268 +S"Costume de M. Rousseau, Role d'Hyppolite dans Phedre" +p53105 +sg25270 +S'Brion de la Tour' +p53106 +sa(dp53107 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p53108 +sg25270 +S'Nicholas Amantea' +p53109 +sa(dp53110 +g25267 +g27 +sg25268 +S'Carafe' +p53111 +sg25270 +S'Van Silvay' +p53112 +sa(dp53113 +g25267 +g27 +sg25268 +S'Bottle' +p53114 +sg25270 +S'Anna Aloisi' +p53115 +sa(dp53116 +g25267 +g27 +sg25268 +S'Bottle (For Spring Water)' +p53117 +sg25270 +S'John Fisk' +p53118 +sa(dp53119 +g25267 +g27 +sg25268 +S'Bottle' +p53120 +sg25270 +S'Anna Aloisi' +p53121 +sa(dp53122 +g25267 +g27 +sg25268 +S'Decanter' +p53123 +sg25270 +S'John Tarantino' +p53124 +sa(dp53125 +g25267 +g27 +sg25268 +S'Decanter' +p53126 +sg25270 +S'John Dana' +p53127 +sa(dp53128 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p53129 +sg25270 +S'Nicholas Amantea' +p53130 +sa(dp53131 +g25267 +g27 +sg25268 +S'Decanter' +p53132 +sg25270 +S'Nicholas Amantea' +p53133 +sa(dp53134 +g25267 +g27 +sg25268 +S'Pitcher' +p53135 +sg25270 +S'Joseph Mitry' +p53136 +sa(dp53137 +g25273 +S'pen and black ink and watercolor with gray wash on laid paper' +p53138 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p53139 +sg25268 +S'Adrienne le Couvreur, Role de Cornelie, dans la Mort de Pompee' +p53140 +sg25270 +S'Brion de la Tour' +p53141 +sa(dp53142 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p53143 +sg25270 +S'John Dana' +p53144 +sa(dp53145 +g25267 +g27 +sg25268 +S'Creamer' +p53146 +sg25270 +S'Florian Rokita' +p53147 +sa(dp53148 +g25267 +g27 +sg25268 +S'Cruet' +p53149 +sg25270 +S'John Dana' +p53150 +sa(dp53151 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p53152 +sg25270 +S'Frank Fumagalli' +p53153 +sa(dp53154 +g25267 +g27 +sg25268 +S'Creamer' +p53155 +sg25270 +S'Giacinto Capelli' +p53156 +sa(dp53157 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p53158 +sg25270 +S'Charles Caseau' +p53159 +sa(dp53160 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00051/a0005162.jpg' +p53161 +sg25268 +S'Gilded Weathercock' +p53162 +sg25270 +S'Laura Bilodeau' +p53163 +sa(dp53164 +g25267 +S'Constantly seeking ways of adding animation and novelty to their products, toy\n makers invented many ingenious products. Pennsylvannia German artists were especially\n creative in this respect. The hand-operated wooden toy shown here consists of two\n jointed figures that revolve around a pole when the handle is turned. Made about\n 1835, the toy is hand-carved of pine. The wood has a natural finish, but the features\n are tinted.\n ' +p53165 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002d7.jpg' +p53166 +sg25268 +S'Handcarved Toy' +p53167 +sg25270 +S'Betty Jean Davis' +p53168 +sa(dp53169 +g25267 +g27 +sg25268 +S'Weather Vane (Fish)' +p53170 +sg25270 +S'American 20th Century' +p53171 +sa(dp53172 +g25267 +g27 +sg25268 +S'Spinning Wheel' +p53173 +sg25270 +S'George V. Vezolles' +p53174 +sa(dp53175 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p53176 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p53177 +sg25268 +S"Costume de M. Vanhove, Role d'Auguste dans Cinne" +p53178 +sg25270 +S'Brion de la Tour' +p53179 +sa(dp53180 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p53181 +sg25270 +S'Frances Lichten' +p53182 +sa(dp53183 +g25267 +g27 +sg25268 +S'Flask' +p53184 +sg25270 +S'Charles Caseau' +p53185 +sa(dp53186 +g25267 +g27 +sg25268 +S'Liquor Flask' +p53187 +sg25270 +S'Charles Caseau' +p53188 +sa(dp53189 +g25267 +g27 +sg25268 +S'Liquor Flask' +p53190 +sg25270 +S'Charles Caseau' +p53191 +sa(dp53192 +g25267 +g27 +sg25268 +S'Liquor Flask' +p53193 +sg25270 +S'Charles Caseau' +p53194 +sa(dp53195 +g25267 +g27 +sg25268 +S'Whiskey Flask' +p53196 +sg25270 +S'G.A. Spangenberg' +p53197 +sa(dp53198 +g25267 +g27 +sg25268 +S'Whiskey Flask' +p53199 +sg25270 +S'G.A. Spangenberg' +p53200 +sa(dp53201 +g25267 +g27 +sg25268 +S'Pitcher' +p53202 +sg25270 +S'John Dana' +p53203 +sa(dp53204 +g25267 +g27 +sg25268 +S'Pitcher' +p53205 +sg25270 +S'John Dana' +p53206 +sa(dp53207 +g25267 +g27 +sg25268 +S'Water Pitcher' +p53208 +sg25270 +S'John Dana' +p53209 +sa(dp53210 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p53211 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p53212 +sg25268 +S'Costume de Mlle. Trial, Role de la Belle Arsene' +p53213 +sg25270 +S'Brion de la Tour' +p53214 +sa(dp53215 +g25267 +g27 +sg25268 +S'Pitcher' +p53216 +sg25270 +S'Frank Fumagalli' +p53217 +sa(dp53218 +g25267 +g27 +sg25268 +S'Blue Hobnail Pitcher' +p53219 +sg25270 +S'Ralph Atkinson' +p53220 +sa(dp53221 +g25267 +g27 +sg25268 +S'Small Pitcher' +p53222 +sg25270 +S'Charles Caseau' +p53223 +sa(dp53224 +g25267 +g27 +sg25268 +S'Pitcher' +p53225 +sg25270 +S'Frank Fumagalli' +p53226 +sa(dp53227 +g25267 +g27 +sg25268 +S'Small Pitcher' +p53228 +sg25270 +S'John Dana' +p53229 +sa(dp53230 +g25267 +g27 +sg25268 +S'Molasses Jug' +p53231 +sg25270 +S'Giacinto Capelli' +p53232 +sa(dp53233 +g25267 +g27 +sg25268 +S'Cobalt Blue Cup' +p53234 +sg25270 +S'Robert Stewart' +p53235 +sa(dp53236 +g25267 +g27 +sg25268 +S'Covered Mug' +p53237 +sg25270 +S'Gertrude Lemberg' +p53238 +sa(dp53239 +g25267 +g27 +sg25268 +S'Mustard Pot' +p53240 +sg25270 +S'Michael Fenga' +p53241 +sa(dp53242 +g25267 +g27 +sg25268 +S'Mug' +p53243 +sg25270 +S'Giacinto Capelli' +p53244 +sa(dp53245 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p53246 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p53247 +sg25268 +S"Costume de Mlle. Maillard, Role d'Armide" +p53248 +sg25270 +S'Brion de la Tour' +p53249 +sa(dp53250 +g25267 +g27 +sg25268 +S'Mustard Pot' +p53251 +sg25270 +S'John Dana' +p53252 +sa(dp53253 +g25267 +g27 +sg25268 +S'Molasses Jug' +p53254 +sg25270 +S'Giacinto Capelli' +p53255 +sa(dp53256 +g25267 +g27 +sg25268 +S'Mug' +p53257 +sg25270 +S'Frank Fumagalli' +p53258 +sa(dp53259 +g25267 +g27 +sg25268 +S'Mustard Pot' +p53260 +sg25270 +S'Elisabeth Fulda' +p53261 +sa(dp53262 +g25267 +g27 +sg25268 +S'Preserving Jar' +p53263 +sg25270 +S'Joseph Mitry' +p53264 +sa(dp53265 +g25267 +g27 +sg25268 +S'Candy Container' +p53266 +sg25270 +S'Francis Law Durand' +p53267 +sa(dp53268 +g25267 +g27 +sg25268 +S'Mason Jar' +p53269 +sg25270 +S'Artist Information (' +p53270 +sa(dp53271 +g25267 +g27 +sg25268 +S'Jar' +p53272 +sg25270 +S'John Dana' +p53273 +sa(dp53274 +g25267 +g27 +sg25268 +S'Whiskey Flask' +p53275 +sg25270 +S'G.A. Spangenberg' +p53276 +sa(dp53277 +g25267 +g27 +sg25268 +S'Flask' +p53278 +sg25270 +S'Henry Moran' +p53279 +sa(dp53280 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p53281 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p53282 +sg25268 +S'Costume de Mlle. Carline dans le Role de Zilia' +p53283 +sg25270 +S'Brion de la Tour' +p53284 +sa(dp53285 +g25267 +g27 +sg25268 +S'Whiskey Flask' +p53286 +sg25270 +S'G.A. Spangenberg' +p53287 +sa(dp53288 +g25267 +g27 +sg25268 +S'Whiskey Flask' +p53289 +sg25270 +S'Alf Bruseth' +p53290 +sa(dp53291 +g25267 +g27 +sg25268 +S'Flask' +p53292 +sg25270 +S'Charles Caseau' +p53293 +sa(dp53294 +g25267 +g27 +sg25268 +S'Flask' +p53295 +sg25270 +S'Wellington Blewett' +p53296 +sa(dp53297 +g25267 +g27 +sg25268 +S'Glass Whiskey Flask' +p53298 +sg25270 +S'G.A. Spangenberg' +p53299 +sa(dp53300 +g25267 +g27 +sg25268 +S'"Liberty" Bottle' +p53301 +sg25270 +S'Maud M. Holme' +p53302 +sa(dp53303 +g25267 +g27 +sg25268 +S'Washington Eagle Flask' +p53304 +sg25270 +S'V.L. Vance' +p53305 +sa(dp53306 +g25267 +g27 +sg25268 +S'Whiskey Bottle' +p53307 +sg25270 +S'Loraine Makimson' +p53308 +sa(dp53309 +g25267 +g27 +sg25268 +S'Green Whiskey Bottle' +p53310 +sg25270 +S'Loraine Makimson' +p53311 +sa(dp53312 +g25267 +g27 +sg25268 +S'Glass Bottle' +p53313 +sg25270 +S'LeRoy Griffith' +p53314 +sa(dp53315 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p53316 +sg25267 +g27 +sg25275 +S'1787' +p53317 +sg25268 +S"Mlle. Saint-Val, Role d'Iphigenie en Tauride" +p53318 +sg25270 +S'Brion de la Tour' +p53319 +sa(dp53320 +g25267 +g27 +sg25268 +S'Glass Bottle' +p53321 +sg25270 +S'Orville A. Carroll' +p53322 +sa(dp53323 +g25267 +g27 +sg25268 +S'Flask' +p53324 +sg25270 +S'Carl Buergerniss' +p53325 +sa(dp53326 +g25267 +g27 +sg25268 +S'Flask' +p53327 +sg25270 +S'Chris Makrenos' +p53328 +sa(dp53329 +g25267 +g27 +sg25268 +S'Flask' +p53330 +sg25270 +S'Charles Caseau' +p53331 +sa(dp53332 +g25267 +g27 +sg25268 +S'Glass Bottle' +p53333 +sg25270 +S'A. Zaidenberg' +p53334 +sa(dp53335 +g25267 +g27 +sg25268 +S'Blue-Green Corset Flask' +p53336 +sg25270 +S'Beverly Chichester' +p53337 +sa(dp53338 +g25267 +g27 +sg25268 +S'Blue-Green Flask' +p53339 +sg25270 +S'V.L. Vance' +p53340 +sa(dp53341 +g25267 +g27 +sg25268 +S'Flask' +p53342 +sg25270 +S'Hal Blakeley' +p53343 +sa(dp53344 +g25267 +g27 +sg25268 +S'Flask' +p53345 +sg25270 +S'Hal Blakeley' +p53346 +sa(dp53347 +g25267 +g27 +sg25268 +S'Flask' +p53348 +sg25270 +S'Charles Caseau' +p53349 +sa(dp53350 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p53351 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p53352 +sg25268 +S"Costume de Mlle. Raucour, Role d'Orphanis, dans la Tragedie de ce nom" +p53353 +sg25270 +S'Brion de la Tour' +p53354 +sa(dp53355 +g25267 +g27 +sg25268 +S'Flask' +p53356 +sg25270 +S'Charles Caseau' +p53357 +sa(dp53358 +g25267 +g27 +sg25268 +S'Flask' +p53359 +sg25270 +S'Charles Caseau' +p53360 +sa(dp53361 +g25267 +g27 +sg25268 +S'Flask' +p53362 +sg25270 +S'Charles Caseau' +p53363 +sa(dp53364 +g25267 +g27 +sg25268 +S'Bottle' +p53365 +sg25270 +S'Francis Law Durand' +p53366 +sa(dp53367 +g25267 +g27 +sg25268 +S'Gen. Washington Flask' +p53368 +sg25270 +S'G.A. Spangenberg' +p53369 +sa(dp53370 +g25267 +g27 +sg25268 +S'Flask' +p53371 +sg25270 +S'Charles Caseau' +p53372 +sa(dp53373 +g25267 +g27 +sg25268 +S'Liquor Flask' +p53374 +sg25270 +S'Charles Caseau' +p53375 +sa(dp53376 +g25267 +g27 +sg25268 +S'Green Glass Flask' +p53377 +sg25270 +S'V.L. Vance' +p53378 +sa(dp53379 +g25267 +g27 +sg25268 +S'Salt Cellar' +p53380 +sg25270 +S'Giacinto Capelli' +p53381 +sa(dp53382 +g25267 +g27 +sg25268 +S'Salt Shaker' +p53383 +sg25270 +S'Elisabeth Fulda' +p53384 +sa(dp53385 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on light blue laid paper' +p53386 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p53387 +sg25268 +S'Costume de M. Lainez, Role de Dardanus au 3e Acte' +p53388 +sg25270 +S'Brion de la Tour' +p53389 +sa(dp53390 +g25267 +g27 +sg25268 +S'Salt Shaker' +p53391 +sg25270 +S'Michael Fenga' +p53392 +sa(dp53393 +g25267 +g27 +sg25268 +S'Salt Shaker' +p53394 +sg25270 +S'Palmyra Pimentel' +p53395 +sa(dp53396 +g25267 +g27 +sg25268 +S'Salt Cellar' +p53397 +sg25270 +S'Frank Fumagalli' +p53398 +sa(dp53399 +g25267 +g27 +sg25268 +S'Salt Cup' +p53400 +sg25270 +S'Van Silvay' +p53401 +sa(dp53402 +g25267 +g27 +sg25268 +S'Salt Cup' +p53403 +sg25270 +S'John Tarantino' +p53404 +sa(dp53405 +g25267 +g27 +sg25268 +S'Salt Cellar' +p53406 +sg25270 +S'Janet Riza' +p53407 +sa(dp53408 +g25267 +g27 +sg25268 +S'Glass' +p53409 +sg25270 +S'V.L. Vance' +p53410 +sa(dp53411 +g25267 +g27 +sg25268 +S'Decanter' +p53412 +sg25270 +S'George Yanosko' +p53413 +sa(dp53414 +g25267 +g27 +sg25268 +S'Carafe' +p53415 +sg25270 +S'Samuel O. Klein' +p53416 +sa(dp53417 +g25267 +g27 +sg25268 +S'Decanter' +p53418 +sg25270 +S'George Yanosko' +p53419 +sa(dp53420 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p53421 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p53422 +sg25268 +S'Costume de Mme. Vestris Role de Jeanne de Naples dans le Tragedie de son nom' +p53423 +sg25270 +S'Brion de la Tour' +p53424 +sa(dp53425 +g25267 +g27 +sg25268 +S'Decanter' +p53426 +sg25270 +S'Michael Fenga' +p53427 +sa(dp53428 +g25267 +g27 +sg25268 +S'Carafe' +p53429 +sg25270 +S'Samuel O. Klein' +p53430 +sa(dp53431 +g25267 +g27 +sg25268 +S'Glass Wine Decanter' +p53432 +sg25270 +S'Erwin Schwabe' +p53433 +sa(dp53434 +g25267 +g27 +sg25268 +S'Decanter' +p53435 +sg25270 +S'John Tarantino' +p53436 +sa(dp53437 +g25267 +g27 +sg25268 +S'Clear Glass Decanter' +p53438 +sg25270 +S'Raymond Manupelli' +p53439 +sa(dp53440 +g25267 +g27 +sg25268 +S'Decanter' +p53441 +sg25270 +S'Francis Law Durand' +p53442 +sa(dp53443 +g25267 +g27 +sg25268 +S'Decanter' +p53444 +sg25270 +S'Francis Law Durand' +p53445 +sa(dp53446 +g25267 +g27 +sg25268 +S'Decanter' +p53447 +sg25270 +S'John Dana' +p53448 +sa(dp53449 +g25267 +g27 +sg25268 +S'Decanter' +p53450 +sg25270 +S'John Dana' +p53451 +sa(dp53452 +g25267 +g27 +sg25268 +S'Decanter' +p53453 +sg25270 +S'Charles Caseau' +p53454 +sa(dp53455 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p53456 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p53457 +sg25268 +S'Costume de Mme. Vestris dans Polyeucte, Role de Pauline' +p53458 +sg25270 +S'Brion de la Tour' +p53459 +sa(dp53460 +g25267 +g27 +sg25268 +S'Decanter' +p53461 +sg25270 +S'Thomas Holloway' +p53462 +sa(dp53463 +g25267 +g27 +sg25268 +S'Decanter' +p53464 +sg25270 +S'Paul Ward' +p53465 +sa(dp53466 +g25267 +g27 +sg25268 +S'Goblet' +p53467 +sg25270 +S'Gertrude Lemberg' +p53468 +sa(dp53469 +g25267 +g27 +sg25268 +S'Decanter and Glass' +p53470 +sg25270 +S'Jeanne Taylor' +p53471 +sa(dp53472 +g25267 +g27 +sg25268 +S'Flask' +p53473 +sg25270 +S'Isidore Steinberg' +p53474 +sa(dp53475 +g25267 +g27 +sg25268 +S'Flask' +p53476 +sg25270 +S'Anne Nemtzoff' +p53477 +sa(dp53478 +g25267 +g27 +sg25268 +S'Flask' +p53479 +sg25270 +S'Charles Caseau' +p53480 +sa(dp53481 +g25267 +g27 +sg25268 +S'Civil War Soldiers' +p53482 +sg25270 +S'George File' +p53483 +sa(dp53484 +g25267 +g27 +sg25268 +S'Coffee Pot' +p53485 +sg25270 +S'John Koehl' +p53486 +sa(dp53487 +g25267 +g27 +sg25268 +S'Apple Peeler' +p53488 +sg25270 +S'Henrietta S. Hukill' +p53489 +sa(dp53490 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p53491 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p53492 +sg25268 +S'Costume de Mlle. Contant, Role de Comtesse dans le Jaloux sans Amour, au 4e Acte' +p53493 +sg25270 +S'Brion de la Tour' +p53494 +sa(dp53495 +g25267 +g27 +sg25268 +S'Corn Husk Doll' +p53496 +sg25270 +S'Albert Rudin' +p53497 +sa(dp53498 +g25267 +g27 +sg25268 +S"Shaker Man's Hat" +p53499 +sg25270 +S'Ingrid Selmer-Larsen' +p53500 +sa(dp53501 +g25267 +g27 +sg25268 +S'Caster Bottle' +p53502 +sg25270 +S'Ralph Atkinson' +p53503 +sa(dp53504 +g25267 +g27 +sg25268 +S'Vinegar Cruet' +p53505 +sg25270 +S'Dorothy Posten' +p53506 +sa(dp53507 +g25267 +g27 +sg25268 +S'Cruet Bottle' +p53508 +sg25270 +S'Elisabeth Fulda' +p53509 +sa(dp53510 +g25267 +g27 +sg25268 +S'Perfume Bottle' +p53511 +sg25270 +S'Ralph Atkinson' +p53512 +sa(dp53513 +g25267 +g27 +sg25268 +S'Wicker Demijohn' +p53514 +sg25270 +S'Clarence W. Dawson' +p53515 +sa(dp53516 +g25267 +g27 +sg25268 +S'"Bull\'s Eye" Glass' +p53517 +sg25270 +S'John Tarantino' +p53518 +sa(dp53519 +g25267 +g27 +sg25268 +S'Glass Bell' +p53520 +sg25270 +S'Samuel O. Klein' +p53521 +sa(dp53522 +g25267 +g27 +sg25268 +S'Fire Extinguisher' +p53523 +sg25270 +S'Loraine Makimson' +p53524 +sa(dp53525 +g25273 +S', c. 1786/1787' +p53526 +sg25267 +g27 +sg25275 +S'\n' +p53527 +sg25268 +S'Costume de Mlle. Lestut dans le solitaire de Normandie' +p53528 +sg25270 +S'Brion de la Tour' +p53529 +sa(dp53530 +g25267 +g27 +sg25268 +S'String Bowl' +p53531 +sg25270 +S'Paul Poffinbarger' +p53532 +sa(dp53533 +g25267 +g27 +sg25268 +S'Glass Butter Mold' +p53534 +sg25270 +S'Donald Williams' +p53535 +sa(dp53536 +g25267 +g27 +sg25268 +S'Whiskey Glass' +p53537 +sg25270 +S'Ralph Atkinson' +p53538 +sa(dp53539 +g25267 +g27 +sg25268 +S'Tumbler' +p53540 +sg25270 +S'John Dana' +p53541 +sa(dp53542 +g25267 +g27 +sg25268 +S'Tumbler' +p53543 +sg25270 +S'John Dana' +p53544 +sa(dp53545 +g25267 +g27 +sg25268 +S'Whiskey Glass' +p53546 +sg25270 +S'Chris Makrenos' +p53547 +sa(dp53548 +g25267 +g27 +sg25268 +S'Flip Glass' +p53549 +sg25270 +S'V.L. Vance' +p53550 +sa(dp53551 +g25267 +g27 +sg25268 +S'Tumbler' +p53552 +sg25270 +S'Charles Caseau' +p53553 +sa(dp53554 +g25267 +g27 +sg25268 +S'Whiskey Glass' +p53555 +sg25270 +S'Ralph Atkinson' +p53556 +sa(dp53557 +g25267 +g27 +sg25268 +S'Tumbler' +p53558 +sg25270 +S'Janet Riza' +p53559 +sa(dp53560 +g25273 +S', c. 1786/1787' +p53561 +sg25267 +g27 +sg25275 +S'\n' +p53562 +sg25268 +S'Drawing of a Lady' +p53563 +sg25270 +S'Brion de la Tour' +p53564 +sa(dp53565 +g25267 +g27 +sg25268 +S'Tumbler' +p53566 +sg25270 +S'Charles Caseau' +p53567 +sa(dp53568 +g25267 +g27 +sg25268 +S'Tumbler' +p53569 +sg25270 +S'Giacinto Capelli' +p53570 +sa(dp53571 +g25267 +g27 +sg25268 +S'Flip' +p53572 +sg25270 +S'Gertrude Lemberg' +p53573 +sa(dp53574 +g25267 +g27 +sg25268 +S'Tumbler' +p53575 +sg25270 +S'Giacinto Capelli' +p53576 +sa(dp53577 +g25267 +g27 +sg25268 +S'Toddy Glass' +p53578 +sg25270 +S'Beverly Chichester' +p53579 +sa(dp53580 +g25267 +g27 +sg25268 +S'Flip Glass' +p53581 +sg25270 +S'Michael Trekur' +p53582 +sa(dp53583 +g25267 +g27 +sg25268 +S'Flip Glass' +p53584 +sg25270 +S'Janet Riza' +p53585 +sa(dp53586 +g25267 +g27 +sg25268 +S'Flip Glass' +p53587 +sg25270 +S'John Dana' +p53588 +sa(dp53589 +g25267 +g27 +sg25268 +S'Flip Glass' +p53590 +sg25270 +S'Raymond Neumann' +p53591 +sa(dp53592 +g25267 +g27 +sg25268 +S'Sugar Bowl with Cover' +p53593 +sg25270 +S'Janet Riza' +p53594 +sa(dp53595 +g25273 +S', c. 1786/1787' +p53596 +sg25267 +g27 +sg25275 +S'\n' +p53597 +sg25268 +S'Drawing of a Lady' +p53598 +sg25270 +S'Brion de la Tour' +p53599 +sa(dp53600 +g25267 +g27 +sg25268 +S'Sugar Bowl with Cover' +p53601 +sg25270 +S'Anna Aloisi' +p53602 +sa(dp53603 +g25267 +g27 +sg25268 +S'Sugar Bowl with Cover' +p53604 +sg25270 +S'John Dana' +p53605 +sa(dp53606 +g25267 +g27 +sg25268 +S'Sugar Bowl with Cover' +p53607 +sg25270 +S'John Dana' +p53608 +sa(dp53609 +g25267 +g27 +sg25268 +S'Candlestick' +p53610 +sg25270 +S'Gertrude Lemberg' +p53611 +sa(dp53612 +g25267 +g27 +sg25268 +S'Candlestick' +p53613 +sg25270 +S'Charles Caseau' +p53614 +sa(dp53615 +g25267 +g27 +sg25268 +S'Glass Candlestick' +p53616 +sg25270 +S'Roberta Elvis' +p53617 +sa(dp53618 +g25267 +g27 +sg25268 +S'Candlestick' +p53619 +sg25270 +S'Charles Caseau' +p53620 +sa(dp53621 +g25267 +g27 +sg25268 +S'Candlestick' +p53622 +sg25270 +S'Janet Riza' +p53623 +sa(dp53624 +g25267 +g27 +sg25268 +S'Dolphin Candlestick' +p53625 +sg25270 +S'Ella Josephine Sterling' +p53626 +sa(dp53627 +g25267 +g27 +sg25268 +S'Candlestick' +p53628 +sg25270 +S'John Dana' +p53629 +sa(dp53630 +g25273 +S'pen and black ink and watercolor with gray wash over graphite on laid paper' +p53631 +sg25267 +g27 +sg25275 +S'c. 1786/1787' +p53632 +sg25268 +S"Costume de Mr. Cheron, Role d'Agamemnon dans Iphigenie en Aulide" +p53633 +sg25270 +S'Brion de la Tour' +p53634 +sa(dp53635 +g25267 +g27 +sg25268 +S'Candlestick' +p53636 +sg25270 +S'Ronau William Woiceske' +p53637 +sa(dp53638 +g25267 +g27 +sg25268 +S'Candlestick' +p53639 +sg25270 +S'Roberta Elvis' +p53640 +sa(dp53641 +g25267 +g27 +sg25268 +S'Candlestick' +p53642 +sg25270 +S'Janet Riza' +p53643 +sa(dp53644 +g25267 +g27 +sg25268 +S'Candlestick' +p53645 +sg25270 +S'John Dana' +p53646 +sa(dp53647 +g25267 +g27 +sg25268 +S'Candlestick' +p53648 +sg25270 +S'Charles Caseau' +p53649 +sa(dp53650 +g25267 +g27 +sg25268 +S'Candlestick' +p53651 +sg25270 +S'Joseph Mitry' +p53652 +sa(dp53653 +g25267 +g27 +sg25268 +S'Candlestick' +p53654 +sg25270 +S'John Dana' +p53655 +sa(dp53656 +g25267 +g27 +sg25268 +S'Candlestick' +p53657 +sg25270 +S'Gertrude Lemberg' +p53658 +sa(dp53659 +g25267 +g27 +sg25268 +S'Candlestick' +p53660 +sg25270 +S'Charles Caseau' +p53661 +sa(dp53662 +g25267 +g27 +sg25268 +S'Candlestick' +p53663 +sg25270 +S'Charles Caseau' +p53664 +sa(dp53665 +g25273 +S', c. 1786/1787' +p53666 +sg25267 +g27 +sg25275 +S'\n' +p53667 +sg25268 +S'Drawing of a Lady' +p53668 +sg25270 +S'Brion de la Tour' +p53669 +sa(dp53670 +g25267 +g27 +sg25268 +S'Candlestick' +p53671 +sg25270 +S'Francis Law Durand' +p53672 +sa(dp53673 +g25267 +g27 +sg25268 +S'Candlestick' +p53674 +sg25270 +S'John Dana' +p53675 +sa(dp53676 +g25267 +g27 +sg25268 +S'Candlestick' +p53677 +sg25270 +S'John Dana' +p53678 +sa(dp53679 +g25267 +g27 +sg25268 +S'Candlestick' +p53680 +sg25270 +S'John Dana' +p53681 +sa(dp53682 +g25267 +g27 +sg25268 +S'Glass Celery Holder' +p53683 +sg25270 +S'Frank M. Keane' +p53684 +sa(dp53685 +g25267 +g27 +sg25268 +S'Cake Plate' +p53686 +sg25270 +S'Ralph Atkinson' +p53687 +sa(dp53688 +g25267 +g27 +sg25268 +S'Celery Holder' +p53689 +sg25270 +S'Ralph Atkinson' +p53690 +sa(dp53691 +g25267 +g27 +sg25268 +S'Bowl' +p53692 +sg25270 +S'Roberta Elvis' +p53693 +sa(dp53694 +g25267 +g27 +sg25268 +S'Glass Cake Stand' +p53695 +sg25270 +S'Magnus S. Fossum' +p53696 +sa(dp53697 +g25267 +g27 +sg25268 +S'Bowl' +p53698 +sg25270 +S'Roberta Elvis' +p53699 +sa(dp53700 +g25273 +S', c. 1786/1787' +p53701 +sg25267 +g27 +sg25275 +S'\n' +p53702 +sg25268 +S'Drawing of a Lady' +p53703 +sg25270 +S'Brion de la Tour' +p53704 +sa(dp53705 +g25267 +g27 +sg25268 +S'Covered Butter Dish' +p53706 +sg25270 +S'Gertrude Lemberg' +p53707 +sa(dp53708 +g25267 +g27 +sg25268 +S'Finger Bowl' +p53709 +sg25270 +S'John Dana' +p53710 +sa(dp53711 +g25267 +g27 +sg25268 +S'Butter Dish' +p53712 +sg25270 +S'Dorothy Posten' +p53713 +sa(dp53714 +g25267 +g27 +sg25268 +S'Bitters Bottle' +p53715 +sg25270 +S'Dorothy Brennan' +p53716 +sa(dp53717 +g25267 +g27 +sg25268 +S'Vinegar Cruet' +p53718 +sg25270 +S'Ralph Atkinson' +p53719 +sa(dp53720 +g25267 +g27 +sg25268 +S'Cruet' +p53721 +sg25270 +S'Roberta Elvis' +p53722 +sa(dp53723 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000312.jpg' +p53724 +sg25268 +S'Doll' +p53725 +sg25270 +S'Mina Lowry' +p53726 +sa(dp53727 +g25267 +g27 +sg25268 +S'Weather Vane' +p53728 +sg25270 +S'Salvatore Borrazzo' +p53729 +sa(dp53730 +g25267 +g27 +sg25268 +S'Weather Vane' +p53731 +sg25270 +S'George File' +p53732 +sa(dp53733 +g25267 +g27 +sg25268 +S'Weather Vane' +p53734 +sg25270 +S'Isidore Sovensky' +p53735 +sa(dp53736 +g25273 +S'graphite with pen and black ink and gold leaf' +p53737 +sg25267 +g27 +sg25275 +S'1753' +p53738 +sg25268 +S'Title Page' +p53739 +sg25270 +S'Charles Eisen' +p53740 +sa(dp53741 +g25267 +g27 +sg25268 +S'Squirrel Weather Vane' +p53742 +sg25270 +S'Mildred E. Bent' +p53743 +sa(dp53744 +g25267 +g27 +sg25268 +S'Weather Vane (Indian)' +p53745 +sg25270 +S'Rollington Campbell' +p53746 +sa(dp53747 +g25267 +g27 +sg25268 +S'Grasshopper Weather Vane' +p53748 +sg25270 +S'Alfred Denghausen' +p53749 +sa(dp53750 +g25267 +g27 +sg25268 +S'Hooked Rug' +p53751 +sg25270 +S'H. Langden Brown' +p53752 +sa(dp53753 +g25267 +g27 +sg25268 +S'Cradle' +p53754 +sg25270 +S'Chris Makrenos' +p53755 +sa(dp53756 +g25267 +g27 +sg25268 +S'Dancing Doll: Harlequin' +p53757 +sg25270 +S'Mina Lowry' +p53758 +sa(dp53759 +g25267 +g27 +sg25268 +S'Hand Puppet Judy' +p53760 +sg25270 +S'Dorothy Brennan' +p53761 +sa(dp53762 +g25267 +g27 +sg25268 +S'Cup Plates' +p53763 +sg25270 +S'Paul Ward' +p53764 +sa(dp53765 +g25267 +g27 +sg25268 +S'Cup Plate' +p53766 +sg25270 +S'Roberta Elvis' +p53767 +sa(dp53768 +g25267 +g27 +sg25268 +S'Cup Plate' +p53769 +sg25270 +S'Roberta Elvis' +p53770 +sa(dp53771 +g25273 +S'(artist)' +p53772 +sg25267 +g27 +sg25275 +S'\n' +p53773 +sg25268 +S'Album of Preliminary Drawings for "Titi Lucretii Cari"' +p53774 +sg25270 +S'Artist Information (' +p53775 +sa(dp53776 +g25267 +g27 +sg25268 +S'Mirror Support' +p53777 +sg25270 +S'Gertrude Lemberg' +p53778 +sa(dp53779 +g25267 +g27 +sg25268 +S'Honey Dish' +p53780 +sg25270 +S'Marie Famularo' +p53781 +sa(dp53782 +g25267 +g27 +sg25268 +S'Sandwich Glass' +p53783 +sg25270 +S'Marie Famularo' +p53784 +sa(dp53785 +g25267 +g27 +sg25268 +S'Sandwich Glass Cup Plate' +p53786 +sg25270 +S'Marie Famularo' +p53787 +sa(dp53788 +g25267 +g27 +sg25268 +S'Compote' +p53789 +sg25270 +S'Michael Fenga' +p53790 +sa(dp53791 +g25267 +g27 +sg25268 +S'Covered Rabbit Dish' +p53792 +sg25270 +S'George Yanosko' +p53793 +sa(dp53794 +g25267 +g27 +sg25268 +S'Hen on Dish' +p53795 +sg25270 +S'Katherine Hastings' +p53796 +sa(dp53797 +g25267 +g27 +sg25268 +S'Butter Dish' +p53798 +sg25270 +S'Janet Riza' +p53799 +sa(dp53800 +g25267 +g27 +sg25268 +S'Compote' +p53801 +sg25270 +S'Anna Aloisi' +p53802 +sa(dp53803 +g25267 +g27 +sg25268 +S'Ornamental Compote' +p53804 +sg25270 +S'Ralph Atkinson' +p53805 +sa(dp53806 +g25273 +S'graphite' +p53807 +sg25267 +g27 +sg25275 +S'1753' +p53808 +sg25268 +S'Title Page' +p53809 +sg25270 +S'Charles Eisen' +p53810 +sa(dp53811 +g25267 +g27 +sg25268 +S'Covered Compote' +p53812 +sg25270 +S'James Vail' +p53813 +sa(dp53814 +g25267 +g27 +sg25268 +S'Glass Honey Dish' +p53815 +sg25270 +S'John N. Vogel' +p53816 +sa(dp53817 +g25267 +g27 +sg25268 +S'Compote (Blue Urn)' +p53818 +sg25270 +S'Albert Eyth' +p53819 +sa(dp53820 +g25267 +g27 +sg25268 +S'Blue Compote' +p53821 +sg25270 +S'Edward White' +p53822 +sa(dp53823 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p53824 +sg25270 +S'George Yanosko' +p53825 +sa(dp53826 +g25267 +g27 +sg25268 +S'Compote' +p53827 +sg25270 +S'Marcus Moran' +p53828 +sa(dp53829 +g25267 +g27 +sg25268 +S'Compote' +p53830 +sg25270 +S'Ralph Atkinson' +p53831 +sa(dp53832 +g25267 +g27 +sg25268 +S'Candlestick' +p53833 +sg25270 +S'Ronau William Woiceske' +p53834 +sa(dp53835 +g25267 +g27 +sg25268 +S'Dolphin Candlestick' +p53836 +sg25270 +S'Giacinto Capelli' +p53837 +sa(dp53838 +g25267 +g27 +sg25268 +S'Glass Candlestick' +p53839 +sg25270 +S'John Hall' +p53840 +sa(dp53841 +g25273 +S'graphite' +p53842 +sg25267 +g27 +sg25275 +S'1754' +p53843 +sg25268 +S'Nymphs Representing Architecture, Painting and Sculpture with Cupids and Coat-of-Arms' +p53844 +sg25270 +S'Charles Eisen' +p53845 +sa(dp53846 +g25267 +g27 +sg25268 +S'Candlestick' +p53847 +sg25270 +S'John Dana' +p53848 +sa(dp53849 +g25267 +g27 +sg25268 +S'Candlestick' +p53850 +sg25270 +S'Marcus Moran' +p53851 +sa(dp53852 +g25267 +g27 +sg25268 +S'Vase' +p53853 +sg25270 +S'Janet Riza' +p53854 +sa(dp53855 +g25267 +g27 +sg25268 +S'Vase' +p53856 +sg25270 +S'Janet Riza' +p53857 +sa(dp53858 +g25267 +g27 +sg25268 +S'Dolphin Candlestick' +p53859 +sg25270 +S'John Tarantino' +p53860 +sa(dp53861 +g25267 +g27 +sg25268 +S'Candlestick' +p53862 +sg25270 +S'Dorothy Posten' +p53863 +sa(dp53864 +g25267 +g27 +sg25268 +S'Dolphin Candlestick' +p53865 +sg25270 +S'Ella Josephine Sterling' +p53866 +sa(dp53867 +g25267 +g27 +sg25268 +S'Match Holder' +p53868 +sg25270 +S'Robert Schuerer' +p53869 +sa(dp53870 +g25267 +g27 +sg25268 +S'Footed Tumbler' +p53871 +sg25270 +S'Ralph Atkinson' +p53872 +sa(dp53873 +g25267 +g27 +sg25268 +S'Blue Beer Mug' +p53874 +sg25270 +S'Robert Stewart' +p53875 +sa(dp53876 +g25273 +S'graphite' +p53877 +sg25267 +g27 +sg25275 +S'1753' +p53878 +sg25268 +S'Frontispiece' +p53879 +sg25270 +S'Charles Eisen' +p53880 +sa(dp53881 +g25267 +g27 +sg25268 +S'Tumbler' +p53882 +sg25270 +S'Katherine Hastings' +p53883 +sa(dp53884 +g25267 +g27 +sg25268 +S'Mustard Pot' +p53885 +sg25270 +S'John Tarantino' +p53886 +sa(dp53887 +g25267 +g27 +sg25268 +S'Ruby Mug' +p53888 +sg25270 +S'Albert Eyth' +p53889 +sa(dp53890 +g25267 +g27 +sg25268 +S'Tumbler' +p53891 +sg25270 +S'Henry Moran' +p53892 +sa(dp53893 +g25267 +g27 +sg25268 +S'Water Glass' +p53894 +sg25270 +S'Ralph Atkinson' +p53895 +sa(dp53896 +g25267 +g27 +sg25268 +S'Cracker Jar' +p53897 +sg25270 +S'Henry Moran' +p53898 +sa(dp53899 +g25267 +g27 +sg25268 +S'Pickle Jar' +p53900 +sg25270 +S'Syrena Swanson' +p53901 +sa(dp53902 +g25267 +g27 +sg25268 +S'Lamp' +p53903 +sg25270 +S'Giacinto Capelli' +p53904 +sa(dp53905 +g25267 +g27 +sg25268 +S'Jelly Jar' +p53906 +sg25270 +S'Dorothy Posten' +p53907 +sa(dp53908 +g25267 +g27 +sg25268 +S'Ink Well' +p53909 +sg25270 +S'Samuel O. Klein' +p53910 +sa(dp53911 +g25273 +S'graphite' +p53912 +sg25267 +g27 +sg25275 +S'published 1754' +p53913 +sg25268 +S'Mars and Venus' +p53914 +sg25270 +S'Charles-Nicolas Cochin II' +p53915 +sa(dp53916 +g25267 +g27 +sg25268 +S'Molasses or Syrup Mug' +p53917 +sg25270 +S'Hugh Clarke' +p53918 +sa(dp53919 +g25267 +g27 +sg25268 +S'Goblet' +p53920 +sg25270 +S'Joseph Mitry' +p53921 +sa(dp53922 +g25267 +g27 +sg25268 +S'Spoon Holder' +p53923 +sg25270 +S'May Hays' +p53924 +sa(dp53925 +g25267 +g27 +sg25268 +S'Goblet' +p53926 +sg25270 +S'Eva Wilson' +p53927 +sa(dp53928 +g25267 +g27 +sg25268 +S'Blue Goblet' +p53929 +sg25270 +S'Robert Stewart' +p53930 +sa(dp53931 +g25267 +g27 +sg25268 +S'Goblet' +p53932 +sg25270 +S'Edward White' +p53933 +sa(dp53934 +g25267 +g27 +sg25268 +S'Goblet' +p53935 +sg25270 +S'Edward White' +p53936 +sa(dp53937 +g25267 +g27 +sg25268 +S'Goblet' +p53938 +sg25270 +S'Ralph Atkinson' +p53939 +sa(dp53940 +g25267 +g27 +sg25268 +S'Spoon Holder' +p53941 +sg25270 +S'Edward White' +p53942 +sa(dp53943 +g25267 +g27 +sg25268 +S'Molded Water Glass' +p53944 +sg25270 +S'Ludmilla Calderon' +p53945 +sa(dp53946 +g25273 +S'graphite' +p53947 +sg25267 +g27 +sg25275 +S'published 1754' +p53948 +sg25268 +S'Vignette: Sacrifice of Iphigenia' +p53949 +sg25270 +S'Charles-Nicolas Cochin II' +p53950 +sa(dp53951 +g25267 +g27 +sg25268 +S'Goblet' +p53952 +sg25270 +S'Ronau William Woiceske' +p53953 +sa(dp53954 +g25267 +g27 +sg25268 +S'Goblet' +p53955 +sg25270 +S'Gertrude Lemberg' +p53956 +sa(dp53957 +g25267 +g27 +sg25268 +S'Goblet' +p53958 +sg25270 +S'Philip Johnson' +p53959 +sa(dp53960 +g25267 +g27 +sg25268 +S'Dish' +p53961 +sg25270 +S'Henry Moran' +p53962 +sa(dp53963 +g25267 +g27 +sg25268 +S'Bon Bon Dish' +p53964 +sg25270 +S'Eva Wilson' +p53965 +sa(dp53966 +g25267 +g27 +sg25268 +S'Decanter (Ashberton Pattern)' +p53967 +sg25270 +S'Alice Braun' +p53968 +sa(dp53969 +g25267 +g27 +sg25268 +S'Egg Glass' +p53970 +sg25270 +S'Raymond Manupelli' +p53971 +sa(dp53972 +g25267 +g27 +sg25268 +S'Dessert Dish' +p53973 +sg25270 +S'Joseph Mitry' +p53974 +sa(dp53975 +g25267 +g27 +sg25268 +S'Fruit Dish' +p53976 +sg25270 +S'Hugh Clarke' +p53977 +sa(dp53978 +g25267 +g27 +sg25268 +S'Spoon Holder' +p53979 +sg25270 +S'Joseph Mitry' +p53980 +sa(dp53981 +g25273 +S'graphite' +p53982 +sg25267 +g27 +sg25275 +S'published 1754' +p53983 +sg25268 +S'Inscription' +p53984 +sg25270 +S'Charles-Nicolas Cochin II' +p53985 +sa(dp53986 +g25267 +g27 +sg25268 +S'Salt Cellar' +p53987 +sg25270 +S'Charles Caseau' +p53988 +sa(dp53989 +g25267 +g27 +sg25268 +S'Salt Shaker' +p53990 +sg25270 +S'Eva Wilson' +p53991 +sa(dp53992 +g25267 +g27 +sg25268 +S'Salt Cellar' +p53993 +sg25270 +S'Carl Buergerniss' +p53994 +sa(dp53995 +g25267 +g27 +sg25268 +S'Salt Cellar' +p53996 +sg25270 +S'Lorenz Rothkranz' +p53997 +sa(dp53998 +g25267 +g27 +sg25268 +S'Family Salt Cellar' +p53999 +sg25270 +S'Carl Buergerniss' +p54000 +sa(dp54001 +g25267 +g27 +sg25268 +S'Salt Dip' +p54002 +sg25270 +S'Ralph Atkinson' +p54003 +sa(dp54004 +g25267 +g27 +sg25268 +S'Salt Dip' +p54005 +sg25270 +S'John Dana' +p54006 +sa(dp54007 +g25267 +g27 +sg25268 +S'Salt Cellar' +p54008 +sg25270 +S'John Tarantino' +p54009 +sa(dp54010 +g25267 +g27 +sg25268 +S'Salt Dip' +p54011 +sg25270 +S'Byron Dingman' +p54012 +sa(dp54013 +g25267 +g27 +sg25268 +S'Salt Dip' +p54014 +sg25270 +S'Henry Moran' +p54015 +sa(dp54016 +g25273 +S'graphite' +p54017 +sg25267 +g27 +sg25275 +S'1753' +p54018 +sg25268 +S'The Triumph of Cybele' +p54019 +sg25270 +S'Charles-Nicolas Cochin II' +p54020 +sa(dp54021 +g25267 +g27 +sg25268 +S'Salt Dip' +p54022 +sg25270 +S'John Dana' +p54023 +sa(dp54024 +g25267 +g27 +sg25268 +S'Blue Salt Boat' +p54025 +sg25270 +S'Margaret Stottlemeyer' +p54026 +sa(dp54027 +g25267 +g27 +sg25268 +S'Salt Cellar' +p54028 +sg25270 +S'John Dana' +p54029 +sa(dp54030 +g25267 +g27 +sg25268 +S'Ruby Case Glass Rose Jar' +p54031 +sg25270 +S'Edward D. Williams' +p54032 +sa(dp54033 +g25267 +g27 +sg25268 +S'Tumbler' +p54034 +sg25270 +S'Ralph Atkinson' +p54035 +sa(dp54036 +g25267 +g27 +sg25268 +S'Vase' +p54037 +sg25270 +S'Eva Wilson' +p54038 +sa(dp54039 +g25267 +g27 +sg25268 +S'Dish' +p54040 +sg25270 +S'Joseph Mitry' +p54041 +sa(dp54042 +g25267 +g27 +sg25268 +S'Railroad Platter' +p54043 +sg25270 +S'Ralph Atkinson' +p54044 +sa(dp54045 +g25267 +g27 +sg25268 +S'Compote' +p54046 +sg25270 +S'Joseph Mitry' +p54047 +sa(dp54048 +g25267 +g27 +sg25268 +S'Platter' +p54049 +sg25270 +S'Paul Ward' +p54050 +sa(dp54051 +g25273 +S'graphite' +p54052 +sg25267 +g27 +sg25275 +S'published 1754' +p54053 +sg25268 +S'Homer?' +p54054 +sg25270 +S'Charles-Nicolas Cochin II' +p54055 +sa(dp54056 +g25267 +g27 +sg25268 +S'Bread Plate' +p54057 +sg25270 +S'Margaret Stottlemeyer' +p54058 +sa(dp54059 +g25267 +g27 +sg25268 +S'Pressed Glass Bowl' +p54060 +sg25270 +S'Ella Josephine Sterling' +p54061 +sa(dp54062 +g25267 +g27 +sg25268 +S'Compote' +p54063 +sg25270 +S'Gertrude Lemberg' +p54064 +sa(dp54065 +g25267 +g27 +sg25268 +S'Punch Bowl' +p54066 +sg25270 +S'Gertrude Lemberg' +p54067 +sa(dp54068 +g25267 +g27 +sg25268 +S'Water Pitcher' +p54069 +sg25270 +S'Ralph Atkinson' +p54070 +sa(dp54071 +g25267 +g27 +sg25268 +S'Glass Tray' +p54072 +sg25270 +S'Henry Moran' +p54073 +sa(dp54074 +g25267 +g27 +sg25268 +S'Strawberry Design Plate' +p54075 +sg25270 +S'Ralph Atkinson' +p54076 +sa(dp54077 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p54078 +sg25270 +S'Artist Information (' +p54079 +sa(dp54080 +g25267 +g27 +sg25268 +S'Early Sandwich Creamer' +p54081 +sg25270 +S'Ella Josephine Sterling' +p54082 +sa(dp54083 +g25267 +g27 +sg25268 +S'Syrup Pitcher' +p54084 +sg25270 +S'Thomas Holloway' +p54085 +sa(dp54086 +g25273 +S'graphite' +p54087 +sg25267 +g27 +sg25275 +S'1753' +p54088 +sg25268 +S'Cul-de-lampe' +p54089 +sg25270 +S'Charles Eisen' +p54090 +sa(dp54091 +g25267 +g27 +sg25268 +S'Souvenir Pitcher' +p54092 +sg25270 +S'Ralph Atkinson' +p54093 +sa(dp54094 +g25267 +g27 +sg25268 +S'Vase' +p54095 +sg25270 +S'Robert Stewart' +p54096 +sa(dp54097 +g25267 +g27 +sg25268 +S'Ornamental Blue Pitcher' +p54098 +sg25270 +S'Robert Stewart' +p54099 +sa(dp54100 +g25267 +g27 +sg25268 +S'Barber Shop Bottle' +p54101 +sg25270 +S'Gertrude Lemberg' +p54102 +sa(dp54103 +g25267 +g27 +sg25268 +S'Vase' +p54104 +sg25270 +S'Dorothy Posten' +p54105 +sa(dp54106 +g25267 +g27 +sg25268 +S'Ornamental Basket' +p54107 +sg25270 +S'Robert Stewart' +p54108 +sa(dp54109 +g25267 +g27 +sg25268 +S'Pitcher' +p54110 +sg25270 +S'Ralph Atkinson' +p54111 +sa(dp54112 +g25267 +g27 +sg25268 +S'Green Pitcher' +p54113 +sg25270 +S'Robert Stewart' +p54114 +sa(dp54115 +g25267 +g27 +sg25268 +S'Water Carafe' +p54116 +sg25270 +S'Ralph Atkinson' +p54117 +sa(dp54118 +g25267 +g27 +sg25268 +S'Decorated Bottle' +p54119 +sg25270 +S'J. Howard Iams' +p54120 +sa(dp54121 +g25273 +S'graphite with gray wash' +p54122 +sg25267 +g27 +sg25275 +S'published 1754' +p54123 +sg25268 +S'Lucretius Presented to the Gods' +p54124 +sg25270 +S'Charles-Nicolas Cochin II' +p54125 +sa(dp54126 +g25267 +g27 +sg25268 +S'Cruet' +p54127 +sg25270 +S'Robert Stewart' +p54128 +sa(dp54129 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p54130 +sg25270 +S'Robert Stewart' +p54131 +sa(dp54132 +g25267 +g27 +sg25268 +S'Tulip Cups' +p54133 +sg25270 +S'Robert Stewart' +p54134 +sa(dp54135 +g25267 +g27 +sg25268 +S'Friendship Mug' +p54136 +sg25270 +S'Elizabeth Dimling' +p54137 +sa(dp54138 +g25267 +g27 +sg25268 +S'Green Glass' +p54139 +sg25270 +S'Robert Stewart' +p54140 +sa(dp54141 +g25267 +g27 +sg25268 +S'Tumbler' +p54142 +sg25270 +S'Ralph Atkinson' +p54143 +sa(dp54144 +g25267 +g27 +sg25268 +S'Water Glass' +p54145 +sg25270 +S'Ralph Atkinson' +p54146 +sa(dp54147 +g25267 +g27 +sg25268 +S'Glass Water Pitcher' +p54148 +sg25270 +S'Helen Bronson' +p54149 +sa(dp54150 +g25267 +g27 +sg25268 +S'Vase' +p54151 +sg25270 +S'Giacinto Capelli' +p54152 +sa(dp54153 +g25267 +g27 +sg25268 +S'Vase' +p54154 +sg25270 +S'John Tarantino' +p54155 +sa(dp54156 +g25273 +S'graphite' +p54157 +sg25267 +g27 +sg25275 +S'published 1754' +p54158 +sg25268 +S'Vignette' +p54159 +sg25270 +S'Charles-Nicolas Cochin II' +p54160 +sa(dp54161 +g25267 +g27 +sg25268 +S'Vase' +p54162 +sg25270 +S'Janet Riza' +p54163 +sa(dp54164 +g25267 +g27 +sg25268 +S'Vase' +p54165 +sg25270 +S'John Tarantino' +p54166 +sa(dp54167 +g25267 +g27 +sg25268 +S'Celery Holder' +p54168 +sg25270 +S'Robert Stewart' +p54169 +sa(dp54170 +g25267 +g27 +sg25268 +S'Vase' +p54171 +sg25270 +S'Janet Riza' +p54172 +sa(dp54173 +g25267 +g27 +sg25268 +S'Vase' +p54174 +sg25270 +S'John Tarantino' +p54175 +sa(dp54176 +g25267 +g27 +sg25268 +S'Vase' +p54177 +sg25270 +S'John Tarantino' +p54178 +sa(dp54179 +g25267 +g27 +sg25268 +S'Vase' +p54180 +sg25270 +S'Gertrude Lemberg' +p54181 +sa(dp54182 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p54183 +sg25270 +S'Henry Moran' +p54184 +sa(dp54185 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p54186 +sg25270 +S'Robert Stewart' +p54187 +sa(dp54188 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p54189 +sg25270 +S'Giacinto Capelli' +p54190 +sa(dp54191 +g25273 +S'(artist)' +p54192 +sg25267 +g27 +sg25275 +S'\n' +p54193 +sg25268 +S'La Partie de chasse de Henri IV' +p54194 +sg25270 +S'Artist Information (' +p54195 +sa(dp54196 +g25267 +g27 +sg25268 +S'Covered Glass Sugar Bowl' +p54197 +sg25270 +S'William McAuley' +p54198 +sa(dp54199 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p54200 +sg25270 +S'Janet Riza' +p54201 +sa(dp54202 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p54203 +sg25270 +S'Giacinto Capelli' +p54204 +sa(dp54205 +g25267 +g27 +sg25268 +S'Kitchen Broiler' +p54206 +sg25270 +S'Edna C. Rex' +p54207 +sa(dp54208 +g25267 +g27 +sg25268 +S'Wrought Iron Broiler' +p54209 +sg25270 +S'Adele Brooks' +p54210 +sa(dp54211 +g25267 +g27 +sg25268 +S'Grave Marker' +p54212 +sg25270 +S'Edward White' +p54213 +sa(dp54214 +g25267 +g27 +sg25268 +S'Pottery Grave Post' +p54215 +sg25270 +S'Annie B. Johnston' +p54216 +sa(dp54217 +g25267 +g27 +sg25268 +S'Handmade Grater' +p54218 +sg25270 +S'Joseph Glover' +p54219 +sa(dp54220 +g25267 +g27 +sg25268 +S'Grain Cradle' +p54221 +sg25270 +S'Roberta Elvis' +p54222 +sa(dp54223 +g25267 +g27 +sg25268 +S'Pioneer Salt Gourd' +p54224 +sg25270 +S'Elbert S. Mowery' +p54225 +sa(dp54226 +g25273 +S'French, 1699 - 1773' +p54227 +sg25267 +g27 +sg25275 +S'(artist after)' +p54228 +sg25268 +S'"La partie de chasse de Henri IV" I' +p54229 +sg25270 +S'Artist Information (' +p54230 +sa(dp54231 +g25267 +g27 +sg25268 +S'Gold Spike' +p54232 +sg25270 +S'Sebastian Simonet' +p54233 +sa(dp54234 +g25267 +g27 +sg25268 +S'Globe' +p54235 +sg25270 +S'Edward L. Loper' +p54236 +sa(dp54237 +g25267 +g27 +sg25268 +S'Tool Gauge' +p54238 +sg25270 +S'Chris Makrenos' +p54239 +sa(dp54240 +g25267 +g27 +sg25268 +S'Goblet' +p54241 +sg25270 +S'Vera Van Voris' +p54242 +sa(dp54243 +g25267 +g27 +sg25268 +S'Marking Gauge for Barrels' +p54244 +sg25270 +S'Herman O. Stroh' +p54245 +sa(dp54246 +g25267 +g27 +sg25268 +S"Basket Maker's Splint Gauge" +p54247 +sg25270 +S'Clarence Secor' +p54248 +sa(dp54249 +g25267 +g27 +sg25268 +S'Gavel' +p54250 +sg25270 +S'Angeline Starr' +p54251 +sa(dp54252 +g25267 +g27 +sg25268 +S'Gate Post Top' +p54253 +sg25270 +S'Henry Tomaszewski' +p54254 +sa(dp54255 +g25267 +g27 +sg25268 +S'Stone Gate Post' +p54256 +sg25270 +S'Rose Campbell-Gerke' +p54257 +sa(dp54258 +g25267 +g27 +sg25268 +S'Stone Gate Post' +p54259 +sg25270 +S'Rose Campbell-Gerke' +p54260 +sa(dp54261 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p54262 +sg25267 +g27 +sg25275 +S'unknown date\n' +p54263 +sg25268 +S'"La partie de chasse de Henri IV" I' +p54264 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p54265 +sa(dp54266 +g25267 +g27 +sg25268 +S'Stone Gate Post' +p54267 +sg25270 +S'Rose Campbell-Gerke' +p54268 +sa(dp54269 +g25267 +g27 +sg25268 +S'Vase' +p54270 +sg25270 +S'Robert Stewart' +p54271 +sa(dp54272 +g25267 +g27 +sg25268 +S'Frosted Glass' +p54273 +sg25270 +S'Edward White' +p54274 +sa(dp54275 +g25267 +g27 +sg25268 +S'Glass Celery Dish' +p54276 +sg25270 +S'Beulah Bradleigh' +p54277 +sa(dp54278 +g25267 +g27 +sg25268 +S'Vase' +p54279 +sg25270 +S'Robert Stewart' +p54280 +sa(dp54281 +g25267 +g27 +sg25268 +S'Barber Bottle' +p54282 +sg25270 +S'Robert Stewart' +p54283 +sa(dp54284 +g25267 +g27 +sg25268 +S'Marbleized Vase' +p54285 +sg25270 +S'John Hall' +p54286 +sa(dp54287 +g25267 +g27 +sg25268 +S'Amber Vase' +p54288 +sg25270 +S'Richard Taylor' +p54289 +sa(dp54290 +g25267 +g27 +sg25268 +S'Pinch Vase' +p54291 +sg25270 +S'Ralph Atkinson' +p54292 +sa(dp54293 +g25267 +g27 +sg25268 +S'Ornamental Pitcher' +p54294 +sg25270 +S'Robert Stewart' +p54295 +sa(dp54296 +g25273 +S'French, 1699 - 1773' +p54297 +sg25267 +g27 +sg25275 +S'(artist after)' +p54298 +sg25268 +S'"La partie de chasse de Henri IV" II' +p54299 +sg25270 +S'Artist Information (' +p54300 +sa(dp54301 +g25267 +g27 +sg25268 +S'Vase' +p54302 +sg25270 +S'Ralph Atkinson' +p54303 +sa(dp54304 +g25267 +g27 +sg25268 +S'Ruby Vase' +p54305 +sg25270 +S'Robert Stewart' +p54306 +sa(dp54307 +g25267 +g27 +sg25268 +S'Vase' +p54308 +sg25270 +S'Marie Famularo' +p54309 +sa(dp54310 +g25267 +g27 +sg25268 +S'Perforated Tin Lantern' +p54311 +sg25270 +S'Oscar Bluhme' +p54312 +sa(dp54313 +g25267 +g27 +sg25268 +S'Center Fire Revolver' +p54314 +sg25270 +S'Joseph Cannella' +p54315 +sa(dp54316 +g25267 +g27 +sg25268 +S'Pistol' +p54317 +sg25270 +S'Albert Rudin' +p54318 +sa(dp54319 +g25267 +g27 +sg25268 +S'Revolving Pistol' +p54320 +sg25270 +S'Erwin Schwabe' +p54321 +sa(dp54322 +g25267 +g27 +sg25268 +S'Revolver' +p54323 +sg25270 +S'Rose Campbell-Gerke' +p54324 +sa(dp54325 +g25267 +g27 +sg25268 +S'Gun' +p54326 +sg25270 +S'Jay Katz' +p54327 +sa(dp54328 +g25267 +g27 +sg25268 +S'Muzzle Loading Pistol' +p54329 +sg25270 +S'Alf Bruseth' +p54330 +sa(dp54331 +g25273 +S'pen and black ink and brush and brown ink with brown wash and white heightening' +p54332 +sg25267 +g27 +sg25275 +S'unknown date\n' +p54333 +sg25268 +S'"La partie de chasse de Henri IV" II' +p54334 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p54335 +sa(dp54336 +g25267 +g27 +sg25268 +S'Gun' +p54337 +sg25270 +S'Majel G. Claflin' +p54338 +sa(dp54339 +g25267 +g27 +sg25268 +S'Cap and Ball Revolver' +p54340 +sg25270 +S'LeRoy Robinson' +p54341 +sa(dp54342 +g25267 +g27 +sg25268 +S'Dueling Pistol' +p54343 +sg25270 +S'Richard Whitaker' +p54344 +sa(dp54345 +g25267 +g27 +sg25268 +S'Colt Revolver' +p54346 +sg25270 +S'Bernard Krieger' +p54347 +sa(dp54348 +g25267 +g27 +sg25268 +S'Sausage Grinder' +p54349 +sg25270 +S'J. Howard Iams' +p54350 +sa(dp54351 +g25267 +g27 +sg25268 +S'Metal Grits Grinder' +p54352 +sg25270 +S'Ray Price' +p54353 +sa(dp54354 +g25267 +g27 +sg25268 +S'Meat Chopper' +p54355 +sg25270 +S'Raymond Manupelli' +p54356 +sa(dp54357 +g25267 +g27 +sg25268 +S'Meat Grinder' +p54358 +sg25270 +S'Paul Ward' +p54359 +sa(dp54360 +g25267 +g27 +sg25268 +S'Sausage Grinder' +p54361 +sg25270 +S'Edward L. Loper' +p54362 +sa(dp54363 +g25267 +g27 +sg25268 +S'Meat Chopper' +p54364 +sg25270 +S'Thomas Holloway' +p54365 +sa(dp54366 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p54367 +sg25267 +g27 +sg25275 +S'unknown date\n' +p54368 +sg25268 +S'"La partie de chasse de Henri IV" III' +p54369 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p54370 +sa(dp54371 +g25267 +g27 +sg25268 +S'Meat Grinder' +p54372 +sg25270 +S'Geoffrey Holt' +p54373 +sa(dp54374 +g25267 +g27 +sg25268 +S'Spice Grinder' +p54375 +sg25270 +S'Francis Law Durand' +p54376 +sa(dp54377 +g25267 +g27 +sg25268 +S'Pepper Grinder' +p54378 +sg25270 +S'Albert Camilli' +p54379 +sa(dp54380 +g25267 +g27 +sg25268 +S'Sausage Grinder' +p54381 +sg25270 +S'Edward L. Loper' +p54382 +sa(dp54383 +g25267 +g27 +sg25268 +S'Griddlecake Turner and Fork' +p54384 +sg25270 +S'Edward L. Loper' +p54385 +sa(dp54386 +g25267 +g27 +sg25268 +S'Iron Griddle' +p54387 +sg25270 +S'Joseph Papa' +p54388 +sa(dp54389 +g25267 +g27 +sg25268 +S'Iron Griddle' +p54390 +sg25270 +S'Joseph Papa' +p54391 +sa(dp54392 +g25267 +g27 +sg25268 +S'Gridiron' +p54393 +sg25270 +S'Maurice Van Felix' +p54394 +sa(dp54395 +g25267 +g27 +sg25268 +S'Gridiron' +p54396 +sg25270 +S'Mildred Ford' +p54397 +sa(dp54398 +g25267 +g27 +sg25268 +S'Gridiron' +p54399 +sg25270 +S'Bernard Westmacott' +p54400 +sa(dp54401 +g25273 +S'French, 1699 - 1773' +p54402 +sg25267 +g27 +sg25275 +S'(artist after)' +p54403 +sg25268 +S'"La partie de chasse de Henri IV" III' +p54404 +sg25270 +S'Artist Information (' +p54405 +sa(dp54406 +g25267 +g27 +sg25268 +S'Gridiron' +p54407 +sg25270 +S'Salvatore Borrazzo' +p54408 +sa(dp54409 +g25267 +g27 +sg25268 +S'Gridiron' +p54410 +sg25270 +S'Salvatore Borrazzo' +p54411 +sa(dp54412 +g25267 +g27 +sg25268 +S'Gridiron' +p54413 +sg25270 +S'Maurice Van Felix' +p54414 +sa(dp54415 +g25267 +g27 +sg25268 +S'Gridiron' +p54416 +sg25270 +S'Maurice Van Felix' +p54417 +sa(dp54418 +g25267 +g27 +sg25268 +S'Hasp from Door of "Kennedy Farm"' +p54419 +sg25270 +S'Albert Rudin' +p54420 +sa(dp54421 +g25267 +g27 +sg25268 +S'Tool Box Hasp' +p54422 +sg25270 +S'Mildred Ford' +p54423 +sa(dp54424 +g25267 +g27 +sg25268 +S'Iron Door Handle' +p54425 +sg25270 +S'Bertha Semple' +p54426 +sa(dp54427 +g25267 +g27 +sg25268 +S'Door Handle' +p54428 +sg25270 +S'Jacob Lipkin' +p54429 +sa(dp54430 +g25267 +g27 +sg25268 +S'Door Handle with Thumb Press' +p54431 +sg25270 +S'Philip Johnson' +p54432 +sa(dp54433 +g25267 +g27 +sg25268 +S'Three Door Handles' +p54434 +sg25270 +S'Hans Korsch' +p54435 +sa(dp54436 +g25273 +S'French, 1699 - 1773' +p54437 +sg25267 +g27 +sg25275 +S'(artist after)' +p54438 +sg25268 +S'"La partie de chasse de Henri IV" III' +p54439 +sg25270 +S'Artist Information (' +p54440 +sa(dp54441 +g25267 +g27 +sg25268 +S'Hand Holds' +p54442 +sg25270 +S'Alexander Anderson' +p54443 +sa(dp54444 +g25267 +g27 +sg25268 +S'Caulking Hammer' +p54445 +sg25270 +S'Lloyd Charles Lemcke' +p54446 +sa(dp54447 +g25267 +g27 +sg25268 +S'Adze' +p54448 +sg25270 +S'Dana Bartlett' +p54449 +sa(dp54450 +g25267 +g27 +sg25268 +S'Adze' +p54451 +sg25270 +S'LeRoy Griffith' +p54452 +sa(dp54453 +g25267 +g27 +sg25268 +S'Hammer' +p54454 +sg25270 +S'R.J. De Freitas' +p54455 +sa(dp54456 +g25267 +g27 +sg25268 +S'Hammer' +p54457 +sg25270 +S'Gordena Jackson' +p54458 +sa(dp54459 +g25267 +g27 +sg25268 +S'Wrought Iron Hammer' +p54460 +sg25270 +S'George C. Brown' +p54461 +sa(dp54462 +g25267 +g27 +sg25268 +S'Halyard Block' +p54463 +sg25270 +S'Lloyd Charles Lemcke' +p54464 +sa(dp54465 +g25267 +g27 +sg25268 +S'Peak Halyard Band' +p54466 +sg25270 +S'Paul Lauterbach' +p54467 +sa(dp54468 +g25267 +g27 +sg25268 +S'Blunderbuss' +p54469 +sg25270 +S'Jessie M. Youngs' +p54470 +sa(dp54471 +g25273 +S'pen and black ink and brush and brown ink with brown wash and white heightening' +p54472 +sg25267 +g27 +sg25275 +S'unknown date\n' +p54473 +sg25268 +S'"La partie de chasse de Henri IV" IV' +p54474 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p54475 +sa(dp54476 +g25267 +g27 +sg25268 +S'Gun' +p54477 +sg25270 +S'Eugene Bartz' +p54478 +sa(dp54479 +g25267 +g27 +sg25268 +S'Rifle' +p54480 +sg25270 +S'LeRoy Robinson' +p54481 +sa(dp54482 +g25267 +g27 +sg25268 +S'Rifle' +p54483 +sg25270 +S'Charles Moss' +p54484 +sa(dp54485 +g25267 +g27 +sg25268 +S'Gun' +p54486 +sg25270 +S'Samuel Faigin' +p54487 +sa(dp54488 +g25267 +g27 +sg25268 +S'Gun' +p54489 +sg25270 +S'Harry G. Aberdeen' +p54490 +sa(dp54491 +g25267 +g27 +sg25268 +S'Detail of a Flint Lock' +p54492 +sg25270 +S'Charles Moss' +p54493 +sa(dp54494 +g25267 +g27 +sg25268 +S'Carbine Gun' +p54495 +sg25270 +S'George Fairbanks' +p54496 +sa(dp54497 +g25267 +g27 +sg25268 +S'Rifle' +p54498 +sg25270 +S'Natalie Simon' +p54499 +sa(dp54500 +g25267 +g27 +sg25268 +S'Apache Gun' +p54501 +sg25270 +S'Wayne White' +p54502 +sa(dp54503 +g25267 +g27 +sg25268 +S'Pistol Dagger' +p54504 +sg25270 +S'Anne B. Trepagnier' +p54505 +sa(dp54506 +g25273 +S'French, 1699 - 1773' +p54507 +sg25267 +g27 +sg25275 +S'(artist after)' +p54508 +sg25268 +S'"La partie de chasse de Henri IV" IV' +p54509 +sg25270 +S'Artist Information (' +p54510 +sa(dp54511 +g25267 +g27 +sg25268 +S'Hitching Post' +p54512 +sg25270 +S'Albert Rudin' +p54513 +sa(dp54514 +g25267 +g27 +sg25268 +S'Hitching Post' +p54515 +sg25270 +S'Michael Riccitelli' +p54516 +sa(dp54517 +g25267 +g27 +sg25268 +S'Hitching Post' +p54518 +sg25270 +S'Henry Tomaszewski' +p54519 +sa(dp54520 +g25267 +g27 +sg25268 +S'Hitching Post' +p54521 +sg25270 +S'American 20th Century' +p54522 +sa(dp54523 +g25267 +g27 +sg25268 +S'Hitching Post' +p54524 +sg25270 +S'Eleanor Kroll' +p54525 +sa(dp54526 +g25267 +g27 +sg25268 +S'Hitching Post' +p54527 +sg25270 +S'American 20th Century' +p54528 +sa(dp54529 +g25267 +g27 +sg25268 +S'Horse Head Hitching Post' +p54530 +sg25270 +S'Alexander Anderson' +p54531 +sa(dp54532 +g25267 +g27 +sg25268 +S'Horse Head Hitching Post' +p54533 +sg25270 +S'C.H. Hastings' +p54534 +sa(dp54535 +g25267 +g27 +sg25268 +S'Horse Head Hitching Post' +p54536 +sg25270 +S'Ernest A. Towers, Jr.' +p54537 +sa(dp54538 +g25267 +g27 +sg25268 +S'Hinges and Bolt' +p54539 +sg25270 +S'Manuel G. Runyan' +p54540 +sa(dp54541 +g25273 +S'pen and black ink and brush and brown ink with brown wash and white heightening' +p54542 +sg25267 +g27 +sg25275 +S'unknown date\n' +p54543 +sg25268 +S'"La partie de chasse de Henri IV" V' +p54544 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p54545 +sa(dp54546 +g25267 +g27 +sg25268 +S'Strap Hinges' +p54547 +sg25270 +S'Manuel G. Runyan' +p54548 +sa(dp54549 +g25267 +g27 +sg25268 +S'Hinge' +p54550 +sg25270 +S'Gordon Sanborn' +p54551 +sa(dp54552 +g25267 +g27 +sg25268 +S'Shutter Hinge and Fastener' +p54553 +sg25270 +S'James M. Lawson' +p54554 +sa(dp54555 +g25267 +g27 +sg25268 +S'Shutter Hinge and Fastener' +p54556 +sg25270 +S'James M. Lawson' +p54557 +sa(dp54558 +g25267 +g27 +sg25268 +S'Door Hinges' +p54559 +sg25270 +S'James M. Lawson' +p54560 +sa(dp54561 +g25267 +g27 +sg25268 +S'Door Hinges' +p54562 +sg25270 +S'James M. Lawson' +p54563 +sa(dp54564 +g25267 +g27 +sg25268 +S'Hinge' +p54565 +sg25270 +S'Verna Tallman' +p54566 +sa(dp54567 +g25267 +g27 +sg25268 +S'Crescent - Butted Strap Hinge' +p54568 +sg25270 +S'Donald Streeter' +p54569 +sa(dp54570 +g25267 +g27 +sg25268 +S'Hinge' +p54571 +sg25270 +S'Mildred Ford' +p54572 +sa(dp54573 +g25267 +g27 +sg25268 +S'Strap Hinge for Door' +p54574 +sg25270 +S'Herman O. Stroh' +p54575 +sa(dp54576 +g25273 +S'(artist after)' +p54577 +sg25267 +g27 +sg25275 +S'\n' +p54578 +sg25268 +S'"La partie de chasse de Henri IV" V' +p54579 +sg25270 +S'Artist Information (' +p54580 +sa(dp54581 +g25267 +g27 +sg25268 +S'Strap Hinges' +p54582 +sg25270 +S'Rollington Campbell' +p54583 +sa(dp54584 +g25267 +g27 +sg25268 +S'Hardware (Hinge)' +p54585 +sg25270 +S'Grant Vanderpool' +p54586 +sa(dp54587 +g25267 +g27 +sg25268 +S'Hawsing Iron' +p54588 +sg25270 +S'William Frank' +p54589 +sa(dp54590 +g25267 +g27 +sg25268 +S'Hawsing Beetle' +p54591 +sg25270 +S'Orison Daeda' +p54592 +sa(dp54593 +g25267 +g27 +sg25268 +S'Hide Stretcher' +p54594 +sg25270 +S'George Bobholz' +p54595 +sa(dp54596 +g25267 +g27 +sg25268 +S'Horse Drawn Hay Fork' +p54597 +sg25270 +S'Frances Godfrey' +p54598 +sa(dp54599 +g25267 +g27 +sg25268 +S'Pitch Fork' +p54600 +sg25270 +S'Earl Butlin' +p54601 +sa(dp54602 +g25267 +g27 +sg25268 +S'Hay Fork' +p54603 +sg25270 +S'Alfonso Moreno' +p54604 +sa(dp54605 +g25267 +g27 +sg25268 +S'Hay Fork' +p54606 +sg25270 +S'Albert Geuppert' +p54607 +sa(dp54608 +g25267 +g27 +sg25268 +S'Hay Fork' +p54609 +sg25270 +S'Albert Geuppert' +p54610 +sa(dp54611 +g25273 +S'(artist after)' +p54612 +sg25267 +g27 +sg25275 +S'\n' +p54613 +sg25268 +S'"La partie de chasse de Henri IV" VI' +p54614 +sg25270 +S'Artist Information (' +p54615 +sa(dp54616 +g25267 +g27 +sg25268 +S'Iron Hatchet Head' +p54617 +sg25270 +S'Sydney Roberts' +p54618 +sa(dp54619 +g25267 +g27 +sg25268 +S'Hitching Post' +p54620 +sg25270 +S'Bertha Semple' +p54621 +sa(dp54622 +g25267 +g27 +sg25268 +S'Iron Hitching Post' +p54623 +sg25270 +S'Harry Jennings' +p54624 +sa(dp54625 +g25267 +g27 +sg25268 +S'Jockey Hitching Post' +p54626 +sg25270 +S'Elizabeth Fairchild' +p54627 +sa(dp54628 +g25267 +g27 +sg25268 +S'Head (Top of Hitching Post)' +p54629 +sg25270 +S'Milton Grubstein' +p54630 +sa(dp54631 +g25267 +g27 +sg25268 +S'Hitching Post' +p54632 +sg25270 +S'George E. Rhone' +p54633 +sa(dp54634 +g25267 +g27 +sg25268 +S'Hitching Post' +p54635 +sg25270 +S'Richard Correll' +p54636 +sa(dp54637 +g25267 +g27 +sg25268 +S'Hitching Post' +p54638 +sg25270 +S'Alf Bruseth' +p54639 +sa(dp54640 +g25267 +g27 +sg25268 +S'Hitching Post' +p54641 +sg25270 +S'Charles Moss' +p54642 +sa(dp54643 +g25267 +g27 +sg25268 +S'Jockey Hitching Post' +p54644 +sg25270 +S'Elizabeth Fairchild' +p54645 +sa(dp54646 +g25273 +S'(artist after)' +p54647 +sg25267 +g27 +sg25275 +S'\n' +p54648 +sg25268 +S'"La partie de chasse de Henri IV" VI' +p54649 +sg25270 +S'Artist Information (' +p54650 +sa(dp54651 +g25267 +g27 +sg25268 +S'Hitching Post' +p54652 +sg25270 +S'George File' +p54653 +sa(dp54654 +g25267 +g27 +sg25268 +S'Cast Iron Jockey Hitching Post' +p54655 +sg25270 +S'Frank Gray' +p54656 +sa(dp54657 +g25267 +g27 +sg25268 +S'Cast Iron Owl Hitching Post' +p54658 +sg25270 +S'V.L. Vance' +p54659 +sa(dp54660 +g25267 +g27 +sg25268 +S'Cast Iron Dobbie: Jockey' +p54661 +sg25270 +S'Dorothy Brennan' +p54662 +sa(dp54663 +g25267 +g27 +sg25268 +S'Cast Iron Dobbie: Jockey' +p54664 +sg25270 +S'Paul Poffinbarger' +p54665 +sa(dp54666 +g25267 +g27 +sg25268 +S'Cast Iron Dobbie' +p54667 +sg25270 +S'Rex F. Bush' +p54668 +sa(dp54669 +g25267 +g27 +sg25268 +S'Hitching Post' +p54670 +sg25270 +S'Robert W.R. Taylor' +p54671 +sa(dp54672 +g25267 +g27 +sg25268 +S'Tree Trunk Hitching Post' +p54673 +sg25270 +S'Richard Correll' +p54674 +sa(dp54675 +g25267 +g27 +sg25268 +S'Iron Hitching Post' +p54676 +sg25270 +S'Samuel Fineman' +p54677 +sa(dp54678 +g25267 +g27 +sg25268 +S'Hitching Post' +p54679 +sg25270 +S'Cornelius Christoffels' +p54680 +sa(dp54681 +g25273 +S'pen and black ink and brush and brown ink with brown wash' +p54682 +sg25267 +g27 +sg25275 +S'unknown date\n' +p54683 +sg25268 +S'"La partie de chasse de Henri IV" VI' +p54684 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p54685 +sa(dp54686 +g25267 +g27 +sg25268 +S'Carved Wooden Hitching Post' +p54687 +sg25270 +S'Rose Campbell-Gerke' +p54688 +sa(dp54689 +g25267 +g27 +sg25268 +S'Hitching Post' +p54690 +sg25270 +S'Milton Grubstein' +p54691 +sa(dp54692 +g25267 +g27 +sg25268 +S'Cast Iron Hitching Post' +p54693 +sg25270 +S'V.L. Vance' +p54694 +sa(dp54695 +g25267 +g27 +sg25268 +S'Horse Head Hitching Post' +p54696 +sg25270 +S'Elizabeth Fairchild' +p54697 +sa(dp54698 +g25267 +g27 +sg25268 +S'Horse Head Hitching Post' +p54699 +sg25270 +S'Vincent P. Rosel' +p54700 +sa(dp54701 +g25267 +g27 +sg25268 +S'Iron Hitching Post' +p54702 +sg25270 +S'Samuel Fineman' +p54703 +sa(dp54704 +g25267 +g27 +sg25268 +S'Horse Head Hitching Post' +p54705 +sg25270 +S'Hilda Olson' +p54706 +sa(dp54707 +g25267 +g27 +sg25268 +S'Cast Iron Hitching Post' +p54708 +sg25270 +S'V.L. Vance' +p54709 +sa(dp54710 +g25267 +g27 +sg25268 +S'Iron Hitching Post' +p54711 +sg25270 +S'Rose Campbell-Gerke' +p54712 +sa(dp54713 +g25267 +g27 +sg25268 +S'Hitching Post' +p54714 +sg25270 +S'Gladys Phillips' +p54715 +sa(dp54716 +g25273 +S'pen and black ink with gray wash and white heightening' +p54717 +sg25267 +g27 +sg25275 +S'1765' +p54718 +sg25268 +S'Title Page for Marmontel\'s "Contes moraux"' +p54719 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p54720 +sa(dp54721 +g25267 +g27 +sg25268 +S'Iron Hitching Post' +p54722 +sg25270 +S'Samuel Fineman' +p54723 +sa(dp54724 +g25267 +g27 +sg25268 +S'Humidor' +p54725 +sg25270 +S'John B. Moll' +p54726 +sa(dp54727 +g25267 +g27 +sg25268 +S'Hot Water Dish and Beaker' +p54728 +sg25270 +S'Amelia Tuccio' +p54729 +sa(dp54730 +g25267 +g27 +sg25268 +S'Horse Shoe' +p54731 +sg25270 +S'Stanley Mazur' +p54732 +sa(dp54733 +g25267 +g27 +sg25268 +S'Ox Shoes' +p54734 +sg25270 +S'Walter Praefke' +p54735 +sa(dp54736 +g25267 +g27 +sg25268 +S'Bog Shoe for Horse' +p54737 +sg25270 +S'James Vail' +p54738 +sa(dp54739 +g25267 +g27 +sg25268 +S'Mule Shoe' +p54740 +sg25270 +S'Manuel G. Runyan' +p54741 +sa(dp54742 +g25267 +g27 +sg25268 +S'Collar For Burro' +p54743 +sg25270 +S'Roberta Elvis' +p54744 +sa(dp54745 +g25267 +g27 +sg25268 +S'Horse Collar and Hame' +p54746 +sg25270 +S'Wilbur M Rice' +p54747 +sa(dp54748 +g25267 +g27 +sg25268 +S'Horse Collar' +p54749 +sg25270 +S'Sydney Roberts' +p54750 +sa(dp54751 +g25273 +S'bound vol: original contents: 24 drawings, some drawings being removed from the volume; see separate entries for locations' +p54752 +sg25267 +g27 +sg25275 +S'1765' +p54753 +sg25268 +S'Album of Preliminary Drawings for Marmontel\'s "Contes moreaux"' +p54754 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p54755 +sa(dp54756 +g25267 +g27 +sg25268 +S'Bucket Hooks' +p54757 +sg25270 +S'Paul Poffinbarger' +p54758 +sa(dp54759 +g25267 +g27 +sg25268 +S'Pot Hooks' +p54760 +sg25270 +S'Fred Hassebrock' +p54761 +sa(dp54762 +g25267 +g27 +sg25268 +S'Wrought Iron Pot Hooks' +p54763 +sg25270 +S'Fred Hassebrock' +p54764 +sa(dp54765 +g25267 +g27 +sg25268 +S'Meat Hook' +p54766 +sg25270 +S'George Spector' +p54767 +sa(dp54768 +g25267 +g27 +sg25268 +S'Iron Pot Hook' +p54769 +sg25270 +S'D.J. Grant' +p54770 +sa(dp54771 +g25267 +g27 +sg25268 +S'Grappling Hooks' +p54772 +sg25270 +S'Alexander Anderson' +p54773 +sa(dp54774 +g25267 +g27 +sg25268 +S'Rug Hooks' +p54775 +sg25270 +S'Mary Fitzgerald' +p54776 +sa(dp54777 +g25267 +g27 +sg25268 +S'Iron Pot Hook' +p54778 +sg25270 +S'Marin J. Bright' +p54779 +sa(dp54780 +g25267 +g27 +sg25268 +S'Ceiling Hook' +p54781 +sg25270 +S'Henrietta S. Hukill' +p54782 +sa(dp54783 +g25267 +g27 +sg25268 +S'Log Loading Hook' +p54784 +sg25270 +S'Harold Ballerd' +p54785 +sa(dp54786 +g25273 +S'pen and black ink with gray wash and touches of white' +p54787 +sg25267 +g27 +sg25275 +S'1765' +p54788 +sg25268 +S'Alcibiade' +p54789 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p54790 +sa(dp54791 +g25267 +g27 +sg25268 +S'Grappling Hook' +p54792 +sg25270 +S'Frank Volem' +p54793 +sa(dp54794 +g25267 +g27 +sg25268 +S'Hoe' +p54795 +sg25270 +S'George File' +p54796 +sa(dp54797 +g25267 +g27 +sg25268 +S'Hoe Blade' +p54798 +sg25270 +S'William Hoffman' +p54799 +sa(dp54800 +g25267 +g27 +sg25268 +S'Grum Hoe' +p54801 +sg25270 +S'Herman O. Stroh' +p54802 +sa(dp54803 +g25267 +g27 +sg25268 +S'Horse Hobble' +p54804 +sg25270 +S'Mary Hansen' +p54805 +sa(dp54806 +g25267 +g27 +sg25268 +S'Horse Hobble' +p54807 +sg25270 +S'Rose Campbell-Gerke' +p54808 +sa(dp54809 +g25267 +g27 +sg25268 +S'Iron Hitching Post' +p54810 +sg25270 +S'George Constantine' +p54811 +sa(dp54812 +g25267 +g27 +sg25268 +S'Cast Iron Hitching Post' +p54813 +sg25270 +S'David Ramage' +p54814 +sa(dp54815 +g25267 +g27 +sg25268 +S'Hitching Post' +p54816 +sg25270 +S'Frank Eiseman' +p54817 +sa(dp54818 +g25267 +g27 +sg25268 +S'Cast Iron Hitching Post' +p54819 +sg25270 +S'Eugene Croe' +p54820 +sa(dp54821 +g25273 +S'pen and black ink with gray wash and touches of white' +p54822 +sg25267 +g27 +sg25275 +S'1765' +p54823 +sg25268 +S'Soliman II' +p54824 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p54825 +sa(dp54826 +g25267 +g27 +sg25268 +S'Cast Iron Dobbie' +p54827 +sg25270 +S'Rex F. Bush' +p54828 +sa(dp54829 +g25267 +g27 +sg25268 +S'Iron Hitching Post' +p54830 +sg25270 +S'Samuel Fineman' +p54831 +sa(dp54832 +g25267 +g27 +sg25268 +S'Hitching Post' +p54833 +sg25270 +S'Walter Hochstrasser' +p54834 +sa(dp54835 +g25267 +g27 +sg25268 +S'Hitching Post' +p54836 +sg25270 +S'Walter Hochstrasser' +p54837 +sa(dp54838 +g25267 +g27 +sg25268 +S'Hitching Post' +p54839 +sg25270 +S'Norma Lockwood' +p54840 +sa(dp54841 +g25267 +g27 +sg25268 +S'Hitching Post' +p54842 +sg25270 +S'Stanley Mazur' +p54843 +sa(dp54844 +g25267 +g27 +sg25268 +S'Cast Iron Hitching Post' +p54845 +sg25270 +S'V.L. Vance' +p54846 +sa(dp54847 +g25267 +g27 +sg25268 +S'Hitching Post' +p54848 +sg25270 +S'Gerard Barnett' +p54849 +sa(dp54850 +g25267 +g27 +sg25268 +S'Spiral Hay Fork' +p54851 +sg25270 +S'Oscar Bluhme' +p54852 +sa(dp54853 +g25267 +g27 +sg25268 +S'Straw Rake' +p54854 +sg25270 +S'Wayne White' +p54855 +sa(dp54856 +g25273 +S'pen and black ink with gray wash and touches of white' +p54857 +sg25267 +g27 +sg25275 +S'1765' +p54858 +sg25268 +S'Le Scrupule' +p54859 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p54860 +sa(dp54861 +g25267 +g27 +sg25268 +S'Sharps Rifle' +p54862 +sg25270 +S'Clyde L. Cheney' +p54863 +sa(dp54864 +g25267 +g27 +sg25268 +S'Potato Grinder' +p54865 +sg25270 +S'Doris Hollingsworth' +p54866 +sa(dp54867 +g25267 +g27 +sg25268 +S'Sausage Grinder' +p54868 +sg25270 +S'John Koehl' +p54869 +sa(dp54870 +g25267 +g27 +sg25268 +S'Gramophone' +p54871 +sg25270 +S'Charles Bowman' +p54872 +sa(dp54873 +g25267 +g27 +sg25268 +S'Gate Post' +p54874 +sg25270 +S'Edward DiGennero' +p54875 +sa(dp54876 +g25267 +g27 +sg25268 +S'Spice Grinder' +p54877 +sg25270 +S'Columbus Simpson' +p54878 +sa(dp54879 +g25267 +g27 +sg25268 +S'Vase' +p54880 +sg25270 +S'Elizabeth Dimling' +p54881 +sa(dp54882 +g25267 +g27 +sg25268 +S'Glass Flower Holder' +p54883 +sg25270 +S'Magnus S. Fossum' +p54884 +sa(dp54885 +g25267 +g27 +sg25268 +S'Candlestick' +p54886 +sg25270 +S'Gertrude Lemberg' +p54887 +sa(dp54888 +g25267 +g27 +sg25268 +S'Glass Bowl' +p54889 +sg25270 +S'Rolland Livingstone' +p54890 +sa(dp54891 +g25273 +S'pen and black ink with gray wash and touches of white' +p54892 +sg25267 +g27 +sg25275 +S'1765' +p54893 +sg25268 +S'Les Quatre flacons' +p54894 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p54895 +sa(dp54896 +g25267 +g27 +sg25268 +S'Glass' +p54897 +sg25270 +S'J. Howard Iams' +p54898 +sa(dp54899 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p54900 +sg25270 +S'Roberta Elvis' +p54901 +sa(dp54902 +g25267 +g27 +sg25268 +S'Glass Compote' +p54903 +sg25270 +S'Katherine Hastings' +p54904 +sa(dp54905 +g25267 +g27 +sg25268 +S'Preserve Dish' +p54906 +sg25270 +S'J. Howard Iams' +p54907 +sa(dp54908 +g25267 +g27 +sg25268 +S'Candlestick' +p54909 +sg25270 +S'Hebilly West' +p54910 +sa(dp54911 +g25267 +g27 +sg25268 +S'Glass' +p54912 +sg25270 +S'American 20th Century' +p54913 +sa(dp54914 +g25267 +g27 +sg25268 +S'Candlestick' +p54915 +sg25270 +S'American 20th Century' +p54916 +sa(dp54917 +g25267 +g27 +sg25268 +S'Candlestick' +p54918 +sg25270 +S'Gertrude Lemberg' +p54919 +sa(dp54920 +g25267 +g27 +sg25268 +S'Glass' +p54921 +sg25270 +S'J. Howard Iams' +p54922 +sa(dp54923 +g25267 +g27 +sg25268 +S'Lidded Compote' +p54924 +sg25270 +S'Albert Eyth' +p54925 +sa(dp54926 +g25273 +S'pen and black ink with gray wash and touches of white' +p54927 +sg25267 +g27 +sg25275 +S'1765' +p54928 +sg25268 +S'Lausus et Lydie' +p54929 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p54930 +sa(dp54931 +g25267 +g27 +sg25268 +S'Spoon Holder' +p54932 +sg25270 +S'Anthony Zuccarello' +p54933 +sa(dp54934 +g25267 +g27 +sg25268 +S'Wine Glass' +p54935 +sg25270 +S'Raymond Manupelli' +p54936 +sa(dp54937 +g25267 +g27 +sg25268 +S'Wine Glass' +p54938 +sg25270 +S'Albert Eyth' +p54939 +sa(dp54940 +g25267 +g27 +sg25268 +S'Beer Glass' +p54941 +sg25270 +S'Albert Eyth' +p54942 +sa(dp54943 +g25267 +g27 +sg25268 +S'Match Holder' +p54944 +sg25270 +S'Albert Eyth' +p54945 +sa(dp54946 +g25267 +g27 +sg25268 +S'Pitcher' +p54947 +sg25270 +S'Joseph Mitry' +p54948 +sa(dp54949 +g25267 +g27 +sg25268 +S'Cobalt Pitcher' +p54950 +sg25270 +S'Robert Stewart' +p54951 +sa(dp54952 +g25267 +g27 +sg25268 +S'Blue Pitcher' +p54953 +sg25270 +S'Vincent Burzy' +p54954 +sa(dp54955 +g25267 +g27 +sg25268 +S'Glass Mouse' +p54956 +sg25270 +S'American 20th Century' +p54957 +sa(dp54958 +g25267 +g27 +sg25268 +S'Jar' +p54959 +sg25270 +S'Charles Caseau' +p54960 +sa(dp54961 +g25268 +S'Le Mari sylphe' +p54962 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p54963 +sg25273 +S'pen and black ink with gray wash and touches of white' +p54964 +sg25275 +S'1765' +p54965 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006eb1.jpg' +p54966 +sg25267 +g27 +sa(dp54967 +g25267 +g27 +sg25268 +S'Glass Sugar Bowl' +p54968 +sg25270 +S'Michael J. Miceli' +p54969 +sa(dp54970 +g25267 +g27 +sg25268 +S'Pitcher' +p54971 +sg25270 +S'S. Brodsky' +p54972 +sa(dp54973 +g25267 +g27 +sg25268 +S'Bowl' +p54974 +sg25270 +S'John Tarantino' +p54975 +sa(dp54976 +g25267 +g27 +sg25268 +S'Bowl' +p54977 +sg25270 +S'Artist Information (' +p54978 +sa(dp54979 +g25267 +g27 +sg25268 +S'Flower Pot and Base' +p54980 +sg25270 +S'Janet Riza' +p54981 +sa(dp54982 +g25267 +g27 +sg25268 +S'Glass' +p54983 +sg25270 +S'S. Brodsky' +p54984 +sa(dp54985 +g25267 +g27 +sg25268 +S'Bowl' +p54986 +sg25270 +S'Nicholas Amantea' +p54987 +sa(dp54988 +g25267 +g27 +sg25268 +S'Glass Container' +p54989 +sg25270 +S'S. Brodsky' +p54990 +sa(dp54991 +g25267 +g27 +sg25268 +S'Bowl' +p54992 +sg25270 +S'John Dana' +p54993 +sa(dp54994 +g25267 +g27 +sg25268 +S'Candlestick' +p54995 +sg25270 +S'Ralph Atkinson' +p54996 +sa(dp54997 +g25273 +S'pen and black ink with gray wash and touches of white' +p54998 +sg25267 +g27 +sg25275 +S'1765' +p54999 +sg25268 +S'Heureusement' +p55000 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p55001 +sa(dp55002 +g25267 +g27 +sg25268 +S'Flatiron' +p55003 +sg25270 +S'Maurice Van Felix' +p55004 +sa(dp55005 +g25267 +g27 +sg25268 +S'Flatiron' +p55006 +sg25270 +S'Maurice Van Felix' +p55007 +sa(dp55008 +g25267 +g27 +sg25268 +S'Iron' +p55009 +sg25270 +S'Gerard Barnett' +p55010 +sa(dp55011 +g25267 +g27 +sg25268 +S'Flatiron' +p55012 +sg25270 +S'Geoffrey Holt' +p55013 +sa(dp55014 +g25267 +g27 +sg25268 +S'Mirror Stand: Detail of Saucer' +p55015 +sg25270 +S'Samuel O. Klein' +p55016 +sa(dp55017 +g25267 +g27 +sg25268 +S'Cast Iron Hat Rack' +p55018 +sg25270 +S'Lucien Verbeke' +p55019 +sa(dp55020 +g25267 +g27 +sg25268 +S'Muskego Church Chair' +p55021 +sg25270 +S'Bertrand E. Old' +p55022 +sa(dp55023 +g25267 +g27 +sg25268 +S'Muskego Church' +p55024 +sg25270 +S'Bertrand E. Old' +p55025 +sa(dp55026 +g25267 +g27 +sg25268 +S'Muskego Church' +p55027 +sg25270 +S'Bertrand E. Old' +p55028 +sa(dp55029 +g25267 +g27 +sg25268 +S'Interior' +p55030 +sg25270 +S'American 20th Century' +p55031 +sa(dp55032 +g25273 +S'pen and black ink with gray wash and touches of white' +p55033 +sg25267 +g27 +sg25275 +S'1765' +p55034 +sg25268 +S'Les Deux infortunees' +p55035 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p55036 +sa(dp55037 +g25267 +g27 +sg25268 +S'Interior' +p55038 +sg25270 +S'M. Rosenshield-von-Paulin' +p55039 +sa(dp55040 +g25267 +g27 +sg25268 +S'Ink and Pen Stand' +p55041 +sg25270 +S'Robert Cole' +p55042 +sa(dp55043 +g25267 +g27 +sg25268 +S"Woman's Gaters" +p55044 +sg25270 +S'Mary Berner' +p55045 +sa(dp55046 +g25267 +g27 +sg25268 +S'Toleware Ink Stand' +p55047 +sg25270 +S'H. Langden Brown' +p55048 +sa(dp55049 +g25267 +g27 +sg25268 +S"Embroidered Woman's Dress" +p55050 +sg25270 +S'Michael Trekur' +p55051 +sa(dp55052 +g25267 +g27 +sg25268 +S'Section of Mat' +p55053 +sg25270 +S'Mary Berner' +p55054 +sa(dp55055 +g25267 +g27 +sg25268 +S"Woman's Beaded Skirt" +p55056 +sg25270 +S'Melita Hofmann' +p55057 +sa(dp55058 +g25267 +g27 +sg25268 +S'Material Woven from Cat-tails' +p55059 +sg25270 +S'Melita Hofmann' +p55060 +sa(dp55061 +g25267 +g27 +sg25268 +S'Black Cotton Coat' +p55062 +sg25270 +S'Michael Trekur' +p55063 +sa(dp55064 +g25267 +g27 +sg25268 +S'Dark Brown Cotton Coat' +p55065 +sg25270 +S'Michael Trekur' +p55066 +sa(dp55067 +g25273 +S'pen and black ink with gray wash and touches of white' +p55068 +sg25267 +g27 +sg25275 +S'1765' +p55069 +sg25268 +S'Tout ou rien' +p55070 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p55071 +sa(dp55072 +g25267 +g27 +sg25268 +S'Moccasin' +p55073 +sg25270 +S'Charles Charon' +p55074 +sa(dp55075 +g25267 +g27 +sg25268 +S'Box' +p55076 +sg25270 +S'Melita Hofmann' +p55077 +sa(dp55078 +g25267 +g27 +sg25268 +S'Belt' +p55079 +sg25270 +S'Mary Berner' +p55080 +sa(dp55081 +g25267 +g27 +sg25268 +S'Armband' +p55082 +sg25270 +S'George B. Wally' +p55083 +sa(dp55084 +g25267 +g27 +sg25268 +S"Man's Shoulder Pouch" +p55085 +sg25270 +S'Melita Hofmann' +p55086 +sa(dp55087 +g25267 +g27 +sg25268 +S'Moccasin' +p55088 +sg25270 +S'Mary Berner' +p55089 +sa(dp55090 +g25267 +g27 +sg25268 +S'Beadwork Coat' +p55091 +sg25270 +S'Melita Hofmann' +p55092 +sa(dp55093 +g25267 +g27 +sg25268 +S'Box' +p55094 +sg25270 +S'Melita Hofmann' +p55095 +sa(dp55096 +g25267 +g27 +sg25268 +S'Basket' +p55097 +sg25270 +S'Michael Trekur' +p55098 +sa(dp55099 +g25267 +g27 +sg25268 +S'Neck Band' +p55100 +sg25270 +S'Mary Berner' +p55101 +sa(dp55102 +g25273 +S'pen and black ink with gray wash and touches of white' +p55103 +sg25267 +g27 +sg25275 +S'1765' +p55104 +sg25268 +S'Le Philosophe soi disant' +p55105 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p55106 +sa(dp55107 +g25267 +g27 +sg25268 +S'Basket' +p55108 +sg25270 +S'Michael Trekur' +p55109 +sa(dp55110 +g25267 +g27 +sg25268 +S'Basket' +p55111 +sg25270 +S'Charles Charon' +p55112 +sa(dp55113 +g25267 +g27 +sg25268 +S'Bowl' +p55114 +sg25270 +S'American 20th Century' +p55115 +sa(dp55116 +g25267 +g27 +sg25268 +S'Bowl' +p55117 +sg25270 +S'Margaret Knapp' +p55118 +sa(dp55119 +g25267 +g27 +sg25268 +S'Ice Cream Freezer' +p55120 +sg25270 +S'William H. Edwards' +p55121 +sa(dp55122 +g25267 +g27 +sg25268 +S'Handmade Soldering Iron' +p55123 +sg25270 +S'Harvey Thoss' +p55124 +sa(dp55125 +g25267 +g27 +sg25268 +S'Curling Iron' +p55126 +sg25270 +S'Wellington Blewett' +p55127 +sa(dp55128 +g25267 +g27 +sg25268 +S'Plaster Iron' +p55129 +sg25270 +S'John Lang' +p55130 +sa(dp55131 +g25267 +g27 +sg25268 +S'Fluting Iron' +p55132 +sg25270 +S'Regina Henderer' +p55133 +sa(dp55134 +g25267 +g27 +sg25268 +S'Hand Fluter' +p55135 +sg25270 +S'Racine Vernier' +p55136 +sa(dp55137 +g25273 +S'pen and black ink with gray wash and touches of white' +p55138 +sg25267 +g27 +sg25275 +S'1765' +p55139 +sg25268 +S'La Berg\xc3\xa8re des Alpes' +p55140 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p55141 +sa(dp55142 +g25267 +g27 +sg25268 +S'Fluting Iron' +p55143 +sg25270 +S'Joseph L. Boyd' +p55144 +sa(dp55145 +g25267 +g27 +sg25268 +S'Fluting Iron' +p55146 +sg25270 +S'J. Howard Iams' +p55147 +sa(dp55148 +g25267 +g27 +sg25268 +S'Fluting Iron' +p55149 +sg25270 +S'Albert Geuppert' +p55150 +sa(dp55151 +g25267 +g27 +sg25268 +S'Fluting Iron' +p55152 +sg25270 +S'Lon Cronk' +p55153 +sa(dp55154 +g25267 +g27 +sg25268 +S'Fluting Iron' +p55155 +sg25270 +S'Lon Cronk' +p55156 +sa(dp55157 +g25267 +g27 +sg25268 +S'Hand Fluting Iron' +p55158 +sg25270 +S'Samuel W. Ford' +p55159 +sa(dp55160 +g25267 +g27 +sg25268 +S'Fluter' +p55161 +sg25270 +S'John H. Tercuzzi' +p55162 +sa(dp55163 +g25267 +g27 +sg25268 +S'Fluter' +p55164 +sg25270 +S'Frank J. Mace' +p55165 +sa(dp55166 +g25267 +g27 +sg25268 +S'Iron and Trivet' +p55167 +sg25270 +S'LeRoy Griffith' +p55168 +sa(dp55169 +g25267 +g27 +sg25268 +S'Hand Iron' +p55170 +sg25270 +S'Robert Rigsby' +p55171 +sa(dp55172 +g25273 +S'pen and black ink with gray wash' +p55173 +sg25267 +g27 +sg25275 +S'1765' +p55174 +sg25268 +S'La Mauvaise m\xc3\xa8re' +p55175 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p55176 +sa(dp55177 +g25267 +g27 +sg25268 +S'Flatiron' +p55178 +sg25270 +S'Esther Williams' +p55179 +sa(dp55180 +g25267 +g27 +sg25268 +S'Flatiron' +p55181 +sg25270 +S'Gene Luedke' +p55182 +sa(dp55183 +g25267 +g27 +sg25268 +S'Pressing Iron' +p55184 +sg25270 +S'David S. De Vault' +p55185 +sa(dp55186 +g25267 +g27 +sg25268 +S'Iron' +p55187 +sg25270 +S'A.R. Tolman' +p55188 +sa(dp55189 +g25267 +g27 +sg25268 +S'Flat Iron' +p55190 +sg25270 +S'Joseph Stonefield' +p55191 +sa(dp55192 +g25267 +g27 +sg25268 +S'Hand Iron' +p55193 +sg25270 +S'Michael Chomyk' +p55194 +sa(dp55195 +g25267 +g27 +sg25268 +S'Hand Iron' +p55196 +sg25270 +S'Michael Chomyk' +p55197 +sa(dp55198 +g25267 +g27 +sg25268 +S'Flatiron' +p55199 +sg25270 +S'George Roehl' +p55200 +sa(dp55201 +g25267 +g27 +sg25268 +S"Tailor's Goose Iron" +p55202 +sg25270 +S'Henrietta S. Hukill' +p55203 +sa(dp55204 +g25267 +g27 +sg25268 +S'Flatiron' +p55205 +sg25270 +S'William Spiecker' +p55206 +sa(dp55207 +g25273 +S'pen and black ink with gray wash and touches of white' +p55208 +sg25267 +g27 +sg25275 +S'1765' +p55209 +sg25268 +S'La Bonne m\xc3\xa8re' +p55210 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p55211 +sa(dp55212 +g25267 +g27 +sg25268 +S'Iron' +p55213 +sg25270 +S'Arlington Gregg' +p55214 +sa(dp55215 +g25267 +g27 +sg25268 +S"Tailor's Iron" +p55216 +sg25270 +S'Herndon Hightower' +p55217 +sa(dp55218 +g25267 +g27 +sg25268 +S'Flatiron' +p55219 +sg25270 +S'Sarkis Erganian' +p55220 +sa(dp55221 +g25267 +g27 +sg25268 +S'Flatiron' +p55222 +sg25270 +S'Alf Bruseth' +p55223 +sa(dp55224 +g25267 +g27 +sg25268 +S'Flatiron' +p55225 +sg25270 +S'Artist Information (' +p55226 +sa(dp55227 +g25267 +g27 +sg25268 +S'Ornamental Iron Rosette' +p55228 +sg25270 +S'Harvey Thoss' +p55229 +sa(dp55230 +g25267 +g27 +sg25268 +S'Rosette' +p55231 +sg25270 +S'Clarence Secor' +p55232 +sa(dp55233 +g25267 +g27 +sg25268 +S'Leaf Finial' +p55234 +sg25270 +S'Albert Geuppert' +p55235 +sa(dp55236 +g25267 +g27 +sg25268 +S'Dolphin Ornament' +p55237 +sg25270 +S'Albert Geuppert' +p55238 +sa(dp55239 +g25267 +g27 +sg25268 +S'Scroll' +p55240 +sg25270 +S'Erwin Stenzel' +p55241 +sa(dp55242 +g25273 +S'pen and black ink with gray wash' +p55243 +sg25267 +g27 +sg25275 +S'1765' +p55244 +sg25268 +S"L'Ecole des p\xc3\xa8res" +p55245 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p55246 +sa(dp55247 +g25267 +g27 +sg25268 +S'Ornamental Iron Grill' +p55248 +sg25270 +S'Clarence Secor' +p55249 +sa(dp55250 +g25267 +g27 +sg25268 +S'Rosette' +p55251 +sg25270 +S'Max Fernekes' +p55252 +sa(dp55253 +g25267 +g27 +sg25268 +S'Rosette' +p55254 +sg25270 +S'Harvey Thoss' +p55255 +sa(dp55256 +g25267 +g27 +sg25268 +S'Perforated Rosette' +p55257 +sg25270 +S'Edward Unger' +p55258 +sa(dp55259 +g25267 +g27 +sg25268 +S'Rosette' +p55260 +sg25270 +S'Lloyd Charles Lemcke' +p55261 +sa(dp55262 +g25267 +g27 +sg25268 +S'Perforated Scroll' +p55263 +sg25270 +S'Clarence Secor' +p55264 +sa(dp55265 +g25267 +g27 +sg25268 +S'Arch Grill' +p55266 +sg25270 +S'Max Fernekes' +p55267 +sa(dp55268 +g25267 +g27 +sg25268 +S'Ornamental Iron Leaf' +p55269 +sg25270 +S'Lloyd Charles Lemcke' +p55270 +sa(dp55271 +g25267 +g27 +sg25268 +S'Ornamental Iron Leaf' +p55272 +sg25270 +S'Max Fernekes' +p55273 +sa(dp55274 +g25267 +g27 +sg25268 +S'Ornamental Iron Leaf' +p55275 +sg25270 +S'Walter Praefke' +p55276 +sa(dp55277 +g25273 +S'pen and black ink with gray wash and touches of white' +p55278 +sg25267 +g27 +sg25275 +S'1765' +p55279 +sg25268 +S'Ann\xc3\xaate et Lubin' +p55280 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p55281 +sa(dp55282 +g25267 +g27 +sg25268 +S'Leaf and Scroll' +p55283 +sg25270 +S'Eugene Bartz' +p55284 +sa(dp55285 +g25267 +g27 +sg25268 +S'Ornamental Iron Leaf' +p55286 +sg25270 +S'Thomas Dooley' +p55287 +sa(dp55288 +g25267 +g27 +sg25268 +S'Rosette' +p55289 +sg25270 +S'Robert Tardiff' +p55290 +sa(dp55291 +g25267 +g27 +sg25268 +S'Crowning Leaf' +p55292 +sg25270 +S'Albert Geuppert' +p55293 +sa(dp55294 +g25267 +g27 +sg25268 +S'Scroll' +p55295 +sg25270 +S'Max Fernekes' +p55296 +sa(dp55297 +g25267 +g27 +sg25268 +S'Sidewalk Grating' +p55298 +sg25270 +S'Sydney Roberts' +p55299 +sa(dp55300 +g25267 +g27 +sg25268 +S'Cast Iron Window Lintel' +p55301 +sg25270 +S'William Kerby' +p55302 +sa(dp55303 +g25267 +g27 +sg25268 +S'Cast Iron Balcony' +p55304 +sg25270 +S'Stanley Mazur' +p55305 +sa(dp55306 +g25267 +g27 +sg25268 +S'Porch Railing' +p55307 +sg25270 +S'Charles Moss' +p55308 +sa(dp55309 +g25267 +g27 +sg25268 +S'Grille on Porch' +p55310 +sg25270 +S'Charles Moss' +p55311 +sa(dp55312 +g25273 +S'pen and black ink with gray wash' +p55313 +sg25267 +g27 +sg25275 +S'1765' +p55314 +sg25268 +S'Les Mariages Samnites' +p55315 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p55316 +sa(dp55317 +g25267 +g27 +sg25268 +S'Gate and Gatepost' +p55318 +sg25270 +S'Jerome Hoxie' +p55319 +sa(dp55320 +g25267 +g27 +sg25268 +S'Gate and Gatepost' +p55321 +sg25270 +S'Jerome Hoxie' +p55322 +sa(dp55323 +g25267 +g27 +sg25268 +S'Iron Gate' +p55324 +sg25270 +S'Natalie Simon' +p55325 +sa(dp55326 +g25267 +g27 +sg25268 +S'Iron Dragon' +p55327 +sg25270 +S'Pearl Torell' +p55328 +sa(dp55329 +g25267 +g27 +sg25268 +S'Portion of Fence' +p55330 +sg25270 +S'Rose Campbell-Gerke' +p55331 +sa(dp55332 +g25267 +g27 +sg25268 +S'Ornamental Stair Rail' +p55333 +sg25270 +S'Natalie Simon' +p55334 +sa(dp55335 +g25267 +g27 +sg25268 +S'Iron Fence' +p55336 +sg25270 +S'Florence Huston' +p55337 +sa(dp55338 +g25267 +g27 +sg25268 +S'Cast Iron Gate' +p55339 +sg25270 +S'Al Curry' +p55340 +sa(dp55341 +g25267 +g27 +sg25268 +S'Cast Iron Rail and Gate' +p55342 +sg25270 +S'Arelia Arbo' +p55343 +sa(dp55344 +g25267 +g27 +sg25268 +S'Cast Iron Railing' +p55345 +sg25270 +S'Lucien Verbeke' +p55346 +sa(dp55347 +g25273 +S'pen and black ink with gray wash' +p55348 +sg25267 +g27 +sg25275 +S'1765' +p55349 +sg25268 +S'Laurette' +p55350 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p55351 +sa(dp55352 +g25267 +g27 +sg25268 +S'Iron Balcony' +p55353 +sg25270 +S'Lucien Verbeke' +p55354 +sa(dp55355 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Rail' +p55356 +sg25270 +S'Ray Price' +p55357 +sa(dp55358 +g25267 +g27 +sg25268 +S'Balcony Railing' +p55359 +sg25270 +S'Lucien Verbeke' +p55360 +sa(dp55361 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Rail' +p55362 +sg25270 +S'Ray Price' +p55363 +sa(dp55364 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Rail' +p55365 +sg25270 +S'Ray Price' +p55366 +sa(dp55367 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Railing' +p55368 +sg25270 +S'Thomas Byrne' +p55369 +sa(dp55370 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Railing' +p55371 +sg25270 +S'Arelia Arbo' +p55372 +sa(dp55373 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Rail' +p55374 +sg25270 +S'Lucien Verbeke' +p55375 +sa(dp55376 +g25267 +g27 +sg25268 +S'Cast Iron Window Grill' +p55377 +sg25270 +S'Thomas Byrne' +p55378 +sa(dp55379 +g25267 +g27 +sg25268 +S'Cast Iron Window Balcony' +p55380 +sg25270 +S'Al Curry' +p55381 +sa(dp55382 +g25268 +S'Le Connoisseur' +p55383 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p55384 +sg25273 +S'pen and black ink with gray wash and touches of white' +p55385 +sg25275 +S'1765' +p55386 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e85.jpg' +p55387 +sg25267 +g27 +sa(dp55388 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Rail' +p55389 +sg25270 +S'Ray Price' +p55390 +sa(dp55391 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Rail' +p55392 +sg25270 +S'Arelia Arbo' +p55393 +sa(dp55394 +g25267 +g27 +sg25268 +S'Cast Iron Gallery Rail' +p55395 +sg25270 +S'Ray Price' +p55396 +sa(dp55397 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Rail' +p55398 +sg25270 +S'Al Curry' +p55399 +sa(dp55400 +g25267 +g27 +sg25268 +S'Cast Iron Fence Railing' +p55401 +sg25270 +S'Ray Price' +p55402 +sa(dp55403 +g25267 +g27 +sg25268 +S'Cast Iron Balcony' +p55404 +sg25270 +S'Thomas Byrne' +p55405 +sa(dp55406 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Rail' +p55407 +sg25270 +S'Thomas Byrne' +p55408 +sa(dp55409 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Railing' +p55410 +sg25270 +S'Ray Price' +p55411 +sa(dp55412 +g25267 +g27 +sg25268 +S'Iron Balcony Railing' +p55413 +sg25270 +S'Arelia Arbo' +p55414 +sa(dp55415 +g25267 +g27 +sg25268 +S'Grape Design Balcony' +p55416 +sg25270 +S'Thomas Byrne' +p55417 +sa(dp55418 +g25273 +S'pen and black ink with gray wash and touches of white' +p55419 +sg25267 +g27 +sg25275 +S'1765' +p55420 +sg25268 +S"L'heureux divorce" +p55421 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p55422 +sa(dp55423 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Rail' +p55424 +sg25270 +S'Thomas Byrne' +p55425 +sa(dp55426 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Rail' +p55427 +sg25270 +S'Al Curry' +p55428 +sa(dp55429 +g25267 +g27 +sg25268 +S'Iron Work on Stairway' +p55430 +sg25270 +S'Al Curry' +p55431 +sa(dp55432 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Rail' +p55433 +sg25270 +S'Thomas Byrne' +p55434 +sa(dp55435 +g25267 +g27 +sg25268 +S'Iron Work on Balcony' +p55436 +sg25270 +S'Al Curry' +p55437 +sa(dp55438 +g25267 +g27 +sg25268 +S'Cast Iron Pavilion' +p55439 +sg25270 +S'Thomas Byrne' +p55440 +sa(dp55441 +g25267 +g27 +sg25268 +S'Cast Iron Gate' +p55442 +sg25270 +S'Joseph L. Boyd' +p55443 +sa(dp55444 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Rail' +p55445 +sg25270 +S'Ray Price' +p55446 +sa(dp55447 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Rail' +p55448 +sg25270 +S'Thomas Byrne' +p55449 +sa(dp55450 +g25267 +g27 +sg25268 +S'Cast Iron Balcony' +p55451 +sg25270 +S'Lucien Verbeke' +p55452 +sa(dp55453 +g25273 +S'pen and black ink with gray wash and touches of white' +p55454 +sg25267 +g27 +sg25275 +S'1765' +p55455 +sg25268 +S'Le Bon mari' +p55456 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p55457 +sa(dp55458 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Rail' +p55459 +sg25270 +S'Al Curry' +p55460 +sa(dp55461 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Rail' +p55462 +sg25270 +S'Arelia Arbo' +p55463 +sa(dp55464 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Rail' +p55465 +sg25270 +S'Joseph L. Boyd' +p55466 +sa(dp55467 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Rail' +p55468 +sg25270 +S'Lucien Verbeke' +p55469 +sa(dp55470 +g25267 +g27 +sg25268 +S'Cast Iron Basement Vent' +p55471 +sg25270 +S'Ray Price' +p55472 +sa(dp55473 +g25267 +g27 +sg25268 +S'Cast Iron Porch' +p55474 +sg25270 +S'Gilbert Sackerman' +p55475 +sa(dp55476 +g25267 +g27 +sg25268 +S'Collonade' +p55477 +sg25270 +S'Gilbert Sackerman' +p55478 +sa(dp55479 +g25267 +g27 +sg25268 +S'Ornamental Iron' +p55480 +sg25270 +S'Gilbert Sackerman' +p55481 +sa(dp55482 +g25267 +g27 +sg25268 +S'Ornamental Iron' +p55483 +sg25270 +S'Gilbert Sackerman' +p55484 +sa(dp55485 +g25267 +g27 +sg25268 +S'Ornamental Iron' +p55486 +sg25270 +S'Gilbert Sackerman' +p55487 +sa(dp55488 +g25273 +S'pen and black ink with gray wash' +p55489 +sg25267 +g27 +sg25275 +S'1765' +p55490 +sg25268 +S'La Femme comme il y en a peu' +p55491 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p55492 +sa(dp55493 +g25267 +g27 +sg25268 +S'Cast Iron Porch Railing' +p55494 +sg25270 +S'Gilbert Sackerman' +p55495 +sa(dp55496 +g25267 +g27 +sg25268 +S'Iron Gate and Fence' +p55497 +sg25270 +S'Arelia Arbo' +p55498 +sa(dp55499 +g25267 +g27 +sg25268 +S'Iron Gate and Fence' +p55500 +sg25270 +S'Arelia Arbo' +p55501 +sa(dp55502 +g25267 +g27 +sg25268 +S'Iron Gate and Fence' +p55503 +sg25270 +S'Ray Price' +p55504 +sa(dp55505 +g25267 +g27 +sg25268 +S'Cast and Wrought Iron Fence' +p55506 +sg25270 +S'Arelia Arbo' +p55507 +sa(dp55508 +g25267 +g27 +sg25268 +S'Iron Gate and Fence' +p55509 +sg25270 +S'Ray Price' +p55510 +sa(dp55511 +g25267 +g27 +sg25268 +S'Iron Gate and Fence' +p55512 +sg25270 +S'Arelia Arbo' +p55513 +sa(dp55514 +g25267 +g27 +sg25268 +S'Iron Gate' +p55515 +sg25270 +S'Joseph L. Boyd' +p55516 +sa(dp55517 +g25267 +g27 +sg25268 +S'Iron Gate and Fence' +p55518 +sg25270 +S'Joseph L. Boyd' +p55519 +sa(dp55520 +g25267 +g27 +sg25268 +S'Iron Gate and Fence' +p55521 +sg25270 +S'Ray Price' +p55522 +sa(dp55523 +g25273 +S'pen and black ink with gray wash and touches of white' +p55524 +sg25267 +g27 +sg25275 +S'1765' +p55525 +sg25268 +S"L'Amitie \xc3\xa0 l'epreuve" +p55526 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p55527 +sa(dp55528 +g25267 +g27 +sg25268 +S'Iron Gate and Fence' +p55529 +sg25270 +S'Al Curry' +p55530 +sa(dp55531 +g25267 +g27 +sg25268 +S'Iron Gate and Fence' +p55532 +sg25270 +S'Arelia Arbo' +p55533 +sa(dp55534 +g25267 +g27 +sg25268 +S'Iron Gate and Fence' +p55535 +sg25270 +S'Ray Price' +p55536 +sa(dp55537 +g25267 +g27 +sg25268 +S'Cast Iron Ornament' +p55538 +sg25270 +S'Al Curry' +p55539 +sa(dp55540 +g25267 +g27 +sg25268 +S'Cast and Wrought Iron Ornament' +p55541 +sg25270 +S'Ray Price' +p55542 +sa(dp55543 +g25267 +g27 +sg25268 +S'Wrought Iron Gate and Fence' +p55544 +sg25270 +S'Lucien Verbeke' +p55545 +sa(dp55546 +g25267 +g27 +sg25268 +S'Iron Gate and Fence' +p55547 +sg25270 +S'Joseph L. Boyd' +p55548 +sa(dp55549 +g25267 +g27 +sg25268 +S'Cast and Wrought Iron Gate' +p55550 +sg25270 +S'Arelia Arbo' +p55551 +sa(dp55552 +g25267 +g27 +sg25268 +S'Iron Fence and Railing' +p55553 +sg25270 +S'Joseph L. Boyd' +p55554 +sa(dp55555 +g25267 +g27 +sg25268 +S'Cast Iron Gate and Fence' +p55556 +sg25270 +S'Lucien Verbeke' +p55557 +sa(dp55558 +g25273 +S'pen and black ink with gray wash and touches of white' +p55559 +sg25267 +g27 +sg25275 +S'1765' +p55560 +sg25268 +S'Le Misantrope corrig\xc3\xa9' +p55561 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p55562 +sa(dp55563 +g25267 +g27 +sg25268 +S'Cast Iron Gate and Fence' +p55564 +sg25270 +S'Al Curry' +p55565 +sa(dp55566 +g25267 +g27 +sg25268 +S'Cast Iron Gate' +p55567 +sg25270 +S'Al Curry' +p55568 +sa(dp55569 +g25267 +g27 +sg25268 +S'Cast Iron Gate and Fence' +p55570 +sg25270 +S'Ray Price' +p55571 +sa(dp55572 +g25267 +g27 +sg25268 +S'Cast Iron Gate' +p55573 +sg25270 +S'Lucien Verbeke' +p55574 +sa(dp55575 +g25267 +g27 +sg25268 +S'Iron Fence around Tomb' +p55576 +sg25270 +S'Thomas Byrne' +p55577 +sa(dp55578 +g25267 +g27 +sg25268 +S'Iron Gate and Fence' +p55579 +sg25270 +S'Thomas Byrne' +p55580 +sa(dp55581 +g25267 +g27 +sg25268 +S'Cast Iron Gate and Fence' +p55582 +sg25270 +S'Thomas Byrne' +p55583 +sa(dp55584 +g25267 +g27 +sg25268 +S'Iron Gate and Fence' +p55585 +sg25270 +S'Arelia Arbo' +p55586 +sa(dp55587 +g25267 +g27 +sg25268 +S'Cast Iron Gate and Fence' +p55588 +sg25270 +S'Joseph L. Boyd' +p55589 +sa(dp55590 +g25267 +g27 +sg25268 +S'Cast Iron Gate Railing' +p55591 +sg25270 +S'Ray Price' +p55592 +sa(dp55593 +g25268 +S'Yes or No' +p55594 +sg25270 +S'Jean-Michel Moreau the Younger' +p55595 +sg25273 +S', 1778' +p55596 +sg25275 +S'\n' +p55597 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037c5.jpg' +p55598 +sg25267 +g27 +sa(dp55599 +g25267 +g27 +sg25268 +S'Cast Iron Gate' +p55600 +sg25270 +S'Joseph L. Boyd' +p55601 +sa(dp55602 +g25267 +g27 +sg25268 +S'Cast Iron Window Grille' +p55603 +sg25270 +S'Austin L. Davison' +p55604 +sa(dp55605 +g25267 +g27 +sg25268 +S'Cast Ornament' +p55606 +sg25270 +S'Henry Zwysen' +p55607 +sa(dp55608 +g25267 +g27 +sg25268 +S'Standard from Iron Fence' +p55609 +sg25270 +S'Austin L. Davison' +p55610 +sa(dp55611 +g25267 +g27 +sg25268 +S'Iron Indian Head' +p55612 +sg25270 +S'Charles Moss' +p55613 +sa(dp55614 +g25267 +g27 +sg25268 +S'Fence Post' +p55615 +sg25270 +S'Albert Eyth' +p55616 +sa(dp55617 +g25267 +g27 +sg25268 +S'Iron Fence' +p55618 +sg25270 +S'Albert Eyth' +p55619 +sa(dp55620 +g25267 +g27 +sg25268 +S'Iron Ornament' +p55621 +sg25270 +S'Eugene Shellady' +p55622 +sa(dp55623 +g25267 +g27 +sg25268 +S'Window Grille Standards' +p55624 +sg25270 +S'Austin L. Davison' +p55625 +sa(dp55626 +g25267 +g27 +sg25268 +S'Coal Grate for Fireplace' +p55627 +sg25270 +S'Austin L. Davison' +p55628 +sa(dp55629 +g25268 +S'A Dancer' +p55630 +sg25270 +S'Jean-Michel Moreau the Younger' +p55631 +sg25273 +S', 1777' +p55632 +sg25275 +S'\n' +p55633 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005fb6.jpg' +p55634 +sg25267 +g27 +sa(dp55635 +g25267 +g27 +sg25268 +S'Window Grille' +p55636 +sg25270 +S'Austin L. Davison' +p55637 +sa(dp55638 +g25267 +g27 +sg25268 +S'Newel Figure' +p55639 +sg25270 +S'Milton Grubstein' +p55640 +sa(dp55641 +g25267 +g27 +sg25268 +S'Cast Iron Fence' +p55642 +sg25270 +S'Eugene Shellady' +p55643 +sa(dp55644 +g25267 +g27 +sg25268 +S'Cast Iron Fence Finial' +p55645 +sg25270 +S'Austin L. Davison' +p55646 +sa(dp55647 +g25267 +g27 +sg25268 +S'Window Grille' +p55648 +sg25270 +S'Austin L. Davison' +p55649 +sa(dp55650 +g25267 +g27 +sg25268 +S'Fence' +p55651 +sg25270 +S'Austin L. Davison' +p55652 +sa(dp55653 +g25267 +g27 +sg25268 +S'Fragment of Fence' +p55654 +sg25270 +S'Austin L. Davison' +p55655 +sa(dp55656 +g25267 +g27 +sg25268 +S'Window Grille' +p55657 +sg25270 +S'Austin L. Davison' +p55658 +sa(dp55659 +g25267 +g27 +sg25268 +S'Iron Officer on Horse' +p55660 +sg25270 +S'John Wilkes' +p55661 +sa(dp55662 +g25267 +g27 +sg25268 +S'Fence' +p55663 +sg25270 +S'Helen Alpiner Blumenstiel' +p55664 +sa(dp55665 +g25273 +S', 1770' +p55666 +sg25267 +g27 +sg25275 +S'\n' +p55667 +sg25268 +S"La Religion protegeant l'Humanite Contre la Fanatisme" +p55668 +sg25270 +S'Jean-Michel Moreau the Younger' +p55669 +sa(dp55670 +g25267 +g27 +sg25268 +S'Cast Iron Gate' +p55671 +sg25270 +S'Ralph Atkinson' +p55672 +sa(dp55673 +g25267 +g27 +sg25268 +S'Cast Iron Panel' +p55674 +sg25270 +S'Ralph Atkinson' +p55675 +sa(dp55676 +g25267 +g27 +sg25268 +S'Iron Gate' +p55677 +sg25270 +S'Ralph Atkinson' +p55678 +sa(dp55679 +g25267 +g27 +sg25268 +S'Cast Iron Gate Top' +p55680 +sg25270 +S'J. Howard Iams' +p55681 +sa(dp55682 +g25267 +g27 +sg25268 +S'Cast Iron Gate Top' +p55683 +sg25270 +S'J. Howard Iams' +p55684 +sa(dp55685 +g25267 +g27 +sg25268 +S'Cast Iron Fence' +p55686 +sg25270 +S'Charlotte Angus' +p55687 +sa(dp55688 +g25267 +g27 +sg25268 +S'Cast Iron Fencing' +p55689 +sg25270 +S'Charlotte Angus' +p55690 +sa(dp55691 +g25267 +g27 +sg25268 +S'Cast Iron Gate' +p55692 +sg25270 +S'Eugene Shellady' +p55693 +sa(dp55694 +g25267 +g27 +sg25268 +S'Cast Iron Gate' +p55695 +sg25270 +S'Albert Levone' +p55696 +sa(dp55697 +g25267 +g27 +sg25268 +S'Fencing' +p55698 +sg25270 +S'Eugene Shellady' +p55699 +sa(dp55700 +g25273 +S', published 1777' +p55701 +sg25267 +g27 +sg25275 +S'\n' +p55702 +sg25268 +S'Album of Preliminary Drawings for Marmontel\'s "Les Incas"' +p55703 +sg25270 +S'Jean-Michel Moreau the Younger' +p55704 +sa(dp55705 +g25267 +g27 +sg25268 +S'Cemetary Plot Enclosure' +p55706 +sg25270 +S'Charlotte Angus' +p55707 +sa(dp55708 +g25267 +g27 +sg25268 +S'Gate' +p55709 +sg25270 +S'Eugene Shellady' +p55710 +sa(dp55711 +g25267 +g27 +sg25268 +S'Fencing' +p55712 +sg25270 +S'Eugene Shellady' +p55713 +sa(dp55714 +g25267 +g27 +sg25268 +S'Cemetary Gate' +p55715 +sg25270 +S'Austin L. Davison' +p55716 +sa(dp55717 +g25267 +g27 +sg25268 +S'Cast Iron Window Grille' +p55718 +sg25270 +S'Austin L. Davison' +p55719 +sa(dp55720 +g25267 +g27 +sg25268 +S'Fragment of Fence' +p55721 +sg25270 +S'Austin L. Davison' +p55722 +sa(dp55723 +g25267 +g27 +sg25268 +S'Gate for Cemetary Plot' +p55724 +sg25270 +S'Austin L. Davison' +p55725 +sa(dp55726 +g25267 +g27 +sg25268 +S'Section of Cast Iron Balcony' +p55727 +sg25270 +S'Austin L. Davison' +p55728 +sa(dp55729 +g25267 +g27 +sg25268 +S'Foot Scraper' +p55730 +sg25270 +S'Francis Law Durand' +p55731 +sa(dp55732 +g25267 +g27 +sg25268 +S'Foot Scraper' +p55733 +sg25270 +S'Austin L. Davison' +p55734 +sa(dp55735 +g25273 +S', 1770' +p55736 +sg25267 +g27 +sg25275 +S'\n' +p55737 +sg25268 +S'Ses Levres en pronancant le voeu que son couer devoit abjurer' +p55738 +sg25270 +S'Jean-Michel Moreau the Younger' +p55739 +sa(dp55740 +g25267 +g27 +sg25268 +S'Foot Scraper' +p55741 +sg25270 +S'Milton Grubstein' +p55742 +sa(dp55743 +g25267 +g27 +sg25268 +S'Foot Scraper' +p55744 +sg25270 +S'Ralph Morton' +p55745 +sa(dp55746 +g25267 +g27 +sg25268 +S'Dachsund Foot Scraper' +p55747 +sg25270 +S'Henrietta S. Hukill' +p55748 +sa(dp55749 +g25267 +g27 +sg25268 +S'Foot Scraper' +p55750 +sg25270 +S'Franklin C. Moyan' +p55751 +sa(dp55752 +g25267 +g27 +sg25268 +S'Foot Scraper' +p55753 +sg25270 +S'John Price' +p55754 +sa(dp55755 +g25267 +g27 +sg25268 +S'Corner Shelf Bracket' +p55756 +sg25270 +S'Milton Grubstein' +p55757 +sa(dp55758 +g25267 +g27 +sg25268 +S'Bracket' +p55759 +sg25270 +S'Austin L. Davison' +p55760 +sa(dp55761 +g25267 +g27 +sg25268 +S'Plaque' +p55762 +sg25270 +S'Edmond Lorts' +p55763 +sa(dp55764 +g25267 +g27 +sg25268 +S'Cast Iron Lamp Bracket' +p55765 +sg25270 +S'Thomas Byrne' +p55766 +sa(dp55767 +g25267 +g27 +sg25268 +S'Cast Iron Urn Holder' +p55768 +sg25270 +S'Thomas Byrne' +p55769 +sa(dp55770 +g25268 +S'Portrait of a Man as Saint George' +p55771 +sg25270 +S'Jacopo Tintoretto' +p55772 +sg25273 +S'oil on canvas' +p55773 +sg25275 +S'1540/1550' +p55774 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a16.jpg' +p55775 +sg25267 +S"The son of a cloth dyer (\n The pose of this unidentified sitter recalls earlier portraits by\n Giorgione and Titian. Gazing over his right shoulder, the man rests his\n right arm on a cloth-covered table. In his left hand he holds a red\n standard emblazoned with the white cross of the Christian knight Saint\n George. An ornate helmet is seen on the table before him while a menacing\n dragon emerges from the darkness behind him. The sitter's depiction with\n the attributes of Saint George perhaps refers to his name or to his patron\n saint.\n As an example of Tintoretto's early painting style, this enigmatic\n portrait displays a thoughtful balance of rich color and precise drawing.\n The bright red and teal blue of the banner and helmet are enhanced by gold\n highlights. In contrast to the sitter's carefully described face and beard,\n the dragon is merely suggested with quick, sketchy brushstrokes.\n " +p55776 +sa(dp55777 +g25273 +S', 1770' +p55778 +sg25267 +g27 +sg25275 +S'\n' +p55779 +sg25268 +S"Que fais tu? Ne sommes-nous pas freres? N'es-tu pas mon egal?" +p55780 +sg25270 +S'Jean-Michel Moreau the Younger' +p55781 +sa(dp55782 +g25267 +g27 +sg25268 +S'Iron Brackets' +p55783 +sg25270 +S'Al Curry' +p55784 +sa(dp55785 +g25267 +g27 +sg25268 +S'Iron Work on Balcony' +p55786 +sg25270 +S'Ray Price' +p55787 +sa(dp55788 +g25267 +g27 +sg25268 +S'Lamp Bracket' +p55789 +sg25270 +S'Marie Famularo' +p55790 +sa(dp55791 +g25267 +g27 +sg25268 +S'Wrought Iron Lamp' +p55792 +sg25270 +S'Ray Price' +p55793 +sa(dp55794 +g25267 +g27 +sg25268 +S'Lamp Bracket' +p55795 +sg25270 +S'Marie Famularo' +p55796 +sa(dp55797 +g25267 +g27 +sg25268 +S'City Gas Light Bracket' +p55798 +sg25270 +S'Lucien Verbeke' +p55799 +sa(dp55800 +g25267 +g27 +sg25268 +S'Wrought Iron Brackets' +p55801 +sg25270 +S'Al Curry' +p55802 +sa(dp55803 +g25267 +g27 +sg25268 +S'Cast Iron Lighting Brackets' +p55804 +sg25270 +S'Lucien Verbeke' +p55805 +sa(dp55806 +g25267 +g27 +sg25268 +S'Iron Bracket' +p55807 +sg25270 +S'Albert Eyth' +p55808 +sa(dp55809 +g25267 +g27 +sg25268 +S'Iron Bannister' +p55810 +sg25270 +S'Edward L. Loper' +p55811 +sa(dp55812 +g25273 +S', 1770' +p55813 +sg25267 +g27 +sg25275 +S'\n' +p55814 +sg25268 +S"Daigne agreer cette douce compagne, elle est sensible elle t'aimera" +p55815 +sg25270 +S'Jean-Michel Moreau the Younger' +p55816 +sa(dp55817 +g25267 +g27 +sg25268 +S'Iron Railing' +p55818 +sg25270 +S'Ernest A. Towers, Jr.' +p55819 +sa(dp55820 +g25267 +g27 +sg25268 +S'Iron Bannister' +p55821 +sg25270 +S'Edward L. Loper' +p55822 +sa(dp55823 +g25267 +g27 +sg25268 +S'Iron Porch Supports' +p55824 +sg25270 +S'John R. Towers' +p55825 +sa(dp55826 +g25267 +g27 +sg25268 +S'Iron Cellar Door' +p55827 +sg25270 +S'Edward L. Loper' +p55828 +sa(dp55829 +g25267 +g27 +sg25268 +S'Iron Railing and Gate' +p55830 +sg25270 +S'James M. Lawson' +p55831 +sa(dp55832 +g25267 +g27 +sg25268 +S'Iron Railing' +p55833 +sg25270 +S'Samuel Fineman' +p55834 +sa(dp55835 +g25267 +g27 +sg25268 +S'Iron Cellar Door' +p55836 +sg25270 +S'Edward L. Loper' +p55837 +sa(dp55838 +g25267 +g27 +sg25268 +S'Cast Iron Gate Front' +p55839 +sg25270 +S'Beamon Meacham' +p55840 +sa(dp55841 +g25267 +g27 +sg25268 +S'Iron Gate and Fence' +p55842 +sg25270 +S'Lucien Verbeke' +p55843 +sa(dp55844 +g25267 +g27 +sg25268 +S'Cross' +p55845 +sg25270 +S'Ray Price' +p55846 +sa(dp55847 +g25273 +S', 1776' +p55848 +sg25267 +g27 +sg25275 +S'\n' +p55849 +sg25268 +S'Cora, desolee et tremblante, etoit tombee a ses genoux' +p55850 +sg25270 +S'Jean-Michel Moreau the Younger' +p55851 +sa(dp55852 +g25267 +g27 +sg25268 +S'Iron Gate and Fence' +p55853 +sg25270 +S'Joseph L. Boyd' +p55854 +sa(dp55855 +g25267 +g27 +sg25268 +S'Fence and Posts' +p55856 +sg25270 +S'Mary E. Humes' +p55857 +sa(dp55858 +g25267 +g27 +sg25268 +S'Wrought Iron Railing' +p55859 +sg25270 +S'Thomas Byrne' +p55860 +sa(dp55861 +g25267 +g27 +sg25268 +S'Balcony Railing' +p55862 +sg25270 +S'Ray Price' +p55863 +sa(dp55864 +g25267 +g27 +sg25268 +S'Wrought Iron Railing' +p55865 +sg25270 +S'Ray Price' +p55866 +sa(dp55867 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Rail' +p55868 +sg25270 +S'Thomas Byrne' +p55869 +sa(dp55870 +g25267 +g27 +sg25268 +S'Wrought Iron Railing' +p55871 +sg25270 +S'Thomas Byrne' +p55872 +sa(dp55873 +g25267 +g27 +sg25268 +S'Balcony Railing' +p55874 +sg25270 +S'Lucien Verbeke' +p55875 +sa(dp55876 +g25267 +g27 +sg25268 +S'Iron Fence' +p55877 +sg25270 +S'Mary E. Humes' +p55878 +sa(dp55879 +g25267 +g27 +sg25268 +S'Wrought Iron Balcony Rail' +p55880 +sg25270 +S'Lucien Verbeke' +p55881 +sa(dp55882 +g25273 +S', 1776' +p55883 +sg25267 +g27 +sg25275 +S'\n' +p55884 +sg25268 +S"O malheureux enfant! qui m'eut dit qu'un jour tu aurois a rougir de ton pere?" +p55885 +sg25270 +S'Jean-Michel Moreau the Younger' +p55886 +sa(dp55887 +g25267 +g27 +sg25268 +S'Wrought Iron Balcony' +p55888 +sg25270 +S'Al Curry' +p55889 +sa(dp55890 +g25267 +g27 +sg25268 +S'Iron Balcony' +p55891 +sg25270 +S'Arelia Arbo' +p55892 +sa(dp55893 +g25267 +g27 +sg25268 +S'Balcony Railing' +p55894 +sg25270 +S'Rolland Livingstone' +p55895 +sa(dp55896 +g25267 +g27 +sg25268 +S'Wrought Iron Balcony Rail' +p55897 +sg25270 +S'Al Curry' +p55898 +sa(dp55899 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Rail' +p55900 +sg25270 +S'Ray Price' +p55901 +sa(dp55902 +g25267 +g27 +sg25268 +S'Iron Balcony Railings' +p55903 +sg25270 +S'Arelia Arbo' +p55904 +sa(dp55905 +g25267 +g27 +sg25268 +S'Wrought Iron Balcony' +p55906 +sg25270 +S'Ray Price' +p55907 +sa(dp55908 +g25267 +g27 +sg25268 +S'Wrought Iron Balcony Rail' +p55909 +sg25270 +S'Al Curry' +p55910 +sa(dp55911 +g25267 +g27 +sg25268 +S'Wrought Iron Ornament' +p55912 +sg25270 +S'Arelia Arbo' +p55913 +sa(dp55914 +g25267 +g27 +sg25268 +S'Balcony Railings' +p55915 +sg25270 +S'Arelia Arbo' +p55916 +sa(dp55917 +g25273 +S', 1776' +p55918 +sg25267 +g27 +sg25275 +S'\n' +p55919 +sg25268 +S'Vois, cruel, ce qu tu me coutes' +p55920 +sg25270 +S'Jean-Michel Moreau the Younger' +p55921 +sa(dp55922 +g25267 +g27 +sg25268 +S'Cast Iron Work' +p55923 +sg25270 +S'Joseph L. Boyd' +p55924 +sa(dp55925 +g25267 +g27 +sg25268 +S'Wrought Iron Balcony Railing' +p55926 +sg25270 +S'Arelia Arbo' +p55927 +sa(dp55928 +g25267 +g27 +sg25268 +S'Wrought Iron Balcony Rail' +p55929 +sg25270 +S'Arelia Arbo' +p55930 +sa(dp55931 +g25267 +g27 +sg25268 +S'Wrought Iron Railing' +p55932 +sg25270 +S'Joseph L. Boyd' +p55933 +sa(dp55934 +g25267 +g27 +sg25268 +S'Iron Cross' +p55935 +sg25270 +S'H. Langden Brown' +p55936 +sa(dp55937 +g25267 +g27 +sg25268 +S'Wrought Iron Numerals' +p55938 +sg25270 +S'Samuel Fineman' +p55939 +sa(dp55940 +g25267 +g27 +sg25268 +S'Bent Raider or Pike' +p55941 +sg25270 +S'Orison Daeda' +p55942 +sa(dp55943 +g25267 +g27 +sg25268 +S'Rain Gutter Stirrup' +p55944 +sg25270 +S'Harold Ballerd' +p55945 +sa(dp55946 +g25267 +g27 +sg25268 +S'Foot Scraper' +p55947 +sg25270 +S'Ralph Atkinson' +p55948 +sa(dp55949 +g25267 +g27 +sg25268 +S'Foot Scraper' +p55950 +sg25270 +S'Nicholas Amantea' +p55951 +sa(dp55952 +g25273 +S', 1776' +p55953 +sg25267 +g27 +sg25275 +S'\n' +p55954 +sg25268 +S"Ah, cruel! dis-nous donc, si tu veux mourir, quel est l'ami que tu nous laisses" +p55955 +sg25270 +S'Jean-Michel Moreau the Younger' +p55956 +sa(dp55957 +g25267 +g27 +sg25268 +S'Foot Scraper' +p55958 +sg25270 +S'Stanley Chin' +p55959 +sa(dp55960 +g25267 +g27 +sg25268 +S'Foot Scraper' +p55961 +sg25270 +S'Artist Information (' +p55962 +sa(dp55963 +g25267 +g27 +sg25268 +S'Foot Scraper' +p55964 +sg25270 +S'Helen Hobart' +p55965 +sa(dp55966 +g25267 +g27 +sg25268 +S'Cast Iron Foot Scraper' +p55967 +sg25270 +S'Austin L. Davison' +p55968 +sa(dp55969 +g25267 +g27 +sg25268 +S'Foot Scraper and Tray' +p55970 +sg25270 +S'John H. Tercuzzi' +p55971 +sa(dp55972 +g25267 +S'The whirligig is a special kind of weathervane, which can indicate velocity as well as wind\n direction. Based on the principle of the windmill, whirligigs were usually in the form of a human\n figure so that the paddlelike arms, extending in opposite directions, could be set spinning by the\n wind. Although the larger whirligigs were undoubtedly placed outdoors to function as vanes,\n smaller versions may well have served as children\'s toys. A clue for dating whirligigs is the\n costume of the figure. This example, known as "Sailor Jack," wears a hat that suggests an\n officer in the War of 1812. Thus, it was most likely made in the early nineteenth century. The\n carving of the figure, however, is timelessly abstract.\n ' +p55973 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000034a.jpg' +p55974 +sg25268 +S'"Sailor Jack" Whirligig' +p55975 +sg25270 +S'Frances Cohen' +p55976 +sa(dp55977 +g25267 +g27 +sg25268 +S'Clamp Jack' +p55978 +sg25270 +S'Eugene Bartz' +p55979 +sa(dp55980 +g25267 +g27 +sg25268 +S'Wall Bracket Candleholder' +p55981 +sg25270 +S'Richard Barnett' +p55982 +sa(dp55983 +g25267 +g27 +sg25268 +S'Wrought Iron Balcony Rail' +p55984 +sg25270 +S'Arelia Arbo' +p55985 +sa(dp55986 +g25267 +g27 +sg25268 +S'Wrought Iron Balcony Rail' +p55987 +sg25270 +S'Al Curry' +p55988 +sa(dp55989 +g25273 +S', 1776' +p55990 +sg25267 +g27 +sg25275 +S'\n' +p55991 +sg25268 +S"La famille d'Ataliba ... dormoit autour de lui" +p55992 +sg25270 +S'Jean-Michel Moreau the Younger' +p55993 +sa(dp55994 +g25267 +g27 +sg25268 +S'Shoe Shine Foot Rest' +p55995 +sg25270 +S'Stanley Mazur' +p55996 +sa(dp55997 +g25267 +g27 +sg25268 +S'Deer Lawn Figure' +p55998 +sg25270 +S'Elisabeth Fulda' +p55999 +sa(dp56000 +g25267 +g27 +sg25268 +S'Iron Work' +p56001 +sg25270 +S'Lucien Verbeke' +p56002 +sa(dp56003 +g25267 +g27 +sg25268 +S'Iron Fence - Sea Horse Design' +p56004 +sg25270 +S'Carl Hobby' +p56005 +sa(dp56006 +g25267 +g27 +sg25268 +S'Cast Iron Pillar' +p56007 +sg25270 +S'Vera Van Voris' +p56008 +sa(dp56009 +g25267 +g27 +sg25268 +S'Iron' +p56010 +sg25270 +S'John Thorsen' +p56011 +sa(dp56012 +g25267 +g27 +sg25268 +S'Cast Iron Fruit Jar' +p56013 +sg25270 +S'Doris Hollingsworth' +p56014 +sa(dp56015 +g25267 +g27 +sg25268 +S'Portion of a Drawing Room' +p56016 +sg25270 +S'Elisabeth Fulda' +p56017 +sa(dp56018 +g25267 +g27 +sg25268 +S'Stencilled Inkwells' +p56019 +sg25270 +S'Lawrence Flynn' +p56020 +sa(dp56021 +g25267 +g27 +sg25268 +S'Hot Water Goose' +p56022 +sg25270 +S'Archie Thompson' +p56023 +sa(dp56024 +g25273 +S'Greek, c. 305 - c. 255 B.C.' +p56025 +sg25267 +g27 +sg25275 +S'(author)' +p56026 +sg25268 +S'Traduction nouvelle ... ; Hero et Leandre' +p56027 +sg25270 +S'Artist Information (' +p56028 +sa(dp56029 +g25267 +g27 +sg25268 +S'Horse Collar and Hame' +p56030 +sg25270 +S'Wilbur M Rice' +p56031 +sa(dp56032 +g25267 +g27 +sg25268 +S'Scraper' +p56033 +sg25270 +S'Frank Maurer' +p56034 +sa(dp56035 +g25267 +g27 +sg25268 +S'Wrought Iron Ornament' +p56036 +sg25270 +S'Mauvell' +p56037 +sa(dp56038 +g25267 +g27 +sg25268 +S'Foot Scraper' +p56039 +sg25270 +S'Jacob Lipkin' +p56040 +sa(dp56041 +g25267 +g27 +sg25268 +S'Foot Scraper' +p56042 +sg25270 +S'Julius Bellamy' +p56043 +sa(dp56044 +g25267 +g27 +sg25268 +S'Foot Scraper' +p56045 +sg25270 +S'Holger Hansen' +p56046 +sa(dp56047 +g25267 +g27 +sg25268 +S'Foot Scraper' +p56048 +sg25270 +S'Filippo Porreca' +p56049 +sa(dp56050 +g25267 +g27 +sg25268 +S'Iron Work' +p56051 +sg25270 +S'Lena Nastasi' +p56052 +sa(dp56053 +g25267 +g27 +sg25268 +S'Iron Fence' +p56054 +sg25270 +S'Florence Huston' +p56055 +sa(dp56056 +g25267 +g27 +sg25268 +S'Fence' +p56057 +sg25270 +S'Florence Huston' +p56058 +sa(dp56059 +g25273 +S'(author)' +p56060 +sg25267 +g27 +sg25275 +S'\n' +p56061 +sg25268 +S'Traduction nouvelle ...' +p56062 +sg25270 +S'Artist Information (' +p56063 +sa(dp56064 +g25267 +g27 +sg25268 +S'Wrought Iron Fence' +p56065 +sg25270 +S'Francis Law Durand' +p56066 +sa(dp56067 +g25267 +g27 +sg25268 +S'Iron Balcony' +p56068 +sg25270 +S'Thomas Byrne' +p56069 +sa(dp56070 +g25267 +g27 +sg25268 +S'Iron Work in Attic Window' +p56071 +sg25270 +S'Ray Price' +p56072 +sa(dp56073 +g25267 +g27 +sg25268 +S'Iron Gate' +p56074 +sg25270 +S'Sebastian Simonet' +p56075 +sa(dp56076 +g25267 +g27 +sg25268 +S'Wrought Iron Gate' +p56077 +sg25270 +S'Al Curry' +p56078 +sa(dp56079 +g25267 +g27 +sg25268 +S'Iron Gate' +p56080 +sg25270 +S'Clarence W. Dawson' +p56081 +sa(dp56082 +g25267 +g27 +sg25268 +S'Wrought and Cast Iron Gates' +p56083 +sg25270 +S'Al Curry' +p56084 +sa(dp56085 +g25267 +g27 +sg25268 +S'Wrought Iron Door' +p56086 +sg25270 +S'Al Curry' +p56087 +sa(dp56088 +g25267 +g27 +sg25268 +S'Wishing Gates' +p56089 +sg25270 +S'Lucien Verbeke' +p56090 +sa(dp56091 +g25267 +g27 +sg25268 +S'Wrought and Cast Iron Doorway' +p56092 +sg25270 +S'Al Curry' +p56093 +sa(dp56094 +g25273 +S'Italian, 1474 - 1533' +p56095 +sg25267 +g27 +sg25275 +S'(author)' +p56096 +sg25268 +S'Orlando Furioso (volume I)' +p56097 +sg25270 +S'Artist Information (' +p56098 +sa(dp56099 +g25267 +g27 +sg25268 +S'Cast Iron Gateway' +p56100 +sg25270 +S'Ray Price' +p56101 +sa(dp56102 +g25267 +g27 +sg25268 +S'Iron Gate and Fence' +p56103 +sg25270 +S'Ray Price' +p56104 +sa(dp56105 +g25267 +g27 +sg25268 +S'Iron Gates' +p56106 +sg25270 +S'Lucien Verbeke' +p56107 +sa(dp56108 +g25267 +g27 +sg25268 +S'Wrought Iron Door' +p56109 +sg25270 +S'Al Curry' +p56110 +sa(dp56111 +g25267 +g27 +sg25268 +S'Cast Iron Gate and Fence' +p56112 +sg25270 +S'Al Curry' +p56113 +sa(dp56114 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Railing' +p56115 +sg25270 +S'Ray Price' +p56116 +sa(dp56117 +g25267 +g27 +sg25268 +S'Cast Iron Gate' +p56118 +sg25270 +S'Ray Price' +p56119 +sa(dp56120 +g25267 +g27 +sg25268 +S'Cast Iron Fence' +p56121 +sg25270 +S'Al Curry' +p56122 +sa(dp56123 +g25267 +g27 +sg25268 +S'Wrought Iron Door' +p56124 +sg25270 +S'Ray Price' +p56125 +sa(dp56126 +g25267 +g27 +sg25268 +S'Iron Work on Doorway' +p56127 +sg25270 +S'Al Curry' +p56128 +sa(dp56129 +g25268 +S'The Adoration of the Magi' +p56130 +sg25270 +S'Sandro Botticelli' +p56131 +sg25273 +S'tempera and oil on panel' +p56132 +sg25275 +S'c. 1478/1482' +p56133 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005c5.jpg' +p56134 +sg25267 +S"Sandro Botticelli, a Florentine, painted several versions of the theme of\r\nthe Adoration of the Magi. The Magi, or wise men, were particularly venerated in\r\nFlorence, as one of the city's leading religious confraternities was dedicated to\r\nthem. The members of the confraternity took part in pageants organized every five\r\nyears, when the journey to Bethlehem of the Magi and their retinue, often numbering\r\nin the hundreds, was re-enacted through the streets of Florence.\n The Washington \n Earlier Renaissance paintings of this theme, such as the Gallery's tondo by Fra\r\nAngelico and Fra Lippi, emphasize the pomp and pageantry of the scene. As painted\r\nby Botticelli in this late version, the religious aspect is stressed. Each figure\r\nis an expression of piety, the postures of their hands and bodies revealing devotion,\r\nreverence and contemplation on the divine mystery before them.\n " +p56135 +sa(dp56136 +g25273 +S'Italian, 1474 - 1533' +p56137 +sg25267 +g27 +sg25275 +S'(author)' +p56138 +sg25268 +S'Orlando Furioso (volume II)' +p56139 +sg25270 +S'Artist Information (' +p56140 +sa(dp56141 +g25267 +g27 +sg25268 +S'Wrought and Cast Iron Gate' +p56142 +sg25270 +S'Al Curry' +p56143 +sa(dp56144 +g25267 +g27 +sg25268 +S'Cast Iron Gate' +p56145 +sg25270 +S'Lucien Verbeke' +p56146 +sa(dp56147 +g25267 +g27 +sg25268 +S'Altar Railing' +p56148 +sg25270 +S'Ray Price' +p56149 +sa(dp56150 +g25267 +g27 +sg25268 +S'Iron Fence and Gate' +p56151 +sg25270 +S'Ray Price' +p56152 +sa(dp56153 +g25267 +g27 +sg25268 +S'Wrought Iron Cross' +p56154 +sg25270 +S'American 20th Century' +p56155 +sa(dp56156 +g25267 +g27 +sg25268 +S'Iron Gate and Fence' +p56157 +sg25270 +S'Ray Price' +p56158 +sa(dp56159 +g25267 +g27 +sg25268 +S'Iron Gate and Fence' +p56160 +sg25270 +S'Lucien Verbeke' +p56161 +sa(dp56162 +g25267 +g27 +sg25268 +S'Iron Gate and Fence' +p56163 +sg25270 +S'Lucien Verbeke' +p56164 +sa(dp56165 +g25267 +g27 +sg25268 +S'Iron Cross - Gate Ornament' +p56166 +sg25270 +S'Arelia Arbo' +p56167 +sa(dp56168 +g25267 +g27 +sg25268 +S'Brooch' +p56169 +sg25270 +S'Walter W. Jennings' +p56170 +sa(dp56171 +g25273 +S'Italian, 1474 - 1533' +p56172 +sg25267 +g27 +sg25275 +S'(author)' +p56173 +sg25268 +S'Orlando Furioso (volume III)' +p56174 +sg25270 +S'Artist Information (' +p56175 +sa(dp56176 +g25267 +g27 +sg25268 +S'Brooch' +p56177 +sg25270 +S'Gladys Cook' +p56178 +sa(dp56179 +g25267 +g27 +sg25268 +S'Bracelet' +p56180 +sg25270 +S'John H. Tercuzzi' +p56181 +sa(dp56182 +g25267 +g27 +sg25268 +S'Wagon Jack' +p56183 +sg25270 +S'Mary Hansen' +p56184 +sa(dp56185 +g25267 +g27 +sg25268 +S'Pegging Jack' +p56186 +sg25270 +S'Henry Waldeck' +p56187 +sa(dp56188 +g25267 +g27 +sg25268 +S'Wheel Jack' +p56189 +sg25270 +S'Orville Skaren' +p56190 +sa(dp56191 +g25267 +g27 +sg25268 +S'Wagon Jack' +p56192 +sg25270 +S'Samuel W. Ford' +p56193 +sa(dp56194 +g25267 +g27 +sg25268 +S'Wagon Jack' +p56195 +sg25270 +S'John B. Moll' +p56196 +sa(dp56197 +g25267 +g27 +sg25268 +S'Loop Earrings' +p56198 +sg25270 +S'Tulita Westfall' +p56199 +sa(dp56200 +g25267 +g27 +sg25268 +S'Amber Hairpin' +p56201 +sg25270 +S'American 20th Century' +p56202 +sa(dp56203 +g25267 +g27 +sg25268 +S'Mourning Ring' +p56204 +sg25270 +S'John H. Tercuzzi' +p56205 +sa(dp56206 +g25273 +S'Italian, 1474 - 1533' +p56207 +sg25267 +g27 +sg25275 +S'(author)' +p56208 +sg25268 +S'Orlando Furioso (volume IV)' +p56209 +sg25270 +S'Artist Information (' +p56210 +sa(dp56211 +g25267 +g27 +sg25268 +S"Jeweler's Wire Making Machine" +p56212 +sg25270 +S'Al Curry' +p56213 +sa(dp56214 +g25267 +g27 +sg25268 +S'Rosary Beads' +p56215 +sg25270 +S'Josephine C. Romano' +p56216 +sa(dp56217 +g25267 +g27 +sg25268 +S'Key-Escutcheon-Drawer Pull' +p56218 +sg25270 +S'Kurt Melzer' +p56219 +sa(dp56220 +g25267 +g27 +sg25268 +S'Keys to John Marshall House' +p56221 +sg25270 +S'Edna C. Rex' +p56222 +sa(dp56223 +g25267 +g27 +sg25268 +S'Brass Key' +p56224 +sg25270 +S'D.J. Grant' +p56225 +sa(dp56226 +g25267 +g27 +sg25268 +S'Keys to John Marshall House' +p56227 +sg25270 +S'Edna C. Rex' +p56228 +sa(dp56229 +g25267 +g27 +sg25268 +S'Key and Lock' +p56230 +sg25270 +S'Ronau William Woiceske' +p56231 +sa(dp56232 +g25267 +g27 +sg25268 +S'Key' +p56233 +sg25270 +S'Edna C. Rex' +p56234 +sa(dp56235 +g25267 +g27 +sg25268 +S'Kettle Ring' +p56236 +sg25270 +S'Frank McEntee' +p56237 +sa(dp56238 +g25267 +g27 +sg25268 +S'Kettle Tilter' +p56239 +sg25270 +S'Jacob Lipkin' +p56240 +sa(dp56241 +g25273 +S'French, 1747 - 1791' +p56242 +sg25267 +g27 +sg25275 +S'(author)' +p56243 +sg25268 +S'Idylles' +p56244 +sg25270 +S'Artist Information (' +p56245 +sa(dp56246 +g25267 +g27 +sg25268 +S'Soup Kettle' +p56247 +sg25270 +S'Stanley Mazur' +p56248 +sa(dp56249 +g25267 +g27 +sg25268 +S'Soap Kettle' +p56250 +sg25270 +S'Clyde L. Cheney' +p56251 +sa(dp56252 +g25267 +g27 +sg25268 +S'Potato Kettle' +p56253 +sg25270 +S'Harry Jennings' +p56254 +sa(dp56255 +g25267 +g27 +sg25268 +S'Fireplace Kettle' +p56256 +sg25270 +S'Hugh Clarke' +p56257 +sa(dp56258 +g25267 +g27 +sg25268 +S'Soup Pot' +p56259 +sg25270 +S'Francis Law Durand' +p56260 +sa(dp56261 +g25267 +g27 +sg25268 +S'Kettle' +p56262 +sg25270 +S'Milton Grubstein' +p56263 +sa(dp56264 +g25267 +g27 +sg25268 +S'Kettle' +p56265 +sg25270 +S'Maurice Van Felix' +p56266 +sa(dp56267 +g25267 +g27 +sg25268 +S'Iron Pot and Pot Hooks' +p56268 +sg25270 +S'Charles Goodwin' +p56269 +sa(dp56270 +g25267 +g27 +sg25268 +S'Cooking Kettle' +p56271 +sg25270 +S'Thomas Dooley' +p56272 +sa(dp56273 +g25267 +g27 +sg25268 +S'Kettle' +p56274 +sg25270 +S'Tulita Westfall' +p56275 +sa(dp56276 +g25273 +S'French, 1747 - 1791' +p56277 +sg25267 +g27 +sg25275 +S'(author)' +p56278 +sg25268 +S'Pygmalion; Idylles' +p56279 +sg25270 +S'Artist Information (' +p56280 +sa(dp56281 +g25267 +g27 +sg25268 +S'Copper Candy Vessel' +p56282 +sg25270 +S'Artist Information (' +p56283 +sa(dp56284 +g25267 +g27 +sg25268 +S'Fireplace Kettle' +p56285 +sg25270 +S'Francis Law Durand' +p56286 +sa(dp56287 +g25267 +g27 +sg25268 +S'Fireplace Pot' +p56288 +sg25270 +S'Francis Law Durand' +p56289 +sa(dp56290 +g25267 +g27 +sg25268 +S'Copper Kettle' +p56291 +sg25270 +S'George Seideneck' +p56292 +sa(dp56293 +g25267 +g27 +sg25268 +S'Kettle' +p56294 +sg25270 +S'Yolande Delasser' +p56295 +sa(dp56296 +g25267 +g27 +sg25268 +S'Kettle' +p56297 +sg25270 +S'Francis Law Durand' +p56298 +sa(dp56299 +g25267 +g27 +sg25268 +S'Wrought Iron Kettle' +p56300 +sg25270 +S'Arthur Stewart' +p56301 +sa(dp56302 +g25267 +g27 +sg25268 +S'Keno Gambling Game' +p56303 +sg25270 +S'Sebastian Simonet' +p56304 +sa(dp56305 +g25267 +g27 +sg25268 +S'Liquor Container' +p56306 +sg25270 +S'Jacob Gielens' +p56307 +sa(dp56308 +g25267 +g27 +sg25268 +S'Field Keg' +p56309 +sg25270 +S'Edward L. Loper' +p56310 +sa(dp56311 +g25273 +S'French, 1747 - 1791' +p56312 +sg25267 +g27 +sg25275 +S'(author)' +p56313 +sg25268 +S'Pygmalion; Idylles' +p56314 +sg25270 +S'Artist Information (' +p56315 +sa(dp56316 +g25267 +g27 +sg25268 +S'Field Water Keg' +p56317 +sg25270 +S'John Price' +p56318 +sa(dp56319 +g25267 +g27 +sg25268 +S'Triangle Field Water Keg' +p56320 +sg25270 +S'Roger Deats' +p56321 +sa(dp56322 +g25267 +g27 +sg25268 +S'Antique Liquor Keg' +p56323 +sg25270 +S'Rose Campbell-Gerke' +p56324 +sa(dp56325 +g25267 +g27 +sg25268 +S'Knife and Fork' +p56326 +sg25270 +S'Stanley Mazur' +p56327 +sa(dp56328 +g25267 +g27 +sg25268 +S'Knife and Fork' +p56329 +sg25270 +S'Grace Halpin' +p56330 +sa(dp56331 +g25267 +g27 +sg25268 +S'Knife' +p56332 +sg25270 +S'Harold Ballerd' +p56333 +sa(dp56334 +g25267 +g27 +sg25268 +S'Shingle Knife' +p56335 +sg25270 +S'Alfonso Moreno' +p56336 +sa(dp56337 +g25267 +g27 +sg25268 +S'Corn Knife' +p56338 +sg25270 +S'Herman O. Stroh' +p56339 +sa(dp56340 +g25267 +g27 +sg25268 +S"Horse Shoer's Knife" +p56341 +sg25270 +S'George C. Brown' +p56342 +sa(dp56343 +g25267 +g27 +sg25268 +S'Combination Saw/Knife' +p56344 +sg25270 +S'George Roehl' +p56345 +sa(dp56346 +g25273 +S'French, 1747 - 1791' +p56347 +sg25267 +g27 +sg25275 +S'(author)' +p56348 +sg25268 +S'Romances' +p56349 +sg25270 +S'Artist Information (' +p56350 +sa(dp56351 +g25267 +g27 +sg25268 +S'Corn Knife' +p56352 +sg25270 +S'Walter Praefke' +p56353 +sa(dp56354 +g25267 +g27 +sg25268 +S'Sheath Knife' +p56355 +sg25270 +S'Jesse W. Skeen' +p56356 +sa(dp56357 +g25267 +g27 +sg25268 +S'Hay Knife' +p56358 +sg25270 +S'Samuel Faigin' +p56359 +sa(dp56360 +g25267 +g27 +sg25268 +S'Kettle' +p56361 +sg25270 +S'Nicholas Amantea' +p56362 +sa(dp56363 +g25267 +g27 +sg25268 +S'Kettle Tilter' +p56364 +sg25270 +S'Jacob Lipkin' +p56365 +sa(dp56366 +g25267 +g27 +sg25268 +S'Kettle Tilter' +p56367 +sg25270 +S'Jacob Lipkin' +p56368 +sa(dp56369 +g25267 +g27 +sg25268 +S'Hay Knife' +p56370 +sg25270 +S'Alfonso Moreno' +p56371 +sa(dp56372 +g25267 +g27 +sg25268 +S'Straw Knife' +p56373 +sg25270 +S'Alexander Anderson' +p56374 +sa(dp56375 +g25267 +g27 +sg25268 +S"Cooper's Chamfer Knife" +p56376 +sg25270 +S'Thomas Dooley' +p56377 +sa(dp56378 +g25267 +g27 +sg25268 +S'Hay Knife' +p56379 +sg25270 +S'Herman O. Stroh' +p56380 +sa(dp56381 +g25273 +S'French, 1747 - 1791' +p56382 +sg25267 +g27 +sg25275 +S'(author)' +p56383 +sg25268 +S'Romances' +p56384 +sg25270 +S'Artist Information (' +p56385 +sa(dp56386 +g25267 +g27 +sg25268 +S"Trapper's Hunting Knife" +p56387 +sg25270 +S'Cecil Smith' +p56388 +sa(dp56389 +g25267 +g27 +sg25268 +S'Silver Dagger and Sheath' +p56390 +sg25270 +S'Oscar Bluhme' +p56391 +sa(dp56392 +g25267 +g27 +sg25268 +S'Knife and Sheath' +p56393 +sg25270 +S'Jesse W. Skeen' +p56394 +sa(dp56395 +g25267 +g27 +sg25268 +S'Dagger' +p56396 +sg25270 +S'T. Joyce' +p56397 +sa(dp56398 +g25267 +g27 +sg25268 +S'Dagger and Sheath' +p56399 +sg25270 +S'Michael Rekucki' +p56400 +sa(dp56401 +g25267 +g27 +sg25268 +S'Chopping Knife' +p56402 +sg25270 +S'Nicholas Amantea' +p56403 +sa(dp56404 +g25267 +g27 +sg25268 +S'Chopping Knife' +p56405 +sg25270 +S'Simon Clever' +p56406 +sa(dp56407 +g25267 +g27 +sg25268 +S'Chopping Knife' +p56408 +sg25270 +S'Nicholas Amantea' +p56409 +sa(dp56410 +g25267 +g27 +sg25268 +S'Chopper' +p56411 +sg25270 +S'George Roehl' +p56412 +sa(dp56413 +g25267 +g27 +sg25268 +S'Food Chopper' +p56414 +sg25270 +S'Clarence Secor' +p56415 +sa(dp56416 +g25273 +S'Widener Collection' +p56417 +sg25267 +g27 +sg25275 +S'\nbound volume with 206 etchings and engravings by various artists after Borel, Le Barbier, Marillier, Monsiau, and J.M. Moreau' +p56418 +sg25268 +S'Collection of Prints from the Complete Works of Arnaud Berquin' +p56419 +sg25270 +S'Various Artists' +p56420 +sa(dp56421 +g25267 +g27 +sg25268 +S'Chopping Knife' +p56422 +sg25270 +S'Herman Schulze' +p56423 +sa(dp56424 +g25267 +g27 +sg25268 +S'Envelope Opener' +p56425 +sg25270 +S'Walter W. Jennings' +p56426 +sa(dp56427 +g25267 +g27 +sg25268 +S'Stock Lance Knife' +p56428 +sg25270 +S'Henry Meyers' +p56429 +sa(dp56430 +g25267 +g27 +sg25268 +S'Fruit Knife' +p56431 +sg25270 +S'Frank M. Keane' +p56432 +sa(dp56433 +g25267 +g27 +sg25268 +S'Quill Sharpener Knife' +p56434 +sg25270 +S'Gordon Saltar' +p56435 +sa(dp56436 +g25267 +g27 +sg25268 +S'Paper Knife' +p56437 +sg25270 +S'Artist Information (' +p56438 +sa(dp56439 +g25267 +g27 +sg25268 +S'Paper Knife' +p56440 +sg25270 +S'Max Fernekes' +p56441 +sa(dp56442 +g25267 +g27 +sg25268 +S'Rolled Leather Knapsack' +p56443 +sg25270 +S'Artist Information (' +p56444 +sa(dp56445 +g25267 +g27 +sg25268 +S'Door Handle with Thumb Press' +p56446 +sg25270 +S'Jack Staloff' +p56447 +sa(dp56448 +g25267 +g27 +sg25268 +S'Hand Forged Latch' +p56449 +sg25270 +S'Donald Streeter' +p56450 +sa(dp56451 +g25273 +S'Italian, 1313 - 1375' +p56452 +sg25267 +g27 +sg25275 +S'(author)' +p56453 +sg25268 +S'Il Decamerone ... (volume I)' +p56454 +sg25270 +S'Artist Information (' +p56455 +sa(dp56456 +g25267 +g27 +sg25268 +S'Door Handle' +p56457 +sg25270 +S'Herman Bader' +p56458 +sa(dp56459 +g25267 +g27 +sg25268 +S'Door Handle with Thumb Press' +p56460 +sg25270 +S'Jacob Lipkin' +p56461 +sa(dp56462 +g25267 +g27 +sg25268 +S'Door Handle' +p56463 +sg25270 +S'Maurice Van Felix' +p56464 +sa(dp56465 +g25267 +g27 +sg25268 +S'Latch' +p56466 +sg25270 +S'Mildred Ford' +p56467 +sa(dp56468 +g25267 +g27 +sg25268 +S'Suffolk Latch' +p56469 +sg25270 +S'Regina Henderer' +p56470 +sa(dp56471 +g25267 +g27 +sg25268 +S'Suffolk Latch' +p56472 +sg25270 +S'Regina Henderer' +p56473 +sa(dp56474 +g25267 +g27 +sg25268 +S'Door Latch and Handle' +p56475 +sg25270 +S'Paul Poffinbarger' +p56476 +sa(dp56477 +g25267 +g27 +sg25268 +S'Norfolk Latch' +p56478 +sg25270 +S'Samuel W. Ford' +p56479 +sa(dp56480 +g25267 +g27 +sg25268 +S'Door Handle with Thumb Press' +p56481 +sg25270 +S'Mildred Ford' +p56482 +sa(dp56483 +g25267 +g27 +sg25268 +S'Wrought Iron Thumb Latch' +p56484 +sg25270 +S'Donald Streeter' +p56485 +sa(dp56486 +g25268 +S'Study for a Ceiling with the Personification of Counsel' +p56487 +sg25270 +S'Giovanni Battista Tiepolo' +p56488 +sg25273 +S'oil on canvas' +p56489 +sg25275 +S'before c. 1762' +p56490 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000624.jpg' +p56491 +sg25267 +g27 +sa(dp56492 +g25273 +S'Italian, 1313 - 1375' +p56493 +sg25267 +g27 +sg25275 +S'(author)' +p56494 +sg25268 +S'Il Decamerone ... (volume II)' +p56495 +sg25270 +S'Artist Information (' +p56496 +sa(dp56497 +g25267 +g27 +sg25268 +S'Latch Plate' +p56498 +sg25270 +S'Francis Law Durand' +p56499 +sa(dp56500 +g25267 +g27 +sg25268 +S'Door Catch' +p56501 +sg25270 +S'Donald Streeter' +p56502 +sa(dp56503 +g25267 +g27 +sg25268 +S'Latch' +p56504 +sg25270 +S'Fritz Boehmer' +p56505 +sa(dp56506 +g25267 +g27 +sg25268 +S'Latch' +p56507 +sg25270 +S'Fritz Boehmer' +p56508 +sa(dp56509 +g25267 +g27 +sg25268 +S'Attic Door Latch' +p56510 +sg25270 +S'James M. Lawson' +p56511 +sa(dp56512 +g25267 +g27 +sg25268 +S'Attic Door Latch' +p56513 +sg25270 +S'James M. Lawson' +p56514 +sa(dp56515 +g25267 +g27 +sg25268 +S'Latch' +p56516 +sg25270 +S'John R. Towers' +p56517 +sa(dp56518 +g25267 +g27 +sg25268 +S'Latch' +p56519 +sg25270 +S'John R. Towers' +p56520 +sa(dp56521 +g25267 +g27 +sg25268 +S'Combination Latch/Lock' +p56522 +sg25270 +S'James M. Lawson' +p56523 +sa(dp56524 +g25267 +g27 +sg25268 +S'Wrought Iron Latch' +p56525 +sg25270 +S'Lucien Verbeke' +p56526 +sa(dp56527 +g25273 +S'Italian, 1313 - 1375' +p56528 +sg25267 +g27 +sg25275 +S'(author)' +p56529 +sg25268 +S'Il Decamerone ... (volume III)' +p56530 +sg25270 +S'Artist Information (' +p56531 +sa(dp56532 +g25267 +g27 +sg25268 +S'Three Door Latches' +p56533 +sg25270 +S'Al Curry' +p56534 +sa(dp56535 +g25267 +g27 +sg25268 +S'Iron Hardware' +p56536 +sg25270 +S'Al Curry' +p56537 +sa(dp56538 +g25267 +g27 +sg25268 +S'Bar Latch' +p56539 +sg25270 +S'Jack Staloff' +p56540 +sa(dp56541 +g25267 +g27 +sg25268 +S'Cast Iron Knocker/Latch' +p56542 +sg25270 +S'Al Curry' +p56543 +sa(dp56544 +g25267 +g27 +sg25268 +S'Wrought Iron Latch Lock' +p56545 +sg25270 +S'Henry Meyers' +p56546 +sa(dp56547 +g25267 +g27 +sg25268 +S'Shoe Last' +p56548 +sg25270 +S'George Bobholz' +p56549 +sa(dp56550 +g25267 +g27 +sg25268 +S'Shoe Last' +p56551 +sg25270 +S'Harvey Thoss' +p56552 +sa(dp56553 +g25267 +g27 +sg25268 +S'Shoe Last' +p56554 +sg25270 +S'Michael Fallon' +p56555 +sa(dp56556 +g25267 +g27 +sg25268 +S'Knife Sharpener' +p56557 +sg25270 +S'Lionel Ritchey' +p56558 +sa(dp56559 +g25267 +g27 +sg25268 +S'Knitting Needle Holder' +p56560 +sg25270 +S'Janet Riza' +p56561 +sa(dp56562 +g25273 +S'Italian, 1313 - 1375' +p56563 +sg25267 +g27 +sg25275 +S'(author)' +p56564 +sg25268 +S'Il Decamerone ... (volume IV)' +p56565 +sg25270 +S'Artist Information (' +p56566 +sa(dp56567 +g25267 +g27 +sg25268 +S'Sconce' +p56568 +sg25270 +S'Alfred Farrell' +p56569 +sa(dp56570 +g25267 +g27 +sg25268 +S'Tole Candlebrum' +p56571 +sg25270 +S'David S. De Vault' +p56572 +sa(dp56573 +g25267 +g27 +sg25268 +S'Sconce' +p56574 +sg25270 +S'Amelia Tuccio' +p56575 +sa(dp56576 +g25267 +g27 +sg25268 +S'Sconce' +p56577 +sg25270 +S'Jack Staloff' +p56578 +sa(dp56579 +g25267 +g27 +sg25268 +S'Sconce' +p56580 +sg25270 +S'Amelia Tuccio' +p56581 +sa(dp56582 +g25267 +g27 +sg25268 +S'Candle Sconce' +p56583 +sg25270 +S'Amelia Tuccio' +p56584 +sa(dp56585 +g25267 +g27 +sg25268 +S'Candle Sconce' +p56586 +sg25270 +S'Amelia Tuccio' +p56587 +sa(dp56588 +g25267 +g27 +sg25268 +S'Sconce' +p56589 +sg25270 +S'Mildred Ford' +p56590 +sa(dp56591 +g25267 +g27 +sg25268 +S'Candle Holder' +p56592 +sg25270 +S'William Kieckhofel' +p56593 +sa(dp56594 +g25267 +g27 +sg25268 +S'Candle Sconce' +p56595 +sg25270 +S'Amelia Tuccio' +p56596 +sa(dp56597 +g25273 +S'Italian, 1313 - 1375' +p56598 +sg25267 +g27 +sg25275 +S'(author)' +p56599 +sg25268 +S'Il Decamerone ... (volume V)' +p56600 +sg25270 +S'Artist Information (' +p56601 +sa(dp56602 +g25267 +g27 +sg25268 +S'Wall Sconce' +p56603 +sg25270 +S'Gerald Bernhardt' +p56604 +sa(dp56605 +g25267 +g27 +sg25268 +S'Tin Wall Sconce' +p56606 +sg25270 +S'Luther D. Wenrich' +p56607 +sa(dp56608 +g25267 +g27 +sg25268 +S'Sconce' +p56609 +sg25270 +S'Jacob Gielens' +p56610 +sa(dp56611 +g25267 +g27 +sg25268 +S'Sconce' +p56612 +sg25270 +S'Gordon Sanborn' +p56613 +sa(dp56614 +g25267 +g27 +sg25268 +S'Candle Sconce' +p56615 +sg25270 +S'Julius Bellamy' +p56616 +sa(dp56617 +g25267 +g27 +sg25268 +S'Candle Holder' +p56618 +sg25270 +S'William Kieckhofel' +p56619 +sa(dp56620 +g25267 +g27 +sg25268 +S'Candle Sconce' +p56621 +sg25270 +S'Amelia Tuccio' +p56622 +sa(dp56623 +g25267 +g27 +sg25268 +S'Road Level' +p56624 +sg25270 +S'Ethel Dougan' +p56625 +sa(dp56626 +g25267 +g27 +sg25268 +S'Wooden Peg File' +p56627 +sg25270 +S'Lloyd Charles Lemcke' +p56628 +sa(dp56629 +g25267 +g27 +sg25268 +S'Leather Guide Marker' +p56630 +sg25270 +S'Lloyd Charles Lemcke' +p56631 +sa(dp56632 +g25273 +S'(artist after)' +p56633 +sg25267 +g27 +sg25275 +S'\n' +p56634 +sg25268 +S'Cabinet des modes ... (volume I)' +p56635 +sg25270 +S'Artist Information (' +p56636 +sa(dp56637 +g25267 +g27 +sg25268 +S'Garden Gate Latch' +p56638 +sg25270 +S'Maurice Van Felix' +p56639 +sa(dp56640 +g25267 +g27 +sg25268 +S'Latch for Double Swing Gate' +p56641 +sg25270 +S'Maurice Van Felix' +p56642 +sa(dp56643 +g25267 +g27 +sg25268 +S'Latch from Mission' +p56644 +sg25270 +S'Cornelius Christoffels' +p56645 +sa(dp56646 +g25267 +g27 +sg25268 +S'Handled Door Latch' +p56647 +sg25270 +S'Alexander Anderson' +p56648 +sa(dp56649 +g25267 +g27 +sg25268 +S'Suffolk Latch' +p56650 +sg25270 +S'Regina Henderer' +p56651 +sa(dp56652 +g25267 +g27 +sg25268 +S'Door Latch' +p56653 +sg25270 +S'Fritz Boehmer' +p56654 +sa(dp56655 +g25267 +g27 +sg25268 +S'Suffolk Latch' +p56656 +sg25270 +S'Regina Henderer' +p56657 +sa(dp56658 +g25267 +g27 +sg25268 +S'Suffolk Latch' +p56659 +sg25270 +S'Regina Henderer' +p56660 +sa(dp56661 +g25267 +g27 +sg25268 +S'Door Handle' +p56662 +sg25270 +S'Mildred Ford' +p56663 +sa(dp56664 +g25267 +g27 +sg25268 +S'Suffolk Latch' +p56665 +sg25270 +S'Regina Henderer' +p56666 +sa(dp56667 +g25273 +S'(artist after)' +p56668 +sg25267 +g27 +sg25275 +S'\n' +p56669 +sg25268 +S'Cabinet des modes ... (volume II)' +p56670 +sg25270 +S'Artist Information (' +p56671 +sa(dp56672 +g25267 +g27 +sg25268 +S'Suffolk Latch' +p56673 +sg25270 +S'Regina Henderer' +p56674 +sa(dp56675 +g25267 +g27 +sg25268 +S'Suffolk Latch' +p56676 +sg25270 +S'Regina Henderer' +p56677 +sa(dp56678 +g25267 +g27 +sg25268 +S'Hitching Post' +p56679 +sg25270 +S'Charles Moss' +p56680 +sa(dp56681 +g25267 +g27 +sg25268 +S'Hitching Post' +p56682 +sg25270 +S'Charles Bowman' +p56683 +sa(dp56684 +g25267 +g27 +sg25268 +S'Cast Iron Hitching Post' +p56685 +sg25270 +S'Lucien Verbeke' +p56686 +sa(dp56687 +g25267 +g27 +sg25268 +S'Bag' +p56688 +sg25270 +S'Mary Berner' +p56689 +sa(dp56690 +g25267 +g27 +sg25268 +S'Drum' +p56691 +sg25270 +S'Charles Charon' +p56692 +sa(dp56693 +g25267 +g27 +sg25268 +S'Head Dress' +p56694 +sg25270 +S'Mary Berner' +p56695 +sa(dp56696 +g25267 +g27 +sg25268 +S'Bone and Beadwork' +p56697 +sg25270 +S'Melita Hofmann' +p56698 +sa(dp56699 +g25267 +g27 +sg25268 +S'Ceremonial Apron' +p56700 +sg25270 +S'Mary Berner' +p56701 +sa(dp56702 +g25273 +S'(artist after)' +p56703 +sg25267 +g27 +sg25275 +S'\n' +p56704 +sg25268 +S'Cabinet des modes ... (volume III)' +p56705 +sg25270 +S'Artist Information (' +p56706 +sa(dp56707 +g25267 +g27 +sg25268 +S'Tambourine or Hand Drum' +p56708 +sg25270 +S'Melita Hofmann' +p56709 +sa(dp56710 +g25267 +g27 +sg25268 +S'Earrings' +p56711 +sg25270 +S'Melita Hofmann' +p56712 +sa(dp56713 +g25267 +g27 +sg25268 +S'Head Pieces' +p56714 +sg25270 +S'Melita Hofmann' +p56715 +sa(dp56716 +g25267 +g27 +sg25268 +S'Necklace' +p56717 +sg25270 +S'George B. Wally' +p56718 +sa(dp56719 +g25267 +g27 +sg25268 +S'Doll' +p56720 +sg25270 +S'Melita Hofmann' +p56721 +sa(dp56722 +g25267 +g27 +sg25268 +S'Wooden Mask' +p56723 +sg25270 +S'Margaret Knapp' +p56724 +sa(dp56725 +g25267 +g27 +sg25268 +S'Wooden Mask' +p56726 +sg25270 +S'Margaret Knapp' +p56727 +sa(dp56728 +g25267 +g27 +sg25268 +S'Beaded Moccasin' +p56729 +sg25270 +S'Melita Hofmann' +p56730 +sa(dp56731 +g25267 +g27 +sg25268 +S'Moccasin' +p56732 +sg25270 +S'Mary Berner' +p56733 +sa(dp56734 +g25267 +g27 +sg25268 +S'Moccasin Beadwork' +p56735 +sg25270 +S'Melita Hofmann' +p56736 +sa(dp56737 +g25273 +S'(artist after)' +p56738 +sg25267 +g27 +sg25275 +S'\n' +p56739 +sg25268 +S'Cabinet des modes ... (volume IV)' +p56740 +sg25270 +S'Artist Information (' +p56741 +sa(dp56742 +g25267 +g27 +sg25268 +S'Buckskin Legging with Beadwork' +p56743 +sg25270 +S'Melita Hofmann' +p56744 +sa(dp56745 +g25267 +g27 +sg25268 +S'Birch Bark Cape Collar' +p56746 +sg25270 +S'Charles Charon' +p56747 +sa(dp56748 +g25267 +g27 +sg25268 +S'Jacket' +p56749 +sg25270 +S'Charles Charon' +p56750 +sa(dp56751 +g25267 +g27 +sg25268 +S'Beaded Robe' +p56752 +sg25270 +S'Mary Berner' +p56753 +sa(dp56754 +g25267 +g27 +sg25268 +S'Buckskin Shirt and Leggings' +p56755 +sg25270 +S'American 20th Century' +p56756 +sa(dp56757 +g25267 +g27 +sg25268 +S'Dance Moccasins' +p56758 +sg25270 +S'Michael Trekur' +p56759 +sa(dp56760 +g25267 +g27 +sg25268 +S'Moccasin and Writing Book' +p56761 +sg25270 +S'George B. Wally' +p56762 +sa(dp56763 +g25267 +g27 +sg25268 +S'Fish Spear' +p56764 +sg25270 +S'George B. Wally' +p56765 +sa(dp56766 +g25267 +g27 +sg25268 +S'Basket' +p56767 +sg25270 +S'Mary Berner' +p56768 +sa(dp56769 +g25267 +g27 +sg25268 +S'Basket' +p56770 +sg25270 +S'Mary Berner' +p56771 +sa(dp56772 +g25273 +S'(author)' +p56773 +sg25267 +g27 +sg25275 +S'\n' +p56774 +sg25268 +S'Ollivier (volume I)' +p56775 +sg25270 +S'Artist Information (' +p56776 +sa(dp56777 +g25267 +g27 +sg25268 +S'Basket' +p56778 +sg25270 +S'Vincent Burzy' +p56779 +sa(dp56780 +g25267 +g27 +sg25268 +S'Basket' +p56781 +sg25270 +S'Vincent Burzy' +p56782 +sa(dp56783 +g25267 +g27 +sg25268 +S'Beadwork' +p56784 +sg25270 +S'Melita Hofmann' +p56785 +sa(dp56786 +g25267 +g27 +sg25268 +S'Beaded Bags' +p56787 +sg25270 +S'Margaret Knapp' +p56788 +sa(dp56789 +g25267 +g27 +sg25268 +S'Hide Robes' +p56790 +sg25270 +S'Mary Berner' +p56791 +sa(dp56792 +g25267 +g27 +sg25268 +S'Head Dress' +p56793 +sg25270 +S'Michael Trekur' +p56794 +sa(dp56795 +g25267 +g27 +sg25268 +S'Horn and Mortar & Pestle' +p56796 +sg25270 +S'Charles Charon' +p56797 +sa(dp56798 +g25267 +g27 +sg25268 +S'Model of Canoe' +p56799 +sg25270 +S'Margaret Knapp' +p56800 +sa(dp56801 +g25267 +g27 +sg25268 +S'Cap' +p56802 +sg25270 +S'Mary Berner' +p56803 +sa(dp56804 +g25267 +g27 +sg25268 +S'Shield' +p56805 +sg25270 +S'Charles Charon' +p56806 +sa(dp56807 +g25273 +S'(author)' +p56808 +sg25267 +g27 +sg25275 +S'\n' +p56809 +sg25268 +S'Ollivier (volume II)' +p56810 +sg25270 +S'Artist Information (' +p56811 +sa(dp56812 +g25267 +g27 +sg25268 +S'Tomahawk Pipe' +p56813 +sg25270 +S'Mary Berner' +p56814 +sa(dp56815 +g25267 +g27 +sg25268 +S'Leggings' +p56816 +sg25270 +S'George B. Wally' +p56817 +sa(dp56818 +g25267 +g27 +sg25268 +S'Comb and Back Scratcher' +p56819 +sg25270 +S'George B. Wally' +p56820 +sa(dp56821 +g25267 +g27 +sg25268 +S'Mitten' +p56822 +sg25270 +S'Margaret Knapp' +p56823 +sa(dp56824 +g25267 +g27 +sg25268 +S'Beaded Bag' +p56825 +sg25270 +S'Margaret Knapp' +p56826 +sa(dp56827 +g25267 +g27 +sg25268 +S'Booties' +p56828 +sg25270 +S'Margaret Knapp' +p56829 +sa(dp56830 +g25267 +g27 +sg25268 +S'Vessel' +p56831 +sg25270 +S'Mary Berner' +p56832 +sa(dp56833 +g25267 +g27 +sg25268 +S'Vessel' +p56834 +sg25270 +S'Mary Berner' +p56835 +sa(dp56836 +g25267 +g27 +sg25268 +S'Vessel' +p56837 +sg25270 +S'Mary Berner' +p56838 +sa(dp56839 +g25267 +g27 +sg25268 +S'Vessel' +p56840 +sg25270 +S'Vincent Burzy' +p56841 +sa(dp56842 +g25273 +S'Spanish, 1547 - 1616' +p56843 +sg25267 +g27 +sg25275 +S'(author)' +p56844 +sg25268 +S'Don Quichotte de la Manche (volume I)' +p56845 +sg25270 +S'Artist Information (' +p56846 +sa(dp56847 +g25267 +g27 +sg25268 +S'Vessel' +p56848 +sg25270 +S'Mary Berner' +p56849 +sa(dp56850 +g25267 +g27 +sg25268 +S'Vessel and Skirt' +p56851 +sg25270 +S'George B. Wally' +p56852 +sa(dp56853 +g25267 +g27 +sg25268 +S'Basket' +p56854 +sg25270 +S'George B. Wally' +p56855 +sa(dp56856 +g25267 +g27 +sg25268 +S'Hairbrush and Beard Tweezers' +p56857 +sg25270 +S'George B. Wally' +p56858 +sa(dp56859 +g25267 +g27 +sg25268 +S'Box and Basket Implement' +p56860 +sg25270 +S'George B. Wally' +p56861 +sa(dp56862 +g25267 +g27 +sg25268 +S'Medicine Bag and Feather Case' +p56863 +sg25270 +S'Mary Berner' +p56864 +sa(dp56865 +g25267 +g27 +sg25268 +S'Beadwork' +p56866 +sg25270 +S'Vincent Burzy' +p56867 +sa(dp56868 +g25267 +g27 +sg25268 +S'Pottery' +p56869 +sg25270 +S'Margaret Knapp' +p56870 +sa(dp56871 +g25267 +g27 +sg25268 +S'Bowl' +p56872 +sg25270 +S'Margaret Knapp' +p56873 +sa(dp56874 +g25267 +g27 +sg25268 +S'Ceremonial Bowl' +p56875 +sg25270 +S'Michael Trekur' +p56876 +sa(dp56877 +g25273 +S'Spanish, 1547 - 1616' +p56878 +sg25267 +g27 +sg25275 +S'(author)' +p56879 +sg25268 +S'Don Quichotte de la Manche (volume II)' +p56880 +sg25270 +S'Artist Information (' +p56881 +sa(dp56882 +g25267 +g27 +sg25268 +S'Iron Balcony Garde' +p56883 +sg25270 +S'Al Curry' +p56884 +sa(dp56885 +g25267 +g27 +sg25268 +S'Iron Railing' +p56886 +sg25270 +S'Lucien Verbeke' +p56887 +sa(dp56888 +g25267 +g27 +sg25268 +S'Wrought Iron Fence' +p56889 +sg25270 +S'David P Willoughby' +p56890 +sa(dp56891 +g25267 +g27 +sg25268 +S'Foot Scraper' +p56892 +sg25270 +S'Arelia Arbo' +p56893 +sa(dp56894 +g25267 +g27 +sg25268 +S'Cast Iron Fence' +p56895 +sg25270 +S'Al Curry' +p56896 +sa(dp56897 +g25267 +g27 +sg25268 +S'Cast Iron Balcony Rail' +p56898 +sg25270 +S'Ray Price' +p56899 +sa(dp56900 +g25267 +g27 +sg25268 +S'Cast Iron Fence' +p56901 +sg25270 +S'Al Curry' +p56902 +sa(dp56903 +g25267 +g27 +sg25268 +S'Window Grille' +p56904 +sg25270 +S'Ray Price' +p56905 +sa(dp56906 +g25267 +g27 +sg25268 +S'Foot Scraper' +p56907 +sg25270 +S'Ralph Atkinson' +p56908 +sa(dp56909 +g25267 +g27 +sg25268 +S'Window Grille' +p56910 +sg25270 +S'Lucien Verbeke' +p56911 +sa(dp56912 +g25273 +S'Spanish, 1547 - 1616' +p56913 +sg25267 +g27 +sg25275 +S'(author)' +p56914 +sg25268 +S'Don Quichotte de la Manche (volume III)' +p56915 +sg25270 +S'Artist Information (' +p56916 +sa(dp56917 +g25267 +g27 +sg25268 +S'Kettle with Spoon' +p56918 +sg25270 +S'Benjamin Resnick' +p56919 +sa(dp56920 +g25267 +g27 +sg25268 +S'Kettle' +p56921 +sg25270 +S'Mae Szilvasy' +p56922 +sa(dp56923 +g25267 +g27 +sg25268 +S'Fire Place Kettle' +p56924 +sg25270 +S'Ludmilla Calderon' +p56925 +sa(dp56926 +g25267 +g27 +sg25268 +S'Iron Cooking Pot' +p56927 +sg25270 +S'Columbus Simpson' +p56928 +sa(dp56929 +g25267 +g27 +sg25268 +S'Iron Pot' +p56930 +sg25270 +S'J. Howard Iams' +p56931 +sa(dp56932 +g25267 +g27 +sg25268 +S'Bridal Wreath' +p56933 +sg25270 +S'Verna Tallman' +p56934 +sa(dp56935 +g25267 +g27 +sg25268 +S'Silver Knitting Shield' +p56936 +sg25270 +S'Columbus Simpson' +p56937 +sa(dp56938 +g25267 +g27 +sg25268 +S'Candlestick' +p56939 +sg25270 +S'Bernard Krieger' +p56940 +sa(dp56941 +g25267 +g27 +sg25268 +S'Horse Shoe Candle Holder' +p56942 +sg25270 +S'John Swientochowski' +p56943 +sa(dp56944 +g25267 +g27 +sg25268 +S'Candle Stand' +p56945 +sg25270 +S'Gordon Sanborn' +p56946 +sa(dp56947 +g25273 +S'Spanish, 1547 - 1616' +p56948 +sg25267 +g27 +sg25275 +S'(author)' +p56949 +sg25268 +S'Don Quichotte de la Manche (volume IV)' +p56950 +sg25270 +S'Artist Information (' +p56951 +sa(dp56952 +g25267 +g27 +sg25268 +S'Candle Pendant' +p56953 +sg25270 +S'Cushman Parker' +p56954 +sa(dp56955 +g25267 +g27 +sg25268 +S'Rush and Candle Stand' +p56956 +sg25270 +S'Irene Lawson' +p56957 +sa(dp56958 +g25267 +g27 +sg25268 +S'Rush and Candle Stand' +p56959 +sg25270 +S'Irene Lawson' +p56960 +sa(dp56961 +g25267 +g27 +sg25268 +S'Rush and Candle Stand' +p56962 +sg25270 +S'Irene Lawson' +p56963 +sa(dp56964 +g25267 +g27 +sg25268 +S'Rush and Candle Stand' +p56965 +sg25270 +S'Irene Lawson' +p56966 +sa(dp56967 +g25267 +g27 +sg25268 +S'Rush and Candle Stand' +p56968 +sg25270 +S'Irene Lawson' +p56969 +sa(dp56970 +g25267 +g27 +sg25268 +S'Rush and Candle Stand' +p56971 +sg25270 +S'Irene Lawson' +p56972 +sa(dp56973 +g25267 +g27 +sg25268 +S'Rush and Candle Stand' +p56974 +sg25270 +S'Irene Lawson' +p56975 +sa(dp56976 +g25267 +g27 +sg25268 +S'Candle and Rush Light Holder' +p56977 +sg25270 +S'Jack Staloff' +p56978 +sa(dp56979 +g25267 +g27 +sg25268 +S'Rush and Candle Holder' +p56980 +sg25270 +S'Jack Staloff' +p56981 +sa(dp56982 +g25273 +S'Spanish, 1547 - 1616' +p56983 +sg25267 +g27 +sg25275 +S'(author)' +p56984 +sg25268 +S'Don Quichotte de la Manche (volume V)' +p56985 +sg25270 +S'Artist Information (' +p56986 +sa(dp56987 +g25267 +g27 +sg25268 +S'Rush Light and Candle Holder' +p56988 +sg25270 +S'Benjamin Resnick' +p56989 +sa(dp56990 +g25267 +g27 +sg25268 +S'Candle Holder' +p56991 +sg25270 +S'Benjamin Resnick' +p56992 +sa(dp56993 +g25267 +g27 +sg25268 +S'Candle Holder' +p56994 +sg25270 +S'American 20th Century' +p56995 +sa(dp56996 +g25267 +g27 +sg25268 +S'Rush and Candle Stand' +p56997 +sg25270 +S'Benjamin Resnick' +p56998 +sa(dp56999 +g25267 +g27 +sg25268 +S'Rush Holder with Candle Socket' +p57000 +sg25270 +S'Wellington Blewett' +p57001 +sa(dp57002 +g25267 +g27 +sg25268 +S'Rush Light and Candle Holder' +p57003 +sg25270 +S'Filippo Porreca' +p57004 +sa(dp57005 +g25267 +g27 +sg25268 +S'Rush Holder with Candle Socket' +p57006 +sg25270 +S'H. Langden Brown' +p57007 +sa(dp57008 +g25267 +g27 +sg25268 +S'Rush Burner Candle Holder' +p57009 +sg25270 +S'Gerald Bernhardt' +p57010 +sa(dp57011 +g25267 +g27 +sg25268 +S'Combination Rush/Candle Holder' +p57012 +sg25270 +S'Leslie Macklem' +p57013 +sa(dp57014 +g25267 +g27 +sg25268 +S'Candle and Rush Light Holder' +p57015 +sg25270 +S'Jack Staloff' +p57016 +sa(dp57017 +g25273 +S'Spanish, 1547 - 1616' +p57018 +sg25267 +g27 +sg25275 +S'(author)' +p57019 +sg25268 +S'Don Quichotte de la Manche (volume VI)' +p57020 +sg25270 +S'Artist Information (' +p57021 +sa(dp57022 +g25267 +g27 +sg25268 +S'Rush Holder' +p57023 +sg25270 +S'John Petrucci' +p57024 +sa(dp57025 +g25267 +g27 +sg25268 +S'Rush Holder' +p57026 +sg25270 +S'Irene Lawson' +p57027 +sa(dp57028 +g25267 +g27 +sg25268 +S'Rush Light Holder' +p57029 +sg25270 +S'Milton Grubstein' +p57030 +sa(dp57031 +g25267 +g27 +sg25268 +S'Rush Burner Paperweight' +p57032 +sg25270 +S'Gerald Bernhardt' +p57033 +sa(dp57034 +g25267 +g27 +sg25268 +S'Candle Holder' +p57035 +sg25270 +S'W.J. Goodacre' +p57036 +sa(dp57037 +g25267 +g27 +sg25268 +S'Candle Sticker' +p57038 +sg25270 +S'Frank M. Keane' +p57039 +sa(dp57040 +g25267 +g27 +sg25268 +S'Candle Holder' +p57041 +sg25270 +S'Dana Bartlett' +p57042 +sa(dp57043 +g25267 +g27 +sg25268 +S'Candle Holder' +p57044 +sg25270 +S'Eldon Allen' +p57045 +sa(dp57046 +g25267 +g27 +sg25268 +S"Miner's Candlestick" +p57047 +sg25270 +S'Florence Huston' +p57048 +sa(dp57049 +g25267 +g27 +sg25268 +S"Miner's Candle Holder" +p57050 +sg25270 +S'Walter L. Webster' +p57051 +sa(dp57052 +g25273 +S'Spanish, 1547 - 1616' +p57053 +sg25267 +g27 +sg25275 +S'(author)' +p57054 +sg25268 +S"Les Principales Aventures de l'admirable Don Quichotte..." +p57055 +sg25270 +S'Artist Information (' +p57056 +sa(dp57057 +g25267 +g27 +sg25268 +S"Miner's Candle Holder" +p57058 +sg25270 +S'Benjamin Resnick' +p57059 +sa(dp57060 +g25267 +g27 +sg25268 +S'Candle Holder' +p57061 +sg25270 +S'Harry G. Aberdeen' +p57062 +sa(dp57063 +g25267 +g27 +sg25268 +S'Sconce' +p57064 +sg25270 +S'Alfred Koehn' +p57065 +sa(dp57066 +g25267 +g27 +sg25268 +S'Wall Fixture' +p57067 +sg25270 +S'Florence Huston' +p57068 +sa(dp57069 +g25267 +g27 +sg25268 +S'Chandeleir' +p57070 +sg25270 +S'Mildred Ford' +p57071 +sa(dp57072 +g25267 +g27 +sg25268 +S'Chandelier' +p57073 +sg25270 +S'Mildred Ford' +p57074 +sa(dp57075 +g25267 +S"Because England restricted the importation of raw tin into the colonies, tinware\n was scarce in America before the Revolution. By the nineteenth century, however,\n tin was plentiful and in great demand for a variety of household articles. Lighting\n devices were commonly made of tinplate. The lightness of the metal allowed sconces to\n be hung from the wall or chandeliers from the ceiling. The flexibility of the material\n allowed craftsmen to fashion decorative shapes. This chandelier, made in the 1830s,\n was constructed of sheet tin. The barrel-shaped body provides a central core from\n which six arms extend outward to terminate in candleholders. The S-curves of the\n arms serve to diffuse the light away from the center while providing a decorative\n aspect to the chandelier's form. Ribbed bands around the body of the chandelier\n and ribs extending along the arms suggest a linear pattern that is emphasized\n by the fluting of the candleholders. The simplicity of this linear pattern and\n the round forms of the central body and candleholders provide a unified and pleasing\n sound.\n " +p57076 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000305.jpg' +p57077 +sg25268 +S'Tole Candle Wall Bracket' +p57078 +sg25270 +S'David S. De Vault' +p57079 +sa(dp57080 +g25267 +g27 +sg25268 +S'Brass Lantern' +p57081 +sg25270 +S'Margaret Stottlemeyer' +p57082 +sa(dp57083 +g25267 +g27 +sg25268 +S'Brass Lantern' +p57084 +sg25270 +S'Margaret Stottlemeyer' +p57085 +sa(dp57086 +g25267 +g27 +sg25268 +S'Night Lamp' +p57087 +sg25270 +S'Dorothy Posten' +p57088 +sa(dp57089 +g25273 +S'(author)' +p57090 +sg25267 +g27 +sg25275 +S'\n' +p57091 +sg25268 +S'Costumes et annales des grandes theatres de Paris (volume I)' +p57092 +sg25270 +S'Artist Information (' +p57093 +sa(dp57094 +g25267 +g27 +sg25268 +S'Wardroom Lamp from "Constitution"' +p57095 +sg25270 +S'Artist Information (' +p57096 +sa(dp57097 +g25267 +g27 +sg25268 +S'Candelabra' +p57098 +sg25270 +S'Walter Hochstrasser' +p57099 +sa(dp57100 +g25267 +g27 +sg25268 +S'Candelabra' +p57101 +sg25270 +S'Richard Taylor' +p57102 +sa(dp57103 +g25267 +g27 +sg25268 +S'Candlestick' +p57104 +sg25270 +S'Paul Ward' +p57105 +sa(dp57106 +g25267 +g27 +sg25268 +S'Candle Stand' +p57107 +sg25270 +S'Paul Ward' +p57108 +sa(dp57109 +g25267 +g27 +sg25268 +S'Combination Rush & Candle Stand' +p57110 +sg25270 +S'Samuel Fineman' +p57111 +sa(dp57112 +g25267 +g27 +sg25268 +S'Candlestick' +p57113 +sg25270 +S'Mary Hansen' +p57114 +sa(dp57115 +g25267 +g27 +sg25268 +S'Candle Holder' +p57116 +sg25270 +S'Joseph L. Boyd' +p57117 +sa(dp57118 +g25267 +g27 +sg25268 +S'Candle Holder' +p57119 +sg25270 +S'David S. De Vault' +p57120 +sa(dp57121 +g25267 +g27 +sg25268 +S'Brass Candle Holder' +p57122 +sg25270 +S'Gerald Bernhardt' +p57123 +sa(dp57124 +g25273 +S'(author)' +p57125 +sg25267 +g27 +sg25275 +S'\n' +p57126 +sg25268 +S'Costumes et annales des grandes theatres de Paris (volume II)' +p57127 +sg25270 +S'Artist Information (' +p57128 +sa(dp57129 +g25267 +g27 +sg25268 +S'Candlestick' +p57130 +sg25270 +S'Philip Johnson' +p57131 +sa(dp57132 +g25267 +g27 +sg25268 +S'Candlestick' +p57133 +sg25270 +S'Philip Johnson' +p57134 +sa(dp57135 +g25267 +g27 +sg25268 +S'Sconce' +p57136 +sg25270 +S'Edward D. Williams' +p57137 +sa(dp57138 +g25267 +g27 +sg25268 +S'Brass Candlestick' +p57139 +sg25270 +S'Edward L. Loper' +p57140 +sa(dp57141 +g25267 +g27 +sg25268 +S'Candlestand' +p57142 +sg25270 +S'Jack Staloff' +p57143 +sa(dp57144 +g25267 +g27 +sg25268 +S'Iron and Brass Candlestand' +p57145 +sg25270 +S'Francis Borelli' +p57146 +sa(dp57147 +g25267 +g27 +sg25268 +S'Candlestand' +p57148 +sg25270 +S'Jack Staloff' +p57149 +sa(dp57150 +g25267 +g27 +sg25268 +S'Candlestick Stand' +p57151 +sg25270 +S'Jack Staloff' +p57152 +sa(dp57153 +g25267 +g27 +sg25268 +S'Adjustable Candle Holder' +p57154 +sg25270 +S'Howard Lumbard' +p57155 +sa(dp57156 +g25267 +g27 +sg25268 +S'Adjustable Candle Holder' +p57157 +sg25270 +S'Howard Lumbard' +p57158 +sa(dp57159 +g25273 +S'(author)' +p57160 +sg25267 +g27 +sg25275 +S'\n' +p57161 +sg25268 +S'Costumes et annales des grandes theatres de Paris (volume III)' +p57162 +sg25270 +S'Artist Information (' +p57163 +sa(dp57164 +g25267 +g27 +sg25268 +S'Candlestand' +p57165 +sg25270 +S'Charles Garjian' +p57166 +sa(dp57167 +g25267 +g27 +sg25268 +S'Iron Candlestick' +p57168 +sg25270 +S'Joseph Papa' +p57169 +sa(dp57170 +g25267 +g27 +sg25268 +S'Candlestick' +p57171 +sg25270 +S'Cecily Edwards' +p57172 +sa(dp57173 +g25267 +g27 +sg25268 +S'Candle Holder' +p57174 +sg25270 +S'Bernard Westmacott' +p57175 +sa(dp57176 +g25267 +g27 +sg25268 +S'Candle Holder' +p57177 +sg25270 +S'Gerald Bernhardt' +p57178 +sa(dp57179 +g25267 +g27 +sg25268 +S'Candle Holder' +p57180 +sg25270 +S'Mildred Ford' +p57181 +sa(dp57182 +g25267 +g27 +sg25268 +S'Candlestand' +p57183 +sg25270 +S'Jack Staloff' +p57184 +sa(dp57185 +g25267 +g27 +sg25268 +S'Three Legged Candlestick' +p57186 +sg25270 +S'William Schmidt' +p57187 +sa(dp57188 +g25267 +g27 +sg25268 +S'Tin Lantern' +p57189 +sg25270 +S'David S. De Vault' +p57190 +sa(dp57191 +g25267 +g27 +sg25268 +S'Sheet Iron Lantern' +p57192 +sg25270 +S'Isabelle De Strange' +p57193 +sa(dp57194 +g25268 +S'Portrait of a Young Man' +p57195 +sg25270 +S'Giuseppe Ghislandi' +p57196 +sg25273 +S', after 1720' +p57197 +sg25275 +S'\n' +p57198 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f2f.jpg' +p57199 +sg25267 +g27 +sa(dp57200 +g25273 +S'(author)' +p57201 +sg25267 +g27 +sg25275 +S'\n' +p57202 +sg25268 +S'Costumes et annales des grandes theatres de Paris (volume IV)' +p57203 +sg25270 +S'Artist Information (' +p57204 +sa(dp57205 +g25267 +g27 +sg25268 +S'Hand Lantern' +p57206 +sg25270 +S'William Schmidt' +p57207 +sa(dp57208 +g25267 +g27 +sg25268 +S'Lantern' +p57209 +sg25270 +S'Mildred Ford' +p57210 +sa(dp57211 +g25267 +g27 +sg25268 +S'Pierced Iron Lantern' +p57212 +sg25270 +S'Florian Rokita' +p57213 +sa(dp57214 +g25267 +g27 +sg25268 +S'Hand Lantern' +p57215 +sg25270 +S'William Schmidt' +p57216 +sa(dp57217 +g25267 +g27 +sg25268 +S'Lantern' +p57218 +sg25270 +S'Rose Campbell-Gerke' +p57219 +sa(dp57220 +g25267 +g27 +sg25268 +S'Pierced Tin Lantern' +p57221 +sg25270 +S'Francis Bruner' +p57222 +sa(dp57223 +g25267 +g27 +sg25268 +S'Candle Lantern' +p57224 +sg25270 +S'Clyde L. Cheney' +p57225 +sa(dp57226 +g25267 +g27 +sg25268 +S'Lantern' +p57227 +sg25270 +S'Mildred Ford' +p57228 +sa(dp57229 +g25267 +g27 +sg25268 +S'Lantern' +p57230 +sg25270 +S'Albert Eyth' +p57231 +sa(dp57232 +g25267 +g27 +sg25268 +S'Lantern' +p57233 +sg25270 +S'Columbus Simpson' +p57234 +sa(dp57235 +g25273 +S'(author)' +p57236 +sg25267 +g27 +sg25275 +S'\n' +p57237 +sg25268 +S'Costumes et annales des grandes theatres de Paris (volume V)' +p57238 +sg25270 +S'Artist Information (' +p57239 +sa(dp57240 +g25267 +g27 +sg25268 +S'Lantern' +p57241 +sg25270 +S'Holger Hansen' +p57242 +sa(dp57243 +g25267 +g27 +sg25268 +S'Pierced Tin Lantern' +p57244 +sg25270 +S'Edward D. Williams' +p57245 +sa(dp57246 +g25267 +g27 +sg25268 +S'Tin Lantern' +p57247 +sg25270 +S'Augustine Haugland' +p57248 +sa(dp57249 +g25267 +g27 +sg25268 +S'Lantern' +p57250 +sg25270 +S'Mildred Ford' +p57251 +sa(dp57252 +g25267 +g27 +sg25268 +S'Lantern' +p57253 +sg25270 +S'Mildred Ford' +p57254 +sa(dp57255 +g25267 +g27 +sg25268 +S'Lantern' +p57256 +sg25270 +S'Mildred Ford' +p57257 +sa(dp57258 +g25267 +g27 +sg25268 +S'Lantern' +p57259 +sg25270 +S'Bernard Krieger' +p57260 +sa(dp57261 +g25267 +g27 +sg25268 +S'Lantern' +p57262 +sg25270 +S'Filippo Porreca' +p57263 +sa(dp57264 +g25267 +g27 +sg25268 +S'Lantern' +p57265 +sg25270 +S'Harry Grossen' +p57266 +sa(dp57267 +g25267 +g27 +sg25268 +S'Lantern' +p57268 +sg25270 +S'Walter Hochstrasser' +p57269 +sa(dp57270 +g25273 +S'(artist)' +p57271 +sg25267 +g27 +sg25275 +S'\n' +p57272 +sg25268 +S'Les liasons dangereuses (volume I)' +p57273 +sg25270 +S'Artist Information (' +p57274 +sa(dp57275 +g25267 +g27 +sg25268 +S"Bull's Eye Hand Lantern" +p57276 +sg25270 +S'Ernest A. Towers, Jr.' +p57277 +sa(dp57278 +g25267 +g27 +sg25268 +S"Fireman's Candle Lamp" +p57279 +sg25270 +S'Raymond Manupelli' +p57280 +sa(dp57281 +g25267 +g27 +sg25268 +S'Tin Spot Lamp' +p57282 +sg25270 +S'Andrew Topolosky' +p57283 +sa(dp57284 +g25267 +g27 +sg25268 +S'Lantern' +p57285 +sg25270 +S'Margaret Stottlemeyer' +p57286 +sa(dp57287 +g25267 +g27 +sg25268 +S"Bull's Eye Lantern" +p57288 +sg25270 +S'Artist Information (' +p57289 +sa(dp57290 +g25267 +g27 +sg25268 +S'New England Lantern' +p57291 +sg25270 +S'Harry Jennings' +p57292 +sa(dp57293 +g25267 +g27 +sg25268 +S'Police Lantern and Club' +p57294 +sg25270 +S'Alexander Anderson' +p57295 +sa(dp57296 +g25267 +g27 +sg25268 +S'Square Lantern' +p57297 +sg25270 +S'Lazar Rubinstein' +p57298 +sa(dp57299 +g25267 +g27 +sg25268 +S'Lantern' +p57300 +sg25270 +S'Rose Campbell-Gerke' +p57301 +sa(dp57302 +g25267 +g27 +sg25268 +S'Dormer Window Lantern' +p57303 +sg25270 +S'Margaret Stottlemeyer' +p57304 +sa(dp57305 +g25273 +S'(artist)' +p57306 +sg25267 +g27 +sg25275 +S'\n' +p57307 +sg25268 +S'Les liasons dangereuses (volume II)' +p57308 +sg25270 +S'Artist Information (' +p57309 +sa(dp57310 +g25267 +g27 +sg25268 +S'Oil Lamp' +p57311 +sg25270 +S'Andrew Topolosky' +p57312 +sa(dp57313 +g25267 +g27 +sg25268 +S'Coal Oil Lantern' +p57314 +sg25270 +S'Alfred Farrell' +p57315 +sa(dp57316 +g25267 +g27 +sg25268 +S'Lantern' +p57317 +sg25270 +S'Samuel W. Ford' +p57318 +sa(dp57319 +g25267 +g27 +sg25268 +S'Kerosene Lantern' +p57320 +sg25270 +S'Amelia Tuccio' +p57321 +sa(dp57322 +g25267 +g27 +sg25268 +S'Lantern' +p57323 +sg25270 +S'Margaret Golden' +p57324 +sa(dp57325 +g25267 +g27 +sg25268 +S'Hand Lantern' +p57326 +sg25270 +S'Amelia Tuccio' +p57327 +sa(dp57328 +g25267 +g27 +sg25268 +S'Kerosene Lantern' +p57329 +sg25270 +S'Samuel Faigin' +p57330 +sa(dp57331 +g25267 +g27 +sg25268 +S'Taper Jack' +p57332 +sg25270 +S'Janet Riza' +p57333 +sa(dp57334 +g25267 +g27 +sg25268 +S'Taper Jack' +p57335 +sg25270 +S'Janet Riza' +p57336 +sa(dp57337 +g25267 +g27 +sg25268 +S'Lantern for Candle' +p57338 +sg25270 +S'Albert Geuppert' +p57339 +sa(dp57340 +g25273 +S'etching' +p57341 +sg25267 +g27 +sg25275 +S'published 1769' +p57342 +sg25268 +S'Head-Piece' +p57343 +sg25270 +S'Pierre-Philippe Choffard' +p57344 +sa(dp57345 +g25267 +g27 +sg25268 +S'Lantern' +p57346 +sg25270 +S'Walter Hochstrasser' +p57347 +sa(dp57348 +g25267 +g27 +sg25268 +S'Lantern' +p57349 +sg25270 +S'William Schmidt' +p57350 +sa(dp57351 +g25267 +g27 +sg25268 +S'Lantern' +p57352 +sg25270 +S'Roy Weber' +p57353 +sa(dp57354 +g25267 +g27 +sg25268 +S'Lantern' +p57355 +sg25270 +S'James Vail' +p57356 +sa(dp57357 +g25267 +g27 +sg25268 +S'Lantern' +p57358 +sg25270 +S'Walter Hochstrasser' +p57359 +sa(dp57360 +g25267 +g27 +sg25268 +S'Lantern' +p57361 +sg25270 +S'Arthur Mathews' +p57362 +sa(dp57363 +g25267 +g27 +sg25268 +S'Lantern' +p57364 +sg25270 +S'Walter Hochstrasser' +p57365 +sa(dp57366 +g25267 +g27 +sg25268 +S'Lantern' +p57367 +sg25270 +S'Richard Whitaker' +p57368 +sa(dp57369 +g25267 +g27 +sg25268 +S'Lantern' +p57370 +sg25270 +S'Roy Weber' +p57371 +sa(dp57372 +g25267 +g27 +sg25268 +S'Hand Lantern' +p57373 +sg25270 +S'Lazar Rubinstein' +p57374 +sa(dp57375 +g25273 +S'portfolio with 13 "hors-texte" etchings for Saint-Lambert\'s "Les Saisons ..." (1769 and 1775 editions)' +p57376 +sg25267 +g27 +sg25275 +S'unknown date\n' +p57377 +sg25268 +S'Prints for Saint-Lambert\'s "Les Saisons ..."' +p57378 +sg25270 +S'Pierre-Philippe Choffard' +p57379 +sa(dp57380 +g25267 +g27 +sg25268 +S"Comstock Miner's Lantern" +p57381 +sg25270 +S'Florence Huston' +p57382 +sa(dp57383 +g25267 +g27 +sg25268 +S'Hand Lantern' +p57384 +sg25270 +S'Samuel W. Ford' +p57385 +sa(dp57386 +g25267 +g27 +sg25268 +S'Lantern' +p57387 +sg25270 +S'Mildred Ford' +p57388 +sa(dp57389 +g25267 +g27 +sg25268 +S'Lantern' +p57390 +sg25270 +S'Holger Hansen' +p57391 +sa(dp57392 +g25267 +g27 +sg25268 +S'Pioneer Lantern' +p57393 +sg25270 +S'LeRoy Griffith' +p57394 +sa(dp57395 +g25267 +g27 +sg25268 +S'Lantern for Candle' +p57396 +sg25270 +S'Henry Granet' +p57397 +sa(dp57398 +g25267 +g27 +sg25268 +S'Lantern' +p57399 +sg25270 +S'Mildred Ford' +p57400 +sa(dp57401 +g25267 +g27 +sg25268 +S'Stable Lantern' +p57402 +sg25270 +S'Florence Huston' +p57403 +sa(dp57404 +g25267 +g27 +sg25268 +S'Metal Lantern' +p57405 +sg25270 +S'Margaret K. Moore' +p57406 +sa(dp57407 +g25267 +g27 +sg25268 +S'Lantern' +p57408 +sg25270 +S'John Oster' +p57409 +sa(dp57410 +g25273 +S'etching' +p57411 +sg25267 +g27 +sg25275 +S'published 1769' +p57412 +sg25268 +S'Head-Piece' +p57413 +sg25270 +S'Pierre-Philippe Choffard' +p57414 +sa(dp57415 +g25267 +g27 +sg25268 +S'Yard Lantern' +p57416 +sg25270 +S'Dorothea A. Farrington' +p57417 +sa(dp57418 +g25267 +g27 +sg25268 +S'Hand Lantern' +p57419 +sg25270 +S'Filippo Porreca' +p57420 +sa(dp57421 +g25267 +g27 +sg25268 +S'Storm Lamp' +p57422 +sg25270 +S'James McLellan' +p57423 +sa(dp57424 +g25267 +g27 +sg25268 +S'Lantern' +p57425 +sg25270 +S'Walter Hochstrasser' +p57426 +sa(dp57427 +g25267 +g27 +sg25268 +S'Street Post Lamp' +p57428 +sg25270 +S'Regina Henderer' +p57429 +sa(dp57430 +g25267 +g27 +sg25268 +S'Eagle Lamp and Post' +p57431 +sg25270 +S'Florence Huston' +p57432 +sa(dp57433 +g25267 +g27 +sg25268 +S'Cast Iron Lamp' +p57434 +sg25270 +S'Ray Price' +p57435 +sa(dp57436 +g25267 +g27 +sg25268 +S'Gas Street Lamp' +p57437 +sg25270 +S'Mina Lowry' +p57438 +sa(dp57439 +g25267 +g27 +sg25268 +S'Bracket Lamp' +p57440 +sg25270 +S'Leslie Macklem' +p57441 +sa(dp57442 +g25267 +g27 +sg25268 +S'Hanging Lamp' +p57443 +sg25270 +S'Isidore Steinberg' +p57444 +sa(dp57445 +g25273 +S'etching' +p57446 +sg25267 +g27 +sg25275 +S'published 1769' +p57447 +sg25268 +S'Head-Piece' +p57448 +sg25270 +S'Pierre-Philippe Choffard' +p57449 +sa(dp57450 +g25267 +g27 +sg25268 +S'Lantern' +p57451 +sg25270 +S'Edith Miller' +p57452 +sa(dp57453 +g25267 +g27 +sg25268 +S'Witch Lantern' +p57454 +sg25270 +S'Lloyd Charles Lemcke' +p57455 +sa(dp57456 +g25267 +g27 +sg25268 +S'Lantern' +p57457 +sg25270 +S'Edith Miller' +p57458 +sa(dp57459 +g25267 +g27 +sg25268 +S'Garden Lamp' +p57460 +sg25270 +S'Florence Huston' +p57461 +sa(dp57462 +g25267 +g27 +sg25268 +S'Panel from Hall Lantern' +p57463 +sg25270 +S'Blanche Waterbury' +p57464 +sa(dp57465 +g25267 +g27 +sg25268 +S'Panel from Hall Lantern' +p57466 +sg25270 +S'Blanche Waterbury' +p57467 +sa(dp57468 +g25267 +g27 +sg25268 +S'Panel from Hall Lantern' +p57469 +sg25270 +S'Blanche Waterbury' +p57470 +sa(dp57471 +g25267 +g27 +sg25268 +S'Hall Candle Lantern' +p57472 +sg25270 +S'Blanche Waterbury' +p57473 +sa(dp57474 +g25267 +g27 +sg25268 +S'Candle Lantern' +p57475 +sg25270 +S'Artist Information (' +p57476 +sa(dp57477 +g25267 +g27 +sg25268 +S'Lamp' +p57478 +sg25270 +S'Walter G. Capuozzo' +p57479 +sa(dp57480 +g25273 +S'etching' +p57481 +sg25267 +g27 +sg25275 +S'published 1769' +p57482 +sg25268 +S'Head-Piece' +p57483 +sg25270 +S'Pierre-Philippe Choffard' +p57484 +sa(dp57485 +g25267 +g27 +sg25268 +S'Lamp Chimney' +p57486 +sg25270 +S'John Tarantino' +p57487 +sa(dp57488 +g25267 +g27 +sg25268 +S'Hurricane Shade and Candlestick' +p57489 +sg25270 +S'Henry Meyers' +p57490 +sa(dp57491 +g25267 +g27 +sg25268 +S'Hurricane Shade' +p57492 +sg25270 +S'John Dana' +p57493 +sa(dp57494 +g25267 +g27 +sg25268 +S'Gimble Candle Lamp' +p57495 +sg25270 +S'Artist Information (' +p57496 +sa(dp57497 +g25267 +g27 +sg25268 +S'Candle Lantern' +p57498 +sg25270 +S'Samuel W. Ford' +p57499 +sa(dp57500 +g25267 +g27 +sg25268 +S'Hand Lantern' +p57501 +sg25270 +S'Joseph Rothenberg' +p57502 +sa(dp57503 +g25267 +g27 +sg25268 +S'Candle Lantern' +p57504 +sg25270 +S'Max Fernekes' +p57505 +sa(dp57506 +g25267 +g27 +sg25268 +S'Lantern' +p57507 +sg25270 +S'Earl Butlin' +p57508 +sa(dp57509 +g25267 +g27 +sg25268 +S'Lantern' +p57510 +sg25270 +S'Ralph Atkinson' +p57511 +sa(dp57512 +g25267 +g27 +sg25268 +S'Hand Lantern' +p57513 +sg25270 +S'Lazar Rubinstein' +p57514 +sa(dp57515 +g25273 +S'etching' +p57516 +sg25267 +g27 +sg25275 +S'published 1769' +p57517 +sg25268 +S'Fleuron' +p57518 +sg25270 +S'Pierre-Philippe Choffard' +p57519 +sa(dp57520 +g25267 +g27 +sg25268 +S'Hand Lantern' +p57521 +sg25270 +S'Florence Strom' +p57522 +sa(dp57523 +g25267 +g27 +sg25268 +S'Hand Lantern' +p57524 +sg25270 +S'Amelia Tuccio' +p57525 +sa(dp57526 +g25267 +g27 +sg25268 +S'Hand Lantern' +p57527 +sg25270 +S'Amelia Tuccio' +p57528 +sa(dp57529 +g25267 +g27 +sg25268 +S'Lantern' +p57530 +sg25270 +S'Albert Allen' +p57531 +sa(dp57532 +g25267 +g27 +sg25268 +S'Hand Lantern' +p57533 +sg25270 +S'Florence Strom' +p57534 +sa(dp57535 +g25267 +g27 +sg25268 +S'"Slut" Lamp' +p57536 +sg25270 +S'Jacob Lipkin' +p57537 +sa(dp57538 +g25267 +g27 +sg25268 +S'Brass Betty Lamp' +p57539 +sg25270 +S'Oscar Bluhme' +p57540 +sa(dp57541 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p57542 +sg25270 +S'Howard Lumbard' +p57543 +sa(dp57544 +g25267 +g27 +sg25268 +S'Swinging Lamp' +p57545 +sg25270 +S'Roy Weber' +p57546 +sa(dp57547 +g25267 +g27 +sg25268 +S'Betty Lamp' +p57548 +sg25270 +S'Gilbert Boese' +p57549 +sa(dp57550 +g25273 +S'etching' +p57551 +sg25267 +g27 +sg25275 +S'published 1769' +p57552 +sg25268 +S'Head-Piece (second set)' +p57553 +sg25270 +S'Pierre-Philippe Choffard' +p57554 +sa(dp57555 +g25267 +g27 +sg25268 +S'Betty Lamp' +p57556 +sg25270 +S'John Swientochowski' +p57557 +sa(dp57558 +g25267 +g27 +sg25268 +S'Hanging Lamp' +p57559 +sg25270 +S'Anna Aloisi' +p57560 +sa(dp57561 +g25267 +g27 +sg25268 +S'Lamp' +p57562 +sg25270 +S'Charlotte Winter' +p57563 +sa(dp57564 +g25267 +g27 +sg25268 +S'Lamp' +p57565 +sg25270 +S'Lyman Young' +p57566 +sa(dp57567 +g25267 +g27 +sg25268 +S'Betty Lamp' +p57568 +sg25270 +S'Nicholas Acampora' +p57569 +sa(dp57570 +g25267 +g27 +sg25268 +S'Kerosene Lamp Heater' +p57571 +sg25270 +S'Samuel Faigin' +p57572 +sa(dp57573 +g25267 +g27 +sg25268 +S'Combined Stove and Lantern' +p57574 +sg25270 +S'Lester Kausch' +p57575 +sa(dp57576 +g25267 +g27 +sg25268 +S'Combination Lantern/Stove' +p57577 +sg25270 +S'Edward L. Loper' +p57578 +sa(dp57579 +g25267 +g27 +sg25268 +S'Lantern (Shaker)' +p57580 +sg25270 +S'Adelaide Dyball' +p57581 +sa(dp57582 +g25267 +g27 +sg25268 +S'Lantern' +p57583 +sg25270 +S'Edward L. Loper' +p57584 +sa(dp57585 +g25273 +S'etching' +p57586 +sg25267 +g27 +sg25275 +S'published 1769' +p57587 +sg25268 +S'Head-Piece (second set)' +p57588 +sg25270 +S'Pierre-Philippe Choffard' +p57589 +sa(dp57590 +g25267 +g27 +sg25268 +S'Lantern' +p57591 +sg25270 +S'George H. Alexander' +p57592 +sa(dp57593 +g25267 +g27 +sg25268 +S'Lantern' +p57594 +sg25270 +S'Esther Williams' +p57595 +sa(dp57596 +g25267 +g27 +sg25268 +S'Lantern' +p57597 +sg25270 +S'Helen Hobart' +p57598 +sa(dp57599 +g25267 +g27 +sg25268 +S'Farm Lantern' +p57600 +sg25270 +S'Richard Taylor' +p57601 +sa(dp57602 +g25267 +g27 +sg25268 +S'Ship Lantern' +p57603 +sg25270 +S'Samuel Philpot' +p57604 +sa(dp57605 +g25267 +g27 +sg25268 +S'Carriage Lamp' +p57606 +sg25270 +S'Stanley Mazur' +p57607 +sa(dp57608 +g25267 +g27 +sg25268 +S'Lamp' +p57609 +sg25270 +S'John Cutting' +p57610 +sa(dp57611 +g25267 +g27 +sg25268 +S'Railway Lantern' +p57612 +sg25270 +S'Albert Geuppert' +p57613 +sa(dp57614 +g25267 +g27 +sg25268 +S'Locomotive Headlight' +p57615 +sg25270 +S'Jessie M. Youngs' +p57616 +sa(dp57617 +g25267 +g27 +sg25268 +S"Ship's Lantern" +p57618 +sg25270 +S'G.A. Spangenberg' +p57619 +sa(dp57620 +g25273 +S'etching' +p57621 +sg25267 +g27 +sg25275 +S'published 1769' +p57622 +sg25268 +S'Head-Piece (second set)' +p57623 +sg25270 +S'Pierre-Philippe Choffard' +p57624 +sa(dp57625 +g25267 +g27 +sg25268 +S'Ship Lantern' +p57626 +sg25270 +S'Florence Huston' +p57627 +sa(dp57628 +g25267 +g27 +sg25268 +S'Fire Truck Headlight' +p57629 +sg25270 +S'Florence Huston' +p57630 +sa(dp57631 +g25267 +g27 +sg25268 +S'Masthead Light' +p57632 +sg25270 +S'Florence Huston' +p57633 +sa(dp57634 +g25267 +g27 +sg25268 +S'Concord Stage Lamp' +p57635 +sg25270 +S'Florence Huston' +p57636 +sa(dp57637 +g25267 +g27 +sg25268 +S'Street Hanging Lamp' +p57638 +sg25270 +S'Manuel G. Runyan' +p57639 +sa(dp57640 +g25267 +g27 +sg25268 +S'Lantern' +p57641 +sg25270 +S'E.J. Gilsleider' +p57642 +sa(dp57643 +g25267 +g27 +sg25268 +S'Lamp' +p57644 +sg25270 +S'Matthew Mangiacotti' +p57645 +sa(dp57646 +g25267 +g27 +sg25268 +S'Camphene Lamp' +p57647 +sg25270 +S'Arsen Maralian' +p57648 +sa(dp57649 +g25267 +g27 +sg25268 +S'Camphene Lamp' +p57650 +sg25270 +S'Amelia Tuccio' +p57651 +sa(dp57652 +g25267 +g27 +sg25268 +S'Lamp' +p57653 +sg25270 +S'Amelia Tuccio' +p57654 +sa(dp57655 +g25273 +S'etching' +p57656 +sg25267 +g27 +sg25275 +S'published 1769' +p57657 +sg25268 +S'Head-Piece (second set)' +p57658 +sg25270 +S'Pierre-Philippe Choffard' +p57659 +sa(dp57660 +g25267 +g27 +sg25268 +S'Camphene Lamp' +p57661 +sg25270 +S'Miss E. Dorsey Bruen' +p57662 +sa(dp57663 +g25267 +g27 +sg25268 +S'Lamp' +p57664 +sg25270 +S'Burton Ewing' +p57665 +sa(dp57666 +g25267 +g27 +sg25268 +S'Lamp' +p57667 +sg25270 +S'Mario De Ferrante' +p57668 +sa(dp57669 +g25267 +g27 +sg25268 +S'Camphene Lamp' +p57670 +sg25270 +S'Herman Bader' +p57671 +sa(dp57672 +g25267 +g27 +sg25268 +S'Lamp' +p57673 +sg25270 +S'A. Zaidenberg' +p57674 +sa(dp57675 +g25267 +g27 +sg25268 +S'Lamp' +p57676 +sg25270 +S'Joseph Wolins' +p57677 +sa(dp57678 +g25267 +g27 +sg25268 +S'Camphene Lamp' +p57679 +sg25270 +S'Eugene Barrell' +p57680 +sa(dp57681 +g25267 +g27 +sg25268 +S'Camp Lamp' +p57682 +sg25270 +S'Albert Rudin' +p57683 +sa(dp57684 +g25267 +g27 +sg25268 +S'Whale Oil Ship Lamp' +p57685 +sg25270 +S'Howard Lumbard' +p57686 +sa(dp57687 +g25267 +g27 +sg25268 +S'Pewter Lamp' +p57688 +sg25270 +S'Sydney Roberts' +p57689 +sa(dp57690 +g25273 +S'etching' +p57691 +sg25267 +g27 +sg25275 +S'published 1775' +p57692 +sg25268 +S'Head-Piece' +p57693 +sg25270 +S'Pierre-Philippe Choffard' +p57694 +sa(dp57695 +g25267 +g27 +sg25268 +S'Betty Lamp and Stand' +p57696 +sg25270 +S'Amelia Tuccio' +p57697 +sa(dp57698 +g25267 +g27 +sg25268 +S'Betty Lamp' +p57699 +sg25270 +S'Jack Staloff' +p57700 +sa(dp57701 +g25267 +g27 +sg25268 +S'Betty Lamp' +p57702 +sg25270 +S'Philip Johnson' +p57703 +sa(dp57704 +g25267 +g27 +sg25268 +S'Betty Lamp and Stamp' +p57705 +sg25270 +S'Mildred Ford' +p57706 +sa(dp57707 +g25267 +g27 +sg25268 +S'Betty Lamp' +p57708 +sg25270 +S'Amelia Tuccio' +p57709 +sa(dp57710 +g25267 +g27 +sg25268 +S'Wrought Iron Betty Lamp' +p57711 +sg25270 +S'H. Langden Brown' +p57712 +sa(dp57713 +g25267 +g27 +sg25268 +S'Betty Lamp' +p57714 +sg25270 +S'David S. De Vault' +p57715 +sa(dp57716 +g25267 +g27 +sg25268 +S'Betty Lamp' +p57717 +sg25270 +S'Mildred Ford' +p57718 +sa(dp57719 +g25267 +g27 +sg25268 +S'Betty Lamp' +p57720 +sg25270 +S'James M. Lawson' +p57721 +sa(dp57722 +g25267 +g27 +sg25268 +S'Betty Lamp' +p57723 +sg25270 +S'Gilbert Boese' +p57724 +sa(dp57725 +g25273 +S'etching' +p57726 +sg25267 +g27 +sg25275 +S'published 1775' +p57727 +sg25268 +S'Head-Piece' +p57728 +sg25270 +S'Pierre-Philippe Choffard' +p57729 +sa(dp57730 +g25267 +g27 +sg25268 +S'Betty Lamp' +p57731 +sg25270 +S'Cornelius Frazier' +p57732 +sa(dp57733 +g25267 +g27 +sg25268 +S'Lamp' +p57734 +sg25270 +S'Charles Caseau' +p57735 +sa(dp57736 +g25267 +g27 +sg25268 +S'Betty Lamp' +p57737 +sg25270 +S'Hans Korsch' +p57738 +sa(dp57739 +g25267 +g27 +sg25268 +S'Lamp' +p57740 +sg25270 +S'Charlotte Winter' +p57741 +sa(dp57742 +g25267 +g27 +sg25268 +S'Betty Lamp' +p57743 +sg25270 +S'Julius Bellamy' +p57744 +sa(dp57745 +g25267 +g27 +sg25268 +S'Betty Lamp' +p57746 +sg25270 +S'Philip Johnson' +p57747 +sa(dp57748 +g25267 +g27 +sg25268 +S'Betty Lamp' +p57749 +sg25270 +S'Stella Mosher' +p57750 +sa(dp57751 +g25267 +g27 +sg25268 +S'Lamp' +p57752 +sg25270 +S'Charlotte Winter' +p57753 +sa(dp57754 +g25267 +g27 +sg25268 +S'Betty Lamp' +p57755 +sg25270 +S'Frank McEntee' +p57756 +sa(dp57757 +g25267 +g27 +sg25268 +S'Oil Lamp' +p57758 +sg25270 +S'Alvin J. Doria' +p57759 +sa(dp57760 +g25273 +S'etching' +p57761 +sg25267 +g27 +sg25275 +S'published 1775' +p57762 +sg25268 +S'Head-Piece' +p57763 +sg25270 +S'Pierre-Philippe Choffard' +p57764 +sa(dp57765 +g25267 +g27 +sg25268 +S'Lamp' +p57766 +sg25270 +S'Mario De Ferrante' +p57767 +sa(dp57768 +g25267 +g27 +sg25268 +S'Camphene Lamp' +p57769 +sg25270 +S'Jacob Gielens' +p57770 +sa(dp57771 +g25267 +g27 +sg25268 +S'Camphene Lamp' +p57772 +sg25270 +S'John Tarantino' +p57773 +sa(dp57774 +g25267 +g27 +sg25268 +S'Lamp' +p57775 +sg25270 +S'A. Zaidenberg' +p57776 +sa(dp57777 +g25267 +g27 +sg25268 +S'Camphor Lamp' +p57778 +sg25270 +S'LeRoy Griffith' +p57779 +sa(dp57780 +g25267 +g27 +sg25268 +S'Lamp' +p57781 +sg25270 +S'Hester Duany' +p57782 +sa(dp57783 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p57784 +sg25270 +S'Richard Donovan' +p57785 +sa(dp57786 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p57787 +sg25270 +S'Charles Garjian' +p57788 +sa(dp57789 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p57790 +sg25270 +S'James M. Lawson' +p57791 +sa(dp57792 +g25267 +g27 +sg25268 +S'Whaler Lamp' +p57793 +sg25270 +S'William Frank' +p57794 +sa(dp57795 +g25273 +S'etching' +p57796 +sg25267 +g27 +sg25275 +S'published 1775' +p57797 +sg25268 +S'Head-Piece' +p57798 +sg25270 +S'Pierre-Philippe Choffard' +p57799 +sa(dp57800 +g25267 +g27 +sg25268 +S'Lamp' +p57801 +sg25270 +S'Hester Duany' +p57802 +sa(dp57803 +g25267 +g27 +sg25268 +S'Lamp' +p57804 +sg25270 +S'A. Zaidenberg' +p57805 +sa(dp57806 +g25267 +g27 +sg25268 +S'Lamp' +p57807 +sg25270 +S'Ruth Bialostosky' +p57808 +sa(dp57809 +g25267 +g27 +sg25268 +S'Lamp' +p57810 +sg25270 +S'Arsen Maralian' +p57811 +sa(dp57812 +g25267 +g27 +sg25268 +S'Lamp' +p57813 +sg25270 +S'Burton Ewing' +p57814 +sa(dp57815 +g25267 +g27 +sg25268 +S'Pewter Lamp' +p57816 +sg25270 +S'Joseph Stonefield' +p57817 +sa(dp57818 +g25267 +g27 +sg25268 +S'Lamp' +p57819 +sg25270 +S'Richard Schoene' +p57820 +sa(dp57821 +g25267 +g27 +sg25268 +S'Lamp' +p57822 +sg25270 +S'Louis Annino' +p57823 +sa(dp57824 +g25267 +g27 +sg25268 +S'Lamp' +p57825 +sg25270 +S'A. Zaidenberg' +p57826 +sa(dp57827 +g25267 +g27 +sg25268 +S'Lamp' +p57828 +sg25270 +S'Eugene Barrell' +p57829 +sa(dp57830 +g25273 +S'(artist after)' +p57831 +sg25267 +g27 +sg25275 +S'\n' +p57832 +sg25268 +S'Liber Veritatis (volume I)' +p57833 +sg25270 +S'Artist Information (' +p57834 +sa(dp57835 +g25267 +g27 +sg25268 +S'Chamber Lamp' +p57836 +sg25270 +S'A. Zaidenberg' +p57837 +sa(dp57838 +g25267 +g27 +sg25268 +S'Spark Lamp' +p57839 +sg25270 +S'A. Zaidenberg' +p57840 +sa(dp57841 +g25267 +g27 +sg25268 +S'Lamp' +p57842 +sg25270 +S'H. Langden Brown' +p57843 +sa(dp57844 +g25267 +g27 +sg25268 +S'Two Oil Lamps' +p57845 +sg25270 +S'Walter Hochstrasser' +p57846 +sa(dp57847 +g25267 +g27 +sg25268 +S'Lamp' +p57848 +sg25270 +S'Matthew Mangiacotti' +p57849 +sa(dp57850 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p57851 +sg25270 +S'William O. Fletcher' +p57852 +sa(dp57853 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p57854 +sg25270 +S'Matthew Mangiacotti' +p57855 +sa(dp57856 +g25267 +g27 +sg25268 +S'Lamp' +p57857 +sg25270 +S'Burton Ewing' +p57858 +sa(dp57859 +g25267 +g27 +sg25268 +S'Lamp' +p57860 +sg25270 +S'Burton Ewing' +p57861 +sa(dp57862 +g25267 +g27 +sg25268 +S'Lamp' +p57863 +sg25270 +S'Charles Charm' +p57864 +sa(dp57865 +g25273 +S'(artist after)' +p57866 +sg25267 +g27 +sg25275 +S'\n' +p57867 +sg25268 +S'Liber Veritatis (volume II)' +p57868 +sg25270 +S'Artist Information (' +p57869 +sa(dp57870 +g25267 +g27 +sg25268 +S'Lamp' +p57871 +sg25270 +S'Eugene Barrell' +p57872 +sa(dp57873 +g25267 +g27 +sg25268 +S'Lamp' +p57874 +sg25270 +S'Herman Bader' +p57875 +sa(dp57876 +g25267 +g27 +sg25268 +S'Lamp' +p57877 +sg25270 +S'George Nelson' +p57878 +sa(dp57879 +g25267 +g27 +sg25268 +S'Pewter Lard Oil Lamp' +p57880 +sg25270 +S'Theodore Pfitzer' +p57881 +sa(dp57882 +g25267 +g27 +sg25268 +S'Bunker Lamp' +p57883 +sg25270 +S'Helen Hobart' +p57884 +sa(dp57885 +g25267 +g27 +sg25268 +S'Pewter Oil Lamp' +p57886 +sg25270 +S'Walter Hochstrasser' +p57887 +sa(dp57888 +g25267 +g27 +sg25268 +S'Lamp' +p57889 +sg25270 +S'Charles Caseau' +p57890 +sa(dp57891 +g25267 +g27 +sg25268 +S'Lamp' +p57892 +sg25270 +S'Charlotte Winter' +p57893 +sa(dp57894 +g25267 +g27 +sg25268 +S'Spout Lamp' +p57895 +sg25270 +S'Helen Hobart' +p57896 +sa(dp57897 +g25267 +g27 +sg25268 +S'Petticoat Lamp' +p57898 +sg25270 +S'Jacob Gielens' +p57899 +sa(dp57900 +g25273 +S'(artist after)' +p57901 +sg25267 +g27 +sg25275 +S'\n' +p57902 +sg25268 +S'Liber Veritatis (volume III)' +p57903 +sg25270 +S'Artist Information (' +p57904 +sa(dp57905 +g25267 +g27 +sg25268 +S"Miner's Lamp" +p57906 +sg25270 +S'Oscar Bluhme' +p57907 +sa(dp57908 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p57909 +sg25270 +S'William H. Edwards' +p57910 +sa(dp57911 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p57912 +sg25270 +S'Jack Williamson' +p57913 +sa(dp57914 +g25267 +g27 +sg25268 +S'Two Spouted Torch' +p57915 +sg25270 +S'William Frank' +p57916 +sa(dp57917 +g25267 +g27 +sg25268 +S'Lamp' +p57918 +sg25270 +S'Eugene Barrell' +p57919 +sa(dp57920 +g25267 +g27 +sg25268 +S'Pewter Lamp' +p57921 +sg25270 +S'Henry Meyers' +p57922 +sa(dp57923 +g25267 +g27 +sg25268 +S'Lamp' +p57924 +sg25270 +S'Gordon Sanborn' +p57925 +sa(dp57926 +g25267 +g27 +sg25268 +S'Pewter Fluid Lamp' +p57927 +sg25270 +S'Francis Law Durand' +p57928 +sa(dp57929 +g25267 +g27 +sg25268 +S'Spark Lamp' +p57930 +sg25270 +S'A. Zaidenberg' +p57931 +sa(dp57932 +g25267 +g27 +sg25268 +S'Lamp' +p57933 +sg25270 +S'Herman Bader' +p57934 +sa(dp57935 +g25273 +S'French, 1732 - 1776' +p57936 +sg25267 +g27 +sg25275 +S'(author)' +p57937 +sg25268 +S'Oeuvres de Colardeau (volume I)' +p57938 +sg25270 +S'Artist Information (' +p57939 +sa(dp57940 +g25267 +g27 +sg25268 +S'Lamp' +p57941 +sg25270 +S'Joseph Wolins' +p57942 +sa(dp57943 +g25267 +g27 +sg25268 +S'Lamp' +p57944 +sg25270 +S'Hester Duany' +p57945 +sa(dp57946 +g25267 +g27 +sg25268 +S'Petticoat Lamp' +p57947 +sg25270 +S'A. Zaidenberg' +p57948 +sa(dp57949 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p57950 +sg25270 +S'Irene Malawicz' +p57951 +sa(dp57952 +g25267 +g27 +sg25268 +S'Camphene Lamp' +p57953 +sg25270 +S'Herman Bader' +p57954 +sa(dp57955 +g25267 +g27 +sg25268 +S'Lamp' +p57956 +sg25270 +S'Eugene Barrell' +p57957 +sa(dp57958 +g25267 +g27 +sg25268 +S'Lamp' +p57959 +sg25270 +S'Eugene Barrell' +p57960 +sa(dp57961 +g25267 +g27 +sg25268 +S'Lamp' +p57962 +sg25270 +S'Matthew Mangiacotti' +p57963 +sa(dp57964 +g25267 +g27 +sg25268 +S'Pewter Lamp' +p57965 +sg25270 +S'Bessie Forman' +p57966 +sa(dp57967 +g25267 +g27 +sg25268 +S'Lamp' +p57968 +sg25270 +S'Sidney Liswood' +p57969 +sa(dp57970 +g25273 +S'French, 1732 - 1776' +p57971 +sg25267 +g27 +sg25275 +S'(author)' +p57972 +sg25268 +S'Oeuvres de Colardeau (volume II)' +p57973 +sg25270 +S'Artist Information (' +p57974 +sa(dp57975 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p57976 +sg25270 +S'Joseph Stonefield' +p57977 +sa(dp57978 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p57979 +sg25270 +S'Arsen Maralian' +p57980 +sa(dp57981 +g25267 +g27 +sg25268 +S'Lamp' +p57982 +sg25270 +S'Matthew Mangiacotti' +p57983 +sa(dp57984 +g25267 +g27 +sg25268 +S'Petticoat Lamp' +p57985 +sg25270 +S'Harry Grossen' +p57986 +sa(dp57987 +g25267 +g27 +sg25268 +S'Sick Lamp' +p57988 +sg25270 +S'Edward White' +p57989 +sa(dp57990 +g25267 +g27 +sg25268 +S'Petticoat Peg Lamp' +p57991 +sg25270 +S'G.A. Spangenberg' +p57992 +sa(dp57993 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p57994 +sg25270 +S'Henry Meyers' +p57995 +sa(dp57996 +g25267 +g27 +sg25268 +S'Swinging Lamp' +p57997 +sg25270 +S'Matthew Mangiacotti' +p57998 +sa(dp57999 +g25267 +g27 +sg25268 +S'Oil Lamp' +p58000 +sg25270 +S'Herman Bader' +p58001 +sa(dp58002 +g25267 +g27 +sg25268 +S'Lamp' +p58003 +sg25270 +S'A. Zaidenberg' +p58004 +sa(dp58005 +g25273 +S', published 1789' +p58006 +sg25267 +g27 +sg25275 +S'\n' +p58007 +sg25268 +S'Prints from "Collection des drapeaux ... " (volume I)' +p58008 +sg25270 +S'Jean-Michel Moreau the Younger' +p58009 +sa(dp58010 +g25267 +g27 +sg25268 +S'Betty Lamp' +p58011 +sg25270 +S'Milton Bevier' +p58012 +sa(dp58013 +g25267 +g27 +sg25268 +S'Betty Lamp' +p58014 +sg25270 +S'Oscar Bluhme' +p58015 +sa(dp58016 +g25267 +g27 +sg25268 +S"Ship's Lantern" +p58017 +sg25270 +S'Arthur Ringold' +p58018 +sa(dp58019 +g25267 +g27 +sg25268 +S'Sperm Oil Street Lamp' +p58020 +sg25270 +S'Kurt Melzer' +p58021 +sa(dp58022 +g25267 +g27 +sg25268 +S'Candle Lantern' +p58023 +sg25270 +S'Jack Williamson' +p58024 +sa(dp58025 +g25267 +g27 +sg25268 +S'Horn Lantern' +p58026 +sg25270 +S'Dolores Haupt' +p58027 +sa(dp58028 +g25267 +g27 +sg25268 +S'Cape Cod Lighter' +p58029 +sg25270 +S'William Ludwig' +p58030 +sa(dp58031 +g25267 +g27 +sg25268 +S'Double Rig Saddle' +p58032 +sg25270 +S'Cecil Smith' +p58033 +sa(dp58034 +g25267 +g27 +sg25268 +S"Currier's Shaving Knife" +p58035 +sg25270 +S'Oscar Bluhme' +p58036 +sa(dp58037 +g25267 +g27 +sg25268 +S'Trench Knife and Sheath' +p58038 +sg25270 +S'William Ludwig' +p58039 +sa(dp58040 +g25273 +S', published 1789' +p58041 +sg25267 +g27 +sg25275 +S'\n' +p58042 +sg25268 +S'Prints from "Collection des drapeaux ... " (volume II)' +p58043 +sg25270 +S'Jean-Michel Moreau the Younger' +p58044 +sa(dp58045 +g25267 +g27 +sg25268 +S'Knife and Sheath' +p58046 +sg25270 +S'Albert Rudin' +p58047 +sa(dp58048 +g25267 +g27 +sg25268 +S'Collapsible Folding Knife' +p58049 +sg25270 +S'Joseph Cannella' +p58050 +sa(dp58051 +g25267 +g27 +sg25268 +S'Grease Lamp' +p58052 +sg25270 +S'Nicholas Amantea' +p58053 +sa(dp58054 +g25267 +g27 +sg25268 +S'Lamp' +p58055 +sg25270 +S'Fritz Boehmer' +p58056 +sa(dp58057 +g25267 +g27 +sg25268 +S'Lamp' +p58058 +sg25270 +S'Fritz Boehmer' +p58059 +sa(dp58060 +g25267 +g27 +sg25268 +S'Pottery Lamp' +p58061 +sg25270 +S'Fritz Boehmer' +p58062 +sa(dp58063 +g25267 +g27 +sg25268 +S'Grease Lamp' +p58064 +sg25270 +S'Janet Riza' +p58065 +sa(dp58066 +g25267 +g27 +sg25268 +S'Grease Lamp' +p58067 +sg25270 +S'Henry Moran' +p58068 +sa(dp58069 +g25267 +g27 +sg25268 +S'Iron Grease Lamp' +p58070 +sg25270 +S'James Drake' +p58071 +sa(dp58072 +g25267 +g27 +sg25268 +S'Grease Lamp' +p58073 +sg25270 +S'Margaret Golden' +p58074 +sa(dp58075 +g25273 +S'(artist after)' +p58076 +sg25267 +g27 +sg25275 +S'\n' +p58077 +sg25268 +S'La mariee de vilage' +p58078 +sg25270 +S'Artist Information (' +p58079 +sa(dp58080 +g25267 +g27 +sg25268 +S'Grease Lamp' +p58081 +sg25270 +S'Yolande Delasser' +p58082 +sa(dp58083 +g25267 +g27 +sg25268 +S'Two Wick Lamp' +p58084 +sg25270 +S'Henry Moran' +p58085 +sa(dp58086 +g25267 +g27 +sg25268 +S'Grease Lamp' +p58087 +sg25270 +S'Sarkis Erganian' +p58088 +sa(dp58089 +g25267 +g27 +sg25268 +S'Lard Lamp' +p58090 +sg25270 +S'Max Soltmann' +p58091 +sa(dp58092 +g25267 +g27 +sg25268 +S'Whale Oil Peg Lamp and Stand' +p58093 +sg25270 +S'Neva Coffey' +p58094 +sa(dp58095 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p58096 +sg25270 +S'Herman O. Stroh' +p58097 +sa(dp58098 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p58099 +sg25270 +S'Cora Parker' +p58100 +sa(dp58101 +g25267 +g27 +sg25268 +S'Pewter Grease Lamp' +p58102 +sg25270 +S'Violet Hartenstein' +p58103 +sa(dp58104 +g25267 +g27 +sg25268 +S'Lamp' +p58105 +sg25270 +S'Hester Duany' +p58106 +sa(dp58107 +g25267 +g27 +sg25268 +S'Petticoat Lamp' +p58108 +sg25270 +S'William Kerby' +p58109 +sa(dp58110 +g25273 +S'Widener Collection' +p58111 +sg25267 +g27 +sg25275 +S'\n1 vol: original contents: 11 etchings; some prints removed from the volume and matted; see individual entries for locations' +p58112 +sg25268 +S'Eaux-fortes' +p58113 +sg25270 +S'Various Artists' +p58114 +sa(dp58115 +g25267 +g27 +sg25268 +S'Colonial Lamp' +p58116 +sg25270 +S'William Frank' +p58117 +sa(dp58118 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p58119 +sg25270 +S'Alfred Goldstein' +p58120 +sa(dp58121 +g25267 +g27 +sg25268 +S'Lamp' +p58122 +sg25270 +S'Charlotte Winter' +p58123 +sa(dp58124 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p58125 +sg25270 +S'James M. Lawson' +p58126 +sa(dp58127 +g25267 +g27 +sg25268 +S'Sperm Oil Lamp' +p58128 +sg25270 +S'Palmyra Pimentel' +p58129 +sa(dp58130 +g25267 +g27 +sg25268 +S'Candlestick/Whale Oil Lamp' +p58131 +sg25270 +S'Amelia Tuccio' +p58132 +sa(dp58133 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p58134 +sg25270 +S'Amelia Tuccio' +p58135 +sa(dp58136 +g25267 +g27 +sg25268 +S"Miner's Oil Lamp" +p58137 +sg25270 +S'Rose Campbell-Gerke' +p58138 +sa(dp58139 +g25267 +g27 +sg25268 +S'"Jacking" Torch' +p58140 +sg25270 +S'Amelia Tuccio' +p58141 +sa(dp58142 +g25267 +g27 +sg25268 +S'Torch' +p58143 +sg25270 +S'Thomas Dooley' +p58144 +sa(dp58145 +g25268 +S'Fetes venitiennes' +p58146 +sg25270 +S'Artist Information (' +p58147 +sg25273 +S'(artist after)' +p58148 +sg25275 +S'\n' +p58149 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096af.jpg' +p58150 +sg25267 +g27 +sa(dp58151 +g25267 +g27 +sg25268 +S'Wick Lamp' +p58152 +sg25270 +S'Frank Maurer' +p58153 +sa(dp58154 +g25267 +g27 +sg25268 +S'Tin Lamp' +p58155 +sg25270 +S'Eldon Allen' +p58156 +sa(dp58157 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p58158 +sg25270 +S'Isidore Steinberg' +p58159 +sa(dp58160 +g25267 +g27 +sg25268 +S'Lamp' +p58161 +sg25270 +S'Paul Ward' +p58162 +sa(dp58163 +g25267 +g27 +sg25268 +S'Glass Camphene Lamp' +p58164 +sg25270 +S'Harry Grossen' +p58165 +sa(dp58166 +g25267 +g27 +sg25268 +S'Camphene Lamp' +p58167 +sg25270 +S'Don Pingatore' +p58168 +sa(dp58169 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p58170 +sg25270 +S'Margaret Stottlemeyer' +p58171 +sa(dp58172 +g25267 +g27 +sg25268 +S'Peg Lamp' +p58173 +sg25270 +S'John Dana' +p58174 +sa(dp58175 +g25267 +g27 +sg25268 +S'Lamp Base' +p58176 +sg25270 +S'Samuel O. Klein' +p58177 +sa(dp58178 +g25267 +g27 +sg25268 +S'Lamp' +p58179 +sg25270 +S'Grace Halpin' +p58180 +sa(dp58181 +g25268 +S'La colation' +p58182 +sg25270 +S'Artist Information (' +p58183 +sg25273 +S'(artist after)' +p58184 +sg25275 +S'\n' +p58185 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000973c.jpg' +p58186 +sg25267 +g27 +sa(dp58187 +g25267 +g27 +sg25268 +S'Lamp' +p58188 +sg25270 +S'Paul Poffinbarger' +p58189 +sa(dp58190 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p58191 +sg25270 +S'Richard Taylor' +p58192 +sa(dp58193 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p58194 +sg25270 +S'George Yanosko' +p58195 +sa(dp58196 +g25267 +g27 +sg25268 +S'Brass Oil Lamp' +p58197 +sg25270 +S'Andrew Topolosky' +p58198 +sa(dp58199 +g25267 +g27 +sg25268 +S'Camphene Lamp' +p58200 +sg25270 +S'Christabel Scrymser' +p58201 +sa(dp58202 +g25267 +g27 +sg25268 +S'Lamp' +p58203 +sg25270 +S'Charles Caseau' +p58204 +sa(dp58205 +g25267 +g27 +sg25268 +S'Sperm Oil Lamp' +p58206 +sg25270 +S'Charles Caseau' +p58207 +sa(dp58208 +g25267 +g27 +sg25268 +S'Lamp' +p58209 +sg25270 +S'Hans Mangelsdorf' +p58210 +sa(dp58211 +g25267 +g27 +sg25268 +S'Sperm Oil Lamp' +p58212 +sg25270 +S'David S. De Vault' +p58213 +sa(dp58214 +g25267 +g27 +sg25268 +S'Sperm Oil Lamp' +p58215 +sg25270 +S'Janet Riza' +p58216 +sa(dp58217 +g25273 +S'(artist after)' +p58218 +sg25267 +g27 +sg25275 +S'\n' +p58219 +sg25268 +S'Les champs elisees' +p58220 +sg25270 +S'Artist Information (' +p58221 +sa(dp58222 +g25267 +g27 +sg25268 +S'Brass Lamp' +p58223 +sg25270 +S'William O. Fletcher' +p58224 +sa(dp58225 +g25267 +g27 +sg25268 +S'Brass Oil Lamp' +p58226 +sg25270 +S'Russell Madole' +p58227 +sa(dp58228 +g25267 +g27 +sg25268 +S'Peg Lamp' +p58229 +sg25270 +S'Samuel O. Klein' +p58230 +sa(dp58231 +g25267 +g27 +sg25268 +S'Oil Lamp' +p58232 +sg25270 +S'Walter Hochstrasser' +p58233 +sa(dp58234 +g25267 +g27 +sg25268 +S'Pennsylvania Fat Lamp' +p58235 +sg25270 +S'Helen Hobart' +p58236 +sa(dp58237 +g25267 +g27 +sg25268 +S'Pennsylvania Fat Lamp' +p58238 +sg25270 +S'Milton Grubstein' +p58239 +sa(dp58240 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p58241 +sg25270 +S'Edward L. Loper' +p58242 +sa(dp58243 +g25267 +g27 +sg25268 +S'Lard Oil Lamp' +p58244 +sg25270 +S'Milton Grubstein' +p58245 +sa(dp58246 +g25267 +g27 +sg25268 +S'Lard Oil Lamp' +p58247 +sg25270 +S'Milton Grubstein' +p58248 +sa(dp58249 +g25267 +g27 +sg25268 +S'Lamp and Tallow Strainer' +p58250 +sg25270 +S'Marie Famularo' +p58251 +sa(dp58252 +g25273 +S'(artist after)' +p58253 +sg25267 +g27 +sg25275 +S'\n' +p58254 +sg25268 +S'La contredanse' +p58255 +sg25270 +S'Artist Information (' +p58256 +sa(dp58257 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p58258 +sg25270 +S'Francis Law Durand' +p58259 +sa(dp58260 +g25267 +g27 +sg25268 +S'Lamp' +p58261 +sg25270 +S'Paul Ward' +p58262 +sa(dp58263 +g25267 +g27 +sg25268 +S'Lamp' +p58264 +sg25270 +S'Rex F. Bush' +p58265 +sa(dp58266 +g25267 +g27 +sg25268 +S'Ornamental Oil Lamp' +p58267 +sg25270 +S'Joseph L. Boyd' +p58268 +sa(dp58269 +g25267 +g27 +sg25268 +S'Combination Lamp/Candle Holder' +p58270 +sg25270 +S'Sydney Roberts' +p58271 +sa(dp58272 +g25267 +g27 +sg25268 +S'Table Lamp' +p58273 +sg25270 +S'Lloyd Charles Lemcke' +p58274 +sa(dp58275 +g25267 +g27 +sg25268 +S'Dolphin Base Lamp' +p58276 +sg25270 +S'Ray Price' +p58277 +sa(dp58278 +g25267 +g27 +sg25268 +S'Amethyst Glass Oil Lamp' +p58279 +sg25270 +S'Marcus Moran' +p58280 +sa(dp58281 +g25267 +g27 +sg25268 +S'Lamp' +p58282 +sg25270 +S'Robert Stewart' +p58283 +sa(dp58284 +g25267 +g27 +sg25268 +S'Lamp' +p58285 +sg25270 +S'Charles Caseau' +p58286 +sa(dp58287 +g25268 +S"Lecon d'amour" +p58288 +sg25270 +S'Artist Information (' +p58289 +sg25273 +S'(artist after)' +p58290 +sg25275 +S'\n' +p58291 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009701.jpg' +p58292 +sg25267 +g27 +sa(dp58293 +g25267 +g27 +sg25268 +S'Lamp' +p58294 +sg25270 +S'John Dana' +p58295 +sa(dp58296 +g25267 +g27 +sg25268 +S'Lamp' +p58297 +sg25270 +S'Gertrude Lemberg' +p58298 +sa(dp58299 +g25267 +g27 +sg25268 +S'Lamp' +p58300 +sg25270 +S'John Dana' +p58301 +sa(dp58302 +g25267 +g27 +sg25268 +S'Glass Lamp' +p58303 +sg25270 +S'Frank M. Keane' +p58304 +sa(dp58305 +g25267 +g27 +sg25268 +S'Lamp' +p58306 +sg25270 +S'Charles Caseau' +p58307 +sa(dp58308 +g25267 +g27 +sg25268 +S'Lamp' +p58309 +sg25270 +S'Charles Caseau' +p58310 +sa(dp58311 +g25267 +g27 +sg25268 +S'Lamp' +p58312 +sg25270 +S'John Tarantino' +p58313 +sa(dp58314 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p58315 +sg25270 +S'Van Silvay' +p58316 +sa(dp58317 +g25267 +g27 +sg25268 +S'Lamp' +p58318 +sg25270 +S'John Tarantino' +p58319 +sa(dp58320 +g25267 +g27 +sg25268 +S'Lamp' +p58321 +sg25270 +S'Richard Taylor' +p58322 +sa(dp58323 +g25268 +S'La famille du fermier' +p58324 +sg25270 +S'Artist Information (' +p58325 +sg25273 +S'(artist after)' +p58326 +sg25275 +S'\n' +p58327 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000972e.jpg' +p58328 +sg25267 +g27 +sa(dp58329 +g25267 +g27 +sg25268 +S'Lamp' +p58330 +sg25270 +S'John Dana' +p58331 +sa(dp58332 +g25267 +g27 +sg25268 +S'Lamp' +p58333 +sg25270 +S'Charles Caseau' +p58334 +sa(dp58335 +g25267 +g27 +sg25268 +S'Sperm Oil Lamp' +p58336 +sg25270 +S'John Dana' +p58337 +sa(dp58338 +g25267 +g27 +sg25268 +S'Lamp' +p58339 +sg25270 +S'Charles Caseau' +p58340 +sa(dp58341 +g25267 +g27 +sg25268 +S'Lamp' +p58342 +sg25270 +S'Isidore Steinberg' +p58343 +sa(dp58344 +g25267 +g27 +sg25268 +S'Spark Lamp' +p58345 +sg25270 +S'John Dana' +p58346 +sa(dp58347 +g25267 +g27 +sg25268 +S'Sperm Oil Lamp' +p58348 +sg25270 +S'John Dana' +p58349 +sa(dp58350 +g25267 +g27 +sg25268 +S'"Sparking" Lamp' +p58351 +sg25270 +S'John Dana' +p58352 +sa(dp58353 +g25267 +g27 +sg25268 +S'Spark Lamp' +p58354 +sg25270 +S'John Tarantino' +p58355 +sa(dp58356 +g25267 +g27 +sg25268 +S'Lamp' +p58357 +sg25270 +S'John Dana' +p58358 +sa(dp58359 +g25268 +S'Les presents du berger' +p58360 +sg25270 +S'Artist Information (' +p58361 +sg25273 +S'(artist after)' +p58362 +sg25275 +S'\n' +p58363 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009726.jpg' +p58364 +sg25267 +g27 +sa(dp58365 +g25267 +g27 +sg25268 +S'Lamp' +p58366 +sg25270 +S'John Dana' +p58367 +sa(dp58368 +g25267 +g27 +sg25268 +S'Spark Lamp' +p58369 +sg25270 +S'John Dana' +p58370 +sa(dp58371 +g25267 +g27 +sg25268 +S'Spark Lamp' +p58372 +sg25270 +S'John Tarantino' +p58373 +sa(dp58374 +g25267 +g27 +sg25268 +S'Lamp' +p58375 +sg25270 +S'Giacinto Capelli' +p58376 +sa(dp58377 +g25267 +g27 +sg25268 +S'Lamp' +p58378 +sg25270 +S'John Tarantino' +p58379 +sa(dp58380 +g25267 +g27 +sg25268 +S'Doorway and Doors' +p58381 +sg25270 +S'Paul Park' +p58382 +sa(dp58383 +g25267 +g27 +sg25268 +S'Lock Plate' +p58384 +sg25270 +S'Edward Jewett' +p58385 +sa(dp58386 +g25267 +g27 +sg25268 +S'Match Container' +p58387 +sg25270 +S'Evelyn Bailey' +p58388 +sa(dp58389 +g25267 +g27 +sg25268 +S'Iron Lock' +p58390 +sg25270 +S'Majel G. Claflin' +p58391 +sa(dp58392 +g25267 +g27 +sg25268 +S'Lock and Key' +p58393 +sg25270 +S'Maurice Van Felix' +p58394 +sa(dp58395 +g25273 +S'(artist after)' +p58396 +sg25267 +g27 +sg25275 +S'\n' +p58397 +sg25268 +S'Assemblee galante dans un parc' +p58398 +sg25270 +S'Artist Information (' +p58399 +sa(dp58400 +g25267 +g27 +sg25268 +S'Door Handle and Thumb' +p58401 +sg25270 +S'Jack Staloff' +p58402 +sa(dp58403 +g25267 +g27 +sg25268 +S'Padlock' +p58404 +sg25270 +S'LeRoy Griffith' +p58405 +sa(dp58406 +g25267 +g27 +sg25268 +S'Lock Handle and Key Plate' +p58407 +sg25270 +S'Jack Staloff' +p58408 +sa(dp58409 +g25267 +g27 +sg25268 +S'Barrel Lock' +p58410 +sg25270 +S'C. Milford Lee' +p58411 +sa(dp58412 +g25267 +g27 +sg25268 +S'Rim Lock for Door' +p58413 +sg25270 +S'Donald Streeter' +p58414 +sa(dp58415 +g25267 +g27 +sg25268 +S'Brass Box Lock' +p58416 +sg25270 +S'Edward L. Loper' +p58417 +sa(dp58418 +g25267 +g27 +sg25268 +S'Chest Lock with Hasp' +p58419 +sg25270 +S'Al Curry' +p58420 +sa(dp58421 +g25267 +g27 +sg25268 +S'Chest Lock and Hasp' +p58422 +sg25270 +S'Al Curry' +p58423 +sa(dp58424 +g25267 +g27 +sg25268 +S'Bar Lock and Keys' +p58425 +sg25270 +S'Alexander Anderson' +p58426 +sa(dp58427 +g25267 +g27 +sg25268 +S'Wrought Iron Lock' +p58428 +sg25270 +S'J. Howard Iams' +p58429 +sa(dp58430 +g25273 +S'(artist after)' +p58431 +sg25267 +g27 +sg25275 +S'\n' +p58432 +sg25268 +S'Les adieux \xc3\xa0 la nourrice' +p58433 +sg25270 +S'Artist Information (' +p58434 +sa(dp58435 +g25267 +g27 +sg25268 +S'Lock' +p58436 +sg25270 +S'J. Howard Iams' +p58437 +sa(dp58438 +g25267 +g27 +sg25268 +S'Lock' +p58439 +sg25270 +S'Samuel W. Ford' +p58440 +sa(dp58441 +g25267 +g27 +sg25268 +S'Spanish Lock' +p58442 +sg25270 +S'Majel G. Claflin' +p58443 +sa(dp58444 +g25267 +g27 +sg25268 +S'Liquor Carrier' +p58445 +sg25270 +S'Amos C. Brinton' +p58446 +sa(dp58447 +g25267 +g27 +sg25268 +S'Student Lamp' +p58448 +sg25270 +S'Alvin J. Doria' +p58449 +sa(dp58450 +g25267 +g27 +sg25268 +S'Lamp' +p58451 +sg25270 +S'Margaret Stottlemeyer' +p58452 +sa(dp58453 +g25267 +g27 +sg25268 +S'Lamp' +p58454 +sg25270 +S'Philip Johnson' +p58455 +sa(dp58456 +g25267 +g27 +sg25268 +S'Binnacle Lamp' +p58457 +sg25270 +S'Herman O. Stroh' +p58458 +sa(dp58459 +g25267 +g27 +sg25268 +S'Combination Peg Lamp/Candleholder' +p58460 +sg25270 +S'John Cutting' +p58461 +sa(dp58462 +g25267 +g27 +sg25268 +S'Tubular Hand Lamp' +p58463 +sg25270 +S'John H. Tercuzzi' +p58464 +sa(dp58465 +g25273 +S'(artist after)' +p58466 +sg25267 +g27 +sg25275 +S'\n' +p58467 +sg25268 +S'Vue de la Plaine des Sablons' +p58468 +sg25270 +S'Artist Information (' +p58469 +sa(dp58470 +g25267 +g27 +sg25268 +S'Glass Oil Lamp' +p58471 +sg25270 +S'Carl Buergerniss' +p58472 +sa(dp58473 +g25267 +g27 +sg25268 +S'Lamp with Shade' +p58474 +sg25270 +S'Charles Caseau' +p58475 +sa(dp58476 +g25267 +g27 +sg25268 +S"Mariner's Lamp" +p58477 +sg25270 +S'Joseph L. Boyd' +p58478 +sa(dp58479 +g25267 +g27 +sg25268 +S'Lamp' +p58480 +sg25270 +S'Cora Parker' +p58481 +sa(dp58482 +g25267 +g27 +sg25268 +S'Table Lamp' +p58483 +sg25270 +S'Irving L. Biehn' +p58484 +sa(dp58485 +g25267 +g27 +sg25268 +S'Oil Lamp' +p58486 +sg25270 +S'Ralph Atkinson' +p58487 +sa(dp58488 +g25267 +g27 +sg25268 +S'Blue Glass Lamp' +p58489 +sg25270 +S'Helen Bronson' +p58490 +sa(dp58491 +g25267 +g27 +sg25268 +S'Metal Base Lamp' +p58492 +sg25270 +S'Henry Meyers' +p58493 +sa(dp58494 +g25267 +g27 +sg25268 +S'Lamp' +p58495 +sg25270 +S'Carl Buergerniss' +p58496 +sa(dp58497 +g25267 +g27 +sg25268 +S'Details of Paneling' +p58498 +sg25270 +S'Charles Squires' +p58499 +sa(dp58500 +g25273 +S'Widener Collection' +p58501 +sg25267 +g27 +sg25275 +S'\nbound volume with 26 etchings and engravings by Binet, Dambrun, de Ghent, de Longueil, Duclos, Duflos, Le Beau, Macret, Marillier, Martini, J.M. Moreau, Nee, Ponce, and A. de Saint-Aubin after Marillier, Eisen, F.M. Querverdo, C.N. Cochin, J.M. Moreau, and A. de Saint-Aubin' +p58502 +sg25268 +S'Album of Miscellaneous Prints' +p58503 +sg25270 +S'Various Artists' +p58504 +sa(dp58505 +g25267 +g27 +sg25268 +S'Carved Casing' +p58506 +sg25270 +S'Hans Mangelsdorf' +p58507 +sa(dp58508 +g25267 +g27 +sg25268 +S"Saddler's Mallet" +p58509 +sg25270 +S'Alexander Anderson' +p58510 +sa(dp58511 +g25267 +g27 +sg25268 +S'Chalking Mallet' +p58512 +sg25270 +S'Eugene Bartz' +p58513 +sa(dp58514 +g25267 +g27 +sg25268 +S'Bung Starter Mallet' +p58515 +sg25270 +S'Irving L. Biehn' +p58516 +sa(dp58517 +g25267 +g27 +sg25268 +S'Mill Stones' +p58518 +sg25270 +S'Hilda Olson' +p58519 +sa(dp58520 +g25267 +g27 +sg25268 +S'Medal (Bronze)' +p58521 +sg25270 +S'Artist Information (' +p58522 +sa(dp58523 +g25267 +g27 +sg25268 +S'Measure' +p58524 +sg25270 +S'Hester Duany' +p58525 +sa(dp58526 +g25267 +g27 +sg25268 +S'Measure' +p58527 +sg25270 +S'Frank Budash' +p58528 +sa(dp58529 +g25267 +g27 +sg25268 +S'Vinegar Measure' +p58530 +sg25270 +S'Clarence Secor' +p58531 +sa(dp58532 +g25267 +g27 +sg25268 +S'Tin Measuring Cup' +p58533 +sg25270 +S'Russell Madole' +p58534 +sa(dp58535 +g25273 +S'Widener Collection' +p58536 +sg25267 +g27 +sg25275 +S'\nbound volume with 26 engravings by Ponce, St.Aubin, Guttenberg, Martini, Lebas, Godefroy, Flipart, Dambrun, J.M. Moreau, Longueil, Le Beau, Massard, De Ghendt, Duclos, Cochin, and Duflosafter various artists' +p58537 +sg25268 +S'Collection of Prints' +p58538 +sg25270 +S'Various Artists' +p58539 +sa(dp58540 +g25267 +g27 +sg25268 +S'Mail Box' +p58541 +sg25270 +S'Marjorie Lee' +p58542 +sa(dp58543 +g25267 +g27 +sg25268 +S'Leather Mail Bag' +p58544 +sg25270 +S'Walter Praefke' +p58545 +sa(dp58546 +g25267 +g27 +sg25268 +S'Cast Iron Mail Box' +p58547 +sg25270 +S'Roger Deats' +p58548 +sa(dp58549 +g25267 +g27 +sg25268 +S'Mail Box' +p58550 +sg25270 +S'Franklin C. Moyan' +p58551 +sa(dp58552 +g25267 +g27 +sg25268 +S'Lottery Wheel' +p58553 +sg25270 +S'Al Curry' +p58554 +sa(dp58555 +g25267 +g27 +sg25268 +S'Lottery Wheel' +p58556 +sg25270 +S'Martin Lamont' +p58557 +sa(dp58558 +g25267 +g27 +sg25268 +S'Hand Loom' +p58559 +sg25270 +S'Frederick Jackson' +p58560 +sa(dp58561 +g25267 +g27 +sg25268 +S'Hand Lace Loom' +p58562 +sg25270 +S'Alexander Anderson' +p58563 +sa(dp58564 +g25267 +g27 +sg25268 +S'Hand Loom' +p58565 +sg25270 +S'Albert Ryder' +p58566 +sa(dp58567 +g25267 +g27 +sg25268 +S'Log Load Tightener' +p58568 +sg25270 +S'Max Fernekes' +p58569 +sa(dp58570 +g25273 +S'French, 1638 - 1694' +p58571 +sg25267 +g27 +sg25275 +S'(author)' +p58572 +sg25268 +S'Oeuvres Choisies de Madame Deshoulieres' +p58573 +sg25270 +S'Artist Information (' +p58574 +sa(dp58575 +g25267 +g27 +sg25268 +S'Match Holder' +p58576 +sg25270 +S'Chris Makrenos' +p58577 +sa(dp58578 +g25267 +g27 +sg25268 +S'Match Safe' +p58579 +sg25270 +S'Thomas Holloway' +p58580 +sa(dp58581 +g25267 +g27 +sg25268 +S'Match Safe' +p58582 +sg25270 +S'Neva Coffey' +p58583 +sa(dp58584 +g25267 +g27 +sg25268 +S'Match Safe' +p58585 +sg25270 +S'Herman Schulze' +p58586 +sa(dp58587 +g25267 +g27 +sg25268 +S'Match Holder' +p58588 +sg25270 +S'Daniel Fletcher' +p58589 +sa(dp58590 +g25267 +g27 +sg25268 +S'Match Safe' +p58591 +sg25270 +S'Neva Coffey' +p58592 +sa(dp58593 +g25267 +g27 +sg25268 +S'Match Safe' +p58594 +sg25270 +S'Artist Information (' +p58595 +sa(dp58596 +g25267 +g27 +sg25268 +S'Match Safe' +p58597 +sg25270 +S'Julius Bellamy' +p58598 +sa(dp58599 +g25267 +g27 +sg25268 +S'Match Holder' +p58600 +sg25270 +S'Selma Sandler' +p58601 +sa(dp58602 +g25267 +g27 +sg25268 +S'Match Holder' +p58603 +sg25270 +S'Helen Hobart' +p58604 +sa(dp58605 +g25273 +S'French, 1734 - 1780' +p58606 +sg25267 +g27 +sg25275 +S'(author)' +p58607 +sg25268 +S'Les baisers ...; Imitation des auteurs latins' +p58608 +sg25270 +S'Artist Information (' +p58609 +sa(dp58610 +g25267 +g27 +sg25268 +S'Match Holder' +p58611 +sg25270 +S'Julius Bellamy' +p58612 +sa(dp58613 +g25267 +g27 +sg25268 +S'Match Safe' +p58614 +sg25270 +S'Jack Staloff' +p58615 +sa(dp58616 +g25267 +g27 +sg25268 +S'Mast Sheath' +p58617 +sg25270 +S'Lucille Chabot' +p58618 +sa(dp58619 +g25267 +g27 +sg25268 +S'Mast Sheath' +p58620 +sg25270 +S'Lucille Chabot' +p58621 +sa(dp58622 +g25267 +g27 +sg25268 +S'Potato Masher' +p58623 +sg25270 +S'Clarence W. Dawson' +p58624 +sa(dp58625 +g25267 +g27 +sg25268 +S'Potato Masher' +p58626 +sg25270 +S'Marie Alain' +p58627 +sa(dp58628 +g25267 +g27 +sg25268 +S'Masher' +p58629 +sg25270 +S'American 20th Century' +p58630 +sa(dp58631 +g25267 +g27 +sg25268 +S'Masher' +p58632 +sg25270 +S'Nicholas Amantea' +p58633 +sa(dp58634 +g25267 +g27 +sg25268 +S'Masher' +p58635 +sg25270 +S'Simon Clever' +p58636 +sa(dp58637 +g25267 +g27 +sg25268 +S'Grape Crusher' +p58638 +sg25270 +S'Clarence Secor' +p58639 +sa(dp58640 +g25273 +S'(artist)' +p58641 +sg25267 +g27 +sg25275 +S'\n' +p58642 +sg25268 +S'Fables nouvelles (volume I)' +p58643 +sg25270 +S'Artist Information (' +p58644 +sa(dp58645 +g25267 +g27 +sg25268 +S'Wine Masher' +p58646 +sg25270 +S'Alfonso Moreno' +p58647 +sa(dp58648 +g25267 +g27 +sg25268 +S'Dance Mask' +p58649 +sg25270 +S'Joseph Coyle' +p58650 +sa(dp58651 +g25267 +g27 +sg25268 +S'Masks' +p58652 +sg25270 +S'Louis Plogsted' +p58653 +sa(dp58654 +g25267 +g27 +sg25268 +S'Mask' +p58655 +sg25270 +S'Joseph Coyle' +p58656 +sa(dp58657 +g25267 +g27 +sg25268 +S'Marble' +p58658 +sg25270 +S'Vincent Murphy' +p58659 +sa(dp58660 +g25267 +g27 +sg25268 +S'Marble Ornament (from top of mantelpiece)' +p58661 +sg25270 +S'Manuel G. Runyan' +p58662 +sa(dp58663 +g25267 +g27 +sg25268 +S'Wooden Mantel Ornament' +p58664 +sg25270 +S'J. Howard Iams' +p58665 +sa(dp58666 +g25267 +g27 +sg25268 +S'Fireplace' +p58667 +sg25270 +S'Charles Squires' +p58668 +sa(dp58669 +g25267 +g27 +sg25268 +S'Mantel Detail' +p58670 +sg25270 +S'Sebastian Simonet' +p58671 +sa(dp58672 +g25267 +g27 +sg25268 +S'Bullet Mold' +p58673 +sg25270 +S'Chester Kluf' +p58674 +sa(dp58675 +g25273 +S'French, 1740 - 1808' +p58676 +sg25267 +g27 +sg25275 +S'(artist)' +p58677 +sg25268 +S'Fables nouvelles (volume II)' +p58678 +sg25270 +S'Artist Information (' +p58679 +sa(dp58680 +g25267 +g27 +sg25268 +S'Bullet Mold' +p58681 +sg25270 +S'Herman O. Stroh' +p58682 +sa(dp58683 +g25267 +g27 +sg25268 +S'Bullet Mold' +p58684 +sg25270 +S'Stanley Mazur' +p58685 +sa(dp58686 +g25267 +g27 +sg25268 +S"Turk's Head Cake Pan" +p58687 +sg25270 +S'Artist Information (' +p58688 +sa(dp58689 +g25267 +g27 +sg25268 +S'Aspic Mold' +p58690 +sg25270 +S'Philip Johnson' +p58691 +sa(dp58692 +g25267 +g27 +sg25268 +S'Tablespoon Mold' +p58693 +sg25270 +S'Jules Lefevere' +p58694 +sa(dp58695 +g25267 +g27 +sg25268 +S'Ice Cream Mold' +p58696 +sg25270 +S'V.L. Vance' +p58697 +sa(dp58698 +g25267 +g27 +sg25268 +S'Ice Cream Mold' +p58699 +sg25270 +S'Chris Makrenos' +p58700 +sa(dp58701 +g25267 +g27 +sg25268 +S'Spoon Mold' +p58702 +sg25270 +S'Paul Poffinbarger' +p58703 +sa(dp58704 +g25267 +g27 +sg25268 +S'Mold' +p58705 +sg25270 +S'Robert Calvin' +p58706 +sa(dp58707 +g25267 +g27 +sg25268 +S'Mold' +p58708 +sg25270 +S'John Wilkes' +p58709 +sa(dp58710 +g25273 +S'French, 1734 - 1780' +p58711 +sg25267 +g27 +sg25275 +S'(author)' +p58712 +sg25268 +S'Recueil de contes et de poemes' +p58713 +sg25270 +S'Artist Information (' +p58714 +sa(dp58715 +g25267 +g27 +sg25268 +S'Cake Pan' +p58716 +sg25270 +S'Richard Barnett' +p58717 +sa(dp58718 +g25267 +g27 +sg25268 +S'Cake Mold' +p58719 +sg25270 +S'Genevieve Jordan' +p58720 +sa(dp58721 +g25267 +g27 +sg25268 +S'Cast Iron Baking Mold' +p58722 +sg25270 +S'Luther D. Wenrich' +p58723 +sa(dp58724 +g25267 +g27 +sg25268 +S'Maple Sugar Mold' +p58725 +sg25270 +S'Robert Calvin' +p58726 +sa(dp58727 +g25267 +g27 +sg25268 +S'Cake Board' +p58728 +sg25270 +S'Robert Pohle' +p58729 +sa(dp58730 +g25267 +g27 +sg25268 +S'Fish Mold' +p58731 +sg25270 +S'Amos C. Brinton' +p58732 +sa(dp58733 +g25267 +g27 +sg25268 +S'Maple Sugar Mold' +p58734 +sg25270 +S'Walter Praefke' +p58735 +sa(dp58736 +g25267 +g27 +sg25268 +S'Maple Sugar Mold' +p58737 +sg25270 +S'Milton Grubstein' +p58738 +sa(dp58739 +g25267 +g27 +sg25268 +S'Cake Mold' +p58740 +sg25270 +S'Artist Information (' +p58741 +sa(dp58742 +g25267 +g27 +sg25268 +S'Aspic Mold' +p58743 +sg25270 +S'Philip Johnson' +p58744 +sa(dp58745 +g25273 +S'(artist)' +p58746 +sg25267 +g27 +sg25275 +S'\n' +p58747 +sg25268 +S'Le tableau de la volupte' +p58748 +sg25270 +S'Artist Information (' +p58749 +sa(dp58750 +g25267 +g27 +sg25268 +S'Star Shaped Match Box' +p58751 +sg25270 +S'Alfonso Moreno' +p58752 +sa(dp58753 +g25267 +g27 +sg25268 +S'Match Safe' +p58754 +sg25270 +S'Julius Bellamy' +p58755 +sa(dp58756 +g25267 +g27 +sg25268 +S'Match Box' +p58757 +sg25270 +S'Ardella Watkins' +p58758 +sa(dp58759 +g25267 +g27 +sg25268 +S'Match Case for Wall' +p58760 +sg25270 +S'Howell Rosenbaum' +p58761 +sa(dp58762 +g25267 +g27 +sg25268 +S'Iron Match Safe' +p58763 +sg25270 +S'Stanley Mazur' +p58764 +sa(dp58765 +g25267 +g27 +sg25268 +S'Match Holder' +p58766 +sg25270 +S'Chris Makrenos' +p58767 +sa(dp58768 +g25267 +g27 +sg25268 +S'Cast Iron Match Holder' +p58769 +sg25270 +S'Austin L. Davison' +p58770 +sa(dp58771 +g25267 +g27 +sg25268 +S'Match Safe "Vestibule"' +p58772 +sg25270 +S'Julius Bellamy' +p58773 +sa(dp58774 +g25267 +g27 +sg25268 +S'Match Safe' +p58775 +sg25270 +S'Amelia Tuccio' +p58776 +sa(dp58777 +g25267 +g27 +sg25268 +S'Match Safe' +p58778 +sg25270 +S'Artist Information (' +p58779 +sa(dp58780 +g25273 +S'French, 1745 - 1792' +p58781 +sg25267 +g27 +sg25275 +S'(author)' +p58782 +sg25268 +S'Henri IV, Drame Lyrique' +p58783 +sg25270 +S'Artist Information (' +p58784 +sa(dp58785 +g25267 +g27 +sg25268 +S'Match Safe' +p58786 +sg25270 +S'Helen Hobart' +p58787 +sa(dp58788 +g25267 +g27 +sg25268 +S'Match Safe' +p58789 +sg25270 +S'Helen Hobart' +p58790 +sa(dp58791 +g25267 +g27 +sg25268 +S'Match Safe' +p58792 +sg25270 +S'Julius Bellamy' +p58793 +sa(dp58794 +g25267 +g27 +sg25268 +S'Mortar and Pestle' +p58795 +sg25270 +S'Edward Bashaw' +p58796 +sa(dp58797 +g25267 +g27 +sg25268 +S'Mortar and Pestle' +p58798 +sg25270 +S'Carl Buergerniss' +p58799 +sa(dp58800 +g25267 +g27 +sg25268 +S'Mortar and Pestle' +p58801 +sg25270 +S'Gerald Transpota' +p58802 +sa(dp58803 +g25267 +g27 +sg25268 +S'Mortar and Pestle' +p58804 +sg25270 +S'Maurice Van Felix' +p58805 +sa(dp58806 +g25267 +g27 +sg25268 +S'Mortar' +p58807 +sg25270 +S'Hester Duany' +p58808 +sa(dp58809 +g25267 +g27 +sg25268 +S'Mortar' +p58810 +sg25270 +S'Walter Praefke' +p58811 +sa(dp58812 +g25267 +g27 +sg25268 +S'Mortar' +p58813 +sg25270 +S'Hester Duany' +p58814 +sa(dp58815 +g25273 +S'Netherlandish, 1466/1469 - 1536' +p58816 +sg25267 +g27 +sg25275 +S'(author)' +p58817 +sg25268 +S"L'eloge de la folie ..." +p58818 +sg25270 +S'Artist Information (' +p58819 +sa(dp58820 +g25267 +g27 +sg25268 +S'Mortar' +p58821 +sg25270 +S'Hester Duany' +p58822 +sa(dp58823 +g25267 +g27 +sg25268 +S'Mortar' +p58824 +sg25270 +S'Charles Garjian' +p58825 +sa(dp58826 +g25267 +g27 +sg25268 +S'Plate' +p58827 +sg25270 +S'John Koehl' +p58828 +sa(dp58829 +g25267 +g27 +sg25268 +S'Batter Jug' +p58830 +sg25270 +S'Stanley Mazur' +p58831 +sa(dp58832 +g25267 +g27 +sg25268 +S'Conductor Head' +p58833 +sg25270 +S'Stanley Mazur' +p58834 +sa(dp58835 +g25267 +g27 +sg25268 +S'Jar' +p58836 +sg25270 +S'Clyde L. Cheney' +p58837 +sa(dp58838 +g25267 +g27 +sg25268 +S'Candle Mold' +p58839 +sg25270 +S'Marie Famularo' +p58840 +sa(dp58841 +g25267 +g27 +sg25268 +S'Candle Mold' +p58842 +sg25270 +S'William Schmidt' +p58843 +sa(dp58844 +g25267 +g27 +sg25268 +S'Candle Mold' +p58845 +sg25270 +S'Walter Hochstrasser' +p58846 +sa(dp58847 +g25267 +g27 +sg25268 +S'Candle Mold' +p58848 +sg25270 +S'Eugene Croe' +p58849 +sa(dp58850 +g25273 +S'French, 1710 - 1792' +p58851 +sg25267 +g27 +sg25275 +S'(author)' +p58852 +sg25268 +S'Les moissonneurs ...' +p58853 +sg25270 +S'Artist Information (' +p58854 +sa(dp58855 +g25267 +g27 +sg25268 +S'Candle Mold' +p58856 +sg25270 +S'Roger Deats' +p58857 +sa(dp58858 +g25267 +g27 +sg25268 +S'Candle Mold' +p58859 +sg25270 +S'Holger Hansen' +p58860 +sa(dp58861 +g25267 +g27 +sg25268 +S'Candle Mold' +p58862 +sg25270 +S'Vincent P. Rosel' +p58863 +sa(dp58864 +g25267 +g27 +sg25268 +S'Candle Mold' +p58865 +sg25270 +S'Ada Borre' +p58866 +sa(dp58867 +g25267 +g27 +sg25268 +S'Candle Mold' +p58868 +sg25270 +S'Marie Famularo' +p58869 +sa(dp58870 +g25267 +g27 +sg25268 +S'Candle Mold' +p58871 +sg25270 +S'Edith Magnette' +p58872 +sa(dp58873 +g25267 +g27 +sg25268 +S'Candle Mold' +p58874 +sg25270 +S'Hugh Clarke' +p58875 +sa(dp58876 +g25267 +g27 +sg25268 +S'Candle Mold' +p58877 +sg25270 +S'Hugh Clarke' +p58878 +sa(dp58879 +g25267 +g27 +sg25268 +S'Candle Mold' +p58880 +sg25270 +S'Henry Waldeck' +p58881 +sa(dp58882 +g25267 +g27 +sg25268 +S'Bullet Mold' +p58883 +sg25270 +S'Manuel G. Runyan' +p58884 +sa(dp58885 +g25273 +S'French, 1651 - 1715' +p58886 +sg25267 +g27 +sg25275 +S'(author)' +p58887 +sg25268 +S'Les aventures de Telemaque (volume I)' +p58888 +sg25270 +S'Artist Information (' +p58889 +sa(dp58890 +g25267 +g27 +sg25268 +S'Bullet Mold' +p58891 +sg25270 +S'William Frank' +p58892 +sa(dp58893 +g25267 +g27 +sg25268 +S'Bullet Mold' +p58894 +sg25270 +S'William Frank' +p58895 +sa(dp58896 +g25267 +g27 +sg25268 +S'Bullet Mold' +p58897 +sg25270 +S'Manuel G. Runyan' +p58898 +sa(dp58899 +g25267 +g27 +sg25268 +S'Brass Bullet Mold' +p58900 +sg25270 +S'Fred Hassebrock' +p58901 +sa(dp58902 +g25267 +g27 +sg25268 +S'Bullet Mold' +p58903 +sg25270 +S'Fred Hassebrock' +p58904 +sa(dp58905 +g25267 +g27 +sg25268 +S'Mortar and Pestle' +p58906 +sg25270 +S'Mae Szilvasy' +p58907 +sa(dp58908 +g25267 +g27 +sg25268 +S'Mortar and Pestle' +p58909 +sg25270 +S'Hester Duany' +p58910 +sa(dp58911 +g25267 +g27 +sg25268 +S'Mortar and Pestle' +p58912 +sg25270 +S'Ludmilla Calderon' +p58913 +sa(dp58914 +g25267 +g27 +sg25268 +S'Mortar and Pestle' +p58915 +sg25270 +S'Ralph Morton' +p58916 +sa(dp58917 +g25267 +g27 +sg25268 +S'Mortar and Pestle' +p58918 +sg25270 +S'Theodore Pfitzer' +p58919 +sa(dp58920 +g25273 +S'pen and black ink and brush and black ink with gray wash' +p58921 +sg25267 +g27 +sg25275 +S'c. 1796' +p58922 +sg25268 +S'Frontispiece' +p58923 +sg25270 +S'Charles Monnet' +p58924 +sa(dp58925 +g25267 +g27 +sg25268 +S'Mortar and Pestle' +p58926 +sg25270 +S'Anne Colman' +p58927 +sa(dp58928 +g25267 +g27 +sg25268 +S'Mortar and Pestle' +p58929 +sg25270 +S'Carl Buergerniss' +p58930 +sa(dp58931 +g25267 +g27 +sg25268 +S'Mortar and Pestle' +p58932 +sg25270 +S'Carl Buergerniss' +p58933 +sa(dp58934 +g25267 +g27 +sg25268 +S'Mortar and Pestle' +p58935 +sg25270 +S'Carl Buergerniss' +p58936 +sa(dp58937 +g25267 +g27 +sg25268 +S'Pestle and Mortar' +p58938 +sg25270 +S'John Swientochowski' +p58939 +sa(dp58940 +g25267 +g27 +sg25268 +S'Brass Mortar and Pestle' +p58941 +sg25270 +S'Carl Buergerniss' +p58942 +sa(dp58943 +g25267 +g27 +sg25268 +S'Mortar and Pestle' +p58944 +sg25270 +S'Clarence W. Dawson' +p58945 +sa(dp58946 +g25267 +g27 +sg25268 +S'Mortar and Pestle' +p58947 +sg25270 +S'Paul Poffinbarger' +p58948 +sa(dp58949 +g25267 +g27 +sg25268 +S'Muffin Pan' +p58950 +sg25270 +S'Maurice Van Felix' +p58951 +sa(dp58952 +g25267 +g27 +sg25268 +S'Muffin Pan' +p58953 +sg25270 +S'Philip Johnson' +p58954 +sa(dp58955 +g25268 +S'A Sleeping Girl' +p58956 +sg25270 +S'Pietro Rotari' +p58957 +sg25273 +S'oil on canvas' +p58958 +sg25275 +S'1760/1762' +p58959 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000621.jpg' +p58960 +sg25267 +g27 +sa(dp58961 +g25273 +S'French, 1651 - 1715' +p58962 +sg25267 +g27 +sg25275 +S'(author)' +p58963 +sg25268 +S'Les aventures de Telemaque (volume II)' +p58964 +sg25270 +S'Artist Information (' +p58965 +sa(dp58966 +g25267 +g27 +sg25268 +S'Muffin Pan' +p58967 +sg25270 +S'Paul Poffinbarger' +p58968 +sa(dp58969 +g25267 +g27 +sg25268 +S'Muffin Pan' +p58970 +sg25270 +S'Gertrude Lemberg' +p58971 +sa(dp58972 +g25267 +g27 +sg25268 +S'Muffin Pan' +p58973 +sg25270 +S'Nicholas Acampora' +p58974 +sa(dp58975 +g25267 +g27 +sg25268 +S'Shaving Mug' +p58976 +sg25270 +S'Nicholas Amantea' +p58977 +sa(dp58978 +g25267 +g27 +sg25268 +S'Wooden Shaving Mug' +p58979 +sg25270 +S'Jesse W. Skeen' +p58980 +sa(dp58981 +g25267 +g27 +sg25268 +S'Wine Jug' +p58982 +sg25270 +S'Joseph L. Boyd' +p58983 +sa(dp58984 +g25267 +g27 +sg25268 +S'Drinking Mug' +p58985 +sg25270 +S'Howell Rosenbaum' +p58986 +sa(dp58987 +g25267 +g27 +sg25268 +S'Upright Harp/Piano' +p58988 +sg25270 +S'William High' +p58989 +sa(dp58990 +g25267 +g27 +sg25268 +S'Violin' +p58991 +sg25270 +S'Artist Information (' +p58992 +sa(dp58993 +g25267 +g27 +sg25268 +S'Stringed Harp' +p58994 +sg25270 +S'Grace Thomas' +p58995 +sa(dp58996 +g25273 +S'French, 1651 - 1715' +p58997 +sg25267 +g27 +sg25275 +S'(author)' +p58998 +sg25268 +S'Les aventures de Telemaque (volume III)' +p58999 +sg25270 +S'Artist Information (' +p59000 +sa(dp59001 +g25267 +g27 +sg25268 +S'Stringed Harp' +p59002 +sg25270 +S'Grace Thomas' +p59003 +sa(dp59004 +g25267 +g27 +sg25268 +S'Banjo' +p59005 +sg25270 +S'Alf Bruseth' +p59006 +sa(dp59007 +g25267 +g27 +sg25268 +S'Wooden Fife' +p59008 +sg25270 +S'Margaret Stottlemeyer' +p59009 +sa(dp59010 +g25267 +g27 +sg25268 +S'Wooden Fife' +p59011 +sg25270 +S'Edward L. Loper' +p59012 +sa(dp59013 +g25267 +g27 +sg25268 +S'Fife' +p59014 +sg25270 +S'Florence Hastings' +p59015 +sa(dp59016 +g25267 +g27 +sg25268 +S'Violin' +p59017 +sg25270 +S'Augustine Haugland' +p59018 +sa(dp59019 +g25267 +g27 +sg25268 +S'Piano' +p59020 +sg25270 +S'Lorenz Rothkranz' +p59021 +sa(dp59022 +g25267 +g27 +sg25268 +S'Upright Piano' +p59023 +sg25270 +S'Lorenz Rothkranz' +p59024 +sa(dp59025 +g25267 +g27 +sg25268 +S'Piano Forte' +p59026 +sg25270 +S'Ferdinand Cartier' +p59027 +sa(dp59028 +g25267 +g27 +sg25268 +S'Baritone Horn' +p59029 +sg25270 +S'Edward L. Loper' +p59030 +sa(dp59031 +g25273 +S'French, 1651 - 1715' +p59032 +sg25267 +g27 +sg25275 +S'(author)' +p59033 +sg25268 +S'Les aventures de Telemaque (volume IV)' +p59034 +sg25270 +S'Artist Information (' +p59035 +sa(dp59036 +g25267 +g27 +sg25268 +S'Plantation Banjo' +p59037 +sg25270 +S'Floyd R. Sharp' +p59038 +sa(dp59039 +g25267 +g27 +sg25268 +S'Nursing Bottle' +p59040 +sg25270 +S'Samuel O. Klein' +p59041 +sa(dp59042 +g25267 +g27 +sg25268 +S'Nursing Bottle' +p59043 +sg25270 +S'Christabel Scrymser' +p59044 +sa(dp59045 +g25267 +g27 +sg25268 +S'Nursing Bottle' +p59046 +sg25270 +S'Florence Stevenson' +p59047 +sa(dp59048 +g25267 +g27 +sg25268 +S'Nursing Bottle' +p59049 +sg25270 +S'Charles Cullen' +p59050 +sa(dp59051 +g25267 +g27 +sg25268 +S"Baby's Feeding Bottle" +p59052 +sg25270 +S'Samuel Fineman' +p59053 +sa(dp59054 +g25267 +g27 +sg25268 +S'Tin Nursing Bottle' +p59055 +sg25270 +S'Edith Miller' +p59056 +sa(dp59057 +g25267 +g27 +sg25268 +S'Nose Piece (For Weaning Calf)' +p59058 +sg25270 +S'John Thorsen' +p59059 +sa(dp59060 +g25267 +g27 +sg25268 +S'Newel Post' +p59061 +sg25270 +S'Louis Plogsted' +p59062 +sa(dp59063 +g25267 +g27 +sg25268 +S'Stair Case' +p59064 +sg25270 +S'Natalie Simon' +p59065 +sa(dp59066 +g25273 +S'(artist after)' +p59067 +sg25267 +g27 +sg25275 +S'\n' +p59068 +sg25268 +S'Frontispiece' +p59069 +sg25270 +S'Artist Information (' +p59070 +sa(dp59071 +g25267 +g27 +sg25268 +S'Newel Post' +p59072 +sg25270 +S'Natalie Simon' +p59073 +sa(dp59074 +g25267 +g27 +sg25268 +S'Naval Primer Holder' +p59075 +sg25270 +S'Max Unger' +p59076 +sa(dp59077 +g25267 +g27 +sg25268 +S'Engraved Name Plate' +p59078 +sg25270 +S'Grant Vanderpool' +p59079 +sa(dp59080 +g25267 +g27 +sg25268 +S'Door Plate' +p59081 +sg25270 +S'Herman O. Stroh' +p59082 +sa(dp59083 +g25267 +g27 +sg25268 +S'Handwrought Nails' +p59084 +sg25270 +S'Grant Vanderpool' +p59085 +sa(dp59086 +g25267 +g27 +sg25268 +S'Nails and Pins' +p59087 +sg25270 +S'Wellington Blewett' +p59088 +sa(dp59089 +g25267 +g27 +sg25268 +S'Box for Nails and Pins' +p59090 +sg25270 +S'Wellington Blewett' +p59091 +sa(dp59092 +g25267 +g27 +sg25268 +S'Nails and Pins' +p59093 +sg25270 +S'Harry G. Aberdeen' +p59094 +sa(dp59095 +g25267 +g27 +sg25268 +S'Piano' +p59096 +sg25270 +S'Virginia Kennady' +p59097 +sa(dp59098 +g25267 +g27 +sg25268 +S'Grand Piano' +p59099 +sg25270 +S'Ray Price' +p59100 +sa(dp59101 +g25273 +S'French, 1755 - 1794' +p59102 +sg25267 +g27 +sg25275 +S'(author)' +p59103 +sg25268 +S'Galatee, roman pastoral ...' +p59104 +sg25270 +S'Artist Information (' +p59105 +sa(dp59106 +g25267 +g27 +sg25268 +S'Piano' +p59107 +sg25270 +S'J. Peltzman' +p59108 +sa(dp59109 +g25267 +g27 +sg25268 +S'Piano Forte' +p59110 +sg25270 +S'Ferdinand Cartier' +p59111 +sa(dp59112 +g25267 +g27 +sg25268 +S'Piano Forte' +p59113 +sg25270 +S'Ferdinand Cartier' +p59114 +sa(dp59115 +g25267 +g27 +sg25268 +S'Piano' +p59116 +sg25270 +S'Florence Choate' +p59117 +sa(dp59118 +g25267 +g27 +sg25268 +S'Piano' +p59119 +sg25270 +S'Dorothy Posten' +p59120 +sa(dp59121 +g25267 +g27 +sg25268 +S'Piano' +p59122 +sg25270 +S'Ferdinand Cartier' +p59123 +sa(dp59124 +g25267 +g27 +sg25268 +S'Piano Forte' +p59125 +sg25270 +S'Lawrence Phillips' +p59126 +sa(dp59127 +g25267 +g27 +sg25268 +S'Piano Forte' +p59128 +sg25270 +S'Ferdinand Cartier' +p59129 +sa(dp59130 +g25267 +g27 +sg25268 +S'Piano Forte' +p59131 +sg25270 +S'Ferdinand Cartier' +p59132 +sa(dp59133 +g25267 +g27 +sg25268 +S'Piano' +p59134 +sg25270 +S'Artist Information (' +p59135 +sa(dp59136 +g25268 +S'Galerie des modes et costumes francais ... (volume I)' +p59137 +sg25270 +S'Various Artists' +p59138 +sg25273 +S'page size: 40.8 x 19.4 cm (16 1/16 x 7 5/8 in.)' +p59139 +sg25275 +S'\nbound volume with 198 hand-colored and black and white etchings and engravings' +p59140 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066fc.jpg' +p59141 +sg25267 +g27 +sa(dp59142 +g25267 +g27 +sg25268 +S'Cylinder Pipe Organ' +p59143 +sg25270 +S'Emilio Zito' +p59144 +sa(dp59145 +g25267 +g27 +sg25268 +S'Gem Roller Organ' +p59146 +sg25270 +S'John Dieterich' +p59147 +sa(dp59148 +g25267 +g27 +sg25268 +S'Melodeon' +p59149 +sg25270 +S'Regina Henderer' +p59150 +sa(dp59151 +g25267 +g27 +sg25268 +S'Melodeon' +p59152 +sg25270 +S'Edna C. Rex' +p59153 +sa(dp59154 +g25267 +g27 +sg25268 +S'Melodeon' +p59155 +sg25270 +S'Rex F. Bush' +p59156 +sa(dp59157 +g25267 +g27 +sg25268 +S'Melodeon' +p59158 +sg25270 +S'John Dieterich' +p59159 +sa(dp59160 +g25267 +g27 +sg25268 +S'Dulcimer' +p59161 +sg25270 +S'Rex F. Bush' +p59162 +sa(dp59163 +g25267 +g27 +sg25268 +S'Dulcimer' +p59164 +sg25270 +S'Rex F. Bush' +p59165 +sa(dp59166 +g25267 +g27 +sg25268 +S'Dulcimer' +p59167 +sg25270 +S'Edward L. Loper' +p59168 +sa(dp59169 +g25267 +g27 +sg25268 +S'Lard Lamp' +p59170 +sg25270 +S'Wayne White' +p59171 +sa(dp59172 +g25273 +S'Widener Collection' +p59173 +sg25267 +g27 +sg25275 +S'\n2 works bound in 1 vol. with 267 hand-colored etchings & engravings (Gallerie des modes...) and 36 hand-colored etchings and engravings (Collection..)' +p59174 +sg25268 +S"Galerie des modes et costumes francais ... ; Collection d'habillements .. (volume II)" +p59175 +sg25270 +S'Various Artists' +p59176 +sa(dp59177 +g25267 +g27 +sg25268 +S'Reading Lamp' +p59178 +sg25270 +S'Joseph Cannella' +p59179 +sa(dp59180 +g25267 +g27 +sg25268 +S'Lock, Key, Hinge' +p59181 +sg25270 +S'Charles Bowman' +p59182 +sa(dp59183 +g25267 +g27 +sg25268 +S'Mail Pouch' +p59184 +sg25270 +S'Stella Mosher' +p59185 +sa(dp59186 +g25267 +g27 +sg25268 +S'Conductor Head' +p59187 +sg25270 +S'Kurt Melzer' +p59188 +sa(dp59189 +g25267 +g27 +sg25268 +S'Conductor Head' +p59190 +sg25270 +S'Ivar Julius' +p59191 +sa(dp59192 +g25267 +g27 +sg25268 +S'Vinyard Basket' +p59193 +sg25270 +S'Kurt Melzer' +p59194 +sa(dp59195 +g25267 +g27 +sg25268 +S'Grape Crusher' +p59196 +sg25270 +S'Kurt Melzer' +p59197 +sa(dp59198 +g25267 +g27 +sg25268 +S'Psalmodicon' +p59199 +sg25270 +S'Wilbur M Rice' +p59200 +sa(dp59201 +g25267 +g27 +sg25268 +S"Woman's Accordian" +p59202 +sg25270 +S'John Thorsen' +p59203 +sa(dp59204 +g25267 +g27 +sg25268 +S'Church Organ' +p59205 +sg25270 +S'Amos C. Brinton' +p59206 +sa(dp59207 +g25273 +S'Swiss, 1730 - 1788' +p59208 +sg25267 +g27 +sg25275 +S'(author)' +p59209 +sg25268 +S"Mort d'Abel ..." +p59210 +sg25270 +S'Artist Information (' +p59211 +sa(dp59212 +g25267 +g27 +sg25268 +S'Cottage Organ' +p59213 +sg25270 +S'Joseph Cannella' +p59214 +sa(dp59215 +g25267 +g27 +sg25268 +S'Stairway Balustrade' +p59216 +sg25270 +S'Florence Truelson' +p59217 +sa(dp59218 +g25267 +g27 +sg25268 +S'Nutcracker' +p59219 +sg25270 +S'Frank McEntee' +p59220 +sa(dp59221 +g25267 +g27 +sg25268 +S'Wood Carving' +p59222 +sg25270 +S'A.R. Tolman' +p59223 +sa(dp59224 +g25267 +g27 +sg25268 +S'Wood Carving' +p59225 +sg25270 +S'Clyde L. Cheney' +p59226 +sa(dp59227 +g25267 +g27 +sg25268 +S'Wood and Stone Carving' +p59228 +sg25270 +S'Clyde L. Cheney' +p59229 +sa(dp59230 +g25267 +g27 +sg25268 +S'Mantel Carving' +p59231 +sg25270 +S'Michael Riccitelli' +p59232 +sa(dp59233 +g25267 +g27 +sg25268 +S'Architectural Detail' +p59234 +sg25270 +S'Robert Pohle' +p59235 +sa(dp59236 +g25267 +g27 +sg25268 +S'Architectural Carving' +p59237 +sg25270 +S'Helen E. Gilman' +p59238 +sa(dp59239 +g25267 +g27 +sg25268 +S'Barn Decoration' +p59240 +sg25270 +S'Walter Hochstrasser' +p59241 +sa(dp59242 +g25273 +S'Swiss, 1730 - 1788' +p59243 +sg25267 +g27 +sg25275 +S'(author)' +p59244 +sg25268 +S'Oeuvres de Salomon Gessner (volume I)' +p59245 +sg25270 +S'Artist Information (' +p59246 +sa(dp59247 +g25267 +g27 +sg25268 +S'Finial' +p59248 +sg25270 +S'Marian Page' +p59249 +sa(dp59250 +g25267 +g27 +sg25268 +S'Carved Wood Panel' +p59251 +sg25270 +S'Clyde L. Cheney' +p59252 +sa(dp59253 +g25267 +g27 +sg25268 +S'Furniture Panel' +p59254 +sg25270 +S'Albert Ryder' +p59255 +sa(dp59256 +g25267 +g27 +sg25268 +S'Carved Furniture Detail' +p59257 +sg25270 +S'John Sullivan' +p59258 +sa(dp59259 +g25267 +g27 +sg25268 +S'Carved Keystone' +p59260 +sg25270 +S'Richard Barnett' +p59261 +sa(dp59262 +g25267 +g27 +sg25268 +S'Bas Relief Plaque' +p59263 +sg25270 +S'Stanley Mazur' +p59264 +sa(dp59265 +g25267 +g27 +sg25268 +S'Architectural Ornament' +p59266 +sg25270 +S'Helen Alpiner Blumenstiel' +p59267 +sa(dp59268 +g25267 +g27 +sg25268 +S'Octant' +p59269 +sg25270 +S'John Thorsen' +p59270 +sa(dp59271 +g25267 +g27 +sg25268 +S'Painted Glass' +p59272 +sg25270 +S'James McLellan' +p59273 +sa(dp59274 +g25267 +g27 +sg25268 +S'Memorial Painting' +p59275 +sg25270 +S'James Vail' +p59276 +sa(dp59277 +g25273 +S'Swiss, 1730 - 1788' +p59278 +sg25267 +g27 +sg25275 +S'(author)' +p59279 +sg25268 +S'Oeuvres de Salomon Gessner (volume II)' +p59280 +sg25270 +S'Artist Information (' +p59281 +sa(dp59282 +g25267 +g27 +sg25268 +S"Painted Glass - Mariner's Church" +p59283 +sg25270 +S'James McLellan' +p59284 +sa(dp59285 +g25267 +g27 +sg25268 +S'Wooden Jam Pail' +p59286 +sg25270 +S'Anthony Zuccarello' +p59287 +sa(dp59288 +g25267 +g27 +sg25268 +S'Wooden Pail' +p59289 +sg25270 +S'Anthony Zuccarello' +p59290 +sa(dp59291 +g25267 +g27 +sg25268 +S'Milk Pail' +p59292 +sg25270 +S'Albert Geuppert' +p59293 +sa(dp59294 +g25267 +g27 +sg25268 +S'Fire Water Pail' +p59295 +sg25270 +S'Herbert Marsh' +p59296 +sa(dp59297 +g25267 +g27 +sg25268 +S'Sap Pail' +p59298 +sg25270 +S'G.A. Spangenberg' +p59299 +sa(dp59300 +g25267 +g27 +sg25268 +S'Pitch Pail' +p59301 +sg25270 +S'Charles Garjian' +p59302 +sa(dp59303 +g25267 +g27 +sg25268 +S'Rosette Mounts' +p59304 +sg25270 +S'Philip Johnson' +p59305 +sa(dp59306 +g25267 +g27 +sg25268 +S'Mount and Cup Caster' +p59307 +sg25270 +S'Philip Johnson' +p59308 +sa(dp59309 +g25267 +g27 +sg25268 +S'Wood Carving' +p59310 +sg25270 +S'Eldon Allen' +p59311 +sa(dp59312 +g25268 +S'A Girl with a Flower in Her Hair' +p59313 +sg25270 +S'Pietro Rotari' +p59314 +sg25273 +S'oil on canvas' +p59315 +sg25275 +S'1760/1762' +p59316 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000622.jpg' +p59317 +sg25267 +g27 +sa(dp59318 +g25273 +S'Swiss, 1730 - 1788' +p59319 +sg25267 +g27 +sg25275 +S'(author)' +p59320 +sg25268 +S'Oeuvres de Salomon Gessner (volume III)' +p59321 +sg25270 +S'Artist Information (' +p59322 +sa(dp59323 +g25267 +g27 +sg25268 +S'Wooden Medallion' +p59324 +sg25270 +S'Florence Huston' +p59325 +sa(dp59326 +g25267 +g27 +sg25268 +S'Plaster Ornament' +p59327 +sg25270 +S'Vera Van Voris' +p59328 +sa(dp59329 +g25267 +g27 +sg25268 +S'Carved Ornament' +p59330 +sg25270 +S'Charles Garjian' +p59331 +sa(dp59332 +g25267 +g27 +sg25268 +S'Base for Weather Vane' +p59333 +sg25270 +S'Hazel Hyde' +p59334 +sa(dp59335 +g25267 +g27 +sg25268 +S"Wood Tradesman's Sign" +p59336 +sg25270 +S'Laura Bilodeau' +p59337 +sa(dp59338 +g25267 +g27 +sg25268 +S'Bed Post Top' +p59339 +sg25270 +S'Henry Murphy' +p59340 +sa(dp59341 +g25267 +g27 +sg25268 +S"Boar's Head" +p59342 +sg25270 +S'Joseph Goldberg' +p59343 +sa(dp59344 +g25267 +g27 +sg25268 +S'Wooden Plaque' +p59345 +sg25270 +S'Stanley Mazur' +p59346 +sa(dp59347 +g25267 +g27 +sg25268 +S'Wooden Panel' +p59348 +sg25270 +S'Wellington Blewett' +p59349 +sa(dp59350 +g25267 +g27 +sg25268 +S'Relief Panel of Dog' +p59351 +sg25270 +S'Flora Merchant' +p59352 +sa(dp59353 +g25273 +S'Swiss, 1730 - 1788' +p59354 +sg25267 +g27 +sg25275 +S'(author)' +p59355 +sg25268 +S'Oeuvres de Salomon Gessner (volume IV)' +p59356 +sg25270 +S'Artist Information (' +p59357 +sa(dp59358 +g25267 +g27 +sg25268 +S'Architectural Ornament' +p59359 +sg25270 +S'William Kerby' +p59360 +sa(dp59361 +g25267 +g27 +sg25268 +S'Burnt Plaque' +p59362 +sg25270 +S'Frank Maurer' +p59363 +sa(dp59364 +g25267 +g27 +sg25268 +S'Inlaid Wood Panel' +p59365 +sg25270 +S'William A. Kropp' +p59366 +sa(dp59367 +g25267 +g27 +sg25268 +S'Nutcracker' +p59368 +sg25270 +S'Chris Makrenos' +p59369 +sa(dp59370 +g25267 +g27 +sg25268 +S'Nutcracker: Dog Tray' +p59371 +sg25270 +S'Gerald Transpota' +p59372 +sa(dp59373 +g25267 +g27 +sg25268 +S'Nutcracker' +p59374 +sg25270 +S'Frank McEntee' +p59375 +sa(dp59376 +g25267 +g27 +sg25268 +S'Brass Dog Nutcracker' +p59377 +sg25270 +S'Artist Information (' +p59378 +sa(dp59379 +g25267 +g27 +sg25268 +S'Nutcracker' +p59380 +sg25270 +S'Virginia Richards' +p59381 +sa(dp59382 +g25267 +g27 +sg25268 +S'Panslider' +p59383 +sg25270 +S'Harry Grossen' +p59384 +sa(dp59385 +g25267 +g27 +sg25268 +S'Paper Clip' +p59386 +sg25270 +S'Vincent Murphy' +p59387 +sa(dp59388 +g25273 +S'French, 1695 - 1758' +p59389 +sg25267 +g27 +sg25275 +S'(author)' +p59390 +sg25268 +S"Lettres d'une Peruvienne (volume I)" +p59391 +sg25270 +S'Artist Information (' +p59392 +sa(dp59393 +g25267 +g27 +sg25268 +S'Portrait' +p59394 +sg25270 +S'William Vergani' +p59395 +sa(dp59396 +g25267 +g27 +sg25268 +S'Portrait - Watercolor' +p59397 +sg25270 +S'Frank M. Keane' +p59398 +sa(dp59399 +g25267 +g27 +sg25268 +S'Memorial Picture' +p59400 +sg25270 +S'Stanley Mazur' +p59401 +sa(dp59402 +g25267 +g27 +sg25268 +S'"Clermont on Hudson" Painting' +p59403 +sg25270 +S'Ella Josephine Sterling' +p59404 +sa(dp59405 +g25267 +g27 +sg25268 +S'Painting on Velvet' +p59406 +sg25270 +S'Carol Larson' +p59407 +sa(dp59408 +g25267 +g27 +sg25268 +S'Tin Foil Flower (Painting)' +p59409 +sg25270 +S'Florence Stevenson' +p59410 +sa(dp59411 +g25267 +g27 +sg25268 +S'Framed Flower Painting' +p59412 +sg25270 +S'Clarence Secor' +p59413 +sa(dp59414 +g25267 +g27 +sg25268 +S'Illuminated Parable: Man Among Thieves' +p59415 +sg25270 +S'Artist Information (' +p59416 +sa(dp59417 +g25267 +g27 +sg25268 +S'Illuminated Parable: The Sower' +p59418 +sg25270 +S'Artist Information (' +p59419 +sa(dp59420 +g25267 +g27 +sg25268 +S'Illuminated Parable: The Wedding' +p59421 +sg25270 +S'Artist Information (' +p59422 +sa(dp59423 +g25273 +S'French, 1695 - 1758' +p59424 +sg25267 +g27 +sg25275 +S'(author)' +p59425 +sg25268 +S"Lettres d'une Peruvienne (volume II)" +p59426 +sg25270 +S'Artist Information (' +p59427 +sa(dp59428 +g25267 +g27 +sg25268 +S'Illuminated Parable: The Ten Virgins' +p59429 +sg25270 +S'Artist Information (' +p59430 +sa(dp59431 +g25267 +g27 +sg25268 +S'Illuminated Parable: The Sower' +p59432 +sg25270 +S'Artist Information (' +p59433 +sa(dp59434 +g25267 +g27 +sg25268 +S'Illuminated Parable: The Rich Fool' +p59435 +sg25270 +S'Artist Information (' +p59436 +sa(dp59437 +g25267 +g27 +sg25268 +S'Illuminated Parable: The Tares' +p59438 +sg25270 +S'Artist Information (' +p59439 +sa(dp59440 +g25267 +g27 +sg25268 +S'Colored Lithograph: "New Year\'s Eve"' +p59441 +sg25270 +S'Mina Lowry' +p59442 +sa(dp59443 +g25267 +g27 +sg25268 +S'Sand Picture' +p59444 +sg25270 +S'Paul Poffinbarger' +p59445 +sa(dp59446 +g25267 +g27 +sg25268 +S'Painted Panel' +p59447 +sg25270 +S'Frank Gray' +p59448 +sa(dp59449 +g25267 +g27 +sg25268 +S'Decorative Panel from Rail Car Interior' +p59450 +sg25270 +S'Wellington Blewett' +p59451 +sa(dp59452 +g25267 +g27 +sg25268 +S'Panels from Rail Car Interiors' +p59453 +sg25270 +S'William A. Kropp' +p59454 +sa(dp59455 +g25267 +g27 +sg25268 +S'Decorative Panels' +p59456 +sg25270 +S'Wellington Blewett' +p59457 +sa(dp59458 +g25273 +S'(artist after)' +p59459 +sg25267 +g27 +sg25275 +S'\n' +p59460 +sg25268 +S'Bossuet' +p59461 +sg25270 +S'Artist Information (' +p59462 +sa(dp59463 +g25267 +g27 +sg25268 +S'Decorative Panels' +p59464 +sg25270 +S'Wellington Blewett' +p59465 +sa(dp59466 +g25267 +g27 +sg25268 +S'Decorative Panel from Rail Car Interior' +p59467 +sg25270 +S'Wellington Blewett' +p59468 +sa(dp59469 +g25267 +g27 +sg25268 +S'Decorative Panel from Rail Car Interior' +p59470 +sg25270 +S'Wellington Blewett' +p59471 +sa(dp59472 +g25267 +g27 +sg25268 +S'Decorative Panel from Rail Car Interior' +p59473 +sg25270 +S'Wellington Blewett' +p59474 +sa(dp59475 +g25267 +g27 +sg25268 +S'Decorative Panel from Rail Car Interior' +p59476 +sg25270 +S'Wellington Blewett' +p59477 +sa(dp59478 +g25267 +g27 +sg25268 +S'Decorative Panel from Rail Car Interior' +p59479 +sg25270 +S'Wellington Blewett' +p59480 +sa(dp59481 +g25267 +g27 +sg25268 +S'Painted Glass' +p59482 +sg25270 +S'Elmer Weise' +p59483 +sa(dp59484 +g25267 +g27 +sg25268 +S'Painted Glass' +p59485 +sg25270 +S'James McLellan' +p59486 +sa(dp59487 +g25267 +g27 +sg25268 +S'Painted Glass Window' +p59488 +sg25270 +S'James McLellan' +p59489 +sa(dp59490 +g25267 +g27 +sg25268 +S'Framed Paper Cutting' +p59491 +sg25270 +S'Clyde L. Cheney' +p59492 +sa(dp59493 +g25273 +S'(artist after)' +p59494 +sg25267 +g27 +sg25275 +S'\n' +p59495 +sg25268 +S'Collection of Nine Portraits' +p59496 +sg25270 +S'Artist Information (' +p59497 +sa(dp59498 +g25267 +g27 +sg25268 +S'Memorial Picture' +p59499 +sg25270 +S'Adolph Opstad' +p59500 +sa(dp59501 +g25267 +g27 +sg25268 +S'Valentine' +p59502 +sg25270 +S'Samuel Philpot' +p59503 +sa(dp59504 +g25267 +g27 +sg25268 +S'Still Life' +p59505 +sg25270 +S'Bessie Vandre' +p59506 +sa(dp59507 +g25267 +g27 +sg25268 +S'Watercolor Painting' +p59508 +sg25270 +S'Cora Parker' +p59509 +sa(dp59510 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f9/a000f906.jpg' +p59511 +sg25268 +S'Watercolor: Cornucopia of Fruit' +p59512 +sg25270 +S'Mabel S. Kelton' +p59513 +sa(dp59514 +g25267 +g27 +sg25268 +S'Paul Revere Print' +p59515 +sg25270 +S'Archie Thompson' +p59516 +sa(dp59517 +g25267 +g27 +sg25268 +S'Tinsel Picture' +p59518 +sg25270 +S'George File' +p59519 +sa(dp59520 +g25267 +g27 +sg25268 +S'Tinsel Picture' +p59521 +sg25270 +S'James McLellan' +p59522 +sa(dp59523 +g25267 +g27 +sg25268 +S'Tin Foil Still Life and Frame' +p59524 +sg25270 +S'John Koehl' +p59525 +sa(dp59526 +g25267 +g27 +sg25268 +S'Stage Set' +p59527 +sg25270 +S'Gilbert Sackerman' +p59528 +sa(dp59529 +g25273 +S'(artist after)' +p59530 +sg25267 +g27 +sg25275 +S'\n' +p59531 +sg25268 +S'Bossuet' +p59532 +sg25270 +S'Artist Information (' +p59533 +sa(dp59534 +g25267 +g27 +sg25268 +S'Stage Set' +p59535 +sg25270 +S'Gilbert Sackerman' +p59536 +sa(dp59537 +g25267 +g27 +sg25268 +S'Piano Decoration' +p59538 +sg25270 +S'Eva Wilson' +p59539 +sa(dp59540 +g25267 +g27 +sg25268 +S'Painting of Wagner Family' +p59541 +sg25270 +S'Archie Thompson' +p59542 +sa(dp59543 +g25267 +g27 +sg25268 +S'Rack with Candle Molds' +p59544 +sg25270 +S'Charles Caseau' +p59545 +sa(dp59546 +g25267 +g27 +sg25268 +S'Candlestand' +p59547 +sg25270 +S'Jack Staloff' +p59548 +sa(dp59549 +g25267 +g27 +sg25268 +S'Candlestand' +p59550 +sg25270 +S'Carl Weiss' +p59551 +sa(dp59552 +g25267 +g27 +sg25268 +S'Candlesticks' +p59553 +sg25270 +S'Leo Drozdoff' +p59554 +sa(dp59555 +g25267 +g27 +sg25268 +S'Candle Sconce' +p59556 +sg25270 +S'Mildred Ford' +p59557 +sa(dp59558 +g25267 +g27 +sg25268 +S'Rush Light and Candle' +p59559 +sg25270 +S'Mildred Ford' +p59560 +sa(dp59561 +g25267 +g27 +sg25268 +S'Candle Pendant' +p59562 +sg25270 +S'Mildred Ford' +p59563 +sa(dp59564 +g25273 +S'(artist after)' +p59565 +sg25267 +g27 +sg25275 +S'\n' +p59566 +sg25268 +S'Dryden' +p59567 +sg25270 +S'Artist Information (' +p59568 +sa(dp59569 +g25267 +g27 +sg25268 +S'Rush Light Stand' +p59570 +sg25270 +S'Mildred Ford' +p59571 +sa(dp59572 +g25267 +g27 +sg25268 +S'Wall Sconce' +p59573 +sg25270 +S'Francis Law Durand' +p59574 +sa(dp59575 +g25267 +g27 +sg25268 +S'Tin Lard Lamp' +p59576 +sg25270 +S'Franklin C. Moyan' +p59577 +sa(dp59578 +g25267 +g27 +sg25268 +S'Lamp' +p59579 +sg25270 +S'Henry Meyers' +p59580 +sa(dp59581 +g25267 +g27 +sg25268 +S'Lamp' +p59582 +sg25270 +S'Edith Towner' +p59583 +sa(dp59584 +g25267 +g27 +sg25268 +S'Lantern' +p59585 +sg25270 +S'Marie Famularo' +p59586 +sa(dp59587 +g25267 +g27 +sg25268 +S'Candlestick' +p59588 +sg25270 +S'Holger Hansen' +p59589 +sa(dp59590 +g25267 +g27 +sg25268 +S'Candlestick' +p59591 +sg25270 +S'Lillian Causey' +p59592 +sa(dp59593 +g25267 +g27 +sg25268 +S'Lamp' +p59594 +sg25270 +S'Lawrence Phillips' +p59595 +sa(dp59596 +g25267 +g27 +sg25268 +S'Lamp' +p59597 +sg25270 +S'John Dana' +p59598 +sa(dp59599 +g25273 +S'(artist after)' +p59600 +sg25267 +g27 +sg25275 +S'\n' +p59601 +sg25268 +S'Descartes' +p59602 +sg25270 +S'Artist Information (' +p59603 +sa(dp59604 +g25267 +g27 +sg25268 +S'Lamp' +p59605 +sg25270 +S'S. Brodsky' +p59606 +sa(dp59607 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p59608 +sg25270 +S'Charles Caseau' +p59609 +sa(dp59610 +g25267 +g27 +sg25268 +S'Lamp' +p59611 +sg25270 +S'Frank Fumagalli' +p59612 +sa(dp59613 +g25267 +g27 +sg25268 +S'Lamp' +p59614 +sg25270 +S'Gertrude Lemberg' +p59615 +sa(dp59616 +g25267 +g27 +sg25268 +S'Lamp' +p59617 +sg25270 +S'Irving D. Genin' +p59618 +sa(dp59619 +g25267 +g27 +sg25268 +S'Lamp' +p59620 +sg25270 +S'John Dana' +p59621 +sa(dp59622 +g25267 +g27 +sg25268 +S'Lamp' +p59623 +sg25270 +S'Joseph Leboit' +p59624 +sa(dp59625 +g25267 +g27 +sg25268 +S'Lamp' +p59626 +sg25270 +S'Frank Fumagalli' +p59627 +sa(dp59628 +g25267 +g27 +sg25268 +S'Lamp' +p59629 +sg25270 +S'American 20th Century' +p59630 +sa(dp59631 +g25267 +g27 +sg25268 +S'Lamp' +p59632 +sg25270 +S'Sara Garfinkel' +p59633 +sa(dp59634 +g25273 +S'(artist after)' +p59635 +sg25267 +g27 +sg25275 +S'\n' +p59636 +sg25268 +S'Montesquieu' +p59637 +sg25270 +S'Artist Information (' +p59638 +sa(dp59639 +g25267 +g27 +sg25268 +S'Lamp' +p59640 +sg25270 +S"James O'Mara" +p59641 +sa(dp59642 +g25267 +g27 +sg25268 +S'Lamp' +p59643 +sg25270 +S'Albert Levone' +p59644 +sa(dp59645 +g25267 +g27 +sg25268 +S'Lamp' +p59646 +sg25270 +S'Artist Information (' +p59647 +sa(dp59648 +g25267 +g27 +sg25268 +S'Lamp' +p59649 +sg25270 +S'Janet Riza' +p59650 +sa(dp59651 +g25267 +g27 +sg25268 +S'Candlestick' +p59652 +sg25270 +S'Francis Law Durand' +p59653 +sa(dp59654 +g25267 +g27 +sg25268 +S'Pewter Lamp' +p59655 +sg25270 +S'American 20th Century' +p59656 +sa(dp59657 +g25267 +g27 +sg25268 +S'Wall Sconce' +p59658 +sg25270 +S'Francis Law Durand' +p59659 +sa(dp59660 +g25267 +g27 +sg25268 +S'Lamp' +p59661 +sg25270 +S'Joseph Leboit' +p59662 +sa(dp59663 +g25267 +g27 +sg25268 +S'Lamp' +p59664 +sg25270 +S'Herman Bader' +p59665 +sa(dp59666 +g25267 +g27 +sg25268 +S'Lamp' +p59667 +sg25270 +S'Charlotte Winter' +p59668 +sa(dp59669 +g25268 +S'Profile Portrait of a Lady' +p59670 +sg25270 +S'Franco-Flemish 15th Century' +p59671 +sg25273 +S'painted surface: 52 x 36.6 cm (20 1/2 x 14 7/16 in.)\r\noverall (panel): 53 x 37.6 cm (20 7/8 x 14 13/16 in.)\r\nframed: 74.1 x 61.3 x 5.4 cm (29 3/16 x 24 1/8 x 2 1/8 in.)' +p59672 +sg25275 +S'\noil on panel' +p59673 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005bc.jpg' +p59674 +sg25267 +S"Portraits were often included in devotional works, in which donors were \n depicted as witnessing a sacred scene. Independent portraits, however, are \n extremely rare before about 1425. This painting is the only one of a woman \n known to exist today. Her identity remains a mystery, but her dress and \n hauteur suggest she may have been at the French court; evidently she was a \n person of considerable rank. Portraits were commonly made of prospective \n partners in arranged marriages between powerful royal families. Van Eyck, \n for example, painted such portraits while on diplomatic assignment. The age \n and commanding presence of this woman, however, may indicate that she was \n already in a strong dynastic position. Her profile pose produces a clear \n and authoritative image and avoids direct contact with the viewer's \n gaze.\n The austere line of the subject's features is emphasized by the high \n forehead of her fashionable plucked hair line. High contrast against the \n flat background exaggerates the refinement of her likeness. The artist has \n painted individual details, such as the crimped curl at the brow and the \n heavy cage beads pinned at the shoulders, with careful attention; yet they \n are subordinated in a composition that has geometric, almost abstract \n severity. These ornamental qualities are typical of the International \n Style, which predominated all over Europe until it was supplanted by the \n more naturalistic work of the painters \n " +p59675 +sa(dp59676 +g25268 +S'The Crucifixion with Saint Jerome and Saint Francis' +p59677 +sg25270 +S'Pesellino' +p59678 +sg25273 +S'tempera on panel' +p59679 +sg25275 +S'c. 1445/1450' +p59680 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000766.jpg' +p59681 +sg25267 +g27 +sa(dp59682 +g25273 +S'(artist after)' +p59683 +sg25267 +g27 +sg25275 +S'\n' +p59684 +sg25268 +S'Polignac' +p59685 +sg25270 +S'Artist Information (' +p59686 +sa(dp59687 +g25267 +g27 +sg25268 +S'Lamp' +p59688 +sg25270 +S'Filippo Porreca' +p59689 +sa(dp59690 +g25267 +g27 +sg25268 +S'Combination Wall and Standing Lamp' +p59691 +sg25270 +S'Jacob Lipkin' +p59692 +sa(dp59693 +g25267 +g27 +sg25268 +S'Lamp' +p59694 +sg25270 +S'Burrell' +p59695 +sa(dp59696 +g25267 +g27 +sg25268 +S'Lamp' +p59697 +sg25270 +S'Hester Duany' +p59698 +sa(dp59699 +g25267 +g27 +sg25268 +S'Lamp' +p59700 +sg25270 +S'Carl Weiss' +p59701 +sa(dp59702 +g25267 +g27 +sg25268 +S'Lamp' +p59703 +sg25270 +S'Gilbert Sackerman' +p59704 +sa(dp59705 +g25267 +g27 +sg25268 +S'Lamp' +p59706 +sg25270 +S'John Dana' +p59707 +sa(dp59708 +g25267 +g27 +sg25268 +S'Lantern' +p59709 +sg25270 +S'Edith Magnette' +p59710 +sa(dp59711 +g25267 +g27 +sg25268 +S'Lamp' +p59712 +sg25270 +S'Charles Caseau' +p59713 +sa(dp59714 +g25267 +g27 +sg25268 +S'Lamp' +p59715 +sg25270 +S'Rollington Campbell' +p59716 +sa(dp59717 +g25273 +S'(artist after)' +p59718 +sg25267 +g27 +sg25275 +S'\n' +p59719 +sg25268 +S'Rousseau' +p59720 +sg25270 +S'Artist Information (' +p59721 +sa(dp59722 +g25267 +g27 +sg25268 +S'Lamp' +p59723 +sg25270 +S'Ruth Bialostosky' +p59724 +sa(dp59725 +g25267 +g27 +sg25268 +S'Cake Mold' +p59726 +sg25270 +S'Suzanne Roy' +p59727 +sa(dp59728 +g25267 +g27 +sg25268 +S'Lottery Wheel' +p59729 +sg25270 +S'James M. Lawson' +p59730 +sa(dp59731 +g25267 +g27 +sg25268 +S'Table Lamp' +p59732 +sg25270 +S'Ray Price' +p59733 +sa(dp59734 +g25267 +g27 +sg25268 +S'Lamp' +p59735 +sg25270 +S'Ella Josephine Sterling' +p59736 +sa(dp59737 +g25267 +g27 +sg25268 +S'Kerosene Street Car Lamp' +p59738 +sg25270 +S'Florence Huston' +p59739 +sa(dp59740 +g25267 +g27 +sg25268 +S'Lamp' +p59741 +sg25270 +S'American 20th Century' +p59742 +sa(dp59743 +g25267 +g27 +sg25268 +S'Spark Lamp' +p59744 +sg25270 +S'John Dana' +p59745 +sa(dp59746 +g25267 +g27 +sg25268 +S'Lamp' +p59747 +sg25270 +S'Gertrude Lemberg' +p59748 +sa(dp59749 +g25267 +g27 +sg25268 +S'Lamp' +p59750 +sg25270 +S'Frank Fumagalli' +p59751 +sa(dp59752 +g25273 +S'(artist after)' +p59753 +sg25267 +g27 +sg25275 +S'\n' +p59754 +sg25268 +S'Fenelon' +p59755 +sg25270 +S'Artist Information (' +p59756 +sa(dp59757 +g25267 +g27 +sg25268 +S'Lamp' +p59758 +sg25270 +S'John Tarantino' +p59759 +sa(dp59760 +g25267 +g27 +sg25268 +S'Spark Lamp' +p59761 +sg25270 +S'John Dana' +p59762 +sa(dp59763 +g25267 +g27 +sg25268 +S'Lamp' +p59764 +sg25270 +S'John Dana' +p59765 +sa(dp59766 +g25267 +g27 +sg25268 +S'Spark Lamp' +p59767 +sg25270 +S'John Tarantino' +p59768 +sa(dp59769 +g25267 +g27 +sg25268 +S'Metal Lantern' +p59770 +sg25270 +S'Edward L. Loper' +p59771 +sa(dp59772 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p59773 +sg25270 +S'David S. De Vault' +p59774 +sa(dp59775 +g25267 +g27 +sg25268 +S'Lamps' +p59776 +sg25270 +S'Margaret Stottlemeyer' +p59777 +sa(dp59778 +g25267 +g27 +sg25268 +S'Lantern' +p59779 +sg25270 +S'Albert Eyth' +p59780 +sa(dp59781 +g25267 +g27 +sg25268 +S'Lamp' +p59782 +sg25270 +S'Marcus Moran' +p59783 +sa(dp59784 +g25267 +g27 +sg25268 +S'Lamp Base' +p59785 +sg25270 +S'Willoughby Ions' +p59786 +sa(dp59787 +g25273 +S'(artist after)' +p59788 +sg25267 +g27 +sg25275 +S'\n' +p59789 +sg25268 +S'Adrienne Lecouvreur' +p59790 +sg25270 +S'Artist Information (' +p59791 +sa(dp59792 +g25267 +g27 +sg25268 +S'Pa. German Water Whistle' +p59793 +sg25270 +S'Carl Strehlau' +p59794 +sa(dp59795 +g25267 +g27 +sg25268 +S'Peavy' +p59796 +sg25270 +S'Max Fernekes' +p59797 +sa(dp59798 +g25267 +g27 +sg25268 +S'Star Pastry Squeezer' +p59799 +sg25270 +S'John Petrucci' +p59800 +sa(dp59801 +g25267 +g27 +sg25268 +S'Pa. German Prince Charles Spaniel' +p59802 +sg25270 +S'Mina Lowry' +p59803 +sa(dp59804 +g25267 +g27 +sg25268 +S'Pa. German Chalkware Chicken' +p59805 +sg25270 +S'Frank McEntee' +p59806 +sa(dp59807 +g25267 +g27 +sg25268 +S'Pa. German Seated Cat' +p59808 +sg25270 +S'Andrew Topolosky' +p59809 +sa(dp59810 +g25267 +g27 +sg25268 +S'Pa. German Dog Figurine' +p59811 +sg25270 +S'Mina Lowry' +p59812 +sa(dp59813 +g25267 +g27 +sg25268 +S'Pa. German Prince Charles Spaniel' +p59814 +sg25270 +S'Mina Lowry' +p59815 +sa(dp59816 +g25267 +g27 +sg25268 +S'Pa. German Prince Charles Spaniel' +p59817 +sg25270 +S'Mina Lowry' +p59818 +sa(dp59819 +g25267 +g27 +sg25268 +S'Pa. German Chalkware Cat' +p59820 +sg25270 +S'Mina Lowry' +p59821 +sa(dp59822 +g25273 +S'1 vol: ill: etchings and aquatints' +p59823 +sg25267 +g27 +sg25275 +S'published 1789/1791' +p59824 +sg25268 +S'Gravures Historiques ... (volume I)' +p59825 +sg25270 +S'Jean-Fran\xc3\xa7ois Janinet' +p59826 +sa(dp59827 +g25267 +g27 +sg25268 +S'Pa. German Chalkware Cat' +p59828 +sg25270 +S'Mina Lowry' +p59829 +sa(dp59830 +g25267 +g27 +sg25268 +S'Pa. German Dresser' +p59831 +sg25270 +S'Austin L. Davison' +p59832 +sa(dp59833 +g25267 +g27 +sg25268 +S'Pa. German Chair' +p59834 +sg25270 +S'American 20th Century' +p59835 +sa(dp59836 +g25267 +g27 +sg25268 +S'Pa. German Dower Chest' +p59837 +sg25270 +S'Frances Lichten' +p59838 +sa(dp59839 +g25267 +g27 +sg25268 +S'Pa. German Dowry Chest' +p59840 +sg25270 +S'American 20th Century' +p59841 +sa(dp59842 +g25267 +g27 +sg25268 +S'Pa. German Dower Chest' +p59843 +sg25270 +S'John Dieterich' +p59844 +sa(dp59845 +g25267 +g27 +sg25268 +S'Pa. German Dower Chest' +p59846 +sg25270 +S'Michael Trekur' +p59847 +sa(dp59848 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a0006746.jpg' +p59849 +sg25268 +S'Pa. German Patch Box' +p59850 +sg25270 +S'Albert Levone' +p59851 +sa(dp59852 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p59853 +sg25270 +S'Charles Von Urban' +p59854 +sa(dp59855 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p59856 +sg25270 +S'Charles Von Urban' +p59857 +sa(dp59858 +g25273 +S'1 vol: ill: etchings and aquatints' +p59859 +sg25267 +g27 +sg25275 +S'published 1789/1791' +p59860 +sg25268 +S'Gravures Historiques ... (volume II)' +p59861 +sg25270 +S'Jean-Fran\xc3\xa7ois Janinet' +p59862 +sa(dp59863 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p59864 +sg25270 +S'Charles Von Urban' +p59865 +sa(dp59866 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p59867 +sg25270 +S'Charles Von Urban' +p59868 +sa(dp59869 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p59870 +sg25270 +S'Charles Von Urban' +p59871 +sa(dp59872 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p59873 +sg25270 +S'Charles Von Urban' +p59874 +sa(dp59875 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p59876 +sg25270 +S'Charles Von Urban' +p59877 +sa(dp59878 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p59879 +sg25270 +S'Charles Von Urban' +p59880 +sa(dp59881 +g25267 +g27 +sg25268 +S'Pa. German Fireback' +p59882 +sg25270 +S'Charles Von Urban' +p59883 +sa(dp59884 +g25267 +g27 +sg25268 +S'Pa. German Jamb Stove (Five Plate)' +p59885 +sg25270 +S'Charles Von Urban' +p59886 +sa(dp59887 +g25267 +g27 +sg25268 +S"Pa. German Bride's Box" +p59888 +sg25270 +S'Frances Lichten' +p59889 +sa(dp59890 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005518.jpg' +p59891 +sg25268 +S'Dough Trough' +p59892 +sg25270 +S'M. Rosenshield-von-Paulin' +p59893 +sa(dp59894 +g25273 +S'bound volume with 54 hand-colored etchings and aquatints' +p59895 +sg25267 +g27 +sg25275 +S'published 1789/1791' +p59896 +sg25268 +S'Illustrations from "Gravures Historiques ..."' +p59897 +sg25270 +S'Jean-Fran\xc3\xa7ois Janinet' +p59898 +sa(dp59899 +g25267 +g27 +sg25268 +S'Pa. German Flat-iron Stand' +p59900 +sg25270 +S'Milton Grubstein' +p59901 +sa(dp59902 +g25267 +g27 +sg25268 +S'Pa. German Flat-iron Stand' +p59903 +sg25270 +S'Filippo Porreca' +p59904 +sa(dp59905 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p59906 +sg25270 +S'Charles Von Urban' +p59907 +sa(dp59908 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p59909 +sg25270 +S'Charles Von Urban' +p59910 +sa(dp59911 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p59912 +sg25270 +S'Charles Von Urban' +p59913 +sa(dp59914 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p59915 +sg25270 +S'Charles Von Urban' +p59916 +sa(dp59917 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p59918 +sg25270 +S'Charles Von Urban' +p59919 +sa(dp59920 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p59921 +sg25270 +S'Charles Von Urban' +p59922 +sa(dp59923 +g25267 +g27 +sg25268 +S'Pa. German Jamb Stove' +p59924 +sg25270 +S'Charles Von Urban' +p59925 +sa(dp59926 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p59927 +sg25270 +S'Charles Von Urban' +p59928 +sa(dp59929 +g25273 +S'French, 1709 - 1777' +p59930 +sg25267 +g27 +sg25275 +S'(author)' +p59931 +sg25268 +S'Oeuvres de Gresset (volume I)' +p59932 +sg25270 +S'Artist Information (' +p59933 +sa(dp59934 +g25267 +g27 +sg25268 +S'Pa. German Fire Back' +p59935 +sg25270 +S'Charles Von Urban' +p59936 +sa(dp59937 +g25267 +g27 +sg25268 +S'Pa. German Stove Plate' +p59938 +sg25270 +S'Moses' +p59939 +sa(dp59940 +g25267 +g27 +sg25268 +S'Pa. German Fire Back' +p59941 +sg25270 +S'Moses' +p59942 +sa(dp59943 +g25267 +g27 +sg25268 +S'Pa. German Springele Mold' +p59944 +sg25270 +S'Charles Von Urban' +p59945 +sa(dp59946 +g25267 +g27 +sg25268 +S'Pa. German Coffee Pot' +p59947 +sg25270 +S'Charles Von Urban' +p59948 +sa(dp59949 +g25267 +g27 +sg25268 +S'Pa. German Toy Bird' +p59950 +sg25270 +S'Charles Garjian' +p59951 +sa(dp59952 +g25267 +g27 +sg25268 +S'Pa. German Bird' +p59953 +sg25270 +S'Frances Lichten' +p59954 +sa(dp59955 +g25267 +g27 +sg25268 +S'Pa. German Butter Stamp' +p59956 +sg25270 +S'Charles Von Urban' +p59957 +sa(dp59958 +g25267 +g27 +sg25268 +S'Pa. German Meat Chopper' +p59959 +sg25270 +S'Nicholas Amantea' +p59960 +sa(dp59961 +g25267 +g27 +sg25268 +S'Pa. German Teapot' +p59962 +sg25270 +S'Eugene Shellady' +p59963 +sa(dp59964 +g25273 +S', published 1803' +p59965 +sg25267 +g27 +sg25275 +S'\n' +p59966 +sg25268 +S'Oeuvres de Gresset (volume II)' +p59967 +sg25270 +S'Jean-Baptiste-Louis Gresset' +p59968 +sa(dp59969 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p59970 +sg25270 +S'William L. Antrim' +p59971 +sa(dp59972 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p59973 +sg25270 +S'William L. Antrim' +p59974 +sa(dp59975 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p59976 +sg25270 +S'William L. Antrim' +p59977 +sa(dp59978 +g25267 +g27 +sg25268 +S'Pa. German Tin Sconce' +p59979 +sg25270 +S'William L. Antrim' +p59980 +sa(dp59981 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p59982 +sg25270 +S'Eugene Shellady' +p59983 +sa(dp59984 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p59985 +sg25270 +S'William L. Antrim' +p59986 +sa(dp59987 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p59988 +sg25270 +S'William L. Antrim' +p59989 +sa(dp59990 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p59991 +sg25270 +S'Eugene Shellady' +p59992 +sa(dp59993 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p59994 +sg25270 +S'William L. Antrim' +p59995 +sa(dp59996 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p59997 +sg25270 +S'William L. Antrim' +p59998 +sa(dp59999 +g25273 +S', published 1803' +p60000 +sg25267 +g27 +sg25275 +S'\n' +p60001 +sg25268 +S'Oeuvres de Gresset (volume III)' +p60002 +sg25270 +S'Jean-Baptiste-Louis Gresset' +p60003 +sa(dp60004 +g25267 +g27 +sg25268 +S'Pa. German Pie Dish' +p60005 +sg25270 +S'C.W. Perky' +p60006 +sa(dp60007 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p60008 +sg25270 +S'William L. Antrim' +p60009 +sa(dp60010 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p60011 +sg25270 +S'William L. Antrim' +p60012 +sa(dp60013 +g25267 +g27 +sg25268 +S'Pa. German Jar' +p60014 +sg25270 +S'William L. Antrim' +p60015 +sa(dp60016 +g25267 +g27 +sg25268 +S'Pa. German Pie Plate' +p60017 +sg25270 +S'William L. Antrim' +p60018 +sa(dp60019 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p60020 +sg25270 +S'William L. Antrim' +p60021 +sa(dp60022 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p60023 +sg25270 +S'William L. Antrim' +p60024 +sa(dp60025 +g25267 +g27 +sg25268 +S'Pa. German Ship' +p60026 +sg25270 +S'Marie Lutrell' +p60027 +sa(dp60028 +g25267 +S"Ship models appeared frequently as children's toys; this one of hand-carved,\n painted wood is mounted on wheels to function as a pull toy. A particularly colorful\n and charming example, it dates from the early nineteenth century and is of Pennsylvania\n German origin. The model imitates a warship, and the figures of soldiers are appropriately\n costumed.\n " +p60029 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002da.jpg' +p60030 +sg25268 +S'Toy Warship' +p60031 +sg25270 +S'Frances Lichten' +p60032 +sa(dp60033 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a00054f8.jpg' +p60034 +sg25268 +S'Pa. German Pins' +p60035 +sg25270 +S'Selma Sandler' +p60036 +sa(dp60037 +g25273 +S'(artist after)' +p60038 +sg25267 +g27 +sg25275 +S'\n' +p60039 +sg25268 +S'Jean-Baptiste-Louis Gresset' +p60040 +sg25270 +S'Artist Information (' +p60041 +sa(dp60042 +g25267 +g27 +sg25268 +S'Pa. German Weather Vane' +p60043 +sg25270 +S'Elmer R. Kottcamp' +p60044 +sa(dp60045 +g25267 +S'This coffeepot was made by Eben Smith, a pewterer and brazier from Beverly,\n Massachusetts. Beverly was a center of Britannia production in the mid-nineteenth\n century, and this piece may be of that alloy. Britannia is a type of pewter that\n contains a high percentage of tin with antimony added for hardness. It became\n popular in the nineteenth century because its shiny surface resembled silver and\n its hardness provided durability. Britannia was either cast like pewter or rolled\n into sheets and fashioned over wooden forms. Objects made of Britannia are usually\n thinner and lighter than those made of regular pewter. This coffeepot was designed\n in a modified lighthouse form with a domed lid topped by a small wooden knob. The\n S-shaped spout and scroll handle provide a boldness of form associated with Britannia\n ware. Encircling the body of this pot are rounded bands that were common on Britannia\n ware, because they served to strengthen the thin walls. The floral medallion on\n the side suggests the bright cut ornament often used for decoration by silversmiths.\n ' +p60046 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000308.jpg' +p60047 +sg25268 +S'Coffee Pot' +p60048 +sg25270 +S'Frank McEntee' +p60049 +sa(dp60050 +g25267 +g27 +sg25268 +S'Coffee Pot' +p60051 +sg25270 +S'Oscar Bluhme' +p60052 +sa(dp60053 +g25267 +S'From the seventeenth century to the nineteenth centuries, pewter was popular\n among middle class Americans for tableware and serving pieces, because it was\n more refined than wood and less costly than fine china. Pewter is an alloy\n of tin with varying combinations of copper, brass, lead, antimony, and bismuth.\n Because English law restricted the importation of raw tin into the colonies,\n pewterware was imported as a finished product. Colonial pewterers obtained their\n material by melting down worn-out pewter and recasting it into new forms.\n Brass molds, made by the pewterer himself, were most often used.\n After the piece was cast, it was skimmed on a lathe to make it smooth. The\n various components of a pewter object, such as the body, the foot, and the handle,\n were cast separately and soldered together. This pewter flagon was made in the\n early nineteenth century by the Boardman brothers. The Boardmans were a family\n with a tradition of pewtering, having inherited from their uncle, Samuel Boardman\n Danforth, many of the molds from which they cast their wares. This flagon is derived\n from Danforth styles. It was designed from a modified basin foot -- that is, the\n bottom of the piece was cast from a basin mold, inverted, and soldered to the body\n of the vessel. The handle is a double-C scroll, while the lid is a flattened dome.\n Though not all flagons were made with spouts, the Boardmans included one here.\n Flagons were originally used in homes to bring beer and cider to the table, but\n later ones, such as this, were often found in churches as part of the communion\n service.\n ' +p60054 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002e7.jpg' +p60055 +sg25268 +S'Pewter Flagon' +p60056 +sg25270 +S'Archie Thompson' +p60057 +sa(dp60058 +g25267 +g27 +sg25268 +S'Pewter Tankard' +p60059 +sg25270 +S'Oscar Bluhme' +p60060 +sa(dp60061 +g25267 +g27 +sg25268 +S'Plow' +p60062 +sg25270 +S'John Thorsen' +p60063 +sa(dp60064 +g25267 +g27 +sg25268 +S'Wooden Harrow or Cultivator' +p60065 +sg25270 +S'Wilbur M Rice' +p60066 +sa(dp60067 +g25267 +g27 +sg25268 +S'Powder Flask' +p60068 +sg25270 +S'Benjamin Von Lutze' +p60069 +sa(dp60070 +g25267 +g27 +sg25268 +S'Powder Horn' +p60071 +sg25270 +S'Alfred Koehn' +p60072 +sa(dp60073 +g25267 +g27 +sg25268 +S'Hunting Horn' +p60074 +sg25270 +S'Stanley Mazur' +p60075 +sa(dp60076 +g25273 +S'Italian, 65 - 8 B.C.' +p60077 +sg25267 +g27 +sg25275 +S'(author)' +p60078 +sg25268 +S'Quinti Horatii Flacci Opera (volume I)' +p60079 +sg25270 +S'Artist Information (' +p60080 +sa(dp60081 +g25267 +g27 +sg25268 +S'Pa. German Toy Soldier' +p60082 +sg25270 +S'Carl Strehlau' +p60083 +sa(dp60084 +g25267 +g27 +sg25268 +S'Pa. German Toy Stamping Mill' +p60085 +sg25270 +S'Frances Lichten' +p60086 +sa(dp60087 +g25267 +g27 +sg25268 +S'Pa. German Cradle with Doll & Coverlet' +p60088 +sg25270 +S'John Fisk' +p60089 +sa(dp60090 +g25267 +g27 +sg25268 +S'Pa. German Balancing Man' +p60091 +sg25270 +S'Mina Lowry' +p60092 +sa(dp60093 +g25267 +g27 +sg25268 +S'Pa. German Squirrel Figure' +p60094 +sg25270 +S'Arsen Maralian' +p60095 +sa(dp60096 +g25267 +g27 +sg25268 +S'Pa. German Bowl' +p60097 +sg25270 +S'Anna Aloisi' +p60098 +sa(dp60099 +g25267 +g27 +sg25268 +S'Pa. German Bowl' +p60100 +sg25270 +S'Hyman Pearlman' +p60101 +sa(dp60102 +g25267 +g27 +sg25268 +S'Pa. German Bowl' +p60103 +sg25270 +S'Ruth Bialostosky' +p60104 +sa(dp60105 +g25267 +g27 +sg25268 +S'Pa. German Deep Dish' +p60106 +sg25270 +S'Agnes Karlin' +p60107 +sa(dp60108 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p60109 +sg25270 +S'Ella Josephine Sterling' +p60110 +sa(dp60111 +g25273 +S'Italian, 65 - 8 B.C.' +p60112 +sg25267 +g27 +sg25275 +S'(author)' +p60113 +sg25268 +S'Quinti Horatii Flacci Opera (volume II)' +p60114 +sg25270 +S'Artist Information (' +p60115 +sa(dp60116 +g25267 +g27 +sg25268 +S'Pa. German Watering Can' +p60117 +sg25270 +S'Margaret Stottlemeyer' +p60118 +sa(dp60119 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p60120 +sg25270 +S'Lawrence Porth' +p60121 +sa(dp60122 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p60123 +sg25270 +S'American 20th Century' +p60124 +sa(dp60125 +g25267 +g27 +sg25268 +S'Pa. German Chest' +p60126 +sg25270 +S'American 20th Century' +p60127 +sa(dp60128 +g25267 +g27 +sg25268 +S'Pa. German Coffee Pot' +p60129 +sg25270 +S'Florence Stevenson' +p60130 +sa(dp60131 +g25267 +g27 +sg25268 +S'Pa. German Flower Pot and Tray' +p60132 +sg25270 +S'William L. Antrim' +p60133 +sa(dp60134 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p60135 +sg25270 +S'Eugene Shellady' +p60136 +sa(dp60137 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p60138 +sg25270 +S'Paul Lauterbach' +p60139 +sa(dp60140 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p60141 +sg25270 +S'Eugene Shellady' +p60142 +sa(dp60143 +g25267 +g27 +sg25268 +S'Pa. German Dish' +p60144 +sg25270 +S'Max Soltmann' +p60145 +sa(dp60146 +g25273 +S'French, 1747 - 1790' +p60147 +sg25267 +g27 +sg25275 +S'(author)' +p60148 +sg25268 +S'Historiettes ou nouvelles' +p60149 +sg25270 +S'Artist Information (' +p60150 +sa(dp60151 +g25267 +g27 +sg25268 +S'Pa. German Cider Jug' +p60152 +sg25270 +S'Charles T. Smith' +p60153 +sa(dp60154 +g25267 +g27 +sg25268 +S'Pa. German Pie Dish' +p60155 +sg25270 +S'Eugene Shellady' +p60156 +sa(dp60157 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p60158 +sg25270 +S'William L. Antrim' +p60159 +sa(dp60160 +g25267 +g27 +sg25268 +S'Pewter Bowl' +p60161 +sg25270 +S'Henry Meyers' +p60162 +sa(dp60163 +g25267 +g27 +sg25268 +S'Pewter Cup' +p60164 +sg25270 +S'Henry Meyers' +p60165 +sa(dp60166 +g25267 +g27 +sg25268 +S'Pewter Tea Set' +p60167 +sg25270 +S'Beulah Bradleigh' +p60168 +sa(dp60169 +g25267 +g27 +sg25268 +S'Pewter Dram Bottle' +p60170 +sg25270 +S'Henry Meyers' +p60171 +sa(dp60172 +g25267 +g27 +sg25268 +S'Pewter Sugar Bowl' +p60173 +sg25270 +S'Charles Cullen' +p60174 +sa(dp60175 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p60176 +sg25270 +S'Hyman Pearlman' +p60177 +sa(dp60178 +g25267 +g27 +sg25268 +S'Pewter Cup' +p60179 +sg25270 +S'Eugene Barrell' +p60180 +sa(dp60181 +g25273 +S'French, 1741 - 1814' +p60182 +sg25267 +g27 +sg25275 +S'(artist after)' +p60183 +sg25268 +S'Plates from Imbert\'s "Le jugement de Paris..."' +p60184 +sg25270 +S'Artist Information (' +p60185 +sa(dp60186 +g25267 +g27 +sg25268 +S'Pewter Cup' +p60187 +sg25270 +S'Matthew Mangiacotti' +p60188 +sa(dp60189 +g25267 +g27 +sg25268 +S'Pewter Beaker' +p60190 +sg25270 +S'Harry Goodman' +p60191 +sa(dp60192 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p60193 +sg25270 +S'Alfred Nason' +p60194 +sa(dp60195 +g25267 +g27 +sg25268 +S'Pewter Beaker' +p60196 +sg25270 +S'A. Zaidenberg' +p60197 +sa(dp60198 +g25267 +g27 +sg25268 +S'Pewter Beaker' +p60199 +sg25270 +S'John Garay' +p60200 +sa(dp60201 +g25267 +g27 +sg25268 +S'Pewter Beaker' +p60202 +sg25270 +S'Anna Aloisi' +p60203 +sa(dp60204 +g25267 +g27 +sg25268 +S'Enameled Pewter Beaker' +p60205 +sg25270 +S'Harry Goodman' +p60206 +sa(dp60207 +g25267 +g27 +sg25268 +S'Pewter Beaker' +p60208 +sg25270 +S'A. Zaidenberg' +p60209 +sa(dp60210 +g25267 +g27 +sg25268 +S'Pewter Drinking Cup' +p60211 +sg25270 +S'Winslow Rich' +p60212 +sa(dp60213 +g25267 +g27 +sg25268 +S'Pewter Beaker' +p60214 +sg25270 +S'Gertrude Lemberg' +p60215 +sa(dp60216 +g25273 +S'French, 1734 - 1794' +p60217 +sg25267 +g27 +sg25275 +S'(author)' +p60218 +sg25268 +S'Choix de chansons (volume I)' +p60219 +sg25270 +S'Artist Information (' +p60220 +sa(dp60221 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p60222 +sg25270 +S'Rollington Campbell' +p60223 +sa(dp60224 +g25267 +g27 +sg25268 +S'Pewter Beaker' +p60225 +sg25270 +S'Eugene Barrell' +p60226 +sa(dp60227 +g25267 +g27 +sg25268 +S'Quill Pens' +p60228 +sg25270 +S'Erwin Schwabe' +p60229 +sa(dp60230 +g25267 +g27 +sg25268 +S'Ink Marking Pen' +p60231 +sg25270 +S'Edward Bashaw' +p60232 +sa(dp60233 +g25267 +g27 +sg25268 +S'Glass Pen' +p60234 +sg25270 +S'Amos C. Brinton' +p60235 +sa(dp60236 +g25267 +g27 +sg25268 +S'Refillable Pencil' +p60237 +sg25270 +S'Mary Fitzgerald' +p60238 +sa(dp60239 +g25267 +g27 +sg25268 +S'Pewter Cream Pitcher' +p60240 +sg25270 +S'Fritz Boehmer' +p60241 +sa(dp60242 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p60243 +sg25270 +S'Eugene Barrell' +p60244 +sa(dp60245 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p60246 +sg25270 +S'Francis Borelli' +p60247 +sa(dp60248 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p60249 +sg25270 +S'Max Schwartz' +p60250 +sa(dp60251 +g25273 +S'French, 1734 - 1794' +p60252 +sg25267 +g27 +sg25275 +S'(author)' +p60253 +sg25268 +S'Choix de chansons (volume II)' +p60254 +sg25270 +S'Artist Information (' +p60255 +sa(dp60256 +g25267 +g27 +sg25268 +S'Pewter Creamer' +p60257 +sg25270 +S'Henry Meyers' +p60258 +sa(dp60259 +g25267 +g27 +sg25268 +S'Pewter Creamer' +p60260 +sg25270 +S'Charles Cullen' +p60261 +sa(dp60262 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p60263 +sg25270 +S'Henry Meyers' +p60264 +sa(dp60265 +g25267 +g27 +sg25268 +S'Pewter Chalice' +p60266 +sg25270 +S'James Vail' +p60267 +sa(dp60268 +g25267 +g27 +sg25268 +S'Pewter Chalice' +p60269 +sg25270 +S'Eugene La Foret' +p60270 +sa(dp60271 +g25267 +g27 +sg25268 +S'Sacramental Ewer' +p60272 +sg25270 +S'Aaron Fastovsky' +p60273 +sa(dp60274 +g25267 +g27 +sg25268 +S'Pewter Chalice' +p60275 +sg25270 +S'Arthur Stewart' +p60276 +sa(dp60277 +g25267 +g27 +sg25268 +S'Pewter Chalice' +p60278 +sg25270 +S'Henry Meyers' +p60279 +sa(dp60280 +g25267 +g27 +sg25268 +S'Pewter Chalice' +p60281 +sg25270 +S'Henry Meyers' +p60282 +sa(dp60283 +g25267 +g27 +sg25268 +S'Pewter Chalice' +p60284 +sg25270 +S'Henry Meyers' +p60285 +sa(dp60286 +g25273 +S'French, 1734 - 1794' +p60287 +sg25267 +g27 +sg25275 +S'(author)' +p60288 +sg25268 +S'Choix de chansons (volume III)' +p60289 +sg25270 +S'Artist Information (' +p60290 +sa(dp60291 +g25267 +g27 +sg25268 +S'Pewter Caster' +p60292 +sg25270 +S'J. Howard Iams' +p60293 +sa(dp60294 +g25267 +g27 +sg25268 +S'Pewter Caster' +p60295 +sg25270 +S'Eugene Barrell' +p60296 +sa(dp60297 +g25267 +g27 +sg25268 +S'Pewter Coffee Pot' +p60298 +sg25270 +S'Harry Mann Waddell' +p60299 +sa(dp60300 +g25267 +g27 +sg25268 +S'Pewter Coffee Pot' +p60301 +sg25270 +S'Eugene Barrell' +p60302 +sa(dp60303 +g25267 +g27 +sg25268 +S'Pewter Coffee Pot' +p60304 +sg25270 +S'Eugene Barrell' +p60305 +sa(dp60306 +g25267 +g27 +sg25268 +S'Pewter Coffee Pot' +p60307 +sg25270 +S'Eugene Barrell' +p60308 +sa(dp60309 +g25267 +g27 +sg25268 +S'Pewter Coffee Pot' +p60310 +sg25270 +S'Eugene Barrell' +p60311 +sa(dp60312 +g25267 +g27 +sg25268 +S'Pewter Coffee Pot' +p60313 +sg25270 +S'Robert Brigadier' +p60314 +sa(dp60315 +g25267 +g27 +sg25268 +S'Pewter Coffee Pot' +p60316 +sg25270 +S'Herman Bader' +p60317 +sa(dp60318 +g25267 +g27 +sg25268 +S'Pewter Flagon' +p60319 +sg25270 +S'Eugene Barrell' +p60320 +sa(dp60321 +g25273 +S'French, 1734 - 1794' +p60322 +sg25267 +g27 +sg25275 +S'(author)' +p60323 +sg25268 +S'Choix de chansons (volume IV)' +p60324 +sg25270 +S'Artist Information (' +p60325 +sa(dp60326 +g25267 +g27 +sg25268 +S'Pewter Coffee Urn' +p60327 +sg25270 +S'Philip Johnson' +p60328 +sa(dp60329 +g25267 +g27 +sg25268 +S'Pewter Coffee Pot' +p60330 +sg25270 +S'Henry Meyers' +p60331 +sa(dp60332 +g25267 +g27 +sg25268 +S'Pewter Coffee Pot' +p60333 +sg25270 +S'Dana Bartlett' +p60334 +sa(dp60335 +g25267 +g27 +sg25268 +S'Pewter Coffee Pot' +p60336 +sg25270 +S'Holger Hansen' +p60337 +sa(dp60338 +g25267 +g27 +sg25268 +S'Pewter Coffee Pot' +p60339 +sg25270 +S'Eugene Barrell' +p60340 +sa(dp60341 +g25267 +g27 +sg25268 +S'Pewter Coffee Pot' +p60342 +sg25270 +S'Eugene Barrell' +p60343 +sa(dp60344 +g25267 +g27 +sg25268 +S'Pewter Coffee Pot' +p60345 +sg25270 +S'Burton Ewing' +p60346 +sa(dp60347 +g25267 +g27 +sg25268 +S'Pewter Coffee Pot' +p60348 +sg25270 +S'A. Zaidenberg' +p60349 +sa(dp60350 +g25267 +g27 +sg25268 +S'Pewter Bowl' +p60351 +sg25270 +S'Henry Meyers' +p60352 +sa(dp60353 +g25267 +g27 +sg25268 +S'Pewter Flask' +p60354 +sg25270 +S'Charles Johnson' +p60355 +sa(dp60356 +g25273 +S'French, 1621 - 1695' +p60357 +sg25267 +g27 +sg25275 +S'(author)' +p60358 +sg25268 +S'Les amours de Psyche et de Cupidon' +p60359 +sg25270 +S'Artist Information (' +p60360 +sa(dp60361 +g25267 +g27 +sg25268 +S'Pewter Sugar Bowl' +p60362 +sg25270 +S'Helen Bronson' +p60363 +sa(dp60364 +g25267 +g27 +sg25268 +S'Pewter Sugar Bowl' +p60365 +sg25270 +S'Anne B. Trepagnier' +p60366 +sa(dp60367 +g25267 +g27 +sg25268 +S'Pewter Salt or Sugar Bowl' +p60368 +sg25270 +S'Sara Garfinkel' +p60369 +sa(dp60370 +g25267 +g27 +sg25268 +S'Pewter Box with Two Compartments' +p60371 +sg25270 +S'Harry Goodman' +p60372 +sa(dp60373 +g25267 +g27 +sg25268 +S'Pewter Sugar Bowl' +p60374 +sg25270 +S'Harry Goodman' +p60375 +sa(dp60376 +g25267 +g27 +sg25268 +S'Pewter Sugar Bowl' +p60377 +sg25270 +S'Sidney Liswood' +p60378 +sa(dp60379 +g25267 +g27 +sg25268 +S'Enamel Pitcher' +p60380 +sg25270 +S'Richard Taylor' +p60381 +sa(dp60382 +g25267 +g27 +sg25268 +S'Pewter Tankard' +p60383 +sg25270 +S'Arsen Maralian' +p60384 +sa(dp60385 +g25267 +g27 +sg25268 +S'Pewter Mug' +p60386 +sg25270 +S'Sidney Liswood' +p60387 +sa(dp60388 +g25267 +g27 +sg25268 +S'Pewter Mug' +p60389 +sg25270 +S'Henry Meyers' +p60390 +sa(dp60391 +g25273 +S'Widener Collection' +p60392 +sg25267 +g27 +sg25275 +S'\nbound volume with 18 etch. and engr. (includes trial proofs) by Audouin, Dambruh, Duhamel, Dupreel, de Ghendt, Halbou, Petit & Simonet after Rigault and J.M. Moreau for the 1795 ed. of La Fontaine\'s "Les amours de Psyche et Cupidon ..."' +p60393 +sg25268 +S'Album of Prints for La Fontaine\'s "Les amours de Psyche et Cupidon"' +p60394 +sg25270 +S'Various Artists' +p60395 +sa(dp60396 +g25267 +g27 +sg25268 +S'Pewter Mug' +p60397 +sg25270 +S'Charles Cullen' +p60398 +sa(dp60399 +g25267 +g27 +sg25268 +S'Pewter Mug' +p60400 +sg25270 +S'Filippo Porreca' +p60401 +sa(dp60402 +g25267 +g27 +sg25268 +S'Pewter Tankard' +p60403 +sg25270 +S'Henry Meyers' +p60404 +sa(dp60405 +g25267 +g27 +sg25268 +S'Pewter Mug' +p60406 +sg25270 +S'Henry Meyers' +p60407 +sa(dp60408 +g25267 +g27 +sg25268 +S'Pewter Mug' +p60409 +sg25270 +S'Henry Meyers' +p60410 +sa(dp60411 +g25267 +g27 +sg25268 +S'Britannia Mug' +p60412 +sg25270 +S'Joseph Wolins' +p60413 +sa(dp60414 +g25267 +g27 +sg25268 +S'Pewter Mug' +p60415 +sg25270 +S'Filippo Porreca' +p60416 +sa(dp60417 +g25267 +g27 +sg25268 +S'Pewter Mug' +p60418 +sg25270 +S'Henry Meyers' +p60419 +sa(dp60420 +g25267 +g27 +sg25268 +S'Pewter Mug' +p60421 +sg25270 +S'A. Zaidenberg' +p60422 +sa(dp60423 +g25267 +g27 +sg25268 +S'Pewter Mug' +p60424 +sg25270 +S'Eugene Barrell' +p60425 +sa(dp60426 +g25273 +S'(author)' +p60427 +sg25267 +g27 +sg25275 +S'\n' +p60428 +sg25268 +S'Les amours de Psyche et de Cupidon (volume I)' +p60429 +sg25270 +S'Artist Information (' +p60430 +sa(dp60431 +g25267 +g27 +sg25268 +S'Pewter Mug' +p60432 +sg25270 +S'Charles Cullen' +p60433 +sa(dp60434 +g25267 +g27 +sg25268 +S'Pewter Mug' +p60435 +sg25270 +S'Henry Meyers' +p60436 +sa(dp60437 +g25267 +g27 +sg25268 +S'Pewter Mug' +p60438 +sg25270 +S'Charles Cullen' +p60439 +sa(dp60440 +g25267 +g27 +sg25268 +S'Pewter Mug' +p60441 +sg25270 +S'Gordon Sanborn' +p60442 +sa(dp60443 +g25267 +g27 +sg25268 +S'Pewter Inkwell' +p60444 +sg25270 +S'Salvatore Borrazzo' +p60445 +sa(dp60446 +g25267 +g27 +sg25268 +S'Pewter Desk Set' +p60447 +sg25270 +S'Mae Szilvasy' +p60448 +sa(dp60449 +g25267 +g27 +sg25268 +S'Pewter Inkstand' +p60450 +sg25270 +S'Violet Hartenstein' +p60451 +sa(dp60452 +g25267 +g27 +sg25268 +S'Pewter Inkwell' +p60453 +sg25270 +S'Henry Granet' +p60454 +sa(dp60455 +g25267 +g27 +sg25268 +S'Pewter Inkwell' +p60456 +sg25270 +S'Eugene Barrell' +p60457 +sa(dp60458 +g25267 +g27 +sg25268 +S'Pewter Flagon' +p60459 +sg25270 +S'Charles Cullen' +p60460 +sa(dp60461 +g25273 +S'(author)' +p60462 +sg25267 +g27 +sg25275 +S'\n' +p60463 +sg25268 +S'Les amours de Psyche et de Cupidon (volume II)' +p60464 +sg25270 +S'Artist Information (' +p60465 +sa(dp60466 +g25267 +g27 +sg25268 +S'Pewter Flagon' +p60467 +sg25270 +S'Eugene Barrell' +p60468 +sa(dp60469 +g25267 +g27 +sg25268 +S'Pewter Flagon' +p60470 +sg25270 +S'Eugene Barrell' +p60471 +sa(dp60472 +g25267 +g27 +sg25268 +S'Pewter Flagon' +p60473 +sg25270 +S'A. Zaidenberg' +p60474 +sa(dp60475 +g25267 +g27 +sg25268 +S'Pewter Flagon' +p60476 +sg25270 +S'Charles Cullen' +p60477 +sa(dp60478 +g25267 +g27 +sg25268 +S'Pewter Flagon' +p60479 +sg25270 +S'Charles Cullen' +p60480 +sa(dp60481 +g25267 +g27 +sg25268 +S'Pewter Flagon' +p60482 +sg25270 +S'Herman Bader' +p60483 +sa(dp60484 +g25267 +g27 +sg25268 +S'Pewter Flagon' +p60485 +sg25270 +S'Henry Meyers' +p60486 +sa(dp60487 +g25267 +g27 +sg25268 +S'Pewter Jar' +p60488 +sg25270 +S'R.J. De Freitas' +p60489 +sa(dp60490 +g25267 +g27 +sg25268 +S'Pewter Syrup Jar' +p60491 +sg25270 +S'Harry Mann Waddell' +p60492 +sa(dp60493 +g25267 +g27 +sg25268 +S'Pewter Honey Jar' +p60494 +sg25270 +S'Beulah Bradleigh' +p60495 +sa(dp60496 +g25273 +S'French, 1621 - 1695' +p60497 +sg25267 +g27 +sg25275 +S'(author)' +p60498 +sg25268 +S'Collection des contes ...' +p60499 +sg25270 +S'Artist Information (' +p60500 +sa(dp60501 +g25267 +g27 +sg25268 +S'Pewter Syrup Jug' +p60502 +sg25270 +S'Harry Mann Waddell' +p60503 +sa(dp60504 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p60505 +sg25270 +S'Irving D. Genin' +p60506 +sa(dp60507 +g25267 +g27 +sg25268 +S'Pewter Honey Jar' +p60508 +sg25270 +S'Dana Bartlett' +p60509 +sa(dp60510 +g25267 +g27 +sg25268 +S'Pewter Ewer' +p60511 +sg25270 +S'John Dixon' +p60512 +sa(dp60513 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60514 +sg25270 +S'Charles Cullen' +p60515 +sa(dp60516 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60517 +sg25270 +S'Charles Cullen' +p60518 +sa(dp60519 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60520 +sg25270 +S'Charles Cullen' +p60521 +sa(dp60522 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60523 +sg25270 +S'Charles Cullen' +p60524 +sa(dp60525 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60526 +sg25270 +S'Philip Johnson' +p60527 +sa(dp60528 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60529 +sg25270 +S'Eugene Barrell' +p60530 +sa(dp60531 +g25273 +S'French, 1621 - 1695' +p60532 +sg25267 +g27 +sg25275 +S'(author)' +p60533 +sg25268 +S'Contes et nouvelles en vers (volume I)' +p60534 +sg25270 +S'Artist Information (' +p60535 +sa(dp60536 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60537 +sg25270 +S'Charlotte Winter' +p60538 +sa(dp60539 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60540 +sg25270 +S'Charles Cullen' +p60541 +sa(dp60542 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p60543 +sg25270 +S'Suzanne Chapman' +p60544 +sa(dp60545 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p60546 +sg25270 +S'Lawrence Flynn' +p60547 +sa(dp60548 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p60549 +sg25270 +S'Harry Goodman' +p60550 +sa(dp60551 +g25267 +g27 +sg25268 +S'Pewter Syrup Pitcher' +p60552 +sg25270 +S'Donald Streeter' +p60553 +sa(dp60554 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p60555 +sg25270 +S'Francis Borelli' +p60556 +sa(dp60557 +g25267 +g27 +sg25268 +S'Pewter Water Pitcher' +p60558 +sg25270 +S'Matthew Mangiacotti' +p60559 +sa(dp60560 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p60561 +sg25270 +S'Joseph Wolins' +p60562 +sa(dp60563 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p60564 +sg25270 +S'Henry Meyers' +p60565 +sa(dp60566 +g25273 +S'French, 1621 - 1695' +p60567 +sg25267 +g27 +sg25275 +S'(author)' +p60568 +sg25268 +S'Contes et nouvelles en vers (volume II)' +p60569 +sg25270 +S'Artist Information (' +p60570 +sa(dp60571 +g25267 +g27 +sg25268 +S'Pewter and Ceramic Pitcher' +p60572 +sg25270 +S'Helen Bronson' +p60573 +sa(dp60574 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p60575 +sg25270 +S'Henry Meyers' +p60576 +sa(dp60577 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p60578 +sg25270 +S'A. Zimet' +p60579 +sa(dp60580 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p60581 +sg25270 +S'Charles Cullen' +p60582 +sa(dp60583 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p60584 +sg25270 +S'Sidney Liswood' +p60585 +sa(dp60586 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p60587 +sg25270 +S'Henry Granet' +p60588 +sa(dp60589 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p60590 +sg25270 +S'Sidney Liswood' +p60591 +sa(dp60592 +g25267 +g27 +sg25268 +S'Pewter Water Pitcher' +p60593 +sg25270 +S'Arsen Maralian' +p60594 +sa(dp60595 +g25267 +g27 +sg25268 +S'Pewter Pan' +p60596 +sg25270 +S'Arsen Maralian' +p60597 +sa(dp60598 +g25267 +g27 +sg25268 +S'Pewter Plate' +p60599 +sg25270 +S'Charles Cullen' +p60600 +sa(dp60601 +g25273 +S'graphite on vellum' +p60602 +sg25267 +g27 +sg25275 +S'published 1762' +p60603 +sg25268 +S'Promettre est un et tenir un autre' +p60604 +sg25270 +S'Charles Eisen' +p60605 +sa(dp60606 +g25267 +g27 +sg25268 +S'Pewter Plate' +p60607 +sg25270 +S'Harry Goodman' +p60608 +sa(dp60609 +g25267 +g27 +sg25268 +S'Pewter Platter' +p60610 +sg25270 +S'Harry Goodman' +p60611 +sa(dp60612 +g25267 +g27 +sg25268 +S'Pewter Basin' +p60613 +sg25270 +S'Harry Goodman' +p60614 +sa(dp60615 +g25267 +g27 +sg25268 +S'Pewter Plate' +p60616 +sg25270 +S'Geoffrey Holt' +p60617 +sa(dp60618 +g25267 +g27 +sg25268 +S'Pewter Ladle' +p60619 +sg25270 +S'Henry Meyers' +p60620 +sa(dp60621 +g25267 +g27 +sg25268 +S'Pewter Ladle' +p60622 +sg25270 +S'Meyer Goldbaum' +p60623 +sa(dp60624 +g25267 +g27 +sg25268 +S'Pewter Spoon' +p60625 +sg25270 +S'Henry Meyers' +p60626 +sa(dp60627 +g25267 +g27 +sg25268 +S'Pewter Ladle' +p60628 +sg25270 +S'Matthew Mangiacotti' +p60629 +sa(dp60630 +g25267 +g27 +sg25268 +S'Pewter Spoon' +p60631 +sg25270 +S'Grace Halpin' +p60632 +sa(dp60633 +g25267 +g27 +sg25268 +S'Pewter Spoon' +p60634 +sg25270 +S'Burton Ewing' +p60635 +sa(dp60636 +g25273 +S'French, 1621 - 1695' +p60637 +sg25267 +g27 +sg25275 +S'(author)' +p60638 +sg25268 +S'Contes et nouvelles en vers (volume I)' +p60639 +sg25270 +S'Artist Information (' +p60640 +sa(dp60641 +g25267 +g27 +sg25268 +S'American Pewter Kerfoot' +p60642 +sg25270 +S'Henry Meyers' +p60643 +sa(dp60644 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60645 +sg25270 +S'Charles Cullen' +p60646 +sa(dp60647 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60648 +sg25270 +S'Eugene Barrell' +p60649 +sa(dp60650 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60651 +sg25270 +S'Louis Annino' +p60652 +sa(dp60653 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60654 +sg25270 +S'Charles Cullen' +p60655 +sa(dp60656 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60657 +sg25270 +S'Charles Cullen' +p60658 +sa(dp60659 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60660 +sg25270 +S'Charles Cullen' +p60661 +sa(dp60662 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60663 +sg25270 +S'Charles Cullen' +p60664 +sa(dp60665 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60666 +sg25270 +S'Charles Cullen' +p60667 +sa(dp60668 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60669 +sg25270 +S'A. Zaidenberg' +p60670 +sa(dp60671 +g25273 +S'French, 1621 - 1695' +p60672 +sg25267 +g27 +sg25275 +S'(author)' +p60673 +sg25268 +S'Contes et nouvelles en vers (volume II)' +p60674 +sg25270 +S'Artist Information (' +p60675 +sa(dp60676 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60677 +sg25270 +S'Louis Annino' +p60678 +sa(dp60679 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60680 +sg25270 +S'Charles Cullen' +p60681 +sa(dp60682 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60683 +sg25270 +S'Charles Cullen' +p60684 +sa(dp60685 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60686 +sg25270 +S'Charles Cullen' +p60687 +sa(dp60688 +g25267 +g27 +sg25268 +S'Pewter Toy Porringer' +p60689 +sg25270 +S'Fred Peterson' +p60690 +sa(dp60691 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60692 +sg25270 +S'Harry Goodman' +p60693 +sa(dp60694 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60695 +sg25270 +S'Charles Cullen' +p60696 +sa(dp60697 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60698 +sg25270 +S'Fred Peterson' +p60699 +sa(dp60700 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60701 +sg25270 +S'Harry Goodman' +p60702 +sa(dp60703 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60704 +sg25270 +S'Arsen Maralian' +p60705 +sa(dp60706 +g25273 +S'French, 1621 - 1695' +p60707 +sg25267 +g27 +sg25275 +S'(author)' +p60708 +sg25268 +S'Fables choisies (volume I)' +p60709 +sg25270 +S'Artist Information (' +p60710 +sa(dp60711 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60712 +sg25270 +S'Charles Cullen' +p60713 +sa(dp60714 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60715 +sg25270 +S'Charles Cullen' +p60716 +sa(dp60717 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60718 +sg25270 +S'Eugene Barrell' +p60719 +sa(dp60720 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p60721 +sg25270 +S'Charles Cullen' +p60722 +sa(dp60723 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p60724 +sg25270 +S'Beulah Bradleigh' +p60725 +sa(dp60726 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p60727 +sg25270 +S'Charles Cullen' +p60728 +sa(dp60729 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p60730 +sg25270 +S'Robert Brigadier' +p60731 +sa(dp60732 +g25267 +g27 +sg25268 +S'Pewter Tankard' +p60733 +sg25270 +S'Franklin Hart' +p60734 +sa(dp60735 +g25267 +g27 +sg25268 +S'Pewter Tankard' +p60736 +sg25270 +S'Harry Goodman' +p60737 +sa(dp60738 +g25267 +g27 +sg25268 +S'Pewter Tankard' +p60739 +sg25270 +S'John Dixon' +p60740 +sa(dp60741 +g25273 +S'French, 1621 - 1695' +p60742 +sg25267 +g27 +sg25275 +S'(author)' +p60743 +sg25268 +S'Fables choisies (volume II)' +p60744 +sg25270 +S'Artist Information (' +p60745 +sa(dp60746 +g25267 +g27 +sg25268 +S'Pewter Tankard' +p60747 +sg25270 +S'Charles Cullen' +p60748 +sa(dp60749 +g25267 +g27 +sg25268 +S'Pewter Tankard' +p60750 +sg25270 +S'Henry Meyers' +p60751 +sa(dp60752 +g25267 +g27 +sg25268 +S'Pewter Tankard' +p60753 +sg25270 +S'Charles Cullen' +p60754 +sa(dp60755 +g25267 +g27 +sg25268 +S'Pewter Tankard' +p60756 +sg25270 +S'Henry Meyers' +p60757 +sa(dp60758 +g25267 +g27 +sg25268 +S'Pewter Tankard' +p60759 +sg25270 +S'Charles Cullen' +p60760 +sa(dp60761 +g25267 +g27 +sg25268 +S'Pewter Tankard' +p60762 +sg25270 +S'Richard Schoene' +p60763 +sa(dp60764 +g25267 +g27 +sg25268 +S'Pewter Tankard' +p60765 +sg25270 +S'Henry Meyers' +p60766 +sa(dp60767 +g25267 +g27 +sg25268 +S'Pewter Tankard' +p60768 +sg25270 +S'Henry Meyers' +p60769 +sa(dp60770 +g25267 +g27 +sg25268 +S'Pewter Tankard' +p60771 +sg25270 +S'Henry Meyers' +p60772 +sa(dp60773 +g25267 +g27 +sg25268 +S'Pewter Tankard' +p60774 +sg25270 +S'Henry Meyers' +p60775 +sa(dp60776 +g25273 +S'French, 1739 - 1803' +p60777 +sg25267 +g27 +sg25275 +S'(author)' +p60778 +sg25268 +S'Tangu et Felime' +p60779 +sg25270 +S'Artist Information (' +p60780 +sa(dp60781 +g25267 +g27 +sg25268 +S'Pewter Tankard' +p60782 +sg25270 +S'Henry Meyers' +p60783 +sa(dp60784 +g25267 +g27 +sg25268 +S'Pewter Tankard' +p60785 +sg25270 +S'A. Zaidenberg' +p60786 +sa(dp60787 +g25267 +g27 +sg25268 +S'Pewter Tankard' +p60788 +sg25270 +S'Harry Goodman' +p60789 +sa(dp60790 +g25267 +g27 +sg25268 +S'Pewter Tankard' +p60791 +sg25270 +S'Henry Meyers' +p60792 +sa(dp60793 +g25267 +g27 +sg25268 +S'Pewter Tankard' +p60794 +sg25270 +S'Henry Meyers' +p60795 +sa(dp60796 +g25267 +g27 +sg25268 +S'Pewter Spoon Holder' +p60797 +sg25270 +S'Beulah Bradleigh' +p60798 +sa(dp60799 +g25267 +g27 +sg25268 +S'Pewter Foot Warmer' +p60800 +sg25270 +S'Charles Garjian' +p60801 +sa(dp60802 +g25267 +g27 +sg25268 +S'Pewter Ladle' +p60803 +sg25270 +S'Henry Meyers' +p60804 +sa(dp60805 +g25267 +g27 +sg25268 +S'Pewter Salt and Pepper Shakers' +p60806 +sg25270 +S'Beulah Bradleigh' +p60807 +sa(dp60808 +g25267 +g27 +sg25268 +S'Small Pewter Spoon' +p60809 +sg25270 +S'Henry Meyers' +p60810 +sa(dp60811 +g25273 +S'(author)' +p60812 +sg25267 +g27 +sg25275 +S'\n' +p60813 +sg25268 +S'Maximes et reflexions morales du duc de la Rochefoucauld' +p60814 +sg25270 +S'Artist Information (' +p60815 +sa(dp60816 +g25267 +g27 +sg25268 +S'Pewter Spoon' +p60817 +sg25270 +S'Matthew Mangiacotti' +p60818 +sa(dp60819 +g25267 +g27 +sg25268 +S'Pewter Spoon' +p60820 +sg25270 +S'Karl Joubert' +p60821 +sa(dp60822 +g25267 +g27 +sg25268 +S'Pewter Soup Tureen' +p60823 +sg25270 +S"James O'Mara" +p60824 +sa(dp60825 +g25267 +g27 +sg25268 +S'Pewter Spoon' +p60826 +sg25270 +S'Eugene Barrell' +p60827 +sa(dp60828 +g25267 +g27 +sg25268 +S'Pincushion' +p60829 +sg25270 +S'Erwin Schwabe' +p60830 +sa(dp60831 +g25267 +g27 +sg25268 +S'Pincushion' +p60832 +sg25270 +S'Ruth M. Barnes' +p60833 +sa(dp60834 +g25267 +g27 +sg25268 +S'Pincushion' +p60835 +sg25270 +S'Vera Van Voris' +p60836 +sa(dp60837 +g25267 +g27 +sg25268 +S'Pillow Sham Holder' +p60838 +sg25270 +S'Lloyd Charles Lemcke' +p60839 +sa(dp60840 +g25267 +g27 +sg25268 +S"Apothecary's Pill Holder" +p60841 +sg25270 +S'Herman O. Stroh' +p60842 +sa(dp60843 +g25267 +g27 +sg25268 +S'Piggin' +p60844 +sg25270 +S'Max Soltmann' +p60845 +sa(dp60846 +g25273 +S'French, 1741 - 1814' +p60847 +sg25267 +g27 +sg25275 +S'(artist)' +p60848 +sg25268 +S'Les a propos de societe ... (volume I)' +p60849 +sg25270 +S'Artist Information (' +p60850 +sa(dp60851 +g25267 +g27 +sg25268 +S'Piggin' +p60852 +sg25270 +S'Annie B. Johnston' +p60853 +sa(dp60854 +g25267 +g27 +sg25268 +S'Cedar Piggin' +p60855 +sg25270 +S'Annie B. Johnston' +p60856 +sa(dp60857 +g25267 +g27 +sg25268 +S"Lead Prospector's Ore Pick" +p60858 +sg25270 +S'Albert Geuppert' +p60859 +sa(dp60860 +g25267 +g27 +sg25268 +S'Photograph Album' +p60861 +sg25270 +S'Manuel G. Runyan' +p60862 +sa(dp60863 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p60864 +sg25270 +S'John Tarantino' +p60865 +sa(dp60866 +g25267 +g27 +sg25268 +S'Teapot' +p60867 +sg25270 +S"J.J. O'Neill" +p60868 +sa(dp60869 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p60870 +sg25270 +S'John Tarantino' +p60871 +sa(dp60872 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p60873 +sg25270 +S'Charles Cullen' +p60874 +sa(dp60875 +g25267 +g27 +sg25268 +S'Teapot' +p60876 +sg25270 +S'Douglas Cox' +p60877 +sa(dp60878 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p60879 +sg25270 +S'Eugene Croe' +p60880 +sa(dp60881 +g25273 +S'(artist)' +p60882 +sg25267 +g27 +sg25275 +S'\n' +p60883 +sg25268 +S'Les a propos de societe ... (volume II)' +p60884 +sg25270 +S'Artist Information (' +p60885 +sa(dp60886 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p60887 +sg25270 +S'Harry Goodman' +p60888 +sa(dp60889 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p60890 +sg25270 +S'Glenn Wilson' +p60891 +sa(dp60892 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p60893 +sg25270 +S'Harry Goodman' +p60894 +sa(dp60895 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p60896 +sg25270 +S'Harry Goodman' +p60897 +sa(dp60898 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p60899 +sg25270 +S'Arthur G. Merkley' +p60900 +sa(dp60901 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p60902 +sg25270 +S'Karl Joubert' +p60903 +sa(dp60904 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p60905 +sg25270 +S'Arsen Maralian' +p60906 +sa(dp60907 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p60908 +sg25270 +S'Henry Meyers' +p60909 +sa(dp60910 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p60911 +sg25270 +S'Dana Bartlett' +p60912 +sa(dp60913 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p60914 +sg25270 +S'Fred Peterson' +p60915 +sa(dp60916 +g25273 +S'(author)' +p60917 +sg25267 +g27 +sg25275 +S'\n' +p60918 +sg25268 +S'Les a propos de la folie ... (volume III)' +p60919 +sg25270 +S'Artist Information (' +p60920 +sa(dp60921 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p60922 +sg25270 +S'Janet Riza' +p60923 +sa(dp60924 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p60925 +sg25270 +S'Samuel O. Klein' +p60926 +sa(dp60927 +g25267 +g27 +sg25268 +S'Carved Wooden Pitcher' +p60928 +sg25270 +S'William H. Edwards' +p60929 +sa(dp60930 +g25267 +g27 +sg25268 +S'Pitcher' +p60931 +sg25270 +S'Yolande Delasser' +p60932 +sa(dp60933 +g25267 +g27 +sg25268 +S'Plinker and Wood Block' +p60934 +sg25270 +S'Oscar Bluhme' +p60935 +sa(dp60936 +g25267 +g27 +sg25268 +S'Plinker and Wood Block' +p60937 +sg25270 +S'Oscar Bluhme' +p60938 +sa(dp60939 +g25267 +g27 +sg25268 +S'Pin Tray' +p60940 +sg25270 +S'Herman Schulze' +p60941 +sa(dp60942 +g25267 +g27 +sg25268 +S'Pin Tray' +p60943 +sg25270 +S'Helen Hobart' +p60944 +sa(dp60945 +g25267 +g27 +sg25268 +S'Pin Tray' +p60946 +sg25270 +S'Helen Hobart' +p60947 +sa(dp60948 +g25267 +g27 +sg25268 +S'Pin Tray' +p60949 +sg25270 +S'Helen Hobart' +p60950 +sa(dp60951 +g25273 +S'French, 1741 - 1814' +p60952 +sg25267 +g27 +sg25275 +S'(artist)' +p60953 +sg25268 +S'Album of Prints for Laujon\'s "Les a propos de folie..."' +p60954 +sg25270 +S'Artist Information (' +p60955 +sa(dp60956 +g25267 +g27 +sg25268 +S'Pin Tray' +p60957 +sg25270 +S'Helen Hobart' +p60958 +sa(dp60959 +g25267 +g27 +sg25268 +S'Pin Cushion' +p60960 +sg25270 +S'Edith Magnette' +p60961 +sa(dp60962 +g25267 +g27 +sg25268 +S'Pin Cushion' +p60963 +sg25270 +S'R. Jackman' +p60964 +sa(dp60965 +g25267 +g27 +sg25268 +S'Pin Cushion' +p60966 +sg25270 +S'Eva Wilson' +p60967 +sa(dp60968 +g25267 +g27 +sg25268 +S'Pin Cushion' +p60969 +sg25270 +S'Frank Maurer' +p60970 +sa(dp60971 +g25267 +g27 +sg25268 +S'Pin Cushion' +p60972 +sg25270 +S'Edna C. Rex' +p60973 +sa(dp60974 +g25267 +g27 +sg25268 +S'Pin Cushion' +p60975 +sg25270 +S'Ferdinand Badin' +p60976 +sa(dp60977 +g25267 +g27 +sg25268 +S'Pair of Pin Cushions' +p60978 +sg25270 +S'Nicholas Acampora' +p60979 +sa(dp60980 +g25267 +g27 +sg25268 +S'Table Pin Cushion' +p60981 +sg25270 +S'Grace Halpin' +p60982 +sa(dp60983 +g25267 +g27 +sg25268 +S'Pinball and Chain' +p60984 +sg25270 +S'Frederick Jackson' +p60985 +sa(dp60986 +g25273 +S'1 vol: ill: etchings and engravings by Le Prince plus 1 loose print by Guillaume-Philippe Benoist after Perronneau (see 1942.9.1640)' +p60987 +sg25267 +g27 +sg25275 +S'in or after 1770' +p60988 +sg25268 +S'Oeuvres de J.-B. Le Prince ...' +p60989 +sg25270 +S'Jean-Baptiste Le Prince' +p60990 +sa(dp60991 +g25267 +g27 +sg25268 +S'Porringer' +p60992 +sg25270 +S'E.J. Gilsleider' +p60993 +sa(dp60994 +g25267 +g27 +sg25268 +S"Child's Porringer" +p60995 +sg25270 +S'Jacob Gielens' +p60996 +sa(dp60997 +g25267 +g27 +sg25268 +S'Popcorn Popper' +p60998 +sg25270 +S'Oscar Bluhme' +p60999 +sa(dp61000 +g25267 +g27 +sg25268 +S'Plumb Line and Board' +p61001 +sg25270 +S'Walter Praefke' +p61002 +sa(dp61003 +g25267 +g27 +sg25268 +S'Wooden Plow' +p61004 +sg25270 +S'Orville Skaren' +p61005 +sa(dp61006 +g25267 +g27 +sg25268 +S'Wooden Plow' +p61007 +sg25270 +S'Majel G. Claflin' +p61008 +sa(dp61009 +g25267 +g27 +sg25268 +S'Plow and Plowpoint' +p61010 +sg25270 +S'William Hoffman' +p61011 +sa(dp61012 +g25267 +g27 +sg25268 +S'Plow' +p61013 +sg25270 +S'Edith Towner' +p61014 +sa(dp61015 +g25267 +g27 +sg25268 +S'Plow' +p61016 +sg25270 +S'Cornelius Christoffels' +p61017 +sa(dp61018 +g25267 +g27 +sg25268 +S'Rabbet Plane' +p61019 +sg25270 +S'Clarence Secor' +p61020 +sa(dp61021 +g25273 +S'(artist after)' +p61022 +sg25267 +g27 +sg25275 +S'\n' +p61023 +sg25268 +S'Petrus Poissonnier' +p61024 +sg25270 +S'Artist Information (' +p61025 +sa(dp61026 +g25267 +g27 +sg25268 +S'Plane' +p61027 +sg25270 +S'Frances Godfrey' +p61028 +sa(dp61029 +g25267 +g27 +sg25268 +S'Plane for Leveling Wood' +p61030 +sg25270 +S'Lena Nastasi' +p61031 +sa(dp61032 +g25267 +g27 +sg25268 +S"Carpenter's Small Plane" +p61033 +sg25270 +S'Frank Gray' +p61034 +sa(dp61035 +g25267 +g27 +sg25268 +S'Plane' +p61036 +sg25270 +S'Mary Hansen' +p61037 +sa(dp61038 +g25267 +g27 +sg25268 +S'Rabbet Plane' +p61039 +sg25270 +S'Samuel Faigin' +p61040 +sa(dp61041 +g25267 +g27 +sg25268 +S'Plane' +p61042 +sg25270 +S'Lloyd Charles Lemcke' +p61043 +sa(dp61044 +g25267 +g27 +sg25268 +S'Plane' +p61045 +sg25270 +S'Oscar Bluhme' +p61046 +sa(dp61047 +g25267 +g27 +sg25268 +S'Rabbet Plane' +p61048 +sg25270 +S'Lloyd Charles Lemcke' +p61049 +sa(dp61050 +g25267 +g27 +sg25268 +S'Smoothing Plane' +p61051 +sg25270 +S'Herman O. Stroh' +p61052 +sa(dp61053 +g25267 +g27 +sg25268 +S'Cooper Plane' +p61054 +sg25270 +S'Edward Unger' +p61055 +sa(dp61056 +g25273 +S'(author)' +p61057 +sg25267 +g27 +sg25275 +S'\n' +p61058 +sg25268 +S'Journal de Henri III (volume I)' +p61059 +sg25270 +S'Artist Information (' +p61060 +sa(dp61061 +g25267 +g27 +sg25268 +S'Plane' +p61062 +sg25270 +S'Albert Geuppert' +p61063 +sa(dp61064 +g25267 +g27 +sg25268 +S'Groove Plane' +p61065 +sg25270 +S'Samuel Faigin' +p61066 +sa(dp61067 +g25267 +g27 +sg25268 +S'Thread Cutting Plane' +p61068 +sg25270 +S'Clarence Secor' +p61069 +sa(dp61070 +g25267 +g27 +sg25268 +S'Plane' +p61071 +sg25270 +S'Sydney Roberts' +p61072 +sa(dp61073 +g25267 +g27 +sg25268 +S'Bead Plane' +p61074 +sg25270 +S'Max Unger' +p61075 +sa(dp61076 +g25267 +g27 +sg25268 +S'Plane' +p61077 +sg25270 +S'Max Unger' +p61078 +sa(dp61079 +g25267 +g27 +sg25268 +S'Rabbet Plane' +p61080 +sg25270 +S'Lloyd Charles Lemcke' +p61081 +sa(dp61082 +g25267 +g27 +sg25268 +S"Ivory Carpenter's Plane" +p61083 +sg25270 +S'James M. Lawson' +p61084 +sa(dp61085 +g25267 +g27 +sg25268 +S'Shoulder Plane' +p61086 +sg25270 +S'Natalie Simon' +p61087 +sa(dp61088 +g25267 +g27 +sg25268 +S'Hollow Plane' +p61089 +sg25270 +S'Samuel Faigin' +p61090 +sa(dp61091 +g25268 +S'View on the Cannaregio Canal, Venice' +p61092 +sg25270 +S'Francesco Guardi' +p61093 +sg25273 +S'oil on canvas' +p61094 +sg25275 +S'c. 1775-1780' +p61095 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000060b.jpg' +p61096 +sg25267 +g27 +sa(dp61097 +g25273 +S'French, 1756 - 1844' +p61098 +sg25267 +g27 +sg25275 +S'(artist)' +p61099 +sg25268 +S'Journal de Henri III (volume II)' +p61100 +sg25270 +S'Artist Information (' +p61101 +sa(dp61102 +g25267 +g27 +sg25268 +S'Powder Flask' +p61103 +sg25270 +S'Archie Thompson' +p61104 +sa(dp61105 +g25267 +g27 +sg25268 +S'Powder Flask' +p61106 +sg25270 +S'Stanley Mazur' +p61107 +sa(dp61108 +g25267 +g27 +sg25268 +S'Powder Flask' +p61109 +sg25270 +S'Walter G. Capuozzo' +p61110 +sa(dp61111 +g25267 +g27 +sg25268 +S'Powder Horn' +p61112 +sg25270 +S'Vincent Murphy' +p61113 +sa(dp61114 +g25267 +g27 +sg25268 +S'Powder Flask' +p61115 +sg25270 +S'A.R. Tolman' +p61116 +sa(dp61117 +g25267 +g27 +sg25268 +S'Powder Flask' +p61118 +sg25270 +S'Frank C. Barks' +p61119 +sa(dp61120 +g25267 +g27 +sg25268 +S'Powder Flask' +p61121 +sg25270 +S'Randolph F. Miller' +p61122 +sa(dp61123 +g25267 +g27 +sg25268 +S'Powder Flask' +p61124 +sg25270 +S'Adolph Opstad' +p61125 +sa(dp61126 +g25267 +g27 +sg25268 +S'Powder Flask' +p61127 +sg25270 +S'Cornelius Christoffels' +p61128 +sa(dp61129 +g25267 +g27 +sg25268 +S'Powder Flask' +p61130 +sg25270 +S'Kurt Melzer' +p61131 +sa(dp61132 +g25273 +S'French, 1546 - 1611' +p61133 +sg25267 +g27 +sg25275 +S'(author)' +p61134 +sg25268 +S'Journal de Henri III (volume III)' +p61135 +sg25270 +S'Artist Information (' +p61136 +sa(dp61137 +g25267 +g27 +sg25268 +S'Powder Flask' +p61138 +sg25270 +S'Randolph F. Miller' +p61139 +sa(dp61140 +g25267 +g27 +sg25268 +S'Powder Flask' +p61141 +sg25270 +S'Annie B. Johnston' +p61142 +sa(dp61143 +g25267 +g27 +sg25268 +S'Powder Flask' +p61144 +sg25270 +S'Michael Dadante' +p61145 +sa(dp61146 +g25267 +g27 +sg25268 +S'Bronze Powder Flask' +p61147 +sg25270 +S'George V. Vezolles' +p61148 +sa(dp61149 +g25267 +g27 +sg25268 +S'Powder Flask' +p61150 +sg25270 +S'Robert Clark' +p61151 +sa(dp61152 +g25267 +g27 +sg25268 +S'Pewter Powder Flask' +p61153 +sg25270 +S'George V. Vezolles' +p61154 +sa(dp61155 +g25267 +g27 +sg25268 +S'Powder Flask' +p61156 +sg25270 +S'Robert W.R. Taylor' +p61157 +sa(dp61158 +g25267 +g27 +sg25268 +S'Powder Flask' +p61159 +sg25270 +S'Claude Marshall' +p61160 +sa(dp61161 +g25267 +g27 +sg25268 +S'Powder Flask' +p61162 +sg25270 +S'Aaron Fastovsky' +p61163 +sa(dp61164 +g25267 +g27 +sg25268 +S'Powder Flask' +p61165 +sg25270 +S'Robert W.R. Taylor' +p61166 +sa(dp61167 +g25273 +S', published 1744' +p61168 +sg25267 +g27 +sg25275 +S'\n' +p61169 +sg25268 +S'Journal de Henri III (volume IV)' +p61170 +sg25270 +S"Pierre de L'Estoile" +p61171 +sa(dp61172 +g25267 +g27 +sg25268 +S'Gunpowder Flask' +p61173 +sg25270 +S'Christabel Scrymser' +p61174 +sa(dp61175 +g25267 +g27 +sg25268 +S'Powder Flask' +p61176 +sg25270 +S'American 20th Century' +p61177 +sa(dp61178 +g25267 +g27 +sg25268 +S'Powder Flask' +p61179 +sg25270 +S'Alf Bruseth' +p61180 +sa(dp61181 +g25267 +g27 +sg25268 +S'Powder Horn' +p61182 +sg25270 +S'Alfred Walbeck' +p61183 +sa(dp61184 +g25267 +g27 +sg25268 +S'Powder Horn' +p61185 +sg25270 +S'Samuel O. Klein' +p61186 +sa(dp61187 +g25267 +g27 +sg25268 +S'Powder Horn' +p61188 +sg25270 +S'Grace Halpin' +p61189 +sa(dp61190 +g25267 +g27 +sg25268 +S'Powder Horn' +p61191 +sg25270 +S'Marius Hansen' +p61192 +sa(dp61193 +g25267 +g27 +sg25268 +S'Powder Horn' +p61194 +sg25270 +S'David P Willoughby' +p61195 +sa(dp61196 +g25267 +g27 +sg25268 +S'Gun Powder Flask' +p61197 +sg25270 +S'Christabel Scrymser' +p61198 +sa(dp61199 +g25267 +g27 +sg25268 +S'Powder Flask' +p61200 +sg25270 +S'T. Joyce' +p61201 +sa(dp61202 +g25273 +S', published 1744' +p61203 +sg25267 +g27 +sg25275 +S'\n' +p61204 +sg25268 +S'Journal de Henri III (volume V)' +p61205 +sg25270 +S"Pierre de L'Estoile" +p61206 +sa(dp61207 +g25267 +g27 +sg25268 +S'Model Potato Planter' +p61208 +sg25270 +S'Max Fernekes' +p61209 +sa(dp61210 +g25267 +g27 +sg25268 +S'Stamps for Embroidery' +p61211 +sg25270 +S'Charlotte Angus' +p61212 +sa(dp61213 +g25267 +g27 +sg25268 +S'Wood Blocks' +p61214 +sg25270 +S'Albert Levone' +p61215 +sa(dp61216 +g25267 +g27 +sg25268 +S'Calico Printing Blocks' +p61217 +sg25270 +S'Frank Gray' +p61218 +sa(dp61219 +g25267 +g27 +sg25268 +S'Printing Blocks' +p61220 +sg25270 +S'Paul Kelly' +p61221 +sa(dp61222 +g25267 +g27 +sg25268 +S'Resist Pattern (Daisy)' +p61223 +sg25270 +S'Wellington Blewett' +p61224 +sa(dp61225 +g25267 +g27 +sg25268 +S'Calico Printing Block' +p61226 +sg25270 +S'George File' +p61227 +sa(dp61228 +g25267 +g27 +sg25268 +S'Resist Pattern (Scroll)' +p61229 +sg25270 +S'Wellington Blewett' +p61230 +sa(dp61231 +g25267 +g27 +sg25268 +S'Powder Horn' +p61232 +sg25270 +S"J.J. O'Neill" +p61233 +sa(dp61234 +g25267 +g27 +sg25268 +S'Powder Horn' +p61235 +sg25270 +S'Joseph Papa' +p61236 +sa(dp61237 +g25273 +S'French, 1546 - 1611' +p61238 +sg25267 +g27 +sg25275 +S'(author)' +p61239 +sg25268 +S'Journal du regne de Henry IV (volume I)' +p61240 +sg25270 +S'Artist Information (' +p61241 +sa(dp61242 +g25267 +g27 +sg25268 +S'Powder Horn' +p61243 +sg25270 +S'Stanley Mazur' +p61244 +sa(dp61245 +g25267 +g27 +sg25268 +S'Powder Horn' +p61246 +sg25270 +S'William McAuley' +p61247 +sa(dp61248 +g25267 +g27 +sg25268 +S'Powder Horn' +p61249 +sg25270 +S'William McAuley' +p61250 +sa(dp61251 +g25267 +g27 +sg25268 +S'Powder Horn' +p61252 +sg25270 +S'William McAuley' +p61253 +sa(dp61254 +g25267 +g27 +sg25268 +S'Powder Horn' +p61255 +sg25270 +S'Edward L. Loper' +p61256 +sa(dp61257 +g25267 +g27 +sg25268 +S'Powder Horn' +p61258 +sg25270 +S'Margaret Stottlemeyer' +p61259 +sa(dp61260 +g25267 +g27 +sg25268 +S'Powder Horn' +p61261 +sg25270 +S'Edward L. Loper' +p61262 +sa(dp61263 +g25267 +g27 +sg25268 +S'Powder Horn' +p61264 +sg25270 +S'Paul Ward' +p61265 +sa(dp61266 +g25267 +g27 +sg25268 +S'Powder Horn' +p61267 +sg25270 +S'James M. Lawson' +p61268 +sa(dp61269 +g25267 +g27 +sg25268 +S'Powder Horn' +p61270 +sg25270 +S'Annie B. Johnston' +p61271 +sa(dp61272 +g25273 +S', published 1741' +p61273 +sg25267 +g27 +sg25275 +S'\n' +p61274 +sg25268 +S'Journal du regne de Henry IV (volume II)' +p61275 +sg25270 +S"Pierre de L'Estoile" +p61276 +sa(dp61277 +g25267 +g27 +sg25268 +S'Powder Horn' +p61278 +sg25270 +S'Cora Parker' +p61279 +sa(dp61280 +g25267 +g27 +sg25268 +S'Powder Horn' +p61281 +sg25270 +S'Samuel Fineman' +p61282 +sa(dp61283 +g25267 +g27 +sg25268 +S'Powder Horn' +p61284 +sg25270 +S'Annie B. Johnston' +p61285 +sa(dp61286 +g25267 +g27 +sg25268 +S'Powder Horn' +p61287 +sg25270 +S'Annie B. Johnston' +p61288 +sa(dp61289 +g25267 +g27 +sg25268 +S'Powder Horn' +p61290 +sg25270 +S'Annie B. Johnston' +p61291 +sa(dp61292 +g25267 +g27 +sg25268 +S'Powder Horn' +p61293 +sg25270 +S'John Koehl' +p61294 +sa(dp61295 +g25267 +g27 +sg25268 +S'Powder Horn' +p61296 +sg25270 +S'Edith Towner' +p61297 +sa(dp61298 +g25267 +g27 +sg25268 +S'Powder Horn' +p61299 +sg25270 +S'Edith Towner' +p61300 +sa(dp61301 +g25267 +g27 +sg25268 +S'Powder Horn' +p61302 +sg25270 +S'Edith Towner' +p61303 +sa(dp61304 +g25267 +g27 +sg25268 +S'Powder Horn' +p61305 +sg25270 +S'Edith Towner' +p61306 +sa(dp61307 +g25273 +S', published 1741' +p61308 +sg25267 +g27 +sg25275 +S'\n' +p61309 +sg25268 +S'Journal du regne de Henry IV (volume III)' +p61310 +sg25270 +S"Pierre de L'Estoile" +p61311 +sa(dp61312 +g25267 +g27 +sg25268 +S'Powder Horn' +p61313 +sg25270 +S'Edith Towner' +p61314 +sa(dp61315 +g25267 +g27 +sg25268 +S'Rolling Pin' +p61316 +sg25270 +S'Edward L. Loper' +p61317 +sa(dp61318 +g25267 +g27 +sg25268 +S'Rolling Pin' +p61319 +sg25270 +S'Amelia Tuccio' +p61320 +sa(dp61321 +g25267 +g27 +sg25268 +S'Trivet' +p61322 +sg25270 +S'Roy Weber' +p61323 +sa(dp61324 +g25267 +g27 +sg25268 +S'Roach Trap' +p61325 +sg25270 +S'Yolande Delasser' +p61326 +sa(dp61327 +g25267 +g27 +sg25268 +S'Receptacle for Peanut Oil' +p61328 +sg25270 +S'Vera Van Voris' +p61329 +sa(dp61330 +g25267 +g27 +sg25268 +S'Pump Stock Reamer' +p61331 +sg25270 +S'Oscar Bluhme' +p61332 +sa(dp61333 +g25267 +g27 +sg25268 +S"Watchman's Rattle" +p61334 +sg25270 +S'Leonard Battee' +p61335 +sa(dp61336 +g25267 +g27 +sg25268 +S"Watchman's Rattle" +p61337 +sg25270 +S'E.J. Gilsleider' +p61338 +sa(dp61339 +g25267 +g27 +sg25268 +S"Watchman's Rattle" +p61340 +sg25270 +S'E.J. Gilsleider' +p61341 +sa(dp61342 +g25273 +S', published 1741' +p61343 +sg25267 +g27 +sg25275 +S'\n' +p61344 +sg25268 +S'Journal du regne de Henry IV (volume IV)' +p61345 +sg25270 +S"Pierre de L'Estoile" +p61346 +sa(dp61347 +g25267 +g27 +sg25268 +S'Police Rattle' +p61348 +sg25270 +S'Carl Buergerniss' +p61349 +sa(dp61350 +g25267 +g27 +sg25268 +S"Watchman's Rattle" +p61351 +sg25270 +S'Marius Hansen' +p61352 +sa(dp61353 +g25267 +g27 +sg25268 +S'Ecclesiastical Rattle' +p61354 +sg25270 +S'R.J. De Freitas' +p61355 +sa(dp61356 +g25267 +g27 +sg25268 +S"Watchman's Rattle" +p61357 +sg25270 +S'Richard Whitaker' +p61358 +sa(dp61359 +g25267 +g27 +sg25268 +S'Police Rattle' +p61360 +sg25270 +S'Samuel Fineman' +p61361 +sa(dp61362 +g25267 +g27 +sg25268 +S'Rat Trap' +p61363 +sg25270 +S'Henry Waldeck' +p61364 +sa(dp61365 +g25267 +g27 +sg25268 +S'Pump' +p61366 +sg25270 +S'Samuel W. Ford' +p61367 +sa(dp61368 +g25267 +g27 +sg25268 +S'Pump Valve and Sucker' +p61369 +sg25270 +S'Alexander Anderson' +p61370 +sa(dp61371 +g25267 +g27 +sg25268 +S'Textile Stamp' +p61372 +sg25270 +S'Charlotte Angus' +p61373 +sa(dp61374 +g25267 +g27 +sg25268 +S'Letter Seal' +p61375 +sg25270 +S'Edward L. Loper' +p61376 +sa(dp61377 +g25273 +S'Greek, active 3rd century' +p61378 +sg25267 +g27 +sg25275 +S'(author)' +p61379 +sg25268 +S'Les amours pastorales de Daphnis et Chlo\xc3\xa9' +p61380 +sg25270 +S'Artist Information (' +p61381 +sa(dp61382 +g25267 +g27 +sg25268 +S'Pewter Stamp' +p61383 +sg25270 +S'Henry Meyers' +p61384 +sa(dp61385 +g25267 +g27 +sg25268 +S'Pewter Stamp' +p61386 +sg25270 +S'Henry Meyers' +p61387 +sa(dp61388 +g25267 +g27 +sg25268 +S'Bergen Academy Seal' +p61389 +sg25270 +S'Albert Camilli' +p61390 +sa(dp61391 +g25267 +g27 +sg25268 +S'Wooden Seal' +p61392 +sg25270 +S'Laurette Gauthier' +p61393 +sa(dp61394 +g25267 +g27 +sg25268 +S"Printer's Measure" +p61395 +sg25270 +S'Alfred Koehn' +p61396 +sa(dp61397 +g25267 +g27 +sg25268 +S'Printing Press Roller' +p61398 +sg25270 +S'Manuel G. Runyan' +p61399 +sa(dp61400 +g25267 +g27 +sg25268 +S'Press' +p61401 +sg25270 +S'Michael Fallon' +p61402 +sa(dp61403 +g25267 +g27 +sg25268 +S'Press' +p61404 +sg25270 +S'William O. Fletcher' +p61405 +sa(dp61406 +g25267 +g27 +sg25268 +S'Saw' +p61407 +sg25270 +S'Frank Budash' +p61408 +sa(dp61409 +g25267 +g27 +sg25268 +S'Sauerkraut Stomper' +p61410 +sg25270 +S'Edward Unger' +p61411 +sa(dp61412 +g25273 +S'Greek, active 3rd century' +p61413 +sg25267 +g27 +sg25275 +S'(author)' +p61414 +sg25268 +S'Les amours pastorales de Daphnis et de Chlo\xc3\xa9' +p61415 +sg25270 +S'Artist Information (' +p61416 +sa(dp61417 +g25267 +g27 +sg25268 +S'Iron Pot with Cover' +p61418 +sg25270 +S'Artist Information (' +p61419 +sa(dp61420 +g25267 +g27 +sg25268 +S'Skillet' +p61421 +sg25270 +S'William Frank' +p61422 +sa(dp61423 +g25267 +g27 +sg25268 +S'Onion Kettle' +p61424 +sg25270 +S'Harry Jennings' +p61425 +sa(dp61426 +g25267 +g27 +sg25268 +S'Skillet' +p61427 +sg25270 +S'Rollington Campbell' +p61428 +sa(dp61429 +g25267 +g27 +sg25268 +S'Sauce Pan' +p61430 +sg25270 +S'Roy Weber' +p61431 +sa(dp61432 +g25267 +g27 +sg25268 +S'Skillet' +p61433 +sg25270 +S'John H. Tercuzzi' +p61434 +sa(dp61435 +g25267 +g27 +sg25268 +S'Pot with Legs' +p61436 +sg25270 +S'Artist Information (' +p61437 +sa(dp61438 +g25267 +g27 +sg25268 +S'Sand Shaker' +p61439 +sg25270 +S'Renee A. Monfalcone' +p61440 +sa(dp61441 +g25267 +g27 +sg25268 +S'Ink Sander' +p61442 +sg25270 +S'Frank Gray' +p61443 +sa(dp61444 +g25267 +g27 +sg25268 +S'Sander' +p61445 +sg25270 +S'Aaron Fastovsky' +p61446 +sa(dp61447 +g25268 +S'A Gentleman in Adoration before the Madonna' +p61448 +sg25270 +S'Giovanni Battista Moroni' +p61449 +sg25273 +S'oil on canvas' +p61450 +sg25275 +S'c. 1560' +p61451 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000817.jpg' +p61452 +sg25267 +g27 +sa(dp61453 +g25273 +S'Greek, active 3rd century' +p61454 +sg25267 +g27 +sg25275 +S'(author)' +p61455 +sg25268 +S'Longi Pastoralium de Daphnide et Chloe (volume I)' +p61456 +sg25270 +S'Artist Information (' +p61457 +sa(dp61458 +g25267 +g27 +sg25268 +S'Sand Shaker' +p61459 +sg25270 +S'M. Louise Kent' +p61460 +sa(dp61461 +g25267 +g27 +sg25268 +S'Sand Shaker' +p61462 +sg25270 +S'M. Louise Kent' +p61463 +sa(dp61464 +g25267 +g27 +sg25268 +S'Sand Shaker' +p61465 +sg25270 +S'Jessie M. Youngs' +p61466 +sa(dp61467 +g25267 +g27 +sg25268 +S'Sand Box and Seal' +p61468 +sg25270 +S'Claude Marshall' +p61469 +sa(dp61470 +g25267 +g27 +sg25268 +S'Sand Blotter' +p61471 +sg25270 +S'Milton Bevier' +p61472 +sa(dp61473 +g25267 +g27 +sg25268 +S'Letter Sander' +p61474 +sg25270 +S'Cora Parker' +p61475 +sa(dp61476 +g25267 +g27 +sg25268 +S'Top of Letter Sander' +p61477 +sg25270 +S'Cora Parker' +p61478 +sa(dp61479 +g25267 +g27 +sg25268 +S'Sand Sifter' +p61480 +sg25270 +S'Edward L. Loper' +p61481 +sa(dp61482 +g25267 +g27 +sg25268 +S'Pewter Salt Shaker' +p61483 +sg25270 +S'Orrie McCombs' +p61484 +sa(dp61485 +g25267 +g27 +sg25268 +S'Salt Shaker' +p61486 +sg25270 +S'Henry Meyers' +p61487 +sa(dp61488 +g25273 +S', published 1778' +p61489 +sg25267 +g27 +sg25275 +S'\n' +p61490 +sg25268 +S'Longi Pastoralium de Daphnide et Chloe (volume II)' +p61491 +sg25270 +S'Longus' +p61492 +sa(dp61493 +g25267 +g27 +sg25268 +S'Salt Shaker' +p61494 +sg25270 +S'Henry Meyers' +p61495 +sa(dp61496 +g25267 +g27 +sg25268 +S'Salt Shaker' +p61497 +sg25270 +S'Henry Meyers' +p61498 +sa(dp61499 +g25267 +g27 +sg25268 +S'Safe' +p61500 +sg25270 +S'Joseph L. Boyd' +p61501 +sa(dp61502 +g25267 +g27 +sg25268 +S"Physicians's Saddle Bag" +p61503 +sg25270 +S'Ray Price' +p61504 +sa(dp61505 +g25267 +g27 +sg25268 +S'Glass Rolling Pin' +p61506 +sg25270 +S'Amos C. Brinton' +p61507 +sa(dp61508 +g25267 +g27 +sg25268 +S'Dough Rolling Pin' +p61509 +sg25270 +S'Manuel G. Runyan' +p61510 +sa(dp61511 +g25267 +g27 +sg25268 +S'Roasing Oven' +p61512 +sg25270 +S'Samuel Fineman' +p61513 +sa(dp61514 +g25267 +g27 +sg25268 +S'Rolling PIn' +p61515 +sg25270 +S'Augustine Haugland' +p61516 +sa(dp61517 +g25267 +g27 +sg25268 +S'Wooden Scoop' +p61518 +sg25270 +S'Eugene Bartz' +p61519 +sa(dp61520 +g25267 +g27 +sg25268 +S'Scouring Box' +p61521 +sg25270 +S'M. Rosenshield-von-Paulin' +p61522 +sa(dp61523 +g25273 +S'French, 1760 - 1797' +p61524 +sg25267 +g27 +sg25275 +S'(author)' +p61525 +sg25268 +S'Les amours du chevalier de Faublas (volume I)' +p61526 +sg25270 +S'Artist Information (' +p61527 +sa(dp61528 +g25267 +g27 +sg25268 +S'Wooden Meal Scoop' +p61529 +sg25270 +S'Gene Luedke' +p61530 +sa(dp61531 +g25267 +g27 +sg25268 +S'Grain Scoop' +p61532 +sg25270 +S'Mary Hansen' +p61533 +sa(dp61534 +g25267 +g27 +sg25268 +S'Grain Scoop' +p61535 +sg25270 +S'LeRoy Griffith' +p61536 +sa(dp61537 +g25267 +g27 +sg25268 +S'Scoop' +p61538 +sg25270 +S'Michael Dadante' +p61539 +sa(dp61540 +g25267 +g27 +sg25268 +S'Boudoir Set' +p61541 +sg25270 +S'Hugh Clarke' +p61542 +sa(dp61543 +g25267 +g27 +sg25268 +S'Scissors' +p61544 +sg25270 +S'Roberta Elvis' +p61545 +sa(dp61546 +g25267 +g27 +sg25268 +S'Scissors' +p61547 +sg25270 +S'Walter Praefke' +p61548 +sa(dp61549 +g25267 +g27 +sg25268 +S'Scissors' +p61550 +sg25270 +S'Wellington Blewett' +p61551 +sa(dp61552 +g25267 +g27 +sg25268 +S'Scales' +p61553 +sg25270 +S'Peter Connin' +p61554 +sa(dp61555 +g25267 +g27 +sg25268 +S'Weighing Scale' +p61556 +sg25270 +S'Richard Taylor' +p61557 +sa(dp61558 +g25273 +S'French, 1760 - 1797' +p61559 +sg25267 +g27 +sg25275 +S'(author)' +p61560 +sg25268 +S'Les amours du chevalier de Faublas (volume II)' +p61561 +sg25270 +S'Artist Information (' +p61562 +sa(dp61563 +g25267 +g27 +sg25268 +S'Scales' +p61564 +sg25270 +S'Harry Grossen' +p61565 +sa(dp61566 +g25267 +g27 +sg25268 +S'Steel Yard' +p61567 +sg25270 +S'Frank M. Keane' +p61568 +sa(dp61569 +g25267 +g27 +sg25268 +S'Iron Scales' +p61570 +sg25270 +S'Samuel Fineman' +p61571 +sa(dp61572 +g25267 +g27 +sg25268 +S'Scale' +p61573 +sg25270 +S'Max Unger' +p61574 +sa(dp61575 +g25267 +g27 +sg25268 +S'Scales for Weighing Gold' +p61576 +sg25270 +S'Robert W.R. Taylor' +p61577 +sa(dp61578 +g25267 +g27 +sg25268 +S'Scales' +p61579 +sg25270 +S'Broda' +p61580 +sa(dp61581 +g25267 +g27 +sg25268 +S'Buck Saw' +p61582 +sg25270 +S'Lloyd Charles Lemcke' +p61583 +sa(dp61584 +g25267 +g27 +sg25268 +S'Handmade Saw' +p61585 +sg25270 +S'Evelyn Bailey' +p61586 +sa(dp61587 +g25267 +g27 +sg25268 +S'Whipsaw' +p61588 +sg25270 +S'William Hoffman' +p61589 +sa(dp61590 +g25267 +g27 +sg25268 +S'Saw' +p61591 +sg25270 +S'Edward Unger' +p61592 +sa(dp61593 +g25273 +S'French, 1760 - 1797' +p61594 +sg25267 +g27 +sg25275 +S'(author)' +p61595 +sg25268 +S'Les amours du chevalier de Faublas (volume III)' +p61596 +sg25270 +S'Artist Information (' +p61597 +sa(dp61598 +g25267 +g27 +sg25268 +S'Bucksaw' +p61599 +sg25270 +S'Henry Waldeck' +p61600 +sa(dp61601 +g25267 +g27 +sg25268 +S'Saw' +p61602 +sg25270 +S'Charles Charon' +p61603 +sa(dp61604 +g25267 +g27 +sg25268 +S'Coopersmith Saw' +p61605 +sg25270 +S'Lloyd Charles Lemcke' +p61606 +sa(dp61607 +g25267 +g27 +sg25268 +S'Hack Saw' +p61608 +sg25270 +S'Paul Poffinbarger' +p61609 +sa(dp61610 +g25267 +g27 +sg25268 +S'Sausage Stuffer' +p61611 +sg25270 +S'J. Howard Iams' +p61612 +sa(dp61613 +g25267 +g27 +sg25268 +S'Bologna Stuffer' +p61614 +sg25270 +S'Richard Taylor' +p61615 +sa(dp61616 +g25267 +g27 +sg25268 +S'Sausage Stuffer' +p61617 +sg25270 +S'Samuel Fineman' +p61618 +sa(dp61619 +g25267 +g27 +sg25268 +S'Sausage Stuffer' +p61620 +sg25270 +S'Raymond Manupelli' +p61621 +sa(dp61622 +g25267 +g27 +sg25268 +S'Shaker Visionary Image' +p61623 +sg25270 +S'American 20th Century' +p61624 +sa(dp61625 +g25267 +g27 +sg25268 +S'Shaker Visionary Image' +p61626 +sg25270 +S'American 20th Century' +p61627 +sa(dp61628 +g25273 +S'French, 1760 - 1797' +p61629 +sg25267 +g27 +sg25275 +S'(author)' +p61630 +sg25268 +S'Les amours du chevalier de Faublas (volume IV)' +p61631 +sg25270 +S'Artist Information (' +p61632 +sa(dp61633 +g25267 +g27 +sg25268 +S'Shaker Visionary Image' +p61634 +sg25270 +S'American 20th Century' +p61635 +sa(dp61636 +g25267 +g27 +sg25268 +S'Shaker Visionary Image' +p61637 +sg25270 +S'American 20th Century' +p61638 +sa(dp61639 +g25267 +g27 +sg25268 +S'Hummingbird Holder' +p61640 +sg25270 +S'Christabel Scrymser' +p61641 +sa(dp61642 +g25267 +g27 +sg25268 +S'Sewing Holder' +p61643 +sg25270 +S'Ernest A. Towers, Jr.' +p61644 +sa(dp61645 +g25267 +g27 +sg25268 +S'Sewing Bird' +p61646 +sg25270 +S'Archie Thompson' +p61647 +sa(dp61648 +g25267 +g27 +sg25268 +S'Sewing Bird' +p61649 +sg25270 +S'William Spiecker' +p61650 +sa(dp61651 +g25267 +g27 +sg25268 +S'Sewing Bird' +p61652 +sg25270 +S'Frank McEntee' +p61653 +sa(dp61654 +g25267 +g27 +sg25268 +S'Sewing Bird' +p61655 +sg25270 +S'Robert Clark' +p61656 +sa(dp61657 +g25267 +g27 +sg25268 +S'Sewing Bird' +p61658 +sg25270 +S'Frances Lichten' +p61659 +sa(dp61660 +g25267 +g27 +sg25268 +S'Sewing Bird' +p61661 +sg25270 +S'Edward A. Darby' +p61662 +sa(dp61663 +g25273 +S'Italian, c. 99 - 55 B.C.' +p61664 +sg25267 +g27 +sg25275 +S'(author)' +p61665 +sg25268 +S'Di Tito Lucrezio Caro (volume I)' +p61666 +sg25270 +S'Artist Information (' +p61667 +sa(dp61668 +g25267 +g27 +sg25268 +S'Sewing Bird' +p61669 +sg25270 +S'Frank McEntee' +p61670 +sa(dp61671 +g25267 +g27 +sg25268 +S'Sewing Bird' +p61672 +sg25270 +S'Charlotte Winter' +p61673 +sa(dp61674 +g25267 +g27 +sg25268 +S'Scrimshaw' +p61675 +sg25270 +S'Oscar Bluhme' +p61676 +sa(dp61677 +g25267 +g27 +sg25268 +S'Horn' +p61678 +sg25270 +S'Carl Strehlau' +p61679 +sa(dp61680 +g25267 +g27 +sg25268 +S'Horn Cup' +p61681 +sg25270 +S'Florian Rokita' +p61682 +sa(dp61683 +g25267 +g27 +sg25268 +S'Scrimshaw' +p61684 +sg25270 +S'Edith Miller' +p61685 +sa(dp61686 +g25267 +g27 +sg25268 +S'Scrimshaw' +p61687 +sg25270 +S'Paul Ward' +p61688 +sa(dp61689 +g25267 +g27 +sg25268 +S'Cup of Horn' +p61690 +sg25270 +S'Cornelius Christoffels' +p61691 +sa(dp61692 +g25267 +g27 +sg25268 +S'Scrimshaw' +p61693 +sg25270 +S'Paul Ward' +p61694 +sa(dp61695 +g25267 +g27 +sg25268 +S'Scrimshaw' +p61696 +sg25270 +S'Paul Ward' +p61697 +sa(dp61698 +g25273 +S'Italian, c. 99 - 55 B.C.' +p61699 +sg25267 +g27 +sg25275 +S'(author)' +p61700 +sg25268 +S'Di Tito Lucrezio Caro (volume II)' +p61701 +sg25270 +S'Artist Information (' +p61702 +sa(dp61703 +g25267 +g27 +sg25268 +S"Whale's Tooth" +p61704 +sg25270 +S'Carl Strehlau' +p61705 +sa(dp61706 +g25267 +g27 +sg25268 +S"Whale's Tooth" +p61707 +sg25270 +S'Carl Strehlau' +p61708 +sa(dp61709 +g25267 +g27 +sg25268 +S"Lead Miner's Screen" +p61710 +sg25270 +S'Frank Volem' +p61711 +sa(dp61712 +g25267 +g27 +sg25268 +S'Turpentine Scraper' +p61713 +sg25270 +S'Fred Hassebrock' +p61714 +sa(dp61715 +g25267 +g27 +sg25268 +S'Oven Scraper' +p61716 +sg25270 +S'Maurice Van Felix' +p61717 +sa(dp61718 +g25267 +g27 +sg25268 +S'Oven Scraper' +p61719 +sg25270 +S'Jacob Lipkin' +p61720 +sa(dp61721 +g25267 +g27 +sg25268 +S'Wash Board' +p61722 +sg25270 +S'Mary Hansen' +p61723 +sa(dp61724 +g25267 +g27 +sg25268 +S'Scouring Board' +p61725 +sg25270 +S'Max Fernekes' +p61726 +sa(dp61727 +g25267 +g27 +sg25268 +S'Grain Shovel' +p61728 +sg25270 +S'Mary Hansen' +p61729 +sa(dp61730 +g25267 +g27 +sg25268 +S'Scouring Board' +p61731 +sg25270 +S'M. Rosenshield-von-Paulin' +p61732 +sa(dp61733 +g25273 +S', published 1796' +p61734 +sg25267 +g27 +sg25275 +S'\n' +p61735 +sg25268 +S'Oeuvres choisies de Malherbe' +p61736 +sg25270 +S'Francois de Malherbe' +p61737 +sa(dp61738 +g25267 +g27 +sg25268 +S'Grain Scoop' +p61739 +sg25270 +S'LeRoy Griffith' +p61740 +sa(dp61741 +g25267 +g27 +sg25268 +S'Shaker Medicine Chest' +p61742 +sg25270 +S'William Paul Childers' +p61743 +sa(dp61744 +g25267 +g27 +sg25268 +S'Shaker Room Cupboard' +p61745 +sg25270 +S'George V. Vezolles' +p61746 +sa(dp61747 +g25267 +g27 +sg25268 +S'Grain Scoop' +p61748 +sg25270 +S'Isidore Danziger' +p61749 +sa(dp61750 +g25267 +g27 +sg25268 +S'Shaker Visionary Image' +p61751 +sg25270 +S'American 20th Century' +p61752 +sa(dp61753 +g25267 +S'To make work more efficient, Shakers adapted many common items to specific\n purposes. This bean sieve was made by adding holes to the bottom of a basic basket\n design. The careful workmanship and perfect symmetry of the weave suggest the high\n standard of quality required of even the simplest articles.\n ' +p61754 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000037d.jpg' +p61755 +sg25268 +S'Shaker Basket' +p61756 +sg25270 +S'Alfred H. Smith' +p61757 +sa(dp61758 +g25267 +g27 +sg25268 +S'Sewing Machine' +p61759 +sg25270 +S'Paul Poffinbarger' +p61760 +sa(dp61761 +g25267 +g27 +sg25268 +S'Sewing Machine' +p61762 +sg25270 +S'Clyde L. Cheney' +p61763 +sa(dp61764 +g25267 +g27 +sg25268 +S'Sewing Machine' +p61765 +sg25270 +S'John H. Tercuzzi' +p61766 +sa(dp61767 +g25267 +g27 +sg25268 +S'Sewing Machine' +p61768 +sg25270 +S'Harold Oldfield' +p61769 +sa(dp61770 +g25273 +S'etching and engraving' +p61771 +sg25267 +g27 +sg25275 +S'1814' +p61772 +sg25268 +S'Francois de Malherbe' +p61773 +sg25270 +S'Simon Jacques Rochard' +p61774 +sa(dp61775 +g25267 +g27 +sg25268 +S'Pincushion' +p61776 +sg25270 +S'M. Louise Kent' +p61777 +sa(dp61778 +g25267 +g27 +sg25268 +S'Sewing Container' +p61779 +sg25270 +S'Margaret Stottlemeyer' +p61780 +sa(dp61781 +g25267 +g27 +sg25268 +S'Needle Case' +p61782 +sg25270 +S'Samuel O. Klein' +p61783 +sa(dp61784 +g25267 +g27 +sg25268 +S'Sewing Kit and Spool Box' +p61785 +sg25270 +S'Edward L. Loper' +p61786 +sa(dp61787 +g25267 +g27 +sg25268 +S'Sewing Box' +p61788 +sg25270 +S'George H. Alexander' +p61789 +sa(dp61790 +g25267 +g27 +sg25268 +S"Sailor's Sewing Kit" +p61791 +sg25270 +S'Samuel Faigin' +p61792 +sa(dp61793 +g25267 +g27 +sg25268 +S'Sewing Basket' +p61794 +sg25270 +S'Regina Henderer' +p61795 +sa(dp61796 +g25267 +g27 +sg25268 +S'Sewing Cabinet' +p61797 +sg25270 +S'Robert A. Young' +p61798 +sa(dp61799 +g25267 +g27 +sg25268 +S'Sewing Box' +p61800 +sg25270 +S'Columbus Simpson' +p61801 +sa(dp61802 +g25267 +g27 +sg25268 +S'Birch Bark Sewing Basket' +p61803 +sg25270 +S'John Cooke' +p61804 +sa(dp61805 +g25268 +S'Madonna and Child with Angels' +p61806 +sg25270 +S'Ferrarese 15th Century' +p61807 +sg25273 +S'overall: 53.5 x 36.2 cm (21 1/16 x 14 1/4 in.)\r\nframed: 68.6 x 51.4 x 7 cm (27 x 20 1/4 x 2 3/4 in.)' +p61808 +sg25275 +S'\ntempera on panel' +p61809 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000855.jpg' +p61810 +sg25267 +g27 +sa(dp61811 +g25273 +S'(artist)' +p61812 +sg25267 +g27 +sg25275 +S'\n' +p61813 +sg25268 +S'Les nouvelles ... (volume I)' +p61814 +sg25270 +S'Artist Information (' +p61815 +sa(dp61816 +g25267 +g27 +sg25268 +S'Inlaid Sewing Box' +p61817 +sg25270 +S'Francis Law Durand' +p61818 +sa(dp61819 +g25267 +g27 +sg25268 +S'Sewing Box' +p61820 +sg25270 +S'Columbus Simpson' +p61821 +sa(dp61822 +g25267 +g27 +sg25268 +S'Sewing Box' +p61823 +sg25270 +S'Herbert Marsh' +p61824 +sa(dp61825 +g25267 +g27 +sg25268 +S'Sewing Cabinet' +p61826 +sg25270 +S'Paul Ward' +p61827 +sa(dp61828 +g25267 +g27 +sg25268 +S'Sewing Stand' +p61829 +sg25270 +S'Mary C. Davidson' +p61830 +sa(dp61831 +g25267 +g27 +sg25268 +S'Sewing Stand' +p61832 +sg25270 +S'James Vail' +p61833 +sa(dp61834 +g25267 +g27 +sg25268 +S'Twin Sewing Bird' +p61835 +sg25270 +S'Oscar Bluhme' +p61836 +sa(dp61837 +g25267 +g27 +sg25268 +S'Clamp Pincushion' +p61838 +sg25270 +S'Nicholas Amantea' +p61839 +sa(dp61840 +g25267 +g27 +sg25268 +S'Emery in the Shape of a Strawberry' +p61841 +sg25270 +S'Ann Gene Buckley' +p61842 +sa(dp61843 +g25267 +g27 +sg25268 +S'Sewing Bird' +p61844 +sg25270 +S'John H. Tercuzzi' +p61845 +sa(dp61846 +g25273 +S'(artist)' +p61847 +sg25267 +g27 +sg25275 +S'\n' +p61848 +sg25268 +S'Les nouvelles ... (volume II)' +p61849 +sg25270 +S'Artist Information (' +p61850 +sa(dp61851 +g25267 +g27 +sg25268 +S'Silver Bird Sewing Holder' +p61852 +sg25270 +S'James M. Lawson' +p61853 +sa(dp61854 +g25267 +g27 +sg25268 +S'Sewing Bird' +p61855 +sg25270 +S'Artist Information (' +p61856 +sa(dp61857 +g25267 +g27 +sg25268 +S'Sewing Bird' +p61858 +sg25270 +S'Columbus Simpson' +p61859 +sa(dp61860 +g25267 +g27 +sg25268 +S'Pincushion and Thread Holder' +p61861 +sg25270 +S'Raymond Manupelli' +p61862 +sa(dp61863 +g25267 +g27 +sg25268 +S'Shaker Glove' +p61864 +sg25270 +S'Elizabeth Moutal' +p61865 +sa(dp61866 +g25267 +g27 +sg25268 +S'Shaker Gloves' +p61867 +sg25270 +S'Orville Cline' +p61868 +sa(dp61869 +g25267 +g27 +sg25268 +S"Shaker Man's Collar" +p61870 +sg25270 +S'Elizabeth Moutal' +p61871 +sa(dp61872 +g25267 +g27 +sg25268 +S"Shaker Woman's Money Bag" +p61873 +sg25270 +S'Ingrid Selmer-Larsen' +p61874 +sa(dp61875 +g25267 +g27 +sg25268 +S'Shaker Infirmary Cap' +p61876 +sg25270 +S'Alice Stearns' +p61877 +sa(dp61878 +g25267 +g27 +sg25268 +S'Shaker Two-step Bench' +p61879 +sg25270 +S'Lawrence Foster' +p61880 +sa(dp61881 +g25273 +S'(artist)' +p61882 +sg25267 +g27 +sg25275 +S'\n' +p61883 +sg25268 +S'Les nouvelles ... (volume III)' +p61884 +sg25270 +S'Artist Information (' +p61885 +sa(dp61886 +g25267 +g27 +sg25268 +S'Shaker Porch Bench' +p61887 +sg25270 +S'Lon Cronk' +p61888 +sa(dp61889 +g25267 +g27 +sg25268 +S'Shaker Stools' +p61890 +sg25270 +S'Lawrence Foster' +p61891 +sa(dp61892 +g25267 +g27 +sg25268 +S'Shaker Loom Stool' +p61893 +sg25270 +S'Irving I. Smith' +p61894 +sa(dp61895 +g25267 +g27 +sg25268 +S'Shaker Long House Bench' +p61896 +sg25270 +S'Lawrence Foster' +p61897 +sa(dp61898 +g25267 +g27 +sg25268 +S'Shaker Short Bench' +p61899 +sg25270 +S'Lawrence Foster' +p61900 +sa(dp61901 +g25267 +g27 +sg25268 +S'Shaker Bed' +p61902 +sg25270 +S'Elbert S. Mowery' +p61903 +sa(dp61904 +g25267 +g27 +sg25268 +S'Shaker Bed' +p61905 +sg25270 +S'Lon Cronk' +p61906 +sa(dp61907 +g25267 +g27 +sg25268 +S'Shaker Bed' +p61908 +sg25270 +S'Elbert S. Mowery' +p61909 +sa(dp61910 +g25267 +S'Little more than cots, Shaker beds were derived from traditional eighteenth-century\n styles. They had simple, low headboards and measured less than thirty-six inches\n across. The holes bored around the frame were used to secure ropes that served as springs.\n The legs of this bed are set on rollers so that it could be easily moved in order\n to clean the floors. Though this one retains its natural wood finish, Shaker beds\n were often painted green.\n ' +p61911 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000387.jpg' +p61912 +sg25268 +S'Shaker Cot' +p61913 +sg25270 +S'Alfred H. Smith' +p61914 +sa(dp61915 +g25267 +g27 +sg25268 +S'Shaker Rug Beater' +p61916 +sg25270 +S'Orville Cline' +p61917 +sa(dp61918 +g25273 +S'engraving' +p61919 +sg25267 +g27 +sg25275 +S'unknown date\n' +p61920 +sg25268 +S'Louis XVI and Marie-Antoinette' +p61921 +sg25270 +S'Augustin de Saint-Aubin' +p61922 +sa(dp61923 +g25267 +g27 +sg25268 +S'Shaker Tape Loom' +p61924 +sg25270 +S'Irving I. Smith' +p61925 +sa(dp61926 +g25267 +g27 +sg25268 +S'Shaker Sugar Jar' +p61927 +sg25270 +S'Charles Goodwin' +p61928 +sa(dp61929 +g25267 +g27 +sg25268 +S'Shaker Grease Lamp' +p61930 +sg25270 +S'Charles Goodwin' +p61931 +sa(dp61932 +g25267 +g27 +sg25268 +S'Shaker Tin Dish Drainer' +p61933 +sg25270 +S'Lon Cronk' +p61934 +sa(dp61935 +g25267 +g27 +sg25268 +S'Shaker Sugar Jar' +p61936 +sg25270 +S'Charles Goodwin' +p61937 +sa(dp61938 +g25267 +g27 +sg25268 +S'Shaker Dish Drainer' +p61939 +sg25270 +S'Lon Cronk' +p61940 +sa(dp61941 +g25267 +g27 +sg25268 +S'Shaker Door Latch' +p61942 +sg25270 +S'Elbert S. Mowery' +p61943 +sa(dp61944 +g25267 +g27 +sg25268 +S'Shaker Kerchief' +p61945 +sg25270 +S'Helen E. Gilman' +p61946 +sa(dp61947 +g25267 +g27 +sg25268 +S"Shaker Woman's Stocking" +p61948 +sg25270 +S'Betty Fuerst' +p61949 +sa(dp61950 +g25267 +g27 +sg25268 +S'Shaker Hair Wreath' +p61951 +sg25270 +S'Helen Bronson' +p61952 +sa(dp61953 +g25273 +S'Widener Collection' +p61954 +sg25267 +g27 +sg25275 +S'\nbound volume with 32 prints and 2 drawings (drawings by St.-Aubin and Bernard: 1942.9.1681, 1692) plus a manuscript account of contents by Edward Clayton' +p61955 +sg25268 +S'Portraits of Marie-Antoinette' +p61956 +sg25270 +S'Various Artists' +p61957 +sa(dp61958 +g25267 +g27 +sg25268 +S'Shaker Cupboard' +p61959 +sg25270 +S'George V. Vezolles' +p61960 +sa(dp61961 +g25267 +g27 +sg25268 +S'Shaker Cabinet' +p61962 +sg25270 +S'George V. Vezolles' +p61963 +sa(dp61964 +g25267 +g27 +sg25268 +S'Shaker Cabinet' +p61965 +sg25270 +S'Edward D. Williams' +p61966 +sa(dp61967 +g25267 +g27 +sg25268 +S'Shaker Bookcase' +p61968 +sg25270 +S'John W. Kelleher' +p61969 +sa(dp61970 +g25267 +g27 +sg25268 +S'Shaker Cabinet' +p61971 +sg25270 +S'George V. Vezolles' +p61972 +sa(dp61973 +g25267 +g27 +sg25268 +S'Shaker Cabinet' +p61974 +sg25270 +S'Winslow Rich' +p61975 +sa(dp61976 +g25267 +g27 +sg25268 +S'Shaker Cabinet' +p61977 +sg25270 +S'John W. Kelleher' +p61978 +sa(dp61979 +g25267 +g27 +sg25268 +S'Shaker Cabinet with Drawers' +p61980 +sg25270 +S'Alfred H. Smith' +p61981 +sa(dp61982 +g25267 +g27 +sg25268 +S'Shaker Wooden Wall Shelf' +p61983 +sg25270 +S'Alois E. Ulrich' +p61984 +sa(dp61985 +g25267 +g27 +sg25268 +S'Shaker Wood Box and Kindling Box' +p61986 +sg25270 +S'George V. Vezolles' +p61987 +sa(dp61988 +g25273 +S'(artist)' +p61989 +sg25267 +g27 +sg25275 +S'\n' +p61990 +sg25268 +S'Louis XV' +p61991 +sg25270 +S'Artist Information (' +p61992 +sa(dp61993 +g25267 +g27 +sg25268 +S'Shaker Candle Sconce' +p61994 +sg25270 +S'Anne Ger' +p61995 +sa(dp61996 +g25267 +g27 +sg25268 +S'Shaker Tray' +p61997 +sg25270 +S'Lawrence Foster' +p61998 +sa(dp61999 +g25267 +g27 +sg25268 +S'Shaker Mirror Rack' +p62000 +sg25270 +S'Victor F. Muollo' +p62001 +sa(dp62002 +g25267 +g27 +sg25268 +S'Shaker Cabinet' +p62003 +sg25270 +S'Irving I. Smith' +p62004 +sa(dp62005 +g25267 +g27 +sg25268 +S'Shaker Oval Box' +p62006 +sg25270 +S'Alfred H. Smith' +p62007 +sa(dp62008 +g25267 +g27 +sg25268 +S'Shaker Wood Box' +p62009 +sg25270 +S'Alois E. Ulrich' +p62010 +sa(dp62011 +g25267 +g27 +sg25268 +S'Shaker Two Slat Chair' +p62012 +sg25270 +S'Irving I. Smith' +p62013 +sa(dp62014 +g25267 +g27 +sg25268 +S'Shaker Three Slat Titlting Chair' +p62015 +sg25270 +S'Victor F. Muollo' +p62016 +sa(dp62017 +g25267 +g27 +sg25268 +S'Shaker Chair' +p62018 +sg25270 +S'Francis Law Durand' +p62019 +sa(dp62020 +g25267 +g27 +sg25268 +S'Shaker Dining Chair' +p62021 +sg25270 +S'John W. Kelleher' +p62022 +sa(dp62023 +g25273 +S'engraving' +p62024 +sg25267 +g27 +sg25275 +S'unknown date\n' +p62025 +sg25268 +S'Un bon prince est aime jusque dans des enfans' +p62026 +sg25270 +S'Marie-Anne Crosier' +p62027 +sa(dp62028 +g25267 +g27 +sg25268 +S'Shaker Three Slat Chair' +p62029 +sg25270 +S'Alfred H. Smith' +p62030 +sa(dp62031 +g25267 +g27 +sg25268 +S'Shaker Chair Finials and Ball & Socket Foot' +p62032 +sg25270 +S'Ray Holden' +p62033 +sa(dp62034 +g25267 +g27 +sg25268 +S'Shaker Dining Chair' +p62035 +sg25270 +S'John Davis' +p62036 +sa(dp62037 +g25267 +g27 +sg25268 +S'Shaker Chest' +p62038 +sg25270 +S'Ray Holden' +p62039 +sa(dp62040 +g25267 +g27 +sg25268 +S'Shaker Table' +p62041 +sg25270 +S'Orville A. Carroll' +p62042 +sa(dp62043 +g25267 +g27 +sg25268 +S'Shaker Blanket Chest' +p62044 +sg25270 +S'John Davis' +p62045 +sa(dp62046 +g25267 +g27 +sg25268 +S'Shaker Blanket Box' +p62047 +sg25270 +S'George V. Vezolles' +p62048 +sa(dp62049 +g25267 +g27 +sg25268 +S'Shaker Sugar Chest' +p62050 +sg25270 +S'Artist Information (' +p62051 +sa(dp62052 +g25267 +g27 +sg25268 +S"Shaker Dressmaker's Counter" +p62053 +sg25270 +S'Anne Ger' +p62054 +sa(dp62055 +g25267 +g27 +sg25268 +S'Shaker Chest of Drawers' +p62056 +sg25270 +S'John W. Kelleher' +p62057 +sa(dp62058 +g25273 +S'(artist after)' +p62059 +sg25267 +g27 +sg25275 +S'\n' +p62060 +sg25268 +S'Louis XV' +p62061 +sg25270 +S'Artist Information (' +p62062 +sa(dp62063 +g25267 +g27 +sg25268 +S'Shaker Chest of Drawers' +p62064 +sg25270 +S'John W. Kelleher' +p62065 +sa(dp62066 +g25267 +g27 +sg25268 +S'Shaker Chest of Drawers' +p62067 +sg25270 +S'John W. Kelleher' +p62068 +sa(dp62069 +g25267 +g27 +sg25268 +S'Shaker Chest of Drawers' +p62070 +sg25270 +S'Alfred H. Smith' +p62071 +sa(dp62072 +g25267 +g27 +sg25268 +S'Shaker Chest of Drawers' +p62073 +sg25270 +S'Ray Holden' +p62074 +sa(dp62075 +g25267 +g27 +sg25268 +S'Shaker Blanket Chest' +p62076 +sg25270 +S'Ray Holden' +p62077 +sa(dp62078 +g25267 +g27 +sg25268 +S"Shaker Tailor's Work Bench" +p62079 +sg25270 +S'Ray Holden' +p62080 +sa(dp62081 +g25267 +S'Clocks, such as this one, were found in Shaker dormitories and shops. Its design\n is a simplified version of the traditional New England clock. Ornamental features\n have been deleted, and only the major elements of the classic base, shaft, and capital\n have been retained. An exception to Shaker custom, Benjamin Youngs followed the\n tradition of other clockmakers by inscribing his name on the face. Shaker craftsmen\n were not usually permitted to sign their works, for this represented a display of\n personal pride.\n ' +p62082 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000389.jpg' +p62083 +sg25268 +S'Shaker Tall Clock' +p62084 +sg25270 +S'Irving I. Smith' +p62085 +sa(dp62086 +g25267 +g27 +sg25268 +S'Shaker Wall Clock' +p62087 +sg25270 +S'Anne Ger' +p62088 +sa(dp62089 +g25267 +g27 +sg25268 +S'Shaker Tall Clock' +p62090 +sg25270 +S'William Paul Childers' +p62091 +sa(dp62092 +g25267 +g27 +sg25268 +S'Shaker Cupboard' +p62093 +sg25270 +S'Alfred H. Smith' +p62094 +sa(dp62095 +g25273 +S'engraving' +p62096 +sg25267 +g27 +sg25275 +S'unknown date\n' +p62097 +sg25268 +S'Marie-Antoinette' +p62098 +sg25270 +S'Jean Massard' +p62099 +sa(dp62100 +g25267 +g27 +sg25268 +S'Shaker Tall Tin Cupboard' +p62101 +sg25270 +S'Anne Ger' +p62102 +sa(dp62103 +g25267 +g27 +sg25268 +S'Sugar Scoop' +p62104 +sg25270 +S'Lelah Nelson' +p62105 +sa(dp62106 +g25267 +g27 +sg25268 +S'Wooden Meal Scoop' +p62107 +sg25270 +S'Wilbur M Rice' +p62108 +sa(dp62109 +g25267 +g27 +sg25268 +S'Shaker Cupboard' +p62110 +sg25270 +S'George V. Vezolles' +p62111 +sa(dp62112 +g25267 +g27 +sg25268 +S'Shaker Candle Stand' +p62113 +sg25270 +S'Lon Cronk' +p62114 +sa(dp62115 +g25267 +g27 +sg25268 +S'Shaker Clock Hanger' +p62116 +sg25270 +S'Ray Holden' +p62117 +sa(dp62118 +g25267 +g27 +sg25268 +S'Shaker Wooden Basket' +p62119 +sg25270 +S'Eugene Barrell' +p62120 +sa(dp62121 +g25267 +g27 +sg25268 +S'Shaker Cedar Basket' +p62122 +sg25270 +S'Edward D. Williams' +p62123 +sa(dp62124 +g25267 +g27 +sg25268 +S'Shaker Peg Leg Stand' +p62125 +sg25270 +S'Irving I. Smith' +p62126 +sa(dp62127 +g25267 +g27 +sg25268 +S'Shaker Wash Stand' +p62128 +sg25270 +S'Ray Holden' +p62129 +sa(dp62130 +g25273 +S'engraving' +p62131 +sg25267 +g27 +sg25275 +S'unknown date\n' +p62132 +sg25268 +S'Louis-Auguste, Dauphin of France' +p62133 +sg25270 +S'Jean Massard' +p62134 +sa(dp62135 +g25267 +g27 +sg25268 +S'Shaker Stand' +p62136 +sg25270 +S'Ray Holden' +p62137 +sa(dp62138 +g25267 +g27 +sg25268 +S'Shaker Stand' +p62139 +sg25270 +S'Ray Holden' +p62140 +sa(dp62141 +g25267 +S'Candlestands, like this one, were a standard item in each Shaker bedroom, or "retiring room." They were typically made of cherry with a round top and a slender shaft which expanded downward to a tripod base. \n The legs curve outward to form graceful arcs. Candlestands were usually about twenty-five inches high and could serve a variety of uses within the room.\n ' +p62142 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000383.jpg' +p62143 +sg25268 +S'Shaker Table' +p62144 +sg25270 +S'Victor F. Muollo' +p62145 +sa(dp62146 +g25267 +g27 +sg25268 +S'Shaker Desk' +p62147 +sg25270 +S'Ray Holden' +p62148 +sa(dp62149 +g25267 +g27 +sg25268 +S'Shaker Sewing Table' +p62150 +sg25270 +S'Alfred H. Smith' +p62151 +sa(dp62152 +g25267 +g27 +sg25268 +S'Shaker Small Corner Cupboard' +p62153 +sg25270 +S'Lon Cronk' +p62154 +sa(dp62155 +g25267 +g27 +sg25268 +S'Shaker Lap Desk' +p62156 +sg25270 +S'Irving I. Smith' +p62157 +sa(dp62158 +g25267 +g27 +sg25268 +S'Shaker Desk' +p62159 +sg25270 +S'Irving I. Smith' +p62160 +sa(dp62161 +g25267 +g27 +sg25268 +S'Shaker Desk' +p62162 +sg25270 +S'John W. Kelleher' +p62163 +sa(dp62164 +g25267 +g27 +sg25268 +S'Shaker Desk' +p62165 +sg25270 +S'Alfred H. Smith' +p62166 +sa(dp62167 +g25273 +S'engraving' +p62168 +sg25267 +g27 +sg25275 +S'1770' +p62169 +sg25268 +S'Frontispiece: Moreau\'s "Bibliotheque de Madame la Dauphine"' +p62170 +sg25270 +S'Charles Eisen' +p62171 +sa(dp62172 +g25267 +g27 +sg25268 +S'Shaker Secretary' +p62173 +sg25270 +S'John W. Kelleher' +p62174 +sa(dp62175 +g25267 +g27 +sg25268 +S'Shaker Secretary' +p62176 +sg25270 +S'Alfred H. Smith' +p62177 +sa(dp62178 +g25267 +g27 +sg25268 +S'Shaker Cupboard' +p62179 +sg25270 +S'Irving I. Smith' +p62180 +sa(dp62181 +g25267 +g27 +sg25268 +S'Shaker Hanging Cupboard' +p62182 +sg25270 +S'Victor F. Muollo' +p62183 +sa(dp62184 +g25267 +g27 +sg25268 +S'Shaker Cupboard with Drawers' +p62185 +sg25270 +S'Howard Weld' +p62186 +sa(dp62187 +g25267 +g27 +sg25268 +S'Shaker Dining Room Cupboard' +p62188 +sg25270 +S'William Paul Childers' +p62189 +sa(dp62190 +g25267 +g27 +sg25268 +S'Shaker Lamp Stand' +p62191 +sg25270 +S'American 20th Century' +p62192 +sa(dp62193 +g25267 +g27 +sg25268 +S'Shaker Pegs and Candlestand' +p62194 +sg25270 +S'George V. Vezolles' +p62195 +sa(dp62196 +g25267 +g27 +sg25268 +S'Shaker Towel Rack' +p62197 +sg25270 +S'Anne Ger' +p62198 +sa(dp62199 +g25267 +g27 +sg25268 +S'Shaker Music Rack' +p62200 +sg25270 +S'Alfred H. Smith' +p62201 +sa(dp62202 +g25273 +S'(artist)' +p62203 +sg25267 +g27 +sg25275 +S'\n' +p62204 +sg25268 +S'Frontispiece: La Borde\'s "Choix de Chansons": vol. II' +p62205 +sg25270 +S'Artist Information (' +p62206 +sa(dp62207 +g25267 +g27 +sg25268 +S'Shaker Looking Glass and Rack' +p62208 +sg25270 +S'Victor F. Muollo' +p62209 +sa(dp62210 +g25267 +g27 +sg25268 +S'Shaker Yoke' +p62211 +sg25270 +S'T. Joyce' +p62212 +sa(dp62213 +g25267 +g27 +sg25268 +S'Shaker Nursing Chair' +p62214 +sg25270 +S'Helen Bronson' +p62215 +sa(dp62216 +g25267 +g27 +sg25268 +S"Shaker Child's Rocker" +p62217 +sg25270 +S'Ray Holden' +p62218 +sa(dp62219 +g25267 +g27 +sg25268 +S'Shaker Side Chair' +p62220 +sg25270 +S'Ray Holden' +p62221 +sa(dp62222 +g25267 +g27 +sg25268 +S'Shaker Mushroom Rocker' +p62223 +sg25270 +S'Ray Holden' +p62224 +sa(dp62225 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000382.jpg' +p62226 +sg25268 +S'Rocking Chair' +p62227 +sg25270 +S'Frank Gutting' +p62228 +sa(dp62229 +g25267 +g27 +sg25268 +S'Shaker Rocking Chair' +p62230 +sg25270 +S'Adele Brooks' +p62231 +sa(dp62232 +g25267 +g27 +sg25268 +S'Shaker Rocking Chair' +p62233 +sg25270 +S'Victor F. Muollo' +p62234 +sa(dp62235 +g25267 +g27 +sg25268 +S'Shaker Sewing Desk' +p62236 +sg25270 +S'John Davis' +p62237 +sa(dp62238 +g25268 +S'Marie-Antoinette' +p62239 +sg25270 +S'Richard Brookshaw' +p62240 +sg25273 +S'mezzotint' +p62241 +sg25275 +S'unknown date\n' +p62242 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a000621b.jpg' +p62243 +sg25267 +g27 +sa(dp62244 +g25267 +S'In this piece the Shakers adapted the basic pedestal table, such as the candlestand,\n for a specialized use. Drawers have been added on opposite sides of the table so\n that it could be used for sewing by two sisters at once. The tripod base of the\n candlestand has been modified to a four-legged variety here. As in other pedestal\n tables, stability of the vase-shaped base and pedestal shaft has been insured by\n the precise calculations of Shaker craftsmanship.\n ' +p62245 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003c8.jpg' +p62246 +sg25268 +S'Shaker Round Table' +p62247 +sg25270 +S'Alfred H. Smith' +p62248 +sa(dp62249 +g25267 +g27 +sg25268 +S'Shaker Sewing Table' +p62250 +sg25270 +S'Irving I. Smith' +p62251 +sa(dp62252 +g25267 +g27 +sg25268 +S'Shaker Tripod Sewing Stand' +p62253 +sg25270 +S'Irving I. Smith' +p62254 +sa(dp62255 +g25267 +g27 +sg25268 +S'Shaker Sewing Table' +p62256 +sg25270 +S'Irving I. Smith' +p62257 +sa(dp62258 +g25267 +g27 +sg25268 +S'Shaker School Desk' +p62259 +sg25270 +S'Ray Holden' +p62260 +sa(dp62261 +g25267 +S'The trestle table had its ancestry in early European styles. Shakers transformed the heavy, ornate style by narrowing and lightening the trestle ends to dimensions \n still sufficient for rigidity and strength. The variation they introduced succeeds in combining beauty and utility. This table was made especially long and wide to be used in the communal \n dining room of a Shaker village. The chairs are unlike those typically made by Shakers. The legs are bulbous with a pronounced taper toward the top and bottom. The spindles on the back, \n with a small diamond-shaped ornament, suggest the nineteenth-century Windsor style popular in the outside world. Made in Pleasant Hill, Kentucky, these pieces reflect a more elaborate \n style than was common in most Shaker furniture. Even though the sect emphasized uniformity, difference among the communities were nonetheless evident.\n ' +p62262 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003c2.jpg' +p62263 +sg25268 +S'Shaker Dining Table and Chairs' +p62264 +sg25270 +S'Lon Cronk' +p62265 +sa(dp62266 +g25267 +g27 +sg25268 +S'Shaker Dining Table' +p62267 +sg25270 +S'Winslow Rich' +p62268 +sa(dp62269 +g25267 +g27 +sg25268 +S'Shaker Table' +p62270 +sg25270 +S'Winslow Rich' +p62271 +sa(dp62272 +g25267 +g27 +sg25268 +S'Shaker Small Table' +p62273 +sg25270 +S'Alfred H. Smith' +p62274 +sa(dp62275 +g25267 +g27 +sg25268 +S'Shaker Table' +p62276 +sg25270 +S'John W. Kelleher' +p62277 +sa(dp62278 +g25273 +S'(artist after)' +p62279 +sg25267 +g27 +sg25275 +S'\n' +p62280 +sg25268 +S'Marie-Antoinette' +p62281 +sg25270 +S'Artist Information (' +p62282 +sa(dp62283 +g25267 +g27 +sg25268 +S'Shaker Sewing Table' +p62284 +sg25270 +S'John Davis' +p62285 +sa(dp62286 +g25267 +g27 +sg25268 +S'Shaker Low Table' +p62287 +sg25270 +S'Howard Weld' +p62288 +sa(dp62289 +g25267 +g27 +sg25268 +S'Shaker Drop-leaf Table' +p62290 +sg25270 +S'Howard Weld' +p62291 +sa(dp62292 +g25267 +g27 +sg25268 +S'Shaker Drop-leaf Table' +p62293 +sg25270 +S'Irving I. Smith' +p62294 +sa(dp62295 +g25267 +g27 +sg25268 +S'Shaker Trestle Dining Table' +p62296 +sg25270 +S'Anne Ger' +p62297 +sa(dp62298 +g25267 +g27 +sg25268 +S'Shaker Refectory Table with Benches' +p62299 +sg25270 +S'Alfred H. Smith' +p62300 +sa(dp62301 +g25267 +g27 +sg25268 +S'Shaker Drop-leaf Table' +p62302 +sg25270 +S'Ray Holden' +p62303 +sa(dp62304 +g25267 +g27 +sg25268 +S'Shaker Kitchen Table' +p62305 +sg25270 +S'Ray Holden' +p62306 +sa(dp62307 +g25267 +g27 +sg25268 +S'Shaker Table' +p62308 +sg25270 +S'Ray Holden' +p62309 +sa(dp62310 +g25267 +g27 +sg25268 +S'Shaker Dining Table' +p62311 +sg25270 +S'Lon Cronk' +p62312 +sa(dp62313 +g25273 +S'(artist after)' +p62314 +sg25267 +g27 +sg25275 +S'\n' +p62315 +sg25268 +S'Marie-Antoinette' +p62316 +sg25270 +S'Artist Information (' +p62317 +sa(dp62318 +g25267 +g27 +sg25268 +S'Shaker Refectory Table' +p62319 +sg25270 +S'Lon Cronk' +p62320 +sa(dp62321 +g25267 +g27 +sg25268 +S'Shaker Ironing Table' +p62322 +sg25270 +S'Irving I. Smith' +p62323 +sa(dp62324 +g25267 +S'This kitchen piece is a type of washstand or dry sink set on a cabinet. The\n high back protected the wall from splashing water, while the space below provided\n a small storage area. The Shakers showed a fine appreciation for the natural beauty\n of the material. Made of white maple, the sink has a light stain that enhances\n the decorative grain of the wood.\n ' +p62325 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000388.jpg' +p62326 +sg25268 +S'Shaker Kitchen Piece with Tray' +p62327 +sg25270 +S'Alfred H. Smith' +p62328 +sa(dp62329 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000556b.jpg' +p62330 +sg25268 +S'Shaker Wash Stand with Drawers' +p62331 +sg25270 +S'Irving I. Smith' +p62332 +sa(dp62333 +g25267 +g27 +sg25268 +S'Shaker Wash Stand' +p62334 +sg25270 +S'Lawrence Foster' +p62335 +sa(dp62336 +g25267 +g27 +sg25268 +S'Shaker Newel Post' +p62337 +sg25270 +S'Anne Ger' +p62338 +sa(dp62339 +g25267 +g27 +sg25268 +S'Shaker Stairway' +p62340 +sg25270 +S'Lon Cronk' +p62341 +sa(dp62342 +g25267 +g27 +sg25268 +S'Shaker Spiral Staircase' +p62343 +sg25270 +S'George V. Vezolles' +p62344 +sa(dp62345 +g25267 +g27 +sg25268 +S'Shaker Spiral Staircase' +p62346 +sg25270 +S'George V. Vezolles' +p62347 +sa(dp62348 +g25267 +g27 +sg25268 +S'Shaker Newel Post' +p62349 +sg25270 +S'John W. Kelleher' +p62350 +sa(dp62351 +g25273 +S'Herold 1935, no. 34, State (4)' +p62352 +sg25267 +g27 +sg25275 +S'\ncrayon-manner engraving' +p62353 +sg25268 +S'Marie-Antoinette' +p62354 +sg25270 +S'French 18th Century' +p62355 +sa(dp62356 +g25267 +g27 +sg25268 +S'Shaker Case' +p62357 +sg25270 +S'Betty Fuerst' +p62358 +sa(dp62359 +g25267 +g27 +sg25268 +S'Shaker Spool Rack and Spools' +p62360 +sg25270 +S'Orville Cline' +p62361 +sa(dp62362 +g25267 +g27 +sg25268 +S'Shaker Case' +p62363 +sg25270 +S'Helen E. Gilman' +p62364 +sa(dp62365 +g25267 +g27 +sg25268 +S'Shaker Needle Case' +p62366 +sg25270 +S'Ingrid Selmer-Larsen' +p62367 +sa(dp62368 +g25267 +g27 +sg25268 +S'Shaker Case for Knitting Needles' +p62369 +sg25270 +S'Helen E. Gilman' +p62370 +sa(dp62371 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005543.jpg' +p62372 +sg25268 +S'Shaker Case for Knitting Needles' +p62373 +sg25270 +S'Elizabeth Moutal' +p62374 +sa(dp62375 +g25267 +g27 +sg25268 +S'Shaker Case for Knitting Needles' +p62376 +sg25270 +S'Elizabeth Moutal' +p62377 +sa(dp62378 +g25267 +g27 +sg25268 +S'Shaker Kerchief' +p62379 +sg25270 +S'Lucille Chabot' +p62380 +sa(dp62381 +g25267 +g27 +sg25268 +S'Shaker Tow or Garden Sheet' +p62382 +sg25270 +S'Elizabeth Moutal' +p62383 +sa(dp62384 +g25267 +g27 +sg25268 +S'Shaker Bedspread' +p62385 +sg25270 +S'George Constantine' +p62386 +sa(dp62387 +g25273 +S'engraving in red' +p62388 +sg25267 +g27 +sg25275 +S'unknown date\n' +p62389 +sg25268 +S'Marie-Antoinette' +p62390 +sg25270 +S'Charles-Eugene Duponchel' +p62391 +sa(dp62392 +g25267 +g27 +sg25268 +S'Shaker Textile' +p62393 +sg25270 +S'Elizabeth Moutal' +p62394 +sa(dp62395 +g25267 +g27 +sg25268 +S'Shaker Coverlet' +p62396 +sg25270 +S'Martha Sancher' +p62397 +sa(dp62398 +g25267 +g27 +sg25268 +S'Shaker Rug' +p62399 +sg25270 +S'Mona Brown' +p62400 +sa(dp62401 +g25267 +g27 +sg25268 +S'Shaker Dress Material' +p62402 +sg25270 +S'Ingrid Selmer-Larsen' +p62403 +sa(dp62404 +g25267 +g27 +sg25268 +S'Shaker Material' +p62405 +sg25270 +S'American 20th Century' +p62406 +sa(dp62407 +g25267 +g27 +sg25268 +S'Shaker Coverlet' +p62408 +sg25270 +S'Alois E. Ulrich' +p62409 +sa(dp62410 +g25267 +g27 +sg25268 +S'Shaker Bedspread' +p62411 +sg25270 +S'Lucille Chabot' +p62412 +sa(dp62413 +g25267 +g27 +sg25268 +S'Shaker Bedspread' +p62414 +sg25270 +S'George Constantine' +p62415 +sa(dp62416 +g25267 +S'Shaker stoves were distinctive for their plain, clean lines in an era when most\n woodburning stoves had at least some decoration. Shakers simplified the basic stove\n design and emphasized features that enhanced efficiency. The shape of most Shaker\n stoves was rectangular and low, so that heavy logs could be easily placed inside.\n The metal door, set into the baseboard behind the stove, is for the convenient\n disposal of ashes.\n ' +p62417 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000038a.jpg' +p62418 +sg25268 +S'Shaker Stove/Built-in Closet' +p62419 +sg25270 +S'John W. Kelleher' +p62420 +sa(dp62421 +g25267 +g27 +sg25268 +S'Shaker Stove' +p62422 +sg25270 +S'George V. Vezolles' +p62423 +sa(dp62424 +g25273 +S'engraving' +p62425 +sg25267 +g27 +sg25275 +S'unknown date\n' +p62426 +sg25268 +S'Louis XVI and Marie-Antoinette' +p62427 +sg25270 +S'Augustin de Saint-Aubin' +p62428 +sa(dp62429 +g25267 +g27 +sg25268 +S'Shaker Compass' +p62430 +sg25270 +S'Richard Barnett' +p62431 +sa(dp62432 +g25267 +g27 +sg25268 +S'Shaker Barometer' +p62433 +sg25270 +S'Alois E. Ulrich' +p62434 +sa(dp62435 +g25267 +g27 +sg25268 +S'Shaker Spinning Wheel Flax' +p62436 +sg25270 +S'George V. Vezolles' +p62437 +sa(dp62438 +g25267 +g27 +sg25268 +S'Shaker Scales' +p62439 +sg25270 +S'George V. Vezolles' +p62440 +sa(dp62441 +g25267 +g27 +sg25268 +S'Shaker Scales' +p62442 +sg25270 +S'George V. Vezolles' +p62443 +sa(dp62444 +g25267 +g27 +sg25268 +S'Shaker Scales' +p62445 +sg25270 +S'George V. Vezolles' +p62446 +sa(dp62447 +g25267 +g27 +sg25268 +S'Shaker Scales' +p62448 +sg25270 +S'Lon Cronk' +p62449 +sa(dp62450 +g25267 +g27 +sg25268 +S'Shaker Scales' +p62451 +sg25270 +S'George V. Vezolles' +p62452 +sa(dp62453 +g25267 +g27 +sg25268 +S'Shaker Textile Sample' +p62454 +sg25270 +S'Harold Weisenborn' +p62455 +sa(dp62456 +g25267 +g27 +sg25268 +S'Shaker Rug Strip' +p62457 +sg25270 +S'Lucille Chabot' +p62458 +sa(dp62459 +g25273 +S'(artist after)' +p62460 +sg25267 +g27 +sg25275 +S'\n' +p62461 +sg25268 +S'Louis XII, Henri IV, and Louis XVI' +p62462 +sg25270 +S'Artist Information (' +p62463 +sa(dp62464 +g25267 +g27 +sg25268 +S'Fragment of Shaker Hall Rug' +p62465 +sg25270 +S'Charles Goodwin' +p62466 +sa(dp62467 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac1f.jpg' +p62468 +sg25268 +S'Shaker Rug' +p62469 +sg25270 +S'Elbert S. Mowery' +p62470 +sa(dp62471 +g25267 +g27 +sg25268 +S'Shaker Rug' +p62472 +sg25270 +S'Alois E. Ulrich' +p62473 +sa(dp62474 +g25267 +g27 +sg25268 +S'Shaker Rug Binding Tapes' +p62475 +sg25270 +S'Helen Dana' +p62476 +sa(dp62477 +g25267 +g27 +sg25268 +S'Shaker Rug Bindings' +p62478 +sg25270 +S'Ingrid Selmer-Larsen' +p62479 +sa(dp62480 +g25267 +g27 +sg25268 +S'Shaker Rug Strips' +p62481 +sg25270 +S'Lucille Chabot' +p62482 +sa(dp62483 +g25267 +g27 +sg25268 +S'Shaker Shirred Rug' +p62484 +sg25270 +S'Charles Goodwin' +p62485 +sa(dp62486 +g25267 +g27 +sg25268 +S'Shaker Chair Seat Covering' +p62487 +sg25270 +S'Alice Stearns' +p62488 +sa(dp62489 +g25267 +g27 +sg25268 +S'Shaker Rug' +p62490 +sg25270 +S'George V. Vezolles' +p62491 +sa(dp62492 +g25267 +g27 +sg25268 +S'Shaker Woolen Rug' +p62493 +sg25270 +S'George V. Vezolles' +p62494 +sa(dp62495 +g25273 +S'Widener Collection' +p62496 +sg25267 +g27 +sg25275 +S'\nstipple engraving in black and red' +p62497 +sg25268 +S'Marie-Antoinette' +p62498 +sg25270 +S'French 18th Century' +p62499 +sa(dp62500 +g25267 +g27 +sg25268 +S'Shaker Rug Material' +p62501 +sg25270 +S'Elizabeth Moutal' +p62502 +sa(dp62503 +g25267 +g27 +sg25268 +S'Shaker Rug (Detail)' +p62504 +sg25270 +S'Lucille Gilchrist' +p62505 +sa(dp62506 +g25267 +g27 +sg25268 +S'Shaker Tufted Wool Rug' +p62507 +sg25270 +S'Orville A. Carroll' +p62508 +sa(dp62509 +g25267 +g27 +sg25268 +S'Shaker Comb for Grass Seed' +p62510 +sg25270 +S'Elbert S. Mowery' +p62511 +sa(dp62512 +g25267 +g27 +sg25268 +S'Shaker Comb and Case' +p62513 +sg25270 +S'Orville Cline' +p62514 +sa(dp62515 +g25267 +g27 +sg25268 +S'Shaker Seed Comb' +p62516 +sg25270 +S'Francis Bruner' +p62517 +sa(dp62518 +g25267 +g27 +sg25268 +S'Shaker Clay Pipe' +p62519 +sg25270 +S'John Greenwell' +p62520 +sa(dp62521 +g25267 +g27 +sg25268 +S'Shaker Broom' +p62522 +sg25270 +S'Peter Antonelli' +p62523 +sa(dp62524 +g25267 +g27 +sg25268 +S'Shaving Horse' +p62525 +sg25270 +S'Clarence W. Dawson' +p62526 +sa(dp62527 +g25267 +g27 +sg25268 +S'Trimming Shears' +p62528 +sg25270 +S'Harold Ballerd' +p62529 +sa(dp62530 +g25268 +S'Saint Catherine' +p62531 +sg25270 +S'Lorenzo Lotto' +p62532 +sg25273 +S'oil on panel' +p62533 +sg25275 +S'1522' +p62534 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005d3.jpg' +p62535 +sg25267 +g27 +sa(dp62536 +g25273 +S', 1782' +p62537 +sg25267 +g27 +sg25275 +S'\n' +p62538 +sg25268 +S'Marie-Antoinette' +p62539 +sg25270 +S'Jean-Joseph Bernard called Bernard de Paris' +p62540 +sa(dp62541 +g25267 +g27 +sg25268 +S'Stern Piece' +p62542 +sg25270 +S'Elizabeth Moutal' +p62543 +sa(dp62544 +g25267 +g27 +sg25268 +S'Porthole and Woodwork Detail' +p62545 +sg25270 +S'Margaret Gordon' +p62546 +sa(dp62547 +g25267 +g27 +sg25268 +S'Sideboard' +p62548 +sg25270 +S'Margaret Gordon' +p62549 +sa(dp62550 +g25267 +g27 +sg25268 +S'Scroll Work' +p62551 +sg25270 +S'Margaret Gordon' +p62552 +sa(dp62553 +g25267 +g27 +sg25268 +S'Carved Frame of Bunk' +p62554 +sg25270 +S'Margaret Gordon' +p62555 +sa(dp62556 +g25267 +g27 +sg25268 +S'Carved Stork' +p62557 +sg25270 +S'Betty Fuerst' +p62558 +sa(dp62559 +g25267 +g27 +sg25268 +S"Keystone from Ship's Woodwork" +p62560 +sg25270 +S'Lucille Chabot' +p62561 +sa(dp62562 +g25267 +g27 +sg25268 +S'Woodcarving' +p62563 +sg25270 +S'Victor F. Muollo' +p62564 +sa(dp62565 +g25267 +g27 +sg25268 +S'Ship in a Bottle' +p62566 +sg25270 +S'Charles R. Shane' +p62567 +sa(dp62568 +g25267 +g27 +sg25268 +S'Shaker Bonnet' +p62569 +sg25270 +S'Elizabeth Moutal' +p62570 +sa(dp62571 +g25268 +S'Minerva Crowning the Genius of Fine Arts' +p62572 +sg25270 +S'French 18th Century' +p62573 +sg25273 +S'Widener Collection' +p62574 +sg25275 +S'\nhand-colored stipple engraving with gold leaf on satin' +p62575 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a000621a.jpg' +p62576 +sg25267 +g27 +sa(dp62577 +g25267 +g27 +sg25268 +S'Shaker Bonnet' +p62578 +sg25270 +S'Wilbur M Rice' +p62579 +sa(dp62580 +g25267 +g27 +sg25268 +S'Scrimshaw: Swordfish Bill' +p62581 +sg25270 +S'Oscar Bluhme' +p62582 +sa(dp62583 +g25267 +g27 +sg25268 +S'Scrimshaw: Walrus Tusk' +p62584 +sg25270 +S'Oscar Bluhme' +p62585 +sa(dp62586 +g25267 +g27 +sg25268 +S'Scrimshaw: Walrus Tusk' +p62587 +sg25270 +S'Oscar Bluhme' +p62588 +sa(dp62589 +g25267 +g27 +sg25268 +S'Sausage Stuffer and Funnel' +p62590 +sg25270 +S'Albert Rudin' +p62591 +sa(dp62592 +g25267 +g27 +sg25268 +S'Letter Box' +p62593 +sg25270 +S'Rocco Navigato' +p62594 +sa(dp62595 +g25267 +g27 +sg25268 +S'Side Saddle' +p62596 +sg25270 +S'Sydney Roberts' +p62597 +sa(dp62598 +g25267 +g27 +sg25268 +S'Rolling Pin' +p62599 +sg25270 +S'Albert Rudin' +p62600 +sa(dp62601 +g25267 +g27 +sg25268 +S"Policeman's Rattle" +p62602 +sg25270 +S'Alfred Koehn' +p62603 +sa(dp62604 +g25267 +g27 +sg25268 +S'Bullet Pouch and Powder Horn' +p62605 +sg25270 +S'Cecil Smith' +p62606 +sa(dp62607 +g25273 +S'Widener Collection' +p62608 +sg25267 +g27 +sg25275 +S'\nhand-colored stipple engraving with gold leaf on satin' +p62609 +sg25268 +S'Louis XVI and Marie-Antoinette' +p62610 +sg25270 +S'French 18th Century' +p62611 +sa(dp62612 +g25267 +g27 +sg25268 +S'Sleigh' +p62613 +sg25270 +S'Amos C. Brinton' +p62614 +sa(dp62615 +g25267 +g27 +sg25268 +S'Goose Neck Cutter' +p62616 +sg25270 +S'Rolland Ayres' +p62617 +sa(dp62618 +g25267 +g27 +sg25268 +S'Red River Dog Sled' +p62619 +sg25270 +S'Wilbur M Rice' +p62620 +sa(dp62621 +g25267 +g27 +sg25268 +S'New England Cutter' +p62622 +sg25270 +S'David Ramage' +p62623 +sa(dp62624 +g25267 +g27 +sg25268 +S'New England Cutter' +p62625 +sg25270 +S'Fred Weiss' +p62626 +sa(dp62627 +g25267 +g27 +sg25268 +S'Shoe Shop Sign: Two Views' +p62628 +sg25270 +S'American 20th Century' +p62629 +sa(dp62630 +g25267 +g27 +sg25268 +S'Shop Sign Key' +p62631 +sg25270 +S'Henry Tomaszewski' +p62632 +sa(dp62633 +g25267 +g27 +sg25268 +S"Blacksmith's Sign" +p62634 +sg25270 +S'W.W. Zausch' +p62635 +sa(dp62636 +g25267 +g27 +sg25268 +S'Model Brig' +p62637 +sg25270 +S'William Kerby' +p62638 +sa(dp62639 +g25267 +S'The United Society of Believers in Christ\'s Second Appearing was the official name of the Shakers, or "Shaking Quakers." They earned the name Shakers because of their group dancing, which was an important feature of their religious service. \n In the decade from 1837 to 1847, Shakers were immersed in an intense emotionalism expressed in elaborate rituals, in visions, and in various psychic experiences. Spirit drawings were received as "gifts" or visions from God. Never regarded as\n art, they were sacred, pictorial drawings of divine revelations. The Shakers\' Millenial Laws placed restrictions on the use of decoration, but through spirit drawings, the Shakers revealed a delight in the ornamental. In this example, the\n Shaker sense of artistry is expressed in the variety of symbols used. The heart is a symbol of love; lamps and candles represent heavenly light; doves, birds, and the falling feather reflect the daily speech of the Shakers. The clock signifies\n mortality, while the trees, a common symbol in spirit drawings, represent the Tree of Life.\n ' +p62640 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000037a.jpg' +p62641 +sg25268 +S'Shaker Visionary Image' +p62642 +sg25270 +S'Orville Cline' +p62643 +sa(dp62644 +g25273 +S'Widener Collection' +p62645 +sg25267 +g27 +sg25275 +S'\nhand-colored stipple engraving with gold leaf on satin' +p62646 +sg25268 +S'The Royal Children and Duchesse de Polignac?' +p62647 +sg25270 +S'French 18th Century' +p62648 +sa(dp62649 +g25267 +g27 +sg25268 +S'Shaker Chair' +p62650 +sg25270 +S'Emil Hagen' +p62651 +sa(dp62652 +g25267 +g27 +sg25268 +S'Shaker Rocking Chair' +p62653 +sg25270 +S'Orville Cline' +p62654 +sa(dp62655 +g25267 +g27 +sg25268 +S'Colcha' +p62656 +sg25270 +S'American 20th Century' +p62657 +sa(dp62658 +g25267 +g27 +sg25268 +S'Colcha' +p62659 +sg25270 +S'Etna Wiswall' +p62660 +sa(dp62661 +g25267 +g27 +sg25268 +S'Colcha' +p62662 +sg25270 +S'American 20th Century' +p62663 +sa(dp62664 +g25267 +g27 +sg25268 +S'Colcha' +p62665 +sg25270 +S'Margery Parish' +p62666 +sa(dp62667 +g25267 +g27 +sg25268 +S'Bedspread' +p62668 +sg25270 +S'Margery Parish' +p62669 +sa(dp62670 +g25267 +g27 +sg25268 +S'Colcha' +p62671 +sg25270 +S'Majel G. Claflin' +p62672 +sa(dp62673 +g25267 +g27 +sg25268 +S'Textile' +p62674 +sg25270 +S'American 20th Century' +p62675 +sa(dp62676 +g25267 +g27 +sg25268 +S'Colcha' +p62677 +sg25270 +S'Majel G. Claflin' +p62678 +sa(dp62679 +g25273 +S'Widener Collection' +p62680 +sg25267 +g27 +sg25275 +S'\nhand-colored stipple engraving with gold leaf on satin' +p62681 +sg25268 +S'Marie-Antoinette? Working at Embroidery' +p62682 +sg25270 +S'French 18th Century' +p62683 +sa(dp62684 +g25267 +g27 +sg25268 +S'Textile' +p62685 +sg25270 +S'American 20th Century' +p62686 +sa(dp62687 +g25267 +g27 +sg25268 +S'Textile' +p62688 +sg25270 +S'American 20th Century' +p62689 +sa(dp62690 +g25267 +g27 +sg25268 +S'Textile' +p62691 +sg25270 +S'American 20th Century' +p62692 +sa(dp62693 +g25267 +g27 +sg25268 +S'Textile' +p62694 +sg25270 +S'American 20th Century' +p62695 +sa(dp62696 +g25267 +g27 +sg25268 +S'Textile' +p62697 +sg25270 +S'American 20th Century' +p62698 +sa(dp62699 +g25267 +g27 +sg25268 +S'Textile' +p62700 +sg25270 +S'American 20th Century' +p62701 +sa(dp62702 +g25267 +g27 +sg25268 +S'Textile' +p62703 +sg25270 +S'American 20th Century' +p62704 +sa(dp62705 +g25267 +g27 +sg25268 +S'Textile' +p62706 +sg25270 +S'American 20th Century' +p62707 +sa(dp62708 +g25267 +g27 +sg25268 +S'Textile' +p62709 +sg25270 +S'American 20th Century' +p62710 +sa(dp62711 +g25267 +g27 +sg25268 +S'Textile' +p62712 +sg25270 +S'American 20th Century' +p62713 +sa(dp62714 +g25273 +S'(artist after)' +p62715 +sg25267 +g27 +sg25275 +S'\n' +p62716 +sg25268 +S'Melpomene Presenting Marie-Antoinette with the Works of Metastasio' +p62717 +sg25270 +S'Artist Information (' +p62718 +sa(dp62719 +g25267 +g27 +sg25268 +S'Textile' +p62720 +sg25270 +S'American 20th Century' +p62721 +sa(dp62722 +g25267 +g27 +sg25268 +S'Colcha' +p62723 +sg25270 +S'Majel G. Claflin' +p62724 +sa(dp62725 +g25267 +g27 +sg25268 +S'Colcha' +p62726 +sg25270 +S'Majel G. Claflin' +p62727 +sa(dp62728 +g25267 +g27 +sg25268 +S'Second Family House, Alfred, ME.' +p62729 +sg25270 +S'Adelaide Dyball' +p62730 +sa(dp62731 +g25267 +g27 +sg25268 +S'Pewter Coffee Urn' +p62732 +sg25270 +S'Theodore Pfitzer' +p62733 +sa(dp62734 +g25267 +g27 +sg25268 +S'Pewter Mug' +p62735 +sg25270 +S'Harry Goodman' +p62736 +sa(dp62737 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p62738 +sg25270 +S'Samuel O. Klein' +p62739 +sa(dp62740 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p62741 +sg25270 +S'Beulah Bradleigh' +p62742 +sa(dp62743 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p62744 +sg25270 +S'Beulah Bradleigh' +p62745 +sa(dp62746 +g25267 +g27 +sg25268 +S'Pewter Coffee Pot' +p62747 +sg25270 +S'Beulah Bradleigh' +p62748 +sa(dp62749 +g25273 +S'stipple engraving in brown' +p62750 +sg25267 +g27 +sg25275 +S'unknown date\n' +p62751 +sg25268 +S'Marie-Antoinette' +p62752 +sg25270 +S'Daniel Berger' +p62753 +sa(dp62754 +g25267 +g27 +sg25268 +S'Pewter Coffee Pot' +p62755 +sg25270 +S'Beulah Bradleigh' +p62756 +sa(dp62757 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p62758 +sg25270 +S'Frank Nelson' +p62759 +sa(dp62760 +g25267 +g27 +sg25268 +S'Pewter Deep Plate' +p62761 +sg25270 +S'Hester Duany' +p62762 +sa(dp62763 +g25267 +g27 +sg25268 +S'Pewter Mug' +p62764 +sg25270 +S'Henry Meyers' +p62765 +sa(dp62766 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p62767 +sg25270 +S'John Oster' +p62768 +sa(dp62769 +g25267 +g27 +sg25268 +S'Pewter Beaker' +p62770 +sg25270 +S'Arthur Johnson' +p62771 +sa(dp62772 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p62773 +sg25270 +S'Frank Nelson' +p62774 +sa(dp62775 +g25267 +g27 +sg25268 +S'Pewter Coffee Pot' +p62776 +sg25270 +S'Henry Meyers' +p62777 +sa(dp62778 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p62779 +sg25270 +S'Janet Riza' +p62780 +sa(dp62781 +g25267 +g27 +sg25268 +S'Pewter Covered Water Pitcher' +p62782 +sg25270 +S'Joseph Stonefield' +p62783 +sa(dp62784 +g25273 +S'Widener Collection' +p62785 +sg25267 +g27 +sg25275 +S'\nstipple engraving in brown' +p62786 +sg25268 +S'Marie-Antoinette' +p62787 +sg25270 +S'French 18th Century' +p62788 +sa(dp62789 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p62790 +sg25270 +S'Aaron Dermansky' +p62791 +sa(dp62792 +g25267 +g27 +sg25268 +S'Pewter Mug' +p62793 +sg25270 +S'Henry Meyers' +p62794 +sa(dp62795 +g25267 +g27 +sg25268 +S'Pewter Mug' +p62796 +sg25270 +S'Harry Goodman' +p62797 +sa(dp62798 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p62799 +sg25270 +S'Richard Schoene' +p62800 +sa(dp62801 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p62802 +sg25270 +S'Rollington Campbell' +p62803 +sa(dp62804 +g25267 +g27 +sg25268 +S'Pewter Mug' +p62805 +sg25270 +S'Francis Borelli' +p62806 +sa(dp62807 +g25267 +g27 +sg25268 +S'Pewter Flagon' +p62808 +sg25270 +S'Henry Meyers' +p62809 +sa(dp62810 +g25267 +g27 +sg25268 +S'Pewter Coffee Pot' +p62811 +sg25270 +S'Grace Halpin' +p62812 +sa(dp62813 +g25267 +g27 +sg25268 +S'Pewter Sugar Bowl' +p62814 +sg25270 +S'Samuel O. Klein' +p62815 +sa(dp62816 +g25267 +g27 +sg25268 +S'Pewter Creamer' +p62817 +sg25270 +S'Samuel O. Klein' +p62818 +sa(dp62819 +g25273 +S'stipple engraving on satin' +p62820 +sg25267 +g27 +sg25275 +S'published 1793' +p62821 +sg25268 +S'Marie-Antoinette' +p62822 +sg25270 +S'L. Legoux' +p62823 +sa(dp62824 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p62825 +sg25270 +S'Hans Westendorff' +p62826 +sa(dp62827 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p62828 +sg25270 +S'Hans Westendorff' +p62829 +sa(dp62830 +g25267 +g27 +sg25268 +S'Pewter Dipper' +p62831 +sg25270 +S'Hyman Pearlman' +p62832 +sa(dp62833 +g25267 +g27 +sg25268 +S'Pewter Cup' +p62834 +sg25270 +S'Rollington Campbell' +p62835 +sa(dp62836 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p62837 +sg25270 +S'Charles Cullen' +p62838 +sa(dp62839 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p62840 +sg25270 +S'Gertrude Schmidt' +p62841 +sa(dp62842 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p62843 +sg25270 +S'Charles Cullen' +p62844 +sa(dp62845 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p62846 +sg25270 +S'Charles Cullen' +p62847 +sa(dp62848 +g25267 +g27 +sg25268 +S'Pewter Box' +p62849 +sg25270 +S'Harry Goodman' +p62850 +sa(dp62851 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p62852 +sg25270 +S'A. Zaidenberg' +p62853 +sa(dp62854 +g25273 +S'(artist after)' +p62855 +sg25267 +g27 +sg25275 +S'\n' +p62856 +sg25268 +S'Louis XVI' +p62857 +sg25270 +S'Artist Information (' +p62858 +sa(dp62859 +g25267 +g27 +sg25268 +S'Pewter Creamer' +p62860 +sg25270 +S'Beulah Bradleigh' +p62861 +sa(dp62862 +g25267 +g27 +sg25268 +S'Shaker Box' +p62863 +sg25270 +S'Peter Antonelli' +p62864 +sa(dp62865 +g25267 +g27 +sg25268 +S'Shaker Cedar Bucket' +p62866 +sg25270 +S'T. Joyce' +p62867 +sa(dp62868 +g25267 +g27 +sg25268 +S'Shaker Bucket' +p62869 +sg25270 +S'George V. Vezolles' +p62870 +sa(dp62871 +g25267 +g27 +sg25268 +S'Box' +p62872 +sg25270 +S'Columbus Simpson' +p62873 +sa(dp62874 +g25267 +g27 +sg25268 +S'Mug' +p62875 +sg25270 +S'Ann Gene Buckley' +p62876 +sa(dp62877 +g25267 +g27 +sg25268 +S'Sugar Plantation Marker' +p62878 +sg25270 +S'American 20th Century' +p62879 +sa(dp62880 +g25267 +g27 +sg25268 +S'Door' +p62881 +sg25270 +S'American 20th Century' +p62882 +sa(dp62883 +g25267 +g27 +sg25268 +S'Tools' +p62884 +sg25270 +S'Rose Campbell-Gerke' +p62885 +sa(dp62886 +g25267 +g27 +sg25268 +S'Wooden Spade' +p62887 +sg25270 +S'Archie Thompson' +p62888 +sa(dp62889 +g25268 +S'Madonna and Child' +p62890 +sg25270 +S'Bartolomeo Vivarini' +p62891 +sg25273 +S'tempera on panel' +p62892 +sg25275 +S'c. 1475' +p62893 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007c9.jpg' +p62894 +sg25267 +g27 +sa(dp62895 +g25273 +S'Widener Collection' +p62896 +sg25267 +g27 +sg25275 +S'\nhand-colored engraving on blue paper' +p62897 +sg25268 +S'Louis XVI [upper left]' +p62898 +sg25270 +S'French 18th Century' +p62899 +sa(dp62900 +g25267 +g27 +sg25268 +S'Wooden Shovel' +p62901 +sg25270 +S'Albert Ryder' +p62902 +sa(dp62903 +g25267 +g27 +sg25268 +S'Grain Scoop' +p62904 +sg25270 +S'Hugh Clarke' +p62905 +sa(dp62906 +g25267 +g27 +sg25268 +S'Shot Cannister' +p62907 +sg25270 +S'Sydney Roberts' +p62908 +sa(dp62909 +g25267 +g27 +sg25268 +S'Iron Mannequin Shoe' +p62910 +sg25270 +S'Wellington Blewett' +p62911 +sa(dp62912 +g25267 +g27 +sg25268 +S"Shoemaker's Sign Board" +p62913 +sg25270 +S'Elmer G. Anderson' +p62914 +sa(dp62915 +g25267 +g27 +sg25268 +S'Shoe Shop Sign' +p62916 +sg25270 +S'Alfred Denghausen' +p62917 +sa(dp62918 +g25267 +g27 +sg25268 +S"Shop Sign: Man's Shoe" +p62919 +sg25270 +S'Dorothy Handy' +p62920 +sa(dp62921 +g25267 +g27 +sg25268 +S'Decorative Ironwork & Locksmith Sign' +p62922 +sg25270 +S'Ray Price' +p62923 +sa(dp62924 +g25267 +g27 +sg25268 +S'Livery Stable Sign' +p62925 +sg25270 +S'Sydney Roberts' +p62926 +sa(dp62927 +g25267 +g27 +sg25268 +S'Stage Office Sign' +p62928 +sg25270 +S'Francis Law Durand' +p62929 +sa(dp62930 +g25273 +S'Widener Collection' +p62931 +sg25267 +g27 +sg25275 +S'\nhand-colored engraving on blue paper' +p62932 +sg25268 +S'Marie-Antoinette [upper right]' +p62933 +sg25270 +S'French 18th Century' +p62934 +sa(dp62935 +g25267 +g27 +sg25268 +S'Stage Office Sign' +p62936 +sg25270 +S'Francis Law Durand' +p62937 +sa(dp62938 +g25267 +g27 +sg25268 +S'Shoe Shop Sign' +p62939 +sg25270 +S'Alfred Denghausen' +p62940 +sa(dp62941 +g25267 +g27 +sg25268 +S'Metal Hand' +p62942 +sg25270 +S'Joseph Goldberg' +p62943 +sa(dp62944 +g25267 +g27 +sg25268 +S'Hand Glove Advertisement' +p62945 +sg25270 +S'Robert Calvin' +p62946 +sa(dp62947 +g25267 +g27 +sg25268 +S'Fish Shop Sign' +p62948 +sg25270 +S'Joseph Goldberg' +p62949 +sa(dp62950 +g25267 +g27 +sg25268 +S'Mortar and Pestle Sign' +p62951 +sg25270 +S'Sydney Roberts' +p62952 +sa(dp62953 +g25267 +g27 +sg25268 +S'Barber Pole' +p62954 +sg25270 +S'Emile Cero' +p62955 +sa(dp62956 +g25267 +g27 +sg25268 +S"Gold Beater's Sign" +p62957 +sg25270 +S'Elmer G. Anderson' +p62958 +sa(dp62959 +g25267 +g27 +sg25268 +S'Shop Sign' +p62960 +sg25270 +S'John Sullivan' +p62961 +sa(dp62962 +g25267 +g27 +sg25268 +S'Trademark for Flagon' +p62963 +sg25270 +S'Carmel Wilson' +p62964 +sa(dp62965 +g25273 +S'Widener Collection' +p62966 +sg25267 +g27 +sg25275 +S'\nhand-colored engraving on blue paper' +p62967 +sg25268 +S'Louis-Joseph, Dauphin of France [lower left]' +p62968 +sg25270 +S'French 18th Century' +p62969 +sa(dp62970 +g25267 +g27 +sg25268 +S'Slipper Match Box' +p62971 +sg25270 +S'Regina Henderer' +p62972 +sa(dp62973 +g25267 +g27 +sg25268 +S'Silver Bowl' +p62974 +sg25270 +S'Hester Duany' +p62975 +sa(dp62976 +g25267 +g27 +sg25268 +S'Silver Tray' +p62977 +sg25270 +S'Giacinto Capelli' +p62978 +sa(dp62979 +g25267 +g27 +sg25268 +S'Silver Bowl' +p62980 +sg25270 +S'Amelia Tuccio' +p62981 +sa(dp62982 +g25267 +g27 +sg25268 +S'Silver Mug' +p62983 +sg25270 +S'Vincent Carano' +p62984 +sa(dp62985 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p62986 +sg25270 +S'Holger Hansen' +p62987 +sa(dp62988 +g25267 +g27 +sg25268 +S'Silver Tumbler Cup' +p62989 +sg25270 +S'Sidney Liswood' +p62990 +sa(dp62991 +g25267 +g27 +sg25268 +S'Silver Tumbler Cup' +p62992 +sg25270 +S'Palmyra Pimentel' +p62993 +sa(dp62994 +g25267 +g27 +sg25268 +S'Silver Bowl' +p62995 +sg25270 +S'Giacinto Capelli' +p62996 +sa(dp62997 +g25267 +g27 +sg25268 +S'Silver Snuff Box' +p62998 +sg25270 +S'Columbus Simpson' +p62999 +sa(dp63000 +g25273 +S'Widener Collection' +p63001 +sg25267 +g27 +sg25275 +S'\nhand-colored engraving on blue paper' +p63002 +sg25268 +S'Marie-Therese, Daughter of Louis XVI and Marie-Antoinette [lower right]' +p63003 +sg25270 +S'French 18th Century' +p63004 +sa(dp63005 +g25267 +g27 +sg25268 +S'Silver Beaker' +p63006 +sg25270 +S'Harry Goodman' +p63007 +sa(dp63008 +g25267 +g27 +sg25268 +S'Silver Fork' +p63009 +sg25270 +S'American 20th Century' +p63010 +sa(dp63011 +g25267 +g27 +sg25268 +S'Silver Snuff Box' +p63012 +sg25270 +S'Lawrence Flynn' +p63013 +sa(dp63014 +g25267 +g27 +sg25268 +S'Silver Jug for Cream' +p63015 +sg25270 +S'David P Willoughby' +p63016 +sa(dp63017 +g25267 +g27 +sg25268 +S'Silver Mug' +p63018 +sg25270 +S'Aaron Fastovsky' +p63019 +sa(dp63020 +g25267 +g27 +sg25268 +S'Hand Sickle' +p63021 +sg25270 +S'Lloyd Charles Lemcke' +p63022 +sa(dp63023 +g25267 +g27 +sg25268 +S'Wrought Iron Sickle' +p63024 +sg25270 +S'Frank Gray' +p63025 +sa(dp63026 +g25267 +g27 +sg25268 +S'Pioneer Sickle' +p63027 +sg25270 +S'LeRoy Griffith' +p63028 +sa(dp63029 +g25267 +g27 +sg25268 +S'Sickle' +p63030 +sg25270 +S'James M. Lawson' +p63031 +sa(dp63032 +g25267 +g27 +sg25268 +S'Cloth Shuttle' +p63033 +sg25270 +S'Albert Geuppert' +p63034 +sa(dp63035 +g25273 +S'(artist after)' +p63036 +sg25267 +g27 +sg25275 +S'\n' +p63037 +sg25268 +S'Louis XVI, Marie-Antoinette, and the Dauphin' +p63038 +sg25270 +S'Artist Information (' +p63039 +sa(dp63040 +g25267 +g27 +sg25268 +S'"Shutter Dog"' +p63041 +sg25270 +S'Donald Streeter' +p63042 +sa(dp63043 +g25267 +g27 +sg25268 +S'"Shutter Dog"' +p63044 +sg25270 +S'F.W. Powell' +p63045 +sa(dp63046 +g25267 +g27 +sg25268 +S'Shutter Fastener' +p63047 +sg25270 +S'American 20th Century' +p63048 +sa(dp63049 +g25267 +g27 +sg25268 +S'Shutter Stay' +p63050 +sg25270 +S'Floyd R. Sharp' +p63051 +sa(dp63052 +g25267 +g27 +sg25268 +S'Iron Shutter Latch' +p63053 +sg25270 +S'William Paul Childers' +p63054 +sa(dp63055 +g25267 +g27 +sg25268 +S'Iron Shutter Fastener' +p63056 +sg25270 +S'James M. Lawson' +p63057 +sa(dp63058 +g25267 +g27 +sg25268 +S'Spade' +p63059 +sg25270 +S'Herman O. Stroh' +p63060 +sa(dp63061 +g25267 +g27 +sg25268 +S'Wooden Grain Shovel' +p63062 +sg25270 +S'Pearl Davis' +p63063 +sa(dp63064 +g25267 +g27 +sg25268 +S'Grain Shovel' +p63065 +sg25270 +S'Eugene Bartz' +p63066 +sa(dp63067 +g25267 +g27 +sg25268 +S'Silver Cake Basket' +p63068 +sg25270 +S'Giacinto Capelli' +p63069 +sa(dp63070 +g25273 +S'(artist after)' +p63071 +sg25267 +g27 +sg25275 +S'\n' +p63072 +sg25268 +S'Louis XVI, Marie-Antoinette, and the Dauphin' +p63073 +sg25270 +S'Artist Information (' +p63074 +sa(dp63075 +g25267 +g27 +sg25268 +S'Silver Bowl' +p63076 +sg25270 +S'Amelia Tuccio' +p63077 +sa(dp63078 +g25267 +g27 +sg25268 +S'Silver Wine Taster' +p63079 +sg25270 +S'Horace Reina' +p63080 +sa(dp63081 +g25267 +g27 +sg25268 +S'Silver Dish' +p63082 +sg25270 +S'Clayton Braun' +p63083 +sa(dp63084 +g25267 +g27 +sg25268 +S'Silver Bowl' +p63085 +sg25270 +S'Charles Cullen' +p63086 +sa(dp63087 +g25267 +g27 +sg25268 +S'Silver Bowl' +p63088 +sg25270 +S'Clayton Braun' +p63089 +sa(dp63090 +g25267 +g27 +sg25268 +S'Silver Bowl' +p63091 +sg25270 +S'Hester Duany' +p63092 +sa(dp63093 +g25267 +g27 +sg25268 +S'Silver Beaker' +p63094 +sg25270 +S'Michael Fenga' +p63095 +sa(dp63096 +g25267 +g27 +sg25268 +S'Silver Beaker' +p63097 +sg25270 +S'Palmyra Pimentel' +p63098 +sa(dp63099 +g25267 +g27 +sg25268 +S'Silver Beaker' +p63100 +sg25270 +S'Dorothy Dwin' +p63101 +sa(dp63102 +g25267 +g27 +sg25268 +S'Silver Beaker' +p63103 +sg25270 +S'Horace Reina' +p63104 +sa(dp63105 +g25273 +S'(artist after)' +p63106 +sg25267 +g27 +sg25275 +S'\n' +p63107 +sg25268 +S'Louis XVI, Marie-Antoinette, and the Dauphin' +p63108 +sg25270 +S'Artist Information (' +p63109 +sa(dp63110 +g25267 +g27 +sg25268 +S'Silver Beaker' +p63111 +sg25270 +S'Holger Hansen' +p63112 +sa(dp63113 +g25267 +g27 +sg25268 +S'Silver Christening Bowl' +p63114 +sg25270 +S'Paul Ward' +p63115 +sa(dp63116 +g25267 +g27 +sg25268 +S'Silver Christening Bowl' +p63117 +sg25270 +S'Horace Reina' +p63118 +sa(dp63119 +g25267 +g27 +sg25268 +S'Silver Basin' +p63120 +sg25270 +S'Horace Reina' +p63121 +sa(dp63122 +g25267 +g27 +sg25268 +S'Silver Baptismal Basin' +p63123 +sg25270 +S'Horace Reina' +p63124 +sa(dp63125 +g25267 +g27 +sg25268 +S'Silver Christening Bowl' +p63126 +sg25270 +S'Paul Ward' +p63127 +sa(dp63128 +g25267 +g27 +sg25268 +S'Silver Christening Bowl' +p63129 +sg25270 +S'Paul Ward' +p63130 +sa(dp63131 +g25267 +g27 +sg25268 +S'Silver Baptismal Basin' +p63132 +sg25270 +S'Michael Fenga' +p63133 +sa(dp63134 +g25267 +g27 +sg25268 +S'Silver Alms Dish' +p63135 +sg25270 +S'Simon Weiss' +p63136 +sa(dp63137 +g25267 +g27 +sg25268 +S'Silver Spoon Holder' +p63138 +sg25270 +S'Samuel O. Klein' +p63139 +sa(dp63140 +g25273 +S'(artist after)' +p63141 +sg25267 +g27 +sg25275 +S'\n' +p63142 +sg25268 +S'Louis XVI, Marie-Antoinette, and the Dauphin' +p63143 +sg25270 +S'Artist Information (' +p63144 +sa(dp63145 +g25267 +g27 +sg25268 +S'Silver Spoon Holder' +p63146 +sg25270 +S'Dana Bartlett' +p63147 +sa(dp63148 +g25267 +g27 +sg25268 +S'Silver Gravy Ladle' +p63149 +sg25270 +S'Francis Law Durand' +p63150 +sa(dp63151 +g25267 +g27 +sg25268 +S'Silver Sugar Spoon' +p63152 +sg25270 +S'Anthony Zuccarello' +p63153 +sa(dp63154 +g25267 +g27 +sg25268 +S'Silver Pipkin' +p63155 +sg25270 +S'Amelia Tuccio' +p63156 +sa(dp63157 +g25267 +g27 +sg25268 +S'Silver Folding Spoon' +p63158 +sg25270 +S'Alfred Walbeck' +p63159 +sa(dp63160 +g25267 +g27 +sg25268 +S'Silver Spoon' +p63161 +sg25270 +S'Erwin Schwabe' +p63162 +sa(dp63163 +g25267 +g27 +sg25268 +S'Silver Spoon' +p63164 +sg25270 +S'William P. Shearwood' +p63165 +sa(dp63166 +g25267 +g27 +sg25268 +S'Silver Sugar Spoon' +p63167 +sg25270 +S'Francis Law Durand' +p63168 +sa(dp63169 +g25267 +g27 +sg25268 +S'Silver Gravy Ladle' +p63170 +sg25270 +S'Francis Law Durand' +p63171 +sa(dp63172 +g25267 +g27 +sg25268 +S'Silver Spoon' +p63173 +sg25270 +S'Erwin Schwabe' +p63174 +sa(dp63175 +g25273 +S'Widener Collection' +p63176 +sg25267 +g27 +sg25275 +S'\netching and engraving' +p63177 +sg25268 +S'La Dame du Palais de la Reine' +p63178 +sg25270 +S'French 18th Century' +p63179 +sa(dp63180 +g25267 +g27 +sg25268 +S'Silver Funeral Spoon' +p63181 +sg25270 +S'Jack Staloff' +p63182 +sa(dp63183 +g25267 +g27 +sg25268 +S'Silver Gravy Ladle' +p63184 +sg25270 +S'Eugene Barrell' +p63185 +sa(dp63186 +g25267 +g27 +sg25268 +S'Silver Whiskey Flask' +p63187 +sg25270 +S'Robert Stewart' +p63188 +sa(dp63189 +g25267 +g27 +sg25268 +S'Silver Communion Beaker' +p63190 +sg25270 +S'Hester Duany' +p63191 +sa(dp63192 +g25267 +g27 +sg25268 +S'Silver Whiskey Flask' +p63193 +sg25270 +S'Robert Stewart' +p63194 +sa(dp63195 +g25267 +g27 +sg25268 +S'Silver and Glass Flagon' +p63196 +sg25270 +S'Carmel Wilson' +p63197 +sa(dp63198 +g25267 +g27 +sg25268 +S'Silver Creamer' +p63199 +sg25270 +S'Arsen Maralian' +p63200 +sa(dp63201 +g25267 +g27 +sg25268 +S'Silver Creamer' +p63202 +sg25270 +S'Nicholas Zupa' +p63203 +sa(dp63204 +g25267 +g27 +sg25268 +S'Silver Communion Cup' +p63205 +sg25270 +S'Aaron Fastovsky' +p63206 +sa(dp63207 +g25267 +g27 +sg25268 +S'Silver Chocolate Pot' +p63208 +sg25270 +S'Leo Drozdoff' +p63209 +sa(dp63210 +g25273 +S'etching and mezzotint in brown' +p63211 +sg25267 +g27 +sg25275 +S'unknown date\n' +p63212 +sg25268 +S'Le Traitre Louis XVI' +p63213 +sg25270 +S'Villeneuve' +p63214 +sa(dp63215 +g25267 +g27 +sg25268 +S'Silver Coffee Pot' +p63216 +sg25270 +S'American 20th Century' +p63217 +sa(dp63218 +g25267 +g27 +sg25268 +S'Silver Coffee Pot' +p63219 +sg25270 +S'Aaron Fastovsky' +p63220 +sa(dp63221 +g25267 +g27 +sg25268 +S'Silver Coffee Pot' +p63222 +sg25270 +S'Simon Weiss' +p63223 +sa(dp63224 +g25267 +g27 +sg25268 +S'Silver Coffee Pot' +p63225 +sg25270 +S'Michael Fenga' +p63226 +sa(dp63227 +g25267 +g27 +sg25268 +S'Silver Candlestick' +p63228 +sg25270 +S'Horace Reina' +p63229 +sa(dp63230 +g25267 +g27 +sg25268 +S'Silver Candle Snuffer' +p63231 +sg25270 +S'Michael Fenga' +p63232 +sa(dp63233 +g25267 +g27 +sg25268 +S'Silver Candlestick Holder' +p63234 +sg25270 +S'Clayton Braun' +p63235 +sa(dp63236 +g25267 +g27 +sg25268 +S'Silver Caster' +p63237 +sg25270 +S'Hester Duany' +p63238 +sa(dp63239 +g25267 +g27 +sg25268 +S'Silver Caster' +p63240 +sg25270 +S'Louis Annino' +p63241 +sa(dp63242 +g25267 +g27 +sg25268 +S'Silver Trencher Salt' +p63243 +sg25270 +S'Eugene La Foret' +p63244 +sa(dp63245 +g25268 +S'The Alba Madonna' +p63246 +sg25270 +S'Raphael' +p63247 +sg25273 +S'oil on panel transferred to canvas' +p63248 +sg25275 +S'c. 1510' +p63249 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005e1.jpg' +p63250 +sg25267 +S"After four years in Florence, Raphael moved to Rome in 1508, probably to execute more significant commissions under the papal reign of Julius II. The major work in America from Raphael's Roman period is \n The Alba Madonna\n " +p63251 +sa(dp63252 +g25273 +S'etching and mezzotint in brown' +p63253 +sg25267 +g27 +sg25275 +S'unknown date\n' +p63254 +sg25268 +S'La Panthere Autrichienne' +p63255 +sg25270 +S'Villeneuve' +p63256 +sa(dp63257 +g25267 +g27 +sg25268 +S'Silver Trencher Salt' +p63258 +sg25270 +S'Clayton Braun' +p63259 +sa(dp63260 +g25267 +g27 +sg25268 +S'Silver Dredger' +p63261 +sg25270 +S'Michael Fenga' +p63262 +sa(dp63263 +g25267 +g27 +sg25268 +S'Silver Salt Cellar' +p63264 +sg25270 +S'Amelia Tuccio' +p63265 +sa(dp63266 +g25267 +g27 +sg25268 +S'Silver Salt Cellar' +p63267 +sg25270 +S'Walter Doran' +p63268 +sa(dp63269 +g25267 +g27 +sg25268 +S'Silver Salt Trencher' +p63270 +sg25270 +S'Kalamian Walton' +p63271 +sa(dp63272 +g25267 +g27 +sg25268 +S'Silver Caster' +p63273 +sg25270 +S'Hans Westendorff' +p63274 +sa(dp63275 +g25267 +g27 +sg25268 +S'Silver Brazier' +p63276 +sg25270 +S'Amelia Tuccio' +p63277 +sa(dp63278 +g25267 +g27 +sg25268 +S'Silver Brazier' +p63279 +sg25270 +S'Horace Reina' +p63280 +sa(dp63281 +g25267 +g27 +sg25268 +S'Silver Basin' +p63282 +sg25270 +S'Vincent Carano' +p63283 +sa(dp63284 +g25267 +g27 +sg25268 +S'Silver Bowl' +p63285 +sg25270 +S'Giacinto Capelli' +p63286 +sa(dp63287 +g25273 +S'(artist)' +p63288 +sg25267 +g27 +sg25275 +S'\n' +p63289 +sg25268 +S'Belisaire' +p63290 +sg25270 +S'Artist Information (' +p63291 +sa(dp63292 +g25267 +g27 +sg25268 +S'Silver Baptismal Bowl' +p63293 +sg25270 +S'Giacinto Capelli' +p63294 +sa(dp63295 +g25267 +g27 +sg25268 +S'Silver Bowl' +p63296 +sg25270 +S'Michael Fenga' +p63297 +sa(dp63298 +g25267 +g27 +sg25268 +S'Silver Saucepan with Cover' +p63299 +sg25270 +S'Giacinto Capelli' +p63300 +sa(dp63301 +g25267 +g27 +sg25268 +S'Silver Bowl' +p63302 +sg25270 +S'Amelia Tuccio' +p63303 +sa(dp63304 +g25267 +g27 +sg25268 +S'Silver Bowl' +p63305 +sg25270 +S'Charles Cullen' +p63306 +sa(dp63307 +g25267 +g27 +sg25268 +S'Silver Mug' +p63308 +sg25270 +S'Amelia Tuccio' +p63309 +sa(dp63310 +g25267 +g27 +sg25268 +S'Silver Mug' +p63311 +sg25270 +S'Isidore Steinberg' +p63312 +sa(dp63313 +g25267 +g27 +sg25268 +S'Silver Mug' +p63314 +sg25270 +S'Holger Hansen' +p63315 +sa(dp63316 +g25267 +g27 +sg25268 +S'Silver Mug' +p63317 +sg25270 +S'Horace Reina' +p63318 +sa(dp63319 +g25267 +g27 +sg25268 +S'Silver Mug' +p63320 +sg25270 +S'Aaron Fastovsky' +p63321 +sa(dp63322 +g25273 +S'pen and black ink with brown wash and white heightening' +p63323 +sg25267 +g27 +sg25275 +S'published 1767' +p63324 +sg25268 +S'Ecce Spectaculum Dignum' +p63325 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p63326 +sa(dp63327 +g25267 +g27 +sg25268 +S'Silver Mug' +p63328 +sg25270 +S'Clayton Braun' +p63329 +sa(dp63330 +g25267 +g27 +sg25268 +S'Silver Mug' +p63331 +sg25270 +S'Vincent Carano' +p63332 +sa(dp63333 +g25267 +g27 +sg25268 +S'Silver Mug' +p63334 +sg25270 +S'Amelia Tuccio' +p63335 +sa(dp63336 +g25267 +g27 +sg25268 +S'Silver Cup' +p63337 +sg25270 +S'Hester Duany' +p63338 +sa(dp63339 +g25267 +g27 +sg25268 +S'Silver Cup' +p63340 +sg25270 +S'Michael Fenga' +p63341 +sa(dp63342 +g25267 +g27 +sg25268 +S'Silver Mug' +p63343 +sg25270 +S'Vincent Carano' +p63344 +sa(dp63345 +g25267 +g27 +sg25268 +S'Silver Communion Mug' +p63346 +sg25270 +S'Isidore Steinberg' +p63347 +sa(dp63348 +g25267 +g27 +sg25268 +S'Silver Mug' +p63349 +sg25270 +S'Hester Duany' +p63350 +sa(dp63351 +g25267 +g27 +sg25268 +S'Silver Mug' +p63352 +sg25270 +S'Leo Drozdoff' +p63353 +sa(dp63354 +g25267 +g27 +sg25268 +S'Silver Fork' +p63355 +sg25270 +S'Charlotte Winter' +p63356 +sa(dp63357 +g25273 +S'pen and black ink with brown wash and white heightening' +p63358 +sg25267 +g27 +sg25275 +S'published 1767' +p63359 +sg25268 +S'Les Monstres! voil\xc3\xa0 sa r\xc3\xa9compense' +p63360 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p63361 +sa(dp63362 +g25267 +g27 +sg25268 +S'Silver Fork' +p63363 +sg25270 +S'Herbert Russin' +p63364 +sa(dp63365 +g25267 +g27 +sg25268 +S'Silver Knife' +p63366 +sg25270 +S'Charlotte Winter' +p63367 +sa(dp63368 +g25267 +g27 +sg25268 +S'Silver Caudle Cup' +p63369 +sg25270 +S'Amelia Tuccio' +p63370 +sa(dp63371 +g25267 +g27 +sg25268 +S'Silver Cup with Cover' +p63372 +sg25270 +S'Vincent Carano' +p63373 +sa(dp63374 +g25267 +g27 +sg25268 +S'Silver Caudle Cup' +p63375 +sg25270 +S'Lawrence Flynn' +p63376 +sa(dp63377 +g25267 +g27 +sg25268 +S'Silver Mustard Pot' +p63378 +sg25270 +S'Hester Duany' +p63379 +sa(dp63380 +g25267 +g27 +sg25268 +S'Silver Creamer' +p63381 +sg25270 +S'Amelia Tuccio' +p63382 +sa(dp63383 +g25267 +g27 +sg25268 +S'Silver Tea Set Creamer' +p63384 +sg25270 +S'Simon Weiss' +p63385 +sa(dp63386 +g25267 +g27 +sg25268 +S'Silver Creamer' +p63387 +sg25270 +S'Hester Duany' +p63388 +sa(dp63389 +g25267 +g27 +sg25268 +S'Silver Water Pitcher' +p63390 +sg25270 +S'Clayton Braun' +p63391 +sa(dp63392 +g25273 +S'pen and black ink with brown wash and white heightening' +p63393 +sg25267 +g27 +sg25275 +S'published 1767' +p63394 +sg25268 +S"Qu'il approche, et que je l'embrasse" +p63395 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p63396 +sa(dp63397 +g25267 +g27 +sg25268 +S'Silver Creamer' +p63398 +sg25270 +S'Matthew Mangiacotti' +p63399 +sa(dp63400 +g25267 +g27 +sg25268 +S'Silver Creamer' +p63401 +sg25270 +S'Amelia Tuccio' +p63402 +sa(dp63403 +g25267 +g27 +sg25268 +S'Silver Creamer' +p63404 +sg25270 +S'Giacinto Capelli' +p63405 +sa(dp63406 +g25267 +g27 +sg25268 +S'Silver Creamer' +p63407 +sg25270 +S'Matthew Mangiacotti' +p63408 +sa(dp63409 +g25267 +g27 +sg25268 +S'Silver Creamer' +p63410 +sg25270 +S'Eugene Barrell' +p63411 +sa(dp63412 +g25267 +g27 +sg25268 +S'Silver Creamer' +p63413 +sg25270 +S'Paul Ward' +p63414 +sa(dp63415 +g25267 +g27 +sg25268 +S'Silver Creamer' +p63416 +sg25270 +S'Michael Fenga' +p63417 +sa(dp63418 +g25267 +g27 +sg25268 +S'Silver Creamer' +p63419 +sg25270 +S'Simon Weiss' +p63420 +sa(dp63421 +g25267 +g27 +sg25268 +S'Silver Tea Caddy' +p63422 +sg25270 +S'Michael Fenga' +p63423 +sa(dp63424 +g25267 +g27 +sg25268 +S'Silver Tea Caddy' +p63425 +sg25270 +S'Hester Duany' +p63426 +sa(dp63427 +g25273 +S'pen and black ink with brown wash and white heightening' +p63428 +sg25267 +g27 +sg25275 +S'published 1767' +p63429 +sg25268 +S'Tremblez, Laches: son Innocence et sa Vertus me sont connues' +p63430 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p63431 +sa(dp63432 +g25267 +g27 +sg25268 +S'Silver Tea Caddy' +p63433 +sg25270 +S'Michael Fenga' +p63434 +sa(dp63435 +g25267 +g27 +sg25268 +S'Silver Snuff Box' +p63436 +sg25270 +S'Clayton Braun' +p63437 +sa(dp63438 +g25267 +g27 +sg25268 +S'Silver Sauce Boat' +p63439 +sg25270 +S'Michael Fenga' +p63440 +sa(dp63441 +g25267 +g27 +sg25268 +S'Silver Tea Caddy' +p63442 +sg25270 +S'Nicholas Zupa' +p63443 +sa(dp63444 +g25267 +g27 +sg25268 +S'Silver Sauce Boat' +p63445 +sg25270 +S'Amelia Tuccio' +p63446 +sa(dp63447 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p63448 +sg25270 +S'Michael Fenga' +p63449 +sa(dp63450 +g25267 +g27 +sg25268 +S'Silver Sauce Boat' +p63451 +sg25270 +S'Michael Fenga' +p63452 +sa(dp63453 +g25267 +g27 +sg25268 +S'Silver Sauce Boat' +p63454 +sg25270 +S'Francisco Alvarez' +p63455 +sa(dp63456 +g25267 +g27 +sg25268 +S'Silver Sauce Boat' +p63457 +sg25270 +S'Aaron Fastovsky' +p63458 +sa(dp63459 +g25267 +g27 +sg25268 +S'Silver Sauce Boat' +p63460 +sg25270 +S'Giacinto Capelli' +p63461 +sa(dp63462 +g25273 +S'French, 1723 - 1799' +p63463 +sg25267 +g27 +sg25275 +S'(author)' +p63464 +sg25268 +S'Contes moraux (volume I)' +p63465 +sg25270 +S'Artist Information (' +p63466 +sa(dp63467 +g25267 +g27 +sg25268 +S'Silver Meat Platter' +p63468 +sg25270 +S'Hester Duany' +p63469 +sa(dp63470 +g25267 +g27 +sg25268 +S'Silver Tray' +p63471 +sg25270 +S'Horace Reina' +p63472 +sa(dp63473 +g25267 +g27 +sg25268 +S'Silver Tray' +p63474 +sg25270 +S'Michael Fenga' +p63475 +sa(dp63476 +g25267 +g27 +sg25268 +S'Silver Tray' +p63477 +sg25270 +S'Michael Fenga' +p63478 +sa(dp63479 +g25267 +g27 +sg25268 +S'Silver Salver' +p63480 +sg25270 +S'Clayton Braun' +p63481 +sa(dp63482 +g25267 +g27 +sg25268 +S'Silver Salver' +p63483 +sg25270 +S'Milton Grubstein' +p63484 +sa(dp63485 +g25267 +g27 +sg25268 +S'Silver Salver' +p63486 +sg25270 +S'Vincent Carano' +p63487 +sa(dp63488 +g25267 +g27 +sg25268 +S'Silver Tray' +p63489 +sg25270 +S'Simon Weiss' +p63490 +sa(dp63491 +g25267 +g27 +sg25268 +S'Silver Salver' +p63492 +sg25270 +S'Vincent Carano' +p63493 +sa(dp63494 +g25267 +g27 +sg25268 +S'Silver Porringer' +p63495 +sg25270 +S'Amelia Tuccio' +p63496 +sa(dp63497 +g25273 +S'French, 1723 - 1799' +p63498 +sg25267 +g27 +sg25275 +S'(author)' +p63499 +sg25268 +S'Contes moraux (volume II)' +p63500 +sg25270 +S'Artist Information (' +p63501 +sa(dp63502 +g25267 +g27 +sg25268 +S'Silver Bowl' +p63503 +sg25270 +S'Amelia Tuccio' +p63504 +sa(dp63505 +g25267 +g27 +sg25268 +S'Silver Porringer' +p63506 +sg25270 +S'Clayton Braun' +p63507 +sa(dp63508 +g25267 +g27 +sg25268 +S'Silver Porringer' +p63509 +sg25270 +S'Horace Reina' +p63510 +sa(dp63511 +g25267 +g27 +sg25268 +S'Silver Porringer' +p63512 +sg25270 +S'Giacinto Capelli' +p63513 +sa(dp63514 +g25267 +g27 +sg25268 +S'Silver Porringer' +p63515 +sg25270 +S'Herbert Russin' +p63516 +sa(dp63517 +g25267 +g27 +sg25268 +S'Silver Mug' +p63518 +sg25270 +S'Hester Duany' +p63519 +sa(dp63520 +g25267 +g27 +sg25268 +S'Silver Mug' +p63521 +sg25270 +S'Aaron Fastovsky' +p63522 +sa(dp63523 +g25267 +g27 +sg25268 +S'Silver Mug' +p63524 +sg25270 +S'Leo Drozdoff' +p63525 +sa(dp63526 +g25267 +g27 +sg25268 +S'Silver Mug' +p63527 +sg25270 +S'Palmyra Pimentel' +p63528 +sa(dp63529 +g25267 +g27 +sg25268 +S'Silver Mug' +p63530 +sg25270 +S'Artist Information (' +p63531 +sa(dp63532 +g25273 +S'French, 1723 - 1799' +p63533 +sg25267 +g27 +sg25275 +S'(author)' +p63534 +sg25268 +S'Contes moraux (volume III)' +p63535 +sg25270 +S'Artist Information (' +p63536 +sa(dp63537 +g25267 +S'This locomotive is made from tinned sheet iron painted with oil colors and touches\n of gilt; it is fitted with a clock spring for propulsion. Clockwork mechanisms reached\n a peak in the twenty-five years following the Civil War. Locomotives were among\n the most popular clockwork toys. This toy dates from the third quarter of the nineteenth\n century. The cowcatcher in front, the eagle on the headlight, and the broad funnel\n characterize an early stage in the development of the American locomotive. A bell\n (now missing) was originally suspended from the scrolling frame arched across the\n top of the boiler. The locomotive runs on four cast iron wheels. In place of spokes,\n the wheels have ornate tracery.\n ' +p63538 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002ff.jpg' +p63539 +sg25268 +S'Toy Locomotive' +p63540 +sg25270 +S'Charles Henning' +p63541 +sa(dp63542 +g25267 +g27 +sg25268 +S'Top' +p63543 +sg25270 +S'Mina Lowry' +p63544 +sa(dp63545 +g25267 +g27 +sg25268 +S'Doll' +p63546 +sg25270 +S'Esther Peck' +p63547 +sa(dp63548 +g25267 +S'This small horse -- only twelve inches high -- could not have been a hobbyhorse,\n but it was a delightful toy in the hobbyhorse style. Made about 1835 in Pennsylvania,\n it was carved from a single piece of pine. The eyes, nostrils, hooves, and horns\n are painted. Iron nails driven into the top of the neck keep a horizontal crack\n from opening further.\n ' +p63549 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004b7.jpg' +p63550 +sg25268 +S'Toy Horse' +p63551 +sg25270 +S'Mina Lowry' +p63552 +sa(dp63553 +g25267 +g27 +sg25268 +S'Silver Teaspoon' +p63554 +sg25270 +S'Kalamian Walton' +p63555 +sa(dp63556 +g25267 +g27 +sg25268 +S'Silver Teaspoon' +p63557 +sg25270 +S'Kalamian Walton' +p63558 +sa(dp63559 +g25267 +g27 +sg25268 +S'Silver Spoon' +p63560 +sg25270 +S'Horace Reina' +p63561 +sa(dp63562 +g25267 +g27 +sg25268 +S'Silver Ladle' +p63563 +sg25270 +S'Karl Joubert' +p63564 +sa(dp63565 +g25267 +g27 +sg25268 +S'Silver Ladle' +p63566 +sg25270 +S'Karl Joubert' +p63567 +sa(dp63568 +g25267 +g27 +sg25268 +S'Silver Ladle' +p63569 +sg25270 +S'Hester Duany' +p63570 +sa(dp63571 +g25273 +S'French, 1723 - 1799' +p63572 +sg25267 +g27 +sg25275 +S'(author)' +p63573 +sg25268 +S'Les Incas (volume I)' +p63574 +sg25270 +S'Artist Information (' +p63575 +sa(dp63576 +g25267 +g27 +sg25268 +S'Silver Teaspoon' +p63577 +sg25270 +S'Kalamian Walton' +p63578 +sa(dp63579 +g25267 +g27 +sg25268 +S'Silver Teaspoon' +p63580 +sg25270 +S'Kalamian Walton' +p63581 +sa(dp63582 +g25267 +g27 +sg25268 +S'Silver Teaspoon' +p63583 +sg25270 +S'Kalamian Walton' +p63584 +sa(dp63585 +g25267 +g27 +sg25268 +S'Silver Teaspoon' +p63586 +sg25270 +S'Kalamian Walton' +p63587 +sa(dp63588 +g25267 +g27 +sg25268 +S'Silver Spoon' +p63589 +sg25270 +S'Kalamian Walton' +p63590 +sa(dp63591 +g25267 +g27 +sg25268 +S'Silver Spoon' +p63592 +sg25270 +S'Kalamian Walton' +p63593 +sa(dp63594 +g25267 +g27 +sg25268 +S'Silver Spoon' +p63595 +sg25270 +S'Kalamian Walton' +p63596 +sa(dp63597 +g25267 +g27 +sg25268 +S'Silver Spoon' +p63598 +sg25270 +S'Kalamian Walton' +p63599 +sa(dp63600 +g25267 +g27 +sg25268 +S'Silver Funeral Spoon' +p63601 +sg25270 +S'Kalamian Walton' +p63602 +sa(dp63603 +g25267 +g27 +sg25268 +S'Silver Funeral Spoon' +p63604 +sg25270 +S'Kalamian Walton' +p63605 +sa(dp63606 +g25268 +S'Venus' +p63607 +sg25270 +S'Bernardino Luini' +p63608 +sg25273 +S'oil on panel' +p63609 +sg25275 +S'c. 1530' +p63610 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005d6.jpg' +p63611 +sg25267 +g27 +sa(dp63612 +g25273 +S'French, 1723 - 1799' +p63613 +sg25267 +g27 +sg25275 +S'(author)' +p63614 +sg25268 +S'Les Incas (volume II)' +p63615 +sg25270 +S'Artist Information (' +p63616 +sa(dp63617 +g25267 +g27 +sg25268 +S'Silver Spoon' +p63618 +sg25270 +S'Charlotte Winter' +p63619 +sa(dp63620 +g25267 +g27 +sg25268 +S'Silver Spoon' +p63621 +sg25270 +S'Kalamian Walton' +p63622 +sa(dp63623 +g25267 +g27 +sg25268 +S'Silver Spoon' +p63624 +sg25270 +S'Kalamian Walton' +p63625 +sa(dp63626 +g25267 +g27 +sg25268 +S'Silver Salt Spoon' +p63627 +sg25270 +S'Florence Hastings' +p63628 +sa(dp63629 +g25267 +g27 +sg25268 +S'Silver Demi-tasse Spoon' +p63630 +sg25270 +S'Kalamian Walton' +p63631 +sa(dp63632 +g25267 +g27 +sg25268 +S'Silver Demi-tasse Spoon' +p63633 +sg25270 +S'Kalamian Walton' +p63634 +sa(dp63635 +g25267 +g27 +sg25268 +S'Silver Spoon' +p63636 +sg25270 +S'Kalamian Walton' +p63637 +sa(dp63638 +g25267 +g27 +sg25268 +S'Silver Spoon' +p63639 +sg25270 +S'Kalamian Walton' +p63640 +sa(dp63641 +g25267 +g27 +sg25268 +S'Silver Teaspoon' +p63642 +sg25270 +S'Kalamian Walton' +p63643 +sa(dp63644 +g25267 +g27 +sg25268 +S'Silver Teaspoon' +p63645 +sg25270 +S'Kalamian Walton' +p63646 +sa(dp63647 +g25273 +S'French, 1622 - 1673' +p63648 +sg25267 +g27 +sg25275 +S'(author)' +p63649 +sg25268 +S'Oeuvres de Moliere (volume I)' +p63650 +sg25270 +S'Artist Information (' +p63651 +sa(dp63652 +g25267 +g27 +sg25268 +S'Silver Punch Strainer' +p63653 +sg25270 +S'John R. Towers' +p63654 +sa(dp63655 +g25267 +g27 +sg25268 +S'Silver Strainer' +p63656 +sg25270 +S'Kalamian Walton' +p63657 +sa(dp63658 +g25267 +g27 +sg25268 +S'Silver Punch Strainer' +p63659 +sg25270 +S'Aaron Fastovsky' +p63660 +sa(dp63661 +g25267 +g27 +sg25268 +S'Silver Lemon Strainer' +p63662 +sg25270 +S'Kalamian Walton' +p63663 +sa(dp63664 +g25267 +g27 +sg25268 +S'Silver Lemon Strainer' +p63665 +sg25270 +S'Michael Fenga' +p63666 +sa(dp63667 +g25267 +g27 +sg25268 +S'Silver Lemon Strainer' +p63668 +sg25270 +S'Kalamian Walton' +p63669 +sa(dp63670 +g25267 +g27 +sg25268 +S'Silver Punch Strainer' +p63671 +sg25270 +S'Charlotte Winter' +p63672 +sa(dp63673 +g25267 +g27 +sg25268 +S'Silver Punch Strainer' +p63674 +sg25270 +S'John R. Towers' +p63675 +sa(dp63676 +g25267 +g27 +sg25268 +S'Silver Sugar Urn' +p63677 +sg25270 +S'E.J. Gilsleider' +p63678 +sa(dp63679 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p63680 +sg25270 +S'Paul Ward' +p63681 +sa(dp63682 +g25273 +S'French, 1622 - 1673' +p63683 +sg25267 +g27 +sg25275 +S'(author)' +p63684 +sg25268 +S'Oeuvres de Moliere (volume II)' +p63685 +sg25270 +S'Artist Information (' +p63686 +sa(dp63687 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p63688 +sg25270 +S'Hans Westendorff' +p63689 +sa(dp63690 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p63691 +sg25270 +S'Michael Fenga' +p63692 +sa(dp63693 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p63694 +sg25270 +S'Hester Duany' +p63695 +sa(dp63696 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p63697 +sg25270 +S'Simon Weiss' +p63698 +sa(dp63699 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p63700 +sg25270 +S'Aaron Fastovsky' +p63701 +sa(dp63702 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p63703 +sg25270 +S'Aaron Fastovsky' +p63704 +sa(dp63705 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p63706 +sg25270 +S'Michael Fenga' +p63707 +sa(dp63708 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p63709 +sg25270 +S'Leo Drozdoff' +p63710 +sa(dp63711 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p63712 +sg25270 +S'Hester Duany' +p63713 +sa(dp63714 +g25267 +g27 +sg25268 +S'Silver Sugar Tongs' +p63715 +sg25270 +S'Kalamian Walton' +p63716 +sa(dp63717 +g25273 +S'French, 1622 - 1673' +p63718 +sg25267 +g27 +sg25275 +S'(author)' +p63719 +sg25268 +S'Oeuvres de Moliere (volume III)' +p63720 +sg25270 +S'Artist Information (' +p63721 +sa(dp63722 +g25267 +g27 +sg25268 +S'Silver Sugar Tongs' +p63723 +sg25270 +S'Grace Halpin' +p63724 +sa(dp63725 +g25267 +g27 +sg25268 +S'Silver Sugar Tongs' +p63726 +sg25270 +S'Kalamian Walton' +p63727 +sa(dp63728 +g25267 +g27 +sg25268 +S'Silver Sugar Tongs' +p63729 +sg25270 +S'Kalamian Walton' +p63730 +sa(dp63731 +g25267 +g27 +sg25268 +S'Silver Sugar Tongs' +p63732 +sg25270 +S'Kalamian Walton' +p63733 +sa(dp63734 +g25267 +g27 +sg25268 +S'Silver Sugar Tongs' +p63735 +sg25270 +S'Suzanne Roy' +p63736 +sa(dp63737 +g25267 +g27 +sg25268 +S'Silver Sugar Tongs' +p63738 +sg25270 +S'Kalamian Walton' +p63739 +sa(dp63740 +g25267 +g27 +sg25268 +S'Silver Sugar Tongs' +p63741 +sg25270 +S'Anthony Zuccarello' +p63742 +sa(dp63743 +g25267 +g27 +sg25268 +S'Silver Sugar Tongs' +p63744 +sg25270 +S'Kalamian Walton' +p63745 +sa(dp63746 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63747 +sg25270 +S'Michael Fenga' +p63748 +sa(dp63749 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63750 +sg25270 +S'Clayton Braun' +p63751 +sa(dp63752 +g25273 +S'French, 1622 - 1673' +p63753 +sg25267 +g27 +sg25275 +S'(author)' +p63754 +sg25268 +S'Oeuvres de Moliere (volume IV)' +p63755 +sg25270 +S'Artist Information (' +p63756 +sa(dp63757 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63758 +sg25270 +S'Paul Ward' +p63759 +sa(dp63760 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63761 +sg25270 +S'Clayton Braun' +p63762 +sa(dp63763 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63764 +sg25270 +S'Horace Reina' +p63765 +sa(dp63766 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63767 +sg25270 +S'Dorothy Dwin' +p63768 +sa(dp63769 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63770 +sg25270 +S'Hester Duany' +p63771 +sa(dp63772 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63773 +sg25270 +S'Horace Reina' +p63774 +sa(dp63775 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63776 +sg25270 +S'Giacinto Capelli' +p63777 +sa(dp63778 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63779 +sg25270 +S'Hester Duany' +p63780 +sa(dp63781 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63782 +sg25270 +S'Aaron Fastovsky' +p63783 +sa(dp63784 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63785 +sg25270 +S'Simon Weiss' +p63786 +sa(dp63787 +g25273 +S'French, 1622 - 1673' +p63788 +sg25267 +g27 +sg25275 +S'(author)' +p63789 +sg25268 +S'Oeuvres de Moliere (volume V)' +p63790 +sg25270 +S'Artist Information (' +p63791 +sa(dp63792 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63793 +sg25270 +S'Clayton Braun' +p63794 +sa(dp63795 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63796 +sg25270 +S'Charles Garjian' +p63797 +sa(dp63798 +g25267 +g27 +sg25268 +S'Silver Tankard: Detail' +p63799 +sg25270 +S'Lawrence Flynn' +p63800 +sa(dp63801 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63802 +sg25270 +S'Lawrence Flynn' +p63803 +sa(dp63804 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63805 +sg25270 +S'Clayton Braun' +p63806 +sa(dp63807 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63808 +sg25270 +S'Clayton Braun' +p63809 +sa(dp63810 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63811 +sg25270 +S'Charles Cullen' +p63812 +sa(dp63813 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63814 +sg25270 +S'Michael Fenga' +p63815 +sa(dp63816 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63817 +sg25270 +S'Michael Fenga' +p63818 +sa(dp63819 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63820 +sg25270 +S'Simon Weiss' +p63821 +sa(dp63822 +g25273 +S'French, 1622 - 1673' +p63823 +sg25267 +g27 +sg25275 +S'(author)' +p63824 +sg25268 +S'Oeuvres de Moliere (volume VI)' +p63825 +sg25270 +S'Artist Information (' +p63826 +sa(dp63827 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63828 +sg25270 +S'Amelia Tuccio' +p63829 +sa(dp63830 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63831 +sg25270 +S'Isidore Steinberg' +p63832 +sa(dp63833 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63834 +sg25270 +S'Hester Duany' +p63835 +sa(dp63836 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63837 +sg25270 +S'Clayton Braun' +p63838 +sa(dp63839 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63840 +sg25270 +S'Isidore Steinberg' +p63841 +sa(dp63842 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63843 +sg25270 +S'Simon Weiss' +p63844 +sa(dp63845 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63846 +sg25270 +S'Hester Duany' +p63847 +sa(dp63848 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63849 +sg25270 +S'Lawrence Flynn' +p63850 +sa(dp63851 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63852 +sg25270 +S'Giacinto Capelli' +p63853 +sa(dp63854 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63855 +sg25270 +S'Simon Weiss' +p63856 +sa(dp63857 +g25273 +S'Widener Collection' +p63858 +sg25267 +g27 +sg25275 +S'\nbound volume with 61 etch. and engr. (includes trial proofs) by Cathelin, Bacquoy, Delaunay, Duclos, de Ghendt, Helman, Lebas, Legrand, Leveau, Masquelier, Nee, Simonet, and J.M. Moreauafter Mignard and J.M. Moreau for 1773 ed. of Mol iere\'s "Oeuvres"' +p63859 +sg25268 +S'Album of Prints for Moliere\'s "Oeuvres"' +p63860 +sg25270 +S'Various Artists' +p63861 +sa(dp63862 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63863 +sg25270 +S'Filippo Porreca' +p63864 +sa(dp63865 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63866 +sg25270 +S'Amelia Tuccio' +p63867 +sa(dp63868 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63869 +sg25270 +S'Lawrence Flynn' +p63870 +sa(dp63871 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63872 +sg25270 +S'Leo Drozdoff' +p63873 +sa(dp63874 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63875 +sg25270 +S'Giacinto Capelli' +p63876 +sa(dp63877 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63878 +sg25270 +S'Charlotte Winter' +p63879 +sa(dp63880 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63881 +sg25270 +S'Simon Weiss' +p63882 +sa(dp63883 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63884 +sg25270 +S'Lawrence Flynn' +p63885 +sa(dp63886 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63887 +sg25270 +S'E.J. Gilsleider' +p63888 +sa(dp63889 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63890 +sg25270 +S'Hester Duany' +p63891 +sa(dp63892 +g25273 +S'French, 1703 - 1770' +p63893 +sg25267 +g27 +sg25275 +S'(artist after)' +p63894 +sg25268 +S'Illustrations for "Oeuvres de Moliere"' +p63895 +sg25270 +S'Artist Information (' +p63896 +sa(dp63897 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63898 +sg25270 +S'American 20th Century' +p63899 +sa(dp63900 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63901 +sg25270 +S'Amelia Tuccio' +p63902 +sa(dp63903 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63904 +sg25270 +S'Hans Westendorff' +p63905 +sa(dp63906 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63907 +sg25270 +S'Hester Duany' +p63908 +sa(dp63909 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63910 +sg25270 +S'Isidore Steinberg' +p63911 +sa(dp63912 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63913 +sg25270 +S'Horace Reina' +p63914 +sa(dp63915 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63916 +sg25270 +S'Eugene La Foret' +p63917 +sa(dp63918 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63919 +sg25270 +S'Simon Weiss' +p63920 +sa(dp63921 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63922 +sg25270 +S'Clayton Braun' +p63923 +sa(dp63924 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63925 +sg25270 +S'Lawrence Flynn' +p63926 +sa(dp63927 +g25268 +S'Francois Boucher' +p63928 +sg25270 +S'Louis Bosse' +p63929 +sg25273 +g27 +sg25275 +S'unknown date\n' +p63930 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f37.jpg' +p63931 +sg25267 +g27 +sa(dp63932 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63933 +sg25270 +S'Lawrence Flynn' +p63934 +sa(dp63935 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63936 +sg25270 +S'Lawrence Flynn' +p63937 +sa(dp63938 +g25267 +g27 +sg25268 +S'Silver Tazza' +p63939 +sg25270 +S'Horace Reina' +p63940 +sa(dp63941 +g25267 +g27 +sg25268 +S'Silver Wine Coasters' +p63942 +sg25270 +S'Clayton Braun' +p63943 +sa(dp63944 +g25267 +g27 +sg25268 +S'Silver Chalice' +p63945 +sg25270 +S'Lena Nastasi' +p63946 +sa(dp63947 +g25267 +g27 +sg25268 +S'Silver Beaker with Handles' +p63948 +sg25270 +S'Rose Campbell-Gerke' +p63949 +sa(dp63950 +g25267 +g27 +sg25268 +S'Silver Baby Spoon and Fork' +p63951 +sg25270 +S'Rose Campbell-Gerke' +p63952 +sa(dp63953 +g25267 +g27 +sg25268 +S'Silver Goblet' +p63954 +sg25270 +S'Rose Campbell-Gerke' +p63955 +sa(dp63956 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63957 +sg25270 +S'Lawrence Flynn' +p63958 +sa(dp63959 +g25267 +g27 +sg25268 +S'Silver Tankard: Detail' +p63960 +sg25270 +S'Lawrence Flynn' +p63961 +sa(dp63962 +g25268 +S'Laurent Cars' +p63963 +sg25270 +S'Artist Information (' +p63964 +sg25273 +S'(artist after)' +p63965 +sg25275 +S'\n' +p63966 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000960c.jpg' +p63967 +sg25267 +g27 +sa(dp63968 +g25267 +g27 +sg25268 +S'Silver Flagon: Detail' +p63969 +sg25270 +S'Lawrence Flynn' +p63970 +sa(dp63971 +g25267 +g27 +sg25268 +S'Silver Beaker' +p63972 +sg25270 +S'Lawrence Flynn' +p63973 +sa(dp63974 +g25267 +g27 +sg25268 +S'Silver Beaker' +p63975 +sg25270 +S'Lawrence Flynn' +p63976 +sa(dp63977 +g25267 +g27 +sg25268 +S'Silver Tankard' +p63978 +sg25270 +S'Lawrence Flynn' +p63979 +sa(dp63980 +g25267 +g27 +sg25268 +S'Silver Caudle Cup' +p63981 +sg25270 +S'Lawrence Flynn' +p63982 +sa(dp63983 +g25267 +g27 +sg25268 +S'Silver Vase of "Blue" Silver' +p63984 +sg25270 +S'Frank M. Keane' +p63985 +sa(dp63986 +g25267 +g27 +sg25268 +S'Silver Punch Bowl' +p63987 +sg25270 +S'Lawrence Flynn' +p63988 +sa(dp63989 +g25267 +g27 +sg25268 +S'Silver Teapot' +p63990 +sg25270 +S'Lawrence Flynn' +p63991 +sa(dp63992 +g25267 +g27 +sg25268 +S'Silver Flagon' +p63993 +sg25270 +S'Lawrence Flynn' +p63994 +sa(dp63995 +g25267 +g27 +sg25268 +S'Tankard Lid' +p63996 +sg25270 +S'Lawrence Flynn' +p63997 +sa(dp63998 +g25273 +S'(author)' +p63999 +sg25267 +g27 +sg25275 +S'\n' +p64000 +sg25268 +S"Suite d'estampes des principaux sujects des comedies de Moliere" +p64001 +sg25270 +S'Artist Information (' +p64002 +sa(dp64003 +g25267 +g27 +sg25268 +S'Details of a Punch Bowl' +p64004 +sg25270 +S'Lawrence Flynn' +p64005 +sa(dp64006 +g25267 +g27 +sg25268 +S'Two Handled Beaker' +p64007 +sg25270 +S'Lawrence Flynn' +p64008 +sa(dp64009 +g25267 +g27 +sg25268 +S'Silver Tankard' +p64010 +sg25270 +S'Lawrence Flynn' +p64011 +sa(dp64012 +g25267 +g27 +sg25268 +S'Ice Water Pitcher' +p64013 +sg25270 +S'Carl Buergerniss' +p64014 +sa(dp64015 +g25267 +g27 +sg25268 +S'Tankard' +p64016 +sg25270 +S'Lawrence Flynn' +p64017 +sa(dp64018 +g25267 +g27 +sg25268 +S'Two Seated Sleigh' +p64019 +sg25270 +S'Rolland Ayres' +p64020 +sa(dp64021 +g25267 +g27 +sg25268 +S'Sleigh' +p64022 +sg25270 +S'David Ramage' +p64023 +sa(dp64024 +g25267 +g27 +sg25268 +S'Sleigh' +p64025 +sg25270 +S'David Ramage' +p64026 +sa(dp64027 +g25267 +g27 +sg25268 +S'Silver Marrow Spoon' +p64028 +sg25270 +S'Alfred Nason' +p64029 +sa(dp64030 +g25267 +g27 +sg25268 +S'Silver Teaspoon' +p64031 +sg25270 +S'David P Willoughby' +p64032 +sa(dp64033 +g25273 +S'1 vol: ill: engravings, frontispiece engraved by Littret after Seve' +p64034 +sg25267 +g27 +sg25275 +S'published 1767' +p64035 +sg25268 +S'Oeuvres de Monsieur de Montesquieu (volume I)' +p64036 +sg25270 +S'baron de Charles de Secondat Montesquieu' +p64037 +sa(dp64038 +g25267 +g27 +sg25268 +S'Silver Knife (Rogers Silverware)' +p64039 +sg25270 +S'Ludmilla Calderon' +p64040 +sa(dp64041 +g25267 +g27 +sg25268 +S'Silver Fork (Rogers Silverware)' +p64042 +sg25270 +S'Ludmilla Calderon' +p64043 +sa(dp64044 +g25267 +g27 +sg25268 +S'Silver Fork (Rogers Silverware)' +p64045 +sg25270 +S'Ludmilla Calderon' +p64046 +sa(dp64047 +g25267 +g27 +sg25268 +S'Silver Sugar Tongs' +p64048 +sg25270 +S'John R. Towers' +p64049 +sa(dp64050 +g25267 +g27 +sg25268 +S'Silver Chalice' +p64051 +sg25270 +S'Lawrence Flynn' +p64052 +sa(dp64053 +g25267 +g27 +sg25268 +S'Silver Sugar Tongs' +p64054 +sg25270 +S'John R. Towers' +p64055 +sa(dp64056 +g25267 +g27 +sg25268 +S'Silver Cup and Saucer' +p64057 +sg25270 +S'Magnus S. Fossum' +p64058 +sa(dp64059 +g25267 +g27 +sg25268 +S'Bishop Hill: Large Silver Spoon' +p64060 +sg25270 +S'Archie Thompson' +p64061 +sa(dp64062 +g25267 +g27 +sg25268 +S'Silver Candlestick' +p64063 +sg25270 +S'Leo Drozdoff' +p64064 +sa(dp64065 +g25267 +g27 +sg25268 +S'Silver Salt Spoon' +p64066 +sg25270 +S'Harry Mann Waddell' +p64067 +sa(dp64068 +g25273 +S'1 vol: ill: engravings' +p64069 +sg25267 +g27 +sg25275 +S'published 1767' +p64070 +sg25268 +S'Oeuvres de Monsieur de Montesquieu (volume II)' +p64071 +sg25270 +S'baron de Charles de Secondat Montesquieu' +p64072 +sa(dp64073 +g25267 +g27 +sg25268 +S'Silver Kettle with Lamp & Stand' +p64074 +sg25270 +S'R.E. Schearer' +p64075 +sa(dp64076 +g25267 +g27 +sg25268 +S'Silver Teapot' +p64077 +sg25270 +S'Edward White' +p64078 +sa(dp64079 +g25267 +g27 +sg25268 +S'Silver Beaker' +p64080 +sg25270 +S'Michael Fenga' +p64081 +sa(dp64082 +g25267 +g27 +sg25268 +S'Silver Teapot' +p64083 +sg25270 +S'Eugene Croe' +p64084 +sa(dp64085 +g25267 +g27 +sg25268 +S'Silver Beaker' +p64086 +sg25270 +S'Dorothy Dwin' +p64087 +sa(dp64088 +g25267 +g27 +sg25268 +S'Silver Cake Dish' +p64089 +sg25270 +S'Francis Law Durand' +p64090 +sa(dp64091 +g25267 +g27 +sg25268 +S'Silver Cake Dish' +p64092 +sg25270 +S'Francis Law Durand' +p64093 +sa(dp64094 +g25267 +g27 +sg25268 +S'Silver Teaspoon' +p64095 +sg25270 +S'David P Willoughby' +p64096 +sa(dp64097 +g25267 +g27 +sg25268 +S'Silver Candlestick' +p64098 +sg25270 +S'Horace Reina' +p64099 +sa(dp64100 +g25267 +g27 +sg25268 +S'Silver Porringer' +p64101 +sg25270 +S'Clayton Braun' +p64102 +sa(dp64103 +g25273 +S'1 vol: ill: engravings' +p64104 +sg25267 +g27 +sg25275 +S'published 1767' +p64105 +sg25268 +S'Oeuvres de Monsieur de Montesquieu (volume III)' +p64106 +sg25270 +S'baron de Charles de Secondat Montesquieu' +p64107 +sa(dp64108 +g25267 +g27 +sg25268 +S'Silver Caster' +p64109 +sg25270 +S'Holger Hansen' +p64110 +sa(dp64111 +g25267 +g27 +sg25268 +S'Silver Teapot' +p64112 +sg25270 +S'Hans Westendorff' +p64113 +sa(dp64114 +g25267 +g27 +sg25268 +S'Silver Teaspoon' +p64115 +sg25270 +S'Irene M. Burge' +p64116 +sa(dp64117 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p64118 +sg25270 +S'David P Willoughby' +p64119 +sa(dp64120 +g25267 +g27 +sg25268 +S'Silver Strainer' +p64121 +sg25270 +S'Kalamian Walton' +p64122 +sa(dp64123 +g25267 +g27 +sg25268 +S'Silver Tray' +p64124 +sg25270 +S'Irene M. Burge' +p64125 +sa(dp64126 +g25267 +g27 +sg25268 +S'Silver Teaspoon' +p64127 +sg25270 +S'David P Willoughby' +p64128 +sa(dp64129 +g25267 +g27 +sg25268 +S'Silver Caster' +p64130 +sg25270 +S'Dorothy Dwin' +p64131 +sa(dp64132 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p64133 +sg25270 +S'Dorothy Dwin' +p64134 +sa(dp64135 +g25267 +g27 +sg25268 +S'Silver Teapot' +p64136 +sg25270 +S'Dorothy Dwin' +p64137 +sa(dp64138 +g25273 +S'(author)' +p64139 +sg25267 +g27 +sg25275 +S'\n' +p64140 +sg25268 +S'Le temple de Gnide' +p64141 +sg25270 +S'Artist Information (' +p64142 +sa(dp64143 +g25267 +S'In early America, silversmithing was practiced primarily in the urban centers\n of New York, Philadelphia, and Boston, where social and intellectual connections\n with England were strongest. English silver provided the standard in quality and\n fashion, reflected by American silver work. Craftsmen obtained their material most\n often by melting down old coins or silverware. From flat silver sheets, the craftsmen\n hammered the metal into the desired shape. After the piece was formed, the surface\n was smoothed by beating it lightly with a special hammer. By the mid-eighteenth\n century, thumbpieces, finials, and handles were cast in silver and soldered onto\n the body. This piece is a spout cup made by the Boston silversmith John Edwards\n in the early eighteenth century. He is identified by the small mark on the neck\n of the cup, which he used to sign his products. Spout cups were used for drinking\n by small children, the sick, and the elderly. The design of this one is simple\n but refined, unlike more elaborate forms common in that period. The cup is set on\n a foot ring and has a flat strap handle and a slender, curving spout. Incised bands\n around the neck of the cup are repeated around the base and on the handle, serving\n to further emphasize the restraint and elegance of this piece.\n ' +p64144 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000309.jpg' +p64145 +sg25268 +S'Silver Spout Cup' +p64146 +sg25270 +S'Palmyra Pimentel' +p64147 +sa(dp64148 +g25267 +g27 +sg25268 +S'Silver Caudle Cup' +p64149 +sg25270 +S'Aaron Fastovsky' +p64150 +sa(dp64151 +g25267 +g27 +sg25268 +S'Silver Mug' +p64152 +sg25270 +S'Filippo Porreca' +p64153 +sa(dp64154 +g25267 +g27 +sg25268 +S'Silver Mug' +p64155 +sg25270 +S'Lawrence Flynn' +p64156 +sa(dp64157 +g25267 +g27 +sg25268 +S'Silver Tankard' +p64158 +sg25270 +S'Isidore Steinberg' +p64159 +sa(dp64160 +g25267 +g27 +sg25268 +S'Silver Skewer' +p64161 +sg25270 +S'Margaret Knapp' +p64162 +sa(dp64163 +g25267 +g27 +sg25268 +S'Silver Sugar Urn' +p64164 +sg25270 +S'Hardin Walsh' +p64165 +sa(dp64166 +g25267 +g27 +sg25268 +S'Silver Tankard: Details' +p64167 +sg25270 +S'Lawrence Flynn' +p64168 +sa(dp64169 +g25267 +g27 +sg25268 +S'Silver Tablespoon' +p64170 +sg25270 +S'David P Willoughby' +p64171 +sa(dp64172 +g25267 +g27 +sg25268 +S'Silver Beaker' +p64173 +sg25270 +S'Palmyra Pimentel' +p64174 +sa(dp64175 +g25273 +S'1 vol: ill: 175 hand-colored engravings' +p64176 +sg25267 +g27 +sg25275 +S'published 1772' +p64177 +sg25268 +S'Uniformes militaires ...' +p64178 +sg25270 +S'Claude-Antoine Littrey de Montigny' +p64179 +sa(dp64180 +g25267 +g27 +sg25268 +S'Silver Tankard' +p64181 +sg25270 +S'Lawrence Flynn' +p64182 +sa(dp64183 +g25267 +g27 +sg25268 +S'Silver Mug' +p64184 +sg25270 +S'Hester Duany' +p64185 +sa(dp64186 +g25267 +g27 +sg25268 +S'Silver Mug' +p64187 +sg25270 +S'Palmyra Pimentel' +p64188 +sa(dp64189 +g25267 +g27 +sg25268 +S'Silver Beaker' +p64190 +sg25270 +S'Dorothy Dwin' +p64191 +sa(dp64192 +g25267 +g27 +sg25268 +S'Silver Beaker' +p64193 +sg25270 +S'Helen Alpiner Blumenstiel' +p64194 +sa(dp64195 +g25267 +g27 +sg25268 +S'Silver Cup' +p64196 +sg25270 +S'Edward Jewett' +p64197 +sa(dp64198 +g25267 +S'After the Revolution, the design of silver and of most other decorative arts\n assumed a classical style. Craftsmen created elegant designs based on interplays\n of graceful curves and smooth straight lines. A corresponding refinement was seen\n in surface decoration. This silver teapot, made in the late eighteenth century\n by Isaac Hutton in Albany, New York, reflects the new classicism. Notice that the\n oval body is shaped into serpentine curves that form vertical panels. The theme\n is continued in the straight, tapering spout, which is oval in cross section. Further\n emphasizing the classical design are an urn finial atop the bell-shaped lid and\n the foliate shield medallion that decorates the side. Typical of New York teapots\n during this period are the bright-cut bands of floral swags that encircle the\n top and bottom of the piece. This bright-cut form of engraving, achieved by using\n a small gouge to chip-carve the decoration, was also used at the base of the lid.\n The shape of the wooden scroll handle relates to the undulating surface of the\n pot. The wooden handle protected the user when the pot was filled with hot tea.\n ' +p64199 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000030a.jpg' +p64200 +sg25268 +S'Silver Teapot' +p64201 +sg25270 +S'Michael Fenga' +p64202 +sa(dp64203 +g25267 +g27 +sg25268 +S'Silver Tankard' +p64204 +sg25270 +S'Michael Fenga' +p64205 +sa(dp64206 +g25267 +g27 +sg25268 +S'Silver Caster' +p64207 +sg25270 +S'Hester Duany' +p64208 +sa(dp64209 +g25267 +g27 +sg25268 +S'Silver Box' +p64210 +sg25270 +S'Sara Garfinkel' +p64211 +sa(dp64212 +g25273 +S'French, 1741 - 1814' +p64213 +sg25267 +g27 +sg25275 +S'(artist after)' +p64214 +sg25268 +S"Seconde suite d'estampes, pour servier a l'histoire des Modes ...." +p64215 +sg25270 +S'Artist Information (' +p64216 +sa(dp64217 +g25267 +g27 +sg25268 +S'Silver Tankard' +p64218 +sg25270 +S'Horace Reina' +p64219 +sa(dp64220 +g25267 +g27 +sg25268 +S'Silver Teapot' +p64221 +sg25270 +S'Harry Mann Waddell' +p64222 +sa(dp64223 +g25267 +g27 +sg25268 +S'Silver Flagon' +p64224 +sg25270 +S'Hester Duany' +p64225 +sa(dp64226 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64227 +sg25270 +S'Giacinto Capelli' +p64228 +sa(dp64229 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p64230 +sg25270 +S'Hester Duany' +p64231 +sa(dp64232 +g25267 +g27 +sg25268 +S'Silver Caster' +p64233 +sg25270 +S'Hester Duany' +p64234 +sa(dp64235 +g25267 +g27 +sg25268 +S'Silver Ladle' +p64236 +sg25270 +S'George Fairbanks' +p64237 +sa(dp64238 +g25267 +g27 +sg25268 +S'Silver Coffee Pot' +p64239 +sg25270 +S'Ernest A. Towers, Jr.' +p64240 +sa(dp64241 +g25267 +g27 +sg25268 +S'Monogrammed Silver Cream Pitcher' +p64242 +sg25270 +S'David P Willoughby' +p64243 +sa(dp64244 +g25267 +g27 +sg25268 +S'Silver Hot Water Pot' +p64245 +sg25270 +S'Leo Drozdoff' +p64246 +sa(dp64247 +g25273 +S'Swiss, 1745 - 1801' +p64248 +sg25267 +g27 +sg25275 +S'(artist after)' +p64249 +sg25268 +S"Estampes pour servir a l'Histoire des Moeurs et du Costume ... (volume I)" +p64250 +sg25270 +S'Artist Information (' +p64251 +sa(dp64252 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p64253 +sg25270 +S'Lawrence Flynn' +p64254 +sa(dp64255 +g25267 +g27 +sg25268 +S'Silver Chocolate Pot' +p64256 +sg25270 +S'Florence Hastings' +p64257 +sa(dp64258 +g25267 +g27 +sg25268 +S'Silver Chocolate Pot' +p64259 +sg25270 +S'Florence Hastings' +p64260 +sa(dp64261 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p64262 +sg25270 +S'Florence Hastings' +p64263 +sa(dp64264 +g25267 +g27 +sg25268 +S'Silver Teapot' +p64265 +sg25270 +S'Florence Hastings' +p64266 +sa(dp64267 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64268 +sg25270 +S'Florence Hastings' +p64269 +sa(dp64270 +g25267 +g27 +sg25268 +S'Silver Teapot' +p64271 +sg25270 +S'Aaron Fastovsky' +p64272 +sa(dp64273 +g25267 +g27 +sg25268 +S'Silver Ornament for Scroll' +p64274 +sg25270 +S'Aaron Fastovsky' +p64275 +sa(dp64276 +g25267 +g27 +sg25268 +S'Silver Mug' +p64277 +sg25270 +S'Holger Hansen' +p64278 +sa(dp64279 +g25267 +g27 +sg25268 +S'Silver Tablespoon' +p64280 +sg25270 +S'Florence Grant Brown' +p64281 +sa(dp64282 +g25273 +S'French, 1741 - 1814' +p64283 +sg25267 +g27 +sg25275 +S'(artist after)' +p64284 +sg25268 +S"Estampes pour servir a l'Histoire des Moeurs et du Costume ... (volume II)" +p64285 +sg25270 +S'Artist Information (' +p64286 +sa(dp64287 +g25267 +g27 +sg25268 +S'Silver Sugar Tongs' +p64288 +sg25270 +S'Florence Grant Brown' +p64289 +sa(dp64290 +g25267 +g27 +sg25268 +S'Silver Coffee Pot' +p64291 +sg25270 +S'Madeline Arnold' +p64292 +sa(dp64293 +g25267 +g27 +sg25268 +S'Snubber for Bull' +p64294 +sg25270 +S'William Frank' +p64295 +sa(dp64296 +g25267 +g27 +sg25268 +S'Snow Catcher' +p64297 +sg25270 +S'Milton Grubstein' +p64298 +sa(dp64299 +g25267 +g27 +sg25268 +S'Snow Breaker' +p64300 +sg25270 +S'Frank Gray' +p64301 +sa(dp64302 +g25267 +g27 +sg25268 +S'Detail of Early Cutter' +p64303 +sg25270 +S'Dorothy Brennan' +p64304 +sa(dp64305 +g25267 +g27 +sg25268 +S'Sled Starting Hook' +p64306 +sg25270 +S'Herman O. Stroh' +p64307 +sa(dp64308 +g25267 +g27 +sg25268 +S'Sleigh Chair' +p64309 +sg25270 +S'Florence Truelson' +p64310 +sa(dp64311 +g25267 +g27 +sg25268 +S'Sleigh Chair' +p64312 +sg25270 +S'Florence Truelson' +p64313 +sa(dp64314 +g25267 +g27 +sg25268 +S"Child's Sled" +p64315 +sg25270 +S'Francis Law Durand' +p64316 +sa(dp64317 +g25268 +S"Estampes pour servir a l'Histoire des Moeurs et du Costume ... (volume III)" +p64318 +sg25270 +S'Artist Information (' +p64319 +sg25273 +S'French, 1741 - 1814' +p64320 +sg25275 +S'(artist after)' +p64321 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c95.jpg' +p64322 +sg25267 +g27 +sa(dp64323 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a00054f9.jpg' +p64324 +sg25268 +S"Child's Sled" +p64325 +sg25270 +S'Ingrid Selmer-Larsen' +p64326 +sa(dp64327 +g25267 +g27 +sg25268 +S'Kitchen Utensils' +p64328 +sg25270 +S'Fritz Boehmer' +p64329 +sa(dp64330 +g25267 +g27 +sg25268 +S'Skimmer' +p64331 +sg25270 +S'Charles Moss' +p64332 +sa(dp64333 +g25267 +g27 +sg25268 +S'Skimmer' +p64334 +sg25270 +S'Charles Moss' +p64335 +sa(dp64336 +g25267 +g27 +sg25268 +S'Skimmer' +p64337 +sg25270 +S'Herbert Marsh' +p64338 +sa(dp64339 +g25267 +g27 +sg25268 +S'Creamer Skimmer' +p64340 +sg25270 +S'Amelia Tuccio' +p64341 +sa(dp64342 +g25267 +g27 +sg25268 +S'Brass Cream Skimmer' +p64343 +sg25270 +S'Sydney Roberts' +p64344 +sa(dp64345 +g25267 +g27 +sg25268 +S'Brass Sugar Skimmer' +p64346 +sg25270 +S'Annie B. Johnston' +p64347 +sa(dp64348 +g25267 +g27 +sg25268 +S'Skewers and Holder' +p64349 +sg25270 +S'Artist Information (' +p64350 +sa(dp64351 +g25267 +g27 +sg25268 +S'Skewers and Holder' +p64352 +sg25270 +S'Bernard Krieger' +p64353 +sa(dp64354 +g25273 +S'(artist after)' +p64355 +sg25267 +g27 +sg25275 +S'\n' +p64356 +sg25268 +S'Les pr\xc3\xa9cautions' +p64357 +sg25270 +S'Artist Information (' +p64358 +sa(dp64359 +g25267 +g27 +sg25268 +S'Skewers and Holder' +p64360 +sg25270 +S'Charles Cullen' +p64361 +sa(dp64362 +g25267 +g27 +sg25268 +S'Skewers and Holder' +p64363 +sg25270 +S'Francis Borelli' +p64364 +sa(dp64365 +g25267 +g27 +sg25268 +S'Skewers and Holder' +p64366 +sg25270 +S'Holger Hansen' +p64367 +sa(dp64368 +g25267 +g27 +sg25268 +S'Money Vest' +p64369 +sg25270 +S'John Thorsen' +p64370 +sa(dp64371 +g25267 +g27 +sg25268 +S'Painted Chest' +p64372 +sg25270 +S'D.P. Jones' +p64373 +sa(dp64374 +g25267 +S"A love of embellishment is apparent in the riding gear of the old southwest, including everything from saddles and stirrups to bridles, bits, and spurs. The materials were iron, silver, leather, or even — as in this child's sidesaddle — velvet and silk.\r\n Like many other traditions of the American southwest, this craft developed from Mexican practices that in turn had their origins in medieval and Renaissance Spain. This saddle is a particularly handsome piece. It was made about 1820 by an unknown craftsman in Monterey, California. The designs are embroidered in silk and show Diana, protectress of maidens, in a chariot drawn by two goats, and cornucopias — attributes identifying the goddess with fertility rites and the harvest. The seat is upholstered in padded green velvet.\n " +p64375 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003d6.jpg' +p64376 +sg25268 +S'Saddle' +p64377 +sg25270 +S'Rose Campbell-Gerke' +p64378 +sa(dp64379 +g25267 +g27 +sg25268 +S'Bolero' +p64380 +sg25270 +S'Josephine C. Romano' +p64381 +sa(dp64382 +g25267 +g27 +sg25268 +S'Jacket' +p64383 +sg25270 +S'Syrena Swanson' +p64384 +sa(dp64385 +g25267 +g27 +sg25268 +S'Jacket' +p64386 +sg25270 +S'Josephine C. Romano' +p64387 +sa(dp64388 +g25267 +g27 +sg25268 +S'Bolero Jacket' +p64389 +sg25270 +S'Josephine C. Romano' +p64390 +sa(dp64391 +g25273 +S'(author)' +p64392 +sg25267 +g27 +sg25275 +S'\n' +p64393 +sg25268 +S'Primerose' +p64394 +sg25270 +S'Artist Information (' +p64395 +sa(dp64396 +g25267 +g27 +sg25268 +S'Coat' +p64397 +sg25270 +S'Hal Blakeley' +p64398 +sa(dp64399 +g25267 +g27 +sg25268 +S"Man's Trousers" +p64400 +sg25270 +S'Syrena Swanson' +p64401 +sa(dp64402 +g25267 +g27 +sg25268 +S"Trapper's Jacket" +p64403 +sg25270 +S'Ellen Duncan' +p64404 +sa(dp64405 +g25267 +g27 +sg25268 +S'Embroidered Velvet Vest' +p64406 +sg25270 +S'Majel G. Claflin' +p64407 +sa(dp64408 +g25267 +g27 +sg25268 +S'Embroidered Bolero Jacket' +p64409 +sg25270 +S'Hal Blakeley' +p64410 +sa(dp64411 +g25267 +g27 +sg25268 +S"Man's Bolero" +p64412 +sg25270 +S'Syrena Swanson' +p64413 +sa(dp64414 +g25267 +g27 +sg25268 +S'Burse and Chalice Veil' +p64415 +sg25270 +S'Artist Information (' +p64416 +sa(dp64417 +g25267 +g27 +sg25268 +S'Mission Stole and Maniple' +p64418 +sg25270 +S'Syrena Swanson' +p64419 +sa(dp64420 +g25267 +g27 +sg25268 +S'Apron' +p64421 +sg25270 +S'David P Willoughby' +p64422 +sa(dp64423 +g25267 +g27 +sg25268 +S'Manta or Poncho' +p64424 +sg25270 +S'Syrena Swanson' +p64425 +sa(dp64426 +g25273 +S'French, 1759 - 1842' +p64427 +sg25267 +g27 +sg25275 +S'(author)' +p64428 +sg25268 +S'Zelomir' +p64429 +sg25270 +S'Artist Information (' +p64430 +sa(dp64431 +g25267 +g27 +sg25268 +S"Child's Dress" +p64432 +sg25270 +S'Gladys C. Parker' +p64433 +sa(dp64434 +g25267 +g27 +sg25268 +S"Child's Bodice" +p64435 +sg25270 +S'Irene M. Burge' +p64436 +sa(dp64437 +g25267 +g27 +sg25268 +S"Child's Skirt" +p64438 +sg25270 +S'Syrena Swanson' +p64439 +sa(dp64440 +g25267 +g27 +sg25268 +S"Child's Cape" +p64441 +sg25270 +S'Gladys C. Parker' +p64442 +sa(dp64443 +g25267 +g27 +sg25268 +S'Petticoat' +p64444 +sg25270 +S'Edith Towner' +p64445 +sa(dp64446 +g25267 +g27 +sg25268 +S'Skirt' +p64447 +sg25270 +S'Ann Gene Buckley' +p64448 +sa(dp64449 +g25267 +g27 +sg25268 +S'Skirt - Border Design' +p64450 +sg25270 +S'Randolph F. Miller' +p64451 +sa(dp64452 +g25267 +g27 +sg25268 +S'Collar (For Child)' +p64453 +sg25270 +S'Ann Gene Buckley' +p64454 +sa(dp64455 +g25267 +g27 +sg25268 +S"Lady's Bolero" +p64456 +sg25270 +S'Syrena Swanson' +p64457 +sa(dp64458 +g25267 +g27 +sg25268 +S'St. George (Painted on Deerskin)' +p64459 +sg25270 +S'E. Boyd' +p64460 +sa(dp64461 +g25273 +S'(artist)' +p64462 +sg25267 +g27 +sg25275 +S'\n' +p64463 +sg25268 +S'Zelomir' +p64464 +sg25270 +S'Artist Information (' +p64465 +sa(dp64466 +g25267 +g27 +sg25268 +S'Leather Belt' +p64467 +sg25270 +S'Harry Mann Waddell' +p64468 +sa(dp64469 +g25267 +g27 +sg25268 +S'Ankle Band or Garters' +p64470 +sg25270 +S'Lyman Young' +p64471 +sa(dp64472 +g25267 +g27 +sg25268 +S'Suspenders' +p64473 +sg25270 +S'Evelyn Bailey' +p64474 +sa(dp64475 +g25267 +g27 +sg25268 +S'Hose' +p64476 +sg25270 +S'Ann Gene Buckley' +p64477 +sa(dp64478 +g25267 +g27 +sg25268 +S"Man's Beaded Taffeta Necktie" +p64479 +sg25270 +S'Verna Tallman' +p64480 +sa(dp64481 +g25267 +g27 +sg25268 +S'Silk Embroidered Suspenders' +p64482 +sg25270 +S'Ann Gene Buckley' +p64483 +sa(dp64484 +g25267 +g27 +sg25268 +S'Costume Accessory (Orange Blossoms)' +p64485 +sg25270 +S'Ruth M. Barnes' +p64486 +sa(dp64487 +g25267 +g27 +sg25268 +S'Costume Accessory (Orange Blossoms)' +p64488 +sg25270 +S'Lyman Young' +p64489 +sa(dp64490 +g25267 +g27 +sg25268 +S'Dancing Shoe' +p64491 +sg25270 +S'Ann Gene Buckley' +p64492 +sa(dp64493 +g25267 +g27 +sg25268 +S'Evening Slipper' +p64494 +sg25270 +S'William Kieckhofel' +p64495 +sa(dp64496 +g25273 +S'pen and black ink and brush and black ink with gray wash' +p64497 +sg25267 +g27 +sg25275 +S'published 1801' +p64498 +sg25268 +S"Il l'emporte en fureur pour l'achever aux yeux de Toreslaw" +p64499 +sg25270 +S'Louis-Joseph Lefevre' +p64500 +sa(dp64501 +g25267 +g27 +sg25268 +S'Velvet Shoe' +p64502 +sg25270 +S'Gerald Transpota' +p64503 +sa(dp64504 +g25267 +g27 +sg25268 +S"Baby's Shoe" +p64505 +sg25270 +S'Hal Blakeley' +p64506 +sa(dp64507 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p64508 +sg25270 +S'Nicholas Zupa' +p64509 +sa(dp64510 +g25267 +g27 +sg25268 +S'Silver Bowl' +p64511 +sg25270 +S'Lawrence Flynn' +p64512 +sa(dp64513 +g25267 +g27 +sg25268 +S'Silver Bowl' +p64514 +sg25270 +S'Nicholas Zupa' +p64515 +sa(dp64516 +g25267 +g27 +sg25268 +S'Silver Bowl' +p64517 +sg25270 +S'Horace Reina' +p64518 +sa(dp64519 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl with Cover' +p64520 +sg25270 +S'Hester Duany' +p64521 +sa(dp64522 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p64523 +sg25270 +S'Hester Duany' +p64524 +sa(dp64525 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p64526 +sg25270 +S'Isidore Steinberg' +p64527 +sa(dp64528 +g25267 +g27 +sg25268 +S'Silver Sugar Urn' +p64529 +sg25270 +S'Vincent Carano' +p64530 +sa(dp64531 +g25273 +S'pen and black ink and brush and black ink with gray wash' +p64532 +sg25267 +g27 +sg25275 +S'published 1801' +p64533 +sg25268 +S'Non tu ne mourras pas ... cet enfant a besoin de Toi' +p64534 +sg25270 +S'Louis-Joseph Lefevre' +p64535 +sa(dp64536 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p64537 +sg25270 +S'Simon Weiss' +p64538 +sa(dp64539 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p64540 +sg25270 +S'Simon Weiss' +p64541 +sa(dp64542 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p64543 +sg25270 +S'Simon Weiss' +p64544 +sa(dp64545 +g25267 +g27 +sg25268 +S'Silver Bowl' +p64546 +sg25270 +S'Vincent Murphy' +p64547 +sa(dp64548 +g25267 +g27 +sg25268 +S'Silver Covered Sugar Urn' +p64549 +sg25270 +S'Simon Weiss' +p64550 +sa(dp64551 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p64552 +sg25270 +S'Bernard Westmacott' +p64553 +sa(dp64554 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p64555 +sg25270 +S'Hester Duany' +p64556 +sa(dp64557 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl and Tongs' +p64558 +sg25270 +S'Margaret Stottlemeyer' +p64559 +sa(dp64560 +g25267 +g27 +sg25268 +S'Silver Waste Bowl' +p64561 +sg25270 +S'Giacinto Capelli' +p64562 +sa(dp64563 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p64564 +sg25270 +S'Herbert Russin' +p64565 +sa(dp64566 +g25273 +S'pen and black ink and brush and black ink with gray wash' +p64567 +sg25267 +g27 +sg25275 +S'published 1801' +p64568 +sg25268 +S"Rosisla a tout oublie sinon qu'elle aime ..." +p64569 +sg25270 +S'Louis-Joseph Lefevre' +p64570 +sa(dp64571 +g25267 +g27 +sg25268 +S'Silver Bowl' +p64572 +sg25270 +S'Isidore Steinberg' +p64573 +sa(dp64574 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p64575 +sg25270 +S'Horace Reina' +p64576 +sa(dp64577 +g25267 +g27 +sg25268 +S'Silver Porringer' +p64578 +sg25270 +S'Hester Duany' +p64579 +sa(dp64580 +g25267 +g27 +sg25268 +S'Silver Porringer' +p64581 +sg25270 +S'Hester Duany' +p64582 +sa(dp64583 +g25267 +g27 +sg25268 +S'Silver Porringer' +p64584 +sg25270 +S'Joseph Rothenberg' +p64585 +sa(dp64586 +g25267 +g27 +sg25268 +S'Silver Porringer' +p64587 +sg25270 +S'Charles Cullen' +p64588 +sa(dp64589 +g25267 +g27 +sg25268 +S'Silver Porringer' +p64590 +sg25270 +S'Horace Reina' +p64591 +sa(dp64592 +g25267 +g27 +sg25268 +S'Silver Porringer' +p64593 +sg25270 +S'Hester Duany' +p64594 +sa(dp64595 +g25267 +g27 +sg25268 +S'Silver Porringer' +p64596 +sg25270 +S'Leo Drozdoff' +p64597 +sa(dp64598 +g25267 +g27 +sg25268 +S'Silver Porringer' +p64599 +sg25270 +S'Michael Fenga' +p64600 +sa(dp64601 +g25273 +S'pen and black ink and brush and black ink with gray wash' +p64602 +sg25267 +g27 +sg25275 +S'published 1801' +p64603 +sg25268 +S'Seroit-ce Zelomir ... mon fils!' +p64604 +sg25270 +S'Louis-Joseph Lefevre' +p64605 +sa(dp64606 +g25267 +g27 +sg25268 +S'Silver Porringer' +p64607 +sg25270 +S'Joseph Leboit' +p64608 +sa(dp64609 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p64610 +sg25270 +S'Alfred Nason' +p64611 +sa(dp64612 +g25267 +g27 +sg25268 +S'Silver Porringer' +p64613 +sg25270 +S'Hester Duany' +p64614 +sa(dp64615 +g25267 +g27 +sg25268 +S'Silver Monteith Bowl' +p64616 +sg25270 +S'Edgar L. Pearce' +p64617 +sa(dp64618 +g25267 +g27 +sg25268 +S'Silver Porringer' +p64619 +sg25270 +S'Rollington Campbell' +p64620 +sa(dp64621 +g25267 +g27 +sg25268 +S'Silver Bowl' +p64622 +sg25270 +S'Hans Westendorff' +p64623 +sa(dp64624 +g25267 +g27 +sg25268 +S'Silver Porringer' +p64625 +sg25270 +S'Milton Grubstein' +p64626 +sa(dp64627 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p64628 +sg25270 +S'Simon Weiss' +p64629 +sa(dp64630 +g25267 +g27 +sg25268 +S'Silver Tea Caddy' +p64631 +sg25270 +S'Kalamian Walton' +p64632 +sa(dp64633 +g25267 +g27 +sg25268 +S'Silver Bowl' +p64634 +sg25270 +S'Hester Duany' +p64635 +sa(dp64636 +g25273 +S'pen and black ink and brush and black ink with gray wash' +p64637 +sg25267 +g27 +sg25275 +S'published 1801' +p64638 +sg25268 +S'Oh ma fille ... cher Etienne ... tiens ... lis, Rosisla' +p64639 +sg25270 +S'Louis-Joseph Lefevre' +p64640 +sa(dp64641 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p64642 +sg25270 +S'Clayton Braun' +p64643 +sa(dp64644 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p64645 +sg25270 +S'Simon Weiss' +p64646 +sa(dp64647 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p64648 +sg25270 +S'Matthew Mangiacotti' +p64649 +sa(dp64650 +g25267 +g27 +sg25268 +S'Silver Porringer' +p64651 +sg25270 +S'Charles Cullen' +p64652 +sa(dp64653 +g25267 +g27 +sg25268 +S'Silver Bowl' +p64654 +sg25270 +S'Lon Cronk' +p64655 +sa(dp64656 +g25267 +g27 +sg25268 +S'Silver Porringer' +p64657 +sg25270 +S'Vincent Carano' +p64658 +sa(dp64659 +g25267 +g27 +sg25268 +S'Silver Bowl' +p64660 +sg25270 +S'Michael Fenga' +p64661 +sa(dp64662 +g25267 +g27 +sg25268 +S'Silver Bowl' +p64663 +sg25270 +S'Hester Duany' +p64664 +sa(dp64665 +g25267 +g27 +sg25268 +S'Silver Bowl' +p64666 +sg25270 +S'Michael Fenga' +p64667 +sa(dp64668 +g25267 +g27 +sg25268 +S'Two Handled Silver Bowl' +p64669 +sg25270 +S'Isidore Steinberg' +p64670 +sa(dp64671 +g25273 +S'pen and black ink and brush and black ink with gray wash' +p64672 +sg25267 +g27 +sg25275 +S'published 1801' +p64673 +sg25268 +S'Zelomir ... there is your mother ...' +p64674 +sg25270 +S'Louis-Joseph Lefevre' +p64675 +sa(dp64676 +g25267 +g27 +sg25268 +S'Silver Sugar Urn' +p64677 +sg25270 +S'Vincent Carano' +p64678 +sa(dp64679 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p64680 +sg25270 +S'S. Brodsky' +p64681 +sa(dp64682 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p64683 +sg25270 +S'Francis Law Durand' +p64684 +sa(dp64685 +g25267 +g27 +sg25268 +S'Silver Bowl' +p64686 +sg25270 +S'Louis Gersh' +p64687 +sa(dp64688 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl with Cover' +p64689 +sg25270 +S'Frank Fumagalli' +p64690 +sa(dp64691 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl with Cover' +p64692 +sg25270 +S'Vincent Carano' +p64693 +sa(dp64694 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64695 +sg25270 +S'Vincent Carano' +p64696 +sa(dp64697 +g25267 +g27 +sg25268 +S'Silver Cream Pitcher' +p64698 +sg25270 +S'Henry Meyers' +p64699 +sa(dp64700 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p64701 +sg25270 +S'Isidore Steinberg' +p64702 +sa(dp64703 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64704 +sg25270 +S'Eugene Barrell' +p64705 +sa(dp64706 +g25273 +S'Italian, 43 B.C. - 17/18 A.D.' +p64707 +sg25267 +g27 +sg25275 +S'(author)' +p64708 +sg25268 +S"Les Metamorphoses d'Ovide (volume I)" +p64709 +sg25270 +S'Artist Information (' +p64710 +sa(dp64711 +g25267 +g27 +sg25268 +S'Silver Wine Flagon' +p64712 +sg25270 +S'Eugene Barrell' +p64713 +sa(dp64714 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64715 +sg25270 +S'Eugene Barrell' +p64716 +sa(dp64717 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64718 +sg25270 +S'Joseph Leboit' +p64719 +sa(dp64720 +g25267 +g27 +sg25268 +S'Silver Cream Pitcher' +p64721 +sg25270 +S'Margaret Stottlemeyer' +p64722 +sa(dp64723 +g25267 +g27 +sg25268 +S'Silver Cream Pitcher' +p64724 +sg25270 +S'Francis Law Durand' +p64725 +sa(dp64726 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64727 +sg25270 +S'Hester Duany' +p64728 +sa(dp64729 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p64730 +sg25270 +S'Frank Fumagalli' +p64731 +sa(dp64732 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p64733 +sg25270 +S'D. Brandfield' +p64734 +sa(dp64735 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p64736 +sg25270 +S'Gordon Sanborn' +p64737 +sa(dp64738 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p64739 +sg25270 +S'Charlotte Winter' +p64740 +sa(dp64741 +g25273 +S'Italian, 43 B.C. - 17/18 A.D.' +p64742 +sg25267 +g27 +sg25275 +S'(author)' +p64743 +sg25268 +S"Les Metamorphoses d'Ovide (volume II)" +p64744 +sg25270 +S'Artist Information (' +p64745 +sa(dp64746 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p64747 +sg25270 +S'Michael Fenga' +p64748 +sa(dp64749 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64750 +sg25270 +S'Leo Drozdoff' +p64751 +sa(dp64752 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64753 +sg25270 +S'Eugene Barrell' +p64754 +sa(dp64755 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64756 +sg25270 +S'Hester Duany' +p64757 +sa(dp64758 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64759 +sg25270 +S'Hester Duany' +p64760 +sa(dp64761 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64762 +sg25270 +S'Nicholas Zupa' +p64763 +sa(dp64764 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64765 +sg25270 +S'Simon Weiss' +p64766 +sa(dp64767 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64768 +sg25270 +S'Francisco Alvarez' +p64769 +sa(dp64770 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64771 +sg25270 +S'Simon Weiss' +p64772 +sa(dp64773 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64774 +sg25270 +S'Francisco Alvarez' +p64775 +sa(dp64776 +g25273 +S'Italian, 43 B.C. - 17/18 A.D.' +p64777 +sg25267 +g27 +sg25275 +S'(author)' +p64778 +sg25268 +S"Les Metamorphoses d'Ovide (volume III)" +p64779 +sg25270 +S'Artist Information (' +p64780 +sa(dp64781 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64782 +sg25270 +S'Simon Weiss' +p64783 +sa(dp64784 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64785 +sg25270 +S'Giacinto Capelli' +p64786 +sa(dp64787 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64788 +sg25270 +S'John R. Towers' +p64789 +sa(dp64790 +g25267 +g27 +sg25268 +S'Covered Water Pitcher' +p64791 +sg25270 +S'Mario De Ferrante' +p64792 +sa(dp64793 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p64794 +sg25270 +S'Giacinto Capelli' +p64795 +sa(dp64796 +g25267 +g27 +sg25268 +S'Silver Sauce Boat' +p64797 +sg25270 +S'Henry Meyers' +p64798 +sa(dp64799 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p64800 +sg25270 +S'S. Brodsky' +p64801 +sa(dp64802 +g25267 +g27 +sg25268 +S'Silver Cream Pitcher' +p64803 +sg25270 +S'Eugene La Foret' +p64804 +sa(dp64805 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p64806 +sg25270 +S'John Garay' +p64807 +sa(dp64808 +g25267 +g27 +sg25268 +S'Silver Plated Water Pitcher' +p64809 +sg25270 +S'Ellen Duncan' +p64810 +sa(dp64811 +g25273 +S'Italian, 43 B.C. - 17/18 A.D.' +p64812 +sg25267 +g27 +sg25275 +S'(author)' +p64813 +sg25268 +S"Les Metamorphoses d'Ovide (volume IV)" +p64814 +sg25270 +S'Artist Information (' +p64815 +sa(dp64816 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p64817 +sg25270 +S'Frank Fumagalli' +p64818 +sa(dp64819 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p64820 +sg25270 +S'John Garay' +p64821 +sa(dp64822 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p64823 +sg25270 +S'Gerald Bernhardt' +p64824 +sa(dp64825 +g25267 +g27 +sg25268 +S'Silver Cream Pitcher' +p64826 +sg25270 +S'Isidore Steinberg' +p64827 +sa(dp64828 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p64829 +sg25270 +S'Frank Fumagalli' +p64830 +sa(dp64831 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p64832 +sg25270 +S'Frank Fumagalli' +p64833 +sa(dp64834 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64835 +sg25270 +S'Francis Law Durand' +p64836 +sa(dp64837 +g25267 +g27 +sg25268 +S'Silver Pap Boat' +p64838 +sg25270 +S'Francisco Alvarez' +p64839 +sa(dp64840 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64841 +sg25270 +S'Giacinto Capelli' +p64842 +sa(dp64843 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p64844 +sg25270 +S'D. Brandfield' +p64845 +sa(dp64846 +g25273 +S'(author)' +p64847 +sg25267 +g27 +sg25275 +S'\n' +p64848 +sg25268 +S'Labyren de Versailles' +p64849 +sg25270 +S'Artist Information (' +p64850 +sa(dp64851 +g25267 +g27 +sg25268 +S'Silver Creamer' +p64852 +sg25270 +S'Vincent Carano' +p64853 +sa(dp64854 +g25267 +g27 +sg25268 +S'Silver Tankard' +p64855 +sg25270 +S'Clayton Braun' +p64856 +sa(dp64857 +g25267 +g27 +sg25268 +S'Silver Tankard' +p64858 +sg25270 +S'Gordon Sanborn' +p64859 +sa(dp64860 +g25267 +g27 +sg25268 +S'Silver Tankard' +p64861 +sg25270 +S'Hans Westendorff' +p64862 +sa(dp64863 +g25267 +g27 +sg25268 +S'Silver Cup' +p64864 +sg25270 +S'Hester Duany' +p64865 +sa(dp64866 +g25267 +g27 +sg25268 +S'Silver Tumbler' +p64867 +sg25270 +S'Hester Duany' +p64868 +sa(dp64869 +g25267 +g27 +sg25268 +S'Silver Tankard' +p64870 +sg25270 +S'Joseph Rothenberg' +p64871 +sa(dp64872 +g25267 +g27 +sg25268 +S'Silver Mug' +p64873 +sg25270 +S'Richard Schoene' +p64874 +sa(dp64875 +g25267 +g27 +sg25268 +S'Silver Mug' +p64876 +sg25270 +S'Alfred Nason' +p64877 +sa(dp64878 +g25267 +g27 +sg25268 +S'Silver Mug' +p64879 +sg25270 +S'Richard Schoene' +p64880 +sa(dp64881 +g25273 +S'French, 1741 - 1777' +p64882 +sg25267 +g27 +sg25275 +S'(author)' +p64883 +sg25268 +S'Zelis au bain' +p64884 +sg25270 +S'Artist Information (' +p64885 +sa(dp64886 +g25267 +g27 +sg25268 +S'Silver Mug' +p64887 +sg25270 +S'Herman Bader' +p64888 +sa(dp64889 +g25267 +g27 +sg25268 +S'Silver Tankard' +p64890 +sg25270 +S'Karl Joubert' +p64891 +sa(dp64892 +g25267 +g27 +sg25268 +S'Silver Mug' +p64893 +sg25270 +S'Gordon Sanborn' +p64894 +sa(dp64895 +g25267 +g27 +sg25268 +S'Silver Mug' +p64896 +sg25270 +S'Leo Drozdoff' +p64897 +sa(dp64898 +g25267 +g27 +sg25268 +S'Silver Communion Cup' +p64899 +sg25270 +S'Ella Josephine Sterling' +p64900 +sa(dp64901 +g25267 +g27 +sg25268 +S'Silver Tankard' +p64902 +sg25270 +S'Leo Drozdoff' +p64903 +sa(dp64904 +g25267 +g27 +sg25268 +S'Silver Mug' +p64905 +sg25270 +S'Alfred Nason' +p64906 +sa(dp64907 +g25267 +g27 +sg25268 +S'Silver Tankard' +p64908 +sg25270 +S'Amelia Tuccio' +p64909 +sa(dp64910 +g25267 +g27 +sg25268 +S'Silver Tankard' +p64911 +sg25270 +S'American 20th Century' +p64912 +sa(dp64913 +g25267 +g27 +sg25268 +S'Silver Tankard' +p64914 +sg25270 +S'Matthew Mangiacotti' +p64915 +sa(dp64916 +g25273 +S'French, 1755 - 1832' +p64917 +sg25267 +g27 +sg25275 +S'(author)' +p64918 +sg25268 +S'Chansons nouvelles de M. de Piis ...' +p64919 +sg25270 +S'Artist Information (' +p64920 +sa(dp64921 +g25267 +g27 +sg25268 +S'Silver Tankard' +p64922 +sg25270 +S'Karl Joubert' +p64923 +sa(dp64924 +g25267 +g27 +sg25268 +S'Silver Mug' +p64925 +sg25270 +S'Hans Westendorff' +p64926 +sa(dp64927 +g25267 +g27 +sg25268 +S'Silver Tankard' +p64928 +sg25270 +S'Joseph Leboit' +p64929 +sa(dp64930 +g25267 +g27 +sg25268 +S'Silver Mug' +p64931 +sg25270 +S'Hans Westendorff' +p64932 +sa(dp64933 +g25267 +g27 +sg25268 +S'Silver Mug' +p64934 +sg25270 +S'Charles Garjian' +p64935 +sa(dp64936 +g25267 +g27 +sg25268 +S'Silver Tankard' +p64937 +sg25270 +S'Hester Duany' +p64938 +sa(dp64939 +g25267 +g27 +sg25268 +S'Silver Chalice' +p64940 +sg25270 +S'Lawrence Flynn' +p64941 +sa(dp64942 +g25267 +g27 +sg25268 +S'Silver Chalice' +p64943 +sg25270 +S'Thomas Holloway' +p64944 +sa(dp64945 +g25267 +g27 +sg25268 +S'Silver Mug' +p64946 +sg25270 +S'Isidore Steinberg' +p64947 +sa(dp64948 +g25267 +g27 +sg25268 +S'Silver Beaker' +p64949 +sg25270 +S'Michael Fenga' +p64950 +sa(dp64951 +g25273 +S'French, 1784 - 1831 or after' +p64952 +sg25267 +g27 +sg25275 +S'(artist)' +p64953 +sg25268 +S'Histoire de Manon Lescaut (volume I)' +p64954 +sg25270 +S'Artist Information (' +p64955 +sa(dp64956 +g25267 +g27 +sg25268 +S'Silver Communion Beakers' +p64957 +sg25270 +S'Gordon Sanborn' +p64958 +sa(dp64959 +g25267 +g27 +sg25268 +S'Silver Mug' +p64960 +sg25270 +S'Henry Granet' +p64961 +sa(dp64962 +g25267 +g27 +sg25268 +S'Silver Mug' +p64963 +sg25270 +S'John Fisk' +p64964 +sa(dp64965 +g25267 +g27 +sg25268 +S'Silver Mug' +p64966 +sg25270 +S'Henry Granet' +p64967 +sa(dp64968 +g25267 +g27 +sg25268 +S'Silver Mug' +p64969 +sg25270 +S'Eugene La Foret' +p64970 +sa(dp64971 +g25267 +g27 +sg25268 +S'Silver Cup' +p64972 +sg25270 +S'Herman Bader' +p64973 +sa(dp64974 +g25267 +g27 +sg25268 +S'Silver Mug' +p64975 +sg25270 +S'Michael Fenga' +p64976 +sa(dp64977 +g25267 +g27 +sg25268 +S'Silver Beaker' +p64978 +sg25270 +S'Alfred Nason' +p64979 +sa(dp64980 +g25267 +g27 +sg25268 +S'Silver Beaker' +p64981 +sg25270 +S'Richard Schoene' +p64982 +sa(dp64983 +g25267 +g27 +sg25268 +S'Silver Mug' +p64984 +sg25270 +S'Artist Information (' +p64985 +sa(dp64986 +g25273 +S'pen and black ink and brush and black ink with gray wash' +p64987 +sg25267 +g27 +sg25275 +S'published 1797' +p64988 +sg25268 +S"Nous n'avons pas le patience d'attendre que nous fussions seuls" +p64989 +sg25270 +S'Louis-Joseph Lefevre' +p64990 +sa(dp64991 +g25267 +g27 +sg25268 +S'Silver Tankard' +p64992 +sg25270 +S'Gordon Sanborn' +p64993 +sa(dp64994 +g25267 +g27 +sg25268 +S'Silver Caudle Cup' +p64995 +sg25270 +S'Michael Fenga' +p64996 +sa(dp64997 +g25267 +g27 +sg25268 +S'Silver Tankard' +p64998 +sg25270 +S'Gordon Sanborn' +p64999 +sa(dp65000 +g25267 +g27 +sg25268 +S'Silver Tankard' +p65001 +sg25270 +S'Gordon Sanborn' +p65002 +sa(dp65003 +g25267 +g27 +sg25268 +S'Silver Mug' +p65004 +sg25270 +S'Michael Fenga' +p65005 +sa(dp65006 +g25267 +g27 +sg25268 +S'Silver Mug' +p65007 +sg25270 +S'Isidore Steinberg' +p65008 +sa(dp65009 +g25267 +g27 +sg25268 +S'Silver Cup' +p65010 +sg25270 +S'Cecily Edwards' +p65011 +sa(dp65012 +g25267 +g27 +sg25268 +S'Silver Tankard' +p65013 +sg25270 +S'Gordon Sanborn' +p65014 +sa(dp65015 +g25267 +g27 +sg25268 +S'Silver Tankard' +p65016 +sg25270 +S'Horace Reina' +p65017 +sa(dp65018 +g25267 +g27 +sg25268 +S'Silver Tankard' +p65019 +sg25270 +S'Horace Reina' +p65020 +sa(dp65021 +g25273 +S'pen and black ink and brush and black ink with gray wash' +p65022 +sg25267 +g27 +sg25275 +S'published 1797' +p65023 +sg25268 +S"J'attendois les yeux baisses et avec tremblement qu'elle s'expliquate" +p65024 +sg25270 +S'Louis-Joseph Lefevre' +p65025 +sa(dp65026 +g25267 +g27 +sg25268 +S'Silver Tankard' +p65027 +sg25270 +S'Gordon Sanborn' +p65028 +sa(dp65029 +g25267 +g27 +sg25268 +S'Silver Tankard' +p65030 +sg25270 +S'Vincent Carano' +p65031 +sa(dp65032 +g25267 +g27 +sg25268 +S'Silver Beaker' +p65033 +sg25270 +S'Isidore Steinberg' +p65034 +sa(dp65035 +g25267 +g27 +sg25268 +S'Silver Mug' +p65036 +sg25270 +S'Filippo Porreca' +p65037 +sa(dp65038 +g25267 +g27 +sg25268 +S'Silver Tankard' +p65039 +sg25270 +S'Hester Duany' +p65040 +sa(dp65041 +g25267 +g27 +sg25268 +S'Silver Beakers' +p65042 +sg25270 +S'Clayton Braun' +p65043 +sa(dp65044 +g25267 +g27 +sg25268 +S'Silver Mug' +p65045 +sg25270 +S'John Garay' +p65046 +sa(dp65047 +g25267 +g27 +sg25268 +S'Silver Tankard' +p65048 +sg25270 +S'Joseph Leboit' +p65049 +sa(dp65050 +g25267 +g27 +sg25268 +S'Silver Mug' +p65051 +sg25270 +S'Charlotte Winter' +p65052 +sa(dp65053 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65054 +sg25270 +S'Nicholas Zupa' +p65055 +sa(dp65056 +g25273 +S'pen and black ink and brush and black ink with gray wash' +p65057 +sg25267 +g27 +sg25275 +S'published 1797' +p65058 +sg25268 +S"Je lui trouve l'air de Manon, reprit le viellard en me haussant ..." +p65059 +sg25270 +S'Louis-Joseph Lefevre' +p65060 +sa(dp65061 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65062 +sg25270 +S'Charlotte Winter' +p65063 +sa(dp65064 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65065 +sg25270 +S'Charlotte Winter' +p65066 +sa(dp65067 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65068 +sg25270 +S'Charlotte Winter' +p65069 +sa(dp65070 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65071 +sg25270 +S'Charlotte Winter' +p65072 +sa(dp65073 +g25267 +g27 +sg25268 +S'Silver Fiddle Head Spoon' +p65074 +sg25270 +S'Florence Stevenson' +p65075 +sa(dp65076 +g25267 +g27 +sg25268 +S'Two Silver Soup Spoons' +p65077 +sg25270 +S'Charles Garjian' +p65078 +sa(dp65079 +g25267 +g27 +sg25268 +S'Two Silver Sugar Spoons' +p65080 +sg25270 +S'Anthony Zuccarello' +p65081 +sa(dp65082 +g25267 +g27 +sg25268 +S'Silver Salt Spoon' +p65083 +sg25270 +S'Anthony Zuccarello' +p65084 +sa(dp65085 +g25267 +g27 +sg25268 +S'Silver Gravy Spoon' +p65086 +sg25270 +S'Joseph Leboit' +p65087 +sa(dp65088 +g25267 +g27 +sg25268 +S'Two Silver Soup Spoons' +p65089 +sg25270 +S'Nicholas Zupa' +p65090 +sa(dp65091 +g25273 +S'pen and black ink and brush and black ink with gray wash' +p65092 +sg25267 +g27 +sg25275 +S'published 1797' +p65093 +sg25268 +S'Voila de quoi vous etes cause, mon pere!' +p65094 +sg25270 +S'Louis-Joseph Lefevre' +p65095 +sa(dp65096 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65097 +sg25270 +S'Lon Cronk' +p65098 +sa(dp65099 +g25267 +g27 +sg25268 +S'Souvenir Spoon' +p65100 +sg25270 +S'Ellen Duncan' +p65101 +sa(dp65102 +g25267 +g27 +sg25268 +S'Souvenir Spoon' +p65103 +sg25270 +S'Ellen Duncan' +p65104 +sa(dp65105 +g25267 +g27 +sg25268 +S'Souvenir Spoon' +p65106 +sg25270 +S'Ellen Duncan' +p65107 +sa(dp65108 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65109 +sg25270 +S'Charlotte Winter' +p65110 +sa(dp65111 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65112 +sg25270 +S'Charlotte Winter' +p65113 +sa(dp65114 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65115 +sg25270 +S'Charlotte Winter' +p65116 +sa(dp65117 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65118 +sg25270 +S'Charlotte Winter' +p65119 +sa(dp65120 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65121 +sg25270 +S'Charlotte Winter' +p65122 +sa(dp65123 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65124 +sg25270 +S'Charlotte Winter' +p65125 +sa(dp65126 +g25273 +S'(artist)' +p65127 +sg25267 +g27 +sg25275 +S'\n' +p65128 +sg25268 +S'Histoire de Manon Lescaut (volume II)' +p65129 +sg25270 +S'Artist Information (' +p65130 +sa(dp65131 +g25267 +g27 +sg25268 +S'Silver Knife and Fork' +p65132 +sg25270 +S'A. Zimet' +p65133 +sa(dp65134 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65135 +sg25270 +S'Charlotte Winter' +p65136 +sa(dp65137 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65138 +sg25270 +S'Charlotte Winter' +p65139 +sa(dp65140 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65141 +sg25270 +S'Charlotte Winter' +p65142 +sa(dp65143 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65144 +sg25270 +S'Charlotte Winter' +p65145 +sa(dp65146 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65147 +sg25270 +S'Charlotte Winter' +p65148 +sa(dp65149 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65150 +sg25270 +S'Charlotte Winter' +p65151 +sa(dp65152 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65153 +sg25270 +S'Charlotte Winter' +p65154 +sa(dp65155 +g25267 +g27 +sg25268 +S'Silver Sugar Spoon' +p65156 +sg25270 +S'Anthony Zuccarello' +p65157 +sa(dp65158 +g25267 +g27 +sg25268 +S'Silver Teaspoon' +p65159 +sg25270 +S'Kalamian Walton' +p65160 +sa(dp65161 +g25273 +S'pen and black ink and brush and black ink with gray wash' +p65162 +sg25267 +g27 +sg25275 +S'published 1797' +p65163 +sg25268 +S'Voyez, Monsieur, regardez vous bien, et rendez moi justice' +p65164 +sg25270 +S'Louis-Joseph Lefevre' +p65165 +sa(dp65166 +g25267 +g27 +sg25268 +S'Silver Soup Spoon' +p65167 +sg25270 +S'Joseph Guarino' +p65168 +sa(dp65169 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65170 +sg25270 +S'Florence Stevenson' +p65171 +sa(dp65172 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65173 +sg25270 +S'Frederick Jackson' +p65174 +sa(dp65175 +g25267 +g27 +sg25268 +S'Silver Salt Spoon' +p65176 +sg25270 +S'Frederick Jackson' +p65177 +sa(dp65178 +g25267 +g27 +sg25268 +S'Silver Teaspoon' +p65179 +sg25270 +S'Frederick Jackson' +p65180 +sa(dp65181 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65182 +sg25270 +S'Walter W. Jennings' +p65183 +sa(dp65184 +g25267 +g27 +sg25268 +S'Silver Teaspoon' +p65185 +sg25270 +S'Francis Law Durand' +p65186 +sa(dp65187 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65188 +sg25270 +S'Columbus Simpson' +p65189 +sa(dp65190 +g25267 +g27 +sg25268 +S'Silver Teaspoon' +p65191 +sg25270 +S'Frank Nelson' +p65192 +sa(dp65193 +g25267 +g27 +sg25268 +S'Silver Teaspoon' +p65194 +sg25270 +S'Frank Nelson' +p65195 +sa(dp65196 +g25273 +S'pen and black ink and brush and black ink with gray wash' +p65197 +sg25267 +g27 +sg25275 +S'published 1797' +p65198 +sg25268 +S'Nous etions prets a nous mettre au lit' +p65199 +sg25270 +S'Louis-Joseph Lefevre' +p65200 +sa(dp65201 +g25267 +g27 +sg25268 +S'Silver Punch Ladle' +p65202 +sg25270 +S'Harold Smith' +p65203 +sa(dp65204 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65205 +sg25270 +S'Charlotte Winter' +p65206 +sa(dp65207 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65208 +sg25270 +S'William P. Shearwood' +p65209 +sa(dp65210 +g25267 +g27 +sg25268 +S'Silver Ladle' +p65211 +sg25270 +S'Artist Information (' +p65212 +sa(dp65213 +g25267 +g27 +sg25268 +S'Silver Tablespoon' +p65214 +sg25270 +S'Columbus Simpson' +p65215 +sa(dp65216 +g25267 +g27 +sg25268 +S'Silver Spoon' +p65217 +sg25270 +S'Ludmilla Calderon' +p65218 +sa(dp65219 +g25267 +g27 +sg25268 +S'Silver Soup Ladle' +p65220 +sg25270 +S'John R. Towers' +p65221 +sa(dp65222 +g25267 +g27 +sg25268 +S'Silver Ladle' +p65223 +sg25270 +S'John R. Towers' +p65224 +sa(dp65225 +g25267 +g27 +sg25268 +S'Silver Serving Set' +p65226 +sg25270 +S'Ellen Duncan' +p65227 +sa(dp65228 +g25267 +g27 +sg25268 +S'Silver Salt Spoon' +p65229 +sg25270 +S'John R. Towers' +p65230 +sa(dp65231 +g25273 +S'pen and black ink and brush and black ink with gray wash' +p65232 +sg25267 +g27 +sg25275 +S'published 1797' +p65233 +sg25268 +S'Tous les mouvements de son ame sembloient se peindre dans ses yeux' +p65234 +sg25270 +S'Louis-Joseph Lefevre' +p65235 +sa(dp65236 +g25267 +g27 +sg25268 +S'Silver Shaker' +p65237 +sg25270 +S'Eugene Barrell' +p65238 +sa(dp65239 +g25267 +g27 +sg25268 +S'Silver Napkin Ring' +p65240 +sg25270 +S'Sebastian Simonet' +p65241 +sa(dp65242 +g25267 +g27 +sg25268 +S'Silver Snuffer Stand' +p65243 +sg25270 +S'Michael Fenga' +p65244 +sa(dp65245 +g25267 +g27 +sg25268 +S'Silver Holder' +p65246 +sg25270 +S'Fletcher Hanks' +p65247 +sa(dp65248 +g25267 +g27 +sg25268 +S'Silver Salt Cellars' +p65249 +sg25270 +S'Vincent Carano' +p65250 +sa(dp65251 +g25267 +g27 +sg25268 +S'Silver Caster' +p65252 +sg25270 +S'John Tarantino' +p65253 +sa(dp65254 +g25267 +g27 +sg25268 +S'Silver Pepper Pot' +p65255 +sg25270 +S'Hester Duany' +p65256 +sa(dp65257 +g25267 +g27 +sg25268 +S'Silver Shaker' +p65258 +sg25270 +S'Hester Duany' +p65259 +sa(dp65260 +g25267 +g27 +sg25268 +S'Silver Ink Stand' +p65261 +sg25270 +S'Vincent Carano' +p65262 +sa(dp65263 +g25267 +g27 +sg25268 +S'Silver Serving Dish' +p65264 +sg25270 +S'S. Brodsky' +p65265 +sa(dp65266 +g25273 +S'pen and black ink and brush and black ink with gray wash' +p65267 +sg25267 +g27 +sg25275 +S'published 1797' +p65268 +sg25268 +S'Je me couchai ensuite sur la fosse, le visagetourne vers le sable' +p65269 +sg25270 +S'Louis-Joseph Lefevre' +p65270 +sa(dp65271 +g25267 +g27 +sg25268 +S'Silver Tray' +p65272 +sg25270 +S'Kalamian Walton' +p65273 +sa(dp65274 +g25267 +g27 +sg25268 +S'Silver Platter' +p65275 +sg25270 +S'Alfred Nason' +p65276 +sa(dp65277 +g25267 +g27 +sg25268 +S'Silver Plate' +p65278 +sg25270 +S"James O'Mara" +p65279 +sa(dp65280 +g25267 +g27 +sg25268 +S'Silver Candle Stand' +p65281 +sg25270 +S'Isidore Steinberg' +p65282 +sa(dp65283 +g25267 +g27 +sg25268 +S'Silver Candlesticks' +p65284 +sg25270 +S'Giacinto Capelli' +p65285 +sa(dp65286 +g25267 +g27 +sg25268 +S'Silver Strainer' +p65287 +sg25270 +S'Herman Bader' +p65288 +sa(dp65289 +g25267 +g27 +sg25268 +S'Silver Snuff Box' +p65290 +sg25270 +S'Columbus Simpson' +p65291 +sa(dp65292 +g25267 +g27 +sg25268 +S'Silver Patch Box' +p65293 +sg25270 +S'Hans Westendorff' +p65294 +sa(dp65295 +g25267 +g27 +sg25268 +S'Silver Caster' +p65296 +sg25270 +S'Herbert Russin' +p65297 +sa(dp65298 +g25267 +g27 +sg25268 +S'Silver Caster' +p65299 +sg25270 +S'Joseph Leboit' +p65300 +sa(dp65301 +g25273 +S'French, 1697 - 1763' +p65302 +sg25267 +g27 +sg25275 +S'(author)' +p65303 +sg25268 +S'Histoire de Manon Lescaut (volume I)' +p65304 +sg25270 +S'Artist Information (' +p65305 +sa(dp65306 +g25267 +g27 +sg25268 +S'Silver Glass Holder' +p65307 +sg25270 +S'Ludmilla Calderon' +p65308 +sa(dp65309 +g25267 +g27 +sg25268 +S'Silver Nutmeg Grater' +p65310 +sg25270 +S'Michael Fenga' +p65311 +sa(dp65312 +g25267 +g27 +sg25268 +S'Silver Snuff Box' +p65313 +sg25270 +S'Horace Reina' +p65314 +sa(dp65315 +g25267 +g27 +sg25268 +S'Silver Box' +p65316 +sg25270 +S'Frank Fumagalli' +p65317 +sa(dp65318 +g25267 +g27 +sg25268 +S'Silver Candlestick with Two Snuffers' +p65319 +sg25270 +S'Herbert Russin' +p65320 +sa(dp65321 +g25267 +g27 +sg25268 +S'Silver Momento' +p65322 +sg25270 +S'Lawrence Flynn' +p65323 +sa(dp65324 +g25267 +g27 +sg25268 +S'Silver Communion Plate' +p65325 +sg25270 +S'Lena Nastasi' +p65326 +sa(dp65327 +g25267 +g27 +sg25268 +S'Silver Communion Plate' +p65328 +sg25270 +S'Ella Josephine Sterling' +p65329 +sa(dp65330 +g25267 +g27 +sg25268 +S'Silver Ink Stand' +p65331 +sg25270 +S'John Dixon' +p65332 +sa(dp65333 +g25267 +g27 +sg25268 +S'Silver Candlestick' +p65334 +sg25270 +S'Frank M. Keane' +p65335 +sa(dp65336 +g25273 +S'French, 1697 - 1763' +p65337 +sg25267 +g27 +sg25275 +S'(author)' +p65338 +sg25268 +S'Histoire de Manon Lescaut (volume II)' +p65339 +sg25270 +S'Artist Information (' +p65340 +sa(dp65341 +g25267 +g27 +sg25268 +S'Silver Platter' +p65342 +sg25270 +S'Al Curry' +p65343 +sa(dp65344 +g25267 +g27 +sg25268 +S'Silver Coffee Pot' +p65345 +sg25270 +S'Vincent Carano' +p65346 +sa(dp65347 +g25267 +g27 +sg25268 +S'Silver Coffee Pot' +p65348 +sg25270 +S'Irene Malawicz' +p65349 +sa(dp65350 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65351 +sg25270 +S'Hester Duany' +p65352 +sa(dp65353 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65354 +sg25270 +S'Herman Bader' +p65355 +sa(dp65356 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65357 +sg25270 +S'Clayton Braun' +p65358 +sa(dp65359 +g25267 +g27 +sg25268 +S'Silver Coffee Pot' +p65360 +sg25270 +S'Emilio Zito' +p65361 +sa(dp65362 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65363 +sg25270 +S'John Garay' +p65364 +sa(dp65365 +g25267 +g27 +sg25268 +S'Silver Flagon' +p65366 +sg25270 +S'Albert Camilli' +p65367 +sa(dp65368 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65369 +sg25270 +S'Eugene La Foret' +p65370 +sa(dp65371 +g25273 +S'French, 1600 - 1665' +p65372 +sg25267 +g27 +sg25275 +S'(author)' +p65373 +sg25268 +S'Prix de la beaute; Pirame et Thisbe; Hippolyte et Aricie' +p65374 +sg25270 +S'Artist Information (' +p65375 +sa(dp65376 +g25267 +g27 +sg25268 +S'Silver Coffee Pot' +p65377 +sg25270 +S'Vincent Carano' +p65378 +sa(dp65379 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65380 +sg25270 +S'Eugene Barrell' +p65381 +sa(dp65382 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65383 +sg25270 +S'Clayton Braun' +p65384 +sa(dp65385 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65386 +sg25270 +S'Hester Duany' +p65387 +sa(dp65388 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65389 +sg25270 +S'Margaret Knapp' +p65390 +sa(dp65391 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65392 +sg25270 +S'Herman Bader' +p65393 +sa(dp65394 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65395 +sg25270 +S'Hester Duany' +p65396 +sa(dp65397 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65398 +sg25270 +S'Giacinto Capelli' +p65399 +sa(dp65400 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65401 +sg25270 +S'Clayton Braun' +p65402 +sa(dp65403 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65404 +sg25270 +S'Giacinto Capelli' +p65405 +sa(dp65406 +g25273 +S'(author)' +p65407 +sg25267 +g27 +sg25275 +S'\n' +p65408 +sg25268 +S'Hero et Leandre' +p65409 +sg25270 +S'Artist Information (' +p65410 +sa(dp65411 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65412 +sg25270 +S'Michael Fenga' +p65413 +sa(dp65414 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65415 +sg25270 +S'Hester Duany' +p65416 +sa(dp65417 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65418 +sg25270 +S'Gerald Bernhardt' +p65419 +sa(dp65420 +g25267 +g27 +sg25268 +S'Silver Spout Cup' +p65421 +sg25270 +S'Eugene Barrell' +p65422 +sa(dp65423 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65424 +sg25270 +S'Fletcher Hanks' +p65425 +sa(dp65426 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65427 +sg25270 +S'Vincent Carano' +p65428 +sa(dp65429 +g25267 +g27 +sg25268 +S'Silver Hot Water Pot' +p65430 +sg25270 +S'Herbert Russin' +p65431 +sa(dp65432 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65433 +sg25270 +S'S. Brodsky' +p65434 +sa(dp65435 +g25267 +g27 +sg25268 +S'Silver Teapot with Tray' +p65436 +sg25270 +S'Giacinto Capelli' +p65437 +sa(dp65438 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65439 +sg25270 +S'Vincent Carano' +p65440 +sa(dp65441 +g25273 +S'color etching, engraving, and aquatint' +p65442 +sg25267 +g27 +sg25275 +S'published 1801' +p65443 +sg25268 +S'Frontispiece' +p65444 +sg25270 +S'Philibert-Louis Debucourt' +p65445 +sa(dp65446 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65447 +sg25270 +S'Francis Law Durand' +p65448 +sa(dp65449 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65450 +sg25270 +S'Vincent Carano' +p65451 +sa(dp65452 +g25267 +g27 +sg25268 +S'Silver Chocolate Pot' +p65453 +sg25270 +S'Fletcher Hanks' +p65454 +sa(dp65455 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65456 +sg25270 +S'Gordon Sanborn' +p65457 +sa(dp65458 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65459 +sg25270 +S'Frank Fumagalli' +p65460 +sa(dp65461 +g25267 +g27 +sg25268 +S'Silver Teapot and Tray' +p65462 +sg25270 +S'Isidore Steinberg' +p65463 +sa(dp65464 +g25267 +g27 +sg25268 +S'Silver Hot Water Urn' +p65465 +sg25270 +S'Nicholas Zupa' +p65466 +sa(dp65467 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65468 +sg25270 +S'Clayton Braun' +p65469 +sa(dp65470 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65471 +sg25270 +S'Gordon Sanborn' +p65472 +sa(dp65473 +g25267 +g27 +sg25268 +S'Silver Urn' +p65474 +sg25270 +S'Hester Duany' +p65475 +sa(dp65476 +g25273 +S'color etching, engraving, and aquatint' +p65477 +sg25267 +g27 +sg25275 +S'published 1801' +p65478 +sg25268 +S'Le couronnement' +p65479 +sg25270 +S'Philibert-Louis Debucourt' +p65480 +sa(dp65481 +g25267 +g27 +sg25268 +S'Silver Flagon' +p65482 +sg25270 +S'Louis Annino' +p65483 +sa(dp65484 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65485 +sg25270 +S'Arthur Wegg' +p65486 +sa(dp65487 +g25267 +g27 +sg25268 +S'Silver Coffee Pot' +p65488 +sg25270 +S'Vincent Carano' +p65489 +sa(dp65490 +g25267 +g27 +sg25268 +S'Teapot' +p65491 +sg25270 +S'American 20th Century' +p65492 +sa(dp65493 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65494 +sg25270 +S'John R. Towers' +p65495 +sa(dp65496 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65497 +sg25270 +S'David P Willoughby' +p65498 +sa(dp65499 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65500 +sg25270 +S'Walter W. Jennings' +p65501 +sa(dp65502 +g25267 +g27 +sg25268 +S'Silver Coffee Pot' +p65503 +sg25270 +S'Margaret Stottlemeyer' +p65504 +sa(dp65505 +g25267 +g27 +sg25268 +S'Silver Teapot' +p65506 +sg25270 +S'Carmel Wilson' +p65507 +sa(dp65508 +g25267 +g27 +sg25268 +S'Saddle' +p65509 +sg25270 +S'Cornelius Christoffels' +p65510 +sa(dp65511 +g25273 +S'color etching, engraving, and aquatint' +p65512 +sg25267 +g27 +sg25275 +S'published 1801' +p65513 +sg25268 +S'Le colombes' +p65514 +sg25270 +S'Philibert-Louis Debucourt' +p65515 +sa(dp65516 +g25267 +g27 +sg25268 +S'Saddle' +p65517 +sg25270 +S'American 20th Century' +p65518 +sa(dp65519 +g25267 +g27 +sg25268 +S'Pack Saddle' +p65520 +sg25270 +S'Cornelius Christoffels' +p65521 +sa(dp65522 +g25267 +g27 +sg25268 +S'Saddle' +p65523 +sg25270 +S'Gordena Jackson' +p65524 +sa(dp65525 +g25267 +g27 +sg25268 +S'Saddle' +p65526 +sg25270 +S'Rose Campbell-Gerke' +p65527 +sa(dp65528 +g25267 +g27 +sg25268 +S'Saddle' +p65529 +sg25270 +S'Arthur P. Reynolds' +p65530 +sa(dp65531 +g25267 +g27 +sg25268 +S'Side Saddle' +p65532 +sg25270 +S'Randolph F. Miller' +p65533 +sa(dp65534 +g25267 +g27 +sg25268 +S'Side Saddle' +p65535 +sg25270 +S'Randolph F. Miller' +p65536 +sa(dp65537 +g25267 +g27 +sg25268 +S'Side Saddle' +p65538 +sg25270 +S'Randolph F. Miller' +p65539 +sa(dp65540 +g25267 +g27 +sg25268 +S'Side Saddle' +p65541 +sg25270 +S'Frank C. Barks' +p65542 +sa(dp65543 +g25267 +g27 +sg25268 +S'Saddle' +p65544 +sg25270 +S'Gerald Transpota' +p65545 +sa(dp65546 +g25273 +S'color etching, engraving, and aquatint' +p65547 +sg25267 +g27 +sg25275 +S'published 1801' +p65548 +sg25268 +S'La course' +p65549 +sg25270 +S'Philibert-Louis Debucourt' +p65550 +sa(dp65551 +g25267 +g27 +sg25268 +S'Side Saddle' +p65552 +sg25270 +S'Artist Information (' +p65553 +sa(dp65554 +g25267 +g27 +sg25268 +S'Saddle Bags' +p65555 +sg25270 +S'Edward Jewett' +p65556 +sa(dp65557 +g25267 +g27 +sg25268 +S'Saddle' +p65558 +sg25270 +S'Artist Information (' +p65559 +sa(dp65560 +g25267 +g27 +sg25268 +S"Woman's Side Saddle" +p65561 +sg25270 +S'Lyman Young' +p65562 +sa(dp65563 +g25267 +g27 +sg25268 +S'Saddle' +p65564 +sg25270 +S'Frank C. Barks' +p65565 +sa(dp65566 +g25267 +g27 +sg25268 +S'Side Saddle' +p65567 +sg25270 +S'Bertha Semple' +p65568 +sa(dp65569 +g25267 +g27 +sg25268 +S'Spur Cover' +p65570 +sg25270 +S'Edith Towner' +p65571 +sa(dp65572 +g25267 +g27 +sg25268 +S'Leather Saddle' +p65573 +sg25270 +S'William McAuley' +p65574 +sa(dp65575 +g25267 +g27 +sg25268 +S'Saddle' +p65576 +sg25270 +S'Arthur P. Reynolds' +p65577 +sa(dp65578 +g25267 +g27 +sg25268 +S'Saddle' +p65579 +sg25270 +S'Ranka S. Woods' +p65580 +sa(dp65581 +g25273 +S'color etching, engraving, and aquatint' +p65582 +sg25267 +g27 +sg25275 +S'published 1801' +p65583 +sg25268 +S"L'invocation a l'amour" +p65584 +sg25270 +S'Philibert-Louis Debucourt' +p65585 +sa(dp65586 +g25267 +g27 +sg25268 +S'Saddle' +p65587 +sg25270 +S'Arthur P. Reynolds' +p65588 +sa(dp65589 +g25267 +g27 +sg25268 +S'Stirrups' +p65590 +sg25270 +S'Arthur P. Reynolds' +p65591 +sa(dp65592 +g25267 +g27 +sg25268 +S'Stirrup' +p65593 +sg25270 +S'Harry Mann Waddell' +p65594 +sa(dp65595 +g25267 +g27 +sg25268 +S'Cinch for Saddle' +p65596 +sg25270 +S'Cornelius Christoffels' +p65597 +sa(dp65598 +g25267 +g27 +sg25268 +S'Horse Hair Cinch' +p65599 +sg25270 +S'Edith Towner' +p65600 +sa(dp65601 +g25267 +g27 +sg25268 +S'Stirrup' +p65602 +sg25270 +S'William Kieckhofel' +p65603 +sa(dp65604 +g25267 +g27 +sg25268 +S'Spanish Cinch' +p65605 +sg25270 +S'Majel G. Claflin' +p65606 +sa(dp65607 +g25267 +g27 +sg25268 +S'Leather Purse Top' +p65608 +sg25270 +S'Lyman Young' +p65609 +sa(dp65610 +g25267 +g27 +sg25268 +S'Cinch' +p65611 +sg25270 +S'Arthur P. Reynolds' +p65612 +sa(dp65613 +g25267 +g27 +sg25268 +S'Headstall' +p65614 +sg25270 +S'Hal Blakeley' +p65615 +sa(dp65616 +g25273 +S'color etching, engraving, and aquatint' +p65617 +sg25267 +g27 +sg25275 +S'published 1801' +p65618 +sg25268 +S"L'entree a la grotte" +p65619 +sg25270 +S'Philibert-Louis Debucourt' +p65620 +sa(dp65621 +g25267 +g27 +sg25268 +S'Embroidered Leather Scabbard' +p65622 +sg25270 +S'Lyman Young' +p65623 +sa(dp65624 +g25267 +g27 +sg25268 +S'Saddle Bag' +p65625 +sg25270 +S'Bertha Semple' +p65626 +sa(dp65627 +g25267 +g27 +sg25268 +S'Stirrup' +p65628 +sg25270 +S'Harry Mann Waddell' +p65629 +sa(dp65630 +g25267 +g27 +sg25268 +S'Gun Holster' +p65631 +sg25270 +S'Dana Bartlett' +p65632 +sa(dp65633 +g25267 +g27 +sg25268 +S'Saddle Cover' +p65634 +sg25270 +S'Artist Information (' +p65635 +sa(dp65636 +g25267 +g27 +sg25268 +S'Gun Holster' +p65637 +sg25270 +S'Artist Information (' +p65638 +sa(dp65639 +g25267 +g27 +sg25268 +S'Leather Seat' +p65640 +sg25270 +S'Gerald Transpota' +p65641 +sa(dp65642 +g25267 +g27 +sg25268 +S'Cover' +p65643 +sg25270 +S'Artist Information (' +p65644 +sa(dp65645 +g25267 +g27 +sg25268 +S'Cowhide Trunk' +p65646 +sg25270 +S'Robert W.R. Taylor' +p65647 +sa(dp65648 +g25267 +g27 +sg25268 +S'Leather Covered Box' +p65649 +sg25270 +S'Majel G. Claflin' +p65650 +sa(dp65651 +g25273 +S'color etching, engraving, and aquatint' +p65652 +sg25267 +g27 +sg25275 +S'published 1801' +p65653 +sg25268 +S'Le matin' +p65654 +sg25270 +S'Philibert-Louis Debucourt' +p65655 +sa(dp65656 +g25267 +g27 +sg25268 +S'Cowhide Trunk' +p65657 +sg25270 +S'Harry Mann Waddell' +p65658 +sa(dp65659 +g25267 +g27 +sg25268 +S'Trunk' +p65660 +sg25270 +S'Albert Pratt' +p65661 +sa(dp65662 +g25267 +g27 +sg25268 +S'Rawhide Chest' +p65663 +sg25270 +S'Gerald Transpota' +p65664 +sa(dp65665 +g25267 +g27 +sg25268 +S'Trunk' +p65666 +sg25270 +S'Edward Jewett' +p65667 +sa(dp65668 +g25267 +g27 +sg25268 +S'Map' +p65669 +sg25270 +S'Norman Kamps' +p65670 +sa(dp65671 +g25267 +g27 +sg25268 +S'Map' +p65672 +sg25270 +S'Norman Kamps' +p65673 +sa(dp65674 +g25267 +g27 +sg25268 +S'Brass Candlestick' +p65675 +sg25270 +S'Harry Mann Waddell' +p65676 +sa(dp65677 +g25267 +g27 +sg25268 +S'Spur' +p65678 +sg25270 +S'Gerald Transpota' +p65679 +sa(dp65680 +g25267 +g27 +sg25268 +S'Spur' +p65681 +sg25270 +S'Cornelius Christoffels' +p65682 +sa(dp65683 +g25267 +g27 +sg25268 +S'Spur' +p65684 +sg25270 +S'Rose Campbell-Gerke' +p65685 +sa(dp65686 +g25273 +S'color etching, engraving, and aquatint' +p65687 +sg25267 +g27 +sg25275 +S'published 1801' +p65688 +sg25268 +S'La tempeste' +p65689 +sg25270 +S'Philibert-Louis Debucourt' +p65690 +sa(dp65691 +g25267 +g27 +sg25268 +S'Spur' +p65692 +sg25270 +S'Gerald Transpota' +p65693 +sa(dp65694 +g25267 +g27 +sg25268 +S'Bit' +p65695 +sg25270 +S'Cornelius Christoffels' +p65696 +sa(dp65697 +g25267 +g27 +sg25268 +S'Bit' +p65698 +sg25270 +S'Gerald Transpota' +p65699 +sa(dp65700 +g25267 +g27 +sg25268 +S'Iron Bit' +p65701 +sg25270 +S'Ethel Dougan' +p65702 +sa(dp65703 +g25267 +g27 +sg25268 +S'Ring Bit' +p65704 +sg25270 +S'Gordena Jackson' +p65705 +sa(dp65706 +g25267 +g27 +sg25268 +S'Snaffle Bit' +p65707 +sg25270 +S'Ethel Dougan' +p65708 +sa(dp65709 +g25267 +g27 +sg25268 +S'Bit' +p65710 +sg25270 +S'Gerald Transpota' +p65711 +sa(dp65712 +g25267 +g27 +sg25268 +S'Bit' +p65713 +sg25270 +S'Cornelius Christoffels' +p65714 +sa(dp65715 +g25267 +g27 +sg25268 +S'Wrought Iron Bit' +p65716 +sg25270 +S'Cornelius Christoffels' +p65717 +sa(dp65718 +g25267 +g27 +sg25268 +S'Bit' +p65719 +sg25270 +S'Artist Information (' +p65720 +sa(dp65721 +g25268 +S'The Annunciation to the Shepherds' +p65722 +sg25270 +S'Jacopo Bassano' +p65723 +sg25273 +S'oil on canvas' +p65724 +sg25275 +S'probably 1555/1560' +p65725 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000084f.jpg' +p65726 +sg25267 +S"In this inventive interpretation of the announcement of Christ's birth,\n Jacopo Bassano merged the biblical narrative with a pastoral scene. Rather\n than present the traditional image of an angel appearing before three\n shepherds in the field, the miracle is here experienced by a family group\n placed in a moonlit landscape that recalls the mountainous terrain\n surrounding the artist's native town of Bassano. An angel descends through\n dark clouds in a flash of heavenly light, and each family member reacts\n differently to the presence of the divine messenger. Particularly odd is\n the inclusion of the female figure, who kneels in the foreground milking a\n cow.\n Unlike the bright palette and tight handling of paint in his earlier \n " +p65727 +sa(dp65728 +g25273 +S'color etching, engraving, and aquatint' +p65729 +sg25267 +g27 +sg25275 +S'published 1801' +p65730 +sg25268 +S"La mort d'Hero" +p65731 +sg25270 +S'Philibert-Louis Debucourt' +p65732 +sa(dp65733 +g25267 +g27 +sg25268 +S'Spade Bit' +p65734 +sg25270 +S'Rose Campbell-Gerke' +p65735 +sa(dp65736 +g25267 +g27 +sg25268 +S'Spade Bit' +p65737 +sg25270 +S'Rose Campbell-Gerke' +p65738 +sa(dp65739 +g25267 +g27 +sg25268 +S'Bit' +p65740 +sg25270 +S'Rose Campbell-Gerke' +p65741 +sa(dp65742 +g25267 +g27 +sg25268 +S'Spanish Bit' +p65743 +sg25270 +S'Artist Information (' +p65744 +sa(dp65745 +g25267 +g27 +sg25268 +S'Iron Bit' +p65746 +sg25270 +S'Ethel Dougan' +p65747 +sa(dp65748 +g25267 +g27 +sg25268 +S'Spade Bit' +p65749 +sg25270 +S'Artist Information (' +p65750 +sa(dp65751 +g25267 +g27 +sg25268 +S'Bit' +p65752 +sg25270 +S'Gerald Transpota' +p65753 +sa(dp65754 +g25267 +g27 +sg25268 +S'Bit' +p65755 +sg25270 +S'Harry Mann Waddell' +p65756 +sa(dp65757 +g25267 +g27 +sg25268 +S'Bit' +p65758 +sg25270 +S'Randolph F. Miller' +p65759 +sa(dp65760 +g25267 +g27 +sg25268 +S'Bit' +p65761 +sg25270 +S'Arthur P. Reynolds' +p65762 +sa(dp65763 +g25273 +S'French, 1702 - 1780' +p65764 +sg25267 +g27 +sg25275 +S'(author)' +p65765 +sg25268 +S'Les graces' +p65766 +sg25270 +S'Artist Information (' +p65767 +sa(dp65768 +g25267 +g27 +sg25268 +S'Bit' +p65769 +sg25270 +S'Artist Information (' +p65770 +sa(dp65771 +g25267 +g27 +sg25268 +S'Concha' +p65772 +sg25270 +S'Artist Information (' +p65773 +sa(dp65774 +g25267 +g27 +sg25268 +S'Bit' +p65775 +sg25270 +S'Artist Information (' +p65776 +sa(dp65777 +g25267 +g27 +sg25268 +S'Bit' +p65778 +sg25270 +S'A. Regli' +p65779 +sa(dp65780 +g25267 +g27 +sg25268 +S'Bit' +p65781 +sg25270 +S'Arthur P. Reynolds' +p65782 +sa(dp65783 +g25267 +g27 +sg25268 +S'Bit' +p65784 +sg25270 +S'Arthur P. Reynolds' +p65785 +sa(dp65786 +g25267 +g27 +sg25268 +S'Bridle Bit' +p65787 +sg25270 +S'Gerald Transpota' +p65788 +sa(dp65789 +g25267 +g27 +sg25268 +S'Spanish Bit' +p65790 +sg25270 +S'Gerald Transpota' +p65791 +sa(dp65792 +g25267 +g27 +sg25268 +S'Bit' +p65793 +sg25270 +S'Artist Information (' +p65794 +sa(dp65795 +g25267 +g27 +sg25268 +S'Bit with Curb' +p65796 +sg25270 +S'Frank C. Barks' +p65797 +sa(dp65798 +g25273 +S'French, c. 1490 - probably 1553' +p65799 +sg25267 +g27 +sg25275 +S'(author)' +p65800 +sg25268 +S'Oeuvres de Maitre Francois Rabelais (volume I)' +p65801 +sg25270 +S'Artist Information (' +p65802 +sa(dp65803 +g25267 +g27 +sg25268 +S'Bit' +p65804 +sg25270 +S'Artist Information (' +p65805 +sa(dp65806 +g25267 +g27 +sg25268 +S'Eagle Bit' +p65807 +sg25270 +S'Artist Information (' +p65808 +sa(dp65809 +g25267 +g27 +sg25268 +S'Eagle Bit' +p65810 +sg25270 +S'Frank C. Barks' +p65811 +sa(dp65812 +g25267 +g27 +sg25268 +S'Bit' +p65813 +sg25270 +S'Artist Information (' +p65814 +sa(dp65815 +g25267 +g27 +sg25268 +S'Bit' +p65816 +sg25270 +S'William Herbert' +p65817 +sa(dp65818 +g25267 +g27 +sg25268 +S'Spanish Spade Bit' +p65819 +sg25270 +S'Artist Information (' +p65820 +sa(dp65821 +g25267 +g27 +sg25268 +S'Spade Bit' +p65822 +sg25270 +S'Harry Mann Waddell' +p65823 +sa(dp65824 +g25267 +g27 +sg25268 +S'Bit' +p65825 +sg25270 +S'Gerald Transpota' +p65826 +sa(dp65827 +g25267 +g27 +sg25268 +S'"Sultan\'s" Bit' +p65828 +sg25270 +S'Artist Information (' +p65829 +sa(dp65830 +g25267 +g27 +sg25268 +S'Bit' +p65831 +sg25270 +S'Arthur P. Reynolds' +p65832 +sa(dp65833 +g25273 +S'French, c. 1490 - probably 1553' +p65834 +sg25267 +g27 +sg25275 +S'(author)' +p65835 +sg25268 +S'Oeuvres de Maitre Francois Rabelais (volume II)' +p65836 +sg25270 +S'Artist Information (' +p65837 +sa(dp65838 +g25267 +g27 +sg25268 +S'Bit' +p65839 +sg25270 +S'Arthur P. Reynolds' +p65840 +sa(dp65841 +g25267 +g27 +sg25268 +S'Bit' +p65842 +sg25270 +S'Arthur P. Reynolds' +p65843 +sa(dp65844 +g25267 +g27 +sg25268 +S'Bit' +p65845 +sg25270 +S'Edward Jewett' +p65846 +sa(dp65847 +g25267 +g27 +sg25268 +S'Bit' +p65848 +sg25270 +S'Arthur P. Reynolds' +p65849 +sa(dp65850 +g25267 +g27 +sg25268 +S'Bridle' +p65851 +sg25270 +S'Gordena Jackson' +p65852 +sa(dp65853 +g25267 +g27 +sg25268 +S'Horse Hair Bridle' +p65854 +sg25270 +S'Gordena Jackson' +p65855 +sa(dp65856 +g25267 +g27 +sg25268 +S'Spur' +p65857 +sg25270 +S'J. Henry Marley' +p65858 +sa(dp65859 +g25267 +g27 +sg25268 +S'Spur' +p65860 +sg25270 +S'Vera Van Voris' +p65861 +sa(dp65862 +g25267 +g27 +sg25268 +S'Spur' +p65863 +sg25270 +S'William Kieckhofel' +p65864 +sa(dp65865 +g25267 +g27 +sg25268 +S'Spur' +p65866 +sg25270 +S'Raymond E. Noble' +p65867 +sa(dp65868 +g25273 +S'French, c. 1490 - probably 1553' +p65869 +sg25267 +g27 +sg25275 +S'(author)' +p65870 +sg25268 +S'Oeuvres de Maitre Francois Rabelais (volume III)' +p65871 +sg25270 +S'Artist Information (' +p65872 +sa(dp65873 +g25267 +g27 +sg25268 +S'Spur' +p65874 +sg25270 +S'Edward Jewett' +p65875 +sa(dp65876 +g25267 +g27 +sg25268 +S'Balance Scales' +p65877 +sg25270 +S'William Kieckhofel' +p65878 +sa(dp65879 +g25267 +g27 +sg25268 +S'Branding Iron' +p65880 +sg25270 +S'Cornelius Christoffels' +p65881 +sa(dp65882 +g25267 +g27 +sg25268 +S'Knife' +p65883 +sg25270 +S'Cornelius Christoffels' +p65884 +sa(dp65885 +g25267 +g27 +sg25268 +S'Tomahawk' +p65886 +sg25270 +S'Cornelius Christoffels' +p65887 +sa(dp65888 +g25267 +g27 +sg25268 +S'Branding Iron' +p65889 +sg25270 +S'Rose Campbell-Gerke' +p65890 +sa(dp65891 +g25267 +g27 +sg25268 +S'Bullet Mold' +p65892 +sg25270 +S'Majel G. Claflin' +p65893 +sa(dp65894 +g25267 +g27 +sg25268 +S'Hoe Blade' +p65895 +sg25270 +S'Cornelius Christoffels' +p65896 +sa(dp65897 +g25267 +g27 +sg25268 +S'Whip Socket' +p65898 +sg25270 +S'William McAuley' +p65899 +sa(dp65900 +g25267 +g27 +sg25268 +S'Spur' +p65901 +sg25270 +S'Gerald Transpota' +p65902 +sa(dp65903 +g25273 +S'French, 1639 - 1699' +p65904 +sg25267 +g27 +sg25275 +S'(author)' +p65905 +sg25268 +S'Oeuvres (volume I)' +p65906 +sg25270 +S'Artist Information (' +p65907 +sa(dp65908 +g25267 +g27 +sg25268 +S'Spur' +p65909 +sg25270 +S'W.J. Goodacre' +p65910 +sa(dp65911 +g25267 +g27 +sg25268 +S'Spur' +p65912 +sg25270 +S'Gerald Transpota' +p65913 +sa(dp65914 +g25267 +g27 +sg25268 +S'Spur' +p65915 +sg25270 +S'Gerald Transpota' +p65916 +sa(dp65917 +g25267 +g27 +sg25268 +S'Spur' +p65918 +sg25270 +S'Hal Blakeley' +p65919 +sa(dp65920 +g25267 +g27 +sg25268 +S'Spur' +p65921 +sg25270 +S'Harry Mann Waddell' +p65922 +sa(dp65923 +g25267 +g27 +sg25268 +S'Spur' +p65924 +sg25270 +S'Gerald Transpota' +p65925 +sa(dp65926 +g25267 +g27 +sg25268 +S'Spur' +p65927 +sg25270 +S'Robert W.R. Taylor' +p65928 +sa(dp65929 +g25267 +g27 +sg25268 +S'Spur' +p65930 +sg25270 +S'Cornelius Christoffels' +p65931 +sa(dp65932 +g25267 +g27 +sg25268 +S'Spur' +p65933 +sg25270 +S'Cornelius Christoffels' +p65934 +sa(dp65935 +g25267 +g27 +sg25268 +S'Spur' +p65936 +sg25270 +S'Robert W.R. Taylor' +p65937 +sa(dp65938 +g25273 +S'French, 1639 - 1699' +p65939 +sg25267 +g27 +sg25275 +S'(author)' +p65940 +sg25268 +S'Oeuvres (volume II)' +p65941 +sg25270 +S'Artist Information (' +p65942 +sa(dp65943 +g25267 +g27 +sg25268 +S'Spur' +p65944 +sg25270 +S'Gerald Transpota' +p65945 +sa(dp65946 +g25267 +g27 +sg25268 +S'Spur' +p65947 +sg25270 +S'Gerald Transpota' +p65948 +sa(dp65949 +g25267 +g27 +sg25268 +S'Spur' +p65950 +sg25270 +S'Gerald Transpota' +p65951 +sa(dp65952 +g25267 +g27 +sg25268 +S'Spur' +p65953 +sg25270 +S'Emile Cero' +p65954 +sa(dp65955 +g25267 +g27 +sg25268 +S'Spur' +p65956 +sg25270 +S'R.J. De Freitas' +p65957 +sa(dp65958 +g25267 +g27 +sg25268 +S'Spur' +p65959 +sg25270 +S'Arthur P. Reynolds' +p65960 +sa(dp65961 +g25267 +g27 +sg25268 +S'Spur' +p65962 +sg25270 +S'Gerald Transpota' +p65963 +sa(dp65964 +g25267 +g27 +sg25268 +S'Spur' +p65965 +sg25270 +S'Arthur P. Reynolds' +p65966 +sa(dp65967 +g25267 +g27 +sg25268 +S'Spur' +p65968 +sg25270 +S'Albert Pratt' +p65969 +sa(dp65970 +g25267 +g27 +sg25268 +S'Spur' +p65971 +sg25270 +S'Majel G. Claflin' +p65972 +sa(dp65973 +g25273 +S'French, 1639 - 1699' +p65974 +sg25267 +g27 +sg25275 +S'(author)' +p65975 +sg25268 +S'Oeuvres (volume III)' +p65976 +sg25270 +S'Artist Information (' +p65977 +sa(dp65978 +g25267 +g27 +sg25268 +S'Spur' +p65979 +sg25270 +S'J. Henry Marley' +p65980 +sa(dp65981 +g25267 +g27 +sg25268 +S'Spur' +p65982 +sg25270 +S'Pearl Torell' +p65983 +sa(dp65984 +g25267 +g27 +sg25268 +S'Spur' +p65985 +sg25270 +S'Gerald Transpota' +p65986 +sa(dp65987 +g25267 +g27 +sg25268 +S'Spur' +p65988 +sg25270 +S'Robert W.R. Taylor' +p65989 +sa(dp65990 +g25267 +g27 +sg25268 +S'Spur' +p65991 +sg25270 +S'Robert W.R. Taylor' +p65992 +sa(dp65993 +g25267 +g27 +sg25268 +S'Spur' +p65994 +sg25270 +S'Robert W.R. Taylor' +p65995 +sa(dp65996 +g25267 +g27 +sg25268 +S'Spur' +p65997 +sg25270 +S'Cornelius Christoffels' +p65998 +sa(dp65999 +g25267 +g27 +sg25268 +S'Spur' +p66000 +sg25270 +S'Cornelius Christoffels' +p66001 +sa(dp66002 +g25267 +g27 +sg25268 +S'Spur' +p66003 +sg25270 +S'Gerald Transpota' +p66004 +sa(dp66005 +g25267 +g27 +sg25268 +S'Spur' +p66006 +sg25270 +S'W.J. Goodacre' +p66007 +sa(dp66008 +g25273 +S'Widener Collection' +p66009 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: engraved head- and tail-pieces' +p66010 +sg25268 +S"Recueil des comedies et ballets ... pendant l'hiver de 1747 a 1748 (volume I)" +p66011 +sg25270 +S'French 18th Century' +p66012 +sa(dp66013 +g25267 +g27 +sg25268 +S'Spur' +p66014 +sg25270 +S'Eldon Allen' +p66015 +sa(dp66016 +g25267 +g27 +sg25268 +S'Spur' +p66017 +sg25270 +S'Verna Tallman' +p66018 +sa(dp66019 +g25267 +g27 +sg25268 +S'Spur' +p66020 +sg25270 +S'Bertha Semple' +p66021 +sa(dp66022 +g25267 +g27 +sg25268 +S'Spur' +p66023 +sg25270 +S'Rose Campbell-Gerke' +p66024 +sa(dp66025 +g25267 +g27 +sg25268 +S'Spur' +p66026 +sg25270 +S'George E. Rhone' +p66027 +sa(dp66028 +g25267 +g27 +sg25268 +S'Spur' +p66029 +sg25270 +S'William Hoffman' +p66030 +sa(dp66031 +g25267 +g27 +sg25268 +S'Spur' +p66032 +sg25270 +S'Harry Mann Waddell' +p66033 +sa(dp66034 +g25267 +g27 +sg25268 +S'Spur' +p66035 +sg25270 +S'Artist Information (' +p66036 +sa(dp66037 +g25267 +g27 +sg25268 +S'Spur' +p66038 +sg25270 +S'William Hoffman' +p66039 +sa(dp66040 +g25267 +g27 +sg25268 +S'Spur' +p66041 +sg25270 +S'Hal Blakeley' +p66042 +sa(dp66043 +g25273 +S'Widener Collection' +p66044 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: engraved head- and tail-pieces' +p66045 +sg25268 +S"Divertissemens du th\xc3\xa9\xc3\xa2tre ... pendant l'hiver de 1748 a 1749 (volume II)" +p66046 +sg25270 +S'French 18th Century' +p66047 +sa(dp66048 +g25267 +g27 +sg25268 +S'Spur' +p66049 +sg25270 +S'Artist Information (' +p66050 +sa(dp66051 +g25267 +g27 +sg25268 +S'Spur' +p66052 +sg25270 +S'Cornelius Christoffels' +p66053 +sa(dp66054 +g25267 +g27 +sg25268 +S'Spur' +p66055 +sg25270 +S'Gerald Transpota' +p66056 +sa(dp66057 +g25267 +g27 +sg25268 +S'Spur' +p66058 +sg25270 +S'Artist Information (' +p66059 +sa(dp66060 +g25267 +g27 +sg25268 +S'Spur' +p66061 +sg25270 +S'Robert W.R. Taylor' +p66062 +sa(dp66063 +g25267 +g27 +sg25268 +S'Spur' +p66064 +sg25270 +S'Robert W.R. Taylor' +p66065 +sa(dp66066 +g25267 +g27 +sg25268 +S'Spur' +p66067 +sg25270 +S'Robert W.R. Taylor' +p66068 +sa(dp66069 +g25267 +g27 +sg25268 +S'Spur' +p66070 +sg25270 +S'Robert W.R. Taylor' +p66071 +sa(dp66072 +g25267 +g27 +sg25268 +S'Spur' +p66073 +sg25270 +S'Arthur P. Reynolds' +p66074 +sa(dp66075 +g25267 +g27 +sg25268 +S'Spur' +p66076 +sg25270 +S'Robert W.R. Taylor' +p66077 +sa(dp66078 +g25273 +S'Widener Collection' +p66079 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: engraved head- and tail-pieces' +p66080 +sg25268 +S"Divertissemens du th\xc3\xa9\xc3\xa2tre ... pendant l'hiver de 1748 a 1749 (volume III)" +p66081 +sg25270 +S'French 18th Century' +p66082 +sa(dp66083 +g25267 +g27 +sg25268 +S'Spur' +p66084 +sg25270 +S'R.J. De Freitas' +p66085 +sa(dp66086 +g25267 +g27 +sg25268 +S'Spur' +p66087 +sg25270 +S'Gerald Transpota' +p66088 +sa(dp66089 +g25267 +g27 +sg25268 +S'Spur' +p66090 +sg25270 +S'Robert W.R. Taylor' +p66091 +sa(dp66092 +g25267 +g27 +sg25268 +S'Spur' +p66093 +sg25270 +S'William McAuley' +p66094 +sa(dp66095 +g25267 +g27 +sg25268 +S'Spur' +p66096 +sg25270 +S'Verna Tallman' +p66097 +sa(dp66098 +g25267 +g27 +sg25268 +S'Spur' +p66099 +sg25270 +S'Robert W.R. Taylor' +p66100 +sa(dp66101 +g25267 +g27 +sg25268 +S'Spur' +p66102 +sg25270 +S'William Kieckhofel' +p66103 +sa(dp66104 +g25267 +g27 +sg25268 +S'Needle Book' +p66105 +sg25270 +S'Ruth M. Barnes' +p66106 +sa(dp66107 +g25267 +g27 +sg25268 +S'Woven Mat' +p66108 +sg25270 +S'Cornelius Christoffels' +p66109 +sa(dp66110 +g25267 +S"In 1939 the saddle blanket portrayed in this rendering belonged to J. G. Trescony, owner of Rancho San Lucas in Monterey County, California. It is made of hand-spun woolen thread dyed with native dyes. Since there was no blanket-weaving tradition among Native Americans in California, it is unlikely that Trescony's blanket was made in this region. It seems most closely related to a hybrid style of blanket-weaving that evolved through overlapping traditions among indigenous peoples and Hispanic settlers in northern New Mexico, along with significant influence from Mexico. Like many other Index objects, the blanket may therefore have traveled to a place far from its origin by the time it was rendered in the 1930s. The serrated zig-zag motif in this rendering probably originated in central or northern Mexico in the middle of the nineteenth century. It was one of the patterns used by Hispanic Mexican weavers for an intricately woven, splendidly ornamented garment known as the Saltillo serape. This pattern was then used by New Mexican weavers in the mid-nineteenth century. Both Hispanic and Navajo weavers combined zig-zags, as well as other Saltillo patterns, with the bands of plain stripes that had characterized an earlier, simpler blanket style. The design of the saddle blanket in Ethel Dougan's rendering may have resulted from this particular pairing of designs.\n " +p66111 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003dd.jpg' +p66112 +sg25268 +S'Saddle Blanket' +p66113 +sg25270 +S'Ethel Dougan' +p66114 +sa(dp66115 +g25273 +S'Widener Collection' +p66116 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: engraved head- and tail-pieces' +p66117 +sg25268 +S"Divertissemens du th\xc3\xa9\xc3\xa2tre ... pendant l'hiver de 1749 a 1750 (volume IV)" +p66118 +sg25270 +S'French 18th Century' +p66119 +sa(dp66120 +g25267 +g27 +sg25268 +S'Embroidery from Bedspread' +p66121 +sg25270 +S'Majel G. Claflin' +p66122 +sa(dp66123 +g25267 +g27 +sg25268 +S'Spanish Colonial Bedspread' +p66124 +sg25270 +S'Majel G. Claflin' +p66125 +sa(dp66126 +g25267 +g27 +sg25268 +S'Colcha' +p66127 +sg25270 +S'American 20th Century' +p66128 +sa(dp66129 +g25267 +g27 +sg25268 +S"Sultan's Stirrup" +p66130 +sg25270 +S'Artist Information (' +p66131 +sa(dp66132 +g25267 +g27 +sg25268 +S'Wooden Stirrup' +p66133 +sg25270 +S'Florence Hastings' +p66134 +sa(dp66135 +g25267 +g27 +sg25268 +S'Stirrup' +p66136 +sg25270 +S'William Kieckhofel' +p66137 +sa(dp66138 +g25267 +g27 +sg25268 +S'Stirrup' +p66139 +sg25270 +S'Robert W.R. Taylor' +p66140 +sa(dp66141 +g25267 +g27 +sg25268 +S'Stirrup' +p66142 +sg25270 +S'Edith Towner' +p66143 +sa(dp66144 +g25267 +g27 +sg25268 +S'Wooden Stirrup' +p66145 +sg25270 +S'Gerald Transpota' +p66146 +sa(dp66147 +g25267 +g27 +sg25268 +S'Harp' +p66148 +sg25270 +S'Grace Thomas' +p66149 +sa(dp66150 +g25273 +S'Widener Collection' +p66151 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: etchings and engravings' +p66152 +sg25268 +S'Recueil general de coeffures de differents gouts' +p66153 +sg25270 +S'French 18th Century' +p66154 +sa(dp66155 +g25267 +g27 +sg25268 +S'Violin' +p66156 +sg25270 +S'Edward Jewett' +p66157 +sa(dp66158 +g25267 +g27 +sg25268 +S'"Bird" Shelf' +p66159 +sg25270 +S'Majel G. Claflin' +p66160 +sa(dp66161 +g25267 +g27 +sg25268 +S'Wooden Ladle' +p66162 +sg25270 +S'Majel G. Claflin' +p66163 +sa(dp66164 +g25267 +g27 +sg25268 +S'Painted Wooden Sconce' +p66165 +sg25270 +S'Majel G. Claflin' +p66166 +sa(dp66167 +g25267 +g27 +sg25268 +S'Cider Press' +p66168 +sg25270 +S'Harry Mann Waddell' +p66169 +sa(dp66170 +g25267 +g27 +sg25268 +S'Hanging Wall Shelf' +p66171 +sg25270 +S'Majel G. Claflin' +p66172 +sa(dp66173 +g25267 +g27 +sg25268 +S'Rattle' +p66174 +sg25270 +S'William Kieckhofel' +p66175 +sa(dp66176 +g25267 +g27 +sg25268 +S'Rattle' +p66177 +sg25270 +S'Dana Bartlett' +p66178 +sa(dp66179 +g25267 +g27 +sg25268 +S'Dumbbell of Crotullum' +p66180 +sg25270 +S'Ethel Dougan' +p66181 +sa(dp66182 +g25267 +g27 +sg25268 +S'Clapper' +p66183 +sg25270 +S'Hilda Olson' +p66184 +sa(dp66185 +g25273 +S'(author)' +p66186 +sg25267 +g27 +sg25275 +S'\n' +p66187 +sg25268 +S'Tableaux de la bonne compagnie ...' +p66188 +sg25270 +S'Artist Information (' +p66189 +sa(dp66190 +g25267 +g27 +sg25268 +S'Clapper' +p66191 +sg25270 +S'Geoffrey Holt' +p66192 +sa(dp66193 +g25267 +g27 +sg25268 +S'Wooden Cart' +p66194 +sg25270 +S'Tulita Westfall' +p66195 +sa(dp66196 +g25267 +g27 +sg25268 +S'Mail Box' +p66197 +sg25270 +S'Marjorie Lee' +p66198 +sa(dp66199 +g25267 +g27 +sg25268 +S'Well Head' +p66200 +sg25270 +S'Majel G. Claflin' +p66201 +sa(dp66202 +g25267 +g27 +sg25268 +S'Wooden Plow' +p66203 +sg25270 +S'Vera Van Voris' +p66204 +sa(dp66205 +g25267 +g27 +sg25268 +S'Butter Mold' +p66206 +sg25270 +S'Ethel Dougan' +p66207 +sa(dp66208 +g25267 +g27 +sg25268 +S'Indian Snow Shoe' +p66209 +sg25270 +S'Natalie Simon' +p66210 +sa(dp66211 +g25267 +g27 +sg25268 +S'Blanket' +p66212 +sg25270 +S'Ethel Dougan' +p66213 +sa(dp66214 +g25267 +g27 +sg25268 +S'Blanket' +p66215 +sg25270 +S'Mary Edith Brooks' +p66216 +sa(dp66217 +g25267 +g27 +sg25268 +S'Satin Bedspread' +p66218 +sg25270 +S'Sebastian Simonet' +p66219 +sa(dp66220 +g25273 +S', in or after 1790' +p66221 +sg25267 +g27 +sg25275 +S'\n' +p66222 +sg25268 +S'Tableaux de la vie ... (volume I)' +p66223 +sg25270 +S'Restif de La Bretonne' +p66224 +sa(dp66225 +g25267 +g27 +sg25268 +S'Bedspread' +p66226 +sg25270 +S'American 20th Century' +p66227 +sa(dp66228 +g25267 +g27 +sg25268 +S'Coverlet (Section)' +p66229 +sg25270 +S'Cornelius Christoffels' +p66230 +sa(dp66231 +g25267 +g27 +sg25268 +S'Apron' +p66232 +sg25270 +S'David P Willoughby' +p66233 +sa(dp66234 +g25267 +g27 +sg25268 +S'Detail of Skirt Design' +p66235 +sg25270 +S'Randolph F. Miller' +p66236 +sa(dp66237 +g25267 +g27 +sg25268 +S'Handkerchief' +p66238 +sg25270 +S'Edith Towner' +p66239 +sa(dp66240 +g25267 +g27 +sg25268 +S'Montaleto (Head Scarf)' +p66241 +sg25270 +S'Ann Gene Buckley' +p66242 +sa(dp66243 +g25267 +g27 +sg25268 +S'Colcha (Bedspread)' +p66244 +sg25270 +S'Margery Parish' +p66245 +sa(dp66246 +g25267 +g27 +sg25268 +S'Sofa - Pillow Top' +p66247 +sg25270 +S'Virginia Bufano' +p66248 +sa(dp66249 +g25267 +g27 +sg25268 +S'Jerga (Carpet)' +p66250 +sg25270 +S'Margery Parish' +p66251 +sa(dp66252 +g25267 +g27 +sg25268 +S'Blanket' +p66253 +sg25270 +S'American 20th Century' +p66254 +sa(dp66255 +g25273 +S', in or after 1790' +p66256 +sg25267 +g27 +sg25275 +S'\n' +p66257 +sg25268 +S'Tableaux de la vie ... (volume II)' +p66258 +sg25270 +S'Restif de La Bretonne' +p66259 +sa(dp66260 +g25267 +g27 +sg25268 +S'Bedspread' +p66261 +sg25270 +S'E. Boyd' +p66262 +sa(dp66263 +g25267 +g27 +sg25268 +S'Bedspread' +p66264 +sg25270 +S'E. Boyd' +p66265 +sa(dp66266 +g25267 +g27 +sg25268 +S'Bedspread' +p66267 +sg25270 +S'E. Boyd' +p66268 +sa(dp66269 +g25267 +g27 +sg25268 +S'Colcha' +p66270 +sg25270 +S'Margery Parish' +p66271 +sa(dp66272 +g25267 +g27 +sg25268 +S'Colcha' +p66273 +sg25270 +S'Margery Parish' +p66274 +sa(dp66275 +g25267 +g27 +sg25268 +S'Colcha Plate' +p66276 +sg25270 +S'Majel G. Claflin' +p66277 +sa(dp66278 +g25267 +g27 +sg25268 +S'Colcha' +p66279 +sg25270 +S'Majel G. Claflin' +p66280 +sa(dp66281 +g25267 +g27 +sg25268 +S'Colcha' +p66282 +sg25270 +S'Majel G. Claflin' +p66283 +sa(dp66284 +g25267 +g27 +sg25268 +S'Colcha' +p66285 +sg25270 +S'Majel G. Claflin' +p66286 +sa(dp66287 +g25267 +g27 +sg25268 +S'Colcha' +p66288 +sg25270 +S'Majel G. Claflin' +p66289 +sa(dp66290 +g25273 +S'French, 1741 - 1814' +p66291 +sg25267 +g27 +sg25275 +S'(artist after)' +p66292 +sg25268 +S'Prints for "Collection complete des oeuvres de J.J. Rousseau"' +p66293 +sg25270 +S'Artist Information (' +p66294 +sa(dp66295 +g25267 +g27 +sg25268 +S'Detail of Bedspread Pattern' +p66296 +sg25270 +S'Majel G. Claflin' +p66297 +sa(dp66298 +g25267 +g27 +sg25268 +S'Bedspread' +p66299 +sg25270 +S'Majel G. Claflin' +p66300 +sa(dp66301 +g25267 +g27 +sg25268 +S'Colcha' +p66302 +sg25270 +S'Majel G. Claflin' +p66303 +sa(dp66304 +g25267 +g27 +sg25268 +S'Colcha' +p66305 +sg25270 +S'Majel G. Claflin' +p66306 +sa(dp66307 +g25267 +g27 +sg25268 +S'Colcha' +p66308 +sg25270 +S'Majel G. Claflin' +p66309 +sa(dp66310 +g25267 +g27 +sg25268 +S'Colcha' +p66311 +sg25270 +S'Majel G. Claflin' +p66312 +sa(dp66313 +g25267 +g27 +sg25268 +S'Colcha' +p66314 +sg25270 +S'Majel G. Claflin' +p66315 +sa(dp66316 +g25267 +g27 +sg25268 +S'Colcha' +p66317 +sg25270 +S'Majel G. Claflin' +p66318 +sa(dp66319 +g25267 +g27 +sg25268 +S'Colcha' +p66320 +sg25270 +S'Majel G. Claflin' +p66321 +sa(dp66322 +g25267 +g27 +sg25268 +S'Colcha' +p66323 +sg25270 +S'Majel G. Claflin' +p66324 +sa(dp66325 +g25273 +S'French, 1610 - 1660' +p66326 +sg25267 +g27 +sg25275 +S'(author)' +p66327 +sg25268 +S'Le roman comique ...' +p66328 +sg25270 +S'Artist Information (' +p66329 +sa(dp66330 +g25267 +g27 +sg25268 +S'Colcha' +p66331 +sg25270 +S'Majel G. Claflin' +p66332 +sa(dp66333 +g25267 +g27 +sg25268 +S'Bedspread' +p66334 +sg25270 +S'Majel G. Claflin' +p66335 +sa(dp66336 +g25267 +g27 +sg25268 +S'Pulpit' +p66337 +sg25270 +S'E. Boyd' +p66338 +sa(dp66339 +g25267 +g27 +sg25268 +S'Reading Stand' +p66340 +sg25270 +S'E. Boyd' +p66341 +sa(dp66342 +g25267 +g27 +sg25268 +S'Holy Water Font' +p66343 +sg25270 +S'Majel G. Claflin' +p66344 +sa(dp66345 +g25267 +g27 +sg25268 +S'Holy Water Font' +p66346 +sg25270 +S'Majel G. Claflin' +p66347 +sa(dp66348 +g25267 +g27 +sg25268 +S'Bed' +p66349 +sg25270 +S'Juanita Lantz' +p66350 +sa(dp66351 +g25267 +g27 +sg25268 +S'Bed' +p66352 +sg25270 +S'Juanita Lantz' +p66353 +sa(dp66354 +g25267 +g27 +sg25268 +S'Mission Bed' +p66355 +sg25270 +S'Edward Jewett' +p66356 +sa(dp66357 +g25267 +g27 +sg25268 +S'Roof Tile' +p66358 +sg25270 +S'Cecily Edwards' +p66359 +sa(dp66360 +g25273 +S'(artist after)' +p66361 +sg25267 +g27 +sg25275 +S'\n' +p66362 +sg25268 +S'Arrivee des comediens dans la ville du Mana' +p66363 +sg25270 +S'Artist Information (' +p66364 +sa(dp66365 +g25267 +g27 +sg25268 +S'Trostero' +p66366 +sg25270 +S'Eliseo Rodriguez' +p66367 +sa(dp66368 +g25267 +g27 +sg25268 +S'Sideboard' +p66369 +sg25270 +S'Juanita Lantz' +p66370 +sa(dp66371 +g25267 +g27 +sg25268 +S'Bulto' +p66372 +sg25270 +S'American 20th Century' +p66373 +sa(dp66374 +g25267 +g27 +sg25268 +S'Bench' +p66375 +sg25270 +S'Juanita Lantz' +p66376 +sa(dp66377 +g25267 +g27 +sg25268 +S'Religious Wood Carving' +p66378 +sg25270 +S'Mina Lowry' +p66379 +sa(dp66380 +g25267 +g27 +sg25268 +S'Church Pew' +p66381 +sg25270 +S'J. Henry Marley' +p66382 +sa(dp66383 +g25267 +g27 +sg25268 +S'Chest' +p66384 +sg25270 +S'J. Henry Marley' +p66385 +sa(dp66386 +g25267 +g27 +sg25268 +S'Mission Bench' +p66387 +sg25270 +S'Geoffrey Holt' +p66388 +sa(dp66389 +g25267 +g27 +sg25268 +S'Unknown Object' +p66390 +sg25270 +S'American 20th Century' +p66391 +sa(dp66392 +g25267 +g27 +sg25268 +S'Bench' +p66393 +sg25270 +S'Hal Blakeley' +p66394 +sa(dp66395 +g25273 +S'(artist after)' +p66396 +sg25267 +g27 +sg25275 +S'\n' +p66397 +sg25268 +S'Bataille arrivee dans le tripot, qui trouble la comedie' +p66398 +sg25270 +S'Artist Information (' +p66399 +sa(dp66400 +g25267 +g27 +sg25268 +S'Gun Holster' +p66401 +sg25270 +S'Majel G. Claflin' +p66402 +sa(dp66403 +g25267 +g27 +sg25268 +S'Confessional' +p66404 +sg25270 +S'William Hoffman' +p66405 +sa(dp66406 +g25267 +g27 +sg25268 +S'Tin Sconce' +p66407 +sg25270 +S'Majel G. Claflin' +p66408 +sa(dp66409 +g25267 +g27 +sg25268 +S'Candlestick' +p66410 +sg25270 +S'Geoffrey Holt' +p66411 +sa(dp66412 +g25267 +g27 +sg25268 +S'Tin Candle Sconce' +p66413 +sg25270 +S'Majel G. Claflin' +p66414 +sa(dp66415 +g25267 +g27 +sg25268 +S'Terra Cotta Flower Jar' +p66416 +sg25270 +S'Cecily Edwards' +p66417 +sa(dp66418 +g25267 +g27 +sg25268 +S'Candle Holder' +p66419 +sg25270 +S'William Hoffman' +p66420 +sa(dp66421 +g25267 +g27 +sg25268 +S'Candle Holder' +p66422 +sg25270 +S'American 20th Century' +p66423 +sa(dp66424 +g25267 +g27 +sg25268 +S'Candle Holder' +p66425 +sg25270 +S'American 20th Century' +p66426 +sa(dp66427 +g25267 +g27 +sg25268 +S'Candle Holder' +p66428 +sg25270 +S'Irene M. Burge' +p66429 +sa(dp66430 +g25273 +S'(artist after)' +p66431 +sg25267 +g27 +sg25275 +S'\n' +p66432 +sg25268 +S'La rappiniere tombe sur la chevre' +p66433 +sg25270 +S'Artist Information (' +p66434 +sa(dp66435 +g25267 +g27 +sg25268 +S'Tin Sconce' +p66436 +sg25270 +S'Majel G. Claflin' +p66437 +sa(dp66438 +g25267 +g27 +sg25268 +S'Holy Water Bucket' +p66439 +sg25270 +S'Robert W.R. Taylor' +p66440 +sa(dp66441 +g25267 +g27 +sg25268 +S'Confessional Screen' +p66442 +sg25270 +S'William Hoffman' +p66443 +sa(dp66444 +g25267 +g27 +sg25268 +S'Unknown Object' +p66445 +sg25270 +S'Harry Mann Waddell' +p66446 +sa(dp66447 +g25267 +g27 +sg25268 +S'Terra Cotta Pot' +p66448 +sg25270 +S'Cecily Edwards' +p66449 +sa(dp66450 +g25267 +g27 +sg25268 +S'Sconce' +p66451 +sg25270 +S'American 20th Century' +p66452 +sa(dp66453 +g25267 +g27 +sg25268 +S'Needlework on Altar Cloth' +p66454 +sg25270 +S'Lena Nastasi' +p66455 +sa(dp66456 +g25267 +g27 +sg25268 +S'Colcha' +p66457 +sg25270 +S'Majel G. Claflin' +p66458 +sa(dp66459 +g25267 +g27 +sg25268 +S'Coverlet' +p66460 +sg25270 +S'Ruth M. Barnes' +p66461 +sa(dp66462 +g25267 +g27 +sg25268 +S'Quilt (One Square)' +p66463 +sg25270 +S'Artist Information (' +p66464 +sa(dp66465 +g25273 +S'(artist after)' +p66466 +sg25267 +g27 +sg25275 +S'\n' +p66467 +sg25268 +S'La rancune coupe le chapeau de ragottin' +p66468 +sg25270 +S'Artist Information (' +p66469 +sa(dp66470 +g25267 +g27 +sg25268 +S'Quilt (One Square)' +p66471 +sg25270 +S'Artist Information (' +p66472 +sa(dp66473 +g25267 +g27 +sg25268 +S'Quilt (One Square)' +p66474 +sg25270 +S'Artist Information (' +p66475 +sa(dp66476 +g25267 +g27 +sg25268 +S'Quilt (One Square)' +p66477 +sg25270 +S'Artist Information (' +p66478 +sa(dp66479 +g25267 +g27 +sg25268 +S'Coverlet' +p66480 +sg25270 +S'Ruth M. Barnes' +p66481 +sa(dp66482 +g25267 +g27 +sg25268 +S'Scarf' +p66483 +sg25270 +S'Lyman Young' +p66484 +sa(dp66485 +g25267 +g27 +sg25268 +S'Music Stand' +p66486 +sg25270 +S'Albert Pratt' +p66487 +sa(dp66488 +g25267 +g27 +sg25268 +S'Study for Silkscreen Portfolio' +p66489 +sg25270 +S'American 20th Century' +p66490 +sa(dp66491 +g25267 +g27 +sg25268 +S'Holy Water Bucket' +p66492 +sg25270 +S'Dana Bartlett' +p66493 +sa(dp66494 +g25267 +g27 +sg25268 +S'Roller Bit' +p66495 +sg25270 +S'J. Henry Marley' +p66496 +sa(dp66497 +g25267 +g27 +sg25268 +S'Baptismal Font' +p66498 +sg25270 +S'Gerald Transpota' +p66499 +sa(dp66500 +g25273 +S'(artist after)' +p66501 +sg25267 +g27 +sg25275 +S'\n' +p66502 +sg25268 +S"Arrivee de l'operateur a l'hostellerie" +p66503 +sg25270 +S'Artist Information (' +p66504 +sa(dp66505 +g25267 +g27 +sg25268 +S'"Loose Jawed" Bit' +p66506 +sg25270 +S'Artist Information (' +p66507 +sa(dp66508 +g25267 +g27 +sg25268 +S'Tray' +p66509 +sg25270 +S'Gerald Transpota' +p66510 +sa(dp66511 +g25267 +g27 +sg25268 +S'Architectural Detail' +p66512 +sg25270 +S'Harry Mann Waddell' +p66513 +sa(dp66514 +g25267 +g27 +sg25268 +S'Wooden Spatula' +p66515 +sg25270 +S'Manuel G. Runyan' +p66516 +sa(dp66517 +g25267 +g27 +sg25268 +S'Oval Wooden Spoon' +p66518 +sg25270 +S'Wilbur M Rice' +p66519 +sa(dp66520 +g25267 +g27 +sg25268 +S'Wooden Spoon' +p66521 +sg25270 +S'Wilbur M Rice' +p66522 +sa(dp66523 +g25267 +g27 +sg25268 +S'Carved Wooden Spoon' +p66524 +sg25270 +S'Conrado Barrio' +p66525 +sa(dp66526 +g25267 +g27 +sg25268 +S'Spool Holder' +p66527 +sg25270 +S'Edward L. Loper' +p66528 +sa(dp66529 +g25267 +g27 +sg25268 +S'Walnut Spool Cabinet' +p66530 +sg25270 +S'Edward L. Loper' +p66531 +sa(dp66532 +g25267 +g27 +sg25268 +S'Spool Rack' +p66533 +sg25270 +S'Charles Garjian' +p66534 +sa(dp66535 +g25273 +S'(artist after)' +p66536 +sg25267 +g27 +sg25275 +S'\n' +p66537 +sg25268 +S'Ragotin a cheval, sa carabine lui tire entre les jambea' +p66538 +sg25270 +S'Artist Information (' +p66539 +sa(dp66540 +g25267 +g27 +sg25268 +S'Spoke Cutter' +p66541 +sg25270 +S'LeRoy McCarrel' +p66542 +sa(dp66543 +g25267 +g27 +sg25268 +S'Reel' +p66544 +sg25270 +S'Eugene C. Miller' +p66545 +sa(dp66546 +g25267 +g27 +sg25268 +S'Card for Spinning Wheel' +p66547 +sg25270 +S'Maud M. Holme' +p66548 +sa(dp66549 +g25267 +g27 +sg25268 +S'Spinning Wheel' +p66550 +sg25270 +S'Maud M. Holme' +p66551 +sa(dp66552 +g25267 +g27 +sg25268 +S'Spinning Stick' +p66553 +sg25270 +S'Maud M. Holme' +p66554 +sa(dp66555 +g25267 +g27 +sg25268 +S'Winding Wheel' +p66556 +sg25270 +S'Florence Truelson' +p66557 +sa(dp66558 +g25267 +g27 +sg25268 +S'Spinning Wheel' +p66559 +sg25270 +S'Irene Malawicz' +p66560 +sa(dp66561 +g25267 +g27 +sg25268 +S'Spinning Wheel' +p66562 +sg25270 +S'Clyde L. Cheney' +p66563 +sa(dp66564 +g25267 +g27 +sg25268 +S'Spinning Wheel' +p66565 +sg25270 +S'Maud M. Holme' +p66566 +sa(dp66567 +g25267 +g27 +sg25268 +S'Candle Holder' +p66568 +sg25270 +S'George V. Vezolles' +p66569 +sa(dp66570 +g25273 +S'(artist after)' +p66571 +sg25267 +g27 +sg25275 +S'\n' +p66572 +sg25268 +S'Le poete Roguebrune rompt la ceinture de sa culotte' +p66573 +sg25270 +S'Artist Information (' +p66574 +sa(dp66575 +g25267 +g27 +sg25268 +S'Spinning Wheel' +p66576 +sg25270 +S'Virgil A. Liberto' +p66577 +sa(dp66578 +g25267 +g27 +sg25268 +S'Wood Spinning Wheel' +p66579 +sg25270 +S'Arthur Mathews' +p66580 +sa(dp66581 +g25267 +g27 +sg25268 +S'Reel' +p66582 +sg25270 +S'Florence Truelson' +p66583 +sa(dp66584 +g25267 +g27 +sg25268 +S'Spinning Wheel' +p66585 +sg25270 +S'Lorenz Rothkranz' +p66586 +sa(dp66587 +g25267 +g27 +sg25268 +S'Spinning Wheel' +p66588 +sg25270 +S'Eugene La Foret' +p66589 +sa(dp66590 +g25267 +g27 +sg25268 +S'Shaker Flax Spinning Wheel' +p66591 +sg25270 +S'Lon Cronk' +p66592 +sa(dp66593 +g25267 +g27 +sg25268 +S'Flap Jack Spider' +p66594 +sg25270 +S'Eugene R. Szepessy' +p66595 +sa(dp66596 +g25267 +g27 +sg25268 +S'Spit' +p66597 +sg25270 +S'Emile Cero' +p66598 +sa(dp66599 +g25267 +g27 +sg25268 +S'Spice Sifter' +p66600 +sg25270 +S'Stanley Chin' +p66601 +sa(dp66602 +g25267 +g27 +sg25268 +S'Improved Splint' +p66603 +sg25270 +S'William Lang' +p66604 +sa(dp66605 +g25273 +S'(artist after)' +p66606 +sg25267 +g27 +sg25275 +S'\n' +p66607 +sg25268 +S"Ragotin declame des vers des paysans croyent qu'il presche" +p66608 +sg25270 +S'Artist Information (' +p66609 +sa(dp66610 +g25267 +g27 +sg25268 +S'Spokeshave' +p66611 +sg25270 +S'Herman O. Stroh' +p66612 +sa(dp66613 +g25267 +g27 +sg25268 +S'Spatula' +p66614 +sg25270 +S'John Swientochowski' +p66615 +sa(dp66616 +g25267 +g27 +sg25268 +S'Stern Board' +p66617 +sg25270 +S'Renee A. Monfalcone' +p66618 +sa(dp66619 +g25267 +g27 +sg25268 +S'Stern Piece' +p66620 +sg25270 +S'Robert Pohle' +p66621 +sa(dp66622 +g25267 +g27 +sg25268 +S'Stern Board' +p66623 +sg25270 +S'Helen E. Gilman' +p66624 +sa(dp66625 +g25267 +g27 +sg25268 +S'Stern Board' +p66626 +sg25270 +S'Alton K. Skillin' +p66627 +sa(dp66628 +g25267 +g27 +sg25268 +S'Stern Piece: Pocahontas' +p66629 +sg25270 +S'Albert Ryder' +p66630 +sa(dp66631 +g25267 +g27 +sg25268 +S'Parlor Stereoscope' +p66632 +sg25270 +S'Chris Makrenos' +p66633 +sa(dp66634 +g25267 +g27 +sg25268 +S'Stereooptician' +p66635 +sg25270 +S'William Spiecker' +p66636 +sa(dp66637 +g25267 +g27 +sg25268 +S'Stereoscope' +p66638 +sg25270 +S'Carl Buergerniss' +p66639 +sa(dp66640 +g25273 +S'(artist after)' +p66641 +sg25267 +g27 +sg25275 +S'\n' +p66642 +sg25268 +S'Le destin retire Ragotin ...' +p66643 +sg25270 +S'Artist Information (' +p66644 +sa(dp66645 +g25267 +g27 +sg25268 +S'Stage-coach' +p66646 +sg25270 +S'Rose Campbell-Gerke' +p66647 +sa(dp66648 +g25267 +g27 +sg25268 +S'Stand for Incense Burner' +p66649 +sg25270 +S'Walter Hochstrasser' +p66650 +sa(dp66651 +g25267 +g27 +sg25268 +S'Spreader for Schooner Rigging' +p66652 +sg25270 +S'Erwin Stenzel' +p66653 +sa(dp66654 +g25267 +g27 +sg25268 +S'Utensil Holder' +p66655 +sg25270 +S'Franklin C. Moyan' +p66656 +sa(dp66657 +g25267 +g27 +sg25268 +S'Spoon Rack' +p66658 +sg25270 +S'Frederick Jackson' +p66659 +sa(dp66660 +g25267 +g27 +sg25268 +S'Wooden Spoon' +p66661 +sg25270 +S'American 20th Century' +p66662 +sa(dp66663 +g25267 +g27 +sg25268 +S'Dessert Spoon' +p66664 +sg25270 +S'Frank M. Keane' +p66665 +sa(dp66666 +g25267 +g27 +sg25268 +S'Childs Porridge Spoon' +p66667 +sg25270 +S'Milton Bevier' +p66668 +sa(dp66669 +g25267 +g27 +sg25268 +S'Wooden Spoon' +p66670 +sg25270 +S'Henry Rasmusen' +p66671 +sa(dp66672 +g25267 +g27 +sg25268 +S'Spoon' +p66673 +sg25270 +S'Carl Keksi' +p66674 +sa(dp66675 +g25273 +S'(artist after)' +p66676 +sg25267 +g27 +sg25275 +S'\n' +p66677 +sg25268 +S"Ragotin retire du coffre ou la servante l'avoit enferme" +p66678 +sg25270 +S'Artist Information (' +p66679 +sa(dp66680 +g25267 +g27 +sg25268 +S'Spoon' +p66681 +sg25270 +S'Wilbur M Rice' +p66682 +sa(dp66683 +g25267 +g27 +sg25268 +S'Square Wooden Spoon' +p66684 +sg25270 +S'Wilbur M Rice' +p66685 +sa(dp66686 +g25267 +g27 +sg25268 +S'Stern Piece' +p66687 +sg25270 +S'Ingrid Selmer-Larsen' +p66688 +sa(dp66689 +g25267 +g27 +sg25268 +S'Stern Piece' +p66690 +sg25270 +S'Karl J. Hentz' +p66691 +sa(dp66692 +g25267 +g27 +sg25268 +S'Stern Board' +p66693 +sg25270 +S'Betty Fuerst' +p66694 +sa(dp66695 +g25267 +g27 +sg25268 +S'Stern Piece: Eagle' +p66696 +sg25270 +S'Mary E. Humes' +p66697 +sa(dp66698 +g25267 +g27 +sg25268 +S'Stern Board' +p66699 +sg25270 +S'Betty Fuerst' +p66700 +sa(dp66701 +g25267 +g27 +sg25268 +S'Stern Board' +p66702 +sg25270 +S'Mary E. Humes' +p66703 +sa(dp66704 +g25267 +g27 +sg25268 +S'Stern Board' +p66705 +sg25270 +S'Mary E. Humes' +p66706 +sa(dp66707 +g25267 +g27 +sg25268 +S'Stern Board' +p66708 +sg25270 +S'Louis Plogsted' +p66709 +sa(dp66710 +g25273 +S'(artist after)' +p66711 +sg25267 +g27 +sg25275 +S'\n' +p66712 +sg25268 +S'Un serurier coupe le pot de chambre pour degager le pied de Ragotin' +p66713 +sg25270 +S'Artist Information (' +p66714 +sa(dp66715 +g25267 +g27 +sg25268 +S'Eagle Stern Piece' +p66716 +sg25270 +S'Betty Fuerst' +p66717 +sa(dp66718 +g25267 +g27 +sg25268 +S'Stern Decoration' +p66719 +sg25270 +S'Jerome Hoxie' +p66720 +sa(dp66721 +g25267 +g27 +sg25268 +S"Ship's Stern Piece" +p66722 +sg25270 +S'Cornelius Christoffels' +p66723 +sa(dp66724 +g25267 +g27 +sg25268 +S'Saddle Stirrup' +p66725 +sg25270 +S'Manuel G. Runyan' +p66726 +sa(dp66727 +g25267 +g27 +sg25268 +S'Stirrup Shoe' +p66728 +sg25270 +S'Irving L. Biehn' +p66729 +sa(dp66730 +g25267 +g27 +sg25268 +S'Carved Stone Pattern' +p66731 +sg25270 +S'Helen Alpiner Blumenstiel' +p66732 +sa(dp66733 +g25267 +g27 +sg25268 +S'Stone Carved Out to Hold War Paint' +p66734 +sg25270 +S'Marie Lutrell' +p66735 +sa(dp66736 +g25267 +g27 +sg25268 +S'Bas Relief' +p66737 +sg25270 +S'Edward L. Loper' +p66738 +sa(dp66739 +g25267 +g27 +sg25268 +S'Stone Olla' +p66740 +sg25270 +S'Rose Campbell-Gerke' +p66741 +sa(dp66742 +g25267 +g27 +sg25268 +S'Stove' +p66743 +sg25270 +S'Robert W.R. Taylor' +p66744 +sa(dp66745 +g25273 +S'(artist after)' +p66746 +sg25267 +g27 +sg25275 +S'\n' +p66747 +sg25268 +S"Piramide d'ailes et de cuisses de poulets" +p66748 +sg25270 +S'Artist Information (' +p66749 +sa(dp66750 +g25267 +g27 +sg25268 +S'Stove' +p66751 +sg25270 +S'Harry G. Aberdeen' +p66752 +sa(dp66753 +g25267 +g27 +sg25268 +S'Cast Iron Stove' +p66754 +sg25270 +S'Edmond Lorts' +p66755 +sa(dp66756 +g25267 +g27 +sg25268 +S'Foot Stove' +p66757 +sg25270 +S'Wilbur M Rice' +p66758 +sa(dp66759 +g25267 +g27 +sg25268 +S'Foot Stove' +p66760 +sg25270 +S'Lloyd Quackenbush' +p66761 +sa(dp66762 +g25267 +g27 +sg25268 +S'Stove' +p66763 +sg25270 +S'Harry Grossen' +p66764 +sa(dp66765 +g25267 +g27 +sg25268 +S'Cast Iron Toy Stove' +p66766 +sg25270 +S'Edmond Lorts' +p66767 +sa(dp66768 +g25267 +g27 +sg25268 +S'Toy Stove' +p66769 +sg25270 +S'Ralph Atkinson' +p66770 +sa(dp66771 +g25267 +g27 +sg25268 +S'Stove' +p66772 +sg25270 +S'American 20th Century' +p66773 +sa(dp66774 +g25267 +g27 +sg25268 +S'Box Stove' +p66775 +sg25270 +S'Charles Von Urban' +p66776 +sa(dp66777 +g25267 +g27 +sg25268 +S'Box Stove' +p66778 +sg25270 +S'Charles Von Urban' +p66779 +sa(dp66780 +g25268 +S'The Niccolini-Cowper Madonna' +p66781 +sg25270 +S'Raphael' +p66782 +sg25273 +S'oil on panel' +p66783 +sg25275 +S'1508' +p66784 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000081e.jpg' +p66785 +sg25267 +S"This may be the last work Raphael painted in Florence before he left for Rome. It is more complex than the \n In Raphael's \n " +p66786 +sa(dp66787 +g25268 +S'Temporary Tribune in the Campo San Zanipolo, Venice' +p66788 +sg25270 +S'Francesco Guardi' +p66789 +sg25273 +S'oil on canvas' +p66790 +sg25275 +S'1782 or after' +p66791 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000910.jpg' +p66792 +sg25267 +g27 +sa(dp66793 +g25273 +S'(artist after)' +p66794 +sg25267 +g27 +sg25275 +S'\n' +p66795 +sg25268 +S'Madame de Bouvillon ouvre la porte a Ragotin qui luy fait un bosse au frond' +p66796 +sg25270 +S'Artist Information (' +p66797 +sa(dp66798 +g25267 +g27 +sg25268 +S'Stove' +p66799 +sg25270 +S'Albert Geuppert' +p66800 +sa(dp66801 +g25267 +g27 +sg25268 +S'Stove' +p66802 +sg25270 +S'Sarkis Erganian' +p66803 +sa(dp66804 +g25267 +g27 +sg25268 +S'Sword' +p66805 +sg25270 +S'A.R. Tolman' +p66806 +sa(dp66807 +g25267 +g27 +sg25268 +S'Soap Stone Stove' +p66808 +sg25270 +S'Artist Information (' +p66809 +sa(dp66810 +g25267 +g27 +sg25268 +S'Stove' +p66811 +sg25270 +S'Einar Heiberg' +p66812 +sa(dp66813 +g25267 +g27 +sg25268 +S'Cast Iron Heater Stove' +p66814 +sg25270 +S'Dolores Haupt' +p66815 +sa(dp66816 +g25267 +g27 +sg25268 +S'Stirrup' +p66817 +sg25270 +S'Cecil Smith' +p66818 +sa(dp66819 +g25267 +g27 +sg25268 +S'Carved Wooden Eagle' +p66820 +sg25270 +S'Robert Gilson' +p66821 +sa(dp66822 +g25267 +g27 +sg25268 +S'Stern Piece' +p66823 +sg25270 +S'Sadie Berman' +p66824 +sa(dp66825 +g25267 +g27 +sg25268 +S'Stern Piece' +p66826 +sg25270 +S'Laura Bilodeau' +p66827 +sa(dp66828 +g25273 +S'(artist after)' +p66829 +sg25267 +g27 +sg25275 +S'\n' +p66830 +sg25268 +S'Madame de Bouvillon pour tenter le destin le prie du luy chercher une puce' +p66831 +sg25270 +S'Artist Information (' +p66832 +sa(dp66833 +g25267 +g27 +sg25268 +S'Eagle Stern Piece' +p66834 +sg25270 +S'Irving I. Smith' +p66835 +sa(dp66836 +g25267 +g27 +sg25268 +S'Wooden Spoon Rack' +p66837 +sg25270 +S'Sarkis Erganian' +p66838 +sa(dp66839 +g25267 +g27 +sg25268 +S'Spinning Wheel' +p66840 +sg25270 +S'Oscar Bluhme' +p66841 +sa(dp66842 +g25267 +g27 +sg25268 +S'Three Notch Survey Mark' +p66843 +sg25270 +S'Manuel G. Runyan' +p66844 +sa(dp66845 +g25267 +g27 +sg25268 +S'Sun Dial' +p66846 +sg25270 +S'Michael Chomyk' +p66847 +sa(dp66848 +g25267 +g27 +sg25268 +S'Sun Dial' +p66849 +sg25270 +S'William Kerby' +p66850 +sa(dp66851 +g25267 +g27 +sg25268 +S'Sun Dial' +p66852 +sg25270 +S'Henry Meyers' +p66853 +sa(dp66854 +g25267 +g27 +sg25268 +S'Loaf Sugar Cutter' +p66855 +sg25270 +S'Thomas Dooley' +p66856 +sa(dp66857 +g25267 +g27 +sg25268 +S'Sugar Cutter' +p66858 +sg25270 +S'Edward L. Loper' +p66859 +sa(dp66860 +g25267 +g27 +sg25268 +S'Sugar Industry Implements' +p66861 +sg25270 +S'Ray Price' +p66862 +sa(dp66863 +g25273 +S'(artist after)' +p66864 +sg25267 +g27 +sg25275 +S'\n' +p66865 +sg25268 +S'Ragotin trouve des Bohemiens dans sa maison de campagne' +p66866 +sg25270 +S'Artist Information (' +p66867 +sa(dp66868 +g25267 +g27 +sg25268 +S'Wood Sugar Bowl' +p66869 +sg25270 +S'David S. De Vault' +p66870 +sa(dp66871 +g25267 +g27 +sg25268 +S'Sugar Bowl with Cover' +p66872 +sg25270 +S'Rose Campbell-Gerke' +p66873 +sa(dp66874 +g25267 +g27 +sg25268 +S'Sugar Container' +p66875 +sg25270 +S'Al Curry' +p66876 +sa(dp66877 +g25267 +g27 +sg25268 +S'Straw Roller' +p66878 +sg25270 +S'Jessie M. Youngs' +p66879 +sa(dp66880 +g25267 +g27 +sg25268 +S'Starch Strainer' +p66881 +sg25270 +S'Stanley Mazur' +p66882 +sa(dp66883 +g25267 +g27 +sg25268 +S'Copper Sugar Strainer' +p66884 +sg25270 +S'Annie B. Johnston' +p66885 +sa(dp66886 +g25267 +g27 +sg25268 +S'Copper Sugar Strainer' +p66887 +sg25270 +S'Annie B. Johnston' +p66888 +sa(dp66889 +g25267 +g27 +sg25268 +S'Strainer' +p66890 +sg25270 +S'Isidore Danziger' +p66891 +sa(dp66892 +g25267 +g27 +sg25268 +S'Stove Urn' +p66893 +sg25270 +S'Milton Grubstein' +p66894 +sa(dp66895 +g25267 +g27 +sg25268 +S'Stove Urn' +p66896 +sg25270 +S'Milton Grubstein' +p66897 +sa(dp66898 +g25273 +S'(artist after)' +p66899 +sg25267 +g27 +sg25275 +S'\n' +p66900 +sg25268 +S"Ragotin pousse brusquement dans l'eau le pere gifflot ..." +p66901 +sg25270 +S'Artist Information (' +p66902 +sa(dp66903 +g25267 +g27 +sg25268 +S'Stove Lid Lifter' +p66904 +sg25270 +S'Adelaide Dyball' +p66905 +sa(dp66906 +g25267 +g27 +sg25268 +S'Tin Stove' +p66907 +sg25270 +S'Vincent P. Rosel' +p66908 +sa(dp66909 +g25267 +g27 +sg25268 +S'Portable Charcoal Stove' +p66910 +sg25270 +S'Ernest A. Towers, Jr.' +p66911 +sa(dp66912 +g25267 +g27 +sg25268 +S'Portable Cast Iron Cook Stove' +p66913 +sg25270 +S'Al Curry' +p66914 +sa(dp66915 +g25267 +g27 +sg25268 +S'Brazier' +p66916 +sg25270 +S'Sarkis Erganian' +p66917 +sa(dp66918 +g25267 +g27 +sg25268 +S'Charcoal Stove' +p66919 +sg25270 +S'John Price' +p66920 +sa(dp66921 +g25267 +g27 +sg25268 +S'Tin Milk Warmer' +p66922 +sg25270 +S'Edward L. Loper' +p66923 +sa(dp66924 +g25267 +g27 +sg25268 +S'Franklin Baking Oven' +p66925 +sg25270 +S'Artist Information (' +p66926 +sa(dp66927 +g25267 +g27 +sg25268 +S"Tailor's Stove" +p66928 +sg25270 +S'John Bodine' +p66929 +sa(dp66930 +g25267 +g27 +sg25268 +S'Wood Burner Cook Stove' +p66931 +sg25270 +S'Walter L. Webster' +p66932 +sa(dp66933 +g25273 +S'French, 1751 - 1847' +p66934 +sg25267 +g27 +sg25275 +S'(artist)' +p66935 +sg25268 +S'Portraits des grands hommes ... (volume I)' +p66936 +sg25270 +S'Artist Information (' +p66937 +sa(dp66938 +g25267 +g27 +sg25268 +S'Cannon Stove' +p66939 +sg25270 +S'Regina Henderer' +p66940 +sa(dp66941 +g25267 +g27 +sg25268 +S'Coal Stove' +p66942 +sg25270 +S'Frank Gray' +p66943 +sa(dp66944 +g25267 +g27 +sg25268 +S'Franklin Stove' +p66945 +sg25270 +S'J. Howard Iams' +p66946 +sa(dp66947 +g25267 +g27 +sg25268 +S'Kitchen Range' +p66948 +sg25270 +S'David Ramage' +p66949 +sa(dp66950 +g25267 +g27 +sg25268 +S'Copper Tea Kettle' +p66951 +sg25270 +S'Clyde L. Cheney' +p66952 +sa(dp66953 +g25267 +g27 +sg25268 +S'Copper Kettle' +p66954 +sg25270 +S'A.R. Tolman' +p66955 +sa(dp66956 +g25267 +g27 +sg25268 +S'Copper Tea Kettle' +p66957 +sg25270 +S'J. Howard Iams' +p66958 +sa(dp66959 +g25267 +g27 +sg25268 +S'Tea Kettle' +p66960 +sg25270 +S'Michael Rekucki' +p66961 +sa(dp66962 +g25267 +g27 +sg25268 +S'Copper Tea Kettle' +p66963 +sg25270 +S'Isabella Ruth Doerfler' +p66964 +sa(dp66965 +g25267 +g27 +sg25268 +S'Tea Kettle' +p66966 +sg25270 +S'William Kieckhofel' +p66967 +sa(dp66968 +g25273 +S'(artist)' +p66969 +sg25267 +g27 +sg25275 +S'\n' +p66970 +sg25268 +S'Portraits des grands hommes ... (volume II)' +p66971 +sg25270 +S'Artist Information (' +p66972 +sa(dp66973 +g25267 +g27 +sg25268 +S'Copper Kettle with Spout' +p66974 +sg25270 +S'Artist Information (' +p66975 +sa(dp66976 +g25267 +S"Teakettles were the most popular items made of copper. Domestic copperware\n was scarce during British colonial rule because the smelting of copper ore was\n restricted. But, as the number of facilities for the production of sheet copper\n increased, coppersmiths produced greater varieties of household utensils. This\n kettle, dated 1799, was made by shaping a copper sheet into a cylinder and then\n hammering the metal to the desired form. Although the design of copper teakettles\n was derived from European sources, the outward flare of the body is distinctly\n American. The curve of the handle, and domed lid, and the roundness of the kettle's\n body are in contrast with the sleek appearance of the gooseneck spout. Coppersmiths\n were skilled at their craft and often signed their works. The flat handle of the\n teakettle provided a convenient surface for the craftsman's mark. This kettle is\n unmarked but has been engraved instead with the names of its owners and their\n birth and death dates.\n " +p66977 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000307.jpg' +p66978 +sg25268 +S'Copper Kettle' +p66979 +sg25270 +S'Samuel W. Ford' +p66980 +sa(dp66981 +g25267 +g27 +sg25268 +S'Copper Tea Kettle' +p66982 +sg25270 +S'Eugene Croe' +p66983 +sa(dp66984 +g25267 +g27 +sg25268 +S'Copper Kettle' +p66985 +sg25270 +S'Edward L. Loper' +p66986 +sa(dp66987 +g25267 +g27 +sg25268 +S'Tea Caddy' +p66988 +sg25270 +S'Marie Lutrell' +p66989 +sa(dp66990 +g25267 +g27 +sg25268 +S'Teapot' +p66991 +sg25270 +S'Henry Meyers' +p66992 +sa(dp66993 +g25267 +g27 +sg25268 +S'Teapot' +p66994 +sg25270 +S'Daniel Fletcher' +p66995 +sa(dp66996 +g25267 +g27 +sg25268 +S'Tavern Sign' +p66997 +sg25270 +S'Samuel Fineman' +p66998 +sa(dp66999 +g25267 +g27 +sg25268 +S'Wine Shop Emblem' +p67000 +sg25270 +S'Artist Information (' +p67001 +sa(dp67002 +g25267 +g27 +sg25268 +S'Tavern Sign' +p67003 +sg25270 +S'Robert W.R. Taylor' +p67004 +sa(dp67005 +g25273 +S'(artist)' +p67006 +sg25267 +g27 +sg25275 +S'\n' +p67007 +sg25268 +S'Portraits des grands hommes ... (volume III)' +p67008 +sg25270 +S'Artist Information (' +p67009 +sa(dp67010 +g25267 +g27 +sg25268 +S'Tankard' +p67011 +sg25270 +S'Irving L. Biehn' +p67012 +sa(dp67013 +g25267 +g27 +sg25268 +S'Wood Tankard' +p67014 +sg25270 +S'Richard Taylor' +p67015 +sa(dp67016 +g25267 +g27 +sg25268 +S'Drinking Vessel (Loving Cup)' +p67017 +sg25270 +S'Frank McEntee' +p67018 +sa(dp67019 +g25267 +g27 +sg25268 +S'Tankard' +p67020 +sg25270 +S'Hester Duany' +p67021 +sa(dp67022 +g25267 +g27 +sg25268 +S'Wooden Noggin' +p67023 +sg25270 +S'Wilbur M Rice' +p67024 +sa(dp67025 +g25267 +g27 +sg25268 +S'Sword and Sheath' +p67026 +sg25270 +S'Cecil Smith' +p67027 +sa(dp67028 +g25267 +g27 +sg25268 +S'Sabre' +p67029 +sg25270 +S'Carl Buergerniss' +p67030 +sa(dp67031 +g25267 +g27 +sg25268 +S'Sabre' +p67032 +sg25270 +S'Carl Buergerniss' +p67033 +sa(dp67034 +g25267 +g27 +sg25268 +S'Sword' +p67035 +sg25270 +S'Fletcher Hanks' +p67036 +sa(dp67037 +g25267 +g27 +sg25268 +S'Sword' +p67038 +sg25270 +S'Fletcher Hanks' +p67039 +sa(dp67040 +g25273 +S'French, 1751 - 1847' +p67041 +sg25267 +g27 +sg25275 +S'(artist)' +p67042 +sg25268 +S'Portraits des grands hommes ... (volume IV)' +p67043 +sg25270 +S'Artist Information (' +p67044 +sa(dp67045 +g25267 +g27 +sg25268 +S'Trap Gun' +p67046 +sg25270 +S'William Frank' +p67047 +sa(dp67048 +g25267 +g27 +sg25268 +S'Cast Iron Tea Kettle' +p67049 +sg25270 +S'William Schmidt' +p67050 +sa(dp67051 +g25267 +g27 +sg25268 +S'Tea Kettle' +p67052 +sg25270 +S'William Schmidt' +p67053 +sa(dp67054 +g25267 +g27 +sg25268 +S'Tea Kettle' +p67055 +sg25270 +S'Fred Hassebrock' +p67056 +sa(dp67057 +g25267 +g27 +sg25268 +S'Iron Kettle' +p67058 +sg25270 +S'Rocco Navigato' +p67059 +sa(dp67060 +g25267 +g27 +sg25268 +S'Copper Kettle' +p67061 +sg25270 +S'John Cutting' +p67062 +sa(dp67063 +g25267 +g27 +sg25268 +S'Kettle' +p67064 +sg25270 +S'Rollington Campbell' +p67065 +sa(dp67066 +g25267 +g27 +sg25268 +S'Tea Kettle' +p67067 +sg25270 +S'Mildred Ford' +p67068 +sa(dp67069 +g25267 +g27 +sg25268 +S'Valance' +p67070 +sg25270 +S'Ella Josephine Sterling' +p67071 +sa(dp67072 +g25267 +g27 +sg25268 +S'Crewel Embroidery' +p67073 +sg25270 +S'John Oster' +p67074 +sa(dp67075 +g25273 +S'color aquatint and etching' +p67076 +sg25267 +g27 +sg25275 +S'published 1789' +p67077 +sg25268 +S'La promenade aux Flambeaux' +p67078 +sg25270 +S'Antoine-Fran\xc3\xa7ois Sergent' +p67079 +sa(dp67080 +g25267 +g27 +sg25268 +S'Masonic Sign' +p67081 +sg25270 +S'Edward F. Engel' +p67082 +sa(dp67083 +g25267 +g27 +sg25268 +S'Tavern Sign' +p67084 +sg25270 +S'John Matulis' +p67085 +sa(dp67086 +g25267 +g27 +sg25268 +S'Silk with Embroidered Flowers' +p67087 +sg25270 +S'Douglas Campbell' +p67088 +sa(dp67089 +g25267 +g27 +sg25268 +S'Needlepoint Picture' +p67090 +sg25270 +S'Jules Lefevere' +p67091 +sa(dp67092 +g25267 +g27 +sg25268 +S'Handkerchief Folder' +p67093 +sg25270 +S'Cecily Edwards' +p67094 +sa(dp67095 +g25267 +g27 +sg25268 +S'Cushion Top' +p67096 +sg25270 +S'Florence Huston' +p67097 +sa(dp67098 +g25267 +g27 +sg25268 +S'Textile' +p67099 +sg25270 +S'American 20th Century' +p67100 +sa(dp67101 +g25267 +g27 +sg25268 +S'Dress Fabric' +p67102 +sg25270 +S'Henry Meyers' +p67103 +sa(dp67104 +g25267 +g27 +sg25268 +S'Embroidered Banner' +p67105 +sg25270 +S'Evelyn Bailey' +p67106 +sa(dp67107 +g25267 +g27 +sg25268 +S'Pair of Satin Pillow Shams' +p67108 +sg25270 +S'Sebastian Simonet' +p67109 +sa(dp67110 +g25273 +S'bound volume with 4 color aquatints and etchings' +p67111 +sg25267 +g27 +sg25275 +S'published 1789' +p67112 +sg25268 +S'Prints from "Tableaux de revolutions de Paris"' +p67113 +sg25270 +S'Antoine-Fran\xc3\xa7ois Sergent' +p67114 +sa(dp67115 +g25267 +g27 +sg25268 +S'Pillow' +p67116 +sg25270 +S'Florence Huston' +p67117 +sa(dp67118 +g25267 +g27 +sg25268 +S'Evening Handkerchief' +p67119 +sg25270 +S'Mary Fitzgerald' +p67120 +sa(dp67121 +g25267 +g27 +sg25268 +S'Pillow Slip or Case' +p67122 +sg25270 +S'Carl Buergerniss' +p67123 +sa(dp67124 +g25267 +g27 +sg25268 +S"Embroidery - Detail of Child's Dress" +p67125 +sg25270 +S'Mary E. Humes' +p67126 +sa(dp67127 +g25267 +g27 +sg25268 +S'Textile' +p67128 +sg25270 +S'American 20th Century' +p67129 +sa(dp67130 +g25267 +g27 +sg25268 +S'Tablecloth' +p67131 +sg25270 +S'Florence Truelson' +p67132 +sa(dp67133 +g25267 +g27 +sg25268 +S'Embroidered Trimmimg' +p67134 +sg25270 +S'Edith Magnette' +p67135 +sa(dp67136 +g25267 +g27 +sg25268 +S'Dress' +p67137 +sg25270 +S'Mary E. Humes' +p67138 +sa(dp67139 +g25267 +g27 +sg25268 +S'Tea Kettle' +p67140 +sg25270 +S'Jay Katz' +p67141 +sa(dp67142 +g25267 +g27 +sg25268 +S'Burner and Kettle' +p67143 +sg25270 +S'Edith Magnette' +p67144 +sa(dp67145 +g25273 +S'color aquatint and etching' +p67146 +sg25267 +g27 +sg25275 +S'published 1789' +p67147 +sg25268 +S'La charge du Royal Allemand' +p67148 +sg25270 +S'Antoine-Fran\xc3\xa7ois Sergent' +p67149 +sa(dp67150 +g25267 +g27 +sg25268 +S'Burner and Kettle' +p67151 +sg25270 +S'Edith Magnette' +p67152 +sa(dp67153 +g25267 +g27 +sg25268 +S'Tea Kettle' +p67154 +sg25270 +S'Karl Joubert' +p67155 +sa(dp67156 +g25267 +g27 +sg25268 +S'Tea Kettle' +p67157 +sg25270 +S'Frank Nelson' +p67158 +sa(dp67159 +g25267 +g27 +sg25268 +S'Kettle' +p67160 +sg25270 +S'Tabea Hosier' +p67161 +sa(dp67162 +g25267 +g27 +sg25268 +S'Teapot' +p67163 +sg25270 +S'Grace Halpin' +p67164 +sa(dp67165 +g25267 +g27 +sg25268 +S'Teapot' +p67166 +sg25270 +S'Frank Nelson' +p67167 +sa(dp67168 +g25267 +g27 +sg25268 +S'Tea Kettle' +p67169 +sg25270 +S'Herbert Marsh' +p67170 +sa(dp67171 +g25267 +g27 +sg25268 +S'Iron Tea Kettle' +p67172 +sg25270 +S'Frederick Jackson' +p67173 +sa(dp67174 +g25267 +g27 +sg25268 +S'Sword and Scabbard' +p67175 +sg25270 +S'American 20th Century' +p67176 +sa(dp67177 +g25267 +g27 +sg25268 +S'Saber' +p67178 +sg25270 +S'American 20th Century' +p67179 +sa(dp67180 +g25273 +S'color aquatint and etching' +p67181 +sg25267 +g27 +sg25275 +S'published 1789' +p67182 +sg25268 +S'Les gardes francaises ...' +p67183 +sg25270 +S'Antoine-Fran\xc3\xa7ois Sergent' +p67184 +sa(dp67185 +g25267 +g27 +sg25268 +S'Cutlass and Leather Scabbard' +p67186 +sg25270 +S'American 20th Century' +p67187 +sa(dp67188 +g25267 +g27 +sg25268 +S'Street Car' +p67189 +sg25270 +S'American 20th Century' +p67190 +sa(dp67191 +g25267 +g27 +sg25268 +S'Desk Bell' +p67192 +sg25270 +S'American 20th Century' +p67193 +sa(dp67194 +g25267 +g27 +sg25268 +S'Stereoscope Viewer' +p67195 +sg25270 +S'American 20th Century' +p67196 +sa(dp67197 +g25267 +g27 +sg25268 +S'Sewing Stand' +p67198 +sg25270 +S'Eugene W. McGill' +p67199 +sa(dp67200 +g25267 +g27 +sg25268 +S'Wheel' +p67201 +sg25270 +S'Hugh Clarke' +p67202 +sa(dp67203 +g25267 +g27 +sg25268 +S'Crewel Embroidery' +p67204 +sg25270 +S'Helen D. Bashian' +p67205 +sa(dp67206 +g25267 +g27 +sg25268 +S'Needlework Picture' +p67207 +sg25270 +S'Francis Law Durand' +p67208 +sa(dp67209 +g25267 +g27 +sg25268 +S'Needlework Picture' +p67210 +sg25270 +S'Francis Law Durand' +p67211 +sa(dp67212 +g25267 +g27 +sg25268 +S'Needlework' +p67213 +sg25270 +S'Francis Law Durand' +p67214 +sa(dp67215 +g25273 +S'color aquatint and etching' +p67216 +sg25267 +g27 +sg25275 +S'published 1789' +p67217 +sg25268 +S'Le duc du Chatelet ...' +p67218 +sg25270 +S'Antoine-Fran\xc3\xa7ois Sergent' +p67219 +sa(dp67220 +g25267 +g27 +sg25268 +S'Embroidered Picture' +p67221 +sg25270 +S'Gordena Jackson' +p67222 +sa(dp67223 +g25267 +g27 +sg25268 +S'Petit Point' +p67224 +sg25270 +S'Bessie Vandre' +p67225 +sa(dp67226 +g25267 +g27 +sg25268 +S'Sampler' +p67227 +sg25270 +S'Dorothy Posten' +p67228 +sa(dp67229 +g25267 +g27 +sg25268 +S'Printed Textile' +p67230 +sg25270 +S'Marie Lutrell' +p67231 +sa(dp67232 +g25267 +g27 +sg25268 +S'Sample of Silk' +p67233 +sg25270 +S'Edward White' +p67234 +sa(dp67235 +g25267 +g27 +sg25268 +S'Woven Coverlet' +p67236 +sg25270 +S'Sarah F. Williams' +p67237 +sa(dp67238 +g25267 +g27 +sg25268 +S'Patchwork Quilt' +p67239 +sg25270 +S'Max Unger' +p67240 +sa(dp67241 +g25267 +g27 +sg25268 +S'Coverlet - Pine Tree Border' +p67242 +sg25270 +S'Eva Wilson' +p67243 +sa(dp67244 +g25267 +g27 +sg25268 +S'Red and White Napkin (Deer Design)' +p67245 +sg25270 +S'Arthur G. Merkley' +p67246 +sa(dp67247 +g25267 +g27 +sg25268 +S'Woven Coverlet' +p67248 +sg25270 +S'Theodore Pfitzer' +p67249 +sa(dp67250 +g25273 +S'(author)' +p67251 +sg25267 +g27 +sg25275 +S'\n' +p67252 +sg25268 +S'Voyages de Gulliver (volume I)' +p67253 +sg25270 +S'Artist Information (' +p67254 +sa(dp67255 +g25267 +g27 +sg25268 +S'Silk Patchwork Quilt' +p67256 +sg25270 +S'Florence Elizabeth Atkins' +p67257 +sa(dp67258 +g25267 +g27 +sg25268 +S'Quilt' +p67259 +sg25270 +S'Ellen Duncan' +p67260 +sa(dp67261 +g25267 +g27 +sg25268 +S'Quilt' +p67262 +sg25270 +S'Sebastian Simonet' +p67263 +sa(dp67264 +g25267 +g27 +sg25268 +S'Quilt' +p67265 +sg25270 +S'Mabel Ritter' +p67266 +sa(dp67267 +g25267 +g27 +sg25268 +S'Patchwork Square' +p67268 +sg25270 +S'Mabel Ritter' +p67269 +sa(dp67270 +g25267 +g27 +sg25268 +S'Patchwork Bedspread' +p67271 +sg25270 +S'Mary Berner' +p67272 +sa(dp67273 +g25267 +g27 +sg25268 +S'Quilt' +p67274 +sg25270 +S'George Loughridge' +p67275 +sa(dp67276 +g25267 +g27 +sg25268 +S'Quilt' +p67277 +sg25270 +S'Flora Merchant' +p67278 +sa(dp67279 +g25267 +g27 +sg25268 +S'Quilt' +p67280 +sg25270 +S'Francis Law Durand' +p67281 +sa(dp67282 +g25267 +g27 +sg25268 +S'Patchwork Quilt' +p67283 +sg25270 +S'Daniel Fletcher' +p67284 +sa(dp67285 +g25273 +S'(author)' +p67286 +sg25267 +g27 +sg25275 +S'\n' +p67287 +sg25268 +S'Voyages de Gulliver (volume II)' +p67288 +sg25270 +S'Artist Information (' +p67289 +sa(dp67290 +g25267 +g27 +sg25268 +S'Quilt for Bedspread' +p67291 +sg25270 +S'Edith Magnette' +p67292 +sa(dp67293 +g25267 +g27 +sg25268 +S'Textile' +p67294 +sg25270 +S'Suzanne Roy' +p67295 +sa(dp67296 +g25267 +g27 +sg25268 +S'Quilt' +p67297 +sg25270 +S'Cleon Barton' +p67298 +sa(dp67299 +g25267 +g27 +sg25268 +S'White Cotton' +p67300 +sg25270 +S'Herbert Marsh' +p67301 +sa(dp67302 +g25267 +g27 +sg25268 +S'Textile' +p67303 +sg25270 +S'E.A. Smaller' +p67304 +sa(dp67305 +g25267 +g27 +sg25268 +S'Printed Scarf' +p67306 +sg25270 +S'Mildred E. Bent' +p67307 +sa(dp67308 +g25267 +g27 +sg25268 +S'Linen' +p67309 +sg25270 +S'Edna C. Rex' +p67310 +sa(dp67311 +g25267 +g27 +sg25268 +S'Blanket' +p67312 +sg25270 +S'Lillian Causey' +p67313 +sa(dp67314 +g25267 +g27 +sg25268 +S'Fabric Swatches' +p67315 +sg25270 +S'Robert Stewart' +p67316 +sa(dp67317 +g25267 +g27 +sg25268 +S'Quilt' +p67318 +sg25270 +S'J. Herman McCollum' +p67319 +sa(dp67320 +g25273 +S'French, 1705 - 1783' +p67321 +sg25267 +g27 +sg25275 +S'(author)' +p67322 +sg25268 +S'Histoire de Gerard de Nevers' +p67323 +sg25270 +S'Artist Information (' +p67324 +sa(dp67325 +g25267 +g27 +sg25268 +S'Quilt' +p67326 +sg25270 +S'Katherine Hastings' +p67327 +sa(dp67328 +g25267 +g27 +sg25268 +S'Quilt' +p67329 +sg25270 +S'Cornelius Frazier' +p67330 +sa(dp67331 +g25267 +g27 +sg25268 +S'Bedspread' +p67332 +sg25270 +S'Christopher Hobbs' +p67333 +sa(dp67334 +g25267 +g27 +sg25268 +S'Patchwork Quilt' +p67335 +sg25270 +S'Ellen Duncan' +p67336 +sa(dp67337 +g25267 +g27 +sg25268 +S'Applique Coverlet' +p67338 +sg25270 +S'John R. Towers' +p67339 +sa(dp67340 +g25267 +g27 +sg25268 +S'Quilt' +p67341 +sg25270 +S'Dayton Brown' +p67342 +sa(dp67343 +g25267 +g27 +sg25268 +S'Quilt' +p67344 +sg25270 +S'Katherine Hastings' +p67345 +sa(dp67346 +g25267 +g27 +sg25268 +S'Quilted Applique Coverlet' +p67347 +sg25270 +S'John R. Towers' +p67348 +sa(dp67349 +g25267 +g27 +sg25268 +S'Patchwork Quilt' +p67350 +sg25270 +S'Ella Josephine Sterling' +p67351 +sa(dp67352 +g25267 +g27 +sg25268 +S'Applique Coverlet' +p67353 +sg25270 +S'Ernest A. Towers, Jr.' +p67354 +sa(dp67355 +g25273 +S'French, 1705 - 1783' +p67356 +sg25267 +g27 +sg25275 +S'(author)' +p67357 +sg25268 +S'Histoire du petit Jehan de Saintre' +p67358 +sg25270 +S'Artist Information (' +p67359 +sa(dp67360 +g25267 +g27 +sg25268 +S'Quilted Applique Coverlet' +p67361 +sg25270 +S'Edward L. Loper' +p67362 +sa(dp67363 +g25267 +g27 +sg25268 +S'Quilt' +p67364 +sg25270 +S'Alice Cosgrove' +p67365 +sa(dp67366 +g25267 +g27 +sg25268 +S'Quilted Applique Coverlet' +p67367 +sg25270 +S'Edward L. Loper' +p67368 +sa(dp67369 +g25267 +g27 +sg25268 +S'Tulip Pattern Quilt' +p67370 +sg25270 +S'Mabel Ritter' +p67371 +sa(dp67372 +g25267 +g27 +sg25268 +S'Quilt' +p67373 +sg25270 +S'American 20th Century' +p67374 +sa(dp67375 +g25267 +g27 +sg25268 +S'Drapery' +p67376 +sg25270 +S'Madeline Arnold' +p67377 +sa(dp67378 +g25267 +g27 +sg25268 +S'Quilt' +p67379 +sg25270 +S'Robert Stewart' +p67380 +sa(dp67381 +g25267 +g27 +sg25268 +S'Quilt' +p67382 +sg25270 +S'Francis Law Durand' +p67383 +sa(dp67384 +g25267 +g27 +sg25268 +S'Quilt' +p67385 +sg25270 +S'LeRoy Robinson' +p67386 +sa(dp67387 +g25267 +g27 +sg25268 +S'Applique Quilt' +p67388 +sg25270 +S'American 20th Century' +p67389 +sa(dp67390 +g25273 +S'French, 1705 - 1783' +p67391 +sg25267 +g27 +sg25275 +S'(author)' +p67392 +sg25268 +S'Histoire du petit Jehan de Saintre' +p67393 +sg25270 +S'Artist Information (' +p67394 +sa(dp67395 +g25267 +g27 +sg25268 +S'Applique Quilt' +p67396 +sg25270 +S'Mildred Prince' +p67397 +sa(dp67398 +g25267 +g27 +sg25268 +S'Silk Applique Quilt' +p67399 +sg25270 +S'Mildred Prince' +p67400 +sa(dp67401 +g25267 +g27 +sg25268 +S'Applique Quilt' +p67402 +sg25270 +S'Mildred Prince' +p67403 +sa(dp67404 +g25267 +g27 +sg25268 +S'Applique Quilt' +p67405 +sg25270 +S'Ruth M. Barnes' +p67406 +sa(dp67407 +g25267 +g27 +sg25268 +S'Silk Applique Quilt' +p67408 +sg25270 +S'Mildred Prince' +p67409 +sa(dp67410 +g25267 +g27 +sg25268 +S'Applique Quilt' +p67411 +sg25270 +S'Mildred Prince' +p67412 +sa(dp67413 +g25267 +g27 +sg25268 +S'Padded Quilt' +p67414 +sg25270 +S'Eva Wilson' +p67415 +sa(dp67416 +g25267 +g27 +sg25268 +S'Quilt' +p67417 +sg25270 +S'Katherine Hastings' +p67418 +sa(dp67419 +g25267 +g27 +sg25268 +S'Tie-back' +p67420 +sg25270 +S'Henry Moran' +p67421 +sa(dp67422 +g25267 +g27 +sg25268 +S'Tie-back' +p67423 +sg25270 +S'Helen Bronson' +p67424 +sa(dp67425 +g25273 +S'(author)' +p67426 +sg25267 +g27 +sg25275 +S'\n' +p67427 +sg25268 +S'Oeuvres poissardes' +p67428 +sg25270 +S'Artist Information (' +p67429 +sa(dp67430 +g25267 +g27 +sg25268 +S'Tie-back' +p67431 +sg25270 +S'Helen Bronson' +p67432 +sa(dp67433 +g25267 +g27 +sg25268 +S'Tie-back' +p67434 +sg25270 +S'Harry Jennings' +p67435 +sa(dp67436 +g25267 +g27 +sg25268 +S'Tie-back' +p67437 +sg25270 +S'Helen Bronson' +p67438 +sa(dp67439 +g25267 +g27 +sg25268 +S'Tie-back' +p67440 +sg25270 +S'Harry Jennings' +p67441 +sa(dp67442 +g25267 +g27 +sg25268 +S'Tie-back' +p67443 +sg25270 +S'Harry Jennings' +p67444 +sa(dp67445 +g25267 +g27 +sg25268 +S'Tie-back' +p67446 +sg25270 +S'Helen Bronson' +p67447 +sa(dp67448 +g25267 +g27 +sg25268 +S'Tie-back' +p67449 +sg25270 +S'Harry Jennings' +p67450 +sa(dp67451 +g25267 +g27 +sg25268 +S'Brackets' +p67452 +sg25270 +S'Dana Bartlett' +p67453 +sa(dp67454 +g25267 +g27 +sg25268 +S'Tie-back' +p67455 +sg25270 +S'Chris Makrenos' +p67456 +sa(dp67457 +g25267 +g27 +sg25268 +S'Tie-back' +p67458 +sg25270 +S'Harry Jennings' +p67459 +sa(dp67460 +g25273 +S'(artist after)' +p67461 +sg25267 +g27 +sg25275 +S'\n' +p67462 +sg25268 +S'Collection de costumes' +p67463 +sg25270 +S'Artist Information (' +p67464 +sa(dp67465 +g25267 +g27 +sg25268 +S'Tie-back' +p67466 +sg25270 +S'Grace Halpin' +p67467 +sa(dp67468 +g25267 +g27 +sg25268 +S'Tie-back' +p67469 +sg25270 +S'Harry Jennings' +p67470 +sa(dp67471 +g25267 +g27 +sg25268 +S'Tie-back' +p67472 +sg25270 +S'Helen Bronson' +p67473 +sa(dp67474 +g25267 +g27 +sg25268 +S'Tie-back' +p67475 +sg25270 +S'Harry Jennings' +p67476 +sa(dp67477 +g25267 +g27 +sg25268 +S'Tie-back' +p67478 +sg25270 +S'Harry Jennings' +p67479 +sa(dp67480 +g25267 +g27 +sg25268 +S'Tie-back' +p67481 +sg25270 +S'Harry Jennings' +p67482 +sa(dp67483 +g25267 +g27 +sg25268 +S'Curtain Tie-back' +p67484 +sg25270 +S'Grace Halpin' +p67485 +sa(dp67486 +g25267 +g27 +sg25268 +S'Tie-back' +p67487 +sg25270 +S'Helen Bronson' +p67488 +sa(dp67489 +g25267 +g27 +sg25268 +S'Tie-back' +p67490 +sg25270 +S'Helen Bronson' +p67491 +sa(dp67492 +g25267 +g27 +sg25268 +S'Tie-back' +p67493 +sg25270 +S'Helen Bronson' +p67494 +sa(dp67495 +g25268 +S'The Baptism of Christ' +p67496 +sg25270 +S'Master of the Life of Saint John the Baptist' +p67497 +sg25273 +S'tempera on panel' +p67498 +sg25275 +S'probably 1330/1340' +p67499 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cc2.jpg' +p67500 +sg25267 +g27 +sa(dp67501 +g25273 +S'(author)' +p67502 +sg25267 +g27 +sg25275 +S'\n' +p67503 +sg25268 +S'Les georgiques' +p67504 +sg25270 +S'Artist Information (' +p67505 +sa(dp67506 +g25267 +g27 +sg25268 +S'Curtain Tie-back' +p67507 +sg25270 +S'Grace Halpin' +p67508 +sa(dp67509 +g25267 +g27 +sg25268 +S'Mozart Tie-back' +p67510 +sg25270 +S'Helen Bronson' +p67511 +sa(dp67512 +g25267 +g27 +sg25268 +S'Wooden Silk Winder' +p67513 +sg25270 +S'Edward L. Loper' +p67514 +sa(dp67515 +g25267 +g27 +sg25268 +S'Ticket Punch' +p67516 +sg25270 +S'H. Langden Brown' +p67517 +sa(dp67518 +g25267 +g27 +sg25268 +S'Gold Thimble' +p67519 +sg25270 +S'George Seideneck' +p67520 +sa(dp67521 +g25267 +g27 +sg25268 +S'Thread Winds' +p67522 +sg25270 +S'Michael Fenga' +p67523 +sa(dp67524 +g25267 +g27 +sg25268 +S'Thermometer' +p67525 +sg25270 +S'Franklin C. Moyan' +p67526 +sa(dp67527 +g25267 +g27 +sg25268 +S'Wooden Thread Holder' +p67528 +sg25270 +S'Edward L. Loper' +p67529 +sa(dp67530 +g25267 +g27 +sg25268 +S'Toast Rack' +p67531 +sg25270 +S'Francis Law Durand' +p67532 +sa(dp67533 +g25267 +g27 +sg25268 +S'Toast Rack' +p67534 +sg25270 +S'Irene Lawson' +p67535 +sa(dp67536 +g25273 +S'French, 1694 - 1778' +p67537 +sg25267 +g27 +sg25275 +S'(author)' +p67538 +sg25268 +S"La pucelle d'Orl\xc3\xa9ans ..." +p67539 +sg25270 +S'Artist Information (' +p67540 +sa(dp67541 +g25267 +g27 +sg25268 +S'Wrought Iron Toaster' +p67542 +sg25270 +S'Benjamin Resnick' +p67543 +sa(dp67544 +g25267 +g27 +sg25268 +S'Toast Rack' +p67545 +sg25270 +S'Bernard Westmacott' +p67546 +sa(dp67547 +g25267 +g27 +sg25268 +S'Toast Rack' +p67548 +sg25270 +S'Bernard Westmacott' +p67549 +sa(dp67550 +g25267 +g27 +sg25268 +S'Trivet Toaster' +p67551 +sg25270 +S'Filippo Porreca' +p67552 +sa(dp67553 +g25267 +g27 +sg25268 +S'Toast Rack' +p67554 +sg25270 +S'Maurice Van Felix' +p67555 +sa(dp67556 +g25267 +g27 +sg25268 +S'Toast Rack' +p67557 +sg25270 +S'Gordon Sanborn' +p67558 +sa(dp67559 +g25267 +g27 +sg25268 +S'Toast Rack' +p67560 +sg25270 +S'Albert Taxson' +p67561 +sa(dp67562 +g25267 +g27 +sg25268 +S'Fireplace Toaster' +p67563 +sg25270 +S'Walter L. Webster' +p67564 +sa(dp67565 +g25267 +g27 +sg25268 +S'Iron Toast Rack' +p67566 +sg25270 +S'Florence Stevenson' +p67567 +sa(dp67568 +g25267 +g27 +sg25268 +S'Toaster' +p67569 +sg25270 +S'Frank McEntee' +p67570 +sa(dp67571 +g25273 +S', published 1787' +p67572 +sg25267 +g27 +sg25275 +S'\n' +p67573 +sg25268 +S'Album of Prints from "Vues pittoresque des principaux edifices de Paris" (volume I)' +p67574 +sg25270 +S'Le Campion family' +p67575 +sa(dp67576 +g25267 +g27 +sg25268 +S'Toaster' +p67577 +sg25270 +S'Roy Weber' +p67578 +sa(dp67579 +g25267 +g27 +sg25268 +S'Toaster' +p67580 +sg25270 +S'Alice Cosgrove' +p67581 +sa(dp67582 +g25267 +g27 +sg25268 +S'Toast Rack' +p67583 +sg25270 +S'Jacob Lipkin' +p67584 +sa(dp67585 +g25267 +g27 +sg25268 +S'Toaster' +p67586 +sg25270 +S'Samuel O. Klein' +p67587 +sa(dp67588 +g25267 +g27 +sg25268 +S'Wrought Iron Toaster' +p67589 +sg25270 +S'John Garay' +p67590 +sa(dp67591 +g25267 +g27 +sg25268 +S'Toast Rack' +p67592 +sg25270 +S'Mildred Ford' +p67593 +sa(dp67594 +g25267 +g27 +sg25268 +S'Toaster' +p67595 +sg25270 +S'Rollington Campbell' +p67596 +sa(dp67597 +g25267 +g27 +sg25268 +S'Bread Toaster' +p67598 +sg25270 +S'Donald Streeter' +p67599 +sa(dp67600 +g25267 +g27 +sg25268 +S'Toast Rack' +p67601 +sg25270 +S'Mildred Ford' +p67602 +sa(dp67603 +g25267 +g27 +sg25268 +S'Toast Rack' +p67604 +sg25270 +S'Mildred Ford' +p67605 +sa(dp67606 +g25273 +S'(publisher)' +p67607 +sg25267 +g27 +sg25275 +S'\n' +p67608 +sg25268 +S'Album of Prints from "Vues pittoresque des principaux edifices de Paris" (volume II)' +p67609 +sg25270 +S'Artist Information (' +p67610 +sa(dp67611 +g25267 +g27 +sg25268 +S'Floor Tile' +p67612 +sg25270 +S'Walter W. Jennings' +p67613 +sa(dp67614 +g25267 +g27 +sg25268 +S'Fireplace Tile' +p67615 +sg25270 +S'John Dixon' +p67616 +sa(dp67617 +g25267 +g27 +sg25268 +S'Fireplace Tiles' +p67618 +sg25270 +S'John Dixon' +p67619 +sa(dp67620 +g25267 +g27 +sg25268 +S'Fireplace Tile' +p67621 +sg25270 +S'John Dixon' +p67622 +sa(dp67623 +g25267 +g27 +sg25268 +S'Fireplace Tile' +p67624 +sg25270 +S'John Dixon' +p67625 +sa(dp67626 +g25267 +g27 +sg25268 +S'Fireplace Tile' +p67627 +sg25270 +S'John Dixon' +p67628 +sa(dp67629 +g25267 +g27 +sg25268 +S'Tile' +p67630 +sg25270 +S'A. Zimet' +p67631 +sa(dp67632 +g25267 +g27 +sg25268 +S'Perique Tobacco Cutter' +p67633 +sg25270 +S'Al Curry' +p67634 +sa(dp67635 +g25267 +g27 +sg25268 +S'Tobacco Cutter' +p67636 +sg25270 +S'Joseph L. Boyd' +p67637 +sa(dp67638 +g25267 +g27 +sg25268 +S'Tobacco Jar' +p67639 +sg25270 +S'Joseph Cannella' +p67640 +sa(dp67641 +g25273 +S'(artist)' +p67642 +sg25267 +g27 +sg25275 +S'\n' +p67643 +sg25268 +S'Album of Prints from "Vues pittoresque des principaux edifices de Paris" (volume III)' +p67644 +sg25270 +S'Artist Information (' +p67645 +sa(dp67646 +g25267 +g27 +sg25268 +S'Pewter Tobacco Jar' +p67647 +sg25270 +S'Ardella Watkins' +p67648 +sa(dp67649 +g25267 +g27 +sg25268 +S'Toleware Vase' +p67650 +sg25270 +S'John Hall' +p67651 +sa(dp67652 +g25267 +g27 +sg25268 +S'Toleware Box' +p67653 +sg25270 +S'Charles Henning' +p67654 +sa(dp67655 +g25267 +g27 +sg25268 +S'Toleware Trinket Box' +p67656 +sg25270 +S'Charles Henning' +p67657 +sa(dp67658 +g25267 +g27 +sg25268 +S'Japanned Coal Scuttle' +p67659 +sg25270 +S'John Hall' +p67660 +sa(dp67661 +g25267 +g27 +sg25268 +S'Toleware Coal Vase' +p67662 +sg25270 +S'Robert Stewart' +p67663 +sa(dp67664 +g25267 +g27 +sg25268 +S'Toleware Candlestick' +p67665 +sg25270 +S'John Hall' +p67666 +sa(dp67667 +g25267 +g27 +sg25268 +S'Toleware Tin Cannister' +p67668 +sg25270 +S'Donald Humphrey' +p67669 +sa(dp67670 +g25267 +g27 +sg25268 +S'Toleware Tea Caddy' +p67671 +sg25270 +S'Janet Riza' +p67672 +sa(dp67673 +g25267 +g27 +sg25268 +S'Toleware Tin Cannister' +p67674 +sg25270 +S'Max Soltmann' +p67675 +sa(dp67676 +g25268 +S'Figures de differents caracteres ... (volume I)' +p67677 +sg25270 +S'Artist Information (' +p67678 +sg25273 +S'French, 1684 - 1721' +p67679 +sg25275 +S'(artist after)' +p67680 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e6b.jpg' +p67681 +sg25267 +g27 +sa(dp67682 +g25267 +g27 +sg25268 +S'Toleware Tea Cannister' +p67683 +sg25270 +S'Henry Murphy' +p67684 +sa(dp67685 +g25267 +g27 +sg25268 +S'Painted Toleware Box' +p67686 +sg25270 +S'Chris Makrenos' +p67687 +sa(dp67688 +g25267 +g27 +sg25268 +S'Toleware Tin Cannister' +p67689 +sg25270 +S'William Frank' +p67690 +sa(dp67691 +g25267 +g27 +sg25268 +S'Toleware Coffee Pot' +p67692 +sg25270 +S'Edward L. Loper' +p67693 +sa(dp67694 +g25267 +g27 +sg25268 +S'Toleware Coffee Pot' +p67695 +sg25270 +S'Mina Lowry' +p67696 +sa(dp67697 +g25267 +g27 +sg25268 +S'Toleware Coffee Pot' +p67698 +sg25270 +S'Charles Henning' +p67699 +sa(dp67700 +g25267 +g27 +sg25268 +S'Coverlet' +p67701 +sg25270 +S'American 20th Century' +p67702 +sa(dp67703 +g25267 +g27 +sg25268 +S'Tie-back' +p67704 +sg25270 +S'Harry Jennings' +p67705 +sa(dp67706 +g25267 +g27 +sg25268 +S'Tiles' +p67707 +sg25270 +S'John Wilkes' +p67708 +sa(dp67709 +g25267 +g27 +sg25268 +S'Brick Sidewalk Tiles' +p67710 +sg25270 +S'Robert Gilson' +p67711 +sa(dp67712 +g25273 +S'French, 1684 - 1721' +p67713 +sg25267 +g27 +sg25275 +S'(artist after)' +p67714 +sg25268 +S'Figures de differents caracteres ... (volume II)' +p67715 +sg25270 +S'Artist Information (' +p67716 +sa(dp67717 +g25267 +g27 +sg25268 +S'Toast Rack' +p67718 +sg25270 +S'Irene Lawson' +p67719 +sa(dp67720 +g25267 +g27 +sg25268 +S'Japanned Coal Scuttle' +p67721 +sg25270 +S'Robert Stewart' +p67722 +sa(dp67723 +g25267 +g27 +sg25268 +S'Canister' +p67724 +sg25270 +S'Marie Famularo' +p67725 +sa(dp67726 +g25267 +g27 +sg25268 +S'Toleware Water Can' +p67727 +sg25270 +S'John H. Tercuzzi' +p67728 +sa(dp67729 +g25267 +g27 +sg25268 +S'Toleware Slop Pail' +p67730 +sg25270 +S'John H. Tercuzzi' +p67731 +sa(dp67732 +g25267 +g27 +sg25268 +S'Toleware Coffee Pot' +p67733 +sg25270 +S'Richard Taylor' +p67734 +sa(dp67735 +g25267 +g27 +sg25268 +S'Tin Teapot' +p67736 +sg25270 +S'James McLellan' +p67737 +sa(dp67738 +g25267 +g27 +sg25268 +S'Tin Teapot' +p67739 +sg25270 +S'Frank Gray' +p67740 +sa(dp67741 +g25267 +g27 +sg25268 +S'Toleware Coffee Pot' +p67742 +sg25270 +S'John Hall' +p67743 +sa(dp67744 +g25267 +g27 +sg25268 +S'Toleware Coffee Pot' +p67745 +sg25270 +S'Nicholas Acampora' +p67746 +sa(dp67747 +g25273 +S'(artist after)' +p67748 +sg25267 +g27 +sg25275 +S'\n' +p67749 +sg25268 +S'Prints from Watteau\'s "Differente caracteres de tetes"' +p67750 +sg25270 +S'Artist Information (' +p67751 +sa(dp67752 +g25267 +g27 +sg25268 +S'Chocolate Pot' +p67753 +sg25270 +S'Janet Riza' +p67754 +sa(dp67755 +g25267 +g27 +sg25268 +S'Toleware Tin Coffee Pot' +p67756 +sg25270 +S'Harry Grossen' +p67757 +sa(dp67758 +g25267 +g27 +sg25268 +S'Toleware Coffee Pot' +p67759 +sg25270 +S'Mildred Ford' +p67760 +sa(dp67761 +g25267 +g27 +sg25268 +S'Toleware Coffee Pot' +p67762 +sg25270 +S'Janet Riza' +p67763 +sa(dp67764 +g25267 +g27 +sg25268 +S'Toleware Coffee Pot' +p67765 +sg25270 +S'Mildred Ford' +p67766 +sa(dp67767 +g25267 +g27 +sg25268 +S'Toleware Teapot' +p67768 +sg25270 +S'John Hall' +p67769 +sa(dp67770 +g25267 +g27 +sg25268 +S'Toleware Coffee Pot' +p67771 +sg25270 +S'Max Soltmann' +p67772 +sa(dp67773 +g25267 +g27 +sg25268 +S'Toleware Coffee Pot' +p67774 +sg25270 +S'Nicholas Acampora' +p67775 +sa(dp67776 +g25267 +g27 +sg25268 +S'Toleware Tin Teapot' +p67777 +sg25270 +S'Franklyn Syres' +p67778 +sa(dp67779 +g25267 +g27 +sg25268 +S'Toleware Tin Teapot' +p67780 +sg25270 +S'Franklyn Syres' +p67781 +sa(dp67782 +g25268 +S"L'oeuvre d'Antoine Watteau (volume I)" +p67783 +sg25270 +S'Artist Information (' +p67784 +sg25273 +S'French, 1684 - 1721' +p67785 +sg25275 +S'(artist after)' +p67786 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005ada.jpg' +p67787 +sg25267 +g27 +sa(dp67788 +g25267 +g27 +sg25268 +S'Toleware Coffee Pot' +p67789 +sg25270 +S'Charles Henning' +p67790 +sa(dp67791 +g25267 +g27 +sg25268 +S'Toleware Tin Coffee Pot' +p67792 +sg25270 +S'Elmer G. Anderson' +p67793 +sa(dp67794 +g25267 +g27 +sg25268 +S'Toleware Tin Coffee Pot' +p67795 +sg25270 +S'Max Soltmann' +p67796 +sa(dp67797 +g25267 +g27 +sg25268 +S'Toleware Teapot' +p67798 +sg25270 +S'Franklyn Syres' +p67799 +sa(dp67800 +g25267 +g27 +sg25268 +S'Toleware Teapot' +p67801 +sg25270 +S'Henry Murphy' +p67802 +sa(dp67803 +g25267 +g27 +sg25268 +S'Toleware Teapot' +p67804 +sg25270 +S'Oscar Bluhme' +p67805 +sa(dp67806 +g25267 +g27 +sg25268 +S'Toleware Canister' +p67807 +sg25270 +S'Lelah Nelson' +p67808 +sa(dp67809 +g25267 +g27 +sg25268 +S'Toleware Sugar Bowl' +p67810 +sg25270 +S'Charles Henning' +p67811 +sa(dp67812 +g25267 +g27 +sg25268 +S'Toleware Sugar Bowl' +p67813 +sg25270 +S'Sara Garfinkel' +p67814 +sa(dp67815 +g25267 +g27 +sg25268 +S'Toleware Sugar Bowl' +p67816 +sg25270 +S'Philip Johnson' +p67817 +sa(dp67818 +g25268 +S"L'oeuvre d'Antoine Watteau (volume II)" +p67819 +sg25270 +S'Artist Information (' +p67820 +sg25273 +S'French, 1684 - 1721' +p67821 +sg25275 +S'(artist after)' +p67822 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005adb.jpg' +p67823 +sg25267 +g27 +sa(dp67824 +g25267 +g27 +sg25268 +S'Toleware Sugar Bowl' +p67825 +sg25270 +S'Charles Henning' +p67826 +sa(dp67827 +g25267 +g27 +sg25268 +S'Toleware Syrup Pot' +p67828 +sg25270 +S'Mildred Ford' +p67829 +sa(dp67830 +g25267 +g27 +sg25268 +S'Toleware Syrup Pot' +p67831 +sg25270 +S'Mildred Ford' +p67832 +sa(dp67833 +g25267 +g27 +sg25268 +S'Toleware Syrup Pitcher' +p67834 +sg25270 +S'Grace Halpin' +p67835 +sa(dp67836 +g25267 +g27 +sg25268 +S"Nurses' Lamp" +p67837 +sg25270 +S'Frank Gray' +p67838 +sa(dp67839 +g25267 +g27 +sg25268 +S'Lamp and Water Heater' +p67840 +sg25270 +S'Max Soltmann' +p67841 +sa(dp67842 +g25267 +g27 +sg25268 +S'Portable Crock Filter' +p67843 +sg25270 +S'Eugene Bartz' +p67844 +sa(dp67845 +g25267 +g27 +sg25268 +S'Lunch Box' +p67846 +sg25270 +S'Edward L. Loper' +p67847 +sa(dp67848 +g25267 +g27 +sg25268 +S'Lunch Box' +p67849 +sg25270 +S'Edward L. Loper' +p67850 +sa(dp67851 +g25267 +g27 +sg25268 +S'Tin Oblong Box' +p67852 +sg25270 +S'George File' +p67853 +sa(dp67854 +g25273 +S'(artist after)' +p67855 +sg25267 +g27 +sg25275 +S'\n' +p67856 +sg25268 +S'Prints for "Cris et costumes de Paris"' +p67857 +sg25270 +S'Artist Information (' +p67858 +sa(dp67859 +g25267 +g27 +sg25268 +S'Toleware Box' +p67860 +sg25270 +S'Charles Henning' +p67861 +sa(dp67862 +g25267 +g27 +sg25268 +S'Box with Lid' +p67863 +sg25270 +S'Max Soltmann' +p67864 +sa(dp67865 +g25267 +g27 +sg25268 +S'Tin Cup and Pitcher' +p67866 +sg25270 +S'Max Soltmann' +p67867 +sa(dp67868 +g25267 +g27 +sg25268 +S'Toleware Mug' +p67869 +sg25270 +S'Samuel O. Klein' +p67870 +sa(dp67871 +g25267 +g27 +sg25268 +S'Tin Mug' +p67872 +sg25270 +S'Lucille Manson' +p67873 +sa(dp67874 +g25267 +g27 +sg25268 +S'Toleware Tray' +p67875 +sg25270 +S'Betty Jacob' +p67876 +sa(dp67877 +g25267 +g27 +sg25268 +S'Toleware Tray' +p67878 +sg25270 +S'Mildred Ford' +p67879 +sa(dp67880 +g25267 +g27 +sg25268 +S'Toleware Tin Tray' +p67881 +sg25270 +S'Eugene Shellady' +p67882 +sa(dp67883 +g25267 +g27 +sg25268 +S'Toleware Tray' +p67884 +sg25270 +S'David S. De Vault' +p67885 +sa(dp67886 +g25267 +g27 +sg25268 +S'Toleware Tray' +p67887 +sg25270 +S'Alice Cosgrove' +p67888 +sa(dp67889 +g25268 +S'Le concert agreable' +p67890 +sg25270 +S'Artist Information (' +p67891 +sg25273 +S'(artist after)' +p67892 +sg25275 +S'\n' +p67893 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000974f.jpg' +p67894 +sg25267 +g27 +sa(dp67895 +g25267 +g27 +sg25268 +S'Toleware Bread Tray' +p67896 +sg25270 +S'Mildred Ford' +p67897 +sa(dp67898 +g25267 +g27 +sg25268 +S'Toleware Bread Tray' +p67899 +sg25270 +S'Mildred Ford' +p67900 +sa(dp67901 +g25267 +g27 +sg25268 +S'Toleware Bread Tray' +p67902 +sg25270 +S'Mildred Ford' +p67903 +sa(dp67904 +g25267 +g27 +sg25268 +S'Toleware Metal Teapot' +p67905 +sg25270 +S'Andrew Topolosky' +p67906 +sa(dp67907 +g25267 +g27 +sg25268 +S'Toleware Tin Coffee Pot' +p67908 +sg25270 +S'Jacob Gielens' +p67909 +sa(dp67910 +g25267 +g27 +sg25268 +S'Toleware Tin Tea Caddy' +p67911 +sg25270 +S'Clarence W. Dawson' +p67912 +sa(dp67913 +g25267 +g27 +sg25268 +S'Toleware Tin Tea Caddy' +p67914 +sg25270 +S'Jacob Gielens' +p67915 +sa(dp67916 +g25267 +g27 +sg25268 +S'Toleware Tea Cannister' +p67917 +sg25270 +S'Edward White' +p67918 +sa(dp67919 +g25267 +g27 +sg25268 +S'Toleware Tea Caddy' +p67920 +sg25270 +S'Charles Henning' +p67921 +sa(dp67922 +g25267 +g27 +sg25268 +S'Toleware Tea Caddy' +p67923 +sg25270 +S'Charles Henning' +p67924 +sa(dp67925 +g25268 +S'Le dejeuner anglais' +p67926 +sg25270 +S'Artist Information (' +p67927 +sg25273 +S'(artist after)' +p67928 +sg25275 +S'\n' +p67929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e7c.jpg' +p67930 +sg25267 +g27 +sa(dp67931 +g25267 +g27 +sg25268 +S'Toleware Tea Caddy' +p67932 +sg25270 +S'William Frank' +p67933 +sa(dp67934 +g25267 +g27 +sg25268 +S'Carved Date Stone' +p67935 +sg25270 +S'Leslie Macklem' +p67936 +sa(dp67937 +g25267 +g27 +sg25268 +S'Iron Doorway to Tomb' +p67938 +sg25270 +S'Thomas Byrne' +p67939 +sa(dp67940 +g25267 +g27 +sg25268 +S'Digging Tool' +p67941 +sg25270 +S'Arthur P. Reynolds' +p67942 +sa(dp67943 +g25267 +g27 +sg25268 +S'Marking Tool' +p67944 +sg25270 +S'Harley Kempter' +p67945 +sa(dp67946 +g25267 +g27 +sg25268 +S'Carving for a Tombstone' +p67947 +sg25270 +S'Gordena Jackson' +p67948 +sa(dp67949 +g25267 +g27 +sg25268 +S'Rope Making Tool' +p67950 +sg25270 +S'Emile Cero' +p67951 +sa(dp67952 +g25267 +g27 +sg25268 +S'Tongs' +p67953 +sg25270 +S'Stanley Mazur' +p67954 +sa(dp67955 +g25267 +g27 +sg25268 +S'Ice Tongs' +p67956 +sg25270 +S'Eugene Bartz' +p67957 +sa(dp67958 +g25267 +g27 +sg25268 +S'Tongs' +p67959 +sg25270 +S'Samuel Fineman' +p67960 +sa(dp67961 +g25268 +S'La lecon interrompue' +p67962 +sg25270 +S'Artist Information (' +p67963 +sg25273 +S'(artist after)' +p67964 +sg25275 +S'\n' +p67965 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e7d.jpg' +p67966 +sg25267 +g27 +sa(dp67967 +g25267 +g27 +sg25268 +S'Tongs' +p67968 +sg25270 +S'Pearl Davis' +p67969 +sa(dp67970 +g25267 +g27 +sg25268 +S'Tongs' +p67971 +sg25270 +S'Richard Schoene' +p67972 +sa(dp67973 +g25267 +g27 +sg25268 +S'Tongs' +p67974 +sg25270 +S'Mildred Ford' +p67975 +sa(dp67976 +g25267 +g27 +sg25268 +S'Bread Tray' +p67977 +sg25270 +S'Albert Eyth' +p67978 +sa(dp67979 +g25267 +g27 +sg25268 +S'Tray' +p67980 +sg25270 +S'Grace Halpin' +p67981 +sa(dp67982 +g25267 +g27 +sg25268 +S'Tray' +p67983 +sg25270 +S'Mary Fitzgerald' +p67984 +sa(dp67985 +g25267 +g27 +sg25268 +S'Tray' +p67986 +sg25270 +S'Charles Roadman' +p67987 +sa(dp67988 +g25267 +g27 +sg25268 +S'Tray' +p67989 +sg25270 +S'Charles Henning' +p67990 +sa(dp67991 +g25267 +g27 +sg25268 +S'Bread Tray' +p67992 +sg25270 +S'Mildred Ford' +p67993 +sa(dp67994 +g25267 +g27 +sg25268 +S'Toleware Tray' +p67995 +sg25270 +S'Raymond McGough' +p67996 +sa(dp67997 +g25268 +S'Le roman dangereux' +p67998 +sg25270 +S'Artist Information (' +p67999 +sg25273 +S'(artist after)' +p68000 +sg25275 +S'\n' +p68001 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009711.jpg' +p68002 +sg25267 +g27 +sa(dp68003 +g25267 +g27 +sg25268 +S'Tray' +p68004 +sg25270 +S'Grace Halpin' +p68005 +sa(dp68006 +g25267 +g27 +sg25268 +S'Tray' +p68007 +sg25270 +S'American 20th Century' +p68008 +sa(dp68009 +g25267 +g27 +sg25268 +S'Tin Tray' +p68010 +sg25270 +S'Victor F. Muollo' +p68011 +sa(dp68012 +g25267 +g27 +sg25268 +S'Tombstone' +p68013 +sg25270 +S'Ursula Lauderdale' +p68014 +sa(dp68015 +g25267 +g27 +sg25268 +S'Iron Tomb' +p68016 +sg25270 +S'Thomas Byrne' +p68017 +sa(dp68018 +g25267 +g27 +sg25268 +S'Swing Torch' +p68019 +sg25270 +S'Herman Bader' +p68020 +sa(dp68021 +g25267 +g27 +sg25268 +S'Parade Torch' +p68022 +sg25270 +S'William H. Edwards' +p68023 +sa(dp68024 +g25267 +g27 +sg25268 +S'Torch' +p68025 +sg25270 +S'Ray Price' +p68026 +sa(dp68027 +g25267 +g27 +sg25268 +S"Fireman's Torch" +p68028 +sg25270 +S'Elmer G. Anderson' +p68029 +sa(dp68030 +g25267 +g27 +sg25268 +S"Fireman's Torch" +p68031 +sg25270 +S'Elmer G. Anderson' +p68032 +sa(dp68033 +g25268 +S"La Consolation de l'absence" +p68034 +sg25270 +S'Artist Information (' +p68035 +sg25273 +S'(artist after)' +p68036 +sg25275 +S'\n' +p68037 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e8c.jpg' +p68038 +sg25267 +g27 +sa(dp68039 +g25267 +g27 +sg25268 +S"Fireman's Torch" +p68040 +sg25270 +S'Elmer G. Anderson' +p68041 +sa(dp68042 +g25267 +g27 +sg25268 +S'Toy Automobile' +p68043 +sg25270 +S'Wilbur M Rice' +p68044 +sa(dp68045 +g25267 +g27 +sg25268 +S'Wood Carving of 6 Balls' +p68046 +sg25270 +S'Alf Bruseth' +p68047 +sa(dp68048 +g25267 +g27 +sg25268 +S'Miniature Boat' +p68049 +sg25270 +S'Raoul Du Bois' +p68050 +sa(dp68051 +g25267 +g27 +sg25268 +S'Doll Carriage' +p68052 +sg25270 +S'Walter W. Jennings' +p68053 +sa(dp68054 +g25267 +g27 +sg25268 +S'Toy Wagon' +p68055 +sg25270 +S'Francis Law Durand' +p68056 +sa(dp68057 +g25267 +g27 +sg25268 +S'Doll Buggy and Rug' +p68058 +sg25270 +S'Randolph F. Miller' +p68059 +sa(dp68060 +g25267 +S'Doll furniture and accessories must be included among the toy replicas of the\n adult world. This doll buggy, of about 1867, is made of wood and is styled like\n a cabriolet, or horse carriage. The hood, or calash, is fringed.\n ' +p68061 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002e0.jpg' +p68062 +sg25268 +S'Doll Buggy' +p68063 +sg25270 +S'Eugene Croe' +p68064 +sa(dp68065 +g25267 +g27 +sg25268 +S'Doll Buggy' +p68066 +sg25270 +S'Alfonso Moreno' +p68067 +sa(dp68068 +g25267 +g27 +sg25268 +S'Doll Carriage' +p68069 +sg25270 +S'Walter W. Jennings' +p68070 +sa(dp68071 +g25268 +S'Les deux confidantes' +p68072 +sg25270 +S'Artist Information (' +p68073 +sg25273 +S'(artist after)' +p68074 +sg25275 +S'\n' +p68075 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000973f.jpg' +p68076 +sg25267 +g27 +sa(dp68077 +g25267 +g27 +sg25268 +S'Baby Buggy' +p68078 +sg25270 +S'Floyd R. Sharp' +p68079 +sa(dp68080 +g25267 +g27 +sg25268 +S'Turtle Shell Bureau' +p68081 +sg25270 +S'Esther Molina' +p68082 +sa(dp68083 +g25267 +g27 +sg25268 +S"Doll's Dresser" +p68084 +sg25270 +S'Dana Bartlett' +p68085 +sa(dp68086 +g25267 +g27 +sg25268 +S'Doll Furniture - Sideboard' +p68087 +sg25270 +S'Ellen Duncan' +p68088 +sa(dp68089 +g25267 +g27 +sg25268 +S'Toy Trunk' +p68090 +sg25270 +S'Edith Magnette' +p68091 +sa(dp68092 +g25267 +g27 +sg25268 +S'Toy Cupboard' +p68093 +sg25270 +S'Richard Taylor' +p68094 +sa(dp68095 +g25267 +g27 +sg25268 +S"Childs's Dresser" +p68096 +sg25270 +S'Edward L. Loper' +p68097 +sa(dp68098 +g25267 +g27 +sg25268 +S'Toy Chair' +p68099 +sg25270 +S'Mary E. Humes' +p68100 +sa(dp68101 +g25267 +g27 +sg25268 +S'Doll Settee' +p68102 +sg25270 +S'Austin L. Davison' +p68103 +sa(dp68104 +g25267 +g27 +sg25268 +S'Doll Chair' +p68105 +sg25270 +S'Julie C. Brush' +p68106 +sa(dp68107 +g25268 +S'Le moineau de lesbie' +p68108 +sg25270 +S'Artist Information (' +p68109 +sg25273 +S'(artist after)' +p68110 +sg25275 +S'\n' +p68111 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009709.jpg' +p68112 +sg25267 +g27 +sa(dp68113 +g25267 +g27 +sg25268 +S'Doll Sofa' +p68114 +sg25270 +S'Julie C. Brush' +p68115 +sa(dp68116 +g25267 +g27 +sg25268 +S'Doll Chair' +p68117 +sg25270 +S'Julie C. Brush' +p68118 +sa(dp68119 +g25267 +g27 +sg25268 +S'Toy Chair' +p68120 +sg25270 +S'Edith Magnette' +p68121 +sa(dp68122 +g25267 +g27 +sg25268 +S"Child's Settee" +p68123 +sg25270 +S'Mina Lowry' +p68124 +sa(dp68125 +g25267 +g27 +sg25268 +S'Doll Furniture - Chair' +p68126 +sg25270 +S'Ellen Duncan' +p68127 +sa(dp68128 +g25267 +g27 +sg25268 +S'Toy Chair' +p68129 +sg25270 +S'Edith Magnette' +p68130 +sa(dp68131 +g25267 +g27 +sg25268 +S'Doll Furniture - Table' +p68132 +sg25270 +S'Ellen Duncan' +p68133 +sa(dp68134 +g25267 +g27 +sg25268 +S"Doll's Suit and Hat" +p68135 +sg25270 +S'Louis Maldarelli' +p68136 +sa(dp68137 +g25267 +g27 +sg25268 +S'Doll Dress' +p68138 +sg25270 +S'Mary E. Humes' +p68139 +sa(dp68140 +g25267 +g27 +sg25268 +S"Doll's Dress" +p68141 +sg25270 +S'Lillian Stahl' +p68142 +sa(dp68143 +g25268 +S'Venus et les amours' +p68144 +sg25270 +S'Artist Information (' +p68145 +sg25273 +S'(artist after)' +p68146 +sg25275 +S'\n' +p68147 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009707.jpg' +p68148 +sg25267 +g27 +sa(dp68149 +g25267 +g27 +sg25268 +S"Doll's Jacket" +p68150 +sg25270 +S'Chris Makrenos' +p68151 +sa(dp68152 +g25267 +g27 +sg25268 +S"Doll's Cotton Petticoat" +p68153 +sg25270 +S'Evelyn Bailey' +p68154 +sa(dp68155 +g25267 +g27 +sg25268 +S"Doll's Dress" +p68156 +sg25270 +S'Edith Towner' +p68157 +sa(dp68158 +g25267 +g27 +sg25268 +S'Doll and Wardrobe' +p68159 +sg25270 +S'Mina Lowry' +p68160 +sa(dp68161 +g25267 +g27 +sg25268 +S'Doll and Wardrobe' +p68162 +sg25270 +S'Mina Lowry' +p68163 +sa(dp68164 +g25267 +g27 +sg25268 +S"Doll's Dress and Shift" +p68165 +sg25270 +S'Rosalia Lane' +p68166 +sa(dp68167 +g25267 +g27 +sg25268 +S'Doll Parasol' +p68168 +sg25270 +S'Ernest A. Towers, Jr.' +p68169 +sa(dp68170 +g25267 +g27 +sg25268 +S'Lace on Wax Doll' +p68171 +sg25270 +S'Edward L. Loper' +p68172 +sa(dp68173 +g25267 +g27 +sg25268 +S"Doll's Hat" +p68174 +sg25270 +S'Marie Alain' +p68175 +sa(dp68176 +g25267 +g27 +sg25268 +S"Doll's Straw Bonnet" +p68177 +sg25270 +S'Orville Cline' +p68178 +sa(dp68179 +g25268 +S'Les moeurs du temps' +p68180 +sg25270 +S'Artist Information (' +p68181 +sg25273 +S'(artist after)' +p68182 +sg25275 +S'\n' +p68183 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f8e.jpg' +p68184 +sg25267 +g27 +sa(dp68185 +g25267 +g27 +sg25268 +S"Doll's Gingham Sunbonnet" +p68186 +sg25270 +S'Bertha Semple' +p68187 +sa(dp68188 +g25267 +g27 +sg25268 +S'Toleware Coffee Pot' +p68189 +sg25270 +S'Charles Henning' +p68190 +sa(dp68191 +g25267 +g27 +sg25268 +S'Toleware Tin Teapot' +p68192 +sg25270 +S'Beverly Chichester' +p68193 +sa(dp68194 +g25267 +g27 +sg25268 +S'Toleware Tin Coffee Pot' +p68195 +sg25270 +S'William Frank' +p68196 +sa(dp68197 +g25267 +g27 +sg25268 +S'Toleware Coffee Pot' +p68198 +sg25270 +S'Max Soltmann' +p68199 +sa(dp68200 +g25267 +g27 +sg25268 +S'Toleware Coffee Pot' +p68201 +sg25270 +S'William L. Antrim' +p68202 +sa(dp68203 +g25267 +g27 +sg25268 +S'Toleware Coffee Pot' +p68204 +sg25270 +S'Lelah Nelson' +p68205 +sa(dp68206 +g25267 +g27 +sg25268 +S'Toleware Coffee Pot' +p68207 +sg25270 +S'Charles T. Smith' +p68208 +sa(dp68209 +g25267 +g27 +sg25268 +S'Toleware Teapot' +p68210 +sg25270 +S'Ernest Graham' +p68211 +sa(dp68212 +g25267 +g27 +sg25268 +S'Toleware Teapot' +p68213 +sg25270 +S'J. Howard Iams' +p68214 +sa(dp68215 +g25268 +S'Le Bon Example' +p68216 +sg25270 +S'Artist Information (' +p68217 +sg25273 +S'(artist after)' +p68218 +sg25275 +S'\n' +p68219 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096b7.jpg' +p68220 +sg25267 +g27 +sa(dp68221 +g25267 +g27 +sg25268 +S'Toleware Document Box' +p68222 +sg25270 +S'J. Howard Iams' +p68223 +sa(dp68224 +g25267 +g27 +sg25268 +S'Toleware Document Box' +p68225 +sg25270 +S'Charles Henning' +p68226 +sa(dp68227 +g25267 +g27 +sg25268 +S'Election Torch' +p68228 +sg25270 +S'Ivar Julius' +p68229 +sa(dp68230 +g25267 +g27 +sg25268 +S'Tombstone' +p68231 +sg25270 +S'Robert Clark' +p68232 +sa(dp68233 +g25267 +g27 +sg25268 +S'Tray' +p68234 +sg25270 +S'Natalie Thompson' +p68235 +sa(dp68236 +g25267 +g27 +sg25268 +S'Fruit Tray' +p68237 +sg25270 +S'Elmer G. Anderson' +p68238 +sa(dp68239 +g25267 +g27 +sg25268 +S'Apple Dish' +p68240 +sg25270 +S'Mildred E. Bent' +p68241 +sa(dp68242 +g25267 +g27 +sg25268 +S'Bread Tray' +p68243 +sg25270 +S'Mildred Ford' +p68244 +sa(dp68245 +g25267 +g27 +sg25268 +S'Bread Tray' +p68246 +sg25270 +S'Elmer G. Anderson' +p68247 +sa(dp68248 +g25267 +g27 +sg25268 +S'Teapot' +p68249 +sg25270 +S'George File' +p68250 +sa(dp68251 +g25268 +S'Mademoiselle Sa Soeur' +p68252 +sg25270 +S'Artist Information (' +p68253 +sg25273 +S'(artist after)' +p68254 +sg25275 +S'\n' +p68255 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096b8.jpg' +p68256 +sg25267 +g27 +sa(dp68257 +g25267 +g27 +sg25268 +S'Toleware Tin Box' +p68258 +sg25270 +S'Frank Gray' +p68259 +sa(dp68260 +g25267 +g27 +sg25268 +S'Chest' +p68261 +sg25270 +S'Thomas Watts' +p68262 +sa(dp68263 +g25267 +S'Toleware is painted tinplate. Also called "japanned-ware," it originated in\n the Orient, spread to Europe, and then to America, where its height of popularity\n was reached in the nineteenth century. Because toleware was prized for its decoration,\n it was often presented as a wedding or birthday gift and reserved for display.\n Like this box, toleware was generally painted with a black asphaltum varnish that\n imitated lacquer. The decoration was executed with oil paint in bright yellow,\n greens, blues, and oranges. Fruits, flowers, and ornamental swirls provided common\n motifs. This document box was a type used for string money, jewels, and valuable\n papers. It was probably made in the early nineteenth century at Stevens Plains,\n Maine, a center for toleware manufacture in that period. The box is painted with\n asphaltum and decorated with a type of oil color associated Connecticut jappaners.\n The box has been attributed to Oliver Buckley, a japanner who was trained in Connecticut\n and settled in Stevens Plains. His designs usually feature a round spot of orange\n with brushstrokes overlaid. Leaf forms fill the areas between spots. The handle\n of the box is made of cast brass and is bolted to the lid with two round brass\n plates.\n ' +p68264 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000306.jpg' +p68265 +sg25268 +S'Toleware Box' +p68266 +sg25270 +S'John H. Tercuzzi' +p68267 +sa(dp68268 +g25267 +g27 +sg25268 +S'Toy Grocery Store' +p68269 +sg25270 +S'Raoul Du Bois' +p68270 +sa(dp68271 +g25267 +g27 +sg25268 +S"Basket Maker's Store" +p68272 +sg25270 +S'John Fisk' +p68273 +sa(dp68274 +g25267 +g27 +sg25268 +S'Toy Stove' +p68275 +sg25270 +S'Philip Johnson' +p68276 +sa(dp68277 +g25267 +g27 +sg25268 +S'Stove' +p68278 +sg25270 +S'Al Curry' +p68279 +sa(dp68280 +g25267 +g27 +sg25268 +S'Toy Stove' +p68281 +sg25270 +S'Mina Lowry' +p68282 +sa(dp68283 +g25267 +g27 +sg25268 +S"Child's Toy Iron Kettle" +p68284 +sg25270 +S'William O. Fletcher' +p68285 +sa(dp68286 +g25267 +g27 +sg25268 +S'Toy Stove' +p68287 +sg25270 +S'Philip Johnson' +p68288 +sa(dp68289 +g25268 +S'Mlle. Salle' +p68290 +sg25270 +S'Artist Information (' +p68291 +sg25273 +S'(artist after)' +p68292 +sg25275 +S'\n' +p68293 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a00097e6.jpg' +p68294 +sg25267 +g27 +sa(dp68295 +g25267 +g27 +sg25268 +S"Baby's Rattle" +p68296 +sg25270 +S'Columbus Simpson' +p68297 +sa(dp68298 +g25267 +g27 +sg25268 +S'Toy China Set' +p68299 +sg25270 +S'Albert Camilli' +p68300 +sa(dp68301 +g25267 +g27 +sg25268 +S"Doll's Trunk" +p68302 +sg25270 +S'Mina Lowry' +p68303 +sa(dp68304 +g25267 +g27 +sg25268 +S'Toy School House' +p68305 +sg25270 +S'Eugene La Foret' +p68306 +sa(dp68307 +g25267 +g27 +sg25268 +S'Doll Bed' +p68308 +sg25270 +S'Therkel Anderson' +p68309 +sa(dp68310 +g25267 +g27 +sg25268 +S'Doll Cradle' +p68311 +sg25270 +S'Leslie Macklem' +p68312 +sa(dp68313 +g25267 +g27 +sg25268 +S'Two Cradles with Dolls' +p68314 +sg25270 +S'John Fisk' +p68315 +sa(dp68316 +g25267 +g27 +sg25268 +S"Doll's Cradle" +p68317 +sg25270 +S'Geoffrey Holt' +p68318 +sa(dp68319 +g25267 +g27 +sg25268 +S"Doll's Cradle" +p68320 +sg25270 +S'William F. Morris' +p68321 +sa(dp68322 +g25267 +g27 +sg25268 +S'Doll Bed' +p68323 +sg25270 +S'Dana Bartlett' +p68324 +sa(dp68325 +g25268 +S'Le matin' +p68326 +sg25270 +S'Artist Information (' +p68327 +sg25273 +S'(artist after)' +p68328 +sg25275 +S'\n' +p68329 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a00097f0.jpg' +p68330 +sg25267 +g27 +sa(dp68331 +g25267 +g27 +sg25268 +S"Doll's Cradle" +p68332 +sg25270 +S'Joe Brennan' +p68333 +sa(dp68334 +g25267 +g27 +sg25268 +S"Doll's Bed" +p68335 +sg25270 +S'Francis Law Durand' +p68336 +sa(dp68337 +g25267 +g27 +sg25268 +S"Doll's Bed" +p68338 +sg25270 +S'Max Fernekes' +p68339 +sa(dp68340 +g25267 +g27 +sg25268 +S'Doll Cradle' +p68341 +sg25270 +S'Therkel Anderson' +p68342 +sa(dp68343 +g25267 +g27 +sg25268 +S'Doll Cradle' +p68344 +sg25270 +S'Julie C. Brush' +p68345 +sa(dp68346 +g25267 +g27 +sg25268 +S'Candle Box' +p68347 +sg25270 +S'Carl Strehlau' +p68348 +sa(dp68349 +g25267 +g27 +sg25268 +S'1829 Show Towel' +p68350 +sg25270 +S'Frances Lichten' +p68351 +sa(dp68352 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005519.jpg' +p68353 +sg25268 +S'Dower Chest' +p68354 +sg25270 +S'American 20th Century' +p68355 +sa(dp68356 +g25267 +g27 +sg25268 +S'Doll' +p68357 +sg25270 +S'Mina Lowry' +p68358 +sa(dp68359 +g25267 +g27 +sg25268 +S'Doll' +p68360 +sg25270 +S'Raoul Du Bois' +p68361 +sa(dp68362 +g25268 +S'Le midi' +p68363 +sg25270 +S'Artist Information (' +p68364 +sg25273 +S'(artist after)' +p68365 +sg25275 +S'\n' +p68366 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a00097ef.jpg' +p68367 +sg25267 +g27 +sa(dp68368 +g25267 +g27 +sg25268 +S'Doll with China Head' +p68369 +sg25270 +S'Edith Towner' +p68370 +sa(dp68371 +g25267 +g27 +sg25268 +S'Doll - "Carrie"' +p68372 +sg25270 +S'Hal Blakeley' +p68373 +sa(dp68374 +g25267 +g27 +sg25268 +S'Doll - "Retta Hervey"' +p68375 +sg25270 +S'Edith Towner' +p68376 +sa(dp68377 +g25267 +g27 +sg25268 +S'Doll - "Florence"' +p68378 +sg25270 +S'Artist Information (' +p68379 +sa(dp68380 +g25267 +g27 +sg25268 +S'Doll and Costume' +p68381 +sg25270 +S'Mary E. Humes' +p68382 +sa(dp68383 +g25267 +g27 +sg25268 +S'Doll' +p68384 +sg25270 +S'Grace Halpin' +p68385 +sa(dp68386 +g25267 +S"A major category of dolls is the bisque type. Bisque is a ceramic material \r\n with a hard, mat surface. Often used for the doll's head alone, the quality of \r\n bisque work varies considerably. The tiny doll is only four inches high. It has \r\n real hair and wears a lavender dress of cotton trimmed with lace, a purple sash, and purple bows at the shoulders. The cotton turban is black and turquoise; the blue shoes are of self material, that is, the same material as the doll's legs. Popular in America in the 1860s, most bisque dolls were made in Europe, especially in France and Germany. Some examples such as this one may date from an earlier \r\n period.\n " +p68387 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000314.jpg' +p68388 +sg25268 +S'Doll of Bisque' +p68389 +sg25270 +S'Edith Towner' +p68390 +sa(dp68391 +g25267 +g27 +sg25268 +S'Doll - "Felicia"' +p68392 +sg25270 +S'Edith Towner' +p68393 +sa(dp68394 +g25267 +g27 +sg25268 +S'Quaker Doll' +p68395 +sg25270 +S'Bertha Semple' +p68396 +sa(dp68397 +g25267 +g27 +sg25268 +S'Quaker Doll' +p68398 +sg25270 +S'Jacob Gielens' +p68399 +sa(dp68400 +g25268 +S"L'apres-diner" +p68401 +sg25270 +S'Artist Information (' +p68402 +sg25273 +S'(artist after)' +p68403 +sg25275 +S'\n' +p68404 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a00097ee.jpg' +p68405 +sg25267 +g27 +sa(dp68406 +g25267 +g27 +sg25268 +S'Doll with China Head' +p68407 +sg25270 +S'Lelah Nelson' +p68408 +sa(dp68409 +g25267 +g27 +sg25268 +S'Boy Doll' +p68410 +sg25270 +S'Eugene Croe' +p68411 +sa(dp68412 +g25267 +g27 +sg25268 +S'Doll - "Emily"' +p68413 +sg25270 +S'Rex F. Bush' +p68414 +sa(dp68415 +g25267 +g27 +sg25268 +S'Doll with Bisque Head' +p68416 +sg25270 +S'Dorothy Harris' +p68417 +sa(dp68418 +g25267 +g27 +sg25268 +S'Doll with Bisque Head' +p68419 +sg25270 +S'Beverly Chichester' +p68420 +sa(dp68421 +g25267 +g27 +sg25268 +S'China Headed Negro Doll' +p68422 +sg25270 +S'Henry Murphy' +p68423 +sa(dp68424 +g25267 +g27 +sg25268 +S'Model Ship "Idlewild"' +p68425 +sg25270 +S'Frank Gray' +p68426 +sa(dp68427 +g25267 +g27 +sg25268 +S'Doll Carriage' +p68428 +sg25270 +S'James M. Lawson' +p68429 +sa(dp68430 +g25267 +g27 +sg25268 +S'Doll Go-Cart' +p68431 +sg25270 +S'David Ramage' +p68432 +sa(dp68433 +g25267 +g27 +sg25268 +S'Doll Buggy' +p68434 +sg25270 +S'Richard Barnett' +p68435 +sa(dp68436 +g25268 +S'La soiree' +p68437 +sg25270 +S'Artist Information (' +p68438 +sg25273 +S'(artist after)' +p68439 +sg25275 +S'\n' +p68440 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a00097ed.jpg' +p68441 +sg25267 +g27 +sa(dp68442 +g25267 +g27 +sg25268 +S'Doll Coach' +p68443 +sg25270 +S'Ernest A. Towers, Jr.' +p68444 +sa(dp68445 +g25267 +g27 +sg25268 +S'Baby Carriage' +p68446 +sg25270 +S'Rolland Ayres' +p68447 +sa(dp68448 +g25267 +g27 +sg25268 +S'Doll Carriage' +p68449 +sg25270 +S'Rex F. Bush' +p68450 +sa(dp68451 +g25267 +g27 +sg25268 +S'Go-Cart and Doll' +p68452 +sg25270 +S'Beverly Chichester' +p68453 +sa(dp68454 +g25267 +g27 +sg25268 +S"Doll's Dress" +p68455 +sg25270 +S'Lillian Causey' +p68456 +sa(dp68457 +g25267 +g27 +sg25268 +S'Doll Wardrobe' +p68458 +sg25270 +S'Dorothy Harris' +p68459 +sa(dp68460 +g25267 +g27 +sg25268 +S"Doll's Dress" +p68461 +sg25270 +S'Marie Alain' +p68462 +sa(dp68463 +g25267 +g27 +sg25268 +S'Doll Dress' +p68464 +sg25270 +S'James McLellan' +p68465 +sa(dp68466 +g25267 +g27 +sg25268 +S'Doll Cradle' +p68467 +sg25270 +S'Orville Cline' +p68468 +sa(dp68469 +g25267 +g27 +sg25268 +S'Doll Cradle' +p68470 +sg25270 +S'Clarence W. Dawson' +p68471 +sa(dp68472 +g25268 +S'La Declaration' +p68473 +sg25270 +S'Artist Information (' +p68474 +sg25273 +S'(artist after)' +p68475 +sg25275 +S'\n' +p68476 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000964c.jpg' +p68477 +sg25267 +g27 +sa(dp68478 +g25267 +g27 +sg25268 +S'Doll Bed' +p68479 +sg25270 +S'Lillian Causey' +p68480 +sa(dp68481 +g25267 +g27 +sg25268 +S'Doll - "Guenevere"' +p68482 +sg25270 +S'Rex F. Bush' +p68483 +sa(dp68484 +g25267 +g27 +sg25268 +S'Doll with Grey Wig - "Matilda"' +p68485 +sg25270 +S'Rex F. Bush' +p68486 +sa(dp68487 +g25267 +g27 +sg25268 +S'Doll - "Antoinette"' +p68488 +sg25270 +S'Eugene Croe' +p68489 +sa(dp68490 +g25267 +g27 +sg25268 +S'Doll' +p68491 +sg25270 +S'Stella Mosher' +p68492 +sa(dp68493 +g25267 +g27 +sg25268 +S'Doll - "Grace"' +p68494 +sg25270 +S'Eugene Croe' +p68495 +sa(dp68496 +g25267 +S"One type of bisque used for dolls was known as "Parian" bisque; this was usually an untinted soft paste or hard paste porcelain. This doll, named "Cornelia," has head, arms, and legs of Parian bisque, with some color added to the cheeks. The doll's body is cloth. The date of the doll is 1876, when Parian dolls with molded hairdos were popular. Wigged dolls' heads, also being made at this time, were principally of tinted bisque. Note the ribbon of self material in her hair. She wears a velvet dress and machine-embroidered cotton underwear. Her eyes are of glass.\n " +p68497 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002e9.jpg' +p68498 +sg25268 +S'Doll--"Cornelia"' +p68499 +sg25270 +S'Anne Colman' +p68500 +sa(dp68501 +g25267 +g27 +sg25268 +S'Doll - "Lulu"' +p68502 +sg25270 +S'Mary E. Humes' +p68503 +sa(dp68504 +g25267 +g27 +sg25268 +S'Doll - "Ann Blairs"' +p68505 +sg25270 +S'Mary E. Humes' +p68506 +sa(dp68507 +g25267 +g27 +sg25268 +S'Doll - "Hattie"' +p68508 +sg25270 +S'Edith Towner' +p68509 +sa(dp68510 +g25268 +S'Le Serment' +p68511 +sg25270 +S'Artist Information (' +p68512 +sg25273 +S'(artist after)' +p68513 +sg25275 +S'\n' +p68514 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000964b.jpg' +p68515 +sg25267 +g27 +sa(dp68516 +g25267 +S'This doll is named "Hanna Hitch." She is a black china-head doll made in Germany \n and dating from 1876. She has kid arms and a cloth body. The doll\'s costume is \n of gray-green alpaca with a plaid taffeta turban. Black china-head dolls are rare; \n the heads for such dolls were more often made of bisque or other materials. Germany \n was a leader in the production of china dolls, especially after 1870 when factory \n methods were introduced. A great number of china and bisque dolls in the nineteenth \n century came from Germany because dollmakers were being subsidized by the government \n and could sell the dolls cheaply.\n ' +p68517 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000317.jpg' +p68518 +sg25268 +S'Doll--"Hannah Hitch"' +p68519 +sg25270 +S'Edith Towner' +p68520 +sa(dp68521 +g25267 +g27 +sg25268 +S'Doll - "Lilla Rosella Hatch"' +p68522 +sg25270 +S'Hal Blakeley' +p68523 +sa(dp68524 +g25267 +g27 +sg25268 +S'Doll' +p68525 +sg25270 +S'Lillian Causey' +p68526 +sa(dp68527 +g25267 +g27 +sg25268 +S'Pen Wiper Doll' +p68528 +sg25270 +S'Eugene C. Miller' +p68529 +sa(dp68530 +g25267 +g27 +sg25268 +S'Doll - "Abbie"' +p68531 +sg25270 +S'Edith Towner' +p68532 +sa(dp68533 +g25267 +g27 +sg25268 +S'Doll - "Annie Sampson"' +p68534 +sg25270 +S'Edith Towner' +p68535 +sa(dp68536 +g25267 +g27 +sg25268 +S'Doll - "Mitio"' +p68537 +sg25270 +S'Edith Towner' +p68538 +sa(dp68539 +g25267 +g27 +sg25268 +S'Doll - "Eugenia"' +p68540 +sg25270 +S'Edith Towner' +p68541 +sa(dp68542 +g25267 +g27 +sg25268 +S'Doll - "Minerva Pratt"' +p68543 +sg25270 +S'Josephine C. Romano' +p68544 +sa(dp68545 +g25267 +g27 +sg25268 +S'Doll - "Rose Bates"' +p68546 +sg25270 +S'Josephine C. Romano' +p68547 +sa(dp68548 +g25268 +S"La Fontaine d'Amour (The Fountain of Love)" +p68549 +sg25270 +S'Artist Information (' +p68550 +sg25273 +S'(artist after)' +p68551 +sg25275 +S'\n' +p68552 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009747.jpg' +p68553 +sg25267 +g27 +sa(dp68554 +g25267 +S'This is a rare and interesting peddler doll; it represents the era of street \n vendors, who sold items of every imaginable description, from handmade lace to \n kitchen utensils. This china-headed doll, dating about 1860, carries a basket \n filled with notions. Such dolls were especially popular during the late eighteenth \n and nineteenth century in England, where peddlers constantly hawked their wares \n on the streets.\n ' +p68555 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000316.jpg' +p68556 +sg25268 +S'Peddler Doll' +p68557 +sg25270 +S'Mina Lowry' +p68558 +sa(dp68559 +g25267 +g27 +sg25268 +S'Doll and Dress' +p68560 +sg25270 +S'Mary E. Humes' +p68561 +sa(dp68562 +g25267 +g27 +sg25268 +S'Doll and Costume' +p68563 +sg25270 +S'Mary E. Humes' +p68564 +sa(dp68565 +g25267 +g27 +sg25268 +S'Doll - "Mary"' +p68566 +sg25270 +S'Josephine C. Romano' +p68567 +sa(dp68568 +g25267 +g27 +sg25268 +S'Costume Doll' +p68569 +sg25270 +S'Al Curry' +p68570 +sa(dp68571 +g25267 +g27 +sg25268 +S'Doll - "Flora Richardson"' +p68572 +sg25270 +S'Edith Towner' +p68573 +sa(dp68574 +g25267 +g27 +sg25268 +S'Doll' +p68575 +sg25270 +S'Francis Law Durand' +p68576 +sa(dp68577 +g25267 +g27 +sg25268 +S'Doll' +p68578 +sg25270 +S'Mina Lowry' +p68579 +sa(dp68580 +g25267 +g27 +sg25268 +S'Walking Doll (Mechanical)' +p68581 +sg25270 +S'Mina Lowry' +p68582 +sa(dp68583 +g25267 +g27 +sg25268 +S'Shaker Doll' +p68584 +sg25270 +S'Mary Fitzgerald' +p68585 +sa(dp68586 +g25268 +S"Le Songe d'Amour (Love's Dream)" +p68587 +sg25270 +S'Artist Information (' +p68588 +sg25273 +S'(artist after)' +p68589 +sg25275 +S'\n' +p68590 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009748.jpg' +p68591 +sg25267 +g27 +sa(dp68592 +g25267 +g27 +sg25268 +S'Doll' +p68593 +sg25270 +S'Mina Lowry' +p68594 +sa(dp68595 +g25267 +g27 +sg25268 +S'Doll' +p68596 +sg25270 +S'Mina Lowry' +p68597 +sa(dp68598 +g25267 +g27 +sg25268 +S'German China Head Doll' +p68599 +sg25270 +S'American 20th Century' +p68600 +sa(dp68601 +g25267 +g27 +sg25268 +S'Doll' +p68602 +sg25270 +S'Jacob Gielens' +p68603 +sa(dp68604 +g25267 +g27 +sg25268 +S'Primitive Doll' +p68605 +sg25270 +S'Percival Jenner' +p68606 +sa(dp68607 +g25267 +g27 +sg25268 +S'Rag Doll' +p68608 +sg25270 +S'Jane Iverson' +p68609 +sa(dp68610 +g25267 +S"Handmade dolls were among the many crafts produced by people of the Spanish \r\n colonial southwest. This rag doll, possibly dating from 1795, was made by a California Indian woman for the original owner, a Mrs. Villa. The doll may be seen as an Indian's interpretation of Spanish colonial women. In the early days of the United States, southwest arts and crafts were often the work of Indian artisans.\n " +p68611 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000310.jpg' +p68612 +sg25268 +S'Doll' +p68613 +sg25270 +S'Bertha Semple' +p68614 +sa(dp68615 +g25267 +g27 +sg25268 +S'Doll' +p68616 +sg25270 +S'Melita Hofmann' +p68617 +sa(dp68618 +g25267 +g27 +sg25268 +S'Rag Doll "Susie"' +p68619 +sg25270 +S'Bertha Semple' +p68620 +sa(dp68621 +g25267 +g27 +sg25268 +S'Rag Doll Bodice' +p68622 +sg25270 +S'Cecily Edwards' +p68623 +sa(dp68624 +g25268 +S"Le Chiffre d'amour" +p68625 +sg25270 +S'Artist Information (' +p68626 +sg25273 +S'(artist after)' +p68627 +sg25275 +S'\n' +p68628 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e76.jpg' +p68629 +sg25267 +g27 +sa(dp68630 +g25267 +S'Boy dolls have never been common. This doll, named "Johnnie," dates from the \r\n early nineteenth century. He wears a blue challis suit and finely hand-tucked \r\n linens. His body is of heavy cotton cloth with hair and features embroidered \r\n in yarn. His expression suggests that he may have been modeled after a specific \r\n little boy.\n ' +p68631 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000367.jpg' +p68632 +sg25268 +S'Rag Doll "Johnnie"' +p68633 +sg25270 +S'Vera Van Voris' +p68634 +sa(dp68635 +g25267 +g27 +sg25268 +S'Nude Doll' +p68636 +sg25270 +S'Max Fernekes' +p68637 +sa(dp68638 +g25267 +g27 +sg25268 +S'Primitive Doll' +p68639 +sg25270 +S'Percival Jenner' +p68640 +sa(dp68641 +g25267 +g27 +sg25268 +S'Doll' +p68642 +sg25270 +S'Ray Price' +p68643 +sa(dp68644 +g25267 +g27 +sg25268 +S'Rag Doll' +p68645 +sg25270 +S'Jane Iverson' +p68646 +sa(dp68647 +g25267 +g27 +sg25268 +S'Rag Doll' +p68648 +sg25270 +S'American 20th Century' +p68649 +sa(dp68650 +g25267 +g27 +sg25268 +S'Rag Doll' +p68651 +sg25270 +S'Verna Tallman' +p68652 +sa(dp68653 +g25267 +g27 +sg25268 +S'Rag Doll' +p68654 +sg25270 +S'Cecily Edwards' +p68655 +sa(dp68656 +g25267 +g27 +sg25268 +S'Indian Dolls' +p68657 +sg25270 +S'Jane Iverson' +p68658 +sa(dp68659 +g25267 +g27 +sg25268 +S'China Doll' +p68660 +sg25270 +S'Adele Brooks' +p68661 +sa(dp68662 +g25268 +S'La Bascule' +p68663 +sg25270 +S'Artist Information (' +p68664 +sg25273 +S'(artist after)' +p68665 +sg25275 +S'\n' +p68666 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009655.jpg' +p68667 +sg25267 +g27 +sa(dp68668 +g25267 +g27 +sg25268 +S'Doll' +p68669 +sg25270 +S'Mina Lowry' +p68670 +sa(dp68671 +g25267 +g27 +sg25268 +S'Doll - "Nancy Lou"' +p68672 +sg25270 +S'Rex F. Bush' +p68673 +sa(dp68674 +g25267 +g27 +sg25268 +S'Doll with China Head' +p68675 +sg25270 +S'Mary Fitzgerald' +p68676 +sa(dp68677 +g25267 +g27 +sg25268 +S'Doll' +p68678 +sg25270 +S'Anne Colman' +p68679 +sa(dp68680 +g25267 +g27 +sg25268 +S'Doll' +p68681 +sg25270 +S'Stanley Mazur' +p68682 +sa(dp68683 +g25267 +g27 +sg25268 +S'China-Headed Doll' +p68684 +sg25270 +S'Beverly Chichester' +p68685 +sa(dp68686 +g25267 +g27 +sg25268 +S'Doll' +p68687 +sg25270 +S'Mina Lowry' +p68688 +sa(dp68689 +g25267 +g27 +sg25268 +S'Mechanical Walking Doll' +p68690 +sg25270 +S'Bertha Semple' +p68691 +sa(dp68692 +g25267 +g27 +sg25268 +S'Walking Doll' +p68693 +sg25270 +S'Jane Iverson' +p68694 +sa(dp68695 +g25267 +g27 +sg25268 +S'Doll - "Narcissa Savery"' +p68696 +sg25270 +S'Josephine C. Romano' +p68697 +sa(dp68698 +g25268 +S'Colin Maillard' +p68699 +sg25270 +S'Artist Information (' +p68700 +sg25273 +S'(artist after)' +p68701 +sg25275 +S'\n' +p68702 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009656.jpg' +p68703 +sg25267 +g27 +sa(dp68704 +g25267 +S"The 1860's began a golden age for dolls. It was also during this decade that \n some interesting changes in doll-making occurred and a number of new patents were \n obtained. Before 1860, for example, dolls were not jointed and therefore usually \n not able to sit down. This charming mechanical doll of the early 1860s mot only \n sits on her three-wheeled iron velocipede, but strikes the bell in front of her \n as the tricycle moves. The rear bell chimes with the forward movement. The doll \n is dressed in a black velvet jacket, a silk blouse trimmed with white lace at \n the neck and sleeves, and a pink and white striped skirt. Notice the jaunty til \n of the satin military-style hat adorned with pink ribbons and braid.\n " +p68705 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003c0.jpg' +p68706 +sg25268 +S'Doll on Velocipede' +p68707 +sg25270 +S'Mina Lowry' +p68708 +sa(dp68709 +g25267 +g27 +sg25268 +S'Doll' +p68710 +sg25270 +S'Harry Grossen' +p68711 +sa(dp68712 +g25267 +g27 +sg25268 +S'Doll - "Delight Bates"' +p68713 +sg25270 +S'Edith Towner' +p68714 +sa(dp68715 +g25267 +g27 +sg25268 +S'Doll - "Hepzibah"' +p68716 +sg25270 +S'Josephine C. Romano' +p68717 +sa(dp68718 +g25267 +g27 +sg25268 +S'Dolls - "Molly and Polly"' +p68719 +sg25270 +S'Edith Towner' +p68720 +sa(dp68721 +g25267 +g27 +sg25268 +S'Pioneer Doll' +p68722 +sg25270 +S'Verna Tallman' +p68723 +sa(dp68724 +g25267 +g27 +sg25268 +S'Doll - "Rachel"' +p68725 +sg25270 +S'Hal Blakeley' +p68726 +sa(dp68727 +g25267 +g27 +sg25268 +S'Doll' +p68728 +sg25270 +S'Josephine C. Romano' +p68729 +sa(dp68730 +g25267 +g27 +sg25268 +S'Doll - "Sarah"' +p68731 +sg25270 +S'Edith Towner' +p68732 +sa(dp68733 +g25267 +g27 +sg25268 +S'Doll - "Lydia Sherman"' +p68734 +sg25270 +S'Josephine C. Romano' +p68735 +sa(dp68736 +g25268 +S'Le Baiser \xc3\xa0 la Derob\xc3\xa9e (The Stolen Kiss)' +p68737 +sg25270 +S'Artist Information (' +p68738 +sg25273 +S'(artist after)' +p68739 +sg25275 +S'\n' +p68740 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009746.jpg' +p68741 +sg25267 +g27 +sa(dp68742 +g25267 +g27 +sg25268 +S'Quaker Doll' +p68743 +sg25270 +S'Max Fernekes' +p68744 +sa(dp68745 +g25267 +g27 +sg25268 +S'Baltimore Doll' +p68746 +sg25270 +S'Walter Praefke' +p68747 +sa(dp68748 +g25267 +g27 +sg25268 +S'Doll' +p68749 +sg25270 +S'Walter Praefke' +p68750 +sa(dp68751 +g25267 +g27 +sg25268 +S'Doll' +p68752 +sg25270 +S'Eugene Croe' +p68753 +sa(dp68754 +g25267 +S"This doll is one of the loveliest of the so-called "milliner's models." The \r\n term is actually a misnomer, for such dolls were meant to be used as toys. Many \r\n early nineteenth-century paintings show children holding such dolls. There may \r\n have been actual milliner's models before the toy doll of that name came into use, \r\n but we do not know how close the resemblance between the two may have been. This \r\n doll is dated about 1834. The costume is simple and beautifully made; the hairstyle \r\n is that of a young girl of the period. Pantalettes are typical for this sort of \r\n doll.\n " +p68755 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002ec.jpg' +p68756 +sg25268 +S'Doll--"Betsy"' +p68757 +sg25270 +S'Eugene Croe' +p68758 +sa(dp68759 +g25267 +g27 +sg25268 +S'Doll' +p68760 +sg25270 +S'Rex F. Bush' +p68761 +sa(dp68762 +g25267 +g27 +sg25268 +S'Doll and Costume' +p68763 +sg25270 +S'Mary E. Humes' +p68764 +sa(dp68765 +g25267 +g27 +sg25268 +S'Doll' +p68766 +sg25270 +S'Mary E. Humes' +p68767 +sa(dp68768 +g25267 +g27 +sg25268 +S'Doll' +p68769 +sg25270 +S'Beverly Chichester' +p68770 +sa(dp68771 +g25267 +g27 +sg25268 +S'Negro Woman Doll' +p68772 +sg25270 +S'Bertha Semple' +p68773 +sa(dp68774 +g25268 +S'Le Verrou' +p68775 +sg25270 +S'Artist Information (' +p68776 +sg25273 +S'(artist after)' +p68777 +sg25275 +S'\n' +p68778 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096a0.jpg' +p68779 +sg25267 +g27 +sa(dp68780 +g25267 +g27 +sg25268 +S'Doll - "Martha"' +p68781 +sg25270 +S'Rex F. Bush' +p68782 +sa(dp68783 +g25267 +g27 +sg25268 +S'Doll' +p68784 +sg25270 +S'Lillian Causey' +p68785 +sa(dp68786 +g25267 +g27 +sg25268 +S'Doll' +p68787 +sg25270 +S'Jane Iverson' +p68788 +sa(dp68789 +g25267 +g27 +sg25268 +S'Greiner Doll "Minerva"' +p68790 +sg25270 +S'Rex F. Bush' +p68791 +sa(dp68792 +g25267 +g27 +sg25268 +S'Doll - "Hepzabah"' +p68793 +sg25270 +S'Eugene Croe' +p68794 +sa(dp68795 +g25267 +g27 +sg25268 +S'Doll - "Drucilla"' +p68796 +sg25270 +S'Rex F. Bush' +p68797 +sa(dp68798 +g25267 +g27 +sg25268 +S'Doll' +p68799 +sg25270 +S'Christabel Scrymser' +p68800 +sa(dp68801 +g25267 +g27 +sg25268 +S'Costume Doll' +p68802 +sg25270 +S'Al Curry' +p68803 +sa(dp68804 +g25267 +g27 +sg25268 +S'Doll' +p68805 +sg25270 +S'Helen Bronson' +p68806 +sa(dp68807 +g25267 +S"This beautiful wax doll of about 1871 is named "Belle Hervey." She has real \r\n hair embedded in her wax head. This was an expensive process, characteristic only \r\n of luxury dolls. Belle's arms and legs are also wax, while her torso is made of \r\n cloth. Her eyes are glass. The overdress with postillion is of black taffeta trimmed \r\n with pale pink silk ribbon and black lace; there are pink buttons on the basque, \r\n or bodice, and the shoes are bright red and buttoned. Her underclothes are trimmed \r\n with bands of tucked muslin and lace; there is a pink edge on the dainty lace hose.\n " +p68808 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000318.jpg' +p68809 +sg25268 +S'Doll--"Belle Hervey"' +p68810 +sg25270 +S'Edith Towner' +p68811 +sa(dp68812 +g25268 +S'La Rose mal defendue (The Poorly Defended Rose)' +p68813 +sg25270 +S'Philibert-Louis Debucourt' +p68814 +sg25273 +S'etching and engraving in black' +p68815 +sg25275 +S'1791' +p68816 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096ca.jpg' +p68817 +sg25267 +g27 +sa(dp68818 +g25267 +g27 +sg25268 +S'Doll' +p68819 +sg25270 +S'Walter Praefke' +p68820 +sa(dp68821 +g25267 +g27 +sg25268 +S'Doll - "Ida Stebbins"' +p68822 +sg25270 +S'Edith Towner' +p68823 +sa(dp68824 +g25267 +g27 +sg25268 +S'Doll' +p68825 +sg25270 +S'Eugene Croe' +p68826 +sa(dp68827 +g25267 +g27 +sg25268 +S'Doll' +p68828 +sg25270 +S'Marion Curtiss' +p68829 +sa(dp68830 +g25267 +g27 +sg25268 +S'Doll - "Abigail"' +p68831 +sg25270 +S'Eugene Croe' +p68832 +sa(dp68833 +g25267 +g27 +sg25268 +S'Doll' +p68834 +sg25270 +S'Raoul Du Bois' +p68835 +sa(dp68836 +g25267 +g27 +sg25268 +S'Doll - "Lily May"' +p68837 +sg25270 +S'Eugene Croe' +p68838 +sa(dp68839 +g25267 +g27 +sg25268 +S'Fashion Doll' +p68840 +sg25270 +S'Gwyneth King' +p68841 +sa(dp68842 +g25267 +g27 +sg25268 +S'Wax Headed Doll' +p68843 +sg25270 +S'Dorothy Brennan' +p68844 +sa(dp68845 +g25267 +g27 +sg25268 +S'Wax Doll' +p68846 +sg25270 +S'Mary E. Humes' +p68847 +sa(dp68848 +g25268 +S'La tricoteuse endormie' +p68849 +sg25270 +S'Artist Information (' +p68850 +sg25273 +S'(artist after)' +p68851 +sg25275 +S'\n' +p68852 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f90.jpg' +p68853 +sg25267 +g27 +sa(dp68854 +g25267 +g27 +sg25268 +S'Wax Doll' +p68855 +sg25270 +S'Mary E. Humes' +p68856 +sa(dp68857 +g25267 +g27 +sg25268 +S'Wax Doll' +p68858 +sg25270 +S'Edna C. Rex' +p68859 +sa(dp68860 +g25267 +g27 +sg25268 +S'Doll in Costume' +p68861 +sg25270 +S'Gwyneth King' +p68862 +sa(dp68863 +g25267 +g27 +sg25268 +S'Doll - "Sally Taber"' +p68864 +sg25270 +S'Edith Towner' +p68865 +sa(dp68866 +g25267 +g27 +sg25268 +S'Wooden Doll' +p68867 +sg25270 +S'Jane Iverson' +p68868 +sa(dp68869 +g25267 +g27 +sg25268 +S'Doll in the "Thimble Holder"' +p68870 +sg25270 +S'Eugene Croe' +p68871 +sa(dp68872 +g25267 +g27 +sg25268 +S'Gingham Doll' +p68873 +sg25270 +S'William Frank' +p68874 +sa(dp68875 +g25267 +g27 +sg25268 +S'Fashion Doll' +p68876 +sg25270 +S'Mina Lowry' +p68877 +sa(dp68878 +g25267 +g27 +sg25268 +S'Carved Wood Doll' +p68879 +sg25270 +S'Edith Towner' +p68880 +sa(dp68881 +g25267 +g27 +sg25268 +S'Doll' +p68882 +sg25270 +S'Raoul Du Bois' +p68883 +sa(dp68884 +g25268 +S'Flore a son lever' +p68885 +sg25270 +S'Artist Information (' +p68886 +sg25273 +S'(artist after)' +p68887 +sg25275 +S'\n' +p68888 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f14.jpg' +p68889 +sg25267 +g27 +sa(dp68890 +g25267 +g27 +sg25268 +S'Doll' +p68891 +sg25270 +S'Mina Lowry' +p68892 +sa(dp68893 +g25267 +g27 +sg25268 +S'Doll' +p68894 +sg25270 +S'Raoul Du Bois' +p68895 +sa(dp68896 +g25267 +g27 +sg25268 +S'Wooden Doll' +p68897 +sg25270 +S'Evelyn Bailey' +p68898 +sa(dp68899 +g25267 +g27 +sg25268 +S'Jointed Wooden Dolls' +p68900 +sg25270 +S'Arelia Arbo' +p68901 +sa(dp68902 +g25267 +g27 +sg25268 +S'Jointed Wooden Dolls' +p68903 +sg25270 +S'Jane Iverson' +p68904 +sa(dp68905 +g25267 +g27 +sg25268 +S'Wooden Doll' +p68906 +sg25270 +S'Marie Lutrell' +p68907 +sa(dp68908 +g25267 +g27 +sg25268 +S'Doll' +p68909 +sg25270 +S'John Sullivan' +p68910 +sa(dp68911 +g25267 +S"Early American dolls are shown in a wide variety of costumes. This fine doll \n of the eighteenth century represents a Quaker woman. The doll's head, arms, and \n legs are made of carved and painted wood. Throughout history, wood has been one \n of the most frequently used materials for making dolls. For many dollmakers, it \n was both readily available and inexpensive.\n " +p68912 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000313.jpg' +p68913 +sg25268 +S'Doll' +p68914 +sg25270 +S'Mina Lowry' +p68915 +sa(dp68916 +g25267 +g27 +sg25268 +S'Doll' +p68917 +sg25270 +S'Lucille Lacoursiere' +p68918 +sa(dp68919 +g25267 +g27 +sg25268 +S'Doll - "Charlotte Blankenship"' +p68920 +sg25270 +S'Edith Towner' +p68921 +sa(dp68922 +g25268 +S'Charlotte Corday' +p68923 +sg25270 +S'Angelique Allais' +p68924 +sg25273 +S'color aquatint' +p68925 +sg25275 +S'unknown date\n' +p68926 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f16.jpg' +p68927 +sg25267 +g27 +sa(dp68928 +g25267 +g27 +sg25268 +S'Doll - "Eleanor Cabot"' +p68929 +sg25270 +S'Edith Towner' +p68930 +sa(dp68931 +g25267 +g27 +sg25268 +S'Doll - "Betsey Paine"' +p68932 +sg25270 +S'Josephine C. Romano' +p68933 +sa(dp68934 +g25267 +g27 +sg25268 +S'Doll - "Nellie Bates"' +p68935 +sg25270 +S'Artist Information (' +p68936 +sa(dp68937 +g25267 +g27 +sg25268 +S'Wax Doll' +p68938 +sg25270 +S'Edward L. Loper' +p68939 +sa(dp68940 +g25267 +g27 +sg25268 +S'Doll - "Lydia"' +p68941 +sg25270 +S'Anne Colman' +p68942 +sa(dp68943 +g25267 +S"The fashions and tastes of a particular era may often be reflected in its dolls. This Parian bisque doll, dated between 1840 and 1860, wears a costume of sprigged wool challis edged with coordinated braid; the bonnet is velvet edged with black fringe. The style dates from about 1850 when patterned fabrics such as this were fashionable. The doll's hairstyle imitates one popular with children between the 1830s and 1860s.\n " +p68944 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002ea.jpg' +p68945 +sg25268 +S'Doll with China Head' +p68946 +sg25270 +S'Mary Porter' +p68947 +sa(dp68948 +g25267 +g27 +sg25268 +S'Doll - "Amelia"' +p68949 +sg25270 +S'Eugene Croe' +p68950 +sa(dp68951 +g25267 +g27 +sg25268 +S'Three Dolls' +p68952 +sg25270 +S'Eugene Croe' +p68953 +sa(dp68954 +g25267 +g27 +sg25268 +S'Doll - "Mabel Ellis"' +p68955 +sg25270 +S'Stanley Mazur' +p68956 +sa(dp68957 +g25267 +g27 +sg25268 +S'China Headed Doll' +p68958 +sg25270 +S'Lelah Nelson' +p68959 +sa(dp68960 +g25268 +S'Le Tambourin' +p68961 +sg25270 +S'Artist Information (' +p68962 +sg25273 +S'(artist after)' +p68963 +sg25275 +S'\n' +p68964 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e9b.jpg' +p68965 +sg25267 +g27 +sa(dp68966 +g25267 +g27 +sg25268 +S'Doll' +p68967 +sg25270 +S'Lillian Causey' +p68968 +sa(dp68969 +g25267 +g27 +sg25268 +S'Doll' +p68970 +sg25270 +S'Cora Parker' +p68971 +sa(dp68972 +g25267 +g27 +sg25268 +S'China Headed Doll' +p68973 +sg25270 +S'William Paul Childers' +p68974 +sa(dp68975 +g25267 +S'This doll has a fine china head. She wears a black bonnet over a close-fitting \n white cap. Her dress of taupe silk has a full-gathered skirt. A white shawl is \n pinned at the waist with an organdy kerchief under it. Three white petticoats and \n pantalettes are under her dress, and she wears high black shoes. This doll dates \n from the 1840s or 1850s, when china dolls were becoming popular. Unlike the all-cloth \n dolls that were often homemade in early America, china and bisque dolls were \n produced in factories.\n ' +p68976 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000315.jpg' +p68977 +sg25268 +S'Quaker Costume Doll' +p68978 +sg25270 +S'Charlotte Angus' +p68979 +sa(dp68980 +g25267 +g27 +sg25268 +S'Quaker Doll' +p68981 +sg25270 +S'Gwyneth King' +p68982 +sa(dp68983 +g25267 +g27 +sg25268 +S'Doll - "Polly"' +p68984 +sg25270 +S'William Bos' +p68985 +sa(dp68986 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p68987 +sg25270 +S'Einar Heiberg' +p68988 +sa(dp68989 +g25267 +g27 +sg25268 +S'Doll' +p68990 +sg25270 +S'Kapousouz' +p68991 +sa(dp68992 +g25267 +g27 +sg25268 +S'Doll' +p68993 +sg25270 +S'Kapousouz' +p68994 +sa(dp68995 +g25267 +g27 +sg25268 +S'Wooden Doll' +p68996 +sg25270 +S'Bertha Semple' +p68997 +sa(dp68998 +g25268 +S'La jeunesse' +p68999 +sg25270 +S'Artist Information (' +p69000 +sg25273 +S'(artist after)' +p69001 +sg25275 +S'\n' +p69002 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a00097ea.jpg' +p69003 +sg25267 +g27 +sa(dp69004 +g25267 +g27 +sg25268 +S'Doll' +p69005 +sg25270 +S'Henry Murphy' +p69006 +sa(dp69007 +g25267 +g27 +sg25268 +S'Wooden Doll' +p69008 +sg25270 +S'Bertha Semple' +p69009 +sa(dp69010 +g25267 +g27 +sg25268 +S'Kachina Doll' +p69011 +sg25270 +S'Jane Iverson' +p69012 +sa(dp69013 +g25267 +g27 +sg25268 +S'Dancing Doll' +p69014 +sg25270 +S'Selma Sandler' +p69015 +sa(dp69016 +g25267 +g27 +sg25268 +S'Dancing Doll' +p69017 +sg25270 +S'Selma Sandler' +p69018 +sa(dp69019 +g25267 +g27 +sg25268 +S'Old American Wooden Doll' +p69020 +sg25270 +S'Marie Lutrell' +p69021 +sa(dp69022 +g25267 +g27 +sg25268 +S'Carved Bust: Doll' +p69023 +sg25270 +S'Robert Pohle' +p69024 +sa(dp69025 +g25267 +g27 +sg25268 +S'Doll - "Phoebe"' +p69026 +sg25270 +S'Eugene Croe' +p69027 +sa(dp69028 +g25267 +g27 +sg25268 +S'Dolls' +p69029 +sg25270 +S'Rosalia Lane' +p69030 +sa(dp69031 +g25267 +g27 +sg25268 +S'Jointed Dutch Doll' +p69032 +sg25270 +S'Beverly Chichester' +p69033 +sa(dp69034 +g25268 +S'La vieillesse' +p69035 +sg25270 +S'Artist Information (' +p69036 +sg25273 +S'(artist after)' +p69037 +sg25275 +S'\n' +p69038 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a00097e9.jpg' +p69039 +sg25267 +g27 +sa(dp69040 +g25267 +g27 +sg25268 +S'Cree Indian Dolls' +p69041 +sg25270 +S'Jane Iverson' +p69042 +sa(dp69043 +g25267 +g27 +sg25268 +S'Dairy Maid Doll' +p69044 +sg25270 +S'Beverly Chichester' +p69045 +sa(dp69046 +g25267 +g27 +sg25268 +S'Doll - "Cynthia"' +p69047 +sg25270 +S'Anne Colman' +p69048 +sa(dp69049 +g25267 +g27 +sg25268 +S'Doll' +p69050 +sg25270 +S'Clinton Myers' +p69051 +sa(dp69052 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000be/a000be74.jpg' +p69053 +sg25268 +S'Hand Puppet "Judy" and Child' +p69054 +sg25270 +S'George File' +p69055 +sa(dp69056 +g25267 +g27 +sg25268 +S'Doll - "Clarissa"' +p69057 +sg25270 +S'Rex F. Bush' +p69058 +sa(dp69059 +g25267 +g27 +sg25268 +S'Wooden Doll - "Sadie Berman"' +p69060 +sg25270 +S'Sadie Berman' +p69061 +sa(dp69062 +g25267 +g27 +sg25268 +S'Dancing Doll' +p69063 +sg25270 +S'Mina Lowry' +p69064 +sa(dp69065 +g25267 +g27 +sg25268 +S'Doll - "Symphronia"' +p69066 +sg25270 +S'Eugene Croe' +p69067 +sa(dp69068 +g25267 +S"Papier-mâché was a widely used substance for making dolls. \r\n Papier-mâché itself is a composition made from paper pulp combined \r\n with various other substances. Dolls made of this material reached a height of \r\n popularity in the mid-nineteenth century. They first appeared much earlier, however. \r\n Edouard Fournier's \n " +p69069 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002ee.jpg' +p69070 +sg25268 +S'Doll--"Nina"' +p69071 +sg25270 +S'Renee A. Monfalcone' +p69072 +sa(dp69073 +g25268 +S'Les oublies' +p69074 +sg25270 +S'Nicolas Schencker' +p69075 +sg25273 +S'hand-colored engraving' +p69076 +sg25275 +S'unknown date\n' +p69077 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eeef.jpg' +p69078 +sg25267 +g27 +sa(dp69079 +g25267 +g27 +sg25268 +S'Doll' +p69080 +sg25270 +S'Florian Rokita' +p69081 +sa(dp69082 +g25267 +S"In 1862, Enuch Rice Morrison obtained patents in both England and America for \r\n an "Autoperipatetikos," or walking doll. The walking mechanism was operated by \r\n a clock spring. The underside of the mechanism is illustrated at the upper left. \r\n It is encased in a wooden base attached to the doll with papier-mâché \r\n backwheel pivots. The heads of walking dolls were made in a variety of materials; \r\n this one is Parian bisque. The arms are of kid. The doll's black moiré \r\n dress is trimmed with black lace.\n " +p69083 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000319.jpg' +p69084 +sg25268 +S'Walking Doll' +p69085 +sg25270 +S'Beverly Chichester' +p69086 +sa(dp69087 +g25267 +g27 +sg25268 +S'Woman Doll in Buckskin' +p69088 +sg25270 +S'George File' +p69089 +sa(dp69090 +g25267 +S'Here is a handmade cloth doll representing a grandmother knitting a red wool \n sock. The doll was made by a southern gentlewoman who supported herself after \n the Civil War by making fine cloth dolls. This was the one-thousandth doll made \n by this woman.\n ' +p69091 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000030c.jpg' +p69092 +sg25268 +S'Doll' +p69093 +sg25270 +S'Jane Iverson' +p69094 +sa(dp69095 +g25267 +g27 +sg25268 +S'Doll' +p69096 +sg25270 +S'Florence Milto' +p69097 +sa(dp69098 +g25267 +S'Hundreds of dolls made by American Indians have survived in public and private collections. These two Apache women in voluminous, bright cotton dresses were made in Arizona around 1900. They were passed along from Anna Kittare of San Carlos, Arizona, the original owner, until they found a permanent home in Massachusetts at the Wenham Historical Society. The dolls have cloth bodies and yarn hair.\n ' +p69099 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000364.jpg' +p69100 +sg25268 +S'Dolls (Apache Women)' +p69101 +sg25270 +S'American 20th Century' +p69102 +sa(dp69103 +g25267 +g27 +sg25268 +S'Rag Doll' +p69104 +sg25270 +S'Frances Lichten' +p69105 +sa(dp69106 +g25267 +g27 +sg25268 +S'Doll - "Aggie"' +p69107 +sg25270 +S'Eugene Croe' +p69108 +sa(dp69109 +g25267 +g27 +sg25268 +S'Doll' +p69110 +sg25270 +S'Marie Famularo' +p69111 +sa(dp69112 +g25267 +g27 +sg25268 +S'Doll' +p69113 +sg25270 +S'Erwin Stenzel' +p69114 +sa(dp69115 +g25268 +S'La cache-cache' +p69116 +sg25270 +S'Nicolas Schencker' +p69117 +sg25273 +S'hand-colored engraving' +p69118 +sg25275 +S'unknown date\n' +p69119 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eef0.jpg' +p69120 +sg25267 +g27 +sa(dp69121 +g25267 +g27 +sg25268 +S'Nut Head Doll #2' +p69122 +sg25270 +S'William Frank' +p69123 +sa(dp69124 +g25267 +S'Carved nuts formed the heads of many early dolls. Different kinds of nuts were \n used: hazelnuts, walnuts, hickory nuts, and even cashews. These dolls were expendable \n and could be discarded when the children began to tire of them. This example \n represents a colonial gentlemen with elegant clothes and a wise expression. The \n doll is from Wisconsin and was made in the eighteenth century.\n ' +p69125 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000030e.jpg' +p69126 +sg25268 +S'Nut Head Doll' +p69127 +sg25270 +S'Jacob Gielens' +p69128 +sa(dp69129 +g25267 +g27 +sg25268 +S'Doorstop Doll' +p69130 +sg25270 +S'Rosa Burger' +p69131 +sa(dp69132 +g25267 +g27 +sg25268 +S'Doll' +p69133 +sg25270 +S'Raoul Du Bois' +p69134 +sa(dp69135 +g25267 +g27 +sg25268 +S'Doll' +p69136 +sg25270 +S'Verna Tallman' +p69137 +sa(dp69138 +g25267 +g27 +sg25268 +S'Doll' +p69139 +sg25270 +S'Mina Lowry' +p69140 +sa(dp69141 +g25267 +g27 +sg25268 +S'Doll' +p69142 +sg25270 +S'Francis Law Durand' +p69143 +sa(dp69144 +g25267 +g27 +sg25268 +S'Christmas Tree Doll' +p69145 +sg25270 +S'Mina Lowry' +p69146 +sa(dp69147 +g25267 +g27 +sg25268 +S'Plate of Dolls' +p69148 +sg25270 +S'Jane Iverson' +p69149 +sa(dp69150 +g25267 +g27 +sg25268 +S'Doll' +p69151 +sg25270 +S'Jane Iverson' +p69152 +sa(dp69153 +g25268 +S'Le Depart du Courrier' +p69154 +sg25270 +S'Artist Information (' +p69155 +sg25273 +S'(artist after)' +p69156 +sg25275 +S'\n' +p69157 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009653.jpg' +p69158 +sg25267 +g27 +sa(dp69159 +g25267 +g27 +sg25268 +S'Clay Indian Doll - "Saguna"' +p69160 +sg25270 +S'Jane Iverson' +p69161 +sa(dp69162 +g25267 +g27 +sg25268 +S'Costume Doll' +p69163 +sg25270 +S'Jane Iverson' +p69164 +sa(dp69165 +g25267 +g27 +sg25268 +S'Doll' +p69166 +sg25270 +S'Mina Lowry' +p69167 +sa(dp69168 +g25267 +g27 +sg25268 +S'Rag Doll Nurse and Baby' +p69169 +sg25270 +S'Mina Lowry' +p69170 +sa(dp69171 +g25267 +g27 +sg25268 +S'Rag Doll' +p69172 +sg25270 +S'Verna Tallman' +p69173 +sa(dp69174 +g25267 +g27 +sg25268 +S'Wax Group (Detail)' +p69175 +sg25270 +S'Mina Lowry' +p69176 +sa(dp69177 +g25267 +g27 +sg25268 +S'Pewter Doll' +p69178 +sg25270 +S'William Frank' +p69179 +sa(dp69180 +g25267 +g27 +sg25268 +S'Doll' +p69181 +sg25270 +S'Kapousouz' +p69182 +sa(dp69183 +g25267 +g27 +sg25268 +S'Leather Bodied Doll' +p69184 +sg25270 +S'Jane Iverson' +p69185 +sa(dp69186 +g25267 +g27 +sg25268 +S'Doll' +p69187 +sg25270 +S'Carl Buergerniss' +p69188 +sa(dp69189 +g25268 +S"L'Arrivee du Courrier" +p69190 +sg25270 +S'Artist Information (' +p69191 +sg25273 +S'(artist after)' +p69192 +sg25275 +S'\n' +p69193 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009654.jpg' +p69194 +sg25267 +g27 +sa(dp69195 +g25267 +g27 +sg25268 +S'Doll' +p69196 +sg25270 +S'Jane Iverson' +p69197 +sa(dp69198 +g25267 +g27 +sg25268 +S'Wooden Doll' +p69199 +sg25270 +S'Jane Iverson' +p69200 +sa(dp69201 +g25267 +g27 +sg25268 +S'Doll' +p69202 +sg25270 +S'Jacob Gielens' +p69203 +sa(dp69204 +g25267 +g27 +sg25268 +S'Doll' +p69205 +sg25270 +S'Max Fernekes' +p69206 +sa(dp69207 +g25267 +g27 +sg25268 +S'Doll' +p69208 +sg25270 +S'Kapousouz' +p69209 +sa(dp69210 +g25267 +g27 +sg25268 +S'Doll' +p69211 +sg25270 +S'Raoul Du Bois' +p69212 +sa(dp69213 +g25267 +g27 +sg25268 +S'Doll' +p69214 +sg25270 +S'Helen Bronson' +p69215 +sa(dp69216 +g25267 +S'This apple-head trio was designed and made in North Carolina about 1892. \n Apple-head dolls probably originated with the Iroquois Indians. The expression \n on the face was produced by pinching the surface of the apple when it began to \n shrink.\n ' +p69217 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000030f.jpg' +p69218 +sg25268 +S'American Dolls' +p69219 +sg25270 +S'Jane Iverson' +p69220 +sa(dp69221 +g25267 +g27 +sg25268 +S'Indian Doll - Winnipeg Brave' +p69222 +sg25270 +S'Jane Iverson' +p69223 +sa(dp69224 +g25267 +g27 +sg25268 +S'Wax Group' +p69225 +sg25270 +S'Mina Lowry' +p69226 +sa(dp69227 +g25268 +S"L'enfance" +p69228 +sg25270 +S'Artist Information (' +p69229 +sg25273 +S'(artist after)' +p69230 +sg25275 +S'\n' +p69231 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a00097e8.jpg' +p69232 +sg25267 +g27 +sa(dp69233 +g25267 +g27 +sg25268 +S'Doll' +p69234 +sg25270 +S'Frances Lichten' +p69235 +sa(dp69236 +g25267 +g27 +sg25268 +S'Doll' +p69237 +sg25270 +S'Lillian Causey' +p69238 +sa(dp69239 +g25267 +g27 +sg25268 +S'"Dutch" Doll' +p69240 +sg25270 +S'Beverly Chichester' +p69241 +sa(dp69242 +g25267 +g27 +sg25268 +S'Fort Dearborn Doll' +p69243 +sg25270 +S'Wayne White' +p69244 +sa(dp69245 +g25267 +g27 +sg25268 +S'Wooden Doll' +p69246 +sg25270 +S'Beverly Chichester' +p69247 +sa(dp69248 +g25267 +g27 +sg25268 +S'Doll' +p69249 +sg25270 +S'Hans Mangelsdorf' +p69250 +sa(dp69251 +g25267 +g27 +sg25268 +S'Doll - "Adeline"' +p69252 +sg25270 +S'Eugene Croe' +p69253 +sa(dp69254 +g25267 +g27 +sg25268 +S'Doll - "Martha Ann"' +p69255 +sg25270 +S'Anne Colman' +p69256 +sa(dp69257 +g25267 +g27 +sg25268 +S'Dalmatian' +p69258 +sg25270 +S'Betty Fuerst' +p69259 +sa(dp69260 +g25267 +g27 +sg25268 +S'Toy Horse' +p69261 +sg25270 +S'Frank Budash' +p69262 +sa(dp69263 +g25268 +S'Le Reine annoncant a Mmme. de Bellegarde des juges et la liberte de son mari en mai 1' +p69264 +sg25270 +S'Artist Information (' +p69265 +sg25273 +S'(artist after)' +p69266 +sg25275 +S'\n' +p69267 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009703.jpg' +p69268 +sg25267 +g27 +sa(dp69269 +g25267 +g27 +sg25268 +S'Toy Horse' +p69270 +sg25270 +S'Selma Sandler' +p69271 +sa(dp69272 +g25267 +g27 +sg25268 +S'Toy Horse' +p69273 +sg25270 +S'Mina Lowry' +p69274 +sa(dp69275 +g25267 +g27 +sg25268 +S'Toy Wooden Horse' +p69276 +sg25270 +S'David Ramage' +p69277 +sa(dp69278 +g25267 +g27 +sg25268 +S'Horse' +p69279 +sg25270 +S'Einar Heiberg' +p69280 +sa(dp69281 +g25267 +g27 +sg25268 +S'Horse' +p69282 +sg25270 +S'Selma Sandler' +p69283 +sa(dp69284 +g25267 +g27 +sg25268 +S'Salem Dolls' +p69285 +sg25270 +S'Beverly Chichester' +p69286 +sa(dp69287 +g25267 +g27 +sg25268 +S'Paper Doll' +p69288 +sg25270 +S'Beverly Chichester' +p69289 +sa(dp69290 +g25267 +g27 +sg25268 +S'Toy Shetland Pony' +p69291 +sg25270 +S'Nicholas Acampora' +p69292 +sa(dp69293 +g25267 +g27 +sg25268 +S'Carved Toy Horse' +p69294 +sg25270 +S'Hester Duany' +p69295 +sa(dp69296 +g25267 +g27 +sg25268 +S'Horse' +p69297 +sg25270 +S'James Baare Turnbull' +p69298 +sa(dp69299 +g25268 +S"L'enlevement nocturne" +p69300 +sg25270 +S'Artist Information (' +p69301 +sg25273 +S'(artist after)' +p69302 +sg25275 +S'\n' +p69303 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009742.jpg' +p69304 +sg25267 +g27 +sa(dp69305 +g25267 +g27 +sg25268 +S'Horse' +p69306 +sg25270 +S'Selma Sandler' +p69307 +sa(dp69308 +g25267 +g27 +sg25268 +S'Toy Horse' +p69309 +sg25270 +S'Arsen Maralian' +p69310 +sa(dp69311 +g25267 +g27 +sg25268 +S'Paper Doll (Boy)' +p69312 +sg25270 +S'Beverly Chichester' +p69313 +sa(dp69314 +g25267 +g27 +sg25268 +S'Knitted Doll "Duke"' +p69315 +sg25270 +S'Verna Tallman' +p69316 +sa(dp69317 +g25267 +g27 +sg25268 +S'Rag Doll - "Tilly"' +p69318 +sg25270 +S'Rex F. Bush' +p69319 +sa(dp69320 +g25267 +g27 +sg25268 +S'Knitted Doll' +p69321 +sg25270 +S'Jane Iverson' +p69322 +sa(dp69323 +g25267 +g27 +sg25268 +S'Rag Doll "Billy"' +p69324 +sg25270 +S'Rex F. Bush' +p69325 +sa(dp69326 +g25267 +g27 +sg25268 +S'Knitted Doll with Flag' +p69327 +sg25270 +S'Verna Tallman' +p69328 +sa(dp69329 +g25267 +g27 +sg25268 +S'Knitted Doll' +p69330 +sg25270 +S'Jane Iverson' +p69331 +sa(dp69332 +g25267 +g27 +sg25268 +S'Corn Husk Doll' +p69333 +sg25270 +S'Jacob Gielens' +p69334 +sa(dp69335 +g25268 +S'Painting' +p69336 +sg25270 +S'Rosalba Carriera' +p69337 +sg25273 +S'pastel' +p69338 +sg25275 +S'1720/1725' +p69339 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005c/a0005cec.jpg' +p69340 +sg25267 +g27 +sa(dp69341 +g25268 +S'La fuite a dessein' +p69342 +sg25270 +S'Artist Information (' +p69343 +sg25273 +S'(artist)' +p69344 +sg25275 +S'\n' +p69345 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f12.jpg' +p69346 +sg25267 +g27 +sa(dp69347 +g25267 +S'The range of materials used to make dolls shows great ingenuity. In the \n eighteenth and early nineteenth centuries, a number of American dolls were made \n from cornhusks and corncobs. This cornhusk doll was made about 1895 in Essex \n County, Massachusetts. The husk forms the head, limbs, and clothes; cornsilk \n provides the hair. Cornhusk dolls may have been invented by the early settlers \n themselves or copied from the Indians. Improvised, handmade dolls of various \n materials are a tradition in America. Common in the early days of our country, \n homemade dolls are still found in areas where the commercially produced type \n is not easily affordable.\n ' +p69348 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000030d.jpg' +p69349 +sg25268 +S'Corn Husk Doll' +p69350 +sg25270 +S'Jane Iverson' +p69351 +sa(dp69352 +g25267 +g27 +sg25268 +S'Corn Husk Doll on Horse' +p69353 +sg25270 +S'Wilbur M Rice' +p69354 +sa(dp69355 +g25267 +g27 +sg25268 +S'Corn Husk Doll' +p69356 +sg25270 +S'Wilbur M Rice' +p69357 +sa(dp69358 +g25267 +g27 +sg25268 +S'Indian Doll Group' +p69359 +sg25270 +S'Jane Iverson' +p69360 +sa(dp69361 +g25267 +g27 +sg25268 +S'Doorstop Doll' +p69362 +sg25270 +S'Renee A. Monfalcone' +p69363 +sa(dp69364 +g25267 +g27 +sg25268 +S'Clay Indian Dolls' +p69365 +sg25270 +S'Jane Iverson' +p69366 +sa(dp69367 +g25267 +g27 +sg25268 +S'Cree Papoose Doll' +p69368 +sg25270 +S'Jane Iverson' +p69369 +sa(dp69370 +g25267 +g27 +sg25268 +S'Clay Pipe Doll' +p69371 +sg25270 +S'Jane Iverson' +p69372 +sa(dp69373 +g25267 +g27 +sg25268 +S'Hickory Nut Doll' +p69374 +sg25270 +S'Harry Grossen' +p69375 +sa(dp69376 +g25267 +g27 +sg25268 +S'Doll (Composition)' +p69377 +sg25270 +S'Archie Thompson' +p69378 +sa(dp69379 +g25268 +S'Rose et Colas' +p69380 +sg25270 +S'Artist Information (' +p69381 +sg25273 +S'(artist after)' +p69382 +sg25275 +S'\n' +p69383 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000974b.jpg' +p69384 +sg25267 +g27 +sa(dp69385 +g25267 +g27 +sg25268 +S'Doll - "Leslie Simpson"' +p69386 +sg25270 +S'Artist Information (' +p69387 +sa(dp69388 +g25267 +g27 +sg25268 +S'Rocking Horse' +p69389 +sg25270 +S'Harriette Gale' +p69390 +sa(dp69391 +g25267 +g27 +sg25268 +S'Rocking Horse' +p69392 +sg25270 +S'Rex F. Bush' +p69393 +sa(dp69394 +g25267 +g27 +sg25268 +S'Rocking Horse' +p69395 +sg25270 +S'Willard Hazen' +p69396 +sa(dp69397 +g25267 +g27 +sg25268 +S"Child's Rocking Horse" +p69398 +sg25270 +S'Ernest A. Towers, Jr.' +p69399 +sa(dp69400 +g25267 +g27 +sg25268 +S'Rock Horse' +p69401 +sg25270 +S'Henry Tomaszewski' +p69402 +sa(dp69403 +g25267 +g27 +sg25268 +S'Wooden Rocking Horse' +p69404 +sg25270 +S'Lester Kausch' +p69405 +sa(dp69406 +g25267 +g27 +sg25268 +S"Child's Hobby Horse" +p69407 +sg25270 +S'Theodore Pfitzer' +p69408 +sa(dp69409 +g25267 +g27 +sg25268 +S'Hobby Horse Toy' +p69410 +sg25270 +S'Raoul Du Bois' +p69411 +sa(dp69412 +g25267 +g27 +sg25268 +S'Hobby Toy' +p69413 +sg25270 +S'Raoul Du Bois' +p69414 +sa(dp69415 +g25268 +S'La Petite Therese' +p69416 +sg25270 +S'Artist Information (' +p69417 +sg25273 +S'(artist after)' +p69418 +sg25275 +S'\n' +p69419 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e50.jpg' +p69420 +sg25267 +g27 +sa(dp69421 +g25267 +g27 +sg25268 +S'Toy Rocking Horse' +p69422 +sg25270 +S'John Fisk' +p69423 +sa(dp69424 +g25267 +g27 +sg25268 +S'Wooden Rocking Horse' +p69425 +sg25270 +S'Laura Bilodeau' +p69426 +sa(dp69427 +g25267 +g27 +sg25268 +S'Dancing Doll' +p69428 +sg25270 +S'Selma Sandler' +p69429 +sa(dp69430 +g25267 +g27 +sg25268 +S'Jigging Figure' +p69431 +sg25270 +S'David Ramage' +p69432 +sa(dp69433 +g25267 +g27 +sg25268 +S'Miniature Lumber Camp' +p69434 +sg25270 +S'Alfonso Moreno' +p69435 +sa(dp69436 +g25267 +g27 +sg25268 +S'Doll' +p69437 +sg25270 +S'Francis Law Durand' +p69438 +sa(dp69439 +g25267 +g27 +sg25268 +S'Toy Figure' +p69440 +sg25270 +S'Stanley Chin' +p69441 +sa(dp69442 +g25267 +g27 +sg25268 +S'Toy Rooster' +p69443 +sg25270 +S'Lillian Hunter' +p69444 +sa(dp69445 +g25267 +g27 +sg25268 +S'Toy Animal' +p69446 +sg25270 +S'Stanley Chin' +p69447 +sa(dp69448 +g25267 +g27 +sg25268 +S'Horse and Rider' +p69449 +sg25270 +S'Philip Johnson' +p69450 +sa(dp69451 +g25268 +S'Les sabots' +p69452 +sg25270 +S'Artist Information (' +p69453 +sg25273 +S'(artist after)' +p69454 +sg25275 +S'\n' +p69455 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e4b.jpg' +p69456 +sg25267 +g27 +sa(dp69457 +g25267 +g27 +sg25268 +S'Toy Yoke of Oxen' +p69458 +sg25270 +S'Joseph Goldberg' +p69459 +sa(dp69460 +g25267 +g27 +sg25268 +S'Toy Elephant' +p69461 +sg25270 +S'Orison Daeda' +p69462 +sa(dp69463 +g25267 +g27 +sg25268 +S'Wooden Pig' +p69464 +sg25270 +S'Wilbur M Rice' +p69465 +sa(dp69466 +g25267 +g27 +sg25268 +S'"Sinbad" Marionette' +p69467 +sg25270 +S'George File' +p69468 +sa(dp69469 +g25267 +g27 +sg25268 +S'Marionette' +p69470 +sg25270 +S'Beverly Chichester' +p69471 +sa(dp69472 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e6e.jpg' +p69473 +sg25268 +S'"David and Goliath" Marionette' +p69474 +sg25270 +S'Ruth Abrams' +p69475 +sa(dp69476 +g25267 +g27 +sg25268 +S'"Fan Dancer" Marionette' +p69477 +sg25270 +S'Elmer Weise' +p69478 +sa(dp69479 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e6f.jpg' +p69480 +sg25268 +S'Lady Marionette' +p69481 +sg25270 +S'James McLellan' +p69482 +sa(dp69483 +g25267 +g27 +sg25268 +S'Marionette (Details)' +p69484 +sg25270 +S'Frank Gray' +p69485 +sa(dp69486 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e70.jpg' +p69487 +sg25268 +S'"Cannibal" Marionette' +p69488 +sg25270 +S'James McLellan' +p69489 +sa(dp69490 +g25268 +S'Noce de Village (Village Wedding)' +p69491 +sg25270 +S'Artist Information (' +p69492 +sg25273 +S'(artist after)' +p69493 +sg25275 +S'\n' +p69494 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e97.jpg' +p69495 +sg25267 +g27 +sa(dp69496 +g25267 +g27 +sg25268 +S'"King Saul" Marionette' +p69497 +sg25270 +S'Elmer Weise' +p69498 +sa(dp69499 +g25267 +g27 +sg25268 +S'Marionette (Detail)' +p69500 +sg25270 +S'Elmer Weise' +p69501 +sa(dp69502 +g25267 +g27 +sg25268 +S'Tight-rope Walker Marionette' +p69503 +sg25270 +S'Florian Rokita' +p69504 +sa(dp69505 +g25267 +g27 +sg25268 +S'Skeleton Marionette' +p69506 +sg25270 +S'George File' +p69507 +sa(dp69508 +g25267 +g27 +sg25268 +S'Juggling Marionette' +p69509 +sg25270 +S'Elmer Weise' +p69510 +sa(dp69511 +g25267 +g27 +sg25268 +S'Minstrel Marionette' +p69512 +sg25270 +S'Elmer Weise' +p69513 +sa(dp69514 +g25267 +g27 +sg25268 +S'Puppet' +p69515 +sg25270 +S'George File' +p69516 +sa(dp69517 +g25267 +g27 +sg25268 +S'Marionette (Detail)' +p69518 +sg25270 +S'Elmer Weise' +p69519 +sa(dp69520 +g25267 +g27 +sg25268 +S'"Negro Bride" Puppet' +p69521 +sg25270 +S'Verna Tallman' +p69522 +sa(dp69523 +g25267 +g27 +sg25268 +S'Puppet with Opera Glass' +p69524 +sg25270 +S'Verna Tallman' +p69525 +sa(dp69526 +g25268 +S'Foire de Village' +p69527 +sg25270 +S'Artist Information (' +p69528 +sg25273 +S'(artist after)' +p69529 +sg25275 +S'\n' +p69530 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e9c.jpg' +p69531 +sg25267 +g27 +sa(dp69532 +g25267 +g27 +sg25268 +S'Shark Puppet' +p69533 +sg25270 +S'Sebastian Simonet' +p69534 +sa(dp69535 +g25267 +g27 +sg25268 +S'Puppet - "Liza"' +p69536 +sg25270 +S'Bertha Semple' +p69537 +sa(dp69538 +g25267 +g27 +sg25268 +S'Puppet - "Uncle Tom"' +p69539 +sg25270 +S'Bertha Semple' +p69540 +sa(dp69541 +g25267 +g27 +sg25268 +S'Puppet - "Simon Legree"' +p69542 +sg25270 +S'Elmer Weise' +p69543 +sa(dp69544 +g25267 +g27 +sg25268 +S'Puppet - "Mrs. Shelby"' +p69545 +sg25270 +S'Bertha Semple' +p69546 +sa(dp69547 +g25267 +S'Spring or "clockwork" mechanisms were sometimes used to produce sounds in toys \n as well as to make them move. Music boxes were operated by this type of action,\n as is this mechanical figure of a man with a cello. When the toy is wound, the musician\n nods and moves his bow. The toy, dating from the late nineteenth century, plays\n an old-fashioned dance tune.\n ' +p69548 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002fe.jpg' +p69549 +sg25268 +S'Man with Cello' +p69550 +sg25270 +S'Mina Lowry' +p69551 +sa(dp69552 +g25267 +S'This hollow, articulated, or jointed, figure of a boy illustrates the rather\n complicated animation that could be produced with spring mechanisms. The windup\n key is located on his left side; it is attached to a spring inside the body. As\n the spring releases, the arms revolve. Simultaneously, the upper part of the figure,\n which is articulated at the waist, moves from side to side. The combined actions\n of arms and body move the figure around on its feet. The figure, painted with oil\n colors, dates from the late nineteenth century.\n ' +p69553 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002fc.jpg' +p69554 +sg25268 +S'Mechanical Toy' +p69555 +sg25270 +S'Isidore Danziger' +p69556 +sa(dp69557 +g25267 +g27 +sg25268 +S'Mechanical Toy' +p69558 +sg25270 +S'Gwendolyn Jackson' +p69559 +sa(dp69560 +g25267 +g27 +sg25268 +S'Mechanical Toy' +p69561 +sg25270 +S'Isidore Danziger' +p69562 +sa(dp69563 +g25267 +g27 +sg25268 +S'Toy Boy and Goat' +p69564 +sg25270 +S'Harry Grossen' +p69565 +sa(dp69566 +g25268 +S'T\xc3\xaate de Flore' +p69567 +sg25270 +S'Artist Information (' +p69568 +sg25273 +S'(artist after)' +p69569 +sg25275 +S'\n' +p69570 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e14.jpg' +p69571 +sg25267 +g27 +sa(dp69572 +g25267 +g27 +sg25268 +S'Dancing Doll in a Box' +p69573 +sg25270 +S'Donald Humphrey' +p69574 +sa(dp69575 +g25267 +S"Another kind of toy that emitted a sound was the squeak toy. An example is\n this kitten holding a fiddle. Such toys were made in a wide variety of birds and\n beasts. The figure is mounted on a small bellows which, when depressed, produces\n a sound suggestive of the animal's natural call.\n " +p69576 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002dc.jpg' +p69577 +sg25268 +S'Squeak Toy Kitten' +p69578 +sg25270 +S'Frank McEntee' +p69579 +sa(dp69580 +g25267 +g27 +sg25268 +S'Toy Pump' +p69581 +sg25270 +S'Arsen Maralian' +p69582 +sa(dp69583 +g25267 +g27 +sg25268 +S'Wheel with Figure' +p69584 +sg25270 +S'American 20th Century' +p69585 +sa(dp69586 +g25267 +g27 +sg25268 +S'"Humpty Dumpty" Jumping Jack' +p69587 +sg25270 +S'Robert Gilson' +p69588 +sa(dp69589 +g25267 +g27 +sg25268 +S'"Juggling" Marionette' +p69590 +sg25270 +S'James McLellan' +p69591 +sa(dp69592 +g25267 +g27 +sg25268 +S'Marionette - "Topsy"' +p69593 +sg25270 +S'Joseph Shapiro' +p69594 +sa(dp69595 +g25267 +g27 +sg25268 +S'Puppet - "Cotton Picker"' +p69596 +sg25270 +S'Vera Van Voris' +p69597 +sa(dp69598 +g25267 +g27 +sg25268 +S'"Mother Goose" marionette' +p69599 +sg25270 +S'Rose Campbell-Gerke' +p69600 +sa(dp69601 +g25267 +g27 +sg25268 +S'Marionette' +p69602 +sg25270 +S'Verna Tallman' +p69603 +sa(dp69604 +g25268 +S'La Rixe (The Brawl)' +p69605 +sg25270 +S'Artist Information (' +p69606 +sg25273 +S'(artist after)' +p69607 +sg25275 +S'\n' +p69608 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e9a.jpg' +p69609 +sg25267 +g27 +sa(dp69610 +g25267 +g27 +sg25268 +S'Puppet - "Chinese Minstrel"' +p69611 +sg25270 +S'Vera Van Voris' +p69612 +sa(dp69613 +g25267 +g27 +sg25268 +S'Marionette - "Biddy"' +p69614 +sg25270 +S'Hilda Olson' +p69615 +sa(dp69616 +g25267 +g27 +sg25268 +S'"Dog Toby" Hand Puppet' +p69617 +sg25270 +S'Dorothy Brennan' +p69618 +sa(dp69619 +g25267 +g27 +sg25268 +S'"Bell Hop" Marionette' +p69620 +sg25270 +S'Emile Cero' +p69621 +sa(dp69622 +g25267 +g27 +sg25268 +S'"Drunken Clown" Puppet' +p69623 +sg25270 +S'Verna Tallman' +p69624 +sa(dp69625 +g25267 +g27 +sg25268 +S'Tin Toy' +p69626 +sg25270 +S'American 20th Century' +p69627 +sa(dp69628 +g25267 +g27 +sg25268 +S'Toy - Man on Music Box' +p69629 +sg25270 +S'John Fisk' +p69630 +sa(dp69631 +g25267 +g27 +sg25268 +S'Music Box' +p69632 +sg25270 +S'Chris Makrenos' +p69633 +sa(dp69634 +g25267 +g27 +sg25268 +S"Noah's Ark with Animals" +p69635 +sg25270 +S'Mina Lowry' +p69636 +sa(dp69637 +g25267 +g27 +sg25268 +S'Toy Elephant' +p69638 +sg25270 +S'Stanley Chin' +p69639 +sa(dp69640 +g25268 +S'La Blanchisseuse' +p69641 +sg25270 +S'Artist Information (' +p69642 +sg25273 +S'(artist after)' +p69643 +sg25275 +S'\n' +p69644 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e3f.jpg' +p69645 +sg25267 +g27 +sa(dp69646 +g25267 +g27 +sg25268 +S"Noah's Ark with Animals" +p69647 +sg25270 +S'Mina Lowry' +p69648 +sa(dp69649 +g25267 +g27 +sg25268 +S"Toy Noah's Ark" +p69650 +sg25270 +S'Chris Makrenos' +p69651 +sa(dp69652 +g25267 +g27 +sg25268 +S'Hand Puppet - Policeman' +p69653 +sg25270 +S'Elmer Weise' +p69654 +sa(dp69655 +g25267 +g27 +sg25268 +S'Hand Puppet - Devil' +p69656 +sg25270 +S'Joseph Shapiro' +p69657 +sa(dp69658 +g25267 +g27 +sg25268 +S'Hand Puppet - Chinaman' +p69659 +sg25270 +S'Joseph Shapiro' +p69660 +sa(dp69661 +g25267 +g27 +sg25268 +S'Hand Puppet - Snapdragon' +p69662 +sg25270 +S'Chris Makrenos' +p69663 +sa(dp69664 +g25267 +g27 +sg25268 +S'"Punch" Clown Puppet' +p69665 +sg25270 +S'Florian Rokita' +p69666 +sa(dp69667 +g25267 +g27 +sg25268 +S'"Punch" Boxer with Blue Coat' +p69668 +sg25270 +S'Ruth Abrams' +p69669 +sa(dp69670 +g25267 +g27 +sg25268 +S'Marionette - Missionary' +p69671 +sg25270 +S'Dorothy Harris' +p69672 +sa(dp69673 +g25267 +g27 +sg25268 +S'"The Doctor" Marionette' +p69674 +sg25270 +S'Ruth Abrams' +p69675 +sa(dp69676 +g25268 +S'La Fontaine' +p69677 +sg25270 +S'Artist Information (' +p69678 +sg25273 +S'(artist after)' +p69679 +sg25275 +S'\n' +p69680 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e40.jpg' +p69681 +sg25267 +g27 +sa(dp69682 +g25267 +g27 +sg25268 +S'Horse Puppet' +p69683 +sg25270 +S'James McLellan' +p69684 +sa(dp69685 +g25267 +g27 +sg25268 +S'"Sambo" Hand Puppet' +p69686 +sg25270 +S'Ruth Abrams' +p69687 +sa(dp69688 +g25267 +g27 +sg25268 +S'"Baby" Hand Puppet' +p69689 +sg25270 +S'Elmer Weise' +p69690 +sa(dp69691 +g25267 +g27 +sg25268 +S'Policeman Hand Puppet' +p69692 +sg25270 +S'Florian Rokita' +p69693 +sa(dp69694 +g25267 +g27 +sg25268 +S'Negro Hand Puppet' +p69695 +sg25270 +S'Beverly Chichester' +p69696 +sa(dp69697 +g25267 +g27 +sg25268 +S'Blind Man Hand Puppet' +p69698 +sg25270 +S'David Ramage' +p69699 +sa(dp69700 +g25267 +g27 +sg25268 +S'Trivet' +p69701 +sg25270 +S'Dorothea Bates' +p69702 +sa(dp69703 +g25267 +g27 +sg25268 +S'Toy Iron' +p69704 +sg25270 +S'LeRoy Griffith' +p69705 +sa(dp69706 +g25267 +g27 +sg25268 +S'Elephant' +p69707 +sg25270 +S'Raoul Du Bois' +p69708 +sa(dp69709 +g25267 +g27 +sg25268 +S'Plush Toy Dog' +p69710 +sg25270 +S'John Winters' +p69711 +sa(dp69712 +g25268 +S'La bonne education' +p69713 +sg25270 +S'Artist Information (' +p69714 +sg25273 +S'(artist after)' +p69715 +sg25275 +S'\n' +p69716 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000971f.jpg' +p69717 +sg25267 +g27 +sa(dp69718 +g25267 +g27 +sg25268 +S'Rattle' +p69719 +sg25270 +S'Michael Fenga' +p69720 +sa(dp69721 +g25267 +g27 +sg25268 +S'Rattle' +p69722 +sg25270 +S'Rex F. Bush' +p69723 +sa(dp69724 +g25267 +g27 +sg25268 +S'Wooden Toys' +p69725 +sg25270 +S'Rex F. Bush' +p69726 +sa(dp69727 +g25267 +g27 +sg25268 +S'Two Tin Rattles' +p69728 +sg25270 +S'Raoul Du Bois' +p69729 +sa(dp69730 +g25267 +g27 +sg25268 +S'Toy School House' +p69731 +sg25270 +S'Raoul Du Bois' +p69732 +sa(dp69733 +g25267 +g27 +sg25268 +S'Toy Theater with Automatic Dancer' +p69734 +sg25270 +S'Mina Lowry' +p69735 +sa(dp69736 +g25267 +g27 +sg25268 +S'Backdrop for Puppet Show' +p69737 +sg25270 +S'Vera Van Voris' +p69738 +sa(dp69739 +g25267 +g27 +sg25268 +S'Hand Puppet Boxer' +p69740 +sg25270 +S'David Ramage' +p69741 +sa(dp69742 +g25267 +g27 +sg25268 +S'Marionette' +p69743 +sg25270 +S'Pearl Torell' +p69744 +sa(dp69745 +g25267 +g27 +sg25268 +S'"Barnacle Bill" Puppet' +p69746 +sg25270 +S'Chris Makrenos' +p69747 +sa(dp69748 +g25268 +S'Le Chateau de Cartes' +p69749 +sg25270 +S'Artist Information (' +p69750 +sg25273 +S'(artist after)' +p69751 +sg25275 +S'\n' +p69752 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f66.jpg' +p69753 +sg25267 +g27 +sa(dp69754 +g25267 +g27 +sg25268 +S'Clown Hand Puppet' +p69755 +sg25270 +S'Lillian Stahl' +p69756 +sa(dp69757 +g25267 +g27 +sg25268 +S'Judge Hand Puppet' +p69758 +sg25270 +S'Beverly Chichester' +p69759 +sa(dp69760 +g25267 +g27 +sg25268 +S'Minstrel Hand Puppet' +p69761 +sg25270 +S'Beverly Chichester' +p69762 +sa(dp69763 +g25267 +g27 +sg25268 +S'Marionette' +p69764 +sg25270 +S'American 20th Century' +p69765 +sa(dp69766 +g25267 +g27 +sg25268 +S'Puppet' +p69767 +sg25270 +S'Hilda Olson' +p69768 +sa(dp69769 +g25267 +g27 +sg25268 +S'Head of a Clown Marionette' +p69770 +sg25270 +S'Vera Van Voris' +p69771 +sa(dp69772 +g25267 +g27 +sg25268 +S'Negro Minstrel' +p69773 +sg25270 +S'Sebastian Simonet' +p69774 +sa(dp69775 +g25267 +g27 +sg25268 +S'Negro Minstrel' +p69776 +sg25270 +S'Gordena Jackson' +p69777 +sa(dp69778 +g25267 +g27 +sg25268 +S'Wood Chopper Puppet' +p69779 +sg25270 +S'Bertha Semple' +p69780 +sa(dp69781 +g25267 +g27 +sg25268 +S'Minstrel Puppet' +p69782 +sg25270 +S'Verna Tallman' +p69783 +sa(dp69784 +g25268 +S'Dame cachetant une lettre (Lady Sealing a Letter)' +p69785 +sg25270 +S'Artist Information (' +p69786 +sg25273 +S'(artist after)' +p69787 +sg25275 +S'\n' +p69788 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f67.jpg' +p69789 +sg25267 +g27 +sa(dp69790 +g25267 +g27 +sg25268 +S'Puppet - "Clown on a Tear"' +p69791 +sg25270 +S'Verna Tallman' +p69792 +sa(dp69793 +g25267 +g27 +sg25268 +S'Puppet - "Tight Rope Walker"' +p69794 +sg25270 +S'Pearl Torell' +p69795 +sa(dp69796 +g25267 +g27 +sg25268 +S'Marionette' +p69797 +sg25270 +S'Vera Van Voris' +p69798 +sa(dp69799 +g25267 +g27 +sg25268 +S'Puppet' +p69800 +sg25270 +S'George File' +p69801 +sa(dp69802 +g25267 +g27 +sg25268 +S'Mechanically Operated Toy' +p69803 +sg25270 +S'Nicholas Amantea' +p69804 +sa(dp69805 +g25267 +g27 +sg25268 +S"Lano's Pop Out Marionette" +p69806 +sg25270 +S'Frank Gray' +p69807 +sa(dp69808 +g25267 +S'A true rocking horse, this piece is primitive in construction, yet its design is \n vigorous and spirited. The stylized, round body is actually a single wooden log, while the head \n and neck are carved from another single block. the flat, stick legs are mortised into the \n underside of the body. The horse is mounted on a pair of rockers. This rocking horse was made \n between 1853 and 1856 by Benjamin P. Crandall of New York City; his name appears on the under \n surface of the horse. Like many other toy makers, Crandall did not produce toys exclusively and \n was listed also as a carpenter and maker of wagons, carriages, and perambulators.\n ' +p69809 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a000544c.jpg' +p69810 +sg25268 +S'Rocking Horse' +p69811 +sg25270 +S'Mina Lowry' +p69812 +sa(dp69813 +g25267 +g27 +sg25268 +S'Horse with Rider' +p69814 +sg25270 +S'Selma Sandler' +p69815 +sa(dp69816 +g25267 +g27 +sg25268 +S'Rocking Horse' +p69817 +sg25270 +S'Lucille Chabot' +p69818 +sa(dp69819 +g25267 +g27 +sg25268 +S'Hobby Horse' +p69820 +sg25270 +S'Wilbur M Rice' +p69821 +sa(dp69822 +g25268 +S'Le Dessinateur (The Draughtsman)' +p69823 +sg25270 +S'Artist Information (' +p69824 +sg25273 +S'(artist after)' +p69825 +sg25275 +S'\n' +p69826 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005728.jpg' +p69827 +sg25267 +g27 +sa(dp69828 +g25267 +g27 +sg25268 +S'Hobby Horse' +p69829 +sg25270 +S'Ernest A. Towers, Jr.' +p69830 +sa(dp69831 +g25267 +g27 +sg25268 +S'Hobby Horse' +p69832 +sg25270 +S'Mina Lowry' +p69833 +sa(dp69834 +g25267 +g27 +sg25268 +S'Toy Iron' +p69835 +sg25270 +S'Lillian Hunter' +p69836 +sa(dp69837 +g25267 +g27 +sg25268 +S'Toy Shovel' +p69838 +sg25270 +S'Eugene Bartz' +p69839 +sa(dp69840 +g25267 +g27 +sg25268 +S'Jack Straws' +p69841 +sg25270 +S'Hester Duany' +p69842 +sa(dp69843 +g25267 +g27 +sg25268 +S'Steamboat Coin Bank' +p69844 +sg25270 +S'Alf Bruseth' +p69845 +sa(dp69846 +g25267 +g27 +sg25268 +S'Toy Sledge and Oxen' +p69847 +sg25270 +S'William Kerby' +p69848 +sa(dp69849 +g25267 +g27 +sg25268 +S'One Horse Sleigh' +p69850 +sg25270 +S'Aaron Fastovsky' +p69851 +sa(dp69852 +g25267 +g27 +sg25268 +S'Ambulance Carriage Toy' +p69853 +sg25270 +S'Chris Makrenos' +p69854 +sa(dp69855 +g25267 +g27 +sg25268 +S'Toy Fire Engine' +p69856 +sg25270 +S'Harry Grossen' +p69857 +sa(dp69858 +g25268 +S"L'Ecureuse" +p69859 +sg25270 +S'Artist Information (' +p69860 +sg25273 +S'(artist after)' +p69861 +sg25275 +S'\n' +p69862 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e42.jpg' +p69863 +sg25267 +g27 +sa(dp69864 +g25267 +g27 +sg25268 +S'Toy Fire Engine' +p69865 +sg25270 +S'William Spiecker' +p69866 +sa(dp69867 +g25267 +g27 +sg25268 +S'Toy Goat Cart' +p69868 +sg25270 +S'Elmer Weise' +p69869 +sa(dp69870 +g25267 +g27 +sg25268 +S'Toy - Two Horse Hack' +p69871 +sg25270 +S'Page Coffman' +p69872 +sa(dp69873 +g25267 +g27 +sg25268 +S'Toy Coach and Two Horses' +p69874 +sg25270 +S'Raoul Du Bois' +p69875 +sa(dp69876 +g25267 +g27 +sg25268 +S'Trotter and Gig Iron Toy' +p69877 +sg25270 +S'George File' +p69878 +sa(dp69879 +g25267 +g27 +sg25268 +S'Toy Cannon' +p69880 +sg25270 +S'Albert Geuppert' +p69881 +sa(dp69882 +g25267 +g27 +sg25268 +S'Toy Coach' +p69883 +sg25270 +S'Dorothy Brennan' +p69884 +sa(dp69885 +g25267 +g27 +sg25268 +S'Trail Board' +p69886 +sg25270 +S'Elizabeth Moutal' +p69887 +sa(dp69888 +g25267 +g27 +sg25268 +S"Ship's Trailboard" +p69889 +sg25270 +S'Sadie Berman' +p69890 +sa(dp69891 +g25267 +g27 +sg25268 +S'Stern Piece' +p69892 +sg25270 +S'Harriette Gale' +p69893 +sa(dp69894 +g25268 +S'Le Garcon cabaretier' +p69895 +sg25270 +S'Artist Information (' +p69896 +sg25273 +S'(artist after)' +p69897 +sg25275 +S'\n' +p69898 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e41.jpg' +p69899 +sg25267 +g27 +sa(dp69900 +g25267 +g27 +sg25268 +S'Trammel' +p69901 +sg25270 +S'Mary Hansen' +p69902 +sa(dp69903 +g25267 +g27 +sg25268 +S'Pin Tray' +p69904 +sg25270 +S'John Cooke' +p69905 +sa(dp69906 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p69907 +sg25270 +S'Milton Grubstein' +p69908 +sa(dp69909 +g25267 +g27 +sg25268 +S'Trivet' +p69910 +sg25270 +S'Roy Weber' +p69911 +sa(dp69912 +g25267 +g27 +sg25268 +S'Iron Stand' +p69913 +sg25270 +S'Roy Weber' +p69914 +sa(dp69915 +g25267 +g27 +sg25268 +S'Flat Iron Stand' +p69916 +sg25270 +S'Elmer Weise' +p69917 +sa(dp69918 +g25267 +g27 +sg25268 +S'Trivet' +p69919 +sg25270 +S'Joseph L. Boyd' +p69920 +sa(dp69921 +g25267 +g27 +sg25268 +S'Trivet' +p69922 +sg25270 +S'Clarence W. Dawson' +p69923 +sa(dp69924 +g25267 +g27 +sg25268 +S'Trivet' +p69925 +sg25270 +S'Margaret Golden' +p69926 +sa(dp69927 +g25267 +g27 +sg25268 +S'Trivet' +p69928 +sg25270 +S'Albert Rudin' +p69929 +sa(dp69930 +g25268 +S'Etude du dessin' +p69931 +sg25270 +S'Artist Information (' +p69932 +sg25273 +S'(artist after)' +p69933 +sg25275 +S'\n' +p69934 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000971e.jpg' +p69935 +sg25267 +g27 +sa(dp69936 +g25267 +g27 +sg25268 +S'Trivet' +p69937 +sg25270 +S'Helen Hobart' +p69938 +sa(dp69939 +g25267 +g27 +sg25268 +S'Iron Stand' +p69940 +sg25270 +S'Austin L. Davison' +p69941 +sa(dp69942 +g25267 +g27 +sg25268 +S'Trivet' +p69943 +sg25270 +S'Edith Miller' +p69944 +sa(dp69945 +g25267 +g27 +sg25268 +S'Trivet' +p69946 +sg25270 +S'Charles Moss' +p69947 +sa(dp69948 +g25267 +g27 +sg25268 +S'Trivet' +p69949 +sg25270 +S'Filippo Porreca' +p69950 +sa(dp69951 +g25267 +g27 +sg25268 +S'Trivet' +p69952 +sg25270 +S'Joseph Rothenberg' +p69953 +sa(dp69954 +g25267 +g27 +sg25268 +S'Trivet' +p69955 +sg25270 +S'Milton Grubstein' +p69956 +sa(dp69957 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p69958 +sg25270 +S'Charles Garjian' +p69959 +sa(dp69960 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p69961 +sg25270 +S'Helen Hobart' +p69962 +sa(dp69963 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p69964 +sg25270 +S'Vincent McPharlin' +p69965 +sa(dp69966 +g25268 +S'Jeune fille au volant (Jeune fille a la raguette)' +p69967 +sg25270 +S'Artist Information (' +p69968 +sg25273 +S'(artist after)' +p69969 +sg25275 +S'\n' +p69970 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008efc.jpg' +p69971 +sg25267 +g27 +sa(dp69972 +g25267 +g27 +sg25268 +S'Metal Trivet' +p69973 +sg25270 +S'Violet Hartenstein' +p69974 +sa(dp69975 +g25267 +g27 +sg25268 +S'Metal Trivet' +p69976 +sg25270 +S'Glenn Wilson' +p69977 +sa(dp69978 +g25267 +g27 +sg25268 +S'Trivet' +p69979 +sg25270 +S'Ardella Watkins' +p69980 +sa(dp69981 +g25267 +g27 +sg25268 +S'Trivet' +p69982 +sg25270 +S'Glenn Wilson' +p69983 +sa(dp69984 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p69985 +sg25270 +S'Jacob Lipkin' +p69986 +sa(dp69987 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p69988 +sg25270 +S'Julius Bellamy' +p69989 +sa(dp69990 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p69991 +sg25270 +S'Benjamin Resnick' +p69992 +sa(dp69993 +g25267 +g27 +sg25268 +S'Brass Trivet' +p69994 +sg25270 +S'Edward Bashaw' +p69995 +sa(dp69996 +g25267 +g27 +sg25268 +S'Trivet' +p69997 +sg25270 +S'Philip Johnson' +p69998 +sa(dp69999 +g25267 +g27 +sg25268 +S'Flat Iron Stand' +p70000 +sg25270 +S'Luther D. Wenrich' +p70001 +sa(dp70002 +g25268 +S'Le Jeune Soldat' +p70003 +sg25270 +S'Artist Information (' +p70004 +sg25273 +S'(artist after)' +p70005 +sg25275 +S'\n' +p70006 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e43.jpg' +p70007 +sg25267 +g27 +sa(dp70008 +g25267 +g27 +sg25268 +S'Trivet' +p70009 +sg25270 +S'Benjamin Resnick' +p70010 +sa(dp70011 +g25267 +g27 +sg25268 +S'Flat Iron Stand' +p70012 +sg25270 +S'Amos C. Brinton' +p70013 +sa(dp70014 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70015 +sg25270 +S'Charles Garjian' +p70016 +sa(dp70017 +g25267 +g27 +sg25268 +S'Iron Stand' +p70018 +sg25270 +S'Austin L. Davison' +p70019 +sa(dp70020 +g25267 +g27 +sg25268 +S'Trivet' +p70021 +sg25270 +S'LeRoy Griffith' +p70022 +sa(dp70023 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70024 +sg25270 +S'Mildred Ford' +p70025 +sa(dp70026 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70027 +sg25270 +S'Isidore Sovensky' +p70028 +sa(dp70029 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70030 +sg25270 +S'Holger Hansen' +p70031 +sa(dp70032 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70033 +sg25270 +S'Salvatore Borrazzo' +p70034 +sa(dp70035 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70036 +sg25270 +S'Holger Hansen' +p70037 +sa(dp70038 +g25268 +S'Le neglige, ou la toilette du matin' +p70039 +sg25270 +S'Artist Information (' +p70040 +sg25273 +S'(artist after)' +p70041 +sg25275 +S'\n' +p70042 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008eed.jpg' +p70043 +sg25267 +g27 +sa(dp70044 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70045 +sg25270 +S'Filippo Porreca' +p70046 +sa(dp70047 +g25267 +g27 +sg25268 +S'Iron Holder' +p70048 +sg25270 +S'Regina Henderer' +p70049 +sa(dp70050 +g25267 +g27 +sg25268 +S'Flat Iron Stand' +p70051 +sg25270 +S'Henrietta S. Hukill' +p70052 +sa(dp70053 +g25267 +g27 +sg25268 +S'Flat Iron Stand' +p70054 +sg25270 +S'Donald Harding' +p70055 +sa(dp70056 +g25267 +g27 +sg25268 +S'Trivet' +p70057 +sg25270 +S'Glenn Wilson' +p70058 +sa(dp70059 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70060 +sg25270 +S'Holger Hansen' +p70061 +sa(dp70062 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70063 +sg25270 +S'Jack Staloff' +p70064 +sa(dp70065 +g25267 +g27 +sg25268 +S'Trivet' +p70066 +sg25270 +S'Ralph Morton' +p70067 +sa(dp70068 +g25267 +g27 +sg25268 +S'Trivet' +p70069 +sg25270 +S'Edward Bashaw' +p70070 +sa(dp70071 +g25267 +g27 +sg25268 +S'Trivet' +p70072 +sg25270 +S'Holger Hansen' +p70073 +sa(dp70074 +g25268 +S'La ratisseuse' +p70075 +sg25270 +S'Artist Information (' +p70076 +sg25273 +S'(artist after)' +p70077 +sg25275 +S'\n' +p70078 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f01.jpg' +p70079 +sg25267 +g27 +sa(dp70080 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70081 +sg25270 +S'Fritz Boehmer' +p70082 +sa(dp70083 +g25267 +g27 +sg25268 +S'Cast Iron Stand' +p70084 +sg25270 +S'Austin L. Davison' +p70085 +sa(dp70086 +g25267 +g27 +sg25268 +S'George Washington Flat Iron Stand' +p70087 +sg25270 +S'Milton Grubstein' +p70088 +sa(dp70089 +g25267 +g27 +sg25268 +S'Flat Iron Stand' +p70090 +sg25270 +S'Leslie Macklem' +p70091 +sa(dp70092 +g25267 +g27 +sg25268 +S'Iron Holder' +p70093 +sg25270 +S'Peter Connin' +p70094 +sa(dp70095 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70096 +sg25270 +S'Filippo Porreca' +p70097 +sa(dp70098 +g25267 +g27 +sg25268 +S'Iron Holder' +p70099 +sg25270 +S'Herman Bader' +p70100 +sa(dp70101 +g25267 +g27 +sg25268 +S'Trivet' +p70102 +sg25270 +S'Sydney Roberts' +p70103 +sa(dp70104 +g25267 +g27 +sg25268 +S'Trivet' +p70105 +sg25270 +S'William Ludwig' +p70106 +sa(dp70107 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70108 +sg25270 +S'Artist Information (' +p70109 +sa(dp70110 +g25268 +S'Le festin royal' +p70111 +sg25270 +S'Jean-Michel Moreau the Younger' +p70112 +sg25273 +S', 1782' +p70113 +sg25275 +S'\n' +p70114 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009734.jpg' +p70115 +sg25267 +g27 +sa(dp70116 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70117 +sg25270 +S'Irene Lawson' +p70118 +sa(dp70119 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70120 +sg25270 +S'Jacob Lipkin' +p70121 +sa(dp70122 +g25267 +g27 +sg25268 +S'Trivet' +p70123 +sg25270 +S'Donald Streeter' +p70124 +sa(dp70125 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70126 +sg25270 +S'Joseph Rothenberg' +p70127 +sa(dp70128 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70129 +sg25270 +S'Herman Bader' +p70130 +sa(dp70131 +g25267 +g27 +sg25268 +S'Trivet' +p70132 +sg25270 +S'Violet Hartenstein' +p70133 +sa(dp70134 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70135 +sg25270 +S'Gordon Sanborn' +p70136 +sa(dp70137 +g25267 +g27 +sg25268 +S'Trivet' +p70138 +sg25270 +S'Violet Hartenstein' +p70139 +sa(dp70140 +g25267 +g27 +sg25268 +S'Trivet' +p70141 +sg25270 +S'Violet Hartenstein' +p70142 +sa(dp70143 +g25267 +g27 +sg25268 +S'Trivet' +p70144 +sg25270 +S'Violet Hartenstein' +p70145 +sa(dp70146 +g25268 +S'Le bal masqu\xc3\xa9' +p70147 +sg25270 +S'Jean-Michel Moreau the Younger' +p70148 +sg25273 +S', 1782' +p70149 +sg25275 +S'\n' +p70150 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009735.jpg' +p70151 +sg25267 +g27 +sa(dp70152 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70153 +sg25270 +S'Filippo Porreca' +p70154 +sa(dp70155 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70156 +sg25270 +S'Jack Staloff' +p70157 +sa(dp70158 +g25267 +g27 +sg25268 +S'Trivet' +p70159 +sg25270 +S'Milton Bevier' +p70160 +sa(dp70161 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70162 +sg25270 +S'Salvatore Borrazzo' +p70163 +sa(dp70164 +g25267 +g27 +sg25268 +S'Iron Stand' +p70165 +sg25270 +S'Elmo Fleming' +p70166 +sa(dp70167 +g25267 +g27 +sg25268 +S'Trivet' +p70168 +sg25270 +S'Glenn Wilson' +p70169 +sa(dp70170 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70171 +sg25270 +S'Bernard Krieger' +p70172 +sa(dp70173 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70174 +sg25270 +S'Milton Grubstein' +p70175 +sa(dp70176 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70177 +sg25270 +S'Mildred Ford' +p70178 +sa(dp70179 +g25267 +g27 +sg25268 +S'Trivet' +p70180 +sg25270 +S'Helen Hobart' +p70181 +sa(dp70182 +g25268 +S'Mme. XXX en Flore' +p70183 +sg25270 +S'Artist Information (' +p70184 +sg25273 +S'(artist after)' +p70185 +sg25275 +S'\n' +p70186 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009640.jpg' +p70187 +sg25267 +g27 +sa(dp70188 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70189 +sg25270 +S'Helen Hobart' +p70190 +sa(dp70191 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70192 +sg25270 +S'Julius Bellamy' +p70193 +sa(dp70194 +g25267 +g27 +sg25268 +S'Trivet' +p70195 +sg25270 +S'Violet Hartenstein' +p70196 +sa(dp70197 +g25267 +g27 +sg25268 +S'Trivet' +p70198 +sg25270 +S'Paul Poffinbarger' +p70199 +sa(dp70200 +g25267 +g27 +sg25268 +S'Trivet' +p70201 +sg25270 +S'Ardella Watkins' +p70202 +sa(dp70203 +g25267 +g27 +sg25268 +S'Flat Iron Stand' +p70204 +sg25270 +S'Amos C. Brinton' +p70205 +sa(dp70206 +g25267 +g27 +sg25268 +S'Trivet' +p70207 +sg25270 +S'Genevieve Jordan' +p70208 +sa(dp70209 +g25267 +g27 +sg25268 +S'Flat Iron Stand' +p70210 +sg25270 +S'Carl Buergerniss' +p70211 +sa(dp70212 +g25267 +g27 +sg25268 +S'Flat Iron Stand' +p70213 +sg25270 +S'Henrietta S. Hukill' +p70214 +sa(dp70215 +g25267 +g27 +sg25268 +S'Flat Iron Stand' +p70216 +sg25270 +S'Cora Parker' +p70217 +sa(dp70218 +g25268 +S'Le duc de Chartres, son epouse et ses enfants' +p70219 +sg25270 +S'Artist Information (' +p70220 +sg25273 +S'(artist)' +p70221 +sg25275 +S'\n' +p70222 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009749.jpg' +p70223 +sg25267 +g27 +sa(dp70224 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70225 +sg25270 +S'Donald Harding' +p70226 +sa(dp70227 +g25267 +g27 +sg25268 +S'Trivet' +p70228 +sg25270 +S'Donald Streeter' +p70229 +sa(dp70230 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70231 +sg25270 +S'John Swientochowski' +p70232 +sa(dp70233 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70234 +sg25270 +S'Julius Bellamy' +p70235 +sa(dp70236 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70237 +sg25270 +S'Jacob Lipkin' +p70238 +sa(dp70239 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70240 +sg25270 +S'Albert Taxson' +p70241 +sa(dp70242 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70243 +sg25270 +S'Donald Harding' +p70244 +sa(dp70245 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70246 +sg25270 +S'Irene Lawson' +p70247 +sa(dp70248 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70249 +sg25270 +S'Gordon Sanborn' +p70250 +sa(dp70251 +g25267 +g27 +sg25268 +S'Flat Iron Stand' +p70252 +sg25270 +S'Columbus Simpson' +p70253 +sa(dp70254 +g25268 +S'Le chemin de la fortune' +p70255 +sg25270 +S'Artist Information (' +p70256 +sg25273 +S'(artist after)' +p70257 +sg25275 +S'\n' +p70258 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009751.jpg' +p70259 +sg25267 +g27 +sa(dp70260 +g25267 +g27 +sg25268 +S'Trivet' +p70261 +sg25270 +S'Charles Cullen' +p70262 +sa(dp70263 +g25267 +g27 +sg25268 +S'Trivet' +p70264 +sg25270 +S'Edna C. Rex' +p70265 +sa(dp70266 +g25267 +g27 +sg25268 +S'Trivet' +p70267 +sg25270 +S'Charles Garjian' +p70268 +sa(dp70269 +g25267 +g27 +sg25268 +S'Trivet' +p70270 +sg25270 +S'Charles Garjian' +p70271 +sa(dp70272 +g25267 +g27 +sg25268 +S'Flat Iron Stand' +p70273 +sg25270 +S'John Petrucci' +p70274 +sa(dp70275 +g25267 +g27 +sg25268 +S'Trivet' +p70276 +sg25270 +S'Charles McLoin' +p70277 +sa(dp70278 +g25267 +g27 +sg25268 +S'Trivet' +p70279 +sg25270 +S'Mildred Ford' +p70280 +sa(dp70281 +g25267 +g27 +sg25268 +S'Pot Trivet' +p70282 +sg25270 +S'Benjamin Resnick' +p70283 +sa(dp70284 +g25267 +g27 +sg25268 +S'Pot Trivets' +p70285 +sg25270 +S'Salvatore Borrazzo' +p70286 +sa(dp70287 +g25267 +g27 +sg25268 +S'Trivet' +p70288 +sg25270 +S'Charles Garjian' +p70289 +sa(dp70290 +g25268 +S'Le bouquet' +p70291 +sg25270 +S'Artist Information (' +p70292 +sg25273 +S'(artist after)' +p70293 +sg25275 +S'\n' +p70294 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f79.jpg' +p70295 +sg25267 +g27 +sa(dp70296 +g25267 +g27 +sg25268 +S'Trivet' +p70297 +sg25270 +S'Filippo Porreca' +p70298 +sa(dp70299 +g25267 +g27 +sg25268 +S'Wrought Iron Trivet' +p70300 +sg25270 +S'Lon Cronk' +p70301 +sa(dp70302 +g25267 +g27 +sg25268 +S'Trivet' +p70303 +sg25270 +S'Irene Lawson' +p70304 +sa(dp70305 +g25267 +g27 +sg25268 +S'Trivet' +p70306 +sg25270 +S'Albert Taxson' +p70307 +sa(dp70308 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70309 +sg25270 +S'Neva Coffey' +p70310 +sa(dp70311 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70312 +sg25270 +S'Jacob Lipkin' +p70313 +sa(dp70314 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70315 +sg25270 +S'Janet Riza' +p70316 +sa(dp70317 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70318 +sg25270 +S'Irene Lawson' +p70319 +sa(dp70320 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70321 +sg25270 +S'Lazar Rubinstein' +p70322 +sa(dp70323 +g25267 +g27 +sg25268 +S'Umbrella Stand' +p70324 +sg25270 +S'Herman Bader' +p70325 +sa(dp70326 +g25268 +S'Le tric-trac' +p70327 +sg25270 +S'Artist Information (' +p70328 +sg25273 +S'(artist after)' +p70329 +sg25275 +S'\n' +p70330 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008eeb.jpg' +p70331 +sg25267 +g27 +sa(dp70332 +g25267 +g27 +sg25268 +S'Umbrella Stand' +p70333 +sg25270 +S'Artist Information (' +p70334 +sa(dp70335 +g25267 +g27 +sg25268 +S'Umbrella Stand' +p70336 +sg25270 +S'Elisabeth Fulda' +p70337 +sa(dp70338 +g25267 +g27 +sg25268 +S'Umbrella Stand' +p70339 +sg25270 +S'Milton Grubstein' +p70340 +sa(dp70341 +g25267 +g27 +sg25268 +S'Umbrella Stand' +p70342 +sg25270 +S'Elisabeth Fulda' +p70343 +sa(dp70344 +g25267 +g27 +sg25268 +S'Umbrella Stand' +p70345 +sg25270 +S'Herman Bader' +p70346 +sa(dp70347 +g25267 +g27 +sg25268 +S'Turpentine Dip Iron' +p70348 +sg25270 +S'Fred Hassebrock' +p70349 +sa(dp70350 +g25267 +g27 +sg25268 +S'Turpentine Hack' +p70351 +sg25270 +S'Fred Hassebrock' +p70352 +sa(dp70353 +g25267 +g27 +sg25268 +S'Iron Tweezer' +p70354 +sg25270 +S'George C. Brown' +p70355 +sa(dp70356 +g25267 +g27 +sg25268 +S'Milk Tub' +p70357 +sg25270 +S'Ralph Russell' +p70358 +sa(dp70359 +g25267 +g27 +sg25268 +S'Covered Tub' +p70360 +sg25270 +S'Edward White' +p70361 +sa(dp70362 +g25268 +S'La comete' +p70363 +sg25270 +S'Artist Information (' +p70364 +sg25273 +S'(artist after)' +p70365 +sg25275 +S'\n' +p70366 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008eec.jpg' +p70367 +sg25267 +g27 +sa(dp70368 +g25267 +g27 +sg25268 +S'Trunk' +p70369 +sg25270 +S'William Bos' +p70370 +sa(dp70371 +g25267 +g27 +sg25268 +S'Trunk' +p70372 +sg25270 +S'Joseph Ficcadenti' +p70373 +sa(dp70374 +g25267 +g27 +sg25268 +S'Chest or Trunk' +p70375 +sg25270 +S'Carl Buergerniss' +p70376 +sa(dp70377 +g25267 +g27 +sg25268 +S'Miniature Chest' +p70378 +sg25270 +S'Carl Buergerniss' +p70379 +sa(dp70380 +g25267 +g27 +sg25268 +S'Leather Covered Trunk' +p70381 +sg25270 +S'John Cutting' +p70382 +sa(dp70383 +g25267 +g27 +sg25268 +S'Stage Coach Trunk' +p70384 +sg25270 +S'J. Howard Iams' +p70385 +sa(dp70386 +g25267 +g27 +sg25268 +S'Chest' +p70387 +sg25270 +S'Edward L. Loper' +p70388 +sa(dp70389 +g25267 +g27 +sg25268 +S'Large Trunk' +p70390 +sg25270 +S'Edward L. Loper' +p70391 +sa(dp70392 +g25267 +g27 +sg25268 +S'Horse Hide Trunk' +p70393 +sg25270 +S'Frank M. Keane' +p70394 +sa(dp70395 +g25267 +g27 +sg25268 +S'Small Square Trunk' +p70396 +sg25270 +S'Regina Henderer' +p70397 +sa(dp70398 +g25268 +S"L'invocation a l'amour" +p70399 +sg25270 +S'Artist Information (' +p70400 +sg25273 +S'(artist after)' +p70401 +sg25275 +S'\n' +p70402 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b37a.jpg' +p70403 +sg25267 +g27 +sa(dp70404 +g25267 +g27 +sg25268 +S'Trunk' +p70405 +sg25270 +S'Georgine E. Mason' +p70406 +sa(dp70407 +g25267 +g27 +sg25268 +S'Trunk' +p70408 +sg25270 +S'Ferdinand Cartier' +p70409 +sa(dp70410 +g25267 +g27 +sg25268 +S'Hide Covered Trunk' +p70411 +sg25270 +S'Samuel O. Klein' +p70412 +sa(dp70413 +g25267 +g27 +sg25268 +S'Plate Treen' +p70414 +sg25270 +S'Wellington Blewett' +p70415 +sa(dp70416 +g25267 +g27 +sg25268 +S'Carved Transom' +p70417 +sg25270 +S'Lawrence Flynn' +p70418 +sa(dp70419 +g25267 +g27 +sg25268 +S'Trivet' +p70420 +sg25270 +S'Clarence W. Dawson' +p70421 +sa(dp70422 +g25267 +g27 +sg25268 +S'Iron Trivet' +p70423 +sg25270 +S'William O. Fletcher' +p70424 +sa(dp70425 +g25267 +g27 +sg25268 +S'Heart Shaped Trivet' +p70426 +sg25270 +S'Anna Aloisi' +p70427 +sa(dp70428 +g25267 +g27 +sg25268 +S'Flat Iron Holder' +p70429 +sg25270 +S'Neva Coffey' +p70430 +sa(dp70431 +g25267 +g27 +sg25268 +S'Trivet' +p70432 +sg25270 +S'Harry Grossen' +p70433 +sa(dp70434 +g25268 +S'Saint George and the Dragon' +p70435 +sg25270 +S'Raphael' +p70436 +sg25273 +S'oil on panel' +p70437 +sg25275 +S'c. 1506' +p70438 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005f3.jpg' +p70439 +sg25267 +S"Raphael was born in Urbino, a central Italian duchy noted for its elegant gentility and Renaissance scholarship. He moved to Florence toward the end of 1504.\n Saint George and the Dragon\n One unusual feature of the painting is the saint's blue garter on his armor–covered leg. Its inscription, HONI, begins the phrase \n " +p70440 +sa(dp70441 +g25268 +S'La Jeune Femme' +p70442 +sg25270 +S'Philibert-Louis Debucourt' +p70443 +sg25273 +S'aquatint and etching' +p70444 +sg25275 +S'1807' +p70445 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e5d.jpg' +p70446 +sg25267 +g27 +sa(dp70447 +g25267 +g27 +sg25268 +S'Toy Bus' +p70448 +sg25270 +S'Owen Middleton' +p70449 +sa(dp70450 +g25267 +g27 +sg25268 +S'Toy Sleigh' +p70451 +sg25270 +S'James McLellan' +p70452 +sa(dp70453 +g25267 +S"This doll's sleigh of about 1887 has painted decorations similar to those found\n on children's sleds of the period. It is wood with metal wire runners. The lining\n is blue velvet.\n " +p70454 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000301.jpg' +p70455 +sg25268 +S'Doll Sleigh' +p70456 +sg25270 +S'Beverly Chichester' +p70457 +sa(dp70458 +g25267 +g27 +sg25268 +S'Calash and Horses' +p70459 +sg25270 +S'John Hall' +p70460 +sa(dp70461 +g25267 +g27 +sg25268 +S'Toy Bus' +p70462 +sg25270 +S'American 20th Century' +p70463 +sa(dp70464 +g25267 +g27 +sg25268 +S'Trailboard' +p70465 +sg25270 +S'Beatrice DeKalb' +p70466 +sa(dp70467 +g25267 +g27 +sg25268 +S'Billet Head' +p70468 +sg25270 +S'Kurt Melzer' +p70469 +sa(dp70470 +g25267 +g27 +sg25268 +S'Trivet' +p70471 +sg25270 +S'Alfred Koehn' +p70472 +sa(dp70473 +g25267 +g27 +sg25268 +S'Skin Covered Trunk' +p70474 +sg25270 +S'Russell Madole' +p70475 +sa(dp70476 +g25267 +g27 +sg25268 +S'Trunk' +p70477 +sg25270 +S'Orrie McCombs' +p70478 +sa(dp70479 +g25268 +S"L'Innocente du Jour" +p70480 +sg25270 +S'Philibert-Louis Debucourt' +p70481 +sg25273 +S'aquatint and etching' +p70482 +sg25275 +S'1810' +p70483 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e5c.jpg' +p70484 +sg25267 +g27 +sa(dp70485 +g25267 +g27 +sg25268 +S'Trunk' +p70486 +sg25270 +S'Charles Bowman' +p70487 +sa(dp70488 +g25267 +g27 +sg25268 +S'Umbrella Stand' +p70489 +sg25270 +S'Jacob Lipkin' +p70490 +sa(dp70491 +g25267 +g27 +sg25268 +S'Valentine' +p70492 +sg25270 +S'John Thorsen' +p70493 +sa(dp70494 +g25267 +g27 +sg25268 +S'Urn Design' +p70495 +sg25270 +S'Charles Goodwin' +p70496 +sa(dp70497 +g25267 +g27 +sg25268 +S'Urn Design' +p70498 +sg25270 +S'Charles Goodwin' +p70499 +sa(dp70500 +g25267 +g27 +sg25268 +S'Urn Design' +p70501 +sg25270 +S'Charles Goodwin' +p70502 +sa(dp70503 +g25267 +g27 +sg25268 +S'Urn Design' +p70504 +sg25270 +S'Charles Goodwin' +p70505 +sa(dp70506 +g25267 +g27 +sg25268 +S'Ornamental Urn for Flowers' +p70507 +sg25270 +S'Ray Price' +p70508 +sa(dp70509 +g25267 +g27 +sg25268 +S'Cast Iron Urn' +p70510 +sg25270 +S'Austin L. Davison' +p70511 +sa(dp70512 +g25267 +g27 +sg25268 +S'Urn' +p70513 +sg25270 +S'Ralph Atkinson' +p70514 +sa(dp70515 +g25268 +S"L'Orange, ou le moderne Jugement de Paris" +p70516 +sg25270 +S'Philibert-Louis Debucourt' +p70517 +sg25273 +S'aquatint and etching' +p70518 +sg25275 +S'1801' +p70519 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096c5.jpg' +p70520 +sg25267 +g27 +sa(dp70521 +g25267 +g27 +sg25268 +S'Urn for Flowers' +p70522 +sg25270 +S'Ralph Atkinson' +p70523 +sa(dp70524 +g25267 +g27 +sg25268 +S'Urn for Flowers' +p70525 +sg25270 +S'Katherine Hastings' +p70526 +sa(dp70527 +g25267 +g27 +sg25268 +S'Carved Stone Urn' +p70528 +sg25270 +S'Clyde L. Cheney' +p70529 +sa(dp70530 +g25267 +g27 +sg25268 +S'Valentine' +p70531 +sg25270 +S'Stella Mosher' +p70532 +sa(dp70533 +g25267 +g27 +sg25268 +S'Valentine in Shadow Box' +p70534 +sg25270 +S'Inez McCombs' +p70535 +sa(dp70536 +g25267 +g27 +sg25268 +S'Valentine' +p70537 +sg25270 +S'William P. Shearwood' +p70538 +sa(dp70539 +g25267 +g27 +sg25268 +S'Valentine' +p70540 +sg25270 +S'Vincent P. Rosel' +p70541 +sa(dp70542 +g25267 +g27 +sg25268 +S'Valentine' +p70543 +sg25270 +S'Vincent P. Rosel' +p70544 +sa(dp70545 +g25267 +g27 +sg25268 +S'Valentine' +p70546 +sg25270 +S'Ernest A. Towers, Jr.' +p70547 +sa(dp70548 +g25267 +g27 +sg25268 +S'Bud Vase' +p70549 +sg25270 +S'Vera Van Voris' +p70550 +sa(dp70551 +g25268 +S"Les Courses du Matin, ou la Porte d'un Riche" +p70552 +sg25270 +S'Philibert-Louis Debucourt' +p70553 +sg25273 +S'aquatint and etching' +p70554 +sg25275 +S'1805' +p70555 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096c9.jpg' +p70556 +sg25267 +g27 +sa(dp70557 +g25267 +g27 +sg25268 +S'Maple Vase' +p70558 +sg25270 +S'Peter Connin' +p70559 +sa(dp70560 +g25267 +g27 +sg25268 +S'Rosewood Vase' +p70561 +sg25270 +S'Sebastian Simonet' +p70562 +sa(dp70563 +g25267 +g27 +sg25268 +S'Metal Vase' +p70564 +sg25270 +S'Harry Mann Waddell' +p70565 +sa(dp70566 +g25267 +g27 +sg25268 +S'Vase Stand' +p70567 +sg25270 +S'Otto E. Hake' +p70568 +sa(dp70569 +g25267 +g27 +sg25268 +S'Coal Vase' +p70570 +sg25270 +S'Charles Bowman' +p70571 +sa(dp70572 +g25267 +g27 +sg25268 +S'Wafer Iron' +p70573 +sg25270 +S'Paul Ward' +p70574 +sa(dp70575 +g25267 +g27 +sg25268 +S'Wafer Iron' +p70576 +sg25270 +S'Bernard Westmacott' +p70577 +sa(dp70578 +g25267 +g27 +sg25268 +S'Wafer Iron' +p70579 +sg25270 +S'Raymond Manupelli' +p70580 +sa(dp70581 +g25267 +g27 +sg25268 +S'Wafer Iron' +p70582 +sg25270 +S'Lawrence Flynn' +p70583 +sa(dp70584 +g25267 +g27 +sg25268 +S'Wafer Iron' +p70585 +sg25270 +S'Benjamin Resnick' +p70586 +sa(dp70587 +g25268 +S'Le Carnaval' +p70588 +sg25270 +S'Philibert-Louis Debucourt' +p70589 +sg25273 +S'aquatint, etching, and roulette work' +p70590 +sg25275 +S'1810' +p70591 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096c7.jpg' +p70592 +sg25267 +g27 +sa(dp70593 +g25267 +g27 +sg25268 +S'Oven' +p70594 +sg25270 +S'Arthur Stewart' +p70595 +sa(dp70596 +g25267 +g27 +sg25268 +S'Wafer Irons' +p70597 +sg25270 +S'Bernard Westmacott' +p70598 +sa(dp70599 +g25267 +g27 +sg25268 +S'Stencilled Wall' +p70600 +sg25270 +S'Ray Holden' +p70601 +sa(dp70602 +g25267 +g27 +sg25268 +S'Stencilled Wall' +p70603 +sg25270 +S'Ray Holden' +p70604 +sa(dp70605 +g25267 +g27 +sg25268 +S'Stencil Wall Decoration' +p70606 +sg25270 +S'Ray Holden' +p70607 +sa(dp70608 +g25267 +g27 +sg25268 +S'Stencilled Wall Decoration' +p70609 +sg25270 +S'Ray Holden' +p70610 +sa(dp70611 +g25267 +g27 +sg25268 +S'Stencilled Wall Decoration' +p70612 +sg25270 +S'Ray Holden' +p70613 +sa(dp70614 +g25267 +g27 +sg25268 +S'Stencilled Wall Decoration' +p70615 +sg25270 +S'Ray Holden' +p70616 +sa(dp70617 +g25267 +g27 +sg25268 +S'Stencilled Wall Decoration' +p70618 +sg25270 +S'Ray Holden' +p70619 +sa(dp70620 +g25267 +g27 +sg25268 +S'Detail of Stencilled Wall' +p70621 +sg25270 +S'Ray Holden' +p70622 +sa(dp70623 +g25268 +S'Mlle. Lavergne' +p70624 +sg25270 +S'Artist Information (' +p70625 +sg25273 +S'(artist)' +p70626 +sg25275 +S'\n' +p70627 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096bf.jpg' +p70628 +sg25267 +g27 +sa(dp70629 +g25267 +g27 +sg25268 +S'Detail of Stencilled Wall' +p70630 +sg25270 +S'Ray Holden' +p70631 +sa(dp70632 +g25267 +g27 +sg25268 +S'Stencilled Wall' +p70633 +sg25270 +S'Ray Holden' +p70634 +sa(dp70635 +g25267 +g27 +sg25268 +S'Stencilled Wall (From an Inn)' +p70636 +sg25270 +S'Ray Holden' +p70637 +sa(dp70638 +g25267 +g27 +sg25268 +S'Stencilled Wall' +p70639 +sg25270 +S'Ray Holden' +p70640 +sa(dp70641 +g25267 +g27 +sg25268 +S'Wall Stencil (From an Inn)' +p70642 +sg25270 +S'Ray Holden' +p70643 +sa(dp70644 +g25267 +g27 +sg25268 +S'Free Hand Wall Decoration' +p70645 +sg25270 +S'Alvin M. Gully' +p70646 +sa(dp70647 +g25267 +g27 +sg25268 +S'Pennsylvania Buckboard' +p70648 +sg25270 +S'Frank Gray' +p70649 +sa(dp70650 +g25267 +g27 +sg25268 +S'Waffle Iron' +p70651 +sg25270 +S'Therkel Anderson' +p70652 +sa(dp70653 +g25267 +g27 +sg25268 +S'Waffle Iron' +p70654 +sg25270 +S'Ralph Russell' +p70655 +sa(dp70656 +g25267 +g27 +sg25268 +S'Waffle Iron' +p70657 +sg25270 +S'Isabelle De Strange' +p70658 +sa(dp70659 +g25268 +S'Le catechisme' +p70660 +sg25270 +S'Artist Information (' +p70661 +sg25273 +S'(artist after)' +p70662 +sg25275 +S'\n' +p70663 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000972b.jpg' +p70664 +sg25267 +g27 +sa(dp70665 +g25267 +g27 +sg25268 +S'Waffle Iron' +p70666 +sg25270 +S'Florence Stevenson' +p70667 +sa(dp70668 +g25267 +g27 +sg25268 +S'Waffle Iron' +p70669 +sg25270 +S'Ralph Morton' +p70670 +sa(dp70671 +g25267 +g27 +sg25268 +S'Waffle Iron' +p70672 +sg25270 +S'Ardella Watkins' +p70673 +sa(dp70674 +g25267 +g27 +sg25268 +S'Waffle Iron' +p70675 +sg25270 +S'Holger Hansen' +p70676 +sa(dp70677 +g25267 +g27 +sg25268 +S'Wafer or Waffle Iron' +p70678 +sg25270 +S'Richard Taylor' +p70679 +sa(dp70680 +g25267 +g27 +sg25268 +S"Bottler's Wagon" +p70681 +sg25270 +S'Donald Humphrey' +p70682 +sa(dp70683 +g25267 +g27 +sg25268 +S'Wall Decoration' +p70684 +sg25270 +S'John Collins' +p70685 +sa(dp70686 +g25267 +g27 +sg25268 +S'Wall Decoration' +p70687 +sg25270 +S'Martin Partyka' +p70688 +sa(dp70689 +g25267 +g27 +sg25268 +S'Hand Painted Wall (Detail)' +p70690 +sg25270 +S'Martin Partyka' +p70691 +sa(dp70692 +g25267 +g27 +sg25268 +S'Over Mantel Picture' +p70693 +sg25270 +S'John Collins' +p70694 +sa(dp70695 +g25268 +S'Le confessional' +p70696 +sg25270 +S'Artist Information (' +p70697 +sg25273 +S'(artist after)' +p70698 +sg25275 +S'\n' +p70699 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000972c.jpg' +p70700 +sg25267 +g27 +sa(dp70701 +g25267 +g27 +sg25268 +S'Over Mantel Picture' +p70702 +sg25270 +S'John Collins' +p70703 +sa(dp70704 +g25267 +g27 +sg25268 +S'Wall Stencil' +p70705 +sg25270 +S'Ray Holden' +p70706 +sa(dp70707 +g25267 +g27 +sg25268 +S'Stencilled Ballroom' +p70708 +sg25270 +S'Ray Holden' +p70709 +sa(dp70710 +g25267 +g27 +sg25268 +S'Free Hand Decorated Wall' +p70711 +sg25270 +S'Michael Lauretano' +p70712 +sa(dp70713 +g25267 +g27 +sg25268 +S'Free Hand Decorated Wall' +p70714 +sg25270 +S'Michael Lauretano' +p70715 +sa(dp70716 +g25267 +g27 +sg25268 +S'Wall Paper' +p70717 +sg25270 +S'Paul Farkas' +p70718 +sa(dp70719 +g25267 +g27 +sg25268 +S'Wall Paper' +p70720 +sg25270 +S'Nicholas Acampora' +p70721 +sa(dp70722 +g25267 +g27 +sg25268 +S'Wall Paper' +p70723 +sg25270 +S'George Robin' +p70724 +sa(dp70725 +g25267 +g27 +sg25268 +S'Wall Paper' +p70726 +sg25270 +S'Sidney Liswood' +p70727 +sa(dp70728 +g25267 +g27 +sg25268 +S'Wall Paper' +p70729 +sg25270 +S'Margaret Knapp' +p70730 +sa(dp70731 +g25268 +S'Le mercure de France' +p70732 +sg25270 +S'Artist Information (' +p70733 +sg25273 +S'(artist after)' +p70734 +sg25275 +S'\n' +p70735 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b37f.jpg' +p70736 +sg25267 +g27 +sa(dp70737 +g25267 +g27 +sg25268 +S'Wall Paper' +p70738 +sg25270 +S'George Robin' +p70739 +sa(dp70740 +g25267 +g27 +sg25268 +S'Wall Paper' +p70741 +sg25270 +S'George Robin' +p70742 +sa(dp70743 +g25267 +g27 +sg25268 +S'Wall Paper' +p70744 +sg25270 +S'Lee Hager' +p70745 +sa(dp70746 +g25267 +g27 +sg25268 +S'Wall Paper' +p70747 +sg25270 +S'Sidney Liswood' +p70748 +sa(dp70749 +g25267 +g27 +sg25268 +S'Wall Paper' +p70750 +sg25270 +S'Vincent Burzy' +p70751 +sa(dp70752 +g25267 +g27 +sg25268 +S'Wall Paper' +p70753 +sg25270 +S'Nicholas Acampora' +p70754 +sa(dp70755 +g25267 +g27 +sg25268 +S'Wall Paper' +p70756 +sg25270 +S'Vincent Burzy' +p70757 +sa(dp70758 +g25267 +g27 +sg25268 +S'Wall Paper' +p70759 +sg25270 +S'Hebilly West' +p70760 +sa(dp70761 +g25267 +g27 +sg25268 +S'Bandbox' +p70762 +sg25270 +S'Gilbert Sackerman' +p70763 +sa(dp70764 +g25267 +g27 +sg25268 +S'Wall Paper' +p70765 +sg25270 +S'Karl Joubert' +p70766 +sa(dp70767 +g25268 +S'Le Contrat' +p70768 +sg25270 +S'Artist Information (' +p70769 +sg25273 +S'(artist after)' +p70770 +sg25275 +S'\n' +p70771 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096a1.jpg' +p70772 +sg25267 +g27 +sa(dp70773 +g25267 +g27 +sg25268 +S'Bandbox (Wall Paper)' +p70774 +sg25270 +S'Gilbert Sackerman' +p70775 +sa(dp70776 +g25267 +g27 +sg25268 +S'Wall Paper' +p70777 +sg25270 +S'Helen Hobart' +p70778 +sa(dp70779 +g25267 +g27 +sg25268 +S'Wall Paper' +p70780 +sg25270 +S'Benjamin Resnick' +p70781 +sa(dp70782 +g25267 +g27 +sg25268 +S'Wall Paper' +p70783 +sg25270 +S'Mina Lowry' +p70784 +sa(dp70785 +g25267 +g27 +sg25268 +S'Wall Paper' +p70786 +sg25270 +S'Karl Joubert' +p70787 +sa(dp70788 +g25267 +g27 +sg25268 +S'Wall Paper' +p70789 +sg25270 +S'Lina Manetto' +p70790 +sa(dp70791 +g25267 +g27 +sg25268 +S'Wall Paper Design' +p70792 +sg25270 +S'American 20th Century' +p70793 +sa(dp70794 +g25267 +g27 +sg25268 +S'Wall Paper' +p70795 +sg25270 +S'Paul Farkas' +p70796 +sa(dp70797 +g25267 +g27 +sg25268 +S'Wall Paper' +p70798 +sg25270 +S'Margaret Knapp' +p70799 +sa(dp70800 +g25267 +g27 +sg25268 +S'Wall Paper' +p70801 +sg25270 +S'Karl Joubert' +p70802 +sa(dp70803 +g25268 +S'Saint Francis Receiving the Stigmata' +p70804 +sg25270 +S'Domenico Veneziano' +p70805 +sg25273 +S'tempera on panel' +p70806 +sg25275 +S'c. 1445/1450' +p70807 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000077f.jpg' +p70808 +sg25267 +g27 +sa(dp70809 +g25268 +S'La promenade des remparts de Paris' +p70810 +sg25270 +S'Artist Information (' +p70811 +sg25273 +S'(artist after)' +p70812 +sg25275 +S'\n' +p70813 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e4f.jpg' +p70814 +sg25267 +g27 +sa(dp70815 +g25267 +g27 +sg25268 +S'Wall Paper' +p70816 +sg25270 +S'John Garay' +p70817 +sa(dp70818 +g25267 +g27 +sg25268 +S'Marble Mosaic Wall' +p70819 +sg25270 +S'Ellen Duncan' +p70820 +sa(dp70821 +g25267 +g27 +sg25268 +S'Bedroom Stencil' +p70822 +sg25270 +S'Mildred E. Bent' +p70823 +sa(dp70824 +g25267 +g27 +sg25268 +S'Stencilled Wall' +p70825 +sg25270 +S'Mildred E. Bent' +p70826 +sa(dp70827 +g25267 +g27 +sg25268 +S'Stencilled Wall' +p70828 +sg25270 +S'Ray Holden' +p70829 +sa(dp70830 +g25267 +g27 +sg25268 +S'Wall Paper Border Design' +p70831 +sg25270 +S'Frances Lichten' +p70832 +sa(dp70833 +g25267 +g27 +sg25268 +S'Wall Paper Border Design' +p70834 +sg25270 +S'Frances Lichten' +p70835 +sa(dp70836 +g25267 +g27 +sg25268 +S'Wall Paper Border Design' +p70837 +sg25270 +S'Frances Lichten' +p70838 +sa(dp70839 +g25267 +g27 +sg25268 +S'Wall Paper Border Design' +p70840 +sg25270 +S'Holger Hansen' +p70841 +sa(dp70842 +g25267 +g27 +sg25268 +S'Wall Paper Sample' +p70843 +sg25270 +S'Betty Jacob' +p70844 +sa(dp70845 +g25268 +S'Tableau des portraits a la mode' +p70846 +sg25270 +S'Artist Information (' +p70847 +sg25273 +S'(artist after)' +p70848 +sg25275 +S'\n' +p70849 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e4e.jpg' +p70850 +sg25267 +g27 +sa(dp70851 +g25267 +g27 +sg25268 +S'Wall Paper' +p70852 +sg25270 +S'Alfonso Umana' +p70853 +sa(dp70854 +g25267 +g27 +sg25268 +S'Wall Paper ("The Cherry Boy")' +p70855 +sg25270 +S'A. Zimet' +p70856 +sa(dp70857 +g25267 +g27 +sg25268 +S'Wall Paper' +p70858 +sg25270 +S'Holger Hansen' +p70859 +sa(dp70860 +g25267 +g27 +sg25268 +S'Wall Paper' +p70861 +sg25270 +S'M. Rosenshield-von-Paulin' +p70862 +sa(dp70863 +g25267 +g27 +sg25268 +S'Wall Paper and Border' +p70864 +sg25270 +S'Nicholas Acampora' +p70865 +sa(dp70866 +g25267 +g27 +sg25268 +S'Wall Paper' +p70867 +sg25270 +S'Joseph Rothenberg' +p70868 +sa(dp70869 +g25267 +g27 +sg25268 +S'Wall Paper' +p70870 +sg25270 +S'Nicholas Acampora' +p70871 +sa(dp70872 +g25267 +g27 +sg25268 +S'Wall Paper' +p70873 +sg25270 +S'John Garay' +p70874 +sa(dp70875 +g25267 +g27 +sg25268 +S'Wall Paper' +p70876 +sg25270 +S'Nicholas Acampora' +p70877 +sa(dp70878 +g25267 +g27 +sg25268 +S'Wall Paper' +p70879 +sg25270 +S'Michael Trekur' +p70880 +sa(dp70881 +g25268 +S'Ballet at the Opera' +p70882 +sg25270 +S'Artist Information (' +p70883 +sg25273 +S'(artist after)' +p70884 +sg25275 +S'\n' +p70885 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000964d.jpg' +p70886 +sg25267 +g27 +sa(dp70887 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p70888 +sg25270 +S'Jack Staloff' +p70889 +sa(dp70890 +g25267 +g27 +sg25268 +S'Wall Paper' +p70891 +sg25270 +S'John Garay' +p70892 +sa(dp70893 +g25267 +g27 +sg25268 +S"Stencil of Ceiling (Mariner's Church)" +p70894 +sg25270 +S'James McLellan' +p70895 +sa(dp70896 +g25267 +g27 +sg25268 +S'Wall Paper' +p70897 +sg25270 +S'Moses Bank' +p70898 +sa(dp70899 +g25267 +g27 +sg25268 +S'Wall Paper' +p70900 +sg25270 +S'Sidney Liswood' +p70901 +sa(dp70902 +g25267 +g27 +sg25268 +S'Wall Paper' +p70903 +sg25270 +S'Nicholas Acampora' +p70904 +sa(dp70905 +g25267 +g27 +sg25268 +S'Wall Paper' +p70906 +sg25270 +S'Elizabeth Valentine' +p70907 +sa(dp70908 +g25267 +g27 +sg25268 +S'Wall Paper and Border' +p70909 +sg25270 +S'Nicholas Acampora' +p70910 +sa(dp70911 +g25267 +g27 +sg25268 +S'Wall Paper and Border' +p70912 +sg25270 +S'Elizabeth Valentine' +p70913 +sa(dp70914 +g25267 +g27 +sg25268 +S'Wall Paper and Border' +p70915 +sg25270 +S'Burton Ewing' +p70916 +sa(dp70917 +g25268 +S'The Tavern' +p70918 +sg25270 +S'Artist Information (' +p70919 +sg25273 +S'(artist after)' +p70920 +sg25275 +S'\n' +p70921 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000964e.jpg' +p70922 +sg25267 +g27 +sa(dp70923 +g25267 +g27 +sg25268 +S'Wall Paper and Border' +p70924 +sg25270 +S'Sidney Liswood' +p70925 +sa(dp70926 +g25267 +g27 +sg25268 +S'Stencilled Wall (Detail)' +p70927 +sg25270 +S'Ray Holden' +p70928 +sa(dp70929 +g25267 +g27 +sg25268 +S'Stencilled Wall' +p70930 +sg25270 +S'Ray Holden' +p70931 +sa(dp70932 +g25267 +g27 +sg25268 +S'Stencilled Wall (Detail)' +p70933 +sg25270 +S'Alvin M. Gully' +p70934 +sa(dp70935 +g25267 +g27 +sg25268 +S'Stencilled Wall' +p70936 +sg25270 +S'Mildred E. Bent' +p70937 +sa(dp70938 +g25267 +g27 +sg25268 +S'Stencilled Wall' +p70939 +sg25270 +S'Mildred E. Bent' +p70940 +sa(dp70941 +g25267 +g27 +sg25268 +S'Stencilled Wall' +p70942 +sg25270 +S'Mildred E. Bent' +p70943 +sa(dp70944 +g25267 +g27 +sg25268 +S'Stencilled Wall' +p70945 +sg25270 +S'Mildred E. Bent' +p70946 +sa(dp70947 +g25267 +g27 +sg25268 +S'Wall Paper Design' +p70948 +sg25270 +S'Henry Meyers' +p70949 +sa(dp70950 +g25267 +g27 +sg25268 +S'Wall Paper (Fragment)' +p70951 +sg25270 +S'Charles Bowman' +p70952 +sa(dp70953 +g25268 +S'The Happy Union' +p70954 +sg25270 +S'Artist Information (' +p70955 +sg25273 +S'(artist after)' +p70956 +sg25275 +S'\n' +p70957 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096ae.jpg' +p70958 +sg25267 +g27 +sa(dp70959 +g25267 +g27 +sg25268 +S'Wall Paper' +p70960 +sg25270 +S'Gilbert Sackerman' +p70961 +sa(dp70962 +g25267 +g27 +sg25268 +S'Wall Paper' +p70963 +sg25270 +S'Holger Hansen' +p70964 +sa(dp70965 +g25267 +g27 +sg25268 +S'Wall Paper' +p70966 +sg25270 +S'Walter Doran' +p70967 +sa(dp70968 +g25267 +g27 +sg25268 +S'Match Safe' +p70969 +sg25270 +S'Maurice Van Felix' +p70970 +sa(dp70971 +g25267 +g27 +sg25268 +S'Wall Pocket' +p70972 +sg25270 +S'Beverly Chichester' +p70973 +sa(dp70974 +g25267 +g27 +sg25268 +S'Wall Pocket' +p70975 +sg25270 +S'Nicholas Zupa' +p70976 +sa(dp70977 +g25267 +g27 +sg25268 +S'Wall Watch Pocket' +p70978 +sg25270 +S'Gordena Jackson' +p70979 +sa(dp70980 +g25267 +g27 +sg25268 +S'Warming Pan' +p70981 +sg25270 +S'Karl Joubert' +p70982 +sa(dp70983 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p70984 +sg25270 +S'John Garay' +p70985 +sa(dp70986 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p70987 +sg25270 +S'John Garay' +p70988 +sa(dp70989 +g25268 +S"La nuit passe, l'aurore parait" +p70990 +sg25270 +S'Artist Information (' +p70991 +sg25273 +S'(artist after)' +p70992 +sg25275 +S'\n' +p70993 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f15.jpg' +p70994 +sg25267 +g27 +sa(dp70995 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p70996 +sg25270 +S'George Robin' +p70997 +sa(dp70998 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p70999 +sg25270 +S'Alfonso Umana' +p71000 +sa(dp71001 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p71002 +sg25270 +S'Karl Joubert' +p71003 +sa(dp71004 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p71005 +sg25270 +S'Alfonso Umana' +p71006 +sa(dp71007 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p71008 +sg25270 +S'Vincent Burzy' +p71009 +sa(dp71010 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p71011 +sg25270 +S'Paul Farkas' +p71012 +sa(dp71013 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p71014 +sg25270 +S'Charles Garjian' +p71015 +sa(dp71016 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p71017 +sg25270 +S'Paul Farkas' +p71018 +sa(dp71019 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p71020 +sg25270 +S'Nicholas Acampora' +p71021 +sa(dp71022 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p71023 +sg25270 +S'John Garay' +p71024 +sa(dp71025 +g25268 +S"L'example des Meres" +p71026 +sg25270 +S'Artist Information (' +p71027 +sg25273 +S'(artist after)' +p71028 +sg25275 +S'\n' +p71029 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009728.jpg' +p71030 +sg25267 +g27 +sa(dp71031 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p71032 +sg25270 +S'Paul Farkas' +p71033 +sa(dp71034 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p71035 +sg25270 +S'George Robin' +p71036 +sa(dp71037 +g25267 +g27 +sg25268 +S'Wall Paper Border on Bandbox Lid' +p71038 +sg25270 +S'Nicholas Acampora' +p71039 +sa(dp71040 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p71041 +sg25270 +S'Paul Farkas' +p71042 +sa(dp71043 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p71044 +sg25270 +S'Alfonso Umana' +p71045 +sa(dp71046 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p71047 +sg25270 +S'George Robin' +p71048 +sa(dp71049 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p71050 +sg25270 +S'Alfonso Umana' +p71051 +sa(dp71052 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p71053 +sg25270 +S'Burton Ewing' +p71054 +sa(dp71055 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p71056 +sg25270 +S'Elizabeth Valentine' +p71057 +sa(dp71058 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p71059 +sg25270 +S'Moses Bank' +p71060 +sa(dp71061 +g25268 +S"L'amour a l'epreuve" +p71062 +sg25270 +S'Artist Information (' +p71063 +sg25273 +S'(artist after)' +p71064 +sg25275 +S'\n' +p71065 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f30.jpg' +p71066 +sg25267 +g27 +sa(dp71067 +g25267 +g27 +sg25268 +S'Foot Warmer' +p71068 +sg25270 +S'Carl Buergerniss' +p71069 +sa(dp71070 +g25267 +g27 +sg25268 +S'Foot Warmer' +p71071 +sg25270 +S'David S. De Vault' +p71072 +sa(dp71073 +g25267 +g27 +sg25268 +S'Foot Warmer' +p71074 +sg25270 +S'Edna C. Rex' +p71075 +sa(dp71076 +g25267 +g27 +sg25268 +S'Foot Warmer' +p71077 +sg25270 +S'Katherine Hastings' +p71078 +sa(dp71079 +g25267 +g27 +sg25268 +S'Foot Warmer' +p71080 +sg25270 +S'Lawrence Phillips' +p71081 +sa(dp71082 +g25267 +g27 +sg25268 +S'Foot Warmer' +p71083 +sg25270 +S'Edith Miller' +p71084 +sa(dp71085 +g25267 +g27 +sg25268 +S'Foot Warmer' +p71086 +sg25270 +S'Florence Stevenson' +p71087 +sa(dp71088 +g25267 +g27 +sg25268 +S'Foot Warmer' +p71089 +sg25270 +S'John Cutting' +p71090 +sa(dp71091 +g25267 +g27 +sg25268 +S'Foot Warmer' +p71092 +sg25270 +S'Arthur Wegg' +p71093 +sa(dp71094 +g25267 +g27 +sg25268 +S'Foot Warmer' +p71095 +sg25270 +S'Richard Taylor' +p71096 +sa(dp71097 +g25268 +S"L'amour frivole" +p71098 +sg25270 +S'Artist Information (' +p71099 +sg25273 +S'(artist after)' +p71100 +sg25275 +S'\n' +p71101 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f2e.jpg' +p71102 +sg25267 +g27 +sa(dp71103 +g25267 +g27 +sg25268 +S'Copper Foot Warmer' +p71104 +sg25270 +S'Edward L. Loper' +p71105 +sa(dp71106 +g25267 +g27 +sg25268 +S'Foot Warmer' +p71107 +sg25270 +S'Artist Information (' +p71108 +sa(dp71109 +g25267 +g27 +sg25268 +S'Foot Warmer' +p71110 +sg25270 +S'James M. Lawson' +p71111 +sa(dp71112 +g25267 +g27 +sg25268 +S'Foot Warmer' +p71113 +sg25270 +S'Gerald Bernhardt' +p71114 +sa(dp71115 +g25267 +g27 +sg25268 +S'Foot Warmer' +p71116 +sg25270 +S'Edith Miller' +p71117 +sa(dp71118 +g25267 +g27 +sg25268 +S'Foot Warmer' +p71119 +sg25270 +S'Arthur Wegg' +p71120 +sa(dp71121 +g25267 +g27 +sg25268 +S'Warmer' +p71122 +sg25270 +S'Jack Staloff' +p71123 +sa(dp71124 +g25267 +g27 +sg25268 +S'Bed Warmer' +p71125 +sg25270 +S'Ray Price' +p71126 +sa(dp71127 +g25267 +g27 +sg25268 +S'Bed Warmer' +p71128 +sg25270 +S'Ray Price' +p71129 +sa(dp71130 +g25267 +g27 +sg25268 +S'Warming Pan' +p71131 +sg25270 +S'Jack Staloff' +p71132 +sa(dp71133 +g25268 +S'Le Carquois \xc3\xa9puis\xc3\xa9' +p71134 +sg25270 +S'Artist Information (' +p71135 +sg25273 +S'(artist after)' +p71136 +sg25275 +S'\n' +p71137 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e7b.jpg' +p71138 +sg25267 +g27 +sa(dp71139 +g25267 +g27 +sg25268 +S'Warming Pan' +p71140 +sg25270 +S'Filippo Porreca' +p71141 +sa(dp71142 +g25267 +g27 +sg25268 +S'Warming Pan' +p71143 +sg25270 +S'Beverly Chichester' +p71144 +sa(dp71145 +g25267 +g27 +sg25268 +S'Warming Pan' +p71146 +sg25270 +S'Alfred Walbeck' +p71147 +sa(dp71148 +g25267 +g27 +sg25268 +S'Warming Pan' +p71149 +sg25270 +S'Jack Staloff' +p71150 +sa(dp71151 +g25267 +g27 +sg25268 +S'Warming Pan' +p71152 +sg25270 +S'Jack Staloff' +p71153 +sa(dp71154 +g25267 +g27 +sg25268 +S'Warming Pan' +p71155 +sg25270 +S'Edward Jewett' +p71156 +sa(dp71157 +g25267 +g27 +sg25268 +S'Warming Pan' +p71158 +sg25270 +S'Jack Staloff' +p71159 +sa(dp71160 +g25267 +g27 +sg25268 +S'Warming Pan' +p71161 +sg25270 +S'Marie Famularo' +p71162 +sa(dp71163 +g25267 +g27 +sg25268 +S'Foot Warmer' +p71164 +sg25270 +S'William Paul Childers' +p71165 +sa(dp71166 +g25267 +g27 +sg25268 +S'Foot Warmer' +p71167 +sg25270 +S'J. Howard Iams' +p71168 +sa(dp71169 +g25268 +S'The Calling of the Apostles Peter and Andrew' +p71170 +sg25270 +S'Duccio di Buoninsegna' +p71171 +sg25273 +S'tempera on panel' +p71172 +sg25275 +S'1308/1311' +p71173 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a08.jpg' +p71174 +sg25267 +S'This was one of the rear panels of Duccio’s magnificent \r\n \n Duccio signed the main section of the \n This rear panel of the \n ' +p71175 +sa(dp71176 +g25268 +S'Le bain (The Bath)' +p71177 +sg25270 +S'Artist Information (' +p71178 +sg25273 +S'(artist after)' +p71179 +sg25275 +S'\n' +p71180 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c71.jpg' +p71181 +sg25267 +g27 +sa(dp71182 +g25267 +g27 +sg25268 +S'Foot Warmer' +p71183 +sg25270 +S'Marie Lutrell' +p71184 +sa(dp71185 +g25267 +g27 +sg25268 +S'Foot Warmer' +p71186 +sg25270 +S'L. Vladimar Fischer' +p71187 +sa(dp71188 +g25267 +g27 +sg25268 +S'Foot Warmer' +p71189 +sg25270 +S'Marie Famularo' +p71190 +sa(dp71191 +g25267 +g27 +sg25268 +S'Hand Warmer' +p71192 +sg25270 +S'Henry Meyers' +p71193 +sa(dp71194 +g25267 +g27 +sg25268 +S'Pocket Warmer' +p71195 +sg25270 +S'Herbert S. Frere' +p71196 +sa(dp71197 +g25267 +g27 +sg25268 +S'Plate Warmer' +p71198 +sg25270 +S'Josephine Miller' +p71199 +sa(dp71200 +g25267 +g27 +sg25268 +S'Plate Warmer' +p71201 +sg25270 +S'Suzanne Roy' +p71202 +sa(dp71203 +g25267 +g27 +sg25268 +S'Plate Warmer' +p71204 +sg25270 +S'Richard Schoene' +p71205 +sa(dp71206 +g25267 +g27 +sg25268 +S'Milk Warmer' +p71207 +sg25270 +S'Edward L. Loper' +p71208 +sa(dp71209 +g25267 +g27 +sg25268 +S'Fender Plate Warmer' +p71210 +sg25270 +S'Gordon Sanborn' +p71211 +sa(dp71212 +g25268 +S'Le Lever' +p71213 +sg25270 +S'Nicolas Francois Regnault' +p71214 +sg25273 +S'color stipple etching and etching' +p71215 +sg25275 +S'unknown date\n' +p71216 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c75.jpg' +p71217 +sg25267 +g27 +sa(dp71218 +g25267 +g27 +sg25268 +S'Bath Water Heaters' +p71219 +sg25270 +S'Al Curry' +p71220 +sa(dp71221 +g25267 +g27 +sg25268 +S'Water Main' +p71222 +sg25270 +S'Walter Praefke' +p71223 +sa(dp71224 +g25267 +g27 +sg25268 +S'Water Nozzle' +p71225 +sg25270 +S'Edith Towner' +p71226 +sa(dp71227 +g25267 +g27 +sg25268 +S'Weather Vane' +p71228 +sg25270 +S'Artist Information (' +p71229 +sa(dp71230 +g25267 +g27 +sg25268 +S'Weather Vane' +p71231 +sg25270 +S'Lucille Chabot' +p71232 +sa(dp71233 +g25267 +g27 +sg25268 +S'Weather Vane' +p71234 +sg25270 +S'Roberta Elvis' +p71235 +sa(dp71236 +g25267 +g27 +sg25268 +S'Wrought Iron Weather Vane' +p71237 +sg25270 +S'Hugh Clarke' +p71238 +sa(dp71239 +g25267 +g27 +sg25268 +S'Weather Vane' +p71240 +sg25270 +S'Rollington Campbell' +p71241 +sa(dp71242 +g25267 +g27 +sg25268 +S'Weather Vane' +p71243 +sg25270 +S'Edward L. Loper' +p71244 +sa(dp71245 +g25267 +g27 +sg25268 +S'Weather Vane' +p71246 +sg25270 +S'Edward L. Loper' +p71247 +sa(dp71248 +g25268 +S'Les cerises' +p71249 +sg25270 +S'Artist Information (' +p71250 +sg25273 +S'(artist after)' +p71251 +sg25275 +S'\n' +p71252 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009661.jpg' +p71253 +sg25267 +g27 +sa(dp71254 +g25267 +g27 +sg25268 +S'Weather Vane' +p71255 +sg25270 +S'Ernest A. Towers, Jr.' +p71256 +sa(dp71257 +g25267 +g27 +sg25268 +S'Weather Vane' +p71258 +sg25270 +S'Edward L. Loper' +p71259 +sa(dp71260 +g25267 +g27 +sg25268 +S'Weather Vane' +p71261 +sg25270 +S'Ernest A. Towers, Jr.' +p71262 +sa(dp71263 +g25267 +g27 +sg25268 +S'Weather Vane' +p71264 +sg25270 +S'John B. Moll' +p71265 +sa(dp71266 +g25267 +g27 +sg25268 +S'Copper Cock Weather Vane' +p71267 +sg25270 +S'Harriette Gale' +p71268 +sa(dp71269 +g25267 +g27 +sg25268 +S'Small Iron Cock' +p71270 +sg25270 +S'American 20th Century' +p71271 +sa(dp71272 +g25267 +g27 +sg25268 +S'Weather Vane - Iron Rooster' +p71273 +sg25270 +S'Albert Eyth' +p71274 +sa(dp71275 +g25267 +g27 +sg25268 +S'Weather Vane Finial' +p71276 +sg25270 +S'Philip Johnson' +p71277 +sa(dp71278 +g25267 +g27 +sg25268 +S'Weather Vane - Cock' +p71279 +sg25270 +S'Helen Hobart' +p71280 +sa(dp71281 +g25267 +g27 +sg25268 +S'Weather Vane - Cock' +p71282 +sg25270 +S'Selma Sandler' +p71283 +sa(dp71284 +g25268 +S'Le chemin de la fortune' +p71285 +sg25270 +S'Artist Information (' +p71286 +sg25273 +S'(artist after)' +p71287 +sg25275 +S'\n' +p71288 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009753.jpg' +p71289 +sg25267 +g27 +sa(dp71290 +g25267 +g27 +sg25268 +S'Weather Vane' +p71291 +sg25270 +S'Walter Hochstrasser' +p71292 +sa(dp71293 +g25267 +g27 +sg25268 +S'Weather Vane' +p71294 +sg25270 +S'Robert Pohle' +p71295 +sa(dp71296 +g25267 +g27 +sg25268 +S'Weather Vane' +p71297 +sg25270 +S'Rollington Campbell' +p71298 +sa(dp71299 +g25267 +g27 +sg25268 +S'Weather Vane Finial' +p71300 +sg25270 +S'Milton Grubstein' +p71301 +sa(dp71302 +g25267 +g27 +sg25268 +S'Weather Vane' +p71303 +sg25270 +S'Helen Hobart' +p71304 +sa(dp71305 +g25267 +g27 +sg25268 +S'Weather Vane' +p71306 +sg25270 +S'Isidore Sovensky' +p71307 +sa(dp71308 +g25267 +g27 +sg25268 +S'Weather Vane' +p71309 +sg25270 +S'Bernard Westmacott' +p71310 +sa(dp71311 +g25267 +g27 +sg25268 +S'Weather Vane' +p71312 +sg25270 +S'Herman Bader' +p71313 +sa(dp71314 +g25267 +g27 +sg25268 +S'Weather Vane Cock' +p71315 +sg25270 +S'Rollington Campbell' +p71316 +sa(dp71317 +g25267 +g27 +sg25268 +S'Weather Vane Finial' +p71318 +sg25270 +S'Helen Hobart' +p71319 +sa(dp71320 +g25268 +S'Le couch\xc3\xa9 de la mari\xc3\xa9e' +p71321 +sg25270 +S'Artist Information (' +p71322 +sg25273 +S'(artist after)' +p71323 +sg25275 +S'\n' +p71324 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009738.jpg' +p71325 +sg25267 +g27 +sa(dp71326 +g25267 +g27 +sg25268 +S'Weather Vane Finial' +p71327 +sg25270 +S'Filippo Porreca' +p71328 +sa(dp71329 +g25267 +g27 +sg25268 +S'Weather Vane - Cock' +p71330 +sg25270 +S'Rollington Campbell' +p71331 +sa(dp71332 +g25267 +g27 +sg25268 +S'Weather Vane - Cock' +p71333 +sg25270 +S'Rollington Campbell' +p71334 +sa(dp71335 +g25267 +g27 +sg25268 +S'Weather Vane - Cock' +p71336 +sg25270 +S'Rollington Campbell' +p71337 +sa(dp71338 +g25267 +g27 +sg25268 +S'Weather Vane' +p71339 +sg25270 +S'Selma Sandler' +p71340 +sa(dp71341 +g25267 +g27 +sg25268 +S'Weather Vane' +p71342 +sg25270 +S'Salvatore Borrazzo' +p71343 +sa(dp71344 +g25267 +g27 +sg25268 +S'Weather Vane' +p71345 +sg25270 +S'Edward L. Loper' +p71346 +sa(dp71347 +g25267 +g27 +sg25268 +S'Weather Vane' +p71348 +sg25270 +S'Edward L. Loper' +p71349 +sa(dp71350 +g25267 +g27 +sg25268 +S'Weather Vane' +p71351 +sg25270 +S'Edward L. Loper' +p71352 +sa(dp71353 +g25267 +g27 +sg25268 +S'Weather Vane' +p71354 +sg25270 +S'Edward L. Loper' +p71355 +sa(dp71356 +g25268 +S'Le couch\xc3\xa9 de la mari\xc3\xa9e' +p71357 +sg25270 +S'Artist Information (' +p71358 +sg25273 +S'(artist)' +p71359 +sg25275 +S'\n' +p71360 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009739.jpg' +p71361 +sg25267 +g27 +sa(dp71362 +g25267 +g27 +sg25268 +S'Weather Vane' +p71363 +sg25270 +S'Edward L. Loper' +p71364 +sa(dp71365 +g25267 +g27 +sg25268 +S'Weather Vane' +p71366 +sg25270 +S'Ralph Morton' +p71367 +sa(dp71368 +g25267 +g27 +sg25268 +S'Weather Vane' +p71369 +sg25270 +S'Vincent P. Rosel' +p71370 +sa(dp71371 +g25267 +g27 +sg25268 +S'Weather Vane Finial' +p71372 +sg25270 +S'Helen Hobart' +p71373 +sa(dp71374 +g25267 +g27 +sg25268 +S'Rooster Weather Vane' +p71375 +sg25270 +S'Robert Pohle' +p71376 +sa(dp71377 +g25267 +g27 +sg25268 +S'Metal Weather Vane' +p71378 +sg25270 +S'American 20th Century' +p71379 +sa(dp71380 +g25267 +g27 +sg25268 +S'Weather Vane Finial' +p71381 +sg25270 +S'Mina Lowry' +p71382 +sa(dp71383 +g25267 +g27 +sg25268 +S'Weather Vane' +p71384 +sg25270 +S'Victor F. Muollo' +p71385 +sa(dp71386 +g25267 +g27 +sg25268 +S'Weather Vane' +p71387 +sg25270 +S'American 20th Century' +p71388 +sa(dp71389 +g25267 +g27 +sg25268 +S'Weather Vane Finial' +p71390 +sg25270 +S'Maurice Blumenfeld' +p71391 +sa(dp71392 +g25268 +S'Le curieux' +p71393 +sg25270 +S'Artist Information (' +p71394 +sg25273 +S'(artist after)' +p71395 +sg25275 +S'\n' +p71396 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f11.jpg' +p71397 +sg25267 +g27 +sa(dp71398 +g25267 +g27 +sg25268 +S'Weather Vane Rooster' +p71399 +sg25270 +S'Carl Strehlau' +p71400 +sa(dp71401 +g25267 +g27 +sg25268 +S'Weather Vane - Cock' +p71402 +sg25270 +S'Selma Sandler' +p71403 +sa(dp71404 +g25267 +g27 +sg25268 +S'Weather Vane' +p71405 +sg25270 +S'Robert Pohle' +p71406 +sa(dp71407 +g25267 +g27 +sg25268 +S'Weather Vane - Cock' +p71408 +sg25270 +S'Mina Lowry' +p71409 +sa(dp71410 +g25267 +g27 +sg25268 +S'Weather Vane' +p71411 +sg25270 +S'Beverly Chichester' +p71412 +sa(dp71413 +g25267 +g27 +sg25268 +S'Weather Vane - Cock' +p71414 +sg25270 +S'Ben Lassen' +p71415 +sa(dp71416 +g25267 +g27 +sg25268 +S'Metal Weather Vane' +p71417 +sg25270 +S'Helen E. Gilman' +p71418 +sa(dp71419 +g25267 +g27 +sg25268 +S'Weather Vane' +p71420 +sg25270 +S'Herbert Barnard' +p71421 +sa(dp71422 +g25267 +g27 +sg25268 +S'Cow Weather Vane' +p71423 +sg25270 +S'Wynna Wright' +p71424 +sa(dp71425 +g25267 +g27 +sg25268 +S'Weather Vane' +p71426 +sg25270 +S'Edward L. Loper' +p71427 +sa(dp71428 +g25268 +S'Le danger du tete-a-tete' +p71429 +sg25270 +S'Artist Information (' +p71430 +sg25273 +S'(artist after)' +p71431 +sg25275 +S'\n' +p71432 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000969a.jpg' +p71433 +sg25267 +g27 +sa(dp71434 +g25267 +g27 +sg25268 +S'Cow Weather Vane' +p71435 +sg25270 +S'American 20th Century' +p71436 +sa(dp71437 +g25267 +g27 +sg25268 +S'Weather Vane' +p71438 +sg25270 +S'Carl Strehlau' +p71439 +sa(dp71440 +g25267 +g27 +sg25268 +S'Weather Vane Finial' +p71441 +sg25270 +S'Salvatore Borrazzo' +p71442 +sa(dp71443 +g25267 +g27 +sg25268 +S'Weather Vane Finial' +p71444 +sg25270 +S'Salvatore Borrazzo' +p71445 +sa(dp71446 +g25267 +g27 +sg25268 +S'Weather Vane' +p71447 +sg25270 +S'Elmer G. Anderson' +p71448 +sa(dp71449 +g25267 +g27 +sg25268 +S'Weather Vane' +p71450 +sg25270 +S'Elmer G. Anderson' +p71451 +sa(dp71452 +g25267 +g27 +sg25268 +S'Weather Vane' +p71453 +sg25270 +S'Bernard Westmacott' +p71454 +sa(dp71455 +g25267 +g27 +sg25268 +S'Weather Vane' +p71456 +sg25270 +S'Rollington Campbell' +p71457 +sa(dp71458 +g25267 +g27 +sg25268 +S'Weather Vane' +p71459 +sg25270 +S'Nicholas Acampora' +p71460 +sa(dp71461 +g25267 +g27 +sg25268 +S'Weather Vane - Setter Dog' +p71462 +sg25270 +S'Gordon Sanborn' +p71463 +sa(dp71464 +g25268 +S"L'enlevement nocturne" +p71465 +sg25270 +S'Artist Information (' +p71466 +sg25273 +S'(artist after)' +p71467 +sg25275 +S'\n' +p71468 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009743.jpg' +p71469 +sg25267 +g27 +sa(dp71470 +g25267 +g27 +sg25268 +S'Eagle Weather Vane' +p71471 +sg25270 +S'Edward L. Loper' +p71472 +sa(dp71473 +g25267 +g27 +sg25268 +S'Weather Vane Finial' +p71474 +sg25270 +S'Helen Hobart' +p71475 +sa(dp71476 +g25267 +g27 +sg25268 +S'Weather Vane - Eagle' +p71477 +sg25270 +S'Milton Grubstein' +p71478 +sa(dp71479 +g25267 +g27 +sg25268 +S'Weather Vane' +p71480 +sg25270 +S'Harriette Gale' +p71481 +sa(dp71482 +g25267 +g27 +sg25268 +S'Weather Vane' +p71483 +sg25270 +S'Henry Tomaszewski' +p71484 +sa(dp71485 +g25267 +g27 +sg25268 +S'Fish Weather Vane' +p71486 +sg25270 +S'Sadie Berman' +p71487 +sa(dp71488 +g25267 +g27 +sg25268 +S'Fish Weather Vane' +p71489 +sg25270 +S'Elizabeth Fairchild' +p71490 +sa(dp71491 +g25267 +g27 +sg25268 +S'Weather Vane Finial' +p71492 +sg25270 +S'Nicholas Acampora' +p71493 +sa(dp71494 +g25267 +g27 +sg25268 +S'Weather Vane' +p71495 +sg25270 +S'James McLellan' +p71496 +sa(dp71497 +g25267 +g27 +sg25268 +S'Weather Vane' +p71498 +sg25270 +S'Selma Sandler' +p71499 +sa(dp71500 +g25268 +S"L'Epouse indiscrete" +p71501 +sg25270 +S'Artist Information (' +p71502 +sg25273 +S'(artist after)' +p71503 +sg25275 +S'\n' +p71504 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e6f.jpg' +p71505 +sg25267 +g27 +sa(dp71506 +g25267 +g27 +sg25268 +S'Weather Vane' +p71507 +sg25270 +S'Mina Lowry' +p71508 +sa(dp71509 +g25267 +g27 +sg25268 +S'Weather Vane Finial' +p71510 +sg25270 +S'Helen Hobart' +p71511 +sa(dp71512 +g25267 +g27 +sg25268 +S'Horse and Rider Weather Vane' +p71513 +sg25270 +S'George File' +p71514 +sa(dp71515 +g25267 +g27 +sg25268 +S'Weather Vane - Horse' +p71516 +sg25270 +S'Herman Bader' +p71517 +sa(dp71518 +g25267 +g27 +sg25268 +S'Weather Vane - Horse' +p71519 +sg25270 +S'Sadie Berman' +p71520 +sa(dp71521 +g25267 +g27 +sg25268 +S'Weather Vane - Horse' +p71522 +sg25270 +S'American 20th Century' +p71523 +sa(dp71524 +g25267 +g27 +sg25268 +S'Weather Vane - Horse' +p71525 +sg25270 +S'Nicholas Amantea' +p71526 +sa(dp71527 +g25267 +g27 +sg25268 +S'Weather Vane' +p71528 +sg25270 +S'Frank Gray' +p71529 +sa(dp71530 +g25267 +g27 +sg25268 +S'Small Metal Weather Vane' +p71531 +sg25270 +S'Laura Bilodeau' +p71532 +sa(dp71533 +g25267 +g27 +sg25268 +S'Small Sheep Weather Vane' +p71534 +sg25270 +S'Mildred E. Bent' +p71535 +sa(dp71536 +g25268 +S'Venus and Cupid in a Landscape' +p71537 +sg25270 +S'Artist Information (' +p71538 +sg25273 +S'Italian, 1477/1478 - 1510' +p71539 +sg25275 +S'(related artist)' +p71540 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000087e.jpg' +p71541 +sg25267 +S'\r\n Not all paintings in a Renaissance study would have been seen on the wall; even the greatest artists were called on to decorate everyday objects. In all probability this small panel was originally part of a box or cabinet. Under the bushy plant near the center is a keyhole, now filled and overpainted but visible in x-radiographs.\r\n\n \r\n Seated in a lyrical landscape, Venus, goddess of love, seems to be exchanging something—exactly what is no longer clear—with her son Cupid. Perhaps the scene illustrated some episode from an ancient myth—or perhaps the only “subject” is its poetic mood.\r\n\n ' +p71542 +sa(dp71543 +g25268 +S"L'Epouse indiscrete" +p71544 +sg25270 +S'Artist Information (' +p71545 +sg25273 +S'(artist after)' +p71546 +sg25275 +S'\n' +p71547 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096cf.jpg' +p71548 +sg25267 +g27 +sa(dp71549 +g25267 +g27 +sg25268 +S'Pig Weather Vane' +p71550 +sg25270 +S'Marian Page' +p71551 +sa(dp71552 +g25267 +g27 +sg25268 +S'Pig Weather Vane' +p71553 +sg25270 +S'Salvatore Borrazzo' +p71554 +sa(dp71555 +g25267 +g27 +sg25268 +S'Weather Vane Peacock' +p71556 +sg25270 +S'Selma Sandler' +p71557 +sa(dp71558 +g25267 +g27 +sg25268 +S'Ostrich Weather Vane' +p71559 +sg25270 +S'Herman Bader' +p71560 +sa(dp71561 +g25267 +g27 +sg25268 +S'Metal Indian Weather Vane' +p71562 +sg25270 +S'John W. Kelleher' +p71563 +sa(dp71564 +g25267 +g27 +sg25268 +S'Indian Weather Vane' +p71565 +sg25270 +S'Rollington Campbell' +p71566 +sa(dp71567 +g25267 +g27 +sg25268 +S'Indian Chief Weather Vane' +p71568 +sg25270 +S'Edward L. Loper' +p71569 +sa(dp71570 +g25267 +g27 +sg25268 +S'Weather Vane' +p71571 +sg25270 +S'Samuel Fineman' +p71572 +sa(dp71573 +g25267 +g27 +sg25268 +S'Copper Weather Vane' +p71574 +sg25270 +S'Victor F. Muollo' +p71575 +sa(dp71576 +g25267 +g27 +sg25268 +S'Weather Vane Finial' +p71577 +sg25270 +S'Milton Grubstein' +p71578 +sa(dp71579 +g25268 +S"Le fruit de l'amour secret" +p71580 +sg25270 +S'Artist Information (' +p71581 +sg25273 +S'(artist after)' +p71582 +sg25275 +S'\n' +p71583 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009754.jpg' +p71584 +sg25267 +g27 +sa(dp71585 +g25267 +g27 +sg25268 +S'Weather Vane' +p71586 +sg25270 +S'Samuel W. Ford' +p71587 +sa(dp71588 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00051/a0005166.jpg' +p71589 +sg25268 +S'Weather Vane' +p71590 +sg25270 +S'Joseph Goldberg' +p71591 +sa(dp71592 +g25267 +g27 +sg25268 +S'Weather Vane Finial' +p71593 +sg25270 +S'Philip Johnson' +p71594 +sa(dp71595 +g25267 +g27 +sg25268 +S'Galloping Horse Weather Vane' +p71596 +sg25270 +S'Chris Makrenos' +p71597 +sa(dp71598 +g25267 +g27 +sg25268 +S'Horse Weather Vane' +p71599 +sg25270 +S'Chris Makrenos' +p71600 +sa(dp71601 +g25267 +g27 +sg25268 +S'Weather Vane Finial' +p71602 +sg25270 +S'Isidore Sovensky' +p71603 +sa(dp71604 +g25267 +g27 +sg25268 +S'Horse Weather Vane' +p71605 +sg25270 +S'Rollington Campbell' +p71606 +sa(dp71607 +g25267 +g27 +sg25268 +S'Horse and Rider Weather Vane' +p71608 +sg25270 +S'Helen Hobart' +p71609 +sa(dp71610 +g25267 +g27 +sg25268 +S'Prairie Horse Weather Vane' +p71611 +sg25270 +S'Salvatore Borrazzo' +p71612 +sa(dp71613 +g25267 +g27 +sg25268 +S'Weather Vane' +p71614 +sg25270 +S'Rollington Campbell' +p71615 +sa(dp71616 +g25268 +S'Le Gouter' +p71617 +sg25270 +S'Artist Information (' +p71618 +sg25273 +S'(artist after)' +p71619 +sg25275 +S'\n' +p71620 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f40.jpg' +p71621 +sg25267 +g27 +sa(dp71622 +g25267 +g27 +sg25268 +S'Horse Weather Vane' +p71623 +sg25270 +S'Gordon Sanborn' +p71624 +sa(dp71625 +g25267 +g27 +sg25268 +S'Two Weather Vanes' +p71626 +sg25270 +S'Elmer G. Anderson' +p71627 +sa(dp71628 +g25267 +g27 +sg25268 +S'Metal Weather Vane' +p71629 +sg25270 +S'Frances Cohen' +p71630 +sa(dp71631 +g25267 +g27 +sg25268 +S'Weather Vane Finial' +p71632 +sg25270 +S'Adolph Opstad' +p71633 +sa(dp71634 +g25267 +g27 +sg25268 +S'Cow Weather Vane' +p71635 +sg25270 +S'Philip Johnson' +p71636 +sa(dp71637 +g25267 +g27 +sg25268 +S'Weather Vane Finial' +p71638 +sg25270 +S'Michael Chomyk' +p71639 +sa(dp71640 +g25267 +g27 +sg25268 +S'Weather Vane - Scroll with Index' +p71641 +sg25270 +S'Helen Hobart' +p71642 +sa(dp71643 +g25267 +g27 +sg25268 +S'Weather Vane' +p71644 +sg25270 +S'E.J. Gilsleider' +p71645 +sa(dp71646 +g25267 +g27 +sg25268 +S'Bed Warming Pan' +p71647 +sg25270 +S'Sarkis Erganian' +p71648 +sa(dp71649 +g25267 +S'Brass is an alloy of copper and zinc that was popular with early artisans for\n making a variety of household articles. Brass is hard yet malleable and will\n take a high polish. Because of the bright, golden beauty of this metal, articles\n such as andirons, candlesticks, and other accessories were made of brass for fine\n drawing rooms. This brass warming pan was used to warm cold bedsheets on a wintry\n night. Bedwarmers were a practical necessity in cold climates until modern heating\n systems came into existence. This bedwarmer was constructed with a hinged lid\n covering a pan several inches deep into which hot coals were usually placed. Holes\n perforated in the lid allowed smoke to escape. Wooden handles, often several feet\n long, were attached to eighteenth-century warming pans like this one. This pan\n was cast from a sand mold. The rims of the lid and the base were reinforced with\n wire to strengthen the edges and to provide a neat appearance. After the pan was\n cast, it was polished by hand to achieve a bright shine. The lid decoration was\n embossed, a process done by hammer and chisel. The pattern of wavy lines, the flowers,\n and the rooster lend a folk art quality to the design.\n ' +p71650 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002e5.jpg' +p71651 +sg25268 +S'Bed Warming Pan' +p71652 +sg25270 +S'V.L. Vance' +p71653 +sa(dp71654 +g25268 +S'Le Gouter' +p71655 +sg25270 +S'Artist Information (' +p71656 +sg25273 +S'(artist after)' +p71657 +sg25275 +S'\n' +p71658 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f3f.jpg' +p71659 +sg25267 +g27 +sa(dp71660 +g25267 +g27 +sg25268 +S'Wall Paper' +p71661 +sg25270 +S'Charlotte Angus' +p71662 +sa(dp71663 +g25267 +g27 +sg25268 +S'Wall Paper Border' +p71664 +sg25270 +S'Frances Lichten' +p71665 +sa(dp71666 +g25267 +g27 +sg25268 +S'Wall Paper' +p71667 +sg25270 +S'Holger Hansen' +p71668 +sa(dp71669 +g25267 +g27 +sg25268 +S'Wall Paper' +p71670 +sg25270 +S'Albert Levone' +p71671 +sa(dp71672 +g25267 +g27 +sg25268 +S'Weather Vane - "Goddess of Liberty"' +p71673 +sg25270 +S'David Ramage' +p71674 +sa(dp71675 +g25267 +g27 +sg25268 +S'Horse Weather Vane' +p71676 +sg25270 +S'Joseph Rothenberg' +p71677 +sa(dp71678 +g25267 +g27 +sg25268 +S'Wooden Horse Weather Vane' +p71679 +sg25270 +S'Alfred H. Smith' +p71680 +sa(dp71681 +g25267 +g27 +sg25268 +S'Black Horse Weather Vane' +p71682 +sg25270 +S'Beatrice DeKalb' +p71683 +sa(dp71684 +g25267 +g27 +sg25268 +S'Horse Weather Vane' +p71685 +sg25270 +S'Mildred E. Bent' +p71686 +sa(dp71687 +g25267 +g27 +sg25268 +S'Running Horse Weather Vane' +p71688 +sg25270 +S'Alfred Denghausen' +p71689 +sa(dp71690 +g25268 +S'Le D\xc3\xa9jeun\xc3\xa9' +p71691 +sg25270 +S'Artist Information (' +p71692 +sg25273 +S'(artist after)' +p71693 +sg25275 +S'\n' +p71694 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f41.jpg' +p71695 +sg25267 +g27 +sa(dp71696 +g25267 +g27 +sg25268 +S'Weather Vane' +p71697 +sg25270 +S'Helen D. Bashian' +p71698 +sa(dp71699 +g25267 +g27 +sg25268 +S'Horse Weather Vane' +p71700 +sg25270 +S'Lloyd Broome' +p71701 +sa(dp71702 +g25267 +g27 +sg25268 +S'Weather Vane' +p71703 +sg25270 +S'Robert Pohle' +p71704 +sa(dp71705 +g25267 +g27 +sg25268 +S'Weather Vane' +p71706 +sg25270 +S'Mina Lowry' +p71707 +sa(dp71708 +g25267 +g27 +sg25268 +S'Horse Weather Vane' +p71709 +sg25270 +S'Gordon Sanborn' +p71710 +sa(dp71711 +g25267 +g27 +sg25268 +S'Weather Vane' +p71712 +sg25270 +S'John Sullivan' +p71713 +sa(dp71714 +g25267 +g27 +sg25268 +S'Weather Vane' +p71715 +sg25270 +S'Selma Sandler' +p71716 +sa(dp71717 +g25267 +g27 +sg25268 +S'Weather Vane' +p71718 +sg25270 +S'Joseph Stonefield' +p71719 +sa(dp71720 +g25267 +g27 +sg25268 +S'Whale Weather Vane' +p71721 +sg25270 +S'Marian Page' +p71722 +sa(dp71723 +g25267 +g27 +sg25268 +S'Whale Weather Vane' +p71724 +sg25270 +S'Albert Ryder' +p71725 +sa(dp71726 +g25268 +S'Le jardinier galant' +p71727 +sg25270 +S'Artist Information (' +p71728 +sg25273 +S'(artist after)' +p71729 +sg25275 +S'\n' +p71730 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009712.jpg' +p71731 +sg25267 +g27 +sa(dp71732 +g25267 +g27 +sg25268 +S'Weather Vane' +p71733 +sg25270 +S'Donald Donovan' +p71734 +sa(dp71735 +g25267 +g27 +sg25268 +S'Swordfish Weather Vane' +p71736 +sg25270 +S'Robert Pohle' +p71737 +sa(dp71738 +g25267 +g27 +sg25268 +S'Fish Weather Vane' +p71739 +sg25270 +S'Frances Matsubara' +p71740 +sa(dp71741 +g25267 +g27 +sg25268 +S'Running Dog Weather Vane' +p71742 +sg25270 +S'Gordon Sanborn' +p71743 +sa(dp71744 +g25267 +g27 +sg25268 +S'Geometric Weather Vane' +p71745 +sg25270 +S'Laura Bilodeau' +p71746 +sa(dp71747 +g25267 +g27 +sg25268 +S'Weather Vane' +p71748 +sg25270 +S'Robert Pohle' +p71749 +sa(dp71750 +g25267 +g27 +sg25268 +S'Weather Vane' +p71751 +sg25270 +S'Elmer Weise' +p71752 +sa(dp71753 +g25267 +g27 +sg25268 +S'Weather Vane' +p71754 +sg25270 +S'Bernard Westmacott' +p71755 +sa(dp71756 +g25267 +g27 +sg25268 +S'Weather Vane' +p71757 +sg25270 +S'Joseph Stonefield' +p71758 +sa(dp71759 +g25267 +g27 +sg25268 +S'Weather Vane' +p71760 +sg25270 +S'Bernard Westmacott' +p71761 +sa(dp71762 +g25268 +S'Jusques dans la moindre chose' +p71763 +sg25270 +S'Artist Information (' +p71764 +sg25273 +S'(artist after)' +p71765 +sg25275 +S'\n' +p71766 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d39.jpg' +p71767 +sg25267 +g27 +sa(dp71768 +g25267 +g27 +sg25268 +S'Weather Vane' +p71769 +sg25270 +S'Mildred E. Bent' +p71770 +sa(dp71771 +g25267 +g27 +sg25268 +S'Weather Vane' +p71772 +sg25270 +S'Jerome Hoxie' +p71773 +sa(dp71774 +g25267 +g27 +sg25268 +S'Whirligig: Hessian Soldier' +p71775 +sg25270 +S'Mina Lowry' +p71776 +sa(dp71777 +g25267 +g27 +sg25268 +S'Whirligig' +p71778 +sg25270 +S'Joseph Stonefield' +p71779 +sa(dp71780 +g25267 +g27 +sg25268 +S'Whirligig' +p71781 +sg25270 +S'Mina Lowry' +p71782 +sa(dp71783 +g25267 +g27 +sg25268 +S'Whirligig' +p71784 +sg25270 +S'Bernard Westmacott' +p71785 +sa(dp71786 +g25267 +g27 +sg25268 +S'Whirligig' +p71787 +sg25270 +S'Bernard Westmacott' +p71788 +sa(dp71789 +g25267 +g27 +sg25268 +S'Whirligig' +p71790 +sg25270 +S'Bernard Westmacott' +p71791 +sa(dp71792 +g25267 +S'This carved figure is a whirligig. Used as both a toy and a weather vane, the whirligig was made so that the paddlelike arms could rotate in the wind. The head and body are made from a single piece of wood while the arms are attached by a rod \n that passes through the shoulders. Made about 1840, this whirligig was probably carved by an amateur.\n ' +p71793 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000376.jpg' +p71794 +sg25268 +S'Whirligig' +p71795 +sg25270 +S'Mina Lowry' +p71796 +sa(dp71797 +g25267 +g27 +sg25268 +S'Quirt' +p71798 +sg25270 +S'Flora G. Guerra' +p71799 +sa(dp71800 +g25268 +S'Jusques dans la moindre chose' +p71801 +sg25270 +S'Artist Information (' +p71802 +sg25273 +S'(artist after)' +p71803 +sg25275 +S'\n' +p71804 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000960b.jpg' +p71805 +sg25267 +g27 +sa(dp71806 +g25267 +g27 +sg25268 +S'Whip Socket' +p71807 +sg25270 +S'William McAuley' +p71808 +sa(dp71809 +g25267 +g27 +sg25268 +S"Rawhide Herder's Whip" +p71810 +sg25270 +S'Alexander Anderson' +p71811 +sa(dp71812 +g25267 +g27 +sg25268 +S'Carriage Whip' +p71813 +sg25270 +S'Columbus Simpson' +p71814 +sa(dp71815 +g25267 +g27 +sg25268 +S'Whiffle Tree End' +p71816 +sg25270 +S'Henry Tomaszewski' +p71817 +sa(dp71818 +g25267 +g27 +sg25268 +S'Wheel Barrow' +p71819 +sg25270 +S'Geoffrey Holt' +p71820 +sa(dp71821 +g25267 +g27 +sg25268 +S'Wetting Cup' +p71822 +sg25270 +S'Julius Bellamy' +p71823 +sa(dp71824 +g25267 +g27 +sg25268 +S'Sheep Weather Vane' +p71825 +sg25270 +S'Laura Bilodeau' +p71826 +sa(dp71827 +g25267 +g27 +sg25268 +S'Cock Weather Vane' +p71828 +sg25270 +S'Joseph Rothenberg' +p71829 +sa(dp71830 +g25267 +g27 +sg25268 +S'Cock Weather Vane' +p71831 +sg25270 +S'Gordon Sanborn' +p71832 +sa(dp71833 +g25267 +g27 +sg25268 +S'Cock Weather Vane' +p71834 +sg25270 +S'Rollington Campbell' +p71835 +sa(dp71836 +g25268 +S'Marton' +p71837 +sg25270 +S'Artist Information (' +p71838 +sg25273 +S'(artist after)' +p71839 +sg25275 +S'\n' +p71840 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c70.jpg' +p71841 +sg25267 +g27 +sa(dp71842 +g25267 +g27 +sg25268 +S'Cock Weather Vane' +p71843 +sg25270 +S'Hazel Hyde' +p71844 +sa(dp71845 +g25267 +g27 +sg25268 +S'Weather Vane' +p71846 +sg25270 +S'Elmer G. Anderson' +p71847 +sa(dp71848 +g25267 +g27 +sg25268 +S'Weather Vane' +p71849 +sg25270 +S'Elmer G. Anderson' +p71850 +sa(dp71851 +g25267 +g27 +sg25268 +S'Weather Vane' +p71852 +sg25270 +S'Roger Deats' +p71853 +sa(dp71854 +g25267 +g27 +sg25268 +S'Single Ox Yoke' +p71855 +sg25270 +S'Orville Skaren' +p71856 +sa(dp71857 +g25267 +g27 +sg25268 +S'Double Ox Yoke' +p71858 +sg25270 +S'Ethel Dougan' +p71859 +sa(dp71860 +g25267 +g27 +sg25268 +S'Yoke for Oxen' +p71861 +sg25270 +S'Rose Campbell-Gerke' +p71862 +sa(dp71863 +g25267 +g27 +sg25268 +S'Shoulder Yoke' +p71864 +sg25270 +S'Albert Geuppert' +p71865 +sa(dp71866 +g25267 +g27 +sg25268 +S'Oxen Yoke' +p71867 +sg25270 +S'Cornelius Frazier' +p71868 +sa(dp71869 +g25267 +g27 +sg25268 +S'Oxen Yoke' +p71870 +sg25270 +S'Hans Mangelsdorf' +p71871 +sa(dp71872 +g25268 +S'Sa taille est ravissante' +p71873 +sg25270 +S'Artist Information (' +p71874 +sg25273 +S'(artist after)' +p71875 +sg25275 +S'\n' +p71876 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ee7.jpg' +p71877 +sg25267 +g27 +sa(dp71878 +g25267 +g27 +sg25268 +S'Oxen Yoke' +p71879 +sg25270 +S'Earl Butlin' +p71880 +sa(dp71881 +g25267 +g27 +sg25268 +S'Writing Desk Set' +p71882 +sg25270 +S'Ursula Lauderdale' +p71883 +sa(dp71884 +g25267 +g27 +sg25268 +S'Wrench for Tightening Rope Bed' +p71885 +sg25270 +S'Albert Geuppert' +p71886 +sa(dp71887 +g25267 +g27 +sg25268 +S'Pipe Wrench' +p71888 +sg25270 +S'Herman O. Stroh' +p71889 +sa(dp71890 +g25267 +g27 +sg25268 +S'Cemetary Wreath' +p71891 +sg25270 +S'Al Curry' +p71892 +sa(dp71893 +g25267 +g27 +sg25268 +S'Feather Wreath' +p71894 +sg25270 +S'Artist Information (' +p71895 +sa(dp71896 +g25267 +g27 +sg25268 +S'Well with Movable Beam' +p71897 +sg25270 +S'Majel G. Claflin' +p71898 +sa(dp71899 +g25267 +g27 +sg25268 +S'Whirligig' +p71900 +sg25270 +S'Selma Sandler' +p71901 +sa(dp71902 +g25267 +g27 +sg25268 +S'Whirligig' +p71903 +sg25270 +S'Mina Lowry' +p71904 +sa(dp71905 +g25267 +g27 +sg25268 +S'Sailor Jack Whirligig' +p71906 +sg25270 +S'Jane Iverson' +p71907 +sa(dp71908 +g25268 +S'The Crucifixion' +p71909 +sg25270 +S'Paolo Veneziano' +p71910 +sg25273 +S'tempera on panel' +p71911 +sg25275 +S'c. 1340' +p71912 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a09.jpg' +p71913 +sg25267 +S"The poet Petrarch called Venice “a world apart.” Protected by a\r\n bewildering\r\n network of canals, the city naturally turned to the sea and, in the\r\n thirteenth\r\n and fourteenth centuries, commanded an extensive empire in the\r\n eastern\r\n Mediterranean. When Venetian commercial interests diverted the\r\n Fourth\r\n Crusade from the Holy Land to loot the riches of Byzantium instead,\r\n many\r\n Greek artists were forced to find work in Italy.\n That the city remained tied to its Byzantine traditions is\r\n evident in\r\n the work of Paolo Veneziano, the first Venetian artist we know by\r\n name. If\r\n he was aware of the more naturalistic styles of his contemporaries\r\n in other\r\n parts of Italy, he chose not to emulate them. This painting’s small\r\n size\r\n and arched shape suggest that it might have originally crowned a\r\n larger\r\n panel in a multipart altarpiece. Paolo’s style is essentially\r\n Byzantine,\r\n with ethereal figures and flat gold backgrounds. But his form—the\r\n altarpiece—is a Western one.\n Paolo's \n " +p71914 +sa(dp71915 +g25268 +S'Sa taille est ravissante' +p71916 +sg25270 +S'Artist Information (' +p71917 +sg25273 +S'(artist after)' +p71918 +sg25275 +S'\n' +p71919 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ee5.jpg' +p71920 +sg25267 +g27 +sa(dp71921 +g25267 +g27 +sg25268 +S'Wooden Whirligig' +p71922 +sg25270 +S'Laura Bilodeau' +p71923 +sa(dp71924 +g25267 +g27 +sg25268 +S'Whirligig' +p71925 +sg25270 +S'Isabelle De Strange' +p71926 +sa(dp71927 +g25267 +g27 +sg25268 +S'Horse Weather Vane' +p71928 +sg25270 +S'Robert Barton' +p71929 +sa(dp71930 +g25267 +g27 +sg25268 +S'Weather Vane' +p71931 +sg25270 +S'Joseph Rothenberg' +p71932 +sa(dp71933 +g25267 +g27 +sg25268 +S'Fish Weather Vane' +p71934 +sg25270 +S'Michael Riccitelli' +p71935 +sa(dp71936 +g25267 +g27 +sg25268 +S'Fish Shop Sign' +p71937 +sg25270 +S'Henry Murphy' +p71938 +sa(dp71939 +g25267 +g27 +sg25268 +S'Fish Weather Vane' +p71940 +sg25270 +S'Albert Ryder' +p71941 +sa(dp71942 +g25267 +g27 +sg25268 +S'Weather Vane' +p71943 +sg25270 +S'Frank Budash' +p71944 +sa(dp71945 +g25267 +g27 +sg25268 +S'Weather Vane' +p71946 +sg25270 +S'Frank Budash' +p71947 +sa(dp71948 +g25267 +g27 +sg25268 +S'Weather Vane Pattern' +p71949 +sg25270 +S'Winifred Luten' +p71950 +sa(dp71951 +g25268 +S'Le lever' +p71952 +sg25270 +S'Artist Information (' +p71953 +sg25273 +S'(artist after)' +p71954 +sg25275 +S'\n' +p71955 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009612.jpg' +p71956 +sg25267 +g27 +sa(dp71957 +g25267 +g27 +sg25268 +S'Weather Vane' +p71958 +sg25270 +S'Louis Plogsted' +p71959 +sa(dp71960 +g25267 +g27 +sg25268 +S'Weather Vane - Angel Gabriel' +p71961 +sg25270 +S'Howard Weld' +p71962 +sa(dp71963 +g25267 +g27 +sg25268 +S'Bucket Yoke' +p71964 +sg25270 +S'Bessie Vandre' +p71965 +sa(dp71966 +g25267 +g27 +sg25268 +S'Head Pad' +p71967 +sg25270 +S'John Wilkes' +p71968 +sa(dp71969 +g25267 +g27 +sg25268 +S'Zoar Plaids' +p71970 +sg25270 +S'Jerry Guinta' +p71971 +sa(dp71972 +g25267 +g27 +sg25268 +S'Zoar Cloth Samples' +p71973 +sg25270 +S'Jerry Guinta' +p71974 +sa(dp71975 +g25267 +g27 +sg25268 +S'Zoar Linens' +p71976 +sg25270 +S'Jerry Guinta' +p71977 +sa(dp71978 +g25267 +g27 +sg25268 +S'Zoar Flute Recorder' +p71979 +sg25270 +S'Jerry Guinta' +p71980 +sa(dp71981 +g25267 +g27 +sg25268 +S'Zoar Blue Bonnet Cabinet' +p71982 +sg25270 +S'Angelo Bulone' +p71983 +sa(dp71984 +g25267 +g27 +sg25268 +S'Hair Ornaments' +p71985 +sg25270 +S'Jerry Guinta' +p71986 +sa(dp71987 +g25268 +S'La toilette' +p71988 +sg25270 +S'Artist Information (' +p71989 +sg25273 +S'(artist)' +p71990 +sg25275 +S'\n' +p71991 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009663.jpg' +p71992 +sg25267 +g27 +sa(dp71993 +g25267 +g27 +sg25268 +S'Zoar Fractur Drawing' +p71994 +sg25270 +S'John Wilkes' +p71995 +sa(dp71996 +g25267 +g27 +sg25268 +S'Zoar Bonnet' +p71997 +sg25270 +S'Fritz Boehmer' +p71998 +sa(dp71999 +g25267 +g27 +sg25268 +S'Zoar Summer Bonnet' +p72000 +sg25270 +S'Fritz Boehmer' +p72001 +sa(dp72002 +g25267 +g27 +sg25268 +S"Figurehead: Turk's Head" +p72003 +sg25270 +S'Henry Murphy' +p72004 +sa(dp72005 +g25267 +g27 +sg25268 +S'Figurehead from "Kenilworth"' +p72006 +sg25270 +S'Curry M. Bartlett' +p72007 +sa(dp72008 +g25267 +g27 +sg25268 +S'Head from Barnum Circus Wagon' +p72009 +sg25270 +S'Robert Galvin' +p72010 +sa(dp72011 +g25267 +g27 +sg25268 +S'Head from Circus Wagon' +p72012 +sg25270 +S'Alvin M. Gully' +p72013 +sa(dp72014 +g25267 +g27 +sg25268 +S'Figurehead' +p72015 +sg25270 +S'George Constantine' +p72016 +sa(dp72017 +g25267 +g27 +sg25268 +S"Ship's Sternpiece" +p72018 +sg25270 +S'Albert Ryder' +p72019 +sa(dp72020 +g25267 +g27 +sg25268 +S"Ship's Figurehead" +p72021 +sg25270 +S'Alice Cosgrove' +p72022 +sa(dp72023 +g25268 +S'Le matin' +p72024 +sg25270 +S'Artist Information (' +p72025 +sg25273 +S'(artist after)' +p72026 +sg25275 +S'\n' +p72027 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f7e.jpg' +p72028 +sg25267 +g27 +sa(dp72029 +g25267 +g27 +sg25268 +S'Stern Board Carving' +p72030 +sg25270 +S'Sumner Merrill' +p72031 +sa(dp72032 +g25267 +g27 +sg25268 +S"Ship's Figurehead" +p72033 +sg25270 +S'Louis Plogsted' +p72034 +sa(dp72035 +g25267 +g27 +sg25268 +S'Figurehead' +p72036 +sg25270 +S'Nicholas Amantea' +p72037 +sa(dp72038 +g25267 +g27 +sg25268 +S'Figurehead: "Henry Clay"' +p72039 +sg25270 +S'Mina Lowry' +p72040 +sa(dp72041 +g25267 +g27 +sg25268 +S'Figurehead: "The Highlander"' +p72042 +sg25270 +S'Ingrid Selmer-Larsen' +p72043 +sa(dp72044 +g25267 +g27 +sg25268 +S"Ship's Figurehead" +p72045 +sg25270 +S'Lucille Lacoursiere' +p72046 +sa(dp72047 +g25267 +g27 +sg25268 +S'Figurehead: "Cassandra Adams"' +p72048 +sg25270 +S'Rosamond P. Gray' +p72049 +sa(dp72050 +g25267 +g27 +sg25268 +S'Figurehead of Rembrandt' +p72051 +sg25270 +S'Frances Cohen' +p72052 +sa(dp72053 +g25267 +g27 +sg25268 +S'Figurehead of Andrew Jackson' +p72054 +sg25270 +S'Joseph Goldberg' +p72055 +sa(dp72056 +g25267 +g27 +sg25268 +S'Figurehead: "Hercules"' +p72057 +sg25270 +S'John W. Kelleher' +p72058 +sa(dp72059 +g25268 +S'Le midi' +p72060 +sg25270 +S'Artist Information (' +p72061 +sg25273 +S'(artist after)' +p72062 +sg25275 +S'\n' +p72063 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f8b.jpg' +p72064 +sg25267 +g27 +sa(dp72065 +g25267 +g27 +sg25268 +S'Figurehead: "Brooks Walker"' +p72066 +sg25270 +S'F.W. Powell' +p72067 +sa(dp72068 +g25267 +g27 +sg25268 +S'Figurehead: Indian' +p72069 +sg25270 +S'Ingrid Selmer-Larsen' +p72070 +sa(dp72071 +g25267 +g27 +sg25268 +S'Figurehead' +p72072 +sg25270 +S'Elizabeth Moutal' +p72073 +sa(dp72074 +g25267 +g27 +sg25268 +S'Figurehead: "Belle of Bath"' +p72075 +sg25270 +S'Alton K. Skillin' +p72076 +sa(dp72077 +g25267 +g27 +sg25268 +S'Figurehead from Schooner "Polly"' +p72078 +sg25270 +S'Alton K. Skillin' +p72079 +sa(dp72080 +g25267 +g27 +sg25268 +S'Small Figurehead' +p72081 +sg25270 +S'Flora Merchant' +p72082 +sa(dp72083 +g25267 +g27 +sg25268 +S'Jenny Lind Figurehead' +p72084 +sg25270 +S'Isabella Ruth Doerfler' +p72085 +sa(dp72086 +g25267 +g27 +sg25268 +S'Sternpiece' +p72087 +sg25270 +S'Albert Gold' +p72088 +sa(dp72089 +g25267 +g27 +sg25268 +S'Figurehead: Benjamin Franklin' +p72090 +sg25270 +S'American 20th Century' +p72091 +sa(dp72092 +g25267 +g27 +sg25268 +S'Figurehead: Naval Officer' +p72093 +sg25270 +S'Rosamond P. Gray' +p72094 +sa(dp72095 +g25268 +S'Le soir' +p72096 +sg25270 +S'Artist Information (' +p72097 +sg25273 +S'(artist after)' +p72098 +sg25275 +S'\n' +p72099 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f7d.jpg' +p72100 +sg25267 +g27 +sa(dp72101 +g25267 +g27 +sg25268 +S'Figurehead' +p72102 +sg25270 +S'John Sullivan' +p72103 +sa(dp72104 +g25267 +g27 +sg25268 +S'Peacock Cabin Decoration' +p72105 +sg25270 +S'Flora Merchant' +p72106 +sa(dp72107 +g25267 +g27 +sg25268 +S'Spread Eagle Relief' +p72108 +sg25270 +S'Flora Merchant' +p72109 +sa(dp72110 +g25267 +g27 +sg25268 +S'Eagle' +p72111 +sg25270 +S'Flora Merchant' +p72112 +sa(dp72113 +g25267 +g27 +sg25268 +S'Eagle with Cannon' +p72114 +sg25270 +S'Hazel Hyde' +p72115 +sa(dp72116 +g25267 +g27 +sg25268 +S'Eagle from Tugboat Wheelhouse' +p72117 +sg25270 +S'John W. Kelleher' +p72118 +sa(dp72119 +g25267 +g27 +sg25268 +S'Billethead' +p72120 +sg25270 +S'Marian Page' +p72121 +sa(dp72122 +g25267 +g27 +sg25268 +S'Billet Head' +p72123 +sg25270 +S'Joseph Goldberg' +p72124 +sa(dp72125 +g25267 +g27 +sg25268 +S'Stern Carving: Spread Eagle' +p72126 +sg25270 +S'Flora Merchant' +p72127 +sa(dp72128 +g25267 +S'The stern of the ship was usually decorated with a sternboard or sternpiece, such as the one shown here.\n The eagle was a favorite motif, but other subjects included allegorical figures, the American Indian, and\n occasionally the shipowner or his wife. This sternpiece was made for the \n ' +p72129 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003f4.jpg' +p72130 +sg25268 +S'Sternpiece' +p72131 +sg25270 +S'American 20th Century' +p72132 +sa(dp72133 +g25268 +S'La nuit' +p72134 +sg25270 +S'Artist Information (' +p72135 +sg25273 +S'(artist after)' +p72136 +sg25275 +S'\n' +p72137 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f78.jpg' +p72138 +sg25267 +g27 +sa(dp72139 +g25267 +g27 +sg25268 +S"Ship's Carving" +p72140 +sg25270 +S'Albert Rudin' +p72141 +sa(dp72142 +g25267 +g27 +sg25268 +S'Eagle: Pilot House Ornament' +p72143 +sg25270 +S'Molly Bodenstein' +p72144 +sa(dp72145 +g25267 +g27 +sg25268 +S'Figurehead from "The Black Prince"' +p72146 +sg25270 +S'Molly Bodenstein' +p72147 +sa(dp72148 +g25267 +g27 +sg25268 +S'Figurehead: "Emma"' +p72149 +sg25270 +S'Molly Bodenstein' +p72150 +sa(dp72151 +g25267 +g27 +sg25268 +S'Figurehead: Abe Lincoln' +p72152 +sg25270 +S'Frances Cohen' +p72153 +sa(dp72154 +g25267 +g27 +sg25268 +S'Figurehead: "Ceres"' +p72155 +sg25270 +S'Elizabeth Fairchild' +p72156 +sa(dp72157 +g25267 +g27 +sg25268 +S'Figurehead' +p72158 +sg25270 +S'Elisabeth Fulda' +p72159 +sa(dp72160 +g25267 +g27 +sg25268 +S'Figurehead: Julius Caesar' +p72161 +sg25270 +S'American 20th Century' +p72162 +sa(dp72163 +g25267 +g27 +sg25268 +S'Carved Cat Head Gargoyle' +p72164 +sg25270 +S'Alton K. Skillin' +p72165 +sa(dp72166 +g25267 +g27 +sg25268 +S'Figurehead: Eagle' +p72167 +sg25270 +S'Frances Cohen' +p72168 +sa(dp72169 +g25268 +S'Marchez tout doux, parlez tout bas' +p72170 +sg25270 +S'Artist Information (' +p72171 +sg25273 +S'(artist after)' +p72172 +sg25275 +S'\n' +p72173 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f5a.jpg' +p72174 +sg25267 +g27 +sa(dp72175 +g25267 +g27 +sg25268 +S"Bear's Head" +p72176 +sg25270 +S'Laura Bilodeau' +p72177 +sa(dp72178 +g25267 +g27 +sg25268 +S'Sternpiece: Eagle' +p72179 +sg25270 +S'American 20th Century' +p72180 +sa(dp72181 +g25267 +g27 +sg25268 +S'Eagle from USS Enterprise' +p72182 +sg25270 +S'American 20th Century' +p72183 +sa(dp72184 +g25267 +g27 +sg25268 +S'Figurehead from the "Diadem"' +p72185 +sg25270 +S'Hazel Hyde' +p72186 +sa(dp72187 +g25267 +g27 +sg25268 +S'Billet Head: Eagle' +p72188 +sg25270 +S'Dorothy Van Dunker' +p72189 +sa(dp72190 +g25267 +g27 +sg25268 +S'Carved Eagle' +p72191 +sg25270 +S'Alice Cosgrove' +p72192 +sa(dp72193 +g25267 +g27 +sg25268 +S"Ship Chandler's Sign" +p72194 +sg25270 +S'Robert Pohle' +p72195 +sa(dp72196 +g25267 +g27 +sg25268 +S'Cigar Store Figure: Clown' +p72197 +sg25270 +S'Robert Pohle' +p72198 +sa(dp72199 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p72200 +sg25270 +S'Henry Murphy' +p72201 +sa(dp72202 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p72203 +sg25270 +S'Samuel Philpot' +p72204 +sa(dp72205 +g25268 +S'Le mod\xc3\xa8le honn\xc3\xaate' +p72206 +sg25270 +S'Artist Information (' +p72207 +sg25273 +S'(artist after)' +p72208 +sg25275 +S'\n' +p72209 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009737.jpg' +p72210 +sg25267 +g27 +sa(dp72211 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p72212 +sg25270 +S'Violet Hartenstein' +p72213 +sa(dp72214 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p72215 +sg25270 +S'Einar Heiberg' +p72216 +sa(dp72217 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p72218 +sg25270 +S'Elmer R. Kottcamp' +p72219 +sa(dp72220 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p72221 +sg25270 +S'Einar Heiberg' +p72222 +sa(dp72223 +g25267 +g27 +sg25268 +S'Cigar Store Man' +p72224 +sg25270 +S'Alvin M. Gully' +p72225 +sa(dp72226 +g25267 +g27 +sg25268 +S'Cigar Store Figure - Blackamoor' +p72227 +sg25270 +S'Dorothy Handy' +p72228 +sa(dp72229 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p72230 +sg25270 +S'Joseph Goldberg' +p72231 +sa(dp72232 +g25267 +g27 +sg25268 +S'"Bell in Hand" Tavern Sign' +p72233 +sg25270 +S'American 20th Century' +p72234 +sa(dp72235 +g25267 +g27 +sg25268 +S'Hotel Porter Figure' +p72236 +sg25270 +S'Alvin M. Gully' +p72237 +sa(dp72238 +g25267 +g27 +sg25268 +S'Tavern Sign Figure' +p72239 +sg25270 +S'Karl J. Hentz' +p72240 +sa(dp72241 +g25268 +S'Le mod\xc3\xa8le honn\xc3\xaate' +p72242 +sg25270 +S'Artist Information (' +p72243 +sg25273 +S'(artist)' +p72244 +sg25275 +S'\n' +p72245 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a00061f3.jpg' +p72246 +sg25267 +g27 +sa(dp72247 +g25267 +g27 +sg25268 +S'Shop Sign - Grapes' +p72248 +sg25270 +S'Robert Pohle' +p72249 +sa(dp72250 +g25267 +g27 +sg25268 +S'Barber Pole' +p72251 +sg25270 +S'Elisabeth Fulda' +p72252 +sa(dp72253 +g25267 +g27 +sg25268 +S'Carved Goose' +p72254 +sg25270 +S'Sumner Merrill' +p72255 +sa(dp72256 +g25267 +g27 +sg25268 +S'Shoe Sign' +p72257 +sg25270 +S'Albert Ryder' +p72258 +sa(dp72259 +g25267 +g27 +sg25268 +S'Shop Sign' +p72260 +sg25270 +S'John Sullivan' +p72261 +sa(dp72262 +g25267 +g27 +sg25268 +S'Shop Sign' +p72263 +sg25270 +S'Albert Ryder' +p72264 +sa(dp72265 +g25267 +g27 +sg25268 +S'Glove Shop Sign' +p72266 +sg25270 +S'Joseph L. Boyd' +p72267 +sa(dp72268 +g25267 +g27 +sg25268 +S'Boot Shop Sign' +p72269 +sg25270 +S'Alice Stearns' +p72270 +sa(dp72271 +g25267 +g27 +sg25268 +S'Bunch of Grapes' +p72272 +sg25270 +S'Alice Stearns' +p72273 +sa(dp72274 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a0005452.jpg' +p72275 +sg25268 +S'Shop Sign Spectacles' +p72276 +sg25270 +S'John H. Tercuzzi' +p72277 +sa(dp72278 +g25268 +S'Madonna Adoring the Child' +p72279 +sg25270 +S'Marco Basaiti' +p72280 +sg25273 +S'oil on panel' +p72281 +sg25275 +S'c. 1520' +p72282 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007ce.jpg' +p72283 +sg25267 +g27 +sa(dp72284 +g25268 +S'Le mod\xc3\xa8le honn\xc3\xaate' +p72285 +sg25270 +S'Artist Information (' +p72286 +sg25273 +S'(artist)' +p72287 +sg25275 +S'\n' +p72288 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009736.jpg' +p72289 +sg25267 +g27 +sa(dp72290 +g25267 +g27 +sg25268 +S'Metal Weather Vane: Glove' +p72291 +sg25270 +S'Harriette Gale' +p72292 +sa(dp72293 +g25267 +g27 +sg25268 +S'Baseball Player' +p72294 +sg25270 +S'Mina Lowry' +p72295 +sa(dp72296 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p72297 +sg25270 +S'Walter Hochstrasser' +p72298 +sa(dp72299 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p72300 +sg25270 +S'Chris Makrenos' +p72301 +sa(dp72302 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p72303 +sg25270 +S'Einar Heiberg' +p72304 +sa(dp72305 +g25267 +g27 +sg25268 +S'Carousel Horse' +p72306 +sg25270 +S'Henry Tomaszewski' +p72307 +sa(dp72308 +g25267 +g27 +sg25268 +S'Figure of Justice' +p72309 +sg25270 +S'Elmer R. Kottcamp' +p72310 +sa(dp72311 +g25267 +g27 +sg25268 +S'Little Wooden Hen' +p72312 +sg25270 +S'Mildred E. Bent' +p72313 +sa(dp72314 +g25267 +g27 +sg25268 +S'Architectural Ornament (City of Boston)' +p72315 +sg25270 +S'Flora Merchant' +p72316 +sa(dp72317 +g25267 +g27 +sg25268 +S'George Washington' +p72318 +sg25270 +S'Edward Grant' +p72319 +sa(dp72320 +g25268 +S'Le Rendez-vous' +p72321 +sg25270 +S'Artist Information (' +p72322 +sg25273 +S'(artist after)' +p72323 +sg25275 +S'\n' +p72324 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f3e.jpg' +p72325 +sg25267 +g27 +sa(dp72326 +g25267 +g27 +sg25268 +S'Butter Mold' +p72327 +sg25270 +S'Franklyn Syres' +p72328 +sa(dp72329 +g25267 +g27 +sg25268 +S'Butter Mold' +p72330 +sg25270 +S'Albert Levone' +p72331 +sa(dp72332 +g25267 +g27 +sg25268 +S'Carved Silhouette of a Woman' +p72333 +sg25270 +S'Rosamond P. Gray' +p72334 +sa(dp72335 +g25267 +g27 +sg25268 +S'Eagle' +p72336 +sg25270 +S'Alice Domey' +p72337 +sa(dp72338 +g25267 +g27 +sg25268 +S'Walking Stick' +p72339 +sg25270 +S'Frank Gray' +p72340 +sa(dp72341 +g25267 +g27 +sg25268 +S'Bust of Henry Clay' +p72342 +sg25270 +S'Elisabeth Fulda' +p72343 +sa(dp72344 +g25267 +g27 +sg25268 +S'Grain Sack Stamp' +p72345 +sg25270 +S'Elmer R. Kottcamp' +p72346 +sa(dp72347 +g25267 +g27 +sg25268 +S'Pipe Bowl' +p72348 +sg25270 +S'Carl Keksi' +p72349 +sa(dp72350 +g25267 +g27 +sg25268 +S'Pipe Bowl' +p72351 +sg25270 +S'Carl Keksi' +p72352 +sa(dp72353 +g25267 +g27 +sg25268 +S'Bust of Washington' +p72354 +sg25270 +S'Jane Iverson' +p72355 +sa(dp72356 +g25268 +S'Rose et Colas' +p72357 +sg25270 +S'Artist Information (' +p72358 +sg25273 +S'(artist after)' +p72359 +sg25275 +S'\n' +p72360 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000969c.jpg' +p72361 +sg25267 +g27 +sa(dp72362 +g25267 +g27 +sg25268 +S'Lumberjacks Sawing a Log' +p72363 +sg25270 +S'Frank Eiseman' +p72364 +sa(dp72365 +g25267 +g27 +sg25268 +S'Indian Head' +p72366 +sg25270 +S'Elmer R. Kottcamp' +p72367 +sa(dp72368 +g25267 +g27 +sg25268 +S'Shaker Rug' +p72369 +sg25270 +S'Mona Brown' +p72370 +sa(dp72371 +g25267 +g27 +sg25268 +S'Shaker Textile' +p72372 +sg25270 +S'Helen E. Gilman' +p72373 +sa(dp72374 +g25267 +g27 +sg25268 +S'Purse' +p72375 +sg25270 +S'Melita Hofmann' +p72376 +sa(dp72377 +g25267 +S'The ornament of circus wagons was not intended to be studied carefully; it was meant to give a\n momentary impression in the passing parade. The same applied to the lavish floats depicting\n tableaux of historical or religious events. The carvings used for these purposes needed to be\n robust and colorful in order to have an effect as they passed by the crowds. This ferocious lion\n was designed to strike terror into the hearts of small children.\n ' +p72378 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000342.jpg' +p72379 +sg25268 +S'Circus Wagon Lion' +p72380 +sg25270 +S'Howard Weld' +p72381 +sa(dp72382 +g25267 +g27 +sg25268 +S'Circus Wagon Figure' +p72383 +sg25270 +S'John Matulis' +p72384 +sa(dp72385 +g25267 +g27 +sg25268 +S'Circus Wagon Monkey' +p72386 +sg25270 +S'John Matulis' +p72387 +sa(dp72388 +g25267 +g27 +sg25268 +S'Hobby Goat' +p72389 +sg25270 +S'Henrietta S. Hukill' +p72390 +sa(dp72391 +g25267 +g27 +sg25268 +S'Circus Wagon Figure: Turk' +p72392 +sg25270 +S'Robert Galvin' +p72393 +sa(dp72394 +g25268 +S'La Sentinelle en d\xc3\xa9faut' +p72395 +sg25270 +S'Artist Information (' +p72396 +sg25273 +S'(artist after)' +p72397 +sg25275 +S'\n' +p72398 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e70.jpg' +p72399 +sg25267 +g27 +sa(dp72400 +g25267 +g27 +sg25268 +S'Carousel Horse' +p72401 +sg25270 +S'Henry Murphy' +p72402 +sa(dp72403 +g25267 +g27 +sg25268 +S'Carousel Horse' +p72404 +sg25270 +S'Dorothy Handy' +p72405 +sa(dp72406 +g25267 +g27 +sg25268 +S'Head from a Statue: Minerva' +p72407 +sg25270 +S'Helen Bronson' +p72408 +sa(dp72409 +g25267 +g27 +sg25268 +S'George Washington on Horseback' +p72410 +sg25270 +S'Wilbur M Rice' +p72411 +sa(dp72412 +g25267 +g27 +sg25268 +S'Figure' +p72413 +sg25270 +S'Stanley Mazur' +p72414 +sa(dp72415 +g25267 +g27 +sg25268 +S'Rug Runner' +p72416 +sg25270 +S'American 20th Century' +p72417 +sa(dp72418 +g25267 +g27 +sg25268 +S'Hooked Rug' +p72419 +sg25270 +S'Margery Parish' +p72420 +sa(dp72421 +g25267 +g27 +sg25268 +S'Coverlet' +p72422 +sg25270 +S'Miriam Y. Solomon' +p72423 +sa(dp72424 +g25267 +g27 +sg25268 +S'Cotton Quilt' +p72425 +sg25270 +S'Katherine Hastings' +p72426 +sa(dp72427 +g25267 +g27 +sg25268 +S'Fragments of Shaker Chair Braid' +p72428 +sg25270 +S'Orville A. Carroll' +p72429 +sa(dp72430 +g25268 +S'La Sentinelle en d\xc3\xa9faut' +p72431 +sg25270 +S'Artist Information (' +p72432 +sg25273 +S'(artist after)' +p72433 +sg25275 +S'\n' +p72434 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096d0.jpg' +p72435 +sg25267 +g27 +sa(dp72436 +g25267 +g27 +sg25268 +S'Shaker Chair Braids' +p72437 +sg25270 +S'Edward D. Williams' +p72438 +sa(dp72439 +g25267 +g27 +sg25268 +S'Shaker Wool Braids' +p72440 +sg25270 +S'Edward D. Williams' +p72441 +sa(dp72442 +g25267 +g27 +sg25268 +S'Shaker Kerchief' +p72443 +sg25270 +S'Charles Goodwin' +p72444 +sa(dp72445 +g25267 +g27 +sg25268 +S'Shaker Textile' +p72446 +sg25270 +S'George Constantine' +p72447 +sa(dp72448 +g25267 +g27 +sg25268 +S'Handwoven Coverlet' +p72449 +sg25270 +S'Cornelius Christoffels' +p72450 +sa(dp72451 +g25267 +g27 +sg25268 +S'Hooked Rug' +p72452 +sg25270 +S'Ruth M. Barnes' +p72453 +sa(dp72454 +g25267 +g27 +sg25268 +S'Knitted Rug' +p72455 +sg25270 +S'Ingrid Selmer-Larsen' +p72456 +sa(dp72457 +g25267 +g27 +sg25268 +S'Hooked Rug' +p72458 +sg25270 +S'Ruth M. Barnes' +p72459 +sa(dp72460 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005540.jpg' +p72461 +sg25268 +S'Quilt' +p72462 +sg25270 +S'Charlotte Angus' +p72463 +sa(dp72464 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000551a.jpg' +p72465 +sg25268 +S'Weather Vane: Rooster' +p72466 +sg25270 +S'Marian Page' +p72467 +sa(dp72468 +g25268 +S'Les Soins tardifs' +p72469 +sg25270 +S'Artist Information (' +p72470 +sg25273 +S'(artist after)' +p72471 +sg25275 +S'\n' +p72472 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e7a.jpg' +p72473 +sg25267 +g27 +sa(dp72474 +g25267 +g27 +sg25268 +S'Gabriel Weather Vane' +p72475 +sg25270 +S'Harriette Gale' +p72476 +sa(dp72477 +g25267 +g27 +sg25268 +S'Centaur Weather Vane' +p72478 +sg25270 +S'James McLellan' +p72479 +sa(dp72480 +g25267 +g27 +sg25268 +S'Indian Weather Vane' +p72481 +sg25270 +S'Alice Stearns' +p72482 +sa(dp72483 +g25267 +S'This shop figure clearly advertises the lunch offered by an eatery. Less visible in the rendering is the inscription, "Robb MANUF\'R. 114 Centre St. New York," which refers to the premier carver of show figures and trade signs at the time, Samuel A. Robb (1851-1928). Robb had been apprenticed to a carver and then studied drawing from life and from casts at the National Academy of Design and perspective drawing at Cooper Union. By 1875 he had set up his own shop in New York. During this decade baseball players became the favorite subject for cigar-store carvings, and Robb\'s workshop produced several. It is possible that the mustachioed batter in Ryder\'s rendering, probably carved between 1888 and 1903, is Mike "King" Kelly, to whom he bears a strong resemblance. Kelly, a catcher who played for Cincinnati, Chicago, Boston, and New York between 1878 and 1893, and who was inducted into the Baseball Hall of Fame in 1945, has been called the first superstar of baseball.\n ' +p72484 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003f7.jpg' +p72485 +sg25268 +S'Cigar Store Figure: Ball Player' +p72486 +sg25270 +S'Albert Ryder' +p72487 +sa(dp72488 +g25267 +g27 +sg25268 +S'Tavern Sign (Black Horse Tavern)' +p72489 +sg25270 +S'John Matulis' +p72490 +sa(dp72491 +g25267 +g27 +sg25268 +S'Chest' +p72492 +sg25270 +S'Frances Lichten' +p72493 +sa(dp72494 +g25267 +S'A "bulto" was used for daily reverence, for general decoration, and as a talisman. "Bultos" were placed in churches and private homes. "Bultos" and "retablos" were often produced by traveling "santeros," who went from town to town selling their work.\r\n This figure represents Saint Ignatius Loyola, the founder of the Jesuit order. The identification of the saint, who was a popular subject in Spanish New Mexico, is based on the monogram IHS, a contraction of "Jesus."\n ' +p72495 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003da.jpg' +p72496 +sg25268 +S'Bulto (St. Ignatius)' +p72497 +sg25270 +S"Carl O'Bergh" +p72498 +sa(dp72499 +g25267 +g27 +sg25268 +S'Flask' +p72500 +sg25270 +S'Charles Caseau' +p72501 +sa(dp72502 +g25267 +g27 +sg25268 +S'Jar' +p72503 +sg25270 +S'Elsie Wein' +p72504 +sa(dp72505 +g25267 +g27 +sg25268 +S'Chalkware Bird' +p72506 +sg25270 +S'Elmer R. Kottcamp' +p72507 +sa(dp72508 +g25268 +S'La soiree des Thuileries' +p72509 +sg25270 +S'Artist Information (' +p72510 +sg25273 +S'(artist after)' +p72511 +sg25275 +S'\n' +p72512 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009699.jpg' +p72513 +sg25267 +g27 +sa(dp72514 +g25267 +g27 +sg25268 +S'Chalkware Rooster' +p72515 +sg25270 +S'Elmer R. Kottcamp' +p72516 +sa(dp72517 +g25267 +g27 +sg25268 +S'Figure of a Sailor' +p72518 +sg25270 +S'Lucille Chabot' +p72519 +sa(dp72520 +g25267 +g27 +sg25268 +S'Dove' +p72521 +sg25270 +S'Franklyn Syres' +p72522 +sa(dp72523 +g25267 +g27 +sg25268 +S'Bandbox Design' +p72524 +sg25270 +S'Martin Partyka' +p72525 +sa(dp72526 +g25267 +g27 +sg25268 +S'Wallpaper from Bandbox' +p72527 +sg25270 +S'Charlotte Angus' +p72528 +sa(dp72529 +g25267 +g27 +sg25268 +S'Bandbox' +p72530 +sg25270 +S'Martin Partyka' +p72531 +sa(dp72532 +g25267 +g27 +sg25268 +S'Bandbox' +p72533 +sg25270 +S'Martin Partyka' +p72534 +sa(dp72535 +g25267 +g27 +sg25268 +S'Bandbox' +p72536 +sg25270 +S'Paul Ward' +p72537 +sa(dp72538 +g25267 +g27 +sg25268 +S'Bandbox' +p72539 +sg25270 +S'Holger Hansen' +p72540 +sa(dp72541 +g25267 +g27 +sg25268 +S'Patch Boxes of Kentucky Rifles' +p72542 +sg25270 +S'Albert Levone' +p72543 +sa(dp72544 +g25268 +S'La soiree des Thuileries' +p72545 +sg25270 +S'Artist Information (' +p72546 +sg25273 +S'(artist after)' +p72547 +sg25275 +S'\n' +p72548 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009698.jpg' +p72549 +sg25267 +g27 +sa(dp72550 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p72551 +sg25270 +S'Harriette Gale' +p72552 +sa(dp72553 +g25267 +g27 +sg25268 +S'Figurehead: Woman' +p72554 +sg25270 +S'Elizabeth Moutal' +p72555 +sa(dp72556 +g25267 +g27 +sg25268 +S'Retablo (Our Lady of Carmel)' +p72557 +sg25270 +S'Maude Valle' +p72558 +sa(dp72559 +g25267 +g27 +sg25268 +S'Pine Ornament (Eagle)' +p72560 +sg25270 +S'American 20th Century' +p72561 +sa(dp72562 +g25267 +g27 +sg25268 +S'Eagle' +p72563 +sg25270 +S'American 20th Century' +p72564 +sa(dp72565 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a00054fa.jpg' +p72566 +sg25268 +S'Rooster' +p72567 +sg25270 +S'Howard Weld' +p72568 +sa(dp72569 +g25267 +g27 +sg25268 +S'Retablo - St. Procopio' +p72570 +sg25270 +S'Majel G. Claflin' +p72571 +sa(dp72572 +g25267 +g27 +sg25268 +S'Painted Panel from Pullman Car Interior' +p72573 +sg25270 +S'Wayne White' +p72574 +sa(dp72575 +g25267 +g27 +sg25268 +S'Historical Textile' +p72576 +sg25270 +S'Ernest Capaldo' +p72577 +sa(dp72578 +g25267 +g27 +sg25268 +S'Textile' +p72579 +sg25270 +S'John Osbold' +p72580 +sa(dp72581 +g25268 +S'Le leger vetement' +p72582 +sg25270 +S'Artist Information (' +p72583 +sg25273 +S'(artist after)' +p72584 +sg25275 +S'\n' +p72585 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cf2.jpg' +p72586 +sg25267 +g27 +sa(dp72587 +g25267 +g27 +sg25268 +S'Figurehead' +p72588 +sg25270 +S'Elizabeth Fairchild' +p72589 +sa(dp72590 +g25267 +g27 +sg25268 +S'Tavern Sign' +p72591 +sg25270 +S'American 20th Century' +p72592 +sa(dp72593 +g25267 +g27 +sg25268 +S'Tavern Sign' +p72594 +sg25270 +S'John Matulis' +p72595 +sa(dp72596 +g25267 +g27 +sg25268 +S'Tavern Sign: "Temperance"' +p72597 +sg25270 +S'John Matulis' +p72598 +sa(dp72599 +g25267 +g27 +sg25268 +S'Bandbox' +p72600 +sg25270 +S'Harold Merriam' +p72601 +sa(dp72602 +g25267 +g27 +sg25268 +S'Toby Figure' +p72603 +sg25270 +S'Mina Lowry' +p72604 +sa(dp72605 +g25267 +g27 +sg25268 +S'Chest' +p72606 +sg25270 +S'Rolland Livingstone' +p72607 +sa(dp72608 +g25267 +g27 +sg25268 +S'Bishop Hill Square Desk' +p72609 +sg25270 +S'Archie Thompson' +p72610 +sa(dp72611 +g25267 +g27 +sg25268 +S'Headboard' +p72612 +sg25270 +S'Artist Information (' +p72613 +sa(dp72614 +g25267 +g27 +sg25268 +S'Secretary Desk' +p72615 +sg25270 +S'Eugene Croe' +p72616 +sa(dp72617 +g25268 +S'La Gaiet\xc3\xa9 de Sil\xc3\xa8ne' +p72618 +sg25270 +S'Artist Information (' +p72619 +sg25273 +S'(artist after)' +p72620 +sg25275 +S'\n' +p72621 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e72.jpg' +p72622 +sg25267 +g27 +sa(dp72623 +g25267 +g27 +sg25268 +S'Desk Box' +p72624 +sg25270 +S'Harry Eisman' +p72625 +sa(dp72626 +g25267 +g27 +sg25268 +S'Four Poster Bed' +p72627 +sg25270 +S'Peter C. Ustinoff' +p72628 +sa(dp72629 +g25267 +g27 +sg25268 +S'Chest' +p72630 +sg25270 +S'Esther Molina' +p72631 +sa(dp72632 +g25267 +g27 +sg25268 +S'Triangular Corner Safe' +p72633 +sg25270 +S'Gladys M. Guillaudeu' +p72634 +sa(dp72635 +g25267 +g27 +sg25268 +S'Cradle' +p72636 +sg25270 +S'Rex F. Bush' +p72637 +sa(dp72638 +g25267 +g27 +sg25268 +S'Bottle' +p72639 +sg25270 +S'Paul Ward' +p72640 +sa(dp72641 +g25267 +g27 +sg25268 +S'Glass' +p72642 +sg25270 +S'John Dana' +p72643 +sa(dp72644 +g25267 +g27 +sg25268 +S'Compote' +p72645 +sg25270 +S'Van Silvay' +p72646 +sa(dp72647 +g25267 +g27 +sg25268 +S'Salt Cup' +p72648 +sg25270 +S'Beverly Chichester' +p72649 +sa(dp72650 +g25267 +g27 +sg25268 +S'Pitcher' +p72651 +sg25270 +S'Beverly Chichester' +p72652 +sa(dp72653 +g25268 +S'La promenade au Jardin Turc' +p72654 +sg25270 +S'Artist Information (' +p72655 +sg25273 +S'(artist after)' +p72656 +sg25275 +S'\n' +p72657 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a00097e7.jpg' +p72658 +sg25267 +g27 +sa(dp72659 +g25267 +g27 +sg25268 +S'Bowl' +p72660 +sg25270 +S'John Tarantino' +p72661 +sa(dp72662 +g25267 +g27 +sg25268 +S'Toilet Water Bottle' +p72663 +sg25270 +S'Giacinto Capelli' +p72664 +sa(dp72665 +g25267 +g27 +sg25268 +S'Blue Glass Cruet and Stopper' +p72666 +sg25270 +S'George File' +p72667 +sa(dp72668 +g25267 +g27 +sg25268 +S'Flask' +p72669 +sg25270 +S'Michael Trekur' +p72670 +sa(dp72671 +g25267 +g27 +sg25268 +S'Pitcher' +p72672 +sg25270 +S'Giacinto Capelli' +p72673 +sa(dp72674 +g25267 +g27 +sg25268 +S'Dish' +p72675 +sg25270 +S'Van Silvay' +p72676 +sa(dp72677 +g25267 +g27 +sg25268 +S'American Glass Flask' +p72678 +sg25270 +S'William Kieckhofel' +p72679 +sa(dp72680 +g25267 +g27 +sg25268 +S'Camphene Lamp' +p72681 +sg25270 +S'Paul Ward' +p72682 +sa(dp72683 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p72684 +sg25270 +S'Janet Riza' +p72685 +sa(dp72686 +g25267 +g27 +sg25268 +S'Bottle' +p72687 +sg25270 +S'Van Silvay' +p72688 +sa(dp72689 +g25268 +S'Le cocarde nationale' +p72690 +sg25270 +S'Artist Information (' +p72691 +sg25273 +S'(artist after)' +p72692 +sg25275 +S'\n' +p72693 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009720.jpg' +p72694 +sg25267 +g27 +sa(dp72695 +g25267 +g27 +sg25268 +S'Bowl' +p72696 +sg25270 +S'Van Silvay' +p72697 +sa(dp72698 +g25267 +g27 +sg25268 +S'Pitcher' +p72699 +sg25270 +S'Beverly Chichester' +p72700 +sa(dp72701 +g25267 +g27 +sg25268 +S'Pitcher' +p72702 +sg25270 +S'Elisabeth Fulda' +p72703 +sa(dp72704 +g25267 +g27 +sg25268 +S'Vase' +p72705 +sg25270 +S'Michael Fenga' +p72706 +sa(dp72707 +g25267 +g27 +sg25268 +S'Pitcher' +p72708 +sg25270 +S'Marie Mitchell' +p72709 +sa(dp72710 +g25267 +S'Pennsylvania German glassware was best known through the artistry of "Baron" Heinrich Wilhelm Stiegel. Stiegel was a master craftsman who became a legend in his own time as the flamboyant owner of iron and glassworks. \n Stiegel glass cannot be definitely identified since his workers took his methods to other factories after his own went bankrupt. However, Stiegel-type flint glass, or crystal, was widely known for its beauty, fragility, and the brilliance of its colors. \n A wide variety of glassware -- from wineglasses, sugar bowls, and cruets to windowpanes and chemists\' bottles -- was made at the Stiegel furnace. The flask shown here was a typical Stiegel product. Stiegel was the first American glass manufacturer \n to enamel glass. Pieces made of white, or clear, glass have their decoration of birds, tulips, and scrolls painted on freehand with red, green, and yellow enamel. The motifs used reflect typical Pennsylvania German traditions of decoration.\n ' +p72711 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003c4.jpg' +p72712 +sg25268 +S'Decorated Glass Flask' +p72713 +sg25270 +S'George File' +p72714 +sa(dp72715 +g25267 +g27 +sg25268 +S'Mortar and Pestle' +p72716 +sg25270 +S'Isidore Steinberg' +p72717 +sa(dp72718 +g25267 +g27 +sg25268 +S'Wooden Stirrup' +p72719 +sg25270 +S'Vera Van Voris' +p72720 +sa(dp72721 +g25267 +g27 +sg25268 +S'Unrigged Pack Saddle' +p72722 +sg25270 +S'American 20th Century' +p72723 +sa(dp72724 +g25267 +g27 +sg25268 +S'Bull Whip' +p72725 +sg25270 +S'Clyde L. Cheney' +p72726 +sa(dp72727 +g25268 +S'Sweet resistance (La douce resistance)' +p72728 +sg25270 +S'Artist Information (' +p72729 +sg25273 +S'(artist after)' +p72730 +sg25275 +S'\n' +p72731 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc42.jpg' +p72732 +sg25267 +g27 +sa(dp72733 +g25267 +g27 +sg25268 +S'Rawhide Quirt' +p72734 +sg25270 +S'Cecil Smith' +p72735 +sa(dp72736 +g25267 +g27 +sg25268 +S'Painting of St. Liberata' +p72737 +sg25270 +S'Majel G. Claflin' +p72738 +sa(dp72739 +g25267 +g27 +sg25268 +S'Candle Sconce with Mirror' +p72740 +sg25270 +S'E. Boyd' +p72741 +sa(dp72742 +g25267 +g27 +sg25268 +S'Pin' +p72743 +sg25270 +S'Tulita Westfall' +p72744 +sa(dp72745 +g25267 +g27 +sg25268 +S'Bulto' +p72746 +sg25270 +S'Majel G. Claflin' +p72747 +sa(dp72748 +g25267 +g27 +sg25268 +S'Spanish Southwest Saddle' +p72749 +sg25270 +S'Arthur P. Reynolds' +p72750 +sa(dp72751 +g25267 +g27 +sg25268 +S'Pack Saddle' +p72752 +sg25270 +S'Robert W.R. Taylor' +p72753 +sa(dp72754 +g25267 +g27 +sg25268 +S'Santo (St. Francis)' +p72755 +sg25270 +S'Robert W.R. Taylor' +p72756 +sa(dp72757 +g25267 +g27 +sg25268 +S'Santo' +p72758 +sg25270 +S'Cornelius Christoffels' +p72759 +sa(dp72760 +g25267 +g27 +sg25268 +S'Head of San Jose' +p72761 +sg25270 +S'Majel G. Claflin' +p72762 +sa(dp72763 +g25268 +S"It was pulled today (On la tire aujourd'hui)" +p72764 +sg25270 +S'Artist Information (' +p72765 +sg25273 +S'(artist after)' +p72766 +sg25275 +S'\n' +p72767 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc41.jpg' +p72768 +sg25267 +g27 +sa(dp72769 +g25267 +g27 +sg25268 +S'Retabla' +p72770 +sg25270 +S'Alfonso Mirabal' +p72771 +sa(dp72772 +g25267 +g27 +sg25268 +S'Saddle' +p72773 +sg25270 +S'Joe Brennan' +p72774 +sa(dp72775 +g25267 +g27 +sg25268 +S'Shaker Grandmother Clock' +p72776 +sg25270 +S'Orville Cline' +p72777 +sa(dp72778 +g25267 +S'The tradition of painted decoration goes back to the vogue for "Japanning" prevalent\r\n in the William and Mary and the Queen Anne periods. Sheraton "fancy furniture,"\r\n with painted decoration, was exceedingly popular in the early nineteenth century.\r\n Handsomely painted settees, blending two or three chair backs into a single unit,\r\n were produced in a variety of designs for use in fashionable drawing rooms. This\r\n settee, made about 1800 in New York City, features the popular Sheraton urn and\r\n floral motifs, which were favored by New York craftsmen. Dark backgrounds, such\r\n as that seen on this piece, were commonly used and were produced by applying layers\r\n of varnishes over deep brown, green, or black paint. Here, the background provides\r\n a striking contrast to the touches of light green, cream, pink, and white used\r\n to highlight the urn of flowers. Delicately painted white blossoms adorn the uprights\r\n of the seat back and of the arms and legs; they are reminiscent of the carved rosettes\r\n found on other Sheraton furniture.\n ' +p72779 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002d4.jpg' +p72780 +sg25268 +S'Settee--Sheraton Style' +p72781 +sg25270 +S'Charles Henning' +p72782 +sa(dp72783 +g25267 +g27 +sg25268 +S'Tall Clock' +p72784 +sg25270 +S'Arthur Johnson' +p72785 +sa(dp72786 +g25267 +g27 +sg25268 +S'Kas' +p72787 +sg25270 +S'Lorenz Rothkranz' +p72788 +sa(dp72789 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005541.jpg' +p72790 +sg25268 +S'Candle Stand' +p72791 +sg25270 +S'M. Rosenshield-von-Paulin' +p72792 +sa(dp72793 +g25267 +g27 +sg25268 +S'Candle Stand' +p72794 +sg25270 +S'Edward L. Loper' +p72795 +sa(dp72796 +g25267 +g27 +sg25268 +S'Portable Whale Oil Lamp' +p72797 +sg25270 +S'James M. Lawson' +p72798 +sa(dp72799 +g25267 +g27 +sg25268 +S'Cherry Candlestick' +p72800 +sg25270 +S'Mina Lowry' +p72801 +sa(dp72802 +g25268 +S"Que n'y est-il encore?" +p72803 +sg25270 +S'Artist Information (' +p72804 +sg25273 +S'(artist after)' +p72805 +sg25275 +S'\n' +p72806 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009741.jpg' +p72807 +sg25267 +g27 +sa(dp72808 +g25267 +g27 +sg25268 +S'Camphene Lamp' +p72809 +sg25270 +S'LeRoy Griffith' +p72810 +sa(dp72811 +g25267 +g27 +sg25268 +S'Betty Lamp' +p72812 +sg25270 +S'Maurice Van Felix' +p72813 +sa(dp72814 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p72815 +sg25270 +S'James M. Lawson' +p72816 +sa(dp72817 +g25267 +g27 +sg25268 +S'Wooden Stirrup' +p72818 +sg25270 +S'Juanita Donahoo' +p72819 +sa(dp72820 +g25267 +g27 +sg25268 +S'Tammany Bank' +p72821 +sg25270 +S'Michael France' +p72822 +sa(dp72823 +g25267 +g27 +sg25268 +S'Hitching Post' +p72824 +sg25270 +S'American 20th Century' +p72825 +sa(dp72826 +g25267 +g27 +sg25268 +S'Hitching Post Finial' +p72827 +sg25270 +S'Mina Lowry' +p72828 +sa(dp72829 +g25267 +g27 +sg25268 +S'Bull Dog Bank' +p72830 +sg25270 +S'George File' +p72831 +sa(dp72832 +g25267 +g27 +sg25268 +S'Hitching Post' +p72833 +sg25270 +S'Pearl Torell' +p72834 +sa(dp72835 +g25267 +g27 +sg25268 +S'Toy Bank: Policeman' +p72836 +sg25270 +S'Walter Hochstrasser' +p72837 +sa(dp72838 +g25268 +S'La raclee avec des roses (The Thrashing with Roses)' +p72839 +sg25270 +S'Artist Information (' +p72840 +sg25273 +S'(artist after)' +p72841 +sg25275 +S'\n' +p72842 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f85.jpg' +p72843 +sg25267 +g27 +sa(dp72844 +g25267 +g27 +sg25268 +S'Stump Speaker Bank' +p72845 +sg25270 +S'Florian Rokita' +p72846 +sa(dp72847 +g25267 +g27 +sg25268 +S'Trammel' +p72848 +sg25270 +S'Wellington Blewett' +p72849 +sa(dp72850 +g25267 +g27 +sg25268 +S'Flatiron' +p72851 +sg25270 +S'Gwendolyn Jackson' +p72852 +sa(dp72853 +g25267 +g27 +sg25268 +S'Skid Shoe for Horse' +p72854 +sg25270 +S'Samuel Faigin' +p72855 +sa(dp72856 +g25267 +g27 +sg25268 +S'Swamp Shoe for Horse' +p72857 +sg25270 +S'Clarence Secor' +p72858 +sa(dp72859 +g25267 +g27 +sg25268 +S'Skewers and Holder' +p72860 +sg25270 +S'Artist Information (' +p72861 +sa(dp72862 +g25267 +g27 +sg25268 +S'Long Handled Bristle Brush' +p72863 +sg25270 +S'Richard Barnett' +p72864 +sa(dp72865 +g25267 +g27 +sg25268 +S'Broad Axe' +p72866 +sg25270 +S'Paul Poffinbarger' +p72867 +sa(dp72868 +g25267 +g27 +sg25268 +S'Trivet' +p72869 +sg25270 +S'William Roberts' +p72870 +sa(dp72871 +g25267 +g27 +sg25268 +S'Trivet' +p72872 +sg25270 +S'Albert Rudin' +p72873 +sa(dp72874 +g25268 +S'Le bain des pieds (The Foot-Bath)' +p72875 +sg25270 +S'Artist Information (' +p72876 +sg25273 +S'(artist after)' +p72877 +sg25275 +S'\n' +p72878 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f84.jpg' +p72879 +sg25267 +g27 +sa(dp72880 +g25267 +g27 +sg25268 +S'Trivet' +p72881 +sg25270 +S'Orrie McCombs' +p72882 +sa(dp72883 +g25267 +g27 +sg25268 +S'Trivet' +p72884 +sg25270 +S'Violet Hartenstein' +p72885 +sa(dp72886 +g25267 +g27 +sg25268 +S'Trivet' +p72887 +sg25270 +S'Violet Hartenstein' +p72888 +sa(dp72889 +g25267 +g27 +sg25268 +S'Trivet' +p72890 +sg25270 +S'Sydney Roberts' +p72891 +sa(dp72892 +g25267 +g27 +sg25268 +S'Trivet' +p72893 +sg25270 +S'Violet Hartenstein' +p72894 +sa(dp72895 +g25267 +g27 +sg25268 +S'Draw Shave' +p72896 +sg25270 +S'Robert Tardiff' +p72897 +sa(dp72898 +g25267 +g27 +sg25268 +S'Hatchel (Flax Comb)' +p72899 +sg25270 +S'LeRoy Griffith' +p72900 +sa(dp72901 +g25267 +g27 +sg25268 +S'Drawknife' +p72902 +sg25270 +S'Max Fernekes' +p72903 +sa(dp72904 +g25267 +g27 +sg25268 +S'Hammer Head' +p72905 +sg25270 +S'Clarence Secor' +p72906 +sa(dp72907 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f9/a000f901.jpg' +p72908 +sg25268 +S'Kettle' +p72909 +sg25270 +S'Frank M. Keane' +p72910 +sa(dp72911 +g25268 +S"L'Indiscret" +p72912 +sg25270 +S'Artist Information (' +p72913 +sg25273 +S'(artist after)' +p72914 +sg25275 +S'\n' +p72915 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e93.jpg' +p72916 +sg25267 +g27 +sa(dp72917 +g25267 +g27 +sg25268 +S'Skillet' +p72918 +sg25270 +S'Alfred Goldstein' +p72919 +sa(dp72920 +g25267 +g27 +sg25268 +S'Kettle' +p72921 +sg25270 +S'Joseph Glover' +p72922 +sa(dp72923 +g25267 +g27 +sg25268 +S'Cast Iron Pot' +p72924 +sg25270 +S'Margaret Golden' +p72925 +sa(dp72926 +g25267 +g27 +sg25268 +S'Handmade Churn' +p72927 +sg25270 +S'Rex F. Bush' +p72928 +sa(dp72929 +g25267 +g27 +sg25268 +S'Chopping Bowl' +p72930 +sg25270 +S'Hester Duany' +p72931 +sa(dp72932 +g25267 +g27 +sg25268 +S'Copper Tea Kettle' +p72933 +sg25270 +S'Wayne White' +p72934 +sa(dp72935 +g25267 +g27 +sg25268 +S'Tea Kettle' +p72936 +sg25270 +S'Amelia Tuccio' +p72937 +sa(dp72938 +g25267 +g27 +sg25268 +S'Copper Measuring Cup' +p72939 +sg25270 +S'Wilford H. Shurtliff' +p72940 +sa(dp72941 +g25267 +g27 +sg25268 +S'Wooden Dipper' +p72942 +sg25270 +S'Elmer Weise' +p72943 +sa(dp72944 +g25267 +g27 +sg25268 +S'Kettle' +p72945 +sg25270 +S'Lloyd Charles Lemcke' +p72946 +sa(dp72947 +g25268 +S"L'Indiscret" +p72948 +sg25270 +S'Artist Information (' +p72949 +sg25273 +S'(artist after)' +p72950 +sg25275 +S'\n' +p72951 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e96.jpg' +p72952 +sg25267 +g27 +sa(dp72953 +g25267 +g27 +sg25268 +S'Tin Tea Caddy' +p72954 +sg25270 +S'Eldon Allen' +p72955 +sa(dp72956 +g25267 +g27 +sg25268 +S'Churn' +p72957 +sg25270 +S'Lelah Nelson' +p72958 +sa(dp72959 +g25267 +g27 +sg25268 +S'Bucket' +p72960 +sg25270 +S'Leslie Macklem' +p72961 +sa(dp72962 +g25267 +g27 +sg25268 +S'Bucket' +p72963 +sg25270 +S'Edward Bashaw' +p72964 +sa(dp72965 +g25267 +g27 +sg25268 +S'Grain Basket' +p72966 +sg25270 +S'Alfonso Moreno' +p72967 +sa(dp72968 +g25267 +g27 +sg25268 +S'Grinder' +p72969 +sg25270 +S'Nicholas Amantea' +p72970 +sa(dp72971 +g25267 +g27 +sg25268 +S'Tea Caddy' +p72972 +sg25270 +S'Amelia Tuccio' +p72973 +sa(dp72974 +g25267 +g27 +sg25268 +S'Maple Sugar Bucket' +p72975 +sg25270 +S'Chris Makrenos' +p72976 +sa(dp72977 +g25267 +g27 +sg25268 +S'Water Yoke' +p72978 +sg25270 +S'Albert Geuppert' +p72979 +sa(dp72980 +g25267 +g27 +sg25268 +S'Door Latch' +p72981 +sg25270 +S'Fritz Boehmer' +p72982 +sa(dp72983 +g25268 +S'Le paysan mecontent' +p72984 +sg25270 +S'Artist Information (' +p72985 +sg25273 +S'(artist after)' +p72986 +sg25275 +S'\n' +p72987 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e85.jpg' +p72988 +sg25267 +g27 +sa(dp72989 +g25267 +g27 +sg25268 +S'Hinge Butt' +p72990 +sg25270 +S'Nicholas Amantea' +p72991 +sa(dp72992 +g25267 +g27 +sg25268 +S'Mixing Spoon' +p72993 +sg25270 +S'John Lindermayer' +p72994 +sa(dp72995 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000552c.jpg' +p72996 +sg25268 +S'Toaster' +p72997 +sg25270 +S'Nicholas Amantea' +p72998 +sa(dp72999 +g25267 +g27 +sg25268 +S'Butter Paddle' +p73000 +sg25270 +S'Florian Rokita' +p73001 +sa(dp73002 +g25267 +g27 +sg25268 +S'Steel Spatula' +p73003 +sg25270 +S'Fritz Boehmer' +p73004 +sa(dp73005 +g25267 +g27 +sg25268 +S'Steel Spatula' +p73006 +sg25270 +S'American 20th Century' +p73007 +sa(dp73008 +g25267 +g27 +sg25268 +S'Pestle' +p73009 +sg25270 +S'Alfonso Moreno' +p73010 +sa(dp73011 +g25267 +g27 +sg25268 +S'Door Lock' +p73012 +sg25270 +S'Alf Bruseth' +p73013 +sa(dp73014 +g25267 +g27 +sg25268 +S'Butter Worker' +p73015 +sg25270 +S'Hester Duany' +p73016 +sa(dp73017 +g25267 +g27 +sg25268 +S'Scoop' +p73018 +sg25270 +S'Alfonso Moreno' +p73019 +sa(dp73020 +g25268 +S'Vous avez la clef, mais il a trouve le serrure' +p73021 +sg25270 +S'Artist Information (' +p73022 +sg25273 +S'(artist after)' +p73023 +sg25275 +S'\n' +p73024 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f19.jpg' +p73025 +sg25267 +g27 +sa(dp73026 +g25267 +g27 +sg25268 +S'Maple Sugar Mold' +p73027 +sg25270 +S'George File' +p73028 +sa(dp73029 +g25267 +g27 +sg25268 +S'Cow Bell #6 (With Star)' +p73030 +sg25270 +S'Dorothy Brennan' +p73031 +sa(dp73032 +g25267 +g27 +sg25268 +S'Cherry Stoner' +p73033 +sg25270 +S'George C. Brown' +p73034 +sa(dp73035 +g25267 +g27 +sg25268 +S'Coffee Mill' +p73036 +sg25270 +S'Lelah Nelson' +p73037 +sa(dp73038 +g25267 +g27 +sg25268 +S'Flatiron/Crimping Iron' +p73039 +sg25270 +S'Maurice Van Felix' +p73040 +sa(dp73041 +g25267 +g27 +sg25268 +S'Candlestick' +p73042 +sg25270 +S'Christabel Scrymser' +p73043 +sa(dp73044 +g25267 +g27 +sg25268 +S'Mortar and Pestle' +p73045 +sg25270 +S'Wellington Blewett' +p73046 +sa(dp73047 +g25267 +g27 +sg25268 +S'Wrought Iron Banister Bracket' +p73048 +sg25270 +S'James McLellan' +p73049 +sa(dp73050 +g25267 +g27 +sg25268 +S'Fractur' +p73051 +sg25270 +S'Elmer R. Kottcamp' +p73052 +sa(dp73053 +g25267 +g27 +sg25268 +S'Newel Post' +p73054 +sg25270 +S'Alfred H. Smith' +p73055 +sa(dp73056 +g25268 +S'Young Woman with a Rose' +p73057 +sg25270 +S'Artist Information (' +p73058 +sg25273 +S'(artist after)' +p73059 +sg25275 +S'\n' +p73060 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a00055bd.jpg' +p73061 +sg25267 +g27 +sa(dp73062 +g25267 +g27 +sg25268 +S'Newel Post' +p73063 +sg25270 +S'American 20th Century' +p73064 +sa(dp73065 +g25267 +g27 +sg25268 +S'Shaker Desk Chair' +p73066 +sg25270 +S'American 20th Century' +p73067 +sa(dp73068 +g25267 +g27 +sg25268 +S'Shaker Secretary' +p73069 +sg25270 +S'Howard Weld' +p73070 +sa(dp73071 +g25267 +g27 +sg25268 +S'Shaker Cupboard' +p73072 +sg25270 +S'American 20th Century' +p73073 +sa(dp73074 +g25267 +g27 +sg25268 +S'Shaker Rug' +p73075 +sg25270 +S'Alice Stearns' +p73076 +sa(dp73077 +g25267 +g27 +sg25268 +S'Shaker Dress Material' +p73078 +sg25270 +S'American 20th Century' +p73079 +sa(dp73080 +g25267 +g27 +sg25268 +S'Shaker Silk Kerchief' +p73081 +sg25270 +S'Elizabeth Moutal' +p73082 +sa(dp73083 +g25267 +g27 +sg25268 +S'Shaker Dress Material' +p73084 +sg25270 +S'Lucille Gilchrist' +p73085 +sa(dp73086 +g25267 +g27 +sg25268 +S'Shaker Built-In Cupboard' +p73087 +sg25270 +S'John W. Kelleher' +p73088 +sa(dp73089 +g25267 +g27 +sg25268 +S'Shaker Sill Cupboard' +p73090 +sg25270 +S'Anne Ger' +p73091 +sa(dp73092 +g25268 +S'Jupiter and Leda' +p73093 +sg25270 +S'Artist Information (' +p73094 +sg25273 +S'(artist after)' +p73095 +sg25275 +S'\n' +p73096 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d5a.jpg' +p73097 +sg25267 +g27 +sa(dp73098 +g25267 +g27 +sg25268 +S"Shaker Woman's Apron" +p73099 +sg25270 +S'Betty Fuerst' +p73100 +sa(dp73101 +g25267 +g27 +sg25268 +S'Shaker Rocking Chair' +p73102 +sg25270 +S'Lon Cronk' +p73103 +sa(dp73104 +g25267 +g27 +sg25268 +S'Shaker Newel Post' +p73105 +sg25270 +S'Alfred H. Smith' +p73106 +sa(dp73107 +g25267 +g27 +sg25268 +S'Illuminated Psalm' +p73108 +sg25270 +S'Elmer R. Kottcamp' +p73109 +sa(dp73110 +g25267 +g27 +sg25268 +S'Sink Bench' +p73111 +sg25270 +S'Elmer R. Kottcamp' +p73112 +sa(dp73113 +g25267 +g27 +sg25268 +S'Toy Rooster' +p73114 +sg25270 +S'Elmer R. Kottcamp' +p73115 +sa(dp73116 +g25267 +g27 +sg25268 +S'Chest Design' +p73117 +sg25270 +S'Etna Wiswall' +p73118 +sa(dp73119 +g25267 +g27 +sg25268 +S'Bulto' +p73120 +sg25270 +S'Eldora P. Lorenzini' +p73121 +sa(dp73122 +g25267 +g27 +sg25268 +S'Doorway' +p73123 +sg25270 +S'Pearl Davis' +p73124 +sa(dp73125 +g25267 +S'Isidore, the patron saint of farmers and protector of crops, was a farm laborer employed by a wealthy landowner near Madrid in the early twelfth century. According to legend, Isidore spent so many hours in prayer that he was in danger of falling behind with his farming chores. As a reward for his exceptional piety, divine intervention dispatched an angel to help Isidore finish his plowing on schedule. This miraculous event is the subject of an eighteenth-century New Mexican devotional sculpture, or \n ' +p73126 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003d2.jpg' +p73127 +sg25268 +S'Bulto' +p73128 +sg25270 +S'Eldora P. Lorenzini' +p73129 +sa(dp73130 +g25268 +S'Le reveil' +p73131 +sg25270 +S'Artist Information (' +p73132 +sg25273 +S'(artist after)' +p73133 +sg25275 +S'\n' +p73134 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f05.jpg' +p73135 +sg25267 +g27 +sa(dp73136 +g25267 +g27 +sg25268 +S'Jacket and Pants' +p73137 +sg25270 +S'Hal Blakeley' +p73138 +sa(dp73139 +g25267 +g27 +sg25268 +S'Penitent Christ' +p73140 +sg25270 +S'Eldora P. Lorenzini' +p73141 +sa(dp73142 +g25267 +g27 +sg25268 +S'Bridal Chest' +p73143 +sg25270 +S'John Koehl' +p73144 +sa(dp73145 +g25267 +g27 +sg25268 +S'Sea Chest' +p73146 +sg25270 +S'Rolland Livingstone' +p73147 +sa(dp73148 +g25267 +g27 +sg25268 +S'Wooden Indian Doll' +p73149 +sg25270 +S'Rex F. Bush' +p73150 +sa(dp73151 +g25267 +g27 +sg25268 +S'Doll' +p73152 +sg25270 +S'Rex F. Bush' +p73153 +sa(dp73154 +g25267 +g27 +sg25268 +S'Doll' +p73155 +sg25270 +S'Helen Bronson' +p73156 +sa(dp73157 +g25267 +S'Some of the most interesting dolls were modeled after famous personalities. \r\n This doll represents General Ulysses S. Grant of the U.S. Army. It was made in \r\n the 1860s for a woman in Cressy, Michigan. The relationship of doll types to \r\n historical events is particularly evident in this case, for the doll appeared at the time of the Civil War when General Grant was at the height of his popularity in the North. A variety of materials was used in making dolls during this period, including papier-mâché and rag. Papier-mâché was used for the head of the General Grant doll; the body is made of kid.\n ' +p73158 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002e8.jpg' +p73159 +sg25268 +S'Doll--"General Grant"' +p73160 +sg25270 +S'Rex F. Bush' +p73161 +sa(dp73162 +g25267 +S"This milliner's model doll is a much sought after type with a knot at the back \n of the head. Because her ears show, this doll is particularly interesting to collectors. \n Most milliner's model dolls are from the first half of the nineteenth century. \n This one, dating from 1843, wears a muslin dress and muslin pantalettes.\n " +p73163 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002ed.jpg' +p73164 +sg25268 +S'Doll' +p73165 +sg25270 +S'Elmer R. Kottcamp' +p73166 +sa(dp73167 +g25267 +g27 +sg25268 +S'Doll - "Elissa"' +p73168 +sg25270 +S'Rex F. Bush' +p73169 +sa(dp73170 +g25268 +S"L'Amant surpris" +p73171 +sg25270 +S'Artist Information (' +p73172 +sg25273 +S'(artist after)' +p73173 +sg25275 +S'\n' +p73174 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096f2.jpg' +p73175 +sg25267 +g27 +sa(dp73176 +g25267 +g27 +sg25268 +S'Quaker Doll' +p73177 +sg25270 +S'Charlotte Angus' +p73178 +sa(dp73179 +g25267 +g27 +sg25268 +S'Shaker Cupboard' +p73180 +sg25270 +S'John W. Kelleher' +p73181 +sa(dp73182 +g25267 +g27 +sg25268 +S'Shoe' +p73183 +sg25270 +S'Lucille Chabot' +p73184 +sa(dp73185 +g25267 +g27 +sg25268 +S"Woman's Shoe" +p73186 +sg25270 +S'Joseph Goldberg' +p73187 +sa(dp73188 +g25267 +g27 +sg25268 +S'Bride Box' +p73189 +sg25270 +S'Elmer R. Kottcamp' +p73190 +sa(dp73191 +g25267 +g27 +sg25268 +S'Nutcracker' +p73192 +sg25270 +S'Mina Lowry' +p73193 +sa(dp73194 +g25267 +g27 +sg25268 +S'Woman Churning' +p73195 +sg25270 +S'Mina Lowry' +p73196 +sa(dp73197 +g25267 +g27 +sg25268 +S'Horse Figure' +p73198 +sg25270 +S'Hester Duany' +p73199 +sa(dp73200 +g25267 +g27 +sg25268 +S'Doll' +p73201 +sg25270 +S'Henry Tomaszewski' +p73202 +sa(dp73203 +g25267 +g27 +sg25268 +S'Doll' +p73204 +sg25270 +S'David S. De Vault' +p73205 +sa(dp73206 +g25268 +S'The Upset Basket' +p73207 +sg25270 +S'Artist Information (' +p73208 +sg25273 +S'(artist after)' +p73209 +sg25275 +S'\n' +p73210 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096ad.jpg' +p73211 +sg25267 +g27 +sa(dp73212 +g25267 +g27 +sg25268 +S'Carved Wooden Doll' +p73213 +sg25270 +S'Elmer R. Kottcamp' +p73214 +sa(dp73215 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f8/a000f8fa.jpg' +p73216 +sg25268 +S'Doll' +p73217 +sg25270 +S'Carmel Wilson' +p73218 +sa(dp73219 +g25267 +g27 +sg25268 +S'Doll' +p73220 +sg25270 +S'John Hall' +p73221 +sa(dp73222 +g25267 +g27 +sg25268 +S'Marionette - "Ahab"' +p73223 +sg25270 +S'Elmer Weise' +p73224 +sa(dp73225 +g25267 +g27 +sg25268 +S'Doll - "Leta"' +p73226 +sg25270 +S'Eugene Croe' +p73227 +sa(dp73228 +g25267 +g27 +sg25268 +S'Toy Train' +p73229 +sg25270 +S'George File' +p73230 +sa(dp73231 +g25267 +g27 +sg25268 +S'Toy Train' +p73232 +sg25270 +S'Francis Law Durand' +p73233 +sa(dp73234 +g25267 +S"Toy makers did not ignore children's appreciation of sound. Many toys incorporated\n a sound device of some sort, and in certain cases even musical notes were played.\n Toys like this bell cart of about 1860 were a special delight for children. Such\n objects, made from metal, combined sound with the old pull toy system of motion.\n In this case, a cast iron clapper strikes inside the bell as the toy is pulled along\n by a string. The cart consists of two cast zinc wheels with pierced designs of repeated\n heart shapes; the bell between is attached to the round iron axle. The bell is fashioned\n in two halves, of nickel-plated brass. The horse is die stamped from two pieces\n of tinned sheet iron and soldered together. Traces of paint indicate the horse was\n originally painted black and decorated with touches of oil color.\n " +p73235 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002fd.jpg' +p73236 +sg25268 +S'Toy Bell Cart' +p73237 +sg25270 +S'Stanley Chin' +p73238 +sa(dp73239 +g25267 +S'The repertoire of puppets is an extensive one and includes many characters and\n animals. This bull puppet of 1890 is particularly appealing. It is made of a cloth\n with a furry texture. The strings for operating the puppet are clearly visible here.\n Puppets have a long history, beginning as articulated stick figures in ancient\n Egypt, India, Greece, and Rome. During the Middle Ages, puppets were used in miracle\n plays. And in early America, puppet shows provided entertainment in remote frontier\n areas.\n ' +p73240 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002df.jpg' +p73241 +sg25268 +S'Puppet: Bull' +p73242 +sg25270 +S'Hilda Olson' +p73243 +sa(dp73244 +g25267 +g27 +sg25268 +S'Stove (Model)' +p73245 +sg25270 +S'George File' +p73246 +sa(dp73247 +g25268 +S'Mademoiselle Contat' +p73248 +sg25270 +S'J. Coutellier' +p73249 +sg25273 +S'color stipple engraving' +p73250 +sg25275 +S'unknown date\n' +p73251 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e46.jpg' +p73252 +sg25267 +g27 +sa(dp73253 +g25267 +g27 +sg25268 +S"Child's Top" +p73254 +sg25270 +S'Fritz Boehmer' +p73255 +sa(dp73256 +g25267 +g27 +sg25268 +S'Toy Locomotive' +p73257 +sg25270 +S'John Fisk' +p73258 +sa(dp73259 +g25267 +g27 +sg25268 +S'Wooden Rocking Horse' +p73260 +sg25270 +S'Helen E. Gilman' +p73261 +sa(dp73262 +g25267 +g27 +sg25268 +S'Hand Puppet "Punch"' +p73263 +sg25270 +S'William Kerby' +p73264 +sa(dp73265 +g25267 +g27 +sg25268 +S'Bowling Weather Vane' +p73266 +sg25270 +S'Hazel Hyde' +p73267 +sa(dp73268 +g25267 +g27 +sg25268 +S'Horse Weather Vane' +p73269 +sg25270 +S'American 20th Century' +p73270 +sa(dp73271 +g25267 +g27 +sg25268 +S'Weather Vane' +p73272 +sg25270 +S'H. Langden Brown' +p73273 +sa(dp73274 +g25267 +g27 +sg25268 +S'Grasshopper Weather Vane' +p73275 +sg25270 +S'Joseph Goldberg' +p73276 +sa(dp73277 +g25267 +g27 +sg25268 +S'Weathercock' +p73278 +sg25270 +S'Florian Rokita' +p73279 +sa(dp73280 +g25267 +g27 +sg25268 +S'Weathercock' +p73281 +sg25270 +S'Beverly Chichester' +p73282 +sa(dp73283 +g25268 +S'Mademoiselle Ollivier' +p73284 +sg25270 +S'J. Coutellier' +p73285 +sg25273 +S'color stipple engraving' +p73286 +sg25275 +S'unknown date\n' +p73287 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e45.jpg' +p73288 +sg25267 +g27 +sa(dp73289 +g25267 +g27 +sg25268 +S'Running Horse Weather Vane' +p73290 +sg25270 +S'Gertrude Koch' +p73291 +sa(dp73292 +g25267 +g27 +sg25268 +S'Horse and Jockey' +p73293 +sg25270 +S'Palmyra Pimentel' +p73294 +sa(dp73295 +g25267 +g27 +sg25268 +S'Dragon and Serpent Weather Vane' +p73296 +sg25270 +S'Betty Fuerst' +p73297 +sa(dp73298 +g25267 +g27 +sg25268 +S'Cock Weather Vane' +p73299 +sg25270 +S'Flora Merchant' +p73300 +sa(dp73301 +g25267 +g27 +sg25268 +S'Weather Vane' +p73302 +sg25270 +S'Alton K. Skillin' +p73303 +sa(dp73304 +g25267 +g27 +sg25268 +S'Weather Vane - Count Casimir Pulaski' +p73305 +sg25270 +S'Elmer R. Kottcamp' +p73306 +sa(dp73307 +g25267 +g27 +sg25268 +S'Weather Vane' +p73308 +sg25270 +S'Carl Strehlau' +p73309 +sa(dp73310 +g25267 +g27 +sg25268 +S'Butterfly Weather Vane' +p73311 +sg25270 +S'Hazel Hyde' +p73312 +sa(dp73313 +g25267 +g27 +sg25268 +S'Flying Eagle Weather Vane' +p73314 +sg25270 +S'Robert Barton' +p73315 +sa(dp73316 +g25267 +g27 +sg25268 +S'Cock Weather Vane' +p73317 +sg25270 +S'American 20th Century' +p73318 +sa(dp73319 +g25268 +S'Mademoiselle Maillard' +p73320 +sg25270 +S'J. Coutellier' +p73321 +sg25273 +S'color stipple engraving' +p73322 +sg25275 +S'unknown date\n' +p73323 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e44.jpg' +p73324 +sg25267 +g27 +sa(dp73325 +g25267 +g27 +sg25268 +S'Weather Vane - Horse and Rider' +p73326 +sg25270 +S'Victor F. Muollo' +p73327 +sa(dp73328 +g25267 +g27 +sg25268 +S'Weather Vane' +p73329 +sg25270 +S'John Sullivan' +p73330 +sa(dp73331 +g25267 +g27 +sg25268 +S'Gilt Weather Vane' +p73332 +sg25270 +S'Frances Cohen' +p73333 +sa(dp73334 +g25267 +g27 +sg25268 +S'Weather Vane' +p73335 +sg25270 +S'Elmer R. Kottcamp' +p73336 +sa(dp73337 +g25267 +g27 +sg25268 +S'Deer Weather Vane' +p73338 +sg25270 +S'Helen Hobart' +p73339 +sa(dp73340 +g25267 +g27 +sg25268 +S'Weather Vane Finial' +p73341 +sg25270 +S'Eric Mose' +p73342 +sa(dp73343 +g25267 +g27 +sg25268 +S'Weather Vane' +p73344 +sg25270 +S'Helen Hobart' +p73345 +sa(dp73346 +g25267 +g27 +sg25268 +S'Weather Vane' +p73347 +sg25270 +S'Beverly Chichester' +p73348 +sa(dp73349 +g25267 +g27 +sg25268 +S'Architectural Ornament (Eagle)' +p73350 +sg25270 +S'Robert Pohle' +p73351 +sa(dp73352 +g25267 +g27 +sg25268 +S'Toleware Tea Caddy' +p73353 +sg25270 +S'Mildred Ford' +p73354 +sa(dp73355 +g25268 +S'Mme. de M ... en habit de bal' +p73356 +sg25270 +S'Artist Information (' +p73357 +sg25273 +S'(artist after)' +p73358 +sg25275 +S'\n' +p73359 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000963f.jpg' +p73360 +sg25267 +g27 +sa(dp73361 +g25267 +g27 +sg25268 +S'Cast Iron Andiron' +p73362 +sg25270 +S'Milton Grubstein' +p73363 +sa(dp73364 +g25267 +g27 +sg25268 +S'Measure Cup' +p73365 +sg25270 +S'Charles Henning' +p73366 +sa(dp73367 +g25267 +g27 +sg25268 +S"Fireman's Hat Shield" +p73368 +sg25270 +S'Henry Murphy' +p73369 +sa(dp73370 +g25267 +g27 +sg25268 +S'Bread Tray' +p73371 +sg25270 +S'Mildred Ford' +p73372 +sa(dp73373 +g25267 +g27 +sg25268 +S'Toaster or Broiler' +p73374 +sg25270 +S'Frank McEntee' +p73375 +sa(dp73376 +g25267 +g27 +sg25268 +S'Wells Fargo Gold Box' +p73377 +sg25270 +S'Rose Campbell-Gerke' +p73378 +sa(dp73379 +g25267 +g27 +sg25268 +S'Conestoga Tool Box' +p73380 +sg25270 +S'Samuel W. Ford' +p73381 +sa(dp73382 +g25267 +g27 +sg25268 +S'Hoseholder with Fire Company Insignia' +p73383 +sg25270 +S'Elmer G. Anderson' +p73384 +sa(dp73385 +g25267 +g27 +sg25268 +S'Bishop Hill: Woodturning Lathe' +p73386 +sg25270 +S'H. Langden Brown' +p73387 +sa(dp73388 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000552d.jpg' +p73389 +sg25268 +S'Saw and Case' +p73390 +sg25270 +S'Albert Rudin' +p73391 +sa(dp73392 +g25268 +S'Allegory of Chastity' +p73393 +sg25270 +S'Lorenzo Lotto' +p73394 +sg25273 +S'oil on panel' +p73395 +sg25275 +S'c. 1505' +p73396 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002afa.jpg' +p73397 +sg25267 +S'This small panel by Lotto can be dated to early in his career because of stylistic similarities to \n The subject of the panel has been the cause for much discussion. A variety of interpretations\nhave been suggested, including the classical, \n ' +p73398 +sa(dp73399 +g25268 +S'Mme. de M ... en habit de bal' +p73400 +sg25270 +S'Artist Information (' +p73401 +sg25273 +S'(artist after)' +p73402 +sg25275 +S'\n' +p73403 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000974c.jpg' +p73404 +sg25267 +g27 +sa(dp73405 +g25267 +g27 +sg25268 +S'Conestoga Wagon Jacks' +p73406 +sg25270 +S'Nicholas Amantea' +p73407 +sa(dp73408 +g25267 +g27 +sg25268 +S'Coffee Pot' +p73409 +sg25270 +S'Ray Price' +p73410 +sa(dp73411 +g25267 +g27 +sg25268 +S'Dutch Bake Oven' +p73412 +sg25270 +S'Violet Hartenstein' +p73413 +sa(dp73414 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000551b.jpg' +p73415 +sg25268 +S'Mortar and Pestles' +p73416 +sg25270 +S'Elizabeth Moutal' +p73417 +sa(dp73418 +g25267 +g27 +sg25268 +S'Thin Cake Iron' +p73419 +sg25270 +S'Harry Grossen' +p73420 +sa(dp73421 +g25267 +g27 +sg25268 +S'Whirligig' +p73422 +sg25270 +S'Yolande Delasser' +p73423 +sa(dp73424 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a00054fb.jpg' +p73425 +sg25268 +S'Soldier' +p73426 +sg25270 +S'American 20th Century' +p73427 +sa(dp73428 +g25267 +g27 +sg25268 +S'Baptismal Certificate' +p73429 +sg25270 +S'American 20th Century' +p73430 +sa(dp73431 +g25267 +g27 +sg25268 +S'Fraktur' +p73432 +sg25270 +S'Albert Levone' +p73433 +sa(dp73434 +g25267 +g27 +sg25268 +S'Valentine' +p73435 +sg25270 +S'Rex F. Bush' +p73436 +sa(dp73437 +g25268 +S'Les cerises' +p73438 +sg25270 +S'Artist Information (' +p73439 +sg25273 +S'(artist after)' +p73440 +sg25275 +S'\n' +p73441 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e7f.jpg' +p73442 +sg25267 +g27 +sa(dp73443 +g25267 +g27 +sg25268 +S'Fraktur' +p73444 +sg25270 +S'Roy S. Brown' +p73445 +sa(dp73446 +g25267 +g27 +sg25268 +S'Rocking Horse' +p73447 +sg25270 +S'Raymond Neumann' +p73448 +sa(dp73449 +g25267 +S'The production of toy locomotives and toy trains was eventually extended to\n comprise an entire railway system in miniature. This locomotive and tender are made\n of wood and date from about 1850. Like its real counterpart of the day, this model\n had a name, The \n ' +p73450 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002d9.jpg' +p73451 +sg25268 +S'Toy Locomotive' +p73452 +sg25270 +S'Alice Stearns' +p73453 +sa(dp73454 +g25267 +S'American Indians made dolls depicting white settlers as well as their own \n people. Here are two views of a frontiersman dressed in buckskin. The doll was \n made in about 1850 by Plains Indians.\n ' +p73455 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000311.jpg' +p73456 +sg25268 +S'Frontiersman Doll' +p73457 +sg25270 +S'George File' +p73458 +sa(dp73459 +g25267 +g27 +sg25268 +S'Fraktur' +p73460 +sg25270 +S'Albert Levone' +p73461 +sa(dp73462 +g25267 +g27 +sg25268 +S'Fraktur' +p73463 +sg25270 +S'Richard Barnett' +p73464 +sa(dp73465 +g25267 +g27 +sg25268 +S'Fraktur' +p73466 +sg25270 +S'Richard Barnett' +p73467 +sa(dp73468 +g25267 +S'Compared to most weathervanes, which are single figures, this example was an ambitious\n project. Carved by an artisan from Salem, Massachusetts, the three figures represent an Indian, on\n a horse, about to spear an attacking mountain lion. On the whole the composition succeeds well;\n the diagonal line of the spear and upward-lunging animal contrasts with the backward movement\n of the horse. The tail and mane of the horse have been given particular attention in their detail.\n ' +p73469 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000349.jpg' +p73470 +sg25268 +S'Weather Vane' +p73471 +sg25270 +S'John Davis' +p73472 +sa(dp73473 +g25267 +g27 +sg25268 +S'Cow Weather Vane' +p73474 +sg25270 +S'Beverly Chichester' +p73475 +sa(dp73476 +g25267 +g27 +sg25268 +S'Indian Weather Vane' +p73477 +sg25270 +S'Nicholas Amantea' +p73478 +sa(dp73479 +g25268 +S'Les prunes' +p73480 +sg25270 +S'Artist Information (' +p73481 +sg25273 +S'(artist after)' +p73482 +sg25275 +S'\n' +p73483 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e7e.jpg' +p73484 +sg25267 +g27 +sa(dp73485 +g25267 +g27 +sg25268 +S'Horse Weather Vane' +p73486 +sg25270 +S'Henry Murphy' +p73487 +sa(dp73488 +g25267 +g27 +sg25268 +S'Weather Vane' +p73489 +sg25270 +S'Joseph Glover' +p73490 +sa(dp73491 +g25267 +g27 +sg25268 +S'Weather Vane Finial' +p73492 +sg25270 +S'Nicholas Amantea' +p73493 +sa(dp73494 +g25267 +g27 +sg25268 +S'Horse Weather Vane' +p73495 +sg25270 +S'David Ramage' +p73496 +sa(dp73497 +g25267 +g27 +sg25268 +S'Eagle' +p73498 +sg25270 +S'Mina Lowry' +p73499 +sa(dp73500 +g25267 +g27 +sg25268 +S'Revolver' +p73501 +sg25270 +S'Elizabeth Johnson' +p73502 +sa(dp73503 +g25267 +g27 +sg25268 +S'Deerskin Covered Chest' +p73504 +sg25270 +S'Samuel Faigin' +p73505 +sa(dp73506 +g25267 +g27 +sg25268 +S'Trunk' +p73507 +sg25270 +S'Regina Henderer' +p73508 +sa(dp73509 +g25267 +g27 +sg25268 +S'Powder Horn' +p73510 +sg25270 +S'Howell Rosenbaum' +p73511 +sa(dp73512 +g25267 +g27 +sg25268 +S'Powder Flask' +p73513 +sg25270 +S'Randolph F. Miller' +p73514 +sa(dp73515 +g25268 +S'Annette et Lubin' +p73516 +sg25270 +S'Philibert-Louis Debucourt' +p73517 +sg25273 +S'etching and wash manner, printed in blue, dark pink, bright pink, yellow, orange, brown, and black inks' +p73518 +sg25275 +S'1789' +p73519 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a00055aa.jpg' +p73520 +sg25267 +g27 +sa(dp73521 +g25267 +g27 +sg25268 +S'Revolver' +p73522 +sg25270 +S'Rose Campbell-Gerke' +p73523 +sa(dp73524 +g25267 +g27 +sg25268 +S'Powder Pouch' +p73525 +sg25270 +S'Howell Rosenbaum' +p73526 +sa(dp73527 +g25267 +g27 +sg25268 +S'Foot Warmer' +p73528 +sg25270 +S'Robert Gilson' +p73529 +sa(dp73530 +g25267 +g27 +sg25268 +S'Toleware Canteen' +p73531 +sg25270 +S'H. Langden Brown' +p73532 +sa(dp73533 +g25267 +g27 +sg25268 +S'Wallpaper' +p73534 +sg25270 +S'John Garay' +p73535 +sa(dp73536 +g25267 +g27 +sg25268 +S'Carousel Horse' +p73537 +sg25270 +S'Howard Weld' +p73538 +sa(dp73539 +g25267 +g27 +sg25268 +S'Ecclesiastical Vestment' +p73540 +sg25270 +S'Artist Information (' +p73541 +sa(dp73542 +g25267 +g27 +sg25268 +S'Ecclesiastical Vestment' +p73543 +sg25270 +S'Syrena Swanson' +p73544 +sa(dp73545 +g25267 +g27 +sg25268 +S"Dancing Girl from Spark's Carousel Wagon" +p73546 +sg25270 +S'Katharine Merrill' +p73547 +sa(dp73548 +g25267 +g27 +sg25268 +S'Carousel Rabbit' +p73549 +sg25270 +S'Robert Pohle' +p73550 +sa(dp73551 +g25268 +S"Le Compliment ou La Matin\xc3\xa9e du jour de l'an (The Compliment or New Year's Morning)" +p73552 +sg25270 +S'Philibert-Louis Debucourt' +p73553 +sg25273 +S'etching and wash manner, printed in blue, red, yellow, carmine, and black inks' +p73554 +sg25275 +S'1787' +p73555 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a0005927.jpg' +p73556 +sg25267 +g27 +sa(dp73557 +g25267 +g27 +sg25268 +S'Carved Pinewood Mold' +p73558 +sg25270 +S'Franklyn Syres' +p73559 +sa(dp73560 +g25267 +g27 +sg25268 +S'Rag Doll' +p73561 +sg25270 +S'Charlotte Angus' +p73562 +sa(dp73563 +g25267 +S'Because "printed" butter was more appealing to customers than plain bricks, butter molds were used to shape and stamp decorative patterns on the butter sold at market. Pennsylvania German farmers carved the molds that their wives used to prepare the \n butter for sale. Turned on a lathe, this mold and its handle were made in one piece. Popular motifs were sheaves of grain, hearts, American eagles, and flowers. This mold shows a large, symmetrically designed tulip surrounded by small leaves and a \n notched border.\n ' +p73564 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000375.jpg' +p73565 +sg25268 +S'Buttermold' +p73566 +sg25270 +S'Roy Weber' +p73567 +sa(dp73568 +g25267 +g27 +sg25268 +S'Mantle Ornament' +p73569 +sg25270 +S'Mina Lowry' +p73570 +sa(dp73571 +g25267 +g27 +sg25268 +S'Chalkware Horse' +p73572 +sg25270 +S'Mina Lowry' +p73573 +sa(dp73574 +g25267 +g27 +sg25268 +S'Saffron Box' +p73575 +sg25270 +S'Charles Henning' +p73576 +sa(dp73577 +g25267 +g27 +sg25268 +S'Trivet' +p73578 +sg25270 +S'Austin L. Davison' +p73579 +sa(dp73580 +g25267 +S'Ironware cast at the foundry or wrought by a blacksmith was heavy and cumbersome.\n In contrast, the lightness of tinplate made it a popular metal for plain and decorative\n household utensils. Tinplate was made from thin sheets of iron coated with molten\n tin. This combination of metals is rustproof, with the strength and rigidity of\n iron but the malleability and lightness of tin. This tin cookie cutter was a common\n item made by Pennsylvania German tinsmiths. It may have been used by a housewife\n or by a gingerbread baker. The horse and rider pattern shown here was popular.\n Other common patterns were deer, stars, eagles, and the traditional gingerbread\n boy. The figure, which provided the cutting edge, was shaped of thin tin ribbons\n that were soldered to a flat base. Because cookie cutters were made by the local\n tinsmith or by amateur craftsmen, the simple but imaginative shapes display a true\n folk art quality.\n ' +p73581 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002e4.jpg' +p73582 +sg25268 +S'Cookie Cutter' +p73583 +sg25270 +S'Franklyn Syres' +p73584 +sa(dp73585 +g25267 +g27 +sg25268 +S'Cake Mold' +p73586 +sg25270 +S'Amelia Tuccio' +p73587 +sa(dp73588 +g25267 +S'Iron is one of the most abundant minerals available. The strength and malleability\n of this metal make it suitable for a variety of useful objects. This door latch\n is made of wrought iron forged by a blacksmith. An important member of the early\n American community, the blacksmith produced farm tools and implements, household\n utensils, and other hardware. Iron bars were heated at the forge until they were\n malleable. Then, with swift strokes, the blacksmith hammered the hot iron into\n the desired shape. This door latch is just one example of the blacksmith\'s craft.\n Made by a Pennsylvania German, it is called a "Suffolk" latch, a style in which\n the upper and lower cusps, or plates, are joined by a central handle. The thumb-press\n extending through a hole in the upper cusp attaches to the locking mechanism on\n the back of the door. The cusps are formed in an arrowhead design and embellished\n with curved points. A desire for the elaboration of simple, everyday objects was\n common to the German population of Pennsylvania as an extension of their European\n design traditions.\n ' +p73589 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002e2.jpg' +p73590 +sg25268 +S'Door Latch' +p73591 +sg25270 +S'Franklyn Syres' +p73592 +sa(dp73593 +g25268 +S"Les Bouquets, ou la Fete de la Grand'Maman" +p73594 +sg25270 +S'Philibert-Louis Debucourt' +p73595 +sg25273 +S'color aquatint and etching' +p73596 +sg25275 +S'1788' +p73597 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e56.jpg' +p73598 +sg25267 +g27 +sa(dp73599 +g25267 +g27 +sg25268 +S'Conestoga Wagon Tool Box Lid' +p73600 +sg25270 +S'Austin L. Davison' +p73601 +sa(dp73602 +g25267 +S'Toleware is painted tinplate. Also called "japanned-ware," it originated in the Orient, spread to Europe and then to America where it reached a height of popularity in the nineteenth century. Because toleware was prized for its decoration, it was \n often presented as a wedding or birthday gift and reserved for display. Like this coffeepot, toleware was generally painted with a black asphaltum varnish that imitated lacquer. The decoration was executed with oil paint in bright yellows, greens, blues, \n and Chinese vermilion. Fruits, flowers, and ornamental swirls were common motifs. Although toleware was made in several New England states as well as in Pennsylvania, the bold colors mark this pieces as Pennsylvania German.\n ' +p73603 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003be.jpg' +p73604 +sg25268 +S'Toleware Coffee Pot' +p73605 +sg25270 +S'Charles Henning' +p73606 +sa(dp73607 +g25267 +g27 +sg25268 +S'Toleware Coffee Pot' +p73608 +sg25270 +S'Charles Henning' +p73609 +sa(dp73610 +g25267 +S'Iron plantations, and later foundries, established great furnaces for casting\n iron products. The casting process included carving a wooden model of the object\n to be cast. The wooden pattern was then pressed into a bed of sand so that a relief\n of the form remained. Molten iron, poured into the sand mold and allowed to cool,\n resulted in the cast iron product. The stove plate shown here was produced in\n this manner. The five-plate, or jamb, stove was introduced by German immigrants\n in the late eighteenth century. It was cube-shaped with five sides, or plates,\n of cast iron and the sixth side opening into the wall. This stove plate is Pennsylvania\n German. Dated 1763, it was made at the furnace of George Stevenson whose name\n appears on its face. The flowers and heart are typical of Pennsylvania German decoration.\n An architectural motif of twisted columns and arches divides the space into areas\n which frame tulips and a heart.\n ' +p73611 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000303.jpg' +p73612 +sg25268 +S'Stove Plate' +p73613 +sg25270 +S'American 20th Century' +p73614 +sa(dp73615 +g25267 +g27 +sg25268 +S'Hinge' +p73616 +sg25270 +S'Franklyn Syres' +p73617 +sa(dp73618 +g25267 +g27 +sg25268 +S'Toleware Bread Tray' +p73619 +sg25270 +S'Mildred Ford' +p73620 +sa(dp73621 +g25267 +S'This polychrome bird resembles a parrot. In contrast to the naturalistic detail of the owl, the parrot is smoothly stylized and painted in the bright colors typical of Pennsylvania German decoration. \n Because thin wooden legs could easily break, the carver has ingeniously substituted wire to mount the bird on the sawed-off finial of a bedpost.\n ' +p73622 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000374.jpg' +p73623 +sg25268 +S'Pensylvania German Carved Bird' +p73624 +sg25270 +S'Carl Strehlau' +p73625 +sa(dp73626 +g25267 +g27 +sg25268 +S'Rooster' +p73627 +sg25270 +S'Hester Duany' +p73628 +sa(dp73629 +g25267 +g27 +sg25268 +S'Tin Candle Sconce' +p73630 +sg25270 +S'Franklyn Syres' +p73631 +sa(dp73632 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000551c.jpg' +p73633 +sg25268 +S'Sampler' +p73634 +sg25270 +S'Elmer G. Anderson' +p73635 +sa(dp73636 +g25268 +S'Les Deux Baisers (The Two Kisses)' +p73637 +sg25270 +S'Philibert-Louis Debucourt' +p73638 +sg25273 +S'etching and wash manner, printed in blue, red, orange, yellow, and black inks' +p73639 +sg25275 +S'1786' +p73640 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e5b.jpg' +p73641 +sg25267 +g27 +sa(dp73642 +g25267 +g27 +sg25268 +S'Fractur' +p73643 +sg25270 +S'Charles Roadman' +p73644 +sa(dp73645 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a00054fc.jpg' +p73646 +sg25268 +S'Poodle' +p73647 +sg25270 +S'Selma Sandler' +p73648 +sa(dp73649 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a00054fd.jpg' +p73650 +sg25268 +S'Squirrel and Eagle' +p73651 +sg25270 +S'Giacinto Capelli' +p73652 +sa(dp73653 +g25267 +g27 +sg25268 +S'Plate' +p73654 +sg25270 +S'Eugene Shellady' +p73655 +sa(dp73656 +g25267 +g27 +sg25268 +S'Sideboard' +p73657 +sg25270 +S'Cecily Edwards' +p73658 +sa(dp73659 +g25267 +g27 +sg25268 +S'Plate' +p73660 +sg25270 +S'William L. Antrim' +p73661 +sa(dp73662 +g25267 +g27 +sg25268 +S'Pie Plate' +p73663 +sg25270 +S'Eugene Shellady' +p73664 +sa(dp73665 +g25267 +g27 +sg25268 +S'Pie Plate' +p73666 +sg25270 +S'Eugene Shellady' +p73667 +sa(dp73668 +g25267 +g27 +sg25268 +S'Wagon Seat' +p73669 +sg25270 +S'American 20th Century' +p73670 +sa(dp73671 +g25267 +g27 +sg25268 +S"Tailoress' Table" +p73672 +sg25270 +S'John W. Kelleher' +p73673 +sa(dp73674 +g25268 +S"Mgr. Le duc d'Orl\xc3\xa9ans" +p73675 +sg25270 +S'Philibert-Louis Debucourt' +p73676 +sg25273 +S'etching and wash manner, printed in red, yellow, blue, and black inks' +p73677 +sg25275 +S'1789' +p73678 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a00055b1.jpg' +p73679 +sg25267 +g27 +sa(dp73680 +g25267 +g27 +sg25268 +S'Table' +p73681 +sg25270 +S'Anne Ger' +p73682 +sa(dp73683 +g25267 +g27 +sg25268 +S'Door Handle' +p73684 +sg25270 +S'Richard Barnett' +p73685 +sa(dp73686 +g25267 +g27 +sg25268 +S'Built-in Cupboard' +p73687 +sg25270 +S'John W. Kelleher' +p73688 +sa(dp73689 +g25267 +g27 +sg25268 +S'Shaker Pin Cushion' +p73690 +sg25270 +S'William Paul Childers' +p73691 +sa(dp73692 +g25267 +g27 +sg25268 +S'Shaker Hand Loom' +p73693 +sg25270 +S'Alfred H. Smith' +p73694 +sa(dp73695 +g25267 +g27 +sg25268 +S'Wash Chest' +p73696 +sg25270 +S'Alfred H. Smith' +p73697 +sa(dp73698 +g25267 +g27 +sg25268 +S'Chest with Drawer' +p73699 +sg25270 +S'Alfred H. Smith' +p73700 +sa(dp73701 +g25267 +g27 +sg25268 +S'Wood Box' +p73702 +sg25270 +S'Lawrence Foster' +p73703 +sa(dp73704 +g25267 +g27 +sg25268 +S'Collar' +p73705 +sg25270 +S'Elizabeth Moutal' +p73706 +sa(dp73707 +g25267 +g27 +sg25268 +S'Stove' +p73708 +sg25270 +S'Joseph Glover' +p73709 +sa(dp73710 +g25268 +S'Heur et Malheur, ou la Cruche cassee' +p73711 +sg25270 +S'Philibert-Louis Debucourt' +p73712 +sg25273 +S'color aquatint' +p73713 +sg25275 +S'1787' +p73714 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e59.jpg' +p73715 +sg25267 +g27 +sa(dp73716 +g25267 +g27 +sg25268 +S'Shaker Bookcase' +p73717 +sg25270 +S'John W. Kelleher' +p73718 +sa(dp73719 +g25267 +g27 +sg25268 +S'Shaker Rocking Chair' +p73720 +sg25270 +S'Alfred H. Smith' +p73721 +sa(dp73722 +g25267 +g27 +sg25268 +S'Woven Covering for Chair Back' +p73723 +sg25270 +S'Ingrid Selmer-Larsen' +p73724 +sa(dp73725 +g25267 +g27 +sg25268 +S'Tapes for Chair Seat' +p73726 +sg25270 +S'Lucille Gilchrist' +p73727 +sa(dp73728 +g25267 +g27 +sg25268 +S'Piece of Shag' +p73729 +sg25270 +S'Frances Cohen' +p73730 +sa(dp73731 +g25267 +g27 +sg25268 +S"Man's Apron" +p73732 +sg25270 +S'Ingrid Selmer-Larsen' +p73733 +sa(dp73734 +g25267 +g27 +sg25268 +S'Handkerchief' +p73735 +sg25270 +S'George Constantine' +p73736 +sa(dp73737 +g25267 +g27 +sg25268 +S'Knitted Glove' +p73738 +sg25270 +S'Elizabeth Moutal' +p73739 +sa(dp73740 +g25267 +g27 +sg25268 +S"Woman's Cape" +p73741 +sg25270 +S'Helen E. Gilman' +p73742 +sa(dp73743 +g25267 +g27 +sg25268 +S'Desk' +p73744 +sg25270 +S'Alfred H. Smith' +p73745 +sa(dp73746 +g25268 +S"L'Escalade, ou les Adieux du Matin" +p73747 +sg25270 +S'Philibert-Louis Debucourt' +p73748 +sg25273 +S'color aquatint' +p73749 +sg25275 +S'1787' +p73750 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e5a.jpg' +p73751 +sg25267 +g27 +sa(dp73752 +g25267 +g27 +sg25268 +S'Cabinet' +p73753 +sg25270 +S'Irving I. Smith' +p73754 +sa(dp73755 +g25267 +g27 +sg25268 +S"Man's Coat" +p73756 +sg25270 +S'American 20th Century' +p73757 +sa(dp73758 +g25267 +g27 +sg25268 +S'Oval Boxes' +p73759 +sg25270 +S'Alfred H. Smith' +p73760 +sa(dp73761 +g25267 +g27 +sg25268 +S'Dress' +p73762 +sg25270 +S'Charles Goodwin' +p73763 +sa(dp73764 +g25267 +g27 +sg25268 +S'Food Safe' +p73765 +sg25270 +S'George V. Vezolles' +p73766 +sa(dp73767 +g25267 +g27 +sg25268 +S'Wig Block' +p73768 +sg25270 +S'American 20th Century' +p73769 +sa(dp73770 +g25267 +g27 +sg25268 +S'Shaker Circular Rug' +p73771 +sg25270 +S'Elizabeth Moutal' +p73772 +sa(dp73773 +g25267 +g27 +sg25268 +S'Shaker Table' +p73774 +sg25270 +S'Alfred H. Smith' +p73775 +sa(dp73776 +g25267 +S'Built-in cabinets were a standard feature of most Shaker rooms. By building\n in drawers and cupboards, greater efficiency was achieved in utilizing available\n space. Often, built-in cabinets were stained, like these, to provide a contrasting\n color scheme. The knobs, stained darker than the cabinets, furnish an interesting\n visual pattern. Rows of pegs lining the walls were another standard element of interior\n design. Used for hanging items such as chairs in addition to coats and hats, pegs\n served to keep a variety of things neatly out of the way.\n ' +p73777 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000385.jpg' +p73778 +sg25268 +S'Built-in Cupboard and Drawers' +p73779 +sg25270 +S'Alfred H. Smith' +p73780 +sa(dp73781 +g25267 +g27 +sg25268 +S'Shaker Table' +p73782 +sg25270 +S'Alfred H. Smith' +p73783 +sa(dp73784 +g25268 +S'La Rose' +p73785 +sg25270 +S'Philibert-Louis Debucourt' +p73786 +sg25273 +S'color aquatint' +p73787 +sg25275 +S'1788' +p73788 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e58.jpg' +p73789 +sg25267 +g27 +sa(dp73790 +g25267 +g27 +sg25268 +S'Shaker Rug' +p73791 +sg25270 +S'Charles Goodwin' +p73792 +sa(dp73793 +g25267 +g27 +sg25268 +S'Bonnet' +p73794 +sg25270 +S'Orville A. Carroll' +p73795 +sa(dp73796 +g25267 +g27 +sg25268 +S'Spanish Southwest Hutch Table' +p73797 +sg25270 +S'Margery Parish' +p73798 +sa(dp73799 +g25267 +g27 +sg25268 +S'Spur' +p73800 +sg25270 +S'Arthur P. Reynolds' +p73801 +sa(dp73802 +g25267 +g27 +sg25268 +S'Grease Lamp' +p73803 +sg25270 +S'Robert W.R. Taylor' +p73804 +sa(dp73805 +g25267 +g27 +sg25268 +S'Limestone Font' +p73806 +sg25270 +S'Ursula Lauderdale' +p73807 +sa(dp73808 +g25267 +g27 +sg25268 +S'Mechanical Bank: Jumping Dog' +p73809 +sg25270 +S'Edward W. Buechner' +p73810 +sa(dp73811 +g25267 +g27 +sg25268 +S'Toy Locomotive' +p73812 +sg25270 +S'Chris Makrenos' +p73813 +sa(dp73814 +g25267 +g27 +sg25268 +S'Crowing Cock' +p73815 +sg25270 +S'Chris Makrenos' +p73816 +sa(dp73817 +g25267 +g27 +sg25268 +S'Doll Cart' +p73818 +sg25270 +S'Chris Makrenos' +p73819 +sa(dp73820 +g25268 +S'La Main' +p73821 +sg25270 +S'Philibert-Louis Debucourt' +p73822 +sg25273 +S'color aquatint and etching' +p73823 +sg25275 +S'1788' +p73824 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e57.jpg' +p73825 +sg25267 +g27 +sa(dp73826 +g25267 +g27 +sg25268 +S'Doll: "Rose Anne"' +p73827 +sg25270 +S'Eugene Croe' +p73828 +sa(dp73829 +g25267 +g27 +sg25268 +S'"Lumbering"' +p73830 +sg25270 +S'American 20th Century' +p73831 +sa(dp73832 +g25267 +g27 +sg25268 +S'Doll Carriage' +p73833 +sg25270 +S'Peter Connin' +p73834 +sa(dp73835 +g25267 +g27 +sg25268 +S'Corn Husk Doll' +p73836 +sg25270 +S'Mina Lowry' +p73837 +sa(dp73838 +g25267 +g27 +sg25268 +S'Boxing Negroes' +p73839 +sg25270 +S'Owen Middleton' +p73840 +sa(dp73841 +g25267 +g27 +sg25268 +S'Toy Birds' +p73842 +sg25270 +S'Frank Budash' +p73843 +sa(dp73844 +g25267 +g27 +sg25268 +S'Rag Doll' +p73845 +sg25270 +S'Erwin Stenzel' +p73846 +sa(dp73847 +g25267 +g27 +sg25268 +S'Chest Design' +p73848 +sg25270 +S'Etna Wiswall' +p73849 +sa(dp73850 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000be/a000be75.jpg' +p73851 +sg25268 +S'Puppet: Pirate' +p73852 +sg25270 +S'Beverly Chichester' +p73853 +sa(dp73854 +g25267 +g27 +sg25268 +S'Toy Bank' +p73855 +sg25270 +S'Chris Makrenos' +p73856 +sa(dp73857 +g25268 +S"Le Menuet de la mariee (The Bride's Minuet)" +p73858 +sg25270 +S'Philibert-Louis Debucourt' +p73859 +sg25273 +S'etching and wash manner, printed in blue, orange-red, pale pink, yellow, and black inks' +p73860 +sg25275 +S'1786' +p73861 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a00055ae.jpg' +p73862 +sg25267 +g27 +sa(dp73863 +g25267 +g27 +sg25268 +S'Dolls' +p73864 +sg25270 +S'Eugene Croe' +p73865 +sa(dp73866 +g25267 +g27 +sg25268 +S'Doll Carriage' +p73867 +sg25270 +S'Samuel W. Ford' +p73868 +sa(dp73869 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a00054fe.jpg' +p73870 +sg25268 +S'Rocking Horse' +p73871 +sg25270 +S'Elizabeth Fairchild' +p73872 +sa(dp73873 +g25267 +S'This goat once graced the Island Park Carousel in Portsmouth, Rhode Island, which opened in 1905/1906. The carousel was one of about forty built by the Charles I.D. Looff Company. Looff, a German immigrant, was a skilled artisan and woodcarver. The success of his first carousel, installed in 1875 at Coney Island, allowed him to open a factory in Brooklyn. Soon he had factories in East Providence (Riverside), Rhode Island, and Long Beach, California. Looff carved many works himself and, as his business grew, also employed a number of master carvers with their own distinct styles. Although the horse was the most popular subject, carousel animals often included dogs, bears, lions, giraffes, roosters, ostriches, and reindeer. This particular goat was recorded by Index artist Donald Donovan. He captured the well-used figure in great detail, showing the eagle-head saddle cantle and the weathered paint finish. \n ' +p73874 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000345.jpg' +p73875 +sg25268 +S'Carousel Goat' +p73876 +sg25270 +S'Donald Donovan' +p73877 +sa(dp73878 +g25267 +g27 +sg25268 +S'Fireplace Waffle Iron' +p73879 +sg25270 +S'Manuel G. Runyan' +p73880 +sa(dp73881 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f8/a000f8fb.jpg' +p73882 +sg25268 +S"Servant's Bell" +p73883 +sg25270 +S'Manuel G. Runyan' +p73884 +sa(dp73885 +g25267 +g27 +sg25268 +S'Mortar and Pestle' +p73886 +sg25270 +S'Ursula Lauderdale' +p73887 +sa(dp73888 +g25267 +g27 +sg25268 +S'Key Basket' +p73889 +sg25270 +S'Renee A. Monfalcone' +p73890 +sa(dp73891 +g25267 +g27 +sg25268 +S'Latches' +p73892 +sg25270 +S'Al Curry' +p73893 +sa(dp73894 +g25267 +g27 +sg25268 +S'Wooden Doll' +p73895 +sg25270 +S'Lionel Ritchey' +p73896 +sa(dp73897 +g25268 +S'La Noce au Chateau' +p73898 +sg25270 +S'Philibert-Louis Debucourt' +p73899 +sg25273 +S'color aquatint and etching' +p73900 +sg25275 +S'1789' +p73901 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e5e.jpg' +p73902 +sg25267 +g27 +sa(dp73903 +g25267 +g27 +sg25268 +S"Dentist's Waiting Room" +p73904 +sg25270 +S'Perkins Harnly' +p73905 +sa(dp73906 +g25267 +g27 +sg25268 +S'Townhouse Parlor, 1869' +p73907 +sg25270 +S'Perkins Harnly' +p73908 +sa(dp73909 +g25267 +g27 +sg25268 +S'Bar' +p73910 +sg25270 +S'Perkins Harnly' +p73911 +sa(dp73912 +g25267 +g27 +sg25268 +S"Photographer's Studio" +p73913 +sg25270 +S'Artist Information (' +p73914 +sa(dp73915 +g25267 +g27 +sg25268 +S'Bedroom, 1882' +p73916 +sg25270 +S'Perkins Harnly' +p73917 +sa(dp73918 +g25267 +g27 +sg25268 +S'El Station Interior' +p73919 +sg25270 +S'Perkins Harnly' +p73920 +sa(dp73921 +g25267 +g27 +sg25268 +S'Barber Shop' +p73922 +sg25270 +S'Perkins Harnly' +p73923 +sa(dp73924 +g25267 +g27 +sg25268 +S'Bedroom, 1882' +p73925 +sg25270 +S'Perkins Harnly' +p73926 +sa(dp73927 +g25267 +g27 +sg25268 +S'Rural Kitchen' +p73928 +sg25270 +S'Perkins Harnly' +p73929 +sa(dp73930 +g25267 +g27 +sg25268 +S'Entrance Door' +p73931 +sg25270 +S'Hans Westendorff' +p73932 +sa(dp73933 +g25268 +S"L'Oiseau ranime" +p73934 +sg25270 +S'Philibert-Louis Debucourt' +p73935 +sg25273 +S'color aquatint' +p73936 +sg25275 +S'1787' +p73937 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096c4.jpg' +p73938 +sg25267 +g27 +sa(dp73939 +g25267 +g27 +sg25268 +S'Eagle' +p73940 +sg25270 +S'Flora Merchant' +p73941 +sa(dp73942 +g25267 +g27 +sg25268 +S'"Justice"' +p73943 +sg25270 +S'John W. Kelleher' +p73944 +sa(dp73945 +g25267 +g27 +sg25268 +S'Figurehead: "Samuel Skolfield"' +p73946 +sg25270 +S'Joseph Goldberg' +p73947 +sa(dp73948 +g25267 +g27 +sg25268 +S'Bust of Gov. John Winthrop' +p73949 +sg25270 +S'Joseph Goldberg' +p73950 +sa(dp73951 +g25267 +g27 +sg25268 +S'Sternpiece - Eagle' +p73952 +sg25270 +S'Al Curry' +p73953 +sa(dp73954 +g25267 +g27 +sg25268 +S'Indians' +p73955 +sg25270 +S'Raymond Neumann' +p73956 +sa(dp73957 +g25267 +g27 +sg25268 +S'Mirror - Chippendale Style' +p73958 +sg25270 +S'James M. Lawson' +p73959 +sa(dp73960 +g25267 +S'Bird carvings such as this dove fulfilled an ornamental function. The faithfully rendered\n shape of this example has a flowing contour, with the feathers, claws, and bill carefully\n articulated. While decoys were usually painted, carvers of ornamental birds often preferred\n unpainted natural wood.\n ' +p73961 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000034d.jpg' +p73962 +sg25268 +S'Dove Decoy' +p73963 +sg25270 +S'American 20th Century' +p73964 +sa(dp73965 +g25267 +g27 +sg25268 +S'Eagle' +p73966 +sg25270 +S'Jerome Hoxie' +p73967 +sa(dp73968 +g25267 +S'Wooden figures produced for tobacco shops included many subjects other than Indians. This example\n represents a lady of fashion, dressed in a costume for riding a horse. Her stance is quite daring for the Victorian period:\n by revealing her ankles she shows to what lengths tobacconists would go to attract customers. The figure\n comes from Arizona, a state where there were few women and where such a gesture would be sure to\n command attention.\n ' +p73969 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003f6.jpg' +p73970 +sg25268 +S'Cigar Store Figure' +p73971 +sg25270 +S'Elizabeth Johnson' +p73972 +sa(dp73973 +g25268 +S"The Palais Royal - Gallery's Walk / Promenade de la Galerie du Palais Royal" +p73974 +sg25270 +S'Artist Information (' +p73975 +sg25273 +S'(artist after)' +p73976 +sg25275 +S'\n' +p73977 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a00055b2.jpg' +p73978 +sg25267 +g27 +sa(dp73979 +g25267 +g27 +sg25268 +S'Puppet: "Judy"' +p73980 +sg25270 +S'Dorothy Brennan' +p73981 +sa(dp73982 +g25267 +g27 +sg25268 +S'Child of Punch and Judy' +p73983 +sg25270 +S'Dorothy Harris' +p73984 +sa(dp73985 +g25267 +g27 +sg25268 +S'Old Nick, the Devil' +p73986 +sg25270 +S'Florian Rokita' +p73987 +sa(dp73988 +g25267 +g27 +sg25268 +S"Punch's Sweatheart" +p73989 +sg25270 +S'Elmer Weise' +p73990 +sa(dp73991 +g25267 +g27 +sg25268 +S'Two-Headed Freak' +p73992 +sg25270 +S'Chris Makrenos' +p73993 +sa(dp73994 +g25267 +g27 +sg25268 +S'Joe, the Cannibal' +p73995 +sg25270 +S'Edward Strzalkowski' +p73996 +sa(dp73997 +g25267 +g27 +sg25268 +S'Marylin, the Trapeze Artist' +p73998 +sg25270 +S'Frank Gray' +p73999 +sa(dp74000 +g25267 +g27 +sg25268 +S'Jack, the Nimble Juggler' +p74001 +sg25270 +S'Ruth Abrams' +p74002 +sa(dp74003 +g25267 +g27 +sg25268 +S'Acrobat Albert' +p74004 +sg25270 +S'David Ramage' +p74005 +sa(dp74006 +g25267 +g27 +sg25268 +S'Jester' +p74007 +sg25270 +S'Elmer Weise' +p74008 +sa(dp74009 +g25268 +S"The Palais Royal--Garden's Walk / Promenade du Jardin du Palais Royal" +p74010 +sg25270 +S'Artist Information (' +p74011 +sg25273 +S'(artist after)' +p74012 +sg25275 +S'\n' +p74013 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009725.jpg' +p74014 +sg25267 +g27 +sa(dp74015 +g25267 +g27 +sg25268 +S'Marionette Clown' +p74016 +sg25270 +S'Lillian Stahl' +p74017 +sa(dp74018 +g25267 +g27 +sg25268 +S'Punch as Clown' +p74019 +sg25270 +S'Lillian Stahl' +p74020 +sa(dp74021 +g25267 +g27 +sg25268 +S"Innkeeper's Daughter" +p74022 +sg25270 +S'George File' +p74023 +sa(dp74024 +g25267 +g27 +sg25268 +S'Jim the Boxer' +p74025 +sg25270 +S'George File' +p74026 +sa(dp74027 +g25267 +g27 +sg25268 +S'Jerry the Policeman' +p74028 +sg25270 +S'Dorothy Harris' +p74029 +sa(dp74030 +g25267 +g27 +sg25268 +S'Ghost of Judy' +p74031 +sg25270 +S'Edward Strzalkowski' +p74032 +sa(dp74033 +g25267 +g27 +sg25268 +S'Judge Oscar O. Death' +p74034 +sg25270 +S'James McLellan' +p74035 +sa(dp74036 +g25267 +g27 +sg25268 +S'Stage Props for "Punch"' +p74037 +sg25270 +S'George File' +p74038 +sa(dp74039 +g25267 +g27 +sg25268 +S'Old Nick, the Devil' +p74040 +sg25270 +S'George File' +p74041 +sa(dp74042 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa7a.jpg' +p74043 +sg25268 +S"Punch's Head" +p74044 +sg25270 +S'Edward Strzalkowski' +p74045 +sa(dp74046 +g25268 +S'La Promenade Publique' +p74047 +sg25270 +S'Philibert-Louis Debucourt' +p74048 +sg25273 +S'etching and wash manner, printed in blue, carmine, dark pink, yellow, and black inks' +p74049 +sg25275 +S'1792' +p74050 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a00055b3.jpg' +p74051 +sg25267 +g27 +sa(dp74052 +g25267 +S'The fish, one of the symbols of Christianity, was a form originally used for church weathervanes\n in Europe and early America. Fish weathervanes later appeared abundantly along the Eastern\n coast, particularly in New England, as a kind of regional symbol. This example exhibits the\n simple repetition of pattern -- here, little blocks along the upper and lower contours -- that is a\n characteristic of folk art.\n ' +p74053 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000348.jpg' +p74054 +sg25268 +S'Fish Weather Vane' +p74055 +sg25270 +S'Albert Ryder' +p74056 +sa(dp74057 +g25267 +g27 +sg25268 +S'Inn Sign' +p74058 +sg25270 +S'Robert Pohle' +p74059 +sa(dp74060 +g25267 +g27 +sg25268 +S'Billethead Soldier' +p74061 +sg25270 +S'American 20th Century' +p74062 +sa(dp74063 +g25267 +S'Early American bird carvings were frequently used as ornaments for fences or gateposts. One\n such carving is this bird, which probably represents a chicken, as suggested by its head, beak,\n and clawed feet. It is dated 1750. After 1782, the eagle, which became the symbol of the new\n republic, was a frequent theme of woodcarvers and also decorated fence and gateposts.\n ' +p74064 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000034e.jpg' +p74065 +sg25268 +S'Golden Eagle Gatepost' +p74066 +sg25270 +S'Henry Murphy' +p74067 +sa(dp74068 +g25267 +g27 +sg25268 +S'Butter Mold' +p74069 +sg25270 +S'Frances Lichten' +p74070 +sa(dp74071 +g25267 +g27 +sg25268 +S'Table Mirror' +p74072 +sg25270 +S'Helen Bronson' +p74073 +sa(dp74074 +g25267 +g27 +sg25268 +S'Eagle' +p74075 +sg25270 +S'Mina Lowry' +p74076 +sa(dp74077 +g25267 +g27 +sg25268 +S'Pipe Head: Lincoln' +p74078 +sg25270 +S'Carl Keksi' +p74079 +sa(dp74080 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p74081 +sg25270 +S'Charles Bowman' +p74082 +sa(dp74083 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p74084 +sg25270 +S'Rosamond P. Gray' +p74085 +sa(dp74086 +g25268 +S'La Rose mal defendue' +p74087 +sg25270 +S'Philibert-Louis Debucourt' +p74088 +sg25273 +S'etching and engraving printed in color from one plate inked "a la poupee"' +p74089 +sg25275 +S'1791' +p74090 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096c8.jpg' +p74091 +sg25267 +g27 +sa(dp74092 +g25267 +g27 +sg25268 +S'Gargoyle/Gutter Spout' +p74093 +sg25270 +S'Rosamond P. Gray' +p74094 +sa(dp74095 +g25267 +g27 +sg25268 +S'Half-Length Figure' +p74096 +sg25270 +S'Rosamond P. Gray' +p74097 +sa(dp74098 +g25267 +S"A much-admired shop sign was this sheaf of wheat, carved in relief by Clark Noble about 1900 for a\n bakery building. Heads and stems are carefully differentiated, while the simplicity of the sheaf's contour\n contributes to the total effect.\n " +p74099 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000035e.jpg' +p74100 +sg25268 +S'"Sheaf of Wheat" Shop Sign' +p74101 +sg25270 +S'Robert Pohle' +p74102 +sa(dp74103 +g25267 +g27 +sg25268 +S'Doll' +p74104 +sg25270 +S'Francis Law Durand' +p74105 +sa(dp74106 +g25267 +g27 +sg25268 +S"Carousel Horse's Head" +p74107 +sg25270 +S'Gerard Barnett' +p74108 +sa(dp74109 +g25267 +S'American figurehead carvers were famous for their work, which flourished from colonial times until the late nineteenth century. Aside from figureheads, these\n versatile craftsmen also produced sternboards, gangway boards, billetheads, and other wooden decorative carvings for ships. Almost every class of ship, from steamboats to whalers to clipper ships, came to be ornamented with carving. There was great variety among American figureheads, but this example represents the most characteristic type: a full-length female figure, seeming to step forward as she gazes out to the sea, the drapery of her gown apparently windblown. This figurehead, from the sailing ship\n \n ' +p74110 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003f0.jpg' +p74111 +sg25268 +S'Figurehead' +p74112 +sg25270 +S'American 20th Century' +p74113 +sa(dp74114 +g25267 +g27 +sg25268 +S'"Symbolic" Figure Carvings' +p74115 +sg25270 +S'Joseph L. Boyd' +p74116 +sa(dp74117 +g25267 +g27 +sg25268 +S'Virgin and Child' +p74118 +sg25270 +S'Milton Bevier' +p74119 +sa(dp74120 +g25267 +g27 +sg25268 +S'Decoy: Blue Winged Teal' +p74121 +sg25270 +S'Albert Geuppert' +p74122 +sa(dp74123 +g25267 +g27 +sg25268 +S'Pilot House Ornament' +p74124 +sg25270 +S'Mary E. Humes' +p74125 +sa(dp74126 +g25268 +S'La Rose mal defendue (The Poorly Defended Rose)' +p74127 +sg25270 +S'Artist Information (' +p74128 +sg25273 +S'(artist after)' +p74129 +sg25275 +S'\n' +p74130 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e61.jpg' +p74131 +sg25267 +g27 +sa(dp74132 +g25267 +g27 +sg25268 +S'Classical Leaves and Scroll' +p74133 +sg25270 +S'Randolph F. Miller' +p74134 +sa(dp74135 +g25267 +g27 +sg25268 +S'Carousel Drummer Girl' +p74136 +sg25270 +S'Robert Pohle' +p74137 +sa(dp74138 +g25267 +S'This pig is an example of the wide variety of domestic and exotic creatures designed for\n carousels. Though realistic, it is made particularly appealing for the purpose of the carnival. The\n surface modeling is dynamic, and the accessories are well carved. While hand-carved wooden\n carousel animals continued to be made well into the nineteenth century, they were eventually\n replaced by less expensive and less perishable versions in metal, plastic, and fiberglass.\n ' +p74139 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000346.jpg' +p74140 +sg25268 +S'Carousel Pig' +p74141 +sg25270 +S'Henry Tomaszewski' +p74142 +sa(dp74143 +g25267 +S"A fine example of a child's toy is this wooden doll made of pine. In the long history of doll-making, \n wooden ones were among the first to be produced in any quantity. This doll comes\n from New Hampshire where it was probably created about 1790 by a carver living in a Swiss settlement. The unpainted, natural wood has a smooth and beautifully grained surface. The\n doll's dress and shoes are carved in the wood.\n " +p74144 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000034b.jpg' +p74145 +sg25268 +S'Wooden Doll' +p74146 +sg25270 +S'John Tarantino' +p74147 +sa(dp74148 +g25267 +g27 +sg25268 +S'Flask' +p74149 +sg25270 +S'Beverly Chichester' +p74150 +sa(dp74151 +g25267 +g27 +sg25268 +S'Covered Mug' +p74152 +sg25270 +S'V.L. Vance' +p74153 +sa(dp74154 +g25267 +g27 +sg25268 +S'Compote' +p74155 +sg25270 +S'Beverly Chichester' +p74156 +sa(dp74157 +g25267 +g27 +sg25268 +S'Cow Weather Vane' +p74158 +sg25270 +S'Mina Lowry' +p74159 +sa(dp74160 +g25267 +g27 +sg25268 +S'Ember Carrier' +p74161 +sg25270 +S'Alois E. Ulrich' +p74162 +sa(dp74163 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000551d.jpg' +p74164 +sg25268 +S'Coffeepot' +p74165 +sg25270 +S'Wayne White' +p74166 +sa(dp74167 +g25268 +S'The Crucifixion with the Virgin, Saint John, Saint Jerome, and Saint Mary Magdalene [left panel]' +p74168 +sg25270 +S'Pietro Perugino' +p74169 +sg25273 +S'oil on panel transferred to canvas' +p74170 +sg25275 +S'c. 1482/1485' +p74171 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000be/a000be58.jpg' +p74172 +sg25267 +S"Pietro Vannucci, called Perugino after the city in which he often lived, collaborated\r\nwith other celebrated painters in one of the most prestigious commissions of the\r\nlate fifteenth century -- the decoration of the walls of the Sistine Chapel in 1481-1482.\r\nHe headed active workshops in Perugia and Florence, where he would eventually be\r\novershadowed by his greatest pupil, Raphael.\n Perugino's \n From the late seventeenth to the early twentieth century Perugino's \n " +p74173 +sa(dp74174 +g25268 +S"L'Oiseau prive" +p74175 +sg25270 +S'Philibert-Louis Debucourt' +p74176 +sg25273 +S'color aquatint, etching, and stipple on blue paper' +p74177 +sg25275 +S'1795' +p74178 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e5f.jpg' +p74179 +sg25267 +g27 +sa(dp74180 +g25267 +g27 +sg25268 +S"Tailor's Shears and Iron" +p74181 +sg25270 +S'John Bodine' +p74182 +sa(dp74183 +g25267 +S'This toy model is an elegant and meticulous example of a nineteenth-century\n horse-drawn fire engine. The engine consists of a vertical cylindrical boiler at\n the back mounted on two pierced wheels. Cast iron was used for this model. While\n cast iron had been used earlier in the century for some toys and for parts such as \n wheels, miniature vehicles made entirely of iron did not appear until the 1880s.\n The toy was made between about 1885 and 1900 by the Ives Company of Bridgeport,\n Connecticut, a pioneer toy maker whose products are considered by collectors to\n be among the finest made. The name "Phoenix," cast in relief on the face of the\n door at the back of the boiler, was frequently used by Ives to identify its toys.\n ' +p74184 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002f9.jpg' +p74185 +sg25268 +S'Toy Fire Engine' +p74186 +sg25270 +S'Charles Henning' +p74187 +sa(dp74188 +g25267 +g27 +sg25268 +S'Fishing Spear' +p74189 +sg25270 +S'Albert Geuppert' +p74190 +sa(dp74191 +g25267 +g27 +sg25268 +S'Stove' +p74192 +sg25270 +S'George V. Vezolles' +p74193 +sa(dp74194 +g25267 +g27 +sg25268 +S'Warming Pan' +p74195 +sg25270 +S'Dayton Brown' +p74196 +sa(dp74197 +g25267 +g27 +sg25268 +S'Spur' +p74198 +sg25270 +S'Gerald Transpota' +p74199 +sa(dp74200 +g25267 +g27 +sg25268 +S'Toleware Bread Tray' +p74201 +sg25270 +S'Mildred Ford' +p74202 +sa(dp74203 +g25267 +g27 +sg25268 +S'Toleware Box' +p74204 +sg25270 +S'Charles Henning' +p74205 +sa(dp74206 +g25267 +g27 +sg25268 +S'Camphene Lamp' +p74207 +sg25270 +S'Helen Hobart' +p74208 +sa(dp74209 +g25267 +g27 +sg25268 +S'Silver Mug' +p74210 +sg25270 +S'Hester Duany' +p74211 +sa(dp74212 +g25268 +S'Pauvre Annette' +p74213 +sg25270 +S'Philibert-Louis Debucourt' +p74214 +sg25273 +S'color aquatint and etching' +p74215 +sg25275 +S'1795' +p74216 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e60.jpg' +p74217 +sg25267 +g27 +sa(dp74218 +g25267 +g27 +sg25268 +S'Match Box' +p74219 +sg25270 +S'John H. Tercuzzi' +p74220 +sa(dp74221 +g25267 +g27 +sg25268 +S'Andiron' +p74222 +sg25270 +S'Herman Bader' +p74223 +sa(dp74224 +g25267 +g27 +sg25268 +S'Flask' +p74225 +sg25270 +S'V.L. Vance' +p74226 +sa(dp74227 +g25267 +g27 +sg25268 +S'Flask' +p74228 +sg25270 +S'Chris Makrenos' +p74229 +sa(dp74230 +g25267 +g27 +sg25268 +S'Perfume Bottle' +p74231 +sg25270 +S'Chris Makrenos' +p74232 +sa(dp74233 +g25267 +g27 +sg25268 +S'Mug' +p74234 +sg25270 +S'Isidore Steinberg' +p74235 +sa(dp74236 +g25267 +g27 +sg25268 +S'Vase' +p74237 +sg25270 +S'John Tarantino' +p74238 +sa(dp74239 +g25267 +g27 +sg25268 +S'Flip Glass' +p74240 +sg25270 +S'John Dana' +p74241 +sa(dp74242 +g25267 +g27 +sg25268 +S'Decanter' +p74243 +sg25270 +S'Van Silvay' +p74244 +sa(dp74245 +g25267 +g27 +sg25268 +S'Bowl' +p74246 +sg25270 +S'Van Silvay' +p74247 +sa(dp74248 +g25268 +S'Frascati' +p74249 +sg25270 +S'Philibert-Louis Debucourt' +p74250 +sg25273 +S'hand-colored aquatint and etching' +p74251 +sg25275 +S'1807' +p74252 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096c6.jpg' +p74253 +sg25267 +g27 +sa(dp74254 +g25267 +g27 +sg25268 +S'Vase' +p74255 +sg25270 +S'Van Silvay' +p74256 +sa(dp74257 +g25267 +g27 +sg25268 +S'Flask' +p74258 +sg25270 +S'John Jordan' +p74259 +sa(dp74260 +g25267 +g27 +sg25268 +S'Horse Weather Vane' +p74261 +sg25270 +S'Dolores Haupt' +p74262 +sa(dp74263 +g25267 +g27 +sg25268 +S'Copper Bowl' +p74264 +sg25270 +S'Rex F. Bush' +p74265 +sa(dp74266 +g25267 +g27 +sg25268 +S'Garden Figure - George Washington' +p74267 +sg25270 +S'Zabelle Missirian' +p74268 +sa(dp74269 +g25267 +g27 +sg25268 +S'Mug' +p74270 +sg25270 +S'Sydney Roberts' +p74271 +sa(dp74272 +g25267 +g27 +sg25268 +S'Skillet with Four Legs' +p74273 +sg25270 +S'American 20th Century' +p74274 +sa(dp74275 +g25267 +g27 +sg25268 +S'Pewter Mug' +p74276 +sg25270 +S'Harry G. Aberdeen' +p74277 +sa(dp74278 +g25267 +g27 +sg25268 +S'Betty Lamp' +p74279 +sg25270 +S'Albert Rudin' +p74280 +sa(dp74281 +g25267 +g27 +sg25268 +S'Plate Warmer' +p74282 +sg25270 +S'Artist Information (' +p74283 +sa(dp74284 +g25268 +S'Madame du Barry' +p74285 +sg25270 +S'Artist Information (' +p74286 +sg25273 +S'(artist after)' +p74287 +sg25275 +S'\n' +p74288 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f34.jpg' +p74289 +sg25267 +g27 +sa(dp74290 +g25267 +g27 +sg25268 +S"Butcher's Sign" +p74291 +sg25270 +S'Vera Van Voris' +p74292 +sa(dp74293 +g25267 +g27 +sg25268 +S"Miner's Candlestick" +p74294 +sg25270 +S'Rose Campbell-Gerke' +p74295 +sa(dp74296 +g25267 +g27 +sg25268 +S"Miner's Candlestick" +p74297 +sg25270 +S'Benjamin Resnick' +p74298 +sa(dp74299 +g25267 +g27 +sg25268 +S'Built-in Drawers and Cupboards' +p74300 +sg25270 +S'Alfred H. Smith' +p74301 +sa(dp74302 +g25267 +g27 +sg25268 +S'Shaker Cabinet' +p74303 +sg25270 +S'Anne Ger' +p74304 +sa(dp74305 +g25267 +g27 +sg25268 +S'Shaker Desk' +p74306 +sg25270 +S'John W. Kelleher' +p74307 +sa(dp74308 +g25267 +g27 +sg25268 +S"Woman's Costume" +p74309 +sg25270 +S'Elizabeth Moutal' +p74310 +sa(dp74311 +g25267 +g27 +sg25268 +S"Shaker Man's Sock" +p74312 +sg25270 +S'Alice Stearns' +p74313 +sa(dp74314 +g25267 +g27 +sg25268 +S"Girl's Dress" +p74315 +sg25270 +S'Nancy Crimi' +p74316 +sa(dp74317 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a00054ff.jpg' +p74318 +sg25268 +S'Toy Horse' +p74319 +sg25270 +S'Mina Lowry' +p74320 +sa(dp74321 +g25268 +S'Madame du Barry' +p74322 +sg25270 +S'Artist Information (' +p74323 +sg25273 +S'(artist after)' +p74324 +sg25275 +S'\n' +p74325 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009706.jpg' +p74326 +sg25267 +g27 +sa(dp74327 +g25267 +g27 +sg25268 +S'Eagle' +p74328 +sg25270 +S'American 20th Century' +p74329 +sa(dp74330 +g25267 +g27 +sg25268 +S'Figurehead' +p74331 +sg25270 +S'American 20th Century' +p74332 +sa(dp74333 +g25267 +g27 +sg25268 +S'Pie Plate' +p74334 +sg25270 +S'William L. Antrim' +p74335 +sa(dp74336 +g25267 +g27 +sg25268 +S'Toy Bank' +p74337 +sg25270 +S'Kurt Melzer' +p74338 +sa(dp74339 +g25267 +g27 +sg25268 +S'Coffee Pot' +p74340 +sg25270 +S'John Thorsen' +p74341 +sa(dp74342 +g25267 +g27 +sg25268 +S'Bandbox' +p74343 +sg25270 +S'Mina Lowry' +p74344 +sa(dp74345 +g25267 +g27 +sg25268 +S'Bandbox' +p74346 +sg25270 +S'Gilbert Sackerman' +p74347 +sa(dp74348 +g25267 +g27 +sg25268 +S'Patchwork Quilt' +p74349 +sg25270 +S'Elgin Moncure Styll' +p74350 +sa(dp74351 +g25267 +g27 +sg25268 +S'Coffee Mill' +p74352 +sg25270 +S'Frank C. Barks' +p74353 +sa(dp74354 +g25267 +g27 +sg25268 +S'Wood Grain (Demo.)' +p74355 +sg25270 +S'Harry Mann Waddell' +p74356 +sa(dp74357 +g25268 +S"Le Comte d'Artois as an enfant with Mlle. Clotide" +p74358 +sg25270 +S'Artist Information (' +p74359 +sg25273 +S'(artist after)' +p74360 +sg25275 +S'\n' +p74361 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000964f.jpg' +p74362 +sg25267 +g27 +sa(dp74363 +g25267 +g27 +sg25268 +S'Blanket Chest' +p74364 +sg25270 +S'Alfred H. Smith' +p74365 +sa(dp74366 +g25267 +g27 +sg25268 +S'Washstand' +p74367 +sg25270 +S'American 20th Century' +p74368 +sa(dp74369 +g25267 +g27 +sg25268 +S"Child's Chair" +p74370 +sg25270 +S'American 20th Century' +p74371 +sa(dp74372 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p74373 +sg25270 +S'John Davis' +p74374 +sa(dp74375 +g25267 +g27 +sg25268 +S'Decoy' +p74376 +sg25270 +S'Mina Lowry' +p74377 +sa(dp74378 +g25267 +g27 +sg25268 +S'Rooster' +p74379 +sg25270 +S'Artist Information (' +p74380 +sa(dp74381 +g25267 +g27 +sg25268 +S'Sketch of Figurehead' +p74382 +sg25270 +S'American 20th Century' +p74383 +sa(dp74384 +g25267 +g27 +sg25268 +S'Figure of a Girl' +p74385 +sg25270 +S'Lucille Chabot' +p74386 +sa(dp74387 +g25267 +g27 +sg25268 +S'Bottle' +p74388 +sg25270 +S'V.L. Vance' +p74389 +sa(dp74390 +g25267 +g27 +sg25268 +S'Renderings of Stone (Demo.)' +p74391 +sg25270 +S'Ray Caswell' +p74392 +sa(dp74393 +g25268 +S'Roxelane' +p74394 +sg25270 +S'Artist Information (' +p74395 +sg25273 +S'(artist after)' +p74396 +sg25275 +S'\n' +p74397 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ee6.jpg' +p74398 +sg25267 +g27 +sa(dp74399 +g25267 +g27 +sg25268 +S'Flatiron' +p74400 +sg25270 +S'Maurice Van Felix' +p74401 +sa(dp74402 +g25267 +g27 +sg25268 +S'Kettle' +p74403 +sg25270 +S'Edward Albritton' +p74404 +sa(dp74405 +g25267 +g27 +sg25268 +S'Color Notes on Iron' +p74406 +sg25270 +S'Gerald Transpota' +p74407 +sa(dp74408 +g25267 +g27 +sg25268 +S'Chair' +p74409 +sg25270 +S'American 20th Century' +p74410 +sa(dp74411 +g25267 +g27 +sg25268 +S'Figurehead' +p74412 +sg25270 +S'Irving I. Smith' +p74413 +sa(dp74414 +g25267 +g27 +sg25268 +S'Figurehead' +p74415 +sg25270 +S'Irving I. Smith' +p74416 +sa(dp74417 +g25267 +g27 +sg25268 +S'Bread Tray' +p74418 +sg25270 +S'Mildred Ford' +p74419 +sa(dp74420 +g25267 +g27 +sg25268 +S'Starboard Light' +p74421 +sg25270 +S'Eugene Bartz' +p74422 +sa(dp74423 +g25267 +g27 +sg25268 +S'Sconce' +p74424 +sg25270 +S'Amelia Tuccio' +p74425 +sa(dp74426 +g25267 +g27 +sg25268 +S'Torch' +p74427 +sg25270 +S'Elmer G. Anderson' +p74428 +sa(dp74429 +g25268 +S'Le charlatan francais' +p74430 +sg25270 +S'Artist Information (' +p74431 +sg25273 +S'(artist after)' +p74432 +sg25275 +S'\n' +p74433 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f96.jpg' +p74434 +sg25267 +g27 +sa(dp74435 +g25267 +g27 +sg25268 +S'Balcony Railing' +p74436 +sg25270 +S'Arelia Arbo' +p74437 +sa(dp74438 +g25267 +g27 +sg25268 +S'Balcony Railing' +p74439 +sg25270 +S'Al Curry' +p74440 +sa(dp74441 +g25267 +g27 +sg25268 +S'Fence' +p74442 +sg25270 +S'Pearl Torell' +p74443 +sa(dp74444 +g25267 +g27 +sg25268 +S'Tea Kettle' +p74445 +sg25270 +S'Edward L. Loper' +p74446 +sa(dp74447 +g25267 +g27 +sg25268 +S'Weather Vane' +p74448 +sg25270 +S'Herman Bader' +p74449 +sa(dp74450 +g25267 +g27 +sg25268 +S'Candlestick' +p74451 +sg25270 +S'Philip Johnson' +p74452 +sa(dp74453 +g25267 +g27 +sg25268 +S'Pewter Mug' +p74454 +sg25270 +S'Eugene Barrell' +p74455 +sa(dp74456 +g25267 +g27 +sg25268 +S'Teapot' +p74457 +sg25270 +S'American 20th Century' +p74458 +sa(dp74459 +g25267 +g27 +sg25268 +S'Teapot' +p74460 +sg25270 +S'American 20th Century' +p74461 +sa(dp74462 +g25267 +g27 +sg25268 +S'Firemark' +p74463 +sg25270 +S'Donald Williams' +p74464 +sa(dp74465 +g25268 +S'Le charlatan allemand' +p74466 +sg25270 +S'Artist Information (' +p74467 +sg25273 +S'(artist after)' +p74468 +sg25275 +S'\n' +p74469 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f94.jpg' +p74470 +sg25267 +g27 +sa(dp74471 +g25267 +g27 +sg25268 +S'Firemark' +p74472 +sg25270 +S'Rose Campbell-Gerke' +p74473 +sa(dp74474 +g25267 +S"Decorative ironwork was originally wrought at the forge. Used for gates, grilles,\n railings, and balconies, such ironwork represented the height of the blacksmith's\n craft. These decorative pieces first appeared in cities such as New Orleans, Charleston,\n and Baltimore. By the early nineteenth century, however, foundries were producing\n popular cast ironwork for other regions. This cast iron panel from a cemetery gate\n was made in the mid-nineteenth century. The ornate floral and arboreal motifs aretypical of Victorian decoration popular in that period. The lamb resting under\n a weeping willow tree was a common theme symbolic of grief and appropriate for\n the panel's use as a cemetery ornament.\n " +p74475 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002e3.jpg' +p74476 +sg25268 +S'Cast Iron Fence' +p74477 +sg25270 +S'Pearl Torell' +p74478 +sa(dp74479 +g25267 +g27 +sg25268 +S'Fence - Sea Horse Design' +p74480 +sg25270 +S'Pearl Torell' +p74481 +sa(dp74482 +g25267 +g27 +sg25268 +S'Fence' +p74483 +sg25270 +S'Rose Campbell-Gerke' +p74484 +sa(dp74485 +g25267 +g27 +sg25268 +S'Gate' +p74486 +sg25270 +S'Jerome Hoxie' +p74487 +sa(dp74488 +g25267 +g27 +sg25268 +S'Gate and Gatepost' +p74489 +sg25270 +S'Jerome Hoxie' +p74490 +sa(dp74491 +g25267 +g27 +sg25268 +S'Balcony Railing with Cast Rosette' +p74492 +sg25270 +S'Raymond Neumann' +p74493 +sa(dp74494 +g25267 +g27 +sg25268 +S'Bracket' +p74495 +sg25270 +S'Alvin J. Doria' +p74496 +sa(dp74497 +g25267 +g27 +sg25268 +S'Gate' +p74498 +sg25270 +S'Sarkis Erganian' +p74499 +sa(dp74500 +g25267 +g27 +sg25268 +S'Balcony' +p74501 +sg25270 +S'Gilbert Sackerman' +p74502 +sa(dp74503 +g25268 +S"L'accord du mariage" +p74504 +sg25270 +S'Artist Information (' +p74505 +sg25273 +S'(artist after)' +p74506 +sg25275 +S'\n' +p74507 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f7a.jpg' +p74508 +sg25267 +g27 +sa(dp74509 +g25267 +g27 +sg25268 +S'Fence Panel' +p74510 +sg25270 +S'J. Howard Iams' +p74511 +sa(dp74512 +g25267 +g27 +sg25268 +S'Hitching Post' +p74513 +sg25270 +S'David P Willoughby' +p74514 +sa(dp74515 +g25267 +g27 +sg25268 +S'Hitching Post' +p74516 +sg25270 +S'David P Willoughby' +p74517 +sa(dp74518 +g25267 +g27 +sg25268 +S'Hitching Post' +p74519 +sg25270 +S'Albert Ryder' +p74520 +sa(dp74521 +g25267 +g27 +sg25268 +S'Fence' +p74522 +sg25270 +S'Rose Campbell-Gerke' +p74523 +sa(dp74524 +g25267 +g27 +sg25268 +S'Suffolk Latch' +p74525 +sg25270 +S'Regina Henderer' +p74526 +sa(dp74527 +g25267 +g27 +sg25268 +S'Conestoga Hasp and Hinge' +p74528 +sg25270 +S'John Petrucci' +p74529 +sa(dp74530 +g25267 +g27 +sg25268 +S'Norfolk Latch' +p74531 +sg25270 +S'Henrietta S. Hukill' +p74532 +sa(dp74533 +g25267 +g27 +sg25268 +S'Hinge' +p74534 +sg25270 +S'Earl Butlin' +p74535 +sa(dp74536 +g25267 +g27 +sg25268 +S'Cast Iron Goat' +p74537 +sg25270 +S'Lucille Chabot' +p74538 +sa(dp74539 +g25268 +S'Le concert mecanique' +p74540 +sg25270 +S'Artist Information (' +p74541 +sg25273 +S'(artist after)' +p74542 +sg25275 +S'\n' +p74543 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f08.jpg' +p74544 +sg25267 +g27 +sa(dp74545 +g25267 +g27 +sg25268 +S"Cast Iron Cat's Head" +p74546 +sg25270 +S'Jane Iverson' +p74547 +sa(dp74548 +g25267 +g27 +sg25268 +S'Garden Figure' +p74549 +sg25270 +S'American 20th Century' +p74550 +sa(dp74551 +g25267 +g27 +sg25268 +S'Cast Iron Abraham Lincoln' +p74552 +sg25270 +S'Carl Buergerniss' +p74553 +sa(dp74554 +g25267 +g27 +sg25268 +S'Ornament' +p74555 +sg25270 +S'Erwin Stenzel' +p74556 +sa(dp74557 +g25267 +g27 +sg25268 +S'Leaf and Scroll' +p74558 +sg25270 +S'Thomas Dooley' +p74559 +sa(dp74560 +g25267 +g27 +sg25268 +S'Cast Iron Cresting' +p74561 +sg25270 +S'Samuel Faigin' +p74562 +sa(dp74563 +g25267 +g27 +sg25268 +S'Weather Vane' +p74564 +sg25270 +S'Chris Makrenos' +p74565 +sa(dp74566 +g25267 +g27 +sg25268 +S'Stove Plate' +p74567 +sg25270 +S'Charles Von Urban' +p74568 +sa(dp74569 +g25267 +g27 +sg25268 +S'Stove Plate' +p74570 +sg25270 +S'Charles Von Urban' +p74571 +sa(dp74572 +g25267 +S'The five-plate, or jamb, stove was introduced by German immigrants in the early nineteenth century. Set into the wall and fired from the fireplace of an adjoining room, these stoves used fuel more efficiently than open fireplaces and provided greater \n warmth for the whole room. Because Pennsylvania had rich iron ore deposits, pig iron was readily available. Iron plantations established great furnaces and cast pots, kettles, and other household utensils, as well as the iron stoveplates. Stoveplates \n were cast in sand molds. Carved wooden designs were pressed into sand so that a relief pattern remained. Molten iron was then poured into the sand mold and allowed to cool. Common stoveplate motifs were the flowers, birds, and scrolls of Pennsylvania \n German tradition, as well as biblical scenes or scenes with a moral lesson. This stove is dated 1749. The front plate shows Death in the form of a horned skeleton wielding a stick against the protests of a mortal. From behind, a friend is trying \n to aid the unfortunate victim.\n ' +p74573 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003bd.jpg' +p74574 +sg25268 +S'Jamb Stove' +p74575 +sg25270 +S'Roy Weber' +p74576 +sa(dp74577 +g25268 +S'Le concert mecanique' +p74578 +sg25270 +S'Artist Information (' +p74579 +sg25273 +S'(artist after)' +p74580 +sg25275 +S'\n' +p74581 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f07.jpg' +p74582 +sg25267 +g27 +sa(dp74583 +g25267 +g27 +sg25268 +S'Toy Bank' +p74584 +sg25270 +S'American 20th Century' +p74585 +sa(dp74586 +g25267 +g27 +sg25268 +S'Toy Bank' +p74587 +sg25270 +S'Hans Mangelsdorf' +p74588 +sa(dp74589 +g25267 +g27 +sg25268 +S'Toy Bank' +p74590 +sg25270 +S'Paul Kelly' +p74591 +sa(dp74592 +g25267 +g27 +sg25268 +S'Cast Iron Window Railing' +p74593 +sg25270 +S'Harley Kempter' +p74594 +sa(dp74595 +g25267 +g27 +sg25268 +S'Cast Iron Garden Balcony' +p74596 +sg25270 +S'Gilbert Sackerman' +p74597 +sa(dp74598 +g25267 +g27 +sg25268 +S'Garden Urn' +p74599 +sg25270 +S'John H. Tercuzzi' +p74600 +sa(dp74601 +g25267 +g27 +sg25268 +S'Wall Ornament' +p74602 +sg25270 +S'Molly Bodenstein' +p74603 +sa(dp74604 +g25267 +g27 +sg25268 +S'Weather Vane' +p74605 +sg25270 +S'Nicholas Acampora' +p74606 +sa(dp74607 +g25267 +g27 +sg25268 +S'Umbrella Stand' +p74608 +sg25270 +S'Milton Grubstein' +p74609 +sa(dp74610 +g25267 +g27 +sg25268 +S'Candle Sconce' +p74611 +sg25270 +S'Amelia Tuccio' +p74612 +sa(dp74613 +g25268 +S'Dame a sa toilette' +p74614 +sg25270 +S'Artist Information (' +p74615 +sg25273 +S'French, 1720 - 1778' +p74616 +sg25275 +S'(artist after)' +p74617 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d00.jpg' +p74618 +sg25267 +g27 +sa(dp74619 +g25267 +g27 +sg25268 +S'Flatiron Stand' +p74620 +sg25270 +S'Rose Campbell-Gerke' +p74621 +sa(dp74622 +g25267 +g27 +sg25268 +S'Trivet' +p74623 +sg25270 +S'Rocco Navigato' +p74624 +sa(dp74625 +g25267 +g27 +sg25268 +S'Trivet' +p74626 +sg25270 +S'William Ludwig' +p74627 +sa(dp74628 +g25267 +g27 +sg25268 +S'Trivet' +p74629 +sg25270 +S'William Ludwig' +p74630 +sa(dp74631 +g25267 +g27 +sg25268 +S'Trivet' +p74632 +sg25270 +S'William Ludwig' +p74633 +sa(dp74634 +g25267 +g27 +sg25268 +S'Trivet' +p74635 +sg25270 +S'Wellington Blewett' +p74636 +sa(dp74637 +g25267 +g27 +sg25268 +S'Trivet' +p74638 +sg25270 +S'F.C. Davenport' +p74639 +sa(dp74640 +g25267 +g27 +sg25268 +S'Trivet' +p74641 +sg25270 +S'Margaret Golden' +p74642 +sa(dp74643 +g25267 +g27 +sg25268 +S'Trivet' +p74644 +sg25270 +S'Margaret Golden' +p74645 +sa(dp74646 +g25267 +g27 +sg25268 +S'Trivet' +p74647 +sg25270 +S'Sydney Roberts' +p74648 +sa(dp74649 +g25268 +S"L'amant pressant" +p74650 +sg25270 +S'Artist Information (' +p74651 +sg25273 +S'French, 1720 - 1778' +p74652 +sg25275 +S'(artist after)' +p74653 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cff.jpg' +p74654 +sg25267 +g27 +sa(dp74655 +g25267 +g27 +sg25268 +S'Trivet' +p74656 +sg25270 +S'Sydney Roberts' +p74657 +sa(dp74658 +g25267 +g27 +sg25268 +S'Trivet' +p74659 +sg25270 +S'Ardella Watkins' +p74660 +sa(dp74661 +g25267 +g27 +sg25268 +S'Trivet' +p74662 +sg25270 +S'Lon Cronk' +p74663 +sa(dp74664 +g25267 +g27 +sg25268 +S'Trivet' +p74665 +sg25270 +S'Michael Chomyk' +p74666 +sa(dp74667 +g25267 +g27 +sg25268 +S'Trivet' +p74668 +sg25270 +S'Ethel Clarke' +p74669 +sa(dp74670 +g25267 +g27 +sg25268 +S'Trivet' +p74671 +sg25270 +S'Salvatore Borrazzo' +p74672 +sa(dp74673 +g25267 +g27 +sg25268 +S'Trivet' +p74674 +sg25270 +S'Stanley Chin' +p74675 +sa(dp74676 +g25267 +g27 +sg25268 +S'Trivet' +p74677 +sg25270 +S'Fritz Boehmer' +p74678 +sa(dp74679 +g25267 +g27 +sg25268 +S'Trivet' +p74680 +sg25270 +S'Luther D. Wenrich' +p74681 +sa(dp74682 +g25267 +g27 +sg25268 +S'Trivet' +p74683 +sg25270 +S'William O. Fletcher' +p74684 +sa(dp74685 +g25268 +S'Le jour' +p74686 +sg25270 +S'Artist Information (' +p74687 +sg25273 +S'(artist after)' +p74688 +sg25275 +S'\n' +p74689 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000973e.jpg' +p74690 +sg25267 +g27 +sa(dp74691 +g25267 +g27 +sg25268 +S'Branding Iron' +p74692 +sg25270 +S'Elizabeth Johnson' +p74693 +sa(dp74694 +g25267 +g27 +sg25268 +S'Sauce Pan' +p74695 +sg25270 +S'Edward L. Loper' +p74696 +sa(dp74697 +g25267 +g27 +sg25268 +S'Match Holder' +p74698 +sg25270 +S'Edward L. Loper' +p74699 +sa(dp74700 +g25267 +g27 +sg25268 +S'Iron Kettle' +p74701 +sg25270 +S'Herndon Hightower' +p74702 +sa(dp74703 +g25267 +g27 +sg25268 +S'Andiron' +p74704 +sg25270 +S'Jack Staloff' +p74705 +sa(dp74706 +g25267 +g27 +sg25268 +S'Andiron' +p74707 +sg25270 +S'Albert Taxson' +p74708 +sa(dp74709 +g25267 +g27 +sg25268 +S'Andiron' +p74710 +sg25270 +S'Lazar Rubinstein' +p74711 +sa(dp74712 +g25267 +S'Andirons came into use when formal fireplaces required decorative accessories,\n particularly in drawing rooms and in taverns.\n The earliest andirons were forged of wrought iron and decorated by simple scrolls\n or ogee curves, but by the mid-eighteenth century foundries were producing more\n elaborate cast iron varieties. The subject of this andiron, representing a "Marching\n Hessian," became popular in the 1780s after the American Revolution. Playing on\n patriotic sympathies, this andiron represented the Hessian soldier who fought for\n the British as a mercenary. Human figures on andirons were uncommon, and it is\n said that putting this figure to such menial use symbolized American resentment\n of the mercenary soldier. This andiron, cast from a sand mold, is in high relief.\n Polychrome paints were used to set off the details of the uniform and the facial\n expression.\n ' +p74713 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000304.jpg' +p74714 +sg25268 +S'Andiron' +p74715 +sg25270 +S'Isidore Danziger' +p74716 +sa(dp74717 +g25267 +g27 +sg25268 +S'Lamp' +p74718 +sg25270 +S'Christabel Scrymser' +p74719 +sa(dp74720 +g25267 +g27 +sg25268 +S'Candle Holder' +p74721 +sg25270 +S'Howard Lumbard' +p74722 +sa(dp74723 +g25268 +S'La nuit' +p74724 +sg25270 +S'Artist Information (' +p74725 +sg25273 +S'(artist after)' +p74726 +sg25275 +S'\n' +p74727 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000973d.jpg' +p74728 +sg25267 +g27 +sa(dp74729 +g25267 +g27 +sg25268 +S'Shaker Stove' +p74730 +sg25270 +S'Joseph Glover' +p74731 +sa(dp74732 +g25267 +g27 +sg25268 +S'Log Marker' +p74733 +sg25270 +S'William Frank' +p74734 +sa(dp74735 +g25267 +g27 +sg25268 +S'Broad Axe Head' +p74736 +sg25270 +S'Herman O. Stroh' +p74737 +sa(dp74738 +g25267 +g27 +sg25268 +S'Chest' +p74739 +sg25270 +S'Frances Lichten' +p74740 +sa(dp74741 +g25267 +g27 +sg25268 +S'Jar with Cover' +p74742 +sg25270 +S'Charlotte Angus' +p74743 +sa(dp74744 +g25267 +g27 +sg25268 +S'Wallpaper' +p74745 +sg25270 +S'Mina Lowry' +p74746 +sa(dp74747 +g25267 +g27 +sg25268 +S'Wallpaper' +p74748 +sg25270 +S'Sidney Liswood' +p74749 +sa(dp74750 +g25267 +g27 +sg25268 +S'Wallpaper' +p74751 +sg25270 +S'Mina Lowry' +p74752 +sa(dp74753 +g25267 +g27 +sg25268 +S'Wallpaper' +p74754 +sg25270 +S'American 20th Century' +p74755 +sa(dp74756 +g25267 +g27 +sg25268 +S'Chest' +p74757 +sg25270 +S'Robert W.R. Taylor' +p74758 +sa(dp74759 +g25268 +S'Le belle nourrice' +p74760 +sg25270 +S'Artist Information (' +p74761 +sg25273 +S'(artist after)' +p74762 +sg25275 +S'\n' +p74763 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f0c.jpg' +p74764 +sg25267 +g27 +sa(dp74765 +g25267 +g27 +sg25268 +S'Small Table' +p74766 +sg25270 +S'Majel G. Claflin' +p74767 +sa(dp74768 +g25267 +g27 +sg25268 +S'Indian Blanket' +p74769 +sg25270 +S'Mary Edith Brooks' +p74770 +sa(dp74771 +g25267 +g27 +sg25268 +S'Chest of Drawers' +p74772 +sg25270 +S'Frances Lichten' +p74773 +sa(dp74774 +g25267 +g27 +sg25268 +S'Footstool' +p74775 +sg25270 +S'Albert Levone' +p74776 +sa(dp74777 +g25267 +g27 +sg25268 +S'Wallpaper' +p74778 +sg25270 +S'American 20th Century' +p74779 +sa(dp74780 +g25267 +g27 +sg25268 +S'Plate' +p74781 +sg25270 +S'Henry Moran' +p74782 +sa(dp74783 +g25267 +g27 +sg25268 +S'Wallpaper' +p74784 +sg25270 +S'David Dorfman' +p74785 +sa(dp74786 +g25267 +g27 +sg25268 +S'Cross' +p74787 +sg25270 +S'Majel G. Claflin' +p74788 +sa(dp74789 +g25267 +g27 +sg25268 +S'Shaker Wooden Dipper' +p74790 +sg25270 +S'Adelaide Dyball' +p74791 +sa(dp74792 +g25267 +S"Though Shaker dress conformed somewhat to prevailing styles, it emphasized simplicity. \n A favorite color used on wood and fabric alike was a warm brown made from butternut \n bark. Though subdued colors reflect the humble, self-effacing Shaker spirit, \n bright colors were not eliminated entirely. The man's costume incorporates\n a blue vest with a brown coat and trousers. In length and cut, the coat retains\n a lingering suggestion of eighteenth-century style. In keeping with their religious\n beliefs, Shakers rejected individualism in costume.\n " +p74793 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000037f.jpg' +p74794 +sg25268 +S"Shaker Man's Costume" +p74795 +sg25270 +S'American 20th Century' +p74796 +sa(dp74797 +g25268 +S'La jolie fermiere' +p74798 +sg25270 +S'Artist Information (' +p74799 +sg25273 +S'(artist after)' +p74800 +sg25275 +S'\n' +p74801 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c50.jpg' +p74802 +sg25267 +g27 +sa(dp74803 +g25267 +g27 +sg25268 +S"Child's Side Saddle" +p74804 +sg25270 +S'Randolph F. Miller' +p74805 +sa(dp74806 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00065/a00065e7.jpg' +p74807 +sg25268 +S'Retablo - The Holy Family' +p74808 +sg25270 +S'George E. Rhone' +p74809 +sa(dp74810 +g25267 +g27 +sg25268 +S'Warming Pan' +p74811 +sg25270 +S'Marie Famularo' +p74812 +sa(dp74813 +g25267 +g27 +sg25268 +S'Figurehad: "Solomon Piper"' +p74814 +sg25270 +S'Ingrid Selmer-Larsen' +p74815 +sa(dp74816 +g25267 +g27 +sg25268 +S'Chalkware Deer' +p74817 +sg25270 +S'Mina Lowry' +p74818 +sa(dp74819 +g25267 +g27 +sg25268 +S'Silver Teapot' +p74820 +sg25270 +S'Leo Drozdoff' +p74821 +sa(dp74822 +g25267 +g27 +sg25268 +S'Water Pitcher' +p74823 +sg25270 +S'American 20th Century' +p74824 +sa(dp74825 +g25267 +g27 +sg25268 +S'Decoy (Hudsonian Godwit)' +p74826 +sg25270 +S'Samuel W. Ford' +p74827 +sa(dp74828 +g25267 +g27 +sg25268 +S'Trivet' +p74829 +sg25270 +S'LeRoy Griffith' +p74830 +sa(dp74831 +g25267 +g27 +sg25268 +S'Pan' +p74832 +sg25270 +S'Nicholas Acampora' +p74833 +sa(dp74834 +g25268 +S'Le matin' +p74835 +sg25270 +S'Artist Information (' +p74836 +sg25273 +S'(artist after)' +p74837 +sg25275 +S'\n' +p74838 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c5a.jpg' +p74839 +sg25267 +g27 +sa(dp74840 +g25267 +g27 +sg25268 +S'Tumbler' +p74841 +sg25270 +S'Frank Budash' +p74842 +sa(dp74843 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p74844 +sg25270 +S'John Tarantino' +p74845 +sa(dp74846 +g25267 +g27 +sg25268 +S'Eagle' +p74847 +sg25270 +S'Hester Duany' +p74848 +sa(dp74849 +g25267 +g27 +sg25268 +S'Buffalo' +p74850 +sg25270 +S'Robert Gilson' +p74851 +sa(dp74852 +g25267 +g27 +sg25268 +S"Wolf's Head" +p74853 +sg25270 +S'Harry King' +p74854 +sa(dp74855 +g25267 +g27 +sg25268 +S'Doll: Black Mama' +p74856 +sg25270 +S'Jacob Gielens' +p74857 +sa(dp74858 +g25267 +g27 +sg25268 +S'Candlestick' +p74859 +sg25270 +S'Fritz Boehmer' +p74860 +sa(dp74861 +g25267 +g27 +sg25268 +S"Fireman's Hat" +p74862 +sg25270 +S'Samuel W. Ford' +p74863 +sa(dp74864 +g25267 +g27 +sg25268 +S"Eagle's Head" +p74865 +sg25270 +S'American 20th Century' +p74866 +sa(dp74867 +g25267 +g27 +sg25268 +S'Figurehead: "Jenny Lind"' +p74868 +sg25270 +S'American 20th Century' +p74869 +sa(dp74870 +g25268 +S'Le midi' +p74871 +sg25270 +S'Artist Information (' +p74872 +sg25273 +S'(artist after)' +p74873 +sg25275 +S'\n' +p74874 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c58.jpg' +p74875 +sg25267 +g27 +sa(dp74876 +g25267 +g27 +sg25268 +S'Figurehead: "C. Perry"' +p74877 +sg25270 +S'Elizabeth Moutal' +p74878 +sa(dp74879 +g25267 +g27 +sg25268 +S'Tavern Sign: "Temperance"' +p74880 +sg25270 +S'John Matulis' +p74881 +sa(dp74882 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p74883 +sg25270 +S'Robert Pohle' +p74884 +sa(dp74885 +g25267 +g27 +sg25268 +S'Horse Weather Vane' +p74886 +sg25270 +S'Selma Sandler' +p74887 +sa(dp74888 +g25267 +g27 +sg25268 +S'Painted Velvet' +p74889 +sg25270 +S'James Vail' +p74890 +sa(dp74891 +g25267 +g27 +sg25268 +S'Carousel Horse' +p74892 +sg25270 +S'Henry Murphy' +p74893 +sa(dp74894 +g25267 +g27 +sg25268 +S'Watercolor Design' +p74895 +sg25270 +S'Albert Levone' +p74896 +sa(dp74897 +g25267 +S"Though Shaker dress conformed somewhat to prevailing styles, it emphasized simplicity.\n A favorite color used on wood and fabric alike was a warm brown made from butternut\n bark. Though subdued colors reflect the humble, self-effacing Shaker spirit, \n bright colors were not eliminated entirely. The woman's costume has tight, narrow sleeves,\n a triangular kerchief, and a bell-shaped skirt that completely obscures the figure.\n Even so, severity is relieved through the use of white and orange with blue trimmings.\n In keeping with their religious beliefs, Shakers rejected individualism in costume.\n " +p74898 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000380.jpg' +p74899 +sg25268 +S"Shaker Woman's Costume" +p74900 +sg25270 +S'American 20th Century' +p74901 +sa(dp74902 +g25267 +g27 +sg25268 +S'Wooden Stirrup' +p74903 +sg25270 +S'Rose Campbell-Gerke' +p74904 +sa(dp74905 +g25267 +g27 +sg25268 +S"Fireman's Bucket" +p74906 +sg25270 +S'Georgina King' +p74907 +sa(dp74908 +g25268 +S"L'apres-midi" +p74909 +sg25270 +S'Artist Information (' +p74910 +sg25273 +S'(artist after)' +p74911 +sg25275 +S'\n' +p74912 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c51.jpg' +p74913 +sg25267 +g27 +sa(dp74914 +g25267 +g27 +sg25268 +S'Hot Coal Carrier' +p74915 +sg25270 +S'Oscar Bluhme' +p74916 +sa(dp74917 +g25267 +g27 +sg25268 +S"Cat's Head" +p74918 +sg25270 +S'Harriette Gale' +p74919 +sa(dp74920 +g25267 +g27 +sg25268 +S'Figurehead: Quaker' +p74921 +sg25270 +S'American 20th Century' +p74922 +sa(dp74923 +g25267 +g27 +sg25268 +S'Indian Weather Vane' +p74924 +sg25270 +S'Carol Larson' +p74925 +sa(dp74926 +g25267 +g27 +sg25268 +S'Silver Tankard' +p74927 +sg25270 +S'Palmyra Pimentel' +p74928 +sa(dp74929 +g25267 +g27 +sg25268 +S'Trivet' +p74930 +sg25270 +S'Edward Bashaw' +p74931 +sa(dp74932 +g25267 +g27 +sg25268 +S'Candle Mold' +p74933 +sg25270 +S'Edward Bashaw' +p74934 +sa(dp74935 +g25267 +g27 +sg25268 +S'Glass Bowl' +p74936 +sg25270 +S'Beverly Chichester' +p74937 +sa(dp74938 +g25267 +g27 +sg25268 +S'Betty Lamp and Stand' +p74939 +sg25270 +S'Claude Marshall' +p74940 +sa(dp74941 +g25267 +g27 +sg25268 +S'Police Rattle' +p74942 +sg25270 +S'Ray Price' +p74943 +sa(dp74944 +g25268 +S'Le soir' +p74945 +sg25270 +S'Artist Information (' +p74946 +sg25273 +S'(artist after)' +p74947 +sg25275 +S'\n' +p74948 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c52.jpg' +p74949 +sg25267 +g27 +sa(dp74950 +g25267 +g27 +sg25268 +S'Compass' +p74951 +sg25270 +S'Lloyd Charles Lemcke' +p74952 +sa(dp74953 +g25267 +g27 +sg25268 +S'Coffee Grinder' +p74954 +sg25270 +S'D.J. Grant' +p74955 +sa(dp74956 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000035c.jpg' +p74957 +sg25268 +S'Carousel Giraffe' +p74958 +sg25270 +S'Henry Tomaszewski' +p74959 +sa(dp74960 +g25267 +g27 +sg25268 +S'Log-Hauling' +p74961 +sg25270 +S'Claude Marshall' +p74962 +sa(dp74963 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a000544f.jpg' +p74964 +sg25268 +S'Decoy' +p74965 +sg25270 +S'Selma Sandler' +p74966 +sa(dp74967 +g25267 +g27 +sg25268 +S'Glass Cologne Bottle' +p74968 +sg25270 +S'John Dana' +p74969 +sa(dp74970 +g25267 +g27 +sg25268 +S'Inn Sign: "A. Phelps\'"' +p74971 +sg25270 +S'Martin Partyka' +p74972 +sa(dp74973 +g25267 +g27 +sg25268 +S'Bandbox' +p74974 +sg25270 +S'Arsen Maralian' +p74975 +sa(dp74976 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00065/a00065e6.jpg' +p74977 +sg25268 +S"Locksmith's Sign" +p74978 +sg25270 +S'Joseph L. Boyd' +p74979 +sa(dp74980 +g25267 +g27 +sg25268 +S'The Navigator' +p74981 +sg25270 +S'Ingrid Selmer-Larsen' +p74982 +sa(dp74983 +g25268 +S'Le printemps' +p74984 +sg25270 +S'Artist Information (' +p74985 +sg25273 +S'(artist after)' +p74986 +sg25275 +S'\n' +p74987 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c53.jpg' +p74988 +sg25267 +g27 +sa(dp74989 +g25267 +g27 +sg25268 +S'Bandbox - Firemen Scene' +p74990 +sg25270 +S'Walter Doran' +p74991 +sa(dp74992 +g25267 +g27 +sg25268 +S'Ox Cart' +p74993 +sg25270 +S'Wilbur M Rice' +p74994 +sa(dp74995 +g25267 +g27 +sg25268 +S'Straw Fork (Bishop Hill)' +p74996 +sg25270 +S'Archie Thompson' +p74997 +sa(dp74998 +g25267 +g27 +sg25268 +S'Painted Basin' +p74999 +sg25270 +S'John H. Tercuzzi' +p75000 +sa(dp75001 +g25267 +g27 +sg25268 +S'Rooster and Hen' +p75002 +sg25270 +S'Al Curry' +p75003 +sa(dp75004 +g25267 +g27 +sg25268 +S'Circus Wagon Figure: Medieval Lady' +p75005 +sg25270 +S'John Matulis' +p75006 +sa(dp75007 +g25267 +g27 +sg25268 +S'Figure of Justice' +p75008 +sg25270 +S'Elizabeth Moutal' +p75009 +sa(dp75010 +g25267 +g27 +sg25268 +S'Horse Weather Vane' +p75011 +sg25270 +S'American 20th Century' +p75012 +sa(dp75013 +g25267 +g27 +sg25268 +S'Cast Iron Toy Bank' +p75014 +sg25270 +S'Bertha Semple' +p75015 +sa(dp75016 +g25267 +S'The other form of artistic expression most common to colonial New Mexico was the "bulto." Also made by the "santeros," these are small carvings in the round representing a single religious figure or a group. Usually made of cottonwood roots or pine, the figures were covered with gesso ground and painted. This "bulto" depicts the Holy Trinity. Here, the three figures seem grown together, giving additional emphasis to the idea of the Trinity. A knotted leather thong is tied around the figures.\n ' +p75017 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003d0.jpg' +p75018 +sg25268 +S'Santo' +p75019 +sg25270 +S'Ranka S. Woods' +p75020 +sa(dp75021 +g25268 +S"L'ete" +p75022 +sg25270 +S'Artist Information (' +p75023 +sg25273 +S'(artist after)' +p75024 +sg25275 +S'\n' +p75025 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c59.jpg' +p75026 +sg25267 +g27 +sa(dp75027 +g25267 +g27 +sg25268 +S'Toy Bank: Mule and Manger' +p75028 +sg25270 +S'D.J. Grant' +p75029 +sa(dp75030 +g25267 +g27 +sg25268 +S'"Jenny Lind" Mirror' +p75031 +sg25270 +S'Regina Henderer' +p75032 +sa(dp75033 +g25267 +g27 +sg25268 +S'Trivet' +p75034 +sg25270 +S'Artist Information (' +p75035 +sa(dp75036 +g25267 +g27 +sg25268 +S'Toy Bank' +p75037 +sg25270 +S'Archie Thompson' +p75038 +sa(dp75039 +g25267 +g27 +sg25268 +S'Trivet' +p75040 +sg25270 +S'F.C. Davenport' +p75041 +sa(dp75042 +g25267 +g27 +sg25268 +S'Shaker Stove' +p75043 +sg25270 +S'Lon Cronk' +p75044 +sa(dp75045 +g25267 +g27 +sg25268 +S'Eagle' +p75046 +sg25270 +S'Joseph Goldberg' +p75047 +sa(dp75048 +g25267 +S'Because efficiency and order were dominant themes in Shaker life, many types\n of cabinets and chests were built for storage. This cabinet is also a secretary. It was used\n by trustees of the community who were responsible for all business matters with\n the outside world and with other Shaker communities. Because the cabinets and drawers\n are identical on each side, the secretary could be used by two trustees. The fall\n front, used as a writing surface, provided sufficient space for both to work at\n the same time. Because storage was important, the piece is equipped with ample\n drawers and cupboards for efficient organization of papers and documents. An interesting\n feature of Shaker secretaries is that craftsmen found no advantage in sacrificing\n drawer space for the sake of recessed kneeholes.\n ' +p75049 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000384.jpg' +p75050 +sg25268 +S'Shaker Secretary Desk' +p75051 +sg25270 +S'John W. Kelleher' +p75052 +sa(dp75053 +g25267 +g27 +sg25268 +S'Shaker Table' +p75054 +sg25270 +S'Winslow Rich' +p75055 +sa(dp75056 +g25267 +S'Chests, like this one, were made for storage of blankets and other bulky items.\n Of the traditional features of chest design, only the slightly projecting lid,\n the reduced keyhole, and the slightly projecting base remain. In the place of carved\n or painted panels common in chests of the outside world, Shakers allowed the grain\n of the wood alone to decorate the immaculate expanse of broad surface.\n ' +p75057 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000386.jpg' +p75058 +sg25268 +S'Small Shaker Chest' +p75059 +sg25270 +S'Sumner Merrill' +p75060 +sa(dp75061 +g25268 +S"L'automne" +p75062 +sg25270 +S'Artist Information (' +p75063 +sg25273 +S'(artist after)' +p75064 +sg25275 +S'\n' +p75065 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c56.jpg' +p75066 +sg25267 +g27 +sa(dp75067 +g25267 +S'Shaker simplicity is nowhere more evident than in chair design. Outwardly \n straightforward, each element of the design was carefully considered for greatest \n efficiency in use. This is a tilting chair named for the device attached to the back legs. \n A ball-and-socket joint was invented by the Shakers so that the chair could be tilted\n backward without having the legs scratch the floor or cause unnecessary wear of the rugs. \n Shaker chairs were famous for being light in weight yet sturdy. Because they were \n light they could be hung on the walls while the floors were being cleaned; their \n sturdiness provided durability over many years. The seat of this chair is made of \n cane. Caned chairs were uncommon except at the colony of Enfield, New Hampshire.\n ' +p75068 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000381.jpg' +p75069 +sg25268 +S'Shaker Tilting Chair' +p75070 +sg25270 +S'John W. Kelleher' +p75071 +sa(dp75072 +g25267 +g27 +sg25268 +S'Shaker Built-In Cupboard' +p75073 +sg25270 +S'American 20th Century' +p75074 +sa(dp75075 +g25267 +g27 +sg25268 +S'Chalkware Rooster' +p75076 +sg25270 +S'Betty Fuerst' +p75077 +sa(dp75078 +g25267 +g27 +sg25268 +S'Glass Bowl' +p75079 +sg25270 +S'Florian Rokita' +p75080 +sa(dp75081 +g25267 +g27 +sg25268 +S'Glass Bottle' +p75082 +sg25270 +S'Beverly Chichester' +p75083 +sa(dp75084 +g25267 +g27 +sg25268 +S'Toy Bank: Rooster' +p75085 +sg25270 +S'Beverly Chichester' +p75086 +sa(dp75087 +g25267 +S"This owl was whittled by Aaron Mountz, a friend and follower of Schimmel's. Birds were a favorite theme of both wood-carvers. This one is done with a naturalism of form that is enhanced with the detail of stylized feathers. By careful cross-hatching, \n each feather is represented in a way that is lively while providing an interesting surface texture. Mountz has rendered this carving not only as an individual owl, but, by its wise and aloof countenance, as a symbol of owl-ness. Though many of his \n carvings were painted, Mountz left this owl in unfinished wood.\n " +p75088 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000373.jpg' +p75089 +sg25268 +S'Owl' +p75090 +sg25270 +S'Hester Duany' +p75091 +sa(dp75092 +g25267 +g27 +sg25268 +S'Glass Bowl' +p75093 +sg25270 +S'Michael Trekur' +p75094 +sa(dp75095 +g25267 +g27 +sg25268 +S'Pitcher' +p75096 +sg25270 +S'Van Silvay' +p75097 +sa(dp75098 +g25267 +g27 +sg25268 +S'Pitcher' +p75099 +sg25270 +S'Van Silvay' +p75100 +sa(dp75101 +g25268 +S"L'hiver" +p75102 +sg25270 +S'Artist Information (' +p75103 +sg25273 +S'(artist after)' +p75104 +sg25275 +S'\n' +p75105 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c57.jpg' +p75106 +sg25267 +g27 +sa(dp75107 +g25267 +g27 +sg25268 +S'Hitching Post' +p75108 +sg25270 +S'American 20th Century' +p75109 +sa(dp75110 +g25267 +g27 +sg25268 +S'Toleware Coffee Pot' +p75111 +sg25270 +S'Charles Henning' +p75112 +sa(dp75113 +g25267 +S"Dower chests were a necessary item for every Pennsylvania German girl preparing for marriage. They were used to store the linens, needlework, and household accessories that she collected over the years. Like other large pieces of furniture, dower \n chests were made by the village carpenter or by the farmer himself, but they were painted by an itinerant decorator. Usually three to four feet long, they were placed in the bedroom or parlor. Dower chests were decorated with traditional symbols: \n flowers, birds, hearts, scrolls, and geometrical designs. This one, set on bracket feet, displays typically bold and elaborate decoration. The painted panels suggest an architectural arrangement, a common mode of decoration. Ornate columns and arches \n enframered and black flowers growing out of urns. The small central panel was reserved for the bride's name and the date, while the side panels extend the architectural motif.\n " +p75114 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000036d.jpg' +p75115 +sg25268 +S'Pennsylvania German Chest' +p75116 +sg25270 +S'Betty Jean Davis' +p75117 +sa(dp75118 +g25267 +g27 +sg25268 +S"Horse's Head" +p75119 +sg25270 +S'Donald Donovan' +p75120 +sa(dp75121 +g25267 +g27 +sg25268 +S'Shaker Clock' +p75122 +sg25270 +S'Anne Ger' +p75123 +sa(dp75124 +g25267 +g27 +sg25268 +S'Steer Weather Vane' +p75125 +sg25270 +S'Zabelle Missirian' +p75126 +sa(dp75127 +g25267 +g27 +sg25268 +S'Bandbox' +p75128 +sg25270 +S'Paul Ward' +p75129 +sa(dp75130 +g25267 +g27 +sg25268 +S'Hitching Post' +p75131 +sg25270 +S'David Ramage' +p75132 +sa(dp75133 +g25267 +g27 +sg25268 +S'Bar Bit' +p75134 +sg25270 +S'Rose Campbell-Gerke' +p75135 +sa(dp75136 +g25267 +g27 +sg25268 +S'Spur and Rowel' +p75137 +sg25270 +S'Rose Campbell-Gerke' +p75138 +sa(dp75139 +g25268 +S'Country Pleasures' +p75140 +sg25270 +S'Artist Information (' +p75141 +sg25273 +S'(artist after)' +p75142 +sg25275 +S'\n' +p75143 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c54.jpg' +p75144 +sg25267 +g27 +sa(dp75145 +g25267 +g27 +sg25268 +S'Bank Pidgeon' +p75146 +sg25270 +S'Emanuel Jacobson' +p75147 +sa(dp75148 +g25267 +g27 +sg25268 +S'Shaker Cabinet' +p75149 +sg25270 +S'William Paul Childers' +p75150 +sa(dp75151 +g25267 +g27 +sg25268 +S'Shaker Sewing Table' +p75152 +sg25270 +S'William Paul Childers' +p75153 +sa(dp75154 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000552e.jpg' +p75155 +sg25268 +S'Figurehead' +p75156 +sg25270 +S'Elizabeth Moutal' +p75157 +sa(dp75158 +g25267 +g27 +sg25268 +S"Barber's Sign" +p75159 +sg25270 +S'Wynna Wright' +p75160 +sa(dp75161 +g25267 +g27 +sg25268 +S'Shaker Chest with Drawer' +p75162 +sg25270 +S'Alfred H. Smith' +p75163 +sa(dp75164 +g25267 +g27 +sg25268 +S'Squirrel' +p75165 +sg25270 +S'Beatrice DeKalb' +p75166 +sa(dp75167 +g25267 +g27 +sg25268 +S'Punch & Judy Toy Bank' +p75168 +sg25270 +S'Beverly Chichester' +p75169 +sa(dp75170 +g25267 +S'Busts or half-length figureheads were often used for small ships. This piece was made for a New Bedford\n whaler called the \n ' +p75171 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003f1.jpg' +p75172 +sg25268 +S'Figurehead from "Bartholomew Gosnold"' +p75173 +sg25270 +S'American 20th Century' +p75174 +sa(dp75175 +g25267 +g27 +sg25268 +S'Eagle' +p75176 +sg25270 +S'Jane Iverson' +p75177 +sa(dp75178 +g25268 +S'Country Dance' +p75179 +sg25270 +S'Artist Information (' +p75180 +sg25273 +S'(artist after)' +p75181 +sg25275 +S'\n' +p75182 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c5b.jpg' +p75183 +sg25267 +g27 +sa(dp75184 +g25267 +g27 +sg25268 +S'Weather Vane' +p75185 +sg25270 +S'American 20th Century' +p75186 +sa(dp75187 +g25267 +g27 +sg25268 +S'Panel from Rug' +p75188 +sg25270 +S'Agnes Sims' +p75189 +sa(dp75190 +g25267 +g27 +sg25268 +S'Figurehead from Schooner "Haroldine"' +p75191 +sg25270 +S'American 20th Century' +p75192 +sa(dp75193 +g25267 +g27 +sg25268 +S'Eagle' +p75194 +sg25270 +S'Chris Makrenos' +p75195 +sa(dp75196 +g25267 +g27 +sg25268 +S'Bandbox - "Castle Garden"' +p75197 +sg25270 +S'Harold Merriam' +p75198 +sa(dp75199 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f9/a000f902.jpg' +p75200 +sg25268 +S'Panel from Circus Wagon' +p75201 +sg25270 +S'Frank M. Keane' +p75202 +sa(dp75203 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p75204 +sg25270 +S'Georgine E. Mason' +p75205 +sa(dp75206 +g25267 +S'Although the various Shaker communities shared the same beliefs and organization,\n differences were reflected by certain designs. This rug, from Pleasant Hill, Kentucky,\n shows an exuberant decorative pattern not found in rug designs of the New England\n communities. Shakers used several techniques for rug-making, including braiding,\n tufting, and shirring. In each case, wool threads or pieces of woolen cloth were\n sewn to a cloth base. This rug was made with dyed rags shirred and sewn to a gunny\n sack backing. Shaker rugs were often colorful and the designs lively; this one\n suggests a symmetrical scheme that has gone slightly awry.\n ' +p75207 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000037e.jpg' +p75208 +sg25268 +S'Shaker Rug' +p75209 +sg25270 +S'George V. Vezolles' +p75210 +sa(dp75211 +g25267 +g27 +sg25268 +S'Hand Puppet' +p75212 +sg25270 +S'David Ramage' +p75213 +sa(dp75214 +g25267 +g27 +sg25268 +S'Figurehead: "Columbia"' +p75215 +sg25270 +S'Elizabeth Fairchild' +p75216 +sa(dp75217 +g25268 +S'Rural Concert' +p75218 +sg25270 +S'Artist Information (' +p75219 +sg25273 +S'(artist after)' +p75220 +sg25275 +S'\n' +p75221 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c55.jpg' +p75222 +sg25267 +g27 +sa(dp75223 +g25267 +g27 +sg25268 +S'McLellan Saddle' +p75224 +sg25270 +S'Walter Praefke' +p75225 +sa(dp75226 +g25267 +g27 +sg25268 +S'Dagger and Sheath' +p75227 +sg25270 +S'Cornelius Christoffels' +p75228 +sa(dp75229 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005542.jpg' +p75230 +sg25268 +S'Cigar Store Figure' +p75231 +sg25270 +S'Robert Pohle' +p75232 +sa(dp75233 +g25267 +g27 +sg25268 +S'Primitive Bust' +p75234 +sg25270 +S'John Sullivan' +p75235 +sa(dp75236 +g25267 +g27 +sg25268 +S'Candlestick' +p75237 +sg25270 +S'Van Silvay' +p75238 +sa(dp75239 +g25267 +g27 +sg25268 +S'Glass Pitcher' +p75240 +sg25270 +S'Elisabeth Fulda' +p75241 +sa(dp75242 +g25267 +g27 +sg25268 +S'Confessional' +p75243 +sg25270 +S'Majel G. Claflin' +p75244 +sa(dp75245 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p75246 +sg25270 +S'Adele Brooks' +p75247 +sa(dp75248 +g25267 +g27 +sg25268 +S'Buttermold' +p75249 +sg25270 +S'Don Cecilio' +p75250 +sa(dp75251 +g25267 +g27 +sg25268 +S'Shaker Table and Chairs' +p75252 +sg25270 +S'Lon Cronk' +p75253 +sa(dp75254 +g25268 +S"Annette a l'age de quinze ans (Annette at the Age of Fifteen Years)" +p75255 +sg25270 +S'Artist Information (' +p75256 +sg25273 +S'(artist after)' +p75257 +sg25275 +S'\n' +p75258 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f93.jpg' +p75259 +sg25267 +g27 +sa(dp75260 +g25267 +g27 +sg25268 +S'Shaker Candle Table' +p75261 +sg25270 +S'Lon Cronk' +p75262 +sa(dp75263 +g25267 +g27 +sg25268 +S'Shaker Chair' +p75264 +sg25270 +S'American 20th Century' +p75265 +sa(dp75266 +g25267 +g27 +sg25268 +S'Shaker Stove' +p75267 +sg25270 +S'George V. Vezolles' +p75268 +sa(dp75269 +g25267 +g27 +sg25268 +S'Shaker Wood Box' +p75270 +sg25270 +S'Lawrence Foster' +p75271 +sa(dp75272 +g25267 +g27 +sg25268 +S'Shaker Cabinet' +p75273 +sg25270 +S'John W. Kelleher' +p75274 +sa(dp75275 +g25267 +S'This is a woodcut done by Heinrich Otto in 1722. A versatile decorator, Otto made fracturs drawn and painted by hand as well as printed from blocks of wood that he carved himself. This woodcut was added to a printed sheet and colored with \n paints and dyes made from materials at hand. Used as a wall decoration, the text is a hymn telling the story of the Temptation of Eve. Traditional bird and flower motifs frame the text and central illustration of the story. \n Notice the colorful birds and flowers in contrast to the primitive human forms and the sticklike tree.\n ' +p75276 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000378.jpg' +p75277 +sg25268 +S'Woodcut Vorschrift' +p75278 +sg25270 +S'Charlotte Angus' +p75279 +sa(dp75280 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p75281 +sg25270 +S'Albert Ryder' +p75282 +sa(dp75283 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p75284 +sg25270 +S'Walter Hochstrasser' +p75285 +sa(dp75286 +g25267 +g27 +sg25268 +S'Sp. Col. Chest' +p75287 +sg25270 +S'E. Boyd' +p75288 +sa(dp75289 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005533.jpg' +p75290 +sg25268 +S'Patchwork Quilt' +p75291 +sg25270 +S'Mae A. Clarke' +p75292 +sa(dp75293 +g25268 +S'The Madonna of the Carnation' +p75294 +sg25270 +S'Bernardino Luini' +p75295 +sg25273 +S'oil on panel' +p75296 +sg25275 +S'c. 1515' +p75297 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000802.jpg' +p75298 +sg25267 +S'The Madonna of the Carnation\n Though not as well known today, Luini was once considered the leading painter from the Lombardy region of northern Italy. He was born about 1480 and trained with several local masters, but his life and art were transformed by encountering the work of Leonardo da Vinci, who visited Milan once in the late 15th century and again briefly in the early 16th century. Leonardo, as a young artist in Florence, painted several pictures with the same theme as that seen in this painting: the Christ child reaching for a flower. And it seems clear that Luini is indebted to Leonardo not only for this poignant theme but for other aspects of the painting as well: the dark background, the softness of the forms, the chiaroscuro (light and dark) modeling, the sweet sentiment of the figures, the turning pose of the Child.\n Luini was a great painter of religious images, including frescoes, wood panels, large altarpieces, and small devotional works for the home. He was obviously very popular in his own time, as there are countless copies of his paintings. Then he regained popularity in the 19th century when the famous critic John Ruskin decided that Luini was greater than Leonardo, and many readers went to Italy looking for his works.\n ' +p75299 +sa(dp75300 +g25268 +S"Annette a l'age de vingt ans (Annette at the Age of Twenty Years)" +p75301 +sg25270 +S'Artist Information (' +p75302 +sg25273 +S'(artist after)' +p75303 +sg25275 +S'\n' +p75304 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f92.jpg' +p75305 +sg25267 +g27 +sa(dp75306 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p75307 +sg25270 +S'Robert Pohle' +p75308 +sa(dp75309 +g25267 +g27 +sg25268 +S'Quilt' +p75310 +sg25270 +S'Ralph Atkinson' +p75311 +sa(dp75312 +g25267 +g27 +sg25268 +S'Architectural Carving' +p75313 +sg25270 +S'American 20th Century' +p75314 +sa(dp75315 +g25267 +g27 +sg25268 +S'Figurehead' +p75316 +sg25270 +S'Ingrid Selmer-Larsen' +p75317 +sa(dp75318 +g25267 +g27 +sg25268 +S'Coverlet' +p75319 +sg25270 +S'Alois E. Ulrich' +p75320 +sa(dp75321 +g25267 +g27 +sg25268 +S'Coverlet' +p75322 +sg25270 +S'Alois E. Ulrich' +p75323 +sa(dp75324 +g25267 +g27 +sg25268 +S'Rag Doll' +p75325 +sg25270 +S'Archie Thompson' +p75326 +sa(dp75327 +g25267 +g27 +sg25268 +S'Doll' +p75328 +sg25270 +S'Artist Information (' +p75329 +sa(dp75330 +g25267 +g27 +sg25268 +S'Circus Wagon Figure: Dancing Girl' +p75331 +sg25270 +S'Katharine Merrill' +p75332 +sa(dp75333 +g25267 +g27 +sg25268 +S'Cherub' +p75334 +sg25270 +S'American 20th Century' +p75335 +sa(dp75336 +g25268 +S"The Cupboard (L'armoire)" +p75337 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p75338 +sg25273 +S'etching' +p75339 +sg25275 +S'1778' +p75340 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009708.jpg' +p75341 +sg25267 +g27 +sa(dp75342 +g25267 +g27 +sg25268 +S'Ring Bit' +p75343 +sg25270 +S'Harry Mann Waddell' +p75344 +sa(dp75345 +g25267 +g27 +sg25268 +S'Spur' +p75346 +sg25270 +S'Randolph F. Miller' +p75347 +sa(dp75348 +g25267 +g27 +sg25268 +S'Steer Weather Vane' +p75349 +sg25270 +S'Mina Lowry' +p75350 +sa(dp75351 +g25267 +g27 +sg25268 +S'Flask' +p75352 +sg25270 +S'Paul Ward' +p75353 +sa(dp75354 +g25267 +g27 +sg25268 +S'Salt Cellar' +p75355 +sg25270 +S'Janet Riza' +p75356 +sa(dp75357 +g25267 +g27 +sg25268 +S'Flask' +p75358 +sg25270 +S'American 20th Century' +p75359 +sa(dp75360 +g25267 +g27 +sg25268 +S'Pitcher' +p75361 +sg25270 +S'Van Silvay' +p75362 +sa(dp75363 +g25267 +g27 +sg25268 +S'Bobcat' +p75364 +sg25270 +S'Harry King' +p75365 +sa(dp75366 +g25267 +g27 +sg25268 +S'Poodle' +p75367 +sg25270 +S'Mina Lowry' +p75368 +sa(dp75369 +g25267 +g27 +sg25268 +S'Billethead' +p75370 +sg25270 +S'Harriette Gale' +p75371 +sa(dp75372 +g25268 +S"Nymph Supported by Two Satyrs (Nymphe s'asseyant sur les mains de deux satyres)" +p75373 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p75374 +sg25273 +S'etching' +p75375 +sg25275 +S'1763' +p75376 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d2f.jpg' +p75377 +sg25267 +g27 +sa(dp75378 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p75379 +sg25270 +S'American 20th Century' +p75380 +sa(dp75381 +g25267 +g27 +sg25268 +S'Cigar Store Figure' +p75382 +sg25270 +S'American 20th Century' +p75383 +sa(dp75384 +g25267 +g27 +sg25268 +S'Trivet' +p75385 +sg25270 +S'Joseph L. Boyd' +p75386 +sa(dp75387 +g25267 +g27 +sg25268 +S'Doll' +p75388 +sg25270 +S'Charles Goodwin' +p75389 +sa(dp75390 +g25267 +g27 +sg25268 +S'Cigar Store Figure: "Punch"' +p75391 +sg25270 +S'Raymond Neumann' +p75392 +sa(dp75393 +g25267 +g27 +sg25268 +S'Tea Kettle' +p75394 +sg25270 +S'Paul Poffinbarger' +p75395 +sa(dp75396 +g25267 +g27 +sg25268 +S'Candle Mold Filler' +p75397 +sg25270 +S'Oscar Bluhme' +p75398 +sa(dp75399 +g25267 +g27 +sg25268 +S'Quilt' +p75400 +sg25270 +S'American 20th Century' +p75401 +sa(dp75402 +g25267 +g27 +sg25268 +S'Civil War General' +p75403 +sg25270 +S'Mina Lowry' +p75404 +sa(dp75405 +g25267 +g27 +sg25268 +S'Over Door Panel' +p75406 +sg25270 +S'Nicholas Amantea' +p75407 +sa(dp75408 +g25268 +S"The Satyr's Family (La famille du satyre)" +p75409 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p75410 +sg25273 +S'etching' +p75411 +sg25275 +S'1763' +p75412 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d2d.jpg' +p75413 +sg25267 +g27 +sa(dp75414 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p75415 +sg25270 +S'Artist Information (' +p75416 +sa(dp75417 +g25267 +g27 +sg25268 +S'Appliqued Bedspread' +p75418 +sg25270 +S'Suzanne Roy' +p75419 +sa(dp75420 +g25267 +g27 +sg25268 +S'Event Handkerchief' +p75421 +sg25270 +S'Hubbell McBride' +p75422 +sa(dp75423 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a000544e.jpg' +p75424 +sg25268 +S'Cigar Store Figure' +p75425 +sg25270 +S'Albert Ryder' +p75426 +sa(dp75427 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p75428 +sg25270 +S'Robert W.R. Taylor' +p75429 +sa(dp75430 +g25267 +g27 +sg25268 +S'Coverlet' +p75431 +sg25270 +S'Edward White' +p75432 +sa(dp75433 +g25267 +g27 +sg25268 +S'Eagle' +p75434 +sg25270 +S'American 20th Century' +p75435 +sa(dp75436 +g25267 +g27 +sg25268 +S'Weather Vane Horse' +p75437 +sg25270 +S'Gertrude Koch' +p75438 +sa(dp75439 +g25267 +g27 +sg25268 +S'Bandbox' +p75440 +sg25270 +S'Holger Hansen' +p75441 +sa(dp75442 +g25267 +g27 +sg25268 +S'Chest' +p75443 +sg25270 +S'Ethelbert Brown' +p75444 +sa(dp75445 +g25268 +S'Nymph Astride a Satyr (Jeune fille a califourchon sur un satyre)' +p75446 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p75447 +sg25273 +S'etching' +p75448 +sg25275 +S'1763' +p75449 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d30.jpg' +p75450 +sg25267 +g27 +sa(dp75451 +g25267 +g27 +sg25268 +S'Table Lamp' +p75452 +sg25270 +S'Samuel Faigin' +p75453 +sa(dp75454 +g25267 +g27 +sg25268 +S'Springerle for Christmas Cookies' +p75455 +sg25270 +S'Fritz Boehmer' +p75456 +sa(dp75457 +g25267 +g27 +sg25268 +S'Mug' +p75458 +sg25270 +S'Van Silvay' +p75459 +sa(dp75460 +g25267 +g27 +sg25268 +S'Pitcher' +p75461 +sg25270 +S'John Tarantino' +p75462 +sa(dp75463 +g25267 +g27 +sg25268 +S'Toy Locomotive' +p75464 +sg25270 +S'John Hall' +p75465 +sa(dp75466 +g25267 +g27 +sg25268 +S'Toy Bank: Uncle Sam' +p75467 +sg25270 +S'Elmer Weise' +p75468 +sa(dp75469 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p75470 +sg25270 +S'American 20th Century' +p75471 +sa(dp75472 +g25267 +g27 +sg25268 +S'Mug' +p75473 +sg25270 +S'Giacinto Capelli' +p75474 +sa(dp75475 +g25267 +g27 +sg25268 +S'Mug' +p75476 +sg25270 +S'Van Silvay' +p75477 +sa(dp75478 +g25267 +g27 +sg25268 +S'Tumbler' +p75479 +sg25270 +S'Charles Garjian' +p75480 +sa(dp75481 +g25268 +S"The Satyrs' Dance (Danse de satyres)" +p75482 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p75483 +sg25273 +S'etching' +p75484 +sg25275 +S'1763' +p75485 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d2e.jpg' +p75486 +sg25267 +g27 +sa(dp75487 +g25267 +g27 +sg25268 +S'Pitcher' +p75488 +sg25270 +S'Artist Information (' +p75489 +sa(dp75490 +g25267 +g27 +sg25268 +S'Pa. German Plate' +p75491 +sg25270 +S'Charlotte Sperber' +p75492 +sa(dp75493 +g25267 +g27 +sg25268 +S'Jar with Cover' +p75494 +sg25270 +S'Alvin Shiren' +p75495 +sa(dp75496 +g25267 +g27 +sg25268 +S'Butter Churn' +p75497 +sg25270 +S'Charlotte Sperber' +p75498 +sa(dp75499 +g25267 +g27 +sg25268 +S'Jug' +p75500 +sg25270 +S'Jessica Price' +p75501 +sa(dp75502 +g25267 +g27 +sg25268 +S'Chair Seat' +p75503 +sg25270 +S'Elizabeth Moutal' +p75504 +sa(dp75505 +g25267 +g27 +sg25268 +S'Quilt' +p75506 +sg25270 +S'Suzanne Roy' +p75507 +sa(dp75508 +g25267 +g27 +sg25268 +S'Coverlet' +p75509 +sg25270 +S'Cornelius Christoffels' +p75510 +sa(dp75511 +g25267 +g27 +sg25268 +S'Coin Purse' +p75512 +sg25270 +S'Ruth M. Barnes' +p75513 +sa(dp75514 +g25267 +g27 +sg25268 +S'Desk' +p75515 +sg25270 +S'Winslow Rich' +p75516 +sa(dp75517 +g25268 +S'Ma chemise brule' +p75518 +sg25270 +S'Artist Information (' +p75519 +sg25273 +S'(artist after)' +p75520 +sg25275 +S'\n' +p75521 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009721.jpg' +p75522 +sg25267 +g27 +sa(dp75523 +g25267 +g27 +sg25268 +S'Side Chair' +p75524 +sg25270 +S'Dana Bartlett' +p75525 +sa(dp75526 +g25267 +g27 +sg25268 +S'Side Chair' +p75527 +sg25270 +S'Charles Squires' +p75528 +sa(dp75529 +g25267 +g27 +sg25268 +S'Chair' +p75530 +sg25270 +S'William Kieckhofel' +p75531 +sa(dp75532 +g25267 +g27 +sg25268 +S'Altar Tabernacle' +p75533 +sg25270 +S'Gerald Transpota' +p75534 +sa(dp75535 +g25267 +g27 +sg25268 +S'Horse' +p75536 +sg25270 +S'Mina Lowry' +p75537 +sa(dp75538 +g25267 +g27 +sg25268 +S'Toy Horse' +p75539 +sg25270 +S'American 20th Century' +p75540 +sa(dp75541 +g25267 +g27 +sg25268 +S'Bird' +p75542 +sg25270 +S'Mina Lowry' +p75543 +sa(dp75544 +g25267 +g27 +sg25268 +S'Baptismal Font' +p75545 +sg25270 +S'Artist Information (' +p75546 +sa(dp75547 +g25267 +g27 +sg25268 +S'Baptismal Font & Stand' +p75548 +sg25270 +S'Marius Hansen' +p75549 +sa(dp75550 +g25267 +g27 +sg25268 +S'Graduated Measure' +p75551 +sg25270 +S'Amelia Tuccio' +p75552 +sa(dp75553 +g25268 +S'La chemise enlevee' +p75554 +sg25270 +S'Artist Information (' +p75555 +sg25273 +S'(artist after)' +p75556 +sg25275 +S'\n' +p75557 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009710.jpg' +p75558 +sg25267 +g27 +sa(dp75559 +g25267 +g27 +sg25268 +S'Circus Wagon Monkey' +p75560 +sg25270 +S'John Matulis' +p75561 +sa(dp75562 +g25267 +g27 +sg25268 +S'Circus Wagon Figure: Muse' +p75563 +sg25270 +S'John Matulis' +p75564 +sa(dp75565 +g25267 +g27 +sg25268 +S'Hadley Chest' +p75566 +sg25270 +S'Lawrence Flynn' +p75567 +sa(dp75568 +g25267 +g27 +sg25268 +S'Figurehead' +p75569 +sg25270 +S'Alfred Walbeck' +p75570 +sa(dp75571 +g25267 +g27 +sg25268 +S'Copper Kettle' +p75572 +sg25270 +S'Orrie McCombs' +p75573 +sa(dp75574 +g25267 +g27 +sg25268 +S'Hat Box' +p75575 +sg25270 +S'Frank McEntee' +p75576 +sa(dp75577 +g25267 +g27 +sg25268 +S'Figurehead from "Union"' +p75578 +sg25270 +S'Frances Cohen' +p75579 +sa(dp75580 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000552f.jpg' +p75581 +sg25268 +S'Rooster Weather Vane' +p75582 +sg25270 +S'Lucille Chabot' +p75583 +sa(dp75584 +g25267 +g27 +sg25268 +S'Eagle Weather Vane' +p75585 +sg25270 +S'Chris Makrenos' +p75586 +sa(dp75587 +g25267 +g27 +sg25268 +S'Figurehead' +p75588 +sg25270 +S'American 20th Century' +p75589 +sa(dp75590 +g25268 +S'La chemise enlevee' +p75591 +sg25270 +S'Artist Information (' +p75592 +sg25273 +S'(artist after)' +p75593 +sg25275 +S'\n' +p75594 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000970c.jpg' +p75595 +sg25267 +g27 +sa(dp75596 +g25267 +g27 +sg25268 +S'Figurehead' +p75597 +sg25270 +S'Frances Cohen' +p75598 +sa(dp75599 +g25267 +g27 +sg25268 +S'Indian Woman' +p75600 +sg25270 +S'Robert W.R. Taylor' +p75601 +sa(dp75602 +g25267 +g27 +sg25268 +S'Indian' +p75603 +sg25270 +S'Robert W.R. Taylor' +p75604 +sa(dp75605 +g25267 +g27 +sg25268 +S'Powder Horn' +p75606 +sg25270 +S'William McAuley' +p75607 +sa(dp75608 +g25267 +g27 +sg25268 +S'Santo' +p75609 +sg25270 +S'Maude Valle' +p75610 +sa(dp75611 +g25267 +g27 +sg25268 +S'Jockey Hitching Post' +p75612 +sg25270 +S'American 20th Century' +p75613 +sa(dp75614 +g25267 +g27 +sg25268 +S'Clock' +p75615 +sg25270 +S'Arthur Johnson' +p75616 +sa(dp75617 +g25267 +g27 +sg25268 +S'Chest' +p75618 +sg25270 +S'M. Rosenshield-von-Paulin' +p75619 +sa(dp75620 +g25267 +g27 +sg25268 +S'Shaker Stove' +p75621 +sg25270 +S'John W. Kelleher' +p75622 +sa(dp75623 +g25267 +g27 +sg25268 +S'Poodle' +p75624 +sg25270 +S'Mina Lowry' +p75625 +sa(dp75626 +g25268 +S'La chemise enlevee' +p75627 +sg25270 +S'Artist Information (' +p75628 +sg25273 +S'(artist after)' +p75629 +sg25275 +S'\n' +p75630 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000970d.jpg' +p75631 +sg25267 +g27 +sa(dp75632 +g25267 +g27 +sg25268 +S'Vase' +p75633 +sg25270 +S'Janet Riza' +p75634 +sa(dp75635 +g25267 +g27 +sg25268 +S'Bandbox Design' +p75636 +sg25270 +S'American 20th Century' +p75637 +sa(dp75638 +g25267 +S"Carousel sculpture was another type of woodcarving important to circuses and to amusement\n parks. While crude carousels of various kinds had been available in America before the Civil\n War, the carousel with a rotating platform did not appear until 1879, when a version was first\n made in North Tonawanda, New York. Carousels became regular attractions at fairs and\n carnivals as well as at circuses. Their numbers increased greatly during the last years of the\n nineteenth century. One of the best-known makers of carousel animals was Charles Looff, who\n worked in Riverside, Rhode Island, and produced a wide range of animal figures between 1876\n and 1918. Looff probably carved this fine, galloping steed after the turn of the century, since it is\n consistent with his late style both in liveliness and in the splendor of the animal's mane and accessories.\n " +p75639 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000344.jpg' +p75640 +sg25268 +S'Carousel Horse' +p75641 +sg25270 +S'Henry Murphy' +p75642 +sa(dp75643 +g25267 +g27 +sg25268 +S'Fish Weather Vane' +p75644 +sg25270 +S'Michael Riccitelli' +p75645 +sa(dp75646 +g25267 +g27 +sg25268 +S'Figurehead' +p75647 +sg25270 +S'American 20th Century' +p75648 +sa(dp75649 +g25267 +g27 +sg25268 +S'Chest' +p75650 +sg25270 +S'Carl Strehlau' +p75651 +sa(dp75652 +g25267 +g27 +sg25268 +S'Plate' +p75653 +sg25270 +S'Charlotte Angus' +p75654 +sa(dp75655 +g25267 +g27 +sg25268 +S'Dish' +p75656 +sg25270 +S'Charlotte Angus' +p75657 +sa(dp75658 +g25267 +S'This milk wagon is made from a combination of materials: the horse and figure\n are plaster, the wagon is wood, and the large milk cans and dipper are tin. The\n wagon dates from 1870. Before that time, milk was delivered from house to house\n by farm wagons. The Lake Wagon Company built the first vehicle to be used exclusively\n for milk delivery in New York City. This type of wagon then remained in general\n use until it was replaced by the closed wagon. Milk was dipped from the large cans\n into pitchers brought to the driver by housewives.\n ' +p75659 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002f8.jpg' +p75660 +sg25268 +S'Toy Milk Wagon' +p75661 +sg25270 +S'Henry Granet' +p75662 +sa(dp75663 +g25267 +g27 +sg25268 +S'Rocking Horse' +p75664 +sg25270 +S'Selma Sandler' +p75665 +sa(dp75666 +g25268 +S'The Triumph of Camillus' +p75667 +sg25270 +S'Artist Information (' +p75668 +sg25273 +S'(painter)' +p75669 +sg25275 +S'\n' +p75670 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005ca.jpg' +p75671 +sg25267 +S'Subjects like this one, taken from the writings of the ancient Roman author Livy, displayed the learning and \r\n sophistication of Renaissance patrons and were especially popular in \r\n domestic settings. The size of this painting suggests that it was probably displayed like a frieze with other \r\n panels in the home of a wealthy Florentine family.\n Here, the Roman senate honors the hero Camillus with a triumphal parade \r\n through Rome. Camillus returned from \r\n exile to rescue Rome from besieging Gauls. When informed that the city was \r\n ready to capitulate by paying off the enemy, Camillus stirred his troops \r\n and fellow citizens with powerful rhetoric. "With iron," he said, "and not \r\n with gold, Rome buys her freedom." This spirit of republican virtue \r\n appealed to fifteenth-century Florentines, who regarded ancient Rome as a \r\n paradigm for their own city. The scene\'s relevance was enhanced by its \r\n contemporary costumes and other familiar details. The decorated parade \r\n floats recalled the lavish spectacle of processions in Florence. The \r\n battered and blood-stained walls of the city enclose several buildings that \r\n could be recognized in Rome, including the dome of the Pantheon and the \r\n drums of Castel Sant\'Angelo. The heraldic colors that drape the \r\n horses probably belonged to the painting\'s patron, as yet unidentified.\n ' +p75672 +sa(dp75673 +g25268 +S"Le Chiffre d'amour" +p75674 +sg25270 +S'Artist Information (' +p75675 +sg25273 +S'(artist after)' +p75676 +sg25275 +S'\n' +p75677 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e75.jpg' +p75678 +sg25267 +g27 +sa(dp75679 +g25267 +g27 +sg25268 +S'Side Chair' +p75680 +sg25270 +S'Ferdinand Cartier' +p75681 +sa(dp75682 +g25267 +g27 +sg25268 +S'Table' +p75683 +sg25270 +S'Frank Wenger' +p75684 +sa(dp75685 +g25267 +g27 +sg25268 +S'Side Chair' +p75686 +sg25270 +S'Hans Westendorff' +p75687 +sa(dp75688 +g25267 +g27 +sg25268 +S'Shaker Built-In Cupboard' +p75689 +sg25270 +S'Sumner Merrill' +p75690 +sa(dp75691 +g25267 +g27 +sg25268 +S'Shaker Cabinet' +p75692 +sg25270 +S'John W. Kelleher' +p75693 +sa(dp75694 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p75695 +sg25270 +S'Charles Caseau' +p75696 +sa(dp75697 +g25267 +g27 +sg25268 +S'Stoneware Crock' +p75698 +sg25270 +S'Charles Caseau' +p75699 +sa(dp75700 +g25267 +g27 +sg25268 +S'Plate' +p75701 +sg25270 +S'Hedwig Emanuel' +p75702 +sa(dp75703 +g25267 +g27 +sg25268 +S'Churn' +p75704 +sg25270 +S'American 20th Century' +p75705 +sa(dp75706 +g25267 +g27 +sg25268 +S'Pitcher' +p75707 +sg25270 +S'John Tarantino' +p75708 +sa(dp75709 +g25268 +S'La coquette fixee' +p75710 +sg25270 +S'Artist Information (' +p75711 +sg25273 +S'(artist)' +p75712 +sg25275 +S'\n' +p75713 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e4c.jpg' +p75714 +sg25267 +g27 +sa(dp75715 +g25267 +g27 +sg25268 +S'Betty Lamp' +p75716 +sg25270 +S'American 20th Century' +p75717 +sa(dp75718 +g25267 +g27 +sg25268 +S'Pitcher' +p75719 +sg25270 +S'Eugene La Foret' +p75720 +sa(dp75721 +g25267 +g27 +sg25268 +S'Window Grille' +p75722 +sg25270 +S'Harry Mann Waddell' +p75723 +sa(dp75724 +g25267 +g27 +sg25268 +S'Wallpaper' +p75725 +sg25270 +S'American 20th Century' +p75726 +sa(dp75727 +g25267 +g27 +sg25268 +S'Dirk' +p75728 +sg25270 +S'American 20th Century' +p75729 +sa(dp75730 +g25267 +g27 +sg25268 +S'Wooden Spoon' +p75731 +sg25270 +S'American 20th Century' +p75732 +sa(dp75733 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p75734 +sg25270 +S'American 20th Century' +p75735 +sa(dp75736 +g25267 +g27 +sg25268 +S'Spur' +p75737 +sg25270 +S'Hazel Sheckler' +p75738 +sa(dp75739 +g25267 +g27 +sg25268 +S'Silver Teapot' +p75740 +sg25270 +S'American 20th Century' +p75741 +sa(dp75742 +g25267 +g27 +sg25268 +S'Silver Creamer' +p75743 +sg25270 +S'Amelia Tuccio' +p75744 +sa(dp75745 +g25268 +S'La coquette fixee' +p75746 +sg25270 +S'Artist Information (' +p75747 +sg25273 +S'(artist)' +p75748 +sg25275 +S'\n' +p75749 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096b9.jpg' +p75750 +sg25267 +g27 +sa(dp75751 +g25267 +g27 +sg25268 +S'Candlestick' +p75752 +sg25270 +S'Janet Riza' +p75753 +sa(dp75754 +g25267 +g27 +sg25268 +S'Shoe Blacking Bottle' +p75755 +sg25270 +S'Anne Nemtzoff' +p75756 +sa(dp75757 +g25267 +g27 +sg25268 +S'Bottle for Toilet Water' +p75758 +sg25270 +S'Joseph Delaney' +p75759 +sa(dp75760 +g25267 +g27 +sg25268 +S'Vase' +p75761 +sg25270 +S'Alvin Shiren' +p75762 +sa(dp75763 +g25267 +g27 +sg25268 +S'Jelly Tumbler' +p75764 +sg25270 +S'American 20th Century' +p75765 +sa(dp75766 +g25267 +g27 +sg25268 +S'Whale Oil Lamp' +p75767 +sg25270 +S'Janet Riza' +p75768 +sa(dp75769 +g25267 +g27 +sg25268 +S'Garden Gate Latch' +p75770 +sg25270 +S'J. Peltzman' +p75771 +sa(dp75772 +g25267 +g27 +sg25268 +S'Civil War General' +p75773 +sg25270 +S'Mina Lowry' +p75774 +sa(dp75775 +g25267 +g27 +sg25268 +S'Dancing Doll' +p75776 +sg25270 +S'Mina Lowry' +p75777 +sa(dp75778 +g25267 +g27 +sg25268 +S'Bandbox' +p75779 +sg25270 +S'Lee Hager' +p75780 +sa(dp75781 +g25268 +S'La Culbute (The Tumble)' +p75782 +sg25270 +S'Artist Information (' +p75783 +sg25273 +S'(artist after)' +p75784 +sg25275 +S'\n' +p75785 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a00055b0.jpg' +p75786 +sg25267 +g27 +sa(dp75787 +g25267 +g27 +sg25268 +S'Side Chair' +p75788 +sg25270 +S'Ruth Bialostosky' +p75789 +sa(dp75790 +g25267 +S'At the end of the seventeenth century and in the early part of the eighteenth century,\r\n the newly affluent colonists created a demand for finely crafted furniture. American\r\n cabinetmakers responded through the use of richer woods and by modifying the \r\n earlier Jacobean forms in order to achieve the lighter, more graceful designs preferred\r\n by fashionable patrons. The taste of the well-to-do colonists and the products of\r\n American craftsmen reflected the influence of new fashions in English furniture\r\n design. English cabinetry began to take on some of the elegance of French styles\r\n as a result of the work of Continental craftsmen who came to England in the late\r\n seventeenth century. A style called William and Mary after the reigning English\r\n monarchs thus evolved in England after 1660 and was adopted by American cabinetmakers\r\n at the end of the century. Although Jacobean decorative techniques such as turning\r\n and carving were retained in furniture design, proportions were refined, curves\r\n and angles added, and structural members made slimmer. This pine and walnut\r\n table with a circular top and three finely turned legs splayed outward at a vigorous\r\n angle is a popular William and Mary form. The angle of the legs and the curve of\r\n the round table avoid the heaviness of the earlier Jacobean square forms. The bulbous\r\n uprights of Jacobean furniture have given way to slim and varied turnings. The total\r\n effect is one of lightness and refinement.\n ' +p75791 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002c8.jpg' +p75792 +sg25268 +S'Table' +p75793 +sg25270 +S'Louis Annino' +p75794 +sa(dp75795 +g25267 +g27 +sg25268 +S'Shelf Clock' +p75796 +sg25270 +S'American 20th Century' +p75797 +sa(dp75798 +g25267 +g27 +sg25268 +S'Closet and Drawers' +p75799 +sg25270 +S'Artist Information (' +p75800 +sa(dp75801 +g25267 +g27 +sg25268 +S'Side Chair' +p75802 +sg25270 +S'Francisco Alvarez' +p75803 +sa(dp75804 +g25267 +g27 +sg25268 +S'Cabinet with Drawers' +p75805 +sg25270 +S'Irving I. Smith' +p75806 +sa(dp75807 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p75808 +sg25270 +S'Rolland Livingstone' +p75809 +sa(dp75810 +g25267 +g27 +sg25268 +S'Bottle' +p75811 +sg25270 +S'Nicholas Amantea' +p75812 +sa(dp75813 +g25273 +S'watercolor, colored pencil, pen and ink, and graphite on paper' +p75814 +sg25267 +g27 +sg25275 +S'1935/1942' +p75815 +sg25268 +S'Rural School Room, 1900' +p75816 +sg25270 +S'Perkins Harnly' +p75817 +sa(dp75818 +g25267 +g27 +sg25268 +S'Silver Creamer' +p75819 +sg25270 +S'Amelia Tuccio' +p75820 +sa(dp75821 +g25268 +S'La fuite a dessein' +p75822 +sg25270 +S'Artist Information (' +p75823 +sg25273 +S'(artist after)' +p75824 +sg25275 +S'\n' +p75825 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f0f.jpg' +p75826 +sg25267 +g27 +sa(dp75827 +g25267 +g27 +sg25268 +S'Window Grille' +p75828 +sg25270 +S'Geoffrey Holt' +p75829 +sa(dp75830 +g25267 +g27 +sg25268 +S'Dirk' +p75831 +sg25270 +S'A. Regli' +p75832 +sa(dp75833 +g25267 +g27 +sg25268 +S'Trivet' +p75834 +sg25270 +S'American 20th Century' +p75835 +sa(dp75836 +g25267 +g27 +sg25268 +S'Pitcher' +p75837 +sg25270 +S'Henry Granet' +p75838 +sa(dp75839 +g25267 +g27 +sg25268 +S'Bandbox' +p75840 +sg25270 +S'Lee Hager' +p75841 +sa(dp75842 +g25267 +g27 +sg25268 +S'Wallpaper' +p75843 +sg25270 +S'Mina Lowry' +p75844 +sa(dp75845 +g25267 +g27 +sg25268 +S'Bandbox' +p75846 +sg25270 +S'American 20th Century' +p75847 +sa(dp75848 +g25267 +g27 +sg25268 +S'Civil War Soldier' +p75849 +sg25270 +S'Mina Lowry' +p75850 +sa(dp75851 +g25267 +g27 +sg25268 +S'Dancing Doll' +p75852 +sg25270 +S'Mina Lowry' +p75853 +sa(dp75854 +g25267 +g27 +sg25268 +S'Ember Carrier' +p75855 +sg25270 +S'Mildred Ford' +p75856 +sa(dp75857 +g25268 +S"Les Hazards heureux de l'Escarpolette" +p75858 +sg25270 +S'Artist Information (' +p75859 +sg25273 +S'(artist after)' +p75860 +sg25275 +S'\n' +p75861 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096d2.jpg' +p75862 +sg25267 +g27 +sa(dp75863 +g25267 +g27 +sg25268 +S'Candelabrum' +p75864 +sg25270 +S'Mildred Ford' +p75865 +sa(dp75866 +g25267 +g27 +sg25268 +S'Candlestick' +p75867 +sg25270 +S'American 20th Century' +p75868 +sa(dp75869 +g25267 +g27 +sg25268 +S'Lamp' +p75870 +sg25270 +S'Clayton Braun' +p75871 +sa(dp75872 +g25267 +g27 +sg25268 +S'Tumbler' +p75873 +sg25270 +S'Anne Nemtzoff' +p75874 +sa(dp75875 +g25267 +g27 +sg25268 +S'Creamer' +p75876 +sg25270 +S'John Dana' +p75877 +sa(dp75878 +g25267 +g27 +sg25268 +S'Vase' +p75879 +sg25270 +S'Michael Trekur' +p75880 +sa(dp75881 +g25267 +g27 +sg25268 +S'Shaker Table' +p75882 +sg25270 +S'Winslow Rich' +p75883 +sa(dp75884 +g25267 +g27 +sg25268 +S'Shaker Chest of Drawers' +p75885 +sg25270 +S'Winslow Rich' +p75886 +sa(dp75887 +g25267 +g27 +sg25268 +S'Figure of a Black Man' +p75888 +sg25270 +S'Mina Lowry' +p75889 +sa(dp75890 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p75891 +sg25270 +S'Marius Hansen' +p75892 +sa(dp75893 +g25268 +S"Les Hazards heureux de l'Escarpolette" +p75894 +sg25270 +S'Artist Information (' +p75895 +sg25273 +S'(artist after)' +p75896 +sg25275 +S'\n' +p75897 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096d3.jpg' +p75898 +sg25267 +g27 +sa(dp75899 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p75900 +sg25270 +S'Marius Hansen' +p75901 +sa(dp75902 +g25267 +g27 +sg25268 +S'Barber Pole' +p75903 +sg25270 +S'American 20th Century' +p75904 +sa(dp75905 +g25267 +g27 +sg25268 +S'Glass Pitcher' +p75906 +sg25270 +S'American 20th Century' +p75907 +sa(dp75908 +g25267 +g27 +sg25268 +S'Toddy Glass' +p75909 +sg25270 +S'Frank Fumagalli' +p75910 +sa(dp75911 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p75912 +sg25270 +S'Joseph Delaney' +p75913 +sa(dp75914 +g25267 +g27 +sg25268 +S'Vase' +p75915 +sg25270 +S'John Dana' +p75916 +sa(dp75917 +g25267 +g27 +sg25268 +S'Flask' +p75918 +sg25270 +S'Janet Riza' +p75919 +sa(dp75920 +g25267 +g27 +sg25268 +S'Bar Bottle' +p75921 +sg25270 +S'Anna Aloisi' +p75922 +sa(dp75923 +g25267 +g27 +sg25268 +S'Wallpaper' +p75924 +sg25270 +S'Mina Lowry' +p75925 +sa(dp75926 +g25267 +g27 +sg25268 +S'Bandbox' +p75927 +sg25270 +S'American 20th Century' +p75928 +sa(dp75929 +g25268 +S'The Waterworks' +p75930 +sg25270 +S'Artist Information (' +p75931 +sg25273 +S'(artist after)' +p75932 +sg25275 +S'\n' +p75933 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cbc.jpg' +p75934 +sg25267 +g27 +sa(dp75935 +g25267 +g27 +sg25268 +S'Wallpaper Border' +p75936 +sg25270 +S'Moses Bank' +p75937 +sa(dp75938 +g25267 +g27 +sg25268 +S'Wallpaper Border' +p75939 +sg25270 +S'Lee Hager' +p75940 +sa(dp75941 +g25267 +g27 +sg25268 +S'Wallpaper Border' +p75942 +sg25270 +S'Sidney Liswood' +p75943 +sa(dp75944 +g25267 +g27 +sg25268 +S'Wallpaper' +p75945 +sg25270 +S'Moses Bank' +p75946 +sa(dp75947 +g25267 +g27 +sg25268 +S'Wallpaper Border' +p75948 +sg25270 +S'George Robin' +p75949 +sa(dp75950 +g25267 +g27 +sg25268 +S'Shaker Chest of Drawers' +p75951 +sg25270 +S'Winslow Rich' +p75952 +sa(dp75953 +g25267 +g27 +sg25268 +S'Table' +p75954 +sg25270 +S'Alfred H. Smith' +p75955 +sa(dp75956 +g25267 +g27 +sg25268 +S'Built-In Drawers' +p75957 +sg25270 +S'John W. Kelleher' +p75958 +sa(dp75959 +g25267 +g27 +sg25268 +S'Built-In Furniture' +p75960 +sg25270 +S'Winslow Rich' +p75961 +sa(dp75962 +g25267 +g27 +sg25268 +S"Tailor's Table" +p75963 +sg25270 +S'Winslow Rich' +p75964 +sa(dp75965 +g25268 +S'The Fireworks' +p75966 +sg25270 +S'Artist Information (' +p75967 +sg25273 +S'(artist after)' +p75968 +sg25275 +S'\n' +p75969 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cbd.jpg' +p75970 +sg25267 +g27 +sa(dp75971 +g25267 +g27 +sg25268 +S'Cupboard' +p75972 +sg25270 +S'Alfred H. Smith' +p75973 +sa(dp75974 +g25267 +g27 +sg25268 +S'Secretary' +p75975 +sg25270 +S'Irving I. Smith' +p75976 +sa(dp75977 +g25267 +g27 +sg25268 +S'Table' +p75978 +sg25270 +S'John W. Kelleher' +p75979 +sa(dp75980 +g25267 +g27 +sg25268 +S'Secretary' +p75981 +sg25270 +S'Irving I. Smith' +p75982 +sa(dp75983 +g25267 +g27 +sg25268 +S'Pack Saddle' +p75984 +sg25270 +S'Frank C. Barks' +p75985 +sa(dp75986 +g25267 +g27 +sg25268 +S'Bell' +p75987 +sg25270 +S'L. B. Hartmann' +p75988 +sa(dp75989 +g25267 +g27 +sg25268 +S'Stirrup' +p75990 +sg25270 +S'American 20th Century' +p75991 +sa(dp75992 +g25267 +g27 +sg25268 +S'Bit' +p75993 +sg25270 +S'William Kieckhofel' +p75994 +sa(dp75995 +g25267 +g27 +sg25268 +S'Bit' +p75996 +sg25270 +S'Dana Bartlett' +p75997 +sa(dp75998 +g25267 +g27 +sg25268 +S'Spur' +p75999 +sg25270 +S'George E. Rhone' +p76000 +sa(dp76001 +g25268 +S'Le pot au lait' +p76002 +sg25270 +S'Artist Information (' +p76003 +sg25273 +S'(artist after)' +p76004 +sg25275 +S'\n' +p76005 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000965e.jpg' +p76006 +sg25267 +g27 +sa(dp76007 +g25267 +g27 +sg25268 +S'Spur' +p76008 +sg25270 +S'Ann Gene Buckley' +p76009 +sa(dp76010 +g25267 +g27 +sg25268 +S'Dancing Slipper' +p76011 +sg25270 +S'Ann Gene Buckley' +p76012 +sa(dp76013 +g25267 +g27 +sg25268 +S'Carousel Horse' +p76014 +sg25270 +S'John Sullivan' +p76015 +sa(dp76016 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p76017 +sg25270 +S'Florian Rokita' +p76018 +sa(dp76019 +g25267 +g27 +sg25268 +S'Cigar Store Indian' +p76020 +sg25270 +S'Artist Information (' +p76021 +sa(dp76022 +g25267 +g27 +sg25268 +S'Circus Wagon Figure' +p76023 +sg25270 +S'John Matulis' +p76024 +sa(dp76025 +g25267 +g27 +sg25268 +S'Figurehead: Davy Crockett' +p76026 +sg25270 +S'Ethel Dougan' +p76027 +sa(dp76028 +g25267 +g27 +sg25268 +S'Dress' +p76029 +sg25270 +S'American 20th Century' +p76030 +sa(dp76031 +g25267 +g27 +sg25268 +S'Dress' +p76032 +sg25270 +S'American 20th Century' +p76033 +sa(dp76034 +g25267 +g27 +sg25268 +S'Silk Gown' +p76035 +sg25270 +S'Maude Schell' +p76036 +sa(dp76037 +g25268 +S"Le verre d'eau" +p76038 +sg25270 +S'Artist Information (' +p76039 +sg25273 +S'(artist after)' +p76040 +sg25275 +S'\n' +p76041 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009660.jpg' +p76042 +sg25267 +g27 +sa(dp76043 +g25267 +g27 +sg25268 +S'Dress' +p76044 +sg25270 +S'Dorothy Gernon' +p76045 +sa(dp76046 +g25267 +g27 +sg25268 +S'Empire Wedding Dress' +p76047 +sg25270 +S'American 20th Century' +p76048 +sa(dp76049 +g25267 +g27 +sg25268 +S'Wedding Dress' +p76050 +sg25270 +S'Lee Hager' +p76051 +sa(dp76052 +g25267 +g27 +sg25268 +S'Visiting Dress' +p76053 +sg25270 +S'Eleanor Ruelos' +p76054 +sa(dp76055 +g25267 +g27 +sg25268 +S'Wedding Dress' +p76056 +sg25270 +S'American 20th Century' +p76057 +sa(dp76058 +g25267 +g27 +sg25268 +S'Dinner Dress' +p76059 +sg25270 +S'Hedwig Emanuel' +p76060 +sa(dp76061 +g25267 +g27 +sg25268 +S'Bustle Dress' +p76062 +sg25270 +S'American 20th Century' +p76063 +sa(dp76064 +g25267 +g27 +sg25268 +S'Empire Bonnet' +p76065 +sg25270 +S'Melita Hofmann' +p76066 +sa(dp76067 +g25267 +g27 +sg25268 +S'Bonnet' +p76068 +sg25270 +S'Esther Hansen' +p76069 +sa(dp76070 +g25267 +g27 +sg25268 +S'Silk Bonnet' +p76071 +sg25270 +S'American 20th Century' +p76072 +sa(dp76073 +g25268 +S"S'il m'etoit aussi fidele" +p76074 +sg25270 +S'Artist Information (' +p76075 +sg25273 +S'(artist after)' +p76076 +sg25275 +S'\n' +p76077 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e6d.jpg' +p76078 +sg25267 +g27 +sa(dp76079 +g25267 +g27 +sg25268 +S'Arm Chair' +p76080 +sg25270 +S'Florence Choate' +p76081 +sa(dp76082 +g25267 +g27 +sg25268 +S'Side Chair' +p76083 +sg25270 +S'Mary Berner' +p76084 +sa(dp76085 +g25267 +g27 +sg25268 +S'Side Chair' +p76086 +sg25270 +S'Marion Curtiss' +p76087 +sa(dp76088 +g25267 +g27 +sg25268 +S'Side Chair' +p76089 +sg25270 +S'Ruth Bialostosky' +p76090 +sa(dp76091 +g25267 +g27 +sg25268 +S'Wing Chair' +p76092 +sg25270 +S'Rolland Livingstone' +p76093 +sa(dp76094 +g25267 +g27 +sg25268 +S'Side Chair' +p76095 +sg25270 +S'Frank Wenger' +p76096 +sa(dp76097 +g25267 +g27 +sg25268 +S'Sofa' +p76098 +sg25270 +S'American 20th Century' +p76099 +sa(dp76100 +g25267 +g27 +sg25268 +S'Sofa' +p76101 +sg25270 +S'American 20th Century' +p76102 +sa(dp76103 +g25267 +g27 +sg25268 +S'Window Seat' +p76104 +sg25270 +S'Frank Wenger' +p76105 +sa(dp76106 +g25267 +g27 +sg25268 +S'Sofa' +p76107 +sg25270 +S'Frank Wenger' +p76108 +sa(dp76109 +g25268 +S"Dites donc s'il vous plait" +p76110 +sg25270 +S'Artist Information (' +p76111 +sg25273 +S'(artist after)' +p76112 +sg25275 +S'\n' +p76113 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e90.jpg' +p76114 +sg25267 +g27 +sa(dp76115 +g25267 +g27 +sg25268 +S'Sofa' +p76116 +sg25270 +S'Bernard Gussow' +p76117 +sa(dp76118 +g25267 +g27 +sg25268 +S'Settee' +p76119 +sg25270 +S'American 20th Century' +p76120 +sa(dp76121 +g25267 +g27 +sg25268 +S'Sofa' +p76122 +sg25270 +S'Elizabeth Curtis' +p76123 +sa(dp76124 +g25267 +g27 +sg25268 +S'Side Chair' +p76125 +sg25270 +S'Gilbert Sackerman' +p76126 +sa(dp76127 +g25267 +g27 +sg25268 +S"Boy's Suit" +p76128 +sg25270 +S'Nancy Crimi' +p76129 +sa(dp76130 +g25267 +g27 +sg25268 +S"Child's Trousers and Top" +p76131 +sg25270 +S'Esther Peck' +p76132 +sa(dp76133 +g25267 +g27 +sg25268 +S"Boy's Suit" +p76134 +sg25270 +S'Dorothy Gernon' +p76135 +sa(dp76136 +g25267 +g27 +sg25268 +S'Velvet Bolero for Women' +p76137 +sg25270 +S'Syrena Swanson' +p76138 +sa(dp76139 +g25267 +g27 +sg25268 +S"Sugar Merchant's Suit (Pattern)" +p76140 +sg25270 +S'Henry De Wolfe' +p76141 +sa(dp76142 +g25267 +g27 +sg25268 +S"Sugar Merchant's Suit (Written Description)" +p76143 +sg25270 +S'Henry De Wolfe' +p76144 +sa(dp76145 +g25268 +S'Le Petit pr\xc3\xa9dicateur' +p76146 +sg25270 +S'Artist Information (' +p76147 +sg25273 +S'(artist after)' +p76148 +sg25275 +S'\n' +p76149 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e71.jpg' +p76150 +sg25267 +g27 +sa(dp76151 +g25267 +g27 +sg25268 +S'Jug' +p76152 +sg25270 +S'Charles Caseau' +p76153 +sa(dp76154 +g25267 +g27 +sg25268 +S'Grey Stoneware Water Jug' +p76155 +sg25270 +S'American 20th Century' +p76156 +sa(dp76157 +g25267 +g27 +sg25268 +S'Jug' +p76158 +sg25270 +S'Yolande Delasser' +p76159 +sa(dp76160 +g25267 +g27 +sg25268 +S'Jug' +p76161 +sg25270 +S'Charles Caseau' +p76162 +sa(dp76163 +g25267 +g27 +sg25268 +S'Jug' +p76164 +sg25270 +S'Yolande Delasser' +p76165 +sa(dp76166 +g25267 +g27 +sg25268 +S'Stoneware Jug' +p76167 +sg25270 +S'Nicholas Amantea' +p76168 +sa(dp76169 +g25267 +g27 +sg25268 +S'Jar' +p76170 +sg25270 +S'Yolande Delasser' +p76171 +sa(dp76172 +g25267 +g27 +sg25268 +S'Stoneware Jug' +p76173 +sg25270 +S'Charles Caseau' +p76174 +sa(dp76175 +g25267 +g27 +sg25268 +S'Jug' +p76176 +sg25270 +S'Francis Borelli' +p76177 +sa(dp76178 +g25267 +g27 +sg25268 +S'Jug' +p76179 +sg25270 +S'Jessica Price' +p76180 +sa(dp76181 +g25268 +S'Le Petit pr\xc3\xa9dicateur' +p76182 +sg25270 +S'Artist Information (' +p76183 +sg25273 +S'(artist after)' +p76184 +sg25275 +S'\n' +p76185 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006210.jpg' +p76186 +sg25267 +g27 +sa(dp76187 +g25267 +g27 +sg25268 +S'Pitcher' +p76188 +sg25270 +S'Frank Fumagalli' +p76189 +sa(dp76190 +g25267 +g27 +sg25268 +S'Pitcher' +p76191 +sg25270 +S'Anna Aloisi' +p76192 +sa(dp76193 +g25267 +g27 +sg25268 +S'Pitcher' +p76194 +sg25270 +S'Giacinto Capelli' +p76195 +sa(dp76196 +g25267 +g27 +sg25268 +S'Ring Bottle' +p76197 +sg25270 +S'Jessica Price' +p76198 +sa(dp76199 +g25267 +g27 +sg25268 +S'Crock' +p76200 +sg25270 +S'Charlotte Sperber' +p76201 +sa(dp76202 +g25267 +g27 +sg25268 +S'Churn' +p76203 +sg25270 +S'Frank Fumagalli' +p76204 +sa(dp76205 +g25267 +g27 +sg25268 +S'Vase' +p76206 +sg25270 +S'Charles Caseau' +p76207 +sa(dp76208 +g25267 +g27 +sg25268 +S'Stoneware Jar' +p76209 +sg25270 +S'Francis Borelli' +p76210 +sa(dp76211 +g25267 +g27 +sg25268 +S'Chalkware' +p76212 +sg25270 +S'Mina Lowry' +p76213 +sa(dp76214 +g25267 +g27 +sg25268 +S'Cheese Pot' +p76215 +sg25270 +S'Frank Fumagalli' +p76216 +sa(dp76217 +g25268 +S'Les Baignets' +p76218 +sg25270 +S'Artist Information (' +p76219 +sg25273 +S'(artist after)' +p76220 +sg25275 +S'\n' +p76221 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e91.jpg' +p76222 +sg25267 +g27 +sa(dp76223 +g25267 +g27 +sg25268 +S'Butter Churn' +p76224 +sg25270 +S'Yolande Delasser' +p76225 +sa(dp76226 +g25267 +g27 +sg25268 +S'Wooden Indian' +p76227 +sg25270 +S'Gerald Transpota' +p76228 +sa(dp76229 +g25267 +g27 +sg25268 +S'Wooden Indian (Female)' +p76230 +sg25270 +S'Marius Hansen' +p76231 +sa(dp76232 +g25267 +g27 +sg25268 +S'Coffee Grinder' +p76233 +sg25270 +S'Herman Bader' +p76234 +sa(dp76235 +g25267 +g27 +sg25268 +S'Comb' +p76236 +sg25270 +S'Margaret Concha' +p76237 +sa(dp76238 +g25267 +g27 +sg25268 +S'Comb' +p76239 +sg25270 +S'Isidore Steinberg' +p76240 +sa(dp76241 +g25267 +g27 +sg25268 +S'Comb' +p76242 +sg25270 +S'John H. Tercuzzi' +p76243 +sa(dp76244 +g25267 +g27 +sg25268 +S'Copper Pitcher' +p76245 +sg25270 +S'N.H. Yeckley' +p76246 +sa(dp76247 +g25267 +g27 +sg25268 +S'Shoe' +p76248 +sg25270 +S'Mae Szilvasy' +p76249 +sa(dp76250 +g25267 +g27 +sg25268 +S'Cape' +p76251 +sg25270 +S'Rosalia Lane' +p76252 +sa(dp76253 +g25268 +S'Les Baignets' +p76254 +sg25270 +S'Artist Information (' +p76255 +sg25273 +S'(artist after)' +p76256 +sg25275 +S'\n' +p76257 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096d1.jpg' +p76258 +sg25267 +g27 +sa(dp76259 +g25267 +g27 +sg25268 +S'Dress with Cape Collar' +p76260 +sg25270 +S'Mina Lowry' +p76261 +sa(dp76262 +g25267 +g27 +sg25268 +S'Dress' +p76263 +sg25270 +S'Jean Peszel' +p76264 +sa(dp76265 +g25267 +g27 +sg25268 +S'Dress' +p76266 +sg25270 +S'Jean Gordon' +p76267 +sa(dp76268 +g25267 +g27 +sg25268 +S'Trivet' +p76269 +sg25270 +S'Charles Cullen' +p76270 +sa(dp76271 +g25267 +g27 +sg25268 +S'Wallpaper' +p76272 +sg25270 +S'N. Rathovich' +p76273 +sa(dp76274 +g25267 +g27 +sg25268 +S'Wallpaper' +p76275 +sg25270 +S'Joseph L. Boyd' +p76276 +sa(dp76277 +g25267 +g27 +sg25268 +S'Wallpaper' +p76278 +sg25270 +S'Mina Lowry' +p76279 +sa(dp76280 +g25267 +g27 +sg25268 +S'Wallpaper' +p76281 +sg25270 +S'Margaret Knapp' +p76282 +sa(dp76283 +g25267 +g27 +sg25268 +S'Wallpaper' +p76284 +sg25270 +S'Selma Sandler' +p76285 +sa(dp76286 +g25267 +g27 +sg25268 +S'Wallpaper Border' +p76287 +sg25270 +S'John Garay' +p76288 +sa(dp76289 +g25268 +S"L'Education fait tout" +p76290 +sg25270 +S'Artist Information (' +p76291 +sg25273 +S'(artist after)' +p76292 +sg25275 +S'\n' +p76293 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e74.jpg' +p76294 +sg25267 +g27 +sa(dp76295 +g25267 +g27 +sg25268 +S'Wallpaper Border' +p76296 +sg25270 +S'John Garay' +p76297 +sa(dp76298 +g25267 +g27 +sg25268 +S'Wallpaper Border' +p76299 +sg25270 +S'John Garay' +p76300 +sa(dp76301 +g25267 +g27 +sg25268 +S'Wallpaper' +p76302 +sg25270 +S'Paul Farkas' +p76303 +sa(dp76304 +g25267 +g27 +sg25268 +S'Wallpaper' +p76305 +sg25270 +S'Mina Lowry' +p76306 +sa(dp76307 +g25267 +g27 +sg25268 +S'Wallpaper' +p76308 +sg25270 +S'Gilbert Sackerman' +p76309 +sa(dp76310 +g25267 +g27 +sg25268 +S'Wallpaper' +p76311 +sg25270 +S'Sidney Liswood' +p76312 +sa(dp76313 +g25267 +g27 +sg25268 +S'Wallpaper' +p76314 +sg25270 +S'Nicholas Acampora' +p76315 +sa(dp76316 +g25267 +g27 +sg25268 +S'Wallpaper Border' +p76317 +sg25270 +S'Walter Doran' +p76318 +sa(dp76319 +g25267 +g27 +sg25268 +S'Bandbox' +p76320 +sg25270 +S'Frank Fumagalli' +p76321 +sa(dp76322 +g25267 +g27 +sg25268 +S'Wallpaper Border' +p76323 +sg25270 +S'Paul Farkas' +p76324 +sa(dp76325 +g25268 +S"L'Education fait tout" +p76326 +sg25270 +S'Artist Information (' +p76327 +sg25273 +S'(artist after)' +p76328 +sg25275 +S'\n' +p76329 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e73.jpg' +p76330 +sg25267 +g27 +sa(dp76331 +g25267 +g27 +sg25268 +S'Wallpaper' +p76332 +sg25270 +S'A. Menendez' +p76333 +sa(dp76334 +g25267 +g27 +sg25268 +S'Wallpaper' +p76335 +sg25270 +S'Lee Hager' +p76336 +sa(dp76337 +g25267 +g27 +sg25268 +S'Wallpaper Border' +p76338 +sg25270 +S'George Robin' +p76339 +sa(dp76340 +g25267 +g27 +sg25268 +S'Wallpaper Border' +p76341 +sg25270 +S'Walter Doran' +p76342 +sa(dp76343 +g25267 +g27 +sg25268 +S'Wallpaper Border' +p76344 +sg25270 +S'Arsen Maralian' +p76345 +sa(dp76346 +g25267 +g27 +sg25268 +S'Deer Weather Vane' +p76347 +sg25270 +S'Salvatore Borrazzo' +p76348 +sa(dp76349 +g25267 +g27 +sg25268 +S'Deer Weather Vane' +p76350 +sg25270 +S'Salvatore Borrazzo' +p76351 +sa(dp76352 +g25267 +g27 +sg25268 +S'Water Nozzle' +p76353 +sg25270 +S'Marius Hansen' +p76354 +sa(dp76355 +g25267 +g27 +sg25268 +S'Dog Weather Vane' +p76356 +sg25270 +S'Gordon Sanborn' +p76357 +sa(dp76358 +g25267 +g27 +sg25268 +S'Weather Vane' +p76359 +sg25270 +S'Bernard Westmacott' +p76360 +sa(dp76361 +g25268 +S"L'heureuse f\xc3\xa9condit\xc3\xa9" +p76362 +sg25270 +S'Artist Information (' +p76363 +sg25273 +S'(artist after)' +p76364 +sg25275 +S'\n' +p76365 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e77.jpg' +p76366 +sg25267 +g27 +sa(dp76367 +g25267 +g27 +sg25268 +S'Cock Weather Vane' +p76368 +sg25270 +S'Joseph Stonefield' +p76369 +sa(dp76370 +g25267 +g27 +sg25268 +S'Weather Vane' +p76371 +sg25270 +S'Helen Alpiner Blumenstiel' +p76372 +sa(dp76373 +g25267 +g27 +sg25268 +S'Cock Weather Vane' +p76374 +sg25270 +S'Burrell' +p76375 +sa(dp76376 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b00.jpg' +p76377 +sg25268 +S'Weather Vane - Angel Gabriel' +p76378 +sg25270 +S'Salvatore Borrazzo' +p76379 +sa(dp76380 +g25267 +g27 +sg25268 +S'Horse Weather Vane' +p76381 +sg25270 +S'Carl Weiss' +p76382 +sa(dp76383 +g25267 +g27 +sg25268 +S'Fish Weather Vane' +p76384 +sg25270 +S'Frances Matsubara' +p76385 +sa(dp76386 +g25267 +g27 +sg25268 +S'Running Dog Weather Vane' +p76387 +sg25270 +S'Gordon Sanborn' +p76388 +sa(dp76389 +g25267 +g27 +sg25268 +S'Horse Weather Vane' +p76390 +sg25270 +S'Filippo Porreca' +p76391 +sa(dp76392 +g25267 +g27 +sg25268 +S'Bedspread' +p76393 +sg25270 +S'Mary Berner' +p76394 +sa(dp76395 +g25267 +g27 +sg25268 +S'Set of Crewel Embroidered Bed Curtains' +p76396 +sg25270 +S'John Oster' +p76397 +sa(dp76398 +g25268 +S'The Annunciation' +p76399 +sg25270 +S'Giannicola di Paolo' +p76400 +sg25273 +S'oil on panel' +p76401 +sg25275 +S'1510/1515' +p76402 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000810.jpg' +p76403 +sg25267 +g27 +sa(dp76404 +g25268 +S"L'innocence inspire la tendresse" +p76405 +sg25270 +S'Artist Information (' +p76406 +sg25273 +S'(artist after)' +p76407 +sg25275 +S'\n' +p76408 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009641.jpg' +p76409 +sg25267 +g27 +sa(dp76410 +g25267 +g27 +sg25268 +S'Patchwork and Applique Quilt' +p76411 +sg25270 +S'Irene Schaefer' +p76412 +sa(dp76413 +g25267 +g27 +sg25268 +S'Pieced Quilt' +p76414 +sg25270 +S'Paul Park' +p76415 +sa(dp76416 +g25267 +g27 +sg25268 +S'Homespun Coverlet' +p76417 +sg25270 +S'Cornelius Christoffels' +p76418 +sa(dp76419 +g25267 +g27 +sg25268 +S'Toast Rack' +p76420 +sg25270 +S'Bernard Westmacott' +p76421 +sa(dp76422 +g25267 +g27 +sg25268 +S'Tomahawk' +p76423 +sg25270 +S'George E. Rhone' +p76424 +sa(dp76425 +g25267 +g27 +sg25268 +S'Toaster' +p76426 +sg25270 +S'Roy Weber' +p76427 +sa(dp76428 +g25267 +g27 +sg25268 +S'Toy Horse' +p76429 +sg25270 +S'Mina Lowry' +p76430 +sa(dp76431 +g25267 +g27 +sg25268 +S'Toy Horse' +p76432 +sg25270 +S'Mina Lowry' +p76433 +sa(dp76434 +g25267 +g27 +sg25268 +S'Corn Husk Doll on Horse' +p76435 +sg25270 +S'Wilbur M Rice' +p76436 +sa(dp76437 +g25267 +g27 +sg25268 +S'Dancing Doll' +p76438 +sg25270 +S'Mina Lowry' +p76439 +sa(dp76440 +g25268 +S'La Bonne M\xc3\xa8re' +p76441 +sg25270 +S'Artist Information (' +p76442 +sg25273 +S'(artist after)' +p76443 +sg25275 +S'\n' +p76444 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096cd.jpg' +p76445 +sg25267 +g27 +sa(dp76446 +g25267 +g27 +sg25268 +S'Top (With Winding String)' +p76447 +sg25270 +S'Mina Lowry' +p76448 +sa(dp76449 +g25267 +g27 +sg25268 +S'Trivet' +p76450 +sg25270 +S'Joseph Stonefield' +p76451 +sa(dp76452 +g25267 +g27 +sg25268 +S'Trivet' +p76453 +sg25270 +S'Jack Staloff' +p76454 +sa(dp76455 +g25267 +g27 +sg25268 +S'Trivet' +p76456 +sg25270 +S'Benjamin Resnick' +p76457 +sa(dp76458 +g25267 +g27 +sg25268 +S'Trivet' +p76459 +sg25270 +S'Arsen Maralian' +p76460 +sa(dp76461 +g25267 +g27 +sg25268 +S'Trivet' +p76462 +sg25270 +S'Benjamin Resnick' +p76463 +sa(dp76464 +g25267 +g27 +sg25268 +S'Trivet' +p76465 +sg25270 +S'Holger Hansen' +p76466 +sa(dp76467 +g25267 +g27 +sg25268 +S'Trivet' +p76468 +sg25270 +S'Henry Granet' +p76469 +sa(dp76470 +g25267 +g27 +sg25268 +S'Trivet' +p76471 +sg25270 +S'Hans Korsch' +p76472 +sa(dp76473 +g25267 +g27 +sg25268 +S'Trivet' +p76474 +sg25270 +S"James O'Mara" +p76475 +sa(dp76476 +g25268 +S'La Bonne M\xc3\xa8re' +p76477 +sg25270 +S'Artist Information (' +p76478 +sg25273 +S'(artist after)' +p76479 +sg25275 +S'\n' +p76480 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096cc.jpg' +p76481 +sg25267 +g27 +sa(dp76482 +g25267 +g27 +sg25268 +S'Flatiron Holder' +p76483 +sg25270 +S'Holger Hansen' +p76484 +sa(dp76485 +g25267 +g27 +sg25268 +S'Flatiron Holder' +p76486 +sg25270 +S'Isidore Sovensky' +p76487 +sa(dp76488 +g25267 +g27 +sg25268 +S'Flatiron Holder' +p76489 +sg25270 +S'Benjamin Resnick' +p76490 +sa(dp76491 +g25267 +g27 +sg25268 +S'Trivet' +p76492 +sg25270 +S'Benjamin Resnick' +p76493 +sa(dp76494 +g25267 +g27 +sg25268 +S'Flatiron Holder' +p76495 +sg25270 +S'Bernard Westmacott' +p76496 +sa(dp76497 +g25267 +g27 +sg25268 +S'Flatiron Holder' +p76498 +sg25270 +S'Bernard Westmacott' +p76499 +sa(dp76500 +g25267 +g27 +sg25268 +S'Flatiron Holder' +p76501 +sg25270 +S'Karl Joubert' +p76502 +sa(dp76503 +g25267 +g27 +sg25268 +S'Trivet' +p76504 +sg25270 +S'Holger Hansen' +p76505 +sa(dp76506 +g25267 +g27 +sg25268 +S'Trivet' +p76507 +sg25270 +S'Bernard Westmacott' +p76508 +sa(dp76509 +g25267 +g27 +sg25268 +S'Trivet' +p76510 +sg25270 +S'American 20th Century' +p76511 +sa(dp76512 +g25268 +S'La famille du fermier' +p76513 +sg25270 +S'Artist Information (' +p76514 +sg25273 +S'(artist after)' +p76515 +sg25275 +S'\n' +p76516 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009732.jpg' +p76517 +sg25267 +g27 +sa(dp76518 +g25267 +g27 +sg25268 +S'Bandbox' +p76519 +sg25270 +S'Eleanor Ruelos' +p76520 +sa(dp76521 +g25267 +g27 +sg25268 +S'Wallpaper' +p76522 +sg25270 +S'Paul Farkas' +p76523 +sa(dp76524 +g25267 +g27 +sg25268 +S'Wallpaper' +p76525 +sg25270 +S'Walter Doran' +p76526 +sa(dp76527 +g25267 +g27 +sg25268 +S'Wallpaper' +p76528 +sg25270 +S'American 20th Century' +p76529 +sa(dp76530 +g25267 +g27 +sg25268 +S'Silver Beaker' +p76531 +sg25270 +S'Michael Fenga' +p76532 +sa(dp76533 +g25267 +g27 +sg25268 +S'Study of Cream Pitcher' +p76534 +sg25270 +S'Charlotte Winter' +p76535 +sa(dp76536 +g25267 +g27 +sg25268 +S'Tumbler' +p76537 +sg25270 +S'Michael Trekur' +p76538 +sa(dp76539 +g25267 +g27 +sg25268 +S'Tumbler' +p76540 +sg25270 +S'Michael Trekur' +p76541 +sa(dp76542 +g25267 +g27 +sg25268 +S'Beaker' +p76543 +sg25270 +S'Aaron Fastovsky' +p76544 +sa(dp76545 +g25267 +g27 +sg25268 +S'Beaker' +p76546 +sg25270 +S'Charlotte Winter' +p76547 +sa(dp76548 +g25268 +S'La famille du fermier' +p76549 +sg25270 +S'Artist Information (' +p76550 +sg25273 +S'(artist)' +p76551 +sg25275 +S'\n' +p76552 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009731.jpg' +p76553 +sg25267 +g27 +sa(dp76554 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p76555 +sg25270 +S'Amelia Tuccio' +p76556 +sa(dp76557 +g25267 +g27 +sg25268 +S'Silver Mug' +p76558 +sg25270 +S'Vincent Carano' +p76559 +sa(dp76560 +g25267 +g27 +sg25268 +S'Silver Mug' +p76561 +sg25270 +S'Isidore Steinberg' +p76562 +sa(dp76563 +g25267 +g27 +sg25268 +S'Silver Mug' +p76564 +sg25270 +S'Nicholas Zupa' +p76565 +sa(dp76566 +g25267 +g27 +sg25268 +S'Silver Mug' +p76567 +sg25270 +S'American 20th Century' +p76568 +sa(dp76569 +g25267 +g27 +sg25268 +S'Silver Mug' +p76570 +sg25270 +S'Nicholas Zupa' +p76571 +sa(dp76572 +g25267 +g27 +sg25268 +S'Silver Mug' +p76573 +sg25270 +S'Richard Schoene' +p76574 +sa(dp76575 +g25267 +g27 +sg25268 +S'Silver Cup' +p76576 +sg25270 +S'Isidore Steinberg' +p76577 +sa(dp76578 +g25267 +g27 +sg25268 +S'Silver Mug' +p76579 +sg25270 +S'Clayton Braun' +p76580 +sa(dp76581 +g25267 +g27 +sg25268 +S'Silver Mug' +p76582 +sg25270 +S'Walter Doran' +p76583 +sa(dp76584 +g25268 +S'La famille du fermier' +p76585 +sg25270 +S'Artist Information (' +p76586 +sg25273 +S'(artist)' +p76587 +sg25275 +S'\n' +p76588 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009733.jpg' +p76589 +sg25267 +g27 +sa(dp76590 +g25267 +g27 +sg25268 +S'Silver Mug' +p76591 +sg25270 +S'Vincent Carano' +p76592 +sa(dp76593 +g25267 +g27 +sg25268 +S'Silver Cup' +p76594 +sg25270 +S'Eugene La Foret' +p76595 +sa(dp76596 +g25267 +g27 +sg25268 +S'Silver Teapot' +p76597 +sg25270 +S'Vincent Carano' +p76598 +sa(dp76599 +g25267 +g27 +sg25268 +S'Silver Sugar Tongs' +p76600 +sg25270 +S'Anthony Zuccarello' +p76601 +sa(dp76602 +g25267 +g27 +sg25268 +S'Silver Sugar Tongs' +p76603 +sg25270 +S'Kalamian Walton' +p76604 +sa(dp76605 +g25267 +g27 +sg25268 +S'Silver Teapot' +p76606 +sg25270 +S'Amelia Tuccio' +p76607 +sa(dp76608 +g25267 +g27 +sg25268 +S'Silver Teapot' +p76609 +sg25270 +S'Aaron Fastovsky' +p76610 +sa(dp76611 +g25267 +g27 +sg25268 +S'Silver Cream Pitcher' +p76612 +sg25270 +S'Hans Westendorff' +p76613 +sa(dp76614 +g25267 +g27 +sg25268 +S'Silver Pitcher' +p76615 +sg25270 +S'American 20th Century' +p76616 +sa(dp76617 +g25267 +g27 +sg25268 +S'Silver Teapot' +p76618 +sg25270 +S'Jules Lefevere' +p76619 +sa(dp76620 +g25268 +S'The Little Park (Le petit parc)' +p76621 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p76622 +sg25273 +S'etching' +p76623 +sg25275 +S'c. 1763' +p76624 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d26.jpg' +p76625 +sg25267 +g27 +sa(dp76626 +g25267 +g27 +sg25268 +S'Silver Tankard' +p76627 +sg25270 +S'Irene Malawicz' +p76628 +sa(dp76629 +g25267 +g27 +sg25268 +S'Silver Spout Cup' +p76630 +sg25270 +S'Holger Hansen' +p76631 +sa(dp76632 +g25267 +g27 +sg25268 +S'Silver Salt Cellar' +p76633 +sg25270 +S'Sidney Liswood' +p76634 +sa(dp76635 +g25267 +g27 +sg25268 +S'Silver Sugar Tongs' +p76636 +sg25270 +S'American 20th Century' +p76637 +sa(dp76638 +g25267 +g27 +sg25268 +S'Silver Sugar Tongs' +p76639 +sg25270 +S'Kalamian Walton' +p76640 +sa(dp76641 +g25267 +g27 +sg25268 +S'Silver Salt Cellar' +p76642 +sg25270 +S'Hans Westendorff' +p76643 +sa(dp76644 +g25267 +g27 +sg25268 +S'Silver Salt Cellar' +p76645 +sg25270 +S'Amelia Tuccio' +p76646 +sa(dp76647 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p76648 +sg25270 +S'Charles Cullen' +p76649 +sa(dp76650 +g25267 +g27 +sg25268 +S'Silver Sugar Bowl' +p76651 +sg25270 +S'Matthew Mangiacotti' +p76652 +sa(dp76653 +g25267 +g27 +sg25268 +S'Silver Sugar Tongs' +p76654 +sg25270 +S'Mary Berner' +p76655 +sa(dp76656 +g25268 +S'The Tax Collectors (Les traitants)' +p76657 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p76658 +sg25273 +S'etching' +p76659 +sg25275 +S'1778' +p76660 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f69.jpg' +p76661 +sg25267 +g27 +sa(dp76662 +g25267 +g27 +sg25268 +S'Silver Caster' +p76663 +sg25270 +S'Amelia Tuccio' +p76664 +sa(dp76665 +g25267 +g27 +sg25268 +S'Silver Salver' +p76666 +sg25270 +S'Vincent Carano' +p76667 +sa(dp76668 +g25267 +g27 +sg25268 +S'Silver Salt Trencher' +p76669 +sg25270 +S'Amelia Tuccio' +p76670 +sa(dp76671 +g25267 +g27 +sg25268 +S'Silver Tea Caddy' +p76672 +sg25270 +S'Hester Duany' +p76673 +sa(dp76674 +g25267 +g27 +sg25268 +S'Silver Caster' +p76675 +sg25270 +S'Amelia Tuccio' +p76676 +sa(dp76677 +g25267 +g27 +sg25268 +S'Silver Salt Cellar' +p76678 +sg25270 +S'Aaron Fastovsky' +p76679 +sa(dp76680 +g25267 +g27 +sg25268 +S'Silver Salt Trencher' +p76681 +sg25270 +S'Amelia Tuccio' +p76682 +sa(dp76683 +g25267 +g27 +sg25268 +S'Choir Rail' +p76684 +sg25270 +S'Albert Pratt' +p76685 +sa(dp76686 +g25267 +g27 +sg25268 +S'Lamp' +p76687 +sg25270 +S'Arsen Maralian' +p76688 +sa(dp76689 +g25267 +g27 +sg25268 +S'Lamp' +p76690 +sg25270 +S'John Fisk' +p76691 +sa(dp76692 +g25268 +S'Marie-Antoinette of France' +p76693 +sg25270 +S'Artist Information (' +p76694 +sg25273 +S'(artist after)' +p76695 +sg25275 +S'\n' +p76696 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f59.jpg' +p76697 +sg25267 +g27 +sa(dp76698 +g25267 +g27 +sg25268 +S'Sperm Oil Lamp' +p76699 +sg25270 +S'John Dana' +p76700 +sa(dp76701 +g25267 +g27 +sg25268 +S'Lamp with Shade' +p76702 +sg25270 +S'Gertrude Lemberg' +p76703 +sa(dp76704 +g25267 +g27 +sg25268 +S'Lamp' +p76705 +sg25270 +S'John Fisk' +p76706 +sa(dp76707 +g25267 +g27 +sg25268 +S"Bull's Eye Lamp" +p76708 +sg25270 +S'Charles Charon' +p76709 +sa(dp76710 +g25267 +g27 +sg25268 +S'Pewter Lamp' +p76711 +sg25270 +S'Eugene Barrell' +p76712 +sa(dp76713 +g25267 +g27 +sg25268 +S'Lamp' +p76714 +sg25270 +S'John Tarantino' +p76715 +sa(dp76716 +g25267 +g27 +sg25268 +S"Bull's Eye Lamp" +p76717 +sg25270 +S'Charlotte Winter' +p76718 +sa(dp76719 +g25267 +g27 +sg25268 +S'Lamp' +p76720 +sg25270 +S'Matthew Mangiacotti' +p76721 +sa(dp76722 +g25267 +g27 +sg25268 +S'Lamp' +p76723 +sg25270 +S'Joseph Leboit' +p76724 +sa(dp76725 +g25267 +g27 +sg25268 +S'Lamp' +p76726 +sg25270 +S'Eugene Barrell' +p76727 +sa(dp76728 +g25268 +S'La Complaisance maternelle' +p76729 +sg25270 +S'Artist Information (' +p76730 +sg25273 +S'(artist after)' +p76731 +sg25275 +S'\n' +p76732 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e8a.jpg' +p76733 +sg25267 +g27 +sa(dp76734 +g25267 +g27 +sg25268 +S'Lantern' +p76735 +sg25270 +S'Mildred Ford' +p76736 +sa(dp76737 +g25267 +g27 +sg25268 +S'Lantern' +p76738 +sg25270 +S'Ruth Buker' +p76739 +sa(dp76740 +g25267 +g27 +sg25268 +S'Lorgnette' +p76741 +sg25270 +S'Sylvia De Zon' +p76742 +sa(dp76743 +g25267 +g27 +sg25268 +S'Crockery Mold' +p76744 +sg25270 +S'Howard H. Sherman' +p76745 +sa(dp76746 +g25267 +g27 +sg25268 +S'Jelly Mold' +p76747 +sg25270 +S'Anna Aloisi' +p76748 +sa(dp76749 +g25267 +g27 +sg25268 +S'Piano' +p76750 +sg25270 +S'George Loughridge' +p76751 +sa(dp76752 +g25267 +g27 +sg25268 +S'Nutcracker - Dog' +p76753 +sg25270 +S'Gerald Transpota' +p76754 +sa(dp76755 +g25267 +g27 +sg25268 +S'Shaker Scales' +p76756 +sg25270 +S'George V. Vezolles' +p76757 +sa(dp76758 +g25267 +g27 +sg25268 +S'Pewter Pitcher' +p76759 +sg25270 +S'Henry Granet' +p76760 +sa(dp76761 +g25267 +g27 +sg25268 +S'Porringer' +p76762 +sg25270 +S'Joseph Wolins' +p76763 +sa(dp76764 +g25268 +S'Allegory of Virtue and Vice' +p76765 +sg25270 +S'Albrecht Dürer' +p76766 +sg25273 +S'oil on panel' +p76767 +sg25275 +S'1505' +p76768 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002afb.jpg' +p76769 +sg25267 +S"This small panel originally functioned as a cover for a portrait. Covers not only protected the painting underneath, but allowed the artist to expand symbolically on particular facets of the patron's personality and concerns. This allegorical scene covered a portrait, now in Naples, of Bernardo de' Rossi, bishop of Trevisio.\n Rossi had only recently survived an assassination attempt when Lotto painted him. This scene presents a view of the bishop's virtue and perseverance—and the ultimate award available to those who choose a difficult path over more immediate and worldly gratifications. The panel is clearly divided in two halves by the central tree. On the right side, a drunken satyr peers into a wine pitcher, the intoxicating liquid already spilled around him. His surroundings are lush and green, but farther in the distance a storm rises and a ship sinks below the waves. On the other side, where we find Rossi's coat-of-arms leaning against a tree, an industrious child busies himself with tools. Here the land is parched and rocky, but in the distance the same child, now with an angel's wings, climbs a hill toward a brilliant radiance. Even\r\nthe tree sprouts with new life, but on the left side only. It may refer to Job 14:7: "For there is hope of a tree, if it be cut down, that it\r\nwill sprout again." The bishop, like Job beset by troubles, would\r\nalso flourish through steadfast virtue.\n The clarity of Lotto's landscape has little to do with the soft dreaminess recently introduced by Giorgione. It shows instead the continuing influence of the kind of precision found in northern art, especially that of the German \n " +p76770 +sa(dp76771 +g25268 +S'La F\xc3\xa9licit\xc3\xa9 villageoise' +p76772 +sg25270 +S'Artist Information (' +p76773 +sg25273 +S'(artist after)' +p76774 +sg25275 +S'\n' +p76775 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e8e.jpg' +p76776 +sg25267 +g27 +sa(dp76777 +g25267 +g27 +sg25268 +S'Porringer' +p76778 +sg25270 +S'Eugene Barrell' +p76779 +sa(dp76780 +g25267 +g27 +sg25268 +S'Spoon' +p76781 +sg25270 +S'Holger Hansen' +p76782 +sa(dp76783 +g25267 +g27 +sg25268 +S'Funnel' +p76784 +sg25270 +S'Charles Garjian' +p76785 +sa(dp76786 +g25267 +g27 +sg25268 +S'Pitcher' +p76787 +sg25270 +S'Francis Borelli' +p76788 +sa(dp76789 +g25267 +g27 +sg25268 +S'Inkwell' +p76790 +sg25270 +S'Salvatore Borrazzo' +p76791 +sa(dp76792 +g25267 +g27 +sg25268 +S'Pewter Mug' +p76793 +sg25270 +S'Charlotte Winter' +p76794 +sa(dp76795 +g25267 +g27 +sg25268 +S'Pewter Box' +p76796 +sg25270 +S'Harry Goodman' +p76797 +sa(dp76798 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p76799 +sg25270 +S'Charles Cullen' +p76800 +sa(dp76801 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p76802 +sg25270 +S'Charles Cullen' +p76803 +sa(dp76804 +g25267 +g27 +sg25268 +S'Pewter Teapot' +p76805 +sg25270 +S'Charles Cullen' +p76806 +sa(dp76807 +g25268 +S'Lison dormait' +p76808 +sg25270 +S'Artist Information (' +p76809 +sg25273 +S'(artist after)' +p76810 +sg25275 +S'\n' +p76811 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009642.jpg' +p76812 +sg25267 +g27 +sa(dp76813 +g25267 +g27 +sg25268 +S'Pewter Commode Form' +p76814 +sg25270 +S'Charles Garjian' +p76815 +sa(dp76816 +g25267 +g27 +sg25268 +S'Pewter Commode Form' +p76817 +sg25270 +S'Charles Garjian' +p76818 +sa(dp76819 +g25267 +g27 +sg25268 +S'Pewter Porringer' +p76820 +sg25270 +S'Charles Cullen' +p76821 +sa(dp76822 +g25267 +g27 +sg25268 +S'Pewter Nursing Bottle' +p76823 +sg25270 +S'Charles Cullen' +p76824 +sa(dp76825 +g25267 +g27 +sg25268 +S'Powderhorn' +p76826 +sg25270 +S'William McAuley' +p76827 +sa(dp76828 +g25267 +g27 +sg25268 +S'Sewing Bird' +p76829 +sg25270 +S'Charlotte Winter' +p76830 +sa(dp76831 +g25267 +g27 +sg25268 +S'Silver Beaker' +p76832 +sg25270 +S'Vincent Carano' +p76833 +sa(dp76834 +g25267 +g27 +sg25268 +S'Silver Wine Tumbler' +p76835 +sg25270 +S'Vincent Carano' +p76836 +sa(dp76837 +g25267 +g27 +sg25268 +S'Silver Beaker' +p76838 +sg25270 +S'Karl Joubert' +p76839 +sa(dp76840 +g25267 +g27 +sg25268 +S'Silver Beaker' +p76841 +sg25270 +S'Hester Duany' +p76842 +sa(dp76843 +g25268 +S'Le Petit Jour' +p76844 +sg25270 +S'Artist Information (' +p76845 +sg25273 +S'(artist after)' +p76846 +sg25275 +S'\n' +p76847 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a00061f5.jpg' +p76848 +sg25267 +g27 +sa(dp76849 +g25267 +g27 +sg25268 +S'Garden Bench' +p76850 +sg25270 +S'John B. Moll' +p76851 +sa(dp76852 +g25267 +g27 +sg25268 +S'Buttons' +p76853 +sg25270 +S'Mary Fitzgerald' +p76854 +sa(dp76855 +g25267 +g27 +sg25268 +S'Ring' +p76856 +sg25270 +S'Michael Fenga' +p76857 +sa(dp76858 +g25267 +g27 +sg25268 +S'Candlestick' +p76859 +sg25270 +S'John Tarantino' +p76860 +sa(dp76861 +g25267 +g27 +sg25268 +S'Jewelry' +p76862 +sg25270 +S'Gladys Cook' +p76863 +sa(dp76864 +g25267 +g27 +sg25268 +S'Cameo Brooch' +p76865 +sg25270 +S'Grace Halpin' +p76866 +sa(dp76867 +g25267 +g27 +sg25268 +S'Neck Buckle' +p76868 +sg25270 +S'Charles Criswell' +p76869 +sa(dp76870 +g25267 +g27 +sg25268 +S'Gold Brooch' +p76871 +sg25270 +S'Isidore Steinberg' +p76872 +sa(dp76873 +g25267 +g27 +sg25268 +S'Shoe Buckle' +p76874 +sg25270 +S'Sylvia De Zon' +p76875 +sa(dp76876 +g25267 +g27 +sg25268 +S'Brooch' +p76877 +sg25270 +S'Isidore Steinberg' +p76878 +sa(dp76879 +g25268 +S'Le Petit Jour' +p76880 +sg25270 +S'Artist Information (' +p76881 +sg25273 +S'(artist after)' +p76882 +sg25275 +S'\n' +p76883 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e8b.jpg' +p76884 +sg25267 +g27 +sa(dp76885 +g25267 +g27 +sg25268 +S'Shoe Buckle' +p76886 +sg25270 +S'Margaret Concha' +p76887 +sa(dp76888 +g25267 +g27 +sg25268 +S'Buttons' +p76889 +sg25270 +S'Charlotte Winter' +p76890 +sa(dp76891 +g25267 +g27 +sg25268 +S'Brooch and Earring' +p76892 +sg25270 +S'Kurt Melzer' +p76893 +sa(dp76894 +g25267 +g27 +sg25268 +S'Ring' +p76895 +sg25270 +S'John H. Tercuzzi' +p76896 +sa(dp76897 +g25267 +g27 +sg25268 +S'Earring' +p76898 +sg25270 +S'Vincent Burzy' +p76899 +sa(dp76900 +g25267 +g27 +sg25268 +S'Jewelry Button' +p76901 +sg25270 +S'John H. Tercuzzi' +p76902 +sa(dp76903 +g25267 +g27 +sg25268 +S'Bracelet' +p76904 +sg25270 +S'Anne Nemtzoff' +p76905 +sa(dp76906 +g25267 +g27 +sg25268 +S'Jewelry' +p76907 +sg25270 +S'Kalamian Walton' +p76908 +sa(dp76909 +g25267 +g27 +sg25268 +S'Hair Ornament' +p76910 +sg25270 +S'American 20th Century' +p76911 +sa(dp76912 +g25267 +g27 +sg25268 +S'Tea Kettle' +p76913 +sg25270 +S'Beulah Bradleigh' +p76914 +sa(dp76915 +g25268 +S'La toilette' +p76916 +sg25270 +S'Sigmund Freudenberger' +p76917 +sg25273 +S'etching' +p76918 +sg25275 +S'unknown date\n' +p76919 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef97.jpg' +p76920 +sg25267 +g27 +sa(dp76921 +g25267 +g27 +sg25268 +S'Candle Holder' +p76922 +sg25270 +S'A. Regli' +p76923 +sa(dp76924 +g25267 +g27 +sg25268 +S'Candlestick' +p76925 +sg25270 +S'John Fisk' +p76926 +sa(dp76927 +g25267 +g27 +sg25268 +S'Candlestick' +p76928 +sg25270 +S'Philip Johnson' +p76929 +sa(dp76930 +g25267 +g27 +sg25268 +S'Candlestick' +p76931 +sg25270 +S'Jules Lefevere' +p76932 +sa(dp76933 +g25267 +g27 +sg25268 +S'Lantern' +p76934 +sg25270 +S'Benjamin Resnick' +p76935 +sa(dp76936 +g25267 +g27 +sg25268 +S'Candlestick' +p76937 +sg25270 +S'Jack Staloff' +p76938 +sa(dp76939 +g25267 +g27 +sg25268 +S'Candlestick' +p76940 +sg25270 +S'Mina Lowry' +p76941 +sa(dp76942 +g25267 +g27 +sg25268 +S'Snuffer' +p76943 +sg25270 +S'Michael Fenga' +p76944 +sa(dp76945 +g25267 +g27 +sg25268 +S'Pole Screen and Candlestand' +p76946 +sg25270 +S'Elizabeth Curtis' +p76947 +sa(dp76948 +g25267 +g27 +sg25268 +S'Candlestick' +p76949 +sg25270 +S'Artist Information (' +p76950 +sa(dp76951 +g25268 +S'Marie-Antoinette' +p76952 +sg25270 +S'Artist Information (' +p76953 +sg25273 +S'(artist after)' +p76954 +sg25275 +S'\n' +p76955 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d19.jpg' +p76956 +sg25267 +g27 +sa(dp76957 +g25267 +g27 +sg25268 +S'Candle Socket' +p76958 +sg25270 +S'Florence Stevenson' +p76959 +sa(dp76960 +g25267 +g27 +sg25268 +S'Candlestick' +p76961 +sg25270 +S'Philip Johnson' +p76962 +sa(dp76963 +g25267 +g27 +sg25268 +S'Candlestick' +p76964 +sg25270 +S'Janet Riza' +p76965 +sa(dp76966 +g25267 +g27 +sg25268 +S'Candle Holder' +p76967 +sg25270 +S'Bernard Gussow' +p76968 +sa(dp76969 +g25267 +g27 +sg25268 +S'Lamp' +p76970 +sg25270 +S'Anna Aloisi' +p76971 +sa(dp76972 +g25267 +g27 +sg25268 +S'Lamp' +p76973 +sg25270 +S'Arsen Maralian' +p76974 +sa(dp76975 +g25267 +g27 +sg25268 +S'Lamp' +p76976 +sg25270 +S'Irving D. Genin' +p76977 +sa(dp76978 +g25267 +g27 +sg25268 +S'Lamp' +p76979 +sg25270 +S'Arsen Maralian' +p76980 +sa(dp76981 +g25267 +g27 +sg25268 +S'Large Pitcher' +p76982 +sg25270 +S'S. Brodsky' +p76983 +sa(dp76984 +g25267 +g27 +sg25268 +S'Pitcher' +p76985 +sg25270 +S'John Fisk' +p76986 +sa(dp76987 +g25268 +S'Charlotte Corday' +p76988 +sg25270 +S'Artist Information (' +p76989 +sg25273 +S'(artist after)' +p76990 +sg25275 +S'\n' +p76991 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f1a.jpg' +p76992 +sg25267 +g27 +sa(dp76993 +g25267 +g27 +sg25268 +S'Blown Glass' +p76994 +sg25270 +S'Alvin Shiren' +p76995 +sa(dp76996 +g25267 +g27 +sg25268 +S'Blown Glass' +p76997 +sg25270 +S'Anna Aloisi' +p76998 +sa(dp76999 +g25267 +g27 +sg25268 +S'Blown Glass - Pitcher' +p77000 +sg25270 +S'Vincent Burzy' +p77001 +sa(dp77002 +g25267 +g27 +sg25268 +S'Blown Glass - Bottle' +p77003 +sg25270 +S'John Fisk' +p77004 +sa(dp77005 +g25267 +g27 +sg25268 +S'Blown Glass - Salt Cellar' +p77006 +sg25270 +S'John Fisk' +p77007 +sa(dp77008 +g25267 +g27 +sg25268 +S'Blown Glass' +p77009 +sg25270 +S'Anna Aloisi' +p77010 +sa(dp77011 +g25267 +g27 +sg25268 +S'Blown Glass' +p77012 +sg25270 +S'Frank Fumagalli' +p77013 +sa(dp77014 +g25267 +g27 +sg25268 +S'Blown Glass' +p77015 +sg25270 +S'Alvin Shiren' +p77016 +sa(dp77017 +g25267 +g27 +sg25268 +S'Toddy Glass' +p77018 +sg25270 +S'Minnetta Good' +p77019 +sa(dp77020 +g25267 +g27 +sg25268 +S'Blown Glass' +p77021 +sg25270 +S'Janet Riza' +p77022 +sa(dp77023 +g25268 +S'Le triomphe de Minette' +p77024 +sg25270 +S'Artist Information (' +p77025 +sg25273 +S'(artist after)' +p77026 +sg25275 +S'\n' +p77027 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009750.jpg' +p77028 +sg25267 +g27 +sa(dp77029 +g25267 +g27 +sg25268 +S'Blown Glass' +p77030 +sg25270 +S'American 20th Century' +p77031 +sa(dp77032 +g25267 +g27 +sg25268 +S'Blown Glass - Pitcher' +p77033 +sg25270 +S'Alvin Shiren' +p77034 +sa(dp77035 +g25267 +g27 +sg25268 +S'Blown Glass - Pitcher' +p77036 +sg25270 +S'Frank Fumagalli' +p77037 +sa(dp77038 +g25267 +g27 +sg25268 +S'Inkwell' +p77039 +sg25270 +S'Frank Fumagalli' +p77040 +sa(dp77041 +g25267 +g27 +sg25268 +S'Finger Bowl' +p77042 +sg25270 +S'John Tarantino' +p77043 +sa(dp77044 +g25267 +g27 +sg25268 +S'Candlestick' +p77045 +sg25270 +S'John Dana' +p77046 +sa(dp77047 +g25267 +g27 +sg25268 +S'Candlestick' +p77048 +sg25270 +S'John Tarantino' +p77049 +sa(dp77050 +g25267 +g27 +sg25268 +S'Salt Cellar' +p77051 +sg25270 +S'John Tarantino' +p77052 +sa(dp77053 +g25267 +g27 +sg25268 +S'Handle' +p77054 +sg25270 +S'John Garay' +p77055 +sa(dp77056 +g25267 +g27 +sg25268 +S'Handle' +p77057 +sg25270 +S'Bernard Westmacott' +p77058 +sa(dp77059 +g25268 +S'Le concert' +p77060 +sg25270 +S'Artist Information (' +p77061 +sg25273 +S'(artist after)' +p77062 +sg25275 +S'\n' +p77063 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009694.jpg' +p77064 +sg25267 +g27 +sa(dp77065 +g25267 +g27 +sg25268 +S'Door Handle with Thumb Press' +p77066 +sg25270 +S'Jack Staloff' +p77067 +sa(dp77068 +g25267 +g27 +sg25268 +S'Three Door Handles' +p77069 +sg25270 +S'Hans Korsch' +p77070 +sa(dp77071 +g25267 +g27 +sg25268 +S'Three Door Handles' +p77072 +sg25270 +S'Hans Korsch' +p77073 +sa(dp77074 +g25267 +g27 +sg25268 +S'Hasp' +p77075 +sg25270 +S'Geoffrey Holt' +p77076 +sa(dp77077 +g25267 +g27 +sg25268 +S'Latch' +p77078 +sg25270 +S'Geoffrey Holt' +p77079 +sa(dp77080 +g25267 +g27 +sg25268 +S'Hasps' +p77081 +sg25270 +S'Broda' +p77082 +sa(dp77083 +g25267 +g27 +sg25268 +S'Hinge' +p77084 +sg25270 +S'Joseph Stonefield' +p77085 +sa(dp77086 +g25267 +g27 +sg25268 +S'Hinge' +p77087 +sg25270 +S'Alexander Berth' +p77088 +sa(dp77089 +g25267 +g27 +sg25268 +S'Hitching Post' +p77090 +sg25270 +S'Robert W.R. Taylor' +p77091 +sa(dp77092 +g25267 +g27 +sg25268 +S'Hitching Post Finial' +p77093 +sg25270 +S'Mina Lowry' +p77094 +sa(dp77095 +g25268 +S'La cruche cassee' +p77096 +sg25270 +S'Artist Information (' +p77097 +sg25273 +S'(artist after)' +p77098 +sg25275 +S'\n' +p77099 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000972f.jpg' +p77100 +sg25267 +g27 +sa(dp77101 +g25267 +g27 +sg25268 +S'Wetting Cup' +p77102 +sg25270 +S'Alfred Goldstein' +p77103 +sa(dp77104 +g25267 +g27 +sg25268 +S'Side Saddle - California Syle' +p77105 +sg25270 +S'Harry Mann Waddell' +p77106 +sa(dp77107 +g25267 +g27 +sg25268 +S'Side Saddle - California Syle' +p77108 +sg25270 +S'Harry Mann Waddell' +p77109 +sa(dp77110 +g25267 +g27 +sg25268 +S'Side Saddle - California Syle' +p77111 +sg25270 +S'Harry Mann Waddell' +p77112 +sa(dp77113 +g25267 +g27 +sg25268 +S'Stand for Baptismal Font' +p77114 +sg25270 +S'Raymond E. Noble' +p77115 +sa(dp77116 +g25267 +g27 +sg25268 +S'Baptismal Font' +p77117 +sg25270 +S'William Hoffman' +p77118 +sa(dp77119 +g25267 +g27 +sg25268 +S'Wall Bracket' +p77120 +sg25270 +S'Bill Bowen' +p77121 +sa(dp77122 +g25267 +g27 +sg25268 +S'Candlestick' +p77123 +sg25270 +S'William Kieckhofel' +p77124 +sa(dp77125 +g25267 +g27 +sg25268 +S'Stand for Baptismal Font' +p77126 +sg25270 +S'Raymond E. Noble' +p77127 +sa(dp77128 +g25267 +g27 +sg25268 +S'Horse Hair Cinch' +p77129 +sg25270 +S'Harry Mann Waddell' +p77130 +sa(dp77131 +g25268 +S'La laitiere' +p77132 +sg25270 +S'Artist Information (' +p77133 +sg25273 +S'(artist after)' +p77134 +sg25275 +S'\n' +p77135 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009727.jpg' +p77136 +sg25267 +g27 +sa(dp77137 +g25267 +g27 +sg25268 +S'Stirrup' +p77138 +sg25270 +S'Gerald Transpota' +p77139 +sa(dp77140 +g25267 +g27 +sg25268 +S'Mission Doors' +p77141 +sg25270 +S'Warren W. Lemmon' +p77142 +sa(dp77143 +g25267 +g27 +sg25268 +S'Keystone' +p77144 +sg25270 +S'N.H. Yeckley' +p77145 +sa(dp77146 +g25267 +g27 +sg25268 +S'Doorway and Door' +p77147 +sg25270 +S'Albert Pratt' +p77148 +sa(dp77149 +g25267 +g27 +sg25268 +S'Wall Painting' +p77150 +sg25270 +S'Dayton Brown' +p77151 +sa(dp77152 +g25267 +g27 +sg25268 +S'Wall Painting' +p77153 +sg25270 +S'Robert W.R. Taylor' +p77154 +sa(dp77155 +g25267 +g27 +sg25268 +S'Wall Painting' +p77156 +sg25270 +S'Robert W.R. Taylor' +p77157 +sa(dp77158 +g25267 +g27 +sg25268 +S'Wall Painting and Baptismal Niche' +p77159 +sg25270 +S'Frank C. Barks' +p77160 +sa(dp77161 +g25267 +g27 +sg25268 +S'Wall Painting and Baptismal Niche' +p77162 +sg25270 +S'Cornelius Christoffels' +p77163 +sa(dp77164 +g25267 +g27 +sg25268 +S'Cascarone' +p77165 +sg25270 +S'Ann Gene Buckley' +p77166 +sa(dp77167 +g25268 +S"La premiere lecon d'amour" +p77168 +sg25270 +S'Artist Information (' +p77169 +sg25273 +S'(artist after)' +p77170 +sg25275 +S'\n' +p77171 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009752.jpg' +p77172 +sg25267 +g27 +sa(dp77173 +g25267 +g27 +sg25268 +S'Restoration Drawing' +p77174 +sg25270 +S'Robert W.R. Taylor' +p77175 +sa(dp77176 +g25267 +g27 +sg25268 +S'Restoration Drawing' +p77177 +sg25270 +S'Robert W.R. Taylor' +p77178 +sa(dp77179 +g25267 +g27 +sg25268 +S'Main Doorway and Arch' +p77180 +sg25270 +S'Robert W.R. Taylor' +p77181 +sa(dp77182 +g25267 +g27 +sg25268 +S'Wall Painting - Pineapple Motif' +p77183 +sg25270 +S'W.J. Goodacre' +p77184 +sa(dp77185 +g25267 +g27 +sg25268 +S'Doorway and Doors' +p77186 +sg25270 +S'A. Regli' +p77187 +sa(dp77188 +g25267 +g27 +sg25268 +S'Spinning Wheel' +p77189 +sg25270 +S'Eugene Barrell' +p77190 +sa(dp77191 +g25267 +g27 +sg25268 +S'Tavern Sign' +p77192 +sg25270 +S'Robert W.R. Taylor' +p77193 +sa(dp77194 +g25267 +g27 +sg25268 +S'Bag' +p77195 +sg25270 +S'Ann Gene Buckley' +p77196 +sa(dp77197 +g25267 +g27 +sg25268 +S'Texile' +p77198 +sg25270 +S'George Loughridge' +p77199 +sa(dp77200 +g25267 +g27 +sg25268 +S'Coverlet' +p77201 +sg25270 +S'William Hoffman' +p77202 +sa(dp77203 +g25268 +S'La philosophie endormie' +p77204 +sg25270 +S'Artist Information (' +p77205 +sg25273 +S'(artist after)' +p77206 +sg25275 +S'\n' +p77207 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000973a.jpg' +p77208 +sg25267 +g27 +sa(dp77209 +g25267 +g27 +sg25268 +S'Burse and Chalice Veil' +p77210 +sg25270 +S'Syrena Swanson' +p77211 +sa(dp77212 +g25267 +g27 +sg25268 +S'Patchwork and Applique Quilt' +p77213 +sg25270 +S'American 20th Century' +p77214 +sa(dp77215 +g25267 +g27 +sg25268 +S'Autograph Quilt' +p77216 +sg25270 +S'Artist Information (' +p77217 +sa(dp77218 +g25267 +g27 +sg25268 +S'Autograph Quilt' +p77219 +sg25270 +S'Artist Information (' +p77220 +sa(dp77221 +g25267 +g27 +sg25268 +S'Skirt Design' +p77222 +sg25270 +S'Ann Gene Buckley' +p77223 +sa(dp77224 +g25267 +g27 +sg25268 +S'Quilt Square' +p77225 +sg25270 +S'Ralph N. Morgan' +p77226 +sa(dp77227 +g25267 +g27 +sg25268 +S'Coverlet' +p77228 +sg25270 +S'William Hoffman' +p77229 +sa(dp77230 +g25267 +g27 +sg25268 +S'Bell' +p77231 +sg25270 +S'William Kieckhofel' +p77232 +sa(dp77233 +g25267 +g27 +sg25268 +S'Elementary School Bell' +p77234 +sg25270 +S'Gerald Transpota' +p77235 +sa(dp77236 +g25267 +g27 +sg25268 +S'Locomotive Bell' +p77237 +sg25270 +S'Georgina King' +p77238 +sa(dp77239 +g25268 +S'Le tendre desir' +p77240 +sg25270 +S'Artist Information (' +p77241 +sg25273 +S'(artist after)' +p77242 +sg25275 +S'\n' +p77243 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee17.jpg' +p77244 +sg25267 +g27 +sa(dp77245 +g25267 +g27 +sg25268 +S'Church Bell' +p77246 +sg25270 +S'L. B. Hartmann' +p77247 +sa(dp77248 +g25267 +g27 +sg25268 +S'Locomotive Bell' +p77249 +sg25270 +S'L. B. Hartmann' +p77250 +sa(dp77251 +g25267 +g27 +sg25268 +S'Locomotive Bell' +p77252 +sg25270 +S'Ruth Buker' +p77253 +sa(dp77254 +g25267 +g27 +sg25268 +S'Wooden Bell' +p77255 +sg25270 +S'Dayton Brown' +p77256 +sa(dp77257 +g25267 +g27 +sg25268 +S"Town Crier's Bell" +p77258 +sg25270 +S'Raymond E. Noble' +p77259 +sa(dp77260 +g25267 +g27 +sg25268 +S'Church Bell' +p77261 +sg25270 +S'Edward Albritton' +p77262 +sa(dp77263 +g25267 +g27 +sg25268 +S'Street Car Bell' +p77264 +sg25270 +S'L. B. Hartmann' +p77265 +sa(dp77266 +g25267 +g27 +sg25268 +S'Church Bell' +p77267 +sg25270 +S'American 20th Century' +p77268 +sa(dp77269 +g25267 +g27 +sg25268 +S'Church Bell' +p77270 +sg25270 +S'Edward Albritton' +p77271 +sa(dp77272 +g25267 +g27 +sg25268 +S'Dinner Bell' +p77273 +sg25270 +S'American 20th Century' +p77274 +sa(dp77275 +g25268 +S'La voluptueuse' +p77276 +sg25270 +S'Artist Information (' +p77277 +sg25273 +S'(artist after)' +p77278 +sg25275 +S'\n' +p77279 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f77.jpg' +p77280 +sg25267 +g27 +sa(dp77281 +g25267 +g27 +sg25268 +S'Wooden Bench' +p77282 +sg25270 +S'Dana Bartlett' +p77283 +sa(dp77284 +g25267 +g27 +sg25268 +S'Bench' +p77285 +sg25270 +S'Dana Bartlett' +p77286 +sa(dp77287 +g25267 +g27 +sg25268 +S'Mission Bench' +p77288 +sg25270 +S'Edward Jewett' +p77289 +sa(dp77290 +g25267 +g27 +sg25268 +S'Wrought Iron Bit' +p77291 +sg25270 +S'Gerald Transpota' +p77292 +sa(dp77293 +g25267 +g27 +sg25268 +S'Wrought Iron Bit' +p77294 +sg25270 +S'Gerald Transpota' +p77295 +sa(dp77296 +g25267 +g27 +sg25268 +S'Ceremonial Candlestick' +p77297 +sg25270 +S'Bill Bowen' +p77298 +sa(dp77299 +g25267 +g27 +sg25268 +S'Candle Holder' +p77300 +sg25270 +S'Hal Blakeley' +p77301 +sa(dp77302 +g25267 +g27 +sg25268 +S'Cut Tin Candle Holder' +p77303 +sg25270 +S'William Hoffman' +p77304 +sa(dp77305 +g25267 +g27 +sg25268 +S'Cut Tin Candle Holder' +p77306 +sg25270 +S'Irene M. Burge' +p77307 +sa(dp77308 +g25267 +g27 +sg25268 +S'Cut Tin Candle Holder' +p77309 +sg25270 +S'Irene M. Burge' +p77310 +sa(dp77311 +g25268 +S'Le baiser envoy\xc3\xa9' +p77312 +sg25270 +S'Artist Information (' +p77313 +sg25273 +S'(artist after)' +p77314 +sg25275 +S'\n' +p77315 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008beb.jpg' +p77316 +sg25267 +g27 +sa(dp77317 +g25267 +g27 +sg25268 +S'Cut Tin Candle Holder' +p77318 +sg25270 +S'Irene M. Burge' +p77319 +sa(dp77320 +g25267 +g27 +sg25268 +S'Cut Tin Candle Holder' +p77321 +sg25270 +S'Dana Bartlett' +p77322 +sa(dp77323 +g25267 +g27 +sg25268 +S'Cut Tin Candle Holder' +p77324 +sg25270 +S'Dana Bartlett' +p77325 +sa(dp77326 +g25267 +g27 +sg25268 +S'Baptismal Font and Stand' +p77327 +sg25270 +S'N.H. Yeckley' +p77328 +sa(dp77329 +g25267 +g27 +sg25268 +S'Side of Confessional' +p77330 +sg25270 +S'Dayton Brown' +p77331 +sa(dp77332 +g25267 +g27 +sg25268 +S'Jacket' +p77333 +sg25270 +S'Mae Szilvasy' +p77334 +sa(dp77335 +g25267 +g27 +sg25268 +S'Wrought Iron Cross' +p77336 +sg25270 +S'Geoffrey Holt' +p77337 +sa(dp77338 +g25267 +g27 +sg25268 +S'Brocade Dress' +p77339 +sg25270 +S'Fanchon Larzelere' +p77340 +sa(dp77341 +g25267 +g27 +sg25268 +S'Doorway and Doors' +p77342 +sg25270 +S'Albert Pratt' +p77343 +sa(dp77344 +g25267 +g27 +sg25268 +S'Sandstone Holy Water Font' +p77345 +sg25270 +S'Bertha Semple' +p77346 +sa(dp77347 +g25268 +S"L'Amant ecout\xc3\xa9" +p77348 +sg25270 +S'Louis-Marin Bonnet' +p77349 +sg25273 +S'color stipple' +p77350 +sg25275 +S'unknown date\n' +p77351 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f43.jpg' +p77352 +sg25267 +g27 +sa(dp77353 +g25267 +g27 +sg25268 +S'Plate' +p77354 +sg25270 +S'Helmut Hiatt' +p77355 +sa(dp77356 +g25267 +g27 +sg25268 +S'Mission Fountain' +p77357 +sg25270 +S'Geoffrey Holt' +p77358 +sa(dp77359 +g25267 +g27 +sg25268 +S'Iron Grille at Window' +p77360 +sg25270 +S'Harry Mann Waddell' +p77361 +sa(dp77362 +g25267 +g27 +sg25268 +S'Iron Grille at Window' +p77363 +sg25270 +S'Harry Mann Waddell' +p77364 +sa(dp77365 +g25267 +g27 +sg25268 +S'Candlesticks' +p77366 +sg25270 +S'Marius Hansen' +p77367 +sa(dp77368 +g25267 +g27 +sg25268 +S'Iron Grille at Window' +p77369 +sg25270 +S'Harry Mann Waddell' +p77370 +sa(dp77371 +g25267 +g27 +sg25268 +S'Iron Grille at Window' +p77372 +sg25270 +S'Harry Mann Waddell' +p77373 +sa(dp77374 +g25267 +g27 +sg25268 +S'Spur' +p77375 +sg25270 +S'Gerald Transpota' +p77376 +sa(dp77377 +g25267 +g27 +sg25268 +S'Spur' +p77378 +sg25270 +S'Gerald Transpota' +p77379 +sa(dp77380 +g25267 +g27 +sg25268 +S'Plate' +p77381 +sg25270 +S'Helmut Hiatt' +p77382 +sa(dp77383 +g25268 +S"L'Eventail cass\xc3\xa9" +p77384 +sg25270 +S'Louis-Marin Bonnet' +p77385 +sg25273 +S'color stipple' +p77386 +sg25275 +S'unknown date\n' +p77387 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f42.jpg' +p77388 +sg25267 +g27 +sa(dp77389 +g25267 +g27 +sg25268 +S'Plate - "Landing of the Pilgrims"' +p77390 +sg25270 +S'Helmut Hiatt' +p77391 +sa(dp77392 +g25267 +g27 +sg25268 +S'Plate' +p77393 +sg25270 +S'Helmut Hiatt' +p77394 +sa(dp77395 +g25267 +g27 +sg25268 +S'Plate' +p77396 +sg25270 +S'Helmut Hiatt' +p77397 +sa(dp77398 +g25267 +g27 +sg25268 +S'Platter - State House, Boston' +p77399 +sg25270 +S'Helmut Hiatt' +p77400 +sa(dp77401 +g25267 +g27 +sg25268 +S'Plate - Waterworks, Philadelphia' +p77402 +sg25270 +S'Helmut Hiatt' +p77403 +sa(dp77404 +g25267 +g27 +sg25268 +S'Fruit Dish' +p77405 +sg25270 +S'Helmut Hiatt' +p77406 +sa(dp77407 +g25267 +g27 +sg25268 +S'Plate - University Building' +p77408 +sg25270 +S'Helmut Hiatt' +p77409 +sa(dp77410 +g25267 +g27 +sg25268 +S'Platter' +p77411 +sg25270 +S'Helmut Hiatt' +p77412 +sa(dp77413 +g25267 +g27 +sg25268 +S'Platter' +p77414 +sg25270 +S'Helmut Hiatt' +p77415 +sa(dp77416 +g25267 +g27 +sg25268 +S'Plate' +p77417 +sg25270 +S'Helmut Hiatt' +p77418 +sa(dp77419 +g25268 +S"Les Compliments du jour de l'an" +p77420 +sg25270 +S'Artist Information (' +p77421 +sg25273 +S'(artist after)' +p77422 +sg25275 +S'\n' +p77423 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f44.jpg' +p77424 +sg25267 +g27 +sa(dp77425 +g25267 +g27 +sg25268 +S'Plate - "Park Theatre, NY"' +p77426 +sg25270 +S'Helmut Hiatt' +p77427 +sa(dp77428 +g25267 +g27 +sg25268 +S'The Utica Plate' +p77429 +sg25270 +S'Helmut Hiatt' +p77430 +sa(dp77431 +g25267 +g27 +sg25268 +S'Plate - "Athaneum, Boston"' +p77432 +sg25270 +S'Helmut Hiatt' +p77433 +sa(dp77434 +g25267 +g27 +sg25268 +S'Plate' +p77435 +sg25270 +S'Helmut Hiatt' +p77436 +sa(dp77437 +g25267 +g27 +sg25268 +S'Plate - "Marine Hospital, Louisville"' +p77438 +sg25270 +S'Helmut Hiatt' +p77439 +sa(dp77440 +g25267 +g27 +sg25268 +S"Comm. MacDougal's Victory Plate" +p77441 +sg25270 +S'Helmut Hiatt' +p77442 +sa(dp77443 +g25267 +g27 +sg25268 +S'Plate - "Albany, NY"' +p77444 +sg25270 +S'Helmut Hiatt' +p77445 +sa(dp77446 +g25267 +g27 +sg25268 +S'Plate' +p77447 +sg25270 +S'Helmut Hiatt' +p77448 +sa(dp77449 +g25267 +g27 +sg25268 +S'Plate - "Table Rock, Niagra"' +p77450 +sg25270 +S'Helmut Hiatt' +p77451 +sa(dp77452 +g25267 +g27 +sg25268 +S'Soup Tureen - "Southern Passaic Falls"' +p77453 +sg25270 +S'Helmut Hiatt' +p77454 +sa(dp77455 +g25268 +S"Les Pr\xc3\xa9sents du jour de l'an" +p77456 +sg25270 +S'Artist Information (' +p77457 +sg25273 +S'(artist after)' +p77458 +sg25275 +S'\n' +p77459 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f45.jpg' +p77460 +sg25267 +g27 +sa(dp77461 +g25267 +g27 +sg25268 +S'Cup Plate' +p77462 +sg25270 +S'Helmut Hiatt' +p77463 +sa(dp77464 +g25267 +g27 +sg25268 +S'Teapot - "Mt. Vernon"' +p77465 +sg25270 +S'Helmut Hiatt' +p77466 +sa(dp77467 +g25267 +g27 +sg25268 +S'Plate - "New York from Brooklyn Heights"' +p77468 +sg25270 +S'Helmut Hiatt' +p77469 +sa(dp77470 +g25267 +g27 +sg25268 +S'Plate - "Niagra from American Side"' +p77471 +sg25270 +S'Helmut Hiatt' +p77472 +sa(dp77473 +g25267 +g27 +sg25268 +S'Pitcher' +p77474 +sg25270 +S'Frank Fumagalli' +p77475 +sa(dp77476 +g25267 +g27 +sg25268 +S'Compote' +p77477 +sg25270 +S'Janet Riza' +p77478 +sa(dp77479 +g25267 +g27 +sg25268 +S'Jar' +p77480 +sg25270 +S'Alvin Shiren' +p77481 +sa(dp77482 +g25267 +g27 +sg25268 +S'Jar' +p77483 +sg25270 +S'Frank Fumagalli' +p77484 +sa(dp77485 +g25267 +g27 +sg25268 +S'Wine Glass' +p77486 +sg25270 +S'Palmyra Pimentel' +p77487 +sa(dp77488 +g25267 +g27 +sg25268 +S'Wine Glass' +p77489 +sg25270 +S'Isidore Steinberg' +p77490 +sa(dp77491 +g25268 +S'Ce qui est bon a prendre est bon a garder' +p77492 +sg25270 +S'Artist Information (' +p77493 +sg25273 +S'(artist after)' +p77494 +sg25275 +S'\n' +p77495 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096aa.jpg' +p77496 +sg25267 +g27 +sa(dp77497 +g25267 +g27 +sg25268 +S'Shallow Compote' +p77498 +sg25270 +S'S. Brodsky' +p77499 +sa(dp77500 +g25267 +g27 +sg25268 +S'Inkwell' +p77501 +sg25270 +S'Jessica Price' +p77502 +sa(dp77503 +g25267 +g27 +sg25268 +S'Pitcher' +p77504 +sg25270 +S'S. Brodsky' +p77505 +sa(dp77506 +g25267 +g27 +sg25268 +S'Inkwell' +p77507 +sg25270 +S'Jessica Price' +p77508 +sa(dp77509 +g25267 +g27 +sg25268 +S'Flask' +p77510 +sg25270 +S'John Fisk' +p77511 +sa(dp77512 +g25267 +g27 +sg25268 +S'Wine Glass' +p77513 +sg25270 +S'Michael Fenga' +p77514 +sa(dp77515 +g25267 +g27 +sg25268 +S'Jug' +p77516 +sg25270 +S'Yolande Delasser' +p77517 +sa(dp77518 +g25267 +g27 +sg25268 +S'Bowl' +p77519 +sg25270 +S'John Dana' +p77520 +sa(dp77521 +g25267 +g27 +sg25268 +S'Goblet' +p77522 +sg25270 +S'May Hays' +p77523 +sa(dp77524 +g25267 +g27 +sg25268 +S'Compote' +p77525 +sg25270 +S'Van Silvay' +p77526 +sa(dp77527 +g25268 +S'Marie-Louise, Empress of the French' +p77528 +sg25270 +S'Artist Information (' +p77529 +sg25273 +S'(artist after)' +p77530 +sg25275 +S'\n' +p77531 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000960d.jpg' +p77532 +sg25267 +g27 +sa(dp77533 +g25267 +g27 +sg25268 +S'Pitcher' +p77534 +sg25270 +S'Janet Riza' +p77535 +sa(dp77536 +g25267 +g27 +sg25268 +S'Pitcher' +p77537 +sg25270 +S'Michael Trekur' +p77538 +sa(dp77539 +g25267 +g27 +sg25268 +S'Cream Pitcher' +p77540 +sg25270 +S'Janet Riza' +p77541 +sa(dp77542 +g25267 +g27 +sg25268 +S'Flask' +p77543 +sg25270 +S'Howard H. Sherman' +p77544 +sa(dp77545 +g25267 +g27 +sg25268 +S'Pitcher' +p77546 +sg25270 +S'John Tarantino' +p77547 +sa(dp77548 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p77549 +sg25270 +S'Rolland Livingstone' +p77550 +sa(dp77551 +g25267 +g27 +sg25268 +S'Flask' +p77552 +sg25270 +S'John Dana' +p77553 +sa(dp77554 +g25267 +g27 +sg25268 +S'Flask' +p77555 +sg25270 +S'Anna Aloisi' +p77556 +sa(dp77557 +g25267 +g27 +sg25268 +S'Powder Horn' +p77558 +sg25270 +S'John Fisk' +p77559 +sa(dp77560 +g25267 +g27 +sg25268 +S'Vase' +p77561 +sg25270 +S'John Tarantino' +p77562 +sa(dp77563 +g25268 +S"L'agreable neglige" +p77564 +sg25270 +S'Jean-Fran\xc3\xa7ois Janinet' +p77565 +sg25273 +S'color aquatint' +p77566 +sg25275 +S'1779' +p77567 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d31.jpg' +p77568 +sg25267 +g27 +sa(dp77569 +g25267 +g27 +sg25268 +S'Sugar Bowl' +p77570 +sg25270 +S'Philip Johnson' +p77571 +sa(dp77572 +g25267 +g27 +sg25268 +S'Toilet or Perfume Bottle' +p77573 +sg25270 +S'Janet Riza' +p77574 +sa(dp77575 +g25267 +g27 +sg25268 +S'Mug' +p77576 +sg25270 +S'Giacinto Capelli' +p77577 +sa(dp77578 +g25267 +g27 +sg25268 +S'Bowl' +p77579 +sg25270 +S'Alvin Shiren' +p77580 +sa(dp77581 +g25267 +g27 +sg25268 +S'Vase' +p77582 +sg25270 +S'Giacinto Capelli' +p77583 +sa(dp77584 +g25267 +g27 +sg25268 +S'Vase' +p77585 +sg25270 +S'John Fisk' +p77586 +sa(dp77587 +g25267 +g27 +sg25268 +S'Toddy Glass' +p77588 +sg25270 +S'Janet Riza' +p77589 +sa(dp77590 +g25267 +g27 +sg25268 +S'Vase' +p77591 +sg25270 +S'Anna Aloisi' +p77592 +sa(dp77593 +g25267 +g27 +sg25268 +S'Flask' +p77594 +sg25270 +S'John Tarantino' +p77595 +sa(dp77596 +g25267 +g27 +sg25268 +S'Jar' +p77597 +sg25270 +S'Isidore Steinberg' +p77598 +sa(dp77599 +g25268 +S'Ah! Laisse-moi donc voir' +p77600 +sg25270 +S'Artist Information (' +p77601 +sg25273 +S'(artist after)' +p77602 +sg25275 +S'\n' +p77603 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d33.jpg' +p77604 +sg25267 +g27 +sa(dp77605 +g25267 +g27 +sg25268 +S'Goblet' +p77606 +sg25270 +S'Margaret Knapp' +p77607 +sa(dp77608 +g25267 +g27 +sg25268 +S'Carpet Bag' +p77609 +sg25270 +S'Beulah Bradleigh' +p77610 +sa(dp77611 +g25267 +g27 +sg25268 +S'Baptismal Font' +p77612 +sg25270 +S'Artist Information (' +p77613 +sa(dp77614 +g25267 +g27 +sg25268 +S'Side of Confessional Chair' +p77615 +sg25270 +S'Harry Mann Waddell' +p77616 +sa(dp77617 +g25267 +g27 +sg25268 +S'Restoration Drawing' +p77618 +sg25270 +S'Robert W.R. Taylor' +p77619 +sa(dp77620 +g25267 +g27 +sg25268 +S'Restoration Drawing' +p77621 +sg25270 +S'Robert W.R. Taylor' +p77622 +sa(dp77623 +g25267 +g27 +sg25268 +S'Restoration Drawing' +p77624 +sg25270 +S'A. Regli' +p77625 +sa(dp77626 +g25267 +g27 +sg25268 +S'Wall Painting' +p77627 +sg25270 +S'Cornelius Christoffels' +p77628 +sa(dp77629 +g25267 +g27 +sg25268 +S'Grille Doors of Wood' +p77630 +sg25270 +S'Robert W.R. Taylor' +p77631 +sa(dp77632 +g25267 +g27 +sg25268 +S'Grille Doors of Wood' +p77633 +sg25270 +S'Marius Hansen' +p77634 +sa(dp77635 +g25268 +S'Ah! Laisse-moi donc voir' +p77636 +sg25270 +S'Artist Information (' +p77637 +sg25273 +S'(artist after)' +p77638 +sg25275 +S'\n' +p77639 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d34.jpg' +p77640 +sg25267 +g27 +sa(dp77641 +g25267 +g27 +sg25268 +S'Pulpit - San Buenaventura Mission' +p77642 +sg25270 +S'Dayton Brown' +p77643 +sa(dp77644 +g25267 +g27 +sg25268 +S'Wall Bracket' +p77645 +sg25270 +S'Edward Jewett' +p77646 +sa(dp77647 +g25267 +g27 +sg25268 +S'Tabernacle' +p77648 +sg25270 +S'Josephine C. Romano' +p77649 +sa(dp77650 +g25267 +g27 +sg25268 +S'Evening Slipper' +p77651 +sg25270 +S'William Kieckhofel' +p77652 +sa(dp77653 +g25267 +g27 +sg25268 +S'Stand for Baptismal Font' +p77654 +sg25270 +S'Edward Jewett' +p77655 +sa(dp77656 +g25267 +g27 +sg25268 +S'Balance Scales' +p77657 +sg25270 +S'Ruth Buker' +p77658 +sa(dp77659 +g25267 +g27 +sg25268 +S'Spur' +p77660 +sg25270 +S'Robert W.R. Taylor' +p77661 +sa(dp77662 +g25267 +g27 +sg25268 +S'Painted Decorations on Ceiling' +p77663 +sg25270 +S'Harry Mann Waddell' +p77664 +sa(dp77665 +g25267 +g27 +sg25268 +S'Wall Painting' +p77666 +sg25270 +S'William Herbert' +p77667 +sa(dp77668 +g25267 +g27 +sg25268 +S'Wall Painting' +p77669 +sg25270 +S'Robert W.R. Taylor' +p77670 +sa(dp77671 +g25268 +S"L'amour" +p77672 +sg25270 +S'Artist Information (' +p77673 +sg25273 +S'(artist after)' +p77674 +sg25275 +S'\n' +p77675 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f9b.jpg' +p77676 +sg25267 +g27 +sa(dp77677 +g25267 +g27 +sg25268 +S'Wall Painting' +p77678 +sg25270 +S'Artist Information (' +p77679 +sa(dp77680 +g25267 +g27 +sg25268 +S'Wall Painting and Baptismal Niche' +p77681 +sg25270 +S'Frank C. Barks' +p77682 +sa(dp77683 +g25267 +g27 +sg25268 +S'Wall Painting and Baptismal Niche' +p77684 +sg25270 +S'Frank C. Barks' +p77685 +sa(dp77686 +g25267 +g27 +sg25268 +S'Wall Painting' +p77687 +sg25270 +S'Geoffrey Holt' +p77688 +sa(dp77689 +g25267 +g27 +sg25268 +S'Leather Seat in Confessional (Detail)' +p77690 +sg25270 +S'Randolph F. Miller' +p77691 +sa(dp77692 +g25267 +g27 +sg25268 +S'Restoration Drawing' +p77693 +sg25270 +S'Robert W.R. Taylor' +p77694 +sa(dp77695 +g25267 +g27 +sg25268 +S'Restoration Drawing' +p77696 +sg25270 +S'Robert W.R. Taylor' +p77697 +sa(dp77698 +g25267 +g27 +sg25268 +S'Door' +p77699 +sg25270 +S'Robert W.R. Taylor' +p77700 +sa(dp77701 +g25267 +g27 +sg25268 +S'Mecha (Cigarette Lighter)' +p77702 +sg25270 +S'Ann Gene Buckley' +p77703 +sa(dp77704 +g25267 +g27 +sg25268 +S'Coverlet' +p77705 +sg25270 +S'Howard H. Sherman' +p77706 +sa(dp77707 +g25268 +S'La folie' +p77708 +sg25270 +S'Artist Information (' +p77709 +sg25273 +S'(artist after)' +p77710 +sg25275 +S'\n' +p77711 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f9a.jpg' +p77712 +sg25267 +g27 +sa(dp77713 +g25267 +g27 +sg25268 +S'Quilt' +p77714 +sg25270 +S'Margaret Linsley' +p77715 +sa(dp77716 +g25267 +g27 +sg25268 +S'Flour Barrel' +p77717 +sg25270 +S'Wilbur M Rice' +p77718 +sa(dp77719 +g25267 +g27 +sg25268 +S'Teapot' +p77720 +sg25270 +S'Samuel O. Klein' +p77721 +sa(dp77722 +g25267 +g27 +sg25268 +S'Quilt Pattern' +p77723 +sg25270 +S'Ralph N. Morgan' +p77724 +sa(dp77725 +g25267 +g27 +sg25268 +S'Teapot' +p77726 +sg25270 +S'Daniel Fletcher' +p77727 +sa(dp77728 +g25267 +g27 +sg25268 +S'Stag Statuette' +p77729 +sg25270 +S'Cleo Lovett' +p77730 +sa(dp77731 +g25267 +g27 +sg25268 +S'Plate - "Boston State House"' +p77732 +sg25270 +S'Helmut Hiatt' +p77733 +sa(dp77734 +g25267 +g27 +sg25268 +S'Jug - "Peace and Prosperity"' +p77735 +sg25270 +S'Helmut Hiatt' +p77736 +sa(dp77737 +g25267 +g27 +sg25268 +S'Liverpool Jug' +p77738 +sg25270 +S'Helmut Hiatt' +p77739 +sa(dp77740 +g25267 +g27 +sg25268 +S'Jug - "Peace and Prosperity"' +p77741 +sg25270 +S'Helmut Hiatt' +p77742 +sa(dp77743 +g25268 +S'La Comparaison' +p77744 +sg25270 +S'Artist Information (' +p77745 +sg25273 +S'(artist after)' +p77746 +sg25275 +S'\n' +p77747 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a0005926.jpg' +p77748 +sg25267 +g27 +sa(dp77749 +g25267 +g27 +sg25268 +S'Stoneware Crock' +p77750 +sg25270 +S'Yolande Delasser' +p77751 +sa(dp77752 +g25267 +g27 +sg25268 +S'Grey Stoneware Cuspidor' +p77753 +sg25270 +S'Frank Fumagalli' +p77754 +sa(dp77755 +g25267 +g27 +sg25268 +S'Glazed Stone China Pitcher' +p77756 +sg25270 +S'Charles Caseau' +p77757 +sa(dp77758 +g25267 +g27 +sg25268 +S'Sheraton Mahogany Sewing Table' +p77759 +sg25270 +S'Ferdinand Cartier' +p77760 +sa(dp77761 +g25267 +g27 +sg25268 +S'Cider or Water Jug' +p77762 +sg25270 +S'Yolande Delasser' +p77763 +sa(dp77764 +g25267 +g27 +sg25268 +S'Sheraton Painted Three-Back Settee' +p77765 +sg25270 +S'American 20th Century' +p77766 +sa(dp77767 +g25267 +g27 +sg25268 +S'Plate - "Stevens House, Hoboken"' +p77768 +sg25270 +S'Helmut Hiatt' +p77769 +sa(dp77770 +g25267 +g27 +sg25268 +S'Liverpool Jug' +p77771 +sg25270 +S'Helmut Hiatt' +p77772 +sa(dp77773 +g25267 +g27 +sg25268 +S'Flat Dish - Virginia State Arms' +p77774 +sg25270 +S'Helmut Hiatt' +p77775 +sa(dp77776 +g25267 +g27 +sg25268 +S'Plate' +p77777 +sg25270 +S'Helmut Hiatt' +p77778 +sa(dp77779 +g25268 +S"L'aveu difficile (The Difficult Confession)" +p77780 +sg25270 +S'Artist Information (' +p77781 +sg25273 +S'(artist after)' +p77782 +sg25275 +S'\n' +p77783 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009718.jpg' +p77784 +sg25267 +g27 +sa(dp77785 +g25267 +g27 +sg25268 +S'Plate - "Nahant Hotel"' +p77786 +sg25270 +S'Helmut Hiatt' +p77787 +sa(dp77788 +g25267 +g27 +sg25268 +S'Plate - "Bank of U.S., Philadelphia"' +p77789 +sg25270 +S'Helmut Hiatt' +p77790 +sa(dp77791 +g25267 +g27 +sg25268 +S'Platter - "Hospital, Boston"' +p77792 +sg25270 +S'Helmut Hiatt' +p77793 +sa(dp77794 +g25267 +g27 +sg25268 +S'Plate - "Exchange, Baltimore"' +p77795 +sg25270 +S'Helmut Hiatt' +p77796 +sa(dp77797 +g25267 +g27 +sg25268 +S'Cup - "Hartford Asylum"' +p77798 +sg25270 +S'Helmut Hiatt' +p77799 +sa(dp77800 +g25267 +g27 +sg25268 +S'Fruit Dish - "Quebec"' +p77801 +sg25270 +S'Helmut Hiatt' +p77802 +sa(dp77803 +g25267 +g27 +sg25268 +S'Plate - "Niagara"' +p77804 +sg25270 +S'Helmut Hiatt' +p77805 +sa(dp77806 +g25267 +g27 +sg25268 +S'Plate - "Erie Canal"' +p77807 +sg25270 +S'Helmut Hiatt' +p77808 +sa(dp77809 +g25267 +g27 +sg25268 +S'Platter' +p77810 +sg25270 +S'Helmut Hiatt' +p77811 +sa(dp77812 +g25267 +g27 +sg25268 +S'Platter - "Bridge over Skuykill"' +p77813 +sg25270 +S'Helmut Hiatt' +p77814 +sa(dp77815 +g25268 +S"L'Indiscretion" +p77816 +sg25270 +S'Artist Information (' +p77817 +sg25273 +S'(artist after)' +p77818 +sg25275 +S'\n' +p77819 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009719.jpg' +p77820 +sg25267 +g27 +sa(dp77821 +g25267 +g27 +sg25268 +S'Plate' +p77822 +sg25270 +S'Helmut Hiatt' +p77823 +sa(dp77824 +g25267 +g27 +sg25268 +S'Plate - "Octagon Church, Boston"' +p77825 +sg25270 +S'Helmut Hiatt' +p77826 +sa(dp77827 +g25267 +g27 +sg25268 +S'Plate - "Washington and Lafayette"' +p77828 +sg25270 +S'Helmut Hiatt' +p77829 +sa(dp77830 +g25267 +g27 +sg25268 +S'Plate - "State House, Boston"' +p77831 +sg25270 +S'Helmut Hiatt' +p77832 +sa(dp77833 +g25267 +g27 +sg25268 +S'Cup Plate - "U.S. Arms"' +p77834 +sg25270 +S'Helmut Hiatt' +p77835 +sa(dp77836 +g25267 +g27 +sg25268 +S'Platter - "North Carolina Arms"' +p77837 +sg25270 +S'Helmut Hiatt' +p77838 +sa(dp77839 +g25267 +g27 +sg25268 +S'Cup - "State House, Hartford"' +p77840 +sg25270 +S'Helmut Hiatt' +p77841 +sa(dp77842 +g25267 +g27 +sg25268 +S'Platter - "Chillicothe"' +p77843 +sg25270 +S'Helmut Hiatt' +p77844 +sa(dp77845 +g25267 +g27 +sg25268 +S'Liverpool Jug' +p77846 +sg25270 +S'Helmut Hiatt' +p77847 +sa(dp77848 +g25267 +g27 +sg25268 +S'Plate - "View of Washington"' +p77849 +sg25270 +S'Helmut Hiatt' +p77850 +sa(dp77851 +g25268 +S'Madonna Enthroned with Saints and Angels [middle panel]' +p77852 +sg25270 +S'Agnolo Gaddi' +p77853 +sg25273 +S'tempera on panel' +p77854 +sg25275 +S'1380/1390' +p77855 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f5b4.jpg' +p77856 +sg25267 +g27 +sa(dp77857 +g25268 +S'The Crucifixion with the Virgin, Saint John, Saint Jerome, and Saint Mary Magdalene [middle panel]' +p77858 +sg25270 +S'Pietro Perugino' +p77859 +sg25273 +S'oil on panel transferred to canvas' +p77860 +sg25275 +S'c. 1482/1485' +p77861 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005f0.jpg' +p77862 +sg25267 +S"Pietro Vannucci, called Perugino after the city in which he often lived, collaborated\r\nwith other celebrated painters in one of the most prestigious commissions of the\r\nlate fifteenth century -- the decoration of the walls of the Sistine Chapel in 1481-1482.\r\nHe headed active workshops in Perugia and Florence, where he would eventually be\r\novershadowed by his greatest pupil, Raphael.\n Perugino's \n From the late seventeenth to the early twentieth century Perugino's \n " +p77863 +sa(dp77864 +g25268 +S'Still Life with Fruit and Carafe' +p77865 +sg25270 +S'Pensionante del Saraceni' +p77866 +sg25273 +S'oil on canvas' +p77867 +sg25275 +S'c. 1610/1620' +p77868 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000061b.jpg' +p77869 +sg25267 +S'Long thought to have been painted by Caravaggio, this still\r\n life shares his naturalistic arrangement of foodstuffs, placed\r\n close to the front of the picture plane. Here, however, the\r\n painter has used light to soften the forms of ripe fruit—edges\r\n of the highlighted apple on the pewter plate seem to blur and\r\n dissolve. This is characteristic of works painted by an artist\r\n dubbed the Pensionante del Saraceni, literally, the boarder\r\n of Saraceni. Carlo Saraceni was one of the many painters in\r\n Rome who were heavily influenced by Caravaggio.\n A slight elevation in viewpoint reduces the formality\r\n of this composition, but it nevertheless evinces the strong\r\n sense of geometry underlying its organization—stronger\r\n than in Saraceni’s or Caravaggio’s own paintings. Notice,\r\n for example, the repetition of round form in the melons,\r\n plates, and swelling wine carafe. This insistent structure,\r\n together with a certain elusive and undefinable “melancholy,”\r\n has suggested to some scholars that the painter was\r\n French. Saraceni was known as a francophile and is documented\r\n as having accommodated at least one French artist\r\n in his house—hence the name Pensionante. Some dozen\r\n paintings are thought to be by the same hand but the\r\n artist’s identity remains unknown.\n ' +p77870 +sa(dp77871 +g25268 +S'A Woman Playing the Guitar' +p77872 +sg25270 +S'Artist Information (' +p77873 +sg25273 +S'(artist after)' +p77874 +sg25275 +S'\n' +p77875 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a00055be.jpg' +p77876 +sg25267 +g27 +sa(dp77877 +g25267 +g27 +sg25268 +S'Plate - "City Hall, New York"' +p77878 +sg25270 +S'Helmut Hiatt' +p77879 +sa(dp77880 +g25267 +g27 +sg25268 +S'Teapot - "Baltimore Almshouse"' +p77881 +sg25270 +S'Helmut Hiatt' +p77882 +sa(dp77883 +g25267 +g27 +sg25268 +S'Plate - "Insane Hospital, Boston"' +p77884 +sg25270 +S'Helmut Hiatt' +p77885 +sa(dp77886 +g25267 +g27 +sg25268 +S'Platter - "Lake George"' +p77887 +sg25270 +S'Helmut Hiatt' +p77888 +sa(dp77889 +g25267 +g27 +sg25268 +S'Platter - "Connecticut Arms"' +p77890 +sg25270 +S'Helmut Hiatt' +p77891 +sa(dp77892 +g25267 +g27 +sg25268 +S'Memorial Plate - "Dewitt Clinton"' +p77893 +sg25270 +S'Helmut Hiatt' +p77894 +sa(dp77895 +g25267 +g27 +sg25268 +S'Platter - "Hudson River"' +p77896 +sg25270 +S'Helmut Hiatt' +p77897 +sa(dp77898 +g25267 +g27 +sg25268 +S'Plate' +p77899 +sg25270 +S'Helmut Hiatt' +p77900 +sa(dp77901 +g25267 +g27 +sg25268 +S'Fruit Dish - "Brooklyn Ferry"' +p77902 +sg25270 +S'Helmut Hiatt' +p77903 +sa(dp77904 +g25267 +g27 +sg25268 +S'Platter - "Pennsylvania Arms"' +p77905 +sg25270 +S'Helmut Hiatt' +p77906 +sa(dp77907 +g25268 +S'Ha! La joli petit chien' +p77908 +sg25270 +S'Artist Information (' +p77909 +sg25273 +S'(artist after)' +p77910 +sg25275 +S'\n' +p77911 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d36.jpg' +p77912 +sg25267 +g27 +sa(dp77913 +g25267 +g27 +sg25268 +S'The Campus Plate' +p77914 +sg25270 +S'Helmut Hiatt' +p77915 +sa(dp77916 +g25267 +g27 +sg25268 +S'Plate - "Steamer, Union Line"' +p77917 +sg25270 +S'Helmut Hiatt' +p77918 +sa(dp77919 +g25267 +g27 +sg25268 +S'Plate - "Orchard House, Catskills"' +p77920 +sg25270 +S'Helmut Hiatt' +p77921 +sa(dp77922 +g25267 +g27 +sg25268 +S'Cup Plate - "Castle Garden"' +p77923 +sg25270 +S'Helmut Hiatt' +p77924 +sa(dp77925 +g25267 +g27 +sg25268 +S'Plate - "Harvard College"' +p77926 +sg25270 +S'Helmut Hiatt' +p77927 +sa(dp77928 +g25267 +g27 +sg25268 +S'Teapot - "Wadsworth Tower"' +p77929 +sg25270 +S'Helmut Hiatt' +p77930 +sa(dp77931 +g25267 +g27 +sg25268 +S'Jug - "Peace and Prosperity"' +p77932 +sg25270 +S'Helmut Hiatt' +p77933 +sa(dp77934 +g25267 +g27 +sg25268 +S'Liverpool Jug' +p77935 +sg25270 +S'Helmut Hiatt' +p77936 +sa(dp77937 +g25267 +g27 +sg25268 +S'Plate - "Castle Garden and Battery"' +p77938 +sg25270 +S'Helmut Hiatt' +p77939 +sa(dp77940 +g25267 +g27 +sg25268 +S'Plate - "Newburgh on the Hudson"' +p77941 +sg25270 +S'Helmut Hiatt' +p77942 +sa(dp77943 +g25268 +S'Le petit conseil' +p77944 +sg25270 +S'Artist Information (' +p77945 +sg25273 +S'(artist after)' +p77946 +sg25275 +S'\n' +p77947 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d35.jpg' +p77948 +sg25267 +g27 +sa(dp77949 +g25267 +g27 +sg25268 +S'Platter - "Delaware Arms"' +p77950 +sg25270 +S'Helmut Hiatt' +p77951 +sa(dp77952 +g25267 +g27 +sg25268 +S'Plate - "Cadmus Anchored"' +p77953 +sg25270 +S'Helmut Hiatt' +p77954 +sa(dp77955 +g25267 +g27 +sg25268 +S'Plate - "Millenium"' +p77956 +sg25270 +S'Helmut Hiatt' +p77957 +sa(dp77958 +g25267 +g27 +sg25268 +S'Platter - "Georgia Arms"' +p77959 +sg25270 +S'Helmut Hiatt' +p77960 +sa(dp77961 +g25267 +g27 +sg25268 +S'Plate - "Baltimore and Ohio Railroad"' +p77962 +sg25270 +S'Helmut Hiatt' +p77963 +sa(dp77964 +g25267 +g27 +sg25268 +S'Plate - "Naval Battle"' +p77965 +sg25270 +S'Helmut Hiatt' +p77966 +sa(dp77967 +g25267 +g27 +sg25268 +S'Plate - "Penn\'s Treaty with the Indians"' +p77968 +sg25270 +S'Helmut Hiatt' +p77969 +sa(dp77970 +g25267 +g27 +sg25268 +S'Plate - "The Capitol, Washington"' +p77971 +sg25270 +S'Helmut Hiatt' +p77972 +sa(dp77973 +g25267 +g27 +sg25268 +S'Plate - "New Jersey Arms"' +p77974 +sg25270 +S'Helmut Hiatt' +p77975 +sa(dp77976 +g25267 +g27 +sg25268 +S'Plate - "Damn and Waterworks, Philadelphia"' +p77977 +sg25270 +S'Helmut Hiatt' +p77978 +sa(dp77979 +g25268 +S'La jeune vestale' +p77980 +sg25270 +S'Artist Information (' +p77981 +sg25273 +S'(artist after)' +p77982 +sg25275 +S'\n' +p77983 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f9c.jpg' +p77984 +sg25267 +g27 +sa(dp77985 +g25267 +g27 +sg25268 +S'Plate - "Baltimore and Ohio Railroad"' +p77986 +sg25270 +S'Helmut Hiatt' +p77987 +sa(dp77988 +g25267 +g27 +sg25268 +S'Cromwellian Leather Side Chair' +p77989 +sg25270 +S'Gilbert Sackerman' +p77990 +sa(dp77991 +g25267 +g27 +sg25268 +S'Doll' +p77992 +sg25270 +S'Archie Thompson' +p77993 +sa(dp77994 +g25267 +g27 +sg25268 +S'Baptismal Certificate' +p77995 +sg25270 +S'Ralph Atkinson' +p77996 +sa(dp77997 +g25267 +g27 +sg25268 +S'Red Earthenware Pitcher' +p77998 +sg25270 +S'Jessica Price' +p77999 +sa(dp78000 +g25267 +g27 +sg25268 +S"Infant's Dress" +p78001 +sg25270 +S'Marie Famularo' +p78002 +sa(dp78003 +g25267 +g27 +sg25268 +S'Tall Clock' +p78004 +sg25270 +S'Arthur Johnson' +p78005 +sa(dp78006 +g25267 +g27 +sg25268 +S'Dress' +p78007 +sg25270 +S'Melita Hofmann' +p78008 +sa(dp78009 +g25267 +g27 +sg25268 +S'Jar' +p78010 +sg25270 +S'Eugene Shellady' +p78011 +sa(dp78012 +g25267 +g27 +sg25268 +S'Toy Hook and Ladder, with Two Horses' +p78013 +sg25270 +S'Mina Lowry' +p78014 +sa(dp78015 +g25268 +S'La Venus aux colombes' +p78016 +sg25270 +S'Artist Information (' +p78017 +sg25273 +S'(artist after)' +p78018 +sg25275 +S'\n' +p78019 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f9d.jpg' +p78020 +sg25267 +g27 +sa(dp78021 +g25267 +g27 +sg25268 +S'Doll' +p78022 +sg25270 +S'Kapousouz' +p78023 +sa(dp78024 +g25267 +g27 +sg25268 +S'Doll' +p78025 +sg25270 +S'Mina Lowry' +p78026 +sa(dp78027 +g25267 +g27 +sg25268 +S'Toy Sleigh' +p78028 +sg25270 +S'Mina Lowry' +p78029 +sa(dp78030 +g25267 +g27 +sg25268 +S'Toy Fire Engine' +p78031 +sg25270 +S'Mina Lowry' +p78032 +sa(dp78033 +g25267 +g27 +sg25268 +S'Doll' +p78034 +sg25270 +S'Kapousouz' +p78035 +sa(dp78036 +g25267 +g27 +sg25268 +S'Doll' +p78037 +sg25270 +S'American 20th Century' +p78038 +sa(dp78039 +g25267 +g27 +sg25268 +S'Doll' +p78040 +sg25270 +S'Francis Law Durand' +p78041 +sa(dp78042 +g25267 +g27 +sg25268 +S'Calash' +p78043 +sg25270 +S'Mina Lowry' +p78044 +sa(dp78045 +g25267 +g27 +sg25268 +S'Doll: "Mary Scotia"' +p78046 +sg25270 +S'Mary E. Humes' +p78047 +sa(dp78048 +g25267 +g27 +sg25268 +S'Warmer' +p78049 +sg25270 +S'American 20th Century' +p78050 +sa(dp78051 +g25268 +S'Le repas des moissonneurs' +p78052 +sg25270 +S'Artist Information (' +p78053 +sg25273 +S'(artist after)' +p78054 +sg25275 +S'\n' +p78055 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009714.jpg' +p78056 +sg25267 +g27 +sa(dp78057 +g25267 +g27 +sg25268 +S'Wall Decoration' +p78058 +sg25270 +S'Margery Parish' +p78059 +sa(dp78060 +g25267 +g27 +sg25268 +S'Wall Stencil (Section of)' +p78061 +sg25270 +S'Ray Holden' +p78062 +sa(dp78063 +g25267 +g27 +sg25268 +S'Oval Water Cask' +p78064 +sg25270 +S'American 20th Century' +p78065 +sa(dp78066 +g25267 +g27 +sg25268 +S'Whirligig' +p78067 +sg25270 +S'American 20th Century' +p78068 +sa(dp78069 +g25267 +g27 +sg25268 +S'Warming Pan' +p78070 +sg25270 +S'Florence Stevenson' +p78071 +sa(dp78072 +g25267 +g27 +sg25268 +S'Weather Vane' +p78073 +sg25270 +S'Gordon Sanborn' +p78074 +sa(dp78075 +g25267 +g27 +sg25268 +S'Weather Vane' +p78076 +sg25270 +S'American 20th Century' +p78077 +sa(dp78078 +g25267 +g27 +sg25268 +S'Spice Box' +p78079 +sg25270 +S'American 20th Century' +p78080 +sa(dp78081 +g25267 +g27 +sg25268 +S'Bread Tray' +p78082 +sg25270 +S'American 20th Century' +p78083 +sa(dp78084 +g25267 +g27 +sg25268 +S'Flatiron' +p78085 +sg25270 +S'American 20th Century' +p78086 +sa(dp78087 +g25268 +S'Nina, ou La Folle par amour (Nina, or The Woman Maddened by Love)' +p78088 +sg25270 +S'Artist Information (' +p78089 +sg25273 +S'(artist after)' +p78090 +sg25275 +S'\n' +p78091 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f9e.jpg' +p78092 +sg25267 +g27 +sa(dp78093 +g25267 +g27 +sg25268 +S'Tracing Technique' +p78094 +sg25270 +S'American 20th Century' +p78095 +sa(dp78096 +g25267 +g27 +sg25268 +S'Bandbox' +p78097 +sg25270 +S'American 20th Century' +p78098 +sa(dp78099 +g25267 +g27 +sg25268 +S'Toy Locomotive' +p78100 +sg25270 +S'American 20th Century' +p78101 +sa(dp78102 +g25267 +g27 +sg25268 +S'Toy Horse' +p78103 +sg25270 +S'American 20th Century' +p78104 +sa(dp78105 +g25267 +g27 +sg25268 +S'Wedding Dress' +p78106 +sg25270 +S'American 20th Century' +p78107 +sa(dp78108 +g25267 +g27 +sg25268 +S'Hartford Cupboard (Detail)' +p78109 +sg25270 +S'Martin Partyka' +p78110 +sa(dp78111 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005535.jpg' +p78112 +sg25268 +S'Gabriel Weather Vane (Technique)' +p78113 +sg25270 +S'Lucille Chabot' +p78114 +sa(dp78115 +g25267 +g27 +sg25268 +S'Vase' +p78116 +sg25270 +S'John Dana' +p78117 +sa(dp78118 +g25267 +S'Because tin is unable to withstand hard use, most plain domestic articles have not survived. In contrast, decorated tinware, commonly presented as gifts and reserved for display, remains in relatively good condition.\n Some tinware was decorated by painting or by punching designs into the surface. Made about 1830, this Pennsylvania German coffeepot was made from flat sheets of tin hammered in separate sections over molds.\n The decoration was raised by dots punched in from the back creating an embossed effect. The punched sections were then shaped and soldered together. In the Pennsylvania German manner, a stylized floral and geometric pattern decorates the pot.\n The pot is finished with a reeded spout and a black wooden knob. The scroll handle, also of black wood, suggests forms associated with the handles of pewter and silver pots. However, in this case, the handle is crude and\n out of proportion to the body. Though the tinsmith copied styles prevalent in the finer metal crafts, his work was obviously more akin to that of the folk artist in simplicity of conception and execution.\n ' +p78119 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000036a.jpg' +p78120 +sg25268 +S'Tin Coffee Pot' +p78121 +sg25270 +S'Carl Strehlau' +p78122 +sa(dp78123 +g25267 +S'The art of carving wooden birds, whether for use as decoys or for purely ornamental purposes, has long been popular in America. This example is from the Mason Factory in Detroit, which was active from 1896 to 1924. Large workshops produced decoys in response to the demands of commercial hunters before the industry came to a sudden end with the passage of the Migratory Bird Treaty Act in 1918. The Mason Factory was one of the most important suppliers of factory decoys, offering five different grades that varied in detail and degree of hand-finishing. This decoy was rated a Challenge grade (next to best). It was carved from a single block of wood except for the head, which was attached separately and featured glass eyes. The originally fine paint surface has worn considerably, but the bird is still recognizable as a bufflehead drake, even though it is slightly longer and less stocky than its living match. Decoy forms were typically kept low and broad to prevent them from overturning in rough water.\n ' +p78124 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a000034c.jpg' +p78125 +sg25268 +S'Duck Decoy' +p78126 +sg25270 +S'Max Fernekes' +p78127 +sa(dp78128 +g25268 +S'Les nourrices' +p78129 +sg25270 +S'Artist Information (' +p78130 +sg25273 +S'(artist after)' +p78131 +sg25275 +S'\n' +p78132 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d32.jpg' +p78133 +sg25267 +g27 +sa(dp78134 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000551e.jpg' +p78135 +sg25268 +S'Coffeepot' +p78136 +sg25270 +S'Charles Henning' +p78137 +sa(dp78138 +g25267 +g27 +sg25268 +S'Saddle (Technique Demonstration)' +p78139 +sg25270 +S'Gerald Transpota' +p78140 +sa(dp78141 +g25267 +g27 +sg25268 +S'Saddle' +p78142 +sg25270 +S'Hal Blakeley' +p78143 +sa(dp78144 +g25267 +g27 +sg25268 +S'Figurehead' +p78145 +sg25270 +S'John W. Kelleher' +p78146 +sa(dp78147 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005536.jpg' +p78148 +sg25268 +S'Crewel Embroidery' +p78149 +sg25270 +S'Suzanne Chapman' +p78150 +sa(dp78151 +g25267 +S'In colonial days, gateleg dropleaf tables were popular because they saved space. American gateleg tables followed early seventeenth-century English prototypes. They always had two swinging legs to support the hinged dropleaf ends, yet the shape of the tabletop varied. This table has an oval top, but square, round, and rectangular tops were also common. The wood used for this example is walnut, a finer wood than the oak that was predominant earlier. In the use of walnut, this table can be considered a departure from the traditions of the Jacobian style—it heralds the approach of the William and Mary style in eighteenth-century America. The Index data sheet indicates that the piece belonged to a family in Lewes, Delaware, and that it dates from about 1680, but it may have been made slightly later.\n ' +p78152 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002c5.jpg' +p78153 +sg25268 +S'Gateleg Table' +p78154 +sg25270 +S'Amos C. Brinton' +p78155 +sa(dp78156 +g25267 +g27 +sg25268 +S'Conestoga Wagon' +p78157 +sg25270 +S'H. Langden Brown' +p78158 +sa(dp78159 +g25267 +g27 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ffa7.jpg' +p78160 +sg25268 +S'Figurehead' +p78161 +sg25270 +S'Elizabeth Moutal' +p78162 +sa(dp78163 +g25267 +g27 +sg25268 +S'Carousel Horse' +p78164 +sg25270 +S'American 20th Century' +p78165 +sa(dp78166 +g25267 +g27 +sg25268 +S'Press Cupboard (Detail)' +p78167 +sg25270 +S'Harold Merriam' +p78168 +sa(dp78169 +g25268 +S"L'oisseau prive" +p78170 +sg25270 +S'Artist Information (' +p78171 +sg25273 +S'(artist after)' +p78172 +sg25275 +S'\n' +p78173 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009717.jpg' +p78174 +sg25267 +g27 +sa(dp78175 +g25267 +g27 +sg25268 +S'Garden Setting' +p78176 +sg25270 +S'Perkins Harnly' +p78177 +sa(dp78178 +g25267 +g27 +sg25268 +S'Map of New York State' +p78179 +sg25270 +S'American 20th Century' +p78180 +sa(dp78181 +g25267 +g27 +sg25268 +S'Sculpture' +p78182 +sg25270 +S'American 20th Century' +p78183 +sa(dp78184 +g25267 +g27 +sg25268 +S'Sculpture' +p78185 +sg25270 +S'American 20th Century' +p78186 +sa(dp78187 +g25267 +g27 +sg25268 +S'Technique Demo (Wood Grain)' +p78188 +sg25270 +S'Harry Mann Waddell' +p78189 +sa(dp78190 +g25267 +g27 +sg25268 +S'Technique Demonstration' +p78191 +sg25270 +S'Gerald Transpota' +p78192 +sa(dp78193 +g25267 +g27 +sg25268 +S"Tradesman's Sign (Indian)" +p78194 +sg25270 +S'Helen E. Gilman' +p78195 +sa(dp78196 +g25267 +g27 +sg25268 +S'Figurehead: Indian' +p78197 +sg25270 +S'Hazel Hyde' +p78198 +sa(dp78199 +g25267 +g27 +sg25268 +S"Carving: Boar's Head" +p78200 +sg25270 +S'Joseph Goldberg' +p78201 +sa(dp78202 +g25267 +g27 +sg25268 +S'Carousel Horse (Study)' +p78203 +sg25270 +S'Elizabeth Moutal' +p78204 +sa(dp78205 +g25268 +S"Portrait d'une jeune princesse" +p78206 +sg25270 +S'Jean-Fran\xc3\xa7ois Janinet' +p78207 +sg25273 +S'color aquatint and etching' +p78208 +sg25275 +S'unknown date\n' +p78209 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d37.jpg' +p78210 +sg25267 +g27 +sa(dp78211 +g25267 +g27 +sg25268 +S'Sign' +p78212 +sg25270 +S'American 20th Century' +p78213 +sa(dp78214 +g25267 +g27 +sg25268 +S'Stool' +p78215 +sg25270 +S'Lawrence Foster' +p78216 +sa(dp78217 +g25267 +g27 +sg25268 +S'Technique Demo (Architectural Detail)' +p78218 +sg25270 +S'Raymond E. Noble' +p78219 +sa(dp78220 +g25267 +g27 +sg25268 +S'Sheraton Card Table' +p78221 +sg25270 +S'Nicholas Gorid' +p78222 +sa(dp78223 +g25267 +g27 +sg25268 +S'Lamp' +p78224 +sg25270 +S'Ruth Bialostosky' +p78225 +sa(dp78226 +g25267 +g27 +sg25268 +S'Shaker Rug Material' +p78227 +sg25270 +S'Elizabeth Moutal' +p78228 +sa(dp78229 +g25267 +g27 +sg25268 +S'Bandbox Paper' +p78230 +sg25270 +S'Michael Lauretano' +p78231 +sa(dp78232 +g25267 +g27 +sg25268 +S'Wall Painting' +p78233 +sg25270 +S'Edward Jewett' +p78234 +sa(dp78235 +g25267 +g27 +sg25268 +S'Bishop Hill: Small Spoon' +p78236 +sg25270 +S'Artist Information (' +p78237 +sa(dp78238 +g25267 +g27 +sg25268 +S'Stern Ornament' +p78239 +sg25270 +S'L. B. Hartmann' +p78240 +sa(dp78241 +g25268 +S'Allegory' +p78242 +sg25270 +S'Piero di Cosimo' +p78243 +sg25273 +S'oil on panel' +p78244 +sg25275 +S'c. 1500' +p78245 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000803.jpg' +p78246 +sg25267 +g27 +sa(dp78247 +g25268 +S"Projet d'un monument a \xc3\xa9riger pour le roi" +p78248 +sg25270 +S'Artist Information (' +p78249 +sg25273 +S'(artist after)' +p78250 +sg25275 +S'\n' +p78251 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009716.jpg' +p78252 +sg25267 +g27 +sa(dp78253 +g25267 +g27 +sg25268 +S'Stern Ornament' +p78254 +sg25270 +S'L. B. Hartmann' +p78255 +sa(dp78256 +g25267 +g27 +sg25268 +S'Table' +p78257 +sg25270 +S'American 20th Century' +p78258 +sa(dp78259 +g25267 +g27 +sg25268 +S"Ship's Stern Ornament" +p78260 +sg25270 +S'L. B. Hartmann' +p78261 +sa(dp78262 +g25267 +g27 +sg25268 +S'Technique Demo (Wood Grain)' +p78263 +sg25270 +S'American 20th Century' +p78264 +sa(dp78265 +g25267 +g27 +sg25268 +S'Technique Demo (Wood Grain)' +p78266 +sg25270 +S'Harry Mann Waddell' +p78267 +sa(dp78268 +g25267 +g27 +sg25268 +S'Desk' +p78269 +sg25270 +S'Arthur Johnson' +p78270 +sa(dp78271 +g25267 +g27 +sg25268 +S"Ship's Stern Ornament" +p78272 +sg25270 +S'L. B. Hartmann' +p78273 +sa(dp78274 +g25267 +g27 +sg25268 +S'Technique Demonstration' +p78275 +sg25270 +S'Eugene Barrell' +p78276 +sa(dp78277 +g25267 +g27 +sg25268 +S'Desk Box' +p78278 +sg25270 +S'Leo Drozdoff' +p78279 +sa(dp78280 +g25267 +g27 +sg25268 +S'Stern Piece from "Henrietta Francis"' +p78281 +sg25270 +S'American 20th Century' +p78282 +sa(dp78283 +g25268 +S"Offrande a l'amour" +p78284 +sg25270 +S'Artist Information (' +p78285 +sg25273 +S'(artist after)' +p78286 +sg25275 +S'\n' +p78287 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005bde.jpg' +p78288 +sg25267 +g27 +sa(dp78289 +g25267 +g27 +sg25268 +S'Rooster Weather Vane' +p78290 +sg25270 +S'American 20th Century' +p78291 +sa(dp78292 +g25267 +g27 +sg25268 +S'Technique Demonstration' +p78293 +sg25270 +S'George E. Rhone' +p78294 +sa(dp78295 +g25267 +g27 +sg25268 +S'Technique Demonstration' +p78296 +sg25270 +S'American 20th Century' +p78297 +sa(dp78298 +g25267 +g27 +sg25268 +S'Tapestry' +p78299 +sg25270 +S'Pearl Gibbo' +p78300 +sa(dp78301 +g25267 +g27 +sg25268 +S'Foot Scraper' +p78302 +sg25270 +S'John Wilkes' +p78303 +sa(dp78304 +g25268 +S'Allies Day, May 1917' +p78305 +sg25270 +S'Childe Hassam' +p78306 +sg25273 +S'oil on canvas' +p78307 +sg25275 +S'1917' +p78308 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000e5.jpg' +p78309 +sg25267 +S"A patriotic whirlwind overtook mid–town Manhattan as America entered the First World War in the spring of 1917. On Fifth Avenue, the British Union Jack, the French Tricolor, and Stars and Stripes were displayed prominently during parades honoring America's allies. The colorful pageantry inspired Childe Hassam, who dedicated this picture "to the coming together of [our] three peoples in the fight for democracy." Hassam's flag paintings were first shown as a group in New York's Durand–Ruel Gallery in November 1918, just four days after the armistice was declared. Thus, the works,\r\noriginally created to herald America's entry into the war, also served to commemorate its victorious resolution.\n Hassam had studied in Paris from 1886–1889 and was strongly influenced by the impressionists. In many respects, \n " +p78310 +sa(dp78311 +g25273 +S'etching' +p78312 +sg25267 +g27 +sg25275 +S'probably 1747/1748' +p78313 +sg25268 +S'Title Plate' +p78314 +sg25270 +S'Giovanni Battista Piranesi' +p78315 +sa(dp78316 +g25273 +S'etching' +p78317 +sg25267 +g27 +sg25275 +S'probably 1747/1748' +p78318 +sg25268 +S'Veduta della Basilica, e Piazza de S. Pietro in Vaticano' +p78319 +sg25270 +S'Giovanni Battista Piranesi' +p78320 +sa(dp78321 +g25273 +S'etching' +p78322 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78323 +sg25268 +S"Veduta dell' insigne Basilica Vaticana coll' ampio Portico, e Piazza adjacente" +p78324 +sg25270 +S'Giovanni Battista Piranesi' +p78325 +sa(dp78326 +g25273 +S'etching' +p78327 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78328 +sg25268 +S'Veduta della gran Piazza e Basilica di S. Pietro' +p78329 +sg25270 +S'Giovanni Battista Piranesi' +p78330 +sa(dp78331 +g25268 +S'Les trois graces' +p78332 +sg25270 +S'Artist Information (' +p78333 +sg25273 +S'(artist after)' +p78334 +sg25275 +S'\n' +p78335 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fa0.jpg' +p78336 +sg25267 +g27 +sa(dp78337 +g25273 +S'etching' +p78338 +sg25267 +g27 +sg25275 +S'probably 1748/1749' +p78339 +sg25268 +S'Veduta interna della Basilica di S. Pietro in Vaticano' +p78340 +sg25270 +S'Giovanni Battista Piranesi' +p78341 +sa(dp78342 +g25273 +S'etching' +p78343 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78344 +sg25268 +S'Veduta interna della Basilica di S. Pietro in Vaticano vicino alla Tribuna' +p78345 +sg25270 +S'Giovanni Battista Piranesi' +p78346 +sa(dp78347 +g25273 +S'etching' +p78348 +sg25267 +g27 +sg25275 +S'1750/1751' +p78349 +sg25268 +S"Veduta dell' Esterno della gran Basilica di S. Pietro in Vaticano" +p78350 +sg25270 +S'Giovanni Battista Piranesi' +p78351 +sa(dp78352 +g25273 +S'etching' +p78353 +sg25267 +g27 +sg25275 +S'probably 1757/1758' +p78354 +sg25268 +S'Veduta della Basilica di S. Paolo fuor delle mura' +p78355 +sg25270 +S'Giovanni Battista Piranesi' +p78356 +sa(dp78357 +g25273 +S'etching' +p78358 +sg25267 +g27 +sg25275 +S'probably 1748/1749' +p78359 +sg25268 +S'Spaccato interno della Basilica di S. Paolo fuori delle Mura' +p78360 +sg25270 +S'Giovanni Battista Piranesi' +p78361 +sa(dp78362 +g25273 +S'etching' +p78363 +sg25267 +g27 +sg25275 +S'probably 1747/1748' +p78364 +sg25268 +S'Veduta della Basilica di S. Giovanni Laterano' +p78365 +sg25270 +S'Giovanni Battista Piranesi' +p78366 +sa(dp78367 +g25273 +S'etching' +p78368 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78369 +sg25268 +S'Veduta della Facciata della Basilica di S. Giovanni Laterano' +p78370 +sg25270 +S'Giovanni Battista Piranesi' +p78371 +sa(dp78372 +g25273 +S'etching' +p78373 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78374 +sg25268 +S'Veduta della Piazza e Basilica di S. Giovanni in Laterano' +p78375 +sg25270 +S'Giovanni Battista Piranesi' +p78376 +sa(dp78377 +g25273 +S'etching' +p78378 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78379 +sg25268 +S'Veduta interna della Basilica di S. Giovanni Laterano' +p78380 +sg25270 +S'Giovanni Battista Piranesi' +p78381 +sa(dp78382 +g25273 +S'etching' +p78383 +sg25267 +g27 +sg25275 +S'probably 1747/1748' +p78384 +sg25268 +S'Veduta della Basilica di Sta. Maria Maggiore' +p78385 +sg25270 +S'Giovanni Battista Piranesi' +p78386 +sa(dp78387 +g25268 +S'La toilette de Venus' +p78388 +sg25270 +S'Artist Information (' +p78389 +sg25273 +S'(artist after)' +p78390 +sg25275 +S'\n' +p78391 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009715.jpg' +p78392 +sg25267 +g27 +sa(dp78393 +g25273 +S'etching' +p78394 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78395 +sg25268 +S'Veduta interna della Basilica di S. Maria Maggiore' +p78396 +sg25270 +S'Giovanni Battista Piranesi' +p78397 +sa(dp78398 +g25273 +S'etching' +p78399 +sg25267 +g27 +sg25275 +S'1756/1757' +p78400 +sg25268 +S'Veduta della Facciata di dietro della Basilica di S. Maria Maggiore' +p78401 +sg25270 +S'Giovanni Battista Piranesi' +p78402 +sa(dp78403 +g25273 +S'etching' +p78404 +sg25267 +g27 +sg25275 +S'probably 1757/1758' +p78405 +sg25268 +S'Veduta della Facciata della Basilica di S. Croce in Gerusalemme' +p78406 +sg25270 +S'Giovanni Battista Piranesi' +p78407 +sa(dp78408 +g25273 +S'etching' +p78409 +sg25267 +g27 +sg25275 +S'1760/1761' +p78410 +sg25268 +S'Veduta della Basilica di S. Lorenzo fuor delle mura' +p78411 +sg25270 +S'Giovanni Battista Piranesi' +p78412 +sa(dp78413 +g25273 +S'etching' +p78414 +sg25267 +g27 +sg25275 +S'1761' +p78415 +sg25268 +S'Veduta della Basilica di S. Sebastiano' +p78416 +sg25270 +S'Giovanni Battista Piranesi' +p78417 +sa(dp78418 +g25273 +S'etching' +p78419 +sg25267 +g27 +sg25275 +S'probably 1747/1748' +p78420 +sg25268 +S'Veduta della Piazza del Popolo' +p78421 +sg25270 +S'Giovanni Battista Piranesi' +p78422 +sa(dp78423 +g25273 +S'etching' +p78424 +sg25267 +g27 +sg25275 +S'probably 1747/1748' +p78425 +sg25268 +S'Veduta della Piazza di Monte Cavallo' +p78426 +sg25270 +S'Giovanni Battista Piranesi' +p78427 +sa(dp78428 +g25273 +S'etching' +p78429 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78430 +sg25268 +S'Veduta della Piazza di Monte Cavallo' +p78431 +sg25270 +S'Giovanni Battista Piranesi' +p78432 +sa(dp78433 +g25273 +S'etching' +p78434 +sg25267 +g27 +sg25275 +S'probably 1747/1748' +p78435 +sg25268 +S'Veduta di Piazza Navona sopra le rovine del Circo Agonale' +p78436 +sg25270 +S'Giovanni Battista Piranesi' +p78437 +sa(dp78438 +g25273 +S'etching' +p78439 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78440 +sg25268 +S'Veduta di Piazza Navona sopra le rovine del Circo Agonale' +p78441 +sg25270 +S'Giovanni Battista Piranesi' +p78442 +sa(dp78443 +g25268 +S'Venus en reflection' +p78444 +sg25270 +S'Artist Information (' +p78445 +sg25273 +S'(artist after)' +p78446 +sg25275 +S'\n' +p78447 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f9f.jpg' +p78448 +sg25267 +g27 +sa(dp78449 +g25273 +S'etching' +p78450 +sg25267 +g27 +sg25275 +S'probably 1747/1748' +p78451 +sg25268 +S'Veduta della Piazza Rotonda' +p78452 +sg25270 +S'Giovanni Battista Piranesi' +p78453 +sa(dp78454 +g25273 +S'etching' +p78455 +sg25267 +g27 +sg25275 +S'1750/1751' +p78456 +sg25268 +S'Veduta di Piazza di Spagna' +p78457 +sg25270 +S'Giovanni Battista Piranesi' +p78458 +sa(dp78459 +g25273 +S'etching' +p78460 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78461 +sg25268 +S'Veduta delle due Chiese ... presso la Colonna Trajana' +p78462 +sg25270 +S'Giovanni Battista Piranesi' +p78463 +sa(dp78464 +g25273 +S'etching' +p78465 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78466 +sg25268 +S'Veduta ... della gran Fontana ... di Trevi' +p78467 +sg25270 +S'Giovanni Battista Piranesi' +p78468 +sa(dp78469 +g25273 +S'etching' +p78470 +sg25267 +g27 +sg25275 +S'probably 1747/1748' +p78471 +sg25268 +S'Veduta della vasta Fontana di Trevi' +p78472 +sg25270 +S'Giovanni Battista Piranesi' +p78473 +sa(dp78474 +g25273 +S'etching' +p78475 +sg25267 +g27 +sg25275 +S'1760/1761' +p78476 +sg25268 +S"Veduta del Castello dell' Acqua Felice" +p78477 +sg25270 +S'Giovanni Battista Piranesi' +p78478 +sa(dp78479 +g25273 +S'etching' +p78480 +sg25267 +g27 +sg25275 +S'1756/1757' +p78481 +sg25268 +S"Veduta del Castello dell' Acqua Paola sul Monte Aureo" +p78482 +sg25270 +S'Giovanni Battista Piranesi' +p78483 +sa(dp78484 +g25273 +S'etching' +p78485 +sg25267 +g27 +sg25275 +S'probably 1757/1758' +p78486 +sg25268 +S'Veduta del Palazzo ... della Sacra Consulta' +p78487 +sg25270 +S'Giovanni Battista Piranesi' +p78488 +sa(dp78489 +g25273 +S'etching' +p78490 +sg25267 +g27 +sg25275 +S'probably 1758/1759' +p78491 +sg25268 +S'Veduta della Gran Curia Innocenziana' +p78492 +sg25270 +S'Giovanni Battista Piranesi' +p78493 +sa(dp78494 +g25273 +S'etching' +p78495 +sg25267 +g27 +sg25275 +S'probably 1757/1758' +p78496 +sg25268 +S"Veduta ... del Palazzo dell' Accademia ... di Francia" +p78497 +sg25270 +S'Giovanni Battista Piranesi' +p78498 +sa(dp78499 +g25268 +S"Venus desarmant l'amour" +p78500 +sg25270 +S'Artist Information (' +p78501 +sg25273 +S'(artist after)' +p78502 +sg25275 +S'\n' +p78503 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fa1.jpg' +p78504 +sg25267 +g27 +sa(dp78505 +g25273 +S'etching' +p78506 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78507 +sg25268 +S'Veduta del Palazzo Stopani' +p78508 +sg25270 +S'Giovanni Battista Piranesi' +p78509 +sa(dp78510 +g25273 +S'etching' +p78511 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78512 +sg25268 +S'Veduta del Palazzo Farnese' +p78513 +sg25270 +S'Giovanni Battista Piranesi' +p78514 +sa(dp78515 +g25273 +S'etching' +p78516 +sg25267 +g27 +sg25275 +S'probably 1758/1759' +p78517 +sg25268 +S'Veduta ... del Palazzo ... Barberini' +p78518 +sg25270 +S'Giovanni Battista Piranesi' +p78519 +sa(dp78520 +g25273 +S'etching' +p78521 +sg25267 +g27 +sg25275 +S'probably 1757/1758' +p78522 +sg25268 +S'Veduta del Palazzo Odescalchi' +p78523 +sg25270 +S'Giovanni Battista Piranesi' +p78524 +sa(dp78525 +g25273 +S'etching' +p78526 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78527 +sg25268 +S'Veduta della Villa ... Albani' +p78528 +sg25270 +S'Giovanni Battista Piranesi' +p78529 +sa(dp78530 +g25273 +S'etching' +p78531 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78532 +sg25268 +S'Villa Panfili' +p78533 +sg25270 +S'Giovanni Battista Piranesi' +p78534 +sa(dp78535 +g25273 +S'etching' +p78536 +sg25267 +g27 +sg25275 +S'probably 1757/1758' +p78537 +sg25268 +S'Veduta del Porto di Ripa Grande' +p78538 +sg25270 +S'Giovanni Battista Piranesi' +p78539 +sa(dp78540 +g25273 +S'etching' +p78541 +sg25267 +g27 +sg25275 +S'1750/1751' +p78542 +sg25268 +S'Veduta del Porto di Ripetta' +p78543 +sg25270 +S'Giovanni Battista Piranesi' +p78544 +sa(dp78545 +g25273 +S'etching' +p78546 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78547 +sg25268 +S"Veduta dell' Isola Tiberina" +p78548 +sg25270 +S'Giovanni Battista Piranesi' +p78549 +sa(dp78550 +g25273 +S'etching' +p78551 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78552 +sg25268 +S'Veduta del Ponte Molle' +p78553 +sg25270 +S'Giovanni Battista Piranesi' +p78554 +sa(dp78555 +g25268 +S'Modeles de coiffures' +p78556 +sg25270 +S'Jean-Fran\xc3\xa7ois Janinet' +p78557 +sg25273 +S'color crayon manner etching' +p78558 +sg25275 +S'unknown date\n' +p78559 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a0009008.jpg' +p78560 +sg25267 +g27 +sa(dp78561 +g25268 +S'Veduta del Ponte Lugano' +p78562 +sg25270 +S'Giovanni Battista Piranesi' +p78563 +sg25273 +S'etching' +p78564 +sg25275 +S'unknown date\n' +p78565 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00112/a00112e3.jpg' +p78566 +sg25267 +g27 +sa(dp78567 +g25273 +S'etching' +p78568 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78569 +sg25268 +S'Veduta ... della famiglia Plauzia' +p78570 +sg25270 +S'Giovanni Battista Piranesi' +p78571 +sa(dp78572 +g25268 +S'Veduta del Ponte Salario' +p78573 +sg25270 +S'Giovanni Battista Piranesi' +p78574 +sg25273 +S'etching' +p78575 +sg25275 +S'1756/1757' +p78576 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ffa2.jpg' +p78577 +sg25267 +g27 +sa(dp78578 +g25273 +S'etching' +p78579 +sg25267 +g27 +sg25275 +S'1750/1751' +p78580 +sg25268 +S"Veduta del Ponte e Castello Sant' Angelo" +p78581 +sg25270 +S'Giovanni Battista Piranesi' +p78582 +sa(dp78583 +g25273 +S'etching' +p78584 +sg25267 +g27 +sg25275 +S'probably 1747/1748' +p78585 +sg25268 +S'Frontispiece, with Statue of Minerva' +p78586 +sg25270 +S'Giovanni Battista Piranesi' +p78587 +sa(dp78588 +g25273 +S'etching' +p78589 +sg25267 +g27 +sg25275 +S'1755/1756' +p78590 +sg25268 +S"Veduta del Mausoleo d' Elio Adriano" +p78591 +sg25270 +S'Giovanni Battista Piranesi' +p78592 +sa(dp78593 +g25273 +S'etching' +p78594 +sg25267 +g27 +sg25275 +S'1751/1753' +p78595 +sg25268 +S'Veduta della Dogana di Terra' +p78596 +sg25270 +S'Giovanni Battista Piranesi' +p78597 +sa(dp78598 +g25273 +S'etching' +p78599 +sg25267 +g27 +sg25275 +S'probably 1748/1749' +p78600 +sg25268 +S'Veduta degli Avanzi di due Triclinj che appartenevano alla Casa aurea di Nerone' +p78601 +sg25270 +S'Giovanni Battista Piranesi' +p78602 +sa(dp78603 +g25273 +S'etching' +p78604 +sg25267 +g27 +sg25275 +S'1756/1757' +p78605 +sg25268 +S'Veduta del tempio di Bacco' +p78606 +sg25270 +S'Giovanni Battista Piranesi' +p78607 +sa(dp78608 +g25273 +S'etching' +p78609 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78610 +sg25268 +S"Veduta interna dell' antico Tempio di Bacco" +p78611 +sg25270 +S'Giovanni Battista Piranesi' +p78612 +sa(dp78613 +g25268 +S'Les heures du jour' +p78614 +sg25270 +S'Artist Information (' +p78615 +sg25273 +S'(artist after)' +p78616 +sg25275 +S'\n' +p78617 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a0009009.jpg' +p78618 +sg25267 +g27 +sa(dp78619 +g25273 +S'etching' +p78620 +sg25267 +g27 +sg25275 +S'1751/1753' +p78621 +sg25268 +S"Veduta dell' avanzo del Castello" +p78622 +sg25270 +S'Giovanni Battista Piranesi' +p78623 +sa(dp78624 +g25273 +S'etching' +p78625 +sg25267 +g27 +sg25275 +S'probably 1747/1748' +p78626 +sg25268 +S'Veduta del Sepolcro di Cajo Cestio' +p78627 +sg25270 +S'Giovanni Battista Piranesi' +p78628 +sa(dp78629 +g25273 +S'etching' +p78630 +sg25267 +g27 +sg25275 +S'1761' +p78631 +sg25268 +S'Piramide di C. Cestio' +p78632 +sg25270 +S'Giovanni Battista Piranesi' +p78633 +sa(dp78634 +g25273 +S'etching' +p78635 +sg25267 +g27 +sg25275 +S'probably 1749/1750' +p78636 +sg25268 +S'Veduta interna del Sepolcro di S. Costanza' +p78637 +sg25270 +S'Giovanni Battista Piranesi' +p78638 +sa(dp78639 +g25273 +S'etching' +p78640 +sg25267 +g27 +sg25275 +S'1750/1751' +p78641 +sg25268 +S'Veduta ... del Serraglio delle fiere fabbricato da Domiziano' +p78642 +sg25270 +S'Giovanni Battista Piranesi' +p78643 +sa(dp78644 +g25273 +S'etching' +p78645 +sg25267 +g27 +sg25275 +S'1750/1751' +p78646 +sg25268 +S"Veduta dell' Atrio del Portico di Ottavia" +p78647 +sg25270 +S'Giovanni Battista Piranesi' +p78648 +sa(dp78649 +g25273 +S'etching' +p78650 +sg25267 +g27 +sg25275 +S'1750/1751' +p78651 +sg25268 +S"Veduta interna dell' Atrio del Portico di Ottavia" +p78652 +sg25270 +S'Giovanni Battista Piranesi' +p78653 +sa(dp78654 +g25273 +S'etching' +p78655 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78656 +sg25268 +S'Veduta del Tempio delle Camene' +p78657 +sg25270 +S'Giovanni Battista Piranesi' +p78658 +sa(dp78659 +g25273 +S'etching' +p78660 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78661 +sg25268 +S"Veduta della fonte e delle Spelonche d' Egeria" +p78662 +sg25270 +S'Giovanni Battista Piranesi' +p78663 +sa(dp78664 +g25273 +S'etching' +p78665 +sg25267 +g27 +sg25275 +S'1756/1757' +p78666 +sg25268 +S'Veduta degli avanzi del Foro di Nerva' +p78667 +sg25270 +S'Giovanni Battista Piranesi' +p78668 +sa(dp78669 +g25268 +S'Le Bain' +p78670 +sg25270 +S'Artist Information (' +p78671 +sg25273 +S'(artist after)' +p78672 +sg25275 +S'\n' +p78673 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f3a.jpg' +p78674 +sg25267 +g27 +sa(dp78675 +g25273 +S'etching' +p78676 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78677 +sg25268 +S'Veduta degli avanzi del Foro di Nerva' +p78678 +sg25270 +S'Giovanni Battista Piranesi' +p78679 +sa(dp78680 +g25273 +S'etching' +p78681 +sg25267 +g27 +sg25275 +S'probably 1747/1748' +p78682 +sg25268 +S'Veduta del Romano Campidoglio' +p78683 +sg25270 +S'Giovanni Battista Piranesi' +p78684 +sa(dp78685 +g25273 +S'etching' +p78686 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78687 +sg25268 +S'Veduta della Piazza del Campidoglio' +p78688 +sg25270 +S'Giovanni Battista Piranesi' +p78689 +sa(dp78690 +g25273 +S'etching' +p78691 +sg25267 +g27 +sg25275 +S'1761' +p78692 +sg25268 +S'Veduta del Campidoglio di Fianco' +p78693 +sg25270 +S'Giovanni Battista Piranesi' +p78694 +sa(dp78695 +g25273 +S'etching' +p78696 +sg25267 +g27 +sg25275 +S'probably 1747/1748' +p78697 +sg25268 +S'Veduta di Campo Vaccino' +p78698 +sg25270 +S'Giovanni Battista Piranesi' +p78699 +sa(dp78700 +g25273 +S'etching' +p78701 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78702 +sg25268 +S'Veduta di Campo Vaccino' +p78703 +sg25270 +S'Giovanni Battista Piranesi' +p78704 +sa(dp78705 +g25273 +S'etching' +p78706 +sg25267 +g27 +sg25275 +S'probably 1749/1750' +p78707 +sg25268 +S"Veduta del Sito, ov'era l'antico Foro Romano" +p78708 +sg25270 +S'Giovanni Battista Piranesi' +p78709 +sa(dp78710 +g25273 +S'etching' +p78711 +sg25267 +g27 +sg25275 +S'probably 1749/1750' +p78712 +sg25268 +S"Veduta del Tempio d' Antonio e Faustina in Campo Vaccino" +p78713 +sg25270 +S'Giovanni Battista Piranesi' +p78714 +sa(dp78715 +g25273 +S'etching' +p78716 +sg25267 +g27 +sg25275 +S'1753/1754' +p78717 +sg25268 +S'Veduta del Tempio di Giove Tonante' +p78718 +sg25270 +S'Giovanni Battista Piranesi' +p78719 +sa(dp78720 +g25273 +S'etching' +p78721 +sg25267 +g27 +sg25275 +S'probably 1749/1750' +p78722 +sg25268 +S'Veduta degli avanzi del Tablino della Casa Aurea di Nerone' +p78723 +sg25270 +S'Giovanni Battista Piranesi' +p78724 +sa(dp78725 +g25268 +S'La Toilette' +p78726 +sg25270 +S'Artist Information (' +p78727 +sg25273 +S'(artist after)' +p78728 +sg25275 +S'\n' +p78729 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f39.jpg' +p78730 +sg25267 +g27 +sa(dp78731 +g25273 +S'etching' +p78732 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78733 +sg25268 +S'Veduta degli avanzi del tablino della Casa aurea di Nerone' +p78734 +sg25270 +S'Giovanni Battista Piranesi' +p78735 +sa(dp78736 +g25273 +S'etching' +p78737 +sg25267 +g27 +sg25275 +S'probably 1749/1750' +p78738 +sg25268 +S'Teatro di Marcello' +p78739 +sg25270 +S'Giovanni Battista Piranesi' +p78740 +sa(dp78741 +g25273 +S'etching' +p78742 +sg25267 +g27 +sg25275 +S'1750/1751' +p78743 +sg25268 +S'Veduta del tempio della Fortuna Virile' +p78744 +sg25270 +S'Giovanni Battista Piranesi' +p78745 +sa(dp78746 +g25273 +S'etching' +p78747 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78748 +sg25268 +S'Veduta del Tempio detto della Concordia' +p78749 +sg25270 +S'Giovanni Battista Piranesi' +p78750 +sa(dp78751 +g25273 +S'etching' +p78752 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78753 +sg25268 +S'Altra veduta degli avanzi del Pronao del Tempio della Concordia' +p78754 +sg25270 +S'Giovanni Battista Piranesi' +p78755 +sa(dp78756 +g25273 +S'etching' +p78757 +sg25267 +g27 +sg25275 +S'1753/1754' +p78758 +sg25268 +S'Veduta del Tempio di Cibele' +p78759 +sg25270 +S'Giovanni Battista Piranesi' +p78760 +sa(dp78761 +g25273 +S'etching' +p78762 +sg25267 +g27 +sg25275 +S'probably 1748/1749' +p78763 +sg25268 +S'Colonna Trajana' +p78764 +sg25270 +S'Giovanni Battista Piranesi' +p78765 +sa(dp78766 +g25273 +S'etching' +p78767 +sg25267 +g27 +sg25275 +S'probably 1748/1749' +p78768 +sg25268 +S'Colonna Antonina' +p78769 +sg25270 +S'Giovanni Battista Piranesi' +p78770 +sa(dp78771 +g25273 +S'etching' +p78772 +sg25267 +g27 +sg25275 +S'probably 1749/1750' +p78773 +sg25268 +S'Obelisco Egizio' +p78774 +sg25270 +S'Giovanni Battista Piranesi' +p78775 +sa(dp78776 +g25273 +S'etching' +p78777 +sg25267 +g27 +sg25275 +S'probably 1749/1750' +p78778 +sg25268 +S'Arco di Settimio Severo' +p78779 +sg25270 +S'Giovanni Battista Piranesi' +p78780 +sa(dp78781 +g25268 +S'Marie-Antoinette, Dauphine' +p78782 +sg25270 +S'Artist Information (' +p78783 +sg25273 +S'(artist after)' +p78784 +sg25275 +S'\n' +p78785 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cc7.jpg' +p78786 +sg25267 +g27 +sa(dp78787 +g25273 +S'etching' +p78788 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78789 +sg25268 +S"Veduta dell' Arco di Settimio Severo" +p78790 +sg25270 +S'Giovanni Battista Piranesi' +p78791 +sa(dp78792 +g25273 +S'etching' +p78793 +sg25267 +g27 +sg25275 +S'1756/1757' +p78794 +sg25268 +S"Veduta dell' Arco di Tito" +p78795 +sg25270 +S'Giovanni Battista Piranesi' +p78796 +sa(dp78797 +g25273 +S'etching' +p78798 +sg25267 +g27 +sg25275 +S'1761' +p78799 +sg25268 +S"Veduta dell' ... Colosseo" +p78800 +sg25270 +S'Giovanni Battista Piranesi' +p78801 +sa(dp78802 +g25273 +S'etching' +p78803 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78804 +sg25268 +S"Veduta dell' interno dell' ... Colosseo" +p78805 +sg25270 +S'Giovanni Battista Piranesi' +p78806 +sa(dp78807 +g25273 +S'etching' +p78808 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78809 +sg25268 +S"Veduta dell' ... Colosseo" +p78810 +sg25270 +S'Giovanni Battista Piranesi' +p78811 +sa(dp78812 +g25273 +S'etching' +p78813 +sg25267 +g27 +sg25275 +S'probably 1747/1748' +p78814 +sg25268 +S"Veduta dell' Arco di Costantino, e ... il Colosseo" +p78815 +sg25270 +S'Giovanni Battista Piranesi' +p78816 +sa(dp78817 +g25273 +S'etching' +p78818 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78819 +sg25268 +S"Veduta dell' Arco di Costantino" +p78820 +sg25270 +S'Giovanni Battista Piranesi' +p78821 +sa(dp78822 +g25273 +S'etching' +p78823 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78824 +sg25268 +S"Veduta del Monumento eretto dall' Imperador Tito Vespasiano" +p78825 +sg25270 +S'Giovanni Battista Piranesi' +p78826 +sa(dp78827 +g25273 +S'etching' +p78828 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78829 +sg25268 +S'Veduta del Sepolcro di Pisone Liciniano' +p78830 +sg25270 +S'Giovanni Battista Piranesi' +p78831 +sa(dp78832 +g25273 +S'etching' +p78833 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78834 +sg25268 +S'Tempio antico volgarmente detto della Salute' +p78835 +sg25270 +S'Giovanni Battista Piranesi' +p78836 +sa(dp78837 +g25268 +S"L'accident imprevu" +p78838 +sg25270 +S'Artist Information (' +p78839 +sg25273 +S'(artist after)' +p78840 +sg25275 +S'\n' +p78841 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096bc.jpg' +p78842 +sg25267 +g27 +sa(dp78843 +g25273 +S'etching' +p78844 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78845 +sg25268 +S'Rovine delle Terme Antoniniane' +p78846 +sg25270 +S'Giovanni Battista Piranesi' +p78847 +sa(dp78848 +g25268 +S'In Church' +p78849 +sg25270 +S'Honor\xc3\xa9 Daumier' +p78850 +sg25273 +S'oil on wood' +p78851 +sg25275 +S'1855/1857' +p78852 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00109/a00109de.jpg' +p78853 +sg25267 +g27 +sa(dp78854 +g25273 +S'(painter)' +p78855 +sg25267 +g27 +sg25275 +S'\n' +p78856 +sg25268 +S'Feast of the Gods' +p78857 +sg25270 +S'Artist Information (' +p78858 +sa(dp78859 +g25268 +S'Artist and Model' +p78860 +sg25270 +S'Jean-Louis Forain' +p78861 +sg25273 +S'oil on canvas' +p78862 +sg25275 +S'1925' +p78863 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000657.jpg' +p78864 +sg25267 +g27 +sa(dp78865 +g25268 +S'Behind the Scenes' +p78866 +sg25270 +S'Jean-Louis Forain' +p78867 +sg25273 +S'oil on canvas' +p78868 +sg25275 +S'c. 1880' +p78869 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000644.jpg' +p78870 +sg25267 +g27 +sa(dp78871 +g25268 +S'The Stockade' +p78872 +sg25270 +S'Jean-Louis Forain' +p78873 +sg25273 +S'oil on canvas' +p78874 +sg25275 +S'probably c. 1908' +p78875 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000645.jpg' +p78876 +sg25267 +g27 +sa(dp78877 +g25268 +S'The Petitioner' +p78878 +sg25270 +S'Jean-Louis Forain' +p78879 +sg25273 +S'oil on canvas' +p78880 +sg25275 +S'c. 1910' +p78881 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000651.jpg' +p78882 +sg25267 +g27 +sa(dp78883 +g25268 +S'Alexander Arnold Hannay' +p78884 +sg25270 +S'James McNeill Whistler' +p78885 +sg25273 +S'oil on wood' +p78886 +sg25275 +S'c. 1896' +p78887 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d4a.jpg' +p78888 +sg25267 +g27 +sa(dp78889 +g25273 +S'oil on panel' +p78890 +sg25267 +g27 +sg25275 +S'c. 1890-1894' +p78891 +sg25268 +S'Peach Blossom' +p78892 +sg25270 +S'Beatrice Godwin Whistler' +p78893 +sa(dp78894 +g25268 +S'Seated Figure' +p78895 +sg25270 +S'Jules Pascin' +p78896 +sg25273 +S'graphite on wove paper' +p78897 +sg25275 +S'unknown date\n' +p78898 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a000722c.jpg' +p78899 +sg25267 +g27 +sa(dp78900 +g25268 +S'The Preparations for the Ballet' +p78901 +sg25270 +S'Artist Information (' +p78902 +sg25273 +S'(artist after)' +p78903 +sg25275 +S'\n' +p78904 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc45.jpg' +p78905 +sg25267 +g27 +sa(dp78906 +g25268 +S'Job and His Daughters' +p78907 +sg25270 +S'William Blake' +p78908 +sg25273 +S'pen and tempera on canvas' +p78909 +sg25275 +S'1799/1800' +p78910 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000fc.jpg' +p78911 +sg25267 +g27 +sa(dp78912 +g25273 +S'etching' +p78913 +sg25267 +g27 +sg25275 +S'1766' +p78914 +sg25268 +S'Veduta della Cascata di Tivoli' +p78915 +sg25270 +S'Giovanni Battista Piranesi' +p78916 +sa(dp78917 +g25273 +S'etching' +p78918 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78919 +sg25268 +S'Sepolcro di Cecilia Metella' +p78920 +sg25270 +S'Giovanni Battista Piranesi' +p78921 +sa(dp78922 +g25273 +S'etching' +p78923 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78924 +sg25268 +S'Rovine del Sisto o sia della gran sala delle Terme Antoniniane' +p78925 +sg25270 +S'Giovanni Battista Piranesi' +p78926 +sa(dp78927 +g25273 +S'etching' +p78928 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78929 +sg25268 +S'Tempio detto volgarmente di Giano' +p78930 +sg25270 +S'Giovanni Battista Piranesi' +p78931 +sa(dp78932 +g25273 +S'etching' +p78933 +sg25267 +g27 +sg25275 +S'unknown date\n' +p78934 +sg25268 +S'Veduta del Tempio ottangolare di Minerva Medica' +p78935 +sg25270 +S'Giovanni Battista Piranesi' +p78936 +sa(dp78937 +g25268 +S'David Slaying Goliath' +p78938 +sg25270 +S'Artist Information (' +p78939 +sg25273 +S'(artist after)' +p78940 +sg25275 +S'\n' +p78941 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb6b.jpg' +p78942 +sg25267 +g27 +sa(dp78943 +g25268 +S'Breezing Up (A Fair Wind)' +p78944 +sg25270 +S'Winslow Homer' +p78945 +sg25273 +S'oil on canvas' +p78946 +sg25275 +S'1873-1876' +p78947 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000101.jpg' +p78948 +sg25267 +S'Homer developed a penchant for forceful realism early in his career. Following an apprenticeship in a Boston lithography shop, he supported himself as a freelance illustrator, creating a wide variety of popular images that subsequently were published as wood engravings in national periodicals like \n Upon his return to the United States, Homer turned his attention to lively scenes of sports and recreation, painting warm and appealing images that perfectly suited the prevalent postwar nostalgia for a simpler, more innocent America. \n ' +p78949 +sa(dp78950 +g25268 +S'Commodore John Rodgers' +p78951 +sg25270 +S'John Wesley Jarvis' +p78952 +sg25273 +S'oil on canvas' +p78953 +sg25275 +S'c. 1814' +p78954 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000116.jpg' +p78955 +sg25267 +g27 +sa(dp78956 +g25268 +S"L'assemblee au concert" +p78957 +sg25270 +S'Artist Information (' +p78958 +sg25273 +S'(artist after)' +p78959 +sg25275 +S'\n' +p78960 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096e5.jpg' +p78961 +sg25267 +g27 +sa(dp78962 +g25268 +S'The Eel Gatherers' +p78963 +sg25270 +S'Jean-Baptiste-Camille Corot' +p78964 +sg25273 +S'oil on canvas' +p78965 +sg25275 +S'1860/1865' +p78966 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dc4.jpg' +p78967 +sg25267 +g27 +sa(dp78968 +g25268 +S'The Stream (Le Ruisseau du Puits-Noir; vall\xc3\xa9e de la Loue)' +p78969 +sg25270 +S'Gustave Courbet' +p78970 +sg25273 +S'oil on canvas' +p78971 +sg25275 +S'1855' +p78972 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000db4.jpg' +p78973 +sg25267 +S'Courbet painted events and scenery primarily from his native Ornans, a village in the remote\nFranche-Comté region. A proponent of realism, he challenged traditional ideas about art\nby depicting simple peasants and rustic scenery with dignity and on the grand scale usually\nreserved for history paintings.\n Overhanging trees and lush green undergrowth surround a narrow waterway in the forest\ninterior shown in \n When he exhibited this painting at the Exposition Universelle in 1855, Courbet specifically\nidentified the wooded gorge in \n ' +p78974 +sa(dp78975 +g25273 +S'page size: 28.2 x 20.6 cm (11 1/8 x 8 1/8 in.)' +p78976 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: 124 etchings and engravings on laid paper by various artists under the direction of P.-F. Basan' +p78977 +sg25268 +S"Recueil d'estampes gravees d'apres les tableaux du cabinet ... le duc De Choiseul" +p78978 +sg25270 +S'Various Artists' +p78979 +sa(dp78980 +g25273 +S'page size: 29.3 x 19.6 cm (11 9/16 x 7 11/16 in.)' +p78981 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: 50 etchings and engravings on laid paper (plates 1-50)' +p78982 +sg25268 +S"Galerie Durand-Ruel: Recueil d'estampes gravees a l'eau-forte (volume I)" +p78983 +sg25270 +S'Various Artists' +p78984 +sa(dp78985 +g25273 +S'page size: 29.3 x 19.6 cm (11 9/16 x 7 11/16 in.)' +p78986 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: 50 etchings and engravings on laid paper (plates 51-100)' +p78987 +sg25268 +S"Galerie Durand-Ruel: Recueil d'estampes gravees a l'eau-forte (volume II)" +p78988 +sg25270 +S'Various Artists' +p78989 +sa(dp78990 +g25273 +S'page size: 29.3 x 19.6 cm (11 9/16 x 7 11/16 in.)' +p78991 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: 50 etchings and engravings on laid paper (plates 101-150)' +p78992 +sg25268 +S"Galerie Durand-Ruel: Recueil d'estampes gravees a l'eau-forte (volume III)" +p78993 +sg25270 +S'Various Artists' +p78994 +sa(dp78995 +g25273 +S'page size: 29.3 x 19.6 cm (11 9/16 x 7 11/16 in.)' +p78996 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: 50 etchings and engravings on laid paper (plates 151-200)' +p78997 +sg25268 +S"Galerie Durand-Ruel: Recueil d'estampes gravees a l'eau-forte (volume IV)" +p78998 +sg25270 +S'Various Artists' +p78999 +sa(dp79000 +g25273 +S'page size: 29.3 x 19.6 cm (11 9/16 x 7 11/16 in.)' +p79001 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: 50 etchings and engravings on laid paper (plates 201-250)' +p79002 +sg25268 +S"Galerie Durand-Ruel: Recueil d'estampes gravees a l'eau-forte (volume V)" +p79003 +sg25270 +S'Various Artists' +p79004 +sa(dp79005 +g25273 +S'page size: 29.3 x 19.6 cm (11 9/16 x 7 11/16 in.)' +p79006 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: 50 etchings and engravings on laid paper (plates 251-300)' +p79007 +sg25268 +S"Galerie Durand-Ruel: Recueil d'estampes gravees a l'eau-forte (volume VI)" +p79008 +sg25270 +S'Various Artists' +p79009 +sa(dp79010 +g25273 +S'(author)' +p79011 +sg25267 +g27 +sg25275 +S'\n' +p79012 +sg25268 +S'Ballads' +p79013 +sg25270 +S'Artist Information (' +p79014 +sa(dp79015 +g25268 +S"L'assemblee au salon" +p79016 +sg25270 +S'Artist Information (' +p79017 +sg25273 +S'(artist after)' +p79018 +sg25275 +S'\n' +p79019 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096e6.jpg' +p79020 +sg25267 +g27 +sa(dp79021 +g25273 +S'(author)' +p79022 +sg25267 +g27 +sg25275 +S'\n' +p79023 +sg25268 +S'The Triumph of Temper' +p79024 +sg25270 +S'Artist Information (' +p79025 +sa(dp79026 +g25268 +S'Amos Lawrence' +p79027 +sg25270 +S'Chester Harding' +p79028 +sg25273 +S'oil on canvas' +p79029 +sg25275 +S'c. 1845' +p79030 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000db.jpg' +p79031 +sg25267 +g27 +sa(dp79032 +g25268 +S'An Easter Calendar Beginning with the Year 1466' +p79033 +sg25270 +S'German 15th Century' +p79034 +sg25273 +S'image: 18.8 x 13.8 cm (7 3/8 x 5 7/16 in.)\r\nsheet: 21.3 x 16 cm (8 3/8 x 6 5/16 in.)\r\noverall (external frame dimensions): 39.4 x 31.8 cm (15 1/2 x 12 1/2 in.)' +p79035 +sg25275 +S'\nwoodcut in dark brown, hand-colored in yellow, ochre, green, rose, and brown' +p79036 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005682.jpg' +p79037 +sg25267 +g27 +sa(dp79038 +g25268 +S'Saint Jerome in the Desert' +p79039 +sg25270 +S'Hans Baldung Grien' +p79040 +sg25273 +S'woodcut' +p79041 +sg25275 +S'1511' +p79042 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7eb.jpg' +p79043 +sg25267 +g27 +sa(dp79044 +g25268 +S'The Young White King at the Butts' +p79045 +sg25270 +S'Leonhard Beck' +p79046 +sg25273 +S'woodcut' +p79047 +sg25275 +S'1514/1516' +p79048 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000ae14.jpg' +p79049 +sg25267 +g27 +sa(dp79050 +g25268 +S'Sketch of a Woman' +p79051 +sg25270 +S'Richard Parkes Bonington' +p79052 +sg25273 +S'pen and brown ink on wove paper' +p79053 +sg25275 +S'1828' +p79054 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006beb.jpg' +p79055 +sg25267 +g27 +sa(dp79056 +g25273 +S'(artist)' +p79057 +sg25267 +g27 +sg25275 +S'\n' +p79058 +sg25268 +S'Receuil de Fontaines; Second Livre de Fontaines ...' +p79059 +sg25270 +S'Artist Information (' +p79060 +sa(dp79061 +g25273 +S'lithograph' +p79062 +sg25267 +g27 +sg25275 +S'unknown date\n' +p79063 +sg25268 +S'Salute to the Sun' +p79064 +sg25270 +S'Angel Bracho' +p79065 +sa(dp79066 +g25268 +S'Saint Peter' +p79067 +sg25270 +S'Giovanni Antonio da Brescia' +p79068 +sg25273 +S'engraving' +p79069 +sg25275 +S'c. 1507' +p79070 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c73f.jpg' +p79071 +sg25267 +g27 +sa(dp79072 +g25273 +S'lithograph' +p79073 +sg25267 +g27 +sg25275 +S'unknown date\n' +p79074 +sg25268 +S'The Injured Eye' +p79075 +sg25270 +S'Julio Castellanos' +p79076 +sa(dp79077 +g25268 +S'La balancoire mysterieuse' +p79078 +sg25270 +S'Artist Information (' +p79079 +sg25273 +S'(artist after)' +p79080 +sg25275 +S'\n' +p79081 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e82.jpg' +p79082 +sg25267 +g27 +sa(dp79083 +g25268 +S"Cabinet d'un Peintre" +p79084 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p79085 +sg25273 +S'etching' +p79086 +sg25275 +S'1771' +p79087 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b33a.jpg' +p79088 +sg25267 +g27 +sa(dp79089 +g25273 +S'lithograph' +p79090 +sg25267 +g27 +sg25275 +S'unknown date\n' +p79091 +sg25268 +S'Head of a Woman' +p79092 +sg25270 +S'Francisco Dosamantes' +p79093 +sa(dp79094 +g25268 +S'Auti te Pape (Women at the River)' +p79095 +sg25270 +S'Paul Gauguin' +p79096 +sg25273 +S'woodcut printed in black and gray by Pola Gauguin in 1921' +p79097 +sg25275 +S'1894/1895' +p79098 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a000673b.jpg' +p79099 +sg25267 +g27 +sa(dp79100 +g25268 +S'Title Page for "Le Sourire" (Titre du Sourire)' +p79101 +sg25270 +S'Paul Gauguin' +p79102 +sg25273 +S'woodcut printed in black and gray by Pola Gauguin in 1921' +p79103 +sg25275 +S'in or after 1895' +p79104 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a88.jpg' +p79105 +sg25267 +g27 +sa(dp79106 +g25268 +S'Nave Nave Fenua (Delightful Land)' +p79107 +sg25270 +S'Paul Gauguin' +p79108 +sg25273 +S'woodcut printed in black and gray by Pola Gauguin in 1921' +p79109 +sg25275 +S'1894/1895' +p79110 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a78.jpg' +p79111 +sg25267 +g27 +sa(dp79112 +g25268 +S'Noa Noa (Fragrant, Fragrant)' +p79113 +sg25270 +S'Paul Gauguin' +p79114 +sg25273 +S'woodcut printed in black and gray by Pola Gauguin in 1921' +p79115 +sg25275 +S'1894/1895' +p79116 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a000673f.jpg' +p79117 +sg25267 +g27 +sa(dp79118 +g25268 +S'Manoa Tupapau (She is Haunted by a Spirit)' +p79119 +sg25270 +S'Paul Gauguin' +p79120 +sg25273 +S'woodcut printed in black and gray by Pola Gauguin in 1921' +p79121 +sg25275 +S'1894/1895' +p79122 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a7a.jpg' +p79123 +sg25267 +g27 +sa(dp79124 +g25268 +S'Te Po (The Long Night)' +p79125 +sg25270 +S'Paul Gauguin' +p79126 +sg25273 +S'woodcut printed in black and gray by Pola Gauguin in 1921' +p79127 +sg25275 +S'1894/1895' +p79128 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a79.jpg' +p79129 +sg25267 +g27 +sa(dp79130 +g25268 +S'Les nymphes scrupuleuses' +p79131 +sg25270 +S'Artist Information (' +p79132 +sg25273 +S'(artist after)' +p79133 +sg25275 +S'\n' +p79134 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e81.jpg' +p79135 +sg25267 +g27 +sa(dp79136 +g25268 +S"The Universe is Created (L'Univers est cree)" +p79137 +sg25270 +S'Paul Gauguin' +p79138 +sg25273 +S'woodcut printed in black and gray by Pola Gauguin in 1921' +p79139 +sg25275 +S'c. 1894' +p79140 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a77.jpg' +p79141 +sg25267 +g27 +sa(dp79142 +g25268 +S'Maruru (Thank You)' +p79143 +sg25270 +S'Paul Gauguin' +p79144 +sg25273 +S'woodcut printed in black and gray on China paper by Pola Gauguin in 1921' +p79145 +sg25275 +S'1894/1895' +p79146 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066dc.jpg' +p79147 +sg25267 +g27 +sa(dp79148 +g25268 +S'Mahna no Varua Ino (The Devil Speaks)' +p79149 +sg25270 +S'Paul Gauguin' +p79150 +sg25273 +S'woodcut printed in black and gray by Pola Gauguin in 1921' +p79151 +sg25275 +S'1894/1895' +p79152 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a7e.jpg' +p79153 +sg25267 +g27 +sa(dp79154 +g25268 +S'Cup' +p79155 +sg25270 +S'Wenzel Jamnitzer I' +p79156 +sg25273 +S'etching' +p79157 +sg25275 +S'unknown date\n' +p79158 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac97.jpg' +p79159 +sg25267 +g27 +sa(dp79160 +g25268 +S'Cup' +p79161 +sg25270 +S'Wenzel Jamnitzer I' +p79162 +sg25273 +S'etching' +p79163 +sg25275 +S'unknown date\n' +p79164 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac98.jpg' +p79165 +sg25267 +g27 +sa(dp79166 +g25268 +S'Jar with Neptune' +p79167 +sg25270 +S'Wenzel Jamnitzer I' +p79168 +sg25273 +S'etching' +p79169 +sg25275 +S'unknown date\n' +p79170 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac96.jpg' +p79171 +sg25267 +g27 +sa(dp79172 +g25268 +S'Woman and Child (Weib und Kind)' +p79173 +sg25270 +S'Wilhelm Lehmbruck' +p79174 +sg25273 +S'drypoint' +p79175 +sg25275 +S'1914' +p79176 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c45e.jpg' +p79177 +sg25267 +g27 +sa(dp79178 +g25268 +S'Macbeth V (The Vision of Lady Macbeth)' +p79179 +sg25270 +S'Wilhelm Lehmbruck' +p79180 +sg25273 +S'Etching and drypoint' +p79181 +sg25275 +S'1918' +p79182 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c459.jpg' +p79183 +sg25267 +g27 +sa(dp79184 +g25273 +S'1 vol: ill: 6 engravings' +p79185 +sg25267 +g27 +sg25275 +S'c. 1670' +p79186 +sg25268 +S"Panaux d'ornements et graves nouvellement" +p79187 +sg25270 +S'Alexis Loir I' +p79188 +sa(dp79189 +g25268 +S'Saint Bartholomew' +p79190 +sg25270 +S'Master FVB' +p79191 +sg25273 +S'engraving' +p79192 +sg25275 +S'c. 1490/1500' +p79193 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cce0.jpg' +p79194 +sg25267 +g27 +sa(dp79195 +g25268 +S'Le Billet doux' +p79196 +sg25270 +S'Artist Information (' +p79197 +sg25273 +S'(artist after)' +p79198 +sg25275 +S'\n' +p79199 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e87.jpg' +p79200 +sg25267 +g27 +sa(dp79201 +g25268 +S'Saint Paul' +p79202 +sg25270 +S'Master FVB' +p79203 +sg25273 +S'engraving' +p79204 +sg25275 +S'c. 1490/1500' +p79205 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccdb.jpg' +p79206 +sg25267 +g27 +sa(dp79207 +g25268 +S'Saint Paul' +p79208 +sg25270 +S'Master FVB' +p79209 +sg25273 +S'engraving' +p79210 +sg25275 +S'c. 1490/1500' +p79211 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cce2.jpg' +p79212 +sg25267 +g27 +sa(dp79213 +g25268 +S'Saint John the Evangelist' +p79214 +sg25270 +S'Master i.e.' +p79215 +sg25273 +S'engraving' +p79216 +sg25275 +S'c. 1480/1490' +p79217 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3bd.jpg' +p79218 +sg25267 +g27 +sa(dp79219 +g25273 +S'lithograph' +p79220 +sg25267 +g27 +sg25275 +S'1928' +p79221 +sg25268 +S'The Flag' +p79222 +sg25270 +S'Jos\xc3\xa9 Clemente Orozco' +p79223 +sa(dp79224 +g25273 +S'lithograph' +p79225 +sg25267 +g27 +sg25275 +S'1928' +p79226 +sg25268 +S'Requiem' +p79227 +sg25270 +S'Jos\xc3\xa9 Clemente Orozco' +p79228 +sa(dp79229 +g25268 +S'Eyeglass Peddlar' +p79230 +sg25270 +S'Adriaen van Ostade' +p79231 +sg25273 +S'etching' +p79232 +sg25275 +S'probably 1646' +p79233 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2ae.jpg' +p79234 +sg25267 +g27 +sa(dp79235 +g25268 +S'Christ Consoling the Centurion' +p79236 +sg25270 +S'Master IB' +p79237 +sg25273 +S'engraving' +p79238 +sg25275 +S'unknown date\n' +p79239 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000accf.jpg' +p79240 +sg25267 +g27 +sa(dp79241 +g25268 +S'Christ with Three of His Apostles' +p79242 +sg25270 +S'Master IB' +p79243 +sg25273 +S'engraving' +p79244 +sg25275 +S'unknown date\n' +p79245 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000accd.jpg' +p79246 +sg25267 +g27 +sa(dp79247 +g25268 +S'Christ Stilling the Storm' +p79248 +sg25270 +S'Master IB' +p79249 +sg25273 +S'engraving' +p79250 +sg25275 +S'unknown date\n' +p79251 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acce.jpg' +p79252 +sg25267 +g27 +sa(dp79253 +g25268 +S'Le Billet doux' +p79254 +sg25270 +S'Artist Information (' +p79255 +sg25273 +S'(artist after)' +p79256 +sg25275 +S'\n' +p79257 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096d7.jpg' +p79258 +sg25267 +g27 +sa(dp79259 +g25268 +S'Couverture - Frontispice' +p79260 +sg25270 +S'Odilon Redon' +p79261 +sg25273 +S'lithograph' +p79262 +sg25275 +S'1890' +p79263 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e0e.jpg' +p79264 +sg25267 +g27 +sa(dp79265 +g25268 +S'Les Fleurs du Mal' +p79266 +sg25270 +S'Odilon Redon' +p79267 +sg25273 +S'portfolio with 9 lithographs' +p79268 +sg25275 +S'1890' +p79269 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a00a.jpg' +p79270 +sg25267 +g27 +sa(dp79271 +g25268 +S"Je t'adore a l'egal de la voute nocturne. O vase de tristesse, o grande taciturne (I adore you as I adore the vault of the night sky, O vessel of sadness, O tall silent woman)" +p79272 +sg25270 +S'Odilon Redon' +p79273 +sg25273 +S'lithograph' +p79274 +sg25275 +S'1890' +p79275 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005dd5.jpg' +p79276 +sg25267 +g27 +sa(dp79277 +g25268 +S"Parfois on trouve un vieux flacon qui se souvient, d'ou jaillit toute vive une ame qui revient (Sometimes one finds an old reminiscing flask, whence issues in full life a returning soul)" +p79278 +sg25270 +S'Odilon Redon' +p79279 +sg25273 +S'lithograph' +p79280 +sg25275 +S'1890' +p79281 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c9f.jpg' +p79282 +sg25267 +g27 +sa(dp79283 +g25268 +S'Si par une nuit lourde et sombre, un bon chretien, par charite, derriere quelque vieux decombre, enterre votre corps voute (If on a close dark night a good Christian, out of charity, behind some old ruin, buries your arched body)' +p79284 +sg25270 +S'Odilon Redon' +p79285 +sg25273 +S'lithograph' +p79286 +sg25275 +S'1890' +p79287 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ca0.jpg' +p79288 +sg25267 +g27 +sa(dp79289 +g25268 +S'Volupte, Fantome Elastique! (Pleasure, elastic phantom!)' +p79290 +sg25270 +S'Odilon Redon' +p79291 +sg25273 +S'lithograph' +p79292 +sg25275 +S'1890' +p79293 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c9d.jpg' +p79294 +sg25267 +g27 +sa(dp79295 +g25268 +S'Sur le fond de nos nuits dieu de son doigt savant dessine un cauchemar multiforme et sans treve (On backdrop of our nights God with His knowing finger traces a multiform implacable nightmare)' +p79296 +sg25270 +S'Odilon Redon' +p79297 +sg25273 +S'lithograph' +p79298 +sg25275 +S'1890' +p79299 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ca1.jpg' +p79300 +sg25267 +g27 +sa(dp79301 +g25268 +S"Sans cesse a mes cotes s'agite le demon (Ceaselessly by my side the demon stirs)" +p79302 +sg25270 +S'Odilon Redon' +p79303 +sg25273 +S'lithograph' +p79304 +sg25275 +S'1890' +p79305 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ca2.jpg' +p79306 +sg25267 +g27 +sa(dp79307 +g25268 +S"Gloire et louange a toi, satan, dans les hauteurs du ciel ou tu regnas, et dans les profondeurs de l'enfer, ou vaincu, tu reves en silence! (Glory and praise to you, Satan, in the heights of heaven, where you reigned, and in thedepths of hell, where, vanquished, you dream in s ilence!)" +p79308 +sg25270 +S'Odilon Redon' +p79309 +sg25273 +S'lithograph' +p79310 +sg25275 +S'1890' +p79311 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ca3.jpg' +p79312 +sg25267 +g27 +sa(dp79313 +g25268 +S'Cul-de-Lampe' +p79314 +sg25270 +S'Odilon Redon' +p79315 +sg25273 +S'lithograph' +p79316 +sg25275 +S'1890' +p79317 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c9e.jpg' +p79318 +sg25267 +g27 +sa(dp79319 +g25268 +S'Le Billet doux' +p79320 +sg25270 +S'Artist Information (' +p79321 +sg25273 +S'(artist after)' +p79322 +sg25275 +S'\n' +p79323 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096d6.jpg' +p79324 +sg25267 +g27 +sa(dp79325 +g25268 +S'Jan Asselyn' +p79326 +sg25270 +S'Rembrandt van Rijn' +p79327 +sg25273 +S'etching, drypoint and burin' +p79328 +sg25275 +S'c. 1647' +p79329 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d373.jpg' +p79330 +sg25267 +g27 +sa(dp79331 +g25268 +S'Woman with the Arrow' +p79332 +sg25270 +S'Rembrandt van Rijn' +p79333 +sg25273 +S'etching, drypoint and burin' +p79334 +sg25275 +S'1661' +p79335 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b07.jpg' +p79336 +sg25267 +g27 +sa(dp79337 +g25268 +S'Jan Antonides van der Linden' +p79338 +sg25270 +S'Rembrandt van Rijn' +p79339 +sg25273 +S'etching, drypoint and burin' +p79340 +sg25275 +S'1665' +p79341 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d35c.jpg' +p79342 +sg25267 +g27 +sa(dp79343 +g25273 +S'color aquatint' +p79344 +sg25267 +g27 +sg25275 +S'1936' +p79345 +sg25268 +S'Dame a la Huppe' +p79346 +sg25270 +S'Georges Rouault' +p79347 +sa(dp79348 +g25273 +S'lithograph in black' +p79349 +sg25267 +g27 +sg25275 +S'1929' +p79350 +sg25268 +S'Faubourg des Longues Peines (Demenagement)' +p79351 +sg25270 +S'Georges Rouault' +p79352 +sa(dp79353 +g25273 +S'portfolio with six lithographs plus title page' +p79354 +sg25267 +g27 +sg25275 +S'published 1929' +p79355 +sg25268 +S'La Petite Banlieue' +p79356 +sg25270 +S'Georges Rouault' +p79357 +sa(dp79358 +g25273 +S'lithograph in black' +p79359 +sg25267 +g27 +sg25275 +S'1929' +p79360 +sg25268 +S'Faubourg des Longues Peines (Dans la Rue)' +p79361 +sg25270 +S'Georges Rouault' +p79362 +sa(dp79363 +g25273 +S'lithograph in black' +p79364 +sg25267 +g27 +sg25275 +S'1929' +p79365 +sg25268 +S'Faubourg des Longues Peines (La Pauvre Eglise)' +p79366 +sg25270 +S'Georges Rouault' +p79367 +sa(dp79368 +g25273 +S'lithograph in black' +p79369 +sg25267 +g27 +sg25275 +S'1929' +p79370 +sg25268 +S'De Profundis' +p79371 +sg25270 +S'Georges Rouault' +p79372 +sa(dp79373 +g25273 +S'lithograph in black' +p79374 +sg25267 +g27 +sg25275 +S'1929' +p79375 +sg25268 +S'Faubourg des Longues Peines (La Pauvre Famille)' +p79376 +sg25270 +S'Georges Rouault' +p79377 +sa(dp79378 +g25268 +S"Qu'en dit l'Abb\xc3\xa9?" +p79379 +sg25270 +S'Artist Information (' +p79380 +sg25273 +S'(artist after)' +p79381 +sg25275 +S'\n' +p79382 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096d4.jpg' +p79383 +sg25267 +g27 +sa(dp79384 +g25273 +S'lithograph in black' +p79385 +sg25267 +g27 +sg25275 +S'1929' +p79386 +sg25268 +S'Faubourg des Longues Peines (Impasse)' +p79387 +sg25270 +S'Georges Rouault' +p79388 +sa(dp79389 +g25268 +S'Saint Lawrence' +p79390 +sg25270 +S'Martin Schongauer' +p79391 +sg25273 +S'engraving' +p79392 +sg25275 +S'c. 1490/1491' +p79393 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4b3.jpg' +p79394 +sg25267 +g27 +sa(dp79395 +g25268 +S'The Nativity' +p79396 +sg25270 +S'Martin Schongauer' +p79397 +sg25273 +S'engraving' +p79398 +sg25275 +S'c. 1480/1490' +p79399 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a47a.jpg' +p79400 +sg25267 +g27 +sa(dp79401 +g25273 +S'lithograph' +p79402 +sg25267 +g27 +sg25275 +S'unknown date\n' +p79403 +sg25268 +S'Reclining Nude' +p79404 +sg25270 +S'David Alfaro Siqueiros' +p79405 +sa(dp79406 +g25268 +S"Children's Pastime (Jeux d'enfants)" +p79407 +sg25270 +S'Edouard Vuillard' +p79408 +sg25273 +S'color lithograph on china paper' +p79409 +sg25275 +S'published 1897' +p79410 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a066.jpg' +p79411 +sg25267 +g27 +sa(dp79412 +g25268 +S'Tankard' +p79413 +sg25270 +S'Georg Wechter I' +p79414 +sg25273 +S'etching' +p79415 +sg25275 +S'unknown date\n' +p79416 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad89.jpg' +p79417 +sg25267 +g27 +sa(dp79418 +g25268 +S'Cup' +p79419 +sg25270 +S'Georg Wechter I' +p79420 +sg25273 +S'etching' +p79421 +sg25275 +S'unknown date\n' +p79422 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad84.jpg' +p79423 +sg25267 +g27 +sa(dp79424 +g25268 +S'Untitled' +p79425 +sg25270 +S'Georg Wechter I' +p79426 +sg25273 +S'etching' +p79427 +sg25275 +S'unknown date\n' +p79428 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad87.jpg' +p79429 +sg25267 +g27 +sa(dp79430 +g25268 +S'Goblet Design' +p79431 +sg25270 +S'Georg Wechter I' +p79432 +sg25273 +S'etching' +p79433 +sg25275 +S'unknown date\n' +p79434 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad7f.jpg' +p79435 +sg25267 +g27 +sa(dp79436 +g25273 +S'color lithograph' +p79437 +sg25267 +g27 +sg25275 +S'1942' +p79438 +sg25268 +S'Apples' +p79439 +sg25270 +S'Alfredo Zalce' +p79440 +sa(dp79441 +g25268 +S"Qu'en dit l'Abb\xc3\xa9?" +p79442 +sg25270 +S'Artist Information (' +p79443 +sg25273 +S'(artist after)' +p79444 +sg25275 +S'\n' +p79445 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096d5.jpg' +p79446 +sg25267 +g27 +sa(dp79447 +g25268 +S'Fantastic Vases' +p79448 +sg25270 +S'Stefano Della Bella' +p79449 +sg25273 +S'etching' +p79450 +sg25275 +S'probably 1646' +p79451 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c809.jpg' +p79452 +sg25267 +g27 +sa(dp79453 +g25268 +S'Fantastic Vases' +p79454 +sg25270 +S'Stefano Della Bella' +p79455 +sg25273 +S'etching' +p79456 +sg25275 +S'probably 1646' +p79457 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c807.jpg' +p79458 +sg25267 +g27 +sa(dp79459 +g25268 +S'Fantastic Vases' +p79460 +sg25270 +S'Stefano Della Bella' +p79461 +sg25273 +S'etching' +p79462 +sg25275 +S'probably 1646' +p79463 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c805.jpg' +p79464 +sg25267 +g27 +sa(dp79465 +g25268 +S'Fantastic Vases' +p79466 +sg25270 +S'Stefano Della Bella' +p79467 +sg25273 +S'etching' +p79468 +sg25275 +S'probably 1646' +p79469 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c80f.jpg' +p79470 +sg25267 +g27 +sa(dp79471 +g25268 +S'Fantastic Vases' +p79472 +sg25270 +S'Stefano Della Bella' +p79473 +sg25273 +S'etching' +p79474 +sg25275 +S'probably 1646' +p79475 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c80d.jpg' +p79476 +sg25267 +g27 +sa(dp79477 +g25268 +S'Fantastic Vases' +p79478 +sg25270 +S'Stefano Della Bella' +p79479 +sg25273 +S'etching' +p79480 +sg25275 +S'probably 1646' +p79481 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c80b.jpg' +p79482 +sg25267 +g27 +sa(dp79483 +g25273 +S', c. 1670' +p79484 +sg25267 +g27 +sg25275 +S'\n' +p79485 +sg25268 +S'Suite of Six Designs for Ceiling Moldings' +p79486 +sg25270 +S'Jean B\xc3\xa9rain' +p79487 +sa(dp79488 +g25273 +S'etching' +p79489 +sg25267 +g27 +sg25275 +S'c. 1770' +p79490 +sg25268 +S'Title Page' +p79491 +sg25270 +S'Guillaume Martin Couture' +p79492 +sa(dp79493 +g25273 +S'bound volume with 7 etchings including title page' +p79494 +sg25267 +g27 +sg25275 +S'c. 1770' +p79495 +sg25268 +S"Recueil de Vases analogues aux cinq ordres d'architecture" +p79496 +sg25270 +S'Guillaume Martin Couture' +p79497 +sa(dp79498 +g25273 +S'etching' +p79499 +sg25267 +g27 +sg25275 +S'c. 1770' +p79500 +sg25268 +S'Vase Toscan' +p79501 +sg25270 +S'Guillaume Martin Couture' +p79502 +sa(dp79503 +g25268 +S'Colin-maillard' +p79504 +sg25270 +S'Artist Information (' +p79505 +sg25273 +S'(artist after)' +p79506 +sg25275 +S'\n' +p79507 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008eee.jpg' +p79508 +sg25267 +g27 +sa(dp79509 +g25273 +S'etching' +p79510 +sg25267 +g27 +sg25275 +S'c. 1770' +p79511 +sg25268 +S'Vase Dorique' +p79512 +sg25270 +S'Guillaume Martin Couture' +p79513 +sa(dp79514 +g25273 +S'etching' +p79515 +sg25267 +g27 +sg25275 +S'c. 1770' +p79516 +sg25268 +S'Vase Ionique' +p79517 +sg25270 +S'Guillaume Martin Couture' +p79518 +sa(dp79519 +g25273 +S'etching' +p79520 +sg25267 +g27 +sg25275 +S'c. 1770' +p79521 +sg25268 +S'Revers du Vase Ionique' +p79522 +sg25270 +S'Guillaume Martin Couture' +p79523 +sa(dp79524 +g25273 +S'etching' +p79525 +sg25267 +g27 +sg25275 +S'c. 1770' +p79526 +sg25268 +S'Vase Corinthien' +p79527 +sg25270 +S'Guillaume Martin Couture' +p79528 +sa(dp79529 +g25273 +S'etching' +p79530 +sg25267 +g27 +sg25275 +S'c. 1770' +p79531 +sg25268 +S'Vase Composite' +p79532 +sg25270 +S'Guillaume Martin Couture' +p79533 +sa(dp79534 +g25268 +S'Philosophy' +p79535 +sg25270 +S'Albrecht D\xc3\xbcrer' +p79536 +sg25273 +S'woodcut' +p79537 +sg25275 +S'probably 1502' +p79538 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac59.jpg' +p79539 +sg25267 +g27 +sa(dp79540 +g25268 +S'Apollo and Daphne' +p79541 +sg25270 +S'Hans S\xc3\xbcss von Kulmbach' +p79542 +sg25273 +S'woodcut' +p79543 +sg25275 +S'published 1502' +p79544 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acaf.jpg' +p79545 +sg25267 +g27 +sa(dp79546 +g25268 +S'Apollo and the Muses' +p79547 +sg25270 +S'Hans S\xc3\xbcss von Kulmbach' +p79548 +sg25273 +S'woodcut' +p79549 +sg25275 +S'published 1502' +p79550 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acad.jpg' +p79551 +sg25267 +g27 +sa(dp79552 +g25268 +S'Celtes Surrounded by Greek and Roman Gods' +p79553 +sg25270 +S'Hans S\xc3\xbcss von Kulmbach' +p79554 +sg25273 +S'woodcut' +p79555 +sg25275 +S'published 1502' +p79556 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acac.jpg' +p79557 +sg25267 +g27 +sa(dp79558 +g25268 +S'Apollo on Parnasus' +p79559 +sg25270 +S'Hans S\xc3\xbcss von Kulmbach' +p79560 +sg25273 +S'woodcut' +p79561 +sg25275 +S'published 1502' +p79562 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acab.jpg' +p79563 +sg25267 +g27 +sa(dp79564 +g25268 +S"La Consolation de l'absence" +p79565 +sg25270 +S'Artist Information (' +p79566 +sg25273 +S'(artist after)' +p79567 +sg25275 +S'\n' +p79568 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e89.jpg' +p79569 +sg25267 +g27 +sa(dp79570 +g25273 +S'1 vol: ill: 12 engravings on laid paper' +p79571 +sg25267 +g27 +sg25275 +S'c. 1670' +p79572 +sg25268 +S'Suite of Twelve Ornament Engravings' +p79573 +sg25270 +S'Jean B\xc3\xa9rain' +p79574 +sa(dp79575 +g25273 +S'1 vol: ill: 17 engravings including title page' +p79576 +sg25267 +g27 +sg25275 +S'c.1565-1571' +p79577 +sg25268 +S'Grottesco ...' +p79578 +sg25270 +S'Hans Vredeman de Vries' +p79579 +sa(dp79580 +g25273 +S'(artist after)' +p79581 +sg25267 +g27 +sg25275 +S'\n' +p79582 +sg25268 +S"Nouveaux desseins d'ornements pour l'embelissement des Carosses ..." +p79583 +sg25270 +S'Artist Information (' +p79584 +sa(dp79585 +g25273 +S'(artist after)' +p79586 +sg25267 +g27 +sg25275 +S'\n' +p79587 +sg25268 +S'Desseins pour embillir les chaires roulantes nouvellement' +p79588 +sg25270 +S'Artist Information (' +p79589 +sa(dp79590 +g25273 +S'1 vol: ill: 6 engravings' +p79591 +sg25267 +g27 +sg25275 +S'1661' +p79592 +sg25268 +S'Vases et burettes a la romaine' +p79593 +sg25270 +S'Jean Lepautre' +p79594 +sa(dp79595 +g25273 +S'1 vol: ill: 6 engravings' +p79596 +sg25267 +g27 +sg25275 +S'c. 1670' +p79597 +sg25268 +S'Ornements de paneaux modernes' +p79598 +sg25270 +S'Jean Lepautre' +p79599 +sa(dp79600 +g25273 +S'1 vol: ill: 6 engravings' +p79601 +sg25267 +g27 +sg25275 +S'c. 1670' +p79602 +sg25268 +S'Fontaines et cuvettes inventees ...' +p79603 +sg25270 +S'Jean Lepautre' +p79604 +sa(dp79605 +g25273 +S'1 vol: ill: 6 engravings' +p79606 +sg25267 +g27 +sg25275 +S'c. 1670' +p79607 +sg25268 +S'Escusons, ou entrees de Cerures et autres ornements ...' +p79608 +sg25270 +S'Jean Lepautre' +p79609 +sa(dp79610 +g25273 +S'1 vol: ill: 6 engravings' +p79611 +sg25267 +g27 +sg25275 +S'c. 1670' +p79612 +sg25268 +S"Differents morceaux d'ornements pour servir aux frises ..." +p79613 +sg25270 +S'Jean Lepautre' +p79614 +sa(dp79615 +g25273 +S'1 vol: ill: 6 engravings for "Desseins de plafons" and 12 engravings for "Plafonds modernes"' +p79616 +sg25267 +g27 +sg25275 +S'c. 1670' +p79617 +sg25268 +S'Desseins de plafons inventez et gravez; Plafonds modernes' +p79618 +sg25270 +S'Jean Lepautre' +p79619 +sa(dp79620 +g25268 +S'Le contretemps' +p79621 +sg25270 +S'Artist Information (' +p79622 +sg25273 +S'(artist after)' +p79623 +sg25275 +S'\n' +p79624 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e95.jpg' +p79625 +sg25267 +g27 +sa(dp79626 +g25273 +S'1 vol: ill: 6 engravings for "Alcoves a la francoise" and 5 engravings for "Alcoves a la romaine"' +p79627 +sg25267 +g27 +sg25275 +S'c. 1670' +p79628 +sg25268 +S'Alcoves a la francoise; Alcoves a la romaine' +p79629 +sg25270 +S'Jean Lepautre' +p79630 +sa(dp79631 +g25273 +S'(artist after)' +p79632 +sg25267 +g27 +sg25275 +S'\n' +p79633 +sg25268 +S'Receuil de divers cartels' +p79634 +sg25270 +S'Artist Information (' +p79635 +sa(dp79636 +g25268 +S'Flask' +p79637 +sg25270 +S'Georg Wechter I' +p79638 +sg25273 +S'etching' +p79639 +sg25275 +S'unknown date\n' +p79640 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad82.jpg' +p79641 +sg25267 +g27 +sa(dp79642 +g25268 +S'Tankard' +p79643 +sg25270 +S'Georg Wechter I' +p79644 +sg25273 +S'etching' +p79645 +sg25275 +S'unknown date\n' +p79646 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad88.jpg' +p79647 +sg25267 +g27 +sa(dp79648 +g25268 +S'Horace Binney' +p79649 +sg25270 +S'Gilbert Stuart' +p79650 +sg25273 +S'oil on wood' +p79651 +sg25275 +S'1800' +p79652 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000245.jpg' +p79653 +sg25267 +g27 +sa(dp79654 +g25268 +S'Harlan F. Stone' +p79655 +sg25270 +S'Augustus Vincent Tack' +p79656 +sg25273 +S'oil on canvas' +p79657 +sg25275 +S'1944' +p79658 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000026d.jpg' +p79659 +sg25267 +g27 +sa(dp79660 +g25268 +S'The Ordeal by Arrows (Saint Sebastian)' +p79661 +sg25270 +S'Jacques Callot' +p79662 +sg25273 +S'etching and engraving' +p79663 +sg25275 +S'c. 1632/1633' +p79664 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ae4.jpg' +p79665 +sg25267 +g27 +sa(dp79666 +g25268 +S'The Slave Market' +p79667 +sg25270 +S'Jacques Callot' +p79668 +sg25273 +S'etching' +p79669 +sg25275 +S'1620' +p79670 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000854f.jpg' +p79671 +sg25267 +g27 +sa(dp79672 +g25268 +S'Venus Anadyomene' +p79673 +sg25270 +S'Th\xc3\xa9odore Chass\xc3\xa9riau' +p79674 +sg25273 +S'lithograph' +p79675 +sg25275 +S'c. 1841/1842' +p79676 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091a3.jpg' +p79677 +sg25267 +g27 +sa(dp79678 +g25268 +S'Saint Christopher' +p79679 +sg25270 +S'Lucas Cranach the Elder' +p79680 +sg25273 +S'chiaroscuro woodcut printed in gray and black' +p79681 +sg25275 +S'1506' +p79682 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0e8.jpg' +p79683 +sg25267 +g27 +sa(dp79684 +g25268 +S'Le contretemps' +p79685 +sg25270 +S'Artist Information (' +p79686 +sg25273 +S'(artist after)' +p79687 +sg25275 +S'\n' +p79688 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e94.jpg' +p79689 +sg25267 +g27 +sa(dp79690 +g25268 +S'Five Soldiers and a Turk on Horseback' +p79691 +sg25270 +S'Albrecht D\xc3\xbcrer' +p79692 +sg25273 +S'engraving' +p79693 +sg25275 +S'1495/1496' +p79694 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a989.jpg' +p79695 +sg25267 +g27 +sa(dp79696 +g25273 +S'woodcut on Oriental laid paper [proof]' +p79697 +sg25267 +g27 +sg25275 +S'1919' +p79698 +sg25268 +S'Lehnstedt' +p79699 +sg25270 +S'Lyonel Feininger' +p79700 +sa(dp79701 +g25268 +S"Neptune's Kingdom" +p79702 +sg25270 +S'Artist Information (' +p79703 +sg25273 +S'(artist after)' +p79704 +sg25275 +S'\n' +p79705 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfa7.jpg' +p79706 +sg25267 +g27 +sa(dp79707 +g25273 +S'1 vol: ill: 12 engravings' +p79708 +sg25267 +g27 +sg25275 +S'published 1704' +p79709 +sg25268 +S'A New Book of Ornaments' +p79710 +sg25270 +S'Simon Gribelin II' +p79711 +sa(dp79712 +g25268 +S'Gulielmus Hogarth' +p79713 +sg25270 +S'William Hogarth' +p79714 +sg25273 +S'etching and engraving' +p79715 +sg25275 +S'1748/1749' +p79716 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007903.jpg' +p79717 +sg25267 +g27 +sa(dp79718 +g25273 +S'bound volume: original contents: 114 etchings and engravings, many of the prints being removed from the volume; see individual entries for locations' +p79719 +sg25267 +g27 +sg25275 +S'unknown date\n' +p79720 +sg25268 +S'Collected Works of William Hogarth' +p79721 +sg25270 +S'William Hogarth' +p79722 +sa(dp79723 +g25268 +S'Characters and Caricaturas' +p79724 +sg25270 +S'William Hogarth' +p79725 +sg25273 +S'etching' +p79726 +sg25275 +S'1743' +p79727 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078de.jpg' +p79728 +sg25267 +g27 +sa(dp79729 +g25268 +S'Marriage a la Mode: pl.1' +p79730 +sg25270 +S'Artist Information (' +p79731 +sg25273 +S'(artist after)' +p79732 +sg25275 +S'\n' +p79733 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007760.jpg' +p79734 +sg25267 +g27 +sa(dp79735 +g25268 +S'Marriage a la Mode: pl. 2' +p79736 +sg25270 +S'Artist Information (' +p79737 +sg25273 +S'(artist after)' +p79738 +sg25275 +S'\n' +p79739 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007766.jpg' +p79740 +sg25267 +g27 +sa(dp79741 +g25268 +S'Marriage a la Mode: pl. 3' +p79742 +sg25270 +S'Artist Information (' +p79743 +sg25273 +S'(artist after)' +p79744 +sg25275 +S'\n' +p79745 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007768.jpg' +p79746 +sg25267 +g27 +sa(dp79747 +g25268 +S'The Grove' +p79748 +sg25270 +S'Artist Information (' +p79749 +sg25273 +S'Swedish, 1737 - 1807' +p79750 +sg25275 +S'(artist after)' +p79751 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d13.jpg' +p79752 +sg25267 +g27 +sa(dp79753 +g25268 +S'Marriage a la Mode: pl.4' +p79754 +sg25270 +S'Artist Information (' +p79755 +sg25273 +S'(artist after)' +p79756 +sg25275 +S'\n' +p79757 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007762.jpg' +p79758 +sg25267 +g27 +sa(dp79759 +g25268 +S'Marriage a la Mode: pl.5' +p79760 +sg25270 +S'Artist Information (' +p79761 +sg25273 +S'(artist after)' +p79762 +sg25275 +S'\n' +p79763 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007764.jpg' +p79764 +sg25267 +g27 +sa(dp79765 +g25268 +S'Marriage a la Mode: pl.6' +p79766 +sg25270 +S'Artist Information (' +p79767 +sg25273 +S'(artist after)' +p79768 +sg25275 +S'\n' +p79769 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000775e.jpg' +p79770 +sg25267 +g27 +sa(dp79771 +g25268 +S'An Election Entertainment' +p79772 +sg25270 +S'William Hogarth' +p79773 +sg25273 +S'etching and engraving' +p79774 +sg25275 +S'1755' +p79775 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007756.jpg' +p79776 +sg25267 +g27 +sa(dp79777 +g25268 +S'Canvassing for Votes' +p79778 +sg25270 +S'Artist Information (' +p79779 +sg25273 +S'(artist after)' +p79780 +sg25275 +S'\n' +p79781 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007754.jpg' +p79782 +sg25267 +g27 +sa(dp79783 +g25268 +S'The Polling' +p79784 +sg25270 +S'Artist Information (' +p79785 +sg25273 +S'(artist)' +p79786 +sg25275 +S'\n' +p79787 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007758.jpg' +p79788 +sg25267 +g27 +sa(dp79789 +g25268 +S'Chairing the Members' +p79790 +sg25270 +S'Artist Information (' +p79791 +sg25273 +S'(artist)' +p79792 +sg25275 +S'\n' +p79793 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000775a.jpg' +p79794 +sg25267 +g27 +sa(dp79795 +g25268 +S"A Harlot's Progress: pl.1" +p79796 +sg25270 +S'William Hogarth' +p79797 +sg25273 +S'etching and engraving' +p79798 +sg25275 +S'1732' +p79799 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078c5.jpg' +p79800 +sg25267 +g27 +sa(dp79801 +g25268 +S"A Harlot's Progress: pl.2" +p79802 +sg25270 +S'William Hogarth' +p79803 +sg25273 +S'etching and engraving' +p79804 +sg25275 +S'1732' +p79805 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078bb.jpg' +p79806 +sg25267 +g27 +sa(dp79807 +g25268 +S"A Harlot's Progress: pl.3" +p79808 +sg25270 +S'William Hogarth' +p79809 +sg25273 +S'etching and engraving' +p79810 +sg25275 +S'1732' +p79811 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078c1.jpg' +p79812 +sg25267 +g27 +sa(dp79813 +g25268 +S'The Green Plot' +p79814 +sg25270 +S'Artist Information (' +p79815 +sg25273 +S'Swedish, 1737 - 1807' +p79816 +sg25275 +S'(artist after)' +p79817 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d16.jpg' +p79818 +sg25267 +g27 +sa(dp79819 +g25268 +S"A Harlot's Progress: pl.4" +p79820 +sg25270 +S'William Hogarth' +p79821 +sg25273 +S'etching and engraving' +p79822 +sg25275 +S'1732' +p79823 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078bd.jpg' +p79824 +sg25267 +g27 +sa(dp79825 +g25268 +S"A Harlot's Progress: pl.5" +p79826 +sg25270 +S'William Hogarth' +p79827 +sg25273 +S'etching and engraving' +p79828 +sg25275 +S'1732' +p79829 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078c3.jpg' +p79830 +sg25267 +g27 +sa(dp79831 +g25268 +S"A Harlot's Progress: pl.6" +p79832 +sg25270 +S'William Hogarth' +p79833 +sg25273 +S'etching and engraving' +p79834 +sg25275 +S'1732' +p79835 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078bf.jpg' +p79836 +sg25267 +g27 +sa(dp79837 +g25268 +S"A Rake's Progress: pl.1" +p79838 +sg25270 +S'William Hogarth' +p79839 +sg25273 +S'etching and engraving' +p79840 +sg25275 +S'1735' +p79841 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078d5.jpg' +p79842 +sg25267 +g27 +sa(dp79843 +g25268 +S"A Rake's Progress: pl.2" +p79844 +sg25270 +S'William Hogarth' +p79845 +sg25273 +S'etching and engraving' +p79846 +sg25275 +S'1735' +p79847 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078d7.jpg' +p79848 +sg25267 +g27 +sa(dp79849 +g25268 +S"A Rake's Progress: pl.3" +p79850 +sg25270 +S'William Hogarth' +p79851 +sg25273 +S'etching and engraving' +p79852 +sg25275 +S'1735' +p79853 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078cf.jpg' +p79854 +sg25267 +g27 +sa(dp79855 +g25268 +S"A Rake's Progress: pl.4" +p79856 +sg25270 +S'William Hogarth' +p79857 +sg25273 +S'etching and engraving' +p79858 +sg25275 +S'1735' +p79859 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078cd.jpg' +p79860 +sg25267 +g27 +sa(dp79861 +g25268 +S"A Rake's Progress: pl.4" +p79862 +sg25270 +S'William Hogarth' +p79863 +sg25273 +S'etching and engraving' +p79864 +sg25275 +S'1735' +p79865 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078d3.jpg' +p79866 +sg25267 +g27 +sa(dp79867 +g25268 +S"A Rake's Progress: pl.5" +p79868 +sg25270 +S'William Hogarth' +p79869 +sg25273 +S'etching and engraving' +p79870 +sg25275 +S'1735' +p79871 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078d1.jpg' +p79872 +sg25267 +g27 +sa(dp79873 +g25268 +S"A Rake's Progress: pl.6" +p79874 +sg25270 +S'William Hogarth' +p79875 +sg25273 +S'etching and engraving' +p79876 +sg25275 +S'1735' +p79877 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078c9.jpg' +p79878 +sg25267 +g27 +sa(dp79879 +g25268 +S"L'heureux moment" +p79880 +sg25270 +S'Artist Information (' +p79881 +sg25273 +S'(artist after)' +p79882 +sg25275 +S'\n' +p79883 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e88.jpg' +p79884 +sg25267 +g27 +sa(dp79885 +g25268 +S"A Rake's Progress: pl.7" +p79886 +sg25270 +S'William Hogarth' +p79887 +sg25273 +S'etching and engraving' +p79888 +sg25275 +S'1735' +p79889 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078cb.jpg' +p79890 +sg25267 +g27 +sa(dp79891 +g25268 +S"A Rake's Progress: pl.8" +p79892 +sg25270 +S'William Hogarth' +p79893 +sg25273 +S'etching and engraving' +p79894 +sg25275 +S'1735' +p79895 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078d9.jpg' +p79896 +sg25267 +g27 +sa(dp79897 +g25268 +S'The First Stage of Cruelty' +p79898 +sg25270 +S'William Hogarth' +p79899 +sg25273 +S'etching and engraving' +p79900 +sg25275 +S'1751' +p79901 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007901.jpg' +p79902 +sg25267 +g27 +sa(dp79903 +g25268 +S'The Second Stage of Cruelty' +p79904 +sg25270 +S'William Hogarth' +p79905 +sg25273 +S'etching and engraving' +p79906 +sg25275 +S'1751' +p79907 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078ff.jpg' +p79908 +sg25267 +g27 +sa(dp79909 +g25268 +S'Cruelty in Perfection' +p79910 +sg25270 +S'William Hogarth' +p79911 +sg25273 +S'etching and engraving' +p79912 +sg25275 +S'1751' +p79913 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078fd.jpg' +p79914 +sg25267 +g27 +sa(dp79915 +g25268 +S'The Reward of Cruelty' +p79916 +sg25270 +S'William Hogarth' +p79917 +sg25273 +S'etching and engraving' +p79918 +sg25275 +S'1751' +p79919 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078fb.jpg' +p79920 +sg25267 +g27 +sa(dp79921 +g25268 +S'Morning' +p79922 +sg25270 +S'William Hogarth' +p79923 +sg25273 +S'etching and engraving' +p79924 +sg25275 +S'1738' +p79925 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078e9.jpg' +p79926 +sg25267 +g27 +sa(dp79927 +g25268 +S'Noon' +p79928 +sg25270 +S'William Hogarth' +p79929 +sg25273 +S'etching and engraving' +p79930 +sg25275 +S'1738' +p79931 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078e7.jpg' +p79932 +sg25267 +g27 +sa(dp79933 +g25268 +S'Evening' +p79934 +sg25270 +S'William Hogarth' +p79935 +sg25273 +S'etching and engraving' +p79936 +sg25275 +S'1738' +p79937 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078e3.jpg' +p79938 +sg25267 +g27 +sa(dp79939 +g25268 +S'Night' +p79940 +sg25270 +S'William Hogarth' +p79941 +sg25273 +S'etching and engraving' +p79942 +sg25275 +S'1738' +p79943 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078e1.jpg' +p79944 +sg25267 +g27 +sa(dp79945 +g25268 +S"L'heureux moment" +p79946 +sg25270 +S'Artist Information (' +p79947 +sg25273 +S'(artist after)' +p79948 +sg25275 +S'\n' +p79949 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e8d.jpg' +p79950 +sg25267 +g27 +sa(dp79951 +g25268 +S"The Fellow 'Prentices at Their Looms" +p79952 +sg25270 +S'William Hogarth' +p79953 +sg25273 +S'etching and engraving' +p79954 +sg25275 +S'1747' +p79955 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078d0.jpg' +p79956 +sg25267 +g27 +sa(dp79957 +g25268 +S"The Industrious 'Prentice performing the Dutyof a Christian" +p79958 +sg25270 +S'William Hogarth' +p79959 +sg25273 +S'etching and engraving' +p79960 +sg25275 +S'1747' +p79961 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078d2.jpg' +p79962 +sg25267 +g27 +sa(dp79963 +g25268 +S"The Idle 'Prentice at Play in the Church Yard, during Divine Service" +p79964 +sg25270 +S'William Hogarth' +p79965 +sg25273 +S'etching and engraving' +p79966 +sg25275 +S'1747' +p79967 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078da.jpg' +p79968 +sg25267 +g27 +sa(dp79969 +g25268 +S"The Industrious 'Prentice a Favorite, and entrusted by his Master" +p79970 +sg25270 +S'William Hogarth' +p79971 +sg25273 +S'etching and engraving' +p79972 +sg25275 +S'1747' +p79973 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078d4.jpg' +p79974 +sg25267 +g27 +sa(dp79975 +g25268 +S"The Idle 'Prentice turn'd away, and sent to Sea" +p79976 +sg25270 +S'William Hogarth' +p79977 +sg25273 +S'etching and engraving' +p79978 +sg25275 +S'1747' +p79979 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078d6.jpg' +p79980 +sg25267 +g27 +sa(dp79981 +g25268 +S"The Industrious 'Prentice out of his Time, and Married to his Master's Daughter" +p79982 +sg25270 +S'William Hogarth' +p79983 +sg25273 +S'etching and engraving' +p79984 +sg25275 +S'1747' +p79985 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078d8.jpg' +p79986 +sg25267 +g27 +sa(dp79987 +g25268 +S"The Idle 'Prentice return'd from Sea & in a Garret with a common Prostitute" +p79988 +sg25270 +S'William Hogarth' +p79989 +sg25273 +S'etching and engraving' +p79990 +sg25275 +S'1747' +p79991 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078dc.jpg' +p79992 +sg25267 +g27 +sa(dp79993 +g25268 +S"The Industrious 'Prentice grown rich & Sheriff of London" +p79994 +sg25270 +S'William Hogarth' +p79995 +sg25273 +S'etching and engraving' +p79996 +sg25275 +S'1747' +p79997 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078fa.jpg' +p79998 +sg25267 +g27 +sa(dp79999 +g25268 +S"The Idle 'Prentice betray'd by his Whore, & taken in a Night Cellar with his Accomplice" +p80000 +sg25270 +S'William Hogarth' +p80001 +sg25273 +S'etching and engraving' +p80002 +sg25275 +S'1747' +p80003 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078f8.jpg' +p80004 +sg25267 +g27 +sa(dp80005 +g25268 +S"The Industrious 'Prentice Alderman of London,the Idle one brought before him & impea ch'd by his Accomplice" +p80006 +sg25270 +S'William Hogarth' +p80007 +sg25273 +S'etching and engraving' +p80008 +sg25275 +S'1747' +p80009 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078f6.jpg' +p80010 +sg25267 +g27 +sa(dp80011 +g25268 +S"L'innocence en danger" +p80012 +sg25270 +S'Artist Information (' +p80013 +sg25273 +S'(artist after)' +p80014 +sg25275 +S'\n' +p80015 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096a9.jpg' +p80016 +sg25267 +g27 +sa(dp80017 +g25268 +S"The Idle 'Prentice Executed at Tyburn" +p80018 +sg25270 +S'William Hogarth' +p80019 +sg25273 +S'etching and engraving' +p80020 +sg25275 +S'1747' +p80021 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078fe.jpg' +p80022 +sg25267 +g27 +sa(dp80023 +g25268 +S"The Industrious 'Prentice Lord-Mayor of London" +p80024 +sg25270 +S'William Hogarth' +p80025 +sg25273 +S'etching and engraving' +p80026 +sg25275 +S'1747' +p80027 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078fc.jpg' +p80028 +sg25267 +g27 +sa(dp80029 +g25268 +S'Southwark Fair' +p80030 +sg25270 +S'William Hogarth' +p80031 +sg25273 +S'etching and engraving' +p80032 +sg25275 +S'1733/1734' +p80033 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078c7.jpg' +p80034 +sg25267 +g27 +sa(dp80035 +g25268 +S'The Gate of Calais, or The Roast Beef of Old England' +p80036 +sg25270 +S'Artist Information (' +p80037 +sg25273 +S'(artist)' +p80038 +sg25275 +S'\n' +p80039 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078f5.jpg' +p80040 +sg25267 +g27 +sa(dp80041 +g25268 +S'Garrick in the Role of Richard III' +p80042 +sg25270 +S'Artist Information (' +p80043 +sg25273 +S'(artist)' +p80044 +sg25275 +S'\n' +p80045 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078e5.jpg' +p80046 +sg25267 +g27 +sa(dp80047 +g25268 +S'The Bruiser' +p80048 +sg25270 +S'William Hogarth' +p80049 +sg25273 +S'etching and engraving' +p80050 +sg25275 +S'1763' +p80051 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007748.jpg' +p80052 +sg25267 +g27 +sa(dp80053 +g25268 +S'France' +p80054 +sg25270 +S'William Hogarth' +p80055 +sg25273 +S'etching and engraving' +p80056 +sg25275 +S'1756' +p80057 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000774e.jpg' +p80058 +sg25267 +g27 +sa(dp80059 +g25268 +S'England' +p80060 +sg25270 +S'William Hogarth' +p80061 +sg25273 +S'etching and engraving' +p80062 +sg25275 +S'1756' +p80063 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000774c.jpg' +p80064 +sg25267 +g27 +sa(dp80065 +g25268 +S'The Cockpit' +p80066 +sg25270 +S'William Hogarth' +p80067 +sg25273 +S'etching and engraving' +p80068 +sg25275 +S'1759' +p80069 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007750.jpg' +p80070 +sg25267 +g27 +sa(dp80071 +g25268 +S'Strolling Actresses Dressing in a Barn' +p80072 +sg25270 +S'William Hogarth' +p80073 +sg25273 +S'etching and engraving' +p80074 +sg25275 +S'1738' +p80075 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078eb.jpg' +p80076 +sg25267 +g27 +sa(dp80077 +g25268 +S'Le lever des ouvrieres en modes' +p80078 +sg25270 +S'Artist Information (' +p80079 +sg25273 +S'(artist after)' +p80080 +sg25275 +S'\n' +p80081 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096e9.jpg' +p80082 +sg25267 +g27 +sa(dp80083 +g25273 +S'(artist after)' +p80084 +sg25267 +g27 +sg25275 +S'\n' +p80085 +sg25268 +S'The March to Finchley' +p80086 +sg25270 +S'Artist Information (' +p80087 +sa(dp80088 +g25273 +S'etching and engraving' +p80089 +sg25267 +g27 +sg25275 +S'1725/1726' +p80090 +sg25268 +S'Frontispiece' +p80091 +sg25270 +S'William Hogarth' +p80092 +sa(dp80093 +g25273 +S'etching and engraving' +p80094 +sg25267 +g27 +sg25275 +S'1725/1726' +p80095 +sg25268 +S"Hudibras' Sallying Forth" +p80096 +sg25270 +S'William Hogarth' +p80097 +sa(dp80098 +g25273 +S'etching and engraving' +p80099 +sg25267 +g27 +sg25275 +S'1725/1726' +p80100 +sg25268 +S"Hudibras' First Adventure" +p80101 +sg25270 +S'William Hogarth' +p80102 +sa(dp80103 +g25273 +S'etching and engraving' +p80104 +sg25267 +g27 +sg25275 +S'1725/1726' +p80105 +sg25268 +S'Hudibras Triumphant' +p80106 +sg25270 +S'William Hogarth' +p80107 +sa(dp80108 +g25268 +S'Hudibras and the Lawyer' +p80109 +sg25270 +S'William Hogarth' +p80110 +sg25273 +S'etching and engraving' +p80111 +sg25275 +S'1725/1726' +p80112 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078c0.jpg' +p80113 +sg25267 +g27 +sa(dp80114 +g25268 +S'Hudibras beats Sidrophel and his man Whacum' +p80115 +sg25270 +S'William Hogarth' +p80116 +sg25273 +S'etching and engraving' +p80117 +sg25275 +S'1725/1726' +p80118 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078c6.jpg' +p80119 +sg25267 +g27 +sa(dp80120 +g25273 +S'etching and engraving' +p80121 +sg25267 +g27 +sg25275 +S'1725/1726' +p80122 +sg25268 +S"Hudibras vanquish'd by Trulla" +p80123 +sg25270 +S'William Hogarth' +p80124 +sa(dp80125 +g25273 +S'etching and engraving' +p80126 +sg25267 +g27 +sg25275 +S'1725/1726' +p80127 +sg25268 +S'Hudibras in Tribulation' +p80128 +sg25270 +S'William Hogarth' +p80129 +sa(dp80130 +g25273 +S'etching and engraving' +p80131 +sg25267 +g27 +sg25275 +S'1725/1726' +p80132 +sg25268 +S'The Committee' +p80133 +sg25270 +S'William Hogarth' +p80134 +sa(dp80135 +g25268 +S'Le lever des ouvrieres en modes' +p80136 +sg25270 +S'Artist Information (' +p80137 +sg25273 +S'(artist after)' +p80138 +sg25275 +S'\n' +p80139 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096e8.jpg' +p80140 +sg25267 +g27 +sa(dp80141 +g25273 +S'etching and engraving' +p80142 +sg25267 +g27 +sg25275 +S'1725/1726' +p80143 +sg25268 +S"Hudibras Catechiz'd" +p80144 +sg25270 +S'William Hogarth' +p80145 +sa(dp80146 +g25273 +S'etching and engraving' +p80147 +sg25267 +g27 +sg25275 +S'1725/1726' +p80148 +sg25268 +S'Hudibras Encounters the Skimmington' +p80149 +sg25270 +S'William Hogarth' +p80150 +sa(dp80151 +g25273 +S'etching and engraving' +p80152 +sg25267 +g27 +sg25275 +S'1725/1726' +p80153 +sg25268 +S'Burning ye Rumps at Temple-Barr' +p80154 +sg25270 +S'William Hogarth' +p80155 +sa(dp80156 +g25268 +S'Analysis of Beauty: pl.1' +p80157 +sg25270 +S'William Hogarth' +p80158 +sg25273 +S'etching and engraving' +p80159 +sg25275 +S'1753' +p80160 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078f3.jpg' +p80161 +sg25267 +g27 +sa(dp80162 +g25268 +S'Analysis of Beauty: pl.2' +p80163 +sg25270 +S'William Hogarth' +p80164 +sg25273 +S'etching and engraving' +p80165 +sg25275 +S'1753' +p80166 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078f1.jpg' +p80167 +sg25267 +g27 +sa(dp80168 +g25273 +S'etching and engraving with traces of hand coloring(?)' +p80169 +sg25267 +g27 +sg25275 +S'c. 1728/1729' +p80170 +sg25268 +S'Henry the Eighth and Anne Boleyn' +p80171 +sg25270 +S'William Hogarth' +p80172 +sa(dp80173 +g25268 +S'The Distressed Poet' +p80174 +sg25270 +S'William Hogarth' +p80175 +sg25273 +S'etching and engraving' +p80176 +sg25275 +S'1736/1737' +p80177 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078dd.jpg' +p80178 +sg25267 +g27 +sa(dp80179 +g25268 +S'The Enraged Musician' +p80180 +sg25270 +S'William Hogarth' +p80181 +sg25273 +S'etching and engraving' +p80182 +sg25275 +S'1741' +p80183 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078df.jpg' +p80184 +sg25267 +g27 +sa(dp80185 +g25273 +S'etching and engraving' +p80186 +sg25267 +g27 +sg25275 +S'1732/1733' +p80187 +sg25268 +S'A Midnight Modern Conversation' +p80188 +sg25270 +S'William Hogarth' +p80189 +sa(dp80190 +g25268 +S'Credulity, Superstition, and Fanaticism' +p80191 +sg25270 +S'William Hogarth' +p80192 +sg25273 +S'etching and engraving' +p80193 +sg25275 +S'1762' +p80194 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007752.jpg' +p80195 +sg25267 +g27 +sa(dp80196 +g25268 +S'Le coucher des ouvrieres en modes' +p80197 +sg25270 +S'Artist Information (' +p80198 +sg25273 +S'(artist after)' +p80199 +sg25275 +S'\n' +p80200 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096e7.jpg' +p80201 +sg25267 +g27 +sa(dp80202 +g25273 +S'etching and engraving' +p80203 +sg25267 +g27 +sg25275 +S'1736' +p80204 +sg25268 +S'Before' +p80205 +sg25270 +S'William Hogarth' +p80206 +sa(dp80207 +g25273 +S'etching and engraving' +p80208 +sg25267 +g27 +sg25275 +S'1736' +p80209 +sg25268 +S'After' +p80210 +sg25270 +S'William Hogarth' +p80211 +sa(dp80212 +g25268 +S'Beer Street' +p80213 +sg25270 +S'William Hogarth' +p80214 +sg25273 +S'etching and engraving' +p80215 +sg25275 +S'1751' +p80216 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078f9.jpg' +p80217 +sg25267 +g27 +sa(dp80218 +g25268 +S'Gin Lane' +p80219 +sg25270 +S'William Hogarth' +p80220 +sg25273 +S'etching and engraving' +p80221 +sg25275 +S'1751' +p80222 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078f7.jpg' +p80223 +sg25267 +g27 +sa(dp80224 +g25268 +S'The Times, pl.1' +p80225 +sg25270 +S'William Hogarth' +p80226 +sg25273 +S'etching and engraving' +p80227 +sg25275 +S'1762' +p80228 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078f2.jpg' +p80229 +sg25267 +g27 +sa(dp80230 +g25268 +S'The South Sea Scheme' +p80231 +sg25270 +S'William Hogarth' +p80232 +sg25273 +S'etching and engraving' +p80233 +sg25275 +S'1721' +p80234 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078cc.jpg' +p80235 +sg25267 +g27 +sa(dp80236 +g25273 +S'etching and engraving' +p80237 +sg25267 +g27 +sg25275 +S'1762/1763' +p80238 +sg25268 +S'The Times: pl.2' +p80239 +sg25270 +S'William Hogarth' +p80240 +sa(dp80241 +g25268 +S'The Lottery' +p80242 +sg25270 +S'William Hogarth' +p80243 +sg25273 +S'etching and engraving' +p80244 +sg25275 +S'1721' +p80245 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078c4.jpg' +p80246 +sg25267 +g27 +sa(dp80247 +g25273 +S'etching and engraving' +p80248 +sg25267 +g27 +sg25275 +S'1752' +p80249 +sg25268 +S"Moses Brought to Pharaoh's Daughter" +p80250 +sg25270 +S'William Hogarth' +p80251 +sa(dp80252 +g25273 +S'etching and engraving' +p80253 +sg25267 +g27 +sg25275 +S'1752' +p80254 +sg25268 +S'Paul before Felix' +p80255 +sg25270 +S'William Hogarth' +p80256 +sa(dp80257 +g25268 +S'Les offres seduisantes' +p80258 +sg25270 +S'Artist Information (' +p80259 +sg25273 +S'(artist after)' +p80260 +sg25275 +S'\n' +p80261 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e6e.jpg' +p80262 +sg25267 +g27 +sa(dp80263 +g25268 +S'Paul before Felix' +p80264 +sg25270 +S'William Hogarth' +p80265 +sg25273 +S'etching and engraving' +p80266 +sg25275 +S'1752' +p80267 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078ef.jpg' +p80268 +sg25267 +g27 +sa(dp80269 +g25273 +S'etching with mezzotint' +p80270 +sg25267 +g27 +sg25275 +S'1751' +p80271 +sg25268 +S'Paul before Felix Burlesqued' +p80272 +sg25270 +S'William Hogarth' +p80273 +sa(dp80274 +g25268 +S'Paul before Felix Burlesqued' +p80275 +sg25270 +S'William Hogarth' +p80276 +sg25273 +S'etching with some mezzotint tone' +p80277 +sg25275 +S'1751' +p80278 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078f4.jpg' +p80279 +sg25267 +g27 +sa(dp80280 +g25273 +S'(artist after)' +p80281 +sg25267 +g27 +sg25275 +S'\n' +p80282 +sg25268 +S'Bishop Hoadly' +p80283 +sg25270 +S'Artist Information (' +p80284 +sa(dp80285 +g25268 +S'Simon Lord Lovat' +p80286 +sg25270 +S'William Hogarth' +p80287 +sg25273 +S'etching' +p80288 +sg25275 +S'1746' +p80289 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078db.jpg' +p80290 +sg25267 +g27 +sa(dp80291 +g25273 +S'etching and engraving' +p80292 +sg25267 +g27 +sg25275 +S'1742' +p80293 +sg25268 +S'Martin Folkes' +p80294 +sg25270 +S'William Hogarth' +p80295 +sa(dp80296 +g25268 +S'John Wilkes Esq.' +p80297 +sg25270 +S'William Hogarth' +p80298 +sg25273 +S'etching' +p80299 +sg25275 +S'1763' +p80300 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007746.jpg' +p80301 +sg25267 +g27 +sa(dp80302 +g25273 +S'(artist after)' +p80303 +sg25267 +g27 +sg25275 +S'\n' +p80304 +sg25268 +S'Archbishop Herring' +p80305 +sg25270 +S'Artist Information (' +p80306 +sa(dp80307 +g25273 +S'etching and engraving' +p80308 +sg25267 +g27 +sg25275 +S'unknown date\n' +p80309 +sg25268 +S"Sancho's Feast" +p80310 +sg25270 +S'William Hogarth' +p80311 +sa(dp80312 +g25268 +S'Columbus Breaking the Egg' +p80313 +sg25270 +S'William Hogarth' +p80314 +sg25273 +S'etching' +p80315 +sg25275 +S'1752' +p80316 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078ea.jpg' +p80317 +sg25267 +g27 +sa(dp80318 +g25268 +S'Le petit favori' +p80319 +sg25270 +S'Artist Information (' +p80320 +sg25273 +S'(artist after)' +p80321 +sg25275 +S'\n' +p80322 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f54.jpg' +p80323 +sg25267 +g27 +sa(dp80324 +g25268 +S'The Bench' +p80325 +sg25270 +S'William Hogarth' +p80326 +sg25273 +S'etching and engraving' +p80327 +sg25275 +S'1758' +p80328 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078ee.jpg' +p80329 +sg25267 +g27 +sa(dp80330 +g25268 +S'The Bench' +p80331 +sg25270 +S'William Hogarth' +p80332 +sg25273 +S'etching and engraving' +p80333 +sg25275 +S'1758' +p80334 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078f0.jpg' +p80335 +sg25267 +g27 +sa(dp80336 +g25268 +S'Scholars at a Lecture' +p80337 +sg25270 +S'William Hogarth' +p80338 +sg25273 +S'etching and engraving' +p80339 +sg25275 +S'1736/1737' +p80340 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078b7.jpg' +p80341 +sg25267 +g27 +sa(dp80342 +g25268 +S'Characters and Caricaturas' +p80343 +sg25270 +S'William Hogarth' +p80344 +sg25273 +S'etching' +p80345 +sg25275 +S'1743' +p80346 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078e4.jpg' +p80347 +sg25267 +g27 +sa(dp80348 +g25268 +S'A Chorus of Singers' +p80349 +sg25270 +S'William Hogarth' +p80350 +sg25273 +S'etching' +p80351 +sg25275 +S'1732' +p80352 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007692.jpg' +p80353 +sg25267 +g27 +sa(dp80354 +g25268 +S'The Laughing Audience' +p80355 +sg25270 +S'William Hogarth' +p80356 +sg25273 +S'etching' +p80357 +sg25275 +S'1733' +p80358 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007695.jpg' +p80359 +sg25267 +g27 +sa(dp80360 +g25268 +S'The Sleeping Congregation' +p80361 +sg25270 +S'William Hogarth' +p80362 +sg25273 +S'etching and engraving' +p80363 +sg25275 +S'1736' +p80364 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078bc.jpg' +p80365 +sg25267 +g27 +sa(dp80366 +g25268 +S'A Just View of the British Stage' +p80367 +sg25270 +S'William Hogarth' +p80368 +sg25273 +S'etching' +p80369 +sg25275 +S'1724' +p80370 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078b9.jpg' +p80371 +sg25267 +g27 +sa(dp80372 +g25268 +S'The Company of Undertakers' +p80373 +sg25270 +S'William Hogarth' +p80374 +sg25273 +S'etching and engraving' +p80375 +sg25275 +S'1736/1737' +p80376 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078e2.jpg' +p80377 +sg25267 +g27 +sa(dp80378 +g25268 +S'The Five orders of Perriwigs as they were worn at the late Coronation, measured Architectonically' +p80379 +sg25270 +S'William Hogarth' +p80380 +sg25273 +S'etching' +p80381 +sg25275 +S'1761' +p80382 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078ec.jpg' +p80383 +sg25267 +g27 +sa(dp80384 +g25268 +S'Le joli chien' +p80385 +sg25270 +S'Artist Information (' +p80386 +sg25273 +S'(artist after)' +p80387 +sg25275 +S'\n' +p80388 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ee9.jpg' +p80389 +sg25267 +g27 +sa(dp80390 +g25268 +S'The Stage-coach, or the Country Inn Yard' +p80391 +sg25270 +S'William Hogarth' +p80392 +sg25273 +S'etching and engraving' +p80393 +sg25275 +S'1747' +p80394 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078e0.jpg' +p80395 +sg25267 +g27 +sa(dp80396 +g25268 +S'Cunicularii, or The Wise Men of Godliman in Consultation' +p80397 +sg25270 +S'William Hogarth' +p80398 +sg25273 +S'etching' +p80399 +sg25275 +S'1726' +p80400 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078ba.jpg' +p80401 +sg25267 +g27 +sa(dp80402 +g25273 +S'etching and engraving' +p80403 +sg25267 +g27 +sg25275 +S'1749/1750' +p80404 +sg25268 +S'A Stand of Arms, Musical Instruments, Etc.' +p80405 +sg25270 +S'William Hogarth' +p80406 +sa(dp80407 +g25268 +S'Crowns, Mitres, Maces, Etc.' +p80408 +sg25270 +S'William Hogarth' +p80409 +sg25273 +S'etching' +p80410 +sg25275 +S'1754' +p80411 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078e8.jpg' +p80412 +sg25267 +g27 +sa(dp80413 +g25273 +S'(artist after)' +p80414 +sg25267 +g27 +sg25275 +S'\n' +p80415 +sg25268 +S'The Savoyard Girl' +p80416 +sg25270 +S'Artist Information (' +p80417 +sa(dp80418 +g25268 +S'Politician' +p80419 +sg25270 +S'Artist Information (' +p80420 +sg25273 +S'(artist after)' +p80421 +sg25275 +S'\n' +p80422 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d4b.jpg' +p80423 +sg25267 +g27 +sa(dp80424 +g25268 +S'The Battle of the Pictures' +p80425 +sg25270 +S'William Hogarth' +p80426 +sg25273 +S'etching' +p80427 +sg25275 +S'1744/1745' +p80428 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e44.jpg' +p80429 +sg25267 +g27 +sa(dp80430 +g25268 +S'Time Smoking a Picture' +p80431 +sg25270 +S'William Hogarth' +p80432 +sg25273 +S'etching and mezzotint' +p80433 +sg25275 +S'1761' +p80434 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078e6.jpg' +p80435 +sg25267 +g27 +sa(dp80436 +g25268 +S'Tailpiece , or The Bathos' +p80437 +sg25270 +S'William Hogarth' +p80438 +sg25273 +S'etching and engraving' +p80439 +sg25275 +S'1764' +p80440 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000774a.jpg' +p80441 +sg25267 +g27 +sa(dp80442 +g25268 +S'Girolamo da Siena' +p80443 +sg25270 +S'Daniel Hopfer' +p80444 +sg25273 +S'etching (iron)' +p80445 +sg25275 +S'unknown date\n' +p80446 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac6a.jpg' +p80447 +sg25267 +g27 +sa(dp80448 +g25268 +S'Le repentir tardif' +p80449 +sg25270 +S'Artist Information (' +p80450 +sg25273 +S'(artist after)' +p80451 +sg25275 +S'\n' +p80452 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f02.jpg' +p80453 +sg25267 +g27 +sa(dp80454 +g25268 +S'Kunz von der Rosen' +p80455 +sg25270 +S'Daniel Hopfer' +p80456 +sg25273 +S'etching (iron) possibly with dypoint' +p80457 +sg25275 +S'c. 1518' +p80458 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b271.jpg' +p80459 +sg25267 +g27 +sa(dp80460 +g25268 +S'The Nativity' +p80461 +sg25270 +S'Ludwig Krug' +p80462 +sg25273 +S'engraving' +p80463 +sg25275 +S'1516' +p80464 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac99.jpg' +p80465 +sg25267 +g27 +sa(dp80466 +g25268 +S'The Beggars' +p80467 +sg25270 +S'Lucas van Leyden' +p80468 +sg25273 +S'engraving' +p80469 +sg25275 +S'c. 1510' +p80470 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce8a.jpg' +p80471 +sg25267 +g27 +sa(dp80472 +g25268 +S'Coat of Arms of the Passion' +p80473 +sg25270 +S'Master E.S.' +p80474 +sg25273 +S'engraving' +p80475 +sg25275 +S'c. 1455/1460' +p80476 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3a5.jpg' +p80477 +sg25267 +g27 +sa(dp80478 +g25268 +S'Place de Louis XV' +p80479 +sg25270 +S'Jean-Michel Moreau the Younger' +p80480 +sg25273 +S', 1770' +p80481 +sg25275 +S'\n' +p80482 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c61.jpg' +p80483 +sg25267 +g27 +sa(dp80484 +g25268 +S'Bathers Wrestling (Baigneuses luttants)' +p80485 +sg25270 +S'Camille Pissarro' +p80486 +sg25273 +S'lithograph' +p80487 +sg25275 +S'c. 1896' +p80488 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00068/a0006848.jpg' +p80489 +sg25267 +g27 +sa(dp80490 +g25268 +S'Calavera Maderista' +p80491 +sg25270 +S'Jos\xc3\xa9 Guadalupe Posada' +p80492 +sg25273 +S'relief etching (zinc)' +p80493 +sg25275 +S'unknown date\n' +p80494 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000dd/a000ddfa.jpg' +p80495 +sg25267 +g27 +sa(dp80496 +g25268 +S'The Third Oriental Head' +p80497 +sg25270 +S'Artist Information (' +p80498 +sg25273 +S'Dutch, 1606 - 1669' +p80499 +sg25275 +S'(artist)' +p80500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d379.jpg' +p80501 +sg25267 +g27 +sa(dp80502 +g25268 +S'Ruins of the Abbey of Rijnsburg: Small Version' +p80503 +sg25270 +S'Hercules Seghers' +p80504 +sg25273 +S'etching printed on linen and hand-colored with watercolor' +p80505 +sg25275 +S'unknown date\n' +p80506 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00020/a000202e.jpg' +p80507 +sg25267 +g27 +sa(dp80508 +g25268 +S'Vue de la foire de Beson' +p80509 +sg25270 +S'Gabriel de Saint-Aubin' +p80510 +sg25273 +S', 1750' +p80511 +sg25275 +S'\n' +p80512 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008be4.jpg' +p80513 +sg25267 +g27 +sa(dp80514 +g25268 +S'Le repentir tardif' +p80515 +sg25270 +S'Artist Information (' +p80516 +sg25273 +S'(artist after)' +p80517 +sg25275 +S'\n' +p80518 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f03.jpg' +p80519 +sg25267 +g27 +sa(dp80520 +g25268 +S'Title Page for "Nouvelles inventions de Cartouches"' +p80521 +sg25270 +S'Stefano Della Bella' +p80522 +sg25273 +S'etching' +p80523 +sg25275 +S'1647' +p80524 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7fc.jpg' +p80525 +sg25267 +g27 +sa(dp80526 +g25268 +S'Cartouche Supported by Triton and Siren' +p80527 +sg25270 +S'Stefano Della Bella' +p80528 +sg25273 +S'etching' +p80529 +sg25275 +S'1647' +p80530 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7fb.jpg' +p80531 +sg25267 +g27 +sa(dp80532 +g25268 +S'Cartouche with Ducks and Dogs' +p80533 +sg25270 +S'Stefano Della Bella' +p80534 +sg25273 +S'etching' +p80535 +sg25275 +S'1647' +p80536 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7fa.jpg' +p80537 +sg25267 +g27 +sa(dp80538 +g25268 +S'Cartouche in the Form of a Flayed Tiger Supported by Centaurs' +p80539 +sg25270 +S'Stefano Della Bella' +p80540 +sg25273 +S'etching' +p80541 +sg25275 +S'1647' +p80542 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7f9.jpg' +p80543 +sg25267 +g27 +sa(dp80544 +g25268 +S'Cartouche in the Form of a Drape Suspended from a Cypress Flanked by Skeletons' +p80545 +sg25270 +S'Stefano Della Bella' +p80546 +sg25273 +S'etching' +p80547 +sg25275 +S'1647' +p80548 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c800.jpg' +p80549 +sg25267 +g27 +sa(dp80550 +g25268 +S'Cartouche Suspended from Corpses' +p80551 +sg25270 +S'Stefano Della Bella' +p80552 +sg25273 +S'etching' +p80553 +sg25275 +S'1647' +p80554 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7ff.jpg' +p80555 +sg25267 +g27 +sa(dp80556 +g25268 +S'Cartouche with Eagles and Two Infants Holding a Crown' +p80557 +sg25270 +S'Stefano Della Bella' +p80558 +sg25273 +S'etching' +p80559 +sg25275 +S'1647' +p80560 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7fe.jpg' +p80561 +sg25267 +g27 +sa(dp80562 +g25268 +S'Cartouche with Rams and Infant Satyrs' +p80563 +sg25270 +S'Stefano Della Bella' +p80564 +sg25273 +S'etching' +p80565 +sg25275 +S'1647' +p80566 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7fd.jpg' +p80567 +sg25267 +g27 +sa(dp80568 +g25268 +S'Cartouche with Apollo and Pan' +p80569 +sg25270 +S'Stefano Della Bella' +p80570 +sg25273 +S'etching' +p80571 +sg25275 +S'1647' +p80572 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7f8.jpg' +p80573 +sg25267 +g27 +sa(dp80574 +g25268 +S'Cartouche with Two Nymphs Metamorphosed into Trees' +p80575 +sg25270 +S'Stefano Della Bella' +p80576 +sg25273 +S'etching' +p80577 +sg25275 +S'1647' +p80578 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c802.jpg' +p80579 +sg25267 +g27 +sa(dp80580 +g25268 +S'Le repentir tardif' +p80581 +sg25270 +S'Artist Information (' +p80582 +sg25273 +S'(artist after)' +p80583 +sg25275 +S'\n' +p80584 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000972a.jpg' +p80585 +sg25267 +g27 +sa(dp80586 +g25268 +S'Cartouche with Infant Satyrs' +p80587 +sg25270 +S'Stefano Della Bella' +p80588 +sg25273 +S'etching' +p80589 +sg25275 +S'1647' +p80590 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c803.jpg' +p80591 +sg25267 +g27 +sa(dp80592 +g25268 +S'Cartouche Flanked by Dragons' +p80593 +sg25270 +S'Stefano Della Bella' +p80594 +sg25273 +S'etching' +p80595 +sg25275 +S'1647' +p80596 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c801.jpg' +p80597 +sg25267 +g27 +sa(dp80598 +g25268 +S'Title Page for "Ornamenti di fregi e fogliani"' +p80599 +sg25270 +S'Stefano Della Bella' +p80600 +sg25273 +S'etching' +p80601 +sg25275 +S'probably 1648' +p80602 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7f4.jpg' +p80603 +sg25267 +g27 +sa(dp80604 +g25268 +S'Ornamental Frieze with Letter L (Louis XIV)' +p80605 +sg25270 +S'Stefano Della Bella' +p80606 +sg25273 +S'etching' +p80607 +sg25275 +S'probably 1648' +p80608 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7f2.jpg' +p80609 +sg25267 +g27 +sa(dp80610 +g25268 +S'Festoon with Medici Coat of Arms' +p80611 +sg25270 +S'Stefano Della Bella' +p80612 +sg25273 +S'etching' +p80613 +sg25275 +S'probably 1648' +p80614 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7f3.jpg' +p80615 +sg25267 +g27 +sa(dp80616 +g25268 +S'Two Ornamental Bands with Head of a Lion and Woman' +p80617 +sg25270 +S'Stefano Della Bella' +p80618 +sg25273 +S'etching' +p80619 +sg25275 +S'probably 1648' +p80620 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7f1.jpg' +p80621 +sg25267 +g27 +sa(dp80622 +g25268 +S'Two Ornamental Bands with Facing Heads of Lion and Eagle, and Two Rams' +p80623 +sg25270 +S'Stefano Della Bella' +p80624 +sg25273 +S'etching' +p80625 +sg25275 +S'probably 1648' +p80626 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7f0.jpg' +p80627 +sg25267 +g27 +sa(dp80628 +g25268 +S'Ornamental Frieze with Leopard' +p80629 +sg25270 +S'Stefano Della Bella' +p80630 +sg25273 +S'etching' +p80631 +sg25275 +S'probably 1648' +p80632 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7eb.jpg' +p80633 +sg25267 +g27 +sa(dp80634 +g25268 +S'Ornamental Frieze with Cupid and Psyche' +p80635 +sg25270 +S'Stefano Della Bella' +p80636 +sg25273 +S'etching' +p80637 +sg25275 +S'probably 1648' +p80638 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7ee.jpg' +p80639 +sg25267 +g27 +sa(dp80640 +g25268 +S'Ornamental Frieze with Marine Creatures' +p80641 +sg25270 +S'Stefano Della Bella' +p80642 +sg25273 +S'etching' +p80643 +sg25275 +S'probably 1648' +p80644 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7ed.jpg' +p80645 +sg25267 +g27 +sa(dp80646 +g25268 +S'Le restaurant' +p80647 +sg25270 +S'Artist Information (' +p80648 +sg25273 +S'(artist)' +p80649 +sg25275 +S'\n' +p80650 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e6c.jpg' +p80651 +sg25267 +g27 +sa(dp80652 +g25268 +S'Two Ornamental Bands with Chained Leopards and Eagles' +p80653 +sg25270 +S'Stefano Della Bella' +p80654 +sg25273 +S'etching' +p80655 +sg25275 +S'probably 1648' +p80656 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7ef.jpg' +p80657 +sg25267 +g27 +sa(dp80658 +g25268 +S'Ornamental Frieze with Grape Vine' +p80659 +sg25270 +S'Stefano Della Bella' +p80660 +sg25273 +S'etching' +p80661 +sg25275 +S'probably 1648' +p80662 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7ea.jpg' +p80663 +sg25267 +g27 +sa(dp80664 +g25268 +S'Three Ornamental Bands' +p80665 +sg25270 +S'Stefano Della Bella' +p80666 +sg25273 +S'etching' +p80667 +sg25275 +S'probably 1648' +p80668 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7ec.jpg' +p80669 +sg25267 +g27 +sa(dp80670 +g25268 +S'Ornamental Frieze with Children and Dogs' +p80671 +sg25270 +S'Stefano Della Bella' +p80672 +sg25273 +S'etching' +p80673 +sg25275 +S'probably 1648' +p80674 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7e9.jpg' +p80675 +sg25267 +g27 +sa(dp80676 +g25268 +S'Dolphins and Tritons' +p80677 +sg25270 +S'Stefano Della Bella' +p80678 +sg25273 +S'etching' +p80679 +sg25275 +S'probably 1648' +p80680 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7e8.jpg' +p80681 +sg25267 +g27 +sa(dp80682 +g25268 +S'Two Ornamental Bands with Cupid and Heads of the Four Seasons' +p80683 +sg25270 +S'Stefano Della Bella' +p80684 +sg25273 +S'etching' +p80685 +sg25275 +S'probably 1648' +p80686 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7f7.jpg' +p80687 +sg25267 +g27 +sa(dp80688 +g25268 +S'Ornamental Frieze with Eagle and Lion Engarlanded by Children' +p80689 +sg25270 +S'Stefano Della Bella' +p80690 +sg25273 +S'etching' +p80691 +sg25275 +S'probably 1648' +p80692 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7f6.jpg' +p80693 +sg25267 +g27 +sa(dp80694 +g25268 +S'Two Leopards Jumping a Festoon Supported by Children' +p80695 +sg25270 +S'Stefano Della Bella' +p80696 +sg25273 +S'etching' +p80697 +sg25275 +S'probably 1648' +p80698 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7f5.jpg' +p80699 +sg25267 +g27 +sa(dp80700 +g25268 +S'Cartouche' +p80701 +sg25270 +S'Artist Information (' +p80702 +sg25273 +S'(artist after)' +p80703 +sg25275 +S'\n' +p80704 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c810.jpg' +p80705 +sg25267 +g27 +sa(dp80706 +g25268 +S'Cartouche' +p80707 +sg25270 +S'Artist Information (' +p80708 +sg25273 +S'(artist after)' +p80709 +sg25275 +S'\n' +p80710 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c811.jpg' +p80711 +sg25267 +g27 +sa(dp80712 +g25268 +S'Le restaurant' +p80713 +sg25270 +S'Artist Information (' +p80714 +sg25273 +S'(artist)' +p80715 +sg25275 +S'\n' +p80716 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096d8.jpg' +p80717 +sg25267 +g27 +sa(dp80718 +g25268 +S'Cartouche' +p80719 +sg25270 +S'Artist Information (' +p80720 +sg25273 +S'(artist after)' +p80721 +sg25275 +S'\n' +p80722 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c812.jpg' +p80723 +sg25267 +g27 +sa(dp80724 +g25268 +S'Cartouche' +p80725 +sg25270 +S'Artist Information (' +p80726 +sg25273 +S'(artist after)' +p80727 +sg25275 +S'\n' +p80728 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c813.jpg' +p80729 +sg25267 +g27 +sa(dp80730 +g25268 +S'Cartouche' +p80731 +sg25270 +S'Artist Information (' +p80732 +sg25273 +S'(artist after)' +p80733 +sg25275 +S'\n' +p80734 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c814.jpg' +p80735 +sg25267 +g27 +sa(dp80736 +g25268 +S'Cartouche' +p80737 +sg25270 +S'Artist Information (' +p80738 +sg25273 +S'(artist after)' +p80739 +sg25275 +S'\n' +p80740 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c815.jpg' +p80741 +sg25267 +g27 +sa(dp80742 +g25268 +S'Cartouche' +p80743 +sg25270 +S'Artist Information (' +p80744 +sg25273 +S'(artist after)' +p80745 +sg25275 +S'\n' +p80746 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c816.jpg' +p80747 +sg25267 +g27 +sa(dp80748 +g25268 +S'Cartouche' +p80749 +sg25270 +S'Artist Information (' +p80750 +sg25273 +S'(artist after)' +p80751 +sg25275 +S'\n' +p80752 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c817.jpg' +p80753 +sg25267 +g27 +sa(dp80754 +g25268 +S'Cartouche' +p80755 +sg25270 +S'Artist Information (' +p80756 +sg25273 +S'(artist after)' +p80757 +sg25275 +S'\n' +p80758 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c818.jpg' +p80759 +sg25267 +g27 +sa(dp80760 +g25268 +S'Cartouche' +p80761 +sg25270 +S'Artist Information (' +p80762 +sg25273 +S'(artist after)' +p80763 +sg25275 +S'\n' +p80764 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c819.jpg' +p80765 +sg25267 +g27 +sa(dp80766 +g25268 +S'Cartouche' +p80767 +sg25270 +S'Artist Information (' +p80768 +sg25273 +S'(artist after)' +p80769 +sg25275 +S'\n' +p80770 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c81a.jpg' +p80771 +sg25267 +g27 +sa(dp80772 +g25268 +S'The Archangel Michael Weighing a Soul' +p80773 +sg25270 +S'Lucas Cranach the Elder' +p80774 +sg25273 +S'woodcut' +p80775 +sg25275 +S'1506' +p80776 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a911.jpg' +p80777 +sg25267 +g27 +sa(dp80778 +g25268 +S'Le consomme' +p80779 +sg25270 +S'Artist Information (' +p80780 +sg25273 +S'(artist)' +p80781 +sg25275 +S'\n' +p80782 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096da.jpg' +p80783 +sg25267 +g27 +sa(dp80784 +g25268 +S'Plan et elevation des plus beaux confessionnaux de Paris, tres fidelemant mesure' +p80785 +sg25270 +S'Jean Le Blond' +p80786 +sg25273 +S'engraving' +p80787 +sg25275 +S'published 1688' +p80788 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b18.jpg' +p80789 +sg25267 +g27 +sa(dp80790 +g25268 +S'Plan et elevation des plus beaux confessionnaux de Paris, tres fidelemant mesure' +p80791 +sg25270 +S'Jean Le Blond' +p80792 +sg25273 +S'engraving' +p80793 +sg25275 +S'published 1688' +p80794 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b16.jpg' +p80795 +sg25267 +g27 +sa(dp80796 +g25268 +S'Plan et elevation des plus beaux confessionnaux de Paris, tres fidelemant mesure' +p80797 +sg25270 +S'Jean Le Blond' +p80798 +sg25273 +S'engraving' +p80799 +sg25275 +S'published 1688' +p80800 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b1b.jpg' +p80801 +sg25267 +g27 +sa(dp80802 +g25268 +S'Plan et elevation des plus beaux confessionnaux de Paris, tres fidelemant mesure' +p80803 +sg25270 +S'Jean Le Blond' +p80804 +sg25273 +S'engraving' +p80805 +sg25275 +S'published 1688' +p80806 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b1a.jpg' +p80807 +sg25267 +g27 +sa(dp80808 +g25268 +S'Plan et elevation des plus beaux confessionnaux de Paris, tres fidelemant mesure' +p80809 +sg25270 +S'Jean Le Blond' +p80810 +sg25273 +S'engraving' +p80811 +sg25275 +S'published 1688' +p80812 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b17.jpg' +p80813 +sg25267 +g27 +sa(dp80814 +g25268 +S'Plan et elevation des plus beaux confessionnaux de Paris, tres fidelemant mesure' +p80815 +sg25270 +S'Jean Le Blond' +p80816 +sg25273 +S'engraving' +p80817 +sg25275 +S'published 1688' +p80818 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b15.jpg' +p80819 +sg25267 +g27 +sa(dp80820 +g25268 +S'Livre de Tables' +p80821 +sg25270 +S'Pierre Lepautre' +p80822 +sg25273 +S'etching' +p80823 +sg25275 +S'unknown date\n' +p80824 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b39.jpg' +p80825 +sg25267 +g27 +sa(dp80826 +g25268 +S'Livre de Tables' +p80827 +sg25270 +S'Pierre Lepautre' +p80828 +sg25273 +S'etching' +p80829 +sg25275 +S'unknown date\n' +p80830 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b3a.jpg' +p80831 +sg25267 +g27 +sa(dp80832 +g25268 +S'Livre de Tables' +p80833 +sg25270 +S'Pierre Lepautre' +p80834 +sg25273 +S'etching' +p80835 +sg25275 +S'unknown date\n' +p80836 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b38.jpg' +p80837 +sg25267 +g27 +sa(dp80838 +g25268 +S'Livre de Tables' +p80839 +sg25270 +S'Pierre Lepautre' +p80840 +sg25273 +S'etching' +p80841 +sg25275 +S'unknown date\n' +p80842 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b3b.jpg' +p80843 +sg25267 +g27 +sa(dp80844 +g25268 +S'Le retour trop precipite' +p80845 +sg25270 +S'Jean Antoine Pierron' +p80846 +sg25273 +S'etching and engraving' +p80847 +sg25275 +S'1788' +p80848 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009662.jpg' +p80849 +sg25267 +g27 +sa(dp80850 +g25268 +S'Livre de Tables' +p80851 +sg25270 +S'Pierre Lepautre' +p80852 +sg25273 +S'etching' +p80853 +sg25275 +S'unknown date\n' +p80854 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b3c.jpg' +p80855 +sg25267 +g27 +sa(dp80856 +g25268 +S'Livre de Tables' +p80857 +sg25270 +S'Pierre Lepautre' +p80858 +sg25273 +S'etching' +p80859 +sg25275 +S'unknown date\n' +p80860 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b3d.jpg' +p80861 +sg25267 +g27 +sa(dp80862 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80863 +sg25268 +S'Frontispiece' +p80864 +sg25270 +S'Artist Information (' +p80865 +sa(dp80866 +g25273 +S'Italian, 1615 - 1673' +p80867 +sg25267 +g27 +sg25275 +S'(artist after)' +p80868 +sg25268 +S'Figures' +p80869 +sg25270 +S'Artist Information (' +p80870 +sa(dp80871 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80872 +sg25268 +S'Soldier Holding a Long Cane with Both Hands, Walking Toward the Left' +p80873 +sg25270 +S'Artist Information (' +p80874 +sa(dp80875 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80876 +sg25268 +S'Soldier Holding a Cane in His Right Hand, Pointing Toward the Left' +p80877 +sg25270 +S'Artist Information (' +p80878 +sa(dp80879 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80880 +sg25268 +S'Soldier Holding a Long Sword with Both Hands' +p80881 +sg25270 +S'Artist Information (' +p80882 +sa(dp80883 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80884 +sg25268 +S'Soldier, Seated' +p80885 +sg25270 +S'Artist Information (' +p80886 +sa(dp80887 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80888 +sg25268 +S'Soldier Holding a Shield' +p80889 +sg25270 +S'Artist Information (' +p80890 +sa(dp80891 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80892 +sg25268 +S'Soldier with Cane, Facing Right' +p80893 +sg25270 +S'Artist Information (' +p80894 +sa(dp80895 +g25268 +S'Le roman dangereux' +p80896 +sg25270 +S'Artist Information (' +p80897 +sg25273 +S'(artist after)' +p80898 +sg25275 +S'\n' +p80899 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f8d.jpg' +p80900 +sg25267 +g27 +sa(dp80901 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80902 +sg25268 +S'Soldier in Profile with Sword and Cane, Facing Right' +p80903 +sg25270 +S'Artist Information (' +p80904 +sa(dp80905 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80906 +sg25268 +S'Soldier Carrying a Cane, Striding Toward the Left' +p80907 +sg25270 +S'Artist Information (' +p80908 +sa(dp80909 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80910 +sg25268 +S'Soldier in Helmet and Armor Regarding a Stream' +p80911 +sg25270 +S'Artist Information (' +p80912 +sa(dp80913 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80914 +sg25268 +S'Soldier Holding His Lance with Both Hands' +p80915 +sg25270 +S'Artist Information (' +p80916 +sa(dp80917 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80918 +sg25268 +S'Soldier Holding a Cane and His Shield, Facing Left' +p80919 +sg25270 +S'Artist Information (' +p80920 +sa(dp80921 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80922 +sg25268 +S'Seated Soldier Leaning on His Shield' +p80923 +sg25270 +S'Artist Information (' +p80924 +sa(dp80925 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80926 +sg25268 +S'Soldier Supported by a Long Cane, Facing Right' +p80927 +sg25270 +S'Artist Information (' +p80928 +sa(dp80929 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80930 +sg25268 +S'Soldier, En Face, Shouldering a Pike and Holding a Shield' +p80931 +sg25270 +S'Artist Information (' +p80932 +sa(dp80933 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80934 +sg25268 +S'Soldier, Seated, in a Helmet, Holding a Cane' +p80935 +sg25270 +S'Artist Information (' +p80936 +sa(dp80937 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80938 +sg25268 +S'Soldier, Standing, Seen from Behind, in a Helmet, Holding a Cane' +p80939 +sg25270 +S'Artist Information (' +p80940 +sa(dp80941 +g25268 +S'Les sabots' +p80942 +sg25270 +S'Artist Information (' +p80943 +sg25273 +S'(artist after)' +p80944 +sg25275 +S'\n' +p80945 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e4a.jpg' +p80946 +sg25267 +g27 +sa(dp80947 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80948 +sg25268 +S'Soldier, Standing, Holding a Pike with Both Hands' +p80949 +sg25270 +S'Artist Information (' +p80950 +sa(dp80951 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80952 +sg25268 +S'Soldier, Standing, Holding a Long Cane Before a Rocky Wall' +p80953 +sg25270 +S'Artist Information (' +p80954 +sa(dp80955 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80956 +sg25268 +S'Soldier, Standing, Holding a Cane, Facing Left' +p80957 +sg25270 +S'Artist Information (' +p80958 +sa(dp80959 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80960 +sg25268 +S'Soldier, Standing, Looking at the Ground' +p80961 +sg25270 +S'Artist Information (' +p80962 +sa(dp80963 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80964 +sg25268 +S'Two Soldiers, One Seated with Sword and Shield' +p80965 +sg25270 +S'Artist Information (' +p80966 +sa(dp80967 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80968 +sg25268 +S'Two Soldiers Seated on a Rectangular Stone' +p80969 +sg25270 +S'Artist Information (' +p80970 +sa(dp80971 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80972 +sg25268 +S'Two Soldiers, Seated, One on a Stone, the Other on the Ground' +p80973 +sg25270 +S'Artist Information (' +p80974 +sa(dp80975 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80976 +sg25268 +S'Two Soldiers, One in Helemt and Bearded' +p80977 +sg25270 +S'Artist Information (' +p80978 +sa(dp80979 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80980 +sg25268 +S'Man, Pointing Upward, and Soldier in Repose' +p80981 +sg25270 +S'Artist Information (' +p80982 +sa(dp80983 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80984 +sg25268 +S'Man with Cane, Seated, and Soldier in Helmet' +p80985 +sg25270 +S'Artist Information (' +p80986 +sa(dp80987 +g25268 +S'Le seducteur' +p80988 +sg25270 +S'Artist Information (' +p80989 +sg25273 +S'Swedish, 1737 - 1807' +p80990 +sg25275 +S'(artist after)' +p80991 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a00097ec.jpg' +p80992 +sg25267 +g27 +sa(dp80993 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80994 +sg25268 +S'Three Soldiers, One Seated and Supporting Himself with a Cane and a Shield' +p80995 +sg25270 +S'Artist Information (' +p80996 +sa(dp80997 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p80998 +sg25268 +S'Four Soldiers, One Seated on a Stone on the Left' +p80999 +sg25270 +S'Artist Information (' +p81000 +sa(dp81001 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81002 +sg25268 +S'Two Soldiers, One Pointing Toward the Left, the One Below Holding a SHield' +p81003 +sg25270 +S'Artist Information (' +p81004 +sa(dp81005 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81006 +sg25268 +S'Three Soldiers in Conversation' +p81007 +sg25270 +S'Artist Information (' +p81008 +sa(dp81009 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81010 +sg25268 +S'Seated Soldier with Shield and Two Other Figures' +p81011 +sg25270 +S'Artist Information (' +p81012 +sa(dp81013 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81014 +sg25268 +S'Four Soldiers, One with Flag' +p81015 +sg25270 +S'Artist Information (' +p81016 +sa(dp81017 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81018 +sg25268 +S'Two Soldiers, One with His Hand Raised, Pointing Toward the Left' +p81019 +sg25270 +S'Artist Information (' +p81020 +sa(dp81021 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81022 +sg25268 +S'Two Soldiers, One Seated on a Ledge, Holding a Cane' +p81023 +sg25270 +S'Artist Information (' +p81024 +sa(dp81025 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81026 +sg25268 +S'Two Soldiers Facing a Third Who Holds a Shield' +p81027 +sg25270 +S'Artist Information (' +p81028 +sa(dp81029 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81030 +sg25268 +S'Five Soldiers' +p81031 +sg25270 +S'Artist Information (' +p81032 +sa(dp81033 +g25268 +S'Si tu voulais' +p81034 +sg25270 +S'Artist Information (' +p81035 +sg25273 +S'(artist after)' +p81036 +sg25275 +S'\n' +p81037 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ee8.jpg' +p81038 +sg25267 +g27 +sa(dp81039 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81040 +sg25268 +S'Two Soldiers, One Seen from Behind, Holding a Club' +p81041 +sg25270 +S'Artist Information (' +p81042 +sa(dp81043 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81044 +sg25268 +S'Soldier Holding a Shield with the Head of Medusa' +p81045 +sg25270 +S'Artist Information (' +p81046 +sa(dp81047 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81048 +sg25268 +S'Two Soldiers, One Seen from Behind and Holding a Cane in His Right Hand' +p81049 +sg25270 +S'Artist Information (' +p81050 +sa(dp81051 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81052 +sg25268 +S'Three Soldiers, One Seated on a Square Block of Stone' +p81053 +sg25270 +S'Artist Information (' +p81054 +sa(dp81055 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81056 +sg25268 +S'Three Soldiers, One Seated on a Square Stone' +p81057 +sg25270 +S'Artist Information (' +p81058 +sa(dp81059 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81060 +sg25268 +S'Seated Peasant with Two Other Men' +p81061 +sg25270 +S'Artist Information (' +p81062 +sa(dp81063 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81064 +sg25268 +S'Three Men in Conversation' +p81065 +sg25270 +S'Artist Information (' +p81066 +sa(dp81067 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81068 +sg25268 +S'Man with Staff Seen from Behind' +p81069 +sg25270 +S'Artist Information (' +p81070 +sa(dp81071 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81072 +sg25268 +S'Four Men in Conversation' +p81073 +sg25270 +S'Artist Information (' +p81074 +sa(dp81075 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81076 +sg25268 +S'Young Man, Seated' +p81077 +sg25270 +S'Artist Information (' +p81078 +sa(dp81079 +g25268 +S'Valmont and Emilie' +p81080 +sg25270 +S'Artist Information (' +p81081 +sg25273 +S'(artist after)' +p81082 +sg25275 +S'\n' +p81083 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000970b.jpg' +p81084 +sg25267 +g27 +sa(dp81085 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81086 +sg25268 +S'Young Man Viewing a Painting' +p81087 +sg25270 +S'Artist Information (' +p81088 +sa(dp81089 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81090 +sg25268 +S'Man with Fishing Net and Two Other Figures' +p81091 +sg25270 +S'Artist Information (' +p81092 +sa(dp81093 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81094 +sg25268 +S'Man Striding Followed by a Retainer' +p81095 +sg25270 +S'Artist Information (' +p81096 +sa(dp81097 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81098 +sg25268 +S'Peasant with Staff' +p81099 +sg25270 +S'Artist Information (' +p81100 +sa(dp81101 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81102 +sg25268 +S'Man Standing, with Arm Raised, Pointing Toward the Left' +p81103 +sg25270 +S'Artist Information (' +p81104 +sa(dp81105 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81106 +sg25268 +S'Oriental in Turban, Seen from Behind, with Two Women' +p81107 +sg25270 +S'Artist Information (' +p81108 +sa(dp81109 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81110 +sg25268 +S'Man Striding with Right Arm Outstretched' +p81111 +sg25270 +S'Artist Information (' +p81112 +sa(dp81113 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81114 +sg25268 +S'Man with Bow, Pointing to the Right' +p81115 +sg25270 +S'Artist Information (' +p81116 +sa(dp81117 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81118 +sg25268 +S'Man, Standing, His Arm Pointing Horizontally' +p81119 +sg25270 +S'Artist Information (' +p81120 +sa(dp81121 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81122 +sg25268 +S'Nude, Seated, Holding onto a Tree' +p81123 +sg25270 +S'Artist Information (' +p81124 +sa(dp81125 +g25268 +S'Le coup de vent (The Gust of Wind)' +p81126 +sg25270 +S'Artist Information (' +p81127 +sg25273 +S'(artist after)' +p81128 +sg25275 +S'\n' +p81129 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f86.jpg' +p81130 +sg25267 +g27 +sa(dp81131 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81132 +sg25268 +S'Semi-Nude, Walking Toward the Right' +p81133 +sg25270 +S'Artist Information (' +p81134 +sa(dp81135 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81136 +sg25268 +S'Young Woman Walking Toward the Right' +p81137 +sg25270 +S'Artist Information (' +p81138 +sa(dp81139 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81140 +sg25268 +S'Young Woman Walking Toward the Left' +p81141 +sg25270 +S'Artist Information (' +p81142 +sa(dp81143 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81144 +sg25268 +S'Nude in Contemplation, Seated on a Rocky Ledge' +p81145 +sg25270 +S'Artist Information (' +p81146 +sa(dp81147 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p81148 +sg25268 +S'Young Mother Carrying an Infant' +p81149 +sg25270 +S'Artist Information (' +p81150 +sa(dp81151 +g25273 +S'drypoint in brown' +p81152 +sg25267 +g27 +sg25275 +S'1896' +p81153 +sg25268 +S'Portrait of a Woman (Portrait einer Dame)' +p81154 +sg25270 +S'Edvard Munch' +p81155 +sa(dp81156 +g25273 +S'aquatint and drypoint' +p81157 +sg25267 +g27 +sg25275 +S'1895' +p81158 +sg25268 +S'Summer Evening (Sommernacht)' +p81159 +sg25270 +S'Edvard Munch' +p81160 +sa(dp81161 +g25273 +S'lithograph' +p81162 +sg25267 +g27 +sg25275 +S'1905' +p81163 +sg25268 +S'Dr. J. Goldstein' +p81164 +sg25270 +S'Edvard Munch' +p81165 +sa(dp81166 +g25273 +S'lithograph' +p81167 +sg25267 +g27 +sg25275 +S'1896' +p81168 +sg25268 +S'The Flower of Love (Die Blume der Liebe)' +p81169 +sg25270 +S'Edvard Munch' +p81170 +sa(dp81171 +g25273 +S'(artist after)' +p81172 +sg25267 +g27 +sg25275 +S'\n' +p81173 +sg25268 +S'Prairie Titlark' +p81174 +sg25270 +S'Artist Information (' +p81175 +sa(dp81176 +g25268 +S'Quintilia Fischieri' +p81177 +sg25270 +S'Federico Barocci' +p81178 +sg25273 +S'oil on canvas' +p81179 +sg25275 +S'probably c. 1600' +p81180 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a00008b2.jpg' +p81181 +sg25267 +g27 +sa(dp81182 +g25268 +S'Le coup de vent (The Gust of Wind)' +p81183 +sg25270 +S'Artist Information (' +p81184 +sg25273 +S'(artist after)' +p81185 +sg25275 +S'\n' +p81186 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f8c.jpg' +p81187 +sg25267 +g27 +sa(dp81188 +g25273 +S'charcoal on paperboard' +p81189 +sg25267 +g27 +sg25275 +S'1944' +p81190 +sg25268 +S'Shadows' +p81191 +sg25270 +S'Kerr Eby' +p81192 +sa(dp81193 +g25273 +S'lithograph' +p81194 +sg25267 +g27 +sg25275 +S'probably 1923/1924' +p81195 +sg25268 +S'The Return Home' +p81196 +sg25270 +S'K\xc3\xa4the Kollwitz' +p81197 +sa(dp81198 +g25273 +S'black crayon and charcoal on laid paper' +p81199 +sg25267 +g27 +sg25275 +S'1908' +p81200 +sg25268 +S'The Homeless' +p81201 +sg25270 +S'K\xc3\xa4the Kollwitz' +p81202 +sa(dp81203 +g25273 +S'lithograph [poster]' +p81204 +sg25267 +g27 +sg25275 +S'1906' +p81205 +sg25268 +S'Poster for German Handicraft Exhibition (Plakat der deutschen Heimarbeit-Ausstellung)' +p81206 +sg25270 +S'K\xc3\xa4the Kollwitz' +p81207 +sa(dp81208 +g25268 +S'Grain Field at the Edge of a Wood (Corn Field)' +p81209 +sg25270 +S'Jacob van Ruisdael' +p81210 +sg25273 +S'etching and drypoint' +p81211 +sg25275 +S'unknown date\n' +p81212 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3a2.jpg' +p81213 +sg25267 +g27 +sa(dp81214 +g25268 +S"Birds Nailed to a Barn Door (Le haut d'un battant de porte)" +p81215 +sg25270 +S'F\xc3\xa9lix Bracquemond' +p81216 +sg25273 +S'etching' +p81217 +sg25275 +S'1852' +p81218 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d72.jpg' +p81219 +sg25267 +g27 +sa(dp81220 +g25268 +S'David and Bathsheba' +p81221 +sg25270 +S'Allaert Claesz' +p81222 +sg25273 +S'engraving' +p81223 +sg25275 +S'unknown date\n' +p81224 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd34.jpg' +p81225 +sg25267 +g27 +sa(dp81226 +g25268 +S'Apple Trees in Auvers (Pommiers a Auvers)' +p81227 +sg25270 +S'Charles-Fran\xc3\xa7ois Daubigny' +p81228 +sg25273 +S'etching' +p81229 +sg25275 +S'1877' +p81230 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091dc.jpg' +p81231 +sg25267 +g27 +sa(dp81232 +g25268 +S'The Infant in the Gallery' +p81233 +sg25270 +S'Jean de Gourmont I' +p81234 +sg25273 +S'engraving' +p81235 +sg25275 +S'unknown date\n' +p81236 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008478.jpg' +p81237 +sg25267 +g27 +sa(dp81238 +g25268 +S'The Big Cedar' +p81239 +sg25270 +S'Childe Hassam' +p81240 +sg25273 +S'etching with plate tone and false biting' +p81241 +sg25275 +S'1927' +p81242 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a00104de.jpg' +p81243 +sg25267 +g27 +sa(dp81244 +g25268 +S'Queen Marie-Antoinette' +p81245 +sg25270 +S'Artist Information (' +p81246 +sg25273 +S'(artist after)' +p81247 +sg25275 +S'\n' +p81248 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cbf.jpg' +p81249 +sg25267 +g27 +sa(dp81250 +g25268 +S'The Broad Curtain' +p81251 +sg25270 +S'Childe Hassam' +p81252 +sg25273 +S'lithograph' +p81253 +sg25275 +S'1918' +p81254 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a00104ec.jpg' +p81255 +sg25267 +g27 +sa(dp81256 +g25268 +S'Saint George on Horseback Slaying the Dragon' +p81257 +sg25270 +S'Daniel Hopfer' +p81258 +sg25273 +S'etching (iron), plate bitten twice' +p81259 +sg25275 +S'unknown date\n' +p81260 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac71.jpg' +p81261 +sg25267 +g27 +sa(dp81262 +g25268 +S'Deer Hunt (La chasse au cerf)' +p81263 +sg25270 +S'Charles \xc3\x89mile Jacque' +p81264 +sg25273 +S'lithograph' +p81265 +sg25275 +S'unknown date\n' +p81266 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e07.jpg' +p81267 +sg25267 +g27 +sa(dp81268 +g25268 +S'The Flight into Egypt' +p81269 +sg25270 +S'Hans Sebald Lautensack' +p81270 +sg25273 +S'etching' +p81271 +sg25275 +S'1558' +p81272 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b244.jpg' +p81273 +sg25267 +g27 +sa(dp81274 +g25268 +S'David and Goliath' +p81275 +sg25270 +S'Hans Sebald Lautensack' +p81276 +sg25273 +S'etching//conjoining subject on 2 sheets of paper' +p81277 +sg25275 +S'1551' +p81278 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acbe.jpg' +p81279 +sg25267 +g27 +sa(dp81280 +g25268 +S'Seated Magician with Other Figures beside an Altar' +p81281 +sg25270 +S'Giovanni Battista Tiepolo' +p81282 +sg25273 +S'etching' +p81283 +sg25275 +S'unknown date\n' +p81284 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d43a.jpg' +p81285 +sg25267 +g27 +sa(dp81286 +g25268 +S'Saint Peter Walking on the Water' +p81287 +sg25270 +S'Dirk Jacobsz Vellert' +p81288 +sg25273 +S'engraving' +p81289 +sg25275 +S'1525' +p81290 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cebf.jpg' +p81291 +sg25267 +g27 +sa(dp81292 +g25268 +S'Saint Bridget' +p81293 +sg25270 +S'German 15th Century' +p81294 +sg25273 +S'Schreiber, no. 1293, State a' +p81295 +sg25275 +S'\nwoodcut, hand-colored in gray, brown, green, yellow, carmine, and red' +p81296 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a560.jpg' +p81297 +sg25267 +g27 +sa(dp81298 +g25273 +S'Rosenwald Collection' +p81299 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p81300 +sg25268 +S'Playing Cards' +p81301 +sg25270 +S'Italian 15th Century' +p81302 +sa(dp81303 +g25273 +S'Rosenwald Collection' +p81304 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p81305 +sg25268 +S'Playing Cards' +p81306 +sg25270 +S'Italian 15th Century' +p81307 +sa(dp81308 +g25268 +S'La cage symbolique (The Symbolic Cage)' +p81309 +sg25270 +S'Artist Information (' +p81310 +sg25273 +S'(artist after)' +p81311 +sg25275 +S'\n' +p81312 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009705.jpg' +p81313 +sg25267 +g27 +sa(dp81314 +g25273 +S'Rosenwald Collection' +p81315 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p81316 +sg25268 +S'Playing Cards' +p81317 +sg25270 +S'Italian 15th Century' +p81318 +sa(dp81319 +g25273 +S'Rosenwald Collection' +p81320 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p81321 +sg25268 +S'Playing Cards' +p81322 +sg25270 +S'Italian 15th Century' +p81323 +sa(dp81324 +g25273 +S'Rosenwald Collection' +p81325 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p81326 +sg25268 +S'Playing Cards' +p81327 +sg25270 +S'Italian 15th Century' +p81328 +sa(dp81329 +g25273 +S'Rosenwald Collection' +p81330 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p81331 +sg25268 +S'Playing Cards' +p81332 +sg25270 +S'Italian 15th Century' +p81333 +sa(dp81334 +g25268 +S'Knight and Lady' +p81335 +sg25270 +S'Master NS' +p81336 +sg25273 +S'engraving' +p81337 +sg25275 +S'unknown date\n' +p81338 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad00.jpg' +p81339 +sg25267 +g27 +sa(dp81340 +g25273 +S'etching' +p81341 +sg25267 +g27 +sg25275 +S'1942' +p81342 +sg25268 +S'Amok' +p81343 +sg25270 +S'Ian Hugo' +p81344 +sa(dp81345 +g25273 +S'engraved copper plate' +p81346 +sg25267 +g27 +sg25275 +S'1942' +p81347 +sg25268 +S'Embryonical' +p81348 +sg25270 +S'Ian Hugo' +p81349 +sa(dp81350 +g25273 +S'engraving' +p81351 +sg25267 +g27 +sg25275 +S'1941' +p81352 +sg25268 +S'Embryonical' +p81353 +sg25270 +S'Ian Hugo' +p81354 +sa(dp81355 +g25273 +S'engraved copper plate' +p81356 +sg25267 +g27 +sg25275 +S'1943' +p81357 +sg25268 +S'Breathing Grass' +p81358 +sg25270 +S'Ian Hugo' +p81359 +sa(dp81360 +g25273 +S'engraving' +p81361 +sg25267 +g27 +sg25275 +S'1943' +p81362 +sg25268 +S'Breathing Grass' +p81363 +sg25270 +S'Ian Hugo' +p81364 +sa(dp81365 +g25268 +S"L'amour a l'espagnole" +p81366 +sg25270 +S'Artist Information (' +p81367 +sg25273 +S'(artist)' +p81368 +sg25275 +S'\n' +p81369 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009681.jpg' +p81370 +sg25267 +g27 +sa(dp81371 +g25268 +S'Poesia (Poetry)' +p81372 +sg25270 +S'Master of the S-Series Tarocchi' +p81373 +sg25273 +S'engraving' +p81374 +sg25275 +S'probably c. 1470' +p81375 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c702.jpg' +p81376 +sg25267 +g27 +sa(dp81377 +g25268 +S'Cherub on a Vase with Inscription: "SOLI DEO HONOR"' +p81378 +sg25270 +S'Artist Information (' +p81379 +sg25273 +S'(artist)' +p81380 +sg25275 +S'\n' +p81381 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c728.jpg' +p81382 +sg25267 +g27 +sa(dp81383 +g25268 +S'Saint Christopher' +p81384 +sg25270 +S'Barthel Beham' +p81385 +sg25273 +S'engraving' +p81386 +sg25275 +S'1520' +p81387 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7ad.jpg' +p81388 +sg25267 +g27 +sa(dp81389 +g25268 +S'Saint Sebaldus' +p81390 +sg25270 +S'Hans Springinklee' +p81391 +sg25273 +S', unknown date' +p81392 +sg25275 +S'\n' +p81393 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b27a.jpg' +p81394 +sg25267 +g27 +sa(dp81395 +g25268 +S'Henry IV' +p81396 +sg25270 +S'Hendrick Goltzius' +p81397 +sg25273 +S', 1592' +p81398 +sg25275 +S'\n' +p81399 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce2e.jpg' +p81400 +sg25267 +g27 +sa(dp81401 +g25268 +S'Apollo and Marsyas' +p81402 +sg25270 +S'Benedetto Montagna' +p81403 +sg25273 +S'engraving' +p81404 +sg25275 +S'c. 1515/1520' +p81405 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c75a.jpg' +p81406 +sg25267 +g27 +sa(dp81407 +g25268 +S'The First Oriental Head' +p81408 +sg25270 +S'Artist Information (' +p81409 +sg25273 +S'(artist)' +p81410 +sg25275 +S'\n' +p81411 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d376.jpg' +p81412 +sg25267 +g27 +sa(dp81413 +g25268 +S'The Small Madonna and Child' +p81414 +sg25270 +S'Martin Schongauer' +p81415 +sg25273 +S'engraving' +p81416 +sg25275 +S'c. 1480' +p81417 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4ab.jpg' +p81418 +sg25267 +g27 +sa(dp81419 +g25268 +S'The Good Samaritan' +p81420 +sg25270 +S'Rodolphe Bresdin' +p81421 +sg25273 +S'lithograph' +p81422 +sg25275 +S'1861' +p81423 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ef7.jpg' +p81424 +sg25267 +g27 +sa(dp81425 +g25273 +S'lithograph' +p81426 +sg25267 +g27 +sg25275 +S'1929' +p81427 +sg25268 +S'Marching Women' +p81428 +sg25270 +S'Jos\xc3\xa9 Clemente Orozco' +p81429 +sa(dp81430 +g25268 +S"L'amour a l'espagnole" +p81431 +sg25270 +S'Artist Information (' +p81432 +sg25273 +S'(artist)' +p81433 +sg25275 +S'\n' +p81434 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000967e.jpg' +p81435 +sg25267 +g27 +sa(dp81436 +g25273 +S'lithograph' +p81437 +sg25267 +g27 +sg25275 +S'1931' +p81438 +sg25268 +S'Head' +p81439 +sg25270 +S'David Alfaro Siqueiros' +p81440 +sa(dp81441 +g25273 +S'lithograph' +p81442 +sg25267 +g27 +sg25275 +S'published 1917/1918' +p81443 +sg25268 +S'A Ship Yard' +p81444 +sg25270 +S'Sir Muirhead Bone' +p81445 +sa(dp81446 +g25273 +S'lithograph' +p81447 +sg25267 +g27 +sg25275 +S'published 1917/1918' +p81448 +sg25268 +S'On the Stocks' +p81449 +sg25270 +S'Sir Muirhead Bone' +p81450 +sa(dp81451 +g25273 +S'lithograph' +p81452 +sg25267 +g27 +sg25275 +S'published 1917/1918' +p81453 +sg25268 +S'A Workshop' +p81454 +sg25270 +S'Sir Muirhead Bone' +p81455 +sa(dp81456 +g25273 +S'lithograph' +p81457 +sg25267 +g27 +sg25275 +S'published 1917/1918' +p81458 +sg25268 +S'A Fitting-Out Basin' +p81459 +sg25270 +S'Sir Muirhead Bone' +p81460 +sa(dp81461 +g25273 +S'lithograph' +p81462 +sg25267 +g27 +sg25275 +S'published 1917/1918' +p81463 +sg25268 +S'Ready for Sea' +p81464 +sg25270 +S'Sir Muirhead Bone' +p81465 +sa(dp81466 +g25268 +S'Charlemagne, Arthur and Godfrey' +p81467 +sg25270 +S'Hans Burgkmair I' +p81468 +sg25273 +S'woodcut' +p81469 +sg25275 +S'1516' +p81470 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8e0.jpg' +p81471 +sg25267 +g27 +sa(dp81472 +g25268 +S'Joshua, David and Judas Maccabaeus' +p81473 +sg25270 +S'Hans Burgkmair I' +p81474 +sg25273 +S'woodcut' +p81475 +sg25275 +S'1516' +p81476 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8e2.jpg' +p81477 +sg25267 +g27 +sa(dp81478 +g25268 +S'Hector, Alexander and Julius Caesar' +p81479 +sg25270 +S'Hans Burgkmair I' +p81480 +sg25273 +S'woodcut' +p81481 +sg25275 +S'1516' +p81482 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8d8.jpg' +p81483 +sg25267 +g27 +sa(dp81484 +g25268 +S'Saint Helena, Saint Brigitta and Saint Elizabeth' +p81485 +sg25270 +S'Hans Burgkmair I' +p81486 +sg25273 +S'woodcut' +p81487 +sg25275 +S'1516' +p81488 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8e3.jpg' +p81489 +sg25267 +g27 +sa(dp81490 +g25268 +S'Le lever de la mariee russe' +p81491 +sg25270 +S'Artist Information (' +p81492 +sg25273 +S'(artist after)' +p81493 +sg25275 +S'\n' +p81494 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009686.jpg' +p81495 +sg25267 +g27 +sa(dp81496 +g25268 +S'Hester, Judith and Jael' +p81497 +sg25270 +S'Hans Burgkmair I' +p81498 +sg25273 +S'woodcut' +p81499 +sg25275 +S'1516' +p81500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8e1.jpg' +p81501 +sg25267 +g27 +sa(dp81502 +g25268 +S'Lucretia, Veturia and Virginia' +p81503 +sg25270 +S'Hans Burgkmair I' +p81504 +sg25273 +S'woodcut' +p81505 +sg25275 +S'1516' +p81506 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8da.jpg' +p81507 +sg25267 +g27 +sa(dp81508 +g25268 +S'Two Turbaned Magicians and a Boy' +p81509 +sg25270 +S'Giovanni Battista Tiepolo' +p81510 +sg25273 +S'etching' +p81511 +sg25275 +S'unknown date\n' +p81512 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb1b.jpg' +p81513 +sg25267 +g27 +sa(dp81514 +g25268 +S'Two Elegant Women in Polish Dress' +p81515 +sg25270 +S'Nicolas Lancret' +p81516 +sg25273 +S'red, black, and white chalk on light brown paper' +p81517 +sg25275 +S'c. 1723' +p81518 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00025/a0002562.jpg' +p81519 +sg25267 +g27 +sa(dp81520 +g25268 +S'Sketches of a Gentleman' +p81521 +sg25270 +S'Jacques Andr\xc3\xa9 Portail' +p81522 +sg25273 +S'red and black chalk on laid paper' +p81523 +sg25275 +S'unknown date\n' +p81524 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00026/a00026d8.jpg' +p81525 +sg25267 +g27 +sa(dp81526 +g25268 +S'Lady Elizabeth Compton' +p81527 +sg25270 +S'Artist Information (' +p81528 +sg25273 +S'(artist after)' +p81529 +sg25275 +S'\n' +p81530 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004ba9.jpg' +p81531 +sg25267 +g27 +sa(dp81532 +g25273 +S'charcoal and pastel on pink prepared paper' +p81533 +sg25267 +g27 +sg25275 +S'unknown date\n' +p81534 +sg25268 +S'James Campbell' +p81535 +sg25270 +S'Charles-Balthazar-Julien-F\xc3\xa9vret de Saint-M\xc3\xa9min' +p81536 +sa(dp81537 +g25273 +S'charcoal and pastel on laid paper' +p81538 +sg25267 +g27 +sg25275 +S'unknown date\n' +p81539 +sg25268 +S'The Honorable Seth Hastings' +p81540 +sg25270 +S'Charles-Balthazar-Julien-F\xc3\xa9vret de Saint-M\xc3\xa9min' +p81541 +sa(dp81542 +g25268 +S'"Expected--alarming rise in the price of soap!"' +p81543 +sg25270 +S'George Cruikshank' +p81544 +sg25273 +S'pen and brown ink with pink, blue, brown, and green wash' +p81545 +sg25275 +S'unknown date\n' +p81546 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c08.jpg' +p81547 +sg25267 +g27 +sa(dp81548 +g25268 +S'George Cruikshank (decorative signature)' +p81549 +sg25270 +S'George Cruikshank' +p81550 +sg25273 +S'pen and ink over graphite on blue paper' +p81551 +sg25275 +S'unknown date\n' +p81552 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c8a.jpg' +p81553 +sg25267 +g27 +sa(dp81554 +g25268 +S'Le retour a la vertu' +p81555 +sg25270 +S'Joseph de Longueil' +p81556 +sg25273 +S'color aquatint and stipple with etching' +p81557 +sg25275 +S'unknown date\n' +p81558 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f06.jpg' +p81559 +sg25267 +g27 +sa(dp81560 +g25268 +S'Street Perspective with Places of Business Labeled' +p81561 +sg25270 +S'George Cruikshank' +p81562 +sg25273 +S'pen and brown ink over graphite annotations on laid paper' +p81563 +sg25275 +S'unknown date\n' +p81564 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c09.jpg' +p81565 +sg25267 +g27 +sa(dp81566 +g25268 +S'Sketch of Octagon Recess with Columns' +p81567 +sg25270 +S'George Cruikshank' +p81568 +sg25273 +S'pen and brown ink on laid paper' +p81569 +sg25275 +S'unknown date\n' +p81570 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c8b.jpg' +p81571 +sg25267 +g27 +sa(dp81572 +g25268 +S'Sketches of Grotesque Faces' +p81573 +sg25270 +S'George Cruikshank' +p81574 +sg25273 +S'graphite with pink, blue, and brown wash on wove paper' +p81575 +sg25275 +S'unknown date\n' +p81576 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c87.jpg' +p81577 +sg25267 +g27 +sa(dp81578 +g25268 +S'Sketch of Mounted Hussar' +p81579 +sg25270 +S'George Cruikshank' +p81580 +sg25273 +S'pen and ink with red, blue, and brown wash on two overlapped, joined sheets from a letter' +p81581 +sg25275 +S'unknown date\n' +p81582 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c0a.jpg' +p81583 +sg25267 +g27 +sa(dp81584 +g25268 +S'Half-Length of a Lawyer and Other Sketches' +p81585 +sg25270 +S'George Cruikshank' +p81586 +sg25273 +S'graphite and pen and brown ink with pink, brown, and blue wash' +p81587 +sg25275 +S'unknown date\n' +p81588 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c0b.jpg' +p81589 +sg25267 +g27 +sa(dp81590 +g25268 +S'Satirical Sketches' +p81591 +sg25270 +S'George Cruikshank' +p81592 +sg25273 +S'pen and brown ink and graphite' +p81593 +sg25275 +S'unknown date\n' +p81594 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c88.jpg' +p81595 +sg25267 +g27 +sa(dp81596 +g25268 +S'Sketches of Head, Arm, and Kneeling Figure' +p81597 +sg25270 +S'George Cruikshank' +p81598 +sg25273 +S'graphite, pen and black ink, with pink, brown, and green wash' +p81599 +sg25275 +S'unknown date\n' +p81600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c89.jpg' +p81601 +sg25267 +g27 +sa(dp81602 +g25268 +S'Both Members of This Club' +p81603 +sg25270 +S'George Bellows' +p81604 +sg25273 +S'oil on canvas' +p81605 +sg25275 +S'1909' +p81606 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000032.jpg' +p81607 +sg25267 +S"Both Members of This Club\n In the painting one can almost sense the atmosphere of stale cigar smoke and body heat that typified these back–room bouts. At the match's frenzied climax, the victorious fighter on the right lunges forward, while the nearly vanquished boxer on the left, his face contorted with pain, weakly resists the blow and momentarily postpones his imminent defeat. Bellows' rapid, slashing brushwork, his characteristic use of dramatic lighting and lurid color, his selection of stark angles and dramatic close–ups all enhance the scene's immediacy. Members of the audience, their faces horribly disfigured by vicarious passion, display an animalistic bloodlust that reveals much about the darker aspects of human nature. The artist is suggesting that the men in the ring, teamed in their physical struggle, also must contend with the larger, perhaps even more brutal adversary of social injustice.\n " +p81608 +sa(dp81609 +g25273 +S'lithograph' +p81610 +sg25267 +g27 +sg25275 +S'1924' +p81611 +sg25268 +S'Never Again War (Nie Wieder Krieg)' +p81612 +sg25270 +S'K\xc3\xa4the Kollwitz' +p81613 +sa(dp81614 +g25268 +S'The Poet Virgil Suspended in a Basket' +p81615 +sg25270 +S'Lucas van Leyden' +p81616 +sg25273 +S'engraving' +p81617 +sg25275 +S'1525' +p81618 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d045.jpg' +p81619 +sg25267 +g27 +sa(dp81620 +g25268 +S'Par ici' +p81621 +sg25270 +S'Artist Information (' +p81622 +sg25273 +S'(artist after)' +p81623 +sg25275 +S'\n' +p81624 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cf0.jpg' +p81625 +sg25267 +g27 +sa(dp81626 +g25268 +S'Female Genius Holding a Coat of Arms' +p81627 +sg25270 +S'Sebald Beham' +p81628 +sg25273 +S'engraving' +p81629 +sg25275 +S'1535' +p81630 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8d1.jpg' +p81631 +sg25267 +g27 +sa(dp81632 +g25268 +S'Male Genius Holding a Coat of Arms' +p81633 +sg25270 +S'Sebald Beham' +p81634 +sg25273 +S'engraving' +p81635 +sg25275 +S'probably 1535' +p81636 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8d2.jpg' +p81637 +sg25267 +g27 +sa(dp81638 +g25268 +S'The Descent of the Angels to One of the Daughters of Men' +p81639 +sg25270 +S'William Blake' +p81640 +sg25273 +S'graphite on laid paper' +p81641 +sg25275 +S'c. 1824/1827' +p81642 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00069/a000695a.jpg' +p81643 +sg25267 +g27 +sa(dp81644 +g25268 +S'An Angel Teaching a Daughter of Men the Secrets of Sin' +p81645 +sg25270 +S'William Blake' +p81646 +sg25273 +S'graphite on laid paper' +p81647 +sg25275 +S'c. 1824/1827' +p81648 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00069/a000695b.jpg' +p81649 +sg25267 +g27 +sa(dp81650 +g25268 +S'The Daughter of Men Becomes a Siren' +p81651 +sg25270 +S'William Blake' +p81652 +sg25273 +S'graphite on laid paper' +p81653 +sg25275 +S'c. 1824/1827' +p81654 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00069/a0006959.jpg' +p81655 +sg25267 +g27 +sa(dp81656 +g25268 +S'Enoch before the Great Glory' +p81657 +sg25270 +S'William Blake' +p81658 +sg25273 +S'graphite on laid paper' +p81659 +sg25275 +S'c. 1824/1827' +p81660 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00069/a0006958.jpg' +p81661 +sg25267 +g27 +sa(dp81662 +g25268 +S'The Vision of the Lord of Spirits' +p81663 +sg25270 +S'William Blake' +p81664 +sg25273 +S'graphite on laid paper' +p81665 +sg25275 +S'c. 1824/1827' +p81666 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a7c.jpg' +p81667 +sg25267 +g27 +sa(dp81668 +g25268 +S'Tarantelle' +p81669 +sg25270 +S'Stanley William Hayter' +p81670 +sg25273 +S'engraving and softground etching' +p81671 +sg25275 +S'1943' +p81672 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a0006074.jpg' +p81673 +sg25267 +g27 +sa(dp81674 +g25268 +S'The Big Horse' +p81675 +sg25270 +S'Stanley William Hayter' +p81676 +sg25273 +S'engraving and drypoint' +p81677 +sg25275 +S'1931' +p81678 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00080/a00080a5.jpg' +p81679 +sg25267 +g27 +sa(dp81680 +g25268 +S'Apocalypse' +p81681 +sg25270 +S'Stanley William Hayter' +p81682 +sg25273 +S'engraving with drypoint' +p81683 +sg25275 +S'1931' +p81684 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a00060fd.jpg' +p81685 +sg25267 +g27 +sa(dp81686 +g25268 +S'Chit chit' +p81687 +sg25270 +S'Artist Information (' +p81688 +sg25273 +S'(artist after)' +p81689 +sg25275 +S'\n' +p81690 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cf1.jpg' +p81691 +sg25267 +g27 +sa(dp81692 +g25268 +S"L'Apocalypse" +p81693 +sg25270 +S'Stanley William Hayter' +p81694 +sg25273 +S"portfolio of 6 engravings with drypoint, title page, and colophon page with verses by Georges Hugnet; an insert of Hugnet's 5-page preface MS inscribed to Hayter [Hors Commerce]" +p81695 +sg25275 +S'published 1932' +p81696 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084a2.jpg' +p81697 +sg25267 +g27 +sa(dp81698 +g25268 +S'Apocalypse' +p81699 +sg25270 +S'Stanley William Hayter' +p81700 +sg25273 +S'engraving with drypoint' +p81701 +sg25275 +S'in or before 1932' +p81702 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00080/a00080a0.jpg' +p81703 +sg25267 +g27 +sa(dp81704 +g25268 +S'Apocalypse' +p81705 +sg25270 +S'Stanley William Hayter' +p81706 +sg25273 +S'engraving with drypoint' +p81707 +sg25275 +S'1931' +p81708 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00080/a00080a4.jpg' +p81709 +sg25267 +g27 +sa(dp81710 +g25268 +S'Apocalypse' +p81711 +sg25270 +S'Stanley William Hayter' +p81712 +sg25273 +S'engraving with drypoint' +p81713 +sg25275 +S'1931' +p81714 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00080/a00080a8.jpg' +p81715 +sg25267 +g27 +sa(dp81716 +g25268 +S'Apocalypse' +p81717 +sg25270 +S'Stanley William Hayter' +p81718 +sg25273 +S'engraving with drypoint' +p81719 +sg25275 +S'1930' +p81720 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00080/a00080a3.jpg' +p81721 +sg25267 +g27 +sa(dp81722 +g25268 +S'Apocalypse' +p81723 +sg25270 +S'Stanley William Hayter' +p81724 +sg25273 +S'engraving with drypoint' +p81725 +sg25275 +S'1931' +p81726 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a00060fe.jpg' +p81727 +sg25267 +g27 +sa(dp81728 +g25268 +S"Planche d'\xc3\xa9tudes" +p81729 +sg25270 +S'Stanley William Hayter' +p81730 +sg25273 +S'engraving' +p81731 +sg25275 +S'1929/1932' +p81732 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00080/a00080a6.jpg' +p81733 +sg25267 +g27 +sa(dp81734 +g25268 +S'Mirror' +p81735 +sg25270 +S'Stanley William Hayter' +p81736 +sg25273 +S'engraving and softground etching with areas of deep intaglio (printing as white relief) where ink has been wiped clean' +p81737 +sg25275 +S'1942' +p81738 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00081/a00081c0.jpg' +p81739 +sg25267 +g27 +sa(dp81740 +g25273 +S'engraved and etched copper plate' +p81741 +sg25267 +g27 +sg25275 +S'1943' +p81742 +sg25268 +S'Tarantelle' +p81743 +sg25270 +S'Stanley William Hayter' +p81744 +sa(dp81745 +g25268 +S'Flight' +p81746 +sg25270 +S'Stanley William Hayter' +p81747 +sg25273 +S'engraving and softground etching with areas of deep intaglio (printing as white relief) where ink has been wiped clean' +p81748 +sg25275 +S'1944' +p81749 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00081/a00081c7.jpg' +p81750 +sg25267 +g27 +sa(dp81751 +g25268 +S'Venus et Adonis' +p81752 +sg25270 +S'Artist Information (' +p81753 +sg25273 +S'(artist after)' +p81754 +sg25275 +S'\n' +p81755 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e80.jpg' +p81756 +sg25267 +g27 +sa(dp81757 +g25273 +S'woodcut' +p81758 +sg25267 +g27 +sg25275 +S'1943' +p81759 +sg25268 +S'Sweat of Blood' +p81760 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81761 +sa(dp81762 +g25273 +S'portfolio with twenty-five woodcuts plus introduction and text' +p81763 +sg25267 +g27 +sg25275 +S'published 1943' +p81764 +sg25268 +S'25 Prints of Leopoldo Mendez' +p81765 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81766 +sa(dp81767 +g25273 +S'woodcut' +p81768 +sg25267 +g27 +sg25275 +S'1943' +p81769 +sg25268 +S'Dreams of Paupers' +p81770 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81771 +sa(dp81772 +g25273 +S'woodcut' +p81773 +sg25267 +g27 +sg25275 +S'1943' +p81774 +sg25268 +S'Horsemen' +p81775 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81776 +sa(dp81777 +g25273 +S'woodcut' +p81778 +sg25267 +g27 +sg25275 +S'1943' +p81779 +sg25268 +S'Landowner' +p81780 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81781 +sa(dp81782 +g25273 +S'woodcut' +p81783 +sg25267 +g27 +sg25275 +S'1943' +p81784 +sg25268 +S'Fools Concert' +p81785 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81786 +sa(dp81787 +g25273 +S'woodcut' +p81788 +sg25267 +g27 +sg25275 +S'1943' +p81789 +sg25268 +S'Soldier' +p81790 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81791 +sa(dp81792 +g25273 +S'woodcut' +p81793 +sg25267 +g27 +sg25275 +S'1943' +p81794 +sg25268 +S'An Accident' +p81795 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81796 +sa(dp81797 +g25273 +S'woodcut' +p81798 +sg25267 +g27 +sg25275 +S'1943' +p81799 +sg25268 +S'The Symphonic Concert of Skeletons' +p81800 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81801 +sa(dp81802 +g25273 +S'woodcut' +p81803 +sg25267 +g27 +sg25275 +S'1943' +p81804 +sg25268 +S'Stablemen' +p81805 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81806 +sa(dp81807 +g25268 +S"Le roi d'Ethiopie" +p81808 +sg25270 +S'Artist Information (' +p81809 +sg25273 +S'(artist after)' +p81810 +sg25275 +S'\n' +p81811 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e83.jpg' +p81812 +sg25267 +g27 +sa(dp81813 +g25273 +S'woodcut' +p81814 +sg25267 +g27 +sg25275 +S'1943' +p81815 +sg25268 +S'Prisoner' +p81816 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81817 +sa(dp81818 +g25273 +S'woodcut' +p81819 +sg25267 +g27 +sg25275 +S'1943' +p81820 +sg25268 +S'Newsboys' +p81821 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81822 +sa(dp81823 +g25273 +S'woodcut' +p81824 +sg25267 +g27 +sg25275 +S'1943' +p81825 +sg25268 +S'Street Meeting' +p81826 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81827 +sa(dp81828 +g25273 +S'woodcut' +p81829 +sg25267 +g27 +sg25275 +S'1943' +p81830 +sg25268 +S'Illustration for a Popular Song' +p81831 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81832 +sa(dp81833 +g25273 +S'woodcut' +p81834 +sg25267 +g27 +sg25275 +S'1943' +p81835 +sg25268 +S'The Weavers' +p81836 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81837 +sa(dp81838 +g25273 +S'woodcut' +p81839 +sg25267 +g27 +sg25275 +S'1943' +p81840 +sg25268 +S'Chicle Gatherer' +p81841 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81842 +sa(dp81843 +g25273 +S'woodcut' +p81844 +sg25267 +g27 +sg25275 +S'1943' +p81845 +sg25268 +S'The Thunderbolt' +p81846 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81847 +sa(dp81848 +g25273 +S'woodcut' +p81849 +sg25267 +g27 +sg25275 +S'1943' +p81850 +sg25268 +S'Juarez' +p81851 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81852 +sa(dp81853 +g25273 +S'woodcut' +p81854 +sg25267 +g27 +sg25275 +S'1943' +p81855 +sg25268 +S"The Vulture's Nest" +p81856 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81857 +sa(dp81858 +g25273 +S'woodcut' +p81859 +sg25267 +g27 +sg25275 +S'1943' +p81860 +sg25268 +S'Fascism I' +p81861 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81862 +sa(dp81863 +g25268 +S'La cinquantaine' +p81864 +sg25270 +S'Jean-Michel Moreau the Younger' +p81865 +sg25273 +S', 1771' +p81866 +sg25275 +S'\n' +p81867 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fca.jpg' +p81868 +sg25267 +g27 +sa(dp81869 +g25273 +S'woodcut' +p81870 +sg25267 +g27 +sg25275 +S'1943' +p81871 +sg25268 +S'Fascism II' +p81872 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81873 +sa(dp81874 +g25273 +S'woodcut' +p81875 +sg25267 +g27 +sg25275 +S'1943' +p81876 +sg25268 +S'The Letter' +p81877 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81878 +sa(dp81879 +g25273 +S'woodcut' +p81880 +sg25267 +g27 +sg25275 +S'1943' +p81881 +sg25268 +S'For Teaching Them to Read' +p81882 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81883 +sa(dp81884 +g25273 +S'woodcut' +p81885 +sg25267 +g27 +sg25275 +S'1943' +p81886 +sg25268 +S'Protest' +p81887 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81888 +sa(dp81889 +g25273 +S'woodcut' +p81890 +sg25267 +g27 +sg25275 +S'1943' +p81891 +sg25268 +S'Book Cover' +p81892 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81893 +sa(dp81894 +g25273 +S'woodcut' +p81895 +sg25267 +g27 +sg25275 +S'1943' +p81896 +sg25268 +S'The Peoples Revenge' +p81897 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p81898 +sa(dp81899 +g25273 +S'drypoint' +p81900 +sg25267 +g27 +sg25275 +S'1902' +p81901 +sg25268 +S'Two Children (Zwei Kinder)' +p81902 +sg25270 +S'Edvard Munch' +p81903 +sa(dp81904 +g25273 +S'drypoint' +p81905 +sg25267 +g27 +sg25275 +S'1898' +p81906 +sg25268 +S'Helga Rode' +p81907 +sg25270 +S'Edvard Munch' +p81908 +sa(dp81909 +g25273 +S'aquatint and drypoint' +p81910 +sg25267 +g27 +sg25275 +S'1895' +p81911 +sg25268 +S'Girls Bathing (Badende Madchen)' +p81912 +sg25270 +S'Edvard Munch' +p81913 +sa(dp81914 +g25273 +S'drypoint in dark brown' +p81915 +sg25267 +g27 +sg25275 +S'1894' +p81916 +sg25268 +S'Vampire (Vampyr)' +p81917 +sg25270 +S'Edvard Munch' +p81918 +sa(dp81919 +g25268 +S'Couronnement de Voltaire (The Crowning of Voltaire)' +p81920 +sg25270 +S'Artist Information (' +p81921 +sg25273 +S'(artist after)' +p81922 +sg25275 +S'\n' +p81923 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fd2.jpg' +p81924 +sg25267 +g27 +sa(dp81925 +g25273 +S'aquatint and drypoint' +p81926 +sg25267 +g27 +sg25275 +S'1894' +p81927 +sg25268 +S'Consolation (Trost)' +p81928 +sg25270 +S'Edvard Munch' +p81929 +sa(dp81930 +g25273 +S'drypoint' +p81931 +sg25267 +g27 +sg25275 +S'1896' +p81932 +sg25268 +S'Two Girls and a Skeleton (Die Beiden Madchen das Gerippe)' +p81933 +sg25270 +S'Edvard Munch' +p81934 +sa(dp81935 +g25273 +S'aquatint and drypoint' +p81936 +sg25267 +g27 +sg25275 +S'1895' +p81937 +sg25268 +S'Summer Evening (Sommernacht)' +p81938 +sg25270 +S'Edvard Munch' +p81939 +sa(dp81940 +g25273 +S'etching' +p81941 +sg25267 +g27 +sg25275 +S'1902' +p81942 +sg25268 +S'Hopfenblute' +p81943 +sg25270 +S'Edvard Munch' +p81944 +sa(dp81945 +g25273 +S'drypoint' +p81946 +sg25267 +g27 +sg25275 +S'1897' +p81947 +sg25268 +S'The Cat (Die Katze)' +p81948 +sg25270 +S'Edvard Munch' +p81949 +sa(dp81950 +g25273 +S'drypoint' +p81951 +sg25267 +g27 +sg25275 +S'1895' +p81952 +sg25268 +S'Portrait of a Young Girl (Miss Heiberg?)' +p81953 +sg25270 +S'Edvard Munch' +p81954 +sa(dp81955 +g25273 +S'drypoint' +p81956 +sg25267 +g27 +sg25275 +S'1902' +p81957 +sg25268 +S'Head of a Girl (Madchenkopf)' +p81958 +sg25270 +S'Edvard Munch' +p81959 +sa(dp81960 +g25273 +S'lithograph' +p81961 +sg25267 +g27 +sg25275 +S'1896' +p81962 +sg25268 +S'St\xc3\xa9phane Mallarm\xc3\xa9' +p81963 +sg25270 +S'Edvard Munch' +p81964 +sa(dp81965 +g25273 +S'lithograph' +p81966 +sg25267 +g27 +sg25275 +S'1895' +p81967 +sg25268 +S'Self-Portrait' +p81968 +sg25270 +S'Edvard Munch' +p81969 +sa(dp81970 +g25273 +S'color woodcut' +p81971 +sg25267 +g27 +sg25275 +S'1896' +p81972 +sg25268 +S"Man's Head in Woman's Hair (Mannerkopf in Frauenharr)" +p81973 +sg25270 +S'Edvard Munch' +p81974 +sa(dp81975 +g25268 +S'Couronnement de Voltaire (The Crowning of Voltaire)' +p81976 +sg25270 +S'Artist Information (' +p81977 +sg25273 +S'(artist after)' +p81978 +sg25275 +S'\n' +p81979 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fd8.jpg' +p81980 +sg25267 +g27 +sa(dp81981 +g25273 +S'drypoint' +p81982 +sg25267 +g27 +sg25275 +S'1894' +p81983 +sg25268 +S'The Sick Child (Das kranke Madchen)' +p81984 +sg25270 +S'Edvard Munch' +p81985 +sa(dp81986 +g25273 +S'drypoint and aquatint' +p81987 +sg25267 +g27 +sg25275 +S'1895' +p81988 +sg25268 +S'The Kiss (Der Kuss)' +p81989 +sg25270 +S'Edvard Munch' +p81990 +sa(dp81991 +g25273 +S'etching and aquatint' +p81992 +sg25267 +g27 +sg25275 +S'1901' +p81993 +sg25268 +S'The Dead Mother and Her Child (Die tote Mutter und das Kind)' +p81994 +sg25270 +S'Edvard Munch' +p81995 +sa(dp81996 +g25273 +S'drypoint' +p81997 +sg25267 +g27 +sg25275 +S'1902' +p81998 +sg25268 +S'Kollmann' +p81999 +sg25270 +S'Edvard Munch' +p82000 +sa(dp82001 +g25273 +S'drypoint' +p82002 +sg25267 +g27 +sg25275 +S'1902' +p82003 +sg25268 +S'Cafe Bauer, Berlin' +p82004 +sg25270 +S'Edvard Munch' +p82005 +sa(dp82006 +g25273 +S'color etching' +p82007 +sg25267 +g27 +sg25275 +S'1944' +p82008 +sg25268 +S'Among Those Who Stood There' +p82009 +sg25270 +S'Abraham Rattner' +p82010 +sa(dp82011 +g25268 +S'Christ Crowned with Thorns' +p82012 +sg25270 +S'Artist Information (' +p82013 +sg25273 +S'(artist)' +p82014 +sg25275 +S'\n' +p82015 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4f9.jpg' +p82016 +sg25267 +g27 +sa(dp82017 +g25268 +S'Titian and His Mistress' +p82018 +sg25270 +S'Artist Information (' +p82019 +sg25273 +S'(artist)' +p82020 +sg25275 +S'\n' +p82021 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4fa.jpg' +p82022 +sg25267 +g27 +sa(dp82023 +g25273 +S'wood engraving' +p82024 +sg25267 +g27 +sg25275 +S'1944' +p82025 +sg25268 +S'Peaceful Valley' +p82026 +sg25270 +S'Asa Cheffetz' +p82027 +sa(dp82028 +g25273 +S'wood engraving' +p82029 +sg25267 +g27 +sg25275 +S'1944' +p82030 +sg25268 +S'Kou Hsiung' +p82031 +sg25270 +S'Dorothy Pulis Lathrop' +p82032 +sa(dp82033 +g25268 +S"On y court plus d'un danger" +p82034 +sg25270 +S'Artist Information (' +p82035 +sg25273 +S'(artist)' +p82036 +sg25275 +S'\n' +p82037 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f7c.jpg' +p82038 +sg25267 +g27 +sa(dp82039 +g25273 +S'etching' +p82040 +sg25267 +g27 +sg25275 +S'1936' +p82041 +sg25268 +S'Peladora de Cana' +p82042 +sg25270 +S'Mauricio Lasansky' +p82043 +sa(dp82044 +g25273 +S'etching' +p82045 +sg25267 +g27 +sg25275 +S'1937' +p82046 +sg25268 +S'Changos' +p82047 +sg25270 +S'Mauricio Lasansky' +p82048 +sa(dp82049 +g25268 +S'Maud Dale' +p82050 +sg25270 +S'George Bellows' +p82051 +sg25273 +S'oil on wood' +p82052 +sg25275 +S'1919' +p82053 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000018.jpg' +p82054 +sg25267 +g27 +sa(dp82055 +g25268 +S'Chester Dale' +p82056 +sg25270 +S'George Bellows' +p82057 +sg25273 +S'oil on canvas' +p82058 +sg25275 +S'1922' +p82059 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000019.jpg' +p82060 +sg25267 +S'Chester Dale\n At the suggestion of his friend, the painter George Bellows, Chester Dale \n posed holding a golf club; as youths, both artist and sitter had been \n semiprofessional athletes.\n ' +p82061 +sa(dp82062 +g25268 +S'Madonna of Saint Jerome' +p82063 +sg25270 +S'Matthew Pratt' +p82064 +sg25273 +S'oil on canvas' +p82065 +sg25275 +S'1764/1766' +p82066 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001cc.jpg' +p82067 +sg25267 +g27 +sa(dp82068 +g25268 +S'Peasant Filling a Glass' +p82069 +sg25270 +S'Cornelis Dusart' +p82070 +sg25273 +S'pen and black ink and watercolor on laid paper' +p82071 +sg25275 +S'1689' +p82072 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a0007206.jpg' +p82073 +sg25267 +g27 +sa(dp82074 +g25268 +S'Peasant Smoking' +p82075 +sg25270 +S'Cornelis Dusart' +p82076 +sg25273 +S'pen and black ink and watercolor on laid paper' +p82077 +sg25275 +S'1689' +p82078 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a0007195.jpg' +p82079 +sg25267 +g27 +sa(dp82080 +g25273 +S'engraving' +p82081 +sg25267 +g27 +sg25275 +S'c. 1500' +p82082 +sg25268 +S'The Martyrdom of Saint Catherine' +p82083 +sg25270 +S'Master MZ' +p82084 +sa(dp82085 +g25268 +S'Ornament Panel with Orpheus and the Judgment of Paris' +p82086 +sg25270 +S'Nicoletto da Modena' +p82087 +sg25273 +S'engraving' +p82088 +sg25275 +S'c. 1507' +p82089 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c84a.jpg' +p82090 +sg25267 +g27 +sa(dp82091 +g25268 +S'Sibylla Persica' +p82092 +sg25270 +S'Jacques Stella' +p82093 +sg25273 +S'woodcut' +p82094 +sg25275 +S'1625' +p82095 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c33.jpg' +p82096 +sg25267 +g27 +sa(dp82097 +g25268 +S'Le villageois entreprenant' +p82098 +sg25270 +S'Artist Information (' +p82099 +sg25273 +S'(artist)' +p82100 +sg25275 +S'\n' +p82101 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f7b.jpg' +p82102 +sg25267 +g27 +sa(dp82103 +g25268 +S'Sibylla Agrippa' +p82104 +sg25270 +S'Jacques Stella' +p82105 +sg25273 +S'woodcut' +p82106 +sg25275 +S'1625' +p82107 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c2f.jpg' +p82108 +sg25267 +g27 +sa(dp82109 +g25268 +S'Sibylla Phrygia' +p82110 +sg25270 +S'Jacques Stella' +p82111 +sg25273 +S'woodcut' +p82112 +sg25275 +S'1625' +p82113 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c31.jpg' +p82114 +sg25267 +g27 +sa(dp82115 +g25268 +S'Sibylla Samia' +p82116 +sg25270 +S'Jacques Stella' +p82117 +sg25273 +S'woodcut' +p82118 +sg25275 +S'1625' +p82119 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c37.jpg' +p82120 +sg25267 +g27 +sa(dp82121 +g25268 +S'Sibylla Europa' +p82122 +sg25270 +S'Jacques Stella' +p82123 +sg25273 +S'woodcut' +p82124 +sg25275 +S'1625' +p82125 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c34.jpg' +p82126 +sg25267 +g27 +sa(dp82127 +g25268 +S'Sibylla Hellespontina' +p82128 +sg25270 +S'Jacques Stella' +p82129 +sg25273 +S'woodcut' +p82130 +sg25275 +S'1625' +p82131 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c2e.jpg' +p82132 +sg25267 +g27 +sa(dp82133 +g25268 +S'Sibylla Erythraea' +p82134 +sg25270 +S'Jacques Stella' +p82135 +sg25273 +S'woodcut' +p82136 +sg25275 +S'1625' +p82137 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c30.jpg' +p82138 +sg25267 +g27 +sa(dp82139 +g25268 +S'Sibylla Cimmeria' +p82140 +sg25270 +S'Jacques Stella' +p82141 +sg25273 +S'woodcut' +p82142 +sg25275 +S'1625' +p82143 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c39.jpg' +p82144 +sg25267 +g27 +sa(dp82145 +g25268 +S'Sibylla Delphica' +p82146 +sg25270 +S'Jacques Stella' +p82147 +sg25273 +S'woodcut' +p82148 +sg25275 +S'1625' +p82149 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c38.jpg' +p82150 +sg25267 +g27 +sa(dp82151 +g25268 +S'Sibylla Cumana' +p82152 +sg25270 +S'Jacques Stella' +p82153 +sg25273 +S'woodcut' +p82154 +sg25275 +S'1625' +p82155 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c35.jpg' +p82156 +sg25267 +g27 +sa(dp82157 +g25268 +S'Sibylla Tiburtina' +p82158 +sg25270 +S'Jacques Stella' +p82159 +sg25273 +S'woodcut' +p82160 +sg25275 +S'1625' +p82161 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c32.jpg' +p82162 +sg25267 +g27 +sa(dp82163 +g25268 +S'Le desir de plaire' +p82164 +sg25270 +S'Artist Information (' +p82165 +sg25273 +S'(artist after)' +p82166 +sg25275 +S'\n' +p82167 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000974e.jpg' +p82168 +sg25267 +g27 +sa(dp82169 +g25268 +S'Sibylla Libyca' +p82170 +sg25270 +S'Jacques Stella' +p82171 +sg25273 +S'woodcut' +p82172 +sg25275 +S'1625' +p82173 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c36.jpg' +p82174 +sg25267 +g27 +sa(dp82175 +g25268 +S'Christ' +p82176 +sg25270 +S'Jacques Stella' +p82177 +sg25273 +S'woodcut' +p82178 +sg25275 +S'unknown date\n' +p82179 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c46.jpg' +p82180 +sg25267 +g27 +sa(dp82181 +g25268 +S'Saint Matthias' +p82182 +sg25270 +S'Jacques Stella' +p82183 +sg25273 +S'woodcut' +p82184 +sg25275 +S'unknown date\n' +p82185 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c40.jpg' +p82186 +sg25267 +g27 +sa(dp82187 +g25268 +S'Saint Paul' +p82188 +sg25270 +S'Jacques Stella' +p82189 +sg25273 +S'woodcut' +p82190 +sg25275 +S'unknown date\n' +p82191 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c45.jpg' +p82192 +sg25267 +g27 +sa(dp82193 +g25268 +S'Saint Philip' +p82194 +sg25270 +S'Jacques Stella' +p82195 +sg25273 +S'woodcut' +p82196 +sg25275 +S'unknown date\n' +p82197 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c44.jpg' +p82198 +sg25267 +g27 +sa(dp82199 +g25268 +S'Saint Bartholomew' +p82200 +sg25270 +S'Jacques Stella' +p82201 +sg25273 +S'woodcut' +p82202 +sg25275 +S'unknown date\n' +p82203 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c41.jpg' +p82204 +sg25267 +g27 +sa(dp82205 +g25268 +S'Saint Andrew' +p82206 +sg25270 +S'Jacques Stella' +p82207 +sg25273 +S'woodcut' +p82208 +sg25275 +S'unknown date\n' +p82209 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c3b.jpg' +p82210 +sg25267 +g27 +sa(dp82211 +g25268 +S'Saint Jude (Thaddeus)' +p82212 +sg25270 +S'Jacques Stella' +p82213 +sg25273 +S'woodcut' +p82214 +sg25275 +S'unknown date\n' +p82215 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c43.jpg' +p82216 +sg25267 +g27 +sa(dp82217 +g25268 +S'Saint James the Elder' +p82218 +sg25270 +S'Jacques Stella' +p82219 +sg25273 +S'woodcut' +p82220 +sg25275 +S'unknown date\n' +p82221 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c3f.jpg' +p82222 +sg25267 +g27 +sa(dp82223 +g25268 +S'Saint John' +p82224 +sg25270 +S'Jacques Stella' +p82225 +sg25273 +S'woodcut' +p82226 +sg25275 +S'unknown date\n' +p82227 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c3d.jpg' +p82228 +sg25267 +g27 +sa(dp82229 +g25268 +S"Les plaisir de l'ete" +p82230 +sg25270 +S'Artist Information (' +p82231 +sg25273 +S'(artist after)' +p82232 +sg25275 +S'\n' +p82233 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000974d.jpg' +p82234 +sg25267 +g27 +sa(dp82235 +g25268 +S'Saint Simon' +p82236 +sg25270 +S'Jacques Stella' +p82237 +sg25273 +S'woodcut' +p82238 +sg25275 +S'unknown date\n' +p82239 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c3a.jpg' +p82240 +sg25267 +g27 +sa(dp82241 +g25268 +S'Saint Thomas' +p82242 +sg25270 +S'Jacques Stella' +p82243 +sg25273 +S'woodcut' +p82244 +sg25275 +S'unknown date\n' +p82245 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c42.jpg' +p82246 +sg25267 +g27 +sa(dp82247 +g25268 +S'Saint Peter' +p82248 +sg25270 +S'Jacques Stella' +p82249 +sg25273 +S'woodcut' +p82250 +sg25275 +S'unknown date\n' +p82251 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c3c.jpg' +p82252 +sg25267 +g27 +sa(dp82253 +g25268 +S'Saint Matthew' +p82254 +sg25270 +S'Jacques Stella' +p82255 +sg25273 +S'woodcut' +p82256 +sg25275 +S'unknown date\n' +p82257 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c3e.jpg' +p82258 +sg25267 +g27 +sa(dp82259 +g25273 +S'(artist after)' +p82260 +sg25267 +g27 +sg25275 +S'\n' +p82261 +sg25268 +S'The Small Cowper Madonna' +p82262 +sg25270 +S'Artist Information (' +p82263 +sa(dp82264 +g25268 +S'The Alba Madonna' +p82265 +sg25270 +S'Artist Information (' +p82266 +sg25273 +S'(artist after)' +p82267 +sg25275 +S'\n' +p82268 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f41.jpg' +p82269 +sg25267 +g27 +sa(dp82270 +g25268 +S'The Lackawanna Valley' +p82271 +sg25270 +S'George Inness' +p82272 +sg25273 +S'oil on canvas' +p82273 +sg25275 +S'c. 1856' +p82274 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000111.jpg' +p82275 +sg25267 +S"Rather than celebrating nature in the tradition of the Hudson River School, George\nInness' \n Whether it is read as an enthusiastic affirmation of technology or as a belated\nlament for a rapidly vanishing wilderness, this painting exemplifies a crucial philosophical\ndilemma that confronted many Americans in the 1850s; expansion inevitably necessitated\nthe widespread destruction of unspoiled nature, itself a still-powerful symbol\nof the nation's greatness. Although it was initially commissioned as an homage to\nthe machine, Inness' \n " +p82276 +sa(dp82277 +g25268 +S'Do You Want Any Matches?' +p82278 +sg25270 +S'Artist Information (' +p82279 +sg25273 +S'(artist after)' +p82280 +sg25275 +S'\n' +p82281 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a000783e.jpg' +p82282 +sg25267 +g27 +sa(dp82283 +g25268 +S"A New Love Song Only a Ha'Penny a Piece" +p82284 +sg25270 +S'Artist Information (' +p82285 +sg25273 +S'(artist after)' +p82286 +sg25275 +S'\n' +p82287 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a0007848.jpg' +p82288 +sg25267 +g27 +sa(dp82289 +g25268 +S'Round and Sound, Five Pence a Pound, Duke Cherries' +p82290 +sg25270 +S'Artist Information (' +p82291 +sg25273 +S'(artist after)' +p82292 +sg25275 +S'\n' +p82293 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a0007846.jpg' +p82294 +sg25267 +g27 +sa(dp82295 +g25268 +S'La jarreti\xc3\xa8re' +p82296 +sg25270 +S'Fran\xc3\xa7ois Marie Isidore Queverdo' +p82297 +sg25273 +S', 1776' +p82298 +sg25275 +S'\n' +p82299 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009658.jpg' +p82300 +sg25267 +g27 +sa(dp82301 +g25268 +S'Turnips and Carrots Ho' +p82302 +sg25270 +S'Artist Information (' +p82303 +sg25273 +S'(artist after)' +p82304 +sg25275 +S'\n' +p82305 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a0007844.jpg' +p82306 +sg25267 +g27 +sa(dp82307 +g25268 +S'Milk below Maids' +p82308 +sg25270 +S'Artist Information (' +p82309 +sg25273 +S'(artist after)' +p82310 +sg25275 +S'\n' +p82311 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a0007842.jpg' +p82312 +sg25267 +g27 +sa(dp82313 +g25268 +S"New Mack'rel" +p82314 +sg25270 +S'Artist Information (' +p82315 +sg25273 +S'(artist after)' +p82316 +sg25275 +S'\n' +p82317 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a0007840.jpg' +p82318 +sg25267 +g27 +sa(dp82319 +g25268 +S'Sweet China Oranges' +p82320 +sg25270 +S'Artist Information (' +p82321 +sg25273 +S'(artist after)' +p82322 +sg25275 +S'\n' +p82323 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a000783a.jpg' +p82324 +sg25267 +g27 +sa(dp82325 +g25268 +S'Two Bunches a Penny, Primroses' +p82326 +sg25270 +S'Artist Information (' +p82327 +sg25273 +S'(artist after)' +p82328 +sg25275 +S'\n' +p82329 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a000783c.jpg' +p82330 +sg25267 +g27 +sa(dp82331 +g25268 +S'Fresh Gathered Peas, Young Hastings' +p82332 +sg25270 +S'Artist Information (' +p82333 +sg25273 +S'(artist after)' +p82334 +sg25275 +S'\n' +p82335 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a000784c.jpg' +p82336 +sg25267 +g27 +sa(dp82337 +g25268 +S'Hot Spice Ginger Bread Smoking Hot' +p82338 +sg25270 +S'Artist Information (' +p82339 +sg25273 +S'(artist after)' +p82340 +sg25275 +S'\n' +p82341 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a000784a.jpg' +p82342 +sg25267 +g27 +sa(dp82343 +g25268 +S'Old Chairs to Mend' +p82344 +sg25270 +S'Artist Information (' +p82345 +sg25273 +S'(artist after)' +p82346 +sg25275 +S'\n' +p82347 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a0007850.jpg' +p82348 +sg25267 +g27 +sa(dp82349 +g25268 +S'Knives, Scissors and Razors to Grind' +p82350 +sg25270 +S'Artist Information (' +p82351 +sg25273 +S'(artist after)' +p82352 +sg25275 +S'\n' +p82353 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a0007852.jpg' +p82354 +sg25267 +g27 +sa(dp82355 +g25268 +S'Strawberries, Scarlet Strawberries' +p82356 +sg25270 +S'Artist Information (' +p82357 +sg25273 +S'(artist after)' +p82358 +sg25275 +S'\n' +p82359 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a000784e.jpg' +p82360 +sg25267 +g27 +sa(dp82361 +g25268 +S"L'indiscret" +p82362 +sg25270 +S'Fran\xc3\xa7ois Marie Isidore Queverdo' +p82363 +sg25273 +S', unknown date' +p82364 +sg25275 +S'\n' +p82365 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009659.jpg' +p82366 +sg25267 +g27 +sa(dp82367 +g25268 +S'Fortitude' +p82368 +sg25270 +S'Heinrich Aldegrever' +p82369 +sg25273 +S'engraving' +p82370 +sg25275 +S'1528' +p82371 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6f3.jpg' +p82372 +sg25267 +g27 +sa(dp82373 +g25268 +S'The Judgment of Paris' +p82374 +sg25270 +S'Albrecht Altdorfer' +p82375 +sg25273 +S'woodcut' +p82376 +sg25275 +S'1511' +p82377 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6ff.jpg' +p82378 +sg25267 +g27 +sa(dp82379 +g25268 +S'Oblong Ornament Panel' +p82380 +sg25270 +S'Artist Information (' +p82381 +sg25273 +S'Italian, c. 1447 - 1517' +p82382 +sg25275 +S'(related artist)' +p82383 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c72c.jpg' +p82384 +sg25267 +g27 +sa(dp82385 +g25268 +S'Erato' +p82386 +sg25270 +S'Master of the S-Series Tarocchi' +p82387 +sg25273 +S'engraving' +p82388 +sg25275 +S'probably c. 1470' +p82389 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c701.jpg' +p82390 +sg25267 +g27 +sa(dp82391 +g25268 +S'The Judgment of Paris' +p82392 +sg25270 +S'French 16th Century' +p82393 +sg25273 +S'Rosenwald Collection' +p82394 +sg25275 +S'\nengraving' +p82395 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008309.jpg' +p82396 +sg25267 +g27 +sa(dp82397 +g25268 +S'Capricci di varie battaglie (Frontispiece)' +p82398 +sg25270 +S'Johann Wilhelm Baur' +p82399 +sg25273 +S'etching on laid paper' +p82400 +sg25275 +S'1635' +p82401 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b29f.jpg' +p82402 +sg25267 +g27 +sa(dp82403 +g25268 +S'Capricci di varie battaglie (Title Page)' +p82404 +sg25270 +S'Johann Wilhelm Baur' +p82405 +sg25273 +S'etching on laid paper' +p82406 +sg25275 +S'1635' +p82407 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2a0.jpg' +p82408 +sg25267 +g27 +sa(dp82409 +g25268 +S'Capricci di varie battaglie' +p82410 +sg25270 +S'Johann Wilhelm Baur' +p82411 +sg25273 +S'etching on laid paper' +p82412 +sg25275 +S'1635' +p82413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2a1.jpg' +p82414 +sg25267 +g27 +sa(dp82415 +g25268 +S'Capricci di varie battaglie' +p82416 +sg25270 +S'Johann Wilhelm Baur' +p82417 +sg25273 +S'etching on laid paper' +p82418 +sg25275 +S'1635' +p82419 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2a2.jpg' +p82420 +sg25267 +g27 +sa(dp82421 +g25268 +S'Capricci di varie battaglie' +p82422 +sg25270 +S'Johann Wilhelm Baur' +p82423 +sg25273 +S'etching on laid paper' +p82424 +sg25275 +S'1635' +p82425 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2a3.jpg' +p82426 +sg25267 +g27 +sa(dp82427 +g25268 +S'Nouvelles du bien-aim\xc3\xa8' +p82428 +sg25270 +S'Fran\xc3\xa7ois Marie Isidore Queverdo' +p82429 +sg25273 +S', unknown date' +p82430 +sg25275 +S'\n' +p82431 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000965f.jpg' +p82432 +sg25267 +g27 +sa(dp82433 +g25268 +S'Capricci di varie battaglie' +p82434 +sg25270 +S'Johann Wilhelm Baur' +p82435 +sg25273 +S'etching on laid paper' +p82436 +sg25275 +S'1635' +p82437 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2a4.jpg' +p82438 +sg25267 +g27 +sa(dp82439 +g25268 +S'Capricci di varie battaglie' +p82440 +sg25270 +S'Johann Wilhelm Baur' +p82441 +sg25273 +S'etching on laid paper' +p82442 +sg25275 +S'1635' +p82443 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2a5.jpg' +p82444 +sg25267 +g27 +sa(dp82445 +g25268 +S'Capricci di varie battaglie' +p82446 +sg25270 +S'Johann Wilhelm Baur' +p82447 +sg25273 +S'etching on laid paper' +p82448 +sg25275 +S'1635' +p82449 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2a6.jpg' +p82450 +sg25267 +g27 +sa(dp82451 +g25268 +S'Capricci di varie battaglie' +p82452 +sg25270 +S'Johann Wilhelm Baur' +p82453 +sg25273 +S'etching on laid paper' +p82454 +sg25275 +S'1635' +p82455 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2a7.jpg' +p82456 +sg25267 +g27 +sa(dp82457 +g25268 +S'Capricci di varie battaglie' +p82458 +sg25270 +S'Johann Wilhelm Baur' +p82459 +sg25273 +S'etching on laid paper' +p82460 +sg25275 +S'1635' +p82461 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2a8.jpg' +p82462 +sg25267 +g27 +sa(dp82463 +g25268 +S'Capricci di varie battaglie' +p82464 +sg25270 +S'Johann Wilhelm Baur' +p82465 +sg25273 +S'etching on laid paper' +p82466 +sg25275 +S'1635' +p82467 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2a9.jpg' +p82468 +sg25267 +g27 +sa(dp82469 +g25268 +S'Capricci di varie battaglie' +p82470 +sg25270 +S'Johann Wilhelm Baur' +p82471 +sg25273 +S'etching on laid paper' +p82472 +sg25275 +S'1635' +p82473 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2aa.jpg' +p82474 +sg25267 +g27 +sa(dp82475 +g25268 +S'Capricci di varie battaglie' +p82476 +sg25270 +S'Johann Wilhelm Baur' +p82477 +sg25273 +S'etching on laid paper' +p82478 +sg25275 +S'1635' +p82479 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2ab.jpg' +p82480 +sg25267 +g27 +sa(dp82481 +g25268 +S'Capricci di varie battaglie' +p82482 +sg25270 +S'Johann Wilhelm Baur' +p82483 +sg25273 +S'etching on laid paper' +p82484 +sg25275 +S'1635' +p82485 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2ac.jpg' +p82486 +sg25267 +g27 +sa(dp82487 +g25268 +S'Five Cupids Playing' +p82488 +sg25270 +S'Master F.B.' +p82489 +sg25273 +S'engraving (niello print?)' +p82490 +sg25275 +S'c. 1475/1500' +p82491 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c71d.jpg' +p82492 +sg25267 +g27 +sa(dp82493 +g25268 +S'Nouvelles du bien-aime' +p82494 +sg25270 +S'Artist Information (' +p82495 +sg25273 +S'(artist)' +p82496 +sg25275 +S'\n' +p82497 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009744.jpg' +p82498 +sg25267 +g27 +sa(dp82499 +g25268 +S'Madonna and Child at a Fountain' +p82500 +sg25270 +S'Master MZ' +p82501 +sg25273 +S'engraving' +p82502 +sg25275 +S'1501' +p82503 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3b8.jpg' +p82504 +sg25267 +g27 +sa(dp82505 +g25268 +S'Veronica' +p82506 +sg25270 +S'Master of 1565' +p82507 +sg25273 +S'woodcut' +p82508 +sg25275 +S'unknown date\n' +p82509 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acdf.jpg' +p82510 +sg25267 +g27 +sa(dp82511 +g25268 +S'The Flute Player' +p82512 +sg25270 +S'Master WI' +p82513 +sg25273 +S'engraving' +p82514 +sg25275 +S'unknown date\n' +p82515 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acfd.jpg' +p82516 +sg25267 +g27 +sa(dp82517 +g25273 +S'drypoint' +p82518 +sg25267 +g27 +sg25275 +S'1922' +p82519 +sg25268 +S'The Draftsman in Society (Der Zeichner in Gesellschaft)' +p82520 +sg25270 +S'Max Beckmann' +p82521 +sa(dp82522 +g25273 +S'lithograph' +p82523 +sg25267 +g27 +sg25275 +S'1921' +p82524 +sg25268 +S'Reinhard Piper' +p82525 +sg25270 +S'Max Beckmann' +p82526 +sa(dp82527 +g25273 +S'drypoint' +p82528 +sg25267 +g27 +sg25275 +S'1914' +p82529 +sg25268 +S'Self-Portrait' +p82530 +sg25270 +S'Max Beckmann' +p82531 +sa(dp82532 +g25273 +S'drypoint in black on laid paper' +p82533 +sg25267 +g27 +sg25275 +S'1923' +p82534 +sg25268 +S'Toilette (Before the Mirror) (Vor dem Spiegel)' +p82535 +sg25270 +S'Max Beckmann' +p82536 +sa(dp82537 +g25268 +S'Veronica' +p82538 +sg25270 +S'Hans Burgkmair I' +p82539 +sg25273 +S'woodcut' +p82540 +sg25275 +S'probably 1511' +p82541 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8d7.jpg' +p82542 +sg25267 +g27 +sa(dp82543 +g25268 +S'Emperor Charles V' +p82544 +sg25270 +S'Barthel Beham' +p82545 +sg25273 +S'engraving' +p82546 +sg25275 +S'1531' +p82547 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7c6.jpg' +p82548 +sg25267 +g27 +sa(dp82549 +g25268 +S'Christ Crowned with Thorns Speaking with His Mother' +p82550 +sg25270 +S'Sebald Beham' +p82551 +sg25273 +S'engraving' +p82552 +sg25275 +S'1519' +p82553 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a80c.jpg' +p82554 +sg25267 +g27 +sa(dp82555 +g25268 +S'Le sommeil interrompu' +p82556 +sg25270 +S'Artist Information (' +p82557 +sg25273 +S'(artist after)' +p82558 +sg25275 +S'\n' +p82559 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096ba.jpg' +p82560 +sg25267 +g27 +sa(dp82561 +g25268 +S'Frontispiece for "The Large Apostles"' +p82562 +sg25270 +S'Jacques Callot' +p82563 +sg25273 +S'etching' +p82564 +sg25275 +S'published 1631' +p82565 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a000889b.jpg' +p82566 +sg25267 +g27 +sa(dp82567 +g25268 +S'Christ' +p82568 +sg25270 +S'Jacques Callot' +p82569 +sg25273 +S'etching' +p82570 +sg25275 +S'published 1631' +p82571 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008899.jpg' +p82572 +sg25267 +g27 +sa(dp82573 +g25268 +S'The Virgin' +p82574 +sg25270 +S'Jacques Callot' +p82575 +sg25273 +S'etching' +p82576 +sg25275 +S'published 1631' +p82577 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a000889a.jpg' +p82578 +sg25267 +g27 +sa(dp82579 +g25268 +S'Saint Peter' +p82580 +sg25270 +S'Jacques Callot' +p82581 +sg25273 +S'etching' +p82582 +sg25275 +S'published 1631' +p82583 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008898.jpg' +p82584 +sg25267 +g27 +sa(dp82585 +g25268 +S'Saint Paul' +p82586 +sg25270 +S'Jacques Callot' +p82587 +sg25273 +S'etching' +p82588 +sg25275 +S'published 1631' +p82589 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a000889c.jpg' +p82590 +sg25267 +g27 +sa(dp82591 +g25268 +S'Saint Andrew' +p82592 +sg25270 +S'Jacques Callot' +p82593 +sg25273 +S'etching' +p82594 +sg25275 +S'published 1631' +p82595 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008897.jpg' +p82596 +sg25267 +g27 +sa(dp82597 +g25268 +S'Saint James the Great' +p82598 +sg25270 +S'Jacques Callot' +p82599 +sg25273 +S'etching' +p82600 +sg25275 +S'published 1631' +p82601 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a000889d.jpg' +p82602 +sg25267 +g27 +sa(dp82603 +g25268 +S'Saint John the Evangelist' +p82604 +sg25270 +S'Jacques Callot' +p82605 +sg25273 +S'etching' +p82606 +sg25275 +S'published 1631' +p82607 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088a3.jpg' +p82608 +sg25267 +g27 +sa(dp82609 +g25268 +S'Saint James the Less' +p82610 +sg25270 +S'Jacques Callot' +p82611 +sg25273 +S'etching' +p82612 +sg25275 +S'published 1631' +p82613 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a000889e.jpg' +p82614 +sg25267 +g27 +sa(dp82615 +g25268 +S'Saint Thomas' +p82616 +sg25270 +S'Jacques Callot' +p82617 +sg25273 +S'etching' +p82618 +sg25275 +S'published 1631' +p82619 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a000889f.jpg' +p82620 +sg25267 +g27 +sa(dp82621 +g25268 +S'Au moins soyez discret' +p82622 +sg25270 +S'Augustin de Saint-Aubin' +p82623 +sg25273 +S'etching and engraving' +p82624 +sg25275 +S'1789' +p82625 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009680.jpg' +p82626 +sg25267 +g27 +sa(dp82627 +g25268 +S'Saint Philip' +p82628 +sg25270 +S'Jacques Callot' +p82629 +sg25273 +S'etching' +p82630 +sg25275 +S'published 1631' +p82631 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088a2.jpg' +p82632 +sg25267 +g27 +sa(dp82633 +g25268 +S'Saint Bartholomew' +p82634 +sg25270 +S'Jacques Callot' +p82635 +sg25273 +S'etching' +p82636 +sg25275 +S'published 1631' +p82637 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088a0.jpg' +p82638 +sg25267 +g27 +sa(dp82639 +g25268 +S'Saint Matthias' +p82640 +sg25270 +S'Jacques Callot' +p82641 +sg25273 +S'etching' +p82642 +sg25275 +S'published 1631' +p82643 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088b4.jpg' +p82644 +sg25267 +g27 +sa(dp82645 +g25268 +S'Saint Simon' +p82646 +sg25270 +S'Jacques Callot' +p82647 +sg25273 +S'etching' +p82648 +sg25275 +S'published 1631' +p82649 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088b1.jpg' +p82650 +sg25267 +g27 +sa(dp82651 +g25268 +S'Saint Matthew' +p82652 +sg25270 +S'Jacques Callot' +p82653 +sg25273 +S'etching' +p82654 +sg25275 +S'published 1631' +p82655 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088b2.jpg' +p82656 +sg25267 +g27 +sa(dp82657 +g25268 +S'Saint Thaddeus' +p82658 +sg25270 +S'Jacques Callot' +p82659 +sg25273 +S'etching' +p82660 +sg25275 +S'published 1631' +p82661 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088b3.jpg' +p82662 +sg25267 +g27 +sa(dp82663 +g25268 +S'Vue generale des Alpes et Glaciers' +p82664 +sg25270 +S'Charles-Melchior Descourtis' +p82665 +sg25273 +S'etching and engraving printed in color' +p82666 +sg25275 +S'unknown date\n' +p82667 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e9f.jpg' +p82668 +sg25267 +g27 +sa(dp82669 +g25268 +S'Vue de Schadau' +p82670 +sg25270 +S'Charles-Melchior Descourtis' +p82671 +sg25273 +S'etching and engraving printed in color' +p82672 +sg25275 +S'unknown date\n' +p82673 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ea0.jpg' +p82674 +sg25267 +g27 +sa(dp82675 +g25268 +S'The Cook and His Wife' +p82676 +sg25270 +S'Albrecht D\xc3\xbcrer' +p82677 +sg25273 +S'engraving' +p82678 +sg25275 +S'c. 1496/1497' +p82679 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a984.jpg' +p82680 +sg25267 +g27 +sa(dp82681 +g25268 +S'The Holy Family with the Three Hares' +p82682 +sg25270 +S'Albrecht D\xc3\xbcrer' +p82683 +sg25273 +S'woodcut' +p82684 +sg25275 +S'c. 1497/1498' +p82685 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b22b.jpg' +p82686 +sg25267 +g27 +sa(dp82687 +g25268 +S'Comptez sur mes serments' +p82688 +sg25270 +S'Augustin de Saint-Aubin' +p82689 +sg25273 +S'etching and engraving' +p82690 +sg25275 +S'1789' +p82691 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000967f.jpg' +p82692 +sg25267 +g27 +sa(dp82693 +g25268 +S'The Man of Sorrows with Hands Bound' +p82694 +sg25270 +S'Albrecht D\xc3\xbcrer' +p82695 +sg25273 +S'drypoint' +p82696 +sg25275 +S'1512' +p82697 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005efd.jpg' +p82698 +sg25267 +g27 +sa(dp82699 +g25268 +S'A Turkish Horseman' +p82700 +sg25270 +S'Hans Springinklee' +p82701 +sg25273 +S', unknown date' +p82702 +sg25275 +S'\n' +p82703 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad5a.jpg' +p82704 +sg25267 +g27 +sa(dp82705 +g25273 +S'etching and aquatint in black on wove paper' +p82706 +sg25267 +g27 +sg25275 +S'1940' +p82707 +sg25268 +S'Lines in Vertical Area' +p82708 +sg25270 +S'Werner Drewes' +p82709 +sa(dp82710 +g25268 +S'The Judgment of Solomon' +p82711 +sg25270 +S'Jean Duvet' +p82712 +sg25273 +S'engraving' +p82713 +sg25275 +S'probably c. 1516' +p82714 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008305.jpg' +p82715 +sg25267 +g27 +sa(dp82716 +g25268 +S"Saint Catherine of Alexandria (Saint Catherine d'Alexandrie)" +p82717 +sg25270 +S'Artist Information (' +p82718 +sg25273 +S'(artist after)' +p82719 +sg25275 +S'\n' +p82720 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d27.jpg' +p82721 +sg25267 +g27 +sa(dp82722 +g25273 +S'color etching' +p82723 +sg25267 +g27 +sg25275 +S'1944' +p82724 +sg25268 +S'Concerto' +p82725 +sg25270 +S'Sue Fuller' +p82726 +sa(dp82727 +g25273 +S'color etching' +p82728 +sg25267 +g27 +sg25275 +S'1944' +p82729 +sg25268 +S'Lancelot and Guinevere' +p82730 +sg25270 +S'Sue Fuller' +p82731 +sa(dp82732 +g25268 +S'The Goatherd (Le chevrier)' +p82733 +sg25270 +S'Claude Lorrain' +p82734 +sg25273 +S'etching' +p82735 +sg25275 +S'1663' +p82736 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008913.jpg' +p82737 +sg25267 +g27 +sa(dp82738 +g25268 +S"Europa and the Bull (L'enl\xc3\xa8vement d'Europe)" +p82739 +sg25270 +S'Claude Lorrain' +p82740 +sg25273 +S'etching' +p82741 +sg25275 +S'1634' +p82742 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008af6.jpg' +p82743 +sg25267 +g27 +sa(dp82744 +g25268 +S"Ruine d'une gallerie antique de Rome" +p82745 +sg25270 +S'Artist Information (' +p82746 +sg25273 +S'(artist after)' +p82747 +sg25275 +S'\n' +p82748 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000970e.jpg' +p82749 +sg25267 +g27 +sa(dp82750 +g25268 +S'Louise Emilie Baronne de ***' +p82751 +sg25270 +S'Augustin de Saint-Aubin' +p82752 +sg25273 +S'etching and engraving' +p82753 +sg25275 +S'1779' +p82754 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009685.jpg' +p82755 +sg25267 +g27 +sa(dp82756 +g25268 +S"Ruine de la partie interieure d'une basilique de Rome" +p82757 +sg25270 +S'Artist Information (' +p82758 +sg25273 +S'(artist after)' +p82759 +sg25275 +S'\n' +p82760 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000970f.jpg' +p82761 +sg25267 +g27 +sa(dp82762 +g25273 +S'engraved and etched copper plate' +p82763 +sg25267 +g27 +sg25275 +S'1943' +p82764 +sg25268 +S'Laoco\xc3\xb6n' +p82765 +sg25270 +S'Stanley William Hayter' +p82766 +sa(dp82767 +g25268 +S'Laoco\xc3\xb6n' +p82768 +sg25270 +S'Stanley William Hayter' +p82769 +sg25273 +S'engraving, softground etching and scorper on wove paper' +p82770 +sg25275 +S'1943' +p82771 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a0008271.jpg' +p82772 +sg25267 +g27 +sa(dp82773 +g25268 +S'Courtyard of a Castle' +p82774 +sg25270 +S'Augustin Hirschvogel' +p82775 +sg25273 +S'etching' +p82776 +sg25275 +S'1546' +p82777 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abc0.jpg' +p82778 +sg25267 +g27 +sa(dp82779 +g25273 +S'plaster relief cast from uninked copper plate' +p82780 +sg25267 +g27 +sg25275 +S'1944' +p82781 +sg25268 +S'Runner' +p82782 +sg25270 +S'Stanley William Hayter' +p82783 +sa(dp82784 +g25268 +S'Landscape with Sail Boats' +p82785 +sg25270 +S'Augustin Hirschvogel' +p82786 +sg25273 +S'etching' +p82787 +sg25275 +S'1546' +p82788 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abc9.jpg' +p82789 +sg25267 +g27 +sa(dp82790 +g25268 +S'Emperor Charles V' +p82791 +sg25270 +S'Daniel Hopfer' +p82792 +sg25273 +S'etching (iron), with open biting, plate bitten twice' +p82793 +sg25275 +S'c. 1519' +p82794 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac6c.jpg' +p82795 +sg25267 +g27 +sa(dp82796 +g25268 +S'Chute de Staubbach, dans la Vall\xc3\xa9e de Lauterbrunnen (Falls at Staubbach in the Lauterbrunnen Valley)' +p82797 +sg25270 +S'Artist Information (' +p82798 +sg25273 +S'(artist after)' +p82799 +sg25275 +S'\n' +p82800 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fa5.jpg' +p82801 +sg25267 +g27 +sa(dp82802 +g25268 +S'Vue de Thun du Cote du Midi' +p82803 +sg25270 +S'Jean-Fran\xc3\xa7ois Janinet' +p82804 +sg25273 +S'color aquatint and etching' +p82805 +sg25275 +S'probably 1776' +p82806 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fa3.jpg' +p82807 +sg25267 +g27 +sa(dp82808 +g25273 +S'engraving, gouged-out white areas, etching, soft-ground, aquatint, with scraping and burnishing on wove paper' +p82809 +sg25267 +g27 +sg25275 +S'1945' +p82810 +sg25268 +S'Sol y Luna' +p82811 +sg25270 +S'Mauricio Lasansky' +p82812 +sa(dp82813 +g25268 +S'Adrienne Sophie Marquise de ***' +p82814 +sg25270 +S'Augustin de Saint-Aubin' +p82815 +sg25273 +S'etching and engraving' +p82816 +sg25275 +S'1779' +p82817 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009684.jpg' +p82818 +sg25267 +g27 +sa(dp82819 +g25268 +S'Rape II (Raub II, Weib halb)' +p82820 +sg25270 +S'Wilhelm Lehmbruck' +p82821 +sg25273 +S'drypoint' +p82822 +sg25275 +S'1911' +p82823 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b7d1.jpg' +p82824 +sg25267 +g27 +sa(dp82825 +g25268 +S'Don Mariano Camprubi (Le Bailarin)' +p82826 +sg25270 +S'Edouard Manet' +p82827 +sg25273 +S'etching' +p82828 +sg25275 +S'1862' +p82829 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cfb.jpg' +p82830 +sg25267 +g27 +sa(dp82831 +g25268 +S'Christ Among the Doctors' +p82832 +sg25270 +S'Artist Information (' +p82833 +sg25273 +S'(artist after)' +p82834 +sg25275 +S'\n' +p82835 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a43b.jpg' +p82836 +sg25267 +g27 +sa(dp82837 +g25268 +S'Saint Margaret' +p82838 +sg25270 +S'Israhel van Meckenem' +p82839 +sg25273 +S'engraving' +p82840 +sg25275 +S'c. 1480/1490' +p82841 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a402.jpg' +p82842 +sg25267 +g27 +sa(dp82843 +g25273 +S'drypoint and etching' +p82844 +sg25267 +g27 +sg25275 +S'1938' +p82845 +sg25268 +S'Eagle and Woman at Right' +p82846 +sg25270 +S'Joan Mir\xc3\xb3' +p82847 +sa(dp82848 +g25273 +S'etching in black and red' +p82849 +sg25267 +g27 +sg25275 +S'1938' +p82850 +sg25268 +S'Black and Red IV' +p82851 +sg25270 +S'Joan Mir\xc3\xb3' +p82852 +sa(dp82853 +g25268 +S'The Rape of Europa' +p82854 +sg25270 +S'Benedetto Montagna' +p82855 +sg25273 +S'engraving' +p82856 +sg25275 +S'c. 1515/1520' +p82857 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c757.jpg' +p82858 +sg25267 +g27 +sa(dp82859 +g25268 +S'Landscape with Horseman and Three Travelers' +p82860 +sg25270 +S'Gilles Neyts' +p82861 +sg25273 +S'etching' +p82862 +sg25275 +S'unknown date\n' +p82863 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d281.jpg' +p82864 +sg25267 +g27 +sa(dp82865 +g25273 +S'watercolor' +p82866 +sg25267 +g27 +sg25275 +S'unknown date\n' +p82867 +sg25268 +S'Sailboats' +p82868 +sg25270 +S'Emil Nolde' +p82869 +sa(dp82870 +g25268 +S'Derniere heure de la Baronne de Rebecque' +p82871 +sg25270 +S'Augustin de Saint-Aubin' +p82872 +sg25273 +S'etching' +p82873 +sg25275 +S'1780' +p82874 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bea.jpg' +p82875 +sg25267 +g27 +sa(dp82876 +g25273 +S'etching' +p82877 +sg25267 +g27 +sg25275 +S'1911' +p82878 +sg25268 +S'Sick Man, Doctor, Death, and Devil (Kranker, Arzt, Tod und Teufel)' +p82879 +sg25270 +S'Emil Nolde' +p82880 +sa(dp82881 +g25273 +S'lithograph in black, red, and yellow' +p82882 +sg25267 +g27 +sg25275 +S'1913' +p82883 +sg25268 +S'The Three Kings (Die heiligen drei Konige)' +p82884 +sg25270 +S'Emil Nolde' +p82885 +sa(dp82886 +g25273 +S'etching' +p82887 +sg25267 +g27 +sg25275 +S'1918' +p82888 +sg25268 +S'Woman, Man, and Servant (Frau, Mann, Diener)' +p82889 +sg25270 +S'Emil Nolde' +p82890 +sa(dp82891 +g25268 +S'The Angler' +p82892 +sg25270 +S'Adriaen van Ostade' +p82893 +sg25273 +S'etching' +p82894 +sg25275 +S'probably 1653' +p82895 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d29b.jpg' +p82896 +sg25267 +g27 +sa(dp82897 +g25268 +S"Peasants' Quarrel" +p82898 +sg25270 +S'Adriaen van Ostade' +p82899 +sg25273 +S'etching' +p82900 +sg25275 +S'1653' +p82901 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d28b.jpg' +p82902 +sg25267 +g27 +sa(dp82903 +g25268 +S'Knife Grinder' +p82904 +sg25270 +S'Adriaen van Ostade' +p82905 +sg25273 +S'etching' +p82906 +sg25275 +S'probably 1682' +p82907 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2ac.jpg' +p82908 +sg25267 +g27 +sa(dp82909 +g25268 +S'Man and Woman Conversing' +p82910 +sg25270 +S'Adriaen van Ostade' +p82911 +sg25273 +S'etching' +p82912 +sg25275 +S'probably 1673' +p82913 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d294.jpg' +p82914 +sg25267 +g27 +sa(dp82915 +g25268 +S'Man and Woman Talking' +p82916 +sg25270 +S'Adriaen van Ostade' +p82917 +sg25273 +S'etching' +p82918 +sg25275 +S'probably 1650' +p82919 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2ab.jpg' +p82920 +sg25267 +g27 +sa(dp82921 +g25268 +S'Pig Slaughterers' +p82922 +sg25270 +S'Adriaen van Ostade' +p82923 +sg25273 +S'etching' +p82924 +sg25275 +S'probably 1642' +p82925 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2b2.jpg' +p82926 +sg25267 +g27 +sa(dp82927 +g25268 +S'The Schoolmaster' +p82928 +sg25270 +S'Adriaen van Ostade' +p82929 +sg25273 +S'etching' +p82930 +sg25275 +S'probably 1644' +p82931 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d292.jpg' +p82932 +sg25267 +g27 +sa(dp82933 +g25268 +S'Le bal pare' +p82934 +sg25270 +S'Artist Information (' +p82935 +sg25273 +S'(artist after)' +p82936 +sg25275 +S'\n' +p82937 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008eab.jpg' +p82938 +sg25267 +g27 +sa(dp82939 +g25268 +S'Eyeglass Peddlar' +p82940 +sg25270 +S'Adriaen van Ostade' +p82941 +sg25273 +S'etching' +p82942 +sg25275 +S'probably 1646' +p82943 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2ad.jpg' +p82944 +sg25267 +g27 +sa(dp82945 +g25268 +S"The Studio (L'atelier)" +p82946 +sg25270 +S'Pablo Picasso' +p82947 +sg25273 +S'etching' +p82948 +sg25275 +S'1927' +p82949 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eec8.jpg' +p82950 +sg25267 +g27 +sa(dp82951 +g25268 +S'The Reading (La lecture)' +p82952 +sg25270 +S'Pablo Picasso' +p82953 +sg25273 +S'lithograph' +p82954 +sg25275 +S'1926' +p82955 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eec7.jpg' +p82956 +sg25267 +g27 +sa(dp82957 +g25268 +S'Salom\xc3\xa9' +p82958 +sg25270 +S'Pablo Picasso' +p82959 +sg25273 +S'drypoint [reprinted in 1913 by Louis Fort and published by Vollard]' +p82960 +sg25275 +S'1905' +p82961 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eec2.jpg' +p82962 +sg25267 +g27 +sa(dp82963 +g25268 +S'Man and Woman with a Ball' +p82964 +sg25270 +S'Artist Information (' +p82965 +sg25273 +S'(artist after)' +p82966 +sg25275 +S'\n' +p82967 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c78a.jpg' +p82968 +sg25267 +g27 +sa(dp82969 +g25268 +S'Christ Presented to the People: Oblong Plate' +p82970 +sg25270 +S'Rembrandt van Rijn' +p82971 +sg25273 +S'drypoint' +p82972 +sg25275 +S'1655' +p82973 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057ed.jpg' +p82974 +sg25267 +g27 +sa(dp82975 +g25268 +S'Ephraim Bonus' +p82976 +sg25270 +S'Rembrandt van Rijn' +p82977 +sg25273 +S'etching, drypoint and burin' +p82978 +sg25275 +S'1647' +p82979 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d36e.jpg' +p82980 +sg25267 +g27 +sa(dp82981 +g25268 +S'Stone with Three Sketches (La pierre au trois croquis)' +p82982 +sg25270 +S'Auguste Renoir' +p82983 +sg25273 +S'lithotint' +p82984 +sg25275 +S'1904' +p82985 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ca5.jpg' +p82986 +sg25267 +g27 +sa(dp82987 +g25268 +S'The Inn Yard on Fire' +p82988 +sg25270 +S'Thomas Rowlandson' +p82989 +sg25273 +S'hand-colored etching and aquatint' +p82990 +sg25275 +S'1791' +p82991 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cb0.jpg' +p82992 +sg25267 +g27 +sa(dp82993 +g25268 +S"Four O'Clock in Town" +p82994 +sg25270 +S'Thomas Rowlandson' +p82995 +sg25273 +S'hand-colored etching and aquatint' +p82996 +sg25275 +S'1788' +p82997 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007771.jpg' +p82998 +sg25267 +g27 +sa(dp82999 +g25268 +S'Le bal pare' +p83000 +sg25270 +S'Artist Information (' +p83001 +sg25273 +S'(artist after)' +p83002 +sg25275 +S'\n' +p83003 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096fa.jpg' +p83004 +sg25267 +g27 +sa(dp83005 +g25268 +S'The Disappointed Epicures' +p83006 +sg25270 +S'Thomas Rowlandson' +p83007 +sg25273 +S'hand-colored etching' +p83008 +sg25275 +S'1787' +p83009 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cc9.jpg' +p83010 +sg25267 +g27 +sa(dp83011 +g25268 +S'Grog on Board' +p83012 +sg25270 +S'Thomas Rowlandson' +p83013 +sg25273 +S'hand-colored etching and aquatint' +p83014 +sg25275 +S'1789' +p83015 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000776b.jpg' +p83016 +sg25267 +g27 +sa(dp83017 +g25268 +S'A Kick-up at a Hazard Table' +p83018 +sg25270 +S'Thomas Rowlandson' +p83019 +sg25273 +S'hand-colored etching and aquatint' +p83020 +sg25275 +S'published 1787' +p83021 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cd5.jpg' +p83022 +sg25267 +g27 +sa(dp83023 +g25273 +S'aquatint' +p83024 +sg25267 +g27 +sg25275 +S'1774' +p83025 +sg25268 +S'The Village Doctor' +p83026 +sg25270 +S'Thomas Rowlandson' +p83027 +sa(dp83028 +g25273 +S'bound vol: original contents: 198 etchings and engravings, some prints being removed from the volume; see separate entries for current locations' +p83029 +sg25267 +g27 +sg25275 +S'unknown date\n' +p83030 +sg25268 +S'Caricatures (volume I)' +p83031 +sg25270 +S'Thomas Rowlandson' +p83032 +sa(dp83033 +g25273 +S'aquatint' +p83034 +sg25267 +g27 +sg25275 +S'1780' +p83035 +sg25268 +S'The School of Eloquence' +p83036 +sg25270 +S'Thomas Rowlandson' +p83037 +sa(dp83038 +g25273 +S'aquatint' +p83039 +sg25267 +g27 +sg25275 +S'1780' +p83040 +sg25268 +S'Sir Samuel House' +p83041 +sg25270 +S'Thomas Rowlandson' +p83042 +sa(dp83043 +g25273 +S'aquatint' +p83044 +sg25267 +g27 +sg25275 +S'1786' +p83045 +sg25268 +S'Private Amusement' +p83046 +sg25270 +S'Thomas Rowlandson' +p83047 +sa(dp83048 +g25273 +S'aquatint' +p83049 +sg25267 +g27 +sg25275 +S'1780' +p83050 +sg25268 +S"Naval Triumph, or Favors Confer'd" +p83051 +sg25270 +S'Thomas Rowlandson' +p83052 +sa(dp83053 +g25273 +S'aquatint' +p83054 +sg25267 +g27 +sg25275 +S'in or after 1780' +p83055 +sg25268 +S"A Barber's Shop (Oh Absalom, my Son)" +p83056 +sg25270 +S'Thomas Rowlandson' +p83057 +sa(dp83058 +g25268 +S'Saint Jerome in the Wilderness' +p83059 +sg25270 +S'Cima da Conegliano' +p83060 +sg25273 +S'oil on panel transferred to canvas' +p83061 +sg25275 +S'c. 1500/1505' +p83062 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007d4.jpg' +p83063 +sg25267 +g27 +sa(dp83064 +g25268 +S'Le concert' +p83065 +sg25270 +S'Artist Information (' +p83066 +sg25273 +S'(artist after)' +p83067 +sg25275 +S'\n' +p83068 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008eaf.jpg' +p83069 +sg25267 +g27 +sa(dp83070 +g25273 +S'aquatint' +p83071 +sg25267 +g27 +sg25275 +S'probably 1780' +p83072 +sg25268 +S"A Barber's Shop" +p83073 +sg25270 +S'Thomas Rowlandson' +p83074 +sa(dp83075 +g25273 +S'aquatint' +p83076 +sg25267 +g27 +sg25275 +S'1781' +p83077 +sg25268 +S'Charity Covereth a Multitude of Sins' +p83078 +sg25270 +S'Thomas Rowlandson' +p83079 +sa(dp83080 +g25273 +S'aquatint' +p83081 +sg25267 +g27 +sg25275 +S'c. 1781' +p83082 +sg25268 +S'Luxury' +p83083 +sg25270 +S'Thomas Rowlandson' +p83084 +sa(dp83085 +g25273 +S'aquatint' +p83086 +sg25267 +g27 +sg25275 +S'1781' +p83087 +sg25268 +S'Long Sermons and Long Sieges are Apt to Lull the Senses' +p83088 +sg25270 +S'Thomas Rowlandson' +p83089 +sa(dp83090 +g25273 +S'aquatint' +p83091 +sg25267 +g27 +sg25275 +S'1829' +p83092 +sg25268 +S"The Regulator (The Interior of a Clockmaker'sShop)" +p83093 +sg25270 +S'Thomas Rowlandson' +p83094 +sa(dp83095 +g25273 +S'aquatint' +p83096 +sg25267 +g27 +sg25275 +S'1783' +p83097 +sg25268 +S'Scene in a Farce Called the Quaker' +p83098 +sg25270 +S'Thomas Rowlandson' +p83099 +sa(dp83100 +g25273 +S'aquatint' +p83101 +sg25267 +g27 +sg25275 +S'1783' +p83102 +sg25268 +S'The New Sliders for the State Magic Lanthern' +p83103 +sg25270 +S'Thomas Rowlandson' +p83104 +sa(dp83105 +g25273 +S'aquatint' +p83106 +sg25267 +g27 +sg25275 +S'1783' +p83107 +sg25268 +S'Great Cry and Little Wool' +p83108 +sg25270 +S'Thomas Rowlandson' +p83109 +sa(dp83110 +g25268 +S'The Times' +p83111 +sg25270 +S'Thomas Rowlandson' +p83112 +sg25273 +S'hand-colored etching' +p83113 +sg25275 +S'probably 1783' +p83114 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007761.jpg' +p83115 +sg25267 +g27 +sa(dp83116 +g25273 +S'aquatint' +p83117 +sg25267 +g27 +sg25275 +S'probably 1784' +p83118 +sg25268 +S'A Sketch from Nature' +p83119 +sg25270 +S'Thomas Rowlandson' +p83120 +sa(dp83121 +g25268 +S'Le concert' +p83122 +sg25270 +S'Artist Information (' +p83123 +sg25273 +S'(artist after)' +p83124 +sg25275 +S'\n' +p83125 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096fd.jpg' +p83126 +sg25267 +g27 +sa(dp83127 +g25273 +S'aquatint' +p83128 +sg25267 +g27 +sg25275 +S'probably 1784' +p83129 +sg25268 +S'A Sketch from Nature' +p83130 +sg25270 +S'Thomas Rowlandson' +p83131 +sa(dp83132 +g25273 +S'aquatint' +p83133 +sg25267 +g27 +sg25275 +S'1784' +p83134 +sg25268 +S'A Pit of Acheron, or The Birth of the Plagues of England' +p83135 +sg25270 +S'Thomas Rowlandson' +p83136 +sa(dp83137 +g25273 +S'aquatint' +p83138 +sg25267 +g27 +sg25275 +S'1784' +p83139 +sg25268 +S'The Fall of Dagon, or Rare News for Leadenhall Street' +p83140 +sg25270 +S'Thomas Rowlandson' +p83141 +sa(dp83142 +g25273 +S'aquatint' +p83143 +sg25267 +g27 +sg25275 +S'1784' +p83144 +sg25268 +S'The Loves of the Fox and the Badger, or The Coalition Wedding' +p83145 +sg25270 +S'Thomas Rowlandson' +p83146 +sa(dp83147 +g25273 +S'aquatint' +p83148 +sg25267 +g27 +sg25275 +S'1784' +p83149 +sg25268 +S'The Times, or A View of the Old House in Little Britain with Nobody Going to Hanover' +p83150 +sg25270 +S'Thomas Rowlandson' +p83151 +sa(dp83152 +g25273 +S'aquatint' +p83153 +sg25267 +g27 +sg25275 +S'1784' +p83154 +sg25268 +S'The Infant Hercules' +p83155 +sg25270 +S'Thomas Rowlandson' +p83156 +sa(dp83157 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83158 +sg25268 +S'His Highness, the Protector' +p83159 +sg25270 +S'Thomas Rowlandson' +p83160 +sa(dp83161 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83162 +sg25268 +S'Britannia Roused, or The Coalition Monsters Destroyed' +p83163 +sg25270 +S'Thomas Rowlandson' +p83164 +sa(dp83165 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83166 +sg25268 +S'Billy Lackbeard and Charley Blackbeard Playing at Football' +p83167 +sg25270 +S'Thomas Rowlandson' +p83168 +sa(dp83169 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83170 +sg25268 +S"Vue D'optique, or A Treat for the Curious" +p83171 +sg25270 +S'Thomas Rowlandson' +p83172 +sa(dp83173 +g25268 +S'Le concert' +p83174 +sg25270 +S'Artist Information (' +p83175 +sg25273 +S'(artist after)' +p83176 +sg25275 +S'\n' +p83177 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096fc.jpg' +p83178 +sg25267 +g27 +sa(dp83179 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83180 +sg25268 +S'The Apostate Jack Robinson, the Political Rat-catcher. N.B. Rats Taken Alive' +p83181 +sg25270 +S'Thomas Rowlandson' +p83182 +sa(dp83183 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83184 +sg25268 +S"A Peep into Friar Bacon's Study" +p83185 +sg25270 +S'Thomas Rowlandson' +p83186 +sa(dp83187 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83188 +sg25268 +S"Master Billy's Procession to Grocers' Hall" +p83189 +sg25270 +S'Thomas Rowlandson' +p83190 +sa(dp83191 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83192 +sg25268 +S'The Champion of the People' +p83193 +sg25270 +S'Thomas Rowlandson' +p83194 +sa(dp83195 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83196 +sg25268 +S'The State Auction' +p83197 +sg25270 +S'Thomas Rowlandson' +p83198 +sa(dp83199 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83200 +sg25268 +S"Sir Cecil's Budget for Paying the National Debt" +p83201 +sg25270 +S'Thomas Rowlandson' +p83202 +sa(dp83203 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83204 +sg25268 +S'The Drum-Major of Sedition' +p83205 +sg25270 +S'Thomas Rowlandson' +p83206 +sa(dp83207 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83208 +sg25268 +S'Two Patriotic Duchesses on their Canvass Requesting the Favor of an Early Poll' +p83209 +sg25270 +S'Thomas Rowlandson' +p83210 +sa(dp83211 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83212 +sg25268 +S'The Hanoverian Horse and British Lion' +p83213 +sg25270 +S'Thomas Rowlandson' +p83214 +sa(dp83215 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83216 +sg25268 +S'The Incurable' +p83217 +sg25270 +S'Thomas Rowlandson' +p83218 +sa(dp83219 +g25268 +S'The First Come Best Served' +p83220 +sg25270 +S'Artist Information (' +p83221 +sg25273 +S'(artist after)' +p83222 +sg25275 +S'\n' +p83223 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009696.jpg' +p83224 +sg25267 +g27 +sa(dp83225 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83226 +sg25268 +S'The Rival Candidates' +p83227 +sg25270 +S'Thomas Rowlandson' +p83228 +sa(dp83229 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83230 +sg25268 +S'The Parody of Mother Cole and Loader' +p83231 +sg25270 +S'Thomas Rowlandson' +p83232 +sa(dp83233 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83234 +sg25268 +S'The Devonshire, or Most Approved Method of Securing Votes' +p83235 +sg25270 +S'Thomas Rowlandson' +p83236 +sa(dp83237 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83238 +sg25268 +S'The Westminster Watchman' +p83239 +sg25270 +S'Thomas Rowlandson' +p83240 +sa(dp83241 +g25268 +S'The Poll' +p83242 +sg25270 +S'Thomas Rowlandson' +p83243 +sg25273 +S'hand-colored etching' +p83244 +sg25275 +S'1784' +p83245 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000775d.jpg' +p83246 +sg25267 +g27 +sa(dp83247 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83248 +sg25268 +S'The Lords of the Bedchamber' +p83249 +sg25270 +S'Thomas Rowlandson' +p83250 +sa(dp83251 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83252 +sg25268 +S'The Covent Garden Nightmare' +p83253 +sg25270 +S'Thomas Rowlandson' +p83254 +sa(dp83255 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83256 +sg25268 +S"Wit's Last Stake, or The Cobbling Voter and Abject Canvassers" +p83257 +sg25270 +S'Thomas Rowlandson' +p83258 +sa(dp83259 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83260 +sg25268 +S'Political Affection' +p83261 +sg25270 +S'Thomas Rowlandson' +p83262 +sa(dp83263 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83264 +sg25268 +S'A D-----E, or Reynard in his Element' +p83265 +sg25270 +S'Thomas Rowlandson' +p83266 +sa(dp83267 +g25268 +S'The Place to the First Occupier' +p83268 +sg25270 +S'Artist Information (' +p83269 +sg25273 +S'(artist after)' +p83270 +sg25275 +S'\n' +p83271 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009697.jpg' +p83272 +sg25267 +g27 +sa(dp83273 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83274 +sg25268 +S"Madame Blubber's Last Shift, or The Aerostatic Dilly" +p83275 +sg25270 +S'Thomas Rowlandson' +p83276 +sa(dp83277 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83278 +sg25268 +S'The Case is Altered' +p83279 +sg25270 +S'Thomas Rowlandson' +p83280 +sa(dp83281 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83282 +sg25268 +S'Procession to the Hustings after a Successful Canvas (No. 14)' +p83283 +sg25270 +S'Thomas Rowlandson' +p83284 +sa(dp83285 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83286 +sg25268 +S'Every Man has his Hobby-horse' +p83287 +sg25270 +S'Thomas Rowlandson' +p83288 +sa(dp83289 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83290 +sg25268 +S"The Westminster Deserter Drum'd out of the Regiment" +p83291 +sg25270 +S'Thomas Rowlandson' +p83292 +sa(dp83293 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83294 +sg25268 +S'The Westminster Mendicant' +p83295 +sg25270 +S'Thomas Rowlandson' +p83296 +sa(dp83297 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83298 +sg25268 +S'Secret Influence Directing the Parliament' +p83299 +sg25270 +S'Thomas Rowlandson' +p83300 +sa(dp83301 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83302 +sg25268 +S'Liberty and Fame Introducing Female Patriotism to Britannia' +p83303 +sg25270 +S'Thomas Rowlandson' +p83304 +sa(dp83305 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83306 +sg25268 +S'The Departure' +p83307 +sg25270 +S'Thomas Rowlandson' +p83308 +sa(dp83309 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83310 +sg25268 +S"For the Benefit of the Champion. A Catch to be Perform'd at the New Theatre, Covent Garden. For Admission apply to the D...ss. N.B. Gratis to Those who wear Large Tails." +p83311 +sg25270 +S'Thomas Rowlandson' +p83312 +sa(dp83313 +g25268 +S'La promenade des remparts de Paris' +p83314 +sg25270 +S'Artist Information (' +p83315 +sg25273 +S'(artist after)' +p83316 +sg25275 +S'\n' +p83317 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e4d.jpg' +p83318 +sg25267 +g27 +sa(dp83319 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83320 +sg25268 +S'The Duenna and Little Isaac' +p83321 +sg25270 +S'Thomas Rowlandson' +p83322 +sa(dp83323 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83324 +sg25268 +S'The Vicar and Moses' +p83325 +sg25270 +S'Thomas Rowlandson' +p83326 +sa(dp83327 +g25268 +S'Manager and Spouter' +p83328 +sg25270 +S'Thomas Rowlandson' +p83329 +sg25273 +g27 +sg25275 +S'1784' +p83330 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077bf.jpg' +p83331 +sg25267 +g27 +sa(dp83332 +g25268 +S'Bookseller and Author' +p83333 +sg25270 +S'Thomas Rowlandson' +p83334 +sg25273 +S'hand-colored etching and aquatint' +p83335 +sg25275 +S'1784' +p83336 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000775f.jpg' +p83337 +sg25267 +g27 +sa(dp83338 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1812' +p83339 +sg25268 +S'New Invented Elastic Breeches' +p83340 +sg25270 +S'Thomas Rowlandson' +p83341 +sa(dp83342 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83343 +sg25268 +S'New Invented Elastic Breeches' +p83344 +sg25270 +S'Thomas Rowlandson' +p83345 +sa(dp83346 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83347 +sg25268 +S'The Ministers A(s)se' +p83348 +sg25270 +S'Thomas Rowlandson' +p83349 +sa(dp83350 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83351 +sg25268 +S'Money Lenders' +p83352 +sg25270 +S'Thomas Rowlandson' +p83353 +sa(dp83354 +g25268 +S'Resurrection, or The Frighted Nurse' +p83355 +sg25270 +S'Thomas Rowlandson' +p83356 +sg25273 +S'hand-colored etching and aquatint' +p83357 +sg25275 +S'1784' +p83358 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077cb.jpg' +p83359 +sg25267 +g27 +sa(dp83360 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p83361 +sg25268 +S'The Dead Alive' +p83362 +sg25270 +S'Thomas Rowlandson' +p83363 +sa(dp83364 +g25268 +S'Ballet at the Opera' +p83365 +sg25270 +S'Artist Information (' +p83366 +sg25273 +S'(artist after)' +p83367 +sg25275 +S'\n' +p83368 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f2c.jpg' +p83369 +sg25267 +g27 +sa(dp83370 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83371 +sg25268 +S'Four Wheel Chaise' +p83372 +sg25270 +S'Thomas Rowlandson' +p83373 +sa(dp83374 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83375 +sg25268 +S'Rest from Labor on Sunny Days' +p83376 +sg25270 +S'Thomas Rowlandson' +p83377 +sa(dp83378 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83379 +sg25268 +S'Billingsgate' +p83380 +sg25270 +S'Thomas Rowlandson' +p83381 +sa(dp83382 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83383 +sg25268 +S"Miller's Wagon" +p83384 +sg25270 +S'Thomas Rowlandson' +p83385 +sa(dp83386 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83387 +sg25268 +S"Higler's Cart" +p83388 +sg25270 +S'Thomas Rowlandson' +p83389 +sa(dp83390 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83391 +sg25268 +S'A Timber Wagon' +p83392 +sg25270 +S'Thomas Rowlandson' +p83393 +sa(dp83394 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83395 +sg25268 +S'A Cabriolet' +p83396 +sg25270 +S'Thomas Rowlandson' +p83397 +sa(dp83398 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83399 +sg25268 +S'Country Cart Horses' +p83400 +sg25270 +S'Thomas Rowlandson' +p83401 +sa(dp83402 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p83403 +sg25268 +S'A Hack' +p83404 +sg25270 +S'Thomas Rowlandson' +p83405 +sa(dp83406 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83407 +sg25268 +S'Dray Horses, Draymen, and Maltsters' +p83408 +sg25270 +S'Thomas Rowlandson' +p83409 +sa(dp83410 +g25268 +S'La Comparison du bouton de rose' +p83411 +sg25270 +S'Artist Information (' +p83412 +sg25273 +S'(artist after)' +p83413 +sg25275 +S'\n' +p83414 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e69.jpg' +p83415 +sg25267 +g27 +sa(dp83416 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p83417 +sg25268 +S'Italian Affectation, Pacchierotti' +p83418 +sg25270 +S'Thomas Rowlandson' +p83419 +sa(dp83420 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p83421 +sg25268 +S'Barber Shop' +p83422 +sg25270 +S'Thomas Rowlandson' +p83423 +sa(dp83424 +g25268 +S'Two Strings to Your Bow' +p83425 +sg25270 +S'Thomas Rowlandson' +p83426 +sg25273 +S'hand-colored etching' +p83427 +sg25275 +S'1800' +p83428 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077c5.jpg' +p83429 +sg25267 +g27 +sa(dp83430 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1785' +p83431 +sg25268 +S'The Students' +p83432 +sg25270 +S'Thomas Rowlandson' +p83433 +sa(dp83434 +g25273 +S'(artist after)' +p83435 +sg25267 +g27 +sg25275 +S'\n' +p83436 +sg25268 +S'Travelers' +p83437 +sg25270 +S'Artist Information (' +p83438 +sa(dp83439 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1785' +p83440 +sg25268 +S'Defeat of the High and Mighty Bailissimo Corbettino and his Famed Cecilian Forces' +p83441 +sg25270 +S'Thomas Rowlandson' +p83442 +sa(dp83443 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1785' +p83444 +sg25268 +S'English Curiosity, or The Foreigner Stared out of Countenance' +p83445 +sg25270 +S'Thomas Rowlandson' +p83446 +sa(dp83447 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1794' +p83448 +sg25268 +S'English Curiosity, or The Foreigner Stared out of Countenance' +p83449 +sg25270 +S'Thomas Rowlandson' +p83450 +sa(dp83451 +g25268 +S'The Wonderful Pig' +p83452 +sg25270 +S'Thomas Rowlandson' +p83453 +sg25273 +S'etching' +p83454 +sg25275 +S'1785' +p83455 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007759.jpg' +p83456 +sg25267 +g27 +sa(dp83457 +g25268 +S'Comfort in the Gout' +p83458 +sg25270 +S'Thomas Rowlandson' +p83459 +sg25273 +S'hand-colored etching' +p83460 +sg25275 +S'1785' +p83461 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000778f.jpg' +p83462 +sg25267 +g27 +sa(dp83463 +g25268 +S'Il est trop tard' +p83464 +sg25270 +S'Antoine-Fran\xc3\xa7ois Sergent' +p83465 +sg25273 +S'color aquatint and etching' +p83466 +sg25275 +S'1789' +p83467 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000969d.jpg' +p83468 +sg25267 +g27 +sa(dp83469 +g25268 +S'A Bawd on Her Last Legs' +p83470 +sg25270 +S'Thomas Rowlandson' +p83471 +sg25273 +S'etching and aquatint' +p83472 +sg25275 +S'1784' +p83473 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000777d.jpg' +p83474 +sg25267 +g27 +sa(dp83475 +g25268 +S'A Bawd on Her Last Legs' +p83476 +sg25270 +S'Thomas Rowlandson' +p83477 +sg25273 +S'hand-colored etching and aquatint' +p83478 +sg25275 +S'1792' +p83479 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007777.jpg' +p83480 +sg25267 +g27 +sa(dp83481 +g25268 +S'Vauxhall Gardens' +p83482 +sg25270 +S'Thomas Rowlandson' +p83483 +sg25273 +S'etching and aquatint' +p83484 +sg25275 +S'1785' +p83485 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d63.jpg' +p83486 +sg25267 +g27 +sa(dp83487 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1785' +p83488 +sg25268 +S'The Bun Shop' +p83489 +sg25270 +S'Thomas Rowlandson' +p83490 +sa(dp83491 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1785' +p83492 +sg25268 +S'A Slang Society' +p83493 +sg25270 +S'Thomas Rowlandson' +p83494 +sa(dp83495 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1785' +p83496 +sg25268 +S'Aerostation out at Elbows, or The Itinerant Aeronaut (Vincent Lanardi)' +p83497 +sg25270 +S'Thomas Rowlandson' +p83498 +sa(dp83499 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1785' +p83500 +sg25268 +S'Going, A-Going' +p83501 +sg25270 +S'Thomas Rowlandson' +p83502 +sa(dp83503 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1785' +p83504 +sg25268 +S'Too Many for a Jew' +p83505 +sg25270 +S'Thomas Rowlandson' +p83506 +sa(dp83507 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1785' +p83508 +sg25268 +S'The Convocation' +p83509 +sg25270 +S'Thomas Rowlandson' +p83510 +sa(dp83511 +g25268 +S'The Consultation' +p83512 +sg25270 +S'Thomas Rowlandson' +p83513 +sg25273 +S'hand-colored etching and aquatint' +p83514 +sg25275 +S'published 1785' +p83515 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077d1.jpg' +p83516 +sg25267 +g27 +sa(dp83517 +g25268 +S'Marie-Th\xc3\xa9r\xc3\xa8se-Charlotte, Duchess of Angoul\xc3\xaame' +p83518 +sg25270 +S'Artist Information (' +p83519 +sg25273 +S'(artist after)' +p83520 +sg25275 +S'\n' +p83521 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef91.jpg' +p83522 +sg25267 +g27 +sa(dp83523 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p83524 +sg25268 +S'Young Woman Seated in a Chair' +p83525 +sg25270 +S'Thomas Rowlandson' +p83526 +sa(dp83527 +g25273 +S'lithograph?' +p83528 +sg25267 +g27 +sg25275 +S'unknown date\n' +p83529 +sg25268 +S'Young Woman Seated at a Writing Table' +p83530 +sg25270 +S'Thomas Rowlandson' +p83531 +sa(dp83532 +g25273 +S'etching and aquatint' +p83533 +sg25267 +g27 +sg25275 +S'1785' +p83534 +sg25268 +S'The Doctor Dismissing Death' +p83535 +sg25270 +S'Thomas Rowlandson' +p83536 +sa(dp83537 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1785' +p83538 +sg25268 +S'An Essay on the Sublime and Beautiful' +p83539 +sg25270 +S'Thomas Rowlandson' +p83540 +sa(dp83541 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1785' +p83542 +sg25268 +S'The Maiden Speech' +p83543 +sg25270 +S'Thomas Rowlandson' +p83544 +sa(dp83545 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1785' +p83546 +sg25268 +S'Captain Epilogue (Major Topham, Editor of "The World")' +p83547 +sg25270 +S'Thomas Rowlandson' +p83548 +sa(dp83549 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1785' +p83550 +sg25268 +S'Topham Endeavoring with his Squirt to Extinguish the Rising Genius of Holman' +p83551 +sg25270 +S'Thomas Rowlandson' +p83552 +sa(dp83553 +g25268 +S'The Sad Discovery, or The Graceless Apprentice' +p83554 +sg25270 +S'Thomas Rowlandson' +p83555 +sg25273 +S'hand-colored etching' +p83556 +sg25275 +S'1785' +p83557 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000774d.jpg' +p83558 +sg25267 +g27 +sa(dp83559 +g25268 +S'A Cully Pillaged' +p83560 +sg25270 +S'Thomas Rowlandson' +p83561 +sg25273 +S'hand-colored etching' +p83562 +sg25275 +S'probably 1784/1785' +p83563 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000774f.jpg' +p83564 +sg25267 +g27 +sa(dp83565 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1785' +p83566 +sg25268 +S"Doctor's Differ" +p83567 +sg25270 +S'Thomas Rowlandson' +p83568 +sa(dp83569 +g25268 +S'The Crucifixion with the Virgin, Saint John, Saint Jerome, and Saint Mary Magdalene [right panel]' +p83570 +sg25270 +S'Pietro Perugino' +p83571 +sg25273 +S'oil on panel transferred to canvas' +p83572 +sg25275 +S'c. 1482/1485' +p83573 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005f0.jpg' +p83574 +sg25267 +S"Pietro Vannucci, called Perugino after the city in which he often lived, collaborated\r\nwith other celebrated painters in one of the most prestigious commissions of the\r\nlate fifteenth century -- the decoration of the walls of the Sistine Chapel in 1481-1482.\r\nHe headed active workshops in Perugia and Florence, where he would eventually be\r\novershadowed by his greatest pupil, Raphael.\n Perugino's \n From the late seventeenth to the early twentieth century Perugino's \n " +p83575 +sa(dp83576 +g25268 +S"Caffe\xc3\xa9 des Patriotes - A Patriot's Coff\xc3\xa9e House" +p83577 +sg25270 +S'Artist Information (' +p83578 +sg25273 +S'(artist after)' +p83579 +sg25275 +S'\n' +p83580 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009740.jpg' +p83581 +sg25267 +g27 +sa(dp83582 +g25268 +S'A Bed-warmer' +p83583 +sg25270 +S'Thomas Rowlandson' +p83584 +sg25273 +S'etching' +p83585 +sg25275 +S'c. 1785' +p83586 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000774b.jpg' +p83587 +sg25267 +g27 +sa(dp83588 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1785' +p83589 +sg25268 +S'By Authority Persons and Property Protected' +p83590 +sg25270 +S'Thomas Rowlandson' +p83591 +sa(dp83592 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1785' +p83593 +sg25268 +S'Intrusion on Study, or The Painter Disturbed' +p83594 +sg25270 +S'Thomas Rowlandson' +p83595 +sa(dp83596 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p83597 +sg25268 +S'Jockeyship' +p83598 +sg25270 +S'Thomas Rowlandson' +p83599 +sa(dp83600 +g25273 +g27 +sg25267 +g27 +sg25275 +S'published 1786' +p83601 +sg25268 +S'City Courtship' +p83602 +sg25270 +S'Thomas Rowlandson' +p83603 +sa(dp83604 +g25268 +S'Rustic Courtship' +p83605 +sg25270 +S'Thomas Rowlandson' +p83606 +sg25273 +S'hand-colored etching and aquatint' +p83607 +sg25275 +S'1785' +p83608 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007757.jpg' +p83609 +sg25267 +g27 +sa(dp83610 +g25268 +S'The Reconciliation, or The Return from Scotland' +p83611 +sg25270 +S'Thomas Rowlandson' +p83612 +sg25273 +S'hand-colored etching' +p83613 +sg25275 +S'1785' +p83614 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007753.jpg' +p83615 +sg25267 +g27 +sa(dp83616 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1785' +p83617 +sg25268 +S'The Loss of Eden and Eden, Lost' +p83618 +sg25270 +S'Thomas Rowlandson' +p83619 +sa(dp83620 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1785' +p83621 +sg25268 +S'Sympathy, or A Family on a Journey Laying the Dust' +p83622 +sg25270 +S'Thomas Rowlandson' +p83623 +sa(dp83624 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1785' +p83625 +sg25268 +S'Harmony' +p83626 +sg25270 +S'Thomas Rowlandson' +p83627 +sa(dp83628 +g25268 +S'Le danger des bosquets' +p83629 +sg25270 +S'Artist Information (' +p83630 +sg25273 +S'(artist after)' +p83631 +sg25275 +S'\n' +p83632 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000971c.jpg' +p83633 +sg25267 +g27 +sa(dp83634 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1785' +p83635 +sg25268 +S'Nap in the Country; Nap in Town' +p83636 +sg25270 +S'Thomas Rowlandson' +p83637 +sa(dp83638 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p83639 +sg25268 +S'A French Family' +p83640 +sg25270 +S'Thomas Rowlandson' +p83641 +sa(dp83642 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p83643 +sg25268 +S'Returned from a Fox Chace' +p83644 +sg25270 +S'Thomas Rowlandson' +p83645 +sa(dp83646 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1785' +p83647 +sg25268 +S'Commanders Engaged at Sea' +p83648 +sg25270 +S'Thomas Rowlandson' +p83649 +sa(dp83650 +g25268 +S'The Supplemental Magazine' +p83651 +sg25270 +S'Thomas Rowlandson' +p83652 +sg25273 +S'hand-colored etching' +p83653 +sg25275 +S'1786' +p83654 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007763.jpg' +p83655 +sg25267 +g27 +sa(dp83656 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83657 +sg25268 +S'Sketch of Politicks in Europe 24th January 1786, Birthday of the King of Prussia' +p83658 +sg25270 +S'Thomas Rowlandson' +p83659 +sa(dp83660 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83661 +sg25268 +S'Misery' +p83662 +sg25270 +S'Thomas Rowlandson' +p83663 +sa(dp83664 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83665 +sg25268 +S'Luxury' +p83666 +sg25270 +S'Thomas Rowlandson' +p83667 +sa(dp83668 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83669 +sg25268 +S'Special Pleading' +p83670 +sg25270 +S'Thomas Rowlandson' +p83671 +sa(dp83672 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83673 +sg25268 +S'Love and Learning, or The Oxford Scholar' +p83674 +sg25270 +S'Thomas Rowlandson' +p83675 +sa(dp83676 +g25268 +S'Le desirs naissants' +p83677 +sg25270 +S'Artist Information (' +p83678 +sg25273 +S'(artist after)' +p83679 +sg25275 +S'\n' +p83680 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000971b.jpg' +p83681 +sg25267 +g27 +sa(dp83682 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83683 +sg25268 +S'The Polish Dwarf (Count Borwloski) Performing before the Grand Seigneur, March 1786' +p83684 +sg25270 +S'Thomas Rowlandson' +p83685 +sa(dp83686 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83687 +sg25268 +S"A Box Lobby Hero: The Branded Bully, or The Ass Strip'd of the Lion's Skin" +p83688 +sg25270 +S'Thomas Rowlandson' +p83689 +sa(dp83690 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83691 +sg25268 +S'Outre Compliments' +p83692 +sg25270 +S'Thomas Rowlandson' +p83693 +sa(dp83694 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83695 +sg25268 +S'Brewers Drays' +p83696 +sg25270 +S'Thomas Rowlandson' +p83697 +sa(dp83698 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1794' +p83699 +sg25268 +S'A Visit to the Aunt' +p83700 +sg25270 +S'Thomas Rowlandson' +p83701 +sa(dp83702 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83703 +sg25268 +S'All Hail Dalblair! Hail to the Laird of Auchinleck' +p83704 +sg25270 +S'Thomas Rowlandson' +p83705 +sa(dp83706 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83707 +sg25268 +S'The Journalist, with a View of Auckinleck or Land of Stones' +p83708 +sg25270 +S'Thomas Rowlandson' +p83709 +sa(dp83710 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83711 +sg25268 +S"The Embrace at Boyd's Inn" +p83712 +sg25270 +S'Thomas Rowlandson' +p83713 +sa(dp83714 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83715 +sg25268 +S'Walking up the High Street, Edinburgh' +p83716 +sg25270 +S'Thomas Rowlandson' +p83717 +sa(dp83718 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83719 +sg25268 +S"Tea at the Journalist's House in St James's Court" +p83720 +sg25270 +S'Thomas Rowlandson' +p83721 +sa(dp83722 +g25268 +S'Noce de Village (Village Wedding)' +p83723 +sg25270 +S'Artist Information (' +p83724 +sg25273 +S'(artist after)' +p83725 +sg25275 +S'\n' +p83726 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e98.jpg' +p83727 +sg25267 +g27 +sa(dp83728 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83729 +sg25268 +S"Chatting 'till Two O'Clock in the Morning" +p83730 +sg25270 +S'Thomas Rowlandson' +p83731 +sa(dp83732 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83733 +sg25268 +S'Veronica, A Breakfast Conversation' +p83734 +sg25270 +S'Thomas Rowlandson' +p83735 +sa(dp83736 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83737 +sg25268 +S'Wit and Wisdom Making Preparations for Dinner' +p83738 +sg25270 +S'Thomas Rowlandson' +p83739 +sa(dp83740 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83741 +sg25268 +S'Setting out from Edinburgh' +p83742 +sg25270 +S'Thomas Rowlandson' +p83743 +sa(dp83744 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83745 +sg25268 +S'Scottifying the Palate at Leith' +p83746 +sg25270 +S'Thomas Rowlandson' +p83747 +sa(dp83748 +g25273 +S'etching' +p83749 +sg25267 +g27 +sg25275 +S'1786' +p83750 +sg25268 +S'Revising for the Second Edition' +p83751 +sg25270 +S'Thomas Rowlandson' +p83752 +sa(dp83753 +g25273 +S'etching' +p83754 +sg25267 +g27 +sg25275 +S'1786' +p83755 +sg25268 +S'The Reconciliation' +p83756 +sg25270 +S'Thomas Rowlandson' +p83757 +sa(dp83758 +g25268 +S'A Militia Meeting' +p83759 +sg25270 +S'Thomas Rowlandson' +p83760 +sg25273 +S'hand-colored etching' +p83761 +sg25275 +S'probably 1799' +p83762 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000777b.jpg' +p83763 +sg25267 +g27 +sa(dp83764 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83765 +sg25268 +S'Domestic Shaving' +p83766 +sg25270 +S'Thomas Rowlandson' +p83767 +sa(dp83768 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1786' +p83769 +sg25268 +S'The Fallen Angel - Ubi Lapsus quid fecit' +p83770 +sg25270 +S'Thomas Rowlandson' +p83771 +sa(dp83772 +g25268 +S'Foire de Village' +p83773 +sg25270 +S'Artist Information (' +p83774 +sg25273 +S'(artist after)' +p83775 +sg25275 +S'\n' +p83776 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e99.jpg' +p83777 +sg25267 +g27 +sa(dp83778 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83779 +sg25268 +S"How d'ye Do? Comfort and Relief Often Found in Relating One's Complaints" +p83780 +sg25270 +S'Thomas Rowlandson' +p83781 +sa(dp83782 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83783 +sg25268 +S'The Convenience of Two Doors' +p83784 +sg25270 +S'Thomas Rowlandson' +p83785 +sa(dp83786 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83787 +sg25268 +S'Music Has Charms to Soothe a Savage Breast' +p83788 +sg25270 +S'Thomas Rowlandson' +p83789 +sa(dp83790 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1786' +p83791 +sg25268 +S'Vicar and Moses' +p83792 +sg25270 +S'Thomas Rowlandson' +p83793 +sa(dp83794 +g25268 +S'The Bachelor' +p83795 +sg25270 +S'Artist Information (' +p83796 +sg25273 +S'(artist after)' +p83797 +sg25275 +S'\n' +p83798 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076d6.jpg' +p83799 +sg25267 +g27 +sa(dp83800 +g25268 +S'The Married Man' +p83801 +sg25270 +S'Artist Information (' +p83802 +sg25273 +S'(artist after)' +p83803 +sg25275 +S'\n' +p83804 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076d7.jpg' +p83805 +sg25267 +g27 +sa(dp83806 +g25273 +S'(artist after)' +p83807 +sg25267 +g27 +sg25275 +S'\n' +p83808 +sg25268 +S'A Coast Scene: Fisherman, Fisherwomen, etc.' +p83809 +sg25270 +S'Artist Information (' +p83810 +sa(dp83811 +g25273 +S'(artist after)' +p83812 +sg25267 +g27 +sg25275 +S'\n' +p83813 +sg25268 +S'A Coast Scene' +p83814 +sg25270 +S'Artist Information (' +p83815 +sa(dp83816 +g25273 +S'(artist after)' +p83817 +sg25267 +g27 +sg25275 +S'\n' +p83818 +sg25268 +S'A Sketch: Trees, Cottages, etc.' +p83819 +sg25270 +S'Artist Information (' +p83820 +sa(dp83821 +g25273 +S'(artist after)' +p83822 +sg25267 +g27 +sg25275 +S'\n' +p83823 +sg25268 +S'Cattle, Riverside' +p83824 +sg25270 +S'Artist Information (' +p83825 +sa(dp83826 +g25268 +S"L'invocation a l'amour" +p83827 +sg25270 +S'Artist Information (' +p83828 +sg25273 +S'(artist after)' +p83829 +sg25275 +S'\n' +p83830 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b37b.jpg' +p83831 +sg25267 +g27 +sa(dp83832 +g25273 +S'(artist after)' +p83833 +sg25267 +g27 +sg25275 +S'\n' +p83834 +sg25268 +S'A Pair of Cupids' +p83835 +sg25270 +S'Artist Information (' +p83836 +sa(dp83837 +g25273 +S'(artist after)' +p83838 +sg25267 +g27 +sg25275 +S'\n' +p83839 +sg25268 +S'A Fair' +p83840 +sg25270 +S'Artist Information (' +p83841 +sa(dp83842 +g25273 +S'(artist after)' +p83843 +sg25267 +g27 +sg25275 +S'\n' +p83844 +sg25268 +S'Mares and Foals' +p83845 +sg25270 +S'Artist Information (' +p83846 +sa(dp83847 +g25273 +S'(artist after)' +p83848 +sg25267 +g27 +sg25275 +S'\n' +p83849 +sg25268 +S'Cattle' +p83850 +sg25270 +S'Artist Information (' +p83851 +sa(dp83852 +g25273 +S'(artist after)' +p83853 +sg25267 +g27 +sg25275 +S'\n' +p83854 +sg25268 +S'A Cottage, etc.' +p83855 +sg25270 +S'Artist Information (' +p83856 +sa(dp83857 +g25273 +S'(artist after)' +p83858 +sg25267 +g27 +sg25275 +S'\n' +p83859 +sg25268 +S'Ruins, etc.' +p83860 +sg25270 +S'Artist Information (' +p83861 +sa(dp83862 +g25273 +S'(artist after)' +p83863 +sg25267 +g27 +sg25275 +S'\n' +p83864 +sg25268 +S'Harmony: Two Nymphs Singing, Another Playing the Lyre' +p83865 +sg25270 +S'Artist Information (' +p83866 +sa(dp83867 +g25273 +S'(artist after)' +p83868 +sg25267 +g27 +sg25275 +S'\n' +p83869 +sg25268 +S'A Storm at Sea' +p83870 +sg25270 +S'Artist Information (' +p83871 +sa(dp83872 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p83873 +sg25268 +S'Sleeping Venus and Love (?)' +p83874 +sg25270 +S'Thomas Rowlandson' +p83875 +sa(dp83876 +g25273 +S'(artist after)' +p83877 +sg25267 +g27 +sg25275 +S'\n' +p83878 +sg25268 +S'Horses and Cattle' +p83879 +sg25270 +S'Artist Information (' +p83880 +sa(dp83881 +g25268 +S'Frederica Sophia Wilhelmina of Prussia, Princess of Orange Nassau' +p83882 +sg25270 +S'Artist Information (' +p83883 +sg25273 +S'(artist after)' +p83884 +sg25275 +S'\n' +p83885 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ea2.jpg' +p83886 +sg25267 +g27 +sa(dp83887 +g25273 +S'(artist after)' +p83888 +sg25267 +g27 +sg25275 +S'\n' +p83889 +sg25268 +S'Cows' +p83890 +sg25270 +S'Artist Information (' +p83891 +sa(dp83892 +g25273 +S'(artist after)' +p83893 +sg25267 +g27 +sg25275 +S'\n' +p83894 +sg25268 +S'Landscape Sketch' +p83895 +sg25270 +S'Artist Information (' +p83896 +sa(dp83897 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1787' +p83898 +sg25268 +S'Smithfield Sharpers, or The Countrymen Defrauded' +p83899 +sg25270 +S'Thomas Rowlandson' +p83900 +sa(dp83901 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1787' +p83902 +sg25268 +S"Peter Pindar - The Lousiad: Cooks, Scullions, Hear Me Ev'ry Mother's Son" +p83903 +sg25270 +S'Thomas Rowlandson' +p83904 +sa(dp83905 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1787' +p83906 +sg25268 +S"Peter Pindar - The Lousiad: Cooks, Scullions, Hear Me Ev'ry Mother's Son" +p83907 +sg25270 +S'Thomas Rowlandson' +p83908 +sa(dp83909 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1787' +p83910 +sg25268 +S'Peter Pindar - Odes for the New Year' +p83911 +sg25270 +S'Thomas Rowlandson' +p83912 +sa(dp83913 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1787' +p83914 +sg25268 +S"Peter Pindar - Peter's Pension: A Solemn Epistle to a Sublime Personage" +p83915 +sg25270 +S'Thomas Rowlandson' +p83916 +sa(dp83917 +g25273 +S'(artist after)' +p83918 +sg25267 +g27 +sg25275 +S'\n' +p83919 +sg25268 +S'The Triumph of Sentiment' +p83920 +sg25270 +S'Artist Information (' +p83921 +sa(dp83922 +g25273 +S'(artist after)' +p83923 +sg25267 +g27 +sg25275 +S'\n' +p83924 +sg25268 +S'A Bacchante of Sentiment' +p83925 +sg25270 +S'Artist Information (' +p83926 +sa(dp83927 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1787' +p83928 +sg25268 +S'Women Drinking' +p83929 +sg25270 +S'Thomas Rowlandson' +p83930 +sa(dp83931 +g25268 +S'Le dejeuner de Fanfan' +p83932 +sg25270 +S'Artist Information (' +p83933 +sg25273 +S'(artist after)' +p83934 +sg25275 +S'\n' +p83935 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f10.jpg' +p83936 +sg25267 +g27 +sa(dp83937 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1787' +p83938 +sg25268 +S'Post Boys and Post Horses at the White Hart Inn' +p83939 +sg25270 +S'Thomas Rowlandson' +p83940 +sa(dp83941 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1787' +p83942 +sg25268 +S"A Sailor's Family" +p83943 +sg25270 +S'Thomas Rowlandson' +p83944 +sa(dp83945 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1789' +p83946 +sg25268 +S'Comedy Spectators' +p83947 +sg25270 +S'Thomas Rowlandson' +p83948 +sa(dp83949 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1789' +p83950 +sg25268 +S'Tragedy Spectators' +p83951 +sg25270 +S'Thomas Rowlandson' +p83952 +sa(dp83953 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1787' +p83954 +sg25268 +S'Shoeing: The Village Forge' +p83955 +sg25270 +S'Thomas Rowlandson' +p83956 +sa(dp83957 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1787' +p83958 +sg25268 +S'A Post Chaise' +p83959 +sg25270 +S'Thomas Rowlandson' +p83960 +sa(dp83961 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p83962 +sg25268 +S"Boy bringing round a Citizen's Curricle" +p83963 +sg25270 +S'Thomas Rowlandson' +p83964 +sa(dp83965 +g25273 +S'(artist after)' +p83966 +sg25267 +g27 +sg25275 +S'\n' +p83967 +sg25268 +S'Scene in "The Tempest" from Shakespeare (?)' +p83968 +sg25270 +S'Artist Information (' +p83969 +sa(dp83970 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p83971 +sg25268 +S'Love in the East' +p83972 +sg25270 +S'Thomas Rowlandson' +p83973 +sa(dp83974 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1787' +p83975 +sg25268 +S'Fox Hunting: A Landscape Scene' +p83976 +sg25270 +S'Thomas Rowlandson' +p83977 +sa(dp83978 +g25268 +S'La statue du dieu Pan (Statue of the God Pan)' +p83979 +sg25270 +S'Artist Information (' +p83980 +sg25273 +S'French, active 1793/1819' +p83981 +sg25275 +S'(artist after)' +p83982 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f91.jpg' +p83983 +sg25267 +g27 +sa(dp83984 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1787' +p83985 +sg25268 +S'Deer Hunting: A Landscape Scene' +p83986 +sg25270 +S'Thomas Rowlandson' +p83987 +sa(dp83988 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1787' +p83989 +sg25268 +S'The Three Horseshoes' +p83990 +sg25270 +S'Thomas Rowlandson' +p83991 +sa(dp83992 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1787' +p83993 +sg25268 +S'The Three Horseshoes' +p83994 +sg25270 +S'Thomas Rowlandson' +p83995 +sa(dp83996 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1787' +p83997 +sg25268 +S'A Traveling Knife-grinder at a Cottage Door' +p83998 +sg25270 +S'Thomas Rowlandson' +p83999 +sa(dp84000 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1787' +p84001 +sg25268 +S'Stage Coach Setting out from a Posting House' +p84002 +sg25270 +S'Thomas Rowlandson' +p84003 +sa(dp84004 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84005 +sg25268 +S'Pea-Cart' +p84006 +sg25270 +S'Thomas Rowlandson' +p84007 +sa(dp84008 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1788' +p84009 +sg25268 +S'The Run' +p84010 +sg25270 +S'Thomas Rowlandson' +p84011 +sa(dp84012 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84013 +sg25268 +S'Satyrs' +p84014 +sg25270 +S'Thomas Rowlandson' +p84015 +sa(dp84016 +g25273 +S'(artist after)' +p84017 +sg25267 +g27 +sg25275 +S'\n' +p84018 +sg25268 +S'The Philosopher' +p84019 +sg25270 +S'Artist Information (' +p84020 +sa(dp84021 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84022 +sg25268 +S'Half Pay' +p84023 +sg25270 +S'Thomas Rowlandson' +p84024 +sa(dp84025 +g25268 +S'La Marquise de Pompadour en belle jardiniere' +p84026 +sg25270 +S'Artist Information (' +p84027 +sg25273 +S'(artist after)' +p84028 +sg25275 +S'\n' +p84029 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cc3.jpg' +p84030 +sg25267 +g27 +sa(dp84031 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84032 +sg25268 +S'London Clergy and Country Clergy' +p84033 +sg25270 +S'Thomas Rowlandson' +p84034 +sa(dp84035 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84036 +sg25268 +S'A French Family' +p84037 +sg25270 +S'Thomas Rowlandson' +p84038 +sa(dp84039 +g25268 +S'Racing' +p84040 +sg25270 +S'Thomas Rowlandson' +p84041 +sg25273 +S'hand-colored etching' +p84042 +sg25275 +S'1811' +p84043 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077a6.jpg' +p84044 +sg25267 +g27 +sa(dp84045 +g25268 +S'Place de Meir at Antwerp' +p84046 +sg25270 +S'Thomas Rowlandson' +p84047 +sg25273 +S'hand-colored etching and aquatint' +p84048 +sg25275 +S'1797' +p84049 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007ce3.jpg' +p84050 +sg25267 +g27 +sa(dp84051 +g25273 +S'bound vol: original contents: 237 etchings and engravings, some prints being removed from the volume; see separate entries for current locations' +p84052 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84053 +sg25268 +S'Caricatures (volume IIA)' +p84054 +sg25270 +S'Thomas Rowlandson' +p84055 +sa(dp84056 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84057 +sg25268 +S'Pot Fair Cambridge' +p84058 +sg25270 +S'Thomas Rowlandson' +p84059 +sa(dp84060 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84061 +sg25268 +S'View in North Wales' +p84062 +sg25270 +S'Thomas Rowlandson' +p84063 +sa(dp84064 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1799' +p84065 +sg25268 +S'View of a Cathedral Town on Market Day (Great Yarmouth)' +p84066 +sg25270 +S'Thomas Rowlandson' +p84067 +sa(dp84068 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1802' +p84069 +sg25268 +S'Private School' +p84070 +sg25270 +S'Thomas Rowlandson' +p84071 +sa(dp84072 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1802' +p84073 +sg25268 +S'Public School' +p84074 +sg25270 +S'Thomas Rowlandson' +p84075 +sa(dp84076 +g25268 +S'La Marquise de Pompadour en belle jardiniere' +p84077 +sg25270 +S'Artist Information (' +p84078 +sg25273 +S'(artist after)' +p84079 +sg25275 +S'\n' +p84080 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f1d.jpg' +p84081 +sg25267 +g27 +sa(dp84082 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1802' +p84083 +sg25268 +S'University' +p84084 +sg25270 +S'Thomas Rowlandson' +p84085 +sa(dp84086 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84087 +sg25268 +S'Gaming' +p84088 +sg25270 +S'Thomas Rowlandson' +p84089 +sa(dp84090 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84091 +sg25268 +S'Duelling' +p84092 +sg25270 +S'Thomas Rowlandson' +p84093 +sa(dp84094 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84095 +sg25268 +S'Suicide' +p84096 +sg25270 +S'Thomas Rowlandson' +p84097 +sa(dp84098 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1799' +p84099 +sg25268 +S'The Gull and the Rook' +p84100 +sg25270 +S'Thomas Rowlandson' +p84101 +sa(dp84102 +g25268 +S'Limbs of the Law' +p84103 +sg25270 +S'George Moutard Woodward' +p84104 +sg25273 +S'hand-colored etching and aquatint' +p84105 +sg25275 +S'1799' +p84106 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a0007856.jpg' +p84107 +sg25267 +g27 +sa(dp84108 +g25273 +g27 +sg25267 +g27 +sg25275 +S'published 1799' +p84109 +sg25268 +S'Chips of the Church' +p84110 +sg25270 +S'George Moutard Woodward' +p84111 +sa(dp84112 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1800' +p84113 +sg25268 +S'The Pleasures of Margate: Morning, Noon, Evening, Night' +p84114 +sg25270 +S'Thomas Rowlandson' +p84115 +sa(dp84116 +g25273 +S', unknown date' +p84117 +sg25267 +g27 +sg25275 +S'\n' +p84118 +sg25268 +S'Dr. Convex and Lady Concave' +p84119 +sg25270 +S'George Moutard Woodward' +p84120 +sa(dp84121 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84122 +sg25268 +S'Strolling Actresses at Their Last Shifts' +p84123 +sg25270 +S'Thomas Rowlandson' +p84124 +sa(dp84125 +g25268 +S'Louis-Auguste, Dauphin de France' +p84126 +sg25270 +S'Artist Information (' +p84127 +sg25273 +S'(artist after)' +p84128 +sg25275 +S'\n' +p84129 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cc6.jpg' +p84130 +sg25267 +g27 +sa(dp84131 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1799' +p84132 +sg25268 +S'Ride to Rumford' +p84133 +sg25270 +S'Thomas Rowlandson' +p84134 +sa(dp84135 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1799' +p84136 +sg25268 +S'A Bankrupt Cart, or The Road to Ruin in the East' +p84137 +sg25270 +S'Thomas Rowlandson' +p84138 +sa(dp84139 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1799' +p84140 +sg25268 +S'A Dasher!, or The Road to Ruin in the West' +p84141 +sg25270 +S'Thomas Rowlandson' +p84142 +sa(dp84143 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1799' +p84144 +sg25268 +S'Forget and Forgive, or Honest Jack Shaking Hands with an Old Acquaintance' +p84145 +sg25270 +S'Thomas Rowlandson' +p84146 +sa(dp84147 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84148 +sg25268 +S'Something New, or Suwarrow and his Looring Glass!' +p84149 +sg25270 +S'Thomas Rowlandson' +p84150 +sa(dp84151 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84152 +sg25268 +S'A Sad Story' +p84153 +sg25270 +S'Thomas Rowlandson' +p84154 +sa(dp84155 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84156 +sg25268 +S'The Holy Friar' +p84157 +sg25270 +S'Thomas Rowlandson' +p84158 +sa(dp84159 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1800' +p84160 +sg25268 +S'A Return from a Walk' +p84161 +sg25270 +S'Thomas Rowlandson' +p84162 +sa(dp84163 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1800' +p84164 +sg25268 +S'Exciseman' +p84165 +sg25270 +S'Thomas Rowlandson' +p84166 +sa(dp84167 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1800' +p84168 +sg25268 +S'London Outrider' +p84169 +sg25270 +S'Thomas Rowlandson' +p84170 +sa(dp84171 +g25273 +S'(artist after)' +p84172 +sg25267 +g27 +sg25275 +S'\n' +p84173 +sg25268 +S'La danse des chiens' +p84174 +sg25270 +S'Artist Information (' +p84175 +sa(dp84176 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84177 +sg25268 +S'Stocks are Up! Huzza!' +p84178 +sg25270 +S'Thomas Rowlandson' +p84179 +sa(dp84180 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84181 +sg25268 +S'Stocks are Down-Heigh-Ho!' +p84182 +sg25270 +S'Thomas Rowlandson' +p84183 +sa(dp84184 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1799' +p84185 +sg25268 +S'Good Speculation' +p84186 +sg25270 +S'Thomas Rowlandson' +p84187 +sa(dp84188 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1799' +p84189 +sg25268 +S'Bad Speculation' +p84190 +sg25270 +S'Thomas Rowlandson' +p84191 +sa(dp84192 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84193 +sg25268 +S'Waddling In!' +p84194 +sg25270 +S'Thomas Rowlandson' +p84195 +sa(dp84196 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1799' +p84197 +sg25268 +S'Waddling Out' +p84198 +sg25270 +S'Thomas Rowlandson' +p84199 +sa(dp84200 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84201 +sg25268 +S"What's the News" +p84202 +sg25270 +S'Thomas Rowlandson' +p84203 +sa(dp84204 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84205 +sg25268 +S'My Sarvice to You' +p84206 +sg25270 +S'Thomas Rowlandson' +p84207 +sa(dp84208 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84209 +sg25268 +S'A Maker of Wines' +p84210 +sg25270 +S'Thomas Rowlandson' +p84211 +sa(dp84212 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84213 +sg25268 +S'The Sailor and Banker' +p84214 +sg25270 +S'Thomas Rowlandson' +p84215 +sa(dp84216 +g25268 +S'La soiree du Palais Royal' +p84217 +sg25270 +S'Artist Information (' +p84218 +sg25273 +S'(artist after)' +p84219 +sg25275 +S'\n' +p84220 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096ab.jpg' +p84221 +sg25267 +g27 +sa(dp84222 +g25268 +S'The Monkey Room in the Tower' +p84223 +sg25270 +S'Thomas Rowlandson' +p84224 +sg25273 +S'hand-colored etching and aquatint' +p84225 +sg25275 +S'published 1799' +p84226 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077da.jpg' +p84227 +sg25267 +g27 +sa(dp84228 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84229 +sg25268 +S'The Horse Armory in the Tower' +p84230 +sg25270 +S'Thomas Rowlandson' +p84231 +sa(dp84232 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1803' +p84233 +sg25268 +S'Billiards' +p84234 +sg25270 +S'Thomas Rowlandson' +p84235 +sa(dp84236 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84237 +sg25268 +S"Roderick's Examination at Surgeons Hall" +p84238 +sg25270 +S'Thomas Rowlandson' +p84239 +sa(dp84240 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1800' +p84241 +sg25268 +S'Admiration' +p84242 +sg25270 +S'Thomas Rowlandson' +p84243 +sa(dp84244 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1800' +p84245 +sg25268 +S'Acute Pain' +p84246 +sg25270 +S'Thomas Rowlandson' +p84247 +sa(dp84248 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84249 +sg25268 +S'In Full Cry' +p84250 +sg25270 +S'Thomas Rowlandson' +p84251 +sa(dp84252 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84253 +sg25268 +S'Finding' +p84254 +sg25270 +S'Thomas Rowlandson' +p84255 +sa(dp84256 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84257 +sg25268 +S'Throwing Off' +p84258 +sg25270 +S'Thomas Rowlandson' +p84259 +sa(dp84260 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84261 +sg25268 +S'In at the Death' +p84262 +sg25270 +S'Thomas Rowlandson' +p84263 +sa(dp84264 +g25268 +S'Frontispiece: J.J. Rousseau' +p84265 +sg25270 +S'Artist Information (' +p84266 +sg25273 +S'(artist after)' +p84267 +sg25275 +S'\n' +p84268 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009682.jpg' +p84269 +sg25267 +g27 +sa(dp84270 +g25268 +S'Dr. Botherum, the Mountebank' +p84271 +sg25270 +S'Thomas Rowlandson' +p84272 +sg25273 +S'hand-colored etching' +p84273 +sg25275 +S'1800' +p84274 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c69.jpg' +p84275 +sg25267 +g27 +sa(dp84276 +g25268 +S"Hocus Pocus, or Searching for the Philosopher's Stone" +p84277 +sg25270 +S'Thomas Rowlandson' +p84278 +sg25273 +S'hand-colored etching and aquatint' +p84279 +sg25275 +S'published 1800' +p84280 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007785.jpg' +p84281 +sg25267 +g27 +sa(dp84282 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1800' +p84283 +sg25268 +S'Bills of Exchange' +p84284 +sg25270 +S'Thomas Rowlandson' +p84285 +sa(dp84286 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1800' +p84287 +sg25268 +S'Cash' +p84288 +sg25270 +S'Thomas Rowlandson' +p84289 +sa(dp84290 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1800' +p84291 +sg25268 +S'A Skipping Academy' +p84292 +sg25270 +S'Thomas Rowlandson' +p84293 +sa(dp84294 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1800' +p84295 +sg25268 +S'Britannias Protection. or Loyalty Triumphant' +p84296 +sg25270 +S'Thomas Rowlandson' +p84297 +sa(dp84298 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84299 +sg25268 +S'Grand Review of the Windsor Camp' +p84300 +sg25270 +S'Thomas Rowlandson' +p84301 +sa(dp84302 +g25268 +S'Downfall of Monopoly in 1800' +p84303 +sg25270 +S'Thomas Rowlandson' +p84304 +sg25273 +S'hand-colored etching' +p84305 +sg25275 +S'published 1800' +p84306 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d36.jpg' +p84307 +sg25267 +g27 +sa(dp84308 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1800' +p84309 +sg25268 +S'Battleorum, Billingsgatina, Trafficorum' +p84310 +sg25270 +S'Thomas Rowlandson' +p84311 +sa(dp84312 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1800' +p84313 +sg25268 +S'Barberorum, Flora, Lawyerorum' +p84314 +sg25270 +S'Thomas Rowlandson' +p84315 +sa(dp84316 +g25268 +S"Frontispiece: Aid\xc3\xa9 de la sagesse, on se sauve de l'amour dans les bras de la raison" +p84317 +sg25270 +S'Artist Information (' +p84318 +sg25273 +S'(artist after)' +p84319 +sg25275 +S'\n' +p84320 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fcb.jpg' +p84321 +sg25267 +g27 +sa(dp84322 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1800' +p84323 +sg25268 +S'Funeralorum, Virginia, Hazardorum' +p84324 +sg25270 +S'Thomas Rowlandson' +p84325 +sa(dp84326 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1800' +p84327 +sg25268 +S"The Dinner Spoil'd" +p84328 +sg25270 +S'Thomas Rowlandson' +p84329 +sa(dp84330 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84331 +sg25268 +S'Country Characters' +p84332 +sg25270 +S'Thomas Rowlandson' +p84333 +sa(dp84334 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84335 +sg25268 +S'The Tax-gatherer' +p84336 +sg25270 +S'Thomas Rowlandson' +p84337 +sa(dp84338 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1800' +p84339 +sg25268 +S'Late Hours!' +p84340 +sg25270 +S'Thomas Rowlandson' +p84341 +sa(dp84342 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1800' +p84343 +sg25268 +S'Steward' +p84344 +sg25270 +S'Thomas Rowlandson' +p84345 +sa(dp84346 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1800' +p84347 +sg25268 +S'An Anonymous Letter' +p84348 +sg25270 +S'Thomas Rowlandson' +p84349 +sa(dp84350 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1800' +p84351 +sg25268 +S'A Fashionable Suit' +p84352 +sg25270 +S'Thomas Rowlandson' +p84353 +sa(dp84354 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84355 +sg25268 +S'Caricature (?)' +p84356 +sg25270 +S'Thomas Rowlandson' +p84357 +sa(dp84358 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84359 +sg25268 +S'Visitors' +p84360 +sg25270 +S'Thomas Rowlandson' +p84361 +sa(dp84362 +g25268 +S'Sans rien comprendre \xc3\xa0 ce myst\xc3\xa8re' +p84363 +sg25270 +S'Artist Information (' +p84364 +sg25273 +S'(artist after)' +p84365 +sg25275 +S'\n' +p84366 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fce.jpg' +p84367 +sg25267 +g27 +sa(dp84368 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84369 +sg25268 +S'Visitors' +p84370 +sg25270 +S'Thomas Rowlandson' +p84371 +sa(dp84372 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84373 +sg25268 +S'Visitors' +p84374 +sg25270 +S'Thomas Rowlandson' +p84375 +sa(dp84376 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84377 +sg25268 +S'Visitors: The Unwelcome Visitor' +p84378 +sg25270 +S'Thomas Rowlandson' +p84379 +sa(dp84380 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84381 +sg25268 +S'Visitors: Come to Stay Visitor' +p84382 +sg25270 +S'Thomas Rowlandson' +p84383 +sa(dp84384 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84385 +sg25268 +S'Visitors: A Welcome Visitor' +p84386 +sg25270 +S'Thomas Rowlandson' +p84387 +sa(dp84388 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84389 +sg25268 +S'All Fours' +p84390 +sg25270 +S'Henry William Bunbury' +p84391 +sa(dp84392 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1801' +p84393 +sg25268 +S'The Brilliants' +p84394 +sg25270 +S'Thomas Rowlandson' +p84395 +sa(dp84396 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84397 +sg25268 +S"Undertakers Regaling Themselves at Death's Door" +p84398 +sg25270 +S'Samuel Rawle' +p84399 +sa(dp84400 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1801' +p84401 +sg25268 +S'Undertakers Regaling' +p84402 +sg25270 +S'Thomas Rowlandson' +p84403 +sa(dp84404 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1800' +p84405 +sg25268 +S'The Sculptor: Preparation for the Academy, Old Joseph Nollekens and His Venus' +p84406 +sg25270 +S'Thomas Rowlandson' +p84407 +sa(dp84408 +g25268 +S'La provocation' +p84409 +sg25270 +S'Artist Information (' +p84410 +sg25273 +S'(artist after)' +p84411 +sg25275 +S'\n' +p84412 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fd0.jpg' +p84413 +sg25267 +g27 +sa(dp84414 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1801' +p84415 +sg25268 +S'Single Combat, in Moorfields, or Magnanimous Paul O! Challenging All O!' +p84416 +sg25270 +S'Thomas Rowlandson' +p84417 +sa(dp84418 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1801' +p84419 +sg25268 +S'A Money Scrivener' +p84420 +sg25270 +S'Thomas Rowlandson' +p84421 +sa(dp84422 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1801' +p84423 +sg25268 +S'A Counciller' +p84424 +sg25270 +S'Thomas Rowlandson' +p84425 +sa(dp84426 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84427 +sg25268 +S'Symptoms of Sanctity' +p84428 +sg25270 +S'Thomas Rowlandson' +p84429 +sa(dp84430 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1801' +p84431 +sg25268 +S'Symptoms of Sanctity' +p84432 +sg25270 +S'Thomas Rowlandson' +p84433 +sa(dp84434 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1801' +p84435 +sg25268 +S"The Jockey's Prayer" +p84436 +sg25270 +S'Thomas Rowlandson' +p84437 +sa(dp84438 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1801' +p84439 +sg25268 +S"The Lottery Office Keeper's Prayer" +p84440 +sg25270 +S'Thomas Rowlandson' +p84441 +sa(dp84442 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1801' +p84443 +sg25268 +S"The Old Maid's Prayer" +p84444 +sg25270 +S'Thomas Rowlandson' +p84445 +sa(dp84446 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1801' +p84447 +sg25268 +S"The Epicure's Prayer" +p84448 +sg25270 +S'Thomas Rowlandson' +p84449 +sa(dp84450 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1801' +p84451 +sg25268 +S"The Widow's Prayer" +p84452 +sg25270 +S'Thomas Rowlandson' +p84453 +sa(dp84454 +g25268 +S'Le soufflet' +p84455 +sg25270 +S'Artist Information (' +p84456 +sg25273 +S'(artist after)' +p84457 +sg25275 +S'\n' +p84458 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fd4.jpg' +p84459 +sg25267 +g27 +sa(dp84460 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1801' +p84461 +sg25268 +S"The Maid of All-work's Prayer" +p84462 +sg25270 +S'Thomas Rowlandson' +p84463 +sa(dp84464 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1801' +p84465 +sg25268 +S"The Female Gambler's Prayer" +p84466 +sg25270 +S'Thomas Rowlandson' +p84467 +sa(dp84468 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1801' +p84469 +sg25268 +S"The Actress' Prayer" +p84470 +sg25270 +S'Thomas Rowlandson' +p84471 +sa(dp84472 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1801' +p84473 +sg25268 +S"The Sailor's Prayer" +p84474 +sg25270 +S'Thomas Rowlandson' +p84475 +sa(dp84476 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1801' +p84477 +sg25268 +S"Poll of Plymouth's Prayer" +p84478 +sg25270 +S'Thomas Rowlandson' +p84479 +sa(dp84480 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1801' +p84481 +sg25268 +S"The Cook's Prayer" +p84482 +sg25270 +S'Thomas Rowlandson' +p84483 +sa(dp84484 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1797' +p84485 +sg25268 +S'A Theatrical Candidate' +p84486 +sg25270 +S'Thomas Rowlandson' +p84487 +sa(dp84488 +g25268 +S'Odd-Characters' +p84489 +sg25270 +S'Thomas Rowlandson' +p84490 +sg25273 +S'hand-colored etching' +p84491 +sg25275 +S'published 1801' +p84492 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d45.jpg' +p84493 +sg25267 +g27 +sa(dp84494 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84495 +sg25268 +S'Public Characters' +p84496 +sg25270 +S'Thomas Rowlandson' +p84497 +sa(dp84498 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1806' +p84499 +sg25268 +S'A Driving Machine on a New Construction' +p84500 +sg25270 +S'Thomas Rowlandson' +p84501 +sa(dp84502 +g25268 +S'Ah! Jeune homme \xc3\xa0 ton bienfaiteur' +p84503 +sg25270 +S'Artist Information (' +p84504 +sg25273 +S'(artist after)' +p84505 +sg25275 +S'\n' +p84506 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fd3.jpg' +p84507 +sg25267 +g27 +sa(dp84508 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1812' +p84509 +sg25268 +S'Preaching to Some Purpose' +p84510 +sg25270 +S'Thomas Rowlandson' +p84511 +sa(dp84512 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84513 +sg25268 +S'Market Place at Cambridge' +p84514 +sg25270 +S'Thomas Rowlandson' +p84515 +sa(dp84516 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84517 +sg25268 +S'View of the Interior of Simon Ward, alias St. Brenner Church' +p84518 +sg25270 +S'Thomas Rowlandson' +p84519 +sa(dp84520 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1801' +p84521 +sg25268 +S'Gig Hauling, or Gentlemanly Amusement for the Nineteenth Century' +p84522 +sg25270 +S'Thomas Rowlandson' +p84523 +sa(dp84524 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84525 +sg25268 +S'Walking Sticks and Round Aoubts for the Year 1801' +p84526 +sg25270 +S'Thomas Rowlandson' +p84527 +sa(dp84528 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1801' +p84529 +sg25268 +S'Light Summer Hat and Fashionable Walking Sticks for the Year 1801' +p84530 +sg25270 +S'Thomas Rowlandson' +p84531 +sa(dp84532 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84533 +sg25268 +S'Peace, John Bull in the Year 1801' +p84534 +sg25270 +S'Thomas Rowlandson' +p84535 +sa(dp84536 +g25268 +S'The Lawyers Last Circuit' +p84537 +sg25270 +S'Thomas Rowlandson' +p84538 +sg25273 +S'hand-colored etching and aquatint' +p84539 +sg25275 +S'published 1802' +p84540 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077c8.jpg' +p84541 +sg25267 +g27 +sa(dp84542 +g25268 +S'One Tree Hill, Greenwich Park' +p84543 +sg25270 +S'Thomas Rowlandson' +p84544 +sg25273 +S'hand-colored etching' +p84545 +sg25275 +S'1802' +p84546 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077d4.jpg' +p84547 +sg25267 +g27 +sa(dp84548 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84549 +sg25268 +S'Gaffers at a Country Fair' +p84550 +sg25270 +S'Thomas Rowlandson' +p84551 +sa(dp84552 +g25268 +S'Saint-Preux sort de chez des femmes du monde' +p84553 +sg25270 +S'Artist Information (' +p84554 +sg25273 +S'(artist after)' +p84555 +sg25275 +S'\n' +p84556 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fdf.jpg' +p84557 +sg25267 +g27 +sa(dp84558 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84559 +sg25268 +S'Doncaster Fair, or The Industrious Yorkshirebites' +p84560 +sg25270 +S'Thomas Rowlandson' +p84561 +sa(dp84562 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p84563 +sg25268 +S'Odd Fellows from Downing Street Complaining to John Bull' +p84564 +sg25270 +S'Thomas Rowlandson' +p84565 +sa(dp84566 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1810' +p84567 +sg25268 +S'The Rabbit Merchant' +p84568 +sg25270 +S'Thomas Rowlandson' +p84569 +sa(dp84570 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84571 +sg25268 +S'A Snip in a Rage' +p84572 +sg25270 +S'Thomas Rowlandson' +p84573 +sa(dp84574 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84575 +sg25268 +S'Mrs. Siddons' +p84576 +sg25270 +S'Thomas Rowlandson' +p84577 +sa(dp84578 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1802' +p84579 +sg25268 +S"A Parish Officer's Journal" +p84580 +sg25270 +S'Thomas Rowlandson' +p84581 +sa(dp84582 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1802' +p84583 +sg25268 +S"The Sailor's Journal" +p84584 +sg25270 +S'Thomas Rowlandson' +p84585 +sa(dp84586 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1802' +p84587 +sg25268 +S"A Woman of Fashion's Journal" +p84588 +sg25270 +S'Thomas Rowlandson' +p84589 +sa(dp84590 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1802' +p84591 +sg25268 +S"A Man of Fashion's Journal" +p84592 +sg25270 +S'Thomas Rowlandson' +p84593 +sa(dp84594 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1802' +p84595 +sg25268 +S'Sly-Boots' +p84596 +sg25270 +S'Thomas Rowlandson' +p84597 +sa(dp84598 +g25268 +S"L'inoculation de l'amour" +p84599 +sg25270 +S'Artist Information (' +p84600 +sg25273 +S'(artist after)' +p84601 +sg25275 +S'\n' +p84602 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fdc.jpg' +p84603 +sg25267 +g27 +sa(dp84604 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84605 +sg25268 +S'The Funeral (?)' +p84606 +sg25270 +S'Thomas Rowlandson' +p84607 +sa(dp84608 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84609 +sg25268 +S'The Trumpet and the Bassoon' +p84610 +sg25270 +S'Thomas Rowlandson' +p84611 +sa(dp84612 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84613 +sg25268 +S'Love in a Tub' +p84614 +sg25270 +S'Thomas Rowlandson' +p84615 +sa(dp84616 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1801' +p84617 +sg25268 +S'An Old Member on His Road to Ye House of Commons' +p84618 +sg25270 +S'Thomas Rowlandson' +p84619 +sa(dp84620 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84621 +sg25268 +S"View of Otter's Pool near Watford, Herts" +p84622 +sg25270 +S'Thomas Rowlandson' +p84623 +sa(dp84624 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84625 +sg25268 +S'The Poacher (?)' +p84626 +sg25270 +S'Thomas Rowlandson' +p84627 +sa(dp84628 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84629 +sg25268 +S'The Monstrous Craw, or A New-Discovered Animal' +p84630 +sg25270 +S'Thomas Rowlandson' +p84631 +sa(dp84632 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84633 +sg25268 +S'Polygamy' +p84634 +sg25270 +S'Thomas Rowlandson' +p84635 +sa(dp84636 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84637 +sg25268 +S'Rotten Row; Antiquarians; Blackwall Assembly; Pantomine; Matrimony; Mother Breedwel; Recruits; Shuttlecock; A Duel' +p84638 +sg25270 +S'Thomas Rowlandson' +p84639 +sa(dp84640 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1806' +p84641 +sg25268 +S'The Country Club' +p84642 +sg25270 +S'Thomas Rowlandson' +p84643 +sa(dp84644 +g25268 +S'La confiance des belles \xc3\xa2mes' +p84645 +sg25270 +S'Artist Information (' +p84646 +sg25273 +S'(artist after)' +p84647 +sg25275 +S'\n' +p84648 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fe6.jpg' +p84649 +sg25267 +g27 +sa(dp84650 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84651 +sg25268 +S'Quaker in Love' +p84652 +sg25270 +S'Thomas Rowlandson' +p84653 +sa(dp84654 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84655 +sg25268 +S'Britannia Blowing up the Corsican Bottle Conjurer' +p84656 +sg25270 +S'Thomas Rowlandson' +p84657 +sa(dp84658 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84659 +sg25268 +S'A Great Man on His Hobby Horse' +p84660 +sg25270 +S'Thomas Rowlandson' +p84661 +sa(dp84662 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1804' +p84663 +sg25268 +S'Melpomene in the Dumps' +p84664 +sg25270 +S'Thomas Rowlandson' +p84665 +sa(dp84666 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1805' +p84667 +sg25268 +S'The Famous Coal Heaver Black Charley' +p84668 +sg25270 +S'Thomas Rowlandson' +p84669 +sa(dp84670 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1803' +p84671 +sg25268 +S'John Bull Listening to the Quarrels of State Affairs' +p84672 +sg25270 +S'Thomas Rowlandson' +p84673 +sa(dp84674 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1803' +p84675 +sg25268 +S'Flags of Truth and Lies' +p84676 +sg25270 +S'Thomas Rowlandson' +p84677 +sa(dp84678 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p84679 +sg25268 +S'The Successful Fortune Hunter' +p84680 +sg25270 +S'Thomas Rowlandson' +p84681 +sa(dp84682 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p84683 +sg25268 +S'A Trip to Gretna Green' +p84684 +sg25270 +S'Thomas Rowlandson' +p84685 +sa(dp84686 +g25268 +S'Running' +p84687 +sg25270 +S'Artist Information (' +p84688 +sg25273 +S'(artist after)' +p84689 +sg25275 +S'\n' +p84690 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007ca3.jpg' +p84691 +sg25267 +g27 +sa(dp84692 +g25268 +S'La barque' +p84693 +sg25270 +S'Artist Information (' +p84694 +sg25273 +S'(artist after)' +p84695 +sg25275 +S'\n' +p84696 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fdd.jpg' +p84697 +sg25267 +g27 +sa(dp84698 +g25268 +S'Running' +p84699 +sg25270 +S'Artist Information (' +p84700 +sg25273 +S'(artist after)' +p84701 +sg25275 +S'\n' +p84702 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c79.jpg' +p84703 +sg25267 +g27 +sa(dp84704 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84705 +sg25268 +S'A Cat in Pattens' +p84706 +sg25270 +S'Thomas Rowlandson' +p84707 +sa(dp84708 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1803' +p84709 +sg25268 +S'Ducking a Scold' +p84710 +sg25270 +S'Thomas Rowlandson' +p84711 +sa(dp84712 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1804' +p84713 +sg25268 +S'Light Infantry Volunteers on a March' +p84714 +sg25270 +S'Thomas Rowlandson' +p84715 +sa(dp84716 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p84717 +sg25268 +S'Bitter Fare, or Sweeps Regaling' +p84718 +sg25270 +S'Thomas Rowlandson' +p84719 +sa(dp84720 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1813' +p84721 +sg25268 +S'Witches in a Hay Loft' +p84722 +sg25270 +S'Thomas Rowlandson' +p84723 +sa(dp84724 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84725 +sg25268 +S'Setting Out for Margate' +p84726 +sg25270 +S'Thomas Rowlandson' +p84727 +sa(dp84728 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84729 +sg25268 +S'The Consular Family on their Last Journey' +p84730 +sg25270 +S'Thomas Rowlandson' +p84731 +sa(dp84732 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1805' +p84733 +sg25268 +S'The Departure from the Coast, or The End of the Farce of Invasion' +p84734 +sg25270 +S'Thomas Rowlandson' +p84735 +sa(dp84736 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1802' +p84737 +sg25268 +S"Who's Mistress Now" +p84738 +sg25270 +S'Thomas Rowlandson' +p84739 +sa(dp84740 +g25268 +S'Il appliqua sur cette main un baiser que je sentis sur mon coeur' +p84741 +sg25270 +S'Artist Information (' +p84742 +sg25273 +S'(artist after)' +p84743 +sg25275 +S'\n' +p84744 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fe1.jpg' +p84745 +sg25267 +g27 +sa(dp84746 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1805' +p84747 +sg25268 +S'Quarterly Dunns, or Clamorous Tax Gatherers' +p84748 +sg25270 +S'Thomas Rowlandson' +p84749 +sa(dp84750 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84751 +sg25268 +S'Bone and Skin - Two Millers Thin' +p84752 +sg25270 +S'Thomas Rowlandson' +p84753 +sa(dp84754 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1805' +p84755 +sg25268 +S"John Bull's Turnpike Gate" +p84756 +sg25270 +S'Thomas Rowlandson' +p84757 +sa(dp84758 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1815' +p84759 +sg25268 +S'Measuring Substitutes for the Army of Reserve' +p84760 +sg25270 +S'Thomas Rowlandson' +p84761 +sa(dp84762 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84763 +sg25268 +S'A Cottage in Cornwall' +p84764 +sg25270 +S'Thomas Rowlandson' +p84765 +sa(dp84766 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84767 +sg25268 +S'A Watercourse' +p84768 +sg25270 +S'Thomas Rowlandson' +p84769 +sa(dp84770 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p84771 +sg25268 +S'Raising the Wind' +p84772 +sg25270 +S'Thomas Rowlandson' +p84773 +sa(dp84774 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1805' +p84775 +sg25268 +S'John Bull at the Italian Opera' +p84776 +sg25270 +S'Thomas Rowlandson' +p84777 +sa(dp84778 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1799' +p84779 +sg25268 +S'The Nursery' +p84780 +sg25270 +S'Thomas Rowlandson' +p84781 +sa(dp84782 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p84783 +sg25268 +S'A View on the Banks of the Thames' +p84784 +sg25270 +S'Thomas Rowlandson' +p84785 +sa(dp84786 +g25268 +S"Elle s'\xc3\xa9lance apr\xc3\xa8s lui" +p84787 +sg25270 +S'Artist Information (' +p84788 +sg25273 +S'(artist after)' +p84789 +sg25275 +S'\n' +p84790 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fe2.jpg' +p84791 +sg25267 +g27 +sa(dp84792 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p84793 +sg25268 +S'The Secret History of Crim Con' +p84794 +sg25270 +S'Thomas Rowlandson' +p84795 +sa(dp84796 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p84797 +sg25268 +S'The Secret History of Crim Con' +p84798 +sg25270 +S'Thomas Rowlandson' +p84799 +sa(dp84800 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84801 +sg25268 +S'Explanation of the Arms of Napoleon Bonaparte' +p84802 +sg25270 +S'Thomas Rowlandson' +p84803 +sa(dp84804 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84805 +sg25268 +S'Explanation of the Arms AND Supporters of Napoleon Bonaparte' +p84806 +sg25270 +S'Thomas Rowlandson' +p84807 +sa(dp84808 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84809 +sg25268 +S'General Sans Pareil' +p84810 +sg25270 +S'Thomas Rowlandson' +p84811 +sa(dp84812 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84813 +sg25268 +S'Memoirs of Buonaparte' +p84814 +sg25270 +S'Thomas Rowlandson' +p84815 +sa(dp84816 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1806' +p84817 +sg25268 +S'Experiments at Dover' +p84818 +sg25270 +S'Thomas Rowlandson' +p84819 +sa(dp84820 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84821 +sg25268 +S'Napoleon' +p84822 +sg25270 +S'Thomas Rowlandson' +p84823 +sa(dp84824 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84825 +sg25268 +S'The Polar Star' +p84826 +sg25270 +S'Thomas Rowlandson' +p84827 +sa(dp84828 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1812' +p84829 +sg25268 +S'Glow Worms, Muck Worms' +p84830 +sg25270 +S'Thomas Rowlandson' +p84831 +sa(dp84832 +g25268 +S"Julie s'\xc3\xa9vanouit dans un fauteuil" +p84833 +sg25270 +S'Artist Information (' +p84834 +sg25273 +S'(artist after)' +p84835 +sg25275 +S'\n' +p84836 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008ff1.jpg' +p84837 +sg25267 +g27 +sa(dp84838 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1805' +p84839 +sg25268 +S'Recovery of a Dormant Title, or A Breecher Maker becomes a Lord' +p84840 +sg25270 +S'Thomas Rowlandson' +p84841 +sa(dp84842 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84843 +sg25268 +S'Refinement of Language' +p84844 +sg25270 +S'Thomas Rowlandson' +p84845 +sa(dp84846 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p84847 +sg25268 +S'Bacon Faced Fellows of Brazen Nose, Broke Loose' +p84848 +sg25270 +S'Thomas Rowlandson' +p84849 +sa(dp84850 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p84851 +sg25268 +S'At Fault, Double and Squat' +p84852 +sg25270 +S'Thomas Rowlandson' +p84853 +sa(dp84854 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p84855 +sg25268 +S'The Second Escape, The Seizure' +p84856 +sg25270 +S'Thomas Rowlandson' +p84857 +sa(dp84858 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p84859 +sg25268 +S'Hounds' +p84860 +sg25270 +S'Thomas Rowlandson' +p84861 +sa(dp84862 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p84863 +sg25268 +S'Game Wigs' +p84864 +sg25270 +S'Thomas Rowlandson' +p84865 +sa(dp84866 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p84867 +sg25268 +S'How a Man May Shoot His own Wig' +p84868 +sg25270 +S'Thomas Rowlandson' +p84869 +sa(dp84870 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p84871 +sg25268 +S'Costume of Hogs Norton' +p84872 +sg25270 +S'Thomas Rowlandson' +p84873 +sa(dp84874 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p84875 +sg25268 +S'Mr. Benjamin Buckskin and his horse performing evolutions within the Circumference of a Circle' +p84876 +sg25270 +S'Thomas Rowlandson' +p84877 +sa(dp84878 +g25268 +S'Mort de Julie' +p84879 +sg25270 +S'Artist Information (' +p84880 +sg25273 +S'(artist after)' +p84881 +sg25275 +S'\n' +p84882 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fe9.jpg' +p84883 +sg25267 +g27 +sa(dp84884 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p84885 +sg25268 +S'Mr. Robert Rasp, letting fall a perpendicular from his Saddle' +p84886 +sg25270 +S'Thomas Rowlandson' +p84887 +sa(dp84888 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p84889 +sg25268 +S'Mr. Ralph Marrowbone forming an obtuse Angle' +p84890 +sg25270 +S'Thomas Rowlandson' +p84891 +sa(dp84892 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p84893 +sg25268 +S'Tom Timorous forming an Acute Angle' +p84894 +sg25270 +S'Thomas Rowlandson' +p84895 +sa(dp84896 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p84897 +sg25268 +S'Dicky Diaper, forming a Right Angle' +p84898 +sg25270 +S'Thomas Rowlandson' +p84899 +sa(dp84900 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p84901 +sg25268 +S'How to Vault from the Saddle' +p84902 +sg25270 +S'Thomas Rowlandson' +p84903 +sa(dp84904 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p84905 +sg25268 +S'Title Page' +p84906 +sg25270 +S'Thomas Rowlandson' +p84907 +sa(dp84908 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p84909 +sg25268 +S'Caleb Quizem' +p84910 +sg25270 +S'Thomas Rowlandson' +p84911 +sa(dp84912 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p84913 +sg25268 +S"Fashionable Furniture at Hog's Norton: No. 1" +p84914 +sg25270 +S'Thomas Rowlandson' +p84915 +sa(dp84916 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p84917 +sg25268 +S"Fashionable Furniture at Hog's Norton: No. 2" +p84918 +sg25270 +S'Thomas Rowlandson' +p84919 +sa(dp84920 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p84921 +sg25268 +S'Tobias Slender forming a Diameter' +p84922 +sg25270 +S'Thomas Rowlandson' +p84923 +sa(dp84924 +g25268 +S'Voil\xc3\xa0 la r\xc3\xa8gle de la nature, pourquoi la contrariez-vous?' +p84925 +sg25270 +S'Artist Information (' +p84926 +sg25273 +S'(artist after)' +p84927 +sg25275 +S'\n' +p84928 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fea.jpg' +p84929 +sg25267 +g27 +sa(dp84930 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p84931 +sg25268 +S'The True Method of Sitting a Horse Mathematically Deliniated' +p84932 +sg25270 +S'Thomas Rowlandson' +p84933 +sa(dp84934 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p84935 +sg25268 +S'Easter Monday, or The Cockney Hunt' +p84936 +sg25270 +S'Thomas Rowlandson' +p84937 +sa(dp84938 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84939 +sg25268 +S'Miseries. Domestic' +p84940 +sg25270 +S'Thomas Rowlandson' +p84941 +sa(dp84942 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84943 +sg25268 +S'Ladies Trading on their own Bottom' +p84944 +sg25270 +S'Thomas Rowlandson' +p84945 +sa(dp84946 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84947 +sg25268 +S'Connoisseurs' +p84948 +sg25270 +S'Thomas Rowlandson' +p84949 +sa(dp84950 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1799' +p84951 +sg25268 +S'Connoisseurs' +p84952 +sg25270 +S'Thomas Rowlandson' +p84953 +sa(dp84954 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p84955 +sg25268 +S'The Ambassador of Morocco on a Special Embassy' +p84956 +sg25270 +S'Thomas Rowlandson' +p84957 +sa(dp84958 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1807' +p84959 +sg25268 +S"More Miseries, or The Bottom of Mr. Figg's Old Whiskey Broke Through" +p84960 +sg25270 +S'Thomas Rowlandson' +p84961 +sa(dp84962 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1800' +p84963 +sg25268 +S'A Ghost in the Wine Cellar' +p84964 +sg25270 +S'Thomas Rowlandson' +p84965 +sa(dp84966 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1812' +p84967 +sg25268 +S'The Rivals' +p84968 +sg25270 +S'Thomas Rowlandson' +p84969 +sa(dp84970 +g25268 +S'Chacun respecte le travail des autres, afin que le sein soit en s\xc3\xbbret\xc3\xa9' +p84971 +sg25270 +S'Artist Information (' +p84972 +sg25273 +S'(artist after)' +p84973 +sg25275 +S'\n' +p84974 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008feb.jpg' +p84975 +sg25267 +g27 +sa(dp84976 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p84977 +sg25268 +S'Title Page' +p84978 +sg25270 +S'Thomas Rowlandson' +p84979 +sa(dp84980 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84981 +sg25268 +S'Miseries of Traveling' +p84982 +sg25270 +S'Thomas Rowlandson' +p84983 +sa(dp84984 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p84985 +sg25268 +S'More Miseries - Sending a Challange' +p84986 +sg25270 +S'Thomas Rowlandson' +p84987 +sa(dp84988 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p84989 +sg25268 +S'Miseries of Traveling - Starting for a Long Ride' +p84990 +sg25270 +S'Thomas Rowlandson' +p84991 +sa(dp84992 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84993 +sg25268 +S'Miseries' +p84994 +sg25270 +S'Thomas Rowlandson' +p84995 +sa(dp84996 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p84997 +sg25268 +S'Miseries' +p84998 +sg25270 +S'Thomas Rowlandson' +p84999 +sa(dp85000 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p85001 +sg25268 +S'Miseries of Traveling - O Miserabile mihi' +p85002 +sg25270 +S'Thomas Rowlandson' +p85003 +sa(dp85004 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1815' +p85005 +sg25268 +S'An Eating House' +p85006 +sg25270 +S'Thomas Rowlandson' +p85007 +sa(dp85008 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85009 +sg25268 +S'Miseries (?) Sunday Evening' +p85010 +sg25270 +S'Thomas Rowlandson' +p85011 +sa(dp85012 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85013 +sg25268 +S'Miseries (?) Poste Royale' +p85014 +sg25270 +S'Thomas Rowlandson' +p85015 +sa(dp85016 +g25268 +S"Piqu\xc3\xa9 de ma raillerie, il s'\xc3\xa9vertue et remporte le prix" +p85017 +sg25270 +S'Artist Information (' +p85018 +sg25273 +S'(artist after)' +p85019 +sg25275 +S'\n' +p85020 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fef.jpg' +p85021 +sg25267 +g27 +sa(dp85022 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p85023 +sg25268 +S'More Miseries. Being Nervous and Cross examined by Mr. Garrow' +p85024 +sg25270 +S'Thomas Rowlandson' +p85025 +sa(dp85026 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p85027 +sg25268 +S'Miseries of Public Places - After the Play' +p85028 +sg25270 +S'Thomas Rowlandson' +p85029 +sa(dp85030 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p85031 +sg25268 +S'Miseries Miscellaneous - The Necessity of Sending a Verbal Message' +p85032 +sg25270 +S'Thomas Rowlandson' +p85033 +sa(dp85034 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p85035 +sg25268 +S'More Miseries - Being over persuaded' +p85036 +sg25270 +S'Thomas Rowlandson' +p85037 +sa(dp85038 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85039 +sg25268 +S'Miseries (?) How to Lose your Way' +p85040 +sg25270 +S'Thomas Rowlandson' +p85041 +sa(dp85042 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85043 +sg25268 +S'Miseries - Dancing Bear' +p85044 +sg25270 +S'Thomas Rowlandson' +p85045 +sa(dp85046 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p85047 +sg25268 +S'Miseries Domestic - Squatting plump on an unsuspectected cat' +p85048 +sg25270 +S'Thomas Rowlandson' +p85049 +sa(dp85050 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p85051 +sg25268 +S'Miseries Personal - When in the Gout' +p85052 +sg25270 +S'Thomas Rowlandson' +p85053 +sa(dp85054 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p85055 +sg25268 +S'Miseries of the Table - Inviting a friend' +p85056 +sg25270 +S'Thomas Rowlandson' +p85057 +sa(dp85058 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p85059 +sg25268 +S'Miseries of Reading and Writing - As you are writing' +p85060 +sg25270 +S'Thomas Rowlandson' +p85061 +sa(dp85062 +g25268 +S"Courons v\xc3\xaete: l'astronomie est bonne \xc3\xa0 quelque chose" +p85063 +sg25270 +S'Artist Information (' +p85064 +sg25273 +S'(artist after)' +p85065 +sg25275 +S'\n' +p85066 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008ff3.jpg' +p85067 +sg25267 +g27 +sa(dp85068 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p85069 +sg25268 +S'Miseries of Social Life - Sitting for hours before a smokey Chimney' +p85070 +sg25270 +S'Thomas Rowlandson' +p85071 +sa(dp85072 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p85073 +sg25268 +S'Pall Mall' +p85074 +sg25270 +S'Thomas Rowlandson' +p85075 +sa(dp85076 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p85077 +sg25268 +S'More Miseries - Having made a newly-rolled gravel walk' +p85078 +sg25270 +S'Thomas Rowlandson' +p85079 +sa(dp85080 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p85081 +sg25268 +S'More Miseries - Being pinned up to a door' +p85082 +sg25270 +S'Thomas Rowlandson' +p85083 +sa(dp85084 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1806' +p85085 +sg25268 +S'Miseries of the Country - Losing your way' +p85086 +sg25270 +S'Thomas Rowlandson' +p85087 +sa(dp85088 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85089 +sg25268 +S'Miseries of the Country - Following on horseback' +p85090 +sg25270 +S'Thomas Rowlandson' +p85091 +sa(dp85092 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p85093 +sg25268 +S'More Miseries - In the country' +p85094 +sg25270 +S'Thomas Rowlandson' +p85095 +sa(dp85096 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p85097 +sg25268 +S'Fabricious Description of the Poets' +p85098 +sg25270 +S'Thomas Rowlandson' +p85099 +sa(dp85100 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85101 +sg25268 +S'Cold Broth and Calamity' +p85102 +sg25270 +S'Thomas Rowlandson' +p85103 +sa(dp85104 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85105 +sg25268 +S'The Shaver and the Shavee' +p85106 +sg25270 +S'Thomas Rowlandson' +p85107 +sa(dp85108 +g25268 +S'La nature \xc3\xa9taloit \xc3\xa0 nos yeaux toute sa magnificence' +p85109 +sg25270 +S'Artist Information (' +p85110 +sg25273 +S'(artist after)' +p85111 +sg25275 +S'\n' +p85112 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fe8.jpg' +p85113 +sg25267 +g27 +sa(dp85114 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85115 +sg25268 +S"Ackermann's Repository of the Arts" +p85116 +sg25270 +S'Thomas Rowlandson' +p85117 +sa(dp85118 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85119 +sg25268 +S"Polito's Royal Menagerie - Exeter Change Strand" +p85120 +sg25270 +S'Thomas Rowlandson' +p85121 +sa(dp85122 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85123 +sg25268 +S'German Luxury' +p85124 +sg25270 +S'Thomas Rowlandson' +p85125 +sa(dp85126 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85127 +sg25268 +S'How to Stop a Horse at Pleasure' +p85128 +sg25270 +S'Thomas Rowlandson' +p85129 +sa(dp85130 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85131 +sg25268 +S'Billiards' +p85132 +sg25270 +S'Thomas Rowlandson' +p85133 +sa(dp85134 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1803' +p85135 +sg25268 +S'Richmond Hill' +p85136 +sg25270 +S'Thomas Rowlandson' +p85137 +sa(dp85138 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1806' +p85139 +sg25268 +S'A Cake in Danger' +p85140 +sg25270 +S'Thomas Rowlandson' +p85141 +sa(dp85142 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1806' +p85143 +sg25268 +S'A Cake in Danger' +p85144 +sg25270 +S'Thomas Rowlandson' +p85145 +sa(dp85146 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85147 +sg25268 +S'The Political Butcher' +p85148 +sg25270 +S'Thomas Rowlandson' +p85149 +sa(dp85150 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85151 +sg25268 +S'The Rook and the Pigeon' +p85152 +sg25270 +S'Thomas Rowlandson' +p85153 +sa(dp85154 +g25268 +S'Un violent exercice \xc3\xa9touffe les sentimens tendres' +p85155 +sg25270 +S'Artist Information (' +p85156 +sg25273 +S'(artist after)' +p85157 +sg25275 +S'\n' +p85158 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008ffb.jpg' +p85159 +sg25267 +g27 +sa(dp85160 +g25273 +S'(artist after)' +p85161 +sg25267 +g27 +sg25275 +S'\n' +p85162 +sg25268 +S'A Stable' +p85163 +sg25270 +S'Artist Information (' +p85164 +sa(dp85165 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1787' +p85166 +sg25268 +S'Embarking from Brighthelmstone to Dieppe' +p85167 +sg25270 +S'Thomas Rowlandson' +p85168 +sa(dp85169 +g25273 +S'bound vol: original contents: 196 etchings and engravings, some prints being removed from the volume; see separate entries for current locations' +p85170 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85171 +sg25268 +S'Caricatures (volume II)' +p85172 +sg25270 +S'Thomas Rowlandson' +p85173 +sa(dp85174 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1787' +p85175 +sg25268 +S'Embarking from Brighthelmstone to Dieppe' +p85176 +sg25270 +S'Thomas Rowlandson' +p85177 +sa(dp85178 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85179 +sg25268 +S'Cottage in Cornwall (?)' +p85180 +sg25270 +S'Thomas Rowlandson' +p85181 +sa(dp85182 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85183 +sg25268 +S'Cottage in Cornwall' +p85184 +sg25270 +S'Thomas Rowlandson' +p85185 +sa(dp85186 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85187 +sg25268 +S'Hare Hunting (?)' +p85188 +sg25270 +S'Samuel Howitt' +p85189 +sa(dp85190 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85191 +sg25268 +S'Fox Hunting; The Death' +p85192 +sg25270 +S'Samuel Howitt' +p85193 +sa(dp85194 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85195 +sg25268 +S'Stags Drinking' +p85196 +sg25270 +S'Samuel Howitt' +p85197 +sa(dp85198 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85199 +sg25268 +S'Deer and Stags' +p85200 +sg25270 +S'Samuel Howitt' +p85201 +sa(dp85202 +g25268 +S'Les fol\xc3\xa2tres jeux sont les premiers cuisiniers du monde' +p85203 +sg25270 +S'Artist Information (' +p85204 +sg25273 +S'(artist after)' +p85205 +sg25275 +S'\n' +p85206 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fff.jpg' +p85207 +sg25267 +g27 +sa(dp85208 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85209 +sg25268 +S'Deer' +p85210 +sg25270 +S'Samuel Howitt' +p85211 +sa(dp85212 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85213 +sg25268 +S'Stags Grazing' +p85214 +sg25270 +S'Samuel Howitt' +p85215 +sa(dp85216 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85217 +sg25268 +S'Stag Hunting' +p85218 +sg25270 +S'Samuel Howitt' +p85219 +sa(dp85220 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85221 +sg25268 +S'The Waterfall' +p85222 +sg25270 +S'Samuel Howitt' +p85223 +sa(dp85224 +g25268 +S'Dressing for a Birthday' +p85225 +sg25270 +S'Thomas Rowlandson' +p85226 +sg25273 +S'hand-colored etching' +p85227 +sg25275 +S'1788' +p85228 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007765.jpg' +p85229 +sg25267 +g27 +sa(dp85230 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85231 +sg25268 +S'Dressing for the Birthday' +p85232 +sg25270 +S'Thomas Rowlandson' +p85233 +sa(dp85234 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85235 +sg25268 +S'Landscape' +p85236 +sg25270 +S'Thomas Rowlandson' +p85237 +sa(dp85238 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85239 +sg25268 +S'The Country Book Club' +p85240 +sg25270 +S'Thomas Rowlandson' +p85241 +sa(dp85242 +g25268 +S'A Frenchman in November' +p85243 +sg25270 +S'Thomas Rowlandson' +p85244 +sg25273 +S'hand-colored etching' +p85245 +sg25275 +S'1788' +p85246 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077c2.jpg' +p85247 +sg25267 +g27 +sa(dp85248 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85249 +sg25268 +S'A Concert' +p85250 +sg25270 +S'Thomas Rowlandson' +p85251 +sa(dp85252 +g25268 +S'Sophie remettez-vous' +p85253 +sg25270 +S'Artist Information (' +p85254 +sg25273 +S'(artist after)' +p85255 +sg25275 +S'\n' +p85256 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008ffc.jpg' +p85257 +sg25267 +g27 +sa(dp85258 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1788' +p85259 +sg25268 +S'An Englishman in November' +p85260 +sg25270 +S'Thomas Rowlandson' +p85261 +sa(dp85262 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85263 +sg25268 +S'Werter (?)' +p85264 +sg25270 +S'Thomas Rowlandson' +p85265 +sa(dp85266 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85267 +sg25268 +S'False Courage' +p85268 +sg25270 +S'Thomas Rowlandson' +p85269 +sa(dp85270 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1788' +p85271 +sg25268 +S'Blue and Buf Loyalty' +p85272 +sg25270 +S'Thomas Rowlandson' +p85273 +sa(dp85274 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85275 +sg25268 +S'Love and Poverty' +p85276 +sg25270 +S'Thomas Rowlandson' +p85277 +sa(dp85278 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85279 +sg25268 +S'Scavengers' +p85280 +sg25270 +S'Thomas Rowlandson' +p85281 +sa(dp85282 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1788' +p85283 +sg25268 +S'A Fencing Match' +p85284 +sg25270 +S'Thomas Rowlandson' +p85285 +sa(dp85286 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1788' +p85287 +sg25268 +S'A Print Sale' +p85288 +sg25270 +S'Thomas Rowlandson' +p85289 +sa(dp85290 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85291 +sg25268 +S'Dolphin Inn' +p85292 +sg25270 +S'Thomas Rowlandson' +p85293 +sa(dp85294 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1788' +p85295 +sg25268 +S'A Print Sale' +p85296 +sg25270 +S'Thomas Rowlandson' +p85297 +sa(dp85298 +g25268 +S"Il en est n\xc3\xa2vr\xc3\xa9, je l'entraine avec peine" +p85299 +sg25270 +S'Artist Information (' +p85300 +sg25273 +S'(artist after)' +p85301 +sg25275 +S'\n' +p85302 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008ff8.jpg' +p85303 +sg25267 +g27 +sa(dp85304 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1788' +p85305 +sg25268 +S'The Pea Cart' +p85306 +sg25270 +S'Thomas Rowlandson' +p85307 +sa(dp85308 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85309 +sg25268 +S'A Distressed Sailor' +p85310 +sg25270 +S'Thomas Rowlandson' +p85311 +sa(dp85312 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1789' +p85313 +sg25268 +S'A Sufferer for Decency' +p85314 +sg25270 +S'Thomas Rowlandson' +p85315 +sa(dp85316 +g25268 +S'A Money Scrivener' +p85317 +sg25270 +S'Thomas Rowlandson' +p85318 +sg25273 +S'hand-colored etching' +p85319 +sg25275 +S'1801' +p85320 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007751.jpg' +p85321 +sg25267 +g27 +sa(dp85322 +g25268 +S'A Penny Barber' +p85323 +sg25270 +S'Thomas Rowlandson' +p85324 +sg25273 +S'hand-colored etching and aquatint' +p85325 +sg25275 +S'1789' +p85326 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000776f.jpg' +p85327 +sg25267 +g27 +sa(dp85328 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1788' +p85329 +sg25268 +S'Off! positively Off!' +p85330 +sg25270 +S'Thomas Rowlandson' +p85331 +sa(dp85332 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1788' +p85333 +sg25268 +S'And with a low-bred fellow' +p85334 +sg25270 +S'Thomas Rowlandson' +p85335 +sa(dp85336 +g25268 +S'A Cart Race' +p85337 +sg25270 +S'Thomas Rowlandson' +p85338 +sg25273 +S'hand-colored etching' +p85339 +sg25275 +S'1788' +p85340 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007769.jpg' +p85341 +sg25267 +g27 +sa(dp85342 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1789' +p85343 +sg25268 +S"She Don't Deserve it" +p85344 +sg25270 +S'Thomas Rowlandson' +p85345 +sa(dp85346 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1789' +p85347 +sg25268 +S"Don't He Deserve it?" +p85348 +sg25270 +S'Thomas Rowlandson' +p85349 +sa(dp85350 +g25268 +S'Le Devin du Village (Colette Weeping)' +p85351 +sg25270 +S'Artist Information (' +p85352 +sg25273 +S'(artist after)' +p85353 +sg25275 +S'\n' +p85354 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008ff7.jpg' +p85355 +sg25267 +g27 +sa(dp85356 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1789' +p85357 +sg25268 +S'The Dull Husband' +p85358 +sg25270 +S'Thomas Rowlandson' +p85359 +sa(dp85360 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85361 +sg25268 +S'Dover Castle' +p85362 +sg25270 +S'Thomas Rowlandson' +p85363 +sa(dp85364 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85365 +sg25268 +S'The Sick Horse (?)' +p85366 +sg25270 +S'Thomas Rowlandson' +p85367 +sa(dp85368 +g25268 +S'The High-mettled Racer' +p85369 +sg25270 +S'Thomas Rowlandson' +p85370 +sg25273 +S'hand-colored etching' +p85371 +sg25275 +S'1789' +p85372 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000776d.jpg' +p85373 +sg25267 +g27 +sa(dp85374 +g25268 +S'The Course' +p85375 +sg25270 +S'Thomas Rowlandson' +p85376 +sg25273 +S'hand-colored etching and aquatint' +p85377 +sg25275 +S'probably 1789' +p85378 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007767.jpg' +p85379 +sg25267 +g27 +sa(dp85380 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85381 +sg25268 +S'A Butcher' +p85382 +sg25270 +S'Thomas Rowlandson' +p85383 +sa(dp85384 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85385 +sg25268 +S'The Breakfast' +p85386 +sg25270 +S'Thomas Rowlandson' +p85387 +sa(dp85388 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1790' +p85389 +sg25268 +S'Repeal of the Test Act' +p85390 +sg25270 +S'Thomas Rowlandson' +p85391 +sa(dp85392 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85393 +sg25268 +S'Agreeable Companions in a Post Chaise' +p85394 +sg25270 +S'Thomas Rowlandson' +p85395 +sa(dp85396 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85397 +sg25268 +S'A Jew Broker' +p85398 +sg25270 +S'Thomas Rowlandson' +p85399 +sa(dp85400 +g25268 +S"L'amant de lui-mesme" +p85401 +sg25270 +S'Artist Information (' +p85402 +sg25273 +S'(artist after)' +p85403 +sg25275 +S'\n' +p85404 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008ff5.jpg' +p85405 +sg25267 +g27 +sa(dp85406 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1790' +p85407 +sg25268 +S'A Kick-Up at a Hazard Table' +p85408 +sg25270 +S'Thomas Rowlandson' +p85409 +sa(dp85410 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85411 +sg25268 +S'Fishing Boats (?)' +p85412 +sg25270 +S'Thomas Rowlandson' +p85413 +sa(dp85414 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85415 +sg25268 +S'Along the Coast (?)' +p85416 +sg25270 +S'Thomas Rowlandson' +p85417 +sa(dp85418 +g25268 +S'The Overdrove Ox' +p85419 +sg25270 +S'Thomas Rowlandson' +p85420 +sg25273 +S'hand-colored etching and aquatint' +p85421 +sg25275 +S'1787' +p85422 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d28.jpg' +p85423 +sg25267 +g27 +sa(dp85424 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85425 +sg25268 +S'Saloon at the Marine Pavilion' +p85426 +sg25270 +S'Thomas Rowlandson' +p85427 +sa(dp85428 +g25268 +S'The Enamoured Sportsman' +p85429 +sg25270 +S'Thomas Rowlandson' +p85430 +sg25273 +S'hand-colored etching' +p85431 +sg25275 +S'unknown date\n' +p85432 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077ce.jpg' +p85433 +sg25267 +g27 +sa(dp85434 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1790' +p85435 +sg25268 +S'Rustic Refreshment (?)' +p85436 +sg25270 +S'Thomas Rowlandson' +p85437 +sa(dp85438 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1790' +p85439 +sg25268 +S'A View in Cornwall (?)' +p85440 +sg25270 +S'Thomas Rowlandson' +p85441 +sa(dp85442 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1790' +p85443 +sg25268 +S'Waiting for Dinner' +p85444 +sg25270 +S'Thomas Rowlandson' +p85445 +sa(dp85446 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1790' +p85447 +sg25268 +S'At Dinner' +p85448 +sg25270 +S'Thomas Rowlandson' +p85449 +sa(dp85450 +g25268 +S"Discours sur l'\xc3\xa9galit\xc3\xa9 des conditions: Il retourne chez ses \xc3\xa9gaux" +p85451 +sg25270 +S'Artist Information (' +p85452 +sg25273 +S'(artist after)' +p85453 +sg25275 +S'\n' +p85454 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a0009001.jpg' +p85455 +sg25267 +g27 +sa(dp85456 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1790' +p85457 +sg25268 +S'After Dinner' +p85458 +sg25270 +S'Thomas Rowlandson' +p85459 +sa(dp85460 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1790' +p85461 +sg25268 +S'Preparing for Supper' +p85462 +sg25270 +S'Thomas Rowlandson' +p85463 +sa(dp85464 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1790' +p85465 +sg25268 +S"Four o'clock in Town" +p85466 +sg25270 +S'Thomas Rowlandson' +p85467 +sa(dp85468 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85469 +sg25268 +S'Return Home (?)' +p85470 +sg25270 +S'Thomas Rowlandson' +p85471 +sa(dp85472 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85473 +sg25268 +S'Organ Grinder' +p85474 +sg25270 +S'Thomas Rowlandson' +p85475 +sa(dp85476 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85477 +sg25268 +S'Country Scenes' +p85478 +sg25270 +S'Thomas Rowlandson' +p85479 +sa(dp85480 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85481 +sg25268 +S'Country Scenes' +p85482 +sg25270 +S'Thomas Rowlandson' +p85483 +sa(dp85484 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1790' +p85485 +sg25268 +S'A Christening' +p85486 +sg25270 +S'Thomas Rowlandson' +p85487 +sa(dp85488 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1791' +p85489 +sg25268 +S'The Pursuit' +p85490 +sg25270 +S'Thomas Rowlandson' +p85491 +sa(dp85492 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85493 +sg25268 +S'Epicures' +p85494 +sg25270 +S'Thomas Rowlandson' +p85495 +sa(dp85496 +g25268 +S'Pygmalion' +p85497 +sg25270 +S'Artist Information (' +p85498 +sg25273 +S'(artist after)' +p85499 +sg25275 +S'\n' +p85500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009601.jpg' +p85501 +sg25267 +g27 +sa(dp85502 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85503 +sg25268 +S'The Country Inn' +p85504 +sg25270 +S'Thomas Rowlandson' +p85505 +sa(dp85506 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85507 +sg25268 +S'The Race' +p85508 +sg25270 +S'Thomas Rowlandson' +p85509 +sa(dp85510 +g25268 +S'First and Second Floor' +p85511 +sg25270 +S'Thomas Rowlandson' +p85512 +sg25273 +S'hand-colored etching' +p85513 +sg25275 +S'published 1791' +p85514 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077d7.jpg' +p85515 +sg25267 +g27 +sa(dp85516 +g25268 +S'The Prospect before us, No. 2' +p85517 +sg25270 +S'Thomas Rowlandson' +p85518 +sg25273 +S'hand-colored etching' +p85519 +sg25275 +S'published 1791' +p85520 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c95.jpg' +p85521 +sg25267 +g27 +sa(dp85522 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1791' +p85523 +sg25268 +S'Chaos is Come Again' +p85524 +sg25270 +S'Thomas Rowlandson' +p85525 +sa(dp85526 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1791' +p85527 +sg25268 +S"Bardolph Badger'd, or The Portland Hunt" +p85528 +sg25270 +S'Thomas Rowlandson' +p85529 +sa(dp85530 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1791' +p85531 +sg25268 +S'European Powers; An Imperial Stride!' +p85532 +sg25270 +S'Thomas Rowlandson' +p85533 +sa(dp85534 +g25268 +S'A Little Tighter' +p85535 +sg25270 +S'Thomas Rowlandson' +p85536 +sg25273 +S'hand-colored etching' +p85537 +sg25275 +S'1791' +p85538 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007775.jpg' +p85539 +sg25267 +g27 +sa(dp85540 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1791' +p85541 +sg25268 +S'A Little Bigger' +p85542 +sg25270 +S'Thomas Rowlandson' +p85543 +sa(dp85544 +g25268 +S'Slugs in a Sawpit' +p85545 +sg25270 +S'Thomas Rowlandson' +p85546 +sg25273 +S'hand-colored etching' +p85547 +sg25275 +S'1791' +p85548 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007773.jpg' +p85549 +sg25267 +g27 +sa(dp85550 +g25268 +S'La d\xc3\xa9couverte du nouveau monde' +p85551 +sg25270 +S'Artist Information (' +p85552 +sg25273 +S'(artist after)' +p85553 +sg25275 +S'\n' +p85554 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009608.jpg' +p85555 +sg25267 +g27 +sa(dp85556 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1791' +p85557 +sg25268 +S'Slugs in a Saw Pit' +p85558 +sg25270 +S'Thomas Rowlandson' +p85559 +sa(dp85560 +g25268 +S"Mr. H. Angelo's Fencing Academy" +p85561 +sg25270 +S'Artist Information (' +p85562 +sg25273 +S'British, 1756 - 1827' +p85563 +sg25275 +S'(artist after)' +p85564 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cbc.jpg' +p85565 +sg25267 +g27 +sa(dp85566 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85567 +sg25268 +S'Fencing Contest' +p85568 +sg25270 +S'Thomas Rowlandson' +p85569 +sa(dp85570 +g25268 +S'A Squall in Hyde Park' +p85571 +sg25270 +S'Thomas Rowlandson' +p85572 +sg25273 +S'hand-colored etching and aquatint' +p85573 +sg25275 +S'1791' +p85574 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c87.jpg' +p85575 +sg25267 +g27 +sa(dp85576 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85577 +sg25268 +S'The Dance at Amiens' +p85578 +sg25270 +S'Thomas Rowlandson' +p85579 +sa(dp85580 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85581 +sg25268 +S'Yorick and Father Lorenzo' +p85582 +sg25270 +S'Thomas Rowlandson' +p85583 +sa(dp85584 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85585 +sg25268 +S"Yorick Feeling the Grisset's Pulse" +p85586 +sg25270 +S'Thomas Rowlandson' +p85587 +sa(dp85588 +g25273 +g27 +sg25267 +g27 +sg25275 +S'published 1805' +p85589 +sg25268 +S'Book Illustration' +p85590 +sg25270 +S'Thomas Rowlandson' +p85591 +sa(dp85592 +g25273 +g27 +sg25267 +g27 +sg25275 +S'published 1805' +p85593 +sg25268 +S'Commodore Trunnion - Lt. Hatchway Engaged in a Fox-Chase' +p85594 +sg25270 +S'Thomas Rowlandson' +p85595 +sa(dp85596 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85597 +sg25268 +S'Lady Booby Attempts to Seduce the Immaculate Joseph' +p85598 +sg25270 +S'Thomas Rowlandson' +p85599 +sa(dp85600 +g25268 +S'Iphis' +p85601 +sg25270 +S'Artist Information (' +p85602 +sg25273 +S'(artist after)' +p85603 +sg25275 +S'\n' +p85604 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009607.jpg' +p85605 +sg25267 +g27 +sa(dp85606 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85607 +sg25268 +S"Pallet's Odd Scheme" +p85608 +sg25270 +S'Thomas Rowlandson' +p85609 +sa(dp85610 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85611 +sg25268 +S'Cadwallader Assumes the Character of a Fortune Teller' +p85612 +sg25270 +S'Thomas Rowlandson' +p85613 +sa(dp85614 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85615 +sg25268 +S'Parson Adams in a Suspicious Situation' +p85616 +sg25270 +S'Thomas Rowlandson' +p85617 +sa(dp85618 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85619 +sg25268 +S'Parson Adams in a Suspicious Situation with Mrs. Slipslop' +p85620 +sg25270 +S'Thomas Rowlandson' +p85621 +sa(dp85622 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85623 +sg25268 +S'Book Illustration' +p85624 +sg25270 +S'Thomas Rowlandson' +p85625 +sa(dp85626 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85627 +sg25268 +S'Roderick Visits a Gaming Table' +p85628 +sg25270 +S'Thomas Rowlandson' +p85629 +sa(dp85630 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85631 +sg25268 +S'Book Illustration' +p85632 +sg25270 +S'Thomas Rowlandson' +p85633 +sa(dp85634 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85635 +sg25268 +S'Book Illustration' +p85636 +sg25270 +S'Thomas Rowlandson' +p85637 +sa(dp85638 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85639 +sg25268 +S'Book Illustration' +p85640 +sg25270 +S'Thomas Rowlandson' +p85641 +sa(dp85642 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85643 +sg25268 +S'Book Illustration' +p85644 +sg25270 +S'Thomas Rowlandson' +p85645 +sa(dp85646 +g25268 +S'Frontispiece: Dictionnaire de musique' +p85647 +sg25270 +S'Jean-Michel Moreau the Younger' +p85648 +sg25273 +S', 1779' +p85649 +sg25275 +S'\n' +p85650 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009604.jpg' +p85651 +sg25267 +g27 +sa(dp85652 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85653 +sg25268 +S'Book Illustration' +p85654 +sg25270 +S'Thomas Rowlandson' +p85655 +sa(dp85656 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85657 +sg25268 +S'Book Illustration' +p85658 +sg25270 +S'Thomas Rowlandson' +p85659 +sa(dp85660 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1805' +p85661 +sg25268 +S'Book Illustration' +p85662 +sg25270 +S'Thomas Rowlandson' +p85663 +sa(dp85664 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85665 +sg25268 +S'Ducking Scene in the Game of Ambassador' +p85666 +sg25270 +S'Thomas Rowlandson' +p85667 +sa(dp85668 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85669 +sg25268 +S'Young Andrews Catechised by Parson Andrews' +p85670 +sg25270 +S'Thomas Rowlandson' +p85671 +sa(dp85672 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85673 +sg25268 +S'Book Illustration' +p85674 +sg25270 +S'Thomas Rowlandson' +p85675 +sa(dp85676 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85677 +sg25268 +S'Book Illustration' +p85678 +sg25270 +S'Thomas Rowlandson' +p85679 +sa(dp85680 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85681 +sg25268 +S'Book Illustration' +p85682 +sg25270 +S'Thomas Rowlandson' +p85683 +sa(dp85684 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85685 +sg25268 +S'Book Illustration' +p85686 +sg25270 +S'Thomas Rowlandson' +p85687 +sa(dp85688 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85689 +sg25268 +S"The Reading of the Will of St. Bowling's Brother" +p85690 +sg25270 +S'Thomas Rowlandson' +p85691 +sa(dp85692 +g25268 +S"J'ai tort, mon cher Val\xc3\xa8re, et t'en demande excuse" +p85693 +sg25270 +S'Artist Information (' +p85694 +sg25273 +S'(artist after)' +p85695 +sg25275 +S'\n' +p85696 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009602.jpg' +p85697 +sg25267 +g27 +sa(dp85698 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85699 +sg25268 +S'Book Illustration' +p85700 +sg25270 +S'Thomas Rowlandson' +p85701 +sa(dp85702 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85703 +sg25268 +S'Parson Adams and Fanny' +p85704 +sg25270 +S'Thomas Rowlandson' +p85705 +sa(dp85706 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85707 +sg25268 +S'Escape of Parson Andrews from a Perilous Hunting Adventure' +p85708 +sg25270 +S'Thomas Rowlandson' +p85709 +sa(dp85710 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85711 +sg25268 +S'Peregrine purchases a Gypsey Girl' +p85712 +sg25270 +S'Thomas Rowlandson' +p85713 +sa(dp85714 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85715 +sg25268 +S'Book Illustration' +p85716 +sg25270 +S'Thomas Rowlandson' +p85717 +sa(dp85718 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85719 +sg25268 +S'Fire at the Inn' +p85720 +sg25270 +S'Thomas Rowlandson' +p85721 +sa(dp85722 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1792' +p85723 +sg25268 +S"Work for Doctors' Commons" +p85724 +sg25270 +S'Thomas Rowlandson' +p85725 +sa(dp85726 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1792' +p85727 +sg25268 +S"The Pavior's Joy" +p85728 +sg25270 +S'Thomas Rowlandson' +p85729 +sa(dp85730 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1792' +p85731 +sg25268 +S'The Bank' +p85732 +sg25270 +S'Thomas Rowlandson' +p85733 +sa(dp85734 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1792' +p85735 +sg25268 +S'Ruins of the Pantheon' +p85736 +sg25270 +S'Thomas Rowlandson' +p85737 +sa(dp85738 +g25268 +S'La nuit' +p85739 +sg25270 +S'Artist Information (' +p85740 +sg25273 +S'(artist after)' +p85741 +sg25275 +S'\n' +p85742 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f7f.jpg' +p85743 +sg25267 +g27 +sa(dp85744 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1791/1792' +p85745 +sg25268 +S'Six Stages of Mending a Face' +p85746 +sg25270 +S'Thomas Rowlandson' +p85747 +sa(dp85748 +g25273 +S'(artist after)' +p85749 +sg25267 +g27 +sg25275 +S'\n' +p85750 +sg25268 +S'Satan, Sin, and Death' +p85751 +sg25270 +S'Artist Information (' +p85752 +sa(dp85753 +g25268 +S'Beauties' +p85754 +sg25270 +S'Thomas Rowlandson' +p85755 +sg25273 +S'hand-colored etching' +p85756 +sg25275 +S'published 1792' +p85757 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007779.jpg' +p85758 +sg25267 +g27 +sa(dp85759 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85760 +sg25268 +S'Captain Bowling Introduced to Narcissa' +p85761 +sg25270 +S'Thomas Rowlandson' +p85762 +sa(dp85763 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85764 +sg25268 +S'Traveling in England' +p85765 +sg25270 +S'Thomas Rowlandson' +p85766 +sa(dp85767 +g25268 +S"La Table d'Hote" +p85768 +sg25270 +S'Thomas Rowlandson' +p85769 +sg25273 +S'hand-colored etching' +p85770 +sg25275 +S'published 1792' +p85771 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077e3.jpg' +p85772 +sg25267 +g27 +sa(dp85773 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1792' +p85774 +sg25268 +S'The Grand-Papa' +p85775 +sg25270 +S'Thomas Rowlandson' +p85776 +sa(dp85777 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85778 +sg25268 +S'Voyage to Margate' +p85779 +sg25270 +S'Thomas Rowlandson' +p85780 +sa(dp85781 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85782 +sg25268 +S'Banditti' +p85783 +sg25270 +S'Thomas Rowlandson' +p85784 +sa(dp85785 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85786 +sg25268 +S'Cold Broth and Calamity' +p85787 +sg25270 +S'Thomas Rowlandson' +p85788 +sa(dp85789 +g25268 +S'Rose et Colas' +p85790 +sg25270 +S'Artist Information (' +p85791 +sg25273 +S'(artist after)' +p85792 +sg25275 +S'\n' +p85793 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009695.jpg' +p85794 +sg25267 +g27 +sa(dp85795 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1792' +p85796 +sg25268 +S'Cold Broth and Calamity' +p85797 +sg25270 +S'Thomas Rowlandson' +p85798 +sa(dp85799 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1792' +p85800 +sg25268 +S'The Hypochondriac' +p85801 +sg25270 +S'Thomas Rowlandson' +p85802 +sa(dp85803 +g25273 +S'(artist after)' +p85804 +sg25267 +g27 +sg25275 +S'\n' +p85805 +sg25268 +S'Venus and Satyr' +p85806 +sg25270 +S'Artist Information (' +p85807 +sa(dp85808 +g25273 +S'(artist after)' +p85809 +sg25267 +g27 +sg25275 +S'\n' +p85810 +sg25268 +S'Nymphs Bathing' +p85811 +sg25270 +S'Artist Information (' +p85812 +sa(dp85813 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85814 +sg25268 +S'Venus and Mars' +p85815 +sg25270 +S'Thomas Rowlandson' +p85816 +sa(dp85817 +g25273 +S'(artist after)' +p85818 +sg25267 +g27 +sg25275 +S'\n' +p85819 +sg25268 +S'Venus and the Lute Player' +p85820 +sg25270 +S'Artist Information (' +p85821 +sa(dp85822 +g25268 +S'Botheration' +p85823 +sg25270 +S'Thomas Rowlandson' +p85824 +sg25273 +S'hand-colored etching and aquatint' +p85825 +sg25275 +S'1793' +p85826 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000775b.jpg' +p85827 +sg25267 +g27 +sa(dp85828 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1793' +p85829 +sg25268 +S'A Tit Bit for the Bugs' +p85830 +sg25270 +S'Thomas Rowlandson' +p85831 +sa(dp85832 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85833 +sg25268 +S'The Old Bull (?)' +p85834 +sg25270 +S'Thomas Rowlandson' +p85835 +sa(dp85836 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85837 +sg25268 +S'View of an Old Bridge Near Fontains Abby' +p85838 +sg25270 +S'Thomas Rowlandson' +p85839 +sa(dp85840 +g25268 +S"L'assemblee au salon" +p85841 +sg25270 +S'Artist Information (' +p85842 +sg25273 +S'(artist after)' +p85843 +sg25275 +S'\n' +p85844 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096ea.jpg' +p85845 +sg25267 +g27 +sa(dp85846 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1794' +p85847 +sg25268 +S'The Comforts of High Living' +p85848 +sg25270 +S'Thomas Rowlandson' +p85849 +sa(dp85850 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1794' +p85851 +sg25268 +S'Village Cavalry Practising in a Farm Yard' +p85852 +sg25270 +S'Thomas Rowlandson' +p85853 +sa(dp85854 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85855 +sg25268 +S'Fishermen on the Coast' +p85856 +sg25270 +S'Thomas Rowlandson' +p85857 +sa(dp85858 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85859 +sg25268 +S'The Start' +p85860 +sg25270 +S'Thomas Rowlandson' +p85861 +sa(dp85862 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85863 +sg25268 +S'The Arrival (?)' +p85864 +sg25270 +S'Thomas Rowlandson' +p85865 +sa(dp85866 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85867 +sg25268 +S'Interior of a Stable' +p85868 +sg25270 +S'Thomas Rowlandson' +p85869 +sa(dp85870 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85871 +sg25268 +S'Black Dog Inn Yard at Belfont' +p85872 +sg25270 +S'Thomas Rowlandson' +p85873 +sa(dp85874 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85875 +sg25268 +S'Drowned' +p85876 +sg25270 +S'Thomas Rowlandson' +p85877 +sa(dp85878 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85879 +sg25268 +S"The Sailor's Race" +p85880 +sg25270 +S'Thomas Rowlandson' +p85881 +sa(dp85882 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85883 +sg25268 +S'Veluti in Speculum' +p85884 +sg25270 +S'Thomas Rowlandson' +p85885 +sa(dp85886 +g25268 +S'Le bal par\xc3\xa9' +p85887 +sg25270 +S'Artist Information (' +p85888 +sg25273 +S'(artist after)' +p85889 +sg25275 +S'\n' +p85890 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008eac.jpg' +p85891 +sg25267 +g27 +sa(dp85892 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1794' +p85893 +sg25268 +S'An Early Lesson of Marching' +p85894 +sg25270 +S'Thomas Rowlandson' +p85895 +sa(dp85896 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85897 +sg25268 +S'An Early Lesson of Marching' +p85898 +sg25270 +S'Thomas Rowlandson' +p85899 +sa(dp85900 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85901 +sg25268 +S'The Dissecting Room' +p85902 +sg25270 +S'Thomas Rowlandson' +p85903 +sa(dp85904 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85905 +sg25268 +S'A Slasher' +p85906 +sg25270 +S'Thomas Rowlandson' +p85907 +sa(dp85908 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85909 +sg25268 +S'Billingsgate Brutes' +p85910 +sg25270 +S'Thomas Rowlandson' +p85911 +sa(dp85912 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85913 +sg25268 +S'A Land Storm, or Jack Tars out of their Element' +p85914 +sg25270 +S'Thomas Rowlandson' +p85915 +sa(dp85916 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1806' +p85917 +sg25268 +S'Anything will do for an Officer' +p85918 +sg25270 +S'Thomas Rowlandson' +p85919 +sa(dp85920 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p85921 +sg25268 +S'An Author and Bookseller' +p85922 +sg25270 +S'Thomas Rowlandson' +p85923 +sa(dp85924 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1797' +p85925 +sg25268 +S'Tient Bien ton Bonnet, et toi defent ta Queue' +p85926 +sg25270 +S'Thomas Rowlandson' +p85927 +sa(dp85928 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1798' +p85929 +sg25268 +S'Comforts of Bath' +p85930 +sg25270 +S'Thomas Rowlandson' +p85931 +sa(dp85932 +g25268 +S'La F\xc3\xa9licit\xc3\xa9 villageoise' +p85933 +sg25270 +S'Artist Information (' +p85934 +sg25273 +S'(artist after)' +p85935 +sg25275 +S'\n' +p85936 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e92.jpg' +p85937 +sg25267 +g27 +sa(dp85938 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1798' +p85939 +sg25268 +S'Comforts of Bath' +p85940 +sg25270 +S'Thomas Rowlandson' +p85941 +sa(dp85942 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1798' +p85943 +sg25268 +S'Comforts of Bath' +p85944 +sg25270 +S'Thomas Rowlandson' +p85945 +sa(dp85946 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1798' +p85947 +sg25268 +S'Comforts of Bath' +p85948 +sg25270 +S'Thomas Rowlandson' +p85949 +sa(dp85950 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1798' +p85951 +sg25268 +S'Comforts of Bath' +p85952 +sg25270 +S'Thomas Rowlandson' +p85953 +sa(dp85954 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1798' +p85955 +sg25268 +S'Comforts of Bath' +p85956 +sg25270 +S'Thomas Rowlandson' +p85957 +sa(dp85958 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1798' +p85959 +sg25268 +S'Comforts of Bath' +p85960 +sg25270 +S'Thomas Rowlandson' +p85961 +sa(dp85962 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1798' +p85963 +sg25268 +S'Comforts of Bath' +p85964 +sg25270 +S'Thomas Rowlandson' +p85965 +sa(dp85966 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1798' +p85967 +sg25268 +S'Comforts of Bath' +p85968 +sg25270 +S'Thomas Rowlandson' +p85969 +sa(dp85970 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1798' +p85971 +sg25268 +S'Comforts of Bath' +p85972 +sg25270 +S'Thomas Rowlandson' +p85973 +sa(dp85974 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1798' +p85975 +sg25268 +S'Comforts of Bath' +p85976 +sg25270 +S'Thomas Rowlandson' +p85977 +sa(dp85978 +g25268 +S'La vertu chancelante' +p85979 +sg25270 +S'Artist Information (' +p85980 +sg25273 +S'(artist after)' +p85981 +sg25275 +S'\n' +p85982 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009730.jpg' +p85983 +sg25267 +g27 +sa(dp85984 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1798' +p85985 +sg25268 +S'Comforts of Bath' +p85986 +sg25270 +S'Thomas Rowlandson' +p85987 +sa(dp85988 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1798' +p85989 +sg25268 +S'The Consequence of Not Shifting the Leg' +p85990 +sg25270 +S'Thomas Rowlandson' +p85991 +sa(dp85992 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1798' +p85993 +sg25268 +S'The Advantage of Shifting the Leg' +p85994 +sg25270 +S'Thomas Rowlandson' +p85995 +sa(dp85996 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1798' +p85997 +sg25268 +S'Rehersal of a French Invasion' +p85998 +sg25270 +S'Thomas Rowlandson' +p85999 +sa(dp86000 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1798' +p86001 +sg25268 +S'England Invaded or Frenchmen Naturalized' +p86002 +sg25270 +S'Thomas Rowlandson' +p86003 +sa(dp86004 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1798' +p86005 +sg25268 +S'Fraternization in Grand Cairo' +p86006 +sg25270 +S'Thomas Rowlandson' +p86007 +sa(dp86008 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86009 +sg25268 +S'A Toast for Old England' +p86010 +sg25270 +S'Thomas Rowlandson' +p86011 +sa(dp86012 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1798' +p86013 +sg25268 +S'High Fun for John Bull' +p86014 +sg25270 +S'Thomas Rowlandson' +p86015 +sa(dp86016 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1798' +p86017 +sg25268 +S'The Consequence of Not Shifting a Leg' +p86018 +sg25270 +S'Thomas Rowlandson' +p86019 +sa(dp86020 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86021 +sg25268 +S'Half Circle Guard; Medium Guard' +p86022 +sg25270 +S'Thomas Rowlandson' +p86023 +sa(dp86024 +g25273 +S'overall: 91.4 x 40 x 22 cm (36 x 15 3/4 x 8 11/16 in.)' +p86025 +sg25267 +g27 +sg25275 +S'\nbronze' +p86026 +sg25268 +S'Andiron: Apollo with the Serpent' +p86027 +sg25270 +S'Italian 18th Century' +p86028 +sa(dp86029 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86030 +sg25268 +S'Outside Half Hangar; Hanging Guard; Inside Half Hangar' +p86031 +sg25270 +S'Thomas Rowlandson' +p86032 +sa(dp86033 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86034 +sg25268 +S'Outside Guard; St. Georges Guard; Inside Guard' +p86035 +sg25270 +S'Thomas Rowlandson' +p86036 +sa(dp86037 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86038 +sg25268 +S'The Guards and Lessons of the High and Broadsword' +p86039 +sg25270 +S'Thomas Rowlandson' +p86040 +sa(dp86041 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1799' +p86042 +sg25268 +S'Buy a Trap, a Rat-Trap, buy my Trap' +p86043 +sg25270 +S'Thomas Rowlandson' +p86044 +sa(dp86045 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1799' +p86046 +sg25268 +S'Buy my Goose, my Fat Goose' +p86047 +sg25270 +S'Thomas Rowlandson' +p86048 +sa(dp86049 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1799' +p86050 +sg25268 +S'Last Dying Speech and Confession' +p86051 +sg25270 +S'Thomas Rowlandson' +p86052 +sa(dp86053 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1799' +p86054 +sg25268 +S'Do you want any brick-dust?' +p86055 +sg25270 +S'Thomas Rowlandson' +p86056 +sa(dp86057 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1799' +p86058 +sg25268 +S'Water-cresses, come buy my Water-cresses' +p86059 +sg25270 +S'Thomas Rowlandson' +p86060 +sa(dp86061 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1799' +p86062 +sg25268 +S"All a-growing, a-growing; here's flowers for your gardens" +p86063 +sg25270 +S'Thomas Rowlandson' +p86064 +sa(dp86065 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1799' +p86066 +sg25268 +S'Hot cross buns, two a penny buns' +p86067 +sg25270 +S'Thomas Rowlandson' +p86068 +sa(dp86069 +g25273 +S'overall: 91.4 x 40 x 22 cm (36 x 15 3/4 x 8 11/16 in.)' +p86070 +sg25267 +g27 +sg25275 +S'\nbronze' +p86071 +sg25268 +S'Andiron: Vulcan with His Anvil' +p86072 +sg25270 +S'Italian 18th Century' +p86073 +sa(dp86074 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86075 +sg25268 +S'Between Heats' +p86076 +sg25270 +S'Thomas Rowlandson' +p86077 +sa(dp86078 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1799' +p86079 +sg25268 +S'A Magic Lantern' +p86080 +sg25270 +S'Thomas Rowlandson' +p86081 +sa(dp86082 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86083 +sg25268 +S'A Blacksmiths Shop' +p86084 +sg25270 +S'Thomas Rowlandson' +p86085 +sa(dp86086 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86087 +sg25268 +S'A Peep into the Retreat at Tinnehinch' +p86088 +sg25270 +S'Thomas Rowlandson' +p86089 +sa(dp86090 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1799' +p86091 +sg25268 +S'An Irish Howl' +p86092 +sg25270 +S'Thomas Rowlandson' +p86093 +sa(dp86094 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1799' +p86095 +sg25268 +S"St. James's Courtship" +p86096 +sg25270 +S'Thomas Rowlandson' +p86097 +sa(dp86098 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86099 +sg25268 +S"The Bookbinder's Wife" +p86100 +sg25270 +S'Thomas Rowlandson' +p86101 +sa(dp86102 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86103 +sg25268 +S'A Gold Ring' +p86104 +sg25270 +S'Thomas Rowlandson' +p86105 +sa(dp86106 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86107 +sg25268 +S'Self-Portrait' +p86108 +sg25270 +S'Thomas Rowlandson' +p86109 +sa(dp86110 +g25273 +S'bound volume: original contents: 153 etchings and engravings, some prints being removed from the volume; see separate entries for current locations' +p86111 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86112 +sg25268 +S'Caricatures (volume III)' +p86113 +sg25270 +S'Thomas Rowlandson' +p86114 +sa(dp86115 +g25268 +S'Captain Warren Delano' +p86116 +sg25270 +S'Charles Loring Elliott' +p86117 +sg25273 +S'oil on canvas' +p86118 +sg25275 +S'c. 1852' +p86119 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000a9.jpg' +p86120 +sg25267 +g27 +sa(dp86121 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86122 +sg25268 +S'The Caricature Magazine' +p86123 +sg25270 +S'Thomas Rowlandson' +p86124 +sa(dp86125 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86126 +sg25268 +S'Conversazioni' +p86127 +sg25270 +S'Thomas Rowlandson' +p86128 +sa(dp86129 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86130 +sg25268 +S'Being suddenly seized' +p86131 +sg25270 +S'Thomas Rowlandson' +p86132 +sa(dp86133 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86134 +sg25268 +S'I Smell a Rat, or A Rogue in the Grain?' +p86135 +sg25270 +S'Thomas Rowlandson' +p86136 +sa(dp86137 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86138 +sg25268 +S'To Shandy Hall' +p86139 +sg25270 +S'Thomas Rowlandson' +p86140 +sa(dp86141 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86142 +sg25268 +S'Polygamy, or Plurality of Wives' +p86143 +sg25270 +S'Thomas Rowlandson' +p86144 +sa(dp86145 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86146 +sg25268 +S'A Hail Storm' +p86147 +sg25270 +S'Thomas Rowlandson' +p86148 +sa(dp86149 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1811' +p86150 +sg25268 +S'Conversazione' +p86151 +sg25270 +S'Thomas Rowlandson' +p86152 +sa(dp86153 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1811' +p86154 +sg25268 +S'The Country Club' +p86155 +sg25270 +S'Thomas Rowlandson' +p86156 +sa(dp86157 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86158 +sg25268 +S'The Inflexible Porter' +p86159 +sg25270 +S'Thomas Rowlandson' +p86160 +sa(dp86161 +g25268 +S'Head of a Youth (Dionysos or a Follower?)' +p86162 +sg25270 +S'Hellenistic 2nd Century B.C./1st Century A.D.' +p86163 +sg25273 +S'marble' +p86164 +sg25275 +S'c. 220/100 B.C.' +p86165 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d85.jpg' +p86166 +sg25267 +g27 +sa(dp86167 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1798' +p86168 +sg25268 +S'Academy for Grown Horsemen' +p86169 +sg25270 +S'Thomas Rowlandson' +p86170 +sa(dp86171 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86172 +sg25268 +S'A Long Story' +p86173 +sg25270 +S'Thomas Rowlandson' +p86174 +sa(dp86175 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86176 +sg25268 +S'French Luxury' +p86177 +sg25270 +S'Thomas Rowlandson' +p86178 +sa(dp86179 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86180 +sg25268 +S'Grown Gentlemen Taught to Dance' +p86181 +sg25270 +S'Thomas Rowlandson' +p86182 +sa(dp86183 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86184 +sg25268 +S'A Country Club' +p86185 +sg25270 +S'Thomas Rowlandson' +p86186 +sa(dp86187 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86188 +sg25268 +S'A Visit to the Camp' +p86189 +sg25270 +S'Thomas Rowlandson' +p86190 +sa(dp86191 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86192 +sg25268 +S'Recruits' +p86193 +sg25270 +S'Thomas Rowlandson' +p86194 +sa(dp86195 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86196 +sg25268 +S'A Cart Race' +p86197 +sg25270 +S'Thomas Rowlandson' +p86198 +sa(dp86199 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p86200 +sg25268 +S'A Family Piece' +p86201 +sg25270 +S'Thomas Rowlandson' +p86202 +sa(dp86203 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86204 +sg25268 +S'Christmas Academicks, Playing a Rubber at Whist' +p86205 +sg25270 +S'Thomas Rowlandson' +p86206 +sa(dp86207 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p86208 +sg25268 +S'Piet\xc3\xa0' +p86209 +sg25270 +S'Artist Information (' +p86210 +sa(dp86211 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86212 +sg25268 +S'Recruits' +p86213 +sg25270 +S'Thomas Rowlandson' +p86214 +sa(dp86215 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86216 +sg25268 +S'A Hail Storm' +p86217 +sg25270 +S'Thomas Rowlandson' +p86218 +sa(dp86219 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86220 +sg25268 +S'Pot Fair, Cambridge' +p86221 +sg25270 +S'Thomas Rowlandson' +p86222 +sa(dp86223 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86224 +sg25268 +S'Pont Neuf, Paris' +p86225 +sg25270 +S'Thomas Rowlandson' +p86226 +sa(dp86227 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86228 +sg25268 +S'Cobbler' +p86229 +sg25270 +S'Thomas Rowlandson' +p86230 +sa(dp86231 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86232 +sg25268 +S'A Long Story' +p86233 +sg25270 +S'Thomas Rowlandson' +p86234 +sa(dp86235 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86236 +sg25268 +S'Production of an Alehouse' +p86237 +sg25270 +S'Thomas Rowlandson' +p86238 +sa(dp86239 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86240 +sg25268 +S'A Lying-in Visit' +p86241 +sg25270 +S'Thomas Rowlandson' +p86242 +sa(dp86243 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86244 +sg25268 +S'Englishman at Paris' +p86245 +sg25270 +S'Thomas Rowlandson' +p86246 +sa(dp86247 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1799' +p86248 +sg25268 +S'A Grinning Match' +p86249 +sg25270 +S'Thomas Rowlandson' +p86250 +sa(dp86251 +g25268 +S'The Dead Christ Supported by an Angel (The Trinity)' +p86252 +sg25270 +S'Artist Information (' +p86253 +sg25273 +g27 +sg25275 +S'(sculptor)' +p86254 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d8d.jpg' +p86255 +sg25267 +S'The lifeless and gaunt body of Christ slumps in the arms of an angel, \r\n whose face is marked by quiet grief. In the corner the hand of God, \r\n emerging from a swirl of stylized clouds, points with a gesture of \r\n benediction to the dove of the Holy Spirit as it descends to the head of \r\n Jesus. Such images inspired the viewer to contemplate and identify with the \r\n suffering of Christ. Dramatic depictions of great pathos and immediacy, \r\n called \n This small alabaster relief, probably made by a \r\n \n ' +p86256 +sa(dp86257 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1811' +p86258 +sg25268 +S'Morning, or The Man of Taste' +p86259 +sg25270 +S'Thomas Rowlandson' +p86260 +sa(dp86261 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86262 +sg25268 +S'The College Gate' +p86263 +sg25270 +S'Thomas Rowlandson' +p86264 +sa(dp86265 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86266 +sg25268 +S'A Militia Meeting' +p86267 +sg25270 +S'Thomas Rowlandson' +p86268 +sa(dp86269 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86270 +sg25268 +S'Evening, or The Man of Feeling' +p86271 +sg25270 +S'Thomas Rowlandson' +p86272 +sa(dp86273 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86274 +sg25268 +S'Smokers?' +p86275 +sg25270 +S'Thomas Rowlandson' +p86276 +sa(dp86277 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86278 +sg25268 +S'Miseries of Social Life' +p86279 +sg25270 +S'Thomas Rowlandson' +p86280 +sa(dp86281 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86282 +sg25268 +S'More Miseries - Endeavouring to make violent love' +p86283 +sg25270 +S'Thomas Rowlandson' +p86284 +sa(dp86285 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1806' +p86286 +sg25268 +S'Symptoms of Choking' +p86287 +sg25270 +S'Thomas Rowlandson' +p86288 +sa(dp86289 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86290 +sg25268 +S'More Miseries - Being persuaded to put your finger into the Cage' +p86291 +sg25270 +S'Thomas Rowlandson' +p86292 +sa(dp86293 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86294 +sg25268 +S'More Miseries - Sitting on a chair' +p86295 +sg25270 +S'Thomas Rowlandson' +p86296 +sa(dp86297 +g25268 +S'The Surprise' +p86298 +sg25270 +S'Clodion' +p86299 +sg25273 +S'terracotta' +p86300 +sg25275 +S'1799' +p86301 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c01.jpg' +p86302 +sg25267 +g27 +sa(dp86303 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86304 +sg25268 +S'More Miseries - Having so flaccid a cheek' +p86305 +sg25270 +S'Thomas Rowlandson' +p86306 +sa(dp86307 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86308 +sg25268 +S'More Miseries - At an Inn' +p86309 +sg25270 +S'Thomas Rowlandson' +p86310 +sa(dp86311 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86312 +sg25268 +S'Symptoms of Restiveness' +p86313 +sg25270 +S'Thomas Rowlandson' +p86314 +sa(dp86315 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86316 +sg25268 +S'Showing Off' +p86317 +sg25270 +S'Thomas Rowlandson' +p86318 +sa(dp86319 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86320 +sg25268 +S'Miseries of the Country' +p86321 +sg25270 +S'Thomas Rowlandson' +p86322 +sa(dp86323 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1806' +p86324 +sg25268 +S'Miseries of the Country' +p86325 +sg25270 +S'Thomas Rowlandson' +p86326 +sa(dp86327 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86328 +sg25268 +S'Miseries of Social Life' +p86329 +sg25270 +S'Thomas Rowlandson' +p86330 +sa(dp86331 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86332 +sg25268 +S'Miseries of Human Life: Introductory Dialogue' +p86333 +sg25270 +S'Thomas Rowlandson' +p86334 +sa(dp86335 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1806' +p86336 +sg25268 +S'The Political Hydra' +p86337 +sg25270 +S'Thomas Rowlandson' +p86338 +sa(dp86339 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86340 +sg25268 +S'Miseries of Social Life' +p86341 +sg25270 +S'Thomas Rowlandson' +p86342 +sa(dp86343 +g25268 +S'Henry Pratt' +p86344 +sg25270 +S'Thomas Sully' +p86345 +sg25273 +S'oil on canvas' +p86346 +sg25275 +S'1815' +p86347 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000025a.jpg' +p86348 +sg25267 +g27 +sa(dp86349 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86350 +sg25268 +S'Miseries of Traveling' +p86351 +sg25270 +S'Thomas Rowlandson' +p86352 +sa(dp86353 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86354 +sg25268 +S'Pilgrims and the Peas' +p86355 +sg25270 +S'Thomas Rowlandson' +p86356 +sa(dp86357 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86358 +sg25268 +S'The Prussian Eagle' +p86359 +sg25270 +S'Thomas Rowlandson' +p86360 +sa(dp86361 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86362 +sg25268 +S'The Rising Sun, or A View of the Continent' +p86363 +sg25270 +S'Thomas Rowlandson' +p86364 +sa(dp86365 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86366 +sg25268 +S'Enraged Vicar' +p86367 +sg25270 +S'Thomas Rowlandson' +p86368 +sa(dp86369 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86370 +sg25268 +S'Murphy Delaney' +p86371 +sg25270 +S'Thomas Rowlandson' +p86372 +sa(dp86373 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86374 +sg25268 +S'The Dog and the Devil' +p86375 +sg25270 +S'Thomas Rowlandson' +p86376 +sa(dp86377 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86378 +sg25268 +S'Murphy Delaney' +p86379 +sg25270 +S'Thomas Rowlandson' +p86380 +sa(dp86381 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86382 +sg25268 +S'The Production of a Post House' +p86383 +sg25270 +S'Thomas Rowlandson' +p86384 +sa(dp86385 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86386 +sg25268 +S'John Rosedale' +p86387 +sg25270 +S'Thomas Rowlandson' +p86388 +sa(dp86389 +g25268 +S'William Henry Cavendish Bentinck, 3rd Duke of Portland' +p86390 +sg25270 +S'Matthew Pratt' +p86391 +sg25273 +S'oil on canvas' +p86392 +sg25275 +S'c. 1774' +p86393 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001cb.jpg' +p86394 +sg25267 +g27 +sa(dp86395 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86396 +sg25268 +S'Thomas Simmons' +p86397 +sg25270 +S'Thomas Rowlandson' +p86398 +sa(dp86399 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86400 +sg25268 +S'Mrs. Showwell' +p86401 +sg25270 +S'Thomas Rowlandson' +p86402 +sa(dp86403 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86404 +sg25268 +S'John Rosedale' +p86405 +sg25270 +S'Thomas Rowlandson' +p86406 +sa(dp86407 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86408 +sg25268 +S'Black, Brown and Fair' +p86409 +sg25270 +S'Thomas Rowlandson' +p86410 +sa(dp86411 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86412 +sg25268 +S'Black, Brown and Fair' +p86413 +sg25270 +S'Thomas Rowlandson' +p86414 +sa(dp86415 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86416 +sg25268 +S'Miseries of Traveling' +p86417 +sg25270 +S'Thomas Rowlandson' +p86418 +sa(dp86419 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p86420 +sg25268 +S'The Learned Scotchman' +p86421 +sg25270 +S'Thomas Rowlandson' +p86422 +sa(dp86423 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86424 +sg25268 +S'Symptoms of Restiveness' +p86425 +sg25270 +S'Thomas Rowlandson' +p86426 +sa(dp86427 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86428 +sg25268 +S'All the Talents' +p86429 +sg25270 +S'Thomas Rowlandson' +p86430 +sa(dp86431 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p86432 +sg25268 +S'A Parody on Milton' +p86433 +sg25270 +S'Thomas Rowlandson' +p86434 +sa(dp86435 +g25268 +S'John Bill Ricketts' +p86436 +sg25270 +S'Gilbert Stuart' +p86437 +sg25273 +S'oil on canvas' +p86438 +sg25275 +S'1795/1799' +p86439 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000238.jpg' +p86440 +sg25267 +g27 +sa(dp86441 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86442 +sg25268 +S'The Captains Account Current of Charge and Discharge' +p86443 +sg25270 +S'Thomas Rowlandson' +p86444 +sa(dp86445 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p86446 +sg25268 +S'Miseries of London: Watermen, Oars? Sculls?' +p86447 +sg25270 +S'Thomas Rowlandson' +p86448 +sa(dp86449 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86450 +sg25268 +S'Miseries of Human Life' +p86451 +sg25270 +S'Thomas Rowlandson' +p86452 +sa(dp86453 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86454 +sg25268 +S'Snips' +p86455 +sg25270 +S'Thomas Rowlandson' +p86456 +sa(dp86457 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86458 +sg25268 +S'A Cure for Lying and a Bad Memory' +p86459 +sg25270 +S'Thomas Rowlandson' +p86460 +sa(dp86461 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86462 +sg25268 +S'Miseries of Human Life' +p86463 +sg25270 +S'Thomas Rowlandson' +p86464 +sa(dp86465 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86466 +sg25268 +S'The Enraged Wife, or Punishment of Infidelity' +p86467 +sg25270 +S'Thomas Rowlandson' +p86468 +sa(dp86469 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86470 +sg25268 +S'John Bull Making Observations on the Comet' +p86471 +sg25270 +S'Thomas Rowlandson' +p86472 +sa(dp86473 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1813' +p86474 +sg25268 +S'The Quaker and the Commissioners of Excise' +p86475 +sg25270 +S'Thomas Rowlandson' +p86476 +sa(dp86477 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86478 +sg25268 +S'A Couple of Antiques, or My Aunt and My Uncle' +p86479 +sg25270 +S'Thomas Rowlandson' +p86480 +sa(dp86481 +g25268 +S'Little Venice' +p86482 +sg25270 +S'James McNeill Whistler' +p86483 +sg25273 +S'etching' +p86484 +sg25275 +S'1880' +p86485 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9ee.jpg' +p86486 +sg25267 +g27 +sa(dp86487 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86488 +sg25268 +S'Miseries Personal' +p86489 +sg25270 +S'Thomas Rowlandson' +p86490 +sa(dp86491 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p86492 +sg25268 +S"A Seaman's Wife's Reckoning" +p86493 +sg25270 +S'Thomas Rowlandson' +p86494 +sa(dp86495 +g25268 +S'Miseries of London' +p86496 +sg25270 +S'Thomas Rowlandson' +p86497 +sg25273 +S'hand-colored etching' +p86498 +sg25275 +S'published 1807' +p86499 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000777f.jpg' +p86500 +sg25267 +g27 +sa(dp86501 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86502 +sg25268 +S'A Nincompoop, or Hen-pecked Husband' +p86503 +sg25270 +S'Thomas Rowlandson' +p86504 +sa(dp86505 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1807' +p86506 +sg25268 +S'Mr. Egos Marvelous Story' +p86507 +sg25270 +S'Thomas Rowlandson' +p86508 +sa(dp86509 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1807' +p86510 +sg25268 +S'Christopher Crabtree in the Suds' +p86511 +sg25270 +S'Thomas Rowlandson' +p86512 +sa(dp86513 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1807' +p86514 +sg25268 +S'Connoisseurs, or Portrait Collectors' +p86515 +sg25270 +S'Thomas Rowlandson' +p86516 +sa(dp86517 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86518 +sg25268 +S'The Old Man of the Sea' +p86519 +sg25270 +S'Thomas Rowlandson' +p86520 +sa(dp86521 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1807' +p86522 +sg25268 +S'A Brace of Full-grown Puppies' +p86523 +sg25270 +S'Thomas Rowlandson' +p86524 +sa(dp86525 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1807' +p86526 +sg25268 +S'The Pleasures of Bond Street' +p86527 +sg25270 +S'Thomas Rowlandson' +p86528 +sa(dp86529 +g25268 +S'Nocturne' +p86530 +sg25270 +S'James McNeill Whistler' +p86531 +sg25273 +S'etching and drypoint in brownish-black ink' +p86532 +sg25275 +S'1879/1880' +p86533 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab6f.jpg' +p86534 +sg25267 +g27 +sa(dp86535 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86536 +sg25268 +S'Comedy in the Country; Tragedy in London' +p86537 +sg25270 +S'Thomas Rowlandson' +p86538 +sa(dp86539 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1806' +p86540 +sg25268 +S'A Cake in Danger' +p86541 +sg25270 +S'Thomas Rowlandson' +p86542 +sa(dp86543 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1807' +p86544 +sg25268 +S'Directions to Footmen' +p86545 +sg25270 +S'Thomas Rowlandson' +p86546 +sa(dp86547 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86548 +sg25268 +S'The Corsican Tiger at Bay' +p86549 +sg25270 +S'Thomas Rowlandson' +p86550 +sa(dp86551 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86552 +sg25268 +S'The Art of Ingeniously Tormenting' +p86553 +sg25270 +S'Thomas Rowlandson' +p86554 +sa(dp86555 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86556 +sg25268 +S'Jumping Quakers' +p86557 +sg25270 +S'Thomas Rowlandson' +p86558 +sa(dp86559 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86560 +sg25268 +S"The Welsh Sailor's Mistake" +p86561 +sg25270 +S'Thomas Rowlandson' +p86562 +sa(dp86563 +g25268 +S'Royal Cock Pit' +p86564 +sg25270 +S'Thomas Rowlandson' +p86565 +sg25273 +S'hand-colored etching' +p86566 +sg25275 +S'published 1808' +p86567 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077dd.jpg' +p86568 +sg25267 +g27 +sa(dp86569 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86570 +sg25268 +S'Cracking a Joke' +p86571 +sg25270 +S'Thomas Rowlandson' +p86572 +sa(dp86573 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p86574 +sg25268 +S'The Huntsman Rising; The Gamester Going to Bed' +p86575 +sg25270 +S'Thomas Rowlandson' +p86576 +sa(dp86577 +g25268 +S'The Little Mast' +p86578 +sg25270 +S'James McNeill Whistler' +p86579 +sg25273 +S'etching' +p86580 +sg25275 +S'1880' +p86581 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab40.jpg' +p86582 +sg25267 +g27 +sa(dp86583 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86584 +sg25268 +S'A Bill of Fare for Bond Street Epicures' +p86585 +sg25270 +S'Thomas Rowlandson' +p86586 +sa(dp86587 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86588 +sg25268 +S'A Bill of Fare for Bond Street Epicures' +p86589 +sg25270 +S'Thomas Rowlandson' +p86590 +sa(dp86591 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86592 +sg25268 +S'The Progress of the Emperor Napoleon' +p86593 +sg25270 +S'Thomas Rowlandson' +p86594 +sa(dp86595 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p86596 +sg25268 +S'Refinement of Language' +p86597 +sg25270 +S'Thomas Rowlandson' +p86598 +sa(dp86599 +g25268 +S'The Corsican Spider in his Web' +p86600 +sg25270 +S'Thomas Rowlandson' +p86601 +sg25273 +S'hand-colored etching' +p86602 +sg25275 +S'published 1808' +p86603 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007787.jpg' +p86604 +sg25267 +g27 +sa(dp86605 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86606 +sg25268 +S'The Corsican Nurse soothing the Infants of Spain' +p86607 +sg25270 +S'Thomas Rowlandson' +p86608 +sa(dp86609 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86610 +sg25268 +S'Volunteer Wit, or Not Enough for a Prime' +p86611 +sg25270 +S'Thomas Rowlandson' +p86612 +sa(dp86613 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86614 +sg25268 +S'A Glee' +p86615 +sg25270 +S'Thomas Rowlandson' +p86616 +sa(dp86617 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p86618 +sg25268 +S'A Peep at the Gas Lights in Pall Mall' +p86619 +sg25270 +S'Thomas Rowlandson' +p86620 +sa(dp86621 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86622 +sg25268 +S'Miseries of High Life' +p86623 +sg25270 +S'Thomas Rowlandson' +p86624 +sa(dp86625 +g25268 +S'The Little Lagoon' +p86626 +sg25270 +S'James McNeill Whistler' +p86627 +sg25273 +S'etching' +p86628 +sg25275 +S'1879/1880' +p86629 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9f1.jpg' +p86630 +sg25267 +g27 +sa(dp86631 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86632 +sg25268 +S'John Bull Kicking out the old Year' +p86633 +sg25270 +S'Thomas Rowlandson' +p86634 +sa(dp86635 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86636 +sg25268 +S'Joint Stock Street' +p86637 +sg25270 +S'Thomas Rowlandson' +p86638 +sa(dp86639 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1813' +p86640 +sg25268 +S'Business and Pleasure' +p86641 +sg25270 +S'Thomas Rowlandson' +p86642 +sa(dp86643 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86644 +sg25268 +S'John Bull Settling the Opera Disputes' +p86645 +sg25270 +S'Thomas Rowlandson' +p86646 +sa(dp86647 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86648 +sg25268 +S'Advice to a Publican, or A Secret Worth Knowing' +p86649 +sg25270 +S'Thomas Rowlandson' +p86650 +sa(dp86651 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86652 +sg25268 +S'Beau Monde Caricaturist: A Grown Sportsman' +p86653 +sg25270 +S'Thomas Rowlandson' +p86654 +sa(dp86655 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86656 +sg25268 +S'Prophecy Explained' +p86657 +sg25270 +S'Thomas Rowlandson' +p86658 +sa(dp86659 +g25268 +S'Doctor Gallipot placing his Fortune at the feet of his Mistress' +p86660 +sg25270 +S'Thomas Rowlandson' +p86661 +sg25273 +S'hand-colored etching and aquatint' +p86662 +sg25275 +S'1808' +p86663 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007793.jpg' +p86664 +sg25267 +g27 +sa(dp86665 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86666 +sg25268 +S'Notice to Quit, or A Will of Her Own' +p86667 +sg25270 +S'Thomas Rowlandson' +p86668 +sa(dp86669 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86670 +sg25268 +S'Two Women Fighting' +p86671 +sg25270 +S'Thomas Rowlandson' +p86672 +sa(dp86673 +g25268 +S'The Palaces' +p86674 +sg25270 +S'James McNeill Whistler' +p86675 +sg25273 +S'etching and drypoint' +p86676 +sg25275 +S'1880' +p86677 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab48.jpg' +p86678 +sg25267 +g27 +sa(dp86679 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86680 +sg25268 +S'The Unexpected Return Snip in Danger' +p86681 +sg25270 +S'Thomas Rowlandson' +p86682 +sa(dp86683 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86684 +sg25268 +S'The Orator?' +p86685 +sg25270 +S'Thomas Rowlandson' +p86686 +sa(dp86687 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86688 +sg25268 +S'Wonderfully Mended' +p86689 +sg25270 +S'Thomas Rowlandson' +p86690 +sa(dp86691 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86692 +sg25268 +S"King Joe's Reception at Madrid" +p86693 +sg25270 +S'Thomas Rowlandson' +p86694 +sa(dp86695 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86696 +sg25268 +S'A Spanish Passport to France' +p86697 +sg25270 +S'Thomas Rowlandson' +p86698 +sa(dp86699 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86700 +sg25268 +S'The Sweet Little Girl that I Love' +p86701 +sg25270 +S'Thomas Rowlandson' +p86702 +sa(dp86703 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1815' +p86704 +sg25268 +S'Female Politacians' +p86705 +sg25270 +S'Thomas Rowlandson' +p86706 +sa(dp86707 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86708 +sg25268 +S"King Joe's Retreat from Madrid" +p86709 +sg25270 +S'Thomas Rowlandson' +p86710 +sa(dp86711 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86712 +sg25268 +S"Horrid Visions, or Nappy Napp'd at Last" +p86713 +sg25270 +S'Thomas Rowlandson' +p86714 +sa(dp86715 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86716 +sg25268 +S'A Hard Passage, or Boney Playing Base on the Continent' +p86717 +sg25270 +S'Thomas Rowlandson' +p86718 +sa(dp86719 +g25268 +S'The Doorway' +p86720 +sg25270 +S'James McNeill Whistler' +p86721 +sg25273 +S'etching' +p86722 +sg25275 +S'1880' +p86723 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab43.jpg' +p86724 +sg25267 +g27 +sa(dp86725 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86726 +sg25268 +S'Pope Joe Receiving a Treat of Spanish Olives' +p86727 +sg25270 +S'Thomas Rowlandson' +p86728 +sa(dp86729 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86730 +sg25268 +S'We Fly by Night, or The Free Booters Intercepted' +p86731 +sg25270 +S'Thomas Rowlandson' +p86732 +sa(dp86733 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86734 +sg25268 +S'King Joe on his Spanish Donkey' +p86735 +sg25270 +S'Thomas Rowlandson' +p86736 +sa(dp86737 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86738 +sg25268 +S'King Joe & Co. Making the Most of His Time' +p86739 +sg25270 +S'Thomas Rowlandson' +p86740 +sa(dp86741 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86742 +sg25268 +S'Brother Joe between Two Fires' +p86743 +sg25270 +S'Thomas Rowlandson' +p86744 +sa(dp86745 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86746 +sg25268 +S'Nap and His Partner Joe' +p86747 +sg25270 +S'Thomas Rowlandson' +p86748 +sa(dp86749 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86750 +sg25268 +S"The Mother's Hope" +p86751 +sg25270 +S'Thomas Rowlandson' +p86752 +sa(dp86753 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86754 +sg25268 +S'Accommodation, or Lodgings to Let Portsmouth' +p86755 +sg25270 +S'Thomas Rowlandson' +p86756 +sa(dp86757 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p86758 +sg25268 +S'Off She Goes' +p86759 +sg25270 +S'Thomas Rowlandson' +p86760 +sa(dp86761 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p86762 +sg25268 +S'The Bull and Mouth' +p86763 +sg25270 +S'Thomas Rowlandson' +p86764 +sa(dp86765 +g25268 +S'The Piazzetta' +p86766 +sg25270 +S'James McNeill Whistler' +p86767 +sg25273 +S'etching and drypoint' +p86768 +sg25275 +S'1880' +p86769 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bd8.jpg' +p86770 +sg25267 +g27 +sa(dp86771 +g25268 +S'Butterfly Hunting' +p86772 +sg25270 +S'Thomas Rowlandson' +p86773 +sg25273 +S'hand-colored etching' +p86774 +sg25275 +S'1806' +p86775 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f7f.jpg' +p86776 +sg25267 +g27 +sa(dp86777 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p86778 +sg25268 +S'Napoleon the Little in a Rage with His Great French Eagle' +p86779 +sg25270 +S'Thomas Rowlandson' +p86780 +sa(dp86781 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86782 +sg25268 +S'Billingsgate at Bayonne' +p86783 +sg25270 +S'Thomas Rowlandson' +p86784 +sa(dp86785 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86786 +sg25268 +S'Nap and His Friends in Their Glory' +p86787 +sg25270 +S'Thomas Rowlandson' +p86788 +sa(dp86789 +g25273 +S'aquatint' +p86790 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86791 +sg25268 +S'Gaming House' +p86792 +sg25270 +S'Thomas Rowlandson' +p86793 +sa(dp86794 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86795 +sg25268 +S'The Fox and the Grapes' +p86796 +sg25270 +S'Thomas Rowlandson' +p86797 +sa(dp86798 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86799 +sg25268 +S'The Consultation, or Last Hope' +p86800 +sg25270 +S'Thomas Rowlandson' +p86801 +sa(dp86802 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p86803 +sg25268 +S'From the Desk to the Throne' +p86804 +sg25270 +S'Thomas Rowlandson' +p86805 +sa(dp86806 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1808' +p86807 +sg25268 +S'The Anatomy of Melancholy' +p86808 +sg25270 +S'Thomas Rowlandson' +p86809 +sa(dp86810 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86811 +sg25268 +S'Votaries of Fashion in the Temple of Folly' +p86812 +sg25270 +S'Thomas Rowlandson' +p86813 +sa(dp86814 +g25268 +S'The Traghetto, No.II' +p86815 +sg25270 +S'James McNeill Whistler' +p86816 +sg25273 +S'etching and drypoint' +p86817 +sg25275 +S'1880' +p86818 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab46.jpg' +p86819 +sg25267 +g27 +sa(dp86820 +g25268 +S'The Hunt' +p86821 +sg25270 +S'Thomas Rowlandson' +p86822 +sg25273 +S'hand-colored etching' +p86823 +sg25275 +S'1808' +p86824 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d54.jpg' +p86825 +sg25267 +g27 +sa(dp86826 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86827 +sg25268 +S'The Aukward Squad, or The Enraged Sergeant' +p86828 +sg25270 +S'Thomas Rowlandson' +p86829 +sa(dp86830 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86831 +sg25268 +S'Mrs. Hovendon' +p86832 +sg25270 +S'Thomas Rowlandson' +p86833 +sa(dp86834 +g25273 +S'bound album: original contents: 113 etchings and engravings, some prints being removed from the volume; see separate entries for current locations' +p86835 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86836 +sg25268 +S'Caricatures (volume IV)' +p86837 +sg25270 +S'Thomas Rowlandson' +p86838 +sa(dp86839 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86840 +sg25268 +S'Mrs. Mary Ann Clarke' +p86841 +sg25270 +S'Thomas Rowlandson' +p86842 +sa(dp86843 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86844 +sg25268 +S'Mrs. Favery' +p86845 +sg25270 +S'Thomas Rowlandson' +p86846 +sa(dp86847 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86848 +sg25268 +S'Mrs. Taylor' +p86849 +sg25270 +S'Thomas Rowlandson' +p86850 +sa(dp86851 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86852 +sg25268 +S'Dr. Donovan' +p86853 +sg25270 +S'Thomas Rowlandson' +p86854 +sa(dp86855 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86856 +sg25268 +S'His Royal Highness, the Duke of York' +p86857 +sg25270 +S'Thomas Rowlandson' +p86858 +sa(dp86859 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86860 +sg25268 +S'Lord Folkstone' +p86861 +sg25270 +S'Thomas Rowlandson' +p86862 +sa(dp86863 +g25268 +S'The Riva, No.I' +p86864 +sg25270 +S'James McNeill Whistler' +p86865 +sg25273 +S'etching' +p86866 +sg25275 +S'1879/1880' +p86867 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab41.jpg' +p86868 +sg25267 +g27 +sa(dp86869 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86870 +sg25268 +S'Mr. Taylor' +p86871 +sg25270 +S'Thomas Rowlandson' +p86872 +sa(dp86873 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86874 +sg25268 +S"Dr. O'Meara" +p86875 +sg25270 +S'Thomas Rowlandson' +p86876 +sa(dp86877 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86878 +sg25268 +S'Captain Huxley Sandon' +p86879 +sg25270 +S'Thomas Rowlandson' +p86880 +sa(dp86881 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86882 +sg25268 +S'Col. Gordon' +p86883 +sg25270 +S'Thomas Rowlandson' +p86884 +sa(dp86885 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86886 +sg25268 +S'His Royal Highness, the Duke of York' +p86887 +sg25270 +S'Thomas Rowlandson' +p86888 +sa(dp86889 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86890 +sg25268 +S'Sir Francis Burdett Bart.' +p86891 +sg25270 +S'Thomas Rowlandson' +p86892 +sa(dp86893 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86894 +sg25268 +S'Benjamin Towne' +p86895 +sg25270 +S'Thomas Rowlandson' +p86896 +sa(dp86897 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86898 +sg25268 +S'General Clavering' +p86899 +sg25270 +S'Thomas Rowlandson' +p86900 +sa(dp86901 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86902 +sg25268 +S'William Dowler, Esq.' +p86903 +sg25270 +S'Thomas Rowlandson' +p86904 +sa(dp86905 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86906 +sg25268 +S'Col. Wardle' +p86907 +sg25270 +S'Thomas Rowlandson' +p86908 +sa(dp86909 +g25268 +S'Two Doorways' +p86910 +sg25270 +S'James McNeill Whistler' +p86911 +sg25273 +S'etching in brownish-black ink on' +p86912 +sg25275 +S'1880' +p86913 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab50.jpg' +p86914 +sg25267 +g27 +sa(dp86915 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86916 +sg25268 +S'Gwyllyn Lloyd Wardle, Esq.' +p86917 +sg25270 +S'Thomas Rowlandson' +p86918 +sa(dp86919 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p86920 +sg25268 +S'Launching a Frigate' +p86921 +sg25270 +S'Thomas Rowlandson' +p86922 +sa(dp86923 +g25268 +S'Sports of a Country Fair' +p86924 +sg25270 +S'Thomas Rowlandson' +p86925 +sg25273 +S'hand-colored etching' +p86926 +sg25275 +S'published 1810' +p86927 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000778d.jpg' +p86928 +sg25267 +g27 +sa(dp86929 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p86930 +sg25268 +S'Traveler Refreshed in a Stagnet Pool' +p86931 +sg25270 +S'Thomas Rowlandson' +p86932 +sa(dp86933 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p86934 +sg25268 +S'Dissapointed Epicures' +p86935 +sg25270 +S'Thomas Rowlandson' +p86936 +sa(dp86937 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p86938 +sg25268 +S'A Plan for General Reform' +p86939 +sg25270 +S'Thomas Rowlandson' +p86940 +sa(dp86941 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1811' +p86942 +sg25268 +S'Awkward Squads Studying the Graces' +p86943 +sg25270 +S'Thomas Rowlandson' +p86944 +sa(dp86945 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p86946 +sg25268 +S"The Pope's Excomunication of Buonaparte" +p86947 +sg25270 +S'Thomas Rowlandson' +p86948 +sa(dp86949 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p86950 +sg25268 +S"The Old Woman's Complaint" +p86951 +sg25270 +S'Thomas Rowlandson' +p86952 +sa(dp86953 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86954 +sg25268 +S'An Application for a Seat in Parliament' +p86955 +sg25270 +S'Thomas Rowlandson' +p86956 +sa(dp86957 +g25268 +S'The Beggars' +p86958 +sg25270 +S'James McNeill Whistler' +p86959 +sg25273 +S'etching' +p86960 +sg25275 +S'1879/1880' +p86961 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab4d.jpg' +p86962 +sg25267 +g27 +sa(dp86963 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86964 +sg25268 +S'A Going! A Going!!!' +p86965 +sg25270 +S'Thomas Rowlandson' +p86966 +sa(dp86967 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86968 +sg25268 +S'The Ass Monkey Club' +p86969 +sg25270 +S'Thomas Rowlandson' +p86970 +sa(dp86971 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86972 +sg25268 +S'The Wooden Leg or Careful Landlady' +p86973 +sg25270 +S'Thomas Rowlandson' +p86974 +sa(dp86975 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p86976 +sg25268 +S'A Visit to the Synagogue' +p86977 +sg25270 +S'Thomas Rowlandson' +p86978 +sa(dp86979 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1813' +p86980 +sg25268 +S'Giving Up the Ghost or One Too Many' +p86981 +sg25270 +S'Thomas Rowlandson' +p86982 +sa(dp86983 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p86984 +sg25268 +S'The Mistake' +p86985 +sg25270 +S'Thomas Rowlandson' +p86986 +sa(dp86987 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p86988 +sg25268 +S'The Hopes of the Family' +p86989 +sg25270 +S'Thomas Rowlandson' +p86990 +sa(dp86991 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p86992 +sg25268 +S'A Tit Bit for a Strong Stomach' +p86993 +sg25270 +S'Thomas Rowlandson' +p86994 +sa(dp86995 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1812' +p86996 +sg25268 +S'A Visit to the Doctor' +p86997 +sg25270 +S'Thomas Rowlandson' +p86998 +sa(dp86999 +g25268 +S'The Boxes' +p87000 +sg25270 +S'Thomas Rowlandson' +p87001 +sg25273 +S'hand-colored etching' +p87002 +sg25275 +S'published 1809' +p87003 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007795.jpg' +p87004 +sg25267 +g27 +sa(dp87005 +g25268 +S'The Mast' +p87006 +sg25270 +S'James McNeill Whistler' +p87007 +sg25273 +S'etching and drypoint' +p87008 +sg25275 +S'1879/1880' +p87009 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab49.jpg' +p87010 +sg25267 +g27 +sa(dp87011 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87012 +sg25268 +S'The Triumverate of Gloucester Place' +p87013 +sg25270 +S'Thomas Rowlandson' +p87014 +sa(dp87015 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87016 +sg25268 +S'The Magician' +p87017 +sg25270 +S'Thomas Rowlandson' +p87018 +sa(dp87019 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87020 +sg25268 +S'Dissolution of a Partnership' +p87021 +sg25270 +S'Thomas Rowlandson' +p87022 +sa(dp87023 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87024 +sg25268 +S'The York Magician' +p87025 +sg25270 +S'Thomas Rowlandson' +p87026 +sa(dp87027 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87028 +sg25268 +S'Chelsea Parade' +p87029 +sg25270 +S'Thomas Rowlandson' +p87030 +sa(dp87031 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87032 +sg25268 +S'Sampson Asleep on the Lap of Dalilah' +p87033 +sg25270 +S'Thomas Rowlandson' +p87034 +sa(dp87035 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87036 +sg25268 +S'Wednesday March the 8th, 1809' +p87037 +sg25270 +S'Thomas Rowlandson' +p87038 +sa(dp87039 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87040 +sg25268 +S'A Parliamentary Toast' +p87041 +sg25270 +S'Thomas Rowlandson' +p87042 +sa(dp87043 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87044 +sg25268 +S'The Triumverate of Gloucester Place' +p87045 +sg25270 +S'Thomas Rowlandson' +p87046 +sa(dp87047 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87048 +sg25268 +S"The Prodigal Son's Resignation" +p87049 +sg25270 +S'Thomas Rowlandson' +p87050 +sa(dp87051 +g25268 +S'Doorway and Vine' +p87052 +sg25270 +S'James McNeill Whistler' +p87053 +sg25273 +S'etching' +p87054 +sg25275 +S'1879-1880' +p87055 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab52.jpg' +p87056 +sg25267 +g27 +sa(dp87057 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87058 +sg25268 +S'The Champion of Oakhampton Attacking the Hydra of Gloucester Place' +p87059 +sg25270 +S'Thomas Rowlandson' +p87060 +sa(dp87061 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87062 +sg25268 +S'The Resignation, or John Bull Over-whelmed with Grief' +p87063 +sg25270 +S'Thomas Rowlandson' +p87064 +sa(dp87065 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87066 +sg25268 +S'Dissolution of Partnership' +p87067 +sg25270 +S'Thomas Rowlandson' +p87068 +sa(dp87069 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87070 +sg25268 +S'The Parson and the Clarke' +p87071 +sg25270 +S'Thomas Rowlandson' +p87072 +sa(dp87073 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87074 +sg25268 +S'The Book with the Seven Seals' +p87075 +sg25270 +S'Thomas Rowlandson' +p87076 +sa(dp87077 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87078 +sg25268 +S'A Pilgrimage from Surry to Gloucester' +p87079 +sg25270 +S'Thomas Rowlandson' +p87080 +sa(dp87081 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87082 +sg25268 +S'The Parson and the Clarke' +p87083 +sg25270 +S'Thomas Rowlandson' +p87084 +sa(dp87085 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87086 +sg25268 +S"The Road to Preferment through Clarke's Passage" +p87087 +sg25270 +S'Thomas Rowlandson' +p87088 +sa(dp87089 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87090 +sg25268 +S"A General Discharge, or The Darling Angel's Finishing Stroke" +p87091 +sg25270 +S'Thomas Rowlandson' +p87092 +sa(dp87093 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87094 +sg25268 +S'The Burning Shame' +p87095 +sg25270 +S'Thomas Rowlandson' +p87096 +sa(dp87097 +g25268 +S'San Biagio' +p87098 +sg25270 +S'James McNeill Whistler' +p87099 +sg25273 +S'etching' +p87100 +sg25275 +S'1879/1880' +p87101 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab4b.jpg' +p87102 +sg25267 +g27 +sa(dp87103 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87104 +sg25268 +S'The Ambassador of Morocco on a Special Embassy' +p87105 +sg25270 +S'Thomas Rowlandson' +p87106 +sa(dp87107 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87108 +sg25268 +S'All for Love, or A Scene at Weymouth' +p87109 +sg25270 +S'Thomas Rowlandson' +p87110 +sa(dp87111 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87112 +sg25268 +S'An Unexpected Meeting' +p87113 +sg25270 +S'Thomas Rowlandson' +p87114 +sa(dp87115 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87116 +sg25268 +S"Mrs. Clarke's Farewell to Her Audience" +p87117 +sg25270 +S'Thomas Rowlandson' +p87118 +sa(dp87119 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87120 +sg25268 +S'The York March' +p87121 +sg25270 +S'Thomas Rowlandson' +p87122 +sa(dp87123 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87124 +sg25268 +S'The Champion of Oakhampton Attacking the Hydra of Gloucester Place' +p87125 +sg25270 +S'Thomas Rowlandson' +p87126 +sa(dp87127 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87128 +sg25268 +S'Cochrane and Congreve Sauce for French Presumption' +p87129 +sg25270 +S'Thomas Rowlandson' +p87130 +sa(dp87131 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87132 +sg25268 +S'A Grose Way of Discharging the Debt of a Contractor' +p87133 +sg25270 +S'Thomas Rowlandson' +p87134 +sa(dp87135 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87136 +sg25268 +S'Plan for a New Road to Preferment' +p87137 +sg25270 +S'Thomas Rowlandson' +p87138 +sa(dp87139 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87140 +sg25268 +S'Plan of the Old Road to Preferment' +p87141 +sg25270 +S'Thomas Rowlandson' +p87142 +sa(dp87143 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87144 +sg25268 +S'The Quaker and the Clarke' +p87145 +sg25270 +S'Thomas Rowlandson' +p87146 +sa(dp87147 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87148 +sg25268 +S'Burning the Books' +p87149 +sg25270 +S'Thomas Rowlandson' +p87150 +sa(dp87151 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87152 +sg25268 +S"Doctor O'Meara's Return to His Family" +p87153 +sg25270 +S'Thomas Rowlandson' +p87154 +sa(dp87155 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87156 +sg25268 +S"A General Discharge, or The Darling Angel's Finishing Stroke" +p87157 +sg25270 +S'Thomas Rowlandson' +p87158 +sa(dp87159 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87160 +sg25268 +S'Colonel Wardles Exhibition of Extracting Bubbles from Saline Particles' +p87161 +sg25270 +S'Thomas Rowlandson' +p87162 +sa(dp87163 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87164 +sg25268 +S'This is the House in Gloucester Place: No. 1' +p87165 +sg25270 +S'Thomas Rowlandson' +p87166 +sa(dp87167 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87168 +sg25268 +S'This is the House in Gloucester Place: No. 2' +p87169 +sg25270 +S'Thomas Rowlandson' +p87170 +sa(dp87171 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87172 +sg25268 +S'A Parliamentary Toast' +p87173 +sg25270 +S'Thomas Rowlandson' +p87174 +sa(dp87175 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87176 +sg25268 +S'A York Address to the Whale, Caught lately off Gravesend' +p87177 +sg25270 +S'Thomas Rowlandson' +p87178 +sa(dp87179 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87180 +sg25268 +S'Days of Prosperity in Gloucester Place' +p87181 +sg25270 +S'Thomas Rowlandson' +p87182 +sa(dp87183 +g25268 +S'Turkeys' +p87184 +sg25270 +S'James McNeill Whistler' +p87185 +sg25273 +S'etching and drypoint' +p87186 +sg25275 +S'1880' +p87187 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9fb.jpg' +p87188 +sg25267 +g27 +sa(dp87189 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87190 +sg25268 +S'The Sick Lion and the Asses' +p87191 +sg25270 +S'Thomas Rowlandson' +p87192 +sa(dp87193 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87194 +sg25268 +S'The York Dilly, or The Triumph of Innocence' +p87195 +sg25270 +S'Thomas Rowlandson' +p87196 +sa(dp87197 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87198 +sg25268 +S'John Bull and the Genius of Corruption' +p87199 +sg25270 +S'Thomas Rowlandson' +p87200 +sa(dp87201 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87202 +sg25268 +S'Hell Broke Loose, or The Devil to Pay among the Darling Angels' +p87203 +sg25270 +S'Thomas Rowlandson' +p87204 +sa(dp87205 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87206 +sg25268 +S'The Plot Thickens, or Diamond Cut Diamond' +p87207 +sg25270 +S'Thomas Rowlandson' +p87208 +sa(dp87209 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87210 +sg25268 +S'An Old Catch, Newly Revived' +p87211 +sg25270 +S'Thomas Rowlandson' +p87212 +sa(dp87213 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87214 +sg25268 +S'Amusement for the Recess, or The Devil to Pay' +p87215 +sg25270 +S'Thomas Rowlandson' +p87216 +sa(dp87217 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p87218 +sg25268 +S'Caricature Magazine' +p87219 +sg25270 +S'Thomas Rowlandson' +p87220 +sa(dp87221 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87222 +sg25268 +S'The Clarke Cutter, or Rowing in the Same Boat' +p87223 +sg25270 +S'Thomas Rowlandson' +p87224 +sa(dp87225 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87226 +sg25268 +S'The Bill of Wrights, or The Patriot Alarmed' +p87227 +sg25270 +S'Thomas Rowlandson' +p87228 +sa(dp87229 +g25268 +S'Fruit-Stall' +p87230 +sg25270 +S'James McNeill Whistler' +p87231 +sg25273 +S'etching and drypoint' +p87232 +sg25275 +S'1880' +p87233 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa00.jpg' +p87234 +sg25267 +g27 +sa(dp87235 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87236 +sg25268 +S'The Return from the Grand Expedition' +p87237 +sg25270 +S'Thomas Rowlandson' +p87238 +sa(dp87239 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87240 +sg25268 +S'A Grand Procession in Honor of the Expedition' +p87241 +sg25270 +S'Thomas Rowlandson' +p87242 +sa(dp87243 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87244 +sg25268 +S"General Cheathem's Marvelous Return from the Exhibition of Fireworks" +p87245 +sg25270 +S'Thomas Rowlandson' +p87246 +sa(dp87247 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87248 +sg25268 +S'Preparations for the Jubilee or Theatricals Extraordinary' +p87249 +sg25270 +S'Thomas Rowlandson' +p87250 +sa(dp87251 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87252 +sg25268 +S'This is the House that Jack Built' +p87253 +sg25270 +S'Thomas Rowlandson' +p87254 +sa(dp87255 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87256 +sg25268 +S'More of the Clarke or Fresh Accusations' +p87257 +sg25270 +S'Thomas Rowlandson' +p87258 +sa(dp87259 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87260 +sg25268 +S'The Head of the Family in Good Humor' +p87261 +sg25270 +S'Thomas Rowlandson' +p87262 +sa(dp87263 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87264 +sg25268 +S'All for Love, or A Scene at Weymouth; An Unexpected Meeting' +p87265 +sg25270 +S'Thomas Rowlandson' +p87266 +sa(dp87267 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87268 +sg25268 +S'The Statue to be Disposed of' +p87269 +sg25270 +S'Thomas Rowlandson' +p87270 +sa(dp87271 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87272 +sg25268 +S'Original Plan for a Popular Monument' +p87273 +sg25270 +S'Thomas Rowlandson' +p87274 +sa(dp87275 +g25268 +S'San Giorgio' +p87276 +sg25270 +S'James McNeill Whistler' +p87277 +sg25273 +S'etching' +p87278 +sg25275 +S'1880' +p87279 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab5d.jpg' +p87280 +sg25267 +g27 +sa(dp87281 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87282 +sg25268 +S'Yorkshire Hieroglyphics: No. 1' +p87283 +sg25270 +S'Thomas Rowlandson' +p87284 +sa(dp87285 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87286 +sg25268 +S'Yorkshire Hieroglyphics: No. 2' +p87287 +sg25270 +S'Thomas Rowlandson' +p87288 +sa(dp87289 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87290 +sg25268 +S'Yorkshire Hieroglyphics: No. 3' +p87291 +sg25270 +S'Thomas Rowlandson' +p87292 +sa(dp87293 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87294 +sg25268 +S"Mrs. Clarke's Last Effort" +p87295 +sg25270 +S'Thomas Rowlandson' +p87296 +sa(dp87297 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87298 +sg25268 +S'The Candle of Reform' +p87299 +sg25270 +S'Thomas Rowlandson' +p87300 +sa(dp87301 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87302 +sg25268 +S"Mrs. Clarke's Levee; The Ambassador of Morocco or a Special Embassy" +p87303 +sg25270 +S'Thomas Rowlandson' +p87304 +sa(dp87305 +g25273 +S'(artist after)' +p87306 +sg25267 +g27 +sg25275 +S'\n' +p87307 +sg25268 +S'A Mad Dog in a Coffee House' +p87308 +sg25270 +S'Artist Information (' +p87309 +sa(dp87310 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87311 +sg25268 +S'A Piece Offering' +p87312 +sg25270 +S'Thomas Rowlandson' +p87313 +sa(dp87314 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87315 +sg25268 +S'The Hopes of the Nation or New Armorial Bearings for John Bull' +p87316 +sg25270 +S'Thomas Rowlandson' +p87317 +sa(dp87318 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87319 +sg25268 +S"The Modern Babel or Giants Crush'd by a Weight of Evidence" +p87320 +sg25270 +S'Thomas Rowlandson' +p87321 +sa(dp87322 +g25268 +S'Nocturne: Palaces' +p87323 +sg25270 +S'James McNeill Whistler' +p87324 +sg25273 +S'etching and drypoint in brownish-black ink' +p87325 +sg25275 +S'1879/1880' +p87326 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab59.jpg' +p87327 +sg25267 +g27 +sa(dp87328 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87329 +sg25268 +S'Farmer Blunts Apology' +p87330 +sg25270 +S'Thomas Rowlandson' +p87331 +sa(dp87332 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87333 +sg25268 +S'Boneys Broken Bridge' +p87334 +sg25270 +S'Thomas Rowlandson' +p87335 +sa(dp87336 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87337 +sg25268 +S'The Bishop and his Clarke or a Peep into Paradise' +p87338 +sg25270 +S'Thomas Rowlandson' +p87339 +sa(dp87340 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87341 +sg25268 +S"St. Valentine's Day or John Bull Interceptinga Letter to his Wife" +p87342 +sg25270 +S'Thomas Rowlandson' +p87343 +sa(dp87344 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87345 +sg25268 +S'The Flower of the City' +p87346 +sg25270 +S'Thomas Rowlandson' +p87347 +sa(dp87348 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1813' +p87349 +sg25268 +S'The Coblers Cure for a Scolding Wife' +p87350 +sg25270 +S'Thomas Rowlandson' +p87351 +sa(dp87352 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87353 +sg25268 +S'A View in Camelford, Cornwall' +p87354 +sg25270 +S'Thomas Rowlandson' +p87355 +sa(dp87356 +g25273 +S'bound volume: original contents: 168 etchings and engravings, some prints being removed from the volume; see separate entries for current locations' +p87357 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87358 +sg25268 +S'Caricatures (volume V)' +p87359 +sg25270 +S'Thomas Rowlandson' +p87360 +sa(dp87361 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87362 +sg25268 +S'The Seat of Mr. Mitchell, Cornwall' +p87363 +sg25270 +S'Thomas Rowlandson' +p87364 +sa(dp87365 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87366 +sg25268 +S'A Cottage in the Dutchy of Cornwall' +p87367 +sg25270 +S'Thomas Rowlandson' +p87368 +sa(dp87369 +g25268 +S'Long Lagoon' +p87370 +sg25270 +S'James McNeill Whistler' +p87371 +sg25273 +S'etching and drypoint' +p87372 +sg25275 +S'1880' +p87373 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa05.jpg' +p87374 +sg25267 +g27 +sa(dp87375 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87376 +sg25268 +S'View of St. Udy, Cornwall' +p87377 +sg25270 +S'Thomas Rowlandson' +p87378 +sa(dp87379 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87380 +sg25268 +S'A Design for a Monument' +p87381 +sg25270 +S'Thomas Rowlandson' +p87382 +sa(dp87383 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87384 +sg25268 +S'Stamford, Lincolnshire' +p87385 +sg25270 +S'Thomas Rowlandson' +p87386 +sa(dp87387 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87388 +sg25268 +S'Fowey, Cornwall' +p87389 +sg25270 +S'Thomas Rowlandson' +p87390 +sa(dp87391 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87392 +sg25268 +S'A View near Richmond' +p87393 +sg25270 +S'Thomas Rowlandson' +p87394 +sa(dp87395 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87396 +sg25268 +S'A View in Devonshire' +p87397 +sg25270 +S'Thomas Rowlandson' +p87398 +sa(dp87399 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87400 +sg25268 +S'Song of Commodore Curtis' +p87401 +sg25270 +S'Thomas Rowlandson' +p87402 +sa(dp87403 +g25268 +S'Insurable Cattle' +p87404 +sg25270 +S'Thomas Rowlandson' +p87405 +sg25273 +S'hand-colored etching' +p87406 +sg25275 +S'published 1809' +p87407 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077df.jpg' +p87408 +sg25267 +g27 +sa(dp87409 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87410 +sg25268 +S'Taunton Vale, Somersetshire' +p87411 +sg25270 +S'Thomas Rowlandson' +p87412 +sa(dp87413 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87414 +sg25268 +S'Temple at Strawberry Hill' +p87415 +sg25270 +S'Thomas Rowlandson' +p87416 +sa(dp87417 +g25268 +S'The Bridge' +p87418 +sg25270 +S'James McNeill Whistler' +p87419 +sg25273 +S'etching' +p87420 +sg25275 +S'1879/1880' +p87421 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab58.jpg' +p87422 +sg25267 +g27 +sa(dp87423 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87424 +sg25268 +S'The Speaking Picture' +p87425 +sg25270 +S'Thomas Rowlandson' +p87426 +sa(dp87427 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87428 +sg25268 +S'The Speaking Picture (or Le tableau parlant)' +p87429 +sg25270 +S'Thomas Rowlandson' +p87430 +sa(dp87431 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87432 +sg25268 +S"White Lion Inn, Ponder's End Middlesex" +p87433 +sg25270 +S'Thomas Rowlandson' +p87434 +sa(dp87435 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87436 +sg25268 +S'View Near Newport, Isle of Wight' +p87437 +sg25270 +S'Thomas Rowlandson' +p87438 +sa(dp87439 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1809' +p87440 +sg25268 +S'A Lump of Innocence' +p87441 +sg25270 +S'Thomas Rowlandson' +p87442 +sa(dp87443 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1805' +p87444 +sg25268 +S'View on the River Camel, Cornwall' +p87445 +sg25270 +S'Thomas Rowlandson' +p87446 +sa(dp87447 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1805' +p87448 +sg25268 +S'Clearing a Wreck on the North Coast of Cornwall' +p87449 +sg25270 +S'Thomas Rowlandson' +p87450 +sa(dp87451 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87452 +sg25268 +S'A Lump of Impertinence' +p87453 +sg25270 +S'Thomas Rowlandson' +p87454 +sa(dp87455 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87456 +sg25268 +S'Don Quixote, Commander-in-Chief' +p87457 +sg25270 +S'Thomas Rowlandson' +p87458 +sa(dp87459 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1805' +p87460 +sg25268 +S'Rouler Moor, Cornwall' +p87461 +sg25270 +S'Thomas Rowlandson' +p87462 +sa(dp87463 +g25268 +S'Upright Venice' +p87464 +sg25270 +S'James McNeill Whistler' +p87465 +sg25273 +S'etching' +p87466 +sg25275 +S'1880' +p87467 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab55.jpg' +p87468 +sg25267 +g27 +sa(dp87469 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1805' +p87470 +sg25268 +S"View on Sir John Morshead's Estate at Blesland near Bodmin, Cornwall" +p87471 +sg25270 +S'Thomas Rowlandson' +p87472 +sa(dp87473 +g25268 +S'Cattle Not Insurable' +p87474 +sg25270 +S'Thomas Rowlandson' +p87475 +sg25273 +S'hand-colored etching and aquatint' +p87476 +sg25275 +S'published 1809' +p87477 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007789.jpg' +p87478 +sg25267 +g27 +sa(dp87479 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1805' +p87480 +sg25268 +S'West Loo, Cornwall' +p87481 +sg25270 +S'Thomas Rowlandson' +p87482 +sa(dp87483 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1805' +p87484 +sg25268 +S'View near Bridport, Dorsetshire' +p87485 +sg25270 +S'Thomas Rowlandson' +p87486 +sa(dp87487 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1807' +p87488 +sg25268 +S"A Calf's Pluck; A Pull'd Turkey; Collard Pig;Rusty Bacon" +p87489 +sg25270 +S'Thomas Rowlandson' +p87490 +sa(dp87491 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87492 +sg25268 +S'Sports of a Country Fair. Part the First' +p87493 +sg25270 +S'Thomas Rowlandson' +p87494 +sa(dp87495 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87496 +sg25268 +S'Fun at the Fair or the Somersetshire Jack Pudding' +p87497 +sg25270 +S'Thomas Rowlandson' +p87498 +sa(dp87499 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87500 +sg25268 +S'Sports of a Country Fair. Part the Second' +p87501 +sg25270 +S'Thomas Rowlandson' +p87502 +sa(dp87503 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87504 +sg25268 +S'Sports of a Country Fair. Part the Third' +p87505 +sg25270 +S'Thomas Rowlandson' +p87506 +sa(dp87507 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87508 +sg25268 +S'Wine Cooper' +p87509 +sg25270 +S'Thomas Rowlandson' +p87510 +sa(dp87511 +g25268 +S'The Riva, No.II' +p87512 +sg25270 +S'James McNeill Whistler' +p87513 +sg25273 +S'etching and drypoint' +p87514 +sg25275 +S'1880' +p87515 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab5c.jpg' +p87516 +sg25267 +g27 +sa(dp87517 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87518 +sg25268 +S'Drayman' +p87519 +sg25270 +S'Thomas Rowlandson' +p87520 +sa(dp87521 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87522 +sg25268 +S'Sweet Lavender' +p87523 +sg25270 +S'Thomas Rowlandson' +p87524 +sa(dp87525 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87526 +sg25268 +S'Raree Show' +p87527 +sg25270 +S'Thomas Rowlandson' +p87528 +sa(dp87529 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87530 +sg25268 +S'Curds and Whey' +p87531 +sg25270 +S'Thomas Rowlandson' +p87532 +sa(dp87533 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87534 +sg25268 +S'Pray Remember the Poor Sweeper' +p87535 +sg25270 +S'Thomas Rowlandson' +p87536 +sa(dp87537 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87538 +sg25268 +S'Old Clothes' +p87539 +sg25270 +S'Thomas Rowlandson' +p87540 +sa(dp87541 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87542 +sg25268 +S'Images' +p87543 +sg25270 +S'Thomas Rowlandson' +p87544 +sa(dp87545 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87546 +sg25268 +S'Last Dying Speech' +p87547 +sg25270 +S'Thomas Rowlandson' +p87548 +sa(dp87549 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87550 +sg25268 +S'Roasted Apples' +p87551 +sg25270 +S'Thomas Rowlandson' +p87552 +sa(dp87553 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87554 +sg25268 +S'Singing Birdss' +p87555 +sg25270 +S'Thomas Rowlandson' +p87556 +sa(dp87557 +g25268 +S'The Balcony' +p87558 +sg25270 +S'James McNeill Whistler' +p87559 +sg25273 +S'etching' +p87560 +sg25275 +S'1879/1880' +p87561 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab98.jpg' +p87562 +sg25267 +g27 +sa(dp87563 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87564 +sg25268 +S'Matches' +p87565 +sg25270 +S'Thomas Rowlandson' +p87566 +sa(dp87567 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87568 +sg25268 +S'Bagpipes' +p87569 +sg25270 +S'Thomas Rowlandson' +p87570 +sa(dp87571 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87572 +sg25268 +S'Grinder' +p87573 +sg25270 +S'Thomas Rowlandson' +p87574 +sa(dp87575 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87576 +sg25268 +S'Coalheavers' +p87577 +sg25270 +S'Thomas Rowlandson' +p87578 +sa(dp87579 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87580 +sg25268 +S'Cucumbers' +p87581 +sg25270 +S'Thomas Rowlandson' +p87582 +sa(dp87583 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87584 +sg25268 +S'Distressed Sailors' +p87585 +sg25270 +S'Thomas Rowlandson' +p87586 +sa(dp87587 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87588 +sg25268 +S'Sweeps' +p87589 +sg25270 +S'Thomas Rowlandson' +p87590 +sa(dp87591 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87592 +sg25268 +S'Easterly Winds or Scudding under Bare Poles' +p87593 +sg25270 +S'Thomas Rowlandson' +p87594 +sa(dp87595 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87596 +sg25268 +S'Easterly Winds or Scudding under Bare Poles' +p87597 +sg25270 +S'Thomas Rowlandson' +p87598 +sa(dp87599 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87600 +sg25268 +S'Doctor Drainbarrel Conveyed Home' +p87601 +sg25270 +S'Thomas Rowlandson' +p87602 +sa(dp87603 +g25268 +S'Fishing-Boat' +p87604 +sg25270 +S'James McNeill Whistler' +p87605 +sg25273 +S'etching and drypoint' +p87606 +sg25275 +S'1880' +p87607 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa03.jpg' +p87608 +sg25267 +g27 +sa(dp87609 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87610 +sg25268 +S'Cooper' +p87611 +sg25270 +S'Thomas Rowlandson' +p87612 +sa(dp87613 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87614 +sg25268 +S'Great News' +p87615 +sg25270 +S'Thomas Rowlandson' +p87616 +sa(dp87617 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87618 +sg25268 +S'Saloop' +p87619 +sg25270 +S'Thomas Rowlandson' +p87620 +sa(dp87621 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87622 +sg25268 +S'Hackney Coachman' +p87623 +sg25270 +S'Thomas Rowlandson' +p87624 +sa(dp87625 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87626 +sg25268 +S'Poodles' +p87627 +sg25270 +S'Thomas Rowlandson' +p87628 +sa(dp87629 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87630 +sg25268 +S'Oysters' +p87631 +sg25270 +S'Thomas Rowlandson' +p87632 +sa(dp87633 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87634 +sg25268 +S"Past one o'clock Watchman" +p87635 +sg25270 +S'Thomas Rowlandson' +p87636 +sa(dp87637 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87638 +sg25268 +S'Milk' +p87639 +sg25270 +S'Thomas Rowlandson' +p87640 +sa(dp87641 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87642 +sg25268 +S'Baskets' +p87643 +sg25270 +S'Thomas Rowlandson' +p87644 +sa(dp87645 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87646 +sg25268 +S'Boxing Match' +p87647 +sg25270 +S'Thomas Rowlandson' +p87648 +sa(dp87649 +g25268 +S'Ponte del Piovan' +p87650 +sg25270 +S'James McNeill Whistler' +p87651 +sg25273 +S'etching and drypoint' +p87652 +sg25275 +S'1880' +p87653 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa23.jpg' +p87654 +sg25267 +g27 +sa(dp87655 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87656 +sg25268 +S'All Hot' +p87657 +sg25270 +S'Thomas Rowlandson' +p87658 +sa(dp87659 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87660 +sg25268 +S'Gardener' +p87661 +sg25270 +S'Thomas Rowlandson' +p87662 +sa(dp87663 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87664 +sg25268 +S'Band Boxes' +p87665 +sg25270 +S'Thomas Rowlandson' +p87666 +sa(dp87667 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87668 +sg25268 +S"Dog's Meat" +p87669 +sg25270 +S'Thomas Rowlandson' +p87670 +sa(dp87671 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87672 +sg25268 +S'Postman' +p87673 +sg25270 +S'Thomas Rowlandson' +p87674 +sa(dp87675 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87676 +sg25268 +S'Billet Doux' +p87677 +sg25270 +S'Thomas Rowlandson' +p87678 +sa(dp87679 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87680 +sg25268 +S'Ballad Singer' +p87681 +sg25270 +S'Thomas Rowlandson' +p87682 +sa(dp87683 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87684 +sg25268 +S'Walnuts to Pickle' +p87685 +sg25270 +S'Thomas Rowlandson' +p87686 +sa(dp87687 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87688 +sg25268 +S'Flounders' +p87689 +sg25270 +S'Thomas Rowlandson' +p87690 +sa(dp87691 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87692 +sg25268 +S"A Table d'Hote or French Ordinary in Paris" +p87693 +sg25270 +S'Thomas Rowlandson' +p87694 +sa(dp87695 +g25268 +S'Garden' +p87696 +sg25270 +S'James McNeill Whistler' +p87697 +sg25273 +S'etching and drypoint' +p87698 +sg25275 +S'1880' +p87699 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bd7.jpg' +p87700 +sg25267 +g27 +sa(dp87701 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87702 +sg25268 +S'The Paris Diligence' +p87703 +sg25270 +S'Thomas Rowlandson' +p87704 +sa(dp87705 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87706 +sg25268 +S'Placard (Lottery Prizes)' +p87707 +sg25270 +S'Thomas Rowlandson' +p87708 +sa(dp87709 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87710 +sg25268 +S'Roasting Jacks' +p87711 +sg25270 +S'Thomas Rowlandson' +p87712 +sa(dp87713 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87714 +sg25268 +S'Strawberries' +p87715 +sg25270 +S'Thomas Rowlandson' +p87716 +sa(dp87717 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87718 +sg25268 +S'Buy My Sweet Roses' +p87719 +sg25270 +S'Thomas Rowlandson' +p87720 +sa(dp87721 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87722 +sg25268 +S'Hot Cross Buns' +p87723 +sg25270 +S'Thomas Rowlandson' +p87724 +sa(dp87725 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87726 +sg25268 +S'Baker' +p87727 +sg25270 +S'Thomas Rowlandson' +p87728 +sa(dp87729 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87730 +sg25268 +S'Tinker' +p87731 +sg25270 +S'Thomas Rowlandson' +p87732 +sa(dp87733 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87734 +sg25268 +S'Snuff (?)' +p87735 +sg25270 +S'Thomas Rowlandson' +p87736 +sa(dp87737 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1820' +p87738 +sg25268 +S'Shoeblack' +p87739 +sg25270 +S'Thomas Rowlandson' +p87740 +sa(dp87741 +g25268 +S'The Rialto' +p87742 +sg25270 +S'James McNeill Whistler' +p87743 +sg25273 +S'etching and drypoint' +p87744 +sg25275 +S'1880' +p87745 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab99.jpg' +p87746 +sg25267 +g27 +sa(dp87747 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87748 +sg25268 +S"Peter Plumb's Diary" +p87749 +sg25270 +S'Thomas Rowlandson' +p87750 +sa(dp87751 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87752 +sg25268 +S'As it Happens, Wits Magazine' +p87753 +sg25270 +S'Thomas Rowlandson' +p87754 +sa(dp87755 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87756 +sg25268 +S'The Sign of the Four Alls' +p87757 +sg25270 +S'Thomas Rowlandson' +p87758 +sa(dp87759 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87760 +sg25268 +S'The Arch Duchess Maria Louisa Going to Take Her Nap' +p87761 +sg25270 +S'Thomas Rowlandson' +p87762 +sa(dp87763 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87764 +sg25268 +S'Dramatic Demireps at their Morning Rehearsal' +p87765 +sg25270 +S'Thomas Rowlandson' +p87766 +sa(dp87767 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87768 +sg25268 +S'Procession of the Cod Company from St. Gilles to Billingsgate' +p87769 +sg25270 +S'Thomas Rowlandson' +p87770 +sa(dp87771 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87772 +sg25268 +S'An Old Ewe Drest Lamb Fashion' +p87773 +sg25270 +S'Thomas Rowlandson' +p87774 +sa(dp87775 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87776 +sg25268 +S'The Dunghill Cock and Game Pullet, or Boney Beat out of the Pit' +p87777 +sg25270 +S'Thomas Rowlandson' +p87778 +sa(dp87779 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87780 +sg25268 +S'Spit Fires' +p87781 +sg25270 +S'Thomas Rowlandson' +p87782 +sa(dp87783 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87784 +sg25268 +S'Spit Fires' +p87785 +sg25270 +S'Thomas Rowlandson' +p87786 +sa(dp87787 +g25268 +S'Long Venice' +p87788 +sg25270 +S'James McNeill Whistler' +p87789 +sg25273 +S'etching' +p87790 +sg25275 +S'1879/1880' +p87791 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab97.jpg' +p87792 +sg25267 +g27 +sa(dp87793 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87794 +sg25268 +S'Bath Races' +p87795 +sg25270 +S'Thomas Rowlandson' +p87796 +sa(dp87797 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87798 +sg25268 +S'The Ghost of a Guinea and Little Pitts' +p87799 +sg25270 +S'Thomas Rowlandson' +p87800 +sa(dp87801 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87802 +sg25268 +S'A Hit at Backgammon' +p87803 +sg25270 +S'Thomas Rowlandson' +p87804 +sa(dp87805 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1799' +p87806 +sg25268 +S'Twopenny Cribbage' +p87807 +sg25270 +S'Thomas Rowlandson' +p87808 +sa(dp87809 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87810 +sg25268 +S'After Sweet Meat Comes Sour Sauce' +p87811 +sg25270 +S'Thomas Rowlandson' +p87812 +sa(dp87813 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87814 +sg25268 +S'The Winding up of the Medical Report of the Walcheren Expedition' +p87815 +sg25270 +S'Thomas Rowlandson' +p87816 +sa(dp87817 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87818 +sg25268 +S'The Borough Mongers Strangled in the Tower' +p87819 +sg25270 +S'Thomas Rowlandson' +p87820 +sa(dp87821 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87822 +sg25268 +S'Love and Dust' +p87823 +sg25270 +S'Thomas Rowlandson' +p87824 +sa(dp87825 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87826 +sg25268 +S'A Bonnet Shop' +p87827 +sg25270 +S'Thomas Rowlandson' +p87828 +sa(dp87829 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87830 +sg25268 +S'A Bait for the Kiddies on the North Road' +p87831 +sg25270 +S'Thomas Rowlandson' +p87832 +sa(dp87833 +g25268 +S'Judith with the Head of Holofernes' +p87834 +sg25270 +S'Artist Information (' +p87835 +sg25273 +S'Italian, c. 1431 - 1506' +p87836 +sg25275 +S'(related artist)' +p87837 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a00062db.jpg' +p87838 +sg25267 +g27 +sa(dp87839 +g25268 +S'Nocturne: Furnace' +p87840 +sg25270 +S'James McNeill Whistler' +p87841 +sg25273 +S'etching and drypoint' +p87842 +sg25275 +S'1880' +p87843 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa1e.jpg' +p87844 +sg25267 +g27 +sa(dp87845 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87846 +sg25268 +S'Rigging out a Smuggler' +p87847 +sg25270 +S'Thomas Rowlandson' +p87848 +sa(dp87849 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87850 +sg25268 +S'A New Cock Wanted' +p87851 +sg25270 +S'Thomas Rowlandson' +p87852 +sa(dp87853 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87854 +sg25268 +S'Kitchen Stuff' +p87855 +sg25270 +S'Thomas Rowlandson' +p87856 +sa(dp87857 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87858 +sg25268 +S'Dropsy Courting Consumption' +p87859 +sg25270 +S'Thomas Rowlandson' +p87860 +sa(dp87861 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87862 +sg25268 +S'Medical Dispatch' +p87863 +sg25270 +S'Thomas Rowlandson' +p87864 +sa(dp87865 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p87866 +sg25268 +S'Mock Turtle; Puff Paste' +p87867 +sg25270 +S'Thomas Rowlandson' +p87868 +sa(dp87869 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87870 +sg25268 +S'Three Weeks after Marriage' +p87871 +sg25270 +S'Thomas Rowlandson' +p87872 +sa(dp87873 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87874 +sg25268 +S'The First Night of My Wedding' +p87875 +sg25270 +S'Thomas Rowlandson' +p87876 +sa(dp87877 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p87878 +sg25268 +S'Tail Piece to Volume Three' +p87879 +sg25270 +S'Thomas Rowlandson' +p87880 +sa(dp87881 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1819' +p87882 +sg25268 +S'A Rough Sketch of the Times' +p87883 +sg25270 +S'Thomas Rowlandson' +p87884 +sa(dp87885 +g25268 +S'Quiet Canal' +p87886 +sg25270 +S'James McNeill Whistler' +p87887 +sg25273 +S'etching and drypoint' +p87888 +sg25275 +S'1880' +p87889 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa20.jpg' +p87890 +sg25267 +g27 +sa(dp87891 +g25268 +S'Dying for Love, or Captain Careless shot flying by a Girl of Fifteen, who Unexpectedly Popped her Head out of a Casement' +p87892 +sg25270 +S'Thomas Rowlandson' +p87893 +sg25273 +S'hand-colored etching' +p87894 +sg25275 +S'1810' +p87895 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000778b.jpg' +p87896 +sg25267 +g27 +sa(dp87897 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1819' +p87898 +sg25268 +S'A Tour to the Lakes' +p87899 +sg25270 +S'Thomas Rowlandson' +p87900 +sa(dp87901 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p87902 +sg25268 +S'The Last Drop' +p87903 +sg25270 +S'Thomas Rowlandson' +p87904 +sa(dp87905 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p87906 +sg25268 +S'Emanuel College, Cambridge' +p87907 +sg25270 +S'Thomas Rowlandson' +p87908 +sa(dp87909 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p87910 +sg25268 +S'Accomodation Ladder' +p87911 +sg25270 +S'Thomas Rowlandson' +p87912 +sa(dp87913 +g25268 +S'Puss in Boots, or General Junot taken by Surprise' +p87914 +sg25270 +S'Thomas Rowlandson' +p87915 +sg25273 +S'hand-colored etching' +p87916 +sg25275 +S'published 1811' +p87917 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077a2.jpg' +p87918 +sg25267 +g27 +sa(dp87919 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p87920 +sg25268 +S'Rural Sports or Game at Quoits' +p87921 +sg25270 +S'Thomas Rowlandson' +p87922 +sa(dp87923 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p87924 +sg25268 +S'Rural Sports, A Milling Match' +p87925 +sg25270 +S'Thomas Rowlandson' +p87926 +sa(dp87927 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p87928 +sg25268 +S'Dinners Drest in the Neatest Manner' +p87929 +sg25270 +S'Thomas Rowlandson' +p87930 +sa(dp87931 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p87932 +sg25268 +S'Distillers Looking into Their own Business' +p87933 +sg25270 +S'Thomas Rowlandson' +p87934 +sa(dp87935 +g25268 +S'La Salute: Dawn' +p87936 +sg25270 +S'James McNeill Whistler' +p87937 +sg25273 +S'etching' +p87938 +sg25275 +S'1879/1880' +p87939 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa24.jpg' +p87940 +sg25267 +g27 +sa(dp87941 +g25268 +S'Rural Sports. Smock Racing' +p87942 +sg25270 +S'Thomas Rowlandson' +p87943 +sg25273 +S'hand-colored etching' +p87944 +sg25275 +S'published 1811' +p87945 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077ac.jpg' +p87946 +sg25267 +g27 +sa(dp87947 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1811' +p87948 +sg25268 +S'The Jockey Club or Newmarket Meeting' +p87949 +sg25270 +S'Thomas Rowlandson' +p87950 +sa(dp87951 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p87952 +sg25268 +S'John Bull at the Italian Opera' +p87953 +sg25270 +S'Thomas Rowlandson' +p87954 +sa(dp87955 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p87956 +sg25268 +S'Boney the Second or the Little Baboon Created to Devour French Monkies' +p87957 +sg25270 +S'Thomas Rowlandson' +p87958 +sa(dp87959 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p87960 +sg25268 +S'Nursing the Spawn of a Tyrant' +p87961 +sg25270 +S'Thomas Rowlandson' +p87962 +sa(dp87963 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1805' +p87964 +sg25268 +S'View in Cornwall (?)' +p87965 +sg25270 +S'Thomas Rowlandson' +p87966 +sa(dp87967 +g25273 +S'(artist after)' +p87968 +sg25267 +g27 +sg25275 +S'\n' +p87969 +sg25268 +S'A Sale of English Beauties in the East Indies' +p87970 +sg25270 +S'Artist Information (' +p87971 +sa(dp87972 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p87973 +sg25268 +S'The Bassoon with a French Horn Accompanyment' +p87974 +sg25270 +S'Thomas Rowlandson' +p87975 +sa(dp87976 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p87977 +sg25268 +S"Here's your potatoes, four full pounds for two pence; Buy my Moss Roses or dainty sweet briar; Light your Honor, Coach unhired; Pray Remember the Blind" +p87978 +sg25270 +S'Thomas Rowlandson' +p87979 +sa(dp87980 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1809' +p87981 +sg25268 +S'Wonders! Wonders! Wonders!' +p87982 +sg25270 +S'Thomas Rowlandson' +p87983 +sa(dp87984 +g25268 +S'Lagoon: Noon' +p87985 +sg25270 +S'James McNeill Whistler' +p87986 +sg25273 +S'etching' +p87987 +sg25275 +S'1879/1880' +p87988 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa26.jpg' +p87989 +sg25267 +g27 +sa(dp87990 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1811' +p87991 +sg25268 +S'A Templar at his Studies' +p87992 +sg25270 +S'Thomas Rowlandson' +p87993 +sa(dp87994 +g25268 +S'Rural Sports or a Cricket Match Extraordinary' +p87995 +sg25270 +S'Thomas Rowlandson' +p87996 +sg25273 +S'hand-colored etching' +p87997 +sg25275 +S'1811' +p87998 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077a8.jpg' +p87999 +sg25267 +g27 +sa(dp88000 +g25268 +S'Rural Sports. Cat in a Bowl. No.1' +p88001 +sg25270 +S'Thomas Rowlandson' +p88002 +sg25273 +S'hand-colored etching' +p88003 +sg25275 +S'published 1811' +p88004 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077a0.jpg' +p88005 +sg25267 +g27 +sa(dp88006 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88007 +sg25268 +S'The Enraged Son of Mars and Timid Tonsor' +p88008 +sg25270 +S'Thomas Rowlandson' +p88009 +sa(dp88010 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88011 +sg25268 +S'The Managers Last Kick or a New Way to Pay old Debts' +p88012 +sg25270 +S'Thomas Rowlandson' +p88013 +sa(dp88014 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88015 +sg25268 +S'Pigeon Hole' +p88016 +sg25270 +S'Thomas Rowlandson' +p88017 +sa(dp88018 +g25268 +S'A French Dentist Shewing a Specimen of his Artificial Teeth and False Palates' +p88019 +sg25270 +S'Thomas Rowlandson' +p88020 +sg25273 +S'hand-colored etching' +p88021 +sg25275 +S'published 1811' +p88022 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077a4.jpg' +p88023 +sg25267 +g27 +sa(dp88024 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88025 +sg25268 +S'She Stoops to Conquer' +p88026 +sg25270 +S'Thomas Rowlandson' +p88027 +sa(dp88028 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88029 +sg25268 +S'Sailors on Horseback' +p88030 +sg25270 +S'Thomas Rowlandson' +p88031 +sa(dp88032 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88033 +sg25268 +S'Pastime in Portugal or a Visit to the Nunnery' +p88034 +sg25270 +S'Thomas Rowlandson' +p88035 +sa(dp88036 +g25268 +S'Wheelwright' +p88037 +sg25270 +S'James McNeill Whistler' +p88038 +sg25273 +S'etching' +p88039 +sg25275 +S'1879/1880' +p88040 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa4e.jpg' +p88041 +sg25267 +g27 +sa(dp88042 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1811' +p88043 +sg25268 +S'Rural Sports or an old Mole Catcher in Full Scent' +p88044 +sg25270 +S'Thomas Rowlandson' +p88045 +sa(dp88046 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1814' +p88047 +sg25268 +S'Rural Sports - Buck Hunting' +p88048 +sg25270 +S'Thomas Rowlandson' +p88049 +sa(dp88050 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88051 +sg25268 +S'College Pranks' +p88052 +sg25270 +S'Thomas Rowlandson' +p88053 +sa(dp88054 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88055 +sg25268 +S'The Gig Shop' +p88056 +sg25270 +S'Thomas Rowlandson' +p88057 +sa(dp88058 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p88059 +sg25268 +S'The Caricature Magazine' +p88060 +sg25270 +S'Thomas Rowlandson' +p88061 +sa(dp88062 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88063 +sg25268 +S'Rural Sports, Balloon Hunting' +p88064 +sg25270 +S'Thomas Rowlandson' +p88065 +sa(dp88066 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88067 +sg25268 +S'Life and Death of the Race Horse' +p88068 +sg25270 +S'Thomas Rowlandson' +p88069 +sa(dp88070 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88071 +sg25268 +S'Six Classes of the Noble and Beautiful Animal, a Horse' +p88072 +sg25270 +S'Thomas Rowlandson' +p88073 +sa(dp88074 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88075 +sg25268 +S'A Sufferer for Decency' +p88076 +sg25270 +S'Thomas Rowlandson' +p88077 +sa(dp88078 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88079 +sg25268 +S'Kitty Careless in Quod' +p88080 +sg25270 +S'Thomas Rowlandson' +p88081 +sa(dp88082 +g25268 +S'Temple' +p88083 +sg25270 +S'James McNeill Whistler' +p88084 +sg25273 +S'etching' +p88085 +sg25275 +S'c. 1880/1881' +p88086 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa52.jpg' +p88087 +sg25267 +g27 +sa(dp88088 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88089 +sg25268 +S'Looking at the Comet Till you get a Criek in the Neck' +p88090 +sg25270 +S'Thomas Rowlandson' +p88091 +sa(dp88092 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88093 +sg25268 +S'Masquerading' +p88094 +sg25270 +S'Thomas Rowlandson' +p88095 +sa(dp88096 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88097 +sg25268 +S'Royal Academy' +p88098 +sg25270 +S'Thomas Rowlandson' +p88099 +sa(dp88100 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88101 +sg25268 +S'A Milk-sop' +p88102 +sg25270 +S'Thomas Rowlandson' +p88103 +sa(dp88104 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88105 +sg25268 +S'The Harmonic Society' +p88106 +sg25270 +S'Thomas Rowlandson' +p88107 +sa(dp88108 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88109 +sg25268 +S'The Anatomist' +p88110 +sg25270 +S'Thomas Rowlandson' +p88111 +sa(dp88112 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88113 +sg25268 +S'A Midwife Going to a Labour' +p88114 +sg25270 +S'Thomas Rowlandson' +p88115 +sa(dp88116 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88117 +sg25268 +S'Summer Amusement, Bug Hunting' +p88118 +sg25270 +S'Thomas Rowlandson' +p88119 +sa(dp88120 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88121 +sg25268 +S'A Sleepy Congregation' +p88122 +sg25270 +S'Thomas Rowlandson' +p88123 +sa(dp88124 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1808' +p88125 +sg25268 +S'Soldiers on a March' +p88126 +sg25270 +S'Thomas Rowlandson' +p88127 +sa(dp88128 +g25268 +S'Lobster-Pots' +p88129 +sg25270 +S'James McNeill Whistler' +p88130 +sg25273 +S'etching' +p88131 +sg25275 +S'c. 1880/1881' +p88132 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa4b.jpg' +p88133 +sg25267 +g27 +sa(dp88134 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88135 +sg25268 +S'Touch for Touch' +p88136 +sg25270 +S'Thomas Rowlandson' +p88137 +sa(dp88138 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1802' +p88139 +sg25268 +S'The Corporal in Good Quarters' +p88140 +sg25270 +S'Thomas Rowlandson' +p88141 +sa(dp88142 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p88143 +sg25268 +S'Catching an Elephant' +p88144 +sg25270 +S'Thomas Rowlandson' +p88145 +sa(dp88146 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88147 +sg25268 +S'English Manner and French Prudence' +p88148 +sg25270 +S'Thomas Rowlandson' +p88149 +sa(dp88150 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88151 +sg25268 +S'A Man of Feeling' +p88152 +sg25270 +S'Thomas Rowlandson' +p88153 +sa(dp88154 +g25268 +S'Modern Antiques' +p88155 +sg25270 +S'Thomas Rowlandson' +p88156 +sg25273 +S'hand-colored etching' +p88157 +sg25275 +S'probably 1811' +p88158 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007798.jpg' +p88159 +sg25267 +g27 +sa(dp88160 +g25273 +S'bound volume: original contents: 168 etchings and engravings, some prints being removed from the volume; see separate entries for current locations' +p88161 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88162 +sg25268 +S'Caricatures (volume VI)' +p88163 +sg25270 +S'Thomas Rowlandson' +p88164 +sa(dp88165 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1811' +p88166 +sg25268 +S'Modern Antiques' +p88167 +sg25270 +S'Thomas Rowlandson' +p88168 +sa(dp88169 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1803' +p88170 +sg25268 +S'A Catamaran' +p88171 +sg25270 +S'Thomas Rowlandson' +p88172 +sa(dp88173 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p88174 +sg25268 +S'The Chamber of Genius' +p88175 +sg25270 +S'Thomas Rowlandson' +p88176 +sa(dp88177 +g25268 +S'Little Court' +p88178 +sg25270 +S'James McNeill Whistler' +p88179 +sg25273 +S'etching' +p88180 +sg25275 +S'c. 1880/1881' +p88181 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa4d.jpg' +p88182 +sg25267 +g27 +sa(dp88183 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p88184 +sg25268 +S'English Exhibitions in Paris' +p88185 +sg25270 +S'Thomas Rowlandson' +p88186 +sa(dp88187 +g25268 +S'Ducking a Scold' +p88188 +sg25270 +S'Thomas Rowlandson' +p88189 +sg25273 +S'hand-colored etching' +p88190 +sg25275 +S'1809' +p88191 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007791.jpg' +p88192 +sg25267 +g27 +sa(dp88193 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p88194 +sg25268 +S'Italian Picture Dealers Humbuging My Lord Anglaise' +p88195 +sg25270 +S'Thomas Rowlandson' +p88196 +sa(dp88197 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p88198 +sg25268 +S'A Spanish Cloak' +p88199 +sg25270 +S'Thomas Rowlandson' +p88200 +sa(dp88201 +g25268 +S'A Dog Fight' +p88202 +sg25270 +S'Thomas Rowlandson' +p88203 +sg25273 +S'hand-colored etching' +p88204 +sg25275 +S'1811' +p88205 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000779e.jpg' +p88206 +sg25267 +g27 +sa(dp88207 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p88208 +sg25268 +S'Land Stores' +p88209 +sg25270 +S'Thomas Rowlandson' +p88210 +sa(dp88211 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p88212 +sg25268 +S'Seas Stores' +p88213 +sg25270 +S'Thomas Rowlandson' +p88214 +sa(dp88215 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88216 +sg25268 +S'King, Queen, Lord Flutter' +p88217 +sg25270 +S'Thomas Rowlandson' +p88218 +sa(dp88219 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p88220 +sg25268 +S'A Cat in Pattens' +p88221 +sg25270 +S'Thomas Rowlandson' +p88222 +sa(dp88223 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p88224 +sg25268 +S'Broad Grins or a Black Joke' +p88225 +sg25270 +S'Thomas Rowlandson' +p88226 +sa(dp88227 +g25268 +S'Drury Lane' +p88228 +sg25270 +S'James McNeill Whistler' +p88229 +sg25273 +S'etching' +p88230 +sg25275 +S'c. 1880/1881' +p88231 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa3b.jpg' +p88232 +sg25267 +g27 +sa(dp88233 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p88234 +sg25268 +S'The Sweet Pea' +p88235 +sg25270 +S'Thomas Rowlandson' +p88236 +sa(dp88237 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88238 +sg25268 +S'A Portrait' +p88239 +sg25270 +S'Thomas Rowlandson' +p88240 +sa(dp88241 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88242 +sg25268 +S'A Portrait' +p88243 +sg25270 +S'Thomas Rowlandson' +p88244 +sa(dp88245 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88246 +sg25268 +S'Midnight Revels' +p88247 +sg25270 +S'Thomas Rowlandson' +p88248 +sa(dp88249 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1810' +p88250 +sg25268 +S'Libel Hunters on the Look Out' +p88251 +sg25270 +S'Thomas Rowlandson' +p88252 +sa(dp88253 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88254 +sg25268 +S'Comforts of an Irish Fishing Lodge' +p88255 +sg25270 +S'Thomas Rowlandson' +p88256 +sa(dp88257 +g25268 +S'Patience in a Punt' +p88258 +sg25270 +S'Thomas Rowlandson' +p88259 +sg25273 +S'hand-colored etching' +p88260 +sg25275 +S'1811' +p88261 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000779c.jpg' +p88262 +sg25267 +g27 +sa(dp88263 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1812' +p88264 +sg25268 +S'Plucking a Spoony' +p88265 +sg25270 +S'Thomas Rowlandson' +p88266 +sa(dp88267 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88268 +sg25268 +S'Explication des Armes de Bounaparte' +p88269 +sg25270 +S'Thomas Rowlandson' +p88270 +sa(dp88271 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88272 +sg25268 +S'Hiring a Servant' +p88273 +sg25270 +S'Thomas Rowlandson' +p88274 +sa(dp88275 +g25268 +S'Portrait of a Nobleman' +p88276 +sg25270 +S'French 16th Century' +p88277 +sg25273 +S'original panel: 31.2 x 22.7 cm (12 5/16 x 8 15/16 in.)\r\noverall (with wooden shims): 32.4 x 23.6 cm (12 3/4 x 9 5/16 in.)\r\nframed: 47.9 x 38.1 x 7.3 cm (18 7/8 x 15 x 2 7/8 in.)' +p88278 +sg25275 +S'\noil on fir or pine' +p88279 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ff81.jpg' +p88280 +sg25267 +g27 +sa(dp88281 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1812' +p88282 +sg25268 +S'A Visit to the Doctor' +p88283 +sg25270 +S'Thomas Rowlandson' +p88284 +sa(dp88285 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1813' +p88286 +sg25268 +S'Dutch Nightmare' +p88287 +sg25270 +S'Thomas Rowlandson' +p88288 +sa(dp88289 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88290 +sg25268 +S'The Bear, the Bull Dog and the Monkey' +p88291 +sg25270 +S'Thomas Rowlandson' +p88292 +sa(dp88293 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1813' +p88294 +sg25268 +S'Political Chemist and German Retorts' +p88295 +sg25270 +S'Thomas Rowlandson' +p88296 +sa(dp88297 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1813' +p88298 +sg25268 +S'The Corsican Munchausen' +p88299 +sg25270 +S'Thomas Rowlandson' +p88300 +sa(dp88301 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1813' +p88302 +sg25268 +S'Friends and Foes' +p88303 +sg25270 +S'Thomas Rowlandson' +p88304 +sa(dp88305 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1813' +p88306 +sg25268 +S'Funcking the Corsican' +p88307 +sg25270 +S'Thomas Rowlandson' +p88308 +sa(dp88309 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1813' +p88310 +sg25268 +S'The Mock Phoenix' +p88311 +sg25270 +S'Thomas Rowlandson' +p88312 +sa(dp88313 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88314 +sg25268 +S'Birth of Bonoparte' +p88315 +sg25270 +S'Thomas Rowlandson' +p88316 +sa(dp88317 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1813' +p88318 +sg25268 +S'Mock Auction or Boney Selling Stolen Goods' +p88319 +sg25270 +S'Thomas Rowlandson' +p88320 +sa(dp88321 +g25268 +S'The Flight into Egypt' +p88322 +sg25270 +S'Vittore Carpaccio' +p88323 +sg25273 +S'oil on panel' +p88324 +sg25275 +S'c. 1515' +p88325 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007d2.jpg' +p88326 +sg25267 +S"Mary and Joseph's flight with Jesus to escape Herod's slaughter of the Hebrew babies is recounted in the gospel of Matthew. The subject is often found on predellas, the small scenes at the base of altarpieces, but this painting is too large to be a predella panel. Nor is it likely to have been the central section of an altarpiece—those were usually meditative, devotional images rather than narrative ones like this. Perhaps it was made for a religious confraternity. Such \n While Bellini began to use layered oil glazes to soften the edges of his forms, the younger Carpaccio continued to favor a harder (and increasingly old-fashioned) line. In this case, though, it enhances his narrative purpose: hard contours accentuate the gait of the ass and the long stride of Joseph, and they help frame the Virgin and Child in a way that almost enthrones them on their humble mount. In contrast, the luminous undersides of the clouds reveal the influence of Bellini's treatment of light.\n " +p88327 +sa(dp88328 +g25268 +S'Portrait of a Boy' +p88329 +sg25270 +S"Biagio d'Antonio" +p88330 +sg25273 +S'oil and tempera on panel' +p88331 +sg25275 +S'c. 1476/1480' +p88332 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000076d.jpg' +p88333 +sg25267 +g27 +sa(dp88334 +g25268 +S'Saint Bernard with Donor [obverse]' +p88335 +sg25270 +S'Artist Information (' +p88336 +sg25273 +g27 +sg25275 +S'(related artist)' +p88337 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000548.jpg' +p88338 +sg25267 +g27 +sa(dp88339 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1813' +p88340 +sg25268 +S'The Glutton' +p88341 +sg25270 +S'Thomas Rowlandson' +p88342 +sa(dp88343 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1813' +p88344 +sg25268 +S'Unloading a Waggon' +p88345 +sg25270 +S'Thomas Rowlandson' +p88346 +sa(dp88347 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1813' +p88348 +sg25268 +S'The Norwich Bull Feast' +p88349 +sg25270 +S'Thomas Rowlandson' +p88350 +sa(dp88351 +g25268 +S'Doctor Syntax, in the Middle of a Smoking HotPolitical Squabble, wishes to Wet his W histle' +p88352 +sg25270 +S'Thomas Rowlandson' +p88353 +sg25273 +S'hand-colored etching' +p88354 +sg25275 +S'published 1813' +p88355 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077b9.jpg' +p88356 +sg25267 +g27 +sa(dp88357 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1813' +p88358 +sg25268 +S'A Long Pull, a Strong Pull and a Pull Alltogether' +p88359 +sg25270 +S'Thomas Rowlandson' +p88360 +sa(dp88361 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1813' +p88362 +sg25268 +S'The Corsican Toad Under a Harrow' +p88363 +sg25270 +S'Thomas Rowlandson' +p88364 +sa(dp88365 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1813' +p88366 +sg25268 +S'Plump to the Devil We Boldly Kicked Both Nap and His Partner Joe' +p88367 +sg25270 +S'Thomas Rowlandson' +p88368 +sa(dp88369 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88370 +sg25268 +S"Guy Faux's Dying Speech, Buonapartes Dying Speech" +p88371 +sg25270 +S'Thomas Rowlandson' +p88372 +sa(dp88373 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88374 +sg25268 +S'Summer Amusement at Margate' +p88375 +sg25270 +S'Thomas Rowlandson' +p88376 +sa(dp88377 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1813' +p88378 +sg25268 +S"A Doleful Disaster or Miss Fubby Fatarmin's Wig Caught Fire" +p88379 +sg25270 +S'Thomas Rowlandson' +p88380 +sa(dp88381 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(related artist)' +p88382 +sg25268 +S'Saint Margaret [reverse]' +p88383 +sg25270 +S'Artist Information (' +p88384 +sa(dp88385 +g25268 +S'Bartholomew Fair' +p88386 +sg25270 +S'Thomas Rowlandson' +p88387 +sg25273 +S'hand-colored etching' +p88388 +sg25275 +S'c. 1808' +p88389 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007783.jpg' +p88390 +sg25267 +g27 +sa(dp88391 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88392 +sg25268 +S'Rural Sports or How to Show off a Well Shaped Leg' +p88393 +sg25270 +S'Thomas Rowlandson' +p88394 +sa(dp88395 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1813' +p88396 +sg25268 +S'None but the Brave Deserve the Fair' +p88397 +sg25270 +S'Thomas Rowlandson' +p88398 +sa(dp88399 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88400 +sg25268 +S'Mrs. Smouch Longing for Piggy' +p88401 +sg25270 +S'Thomas Rowlandson' +p88402 +sa(dp88403 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1813' +p88404 +sg25268 +S'Humors of Houndsditch' +p88405 +sg25270 +S'Thomas Rowlandson' +p88406 +sa(dp88407 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1813' +p88408 +sg25268 +S'The Last Gasp or Toadstools Mistaken for Mushrooms' +p88409 +sg25270 +S'Thomas Rowlandson' +p88410 +sa(dp88411 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1813' +p88412 +sg25268 +S'How to Vault in the Saddle' +p88413 +sg25270 +S'Thomas Rowlandson' +p88414 +sa(dp88415 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88416 +sg25268 +S'The Two Kings of Terror' +p88417 +sg25270 +S'Thomas Rowlandson' +p88418 +sa(dp88419 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88420 +sg25268 +S'Johanna Southcott, the Prophetess Excommunicating the Bishops' +p88421 +sg25270 +S'Thomas Rowlandson' +p88422 +sa(dp88423 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88424 +sg25268 +S'Death and Bonaparte' +p88425 +sg25270 +S'Thomas Rowlandson' +p88426 +sa(dp88427 +g25268 +S'Portrait of a Lady' +p88428 +sg25270 +S'German 16th Century' +p88429 +sg25273 +S'overall: 44.2 x 31.7 cm (17 3/8 x 12 1/2 in.)\r\nframed: 72.4 x 60 cm (28 1/2 x 23 5/8 in.)' +p88430 +sg25275 +S'\ntempera on panel' +p88431 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004c6.jpg' +p88432 +sg25267 +g27 +sa(dp88433 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88434 +sg25268 +S'Bluche(r) the Brave' +p88435 +sg25270 +S'Thomas Rowlandson' +p88436 +sa(dp88437 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88438 +sg25268 +S"The Rogue's March" +p88439 +sg25270 +S'Thomas Rowlandson' +p88440 +sa(dp88441 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88442 +sg25268 +S'Bloody Boney the Carcass Butcher' +p88443 +sg25270 +S'Thomas Rowlandson' +p88444 +sa(dp88445 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88446 +sg25268 +S'A Friendly Visit' +p88447 +sg25270 +S'Thomas Rowlandson' +p88448 +sa(dp88449 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88450 +sg25268 +S'Nap Dreading his Doleful Doom' +p88451 +sg25270 +S'Thomas Rowlandson' +p88452 +sa(dp88453 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88454 +sg25268 +S'The Double Humbug' +p88455 +sg25270 +S'Thomas Rowlandson' +p88456 +sa(dp88457 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88458 +sg25268 +S'Coming in at the Death of the Corsican Fox' +p88459 +sg25270 +S'Thomas Rowlandson' +p88460 +sa(dp88461 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88462 +sg25268 +S'The Devils Darling' +p88463 +sg25270 +S'Thomas Rowlandson' +p88464 +sa(dp88465 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88466 +sg25268 +S'The Affectionate Farewell' +p88467 +sg25270 +S'Thomas Rowlandson' +p88468 +sa(dp88469 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88470 +sg25268 +S'Boney Turned Moralist' +p88471 +sg25270 +S'Thomas Rowlandson' +p88472 +sa(dp88473 +g25273 +S'etching and drypoint' +p88474 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88475 +sg25268 +S'Andrew W. Mellon' +p88476 +sg25270 +S'Frederick Pauling' +p88477 +sa(dp88478 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88479 +sg25268 +S'Napoleon Dance in Holland' +p88480 +sg25270 +S'Thomas Rowlandson' +p88481 +sa(dp88482 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88483 +sg25268 +S'Head Runner of Runaways from Leipzic Fair' +p88484 +sg25270 +S'Thomas Rowlandson' +p88485 +sa(dp88486 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1811' +p88487 +sg25268 +S'A Picture of Misery' +p88488 +sg25270 +S'Thomas Rowlandson' +p88489 +sa(dp88490 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88491 +sg25268 +S'Fashionable Dress of 1814' +p88492 +sg25270 +S'Thomas Rowlandson' +p88493 +sa(dp88494 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88495 +sg25268 +S'Portsmouth Point' +p88496 +sg25270 +S'Thomas Rowlandson' +p88497 +sa(dp88498 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88499 +sg25268 +S'Three Principal Requisites to Form a Man of Fashion' +p88500 +sg25270 +S'Thomas Rowlandson' +p88501 +sa(dp88502 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88503 +sg25268 +S'The Four Seasons of Love' +p88504 +sg25270 +S'Thomas Rowlandson' +p88505 +sa(dp88506 +g25268 +S'Madame Very Restaurateur, Palais Royal Paris' +p88507 +sg25270 +S'Thomas Rowlandson' +p88508 +sg25273 +S'hand-colored etching' +p88509 +sg25275 +S'1814' +p88510 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077b2.jpg' +p88511 +sg25267 +g27 +sa(dp88512 +g25268 +S'La Belle Limonaudiere au Cafe des Mille Colonnes, Palais Royal, Paris' +p88513 +sg25270 +S'Thomas Rowlandson' +p88514 +sg25273 +S'hand-colored etching' +p88515 +sg25275 +S'1814' +p88516 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077b4.jpg' +p88517 +sg25267 +g27 +sa(dp88518 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88519 +sg25268 +S'Miseries of Bathing, After Bathing' +p88520 +sg25270 +S'Thomas Rowlandson' +p88521 +sa(dp88522 +g25268 +S'Moonlight' +p88523 +sg25270 +S'Artist Information (' +p88524 +sg25273 +S'American, 1847 - 1919' +p88525 +sg25275 +S'(related artist)' +p88526 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c59b.jpg' +p88527 +sg25267 +g27 +sa(dp88528 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88529 +sg25268 +S'Miseries of Bathing' +p88530 +sg25270 +S'Thomas Rowlandson' +p88531 +sa(dp88532 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88533 +sg25268 +S'Peace and Plenty' +p88534 +sg25270 +S'Thomas Rowlandson' +p88535 +sa(dp88536 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88537 +sg25268 +S'A Medical Inspection or Miracles will Never Cease' +p88538 +sg25270 +S'Thomas Rowlandson' +p88539 +sa(dp88540 +g25268 +S"Mr. Bullock's Exhibition of Laplanders" +p88541 +sg25270 +S'Thomas Rowlandson' +p88542 +sg25273 +S'hand-colored etching and aquatint' +p88543 +sg25275 +S'unknown date\n' +p88544 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077e1.jpg' +p88545 +sg25267 +g27 +sa(dp88546 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88547 +sg25268 +S'Kicking Up a Breeze or Barrow Women Basting a Beadle' +p88548 +sg25270 +S'Thomas Rowlandson' +p88549 +sa(dp88550 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88551 +sg25268 +S"Batchelor's Fare, Bread, Cheese and Kisses" +p88552 +sg25270 +S'Thomas Rowlandson' +p88553 +sa(dp88554 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88555 +sg25268 +S'Quarter Day or Clearing the Premisses without Consulting your Landlord' +p88556 +sg25270 +S'Thomas Rowlandson' +p88557 +sa(dp88558 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88559 +sg25268 +S'Crimping a Quaker' +p88560 +sg25270 +S'Thomas Rowlandson' +p88561 +sa(dp88562 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88563 +sg25268 +S'Crimping a Quaker' +p88564 +sg25270 +S'Thomas Rowlandson' +p88565 +sa(dp88566 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88567 +sg25268 +S'Macassar Oil, an Oily Puff for Soft Heads' +p88568 +sg25270 +S'Thomas Rowlandson' +p88569 +sa(dp88570 +g25268 +S'A Friendly Call' +p88571 +sg25270 +S'William Merritt Chase' +p88572 +sg25273 +S'oil on canvas' +p88573 +sg25275 +S'1895' +p88574 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000004b.jpg' +p88575 +sg25267 +S"William Merritt Chase, an influential art teacher and one of the leading exponents of American impressionism, captured the genteel, privileged life of polite society in the 1890s. \n Chase's rendering of light, his facile brushwork, and his choice of everyday subject matter all recall the work of the French impressionists; yet, unlike his European contemporaries, the artist carefully composed his paintings to underscore abstract elements. Simple rectangular patterns of the floor, wall, and couch are echoed in the framed pictures and wall hangings while they are contrasted to the more curvilinear figures, chair, and plump pillows. The mirror framing Mrs. Chase offers a surprising reflection of a wall behind the viewer; Chase's compositional arrangement and his use of reflected imagery suggest that he may have been paying homage to the 17th–century Spanish artist Velázquez, whose much–admired painting \n " +p88576 +sa(dp88577 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88578 +sg25268 +S'A Tailors Wedding' +p88579 +sg25270 +S'Thomas Rowlandson' +p88580 +sa(dp88581 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88582 +sg25268 +S'Progress of Gallantry or Stolen Kisses Sweetest' +p88583 +sg25270 +S'Thomas Rowlandson' +p88584 +sa(dp88585 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88586 +sg25268 +S'Miseries of London or a Surly Saucy Hackney Coachman' +p88587 +sg25270 +S'Thomas Rowlandson' +p88588 +sa(dp88589 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88590 +sg25268 +S'Rural Sports or a Pleasant Way of Making Hay' +p88591 +sg25270 +S'Thomas Rowlandson' +p88592 +sa(dp88593 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1814' +p88594 +sg25268 +S'The Tyrant of the Continent is Fallen' +p88595 +sg25270 +S'Thomas Rowlandson' +p88596 +sa(dp88597 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88598 +sg25268 +S'The Privy Council of a King' +p88599 +sg25270 +S'Thomas Rowlandson' +p88600 +sa(dp88601 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1815' +p88602 +sg25268 +S'Breaking Up the Blue Stocking Club' +p88603 +sg25270 +S'Thomas Rowlandson' +p88604 +sa(dp88605 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1815' +p88606 +sg25268 +S'Defrauding the Customs, or Shipping of Goods not Fairly Entered' +p88607 +sg25270 +S'Thomas Rowlandson' +p88608 +sa(dp88609 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1815' +p88610 +sg25268 +S'Hodges Explanation of a Hundred Migistrates' +p88611 +sg25270 +S'Thomas Rowlandson' +p88612 +sa(dp88613 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88614 +sg25268 +S'Stolen Kisses' +p88615 +sg25270 +S'Thomas Rowlandson' +p88616 +sa(dp88617 +g25268 +S'Elisha Doane' +p88618 +sg25270 +S'American 18th Century' +p88619 +sg25273 +S'overall: 101.7 x 84.2 cm (40 1/16 x 33 1/8 in.)' +p88620 +sg25275 +S'\noil on canvas' +p88621 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c59c.jpg' +p88622 +sg25267 +g27 +sa(dp88623 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88624 +sg25268 +S'Neighborly Refreshment' +p88625 +sg25270 +S'Thomas Rowlandson' +p88626 +sa(dp88627 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1815' +p88628 +sg25268 +S'Vive le Roi! Vive le Empereur, Vive le Diable' +p88629 +sg25270 +S'Thomas Rowlandson' +p88630 +sa(dp88631 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1815' +p88632 +sg25268 +S'A Lamentable Cast of a Jury-man' +p88633 +sg25270 +S'Thomas Rowlandson' +p88634 +sa(dp88635 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1815' +p88636 +sg25268 +S'Sailors Drinking the Tunbridge Waters' +p88637 +sg25270 +S'Thomas Rowlandson' +p88638 +sa(dp88639 +g25268 +S"Boney's Trial, Sentence, and Dying Speech" +p88640 +sg25270 +S'Thomas Rowlandson' +p88641 +sg25273 +S'hand-colored etching' +p88642 +sg25275 +S'published 1815' +p88643 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077bc.jpg' +p88644 +sg25267 +g27 +sa(dp88645 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1815' +p88646 +sg25268 +S'Hell Hounds Rallying Round the Idol of France' +p88647 +sg25270 +S'Thomas Rowlandson' +p88648 +sa(dp88649 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88650 +sg25268 +S'My Wife!' +p88651 +sg25270 +S'Thomas Rowlandson' +p88652 +sa(dp88653 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1784' +p88654 +sg25268 +S'Vicar and Moses' +p88655 +sg25270 +S'Thomas Rowlandson' +p88656 +sa(dp88657 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88658 +sg25268 +S'How came your so?' +p88659 +sg25270 +S'Thomas Rowlandson' +p88660 +sa(dp88661 +g25273 +g27 +sg25267 +g27 +sg25275 +S'probably 1794' +p88662 +sg25268 +S'Jews at Luncheon' +p88663 +sg25270 +S'Thomas Rowlandson' +p88664 +sa(dp88665 +g25273 +S'overall: 102.2 x 83.5 cm (40 1/4 x 32 7/8 in.)\r\nframed: 119.4 x 101.6 x 7.6 cm (47 x 40 x 3 in.)' +p88666 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p88667 +sg25268 +S'Jane Cutler Doane' +p88668 +sg25270 +S'American 18th Century' +p88669 +sa(dp88670 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88671 +sg25268 +S"Who's Best Off?" +p88672 +sg25270 +S'Thomas Rowlandson' +p88673 +sa(dp88674 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88675 +sg25268 +S'Dispatch or Jack Preparing for Sea' +p88676 +sg25270 +S'Thomas Rowlandson' +p88677 +sa(dp88678 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88679 +sg25268 +S'Coresus and Thalia' +p88680 +sg25270 +S'Thomas Rowlandson' +p88681 +sa(dp88682 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1815' +p88683 +sg25268 +S'The Corsican and His Blood Hounds' +p88684 +sg25270 +S'Thomas Rowlandson' +p88685 +sa(dp88686 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88687 +sg25268 +S"Bonaparte's Carriage" +p88688 +sg25270 +S'Thomas Rowlandson' +p88689 +sa(dp88690 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1816' +p88691 +sg25268 +S'The Attempt to Wash the Blackamoor White' +p88692 +sg25270 +S'Thomas Rowlandson' +p88693 +sa(dp88694 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88695 +sg25268 +S"R. Ackermann's Transparency on the Victory atWaterloo" +p88696 +sg25270 +S'Thomas Rowlandson' +p88697 +sa(dp88698 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88699 +sg25268 +S'War in the East Against the Cats' +p88700 +sg25270 +S'Thomas Rowlandson' +p88701 +sa(dp88702 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1816' +p88703 +sg25268 +S'Rustic Recreations' +p88704 +sg25270 +S'Thomas Rowlandson' +p88705 +sa(dp88706 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88707 +sg25268 +S'The Rowboat' +p88708 +sg25270 +S'Thomas Rowlandson' +p88709 +sa(dp88710 +g25273 +S'overall: 76.3 x 63.5 cm (30 1/16 x 25 in.)\r\nframed: 90.8 x 78.7 cm (35 3/4 x 31 in.)' +p88711 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p88712 +sg25268 +S'Portrait of a Lady' +p88713 +sg25270 +S'American 19th Century' +p88714 +sa(dp88715 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88716 +sg25268 +S'An Ordinary' +p88717 +sg25270 +S'Thomas Rowlandson' +p88718 +sa(dp88719 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88720 +sg25268 +S'Social Party' +p88721 +sg25270 +S'Thomas Rowlandson' +p88722 +sa(dp88723 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88724 +sg25268 +S"Richardson's Show" +p88725 +sg25270 +S'Thomas Rowlandson' +p88726 +sa(dp88727 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88728 +sg25268 +S'The Fly' +p88729 +sg25270 +S'Thomas Rowlandson' +p88730 +sa(dp88731 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1818' +p88732 +sg25268 +S'The Last Jig or Adieu to Old England' +p88733 +sg25270 +S'Thomas Rowlandson' +p88734 +sa(dp88735 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88736 +sg25268 +S'Rural Street' +p88737 +sg25270 +S'Thomas Rowlandson' +p88738 +sa(dp88739 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88740 +sg25268 +S'The Shore' +p88741 +sg25270 +S'Thomas Rowlandson' +p88742 +sa(dp88743 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88744 +sg25268 +S'The Stage Coach' +p88745 +sg25270 +S'Thomas Rowlandson' +p88746 +sa(dp88747 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88748 +sg25268 +S'The Social Day' +p88749 +sg25270 +S'Thomas Rowlandson' +p88750 +sa(dp88751 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88752 +sg25268 +S'Poultry Cart' +p88753 +sg25270 +S'Thomas Rowlandson' +p88754 +sa(dp88755 +g25268 +S'Portrait of a Lady' +p88756 +sg25270 +S'American 19th Century' +p88757 +sg25273 +S'overall: 76 x 64 cm (29 15/16 x 25 3/16 in.)\r\nframed: 90.8 x 78.7 x 4.4 cm (35 3/4 x 31 x 1 3/4 in.)' +p88758 +sg25275 +S'\noil on canvas' +p88759 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000016c.jpg' +p88760 +sg25267 +g27 +sa(dp88761 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1816' +p88762 +sg25268 +S'A Flying Waggon' +p88763 +sg25270 +S'Thomas Rowlandson' +p88764 +sa(dp88765 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88766 +sg25268 +S'Fish Monger' +p88767 +sg25270 +S'Thomas Rowlandson' +p88768 +sa(dp88769 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88770 +sg25268 +S'The Barn Yard' +p88771 +sg25270 +S'Thomas Rowlandson' +p88772 +sa(dp88773 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88774 +sg25268 +S'The Inn Yard' +p88775 +sg25270 +S'Thomas Rowlandson' +p88776 +sa(dp88777 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88778 +sg25268 +S'Boating Party' +p88779 +sg25270 +S'Thomas Rowlandson' +p88780 +sa(dp88781 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88782 +sg25268 +S'A Rare Acquisition to the Royal Menagerie' +p88783 +sg25270 +S'Thomas Rowlandson' +p88784 +sa(dp88785 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1823' +p88786 +sg25268 +S'The Chance-Seller of the Exchequer' +p88787 +sg25270 +S'Thomas Rowlandson' +p88788 +sa(dp88789 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88790 +sg25268 +S'Oysters' +p88791 +sg25270 +S'Thomas Rowlandson' +p88792 +sa(dp88793 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88794 +sg25268 +S'Cider Making' +p88795 +sg25270 +S'Thomas Rowlandson' +p88796 +sa(dp88797 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88798 +sg25268 +S'Scenes at the Shore' +p88799 +sg25270 +S'Thomas Rowlandson' +p88800 +sa(dp88801 +g25268 +S'The Worship of the Golden Calf' +p88802 +sg25270 +S'Jacopo Tintoretto' +p88803 +sg25273 +S'oil on canvas' +p88804 +sg25275 +S'c. 1560' +p88805 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b2d.jpg' +p88806 +sg25267 +g27 +sa(dp88807 +g25273 +S'overall: 76.5 x 66 cm (30 1/8 x 26 in.)\r\nframed: 100.3 x 87.6 x 8.9 cm (39 1/2 x 34 1/2 x 3 1/2 in.)' +p88808 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p88809 +sg25268 +S'Portrait of a Man' +p88810 +sg25270 +S'American 19th Century' +p88811 +sa(dp88812 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88813 +sg25268 +S'Plough Inn' +p88814 +sg25270 +S'Thomas Rowlandson' +p88815 +sa(dp88816 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1819' +p88817 +sg25268 +S'A Rough Sketch of the Times' +p88818 +sg25270 +S'Thomas Rowlandson' +p88819 +sa(dp88820 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1816' +p88821 +sg25268 +S'The Draper (?)' +p88822 +sg25270 +S'Thomas Rowlandson' +p88823 +sa(dp88824 +g25273 +S'woodcut' +p88825 +sg25267 +g27 +sg25275 +S'1913' +p88826 +sg25268 +S'Nudes Out-of-Doors (Akte im Freien)' +p88827 +sg25270 +S'Karl Schmidt-Rottluff' +p88828 +sa(dp88829 +g25273 +S'watercolor' +p88830 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88831 +sg25268 +S'Autumn Landscape' +p88832 +sg25270 +S'Karl Schmidt-Rottluff' +p88833 +sa(dp88834 +g25273 +S'brush and black ink with gray wash' +p88835 +sg25267 +g27 +sg25275 +S'probably c. 1935' +p88836 +sg25268 +S'Haystacks' +p88837 +sg25270 +S'Karl Schmidt-Rottluff' +p88838 +sa(dp88839 +g25273 +S'woodcut' +p88840 +sg25267 +g27 +sg25275 +S'1915' +p88841 +sg25268 +S'Head of a Woman (Weiblicher Kopf)' +p88842 +sg25270 +S'Karl Schmidt-Rottluff' +p88843 +sa(dp88844 +g25273 +S'woodcut' +p88845 +sg25267 +g27 +sg25275 +S'1915' +p88846 +sg25268 +S'Head of a Woman (Frauenkopf)' +p88847 +sg25270 +S'Karl Schmidt-Rottluff' +p88848 +sa(dp88849 +g25273 +S'watercolor over graphite' +p88850 +sg25267 +g27 +sg25275 +S'c. 1935' +p88851 +sg25268 +S'Yellow Iris' +p88852 +sg25270 +S'Karl Schmidt-Rottluff' +p88853 +sa(dp88854 +g25268 +S'Myth of Creation' +p88855 +sg25270 +S'Stanley William Hayter' +p88856 +sg25273 +S'carved plaster relief cast from inked copper plate' +p88857 +sg25275 +S'1940' +p88858 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006255.jpg' +p88859 +sg25267 +g27 +sa(dp88860 +g25268 +S'Mrs. William Griffin' +p88861 +sg25270 +S'Thomas Sully' +p88862 +sg25273 +S'oil on canvas' +p88863 +sg25275 +S'1830' +p88864 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000260.jpg' +p88865 +sg25267 +g27 +sa(dp88866 +g25273 +S'color linoleum cut' +p88867 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88868 +sg25268 +S'Curves and Squares' +p88869 +sg25270 +S'Charles William Smith' +p88870 +sa(dp88871 +g25273 +S'color block print' +p88872 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88873 +sg25268 +S'House and Boats' +p88874 +sg25270 +S'Charles William Smith' +p88875 +sa(dp88876 +g25273 +S'color block print' +p88877 +sg25267 +g27 +sg25275 +S'1940' +p88878 +sg25268 +S'Light Moving' +p88879 +sg25270 +S'Charles William Smith' +p88880 +sa(dp88881 +g25273 +S'color block print' +p88882 +sg25267 +g27 +sg25275 +S'unknown date\n' +p88883 +sg25268 +S'Waterfront' +p88884 +sg25270 +S'Charles William Smith' +p88885 +sa(dp88886 +g25268 +S'Saint John' +p88887 +sg25270 +S'Hans Springinklee' +p88888 +sg25273 +S'woodcut' +p88889 +sg25275 +S'unknown date\n' +p88890 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad5b.jpg' +p88891 +sg25267 +g27 +sa(dp88892 +g25273 +S'etching' +p88893 +sg25267 +g27 +sg25275 +S'1935' +p88894 +sg25268 +S"L'Usine" +p88895 +sg25270 +S'Jacques Villon' +p88896 +sa(dp88897 +g25268 +S'La Danseuse - A Study of the Nude' +p88898 +sg25270 +S'James McNeill Whistler' +p88899 +sg25273 +S'lithograph' +p88900 +sg25275 +S'unknown date\n' +p88901 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abb0.jpg' +p88902 +sg25267 +g27 +sa(dp88903 +g25268 +S'The Fireplace' +p88904 +sg25270 +S'James McNeill Whistler' +p88905 +sg25273 +S'lithograph' +p88906 +sg25275 +S'1893' +p88907 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab0c.jpg' +p88908 +sg25267 +g27 +sa(dp88909 +g25268 +S'Staircase' +p88910 +sg25270 +S'James McNeill Whistler' +p88911 +sg25273 +S'lithograph' +p88912 +sg25275 +S'1891' +p88913 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa96.jpg' +p88914 +sg25267 +g27 +sa(dp88915 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1816' +p88916 +sg25268 +S'The Lying-in Visit' +p88917 +sg25270 +S'Thomas Rowlandson' +p88918 +sa(dp88919 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1816' +p88920 +sg25268 +S'Hussars Departing' +p88921 +sg25270 +S'Thomas Rowlandson' +p88922 +sa(dp88923 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1816' +p88924 +sg25268 +S'Recruiting' +p88925 +sg25270 +S'Thomas Rowlandson' +p88926 +sa(dp88927 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88928 +sg25268 +S'The Pot Mender' +p88929 +sg25270 +S'Thomas Rowlandson' +p88930 +sa(dp88931 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88932 +sg25268 +S'Half Moon Inn' +p88933 +sg25270 +S'Thomas Rowlandson' +p88934 +sa(dp88935 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88936 +sg25268 +S'The Doll Seller' +p88937 +sg25270 +S'Thomas Rowlandson' +p88938 +sa(dp88939 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88940 +sg25268 +S'Fishermen' +p88941 +sg25270 +S'Thomas Rowlandson' +p88942 +sa(dp88943 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88944 +sg25268 +S'Rural Amusements' +p88945 +sg25270 +S'Thomas Rowlandson' +p88946 +sa(dp88947 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88948 +sg25268 +S'The Horse Dealer' +p88949 +sg25270 +S'Thomas Rowlandson' +p88950 +sa(dp88951 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1817' +p88952 +sg25268 +S'Fishing' +p88953 +sg25270 +S'Thomas Rowlandson' +p88954 +sa(dp88955 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1816' +p88956 +sg25268 +S'Recruiting' +p88957 +sg25270 +S'Thomas Rowlandson' +p88958 +sa(dp88959 +g25268 +S'Joseph, Baron de Podenas' +p88960 +sg25270 +S'Honor\xc3\xa9 Daumier' +p88961 +sg25273 +S'bronze' +p88962 +sg25275 +S'model c. 1832/1835, cast 1929/1930' +p88963 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001f95.jpg' +p88964 +sg25267 +g27 +sa(dp88965 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1821' +p88966 +sg25268 +S'Sentimental Travels in the Southern Provincesof France' +p88967 +sg25270 +S'Thomas Rowlandson' +p88968 +sa(dp88969 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1821' +p88970 +sg25268 +S'Sentimental Travels in the Southern Provincesof France' +p88971 +sg25270 +S'Thomas Rowlandson' +p88972 +sa(dp88973 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1821' +p88974 +sg25268 +S'Sentimental Travels in the Southern Provinces of Naples' +p88975 +sg25270 +S'Thomas Rowlandson' +p88976 +sa(dp88977 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1821' +p88978 +sg25268 +S'Sentimental Travels in the Southern Provinces of Naples' +p88979 +sg25270 +S'Thomas Rowlandson' +p88980 +sa(dp88981 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1821' +p88982 +sg25268 +S'Sentimental Travels in the Southern Provinces of Naples' +p88983 +sg25270 +S'Thomas Rowlandson' +p88984 +sa(dp88985 +g25268 +S'Paris Diligence' +p88986 +sg25270 +S'Thomas Rowlandson' +p88987 +sg25273 +S'hand-colored etching' +p88988 +sg25275 +S'probably 1810' +p88989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007781.jpg' +p88990 +sg25267 +g27 +sa(dp88991 +g25268 +S'Preparing to Start' +p88992 +sg25270 +S'Thomas Rowlandson' +p88993 +sg25273 +S'hand-colored etching' +p88994 +sg25275 +S'1811' +p88995 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077aa.jpg' +p88996 +sg25267 +g27 +sa(dp88997 +g25268 +S'Dancer Seen from Behind and Three Studies of Feet' +p88998 +sg25270 +S'Edgar Degas' +p88999 +sg25273 +S'black chalk and pastel on blue-gray laid paper' +p89000 +sg25275 +S'c. 1878' +p89001 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00031/a00031b3.jpg' +p89002 +sg25267 +g27 +sa(dp89003 +g25268 +S'Le stryge (The Vampire)' +p89004 +sg25270 +S'Charles Meryon' +p89005 +sg25273 +S'etching on green paper' +p89006 +sg25275 +S'1853' +p89007 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000995f.jpg' +p89008 +sg25267 +g27 +sa(dp89009 +g25268 +S'Two Lawyers' +p89010 +sg25270 +S'Honor\xc3\xa9 Daumier' +p89011 +sg25273 +S'crayon and stump with gray and orange wash on laid paper' +p89012 +sg25275 +S'unknown date\n' +p89013 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00031/a00031b2.jpg' +p89014 +sg25267 +g27 +sa(dp89015 +g25268 +S'Benjamin Delessert' +p89016 +sg25270 +S'Honor\xc3\xa9 Daumier' +p89017 +sg25273 +S'bronze' +p89018 +sg25275 +S'model c. 1832/1835, cast 1929/1930' +p89019 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fa0.jpg' +p89020 +sg25267 +g27 +sa(dp89021 +g25268 +S'The Eagle of Saint John' +p89022 +sg25270 +S'Martin Schongauer' +p89023 +sg25273 +S'engraving' +p89024 +sg25275 +S'c. 1490' +p89025 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a48d.jpg' +p89026 +sg25267 +g27 +sa(dp89027 +g25268 +S'River Landscape with Two Buildings' +p89028 +sg25270 +S'Augustin Hirschvogel' +p89029 +sg25273 +S'etching' +p89030 +sg25275 +S'1545' +p89031 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abc2.jpg' +p89032 +sg25267 +g27 +sa(dp89033 +g25268 +S'Great American Cock' +p89034 +sg25270 +S'Artist Information (' +p89035 +sg25273 +S'(artist after)' +p89036 +sg25275 +S'\n' +p89037 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000934.jpg' +p89038 +sg25267 +g27 +sa(dp89039 +g25273 +S'(artist after)' +p89040 +sg25267 +g27 +sg25275 +S'\n' +p89041 +sg25268 +S'Yellow-billed Cuckoo' +p89042 +sg25270 +S'Artist Information (' +p89043 +sa(dp89044 +g25273 +S'(artist after)' +p89045 +sg25267 +g27 +sg25275 +S'\n' +p89046 +sg25268 +S'Prothonotary Warbler' +p89047 +sg25270 +S'Artist Information (' +p89048 +sa(dp89049 +g25273 +S'(artist after)' +p89050 +sg25267 +g27 +sg25275 +S'\n' +p89051 +sg25268 +S'Purple Finch' +p89052 +sg25270 +S'Artist Information (' +p89053 +sa(dp89054 +g25273 +S'(artist after)' +p89055 +sg25267 +g27 +sg25275 +S'\n' +p89056 +sg25268 +S'Bonaparte Fly Catcher' +p89057 +sg25270 +S'Artist Information (' +p89058 +sa(dp89059 +g25273 +S'(artist after)' +p89060 +sg25267 +g27 +sg25275 +S'\n' +p89061 +sg25268 +S'Great American Hen and Young' +p89062 +sg25270 +S'Artist Information (' +p89063 +sa(dp89064 +g25273 +S'(artist after)' +p89065 +sg25267 +g27 +sg25275 +S'\n' +p89066 +sg25268 +S'Purple Grackle' +p89067 +sg25270 +S'Artist Information (' +p89068 +sa(dp89069 +g25273 +S'(artist after)' +p89070 +sg25267 +g27 +sg25275 +S'\n' +p89071 +sg25268 +S'White-throated Sparrow' +p89072 +sg25270 +S'Artist Information (' +p89073 +sa(dp89074 +g25268 +S'Jean-Claude Fulchiron' +p89075 +sg25270 +S'Honor\xc3\xa9 Daumier' +p89076 +sg25273 +S'bronze' +p89077 +sg25275 +S'model c. 1832/1835, cast 1929/1930' +p89078 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fa6.jpg' +p89079 +sg25267 +g27 +sa(dp89080 +g25273 +S'(artist after)' +p89081 +sg25267 +g27 +sg25275 +S'\n' +p89082 +sg25268 +S"Selby's Flycatcher" +p89083 +sg25270 +S'Artist Information (' +p89084 +sa(dp89085 +g25273 +S'(etcher)' +p89086 +sg25267 +g27 +sg25275 +S'\n' +p89087 +sg25268 +S'Brown Lark' +p89088 +sg25270 +S'Artist Information (' +p89089 +sa(dp89090 +g25273 +S'(artist after)' +p89091 +sg25267 +g27 +sg25275 +S'\n' +p89092 +sg25268 +S'The Bird of Washington or Great American Sea Eagle' +p89093 +sg25270 +S'Artist Information (' +p89094 +sa(dp89095 +g25268 +S'Baltimore Oriole' +p89096 +sg25270 +S'Artist Information (' +p89097 +sg25273 +S'(artist after)' +p89098 +sg25275 +S'\n' +p89099 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000938.jpg' +p89100 +sg25267 +g27 +sa(dp89101 +g25273 +S'(artist after)' +p89102 +sg25267 +g27 +sg25275 +S'\n' +p89103 +sg25268 +S'Snow-Bird' +p89104 +sg25270 +S'Artist Information (' +p89105 +sa(dp89106 +g25273 +S'(artist after)' +p89107 +sg25267 +g27 +sg25275 +S'\n' +p89108 +sg25268 +S'Prairie Warbler' +p89109 +sg25270 +S'Artist Information (' +p89110 +sa(dp89111 +g25273 +S'(artist after)' +p89112 +sg25267 +g27 +sg25275 +S'\n' +p89113 +sg25268 +S'Blue Yellow-backed Warbler' +p89114 +sg25270 +S'Artist Information (' +p89115 +sa(dp89116 +g25268 +S'Great Footed Hawk' +p89117 +sg25270 +S'Artist Information (' +p89118 +sg25273 +S'(artist after)' +p89119 +sg25275 +S'\n' +p89120 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a000574b.jpg' +p89121 +sg25267 +g27 +sa(dp89122 +g25268 +S'Carolina Pigeon or Turtle Dove' +p89123 +sg25270 +S'Artist Information (' +p89124 +sg25273 +S'(artist after)' +p89125 +sg25275 +S'\n' +p89126 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a000093e.jpg' +p89127 +sg25267 +g27 +sa(dp89128 +g25273 +S'(artist after)' +p89129 +sg25267 +g27 +sg25275 +S'\n' +p89130 +sg25268 +S"Bewick's Long-tailed Wren" +p89131 +sg25270 +S'Artist Information (' +p89132 +sa(dp89133 +g25268 +S'Auguste-Hilarion, Comte de K\xc3\xa9ratry' +p89134 +sg25270 +S'Honor\xc3\xa9 Daumier' +p89135 +sg25273 +S'bronze' +p89136 +sg25275 +S'model c. 1832/1835, cast 1929/1930' +p89137 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fa7.jpg' +p89138 +sg25267 +g27 +sa(dp89139 +g25273 +S'(artist after)' +p89140 +sg25267 +g27 +sg25275 +S'\n' +p89141 +sg25268 +S'Louisiana Water Thrush' +p89142 +sg25270 +S'Artist Information (' +p89143 +sa(dp89144 +g25273 +S'(artist after)' +p89145 +sg25267 +g27 +sg25275 +S'\n' +p89146 +sg25268 +S'Blue-winged Yellow Warbler' +p89147 +sg25270 +S'Artist Information (' +p89148 +sa(dp89149 +g25268 +S'The Mocking Bird' +p89150 +sg25270 +S'Artist Information (' +p89151 +sg25273 +S'(artist after)' +p89152 +sg25275 +S'\n' +p89153 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000941.jpg' +p89154 +sg25267 +g27 +sa(dp89155 +g25273 +S'(artist after)' +p89156 +sg25267 +g27 +sg25275 +S'\n' +p89157 +sg25268 +S'Purple Martin' +p89158 +sg25270 +S'Artist Information (' +p89159 +sa(dp89160 +g25273 +S'(artist after)' +p89161 +sg25267 +g27 +sg25275 +S'\n' +p89162 +sg25268 +S'Maryland Yellow Throat' +p89163 +sg25270 +S'Artist Information (' +p89164 +sa(dp89165 +g25273 +S'(artist after)' +p89166 +sg25267 +g27 +sg25275 +S'\n' +p89167 +sg25268 +S"Roscoe's Yellow Throat" +p89168 +sg25270 +S'Artist Information (' +p89169 +sa(dp89170 +g25273 +S'(artist after)' +p89171 +sg25267 +g27 +sg25275 +S'\n' +p89172 +sg25268 +S'Song Sparrow' +p89173 +sg25270 +S'Artist Information (' +p89174 +sa(dp89175 +g25268 +S'Carolina Parrot' +p89176 +sg25270 +S'Artist Information (' +p89177 +sg25273 +S'(artist after)' +p89178 +sg25275 +S'\n' +p89179 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000945.jpg' +p89180 +sg25267 +g27 +sa(dp89181 +g25273 +S'(artist after)' +p89182 +sg25267 +g27 +sg25275 +S'\n' +p89183 +sg25268 +S'Red-headed Woodpecker' +p89184 +sg25270 +S'Artist Information (' +p89185 +sa(dp89186 +g25273 +S'(artist after)' +p89187 +sg25267 +g27 +sg25275 +S'\n' +p89188 +sg25268 +S'Solitary Flycatcher' +p89189 +sg25270 +S'Artist Information (' +p89190 +sa(dp89191 +g25268 +S'F\xc3\xa9lix Barthe' +p89192 +sg25270 +S'Honor\xc3\xa9 Daumier' +p89193 +sg25273 +S'bronze' +p89194 +sg25275 +S'model c. 1832/1835, cast 1929/1930' +p89195 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fa8.jpg' +p89196 +sg25267 +g27 +sa(dp89197 +g25273 +S'(artist after)' +p89198 +sg25267 +g27 +sg25275 +S'\n' +p89199 +sg25268 +S'Towee Bunting' +p89200 +sg25270 +S'Artist Information (' +p89201 +sa(dp89202 +g25273 +S'(artist after)' +p89203 +sg25267 +g27 +sg25275 +S'\n' +p89204 +sg25268 +S'Vigors Vireo' +p89205 +sg25270 +S'Artist Information (' +p89206 +sa(dp89207 +g25268 +S'White-headed Eagle' +p89208 +sg25270 +S'Artist Information (' +p89209 +sg25273 +S'(artist after)' +p89210 +sg25275 +S'\n' +p89211 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000946.jpg' +p89212 +sg25267 +g27 +sa(dp89213 +g25268 +S'Black-billed Cuckoo' +p89214 +sg25270 +S'Artist Information (' +p89215 +sg25273 +S'(artist after)' +p89216 +sg25275 +S'\n' +p89217 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a000574c.jpg' +p89218 +sg25267 +g27 +sa(dp89219 +g25268 +S'Yellow Bird or American Goldfinch' +p89220 +sg25270 +S'Artist Information (' +p89221 +sg25273 +S'(artist after)' +p89222 +sg25275 +S'\n' +p89223 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005733.jpg' +p89224 +sg25267 +g27 +sa(dp89225 +g25273 +S'(artist after)' +p89226 +sg25267 +g27 +sg25275 +S'\n' +p89227 +sg25268 +S'Worm-eating Warbler' +p89228 +sg25270 +S'Artist Information (' +p89229 +sa(dp89230 +g25273 +S'(artist after)' +p89231 +sg25267 +g27 +sg25275 +S'\n' +p89232 +sg25268 +S"Children's Warbler" +p89233 +sg25270 +S'Artist Information (' +p89234 +sa(dp89235 +g25273 +S'(artist after)' +p89236 +sg25267 +g27 +sg25275 +S'\n' +p89237 +sg25268 +S'Stanley Hawk' +p89238 +sg25270 +S'Artist Information (' +p89239 +sa(dp89240 +g25273 +S'(artist after)' +p89241 +sg25267 +g27 +sg25275 +S'\n' +p89242 +sg25268 +S'Gold-winged Woodpecker' +p89243 +sg25270 +S'Artist Information (' +p89244 +sa(dp89245 +g25273 +S'(artist after)' +p89246 +sg25267 +g27 +sg25275 +S'\n' +p89247 +sg25268 +S'Kentucky Warbler' +p89248 +sg25270 +S'Artist Information (' +p89249 +sa(dp89250 +g25268 +S'Pierre-Paul Royer-Collard' +p89251 +sg25270 +S'Honor\xc3\xa9 Daumier' +p89252 +sg25273 +S'bronze' +p89253 +sg25275 +S'model c. 1832/1835, cast 1929/1930' +p89254 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fa9.jpg' +p89255 +sg25267 +g27 +sa(dp89256 +g25273 +S'(artist after)' +p89257 +sg25267 +g27 +sg25275 +S'\n' +p89258 +sg25268 +S'Crested Titmouse' +p89259 +sg25270 +S'Artist Information (' +p89260 +sa(dp89261 +g25273 +S'(artist after)' +p89262 +sg25267 +g27 +sg25275 +S'\n' +p89263 +sg25268 +S'American Redstart' +p89264 +sg25270 +S'Artist Information (' +p89265 +sa(dp89266 +g25273 +S'(artist after)' +p89267 +sg25267 +g27 +sg25275 +S'\n' +p89268 +sg25268 +S'Ruffed Grouse' +p89269 +sg25270 +S'Artist Information (' +p89270 +sa(dp89271 +g25273 +S'(artist after)' +p89272 +sg25267 +g27 +sg25275 +S'\n' +p89273 +sg25268 +S'Orchard Oriole' +p89274 +sg25270 +S'Artist Information (' +p89275 +sa(dp89276 +g25273 +S'(artist after)' +p89277 +sg25267 +g27 +sg25275 +S'\n' +p89278 +sg25268 +S'Cedar Bird' +p89279 +sg25270 +S'Artist Information (' +p89280 +sa(dp89281 +g25273 +S'(artist after)' +p89282 +sg25267 +g27 +sg25275 +S'\n' +p89283 +sg25268 +S'Summer Red Bird' +p89284 +sg25270 +S'Artist Information (' +p89285 +sa(dp89286 +g25273 +S'(artist after)' +p89287 +sg25267 +g27 +sg25275 +S'\n' +p89288 +sg25268 +S"Traill's Flycatcher" +p89289 +sg25270 +S'Artist Information (' +p89290 +sa(dp89291 +g25273 +S'(artist after)' +p89292 +sg25267 +g27 +sg25275 +S'\n' +p89293 +sg25268 +S'Barred Owl' +p89294 +sg25270 +S'Artist Information (' +p89295 +sa(dp89296 +g25268 +S'Ruby-throated Humming Bird' +p89297 +sg25270 +S'Artist Information (' +p89298 +sg25273 +S'(artist after)' +p89299 +sg25275 +S'\n' +p89300 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a000094e.jpg' +p89301 +sg25267 +g27 +sa(dp89302 +g25273 +S'(artist after)' +p89303 +sg25267 +g27 +sg25275 +S'\n' +p89304 +sg25268 +S'Cerulean Warbler' +p89305 +sg25270 +S'Artist Information (' +p89306 +sa(dp89307 +g25268 +S'Auguste-Hippolyte Ganneron' +p89308 +sg25270 +S'Honor\xc3\xa9 Daumier' +p89309 +sg25273 +S'bronze' +p89310 +sg25275 +S'model c. 1832/1835, cast 1929/1930' +p89311 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001faa.jpg' +p89312 +sg25267 +g27 +sa(dp89313 +g25273 +S'(artist after)' +p89314 +sg25267 +g27 +sg25275 +S'\n' +p89315 +sg25268 +S'Blue-green Warbler' +p89316 +sg25270 +S'Artist Information (' +p89317 +sa(dp89318 +g25273 +S'(artist after)' +p89319 +sg25267 +g27 +sg25275 +S'\n' +p89320 +sg25268 +S"Swainson's Warbler" +p89321 +sg25270 +S'Artist Information (' +p89322 +sa(dp89323 +g25273 +S'(artist after)' +p89324 +sg25267 +g27 +sg25275 +S'\n' +p89325 +sg25268 +S'Red Tailed Hawk' +p89326 +sg25270 +S'Artist Information (' +p89327 +sa(dp89328 +g25273 +S'(artist after)' +p89329 +sg25267 +g27 +sg25275 +S'\n' +p89330 +sg25268 +S"Chuck Will's Widow" +p89331 +sg25270 +S'Artist Information (' +p89332 +sa(dp89333 +g25273 +S'(artist after)' +p89334 +sg25267 +g27 +sg25275 +S'\n' +p89335 +sg25268 +S'Painted Bunting' +p89336 +sg25270 +S'Artist Information (' +p89337 +sa(dp89338 +g25273 +S'(artist after)' +p89339 +sg25267 +g27 +sg25275 +S'\n' +p89340 +sg25268 +S'Rice Bunting' +p89341 +sg25270 +S'Artist Information (' +p89342 +sa(dp89343 +g25273 +S'(artist after)' +p89344 +sg25267 +g27 +sg25275 +S'\n' +p89345 +sg25268 +S"Cuvier's Wren" +p89346 +sg25270 +S'Artist Information (' +p89347 +sa(dp89348 +g25273 +S'(artist after)' +p89349 +sg25267 +g27 +sg25275 +S'\n' +p89350 +sg25268 +S'Red-shouldered Hawk' +p89351 +sg25270 +S'Artist Information (' +p89352 +sa(dp89353 +g25273 +S'(artist after)' +p89354 +sg25267 +g27 +sg25275 +S'\n' +p89355 +sg25268 +S'Loggerhead Shrike' +p89356 +sg25270 +S'Artist Information (' +p89357 +sa(dp89358 +g25273 +S'(artist after)' +p89359 +sg25267 +g27 +sg25275 +S'\n' +p89360 +sg25268 +S'Hermit Thrush' +p89361 +sg25270 +S'Artist Information (' +p89362 +sa(dp89363 +g25268 +S'Dr. Cl\xc3\xa9ment-Fran\xc3\xa7ois-Victor-Gabriel Prunelle' +p89364 +sg25270 +S'Honor\xc3\xa9 Daumier' +p89365 +sg25273 +S'bronze' +p89366 +sg25275 +S'model c. 1832/1835, cast 1929/1930' +p89367 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fab.jpg' +p89368 +sg25267 +g27 +sa(dp89369 +g25273 +S'(artist after)' +p89370 +sg25267 +g27 +sg25275 +S'\n' +p89371 +sg25268 +S'Chestnut-sided Warbler' +p89372 +sg25270 +S'Artist Information (' +p89373 +sa(dp89374 +g25273 +S'(artist after)' +p89375 +sg25267 +g27 +sg25275 +S'\n' +p89376 +sg25268 +S'Carbonated Warbler' +p89377 +sg25270 +S'Artist Information (' +p89378 +sa(dp89379 +g25273 +S'(artist after)' +p89380 +sg25267 +g27 +sg25275 +S'\n' +p89381 +sg25268 +S'Great Horned Owl' +p89382 +sg25270 +S'Artist Information (' +p89383 +sa(dp89384 +g25268 +S'Passenger Pigeon' +p89385 +sg25270 +S'Artist Information (' +p89386 +sg25273 +S'(artist after)' +p89387 +sg25275 +S'\n' +p89388 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005731.jpg' +p89389 +sg25267 +g27 +sa(dp89390 +g25273 +S'(artist after)' +p89391 +sg25267 +g27 +sg25275 +S'\n' +p89392 +sg25268 +S'White-eyed Fly Catcher' +p89393 +sg25270 +S'Artist Information (' +p89394 +sa(dp89395 +g25273 +S'(artist after)' +p89396 +sg25267 +g27 +sg25275 +S'\n' +p89397 +sg25268 +S'Swamp Sparrow' +p89398 +sg25270 +S'Artist Information (' +p89399 +sa(dp89400 +g25273 +S'(artist after)' +p89401 +sg25267 +g27 +sg25275 +S'\n' +p89402 +sg25268 +S'Rathbone Warbler' +p89403 +sg25270 +S'Artist Information (' +p89404 +sa(dp89405 +g25268 +S'Ivory-billed Woodpecker' +p89406 +sg25270 +S'Artist Information (' +p89407 +sg25273 +S'(artist after)' +p89408 +sg25275 +S'\n' +p89409 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a000574d.jpg' +p89410 +sg25267 +g27 +sa(dp89411 +g25273 +S'(artist after)' +p89412 +sg25267 +g27 +sg25275 +S'\n' +p89413 +sg25268 +S'Red-winged Starling' +p89414 +sg25270 +S'Artist Information (' +p89415 +sa(dp89416 +g25273 +S'(artist after)' +p89417 +sg25267 +g27 +sg25275 +S'\n' +p89418 +sg25268 +S'Republican Cliff Swallow' +p89419 +sg25270 +S'Artist Information (' +p89420 +sa(dp89421 +g25268 +S'Jean-Pons-Guillaume Viennet' +p89422 +sg25270 +S'Honor\xc3\xa9 Daumier' +p89423 +sg25273 +S'bronze' +p89424 +sg25275 +S'model c. 1832/1835, cast 1929/1930' +p89425 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fac.jpg' +p89426 +sg25267 +g27 +sa(dp89427 +g25273 +S'(artist after)' +p89428 +sg25267 +g27 +sg25275 +S'\n' +p89429 +sg25268 +S'Bay-breasted Warbler' +p89430 +sg25270 +S'Artist Information (' +p89431 +sa(dp89432 +g25273 +S'(artist after)' +p89433 +sg25267 +g27 +sg25275 +S'\n' +p89434 +sg25268 +S"Henslow's Bunting" +p89435 +sg25270 +S'Artist Information (' +p89436 +sa(dp89437 +g25273 +S'(artist after)' +p89438 +sg25267 +g27 +sg25275 +S'\n' +p89439 +sg25268 +S'Winter Hawk' +p89440 +sg25270 +S'Artist Information (' +p89441 +sa(dp89442 +g25273 +S'(artist after)' +p89443 +sg25267 +g27 +sg25275 +S'\n' +p89444 +sg25268 +S'Swallow-tailed Hawk' +p89445 +sg25270 +S'Artist Information (' +p89446 +sa(dp89447 +g25273 +S'(artist after)' +p89448 +sg25267 +g27 +sg25275 +S'\n' +p89449 +sg25268 +S'Wood Thrush' +p89450 +sg25270 +S'Artist Information (' +p89451 +sa(dp89452 +g25273 +S'(artist after)' +p89453 +sg25267 +g27 +sg25275 +S'\n' +p89454 +sg25268 +S'Indigo Bird' +p89455 +sg25270 +S'Artist Information (' +p89456 +sa(dp89457 +g25273 +S'(artist after)' +p89458 +sg25267 +g27 +sg25275 +S'\n' +p89459 +sg25268 +S'Le Petit Caporal' +p89460 +sg25270 +S'Artist Information (' +p89461 +sa(dp89462 +g25268 +S'Virginian Partridge' +p89463 +sg25270 +S'Artist Information (' +p89464 +sg25273 +S'(artist after)' +p89465 +sg25275 +S'\n' +p89466 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a40.jpg' +p89467 +sg25267 +g27 +sa(dp89468 +g25268 +S'Belted Kingsfisher' +p89469 +sg25270 +S'Artist Information (' +p89470 +sg25273 +S'(artist after)' +p89471 +sg25275 +S'\n' +p89472 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005730.jpg' +p89473 +sg25267 +g27 +sa(dp89474 +g25273 +S'(artist after)' +p89475 +sg25267 +g27 +sg25275 +S'\n' +p89476 +sg25268 +S'Great Carolina Wren' +p89477 +sg25270 +S'Artist Information (' +p89478 +sa(dp89479 +g25268 +S'Andr\xc3\xa9-Marie-Jean-Jacques Dupin A\xc3\xaen\xc3\xa9' +p89480 +sg25270 +S'Honor\xc3\xa9 Daumier' +p89481 +sg25273 +S'bronze' +p89482 +sg25275 +S'model c. 1832/1835, cast 1929/1930' +p89483 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001f96.jpg' +p89484 +sg25267 +g27 +sa(dp89485 +g25273 +S'(artist after)' +p89486 +sg25267 +g27 +sg25275 +S'\n' +p89487 +sg25268 +S'Tyrant Flycatcher' +p89488 +sg25270 +S'Artist Information (' +p89489 +sa(dp89490 +g25273 +S'(artist after)' +p89491 +sg25267 +g27 +sg25275 +S'\n' +p89492 +sg25268 +S'Prairie Titlark' +p89493 +sg25270 +S'Artist Information (' +p89494 +sa(dp89495 +g25268 +S'Fish Hawk' +p89496 +sg25270 +S'Artist Information (' +p89497 +sg25273 +S'(artist after)' +p89498 +sg25275 +S'\n' +p89499 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a000574e.jpg' +p89500 +sg25267 +g27 +sa(dp89501 +g25268 +S'Whip-poor-will' +p89502 +sg25270 +S'Artist Information (' +p89503 +sg25273 +S'(artist after)' +p89504 +sg25275 +S'\n' +p89505 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a000572f.jpg' +p89506 +sg25267 +g27 +sa(dp89507 +g25268 +S'House Wren' +p89508 +sg25270 +S'Artist Information (' +p89509 +sg25273 +S'(artist after)' +p89510 +sg25275 +S'\n' +p89511 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a000574f.jpg' +p89512 +sg25267 +g27 +sa(dp89513 +g25273 +S'(artist after)' +p89514 +sg25267 +g27 +sg25275 +S'\n' +p89515 +sg25268 +S'Blue-grey Flycatcher' +p89516 +sg25270 +S'Artist Information (' +p89517 +sa(dp89518 +g25273 +S'(artist after)' +p89519 +sg25267 +g27 +sg25275 +S'\n' +p89520 +sg25268 +S'Yellow-throated Warbler' +p89521 +sg25270 +S'Artist Information (' +p89522 +sa(dp89523 +g25273 +S'(artist after)' +p89524 +sg25267 +g27 +sg25275 +S'\n' +p89525 +sg25268 +S'Black Warrior' +p89526 +sg25270 +S'Artist Information (' +p89527 +sa(dp89528 +g25273 +S'(artist after)' +p89529 +sg25267 +g27 +sg25275 +S'\n' +p89530 +sg25268 +S'Florida Jays' +p89531 +sg25270 +S'Artist Information (' +p89532 +sa(dp89533 +g25273 +S'(artist after)' +p89534 +sg25267 +g27 +sg25275 +S'\n' +p89535 +sg25268 +S'Autumnal Warbler' +p89536 +sg25270 +S'Artist Information (' +p89537 +sa(dp89538 +g25268 +S'Jean-Marie Fruchard' +p89539 +sg25270 +S'Honor\xc3\xa9 Daumier' +p89540 +sg25273 +S'bronze' +p89541 +sg25275 +S'model c. 1832/1835, cast 1929/1930' +p89542 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001f97.jpg' +p89543 +sg25267 +g27 +sa(dp89544 +g25273 +S'(artist after)' +p89545 +sg25267 +g27 +sg25275 +S'\n' +p89546 +sg25268 +S'Nashville Warbler' +p89547 +sg25270 +S'Artist Information (' +p89548 +sa(dp89549 +g25273 +S'(artist after)' +p89550 +sg25267 +g27 +sg25275 +S'\n' +p89551 +sg25268 +S'Black and White Creeper' +p89552 +sg25270 +S'Artist Information (' +p89553 +sa(dp89554 +g25273 +S'(artist after)' +p89555 +sg25267 +g27 +sg25275 +S'\n' +p89556 +sg25268 +S'Broad-winged Hawk' +p89557 +sg25270 +S'Artist Information (' +p89558 +sa(dp89559 +g25273 +S'(artist after)' +p89560 +sg25267 +g27 +sg25275 +S'\n' +p89561 +sg25268 +S'Pigeon Hawk' +p89562 +sg25270 +S'Artist Information (' +p89563 +sa(dp89564 +g25273 +S'(artist after)' +p89565 +sg25267 +g27 +sg25275 +S'\n' +p89566 +sg25268 +S'Sea-side Finch' +p89567 +sg25270 +S'Artist Information (' +p89568 +sa(dp89569 +g25273 +S'(artist after)' +p89570 +sg25267 +g27 +sg25275 +S'\n' +p89571 +sg25268 +S'Bay-winged Bunting' +p89572 +sg25270 +S'Artist Information (' +p89573 +sa(dp89574 +g25273 +S'(artist after)' +p89575 +sg25267 +g27 +sg25275 +S'\n' +p89576 +sg25268 +S'Blue-eyed Yellow Warbler' +p89577 +sg25270 +S'Artist Information (' +p89578 +sa(dp89579 +g25268 +S'Columbia Jay' +p89580 +sg25270 +S'Artist Information (' +p89581 +sg25273 +S'(artist after)' +p89582 +sg25275 +S'\n' +p89583 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a000572e.jpg' +p89584 +sg25267 +g27 +sa(dp89585 +g25273 +S'(artist after)' +p89586 +sg25267 +g27 +sg25275 +S'\n' +p89587 +sg25268 +S'Mottled Owl' +p89588 +sg25270 +S'Artist Information (' +p89589 +sa(dp89590 +g25273 +S'(artist after)' +p89591 +sg25267 +g27 +sg25275 +S'\n' +p89592 +sg25268 +S'Marsh Wren' +p89593 +sg25270 +S'Artist Information (' +p89594 +sa(dp89595 +g25268 +S'Charles Philipon' +p89596 +sg25270 +S'Honor\xc3\xa9 Daumier' +p89597 +sg25273 +S'bronze' +p89598 +sg25275 +S'model c. 1832/1835, cast 1929/1930' +p89599 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001f98.jpg' +p89600 +sg25267 +g27 +sa(dp89601 +g25273 +S'(artist after)' +p89602 +sg25267 +g27 +sg25275 +S'\n' +p89603 +sg25268 +S'Cow Bunting' +p89604 +sg25270 +S'Artist Information (' +p89605 +sa(dp89606 +g25273 +S'(artist after)' +p89607 +sg25267 +g27 +sg25275 +S'\n' +p89608 +sg25268 +S'Green-blue or White-bellied Swallow' +p89609 +sg25270 +S'Artist Information (' +p89610 +sa(dp89611 +g25268 +S'Raven' +p89612 +sg25270 +S'Artist Information (' +p89613 +sg25273 +S'(artist after)' +p89614 +sg25275 +S'\n' +p89615 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005738.jpg' +p89616 +sg25267 +g27 +sa(dp89617 +g25268 +S'Blue Jay' +p89618 +sg25270 +S'Artist Information (' +p89619 +sg25273 +S'(artist after)' +p89620 +sg25275 +S'\n' +p89621 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000935.jpg' +p89622 +sg25267 +g27 +sa(dp89623 +g25273 +S'(artist after)' +p89624 +sg25267 +g27 +sg25275 +S'\n' +p89625 +sg25268 +S'Canada Warbler' +p89626 +sg25270 +S'Artist Information (' +p89627 +sa(dp89628 +g25273 +S'(artist after)' +p89629 +sg25267 +g27 +sg25275 +S'\n' +p89630 +sg25268 +S'Chipping Sparrow' +p89631 +sg25270 +S'Artist Information (' +p89632 +sa(dp89633 +g25273 +S'(artist after)' +p89634 +sg25267 +g27 +sg25275 +S'\n' +p89635 +sg25268 +S'Red-breasted Nuthatch' +p89636 +sg25270 +S'Artist Information (' +p89637 +sa(dp89638 +g25273 +S'(artist after)' +p89639 +sg25267 +g27 +sg25275 +S'\n' +p89640 +sg25268 +S'Black Vulture' +p89641 +sg25270 +S'Artist Information (' +p89642 +sa(dp89643 +g25273 +S'(artist after)' +p89644 +sg25267 +g27 +sg25275 +S'\n' +p89645 +sg25268 +S'Canada Jay' +p89646 +sg25270 +S'Artist Information (' +p89647 +sa(dp89648 +g25273 +S'(artist after)' +p89649 +sg25267 +g27 +sg25275 +S'\n' +p89650 +sg25268 +S'Two-colored Sparrow' +p89651 +sg25270 +S'Artist Information (' +p89652 +sa(dp89653 +g25268 +S'Fran\xc3\xa7ois, Marquis de Barb\xc3\xa9-Marbois (?)' +p89654 +sg25270 +S'Honor\xc3\xa9 Daumier' +p89655 +sg25273 +S'bronze' +p89656 +sg25275 +S'model c. 1832/1835, cast 1929/1940' +p89657 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001f99.jpg' +p89658 +sg25267 +g27 +sa(dp89659 +g25273 +S'(artist after)' +p89660 +sg25267 +g27 +sg25275 +S'\n' +p89661 +sg25268 +S'Savannah Finch' +p89662 +sg25270 +S'Artist Information (' +p89663 +sa(dp89664 +g25273 +S'(artist after)' +p89665 +sg25267 +g27 +sg25275 +S'\n' +p89666 +sg25268 +S'Hooded Warbler' +p89667 +sg25270 +S'Artist Information (' +p89668 +sa(dp89669 +g25268 +S'Pileated Woodpecker' +p89670 +sg25270 +S'Artist Information (' +p89671 +sg25273 +S'(artist after)' +p89672 +sg25275 +S'\n' +p89673 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000936.jpg' +p89674 +sg25267 +g27 +sa(dp89675 +g25273 +S'(artist after)' +p89676 +sg25267 +g27 +sg25275 +S'\n' +p89677 +sg25268 +S'Downy Woodpecker' +p89678 +sg25270 +S'Artist Information (' +p89679 +sa(dp89680 +g25273 +S'(artist after)' +p89681 +sg25267 +g27 +sg25275 +S'\n' +p89682 +sg25268 +S'Blue-Bird' +p89683 +sg25270 +S'Artist Information (' +p89684 +sa(dp89685 +g25273 +S'(artist after)' +p89686 +sg25267 +g27 +sg25275 +S'\n' +p89687 +sg25268 +S'White-crowned Sparrow' +p89688 +sg25270 +S'Artist Information (' +p89689 +sa(dp89690 +g25273 +S'(artist after)' +p89691 +sg25267 +g27 +sg25275 +S'\n' +p89692 +sg25268 +S'Wood Pewee' +p89693 +sg25270 +S'Artist Information (' +p89694 +sa(dp89695 +g25273 +S'(artist after)' +p89696 +sg25267 +g27 +sg25275 +S'\n' +p89697 +sg25268 +S'Ferruginous Thrush' +p89698 +sg25270 +S'Artist Information (' +p89699 +sa(dp89700 +g25273 +S'(artist after)' +p89701 +sg25267 +g27 +sg25275 +S'\n' +p89702 +sg25268 +S'Mississippi Kite' +p89703 +sg25270 +S'Artist Information (' +p89704 +sa(dp89705 +g25273 +S'(artist after)' +p89706 +sg25267 +g27 +sg25275 +S'\n' +p89707 +sg25268 +S'Warbling Flycatcher' +p89708 +sg25270 +S'Artist Information (' +p89709 +sa(dp89710 +g25268 +S'Jean-Auguste Chevandier de Valdrome' +p89711 +sg25270 +S'Honor\xc3\xa9 Daumier' +p89712 +sg25273 +S'bronze' +p89713 +sg25275 +S'model c. 1832/1835, cast 1929/1940' +p89714 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001f9a.jpg' +p89715 +sg25267 +g27 +sa(dp89716 +g25268 +S'Yellow-throated Vireo' +p89717 +sg25270 +S'Artist Information (' +p89718 +sg25273 +S'(artist after)' +p89719 +sg25275 +S'\n' +p89720 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000937.jpg' +p89721 +sg25267 +g27 +sa(dp89722 +g25273 +S'(artist after)' +p89723 +sg25267 +g27 +sg25275 +S'\n' +p89724 +sg25268 +S'Pewit Flycatcher' +p89725 +sg25270 +S'Artist Information (' +p89726 +sa(dp89727 +g25268 +S'Snowy Owl' +p89728 +sg25270 +S'Artist Information (' +p89729 +sg25273 +S'(artist after)' +p89730 +sg25275 +S'\n' +p89731 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000939.jpg' +p89732 +sg25267 +g27 +sa(dp89733 +g25273 +S'(artist after)' +p89734 +sg25267 +g27 +sg25275 +S'\n' +p89735 +sg25268 +S'Blue Grosbeak' +p89736 +sg25270 +S'Artist Information (' +p89737 +sa(dp89738 +g25273 +S'(artist after)' +p89739 +sg25267 +g27 +sg25275 +S'\n' +p89740 +sg25268 +S'Black and Yellow Warbler' +p89741 +sg25270 +S'Artist Information (' +p89742 +sa(dp89743 +g25273 +S'(artist after)' +p89744 +sg25267 +g27 +sg25275 +S'\n' +p89745 +sg25268 +S'Green Black-Capt Flycatcher' +p89746 +sg25270 +S'Artist Information (' +p89747 +sa(dp89748 +g25273 +S'(artist after)' +p89749 +sg25267 +g27 +sg25275 +S'\n' +p89750 +sg25268 +S'Brown-Headed Nuthatch' +p89751 +sg25270 +S'Artist Information (' +p89752 +sa(dp89753 +g25273 +S'(artist after)' +p89754 +sg25267 +g27 +sg25275 +S'\n' +p89755 +sg25268 +S'White-Headed Eagle' +p89756 +sg25270 +S'Artist Information (' +p89757 +sa(dp89758 +g25273 +S'(artist after)' +p89759 +sg25267 +g27 +sg25275 +S'\n' +p89760 +sg25268 +S'Rose-breasted Grosbeak' +p89761 +sg25270 +S'Artist Information (' +p89762 +sa(dp89763 +g25273 +S'(artist after)' +p89764 +sg25267 +g27 +sg25275 +S'\n' +p89765 +sg25268 +S'Cat Bird' +p89766 +sg25270 +S'Artist Information (' +p89767 +sa(dp89768 +g25268 +S'Jean-Charles Persil' +p89769 +sg25270 +S'Honor\xc3\xa9 Daumier' +p89770 +sg25273 +S'bronze' +p89771 +sg25275 +S'model c. 1832/1835, cast 1929/1940' +p89772 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001f9b.jpg' +p89773 +sg25267 +g27 +sa(dp89774 +g25273 +S'(artist after)' +p89775 +sg25267 +g27 +sg25275 +S'\n' +p89776 +sg25268 +S'Great Crested Flycatcher' +p89777 +sg25270 +S'Artist Information (' +p89778 +sa(dp89779 +g25273 +S'(artist after)' +p89780 +sg25267 +g27 +sg25275 +S'\n' +p89781 +sg25268 +S'Yellow-winged Sparrow' +p89782 +sg25270 +S'Artist Information (' +p89783 +sa(dp89784 +g25268 +S'American Robin' +p89785 +sg25270 +S'Artist Information (' +p89786 +sg25273 +S'(artist after)' +p89787 +sg25275 +S'\n' +p89788 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a000093a.jpg' +p89789 +sg25267 +g27 +sa(dp89790 +g25273 +S'(artist after)' +p89791 +sg25267 +g27 +sg25275 +S'\n' +p89792 +sg25268 +S'Three-Toed Woodpecker' +p89793 +sg25270 +S'Artist Information (' +p89794 +sa(dp89795 +g25273 +S'(artist after)' +p89796 +sg25267 +g27 +sg25275 +S'\n' +p89797 +sg25268 +S'Black-Pool Warbler' +p89798 +sg25270 +S'Artist Information (' +p89799 +sa(dp89800 +g25273 +S'(artist after)' +p89801 +sg25267 +g27 +sg25275 +S'\n' +p89802 +sg25268 +S'Hemlock Warbler' +p89803 +sg25270 +S'Artist Information (' +p89804 +sa(dp89805 +g25273 +S'(artist after)' +p89806 +sg25267 +g27 +sg25275 +S'\n' +p89807 +sg25268 +S'Blackburnian Warbler' +p89808 +sg25270 +S'Artist Information (' +p89809 +sa(dp89810 +g25268 +S'Meadow Lark' +p89811 +sg25270 +S'Artist Information (' +p89812 +sg25273 +S'(artist after)' +p89813 +sg25275 +S'\n' +p89814 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005750.jpg' +p89815 +sg25267 +g27 +sa(dp89816 +g25268 +S'Yellow-breasted Chat' +p89817 +sg25270 +S'Artist Information (' +p89818 +sg25273 +S'(artist after)' +p89819 +sg25275 +S'\n' +p89820 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005737.jpg' +p89821 +sg25267 +g27 +sa(dp89822 +g25273 +S'(artist after)' +p89823 +sg25267 +g27 +sg25275 +S'\n' +p89824 +sg25268 +S'Connecticut Warbler' +p89825 +sg25270 +S'Artist Information (' +p89826 +sa(dp89827 +g25268 +S'Alexandre Lecomte' +p89828 +sg25270 +S'Honor\xc3\xa9 Daumier' +p89829 +sg25273 +S'bronze' +p89830 +sg25275 +S'model c. 1832/1835, cast 1929/1940' +p89831 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001f9c.jpg' +p89832 +sg25267 +g27 +sa(dp89833 +g25273 +S'(artist after)' +p89834 +sg25267 +g27 +sg25275 +S'\n' +p89835 +sg25268 +S'Field Sparrow' +p89836 +sg25270 +S'Artist Information (' +p89837 +sa(dp89838 +g25273 +S'(artist after)' +p89839 +sg25267 +g27 +sg25275 +S'\n' +p89840 +sg25268 +S'Pine Creeping Warbler' +p89841 +sg25270 +S'Artist Information (' +p89842 +sa(dp89843 +g25268 +S'Goshawk and Stanley Hawk' +p89844 +sg25270 +S'Artist Information (' +p89845 +sg25273 +S'(artist after)' +p89846 +sg25275 +S'\n' +p89847 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005736.jpg' +p89848 +sg25267 +g27 +sa(dp89849 +g25273 +S'(artist after)' +p89850 +sg25267 +g27 +sg25275 +S'\n' +p89851 +sg25268 +S'American Sparrow Hawk' +p89852 +sg25270 +S'Artist Information (' +p89853 +sa(dp89854 +g25273 +S'(artist after)' +p89855 +sg25267 +g27 +sg25275 +S'\n' +p89856 +sg25268 +S'Golden-Crowned Thrush' +p89857 +sg25270 +S'Artist Information (' +p89858 +sa(dp89859 +g25273 +S'(artist after)' +p89860 +sg25267 +g27 +sg25275 +S'\n' +p89861 +sg25268 +S'Small Green-Crested Flycatcher' +p89862 +sg25270 +S'Artist Information (' +p89863 +sa(dp89864 +g25273 +S'(artist after)' +p89865 +sg25267 +g27 +sg25275 +S'\n' +p89866 +sg25268 +S'Yellow Red-Poll Warbler' +p89867 +sg25270 +S'Artist Information (' +p89868 +sa(dp89869 +g25273 +S'(artist after)' +p89870 +sg25267 +g27 +sg25275 +S'\n' +p89871 +sg25268 +S'Fish Crow' +p89872 +sg25270 +S'Artist Information (' +p89873 +sa(dp89874 +g25273 +S'(artist after)' +p89875 +sg25267 +g27 +sg25275 +S'\n' +p89876 +sg25268 +S'Night Hawk' +p89877 +sg25270 +S'Artist Information (' +p89878 +sa(dp89879 +g25273 +S'(artist after)' +p89880 +sg25267 +g27 +sg25275 +S'\n' +p89881 +sg25268 +S'Pine Swamp Warbler' +p89882 +sg25270 +S'Artist Information (' +p89883 +sa(dp89884 +g25268 +S'Antoine Odier' +p89885 +sg25270 +S'Honor\xc3\xa9 Daumier' +p89886 +sg25273 +S'bronze' +p89887 +sg25275 +S'model c. 1832/1835, cast 1929/1940' +p89888 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001f9d.jpg' +p89889 +sg25267 +g27 +sa(dp89890 +g25273 +S'(artist after)' +p89891 +sg25267 +g27 +sg25275 +S'\n' +p89892 +sg25268 +S'Sharp-Tailed Finch' +p89893 +sg25270 +S'Artist Information (' +p89894 +sa(dp89895 +g25273 +S'(artist after)' +p89896 +sg25267 +g27 +sg25275 +S'\n' +p89897 +sg25268 +S'Red-Eyed Vireo' +p89898 +sg25270 +S'Artist Information (' +p89899 +sa(dp89900 +g25273 +S'(artist after)' +p89901 +sg25267 +g27 +sg25275 +S'\n' +p89902 +sg25268 +S'Turkey Buzzard' +p89903 +sg25270 +S'Artist Information (' +p89904 +sa(dp89905 +g25273 +S'(artist after)' +p89906 +sg25267 +g27 +sg25275 +S'\n' +p89907 +sg25268 +S'White-breasted Black-capped Nuthatch' +p89908 +sg25270 +S'Artist Information (' +p89909 +sa(dp89910 +g25273 +S'(artist after)' +p89911 +sg25267 +g27 +sg25275 +S'\n' +p89912 +sg25268 +S'Yellow-crown Warbler' +p89913 +sg25270 +S'Artist Information (' +p89914 +sa(dp89915 +g25273 +S'(artist after)' +p89916 +sg25267 +g27 +sg25275 +S'\n' +p89917 +sg25268 +S'Tennessee Warbler' +p89918 +sg25270 +S'Artist Information (' +p89919 +sa(dp89920 +g25273 +S'(artist after)' +p89921 +sg25267 +g27 +sg25275 +S'\n' +p89922 +sg25268 +S'Black-throated Blue Warbler' +p89923 +sg25270 +S'Artist Information (' +p89924 +sa(dp89925 +g25273 +S'(artist after)' +p89926 +sg25267 +g27 +sg25275 +S'\n' +p89927 +sg25268 +S'American Crow' +p89928 +sg25270 +S'Artist Information (' +p89929 +sa(dp89930 +g25273 +S'(artist after)' +p89931 +sg25267 +g27 +sg25275 +S'\n' +p89932 +sg25268 +S'Rusty Grakle' +p89933 +sg25270 +S'Artist Information (' +p89934 +sa(dp89935 +g25273 +S'(artist after)' +p89936 +sg25267 +g27 +sg25275 +S'\n' +p89937 +sg25268 +S'American Swift' +p89938 +sg25270 +S'Artist Information (' +p89939 +sa(dp89940 +g25268 +S'Portrait of a Young Man' +p89941 +sg25270 +S'Giovanni Bellini' +p89942 +sg25273 +S'oil on panel' +p89943 +sg25275 +S'c. 1490' +p89944 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007cf.jpg' +p89945 +sg25267 +g27 +sa(dp89946 +g25268 +S'Charles-Malo-Fran\xc3\xa7ois, Comte de Lameth' +p89947 +sg25270 +S'Honor\xc3\xa9 Daumier' +p89948 +sg25273 +S'bronze' +p89949 +sg25275 +S'model c. 1832/1835, cast 1929/1940' +p89950 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001f9e.jpg' +p89951 +sg25267 +g27 +sa(dp89952 +g25268 +S'Cardinal Grosbeak' +p89953 +sg25270 +S'Artist Information (' +p89954 +sg25273 +S'(artist after)' +p89955 +sg25275 +S'\n' +p89956 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a000093b.jpg' +p89957 +sg25267 +g27 +sa(dp89958 +g25273 +S'(artist after)' +p89959 +sg25267 +g27 +sg25275 +S'\n' +p89960 +sg25268 +S'Black-capped Titmouse' +p89961 +sg25270 +S'Artist Information (' +p89962 +sa(dp89963 +g25273 +S'(artist after)' +p89964 +sg25267 +g27 +sg25275 +S'\n' +p89965 +sg25268 +S'Brasilian Caracara Eagle' +p89966 +sg25270 +S'Artist Information (' +p89967 +sa(dp89968 +g25273 +S'(artist after)' +p89969 +sg25267 +g27 +sg25275 +S'\n' +p89970 +sg25268 +S'Zenaida Dove' +p89971 +sg25270 +S'Artist Information (' +p89972 +sa(dp89973 +g25273 +S'(artist after)' +p89974 +sg25267 +g27 +sg25275 +S'\n' +p89975 +sg25268 +S'Palm Warbler' +p89976 +sg25270 +S'Artist Information (' +p89977 +sa(dp89978 +g25273 +S'(artist after)' +p89979 +sg25267 +g27 +sg25275 +S'\n' +p89980 +sg25268 +S'Tawny Thrush' +p89981 +sg25270 +S'Artist Information (' +p89982 +sa(dp89983 +g25273 +S'(artist after)' +p89984 +sg25267 +g27 +sg25275 +S'\n' +p89985 +sg25268 +S'Bachmans Finch' +p89986 +sg25270 +S'Artist Information (' +p89987 +sa(dp89988 +g25273 +S'(artist after)' +p89989 +sg25267 +g27 +sg25275 +S'\n' +p89990 +sg25268 +S'Rough-legged Falcon' +p89991 +sg25270 +S'Artist Information (' +p89992 +sa(dp89993 +g25268 +S'Key-west Dove' +p89994 +sg25270 +S'Artist Information (' +p89995 +sg25273 +S'(artist after)' +p89996 +sg25275 +S'\n' +p89997 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a000093c.jpg' +p89998 +sg25267 +g27 +sa(dp89999 +g25268 +S'Forked-tail Flycatcher' +p90000 +sg25270 +S'Artist Information (' +p90001 +sg25273 +S'(artist after)' +p90002 +sg25275 +S'\n' +p90003 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a000093d.jpg' +p90004 +sg25267 +g27 +sa(dp90005 +g25268 +S'Horace-Fran\xc3\xa7ois-Bastien S\xc3\xa9bastiani (?)' +p90006 +sg25270 +S'Honor\xc3\xa9 Daumier' +p90007 +sg25273 +S'bronze' +p90008 +sg25275 +S'model c. 1832/1835, cast 1929/1940' +p90009 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001f9f.jpg' +p90010 +sg25267 +g27 +sa(dp90011 +g25273 +S'(artist after)' +p90012 +sg25267 +g27 +sg25275 +S'\n' +p90013 +sg25268 +S'Mangrove Cuckoo' +p90014 +sg25270 +S'Artist Information (' +p90015 +sa(dp90016 +g25273 +S'(artist after)' +p90017 +sg25267 +g27 +sg25275 +S'\n' +p90018 +sg25268 +S'Gray Tyrant' +p90019 +sg25270 +S'Artist Information (' +p90020 +sa(dp90021 +g25273 +S'(artist after)' +p90022 +sg25267 +g27 +sg25275 +S'\n' +p90023 +sg25268 +S'Barn Owl' +p90024 +sg25270 +S'Artist Information (' +p90025 +sa(dp90026 +g25273 +S'(artist after)' +p90027 +sg25267 +g27 +sg25275 +S'\n' +p90028 +sg25268 +S'Blue-headed Pigeon' +p90029 +sg25270 +S'Artist Information (' +p90030 +sa(dp90031 +g25273 +S'(artist after)' +p90032 +sg25267 +g27 +sg25275 +S'\n' +p90033 +sg25268 +S'Barn Swallow' +p90034 +sg25270 +S'Artist Information (' +p90035 +sa(dp90036 +g25273 +S'(artist after)' +p90037 +sg25267 +g27 +sg25275 +S'\n' +p90038 +sg25268 +S'Olive-sided Flycatcher' +p90039 +sg25270 +S'Artist Information (' +p90040 +sa(dp90041 +g25273 +S'(artist after)' +p90042 +sg25267 +g27 +sg25275 +S'\n' +p90043 +sg25268 +S"Nuttall's Lesser Marsh Wren" +p90044 +sg25270 +S'Artist Information (' +p90045 +sa(dp90046 +g25273 +S'(artist after)' +p90047 +sg25267 +g27 +sg25275 +S'\n' +p90048 +sg25268 +S'Spotted Grous' +p90049 +sg25270 +S'Artist Information (' +p90050 +sa(dp90051 +g25273 +S'(artist after)' +p90052 +sg25267 +g27 +sg25275 +S'\n' +p90053 +sg25268 +S'White-crowned Pigeon' +p90054 +sg25270 +S'Artist Information (' +p90055 +sa(dp90056 +g25273 +S'(artist after)' +p90057 +sg25267 +g27 +sg25275 +S'\n' +p90058 +sg25268 +S'Orange-crowned Warbler' +p90059 +sg25270 +S'Artist Information (' +p90060 +sa(dp90061 +g25268 +S'Charles Henry Verhuel, Count of Sevenaar (?)' +p90062 +sg25270 +S'Honor\xc3\xa9 Daumier' +p90063 +sg25273 +S'bronze' +p90064 +sg25275 +S'model c. 1832/1835, cast 1929/1940' +p90065 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fa1.jpg' +p90066 +sg25267 +g27 +sa(dp90067 +g25273 +S'(artist after)' +p90068 +sg25267 +g27 +sg25275 +S'\n' +p90069 +sg25268 +S'Wood Wren' +p90070 +sg25270 +S'Artist Information (' +p90071 +sa(dp90072 +g25273 +S'(artist after)' +p90073 +sg25267 +g27 +sg25275 +S'\n' +p90074 +sg25268 +S'Pine Finch' +p90075 +sg25270 +S'Artist Information (' +p90076 +sa(dp90077 +g25273 +S'(artist after)' +p90078 +sg25267 +g27 +sg25275 +S'\n' +p90079 +sg25268 +S'Golden Eagle' +p90080 +sg25270 +S'Artist Information (' +p90081 +sa(dp90082 +g25273 +S'(artist after)' +p90083 +sg25267 +g27 +sg25275 +S'\n' +p90084 +sg25268 +S'Ground Dove' +p90085 +sg25270 +S'Artist Information (' +p90086 +sa(dp90087 +g25273 +S'(artist after)' +p90088 +sg25267 +g27 +sg25275 +S'\n' +p90089 +sg25268 +S'Golden-Crested Wren' +p90090 +sg25270 +S'Artist Information (' +p90091 +sa(dp90092 +g25273 +S'(artist after)' +p90093 +sg25267 +g27 +sg25275 +S'\n' +p90094 +sg25268 +S'Mangrove Humming Bird' +p90095 +sg25270 +S'Artist Information (' +p90096 +sa(dp90097 +g25273 +S'(artist after)' +p90098 +sg25267 +g27 +sg25275 +S'\n' +p90099 +sg25268 +S"Bachman's Warbler" +p90100 +sg25270 +S'Artist Information (' +p90101 +sa(dp90102 +g25273 +S'(artist after)' +p90103 +sg25267 +g27 +sg25275 +S'\n' +p90104 +sg25268 +S'Pinnated Grous' +p90105 +sg25270 +S'Artist Information (' +p90106 +sa(dp90107 +g25273 +S'(artist after)' +p90108 +sg25267 +g27 +sg25275 +S'\n' +p90109 +sg25268 +S'Boat-tailed Grackle' +p90110 +sg25270 +S'Artist Information (' +p90111 +sa(dp90112 +g25273 +S'(artist after)' +p90113 +sg25267 +g27 +sg25275 +S'\n' +p90114 +sg25268 +S'Tree Sparrow' +p90115 +sg25270 +S'Artist Information (' +p90116 +sa(dp90117 +g25268 +S'Charles-L\xc3\xa9onard Gallois (?)' +p90118 +sg25270 +S'Honor\xc3\xa9 Daumier' +p90119 +sg25273 +S'bronze' +p90120 +sg25275 +S'model c. 1832/1835 or c. 1849, cast 1929/1940' +p90121 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fa2.jpg' +p90122 +sg25267 +g27 +sa(dp90123 +g25273 +S'(artist after)' +p90124 +sg25267 +g27 +sg25275 +S'\n' +p90125 +sg25268 +S'Snow Bunting' +p90126 +sg25270 +S'Artist Information (' +p90127 +sa(dp90128 +g25273 +S'(artist after)' +p90129 +sg25267 +g27 +sg25275 +S'\n' +p90130 +sg25268 +S'Yellow-bellied Woodpecker' +p90131 +sg25270 +S'Artist Information (' +p90132 +sa(dp90133 +g25273 +S'(artist after)' +p90134 +sg25267 +g27 +sg25275 +S'\n' +p90135 +sg25268 +S'Willow Grous' +p90136 +sg25270 +S'Artist Information (' +p90137 +sa(dp90138 +g25273 +S'(artist after)' +p90139 +sg25267 +g27 +sg25275 +S'\n' +p90140 +sg25268 +S'Great American Shrike or Butcher Bird' +p90141 +sg25270 +S'Artist Information (' +p90142 +sa(dp90143 +g25273 +S'(artist after)' +p90144 +sg25267 +g27 +sg25275 +S'\n' +p90145 +sg25268 +S'Lincoln Finch' +p90146 +sg25270 +S'Artist Information (' +p90147 +sa(dp90148 +g25273 +S'(artist after)' +p90149 +sg25267 +g27 +sg25275 +S'\n' +p90150 +sg25268 +S'Canadian Titmouse' +p90151 +sg25270 +S'Artist Information (' +p90152 +sa(dp90153 +g25273 +S'(artist after)' +p90154 +sg25267 +g27 +sg25275 +S'\n' +p90155 +sg25268 +S'Ruby-crowned Wren' +p90156 +sg25270 +S'Artist Information (' +p90157 +sa(dp90158 +g25273 +S'(artist after)' +p90159 +sg25267 +g27 +sg25275 +S'\n' +p90160 +sg25268 +S'Labrador Falcon' +p90161 +sg25270 +S'Artist Information (' +p90162 +sa(dp90163 +g25273 +S'(artist after)' +p90164 +sg25267 +g27 +sg25275 +S'\n' +p90165 +sg25268 +S'American Crossbill' +p90166 +sg25270 +S'Artist Information (' +p90167 +sa(dp90168 +g25273 +S'(artist after)' +p90169 +sg25267 +g27 +sg25275 +S'\n' +p90170 +sg25268 +S'Brown-headed Worm-eating Warbler' +p90171 +sg25270 +S'Artist Information (' +p90172 +sa(dp90173 +g25268 +S'Claude Bailliot' +p90174 +sg25270 +S'Honor\xc3\xa9 Daumier' +p90175 +sg25273 +S'bronze' +p90176 +sg25275 +S'model c. 1832/1835, cast 1929/1940' +p90177 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fa3.jpg' +p90178 +sg25267 +g27 +sa(dp90179 +g25273 +S'(artist after)' +p90180 +sg25267 +g27 +sg25275 +S'\n' +p90181 +sg25268 +S'Little Owl' +p90182 +sg25270 +S'Artist Information (' +p90183 +sa(dp90184 +g25273 +S'(artist after)' +p90185 +sg25267 +g27 +sg25275 +S'\n' +p90186 +sg25268 +S'Shore Lark' +p90187 +sg25270 +S'Artist Information (' +p90188 +sa(dp90189 +g25268 +S'Canada Goose' +p90190 +sg25270 +S'Artist Information (' +p90191 +sg25273 +S'(artist after)' +p90192 +sg25275 +S'\n' +p90193 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a000093f.jpg' +p90194 +sg25267 +g27 +sa(dp90195 +g25273 +S'(artist after)' +p90196 +sg25267 +g27 +sg25275 +S'\n' +p90197 +sg25268 +S'Red-throated Diver' +p90198 +sg25270 +S'Artist Information (' +p90199 +sa(dp90200 +g25273 +S'(artist after)' +p90201 +sg25267 +g27 +sg25275 +S'\n' +p90202 +sg25268 +S'Fresh Water Marsh Hen' +p90203 +sg25270 +S'Artist Information (' +p90204 +sa(dp90205 +g25273 +S'(artist after)' +p90206 +sg25267 +g27 +sg25275 +S'\n' +p90207 +sg25268 +S'Salt Water Marsh Hen' +p90208 +sg25270 +S'Artist Information (' +p90209 +sa(dp90210 +g25273 +S'(artist after)' +p90211 +sg25267 +g27 +sg25275 +S'\n' +p90212 +sg25268 +S'Virginia Rail' +p90213 +sg25270 +S'Artist Information (' +p90214 +sa(dp90215 +g25268 +S'Summer or Wood Duck' +p90216 +sg25270 +S'Artist Information (' +p90217 +sg25273 +S'(artist after)' +p90218 +sg25275 +S'\n' +p90219 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000940.jpg' +p90220 +sg25267 +g27 +sa(dp90221 +g25273 +S'(artist after)' +p90222 +sg25267 +g27 +sg25275 +S'\n' +p90223 +sg25268 +S'Booby Gannet' +p90224 +sg25270 +S'Artist Information (' +p90225 +sa(dp90226 +g25273 +S'(artist after)' +p90227 +sg25267 +g27 +sg25275 +S'\n' +p90228 +sg25268 +S'Esquimaux Curlew' +p90229 +sg25270 +S'Artist Information (' +p90230 +sa(dp90231 +g25268 +S'Alfred-Fr\xc3\xa9d\xc3\xa9ric-Pierre, Comte de Falloux' +p90232 +sg25270 +S'Honor\xc3\xa9 Daumier' +p90233 +sg25273 +S'bronze' +p90234 +sg25275 +S'model possibly 1848/1850, cast 1929/1940' +p90235 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fa4.jpg' +p90236 +sg25267 +g27 +sa(dp90237 +g25273 +S'(artist after)' +p90238 +sg25267 +g27 +sg25275 +S'\n' +p90239 +sg25268 +S"Wilson's Plover" +p90240 +sg25270 +S'Artist Information (' +p90241 +sa(dp90242 +g25273 +S'(artist after)' +p90243 +sg25267 +g27 +sg25275 +S'\n' +p90244 +sg25268 +S'Least Bittern' +p90245 +sg25270 +S'Artist Information (' +p90246 +sa(dp90247 +g25273 +S'(artist after)' +p90248 +sg25267 +g27 +sg25275 +S'\n' +p90249 +sg25268 +S'Great blue Heron' +p90250 +sg25270 +S'Artist Information (' +p90251 +sa(dp90252 +g25273 +S'(artist after)' +p90253 +sg25267 +g27 +sg25275 +S'\n' +p90254 +sg25268 +S'Hyperborean Phalarope' +p90255 +sg25270 +S'Artist Information (' +p90256 +sa(dp90257 +g25273 +S'(artist after)' +p90258 +sg25267 +g27 +sg25275 +S'\n' +p90259 +sg25268 +S'Wood Ibis' +p90260 +sg25270 +S'Artist Information (' +p90261 +sa(dp90262 +g25268 +S'Louisiana Heron' +p90263 +sg25270 +S'Artist Information (' +p90264 +sg25273 +S'(artist after)' +p90265 +sg25275 +S'\n' +p90266 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005735.jpg' +p90267 +sg25267 +g27 +sa(dp90268 +g25273 +S'(artist after)' +p90269 +sg25267 +g27 +sg25275 +S'\n' +p90270 +sg25268 +S'Foolish Guillemot' +p90271 +sg25270 +S'Artist Information (' +p90272 +sa(dp90273 +g25273 +S'(artist after)' +p90274 +sg25267 +g27 +sg25275 +S'\n' +p90275 +sg25268 +S'Black Guillemot' +p90276 +sg25270 +S'Artist Information (' +p90277 +sa(dp90278 +g25273 +S'(artist after)' +p90279 +sg25267 +g27 +sg25275 +S'\n' +p90280 +sg25268 +S'Piping Plover' +p90281 +sg25270 +S'Artist Information (' +p90282 +sa(dp90283 +g25268 +S'Mallard Duck' +p90284 +sg25270 +S'Artist Information (' +p90285 +sg25273 +S'(artist after)' +p90286 +sg25275 +S'\n' +p90287 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005734.jpg' +p90288 +sg25267 +g27 +sa(dp90289 +g25268 +S'Jean Vatout' +p90290 +sg25270 +S'Honor\xc3\xa9 Daumier' +p90291 +sg25273 +S'bronze' +p90292 +sg25275 +S'model c. 1832/1835, cast 1929/1940' +p90293 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fa5.jpg' +p90294 +sg25267 +g27 +sa(dp90295 +g25273 +S'(artist after)' +p90296 +sg25267 +g27 +sg25275 +S'\n' +p90297 +sg25268 +S'White Ibis' +p90298 +sg25270 +S'Artist Information (' +p90299 +sa(dp90300 +g25273 +S'(artist after)' +p90301 +sg25267 +g27 +sg25275 +S'\n' +p90302 +sg25268 +S'Pied Oyster-Catcher' +p90303 +sg25270 +S'Artist Information (' +p90304 +sa(dp90305 +g25273 +S'(artist after)' +p90306 +sg25267 +g27 +sg25275 +S'\n' +p90307 +sg25268 +S'Kittiwake Gull' +p90308 +sg25270 +S'Artist Information (' +p90309 +sa(dp90310 +g25273 +S'(artist after)' +p90311 +sg25267 +g27 +sg25275 +S'\n' +p90312 +sg25268 +S'Kildeer Plover' +p90313 +sg25270 +S'Artist Information (' +p90314 +sa(dp90315 +g25268 +S'Hooping Crane' +p90316 +sg25270 +S'Artist Information (' +p90317 +sg25273 +S'(artist after)' +p90318 +sg25275 +S'\n' +p90319 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000942.jpg' +p90320 +sg25267 +g27 +sa(dp90321 +g25273 +S'(artist after)' +p90322 +sg25267 +g27 +sg25275 +S'\n' +p90323 +sg25268 +S'Pin-Tailed Duck' +p90324 +sg25270 +S'Artist Information (' +p90325 +sa(dp90326 +g25273 +S'(artist after)' +p90327 +sg25267 +g27 +sg25275 +S'\n' +p90328 +sg25268 +S'American Green-Winged Teal' +p90329 +sg25270 +S'Artist Information (' +p90330 +sa(dp90331 +g25273 +S'(artist after)' +p90332 +sg25267 +g27 +sg25275 +S'\n' +p90333 +sg25268 +S'Scaup Duck' +p90334 +sg25270 +S'Artist Information (' +p90335 +sa(dp90336 +g25273 +S'(artist after)' +p90337 +sg25267 +g27 +sg25275 +S'\n' +p90338 +sg25268 +S'Ruddy Plover' +p90339 +sg25270 +S'Artist Information (' +p90340 +sa(dp90341 +g25273 +S'(artist after)' +p90342 +sg25267 +g27 +sg25275 +S'\n' +p90343 +sg25268 +S'Long-billed Curlew' +p90344 +sg25270 +S'Artist Information (' +p90345 +sa(dp90346 +g25268 +S'Fugitives (Emigrants)' +p90347 +sg25270 +S'Honor\xc3\xa9 Daumier' +p90348 +sg25273 +S'bronze' +p90349 +sg25275 +S'model c. 1850/1852, cast 1893' +p90350 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00029/a00029bf.jpg' +p90351 +sg25267 +g27 +sa(dp90352 +g25273 +S'(artist after)' +p90353 +sg25267 +g27 +sg25275 +S'\n' +p90354 +sg25268 +S'Hooded Merganser' +p90355 +sg25270 +S'Artist Information (' +p90356 +sa(dp90357 +g25273 +S'(artist after)' +p90358 +sg25267 +g27 +sg25275 +S'\n' +p90359 +sg25268 +S'Sora or Rail' +p90360 +sg25270 +S'Artist Information (' +p90361 +sa(dp90362 +g25273 +S'(artist after)' +p90363 +sg25267 +g27 +sg25275 +S'\n' +p90364 +sg25268 +S'Tufted Duck' +p90365 +sg25270 +S'Artist Information (' +p90366 +sa(dp90367 +g25273 +S'(artist after)' +p90368 +sg25267 +g27 +sg25275 +S'\n' +p90369 +sg25268 +S'Sooty Tern' +p90370 +sg25270 +S'Artist Information (' +p90371 +sa(dp90372 +g25268 +S'Night Heron or Qua bird' +p90373 +sg25270 +S'Artist Information (' +p90374 +sg25273 +S'(artist after)' +p90375 +sg25275 +S'\n' +p90376 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005751.jpg' +p90377 +sg25267 +g27 +sa(dp90378 +g25273 +S'(artist after)' +p90379 +sg25267 +g27 +sg25275 +S'\n' +p90380 +sg25268 +S'Great Esquimaux Curlew' +p90381 +sg25270 +S'Artist Information (' +p90382 +sa(dp90383 +g25273 +S'(artist after)' +p90384 +sg25267 +g27 +sg25275 +S'\n' +p90385 +sg25268 +S'Great Marbled Godwit' +p90386 +sg25270 +S'Artist Information (' +p90387 +sa(dp90388 +g25273 +S'(artist after)' +p90389 +sg25267 +g27 +sg25275 +S'\n' +p90390 +sg25268 +S'American Coot' +p90391 +sg25270 +S'Artist Information (' +p90392 +sa(dp90393 +g25273 +S'(artist after)' +p90394 +sg25267 +g27 +sg25275 +S'\n' +p90395 +sg25268 +S'Roseate Tern' +p90396 +sg25270 +S'Artist Information (' +p90397 +sa(dp90398 +g25273 +S'(artist after)' +p90399 +sg25267 +g27 +sg25275 +S'\n' +p90400 +sg25268 +S'Black-Backed Gull' +p90401 +sg25270 +S'Artist Information (' +p90402 +sa(dp90403 +g25268 +S'Sketch of a Woman' +p90404 +sg25270 +S'Jean-Louis Forain' +p90405 +sg25273 +S'pastel on canvas' +p90406 +sg25275 +S'1885/1890' +p90407 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c5a3.jpg' +p90408 +sg25267 +g27 +sa(dp90409 +g25268 +S'Snowy Heron, or White Egret' +p90410 +sg25270 +S'Artist Information (' +p90411 +sg25273 +S'(artist after)' +p90412 +sg25275 +S'\n' +p90413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000943.jpg' +p90414 +sg25267 +g27 +sa(dp90415 +g25273 +S'(artist after)' +p90416 +sg25267 +g27 +sg25275 +S'\n' +p90417 +sg25268 +S'American Snipe' +p90418 +sg25270 +S'Artist Information (' +p90419 +sa(dp90420 +g25273 +S'(artist after)' +p90421 +sg25267 +g27 +sg25275 +S'\n' +p90422 +sg25268 +S'Common Gallinule' +p90423 +sg25270 +S'Artist Information (' +p90424 +sa(dp90425 +g25273 +S'(artist after)' +p90426 +sg25267 +g27 +sg25275 +S'\n' +p90427 +sg25268 +S'Uria Brunnichii' +p90428 +sg25270 +S'Artist Information (' +p90429 +sa(dp90430 +g25273 +S'(artist after)' +p90431 +sg25267 +g27 +sg25275 +S'\n' +p90432 +sg25268 +S'Eider Duck' +p90433 +sg25270 +S'Artist Information (' +p90434 +sa(dp90435 +g25273 +S'(artist after)' +p90436 +sg25267 +g27 +sg25275 +S'\n' +p90437 +sg25268 +S'Velvet Duck' +p90438 +sg25270 +S'Artist Information (' +p90439 +sa(dp90440 +g25273 +S'(artist after)' +p90441 +sg25267 +g27 +sg25275 +S'\n' +p90442 +sg25268 +S'Razor Bill' +p90443 +sg25270 +S'Artist Information (' +p90444 +sa(dp90445 +g25273 +S'(artist after)' +p90446 +sg25267 +g27 +sg25275 +S'\n' +p90447 +sg25268 +S'Puffin' +p90448 +sg25270 +S'Artist Information (' +p90449 +sa(dp90450 +g25273 +S'(artist after)' +p90451 +sg25267 +g27 +sg25275 +S'\n' +p90452 +sg25268 +S'Common Gull' +p90453 +sg25270 +S'Artist Information (' +p90454 +sa(dp90455 +g25273 +S'(artist after)' +p90456 +sg25267 +g27 +sg25275 +S'\n' +p90457 +sg25268 +S'American Pied-Bill Dobchick' +p90458 +sg25270 +S'Artist Information (' +p90459 +sa(dp90460 +g25273 +S'(artist after)' +p90461 +sg25267 +g27 +sg25275 +S'\n' +p90462 +sg25268 +S'Tufted Auk' +p90463 +sg25270 +S'Artist Information (' +p90464 +sa(dp90465 +g25268 +S'Arctic Tern' +p90466 +sg25270 +S'Artist Information (' +p90467 +sg25273 +S'(artist after)' +p90468 +sg25275 +S'\n' +p90469 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000944.jpg' +p90470 +sg25267 +g27 +sa(dp90471 +g25273 +S'(artist after)' +p90472 +sg25267 +g27 +sg25275 +S'\n' +p90473 +sg25268 +S'Brown Pelican' +p90474 +sg25270 +S'Artist Information (' +p90475 +sa(dp90476 +g25273 +S'(artist after)' +p90477 +sg25267 +g27 +sg25275 +S'\n' +p90478 +sg25268 +S'Florida Cormorant' +p90479 +sg25270 +S'Artist Information (' +p90480 +sa(dp90481 +g25273 +S'(artist after)' +p90482 +sg25267 +g27 +sg25275 +S'\n' +p90483 +sg25268 +S'Jager' +p90484 +sg25270 +S'Artist Information (' +p90485 +sa(dp90486 +g25273 +S'(artist after)' +p90487 +sg25267 +g27 +sg25275 +S'\n' +p90488 +sg25268 +S"Wilson's Phalarope" +p90489 +sg25270 +S'Artist Information (' +p90490 +sa(dp90491 +g25273 +S'(artist after)' +p90492 +sg25267 +g27 +sg25275 +S'\n' +p90493 +sg25268 +S'Red Phalarope' +p90494 +sg25270 +S'Artist Information (' +p90495 +sa(dp90496 +g25273 +S'(artist after)' +p90497 +sg25267 +g27 +sg25275 +S'\n' +p90498 +sg25268 +S'Purple Heron' +p90499 +sg25270 +S'Artist Information (' +p90500 +sa(dp90501 +g25273 +S'(artist after)' +p90502 +sg25267 +g27 +sg25275 +S'\n' +p90503 +sg25268 +S'Double-crested Cormorant' +p90504 +sg25270 +S'Artist Information (' +p90505 +sa(dp90506 +g25273 +S'(artist after)' +p90507 +sg25267 +g27 +sg25275 +S'\n' +p90508 +sg25268 +S'Hudsonian Godwit' +p90509 +sg25270 +S'Artist Information (' +p90510 +sa(dp90511 +g25268 +S'The Archangel Gabriel' +p90512 +sg25270 +S'Martin Schongauer' +p90513 +sg25273 +S'engraving' +p90514 +sg25275 +S'c. 1490/1491' +p90515 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a479.jpg' +p90516 +sg25267 +g27 +sa(dp90517 +g25273 +S'(artist after)' +p90518 +sg25267 +g27 +sg25275 +S'\n' +p90519 +sg25268 +S'Horned Grebe' +p90520 +sg25270 +S'Artist Information (' +p90521 +sa(dp90522 +g25273 +S'(artist after)' +p90523 +sg25267 +g27 +sg25275 +S'\n' +p90524 +sg25268 +S'Fork-tailed Petrel' +p90525 +sg25270 +S'Artist Information (' +p90526 +sa(dp90527 +g25273 +S'(artist after)' +p90528 +sg25267 +g27 +sg25275 +S'\n' +p90529 +sg25268 +S'Hooping Crane' +p90530 +sg25270 +S'Artist Information (' +p90531 +sa(dp90532 +g25273 +S'(artist after)' +p90533 +sg25267 +g27 +sg25275 +S'\n' +p90534 +sg25268 +S'Tropic Bird' +p90535 +sg25270 +S'Artist Information (' +p90536 +sa(dp90537 +g25273 +S'(artist after)' +p90538 +sg25267 +g27 +sg25275 +S'\n' +p90539 +sg25268 +S'Pigmy Curlew' +p90540 +sg25270 +S'Artist Information (' +p90541 +sa(dp90542 +g25273 +S'(artist after)' +p90543 +sg25267 +g27 +sg25275 +S'\n' +p90544 +sg25268 +S'Fulmer Petrel' +p90545 +sg25270 +S'Artist Information (' +p90546 +sa(dp90547 +g25273 +S'(artist after)' +p90548 +sg25267 +g27 +sg25275 +S'\n' +p90549 +sg25268 +S'Buff-breasted Sandpiper' +p90550 +sg25270 +S'Artist Information (' +p90551 +sa(dp90552 +g25273 +S'(artist after)' +p90553 +sg25267 +g27 +sg25275 +S'\n' +p90554 +sg25268 +S'Common Cormorant' +p90555 +sg25270 +S'Artist Information (' +p90556 +sa(dp90557 +g25273 +S'(artist after)' +p90558 +sg25267 +g27 +sg25275 +S'\n' +p90559 +sg25268 +S'Arctic Jager' +p90560 +sg25270 +S'Artist Information (' +p90561 +sa(dp90562 +g25273 +S'(artist after)' +p90563 +sg25267 +g27 +sg25275 +S'\n' +p90564 +sg25268 +S'American Woodcock' +p90565 +sg25270 +S'Artist Information (' +p90566 +sa(dp90567 +g25268 +S'The Nativity' +p90568 +sg25270 +S'Martin Schongauer' +p90569 +sg25273 +S'engraving on laid paper' +p90570 +sg25275 +S'c. 1470/1475' +p90571 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a481.jpg' +p90572 +sg25267 +g27 +sa(dp90573 +g25273 +S'(artist after)' +p90574 +sg25267 +g27 +sg25275 +S'\n' +p90575 +sg25268 +S'Greenshank' +p90576 +sg25270 +S'Artist Information (' +p90577 +sa(dp90578 +g25273 +S'(artist after)' +p90579 +sg25267 +g27 +sg25275 +S'\n' +p90580 +sg25268 +S'Stormy Petrel' +p90581 +sg25270 +S'Artist Information (' +p90582 +sa(dp90583 +g25273 +S'(artist after)' +p90584 +sg25267 +g27 +sg25275 +S'\n' +p90585 +sg25268 +S'Frigate Pelican' +p90586 +sg25270 +S'Artist Information (' +p90587 +sa(dp90588 +g25273 +S'(artist after)' +p90589 +sg25267 +g27 +sg25275 +S'\n' +p90590 +sg25268 +S"Richardson's Jager" +p90591 +sg25270 +S'Artist Information (' +p90592 +sa(dp90593 +g25273 +S'(artist after)' +p90594 +sg25267 +g27 +sg25275 +S'\n' +p90595 +sg25268 +S'Cayenne Tern' +p90596 +sg25270 +S'Artist Information (' +p90597 +sa(dp90598 +g25273 +S'(artist after)' +p90599 +sg25267 +g27 +sg25275 +S'\n' +p90600 +sg25268 +S'Semi-palmated Snipe or Willet' +p90601 +sg25270 +S'Artist Information (' +p90602 +sa(dp90603 +g25273 +S'(artist after)' +p90604 +sg25267 +g27 +sg25275 +S'\n' +p90605 +sg25268 +S'Noddy Tern' +p90606 +sg25270 +S'Artist Information (' +p90607 +sa(dp90608 +g25273 +S'(artist after)' +p90609 +sg25267 +g27 +sg25275 +S'\n' +p90610 +sg25268 +S'King Duck' +p90611 +sg25270 +S'Artist Information (' +p90612 +sa(dp90613 +g25273 +S'(artist after)' +p90614 +sg25267 +g27 +sg25275 +S'\n' +p90615 +sg25268 +S"Hutchin's Barnacle Goose" +p90616 +sg25270 +S'Artist Information (' +p90617 +sa(dp90618 +g25273 +S'(artist after)' +p90619 +sg25267 +g27 +sg25275 +S'\n' +p90620 +sg25268 +S"Schinz's Sandpiper" +p90621 +sg25270 +S'Artist Information (' +p90622 +sa(dp90623 +g25268 +S'The Adoration of the Magi' +p90624 +sg25270 +S'Martin Schongauer' +p90625 +sg25273 +S'engraving' +p90626 +sg25275 +S'c. 1470/1475' +p90627 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a448.jpg' +p90628 +sg25267 +g27 +sa(dp90629 +g25273 +S'(artist after)' +p90630 +sg25267 +g27 +sg25275 +S'\n' +p90631 +sg25268 +S'Sandwich Tern' +p90632 +sg25270 +S'Artist Information (' +p90633 +sa(dp90634 +g25273 +S'(artist after)' +p90635 +sg25267 +g27 +sg25275 +S'\n' +p90636 +sg25268 +S'Black Tern' +p90637 +sg25270 +S'Artist Information (' +p90638 +sa(dp90639 +g25273 +S'(artist after)' +p90640 +sg25267 +g27 +sg25275 +S'\n' +p90641 +sg25268 +S'Great White Heron' +p90642 +sg25270 +S'Artist Information (' +p90643 +sa(dp90644 +g25273 +S'(artist after)' +p90645 +sg25267 +g27 +sg25275 +S'\n' +p90646 +sg25268 +S'White-winged Silvery Gull' +p90647 +sg25270 +S'Artist Information (' +p90648 +sa(dp90649 +g25273 +S'(artist after)' +p90650 +sg25267 +g27 +sg25275 +S'\n' +p90651 +sg25268 +S'Wandering Shearwater' +p90652 +sg25270 +S'Artist Information (' +p90653 +sa(dp90654 +g25273 +S'(artist after)' +p90655 +sg25267 +g27 +sg25275 +S'\n' +p90656 +sg25268 +S'Purple Sandpiper' +p90657 +sg25270 +S'Artist Information (' +p90658 +sa(dp90659 +g25273 +S'(artist after)' +p90660 +sg25267 +g27 +sg25275 +S'\n' +p90661 +sg25268 +S'Fork-tailed Gull' +p90662 +sg25270 +S'Artist Information (' +p90663 +sa(dp90664 +g25273 +S'(artist after)' +p90665 +sg25267 +g27 +sg25275 +S'\n' +p90666 +sg25268 +S'White-fronted Goose' +p90667 +sg25270 +S'Artist Information (' +p90668 +sa(dp90669 +g25273 +S'(artist after)' +p90670 +sg25267 +g27 +sg25275 +S'\n' +p90671 +sg25268 +S'Ivory Gull' +p90672 +sg25270 +S'Artist Information (' +p90673 +sa(dp90674 +g25273 +S'(artist after)' +p90675 +sg25267 +g27 +sg25275 +S'\n' +p90676 +sg25268 +S'Yellow Shank' +p90677 +sg25270 +S'Artist Information (' +p90678 +sa(dp90679 +g25268 +S'The Flight into Egypt' +p90680 +sg25270 +S'Martin Schongauer' +p90681 +sg25273 +S'engraving on laid paper' +p90682 +sg25275 +S'c. 1470/1475' +p90683 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005bea.jpg' +p90684 +sg25267 +g27 +sa(dp90685 +g25273 +S'(artist after)' +p90686 +sg25267 +g27 +sg25275 +S'\n' +p90687 +sg25268 +S'Solitary Sandpiper' +p90688 +sg25270 +S'Artist Information (' +p90689 +sa(dp90690 +g25273 +S'(artist after)' +p90691 +sg25267 +g27 +sg25275 +S'\n' +p90692 +sg25268 +S'Red-backed Sandpiper' +p90693 +sg25270 +S'Artist Information (' +p90694 +sa(dp90695 +g25273 +S'(artist after)' +p90696 +sg25267 +g27 +sg25275 +S'\n' +p90697 +sg25268 +S'Herring Gull' +p90698 +sg25270 +S'Artist Information (' +p90699 +sa(dp90700 +g25273 +S'(artist after)' +p90701 +sg25267 +g27 +sg25275 +S'\n' +p90702 +sg25268 +S'Crested Grebe' +p90703 +sg25270 +S'Artist Information (' +p90704 +sa(dp90705 +g25273 +S'(artist after)' +p90706 +sg25267 +g27 +sg25275 +S'\n' +p90707 +sg25268 +S'Large-billed Puffin' +p90708 +sg25270 +S'Artist Information (' +p90709 +sa(dp90710 +g25273 +S'(artist after)' +p90711 +sg25267 +g27 +sg25275 +S'\n' +p90712 +sg25268 +S'Pectoral Sandpiper' +p90713 +sg25270 +S'Artist Information (' +p90714 +sa(dp90715 +g25273 +S'(artist after)' +p90716 +sg25267 +g27 +sg25275 +S'\n' +p90717 +sg25268 +S'Manks Shearwater' +p90718 +sg25270 +S'Artist Information (' +p90719 +sa(dp90720 +g25273 +S'(artist after)' +p90721 +sg25267 +g27 +sg25275 +S'\n' +p90722 +sg25268 +S'Barnacle Goose' +p90723 +sg25270 +S'Artist Information (' +p90724 +sa(dp90725 +g25273 +S'(artist after)' +p90726 +sg25267 +g27 +sg25275 +S'\n' +p90727 +sg25268 +S'Harlequin Duck' +p90728 +sg25270 +S'Artist Information (' +p90729 +sa(dp90730 +g25273 +S'(artist after)' +p90731 +sg25267 +g27 +sg25275 +S'\n' +p90732 +sg25268 +S'Red-necked Grebe' +p90733 +sg25270 +S'Artist Information (' +p90734 +sa(dp90735 +g25268 +S'The Baptism of Christ' +p90736 +sg25270 +S'Martin Schongauer' +p90737 +sg25273 +S'engraving' +p90738 +sg25275 +S'c. 1480/1490' +p90739 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a480.jpg' +p90740 +sg25267 +g27 +sa(dp90741 +g25273 +S'(artist after)' +p90742 +sg25267 +g27 +sg25275 +S'\n' +p90743 +sg25268 +S'Dusky Petrel' +p90744 +sg25270 +S'Artist Information (' +p90745 +sa(dp90746 +g25273 +S'(artist after)' +p90747 +sg25267 +g27 +sg25275 +S'\n' +p90748 +sg25268 +S'Golden Plover' +p90749 +sg25270 +S'Artist Information (' +p90750 +sa(dp90751 +g25273 +S'(artist after)' +p90752 +sg25267 +g27 +sg25275 +S'\n' +p90753 +sg25268 +S'Canvas-backed Duck' +p90754 +sg25270 +S'Artist Information (' +p90755 +sa(dp90756 +g25273 +S'(artist after)' +p90757 +sg25267 +g27 +sg25275 +S'\n' +p90758 +sg25268 +S'Dusky Duck' +p90759 +sg25270 +S'Artist Information (' +p90760 +sa(dp90761 +g25273 +S'(artist after)' +p90762 +sg25267 +g27 +sg25275 +S'\n' +p90763 +sg25268 +S'Bartram Sandpiper' +p90764 +sg25270 +S'Artist Information (' +p90765 +sa(dp90766 +g25273 +S'(artist after)' +p90767 +sg25267 +g27 +sg25275 +S'\n' +p90768 +sg25268 +S'Turn-stone' +p90769 +sg25270 +S'Artist Information (' +p90770 +sa(dp90771 +g25273 +S'(artist after)' +p90772 +sg25267 +g27 +sg25275 +S'\n' +p90773 +sg25268 +S'Purple Gallinule' +p90774 +sg25270 +S'Artist Information (' +p90775 +sa(dp90776 +g25273 +S'(artist after)' +p90777 +sg25267 +g27 +sg25275 +S'\n' +p90778 +sg25268 +S'Great Northern Diver or Loon' +p90779 +sg25270 +S'Artist Information (' +p90780 +sa(dp90781 +g25273 +S'(artist after)' +p90782 +sg25267 +g27 +sg25275 +S'\n' +p90783 +sg25268 +S'Blue Crane or Heron' +p90784 +sg25270 +S'Artist Information (' +p90785 +sa(dp90786 +g25273 +S'(artist after)' +p90787 +sg25267 +g27 +sg25275 +S'\n' +p90788 +sg25268 +S'Tell-tale Godwit' +p90789 +sg25270 +S'Artist Information (' +p90790 +sa(dp90791 +g25268 +S'The Crucifixion' +p90792 +sg25270 +S'Martin Schongauer' +p90793 +sg25273 +S'engraving' +p90794 +sg25275 +S'c. 1480' +p90795 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a47d.jpg' +p90796 +sg25267 +g27 +sa(dp90797 +g25273 +S'(artist after)' +p90798 +sg25267 +g27 +sg25275 +S'\n' +p90799 +sg25268 +S'Great Tern' +p90800 +sg25270 +S'Artist Information (' +p90801 +sa(dp90802 +g25273 +S'(artist after)' +p90803 +sg25267 +g27 +sg25275 +S'\n' +p90804 +sg25268 +S'Spotted Sandpiper' +p90805 +sg25270 +S'Artist Information (' +p90806 +sa(dp90807 +g25268 +S'American White Pelican' +p90808 +sg25270 +S'Artist Information (' +p90809 +sg25273 +S'(artist after)' +p90810 +sg25275 +S'\n' +p90811 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000947.jpg' +p90812 +sg25267 +g27 +sa(dp90813 +g25273 +S'(artist after)' +p90814 +sg25267 +g27 +sg25275 +S'\n' +p90815 +sg25268 +S'Long-tailed Duck' +p90816 +sg25270 +S'Artist Information (' +p90817 +sa(dp90818 +g25273 +S'(artist after)' +p90819 +sg25267 +g27 +sg25275 +S'\n' +p90820 +sg25268 +S'Blue-winged Teal' +p90821 +sg25270 +S'Artist Information (' +p90822 +sa(dp90823 +g25273 +S'(artist after)' +p90824 +sg25267 +g27 +sg25275 +S'\n' +p90825 +sg25268 +S'Black-headed Gull' +p90826 +sg25270 +S'Artist Information (' +p90827 +sa(dp90828 +g25273 +S'(artist after)' +p90829 +sg25267 +g27 +sg25275 +S'\n' +p90830 +sg25268 +S'Red-breasted Sandpiper' +p90831 +sg25270 +S'Artist Information (' +p90832 +sa(dp90833 +g25268 +S'Black-bellied Darter' +p90834 +sg25270 +S'Artist Information (' +p90835 +sg25273 +S'(artist after)' +p90836 +sg25275 +S'\n' +p90837 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000948.jpg' +p90838 +sg25267 +g27 +sa(dp90839 +g25273 +S'(artist after)' +p90840 +sg25267 +g27 +sg25275 +S'\n' +p90841 +sg25268 +S'Black or Surf Duck' +p90842 +sg25270 +S'Artist Information (' +p90843 +sa(dp90844 +g25273 +S'(artist after)' +p90845 +sg25267 +g27 +sg25275 +S'\n' +p90846 +sg25268 +S'American Avocet' +p90847 +sg25270 +S'Artist Information (' +p90848 +sa(dp90849 +g25268 +S'Death of the Virgin' +p90850 +sg25270 +S'Martin Schongauer' +p90851 +sg25273 +S'engraving' +p90852 +sg25275 +S'c. 1470/1475' +p90853 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00010/a0001072.jpg' +p90854 +sg25267 +g27 +sa(dp90855 +g25273 +S'(artist after)' +p90856 +sg25267 +g27 +sg25275 +S'\n' +p90857 +sg25268 +S'Lesser Tern' +p90858 +sg25270 +S'Artist Information (' +p90859 +sa(dp90860 +g25273 +S'(artist after)' +p90861 +sg25267 +g27 +sg25275 +S'\n' +p90862 +sg25268 +S'Little Sandpiper' +p90863 +sg25270 +S'Artist Information (' +p90864 +sa(dp90865 +g25268 +S'Roseate Spoonbill' +p90866 +sg25270 +S'Artist Information (' +p90867 +sg25273 +S'(artist after)' +p90868 +sg25275 +S'\n' +p90869 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000949.jpg' +p90870 +sg25267 +g27 +sa(dp90871 +g25273 +S'(artist after)' +p90872 +sg25267 +g27 +sg25275 +S'\n' +p90873 +sg25268 +S'Red-Headed Duck' +p90874 +sg25270 +S'Artist Information (' +p90875 +sa(dp90876 +g25273 +S'(artist after)' +p90877 +sg25267 +g27 +sg25275 +S'\n' +p90878 +sg25268 +S'Black Skimmer' +p90879 +sg25270 +S'Artist Information (' +p90880 +sa(dp90881 +g25273 +S'(artist after)' +p90882 +sg25267 +g27 +sg25275 +S'\n' +p90883 +sg25268 +S'Bonapartian Gull' +p90884 +sg25270 +S'Artist Information (' +p90885 +sa(dp90886 +g25273 +S'(artist after)' +p90887 +sg25267 +g27 +sg25275 +S'\n' +p90888 +sg25268 +S'Buffel-headed Duck' +p90889 +sg25270 +S'Artist Information (' +p90890 +sa(dp90891 +g25273 +S'(artist after)' +p90892 +sg25267 +g27 +sg25275 +S'\n' +p90893 +sg25268 +S'Gannet' +p90894 +sg25270 +S'Artist Information (' +p90895 +sa(dp90896 +g25273 +S'(artist after)' +p90897 +sg25267 +g27 +sg25275 +S'\n' +p90898 +sg25268 +S'Shoveller Duck' +p90899 +sg25270 +S'Artist Information (' +p90900 +sa(dp90901 +g25273 +S'(artist after)' +p90902 +sg25267 +g27 +sg25275 +S'\n' +p90903 +sg25268 +S'Long-legged Avocet' +p90904 +sg25270 +S'Artist Information (' +p90905 +sa(dp90906 +g25268 +S'Death of the Virgin' +p90907 +sg25270 +S'Martin Schongauer' +p90908 +sg25273 +S'engraving' +p90909 +sg25275 +S'c. 1470/1475' +p90910 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a446.jpg' +p90911 +sg25267 +g27 +sa(dp90912 +g25273 +S'(artist after)' +p90913 +sg25267 +g27 +sg25275 +S'\n' +p90914 +sg25268 +S'Yellow-breasted Rail' +p90915 +sg25270 +S'Artist Information (' +p90916 +sa(dp90917 +g25273 +S'(artist after)' +p90918 +sg25267 +g27 +sg25275 +S'\n' +p90919 +sg25268 +S'Ring Plover' +p90920 +sg25270 +S'Artist Information (' +p90921 +sa(dp90922 +g25273 +S'(artist after)' +p90923 +sg25267 +g27 +sg25275 +S'\n' +p90924 +sg25268 +S'Goosander' +p90925 +sg25270 +S'Artist Information (' +p90926 +sa(dp90927 +g25273 +S'(artist after)' +p90928 +sg25267 +g27 +sg25275 +S'\n' +p90929 +sg25268 +S'Pied Duck' +p90930 +sg25270 +S'Artist Information (' +p90931 +sa(dp90932 +g25273 +S'(artist after)' +p90933 +sg25267 +g27 +sg25275 +S'\n' +p90934 +sg25268 +S'Green Heron' +p90935 +sg25270 +S'Artist Information (' +p90936 +sa(dp90937 +g25273 +S'(artist after)' +p90938 +sg25267 +g27 +sg25275 +S'\n' +p90939 +sg25268 +S'Black-bellied Plover' +p90940 +sg25270 +S'Artist Information (' +p90941 +sa(dp90942 +g25273 +S'(artist after)' +p90943 +sg25267 +g27 +sg25275 +S'\n' +p90944 +sg25268 +S'Red-breasted Snipe' +p90945 +sg25270 +S'Artist Information (' +p90946 +sa(dp90947 +g25273 +S'(artist after)' +p90948 +sg25267 +g27 +sg25275 +S'\n' +p90949 +sg25268 +S'Yellow-crowned Heron' +p90950 +sg25270 +S'Artist Information (' +p90951 +sa(dp90952 +g25273 +S'(artist after)' +p90953 +sg25267 +g27 +sg25275 +S'\n' +p90954 +sg25268 +S'American Bittern' +p90955 +sg25270 +S'Artist Information (' +p90956 +sa(dp90957 +g25273 +S'(artist after)' +p90958 +sg25267 +g27 +sg25275 +S'\n' +p90959 +sg25268 +S'Bemaculated Duck' +p90960 +sg25270 +S'Artist Information (' +p90961 +sa(dp90962 +g25268 +S'Christ Blessing the Virgin' +p90963 +sg25270 +S'Martin Schongauer' +p90964 +sg25273 +S'engraving' +p90965 +sg25275 +S'c. 1480/1490' +p90966 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a47b.jpg' +p90967 +sg25267 +g27 +sa(dp90968 +g25273 +S'(artist after)' +p90969 +sg25267 +g27 +sg25275 +S'\n' +p90970 +sg25268 +S'Little Auk' +p90971 +sg25270 +S'Artist Information (' +p90972 +sa(dp90973 +g25273 +S'(artist after)' +p90974 +sg25267 +g27 +sg25275 +S'\n' +p90975 +sg25268 +S'Least Stormy Petrel' +p90976 +sg25270 +S'Artist Information (' +p90977 +sa(dp90978 +g25273 +S'(artist after)' +p90979 +sg25267 +g27 +sg25275 +S'\n' +p90980 +sg25268 +S'Great Auk' +p90981 +sg25270 +S'Artist Information (' +p90982 +sa(dp90983 +g25268 +S'Golden-eye Duck' +p90984 +sg25270 +S'Artist Information (' +p90985 +sg25273 +S'(artist after)' +p90986 +sg25275 +S'\n' +p90987 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a000094a.jpg' +p90988 +sg25267 +g27 +sa(dp90989 +g25273 +S'(artist after)' +p90990 +sg25267 +g27 +sg25275 +S'\n' +p90991 +sg25268 +S'Ruddy Duck' +p90992 +sg25270 +S'Artist Information (' +p90993 +sa(dp90994 +g25273 +S'(artist after)' +p90995 +sg25267 +g27 +sg25275 +S'\n' +p90996 +sg25268 +S'Long-legged Sandpiper' +p90997 +sg25270 +S'Artist Information (' +p90998 +sa(dp90999 +g25273 +S'(artist after)' +p91000 +sg25267 +g27 +sg25275 +S'\n' +p91001 +sg25268 +S'American Widgeon' +p91002 +sg25270 +S'Artist Information (' +p91003 +sa(dp91004 +g25273 +S'(artist after)' +p91005 +sg25267 +g27 +sg25275 +S'\n' +p91006 +sg25268 +S'Black-throated Diver' +p91007 +sg25270 +S'Artist Information (' +p91008 +sa(dp91009 +g25273 +S'(artist after)' +p91010 +sg25267 +g27 +sg25275 +S'\n' +p91011 +sg25268 +S'Smew or White Nun' +p91012 +sg25270 +S'Artist Information (' +p91013 +sa(dp91014 +g25273 +S'(artist after)' +p91015 +sg25267 +g27 +sg25275 +S'\n' +p91016 +sg25268 +S'Gadwall Duck' +p91017 +sg25270 +S'Artist Information (' +p91018 +sa(dp91019 +g25268 +S'The Agony in the Garden' +p91020 +sg25270 +S'Martin Schongauer' +p91021 +sg25273 +S'engraving' +p91022 +sg25275 +S'c. 1480' +p91023 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4c4.jpg' +p91024 +sg25267 +g27 +sa(dp91025 +g25273 +S'(artist after)' +p91026 +sg25267 +g27 +sg25275 +S'\n' +p91027 +sg25268 +S'Least Water-hen' +p91028 +sg25270 +S'Artist Information (' +p91029 +sa(dp91030 +g25273 +S'(artist after)' +p91031 +sg25267 +g27 +sg25275 +S'\n' +p91032 +sg25268 +S'Rocky Mountain Plover' +p91033 +sg25270 +S'Artist Information (' +p91034 +sa(dp91035 +g25273 +S'(artist after)' +p91036 +sg25267 +g27 +sg25275 +S'\n' +p91037 +sg25268 +S'Great Cinereous Owl' +p91038 +sg25270 +S'Artist Information (' +p91039 +sa(dp91040 +g25273 +S'(artist after)' +p91041 +sg25267 +g27 +sg25275 +S'\n' +p91042 +sg25268 +S'Black-winged Hawk' +p91043 +sg25270 +S'Artist Information (' +p91044 +sa(dp91045 +g25273 +S'(artist after)' +p91046 +sg25267 +g27 +sg25275 +S'\n' +p91047 +sg25268 +S'Chestnut-backed Titmouse, Black-capped Titmouse and Chestnut-crowned Titmouse' +p91048 +sg25270 +S'Artist Information (' +p91049 +sa(dp91050 +g25273 +S'(artist after)' +p91051 +sg25267 +g27 +sg25275 +S'\n' +p91052 +sg25268 +S'Louisiana Tanager and Scarlet Tanager' +p91053 +sg25270 +S'Artist Information (' +p91054 +sa(dp91055 +g25273 +S'(artist after)' +p91056 +sg25267 +g27 +sg25275 +S'\n' +p91057 +sg25268 +S"MacGillivray's Finch" +p91058 +sg25270 +S'Artist Information (' +p91059 +sa(dp91060 +g25273 +S'(artist after)' +p91061 +sg25267 +g27 +sg25275 +S'\n' +p91062 +sg25268 +S'Marsh Hawk' +p91063 +sg25270 +S'Artist Information (' +p91064 +sa(dp91065 +g25273 +S'(artist after)' +p91066 +sg25267 +g27 +sg25275 +S'\n' +p91067 +sg25268 +S'American Magpie' +p91068 +sg25270 +S'Artist Information (' +p91069 +sa(dp91070 +g25273 +S'(artist after)' +p91071 +sg25267 +g27 +sg25275 +S'\n' +p91072 +sg25268 +S'Pine Grosbeak' +p91073 +sg25270 +S'Artist Information (' +p91074 +sa(dp91075 +g25268 +S'The Betrayal and Capture of Christ' +p91076 +sg25270 +S'Martin Schongauer' +p91077 +sg25273 +S'engraving' +p91078 +sg25275 +S'c. 1480' +p91079 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4c1.jpg' +p91080 +sg25267 +g27 +sa(dp91081 +g25273 +S'(artist after)' +p91082 +sg25267 +g27 +sg25275 +S'\n' +p91083 +sg25268 +S'Arkansaw Flycatcher, Swallow-tailed Flycatcher and Says Flycatcher' +p91084 +sg25270 +S'Artist Information (' +p91085 +sa(dp91086 +g25273 +S'(artist after)' +p91087 +sg25267 +g27 +sg25275 +S'\n' +p91088 +sg25268 +S'Winter Wren and Rock Wren' +p91089 +sg25270 +S'Artist Information (' +p91090 +sa(dp91091 +g25273 +S'(artist after)' +p91092 +sg25267 +g27 +sg25275 +S'\n' +p91093 +sg25268 +S'Long-tailed or Dusky Grous' +p91094 +sg25270 +S'Artist Information (' +p91095 +sa(dp91096 +g25273 +S'(artist after)' +p91097 +sg25267 +g27 +sg25275 +S'\n' +p91098 +sg25268 +S"Yellow-billed Magpie, Stellers Jay, Ultramarine Jay and Clark's Crow" +p91099 +sg25270 +S'Artist Information (' +p91100 +sa(dp91101 +g25273 +S'(artist after)' +p91102 +sg25267 +g27 +sg25275 +S'\n' +p91103 +sg25268 +S'Bohemian Chatterer' +p91104 +sg25270 +S'Artist Information (' +p91105 +sa(dp91106 +g25273 +S'(artist after)' +p91107 +sg25267 +g27 +sg25275 +S'\n' +p91108 +sg25268 +S'White-winged Crossbill' +p91109 +sg25270 +S'Artist Information (' +p91110 +sa(dp91111 +g25273 +S'(artist after)' +p91112 +sg25267 +g27 +sg25275 +S'\n' +p91113 +sg25268 +S'Lapland Longspur' +p91114 +sg25270 +S'Artist Information (' +p91115 +sa(dp91116 +g25268 +S'Iceland or Jer Falcon' +p91117 +sg25270 +S'Artist Information (' +p91118 +sg25273 +S'(artist after)' +p91119 +sg25275 +S'\n' +p91120 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005732.jpg' +p91121 +sg25267 +g27 +sa(dp91122 +g25273 +S'(artist after)' +p91123 +sg25267 +g27 +sg25275 +S'\n' +p91124 +sg25268 +S'Band-tailed Pigeon' +p91125 +sg25270 +S'Artist Information (' +p91126 +sa(dp91127 +g25273 +S'(artist after)' +p91128 +sg25267 +g27 +sg25275 +S'\n' +p91129 +sg25268 +S'Rock Grous' +p91130 +sg25270 +S'Artist Information (' +p91131 +sa(dp91132 +g25268 +S'The Flagellation' +p91133 +sg25270 +S'Martin Schongauer' +p91134 +sg25273 +S'engraving' +p91135 +sg25275 +S'c. 1480' +p91136 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4bf.jpg' +p91137 +sg25267 +g27 +sa(dp91138 +g25273 +S'(artist after)' +p91139 +sg25267 +g27 +sg25275 +S'\n' +p91140 +sg25268 +S'Mountain Mocking-bird and Varied Thrush' +p91141 +sg25270 +S'Artist Information (' +p91142 +sa(dp91143 +g25273 +S'(artist after)' +p91144 +sg25267 +g27 +sg25275 +S'\n' +p91145 +sg25268 +S'American Water Ouzel' +p91146 +sg25270 +S'Artist Information (' +p91147 +sa(dp91148 +g25273 +S'(artist after)' +p91149 +sg25267 +g27 +sg25275 +S'\n' +p91150 +sg25268 +S'Cock of the Plains' +p91151 +sg25270 +S'Artist Information (' +p91152 +sa(dp91153 +g25273 +S'(artist after)' +p91154 +sg25267 +g27 +sg25275 +S'\n' +p91155 +sg25268 +S'Common Buzzard' +p91156 +sg25270 +S'Artist Information (' +p91157 +sa(dp91158 +g25273 +S'(artist after)' +p91159 +sg25267 +g27 +sg25275 +S'\n' +p91160 +sg25268 +S'Evening Grosbeak and Spotted Grosbeak' +p91161 +sg25270 +S'Artist Information (' +p91162 +sa(dp91163 +g25273 +S'(artist after)' +p91164 +sg25267 +g27 +sg25275 +S'\n' +p91165 +sg25268 +S'Sharp-shinned Hawk' +p91166 +sg25270 +S'Artist Information (' +p91167 +sa(dp91168 +g25273 +S'(artist after)' +p91169 +sg25267 +g27 +sg25275 +S'\n' +p91170 +sg25268 +S'Lesser Red-poll' +p91171 +sg25270 +S'Artist Information (' +p91172 +sa(dp91173 +g25273 +S'(artist after)' +p91174 +sg25267 +g27 +sg25275 +S'\n' +p91175 +sg25268 +S'Trumpeter Swan' +p91176 +sg25270 +S'Artist Information (' +p91177 +sa(dp91178 +g25273 +S'(artist after)' +p91179 +sg25267 +g27 +sg25275 +S'\n' +p91180 +sg25268 +S'Scolopaceus Courlan' +p91181 +sg25270 +S'Artist Information (' +p91182 +sa(dp91183 +g25273 +S'(artist after)' +p91184 +sg25267 +g27 +sg25275 +S'\n' +p91185 +sg25268 +S'Hawk Owl' +p91186 +sg25270 +S'Artist Information (' +p91187 +sa(dp91188 +g25268 +S'Christ Crowned with Thorns' +p91189 +sg25270 +S'Martin Schongauer' +p91190 +sg25273 +S'engraving' +p91191 +sg25275 +S'c. 1480' +p91192 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4be.jpg' +p91193 +sg25267 +g27 +sa(dp91194 +g25273 +S'(artist after)' +p91195 +sg25267 +g27 +sg25275 +S'\n' +p91196 +sg25268 +S'Ruff-necked Humming-bird' +p91197 +sg25270 +S'Artist Information (' +p91198 +sa(dp91199 +g25273 +S'(artist after)' +p91200 +sg25267 +g27 +sg25275 +S'\n' +p91201 +sg25268 +S"Tengmalm's Owl" +p91202 +sg25270 +S'Artist Information (' +p91203 +sa(dp91204 +g25273 +S'(artist after)' +p91205 +sg25267 +g27 +sg25275 +S'\n' +p91206 +sg25268 +S'Snow Goose' +p91207 +sg25270 +S'Artist Information (' +p91208 +sa(dp91209 +g25273 +S'(artist after)' +p91210 +sg25267 +g27 +sg25275 +S'\n' +p91211 +sg25268 +S'Sharp-tailed Grous' +p91212 +sg25270 +S'Artist Information (' +p91213 +sa(dp91214 +g25273 +S'(artist after)' +p91215 +sg25267 +g27 +sg25275 +S'\n' +p91216 +sg25268 +S'Long-eared Owl' +p91217 +sg25270 +S'Artist Information (' +p91218 +sa(dp91219 +g25273 +S'(artist after)' +p91220 +sg25267 +g27 +sg25275 +S'\n' +p91221 +sg25268 +S'Black-throated Bunting' +p91222 +sg25270 +S'Artist Information (' +p91223 +sa(dp91224 +g25273 +S'(artist after)' +p91225 +sg25267 +g27 +sg25275 +S'\n' +p91226 +sg25268 +S'Bank Swallow and Violet-green Swallow' +p91227 +sg25270 +S'Artist Information (' +p91228 +sa(dp91229 +g25273 +S'(artist after)' +p91230 +sg25267 +g27 +sg25275 +S'\n' +p91231 +sg25268 +S'White Heron' +p91232 +sg25270 +S'Artist Information (' +p91233 +sa(dp91234 +g25273 +S'(artist after)' +p91235 +sg25267 +g27 +sg25275 +S'\n' +p91236 +sg25268 +S'Glossy Ibis' +p91237 +sg25270 +S'Artist Information (' +p91238 +sa(dp91239 +g25273 +S'(artist after)' +p91240 +sg25267 +g27 +sg25275 +S'\n' +p91241 +sg25268 +S"Nuttall's Starling, Yellow-headed Troopial and Bullock's Oriole" +p91242 +sg25270 +S'Artist Information (' +p91243 +sa(dp91244 +g25268 +S'Christ before Pilate' +p91245 +sg25270 +S'Martin Schongauer' +p91246 +sg25273 +S'engraving on laid paper' +p91247 +sg25275 +S'c. 1480' +p91248 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4bd.jpg' +p91249 +sg25267 +g27 +sa(dp91250 +g25273 +S'(artist after)' +p91251 +sg25267 +g27 +sg25275 +S'\n' +p91252 +sg25268 +S'Red-cockaded Woodpecker' +p91253 +sg25270 +S'Artist Information (' +p91254 +sa(dp91255 +g25273 +S'(artist after)' +p91256 +sg25267 +g27 +sg25275 +S'\n' +p91257 +sg25268 +S'Lark Finch, Prairie Finch and Brown Song Sparrow' +p91258 +sg25270 +S'Artist Information (' +p91259 +sa(dp91260 +g25273 +S'(artist after)' +p91261 +sg25267 +g27 +sg25275 +S'\n' +p91262 +sg25268 +S'Brant Goose' +p91263 +sg25270 +S'Artist Information (' +p91264 +sa(dp91265 +g25273 +S'(artist after)' +p91266 +sg25267 +g27 +sg25275 +S'\n' +p91267 +sg25268 +S'Louisiana Hawk' +p91268 +sg25270 +S'Artist Information (' +p91269 +sa(dp91270 +g25273 +S'(artist after)' +p91271 +sg25267 +g27 +sg25275 +S'\n' +p91272 +sg25268 +S"Townsend's Warbler, Arctic Blue Bird and Western Blue Bird" +p91273 +sg25270 +S'Artist Information (' +p91274 +sa(dp91275 +g25273 +S'(artist after)' +p91276 +sg25267 +g27 +sg25275 +S'\n' +p91277 +sg25268 +S'Chestnut-colored Finch, Black-headed Siskin, Black Crown Bunting and Arctic Ground Finch' +p91278 +sg25270 +S'Artist Information (' +p91279 +sa(dp91280 +g25273 +S'(artist after)' +p91281 +sg25267 +g27 +sg25275 +S'\n' +p91282 +sg25268 +S"Audubon's Warbler, Hermit Warbler and Black-throated Gray Warbler" +p91283 +sg25270 +S'Artist Information (' +p91284 +sa(dp91285 +g25273 +S'(artist after)' +p91286 +sg25267 +g27 +sg25275 +S'\n' +p91287 +sg25268 +S'Burgomaster Gull' +p91288 +sg25270 +S'Artist Information (' +p91289 +sa(dp91290 +g25273 +S'(artist after)' +p91291 +sg25267 +g27 +sg25275 +S'\n' +p91292 +sg25268 +S'Scarlet Ibis' +p91293 +sg25270 +S'Artist Information (' +p91294 +sa(dp91295 +g25273 +S'(artist after)' +p91296 +sg25267 +g27 +sg25275 +S'\n' +p91297 +sg25268 +S'Lazuli Finch, Clay-colored Finch and Oregon Snow Finch' +p91298 +sg25270 +S'Artist Information (' +p91299 +sa(dp91300 +g25268 +S'The Bearing of the Cross with Saint Veronica' +p91301 +sg25270 +S'Martin Schongauer' +p91302 +sg25273 +S'engraving' +p91303 +sg25275 +S'c. 1480' +p91304 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4a1.jpg' +p91305 +sg25267 +g27 +sa(dp91306 +g25273 +S'(artist after)' +p91307 +sg25267 +g27 +sg25275 +S'\n' +p91308 +sg25268 +S'Black-throated Green Warbler, Blackburnian Warbler and Mourning Warbler' +p91309 +sg25270 +S'Artist Information (' +p91310 +sa(dp91311 +g25273 +S'(artist after)' +p91312 +sg25267 +g27 +sg25275 +S'\n' +p91313 +sg25268 +S"Arkansaw Siskin, Mealy Red-poll, Louisiana Tanager, Townsend's Finch and Buff-breasted Finch" +p91314 +sg25270 +S'Artist Information (' +p91315 +sa(dp91316 +g25273 +S'(artist after)' +p91317 +sg25267 +g27 +sg25275 +S'\n' +p91318 +sg25268 +S'Red-breasted Merganser' +p91319 +sg25270 +S'Artist Information (' +p91320 +sa(dp91321 +g25268 +S'Black-throated Guillemot, Nobbed-billed Auk, Curled-Crested Auk and Horned-billed Guillemot' +p91322 +sg25270 +S'Artist Information (' +p91323 +sg25273 +S'(artist after)' +p91324 +sg25275 +S'\n' +p91325 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a000094b.jpg' +p91326 +sg25267 +g27 +sa(dp91327 +g25273 +S'(artist after)' +p91328 +sg25267 +g27 +sg25275 +S'\n' +p91329 +sg25268 +S'Golden-eye Duck' +p91330 +sg25270 +S'Artist Information (' +p91331 +sa(dp91332 +g25273 +S'(artist after)' +p91333 +sg25267 +g27 +sg25275 +S'\n' +p91334 +sg25268 +S'Eared Grebe' +p91335 +sg25270 +S'Artist Information (' +p91336 +sa(dp91337 +g25273 +S'(artist after)' +p91338 +sg25267 +g27 +sg25275 +S'\n' +p91339 +sg25268 +S'Semi-palmated Sandpiper' +p91340 +sg25270 +S'Artist Information (' +p91341 +sa(dp91342 +g25268 +S'Trumpeter Swan' +p91343 +sg25270 +S'Artist Information (' +p91344 +sg25273 +S'(artist after)' +p91345 +sg25275 +S'\n' +p91346 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a000094c.jpg' +p91347 +sg25267 +g27 +sa(dp91348 +g25273 +S'(artist after)' +p91349 +sg25267 +g27 +sg25275 +S'\n' +p91350 +sg25268 +S'Dusky Albatros' +p91351 +sg25270 +S'Artist Information (' +p91352 +sa(dp91353 +g25273 +S'(artist after)' +p91354 +sg25267 +g27 +sg25275 +S'\n' +p91355 +sg25268 +S'American Scoter Duck' +p91356 +sg25270 +S'Artist Information (' +p91357 +sa(dp91358 +g25273 +S'(artist after)' +p91359 +sg25267 +g27 +sg25275 +S'\n' +p91360 +sg25268 +S"Havell's Tern and Trudeau's Tern" +p91361 +sg25270 +S'Artist Information (' +p91362 +sa(dp91363 +g25273 +S'(artist after)' +p91364 +sg25267 +g27 +sg25275 +S'\n' +p91365 +sg25268 +S'Marsh Tern' +p91366 +sg25270 +S'Artist Information (' +p91367 +sa(dp91368 +g25273 +S'(artist after)' +p91369 +sg25267 +g27 +sg25275 +S'\n' +p91370 +sg25268 +S'Common American Swan' +p91371 +sg25270 +S'Artist Information (' +p91372 +sa(dp91373 +g25273 +S'(artist after)' +p91374 +sg25267 +g27 +sg25275 +S'\n' +p91375 +sg25268 +S"Violet-green Cormorant and Townsend's Cormorant" +p91376 +sg25270 +S'Artist Information (' +p91377 +sa(dp91378 +g25273 +S'(artist after)' +p91379 +sg25267 +g27 +sg25275 +S'\n' +p91380 +sg25268 +S'Californian Partridge' +p91381 +sg25270 +S'Artist Information (' +p91382 +sa(dp91383 +g25273 +S'(artist after)' +p91384 +sg25267 +g27 +sg25275 +S'\n' +p91385 +sg25268 +S'Golden-winged Warbler and Cape May Warbler' +p91386 +sg25270 +S'Artist Information (' +p91387 +sa(dp91388 +g25273 +S'(artist after)' +p91389 +sg25267 +g27 +sg25275 +S'\n' +p91390 +sg25268 +S'Brown Creeper and Californian Nuthatch' +p91391 +sg25270 +S'Artist Information (' +p91392 +sa(dp91393 +g25273 +S'(artist after)' +p91394 +sg25267 +g27 +sg25275 +S'\n' +p91395 +sg25268 +S'Hairy Woodpecker' +p91396 +sg25270 +S'Artist Information (' +p91397 +sa(dp91398 +g25273 +S'(artist after)' +p91399 +sg25267 +g27 +sg25275 +S'\n' +p91400 +sg25268 +S"Maria's Woodpecker" +p91401 +sg25270 +S'Artist Information (' +p91402 +sa(dp91403 +g25273 +S'(artist after)' +p91404 +sg25267 +g27 +sg25275 +S'\n' +p91405 +sg25268 +S'American Ptarmigan and White-tailed Grous' +p91406 +sg25270 +S'Artist Information (' +p91407 +sa(dp91408 +g25268 +S'The Entombment' +p91409 +sg25270 +S'Martin Schongauer' +p91410 +sg25273 +S'engraving' +p91411 +sg25275 +S'c. 1480' +p91412 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4a2.jpg' +p91413 +sg25267 +g27 +sa(dp91414 +g25273 +S'(artist after)' +p91415 +sg25267 +g27 +sg25275 +S'\n' +p91416 +sg25268 +S'Little Tawny Thrush' +p91417 +sg25270 +S'Artist Information (' +p91418 +sa(dp91419 +g25273 +S'(artist after)' +p91420 +sg25267 +g27 +sg25275 +S'\n' +p91421 +sg25268 +S'Prairie Starling' +p91422 +sg25270 +S'Artist Information (' +p91423 +sa(dp91424 +g25273 +S'(artist after)' +p91425 +sg25267 +g27 +sg25275 +S'\n' +p91426 +sg25268 +S'Brown Pelican' +p91427 +sg25270 +S'Artist Information (' +p91428 +sa(dp91429 +g25273 +S'(artist after)' +p91430 +sg25267 +g27 +sg25275 +S'\n' +p91431 +sg25268 +S'Rough-legged Falcon' +p91432 +sg25270 +S'Artist Information (' +p91433 +sa(dp91434 +g25273 +S'(artist after)' +p91435 +sg25267 +g27 +sg25275 +S'\n' +p91436 +sg25268 +S'Plumed Partridge and Thick-legged Partridge' +p91437 +sg25270 +S'Artist Information (' +p91438 +sa(dp91439 +g25273 +S'(artist after)' +p91440 +sg25267 +g27 +sg25275 +S'\n' +p91441 +sg25268 +S'Lazuli Finch' +p91442 +sg25270 +S'Artist Information (' +p91443 +sa(dp91444 +g25273 +S'(artist after)' +p91445 +sg25267 +g27 +sg25275 +S'\n' +p91446 +sg25268 +S'Columbian Humming Bird' +p91447 +sg25270 +S'Artist Information (' +p91448 +sa(dp91449 +g25273 +S'(artist after)' +p91450 +sg25267 +g27 +sg25275 +S'\n' +p91451 +sg25268 +S'Californian Vulture' +p91452 +sg25270 +S'Artist Information (' +p91453 +sa(dp91454 +g25273 +S'(artist after)' +p91455 +sg25267 +g27 +sg25275 +S'\n' +p91456 +sg25268 +S'White-Legged Oyster-Catcher and Slender-Billed Oyster-Catcher' +p91457 +sg25270 +S'Artist Information (' +p91458 +sa(dp91459 +g25273 +S'(artist after)' +p91460 +sg25267 +g27 +sg25275 +S'\n' +p91461 +sg25268 +S"Townsend's Sandpiper" +p91462 +sg25270 +S'Artist Information (' +p91463 +sa(dp91464 +g25268 +S'Christ in Limbo' +p91465 +sg25270 +S'Martin Schongauer' +p91466 +sg25273 +S'engraving' +p91467 +sg25275 +S'c. 1480' +p91468 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a49a.jpg' +p91469 +sg25267 +g27 +sa(dp91470 +g25273 +S'(artist after)' +p91471 +sg25267 +g27 +sg25275 +S'\n' +p91472 +sg25268 +S'Western Duck' +p91473 +sg25270 +S'Artist Information (' +p91474 +sa(dp91475 +g25273 +S'(artist after)' +p91476 +sg25267 +g27 +sg25275 +S'\n' +p91477 +sg25268 +S'Slender-billed Guillemot' +p91478 +sg25270 +S'Artist Information (' +p91479 +sa(dp91480 +g25268 +S'American Flamingo' +p91481 +sg25270 +S'Artist Information (' +p91482 +sg25273 +S'(artist after)' +p91483 +sg25275 +S'\n' +p91484 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a000094d.jpg' +p91485 +sg25267 +g27 +sa(dp91486 +g25273 +S'(artist after)' +p91487 +sg25267 +g27 +sg25275 +S'\n' +p91488 +sg25268 +S'Burrowing Owl, Large-Headed Burrowing Owl andLittle Night Owl' +p91489 +sg25270 +S'Artist Information (' +p91490 +sa(dp91491 +g25273 +S'(artist after)' +p91492 +sg25267 +g27 +sg25275 +S'\n' +p91493 +sg25268 +S"Bullock's Oriole, Baltimore Oriole, Mexican Goldfinch and Varied Thrush" +p91494 +sg25270 +S'Artist Information (' +p91495 +sa(dp91496 +g25273 +S'(artist after)' +p91497 +sg25267 +g27 +sg25275 +S'\n' +p91498 +sg25268 +S"Little Tyrant Flycatcher, Small-Headed Flycatcher, Blue Mountain Warbler, Bartram's Vireo, Short-Legged Pewee, and Rocky Mountain Flycatcher" +p91499 +sg25270 +S'Artist Information (' +p91500 +sa(dp91501 +g25273 +S'(artist after)' +p91502 +sg25267 +g27 +sg25275 +S'\n' +p91503 +sg25268 +S'Columbian Water Ouzel and Arctic Water Ouzel' +p91504 +sg25270 +S'Artist Information (' +p91505 +sa(dp91506 +g25268 +S'Lady with a Harp: Eliza Ridgely' +p91507 +sg25270 +S'Thomas Sully' +p91508 +sg25273 +S'oil on canvas' +p91509 +sg25275 +S'1818' +p91510 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000263.jpg' +p91511 +sg25267 +S'When Thomas Sully painted fifteen-year-old Eliza Ridgely in the spring of 1818,\nhe was widely regarded as America\'s leading artist. Particularly noted for his graceful\nimages of women, he was a natural choice to paint this Baltimore merchant\'s daughter.\n In painting Eliza, Sully emphasized her privileged social status as well as her\ndelicate, youthful charm. Her family affluence is indicated by her up-to-the-minute\nhair style and dress, inspired by contemporary European designs in the neo-Grecian\nmanner. The satin of her Empire gown is carefully described through fluid brushwork\nand brilliant highlights. Eliza, as a young lady of cultural accomplishment, posed\nwith her European pedal harp. She idly plucks the harp strings and gazes dreamily\ninto space, as if musing on the lyrical chord she strikes. A fiery sunset heightens\nthe romantic reverie.\n Although she may very well have possessed luminous eyes, arched brows, and a porcelain\ncomplexion, Miss Ridgely\'s figure has been greatly idealized. Sully, for the sake\nof fashionable elegance, exaggerated her legs to half again as long as any conceivably\nnormal proportion. Sully once wrote, "From long experience I know that resemblance\nin a portrait is essential; but no fault will be found with the artist, at least\nby the sitter, if he improve the appearance."\n ' +p91512 +sa(dp91513 +g25268 +S'The Camera Obscura' +p91514 +sg25270 +S'Charles Am\xc3\xa9d\xc3\xa9e Philippe Van Loo' +p91515 +sg25273 +S'oil on canvas' +p91516 +sg25275 +S'1764' +p91517 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d8d.jpg' +p91518 +sg25267 +g27 +sa(dp91519 +g25268 +S'Soap Bubbles' +p91520 +sg25270 +S'Charles Am\xc3\xa9d\xc3\xa9e Philippe Van Loo' +p91521 +sg25273 +S'oil on canvas' +p91522 +sg25275 +S'1764' +p91523 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d8e.jpg' +p91524 +sg25267 +g27 +sa(dp91525 +g25268 +S'John Johnstone, Betty Johnstone, and Miss Wedderburn' +p91526 +sg25270 +S'Sir Henry Raeburn' +p91527 +sg25273 +S'oil on canvas' +p91528 +sg25275 +S'c. 1790/1795' +p91529 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000056a.jpg' +p91530 +sg25267 +g27 +sa(dp91531 +g25268 +S'Aaron Baldwin' +p91532 +sg25270 +S'Francis Alexander' +p91533 +sg25273 +S'oil on wood' +p91534 +sg25275 +S'c. 1835' +p91535 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000001.jpg' +p91536 +sg25267 +g27 +sa(dp91537 +g25268 +S'Charles Carnan Ridgely' +p91538 +sg25270 +S'Thomas Sully' +p91539 +sg25273 +S'oil on canvas' +p91540 +sg25275 +S'1820' +p91541 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000261.jpg' +p91542 +sg25267 +g27 +sa(dp91543 +g25273 +S'(artist after)' +p91544 +sg25267 +g27 +sg25275 +S'\n' +p91545 +sg25268 +S'Georgetown and Federal City or City of Washington' +p91546 +sg25270 +S'Artist Information (' +p91547 +sa(dp91548 +g25273 +S'enamel on metal' +p91549 +sg25267 +g27 +sg25275 +S'1660' +p91550 +sg25268 +S'Louis de Bourbon, Prince de Cond\xc3\xa9 (Le Grand Cond\xc3\xa9)' +p91551 +sg25270 +S'Jean Petitot the Elder' +p91552 +sa(dp91553 +g25273 +S'enamel on metal' +p91554 +sg25267 +g27 +sg25275 +S'1660' +p91555 +sg25268 +S"Henri Jules, Duc d'Albert" +p91556 +sg25270 +S'Jean Petitot the Elder' +p91557 +sa(dp91558 +g25268 +S'Procession in the Courtyard of the Ducal Palace, Venice' +p91559 +sg25270 +S'Antonio Joli' +p91560 +sg25273 +S'oil on canvas' +p91561 +sg25275 +S'1742 or after' +p91562 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000062e.jpg' +p91563 +sg25267 +g27 +sa(dp91564 +g25268 +S'Procession of Gondolas in the Bacino di San Marco, Venice' +p91565 +sg25270 +S'Antonio Joli' +p91566 +sg25273 +S'oil on canvas' +p91567 +sg25275 +S'1742 or after' +p91568 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000062f.jpg' +p91569 +sg25267 +g27 +sa(dp91570 +g25268 +S"The Square of Saint Mark's, Venice" +p91571 +sg25270 +S'Canaletto' +p91572 +sg25273 +S'oil on canvas' +p91573 +sg25275 +S'1742/1744' +p91574 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a00008c8.jpg' +p91575 +sg25267 +g27 +sa(dp91576 +g25268 +S'Entrance to the Grand Canal from the Molo, Venice' +p91577 +sg25270 +S'Canaletto' +p91578 +sg25273 +S'oil on canvas' +p91579 +sg25275 +S'1742/1744' +p91580 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a000090d.jpg' +p91581 +sg25267 +S"The most avid customers for Canaletto's views of Venice were the English gentlemen who\r\nflocked to the city as tourists during the eighteenth century. The buyer of the \n It was Canaletto's loving transcription, detail by detail, of his native city that made his\r\npaintings so popular: each view vividly calls to mind a particular time and place. Here it is\r\nmorning activity on the quay near St. Mark's Square that Canaletto recreated with such\r\nspecificity. Groups of people idle along the landing dock while a fishmonger shows the day's\r\ncatch of eels to a bewigged pair of gentlemen. Gondolas and ocean-going vessels ply the\r\nwaterways. Canaletto conveyed the sunlight that drenches Venice in fair weather, sparkling off\r\nthe canals and revealing fine-etched details of the tiles on distant rooftops or the bricks beneath\r\npeeling stucco. Across the lagoon toward the Island of San Giorgio appear (left) the domed\r\nchurch of the Redentore by the sixteenth-century architect Palladio, the double domed church of\r\nSanta Maria della Salute, designed by Longhena in the seventeenth century, and (center) the\r\nCustoms House.\n " +p91582 +sa(dp91583 +g25268 +S'The Emperor Hadrian' +p91584 +sg25270 +S'Ludovico Lombardo' +p91585 +sg25273 +S'bronze' +p91586 +sg25275 +S'c. 1550' +p91587 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c3a.jpg' +p91588 +sg25267 +g27 +sa(dp91589 +g25268 +S'Joseph Dugan' +p91590 +sg25270 +S'Thomas Sully' +p91591 +sg25273 +S'oil on canvas' +p91592 +sg25275 +S'1810' +p91593 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000262.jpg' +p91594 +sg25267 +g27 +sa(dp91595 +g25273 +S', published 1887' +p91596 +sg25267 +g27 +sg25275 +S'\n' +p91597 +sg25268 +S"Catalogue desciptif et analytique de l'oeuvre grave de Felicien Rops (volume I)" +p91598 +sg25270 +S'Eugene Rodrigues' +p91599 +sa(dp91600 +g25273 +S'(author)' +p91601 +sg25267 +g27 +sg25275 +S'\n' +p91602 +sg25268 +S"Supplement au catalogue de l'oeuvre grave de Felicien Rops (volume II)" +p91603 +sg25270 +S'Artist Information (' +p91604 +sa(dp91605 +g25273 +S'British, 1892 - 1957' +p91606 +sg25267 +g27 +sg25275 +S'(editor)' +p91607 +sg25268 +S'How to Distinguish Prints' +p91608 +sg25270 +S'Artist Information (' +p91609 +sa(dp91610 +g25273 +S'woodcut on wove paper' +p91611 +sg25267 +g27 +sg25275 +S'published 1926' +p91612 +sg25268 +S'A Cobbled Yard' +p91613 +sg25270 +S'John Frederick Greenwood' +p91614 +sa(dp91615 +g25273 +S'wood engraving on wove paper' +p91616 +sg25267 +g27 +sg25275 +S'published 1926' +p91617 +sg25268 +S'The Beacon' +p91618 +sg25270 +S'John Frederick Greenwood' +p91619 +sa(dp91620 +g25273 +S'linoleum cut on wove paper' +p91621 +sg25267 +g27 +sg25275 +S'published 1926' +p91622 +sg25268 +S'A Wiltshire Cottage' +p91623 +sg25270 +S'Hesketh Hubbard' +p91624 +sa(dp91625 +g25273 +S'color woodcut on wove paper' +p91626 +sg25267 +g27 +sg25275 +S'published 1926' +p91627 +sg25268 +S'Poole Harbour' +p91628 +sg25270 +S'Thomas Todd Blaylock' +p91629 +sa(dp91630 +g25273 +S'engraving on wove paper' +p91631 +sg25267 +g27 +sg25275 +S'published 1926' +p91632 +sg25268 +S'A Bookplate' +p91633 +sg25270 +S'Eli Marsden Wilson' +p91634 +sa(dp91635 +g25268 +S'Virgin and Child on a Grassy Bench' +p91636 +sg25270 +S'Martin Schongauer' +p91637 +sg25273 +S'engraving' +p91638 +sg25275 +S'c. 1475/1480' +p91639 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4ac.jpg' +p91640 +sg25267 +g27 +sa(dp91641 +g25273 +S'etching (copper) on wove paper' +p91642 +sg25267 +g27 +sg25275 +S'published 1926' +p91643 +sg25268 +S'Shipping at Poole' +p91644 +sg25270 +S'Edward William Charlton' +p91645 +sa(dp91646 +g25273 +S'etching (zinc) on wove paper' +p91647 +sg25267 +g27 +sg25275 +S'published 1926' +p91648 +sg25268 +S'"Since 1742"' +p91649 +sg25270 +S'Sir Leslie Ward' +p91650 +sa(dp91651 +g25273 +S'color etching on wove paper' +p91652 +sg25267 +g27 +sg25275 +S'published 1926' +p91653 +sg25268 +S'La Rue Neuve, Auray, Brittany' +p91654 +sg25270 +S'Iaian MacNab' +p91655 +sa(dp91656 +g25273 +S'drypoint on wove paper' +p91657 +sg25267 +g27 +sg25275 +S'published 1926' +p91658 +sg25268 +S'Nude' +p91659 +sg25270 +S'Alfred Palmer' +p91660 +sa(dp91661 +g25273 +S'mezzotint on wove paper' +p91662 +sg25267 +g27 +sg25275 +S'published 1926' +p91663 +sg25268 +S'A Glimpse of the Severn from Lydney Park' +p91664 +sg25270 +S'Eli Marsden Wilson' +p91665 +sa(dp91666 +g25273 +S'dust ground aquatint on wove paper' +p91667 +sg25267 +g27 +sg25275 +S'published 1926' +p91668 +sg25268 +S'The Adoration' +p91669 +sg25270 +S'Cecil Mary Leslie' +p91670 +sa(dp91671 +g25273 +S'spirit ground aquatint on wove paper' +p91672 +sg25267 +g27 +sg25275 +S'1924' +p91673 +sg25268 +S'A Sussex Lane' +p91674 +sg25270 +S'Hugh Paton' +p91675 +sa(dp91676 +g25273 +S'color aquatint on wove paper' +p91677 +sg25267 +g27 +sg25275 +S'1924' +p91678 +sg25268 +S'On the Lagune' +p91679 +sg25270 +S'Hugh Paton' +p91680 +sa(dp91681 +g25273 +S'soft-ground etching on wove paper' +p91682 +sg25267 +g27 +sg25275 +S'1924' +p91683 +sg25268 +S'A Dort Canal' +p91684 +sg25270 +S'Hugh Paton' +p91685 +sa(dp91686 +g25273 +S'sandgrain etching on wove paper' +p91687 +sg25267 +g27 +sg25275 +S'published 1926' +p91688 +sg25268 +S'Evening: The First Snows' +p91689 +sg25270 +S'Iaian MacNab' +p91690 +sa(dp91691 +g25268 +S'Madonna with a Parrot' +p91692 +sg25270 +S'Martin Schongauer' +p91693 +sg25273 +S'engraving' +p91694 +sg25275 +S'c. 1470/1475' +p91695 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4ae.jpg' +p91696 +sg25267 +g27 +sa(dp91697 +g25273 +S'lithograph on wove paper' +p91698 +sg25267 +g27 +sg25275 +S'published 1926' +p91699 +sg25268 +S"Smugglers' House: Chatham" +p91700 +sg25270 +S'Sir Leslie Ward' +p91701 +sa(dp91702 +g25273 +S'(author)' +p91703 +sg25267 +g27 +sg25275 +S'\n' +p91704 +sg25268 +S'Etchings and Drypoints by Muirhead Bone: 1898-1907 (volume I)' +p91705 +sg25270 +S'Artist Information (' +p91706 +sa(dp91707 +g25273 +S'drypoint on laid paper' +p91708 +sg25267 +g27 +sg25275 +S'1908' +p91709 +sg25268 +S'Portrait of the Artist in a Hat, No.2' +p91710 +sg25270 +S'Sir Muirhead Bone' +p91711 +sa(dp91712 +g25273 +S'1 vol: ill: 2 original etchings (see 1945.18.5.a-b) plus 15 copperplate reproductions' +p91713 +sg25267 +g27 +sg25275 +S'published 1924' +p91714 +sg25268 +S'A Descriptive Catalogue of the Etched Work of Donald Shaw MacLaughlan' +p91715 +sg25270 +S'Donald Shaw MacLaughlan' +p91716 +sa(dp91717 +g25273 +S'etching' +p91718 +sg25267 +g27 +sg25275 +S'1920' +p91719 +sg25268 +S'Trees and Fields' +p91720 +sg25270 +S'Donald Shaw MacLaughlan' +p91721 +sa(dp91722 +g25273 +S'etching' +p91723 +sg25267 +g27 +sg25275 +S'1906' +p91724 +sg25268 +S'Little Poigny' +p91725 +sg25270 +S'Donald Shaw MacLaughlan' +p91726 +sa(dp91727 +g25273 +S'American, 1866 - 1939' +p91728 +sg25267 +g27 +sg25275 +S'(author)' +p91729 +sg25268 +S'The Graphic Processes' +p91730 +sg25270 +S'Artist Information (' +p91731 +sa(dp91732 +g25273 +S'(artist)' +p91733 +sg25267 +g27 +sg25275 +S'\n' +p91734 +sg25268 +S'Die Kunst des Radierens' +p91735 +sg25270 +S'Artist Information (' +p91736 +sa(dp91737 +g25273 +S'drypoint on wove paper' +p91738 +sg25267 +g27 +sg25275 +S'published 1919' +p91739 +sg25268 +S'Amsterdame Judengasse' +p91740 +sg25270 +S'Max Liebermann' +p91741 +sa(dp91742 +g25273 +S'etching and drypoint on wove paper' +p91743 +sg25267 +g27 +sg25275 +S'1908/1909' +p91744 +sg25268 +S'Norwegian Landscape (Norwegische Landschaft)' +p91745 +sg25270 +S'Edvard Munch' +p91746 +sa(dp91747 +g25268 +S'Madonna on the Crescent' +p91748 +sg25270 +S'Martin Schongauer' +p91749 +sg25273 +S'engraving' +p91750 +sg25275 +S'c. 1470' +p91751 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4ad.jpg' +p91752 +sg25267 +g27 +sa(dp91753 +g25273 +S'crayon manner engraving on wove paper' +p91754 +sg25267 +g27 +sg25275 +S'1905' +p91755 +sg25268 +S'Alter Jude aus Jaffa' +p91756 +sg25270 +S'Hermann Struck' +p91757 +sa(dp91758 +g25273 +S'soft-ground etching on wove paper' +p91759 +sg25267 +g27 +sg25275 +S'published 1919' +p91760 +sg25268 +S'Der Maler in der Landschaft' +p91761 +sg25270 +S'Hans Meid' +p91762 +sa(dp91763 +g25273 +S'etching on wove paper' +p91764 +sg25267 +g27 +sg25275 +S'published 1919' +p91765 +sg25268 +S'Aus Sluis' +p91766 +sg25270 +S'Paul Baum' +p91767 +sa(dp91768 +g25273 +S'lithograph on wove paper' +p91769 +sg25267 +g27 +sg25275 +S'published 1919' +p91770 +sg25268 +S'Der Bildermann' +p91771 +sg25270 +S'Max Slevogt' +p91772 +sa(dp91773 +g25268 +S'Siegfried and the Rhine Maidens' +p91774 +sg25270 +S'Albert Pinkham Ryder' +p91775 +sg25273 +S'oil on canvas' +p91776 +sg25275 +S'1888/1891' +p91777 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001fc.jpg' +p91778 +sg25267 +S"By his own account, Ryder was so enthralled by a five-hour performance of Wagner's \n Wagner's orchestration engulfed listeners with an overwhelming torrent of sound,\nand Ryder's composition offers a visual counterpart to this rhapsodic aesthetic\nexperience. Although Ryder's technical naiveté and his unorthodox methods have caused\nthe surfaces of his once-luminous paintings to crack and darken over time, the expressive\npower and emotional intensity of his art endures.\n " +p91779 +sa(dp91780 +g25273 +S'lithograph' +p91781 +sg25267 +g27 +sg25275 +S'1945/1946' +p91782 +sg25268 +S'Christ Helps the Hungry Children' +p91783 +sg25270 +S'Oskar Kokoschka' +p91784 +sa(dp91785 +g25273 +S'lithograph' +p91786 +sg25267 +g27 +sg25275 +S'unknown date\n' +p91787 +sg25268 +S'Off Limits, Kalihi' +p91788 +sg25270 +S'Alexander Samuel MacLeod' +p91789 +sa(dp91790 +g25273 +S'lithograph' +p91791 +sg25267 +g27 +sg25275 +S'unknown date\n' +p91792 +sg25268 +S'Okinawa Refugees' +p91793 +sg25270 +S'Alexander Samuel MacLeod' +p91794 +sa(dp91795 +g25273 +S'lithograph' +p91796 +sg25267 +g27 +sg25275 +S'unknown date\n' +p91797 +sg25268 +S'Hawaiian Soldier' +p91798 +sg25270 +S'Alexander Samuel MacLeod' +p91799 +sa(dp91800 +g25273 +S'lithograph' +p91801 +sg25267 +g27 +sg25275 +S'c. 1945' +p91802 +sg25268 +S'Bathing, Okinawa' +p91803 +sg25270 +S'Edward A. Sallenbach' +p91804 +sa(dp91805 +g25268 +S'Saint Paul' +p91806 +sg25270 +S'Martin Schongauer' +p91807 +sg25273 +S'engraving' +p91808 +sg25275 +S'c. 1480' +p91809 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4a7.jpg' +p91810 +sg25267 +g27 +sa(dp91811 +g25273 +S'lithograph in black on wove paper' +p91812 +sg25267 +g27 +sg25275 +S'c. 1945' +p91813 +sg25268 +S'Battalion Communications' +p91814 +sg25270 +S'Edward A. Sallenbach' +p91815 +sa(dp91816 +g25273 +S'lithograph' +p91817 +sg25267 +g27 +sg25275 +S'unknown date\n' +p91818 +sg25268 +S'Mail' +p91819 +sg25270 +S'Edward A. Sallenbach' +p91820 +sa(dp91821 +g25273 +S'lithograph in black on wove paper' +p91822 +sg25267 +g27 +sg25275 +S'c. 1945' +p91823 +sg25268 +S'Mail Call' +p91824 +sg25270 +S'Edward A. Sallenbach' +p91825 +sa(dp91826 +g25273 +S'lithograph in black on wove paper' +p91827 +sg25267 +g27 +sg25275 +S'c. 1945' +p91828 +sg25268 +S'Observation Post' +p91829 +sg25270 +S'Edward A. Sallenbach' +p91830 +sa(dp91831 +g25273 +S'lithograph in black on wove paper' +p91832 +sg25267 +g27 +sg25275 +S'c. 1945' +p91833 +sg25268 +S'Okinawa Shower' +p91834 +sg25270 +S'Edward A. Sallenbach' +p91835 +sa(dp91836 +g25273 +S'lithograph' +p91837 +sg25267 +g27 +sg25275 +S'unknown date\n' +p91838 +sg25268 +S'Shafter Cafeteria' +p91839 +sg25270 +S'Edward A. Sallenbach' +p91840 +sa(dp91841 +g25273 +S'lithograph' +p91842 +sg25267 +g27 +sg25275 +S'unknown date\n' +p91843 +sg25268 +S'V-J Day Parade' +p91844 +sg25270 +S'Edward A. Sallenbach' +p91845 +sa(dp91846 +g25273 +S'lithograph' +p91847 +sg25267 +g27 +sg25275 +S'unknown date\n' +p91848 +sg25268 +S'Filipino Soldier' +p91849 +sg25270 +S'Alexander Samuel MacLeod' +p91850 +sa(dp91851 +g25273 +S'lithograph' +p91852 +sg25267 +g27 +sg25275 +S'unknown date\n' +p91853 +sg25268 +S'Man with a Broom' +p91854 +sg25270 +S'Vincent Zenone' +p91855 +sa(dp91856 +g25273 +S'lithograph' +p91857 +sg25267 +g27 +sg25275 +S'unknown date\n' +p91858 +sg25268 +S'G.I. Joe' +p91859 +sg25270 +S'Edwin Chapman' +p91860 +sa(dp91861 +g25273 +S'engraving' +p91862 +sg25267 +g27 +sg25275 +S'c. 1480' +p91863 +sg25268 +S'Saint John the Evangelist' +p91864 +sg25270 +S'Martin Schongauer' +p91865 +sa(dp91866 +g25273 +S'lithograph' +p91867 +sg25267 +g27 +sg25275 +S'unknown date\n' +p91868 +sg25268 +S'Amphibious Training' +p91869 +sg25270 +S'Michael Remus' +p91870 +sa(dp91871 +g25273 +S'lithograph' +p91872 +sg25267 +g27 +sg25275 +S'unknown date\n' +p91873 +sg25268 +S'A.J.A., 100th Infantry Battalion' +p91874 +sg25270 +S'Alexander Samuel MacLeod' +p91875 +sa(dp91876 +g25273 +S'lithograph' +p91877 +sg25267 +g27 +sg25275 +S'unknown date\n' +p91878 +sg25268 +S'Headquarters, AFMIDPAC' +p91879 +sg25270 +S'Alexander Samuel MacLeod' +p91880 +sa(dp91881 +g25268 +S'Head of a Man Looking Up to the Right' +p91882 +sg25270 +S'Alphonse Legros' +p91883 +sg25273 +S'metalpoint on prepared paper' +p91884 +sg25275 +S'1890s?' +p91885 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073dc.jpg' +p91886 +sg25267 +g27 +sa(dp91887 +g25268 +S'Study of Delphic Sibyl; Head of a Man' +p91888 +sg25270 +S'Artist Information (' +p91889 +sg25273 +S'(artist after)' +p91890 +sg25275 +S'\n' +p91891 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073db.jpg' +p91892 +sg25267 +g27 +sa(dp91893 +g25268 +S'At the Foot of the Cross' +p91894 +sg25270 +S'Alphonse Legros' +p91895 +sg25273 +S'pen and brown ink with brown wash over graphite on laid paper' +p91896 +sg25275 +S'unknown date\n' +p91897 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073df.jpg' +p91898 +sg25267 +g27 +sa(dp91899 +g25268 +S'Farmer and His Donkey (Le fermier et son ane)' +p91900 +sg25270 +S'Alphonse Legros' +p91901 +sg25273 +S'etching and drypoint' +p91902 +sg25275 +S'unknown date\n' +p91903 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bad.jpg' +p91904 +sg25267 +g27 +sa(dp91905 +g25268 +S'Choir of a Spanish Church' +p91906 +sg25270 +S'Alphonse Legros' +p91907 +sg25273 +S'charcoal' +p91908 +sg25275 +S'unknown date\n' +p91909 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073e3.jpg' +p91910 +sg25267 +g27 +sa(dp91911 +g25268 +S'Small Lake (Le petit lac)' +p91912 +sg25270 +S'Alphonse Legros' +p91913 +sg25273 +S'etching' +p91914 +sg25275 +S'unknown date\n' +p91915 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c16.jpg' +p91916 +sg25267 +g27 +sa(dp91917 +g25268 +S'Travelers Resting (Les voyageurs fatigues)' +p91918 +sg25270 +S'Alphonse Legros' +p91919 +sg25273 +S'drypoint on rose paper' +p91920 +sg25275 +S'unknown date\n' +p91921 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b48.jpg' +p91922 +sg25267 +g27 +sa(dp91923 +g25268 +S'Saint Thomas' +p91924 +sg25270 +S'Martin Schongauer' +p91925 +sg25273 +S'engraving' +p91926 +sg25275 +S'c. 1480' +p91927 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4aa.jpg' +p91928 +sg25267 +g27 +sa(dp91929 +g25268 +S'Farm with Large Tree (La ferme au grand arbre)' +p91930 +sg25270 +S'Alphonse Legros' +p91931 +sg25273 +S'etching, drypoint and aquatint?' +p91932 +sg25275 +S'unknown date\n' +p91933 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b5c.jpg' +p91934 +sg25267 +g27 +sa(dp91935 +g25268 +S'Finding the Sheep (Le mouton retrouve)' +p91936 +sg25270 +S'Alphonse Legros' +p91937 +sg25273 +S'etching in brown' +p91938 +sg25275 +S'unknown date\n' +p91939 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b42.jpg' +p91940 +sg25267 +g27 +sa(dp91941 +g25268 +S'Jules Dalou, 2nd plate' +p91942 +sg25270 +S'Alphonse Legros' +p91943 +sg25273 +S'etching and drypoint' +p91944 +sg25275 +S'unknown date\n' +p91945 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b28.jpg' +p91946 +sg25267 +g27 +sa(dp91947 +g25268 +S'Stroll of the Convalescent (La promenade du convalescent)' +p91948 +sg25270 +S'Alphonse Legros' +p91949 +sg25273 +S'drypoint' +p91950 +sg25275 +S'unknown date\n' +p91951 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b33.jpg' +p91952 +sg25267 +g27 +sa(dp91953 +g25268 +S'Alphonse Legros' +p91954 +sg25270 +S'F\xc3\xa9lix Bracquemond' +p91955 +sg25273 +S'etching' +p91956 +sg25275 +S'1861' +p91957 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a000913d.jpg' +p91958 +sg25267 +g27 +sa(dp91959 +g25268 +S'Alphonse Legros' +p91960 +sg25270 +S'F\xc3\xa9lix Bracquemond' +p91961 +sg25273 +S'etching' +p91962 +sg25275 +S'1861' +p91963 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a000913f.jpg' +p91964 +sg25267 +g27 +sa(dp91965 +g25268 +S'Gust of Wind (Le coup de vent)' +p91966 +sg25270 +S'Alphonse Legros' +p91967 +sg25273 +S'etching' +p91968 +sg25275 +S'unknown date\n' +p91969 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f98.jpg' +p91970 +sg25267 +g27 +sa(dp91971 +g25268 +S'Black Cat (Le chat noir)' +p91972 +sg25270 +S'Alphonse Legros' +p91973 +sg25273 +S'etching' +p91974 +sg25275 +S'unknown date\n' +p91975 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b61.jpg' +p91976 +sg25267 +g27 +sa(dp91977 +g25268 +S'Shadow (Ombre)' +p91978 +sg25270 +S'Alphonse Legros' +p91979 +sg25273 +S'etching' +p91980 +sg25275 +S'unknown date\n' +p91981 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b62.jpg' +p91982 +sg25267 +g27 +sa(dp91983 +g25268 +S'Supper of the Poor (Le souper chez misere)' +p91984 +sg25270 +S'Alphonse Legros' +p91985 +sg25273 +S'etching? and drypoint' +p91986 +sg25275 +S'unknown date\n' +p91987 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b65.jpg' +p91988 +sg25267 +g27 +sa(dp91989 +g25268 +S'Saint Judas Thaddaeus' +p91990 +sg25270 +S'Martin Schongauer' +p91991 +sg25273 +S'engraving' +p91992 +sg25275 +S'c. 1480' +p91993 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4a6.jpg' +p91994 +sg25267 +g27 +sa(dp91995 +g25268 +S'Angler (Le pecheur a la ligne)' +p91996 +sg25270 +S'Alphonse Legros' +p91997 +sg25273 +S'etching' +p91998 +sg25275 +S'unknown date\n' +p91999 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b6b.jpg' +p92000 +sg25267 +g27 +sa(dp92001 +g25268 +S'Self-Portrait, 3rd plate' +p92002 +sg25270 +S'Alphonse Legros' +p92003 +sg25273 +S'etching? and drypoint' +p92004 +sg25275 +S'unknown date\n' +p92005 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b7a.jpg' +p92006 +sg25267 +g27 +sa(dp92007 +g25268 +S"Donkey Upset by Storm (L'ane renverse par la foudre)" +p92008 +sg25270 +S'Alphonse Legros' +p92009 +sg25273 +S'etching' +p92010 +sg25275 +S'unknown date\n' +p92011 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098ed.jpg' +p92012 +sg25267 +g27 +sa(dp92013 +g25268 +S'Thunder (Un coup de foudre)' +p92014 +sg25270 +S'Alphonse Legros' +p92015 +sg25273 +S'etching and drypoint?' +p92016 +sg25275 +S'unknown date\n' +p92017 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098e8.jpg' +p92018 +sg25267 +g27 +sa(dp92019 +g25268 +S'In the Forest of Fontainebleau (Dans la foret de Fontainebleau)' +p92020 +sg25270 +S'Alphonse Legros' +p92021 +sg25273 +S'etching and drypoint' +p92022 +sg25275 +S'unknown date\n' +p92023 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bc5.jpg' +p92024 +sg25267 +g27 +sa(dp92025 +g25268 +S"Drinking Trough, 2nd plate (L'abreuvoir)" +p92026 +sg25270 +S'Alphonse Legros' +p92027 +sg25273 +S'drypoint' +p92028 +sg25275 +S'unknown date\n' +p92029 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098df.jpg' +p92030 +sg25267 +g27 +sa(dp92031 +g25268 +S'Women of Brussels (Femmes de Bruges)' +p92032 +sg25270 +S'Alphonse Legros' +p92033 +sg25273 +S'etching and drypoint' +p92034 +sg25275 +S'unknown date\n' +p92035 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bac.jpg' +p92036 +sg25267 +g27 +sa(dp92037 +g25268 +S'Hector Berlioz' +p92038 +sg25270 +S'Alphonse Legros' +p92039 +sg25273 +S'etching' +p92040 +sg25275 +S'unknown date\n' +p92041 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bd6.jpg' +p92042 +sg25267 +g27 +sa(dp92043 +g25268 +S'Edge of a Forest in Bourgogne (Un coin de foret en Bourgogne)' +p92044 +sg25270 +S'Alphonse Legros' +p92045 +sg25273 +S'etching and drypoint' +p92046 +sg25275 +S'unknown date\n' +p92047 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bd3.jpg' +p92048 +sg25267 +g27 +sa(dp92049 +g25268 +S'Rectory Wall (Le mur du presbytere)' +p92050 +sg25270 +S'Alphonse Legros' +p92051 +sg25273 +S'etching and drypoint' +p92052 +sg25275 +S'unknown date\n' +p92053 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bd1.jpg' +p92054 +sg25267 +g27 +sa(dp92055 +g25268 +S'Saint Simon' +p92056 +sg25270 +S'Martin Schongauer' +p92057 +sg25273 +S'engraving' +p92058 +sg25275 +S'c. 1480' +p92059 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4bb.jpg' +p92060 +sg25267 +g27 +sa(dp92061 +g25268 +S'Along the River (Le long de la rive)' +p92062 +sg25270 +S'Alphonse Legros' +p92063 +sg25273 +S'etching and drypoint' +p92064 +sg25275 +S'unknown date\n' +p92065 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bd5.jpg' +p92066 +sg25267 +g27 +sa(dp92067 +g25268 +S"Avenue of Poplars (L'allee de peupliers)" +p92068 +sg25270 +S'Alphonse Legros' +p92069 +sg25273 +S'drypoint' +p92070 +sg25275 +S'unknown date\n' +p92071 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bf1.jpg' +p92072 +sg25267 +g27 +sa(dp92073 +g25268 +S"Poplars near Amiens (Pres d'Amiens, les tourbieres)" +p92074 +sg25270 +S'Alphonse Legros' +p92075 +sg25273 +S'drypoint and etching' +p92076 +sg25275 +S'unknown date\n' +p92077 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bf6.jpg' +p92078 +sg25267 +g27 +sa(dp92079 +g25268 +S'The Good Samaritan (Le bon samaritain)' +p92080 +sg25270 +S'Alphonse Legros' +p92081 +sg25273 +S'etching and drypoint' +p92082 +sg25275 +S'unknown date\n' +p92083 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c54.jpg' +p92084 +sg25267 +g27 +sa(dp92085 +g25268 +S'Self-Portrait' +p92086 +sg25270 +S'Alphonse Legros' +p92087 +sg25273 +S'lithograph' +p92088 +sg25275 +S'unknown date\n' +p92089 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e16.jpg' +p92090 +sg25267 +g27 +sa(dp92091 +g25268 +S'Self-Portrait' +p92092 +sg25270 +S'Alphonse Legros' +p92093 +sg25273 +S'goldpoint on prepared paper' +p92094 +sg25275 +S'c. 1895' +p92095 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073e1.jpg' +p92096 +sg25267 +g27 +sa(dp92097 +g25268 +S'Death and the Woodcutter, 4th plate (La mort et le bucheron)' +p92098 +sg25270 +S'Alphonse Legros' +p92099 +sg25273 +S'etching and drypoint?' +p92100 +sg25275 +S'unknown date\n' +p92101 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b7e.jpg' +p92102 +sg25267 +g27 +sa(dp92103 +g25268 +S"L'heureuse f\xc3\xa9condit\xc3\xa9" +p92104 +sg25270 +S'Artist Information (' +p92105 +sg25273 +S'(artist after)' +p92106 +sg25275 +S'\n' +p92107 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e79.jpg' +p92108 +sg25267 +g27 +sa(dp92109 +g25268 +S'Lodovico Widmann' +p92110 +sg25270 +S'Tiberio Tinelli' +p92111 +sg25273 +S'oil on canvas' +p92112 +sg25275 +S'probably 1637' +p92113 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000650.jpg' +p92114 +sg25267 +g27 +sa(dp92115 +g25268 +S'Allegory of Painting' +p92116 +sg25270 +S'Fran\xc3\xa7ois Boucher' +p92117 +sg25273 +S'oil on canvas' +p92118 +sg25275 +S'1765' +p92119 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d56.jpg' +p92120 +sg25267 +g27 +sa(dp92121 +g25268 +S'Saint Anthony' +p92122 +sg25270 +S'Martin Schongauer' +p92123 +sg25273 +S'engraving' +p92124 +sg25275 +S'c. 1480' +p92125 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4b9.jpg' +p92126 +sg25267 +g27 +sa(dp92127 +g25268 +S'Allegory of Music' +p92128 +sg25270 +S'Fran\xc3\xa7ois Boucher' +p92129 +sg25273 +S'oil on canvas' +p92130 +sg25275 +S'1764' +p92131 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d57.jpg' +p92132 +sg25267 +g27 +sa(dp92133 +g25268 +S'Madame Bergeret' +p92134 +sg25270 +S'Fran\xc3\xa7ois Boucher' +p92135 +sg25273 +S'oil on canvas' +p92136 +sg25275 +S'possibly 1766' +p92137 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d58.jpg' +p92138 +sg25267 +S"Madame Marguerite Bergeret was the wife and sister of two of the eighteenth\ncentury's most ardent art patrons. Her brother, the Abbé Jean Claude de Saint-Non\ntraveled to Italy with Hubert Robert and Jean-Honoré Fragonard. Her husband, Jacques\nOnésime Bergeret, a wealthy financier, became a celebrated connoisseur and\ncollector.\n In the 1740s Boucher was establishing himself as a mature painter in Parisian art\ncircles. In this portrait he defines the chic of that decade: Madame Bergeret is\nplaced in a garden setting, dressed in a creamy silk gown, tight in the bodice with\npuffed sleeves highlighted with blue ribbons. Her face glows with youth and beauty\ndepicted in translucent whites. The most important motif, and the charm of the composition,\nis the profusion of roses -- emerging from a bronze vase, decorating her sleeves\nand hair, and arranged across the bench and on the foreground plane. Sacred to Venus,\nthe rose was a symbol well suited for a portrait of Bergeret's beloved wife.\n Boucher's vast talents were quickly noticed by the King's new mistress Madame de\nPompadour. Boucher became her favorite painter, and he produced several portraits\nof her, the most celebrated modeled on his earlier depiction of Madame Bergeret.\n " +p92139 +sa(dp92140 +g25268 +S'Family Portrait' +p92141 +sg25270 +S'Fran\xc3\xa7ois-Hubert Drouais' +p92142 +sg25273 +S'oil on canvas' +p92143 +sg25275 +S'1756' +p92144 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d65.jpg' +p92145 +sg25267 +S"François-Hubert Drouais dated his life-size informal family portrait 1 April\n1756, thereby revealing a hidden meaning. In the medieval calendar New Year's Day\ncoincided with the vernal equinox of 25 March, and 1 April, which marked the beginning\nof Spring, was celebrated with festivities and gift-giving. After the Gregorian\ncalendar of 1582 proclaimed 1 January as New Year's Day, the tradition of exchanging\nspringtime gifts on 1 April continued and is still celebrated today, albeit in a\nrather distilled form as April Fool's Day. The springtime exchange of gifts is elaborately\ndisplayed in Drouais' work: the little girl presents flowers to her mother, the\nhusband reads a letter or sonnet to his wife, and the wife, while arranging flowers\nin her daughter's hair, also points to their child as a symbolic gift to her husband.\n Drouais does not provide enough specific information for us to identify his sitters,\nbut he does give an intimate view into the boudoir. Neither husband nor wife are\nfully dressed; she wears a smock to prevent powder from spoiling her dress, and\nhe wears a silken housecoat embroidered with fashionable oriental motifs. Like his\nmaster Boucher, Drouais relishes in the display of contrasting tones and sumptuous\ncolors.\n " +p92146 +sa(dp92147 +g25268 +S'A Game of Horse and Rider' +p92148 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p92149 +sg25273 +S'oil on canvas' +p92150 +sg25275 +S'c. 1775/1780' +p92151 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d68.jpg' +p92152 +sg25267 +S'Boys are shown romping at the edge of a forest park in a game of horse \r\n and rider, their disheveled exuberance in contrast to the rather prim \r\n couple nearby. These boys benefit from a new attitude toward childhood, \r\n influenced by Rousseau, who argued that children should be left to follow \r\n their natural instincts. In \n ' +p92153 +sa(dp92154 +g25268 +S'A Game of Hot Cockles' +p92155 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p92156 +sg25273 +S'oil on canvas' +p92157 +sg25275 +S'c. 1775/1780' +p92158 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d69.jpg' +p92159 +sg25267 +g27 +sa(dp92160 +g25268 +S'The Visit to the Nursery' +p92161 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p92162 +sg25273 +S'oil on canvas' +p92163 +sg25275 +S'c. 1775' +p92164 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d70.jpg' +p92165 +sg25267 +S'This tender scene may illustrate an episode from a sentimental novel, \r\n \n ' +p92166 +sa(dp92167 +g25268 +S'Ange Laurent de La Live de Jully' +p92168 +sg25270 +S'Jean-Baptiste Greuze' +p92169 +sg25273 +S'oil on canvas' +p92170 +sg25275 +S'probably 1759' +p92171 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d73.jpg' +p92172 +sg25267 +S"Like Jacques Onésime de Bergeret, Lalive de Jully (1725-79) was an influential collector,\namateur, and painter in the Parisian art world of the 1750s and 1760s. One of Jean-Baptiste\nGreuze's first patrons, Lalive is depicted seated on a chair he had commissioned as part of a suite\nof furniture \n Greuze placed Lalive in the center of the canvas; his torso twists toward the harp, as his\nhead, shown in three-quarter pose, turns to the viewer. He is casually attired in a white silk\ndressing gown, a scarf around his neck, and his britches unbuttoned at the knees. The captivating\nexpression, a faint smile and slightly raised eyebrows, further enhances the contrived informality\nof the portrait. The emphasis on the face and hands counterbalances the rigid series of parallel\nvertical lines that define the space.\n The prominent display of the harp, accompanied by the furniture with the portfolio of drawings and statue of the Erythrean Sibyl in the background, suggests that Greuze has depicted Lalive as a new Apollo, alluding to his patronage of the arts.\n " +p92173 +sa(dp92174 +g25268 +S'The Italian Comedians' +p92175 +sg25270 +S'Antoine Watteau' +p92176 +sg25273 +S'oil on canvas' +p92177 +sg25275 +S'probably 1720' +p92178 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d92.jpg' +p92179 +sg25267 +S"Antoine Watteau's \n The garland of flowers in the foreground steps suggests the actors are taking a bow after their performance; however the members united here were probably Watteau's own invention, and connected to a specific play or troupe. This tension between illusion and reality is typical of Watteau and influenced a generation of his followers to explore the relationships between painting and theater.\n " +p92180 +sa(dp92181 +g25268 +S'Old Woman with a Muff' +p92182 +sg25270 +S'French 18th Century' +p92183 +sg25273 +S'overall: 80.5 x 64.5 cm (31 11/16 x 25 3/8 in.)\r\nframed: 106.7 x 89.5 x 10.2 cm (42 x 35 1/4 x 4 in.)' +p92184 +sg25275 +S'\noil on canvas' +p92185 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005aa4.jpg' +p92186 +sg25267 +g27 +sa(dp92187 +g25268 +S'Landscape with Peasants' +p92188 +sg25270 +S'Louis Le Nain' +p92189 +sg25273 +S'oil on canvas' +p92190 +sg25275 +S'c. 1640' +p92191 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d77.jpg' +p92192 +sg25267 +S"Louis Le Nain lived in a region to the north of Paris known for its open fields\nthat produced cereals and grain. Although he settled in Paris with his two brothers,\nwho were also painters, he produced a series of rural images that recall the landscape\nof his youth.\n In the \n Their fitted clothes and shoes suggest that the children were not peasants but perhaps\nmembers of an emerging class of farmers acquiring land in the early decades of the\ncentury. Le Nain's emphasis on the land in this composition implies that the rich\nsoil holds potential profits for these new landowners. The Le Nains' rural subjects\nwere very popular, suggesting their patrons appreciated the agricultural messages\nencoded in the structure of the paintings.\n " +p92193 +sa(dp92194 +g25268 +S'The Tribulations of Saint Anthony' +p92195 +sg25270 +S'Martin Schongauer' +p92196 +sg25273 +S'engraving on laid paper' +p92197 +sg25275 +S'c. 1470/1475' +p92198 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000fa0.jpg' +p92199 +sg25267 +g27 +sa(dp92200 +g25268 +S'The Herdsman' +p92201 +sg25270 +S'Artist Information (' +p92202 +sg25273 +S'French, 1604/1605 - 1682' +p92203 +sg25275 +S'(related artist)' +p92204 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005acc.jpg' +p92205 +sg25267 +g27 +sa(dp92206 +g25268 +S'Madame Le F\xc3\xa8vre de Caumartin as Hebe' +p92207 +sg25270 +S'Jean-Marc Nattier' +p92208 +sg25273 +S'oil on canvas' +p92209 +sg25275 +S'1753' +p92210 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d78.jpg' +p92211 +sg25267 +S'Nattier entered the Academy as a history painter, but after financial \r\n losses in a shaky market scheme he turned to a more profitable career as a \r\n portraitist. Before long he was the most fashionable painter in Paris. His \r\n daughter wrote that he had "reconciled the two major branches of art" for \r\n he specialized in historical portraits, casting his sitters in mythological \r\n or literary roles.\n Madame de Caumartin as Hebe\n ' +p92212 +sa(dp92213 +g25268 +S'The Baptism of Christ' +p92214 +sg25270 +S'Nicolas Poussin' +p92215 +sg25273 +S'oil on canvas' +p92216 +sg25275 +S'1641/1642' +p92217 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d89.jpg' +p92218 +sg25267 +S'Although Nicolas Poussin\'s work exerted an enormous influence on the development\nof French seventeenth-century painting, the artist perfected his style in Rome,\nincorporating the lessons of Renaissance and contemporary Italian painters into\nhis own idiom. Poussin\'s \n In Poussin\'s composition, the river Jordan winds through the foreground plane where\nhe has placed thirteen figures. Christ is located to the right of the canvas; on\nhis left side -- which represents paradise -- two figures, probably wingless angels,\nkneel to help him. To his right, on the earthly side of the Jordan, Saint John holds\na vessel over Christ\'s head.\n The reactions of the figures to the right of Christ demonstrate why mastery of the\nhuman form was essential to history painting. The row of figures behind Saint John\nhave anguished expressions and contorted poses. Poussin has depicted the specific\nmoment when the voice of the Lord proclaimed: "This is my beloved son, in whom I\nam well pleased" (Matthew 3:17). By presenting complex poses and physiognomies,\nPoussin has evoked a very human reaction -- the fear of those present as they acknowledge\nChrist as the son of God -- thereby encouraging the viewer to identify with this\nsignificant moment.\n ' +p92219 +sa(dp92220 +g25268 +S"Madame d'Aguesseau de Fresnes" +p92221 +sg25270 +S'\xc3\x89lisabeth Louise Vig\xc3\xa9e Le Brun' +p92222 +sg25273 +S', 1789' +p92223 +sg25275 +S'\n' +p92224 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d8f.jpg' +p92225 +sg25267 +S"Politics played an important role in the career of Madame Vigée-Lebrun. A painter\r\nto Marie Antoinette since 1779, she was elected to the Royal Academy of Painting\r\nby the queen's decree in 1783. Her close ties to the royal family put her life\r\nin danger during the Revolution and she fled France in 1789, not to return until 1802.\r\nTherefore, it is not surprising that her\r\nportraits of society ladies reveal graceful poses, finished surfaces, and sweet,\r\nbut controlled expressions, that both mask and betray the charged political climate\r\nsurrounding her sitters.\n This young woman's elaborate costume displays three different foreign cultures.\r\nHer turban and jacket recall a Turkish harem outfit. The allusions to the exotic\r\nOrient signal an escape from the present as well as an Enlightenment acceptance\r\nof non-western ideas. Her flowing white gown recalls the costumes of ancient Greece\r\nand Rome, meant to inspire republican virtues. The prominent Wedgwood cameo at her\r\nsash is English; at this time British imports represented products of another political\r\nsystem, a parliamentary monarchy, that was considered as a potential model for France.\r\nIn rigorously detailing the costume, Vigée-Lebrun shows how deeply contemporary\r\npolitics had penetrated daily life. The subject's engaging expression conveys\r\nthe nascent tensions of the period.\n " +p92226 +sa(dp92227 +g25268 +S'Portrait of a Woman' +p92228 +sg25270 +S'French 18th Century' +p92229 +sg25273 +S'overall: 69.2 x 58.7 cm (27 1/4 x 23 1/8 in.)\r\nframed: 96.2 x 86.4 cm (37 7/8 x 34 in.)' +p92230 +sg25275 +S'\noil on canvas' +p92231 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005aa6.jpg' +p92232 +sg25267 +g27 +sa(dp92233 +g25268 +S'Madame Moitessier' +p92234 +sg25270 +S'Jean-Auguste-Dominique Ingres' +p92235 +sg25273 +S'oil on canvas' +p92236 +sg25275 +S'1851' +p92237 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d99.jpg' +p92238 +sg25267 +S"Jean-Auguste-Dominique Ingres, a student of David, promulgated his master's neoclassical\naesthetic throughout his long and very successful career. Ingres espoused the supremacy\nof line over color, the study of antique sculpture, and the value of drawing after\nthe live model, principles he perfected in his expressive use of line to define\nform.\n Madame Moitessier, the daughter of a wealthy government official and wife of a lace\nmerchant, is shown in three-quarter length against a magenta damask background.\nShe wears a black velvet evening dress with a white lace band at the top which is\noverlaid with a black lace shawl. The black dress and her skin offset her glistening\njewels. The surface is finely finished, and the brushstroke almost invisible.\n Ingres has simplified Madame Moitessier's features, recalling a Greco-Roman ideal.\nHer hairstyle and the decorative halo of roses further accentuate the fact that\nher face is perfectly oval and her features symmetrical. The sitter's body is rather\nflat, thus emphasizing that the figure-ground relationship is a play between lines\nand shapes. Ingres, by exploiting the curvilinear possibilities of the female form,\nhas transformed Madame Moitessier into a monumental vision of ideal beauty.\n " +p92239 +sa(dp92240 +g25268 +S'F\xc3\xaate Champ\xc3\xaatre' +p92241 +sg25270 +S'Jean-Baptiste Joseph Pater' +p92242 +sg25273 +S'oil on canvas' +p92243 +sg25275 +S'c. 1730' +p92244 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d88.jpg' +p92245 +sg25267 +S"In this lush park elegant young aristocrats flirt, dance, and engage in\r\n intimate conversation, each couple an "episode" in the progress of\r\n courtship. Their anecdotal character makes Pater's paintings less ambiguous\r\n than \n Pater studied under Watteau—who admitted to being an impatient master—and took over his commissions after he died. Haunted by fear of poverty,\r\n Pater worked incessantly but also rather mechanically, reusing figure groups\r\n and motifs from one painting to the next. He was received by the Academy as\r\n a painter of "modern subjects," and more than six hundred of his\n Several of the poses in this painting and Pater's unfinished \n " +p92246 +sa(dp92247 +g25268 +S'Two Satyrs Fighting about a Nymph' +p92248 +sg25270 +S'Albrecht Altdorfer' +p92249 +sg25273 +S'engraving' +p92250 +sg25275 +S'c. 1520/1525' +p92251 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a78e.jpg' +p92252 +sg25267 +g27 +sa(dp92253 +g25268 +S'Saint Christopher' +p92254 +sg25270 +S'Martin Schongauer' +p92255 +sg25273 +S'engraving on laid paper' +p92256 +sg25275 +S'c. 1475/1480' +p92257 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4b4.jpg' +p92258 +sg25267 +g27 +sa(dp92259 +g25273 +S'etching' +p92260 +sg25267 +g27 +sg25275 +S'unknown date\n' +p92261 +sg25268 +S'Changing Times' +p92262 +sg25270 +S'Clarence William Anderson' +p92263 +sa(dp92264 +g25268 +S'The Triumph of Julius Caesar' +p92265 +sg25270 +S'Artist Information (' +p92266 +sg25273 +S'(artist after)' +p92267 +sg25275 +S'\n' +p92268 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8a0.jpg' +p92269 +sg25267 +g27 +sa(dp92270 +g25268 +S'Christ on the Cross' +p92271 +sg25270 +S'French 15th Century' +p92272 +sg25273 +S'Schreiber, undescribed' +p92273 +sg25275 +S'\nwoodcut on parchment' +p92274 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a00082ef.jpg' +p92275 +sg25267 +g27 +sa(dp92276 +g25268 +S'Three Marys at the Tomb' +p92277 +sg25270 +S'Urs Graf I' +p92278 +sg25273 +S'hand-colored woodcut' +p92279 +sg25275 +S'unknown date\n' +p92280 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000efa0.jpg' +p92281 +sg25267 +g27 +sa(dp92282 +g25273 +S'etching on laid paper' +p92283 +sg25267 +g27 +sg25275 +S'1931' +p92284 +sg25268 +S'Sunlight on Stone, Caudebec-en-Caux' +p92285 +sg25270 +S'John Taylor Arms' +p92286 +sa(dp92287 +g25273 +S'etching on laid paper' +p92288 +sg25267 +g27 +sg25275 +S'1916' +p92289 +sg25268 +S'A Corner in Old Lisieux' +p92290 +sg25270 +S'John Taylor Arms' +p92291 +sa(dp92292 +g25268 +S'Study in Stone, Cathedral of Orense' +p92293 +sg25270 +S'John Taylor Arms' +p92294 +sg25273 +S'etching on laid paper' +p92295 +sg25275 +S'1933' +p92296 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000933.jpg' +p92297 +sg25267 +g27 +sa(dp92298 +g25273 +S'etching in black on laid paper' +p92299 +sg25267 +g27 +sg25275 +S'1932' +p92300 +sg25268 +S'Limoges' +p92301 +sg25270 +S'John Taylor Arms' +p92302 +sa(dp92303 +g25273 +S'engraving' +p92304 +sg25267 +g27 +sg25275 +S'1926' +p92305 +sg25268 +S'Plane Tree Cottage' +p92306 +sg25270 +S'Robert Sargent Austin' +p92307 +sa(dp92308 +g25273 +S'etching' +p92309 +sg25267 +g27 +sg25275 +S'1929' +p92310 +sg25268 +S'The Belfry' +p92311 +sg25270 +S'Robert Sargent Austin' +p92312 +sa(dp92313 +g25268 +S'Saint George' +p92314 +sg25270 +S'Martin Schongauer' +p92315 +sg25273 +S'engraving' +p92316 +sg25275 +S'c. 1480/1490' +p92317 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4b8.jpg' +p92318 +sg25267 +g27 +sa(dp92319 +g25273 +S'etching' +p92320 +sg25267 +g27 +sg25275 +S'1926' +p92321 +sg25268 +S'Sottocastello' +p92322 +sg25270 +S'Robert Sargent Austin' +p92323 +sa(dp92324 +g25273 +S'engraving' +p92325 +sg25267 +g27 +sg25275 +S'1926' +p92326 +sg25268 +S'Bethlehem' +p92327 +sg25270 +S'Robert Sargent Austin' +p92328 +sa(dp92329 +g25273 +S'etching' +p92330 +sg25267 +g27 +sg25275 +S'1923' +p92331 +sg25268 +S'Italian Mother' +p92332 +sg25270 +S'Robert Sargent Austin' +p92333 +sa(dp92334 +g25273 +S'etching' +p92335 +sg25267 +g27 +sg25275 +S'unknown date\n' +p92336 +sg25268 +S'Little Chinese Grocery' +p92337 +sg25270 +S'Loren Roberta Barton' +p92338 +sa(dp92339 +g25273 +S'etching' +p92340 +sg25267 +g27 +sg25275 +S'unknown date\n' +p92341 +sg25268 +S'Old Rookery' +p92342 +sg25270 +S'Loren Roberta Barton' +p92343 +sa(dp92344 +g25273 +S'etching' +p92345 +sg25267 +g27 +sg25275 +S'unknown date\n' +p92346 +sg25268 +S'Oriental Bazaar' +p92347 +sg25270 +S'Marius Alexander Jacques Bauer' +p92348 +sa(dp92349 +g25273 +S'drypoint' +p92350 +sg25267 +g27 +sg25275 +S'1929' +p92351 +sg25268 +S'Poling the Seine Boat' +p92352 +sg25270 +S'Gifford Beal' +p92353 +sa(dp92354 +g25273 +S'drypoint' +p92355 +sg25267 +g27 +sg25275 +S'1908 and 1921' +p92356 +sg25268 +S"The Jews' Quarter, Leeds" +p92357 +sg25270 +S'Sir Muirhead Bone' +p92358 +sa(dp92359 +g25273 +S'drypoint' +p92360 +sg25267 +g27 +sg25275 +S'1920' +p92361 +sg25268 +S'The Solent' +p92362 +sg25270 +S'Sir Muirhead Bone' +p92363 +sa(dp92364 +g25268 +S'Erasmus' +p92365 +sg25270 +S'Artist Information (' +p92366 +sg25273 +S'(artist after)' +p92367 +sg25275 +S'\n' +p92368 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009141.jpg' +p92369 +sg25267 +g27 +sa(dp92370 +g25268 +S'Saint George and the Dragon' +p92371 +sg25270 +S'Martin Schongauer' +p92372 +sg25273 +S'engraving' +p92373 +sg25275 +S'c. 1470/1475' +p92374 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4b7.jpg' +p92375 +sg25267 +g27 +sa(dp92376 +g25273 +S'etching' +p92377 +sg25267 +g27 +sg25275 +S'1929' +p92378 +sg25268 +S'Make Fast' +p92379 +sg25270 +S'Arthur Briscoe' +p92380 +sa(dp92381 +g25273 +S'etching' +p92382 +sg25267 +g27 +sg25275 +S'1929' +p92383 +sg25268 +S'The Main Brace' +p92384 +sg25270 +S'Arthur Briscoe' +p92385 +sa(dp92386 +g25268 +S'The Master-Smith' +p92387 +sg25270 +S'Anders Zorn' +p92388 +sg25273 +S'etching' +p92389 +sg25275 +S'1907' +p92390 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed25.jpg' +p92391 +sg25267 +g27 +sa(dp92392 +g25273 +S'etching and drypoint' +p92393 +sg25267 +g27 +sg25275 +S'1907' +p92394 +sg25268 +S'A Valley of the Ardennes' +p92395 +sg25270 +S'David Young Cameron' +p92396 +sa(dp92397 +g25268 +S'La Piera del Bando. V.' +p92398 +sg25270 +S'Canaletto' +p92399 +sg25273 +S'etching' +p92400 +sg25275 +S'c. 1735/1746' +p92401 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cab1.jpg' +p92402 +sg25267 +g27 +sa(dp92403 +g25268 +S'Ale Porto del Dolo' +p92404 +sg25270 +S'Canaletto' +p92405 +sg25273 +S'etching' +p92406 +sg25275 +S'c. 1735/1746' +p92407 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbe2.jpg' +p92408 +sg25267 +g27 +sa(dp92409 +g25268 +S'Mother and Child' +p92410 +sg25270 +S'Artist Information (' +p92411 +sg25273 +S'(artist after)' +p92412 +sg25275 +S'\n' +p92413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f4/a000f42a.jpg' +p92414 +sg25267 +g27 +sa(dp92415 +g25268 +S'Jacqueline' +p92416 +sg25270 +S'Mathilde J. De Cordoba' +p92417 +sg25273 +S'color drypoint' +p92418 +sg25275 +S'1911' +p92419 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe48.jpg' +p92420 +sg25267 +g27 +sa(dp92421 +g25268 +S'Charles Courtney Hoge' +p92422 +sg25270 +S'Mathilde J. De Cordoba' +p92423 +sg25273 +S'drypoint' +p92424 +sg25275 +S'1912' +p92425 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe49.jpg' +p92426 +sg25267 +g27 +sa(dp92427 +g25268 +S'Cupid Asleep' +p92428 +sg25270 +S'Artist Information (' +p92429 +sg25273 +S'(artist after)' +p92430 +sg25275 +S'\n' +p92431 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca03.jpg' +p92432 +sg25267 +g27 +sa(dp92433 +g25268 +S'Saint John the Baptist' +p92434 +sg25270 +S'Martin Schongauer' +p92435 +sg25273 +S'engraving' +p92436 +sg25275 +S'c. 1475' +p92437 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4b5.jpg' +p92438 +sg25267 +g27 +sa(dp92439 +g25268 +S"Perry's Victory on Lake Erie" +p92440 +sg25270 +S'Napoleon Sarony' +p92441 +sg25273 +S'hand-colored lithograph' +p92442 +sg25275 +S'unknown date\n' +p92443 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fb/a000fb1c.jpg' +p92444 +sg25267 +g27 +sa(dp92445 +g25268 +S"William Penn's History" +p92446 +sg25270 +S'American 19th Century' +p92447 +sg25273 +S'Gift of Addie Burr Clark' +p92448 +sg25275 +S'\nhand-colored lithograph' +p92449 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa1d.jpg' +p92450 +sg25267 +g27 +sa(dp92451 +g25273 +S', 1848' +p92452 +sg25267 +g27 +sg25275 +S'\n' +p92453 +sg25268 +S'Tree of Temperance' +p92454 +sg25270 +S'Artist Information (' +p92455 +sa(dp92456 +g25268 +S'William Henry Harrison, 9th President of the United States' +p92457 +sg25270 +S'Nathaniel Currier' +p92458 +sg25273 +S', unknown date' +p92459 +sg25275 +S'\n' +p92460 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa1f.jpg' +p92461 +sg25267 +g27 +sa(dp92462 +g25268 +S"William Penn's Treaty with the Indians" +p92463 +sg25270 +S'Currier and Ives (publishers)' +p92464 +sg25273 +S'hand-colored lithograph' +p92465 +sg25275 +S'unknown date\n' +p92466 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa20.jpg' +p92467 +sg25267 +g27 +sa(dp92468 +g25268 +S'Surrender of Cornwallis at Yorktown, Va., Oct. 1781' +p92469 +sg25270 +S'Nathaniel Currier' +p92470 +sg25273 +S', published 1845' +p92471 +sg25275 +S'\n' +p92472 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa22.jpg' +p92473 +sg25267 +g27 +sa(dp92474 +g25273 +S'drypoint' +p92475 +sg25267 +g27 +sg25275 +S'1910' +p92476 +sg25268 +S'The Old Covenanter' +p92477 +sg25270 +S'Francis Dodd' +p92478 +sa(dp92479 +g25273 +S'drypoint' +p92480 +sg25267 +g27 +sg25275 +S'1914' +p92481 +sg25268 +S'Verona' +p92482 +sg25270 +S'Francis Dodd' +p92483 +sa(dp92484 +g25268 +S'Violin Player Seated in a Tavern' +p92485 +sg25270 +S'Cornelis Dusart' +p92486 +sg25273 +S'etching and roulette' +p92487 +sg25275 +S'1685' +p92488 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4fc.jpg' +p92489 +sg25267 +g27 +sa(dp92490 +g25268 +S'Village Festival' +p92491 +sg25270 +S'Cornelis Dusart' +p92492 +sg25273 +S'etching' +p92493 +sg25275 +S'1685' +p92494 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4fd.jpg' +p92495 +sg25267 +g27 +sa(dp92496 +g25268 +S'"But surely, Mr. Shakespeare, two heads is better than one"' +p92497 +sg25270 +S'Will Dyson' +p92498 +sg25273 +S'drypoint' +p92499 +sg25275 +S'unknown date\n' +p92500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d772.jpg' +p92501 +sg25267 +g27 +sa(dp92502 +g25273 +S'etching' +p92503 +sg25267 +g27 +sg25275 +S'1930' +p92504 +sg25268 +S'Early Morning, Brittany' +p92505 +sg25270 +S'Kerr Eby' +p92506 +sa(dp92507 +g25273 +S'etching and drypoint' +p92508 +sg25267 +g27 +sg25275 +S'1928' +p92509 +sg25268 +S'Sardine Fleet' +p92510 +sg25270 +S'Kerr Eby' +p92511 +sa(dp92512 +g25273 +S'etching' +p92513 +sg25267 +g27 +sg25275 +S'1926' +p92514 +sg25268 +S"The Whale's Back" +p92515 +sg25270 +S'Kerr Eby' +p92516 +sa(dp92517 +g25273 +S'etching' +p92518 +sg25267 +g27 +sg25275 +S'1925' +p92519 +sg25268 +S'Snow Fields' +p92520 +sg25270 +S'Kerr Eby' +p92521 +sa(dp92522 +g25273 +S'etching' +p92523 +sg25267 +g27 +sg25275 +S'1923' +p92524 +sg25268 +S'Polperro, No.2' +p92525 +sg25270 +S'Kerr Eby' +p92526 +sa(dp92527 +g25273 +S'etching' +p92528 +sg25267 +g27 +sg25275 +S'1925' +p92529 +sg25268 +S'Porthlevon' +p92530 +sg25270 +S'Kerr Eby' +p92531 +sa(dp92532 +g25273 +S'etching and drypoint' +p92533 +sg25267 +g27 +sg25275 +S'1930' +p92534 +sg25268 +S'Portage' +p92535 +sg25270 +S'Kerr Eby' +p92536 +sa(dp92537 +g25273 +S'etching' +p92538 +sg25267 +g27 +sg25275 +S'c. 1929' +p92539 +sg25268 +S'Shadows on the Agawa, No. 2' +p92540 +sg25270 +S'Kerr Eby' +p92541 +sa(dp92542 +g25273 +S'etching' +p92543 +sg25267 +g27 +sg25275 +S'c. 1928' +p92544 +sg25268 +S'Mist on the Agawa' +p92545 +sg25270 +S'Kerr Eby' +p92546 +sa(dp92547 +g25268 +S'Saint Martin Dividing His Cloak' +p92548 +sg25270 +S'Martin Schongauer' +p92549 +sg25273 +S'engraving' +p92550 +sg25275 +S'c. 1475' +p92551 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4b6.jpg' +p92552 +sg25267 +g27 +sa(dp92553 +g25273 +S'etching, drypoint, and aquatint' +p92554 +sg25267 +g27 +sg25275 +S'probably 1918' +p92555 +sg25268 +S'Refugees' +p92556 +sg25270 +S'Kerr Eby' +p92557 +sa(dp92558 +g25273 +S'etching and aquatint' +p92559 +sg25267 +g27 +sg25275 +S'1937' +p92560 +sg25268 +S'Storm' +p92561 +sg25270 +S'Kerr Eby' +p92562 +sa(dp92563 +g25273 +S'etching and drypoint' +p92564 +sg25267 +g27 +sg25275 +S'1930' +p92565 +sg25268 +S'Salt Marshes' +p92566 +sg25270 +S'Kerr Eby' +p92567 +sa(dp92568 +g25268 +S'Tour du gros-horloge, Evreux' +p92569 +sg25270 +S'Richard Parkes Bonington' +p92570 +sg25273 +S'lithograph' +p92571 +sg25275 +S'1824' +p92572 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007db0.jpg' +p92573 +sg25267 +g27 +sa(dp92574 +g25268 +S'Rue du gros-horloge, Rouen' +p92575 +sg25270 +S'Richard Parkes Bonington' +p92576 +sg25273 +S'lithograph' +p92577 +sg25275 +S'1824' +p92578 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007de4.jpg' +p92579 +sg25267 +g27 +sa(dp92580 +g25273 +S'lithograph' +p92581 +sg25267 +g27 +sg25275 +S'unknown date\n' +p92582 +sg25268 +S'Indian Head' +p92583 +sg25270 +S'Nikolai Fechin' +p92584 +sa(dp92585 +g25268 +S'Saint Bartholomew the Great, Smithfield' +p92586 +sg25270 +S'Hedley Fitton' +p92587 +sg25273 +S'etching' +p92588 +sg25275 +S'unknown date\n' +p92589 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dfa.jpg' +p92590 +sg25267 +g27 +sa(dp92591 +g25268 +S'The Man with the Pink' +p92592 +sg25270 +S'Artist Information (' +p92593 +sg25273 +S'(artist after)' +p92594 +sg25275 +S'\n' +p92595 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095de.jpg' +p92596 +sg25267 +g27 +sa(dp92597 +g25268 +S'"Ce qui se fait dans les meilleures societes"' +p92598 +sg25270 +S'Paul Gavarni' +p92599 +sg25273 +S'lithograph' +p92600 +sg25275 +S'unknown date\n' +p92601 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009aa2.jpg' +p92602 +sg25267 +g27 +sa(dp92603 +g25268 +S"Histoire d'en dire deux" +p92604 +sg25270 +S'Paul Gavarni' +p92605 +sg25273 +S'lithograph' +p92606 +sg25275 +S'unknown date\n' +p92607 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009aa4.jpg' +p92608 +sg25267 +g27 +sa(dp92609 +g25268 +S'Saint Michael Slaying the Dragon' +p92610 +sg25270 +S'Martin Schongauer' +p92611 +sg25273 +S'engraving' +p92612 +sg25275 +S'c. 1480/1490' +p92613 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4b2.jpg' +p92614 +sg25267 +g27 +sa(dp92615 +g25268 +S'Interior of the Mosque, Saint Sophia, Constantinople' +p92616 +sg25270 +S'Philip Harris Giddens' +p92617 +sg25273 +S'etching' +p92618 +sg25275 +S'unknown date\n' +p92619 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a0010415.jpg' +p92620 +sg25267 +g27 +sa(dp92621 +g25273 +S'drypoint' +p92622 +sg25267 +g27 +sg25275 +S'unknown date\n' +p92623 +sg25268 +S'Sewing' +p92624 +sg25270 +S'William Lee-Hankey' +p92625 +sa(dp92626 +g25273 +S'drypoint' +p92627 +sg25267 +g27 +sg25275 +S'unknown date\n' +p92628 +sg25268 +S'La vieille' +p92629 +sg25270 +S'William Lee-Hankey' +p92630 +sa(dp92631 +g25268 +S'Inner Harbor' +p92632 +sg25270 +S'Childe Hassam' +p92633 +sg25273 +S'lithograph' +p92634 +sg25275 +S'probably 1918' +p92635 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a00104e7.jpg' +p92636 +sg25267 +g27 +sa(dp92637 +g25268 +S'Colonial Church, Gloucester' +p92638 +sg25270 +S'Childe Hassam' +p92639 +sg25273 +S'lithograph' +p92640 +sg25275 +S'1918' +p92641 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a00104ea.jpg' +p92642 +sg25267 +g27 +sa(dp92643 +g25268 +S'The Broad Curtain' +p92644 +sg25270 +S'Childe Hassam' +p92645 +sg25273 +S'lithograph' +p92646 +sg25275 +S'1918' +p92647 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a00104ed.jpg' +p92648 +sg25267 +g27 +sa(dp92649 +g25268 +S'Bathing Beach, Bass Rocks' +p92650 +sg25270 +S'Childe Hassam' +p92651 +sg25273 +S'lithograph' +p92652 +sg25275 +S'probably 1918' +p92653 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a00104e8.jpg' +p92654 +sg25267 +g27 +sa(dp92655 +g25268 +S'Lafayette Street' +p92656 +sg25270 +S'Childe Hassam' +p92657 +sg25273 +S'lithograph' +p92658 +sg25275 +S'1918' +p92659 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a00104eb.jpg' +p92660 +sg25267 +g27 +sa(dp92661 +g25268 +S'Avenue of the Allies' +p92662 +sg25270 +S'Artist Information (' +p92663 +sg25273 +S'American, active 20th century' +p92664 +sg25275 +S'(printer)' +p92665 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a00104e9.jpg' +p92666 +sg25267 +g27 +sa(dp92667 +g25268 +S'Wayside Inn - Oaks in Spring' +p92668 +sg25270 +S'Childe Hassam' +p92669 +sg25273 +S'etching' +p92670 +sg25275 +S'1926' +p92671 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a00104e0.jpg' +p92672 +sg25267 +g27 +sa(dp92673 +g25268 +S'Saint Sebastian' +p92674 +sg25270 +S'Martin Schongauer' +p92675 +sg25273 +S'engraving on laid paper' +p92676 +sg25275 +S'c. 1480/1490' +p92677 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a484.jpg' +p92678 +sg25267 +g27 +sa(dp92679 +g25268 +S'Old Lace' +p92680 +sg25270 +S'Childe Hassam' +p92681 +sg25273 +S'etching and/or drypoint' +p92682 +sg25275 +S'1915' +p92683 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f5b9.jpg' +p92684 +sg25267 +g27 +sa(dp92685 +g25268 +S"Toby's, Cos Cob" +p92686 +sg25270 +S'Childe Hassam' +p92687 +sg25273 +S'etching (and aquatint?)' +p92688 +sg25275 +S'1915' +p92689 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f5bd.jpg' +p92690 +sg25267 +g27 +sa(dp92691 +g25268 +S'House on the Main Street, Easthampton' +p92692 +sg25270 +S'Childe Hassam' +p92693 +sg25273 +S'etching (with drypoint?)' +p92694 +sg25275 +S'1922' +p92695 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ab7.jpg' +p92696 +sg25267 +g27 +sa(dp92697 +g25268 +S"Walt Whitman's Birthplace" +p92698 +sg25270 +S'Childe Hassam' +p92699 +sg25273 +S'etching' +p92700 +sg25275 +S'1927' +p92701 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f5b7.jpg' +p92702 +sg25267 +g27 +sa(dp92703 +g25273 +S'drypoint [state I]' +p92704 +sg25267 +g27 +sg25275 +S'unknown date\n' +p92705 +sg25268 +S'The Shawl' +p92706 +sg25270 +S'Arthur William Heintzelman' +p92707 +sa(dp92708 +g25273 +S'etching in brown' +p92709 +sg25267 +g27 +sg25275 +S'unknown date\n' +p92710 +sg25268 +S'East River Sunset - Building the Empire State Tower' +p92711 +sg25270 +S'Edward Shepard Hewitt' +p92712 +sa(dp92713 +g25273 +S'etching' +p92714 +sg25267 +g27 +sg25275 +S'unknown date\n' +p92715 +sg25268 +S'Out of the Shadows' +p92716 +sg25270 +S'Eugene Higgins' +p92717 +sa(dp92718 +g25268 +S'The Laughing Audience' +p92719 +sg25270 +S'William Hogarth' +p92720 +sg25273 +S'etching' +p92721 +sg25275 +S'1733' +p92722 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007694.jpg' +p92723 +sg25267 +g27 +sa(dp92724 +g25268 +S'Four Heads from the Raphael Cartoons at Hampton Court' +p92725 +sg25270 +S'William Hogarth' +p92726 +sg25273 +S'etching' +p92727 +sg25275 +S'c. 1729' +p92728 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078c2.jpg' +p92729 +sg25267 +g27 +sa(dp92730 +g25268 +S'Henry Colthurst' +p92731 +sg25270 +S'Wenceslaus Hollar' +p92732 +sg25273 +S'etching' +p92733 +sg25275 +S'1644' +p92734 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8a6.jpg' +p92735 +sg25267 +g27 +sa(dp92736 +g25268 +S'Saint Stephen' +p92737 +sg25270 +S'Martin Schongauer' +p92738 +sg25273 +S'engraving' +p92739 +sg25275 +S'c. 1490/1491' +p92740 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a483.jpg' +p92741 +sg25267 +g27 +sa(dp92742 +g25268 +S'Self-Portrait' +p92743 +sg25270 +S'Wenceslaus Hollar' +p92744 +sg25273 +S'etching' +p92745 +sg25275 +S'1647' +p92746 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d898.jpg' +p92747 +sg25267 +g27 +sa(dp92748 +g25268 +S'Woman with a Ruff in Profile' +p92749 +sg25270 +S'Wenceslaus Hollar' +p92750 +sg25273 +S'etching' +p92751 +sg25275 +S'1643' +p92752 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db02.jpg' +p92753 +sg25267 +g27 +sa(dp92754 +g25268 +S'Hans von Zurch, Goldsmith' +p92755 +sg25270 +S'Artist Information (' +p92756 +sg25273 +S'(artist after)' +p92757 +sg25275 +S'\n' +p92758 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8a1.jpg' +p92759 +sg25267 +g27 +sa(dp92760 +g25268 +S'The Canal' +p92761 +sg25270 +S'Artist Information (' +p92762 +sg25273 +S'(artist after)' +p92763 +sg25275 +S'\n' +p92764 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db30.jpg' +p92765 +sg25267 +g27 +sa(dp92766 +g25268 +S'Margaret Lemon' +p92767 +sg25270 +S'Artist Information (' +p92768 +sg25273 +S'(artist after)' +p92769 +sg25275 +S'\n' +p92770 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db2e.jpg' +p92771 +sg25267 +g27 +sa(dp92772 +g25268 +S'Henry van der Borcht, Painter' +p92773 +sg25270 +S'Artist Information (' +p92774 +sg25273 +S'(artist after)' +p92775 +sg25275 +S'\n' +p92776 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8a3.jpg' +p92777 +sg25267 +g27 +sa(dp92778 +g25268 +S'The Morning Bell' +p92779 +sg25270 +S'Artist Information (' +p92780 +sg25273 +S'American, 1836 - 1910' +p92781 +sg25275 +S'(artist after)' +p92782 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fac5.jpg' +p92783 +sg25267 +g27 +sa(dp92784 +g25268 +S'Seesaw - Gloucester, Massachusetts' +p92785 +sg25270 +S'Artist Information (' +p92786 +sg25273 +S'American, 1836 - 1910' +p92787 +sg25275 +S'(artist after)' +p92788 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fac7.jpg' +p92789 +sg25267 +g27 +sa(dp92790 +g25268 +S'Making Hay' +p92791 +sg25270 +S'Artist Information (' +p92792 +sg25273 +S'American, 1836 - 1910' +p92793 +sg25275 +S'(artist after)' +p92794 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fabb.jpg' +p92795 +sg25267 +g27 +sa(dp92796 +g25268 +S'On the Beach - Two are Company, Three are None' +p92797 +sg25270 +S'Artist Information (' +p92798 +sg25273 +S'American, 1836 - 1910' +p92799 +sg25275 +S'(artist after)' +p92800 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fabc.jpg' +p92801 +sg25267 +g27 +sa(dp92802 +g25268 +S'Saint Agnes' +p92803 +sg25270 +S'Martin Schongauer' +p92804 +sg25273 +S'engraving' +p92805 +sg25275 +S'c. 1475' +p92806 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a485.jpg' +p92807 +sg25267 +g27 +sa(dp92808 +g25268 +S'Ship-Building, Gloucester Harbor' +p92809 +sg25270 +S'Artist Information (' +p92810 +sg25273 +S'American, 1836 - 1910' +p92811 +sg25275 +S'(artist after)' +p92812 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fab5.jpg' +p92813 +sg25267 +g27 +sa(dp92814 +g25268 +S'The Nooning' +p92815 +sg25270 +S'Artist Information (' +p92816 +sg25273 +S'American, 1836 - 1910' +p92817 +sg25275 +S'(artist after)' +p92818 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fab8.jpg' +p92819 +sg25267 +g27 +sa(dp92820 +g25268 +S'Spring Farm Work - Grafting' +p92821 +sg25270 +S'Artist Information (' +p92822 +sg25273 +S'American, 1836 - 1910' +p92823 +sg25275 +S'(artist after)' +p92824 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fab4.jpg' +p92825 +sg25267 +g27 +sa(dp92826 +g25268 +S'New England Factory Life - Bell-Time' +p92827 +sg25270 +S'Artist Information (' +p92828 +sg25273 +S'American, 1836 - 1910' +p92829 +sg25275 +S'(artist after)' +p92830 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005edb.jpg' +p92831 +sg25267 +g27 +sa(dp92832 +g25268 +S'Fire Works on the Night of the Fourth of July' +p92833 +sg25270 +S'Artist Information (' +p92834 +sg25273 +S'American, 1836 - 1910' +p92835 +sg25275 +S'(artist after)' +p92836 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000faaa.jpg' +p92837 +sg25267 +g27 +sa(dp92838 +g25268 +S'The Dinner Horn' +p92839 +sg25270 +S'Artist Information (' +p92840 +sg25273 +S'American, 1836 - 1910' +p92841 +sg25275 +S'(artist after)' +p92842 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000abe.jpg' +p92843 +sg25267 +g27 +sa(dp92844 +g25268 +S'Louise de Coligny' +p92845 +sg25270 +S'Jacobus Houbraken' +p92846 +sg25273 +S'etching and engraving' +p92847 +sg25275 +S'unknown date\n' +p92848 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d687.jpg' +p92849 +sg25267 +g27 +sa(dp92850 +g25268 +S'View of the Village of Maaslins (Vue de la ville de Maaslins (Hollande))' +p92851 +sg25270 +S'Johan Barthold Jongkind' +p92852 +sg25273 +S'etching' +p92853 +sg25275 +S'1862' +p92854 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d6a0.jpg' +p92855 +sg25267 +g27 +sa(dp92856 +g25268 +S'Pavlowa Gavotte' +p92857 +sg25270 +S'Troy Kinney' +p92858 +sg25273 +S'drypoint' +p92859 +sg25275 +S'unknown date\n' +p92860 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00106/a00106da.jpg' +p92861 +sg25267 +g27 +sa(dp92862 +g25268 +S'Youth' +p92863 +sg25270 +S'Troy Kinney' +p92864 +sg25273 +S'drypoint' +p92865 +sg25275 +S'unknown date\n' +p92866 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00106/a00106d8.jpg' +p92867 +sg25267 +g27 +sa(dp92868 +g25268 +S'Saint Barbara' +p92869 +sg25270 +S'Martin Schongauer' +p92870 +sg25273 +S'engraving' +p92871 +sg25275 +S'c. 1480/1490' +p92872 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a48e.jpg' +p92873 +sg25267 +g27 +sa(dp92874 +g25268 +S'April' +p92875 +sg25270 +S'Troy Kinney' +p92876 +sg25273 +S'drypoint' +p92877 +sg25275 +S'unknown date\n' +p92878 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00106/a00106d9.jpg' +p92879 +sg25267 +g27 +sa(dp92880 +g25273 +S'etching' +p92881 +sg25267 +g27 +sg25275 +S'1915' +p92882 +sg25268 +S'The New Talmud' +p92883 +sg25270 +S'William Auerbach-Levy' +p92884 +sa(dp92885 +g25273 +S'etching' +p92886 +sg25267 +g27 +sg25275 +S'unknown date\n' +p92887 +sg25268 +S'Timothy Cole, No.2' +p92888 +sg25270 +S'William Auerbach-Levy' +p92889 +sa(dp92890 +g25273 +S'drypoint' +p92891 +sg25267 +g27 +sg25275 +S'unknown date\n' +p92892 +sg25268 +S'Cecco' +p92893 +sg25270 +S'William Auerbach-Levy' +p92894 +sa(dp92895 +g25273 +S'etching' +p92896 +sg25267 +g27 +sg25275 +S'unknown date\n' +p92897 +sg25268 +S'Malachi' +p92898 +sg25270 +S'William Auerbach-Levy' +p92899 +sa(dp92900 +g25273 +S'etching' +p92901 +sg25267 +g27 +sg25275 +S'1918' +p92902 +sg25268 +S'Clothes Seller' +p92903 +sg25270 +S'William Auerbach-Levy' +p92904 +sa(dp92905 +g25268 +S'Stoops in Snow' +p92906 +sg25270 +S'Martin Lewis' +p92907 +sg25273 +S'drypoint and sand ground on laid paper' +p92908 +sg25275 +S'1930' +p92909 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b05.jpg' +p92910 +sg25267 +g27 +sa(dp92911 +g25273 +S'drypoint and sand ground on wove paper' +p92912 +sg25267 +g27 +sg25275 +S'1932' +p92913 +sg25268 +S"Ha'nted" +p92914 +sg25270 +S'Martin Lewis' +p92915 +sa(dp92916 +g25273 +S'drypoint on laid paper' +p92917 +sg25267 +g27 +sg25275 +S'1929' +p92918 +sg25268 +S"Quarter of Nine - Saturday's Children" +p92919 +sg25270 +S'Martin Lewis' +p92920 +sa(dp92921 +g25273 +S'etching and (drypoint?)' +p92922 +sg25267 +g27 +sg25275 +S'1928' +p92923 +sg25268 +S'Apple Trees' +p92924 +sg25270 +S'Luigi Lucioni' +p92925 +sa(dp92926 +g25268 +S'Saint Catherine of Alexandria' +p92927 +sg25270 +S'Martin Schongauer' +p92928 +sg25273 +S'engraving' +p92929 +sg25275 +S'c. 1480/1490' +p92930 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a490.jpg' +p92931 +sg25267 +g27 +sa(dp92932 +g25273 +S'drypoint' +p92933 +sg25267 +g27 +sg25275 +S'1926' +p92934 +sg25268 +S'The Saut-Buckets' +p92935 +sg25270 +S'Ernest Stephen Lumsden' +p92936 +sa(dp92937 +g25273 +S'etching' +p92938 +sg25267 +g27 +sg25275 +S'1925' +p92939 +sg25268 +S'Molo' +p92940 +sg25270 +S'James McBey' +p92941 +sa(dp92942 +g25273 +S'drypoint' +p92943 +sg25267 +g27 +sg25275 +S'1920' +p92944 +sg25268 +S'Margot as Lopokova' +p92945 +sg25270 +S'James McBey' +p92946 +sa(dp92947 +g25273 +S'etching' +p92948 +sg25267 +g27 +sg25275 +S'1925' +p92949 +sg25268 +S'Hastings' +p92950 +sg25270 +S'James McBey' +p92951 +sa(dp92952 +g25273 +S'etching and drypoint' +p92953 +sg25267 +g27 +sg25275 +S'1918/1921' +p92954 +sg25268 +S'Hermon: Cavalry Moving on Damascus' +p92955 +sg25270 +S'James McBey' +p92956 +sa(dp92957 +g25273 +S'etching' +p92958 +sg25267 +g27 +sg25275 +S'1910' +p92959 +sg25268 +S'The Amstel' +p92960 +sg25270 +S'James McBey' +p92961 +sa(dp92962 +g25273 +S'etching' +p92963 +sg25267 +g27 +sg25275 +S'1922' +p92964 +sg25268 +S'Brightlingsea, No.2' +p92965 +sg25270 +S'James McBey' +p92966 +sa(dp92967 +g25273 +S'etching' +p92968 +sg25267 +g27 +sg25275 +S'1922/1923' +p92969 +sg25268 +S'Sunset at Cattawade' +p92970 +sg25270 +S'James McBey' +p92971 +sa(dp92972 +g25273 +S'etching' +p92973 +sg25267 +g27 +sg25275 +S'1922/1923' +p92974 +sg25268 +S'Gerona' +p92975 +sg25270 +S'James McBey' +p92976 +sa(dp92977 +g25273 +S'etching and drypoint' +p92978 +sg25267 +g27 +sg25275 +S'1917' +p92979 +sg25268 +S'Albert' +p92980 +sg25270 +S'James McBey' +p92981 +sa(dp92982 +g25268 +S'Saint Veronica' +p92983 +sg25270 +S'Martin Schongauer' +p92984 +sg25273 +S'engraving' +p92985 +sg25275 +S'c. 1480' +p92986 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a48f.jpg' +p92987 +sg25267 +g27 +sa(dp92988 +g25273 +S'etching' +p92989 +sg25267 +g27 +sg25275 +S'1908' +p92990 +sg25268 +S'The Fishmarket, Aberdeen' +p92991 +sg25270 +S'James McBey' +p92992 +sa(dp92993 +g25273 +S'etching' +p92994 +sg25267 +g27 +sg25275 +S'1904/1905' +p92995 +sg25268 +S'Plumstone Close' +p92996 +sg25270 +S'James McBey' +p92997 +sa(dp92998 +g25268 +S'Lauterbrunnen' +p92999 +sg25270 +S'Donald Shaw MacLaughlan' +p93000 +sg25273 +S'etching' +p93001 +sg25275 +S'unknown date\n' +p93002 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b1f.jpg' +p93003 +sg25267 +g27 +sa(dp93004 +g25268 +S"The Ca d'Oro" +p93005 +sg25270 +S'Donald Shaw MacLaughlan' +p93006 +sg25273 +S'etching' +p93007 +sg25275 +S'1922' +p93008 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00108/a00108cb.jpg' +p93009 +sg25267 +g27 +sa(dp93010 +g25268 +S'Venetian Noontide' +p93011 +sg25270 +S'Donald Shaw MacLaughlan' +p93012 +sg25273 +S'etching' +p93013 +sg25275 +S'probably 1916' +p93014 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00108/a00108c7.jpg' +p93015 +sg25267 +g27 +sa(dp93016 +g25268 +S'Gothic Night' +p93017 +sg25270 +S'Donald Shaw MacLaughlan' +p93018 +sg25273 +S'etching and drypoint' +p93019 +sg25275 +S'1926' +p93020 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00108/a00108d0.jpg' +p93021 +sg25267 +g27 +sa(dp93022 +g25268 +S'Rio delle Verona, Venice' +p93023 +sg25270 +S'Donald Shaw MacLaughlan' +p93024 +sg25273 +S'etching' +p93025 +sg25275 +S'1912' +p93026 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00108/a00108c9.jpg' +p93027 +sg25267 +g27 +sa(dp93028 +g25268 +S'Interior of Chartres' +p93029 +sg25270 +S'Donald Shaw MacLaughlan' +p93030 +sg25273 +S'etching and drypoint' +p93031 +sg25275 +S'1926' +p93032 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00108/a00108cd.jpg' +p93033 +sg25267 +g27 +sa(dp93034 +g25268 +S'The Rialto' +p93035 +sg25270 +S'Donald Shaw MacLaughlan' +p93036 +sg25273 +S'etching and drypoint' +p93037 +sg25275 +S'1926' +p93038 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00108/a00108cc.jpg' +p93039 +sg25267 +g27 +sa(dp93040 +g25268 +S'Towers and Gardens' +p93041 +sg25270 +S'Donald Shaw MacLaughlan' +p93042 +sg25273 +S'etching' +p93043 +sg25275 +S'1922' +p93044 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00108/a00108ce.jpg' +p93045 +sg25267 +g27 +sa(dp93046 +g25268 +S'The Angel of Saint Matthew' +p93047 +sg25270 +S'Martin Schongauer' +p93048 +sg25273 +S'engraving' +p93049 +sg25275 +S'c. 1490' +p93050 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a48b.jpg' +p93051 +sg25267 +g27 +sa(dp93052 +g25268 +S'Sunlight and Shadows, No. 3' +p93053 +sg25270 +S'Donald Shaw MacLaughlan' +p93054 +sg25273 +S'etching' +p93055 +sg25275 +S'1913' +p93056 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00108/a00108cf.jpg' +p93057 +sg25267 +g27 +sa(dp93058 +g25268 +S'Sussex Landscape' +p93059 +sg25270 +S'Donald Shaw MacLaughlan' +p93060 +sg25273 +S'etching' +p93061 +sg25275 +S'1920' +p93062 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00108/a00108c6.jpg' +p93063 +sg25267 +g27 +sa(dp93064 +g25268 +S'Evening Light' +p93065 +sg25270 +S'Donald Shaw MacLaughlan' +p93066 +sg25273 +S'etching' +p93067 +sg25275 +S'1913' +p93068 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b20.jpg' +p93069 +sg25267 +g27 +sa(dp93070 +g25268 +S'St. Ouen, Rouen' +p93071 +sg25270 +S'Donald Shaw MacLaughlan' +p93072 +sg25273 +S'etching' +p93073 +sg25275 +S'1903/1908' +p93074 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f6/a000f6fa.jpg' +p93075 +sg25267 +g27 +sa(dp93076 +g25268 +S'River Song, No. 8' +p93077 +sg25270 +S'Donald Shaw MacLaughlan' +p93078 +sg25273 +S'etching' +p93079 +sg25275 +S'1918' +p93080 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00108/a00108ca.jpg' +p93081 +sg25267 +g27 +sa(dp93082 +g25268 +S'Sundown' +p93083 +sg25270 +S'Peter Marcus' +p93084 +sg25273 +S'etching' +p93085 +sg25275 +S'unknown date\n' +p93086 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00108/a00108e1.jpg' +p93087 +sg25267 +g27 +sa(dp93088 +g25268 +S'Dawn' +p93089 +sg25270 +S'Peter Marcus' +p93090 +sg25273 +S'etching' +p93091 +sg25275 +S'unknown date\n' +p93092 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00108/a00108e0.jpg' +p93093 +sg25267 +g27 +sa(dp93094 +g25268 +S'A Box at the Metropolitan' +p93095 +sg25270 +S'Reginald Marsh' +p93096 +sg25273 +S'etching with some engraving' +p93097 +sg25275 +S'1934' +p93098 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b27.jpg' +p93099 +sg25267 +g27 +sa(dp93100 +g25268 +S"St. Paul's, Broadway, N.Y." +p93101 +sg25270 +S'Charles Frederick William Mielatz' +p93102 +sg25273 +S'etching' +p93103 +sg25275 +S'1906' +p93104 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000faf0.jpg' +p93105 +sg25267 +g27 +sa(dp93106 +g25268 +S'Cherry Street, N.Y.' +p93107 +sg25270 +S'Charles Frederick William Mielatz' +p93108 +sg25273 +S'etching and aquatint' +p93109 +sg25275 +S'1904' +p93110 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b2c.jpg' +p93111 +sg25267 +g27 +sa(dp93112 +g25268 +S'Christ on the Cross' +p93113 +sg25270 +S'German 15th Century' +p93114 +sg25273 +S'Schreiber, no. 379' +p93115 +sg25275 +S'\nwoodcut' +p93116 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a659.jpg' +p93117 +sg25267 +g27 +sa(dp93118 +g25268 +S'Rainy Day, Broadway' +p93119 +sg25270 +S'Charles Frederick William Mielatz' +p93120 +sg25273 +S'etching and aquatint' +p93121 +sg25275 +S'probably 1890' +p93122 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000faf5.jpg' +p93123 +sg25267 +g27 +sa(dp93124 +g25268 +S'Bowling Green' +p93125 +sg25270 +S'Charles Frederick William Mielatz' +p93126 +sg25273 +S'color etching' +p93127 +sg25275 +S'1910' +p93128 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b2d.jpg' +p93129 +sg25267 +g27 +sa(dp93130 +g25268 +S"The Door, St. Bartholomew's" +p93131 +sg25270 +S'Charles Frederick William Mielatz' +p93132 +sg25273 +S'color etching' +p93133 +sg25275 +S'1909' +p93134 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b2e.jpg' +p93135 +sg25267 +g27 +sa(dp93136 +g25268 +S'Castle Garden' +p93137 +sg25270 +S'Charles Frederick William Mielatz' +p93138 +sg25273 +S'etching and aquatint' +p93139 +sg25275 +S'unknown date\n' +p93140 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000faef.jpg' +p93141 +sg25267 +g27 +sa(dp93142 +g25268 +S'Porch, Old Custom House, Wall Street' +p93143 +sg25270 +S'Charles Frederick William Mielatz' +p93144 +sg25273 +S'etching and aquatint' +p93145 +sg25275 +S'1905' +p93146 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fafb.jpg' +p93147 +sg25267 +g27 +sa(dp93148 +g25268 +S'Bit of Central Park' +p93149 +sg25270 +S'Charles Frederick William Mielatz' +p93150 +sg25273 +S'etching and aquatint' +p93151 +sg25275 +S'probably 1918' +p93152 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000faf4.jpg' +p93153 +sg25267 +g27 +sa(dp93154 +g25268 +S'Catherine Market' +p93155 +sg25270 +S'Charles Frederick William Mielatz' +p93156 +sg25273 +S'etching and aquatint' +p93157 +sg25275 +S'1903/1907' +p93158 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000faf3.jpg' +p93159 +sg25267 +g27 +sa(dp93160 +g25268 +S'New York from the Harbor' +p93161 +sg25270 +S'Charles Frederick William Mielatz' +p93162 +sg25273 +S'etching' +p93163 +sg25275 +S'1905' +p93164 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fafa.jpg' +p93165 +sg25267 +g27 +sa(dp93166 +g25268 +S"Ericsson's House, Beach Street" +p93167 +sg25270 +S'Charles Frederick William Mielatz' +p93168 +sg25273 +S'color etching' +p93169 +sg25275 +S'1908' +p93170 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000faf2.jpg' +p93171 +sg25267 +g27 +sa(dp93172 +g25268 +S'Morning, Canonicut Island' +p93173 +sg25270 +S'Charles Frederick William Mielatz' +p93174 +sg25273 +S'etching' +p93175 +sg25275 +S'1908' +p93176 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000faf1.jpg' +p93177 +sg25267 +g27 +sa(dp93178 +g25268 +S'The Lion of Saint Mark' +p93179 +sg25270 +S'Martin Schongauer' +p93180 +sg25273 +S'engraving' +p93181 +sg25275 +S'c. 1490' +p93182 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a48c.jpg' +p93183 +sg25267 +g27 +sa(dp93184 +g25268 +S'Chelsea Docks, Loading the Ship' +p93185 +sg25270 +S'Charles Frederick William Mielatz' +p93186 +sg25273 +S'etching' +p93187 +sg25275 +S'1907' +p93188 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000faf9.jpg' +p93189 +sg25267 +g27 +sa(dp93190 +g25273 +S'etching' +p93191 +sg25267 +g27 +sg25275 +S'unknown date\n' +p93192 +sg25268 +S'Bird Houses, Southampton' +p93193 +sg25270 +S'Zella De Milhau' +p93194 +sa(dp93195 +g25268 +S'En Route' +p93196 +sg25270 +S'Jerome Myers' +p93197 +sg25273 +S'color etching' +p93198 +sg25275 +S'unknown date\n' +p93199 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f7/a000f74a.jpg' +p93200 +sg25267 +g27 +sa(dp93201 +g25268 +S'Charles-Maurice Le Tellier' +p93202 +sg25270 +S'Robert Nanteuil' +p93203 +sg25273 +S'engraving' +p93204 +sg25275 +S'1663' +p93205 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b76.jpg' +p93206 +sg25267 +g27 +sa(dp93207 +g25268 +S'Jean Loret' +p93208 +sg25270 +S'Robert Nanteuil' +p93209 +sg25273 +S'engraving' +p93210 +sg25275 +S'1658' +p93211 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b7a.jpg' +p93212 +sg25267 +g27 +sa(dp93213 +g25273 +S'etching and drypoint on wove paper' +p93214 +sg25267 +g27 +sg25275 +S'1922' +p93215 +sg25268 +S'Al Bordo del Campo' +p93216 +sg25270 +S'Roi Partridge' +p93217 +sa(dp93218 +g25268 +S"The Doge's Palace" +p93219 +sg25270 +S'Joseph Pennell' +p93220 +sg25273 +S'etching' +p93221 +sg25275 +S'1883' +p93222 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b44.jpg' +p93223 +sg25267 +g27 +sa(dp93224 +g25268 +S'House Where Whistler Died' +p93225 +sg25270 +S'Joseph Pennell' +p93226 +sg25273 +S'etching' +p93227 +sg25275 +S'1904' +p93228 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b62.jpg' +p93229 +sg25267 +g27 +sa(dp93230 +g25268 +S'New Oxford Street, London' +p93231 +sg25270 +S'Joseph Pennell' +p93232 +sg25273 +S'etching' +p93233 +sg25275 +S'1893' +p93234 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f7/a000f7ae.jpg' +p93235 +sg25267 +g27 +sa(dp93236 +g25268 +S'Tower Bridge, Evening' +p93237 +sg25270 +S'Joseph Pennell' +p93238 +sg25273 +S'etching' +p93239 +sg25275 +S'1905' +p93240 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b93.jpg' +p93241 +sg25267 +g27 +sa(dp93242 +g25268 +S'The Tobacco Shop' +p93243 +sg25270 +S'Joseph Pennell' +p93244 +sg25273 +S'etching' +p93245 +sg25275 +S'1903' +p93246 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b57.jpg' +p93247 +sg25267 +g27 +sa(dp93248 +g25268 +S'The Yorkshire Terrier' +p93249 +sg25270 +S'Joseph Pennell' +p93250 +sg25273 +S'etching' +p93251 +sg25275 +S'1903' +p93252 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b56.jpg' +p93253 +sg25267 +g27 +sa(dp93254 +g25268 +S"The Founder's Tomb, Church of Saint Bartholomew the Great" +p93255 +sg25270 +S'Joseph Pennell' +p93256 +sg25273 +S'etching' +p93257 +sg25275 +S'1903' +p93258 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b58.jpg' +p93259 +sg25267 +g27 +sa(dp93260 +g25268 +S'London Bridge Stairs' +p93261 +sg25270 +S'Joseph Pennell' +p93262 +sg25273 +S'etching' +p93263 +sg25275 +S'1903' +p93264 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b59.jpg' +p93265 +sg25267 +g27 +sa(dp93266 +g25268 +S"St. Dunstan's, Fleet Street" +p93267 +sg25270 +S'Joseph Pennell' +p93268 +sg25273 +S'etching' +p93269 +sg25275 +S'1903' +p93270 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b55.jpg' +p93271 +sg25267 +g27 +sa(dp93272 +g25268 +S"West Door, St. Paul's" +p93273 +sg25270 +S'Joseph Pennell' +p93274 +sg25273 +S'etching' +p93275 +sg25275 +S'1903' +p93276 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b53.jpg' +p93277 +sg25267 +g27 +sa(dp93278 +g25268 +S'Whitehall Court' +p93279 +sg25270 +S'Joseph Pennell' +p93280 +sg25273 +S'etching' +p93281 +sg25275 +S'1903' +p93282 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b65.jpg' +p93283 +sg25267 +g27 +sa(dp93284 +g25268 +S'No. 230 Strand' +p93285 +sg25270 +S'Joseph Pennell' +p93286 +sg25273 +S'etching' +p93287 +sg25275 +S'1903' +p93288 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b6b.jpg' +p93289 +sg25267 +g27 +sa(dp93290 +g25268 +S'Magnificent Kensington' +p93291 +sg25270 +S'Joseph Pennell' +p93292 +sg25273 +S'etching' +p93293 +sg25275 +S'1904' +p93294 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b6a.jpg' +p93295 +sg25267 +g27 +sa(dp93296 +g25268 +S'Great College Street, Westminster' +p93297 +sg25270 +S'Joseph Pennell' +p93298 +sg25273 +S'etching' +p93299 +sg25275 +S'1904' +p93300 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b61.jpg' +p93301 +sg25267 +g27 +sa(dp93302 +g25268 +S'Fourth Wise Virgin' +p93303 +sg25270 +S'Martin Schongauer' +p93304 +sg25273 +S'engraving' +p93305 +sg25275 +S'c. 1490' +p93306 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a48a.jpg' +p93307 +sg25267 +g27 +sa(dp93308 +g25268 +S"Bridge of San Juan D'Los Reyos, Toledo" +p93309 +sg25270 +S'Joseph Pennell' +p93310 +sg25273 +S'etching' +p93311 +sg25275 +S'1904' +p93312 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b63.jpg' +p93313 +sg25267 +g27 +sa(dp93314 +g25268 +S'Arch of Bridge of Alcantara' +p93315 +sg25270 +S'Joseph Pennell' +p93316 +sg25273 +S'etching' +p93317 +sg25275 +S'1904' +p93318 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b5e.jpg' +p93319 +sg25267 +g27 +sa(dp93320 +g25268 +S'Puerta Visagara, Gate of Madrid, Toledo' +p93321 +sg25270 +S'Joseph Pennell' +p93322 +sg25273 +S'etching' +p93323 +sg25275 +S'1904' +p93324 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b66.jpg' +p93325 +sg25267 +g27 +sa(dp93326 +g25268 +S'Lower Broadway' +p93327 +sg25270 +S'Joseph Pennell' +p93328 +sg25273 +S'etching' +p93329 +sg25275 +S'1904' +p93330 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b5a.jpg' +p93331 +sg25267 +g27 +sa(dp93332 +g25268 +S'The Stock Exchange' +p93333 +sg25270 +S'Joseph Pennell' +p93334 +sg25273 +S'etching' +p93335 +sg25275 +S'1904' +p93336 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b5c.jpg' +p93337 +sg25267 +g27 +sa(dp93338 +g25268 +S'The Golden Cornice, I' +p93339 +sg25270 +S'Joseph Pennell' +p93340 +sg25273 +S'etching' +p93341 +sg25275 +S'1904' +p93342 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b69.jpg' +p93343 +sg25267 +g27 +sa(dp93344 +g25268 +S'Forty-Second Street' +p93345 +sg25270 +S'Joseph Pennell' +p93346 +sg25273 +S'etching' +p93347 +sg25275 +S'1904' +p93348 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b5d.jpg' +p93349 +sg25267 +g27 +sa(dp93350 +g25268 +S'The Portico, British Museum' +p93351 +sg25270 +S'Joseph Pennell' +p93352 +sg25273 +S'etching' +p93353 +sg25275 +S'1905' +p93354 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b67.jpg' +p93355 +sg25267 +g27 +sa(dp93356 +g25268 +S"St. Paul's, Fleet Street, London" +p93357 +sg25270 +S'Joseph Pennell' +p93358 +sg25273 +S'etching' +p93359 +sg25275 +S'1905' +p93360 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b68.jpg' +p93361 +sg25267 +g27 +sa(dp93362 +g25268 +S'The Crystal Palace' +p93363 +sg25270 +S'Joseph Pennell' +p93364 +sg25273 +S'etching' +p93365 +sg25275 +S'1905' +p93366 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b95.jpg' +p93367 +sg25267 +g27 +sa(dp93368 +g25268 +S'Second Foolish Virgin' +p93369 +sg25270 +S'Martin Schongauer' +p93370 +sg25273 +S'engraving' +p93371 +sg25275 +S'c. 1490' +p93372 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a488.jpg' +p93373 +sg25267 +g27 +sa(dp93374 +g25268 +S'Waterloo Bridge and Somerset House' +p93375 +sg25270 +S'Joseph Pennell' +p93376 +sg25273 +S'etching' +p93377 +sg25275 +S'1905' +p93378 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b9b.jpg' +p93379 +sg25267 +g27 +sa(dp93380 +g25268 +S'The Marble Arch' +p93381 +sg25270 +S'Joseph Pennell' +p93382 +sg25273 +S'etching' +p93383 +sg25275 +S'1905' +p93384 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b94.jpg' +p93385 +sg25267 +g27 +sa(dp93386 +g25268 +S'Sunlight Soap' +p93387 +sg25270 +S'Joseph Pennell' +p93388 +sg25273 +S'etching' +p93389 +sg25275 +S'1905' +p93390 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b9a.jpg' +p93391 +sg25267 +g27 +sa(dp93392 +g25268 +S'The Elinor Cross, in Front of Charing Cross Railway Station' +p93393 +sg25270 +S'Joseph Pennell' +p93394 +sg25273 +S'etching' +p93395 +sg25275 +S'1906' +p93396 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b92.jpg' +p93397 +sg25267 +g27 +sa(dp93398 +g25268 +S'The Institute, Piccadilly' +p93399 +sg25270 +S'Joseph Pennell' +p93400 +sg25273 +S'etching' +p93401 +sg25275 +S'1906' +p93402 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b97.jpg' +p93403 +sg25267 +g27 +sa(dp93404 +g25268 +S'Big Tree, Cheyne Walk' +p93405 +sg25270 +S'Joseph Pennell' +p93406 +sg25273 +S'etching' +p93407 +sg25275 +S'1906' +p93408 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b9c.jpg' +p93409 +sg25267 +g27 +sa(dp93410 +g25268 +S'Cowley Street, Westminster' +p93411 +sg25270 +S'Joseph Pennell' +p93412 +sg25273 +S'etching' +p93413 +sg25275 +S'1906' +p93414 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b9d.jpg' +p93415 +sg25267 +g27 +sa(dp93416 +g25268 +S'Chelsea, No.II' +p93417 +sg25270 +S'Joseph Pennell' +p93418 +sg25273 +S'etching' +p93419 +sg25275 +S'1886' +p93420 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b41.jpg' +p93421 +sg25267 +g27 +sa(dp93422 +g25268 +S"Clifford's Inn Hall" +p93423 +sg25270 +S'Joseph Pennell' +p93424 +sg25273 +S'etching' +p93425 +sg25275 +S'1907' +p93426 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b9e.jpg' +p93427 +sg25267 +g27 +sa(dp93428 +g25268 +S"St. Bartholomew's Gate" +p93429 +sg25270 +S'Joseph Pennell' +p93430 +sg25273 +S'etching' +p93431 +sg25275 +S'1907' +p93432 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010ba0.jpg' +p93433 +sg25267 +g27 +sa(dp93434 +g25268 +S'Apprentices Fighting' +p93435 +sg25270 +S'Martin Schongauer' +p93436 +sg25273 +S'engraving' +p93437 +sg25275 +S'probably c. 1480' +p93438 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a491.jpg' +p93439 +sg25267 +g27 +sa(dp93440 +g25268 +S'San Maclou, Rouen' +p93441 +sg25270 +S'Joseph Pennell' +p93442 +sg25273 +S'etching' +p93443 +sg25275 +S'1907' +p93444 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b98.jpg' +p93445 +sg25267 +g27 +sa(dp93446 +g25268 +S'Porch of San Maclou, Rouen' +p93447 +sg25270 +S'Joseph Pennell' +p93448 +sg25273 +S'etching' +p93449 +sg25275 +S'1907' +p93450 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b9f.jpg' +p93451 +sg25267 +g27 +sa(dp93452 +g25268 +S'Flower Market and Butter Tower, Rouen' +p93453 +sg25270 +S'Joseph Pennell' +p93454 +sg25273 +S'etching' +p93455 +sg25275 +S'1907' +p93456 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b96.jpg' +p93457 +sg25267 +g27 +sa(dp93458 +g25268 +S'Rouen, from Bon Secours' +p93459 +sg25270 +S'Joseph Pennell' +p93460 +sg25273 +S'etching' +p93461 +sg25275 +S'1907' +p93462 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b91.jpg' +p93463 +sg25267 +g27 +sa(dp93464 +g25268 +S'Grosse Horloge, Rouen' +p93465 +sg25270 +S'Joseph Pennell' +p93466 +sg25273 +S'etching' +p93467 +sg25275 +S'1907' +p93468 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010ba1.jpg' +p93469 +sg25267 +g27 +sa(dp93470 +g25268 +S'The West Front, Rouen Cathedral' +p93471 +sg25270 +S'Joseph Pennell' +p93472 +sg25273 +S'etching' +p93473 +sg25275 +S'1907' +p93474 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010ba6.jpg' +p93475 +sg25267 +g27 +sa(dp93476 +g25268 +S"Towers of the Bishop's Palace, Beauvais" +p93477 +sg25270 +S'Joseph Pennell' +p93478 +sg25273 +S'etching' +p93479 +sg25275 +S'1907' +p93480 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010ba5.jpg' +p93481 +sg25267 +g27 +sa(dp93482 +g25268 +S'La Place, Beauvais' +p93483 +sg25270 +S'Joseph Pennell' +p93484 +sg25273 +S'etching' +p93485 +sg25275 +S'1907' +p93486 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010ba3.jpg' +p93487 +sg25267 +g27 +sa(dp93488 +g25268 +S"Wren's City" +p93489 +sg25270 +S'Joseph Pennell' +p93490 +sg25273 +S'mezzotint on laid paper' +p93491 +sg25275 +S'1909' +p93492 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b5e.jpg' +p93493 +sg25267 +g27 +sa(dp93494 +g25268 +S'Under the Bridges, Chicago' +p93495 +sg25270 +S'Joseph Pennell' +p93496 +sg25273 +S'etching' +p93497 +sg25275 +S'1910' +p93498 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010baa.jpg' +p93499 +sg25267 +g27 +sa(dp93500 +g25268 +S'Peasant Family Going to Market' +p93501 +sg25270 +S'Martin Schongauer' +p93502 +sg25273 +S'engraving on laid paper' +p93503 +sg25275 +S'c. 1470/1475' +p93504 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c20.jpg' +p93505 +sg25267 +g27 +sa(dp93506 +g25268 +S'The Brussels Canal, A Modern Hobbema' +p93507 +sg25270 +S'Joseph Pennell' +p93508 +sg25273 +S'etching' +p93509 +sg25275 +S'1910' +p93510 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bab.jpg' +p93511 +sg25267 +g27 +sa(dp93512 +g25268 +S'The Avenue, Valenciennes' +p93513 +sg25270 +S'Joseph Pennell' +p93514 +sg25273 +S'etching' +p93515 +sg25275 +S'1910' +p93516 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010ba8.jpg' +p93517 +sg25267 +g27 +sa(dp93518 +g25268 +S'Mouth of the Mine, Ruhrort near Oberhausen' +p93519 +sg25270 +S'Joseph Pennell' +p93520 +sg25273 +S'etching' +p93521 +sg25275 +S'1910' +p93522 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bb6.jpg' +p93523 +sg25267 +g27 +sa(dp93524 +g25268 +S'Cranes at Duisburg' +p93525 +sg25270 +S'Joseph Pennell' +p93526 +sg25273 +S'etching' +p93527 +sg25275 +S'1910' +p93528 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bb5.jpg' +p93529 +sg25267 +g27 +sa(dp93530 +g25268 +S'Rebuilding the Campanile, Venice, No.I' +p93531 +sg25270 +S'Joseph Pennell' +p93532 +sg25273 +S'etching' +p93533 +sg25275 +S'1911' +p93534 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bae.jpg' +p93535 +sg25267 +g27 +sa(dp93536 +g25268 +S'Rebuilding the Campanile, Venice, No.II' +p93537 +sg25270 +S'Joseph Pennell' +p93538 +sg25273 +S'etching' +p93539 +sg25275 +S'1911' +p93540 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bb4.jpg' +p93541 +sg25267 +g27 +sa(dp93542 +g25268 +S'Golden Cornice, No.II' +p93543 +sg25270 +S'Joseph Pennell' +p93544 +sg25273 +S'etching' +p93545 +sg25275 +S'1915' +p93546 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bb8.jpg' +p93547 +sg25267 +g27 +sa(dp93548 +g25268 +S'Sunset, from Williamsburg Bridge' +p93549 +sg25270 +S'Joseph Pennell' +p93550 +sg25273 +S'etching' +p93551 +sg25275 +S'1915' +p93552 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bb7.jpg' +p93553 +sg25267 +g27 +sa(dp93554 +g25268 +S'The Woolworth Building' +p93555 +sg25270 +S'Joseph Pennell' +p93556 +sg25273 +S'etching' +p93557 +sg25275 +S'1915' +p93558 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bb2.jpg' +p93559 +sg25267 +g27 +sa(dp93560 +g25268 +S'The Ferry House' +p93561 +sg25270 +S'Joseph Pennell' +p93562 +sg25273 +S'etching' +p93563 +sg25275 +S'1919' +p93564 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bb0.jpg' +p93565 +sg25267 +g27 +sa(dp93566 +g25268 +S'Family of Pigs' +p93567 +sg25270 +S'Martin Schongauer' +p93568 +sg25273 +S'engraving' +p93569 +sg25275 +S'c. 1480/1490' +p93570 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000fa1.jpg' +p93571 +sg25267 +g27 +sa(dp93572 +g25268 +S'The Approach to the Grand Central, New York' +p93573 +sg25270 +S'Joseph Pennell' +p93574 +sg25273 +S'etching' +p93575 +sg25275 +S'1919' +p93576 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bbf.jpg' +p93577 +sg25267 +g27 +sa(dp93578 +g25268 +S'Concourse, Grand Central, New York' +p93579 +sg25270 +S'Joseph Pennell' +p93580 +sg25273 +S'etching' +p93581 +sg25275 +S'1919' +p93582 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bc0.jpg' +p93583 +sg25267 +g27 +sa(dp93584 +g25268 +S'Within the Ferry, Cortlandt Street, New York' +p93585 +sg25270 +S'Joseph Pennell' +p93586 +sg25273 +S'etching' +p93587 +sg25275 +S'1919' +p93588 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bc1.jpg' +p93589 +sg25267 +g27 +sa(dp93590 +g25268 +S'The Marble Hall, Pennsylvania Station, New York' +p93591 +sg25270 +S'Joseph Pennell' +p93592 +sg25273 +S'etching' +p93593 +sg25275 +S'1919' +p93594 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bc2.jpg' +p93595 +sg25267 +g27 +sa(dp93596 +g25268 +S'The City Bridge, St. Louis' +p93597 +sg25270 +S'Joseph Pennell' +p93598 +sg25273 +S'etching' +p93599 +sg25275 +S'1919' +p93600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bc3.jpg' +p93601 +sg25267 +g27 +sa(dp93602 +g25268 +S'The Viaduct, D., L. & W. at Nicholson, Pa.' +p93603 +sg25270 +S'Joseph Pennell' +p93604 +sg25273 +S'etching' +p93605 +sg25275 +S'1919' +p93606 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bc4.jpg' +p93607 +sg25267 +g27 +sa(dp93608 +g25268 +S'Fourth Street, Meeting House, Philadelphia' +p93609 +sg25270 +S'Joseph Pennell' +p93610 +sg25273 +S'etching' +p93611 +sg25275 +S'1920' +p93612 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bb9.jpg' +p93613 +sg25267 +g27 +sa(dp93614 +g25268 +S'Second Street Market, Philadelphia' +p93615 +sg25270 +S'Joseph Pennell' +p93616 +sg25273 +S'etching' +p93617 +sg25275 +S'1920' +p93618 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bba.jpg' +p93619 +sg25267 +g27 +sa(dp93620 +g25268 +S'The Bridges, from Brooklyn' +p93621 +sg25270 +S'Joseph Pennell' +p93622 +sg25273 +S'etching' +p93623 +sg25275 +S'1921' +p93624 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bbc.jpg' +p93625 +sg25267 +g27 +sa(dp93626 +g25268 +S'Columbia Heights, from Fulton Ferry' +p93627 +sg25270 +S'Joseph Pennell' +p93628 +sg25273 +S'etching' +p93629 +sg25275 +S'1924' +p93630 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bbd.jpg' +p93631 +sg25267 +g27 +sa(dp93632 +g25268 +S'Shield with Lion, Held by Angel' +p93633 +sg25270 +S'Martin Schongauer' +p93634 +sg25273 +S'engraving' +p93635 +sg25275 +S'c. 1480/1490' +p93636 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a496.jpg' +p93637 +sg25267 +g27 +sa(dp93638 +g25268 +S'Caissons on Vesey Street' +p93639 +sg25270 +S'Joseph Pennell' +p93640 +sg25273 +S'etching' +p93641 +sg25275 +S'1924' +p93642 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b5f.jpg' +p93643 +sg25267 +g27 +sa(dp93644 +g25268 +S'High Bridge' +p93645 +sg25270 +S'Joseph Pennell' +p93646 +sg25273 +S'graphite and colored crayons on brown paper' +p93647 +sg25275 +S'unknown date\n' +p93648 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ea/a000ea83.jpg' +p93649 +sg25267 +g27 +sa(dp93650 +g25273 +S'etching' +p93651 +sg25267 +g27 +sg25275 +S'unknown date\n' +p93652 +sg25268 +S'Joseph Pennell' +p93653 +sg25270 +S'Henry Ziegler' +p93654 +sa(dp93655 +g25273 +S'etching [2nd trial proof]' +p93656 +sg25267 +g27 +sg25275 +S'1910' +p93657 +sg25268 +S'London over Charing Cross Bridge' +p93658 +sg25270 +S'Joseph Pennell' +p93659 +sa(dp93660 +g25273 +S'etching [trial proof]' +p93661 +sg25267 +g27 +sg25275 +S'1910' +p93662 +sg25268 +S'Shot Tower between the Bridges' +p93663 +sg25270 +S'Joseph Pennell' +p93664 +sa(dp93665 +g25273 +S'drypoint' +p93666 +sg25267 +g27 +sg25275 +S'1928' +p93667 +sg25268 +S"Midsummer's Day" +p93668 +sg25270 +S'F.A. du Peyron' +p93669 +sa(dp93670 +g25268 +S'Williamsburg' +p93671 +sg25270 +S'Charles A. Platt' +p93672 +sg25273 +S'etching' +p93673 +sg25275 +S'1889' +p93674 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f2/a000f2a8.jpg' +p93675 +sg25267 +g27 +sa(dp93676 +g25273 +S'etching on wove paper' +p93677 +sg25267 +g27 +sg25275 +S'1931' +p93678 +sg25268 +S'The Two Towers' +p93679 +sg25270 +S'Chester B. Price' +p93680 +sa(dp93681 +g25268 +S'Suzanna Rose' +p93682 +sg25270 +S'Paul Adolphe Rajon' +p93683 +sg25273 +S'etching and drypoint' +p93684 +sg25275 +S'1875' +p93685 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dc0.jpg' +p93686 +sg25267 +g27 +sa(dp93687 +g25268 +S'Matthew Boulton, F.R.S.' +p93688 +sg25270 +S'Samuel William Reynolds I' +p93689 +sg25273 +S'mezzotint' +p93690 +sg25275 +S'unknown date\n' +p93691 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007730.jpg' +p93692 +sg25267 +g27 +sa(dp93693 +g25268 +S'Shield with Unicorn, Held by Woman' +p93694 +sg25270 +S'Martin Schongauer' +p93695 +sg25273 +S'engraving on laid paper' +p93696 +sg25275 +S'c. 1480/1490' +p93697 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a495.jpg' +p93698 +sg25267 +g27 +sa(dp93699 +g25273 +S'etching' +p93700 +sg25267 +g27 +sg25275 +S'1924/1925' +p93701 +sg25268 +S'Stones of Venice' +p93702 +sg25270 +S'Ernest David Roth' +p93703 +sa(dp93704 +g25273 +S'etching' +p93705 +sg25267 +g27 +sg25275 +S'1924' +p93706 +sg25268 +S'Fondamento Rielo, Venice' +p93707 +sg25270 +S'Ernest David Roth' +p93708 +sa(dp93709 +g25273 +S'etching' +p93710 +sg25267 +g27 +sg25275 +S'1914' +p93711 +sg25268 +S'Saint Pierre - Beauvais' +p93712 +sg25270 +S'Ernest David Roth' +p93713 +sa(dp93714 +g25268 +S'Preparing to Start' +p93715 +sg25270 +S'Thomas Rowlandson' +p93716 +sg25273 +S'hand-colored etching' +p93717 +sg25275 +S'probably 1811' +p93718 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077b0.jpg' +p93719 +sg25267 +g27 +sa(dp93720 +g25268 +S'Racing' +p93721 +sg25270 +S'Thomas Rowlandson' +p93722 +sg25273 +S'hand-colored etching' +p93723 +sg25275 +S'probably 1812' +p93724 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077ae.jpg' +p93725 +sg25267 +g27 +sa(dp93726 +g25268 +S'The Successful Fortune Hunter' +p93727 +sg25270 +S'Thomas Rowlandson' +p93728 +sg25273 +S'hand-colored etching' +p93729 +sg25275 +S'1812' +p93730 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000779a.jpg' +p93731 +sg25267 +g27 +sa(dp93732 +g25268 +S'Comfort in the Gout' +p93733 +sg25270 +S'Thomas Rowlandson' +p93734 +sg25273 +S'hand-colored etching' +p93735 +sg25275 +S'1785' +p93736 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007755.jpg' +p93737 +sg25267 +g27 +sa(dp93738 +g25273 +S'drypoint' +p93739 +sg25267 +g27 +sg25275 +S'unknown date\n' +p93740 +sg25268 +S'Porto Maggiore, Orvieto' +p93741 +sg25270 +S'Sir Henry Rushbury' +p93742 +sa(dp93743 +g25268 +S'Ecce Homo' +p93744 +sg25270 +S'Martin Schongauer' +p93745 +sg25273 +S'engraving' +p93746 +sg25275 +S'c. 1480' +p93747 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4a0.jpg' +p93748 +sg25267 +g27 +sa(dp93749 +g25268 +S'The Nativity' +p93750 +sg25270 +S'Martin Schongauer' +p93751 +sg25273 +S'engraving' +p93752 +sg25275 +S'c. 1470/1475' +p93753 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a482.jpg' +p93754 +sg25267 +g27 +sa(dp93755 +g25268 +S'Shield with Swan, Held by Woman' +p93756 +sg25270 +S'Martin Schongauer' +p93757 +sg25273 +S'engraving' +p93758 +sg25275 +S'c. 1480/1490' +p93759 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a494.jpg' +p93760 +sg25267 +g27 +sa(dp93761 +g25273 +S'etching' +p93762 +sg25267 +g27 +sg25275 +S'unknown date\n' +p93763 +sg25268 +S'The Strand Gate, Winchelsea' +p93764 +sg25270 +S'Sir Frank Short' +p93765 +sa(dp93766 +g25273 +S'etching' +p93767 +sg25267 +g27 +sg25275 +S'unknown date\n' +p93768 +sg25268 +S'A Venetian Byway' +p93769 +sg25270 +S'Jules Andr\xc3\xa9 Smith' +p93770 +sa(dp93771 +g25273 +S'etching' +p93772 +sg25267 +g27 +sg25275 +S'unknown date\n' +p93773 +sg25268 +S'The Little Foundry' +p93774 +sg25270 +S'Jules Andr\xc3\xa9 Smith' +p93775 +sa(dp93776 +g25273 +S'etching' +p93777 +sg25267 +g27 +sg25275 +S'1921' +p93778 +sg25268 +S'The River Road, Segovia' +p93779 +sg25270 +S'Jules Andr\xc3\xa9 Smith' +p93780 +sa(dp93781 +g25273 +S'etching' +p93782 +sg25267 +g27 +sg25275 +S'1921' +p93783 +sg25268 +S'The Gate of the Flowered Lintel, Toledo' +p93784 +sg25270 +S'Jules Andr\xc3\xa9 Smith' +p93785 +sa(dp93786 +g25273 +S'etching' +p93787 +sg25267 +g27 +sg25275 +S'1921' +p93788 +sg25268 +S'A Doorway in Segovia' +p93789 +sg25270 +S'Jules Andr\xc3\xa9 Smith' +p93790 +sa(dp93791 +g25273 +S'etching' +p93792 +sg25267 +g27 +sg25275 +S'unknown date\n' +p93793 +sg25268 +S"Doorway of the Doge's Palace, Venice" +p93794 +sg25270 +S'Jules Andr\xc3\xa9 Smith' +p93795 +sa(dp93796 +g25273 +S'etching' +p93797 +sg25267 +g27 +sg25275 +S'unknown date\n' +p93798 +sg25268 +S'The Well, San Gimignano' +p93799 +sg25270 +S'Jules Andr\xc3\xa9 Smith' +p93800 +sa(dp93801 +g25273 +S'drypoint' +p93802 +sg25267 +g27 +sg25275 +S'unknown date\n' +p93803 +sg25268 +S'Madonna' +p93804 +sg25270 +S'George Timothy Tobin' +p93805 +sa(dp93806 +g25268 +S'Copy After a Historical Painting from the Circle of Paolo Veronese [recto]' +p93807 +sg25270 +S'Italian 16th Century' +p93808 +sg25273 +S'sheet: 42.5 x 31 cm (16 3/4 x 12 3/16 in.)' +p93809 +sg25275 +S'\npen and brown ink with brown wash over black chalkon laid paper' +p93810 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00075/a0007527.jpg' +p93811 +sg25267 +g27 +sa(dp93812 +g25268 +S"Shield with Lion's Head, Held by Wild Woman" +p93813 +sg25270 +S'Martin Schongauer' +p93814 +sg25273 +S'engraving' +p93815 +sg25275 +S'c. 1480/1490' +p93816 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a497.jpg' +p93817 +sg25267 +g27 +sa(dp93818 +g25273 +S'sheet: 42.5 x 31 cm (16 3/4 x 12 3/16 in.)' +p93819 +sg25267 +g27 +sg25275 +S'\npen and brown ink and black chalk with brown wash on laid paper' +p93820 +sg25268 +S'Sheet of Sketches [verso]' +p93821 +sg25270 +S'Italian 16th Century' +p93822 +sa(dp93823 +g25268 +S'Christ Crowned with Thorns' +p93824 +sg25270 +S'Artist Information (' +p93825 +sg25273 +S'(artist)' +p93826 +sg25275 +S'\n' +p93827 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4f8.jpg' +p93828 +sg25267 +g27 +sa(dp93829 +g25268 +S'Self-Portrait' +p93830 +sg25270 +S'Artist Information (' +p93831 +sg25273 +S'Netherlandish, 1489/1494 - 1533' +p93832 +sg25275 +S'(related artist)' +p93833 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce9a.jpg' +p93834 +sg25267 +g27 +sa(dp93835 +g25268 +S'The Fair' +p93836 +sg25270 +S'Adriaen van Ostade' +p93837 +sg25273 +S'etching' +p93838 +sg25275 +S'probably 1660' +p93839 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2b9.jpg' +p93840 +sg25267 +g27 +sa(dp93841 +g25268 +S'Two Gossips' +p93842 +sg25270 +S'Adriaen van Ostade' +p93843 +sg25273 +S'etching on laid paper' +p93844 +sg25275 +S'probably 1642' +p93845 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2aa.jpg' +p93846 +sg25267 +g27 +sa(dp93847 +g25268 +S'Peasant Leaning on His Doorway' +p93848 +sg25270 +S'Adriaen van Ostade' +p93849 +sg25273 +S'etching' +p93850 +sg25275 +S'1672' +p93851 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d28e.jpg' +p93852 +sg25267 +g27 +sa(dp93853 +g25268 +S'Cobbler' +p93854 +sg25270 +S'Adriaen van Ostade' +p93855 +sg25273 +S'etching' +p93856 +sg25275 +S'1671' +p93857 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d29c.jpg' +p93858 +sg25267 +g27 +sa(dp93859 +g25268 +S"The Blacksmith's Shop" +p93860 +sg25270 +S'Julian Alden Weir' +p93861 +sg25273 +S'etching' +p93862 +sg25275 +S'unknown date\n' +p93863 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fb/a000fb23.jpg' +p93864 +sg25267 +g27 +sa(dp93865 +g25268 +S'The Little Student' +p93866 +sg25270 +S'Julian Alden Weir' +p93867 +sg25273 +S'drypoint' +p93868 +sg25275 +S'1890' +p93869 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bd4.jpg' +p93870 +sg25267 +g27 +sa(dp93871 +g25273 +S'drypoint on blue paper' +p93872 +sg25267 +g27 +sg25275 +S'unknown date\n' +p93873 +sg25268 +S'Night Riders' +p93874 +sg25270 +S'Levon West' +p93875 +sa(dp93876 +g25268 +S'Shield with Wings, Held by Peasant' +p93877 +sg25270 +S'Martin Schongauer' +p93878 +sg25273 +S'engraving' +p93879 +sg25275 +S'c. 1480/1490' +p93880 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a493.jpg' +p93881 +sg25267 +g27 +sa(dp93882 +g25273 +S'drypoint' +p93883 +sg25267 +g27 +sg25275 +S'unknown date\n' +p93884 +sg25268 +S'East Side Push Carts' +p93885 +sg25270 +S'Levon West' +p93886 +sa(dp93887 +g25273 +S'etching and drypoint' +p93888 +sg25267 +g27 +sg25275 +S'1928' +p93889 +sg25268 +S'Huskies' +p93890 +sg25270 +S'Levon West' +p93891 +sa(dp93892 +g25273 +S'drypoint' +p93893 +sg25267 +g27 +sg25275 +S'1928' +p93894 +sg25268 +S'High Pass, Canadian Rockies' +p93895 +sg25270 +S'Levon West' +p93896 +sa(dp93897 +g25273 +S'etching and drypoint' +p93898 +sg25267 +g27 +sg25275 +S'unknown date\n' +p93899 +sg25268 +S'October' +p93900 +sg25270 +S'Levon West' +p93901 +sa(dp93902 +g25273 +S'etching and drypoint' +p93903 +sg25267 +g27 +sg25275 +S'1929' +p93904 +sg25268 +S'Trail Riders' +p93905 +sg25270 +S'Levon West' +p93906 +sa(dp93907 +g25273 +S'etching and drypoint' +p93908 +sg25267 +g27 +sg25275 +S'1929' +p93909 +sg25268 +S'Heavy Going' +p93910 +sg25270 +S'Levon West' +p93911 +sa(dp93912 +g25273 +S'drypoint and etching' +p93913 +sg25267 +g27 +sg25275 +S'1929' +p93914 +sg25268 +S'Mountain Sleet' +p93915 +sg25270 +S'Levon West' +p93916 +sa(dp93917 +g25273 +S'etching and drypoint' +p93918 +sg25267 +g27 +sg25275 +S'1927' +p93919 +sg25268 +S'English Bay' +p93920 +sg25270 +S'Levon West' +p93921 +sa(dp93922 +g25273 +S'etching and drypoint' +p93923 +sg25267 +g27 +sg25275 +S'1927' +p93924 +sg25268 +S'Waterton Lakes' +p93925 +sg25270 +S'Levon West' +p93926 +sa(dp93927 +g25273 +S'drypoint and etching' +p93928 +sg25267 +g27 +sg25275 +S'unknown date\n' +p93929 +sg25268 +S'Morning' +p93930 +sg25270 +S'Levon West' +p93931 +sa(dp93932 +g25268 +S'Wild Man Holding a Shield with a Greyhound' +p93933 +sg25270 +S'Martin Schongauer' +p93934 +sg25273 +S'engraving' +p93935 +sg25275 +S'c. 1480/1490' +p93936 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a492.jpg' +p93937 +sg25267 +g27 +sa(dp93938 +g25273 +S'etching and drypoint on blue paper' +p93939 +sg25267 +g27 +sg25275 +S'unknown date\n' +p93940 +sg25268 +S'Full Tide' +p93941 +sg25270 +S'Levon West' +p93942 +sa(dp93943 +g25268 +S'Harbor Scene with Mountainous Background' +p93944 +sg25270 +S'Reinier Nooms, called Zeeman' +p93945 +sg25273 +S'etching' +p93946 +sg25275 +S'probably c. 1656' +p93947 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4af.jpg' +p93948 +sg25267 +g27 +sa(dp93949 +g25268 +S'Frontispiece for Callot\'s "The New Testament"' +p93950 +sg25270 +S'Abraham Bosse' +p93951 +sg25273 +S'etching' +p93952 +sg25275 +S'1635' +p93953 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008819.jpg' +p93954 +sg25267 +g27 +sa(dp93955 +g25268 +S'Christ Disputing with the Doctors' +p93956 +sg25270 +S'Jacques Callot' +p93957 +sg25273 +S'etching' +p93958 +sg25275 +S'1635' +p93959 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a000880f.jpg' +p93960 +sg25267 +g27 +sa(dp93961 +g25268 +S'Fisher of Men' +p93962 +sg25270 +S'Jacques Callot' +p93963 +sg25273 +S'etching' +p93964 +sg25275 +S'1635' +p93965 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008810.jpg' +p93966 +sg25267 +g27 +sa(dp93967 +g25268 +S'Jesus with the Pharisees' +p93968 +sg25270 +S'Jacques Callot' +p93969 +sg25273 +S'etching' +p93970 +sg25275 +S'1635' +p93971 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008817.jpg' +p93972 +sg25267 +g27 +sa(dp93973 +g25268 +S'Sermon on the Mount' +p93974 +sg25270 +S'Jacques Callot' +p93975 +sg25273 +S'etching' +p93976 +sg25275 +S'1635' +p93977 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008818.jpg' +p93978 +sg25267 +g27 +sa(dp93979 +g25268 +S'Christ and the Woman Taken in Adultery' +p93980 +sg25270 +S'Jacques Callot' +p93981 +sg25273 +S'etching' +p93982 +sg25275 +S'1635' +p93983 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088c1.jpg' +p93984 +sg25267 +g27 +sa(dp93985 +g25268 +S'Stoning of Jesus' +p93986 +sg25270 +S'Jacques Callot' +p93987 +sg25273 +S'etching' +p93988 +sg25275 +S'1635' +p93989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088c2.jpg' +p93990 +sg25267 +g27 +sa(dp93991 +g25268 +S'Raising of Lazarus' +p93992 +sg25270 +S'Jacques Callot' +p93993 +sg25273 +S'etching' +p93994 +sg25275 +S'1635' +p93995 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088b7.jpg' +p93996 +sg25267 +g27 +sa(dp93997 +g25268 +S'Shield with Stag, Held by Wild Man' +p93998 +sg25270 +S'Martin Schongauer' +p93999 +sg25273 +S'engraving' +p94000 +sg25275 +S'c. 1480/1490' +p94001 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a498.jpg' +p94002 +sg25267 +g27 +sa(dp94003 +g25268 +S'The Entry into Jerusalem' +p94004 +sg25270 +S'Jacques Callot' +p94005 +sg25273 +S'etching' +p94006 +sg25275 +S'1635' +p94007 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088b8.jpg' +p94008 +sg25267 +g27 +sa(dp94009 +g25268 +S"Caesar's Coin" +p94010 +sg25270 +S'Jacques Callot' +p94011 +sg25273 +S'etching' +p94012 +sg25275 +S'1635' +p94013 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088bb.jpg' +p94014 +sg25267 +g27 +sa(dp94015 +g25268 +S'Conversion of Paul' +p94016 +sg25270 +S'Jacques Callot' +p94017 +sg25273 +S'etching' +p94018 +sg25275 +S'1635' +p94019 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088bc.jpg' +p94020 +sg25267 +g27 +sa(dp94021 +g25268 +S'The Crucifixion' +p94022 +sg25270 +S'Martin Schongauer' +p94023 +sg25273 +S'engraving' +p94024 +sg25275 +S'c. 1480' +p94025 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a49c.jpg' +p94026 +sg25267 +g27 +sa(dp94027 +g25268 +S'Forgotten Things' +p94028 +sg25270 +S'Grace Thurston Arnold Albee' +p94029 +sg25273 +S'wood engraving' +p94030 +sg25275 +S'1943' +p94031 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000917.jpg' +p94032 +sg25267 +g27 +sa(dp94033 +g25268 +S'King Ferdinand of Austria' +p94034 +sg25270 +S'French 16th Century' +p94035 +sg25273 +S'Rosenwald Collection' +p94036 +sg25275 +S'\nwoodcut' +p94037 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000837d.jpg' +p94038 +sg25267 +g27 +sa(dp94039 +g25273 +S'woodcut' +p94040 +sg25267 +g27 +sg25275 +S'c. 1510/1511 (published after 1545)' +p94041 +sg25268 +S'The Triumph of Christ [block 3]' +p94042 +sg25270 +S'Titian' +p94043 +sa(dp94044 +g25273 +S'woodcut' +p94045 +sg25267 +g27 +sg25275 +S'c. 1510/1511 (published after 1545)' +p94046 +sg25268 +S'The Triumph of Christ [block 4]' +p94047 +sg25270 +S'Titian' +p94048 +sa(dp94049 +g25273 +S'woodcut' +p94050 +sg25267 +g27 +sg25275 +S'c. 1510/1511 (published after 1545)' +p94051 +sg25268 +S'The Triumph of Christ [block 5]' +p94052 +sg25270 +S'Titian' +p94053 +sa(dp94054 +g25273 +S'woodcut' +p94055 +sg25267 +g27 +sg25275 +S'c. 1510/1511 (published after 1545)' +p94056 +sg25268 +S'The Triumph of Christ [block 6]' +p94057 +sg25270 +S'Titian' +p94058 +sa(dp94059 +g25268 +S"Shields with Rabbit and Moor's Head, Held by Wild Man" +p94060 +sg25270 +S'Martin Schongauer' +p94061 +sg25273 +S'engraving on laid paper' +p94062 +sg25275 +S'c. 1480/1490' +p94063 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a499.jpg' +p94064 +sg25267 +g27 +sa(dp94065 +g25273 +S'woodcut' +p94066 +sg25267 +g27 +sg25275 +S'c. 1510/1511 (published after 1545)' +p94067 +sg25268 +S'The Triumph of Christ [block 7]' +p94068 +sg25270 +S'Titian' +p94069 +sa(dp94070 +g25273 +S'woodcut' +p94071 +sg25267 +g27 +sg25275 +S'c. 1510/1511 (published after 1545)' +p94072 +sg25268 +S'The Triumph of Christ [block 8]' +p94073 +sg25270 +S'Titian' +p94074 +sa(dp94075 +g25268 +S'Cordova Plaza' +p94076 +sg25270 +S'Gustave Baumann' +p94077 +sg25273 +S'colored woodcut' +p94078 +sg25275 +S'1943' +p94079 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a1b.jpg' +p94080 +sg25267 +g27 +sa(dp94081 +g25268 +S'Armed Three-Master with Daedalus and Icarus in the Sky' +p94082 +sg25270 +S'Artist Information (' +p94083 +sg25273 +S'(artist after)' +p94084 +sg25275 +S'\n' +p94085 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cee3.jpg' +p94086 +sg25267 +g27 +sa(dp94087 +g25268 +S'Armed Three-Master on the Open Sea, Accompanied by a Galley' +p94088 +sg25270 +S'Artist Information (' +p94089 +sg25273 +S'(artist after)' +p94090 +sg25275 +S'\n' +p94091 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cee4.jpg' +p94092 +sg25267 +g27 +sa(dp94093 +g25268 +S'The Triumph of the Virgin' +p94094 +sg25270 +S'Jacques Callot' +p94095 +sg25273 +S'etching and engraving' +p94096 +sg25275 +S'1625' +p94097 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dab.jpg' +p94098 +sg25267 +g27 +sa(dp94099 +g25273 +S'(artist after)' +p94100 +sg25267 +g27 +sg25275 +S'\n' +p94101 +sg25268 +S'Jean Simeon Chardin' +p94102 +sg25270 +S'Artist Information (' +p94103 +sa(dp94104 +g25273 +S'French, 1699 - 1779' +p94105 +sg25267 +g27 +sg25275 +S'(artist after)' +p94106 +sg25268 +S'Oeuvres de J.B. Chardin, 1739-1749' +p94107 +sg25270 +S'Artist Information (' +p94108 +sa(dp94109 +g25273 +S'(artist after)' +p94110 +sg25267 +g27 +sg25275 +S'\n' +p94111 +sg25268 +S'Madame Chardin' +p94112 +sg25270 +S'Artist Information (' +p94113 +sa(dp94114 +g25268 +S'Jean Baptiste Simeon Chardin' +p94115 +sg25270 +S'Artist Information (' +p94116 +sg25273 +S'(artist after)' +p94117 +sg25275 +S'\n' +p94118 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f55.jpg' +p94119 +sg25267 +g27 +sa(dp94120 +g25268 +S'Christ between Saint Peter and Saint James Major [middle panel]' +p94121 +sg25270 +S'Artist Information (' +p94122 +sg25273 +S'Italian, mentioned 1272 - active 1302' +p94123 +sg25275 +S'(related artist)' +p94124 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00029/a0002953.jpg' +p94125 +sg25267 +g27 +sa(dp94126 +g25268 +S"A Bishop's Crosier" +p94127 +sg25270 +S'Martin Schongauer' +p94128 +sg25273 +S'engraving' +p94129 +sg25275 +S'c. 1475/1480' +p94130 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a449.jpg' +p94131 +sg25267 +g27 +sa(dp94132 +g25273 +S'(artist after)' +p94133 +sg25267 +g27 +sg25275 +S'\n' +p94134 +sg25268 +S'Les Amusements de la vie privee' +p94135 +sg25270 +S'Artist Information (' +p94136 +sa(dp94137 +g25273 +S'(artist after)' +p94138 +sg25267 +g27 +sg25275 +S'\n' +p94139 +sg25268 +S"L'Antiguaire" +p94140 +sg25270 +S'Artist Information (' +p94141 +sa(dp94142 +g25273 +S'(artist after)' +p94143 +sg25267 +g27 +sg25275 +S'\n' +p94144 +sg25268 +S'Le Benedicite' +p94145 +sg25270 +S'Artist Information (' +p94146 +sa(dp94147 +g25273 +S'(artist after)' +p94148 +sg25267 +g27 +sg25275 +S'\n' +p94149 +sg25268 +S'La Blanchisseuse' +p94150 +sg25270 +S'Artist Information (' +p94151 +sa(dp94152 +g25273 +S'(artist after)' +p94153 +sg25267 +g27 +sg25275 +S'\n' +p94154 +sg25268 +S'La bonne education' +p94155 +sg25270 +S'Artist Information (' +p94156 +sa(dp94157 +g25273 +S'(artist after)' +p94158 +sg25267 +g27 +sg25275 +S'\n' +p94159 +sg25268 +S'La Bonne Mere' +p94160 +sg25270 +S'Artist Information (' +p94161 +sa(dp94162 +g25273 +S'(artist after)' +p94163 +sg25267 +g27 +sg25275 +S'\n' +p94164 +sg25268 +S'Les Bouteilles de savon' +p94165 +sg25270 +S'Artist Information (' +p94166 +sa(dp94167 +g25273 +S'(artist after)' +p94168 +sg25267 +g27 +sg25275 +S'\n' +p94169 +sg25268 +S'Le Chat au fromage' +p94170 +sg25270 +S'Artist Information (' +p94171 +sa(dp94172 +g25273 +S'(artist after)' +p94173 +sg25267 +g27 +sg25275 +S'\n' +p94174 +sg25268 +S'Le Chateau de cartes' +p94175 +sg25270 +S'Artist Information (' +p94176 +sa(dp94177 +g25273 +S'(artist after)' +p94178 +sg25267 +g27 +sg25275 +S'\n' +p94179 +sg25268 +S'Dame prenant son the' +p94180 +sg25270 +S'Artist Information (' +p94181 +sa(dp94182 +g25268 +S'A Censer' +p94183 +sg25270 +S'Martin Schongauer' +p94184 +sg25273 +S'engraving on laid paper' +p94185 +sg25275 +S'c. 1480/1490' +p94186 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000fa2.jpg' +p94187 +sg25267 +g27 +sa(dp94188 +g25273 +S'(artist after)' +p94189 +sg25267 +g27 +sg25275 +S'\n' +p94190 +sg25268 +S'Etude du dessin' +p94191 +sg25270 +S'Artist Information (' +p94192 +sa(dp94193 +g25273 +S'(artist after)' +p94194 +sg25267 +g27 +sg25275 +S'\n' +p94195 +sg25268 +S'La Fontaine' +p94196 +sg25270 +S'Artist Information (' +p94197 +sa(dp94198 +g25273 +S'French, 1699 - 1779' +p94199 +sg25267 +g27 +sg25275 +S'(artist after)' +p94200 +sg25268 +S'La Gouvernante' +p94201 +sg25270 +S'Artist Information (' +p94202 +sa(dp94203 +g25268 +S'La Gouvernante' +p94204 +sg25270 +S'Artist Information (' +p94205 +sg25273 +S'(artist after)' +p94206 +sg25275 +S'\n' +p94207 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f00.jpg' +p94208 +sg25267 +g27 +sa(dp94209 +g25273 +S'(artist after)' +p94210 +sg25267 +g27 +sg25275 +S'\n' +p94211 +sg25268 +S"Le Jeu de l'Oye" +p94212 +sg25270 +S'Artist Information (' +p94213 +sa(dp94214 +g25273 +S'(artist after)' +p94215 +sg25267 +g27 +sg25275 +S'\n' +p94216 +sg25268 +S'Jeune Fille au volant' +p94217 +sg25270 +S'Artist Information (' +p94218 +sa(dp94219 +g25273 +S'(artist after)' +p94220 +sg25267 +g27 +sg25275 +S'\n' +p94221 +sg25268 +S'Le Jeune Soldat' +p94222 +sg25270 +S'Artist Information (' +p94223 +sa(dp94224 +g25273 +S'(artist after)' +p94225 +sg25267 +g27 +sg25275 +S'\n' +p94226 +sg25268 +S"La Maitresse d'ecole" +p94227 +sg25270 +S'Artist Information (' +p94228 +sa(dp94229 +g25268 +S"La Maitresse d'ecole" +p94230 +sg25270 +S'Artist Information (' +p94231 +sg25273 +S'(artist after)' +p94232 +sg25275 +S'\n' +p94233 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f2c.jpg' +p94234 +sg25267 +g27 +sa(dp94235 +g25268 +S'La Mere laborieuse' +p94236 +sg25270 +S'Artist Information (' +p94237 +sg25273 +S'(artist after)' +p94238 +sg25275 +S'\n' +p94239 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008eff.jpg' +p94240 +sg25267 +g27 +sa(dp94241 +g25268 +S'Ornament with Hop Vine' +p94242 +sg25270 +S'Martin Schongauer' +p94243 +sg25273 +S'engraving' +p94244 +sg25275 +S'c. 1480/1490' +p94245 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a465.jpg' +p94246 +sg25267 +g27 +sa(dp94247 +g25273 +S'(artist after)' +p94248 +sg25267 +g27 +sg25275 +S'\n' +p94249 +sg25268 +S'Le Neglige, ou Toilette du matin' +p94250 +sg25270 +S'Artist Information (' +p94251 +sa(dp94252 +g25273 +S'(artist after)' +p94253 +sg25267 +g27 +sg25275 +S'\n' +p94254 +sg25268 +S'Les Osselets' +p94255 +sg25270 +S'Artist Information (' +p94256 +sa(dp94257 +g25273 +S'(artist after)' +p94258 +sg25267 +g27 +sg25275 +S'\n' +p94259 +sg25268 +S'Le Peintre' +p94260 +sg25270 +S'Artist Information (' +p94261 +sa(dp94262 +g25273 +S'(artist after)' +p94263 +sg25267 +g27 +sg25275 +S'\n' +p94264 +sg25268 +S'La Pourvoyeuse' +p94265 +sg25270 +S'Artist Information (' +p94266 +sa(dp94267 +g25273 +S'(artist after)' +p94268 +sg25267 +g27 +sg25275 +S'\n' +p94269 +sg25268 +S'La Serinette' +p94270 +sg25270 +S'Artist Information (' +p94271 +sa(dp94272 +g25273 +S'(artist after)' +p94273 +sg25267 +g27 +sg25275 +S'\n' +p94274 +sg25268 +S'Le Souffleur' +p94275 +sg25270 +S'Artist Information (' +p94276 +sa(dp94277 +g25273 +S'(artist after)' +p94278 +sg25267 +g27 +sg25275 +S'\n' +p94279 +sg25268 +S'La Souriciere' +p94280 +sg25270 +S'Artist Information (' +p94281 +sa(dp94282 +g25273 +S'(artist after)' +p94283 +sg25267 +g27 +sg25275 +S'\n' +p94284 +sg25268 +S'Le Toton' +p94285 +sg25270 +S'Artist Information (' +p94286 +sa(dp94287 +g25273 +S'(artist after)' +p94288 +sg25267 +g27 +sg25275 +S'\n' +p94289 +sg25268 +S'Les Tours de cartes' +p94290 +sg25270 +S'Artist Information (' +p94291 +sa(dp94292 +g25268 +S'Monsieur, pardon si je vous g\xc3\xaane un peu...' +p94293 +sg25270 +S'Honor\xc3\xa9 Daumier' +p94294 +sg25273 +S'lithograph' +p94295 +sg25275 +S'1844' +p94296 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009319.jpg' +p94297 +sg25267 +g27 +sa(dp94298 +g25268 +S'Thistle Ornament' +p94299 +sg25270 +S'Martin Schongauer' +p94300 +sg25273 +S'engraving' +p94301 +sg25275 +S'unknown date\n' +p94302 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a466.jpg' +p94303 +sg25267 +g27 +sa(dp94304 +g25268 +S'The Battle of the Giaour and the Pasha (Combat du Giaour et du Pacha)' +p94305 +sg25270 +S'Eug\xc3\xa8ne Delacroix' +p94306 +sg25273 +S'lithograph' +p94307 +sg25275 +S'1827' +p94308 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000959c.jpg' +p94309 +sg25267 +g27 +sa(dp94310 +g25273 +S'aquatint' +p94311 +sg25267 +g27 +sg25275 +S'1944' +p94312 +sg25268 +S'Mountain Serenity' +p94313 +sg25270 +S'Harold Lukens Doolittle' +p94314 +sa(dp94315 +g25273 +S'color woodcut and linocut' +p94316 +sg25267 +g27 +sg25275 +S'1944' +p94317 +sg25268 +S'Jealous Cock' +p94318 +sg25270 +S'Werner Drewes' +p94319 +sa(dp94320 +g25268 +S'The Holy Family on a Grassy Bench' +p94321 +sg25270 +S'Albrecht D\xc3\xbcrer' +p94322 +sg25273 +S'woodcut' +p94323 +sg25275 +S'1526' +p94324 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac48.jpg' +p94325 +sg25267 +g27 +sa(dp94326 +g25268 +S'Two Men Arguing' +p94327 +sg25270 +S'Paul Gavarni' +p94328 +sg25273 +S'graphite' +p94329 +sg25275 +S'unknown date\n' +p94330 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007365.jpg' +p94331 +sg25267 +g27 +sa(dp94332 +g25268 +S'Foreshore Scene with Windmill' +p94333 +sg25270 +S'Jan van Goyen' +p94334 +sg25273 +S'graphite and gray wash on laid paper' +p94335 +sg25275 +S'1653' +p94336 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00033/a00033e2.jpg' +p94337 +sg25267 +g27 +sa(dp94338 +g25268 +S'Amazon' +p94339 +sg25270 +S'Stanley William Hayter' +p94340 +sg25273 +S'engraving and softground etching with areas of deep intaglio (printing as white relief) where ink has been wiped clean' +p94341 +sg25275 +S'1945' +p94342 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a0006075.jpg' +p94343 +sg25267 +g27 +sa(dp94344 +g25268 +S'Sheet of Sketches' +p94345 +sg25270 +S'Stanley William Hayter' +p94346 +sg25273 +S'black and white inks with watercolor and colored chalks on brown-gray paper' +p94347 +sg25275 +S'1945' +p94348 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a00060f9.jpg' +p94349 +sg25267 +g27 +sa(dp94350 +g25273 +S'engraving on laid paper' +p94351 +sg25267 +g27 +sg25275 +S'unknown date\n' +p94352 +sg25268 +S'Africa (Afrique)' +p94353 +sg25270 +S'Joseph Hecht' +p94354 +sa(dp94355 +g25273 +S'engraving on laid paper' +p94356 +sg25267 +g27 +sg25275 +S'unknown date\n' +p94357 +sg25268 +S'Embarkation' +p94358 +sg25270 +S'Joseph Hecht' +p94359 +sa(dp94360 +g25268 +S'Leaf Ornament' +p94361 +sg25270 +S'Martin Schongauer' +p94362 +sg25273 +S'engraving' +p94363 +sg25275 +S'c. 1480/1490' +p94364 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00065/a00065cc.jpg' +p94365 +sg25267 +g27 +sa(dp94366 +g25273 +S'engraving on laid paper' +p94367 +sg25267 +g27 +sg25275 +S'c. 1929' +p94368 +sg25268 +S'Bison' +p94369 +sg25270 +S'Joseph Hecht' +p94370 +sa(dp94371 +g25273 +S'engraving on laid paper [trial proof]' +p94372 +sg25267 +g27 +sg25275 +S'unknown date\n' +p94373 +sg25268 +S'Quarry (Carriere)' +p94374 +sg25270 +S'Joseph Hecht' +p94375 +sa(dp94376 +g25273 +S'engraving on laid paper' +p94377 +sg25267 +g27 +sg25275 +S'unknown date\n' +p94378 +sg25268 +S'The Heavens (Ciel)' +p94379 +sg25270 +S'Joseph Hecht' +p94380 +sa(dp94381 +g25273 +S'engraving on laid paper [state II]' +p94382 +sg25267 +g27 +sg25275 +S'unknown date\n' +p94383 +sg25268 +S'Cock (Coq)' +p94384 +sg25270 +S'Joseph Hecht' +p94385 +sa(dp94386 +g25273 +S'engraving on laid paper' +p94387 +sg25267 +g27 +sg25275 +S'unknown date\n' +p94388 +sg25268 +S'Gnu' +p94389 +sg25270 +S'Joseph Hecht' +p94390 +sa(dp94391 +g25273 +S'engraving on laid paper' +p94392 +sg25267 +g27 +sg25275 +S'unknown date\n' +p94393 +sg25268 +S"Swedish Winter (L'hiver Suedoise)" +p94394 +sg25270 +S'Joseph Hecht' +p94395 +sa(dp94396 +g25273 +S"engraving on laid paper [artist's proof]" +p94397 +sg25267 +g27 +sg25275 +S'unknown date\n' +p94398 +sg25268 +S'Map of the World (Mappe monde)' +p94399 +sg25270 +S'Joseph Hecht' +p94400 +sa(dp94401 +g25273 +S"engraving on laid paper [artist's proof]" +p94402 +sg25267 +g27 +sg25275 +S'unknown date\n' +p94403 +sg25268 +S'Mont Saint Michel' +p94404 +sg25270 +S'Joseph Hecht' +p94405 +sa(dp94406 +g25273 +S'engraving on heavy laid paper [state proof]' +p94407 +sg25267 +g27 +sg25275 +S'unknown date\n' +p94408 +sg25268 +S'Tigers and Gazelles (Les tigres et gazelles)' +p94409 +sg25270 +S'Joseph Hecht' +p94410 +sa(dp94411 +g25268 +S'Ornament with Owl Mocked by Day Birds' +p94412 +sg25270 +S'Martin Schongauer' +p94413 +sg25273 +S'engraving' +p94414 +sg25275 +S'c. 1480/1490' +p94415 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a468.jpg' +p94416 +sg25267 +g27 +sa(dp94417 +g25273 +S'drypoint' +p94418 +sg25267 +g27 +sg25275 +S'1945' +p94419 +sg25268 +S'Protest' +p94420 +sg25270 +S'Stephen Izant' +p94421 +sa(dp94422 +g25273 +S'(artist after)' +p94423 +sg25267 +g27 +sg25275 +S'\n' +p94424 +sg25268 +S'Opera Selectiora: Titiani Vecelii, Pauli Caliarii, Jacobi Robusti et Jacobi de Ponte' +p94425 +sg25270 +S'Artist Information (' +p94426 +sa(dp94427 +g25273 +S'(artist after)' +p94428 +sg25267 +g27 +sg25275 +S'\n' +p94429 +sg25268 +S'The Descent of the Holy Spirit' +p94430 +sg25270 +S'Artist Information (' +p94431 +sa(dp94432 +g25273 +S'(artist after)' +p94433 +sg25267 +g27 +sg25275 +S'\n' +p94434 +sg25268 +S'Presentation of the Virgin in the Temple [left plate]' +p94435 +sg25270 +S'Artist Information (' +p94436 +sa(dp94437 +g25273 +S'(artist after)' +p94438 +sg25267 +g27 +sg25275 +S'\n' +p94439 +sg25268 +S'Presentation of the Virgin in the Temple [center plate]' +p94440 +sg25270 +S'Artist Information (' +p94441 +sa(dp94442 +g25273 +S'(artist after)' +p94443 +sg25267 +g27 +sg25275 +S'\n' +p94444 +sg25268 +S'Presentation of the Virgin in the Temple [right plate]' +p94445 +sg25270 +S'Artist Information (' +p94446 +sa(dp94447 +g25273 +S'(artist after)' +p94448 +sg25267 +g27 +sg25275 +S'\n' +p94449 +sg25268 +S'The Virgin in the Clouds and Six Saints' +p94450 +sg25270 +S'Artist Information (' +p94451 +sa(dp94452 +g25273 +S'(artist after)' +p94453 +sg25267 +g27 +sg25275 +S'\n' +p94454 +sg25268 +S'The Death of Saint Peter Martyr' +p94455 +sg25270 +S'Artist Information (' +p94456 +sa(dp94457 +g25273 +S'(artist after)' +p94458 +sg25267 +g27 +sg25275 +S'\n' +p94459 +sg25268 +S'The Presentation in the Temple (The Circumcision)' +p94460 +sg25270 +S'Artist Information (' +p94461 +sa(dp94462 +g25273 +S'(artist after)' +p94463 +sg25267 +g27 +sg25275 +S'\n' +p94464 +sg25268 +S'The Finding of Moses' +p94465 +sg25270 +S'Artist Information (' +p94466 +sa(dp94467 +g25268 +S'Christ and His Disciples I' +p94468 +sg25270 +S'Artist Information (' +p94469 +sg25273 +S'German, c. 1450 - 1491' +p94470 +sg25275 +S'(artist after)' +p94471 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b06e.jpg' +p94472 +sg25267 +g27 +sa(dp94473 +g25273 +S'(artist after)' +p94474 +sg25267 +g27 +sg25275 +S'\n' +p94475 +sg25268 +S'The Mystic Marriage of Saint Catherine' +p94476 +sg25270 +S'Artist Information (' +p94477 +sa(dp94478 +g25273 +S'(artist after)' +p94479 +sg25267 +g27 +sg25275 +S'\n' +p94480 +sg25268 +S'Holy Family and Four Saints' +p94481 +sg25270 +S'Artist Information (' +p94482 +sa(dp94483 +g25273 +S'(artist after)' +p94484 +sg25267 +g27 +sg25275 +S'\n' +p94485 +sg25268 +S'The Marriage at Cana [left plate]' +p94486 +sg25270 +S'Artist Information (' +p94487 +sa(dp94488 +g25273 +S'(artist after)' +p94489 +sg25267 +g27 +sg25275 +S'\n' +p94490 +sg25268 +S'The Marriage at Cana [right plate]' +p94491 +sg25270 +S'Artist Information (' +p94492 +sa(dp94493 +g25273 +S'(artist after)' +p94494 +sg25267 +g27 +sg25275 +S'\n' +p94495 +sg25268 +S'The Massacre of the Innocents' +p94496 +sg25270 +S'Artist Information (' +p94497 +sa(dp94498 +g25273 +S'(artist after)' +p94499 +sg25267 +g27 +sg25275 +S'\n' +p94500 +sg25268 +S'Miracle of Saint Mark [left plate]' +p94501 +sg25270 +S'Artist Information (' +p94502 +sa(dp94503 +g25273 +S'(artist after)' +p94504 +sg25267 +g27 +sg25275 +S'\n' +p94505 +sg25268 +S'Miracle of Saint Mark [right plate]' +p94506 +sg25270 +S'Artist Information (' +p94507 +sa(dp94508 +g25273 +S'(artist after)' +p94509 +sg25267 +g27 +sg25275 +S'\n' +p94510 +sg25268 +S'The Crucifixion [left plate]' +p94511 +sg25270 +S'Artist Information (' +p94512 +sa(dp94513 +g25273 +S'(artist after)' +p94514 +sg25267 +g27 +sg25275 +S'\n' +p94515 +sg25268 +S'The Crucifixion [center plate]' +p94516 +sg25270 +S'Artist Information (' +p94517 +sa(dp94518 +g25273 +S'(artist after)' +p94519 +sg25267 +g27 +sg25275 +S'\n' +p94520 +sg25268 +S'The Crucifixion [right plate]' +p94521 +sg25270 +S'Artist Information (' +p94522 +sa(dp94523 +g25268 +S'Christ and His Disciples II' +p94524 +sg25270 +S'Artist Information (' +p94525 +sg25273 +S'German, c. 1450 - 1491' +p94526 +sg25275 +S'(artist after)' +p94527 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b06d.jpg' +p94528 +sg25267 +g27 +sa(dp94529 +g25273 +S'(artist after)' +p94530 +sg25267 +g27 +sg25275 +S'\n' +p94531 +sg25268 +S'The Entombment' +p94532 +sg25270 +S'Artist Information (' +p94533 +sa(dp94534 +g25273 +S'(artist after)' +p94535 +sg25267 +g27 +sg25275 +S'\n' +p94536 +sg25268 +S'Dives and Lazarus [left plate]' +p94537 +sg25270 +S'Artist Information (' +p94538 +sa(dp94539 +g25273 +S'(artist after)' +p94540 +sg25267 +g27 +sg25275 +S'\n' +p94541 +sg25268 +S'Dives and Lazarus [right plate]' +p94542 +sg25270 +S'Artist Information (' +p94543 +sa(dp94544 +g25273 +S'(artist after)' +p94545 +sg25267 +g27 +sg25275 +S'\n' +p94546 +sg25268 +S'Christ on the Mount of Olives' +p94547 +sg25270 +S'Artist Information (' +p94548 +sa(dp94549 +g25273 +S'(artist after)' +p94550 +sg25267 +g27 +sg25275 +S'\n' +p94551 +sg25268 +S'Melchisedech Blessing Abraham' +p94552 +sg25270 +S'Artist Information (' +p94553 +sa(dp94554 +g25273 +S'(artist after)' +p94555 +sg25267 +g27 +sg25275 +S'\n' +p94556 +sg25268 +S'The Raising of Lazarus' +p94557 +sg25270 +S'Artist Information (' +p94558 +sa(dp94559 +g25268 +S'Presentation of the Virgin in the Temple [left plate]' +p94560 +sg25270 +S'Artist Information (' +p94561 +sg25273 +S'(artist after)' +p94562 +sg25275 +S'\n' +p94563 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007784.jpg' +p94564 +sg25267 +g27 +sa(dp94565 +g25268 +S'Presentation of the Virgin in the Temple [center plate]' +p94566 +sg25270 +S'Artist Information (' +p94567 +sg25273 +S'(artist after)' +p94568 +sg25275 +S'\n' +p94569 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007794.jpg' +p94570 +sg25267 +g27 +sa(dp94571 +g25268 +S'Presentation of the Virgin in the Temple [right plate]' +p94572 +sg25270 +S'Artist Information (' +p94573 +sg25273 +S'(artist after)' +p94574 +sg25275 +S'\n' +p94575 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007792.jpg' +p94576 +sg25267 +g27 +sa(dp94577 +g25268 +S'The Virgin in Clouds and Six Saints' +p94578 +sg25270 +S'Artist Information (' +p94579 +sg25273 +S'(artist after)' +p94580 +sg25275 +S'\n' +p94581 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000778a.jpg' +p94582 +sg25267 +g27 +sa(dp94583 +g25268 +S'Christ and His Disciples III' +p94584 +sg25270 +S'Artist Information (' +p94585 +sg25273 +S'German, c. 1450 - 1491' +p94586 +sg25275 +S'(artist after)' +p94587 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b06c.jpg' +p94588 +sg25267 +g27 +sa(dp94589 +g25268 +S'The Death of Saint Peter Martyr' +p94590 +sg25270 +S'Artist Information (' +p94591 +sg25273 +S'(artist after)' +p94592 +sg25275 +S'\n' +p94593 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007770.jpg' +p94594 +sg25267 +g27 +sa(dp94595 +g25268 +S'The Presentation in the Temple (The Circumcision)' +p94596 +sg25270 +S'Artist Information (' +p94597 +sg25273 +S'(artist after)' +p94598 +sg25275 +S'\n' +p94599 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000776c.jpg' +p94600 +sg25267 +g27 +sa(dp94601 +g25268 +S'The Finding of Moses' +p94602 +sg25270 +S'Artist Information (' +p94603 +sg25273 +S'(artist after)' +p94604 +sg25275 +S'\n' +p94605 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007782.jpg' +p94606 +sg25267 +g27 +sa(dp94607 +g25268 +S'The Mystic Marriage of Saint Catherine' +p94608 +sg25270 +S'Artist Information (' +p94609 +sg25273 +S'(artist after)' +p94610 +sg25275 +S'\n' +p94611 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000777e.jpg' +p94612 +sg25267 +g27 +sa(dp94613 +g25268 +S'The Mystic Marriage of Saint Catherine' +p94614 +sg25270 +S'Artist Information (' +p94615 +sg25273 +S'(artist after)' +p94616 +sg25275 +S'\n' +p94617 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007780.jpg' +p94618 +sg25267 +g27 +sa(dp94619 +g25268 +S'The Mystic Marriage of Saint Catherine' +p94620 +sg25270 +S'Artist Information (' +p94621 +sg25273 +S'(artist after)' +p94622 +sg25275 +S'\n' +p94623 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000777c.jpg' +p94624 +sg25267 +g27 +sa(dp94625 +g25268 +S'Holy Family and Four Saints' +p94626 +sg25270 +S'Artist Information (' +p94627 +sg25273 +S'(artist after)' +p94628 +sg25275 +S'\n' +p94629 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007797.jpg' +p94630 +sg25267 +g27 +sa(dp94631 +g25268 +S'Holy Family and Four Saints' +p94632 +sg25270 +S'Artist Information (' +p94633 +sg25273 +S'(artist after)' +p94634 +sg25275 +S'\n' +p94635 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000779d.jpg' +p94636 +sg25267 +g27 +sa(dp94637 +g25268 +S'Holy Family and Four Saints' +p94638 +sg25270 +S'Artist Information (' +p94639 +sg25273 +S'(artist after)' +p94640 +sg25275 +S'\n' +p94641 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000779f.jpg' +p94642 +sg25267 +g27 +sa(dp94643 +g25268 +S'Holy Family and Four Saints' +p94644 +sg25270 +S'Artist Information (' +p94645 +sg25273 +S'(artist after)' +p94646 +sg25275 +S'\n' +p94647 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000779b.jpg' +p94648 +sg25267 +g27 +sa(dp94649 +g25268 +S'Christ and His Disciples IV' +p94650 +sg25270 +S'Artist Information (' +p94651 +sg25273 +S'German, c. 1450 - 1491' +p94652 +sg25275 +S'(artist after)' +p94653 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b06a.jpg' +p94654 +sg25267 +g27 +sa(dp94655 +g25268 +S'The Marriage at Cana [left plate]' +p94656 +sg25270 +S'Artist Information (' +p94657 +sg25273 +S'(artist after)' +p94658 +sg25275 +S'\n' +p94659 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000778e.jpg' +p94660 +sg25267 +g27 +sa(dp94661 +g25268 +S'The Marriage at Cana [right plate]' +p94662 +sg25270 +S'Artist Information (' +p94663 +sg25273 +S'(artist after)' +p94664 +sg25275 +S'\n' +p94665 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007790.jpg' +p94666 +sg25267 +g27 +sa(dp94667 +g25268 +S'The Crucifixion [left plate]' +p94668 +sg25270 +S'Artist Information (' +p94669 +sg25273 +S'(artist after)' +p94670 +sg25275 +S'\n' +p94671 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000777a.jpg' +p94672 +sg25267 +g27 +sa(dp94673 +g25268 +S'The Crucifixion [center plate]' +p94674 +sg25270 +S'Artist Information (' +p94675 +sg25273 +S'(artist after)' +p94676 +sg25275 +S'\n' +p94677 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007778.jpg' +p94678 +sg25267 +g27 +sa(dp94679 +g25268 +S'The Crucifixion [right plate]' +p94680 +sg25270 +S'Artist Information (' +p94681 +sg25273 +S'(artist after)' +p94682 +sg25275 +S'\n' +p94683 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007776.jpg' +p94684 +sg25267 +g27 +sa(dp94685 +g25268 +S'The Entombment [recto]' +p94686 +sg25270 +S'Artist Information (' +p94687 +sg25273 +S'(artist after)' +p94688 +sg25275 +S'\n' +p94689 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007772.jpg' +p94690 +sg25267 +g27 +sa(dp94691 +g25273 +S'(artist after)' +p94692 +sg25267 +g27 +sg25275 +S'\n' +p94693 +sg25268 +S'The Presentation in the Temple (The Circumcision) [verso]' +p94694 +sg25270 +S'Artist Information (' +p94695 +sa(dp94696 +g25268 +S'The Entombment' +p94697 +sg25270 +S'Artist Information (' +p94698 +sg25273 +S'(artist after)' +p94699 +sg25275 +S'\n' +p94700 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007774.jpg' +p94701 +sg25267 +g27 +sa(dp94702 +g25268 +S'Christ on the Mount of Olives' +p94703 +sg25270 +S'Artist Information (' +p94704 +sg25273 +S'(artist after)' +p94705 +sg25275 +S'\n' +p94706 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007786.jpg' +p94707 +sg25267 +g27 +sa(dp94708 +g25268 +S'The Raising of Lazarus' +p94709 +sg25270 +S'Artist Information (' +p94710 +sg25273 +S'(artist after)' +p94711 +sg25275 +S'\n' +p94712 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007788.jpg' +p94713 +sg25267 +g27 +sa(dp94714 +g25268 +S'Christ and His Disciples V' +p94715 +sg25270 +S'Artist Information (' +p94716 +sg25273 +S'German, c. 1450 - 1491' +p94717 +sg25275 +S'(artist after)' +p94718 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b06b.jpg' +p94719 +sg25267 +g27 +sa(dp94720 +g25268 +S'The Raising of Lazarus' +p94721 +sg25270 +S'Artist Information (' +p94722 +sg25273 +S'(artist after)' +p94723 +sg25275 +S'\n' +p94724 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a000778c.jpg' +p94725 +sg25267 +g27 +sa(dp94726 +g25273 +S'charcoal and gray wash, heightened with white chalk, on gray laid paper; laid down' +p94727 +sg25267 +g27 +sg25275 +S'1906' +p94728 +sg25268 +S'Arming the Vault' +p94729 +sg25270 +S'K\xc3\xa4the Kollwitz' +p94730 +sa(dp94731 +g25268 +S'Landscape with a Water Mill' +p94732 +sg25270 +S'Hans Sebald Lautensack' +p94733 +sg25273 +S'etching' +p94734 +sg25275 +S'1553' +p94735 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acc6.jpg' +p94736 +sg25267 +g27 +sa(dp94737 +g25268 +S'Adam and Eve after Their Expulsion from Paradise' +p94738 +sg25270 +S'Lucas van Leyden' +p94739 +sg25273 +S'engraving' +p94740 +sg25275 +S'1510' +p94741 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce50.jpg' +p94742 +sg25267 +g27 +sa(dp94743 +g25268 +S'Joseph Interprets the Dreams of the Pharaoh' +p94744 +sg25270 +S'Lucas van Leyden' +p94745 +sg25273 +S'engraving' +p94746 +sg25275 +S'1512' +p94747 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce5a.jpg' +p94748 +sg25267 +g27 +sa(dp94749 +g25273 +S'etching' +p94750 +sg25267 +g27 +sg25275 +S'1943' +p94751 +sg25268 +S'Stony Pastures' +p94752 +sg25270 +S'Luigi Lucioni' +p94753 +sa(dp94754 +g25268 +S'Entablatures from Santa Pudenziana and the Arch of Camigliano, Rome' +p94755 +sg25270 +S'Master PS' +p94756 +sg25273 +S'engraving' +p94757 +sg25275 +S'1537' +p94758 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b584.jpg' +p94759 +sg25267 +g27 +sa(dp94760 +g25268 +S'Entablature from the Basilica Ulpia, Rome' +p94761 +sg25270 +S'Master PS' +p94762 +sg25273 +S'engraving' +p94763 +sg25275 +S'1537' +p94764 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b585.jpg' +p94765 +sg25267 +g27 +sa(dp94766 +g25268 +S'Entablature from the Church of Saint Bibiana, Rome' +p94767 +sg25270 +S'Master PS' +p94768 +sg25273 +S'engraving' +p94769 +sg25275 +S'1537' +p94770 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b586.jpg' +p94771 +sg25267 +g27 +sa(dp94772 +g25268 +S'Entablature from the Temple of Castor and Pollux, Rome' +p94773 +sg25270 +S'Master PS' +p94774 +sg25273 +S'engraving' +p94775 +sg25275 +S'1537' +p94776 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000bb/a000bb66.jpg' +p94777 +sg25267 +g27 +sa(dp94778 +g25268 +S'Double Portrait of Israhel van Meckenem and His Wife Ida' +p94779 +sg25270 +S'Israhel van Meckenem' +p94780 +sg25273 +S'engraving' +p94781 +sg25275 +S'c. 1490' +p94782 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e29.jpg' +p94783 +sg25267 +g27 +sa(dp94784 +g25268 +S'Entablature from the Temple of Antoninus and Faustina, Rome' +p94785 +sg25270 +S'Master PS' +p94786 +sg25273 +S'engraving' +p94787 +sg25275 +S'1537' +p94788 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000bb/a000bb67.jpg' +p94789 +sg25267 +g27 +sa(dp94790 +g25268 +S'Capitals from the Baths of Antoninus, Rome' +p94791 +sg25270 +S'Master PS' +p94792 +sg25273 +S'engraving' +p94793 +sg25275 +S'1535' +p94794 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c750.jpg' +p94795 +sg25267 +g27 +sa(dp94796 +g25268 +S'Entablature from the Temple of Vespasian, Rome' +p94797 +sg25270 +S'Master PS' +p94798 +sg25273 +S'engraving' +p94799 +sg25275 +S'1537' +p94800 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000bd/a000bdd4.jpg' +p94801 +sg25267 +g27 +sa(dp94802 +g25268 +S'Capital from the Colosseum, Rome' +p94803 +sg25270 +S'Master PS' +p94804 +sg25273 +S'engraving' +p94805 +sg25275 +S'1537' +p94806 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c74f.jpg' +p94807 +sg25267 +g27 +sa(dp94808 +g25273 +S'wood engraving' +p94809 +sg25267 +g27 +sg25275 +S'1944' +p94810 +sg25268 +S'In the Space' +p94811 +sg25270 +S'Alessandro Mastro-Valerio' +p94812 +sa(dp94813 +g25268 +S'Saints Peter and Andrew' +p94814 +sg25270 +S'Israhel van Meckenem' +p94815 +sg25273 +S'engraving' +p94816 +sg25275 +S'c. 1480/1485' +p94817 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b9b.jpg' +p94818 +sg25267 +g27 +sa(dp94819 +g25273 +S'woodcut' +p94820 +sg25267 +g27 +sg25275 +S'1945' +p94821 +sg25268 +S'Mexico' +p94822 +sg25270 +S'Leopoldo M\xc3\xa9ndez' +p94823 +sa(dp94824 +g25268 +S'Couronnement de Voltaire (The Crowning of Voltaire)' +p94825 +sg25270 +S'Artist Information (' +p94826 +sg25273 +S'(artist after)' +p94827 +sg25275 +S'\n' +p94828 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d11.jpg' +p94829 +sg25267 +g27 +sa(dp94830 +g25268 +S'Couronnement de Voltaire (The Crowning of Voltaire)' +p94831 +sg25270 +S'Artist Information (' +p94832 +sg25273 +S'(artist after)' +p94833 +sg25275 +S'\n' +p94834 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fd9.jpg' +p94835 +sg25267 +g27 +sa(dp94836 +g25268 +S'Samson and the Lion' +p94837 +sg25270 +S'Israhel van Meckenem' +p94838 +sg25273 +S'engraving' +p94839 +sg25275 +S'c. 1475' +p94840 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f5e.jpg' +p94841 +sg25267 +g27 +sa(dp94842 +g25268 +S'Couronnement de Voltaire (The Crowning of Voltaire)' +p94843 +sg25270 +S'Artist Information (' +p94844 +sg25273 +S'(artist after)' +p94845 +sg25275 +S'\n' +p94846 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000973b.jpg' +p94847 +sg25267 +g27 +sa(dp94848 +g25268 +S'Mirabeau arrive aux Champs-\xc3\x89lis\xc3\xa9es' +p94849 +sg25270 +S'Artist Information (' +p94850 +sg25273 +S'(artist after)' +p94851 +sg25275 +S'\n' +p94852 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fd6.jpg' +p94853 +sg25267 +g27 +sa(dp94854 +g25268 +S'Mirabeau arrive aux Champs-\xc3\x89lis\xc3\xa9es' +p94855 +sg25270 +S'Artist Information (' +p94856 +sg25273 +S'(artist after)' +p94857 +sg25275 +S'\n' +p94858 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fd7.jpg' +p94859 +sg25267 +g27 +sa(dp94860 +g25268 +S'Mirabeau arrive aux Champs-\xc3\x89lis\xc3\xa9es' +p94861 +sg25270 +S'Artist Information (' +p94862 +sg25273 +S'(artist after)' +p94863 +sg25275 +S'\n' +p94864 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fda.jpg' +p94865 +sg25267 +g27 +sa(dp94866 +g25273 +S', 1779' +p94867 +sg25267 +g27 +sg25275 +S'\n' +p94868 +sg25268 +S'Serment de Louis XVI a son sacre' +p94869 +sg25270 +S'Jean-Michel Moreau the Younger' +p94870 +sa(dp94871 +g25273 +S'wood engraving' +p94872 +sg25267 +g27 +sg25275 +S'1944' +p94873 +sg25268 +S'Near Lyme, Sunset' +p94874 +sg25270 +S'Thomas Willoughby Nason' +p94875 +sa(dp94876 +g25273 +S'color linoleum cut' +p94877 +sg25267 +g27 +sg25275 +S'1943' +p94878 +sg25268 +S'Joline Campbell from Blair Court' +p94879 +sg25270 +S'Louis Novak' +p94880 +sa(dp94881 +g25268 +S'Interior of a Barn' +p94882 +sg25270 +S'Adriaen van Ostade' +p94883 +sg25273 +S'etching' +p94884 +sg25275 +S'1647' +p94885 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d29f.jpg' +p94886 +sg25267 +g27 +sa(dp94887 +g25268 +S'Christ Surrounded by Children' +p94888 +sg25270 +S'Georg Pencz' +p94889 +sg25273 +S'engraving' +p94890 +sg25275 +S'unknown date\n' +p94891 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad56.jpg' +p94892 +sg25267 +g27 +sa(dp94893 +g25268 +S'Grammar' +p94894 +sg25270 +S'Georg Pencz' +p94895 +sg25273 +S'engraving' +p94896 +sg25275 +S'unknown date\n' +p94897 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad73.jpg' +p94898 +sg25267 +g27 +sa(dp94899 +g25268 +S'The Annunciation' +p94900 +sg25270 +S'Artist Information (' +p94901 +sg25273 +S'(artist after)' +p94902 +sg25275 +S'\n' +p94903 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a42e.jpg' +p94904 +sg25267 +g27 +sa(dp94905 +g25268 +S'Dialectic' +p94906 +sg25270 +S'Georg Pencz' +p94907 +sg25273 +S'engraving' +p94908 +sg25275 +S'unknown date\n' +p94909 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad74.jpg' +p94910 +sg25267 +g27 +sa(dp94911 +g25268 +S'Rhetoric' +p94912 +sg25270 +S'Georg Pencz' +p94913 +sg25273 +S'engraving' +p94914 +sg25275 +S'unknown date\n' +p94915 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad72.jpg' +p94916 +sg25267 +g27 +sa(dp94917 +g25268 +S'Arithmetic' +p94918 +sg25270 +S'Georg Pencz' +p94919 +sg25273 +S'engraving' +p94920 +sg25275 +S'unknown date\n' +p94921 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad6e.jpg' +p94922 +sg25267 +g27 +sa(dp94923 +g25268 +S'Music' +p94924 +sg25270 +S'Georg Pencz' +p94925 +sg25273 +S'engraving' +p94926 +sg25275 +S'unknown date\n' +p94927 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad6f.jpg' +p94928 +sg25267 +g27 +sa(dp94929 +g25268 +S'Geometry' +p94930 +sg25270 +S'Georg Pencz' +p94931 +sg25273 +S'engraving' +p94932 +sg25275 +S'unknown date\n' +p94933 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad70.jpg' +p94934 +sg25267 +g27 +sa(dp94935 +g25268 +S'Astrology' +p94936 +sg25270 +S'Georg Pencz' +p94937 +sg25273 +S'engraving' +p94938 +sg25275 +S'unknown date\n' +p94939 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad71.jpg' +p94940 +sg25267 +g27 +sa(dp94941 +g25273 +S'color woodcut' +p94942 +sg25267 +g27 +sg25275 +S'1945' +p94943 +sg25268 +S'Above Lake Louise' +p94944 +sg25270 +S'Walter Joseph Phillips' +p94945 +sa(dp94946 +g25268 +S'The Dreams and Lies of Franco I' +p94947 +sg25270 +S'Pablo Picasso' +p94948 +sg25273 +S'etching and aquatint' +p94949 +sg25275 +S'1937' +p94950 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057ee.jpg' +p94951 +sg25267 +g27 +sa(dp94952 +g25273 +S'portfolio with two etchings and aquatints, poem, and descriptive text' +p94953 +sg25267 +g27 +sg25275 +S'1937' +p94954 +sg25268 +S'Sueno y Mentira de Franco' +p94955 +sg25270 +S'Pablo Picasso' +p94956 +sa(dp94957 +g25268 +S'The Dreams and Lies of Franco II' +p94958 +sg25270 +S'Pablo Picasso' +p94959 +sg25273 +S'etching and aquatint' +p94960 +sg25275 +S'1937' +p94961 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057ef.jpg' +p94962 +sg25267 +g27 +sa(dp94963 +g25268 +S'The Nativity' +p94964 +sg25270 +S'Israhel van Meckenem' +p94965 +sg25273 +S'engraving' +p94966 +sg25275 +S'unknown date\n' +p94967 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a42d.jpg' +p94968 +sg25267 +g27 +sa(dp94969 +g25273 +S'etching and engraving' +p94970 +sg25267 +g27 +sg25275 +S'1944' +p94971 +sg25268 +S'Perseus Beheading Medusa, I' +p94972 +sg25270 +S'Andr\xc3\xa9 Racz' +p94973 +sa(dp94974 +g25273 +S'etching, engraving, and aquatint' +p94975 +sg25267 +g27 +sg25275 +S'1944' +p94976 +sg25268 +S'Perseus Beheading Medusa, II' +p94977 +sg25270 +S'Andr\xc3\xa9 Racz' +p94978 +sa(dp94979 +g25273 +S'etching, engraving, and aquatint' +p94980 +sg25267 +g27 +sg25275 +S'1944' +p94981 +sg25268 +S'Perseus Beheading Medusa, III' +p94982 +sg25270 +S'Andr\xc3\xa9 Racz' +p94983 +sa(dp94984 +g25268 +S'Perseus Beheading Medusa, IV' +p94985 +sg25270 +S'Andr\xc3\xa9 Racz' +p94986 +sg25273 +S'etching, engraving, and aquatint' +p94987 +sg25275 +S'1945' +p94988 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b64.jpg' +p94989 +sg25267 +g27 +sa(dp94990 +g25273 +S'etching, engraving, and aquatint' +p94991 +sg25267 +g27 +sg25275 +S'1945' +p94992 +sg25268 +S'Perseus Beheading Medusa, V' +p94993 +sg25270 +S'Andr\xc3\xa9 Racz' +p94994 +sa(dp94995 +g25273 +S'color etching, engraving, and aquatint on wove paper' +p94996 +sg25267 +g27 +sg25275 +S'1945' +p94997 +sg25268 +S'Perseus Beheading Medusa, VI' +p94998 +sg25270 +S'Andr\xc3\xa9 Racz' +p94999 +sa(dp95000 +g25273 +S'color etching, engraving, and aquatint' +p95001 +sg25267 +g27 +sg25275 +S'1945' +p95002 +sg25268 +S'Perseus Beheading Medusa, VII' +p95003 +sg25270 +S'Andr\xc3\xa9 Racz' +p95004 +sa(dp95005 +g25273 +S'color etching, engraving, and aquatint' +p95006 +sg25267 +g27 +sg25275 +S'1945' +p95007 +sg25268 +S'Perseus Beheading Medusa, VIII' +p95008 +sg25270 +S'Andr\xc3\xa9 Racz' +p95009 +sa(dp95010 +g25273 +S'woodcut' +p95011 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95012 +sg25268 +S'"And he had in his Right hand seven stars..."I.16' +p95013 +sg25270 +S'Bernard Reder' +p95014 +sa(dp95015 +g25273 +S'woodcut' +p95016 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95017 +sg25268 +S'"And before the throne there was a sea of glass..." IV.6' +p95018 +sg25270 +S'Bernard Reder' +p95019 +sa(dp95020 +g25268 +S'The Crucifixion' +p95021 +sg25270 +S'Israhel van Meckenem' +p95022 +sg25273 +S'engraving' +p95023 +sg25275 +S'c. 1475' +p95024 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a42c.jpg' +p95025 +sg25267 +g27 +sa(dp95026 +g25273 +S'woodcut' +p95027 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95028 +sg25268 +S'"And I saw, and behold a white horse..." VI.2' +p95029 +sg25270 +S'Bernard Reder' +p95030 +sa(dp95031 +g25273 +S'woodcut' +p95032 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95033 +sg25268 +S'"And a third part of the creatures which werein the sea and had life died..." VIII.9' +p95034 +sg25270 +S'Bernard Reder' +p95035 +sa(dp95036 +g25273 +S'woodcut' +p95037 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95038 +sg25268 +S'"And the shapes of the locusts..." IX.7' +p95039 +sg25270 +S'Bernard Reder' +p95040 +sa(dp95041 +g25273 +S'woodcut' +p95042 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95043 +sg25268 +S'"And there appeared another wonder in heaven;and behold a great red dragon..." XII.3' +p95044 +sg25270 +S'Bernard Reder' +p95045 +sa(dp95046 +g25273 +S'woodcut' +p95047 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95048 +sg25268 +S'"And I stood upon the sand of the sea and sawa beast rise up..." XIII.1' +p95049 +sg25270 +S'Bernard Reder' +p95050 +sa(dp95051 +g25273 +S'woodcut' +p95052 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95053 +sg25268 +S'"And I saw another sign in heaven...seven angels..." XV.1' +p95054 +sg25270 +S'Bernard Reder' +p95055 +sa(dp95056 +g25273 +S'woodcut' +p95057 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95058 +sg25268 +S'"And the fourth angel poured out his vial..."XVI.8' +p95059 +sg25270 +S'Bernard Reder' +p95060 +sa(dp95061 +g25273 +S'woodcut' +p95062 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95063 +sg25268 +S'"And the sixth angel poured out his vial..." XVI.8' +p95064 +sg25270 +S'Bernard Reder' +p95065 +sa(dp95066 +g25273 +S'woodcut' +p95067 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95068 +sg25268 +S'"And I saw a woman sit upon a scarlet coloured beast..." XVII.3' +p95069 +sg25270 +S'Bernard Reder' +p95070 +sa(dp95071 +g25273 +S'woodcut' +p95072 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95073 +sg25268 +S'"Babylon the great is fallen..." XVIII.2' +p95074 +sg25270 +S'Bernard Reder' +p95075 +sa(dp95076 +g25268 +S'The Crucifixion' +p95077 +sg25270 +S'Israhel van Meckenem' +p95078 +sg25273 +S'engraving' +p95079 +sg25275 +S'c. 1490/1500' +p95080 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a44f.jpg' +p95081 +sg25267 +g27 +sa(dp95082 +g25273 +S'woodcut' +p95083 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95084 +sg25268 +S'"And the Kings of the earth..." XVIII.9' +p95085 +sg25270 +S'Bernard Reder' +p95086 +sa(dp95087 +g25273 +S'woodcut' +p95088 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95089 +sg25268 +S'"And I saw the heaven opened, and behold a white horse..." XIX.11' +p95090 +sg25270 +S'Bernard Reder' +p95091 +sa(dp95092 +g25273 +S'woodcut' +p95093 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95094 +sg25268 +S'"And there went out another horse that was red..." VI.4' +p95095 +sg25270 +S'Bernard Reder' +p95096 +sa(dp95097 +g25273 +S'woodcut' +p95098 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95099 +sg25268 +S'"And I saw the Dead..." XX.12' +p95100 +sg25270 +S'Bernard Reder' +p95101 +sa(dp95102 +g25273 +S'woodcut' +p95103 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95104 +sg25268 +S'"And I saw the Holy City..."' +p95105 +sg25270 +S'Bernard Reder' +p95106 +sa(dp95107 +g25273 +S'woodcut' +p95108 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95109 +sg25268 +S'"And the beast was taken and with him the false prophet..." XIX.20' +p95110 +sg25270 +S'Bernard Reder' +p95111 +sa(dp95112 +g25273 +S'woodcut' +p95113 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95114 +sg25268 +S'"And the beast was taken..." XIX.20' +p95115 +sg25270 +S'Bernard Reder' +p95116 +sa(dp95117 +g25273 +S'woodcut' +p95118 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95119 +sg25268 +S'"And the beast was taken..." XIX.20' +p95120 +sg25270 +S'Bernard Reder' +p95121 +sa(dp95122 +g25273 +S'woodcut' +p95123 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95124 +sg25268 +S'Saint John' +p95125 +sg25270 +S'Bernard Reder' +p95126 +sa(dp95127 +g25273 +S'woodcut' +p95128 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95129 +sg25268 +S'"He had in his hand..."' +p95130 +sg25270 +S'Bernard Reder' +p95131 +sa(dp95132 +g25268 +S'The Crucifixion' +p95133 +sg25270 +S'Israhel van Meckenem' +p95134 +sg25273 +S'engraving' +p95135 +sg25275 +S'c. 1480' +p95136 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a451.jpg' +p95137 +sg25267 +g27 +sa(dp95138 +g25273 +S'woodcut' +p95139 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95140 +sg25268 +S'"The sixth angel..."' +p95141 +sg25270 +S'Bernard Reder' +p95142 +sa(dp95143 +g25268 +S'Vue Prise de la grande avenue entre les deux Ecuries' +p95144 +sg25270 +S'Jean-Baptiste Rigaud' +p95145 +sg25273 +S'etching and engraving' +p95146 +sg25275 +S'unknown date\n' +p95147 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009666.jpg' +p95148 +sg25267 +g27 +sa(dp95149 +g25268 +S'Vue des Ecuries de Versailles Prise de la Seconde Grille' +p95150 +sg25270 +S'Jean-Baptiste Rigaud' +p95151 +sg25273 +S'etching and engraving' +p95152 +sg25275 +S'unknown date\n' +p95153 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009667.jpg' +p95154 +sg25267 +g27 +sa(dp95155 +g25268 +S'Vue Particuliere de la Chapelle du Chateau deVersailles' +p95156 +sg25270 +S'Jean-Baptiste Rigaud' +p95157 +sg25273 +S'etching and engraving' +p95158 +sg25275 +S'unknown date\n' +p95159 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009668.jpg' +p95160 +sg25267 +g27 +sa(dp95161 +g25268 +S'Vue du Chateau de Versailles Prise du Cote dela Terrasse vis a vis la Chapelle' +p95162 +sg25270 +S'Jean-Baptiste Rigaud' +p95163 +sg25273 +S'etching and engraving' +p95164 +sg25275 +S'unknown date\n' +p95165 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009669.jpg' +p95166 +sg25267 +g27 +sa(dp95167 +g25268 +S"Vue du Chateau et d'une Partie de la Ville deVersailles" +p95168 +sg25270 +S'Jean-Baptiste Rigaud' +p95169 +sg25273 +S'etching and engraving' +p95170 +sg25275 +S'unknown date\n' +p95171 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009670.jpg' +p95172 +sg25267 +g27 +sa(dp95173 +g25268 +S"Vue du Chateau de Versailles du Cote de l'Orangerie" +p95174 +sg25270 +S'Jean-Baptiste Rigaud' +p95175 +sg25273 +S'etching and engraving' +p95176 +sg25275 +S'unknown date\n' +p95177 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000966a.jpg' +p95178 +sg25267 +g27 +sa(dp95179 +g25268 +S"Vue de l'Orangerie de Versailles" +p95180 +sg25270 +S'Jean-Baptiste Rigaud' +p95181 +sg25273 +S'etching and engraving' +p95182 +sg25275 +S'unknown date\n' +p95183 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000966f.jpg' +p95184 +sg25267 +g27 +sa(dp95185 +g25268 +S'Vue du Bassin de Latone Prise du Bord de la Terrasse du Chateau' +p95186 +sg25270 +S'Jean-Baptiste Rigaud' +p95187 +sg25273 +S'etching and engraving' +p95188 +sg25275 +S'unknown date\n' +p95189 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000966e.jpg' +p95190 +sg25267 +g27 +sa(dp95191 +g25268 +S'Vue du Bassin de Neptune dans le Jardin de Versailles' +p95192 +sg25270 +S'Jean-Baptiste Rigaud' +p95193 +sg25273 +S'etching and engraving' +p95194 +sg25275 +S'unknown date\n' +p95195 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000966d.jpg' +p95196 +sg25267 +g27 +sa(dp95197 +g25268 +S'The Birth of the Virgin' +p95198 +sg25270 +S'Artist Information (' +p95199 +sg25273 +S'(artist after)' +p95200 +sg25275 +S'\n' +p95201 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a43f.jpg' +p95202 +sg25267 +g27 +sa(dp95203 +g25268 +S"Vue de Trianon dans le Parc de Versailles du Cote de l'Avenue" +p95204 +sg25270 +S'Jean-Baptiste Rigaud' +p95205 +sg25273 +S'etching and engraving' +p95206 +sg25275 +S'unknown date\n' +p95207 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000966c.jpg' +p95208 +sg25267 +g27 +sa(dp95209 +g25268 +S'Vue du Chateau de Trianon du Cote du Parterre' +p95210 +sg25270 +S'Jean-Baptiste Rigaud' +p95211 +sg25273 +S'etching and engraving' +p95212 +sg25275 +S'unknown date\n' +p95213 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009671.jpg' +p95214 +sg25267 +g27 +sa(dp95215 +g25268 +S'Vue du Paysage de la Maison Royalle de Saint Cir' +p95216 +sg25270 +S'Jean-Baptiste Rigaud' +p95217 +sg25273 +S'etching and engraving' +p95218 +sg25275 +S'unknown date\n' +p95219 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000966b.jpg' +p95220 +sg25267 +g27 +sa(dp95221 +g25268 +S'La Salle du Bal' +p95222 +sg25270 +S'Jean-Baptiste Rigaud' +p95223 +sg25273 +S'etching and engraving' +p95224 +sg25275 +S'unknown date\n' +p95225 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000967d.jpg' +p95226 +sg25267 +g27 +sa(dp95227 +g25268 +S'La Colonade' +p95228 +sg25270 +S'Jean-Baptiste Rigaud' +p95229 +sg25273 +S'etching and engraving' +p95230 +sg25275 +S'unknown date\n' +p95231 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000967a.jpg' +p95232 +sg25267 +g27 +sa(dp95233 +g25268 +S"L'Isle Royalle" +p95234 +sg25270 +S'Jean-Baptiste Rigaud' +p95235 +sg25273 +S'etching and engraving' +p95236 +sg25275 +S'unknown date\n' +p95237 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009672.jpg' +p95238 +sg25267 +g27 +sa(dp95239 +g25268 +S'La Salle aux Marronniers' +p95240 +sg25270 +S'Jean-Baptiste Rigaud' +p95241 +sg25273 +S'etching and engraving' +p95242 +sg25275 +S'unknown date\n' +p95243 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009675.jpg' +p95244 +sg25267 +g27 +sa(dp95245 +g25268 +S"Le Bassin d'Apollon" +p95246 +sg25270 +S'Jean-Baptiste Rigaud' +p95247 +sg25273 +S'etching and engraving' +p95248 +sg25275 +S'unknown date\n' +p95249 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009673.jpg' +p95250 +sg25267 +g27 +sa(dp95251 +g25268 +S"Le Bassin d'Encelade" +p95252 +sg25270 +S'Jean-Baptiste Rigaud' +p95253 +sg25273 +S'etching and engraving' +p95254 +sg25275 +S'unknown date\n' +p95255 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009674.jpg' +p95256 +sg25267 +g27 +sa(dp95257 +g25268 +S"L'Obelisque" +p95258 +sg25270 +S'Jean-Baptiste Rigaud' +p95259 +sg25273 +S'etching and engraving' +p95260 +sg25275 +S'unknown date\n' +p95261 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000967b.jpg' +p95262 +sg25267 +g27 +sa(dp95263 +g25268 +S'The Marriage of the Virgin' +p95264 +sg25270 +S'Artist Information (' +p95265 +sg25273 +S'(artist after)' +p95266 +sg25275 +S'\n' +p95267 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a437.jpg' +p95268 +sg25267 +g27 +sa(dp95269 +g25268 +S"Le Th\xc3\xa9\xc3\xa2tre d'Eau" +p95270 +sg25270 +S'Jean-Baptiste Rigaud' +p95271 +sg25273 +S'etching and engraving' +p95272 +sg25275 +S'unknown date\n' +p95273 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009679.jpg' +p95274 +sg25267 +g27 +sa(dp95275 +g25268 +S'Les Domes' +p95276 +sg25270 +S'Jean-Baptiste Rigaud' +p95277 +sg25273 +S'etching and engraving' +p95278 +sg25275 +S'unknown date\n' +p95279 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009678.jpg' +p95280 +sg25267 +g27 +sa(dp95281 +g25268 +S"Les Bains d'Apollon" +p95282 +sg25270 +S'Jean-Baptiste Rigaud' +p95283 +sg25273 +S'etching and engraving' +p95284 +sg25275 +S'unknown date\n' +p95285 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000967c.jpg' +p95286 +sg25267 +g27 +sa(dp95287 +g25268 +S'Les Trois Fontaines' +p95288 +sg25270 +S'Jean-Baptiste Rigaud' +p95289 +sg25273 +S'etching and engraving' +p95290 +sg25275 +S'unknown date\n' +p95291 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009677.jpg' +p95292 +sg25267 +g27 +sa(dp95293 +g25268 +S"L'Arc de Triomphe" +p95294 +sg25270 +S'Jean-Baptiste Rigaud' +p95295 +sg25273 +S'etching and engraving' +p95296 +sg25275 +S'unknown date\n' +p95297 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009676.jpg' +p95298 +sg25267 +g27 +sa(dp95299 +g25268 +S'Frontispiece: The Dregs of Society (Las bas-fonds de la societe)' +p95300 +sg25270 +S'F\xc3\xa9licien Rops' +p95301 +sg25273 +S'etching' +p95302 +sg25275 +S'1864' +p95303 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d819.jpg' +p95304 +sg25267 +g27 +sa(dp95305 +g25268 +S'Frontispiece: The Waifs (Les Epaves)' +p95306 +sg25270 +S'F\xc3\xa9licien Rops' +p95307 +sg25273 +S'etching' +p95308 +sg25275 +S'1868' +p95309 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d811.jpg' +p95310 +sg25267 +g27 +sa(dp95311 +g25268 +S'The Red Iron (Le Fer Rouge)' +p95312 +sg25270 +S'F\xc3\xa9licien Rops' +p95313 +sg25273 +S'etching' +p95314 +sg25275 +S'1871' +p95315 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d812.jpg' +p95316 +sg25267 +g27 +sa(dp95317 +g25268 +S'Belgian Border, Bill of Disorder (Frontiere de Belgique. Billet a Desordre)' +p95318 +sg25270 +S'F\xc3\xa9licien Rops' +p95319 +sg25273 +S'etching' +p95320 +sg25275 +S'1871' +p95321 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d81a.jpg' +p95322 +sg25267 +g27 +sa(dp95323 +g25268 +S'Gaspard de la Nuit' +p95324 +sg25270 +S'F\xc3\xa9licien Rops' +p95325 +sg25273 +S'etching' +p95326 +sg25275 +S'1868' +p95327 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e86.jpg' +p95328 +sg25267 +g27 +sa(dp95329 +g25268 +S'Saint Sebastian' +p95330 +sg25270 +S'Tanzio da Varallo' +p95331 +sg25273 +S'oil on canvas' +p95332 +sg25275 +S'c. 1620/1630' +p95333 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000623.jpg' +p95334 +sg25267 +S"A fevered intensity in this portraval of Saint Sebastian marks it as a characteristic\nwork by Tanzio, whose native village of Varallo in the mountains north of Milan\nwas a major center of popular piety. The painter has shown Sebastian, who was persecuted\nas a Christian under Diocletian, being rescued by angels after the assault on him\nby the Emperor's archers. The thickset figure at the right who tenderly steadies\nSebastian's body for the angel's ministrations may be Saint Irene, who nursed the\nmartyr back to health.\n The visual excitement of Tanzio's portrayal serves to convey Sebastian's state of\nemotional transport and transcendence of bodily pain. Contributing to the fervid\ndrama is the extreme compression of the composition. Tanzio's large, solid forms\nare crowded by the frame, seeming to twist and strain to fit its confines. If the\nvivid illusionism and sharp contrasts of light and dark -- pulsating in the drapery\nacross Sebastian's lap and in the spiky patterns of expressively tapering fingers\n-- reveal a study of Caravaggio's art, Tanzio's use of discordant colors is uniquely\nhis own.\n " +p95335 +sa(dp95336 +g25268 +S'The Presentation in the Temple' +p95337 +sg25270 +S'Artist Information (' +p95338 +sg25273 +S'(artist after)' +p95339 +sg25275 +S'\n' +p95340 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a439.jpg' +p95341 +sg25267 +g27 +sa(dp95342 +g25268 +S'The Little Potato Peeler (La petite peleuse de pommes de terre)' +p95343 +sg25270 +S'F\xc3\xa9licien Rops' +p95344 +sg25273 +S'etching' +p95345 +sg25275 +S'unknown date\n' +p95346 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d813.jpg' +p95347 +sg25267 +g27 +sa(dp95348 +g25268 +S'The Train of Maris (Le train de Maris)' +p95349 +sg25270 +S'F\xc3\xa9licien Rops' +p95350 +sg25273 +S'etching' +p95351 +sg25275 +S'unknown date\n' +p95352 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d802.jpg' +p95353 +sg25267 +g27 +sa(dp95354 +g25273 +S'hand-colored etching' +p95355 +sg25267 +g27 +sg25275 +S'1797' +p95356 +sg25268 +S'Feyge Dam, with part of the Fish Market at Amsterdam' +p95357 +sg25270 +S'Thomas Rowlandson' +p95358 +sa(dp95359 +g25273 +S'colored aquatint' +p95360 +sg25267 +g27 +sg25275 +S'1797' +p95361 +sg25268 +S'Place de Meir at Antwerp' +p95362 +sg25270 +S'Thomas Rowlandson' +p95363 +sa(dp95364 +g25268 +S'Indian Dance' +p95365 +sg25270 +S'Louis Schanker' +p95366 +sg25273 +S'woodcut' +p95367 +sg25275 +S'unknown date\n' +p95368 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b86.jpg' +p95369 +sg25267 +g27 +sa(dp95370 +g25273 +S'etching' +p95371 +sg25267 +g27 +sg25275 +S'1945' +p95372 +sg25268 +S'The Flight into Egypt' +p95373 +sg25270 +S'Carl Max Schultheiss' +p95374 +sa(dp95375 +g25268 +S'Saint Jerome Writing' +p95376 +sg25270 +S'Hans Springinklee' +p95377 +sg25273 +S'woodcut' +p95378 +sg25275 +S'1522' +p95379 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b27d.jpg' +p95380 +sg25267 +g27 +sa(dp95381 +g25273 +S'drypoint' +p95382 +sg25267 +g27 +sg25275 +S'1943' +p95383 +sg25268 +S'Half Moon Bay' +p95384 +sg25270 +S'James Swann' +p95385 +sa(dp95386 +g25273 +S'color screenprint' +p95387 +sg25267 +g27 +sg25275 +S'1945' +p95388 +sg25268 +S'Prayer' +p95389 +sg25270 +S'Albert Urban' +p95390 +sa(dp95391 +g25268 +S'Jan de Wael' +p95392 +sg25270 +S'Sir Anthony van Dyck' +p95393 +sg25273 +S'etching and engraving' +p95394 +sg25275 +S'probably 1626/1641' +p95395 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0f0.jpg' +p95396 +sg25267 +g27 +sa(dp95397 +g25268 +S'Massacre of the Innocents' +p95398 +sg25270 +S'Artist Information (' +p95399 +sg25273 +S'(artist after)' +p95400 +sg25275 +S'\n' +p95401 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a436.jpg' +p95402 +sg25267 +g27 +sa(dp95403 +g25273 +S'engraving' +p95404 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95405 +sg25268 +S"L'ecurie de Bucephale" +p95406 +sg25270 +S'Roger Vieillard' +p95407 +sa(dp95408 +g25273 +S'engraving [printed by Lacouriere]' +p95409 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95410 +sg25268 +S'Hommage a Rimbaud' +p95411 +sg25270 +S'Roger Vieillard' +p95412 +sa(dp95413 +g25273 +S'engraving [printed by Lacouriere]' +p95414 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95415 +sg25268 +S'Hommage a Rimbaud' +p95416 +sg25270 +S'Roger Vieillard' +p95417 +sa(dp95418 +g25273 +S'engraving on blue paper' +p95419 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95420 +sg25268 +S'Notre Dame de Paris' +p95421 +sg25270 +S'Roger Vieillard' +p95422 +sa(dp95423 +g25273 +S'engraving' +p95424 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95425 +sg25268 +S'Temple de la Liberte' +p95426 +sg25270 +S'Roger Vieillard' +p95427 +sa(dp95428 +g25268 +S"Head of an Old Woman (Visscher's Mother)" +p95429 +sg25270 +S'Cornelis Visscher' +p95430 +sg25273 +S'etching and engraving' +p95431 +sg25275 +S'unknown date\n' +p95432 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d493.jpg' +p95433 +sg25267 +g27 +sa(dp95434 +g25273 +S'woodcut' +p95435 +sg25267 +g27 +sg25275 +S'1584' +p95436 +sg25268 +S'Playing Cards' +p95437 +sg25270 +S'Andreas ? Voigt' +p95438 +sa(dp95439 +g25273 +S'woodcut' +p95440 +sg25267 +g27 +sg25275 +S'1584' +p95441 +sg25268 +S'Playing Cards' +p95442 +sg25270 +S'Andreas ? Voigt' +p95443 +sa(dp95444 +g25273 +S'woodcut' +p95445 +sg25267 +g27 +sg25275 +S'1584' +p95446 +sg25268 +S'Playing Cards' +p95447 +sg25270 +S'Andreas ? Voigt' +p95448 +sa(dp95449 +g25268 +S'A Gallery in the Gymnasium (Une galerie au gymnase)' +p95450 +sg25270 +S'Edouard Vuillard' +p95451 +sg25273 +S'color lithograph' +p95452 +sg25275 +S'published 1900' +p95453 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f2b.jpg' +p95454 +sg25267 +g27 +sa(dp95455 +g25268 +S'The Death of the Virgin' +p95456 +sg25270 +S'Israhel van Meckenem' +p95457 +sg25273 +S'engraving' +p95458 +sg25275 +S'c. 1480/1490' +p95459 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a44d.jpg' +p95460 +sg25267 +g27 +sa(dp95461 +g25268 +S'Planks Attached to Four Trees' +p95462 +sg25270 +S'Anthonie Waterloo' +p95463 +sg25273 +S'etching' +p95464 +sg25275 +S'unknown date\n' +p95465 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4a5.jpg' +p95466 +sg25267 +g27 +sa(dp95467 +g25268 +S'Churchyard at the Waterside' +p95468 +sg25270 +S'Anthonie Waterloo' +p95469 +sg25273 +S'etching' +p95470 +sg25275 +S'unknown date\n' +p95471 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4ae.jpg' +p95472 +sg25267 +g27 +sa(dp95473 +g25268 +S'Cottage on a Hill' +p95474 +sg25270 +S'Anthonie Waterloo' +p95475 +sg25273 +S'etching' +p95476 +sg25275 +S'unknown date\n' +p95477 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4a6.jpg' +p95478 +sg25267 +g27 +sa(dp95479 +g25268 +S'Village Steeple at the Seaside' +p95480 +sg25270 +S'Anthonie Waterloo' +p95481 +sg25273 +S'etching' +p95482 +sg25275 +S'unknown date\n' +p95483 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4a7.jpg' +p95484 +sg25267 +g27 +sa(dp95485 +g25268 +S'Departure of Two Fishermen' +p95486 +sg25270 +S'Anthonie Waterloo' +p95487 +sg25273 +S'etching' +p95488 +sg25275 +S'unknown date\n' +p95489 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4a8.jpg' +p95490 +sg25267 +g27 +sa(dp95491 +g25268 +S'Two Cows on a Ferry' +p95492 +sg25270 +S'Anthonie Waterloo' +p95493 +sg25273 +S'etching' +p95494 +sg25275 +S'unknown date\n' +p95495 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4a9.jpg' +p95496 +sg25267 +g27 +sa(dp95497 +g25268 +S'Traveler Passing Two Large Trees' +p95498 +sg25270 +S'Anthonie Waterloo' +p95499 +sg25273 +S'etching' +p95500 +sg25275 +S'unknown date\n' +p95501 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4ab.jpg' +p95502 +sg25267 +g27 +sa(dp95503 +g25268 +S'Rider and Flock on a Bridge' +p95504 +sg25270 +S'Anthonie Waterloo' +p95505 +sg25273 +S'etching' +p95506 +sg25275 +S'unknown date\n' +p95507 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4aa.jpg' +p95508 +sg25267 +g27 +sa(dp95509 +g25268 +S'The Small Hamlet' +p95510 +sg25270 +S'Anthonie Waterloo' +p95511 +sg25273 +S'etching' +p95512 +sg25275 +S'unknown date\n' +p95513 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4a3.jpg' +p95514 +sg25267 +g27 +sa(dp95515 +g25268 +S'Three Peasants on a Knoll outside a Hamlet' +p95516 +sg25270 +S'Anthonie Waterloo' +p95517 +sg25273 +S'etching' +p95518 +sg25275 +S'unknown date\n' +p95519 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4a4.jpg' +p95520 +sg25267 +g27 +sa(dp95521 +g25268 +S'Christ Appearing to the Disciples' +p95522 +sg25270 +S'Israhel van Meckenem' +p95523 +sg25273 +S'engraving' +p95524 +sg25275 +S'c. 1465' +p95525 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a432.jpg' +p95526 +sg25267 +g27 +sa(dp95527 +g25268 +S'The Sentry Box on the Wall' +p95528 +sg25270 +S'Anthonie Waterloo' +p95529 +sg25273 +S'etching' +p95530 +sg25275 +S'unknown date\n' +p95531 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4ac.jpg' +p95532 +sg25267 +g27 +sa(dp95533 +g25268 +S'Four Men on a Stone Bridge' +p95534 +sg25270 +S'Anthonie Waterloo' +p95535 +sg25273 +S'etching' +p95536 +sg25275 +S'unknown date\n' +p95537 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4ad.jpg' +p95538 +sg25267 +g27 +sa(dp95539 +g25273 +S'lithograph' +p95540 +sg25267 +g27 +sg25275 +S'1945' +p95541 +sg25268 +S'Maine Lobsterman' +p95542 +sg25270 +S'Stow Wengenroth' +p95543 +sa(dp95544 +g25273 +S'pen and black ink on laid paper' +p95545 +sg25267 +g27 +sg25275 +S'1943' +p95546 +sg25268 +S'Girl Sleeping' +p95547 +sg25270 +S'Paul Wieghardt' +p95548 +sa(dp95549 +g25273 +S'pen and black ink' +p95550 +sg25267 +g27 +sg25275 +S'1945' +p95551 +sg25268 +S'Two Girls on the Floor' +p95552 +sg25270 +S'Paul Wieghardt' +p95553 +sa(dp95554 +g25268 +S'Reguliers Gate (Regeliers Poort)' +p95555 +sg25270 +S'Reinier Nooms, called Zeeman' +p95556 +sg25273 +S', unknown date' +p95557 +sg25275 +S'\n' +p95558 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5eb.jpg' +p95559 +sg25267 +g27 +sa(dp95560 +g25268 +S'Zaagmolen Gate (Saaghmeulens Poortie)' +p95561 +sg25270 +S'Reinier Nooms, called Zeeman' +p95562 +sg25273 +S', unknown date' +p95563 +sg25275 +S'\n' +p95564 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5ec.jpg' +p95565 +sg25267 +g27 +sa(dp95566 +g25268 +S'Haarlem Gate (Haerlemmer Poort)' +p95567 +sg25270 +S'Reinier Nooms, called Zeeman' +p95568 +sg25273 +S', 1617' +p95569 +sg25275 +S'\n' +p95570 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5ed.jpg' +p95571 +sg25267 +g27 +sa(dp95572 +g25268 +S'Raam Gate (Raam Poortie)' +p95573 +sg25270 +S'Reinier Nooms, called Zeeman' +p95574 +sg25273 +S', unknown date' +p95575 +sg25275 +S'\n' +p95576 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5ee.jpg' +p95577 +sg25267 +g27 +sa(dp95578 +g25268 +S'St. Antonis Gate (St. Antonis Poort)' +p95579 +sg25270 +S'Reinier Nooms, called Zeeman' +p95580 +sg25273 +S', 1636' +p95581 +sg25275 +S'\n' +p95582 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5ef.jpg' +p95583 +sg25267 +g27 +sa(dp95584 +g25268 +S'Heyligeweg Gate (Heyligewechs Poort)' +p95585 +sg25270 +S'Reinier Nooms, called Zeeman' +p95586 +sg25273 +S', 1638' +p95587 +sg25275 +S'\n' +p95588 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5ea.jpg' +p95589 +sg25267 +g27 +sa(dp95590 +g25268 +S'Carl Larsson' +p95591 +sg25270 +S'Anders Zorn' +p95592 +sg25273 +S'etching' +p95593 +sg25275 +S'1897' +p95594 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed36.jpg' +p95595 +sg25267 +g27 +sa(dp95596 +g25268 +S'Mr. and Mrs. Furstenburg' +p95597 +sg25270 +S'Anders Zorn' +p95598 +sg25273 +S'etching' +p95599 +sg25275 +S'1895' +p95600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed37.jpg' +p95601 +sg25267 +g27 +sa(dp95602 +g25273 +S'woodcut' +p95603 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95604 +sg25268 +S'"There appeared a great dragon..."' +p95605 +sg25270 +S'Bernard Reder' +p95606 +sa(dp95607 +g25268 +S'Cavalier and Two Ladies on Horseback' +p95608 +sg25270 +S'Constantin Guys' +p95609 +sg25273 +S'watercolor' +p95610 +sg25275 +S'unknown date\n' +p95611 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073a1.jpg' +p95612 +sg25267 +g27 +sa(dp95613 +g25268 +S'Head and Bust of a Woman' +p95614 +sg25270 +S'Sir Joshua Reynolds' +p95615 +sg25273 +S'pastel and charcoal on laid paper' +p95616 +sg25275 +S'unknown date\n' +p95617 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e67.jpg' +p95618 +sg25267 +g27 +sa(dp95619 +g25273 +S'Italian, 1733 - 1813' +p95620 +sg25267 +g27 +sg25275 +S'(related artist)' +p95621 +sg25268 +S'Portrait of a Man' +p95622 +sg25270 +S'Artist Information (' +p95623 +sa(dp95624 +g25268 +S'La morgue, Paris (The Mortuary)' +p95625 +sg25270 +S'Charles Meryon' +p95626 +sg25273 +S'etching' +p95627 +sg25275 +S'1854' +p95628 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d1d.jpg' +p95629 +sg25267 +g27 +sa(dp95630 +g25273 +S'watercolor on ivory in metal locket' +p95631 +sg25267 +g27 +sg25275 +S'1801/1805' +p95632 +sg25268 +S'Maria Miles Heyward (1784-1862)' +p95633 +sg25270 +S'Edward Greene Malbone' +p95634 +sa(dp95635 +g25268 +S'Archbishop Diomede Falconio' +p95636 +sg25270 +S'Thomas Eakins' +p95637 +sg25273 +S'oil on canvas' +p95638 +sg25275 +S'1905' +p95639 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000008d.jpg' +p95640 +sg25267 +S'The poet Walt Whitman declared, “Eakins is not a painter, he\r\nis a force.” Indeed, the uncompromising honesty in Eakins’\r\nportraits was thought too crude for social propriety. As one\r\nPhiladelphia gentleman joked, Eakins “would bring out all the\r\ntraits of my character that I had been trying to hide from the\r\npublic for years.”\n A few doctors, professors, and other intellectuals did\r\nappreciate his penetrating analyses. The full-length \n The church scholar, at age sixty-three, was only two years\r\nolder than the painter; even so, Eakins rudely called Falconio\r\n“the old man.” Eakins’ manners were blunt, and his art seldom\r\nflattered. Among the National Gallery’s other candid, late portraits\r\nby Eakins are \n ' +p95641 +sa(dp95642 +g25268 +S'Study' +p95643 +sg25270 +S'James McNeill Whistler' +p95644 +sg25273 +S'lithograph' +p95645 +sg25275 +S'1895' +p95646 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab26.jpg' +p95647 +sg25267 +g27 +sa(dp95648 +g25268 +S'Unfinished Sketch of Lady Haden' +p95649 +sg25270 +S'James McNeill Whistler' +p95650 +sg25273 +S'lithograph' +p95651 +sg25275 +S'1895' +p95652 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abb7.jpg' +p95653 +sg25267 +g27 +sa(dp95654 +g25268 +S'Laoco\xc3\xb6n' +p95655 +sg25270 +S'El Greco' +p95656 +sg25273 +S', c. 1610/1614' +p95657 +sg25275 +S'\n' +p95658 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000495.jpg' +p95659 +sg25267 +S"Widespread interest in the story of Laocoön, a mythical priest of Troy, developed after an ancient, monumental sculpture representing him and his two sons was unearthed in 1506 in Rome. Suspecting trickery, Laocoön had warned his countrymen not to accept the wooden horse left outside Troy by the Greeks and had hurled his spear at it to prove that it was hollow. Thus the priest incurred the wrath of the gods, for desecrating an object dedicated to the goddess Athena. El Greco depicted serpents, sent by the angry gods, engaging Laocoön and one son in a mortal struggle, while a second son lies already dead at his father's side. The identity of the unfinished figures on the right continues to be debated; perhaps they represent the gods themselves\r\nsupervising their vengeance.\n Utilizing every available means — writhing line, lurid color, and illogically conceived space — the artist projected an unrelieved sense of doom. The figures seem incorporeal; sinuous outlines and anti–natural flesh tones contribute to their specterlike appearance. The striking setting carries this visionary late work of El Greco to an apocalyptic extreme.\n Did El Greco intend to relate this mythical theme of conflict and divine retribution to the Inquisition then raging in Toledo? Whatever the case, the story of Laocoön is the only classical theme he is known to have painted.\n " +p95660 +sa(dp95661 +g25268 +S'Madonna and Child in a Landscape' +p95662 +sg25270 +S'Giovanni Bellini' +p95663 +sg25273 +S'oil on panel' +p95664 +sg25275 +S'c. 1480/1485' +p95665 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000075f.jpg' +p95666 +sg25267 +g27 +sa(dp95667 +g25268 +S'Portrait of a Youth' +p95668 +sg25270 +S'Giovanni Antonio Boltraffio' +p95669 +sg25273 +S'oil on panel' +p95670 +sg25275 +S'c. 1495/1498' +p95671 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007f6.jpg' +p95672 +sg25267 +g27 +sa(dp95673 +g25268 +S'Christ on the Cross with the Virgin and Saint John' +p95674 +sg25270 +S'Hans Brosamer' +p95675 +sg25273 +S'engraving' +p95676 +sg25275 +S'1542' +p95677 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b093.jpg' +p95678 +sg25267 +g27 +sa(dp95679 +g25273 +S'(artist)' +p95680 +sg25267 +g27 +sg25275 +S'\n' +p95681 +sg25268 +S'The Carcass' +p95682 +sg25270 +S'Artist Information (' +p95683 +sa(dp95684 +g25268 +S'The Trinity' +p95685 +sg25270 +S'Artist Information (' +p95686 +sg25273 +S'Bohemian, active 1414' +p95687 +sg25275 +S'(related artist)' +p95688 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e26.jpg' +p95689 +sg25267 +g27 +sa(dp95690 +g25268 +S'Saint John' +p95691 +sg25270 +S'Netherlandish 15th Century' +p95692 +sg25273 +S'Lehrs, Vol. 4, p.250, no. 50' +p95693 +sg25275 +S'\nengraving' +p95694 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccd8.jpg' +p95695 +sg25267 +g27 +sa(dp95696 +g25268 +S'Madonna and Child with Saints Christopher and Erasmus' +p95697 +sg25270 +S'Netherlandish 15th Century' +p95698 +sg25273 +S'Lehrs, undescribed' +p95699 +sg25275 +S'\nengraving' +p95700 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccd9.jpg' +p95701 +sg25267 +g27 +sa(dp95702 +g25268 +S'Scribe Writing and the Author Presenting His Book' +p95703 +sg25270 +S'Georges Hurtrel' +p95704 +sg25273 +S'pen and black ink with black wash, heightened with white and gold, on gray prepared paper (grisaille)' +p95705 +sg25275 +S'in or before 1870' +p95706 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073a7.jpg' +p95707 +sg25267 +g27 +sa(dp95708 +g25273 +S'overall: 48.7 x 71 cm (19 3/16 x 27 15/16 in.)' +p95709 +sg25267 +g27 +sg25275 +S'\ntempera and gold leaf on vellum' +p95710 +sg25268 +S'Joshua before the Lord' +p95711 +sg25270 +S'French 13th Century' +p95712 +sa(dp95713 +g25273 +S'overall: 48.5 x 35.8 cm (19 1/8 x 14 1/8 in.)' +p95714 +sg25267 +g27 +sg25275 +S'\ntempera and gold leaf on vellum' +p95715 +sg25268 +S'Moses Counting the Children of Israel' +p95716 +sg25270 +S'French 13th Century' +p95717 +sa(dp95718 +g25273 +S'overall: 11.6 x 20.9 cm (4 9/16 x 8 1/4 in.)' +p95719 +sg25267 +g27 +sg25275 +S'\nminiature on vellum' +p95720 +sg25268 +S'Meeting of Achilles and Hector' +p95721 +sg25270 +S'Netherlandish 15th Century' +p95722 +sa(dp95723 +g25273 +S'miniature on vellum' +p95724 +sg25267 +g27 +sg25275 +S'c. 1409' +p95725 +sg25268 +S'Saint Christopher Carrying the Christ Child' +p95726 +sg25270 +S'Limbourg Brothers' +p95727 +sa(dp95728 +g25268 +S'Paradise with Christ in the Lap of Abraham' +p95729 +sg25270 +S'German 13th Century' +p95730 +sg25273 +S'overall: 22.4 x 15.7 cm (8 13/16 x 6 3/16 in.)' +p95731 +sg25275 +S'\ntempera and gold leaf on vellum' +p95732 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00033/a00033d4.jpg' +p95733 +sg25267 +g27 +sa(dp95734 +g25268 +S'The Nativity with Six Dominican Monks' +p95735 +sg25270 +S'Artist Information (' +p95736 +sg25273 +g27 +sg25275 +S'(artist)' +p95737 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00034/a0003423.jpg' +p95738 +sg25267 +g27 +sa(dp95739 +g25268 +S'Death of Saint Benedict' +p95740 +sg25270 +S'Fra Gregorio Mutii da Montalcino' +p95741 +sg25273 +S'miniature on vellum' +p95742 +sg25275 +S'1390/1395' +p95743 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d67.jpg' +p95744 +sg25267 +g27 +sa(dp95745 +g25268 +S'Saint Francis Receiving the Stigmata' +p95746 +sg25270 +S'Cosm\xc3\xa8 Tura' +p95747 +sg25273 +S'miniature on vellum' +p95748 +sg25275 +S'1470s' +p95749 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00028/a00028d8.jpg' +p95750 +sg25267 +g27 +sa(dp95751 +g25268 +S'Self-Portrait' +p95752 +sg25270 +S'Ernst Barlach' +p95753 +sg25273 +S'woodcut on yellowish old German paper' +p95754 +sg25275 +S'1928' +p95755 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b76d.jpg' +p95756 +sg25267 +g27 +sa(dp95757 +g25268 +S'The Prince at the Bird-Catching' +p95758 +sg25270 +S'Leonhard Beck' +p95759 +sg25273 +S'woodcut' +p95760 +sg25275 +S'1514/1516' +p95761 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000aef8.jpg' +p95762 +sg25267 +g27 +sa(dp95763 +g25273 +S'lithograph in yellow' +p95764 +sg25267 +g27 +sg25275 +S'1945' +p95765 +sg25268 +S"Coq d'or" +p95766 +sg25270 +S'Alfred Bendiner' +p95767 +sa(dp95768 +g25273 +S'lithograph in blue' +p95769 +sg25267 +g27 +sg25275 +S'1945' +p95770 +sg25268 +S"Coq d'or" +p95771 +sg25270 +S'Alfred Bendiner' +p95772 +sa(dp95773 +g25273 +S'lithograph in yellow and blue (superimposed printing)' +p95774 +sg25267 +g27 +sg25275 +S'1945' +p95775 +sg25268 +S"Coq d'or" +p95776 +sg25270 +S'Alfred Bendiner' +p95777 +sa(dp95778 +g25273 +S'lithograph in red' +p95779 +sg25267 +g27 +sg25275 +S'1945' +p95780 +sg25268 +S"Coq d'or" +p95781 +sg25270 +S'Alfred Bendiner' +p95782 +sa(dp95783 +g25273 +S'lithograph in red and yellow' +p95784 +sg25267 +g27 +sg25275 +S'1945' +p95785 +sg25268 +S"Coq d'or" +p95786 +sg25270 +S'Alfred Bendiner' +p95787 +sa(dp95788 +g25273 +S'lithograph in red, yellow, and blue' +p95789 +sg25267 +g27 +sg25275 +S'1945' +p95790 +sg25268 +S"Coq d'or" +p95791 +sg25270 +S'Alfred Bendiner' +p95792 +sa(dp95793 +g25273 +S'lithograph' +p95794 +sg25267 +g27 +sg25275 +S'1944' +p95795 +sg25268 +S'The Home Front' +p95796 +sg25270 +S'Alfred Bendiner' +p95797 +sa(dp95798 +g25273 +S'etching on laid paper' +p95799 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95800 +sg25268 +S'Title Page for Set of Sheep' +p95801 +sg25270 +S'Nicolaes Pietersz Berchem' +p95802 +sa(dp95803 +g25273 +S'bound volume with 23 etchings,including "Set of Sheep" (6 prints), "Set of Goats" (6 prints), "Woman\'s Book" (5 of set of 8), & "Man\'s Book" (6 of 8)' +p95804 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95805 +sg25268 +S'Album of Animal Etchings' +p95806 +sg25270 +S'Nicolaes Pietersz Berchem' +p95807 +sa(dp95808 +g25273 +S'etching on laid paper' +p95809 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95810 +sg25268 +S'Two Sheep' +p95811 +sg25270 +S'Nicolaes Pietersz Berchem' +p95812 +sa(dp95813 +g25273 +S'etching on laid paper' +p95814 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95815 +sg25268 +S'Two Sheep' +p95816 +sg25270 +S'Nicolaes Pietersz Berchem' +p95817 +sa(dp95818 +g25273 +S'etching on laid paper' +p95819 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95820 +sg25268 +S'Two Rams' +p95821 +sg25270 +S'Nicolaes Pietersz Berchem' +p95822 +sa(dp95823 +g25273 +S'etching on laid paper' +p95824 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95825 +sg25268 +S'Two Sheep' +p95826 +sg25270 +S'Nicolaes Pietersz Berchem' +p95827 +sa(dp95828 +g25273 +S'etching on laid paper' +p95829 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95830 +sg25268 +S'Two Sheep' +p95831 +sg25270 +S'Nicolaes Pietersz Berchem' +p95832 +sa(dp95833 +g25273 +S'etching on laid paper' +p95834 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95835 +sg25268 +S'Title Page for Set of Goats' +p95836 +sg25270 +S'Nicolaes Pietersz Berchem' +p95837 +sa(dp95838 +g25273 +S'etching on laid paper' +p95839 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95840 +sg25268 +S'Two Goats' +p95841 +sg25270 +S'Nicolaes Pietersz Berchem' +p95842 +sa(dp95843 +g25273 +S'etching on laid paper' +p95844 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95845 +sg25268 +S'Two Goats' +p95846 +sg25270 +S'Nicolaes Pietersz Berchem' +p95847 +sa(dp95848 +g25268 +S'Virgin and Child in a Courtyard' +p95849 +sg25270 +S'Artist Information (' +p95850 +sg25273 +S'(artist after)' +p95851 +sg25275 +S'\n' +p95852 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a435.jpg' +p95853 +sg25267 +g27 +sa(dp95854 +g25273 +S'etching on laid paper' +p95855 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95856 +sg25268 +S'Two Goats' +p95857 +sg25270 +S'Nicolaes Pietersz Berchem' +p95858 +sa(dp95859 +g25273 +S'etching on laid paper' +p95860 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95861 +sg25268 +S'Two Goats' +p95862 +sg25270 +S'Nicolaes Pietersz Berchem' +p95863 +sa(dp95864 +g25273 +S'etching on laid paper' +p95865 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95866 +sg25268 +S'Three Goats' +p95867 +sg25270 +S'Nicolaes Pietersz Berchem' +p95868 +sa(dp95869 +g25273 +S'etching on laid paper' +p95870 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95871 +sg25268 +S'Large Stone with Bas-relief' +p95872 +sg25270 +S'Nicolaes Pietersz Berchem' +p95873 +sa(dp95874 +g25273 +S'etching on laid paper' +p95875 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95876 +sg25268 +S'Three Sheep' +p95877 +sg25270 +S'Nicolaes Pietersz Berchem' +p95878 +sa(dp95879 +g25273 +S'etching on laid paper' +p95880 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95881 +sg25268 +S'Ewe and Two Lambs' +p95882 +sg25270 +S'Nicolaes Pietersz Berchem' +p95883 +sa(dp95884 +g25273 +S'etching on laid paper' +p95885 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95886 +sg25268 +S'Three Sheep and a Lamb' +p95887 +sg25270 +S'Nicolaes Pietersz Berchem' +p95888 +sa(dp95889 +g25273 +S'etching on laid paper' +p95890 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95891 +sg25268 +S'Three Sheep' +p95892 +sg25270 +S'Nicolaes Pietersz Berchem' +p95893 +sa(dp95894 +g25273 +S'etching on laid paper' +p95895 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95896 +sg25268 +S'Three Goats' +p95897 +sg25270 +S'Nicolaes Pietersz Berchem' +p95898 +sa(dp95899 +g25273 +S'etching on laid paper' +p95900 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95901 +sg25268 +S'Ram and a Sheep' +p95902 +sg25270 +S'Nicolaes Pietersz Berchem' +p95903 +sa(dp95904 +g25268 +S'The Madonna with the Clock' +p95905 +sg25270 +S'Israhel van Meckenem' +p95906 +sg25273 +S'engraving' +p95907 +sg25275 +S'c. 1490' +p95908 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a434.jpg' +p95909 +sg25267 +g27 +sa(dp95910 +g25273 +S'etching on laid paper' +p95911 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95912 +sg25268 +S'Two Goats' +p95913 +sg25270 +S'Nicolaes Pietersz Berchem' +p95914 +sa(dp95915 +g25273 +S'etching on laid paper' +p95916 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95917 +sg25268 +S'Two Goats and a Kid' +p95918 +sg25270 +S'Nicolaes Pietersz Berchem' +p95919 +sa(dp95920 +g25273 +S'etching on laid paper' +p95921 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95922 +sg25268 +S'Two Goats' +p95923 +sg25270 +S'Nicolaes Pietersz Berchem' +p95924 +sa(dp95925 +g25273 +S'etching on laid paper' +p95926 +sg25267 +g27 +sg25275 +S'unknown date\n' +p95927 +sg25268 +S'Three Sporting Dogs' +p95928 +sg25270 +S'Nicolaes Pietersz Berchem' +p95929 +sa(dp95930 +g25268 +S'The Woman on the Hinny' +p95931 +sg25270 +S'Jan Both' +p95932 +sg25273 +S'etching' +p95933 +sg25275 +S'unknown date\n' +p95934 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4d5.jpg' +p95935 +sg25267 +g27 +sa(dp95936 +g25268 +S'T\xc3\xaate de Flore (Head of Flora)' +p95937 +sg25270 +S'Artist Information (' +p95938 +sg25273 +S'(artist after)' +p95939 +sg25275 +S'\n' +p95940 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00010/a0001064.jpg' +p95941 +sg25267 +g27 +sa(dp95942 +g25268 +S'The Fishmongers' +p95943 +sg25270 +S'Peeter Bout' +p95944 +sg25273 +S'etching' +p95945 +sg25275 +S'unknown date\n' +p95946 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4e5.jpg' +p95947 +sg25267 +g27 +sa(dp95948 +g25268 +S'Huntsmen Resting' +p95949 +sg25270 +S'Peeter Bout' +p95950 +sg25273 +S'etching' +p95951 +sg25275 +S'unknown date\n' +p95952 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4ea.jpg' +p95953 +sg25267 +g27 +sa(dp95954 +g25268 +S'Ice Sleighs' +p95955 +sg25270 +S'Peeter Bout' +p95956 +sg25273 +S'etching' +p95957 +sg25275 +S'unknown date\n' +p95958 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4e9.jpg' +p95959 +sg25267 +g27 +sa(dp95960 +g25268 +S'The Skaters' +p95961 +sg25270 +S'Peeter Bout' +p95962 +sg25273 +S'etching' +p95963 +sg25275 +S'unknown date\n' +p95964 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4e8.jpg' +p95965 +sg25267 +g27 +sa(dp95966 +g25268 +S'The Holy Family' +p95967 +sg25270 +S'Israhel van Meckenem' +p95968 +sg25273 +S'engraving' +p95969 +sg25275 +S'c. 1475/1480' +p95970 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a44e.jpg' +p95971 +sg25267 +g27 +sa(dp95972 +g25268 +S'Grand Vase' +p95973 +sg25270 +S'Johann Teyler' +p95974 +sg25273 +S', unknown date' +p95975 +sg25275 +S'\n' +p95976 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f08.jpg' +p95977 +sg25267 +g27 +sa(dp95978 +g25268 +S'Grand Vase' +p95979 +sg25270 +S'Johann Teyler' +p95980 +sg25273 +S', unknown date' +p95981 +sg25275 +S'\n' +p95982 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5ca.jpg' +p95983 +sg25267 +g27 +sa(dp95984 +g25268 +S'The River IJ at Amsterdam' +p95985 +sg25270 +S'Artist Information (' +p95986 +sg25273 +S'(artist after)' +p95987 +sg25275 +S'\n' +p95988 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d62d.jpg' +p95989 +sg25267 +g27 +sa(dp95990 +g25268 +S'One of the Infantry Combats' +p95991 +sg25270 +S'Jacques Callot' +p95992 +sg25273 +S'etching' +p95993 +sg25275 +S'1616' +p95994 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aae.jpg' +p95995 +sg25267 +g27 +sa(dp95996 +g25268 +S'The Adoration of the Magi' +p95997 +sg25270 +S'Jacques Callot' +p95998 +sg25273 +S'etching' +p95999 +sg25275 +S'1623/1628' +p96000 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086f4.jpg' +p96001 +sg25267 +g27 +sa(dp96002 +g25268 +S'Entry of M. le Comte de Brionne, Grand Chamberlain of His Highness,Representing Jason' +p96003 +sg25270 +S'Jacques Callot' +p96004 +sg25273 +S'etching' +p96005 +sg25275 +S'1627' +p96006 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008600.jpg' +p96007 +sg25267 +g27 +sa(dp96008 +g25268 +S'Entry of M. de Couvonge and M. de Chalabre [extra plate]' +p96009 +sg25270 +S'Jacques Callot' +p96010 +sg25273 +S'etching' +p96011 +sg25275 +S'1627' +p96012 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086b7.jpg' +p96013 +sg25267 +g27 +sa(dp96014 +g25268 +S'The Stag Hunt' +p96015 +sg25270 +S'Jacques Callot' +p96016 +sg25273 +S'etching' +p96017 +sg25275 +S'probably 1619' +p96018 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008da0.jpg' +p96019 +sg25267 +g27 +sa(dp96020 +g25268 +S'The Crossing of the Red Sea' +p96021 +sg25270 +S'Jacques Callot' +p96022 +sg25273 +S'etching' +p96023 +sg25275 +S'1629' +p96024 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086eb.jpg' +p96025 +sg25267 +g27 +sa(dp96026 +g25268 +S'The Crossing of the Red Sea' +p96027 +sg25270 +S'Jacques Callot' +p96028 +sg25273 +S'etching' +p96029 +sg25275 +S'1629' +p96030 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086ec.jpg' +p96031 +sg25267 +g27 +sa(dp96032 +g25268 +S'Saint Matthew (Saint Paul?)' +p96033 +sg25270 +S'Artist Information (' +p96034 +sg25273 +S'(artist after)' +p96035 +sg25275 +S'\n' +p96036 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a42a.jpg' +p96037 +sg25267 +g27 +sa(dp96038 +g25268 +S'The Crossing of the Red Sea' +p96039 +sg25270 +S'Jacques Callot' +p96040 +sg25273 +S'etching' +p96041 +sg25275 +S'1629' +p96042 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086ee.jpg' +p96043 +sg25267 +g27 +sa(dp96044 +g25268 +S'Frontispiece for Callot\'s "The New Testament"' +p96045 +sg25270 +S'Abraham Bosse' +p96046 +sg25273 +S'etching' +p96047 +sg25275 +S'1635' +p96048 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a000881a.jpg' +p96049 +sg25267 +g27 +sa(dp96050 +g25268 +S'Christ Disputing with the Doctors' +p96051 +sg25270 +S'Jacques Callot' +p96052 +sg25273 +S'etching' +p96053 +sg25275 +S'1635' +p96054 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008811.jpg' +p96055 +sg25267 +g27 +sa(dp96056 +g25268 +S'Fisher of Men' +p96057 +sg25270 +S'Jacques Callot' +p96058 +sg25273 +S'etching' +p96059 +sg25275 +S'1635' +p96060 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008812.jpg' +p96061 +sg25267 +g27 +sa(dp96062 +g25268 +S'Jesus with the Pharisees' +p96063 +sg25270 +S'Jacques Callot' +p96064 +sg25273 +S'etching' +p96065 +sg25275 +S'1635' +p96066 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008813.jpg' +p96067 +sg25267 +g27 +sa(dp96068 +g25268 +S'Sermon on the Mount' +p96069 +sg25270 +S'Jacques Callot' +p96070 +sg25273 +S'etching' +p96071 +sg25275 +S'1635' +p96072 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008814.jpg' +p96073 +sg25267 +g27 +sa(dp96074 +g25268 +S'Christ and the Woman Taken in Adultery' +p96075 +sg25270 +S'Jacques Callot' +p96076 +sg25273 +S'etching' +p96077 +sg25275 +S'1635' +p96078 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088c5.jpg' +p96079 +sg25267 +g27 +sa(dp96080 +g25268 +S'Stoning of Jesus' +p96081 +sg25270 +S'Jacques Callot' +p96082 +sg25273 +S'etching' +p96083 +sg25275 +S'1635' +p96084 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088c6.jpg' +p96085 +sg25267 +g27 +sa(dp96086 +g25268 +S'Raising of Lazarus' +p96087 +sg25270 +S'Jacques Callot' +p96088 +sg25273 +S'etching' +p96089 +sg25275 +S'1635' +p96090 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088b5.jpg' +p96091 +sg25267 +g27 +sa(dp96092 +g25268 +S'The Entry into Jerusalem' +p96093 +sg25270 +S'Jacques Callot' +p96094 +sg25273 +S'etching' +p96095 +sg25275 +S'1635' +p96096 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088b6.jpg' +p96097 +sg25267 +g27 +sa(dp96098 +g25268 +S'Saint Andrew' +p96099 +sg25270 +S'Artist Information (' +p96100 +sg25273 +S'(artist after)' +p96101 +sg25275 +S'\n' +p96102 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a429.jpg' +p96103 +sg25267 +g27 +sa(dp96104 +g25268 +S"Caesar's Coin" +p96105 +sg25270 +S'Jacques Callot' +p96106 +sg25273 +S'etching' +p96107 +sg25275 +S'1635' +p96108 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088bf.jpg' +p96109 +sg25267 +g27 +sa(dp96110 +g25268 +S'Conversion of Paul' +p96111 +sg25270 +S'Jacques Callot' +p96112 +sg25273 +S'etching' +p96113 +sg25275 +S'1635' +p96114 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088c0.jpg' +p96115 +sg25267 +g27 +sa(dp96116 +g25268 +S'View of the Festival' +p96117 +sg25270 +S'Jacques Callot' +p96118 +sg25273 +S'etching' +p96119 +sg25275 +S'1616' +p96120 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aaf.jpg' +p96121 +sg25267 +g27 +sa(dp96122 +g25268 +S'The Coiffure' +p96123 +sg25270 +S'Mary Cassatt' +p96124 +sg25273 +S'drypoint' +p96125 +sg25275 +S'c. 1891' +p96126 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa48.jpg' +p96127 +sg25267 +g27 +sa(dp96128 +g25268 +S'Afternoon Tea Party' +p96129 +sg25270 +S'Mary Cassatt' +p96130 +sg25273 +S'color drypoint and aquatint' +p96131 +sg25275 +S'1890/1891' +p96132 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa49.jpg' +p96133 +sg25267 +g27 +sa(dp96134 +g25268 +S'Afternoon Tea Party' +p96135 +sg25270 +S'Mary Cassatt' +p96136 +sg25273 +S'drypoint and aquatint in black on wove paper' +p96137 +sg25275 +S'1890/1891' +p96138 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a4f.jpg' +p96139 +sg25267 +g27 +sa(dp96140 +g25268 +S'The Fitting' +p96141 +sg25270 +S'Mary Cassatt' +p96142 +sg25273 +S'drypoint in black on medium-weight laid paper' +p96143 +sg25275 +S'1890/1891' +p96144 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa41.jpg' +p96145 +sg25267 +g27 +sa(dp96146 +g25268 +S'In the Opera Box (No. 3)' +p96147 +sg25270 +S'Mary Cassatt' +p96148 +sg25273 +S'softground etching, aquatint, and etching in black on wove paper' +p96149 +sg25275 +S'c. 1880' +p96150 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a0005811.jpg' +p96151 +sg25267 +g27 +sa(dp96152 +g25268 +S'In the Opera Box (No. 3)' +p96153 +sg25270 +S'Mary Cassatt' +p96154 +sg25273 +S'soft-ground etching and aquatint' +p96155 +sg25275 +S'c. 1880' +p96156 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa2b.jpg' +p96157 +sg25267 +g27 +sa(dp96158 +g25268 +S'In the Opera Box (No. 3) [recto]' +p96159 +sg25270 +S'Mary Cassatt' +p96160 +sg25273 +S'graphite on wove paper' +p96161 +sg25275 +S'1880' +p96162 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0aa.jpg' +p96163 +sg25267 +g27 +sa(dp96164 +g25268 +S'Saint James the Great' +p96165 +sg25270 +S'Artist Information (' +p96166 +sg25273 +S'(artist after)' +p96167 +sg25275 +S'\n' +p96168 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a42b.jpg' +p96169 +sg25267 +g27 +sa(dp96170 +g25273 +S'transferred soft-ground medium and traces of brown wash' +p96171 +sg25267 +g27 +sg25275 +S'1880' +p96172 +sg25268 +S'In the Opera Box [verso]' +p96173 +sg25270 +S'Mary Cassatt' +p96174 +sa(dp96175 +g25268 +S'Mimi Holding a Japanese Fan' +p96176 +sg25270 +S'Mary Cassatt' +p96177 +sg25273 +S'drypoint' +p96178 +sg25275 +S'c. 1889' +p96179 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa32.jpg' +p96180 +sg25267 +g27 +sa(dp96181 +g25268 +S'Mimi as a Brunette' +p96182 +sg25270 +S'Mary Cassatt' +p96183 +sg25273 +S'drypoint' +p96184 +sg25275 +S'c. 1889' +p96185 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa33.jpg' +p96186 +sg25267 +g27 +sa(dp96187 +g25268 +S'The Lamp' +p96188 +sg25270 +S'Mary Cassatt' +p96189 +sg25273 +S'drypoint and soft-ground etching in black on cream wove paper' +p96190 +sg25275 +S'c. 1891' +p96191 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ffa3.jpg' +p96192 +sg25267 +g27 +sa(dp96193 +g25268 +S'Lydia at Afternoon Tea' +p96194 +sg25270 +S'Mary Cassatt' +p96195 +sg25273 +S'soft-ground etching and aquatint' +p96196 +sg25275 +S'1882' +p96197 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa2d.jpg' +p96198 +sg25267 +g27 +sa(dp96199 +g25268 +S'Maternal Caress' +p96200 +sg25270 +S'Mary Cassatt' +p96201 +sg25273 +S'drypoint and soft-ground etching in color' +p96202 +sg25275 +S'c. 1891' +p96203 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa43.jpg' +p96204 +sg25267 +g27 +sa(dp96205 +g25268 +S'Peasant Mother and Child' +p96206 +sg25270 +S'Mary Cassatt' +p96207 +sg25273 +S'drypoint' +p96208 +sg25275 +S'c. 1894' +p96209 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa93.jpg' +p96210 +sg25267 +g27 +sa(dp96211 +g25268 +S'Preparing Bill for an Outing' +p96212 +sg25270 +S'Mary Cassatt' +p96213 +sg25273 +S'soft-ground etching' +p96214 +sg25275 +S'c. 1889' +p96215 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa3a.jpg' +p96216 +sg25267 +g27 +sa(dp96217 +g25268 +S"Portrait of the Artist's Mother" +p96218 +sg25270 +S'Mary Cassatt' +p96219 +sg25273 +S'soft-ground etching and aquatint in light brown, yellow, and green' +p96220 +sg25275 +S'c. 1889' +p96221 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a50.jpg' +p96222 +sg25267 +S"In 1877, Mary Cassatt's parents came to live with her in Paris. From this time on, her \n mother Katherine became a favorite subject for Cassatt's paintings, drawings, and prints. \n In this portrait, Mrs. Cassatt, who was in poor health, sits in a chair, her head resting \n on her hand; she seems immersed in a contemplative reverie.\n This complex print combines both \n In the final \n " +p96223 +sa(dp96224 +g25273 +S'drypoint on wove paper' +p96225 +sg25267 +g27 +sg25275 +S'1890/1891' +p96226 +sg25268 +S'Woman Bathing' +p96227 +sg25270 +S'Mary Cassatt' +p96228 +sa(dp96229 +g25268 +S'Saint James the Less' +p96230 +sg25270 +S'Artist Information (' +p96231 +sg25273 +S'(artist after)' +p96232 +sg25275 +S'\n' +p96233 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a424.jpg' +p96234 +sg25267 +g27 +sa(dp96235 +g25268 +S'Woman Bathing' +p96236 +sg25270 +S'Mary Cassatt' +p96237 +sg25273 +S'color drypoint and aquatint' +p96238 +sg25275 +S'1890/1891' +p96239 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa47.jpg' +p96240 +sg25267 +g27 +sa(dp96241 +g25268 +S'In the Omnibus' +p96242 +sg25270 +S'Mary Cassatt' +p96243 +sg25273 +S'soft-ground etching and drypoint in black, reworked with graphite' +p96244 +sg25275 +S'c. 1891' +p96245 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a52.jpg' +p96246 +sg25267 +g27 +sa(dp96247 +g25268 +S'The Visitor' +p96248 +sg25270 +S'Mary Cassatt' +p96249 +sg25273 +S'soft-ground etching, aquatint, etching, and drypoint on cream laid paper' +p96250 +sg25275 +S'c. 1880' +p96251 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b73.jpg' +p96252 +sg25267 +g27 +sa(dp96253 +g25268 +S'Francis M. Drexel' +p96254 +sg25270 +S'Timothy Cole' +p96255 +sg25273 +S'wood engraving' +p96256 +sg25275 +S'1927' +p96257 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe42.jpg' +p96258 +sg25267 +g27 +sa(dp96259 +g25268 +S'Mrs. Graham' +p96260 +sg25270 +S'Artist Information (' +p96261 +sg25273 +S'(artist after)' +p96262 +sg25275 +S'\n' +p96263 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe43.jpg' +p96264 +sg25267 +g27 +sa(dp96265 +g25268 +S'Elena Grimaldi' +p96266 +sg25270 +S'Artist Information (' +p96267 +sg25273 +S'(artist after)' +p96268 +sg25275 +S'\n' +p96269 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe41.jpg' +p96270 +sg25267 +g27 +sa(dp96271 +g25268 +S'Dr. Pasteur' +p96272 +sg25270 +S'Artist Information (' +p96273 +sg25273 +S'(artist after)' +p96274 +sg25275 +S'\n' +p96275 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe38.jpg' +p96276 +sg25267 +g27 +sa(dp96277 +g25268 +S'Rembrandt' +p96278 +sg25270 +S'Artist Information (' +p96279 +sg25273 +S'(artist after)' +p96280 +sg25275 +S'\n' +p96281 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe3c.jpg' +p96282 +sg25267 +g27 +sa(dp96283 +g25268 +S'Philemon and Baucis' +p96284 +sg25270 +S'Artist Information (' +p96285 +sg25273 +S'(artist after)' +p96286 +sg25275 +S'\n' +p96287 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe47.jpg' +p96288 +sg25267 +g27 +sa(dp96289 +g25268 +S'Philemon and Baucis' +p96290 +sg25270 +S'Artist Information (' +p96291 +sg25273 +S'(artist after)' +p96292 +sg25275 +S'\n' +p96293 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe46.jpg' +p96294 +sg25267 +g27 +sa(dp96295 +g25268 +S'Saint Philip' +p96296 +sg25270 +S'Artist Information (' +p96297 +sg25273 +S'(artist after)' +p96298 +sg25275 +S'\n' +p96299 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a422.jpg' +p96300 +sg25267 +g27 +sa(dp96301 +g25268 +S'Rodin' +p96302 +sg25270 +S'Artist Information (' +p96303 +sg25273 +S'(artist after)' +p96304 +sg25275 +S'\n' +p96305 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe2e.jpg' +p96306 +sg25267 +g27 +sa(dp96307 +g25268 +S'Thomas Jefferson' +p96308 +sg25270 +S'Artist Information (' +p96309 +sg25273 +S'(artist after)' +p96310 +sg25275 +S'\n' +p96311 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe37.jpg' +p96312 +sg25267 +g27 +sa(dp96313 +g25268 +S'Washington' +p96314 +sg25270 +S'Artist Information (' +p96315 +sg25273 +S'(artist after)' +p96316 +sg25275 +S'\n' +p96317 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe3b.jpg' +p96318 +sg25267 +g27 +sa(dp96319 +g25273 +S'lithograph' +p96320 +sg25267 +g27 +sg25275 +S'probably 1940' +p96321 +sg25268 +S'Woman Seated' +p96322 +sg25270 +S'Olga Costa' +p96323 +sa(dp96324 +g25268 +S'Mary Cassatt at the Louvre: The Paintings Gallery (Au Louvre: La Peinture)' +p96325 +sg25270 +S'Edgar Degas' +p96326 +sg25273 +S'etching, aquatint, drypoint, and electric crayon on wove paper' +p96327 +sg25275 +S'c. 1879/1880' +p96328 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f14.jpg' +p96329 +sg25267 +g27 +sa(dp96330 +g25268 +S'Mademoiselle B\xc3\xa9cat at the Cafe des Ambassadeurs (Aux Ambassadeurs: Mlle B\xc3\xa9cat)' +p96331 +sg25270 +S'Edgar Degas' +p96332 +sg25273 +S'lithograph on India paper' +p96333 +sg25275 +S'c. 1877' +p96334 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009591.jpg' +p96335 +sg25267 +g27 +sa(dp96336 +g25268 +S'The Engraver Joseph Tourny (Le graveur Joseph Tourny)' +p96337 +sg25270 +S'Edgar Degas' +p96338 +sg25273 +S'etching' +p96339 +sg25275 +S'1857' +p96340 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000958e.jpg' +p96341 +sg25267 +g27 +sa(dp96342 +g25268 +S"Marguerite De Gas, the Artist's Sister (Marguerite De Gas, soeur de l'artiste)" +p96343 +sg25270 +S'Edgar Degas' +p96344 +sg25273 +S'etching on oriental paper' +p96345 +sg25275 +S'c. 1862/1865' +p96346 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009804.jpg' +p96347 +sg25267 +g27 +sa(dp96348 +g25268 +S'After the Bath (La sortie du bain (Grand planche))' +p96349 +sg25270 +S'Edgar Degas' +p96350 +sg25273 +S'lithograph' +p96351 +sg25275 +S'c. 1891' +p96352 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f3b.jpg' +p96353 +sg25267 +g27 +sa(dp96354 +g25268 +S'Coat of Arms of Lorenz Staiber' +p96355 +sg25270 +S'Albrecht D\xc3\xbcrer' +p96356 +sg25273 +S'woodcut' +p96357 +sg25275 +S'probably 1520/1521' +p96358 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b229.jpg' +p96359 +sg25267 +g27 +sa(dp96360 +g25268 +S'Saint Bartholomew' +p96361 +sg25270 +S'Artist Information (' +p96362 +sg25273 +S'(artist after)' +p96363 +sg25275 +S'\n' +p96364 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a425.jpg' +p96365 +sg25267 +g27 +sa(dp96366 +g25273 +S'color etching and soft-ground' +p96367 +sg25267 +g27 +sg25275 +S'1945' +p96368 +sg25268 +S'King' +p96369 +sg25270 +S'Sue Fuller' +p96370 +sa(dp96371 +g25273 +S'color engraving and aquatint on wove paper' +p96372 +sg25267 +g27 +sg25275 +S'1945' +p96373 +sg25268 +S'Clown' +p96374 +sg25270 +S'Sue Fuller' +p96375 +sa(dp96376 +g25268 +S'Sarras' +p96377 +sg25270 +S'F.L. Griggs' +p96378 +sg25273 +S'etching' +p96379 +sg25275 +S'1926/1928' +p96380 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00080/a000807b.jpg' +p96381 +sg25267 +g27 +sa(dp96382 +g25268 +S'Sarras' +p96383 +sg25270 +S'F.L. Griggs' +p96384 +sg25273 +S'graphite' +p96385 +sg25275 +S'1926' +p96386 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006adc.jpg' +p96387 +sg25267 +g27 +sa(dp96388 +g25268 +S'Gabriel Cortois de Pressigny' +p96389 +sg25270 +S'Jean-Auguste-Dominique Ingres' +p96390 +sg25273 +S'etching' +p96391 +sg25275 +S'1816' +p96392 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004fbf.jpg' +p96393 +sg25267 +g27 +sa(dp96394 +g25268 +S'Odalisque' +p96395 +sg25270 +S'Jean-Auguste-Dominique Ingres' +p96396 +sg25273 +S'lithograph' +p96397 +sg25275 +S'1825' +p96398 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004fc0.jpg' +p96399 +sg25267 +g27 +sa(dp96400 +g25268 +S'Holy Family and Four Saints' +p96401 +sg25270 +S'Artist Information (' +p96402 +sg25273 +S'(artist after)' +p96403 +sg25275 +S'\n' +p96404 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007799.jpg' +p96405 +sg25267 +g27 +sa(dp96406 +g25268 +S"Vestiges d'un temple de la Grece" +p96407 +sg25270 +S'Artist Information (' +p96408 +sg25273 +S'(artist after)' +p96409 +sg25275 +S'\n' +p96410 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fa6.jpg' +p96411 +sg25267 +g27 +sa(dp96412 +g25268 +S'The Holy Family' +p96413 +sg25270 +S'Artist Information (' +p96414 +sg25273 +S'(artist after)' +p96415 +sg25275 +S'\n' +p96416 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077ad.jpg' +p96417 +sg25267 +g27 +sa(dp96418 +g25273 +S'woodcut' +p96419 +sg25267 +g27 +sg25275 +S'1923' +p96420 +sg25268 +S'Girl Holding a Child (Madchen ein Kind Tragend)' +p96421 +sg25270 +S'K\xc3\xa4the Kollwitz' +p96422 +sa(dp96423 +g25268 +S'Saint Matthew? Saint Thomas?' +p96424 +sg25270 +S'Artist Information (' +p96425 +sg25273 +S'(artist after)' +p96426 +sg25275 +S'\n' +p96427 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a423.jpg' +p96428 +sg25267 +g27 +sa(dp96429 +g25273 +S'woodcut' +p96430 +sg25267 +g27 +sg25275 +S'1922/1923' +p96431 +sg25268 +S'The People (Das Volk)' +p96432 +sg25270 +S'K\xc3\xa4the Kollwitz' +p96433 +sa(dp96434 +g25273 +S'woodcut' +p96435 +sg25267 +g27 +sg25275 +S'1922/1923' +p96436 +sg25268 +S'The Sacrifice (Das Opfer)' +p96437 +sg25270 +S'K\xc3\xa4the Kollwitz' +p96438 +sa(dp96439 +g25273 +S'woodcut' +p96440 +sg25267 +g27 +sg25275 +S'1922/1923' +p96441 +sg25268 +S'The Sacrifice (Das Opfer)' +p96442 +sg25270 +S'K\xc3\xa4the Kollwitz' +p96443 +sa(dp96444 +g25273 +S'lithograph' +p96445 +sg25267 +g27 +sg25275 +S'1914' +p96446 +sg25268 +S'The Wait (Das Warten)' +p96447 +sg25270 +S'K\xc3\xa4the Kollwitz' +p96448 +sa(dp96449 +g25273 +S'lithograph' +p96450 +sg25267 +g27 +sg25275 +S'unknown date\n' +p96451 +sg25268 +S'Monique' +p96452 +sg25270 +S'Leon Kroll' +p96453 +sa(dp96454 +g25268 +S"Edouard Gautier d'Agoty" +p96455 +sg25270 +S'Artist Information (' +p96456 +sg25273 +S'(artist after)' +p96457 +sg25275 +S'\n' +p96458 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc16.jpg' +p96459 +sg25267 +g27 +sa(dp96460 +g25273 +S'wood engraving' +p96461 +sg25267 +g27 +sg25275 +S'unknown date\n' +p96462 +sg25268 +S'Gold Fish' +p96463 +sg25270 +S'Dorothy Pulis Lathrop' +p96464 +sa(dp96465 +g25268 +S'Lucy Lawrence' +p96466 +sg25270 +S'Artist Information (' +p96467 +sg25273 +S'(artist after)' +p96468 +sg25275 +S'\n' +p96469 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d15.jpg' +p96470 +sg25267 +g27 +sa(dp96471 +g25268 +S'The Virgin Seated under a Tree' +p96472 +sg25270 +S'Lucas van Leyden' +p96473 +sg25273 +S'engraving' +p96474 +sg25275 +S'1514' +p96475 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce60.jpg' +p96476 +sg25267 +g27 +sa(dp96477 +g25268 +S'Saint George Liberating the Princess' +p96478 +sg25270 +S'Lucas van Leyden' +p96479 +sg25273 +S'engraving' +p96480 +sg25275 +S'c. 1508/1509' +p96481 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce80.jpg' +p96482 +sg25267 +g27 +sa(dp96483 +g25268 +S'Saint Judas Thaddeus' +p96484 +sg25270 +S'Artist Information (' +p96485 +sg25273 +S'(artist after)' +p96486 +sg25275 +S'\n' +p96487 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a427.jpg' +p96488 +sg25267 +g27 +sa(dp96489 +g25273 +S'lithograph' +p96490 +sg25267 +g27 +sg25275 +S'1937' +p96491 +sg25268 +S"Skaters' Island" +p96492 +sg25270 +S'Louis Lozowick' +p96493 +sa(dp96494 +g25268 +S'The Barricade (La barricade)' +p96495 +sg25270 +S'Edouard Manet' +p96496 +sg25273 +S'lithograph' +p96497 +sg25275 +S'1871' +p96498 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fc5.jpg' +p96499 +sg25267 +g27 +sa(dp96500 +g25268 +S'Genesis II (Schopfungsgeschichte II)' +p96501 +sg25270 +S'Franz Marc' +p96502 +sg25273 +S'woodcut in yellow, black, and green' +p96503 +sg25275 +S'1914' +p96504 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b72a.jpg' +p96505 +sg25267 +g27 +sa(dp96506 +g25268 +S'Table (La Table)' +p96507 +sg25270 +S'Louis Casimir Ladislas Marcoussis' +p96508 +sg25273 +S'color etching and engraving printed from 3 plates on wove paper' +p96509 +sg25275 +S'1930' +p96510 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a1/a000a1fc.jpg' +p96511 +sg25267 +g27 +sa(dp96512 +g25268 +S'The Trinity' +p96513 +sg25270 +S'Master of the Berlin Passion' +p96514 +sg25273 +S'engraving' +p96515 +sg25275 +S'c. 1465' +p96516 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a42f.jpg' +p96517 +sg25267 +g27 +sa(dp96518 +g25268 +S'Putti Playing' +p96519 +sg25270 +S'Artist Information (' +p96520 +sg25273 +S'(artist after)' +p96521 +sg25275 +S'\n' +p96522 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c836.jpg' +p96523 +sg25267 +g27 +sa(dp96524 +g25268 +S'Lansquenet' +p96525 +sg25270 +S'Master M.' +p96526 +sg25273 +S'engraving' +p96527 +sg25275 +S'unknown date\n' +p96528 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acfe.jpg' +p96529 +sg25267 +g27 +sa(dp96530 +g25268 +S'Madonna and Child at a Fountain' +p96531 +sg25270 +S'Master MZ' +p96532 +sg25273 +S'engraving' +p96533 +sg25275 +S'1501' +p96534 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3ba.jpg' +p96535 +sg25267 +g27 +sa(dp96536 +g25273 +S'etching' +p96537 +sg25267 +g27 +sg25275 +S'1942' +p96538 +sg25268 +S'The Morgan at Mystic' +p96539 +sg25270 +S'James McBey' +p96540 +sa(dp96541 +g25268 +S'The Griffin' +p96542 +sg25270 +S'Artist Information (' +p96543 +sg25273 +S'(artist after)' +p96544 +sg25275 +S'\n' +p96545 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a414.jpg' +p96546 +sg25267 +g27 +sa(dp96547 +g25268 +S'Saint Judas Thaddeus (Saint Simon?)' +p96548 +sg25270 +S'Artist Information (' +p96549 +sg25273 +S'(artist after)' +p96550 +sg25275 +S'\n' +p96551 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a426.jpg' +p96552 +sg25267 +g27 +sa(dp96553 +g25268 +S'Couple Seated on a Bed' +p96554 +sg25270 +S'Israhel van Meckenem' +p96555 +sg25273 +S'engraving' +p96556 +sg25275 +S'c. 1495/1503' +p96557 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a41c.jpg' +p96558 +sg25267 +g27 +sa(dp96559 +g25268 +S'Saint Christopher' +p96560 +sg25270 +S'Artist Information (' +p96561 +sg25273 +S'(artist after)' +p96562 +sg25275 +S'\n' +p96563 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3f5.jpg' +p96564 +sg25267 +g27 +sa(dp96565 +g25268 +S"Greniers indigenes et habitations a Akaroa, presqu'Ile de Banks" +p96566 +sg25270 +S'Charles Meryon' +p96567 +sg25273 +S'graphite' +p96568 +sg25275 +S'1860' +p96569 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ce7.jpg' +p96570 +sg25267 +g27 +sa(dp96571 +g25268 +S"Greniers indig\xc3\xa8nes et habitations \xc3\xa0 Akaroa, presqu'Ile de Banks, 1845 (Native Barns and Huts at Akaroa, Banks' Peninsula, 1845)" +p96572 +sg25270 +S'Charles Meryon' +p96573 +sg25273 +S'etching on green paper' +p96574 +sg25275 +S'1865' +p96575 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000998b.jpg' +p96576 +sg25267 +g27 +sa(dp96577 +g25273 +S'(artist after)' +p96578 +sg25267 +g27 +sg25275 +S'\n' +p96579 +sg25268 +S'Vue de la Plaine des Sablons' +p96580 +sg25270 +S'Artist Information (' +p96581 +sa(dp96582 +g25273 +S'lithograph' +p96583 +sg25267 +g27 +sg25275 +S'1903/1916' +p96584 +sg25268 +S'Lion Tamer (Der Lowenbandiger)' +p96585 +sg25270 +S'Edvard Munch' +p96586 +sa(dp96587 +g25273 +S'lithograph' +p96588 +sg25267 +g27 +sg25275 +S'1903' +p96589 +sg25268 +S'Violin Concert (Geigenkonzert)' +p96590 +sg25270 +S'Edvard Munch' +p96591 +sa(dp96592 +g25273 +S', in or after 1383' +p96593 +sg25267 +g27 +sg25275 +S'\n' +p96594 +sg25268 +S'Madonna and Child Enthroned between Saints Petronius and Alle (Eligius); Christ in the Initial A' +p96595 +sg25270 +S'Niccol\xc3\xb2 di Giacomo da Bologna' +p96596 +sa(dp96597 +g25268 +S'Still Life (Nature morte)' +p96598 +sg25270 +S'Pablo Picasso' +p96599 +sg25273 +S'color aquatint [printed by Roger Lacouriere]' +p96600 +sg25275 +S'1945' +p96601 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eecc.jpg' +p96602 +sg25267 +g27 +sa(dp96603 +g25268 +S'Gathering Potatoes (Recolte de pommes de terre)' +p96604 +sg25270 +S'Camille Pissarro' +p96605 +sg25273 +S'drypoint and aquatint' +p96606 +sg25275 +S'1886' +p96607 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009db2.jpg' +p96608 +sg25267 +g27 +sa(dp96609 +g25268 +S'Saint Matthias' +p96610 +sg25270 +S'Artist Information (' +p96611 +sg25273 +S'(artist after)' +p96612 +sg25275 +S'\n' +p96613 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a428.jpg' +p96614 +sg25267 +g27 +sa(dp96615 +g25268 +S'Chestnut Vendors (Marchands de marrons)' +p96616 +sg25270 +S'Camille Pissarro' +p96617 +sg25273 +S'drypoint' +p96618 +sg25275 +S'1878' +p96619 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099ab.jpg' +p96620 +sg25267 +g27 +sa(dp96621 +g25273 +S'(artist after)' +p96622 +sg25267 +g27 +sg25275 +S'\n' +p96623 +sg25268 +S"Suite d'estampes gravees par Madame la Marquise de Pompadour ..." +p96624 +sg25270 +S'Artist Information (' +p96625 +sa(dp96626 +g25273 +S'(artist after)' +p96627 +sg25267 +g27 +sg25275 +S'\n' +p96628 +sg25268 +S'Madame de Pompadour' +p96629 +sg25270 +S'Artist Information (' +p96630 +sa(dp96631 +g25273 +S'(artist after)' +p96632 +sg25267 +g27 +sg25275 +S'\n' +p96633 +sg25268 +S'Genie militaire' +p96634 +sg25270 +S'Artist Information (' +p96635 +sa(dp96636 +g25273 +S'(artist after)' +p96637 +sg25267 +g27 +sg25275 +S'\n' +p96638 +sg25268 +S'Cachet du Roy' +p96639 +sg25270 +S'Artist Information (' +p96640 +sa(dp96641 +g25273 +S'(artist after)' +p96642 +sg25267 +g27 +sg25275 +S'\n' +p96643 +sg25268 +S'Title Page' +p96644 +sg25270 +S'Artist Information (' +p96645 +sa(dp96646 +g25273 +S'(artist after)' +p96647 +sg25267 +g27 +sg25275 +S'\n' +p96648 +sg25268 +S'Tete de Platone' +p96649 +sg25270 +S'Artist Information (' +p96650 +sa(dp96651 +g25273 +S'(artist after)' +p96652 +sg25267 +g27 +sg25275 +S'\n' +p96653 +sg25268 +S"L'amour se tranquillisant sur le regne de la justice" +p96654 +sg25270 +S'Artist Information (' +p96655 +sa(dp96656 +g25273 +S'(artist after)' +p96657 +sg25267 +g27 +sg25275 +S'\n' +p96658 +sg25268 +S'Louis XV' +p96659 +sg25270 +S'Artist Information (' +p96660 +sa(dp96661 +g25273 +S'(artist after)' +p96662 +sg25267 +g27 +sg25275 +S'\n' +p96663 +sg25268 +S"L'amour et l'ame" +p96664 +sg25270 +S'Artist Information (' +p96665 +sa(dp96666 +g25268 +S'Saint Peter' +p96667 +sg25270 +S'Israhel van Meckenem' +p96668 +sg25273 +S'engraving' +p96669 +sg25275 +S'c. 1490/1503' +p96670 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3f6.jpg' +p96671 +sg25267 +g27 +sa(dp96672 +g25273 +S'(artist after)' +p96673 +sg25267 +g27 +sg25275 +S'\n' +p96674 +sg25268 +S'Naissance de Monseigneur le Duc de Bourgogne' +p96675 +sg25270 +S'Artist Information (' +p96676 +sa(dp96677 +g25273 +S'(artist after)' +p96678 +sg25267 +g27 +sg25275 +S'\n' +p96679 +sg25268 +S'Triomphe de Fontenoy' +p96680 +sg25270 +S'Artist Information (' +p96681 +sa(dp96682 +g25273 +S'(artist after)' +p96683 +sg25267 +g27 +sg25275 +S'\n' +p96684 +sg25268 +S'Tete de Satyre' +p96685 +sg25270 +S'Artist Information (' +p96686 +sa(dp96687 +g25273 +S'(artist after)' +p96688 +sg25267 +g27 +sg25275 +S'\n' +p96689 +sg25268 +S"Alliance de l'Autriche et de la France" +p96690 +sg25270 +S'Artist Information (' +p96691 +sa(dp96692 +g25273 +S'(artist after)' +p96693 +sg25267 +g27 +sg25275 +S'\n' +p96694 +sg25268 +S'Deux tetes de femmes adosses' +p96695 +sg25270 +S'Artist Information (' +p96696 +sa(dp96697 +g25273 +S'(artist after)' +p96698 +sg25267 +g27 +sg25275 +S'\n' +p96699 +sg25268 +S'Leda' +p96700 +sg25270 +S'Artist Information (' +p96701 +sa(dp96702 +g25273 +S'(artist after)' +p96703 +sg25267 +g27 +sg25275 +S'\n' +p96704 +sg25268 +S'Portraits de Monseigneur le Dauphin et de Madame la Dauphine' +p96705 +sg25270 +S'Artist Information (' +p96706 +sa(dp96707 +g25273 +S'(artist after)' +p96708 +sg25267 +g27 +sg25275 +S'\n' +p96709 +sg25268 +S'Les preliminaires de la paix de 1748' +p96710 +sg25270 +S'Artist Information (' +p96711 +sa(dp96712 +g25273 +S'(artist after)' +p96713 +sg25267 +g27 +sg25275 +S'\n' +p96714 +sg25268 +S'M. le Prince de Saxe-Gotha' +p96715 +sg25270 +S'Artist Information (' +p96716 +sa(dp96717 +g25273 +S'(artist after)' +p96718 +sg25267 +g27 +sg25275 +S'\n' +p96719 +sg25268 +S'Victoire de Lutzelberg' +p96720 +sg25270 +S'Artist Information (' +p96721 +sa(dp96722 +g25268 +S'Saints Thomas and James the Less' +p96723 +sg25270 +S'Israhel van Meckenem' +p96724 +sg25273 +S'engraving' +p96725 +sg25275 +S'c. 1480/1485' +p96726 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3f3.jpg' +p96727 +sg25267 +g27 +sa(dp96728 +g25273 +S'(artist after)' +p96729 +sg25267 +g27 +sg25275 +S'\n' +p96730 +sg25268 +S'Bas-relief' +p96731 +sg25270 +S'Artist Information (' +p96732 +sa(dp96733 +g25273 +S'(artist after)' +p96734 +sg25267 +g27 +sg25275 +S'\n' +p96735 +sg25268 +S"L'amour cultivant un myrthe" +p96736 +sg25270 +S'Artist Information (' +p96737 +sa(dp96738 +g25273 +S'(artist after)' +p96739 +sg25267 +g27 +sg25275 +S'\n' +p96740 +sg25268 +S'Genie de la France' +p96741 +sg25270 +S'Artist Information (' +p96742 +sa(dp96743 +g25273 +S'(artist after)' +p96744 +sg25267 +g27 +sg25275 +S'\n' +p96745 +sg25268 +S'Apollon couronnant le genie de la peinture et de la sculpture' +p96746 +sg25270 +S'Artist Information (' +p96747 +sa(dp96748 +g25273 +S'(artist after)' +p96749 +sg25267 +g27 +sg25275 +S'\n' +p96750 +sg25268 +S'M. le Cardinal de Rohen' +p96751 +sg25270 +S'Artist Information (' +p96752 +sa(dp96753 +g25273 +S'(artist after)' +p96754 +sg25267 +g27 +sg25275 +S'\n' +p96755 +sg25268 +S'Culture des Lauriers' +p96756 +sg25270 +S'Artist Information (' +p96757 +sa(dp96758 +g25273 +S'(artist after)' +p96759 +sg25267 +g27 +sg25275 +S'\n' +p96760 +sg25268 +S"Tete d'Auguste" +p96761 +sg25270 +S'Artist Information (' +p96762 +sa(dp96763 +g25273 +S'(artist after)' +p96764 +sg25267 +g27 +sg25275 +S'\n' +p96765 +sg25268 +S"L'amour ayant desarme les Dieux, presente la couronne ..." +p96766 +sg25270 +S'Artist Information (' +p96767 +sa(dp96768 +g25273 +S'(artist after)' +p96769 +sg25267 +g27 +sg25275 +S'\n' +p96770 +sg25268 +S'Chien jappant' +p96771 +sg25270 +S'Artist Information (' +p96772 +sa(dp96773 +g25273 +S'(artist after)' +p96774 +sg25267 +g27 +sg25275 +S'\n' +p96775 +sg25268 +S'Minerve, protectrice et bienfaitrice de la gravure en pierre precieuse' +p96776 +sg25270 +S'Artist Information (' +p96777 +sa(dp96778 +g25268 +S'Saint Anthony' +p96779 +sg25270 +S'Israhel van Meckenem' +p96780 +sg25273 +S'engraving' +p96781 +sg25275 +S'unknown date\n' +p96782 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3f7.jpg' +p96783 +sg25267 +g27 +sa(dp96784 +g25273 +S'(artist after)' +p96785 +sg25267 +g27 +sg25275 +S'\n' +p96786 +sg25268 +S'Jacquot, Tambour-Major de Regiment du Roi' +p96787 +sg25270 +S'Artist Information (' +p96788 +sa(dp96789 +g25273 +S'(artist after)' +p96790 +sg25267 +g27 +sg25275 +S'\n' +p96791 +sg25268 +S"L'amour" +p96792 +sg25270 +S'Artist Information (' +p96793 +sa(dp96794 +g25273 +S'(artist after)' +p96795 +sg25267 +g27 +sg25275 +S'\n' +p96796 +sg25268 +S'Le lantin' +p96797 +sg25270 +S'Artist Information (' +p96798 +sa(dp96799 +g25273 +S'(artist after)' +p96800 +sg25267 +g27 +sg25275 +S'\n' +p96801 +sg25268 +S'Bacchus enfant' +p96802 +sg25270 +S'Artist Information (' +p96803 +sa(dp96804 +g25273 +S'(artist after)' +p96805 +sg25267 +g27 +sg25275 +S'\n' +p96806 +sg25268 +S'Chien bebe appartenant a Madame de Pompadour' +p96807 +sg25270 +S'Artist Information (' +p96808 +sa(dp96809 +g25273 +S'(artist after)' +p96810 +sg25267 +g27 +sg25275 +S'\n' +p96811 +sg25268 +S'Actions de graces pour le retablissement de la Sante de Monseigneur le Dauphin' +p96812 +sg25270 +S'Artist Information (' +p96813 +sa(dp96814 +g25273 +S'(artist after)' +p96815 +sg25267 +g27 +sg25275 +S'\n' +p96816 +sg25268 +S'Feue Madame la Comtesse de Brionne' +p96817 +sg25270 +S'Artist Information (' +p96818 +sa(dp96819 +g25273 +S'(artist after)' +p96820 +sg25267 +g27 +sg25275 +S'\n' +p96821 +sg25268 +S"Jardinier cherchant de l'eau" +p96822 +sg25270 +S'Artist Information (' +p96823 +sa(dp96824 +g25273 +S'(artist after)' +p96825 +sg25267 +g27 +sg25275 +S'\n' +p96826 +sg25268 +S'Portrait de Madame la Duchesse de Mirepoix' +p96827 +sg25270 +S'Artist Information (' +p96828 +sa(dp96829 +g25273 +S'(artist after)' +p96830 +sg25267 +g27 +sg25275 +S'\n' +p96831 +sg25268 +S'Enlevement de dejanire' +p96832 +sg25270 +S'Artist Information (' +p96833 +sa(dp96834 +g25268 +S'Saint Quirinus of Neuss' +p96835 +sg25270 +S'Israhel van Meckenem' +p96836 +sg25273 +S'engraving' +p96837 +sg25275 +S'unknown date\n' +p96838 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c16.jpg' +p96839 +sg25267 +g27 +sa(dp96840 +g25273 +S'(artist after)' +p96841 +sg25267 +g27 +sg25275 +S'\n' +p96842 +sg25268 +S'Genie de la musique' +p96843 +sg25270 +S'Artist Information (' +p96844 +sa(dp96845 +g25273 +S'(artist after)' +p96846 +sg25267 +g27 +sg25275 +S'\n' +p96847 +sg25268 +S'Voeu de la France pour le retablissement de la sante de Monseigneur la Dauphin' +p96848 +sg25270 +S'Artist Information (' +p96849 +sa(dp96850 +g25273 +S'(artist after)' +p96851 +sg25267 +g27 +sg25275 +S'\n' +p96852 +sg25268 +S'Les armes de M. de Calviere' +p96853 +sg25270 +S'Artist Information (' +p96854 +sa(dp96855 +g25273 +S'(artist after)' +p96856 +sg25267 +g27 +sg25275 +S'\n' +p96857 +sg25268 +S"Le lever de l'Aurore" +p96858 +sg25270 +S'Artist Information (' +p96859 +sa(dp96860 +g25273 +S'(artist after)' +p96861 +sg25267 +g27 +sg25275 +S'\n' +p96862 +sg25268 +S'Tete de fantasie' +p96863 +sg25270 +S'Artist Information (' +p96864 +sa(dp96865 +g25273 +S'(artist after)' +p96866 +sg25267 +g27 +sg25275 +S'\n' +p96867 +sg25268 +S'Offrande au Dieu Terme' +p96868 +sg25270 +S'Artist Information (' +p96869 +sa(dp96870 +g25273 +S'(artist after)' +p96871 +sg25267 +g27 +sg25275 +S'\n' +p96872 +sg25268 +S'Un vendage, ou bacchanale' +p96873 +sg25270 +S'Artist Information (' +p96874 +sa(dp96875 +g25273 +S'(artist after)' +p96876 +sg25267 +g27 +sg25275 +S'\n' +p96877 +sg25268 +S'Victoire de Lawfeldt' +p96878 +sg25270 +S'Artist Information (' +p96879 +sa(dp96880 +g25273 +S'(artist after)' +p96881 +sg25267 +g27 +sg25275 +S'\n' +p96882 +sg25268 +S'Genie de la musique' +p96883 +sg25270 +S'Artist Information (' +p96884 +sa(dp96885 +g25273 +S'(artist after)' +p96886 +sg25267 +g27 +sg25275 +S'\n' +p96887 +sg25268 +S'Zephyr et Flore' +p96888 +sg25270 +S'Artist Information (' +p96889 +sa(dp96890 +g25268 +S'Saint Cornelius' +p96891 +sg25270 +S'Israhel van Meckenem' +p96892 +sg25273 +S'engraving' +p96893 +sg25275 +S'c. 1470' +p96894 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3fa.jpg' +p96895 +sg25267 +g27 +sa(dp96896 +g25273 +S'(artist after)' +p96897 +sg25267 +g27 +sg25275 +S'\n' +p96898 +sg25268 +S'Portrait du Roi de Pologne, Electeur de Saxe' +p96899 +sg25270 +S'Artist Information (' +p96900 +sa(dp96901 +g25273 +S'(artist after)' +p96902 +sg25267 +g27 +sg25275 +S'\n' +p96903 +sg25268 +S"L'amour sacrifiant a l'amitie" +p96904 +sg25270 +S'Artist Information (' +p96905 +sa(dp96906 +g25273 +S'(artist after)' +p96907 +sg25267 +g27 +sg25275 +S'\n' +p96908 +sg25268 +S'Un enfant assis sur une motte de terre' +p96909 +sg25270 +S'Artist Information (' +p96910 +sa(dp96911 +g25273 +S'(artist after)' +p96912 +sg25267 +g27 +sg25275 +S'\n' +p96913 +sg25268 +S"L'amitie" +p96914 +sg25270 +S'Artist Information (' +p96915 +sa(dp96916 +g25273 +S'(artist after)' +p96917 +sg25267 +g27 +sg25275 +S'\n' +p96918 +sg25268 +S'La fidelie amitie' +p96919 +sg25270 +S'Artist Information (' +p96920 +sa(dp96921 +g25273 +S'(artist after)' +p96922 +sg25267 +g27 +sg25275 +S'\n' +p96923 +sg25268 +S'Un enfant assis et appuye sur une pierre ...' +p96924 +sg25270 +S'Artist Information (' +p96925 +sa(dp96926 +g25273 +S'(artist after)' +p96927 +sg25267 +g27 +sg25275 +S'\n' +p96928 +sg25268 +S'Genie de la musique' +p96929 +sg25270 +S'Artist Information (' +p96930 +sa(dp96931 +g25273 +S'(artist after)' +p96932 +sg25267 +g27 +sg25275 +S'\n' +p96933 +sg25268 +S"L'amour et l'amitie" +p96934 +sg25270 +S'Artist Information (' +p96935 +sa(dp96936 +g25273 +S'(artist after)' +p96937 +sg25267 +g27 +sg25275 +S'\n' +p96938 +sg25268 +S'Deux enfants' +p96939 +sg25270 +S'Artist Information (' +p96940 +sa(dp96941 +g25273 +S'(artist after)' +p96942 +sg25267 +g27 +sg25275 +S'\n' +p96943 +sg25268 +S'Buste de Henri IV' +p96944 +sg25270 +S'Artist Information (' +p96945 +sa(dp96946 +g25268 +S'Saint Dominic' +p96947 +sg25270 +S'Israhel van Meckenem' +p96948 +sg25273 +S'engraving' +p96949 +sg25275 +S'c. 1470' +p96950 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3f9.jpg' +p96951 +sg25267 +g27 +sa(dp96952 +g25273 +S'(artist after)' +p96953 +sg25267 +g27 +sg25275 +S'\n' +p96954 +sg25268 +S"Temple de l'amitie" +p96955 +sg25270 +S'Artist Information (' +p96956 +sa(dp96957 +g25273 +S'(artist)' +p96958 +sg25267 +g27 +sg25275 +S'\n' +p96959 +sg25268 +S'Illustration for Corneille\'s "Rodogune", Act V, scene IV' +p96960 +sg25270 +S'Artist Information (' +p96961 +sa(dp96962 +g25273 +S'(artist after)' +p96963 +sg25267 +g27 +sg25275 +S'\n' +p96964 +sg25268 +S'Genie de la poesie' +p96965 +sg25270 +S'Artist Information (' +p96966 +sa(dp96967 +g25273 +S'(artist after)' +p96968 +sg25267 +g27 +sg25275 +S'\n' +p96969 +sg25268 +S"L'amour" +p96970 +sg25270 +S'Artist Information (' +p96971 +sa(dp96972 +g25273 +S'(artist after)' +p96973 +sg25267 +g27 +sg25275 +S'\n' +p96974 +sg25268 +S'Genie de la poesie' +p96975 +sg25270 +S'Artist Information (' +p96976 +sa(dp96977 +g25273 +S'(artist after)' +p96978 +sg25267 +g27 +sg25275 +S'\n' +p96979 +sg25268 +S'Trophee de jardinier' +p96980 +sg25270 +S'Artist Information (' +p96981 +sa(dp96982 +g25273 +S'(artist after)' +p96983 +sg25267 +g27 +sg25275 +S'\n' +p96984 +sg25268 +S"L'amour jouant de l'aubois champ\xc3\xaatre" +p96985 +sg25270 +S'Artist Information (' +p96986 +sa(dp96987 +g25273 +S'(artist after)' +p96988 +sg25267 +g27 +sg25275 +S'\n' +p96989 +sg25268 +S'Pretre egyptien' +p96990 +sg25270 +S'Artist Information (' +p96991 +sa(dp96992 +g25273 +S'(artist after)' +p96993 +sg25267 +g27 +sg25275 +S'\n' +p96994 +sg25268 +S'Marc-Aurele' +p96995 +sg25270 +S'Artist Information (' +p96996 +sa(dp96997 +g25273 +S'(artist after)' +p96998 +sg25267 +g27 +sg25275 +S'\n' +p96999 +sg25268 +S"L'amour" +p97000 +sg25270 +S'Artist Information (' +p97001 +sa(dp97002 +g25268 +S'The Mass of Saint Gregory' +p97003 +sg25270 +S'Israhel van Meckenem' +p97004 +sg25273 +S'engraving' +p97005 +sg25275 +S'c. 1480/1490' +p97006 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3f8.jpg' +p97007 +sg25267 +g27 +sa(dp97008 +g25273 +S'(artist after)' +p97009 +sg25267 +g27 +sg25275 +S'\n' +p97010 +sg25268 +S'Vase pour le sacrifice de Bacchus' +p97011 +sg25270 +S'Artist Information (' +p97012 +sa(dp97013 +g25273 +S'(artist after)' +p97014 +sg25267 +g27 +sg25275 +S'\n' +p97015 +sg25268 +S"Portrait d'un chien de chasse" +p97016 +sg25270 +S'Artist Information (' +p97017 +sa(dp97018 +g25273 +S'(artist after)' +p97019 +sg25267 +g27 +sg25275 +S'\n' +p97020 +sg25268 +S'M. de Crebillon le pere' +p97021 +sg25270 +S'Artist Information (' +p97022 +sa(dp97023 +g25273 +S'(artist after)' +p97024 +sg25267 +g27 +sg25275 +S'\n' +p97025 +sg25268 +S"L'amour presentant un bouquet" +p97026 +sg25270 +S'Artist Information (' +p97027 +sa(dp97028 +g25268 +S'Normandie' +p97029 +sg25270 +S'Pierre Puvis de Chavannes' +p97030 +sg25273 +S'lithograph in brown' +p97031 +sg25275 +S'unknown date\n' +p97032 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fe8.jpg' +p97033 +sg25267 +g27 +sa(dp97034 +g25268 +S'Apollo and Hyacinthus' +p97035 +sg25270 +S'Artist Information (' +p97036 +sg25273 +S'(artist after)' +p97037 +sg25275 +S'\n' +p97038 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c866.jpg' +p97039 +sg25267 +g27 +sa(dp97040 +g25268 +S'La Sulamite (The Shulamite)' +p97041 +sg25270 +S'Artist Information (' +p97042 +sg25273 +S'French, 1858 - 1936' +p97043 +sg25275 +S'(printer)' +p97044 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f6f.jpg' +p97045 +sg25267 +g27 +sa(dp97046 +g25268 +S'Le Jour (Day)' +p97047 +sg25270 +S'Odilon Redon' +p97048 +sg25273 +S'lithograph' +p97049 +sg25275 +S'1891' +p97050 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a00067e3.jpg' +p97051 +sg25267 +g27 +sa(dp97052 +g25268 +S'Beggar with a Wooden Leg' +p97053 +sg25270 +S'Rembrandt van Rijn' +p97054 +sg25273 +S'etching' +p97055 +sg25275 +S'c. 1630' +p97056 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d33a.jpg' +p97057 +sg25267 +g27 +sa(dp97058 +g25268 +S'Beggar Woman Leaning on a Stick' +p97059 +sg25270 +S'Rembrandt van Rijn' +p97060 +sg25273 +S'etching and drypoint' +p97061 +sg25275 +S'1646' +p97062 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d325.jpg' +p97063 +sg25267 +g27 +sa(dp97064 +g25268 +S'Beheading of Saint John the Baptist' +p97065 +sg25270 +S'Israhel van Meckenem' +p97066 +sg25273 +S'engraving' +p97067 +sg25275 +S'c. 1480' +p97068 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3f2.jpg' +p97069 +sg25267 +g27 +sa(dp97070 +g25268 +S'Thomas Haaringh (Old Haaringh)' +p97071 +sg25270 +S'Rembrandt van Rijn' +p97072 +sg25273 +S'drypoint and burin' +p97073 +sg25275 +S'c. 1655' +p97074 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d366.jpg' +p97075 +sg25267 +g27 +sa(dp97076 +g25268 +S'Christ at Emmaus: the Larger Plate' +p97077 +sg25270 +S'Rembrandt van Rijn' +p97078 +sg25273 +S'etching, burin and drypoint' +p97079 +sg25275 +S'1654' +p97080 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00068/a000681e.jpg' +p97081 +sg25267 +g27 +sa(dp97082 +g25268 +S'The Phoenix or the Statue Overthrown' +p97083 +sg25270 +S'Rembrandt van Rijn' +p97084 +sg25273 +S'etching and drypoint' +p97085 +sg25275 +S'1658' +p97086 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d303.jpg' +p97087 +sg25267 +g27 +sa(dp97088 +g25268 +S'Polander Leaning on a Stick' +p97089 +sg25270 +S'Rembrandt van Rijn' +p97090 +sg25273 +S'etching' +p97091 +sg25275 +S'c. 1632' +p97092 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d321.jpg' +p97093 +sg25267 +g27 +sa(dp97094 +g25268 +S'Self-Portrait Drawing at a Window' +p97095 +sg25270 +S'Rembrandt van Rijn' +p97096 +sg25273 +S'etching, drypoint, and burin' +p97097 +sg25275 +S'1648' +p97098 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a000588e.jpg' +p97099 +sg25267 +g27 +sa(dp97100 +g25268 +S'Self-Portrait in a Cap and Scarf with the Face Dark' +p97101 +sg25270 +S'Rembrandt van Rijn' +p97102 +sg25273 +S'etching' +p97103 +sg25275 +S'1633' +p97104 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d437.jpg' +p97105 +sg25267 +g27 +sa(dp97106 +g25268 +S"The Artist's Mother in a Cloth Headdress, Looking Down" +p97107 +sg25270 +S'Rembrandt van Rijn' +p97108 +sg25273 +S'etching' +p97109 +sg25275 +S'1633' +p97110 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d392.jpg' +p97111 +sg25267 +g27 +sa(dp97112 +g25268 +S"The Artist's Mother Seated, in an Oriental Headdress" +p97113 +sg25270 +S'Rembrandt van Rijn' +p97114 +sg25273 +S'etching' +p97115 +sg25275 +S'1631' +p97116 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d389.jpg' +p97117 +sg25267 +g27 +sa(dp97118 +g25268 +S'Saint Peter in Penitence' +p97119 +sg25270 +S'Rembrandt van Rijn' +p97120 +sg25273 +S'etching' +p97121 +sg25275 +S'1645' +p97122 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2fa.jpg' +p97123 +sg25267 +g27 +sa(dp97124 +g25268 +S'The Dance at the Court of Herod' +p97125 +sg25270 +S'Israhel van Meckenem' +p97126 +sg25273 +S'engraving' +p97127 +sg25275 +S'c. 1500' +p97128 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a452.jpg' +p97129 +sg25267 +g27 +sa(dp97130 +g25268 +S'Les Amours Conduisant le Monde' +p97131 +sg25270 +S'Auguste Rodin' +p97132 +sg25273 +S'drypoint' +p97133 +sg25275 +S'1881' +p97134 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cba.jpg' +p97135 +sg25267 +g27 +sa(dp97136 +g25273 +S'lithograph' +p97137 +sg25267 +g27 +sg25275 +S'unknown date\n' +p97138 +sg25268 +S'The Ghost Dance' +p97139 +sg25270 +S'Margery Austen Ryerson' +p97140 +sa(dp97141 +g25268 +S'Jean Charles Folard' +p97142 +sg25270 +S'Antoine-Fran\xc3\xa7ois Sergent' +p97143 +sg25273 +S'color mezzotint' +p97144 +sg25275 +S'unknown date\n' +p97145 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c4a.jpg' +p97146 +sg25267 +g27 +sa(dp97147 +g25273 +S'lithograph in tan and black' +p97148 +sg25267 +g27 +sg25275 +S'1944' +p97149 +sg25268 +S'Nero' +p97150 +sg25270 +S'Benton Murdoch Spruance' +p97151 +sa(dp97152 +g25268 +S'The Lute Player and the Drinker' +p97153 +sg25270 +S'Artist Information (' +p97154 +sg25273 +S'(artist after)' +p97155 +sg25275 +S'\n' +p97156 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5c4.jpg' +p97157 +sg25267 +g27 +sa(dp97158 +g25273 +S'(artist after)' +p97159 +sg25267 +g27 +sg25275 +S'\n' +p97160 +sg25268 +S'The First of September, Morning' +p97161 +sg25270 +S'Artist Information (' +p97162 +sa(dp97163 +g25273 +S'(artist after)' +p97164 +sg25267 +g27 +sg25275 +S'\n' +p97165 +sg25268 +S'The First of September, Evening' +p97166 +sg25270 +S'Artist Information (' +p97167 +sa(dp97168 +g25268 +S"Landscape with the Circumcision of Moses' Son" +p97169 +sg25270 +S'Anthonie Waterloo' +p97170 +sg25273 +S'etching' +p97171 +sg25275 +S'unknown date\n' +p97172 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5e8.jpg' +p97173 +sg25267 +g27 +sa(dp97174 +g25268 +S'Study' +p97175 +sg25270 +S'James McNeill Whistler' +p97176 +sg25273 +S'lithograph' +p97177 +sg25275 +S'1879' +p97178 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab81.jpg' +p97179 +sg25267 +g27 +sa(dp97180 +g25268 +S'Saint Lawrence' +p97181 +sg25270 +S'Artist Information (' +p97182 +sg25273 +S'(artist after)' +p97183 +sg25275 +S'\n' +p97184 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3ff.jpg' +p97185 +sg25267 +g27 +sa(dp97186 +g25268 +S'Chapel Doorway, Montresor' +p97187 +sg25270 +S'James McNeill Whistler' +p97188 +sg25273 +S'etching' +p97189 +sg25275 +S'1888' +p97190 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa9b.jpg' +p97191 +sg25267 +g27 +sa(dp97192 +g25273 +S'lithograph' +p97193 +sg25267 +g27 +sg25275 +S'1945' +p97194 +sg25268 +S'Mayan Fisherman in Yucat\xc3\xa1n' +p97195 +sg25270 +S'Alfredo Zalce' +p97196 +sa(dp97197 +g25273 +S'lithograph' +p97198 +sg25267 +g27 +sg25275 +S'published 1946' +p97199 +sg25268 +S'The Palizada River' +p97200 +sg25270 +S'Alfredo Zalce' +p97201 +sa(dp97202 +g25273 +S'portfolio with 8 lithographs' +p97203 +sg25267 +g27 +sg25275 +S'published 1946' +p97204 +sg25268 +S'Yucat\xc3\xa1n' +p97205 +sg25270 +S'Alfredo Zalce' +p97206 +sa(dp97207 +g25273 +S'lithograph' +p97208 +sg25267 +g27 +sg25275 +S'1945' +p97209 +sg25268 +S'Fisherman' +p97210 +sg25270 +S'Alfredo Zalce' +p97211 +sa(dp97212 +g25273 +S'lithograph' +p97213 +sg25267 +g27 +sg25275 +S'1945' +p97214 +sg25268 +S'Woman Seated' +p97215 +sg25270 +S'Alfredo Zalce' +p97216 +sa(dp97217 +g25273 +S'lithograph' +p97218 +sg25267 +g27 +sg25275 +S'1945' +p97219 +sg25268 +S'Weaver of Becal Hats' +p97220 +sg25270 +S'Alfredo Zalce' +p97221 +sa(dp97222 +g25273 +S'lithograph' +p97223 +sg25267 +g27 +sg25275 +S'1945' +p97224 +sg25268 +S'In the Hammock' +p97225 +sg25270 +S'Alfredo Zalce' +p97226 +sa(dp97227 +g25273 +S'lithograph' +p97228 +sg25267 +g27 +sg25275 +S'1945' +p97229 +sg25268 +S'Henequ\xc3\xa9n Worker' +p97230 +sg25270 +S'Alfredo Zalce' +p97231 +sa(dp97232 +g25273 +S'lithograph' +p97233 +sg25267 +g27 +sg25275 +S'1945' +p97234 +sg25268 +S'Salt Deposits of Celesti\xc3\xa9n' +p97235 +sg25270 +S'Alfredo Zalce' +p97236 +sa(dp97237 +g25268 +S'Saint Luke Drawing a Portrait of the Virgin' +p97238 +sg25270 +S'Israhel van Meckenem' +p97239 +sg25273 +S'engraving' +p97240 +sg25275 +S'c. 1475' +p97241 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a404.jpg' +p97242 +sg25267 +g27 +sa(dp97243 +g25273 +S'lithograph' +p97244 +sg25267 +g27 +sg25275 +S'1945' +p97245 +sg25268 +S'Garden of Hecelch\xc3\xa1can' +p97246 +sg25270 +S'Alfredo Zalce' +p97247 +sa(dp97248 +g25268 +S'J.B. Faure' +p97249 +sg25270 +S'Anders Zorn' +p97250 +sg25273 +S'etching' +p97251 +sg25275 +S'1891' +p97252 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed28.jpg' +p97253 +sg25267 +g27 +sa(dp97254 +g25268 +S'The Madonna and Child' +p97255 +sg25270 +S'Netherlandish 15th Century' +p97256 +sg25273 +S'Schreiber, Vol. *, no. 1044, State a' +p97257 +sg25275 +S'\nwoodcut, hand-colored in light and dark blue, red, green, yellow, orange, lavender and gold' +p97258 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cce7.jpg' +p97259 +sg25267 +g27 +sa(dp97260 +g25268 +S'Talia (Thalia)' +p97261 +sg25270 +S'Master of the E-Series Tarocchi' +p97262 +sg25273 +S'engraving' +p97263 +sg25275 +S'c. 1465' +p97264 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6e0.jpg' +p97265 +sg25267 +g27 +sa(dp97266 +g25268 +S"The King's Son" +p97267 +sg25270 +S'Melchior Lorch' +p97268 +sg25273 +S'woodcut' +p97269 +sg25275 +S'1551' +p97270 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000dc/a000dc53.jpg' +p97271 +sg25267 +g27 +sa(dp97272 +g25268 +S'The Young Innkeeper' +p97273 +sg25270 +S'Cornelis Bega' +p97274 +sg25273 +S'etching' +p97275 +sg25275 +S'unknown date\n' +p97276 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d095.jpg' +p97277 +sg25267 +g27 +sa(dp97278 +g25268 +S'Autumn' +p97279 +sg25270 +S'Artist Information (' +p97280 +sg25273 +S'(artist after)' +p97281 +sg25275 +S'\n' +p97282 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cff6.jpg' +p97283 +sg25267 +g27 +sa(dp97284 +g25268 +S'Winter' +p97285 +sg25270 +S'Artist Information (' +p97286 +sg25273 +S'(artist after)' +p97287 +sg25275 +S'\n' +p97288 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cff8.jpg' +p97289 +sg25267 +g27 +sa(dp97290 +g25273 +S'color drypoint' +p97291 +sg25267 +g27 +sg25275 +S'1946' +p97292 +sg25268 +S'Hieks Street' +p97293 +sg25270 +S'Mortimer Borne' +p97294 +sa(dp97295 +g25273 +S'color drypoint' +p97296 +sg25267 +g27 +sg25275 +S'1946' +p97297 +sg25268 +S'Stone Street' +p97298 +sg25270 +S'Mortimer Borne' +p97299 +sa(dp97300 +g25268 +S'Saint Martin' +p97301 +sg25270 +S'Artist Information (' +p97302 +sg25273 +S'(artist after)' +p97303 +sg25275 +S'\n' +p97304 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a401.jpg' +p97305 +sg25267 +g27 +sa(dp97306 +g25268 +S'Hercules and the Cretan Bull' +p97307 +sg25270 +S'Giovanni Antonio da Brescia' +p97308 +sg25273 +S'engraving' +p97309 +sg25275 +S'c. 1514/1515' +p97310 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c742.jpg' +p97311 +sg25267 +g27 +sa(dp97312 +g25268 +S'Spring' +p97313 +sg25270 +S'Artist Information (' +p97314 +sg25273 +S'(artist after)' +p97315 +sg25275 +S'\n' +p97316 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf0e.jpg' +p97317 +sg25267 +g27 +sa(dp97318 +g25268 +S'Summer' +p97319 +sg25270 +S'Artist Information (' +p97320 +sg25273 +S'(artist after)' +p97321 +sg25275 +S'\n' +p97322 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf0f.jpg' +p97323 +sg25267 +g27 +sa(dp97324 +g25273 +S'German, 1473 - 1531' +p97325 +sg25267 +g27 +sg25275 +S'(artist after)' +p97326 +sg25268 +S'Adam and Eve' +p97327 +sg25270 +S'Artist Information (' +p97328 +sa(dp97329 +g25268 +S'Frontispiece for "Balli di Sfessania"' +p97330 +sg25270 +S'Jacques Callot' +p97331 +sg25273 +S'etching and engraving' +p97332 +sg25275 +S'c. 1622' +p97333 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000855a.jpg' +p97334 +sg25267 +g27 +sa(dp97335 +g25268 +S'Guatsetto and Mestolino' +p97336 +sg25270 +S'Jacques Callot' +p97337 +sg25273 +S'etching' +p97338 +sg25275 +S'c. 1622' +p97339 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008561.jpg' +p97340 +sg25267 +g27 +sa(dp97341 +g25268 +S'Cucorongna and Pernoualla' +p97342 +sg25270 +S'Jacques Callot' +p97343 +sg25273 +S'etching' +p97344 +sg25275 +S'c. 1622' +p97345 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000855b.jpg' +p97346 +sg25267 +g27 +sa(dp97347 +g25268 +S'Cicho Sgarra and Collo Francisco' +p97348 +sg25270 +S'Jacques Callot' +p97349 +sg25273 +S'etching' +p97350 +sg25275 +S'c. 1622' +p97351 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008560.jpg' +p97352 +sg25267 +g27 +sa(dp97353 +g25268 +S'Cap. Cerimonia and Siga. Lavinia' +p97354 +sg25270 +S'Jacques Callot' +p97355 +sg25273 +S'etching' +p97356 +sg25275 +S'c. 1622' +p97357 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008559.jpg' +p97358 +sg25267 +g27 +sa(dp97359 +g25268 +S'Saint Michael' +p97360 +sg25270 +S'Israhel van Meckenem' +p97361 +sg25273 +S'engraving' +p97362 +sg25275 +S'c. 1470/1480' +p97363 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3fc.jpg' +p97364 +sg25267 +g27 +sa(dp97365 +g25268 +S'Gian Fritello and Ciurlo' +p97366 +sg25270 +S'Jacques Callot' +p97367 +sg25273 +S'etching' +p97368 +sg25275 +S'c. 1622' +p97369 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000855f.jpg' +p97370 +sg25267 +g27 +sa(dp97371 +g25268 +S'Smaralo Cornuto and Ratsa di Boio' +p97372 +sg25270 +S'Jacques Callot' +p97373 +sg25273 +S'etching' +p97374 +sg25275 +S'c. 1622' +p97375 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000855c.jpg' +p97376 +sg25267 +g27 +sa(dp97377 +g25268 +S'Riciulina and Metzetin' +p97378 +sg25270 +S'Jacques Callot' +p97379 +sg25273 +S'etching' +p97380 +sg25275 +S'c. 1622' +p97381 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000855e.jpg' +p97382 +sg25267 +g27 +sa(dp97383 +g25268 +S'Fracischina and Gian Farina' +p97384 +sg25270 +S'Jacques Callot' +p97385 +sg25273 +S'etching' +p97386 +sg25275 +S'c. 1622' +p97387 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000835a.jpg' +p97388 +sg25267 +g27 +sa(dp97389 +g25268 +S'Signa. Lucia and Trastullo' +p97390 +sg25270 +S'Jacques Callot' +p97391 +sg25273 +S'etching' +p97392 +sg25275 +S'c. 1622' +p97393 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000847e.jpg' +p97394 +sg25267 +g27 +sa(dp97395 +g25268 +S'Bello Sguardo and Coviello' +p97396 +sg25270 +S'Jacques Callot' +p97397 +sg25273 +S'etching' +p97398 +sg25275 +S'c. 1622' +p97399 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008350.jpg' +p97400 +sg25267 +g27 +sa(dp97401 +g25268 +S'Cap. Cardoni and Maramao' +p97402 +sg25270 +S'Jacques Callot' +p97403 +sg25273 +S'etching' +p97404 +sg25275 +S'c. 1622' +p97405 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008471.jpg' +p97406 +sg25267 +g27 +sa(dp97407 +g25268 +S'Razullo and Cucurucu' +p97408 +sg25270 +S'Jacques Callot' +p97409 +sg25273 +S'etching' +p97410 +sg25275 +S'c. 1622' +p97411 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000847d.jpg' +p97412 +sg25267 +g27 +sa(dp97413 +g25268 +S'Franca Trippa and Fritellino' +p97414 +sg25270 +S'Jacques Callot' +p97415 +sg25273 +S'etching' +p97416 +sg25275 +S'c. 1622' +p97417 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008464.jpg' +p97418 +sg25267 +g27 +sa(dp97419 +g25268 +S'Pasquariello Truonno and Meo Squaquara' +p97420 +sg25270 +S'Jacques Callot' +p97421 +sg25273 +S'etching' +p97422 +sg25275 +S'c. 1622' +p97423 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000848a.jpg' +p97424 +sg25267 +g27 +sa(dp97425 +g25268 +S'Saint Roch' +p97426 +sg25270 +S'Israhel van Meckenem' +p97427 +sg25273 +S'engraving' +p97428 +sg25275 +S'unknown date\n' +p97429 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3fb.jpg' +p97430 +sg25267 +g27 +sa(dp97431 +g25268 +S'Taglia Cantoni and Fracasso' +p97432 +sg25270 +S'Jacques Callot' +p97433 +sg25273 +S'etching' +p97434 +sg25275 +S'c. 1622' +p97435 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008458.jpg' +p97436 +sg25267 +g27 +sa(dp97437 +g25268 +S'Pulliciniello and Siga. Lucretia' +p97438 +sg25270 +S'Jacques Callot' +p97439 +sg25273 +S'etching' +p97440 +sg25275 +S'c. 1622' +p97441 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008563.jpg' +p97442 +sg25267 +g27 +sa(dp97443 +g25268 +S'Cap. Bonbardon and Cap. Grillo' +p97444 +sg25270 +S'Jacques Callot' +p97445 +sg25273 +S'etching' +p97446 +sg25275 +S'c. 1622' +p97447 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008571.jpg' +p97448 +sg25267 +g27 +sa(dp97449 +g25268 +S'Cap. Spessa Monti and Bagattino' +p97450 +sg25270 +S'Jacques Callot' +p97451 +sg25273 +S'etching' +p97452 +sg25275 +S'c. 1622' +p97453 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008562.jpg' +p97454 +sg25267 +g27 +sa(dp97455 +g25268 +S'Cap. Esgangarato and Cap. Cocodrillo' +p97456 +sg25270 +S'Jacques Callot' +p97457 +sg25273 +S'etching' +p97458 +sg25275 +S'c. 1622' +p97459 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000856f.jpg' +p97460 +sg25267 +g27 +sa(dp97461 +g25268 +S'Scaramucia and Fricasso' +p97462 +sg25270 +S'Jacques Callot' +p97463 +sg25273 +S'etching' +p97464 +sg25275 +S'c. 1622' +p97465 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000856e.jpg' +p97466 +sg25267 +g27 +sa(dp97467 +g25268 +S'Cap. Mala Gamba and Cap. Bellavita' +p97468 +sg25270 +S'Jacques Callot' +p97469 +sg25273 +S'etching' +p97470 +sg25275 +S'c. 1622' +p97471 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000856d.jpg' +p97472 +sg25267 +g27 +sa(dp97473 +g25268 +S'Scapino and Cap. Zerbino' +p97474 +sg25270 +S'Jacques Callot' +p97475 +sg25273 +S'etching' +p97476 +sg25275 +S'c. 1622' +p97477 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008570.jpg' +p97478 +sg25267 +g27 +sa(dp97479 +g25268 +S'Cap. Babeo and Cucuba' +p97480 +sg25270 +S'Jacques Callot' +p97481 +sg25273 +S'etching' +p97482 +sg25275 +S'c. 1622' +p97483 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008342.jpg' +p97484 +sg25267 +g27 +sa(dp97485 +g25268 +S'The Landing of the Troops' +p97486 +sg25270 +S'Jacques Callot' +p97487 +sg25273 +S'etching and engraving' +p97488 +sg25275 +S'probably 1628/1631' +p97489 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008adf.jpg' +p97490 +sg25267 +g27 +sa(dp97491 +g25268 +S'The Stoning of Saint Stephen' +p97492 +sg25270 +S'Israhel van Meckenem' +p97493 +sg25273 +S'engraving on laid paper' +p97494 +sg25275 +S'c. 1470' +p97495 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a406.jpg' +p97496 +sg25267 +g27 +sa(dp97497 +g25268 +S"Il Capitano, or L'Innamorato" +p97498 +sg25270 +S'Jacques Callot' +p97499 +sg25273 +S'etching and engraving' +p97500 +sg25275 +S'1618/1620' +p97501 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008511.jpg' +p97502 +sg25267 +g27 +sa(dp97503 +g25268 +S'Pantalone' +p97504 +sg25270 +S'Jacques Callot' +p97505 +sg25273 +S'etching and engraving' +p97506 +sg25275 +S'1618/1620' +p97507 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008510.jpg' +p97508 +sg25267 +g27 +sa(dp97509 +g25268 +S'Zanni' +p97510 +sg25270 +S'Jacques Callot' +p97511 +sg25273 +S'etching and engraving' +p97512 +sg25275 +S'1618/1620' +p97513 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008512.jpg' +p97514 +sg25267 +g27 +sa(dp97515 +g25273 +S'drypoint' +p97516 +sg25267 +g27 +sg25275 +S'1945' +p97517 +sg25268 +S'Nassau Hall from Chancellor Green' +p97518 +sg25270 +S'Samuel Chamberlain' +p97519 +sa(dp97520 +g25268 +S'Reading Beneath the Trees (La Lecture sous les arbres)' +p97521 +sg25270 +S'Jean-Baptiste-Camille Corot' +p97522 +sg25273 +S'lithograph on yellow paper' +p97523 +sg25275 +S'1874' +p97524 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091b4.jpg' +p97525 +sg25267 +g27 +sa(dp97526 +g25273 +S'engraving (copper)' +p97527 +sg25267 +g27 +sg25275 +S'1945' +p97528 +sg25268 +S'Seated Figure No.5' +p97529 +sg25270 +S'Pierre Courtin' +p97530 +sa(dp97531 +g25273 +S'engraving (copper)' +p97532 +sg25267 +g27 +sg25275 +S'1945' +p97533 +sg25268 +S'Seated Figure No.7' +p97534 +sg25270 +S'Pierre Courtin' +p97535 +sa(dp97536 +g25268 +S'Philip Melanchton, Half-Length to the Left, Standing Behind a Breastwork' +p97537 +sg25270 +S'Lucas Cranach the Younger' +p97538 +sg25273 +S'woodcut' +p97539 +sg25275 +S'unknown date\n' +p97540 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a903.jpg' +p97541 +sg25267 +g27 +sa(dp97542 +g25268 +S'Saint Stephen' +p97543 +sg25270 +S'Israhel van Meckenem' +p97544 +sg25273 +S'engraving' +p97545 +sg25275 +S'unknown date\n' +p97546 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a400.jpg' +p97547 +sg25267 +g27 +sa(dp97548 +g25268 +S'Saint Andrew' +p97549 +sg25270 +S'Lucas Cranach the Elder' +p97550 +sg25273 +S'woodcut' +p97551 +sg25275 +S'unknown date\n' +p97552 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0c5.jpg' +p97553 +sg25267 +g27 +sa(dp97554 +g25268 +S"Diog\xc3\xa8ne et Alcibiade a l'Od\xc3\xa9on" +p97555 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97556 +sg25273 +S'lithograph' +p97557 +sg25275 +S'1846' +p97558 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009389.jpg' +p97559 +sg25267 +g27 +sa(dp97560 +g25268 +S"Ex-membres de l'ex-soci\xc3\xa9t\xc3\xa9 de l'ex-Dix-d\xc3\xa9cembre" +p97561 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97562 +sg25273 +S'lithograph' +p97563 +sg25275 +S'1850' +p97564 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009472.jpg' +p97565 +sg25267 +g27 +sa(dp97566 +g25268 +S"Inconv\xc3\xa9nient d'acheter un journal..." +p97567 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97568 +sg25273 +S'lithograph' +p97569 +sg25275 +S'1848' +p97570 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000940c.jpg' +p97571 +sg25267 +g27 +sa(dp97572 +g25268 +S"L'Eau du puits de Grenelle" +p97573 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97574 +sg25273 +S'lithograph' +p97575 +sg25275 +S'1841' +p97576 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000929c.jpg' +p97577 +sg25267 +g27 +sa(dp97578 +g25268 +S'Le Nouveau pavage en bois... de Paris' +p97579 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97580 +sg25273 +S'lithograph' +p97581 +sg25275 +S'1842' +p97582 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092ac.jpg' +p97583 +sg25267 +g27 +sa(dp97584 +g25268 +S'Origine des B\xc3\xa9doins a Paris' +p97585 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97586 +sg25273 +S'lithograph' +p97587 +sg25275 +S'1841' +p97588 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093a0.jpg' +p97589 +sg25267 +g27 +sa(dp97590 +g25268 +S'Le Conseil de r\xc3\xa9vision' +p97591 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97592 +sg25273 +S'lithograph' +p97593 +sg25275 +S'1842' +p97594 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092aa.jpg' +p97595 +sg25267 +g27 +sa(dp97596 +g25268 +S'Le Dernier du T\xc3\xa9l\xc3\xa9maque' +p97597 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97598 +sg25273 +S'lithograph' +p97599 +sg25275 +S'1843' +p97600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092ab.jpg' +p97601 +sg25267 +g27 +sa(dp97602 +g25268 +S'En Voila un de plaisir!' +p97603 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97604 +sg25273 +S'lithograph' +p97605 +sg25275 +S'1841' +p97606 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000926d.jpg' +p97607 +sg25267 +g27 +sa(dp97608 +g25268 +S'Saint Elizabeth of Thuringia' +p97609 +sg25270 +S'Israhel van Meckenem' +p97610 +sg25273 +S'engraving' +p97611 +sg25275 +S'c. 1475/1480' +p97612 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3fe.jpg' +p97613 +sg25267 +g27 +sa(dp97614 +g25268 +S"Fallait pas me tutoyer, j'suis dans..." +p97615 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97616 +sg25273 +S'lithograph' +p97617 +sg25275 +S'1843' +p97618 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092ce.jpg' +p97619 +sg25267 +g27 +sa(dp97620 +g25268 +S"V'la plus de six francs que je perds..." +p97621 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97622 +sg25273 +S'lithograph' +p97623 +sg25275 +S'1843' +p97624 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092c3.jpg' +p97625 +sg25267 +g27 +sa(dp97626 +g25268 +S'Faudra que je vous fasse faire un jour...' +p97627 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97628 +sg25273 +S'lithograph' +p97629 +sg25275 +S'1848' +p97630 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000940f.jpg' +p97631 +sg25267 +g27 +sa(dp97632 +g25268 +S'Eh bonjour! enchant\xc3\xa9 de vous rencontrer...' +p97633 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97634 +sg25273 +S'lithograph' +p97635 +sg25275 +S'1840' +p97636 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000926f.jpg' +p97637 +sg25267 +g27 +sa(dp97638 +g25268 +S'Les Bains a vingt centimes, nouveau style' +p97639 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97640 +sg25273 +S'lithograph' +p97641 +sg25275 +S'1842' +p97642 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009270.jpg' +p97643 +sg25267 +g27 +sa(dp97644 +g25268 +S"Parole d'honneur Mme. Frenouillet..." +p97645 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97646 +sg25273 +S'lithograph' +p97647 +sg25275 +S'1841' +p97648 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000926e.jpg' +p97649 +sg25267 +g27 +sa(dp97650 +g25268 +S'Une \xc3\xa9l\xc3\xa8...z\xc3\xa9l\xc3\xa9e travaillant a domicile' +p97651 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97652 +sg25273 +S'lithograph' +p97653 +sg25275 +S'1847' +p97654 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093ea.jpg' +p97655 +sg25267 +g27 +sa(dp97656 +g25268 +S'Ma femme... \xc3\xa7a mord... \xc3\xa7a mord!' +p97657 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97658 +sg25273 +S'lithograph' +p97659 +sg25275 +S'1846' +p97660 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009388.jpg' +p97661 +sg25267 +g27 +sa(dp97662 +g25268 +S'Une Imitation bourgeoise du Z\xc3\xa9phir de Prudhon' +p97663 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97664 +sg25273 +S'lithograph' +p97665 +sg25275 +S'1847' +p97666 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000939e.jpg' +p97667 +sg25267 +g27 +sa(dp97668 +g25268 +S'Est-il permis de revenir... dans un \xc3\xa9tat pareil...' +p97669 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97670 +sg25273 +S'lithograph' +p97671 +sg25275 +S'1843' +p97672 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092b1.jpg' +p97673 +sg25267 +g27 +sa(dp97674 +g25268 +S'Saint Catherine' +p97675 +sg25270 +S'Israhel van Meckenem' +p97676 +sg25273 +S'engraving' +p97677 +sg25275 +S'c. 1480/1490' +p97678 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3fd.jpg' +p97679 +sg25267 +g27 +sa(dp97680 +g25268 +S'Le Coup de vent' +p97681 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97682 +sg25273 +S'lithograph' +p97683 +sg25275 +S'1843' +p97684 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092bf.jpg' +p97685 +sg25267 +g27 +sa(dp97686 +g25268 +S'Une R\xc3\xa9ception' +p97687 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97688 +sg25273 +S'lithograph' +p97689 +sg25275 +S'1843' +p97690 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092b4.jpg' +p97691 +sg25267 +g27 +sa(dp97692 +g25268 +S'Carotte dramatique' +p97693 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97694 +sg25273 +S'lithograph' +p97695 +sg25275 +S'1844' +p97696 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000931f.jpg' +p97697 +sg25267 +g27 +sa(dp97698 +g25268 +S'Une Guerrier \xc3\xa9lectris\xc3\xa9' +p97699 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97700 +sg25273 +S'lithograph' +p97701 +sg25275 +S'1843' +p97702 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092cc.jpg' +p97703 +sg25267 +g27 +sa(dp97704 +g25268 +S"Ma femme m'a dit: attends moi cinq minutes..." +p97705 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97706 +sg25273 +S'lithograph' +p97707 +sg25275 +S'1842' +p97708 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092fc.jpg' +p97709 +sg25267 +g27 +sa(dp97710 +g25268 +S"Monsieur... Monsieur, v'la vot' mouchoir" +p97711 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97712 +sg25273 +S'lithograph' +p97713 +sg25275 +S'1842' +p97714 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092f9.jpg' +p97715 +sg25267 +g27 +sa(dp97716 +g25268 +S'Plus souvent que je te conduirai... au bal...' +p97717 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97718 +sg25273 +S'lithograph' +p97719 +sg25275 +S'1845' +p97720 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000932c.jpg' +p97721 +sg25267 +g27 +sa(dp97722 +g25268 +S'Allons bon!... voila les grafignons...' +p97723 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97724 +sg25273 +S'lithograph' +p97725 +sg25275 +S'1845' +p97726 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009371.jpg' +p97727 +sg25267 +g27 +sa(dp97728 +g25268 +S"Allons bon!... voila que'elle me cueille une rose..." +p97729 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97730 +sg25273 +S'lithograph' +p97731 +sg25275 +S'1846' +p97732 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009379.jpg' +p97733 +sg25267 +g27 +sa(dp97734 +g25268 +S"Il n'y a pas a dire, il faut que je traverse ce... bois..." +p97735 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97736 +sg25273 +S'lithograph' +p97737 +sg25275 +S'1845' +p97738 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009378.jpg' +p97739 +sg25267 +g27 +sa(dp97740 +g25268 +S'Saint Mary Magdalene' +p97741 +sg25270 +S'Israhel van Meckenem' +p97742 +sg25273 +S'engraving' +p97743 +sg25275 +S'c. 1470' +p97744 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005ea4.jpg' +p97745 +sg25267 +g27 +sa(dp97746 +g25268 +S'Le Danger de... visiter un site par trop sauvage' +p97747 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97748 +sg25273 +S'lithograph' +p97749 +sg25275 +S'1845' +p97750 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000935d.jpg' +p97751 +sg25267 +g27 +sa(dp97752 +g25268 +S'Une Charge d\xc3\xa9plac\xc3\xa9e' +p97753 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97754 +sg25273 +S'lithograph' +p97755 +sg25275 +S'1845' +p97756 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000935e.jpg' +p97757 +sg25267 +g27 +sa(dp97758 +g25268 +S"Comme quoi l'emprisonnement cellulaire..." +p97759 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97760 +sg25273 +S'lithograph' +p97761 +sg25275 +S'1846' +p97762 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009381.jpg' +p97763 +sg25267 +g27 +sa(dp97764 +g25268 +S"Le Dortoir d'un pensionnat bien tenu" +p97765 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97766 +sg25273 +S'lithograph' +p97767 +sg25275 +S'1846' +p97768 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009380.jpg' +p97769 +sg25267 +g27 +sa(dp97770 +g25268 +S"M'sieu... que c'est tannant d'avoir la colique quand..." +p97771 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97772 +sg25273 +S'lithograph' +p97773 +sg25275 +S'1846' +p97774 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009385.jpg' +p97775 +sg25267 +g27 +sa(dp97776 +g25268 +S"Un Surveillant oblig\xc3\xa9 de fermer l'oeil..." +p97777 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97778 +sg25273 +S'lithograph' +p97779 +sg25275 +S'1845' +p97780 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000937e.jpg' +p97781 +sg25267 +g27 +sa(dp97782 +g25268 +S'Non, madame, je ne vous quitterai pas...' +p97783 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97784 +sg25273 +S'lithograph' +p97785 +sg25275 +S'1848' +p97786 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000940b.jpg' +p97787 +sg25267 +g27 +sa(dp97788 +g25268 +S'Comme tu y vas...' +p97789 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97790 +sg25273 +S'lithograph' +p97791 +sg25275 +S'1841' +p97792 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000928a.jpg' +p97793 +sg25267 +g27 +sa(dp97794 +g25268 +S'Faut de la prudence p\xc3\xa8re Balivot, vot petite a seize ans...' +p97795 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97796 +sg25273 +S'lithograph' +p97797 +sg25275 +S'1842' +p97798 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009255.jpg' +p97799 +sg25267 +g27 +sa(dp97800 +g25268 +S'Allons! mon jeune ami, une bonne poign\xc3\xa9e...' +p97801 +sg25270 +S'Honor\xc3\xa9 Daumier' +p97802 +sg25273 +S'lithograph' +p97803 +sg25275 +S'1841' +p97804 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000929b.jpg' +p97805 +sg25267 +g27 +sa(dp97806 +g25268 +S'Saint Ottilia' +p97807 +sg25270 +S'Israhel van Meckenem' +p97808 +sg25273 +S'engraving' +p97809 +sg25275 +S'c. 1475/1480' +p97810 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a418.jpg' +p97811 +sg25267 +g27 +sa(dp97812 +g25268 +S'Weislingen Attacked by the Forces of Goetz (Weislingen attaqu\xc3\xa9 par les gens de Goetz)' +p97813 +sg25270 +S'Eug\xc3\xa8ne Delacroix' +p97814 +sg25273 +S'lithograph' +p97815 +sg25275 +S'1836' +p97816 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095b4.jpg' +p97817 +sg25267 +g27 +sa(dp97818 +g25268 +S'Jean Duvet as Saint John the Evangelist' +p97819 +sg25270 +S'Jean Duvet' +p97820 +sg25273 +S'engraving' +p97821 +sg25275 +S'1555' +p97822 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084d6.jpg' +p97823 +sg25267 +g27 +sa(dp97824 +g25268 +S'Saint John Sees the Seven Golden Candlesticks' +p97825 +sg25270 +S'Jean Duvet' +p97826 +sg25273 +S'engraving' +p97827 +sg25275 +S'1546/1556' +p97828 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083d6.jpg' +p97829 +sg25267 +g27 +sa(dp97830 +g25268 +S'Saint John Summoned to Heaven' +p97831 +sg25270 +S'Jean Duvet' +p97832 +sg25273 +S'engraving' +p97833 +sg25275 +S'1546/1556' +p97834 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083b9.jpg' +p97835 +sg25267 +g27 +sa(dp97836 +g25268 +S'The Angel Sounding the Sixth Trumpet' +p97837 +sg25270 +S'Jean Duvet' +p97838 +sg25273 +S'engraving' +p97839 +sg25275 +S'1546/1556' +p97840 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084ce.jpg' +p97841 +sg25267 +g27 +sa(dp97842 +g25268 +S'Saint Michael and the Dragon' +p97843 +sg25270 +S'Jean Duvet' +p97844 +sg25273 +S'engraving' +p97845 +sg25275 +S'1546/1556' +p97846 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084c4.jpg' +p97847 +sg25267 +g27 +sa(dp97848 +g25268 +S'The Fall of Babylon' +p97849 +sg25270 +S'Jean Duvet' +p97850 +sg25273 +S'engraving' +p97851 +sg25275 +S'1546/1556' +p97852 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084d4.jpg' +p97853 +sg25267 +g27 +sa(dp97854 +g25268 +S'The Revelation of Saint John the Evangelist' +p97855 +sg25270 +S'Jean Duvet' +p97856 +sg25273 +S'engraving' +p97857 +sg25275 +S'c. 1555' +p97858 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083e0.jpg' +p97859 +sg25267 +g27 +sa(dp97860 +g25268 +S'The Triumph of the Unicorn' +p97861 +sg25270 +S'Jean Duvet' +p97862 +sg25273 +S'engraving' +p97863 +sg25275 +S'probably 1561' +p97864 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084d0.jpg' +p97865 +sg25267 +g27 +sa(dp97866 +g25268 +S'The Unicorn Purifies the Water with Its Horn' +p97867 +sg25270 +S'Jean Duvet' +p97868 +sg25273 +S'engraving' +p97869 +sg25275 +S'probably c. 1555/1561' +p97870 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084d1.jpg' +p97871 +sg25267 +g27 +sa(dp97872 +g25268 +S'Saint Ursula and Her Maidens' +p97873 +sg25270 +S'Israhel van Meckenem' +p97874 +sg25273 +S'engraving' +p97875 +sg25275 +S'c. 1475/1480' +p97876 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a41a.jpg' +p97877 +sg25267 +g27 +sa(dp97878 +g25273 +S'woodcut on Japanese laid paper [proof]' +p97879 +sg25267 +g27 +sg25275 +S'1918' +p97880 +sg25268 +S'Gelmeroda' +p97881 +sg25270 +S'Lyonel Feininger' +p97882 +sa(dp97883 +g25268 +S"The Feast of Anthony and Cleopatra (Le festin d'Antoine et de Cleopatre)" +p97884 +sg25270 +S'Artist Information (' +p97885 +sg25273 +S'(artist after)' +p97886 +sg25275 +S'\n' +p97887 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d28.jpg' +p97888 +sg25267 +g27 +sa(dp97889 +g25268 +S'Jazz Musician' +p97890 +sg25270 +S'Peter Grippe' +p97891 +sg25273 +S'engraving' +p97892 +sg25275 +S'unknown date\n' +p97893 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000aab.jpg' +p97894 +sg25267 +g27 +sa(dp97895 +g25268 +S'Rue des Plantes' +p97896 +sg25270 +S'Stanley William Hayter' +p97897 +sg25273 +S'drypoint' +p97898 +sg25275 +S'1926' +p97899 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a0006072.jpg' +p97900 +sg25267 +g27 +sa(dp97901 +g25268 +S'La Noy\xc3\xa9e (The Deluge)' +p97902 +sg25270 +S'Artist Information (' +p97903 +sg25273 +S'(artist)' +p97904 +sg25275 +S'\n' +p97905 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a0008275.jpg' +p97906 +sg25267 +g27 +sa(dp97907 +g25268 +S'Jacob Wrestling with the Angel' +p97908 +sg25270 +S'Augustin Hirschvogel' +p97909 +sg25273 +S'etching' +p97910 +sg25275 +S'unknown date\n' +p97911 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac02.jpg' +p97912 +sg25267 +g27 +sa(dp97913 +g25268 +S'Samson Slays the Philistines' +p97914 +sg25270 +S'Augustin Hirschvogel' +p97915 +sg25273 +S'etching' +p97916 +sg25275 +S'unknown date\n' +p97917 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac00.jpg' +p97918 +sg25267 +g27 +sa(dp97919 +g25268 +S'Moses Striking the Rock' +p97920 +sg25270 +S'Augustin Hirschvogel' +p97921 +sg25273 +S'etching' +p97922 +sg25275 +S'unknown date\n' +p97923 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac01.jpg' +p97924 +sg25267 +g27 +sa(dp97925 +g25268 +S'The Lord Sweetens the Waters of Marah' +p97926 +sg25270 +S'Augustin Hirschvogel' +p97927 +sg25273 +S'etching' +p97928 +sg25275 +S'unknown date\n' +p97929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac03.jpg' +p97930 +sg25267 +g27 +sa(dp97931 +g25273 +S'color etching and aquatint' +p97932 +sg25267 +g27 +sg25275 +S'unknown date\n' +p97933 +sg25268 +S"Mahi'ai" +p97934 +sg25270 +S'John Melville Kelly' +p97935 +sa(dp97936 +g25268 +S'Christ as the Man of Sorrows' +p97937 +sg25270 +S'Israhel van Meckenem' +p97938 +sg25273 +S'engraving' +p97939 +sg25275 +S'c. 1470/1480' +p97940 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a412.jpg' +p97941 +sg25267 +g27 +sa(dp97942 +g25273 +S'color etching and aquatint' +p97943 +sg25267 +g27 +sg25275 +S'unknown date\n' +p97944 +sg25268 +S'The Banana Girl' +p97945 +sg25270 +S'John Melville Kelly' +p97946 +sa(dp97947 +g25268 +S'Old and Young Woman (Alte und jungere Frau)' +p97948 +sg25270 +S'Ernst Ludwig Kirchner' +p97949 +sg25273 +S'woodcut' +p97950 +sg25275 +S'1921' +p97951 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b7bd.jpg' +p97952 +sg25267 +g27 +sa(dp97953 +g25273 +S'lithograph [poster]' +p97954 +sg25267 +g27 +sg25275 +S'1926' +p97955 +sg25268 +S'Mothers, Give Your Surplus (Mutter Gebt von eurm Uberfluss)' +p97956 +sg25270 +S'K\xc3\xa4the Kollwitz' +p97957 +sa(dp97958 +g25273 +S'lithograph in black on wove paper' +p97959 +sg25267 +g27 +sg25275 +S'1938' +p97960 +sg25268 +S'Self-Portrait in Profile Facing Right (Selbstbildnis in Profil nach Rechts)' +p97961 +sg25270 +S'K\xc3\xa4the Kollwitz' +p97962 +sa(dp97963 +g25268 +S'Saint George and the Dragon' +p97964 +sg25270 +S'Master AG' +p97965 +sg25273 +S'engraving' +p97966 +sg25275 +S'c. 1480/1490' +p97967 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3db.jpg' +p97968 +sg25267 +g27 +sa(dp97969 +g25268 +S'Apollo and Marsyas' +p97970 +sg25270 +S'Master MF' +p97971 +sg25273 +S'engraving' +p97972 +sg25275 +S'1536' +p97973 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c83f.jpg' +p97974 +sg25267 +g27 +sa(dp97975 +g25273 +S'color woodcut and engraving' +p97976 +sg25267 +g27 +sg25275 +S'1946' +p97977 +sg25268 +S'Ambivalence' +p97978 +sg25270 +S'Ian Hugo' +p97979 +sa(dp97980 +g25268 +S'Erasmus of Rotterdam' +p97981 +sg25270 +S'Artist Information (' +p97982 +sg25273 +S'(artist after)' +p97983 +sg25275 +S'\n' +p97984 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfee.jpg' +p97985 +sg25267 +g27 +sa(dp97986 +g25268 +S'Frederic Sylvester Douglas' +p97987 +sg25270 +S'Jean-Auguste-Dominique Ingres' +p97988 +sg25273 +S'lithograph' +p97989 +sg25275 +S'1815' +p97990 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004fc1.jpg' +p97991 +sg25267 +g27 +sa(dp97992 +g25268 +S'Saint John on Patmos' +p97993 +sg25270 +S'Master H.W.G.' +p97994 +sg25273 +S'woodcut' +p97995 +sg25275 +S'c. 1545/1555' +p97996 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b18e.jpg' +p97997 +sg25267 +g27 +sa(dp97998 +g25268 +S'Eight Apostles in Four Roundels' +p97999 +sg25270 +S'Israhel van Meckenem' +p98000 +sg25273 +S'engraving' +p98001 +sg25275 +S'unknown date\n' +p98002 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a415.jpg' +p98003 +sg25267 +g27 +sa(dp98004 +g25273 +S'(artist)' +p98005 +sg25267 +g27 +sg25275 +S'\n' +p98006 +sg25268 +S'Vues de Paris' +p98007 +sg25270 +S'Artist Information (' +p98008 +sa(dp98009 +g25273 +S'(artist)' +p98010 +sg25267 +g27 +sg25275 +S'\n' +p98011 +sg25268 +S'Title Page' +p98012 +sg25270 +S'Artist Information (' +p98013 +sa(dp98014 +g25273 +S'(artist)' +p98015 +sg25267 +g27 +sg25275 +S'\n' +p98016 +sg25268 +S'Place Louis XV' +p98017 +sg25270 +S'Artist Information (' +p98018 +sa(dp98019 +g25273 +S'(artist)' +p98020 +sg25267 +g27 +sg25275 +S'\n' +p98021 +sg25268 +S'Jardin des Thuilleries' +p98022 +sg25270 +S'Artist Information (' +p98023 +sa(dp98024 +g25273 +S'(artist)' +p98025 +sg25267 +g27 +sg25275 +S'\n' +p98026 +sg25268 +S'Jardin des Thuilleries' +p98027 +sg25270 +S'Artist Information (' +p98028 +sa(dp98029 +g25273 +S'(artist)' +p98030 +sg25267 +g27 +sg25275 +S'\n' +p98031 +sg25268 +S'Quai des Thuilleries' +p98032 +sg25270 +S'Artist Information (' +p98033 +sa(dp98034 +g25273 +S'(artist)' +p98035 +sg25267 +g27 +sg25275 +S'\n' +p98036 +sg25268 +S'Galerie du Louvre' +p98037 +sg25270 +S'Artist Information (' +p98038 +sa(dp98039 +g25268 +S'The Triumph of Bacchus' +p98040 +sg25270 +S'Master IB' +p98041 +sg25273 +S'engraving' +p98042 +sg25275 +S'1528' +p98043 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b253.jpg' +p98044 +sg25267 +g27 +sa(dp98045 +g25268 +S'Two Women Gazing at a Nude Model (Deux femmes regardent un mod\xc3\xa8le nu)' +p98046 +sg25270 +S'Pablo Picasso' +p98047 +sg25273 +S'drypoint, open bite etching, scraping, and etching (zinc) in black on laid Montval paper [printed in 1929 by LeBlanc and Trautmann and published by Marcel Guiot]' +p98048 +sg25275 +S'1923' +p98049 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee1f.jpg' +p98050 +sg25267 +g27 +sa(dp98051 +g25268 +S'The Spring (La source)' +p98052 +sg25270 +S'Pablo Picasso' +p98053 +sg25273 +S'drypoint with engraving (zinc) in black on laid paper [printed in 1929 by Leblanc and Trautmann and published by Marcel Guiot]' +p98054 +sg25275 +S'1921' +p98055 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee22.jpg' +p98056 +sg25267 +g27 +sa(dp98057 +g25268 +S'Seven Children at Play' +p98058 +sg25270 +S'Israhel van Meckenem' +p98059 +sg25273 +S'engraving' +p98060 +sg25275 +S'c. 1490' +p98061 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a416.jpg' +p98062 +sg25267 +g27 +sa(dp98063 +g25268 +S'Lawyer Wade' +p98064 +sg25270 +S'Anders Zorn' +p98065 +sg25273 +S'etching' +p98066 +sg25275 +S'1890' +p98067 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed2c.jpg' +p98068 +sg25267 +g27 +sa(dp98069 +g25268 +S'Prudence' +p98070 +sg25270 +S'Artist Information (' +p98071 +sg25273 +S'(artist after)' +p98072 +sg25275 +S'\n' +p98073 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c789.jpg' +p98074 +sg25267 +g27 +sa(dp98075 +g25268 +S'The Hat Pin (Le chapeau epingle)' +p98076 +sg25270 +S'Auguste Renoir' +p98077 +sg25273 +S'drypoint' +p98078 +sg25275 +S'1894' +p98079 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099ba.jpg' +p98080 +sg25267 +g27 +sa(dp98081 +g25268 +S'The Two Bathers (Les deux baigneuses)' +p98082 +sg25270 +S'Auguste Renoir' +p98083 +sg25273 +S'etching' +p98084 +sg25275 +S'1895' +p98085 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009ff3.jpg' +p98086 +sg25267 +g27 +sa(dp98087 +g25268 +S'Saint Jerome Hearing the Trumpet of the Last Judgment' +p98088 +sg25270 +S'Jusepe de Ribera' +p98089 +sg25273 +S'etching and engraving' +p98090 +sg25275 +S'c. 1621' +p98091 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a00067cf.jpg' +p98092 +sg25267 +g27 +sa(dp98093 +g25268 +S'Adam and Eve with the Infants Cain and Abel' +p98094 +sg25270 +S'Christofano Robetta' +p98095 +sg25273 +S'engraving' +p98096 +sg25275 +S'unknown date\n' +p98097 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7ae.jpg' +p98098 +sg25267 +g27 +sa(dp98099 +g25273 +S'lithograph' +p98100 +sg25267 +g27 +sg25275 +S'1924/1927' +p98101 +sg25268 +S'Jongleur' +p98102 +sg25270 +S'Georges Rouault' +p98103 +sa(dp98104 +g25268 +S'The Foolish Old Man and the Young Girl' +p98105 +sg25270 +S'Artist Information (' +p98106 +sg25273 +S'(artist after)' +p98107 +sg25275 +S'\n' +p98108 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a417.jpg' +p98109 +sg25267 +g27 +sa(dp98110 +g25273 +S'lithograph' +p98111 +sg25267 +g27 +sg25275 +S'1926' +p98112 +sg25268 +S'Self-Portrait II' +p98113 +sg25270 +S'Georges Rouault' +p98114 +sa(dp98115 +g25273 +S'lithograph' +p98116 +sg25267 +g27 +sg25275 +S'1926' +p98117 +sg25268 +S'Andre Suares' +p98118 +sg25270 +S'Georges Rouault' +p98119 +sa(dp98120 +g25268 +S'Head of the Executioner' +p98121 +sg25270 +S'Prince Rupert of the Pfalz' +p98122 +sg25273 +S'mezzotint' +p98123 +sg25275 +S'1658' +p98124 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b28b.jpg' +p98125 +sg25267 +g27 +sa(dp98126 +g25273 +S'woodcut block' +p98127 +sg25267 +g27 +sg25275 +S'unknown date\n' +p98128 +sg25268 +S'Don Quixote and Sancho Panza [recto]' +p98129 +sg25270 +S'Louis Schanker' +p98130 +sa(dp98131 +g25273 +S'woodcut block' +p98132 +sg25267 +g27 +sg25275 +S'unknown date\n' +p98133 +sg25268 +S'Don Quixote and Sancho Panza [verso]' +p98134 +sg25270 +S'Louis Schanker' +p98135 +sa(dp98136 +g25273 +S'woodcut block' +p98137 +sg25267 +g27 +sg25275 +S'unknown date\n' +p98138 +sg25268 +S'Don Quixote and Sancho Panza [recto]' +p98139 +sg25270 +S'Louis Schanker' +p98140 +sa(dp98141 +g25273 +S'woodcut block' +p98142 +sg25267 +g27 +sg25275 +S'unknown date\n' +p98143 +sg25268 +S'Don Quixote and Sancho Panza [verso]' +p98144 +sg25270 +S'Louis Schanker' +p98145 +sa(dp98146 +g25273 +S'color woodcut [finished proof]' +p98147 +sg25267 +g27 +sg25275 +S'unknown date\n' +p98148 +sg25268 +S'Don Quixote and Sancho Panza' +p98149 +sg25270 +S'Louis Schanker' +p98150 +sa(dp98151 +g25273 +S'woodcut in black [progressive proof 1]' +p98152 +sg25267 +g27 +sg25275 +S'unknown date\n' +p98153 +sg25268 +S'Don Quixote and Sancho Panza' +p98154 +sg25270 +S'Louis Schanker' +p98155 +sa(dp98156 +g25273 +S'woodcut in blue and black [progressive proof 2]' +p98157 +sg25267 +g27 +sg25275 +S'unknown date\n' +p98158 +sg25268 +S'Don Quixote and Sancho Panza' +p98159 +sg25270 +S'Louis Schanker' +p98160 +sa(dp98161 +g25268 +S'The Lovers' +p98162 +sg25270 +S'Artist Information (' +p98163 +sg25273 +S'(artist after)' +p98164 +sg25275 +S'\n' +p98165 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a419.jpg' +p98166 +sg25267 +g27 +sa(dp98167 +g25273 +S'woodcut in blue, light blue, red, and black [progressive proof 3]' +p98168 +sg25267 +g27 +sg25275 +S'unknown date\n' +p98169 +sg25268 +S'Don Quixote and Sancho Panza' +p98170 +sg25270 +S'Louis Schanker' +p98171 +sa(dp98172 +g25273 +S'woodcut in blue, light blue, red, black, and blue-green [progressive proof 4]' +p98173 +sg25267 +g27 +sg25275 +S'unknown date\n' +p98174 +sg25268 +S'Don Quixote and Sancho Panza' +p98175 +sg25270 +S'Louis Schanker' +p98176 +sa(dp98177 +g25273 +S'color woodcut' +p98178 +sg25267 +g27 +sg25275 +S'unknown date\n' +p98179 +sg25268 +S'Abstract Landscape' +p98180 +sg25270 +S'Louis Schanker' +p98181 +sa(dp98182 +g25268 +S'Ecce Homo' +p98183 +sg25270 +S'Martin Schongauer' +p98184 +sg25273 +S'engraving' +p98185 +sg25275 +S'c. 1480' +p98186 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a49b.jpg' +p98187 +sg25267 +g27 +sa(dp98188 +g25268 +S'Night Wind' +p98189 +sg25270 +S'Karl Schrag' +p98190 +sg25273 +S'etching, engraving and aquatint in green and black on wove paper' +p98191 +sg25275 +S'1946' +p98192 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b87.jpg' +p98193 +sg25267 +g27 +sa(dp98194 +g25273 +S'engraving and etching in black on wove paper' +p98195 +sg25267 +g27 +sg25275 +S'1946' +p98196 +sg25268 +S'Rain and the Sea' +p98197 +sg25270 +S'Karl Schrag' +p98198 +sa(dp98199 +g25268 +S'A Standing Oriental Wearing a Greatcoat' +p98200 +sg25270 +S'Giovanni Battista Tiepolo' +p98201 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p98202 +sg25275 +S'1753/1762' +p98203 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a000710b.jpg' +p98204 +sg25267 +g27 +sa(dp98205 +g25268 +S'A Standing Oriental Holding a Rod' +p98206 +sg25270 +S'Giovanni Battista Tiepolo' +p98207 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p98208 +sg25275 +S'1753/1762' +p98209 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070dc.jpg' +p98210 +sg25267 +g27 +sa(dp98211 +g25268 +S'Woman at the Tub (Femme au tub)' +p98212 +sg25270 +S'Artist Information (' +p98213 +sg25273 +S'French, 1858 - 1936' +p98214 +sg25275 +S'(printer)' +p98215 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d4b.jpg' +p98216 +sg25267 +g27 +sa(dp98217 +g25268 +S'Guy and Mealy in "Paris qui marche" (Guy et Mealy dans "Paris qui marche")' +p98218 +sg25270 +S'Henri de Toulouse-Lautrec' +p98219 +sg25273 +S'lithograph in violet-brown on Japan paper' +p98220 +sg25275 +S'1898' +p98221 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e7c.jpg' +p98222 +sg25267 +g27 +sa(dp98223 +g25268 +S'The Churchgoers' +p98224 +sg25270 +S'Israhel van Meckenem' +p98225 +sg25273 +S'engraving' +p98226 +sg25275 +S'c. 1495/1503' +p98227 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a41d.jpg' +p98228 +sg25267 +g27 +sa(dp98229 +g25268 +S'Lender Bowing (Lender saluant)' +p98230 +sg25270 +S'Henri de Toulouse-Lautrec' +p98231 +sg25273 +S'lithograph in olive green on velin paper' +p98232 +sg25275 +S'1895' +p98233 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a020.jpg' +p98234 +sg25267 +g27 +sa(dp98235 +g25268 +S'Rejane and Galipaux in "Madame Sans-G\xc3\xaane" (R\xc3\xa9jane et Galipaux dans "Madame Sans-G\xc3\xaane")' +p98236 +sg25270 +S'Henri de Toulouse-Lautrec' +p98237 +sg25273 +S'lithograph in black on velin paper' +p98238 +sg25275 +S'1894' +p98239 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ee4.jpg' +p98240 +sg25267 +g27 +sa(dp98241 +g25273 +S'etching and gouache' +p98242 +sg25267 +g27 +sg25275 +S'1937' +p98243 +sg25268 +S'Metropolis' +p98244 +sg25270 +S'Julian Trevelyan' +p98245 +sa(dp98246 +g25268 +S'Apuleia in Search of Apuleius' +p98247 +sg25270 +S'Joseph Mallord William Turner' +p98248 +sg25273 +S'etching' +p98249 +sg25275 +S'unknown date\n' +p98250 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a96.jpg' +p98251 +sg25267 +g27 +sa(dp98252 +g25268 +S'Chain of Alps from Grenoble to Chamberi' +p98253 +sg25270 +S'Joseph Mallord William Turner' +p98254 +sg25273 +S'etching' +p98255 +sg25275 +S'published 1812' +p98256 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a6f.jpg' +p98257 +sg25267 +g27 +sa(dp98258 +g25268 +S'Isis' +p98259 +sg25270 +S'Joseph Mallord William Turner' +p98260 +sg25273 +S'etching' +p98261 +sg25275 +S'published 1819' +p98262 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a93.jpg' +p98263 +sg25267 +g27 +sa(dp98264 +g25268 +S'Isleworth' +p98265 +sg25270 +S'Joseph Mallord William Turner' +p98266 +sg25273 +S'etching' +p98267 +sg25275 +S'published 1819' +p98268 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a8b.jpg' +p98269 +sg25267 +g27 +sa(dp98270 +g25268 +S'London from Greenwich' +p98271 +sg25270 +S'Joseph Mallord William Turner' +p98272 +sg25273 +S'etching' +p98273 +sg25275 +S'published 1811' +p98274 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a4e.jpg' +p98275 +sg25267 +g27 +sa(dp98276 +g25268 +S"Saint Catherine's Hill Near Guilford" +p98277 +sg25270 +S'Joseph Mallord William Turner' +p98278 +sg25273 +S'etching' +p98279 +sg25275 +S'published 1811' +p98280 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a5c.jpg' +p98281 +sg25267 +g27 +sa(dp98282 +g25268 +S'The Castle Above the Meadows' +p98283 +sg25270 +S'Joseph Mallord William Turner' +p98284 +sg25273 +S'etching' +p98285 +sg25275 +S'published 1808' +p98286 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a39.jpg' +p98287 +sg25267 +g27 +sa(dp98288 +g25268 +S'The Knight and the Lady' +p98289 +sg25270 +S'Israhel van Meckenem' +p98290 +sg25273 +S'engraving' +p98291 +sg25275 +S'c. 1495/1503' +p98292 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a41b.jpg' +p98293 +sg25267 +g27 +sa(dp98294 +g25273 +S'engraving' +p98295 +sg25267 +g27 +sg25275 +S'1943' +p98296 +sg25268 +S'Place Dauphine' +p98297 +sg25270 +S'Roger Vieillard' +p98298 +sa(dp98299 +g25273 +S'portfolio with nine engravings plus title page andtable of contents' +p98300 +sg25267 +g27 +sg25275 +S'published 1943' +p98301 +sg25268 +S'Paysages de France' +p98302 +sg25270 +S'Roger Vieillard' +p98303 +sa(dp98304 +g25273 +S'engraving' +p98305 +sg25267 +g27 +sg25275 +S'1943' +p98306 +sg25268 +S'Rue Git-le-Coeur' +p98307 +sg25270 +S'Roger Vieillard' +p98308 +sa(dp98309 +g25273 +S'engraving' +p98310 +sg25267 +g27 +sg25275 +S'1943' +p98311 +sg25268 +S'Paysage des vosges' +p98312 +sg25270 +S'Roger Vieillard' +p98313 +sa(dp98314 +g25273 +S'engraving' +p98315 +sg25267 +g27 +sg25275 +S'1943' +p98316 +sg25268 +S'Puits en Provence' +p98317 +sg25270 +S'Roger Vieillard' +p98318 +sa(dp98319 +g25273 +S'engraving' +p98320 +sg25267 +g27 +sg25275 +S'1943' +p98321 +sg25268 +S'Rochemaure' +p98322 +sg25270 +S'Roger Vieillard' +p98323 +sa(dp98324 +g25273 +S'engraving' +p98325 +sg25267 +g27 +sg25275 +S'1943' +p98326 +sg25268 +S'Mont-Blanc' +p98327 +sg25270 +S'Roger Vieillard' +p98328 +sa(dp98329 +g25273 +S'engraving' +p98330 +sg25267 +g27 +sg25275 +S'1943' +p98331 +sg25268 +S'Savoie' +p98332 +sg25270 +S'Roger Vieillard' +p98333 +sa(dp98334 +g25273 +S'engraving' +p98335 +sg25267 +g27 +sg25275 +S'1943' +p98336 +sg25268 +S'Terrasse au Trocadero' +p98337 +sg25270 +S'Roger Vieillard' +p98338 +sa(dp98339 +g25273 +S'engraving' +p98340 +sg25267 +g27 +sg25275 +S'1943' +p98341 +sg25268 +S'Notre Dame de Paris' +p98342 +sg25270 +S'Roger Vieillard' +p98343 +sa(dp98344 +g25268 +S'The Dissimilar Couple' +p98345 +sg25270 +S'Israhel van Meckenem' +p98346 +sg25273 +S'engraving' +p98347 +sg25275 +S'c. 1495/1503' +p98348 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a41e.jpg' +p98349 +sg25267 +g27 +sa(dp98350 +g25268 +S'Skull' +p98351 +sg25270 +S'Hans Wechtlin I' +p98352 +sg25273 +S'chiaroscuro woodcut in blue' +p98353 +sg25275 +S'1520' +p98354 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a0006094.jpg' +p98355 +sg25267 +g27 +sa(dp98356 +g25268 +S'Mother and Daughter' +p98357 +sg25270 +S'James McNeill Whistler' +p98358 +sg25273 +S'lithograph' +p98359 +sg25275 +S'unknown date\n' +p98360 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab79.jpg' +p98361 +sg25267 +g27 +sa(dp98362 +g25268 +S'A Lady Seated' +p98363 +sg25270 +S'James McNeill Whistler' +p98364 +sg25273 +S'lithograph' +p98365 +sg25275 +S'unknown date\n' +p98366 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab17.jpg' +p98367 +sg25267 +g27 +sa(dp98368 +g25268 +S'By the Balcony' +p98369 +sg25270 +S'James McNeill Whistler' +p98370 +sg25273 +S'lithograph in black on wove paper' +p98371 +sg25275 +S'1896' +p98372 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aafd.jpg' +p98373 +sg25267 +g27 +sa(dp98374 +g25268 +S'The Draped Figure Seated' +p98375 +sg25270 +S'James McNeill Whistler' +p98376 +sg25273 +S'lithograph' +p98377 +sg25275 +S'1893' +p98378 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaa5.jpg' +p98379 +sg25267 +g27 +sa(dp98380 +g25268 +S'Draped Figure Standing' +p98381 +sg25270 +S'James McNeill Whistler' +p98382 +sg25273 +S'lithograph' +p98383 +sg25275 +S'unknown date\n' +p98384 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab78.jpg' +p98385 +sg25267 +g27 +sa(dp98386 +g25268 +S'Draped Figure Standing' +p98387 +sg25270 +S'James McNeill Whistler' +p98388 +sg25273 +S'lithograph' +p98389 +sg25275 +S'unknown date\n' +p98390 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab15.jpg' +p98391 +sg25267 +g27 +sa(dp98392 +g25268 +S'Early Morning' +p98393 +sg25270 +S'James McNeill Whistler' +p98394 +sg25273 +S'lithotint' +p98395 +sg25275 +S'1878' +p98396 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000aba5.jpg' +p98397 +sg25267 +g27 +sa(dp98398 +g25268 +S'Figure Study' +p98399 +sg25270 +S'James McNeill Whistler' +p98400 +sg25273 +S'lithograph' +p98401 +sg25275 +S'1890' +p98402 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab8f.jpg' +p98403 +sg25267 +g27 +sa(dp98404 +g25268 +S'Figure Study' +p98405 +sg25270 +S'James McNeill Whistler' +p98406 +sg25273 +S'lithograph' +p98407 +sg25275 +S'1895' +p98408 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab22.jpg' +p98409 +sg25267 +g27 +sa(dp98410 +g25268 +S'The Juggler and the Woman' +p98411 +sg25270 +S'Israhel van Meckenem' +p98412 +sg25273 +S'engraving' +p98413 +sg25275 +S'c. 1495/1503' +p98414 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c17.jpg' +p98415 +sg25267 +g27 +sa(dp98416 +g25268 +S'Lady and Child' +p98417 +sg25270 +S'James McNeill Whistler' +p98418 +sg25273 +S'lithograph' +p98419 +sg25275 +S'unknown date\n' +p98420 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab75.jpg' +p98421 +sg25267 +g27 +sa(dp98422 +g25268 +S'Mother and Child, No.IV' +p98423 +sg25270 +S'James McNeill Whistler' +p98424 +sg25273 +S'lithograph' +p98425 +sg25275 +S'1895' +p98426 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab0e.jpg' +p98427 +sg25267 +g27 +sa(dp98428 +g25268 +S'Nude Model, Back View' +p98429 +sg25270 +S'James McNeill Whistler' +p98430 +sg25273 +S'color lithograph' +p98431 +sg25275 +S'unknown date\n' +p98432 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab7a.jpg' +p98433 +sg25267 +g27 +sa(dp98434 +g25268 +S'Nude Model Standing' +p98435 +sg25270 +S'James McNeill Whistler' +p98436 +sg25273 +S'lithograph' +p98437 +sg25275 +S'unknown date\n' +p98438 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab76.jpg' +p98439 +sg25267 +g27 +sa(dp98440 +g25268 +S'The Rialto' +p98441 +sg25270 +S'James McNeill Whistler' +p98442 +sg25273 +S'etching and drypoint' +p98443 +sg25275 +S'1880' +p98444 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab9e.jpg' +p98445 +sg25267 +g27 +sa(dp98446 +g25268 +S'St\xc3\xa9phane Mallarm\xc3\xa9' +p98447 +sg25270 +S'James McNeill Whistler' +p98448 +sg25273 +S'lithograph' +p98449 +sg25275 +S'1894' +p98450 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aad1.jpg' +p98451 +sg25267 +g27 +sa(dp98452 +g25268 +S'Study' +p98453 +sg25270 +S'James McNeill Whistler' +p98454 +sg25273 +S'lithograph' +p98455 +sg25275 +S'1878' +p98456 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000aba7.jpg' +p98457 +sg25267 +g27 +sa(dp98458 +g25268 +S'Study - Maude Seated' +p98459 +sg25270 +S'James McNeill Whistler' +p98460 +sg25273 +S'lithotint' +p98461 +sg25275 +S'1878' +p98462 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abba.jpg' +p98463 +sg25267 +g27 +sa(dp98464 +g25268 +S'The Blacksmith' +p98465 +sg25270 +S'James McNeill Whistler' +p98466 +sg25273 +S'lithograph' +p98467 +sg25275 +S'1895' +p98468 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aae2.jpg' +p98469 +sg25267 +g27 +sa(dp98470 +g25268 +S'The Cap' +p98471 +sg25270 +S'James McNeill Whistler' +p98472 +sg25273 +S'lithograph' +p98473 +sg25275 +S'unknown date\n' +p98474 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab1d.jpg' +p98475 +sg25267 +g27 +sa(dp98476 +g25268 +S'The Angry Wife' +p98477 +sg25270 +S'Israhel van Meckenem' +p98478 +sg25273 +S'engraving' +p98479 +sg25275 +S'c. 1495/1503' +p98480 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a420.jpg' +p98481 +sg25267 +g27 +sa(dp98482 +g25268 +S'The Fair' +p98483 +sg25270 +S'James McNeill Whistler' +p98484 +sg25273 +S'lithograph' +p98485 +sg25275 +S'1895' +p98486 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aae1.jpg' +p98487 +sg25267 +g27 +sa(dp98488 +g25268 +S'The Siesta' +p98489 +sg25270 +S'James McNeill Whistler' +p98490 +sg25273 +S'lithograph' +p98491 +sg25275 +S'1896' +p98492 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aafc.jpg' +p98493 +sg25267 +g27 +sa(dp98494 +g25268 +S'The Sisters' +p98495 +sg25270 +S'James McNeill Whistler' +p98496 +sg25273 +S'lithograph' +p98497 +sg25275 +S'1894' +p98498 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab24.jpg' +p98499 +sg25267 +g27 +sa(dp98500 +g25268 +S'The Thames' +p98501 +sg25270 +S'James McNeill Whistler' +p98502 +sg25273 +S'lithograph' +p98503 +sg25275 +S'1896' +p98504 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abbc.jpg' +p98505 +sg25267 +g27 +sa(dp98506 +g25268 +S'Henry of Navarre' +p98507 +sg25270 +S'Hieronymus Wierix' +p98508 +sg25273 +S'engraving' +p98509 +sg25275 +S'unknown date\n' +p98510 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d018.jpg' +p98511 +sg25267 +g27 +sa(dp98512 +g25273 +S'color woodcut on tracing paper' +p98513 +sg25267 +g27 +sg25275 +S'1943' +p98514 +sg25268 +S'Accident in the Gobi Desert' +p98515 +sg25270 +S'Adja Yunkers' +p98516 +sa(dp98517 +g25273 +S'color woodcut on black tissue paper' +p98518 +sg25267 +g27 +sg25275 +S'1945' +p98519 +sg25268 +S'Black Candle' +p98520 +sg25270 +S'Adja Yunkers' +p98521 +sa(dp98522 +g25273 +S'color woodcut' +p98523 +sg25267 +g27 +sg25275 +S'1944' +p98524 +sg25268 +S'Green Atelier' +p98525 +sg25270 +S'Adja Yunkers' +p98526 +sa(dp98527 +g25273 +S'color woodcut on tracing paper' +p98528 +sg25267 +g27 +sg25275 +S'1944' +p98529 +sg25268 +S'Red Still Life' +p98530 +sg25270 +S'Adja Yunkers' +p98531 +sa(dp98532 +g25268 +S'Title Plate' +p98533 +sg25270 +S'Giovanni Battista Piranesi' +p98534 +sg25273 +S'etching, engraving, sulphur tint or open bite' +p98535 +sg25275 +S'published 1750/1758' +p98536 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f66.jpg' +p98537 +sg25267 +g27 +sa(dp98538 +g25268 +S'The Organ Player and His Wife' +p98539 +sg25270 +S'Israhel van Meckenem' +p98540 +sg25273 +S'engraving' +p98541 +sg25275 +S'c. 1495/1503' +p98542 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c18.jpg' +p98543 +sg25267 +g27 +sa(dp98544 +g25268 +S'The Grand Piazza' +p98545 +sg25270 +S'Giovanni Battista Piranesi' +p98546 +sg25273 +S'etching, engraving, sulphur tint or open bite, burnishing' +p98547 +sg25275 +S'published 1750/1758' +p98548 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc2a.jpg' +p98549 +sg25267 +g27 +sa(dp98550 +g25268 +S'The Smoking Fire' +p98551 +sg25270 +S'Giovanni Battista Piranesi' +p98552 +sg25273 +S'etching, engraving, sulphur tint or open bite, burnishing' +p98553 +sg25275 +S'published 1750/1758' +p98554 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc28.jpg' +p98555 +sg25267 +g27 +sa(dp98556 +g25268 +S'The Drawbridge' +p98557 +sg25270 +S'Giovanni Battista Piranesi' +p98558 +sg25273 +S'etching, engraving, scratching' +p98559 +sg25275 +S'published 1750/1758' +p98560 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a000572b.jpg' +p98561 +sg25267 +g27 +sa(dp98562 +g25268 +S'The Staircase with Trophies' +p98563 +sg25270 +S'Giovanni Battista Piranesi' +p98564 +sg25273 +S'etching, engraving' +p98565 +sg25275 +S'published 1750/1758' +p98566 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc29.jpg' +p98567 +sg25267 +g27 +sa(dp98568 +g25268 +S'The Giant Wheel' +p98569 +sg25270 +S'Giovanni Battista Piranesi' +p98570 +sg25273 +S'etching, engraving' +p98571 +sg25275 +S'published 1750/1758' +p98572 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc2f.jpg' +p98573 +sg25267 +g27 +sa(dp98574 +g25268 +S'Prisoners on a Projecting Platform' +p98575 +sg25270 +S'Giovanni Battista Piranesi' +p98576 +sg25273 +S'etching, engraving, sulphur tint or open bite, burnishing' +p98577 +sg25275 +S'published 1750/1758' +p98578 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc30.jpg' +p98579 +sg25267 +g27 +sa(dp98580 +g25268 +S'The Arch with a Shell Ornament' +p98581 +sg25270 +S'Giovanni Battista Piranesi' +p98582 +sg25273 +S'etching, engraving, scratching, sulphur tint or open bite, drypoint' +p98583 +sg25275 +S'published 1750/1758' +p98584 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc31.jpg' +p98585 +sg25267 +g27 +sa(dp98586 +g25268 +S'The Sawhorse' +p98587 +sg25270 +S'Giovanni Battista Piranesi' +p98588 +sg25273 +S'etching, engraving, sulphur tint or open bite, scratching' +p98589 +sg25275 +S'published 1750/1758' +p98590 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc32.jpg' +p98591 +sg25267 +g27 +sa(dp98592 +g25268 +S'The Well' +p98593 +sg25270 +S'Giovanni Battista Piranesi' +p98594 +sg25273 +S'etching, engraving, scratching, burnishing, and lavis' +p98595 +sg25275 +S'published 1750/1758' +p98596 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e2c.jpg' +p98597 +sg25267 +g27 +sa(dp98598 +g25268 +S'The Gothic Arch' +p98599 +sg25270 +S'Giovanni Battista Piranesi' +p98600 +sg25273 +S'etching, engraving, sulphur tint or open bite, burnishing' +p98601 +sg25275 +S'published 1750/1758' +p98602 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc2c.jpg' +p98603 +sg25267 +g27 +sa(dp98604 +g25268 +S'The Pier with a Lamp' +p98605 +sg25270 +S'Giovanni Battista Piranesi' +p98606 +sg25273 +S'etching, engraving, sulphur tint or open bite, burnishing' +p98607 +sg25275 +S'published 1750/1758' +p98608 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc2d.jpg' +p98609 +sg25267 +g27 +sa(dp98610 +g25268 +S'The Pier with Chains' +p98611 +sg25270 +S'Giovanni Battista Piranesi' +p98612 +sg25273 +S'etching, engraving, sulphur tint or open bite, burnishing' +p98613 +sg25275 +S'published 1750/1758' +p98614 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc2e.jpg' +p98615 +sg25267 +g27 +sa(dp98616 +g25273 +S'woodcut' +p98617 +sg25267 +g27 +sg25275 +S'1517' +p98618 +sg25268 +S'Massacre of the Innocents' +p98619 +sg25270 +S'Domenico Campagnola' +p98620 +sa(dp98621 +g25268 +S'Charles I, King of England' +p98622 +sg25270 +S'Artist Information (' +p98623 +sg25273 +S'(artist after)' +p98624 +sg25275 +S'\n' +p98625 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5e9.jpg' +p98626 +sg25267 +g27 +sa(dp98627 +g25268 +S'Love as Folly' +p98628 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p98629 +sg25273 +S'oil on canvas' +p98630 +sg25275 +S'c. 1773/1776' +p98631 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005ab6.jpg' +p98632 +sg25267 +g27 +sa(dp98633 +g25268 +S'Love the Sentinel' +p98634 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p98635 +sg25273 +S'oil on canvas' +p98636 +sg25275 +S'c. 1773/1776' +p98637 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005ab7.jpg' +p98638 +sg25267 +g27 +sa(dp98639 +g25268 +S'Dutch Ships in a Lively Breeze' +p98640 +sg25270 +S'Artist Information (' +p98641 +sg25273 +S'Dutch, 1620/1622 - 1676' +p98642 +sg25275 +S'(related artist)' +p98643 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00069/a0006948.jpg' +p98644 +sg25267 +g27 +sa(dp98645 +g25268 +S'Captain Charles Stewart' +p98646 +sg25270 +S'Thomas Sully' +p98647 +sg25273 +S'oil on canvas' +p98648 +sg25275 +S'1811-1812' +p98649 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000267.jpg' +p98650 +sg25267 +S"This dashing young captain was to become one of America's most famous naval\ncommanders.\nIn the summer of 1813, Charles Stewart took command of the \n Portrayed at age thirty-three, the captain reveals his years of active duty by his\nvigorous stance, feet braced apart as though planted on a rolling deck -- an assertive,\neven swaggering, posture most unexpected in a formal portrait. His thumb aggressively\npresses down upon the desk's naval charts, and a world globe emerges beneath the\ntablecloth. The white, lower half of Stewart's uniform stands out against the shaded\nroom, while a shaft of sunshine on the upper wall silhouettes his dark, navy coat\nand cocked elbow.\n Captain Charles Stewart\n " +p98651 +sa(dp98652 +g25268 +S'The Mill' +p98653 +sg25270 +S'Artist Information (' +p98654 +sg25273 +S'(artist after)' +p98655 +sg25275 +S'\n' +p98656 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a2f.jpg' +p98657 +sg25267 +g27 +sa(dp98658 +g25268 +S'Circular Ornament with Musicians Playing near a Well' +p98659 +sg25270 +S'Israhel van Meckenem' +p98660 +sg25273 +S'engraving' +p98661 +sg25275 +S'c. 1495/1503' +p98662 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00068/a0006849.jpg' +p98663 +sg25267 +g27 +sa(dp98664 +g25268 +S'A Prince of Saxony' +p98665 +sg25270 +S'Lucas Cranach the Elder' +p98666 +sg25273 +S'oil on panel' +p98667 +sg25275 +S'c. 1517' +p98668 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000541.jpg' +p98669 +sg25267 +g27 +sa(dp98670 +g25268 +S'A Princess of Saxony' +p98671 +sg25270 +S'Lucas Cranach the Elder' +p98672 +sg25273 +S'oil on panel' +p98673 +sg25275 +S'c. 1517' +p98674 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004be.jpg' +p98675 +sg25267 +g27 +sa(dp98676 +g25268 +S'Portrait of a Nobleman' +p98677 +sg25270 +S'Nicolaus Kremer' +p98678 +sg25273 +S'oil on panel' +p98679 +sg25275 +S'1529' +p98680 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000545.jpg' +p98681 +sg25267 +g27 +sa(dp98682 +g25268 +S'Hans Roth [obverse]' +p98683 +sg25270 +S'Bernhard Strigel' +p98684 +sg25273 +S'oil on panel' +p98685 +sg25275 +S'1527' +p98686 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000056e.jpg' +p98687 +sg25267 +g27 +sa(dp98688 +g25273 +S'oil on panel' +p98689 +sg25267 +g27 +sg25275 +S'1527' +p98690 +sg25268 +S'Hans Roth [reverse]' +p98691 +sg25270 +S'Bernhard Strigel' +p98692 +sa(dp98693 +g25268 +S'Margarethe V\xc3\xb6hlin, Wife of Hans Roth [obverse]' +p98694 +sg25270 +S'Bernhard Strigel' +p98695 +sg25273 +S'oil on panel' +p98696 +sg25275 +S'1527' +p98697 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000543.jpg' +p98698 +sg25267 +g27 +sa(dp98699 +g25273 +S'oil on panel' +p98700 +sg25267 +g27 +sg25275 +S'1527' +p98701 +sg25268 +S'Margarethe V\xc3\xb6hlin, Wife of Hans Roth [reverse]' +p98702 +sg25270 +S'Bernhard Strigel' +p98703 +sa(dp98704 +g25268 +S'The Madonna of the Stars' +p98705 +sg25270 +S'Jacopo Tintoretto' +p98706 +sg25273 +S'oil on canvas' +p98707 +sg25275 +S'second half 16th century' +p98708 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000829.jpg' +p98709 +sg25267 +S"Here, Tintoretto combined a traditional religious subject with a tender\n image of young motherhood. Shown in half-length, the Virgin Mary is seated\n in an unidentified space, with the Christ child lying contentedly across\n her knees in a pose that prefigures images of the \n In contrast to the dramatic use of color found in many of Tintoretto's\n late works, his palette is here light and harmonious. The warm yellow of\n the background balances the soft red of the Virgin's dress and the Child's\n rosy flesh. The paint is thinly applied with the rapid, confident\n brushstrokes that characterize Tintoretto's later style. The painting's\n small size and intimate mood suggest that it was made for personal devotion\n in a private home.\n " +p98710 +sa(dp98711 +g25273 +S'wood engraving' +p98712 +sg25267 +g27 +sg25275 +S'1946' +p98713 +sg25268 +S'The Boyer Place' +p98714 +sg25270 +S'Grace Thurston Arnold Albee' +p98715 +sa(dp98716 +g25268 +S"Beggar's Opera, Act III" +p98717 +sg25270 +S'Artist Information (' +p98718 +sg25273 +S'(artist after)' +p98719 +sg25275 +S'\n' +p98720 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a0007897.jpg' +p98721 +sg25267 +g27 +sa(dp98722 +g25268 +S'Head of an Aged Man' +p98723 +sg25270 +S'Israhel van Meckenem' +p98724 +sg25273 +S'engraving' +p98725 +sg25275 +S'c. 1480/1490' +p98726 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4c9.jpg' +p98727 +sg25267 +g27 +sa(dp98728 +g25268 +S'Lecon de Dessin' +p98729 +sg25270 +S'Johann Anton Andree' +p98730 +sg25273 +S', unknown date' +p98731 +sg25275 +S'\n' +p98732 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3f6.jpg' +p98733 +sg25267 +g27 +sa(dp98734 +g25268 +S'Lecon de Musique' +p98735 +sg25270 +S'Johann Anton Andree' +p98736 +sg25273 +S', unknown date' +p98737 +sg25275 +S'\n' +p98738 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3f5.jpg' +p98739 +sg25267 +g27 +sa(dp98740 +g25273 +S'overall: 18.4 x 12.7 cm (7 1/4 x 5 in.)' +p98741 +sg25267 +g27 +sg25275 +S'\nminiature on vellum' +p98742 +sg25268 +S'The Crucifixion [recto]' +p98743 +sg25270 +S'German 13th Century' +p98744 +sa(dp98745 +g25273 +S'overall: 18.4 x 12.7 cm (7 1/4 x 5 in.)' +p98746 +sg25267 +g27 +sg25275 +S'\nminiature on vellum' +p98747 +sg25268 +S'The Three Women at the Tomb [verso]' +p98748 +sg25270 +S'German 13th Century' +p98749 +sa(dp98750 +g25268 +S'Madonna and Child with a Bell' +p98751 +sg25270 +S'German 15th Century' +p98752 +sg25273 +S'Lehrs, undescribed' +p98753 +sg25275 +S'\nengraving' +p98754 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3c9.jpg' +p98755 +sg25267 +g27 +sa(dp98756 +g25268 +S'Dance in a Madhouse' +p98757 +sg25270 +S'George Bellows' +p98758 +sg25273 +S'lithograph in black on Asian paper' +p98759 +sg25275 +S'1917' +p98760 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c1/a000c1c3.jpg' +p98761 +sg25267 +g27 +sa(dp98762 +g25273 +S'lithograph on wove paper' +p98763 +sg25267 +g27 +sg25275 +S'1916' +p98764 +sg25268 +S'Prayer Meeting, No.2' +p98765 +sg25270 +S'George Bellows' +p98766 +sa(dp98767 +g25268 +S'Pride' +p98768 +sg25270 +S'Jakob Binck' +p98769 +sg25273 +S'engraving' +p98770 +sg25275 +S'unknown date\n' +p98771 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8ed.jpg' +p98772 +sg25267 +g27 +sa(dp98773 +g25273 +S'color lithograph' +p98774 +sg25267 +g27 +sg25275 +S'1945' +p98775 +sg25268 +S'Phaeton, or Chariot I' +p98776 +sg25270 +S'Georges Braque' +p98777 +sa(dp98778 +g25268 +S"Solomon's Idolatry" +p98779 +sg25270 +S'Hans Burgkmair I' +p98780 +sg25273 +S'woodcut' +p98781 +sg25275 +S'1519' +p98782 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8dc.jpg' +p98783 +sg25267 +g27 +sa(dp98784 +g25268 +S'The Death of Lucretia' +p98785 +sg25270 +S'Israhel van Meckenem' +p98786 +sg25273 +S'engraving' +p98787 +sg25275 +S'c. 1500/1503' +p98788 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f5f.jpg' +p98789 +sg25267 +g27 +sa(dp98790 +g25273 +S'lithograph' +p98791 +sg25267 +g27 +sg25275 +S'1946' +p98792 +sg25268 +S'The Black Sheep' +p98793 +sg25270 +S'Malcolm Cameron' +p98794 +sa(dp98795 +g25268 +S'Piet\xc3\xa0 (the "Christ of Caprarola")' +p98796 +sg25270 +S'Annibale Carracci' +p98797 +sg25273 +S'etching, engraving and drypoint' +p98798 +sg25275 +S'1597' +p98799 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c990.jpg' +p98800 +sg25267 +g27 +sa(dp98801 +g25268 +S'Titian' +p98802 +sg25270 +S'Artist Information (' +p98803 +sg25273 +S'(artist after)' +p98804 +sg25275 +S'\n' +p98805 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb73.jpg' +p98806 +sg25267 +g27 +sa(dp98807 +g25268 +S'Lady in Black, in a Loge, Facing Right' +p98808 +sg25270 +S'Mary Cassatt' +p98809 +sg25273 +S'soft-ground etching' +p98810 +sg25275 +S'c. 1880' +p98811 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005c/a0005c92.jpg' +p98812 +sg25267 +g27 +sa(dp98813 +g25268 +S'Afternoon Promenade' +p98814 +sg25270 +S'Mary Cassatt' +p98815 +sg25273 +S'soft-ground etching' +p98816 +sg25275 +S'c. 1881' +p98817 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa30.jpg' +p98818 +sg25267 +g27 +sa(dp98819 +g25268 +S'The Corner of the Sofa (No. 3)' +p98820 +sg25270 +S'Mary Cassatt' +p98821 +sg25273 +S'soft-ground etching and aquatint' +p98822 +sg25275 +S'c. 1879' +p98823 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa2f.jpg' +p98824 +sg25267 +g27 +sa(dp98825 +g25268 +S"The Sign Painter (Le Peintre d'Enseignes)" +p98826 +sg25270 +S'Nicolas-Toussaint Charlet' +p98827 +sg25273 +S'lithograph' +p98828 +sg25275 +S'unknown date\n' +p98829 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009186.jpg' +p98830 +sg25267 +g27 +sa(dp98831 +g25273 +S'wood engraving' +p98832 +sg25267 +g27 +sg25275 +S'1946' +p98833 +sg25268 +S'Reflection in Crystal' +p98834 +sg25270 +S'Asa Cheffetz' +p98835 +sa(dp98836 +g25268 +S'Court with Trees (Bahnhof Tiergarten)' +p98837 +sg25270 +S'Lovis Corinth' +p98838 +sg25273 +S'drypoint' +p98839 +sg25275 +S'1920/1921' +p98840 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b68e.jpg' +p98841 +sg25267 +g27 +sa(dp98842 +g25268 +S'Large Walchen Sea Landscape (Grosse Walchenseelandschaft)' +p98843 +sg25270 +S'Lovis Corinth' +p98844 +sg25273 +S'drypoint' +p98845 +sg25275 +S'1923' +p98846 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c508.jpg' +p98847 +sg25267 +g27 +sa(dp98848 +g25268 +S'Coat of Arms with Tumbling Boy' +p98849 +sg25270 +S'Artist Information (' +p98850 +sg25273 +S'(artist after)' +p98851 +sg25275 +S'\n' +p98852 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4cb.jpg' +p98853 +sg25267 +g27 +sa(dp98854 +g25268 +S'Mother-in-Law (Bei den Corinthern)' +p98855 +sg25270 +S'Lovis Corinth' +p98856 +sg25273 +S'drypoint' +p98857 +sg25275 +S'1919' +p98858 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b680.jpg' +p98859 +sg25267 +g27 +sa(dp98860 +g25268 +S'On the Walchen Sea (Am Walchensee)' +p98861 +sg25270 +S'Lovis Corinth' +p98862 +sg25273 +S'drypoint' +p98863 +sg25275 +S'1920' +p98864 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b689.jpg' +p98865 +sg25267 +g27 +sa(dp98866 +g25268 +S'Rape (Frauenr\xc3\xa4uber)' +p98867 +sg25270 +S'Lovis Corinth' +p98868 +sg25273 +S'drypoint' +p98869 +sg25275 +S'1920' +p98870 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b690.jpg' +p98871 +sg25267 +g27 +sa(dp98872 +g25268 +S'Self-Portrait in a Straw Hat (Selbstbildnis im Strohhut)' +p98873 +sg25270 +S'Lovis Corinth' +p98874 +sg25273 +S'drypoint' +p98875 +sg25275 +S'1913' +p98876 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b647.jpg' +p98877 +sg25267 +g27 +sa(dp98878 +g25268 +S'Self-Portrait in a Straw Hat (Selbstbildnis im Strohhut)' +p98879 +sg25270 +S'Lovis Corinth' +p98880 +sg25273 +S'drypoint' +p98881 +sg25275 +S'1913' +p98882 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b64c.jpg' +p98883 +sg25267 +g27 +sa(dp98884 +g25268 +S'Street in K\xc3\xb6nigsberg (Strasse in K\xc3\xb6nigsberg)' +p98885 +sg25270 +S'Lovis Corinth' +p98886 +sg25273 +S'lithograph' +p98887 +sg25275 +S'1918' +p98888 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b67b.jpg' +p98889 +sg25267 +g27 +sa(dp98890 +g25268 +S'The Temptation of Saint Anthony (Die Versuchung des heiligen Antonius)' +p98891 +sg25270 +S'Lovis Corinth' +p98892 +sg25273 +S'drypoint' +p98893 +sg25275 +S'1919' +p98894 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b678.jpg' +p98895 +sg25267 +g27 +sa(dp98896 +g25273 +S'etching' +p98897 +sg25267 +g27 +sg25275 +S'1945' +p98898 +sg25268 +S'Brooklyn Landscape' +p98899 +sg25270 +S'Stephen Csoka' +p98900 +sa(dp98901 +g25268 +S"Donkey at a Watering Place (L'Ane a l'abreuvoir)" +p98902 +sg25270 +S'Charles-Fran\xc3\xa7ois Daubigny' +p98903 +sg25273 +S'aquatint' +p98904 +sg25275 +S'probably 1850' +p98905 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091d0.jpg' +p98906 +sg25267 +g27 +sa(dp98907 +g25268 +S'Large Sheepfold (Le Grand parc a moutons)' +p98908 +sg25270 +S'Charles-Fran\xc3\xa7ois Daubigny' +p98909 +sg25273 +S'etching' +p98910 +sg25275 +S'1860' +p98911 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091d7.jpg' +p98912 +sg25267 +g27 +sa(dp98913 +g25268 +S'Coat of Arms with Lion' +p98914 +sg25270 +S'Israhel van Meckenem' +p98915 +sg25273 +S'engraving' +p98916 +sg25275 +S'c. 1480/1490' +p98917 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4ca.jpg' +p98918 +sg25267 +g27 +sa(dp98919 +g25268 +S'The Meadow at Grave, near Villerville (Le Pre des Graves, a Villerville)' +p98920 +sg25270 +S'Charles-Fran\xc3\xa7ois Daubigny' +p98921 +sg25273 +S'etching' +p98922 +sg25275 +S'1875' +p98923 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091de.jpg' +p98924 +sg25267 +g27 +sa(dp98925 +g25268 +S'Satyr (Le Satyre)' +p98926 +sg25270 +S'Charles-Fran\xc3\xa7ois Daubigny' +p98927 +sg25273 +S'etching' +p98928 +sg25275 +S'1850' +p98929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009827.jpg' +p98930 +sg25267 +g27 +sa(dp98931 +g25268 +S'The Banks of the Cousin (Les Bords du Cousin)' +p98932 +sg25270 +S'Charles-Fran\xc3\xa7ois Daubigny' +p98933 +sg25273 +S'etching' +p98934 +sg25275 +S'1850' +p98935 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009828.jpg' +p98936 +sg25267 +g27 +sa(dp98937 +g25268 +S'Sunset (Soleil couchant)' +p98938 +sg25270 +S'Charles-Fran\xc3\xa7ois Daubigny' +p98939 +sg25273 +S'etching' +p98940 +sg25275 +S'1859' +p98941 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a00097fa.jpg' +p98942 +sg25267 +g27 +sa(dp98943 +g25268 +S'Ce logement est un peu cher, pour la place Royale...' +p98944 +sg25270 +S'Honor\xc3\xa9 Daumier' +p98945 +sg25273 +S'lithograph' +p98946 +sg25275 +S'1847' +p98947 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093d5.jpg' +p98948 +sg25267 +g27 +sa(dp98949 +g25268 +S"D\xc3\xa9sagr\xc3\xa9ment d'aller a la p\xc3\xaache..." +p98950 +sg25270 +S'Honor\xc3\xa9 Daumier' +p98951 +sg25273 +S'lithograph' +p98952 +sg25275 +S'1847' +p98953 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093b8.jpg' +p98954 +sg25267 +g27 +sa(dp98955 +g25268 +S"Les Suites d'une insurrection" +p98956 +sg25270 +S'Honor\xc3\xa9 Daumier' +p98957 +sg25273 +S'lithograph' +p98958 +sg25275 +S'1849' +p98959 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093c5.jpg' +p98960 +sg25267 +g27 +sa(dp98961 +g25268 +S'Hunting Dogs' +p98962 +sg25270 +S'Karel Dujardin' +p98963 +sg25273 +S'etching' +p98964 +sg25275 +S'unknown date\n' +p98965 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0d6.jpg' +p98966 +sg25267 +g27 +sa(dp98967 +g25268 +S'Two Mules' +p98968 +sg25270 +S'Karel Dujardin' +p98969 +sg25273 +S'etching' +p98970 +sg25275 +S'unknown date\n' +p98971 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0d7.jpg' +p98972 +sg25267 +g27 +sa(dp98973 +g25268 +S'The Dream of the Doctor (Temptation of the Idler)' +p98974 +sg25270 +S'Albrecht D\xc3\xbcrer' +p98975 +sg25273 +S'engraving (counterproof)' +p98976 +sg25275 +S'1498/1499' +p98977 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a98b.jpg' +p98978 +sg25267 +g27 +sa(dp98979 +g25268 +S'A Gothic Monstrance' +p98980 +sg25270 +S'Artist Information (' +p98981 +sg25273 +S'(artist after)' +p98982 +sg25275 +S'\n' +p98983 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a44a.jpg' +p98984 +sg25267 +g27 +sa(dp98985 +g25268 +S'A Star Falls and Makes Hell to Open' +p98986 +sg25270 +S'Jean Duvet' +p98987 +sg25273 +S'engraving' +p98988 +sg25275 +S'1546/1556' +p98989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084c9.jpg' +p98990 +sg25267 +g27 +sa(dp98991 +g25268 +S'The Multitude Which Stands before the Throne' +p98992 +sg25270 +S'Jean Duvet' +p98993 +sg25273 +S'engraving' +p98994 +sg25275 +S'1546/1556' +p98995 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084c8.jpg' +p98996 +sg25267 +g27 +sa(dp98997 +g25268 +S'The Babylon Harlot' +p98998 +sg25270 +S'Jean Duvet' +p98999 +sg25273 +S'engraving' +p99000 +sg25275 +S'1546/1556' +p99001 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084d3.jpg' +p99002 +sg25267 +g27 +sa(dp99003 +g25268 +S'Saint John Summoned to Heaven' +p99004 +sg25270 +S'Jean Duvet' +p99005 +sg25273 +S'engraving' +p99006 +sg25275 +S'1546/1556' +p99007 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083c3.jpg' +p99008 +sg25267 +g27 +sa(dp99009 +g25268 +S'The Angel Gives Saint John the Book to Eat' +p99010 +sg25270 +S'Jean Duvet' +p99011 +sg25273 +S'engraving' +p99012 +sg25275 +S'1552/1556' +p99013 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084c6.jpg' +p99014 +sg25267 +g27 +sa(dp99015 +g25268 +S'The Beast with Seven Heads and Ten Horns' +p99016 +sg25270 +S'Jean Duvet' +p99017 +sg25273 +S'engraving' +p99018 +sg25275 +S'1546/1556' +p99019 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084cd.jpg' +p99020 +sg25267 +g27 +sa(dp99021 +g25268 +S'The Dragon and the Beast' +p99022 +sg25270 +S'Jean Duvet' +p99023 +sg25273 +S'engraving' +p99024 +sg25275 +S'1546/1556' +p99025 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084c7.jpg' +p99026 +sg25267 +g27 +sa(dp99027 +g25268 +S'The Opening of the Seventh Seal' +p99028 +sg25270 +S'Jean Duvet' +p99029 +sg25273 +S'engraving' +p99030 +sg25275 +S'1546/1556' +p99031 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084cb.jpg' +p99032 +sg25267 +g27 +sa(dp99033 +g25268 +S'The Cumaean Sibyl' +p99034 +sg25270 +S'Jean Duvet' +p99035 +sg25273 +S'engraving' +p99036 +sg25275 +S'probably 1517' +p99037 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008306.jpg' +p99038 +sg25267 +g27 +sa(dp99039 +g25268 +S'Ornament with the Tree of Jesse' +p99040 +sg25270 +S'Israhel van Meckenem' +p99041 +sg25273 +S'engraving' +p99042 +sg25275 +S'unknown date\n' +p99043 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a44b.jpg' +p99044 +sg25267 +g27 +sa(dp99045 +g25268 +S'The Winepress of the Wrath of God' +p99046 +sg25270 +S'Jean Duvet' +p99047 +sg25273 +S'engraving' +p99048 +sg25275 +S'1546/1556' +p99049 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084cc.jpg' +p99050 +sg25267 +g27 +sa(dp99051 +g25273 +S'etching' +p99052 +sg25267 +g27 +sg25275 +S'1946' +p99053 +sg25268 +S'Americana' +p99054 +sg25270 +S'Ralph Fabri' +p99055 +sa(dp99056 +g25268 +S'Design for a Chimney' +p99057 +sg25270 +S'John Flaxman' +p99058 +sg25273 +S'pen and black ink' +p99059 +sg25275 +S'unknown date\n' +p99060 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071dd.jpg' +p99061 +sg25267 +g27 +sa(dp99062 +g25268 +S'Group of Female Figures' +p99063 +sg25270 +S'John Flaxman' +p99064 +sg25273 +S'graphite on laid paper' +p99065 +sg25275 +S'unknown date\n' +p99066 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a000716e.jpg' +p99067 +sg25267 +g27 +sa(dp99068 +g25268 +S'Portrait of a Man' +p99069 +sg25270 +S'John Flaxman' +p99070 +sg25273 +S'graphite on laid paper' +p99071 +sg25275 +S'unknown date\n' +p99072 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d5d.jpg' +p99073 +sg25267 +g27 +sa(dp99074 +g25268 +S'Sheet of Sketches [recto and verso]' +p99075 +sg25270 +S'John Flaxman' +p99076 +sg25273 +S'graphite on laid paper' +p99077 +sg25275 +S'unknown date\n' +p99078 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071a3.jpg' +p99079 +sg25267 +g27 +sa(dp99080 +g25268 +S'Patron Saints of Bologna' +p99081 +sg25270 +S'Jacopo Francia' +p99082 +sg25273 +S'engraving' +p99083 +sg25275 +S'c. 1515/1520' +p99084 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbb4.jpg' +p99085 +sg25267 +g27 +sa(dp99086 +g25268 +S'Manao Tupapau (She is Haunted by a Spirit)' +p99087 +sg25270 +S'Paul Gauguin' +p99088 +sg25273 +S'lithograph (stone) in black' +p99089 +sg25275 +S'1894' +p99090 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00015/a000155b.jpg' +p99091 +sg25267 +g27 +sa(dp99092 +g25268 +S'The Pony' +p99093 +sg25270 +S'Paul Gauguin' +p99094 +sg25273 +S'gouache monotype touched with gum or varnish on laid paper' +p99095 +sg25275 +S'c. 1902' +p99096 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00022/a000223f.jpg' +p99097 +sg25267 +g27 +sa(dp99098 +g25268 +S'Shepherd with Four Goats (Les quatre ch\xc3\xa8vres)' +p99099 +sg25270 +S'Claude Lorrain' +p99100 +sg25273 +S'etching' +p99101 +sg25275 +S'c. 1630/1633' +p99102 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a00089ac.jpg' +p99103 +sg25267 +g27 +sa(dp99104 +g25268 +S'Ornament Panel with Two Lovers' +p99105 +sg25270 +S'Israhel van Meckenem' +p99106 +sg25273 +S'engraving' +p99107 +sg25275 +S'c. 1490/1500' +p99108 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4c7.jpg' +p99109 +sg25267 +g27 +sa(dp99110 +g25268 +S"Two Dapple-Gray Horses Exercising (Deux chevaux gris pommele que l'on promene)" +p99111 +sg25270 +S'Artist Information (' +p99112 +sg25273 +S'(artist)' +p99113 +sg25275 +S'\n' +p99114 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f68.jpg' +p99115 +sg25267 +g27 +sa(dp99116 +g25268 +S'Bull Attacked by Dogs' +p99117 +sg25270 +S'Francisco de Goya' +p99118 +sg25273 +S'lithograph' +p99119 +sg25275 +S'c. 1825' +p99120 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000eda9.jpg' +p99121 +sg25267 +g27 +sa(dp99122 +g25273 +S'engraving on laid paper [state proof]' +p99123 +sg25267 +g27 +sg25275 +S'unknown date\n' +p99124 +sg25268 +S'The Ferocious Chase (Chasse feroce)' +p99125 +sg25270 +S'Joseph Hecht' +p99126 +sa(dp99127 +g25273 +S'drypoint' +p99128 +sg25267 +g27 +sg25275 +S'1946' +p99129 +sg25268 +S'Lancaster County Farmer' +p99130 +sg25270 +S'Arthur William Heintzelman' +p99131 +sa(dp99132 +g25273 +S'graphite on laid paper' +p99133 +sg25267 +g27 +sg25275 +S'1904' +p99134 +sg25268 +S'Four People Seated on a Bench' +p99135 +sg25270 +S'K\xc3\xa4the Kollwitz' +p99136 +sa(dp99137 +g25273 +S'woodcut in black, reworked with white gouache, on japan paper [trial proof]' +p99138 +sg25267 +g27 +sg25275 +S'1922/1923' +p99139 +sg25268 +S'The Sacrifice (Das Opfer)' +p99140 +sg25270 +S'K\xc3\xa4the Kollwitz' +p99141 +sa(dp99142 +g25268 +S'Dans un parc' +p99143 +sg25270 +S'Maxime Lalanne' +p99144 +sg25273 +S'etching' +p99145 +sg25275 +S'unknown date\n' +p99146 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b07.jpg' +p99147 +sg25267 +g27 +sa(dp99148 +g25268 +S'Interior of a Military Chamber' +p99149 +sg25270 +S"baron Louis-Albert-Guillain Bacler d'Albe" +p99150 +sg25273 +S'lithograph' +p99151 +sg25275 +S'unknown date\n' +p99152 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a0009031.jpg' +p99153 +sg25267 +g27 +sa(dp99154 +g25268 +S'Title Page' +p99155 +sg25270 +S'Fran\xc3\xa7ois Le Febvre' +p99156 +sg25273 +S'engraving' +p99157 +sg25275 +S'probably 1665' +p99158 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a00089d2.jpg' +p99159 +sg25267 +g27 +sa(dp99160 +g25268 +S'Le dragon qui se void dans le jardin de Ruel' +p99161 +sg25270 +S'Fran\xc3\xa7ois Le Febvre' +p99162 +sg25273 +S'engraving' +p99163 +sg25275 +S'probably 1665' +p99164 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a00089ce.jpg' +p99165 +sg25267 +g27 +sa(dp99166 +g25268 +S'Saint Peter' +p99167 +sg25270 +S'Israhel van Meckenem' +p99168 +sg25273 +S'engraving' +p99169 +sg25275 +S'c. 1465' +p99170 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a433.jpg' +p99171 +sg25267 +g27 +sa(dp99172 +g25268 +S'Fontaines qui se voyent a Ruel' +p99173 +sg25270 +S'Fran\xc3\xa7ois Le Febvre' +p99174 +sg25273 +S'engraving' +p99175 +sg25275 +S'probably 1665' +p99176 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a00089cf.jpg' +p99177 +sg25267 +g27 +sa(dp99178 +g25268 +S'Rome' +p99179 +sg25270 +S'Fran\xc3\xa7ois Le Febvre' +p99180 +sg25273 +S'engraving' +p99181 +sg25275 +S'probably 1665' +p99182 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a00089d0.jpg' +p99183 +sg25267 +g27 +sa(dp99184 +g25268 +S'Saint Denis en France' +p99185 +sg25270 +S'Fran\xc3\xa7ois Le Febvre' +p99186 +sg25273 +S'engraving' +p99187 +sg25275 +S'probably 1665' +p99188 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a00089d1.jpg' +p99189 +sg25267 +g27 +sa(dp99190 +g25268 +S'Paris' +p99191 +sg25270 +S'Fran\xc3\xa7ois Le Febvre' +p99192 +sg25273 +S'engraving' +p99193 +sg25275 +S'probably 1665' +p99194 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a00089ca.jpg' +p99195 +sg25267 +g27 +sa(dp99196 +g25268 +S"La perspective de l'englise Nostre Dame de Paris" +p99197 +sg25270 +S'Fran\xc3\xa7ois Le Febvre' +p99198 +sg25273 +S'engraving' +p99199 +sg25275 +S'probably 1665' +p99200 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a00089c7.jpg' +p99201 +sg25267 +g27 +sa(dp99202 +g25268 +S'Le chasteau de Ruel' +p99203 +sg25270 +S'Fran\xc3\xa7ois Le Febvre' +p99204 +sg25273 +S'engraving' +p99205 +sg25275 +S'probably 1665' +p99206 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a00089c9.jpg' +p99207 +sg25267 +g27 +sa(dp99208 +g25268 +S'La chasse royalle' +p99209 +sg25270 +S'Fran\xc3\xa7ois Le Febvre' +p99210 +sg25273 +S'engraving' +p99211 +sg25275 +S'probably 1665' +p99212 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a00089c8.jpg' +p99213 +sg25267 +g27 +sa(dp99214 +g25268 +S'Perspective de Ruel' +p99215 +sg25270 +S'Fran\xc3\xa7ois Le Febvre' +p99216 +sg25273 +S'engraving' +p99217 +sg25275 +S'probably 1665' +p99218 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a00089cb.jpg' +p99219 +sg25267 +g27 +sa(dp99220 +g25268 +S'La veue du pont de Rouen' +p99221 +sg25270 +S'Fran\xc3\xa7ois Le Febvre' +p99222 +sg25273 +S'engraving' +p99223 +sg25275 +S'probably 1665' +p99224 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a00089cc.jpg' +p99225 +sg25267 +g27 +sa(dp99226 +g25268 +S'La veue du Pont Neuf; Louis XIV Roy de Franceet de Navarre' +p99227 +sg25270 +S'Fran\xc3\xa7ois Le Febvre' +p99228 +sg25273 +S'engraving' +p99229 +sg25275 +S'probably 1665' +p99230 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a00089cd.jpg' +p99231 +sg25267 +g27 +sa(dp99232 +g25268 +S'Saint Agatha' +p99233 +sg25270 +S'Israhel van Meckenem' +p99234 +sg25273 +S'engraving' +p99235 +sg25275 +S'c. 1465' +p99236 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4cc.jpg' +p99237 +sg25267 +g27 +sa(dp99238 +g25273 +S'wood engraving' +p99239 +sg25267 +g27 +sg25275 +S'1946' +p99240 +sg25268 +S'Clam Diggers, Cape Cod' +p99241 +sg25270 +S'Clare Leighton' +p99242 +sa(dp99243 +g25273 +S'etching' +p99244 +sg25267 +g27 +sg25275 +S'1946' +p99245 +sg25268 +S'Santa Cruz, Toledo' +p99246 +sg25270 +S'Sir Lionel Arthur Lindsay' +p99247 +sa(dp99248 +g25268 +S"Death of Maximilian at Queretaro (L'executionde Maximilien)" +p99249 +sg25270 +S'Edouard Manet' +p99250 +sg25273 +S'lithograph' +p99251 +sg25275 +S'1867' +p99252 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fc6.jpg' +p99253 +sg25267 +g27 +sa(dp99254 +g25268 +S'Polichinelle' +p99255 +sg25270 +S'Edouard Manet' +p99256 +sg25273 +S'7-color lithograph on Japanese paper (first edition)' +p99257 +sg25275 +S'1874' +p99258 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fc4.jpg' +p99259 +sg25267 +g27 +sa(dp99260 +g25268 +S'Madonna on a Crescent' +p99261 +sg25270 +S'Master N.H. with the Dagger' +p99262 +sg25273 +S'engraving' +p99263 +sg25275 +S'unknown date\n' +p99264 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad01.jpg' +p99265 +sg25267 +g27 +sa(dp99266 +g25268 +S'Henri de Toulouse-Lautrec' +p99267 +sg25270 +S'Charles Maurin' +p99268 +sg25273 +S'aquatint and (etching?)' +p99269 +sg25275 +S'1890' +p99270 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d01.jpg' +p99271 +sg25267 +g27 +sa(dp99272 +g25268 +S'Christophe de Thou' +p99273 +sg25270 +S'Jean Morin' +p99274 +sg25273 +S'etching and engraving' +p99275 +sg25275 +S'unknown date\n' +p99276 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b554.jpg' +p99277 +sg25267 +g27 +sa(dp99278 +g25268 +S'The Bellman' +p99279 +sg25270 +S'Samuel Palmer' +p99280 +sg25273 +S'etching' +p99281 +sg25275 +S'in or before 1879' +p99282 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a00079f5.jpg' +p99283 +sg25267 +g27 +sa(dp99284 +g25268 +S'The Rising Moon, or An English Pastoral' +p99285 +sg25270 +S'Samuel Palmer' +p99286 +sg25273 +S'etching' +p99287 +sg25275 +S'1857' +p99288 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cc8.jpg' +p99289 +sg25267 +g27 +sa(dp99290 +g25268 +S'The Rising Moon, or An English Pastoral' +p99291 +sg25270 +S'Samuel Palmer' +p99292 +sg25273 +S'etching' +p99293 +sg25275 +S'1857' +p99294 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a00079f7.jpg' +p99295 +sg25267 +g27 +sa(dp99296 +g25268 +S'Ornament with Flower and Eight Wild Folk' +p99297 +sg25270 +S'Israhel van Meckenem' +p99298 +sg25273 +S'engraving' +p99299 +sg25275 +S'unknown date\n' +p99300 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4c8.jpg' +p99301 +sg25267 +g27 +sa(dp99302 +g25268 +S'Woman with a Harp' +p99303 +sg25270 +S'Georg Pencz' +p99304 +sg25273 +S'engraving' +p99305 +sg25275 +S'1544' +p99306 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b088.jpg' +p99307 +sg25267 +g27 +sa(dp99308 +g25268 +S'Ambroise Vollard IV' +p99309 +sg25270 +S'Pablo Picasso' +p99310 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p99311 +sg25275 +S'c. 1937' +p99312 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee90.jpg' +p99313 +sg25267 +g27 +sa(dp99314 +g25268 +S'A La Vieillesse (To Old Age)' +p99315 +sg25270 +S'Odilon Redon' +p99316 +sg25273 +S'lithograph' +p99317 +sg25275 +S'1886' +p99318 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c8a.jpg' +p99319 +sg25267 +g27 +sa(dp99320 +g25268 +S'Arbre (Tree)' +p99321 +sg25270 +S'Odilon Redon' +p99322 +sg25273 +S'lithograph' +p99323 +sg25275 +S'1892' +p99324 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fd6.jpg' +p99325 +sg25267 +g27 +sa(dp99326 +g25268 +S'Ari' +p99327 +sg25270 +S'Odilon Redon' +p99328 +sg25273 +S'lithograph' +p99329 +sg25275 +S'1898' +p99330 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c99.jpg' +p99331 +sg25267 +g27 +sa(dp99332 +g25268 +S'Cellule Auriculaire (Auricular Cell)' +p99333 +sg25270 +S'Odilon Redon' +p99334 +sg25273 +S'lithograph' +p99335 +sg25275 +S'1894' +p99336 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fce.jpg' +p99337 +sg25267 +g27 +sa(dp99338 +g25268 +S'Femme de Profil (Profile of a Woman)' +p99339 +sg25270 +S'Odilon Redon' +p99340 +sg25273 +S'lithograph' +p99341 +sg25275 +S'1900' +p99342 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c96.jpg' +p99343 +sg25267 +g27 +sa(dp99344 +g25268 +S'Lumiere (Light)' +p99345 +sg25270 +S'Odilon Redon' +p99346 +sg25273 +S'lithograph' +p99347 +sg25275 +S'1893' +p99348 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fd4.jpg' +p99349 +sg25267 +g27 +sa(dp99350 +g25268 +S'Saint Cecilia' +p99351 +sg25270 +S'Artist Information (' +p99352 +sg25273 +S'(artist after)' +p99353 +sg25275 +S'\n' +p99354 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c85f.jpg' +p99355 +sg25267 +g27 +sa(dp99356 +g25268 +S'David and Goliath' +p99357 +sg25270 +S'Rembrandt van Rijn' +p99358 +sg25273 +S'etching, burin and drypoint' +p99359 +sg25275 +S'1655' +p99360 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2d3.jpg' +p99361 +sg25267 +g27 +sa(dp99362 +g25268 +S'The Circumcision' +p99363 +sg25270 +S'Israhel van Meckenem' +p99364 +sg25273 +S'engraving' +p99365 +sg25275 +S'c. 1470/1480' +p99366 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a413.jpg' +p99367 +sg25267 +g27 +sa(dp99368 +g25268 +S'Maternity (Maternite)' +p99369 +sg25270 +S'Auguste Renoir' +p99370 +sg25273 +S'lithograph' +p99371 +sg25275 +S'c. 1912' +p99372 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009ffa.jpg' +p99373 +sg25267 +g27 +sa(dp99374 +g25273 +S'aquatint and drypoint over heliogravure' +p99375 +sg25267 +g27 +sg25275 +S'1923' +p99376 +sg25268 +S'au vieux faubourg des Longues Peines' +p99377 +sg25270 +S'Georges Rouault' +p99378 +sa(dp99379 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p99380 +sg25267 +g27 +sg25275 +S'1922' +p99381 +sg25268 +S'"Nous devons mourir, nous et tout ce qui est notre"' +p99382 +sg25270 +S'Georges Rouault' +p99383 +sa(dp99384 +g25268 +S'The Nativity' +p99385 +sg25270 +S'Hans Leonard Sch\xc3\xa4ufelein' +p99386 +sg25273 +S'woodcut' +p99387 +sg25275 +S'1510/1511' +p99388 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad7e.jpg' +p99389 +sg25267 +g27 +sa(dp99390 +g25268 +S'The Battle of Saint James at Clavijo' +p99391 +sg25270 +S'Martin Schongauer' +p99392 +sg25273 +S'engraving on laid paper' +p99393 +sg25275 +S'c. 1470/1475' +p99394 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a442.jpg' +p99395 +sg25267 +g27 +sa(dp99396 +g25268 +S'Virgin and Child with the Apple' +p99397 +sg25270 +S'Martin Schongauer' +p99398 +sg25273 +S'engraving' +p99399 +sg25275 +S'c. 1470/1475' +p99400 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4af.jpg' +p99401 +sg25267 +g27 +sa(dp99402 +g25273 +S'color woodcut' +p99403 +sg25267 +g27 +sg25275 +S'1938' +p99404 +sg25268 +S'The Stack Yard' +p99405 +sg25270 +S'Eric Slater' +p99406 +sa(dp99407 +g25273 +S'lithograph redrawn with crayon' +p99408 +sg25267 +g27 +sg25275 +S'1908' +p99409 +sg25268 +S'Sixth Avenue and Thirtieth Street' +p99410 +sg25270 +S'John Sloan' +p99411 +sa(dp99412 +g25268 +S'Title Page' +p99413 +sg25270 +S'British 19th Century' +p99414 +sg25273 +S'Man 1962, no. 1' +p99415 +sg25275 +S'\npen-and-tusche lithograph' +p99416 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a00079fb.jpg' +p99417 +sg25267 +g27 +sa(dp99418 +g25268 +S'The Rape of Ganymede' +p99419 +sg25270 +S'Henry Fuseli' +p99420 +sg25273 +S'crayon lithograph' +p99421 +sg25275 +S'1804' +p99422 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a07.jpg' +p99423 +sg25267 +g27 +sa(dp99424 +g25268 +S'Landscape with Two Cows' +p99425 +sg25270 +S'George Walker' +p99426 +sg25273 +S'pen-and-tusche lithograph' +p99427 +sg25275 +S'1807' +p99428 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a14.jpg' +p99429 +sg25267 +g27 +sa(dp99430 +g25268 +S'Old Water Mill' +p99431 +sg25270 +S'Paul Sandby Munn' +p99432 +sg25273 +S'pen-and-tusche lithograph' +p99433 +sg25275 +S'1807' +p99434 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a1d.jpg' +p99435 +sg25267 +g27 +sa(dp99436 +g25268 +S'Landscape with Large Tree, Castle on Left' +p99437 +sg25270 +S'H.B. Ker' +p99438 +sg25273 +S'pen-and-tusche lithograph' +p99439 +sg25275 +S'1807' +p99440 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a10.jpg' +p99441 +sg25267 +g27 +sa(dp99442 +g25268 +S'Study of an Old Oak Tree, Water on Right, a Man on Left' +p99443 +sg25270 +S'George Samuel' +p99444 +sg25273 +S'pen-and-tusche lithograph' +p99445 +sg25275 +S'1806' +p99446 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a18.jpg' +p99447 +sg25267 +g27 +sa(dp99448 +g25268 +S'Cattle Resting' +p99449 +sg25270 +S'Robert Hills' +p99450 +sg25273 +S'pen-and-tusche lithograph' +p99451 +sg25275 +S'1807' +p99452 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a0c.jpg' +p99453 +sg25267 +g27 +sa(dp99454 +g25268 +S'Apollo as a Warrior' +p99455 +sg25270 +S'Charles Heath' +p99456 +sg25273 +S'pen-and-tusche lithograph' +p99457 +sg25275 +S'1804' +p99458 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a08.jpg' +p99459 +sg25267 +g27 +sa(dp99460 +g25268 +S'Marine: Fishing Boats on Shore, Man with Oars, Ship in Distance' +p99461 +sg25270 +S'John Thomas Serres' +p99462 +sg25273 +S'pen-and-tusche lithograph' +p99463 +sg25275 +S'1803' +p99464 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a16.jpg' +p99465 +sg25267 +g27 +sa(dp99466 +g25268 +S'Wild Horses' +p99467 +sg25270 +S'Henry Bernard Chalon' +p99468 +sg25273 +S'crayon lithograph' +p99469 +sg25275 +S'1804' +p99470 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a00079fe.jpg' +p99471 +sg25267 +g27 +sa(dp99472 +g25268 +S'Horses at Cottage Door' +p99473 +sg25270 +S'Conrad Gessner' +p99474 +sg25273 +S'crayon lithograph' +p99475 +sg25275 +S'1804' +p99476 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a0b.jpg' +p99477 +sg25267 +g27 +sa(dp99478 +g25268 +S'Study of Trees and Shrubs with Seated Figure' +p99479 +sg25270 +S'William Havell' +p99480 +sg25273 +S'pen-and-tusche lithograph' +p99481 +sg25275 +S'1804' +p99482 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a0f.jpg' +p99483 +sg25267 +g27 +sa(dp99484 +g25268 +S'Landscape with Group of Trees Surrounded by Water' +p99485 +sg25270 +S'Richard Cooper II' +p99486 +sg25273 +S'pen-and-tusche lithograph' +p99487 +sg25275 +S'1802' +p99488 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a06.jpg' +p99489 +sg25267 +g27 +sa(dp99490 +g25268 +S'Oriental with Beard, Reading a Book' +p99491 +sg25270 +S'Henry Singleton' +p99492 +sg25273 +S'pen-and-tusche lithograph' +p99493 +sg25275 +S'1803' +p99494 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a17.jpg' +p99495 +sg25267 +g27 +sa(dp99496 +g25268 +S'Old Cottages' +p99497 +sg25270 +S'William Henry Pyne' +p99498 +sg25273 +S'pen-and-tusche lithograph' +p99499 +sg25275 +S'1806' +p99500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a13.jpg' +p99501 +sg25267 +g27 +sa(dp99502 +g25268 +S'Knight in Armor on Horseback' +p99503 +sg25270 +S'Edward Vernon Utterson' +p99504 +sg25273 +S'pen-and-tusche lithograph' +p99505 +sg25275 +S'1806' +p99506 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a1c.jpg' +p99507 +sg25267 +g27 +sa(dp99508 +g25268 +S'Tilemakers' +p99509 +sg25270 +S'Thomas Barker' +p99510 +sg25273 +S'pen-and-tusche lithograph' +p99511 +sg25275 +S'1803' +p99512 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a02.jpg' +p99513 +sg25267 +g27 +sa(dp99514 +g25268 +S'Study of a Tree' +p99515 +sg25270 +S'Raphael Lamar West' +p99516 +sg25273 +S'pen-and-tusche lithograph' +p99517 +sg25275 +S'1802' +p99518 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a1a.jpg' +p99519 +sg25267 +g27 +sa(dp99520 +g25268 +S'Landscape with Trees, Girl Crossing Footbridge' +p99521 +sg25270 +S'William Havell' +p99522 +sg25273 +S'pen-and-tusche lithograph' +p99523 +sg25275 +S'1804' +p99524 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a0e.jpg' +p99525 +sg25267 +g27 +sa(dp99526 +g25268 +S'Shepherd with Dog and Sheep' +p99527 +sg25270 +S'John Boyne' +p99528 +sg25273 +S'pen-and-tusche lithograph' +p99529 +sg25275 +S'1806' +p99530 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a00079fd.jpg' +p99531 +sg25267 +g27 +sa(dp99532 +g25268 +S'Landscape with Men in Armor, Tree Stump' +p99533 +sg25270 +S'Joseph Fischer' +p99534 +sg25273 +S'pen-and-tusche lithograph' +p99535 +sg25275 +S'1803' +p99536 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a00079ff.jpg' +p99537 +sg25267 +g27 +sa(dp99538 +g25268 +S'Ruined Abbey among Trees' +p99539 +sg25270 +S'Richard Cooper II' +p99540 +sg25273 +S'pen-and-tusche lithograph' +p99541 +sg25275 +S'1802' +p99542 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a03.jpg' +p99543 +sg25267 +g27 +sa(dp99544 +g25268 +S'Saint Christopher' +p99545 +sg25270 +S'Master MZ' +p99546 +sg25273 +S'engraving' +p99547 +sg25275 +S'c. 1500' +p99548 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3b7.jpg' +p99549 +sg25267 +g27 +sa(dp99550 +g25268 +S'Oriental Woman, Holding a Torch' +p99551 +sg25270 +S'John Downman' +p99552 +sg25273 +S'pen-and-tusche lithograph' +p99553 +sg25275 +S'1806' +p99554 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a01.jpg' +p99555 +sg25267 +g27 +sa(dp99556 +g25268 +S'Horse and Cart in Quarry' +p99557 +sg25270 +S'Franz Joseph Manskirch' +p99558 +sg25273 +S'pen-and-tusche lithograph' +p99559 +sg25275 +S'1806' +p99560 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a0d.jpg' +p99561 +sg25267 +g27 +sa(dp99562 +g25268 +S'Landscape with Deer under Trees' +p99563 +sg25270 +S'John Laporte' +p99564 +sg25273 +S'pen-and-tusche lithograph' +p99565 +sg25275 +S'1807' +p99566 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a12.jpg' +p99567 +sg25267 +g27 +sa(dp99568 +g25268 +S'Angel of the Resurrection' +p99569 +sg25270 +S'Benjamin West' +p99570 +sg25273 +S'pen-and-tusche lithograph' +p99571 +sg25275 +S'1801' +p99572 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004bb3.jpg' +p99573 +sg25267 +g27 +sa(dp99574 +g25268 +S'The Lost Apple' +p99575 +sg25270 +S'Thomas Stothard' +p99576 +sg25273 +S'pen-and-tusche lithograph' +p99577 +sg25275 +S'1803' +p99578 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a19.jpg' +p99579 +sg25267 +g27 +sa(dp99580 +g25268 +S'Landscape with Old Trees by Water' +p99581 +sg25270 +S'Henry Richard Greville, 3rd earl of Warwick' +p99582 +sg25273 +S'pen-and-tusche lithograph' +p99583 +sg25275 +S'1803' +p99584 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a15.jpg' +p99585 +sg25267 +g27 +sa(dp99586 +g25268 +S'Charge' +p99587 +sg25270 +S'Sir Robert Ker Porter' +p99588 +sg25273 +S'pen-and-tusche lithograph' +p99589 +sg25275 +S'1803' +p99590 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a1b.jpg' +p99591 +sg25267 +g27 +sa(dp99592 +g25268 +S'Landscape with Large Trees' +p99593 +sg25270 +S'Richard Cooper II' +p99594 +sg25273 +S'pen-and-tusche lithograph' +p99595 +sg25275 +S'1802' +p99596 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a05.jpg' +p99597 +sg25267 +g27 +sa(dp99598 +g25268 +S'A Woman Sitting by the Window' +p99599 +sg25270 +S'Henry Fuseli' +p99600 +sg25273 +S'pen-and-tusche lithograph' +p99601 +sg25275 +S'1802' +p99602 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a0a.jpg' +p99603 +sg25267 +g27 +sa(dp99604 +g25268 +S'Old Tree' +p99605 +sg25270 +S'Thomas Hearne' +p99606 +sg25273 +S'pen-and-tusche lithograph' +p99607 +sg25275 +S'1803' +p99608 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a11.jpg' +p99609 +sg25267 +g27 +sa(dp99610 +g25268 +S'Saint George and the Dragon' +p99611 +sg25270 +S'Master MZ' +p99612 +sg25273 +S'engraving' +p99613 +sg25275 +S'c. 1500' +p99614 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3b0.jpg' +p99615 +sg25267 +g27 +sa(dp99616 +g25268 +S'Eastern Patriarch' +p99617 +sg25270 +S'James Barry' +p99618 +sg25273 +S'pen-and-tusche lithograph' +p99619 +sg25275 +S'1803' +p99620 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a04.jpg' +p99621 +sg25267 +g27 +sa(dp99622 +g25268 +S'Cavalry Charging' +p99623 +sg25270 +S'Conrad Gessner' +p99624 +sg25273 +S'pen-and-tusche lithograph' +p99625 +sg25275 +S'1801' +p99626 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a09.jpg' +p99627 +sg25267 +g27 +sa(dp99628 +g25268 +S'Young Boy Seated' +p99629 +sg25270 +S'Thomas Barker' +p99630 +sg25273 +S'pen-and-tusche lithograph' +p99631 +sg25275 +S'1803' +p99632 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a00079fc.jpg' +p99633 +sg25267 +g27 +sa(dp99634 +g25268 +S'Resting, Men and Dogs under a Big Tree' +p99635 +sg25270 +S'William Alfred Delamotte' +p99636 +sg25273 +S'pen-and-tusche lithograph' +p99637 +sg25275 +S'1802' +p99638 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a00.jpg' +p99639 +sg25267 +g27 +sa(dp99640 +g25268 +S"Heroic Act of a Father Who Sacrifices for His Son (Trait heroique d'un pere qui se sacrifie pour son fils)" +p99641 +sg25270 +S'Gabriel de Saint-Aubin' +p99642 +sg25273 +S', 1767' +p99643 +sg25275 +S'\n' +p99644 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ec2.jpg' +p99645 +sg25267 +g27 +sa(dp99646 +g25268 +S'At La Gaiete Rochechouart: Nicolle (A La Gaiet\xc3\xa9 Rochechouart: Nicolle)' +p99647 +sg25270 +S'Henri de Toulouse-Lautrec' +p99648 +sg25273 +S'lithograph in black on velin paper' +p99649 +sg25275 +S'1893' +p99650 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ee1.jpg' +p99651 +sg25267 +g27 +sa(dp99652 +g25268 +S'In the Woods (Au bois)' +p99653 +sg25270 +S'Henri de Toulouse-Lautrec' +p99654 +sg25273 +S'lithograph in black on velin paper' +p99655 +sg25275 +S'1899' +p99656 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00020/a0002031.jpg' +p99657 +sg25267 +g27 +sa(dp99658 +g25268 +S'At the Concert (Au concert)' +p99659 +sg25270 +S'Henri de Toulouse-Lautrec' +p99660 +sg25273 +S'4-color lithograph [poster]' +p99661 +sg25275 +S'1896' +p99662 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e84.jpg' +p99663 +sg25267 +g27 +sa(dp99664 +g25268 +S'At the Hanneton (Au Hanneton)' +p99665 +sg25270 +S'Henri de Toulouse-Lautrec' +p99666 +sg25273 +S'lithograph in black on velin paper' +p99667 +sg25275 +S'1898' +p99668 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e83.jpg' +p99669 +sg25267 +g27 +sa(dp99670 +g25268 +S'Brandes in His Box (Brand\xc3\xa8s dans sa loge)' +p99671 +sg25270 +S'Henri de Toulouse-Lautrec' +p99672 +sg25273 +S'lithograph in olive green on velin paper' +p99673 +sg25275 +S'1894' +p99674 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a040.jpg' +p99675 +sg25267 +g27 +sa(dp99676 +g25268 +S'Woman in Corset (Femme en corset)' +p99677 +sg25270 +S'Artist Information (' +p99678 +sg25273 +S'French, 1858 - 1936' +p99679 +sg25275 +S'(printer)' +p99680 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005666.jpg' +p99681 +sg25267 +g27 +sa(dp99682 +g25268 +S'Woman Combing Her Hair (Femme qui se peigne)' +p99683 +sg25270 +S'Artist Information (' +p99684 +sg25273 +S'French, 1858 - 1936' +p99685 +sg25275 +S'(printer)' +p99686 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a00055ef.jpg' +p99687 +sg25267 +g27 +sa(dp99688 +g25268 +S'Woman on Her Back (Femme sur le dos)' +p99689 +sg25270 +S'Artist Information (' +p99690 +sg25273 +S'French, 1858 - 1936' +p99691 +sg25275 +S'(printer)' +p99692 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005667.jpg' +p99693 +sg25267 +g27 +sa(dp99694 +g25268 +S'Footit and Chocolat (Footit et Chocolat)' +p99695 +sg25270 +S'Artist Information (' +p99696 +sg25273 +S'French, 1864 - 1901' +p99697 +sg25275 +S'(artist after)' +p99698 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00069/a0006941.jpg' +p99699 +sg25267 +g27 +sa(dp99700 +g25268 +S'The Manor Lady or the Omen (La chatelaine ou le tocsin)' +p99701 +sg25270 +S'Henri de Toulouse-Lautrec' +p99702 +sg25273 +S'lithograph in turquoise and light blue [poster]' +p99703 +sg25275 +S'1895' +p99704 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a053.jpg' +p99705 +sg25267 +g27 +sa(dp99706 +g25268 +S"The Motorist (L'automobiliste)" +p99707 +sg25270 +S'Henri de Toulouse-Lautrec' +p99708 +sg25273 +S'lithograph in black' +p99709 +sg25275 +S'1896' +p99710 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e5e.jpg' +p99711 +sg25267 +g27 +sa(dp99712 +g25268 +S'La Goulue' +p99713 +sg25270 +S'Henri de Toulouse-Lautrec' +p99714 +sg25273 +S'lithograph in olive green on velin paper' +p99715 +sg25275 +S'1894' +p99716 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ee7.jpg' +p99717 +sg25267 +g27 +sa(dp99718 +g25273 +S'lithograph in blue and turquoise [poster]' +p99719 +sg25267 +g27 +sg25275 +S'1896' +p99720 +sg25268 +S"L'aube" +p99721 +sg25270 +S'Henri de Toulouse-Lautrec' +p99722 +sa(dp99723 +g25268 +S'Le cafe concert: Illustrated Cover' +p99724 +sg25270 +S'Henri-Gabriel Ibels' +p99725 +sg25273 +S'lithograph and engraving' +p99726 +sg25275 +S'1893' +p99727 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005668.jpg' +p99728 +sg25267 +g27 +sa(dp99729 +g25268 +S'Le cafe-concert' +p99730 +sg25270 +S'Artist Information (' +p99731 +sg25273 +S'(artist)' +p99732 +sg25275 +S'\n' +p99733 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a007.jpg' +p99734 +sg25267 +g27 +sa(dp99735 +g25268 +S'Four Soldiers' +p99736 +sg25270 +S'Master MZ' +p99737 +sg25273 +S'engraving' +p99738 +sg25275 +S'c. 1500' +p99739 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3b4.jpg' +p99740 +sg25267 +g27 +sa(dp99741 +g25268 +S'Cadieux - Small Casino (Cadieux - Petit casino)' +p99742 +sg25270 +S'Henri de Toulouse-Lautrec' +p99743 +sg25273 +S'lithograph in black on velin paper' +p99744 +sg25275 +S'1893' +p99745 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005669.jpg' +p99746 +sg25267 +g27 +sa(dp99747 +g25268 +S'American Singer (Chanteur am\xc3\xa9ricain)' +p99748 +sg25270 +S'Henri de Toulouse-Lautrec' +p99749 +sg25273 +S'lithograph in black on velin paper' +p99750 +sg25275 +S'1893' +p99751 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a000566a.jpg' +p99752 +sg25267 +g27 +sa(dp99753 +g25268 +S'Jane Avril' +p99754 +sg25270 +S'Henri de Toulouse-Lautrec' +p99755 +sg25273 +S'lithograph in black on velin paper' +p99756 +sg25275 +S'1893' +p99757 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a000566b.jpg' +p99758 +sg25267 +g27 +sa(dp99759 +g25268 +S'Mary Hamilton' +p99760 +sg25270 +S'Henri de Toulouse-Lautrec' +p99761 +sg25273 +S'lithograph in green on velin paper' +p99762 +sg25275 +S'1893' +p99763 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a000566c.jpg' +p99764 +sg25267 +g27 +sa(dp99765 +g25268 +S'Edm\xc3\xa9e Lescot' +p99766 +sg25270 +S'Henri de Toulouse-Lautrec' +p99767 +sg25273 +S'lithograph in black on velin' +p99768 +sg25275 +S'1893' +p99769 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a000566d.jpg' +p99770 +sg25267 +g27 +sa(dp99771 +g25268 +S'Yvette Guilbert' +p99772 +sg25270 +S'Henri de Toulouse-Lautrec' +p99773 +sg25273 +S'lithograph in black' +p99774 +sg25275 +S'1893' +p99775 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a000566e.jpg' +p99776 +sg25267 +g27 +sa(dp99777 +g25268 +S'Madame Abdala' +p99778 +sg25270 +S'Henri de Toulouse-Lautrec' +p99779 +sg25273 +S'lithograph in black on velin paper' +p99780 +sg25275 +S'1893' +p99781 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a000566f.jpg' +p99782 +sg25267 +g27 +sa(dp99783 +g25268 +S'A Spectator (Une spectatrice)' +p99784 +sg25270 +S'Henri de Toulouse-Lautrec' +p99785 +sg25273 +S'lithograph in black on velin' +p99786 +sg25275 +S'1893' +p99787 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005670.jpg' +p99788 +sg25267 +g27 +sa(dp99789 +g25268 +S'Aristide Bruant' +p99790 +sg25270 +S'Henri de Toulouse-Lautrec' +p99791 +sg25273 +S'lithograph in black on velin paper' +p99792 +sg25275 +S'1893' +p99793 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005671.jpg' +p99794 +sg25267 +g27 +sa(dp99795 +g25268 +S'Ducarre at the Ambassadeurs (Ducarre aux ambassadeurs)' +p99796 +sg25270 +S'Henri de Toulouse-Lautrec' +p99797 +sg25273 +S'lithograph in black on velin paper' +p99798 +sg25275 +S'1893' +p99799 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005672.jpg' +p99800 +sg25267 +g27 +sa(dp99801 +g25268 +S'Knight and Lady on Horseback' +p99802 +sg25270 +S'Master MZ' +p99803 +sg25273 +S'engraving' +p99804 +sg25275 +S'c. 1500' +p99805 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3b2.jpg' +p99806 +sg25267 +g27 +sa(dp99807 +g25268 +S'Paula Br\xc3\xa9bion' +p99808 +sg25270 +S'Henri de Toulouse-Lautrec' +p99809 +sg25273 +S'lithograph in olive green on velin paper' +p99810 +sg25275 +S'1893' +p99811 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005673.jpg' +p99812 +sg25267 +g27 +sa(dp99813 +g25268 +S'Singer' +p99814 +sg25270 +S'Henri-Gabriel Ibels' +p99815 +sg25273 +S'lithograph' +p99816 +sg25275 +S'1893' +p99817 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005674.jpg' +p99818 +sg25267 +g27 +sa(dp99819 +g25268 +S'Bruant?' +p99820 +sg25270 +S'Henri-Gabriel Ibels' +p99821 +sg25273 +S'lithograph' +p99822 +sg25275 +S'1893' +p99823 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005675.jpg' +p99824 +sg25267 +g27 +sa(dp99825 +g25268 +S'American Singer (Chanteur americain)' +p99826 +sg25270 +S'Henri-Gabriel Ibels' +p99827 +sg25273 +S'lithograph' +p99828 +sg25275 +S'1893' +p99829 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005676.jpg' +p99830 +sg25267 +g27 +sa(dp99831 +g25268 +S'Actor' +p99832 +sg25270 +S'Henri-Gabriel Ibels' +p99833 +sg25273 +S'lithograph' +p99834 +sg25275 +S'1893' +p99835 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005677.jpg' +p99836 +sg25267 +g27 +sa(dp99837 +g25268 +S'Singer' +p99838 +sg25270 +S'Henri-Gabriel Ibels' +p99839 +sg25273 +S'lithograph' +p99840 +sg25275 +S'1893' +p99841 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005678.jpg' +p99842 +sg25267 +g27 +sa(dp99843 +g25268 +S'Paula Brebion?' +p99844 +sg25270 +S'Henri-Gabriel Ibels' +p99845 +sg25273 +S'lithograph' +p99846 +sg25275 +S'1893' +p99847 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005679.jpg' +p99848 +sg25267 +g27 +sa(dp99849 +g25268 +S"Emilienne d'Alencon et Mariquita?" +p99850 +sg25270 +S'Henri-Gabriel Ibels' +p99851 +sg25273 +S'lithograph' +p99852 +sg25275 +S'1893' +p99853 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a000567a.jpg' +p99854 +sg25267 +g27 +sa(dp99855 +g25268 +S'Gendarme' +p99856 +sg25270 +S'Henri-Gabriel Ibels' +p99857 +sg25273 +S'lithograph' +p99858 +sg25275 +S'1893' +p99859 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a000567b.jpg' +p99860 +sg25267 +g27 +sa(dp99861 +g25268 +S'Singer' +p99862 +sg25270 +S'Henri-Gabriel Ibels' +p99863 +sg25273 +S'lithograph' +p99864 +sg25275 +S'1893' +p99865 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a000567c.jpg' +p99866 +sg25267 +g27 +sa(dp99867 +g25268 +S'The Embrace' +p99868 +sg25270 +S'Master MZ' +p99869 +sg25273 +S'engraving' +p99870 +sg25275 +S'1503' +p99871 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3b3.jpg' +p99872 +sg25267 +g27 +sa(dp99873 +g25268 +S'Clowns' +p99874 +sg25270 +S'Henri-Gabriel Ibels' +p99875 +sg25273 +S'lithograph' +p99876 +sg25275 +S'1893' +p99877 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a000567d.jpg' +p99878 +sg25267 +g27 +sa(dp99879 +g25268 +S'The Forfeit (La gage)' +p99880 +sg25270 +S'Henri de Toulouse-Lautrec' +p99881 +sg25273 +S'lithograph in black on hand-made oriental paper' +p99882 +sg25275 +S'1897' +p99883 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e64.jpg' +p99884 +sg25267 +g27 +sa(dp99885 +g25268 +S'Leloir and Moreno in "Les femmes savantes" (Leloir et Moreno dans "Les femmes savantes")' +p99886 +sg25270 +S'Henri de Toulouse-Lautrec' +p99887 +sg25273 +S'lithograph in black' +p99888 +sg25275 +S'1894' +p99889 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ee2.jpg' +p99890 +sg25267 +g27 +sa(dp99891 +g25268 +S'Bust of Mlle. Marcelle Lender (Mlle. Marcelle Lender, en buste)' +p99892 +sg25270 +S'Henri de Toulouse-Lautrec' +p99893 +sg25273 +S'lithograph in olive green on japan paper' +p99894 +sg25275 +S'1895' +p99895 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e4c.jpg' +p99896 +sg25267 +g27 +sa(dp99897 +g25268 +S'Miss Lo\xc3\xafe Fuller' +p99898 +sg25270 +S'Henri de Toulouse-Lautrec' +p99899 +sg25273 +S'color lithograph' +p99900 +sg25275 +S'1893' +p99901 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00020/a0002032.jpg' +p99902 +sg25267 +g27 +sa(dp99903 +g25268 +S'Ornament with Morris Dancers' +p99904 +sg25270 +S'Israhel van Meckenem' +p99905 +sg25273 +S'engraving' +p99906 +sg25275 +S'c. 1490/1500' +p99907 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a44c.jpg' +p99908 +sg25267 +g27 +sa(dp99909 +g25268 +S'Carabinier Mounting a Horse' +p99910 +sg25270 +S'Carle Vernet' +p99911 +sg25273 +S'lithograph' +p99912 +sg25275 +S'unknown date\n' +p99913 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e96.jpg' +p99914 +sg25267 +g27 +sa(dp99915 +g25268 +S'French Race Horses' +p99916 +sg25270 +S'Carle Vernet' +p99917 +sg25273 +S'hand-colored lithograph' +p99918 +sg25275 +S'unknown date\n' +p99919 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a05d.jpg' +p99920 +sg25267 +g27 +sa(dp99921 +g25268 +S'Gellius de Bouma' +p99922 +sg25270 +S'Cornelis Visscher' +p99923 +sg25273 +S'engraving and etching' +p99924 +sg25275 +S'unknown date\n' +p99925 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5e0.jpg' +p99926 +sg25267 +g27 +sa(dp99927 +g25273 +S'lithograph' +p99928 +sg25267 +g27 +sg25275 +S'1947' +p99929 +sg25268 +S'Cape Ann Willows' +p99930 +sg25270 +S'Stow Wengenroth' +p99931 +sa(dp99932 +g25268 +S'The Ball' +p99933 +sg25270 +S'Master MZ' +p99934 +sg25273 +S'engraving' +p99935 +sg25275 +S'1500' +p99936 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c13.jpg' +p99937 +sg25267 +g27 +sa(dp99938 +g25268 +S'Nieuwmarkt with St. Anthoniswaag (S. Anthoni s Marckt met de Waegh)' +p99939 +sg25270 +S'Reinier Nooms, called Zeeman' +p99940 +sg25273 +S', unknown date' +p99941 +sg25275 +S'\n' +p99942 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4b0.jpg' +p99943 +sg25267 +g27 +sa(dp99944 +g25268 +S'Eenhoorns Sluis (De Eenhoorns Sluys)' +p99945 +sg25270 +S'Reinier Nooms, called Zeeman' +p99946 +sg25273 +S', unknown date' +p99947 +sg25275 +S'\n' +p99948 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4b1.jpg' +p99949 +sg25267 +g27 +sa(dp99950 +g25268 +S'Noordenmarkt with the Noorden Kerk (De Noorder Marckt met de Kerck)' +p99951 +sg25270 +S'Reinier Nooms, called Zeeman' +p99952 +sg25273 +S', unknown date' +p99953 +sg25275 +S'\n' +p99954 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4b2.jpg' +p99955 +sg25267 +g27 +sa(dp99956 +g25268 +S'Roowaensche Quay (De Roowaensche Kaey)' +p99957 +sg25270 +S'Reinier Nooms, called Zeeman' +p99958 +sg25273 +S', unknown date' +p99959 +sg25275 +S'\n' +p99960 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4b7.jpg' +p99961 +sg25267 +g27 +sa(dp99962 +g25268 +S'The Ferry to Utrecht (Het veer van der Uytersche schiet-schuyten)' +p99963 +sg25270 +S'Reinier Nooms, called Zeeman' +p99964 +sg25273 +S', unknown date' +p99965 +sg25275 +S'\n' +p99966 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4b6.jpg' +p99967 +sg25267 +g27 +sa(dp99968 +g25268 +S'Appelmarkt (De Appelmarckt)' +p99969 +sg25270 +S'Reinier Nooms, called Zeeman' +p99970 +sg25273 +S', unknown date' +p99971 +sg25275 +S'\n' +p99972 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4b5.jpg' +p99973 +sg25267 +g27 +sa(dp99974 +g25268 +S'The Ferry to Leiden (Het Leytsche veer)' +p99975 +sg25270 +S'Reinier Nooms, called Zeeman' +p99976 +sg25273 +S', unknown date' +p99977 +sg25275 +S'\n' +p99978 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4b4.jpg' +p99979 +sg25267 +g27 +sa(dp99980 +g25268 +S'The Ferry to Naarden (Het Naerder veer)' +p99981 +sg25270 +S'Reinier Nooms, called Zeeman' +p99982 +sg25273 +S', unknown date' +p99983 +sg25275 +S'\n' +p99984 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4b3.jpg' +p99985 +sg25267 +g27 +sa(dp99986 +g25268 +S'Footit and Chocolat (Footit et Chocolat)' +p99987 +sg25270 +S'Artist Information (' +p99988 +sg25273 +S'French, 1864 - 1901' +p99989 +sg25275 +S'(artist after)' +p99990 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00069/a0006940.jpg' +p99991 +sg25267 +g27 +sa(dp99992 +g25268 +S'La valse des lapins' +p99993 +sg25270 +S'Henri de Toulouse-Lautrec' +p99994 +sg25273 +S'lithograph in black on japan paper' +p99995 +sg25275 +S'1895' +p99996 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009eae.jpg' +p99997 +sg25267 +g27 +sa(dp99998 +g25268 +S'The Tournament' +p99999 +sg25270 +S'Master MZ' +p100000 +sg25273 +S'engraving' +p100001 +sg25275 +S'1500' +p100002 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c14.jpg' +p100003 +sg25267 +g27 +sa(dp100004 +g25273 +S'woodcut' +p100005 +sg25267 +g27 +sg25275 +S'c. 1514/1515' +p100006 +sg25268 +S"The Submersion of Pharoah's Army in the Red Sea" +p100007 +sg25270 +S'Titian' +p100008 +sa(dp100009 +g25268 +S'Ann Old Coleman (Mrs. Robert Coleman)' +p100010 +sg25270 +S'Jacob Eichholtz' +p100011 +sg25273 +S'oil on canvas transferred to wood' +p100012 +sg25275 +S'c. 1820' +p100013 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000a1.jpg' +p100014 +sg25267 +g27 +sa(dp100015 +g25268 +S'Robert Coleman' +p100016 +sg25270 +S'Jacob Eichholtz' +p100017 +sg25273 +S'oil on canvas transferred to wood' +p100018 +sg25275 +S'c. 1820' +p100019 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000a2.jpg' +p100020 +sg25267 +g27 +sa(dp100021 +g25268 +S'The Coleman Sisters' +p100022 +sg25270 +S'Thomas Sully' +p100023 +sg25273 +S'oil on canvas' +p100024 +sg25275 +S'1844' +p100025 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000268.jpg' +p100026 +sg25267 +g27 +sa(dp100027 +g25268 +S'Two Girls in a Landscape' +p100028 +sg25270 +S'George Frost' +p100029 +sg25273 +S', unknown date' +p100030 +sg25275 +S'\n' +p100031 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071b5.jpg' +p100032 +sg25267 +g27 +sa(dp100033 +g25268 +S'Draped Figure Standing' +p100034 +sg25270 +S'James McNeill Whistler' +p100035 +sg25273 +S'lithograph' +p100036 +sg25275 +S'unknown date\n' +p100037 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab77.jpg' +p100038 +sg25267 +g27 +sa(dp100039 +g25268 +S'Red House, Paimpol' +p100040 +sg25270 +S'James McNeill Whistler' +p100041 +sg25273 +S'lithograph' +p100042 +sg25275 +S'1893' +p100043 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac13.jpg' +p100044 +sg25267 +g27 +sa(dp100045 +g25268 +S'Yellow House, Lannion' +p100046 +sg25270 +S'James McNeill Whistler' +p100047 +sg25273 +S'lithograph' +p100048 +sg25275 +S'1893' +p100049 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac22.jpg' +p100050 +sg25267 +g27 +sa(dp100051 +g25268 +S'Weary' +p100052 +sg25270 +S'James McNeill Whistler' +p100053 +sg25273 +S'drypoint on Japan paper' +p100054 +sg25275 +S'1863' +p100055 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab64.jpg' +p100056 +sg25267 +g27 +sa(dp100057 +g25268 +S'Draped Figure Reclining' +p100058 +sg25270 +S'James McNeill Whistler' +p100059 +sg25273 +S'color lithograph on Japan paper' +p100060 +sg25275 +S'unknown date\n' +p100061 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab14.jpg' +p100062 +sg25267 +g27 +sa(dp100063 +g25268 +S'Woman with the Owl' +p100064 +sg25270 +S'Master MZ' +p100065 +sg25273 +S'engraving' +p100066 +sg25275 +S'1500' +p100067 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3b5.jpg' +p100068 +sg25267 +g27 +sa(dp100069 +g25268 +S'Hound and Hunter' +p100070 +sg25270 +S'Winslow Homer' +p100071 +sg25273 +S'oil on canvas' +p100072 +sg25275 +S'1892' +p100073 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000102.jpg' +p100074 +sg25267 +S'At age forty-seven, Homer settled in Prout’s Neck, Maine.\r\nAlways a silent bachelor who guarded his technical methods\r\nand personal beliefs, he became almost a recluse. When he left\r\nthe coast of Maine, it was to fish or hunt in the Adirondack\r\nMountains and Canada or the Caribbean Sea and Bermuda—\r\ntaking his watercolor supplies with him.\n Homer’s \n To clarify that the stag is already dead and no longer struggling,\r\nhowever, Homer did repaint the churning water to hide\r\nmore of the animal. The hunter, therefore, simply ties up a\r\nheavy load, calling off the hound so it will not jump into the\r\nboat and swamp it.\n Homer once asked a museum curator, “Did you notice the\r\nboy’s hands—all sunburnt; the wrists somewhat sunburnt, but\r\nnot as brown as his hands; and the bit of forearm where his\r\nsleeve is pulled back not sunburnt at all? I spent more than a\r\nweek painting those hands.”\n ' +p100075 +sa(dp100076 +g25268 +S'Eve' +p100077 +sg25270 +S'Heinrich Aldegrever' +p100078 +sg25273 +S'engraving' +p100079 +sg25275 +S'unknown date\n' +p100080 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a68f.jpg' +p100081 +sg25267 +g27 +sa(dp100082 +g25268 +S'Head of a Roman Emperor' +p100083 +sg25270 +S'Artist Information (' +p100084 +sg25273 +S'Italian, c. 1447 - 1517' +p100085 +sg25275 +S'(related artist)' +p100086 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c724.jpg' +p100087 +sg25267 +g27 +sa(dp100088 +g25268 +S'Saint Cecilia' +p100089 +sg25270 +S'Artist Information (' +p100090 +sg25273 +S'(artist after)' +p100091 +sg25275 +S'\n' +p100092 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9e7.jpg' +p100093 +sg25267 +g27 +sa(dp100094 +g25268 +S'Los Supporting the Sun [recto]' +p100095 +sg25270 +S'William Blake' +p100096 +sg25273 +S'graphite' +p100097 +sg25275 +S'probably c. 1793' +p100098 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007045.jpg' +p100099 +sg25267 +g27 +sa(dp100100 +g25268 +S'A Crouching Figure Holding a Shield [verso]' +p100101 +sg25270 +S'William Blake' +p100102 +sg25273 +S'graphite' +p100103 +sg25275 +S'probably c. 1793' +p100104 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007015.jpg' +p100105 +sg25267 +g27 +sa(dp100106 +g25273 +S'watercolor and oil over charcoal' +p100107 +sg25267 +g27 +sg25275 +S'unknown date\n' +p100108 +sg25268 +S'View of Paris' +p100109 +sg25270 +S'Pierre Bonnard' +p100110 +sa(dp100111 +g25273 +S'lithograph' +p100112 +sg25267 +g27 +sg25275 +S'1925' +p100113 +sg25268 +S'Landscape from the South of France (Paysage du Midi)' +p100114 +sg25270 +S'Pierre Bonnard' +p100115 +sa(dp100116 +g25273 +S'lithograph' +p100117 +sg25267 +g27 +sg25275 +S'1925' +p100118 +sg25268 +S'Study of a Nude' +p100119 +sg25270 +S'Pierre Bonnard' +p100120 +sa(dp100121 +g25273 +S'lithograph' +p100122 +sg25267 +g27 +sg25275 +S'1925' +p100123 +sg25268 +S'The Bath' +p100124 +sg25270 +S'Pierre Bonnard' +p100125 +sa(dp100126 +g25268 +S'Memento Mori' +p100127 +sg25270 +S'Master MZ' +p100128 +sg25273 +S'engraving' +p100129 +sg25275 +S'c. 1500/1502' +p100130 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3b6.jpg' +p100131 +sg25267 +g27 +sa(dp100132 +g25273 +S'lithograph' +p100133 +sg25267 +g27 +sg25275 +S'1925' +p100134 +sg25268 +S'The Pitcher and the Fruit-Dish' +p100135 +sg25270 +S'Pierre Bonnard' +p100136 +sa(dp100137 +g25273 +S'etching' +p100138 +sg25267 +g27 +sg25275 +S'unknown date\n' +p100139 +sg25268 +S'Frontispiece for "The Prodigal Son"' +p100140 +sg25270 +S'Jacques Callot' +p100141 +sa(dp100142 +g25273 +S'bound volume with 11 etchings' +p100143 +sg25267 +g27 +sg25275 +S'published 1635' +p100144 +sg25268 +S'The Prodigal Son' +p100145 +sg25270 +S'Jacques Callot' +p100146 +sa(dp100147 +g25273 +S'etching' +p100148 +sg25267 +g27 +sg25275 +S'unknown date\n' +p100149 +sg25268 +S'The Inheritance' +p100150 +sg25270 +S'Jacques Callot' +p100151 +sa(dp100152 +g25273 +S'etching' +p100153 +sg25267 +g27 +sg25275 +S'unknown date\n' +p100154 +sg25268 +S'The Departure' +p100155 +sg25270 +S'Jacques Callot' +p100156 +sa(dp100157 +g25273 +S'etching' +p100158 +sg25267 +g27 +sg25275 +S'unknown date\n' +p100159 +sg25268 +S'The Dissipation' +p100160 +sg25270 +S'Jacques Callot' +p100161 +sa(dp100162 +g25273 +S'etching' +p100163 +sg25267 +g27 +sg25275 +S'unknown date\n' +p100164 +sg25268 +S'The Ruin' +p100165 +sg25270 +S'Jacques Callot' +p100166 +sa(dp100167 +g25273 +S'etching' +p100168 +sg25267 +g27 +sg25275 +S'unknown date\n' +p100169 +sg25268 +S'The Swineherd' +p100170 +sg25270 +S'Jacques Callot' +p100171 +sa(dp100172 +g25273 +S'etching' +p100173 +sg25267 +g27 +sg25275 +S'unknown date\n' +p100174 +sg25268 +S'Praying for Divine Help' +p100175 +sg25270 +S'Jacques Callot' +p100176 +sa(dp100177 +g25273 +S'etching' +p100178 +sg25267 +g27 +sg25275 +S'unknown date\n' +p100179 +sg25268 +S'Return of the Prodigal Son' +p100180 +sg25270 +S'Jacques Callot' +p100181 +sa(dp100182 +g25268 +S"The Testing of the King's Sons" +p100183 +sg25270 +S'Master MZ' +p100184 +sg25273 +S'engraving' +p100185 +sg25275 +S'c. 1500' +p100186 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a455.jpg' +p100187 +sg25267 +g27 +sa(dp100188 +g25273 +S'etching' +p100189 +sg25267 +g27 +sg25275 +S'unknown date\n' +p100190 +sg25268 +S'The Parents Bestow Gifts' +p100191 +sg25270 +S'Jacques Callot' +p100192 +sa(dp100193 +g25273 +S'etching' +p100194 +sg25267 +g27 +sg25275 +S'unknown date\n' +p100195 +sg25268 +S'Killing the Fatted Calf' +p100196 +sg25270 +S'Jacques Callot' +p100197 +sa(dp100198 +g25273 +S'etching' +p100199 +sg25267 +g27 +sg25275 +S'unknown date\n' +p100200 +sg25268 +S'The Feast' +p100201 +sg25270 +S'Jacques Callot' +p100202 +sa(dp100203 +g25273 +S'lithograph' +p100204 +sg25267 +g27 +sg25275 +S'1922/1923' +p100205 +sg25268 +S'The Farm' +p100206 +sg25270 +S'Marc Chagall' +p100207 +sa(dp100208 +g25273 +S'lithograph' +p100209 +sg25267 +g27 +sg25275 +S'1922/1923' +p100210 +sg25268 +S'On the Stove' +p100211 +sg25270 +S'Marc Chagall' +p100212 +sa(dp100213 +g25273 +S'etching' +p100214 +sg25267 +g27 +sg25275 +S'1922' +p100215 +sg25268 +S'Lovers on a Bench' +p100216 +sg25270 +S'Marc Chagall' +p100217 +sa(dp100218 +g25273 +S'etching and drypoint' +p100219 +sg25267 +g27 +sg25275 +S'1922' +p100220 +sg25268 +S"Grandfather's House" +p100221 +sg25270 +S'Marc Chagall' +p100222 +sa(dp100223 +g25273 +S'etching and drypoint' +p100224 +sg25267 +g27 +sg25275 +S'1922' +p100225 +sg25268 +S'House in Vitebsk' +p100226 +sg25270 +S'Marc Chagall' +p100227 +sa(dp100228 +g25273 +S'drypoint on laid paper' +p100229 +sg25267 +g27 +sg25275 +S'1922' +p100230 +sg25268 +S'Pokrowa Street, Vitebsk' +p100231 +sg25270 +S'Marc Chagall' +p100232 +sa(dp100233 +g25268 +S'Good Human Qualities' +p100234 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p100235 +sg25273 +S'etching' +p100236 +sg25275 +S'1789' +p100237 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3af.jpg' +p100238 +sg25267 +g27 +sa(dp100239 +g25268 +S'Christ between Saint Peter and Saint James Major [left panel]' +p100240 +sg25270 +S'Artist Information (' +p100241 +sg25273 +S'Italian, mentioned 1272 - active 1302' +p100242 +sg25275 +S'(related artist)' +p100243 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00029/a000296c.jpg' +p100244 +sg25267 +g27 +sa(dp100245 +g25268 +S'The Betrayal' +p100246 +sg25270 +S'Netherlandish 15th Century' +p100247 +sg25273 +S'Lehrs, Vol. 4, p.224, no. 18' +p100248 +sg25275 +S'\nengraving' +p100249 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccf6.jpg' +p100250 +sg25267 +g27 +sa(dp100251 +g25268 +S'Illustrations to Fables & Tales by Gellert, Gleim, Hagedorn, Lichtwer and Pfeffel' +p100252 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p100253 +sg25273 +S'etching' +p100254 +sg25275 +S'1793' +p100255 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b357.jpg' +p100256 +sg25267 +g27 +sa(dp100257 +g25273 +S'etching' +p100258 +sg25267 +g27 +sg25275 +S'1898' +p100259 +sg25268 +S'Woman with Folded Hands (Frau mit ubereinandergelegten Handen)' +p100260 +sg25270 +S'K\xc3\xa4the Kollwitz' +p100261 +sa(dp100262 +g25273 +S'wood engraving' +p100263 +sg25267 +g27 +sg25275 +S'1947' +p100264 +sg25268 +S"Queen Anne's Lace" +p100265 +sg25270 +S'Warren Bryan Mack' +p100266 +sa(dp100267 +g25273 +S'color cellocut' +p100268 +sg25267 +g27 +sg25275 +S'1940s' +p100269 +sg25268 +S'The Alchemist II' +p100270 +sg25270 +S'Boris Margo' +p100271 +sa(dp100272 +g25273 +S'lithograph' +p100273 +sg25267 +g27 +sg25275 +S'1946' +p100274 +sg25268 +S'Curt Valentin' +p100275 +sg25270 +S'Andr\xc3\xa9 Masson' +p100276 +sa(dp100277 +g25268 +S'Saint George Standing' +p100278 +sg25270 +S'Master H.L.' +p100279 +sg25273 +S'engraving' +p100280 +sg25275 +S'1533' +p100281 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acb9.jpg' +p100282 +sg25267 +g27 +sa(dp100283 +g25273 +S'lithograph' +p100284 +sg25267 +g27 +sg25275 +S'1897' +p100285 +sg25268 +S'Ibsen with Lighthouse (Ibsen mit Leuchtturm)' +p100286 +sg25270 +S'Edvard Munch' +p100287 +sa(dp100288 +g25273 +S'lithograph' +p100289 +sg25267 +g27 +sg25275 +S'1908/1909' +p100290 +sg25268 +S'Professor Jacobsen' +p100291 +sg25270 +S'Edvard Munch' +p100292 +sa(dp100293 +g25273 +S'lithograph' +p100294 +sg25267 +g27 +sg25275 +S'1921' +p100295 +sg25268 +S'Two People (Zwei Menschen)' +p100296 +sg25270 +S'Edvard Munch' +p100297 +sa(dp100298 +g25273 +S'aquatint and drypoint' +p100299 +sg25267 +g27 +sg25275 +S'1945/1947' +p100300 +sg25268 +S'The School Room' +p100301 +sg25270 +S'Mario Prassinos' +p100302 +sa(dp100303 +g25268 +S'The Lamentation' +p100304 +sg25270 +S'Netherlandish 15th Century' +p100305 +sg25273 +S'Lehrs, Vol. 4, p.228, no. 22, State i' +p100306 +sg25275 +S'\nengraving' +p100307 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccf5.jpg' +p100308 +sg25267 +g27 +sa(dp100309 +g25273 +S'lithograph' +p100310 +sg25267 +g27 +sg25275 +S'1934' +p100311 +sg25268 +S'Spiral' +p100312 +sg25270 +S'Anton Prinner' +p100313 +sa(dp100314 +g25268 +S'Two Fauns Carrying a Child' +p100315 +sg25270 +S'Marcantonio Raimondi' +p100316 +sg25273 +S'engraving' +p100317 +sg25275 +S'unknown date\n' +p100318 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c77f.jpg' +p100319 +sg25267 +g27 +sa(dp100320 +g25273 +S'lithograph' +p100321 +sg25267 +g27 +sg25275 +S'1933' +p100322 +sg25268 +S'Automne' +p100323 +sg25270 +S'Georges Rouault' +p100324 +sa(dp100325 +g25273 +S'color woodcut on black wove paper' +p100326 +sg25267 +g27 +sg25275 +S'l946' +p100327 +sg25268 +S'Personal World' +p100328 +sg25270 +S'Anne Ryan' +p100329 +sa(dp100330 +g25268 +S'The Pink Star' +p100331 +sg25270 +S'Anne Ryan' +p100332 +sg25273 +S'color woodcut' +p100333 +sg25275 +S'1946' +p100334 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b80.jpg' +p100335 +sg25267 +g27 +sa(dp100336 +g25273 +S'color woodcut' +p100337 +sg25267 +g27 +sg25275 +S'1946' +p100338 +sg25268 +S'Sleep' +p100339 +sg25270 +S'Anne Ryan' +p100340 +sa(dp100341 +g25268 +S'Tenements in a Sea Town' +p100342 +sg25270 +S'Anne Ryan' +p100343 +sg25273 +S'color woodcut' +p100344 +sg25275 +S'1946' +p100345 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b81.jpg' +p100346 +sg25267 +g27 +sa(dp100347 +g25268 +S'Two Shepherds and a Boy' +p100348 +sg25270 +S'John Skippe' +p100349 +sg25273 +S'chiaroscuro woodcut' +p100350 +sg25275 +S'unknown date\n' +p100351 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077e9.jpg' +p100352 +sg25267 +g27 +sa(dp100353 +g25273 +S'engraving' +p100354 +sg25267 +g27 +sg25275 +S'1946' +p100355 +sg25268 +S'Eupalinos VI' +p100356 +sg25270 +S'Ferdinand Springer' +p100357 +sa(dp100358 +g25273 +S'engraving' +p100359 +sg25267 +g27 +sg25275 +S'1935' +p100360 +sg25268 +S'Little Torso' +p100361 +sg25270 +S'John Buckland Wright' +p100362 +sa(dp100363 +g25268 +S'Madonna and Child Enthroned' +p100364 +sg25270 +S'Master E.S.' +p100365 +sg25273 +S'engraving' +p100366 +sg25275 +S'c. 1466' +p100367 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3a4.jpg' +p100368 +sg25267 +g27 +sa(dp100369 +g25273 +S'woodcut in yellow on black tissue paper' +p100370 +sg25267 +g27 +sg25275 +S'1946' +p100371 +sg25268 +S'Christmas Card 1946' +p100372 +sg25270 +S'Adja Yunkers' +p100373 +sa(dp100374 +g25273 +S'woodcut block' +p100375 +sg25267 +g27 +sg25275 +S'1943' +p100376 +sg25268 +S'Accident in the Gobi Desert [recto]' +p100377 +sg25270 +S'Adja Yunkers' +p100378 +sa(dp100379 +g25273 +S'woodcut block' +p100380 +sg25267 +g27 +sg25275 +S'1943' +p100381 +sg25268 +S'Accident in the Gobi Desert [verso]' +p100382 +sg25270 +S'Adja Yunkers' +p100383 +sa(dp100384 +g25268 +S'Mucius Scaevola' +p100385 +sg25270 +S'conte Antonio Maria Zanetti I' +p100386 +sg25273 +S'chiaroscuro woodcut printed from 3 blocks: green and pink tone blocks with red line block' +p100387 +sg25275 +S'unknown date\n' +p100388 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb62.jpg' +p100389 +sg25267 +g27 +sa(dp100390 +g25273 +S'drypoint and (etching?)' +p100391 +sg25267 +g27 +sg25275 +S'1888' +p100392 +sg25268 +S'Battle of the Beggars Desir and Rissole (Combat des pouilleux Desir et Rissole)' +p100393 +sg25270 +S'James Ensor' +p100394 +sa(dp100395 +g25268 +S'Nave Nave Fenua' +p100396 +sg25270 +S'Paul Gauguin' +p100397 +sg25273 +S'brush, gouache, and india ink with pen and india ink on dark tan wove paper' +p100398 +sg25275 +S'probably 1894' +p100399 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00029/a0002959.jpg' +p100400 +sg25267 +g27 +sa(dp100401 +g25268 +S'Nave Nave Fenua (Delightful Land)' +p100402 +sg25270 +S'Paul Gauguin' +p100403 +sg25273 +S'woodcut' +p100404 +sg25275 +S'1894/1895' +p100405 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a0006717.jpg' +p100406 +sg25267 +g27 +sa(dp100407 +g25268 +S'Te Faruru (They are Making Love Here)' +p100408 +sg25270 +S'Paul Gauguin' +p100409 +sg25273 +S'woodcut in brown' +p100410 +sg25275 +S'1894/1895' +p100411 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a76.jpg' +p100412 +sg25267 +g27 +sa(dp100413 +g25268 +S'Te Po (The Long Night)' +p100414 +sg25270 +S'Paul Gauguin' +p100415 +sg25273 +S'woodcut in bistre on cream paper' +p100416 +sg25275 +S'1894/1895' +p100417 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a0006707.jpg' +p100418 +sg25267 +g27 +sa(dp100419 +g25268 +S"The Universe is Created (L'Univers est cr\xc3\xa9\xc3\xa9)" +p100420 +sg25270 +S'Paul Gauguin' +p100421 +sg25273 +S'woodcut in tan, red-brown, red and black [trial proof]' +p100422 +sg25275 +S'c. 1894' +p100423 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00022/a000223e.jpg' +p100424 +sg25267 +g27 +sa(dp100425 +g25268 +S'Saint Mark' +p100426 +sg25270 +S'Master E.S.' +p100427 +sg25273 +S'engraving' +p100428 +sg25275 +S'c. 1460/1465' +p100429 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3ab.jpg' +p100430 +sg25267 +g27 +sa(dp100431 +g25273 +S'color lithograph' +p100432 +sg25267 +g27 +sg25275 +S'1947' +p100433 +sg25268 +S'Pears on a Plate' +p100434 +sg25270 +S'Max Kahn' +p100435 +sa(dp100436 +g25273 +S'color lithograph' +p100437 +sg25267 +g27 +sg25275 +S'unknown date\n' +p100438 +sg25268 +S'Pears on a Plate' +p100439 +sg25270 +S'Max Kahn' +p100440 +sa(dp100441 +g25273 +S'color lithograph' +p100442 +sg25267 +g27 +sg25275 +S'1947' +p100443 +sg25268 +S'Sleeping Children' +p100444 +sg25270 +S'Max Kahn' +p100445 +sa(dp100446 +g25273 +S'etching' +p100447 +sg25267 +g27 +sg25275 +S'1893' +p100448 +sg25268 +S'At the Church Wall (An der Kirchenmauer)' +p100449 +sg25270 +S'K\xc3\xa4the Kollwitz' +p100450 +sa(dp100451 +g25273 +S'etching' +p100452 +sg25267 +g27 +sg25275 +S'1905' +p100453 +sg25268 +S'Inspiration' +p100454 +sg25270 +S'K\xc3\xa4the Kollwitz' +p100455 +sa(dp100456 +g25273 +S'lithograph' +p100457 +sg25267 +g27 +sg25275 +S'1919' +p100458 +sg25268 +S'Memorial to Karl Liebknecht (Gedenkblatt fur Karl Liebknecht)' +p100459 +sg25270 +S'K\xc3\xa4the Kollwitz' +p100460 +sa(dp100461 +g25273 +S'lithograph' +p100462 +sg25267 +g27 +sg25275 +S'1919' +p100463 +sg25268 +S'Memorial to Karl Liebknecht (Gedenkblatt fur Karl Liebknecht)' +p100464 +sg25270 +S'K\xc3\xa4the Kollwitz' +p100465 +sa(dp100466 +g25273 +S'pen and black ink with black and gray wash' +p100467 +sg25267 +g27 +sg25275 +S'c. 1931' +p100468 +sg25268 +S'Mother and Child' +p100469 +sg25270 +S'K\xc3\xa4the Kollwitz' +p100470 +sa(dp100471 +g25273 +S'etching and soft-ground' +p100472 +sg25267 +g27 +sg25275 +S'1910' +p100473 +sg25268 +S'Pregnant Woman (Schwangere Frau)' +p100474 +sg25270 +S'K\xc3\xa4the Kollwitz' +p100475 +sa(dp100476 +g25273 +S'etching' +p100477 +sg25267 +g27 +sg25275 +S'1899' +p100478 +sg25268 +S'Revolt (Aufruhr)' +p100479 +sg25270 +S'K\xc3\xa4the Kollwitz' +p100480 +sa(dp100481 +g25268 +S'Saint Mark' +p100482 +sg25270 +S'Master E.S.' +p100483 +sg25273 +S'engraving' +p100484 +sg25275 +S'c. 1460/1465' +p100485 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3aa.jpg' +p100486 +sg25267 +g27 +sa(dp100487 +g25273 +S'woodcut' +p100488 +sg25267 +g27 +sg25275 +S'1923' +p100489 +sg25268 +S'Self-Portrait (Selbstbildnis von vorn)' +p100490 +sg25270 +S'K\xc3\xa4the Kollwitz' +p100491 +sa(dp100492 +g25273 +S'woodcut' +p100493 +sg25267 +g27 +sg25275 +S'1924' +p100494 +sg25268 +S'Self-Portrait (Selbstbildnis)' +p100495 +sg25270 +S'K\xc3\xa4the Kollwitz' +p100496 +sa(dp100497 +g25273 +S'lithograph in black on wove paper' +p100498 +sg25267 +g27 +sg25275 +S'1934' +p100499 +sg25268 +S'Self-Portrait' +p100500 +sg25270 +S'K\xc3\xa4the Kollwitz' +p100501 +sa(dp100502 +g25273 +S'pen and black ink with black wash' +p100503 +sg25267 +g27 +sg25275 +S'1891' +p100504 +sg25268 +S'Study of a Man' +p100505 +sg25270 +S'K\xc3\xa4the Kollwitz' +p100506 +sa(dp100507 +g25273 +S'charcoal on laid paper' +p100508 +sg25267 +g27 +sg25275 +S'1922/1923' +p100509 +sg25268 +S'The Survivors' +p100510 +sg25270 +S'K\xc3\xa4the Kollwitz' +p100511 +sa(dp100512 +g25268 +S'General Washington at Princeton' +p100513 +sg25270 +S'Charles Peale Polk' +p100514 +sg25273 +S'oil on canvas' +p100515 +sg25275 +S'c. 1790' +p100516 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001c2.jpg' +p100517 +sg25267 +g27 +sa(dp100518 +g25268 +S'Henri II de Lorraine' +p100519 +sg25270 +S'Sir Anthony van Dyck' +p100520 +sg25273 +S'oil on canvas' +p100521 +sg25275 +S'c. 1634' +p100522 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e1f.jpg' +p100523 +sg25267 +S'Henri II de Lorraine\n ' +p100524 +sa(dp100525 +g25268 +S'The Death of the Earl of Chatham' +p100526 +sg25270 +S'John Singleton Copley' +p100527 +sg25273 +S'oil on canvas' +p100528 +sg25275 +S'1779' +p100529 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d6f.jpg' +p100530 +sg25267 +S'On 7 April 1778, William Pitt, the first earl of Chatham, rose to speak \r\n in the House of Lords. In the midst of debate about the colonial \r\n revolutionaries, he suffered a stroke. The earl’s death removed one of \r\n Britain’s leading political moderates during the critical years of the \r\n American War of Independence. This small oil painting is Copley’s \r\n preliminary compositional sketch for a large canvas now in the Tate \r\n Gallery, London.\n In proper academic procedure, Copley first used browns and grays to work \r\n out the overall distribution of the scene before considering the color \r\n scheme and details. Sunshine pours in from a roundel window over the throne \r\n canopy, spotlighting the stricken Pitt. The pencil lines drawn over this \r\n study create a proportional grid called “squaring” that enabled the \r\n artist to transfer and enlarge the design. In 1781, after two years’ work, \r\n Copley installed his ten-foot-wide picture in a pavilion and charged \r\n admission to his popular one-work show. How Copley had persuaded fifty-five \r\n noblemen to sit for their portraits became the talk of British society.\n ' +p100531 +sa(dp100532 +g25268 +S"Venus at Vulcan's Forge" +p100533 +sg25270 +S'L\xc3\xa9on Davent' +p100534 +sg25273 +S'etching' +p100535 +sg25275 +S'unknown date\n' +p100536 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084c1.jpg' +p100537 +sg25267 +g27 +sa(dp100538 +g25268 +S'Portrait of a Young Lady' +p100539 +sg25270 +S'Unknown 19th Century' +p100540 +sg25273 +S'overall: 61.3 x 46 cm (24 1/8 x 18 1/8 in.)\r\nframed: 81.3 x 66.4 x 8.3 cm (32 x 26 1/8 x 3 1/4 in.)' +p100541 +sg25275 +S'\noil on canvas' +p100542 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c610.jpg' +p100543 +sg25267 +g27 +sa(dp100544 +g25268 +S'Martyrdom of Saint Sebastian' +p100545 +sg25270 +S'Master E.S.' +p100546 +sg25273 +S'engraving' +p100547 +sg25275 +S'c. 1450/1460' +p100548 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3a8.jpg' +p100549 +sg25267 +g27 +sa(dp100550 +g25268 +S'Gouverneur Kemble' +p100551 +sg25270 +S'Asher Brown Durand' +p100552 +sg25273 +S'oil on canvas' +p100553 +sg25275 +S'1853' +p100554 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000083.jpg' +p100555 +sg25267 +g27 +sa(dp100556 +g25268 +S'William Clark Frazer' +p100557 +sg25270 +S'Jacob Eichholtz' +p100558 +sg25273 +S'oil on canvas' +p100559 +sg25275 +S'c. 1830' +p100560 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000009e.jpg' +p100561 +sg25267 +g27 +sa(dp100562 +g25268 +S'James P. Smith' +p100563 +sg25270 +S'Jacob Eichholtz' +p100564 +sg25273 +S'oil on canvas' +p100565 +sg25275 +S'c. 1835' +p100566 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000009f.jpg' +p100567 +sg25267 +g27 +sa(dp100568 +g25273 +S'overall: 64.8 x 54.3 cm (25 1/2 x 21 3/8 in.)\r\nframed: 88.9 x 78.1 x 4.4 cm (35 x 30 3/4 x 1 3/4 in.)' +p100569 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p100570 +sg25268 +S'Portrait of a Man' +p100571 +sg25270 +S'American 19th Century' +p100572 +sa(dp100573 +g25268 +S'William Sidney Mount' +p100574 +sg25270 +S'Charles Loring Elliott' +p100575 +sg25273 +S'oil on canvas' +p100576 +sg25275 +S'c. 1850' +p100577 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000aa.jpg' +p100578 +sg25267 +g27 +sa(dp100579 +g25268 +S'Henry Theodore Tuckerman' +p100580 +sg25270 +S'Daniel Huntington' +p100581 +sg25273 +S'oil on canvas' +p100582 +sg25275 +S'1866' +p100583 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000010e.jpg' +p100584 +sg25267 +g27 +sa(dp100585 +g25268 +S'George Pope Morris' +p100586 +sg25270 +S'Henry Inman' +p100587 +sg25273 +S'oil on canvas' +p100588 +sg25275 +S'c. 1836' +p100589 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000110.jpg' +p100590 +sg25267 +g27 +sa(dp100591 +g25268 +S'Charles Loring Elliott' +p100592 +sg25270 +S'American 19th Century' +p100593 +sg25273 +S'overall: 68.9 x 56.2 cm (27 1/8 x 22 1/8 in.)\r\nframed: 91.8 x 79.1 x 7.1 cm (36 1/8 x 31 1/8 x 2 13/16 in.)' +p100594 +sg25275 +S'\noil on canvas' +p100595 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000016f.jpg' +p100596 +sg25267 +g27 +sa(dp100597 +g25268 +S'Timothy Matlack' +p100598 +sg25270 +S'Rembrandt Peale' +p100599 +sg25273 +S', 1802' +p100600 +sg25275 +S'\n' +p100601 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001c6.jpg' +p100602 +sg25267 +g27 +sa(dp100603 +g25268 +S'Robert Walsh' +p100604 +sg25270 +S'Thomas Sully' +p100605 +sg25273 +S'oil on canvas' +p100606 +sg25275 +S'1814' +p100607 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000265.jpg' +p100608 +sg25267 +g27 +sa(dp100609 +g25268 +S'The Knight and the Lady' +p100610 +sg25270 +S'Master E.S.' +p100611 +sg25273 +S'engraving' +p100612 +sg25275 +S'c. 1460/1465' +p100613 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f5a.jpg' +p100614 +sg25267 +g27 +sa(dp100615 +g25268 +S'Mr. Motte' +p100616 +sg25270 +S'Jeremiah Theus' +p100617 +sg25273 +S'oil on canvas' +p100618 +sg25275 +S'c. 1760' +p100619 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000271.jpg' +p100620 +sg25267 +g27 +sa(dp100621 +g25268 +S'William Rogers' +p100622 +sg25270 +S'John Trumbull' +p100623 +sg25273 +S'oil on canvas' +p100624 +sg25275 +S'1804/1808' +p100625 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000027b.jpg' +p100626 +sg25267 +g27 +sa(dp100627 +g25268 +S'John Sudam' +p100628 +sg25270 +S'John Vanderlyn' +p100629 +sg25273 +S'oil on canvas' +p100630 +sg25275 +S'1829-1830' +p100631 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000284.jpg' +p100632 +sg25267 +g27 +sa(dp100633 +g25273 +S'oil on canvas' +p100634 +sg25267 +g27 +sg25275 +S'c. 1750/1770' +p100635 +sg25268 +S'Portrait of a Gentleman' +p100636 +sg25270 +S'British 18th Century' +p100637 +sa(dp100638 +g25268 +S'George Washington' +p100639 +sg25270 +S'Rembrandt Peale' +p100640 +sg25273 +S'oil on canvas' +p100641 +sg25275 +S'1859' +p100642 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001a7.jpg' +p100643 +sg25267 +g27 +sa(dp100644 +g25268 +S'Abraham Lincoln' +p100645 +sg25270 +S'Douglas Volk' +p100646 +sg25273 +S'oil on canvas' +p100647 +sg25275 +S'1908, reworked 1917' +p100648 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000285.jpg' +p100649 +sg25267 +g27 +sa(dp100650 +g25268 +S'Sarah Blake Sturgis' +p100651 +sg25270 +S'Francis Alexander' +p100652 +sg25273 +S'oil on canvas' +p100653 +sg25275 +S'1835' +p100654 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000002.jpg' +p100655 +sg25267 +g27 +sa(dp100656 +g25268 +S'A Painter and Visitors in a Studio' +p100657 +sg25270 +S'Unknown 19th Century' +p100658 +sg25273 +S'overall: 35 x 43 cm (13 3/4 x 16 15/16 in.)\r\nframed: 45.1 x 75.3 x 1.9 cm (17 3/4 x 29 5/8 x 3/4 in.)' +p100659 +sg25275 +S'\noil on paper on canvas' +p100660 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c618.jpg' +p100661 +sg25267 +g27 +sa(dp100662 +g25268 +S'Maria Gansevoort Melvill (Mrs. Allan Melvill)' +p100663 +sg25270 +S'Ezra Ames' +p100664 +sg25273 +S'oil on wood' +p100665 +sg25275 +S'c. 1815' +p100666 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c62a.jpg' +p100667 +sg25267 +g27 +sa(dp100668 +g25273 +S', c. 1841' +p100669 +sg25267 +g27 +sg25275 +S'\n' +p100670 +sg25268 +S'George Southward (?)' +p100671 +sg25270 +S'Joseph Alexander Ames' +p100672 +sa(dp100673 +g25268 +S'The Letter "K"' +p100674 +sg25270 +S'Master E.S.' +p100675 +sg25273 +S'engraving' +p100676 +sg25275 +S'c. 1466/1467' +p100677 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005783.jpg' +p100678 +sg25267 +g27 +sa(dp100679 +g25268 +S'Portrait of a Gentleman' +p100680 +sg25270 +S'British 18th Century' +p100681 +sg25273 +S'oil on canvas' +p100682 +sg25275 +S'c. 1726/1740' +p100683 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000eff.jpg' +p100684 +sg25267 +g27 +sa(dp100685 +g25268 +S'Maria Hamilton Beckford (Mrs. William Beckford)' +p100686 +sg25270 +S'Benjamin West' +p100687 +sg25273 +S'oil on canvas' +p100688 +sg25275 +S'1799' +p100689 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d47.jpg' +p100690 +sg25267 +g27 +sa(dp100691 +g25268 +S'Portrait of a Man' +p100692 +sg25270 +S'European 18th Century' +p100693 +sg25273 +S'overall: 76.2 x 63.8 cm (30 x 25 1/8 in.)\r\nframed: 96.2 x 84.1 x 6.4 cm (37 7/8 x 33 1/8 x 2 1/2 in.)' +p100694 +sg25275 +S'\noil on canvas' +p100695 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c62b.jpg' +p100696 +sg25267 +g27 +sa(dp100697 +g25268 +S'A Military Officer' +p100698 +sg25270 +S'Joseph Blackburn' +p100699 +sg25273 +S'oil on canvas' +p100700 +sg25275 +S'1756' +p100701 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c62c.jpg' +p100702 +sg25267 +g27 +sa(dp100703 +g25273 +S', c. 1702/1730' +p100704 +sg25267 +g27 +sg25275 +S'\n' +p100705 +sg25268 +S'Portrait of an Officer' +p100706 +sg25270 +S'Enoch Seeman' +p100707 +sa(dp100708 +g25273 +S'overall: 103.8 x 76.5 cm (40 7/8 x 30 1/8 in.)\r\nframed: 117.5 x 89.9 x 5.7 cm (46 1/4 x 35 3/8 x 2 1/4 in.)' +p100709 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p100710 +sg25268 +S'Portrait of a Lady' +p100711 +sg25270 +S'British 18th Century' +p100712 +sa(dp100713 +g25268 +S'Thomas Dawson, Viscount Cremorne' +p100714 +sg25270 +S'Mather Brown' +p100715 +sg25273 +S'oil on canvas' +p100716 +sg25275 +S'c. 1788' +p100717 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000002d.jpg' +p100718 +sg25267 +g27 +sa(dp100719 +g25273 +S'oil on canvas' +p100720 +sg25267 +g27 +sg25275 +S'1737/1740' +p100721 +sg25268 +S'James, 5th Duke of Hamilton' +p100722 +sg25270 +S'Jeremiah Davison' +p100723 +sa(dp100724 +g25273 +S'oil on canvas' +p100725 +sg25267 +g27 +sg25275 +S'c. 1840' +p100726 +sg25268 +S"The Artist's Brother" +p100727 +sg25270 +S'Alvan Clark' +p100728 +sa(dp100729 +g25273 +S'oil on canvas' +p100730 +sg25267 +g27 +sg25275 +S'c. 1730/1750' +p100731 +sg25268 +S'Portrait of a Lady' +p100732 +sg25270 +S'British 18th Century' +p100733 +sa(dp100734 +g25268 +S'Saint Peter' +p100735 +sg25270 +S'Master E.S.' +p100736 +sg25273 +S'engraving' +p100737 +sg25275 +S'c. 1450/1460' +p100738 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3af.jpg' +p100739 +sg25267 +g27 +sa(dp100740 +g25273 +S'overall: 87.6 x 69.9 cm (34 1/2 x 27 1/2 in.)\r\nframed: 109.2 x 92.4 x 8.9 cm (43 x 36 3/8 x 3 1/2 in.)' +p100741 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p100742 +sg25268 +S'Portrait of a Man' +p100743 +sg25270 +S'Unknown 18th Century' +p100744 +sa(dp100745 +g25268 +S'Portrait of a Man' +p100746 +sg25270 +S'Unknown 18th Century' +p100747 +sg25273 +S'overall: 72.7 x 60.3 cm (28 5/8 x 23 3/4 in.)\r\nframed: 90.2 x 80 x 7.9 cm (35 1/2 x 31 1/2 x 3 1/8 in.)' +p100748 +sg25275 +S'\noil on canvas' +p100749 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a0006618.jpg' +p100750 +sg25267 +g27 +sa(dp100751 +g25268 +S'Portrait of a Man' +p100752 +sg25270 +S'French 17th Century' +p100753 +sg25273 +S'overall: 72.4 x 58.4 cm (28 1/2 x 23 in.)\r\nframed: 92.4 x 77.2 x 7 cm (36 3/8 x 30 3/8 x 2 3/4 in.)' +p100754 +sg25275 +S'\noil on canvas' +p100755 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005ad0.jpg' +p100756 +sg25267 +g27 +sa(dp100757 +g25268 +S'Portrait of a Man' +p100758 +sg25270 +S'Unknown 18th Century' +p100759 +sg25273 +S'overall: 48.9 x 38.4 cm (19 1/4 x 15 1/8 in.)\r\nframed: 56.2 x 46 x 3.8 cm (22 1/8 x 18 1/8 x 1 1/2 in.)' +p100760 +sg25275 +S'\noil on canvas' +p100761 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c58d.jpg' +p100762 +sg25267 +g27 +sa(dp100763 +g25273 +S'British, 1786 - 1854' +p100764 +sg25267 +g27 +sg25275 +S'(artist after)' +p100765 +sg25268 +S'Master Betty' +p100766 +sg25270 +S'Artist Information (' +p100767 +sa(dp100768 +g25268 +S'Portrait of a Man' +p100769 +sg25270 +S'American 19th Century' +p100770 +sg25273 +S'overall: 86.5 x 68.7 cm (34 1/16 x 27 1/16 in.)\r\nframed: 107 x 91.8 x 7.9 cm (42 1/8 x 36 1/8 x 3 1/8 in.)' +p100771 +sg25275 +S'\noil on canvas' +p100772 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a000044e.jpg' +p100773 +sg25267 +g27 +sa(dp100774 +g25273 +S'overall (original oval format): 69.8 x 57 cm (27 1/2 x 22 7/16 in.)\r\nsupport: 76.5 x 63.8 cm (30 1/8 x 25 1/8 in.)\r\nframed: 92.1 x 78.7 x 4.4 cm (36 1/4 x 31 x 1 3/4 in.)' +p100775 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p100776 +sg25268 +S'Portrait of a Man' +p100777 +sg25270 +S'Unknown 18th Century' +p100778 +sa(dp100779 +g25273 +S'overall: 76 x 64 cm (29 15/16 x 25 3/16 in.)\r\nframed: 93.4 x 77.8 x 5.9 cm (36 3/4 x 30 5/8 x 2 5/16 in.)' +p100780 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p100781 +sg25268 +S'Portrait of a Lady' +p100782 +sg25270 +S'British 18th Century' +p100783 +sa(dp100784 +g25273 +S'overall: 76.3 x 68.5 cm (30 1/16 x 26 15/16 in.)\r\nframed: 93.4 x 79.2 x 5.4 cm (36 3/4 x 31 3/16 x 2 1/8 in.)' +p100785 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p100786 +sg25268 +S'Portrait of a Man' +p100787 +sg25270 +S'Unknown 18th Century' +p100788 +sa(dp100789 +g25273 +S'oil on canvas' +p100790 +sg25267 +g27 +sg25275 +S'c. 1715/1730' +p100791 +sg25268 +S'Portrait of a Lady' +p100792 +sg25270 +S'British 18th Century' +p100793 +sa(dp100794 +g25268 +S'The Judgment of Solomon' +p100795 +sg25270 +S'Master FVB' +p100796 +sg25273 +S'engraving' +p100797 +sg25275 +S'c. 1480' +p100798 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccf8.jpg' +p100799 +sg25267 +g27 +sa(dp100800 +g25268 +S'Thomas Earle' +p100801 +sg25270 +S'Ralph Earl' +p100802 +sg25273 +S'oil on canvas' +p100803 +sg25275 +S'1800' +p100804 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000097.jpg' +p100805 +sg25267 +g27 +sa(dp100806 +g25273 +S'overall: 75.5 x 63 cm (29 3/4 x 24 13/16 in.)\r\nframed: 82.9 x 70.8 x 3.5 cm (32 5/8 x 27 7/8 x 1 3/8 in.)' +p100807 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p100808 +sg25268 +S'Portrait of a Gentleman' +p100809 +sg25270 +S'British 18th Century' +p100810 +sa(dp100811 +g25268 +S'Portrait of a Man' +p100812 +sg25270 +S'American 19th Century' +p100813 +sg25273 +S'overall: 76.5 x 61.6 cm (30 1/8 x 24 1/4 in.)\r\nframed: 87.6 x 72.4 x 7 cm (34 1/2 x 28 1/2 x 2 3/4 in.)' +p100814 +sg25275 +S'\noil on wood' +p100815 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000bd/a000bdd5.jpg' +p100816 +sg25267 +g27 +sa(dp100817 +g25268 +S'Phoebe Cassidy Freeman (Mrs. Clarkson Freeman)' +p100818 +sg25270 +S'Jacob Eichholtz' +p100819 +sg25273 +S'oil on canvas' +p100820 +sg25275 +S'c. 1830' +p100821 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000a0.jpg' +p100822 +sg25267 +g27 +sa(dp100823 +g25273 +S'overall: 73.3 x 59.1 cm (28 7/8 x 23 1/4 in.)\r\nframed: 97.8 x 83.8 x 6.4 cm (38 1/2 x 33 x 2 1/2 in.)' +p100824 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p100825 +sg25268 +S'Miss Robinson' +p100826 +sg25270 +S'American 19th Century' +p100827 +sa(dp100828 +g25273 +S'overall: 76.2 x 65.7 cm (30 x 25 7/8 in.)\r\nframed: 94.3 x 81.9 x 4.1 cm (37 1/8 x 32 1/4 x 1 5/8 in.)' +p100829 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p100830 +sg25268 +S'Portrait of a Man' +p100831 +sg25270 +S'Unknown 18th Century' +p100832 +sa(dp100833 +g25268 +S'Portrait of a Lady' +p100834 +sg25270 +S'British 18th Century' +p100835 +sg25273 +S'overall: 93.3 x 71.8 cm (36 3/4 x 28 1/4 in.)\r\nframed: 108.9 x 88.6 x 6.4 cm (42 7/8 x 34 7/8 x 2 1/2 in.)' +p100836 +sg25275 +S'\noil on canvas' +p100837 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f00.jpg' +p100838 +sg25267 +g27 +sa(dp100839 +g25273 +S'overall: 127 x 101.7 cm (50 x 40 1/16 in.)\r\nframed: 150.5 x 125.7 x 4.4 cm (59 1/4 x 49 1/2 x 1 3/4 in.)' +p100840 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p100841 +sg25268 +S'Portrait of a Gentleman' +p100842 +sg25270 +S'British 18th Century' +p100843 +sa(dp100844 +g25273 +S'oil on canvas' +p100845 +sg25267 +g27 +sg25275 +S'c. 1810' +p100846 +sg25268 +S'Ebenezer Newhall' +p100847 +sg25270 +S'James Frothingham' +p100848 +sa(dp100849 +g25273 +S'overall: 76.2 x 61.3 cm (30 x 24 1/8 in.)\r\nframed: 91.1 x 75.9 x 5.1 cm (35 7/8 x 29 7/8 x 2 in.)' +p100850 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p100851 +sg25268 +S'Portrait of a Man' +p100852 +sg25270 +S'American 19th Century' +p100853 +sa(dp100854 +g25268 +S'Saint Simon' +p100855 +sg25270 +S'Master FVB' +p100856 +sg25273 +S'engraving' +p100857 +sg25275 +S'c. 1490/1500' +p100858 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccdf.jpg' +p100859 +sg25267 +g27 +sa(dp100860 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(painter)' +p100861 +sg25268 +S'Portrait of a Man' +p100862 +sg25270 +S'Artist Information (' +p100863 +sa(dp100864 +g25268 +S'Mother and Child' +p100865 +sg25270 +S'Artist Information (' +p100866 +sg25273 +g27 +sg25275 +S'(painter)' +p100867 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000bd/a000bdcf.jpg' +p100868 +sg25267 +g27 +sa(dp100869 +g25268 +S'Self-Portrait' +p100870 +sg25270 +S'Chester Harding' +p100871 +sg25273 +S'oil on canvas' +p100872 +sg25275 +S'c. 1825' +p100873 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000dc.jpg' +p100874 +sg25267 +g27 +sa(dp100875 +g25273 +S'overall: 50.5 x 37.5 cm (19 7/8 x 14 3/4 in.)\r\nframed: 74 x 61.6 x 11.4 cm (29 1/8 x 24 1/4 x 4 1/2 in.)' +p100876 +sg25267 +g27 +sg25275 +S'\noil on canvas on cardboard' +p100877 +sg25268 +S'Junius Brutus Booth' +p100878 +sg25270 +S'American 19th Century' +p100879 +sa(dp100880 +g25268 +S'Dr. James Hall' +p100881 +sg25270 +S'Daniel Huntington' +p100882 +sg25273 +S'oil on canvas' +p100883 +sg25275 +S'1857' +p100884 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000010c.jpg' +p100885 +sg25267 +g27 +sa(dp100886 +g25268 +S'Dr. John Edwards Holbrook' +p100887 +sg25270 +S'Daniel Huntington' +p100888 +sg25273 +S'oil on canvas' +p100889 +sg25275 +S'1857' +p100890 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000010d.jpg' +p100891 +sg25267 +g27 +sa(dp100892 +g25268 +S'Portrait of a Lady' +p100893 +sg25270 +S'American 19th Century' +p100894 +sg25273 +S'overall (oval): 76.2 x 63.8 cm (30 x 25 1/8 in.)\r\nframed: 103.2 x 90.5 x 11.4 cm (40 5/8 x 35 5/8 x 4 1/2 in.)' +p100895 +sg25275 +S'\noil on canvas' +p100896 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000441.jpg' +p100897 +sg25267 +g27 +sa(dp100898 +g25273 +S'overall: 86.4 x 68.6 cm (34 x 27 in.)\r\nframed: 108.6 x 91.4 x 10.8 cm (42 3/4 x 36 x 4 1/4 in.)' +p100899 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p100900 +sg25268 +S'Portrait of a Man' +p100901 +sg25270 +S'American 19th Century' +p100902 +sa(dp100903 +g25273 +S'overall: 75.9 x 62.9 cm (29 7/8 x 24 3/4 in.)\r\nframed: 106 x 93.4 x 9.2 cm (41 3/4 x 36 3/4 x 3 5/8 in.)' +p100904 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p100905 +sg25268 +S'Portrait of a Lady' +p100906 +sg25270 +S'American 19th Century' +p100907 +sa(dp100908 +g25273 +S'overall: 76.8 x 63.8 cm (30 1/4 x 25 1/8 in.)\r\nframed: 102.6 x 91.1 x 11.4 cm (40 3/8 x 35 7/8 x 4 1/2 in.)' +p100909 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p100910 +sg25268 +S'Portrait of a Man' +p100911 +sg25270 +S'American 19th Century' +p100912 +sa(dp100913 +g25268 +S'Saint Judas Thaddaeus' +p100914 +sg25270 +S'Master FVB' +p100915 +sg25273 +S'engraving' +p100916 +sg25275 +S'c. 1490/1500' +p100917 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccde.jpg' +p100918 +sg25267 +g27 +sa(dp100919 +g25268 +S'Edwin Forrest' +p100920 +sg25270 +S'David Johnson' +p100921 +sg25273 +S'oil on canvas' +p100922 +sg25275 +S'1871' +p100923 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000011c.jpg' +p100924 +sg25267 +g27 +sa(dp100925 +g25268 +S'Joseph Wesley Harper, Jr.' +p100926 +sg25270 +S'Eastman Johnson' +p100927 +sg25273 +S'oil on canvas' +p100928 +sg25275 +S'c. 1885' +p100929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000011d.jpg' +p100930 +sg25267 +g27 +sa(dp100931 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(painter)' +p100932 +sg25268 +S'Portrait of a Gentleman' +p100933 +sg25270 +S'Artist Information (' +p100934 +sa(dp100935 +g25268 +S'John Peck' +p100936 +sg25270 +S'John Johnston' +p100937 +sg25273 +S'oil on canvas' +p100938 +sg25275 +S'c. 1795' +p100939 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000125.jpg' +p100940 +sg25267 +g27 +sa(dp100941 +g25273 +S'overall: 63.2 x 50.8 cm (24 7/8 x 20 in.)\r\nframed: 77.8 x 7 x 7.3 cm (30 5/8 x 2 3/4 x 2 7/8 in.)' +p100942 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p100943 +sg25268 +S'Portrait of a Lady' +p100944 +sg25270 +S'American 19th Century' +p100945 +sa(dp100946 +g25268 +S'Abraham Lincoln' +p100947 +sg25270 +S'American 19th Century' +p100948 +sg25273 +S'overall: 76.2 x 63.6 cm (30 x 25 1/16 in.)\r\nframed: 101.9 x 90.2 x 8.9 cm (40 1/8 x 35 1/2 x 3 1/2 in.)' +p100949 +sg25275 +S'\noil on canvas' +p100950 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c3/a000c3fa.jpg' +p100951 +sg25267 +g27 +sa(dp100952 +g25273 +S'oil on canvas' +p100953 +sg25267 +g27 +sg25275 +S'c. 1879' +p100954 +sg25268 +S'William Morris Hunt' +p100955 +sg25270 +S'Thomas Bayley Lawson' +p100956 +sa(dp100957 +g25268 +S'Portrait of a Lady' +p100958 +sg25270 +S'French 19th Century' +p100959 +sg25273 +S'overall: 32.8 x 24.8 cm (12 15/16 x 9 3/4 in.)\r\nframed: 44.5 x 35.9 x 5.4 cm (17 1/2 x 14 1/8 x 2 1/8 in.)' +p100960 +sg25275 +S'\noil on canvas' +p100961 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c3/a000c3fb.jpg' +p100962 +sg25267 +g27 +sa(dp100963 +g25273 +S'overall: 76.2 x 63.5 cm (30 x 25 in.)\r\nframed: 95.9 x 83.2 x 7 cm (37 3/4 x 32 3/4 x 2 3/4 in.)' +p100964 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p100965 +sg25268 +S'Portrait of a Man' +p100966 +sg25270 +S'American 19th Century' +p100967 +sa(dp100968 +g25273 +S'overall: 78.7 x 61 cm (31 x 24 in.)\r\nframed: 94.3 x 76.5 x 5.4 cm (37 1/8 x 30 1/8 x 2 1/8 in.)' +p100969 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p100970 +sg25268 +S'Portrait of a Man' +p100971 +sg25270 +S'European 18th Century' +p100972 +sa(dp100973 +g25268 +S'Saint Philip' +p100974 +sg25270 +S'Master FVB' +p100975 +sg25273 +S'engraving' +p100976 +sg25275 +S'c. 1490/1500' +p100977 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cce1.jpg' +p100978 +sg25267 +g27 +sa(dp100979 +g25268 +S'Eliab Metcalf (?)' +p100980 +sg25270 +S'American 19th Century' +p100981 +sg25273 +S'overall: 68.1 x 53.5 cm (26 13/16 x 21 1/16 in.)\r\nframed: 85.4 x 72.4 x 4.8 cm (33 5/8 x 28 1/2 x 1 7/8 in.)' +p100982 +sg25275 +S'\noil on canvas' +p100983 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000167.jpg' +p100984 +sg25267 +g27 +sa(dp100985 +g25268 +S'Cora Livingston' +p100986 +sg25270 +S'Charles Cromwell Ingham' +p100987 +sg25273 +S'oil on canvas' +p100988 +sg25275 +S'c. 1833' +p100989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000010f.jpg' +p100990 +sg25267 +g27 +sa(dp100991 +g25268 +S'Mr. Van Vechten' +p100992 +sg25270 +S'Artist Information (' +p100993 +sg25273 +S'(painter)' +p100994 +sg25275 +S'\n' +p100995 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000020b.jpg' +p100996 +sg25267 +g27 +sa(dp100997 +g25273 +S'overall: 91.8 x 71.4 cm (36 1/8 x 28 1/8 in.)\r\nframed: 116.5 x 96.5 x 6.4 cm (45 7/8 x 38 x 2 1/2 in.)' +p100998 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p100999 +sg25268 +S'Portrait of a Lady' +p101000 +sg25270 +S'American 19th Century' +p101001 +sa(dp101002 +g25268 +S'Portrait of a Man' +p101003 +sg25270 +S'British 19th Century' +p101004 +sg25273 +S'overall: 122.9 x 92.4 cm (48 3/8 x 36 3/8 in.)\r\nframed: 143.5 x 113 x 7 cm (56 1/2 x 44 1/2 x 2 3/4 in.)' +p101005 +sg25275 +S'\noil on canvas' +p101006 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c3/a000c3fc.jpg' +p101007 +sg25267 +g27 +sa(dp101008 +g25268 +S'Amy Taylor Dickson (Mrs. John Dickson)' +p101009 +sg25270 +S'John Neagle' +p101010 +sg25273 +S'oil on canvas' +p101011 +sg25275 +S'c. 1835' +p101012 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000170.jpg' +p101013 +sg25267 +g27 +sa(dp101014 +g25268 +S'Thomas W. Dyott' +p101015 +sg25270 +S'John Neagle' +p101016 +sg25273 +S'oil on canvas' +p101017 +sg25275 +S'c. 1836' +p101018 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000171.jpg' +p101019 +sg25267 +g27 +sa(dp101020 +g25273 +S'overall: 76.2 x 63.8 cm (30 x 25 1/8 in.)\r\nframed: 95.9 x 84.5 x 7.6 cm (37 3/4 x 33 1/4 x 3 in.)' +p101021 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p101022 +sg25268 +S'Ann Crook Dyer Rudman (Mrs. William Crook Rudman, Sr.)' +p101023 +sg25270 +S'American 19th Century' +p101024 +sa(dp101025 +g25268 +S'William Crook Rudman, Jr.' +p101026 +sg25270 +S'American 19th Century' +p101027 +sg25273 +S'overall: 76.4 x 64 cm (30 1/16 x 25 3/16 in.)\r\nframed: 90.2 x 80 x 7.3 cm (35 1/2 x 31 1/2 x 2 7/8 in.)' +p101028 +sg25275 +S'\noil on canvas' +p101029 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c620.jpg' +p101030 +sg25267 +g27 +sa(dp101031 +g25268 +S'The Reverend John Albert Ryan' +p101032 +sg25270 +S'John Neagle' +p101033 +sg25273 +S'oil on canvas' +p101034 +sg25275 +S'1825/1829' +p101035 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000172.jpg' +p101036 +sg25267 +g27 +sa(dp101037 +g25268 +S'Saint George and the Dragon' +p101038 +sg25270 +S'Artist Information (' +p101039 +sg25273 +S'(artist)' +p101040 +sg25275 +S'\n' +p101041 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cce3.jpg' +p101042 +sg25267 +g27 +sa(dp101043 +g25268 +S'Portrait of a Lady' +p101044 +sg25270 +S'John Neagle' +p101045 +sg25273 +S', c. 1825/1830' +p101046 +sg25275 +S'\n' +p101047 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c619.jpg' +p101048 +sg25267 +g27 +sa(dp101049 +g25273 +S'oil on canvas' +p101050 +sg25267 +g27 +sg25275 +S'c. 1770/1785' +p101051 +sg25268 +S'Portrait of a Gentleman' +p101052 +sg25270 +S'British 18th Century' +p101053 +sa(dp101054 +g25273 +S'overall: 76.2 x 63.5 cm (30 x 25 in.)\r\nframed: 98 x 83.2 x 8.9 cm (38 9/16 x 32 3/4 x 3 1/2 in.)' +p101055 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p101056 +sg25268 +S'Portrait of a Man' +p101057 +sg25270 +S'American 19th Century' +p101058 +sa(dp101059 +g25268 +S'Richardson Stuart' +p101060 +sg25270 +S'Rembrandt Peale' +p101061 +sg25273 +S'oil on canvas' +p101062 +sg25275 +S'c. 1815' +p101063 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001a8.jpg' +p101064 +sg25267 +g27 +sa(dp101065 +g25273 +S'oil on canvas' +p101066 +sg25267 +g27 +sg25275 +S'c. 1702/1720' +p101067 +sg25268 +S'Portrait of a Gentleman' +p101068 +sg25270 +S'British 18th Century' +p101069 +sa(dp101070 +g25268 +S'Portrait of a Gentleman' +p101071 +sg25270 +S'British 18th Century' +p101072 +sg25273 +S'oil on canvas' +p101073 +sg25275 +S'c. 1710/1730' +p101074 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004ee.jpg' +p101075 +sg25267 +g27 +sa(dp101076 +g25268 +S'Portrait of a Gentleman' +p101077 +sg25270 +S'British 18th Century' +p101078 +sg25273 +S'oil on canvas' +p101079 +sg25275 +S'c. 1720/1740' +p101080 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f01.jpg' +p101081 +sg25267 +g27 +sa(dp101082 +g25268 +S'General William Smallwood' +p101083 +sg25270 +S'Robert Edge Pine' +p101084 +sg25273 +S'oil on canvas' +p101085 +sg25275 +S'1785/1788' +p101086 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001bf.jpg' +p101087 +sg25267 +g27 +sa(dp101088 +g25273 +S'overall: 127.3 x 101.3 cm (50 1/8 x 39 7/8 in.)\r\nframed: 144.8 x 119.4 x 5.4 cm (57 x 47 x 2 1/8 in.)' +p101089 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p101090 +sg25268 +S'Portrait of a Man' +p101091 +sg25270 +S'Unknown 18th Century' +p101092 +sa(dp101093 +g25273 +S'overall: 55.5 x 48 cm (21 7/8 x 18 7/8 in.)\r\nframed: 71.4 x 63.5 x 4.1 cm (28 1/8 x 25 x 1 5/8 in.)' +p101094 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p101095 +sg25268 +S'Portrait of a Gentleman' +p101096 +sg25270 +S'British 17th Century' +p101097 +sa(dp101098 +g25268 +S'The Crucifixion' +p101099 +sg25270 +S'Artist Information (' +p101100 +sg25273 +S'Flemish, active c. 1480/1500' +p101101 +sg25275 +S'(artist after)' +p101102 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cce4.jpg' +p101103 +sg25267 +g27 +sa(dp101104 +g25273 +S'overall: 76.2 x 63.5 cm (30 x 25 in.)\r\nframed: 88.9 x 76.2 x 8.8 cm (35 x 30 x 3 7/16 in.)' +p101105 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p101106 +sg25268 +S'Portrait of a Man' +p101107 +sg25270 +S'Dutch 18th Century' +p101108 +sa(dp101109 +g25273 +S'overall: 74 x 61.3 cm (29 1/8 x 24 1/8 in.)\r\nframed: 90.5 x 78.1 x 5.1 cm (35 5/8 x 30 3/4 x 2 in.)' +p101110 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p101111 +sg25268 +S'Francis Garden of Troup, Scotland (?)' +p101112 +sg25270 +S'Scottish 18th Century' +p101113 +sa(dp101114 +g25273 +S'overall: 76.2 x 63.5 cm (30 x 25 in.)\r\nframed: 101 x 88.9 x 7 cm (39 3/4 x 35 x 2 3/4 in.)' +p101115 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p101116 +sg25268 +S'Portrait of a Gentleman' +p101117 +sg25270 +S'British 18th Century' +p101118 +sa(dp101119 +g25268 +S'Portrait of a Lady' +p101120 +sg25270 +S'Maria Verelst' +p101121 +sg25273 +S'oil on canvas' +p101122 +sg25275 +S'c. 1715/1730, perhaps close to 1725' +p101123 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e92.jpg' +p101124 +sg25267 +g27 +sa(dp101125 +g25268 +S'Frances Ludlum Morris (Mrs. Robert Morris) (?)' +p101126 +sg25270 +S'Frederick R. Spencer' +p101127 +sg25273 +S'oil on canvas' +p101128 +sg25275 +S'1838' +p101129 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000220.jpg' +p101130 +sg25267 +g27 +sa(dp101131 +g25273 +S'overall: 36.2 x 30.6 cm (14 1/4 x 12 1/16 in.)\r\nframed: 48.9 x 44.5 x 6 cm (19 1/4 x 17 1/2 x 2 3/8 in.)' +p101132 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p101133 +sg25268 +S'Portrait of a Man' +p101134 +sg25270 +S'American 19th Century' +p101135 +sa(dp101136 +g25268 +S'Portrait of a Man' +p101137 +sg25270 +S'Dutch 17th Century' +p101138 +sg25273 +S'overall: 54.6 x 41.9 cm (21 1/2 x 16 1/2 in.)\r\nframed: 72.1 x 60.3 x 6.4 cm (28 3/8 x 23 3/4 x 2 1/2 in.)' +p101139 +sg25275 +S'\noil on canvas' +p101140 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a000571d.jpg' +p101141 +sg25267 +g27 +sa(dp101142 +g25268 +S'Portrait of a Man' +p101143 +sg25270 +S'French 17th Century' +p101144 +sg25273 +S'overall: 58.4 x 47 cm (23 x 18 1/2 in.)\r\nframed: 71.8 x 59.7 x 3.5 cm (28 1/4 x 23 1/2 x 1 3/8 in.)' +p101145 +sg25275 +S'\noil on canvas' +p101146 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005aa7.jpg' +p101147 +sg25267 +g27 +sa(dp101148 +g25268 +S'Portrait of a Man' +p101149 +sg25270 +S'Unknown 18th Century' +p101150 +sg25273 +S'overall: 65.4 x 91.4 cm (25 3/4 x 36 in.)\r\nframed: 74.9 x 66 x 5.1 cm (29 1/2 x 26 x 2 in.)' +p101151 +sg25275 +S'\noil on canvas' +p101152 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c611.jpg' +p101153 +sg25267 +g27 +sa(dp101154 +g25268 +S'Elizabeth, Countess of Effingham' +p101155 +sg25270 +S'Benjamin West' +p101156 +sg25273 +S'oil on canvas' +p101157 +sg25275 +S'c. 1797' +p101158 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d46.jpg' +p101159 +sg25267 +g27 +sa(dp101160 +g25268 +S'Coat of Arms with a Lion and Unicorn' +p101161 +sg25270 +S'Master hw' +p101162 +sg25273 +S'engraving' +p101163 +sg25275 +S'c. 1480/1490' +p101164 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a454.jpg' +p101165 +sg25267 +g27 +sa(dp101166 +g25273 +S'overall: 75.9 x 63.9 cm (29 7/8 x 25 3/16 in.)\r\nframed: 101 x 87.6 x 6.4 cm (39 3/4 x 34 1/2 x 2 1/2 in.)' +p101167 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p101168 +sg25268 +S'The Hon. Sir Francis Burton Conyngham' +p101169 +sg25270 +S'British 18th Century' +p101170 +sa(dp101171 +g25268 +S'John Stevens (?)' +p101172 +sg25270 +S'John Wollaston' +p101173 +sg25273 +S'oil on canvas' +p101174 +sg25275 +S'c. 1749-1752' +p101175 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002a6.jpg' +p101176 +sg25267 +g27 +sa(dp101177 +g25268 +S'Charlotte Morton Dexter (Mrs. Andrew Dexter)' +p101178 +sg25270 +S'Artist Information (' +p101179 +sg25273 +S'(painter)' +p101180 +sg25275 +S'\n' +p101181 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000276.jpg' +p101182 +sg25267 +g27 +sa(dp101183 +g25268 +S'Unidentified British Navy Officer' +p101184 +sg25270 +S'John Wollaston' +p101185 +sg25273 +S'oil on canvas' +p101186 +sg25275 +S'c. 1745' +p101187 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002a7.jpg' +p101188 +sg25267 +g27 +sa(dp101189 +g25268 +S'William Seton' +p101190 +sg25270 +S'Artist Information (' +p101191 +sg25273 +S'American, 1755 - 1828' +p101192 +sg25275 +S'(artist after)' +p101193 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000246.jpg' +p101194 +sg25267 +g27 +sa(dp101195 +g25273 +S'American, 1755 - 1828' +p101196 +sg25267 +g27 +sg25275 +S'(artist after)' +p101197 +sg25268 +S'James Lloyd' +p101198 +sg25270 +S'Artist Information (' +p101199 +sa(dp101200 +g25268 +S'Thomas Alston' +p101201 +sg25270 +S'Thomas Sully' +p101202 +sg25273 +S'oil on canvas' +p101203 +sg25275 +S'1826' +p101204 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000264.jpg' +p101205 +sg25267 +g27 +sa(dp101206 +g25273 +S'overall: 44.5 x 35.6 cm (17 1/2 x 14 in.)\r\nframed: 59.1 x 49.2 x 3.8 cm (23 1/4 x 19 3/8 x 1 1/2 in.)' +p101207 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p101208 +sg25268 +S'Portrait of a Man' +p101209 +sg25270 +S'American 19th Century' +p101210 +sa(dp101211 +g25268 +S'Julianna Hazlehurst' +p101212 +sg25270 +S'Jacob Eichholtz' +p101213 +sg25273 +S'oil on canvas' +p101214 +sg25275 +S'c. 1820' +p101215 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000009d.jpg' +p101216 +sg25267 +g27 +sa(dp101217 +g25268 +S'John Philip Kemble' +p101218 +sg25270 +S'Artist Information (' +p101219 +sg25273 +S'(artist after)' +p101220 +sg25275 +S'\n' +p101221 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000266.jpg' +p101222 +sg25267 +g27 +sa(dp101223 +g25268 +S'Saint Anthony' +p101224 +sg25270 +S'Master FVB' +p101225 +sg25273 +S'engraving' +p101226 +sg25275 +S'c. 1490/1500' +p101227 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccdd.jpg' +p101228 +sg25267 +g27 +sa(dp101229 +g25268 +S'Portrait of a Gentleman' +p101230 +sg25270 +S'Joseph Wright' +p101231 +sg25273 +S'oil on canvas' +p101232 +sg25275 +S'c. 1760' +p101233 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f8f.jpg' +p101234 +sg25267 +g27 +sa(dp101235 +g25273 +S'overall: 71.8 x 60.3 cm (28 1/4 x 23 3/4 in.)\r\nframed: 87 x 78.1 x 9.2 cm (34 1/4 x 30 3/4 x 3 5/8 in.)' +p101236 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p101237 +sg25268 +S'Portrait of a Man' +p101238 +sg25270 +S'Unknown 18th Century' +p101239 +sa(dp101240 +g25268 +S'Robert Devereux, 2nd Earl of Essex' +p101241 +sg25270 +S'Artist Information (' +p101242 +sg25273 +S'Flemish, c. 1561/1562 - 1636' +p101243 +sg25275 +S'(related artist)' +p101244 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000073b.jpg' +p101245 +sg25267 +g27 +sa(dp101246 +g25268 +S'Portrait of an Old Man' +p101247 +sg25270 +S'Alphonse Legros' +p101248 +sg25273 +S'oil on canvas' +p101249 +sg25275 +S'unknown date\n' +p101250 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005ea1.jpg' +p101251 +sg25267 +g27 +sa(dp101252 +g25268 +S'Head of a Young Girl (Tete de jeune fille)' +p101253 +sg25270 +S'Alphonse Legros' +p101254 +sg25273 +S'drypoint' +p101255 +sg25275 +S'unknown date\n' +p101256 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009905.jpg' +p101257 +sg25267 +g27 +sa(dp101258 +g25268 +S'Spanish Singers (Les chantres espagnols)' +p101259 +sg25270 +S'Alphonse Legros' +p101260 +sg25273 +S'etching' +p101261 +sg25275 +S'1865' +p101262 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b40.jpg' +p101263 +sg25267 +g27 +sa(dp101264 +g25268 +S'Saint Peter and Saint Paul in the Door of M. Richard (St. Pierre et St. Paul a la porte de M. Richard' +p101265 +sg25270 +S'Alphonse Legros' +p101266 +sg25273 +S'etching and drypoint?' +p101267 +sg25275 +S'unknown date\n' +p101268 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098f3.jpg' +p101269 +sg25267 +g27 +sa(dp101270 +g25268 +S'G.F. Watts, R.A.' +p101271 +sg25270 +S'Alphonse Legros' +p101272 +sg25273 +S'drypoint' +p101273 +sg25275 +S'unknown date\n' +p101274 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b75.jpg' +p101275 +sg25267 +g27 +sa(dp101276 +g25268 +S'Milkmaid of Boulogne, 3rd plate (Laitiere a Boulogne)' +p101277 +sg25270 +S'Alphonse Legros' +p101278 +sg25273 +S'etching and drypoint?' +p101279 +sg25275 +S'unknown date\n' +p101280 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098dc.jpg' +p101281 +sg25267 +g27 +sa(dp101282 +g25268 +S'Farm on a Hillside in Sunlight (La ferme du coteau; Effet de soleil sur le coteau)' +p101283 +sg25270 +S'Alphonse Legros' +p101284 +sg25273 +S'drypoint' +p101285 +sg25275 +S'unknown date\n' +p101286 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098ea.jpg' +p101287 +sg25267 +g27 +sa(dp101288 +g25268 +S'The Stoning of Saint Stephen' +p101289 +sg25270 +S'Artist Information (' +p101290 +sg25273 +S'(artist after)' +p101291 +sg25275 +S'\n' +p101292 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3dc.jpg' +p101293 +sg25267 +g27 +sa(dp101294 +g25268 +S'Marsh (Les marais)' +p101295 +sg25270 +S'Alphonse Legros' +p101296 +sg25273 +S'drypoint' +p101297 +sg25275 +S'unknown date\n' +p101298 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bc7.jpg' +p101299 +sg25267 +g27 +sa(dp101300 +g25268 +S'Paralytic (Le paralytique)' +p101301 +sg25270 +S'Alphonse Legros' +p101302 +sg25273 +S'etching and drypoint?' +p101303 +sg25275 +S'unknown date\n' +p101304 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009ba5.jpg' +p101305 +sg25267 +g27 +sa(dp101306 +g25268 +S"Archeologist (L'archeologue)" +p101307 +sg25270 +S'Alphonse Legros' +p101308 +sg25273 +S'etching and drypoint' +p101309 +sg25275 +S'unknown date\n' +p101310 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009ba9.jpg' +p101311 +sg25267 +g27 +sa(dp101312 +g25268 +S"Birch Trees: Water's Edge Seen in Morning Light (Les bouleaux: Bord de l'eau, effet du matin" +p101313 +sg25270 +S'Alphonse Legros' +p101314 +sg25273 +S'etching and drypoint?' +p101315 +sg25275 +S'unknown date\n' +p101316 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009ba6.jpg' +p101317 +sg25267 +g27 +sa(dp101318 +g25268 +S'Return to the Cottage (Le retour a la chaumiere)' +p101319 +sg25270 +S'Alphonse Legros' +p101320 +sg25273 +S'drypoint' +p101321 +sg25275 +S'unknown date\n' +p101322 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009baa.jpg' +p101323 +sg25267 +g27 +sa(dp101324 +g25268 +S'Roman Ruin (Ruine romaine)' +p101325 +sg25270 +S'Alphonse Legros' +p101326 +sg25273 +S'etching and drypoint' +p101327 +sg25275 +S'unknown date\n' +p101328 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bd0.jpg' +p101329 +sg25267 +g27 +sa(dp101330 +g25268 +S'Meadow in Sunshine (Le pre ensoleille)' +p101331 +sg25270 +S'Alphonse Legros' +p101332 +sg25273 +S'drypoint and etching (?)' +p101333 +sg25275 +S'unknown date\n' +p101334 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bde.jpg' +p101335 +sg25267 +g27 +sa(dp101336 +g25268 +S'Memories of Fountainebleau in the Rain (Souvenir de Fountainebleau (Effet de pluie))' +p101337 +sg25270 +S'Alphonse Legros' +p101338 +sg25273 +S'drypoint' +p101339 +sg25275 +S'unknown date\n' +p101340 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bda.jpg' +p101341 +sg25267 +g27 +sa(dp101342 +g25268 +S'Sunrise, Woods of Clamard (Lever du soleil, bois de Clamard)' +p101343 +sg25270 +S'Alphonse Legros' +p101344 +sg25273 +S'drypoint and etching?' +p101345 +sg25275 +S'unknown date\n' +p101346 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bed.jpg' +p101347 +sg25267 +g27 +sa(dp101348 +g25268 +S'Ruins of a Monastery (Les ruines du monastere)' +p101349 +sg25270 +S'Alphonse Legros' +p101350 +sg25273 +S'drypoint and etching' +p101351 +sg25275 +S'unknown date\n' +p101352 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bf0.jpg' +p101353 +sg25267 +g27 +sa(dp101354 +g25273 +S'etching on wove paper' +p101355 +sg25267 +g27 +sg25275 +S'1911' +p101356 +sg25268 +S'La Cite Paris' +p101357 +sg25270 +S'Charles K. Gleeson' +p101358 +sa(dp101359 +g25268 +S'Plain (La plaine)' +p101360 +sg25270 +S'Alphonse Legros' +p101361 +sg25273 +S'etching and drypoint' +p101362 +sg25275 +S'unknown date\n' +p101363 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bee.jpg' +p101364 +sg25267 +g27 +sa(dp101365 +g25268 +S'Landscape (Paysage)' +p101366 +sg25270 +S'Alphonse Legros' +p101367 +sg25273 +S'etching' +p101368 +sg25275 +S'unknown date\n' +p101369 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c14.jpg' +p101370 +sg25267 +g27 +sa(dp101371 +g25268 +S'Landscape (Paysage)' +p101372 +sg25270 +S'Alphonse Legros' +p101373 +sg25273 +S'etching and drypoint' +p101374 +sg25275 +S'unknown date\n' +p101375 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c15.jpg' +p101376 +sg25267 +g27 +sa(dp101377 +g25268 +S'Mountain Landscape with two Figures at the Right' +p101378 +sg25270 +S'Alphonse Legros' +p101379 +sg25273 +S'watercolor over pen and brown ink' +p101380 +sg25275 +S'1905' +p101381 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f36.jpg' +p101382 +sg25267 +g27 +sa(dp101383 +g25268 +S'Near the Mill (Pres du moulin)' +p101384 +sg25270 +S'Alphonse Legros' +p101385 +sg25273 +S'etching and drypoint' +p101386 +sg25275 +S'unknown date\n' +p101387 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c0c.jpg' +p101388 +sg25267 +g27 +sa(dp101389 +g25268 +S'Return from the Plowing (Le retour de labourage)' +p101390 +sg25270 +S'Alphonse Legros' +p101391 +sg25273 +S'etching and drypoint' +p101392 +sg25275 +S'unknown date\n' +p101393 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c1e.jpg' +p101394 +sg25267 +g27 +sa(dp101395 +g25268 +S"Study of the Head of a Man Reading (Etude de tete d'homme lisant)" +p101396 +sg25270 +S'Alphonse Legros' +p101397 +sg25273 +S'etching and drypoint?' +p101398 +sg25275 +S'unknown date\n' +p101399 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c3f.jpg' +p101400 +sg25267 +g27 +sa(dp101401 +g25268 +S'Victor Hugo, 2nd plate' +p101402 +sg25270 +S'Alphonse Legros' +p101403 +sg25273 +S'etching and aquatint' +p101404 +sg25275 +S'unknown date\n' +p101405 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c44.jpg' +p101406 +sg25267 +g27 +sa(dp101407 +g25268 +S'Convalescent (Le convalescent)' +p101408 +sg25270 +S'Alphonse Legros' +p101409 +sg25273 +S'drypoint and etching?' +p101410 +sg25275 +S'unknown date\n' +p101411 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c50.jpg' +p101412 +sg25267 +g27 +sa(dp101413 +g25268 +S'Landscape: Morning Mist (Paysage: Brumes du matin)' +p101414 +sg25270 +S'Alphonse Legros' +p101415 +sg25273 +S'lithograph' +p101416 +sg25275 +S'unknown date\n' +p101417 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d57.jpg' +p101418 +sg25267 +g27 +sa(dp101419 +g25268 +S'Little Thames' +p101420 +sg25270 +S'Clifford Isaac Addams' +p101421 +sg25273 +g27 +sg25275 +S'unknown date\n' +p101422 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f2/a000f2d7.jpg' +p101423 +sg25267 +g27 +sa(dp101424 +g25268 +S'Self-Portrait, 10th plate' +p101425 +sg25270 +S'Alphonse Legros' +p101426 +sg25273 +S'lithograph in red' +p101427 +sg25275 +S'1905' +p101428 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d5f.jpg' +p101429 +sg25267 +g27 +sa(dp101430 +g25268 +S'Self-Portrait, 13th plate' +p101431 +sg25270 +S'Alphonse Legros' +p101432 +sg25273 +S'etching retouched with crayon' +p101433 +sg25275 +S'1906' +p101434 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d64.jpg' +p101435 +sg25267 +g27 +sa(dp101436 +g25268 +S'Self-Portrait, 13th plate' +p101437 +sg25270 +S'Alphonse Legros' +p101438 +sg25273 +S'etching retouched in ink and crayon' +p101439 +sg25275 +S'1906' +p101440 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d63.jpg' +p101441 +sg25267 +g27 +sa(dp101442 +g25268 +S'Agnes Gordon Higginson Fuller (Mrs. George Fuller)' +p101443 +sg25270 +S'George Fuller' +p101444 +sg25273 +S'oil on canvas' +p101445 +sg25275 +S'c. 1877' +p101446 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000c4.jpg' +p101447 +sg25267 +g27 +sa(dp101448 +g25268 +S'Two Ladles' +p101449 +sg25270 +S'Heinrich Aldegrever' +p101450 +sg25273 +S'engraving' +p101451 +sg25275 +S'1539' +p101452 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6d4.jpg' +p101453 +sg25267 +g27 +sa(dp101454 +g25273 +S'pen and black ink' +p101455 +sg25267 +g27 +sg25275 +S'unknown date\n' +p101456 +sg25268 +S'Reclining Nude' +p101457 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101458 +sa(dp101459 +g25273 +S'lithograph' +p101460 +sg25267 +g27 +sg25275 +S'unknown date\n' +p101461 +sg25268 +S'Trees' +p101462 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101463 +sa(dp101464 +g25273 +S'etching' +p101465 +sg25267 +g27 +sg25275 +S'1927' +p101466 +sg25268 +S'The Bay at Saint-Tropez (Le Golfe de Saint-Tropez)' +p101467 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101468 +sa(dp101469 +g25273 +S'etching' +p101470 +sg25267 +g27 +sg25275 +S'1934' +p101471 +sg25268 +S'Mediterranee' +p101472 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101473 +sa(dp101474 +g25273 +S'etching' +p101475 +sg25267 +g27 +sg25275 +S'1927' +p101476 +sg25268 +S'The Bay at Saint-Tropez (Le Golfe de Saint-Tropez)' +p101477 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101478 +sa(dp101479 +g25268 +S'Demolition' +p101480 +sg25270 +S'Clifford Isaac Addams' +p101481 +sg25273 +g27 +sg25275 +S'unknown date\n' +p101482 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f2/a000f2d6.jpg' +p101483 +sg25267 +g27 +sa(dp101484 +g25273 +S'etching' +p101485 +sg25267 +g27 +sg25275 +S'1926' +p101486 +sg25268 +S"La Ferme a l'aire l'apres-midi" +p101487 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101488 +sa(dp101489 +g25273 +S'etching' +p101490 +sg25267 +g27 +sg25275 +S'1930' +p101491 +sg25268 +S'Saint-Tropez Landscape (Paysage Tropezien)' +p101492 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101493 +sa(dp101494 +g25273 +S'etching' +p101495 +sg25267 +g27 +sg25275 +S'1927' +p101496 +sg25268 +S'Harbor, Saint-Tropez (Saint-Tropez, le port)' +p101497 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101498 +sa(dp101499 +g25273 +S'etching' +p101500 +sg25267 +g27 +sg25275 +S'1927' +p101501 +sg25268 +S'Harbor, Saint-Tropez (Saint-Tropez, le port)' +p101502 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101503 +sa(dp101504 +g25273 +S'etching' +p101505 +sg25267 +g27 +sg25275 +S'1922' +p101506 +sg25268 +S'Beginning of Round (Debut de round)' +p101507 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101508 +sa(dp101509 +g25273 +S'etching' +p101510 +sg25267 +g27 +sg25275 +S'1922' +p101511 +sg25268 +S'Knock Out, Second Version (Le K.O. du noir (seconde version))' +p101512 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101513 +sa(dp101514 +g25273 +S'etching' +p101515 +sg25267 +g27 +sg25275 +S'1923' +p101516 +sg25268 +S"The Church at Villiers (L'Eglise de Villiers)" +p101517 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101518 +sa(dp101519 +g25273 +S'etching' +p101520 +sg25267 +g27 +sg25275 +S'1923' +p101521 +sg25268 +S"The Church at Villiers through the Trees (L'Eglise de Villiers dans les arbres)" +p101522 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101523 +sa(dp101524 +g25273 +S'drypoint' +p101525 +sg25267 +g27 +sg25275 +S'1923' +p101526 +sg25268 +S'The Chapel at Crecy, Large Plate (La Chapelle de Crecy (grande planche))' +p101527 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101528 +sa(dp101529 +g25273 +S'etching' +p101530 +sg25267 +g27 +sg25275 +S'1930' +p101531 +sg25268 +S'River Bank (La Berge)' +p101532 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101533 +sa(dp101534 +g25268 +S'Harbour Scene - Venice' +p101535 +sg25270 +S'Clifford Isaac Addams' +p101536 +sg25273 +S'drypoint' +p101537 +sg25275 +S'unknown date\n' +p101538 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fb/a000fb59.jpg' +p101539 +sg25267 +g27 +sa(dp101540 +g25273 +S'etching' +p101541 +sg25267 +g27 +sg25275 +S'1924' +p101542 +sg25268 +S'Model Kneeling (Le Modele a genoux ou nu a genoux)' +p101543 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101544 +sa(dp101545 +g25273 +S'etching' +p101546 +sg25267 +g27 +sg25275 +S'1924' +p101547 +sg25268 +S'The Great Oak at Chaville (Le gros chene a Chaville)' +p101548 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101549 +sa(dp101550 +g25273 +S'etching' +p101551 +sg25267 +g27 +sg25275 +S'1923' +p101552 +sg25268 +S'Fernande with Arms Crossed, Large Plate (Fernande les mains croisees (grande planche)' +p101553 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101554 +sa(dp101555 +g25273 +S'etching' +p101556 +sg25267 +g27 +sg25275 +S'1927' +p101557 +sg25268 +S'Sunbather (La Cure de soleil)' +p101558 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101559 +sa(dp101560 +g25273 +S'drypoint' +p101561 +sg25267 +g27 +sg25275 +S'1927' +p101562 +sg25268 +S'Woman with Slipper (La Femme a la mule)' +p101563 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101564 +sa(dp101565 +g25273 +S'etching' +p101566 +sg25267 +g27 +sg25275 +S'1930' +p101567 +sg25268 +S"The Church of Megeve (L'Eglise de Megeve)" +p101568 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101569 +sa(dp101570 +g25273 +S'etching' +p101571 +sg25267 +g27 +sg25275 +S'1934' +p101572 +sg25268 +S'Plage de la Bouillabaisse' +p101573 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101574 +sa(dp101575 +g25273 +S'etching' +p101576 +sg25267 +g27 +sg25275 +S'1927' +p101577 +sg25268 +S'Suzanne on the Beach (Suzanne sur la plage)' +p101578 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101579 +sa(dp101580 +g25273 +S'etching (and drypoint?)' +p101581 +sg25267 +g27 +sg25275 +S'1930' +p101582 +sg25268 +S'Grock and his Partner (Grock et son partner)' +p101583 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101584 +sa(dp101585 +g25273 +S'etching' +p101586 +sg25267 +g27 +sg25275 +S'1929' +p101587 +sg25268 +S'Boulevard Saint-Denis' +p101588 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101589 +sa(dp101590 +g25268 +S'Limehouse' +p101591 +sg25270 +S'Clifford Isaac Addams' +p101592 +sg25273 +S'drypoint' +p101593 +sg25275 +S'unknown date\n' +p101594 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fb/a000fb58.jpg' +p101595 +sg25267 +g27 +sa(dp101596 +g25273 +S'etching' +p101597 +sg25267 +g27 +sg25275 +S'1929' +p101598 +sg25268 +S'Hotel Borgne' +p101599 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101600 +sa(dp101601 +g25273 +S'etching (zinc)' +p101602 +sg25267 +g27 +sg25275 +S'1929' +p101603 +sg25268 +S'Young Woman, Boulevard Sebastopol (Fille, Boulevard Sebastopol)' +p101604 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101605 +sa(dp101606 +g25273 +S'etching' +p101607 +sg25267 +g27 +sg25275 +S'1929' +p101608 +sg25268 +S'Maryse' +p101609 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101610 +sa(dp101611 +g25273 +S'etching and roulette work' +p101612 +sg25267 +g27 +sg25275 +S'c. 1927/1929' +p101613 +sg25268 +S'The Terrace of the Cafe, Bouvelard Sebastopol(Boulevard Sebastopol: la terrasse du ca' +p101614 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101615 +sa(dp101616 +g25273 +S'etching' +p101617 +sg25267 +g27 +sg25275 +S'c. 1927/1929' +p101618 +sg25268 +S"Berthe at the Hospital, The Letter (Berthe a l'hopital: la lettre)" +p101619 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101620 +sa(dp101621 +g25273 +S'etching' +p101622 +sg25267 +g27 +sg25275 +S'c. 1927/1929' +p101623 +sg25268 +S"Sebasto's Bar (Le Bar du Sebasto)" +p101624 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101625 +sa(dp101626 +g25273 +S'etching and roulette work' +p101627 +sg25267 +g27 +sg25275 +S'c. 1927/1929' +p101628 +sg25268 +S'Prostitutes on the Sidewalk, Boulevard Sebastopol (Filles publiques sur le trottoir,' +p101629 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101630 +sa(dp101631 +g25273 +S'etching' +p101632 +sg25267 +g27 +sg25275 +S'1930' +p101633 +sg25268 +S'Before the Release, No.2 (Avant la detente. II)' +p101634 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101635 +sa(dp101636 +g25273 +S'etching' +p101637 +sg25267 +g27 +sg25275 +S'1930' +p101638 +sg25268 +S'Start of 100 Meter Race (Le Depart des 100 metres)' +p101639 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101640 +sa(dp101641 +g25273 +S'pen and black ink with gray wash' +p101642 +sg25267 +g27 +sg25275 +S'unknown date\n' +p101643 +sg25268 +S'Taking a Count of Nine' +p101644 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101645 +sa(dp101646 +g25268 +S'Westminster' +p101647 +sg25270 +S'Clifford Isaac Addams' +p101648 +sg25273 +S'etching' +p101649 +sg25275 +S'unknown date\n' +p101650 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fb/a000fb57.jpg' +p101651 +sg25267 +g27 +sa(dp101652 +g25273 +S'pen and black ink with gray wash' +p101653 +sg25267 +g27 +sg25275 +S'unknown date\n' +p101654 +sg25268 +S'Nurmi Running the 1500 Meter' +p101655 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101656 +sa(dp101657 +g25273 +S'pen and black ink with gray and black wash' +p101658 +sg25267 +g27 +sg25275 +S'unknown date\n' +p101659 +sg25268 +S'Bather Fixing Her Sandal' +p101660 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101661 +sa(dp101662 +g25273 +S'etching' +p101663 +sg25267 +g27 +sg25275 +S'1922' +p101664 +sg25268 +S'Spectators (Les Spectateurs)' +p101665 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101666 +sa(dp101667 +g25273 +S'etching' +p101668 +sg25267 +g27 +sg25275 +S'1923' +p101669 +sg25268 +S'Fernande with Arms Crossed, Second Plate (Fernande les mains croisees (planche moyenn' +p101670 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101671 +sa(dp101672 +g25273 +S'etching' +p101673 +sg25267 +g27 +sg25275 +S'1923' +p101674 +sg25268 +S'Fernande with Arms Crossed, Second Plate (Fernande les mains croisees (planche moyenn' +p101675 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101676 +sa(dp101677 +g25273 +S'etching with drypoint' +p101678 +sg25267 +g27 +sg25275 +S'1921' +p101679 +sg25268 +S'Jules Romains' +p101680 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101681 +sa(dp101682 +g25273 +S'soft-ground etching retouched with drypoint' +p101683 +sg25267 +g27 +sg25275 +S'1921' +p101684 +sg25268 +S'Jules Romains' +p101685 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101686 +sa(dp101687 +g25273 +S'drypoint' +p101688 +sg25267 +g27 +sg25275 +S'1921' +p101689 +sg25268 +S'Les Demoiselles de la Marne' +p101690 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101691 +sa(dp101692 +g25273 +S'drypoint' +p101693 +sg25267 +g27 +sg25275 +S'1921' +p101694 +sg25268 +S'Les Demoiselles de la Marne' +p101695 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101696 +sa(dp101697 +g25273 +S'drypoint' +p101698 +sg25267 +g27 +sg25275 +S'1921' +p101699 +sg25268 +S'Les Demoiselles de la Marne' +p101700 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101701 +sa(dp101702 +g25268 +S"St. Martin's Lane" +p101703 +sg25270 +S'Clifford Isaac Addams' +p101704 +sg25273 +S'etching' +p101705 +sg25275 +S'unknown date\n' +p101706 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fb/a000fb53.jpg' +p101707 +sg25267 +g27 +sa(dp101708 +g25273 +S'etching//one of two extra plates (loose) included with the book 1948.3.48' +p101709 +sg25267 +g27 +sg25275 +S'1926' +p101710 +sg25268 +S'Illustration for "Les vits imaginaires"' +p101711 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101712 +sa(dp101713 +g25273 +S'etching//one of two extra plates (loose) included with the book 1948.3.48' +p101714 +sg25267 +g27 +sg25275 +S'1926' +p101715 +sg25268 +S'Illustration for "Les vits imaginaires"' +p101716 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101717 +sa(dp101718 +g25273 +S'(author)' +p101719 +sg25267 +g27 +sg25275 +S'\n' +p101720 +sg25268 +S'Les vits imaginaires' +p101721 +sg25270 +S'Artist Information (' +p101722 +sa(dp101723 +g25273 +S'etching' +p101724 +sg25267 +g27 +sg25275 +S'1923' +p101725 +sg25268 +S"The Church at Villiers (L'Eglise de Villiers)" +p101726 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101727 +sa(dp101728 +g25273 +S'etching' +p101729 +sg25267 +g27 +sg25275 +S'1923' +p101730 +sg25268 +S'Reclining Nude (Nu entendu)' +p101731 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101732 +sa(dp101733 +g25273 +S'etching and drypoint' +p101734 +sg25267 +g27 +sg25275 +S'1924' +p101735 +sg25268 +S'Female Nude with Journal (Femme nue au journal)' +p101736 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101737 +sa(dp101738 +g25273 +S'etching on green-gray paper' +p101739 +sg25267 +g27 +sg25275 +S'1924' +p101740 +sg25268 +S"The Apse of Notre Dame (L'Abside de Notre-Dame)" +p101741 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101742 +sa(dp101743 +g25273 +S'etching' +p101744 +sg25267 +g27 +sg25275 +S'1924' +p101745 +sg25268 +S"The Apse of Notre Dame (L'Abside de Notre-Dame)" +p101746 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101747 +sa(dp101748 +g25273 +S'etching and drypoint' +p101749 +sg25267 +g27 +sg25275 +S'1924' +p101750 +sg25268 +S'The Pont Marie (Le Pont Marie)' +p101751 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101752 +sa(dp101753 +g25273 +S'drypoint' +p101754 +sg25267 +g27 +sg25275 +S'1924' +p101755 +sg25268 +S'The Pont des Arts (Le Pont des Arts)' +p101756 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101757 +sa(dp101758 +g25268 +S'View of the River Rhine' +p101759 +sg25270 +S'Artist Information (' +p101760 +sg25273 +S'(artist after)' +p101761 +sg25275 +S'\n' +p101762 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d261.jpg' +p101763 +sg25267 +g27 +sa(dp101764 +g25273 +S'drypoint' +p101765 +sg25267 +g27 +sg25275 +S'1924' +p101766 +sg25268 +S'Les Tas de sable' +p101767 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101768 +sa(dp101769 +g25273 +S'etching' +p101770 +sg25267 +g27 +sg25275 +S'1924' +p101771 +sg25268 +S"Entrance to the Orangerie, Versailles (Large Plate) (Versailles, l'Entree de l'Orange" +p101772 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101773 +sa(dp101774 +g25273 +S'etching' +p101775 +sg25267 +g27 +sg25275 +S'1924' +p101776 +sg25268 +S"Entrance to the Orangerie, Versailles (Large Plate) (Versailles, l'Entree de l'Orange" +p101777 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101778 +sa(dp101779 +g25273 +S'etching' +p101780 +sg25267 +g27 +sg25275 +S'1924' +p101781 +sg25268 +S'Forest at Chaville (Bois de Chaville)' +p101782 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101783 +sa(dp101784 +g25273 +S'etching' +p101785 +sg25267 +g27 +sg25275 +S'1924' +p101786 +sg25268 +S"Crayfish Pond, Chaville (Chaville l'etang des ecrevisses)" +p101787 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101788 +sa(dp101789 +g25273 +S'etching' +p101790 +sg25267 +g27 +sg25275 +S'1924' +p101791 +sg25268 +S"Crayfish Pond, Chaville (Chaville l'etang des ecrevisses)" +p101792 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101793 +sa(dp101794 +g25273 +S'etching' +p101795 +sg25267 +g27 +sg25275 +S'1924' +p101796 +sg25268 +S'Model Kneeling (Le Modele a genoux ou nu a genoux)' +p101797 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101798 +sa(dp101799 +g25273 +S'etching' +p101800 +sg25267 +g27 +sg25275 +S'1924' +p101801 +sg25268 +S'Model Kneeling (Le Modele a genoux ou nu a genoux)' +p101802 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101803 +sa(dp101804 +g25273 +S'etching' +p101805 +sg25267 +g27 +sg25275 +S'1924' +p101806 +sg25268 +S'The Great Oak at Chaville (Le gros chene a Chaville)' +p101807 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101808 +sa(dp101809 +g25273 +S'etching' +p101810 +sg25267 +g27 +sg25275 +S'1924' +p101811 +sg25268 +S'The Great Oak at Chaville (Le gros chene a Chaville)' +p101812 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101813 +sa(dp101814 +g25268 +S'Venice - Bridge with Procession' +p101815 +sg25270 +S'Clifford Isaac Addams' +p101816 +sg25273 +S'etching' +p101817 +sg25275 +S'unknown date\n' +p101818 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f2/a000f2e3.jpg' +p101819 +sg25267 +g27 +sa(dp101820 +g25273 +S'etching' +p101821 +sg25267 +g27 +sg25275 +S'1924' +p101822 +sg25268 +S'Le Chene de Doisu a Chaville' +p101823 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101824 +sa(dp101825 +g25273 +S'etching' +p101826 +sg25267 +g27 +sg25275 +S'1923' +p101827 +sg25268 +S'Fernande with Arms Crossed, Large Plate (Fernande les mains croisees (grande planche)' +p101828 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101829 +sa(dp101830 +g25273 +S'etching' +p101831 +sg25267 +g27 +sg25275 +S'1923' +p101832 +sg25268 +S'Fernande with Arms Crossed, Large Plate (Fernande les mains croisees (grande planche)' +p101833 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101834 +sa(dp101835 +g25273 +S'etching' +p101836 +sg25267 +g27 +sg25275 +S'1923' +p101837 +sg25268 +S'Fernande with Arms Crossed, Large Plate (Fernande les mains croisees (grande planche)' +p101838 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101839 +sa(dp101840 +g25273 +S'etching' +p101841 +sg25267 +g27 +sg25275 +S'1924' +p101842 +sg25268 +S"Nude with Umbrella (Nu a l'ombrelle)" +p101843 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101844 +sa(dp101845 +g25273 +S'etching' +p101846 +sg25267 +g27 +sg25275 +S'1924' +p101847 +sg25268 +S"Nude with Umbrella (Nu a l'ombrelle)" +p101848 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101849 +sa(dp101850 +g25273 +S'etching' +p101851 +sg25267 +g27 +sg25275 +S'1924' +p101852 +sg25268 +S"Bernini's Statue (La Statue du Bernin)" +p101853 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101854 +sa(dp101855 +g25273 +S'etching' +p101856 +sg25267 +g27 +sg25275 +S'1924' +p101857 +sg25268 +S"Bernini's Statue (La Statue du Bernin)" +p101858 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101859 +sa(dp101860 +g25273 +S'etching' +p101861 +sg25267 +g27 +sg25275 +S'1924' +p101862 +sg25268 +S'The Grand Trianon, Versailles (Versailles, le Grand Trianon vu du canal)' +p101863 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101864 +sa(dp101865 +g25273 +S'etching' +p101866 +sg25267 +g27 +sg25275 +S'1924' +p101867 +sg25268 +S'Poplars, Versailles (Versailles, les grands peupliers)' +p101868 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101869 +sa(dp101870 +g25268 +S'The Creation of Eve' +p101871 +sg25270 +S'Heinrich Aldegrever' +p101872 +sg25273 +S'etching' +p101873 +sg25275 +S'1540' +p101874 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a697.jpg' +p101875 +sg25267 +g27 +sa(dp101876 +g25273 +S'etching (and drypoint?)' +p101877 +sg25267 +g27 +sg25275 +S'1924' +p101878 +sg25268 +S'Children in the Forest at Chaville (Bois de Chaville, les gosses)' +p101879 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101880 +sa(dp101881 +g25273 +S'etching' +p101882 +sg25267 +g27 +sg25275 +S'1924' +p101883 +sg25268 +S'Fair at Chaville (La Foire a Chaville)' +p101884 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101885 +sa(dp101886 +g25273 +S'etching' +p101887 +sg25267 +g27 +sg25275 +S'1924' +p101888 +sg25268 +S"Entrance to the Orangerie, Versailles (Small Plate) (Versailles, l'Entree de l'Orange" +p101889 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101890 +sa(dp101891 +g25273 +S'etching' +p101892 +sg25267 +g27 +sg25275 +S'1924' +p101893 +sg25268 +S"Leaning Tree, Chaville (Chaville, l'arbre penche)" +p101894 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101895 +sa(dp101896 +g25273 +S'etching' +p101897 +sg25267 +g27 +sg25275 +S'1923' +p101898 +sg25268 +S'Fernande with Arms Crossed, Small Plate (Fernande les mains croisees (petite planche)' +p101899 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101900 +sa(dp101901 +g25273 +S'etching' +p101902 +sg25267 +g27 +sg25275 +S'1925' +p101903 +sg25268 +S'The Hill of Sainte-Anne (La Colline de Sainte-Anne)' +p101904 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101905 +sa(dp101906 +g25273 +S'etching and drypoint' +p101907 +sg25267 +g27 +sg25275 +S'1925' +p101908 +sg25268 +S"Saint-Tropez, la ferme a l'aire (petite planche)" +p101909 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101910 +sa(dp101911 +g25273 +S'etching' +p101912 +sg25267 +g27 +sg25275 +S'1926' +p101913 +sg25268 +S"La Ferme a l'aire en fin d'apres-midi" +p101914 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101915 +sa(dp101916 +g25273 +S'etching' +p101917 +sg25267 +g27 +sg25275 +S'1926' +p101918 +sg25268 +S"La Ferme a l'aire en fin d'apres-midi" +p101919 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101920 +sa(dp101921 +g25273 +S'drypoint' +p101922 +sg25267 +g27 +sg25275 +S'1927' +p101923 +sg25268 +S'Woman with Slipper (La Femme a la mule)' +p101924 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101925 +sa(dp101926 +g25268 +S'God Forbids to Eat from the Tree' +p101927 +sg25270 +S'Heinrich Aldegrever' +p101928 +sg25273 +S'etching' +p101929 +sg25275 +S'1540' +p101930 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a694.jpg' +p101931 +sg25267 +g27 +sa(dp101932 +g25273 +S'etching' +p101933 +sg25267 +g27 +sg25275 +S'1934' +p101934 +sg25268 +S'Plage de la Bouillabaisse' +p101935 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101936 +sa(dp101937 +g25273 +S'etching and drypoint' +p101938 +sg25267 +g27 +sg25275 +S'1927' +p101939 +sg25268 +S'La Sortie de melee' +p101940 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101941 +sa(dp101942 +g25273 +S'etching' +p101943 +sg25267 +g27 +sg25275 +S'1922' +p101944 +sg25268 +S'Knock Out, First Version (Le K.O. du noir (premiere version))' +p101945 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101946 +sa(dp101947 +g25273 +S'drypoint' +p101948 +sg25267 +g27 +sg25275 +S'1923' +p101949 +sg25268 +S'Mill and Chapel (Le Moulin et la chapelle)' +p101950 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101951 +sa(dp101952 +g25273 +S'drypoint' +p101953 +sg25267 +g27 +sg25275 +S'1923' +p101954 +sg25268 +S'Springtime (Le Printemps)' +p101955 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101956 +sa(dp101957 +g25273 +S'drypoint' +p101958 +sg25267 +g27 +sg25275 +S'1923' +p101959 +sg25268 +S'Footbridge at Serbonne (La Passerelle de Serbonne)' +p101960 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101961 +sa(dp101962 +g25273 +S'drypoint' +p101963 +sg25267 +g27 +sg25275 +S'1923' +p101964 +sg25268 +S'The Mill at Serbonne (Le Moulin de Serbonne)' +p101965 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101966 +sa(dp101967 +g25273 +S'drypoint' +p101968 +sg25267 +g27 +sg25275 +S'1923' +p101969 +sg25268 +S'The Sluice at Serbonne (La Vanne a Serbonne)' +p101970 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101971 +sa(dp101972 +g25273 +S'drypoint' +p101973 +sg25267 +g27 +sg25275 +S'1923' +p101974 +sg25268 +S'Banks of the Morin (Berges du Morin)' +p101975 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101976 +sa(dp101977 +g25273 +S'drypoint' +p101978 +sg25267 +g27 +sg25275 +S'1923' +p101979 +sg25268 +S'Apple Trees in Bloom (Pommiers en fleurs)' +p101980 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101981 +sa(dp101982 +g25268 +S'The Temptation by the Snake' +p101983 +sg25270 +S'Heinrich Aldegrever' +p101984 +sg25273 +S'etching' +p101985 +sg25275 +S'1540' +p101986 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a693.jpg' +p101987 +sg25267 +g27 +sa(dp101988 +g25273 +S'drypoint' +p101989 +sg25267 +g27 +sg25275 +S'1923' +p101990 +sg25268 +S'The Chapel at Crecy, Small Plate (La Chapelle de Crecy (petite planche))' +p101991 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101992 +sa(dp101993 +g25273 +S'drypoint' +p101994 +sg25267 +g27 +sg25275 +S'1923' +p101995 +sg25268 +S'The Morin at Serbonne (Le Morin a Serbonne)' +p101996 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p101997 +sa(dp101998 +g25273 +S'drypoint' +p101999 +sg25267 +g27 +sg25275 +S'1923' +p102000 +sg25268 +S'The Morin at Serbonne (Le Morin a Serbonne)' +p102001 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102002 +sa(dp102003 +g25273 +S'drypoint' +p102004 +sg25267 +g27 +sg25275 +S'1923' +p102005 +sg25268 +S'The Carriage (La carriole)' +p102006 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102007 +sa(dp102008 +g25273 +S'etching' +p102009 +sg25267 +g27 +sg25275 +S'1924' +p102010 +sg25268 +S'Landscape with Chimney (Paysage a la cheminee)' +p102011 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102012 +sa(dp102013 +g25273 +S'etching' +p102014 +sg25267 +g27 +sg25275 +S'1930' +p102015 +sg25268 +S'River Bank (La Berge)' +p102016 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102017 +sa(dp102018 +g25273 +S'etching' +p102019 +sg25267 +g27 +sg25275 +S'1930' +p102020 +sg25268 +S'Small Clown (Petit clown)' +p102021 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102022 +sa(dp102023 +g25273 +S'etching and drypoint' +p102024 +sg25267 +g27 +sg25275 +S'1930' +p102025 +sg25268 +S'Clowns (Scene de clowns)' +p102026 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102027 +sa(dp102028 +g25273 +S'etching' +p102029 +sg25267 +g27 +sg25275 +S'1930' +p102030 +sg25268 +S'River (La Riviere)' +p102031 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102032 +sa(dp102033 +g25273 +S'etching' +p102034 +sg25267 +g27 +sg25275 +S'1927' +p102035 +sg25268 +S'Suzanne' +p102036 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102037 +sa(dp102038 +g25268 +S'Adam and Eve Hide Themselves' +p102039 +sg25270 +S'Heinrich Aldegrever' +p102040 +sg25273 +S'etching' +p102041 +sg25275 +S'1540' +p102042 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a692.jpg' +p102043 +sg25267 +g27 +sa(dp102044 +g25273 +S'etching' +p102045 +sg25267 +g27 +sg25275 +S'1929' +p102046 +sg25268 +S'On the Edge of the Bed (Au Bord du lit)' +p102047 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102048 +sa(dp102049 +g25273 +S'etching' +p102050 +sg25267 +g27 +sg25275 +S'1929' +p102051 +sg25268 +S'At the Dance (Au Bal)' +p102052 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102053 +sa(dp102054 +g25273 +S'etching' +p102055 +sg25267 +g27 +sg25275 +S'1929' +p102056 +sg25268 +S'At the Bar (Au Bar)' +p102057 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102058 +sa(dp102059 +g25273 +S'etching' +p102060 +sg25267 +g27 +sg25275 +S'1929' +p102061 +sg25268 +S'Around Halles (Autour des Halles)' +p102062 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102063 +sa(dp102064 +g25273 +S'etching' +p102065 +sg25267 +g27 +sg25275 +S'1929' +p102066 +sg25268 +S'Study of a Woman, No.3 (Etude de fille III)' +p102067 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102068 +sa(dp102069 +g25273 +S'etching and roulette work' +p102070 +sg25267 +g27 +sg25275 +S'c. 1927/1929' +p102071 +sg25268 +S'Berthe in a Cafe, Boulevard Sebastopol (Berthe dans un cafe, Boulevard Sebastopol)' +p102072 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102073 +sa(dp102074 +g25273 +S'etching and roulette work' +p102075 +sg25267 +g27 +sg25275 +S'c. 1927/1929' +p102076 +sg25268 +S'Bubu and Berthe at Lunch (Le Dejeuner de Bubu et de Berthe)' +p102077 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102078 +sa(dp102079 +g25273 +S'etching' +p102080 +sg25267 +g27 +sg25275 +S'c. 1927/1929' +p102081 +sg25268 +S"Berthe's Sister with a Lover (La Soeur de Berthe avec un amant)" +p102082 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102083 +sa(dp102084 +g25273 +S'etching' +p102085 +sg25267 +g27 +sg25275 +S'c. 1927/1929' +p102086 +sg25268 +S'Study of a Prostitute (Etude de fille publique)' +p102087 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102088 +sa(dp102089 +g25273 +S'etching' +p102090 +sg25267 +g27 +sg25275 +S'c. 1927/1929' +p102091 +sg25268 +S'The Prostitute Returns Worn Out to Bubu (La fille publique rentre epuisee pres de Bub' +p102092 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102093 +sa(dp102094 +g25268 +S'Expulsion from Paradise' +p102095 +sg25270 +S'Heinrich Aldegrever' +p102096 +sg25273 +S'etching' +p102097 +sg25275 +S'1540' +p102098 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a696.jpg' +p102099 +sg25267 +g27 +sa(dp102100 +g25273 +S'etching' +p102101 +sg25267 +g27 +sg25275 +S'c. 1927/1929' +p102102 +sg25268 +S'Arc Lamp - Sidewalk, Boulevard Sebastopol (La lampe a arc - le trottoir, Boulevard S' +p102103 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102104 +sa(dp102105 +g25273 +S'etching' +p102106 +sg25267 +g27 +sg25275 +S'1930' +p102107 +sg25268 +S'Before the Release, No.1 (Avant la detente. I)' +p102108 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102109 +sa(dp102110 +g25273 +S'etching' +p102111 +sg25267 +g27 +sg25275 +S'1930' +p102112 +sg25268 +S'1500 Meter Race (La Course de 1500 metres)' +p102113 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102114 +sa(dp102115 +g25273 +S'etching' +p102116 +sg25267 +g27 +sg25275 +S'c. 1927/1929' +p102117 +sg25268 +S"Berthe at the Hospital, The Letter (Berthe a l'hopital: la lettre)" +p102118 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102119 +sa(dp102120 +g25273 +S'etching' +p102121 +sg25267 +g27 +sg25275 +S'c. 1927/1929' +p102122 +sg25268 +S"Sebasto's Bar (Le Bar du Sebasto)" +p102123 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102124 +sa(dp102125 +g25273 +S'etching' +p102126 +sg25267 +g27 +sg25275 +S'c. 1927/1929' +p102127 +sg25268 +S"Berthe's Sister with a Lover (La Soeur de Berthe avec un amant)" +p102128 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102129 +sa(dp102130 +g25273 +S'drypoint' +p102131 +sg25267 +g27 +sg25275 +S'1927' +p102132 +sg25268 +S'Schooner, Saint-Tropez (Saint-Tropez, la goelette)' +p102133 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102134 +sa(dp102135 +g25273 +S'drypoint' +p102136 +sg25267 +g27 +sg25275 +S'1927' +p102137 +sg25268 +S'Sailboats, Saint-Tropez (Saint-Tropez, les tartanes)' +p102138 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102139 +sa(dp102140 +g25273 +S'etching' +p102141 +sg25267 +g27 +sg25275 +S'1927' +p102142 +sg25268 +S'Lighthouse, Saint-Tropez (Saint-Tropez, le phare)' +p102143 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102144 +sa(dp102145 +g25273 +S'etching and drypoint' +p102146 +sg25267 +g27 +sg25275 +S'1930' +p102147 +sg25268 +S'Lighthouse, Saint-Tropez (Le Phare de Saint-Tropez)' +p102148 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102149 +sa(dp102150 +g25268 +S'Adam and Eve at Work' +p102151 +sg25270 +S'Heinrich Aldegrever' +p102152 +sg25273 +S'etching' +p102153 +sg25275 +S'1540' +p102154 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a695.jpg' +p102155 +sg25267 +g27 +sa(dp102156 +g25273 +S'etching and drypoint' +p102157 +sg25267 +g27 +sg25275 +S'1927' +p102158 +sg25268 +S'Three-Master, Saint-Tropez (Saint-Tropez, le trois-mats)' +p102159 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102160 +sa(dp102161 +g25273 +S'drypoint (and etching?)' +p102162 +sg25267 +g27 +sg25275 +S'1927' +p102163 +sg25268 +S'Bow of a Ship, Saint-Tropez (Saint-Tropez, la proue du voilier)' +p102164 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102165 +sa(dp102166 +g25273 +S'etching' +p102167 +sg25267 +g27 +sg25275 +S'1930' +p102168 +sg25268 +S'The Make-Up Table (Large Plate)' +p102169 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102170 +sa(dp102171 +g25273 +S'etching' +p102172 +sg25267 +g27 +sg25275 +S'1930' +p102173 +sg25268 +S'Orchestra of Clowns' +p102174 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102175 +sa(dp102176 +g25273 +S'etching' +p102177 +sg25267 +g27 +sg25275 +S'1930' +p102178 +sg25268 +S'Clown at the Piano' +p102179 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102180 +sa(dp102181 +g25273 +S'etching' +p102182 +sg25267 +g27 +sg25275 +S'1930' +p102183 +sg25268 +S'Performing Animals' +p102184 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102185 +sa(dp102186 +g25273 +S'etching' +p102187 +sg25267 +g27 +sg25275 +S'1930' +p102188 +sg25268 +S'Performing Horses' +p102189 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102190 +sa(dp102191 +g25273 +S'etching' +p102192 +sg25267 +g27 +sg25275 +S'1930' +p102193 +sg25268 +S'The Fat Clown' +p102194 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102195 +sa(dp102196 +g25273 +S'etching' +p102197 +sg25267 +g27 +sg25275 +S'1930' +p102198 +sg25268 +S'Animal Trainer' +p102199 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102200 +sa(dp102201 +g25273 +S'etching' +p102202 +sg25267 +g27 +sg25275 +S'1930' +p102203 +sg25268 +S'Pony Trainer (Le Dresseur de poney)' +p102204 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102205 +sa(dp102206 +g25268 +S'David Casting Off His Robes at the News of the Death of His Son' +p102207 +sg25270 +S'Heinrich Aldegrever' +p102208 +sg25273 +S'etching' +p102209 +sg25275 +S'1540' +p102210 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a68d.jpg' +p102211 +sg25267 +g27 +sa(dp102212 +g25273 +S'etching' +p102213 +sg25267 +g27 +sg25275 +S'published 1926' +p102214 +sg25268 +S"The Dead Tree, Small Plate (L'arbre mort, petite planche)" +p102215 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102216 +sa(dp102217 +g25273 +S'portfolio with 8 etchings' +p102218 +sg25267 +g27 +sg25275 +S'published 1926' +p102219 +sg25268 +S'Huit illustrations de guerre' +p102220 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102221 +sa(dp102222 +g25273 +S'etching' +p102223 +sg25267 +g27 +sg25275 +S'published 1926' +p102224 +sg25268 +S'Le chercheur de poux' +p102225 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102226 +sa(dp102227 +g25273 +S'etching' +p102228 +sg25267 +g27 +sg25275 +S'published 1926' +p102229 +sg25268 +S'Wounded in the Trenches, Variant I (Le Blesse dans la tranchee, variante I)' +p102230 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102231 +sa(dp102232 +g25273 +S'etching' +p102233 +sg25267 +g27 +sg25275 +S'published 1926' +p102234 +sg25268 +S'Soldiers in the Trenches (Les soldats dans la tranchee)' +p102235 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102236 +sa(dp102237 +g25273 +S'etching' +p102238 +sg25267 +g27 +sg25275 +S'published 1926' +p102239 +sg25268 +S"The Dead Tree (L'arbre mort)" +p102240 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102241 +sa(dp102242 +g25273 +S'etching' +p102243 +sg25267 +g27 +sg25275 +S'published 1926' +p102244 +sg25268 +S'Wounded in the Trenches, Variant II (Le blesse dans la tranchee, variante II)' +p102245 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102246 +sa(dp102247 +g25273 +S'etching' +p102248 +sg25267 +g27 +sg25275 +S'published 1926' +p102249 +sg25268 +S"The Chaplain (L'aumonier)" +p102250 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102251 +sa(dp102252 +g25273 +S'etching' +p102253 +sg25267 +g27 +sg25275 +S'published 1926' +p102254 +sg25268 +S'The Cook (Le cuistot)' +p102255 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102256 +sa(dp102257 +g25273 +S'etching' +p102258 +sg25267 +g27 +sg25275 +S'1919/1920' +p102259 +sg25268 +S'Head of a Poilu' +p102260 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102261 +sa(dp102262 +g25268 +S'Susanna Surprised by the Two Elders' +p102263 +sg25270 +S'Heinrich Aldegrever' +p102264 +sg25273 +S'etching' +p102265 +sg25275 +S'1555' +p102266 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a68e.jpg' +p102267 +sg25267 +g27 +sa(dp102268 +g25273 +S'etching' +p102269 +sg25267 +g27 +sg25275 +S'1919/1920' +p102270 +sg25268 +S'Lone Soldier in Battle-Dress' +p102271 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102272 +sa(dp102273 +g25273 +S'etching' +p102274 +sg25267 +g27 +sg25275 +S'1919/1920' +p102275 +sg25268 +S'Soldiers in the Trenches' +p102276 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102277 +sa(dp102278 +g25273 +S'etching' +p102279 +sg25267 +g27 +sg25275 +S'1919/1920' +p102280 +sg25268 +S'Soldiers Sitting in Trenches' +p102281 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102282 +sa(dp102283 +g25273 +S'etching' +p102284 +sg25267 +g27 +sg25275 +S'1919/1920' +p102285 +sg25268 +S'The Last Confession' +p102286 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102287 +sa(dp102288 +g25273 +S'etching' +p102289 +sg25267 +g27 +sg25275 +S'1924' +p102290 +sg25268 +S'The Menagerie, Versailles (Small Plate) (Versailles, la Menagerie (petite planche))' +p102291 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102292 +sa(dp102293 +g25273 +S'etching' +p102294 +sg25267 +g27 +sg25275 +S'1924' +p102295 +sg25268 +S'The Menagerie, Versailles (Large Plate) (Versailles, la Menagerie (grande planche))' +p102296 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102297 +sa(dp102298 +g25273 +S'etching and drypoint' +p102299 +sg25267 +g27 +sg25275 +S'1924' +p102300 +sg25268 +S'Statue in the Trees, Versailles (Versailles, la statue dans les arbres)' +p102301 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102302 +sa(dp102303 +g25273 +S'etching' +p102304 +sg25267 +g27 +sg25275 +S'1927' +p102305 +sg25268 +S'Suzanne with Straw Hat (Suzanne au chapeau de paille)' +p102306 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102307 +sa(dp102308 +g25273 +S'etching' +p102309 +sg25267 +g27 +sg25275 +S'1937' +p102310 +sg25268 +S'Small Farm, Saint-Tropez (Petite ferme a Saint-Tropez)' +p102311 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102312 +sa(dp102313 +g25273 +S'etching' +p102314 +sg25267 +g27 +sg25275 +S'1925' +p102315 +sg25268 +S"Saint-Tropez, la ferme a l'aire (petite planche)" +p102316 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102317 +sa(dp102318 +g25268 +S'Susanna Surprised by the Two Elders' +p102319 +sg25270 +S'Heinrich Aldegrever' +p102320 +sg25273 +S'etching' +p102321 +sg25275 +S'1555' +p102322 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a68c.jpg' +p102323 +sg25267 +g27 +sa(dp102324 +g25273 +S'etching on blue paper' +p102325 +sg25267 +g27 +sg25275 +S'1920' +p102326 +sg25268 +S'Petite baigneuse' +p102327 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102328 +sa(dp102329 +g25273 +S'etching' +p102330 +sg25267 +g27 +sg25275 +S'1924' +p102331 +sg25268 +S'Gardens of Saint-Cloud (Le parc de Saint-Cloud ou les jardins de Saint-Cloud)' +p102332 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102333 +sa(dp102334 +g25273 +S'etching' +p102335 +sg25267 +g27 +sg25275 +S'1935' +p102336 +sg25268 +S'Ground Game (Le gibier a poil)' +p102337 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102338 +sa(dp102339 +g25273 +S'etching' +p102340 +sg25267 +g27 +sg25275 +S'1935' +p102341 +sg25268 +S'Fish (Les crustaces et les poissons)' +p102342 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102343 +sa(dp102344 +g25273 +S'etching' +p102345 +sg25267 +g27 +sg25275 +S'1935' +p102346 +sg25268 +S'Poultry (La volaille)' +p102347 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102348 +sa(dp102349 +g25273 +S'etching' +p102350 +sg25267 +g27 +sg25275 +S'1935' +p102351 +sg25268 +S'Vegetables and Mushrooms (Les legumes et les champignons)' +p102352 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102353 +sa(dp102354 +g25273 +S'etching' +p102355 +sg25267 +g27 +sg25275 +S'1935' +p102356 +sg25268 +S'Pork (Le porc)' +p102357 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102358 +sa(dp102359 +g25273 +S'etching' +p102360 +sg25267 +g27 +sg25275 +S'1935' +p102361 +sg25268 +S'Calf (Le veau)' +p102362 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102363 +sa(dp102364 +g25273 +S'lithograph' +p102365 +sg25267 +g27 +sg25275 +S'unknown date\n' +p102366 +sg25268 +S'Woman on a Staircase' +p102367 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102368 +sa(dp102369 +g25273 +S'etching' +p102370 +sg25267 +g27 +sg25275 +S'1934' +p102371 +sg25268 +S'Cover-Up (La Chemise)' +p102372 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102373 +sa(dp102374 +g25268 +S'The Two Elders Before the Judge' +p102375 +sg25270 +S'Heinrich Aldegrever' +p102376 +sg25273 +S'etching' +p102377 +sg25275 +S'1555' +p102378 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a68b.jpg' +p102379 +sg25267 +g27 +sa(dp102380 +g25273 +S'portfolio with title page and fifteen etchings' +p102381 +sg25267 +g27 +sg25275 +S'published 1934' +p102382 +sg25268 +S'Plage' +p102383 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102384 +sa(dp102385 +g25273 +S'etching' +p102386 +sg25267 +g27 +sg25275 +S'1934' +p102387 +sg25268 +S'Bathing (La Baignade)' +p102388 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102389 +sa(dp102390 +g25273 +S'etching' +p102391 +sg25267 +g27 +sg25275 +S'1934' +p102392 +sg25268 +S'Flirt' +p102393 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102394 +sa(dp102395 +g25273 +S'etching' +p102396 +sg25267 +g27 +sg25275 +S'1934' +p102397 +sg25268 +S'Swimmers (Pleine eau)' +p102398 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102399 +sa(dp102400 +g25273 +S'etching' +p102401 +sg25267 +g27 +sg25275 +S'1934' +p102402 +sg25268 +S'Nudism (Nudisme)' +p102403 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102404 +sa(dp102405 +g25273 +S'etching' +p102406 +sg25267 +g27 +sg25275 +S'1934' +p102407 +sg25268 +S'Morning (Matin)' +p102408 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102409 +sa(dp102410 +g25273 +S'etching' +p102411 +sg25267 +g27 +sg25275 +S'1934' +p102412 +sg25268 +S"Athlete (L'Athlete)" +p102413 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102414 +sa(dp102415 +g25273 +S'etching' +p102416 +sg25267 +g27 +sg25275 +S'1934' +p102417 +sg25268 +S'Parasol (Ombrelle)' +p102418 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102419 +sa(dp102420 +g25273 +S'etching' +p102421 +sg25267 +g27 +sg25275 +S'1934' +p102422 +sg25268 +S'Leisure (Jeux)' +p102423 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102424 +sa(dp102425 +g25273 +S'etching' +p102426 +sg25267 +g27 +sg25275 +S'1934' +p102427 +sg25268 +S'Young Women (Jeunes filles)' +p102428 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102429 +sa(dp102430 +g25268 +S'The Two Elders Convicted by the Testimony of Daniel' +p102431 +sg25270 +S'Heinrich Aldegrever' +p102432 +sg25273 +S'etching' +p102433 +sg25275 +S'1555' +p102434 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a689.jpg' +p102435 +sg25267 +g27 +sa(dp102436 +g25273 +S'etching' +p102437 +sg25267 +g27 +sg25275 +S'1934' +p102438 +sg25268 +S'Siesta (La Sieste)' +p102439 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102440 +sa(dp102441 +g25273 +S'etching' +p102442 +sg25267 +g27 +sg25275 +S'1934' +p102443 +sg25268 +S'Reading (Lecture)' +p102444 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102445 +sa(dp102446 +g25273 +S'etching' +p102447 +sg25267 +g27 +sg25275 +S'1934' +p102448 +sg25268 +S'Waterskiing (Planking)' +p102449 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102450 +sa(dp102451 +g25273 +S'etching' +p102452 +sg25267 +g27 +sg25275 +S'1934' +p102453 +sg25268 +S'Sun Bathing (Bain de soleil)' +p102454 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102455 +sa(dp102456 +g25273 +S'etching' +p102457 +sg25267 +g27 +sg25275 +S'1934' +p102458 +sg25268 +S'Afternoon (Apres-midi)' +p102459 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102460 +sa(dp102461 +g25273 +S'etching' +p102462 +sg25267 +g27 +sg25275 +S'1935' +p102463 +sg25268 +S'Bridge at Joinville (Pont de Joinville)' +p102464 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102465 +sa(dp102466 +g25273 +S'portfolio with 18 etchings plus title cover' +p102467 +sg25267 +g27 +sg25275 +S'1935' +p102468 +sg25268 +S'De Joinville a Bougival' +p102469 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102470 +sa(dp102471 +g25273 +S'etching' +p102472 +sg25267 +g27 +sg25275 +S'1935' +p102473 +sg25268 +S'Lock at Charenton (Ecluse de Charenton)' +p102474 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102475 +sa(dp102476 +g25273 +S'etching' +p102477 +sg25267 +g27 +sg25275 +S'1935' +p102478 +sg25268 +S'Champigny sur Marne' +p102479 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102480 +sa(dp102481 +g25273 +S'etching' +p102482 +sg25267 +g27 +sg25275 +S'1935' +p102483 +sg25268 +S'Lock at Gravelle (Ecluse de Gravelle)' +p102484 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102485 +sa(dp102486 +g25268 +S'The Two Elders Stoned by the People' +p102487 +sg25270 +S'Heinrich Aldegrever' +p102488 +sg25273 +S'etching' +p102489 +sg25275 +S'1555' +p102490 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a68a.jpg' +p102491 +sg25267 +g27 +sa(dp102492 +g25273 +S'etching' +p102493 +sg25267 +g27 +sg25275 +S'1935' +p102494 +sg25268 +S"Foot-Bridge at Austerlitz (Passerelle d'Austerlitz)" +p102495 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102496 +sa(dp102497 +g25273 +S'etching' +p102498 +sg25267 +g27 +sg25275 +S'1935' +p102499 +sg25268 +S'Port of Bercy (Port de Bercy)' +p102500 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102501 +sa(dp102502 +g25273 +S'etching' +p102503 +sg25267 +g27 +sg25275 +S'1935' +p102504 +sg25268 +S'Apse of Notre-Dame (Chevet de Notre Dame)' +p102505 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102506 +sa(dp102507 +g25273 +S'etching' +p102508 +sg25267 +g27 +sg25275 +S'1935' +p102509 +sg25268 +S"Dome of the Institute (Dome de l'Institut)" +p102510 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102511 +sa(dp102512 +g25273 +S'etching' +p102513 +sg25267 +g27 +sg25275 +S'1935' +p102514 +sg25268 +S'Pont des Arts' +p102515 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102516 +sa(dp102517 +g25273 +S'etching' +p102518 +sg25267 +g27 +sg25275 +S'1935' +p102519 +sg25268 +S'Le Vert Gallant' +p102520 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102521 +sa(dp102522 +g25273 +S'etching' +p102523 +sg25267 +g27 +sg25275 +S'1935' +p102524 +sg25268 +S'Le Pont Neuf' +p102525 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102526 +sa(dp102527 +g25273 +S'etching' +p102528 +sg25267 +g27 +sg25275 +S'1935' +p102529 +sg25268 +S'Conti Quay (Quai Conti)' +p102530 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102531 +sa(dp102532 +g25273 +S'etching' +p102533 +sg25267 +g27 +sg25275 +S'1935' +p102534 +sg25268 +S'Louvre Quay (Quai du Louvre)' +p102535 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102536 +sa(dp102537 +g25273 +S'etching' +p102538 +sg25267 +g27 +sg25275 +S'1935' +p102539 +sg25268 +S'Pont Mirabeau' +p102540 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102541 +sa(dp102542 +g25268 +S'Traveler among Thieves' +p102543 +sg25270 +S'Heinrich Aldegrever' +p102544 +sg25273 +S'etching' +p102545 +sg25275 +S'1554' +p102546 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6a1.jpg' +p102547 +sg25267 +g27 +sa(dp102548 +g25273 +S'etching' +p102549 +sg25267 +g27 +sg25275 +S'1935' +p102550 +sg25268 +S'Bridge at Grenelle (Pont de Grenelle)' +p102551 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102552 +sa(dp102553 +g25273 +S'etching' +p102554 +sg25267 +g27 +sg25275 +S'1935' +p102555 +sg25268 +S'Bas-Meudon' +p102556 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102557 +sa(dp102558 +g25273 +S'etching' +p102559 +sg25267 +g27 +sg25275 +S'1935' +p102560 +sg25268 +S'Quay at Boulogne (Quai de Boulogne)' +p102561 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102562 +sa(dp102563 +g25273 +S'etching' +p102564 +sg25267 +g27 +sg25275 +S'1935' +p102565 +sg25268 +S'Bougival' +p102566 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102567 +sa(dp102568 +g25273 +S'etching' +p102569 +sg25267 +g27 +sg25275 +S'1929/1932' +p102570 +sg25268 +S'Le Bouquet' +p102571 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102572 +sa(dp102573 +g25273 +S'etching' +p102574 +sg25267 +g27 +sg25275 +S'1929/1932' +p102575 +sg25268 +S'"Les Lys"' +p102576 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102577 +sa(dp102578 +g25273 +S'etching' +p102579 +sg25267 +g27 +sg25275 +S'1929/1932' +p102580 +sg25268 +S'Colette de profil' +p102581 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102582 +sa(dp102583 +g25273 +S'etching' +p102584 +sg25267 +g27 +sg25275 +S'1929/1932' +p102585 +sg25268 +S'La Table apres dejeuner' +p102586 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102587 +sa(dp102588 +g25273 +S'etching' +p102589 +sg25267 +g27 +sg25275 +S'1929/1932' +p102590 +sg25268 +S'La "Treille Muscate," la maison de Colette' +p102591 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102592 +sa(dp102593 +g25273 +S'etching' +p102594 +sg25267 +g27 +sg25275 +S'1929/1932' +p102595 +sg25268 +S'L\'entree de la "Treille Muscate"' +p102596 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102597 +sa(dp102598 +g25268 +S'The Coronation of the Virgin' +p102599 +sg25270 +S'Agnolo Gaddi' +p102600 +sg25273 +S'tempera on panel' +p102601 +sg25275 +S'probably c. 1370' +p102602 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b36.jpg' +p102603 +sg25267 +S'According to Mary’s legend, after her death she was crowned the Queen of Heaven by her son Jesus. Here, musical angels serenade her coronation. Dressed in pale olive green, one angel plays a lute while another, garbed in iridescent robes, strums a mandore. Such pastel colors infuse the poetic paintings of Agnolo Gaddi, who also preferred intricate, delicate patterns. The surface of the painted gesso plaster was textured by designs impressed with punching tools. The crowns of the Madonna and Christ are so deeply indented as to appear three-dimensional.\n In a large altarpiece by Gaddi, \n ' +p102604 +sa(dp102605 +g25268 +S'The Good Samaritan Ministering to the Traveler' +p102606 +sg25270 +S'Heinrich Aldegrever' +p102607 +sg25273 +S'etching' +p102608 +sg25275 +S'1554' +p102609 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6a0.jpg' +p102610 +sg25267 +g27 +sa(dp102611 +g25273 +S'etching' +p102612 +sg25267 +g27 +sg25275 +S'1929/1932' +p102613 +sg25268 +S"L'allee du Jardin de Colette" +p102614 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102615 +sa(dp102616 +g25273 +S'etching' +p102617 +sg25267 +g27 +sg25275 +S'1929/1932' +p102618 +sg25268 +S'La Balustrade de la Treille Muscate' +p102619 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102620 +sa(dp102621 +g25273 +S'etching' +p102622 +sg25267 +g27 +sg25275 +S'1929/1932' +p102623 +sg25268 +S'Le Port, St.-Tropez' +p102624 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102625 +sa(dp102626 +g25273 +S'etching' +p102627 +sg25267 +g27 +sg25275 +S'1929/1932' +p102628 +sg25268 +S'La Tartane' +p102629 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102630 +sa(dp102631 +g25273 +S'etching' +p102632 +sg25267 +g27 +sg25275 +S'1929/1932' +p102633 +sg25268 +S'Debardeurs' +p102634 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102635 +sa(dp102636 +g25273 +S'etching' +p102637 +sg25267 +g27 +sg25275 +S'1929/1932' +p102638 +sg25268 +S'La chatte de Colette' +p102639 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102640 +sa(dp102641 +g25273 +S'etching' +p102642 +sg25267 +g27 +sg25275 +S'1929/1932' +p102643 +sg25268 +S'Bateaux dans le Port' +p102644 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102645 +sa(dp102646 +g25273 +S'etching' +p102647 +sg25267 +g27 +sg25275 +S'1929/1932' +p102648 +sg25268 +S'Les Tonneaux sous la Treille' +p102649 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102650 +sa(dp102651 +g25273 +S'etching' +p102652 +sg25267 +g27 +sg25275 +S'1929/1932' +p102653 +sg25268 +S'Les Grappes' +p102654 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102655 +sa(dp102656 +g25273 +S'etching' +p102657 +sg25267 +g27 +sg25275 +S'1929/1932' +p102658 +sg25268 +S'Vendanges' +p102659 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102660 +sa(dp102661 +g25268 +S'The Good Samaritan Placing the Traveler on a Mule' +p102662 +sg25270 +S'Heinrich Aldegrever' +p102663 +sg25273 +S'etching' +p102664 +sg25275 +S'1554' +p102665 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a69e.jpg' +p102666 +sg25267 +g27 +sa(dp102667 +g25273 +S'etching' +p102668 +sg25267 +g27 +sg25275 +S'1929/1932' +p102669 +sg25268 +S'La Vigne' +p102670 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102671 +sa(dp102672 +g25273 +S'etching' +p102673 +sg25267 +g27 +sg25275 +S'1929/1932' +p102674 +sg25268 +S"L'Auberge du Don" +p102675 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102676 +sa(dp102677 +g25273 +S'etching' +p102678 +sg25267 +g27 +sg25275 +S'1929/1932' +p102679 +sg25268 +S'Le Grill' +p102680 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102681 +sa(dp102682 +g25273 +S'etching' +p102683 +sg25267 +g27 +sg25275 +S'1929/1932' +p102684 +sg25268 +S'Le "Mas"' +p102685 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102686 +sa(dp102687 +g25273 +S'etching' +p102688 +sg25267 +g27 +sg25275 +S'1929/1932' +p102689 +sg25268 +S'Provence' +p102690 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102691 +sa(dp102692 +g25273 +S'etching' +p102693 +sg25267 +g27 +sg25275 +S'1929/1932' +p102694 +sg25268 +S'La "Rascasse"' +p102695 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102696 +sa(dp102697 +g25273 +S'etching' +p102698 +sg25267 +g27 +sg25275 +S'1929/1932' +p102699 +sg25268 +S'Panier de Langoustes' +p102700 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102701 +sa(dp102702 +g25273 +S'etching' +p102703 +sg25267 +g27 +sg25275 +S'1929/1932' +p102704 +sg25268 +S"L'arrosoir" +p102705 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102706 +sa(dp102707 +g25273 +S'etching' +p102708 +sg25267 +g27 +sg25275 +S'1929/1932' +p102709 +sg25268 +S'Pots de Fleurs' +p102710 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102711 +sa(dp102712 +g25273 +S'etching' +p102713 +sg25267 +g27 +sg25275 +S'1929/1932' +p102714 +sg25268 +S'Fuchsias' +p102715 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102716 +sa(dp102717 +g25268 +S'The Good Samaritan Paying for the Lodgings of the Traveler' +p102718 +sg25270 +S'Heinrich Aldegrever' +p102719 +sg25273 +S'etching' +p102720 +sg25275 +S'1554' +p102721 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a69f.jpg' +p102722 +sg25267 +g27 +sa(dp102723 +g25273 +S'etching' +p102724 +sg25267 +g27 +sg25275 +S'1929/1932' +p102725 +sg25268 +S'"Cannas"' +p102726 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102727 +sa(dp102728 +g25273 +S'etching' +p102729 +sg25267 +g27 +sg25275 +S'1929/1932' +p102730 +sg25268 +S'Les lys roses' +p102731 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102732 +sa(dp102733 +g25273 +S'etching' +p102734 +sg25267 +g27 +sg25275 +S'1929/1932' +p102735 +sg25268 +S'La chatte dans le jardin' +p102736 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102737 +sa(dp102738 +g25273 +S'etching' +p102739 +sg25267 +g27 +sg25275 +S'1929/1932' +p102740 +sg25268 +S'La chatte sur le balustrade' +p102741 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102742 +sa(dp102743 +g25273 +S'etching' +p102744 +sg25267 +g27 +sg25275 +S'1929/1932' +p102745 +sg25268 +S'Fleurs' +p102746 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102747 +sa(dp102748 +g25273 +S'etching' +p102749 +sg25267 +g27 +sg25275 +S'1929/1932' +p102750 +sg25268 +S'Les Soleils' +p102751 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102752 +sa(dp102753 +g25273 +S'etching' +p102754 +sg25267 +g27 +sg25275 +S'1929/1932' +p102755 +sg25268 +S'La chatte en rond' +p102756 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102757 +sa(dp102758 +g25273 +S'etching' +p102759 +sg25267 +g27 +sg25275 +S'1929/1932' +p102760 +sg25268 +S'Colette a son bureau' +p102761 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102762 +sa(dp102763 +g25273 +S'etching' +p102764 +sg25267 +g27 +sg25275 +S'1929/1932' +p102765 +sg25268 +S'La Statue de Suffren' +p102766 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102767 +sa(dp102768 +g25273 +S', published 1921' +p102769 +sg25267 +g27 +sg25275 +S'\n' +p102770 +sg25268 +S'Amour couleur de Paris' +p102771 +sg25270 +S'Jules Romains' +p102772 +sa(dp102773 +g25268 +S'The Rich Man at the Table' +p102774 +sg25270 +S'Heinrich Aldegrever' +p102775 +sg25273 +S'etching' +p102776 +sg25275 +S'1554' +p102777 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a69d.jpg' +p102778 +sg25267 +g27 +sa(dp102779 +g25273 +S'etching with drypoint' +p102780 +sg25267 +g27 +sg25275 +S'1921' +p102781 +sg25268 +S'Jules Romains' +p102782 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102783 +sa(dp102784 +g25273 +S'1 vol: ill: reproduction of works by Daragnes plus etched frontispiece by Segonzac (see 1948.3.233.a)' +p102785 +sg25267 +g27 +sg25275 +S'published 1924' +p102786 +sg25268 +S"Catalogue de ... dessins originaux comprenant l'oeuvre ... de Daragnes" +p102787 +sg25270 +S'Jean-Gabriel Daragnes' +p102788 +sa(dp102789 +g25273 +S'etching' +p102790 +sg25267 +g27 +sg25275 +S'published 1924' +p102791 +sg25268 +S'Daragnes II' +p102792 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102793 +sa(dp102794 +g25273 +S'etching' +p102795 +sg25267 +g27 +sg25275 +S'1923' +p102796 +sg25268 +S'The Carriage (La carriole)' +p102797 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102798 +sa(dp102799 +g25273 +S'(author)' +p102800 +sg25267 +g27 +sg25275 +S'\n' +p102801 +sg25268 +S'Oeuvre Gravee de Dunoyer de Segonzac' +p102802 +sg25270 +S'Artist Information (' +p102803 +sa(dp102804 +g25273 +S'etching' +p102805 +sg25267 +g27 +sg25275 +S'1927' +p102806 +sg25268 +S'Suzanne with Straw Hat (Suzanne au chapeau de paille)' +p102807 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102808 +sa(dp102809 +g25273 +S'etching' +p102810 +sg25267 +g27 +sg25275 +S'1937' +p102811 +sg25268 +S'Small Farm, Saint-Tropez (Petite ferme a Saint-Tropez)' +p102812 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102813 +sa(dp102814 +g25273 +S'(author)' +p102815 +sg25267 +g27 +sg25275 +S'\n' +p102816 +sg25268 +S'Tableau de la boxe' +p102817 +sg25270 +S'Artist Information (' +p102818 +sa(dp102819 +g25273 +S'Frank Crowninshield Collection' +p102820 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: 8 prints by Dunoyer de Segonzac, E. Tytgat, M. Laurencin, J. Laboureur, M. Gromaire, P. Nash, R. Bonfils, and D. Galanis' +p102821 +sg25268 +S"The New Keepsake for the Year 1921 / Le nouveau Keepsake pour l'annee 1921" +p102822 +sg25270 +S'Various Artists' +p102823 +sa(dp102824 +g25273 +S'etching' +p102825 +sg25267 +g27 +sg25275 +S'1920' +p102826 +sg25268 +S'Petite baigneuse' +p102827 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102828 +sa(dp102829 +g25268 +S'The Rich Man on His Death Bed' +p102830 +sg25270 +S'Heinrich Aldegrever' +p102831 +sg25273 +S'etching' +p102832 +sg25275 +S'1554' +p102833 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a69c.jpg' +p102834 +sg25267 +g27 +sa(dp102835 +g25273 +S'wood engraving' +p102836 +sg25267 +g27 +sg25275 +S'1920' +p102837 +sg25268 +S'La peinture' +p102838 +sg25270 +S'Edgard Tytgat' +p102839 +sa(dp102840 +g25273 +S'wood engraving' +p102841 +sg25267 +g27 +sg25275 +S'1920' +p102842 +sg25268 +S'La perruque' +p102843 +sg25270 +S'Marie Laurencin' +p102844 +sa(dp102845 +g25273 +S'engraving' +p102846 +sg25267 +g27 +sg25275 +S'1920' +p102847 +sg25268 +S'La Fille au litre (petite planche)' +p102848 +sg25270 +S'Jean-\xc3\x89mile Laboureur' +p102849 +sa(dp102850 +g25273 +S'woodcut' +p102851 +sg25267 +g27 +sg25275 +S'1920' +p102852 +sg25268 +S'Bois au canif' +p102853 +sg25270 +S'Marcel Gromaire' +p102854 +sa(dp102855 +g25273 +S'woodcut' +p102856 +sg25267 +g27 +sg25275 +S'1920' +p102857 +sg25268 +S'The Sea Wall' +p102858 +sg25270 +S'Paul Nash' +p102859 +sa(dp102860 +g25273 +S'wood engraving' +p102861 +sg25267 +g27 +sg25275 +S'1920' +p102862 +sg25268 +S'La coureuse de papillons' +p102863 +sg25270 +S'Robert Bonfils' +p102864 +sa(dp102865 +g25273 +S'wood engraving' +p102866 +sg25267 +g27 +sg25275 +S'1920' +p102867 +sg25268 +S'Landscape through a Window' +p102868 +sg25270 +S'Demetrius-Emmanuel Galanis' +p102869 +sa(dp102870 +g25273 +S'(author)' +p102871 +sg25267 +g27 +sg25275 +S'\n' +p102872 +sg25268 +S'Les Cahiers de Colette (volume I)' +p102873 +sg25270 +S'Artist Information (' +p102874 +sa(dp102875 +g25273 +S'(author)' +p102876 +sg25267 +g27 +sg25275 +S'\n' +p102877 +sg25268 +S'Les Cahiers de Colette (volume II)' +p102878 +sg25270 +S'Artist Information (' +p102879 +sa(dp102880 +g25273 +S'(author)' +p102881 +sg25267 +g27 +sg25275 +S'\n' +p102882 +sg25268 +S'Les Cahiers de Colette (volume III)' +p102883 +sg25270 +S'Artist Information (' +p102884 +sa(dp102885 +g25268 +S'The Rich Man Being Carried Away by the Devil' +p102886 +sg25270 +S'Artist Information (' +p102887 +sg25273 +S'German, 1502 - 1555/1561' +p102888 +sg25275 +S'(artist after)' +p102889 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6d2.jpg' +p102890 +sg25267 +g27 +sa(dp102891 +g25273 +S'(author)' +p102892 +sg25267 +g27 +sg25275 +S'\n' +p102893 +sg25268 +S'Les Cahiers de Colette (volume IV)' +p102894 +sg25270 +S'Artist Information (' +p102895 +sa(dp102896 +g25273 +S'etching' +p102897 +sg25267 +g27 +sg25275 +S'1932' +p102898 +sg25268 +S'Colette et sa chienne (Colette and Her Dog)' +p102899 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102900 +sa(dp102901 +g25273 +S'etching' +p102902 +sg25267 +g27 +sg25275 +S'1932' +p102903 +sg25268 +S'Colette au stylo, ecrivant (Colette with Pen, Writing)' +p102904 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102905 +sa(dp102906 +g25273 +S'etching' +p102907 +sg25267 +g27 +sg25275 +S'1932' +p102908 +sg25268 +S'Colette de trois quarts (Colette in Three-Quarter View)' +p102909 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102910 +sa(dp102911 +g25273 +S'etching' +p102912 +sg25267 +g27 +sg25275 +S'1932' +p102913 +sg25268 +S'La terrasse (The Terrace)' +p102914 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102915 +sa(dp102916 +g25273 +S'etching' +p102917 +sg25267 +g27 +sg25275 +S'1932' +p102918 +sg25268 +S'La treille muscate, de profil' +p102919 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102920 +sa(dp102921 +g25273 +S'etching' +p102922 +sg25267 +g27 +sg25275 +S'1932' +p102923 +sg25268 +S"Le bureau de Colette (Colette's Desk)" +p102924 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102925 +sa(dp102926 +g25273 +S'(artist)' +p102927 +sg25267 +g27 +sg25275 +S'\n' +p102928 +sg25268 +S'Bubu de Montparnasse' +p102929 +sg25270 +S'Artist Information (' +p102930 +sa(dp102931 +g25273 +S'(author)' +p102932 +sg25267 +g27 +sg25275 +S'\n' +p102933 +sg25268 +S'La treille muscate' +p102934 +sg25270 +S'Artist Information (' +p102935 +sa(dp102936 +g25273 +S'(illustrator)' +p102937 +sg25267 +g27 +sg25275 +S'\n' +p102938 +sg25268 +S'Cuisine' +p102939 +sg25270 +S'Artist Information (' +p102940 +sa(dp102941 +g25268 +S'The Rich Man in Hell' +p102942 +sg25270 +S'Artist Information (' +p102943 +sg25273 +S'German, 1502 - 1555/1561' +p102944 +sg25275 +S'(artist after)' +p102945 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6d3.jpg' +p102946 +sg25267 +g27 +sa(dp102947 +g25273 +S'etching' +p102948 +sg25267 +g27 +sg25275 +S'1935' +p102949 +sg25268 +S'Poultry (La volaille)' +p102950 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102951 +sa(dp102952 +g25273 +S'etching' +p102953 +sg25267 +g27 +sg25275 +S'1935' +p102954 +sg25268 +S'Fish (Les crustaces et les poissons)' +p102955 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102956 +sa(dp102957 +g25273 +S'etching' +p102958 +sg25267 +g27 +sg25275 +S'1935' +p102959 +sg25268 +S'Calf (Le veau)' +p102960 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102961 +sa(dp102962 +g25273 +S'etching' +p102963 +sg25267 +g27 +sg25275 +S'1935' +p102964 +sg25268 +S'Pork (Le porc)' +p102965 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102966 +sa(dp102967 +g25273 +S'etching' +p102968 +sg25267 +g27 +sg25275 +S'1935' +p102969 +sg25268 +S'Ground Game (Le gibier a poil)' +p102970 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102971 +sa(dp102972 +g25273 +S'etching' +p102973 +sg25267 +g27 +sg25275 +S'1935' +p102974 +sg25268 +S'Vegetables and Mushrooms (Les legumes et les champignons)' +p102975 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p102976 +sa(dp102977 +g25273 +S'etching' +p102978 +sg25267 +g27 +sg25275 +S'published 1935' +p102979 +sg25268 +S'Cuisine gauloise' +p102980 +sg25270 +S'Andr\xc3\xa9 Villeboeuf' +p102981 +sa(dp102982 +g25273 +S'etching' +p102983 +sg25267 +g27 +sg25275 +S'published 1935' +p102984 +sg25268 +S'Cuisine gothique' +p102985 +sg25270 +S'Andr\xc3\xa9 Villeboeuf' +p102986 +sa(dp102987 +g25273 +S'etching' +p102988 +sg25267 +g27 +sg25275 +S'published 1935' +p102989 +sg25268 +S'Cuisine renaissance' +p102990 +sg25270 +S'Andr\xc3\xa9 Villeboeuf' +p102991 +sa(dp102992 +g25273 +S'etching' +p102993 +sg25267 +g27 +sg25275 +S'published 1935' +p102994 +sg25268 +S'Cuisine royale' +p102995 +sg25270 +S'Andr\xc3\xa9 Villeboeuf' +p102996 +sa(dp102997 +g25268 +S'Christ on the Cross' +p102998 +sg25270 +S'Heinrich Aldegrever' +p102999 +sg25273 +S'etching' +p103000 +sg25275 +S'1553' +p103001 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a69a.jpg' +p103002 +sg25267 +g27 +sa(dp103003 +g25273 +S'etching' +p103004 +sg25267 +g27 +sg25275 +S'published 1935' +p103005 +sg25268 +S'Cuisine imperiale' +p103006 +sg25270 +S'Andr\xc3\xa9 Villeboeuf' +p103007 +sa(dp103008 +g25273 +S'etching' +p103009 +sg25267 +g27 +sg25275 +S'published 1935' +p103010 +sg25268 +S'Cuisine republicaine' +p103011 +sg25270 +S'Andr\xc3\xa9 Villeboeuf' +p103012 +sa(dp103013 +g25273 +S'lithograph' +p103014 +sg25267 +g27 +sg25275 +S'published 1935' +p103015 +sg25268 +S'Frontispiece: Sonnet \xc3\xa0 Comus' +p103016 +sg25270 +S'Edouard Vuillard' +p103017 +sa(dp103018 +g25273 +S'lithograph' +p103019 +sg25267 +g27 +sg25275 +S'published 1935' +p103020 +sg25268 +S'Le Menu' +p103021 +sg25270 +S'Edouard Vuillard' +p103022 +sa(dp103023 +g25273 +S'lithograph' +p103024 +sg25267 +g27 +sg25275 +S'published 1935' +p103025 +sg25268 +S"Le M\xc3\xa2itre d'H\xc3\xb4tel" +p103026 +sg25270 +S'Edouard Vuillard' +p103027 +sa(dp103028 +g25273 +S'lithograph' +p103029 +sg25267 +g27 +sg25275 +S'published 1935' +p103030 +sg25268 +S'La Cuisini\xc3\xa8re' +p103031 +sg25270 +S'Edouard Vuillard' +p103032 +sa(dp103033 +g25273 +S'lithograph' +p103034 +sg25267 +g27 +sg25275 +S'published 1935' +p103035 +sg25268 +S'La Flamb\xc3\xa9e' +p103036 +sg25270 +S'Edouard Vuillard' +p103037 +sa(dp103038 +g25273 +S'lithograph' +p103039 +sg25267 +g27 +sg25275 +S'published 1935' +p103040 +sg25268 +S'Le Repas' +p103041 +sg25270 +S'Edouard Vuillard' +p103042 +sa(dp103043 +g25273 +S'(author)' +p103044 +sg25267 +g27 +sg25275 +S'\n' +p103045 +sg25268 +S"L'Appel du Clown" +p103046 +sg25270 +S'Artist Information (' +p103047 +sa(dp103048 +g25273 +S'etching' +p103049 +sg25267 +g27 +sg25275 +S'1930' +p103050 +sg25268 +S'Title Page' +p103051 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103052 +sa(dp103053 +g25268 +S'The Virgin with the Child on the Crescent' +p103054 +sg25270 +S'Heinrich Aldegrever' +p103055 +sg25273 +S'etching' +p103056 +sg25275 +S'1553' +p103057 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a69b.jpg' +p103058 +sg25267 +g27 +sa(dp103059 +g25273 +S'etching' +p103060 +sg25267 +g27 +sg25275 +S'1930' +p103061 +sg25268 +S'Le Monsieur et La Dame' +p103062 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103063 +sa(dp103064 +g25273 +S'etching' +p103065 +sg25267 +g27 +sg25275 +S'1930' +p103066 +sg25268 +S'Rhum' +p103067 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103068 +sa(dp103069 +g25273 +S'etching' +p103070 +sg25267 +g27 +sg25275 +S'1930' +p103071 +sg25268 +S'Le Partner' +p103072 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103073 +sa(dp103074 +g25273 +S'etching' +p103075 +sg25267 +g27 +sg25275 +S'1930' +p103076 +sg25268 +S'Mademoiselle Dodor' +p103077 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103078 +sa(dp103079 +g25273 +S'etching' +p103080 +sg25267 +g27 +sg25275 +S'1930' +p103081 +sg25268 +S'Scene Premiere' +p103082 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103083 +sa(dp103084 +g25273 +S'etching' +p103085 +sg25267 +g27 +sg25275 +S'1930' +p103086 +sg25268 +S'Rhum et Monsieur' +p103087 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103088 +sa(dp103089 +g25273 +S'etching' +p103090 +sg25267 +g27 +sg25275 +S'1930' +p103091 +sg25268 +S'Two Heads' +p103092 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103093 +sa(dp103094 +g25273 +S'etching' +p103095 +sg25267 +g27 +sg25275 +S'1930' +p103096 +sg25268 +S'Rhum' +p103097 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103098 +sa(dp103099 +g25273 +S'etching' +p103100 +sg25267 +g27 +sg25275 +S'1930' +p103101 +sg25268 +S'Stage from the Orchestra Pit' +p103102 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103103 +sa(dp103104 +g25273 +S'etching' +p103105 +sg25267 +g27 +sg25275 +S'1930' +p103106 +sg25268 +S'Clown in Elaborate Cloak' +p103107 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103108 +sa(dp103109 +g25268 +S'The Virgin Seated' +p103110 +sg25270 +S'Heinrich Aldegrever' +p103111 +sg25273 +S'etching' +p103112 +sg25275 +S'1553' +p103113 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a699.jpg' +p103114 +sg25267 +g27 +sa(dp103115 +g25273 +S'etching' +p103116 +sg25267 +g27 +sg25275 +S'1930' +p103117 +sg25268 +S'Clown in Derby Hat' +p103118 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103119 +sa(dp103120 +g25273 +S'etching' +p103121 +sg25267 +g27 +sg25275 +S'1930' +p103122 +sg25268 +S'Scene Deuxieme' +p103123 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103124 +sa(dp103125 +g25273 +S'etching' +p103126 +sg25267 +g27 +sg25275 +S'1930' +p103127 +sg25268 +S'Scene Troisieme' +p103128 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103129 +sa(dp103130 +g25273 +S'etching' +p103131 +sg25267 +g27 +sg25275 +S'1930' +p103132 +sg25268 +S'Spectators' +p103133 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103134 +sa(dp103135 +g25273 +S'etching' +p103136 +sg25267 +g27 +sg25275 +S'1930' +p103137 +sg25268 +S'Clown in Top Hat' +p103138 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103139 +sa(dp103140 +g25273 +S'etching' +p103141 +sg25267 +g27 +sg25275 +S'1930' +p103142 +sg25268 +S'Clown with Harmonica' +p103143 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103144 +sa(dp103145 +g25273 +S'etching' +p103146 +sg25267 +g27 +sg25275 +S'1930' +p103147 +sg25268 +S'Scene quartieme' +p103148 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103149 +sa(dp103150 +g25273 +S'etching' +p103151 +sg25267 +g27 +sg25275 +S'1930' +p103152 +sg25268 +S'Clown Making Up' +p103153 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103154 +sa(dp103155 +g25273 +S'etching' +p103156 +sg25267 +g27 +sg25275 +S'1930' +p103157 +sg25268 +S'Clown at Make-Up' +p103158 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103159 +sa(dp103160 +g25273 +S'etching' +p103161 +sg25267 +g27 +sg25275 +S'1930' +p103162 +sg25268 +S'Clown on Parallel Bars' +p103163 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103164 +sa(dp103165 +g25268 +S'Madonna in a Landscape Sitting on a Cushion' +p103166 +sg25270 +S'Heinrich Aldegrever' +p103167 +sg25273 +S'etching' +p103168 +sg25275 +S'1527' +p103169 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a698.jpg' +p103170 +sg25267 +g27 +sa(dp103171 +g25273 +S'etching' +p103172 +sg25267 +g27 +sg25275 +S'1930' +p103173 +sg25268 +S'Clown in Dress Suit' +p103174 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103175 +sa(dp103176 +g25273 +S'etching' +p103177 +sg25267 +g27 +sg25275 +S'1930' +p103178 +sg25268 +S'Rope Walker' +p103179 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103180 +sa(dp103181 +g25273 +S'etching' +p103182 +sg25267 +g27 +sg25275 +S'1930' +p103183 +sg25268 +S'Man in Profile' +p103184 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103185 +sa(dp103186 +g25273 +S'etching' +p103187 +sg25267 +g27 +sg25275 +S'1930' +p103188 +sg25268 +S'The Make-Up Table' +p103189 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103190 +sa(dp103191 +g25273 +S'etching' +p103192 +sg25267 +g27 +sg25275 +S'1930' +p103193 +sg25268 +S'The Make-Up Table (Large Plate)' +p103194 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103195 +sa(dp103196 +g25273 +S'etching' +p103197 +sg25267 +g27 +sg25275 +S'1930' +p103198 +sg25268 +S'Performing Animals' +p103199 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103200 +sa(dp103201 +g25273 +S'etching' +p103202 +sg25267 +g27 +sg25275 +S'1930' +p103203 +sg25268 +S'Performing Horses' +p103204 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103205 +sa(dp103206 +g25273 +S'etching' +p103207 +sg25267 +g27 +sg25275 +S'1930' +p103208 +sg25268 +S'The Fat Clown' +p103209 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103210 +sa(dp103211 +g25273 +S'etching' +p103212 +sg25267 +g27 +sg25275 +S'1930' +p103213 +sg25268 +S'Animal Trainer' +p103214 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103215 +sa(dp103216 +g25273 +S'etching' +p103217 +sg25267 +g27 +sg25275 +S'1930' +p103218 +sg25268 +S'Orchestra of Clowns' +p103219 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103220 +sa(dp103221 +g25268 +S'Matthew' +p103222 +sg25270 +S'Heinrich Aldegrever' +p103223 +sg25273 +S'etching' +p103224 +sg25275 +S'1539' +p103225 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6e3.jpg' +p103226 +sg25267 +g27 +sa(dp103227 +g25273 +S'etching' +p103228 +sg25267 +g27 +sg25275 +S'1930' +p103229 +sg25268 +S'Clown at the Piano' +p103230 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103231 +sa(dp103232 +g25273 +S'(author)' +p103233 +sg25267 +g27 +sg25275 +S'\n' +p103234 +sg25268 +S'Le cabaret de la belle femme' +p103235 +sg25270 +S'Artist Information (' +p103236 +sa(dp103237 +g25273 +S'etching' +p103238 +sg25267 +g27 +sg25275 +S'published 1924' +p103239 +sg25268 +S'The Rocket' +p103240 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103241 +sa(dp103242 +g25273 +S'etching' +p103243 +sg25267 +g27 +sg25275 +S'published 1924' +p103244 +sg25268 +S'Cammion in the Rain' +p103245 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103246 +sa(dp103247 +g25273 +S'etching' +p103248 +sg25267 +g27 +sg25275 +S'published 1924' +p103249 +sg25268 +S'Soldier, Woman, and Child' +p103250 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103251 +sa(dp103252 +g25273 +S'etching' +p103253 +sg25267 +g27 +sg25275 +S'published 1924' +p103254 +sg25268 +S'Soldier Resting' +p103255 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103256 +sa(dp103257 +g25273 +S'etching' +p103258 +sg25267 +g27 +sg25275 +S'published 1924' +p103259 +sg25268 +S'Soldiers in the Trenches' +p103260 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103261 +sa(dp103262 +g25273 +S'etching' +p103263 +sg25267 +g27 +sg25275 +S'published 1924' +p103264 +sg25268 +S'Wounded Soldier' +p103265 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103266 +sa(dp103267 +g25273 +S'etching' +p103268 +sg25267 +g27 +sg25275 +S'published 1924' +p103269 +sg25268 +S'Officer and Orderly in Trenches' +p103270 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103271 +sa(dp103272 +g25273 +S'etching' +p103273 +sg25267 +g27 +sg25275 +S'published 1924' +p103274 +sg25268 +S'Over the Top' +p103275 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103276 +sa(dp103277 +g25268 +S'Mark' +p103278 +sg25270 +S'Heinrich Aldegrever' +p103279 +sg25273 +S'etching' +p103280 +sg25275 +S'1539' +p103281 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6e2.jpg' +p103282 +sg25267 +g27 +sa(dp103283 +g25273 +S'(author)' +p103284 +sg25267 +g27 +sg25275 +S'\n' +p103285 +sg25268 +S'Le cabaret de la belle femme' +p103286 +sg25270 +S'Artist Information (' +p103287 +sa(dp103288 +g25273 +S'etching' +p103289 +sg25267 +g27 +sg25275 +S'published 1924' +p103290 +sg25268 +S'The Rocket' +p103291 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103292 +sa(dp103293 +g25273 +S'etching' +p103294 +sg25267 +g27 +sg25275 +S'published 1924' +p103295 +sg25268 +S'The Rocket' +p103296 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103297 +sa(dp103298 +g25273 +S'etching' +p103299 +sg25267 +g27 +sg25275 +S'published 1924' +p103300 +sg25268 +S'Cammion in the Rain' +p103301 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103302 +sa(dp103303 +g25273 +S'etching' +p103304 +sg25267 +g27 +sg25275 +S'published 1924' +p103305 +sg25268 +S'Cammion in the Rain' +p103306 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103307 +sa(dp103308 +g25273 +S'etching' +p103309 +sg25267 +g27 +sg25275 +S'published 1924' +p103310 +sg25268 +S'Soldier, Woman, and Child' +p103311 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103312 +sa(dp103313 +g25273 +S'etching' +p103314 +sg25267 +g27 +sg25275 +S'published 1924' +p103315 +sg25268 +S'Soldier, Woman, and Child' +p103316 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103317 +sa(dp103318 +g25273 +S'etching' +p103319 +sg25267 +g27 +sg25275 +S'published 1924' +p103320 +sg25268 +S'Soldier Resting' +p103321 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103322 +sa(dp103323 +g25273 +S'etching' +p103324 +sg25267 +g27 +sg25275 +S'published 1924' +p103325 +sg25268 +S'Soldier Resting' +p103326 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103327 +sa(dp103328 +g25273 +S'etching' +p103329 +sg25267 +g27 +sg25275 +S'published 1924' +p103330 +sg25268 +S'Soldiers in the Trenches' +p103331 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103332 +sa(dp103333 +g25268 +S'Luke' +p103334 +sg25270 +S'Heinrich Aldegrever' +p103335 +sg25273 +S'etching' +p103336 +sg25275 +S'1539' +p103337 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6e1.jpg' +p103338 +sg25267 +g27 +sa(dp103339 +g25273 +S'etching' +p103340 +sg25267 +g27 +sg25275 +S'published 1924' +p103341 +sg25268 +S'Soldiers in the Trenches' +p103342 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103343 +sa(dp103344 +g25273 +S'etching' +p103345 +sg25267 +g27 +sg25275 +S'published 1924' +p103346 +sg25268 +S'Wounded Soldier' +p103347 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103348 +sa(dp103349 +g25273 +S'etching' +p103350 +sg25267 +g27 +sg25275 +S'published 1924' +p103351 +sg25268 +S'Wounded Soldier' +p103352 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103353 +sa(dp103354 +g25273 +S'etching' +p103355 +sg25267 +g27 +sg25275 +S'published 1924' +p103356 +sg25268 +S'Officer and Orderly in Trenches' +p103357 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103358 +sa(dp103359 +g25273 +S'etching' +p103360 +sg25267 +g27 +sg25275 +S'published 1924' +p103361 +sg25268 +S'Officer and Orderly in Trenches' +p103362 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103363 +sa(dp103364 +g25273 +S'etching' +p103365 +sg25267 +g27 +sg25275 +S'published 1924' +p103366 +sg25268 +S'Over the Top' +p103367 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103368 +sa(dp103369 +g25273 +S'etching' +p103370 +sg25267 +g27 +sg25275 +S'published 1924' +p103371 +sg25268 +S'Over the Top' +p103372 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103373 +sa(dp103374 +g25273 +S'(author)' +p103375 +sg25267 +g27 +sg25275 +S'\n' +p103376 +sg25268 +S'Les croix de bois' +p103377 +sg25270 +S'Artist Information (' +p103378 +sa(dp103379 +g25273 +S'drypoint' +p103380 +sg25267 +g27 +sg25275 +S'published 1921' +p103381 +sg25268 +S'Stretcher-bearer' +p103382 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103383 +sa(dp103384 +g25273 +S'drypoint' +p103385 +sg25267 +g27 +sg25275 +S'published 1921' +p103386 +sg25268 +S'The Cook' +p103387 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103388 +sa(dp103389 +g25268 +S'John' +p103390 +sg25270 +S'Heinrich Aldegrever' +p103391 +sg25273 +S'etching' +p103392 +sg25275 +S'1539' +p103393 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6e0.jpg' +p103394 +sg25267 +g27 +sa(dp103395 +g25273 +S'drypoint' +p103396 +sg25267 +g27 +sg25275 +S'published 1921' +p103397 +sg25268 +S'On Guard in the Trenches' +p103398 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103399 +sa(dp103400 +g25273 +S'drypoint' +p103401 +sg25267 +g27 +sg25275 +S'published 1921' +p103402 +sg25268 +S'Wounded Soldier' +p103403 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103404 +sa(dp103405 +g25273 +S'drypoint' +p103406 +sg25267 +g27 +sg25275 +S'published 1921' +p103407 +sg25268 +S'Two Soldiers' +p103408 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103409 +sa(dp103410 +g25273 +S'drypoint' +p103411 +sg25267 +g27 +sg25275 +S'published 1921' +p103412 +sg25268 +S'The Dead Tree' +p103413 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103414 +sa(dp103415 +g25273 +S'drypoint' +p103416 +sg25267 +g27 +sg25275 +S'published 1921' +p103417 +sg25268 +S'In the Trenches' +p103418 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103419 +sa(dp103420 +g25273 +S'drypoint' +p103421 +sg25267 +g27 +sg25275 +S'published 1921' +p103422 +sg25268 +S'View of the Trenches' +p103423 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103424 +sa(dp103425 +g25273 +S'drypoint' +p103426 +sg25267 +g27 +sg25275 +S'published 1921' +p103427 +sg25268 +S'Soldiers in the Trenches' +p103428 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103429 +sa(dp103430 +g25273 +S'drypoint' +p103431 +sg25267 +g27 +sg25275 +S'published 1921' +p103432 +sg25268 +S'Carrying Wounded through the Trenches' +p103433 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103434 +sa(dp103435 +g25273 +S'(author)' +p103436 +sg25267 +g27 +sg25275 +S'\n' +p103437 +sg25268 +S'Les croix de bois' +p103438 +sg25270 +S'Artist Information (' +p103439 +sa(dp103440 +g25273 +S'drypoint' +p103441 +sg25267 +g27 +sg25275 +S'published 1921' +p103442 +sg25268 +S'Stretcher-bearer' +p103443 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103444 +sa(dp103445 +g25268 +S'Jason and Medea' +p103446 +sg25270 +S'Heinrich Aldegrever' +p103447 +sg25273 +g27 +sg25275 +S'1529' +p103448 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6dd.jpg' +p103449 +sg25267 +g27 +sa(dp103450 +g25273 +S'drypoint' +p103451 +sg25267 +g27 +sg25275 +S'published 1921' +p103452 +sg25268 +S'The Cook' +p103453 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103454 +sa(dp103455 +g25273 +S'drypoint' +p103456 +sg25267 +g27 +sg25275 +S'published 1921' +p103457 +sg25268 +S'On Guard in the Trenches' +p103458 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103459 +sa(dp103460 +g25273 +S'drypoint' +p103461 +sg25267 +g27 +sg25275 +S'published 1921' +p103462 +sg25268 +S'Wounded Soldier' +p103463 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103464 +sa(dp103465 +g25273 +S'drypoint' +p103466 +sg25267 +g27 +sg25275 +S'published 1921' +p103467 +sg25268 +S'Two Soldiers' +p103468 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103469 +sa(dp103470 +g25273 +S'drypoint' +p103471 +sg25267 +g27 +sg25275 +S'published 1921' +p103472 +sg25268 +S'The Dead Tree' +p103473 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103474 +sa(dp103475 +g25273 +S'drypoint' +p103476 +sg25267 +g27 +sg25275 +S'published 1921' +p103477 +sg25268 +S'In the Trenches' +p103478 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103479 +sa(dp103480 +g25273 +S'drypoint' +p103481 +sg25267 +g27 +sg25275 +S'published 1921' +p103482 +sg25268 +S'View of the Trenches' +p103483 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103484 +sa(dp103485 +g25273 +S'drypoint' +p103486 +sg25267 +g27 +sg25275 +S'published 1921' +p103487 +sg25268 +S'Soldiers in the Trenches' +p103488 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103489 +sa(dp103490 +g25273 +S'drypoint' +p103491 +sg25267 +g27 +sg25275 +S'published 1921' +p103492 +sg25268 +S'Carrying Wounded through the Trenches' +p103493 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103494 +sa(dp103495 +g25273 +S'(author)' +p103496 +sg25267 +g27 +sg25275 +S'\n' +p103497 +sg25268 +S'Les croix de bois' +p103498 +sg25270 +S'Artist Information (' +p103499 +sa(dp103500 +g25268 +S'Rhea Silvia' +p103501 +sg25270 +S'Heinrich Aldegrever' +p103502 +sg25273 +g27 +sg25275 +S'unknown date\n' +p103503 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6e5.jpg' +p103504 +sg25267 +g27 +sa(dp103505 +g25273 +S'drypoint' +p103506 +sg25267 +g27 +sg25275 +S'published 1921' +p103507 +sg25268 +S'Stretcher-bearer' +p103508 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103509 +sa(dp103510 +g25273 +S'drypoint' +p103511 +sg25267 +g27 +sg25275 +S'published 1921' +p103512 +sg25268 +S'The Cook' +p103513 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103514 +sa(dp103515 +g25273 +S'drypoint' +p103516 +sg25267 +g27 +sg25275 +S'published 1921' +p103517 +sg25268 +S'On Guard in the Trenches' +p103518 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103519 +sa(dp103520 +g25273 +S'drypoint' +p103521 +sg25267 +g27 +sg25275 +S'published 1921' +p103522 +sg25268 +S'Wounded Soldier' +p103523 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103524 +sa(dp103525 +g25273 +S'drypoint' +p103526 +sg25267 +g27 +sg25275 +S'published 1921' +p103527 +sg25268 +S'Two Soldiers' +p103528 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103529 +sa(dp103530 +g25273 +S'drypoint' +p103531 +sg25267 +g27 +sg25275 +S'published 1921' +p103532 +sg25268 +S'The Dead Tree' +p103533 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103534 +sa(dp103535 +g25273 +S'drypoint' +p103536 +sg25267 +g27 +sg25275 +S'published 1921' +p103537 +sg25268 +S'In the Trenches' +p103538 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103539 +sa(dp103540 +g25273 +S'drypoint' +p103541 +sg25267 +g27 +sg25275 +S'published 1921' +p103542 +sg25268 +S'View of the Trenches' +p103543 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103544 +sa(dp103545 +g25273 +S'drypoint' +p103546 +sg25267 +g27 +sg25275 +S'published 1921' +p103547 +sg25268 +S'Soldiers in the Trenches' +p103548 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103549 +sa(dp103550 +g25273 +S'drypoint' +p103551 +sg25267 +g27 +sg25275 +S'published 1921' +p103552 +sg25268 +S'Carrying Wounded through the Trenches' +p103553 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103554 +sa(dp103555 +g25268 +S'Mucius Scaevola' +p103556 +sg25270 +S'Heinrich Aldegrever' +p103557 +sg25273 +g27 +sg25275 +S'unknown date\n' +p103558 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6e6.jpg' +p103559 +sg25267 +g27 +sa(dp103560 +g25273 +S'(author)' +p103561 +sg25267 +g27 +sg25275 +S'\n' +p103562 +sg25268 +S'La boule de gui' +p103563 +sg25270 +S'Artist Information (' +p103564 +sa(dp103565 +g25273 +S'etching' +p103566 +sg25267 +g27 +sg25275 +S'1919/1920' +p103567 +sg25268 +S'Head of a Poilu' +p103568 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103569 +sa(dp103570 +g25273 +S'etching' +p103571 +sg25267 +g27 +sg25275 +S'1919/1920' +p103572 +sg25268 +S'Soldiers in the Trenches' +p103573 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103574 +sa(dp103575 +g25273 +S'etching' +p103576 +sg25267 +g27 +sg25275 +S'1919/1920' +p103577 +sg25268 +S'Lone Soldier in Battle-Dress' +p103578 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103579 +sa(dp103580 +g25273 +S'etching' +p103581 +sg25267 +g27 +sg25275 +S'1919/1920' +p103582 +sg25268 +S'The Last Confession' +p103583 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103584 +sa(dp103585 +g25273 +S'etching' +p103586 +sg25267 +g27 +sg25275 +S'1919/1920' +p103587 +sg25268 +S'Soldiers Sitting in Trenches' +p103588 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103589 +sa(dp103590 +g25273 +S'(author)' +p103591 +sg25267 +g27 +sg25275 +S'\n' +p103592 +sg25268 +S'La boule de gui' +p103593 +sg25270 +S'Artist Information (' +p103594 +sa(dp103595 +g25273 +S'etching' +p103596 +sg25267 +g27 +sg25275 +S'1919/1920' +p103597 +sg25268 +S'Head of a Poilu' +p103598 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103599 +sa(dp103600 +g25273 +S'etching' +p103601 +sg25267 +g27 +sg25275 +S'1919/1920' +p103602 +sg25268 +S'Soldiers in the Trenches' +p103603 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103604 +sa(dp103605 +g25273 +S'etching' +p103606 +sg25267 +g27 +sg25275 +S'1919/1920' +p103607 +sg25268 +S'Lone Soldier in Battle-Dress' +p103608 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103609 +sa(dp103610 +g25268 +S'Titus Manlius Beheading His Son' +p103611 +sg25270 +S'Heinrich Aldegrever' +p103612 +sg25273 +g27 +sg25275 +S'1553' +p103613 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6df.jpg' +p103614 +sg25267 +g27 +sa(dp103615 +g25273 +S'etching' +p103616 +sg25267 +g27 +sg25275 +S'1919/1920' +p103617 +sg25268 +S'The Last Confession' +p103618 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103619 +sa(dp103620 +g25273 +S'etching' +p103621 +sg25267 +g27 +sg25275 +S'1919/1920' +p103622 +sg25268 +S'Soldiers Sitting in Trenches' +p103623 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p103624 +sa(dp103625 +g25273 +S'French, 1884 - 1974' +p103626 +sg25267 +g27 +sg25275 +S'(artist after)' +p103627 +sg25268 +S'Notes prises au front' +p103628 +sg25270 +S'Artist Information (' +p103629 +sa(dp103630 +g25273 +S'French, 1884 - 1974' +p103631 +sg25267 +g27 +sg25275 +S'(artist after)' +p103632 +sg25268 +S'XXX dessins. Nus.- Isadora Duncan.- Ida Rubinstein.- Boxeurs.' +p103633 +sg25270 +S'Artist Information (' +p103634 +sa(dp103635 +g25273 +S'French, 1884 - 1974' +p103636 +sg25267 +g27 +sg25275 +S'(artist after)' +p103637 +sg25268 +S'XXX dessins. Nus.- Isadora Duncan.- Ida Rubinstein.- Boxeurs.' +p103638 +sg25270 +S'Artist Information (' +p103639 +sa(dp103640 +g25273 +S'(artist after)' +p103641 +sg25267 +g27 +sg25275 +S'\n' +p103642 +sg25268 +S"L'education sentimentale" +p103643 +sg25270 +S'Artist Information (' +p103644 +sa(dp103645 +g25273 +S'(artist after)' +p103646 +sg25267 +g27 +sg25275 +S'\n' +p103647 +sg25268 +S"L'Elan" +p103648 +sg25270 +S'Artist Information (' +p103649 +sa(dp103650 +g25273 +S'French, 1884 - 1974' +p103651 +sg25267 +g27 +sg25275 +S'(artist after)' +p103652 +sg25268 +S'Vingt-quatre dessins sur Scheherazade (Ballet Russe)' +p103653 +sg25270 +S'Artist Information (' +p103654 +sa(dp103655 +g25273 +S'French, 1884 - 1974' +p103656 +sg25267 +g27 +sg25275 +S'(artist after)' +p103657 +sg25268 +S'Vingt-quatre dessins sur Scheherazade (Ballet Russe)' +p103658 +sg25270 +S'Artist Information (' +p103659 +sa(dp103660 +g25273 +S'(artist after)' +p103661 +sg25267 +g27 +sg25275 +S'\n' +p103662 +sg25268 +S"Dessins sur les danses d'Isadora Duncan. Precedes de la danseuse de Diane." +p103663 +sg25270 +S'Artist Information (' +p103664 +sa(dp103665 +g25268 +S'The Severe Father' +p103666 +sg25270 +S'Heinrich Aldegrever' +p103667 +sg25273 +g27 +sg25275 +S'1553' +p103668 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6e4.jpg' +p103669 +sg25267 +g27 +sa(dp103670 +g25273 +S'(artist after)' +p103671 +sg25267 +g27 +sg25275 +S'\n' +p103672 +sg25268 +S"L'ame du cirque" +p103673 +sg25270 +S'Artist Information (' +p103674 +sa(dp103675 +g25273 +S'(artist after)' +p103676 +sg25267 +g27 +sg25275 +S'\n' +p103677 +sg25268 +S'Boubouroche suivi de Philosophie' +p103678 +sg25270 +S'Artist Information (' +p103679 +sa(dp103680 +g25273 +S'(author)' +p103681 +sg25267 +g27 +sg25275 +S'\n' +p103682 +sg25268 +S'La boule de gui' +p103683 +sg25270 +S'Artist Information (' +p103684 +sa(dp103685 +g25268 +S'Les Vierges sages, Nul vain objet...' +p103686 +sg25270 +S'Abraham Bosse' +p103687 +sg25273 +S'engraving' +p103688 +sg25275 +S'unknown date\n' +p103689 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a60.jpg' +p103690 +sg25267 +g27 +sa(dp103691 +g25268 +S'The Loge [recto]' +p103692 +sg25270 +S'Mary Cassatt' +p103693 +sg25273 +S'graphite' +p103694 +sg25275 +S'1882' +p103695 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e492.jpg' +p103696 +sg25267 +g27 +sa(dp103697 +g25273 +S'transferred soft-ground wax and graphite' +p103698 +sg25267 +g27 +sg25275 +S'1882' +p103699 +sg25268 +S'The Loge [verso]' +p103700 +sg25270 +S'Mary Cassatt' +p103701 +sa(dp103702 +g25268 +S'The Little Girl (Le petite fille)' +p103703 +sg25270 +S'Edouard Manet' +p103704 +sg25273 +S'etching and drypoint' +p103705 +sg25275 +S'1862' +p103706 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a0006314.jpg' +p103707 +sg25267 +g27 +sa(dp103708 +g25268 +S'Canal Seen by Morning Light (Le canal: Effet du matin)' +p103709 +sg25270 +S'Alphonse Legros' +p103710 +sg25273 +S'etching? and drypoint' +p103711 +sg25275 +S'unknown date\n' +p103712 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b66.jpg' +p103713 +sg25267 +g27 +sa(dp103714 +g25268 +S'Canal Seen by Morning Light (Le canal: Effet du matin)' +p103715 +sg25270 +S'Alphonse Legros' +p103716 +sg25273 +S'photogravure copy of original etching' +p103717 +sg25275 +S'unknown date\n' +p103718 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098f2.jpg' +p103719 +sg25267 +g27 +sa(dp103720 +g25268 +S'Salmon Fisher (Le pecheur du saumon)' +p103721 +sg25270 +S'Alphonse Legros' +p103722 +sg25273 +S'etching' +p103723 +sg25275 +S'unknown date\n' +p103724 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b80.jpg' +p103725 +sg25267 +g27 +sa(dp103726 +g25268 +S'Luna' +p103727 +sg25270 +S'Heinrich Aldegrever' +p103728 +sg25273 +g27 +sg25275 +S'1533' +p103729 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6dc.jpg' +p103730 +sg25267 +g27 +sa(dp103731 +g25268 +S'Sunset (Coucher du soleil)' +p103732 +sg25270 +S'Alphonse Legros' +p103733 +sg25273 +S'etching and drypoint' +p103734 +sg25275 +S'unknown date\n' +p103735 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098f8.jpg' +p103736 +sg25267 +g27 +sa(dp103737 +g25268 +S'Two Beggars (Les deux mendiants)' +p103738 +sg25270 +S'Alphonse Legros' +p103739 +sg25273 +S'etching' +p103740 +sg25275 +S'unknown date\n' +p103741 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009922.jpg' +p103742 +sg25267 +g27 +sa(dp103743 +g25268 +S'Banks of the Yanne (Les bords de la Yanne)' +p103744 +sg25270 +S'Alphonse Legros' +p103745 +sg25273 +S'drypoint and etching?' +p103746 +sg25275 +S'unknown date\n' +p103747 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b93.jpg' +p103748 +sg25267 +g27 +sa(dp103749 +g25268 +S'Sunrise, Woods of Clamard (Lever du soleil, bois de Clamard)' +p103750 +sg25270 +S'Alphonse Legros' +p103751 +sg25273 +S'drypoint' +p103752 +sg25275 +S'unknown date\n' +p103753 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bef.jpg' +p103754 +sg25267 +g27 +sa(dp103755 +g25268 +S"Wheelwright's Home (La maison du charron)" +p103756 +sg25270 +S'Alphonse Legros' +p103757 +sg25273 +S'etching and drypoint' +p103758 +sg25275 +S'unknown date\n' +p103759 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c04.jpg' +p103760 +sg25267 +g27 +sa(dp103761 +g25268 +S'Landscape (Paysage)' +p103762 +sg25270 +S'Alphonse Legros' +p103763 +sg25273 +S'etching' +p103764 +sg25275 +S'unknown date\n' +p103765 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c13.jpg' +p103766 +sg25267 +g27 +sa(dp103767 +g25268 +S'Near the Mill (Pres du moulin)' +p103768 +sg25270 +S'Alphonse Legros' +p103769 +sg25273 +S'etching and drypoint (photo process?)' +p103770 +sg25275 +S'unknown date\n' +p103771 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c12.jpg' +p103772 +sg25267 +g27 +sa(dp103773 +g25268 +S'Prospect (Le point de vue)' +p103774 +sg25270 +S'Alphonse Legros' +p103775 +sg25273 +S'etching and drypoint' +p103776 +sg25275 +S'unknown date\n' +p103777 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c20.jpg' +p103778 +sg25267 +g27 +sa(dp103779 +g25268 +S'Prospect (Le point de vue)' +p103780 +sg25270 +S'Alphonse Legros' +p103781 +sg25273 +S'etching' +p103782 +sg25275 +S'unknown date\n' +p103783 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c1f.jpg' +p103784 +sg25267 +g27 +sa(dp103785 +g25268 +S'The House of the Well (La maison du puits)' +p103786 +sg25270 +S'Alphonse Legros' +p103787 +sg25273 +S'etching and drypoint' +p103788 +sg25275 +S'unknown date\n' +p103789 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c40.jpg' +p103790 +sg25267 +g27 +sa(dp103791 +g25268 +S'Hercules as a Child' +p103792 +sg25270 +S'Heinrich Aldegrever' +p103793 +sg25273 +g27 +sg25275 +S'1550' +p103794 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6c1.jpg' +p103795 +sg25267 +g27 +sa(dp103796 +g25268 +S'Lord A. Tennyson, 3rd plate' +p103797 +sg25270 +S'Alphonse Legros' +p103798 +sg25273 +S'etching and drypoint' +p103799 +sg25275 +S'unknown date\n' +p103800 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c3e.jpg' +p103801 +sg25267 +g27 +sa(dp103802 +g25268 +S'Cottage with a Cart (Chaumiere a la charette)' +p103803 +sg25270 +S'Alphonse Legros' +p103804 +sg25273 +S'etching' +p103805 +sg25275 +S'unknown date\n' +p103806 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c67.jpg' +p103807 +sg25267 +g27 +sa(dp103808 +g25268 +S'Man and Wife Seated by the Road with a Basket(Homme et femme assis au bord de la rou te aven un panier)' +p103809 +sg25270 +S'Alphonse Legros' +p103810 +sg25273 +S'etching' +p103811 +sg25275 +S'unknown date\n' +p103812 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c66.jpg' +p103813 +sg25267 +g27 +sa(dp103814 +g25268 +S'German Forest, Downley' +p103815 +sg25270 +S'Alphonse Legros' +p103816 +sg25273 +S'etching' +p103817 +sg25275 +S'unknown date\n' +p103818 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dfe.jpg' +p103819 +sg25267 +g27 +sa(dp103820 +g25268 +S'Man with a Punt, Figure to the Right (Pecheurs des truites)' +p103821 +sg25270 +S'Alphonse Legros' +p103822 +sg25273 +S'etching and drypoint? on light green paper' +p103823 +sg25275 +S'unknown date\n' +p103824 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d74.jpg' +p103825 +sg25267 +g27 +sa(dp103826 +g25268 +S'Head of an Old Man' +p103827 +sg25270 +S'Alphonse Legros' +p103828 +sg25273 +S'lithograph retouched with crayon' +p103829 +sg25275 +S'unknown date\n' +p103830 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d77.jpg' +p103831 +sg25267 +g27 +sa(dp103832 +g25268 +S'Man and Woman under a Tree' +p103833 +sg25270 +S'William Strang' +p103834 +sg25273 +S'drypoint and etching' +p103835 +sg25275 +S'unknown date\n' +p103836 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a30.jpg' +p103837 +sg25267 +g27 +sa(dp103838 +g25268 +S'Young Peasant (Jeune paysanne)' +p103839 +sg25270 +S'Alphonse Legros' +p103840 +sg25273 +S'lithograph in red' +p103841 +sg25275 +S'1904' +p103842 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d56.jpg' +p103843 +sg25267 +g27 +sa(dp103844 +g25268 +S'His Eminence Cardinal Manning, 1st plate' +p103845 +sg25270 +S'Alphonse Legros' +p103846 +sg25273 +S'etching and drypoint' +p103847 +sg25275 +S'unknown date\n' +p103848 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f9e.jpg' +p103849 +sg25267 +g27 +sa(dp103850 +g25268 +S"Reading of the Office of the Day (La lecture de l'office)" +p103851 +sg25270 +S'Alphonse Legros' +p103852 +sg25273 +S'drypoint' +p103853 +sg25275 +S'1868' +p103854 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b3b.jpg' +p103855 +sg25267 +g27 +sa(dp103856 +g25268 +S'Hercules Slaying the Lion of Nemea' +p103857 +sg25270 +S'Heinrich Aldegrever' +p103858 +sg25273 +g27 +sg25275 +S'1550' +p103859 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6c2.jpg' +p103860 +sg25267 +g27 +sa(dp103861 +g25268 +S"The Prodigal Son, 1st plate (L'enfant prodigue)" +p103862 +sg25270 +S'Alphonse Legros' +p103863 +sg25273 +S'etching and drypoint?' +p103864 +sg25275 +S'unknown date\n' +p103865 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b35.jpg' +p103866 +sg25267 +g27 +sa(dp103867 +g25268 +S'Death of the Vagabond (La mort du vagabond)' +p103868 +sg25270 +S'Alphonse Legros' +p103869 +sg25273 +S'etching, aquatint and drypoint' +p103870 +sg25275 +S'unknown date\n' +p103871 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f9a.jpg' +p103872 +sg25267 +g27 +sa(dp103873 +g25268 +S"Head of an English Laborer (Tete d'ouvrier anglais (Le berger))" +p103874 +sg25270 +S'Alphonse Legros' +p103875 +sg25273 +S'etching and drypoint' +p103876 +sg25275 +S'unknown date\n' +p103877 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098f1.jpg' +p103878 +sg25267 +g27 +sa(dp103879 +g25268 +S'Leon Gambetta, 2nd plate' +p103880 +sg25270 +S'Alphonse Legros' +p103881 +sg25273 +S'etching' +p103882 +sg25275 +S'unknown date\n' +p103883 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b67.jpg' +p103884 +sg25267 +g27 +sa(dp103885 +g25268 +S'Poet (Le poete)' +p103886 +sg25270 +S'Alphonse Legros' +p103887 +sg25273 +S'etching and aquatint' +p103888 +sg25275 +S'unknown date\n' +p103889 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b87.jpg' +p103890 +sg25267 +g27 +sa(dp103891 +g25268 +S"Egg-sellers, 2nd plate (Les marchandes d'oeufs)" +p103892 +sg25270 +S'Alphonse Legros' +p103893 +sg25273 +S'etching and drypoint' +p103894 +sg25275 +S'unknown date\n' +p103895 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000991c.jpg' +p103896 +sg25267 +g27 +sa(dp103897 +g25268 +S'Philospher (Le philosophe)' +p103898 +sg25270 +S'Alphonse Legros' +p103899 +sg25273 +S'etching? and drypoint' +p103900 +sg25275 +S'unknown date\n' +p103901 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000991e.jpg' +p103902 +sg25267 +g27 +sa(dp103903 +g25268 +S'Pigeon Tower (La tour aux pigeons)' +p103904 +sg25270 +S'Alphonse Legros' +p103905 +sg25273 +S'etching and drypoint' +p103906 +sg25275 +S'unknown date\n' +p103907 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b9b.jpg' +p103908 +sg25267 +g27 +sa(dp103909 +g25268 +S'Fording a River (Le gue)' +p103910 +sg25270 +S'Alphonse Legros' +p103911 +sg25273 +S'etching' +p103912 +sg25275 +S'unknown date\n' +p103913 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009be9.jpg' +p103914 +sg25267 +g27 +sa(dp103915 +g25268 +S"Banks of the Oise (Bord de l'Oise)" +p103916 +sg25270 +S'Alphonse Legros' +p103917 +sg25273 +S'etching? and drypoint' +p103918 +sg25275 +S'unknown date\n' +p103919 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b97.jpg' +p103920 +sg25267 +g27 +sa(dp103921 +g25268 +S'Hercules Killing Cacus' +p103922 +sg25270 +S'Heinrich Aldegrever' +p103923 +sg25273 +g27 +sg25275 +S'1550' +p103924 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6c3.jpg' +p103925 +sg25267 +g27 +sa(dp103926 +g25268 +S'Cardinal Manning, 2nd plate' +p103927 +sg25270 +S'Alphonse Legros' +p103928 +sg25273 +S'lithograph' +p103929 +sg25275 +S'unknown date\n' +p103930 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c37.jpg' +p103931 +sg25267 +g27 +sa(dp103932 +g25268 +S'Tolstoy' +p103933 +sg25270 +S'Alphonse Legros' +p103934 +sg25273 +S'drypoint and etching?' +p103935 +sg25275 +S'unknown date\n' +p103936 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c3a.jpg' +p103937 +sg25267 +g27 +sa(dp103938 +g25268 +S'H.W. Longfellow, 2nd plate' +p103939 +sg25270 +S'Alphonse Legros' +p103940 +sg25273 +S'transfer lithograph?' +p103941 +sg25275 +S'unknown date\n' +p103942 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c78.jpg' +p103943 +sg25267 +g27 +sa(dp103944 +g25268 +S'Valley of Dunes (La vallee des dunes)' +p103945 +sg25270 +S'Alphonse Legros' +p103946 +sg25273 +S'etching and drypoint' +p103947 +sg25275 +S'unknown date\n' +p103948 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d32.jpg' +p103949 +sg25267 +g27 +sa(dp103950 +g25268 +S'Mushroom Gatherers (Les ramasseurs de champignons)' +p103951 +sg25270 +S'Alphonse Legros' +p103952 +sg25273 +S'drypoint and etching?' +p103953 +sg25275 +S'unknown date\n' +p103954 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d34.jpg' +p103955 +sg25267 +g27 +sa(dp103956 +g25268 +S"Trees at Water's Edge (Les arbres au bord de l'eau)" +p103957 +sg25270 +S'Alphonse Legros' +p103958 +sg25273 +S'drypoint and etching?' +p103959 +sg25275 +S'unknown date\n' +p103960 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d41.jpg' +p103961 +sg25267 +g27 +sa(dp103962 +g25268 +S"Shepherd's Hut on a Hillside (Bergerie sur le coteau)" +p103963 +sg25270 +S'Alphonse Legros' +p103964 +sg25273 +S'etching and drypoint' +p103965 +sg25275 +S'unknown date\n' +p103966 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d47.jpg' +p103967 +sg25267 +g27 +sa(dp103968 +g25268 +S'Catharine' +p103969 +sg25270 +S'Robert Henri' +p103970 +sg25273 +S'oil on canvas' +p103971 +sg25275 +S'1913' +p103972 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000ee.jpg' +p103973 +sg25267 +g27 +sa(dp103974 +g25268 +S'Daniel Boardman' +p103975 +sg25270 +S'Ralph Earl' +p103976 +sg25273 +S'oil on canvas' +p103977 +sg25275 +S'1789' +p103978 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000098.jpg' +p103979 +sg25267 +g27 +sa(dp103980 +g25268 +S'Large Sacrifice to Priapus' +p103981 +sg25270 +S"Jacopo de' Barbari" +p103982 +sg25273 +S'engraving' +p103983 +sg25275 +S'c. 1499/1501' +p103984 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7a3.jpg' +p103985 +sg25267 +g27 +sa(dp103986 +g25268 +S'Hercules Fighting with the Hydra of Lernea' +p103987 +sg25270 +S'Heinrich Aldegrever' +p103988 +sg25273 +g27 +sg25275 +S'1550' +p103989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6c4.jpg' +p103990 +sg25267 +g27 +sa(dp103991 +g25268 +S'The Conversion of Saint Paul' +p103992 +sg25270 +S'Lucas van Leyden' +p103993 +sg25273 +S'engraving' +p103994 +sg25275 +S'1509' +p103995 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f4a.jpg' +p103996 +sg25267 +g27 +sa(dp103997 +g25268 +S'Interior of a Church' +p103998 +sg25270 +S'Peeter Neeffs the Elder' +p103999 +sg25273 +S'oil on copper' +p104000 +sg25275 +S'c. 1625/1630' +p104001 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f8e.jpg' +p104002 +sg25267 +g27 +sa(dp104003 +g25268 +S'Altar with the Virgin and Child and Saints Christopher, Barbara, George and Catherine' +p104004 +sg25270 +S'Albrecht Altdorfer' +p104005 +sg25273 +S'woodcut' +p104006 +sg25275 +S'c. 1520' +p104007 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b07f.jpg' +p104008 +sg25267 +g27 +sa(dp104009 +g25268 +S'Christ as the Man of Sorrows' +p104010 +sg25270 +S'Netherlandish 16th Century' +p104011 +sg25273 +S'Rosenwald Collection' +p104012 +sg25275 +S'\nhand-colored engraving' +p104013 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd07.jpg' +p104014 +sg25267 +g27 +sa(dp104015 +g25268 +S'Saint John' +p104016 +sg25270 +S'French 15th Century' +p104017 +sg25273 +S'overall: 17.8 x 12.5 cm (7 x 4 15/16 in.)' +p104018 +sg25275 +S'\ntempera and gold leaf on vellum' +p104019 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00025/a0002537.jpg' +p104020 +sg25267 +g27 +sa(dp104021 +g25268 +S'Saint Luke' +p104022 +sg25270 +S'French 15th Century' +p104023 +sg25273 +S'overall: 17.8 x 12.6 cm (7 x 4 15/16 in.)' +p104024 +sg25275 +S'\ntempera and gold leaf on vellum' +p104025 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00025/a0002538.jpg' +p104026 +sg25267 +g27 +sa(dp104027 +g25268 +S'Saint Mark' +p104028 +sg25270 +S'French 15th Century' +p104029 +sg25273 +S'overall: 17.9 x 12.8 cm (7 1/16 x 5 1/16 in.)' +p104030 +sg25275 +S'\ntempera and gold leaf on vellum' +p104031 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00025/a0002539.jpg' +p104032 +sg25267 +g27 +sa(dp104033 +g25268 +S'Saint Matthew' +p104034 +sg25270 +S'French 15th Century' +p104035 +sg25273 +S'overall: 17.8 x 12.7 cm (7 x 5 in.)' +p104036 +sg25275 +S'\ntempera and gold leaf on vellum' +p104037 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00025/a000253a.jpg' +p104038 +sg25267 +g27 +sa(dp104039 +g25268 +S'Hercules and Cerberus' +p104040 +sg25270 +S'Heinrich Aldegrever' +p104041 +sg25273 +g27 +sg25275 +S'1550' +p104042 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6c5.jpg' +p104043 +sg25267 +g27 +sa(dp104044 +g25268 +S'Saint Christopher' +p104045 +sg25270 +S'Master of the Dutuit Mount of Olives' +p104046 +sg25273 +S'hand-colored engraving on vellum' +p104047 +sg25275 +S'c. 1460' +p104048 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3d2.jpg' +p104049 +sg25267 +g27 +sa(dp104050 +g25268 +S'Carrack, Heading to the Right' +p104051 +sg25270 +S'Italian 15th Century' +p104052 +sg25273 +S'sheet: 23 x 15.4 cm (9 1/16 x 6 1/16 in.)' +p104053 +sg25275 +S'\nengraving' +p104054 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c72f.jpg' +p104055 +sg25267 +g27 +sa(dp104056 +g25273 +S'overall: 15 x 22.4 cm (5 7/8 x 8 13/16 in.)' +p104057 +sg25267 +g27 +sg25275 +S'\nengraved copper plate' +p104058 +sg25268 +S'Various Occupations [recto]' +p104059 +sg25270 +S'Italian 15th Century' +p104060 +sa(dp104061 +g25273 +S'overall: 15 x 22.4 cm (5 7/8 x 8 13/16 in.)' +p104062 +sg25267 +g27 +sg25275 +S'\nengraved copper plate' +p104063 +sg25268 +S'Allegory on Copulation [verso]' +p104064 +sg25270 +S'Italian 15th Century' +p104065 +sa(dp104066 +g25268 +S'Saint Lawrence' +p104067 +sg25270 +S'Master of the Murano Gradual' +p104068 +sg25273 +S'miniature on vellum' +p104069 +sg25275 +S'1440/1450' +p104070 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a000588c.jpg' +p104071 +sg25267 +g27 +sa(dp104072 +g25273 +S'overall: 18.4 x 12.7 cm (7 1/4 x 5 in.)' +p104073 +sg25267 +g27 +sg25275 +S'\nminiature on vellum' +p104074 +sg25268 +S'The Crucifixion' +p104075 +sg25270 +S'German 12th Century' +p104076 +sa(dp104077 +g25268 +S'Emperor Maximilian I' +p104078 +sg25270 +S'Artist Information (' +p104079 +sg25273 +S'Flemish, 1485 - 1544' +p104080 +sg25275 +S'(artist)' +p104081 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006202.jpg' +p104082 +sg25267 +g27 +sa(dp104083 +g25268 +S'The Lovers Surprised by Death' +p104084 +sg25270 +S'Artist Information (' +p104085 +sg25273 +S'Flemish, 1485 - 1544' +p104086 +sg25275 +S'(artist)' +p104087 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00010/a000106a.jpg' +p104088 +sg25267 +g27 +sa(dp104089 +g25268 +S'Virgin and Child in the Clouds' +p104090 +sg25270 +S'Hans Baldung Grien' +p104091 +sg25273 +S'woodcut' +p104092 +sg25275 +S'unknown date\n' +p104093 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7d6.jpg' +p104094 +sg25267 +g27 +sa(dp104095 +g25268 +S'The Risen Christ' +p104096 +sg25270 +S"Jacopo de' Barbari" +p104097 +sg25273 +S'engraving' +p104098 +sg25275 +S'c. 1503/1504' +p104099 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c79e.jpg' +p104100 +sg25267 +g27 +sa(dp104101 +g25268 +S'Hercules and Anthaeus' +p104102 +sg25270 +S'Heinrich Aldegrever' +p104103 +sg25273 +g27 +sg25275 +S'1550' +p104104 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6c8.jpg' +p104105 +sg25267 +g27 +sa(dp104106 +g25268 +S'Nude Woman Holding a Mirror (Allegory of Vanitas)' +p104107 +sg25270 +S"Jacopo de' Barbari" +p104108 +sg25273 +S'engraving' +p104109 +sg25275 +S'c. 1503/1504' +p104110 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a00061f2.jpg' +p104111 +sg25267 +g27 +sa(dp104112 +g25268 +S'Bookplate of Hieronymus Baumgartner' +p104113 +sg25270 +S'Barthel Beham' +p104114 +sg25273 +S'engraving' +p104115 +sg25275 +S'unknown date\n' +p104116 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7bf.jpg' +p104117 +sg25267 +g27 +sa(dp104118 +g25268 +S'Standard Bearer, Drummer, and Piper' +p104119 +sg25270 +S'Sebald Beham' +p104120 +sg25273 +S'engraving' +p104121 +sg25275 +S'1543' +p104122 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a863.jpg' +p104123 +sg25267 +g27 +sa(dp104124 +g25268 +S'The Annunciation to the Virgin' +p104125 +sg25270 +S'Belbello da Pavia' +p104126 +sg25273 +S'tempera and gold leaf on vellum' +p104127 +sg25275 +S'1450/1460' +p104128 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00022/a00022a7.jpg' +p104129 +sg25267 +g27 +sa(dp104130 +g25268 +S'The Raising of Lazarus' +p104131 +sg25270 +S'Jacques de Bellange' +p104132 +sg25273 +S', unknown date' +p104133 +sg25275 +S'\n' +p104134 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bf4.jpg' +p104135 +sg25267 +g27 +sa(dp104136 +g25273 +S'lithograph' +p104137 +sg25267 +g27 +sg25275 +S'1946' +p104138 +sg25268 +S'Swan Song' +p104139 +sg25270 +S'Alfred Bendiner' +p104140 +sa(dp104141 +g25273 +S'lithograph' +p104142 +sg25267 +g27 +sg25275 +S'1947' +p104143 +sg25268 +S'Maiden' +p104144 +sg25270 +S'Alfred Bendiner' +p104145 +sa(dp104146 +g25273 +S'lithograph' +p104147 +sg25267 +g27 +sg25275 +S'1947' +p104148 +sg25268 +S'Hero' +p104149 +sg25270 +S'Alfred Bendiner' +p104150 +sa(dp104151 +g25273 +S'lithograph' +p104152 +sg25267 +g27 +sg25275 +S'1946' +p104153 +sg25268 +S'Mardi Gras' +p104154 +sg25270 +S'Alfred Bendiner' +p104155 +sa(dp104156 +g25273 +S'lithograph' +p104157 +sg25267 +g27 +sg25275 +S'1947' +p104158 +sg25268 +S'Aida' +p104159 +sg25270 +S'Alfred Bendiner' +p104160 +sa(dp104161 +g25268 +S'Hercules Fighting the Rivergod Achelus' +p104162 +sg25270 +S'Heinrich Aldegrever' +p104163 +sg25273 +g27 +sg25275 +S'1550' +p104164 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6c6.jpg' +p104165 +sg25267 +g27 +sa(dp104166 +g25268 +S'Restrike from fragment of cancelled plate for"A Prophecy"' +p104167 +sg25270 +S'William Blake' +p104168 +sg25273 +S'relief etching//plate inked by transferring ink from another plate thinly coated with ink' +p104169 +sg25275 +S'1793' +p104170 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076dd.jpg' +p104171 +sg25267 +g27 +sa(dp104172 +g25268 +S'Restrike from fragment of cancelled plate for"A Prophecy"' +p104173 +sg25270 +S'William Blake' +p104174 +sg25273 +S'relief etching//effect of inking with an ordinary gelatin roller' +p104175 +sg25275 +S'1793' +p104176 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076dc.jpg' +p104177 +sg25267 +g27 +sa(dp104178 +g25268 +S'Restrike from fragment of cancelled plate for"A Prophecy"' +p104179 +sg25270 +S'William Blake' +p104180 +sg25273 +S'relief etching//intaglio print' +p104181 +sg25275 +S'1793' +p104182 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076db.jpg' +p104183 +sg25267 +g27 +sa(dp104184 +g25268 +S'Head of Saint John the Baptist' +p104185 +sg25270 +S'Thomas Butts, Jr.' +p104186 +sg25273 +S'etching//restrike impression from verso of Blake\'scancelled plate for "A Prophecy" (1943.3.1848.b)' +p104187 +sg25275 +S'unknown date\n' +p104188 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a000763e.jpg' +p104189 +sg25267 +g27 +sa(dp104190 +g25268 +S'Restrike from fragment of cancelled plate for"A Prophecy"' +p104191 +sg25270 +S'William Blake' +p104192 +sg25273 +S'relief etching//plate inked from a very stiff piece of card with ink rolled on to that in graduated color' +p104193 +sg25275 +S'1793' +p104194 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076da.jpg' +p104195 +sg25267 +g27 +sa(dp104196 +g25268 +S'Restrike from fragment of cancelled plate for"A Prophecy"' +p104197 +sg25270 +S'William Blake' +p104198 +sg25273 +S'relief etching//plate inked with black from card' +p104199 +sg25275 +S'1793' +p104200 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076d9.jpg' +p104201 +sg25267 +g27 +sa(dp104202 +g25268 +S'Restrike from fragment of cancelled plate for"A Prophecy"' +p104203 +sg25270 +S'William Blake' +p104204 +sg25273 +S'relief etching//pulled on colored background, madeby rolling up the other side of the plate with inks and running it through the press' +p104205 +sg25275 +S'1793' +p104206 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076d8.jpg' +p104207 +sg25267 +g27 +sa(dp104208 +g25268 +S'Engravers' +p104209 +sg25270 +S'Abraham Bosse' +p104210 +sg25273 +S'etching' +p104211 +sg25275 +S'1642' +p104212 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057f0.jpg' +p104213 +sg25267 +g27 +sa(dp104214 +g25268 +S'Christ Washing the Feet of the Apostles' +p104215 +sg25270 +S'Jacques Callot' +p104216 +sg25273 +S'etching' +p104217 +sg25275 +S'c. 1624/1625' +p104218 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000864c.jpg' +p104219 +sg25267 +g27 +sa(dp104220 +g25268 +S'The Last Supper' +p104221 +sg25270 +S'Jacques Callot' +p104222 +sg25273 +S'etching' +p104223 +sg25275 +S'c. 1624/1625' +p104224 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000864d.jpg' +p104225 +sg25267 +g27 +sa(dp104226 +g25268 +S'Hercules Slaying the Dragon' +p104227 +sg25270 +S'Heinrich Aldegrever' +p104228 +sg25273 +g27 +sg25275 +S'1550' +p104229 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6c9.jpg' +p104230 +sg25267 +g27 +sa(dp104231 +g25268 +S'The Agony in the Garden' +p104232 +sg25270 +S'Jacques Callot' +p104233 +sg25273 +S'etching' +p104234 +sg25275 +S'c. 1624/1625' +p104235 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008644.jpg' +p104236 +sg25267 +g27 +sa(dp104237 +g25268 +S'The Betrayal' +p104238 +sg25270 +S'Jacques Callot' +p104239 +sg25273 +S'etching' +p104240 +sg25275 +S'c. 1624/1625' +p104241 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008645.jpg' +p104242 +sg25267 +g27 +sa(dp104243 +g25268 +S'Christ Condemned to Death by Pilate' +p104244 +sg25270 +S'Jacques Callot' +p104245 +sg25273 +S'etching' +p104246 +sg25275 +S'c. 1624/1625' +p104247 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000863a.jpg' +p104248 +sg25267 +g27 +sa(dp104249 +g25268 +S'The Flagellation' +p104250 +sg25270 +S'Jacques Callot' +p104251 +sg25273 +S'etching' +p104252 +sg25275 +S'c. 1624/1625' +p104253 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000863b.jpg' +p104254 +sg25267 +g27 +sa(dp104255 +g25268 +S'Christ before Caiaphas' +p104256 +sg25270 +S'Jacques Callot' +p104257 +sg25273 +S'etching' +p104258 +sg25275 +S'c. 1624/1625' +p104259 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008648.jpg' +p104260 +sg25267 +g27 +sa(dp104261 +g25268 +S'The Crowning with Thorns' +p104262 +sg25270 +S'Jacques Callot' +p104263 +sg25273 +S'etching' +p104264 +sg25275 +S'c. 1624/1625' +p104265 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008649.jpg' +p104266 +sg25267 +g27 +sa(dp104267 +g25268 +S'Ecce Homo' +p104268 +sg25270 +S'Jacques Callot' +p104269 +sg25273 +S'etching' +p104270 +sg25275 +S'c. 1624/1625' +p104271 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008646.jpg' +p104272 +sg25267 +g27 +sa(dp104273 +g25268 +S'Christ Carrying the Cross' +p104274 +sg25270 +S'Jacques Callot' +p104275 +sg25273 +S'etching' +p104276 +sg25275 +S'c. 1624/1625' +p104277 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008647.jpg' +p104278 +sg25267 +g27 +sa(dp104279 +g25268 +S'Raising of the Cross' +p104280 +sg25270 +S'Jacques Callot' +p104281 +sg25273 +S'etching' +p104282 +sg25275 +S'c. 1624/1625' +p104283 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000864a.jpg' +p104284 +sg25267 +g27 +sa(dp104285 +g25268 +S'The Crucifixion' +p104286 +sg25270 +S'Jacques Callot' +p104287 +sg25273 +S'etching' +p104288 +sg25275 +S'c. 1624/1625' +p104289 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000864b.jpg' +p104290 +sg25267 +g27 +sa(dp104291 +g25268 +S'Hercules and Atlas' +p104292 +sg25270 +S'Heinrich Aldegrever' +p104293 +sg25273 +g27 +sg25275 +S'1550' +p104294 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6c7.jpg' +p104295 +sg25267 +g27 +sa(dp104296 +g25273 +S'1 vol: ill: 122 etched plates (four images on each plate) with title page and frontispiece' +p104297 +sg25267 +g27 +sg25275 +S'published 1636' +p104298 +sg25268 +S"Les Images de tous les Saints et Saintes de L'annee Suivant le Martyrologue Romain" +p104299 +sg25270 +S'Jacques Callot' +p104300 +sa(dp104301 +g25268 +S'The Bath [recto]' +p104302 +sg25270 +S'Mary Cassatt' +p104303 +sg25273 +S'graphite and black crayon' +p104304 +sg25275 +S'1891' +p104305 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e490.jpg' +p104306 +sg25267 +g27 +sa(dp104307 +g25273 +S'graphite over transferred soft-ground medium' +p104308 +sg25267 +g27 +sg25275 +S'1891' +p104309 +sg25268 +S'The Bath [verso]' +p104310 +sg25270 +S'Mary Cassatt' +p104311 +sa(dp104312 +g25268 +S'The Coiffure' +p104313 +sg25270 +S'Mary Cassatt' +p104314 +sg25273 +S'black crayon and graphite' +p104315 +sg25275 +S'1891' +p104316 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005c/a0005c93.jpg' +p104317 +sg25267 +g27 +sa(dp104318 +g25268 +S'In the Omnibus [recto]' +p104319 +sg25270 +S'Mary Cassatt' +p104320 +sg25273 +S'black chalk and graphite on wove paper' +p104321 +sg25275 +S'c. 1891' +p104322 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a00008b8.jpg' +p104323 +sg25267 +g27 +sa(dp104324 +g25268 +S'In the Omnibus [verso]' +p104325 +sg25270 +S'Mary Cassatt' +p104326 +sg25273 +S'transferred soft-ground medium on wove paper' +p104327 +sg25275 +S'c. 1891' +p104328 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a00008b9.jpg' +p104329 +sg25267 +g27 +sa(dp104330 +g25273 +S'drypoint' +p104331 +sg25267 +g27 +sg25275 +S'unknown date\n' +p104332 +sg25268 +S'Near Pasadena' +p104333 +sg25270 +S'Frank Tolles Chamberlin' +p104334 +sa(dp104335 +g25268 +S'The Cathedral of Florence (Le Dome florentin)' +p104336 +sg25270 +S'Jean-Baptiste-Camille Corot' +p104337 +sg25273 +S'etching' +p104338 +sg25275 +S'c. 1869/1870' +p104339 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009818.jpg' +p104340 +sg25267 +g27 +sa(dp104341 +g25273 +S'drypoint and roulette (zinc)' +p104342 +sg25267 +g27 +sg25275 +S'1946' +p104343 +sg25268 +S'Recumbent Figure' +p104344 +sg25270 +S'Pierre Courtin' +p104345 +sa(dp104346 +g25273 +S'engraving (copper)' +p104347 +sg25267 +g27 +sg25275 +S'1945' +p104348 +sg25268 +S'Recumbent Figure' +p104349 +sg25270 +S'Pierre Courtin' +p104350 +sa(dp104351 +g25268 +S'Hercules Preventing the Centaurs from the Rape of Hippodamia' +p104352 +sg25270 +S'Heinrich Aldegrever' +p104353 +sg25273 +g27 +sg25275 +S'1550' +p104354 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6ca.jpg' +p104355 +sg25267 +g27 +sa(dp104356 +g25268 +S'The Virgin and Child Adored by Frederic the Wise of Saxony' +p104357 +sg25270 +S'Lucas Cranach the Elder' +p104358 +sg25273 +S'woodcut' +p104359 +sg25275 +S'unknown date\n' +p104360 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0eb.jpg' +p104361 +sg25267 +g27 +sa(dp104362 +g25273 +S'(etcher)' +p104363 +sg25267 +g27 +sg25275 +S'\n' +p104364 +sg25268 +S'Saint George and the Dragon' +p104365 +sg25270 +S'Artist Information (' +p104366 +sa(dp104367 +g25268 +S"The Green Room (Le foyer de l'opera)" +p104368 +sg25270 +S'Edgar Degas' +p104369 +sg25273 +S'monotype (black ink)' +p104370 +sg25275 +S'c. 1880' +p104371 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d19.jpg' +p104372 +sg25267 +g27 +sa(dp104373 +g25268 +S'The Wise Virgin' +p104374 +sg25270 +S'Niklaus Manuel I' +p104375 +sg25273 +S'woodcut' +p104376 +sg25275 +S'1518' +p104377 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000efa5.jpg' +p104378 +sg25267 +g27 +sa(dp104379 +g25268 +S'The Foolish Virgin' +p104380 +sg25270 +S'Niklaus Manuel I' +p104381 +sg25273 +S'woodcut' +p104382 +sg25275 +S'1518' +p104383 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000efa6.jpg' +p104384 +sg25267 +g27 +sa(dp104385 +g25268 +S'Death and the Lansquenet' +p104386 +sg25270 +S'Albrecht D\xc3\xbcrer' +p104387 +sg25273 +S'woodcut' +p104388 +sg25275 +S'1510' +p104389 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b233.jpg' +p104390 +sg25267 +g27 +sa(dp104391 +g25268 +S'Christ on the Cross with Mary and Saint John' +p104392 +sg25270 +S'Albrecht D\xc3\xbcrer' +p104393 +sg25273 +S'woodcut' +p104394 +sg25275 +S'1510' +p104395 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b115.jpg' +p104396 +sg25267 +g27 +sa(dp104397 +g25273 +S'etching' +p104398 +sg25267 +g27 +sg25275 +S'1886' +p104399 +sg25268 +S'The Cathedral (La cathedrale)' +p104400 +sg25270 +S'James Ensor' +p104401 +sa(dp104402 +g25268 +S'Massachusetts Hall, Harvard College' +p104403 +sg25270 +S'Artist Information (' +p104404 +sg25273 +S'American, 1768 - 1847' +p104405 +sg25275 +S'(artist after)' +p104406 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00113/a00113f4.jpg' +p104407 +sg25267 +g27 +sa(dp104408 +g25268 +S'Massachusetts Hall, Harvard College' +p104409 +sg25270 +S'Artist Information (' +p104410 +sg25273 +S'American, 1768 - 1847' +p104411 +sg25275 +S'(artist after)' +p104412 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00113/a00113f5.jpg' +p104413 +sg25267 +g27 +sa(dp104414 +g25268 +S'Hercules Killing Nessus' +p104415 +sg25270 +S'Heinrich Aldegrever' +p104416 +sg25273 +g27 +sg25275 +S'1550' +p104417 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6cb.jpg' +p104418 +sg25267 +g27 +sa(dp104419 +g25268 +S'Massachusetts Hall, Harvard College' +p104420 +sg25270 +S'Artist Information (' +p104421 +sg25273 +S'American, 1768 - 1847' +p104422 +sg25275 +S'(artist after)' +p104423 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00113/a00113f6.jpg' +p104424 +sg25267 +g27 +sa(dp104425 +g25268 +S'Massachusetts Hall, Harvard College' +p104426 +sg25270 +S'Artist Information (' +p104427 +sg25273 +S'American, 1768 - 1847' +p104428 +sg25275 +S'(artist after)' +p104429 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00113/a00113f7.jpg' +p104430 +sg25267 +g27 +sa(dp104431 +g25268 +S'Massachusetts Hall, Harvard College' +p104432 +sg25270 +S'Artist Information (' +p104433 +sg25273 +S'American, 1768 - 1847' +p104434 +sg25275 +S'(artist after)' +p104435 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00113/a00113f8.jpg' +p104436 +sg25267 +g27 +sa(dp104437 +g25268 +S'Massachusetts Hall, Harvard College' +p104438 +sg25270 +S'Artist Information (' +p104439 +sg25273 +S'American, 1768 - 1847' +p104440 +sg25275 +S'(artist after)' +p104441 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00113/a00113f9.jpg' +p104442 +sg25267 +g27 +sa(dp104443 +g25268 +S'Massachusetts Hall, Harvard College' +p104444 +sg25270 +S'Artist Information (' +p104445 +sg25273 +S'American, 1768 - 1847' +p104446 +sg25275 +S'(artist after)' +p104447 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00113/a00113fa.jpg' +p104448 +sg25267 +g27 +sa(dp104449 +g25268 +S'Massachusetts Hall, Harvard College' +p104450 +sg25270 +S'Artist Information (' +p104451 +sg25273 +S'American, 1768 - 1847' +p104452 +sg25275 +S'(artist after)' +p104453 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00113/a00113fb.jpg' +p104454 +sg25267 +g27 +sa(dp104455 +g25268 +S'Massachusetts Hall, Harvard College' +p104456 +sg25270 +S'Artist Information (' +p104457 +sg25273 +S'American, 1768 - 1847' +p104458 +sg25275 +S'(artist after)' +p104459 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00113/a00113fc.jpg' +p104460 +sg25267 +g27 +sa(dp104461 +g25268 +S'Massachusetts Hall, Harvard College' +p104462 +sg25270 +S'Artist Information (' +p104463 +sg25273 +S'American, 1768 - 1847' +p104464 +sg25275 +S'(artist after)' +p104465 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00113/a00113fd.jpg' +p104466 +sg25267 +g27 +sa(dp104467 +g25268 +S'Massachusetts Hall, Harvard College' +p104468 +sg25270 +S'Artist Information (' +p104469 +sg25273 +S'American, 1768 - 1847' +p104470 +sg25275 +S'(artist after)' +p104471 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00113/a00113fe.jpg' +p104472 +sg25267 +g27 +sa(dp104473 +g25268 +S'Massachusetts Hall, Harvard College' +p104474 +sg25270 +S'Artist Information (' +p104475 +sg25273 +S'American, 1768 - 1847' +p104476 +sg25275 +S'(artist after)' +p104477 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00113/a00113ff.jpg' +p104478 +sg25267 +g27 +sa(dp104479 +g25268 +S'Hercules Carrying the Two Columns of Gaza' +p104480 +sg25270 +S'Heinrich Aldegrever' +p104481 +sg25273 +g27 +sg25275 +S'1550' +p104482 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6cc.jpg' +p104483 +sg25267 +g27 +sa(dp104484 +g25268 +S'Massachusetts Hall, Harvard College' +p104485 +sg25270 +S'Artist Information (' +p104486 +sg25273 +S'American, 1768 - 1847' +p104487 +sg25275 +S'(artist after)' +p104488 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a0011400.jpg' +p104489 +sg25267 +g27 +sa(dp104490 +g25268 +S'Massachusetts Hall, Harvard College' +p104491 +sg25270 +S'Artist Information (' +p104492 +sg25273 +S'American, 1768 - 1847' +p104493 +sg25275 +S'(artist after)' +p104494 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a0011401.jpg' +p104495 +sg25267 +g27 +sa(dp104496 +g25268 +S'Massachusetts Hall, Harvard College' +p104497 +sg25270 +S'Artist Information (' +p104498 +sg25273 +S'American, 1768 - 1847' +p104499 +sg25275 +S'(artist after)' +p104500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a0011402.jpg' +p104501 +sg25267 +g27 +sa(dp104502 +g25268 +S'Massachusetts Hall, Harvard College' +p104503 +sg25270 +S'Artist Information (' +p104504 +sg25273 +S'American, 1768 - 1847' +p104505 +sg25275 +S'(artist after)' +p104506 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a0011403.jpg' +p104507 +sg25267 +g27 +sa(dp104508 +g25268 +S'Massachusetts Hall, Harvard College' +p104509 +sg25270 +S'Artist Information (' +p104510 +sg25273 +S'American, 1768 - 1847' +p104511 +sg25275 +S'(artist after)' +p104512 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a0011404.jpg' +p104513 +sg25267 +g27 +sa(dp104514 +g25268 +S'Massachusetts Hall, Harvard College' +p104515 +sg25270 +S'Artist Information (' +p104516 +sg25273 +S'American, 1768 - 1847' +p104517 +sg25275 +S'(artist after)' +p104518 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a0011405.jpg' +p104519 +sg25267 +g27 +sa(dp104520 +g25268 +S'Massachusetts Hall, Harvard College' +p104521 +sg25270 +S'Artist Information (' +p104522 +sg25273 +S'American, 1768 - 1847' +p104523 +sg25275 +S'(artist after)' +p104524 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a0011406.jpg' +p104525 +sg25267 +g27 +sa(dp104526 +g25268 +S'Massachusetts Hall, Harvard College' +p104527 +sg25270 +S'Artist Information (' +p104528 +sg25273 +S'American, 1768 - 1847' +p104529 +sg25275 +S'(artist after)' +p104530 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a0011407.jpg' +p104531 +sg25267 +g27 +sa(dp104532 +g25268 +S'Massachusetts Hall, Harvard College' +p104533 +sg25270 +S'Artist Information (' +p104534 +sg25273 +S'American, 1768 - 1847' +p104535 +sg25275 +S'(artist after)' +p104536 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a0011408.jpg' +p104537 +sg25267 +g27 +sa(dp104538 +g25268 +S'Massachusetts Hall, Harvard College' +p104539 +sg25270 +S'Artist Information (' +p104540 +sg25273 +S'American, 1768 - 1847' +p104541 +sg25275 +S'(artist after)' +p104542 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a0011409.jpg' +p104543 +sg25267 +g27 +sa(dp104544 +g25268 +S'Hercules and the Hind' +p104545 +sg25270 +S'Heinrich Aldegrever' +p104546 +sg25273 +g27 +sg25275 +S'1550' +p104547 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6cd.jpg' +p104548 +sg25267 +g27 +sa(dp104549 +g25268 +S'Massachusetts Hall, Harvard College' +p104550 +sg25270 +S'Artist Information (' +p104551 +sg25273 +S'American, 1768 - 1847' +p104552 +sg25275 +S'(artist after)' +p104553 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a001140a.jpg' +p104554 +sg25267 +g27 +sa(dp104555 +g25268 +S'Massachusetts Hall, Harvard College' +p104556 +sg25270 +S'Artist Information (' +p104557 +sg25273 +S'American, 1768 - 1847' +p104558 +sg25275 +S'(artist after)' +p104559 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a001140b.jpg' +p104560 +sg25267 +g27 +sa(dp104561 +g25268 +S'Massachusetts Hall, Harvard College' +p104562 +sg25270 +S'Artist Information (' +p104563 +sg25273 +S'American, 1768 - 1847' +p104564 +sg25275 +S'(artist after)' +p104565 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a001140c.jpg' +p104566 +sg25267 +g27 +sa(dp104567 +g25268 +S'Massachusetts Hall, Harvard College' +p104568 +sg25270 +S'Artist Information (' +p104569 +sg25273 +S'American, 1768 - 1847' +p104570 +sg25275 +S'(artist after)' +p104571 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a001140d.jpg' +p104572 +sg25267 +g27 +sa(dp104573 +g25268 +S'Massachusetts Hall, Harvard College' +p104574 +sg25270 +S'Artist Information (' +p104575 +sg25273 +S'American, 1768 - 1847' +p104576 +sg25275 +S'(artist after)' +p104577 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a001140e.jpg' +p104578 +sg25267 +g27 +sa(dp104579 +g25268 +S'Massachusetts Hall, Harvard College' +p104580 +sg25270 +S'Artist Information (' +p104581 +sg25273 +S'American, 1768 - 1847' +p104582 +sg25275 +S'(artist after)' +p104583 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a001140f.jpg' +p104584 +sg25267 +g27 +sa(dp104585 +g25268 +S'Massachusetts Hall, Harvard College' +p104586 +sg25270 +S'Artist Information (' +p104587 +sg25273 +S'American, 1768 - 1847' +p104588 +sg25275 +S'(artist after)' +p104589 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a0011410.jpg' +p104590 +sg25267 +g27 +sa(dp104591 +g25268 +S'Massachusetts Hall, Harvard College' +p104592 +sg25270 +S'Artist Information (' +p104593 +sg25273 +S'American, 1768 - 1847' +p104594 +sg25275 +S'(artist after)' +p104595 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a0011411.jpg' +p104596 +sg25267 +g27 +sa(dp104597 +g25268 +S'Massachusetts Hall, Harvard College' +p104598 +sg25270 +S'Artist Information (' +p104599 +sg25273 +S'American, 1768 - 1847' +p104600 +sg25275 +S'(artist after)' +p104601 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a0011413.jpg' +p104602 +sg25267 +g27 +sa(dp104603 +g25268 +S'Massachusetts Hall, Harvard College' +p104604 +sg25270 +S'Artist Information (' +p104605 +sg25273 +S'American, 1768 - 1847' +p104606 +sg25275 +S'(artist after)' +p104607 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a0011412.jpg' +p104608 +sg25267 +g27 +sa(dp104609 +g25268 +S'Faith' +p104610 +sg25270 +S'Heinrich Aldegrever' +p104611 +sg25273 +g27 +sg25275 +S'1528' +p104612 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6fb.jpg' +p104613 +sg25267 +g27 +sa(dp104614 +g25268 +S'Massachusetts Hall, Harvard College' +p104615 +sg25270 +S'Artist Information (' +p104616 +sg25273 +S'American, 1768 - 1847' +p104617 +sg25275 +S'(artist after)' +p104618 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a0011414.jpg' +p104619 +sg25267 +g27 +sa(dp104620 +g25268 +S'Massachusetts Hall, Harvard College' +p104621 +sg25270 +S'Artist Information (' +p104622 +sg25273 +S'American, 1768 - 1847' +p104623 +sg25275 +S'(artist after)' +p104624 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a0011415.jpg' +p104625 +sg25267 +g27 +sa(dp104626 +g25268 +S'Massachusetts Hall, Harvard College' +p104627 +sg25270 +S'Artist Information (' +p104628 +sg25273 +S'American, 1768 - 1847' +p104629 +sg25275 +S'(artist after)' +p104630 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a0011416.jpg' +p104631 +sg25267 +g27 +sa(dp104632 +g25268 +S'Massachusetts Hall, Harvard College' +p104633 +sg25270 +S'Artist Information (' +p104634 +sg25273 +S'American, 1768 - 1847' +p104635 +sg25275 +S'(artist after)' +p104636 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a0011417.jpg' +p104637 +sg25267 +g27 +sa(dp104638 +g25268 +S'Massachusetts Hall, Harvard College' +p104639 +sg25270 +S'Artist Information (' +p104640 +sg25273 +S'American, 1768 - 1847' +p104641 +sg25275 +S'(artist after)' +p104642 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a0011418.jpg' +p104643 +sg25267 +g27 +sa(dp104644 +g25268 +S'Massachusetts Hall, Harvard College' +p104645 +sg25270 +S'Artist Information (' +p104646 +sg25273 +S'American, 1768 - 1847' +p104647 +sg25275 +S'(artist after)' +p104648 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a0011419.jpg' +p104649 +sg25267 +g27 +sa(dp104650 +g25268 +S'Massachusetts Hall, Harvard College' +p104651 +sg25270 +S'Artist Information (' +p104652 +sg25273 +S'American, 1768 - 1847' +p104653 +sg25275 +S'(artist after)' +p104654 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a001141a.jpg' +p104655 +sg25267 +g27 +sa(dp104656 +g25268 +S'Massachusetts Hall, Harvard College' +p104657 +sg25270 +S'Artist Information (' +p104658 +sg25273 +S'American, 1768 - 1847' +p104659 +sg25275 +S'(artist after)' +p104660 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00114/a001141b.jpg' +p104661 +sg25267 +g27 +sa(dp104662 +g25268 +S'Title Page for "Livre d\'oiseaux"' +p104663 +sg25270 +S'Albert Flamen' +p104664 +sg25273 +S'etching' +p104665 +sg25275 +S'unknown date\n' +p104666 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d208.jpg' +p104667 +sg25267 +g27 +sa(dp104668 +g25268 +S'Vanellus, The Lapwing' +p104669 +sg25270 +S'Albert Flamen' +p104670 +sg25273 +S'etching' +p104671 +sg25275 +S'unknown date\n' +p104672 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d212.jpg' +p104673 +sg25267 +g27 +sa(dp104674 +g25268 +S'Three Musicians' +p104675 +sg25270 +S'Heinrich Aldegrever' +p104676 +sg25273 +S'engraving' +p104677 +sg25275 +S'1551' +p104678 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6a5.jpg' +p104679 +sg25267 +g27 +sa(dp104680 +g25268 +S'Querpedula, The Teal' +p104681 +sg25270 +S'Albert Flamen' +p104682 +sg25273 +S'etching' +p104683 +sg25275 +S'unknown date\n' +p104684 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d213.jpg' +p104685 +sg25267 +g27 +sa(dp104686 +g25268 +S'Pedrix rubra, The Red-Legged Partridge' +p104687 +sg25270 +S'Albert Flamen' +p104688 +sg25273 +S'etching' +p104689 +sg25275 +S'unknown date\n' +p104690 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d209.jpg' +p104691 +sg25267 +g27 +sa(dp104692 +g25268 +S'Ficedula, The Bullfinch' +p104693 +sg25270 +S'Albert Flamen' +p104694 +sg25273 +S'etching' +p104695 +sg25275 +S'unknown date\n' +p104696 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d20a.jpg' +p104697 +sg25267 +g27 +sa(dp104698 +g25268 +S'Rusticula, The Woodcock' +p104699 +sg25270 +S'Albert Flamen' +p104700 +sg25273 +S'etching' +p104701 +sg25275 +S'unknown date\n' +p104702 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d20b.jpg' +p104703 +sg25267 +g27 +sa(dp104704 +g25268 +S'Rusticula minor, The Snipe' +p104705 +sg25270 +S'Albert Flamen' +p104706 +sg25273 +S'etching' +p104707 +sg25275 +S'unknown date\n' +p104708 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d20c.jpg' +p104709 +sg25267 +g27 +sa(dp104710 +g25268 +S'Ortygometra, The Rail' +p104711 +sg25270 +S'Albert Flamen' +p104712 +sg25273 +S'etching' +p104713 +sg25275 +S'unknown date\n' +p104714 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d20d.jpg' +p104715 +sg25267 +g27 +sa(dp104716 +g25268 +S'Carduelis, The Goldfinch' +p104717 +sg25270 +S'Albert Flamen' +p104718 +sg25273 +S'etching' +p104719 +sg25275 +S'unknown date\n' +p104720 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d20e.jpg' +p104721 +sg25267 +g27 +sa(dp104722 +g25268 +S'Alcedo, The Kingfisher' +p104723 +sg25270 +S'Albert Flamen' +p104724 +sg25273 +S'etching' +p104725 +sg25275 +S'unknown date\n' +p104726 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d20f.jpg' +p104727 +sg25267 +g27 +sa(dp104728 +g25268 +S'Garrulus, The Jay' +p104729 +sg25270 +S'Albert Flamen' +p104730 +sg25273 +S'etching' +p104731 +sg25275 +S'unknown date\n' +p104732 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d210.jpg' +p104733 +sg25267 +g27 +sa(dp104734 +g25268 +S'Monedula, The Owl' +p104735 +sg25270 +S'Albert Flamen' +p104736 +sg25273 +S'etching' +p104737 +sg25275 +S'unknown date\n' +p104738 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d211.jpg' +p104739 +sg25267 +g27 +sa(dp104740 +g25268 +S'Dancing Couple' +p104741 +sg25270 +S'Heinrich Aldegrever' +p104742 +sg25273 +S'engraving' +p104743 +sg25275 +S'1551' +p104744 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6a2.jpg' +p104745 +sg25267 +g27 +sa(dp104746 +g25268 +S'Moresques and Damasquines' +p104747 +sg25270 +S'Peter Fl\xc3\xb6tner' +p104748 +sg25273 +S'1 vol: ill: 46 pages of wood engravings' +p104749 +sg25275 +S'1546' +p104750 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004cc7.jpg' +p104751 +sg25267 +g27 +sa(dp104752 +g25268 +S'Eve' +p104753 +sg25270 +S'Paul Gauguin' +p104754 +sg25273 +S'woodcut on japan paper' +p104755 +sg25275 +S'in or after 1895' +p104756 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066ba.jpg' +p104757 +sg25267 +g27 +sa(dp104758 +g25268 +S'Women, Animals and Foliage (Femmes, animaux et feuillages)' +p104759 +sg25270 +S'Paul Gauguin' +p104760 +sg25273 +S'woodcut in black' +p104761 +sg25275 +S'in or after 1895' +p104762 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a83.jpg' +p104763 +sg25267 +g27 +sa(dp104764 +g25268 +S'Te Arii Vahine (Lady of Royal Blood)' +p104765 +sg25270 +S'Paul Gauguin' +p104766 +sg25273 +S'woodcut on japan paper, adhered along top and bottom edges to mount' +p104767 +sg25275 +S'in or after 1895' +p104768 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a0006687.jpg' +p104769 +sg25267 +g27 +sa(dp104770 +g25273 +S'etching' +p104771 +sg25267 +g27 +sg25275 +S'1948' +p104772 +sg25268 +S'Express Stop' +p104773 +sg25270 +S'Douglas Warner Gorsline' +p104774 +sa(dp104775 +g25268 +S'Aesopvs (Aesop)' +p104776 +sg25270 +S'Artist Information (' +p104777 +sg25273 +S'(artist after)' +p104778 +sg25275 +S'\n' +p104779 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed6c.jpg' +p104780 +sg25267 +g27 +sa(dp104781 +g25273 +S'brush and black ink on (oriental?) paper' +p104782 +sg25267 +g27 +sg25275 +S'unknown date\n' +p104783 +sg25268 +S'In Conquered Territory' +p104784 +sg25270 +S'Richard Haines' +p104785 +sa(dp104786 +g25273 +S'brush with black and gray ink on (oriental?) paper' +p104787 +sg25267 +g27 +sg25275 +S'unknown date\n' +p104788 +sg25268 +S'Machine Gun Nest' +p104789 +sg25270 +S'Richard Haines' +p104790 +sa(dp104791 +g25273 +S'brush and black ink on (oriental?) paper' +p104792 +sg25267 +g27 +sg25275 +S'unknown date\n' +p104793 +sg25268 +S'The Patrol' +p104794 +sg25270 +S'Richard Haines' +p104795 +sa(dp104796 +g25273 +S'engraving on laid paper' +p104797 +sg25267 +g27 +sg25275 +S'unknown date\n' +p104798 +sg25268 +S'Rabbits (Lapins)' +p104799 +sg25270 +S'Joseph Hecht' +p104800 +sa(dp104801 +g25268 +S'Dancing Couple' +p104802 +sg25270 +S'Heinrich Aldegrever' +p104803 +sg25273 +S'engraving' +p104804 +sg25275 +S'1551' +p104805 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6a6.jpg' +p104806 +sg25267 +g27 +sa(dp104807 +g25273 +S'engraving on thin laid paper' +p104808 +sg25267 +g27 +sg25275 +S'unknown date\n' +p104809 +sg25268 +S"Bird (L'oiseau)" +p104810 +sg25270 +S'Joseph Hecht' +p104811 +sa(dp104812 +g25268 +S'River Landscape with Wooden Bridge' +p104813 +sg25270 +S'Augustin Hirschvogel' +p104814 +sg25273 +S'etching' +p104815 +sg25275 +S'1546' +p104816 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abbe.jpg' +p104817 +sg25267 +g27 +sa(dp104818 +g25268 +S'Rich Man' +p104819 +sg25270 +S'Hans Holbein the Younger' +p104820 +sg25273 +S'woodcut' +p104821 +sg25275 +S'unknown date\n' +p104822 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac79.jpg' +p104823 +sg25267 +g27 +sa(dp104824 +g25268 +S'Merchant' +p104825 +sg25270 +S'Hans Holbein the Younger' +p104826 +sg25273 +S'woodcut' +p104827 +sg25275 +S'unknown date\n' +p104828 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac78.jpg' +p104829 +sg25267 +g27 +sa(dp104830 +g25268 +S'Queen' +p104831 +sg25270 +S'Hans Holbein the Younger' +p104832 +sg25273 +S'woodcut' +p104833 +sg25275 +S'unknown date\n' +p104834 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac91.jpg' +p104835 +sg25267 +g27 +sa(dp104836 +g25268 +S'The Annunciation to Zacharias' +p104837 +sg25270 +S'Italian 15th Century' +p104838 +sg25273 +S'overall: 22.1 x 14.7 cm (8 11/16 x 5 13/16 in.)' +p104839 +sg25275 +S'\nminiature on vellum' +p104840 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa81.jpg' +p104841 +sg25267 +g27 +sa(dp104842 +g25273 +S'etching' +p104843 +sg25267 +g27 +sg25275 +S'1947' +p104844 +sg25268 +S'Two Figures' +p104845 +sg25270 +S'Paul Wieghardt' +p104846 +sa(dp104847 +g25268 +S'Landscape with Brigands (Sc\xc3\xa8ne de brigands)' +p104848 +sg25270 +S'Claude Lorrain' +p104849 +sg25273 +S'etching and drypoint' +p104850 +sg25275 +S'1633' +p104851 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a00089ab.jpg' +p104852 +sg25267 +g27 +sa(dp104853 +g25268 +S'Bacchus on a Donkey' +p104854 +sg25270 +S'Master IS.' +p104855 +sg25273 +S'punch engraving' +p104856 +sg25275 +S'unknown date\n' +p104857 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad02.jpg' +p104858 +sg25267 +g27 +sa(dp104859 +g25268 +S'Bacchus in a Cart' +p104860 +sg25270 +S'Master IS.' +p104861 +sg25273 +S'punch engraving' +p104862 +sg25275 +S'unknown date\n' +p104863 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad03.jpg' +p104864 +sg25267 +g27 +sa(dp104865 +g25268 +S'Dancing Couple' +p104866 +sg25270 +S'Heinrich Aldegrever' +p104867 +sg25273 +S'engraving' +p104868 +sg25275 +S'1551' +p104869 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6a8.jpg' +p104870 +sg25267 +g27 +sa(dp104871 +g25268 +S'Apollo and Daphne' +p104872 +sg25270 +S'Master IS.' +p104873 +sg25273 +S'punch engraving' +p104874 +sg25275 +S'1582' +p104875 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acf3.jpg' +p104876 +sg25267 +g27 +sa(dp104877 +g25268 +S'Neptune and Arethusa' +p104878 +sg25270 +S'Master IS.' +p104879 +sg25273 +S'punch engraving' +p104880 +sg25275 +S'unknown date\n' +p104881 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acf4.jpg' +p104882 +sg25267 +g27 +sa(dp104883 +g25268 +S'The Jack of Parrots' +p104884 +sg25270 +S'Master PW of Cologne' +p104885 +sg25273 +S'engraving' +p104886 +sg25275 +S'c. 1500' +p104887 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a40d.jpg' +p104888 +sg25267 +g27 +sa(dp104889 +g25268 +S'Saint Dominic' +p104890 +sg25270 +S'Master S' +p104891 +sg25273 +S'engraving' +p104892 +sg25275 +S'unknown date\n' +p104893 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cea6.jpg' +p104894 +sg25267 +g27 +sa(dp104895 +g25273 +S'lithograph' +p104896 +sg25267 +g27 +sg25275 +S'1913' +p104897 +sg25268 +S'Black Eyes (Les yeux noirs)' +p104898 +sg25270 +S'Henri Matisse' +p104899 +sa(dp104900 +g25273 +S'lithograph' +p104901 +sg25267 +g27 +sg25275 +S'1924' +p104902 +sg25268 +S'Reclining Nude with Louis XIV Screen (Nu couch\xc3\xa9 au paravent Louis XIV)' +p104903 +sg25270 +S'Henri Matisse' +p104904 +sa(dp104905 +g25273 +S'lithograph' +p104906 +sg25267 +g27 +sg25275 +S'1929' +p104907 +sg25268 +S'Seated Oriental (Orientale \xc3\xa0 la croix trifoli\xc3\xa9e)' +p104908 +sg25270 +S'Henri Matisse' +p104909 +sa(dp104910 +g25273 +S'lithograph' +p104911 +sg25267 +g27 +sg25275 +S'1929' +p104912 +sg25268 +S'Hindu with Tulle Skirt (Hindoue \xc3\xa0 la jupe de tulle)' +p104913 +sg25270 +S'Henri Matisse' +p104914 +sa(dp104915 +g25273 +S'lithograph' +p104916 +sg25267 +g27 +sg25275 +S'1924' +p104917 +sg25268 +S'Seated Odalisque with Tulle Skirt (Odalisque assis \xc3\xa0 la jupe de tulle)' +p104918 +sg25270 +S'Henri Matisse' +p104919 +sa(dp104920 +g25273 +S'lithograph' +p104921 +sg25267 +g27 +sg25275 +S'1925' +p104922 +sg25268 +S'Odalisque with Red Satin Culottes (Odalisque \xc3\xa0 la culotte de satin rouge)' +p104923 +sg25270 +S'Henri Matisse' +p104924 +sa(dp104925 +g25268 +S'Dancing Couple' +p104926 +sg25270 +S'Heinrich Aldegrever' +p104927 +sg25273 +S'engraving' +p104928 +sg25275 +S'1551' +p104929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6a7.jpg' +p104930 +sg25267 +g27 +sa(dp104931 +g25273 +S'lithograph' +p104932 +sg25267 +g27 +sg25275 +S'1923' +p104933 +sg25268 +S'Reader (Grande liseuse)' +p104934 +sg25270 +S'Henri Matisse' +p104935 +sa(dp104936 +g25273 +S'soft-ground etching' +p104937 +sg25267 +g27 +sg25275 +S'1934' +p104938 +sg25268 +S'Calypso' +p104939 +sg25270 +S'Henri Matisse' +p104940 +sa(dp104941 +g25273 +S'soft-ground etching' +p104942 +sg25267 +g27 +sg25275 +S'1934' +p104943 +sg25268 +S'\xc3\x89ole' +p104944 +sg25270 +S'Henri Matisse' +p104945 +sa(dp104946 +g25273 +S'soft-ground etching' +p104947 +sg25267 +g27 +sg25275 +S'1934' +p104948 +sg25268 +S'Polyph\xc3\xa8me' +p104949 +sg25270 +S'Henri Matisse' +p104950 +sa(dp104951 +g25273 +S'soft-ground etching' +p104952 +sg25267 +g27 +sg25275 +S'1934' +p104953 +sg25268 +S'Nausicaa' +p104954 +sg25270 +S'Henri Matisse' +p104955 +sa(dp104956 +g25273 +S'soft-ground etching' +p104957 +sg25267 +g27 +sg25275 +S'1934' +p104958 +sg25268 +S'Circ\xc3\xa9' +p104959 +sg25270 +S'Henri Matisse' +p104960 +sa(dp104961 +g25273 +S'soft-ground etching' +p104962 +sg25267 +g27 +sg25275 +S'1934' +p104963 +sg25268 +S'Ithaque' +p104964 +sg25270 +S'Henri Matisse' +p104965 +sa(dp104966 +g25273 +S'lithograph' +p104967 +sg25267 +g27 +sg25275 +S'1924' +p104968 +sg25268 +S'Face in Profile Resting on an Arm before a Louis XIV Screen (Visage de profil reposant sur un bras, paravent Louis XIV)' +p104969 +sg25270 +S'Henri Matisse' +p104970 +sa(dp104971 +g25268 +S'Antoinette with Long Hair' +p104972 +sg25270 +S'Henri Matisse' +p104973 +sg25273 +S'graphite on wove paper' +p104974 +sg25275 +S'c. 1919' +p104975 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00021/a000217b.jpg' +p104976 +sg25267 +g27 +sa(dp104977 +g25273 +S'lithograph' +p104978 +sg25267 +g27 +sg25275 +S'1923' +p104979 +sg25268 +S'Young Girl Leaning against a Flowered Screen (Jeune fille accoud\xc3\xa9e au paravent fleuri)' +p104980 +sg25270 +S'Henri Matisse' +p104981 +sa(dp104982 +g25268 +S'Dancing Couple' +p104983 +sg25270 +S'Heinrich Aldegrever' +p104984 +sg25273 +S'engraving' +p104985 +sg25275 +S'1551' +p104986 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6a9.jpg' +p104987 +sg25267 +g27 +sa(dp104988 +g25273 +S'miniature on vellum' +p104989 +sg25267 +g27 +sg25275 +S'c. 1385' +p104990 +sg25268 +S'Saint Susanna' +p104991 +sg25270 +S'Matteo di ser Cambio di Bettolo' +p104992 +sa(dp104993 +g25273 +S'miniature on vellum' +p104994 +sg25267 +g27 +sg25275 +S'c. 1385' +p104995 +sg25268 +S'Saint James' +p104996 +sg25270 +S'Matteo di ser Cambio di Bettolo' +p104997 +sa(dp104998 +g25273 +S'lithograph' +p104999 +sg25267 +g27 +sg25275 +S'unknown date\n' +p105000 +sg25268 +S'Man and Machinery' +p105001 +sg25270 +S'Paul Raphael Meltsner' +p105002 +sa(dp105003 +g25273 +S'color lithograph' +p105004 +sg25267 +g27 +sg25275 +S'unknown date\n' +p105005 +sg25268 +S'Clio Hall, Princeton' +p105006 +sg25270 +S'John Conway Menihan' +p105007 +sa(dp105008 +g25273 +S'aquatint' +p105009 +sg25267 +g27 +sg25275 +S'unknown date\n' +p105010 +sg25268 +S'Stanhope and Reunion' +p105011 +sg25270 +S'George Joseph Mess' +p105012 +sa(dp105013 +g25268 +S'Title Page: Large Pendant, Venus and Amor at Centre' +p105014 +sg25270 +S'Daniel Mignot' +p105015 +sg25273 +S'engraving' +p105016 +sg25275 +S'1596' +p105017 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad1e.jpg' +p105018 +sg25267 +g27 +sa(dp105019 +g25268 +S'Large Strapwork Pendant with Two Hangers as Earrings at Left and Right' +p105020 +sg25270 +S'Daniel Mignot' +p105021 +sg25273 +S'engraving' +p105022 +sg25275 +S'unknown date\n' +p105023 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad3c.jpg' +p105024 +sg25267 +g27 +sa(dp105025 +g25268 +S'Large Pendant with Star at Centre' +p105026 +sg25270 +S'Daniel Mignot' +p105027 +sg25273 +S'engraving' +p105028 +sg25275 +S'unknown date\n' +p105029 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad41.jpg' +p105030 +sg25267 +g27 +sa(dp105031 +g25268 +S'Large Pendant, Three Nude Women with Twigs at Centre' +p105032 +sg25270 +S'Daniel Mignot' +p105033 +sg25273 +S'engraving' +p105034 +sg25275 +S'1596' +p105035 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad20.jpg' +p105036 +sg25267 +g27 +sa(dp105037 +g25268 +S'Strapwork Pendant with Two Birds as Earrings at Left and Right' +p105038 +sg25270 +S'Daniel Mignot' +p105039 +sg25273 +S'engraving' +p105040 +sg25275 +S'unknown date\n' +p105041 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad38.jpg' +p105042 +sg25267 +g27 +sa(dp105043 +g25268 +S'Dancing Couple' +p105044 +sg25270 +S'Heinrich Aldegrever' +p105045 +sg25273 +S'engraving' +p105046 +sg25275 +S'1551' +p105047 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6a3.jpg' +p105048 +sg25267 +g27 +sa(dp105049 +g25268 +S'Large Pendant with Two Double Crosses, Surrounded by Six Large and Sixteen Small Table-Stones' +p105050 +sg25270 +S'Daniel Mignot' +p105051 +sg25273 +S'engraving' +p105052 +sg25275 +S'unknown date\n' +p105053 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad45.jpg' +p105054 +sg25267 +g27 +sa(dp105055 +g25268 +S'Large Pendant, Flora Standing, Holding a Fruit Garland' +p105056 +sg25270 +S'Daniel Mignot' +p105057 +sg25273 +S'engraving' +p105058 +sg25275 +S'1596' +p105059 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad1f.jpg' +p105060 +sg25267 +g27 +sa(dp105061 +g25268 +S'Strapwork Pendant with Two Eagles as Earringsat Left and Right' +p105062 +sg25270 +S'Daniel Mignot' +p105063 +sg25273 +S'engraving' +p105064 +sg25275 +S'unknown date\n' +p105065 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad39.jpg' +p105066 +sg25267 +g27 +sa(dp105067 +g25268 +S'Large Pendant in the Form of a Wheel' +p105068 +sg25270 +S'Daniel Mignot' +p105069 +sg25273 +S'engraving' +p105070 +sg25275 +S'unknown date\n' +p105071 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad40.jpg' +p105072 +sg25267 +g27 +sa(dp105073 +g25268 +S'Large Pendant, Victory Flanked by Two Herms at Centre' +p105074 +sg25270 +S'Daniel Mignot' +p105075 +sg25273 +S'engraving' +p105076 +sg25275 +S'1596' +p105077 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad21.jpg' +p105078 +sg25267 +g27 +sa(dp105079 +g25268 +S'Strapwork Pendant with Two Swans as Earrings at Left and Right' +p105080 +sg25270 +S'Daniel Mignot' +p105081 +sg25273 +S'engraving' +p105082 +sg25275 +S'unknown date\n' +p105083 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad3a.jpg' +p105084 +sg25267 +g27 +sa(dp105085 +g25268 +S'Large Pendant' +p105086 +sg25270 +S'Daniel Mignot' +p105087 +sg25273 +S'engraving' +p105088 +sg25275 +S'unknown date\n' +p105089 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad3f.jpg' +p105090 +sg25267 +g27 +sa(dp105091 +g25268 +S'Large Pendant, Winged Fantasy Creature Holding Two Snakes' +p105092 +sg25270 +S'Daniel Mignot' +p105093 +sg25273 +S'engraving' +p105094 +sg25275 +S'1596' +p105095 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad23.jpg' +p105096 +sg25267 +g27 +sa(dp105097 +g25268 +S'Strapwork Pendant with Three Drops and Two Cross-Shaped Pendants as Earrings at Left and Right' +p105098 +sg25270 +S'Daniel Mignot' +p105099 +sg25273 +S'engraving' +p105100 +sg25275 +S'unknown date\n' +p105101 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad3d.jpg' +p105102 +sg25267 +g27 +sa(dp105103 +g25268 +S'Pendant with Two Double Crosses, Surrounded by Four Diamond-Shaped Stones, Five Table-Stones, and Thirteen Pearls' +p105104 +sg25270 +S'Daniel Mignot' +p105105 +sg25273 +S'engraving' +p105106 +sg25275 +S'unknown date\n' +p105107 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad46.jpg' +p105108 +sg25267 +g27 +sa(dp105109 +g25268 +S'Dancing Couple' +p105110 +sg25270 +S'Heinrich Aldegrever' +p105111 +sg25273 +S'engraving' +p105112 +sg25275 +S'1551' +p105113 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6a4.jpg' +p105114 +sg25267 +g27 +sa(dp105115 +g25268 +S'Large Pendant, Upright Oval with Floral Ornament' +p105116 +sg25270 +S'Daniel Mignot' +p105117 +sg25273 +S'engraving' +p105118 +sg25275 +S'1596' +p105119 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad24.jpg' +p105120 +sg25267 +g27 +sa(dp105121 +g25268 +S'Pendant with Wheel at Centre, Surrounded by Four Table-Stones' +p105122 +sg25270 +S'Daniel Mignot' +p105123 +sg25273 +S'engraving' +p105124 +sg25275 +S'unknown date\n' +p105125 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad42.jpg' +p105126 +sg25267 +g27 +sa(dp105127 +g25268 +S'Large Pendant, Ornamental Foliage Design' +p105128 +sg25270 +S'Daniel Mignot' +p105129 +sg25273 +S'engraving' +p105130 +sg25275 +S'1596' +p105131 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad26.jpg' +p105132 +sg25267 +g27 +sa(dp105133 +g25268 +S'Three Strapwork Pendants, The Lower Ones Triangular and Oval' +p105134 +sg25270 +S'Daniel Mignot' +p105135 +sg25273 +S'engraving' +p105136 +sg25275 +S'unknown date\n' +p105137 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad3e.jpg' +p105138 +sg25267 +g27 +sa(dp105139 +g25268 +S'Pendant with Double Cross at Centre, Surrounded by Four Large Table-Stones' +p105140 +sg25270 +S'Daniel Mignot' +p105141 +sg25273 +S'engraving' +p105142 +sg25275 +S'unknown date\n' +p105143 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad43.jpg' +p105144 +sg25267 +g27 +sa(dp105145 +g25268 +S'Strapwork Pendant with Two Square Tablestonesas Earrings at Left and Right' +p105146 +sg25270 +S'Daniel Mignot' +p105147 +sg25273 +S'engraving' +p105148 +sg25275 +S'unknown date\n' +p105149 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad3b.jpg' +p105150 +sg25267 +g27 +sa(dp105151 +g25268 +S'Pendant with Two Double Crosses' +p105152 +sg25270 +S'Daniel Mignot' +p105153 +sg25273 +S'engraving' +p105154 +sg25275 +S'unknown date\n' +p105155 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad44.jpg' +p105156 +sg25267 +g27 +sa(dp105157 +g25268 +S'Large Pendant, In Circular Form, Nude Man Flanked by Two Herms' +p105158 +sg25270 +S'Daniel Mignot' +p105159 +sg25273 +S'engraving' +p105160 +sg25275 +S'1596' +p105161 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad25.jpg' +p105162 +sg25267 +g27 +sa(dp105163 +g25268 +S'One Large and Two Smaller Strapwork Pendants' +p105164 +sg25270 +S'Daniel Mignot' +p105165 +sg25273 +S'engraving' +p105166 +sg25275 +S'unknown date\n' +p105167 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad37.jpg' +p105168 +sg25267 +g27 +sa(dp105169 +g25268 +S'Title-Page: Brooch, Snail-like Animals Above, Centaurs with Banners at Bottom' +p105170 +sg25270 +S'Daniel Mignot' +p105171 +sg25273 +S'engraving' +p105172 +sg25275 +S'1596' +p105173 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad27.jpg' +p105174 +sg25267 +g27 +sa(dp105175 +g25268 +S'Sophonisba' +p105176 +sg25270 +S'Heinrich Aldegrever' +p105177 +sg25273 +S'engraving' +p105178 +sg25275 +S'1553' +p105179 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6de.jpg' +p105180 +sg25267 +g27 +sa(dp105181 +g25268 +S'Brooch with Tablestones and Winged Griffins Above and at Bottom' +p105182 +sg25270 +S'Daniel Mignot' +p105183 +sg25273 +S'engraving' +p105184 +sg25275 +S'1596' +p105185 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad22.jpg' +p105186 +sg25267 +g27 +sa(dp105187 +g25268 +S'Brooch with Sprigs at Top and Griffins with Trophies at Bottom' +p105188 +sg25270 +S'Daniel Mignot' +p105189 +sg25273 +S'engraving' +p105190 +sg25275 +S'1596' +p105191 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad29.jpg' +p105192 +sg25267 +g27 +sa(dp105193 +g25268 +S'Brooch with Table-Stones, Winged Dragons at Top, and Griffins at Bottom' +p105194 +sg25270 +S'Daniel Mignot' +p105195 +sg25273 +S'engraving' +p105196 +sg25275 +S'1596' +p105197 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad28.jpg' +p105198 +sg25267 +g27 +sa(dp105199 +g25268 +S'Brooch with Fantasy Creatures Blowing Horns at Top and Winged Griffins at Bottom' +p105200 +sg25270 +S'Daniel Mignot' +p105201 +sg25273 +S'engraving' +p105202 +sg25275 +S'1596' +p105203 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad2a.jpg' +p105204 +sg25267 +g27 +sa(dp105205 +g25268 +S'Brooch with Winged Fauns Blowing Trumpets at Top and Fantasy Creatures with Birds at Bottom' +p105206 +sg25270 +S'Daniel Mignot' +p105207 +sg25273 +S'engraving' +p105208 +sg25275 +S'1596' +p105209 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad2b.jpg' +p105210 +sg25267 +g27 +sa(dp105211 +g25268 +S'Brooch with Table-Stones, Flying Scorpions at Top, and Dogs at Bottom' +p105212 +sg25270 +S'Daniel Mignot' +p105213 +sg25273 +S'engraving' +p105214 +sg25275 +S'1596' +p105215 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac17.jpg' +p105216 +sg25267 +g27 +sa(dp105217 +g25268 +S'Brooch with Fantasy Animals at Top and Fauns with Vases at Bottom' +p105218 +sg25270 +S'Daniel Mignot' +p105219 +sg25273 +S'engraving' +p105220 +sg25275 +S'1596' +p105221 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad2c.jpg' +p105222 +sg25267 +g27 +sa(dp105223 +g25268 +S'Brooch with Table-Stones, Butterflies at Top, and Peacocks and Hermes at Bottom' +p105224 +sg25270 +S'Daniel Mignot' +p105225 +sg25273 +S'engraving' +p105226 +sg25275 +S'1596' +p105227 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad2d.jpg' +p105228 +sg25267 +g27 +sa(dp105229 +g25268 +S'Brooch with Table-Stones, Dragons at Top, andWinged Monsters Blowing Horns at Bottom' +p105230 +sg25270 +S'Daniel Mignot' +p105231 +sg25273 +S'engraving' +p105232 +sg25275 +S'1596' +p105233 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad2e.jpg' +p105234 +sg25267 +g27 +sa(dp105235 +g25268 +S'Brooch with Table-Stones, Winged Animals at Top, and Winged Human Beings at Bottom' +p105236 +sg25270 +S'Daniel Mignot' +p105237 +sg25273 +S'engraving' +p105238 +sg25275 +S'1596' +p105239 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad2f.jpg' +p105240 +sg25267 +g27 +sa(dp105241 +g25268 +S'Large Wedding Dancers' +p105242 +sg25270 +S'Heinrich Aldegrever' +p105243 +sg25273 +S'engraving' +p105244 +sg25275 +S'1538' +p105245 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6aa.jpg' +p105246 +sg25267 +g27 +sa(dp105247 +g25268 +S'Three Brooches with Winged Snakes at Left and Right and Winged Griffins at Bottom' +p105248 +sg25270 +S'Daniel Mignot' +p105249 +sg25273 +S'engraving' +p105250 +sg25275 +S'1596' +p105251 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad31.jpg' +p105252 +sg25267 +g27 +sa(dp105253 +g25268 +S"Hyacinth-Shaped Brooch with Birds at Top and Devil's- and Angel's-Head at Bottom" +p105254 +sg25270 +S'Daniel Mignot' +p105255 +sg25273 +S'engraving' +p105256 +sg25275 +S'1596' +p105257 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad32.jpg' +p105258 +sg25267 +g27 +sa(dp105259 +g25268 +S'Hyacinth-Shaped Brooch with Winged Animals at Top and Crouching Swans at Bottom' +p105260 +sg25270 +S'Daniel Mignot' +p105261 +sg25273 +S'engraving' +p105262 +sg25275 +S'1596' +p105263 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad30.jpg' +p105264 +sg25267 +g27 +sa(dp105265 +g25268 +S'Hyacinth-Shaped Brooch with Winged Snakes at Top and Winged Animals at Bottom' +p105266 +sg25270 +S'Daniel Mignot' +p105267 +sg25273 +S'engraving' +p105268 +sg25275 +S'1596' +p105269 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad33.jpg' +p105270 +sg25267 +g27 +sa(dp105271 +g25268 +S'Three Brooches with Fantasy Birds at Left, Right, and Bottom' +p105272 +sg25270 +S'Daniel Mignot' +p105273 +sg25273 +S'engraving' +p105274 +sg25275 +S'1596' +p105275 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad34.jpg' +p105276 +sg25267 +g27 +sa(dp105277 +g25268 +S'Two Brooches with Dragon and Insects at Top and Human Beings with Snake-like Tails atBottom' +p105278 +sg25270 +S'Daniel Mignot' +p105279 +sg25273 +S'engraving' +p105280 +sg25275 +S'1596' +p105281 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad35.jpg' +p105282 +sg25267 +g27 +sa(dp105283 +g25268 +S'Two Brooches with Bird and Winged Snake at Top and Griffins with Vases at Bottom' +p105284 +sg25270 +S'Daniel Mignot' +p105285 +sg25273 +S'engraving' +p105286 +sg25275 +S'1596' +p105287 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad36.jpg' +p105288 +sg25267 +g27 +sa(dp105289 +g25268 +S'Title Page: Large Pendant' +p105290 +sg25270 +S'Daniel Mignot' +p105291 +sg25273 +S'engraving' +p105292 +sg25275 +S'1593' +p105293 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad9e.jpg' +p105294 +sg25267 +g27 +sa(dp105295 +g25268 +S'Large Pendant, Prudence Standing at Centre' +p105296 +sg25270 +S'Daniel Mignot' +p105297 +sg25273 +S'engraving' +p105298 +sg25275 +S'1593' +p105299 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad1b.jpg' +p105300 +sg25267 +g27 +sa(dp105301 +g25268 +S'Large Pendant, Faith Standing at Centre' +p105302 +sg25270 +S'Daniel Mignot' +p105303 +sg25273 +S'engraving' +p105304 +sg25275 +S'1593' +p105305 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad0d.jpg' +p105306 +sg25267 +g27 +sa(dp105307 +g25268 +S'Large Wedding Dancers' +p105308 +sg25270 +S'Heinrich Aldegrever' +p105309 +sg25273 +S'engraving' +p105310 +sg25275 +S'1538' +p105311 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6ab.jpg' +p105312 +sg25267 +g27 +sa(dp105313 +g25268 +S'Large Pendant, Hope Standing at Centre' +p105314 +sg25270 +S'Daniel Mignot' +p105315 +sg25273 +S'engraving' +p105316 +sg25275 +S'1593' +p105317 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad0e.jpg' +p105318 +sg25267 +g27 +sa(dp105319 +g25268 +S'Large Pendant, Justice Standing at Centre' +p105320 +sg25270 +S'Daniel Mignot' +p105321 +sg25273 +S'engraving' +p105322 +sg25275 +S'1593' +p105323 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad10.jpg' +p105324 +sg25267 +g27 +sa(dp105325 +g25268 +S'Large Pendant, Charity Standing at Centre' +p105326 +sg25270 +S'Daniel Mignot' +p105327 +sg25273 +S'engraving' +p105328 +sg25275 +S'1593' +p105329 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad0f.jpg' +p105330 +sg25267 +g27 +sa(dp105331 +g25268 +S'Large Pendant, Strength Standing at Centre' +p105332 +sg25270 +S'Daniel Mignot' +p105333 +sg25273 +S'engraving' +p105334 +sg25275 +S'1593' +p105335 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad1a.jpg' +p105336 +sg25267 +g27 +sa(dp105337 +g25268 +S'Large Pendant, Temperance Standing at Centre' +p105338 +sg25270 +S'Daniel Mignot' +p105339 +sg25273 +S'engraving' +p105340 +sg25275 +S'1593' +p105341 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad1d.jpg' +p105342 +sg25267 +g27 +sa(dp105343 +g25268 +S'Title Page: Large Pendant, Two Winged Imaginary Figures at Bottom' +p105344 +sg25270 +S'Daniel Mignot' +p105345 +sg25273 +S'engraving' +p105346 +sg25275 +S'1596' +p105347 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad18.jpg' +p105348 +sg25267 +g27 +sa(dp105349 +g25268 +S'Large Pendant, Lower Left and Right Two Bunches of Grass, Flowers, and Fruit' +p105350 +sg25270 +S'Daniel Mignot' +p105351 +sg25273 +S'engraving' +p105352 +sg25275 +S'1596' +p105353 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad19.jpg' +p105354 +sg25267 +g27 +sa(dp105355 +g25268 +S'Large Pendant, Lower Left and Right Two Creatures of the Sea' +p105356 +sg25270 +S'Daniel Mignot' +p105357 +sg25273 +S'engraving' +p105358 +sg25275 +S'1596' +p105359 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad11.jpg' +p105360 +sg25267 +g27 +sa(dp105361 +g25268 +S'Large Pendant, Lower Left and Right Two Winged "Devils" Sitting on Pedestals' +p105362 +sg25270 +S'Daniel Mignot' +p105363 +sg25273 +S'engraving' +p105364 +sg25275 +S'1596' +p105365 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad16.jpg' +p105366 +sg25267 +g27 +sa(dp105367 +g25268 +S'Large Pendant, Lower Left and Right Two Griffins Carrying Fantasy Candlesticks' +p105368 +sg25270 +S'Daniel Mignot' +p105369 +sg25273 +S'engraving' +p105370 +sg25275 +S'1596' +p105371 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad17.jpg' +p105372 +sg25267 +g27 +sa(dp105373 +g25268 +S'Large Wedding Dancers' +p105374 +sg25270 +S'Heinrich Aldegrever' +p105375 +sg25273 +S'engraving' +p105376 +sg25275 +S'1538' +p105377 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6ae.jpg' +p105378 +sg25267 +g27 +sa(dp105379 +g25268 +S'Large Pendant, Two Winged Fantasy Creatures with Trumpets at Bottom' +p105380 +sg25270 +S'Daniel Mignot' +p105381 +sg25273 +S'engraving' +p105382 +sg25275 +S'1596' +p105383 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad1c.jpg' +p105384 +sg25267 +g27 +sa(dp105385 +g25268 +S'Large Pendant, Two Fantasy Creatures with Long Tails at Bottom' +p105386 +sg25270 +S'Daniel Mignot' +p105387 +sg25273 +S'engraving' +p105388 +sg25275 +S'1596' +p105389 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad15.jpg' +p105390 +sg25267 +g27 +sa(dp105391 +g25268 +S'Large Pendant, Lower Left and Right Two Bunches of Grass and Fruit' +p105392 +sg25270 +S'Daniel Mignot' +p105393 +sg25273 +S'engraving' +p105394 +sg25275 +S'1596' +p105395 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad14.jpg' +p105396 +sg25267 +g27 +sa(dp105397 +g25268 +S'Twelve Studs' +p105398 +sg25270 +S'Daniel Mignot' +p105399 +sg25273 +S'engraving' +p105400 +sg25275 +S'unknown date\n' +p105401 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad13.jpg' +p105402 +sg25267 +g27 +sa(dp105403 +g25268 +S'Large Pendant Surrounded by Ten Different Studs' +p105404 +sg25270 +S'Daniel Mignot' +p105405 +sg25273 +S'engraving' +p105406 +sg25275 +S'unknown date\n' +p105407 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad12.jpg' +p105408 +sg25267 +g27 +sa(dp105409 +g25268 +S'Large Pendant with Three Drops Below' +p105410 +sg25270 +S'Daniel Mignot' +p105411 +sg25273 +S'engraving' +p105412 +sg25275 +S'1593' +p105413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ada2.jpg' +p105414 +sg25267 +g27 +sa(dp105415 +g25268 +S'Large Pendant with Three Drops Below, Surrounded by Fifteen Different Studs' +p105416 +sg25270 +S'Daniel Mignot' +p105417 +sg25273 +S'engraving' +p105418 +sg25275 +S'1593' +p105419 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad0a.jpg' +p105420 +sg25267 +g27 +sa(dp105421 +g25268 +S'Large Pendant with Square with 35 Flat Stones' +p105422 +sg25270 +S'Daniel Mignot' +p105423 +sg25273 +S'engraving' +p105424 +sg25275 +S'1593' +p105425 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad0c.jpg' +p105426 +sg25267 +g27 +sa(dp105427 +g25268 +S'Pendant Surrounded by Seven Shields and Two Ornamental Bands' +p105428 +sg25270 +S'Daniel Mignot' +p105429 +sg25273 +S'engraving' +p105430 +sg25275 +S'1593' +p105431 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad0b.jpg' +p105432 +sg25267 +g27 +sa(dp105433 +g25268 +S'Title Page: Pendant, Surrounded by Eight Small Studs' +p105434 +sg25270 +S'Daniel Mignot' +p105435 +sg25273 +S'engraving' +p105436 +sg25275 +S'1593' +p105437 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad9d.jpg' +p105438 +sg25267 +g27 +sa(dp105439 +g25268 +S'Large Wedding Dancers' +p105440 +sg25270 +S'Heinrich Aldegrever' +p105441 +sg25273 +S'engraving' +p105442 +sg25275 +S'1538' +p105443 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6ac.jpg' +p105444 +sg25267 +g27 +sa(dp105445 +g25268 +S'Large Pendant, Surrounded by Twelve Small Studs' +p105446 +sg25270 +S'Daniel Mignot' +p105447 +sg25273 +S'engraving' +p105448 +sg25275 +S'1593' +p105449 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad9f.jpg' +p105450 +sg25267 +g27 +sa(dp105451 +g25268 +S'Eleven Different Studs and Twenty-Three Ornaments' +p105452 +sg25270 +S'Daniel Mignot' +p105453 +sg25273 +S'engraving' +p105454 +sg25275 +S'1593' +p105455 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ada0.jpg' +p105456 +sg25267 +g27 +sa(dp105457 +g25268 +S'Large Pendant, Surrounded by Thirteen Studs' +p105458 +sg25270 +S'Daniel Mignot' +p105459 +sg25273 +S'engraving' +p105460 +sg25275 +S'1593' +p105461 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ada1.jpg' +p105462 +sg25267 +g27 +sa(dp105463 +g25268 +S'Title Page' +p105464 +sg25270 +S'Artist Information (' +p105465 +sg25273 +S'(artist after)' +p105466 +sg25275 +S'\n' +p105467 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008914.jpg' +p105468 +sg25267 +g27 +sa(dp105469 +g25268 +S'Flower Print no.1' +p105470 +sg25270 +S'Artist Information (' +p105471 +sg25273 +S'(artist after)' +p105472 +sg25275 +S'\n' +p105473 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a000891f.jpg' +p105474 +sg25267 +g27 +sa(dp105475 +g25268 +S'Flower Print no.2' +p105476 +sg25270 +S'Artist Information (' +p105477 +sg25273 +S'(artist after)' +p105478 +sg25275 +S'\n' +p105479 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008916.jpg' +p105480 +sg25267 +g27 +sa(dp105481 +g25268 +S'Flower Print no.3' +p105482 +sg25270 +S'Artist Information (' +p105483 +sg25273 +S'(artist after)' +p105484 +sg25275 +S'\n' +p105485 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008920.jpg' +p105486 +sg25267 +g27 +sa(dp105487 +g25268 +S'Flower Print no.4' +p105488 +sg25270 +S'Artist Information (' +p105489 +sg25273 +S'(artist after)' +p105490 +sg25275 +S'\n' +p105491 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a000891e.jpg' +p105492 +sg25267 +g27 +sa(dp105493 +g25268 +S'Flower Print no.5' +p105494 +sg25270 +S'Artist Information (' +p105495 +sg25273 +S'(artist after)' +p105496 +sg25275 +S'\n' +p105497 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008917.jpg' +p105498 +sg25267 +g27 +sa(dp105499 +g25268 +S'Flower Print no.6' +p105500 +sg25270 +S'Artist Information (' +p105501 +sg25273 +S'(artist after)' +p105502 +sg25275 +S'\n' +p105503 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a000891d.jpg' +p105504 +sg25267 +g27 +sa(dp105505 +g25268 +S'Large Wedding Dancers' +p105506 +sg25270 +S'Heinrich Aldegrever' +p105507 +sg25273 +S'engraving' +p105508 +sg25275 +S'1538' +p105509 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6ad.jpg' +p105510 +sg25267 +g27 +sa(dp105511 +g25268 +S'Flower Print no.7' +p105512 +sg25270 +S'Artist Information (' +p105513 +sg25273 +S'(artist after)' +p105514 +sg25275 +S'\n' +p105515 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008918.jpg' +p105516 +sg25267 +g27 +sa(dp105517 +g25268 +S'Flower Print no.8' +p105518 +sg25270 +S'Artist Information (' +p105519 +sg25273 +S'(artist after)' +p105520 +sg25275 +S'\n' +p105521 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008915.jpg' +p105522 +sg25267 +g27 +sa(dp105523 +g25268 +S'Flower Print no.9' +p105524 +sg25270 +S'Artist Information (' +p105525 +sg25273 +S'(artist after)' +p105526 +sg25275 +S'\n' +p105527 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008919.jpg' +p105528 +sg25267 +g27 +sa(dp105529 +g25268 +S'Flower Print no.10' +p105530 +sg25270 +S'Artist Information (' +p105531 +sg25273 +S'(artist after)' +p105532 +sg25275 +S'\n' +p105533 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a000891a.jpg' +p105534 +sg25267 +g27 +sa(dp105535 +g25268 +S'Flower Print no.11' +p105536 +sg25270 +S'Artist Information (' +p105537 +sg25273 +S'(artist after)' +p105538 +sg25275 +S'\n' +p105539 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a000891c.jpg' +p105540 +sg25267 +g27 +sa(dp105541 +g25268 +S'Flower Print no.12' +p105542 +sg25270 +S'Artist Information (' +p105543 +sg25273 +S'(artist after)' +p105544 +sg25275 +S'\n' +p105545 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a000891b.jpg' +p105546 +sg25267 +g27 +sa(dp105547 +g25273 +S'hand-colored linoleum cut' +p105548 +sg25267 +g27 +sg25275 +S'1947' +p105549 +sg25268 +S'Abandoned Farm' +p105550 +sg25270 +S'Hans Alexander Mueller' +p105551 +sa(dp105552 +g25273 +S'engraving' +p105553 +sg25267 +g27 +sg25275 +S'unknown date\n' +p105554 +sg25268 +S'Amston Pond' +p105555 +sg25270 +S'Thomas Willoughby Nason' +p105556 +sa(dp105557 +g25268 +S'Fate of an Evil Tongue' +p105558 +sg25270 +S'Nicoletto da Modena' +p105559 +sg25273 +S'engraving' +p105560 +sg25275 +S'c. 1507' +p105561 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c850.jpg' +p105562 +sg25267 +g27 +sa(dp105563 +g25273 +S'etched copper plate' +p105564 +sg25267 +g27 +sg25275 +S'1828' +p105565 +sg25268 +S'Title Page' +p105566 +sg25270 +S'Giuseppe Ferrante Perry' +p105567 +sa(dp105568 +g25268 +S'Large Wedding Dancers' +p105569 +sg25270 +S'Heinrich Aldegrever' +p105570 +sg25273 +S'engraving' +p105571 +sg25275 +S'1538' +p105572 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6af.jpg' +p105573 +sg25267 +g27 +sa(dp105574 +g25273 +S'etched copper plate' +p105575 +sg25267 +g27 +sg25275 +S'1828' +p105576 +sg25268 +S'In Borgo' +p105577 +sg25270 +S'Giuseppe Ferrante Perry' +p105578 +sa(dp105579 +g25273 +S'etched copper plate' +p105580 +sg25267 +g27 +sg25275 +S'1828' +p105581 +sg25268 +S'Festino' +p105582 +sg25270 +S'Giuseppe Ferrante Perry' +p105583 +sa(dp105584 +g25273 +S'etched copper plate' +p105585 +sg25267 +g27 +sg25275 +S'1828' +p105586 +sg25268 +S'Alli Monti' +p105587 +sg25270 +S'Giuseppe Ferrante Perry' +p105588 +sa(dp105589 +g25273 +S'etched copper plate' +p105590 +sg25267 +g27 +sg25275 +S'1828' +p105591 +sg25268 +S'Carnevale in Trastevere' +p105592 +sg25270 +S'Giuseppe Ferrante Perry' +p105593 +sa(dp105594 +g25273 +S'etched copper plate' +p105595 +sg25267 +g27 +sg25275 +S'1828' +p105596 +sg25268 +S'Al Corso' +p105597 +sg25270 +S'Giuseppe Ferrante Perry' +p105598 +sa(dp105599 +g25273 +S'etched copper plate' +p105600 +sg25267 +g27 +sg25275 +S'1828' +p105601 +sg25268 +S'La Mossa' +p105602 +sg25270 +S'Giuseppe Ferrante Perry' +p105603 +sa(dp105604 +g25273 +S'etched copper plate' +p105605 +sg25267 +g27 +sg25275 +S'1828' +p105606 +sg25268 +S'La Moccoletti' +p105607 +sg25270 +S'Giuseppe Ferrante Perry' +p105608 +sa(dp105609 +g25273 +S'etched copper plate' +p105610 +sg25267 +g27 +sg25275 +S'1828' +p105611 +sg25268 +S'Il Cavallo Premiato' +p105612 +sg25270 +S'Giuseppe Ferrante Perry' +p105613 +sa(dp105614 +g25273 +S'etched copper plate' +p105615 +sg25267 +g27 +sg25275 +S'1828' +p105616 +sg25268 +S'La Reprisa' +p105617 +sg25270 +S'Giuseppe Ferrante Perry' +p105618 +sa(dp105619 +g25273 +S'etched copper plate' +p105620 +sg25267 +g27 +sg25275 +S'1828' +p105621 +sg25268 +S'Gli Ebrei' +p105622 +sg25270 +S'Giuseppe Ferrante Perry' +p105623 +sa(dp105624 +g25268 +S'Large Wedding Dancers' +p105625 +sg25270 +S'Heinrich Aldegrever' +p105626 +sg25273 +S'engraving' +p105627 +sg25275 +S'1538' +p105628 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6b0.jpg' +p105629 +sg25267 +g27 +sa(dp105630 +g25268 +S'Pigeon with Gray Background (Pigeon au fond gris)' +p105631 +sg25270 +S'Pablo Picasso' +p105632 +sg25273 +S'lithograph' +p105633 +sg25275 +S'1947' +p105634 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee9f.jpg' +p105635 +sg25267 +g27 +sa(dp105636 +g25268 +S'The Large Pigeon (Le gros pigeon)' +p105637 +sg25270 +S'Pablo Picasso' +p105638 +sg25273 +S'lithograph' +p105639 +sg25275 +S'1947' +p105640 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eece.jpg' +p105641 +sg25267 +g27 +sa(dp105642 +g25268 +S'Self-Portrait' +p105643 +sg25270 +S'Bartolomeo Pinelli' +p105644 +sg25273 +S'etching' +p105645 +sg25275 +S'1948' +p105646 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc5a.jpg' +p105647 +sg25267 +g27 +sa(dp105648 +g25268 +S'Three Lansquenets' +p105649 +sg25270 +S'Artist Information (' +p105650 +sg25273 +S'(artist after)' +p105651 +sg25275 +S'\n' +p105652 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b444.jpg' +p105653 +sg25267 +g27 +sa(dp105654 +g25268 +S"Dessins des meilleurs peintres d'Italie, d'Allemagne et des Pay-Bas" +p105655 +sg25270 +S'Artist Information (' +p105656 +sg25273 +S'(artist)' +p105657 +sg25275 +S'\n' +p105658 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b443.jpg' +p105659 +sg25267 +g27 +sa(dp105660 +g25268 +S'Head of a Man' +p105661 +sg25270 +S'Artist Information (' +p105662 +sg25273 +S'(artist after)' +p105663 +sg25275 +S'\n' +p105664 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b445.jpg' +p105665 +sg25267 +g27 +sa(dp105666 +g25268 +S'Roman Sacrifice' +p105667 +sg25270 +S'Artist Information (' +p105668 +sg25273 +S'(artist after)' +p105669 +sg25275 +S'\n' +p105670 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b446.jpg' +p105671 +sg25267 +g27 +sa(dp105672 +g25268 +S'Landscape' +p105673 +sg25270 +S'Artist Information (' +p105674 +sg25273 +S'(artist after)' +p105675 +sg25275 +S'\n' +p105676 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b447.jpg' +p105677 +sg25267 +g27 +sa(dp105678 +g25268 +S'A Quacksalver' +p105679 +sg25270 +S'Artist Information (' +p105680 +sg25273 +S'(artist after)' +p105681 +sg25275 +S'\n' +p105682 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b448.jpg' +p105683 +sg25267 +g27 +sa(dp105684 +g25268 +S'Neptune' +p105685 +sg25270 +S'Artist Information (' +p105686 +sg25273 +S'(artist after)' +p105687 +sg25275 +S'\n' +p105688 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b449.jpg' +p105689 +sg25267 +g27 +sa(dp105690 +g25268 +S'Large Wedding Dancers' +p105691 +sg25270 +S'Heinrich Aldegrever' +p105692 +sg25273 +S'engraving' +p105693 +sg25275 +S'1538' +p105694 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6b1.jpg' +p105695 +sg25267 +g27 +sa(dp105696 +g25268 +S'Oriental Lady' +p105697 +sg25270 +S'Artist Information (' +p105698 +sg25273 +S'(artist after)' +p105699 +sg25275 +S'\n' +p105700 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b44a.jpg' +p105701 +sg25267 +g27 +sa(dp105702 +g25268 +S'Peasant with Country Fair Singers' +p105703 +sg25270 +S'Artist Information (' +p105704 +sg25273 +S'(artist after)' +p105705 +sg25275 +S'\n' +p105706 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b44b.jpg' +p105707 +sg25267 +g27 +sa(dp105708 +g25268 +S'Landscape' +p105709 +sg25270 +S'Artist Information (' +p105710 +sg25273 +S'(artist after)' +p105711 +sg25275 +S'\n' +p105712 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b44c.jpg' +p105713 +sg25267 +g27 +sa(dp105714 +g25268 +S'Jupiter' +p105715 +sg25270 +S'Artist Information (' +p105716 +sg25273 +S'(artist after)' +p105717 +sg25275 +S'\n' +p105718 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b44d.jpg' +p105719 +sg25267 +g27 +sa(dp105720 +g25268 +S'Landscape' +p105721 +sg25270 +S'Artist Information (' +p105722 +sg25273 +S'(artist after)' +p105723 +sg25275 +S'\n' +p105724 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b44e.jpg' +p105725 +sg25267 +g27 +sa(dp105726 +g25268 +S'Visit of Saint Elizabeth to the Holy Family' +p105727 +sg25270 +S'Artist Information (' +p105728 +sg25273 +S'(artist after)' +p105729 +sg25275 +S'\n' +p105730 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b44f.jpg' +p105731 +sg25267 +g27 +sa(dp105732 +g25268 +S'Sculpture, Painting, Architecture' +p105733 +sg25270 +S'Artist Information (' +p105734 +sg25273 +S'(artist after)' +p105735 +sg25275 +S'\n' +p105736 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b450.jpg' +p105737 +sg25267 +g27 +sa(dp105738 +g25268 +S'Philosopher' +p105739 +sg25270 +S'Artist Information (' +p105740 +sg25273 +S'(artist after)' +p105741 +sg25275 +S'\n' +p105742 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b451.jpg' +p105743 +sg25267 +g27 +sa(dp105744 +g25268 +S'Cows' +p105745 +sg25270 +S'Artist Information (' +p105746 +sg25273 +S'(artist after)' +p105747 +sg25275 +S'\n' +p105748 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b452.jpg' +p105749 +sg25267 +g27 +sa(dp105750 +g25268 +S'Donkey' +p105751 +sg25270 +S'Artist Information (' +p105752 +sg25273 +S'(artist after)' +p105753 +sg25275 +S'\n' +p105754 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b453.jpg' +p105755 +sg25267 +g27 +sa(dp105756 +g25268 +S'Large Wedding Dancers' +p105757 +sg25270 +S'Heinrich Aldegrever' +p105758 +sg25273 +S'engraving' +p105759 +sg25275 +S'1538' +p105760 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6b9.jpg' +p105761 +sg25267 +g27 +sa(dp105762 +g25268 +S'Roman Ruin' +p105763 +sg25270 +S'Artist Information (' +p105764 +sg25273 +S'(artist after)' +p105765 +sg25275 +S'\n' +p105766 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b454.jpg' +p105767 +sg25267 +g27 +sa(dp105768 +g25268 +S'Wooded Landscape' +p105769 +sg25270 +S'Artist Information (' +p105770 +sg25273 +S'(artist after)' +p105771 +sg25275 +S'\n' +p105772 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b455.jpg' +p105773 +sg25267 +g27 +sa(dp105774 +g25268 +S'Saint Jerome' +p105775 +sg25270 +S'Artist Information (' +p105776 +sg25273 +S'(artist after)' +p105777 +sg25275 +S'\n' +p105778 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b456.jpg' +p105779 +sg25267 +g27 +sa(dp105780 +g25268 +S'Swiss Peasant House' +p105781 +sg25270 +S'Artist Information (' +p105782 +sg25273 +S'(artist after)' +p105783 +sg25275 +S'\n' +p105784 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b457.jpg' +p105785 +sg25267 +g27 +sa(dp105786 +g25268 +S'Saint Barbara' +p105787 +sg25270 +S'Artist Information (' +p105788 +sg25273 +S'(artist after)' +p105789 +sg25275 +S'\n' +p105790 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b458.jpg' +p105791 +sg25267 +g27 +sa(dp105792 +g25268 +S'Mountain Landscape' +p105793 +sg25270 +S'Artist Information (' +p105794 +sg25273 +S'(artist after)' +p105795 +sg25275 +S'\n' +p105796 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b459.jpg' +p105797 +sg25267 +g27 +sa(dp105798 +g25268 +S'Venus' +p105799 +sg25270 +S'Artist Information (' +p105800 +sg25273 +S'(artist after)' +p105801 +sg25275 +S'\n' +p105802 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b45a.jpg' +p105803 +sg25267 +g27 +sa(dp105804 +g25268 +S'Virtue Overcoming Vice' +p105805 +sg25270 +S'Artist Information (' +p105806 +sg25273 +S'(artist after)' +p105807 +sg25275 +S'\n' +p105808 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b45b.jpg' +p105809 +sg25267 +g27 +sa(dp105810 +g25268 +S'Head of a Woman' +p105811 +sg25270 +S'Artist Information (' +p105812 +sg25273 +S'(artist after)' +p105813 +sg25275 +S'\n' +p105814 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b45c.jpg' +p105815 +sg25267 +g27 +sa(dp105816 +g25268 +S'Peasant Scene' +p105817 +sg25270 +S'Artist Information (' +p105818 +sg25273 +S'(artist after)' +p105819 +sg25275 +S'\n' +p105820 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b45d.jpg' +p105821 +sg25267 +g27 +sa(dp105822 +g25268 +S'Large Wedding Dancers' +p105823 +sg25270 +S'Heinrich Aldegrever' +p105824 +sg25273 +S'engraving' +p105825 +sg25275 +S'1538' +p105826 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6b8.jpg' +p105827 +sg25267 +g27 +sa(dp105828 +g25268 +S'Swiss Cottages' +p105829 +sg25270 +S'Artist Information (' +p105830 +sg25273 +S'(artist after)' +p105831 +sg25275 +S'\n' +p105832 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b45e.jpg' +p105833 +sg25267 +g27 +sa(dp105834 +g25268 +S'The Adoration of the Shepherds' +p105835 +sg25270 +S'Johann Gottlieb Prestel' +p105836 +sg25273 +S'aquatint and etching in red-brown and black' +p105837 +sg25275 +S'published 1782' +p105838 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b45f.jpg' +p105839 +sg25267 +g27 +sa(dp105840 +g25268 +S'Dutch Landscape' +p105841 +sg25270 +S'Artist Information (' +p105842 +sg25273 +S'(artist after)' +p105843 +sg25275 +S'\n' +p105844 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b460.jpg' +p105845 +sg25267 +g27 +sa(dp105846 +g25268 +S'Dying Epaminondas' +p105847 +sg25270 +S'Artist Information (' +p105848 +sg25273 +S'(artist after)' +p105849 +sg25275 +S'\n' +p105850 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b461.jpg' +p105851 +sg25267 +g27 +sa(dp105852 +g25268 +S'Landscape' +p105853 +sg25270 +S'Artist Information (' +p105854 +sg25273 +S'(artist after)' +p105855 +sg25275 +S'\n' +p105856 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b462.jpg' +p105857 +sg25267 +g27 +sa(dp105858 +g25268 +S'Landscape' +p105859 +sg25270 +S'Artist Information (' +p105860 +sg25273 +S'(artist after)' +p105861 +sg25275 +S'\n' +p105862 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b463.jpg' +p105863 +sg25267 +g27 +sa(dp105864 +g25268 +S'Seascape' +p105865 +sg25270 +S'Artist Information (' +p105866 +sg25273 +S'(artist after)' +p105867 +sg25275 +S'\n' +p105868 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b464.jpg' +p105869 +sg25267 +g27 +sa(dp105870 +g25268 +S'Seascape' +p105871 +sg25270 +S'Artist Information (' +p105872 +sg25273 +S'(artist after)' +p105873 +sg25275 +S'\n' +p105874 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b465.jpg' +p105875 +sg25267 +g27 +sa(dp105876 +g25268 +S'Cow Resting' +p105877 +sg25270 +S'Artist Information (' +p105878 +sg25273 +S'(artist after)' +p105879 +sg25275 +S'\n' +p105880 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b466.jpg' +p105881 +sg25267 +g27 +sa(dp105882 +g25268 +S'The Flight into Egypt' +p105883 +sg25270 +S'Artist Information (' +p105884 +sg25273 +S'(artist after)' +p105885 +sg25275 +S'\n' +p105886 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b467.jpg' +p105887 +sg25267 +g27 +sa(dp105888 +g25268 +S'Large Wedding Dancers' +p105889 +sg25270 +S'Heinrich Aldegrever' +p105890 +sg25273 +S'engraving' +p105891 +sg25275 +S'1538' +p105892 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6ba.jpg' +p105893 +sg25267 +g27 +sa(dp105894 +g25273 +S'bound volume with folded lithograph' +p105895 +sg25267 +g27 +sg25275 +S'unknown date\n' +p105896 +sg25268 +S'Panorama des Champs Elysees' +p105897 +sg25270 +S'A. Provost' +p105898 +sa(dp105899 +g25268 +S'The Lamentation of the Virgin' +p105900 +sg25270 +S'Artist Information (' +p105901 +sg25273 +S'(artist after)' +p105902 +sg25275 +S'\n' +p105903 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c858.jpg' +p105904 +sg25267 +g27 +sa(dp105905 +g25273 +S'wood engraving' +p105906 +sg25267 +g27 +sg25275 +S'1948' +p105907 +sg25268 +S'The Shepherdess' +p105908 +sg25270 +S'Imre Reiner' +p105909 +sa(dp105910 +g25268 +S'Auguste Rodin' +p105911 +sg25270 +S'Auguste Renoir' +p105912 +sg25273 +S'lithograph' +p105913 +sg25275 +S'c. 1910' +p105914 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009ff9.jpg' +p105915 +sg25267 +g27 +sa(dp105916 +g25268 +S'Louis Valtat' +p105917 +sg25270 +S'Auguste Renoir' +p105918 +sg25273 +S'lithograph' +p105919 +sg25275 +S'1904' +p105920 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ca7.jpg' +p105921 +sg25267 +g27 +sa(dp105922 +g25268 +S'Ambroise Vollard' +p105923 +sg25270 +S'Auguste Renoir' +p105924 +sg25273 +S'lithograph' +p105925 +sg25275 +S'1904' +p105926 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009caa.jpg' +p105927 +sg25267 +g27 +sa(dp105928 +g25268 +S'The Standard Bearer' +p105929 +sg25270 +S'Prince Rupert of the Pfalz' +p105930 +sg25273 +S'mezzotint' +p105931 +sg25275 +S'1658' +p105932 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004bb2.jpg' +p105933 +sg25267 +g27 +sa(dp105934 +g25273 +S'color woodcut' +p105935 +sg25267 +g27 +sg25275 +S'1947' +p105936 +sg25268 +S'Christmas Card' +p105937 +sg25270 +S'Louis Schanker' +p105938 +sa(dp105939 +g25273 +S'color woodcut' +p105940 +sg25267 +g27 +sg25275 +S'1947' +p105941 +sg25268 +S'Static and Revolving' +p105942 +sg25270 +S'Louis Schanker' +p105943 +sa(dp105944 +g25273 +S'lithograph in black' +p105945 +sg25267 +g27 +sg25275 +S'1947' +p105946 +sg25268 +S'Eyes for the Night' +p105947 +sg25270 +S'Benton Murdoch Spruance' +p105948 +sa(dp105949 +g25268 +S'Large Wedding Dancers' +p105950 +sg25270 +S'Heinrich Aldegrever' +p105951 +sg25273 +S'engraving' +p105952 +sg25275 +S'1538' +p105953 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6bb.jpg' +p105954 +sg25267 +g27 +sa(dp105955 +g25273 +S'wood engraving' +p105956 +sg25267 +g27 +sg25275 +S'unknown date\n' +p105957 +sg25268 +S'Under Cliff' +p105958 +sg25270 +S'Lynd Kendall Ward' +p105959 +sa(dp105960 +g25268 +S'Sleeping Woman' +p105961 +sg25270 +S'James McNeill Whistler' +p105962 +sg25273 +S'chalk and charcoal on cream wove paper mounted on paperboard' +p105963 +sg25275 +S'c. 1863' +p105964 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a00009f9.jpg' +p105965 +sg25267 +g27 +sa(dp105966 +g25268 +S'United States Military Academy, Song of the Graduates' +p105967 +sg25270 +S'James McNeill Whistler' +p105968 +sg25273 +S'lithograph' +p105969 +sg25275 +S'1852' +p105970 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab13.jpg' +p105971 +sg25267 +g27 +sa(dp105972 +g25273 +S'etching' +p105973 +sg25267 +g27 +sg25275 +S'1947' +p105974 +sg25268 +S'Portrait of a Woman' +p105975 +sg25270 +S'Paul Wieghardt' +p105976 +sa(dp105977 +g25273 +S'etching and aquatint' +p105978 +sg25267 +g27 +sg25275 +S'unknown date\n' +p105979 +sg25268 +S'Moon Shadows' +p105980 +sg25270 +S'Ronau William Woiceske' +p105981 +sa(dp105982 +g25273 +S'etched copper plate' +p105983 +sg25267 +g27 +sg25275 +S'1948' +p105984 +sg25268 +S'Self-Portrait' +p105985 +sg25270 +S'Bartolomeo Pinelli' +p105986 +sa(dp105987 +g25268 +S'The Return of the Prodigal Son' +p105988 +sg25270 +S'Bartolom\xc3\xa9 Esteban Murillo' +p105989 +sg25273 +S'oil on canvas' +p105990 +sg25275 +S'1667/1670' +p105991 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004ad.jpg' +p105992 +sg25267 +S"Murillo's great talent for dramatic painting is apparent in this monumental depiction\nof the familiar parable of the prodigal son, an allegory of repentance and divine\nforgiveness. With players and props effectively placed to underscore the drama,\nit is reminiscent of a well-staged theater piece.\n The artist selected the essential elements of the story's climax: the penitent son\nwelcomed home by his forgiving father; the rich garments and ring that signify\nthe errant son's restoration to his former position in the family; and the fatted\ncalf being led to the slaughter for the celebratory banquet. The larger-than-life,\ncentral, pyramidal grouping of father and son dominates the picture, while the richest\ncolor is reserved for the servant bearing the new garments. Murillo may have chosen\nto emphasize that aspect of the parable -- symbolic of charity -- because of the nature\nof the commission. \n Murillo's model was the life around him; part of the appeal of this canvas lies\nin its human touches -- the realism of the prodigal's dirty feet, the puppy jumping\nup to greet his master, and perhaps most of all, the ingenuous smile of the little\nurchin leading the calf.\n " +p105993 +sa(dp105994 +g25268 +S'The David Children' +p105995 +sg25270 +S'Thomas Sully' +p105996 +sg25273 +S'oil on canvas' +p105997 +sg25275 +S'1826' +p105998 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000269.jpg' +p105999 +sg25267 +g27 +sa(dp106000 +g25273 +S'(artist)' +p106001 +sg25267 +g27 +sg25275 +S'\n' +p106002 +sg25268 +S'Georgica (Les Georgiques), volume I' +p106003 +sg25270 +S'Artist Information (' +p106004 +sa(dp106005 +g25268 +S'A Couple of Lovers Seated' +p106006 +sg25270 +S'Heinrich Aldegrever' +p106007 +sg25273 +g27 +sg25275 +S'1529' +p106008 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6be.jpg' +p106009 +sg25267 +g27 +sa(dp106010 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106011 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106012 +sg25268 +S'Bather (Le Baigneur)' +p106013 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106014 +sa(dp106015 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106016 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106017 +sg25268 +S'Grape Harvest, la Colline Sainte-Anne, Saint-Tropez (Vendanges a Saint-Tropez sur la' +p106018 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106019 +sa(dp106020 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106021 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106022 +sg25268 +S'Ceres with Sickle (Ceres a la faucille)' +p106023 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106024 +sa(dp106025 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106026 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106027 +sg25268 +S'Ceres with Basket (Ceres au panier)' +p106028 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106029 +sa(dp106030 +g25273 +S'etching' +p106031 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106032 +sg25268 +S'Ceres' +p106033 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106034 +sa(dp106035 +g25273 +S'etching' +p106036 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106037 +sg25268 +S'Wheat near Rennemoulin (Bles pres de Rennemoulin)' +p106038 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106039 +sa(dp106040 +g25273 +S'etching' +p106041 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106042 +sg25268 +S'Orchard at Chavenay (Verges a Chavenay)' +p106043 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106044 +sa(dp106045 +g25273 +S'etching' +p106046 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106047 +sg25268 +S'Edge of the Woods, Verrieres (A la lisiere des bois de Verrieres)' +p106048 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106049 +sa(dp106050 +g25273 +S'etching' +p106051 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106052 +sg25268 +S'Springtime Gardening in the Ile-de-France (Jardinage de printemps en Ile-de-France)' +p106053 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106054 +sa(dp106055 +g25268 +S'The Night' +p106056 +sg25270 +S'Heinrich Aldegrever' +p106057 +sg25273 +S'engraving' +p106058 +sg25275 +S'1553' +p106059 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6bc.jpg' +p106060 +sg25267 +g27 +sa(dp106061 +g25273 +S'etching' +p106062 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106063 +sg25268 +S'Bell of Chavenay (Le Clocher de Chavenay)' +p106064 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106065 +sa(dp106066 +g25273 +S'etching' +p106067 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106068 +sg25268 +S'Plow and Field near Villepreux (Champs pres de Villepreux, la brabant (Charrue))' +p106069 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106070 +sa(dp106071 +g25273 +S'etching' +p106072 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106073 +sg25268 +S'Bell of Saint-Cyr at Dourdan (Clocher de Saint-Cyr sous Dourdan)' +p106074 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106075 +sa(dp106076 +g25273 +S'etching' +p106077 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106078 +sg25268 +S"Oat Field near Villepreux (Le Champ d'avoine pres de Villepreux)" +p106079 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106080 +sa(dp106081 +g25273 +S'etching' +p106082 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106083 +sg25268 +S'Wheat Field (Le Champ de ble)' +p106084 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106085 +sa(dp106086 +g25273 +S'etching' +p106087 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106088 +sg25268 +S'Rye Field (Le Champ de seigle)' +p106089 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106090 +sa(dp106091 +g25273 +S'etching' +p106092 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106093 +sg25268 +S'Beginning of the Harvest (Le Debut de la moisson)' +p106094 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106095 +sa(dp106096 +g25273 +S'etching' +p106097 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106098 +sg25268 +S'Harvest-Time near Villepreux (La Moisson presde Villepreux)' +p106099 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106100 +sa(dp106101 +g25273 +S'etching' +p106102 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106103 +sg25268 +S'Les Noyettes' +p106104 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106105 +sa(dp106106 +g25273 +S'etching' +p106107 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106108 +sg25268 +S"Wheat Sheaves at the Foot of a Large Tree (Les Gerbes au pied d'un gros arbre)" +p106109 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106110 +sa(dp106111 +g25268 +S'Martin Luther' +p106112 +sg25270 +S'Heinrich Aldegrever' +p106113 +sg25273 +S'engraving' +p106114 +sg25275 +S'unknown date\n' +p106115 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6b4.jpg' +p106116 +sg25267 +g27 +sa(dp106117 +g25273 +S'etching' +p106118 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106119 +sg25268 +S'Haystacks near Saint-Cyr at Dourdan (Meules pres de Saint-Cyr sous Dourdan)' +p106120 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106121 +sa(dp106122 +g25273 +S'etching' +p106123 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106124 +sg25268 +S'Hills near Rochefort-en-Yveline (Collines pres de Rochefort-en-Yveline)' +p106125 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106126 +sa(dp106127 +g25273 +S'etching' +p106128 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106129 +sg25268 +S"Haystacks at the Entrance to a Village (Les Meules a l'entree du village)" +p106130 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106131 +sa(dp106132 +g25273 +S'etching' +p106133 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106134 +sg25268 +S'Spreading Dung (La Fumure)' +p106135 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106136 +sa(dp106137 +g25273 +S'etching' +p106138 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106139 +sg25268 +S'Plowing in Provence (Les Labours en Provence)' +p106140 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106141 +sa(dp106142 +g25273 +S'etching' +p106143 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106144 +sg25268 +S'Village in the Chevreuse Valley (Village dans la vallee de Chevreuse)' +p106145 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106146 +sa(dp106147 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106148 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106149 +sg25268 +S"Felling Alder Trees (L'Abattage des aulnes)" +p106150 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106151 +sa(dp106152 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106153 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106154 +sg25268 +S'Plow near Tigeaux, Morin Valley (Brabant pres de Tigeaux dans la vallee du Morin)' +p106155 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106156 +sa(dp106157 +g25273 +S'etching' +p106158 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106159 +sg25268 +S"Haystack, Tigeaux Farm (La Meule pres d'une ferme de Tigeaux)" +p106160 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106161 +sa(dp106162 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106163 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106164 +sg25268 +S'Pressing Grapes (Le Foulage du raisin)' +p106165 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106166 +sa(dp106167 +g25268 +S'Albert van der Helle' +p106168 +sg25270 +S'Heinrich Aldegrever' +p106169 +sg25273 +g27 +sg25275 +S'1538' +p106170 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6b2.jpg' +p106171 +sg25267 +g27 +sa(dp106172 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106173 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106174 +sg25268 +S'Small Bacchante (Petite Bacchante)' +p106175 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106176 +sa(dp106177 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106178 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106179 +sg25268 +S'Small Bacchante (Petite Bacchante)' +p106180 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106181 +sa(dp106182 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106183 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106184 +sg25268 +S'Bacchante (La Bacchante)' +p106185 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106186 +sa(dp106187 +g25273 +S'etching' +p106188 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106189 +sg25268 +S'Cep de vigne au "Maquis"' +p106190 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106191 +sa(dp106192 +g25273 +S'etching' +p106193 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106194 +sg25268 +S'Plowing a Vineyard at Cogolin (Les Labours de vigne a Cogolin)' +p106195 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106196 +sa(dp106197 +g25273 +S'etching' +p106198 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106199 +sg25268 +S'Apple Tree in the Vineyard (Le Pommier dans les vignes)' +p106200 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106201 +sa(dp106202 +g25273 +S'etching' +p106203 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106204 +sg25268 +S'La Colline Sainte-Anne' +p106205 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106206 +sa(dp106207 +g25273 +S'etching' +p106208 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106209 +sg25268 +S'Road near Mole (Route pres de la Mole)' +p106210 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106211 +sa(dp106212 +g25273 +S'etching' +p106213 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106214 +sg25268 +S'Farmhouse and Parasol Pine (Le Mas au pin parasol)' +p106215 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106216 +sa(dp106217 +g25273 +S'etching' +p106218 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106219 +sg25268 +S'Pergola of an Old Farm near Grimaud (La Pergola de la ferme ancienne pres de Grimaud)' +p106220 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106221 +sa(dp106222 +g25268 +S'Madonna and Child on a Curved Throne' +p106223 +sg25270 +S'Byzantine 13th Century' +p106224 +sg25273 +S'overall: 84 x 53.5 cm (33 1/16 x 21 1/16 in.)\r\npainted surface: 82.4 x 50.1 cm (32 7/16 x 19 3/4 in.)\r\nframed: 90.8 x 58.3 x 7.6 cm (35 3/4 x 22 15/16 x 3 in.)' +p106225 +sg25275 +S'\ntempera on panel' +p106226 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a00009b7.jpg' +p106227 +sg25267 +g27 +sa(dp106228 +g25268 +S'Self-Portrait' +p106229 +sg25270 +S'Heinrich Aldegrever' +p106230 +sg25273 +g27 +sg25275 +S'1530' +p106231 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6b7.jpg' +p106232 +sg25267 +g27 +sa(dp106233 +g25273 +S'etching' +p106234 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106235 +sg25268 +S'Les Ceps de vigne au "Maquis"' +p106236 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106237 +sa(dp106238 +g25273 +S'etching' +p106239 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106240 +sg25268 +S'Winepress in the Open Air (Le Pressoir en plein air)' +p106241 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106242 +sa(dp106243 +g25273 +S'etching' +p106244 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106245 +sg25268 +S'Large Cask (Le Grand tonneau a la "Trempe" pres du puits du "Maquis")' +p106246 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106247 +sa(dp106248 +g25273 +S'etching' +p106249 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106250 +sg25268 +S"Grape-Gatherers' Repast (Le Repas des vendangeurs)" +p106251 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106252 +sa(dp106253 +g25273 +S'etching' +p106254 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106255 +sg25268 +S'Harvesting Grapes at Mole (Les Vendanges pres de la Mole)' +p106256 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106257 +sa(dp106258 +g25273 +S'etching' +p106259 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106260 +sg25268 +S'Distilling Grapes (Les Cornues de raisin)' +p106261 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106262 +sa(dp106263 +g25273 +S'etching' +p106264 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106265 +sg25268 +S'Grape Harvest at Cogolin (Vendange a Cogolin)' +p106266 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106267 +sa(dp106268 +g25273 +S'etching' +p106269 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106270 +sg25268 +S'Treading the Grape (Les Fouleurs de raisin chez Pierre)' +p106271 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106272 +sa(dp106273 +g25273 +S'etching' +p106274 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106275 +sg25268 +S'Working the Winepress (Le Pressoir a main)' +p106276 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106277 +sa(dp106278 +g25273 +S'etching' +p106279 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106280 +sg25268 +S'Les Ceps de vigne non grefees' +p106281 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106282 +sa(dp106283 +g25268 +S'Ornament' +p106284 +sg25270 +S'Heinrich Aldegrever' +p106285 +sg25273 +g27 +sg25275 +S'unknown date\n' +p106286 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6c0.jpg' +p106287 +sg25267 +g27 +sa(dp106288 +g25273 +S'etching' +p106289 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106290 +sg25268 +S'Winepress in the Cellar (Le Pressoir dans le cellier)' +p106291 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106292 +sa(dp106293 +g25273 +S'etching' +p106294 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106295 +sg25268 +S"Autumn Plowing near the Mole Road, Dom Fores t (Labours d'automne pres de la route de" +p106296 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106297 +sa(dp106298 +g25273 +S'etching' +p106299 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106300 +sg25268 +S'Burning Vine Branches (Feux de sarments)' +p106301 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106302 +sa(dp106303 +g25273 +S'etching' +p106304 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106305 +sg25268 +S'Cutting Down Trees (La Taille des arbres)' +p106306 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106307 +sa(dp106308 +g25273 +S'etching' +p106309 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106310 +sg25268 +S'Plowing and Burning Vines (Labours pres des vignes et des feux de sarments)' +p106311 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106312 +sa(dp106313 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106314 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106315 +sg25268 +S'Retort, Basket, Cask and Demijohn (La Cornue, le panier, le fut et la dame-jeanne)' +p106316 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106317 +sa(dp106318 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106319 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106320 +sg25268 +S'Casks and Winepress in the Cellar (Futs dans le cellier au pressoir)' +p106321 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106322 +sa(dp106323 +g25273 +S'(author)' +p106324 +sg25267 +g27 +sg25275 +S'\n' +p106325 +sg25268 +S'Georgica (Les Georgiques), volume II' +p106326 +sg25270 +S'Artist Information (' +p106327 +sa(dp106328 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106329 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106330 +sg25268 +S'Woman with Sickle (Moissonneuse a la faucille)' +p106331 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106332 +sa(dp106333 +g25268 +S'Naked Infant Holding a Double Scroll of Leafy Ornament' +p106334 +sg25270 +S'Heinrich Aldegrever' +p106335 +sg25273 +g27 +sg25275 +S'unknown date\n' +p106336 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6bf.jpg' +p106337 +sg25267 +g27 +sa(dp106338 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106339 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106340 +sg25268 +S'Reclining Nude (Nu etendu au bord du golfe)' +p106341 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106342 +sa(dp106343 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106344 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106345 +sg25268 +S'Oxen (Les Boeufs)' +p106346 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106347 +sa(dp106348 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106349 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106350 +sg25268 +S'Bacchante Sleeping (Sieste de la vendangeuse)' +p106351 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106352 +sa(dp106353 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106354 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106355 +sg25268 +S'Bacchante Resting (Le Repos de la Bacchante)' +p106356 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106357 +sa(dp106358 +g25273 +S'etching' +p106359 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106360 +sg25268 +S'Pomone' +p106361 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106362 +sa(dp106363 +g25273 +S'etching' +p106364 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106365 +sg25268 +S"Oxen Byre (Le Boeuf a l'etable)" +p106366 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106367 +sa(dp106368 +g25273 +S'etching' +p106369 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106370 +sg25268 +S'Small Farm in Provence with Cork-Oak and Olive Trees (Petite ferme Provencale avec le' +p106371 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106372 +sa(dp106373 +g25273 +S'etching' +p106374 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106375 +sg25268 +S'Cattle in the Mole Valley (Vaches dans la vallee de la Mole)' +p106376 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106377 +sa(dp106378 +g25273 +S'etching' +p106379 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106380 +sg25268 +S'Herd in the Mole Valley (Troupeau dans la vallee de la Mole)' +p106381 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106382 +sa(dp106383 +g25273 +S'etching' +p106384 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106385 +sg25268 +S'Provencal Farm near the Sea (Ferme Provencale pres de la mer)' +p106386 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106387 +sa(dp106388 +g25268 +S'Alphabet' +p106389 +sg25270 +S'Heinrich Aldegrever' +p106390 +sg25273 +S'engraving' +p106391 +sg25275 +S'c. 1525/1555' +p106392 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6bd.jpg' +p106393 +sg25267 +g27 +sa(dp106394 +g25273 +S'etching' +p106395 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106396 +sg25268 +S'Cart (La Charrette des vendanges)' +p106397 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106398 +sa(dp106399 +g25273 +S'etching' +p106400 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106401 +sg25268 +S'Pasture and Vineyard (Paturage et vignoble)' +p106402 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106403 +sa(dp106404 +g25273 +S'etching' +p106405 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106406 +sg25268 +S'Ancient Well with Balancing-Pole (Vieux puits avec perche et contrepoids)' +p106407 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106408 +sa(dp106409 +g25273 +S'etching' +p106410 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106411 +sg25268 +S'Provencal Pasture (Paturage Provencal)' +p106412 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106413 +sa(dp106414 +g25273 +S'etching' +p106415 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106416 +sg25268 +S'Provencal Cart (La Charrette Provencale)' +p106417 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106418 +sa(dp106419 +g25273 +S'etching' +p106420 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106421 +sg25268 +S'Sheep on the Cogolin Plains (Plaine de Cogolin, les moutons)' +p106422 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106423 +sa(dp106424 +g25273 +S'etching' +p106425 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106426 +sg25268 +S'Large 18th Century Farm with Mountain View (Grande ferme, XVIIIe siecle, avec des con' +p106427 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106428 +sa(dp106429 +g25273 +S'etching' +p106430 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106431 +sg25268 +S'Ancient Chestnut Tree (Vieux chataigniers, chartreuse de la verne)' +p106432 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106433 +sa(dp106434 +g25273 +S'etching' +p106435 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106436 +sg25268 +S'Goats (Les Chevres)' +p106437 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106438 +sa(dp106439 +g25273 +S'etching' +p106440 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106441 +sg25268 +S'Cork-Oak Trees (Les Chenes-lieges)' +p106442 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106443 +sa(dp106444 +g25268 +S'Dagger Sheath with Nude Woman' +p106445 +sg25270 +S'Heinrich Aldegrever' +p106446 +sg25273 +g27 +sg25275 +S'unknown date\n' +p106447 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6b6.jpg' +p106448 +sg25267 +g27 +sa(dp106449 +g25273 +S'etching' +p106450 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106451 +sg25268 +S'Ancient Well (Un Puits ancien)' +p106452 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106453 +sa(dp106454 +g25273 +S'etching' +p106455 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106456 +sg25268 +S'Foraging Swine (Porcs en liberte)' +p106457 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106458 +sa(dp106459 +g25273 +S'etching' +p106460 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106461 +sg25268 +S'Interior of a Barn with Furnace and Winepress(Ferme ancienne avec les fours et le pre' +p106462 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106463 +sa(dp106464 +g25273 +S'etching' +p106465 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106466 +sg25268 +S'Ancient Olive Trees (Les Vieux oliviers)' +p106467 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106468 +sa(dp106469 +g25273 +S'etching' +p106470 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106471 +sg25268 +S'Fruit Trees (Arbres fruitiers)' +p106472 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106473 +sa(dp106474 +g25273 +S'etching' +p106475 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106476 +sg25268 +S'Burning the Prunings (Le Ramassage des sarments)' +p106477 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106478 +sa(dp106479 +g25273 +S'etching' +p106480 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106481 +sg25268 +S'Laying Bare the Roots of the Vine (Dechaussage de la vigne)' +p106482 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106483 +sa(dp106484 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106485 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106486 +sg25268 +S'Vineyards and Olive Trees (Vignes et Oliviers)' +p106487 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106488 +sa(dp106489 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106490 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106491 +sg25268 +S'Small Provencal Well (Petit puits Provencal)' +p106492 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106493 +sa(dp106494 +g25273 +S'etching' +p106495 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106496 +sg25268 +S"Watering-Trough in Provence (L'Abreuvoir Provencal)" +p106497 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106498 +sa(dp106499 +g25268 +S'Dagger Sheath with Gentleman Holding a Parrot' +p106500 +sg25270 +S'Heinrich Aldegrever' +p106501 +sg25273 +g27 +sg25275 +S'unknown date\n' +p106502 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6b5.jpg' +p106503 +sg25267 +g27 +sa(dp106504 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106505 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106506 +sg25268 +S'Beehives at Chaville (Ruches a Chaville, le long du jardin)' +p106507 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106508 +sa(dp106509 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106510 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106511 +sg25268 +S'Young Harvester (Le Jeune vendangeuse)' +p106512 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106513 +sa(dp106514 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106515 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106516 +sg25268 +S'Reclining Woman (Repos de la moissonneuse)' +p106517 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106518 +sa(dp106519 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106520 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106521 +sg25268 +S'Shepherdess (La Bergere Provencale)' +p106522 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106523 +sa(dp106524 +g25273 +S'etching' +p106525 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106526 +sg25268 +S"Bees (Etude d'abeilles sur des feuilles de lierre a l'automne)" +p106527 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106528 +sa(dp106529 +g25273 +S'etching' +p106530 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106531 +sg25268 +S"Raising Bees at Chaville (Elevage d'abeilles a Chaville)" +p106532 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106533 +sa(dp106534 +g25273 +S'etching' +p106535 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106536 +sg25268 +S'Linden Tree (Le Tilleul)' +p106537 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106538 +sa(dp106539 +g25273 +S'etching' +p106540 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106541 +sg25268 +S'Fruit Trees in Blossom (Arbres fruitiers en fleurs)' +p106542 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106543 +sa(dp106544 +g25273 +S'etching' +p106545 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106546 +sg25268 +S'Beehives in Tree Trunks Covered with Stones (Ruches dans des troncs de chene avec pie' +p106547 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106548 +sa(dp106549 +g25273 +S'etching' +p106550 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106551 +sg25268 +S'Wine Grower (Le Vigneron)' +p106552 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106553 +sa(dp106554 +g25268 +S'Dagger Sheath with the Whore of Babylon' +p106555 +sg25270 +S'Heinrich Aldegrever' +p106556 +sg25273 +g27 +sg25275 +S'unknown date\n' +p106557 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6eb.jpg' +p106558 +sg25267 +g27 +sa(dp106559 +g25273 +S'etching' +p106560 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106561 +sg25268 +S'Unkempt Garden (Fleurs et jardin en friche)' +p106562 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106563 +sa(dp106564 +g25273 +S'etching' +p106565 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106566 +sg25268 +S'Au Fond du golfe' +p106567 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106568 +sa(dp106569 +g25273 +S'etching' +p106570 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106571 +sg25268 +S'Group of Beehives (Groupe de ruches)' +p106572 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106573 +sa(dp106574 +g25273 +S'etching' +p106575 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106576 +sg25268 +S'Garden (Jardin fleuri)' +p106577 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106578 +sa(dp106579 +g25273 +S'etching' +p106580 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106581 +sg25268 +S'Flowers (Fleurs)' +p106582 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106583 +sa(dp106584 +g25273 +S'etching' +p106585 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106586 +sg25268 +S"Beehives (Village d'abeilles)" +p106587 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106588 +sa(dp106589 +g25273 +S'etching' +p106590 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106591 +sg25268 +S'Olive Trees (Vieux oliviers pres du Plan de la Tour' +p106592 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106593 +sa(dp106594 +g25273 +S'etching' +p106595 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106596 +sg25268 +S'Beehives in the Woods of Chaville (Village de ruches, bois de Chaville, le Doisu)' +p106597 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106598 +sa(dp106599 +g25273 +S'etching' +p106600 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106601 +sg25268 +S'Large Oak Trees (Les Grands chenes)' +p106602 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106603 +sa(dp106604 +g25273 +S'etching' +p106605 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106606 +sg25268 +S"Swarming Bees (Troncs d'arbre abritant les essaims d'abeilles)" +p106607 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106608 +sa(dp106609 +g25268 +S'Three Cupids and a Bear' +p106610 +sg25270 +S'Heinrich Aldegrever' +p106611 +sg25273 +g27 +sg25275 +S'1529' +p106612 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6f1.jpg' +p106613 +sg25267 +g27 +sa(dp106614 +g25273 +S'etching' +p106615 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106616 +sg25268 +S"Banks of l'Argens, Provence (Bords de l'Argens en Provence)" +p106617 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106618 +sa(dp106619 +g25273 +S'etching' +p106620 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106621 +sg25268 +S"Banks of l'Argens (Bords de l'Argens)" +p106622 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106623 +sa(dp106624 +g25273 +S'etching' +p106625 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106626 +sg25268 +S'Forked Oak Tree (Le Chene fourchu)' +p106627 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106628 +sa(dp106629 +g25273 +S'etching' +p106630 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106631 +sg25268 +S'Descent to the Sea (La Descente vers la mer)' +p106632 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106633 +sa(dp106634 +g25273 +S'etching' +p106635 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106636 +sg25268 +S'Oak Trees in the Dom Forest (Chenes de la foret du Dom)' +p106637 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106638 +sa(dp106639 +g25273 +S'etching' +p106640 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106641 +sg25268 +S'Haute-Provence' +p106642 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106643 +sa(dp106644 +g25273 +S'etching' +p106645 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106646 +sg25268 +S'Vineyards and Olive Trees near the Sea (Vignes et oliviers pres de la mer)' +p106647 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106648 +sa(dp106649 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106650 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106651 +sg25268 +S'Provence in Winter (La Provence en hiver)' +p106652 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106653 +sa(dp106654 +g25273 +S'etching//one of 2 etchings on folded sheet' +p106655 +sg25267 +g27 +sg25275 +S'probably 1927/1946' +p106656 +sg25268 +S'Parasol Pine (Le Pin parasol)' +p106657 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p106658 +sa(dp106659 +g25268 +S'Don Pedro Alvarez de Toledo' +p106660 +sg25270 +S'Artist Information (' +p106661 +sg25273 +S'Italian, 16th century' +p106662 +sg25275 +S'(sculptor)' +p106663 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c5a2.jpg' +p106664 +sg25267 +g27 +sa(dp106665 +g25268 +S'Three Cupids and a Bear' +p106666 +sg25270 +S'Heinrich Aldegrever' +p106667 +sg25273 +g27 +sg25275 +S'1529' +p106668 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6f0.jpg' +p106669 +sg25267 +g27 +sa(dp106670 +g25268 +S'Nonchaloir (Repose)' +p106671 +sg25270 +S'John Singer Sargent' +p106672 +sg25273 +S'oil on canvas' +p106673 +sg25275 +S'1911' +p106674 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000201.jpg' +p106675 +sg25267 +S"Sargent's inordinate technical facility, coupled with his ability to portray\r\nelegant sitters in sumptuous surroundings, made him extremely popular with wealthy patrons on both sides of the Atlantic. Despite his success as one of the most sought–after portraitists of the late Victorian era, Sargent eventually became exasperated by the whim and vanities of prominent sitters. By 1909 he had abandoned conventional portraiture in order to "experiment with more imaginary fields."\n The \n " +p106676 +sa(dp106677 +g25268 +S'Alice Butt' +p106678 +sg25270 +S'James McNeill Whistler' +p106679 +sg25273 +S'oil on canvas' +p106680 +sg25275 +S'c. 1895' +p106681 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d4c.jpg' +p106682 +sg25267 +g27 +sa(dp106683 +g25268 +S'Allegory' +p106684 +sg25270 +S'Venetian 16th Century' +p106685 +sg25273 +S'overall: 43 x 39.2 cm (16 15/16 x 15 7/16 in.)\r\nframed: 63.5 x 59.1 x 6.4 cm (25 x 23 1/4 x 2 1/2 in.)' +p106686 +sg25275 +S'\noil on panel' +p106687 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000df6.jpg' +p106688 +sg25267 +g27 +sa(dp106689 +g25268 +S'Head of a Young Girl' +p106690 +sg25270 +S'Auguste Renoir' +p106691 +sg25273 +S'oil on canvas' +p106692 +sg25275 +S'c. 1890' +p106693 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a0005405.jpg' +p106694 +sg25267 +g27 +sa(dp106695 +g25268 +S'Captain Patrick Miller' +p106696 +sg25270 +S'Sir Henry Raeburn' +p106697 +sg25273 +S'oil on canvas' +p106698 +sg25275 +S'1788/1789, altered later (date unknown)' +p106699 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000575.jpg' +p106700 +sg25267 +g27 +sa(dp106701 +g25268 +S'The Windmill' +p106702 +sg25270 +S'Jean-Charles Cazin' +p106703 +sg25273 +S'oil on wood' +p106704 +sg25275 +S'probably after 1884' +p106705 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e010.jpg' +p106706 +sg25267 +g27 +sa(dp106707 +g25268 +S'River View' +p106708 +sg25270 +S'Jean-Baptiste-Camille Corot' +p106709 +sg25273 +S'oil on wood' +p106710 +sg25275 +S'1868/1872' +p106711 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdc6.jpg' +p106712 +sg25267 +g27 +sa(dp106713 +g25268 +S'Washerwomen at the Oise River near Valmondois' +p106714 +sg25270 +S'Charles-Fran\xc3\xa7ois Daubigny' +p106715 +sg25273 +S'oil on wood' +p106716 +sg25275 +S'1865' +p106717 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dcb.jpg' +p106718 +sg25267 +g27 +sa(dp106719 +g25268 +S'Forest Scene' +p106720 +sg25270 +S'Narcisse Diaz de la Pe\xc3\xb1a' +p106721 +sg25273 +S'oil on wood' +p106722 +sg25275 +S'1874' +p106723 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a00058e4.jpg' +p106724 +sg25267 +g27 +sa(dp106725 +g25268 +S'The Old Oak' +p106726 +sg25270 +S'Jules Dupr\xc3\xa9' +p106727 +sg25273 +S'oil on canvas' +p106728 +sg25275 +S'c. 1870' +p106729 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00050/a000508b.jpg' +p106730 +sg25267 +g27 +sa(dp106731 +g25268 +S'Sprig of Ornamental Foliage with Two Masks and Two Dolphins' +p106732 +sg25270 +S'Heinrich Aldegrever' +p106733 +sg25273 +g27 +sg25275 +S'1530' +p106734 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6ed.jpg' +p106735 +sg25267 +g27 +sa(dp106736 +g25268 +S'Rialto Bridge, Venice' +p106737 +sg25270 +S'Artist Information (' +p106738 +sg25273 +S'Italian, 1712 - 1793' +p106739 +sg25275 +S'(related artist)' +p106740 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdc5.jpg' +p106741 +sg25267 +g27 +sa(dp106742 +g25268 +S'Landscape' +p106743 +sg25270 +S'Henri-Joseph Harpignies' +p106744 +sg25273 +S'oil on canvas' +p106745 +sg25275 +S'1898' +p106746 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c61a.jpg' +p106747 +sg25267 +g27 +sa(dp106748 +g25268 +S'Harbor at Sunset' +p106749 +sg25270 +S'Artist Information (' +p106750 +sg25273 +S'French, 1604/1605 - 1682' +p106751 +sg25275 +S'(related artist)' +p106752 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f1f.jpg' +p106753 +sg25267 +g27 +sa(dp106754 +g25268 +S'The Bather' +p106755 +sg25270 +S'Jean-Fran\xc3\xa7ois Millet' +p106756 +sg25273 +S'oil on wood' +p106757 +sg25275 +S'1846/1848' +p106758 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d97.jpg' +p106759 +sg25267 +g27 +sa(dp106760 +g25268 +S'Landscape with Boatman' +p106761 +sg25270 +S'Th\xc3\xa9odore Rousseau' +p106762 +sg25273 +S'oil on wood' +p106763 +sg25275 +S'c. 1860' +p106764 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000db7.jpg' +p106765 +sg25267 +g27 +sa(dp106766 +g25268 +S'Saint Jerome in His Study' +p106767 +sg25270 +S'Albrecht D\xc3\xbcrer' +p106768 +sg25273 +S'engraving on laid paper' +p106769 +sg25275 +S'1514' +p106770 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f25.jpg' +p106771 +sg25267 +g27 +sa(dp106772 +g25268 +S'The Little Courier' +p106773 +sg25270 +S'Albrecht D\xc3\xbcrer' +p106774 +sg25273 +S'engraving' +p106775 +sg25275 +S'c. 1496' +p106776 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a990.jpg' +p106777 +sg25267 +g27 +sa(dp106778 +g25268 +S'Coat of Arms with a Lion and a Cock' +p106779 +sg25270 +S'Albrecht D\xc3\xbcrer' +p106780 +sg25273 +S'engraving' +p106781 +sg25275 +S'1502/1503' +p106782 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a977.jpg' +p106783 +sg25267 +g27 +sa(dp106784 +g25268 +S'Saint George on Horseback' +p106785 +sg25270 +S'Albrecht D\xc3\xbcrer' +p106786 +sg25273 +S'engraving' +p106787 +sg25275 +S'1508' +p106788 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a93d.jpg' +p106789 +sg25267 +g27 +sa(dp106790 +g25268 +S'Ornament' +p106791 +sg25270 +S'Heinrich Aldegrever' +p106792 +sg25273 +g27 +sg25275 +S'1532' +p106793 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6f2.jpg' +p106794 +sg25267 +g27 +sa(dp106795 +g25268 +S'Saint Eustace' +p106796 +sg25270 +S'Albrecht D\xc3\xbcrer' +p106797 +sg25273 +S'engraving' +p106798 +sg25275 +S'c. 1500/1501' +p106799 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b100.jpg' +p106800 +sg25267 +g27 +sa(dp106801 +g25268 +S'Melencolia I' +p106802 +sg25270 +S'Albrecht D\xc3\xbcrer' +p106803 +sg25273 +S'engraving' +p106804 +sg25275 +S'1514' +p106805 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00065/a0006520.jpg' +p106806 +sg25267 +g27 +sa(dp106807 +g25268 +S'Adam and Eve' +p106808 +sg25270 +S'Albrecht D\xc3\xbcrer' +p106809 +sg25273 +S'engraving on laid paper' +p106810 +sg25275 +S'1504' +p106811 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00016/a0001638.jpg' +p106812 +sg25267 +g27 +sa(dp106813 +g25268 +S'The Nativity' +p106814 +sg25270 +S'Albrecht D\xc3\xbcrer' +p106815 +sg25273 +S'engraving' +p106816 +sg25275 +S'1504' +p106817 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a927.jpg' +p106818 +sg25267 +g27 +sa(dp106819 +g25268 +S'The Virgin and Child with the Monkey' +p106820 +sg25270 +S'Albrecht D\xc3\xbcrer' +p106821 +sg25273 +S'engraving' +p106822 +sg25275 +S'c. 1498' +p106823 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c3/a000c3fe.jpg' +p106824 +sg25267 +g27 +sa(dp106825 +g25268 +S'Nemesis (The Great Fortune)' +p106826 +sg25270 +S'Albrecht D\xc3\xbcrer' +p106827 +sg25273 +S'engraving' +p106828 +sg25275 +S'c. 1501/1502' +p106829 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b101.jpg' +p106830 +sg25267 +g27 +sa(dp106831 +g25268 +S'Harbor Scene with Rising Sun (Le soleil levant)' +p106832 +sg25270 +S'Claude Lorrain' +p106833 +sg25273 +S'etching' +p106834 +sg25275 +S'1634' +p106835 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a00089a9.jpg' +p106836 +sg25267 +g27 +sa(dp106837 +g25268 +S'The Herd Returning in Stormy Weather (Le troupeau en marche par un temps orageux)' +p106838 +sg25270 +S'Claude Lorrain' +p106839 +sg25273 +S'etching' +p106840 +sg25275 +S'c. 1650/1651' +p106841 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008912.jpg' +p106842 +sg25267 +g27 +sa(dp106843 +g25268 +S'The Rest on the Flight into Egypt' +p106844 +sg25270 +S'Claude Lorrain' +p106845 +sg25273 +S'pen and brown ink with gray and blue wash and graphite, heightened with white gouache on blue laid paper' +p106846 +sg25275 +S'1682' +p106847 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f9a.jpg' +p106848 +sg25267 +g27 +sa(dp106849 +g25268 +S"Tourelle de la Rue de la Tix\xc3\xa9randerie, Paris (House with a Turret, Weavers' Street, Paris)" +p106850 +sg25270 +S'Charles Meryon' +p106851 +sg25273 +S'etching on green paper' +p106852 +sg25275 +S'1852' +p106853 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d0e.jpg' +p106854 +sg25267 +g27 +sa(dp106855 +g25268 +S'Scroll Ornament with Seated Child' +p106856 +sg25270 +S'Heinrich Aldegrever' +p106857 +sg25273 +g27 +sg25275 +S'1532' +p106858 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6ef.jpg' +p106859 +sg25267 +g27 +sa(dp106860 +g25268 +S'La Pompe Notre-Dame, Paris (The Notre-Dame Pump)' +p106861 +sg25270 +S'Charles Meryon' +p106862 +sg25273 +S'etching with drypoint on green paper' +p106863 +sg25275 +S'1852' +p106864 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d18.jpg' +p106865 +sg25267 +g27 +sa(dp106866 +g25268 +S'Le stryge (The Vampire)' +p106867 +sg25270 +S'Charles Meryon' +p106868 +sg25273 +S'etching on green paper' +p106869 +sg25275 +S'1853' +p106870 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a000601e.jpg' +p106871 +sg25267 +g27 +sa(dp106872 +g25268 +S'Saint-Etienne-du-Mont, Paris (Church of St. Stephen of the Mount, Paris)' +p106873 +sg25270 +S'Charles Meryon' +p106874 +sg25273 +S'etching on green paper' +p106875 +sg25275 +S'1852' +p106876 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d10.jpg' +p106877 +sg25267 +g27 +sa(dp106878 +g25268 +S'La morgue, Paris (The Mortuary)' +p106879 +sg25270 +S'Charles Meryon' +p106880 +sg25273 +S'etching' +p106881 +sg25275 +S'1854' +p106882 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d1b.jpg' +p106883 +sg25267 +g27 +sa(dp106884 +g25268 +S'Le Pont Neuf, Paris' +p106885 +sg25270 +S'Charles Meryon' +p106886 +sg25273 +S'etching on blue paper' +p106887 +sg25275 +S'1853' +p106888 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d14.jpg' +p106889 +sg25267 +g27 +sa(dp106890 +g25268 +S'Ancienne habitation \xc3\xa0 Bourges, dite "La Maison du Musicien" (An Old House at Bourges, Sometimes Called the "Musician\'s House")' +p106891 +sg25270 +S'Charles Meryon' +p106892 +sg25273 +S'etching with drypoint on green paper' +p106893 +sg25275 +S'1860' +p106894 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009971.jpg' +p106895 +sg25267 +g27 +sa(dp106896 +g25268 +S"La Tour de l'Horloge, Paris (The Clock Tower, Paris)" +p106897 +sg25270 +S'Charles Meryon' +p106898 +sg25273 +S'etching on green paper' +p106899 +sg25275 +S'1852' +p106900 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e08.jpg' +p106901 +sg25267 +g27 +sa(dp106902 +g25268 +S'Le Petit Pont, Paris' +p106903 +sg25270 +S'Charles Meryon' +p106904 +sg25273 +S'etching and drypoint on gray-green paper' +p106905 +sg25275 +S'1850' +p106906 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d0d.jpg' +p106907 +sg25267 +g27 +sa(dp106908 +g25268 +S"L'arche du Pont Notre-Dame, Paris (An Arch ofthe Notre-Dame Bridge, Paris)" +p106909 +sg25270 +S'Charles Meryon' +p106910 +sg25273 +S'etching and drypoint on green paper' +p106911 +sg25275 +S'1853' +p106912 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009958.jpg' +p106913 +sg25267 +g27 +sa(dp106914 +g25268 +S'Le Pont-au-Change, Paris' +p106915 +sg25270 +S'Charles Meryon' +p106916 +sg25273 +S'etching' +p106917 +sg25275 +S'1854' +p106918 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d20.jpg' +p106919 +sg25267 +g27 +sa(dp106920 +g25268 +S'High Ornament' +p106921 +sg25270 +S'Heinrich Aldegrever' +p106922 +sg25273 +g27 +sg25275 +S'1532' +p106923 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6ee.jpg' +p106924 +sg25267 +g27 +sa(dp106925 +g25268 +S'La galerie Notre-Dame, Paris (The Gallery of Notre Dame, Paris)' +p106926 +sg25270 +S'Charles Meryon' +p106927 +sg25273 +S'etching on green paper' +p106928 +sg25275 +S'1853' +p106929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a000601c.jpg' +p106930 +sg25267 +g27 +sa(dp106931 +g25268 +S"L'abside de Notre-Dame de Paris (The Apsis ofthe Cathedral of Notre Dame, Paris)" +p106932 +sg25270 +S'Charles Meryon' +p106933 +sg25273 +S'etching' +p106934 +sg25275 +S'1854' +p106935 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d28.jpg' +p106936 +sg25267 +g27 +sa(dp106937 +g25268 +S'The Windmill' +p106938 +sg25270 +S'Rembrandt van Rijn' +p106939 +sg25273 +S'etching' +p106940 +sg25275 +S'1641' +p106941 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b06.jpg' +p106942 +sg25267 +g27 +sa(dp106943 +g25268 +S'The Three Trees' +p106944 +sg25270 +S'Rembrandt van Rijn' +p106945 +sg25273 +S'etching, with drypoint and burin, on japan paper' +p106946 +sg25275 +S'1643' +p106947 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005aca.jpg' +p106948 +sg25267 +g27 +sa(dp106949 +g25268 +S'Faust' +p106950 +sg25270 +S'Rembrandt van Rijn' +p106951 +sg25273 +S'etching, drypoint, and engraving on rough beige paper' +p106952 +sg25275 +S'c. 1652' +p106953 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e34.jpg' +p106954 +sg25267 +g27 +sa(dp106955 +g25268 +S'Ephraim Bonus' +p106956 +sg25270 +S'Rembrandt van Rijn' +p106957 +sg25273 +S'etching, drypoint and burin' +p106958 +sg25275 +S'1647' +p106959 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ff9e.jpg' +p106960 +sg25267 +g27 +sa(dp106961 +g25268 +S'Jan Lutma' +p106962 +sg25270 +S'Rembrandt van Rijn' +p106963 +sg25273 +S'etching and drypoint' +p106964 +sg25275 +S'1656' +p106965 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d368.jpg' +p106966 +sg25267 +g27 +sa(dp106967 +g25268 +S'Clement de Jonghe' +p106968 +sg25270 +S'Rembrandt van Rijn' +p106969 +sg25273 +S'etching, drypoint and burin' +p106970 +sg25275 +S'1651' +p106971 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d361.jpg' +p106972 +sg25267 +g27 +sa(dp106973 +g25268 +S"The Artist's Mother Seated at a Table, Looking Right" +p106974 +sg25270 +S'Rembrandt van Rijn' +p106975 +sg25273 +S'etching' +p106976 +sg25275 +S'c. 1631' +p106977 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d387.jpg' +p106978 +sg25267 +g27 +sa(dp106979 +g25268 +S"Landscape with a View toward Haarlem (The Goldweigher's Field)" +p106980 +sg25270 +S'Rembrandt van Rijn' +p106981 +sg25273 +S'etching and drypoint' +p106982 +sg25275 +S'1651' +p106983 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d553.jpg' +p106984 +sg25267 +g27 +sa(dp106985 +g25268 +S'Ornament with Naked Couple' +p106986 +sg25270 +S'Heinrich Aldegrever' +p106987 +sg25273 +g27 +sg25275 +S'1532' +p106988 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6ec.jpg' +p106989 +sg25267 +g27 +sa(dp106990 +g25268 +S'Jan Six' +p106991 +sg25270 +S'Rembrandt van Rijn' +p106992 +sg25273 +S'etching, drypoint and burin' +p106993 +sg25275 +S'1647' +p106994 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d55a.jpg' +p106995 +sg25267 +g27 +sa(dp106996 +g25268 +S'Landscape with a Hay Barn and a Flock of Sheep' +p106997 +sg25270 +S'Rembrandt van Rijn' +p106998 +sg25273 +S'etching and drypoint' +p106999 +sg25275 +S'1652' +p107000 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d348.jpg' +p107001 +sg25267 +g27 +sa(dp107002 +g25268 +S'Christ Preaching (The Hundred Guilder Print)' +p107003 +sg25270 +S'Rembrandt van Rijn' +p107004 +sg25273 +S'etching, drypoint and burin on European (white) paper' +p107005 +sg25275 +S'c. 1643/1649' +p107006 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005663.jpg' +p107007 +sg25267 +g27 +sa(dp107008 +g25268 +S'Landscape with a Cottage and Hay Barn: Oblong' +p107009 +sg25270 +S'Rembrandt van Rijn' +p107010 +sg25273 +S'etching' +p107011 +sg25275 +S'1641' +p107012 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d54f.jpg' +p107013 +sg25267 +g27 +sa(dp107014 +g25268 +S'Christ Crucified between the Two Thieves (The Three Crosses)' +p107015 +sg25270 +S'Rembrandt van Rijn' +p107016 +sg25273 +S'drypoint and burin' +p107017 +sg25275 +S'1653' +p107018 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e35.jpg' +p107019 +sg25267 +g27 +sa(dp107020 +g25268 +S'Landscape with Trees, Farm Buildings and a Tower' +p107021 +sg25270 +S'Rembrandt van Rijn' +p107022 +sg25273 +S'etching and drypoint' +p107023 +sg25275 +S'c. 1651' +p107024 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d54d.jpg' +p107025 +sg25267 +g27 +sa(dp107026 +g25268 +S'Self-Portrait Leaning on a Stone Sill' +p107027 +sg25270 +S'Rembrandt van Rijn' +p107028 +sg25273 +S'etching' +p107029 +sg25275 +S'1639' +p107030 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2c8.jpg' +p107031 +sg25267 +g27 +sa(dp107032 +g25268 +S'Landscape' +p107033 +sg25270 +S'British 19th Century' +p107034 +sg25273 +S'overall: 15 x 22.7 cm (5 7/8 x 8 15/16 in.)' +p107035 +sg25275 +S'\ncharcoal with gray wash on wove paper' +p107036 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bdf.jpg' +p107037 +sg25267 +g27 +sa(dp107038 +g25268 +S'Little Venice' +p107039 +sg25270 +S'James McNeill Whistler' +p107040 +sg25273 +S'etching' +p107041 +sg25275 +S'1880' +p107042 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab69.jpg' +p107043 +sg25267 +g27 +sa(dp107044 +g25268 +S'Dancing Children' +p107045 +sg25270 +S'Heinrich Aldegrever' +p107046 +sg25273 +S'engraving' +p107047 +sg25275 +S'1535' +p107048 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6e8.jpg' +p107049 +sg25267 +g27 +sa(dp107050 +g25268 +S'The Dancing Girl' +p107051 +sg25270 +S'James McNeill Whistler' +p107052 +sg25273 +S'lithograph' +p107053 +sg25275 +S'1890' +p107054 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abad.jpg' +p107055 +sg25267 +g27 +sa(dp107056 +g25268 +S'Sketch of Cellini\'s "Perseus"' +p107057 +sg25270 +S'John Singer Sargent' +p107058 +sg25273 +S'watercolor over graphite' +p107059 +sg25275 +S'unknown date\n' +p107060 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a00009c4.jpg' +p107061 +sg25267 +g27 +sa(dp107062 +g25268 +S'River Wye' +p107063 +sg25270 +S'Joseph Mallord William Turner' +p107064 +sg25273 +S'etching' +p107065 +sg25275 +S'published 1812' +p107066 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a70.jpg' +p107067 +sg25267 +g27 +sa(dp107068 +g25268 +S'The Rest on the Flight into Egypt' +p107069 +sg25270 +S'Artist Information (' +p107070 +sg25273 +S'French, 1604/1605 - 1682' +p107071 +sg25275 +S'(artist after)' +p107072 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a0007194.jpg' +p107073 +sg25267 +g27 +sa(dp107074 +g25268 +S'Americae Septentrionalio' +p107075 +sg25270 +S'Justus Danckerts' +p107076 +sg25273 +S'engraving' +p107077 +sg25275 +S'unknown date\n' +p107078 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d603.jpg' +p107079 +sg25267 +g27 +sa(dp107080 +g25268 +S'Moth Dance' +p107081 +sg25270 +S'Arthur Dove' +p107082 +sg25273 +S'oil on canvas' +p107083 +sg25275 +S'1929' +p107084 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000080.jpg' +p107085 +sg25267 +g27 +sa(dp107086 +g25268 +S'Landscape No. 5' +p107087 +sg25270 +S'Marsden Hartley' +p107088 +sg25273 +S'oil on canvas' +p107089 +sg25275 +S'1922/1923' +p107090 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000df.jpg' +p107091 +sg25267 +g27 +sa(dp107092 +g25268 +S'Storm over Taos' +p107093 +sg25270 +S'John Marin' +p107094 +sg25273 +S'watercolor over graphite' +p107095 +sg25275 +S'1930' +p107096 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a000095e.jpg' +p107097 +sg25267 +g27 +sa(dp107098 +g25268 +S'Movement No.9, Sea and Boat, Deer Isle, Maine' +p107099 +sg25270 +S'John Marin' +p107100 +sg25273 +S'watercolor and black crayon' +p107101 +sg25275 +S'1927' +p107102 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a000095f.jpg' +p107103 +sg25267 +g27 +sa(dp107104 +g25273 +S'watercolor and charcoal over graphite' +p107105 +sg25267 +g27 +sg25275 +S'1927' +p107106 +sg25268 +S'Echo Lake, Franconia Range, White Mountain Country' +p107107 +sg25270 +S'John Marin' +p107108 +sa(dp107109 +g25268 +S'Ornament with a Child on the Back of a Sphinx' +p107110 +sg25270 +S'Heinrich Aldegrever' +p107111 +sg25273 +S'engraving' +p107112 +sg25275 +S'1535' +p107113 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6e9.jpg' +p107114 +sg25267 +g27 +sa(dp107115 +g25273 +S'platinum print' +p107116 +sg25267 +g27 +sg25275 +S'1886' +p107117 +sg25268 +S'Freienwalde a. O.' +p107118 +sg25270 +S'Alfred Stieglitz' +p107119 +sa(dp107120 +g25268 +S'Freienwalde a.O.' +p107121 +sg25270 +S'Alfred Stieglitz' +p107122 +sg25273 +S'platinum print' +p107123 +sg25275 +S'1886' +p107124 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006257.jpg' +p107125 +sg25267 +g27 +sa(dp107126 +g25273 +S'platinum print' +p107127 +sg25267 +g27 +sg25275 +S'1886' +p107128 +sg25268 +S'Freienwalde a.O.' +p107129 +sg25270 +S'Alfred Stieglitz' +p107130 +sa(dp107131 +g25273 +S'platinum print' +p107132 +sg25267 +g27 +sg25275 +S'1886' +p107133 +sg25268 +S'Freienwalde a.O.' +p107134 +sg25270 +S'Alfred Stieglitz' +p107135 +sa(dp107136 +g25273 +S'platinum print' +p107137 +sg25267 +g27 +sg25275 +S'1886' +p107138 +sg25268 +S'Freienwalde a. O.' +p107139 +sg25270 +S'Alfred Stieglitz' +p107140 +sa(dp107141 +g25273 +S'platinum print' +p107142 +sg25267 +g27 +sg25275 +S'1886' +p107143 +sg25268 +S'Freienwalde a.O.' +p107144 +sg25270 +S'Alfred Stieglitz' +p107145 +sa(dp107146 +g25273 +S'platinum print' +p107147 +sg25267 +g27 +sg25275 +S'1886' +p107148 +sg25268 +S'Freienwalde a. O.' +p107149 +sg25270 +S'Alfred Stieglitz' +p107150 +sa(dp107151 +g25273 +S'platinum print' +p107152 +sg25267 +g27 +sg25275 +S'1886' +p107153 +sg25268 +S'Freienwalde a.O.' +p107154 +sg25270 +S'Alfred Stieglitz' +p107155 +sa(dp107156 +g25268 +S'Self-Portrait, Freienwalde a.O.' +p107157 +sg25270 +S'Alfred Stieglitz' +p107158 +sg25273 +S'platinum print' +p107159 +sg25275 +S'1886' +p107160 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006258.jpg' +p107161 +sg25267 +g27 +sa(dp107162 +g25273 +S'platinum print mounted on cabinet card' +p107163 +sg25267 +g27 +sg25275 +S'1886' +p107164 +sg25268 +S'Freienwalde a.O.' +p107165 +sg25270 +S'Alfred Stieglitz' +p107166 +sa(dp107167 +g25268 +S'Three Buckles of Girdles Side by Side' +p107168 +sg25270 +S'Heinrich Aldegrever' +p107169 +sg25273 +S'engraving' +p107170 +sg25275 +S'1536' +p107171 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6ea.jpg' +p107172 +sg25267 +g27 +sa(dp107173 +g25273 +S'platinum print mounted on cabinet card' +p107174 +sg25267 +g27 +sg25275 +S'1886' +p107175 +sg25268 +S"Morris Loeb's poem" +p107176 +sg25270 +S'Alfred Stieglitz' +p107177 +sa(dp107178 +g25273 +S'platinum print' +p107179 +sg25267 +g27 +sg25275 +S'1886' +p107180 +sg25268 +S'Mittenwald' +p107181 +sg25270 +S'Alfred Stieglitz' +p107182 +sa(dp107183 +g25273 +S'platinum print' +p107184 +sg25267 +g27 +sg25275 +S'1886' +p107185 +sg25268 +S'Inn, Bavaria' +p107186 +sg25270 +S'Alfred Stieglitz' +p107187 +sa(dp107188 +g25273 +S'platinum print' +p107189 +sg25267 +g27 +sg25275 +S'1886' +p107190 +sg25268 +S'Mittenwald' +p107191 +sg25270 +S'Alfred Stieglitz' +p107192 +sa(dp107193 +g25273 +S'platinum print' +p107194 +sg25267 +g27 +sg25275 +S'1886' +p107195 +sg25268 +S'Mittenwald' +p107196 +sg25270 +S'Alfred Stieglitz' +p107197 +sa(dp107198 +g25273 +S'platinum print' +p107199 +sg25267 +g27 +sg25275 +S'1886' +p107200 +sg25268 +S'Mittenwald' +p107201 +sg25270 +S'Alfred Stieglitz' +p107202 +sa(dp107203 +g25273 +S'platinum print' +p107204 +sg25267 +g27 +sg25275 +S'1886' +p107205 +sg25268 +S'The Harvest, Mittenwald' +p107206 +sg25270 +S'Alfred Stieglitz' +p107207 +sa(dp107208 +g25273 +S'platinum print' +p107209 +sg25267 +g27 +sg25275 +S'1886' +p107210 +sg25268 +S'The Harvest, Mittenwald' +p107211 +sg25270 +S'Alfred Stieglitz' +p107212 +sa(dp107213 +g25273 +S'platinum print' +p107214 +sg25267 +g27 +sg25275 +S'1886' +p107215 +sg25268 +S'Bavaria' +p107216 +sg25270 +S'Alfred Stieglitz' +p107217 +sa(dp107218 +g25273 +S'platinum print' +p107219 +sg25267 +g27 +sg25275 +S'1886' +p107220 +sg25268 +S'Mittenwald' +p107221 +sg25270 +S'Alfred Stieglitz' +p107222 +sa(dp107223 +g25268 +S"Cross Panel with Vine in Center and Tritons' Couple" +p107224 +sg25270 +S'Heinrich Aldegrever' +p107225 +sg25273 +S'engraving' +p107226 +sg25275 +S'1537' +p107227 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6cf.jpg' +p107228 +sg25267 +g27 +sa(dp107229 +g25273 +S'platinum print' +p107230 +sg25267 +g27 +sg25275 +S'1886' +p107231 +sg25268 +S'Mittenwald' +p107232 +sg25270 +S'Alfred Stieglitz' +p107233 +sa(dp107234 +g25273 +S'platinum print' +p107235 +sg25267 +g27 +sg25275 +S'1886' +p107236 +sg25268 +S'Bavaria' +p107237 +sg25270 +S'Alfred Stieglitz' +p107238 +sa(dp107239 +g25273 +S'gelatin silver print' +p107240 +sg25267 +g27 +sg25275 +S'1886' +p107241 +sg25268 +S'Bavaria' +p107242 +sg25270 +S'Alfred Stieglitz' +p107243 +sa(dp107244 +g25273 +S'platinum print, 1895/1896' +p107245 +sg25267 +g27 +sg25275 +S'1886' +p107246 +sg25268 +S'The Harvest, Mittenwald' +p107247 +sg25270 +S'Alfred Stieglitz' +p107248 +sa(dp107249 +g25273 +S'platinum print, 1895/1896' +p107250 +sg25267 +g27 +sg25275 +S'1886' +p107251 +sg25268 +S'The Truant, Mittenwald' +p107252 +sg25270 +S'Alfred Stieglitz' +p107253 +sa(dp107254 +g25273 +S'platinum print, 1895/1896' +p107255 +sg25267 +g27 +sg25275 +S'1886' +p107256 +sg25268 +S'Professor Vogel' +p107257 +sg25270 +S'Alfred Stieglitz' +p107258 +sa(dp107259 +g25273 +S'platinum print, 1895/1896' +p107260 +sg25267 +g27 +sg25275 +S'1886' +p107261 +sg25268 +S'Professor Vogel' +p107262 +sg25270 +S'Alfred Stieglitz' +p107263 +sa(dp107264 +g25273 +S'platinum print, 1895/1896' +p107265 +sg25267 +g27 +sg25275 +S'1886' +p107266 +sg25268 +S'From a Lenbach Sketch' +p107267 +sg25270 +S'Alfred Stieglitz' +p107268 +sa(dp107269 +g25273 +S'platinum print, 1895/1896' +p107270 +sg25267 +g27 +sg25275 +S'1886' +p107271 +sg25268 +S'Relief of Queen Louise, Berlin' +p107272 +sg25270 +S'Alfred Stieglitz' +p107273 +sa(dp107274 +g25268 +S'The Last Joke--Bellagio' +p107275 +sg25270 +S'Alfred Stieglitz' +p107276 +sg25273 +S'platinum print' +p107277 +sg25275 +S'1887' +p107278 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006259.jpg' +p107279 +sg25267 +g27 +sa(dp107280 +g25268 +S'Ornament with Foliage and a Child in the Center' +p107281 +sg25270 +S'Heinrich Aldegrever' +p107282 +sg25273 +S'engraving' +p107283 +sg25275 +S'1539' +p107284 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6d5.jpg' +p107285 +sg25267 +g27 +sa(dp107286 +g25273 +S'platinum print, 1897' +p107287 +sg25267 +g27 +sg25275 +S'1887' +p107288 +sg25268 +S'On the Bridge--Chioggia' +p107289 +sg25270 +S'Alfred Stieglitz' +p107290 +sa(dp107291 +g25273 +S'platinum print, 1895/1896' +p107292 +sg25267 +g27 +sg25275 +S'1887' +p107293 +sg25268 +S'Marina' +p107294 +sg25270 +S'Alfred Stieglitz' +p107295 +sa(dp107296 +g25273 +S'gelatin silver print, 1920s/1930s' +p107297 +sg25267 +g27 +sg25275 +S'1887' +p107298 +sg25268 +S'Maria, Bellagio' +p107299 +sg25270 +S'Alfred Stieglitz' +p107300 +sa(dp107301 +g25273 +S'platinum print, 1895/1896' +p107302 +sg25267 +g27 +sg25275 +S'1887' +p107303 +sg25268 +S'Italian Mason, Bellagio' +p107304 +sg25270 +S'Alfred Stieglitz' +p107305 +sa(dp107306 +g25273 +S'platinum print, 1895/1896' +p107307 +sg25267 +g27 +sg25275 +S'1887' +p107308 +sg25268 +S'Leone, Bellagio' +p107309 +sg25270 +S'Alfred Stieglitz' +p107310 +sa(dp107311 +g25273 +S'platinum print' +p107312 +sg25267 +g27 +sg25275 +S'1887' +p107313 +sg25268 +S"The Wanderer's Return" +p107314 +sg25270 +S'Alfred Stieglitz' +p107315 +sa(dp107316 +g25273 +S'platinum print, 1895/1896' +p107317 +sg25267 +g27 +sg25275 +S'1887' +p107318 +sg25268 +S"The Wanderer's Return" +p107319 +sg25270 +S'Alfred Stieglitz' +p107320 +sa(dp107321 +g25273 +S'platinum print, 1895/1896' +p107322 +sg25267 +g27 +sg25275 +S'1887' +p107323 +sg25268 +S'A Nook in Pallanza' +p107324 +sg25270 +S'Alfred Stieglitz' +p107325 +sa(dp107326 +g25273 +S'platinum print, 1895/1896' +p107327 +sg25267 +g27 +sg25275 +S'1887' +p107328 +sg25268 +S'A Nook in Pallanza' +p107329 +sg25270 +S'Alfred Stieglitz' +p107330 +sa(dp107331 +g25273 +S'platinum print, 1916' +p107332 +sg25267 +g27 +sg25275 +S'1887' +p107333 +sg25268 +S'Stones of Venice, Chioggia' +p107334 +sg25270 +S'Alfred Stieglitz' +p107335 +sa(dp107336 +g25273 +S'gelatin silver print, 1920s/1930s' +p107337 +sg25267 +g27 +sg25275 +S'1887' +p107338 +sg25268 +S'Stones of Venice, Chioggia' +p107339 +sg25270 +S'Alfred Stieglitz' +p107340 +sa(dp107341 +g25273 +S'platinum print, 1895/1896' +p107342 +sg25267 +g27 +sg25275 +S'1887' +p107343 +sg25268 +S'An Idyll' +p107344 +sg25270 +S'Alfred Stieglitz' +p107345 +sa(dp107346 +g25273 +S'platinum print, 1895/1896' +p107347 +sg25267 +g27 +sg25275 +S'1887' +p107348 +sg25268 +S'The Unwilling Bath' +p107349 +sg25270 +S'Alfred Stieglitz' +p107350 +sa(dp107351 +g25273 +S'platinum print, 1895/1896' +p107352 +sg25267 +g27 +sg25275 +S'1887' +p107353 +sg25268 +S'At Lake Como' +p107354 +sg25270 +S'Alfred Stieglitz' +p107355 +sa(dp107356 +g25273 +S'platinum print, 1895/1896' +p107357 +sg25267 +g27 +sg25275 +S'1887' +p107358 +sg25268 +S'Washerwomen at Lake Como' +p107359 +sg25270 +S'Alfred Stieglitz' +p107360 +sa(dp107361 +g25273 +S'gelatin silver print, 1920s/1930s' +p107362 +sg25267 +g27 +sg25275 +S'1887' +p107363 +sg25268 +S'Washerwomen at Riva de Garda' +p107364 +sg25270 +S'Alfred Stieglitz' +p107365 +sa(dp107366 +g25273 +S'gelatin silver print, 1920s/1930s' +p107367 +sg25267 +g27 +sg25275 +S'1887' +p107368 +sg25268 +S'Kettle Cleaner, Lake Como' +p107369 +sg25270 +S'Alfred Stieglitz' +p107370 +sa(dp107371 +g25273 +S'platinum print, 1895/1896' +p107372 +sg25267 +g27 +sg25275 +S'probably 1886' +p107373 +sg25268 +S'Goethe, Berlin' +p107374 +sg25270 +S'Alfred Stieglitz' +p107375 +sa(dp107376 +g25273 +S'platinum print, 1895/1896' +p107377 +sg25267 +g27 +sg25275 +S'1887' +p107378 +sg25268 +S'November Days' +p107379 +sg25270 +S'Alfred Stieglitz' +p107380 +sa(dp107381 +g25273 +S'platinum print, 1895/1896' +p107382 +sg25267 +g27 +sg25275 +S'1887' +p107383 +sg25268 +S'November Days' +p107384 +sg25270 +S'Alfred Stieglitz' +p107385 +sa(dp107386 +g25268 +S'Ornament with Mask, Eagle between Satyrs Below' +p107387 +sg25270 +S'Heinrich Aldegrever' +p107388 +sg25273 +S'engraving' +p107389 +sg25275 +S'1549' +p107390 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6da.jpg' +p107391 +sg25267 +g27 +sa(dp107392 +g25273 +S'gelatin silver print, 1920s/1930s' +p107393 +sg25267 +g27 +sg25275 +S'1887' +p107394 +sg25268 +S'November Days' +p107395 +sg25270 +S'Alfred Stieglitz' +p107396 +sa(dp107397 +g25273 +S'platinum print, 1895/1896' +p107398 +sg25267 +g27 +sg25275 +S'1888' +p107399 +sg25268 +S'"Hedwigsweg," at Oaklawn' +p107400 +sg25270 +S'Alfred Stieglitz' +p107401 +sa(dp107402 +g25273 +S'platinum print, 1895/1896' +p107403 +sg25267 +g27 +sg25275 +S'1888' +p107404 +sg25268 +S'Hedwigspath, Oaklawn, Lake George' +p107405 +sg25270 +S'Alfred Stieglitz' +p107406 +sa(dp107407 +g25273 +S'platinum print, 1895/1896' +p107408 +sg25267 +g27 +sg25275 +S'1888' +p107409 +sg25268 +S'"Hedwigsweg" II, Lake George' +p107410 +sg25270 +S'Alfred Stieglitz' +p107411 +sa(dp107412 +g25273 +S'gelatin silver print, 1920s/1930s' +p107413 +sg25267 +g27 +sg25275 +S'1887' +p107414 +sg25268 +S'On Lake Thun, Switzerland' +p107415 +sg25270 +S'Alfred Stieglitz' +p107416 +sa(dp107417 +g25273 +S'gelatin silver print, 1920s/1930s' +p107418 +sg25267 +g27 +sg25275 +S'1886/1887' +p107419 +sg25268 +S'Switzerland or Germany' +p107420 +sg25270 +S'Alfred Stieglitz' +p107421 +sa(dp107422 +g25268 +S'Sun Rays--Paula' +p107423 +sg25270 +S'Alfred Stieglitz' +p107424 +sg25273 +S'platinum print, 1916' +p107425 +sg25275 +S'1889' +p107426 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a000625a.jpg' +p107427 +sg25267 +g27 +sa(dp107428 +g25273 +S'gelatin silver print, 1920s/1930s' +p107429 +sg25267 +g27 +sg25275 +S'1889' +p107430 +sg25268 +S'Sun Rays--Paula, Berlin' +p107431 +sg25270 +S'Alfred Stieglitz' +p107432 +sa(dp107433 +g25273 +S'platinum print, 1895/1896' +p107434 +sg25267 +g27 +sg25275 +S'1890' +p107435 +sg25268 +S'At Biarritz' +p107436 +sg25270 +S'Alfred Stieglitz' +p107437 +sa(dp107438 +g25273 +S'platinum print, 1895/1896' +p107439 +sg25267 +g27 +sg25275 +S'1890' +p107440 +sg25268 +S"Before the Smithy's" +p107441 +sg25270 +S'Alfred Stieglitz' +p107442 +sa(dp107443 +g25268 +S'Ornament with Mask' +p107444 +sg25270 +S'Heinrich Aldegrever' +p107445 +sg25273 +S'engraving' +p107446 +sg25275 +S'1549' +p107447 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6d7.jpg' +p107448 +sg25267 +g27 +sa(dp107449 +g25273 +S'platinum print, 1895/1896' +p107450 +sg25267 +g27 +sg25275 +S'1890' +p107451 +sg25268 +S'Before the Tavern' +p107452 +sg25270 +S'Alfred Stieglitz' +p107453 +sa(dp107454 +g25273 +S'platinum print, 1895/1896' +p107455 +sg25267 +g27 +sg25275 +S'1890' +p107456 +sg25268 +S'The Last Load' +p107457 +sg25270 +S'Alfred Stieglitz' +p107458 +sa(dp107459 +g25273 +S'platinum print with mercury, 1895/1896' +p107460 +sg25267 +g27 +sg25275 +S'1890' +p107461 +sg25268 +S'Self-Portrait, Cortina' +p107462 +sg25270 +S'Alfred Stieglitz' +p107463 +sa(dp107464 +g25273 +S'platinum print with mercury' +p107465 +sg25267 +g27 +sg25275 +S'1890' +p107466 +sg25268 +S'A Street in Sterzing, The Tyrol' +p107467 +sg25270 +S'Alfred Stieglitz' +p107468 +sa(dp107469 +g25273 +S'platinum print, 1895/1896' +p107470 +sg25267 +g27 +sg25275 +S'1890' +p107471 +sg25268 +S'Sunlight Effect' +p107472 +sg25270 +S'Alfred Stieglitz' +p107473 +sa(dp107474 +g25273 +S'platinum print, 1895/1896' +p107475 +sg25267 +g27 +sg25275 +S'1890' +p107476 +sg25268 +S'In Full Sunlight' +p107477 +sg25270 +S'Alfred Stieglitz' +p107478 +sa(dp107479 +g25273 +S'gelatin silver print, 1920s/1930s' +p107480 +sg25267 +g27 +sg25275 +S'1890' +p107481 +sg25268 +S'Weary' +p107482 +sg25270 +S'Alfred Stieglitz' +p107483 +sa(dp107484 +g25273 +S'platinum print, 1895/1896' +p107485 +sg25267 +g27 +sg25275 +S'1890' +p107486 +sg25268 +S'Weary' +p107487 +sg25270 +S'Alfred Stieglitz' +p107488 +sa(dp107489 +g25273 +S'platinum print, 1895/1896' +p107490 +sg25267 +g27 +sg25275 +S'1890' +p107491 +sg25268 +S'Weary' +p107492 +sg25270 +S'Alfred Stieglitz' +p107493 +sa(dp107494 +g25273 +S'platinum print, 1895/1896' +p107495 +sg25267 +g27 +sg25275 +S'1893' +p107496 +sg25268 +S'A Flowerbed at Oaklawn' +p107497 +sg25270 +S'Alfred Stieglitz' +p107498 +sa(dp107499 +g25268 +S'Ornament with Mask' +p107500 +sg25270 +S'Heinrich Aldegrever' +p107501 +sg25273 +S'engraving' +p107502 +sg25275 +S'1550' +p107503 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6d9.jpg' +p107504 +sg25267 +g27 +sa(dp107505 +g25273 +S'platinum print, 1895/1896' +p107506 +sg25267 +g27 +sg25275 +S'1891' +p107507 +sg25268 +S'At Oaklawn' +p107508 +sg25270 +S'Alfred Stieglitz' +p107509 +sa(dp107510 +g25273 +S'gelatin silver print, 1920s/1930s' +p107511 +sg25267 +g27 +sg25275 +S'probably 1893' +p107512 +sg25268 +S'Winter, New York' +p107513 +sg25270 +S'Alfred Stieglitz' +p107514 +sa(dp107515 +g25273 +S'carbon print, 1895' +p107516 +sg25267 +g27 +sg25275 +S'1893' +p107517 +sg25268 +S'The Terminal' +p107518 +sg25270 +S'Alfred Stieglitz' +p107519 +sa(dp107520 +g25273 +S'photogravure, in or before 1913' +p107521 +sg25267 +g27 +sg25275 +S'1893' +p107522 +sg25268 +S'The Terminal' +p107523 +sg25270 +S'Alfred Stieglitz' +p107524 +sa(dp107525 +g25268 +S'The Terminal' +p107526 +sg25270 +S'Alfred Stieglitz' +p107527 +sg25273 +S'gelatin silver print, 1920s/1930s' +p107528 +sg25275 +S'1893' +p107529 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a000625b.jpg' +p107530 +sg25267 +g27 +sa(dp107531 +g25273 +S'gelatin silver print, 1920s/1930s' +p107532 +sg25267 +g27 +sg25275 +S'1893' +p107533 +sg25268 +S'The Terminal' +p107534 +sg25270 +S'Alfred Stieglitz' +p107535 +sa(dp107536 +g25273 +S'gelatin silver print, 1920s/1930s' +p107537 +sg25267 +g27 +sg25275 +S'1892/1893' +p107538 +sg25268 +S'The Asphalt Paver' +p107539 +sg25270 +S'Alfred Stieglitz' +p107540 +sa(dp107541 +g25273 +S'platinum print, 1895/1896' +p107542 +sg25267 +g27 +sg25275 +S'1893' +p107543 +sg25268 +S'Emmy Obermeyer, Agnes Stieglitz, and Flora Small at Oaklawn' +p107544 +sg25270 +S'Alfred Stieglitz' +p107545 +sa(dp107546 +g25273 +S'platinum print, 1895/1896' +p107547 +sg25267 +g27 +sg25275 +S'1893' +p107548 +sg25268 +S'Emmy Obermeyer, Lake George' +p107549 +sg25270 +S'Alfred Stieglitz' +p107550 +sa(dp107551 +g25273 +S'platinum print, 1895/1896' +p107552 +sg25267 +g27 +sg25275 +S'1893' +p107553 +sg25268 +S'Emmy Obermeyer, Tea Island, Lake George' +p107554 +sg25270 +S'Alfred Stieglitz' +p107555 +sa(dp107556 +g25268 +S'Ornament with Trophy of Arms' +p107557 +sg25270 +S'Heinrich Aldegrever' +p107558 +sg25273 +S'engraving' +p107559 +sg25275 +S'1550' +p107560 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6d8.jpg' +p107561 +sg25267 +g27 +sa(dp107562 +g25273 +S'platinum print, 1895/1896' +p107563 +sg25267 +g27 +sg25275 +S'1893' +p107564 +sg25268 +S'Emmy Obermeyer, Tea Island, Lake George' +p107565 +sg25270 +S'Alfred Stieglitz' +p107566 +sa(dp107567 +g25273 +S'platinum print, 1895/1896' +p107568 +sg25267 +g27 +sg25275 +S'probably 1893' +p107569 +sg25268 +S'On the Porch, Oaklawn, Lake George' +p107570 +sg25270 +S'Alfred Stieglitz' +p107571 +sa(dp107572 +g25273 +S'platinum print, 1895/1896' +p107573 +sg25267 +g27 +sg25275 +S'1893' +p107574 +sg25268 +S'Autumn' +p107575 +sg25270 +S'Alfred Stieglitz' +p107576 +sa(dp107577 +g25273 +S'gelatin silver print, 1920s/1930s' +p107578 +sg25267 +g27 +sg25275 +S'1893' +p107579 +sg25268 +S'The Street Paver' +p107580 +sg25270 +S'Alfred Stieglitz' +p107581 +sa(dp107582 +g25273 +S'gelatin silver print, 1920s/1930s' +p107583 +sg25267 +g27 +sg25275 +S'1892/1893' +p107584 +sg25268 +S'The Rag Picker' +p107585 +sg25270 +S'Alfred Stieglitz' +p107586 +sa(dp107587 +g25273 +S'platinum print, 1895/1896' +p107588 +sg25267 +g27 +sg25275 +S'1893' +p107589 +sg25268 +S'A Sunday Morning, New York' +p107590 +sg25270 +S'Alfred Stieglitz' +p107591 +sa(dp107592 +g25273 +S'gelatin silver print, 1920s/1930s' +p107593 +sg25267 +g27 +sg25275 +S'probably 1893' +p107594 +sg25268 +S'Five Points, New York' +p107595 +sg25270 +S'Alfred Stieglitz' +p107596 +sa(dp107597 +g25273 +S'gelatin silver print, 1920s/1930s' +p107598 +sg25267 +g27 +sg25275 +S'probably 1893' +p107599 +sg25268 +S'West Street, New York' +p107600 +sg25270 +S'Alfred Stieglitz' +p107601 +sa(dp107602 +g25273 +S'gelatin silver print, 1920s/1930s' +p107603 +sg25267 +g27 +sg25275 +S'1893' +p107604 +sg25268 +S'The Blizzard, New York' +p107605 +sg25270 +S'Alfred Stieglitz' +p107606 +sa(dp107607 +g25273 +S'gelatin silver print, 1920s/1930s' +p107608 +sg25267 +g27 +sg25275 +S'1893' +p107609 +sg25268 +S'Winter on Fifth Avenue' +p107610 +sg25270 +S'Alfred Stieglitz' +p107611 +sa(dp107612 +g25268 +S'Ornament' +p107613 +sg25270 +S'Heinrich Aldegrever' +p107614 +sg25273 +S'engraving' +p107615 +sg25275 +S'1552' +p107616 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6d0.jpg' +p107617 +sg25267 +g27 +sa(dp107618 +g25273 +S'gelatin silver print, 1920s/1930s' +p107619 +sg25267 +g27 +sg25275 +S'1893' +p107620 +sg25268 +S'Winter on Fifth Avenue' +p107621 +sg25270 +S'Alfred Stieglitz' +p107622 +sa(dp107623 +g25273 +S'photogravure, 1897' +p107624 +sg25267 +g27 +sg25275 +S'1893' +p107625 +sg25268 +S'Winter, Fifth Avenue' +p107626 +sg25270 +S'Alfred Stieglitz' +p107627 +sa(dp107628 +g25273 +S'carbon print, 1894' +p107629 +sg25267 +g27 +sg25275 +S'1893' +p107630 +sg25268 +S'Winter, Fifth Avenue' +p107631 +sg25270 +S'Alfred Stieglitz' +p107632 +sa(dp107633 +g25273 +S'carbon print, after 1897' +p107634 +sg25267 +g27 +sg25275 +S'1893' +p107635 +sg25268 +S'Winter--Fifth Avenue' +p107636 +sg25270 +S'Alfred Stieglitz' +p107637 +sa(dp107638 +g25273 +S'gelatin silver print, 1920s/1930s' +p107639 +sg25267 +g27 +sg25275 +S'probably 1893' +p107640 +sg25268 +S'Winter, New York' +p107641 +sg25270 +S'Alfred Stieglitz' +p107642 +sa(dp107643 +g25273 +S'platinum print, 1895/1896' +p107644 +sg25267 +g27 +sg25275 +S'1894' +p107645 +sg25268 +S'Outward Bound' +p107646 +sg25270 +S'Alfred Stieglitz' +p107647 +sa(dp107648 +g25273 +S'platinum print, 1895/1896' +p107649 +sg25267 +g27 +sg25275 +S'1894' +p107650 +sg25268 +S'On the Seine' +p107651 +sg25270 +S'Alfred Stieglitz' +p107652 +sa(dp107653 +g25273 +S'gelatin silver print, 1920s/1930s' +p107654 +sg25267 +g27 +sg25275 +S'1894' +p107655 +sg25268 +S'Goats outside Paris' +p107656 +sg25270 +S'Alfred Stieglitz' +p107657 +sa(dp107658 +g25273 +S'photogravure in sepia on cream moderately thick smooth wove Japan paper, 1897' +p107659 +sg25267 +g27 +sg25275 +S'1894' +p107660 +sg25268 +S'On the Seine--Near Paris' +p107661 +sg25270 +S'Alfred Stieglitz' +p107662 +sa(dp107663 +g25273 +S'photogravure on cream thick slightly textured wove paper, 1897' +p107664 +sg25267 +g27 +sg25275 +S'1894' +p107665 +sg25268 +S'On the Seine--Near Paris' +p107666 +sg25270 +S'Alfred Stieglitz' +p107667 +sa(dp107668 +g25268 +S'High Fruits with Ornaments' +p107669 +sg25270 +S'Heinrich Aldegrever' +p107670 +sg25273 +S'engraving' +p107671 +sg25275 +S'1552' +p107672 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6ce.jpg' +p107673 +sg25267 +g27 +sa(dp107674 +g25273 +S'photogravure on beige thin slightly textured laid Japan paper, 1903/1904' +p107675 +sg25267 +g27 +sg25275 +S'1894' +p107676 +sg25268 +S'A Decorative Panel' +p107677 +sg25270 +S'Alfred Stieglitz' +p107678 +sa(dp107679 +g25273 +S'gelatin silver print, 1920s/1930s' +p107680 +sg25267 +g27 +sg25275 +S'1894' +p107681 +sg25268 +S'Goats outside Paris' +p107682 +sg25270 +S'Alfred Stieglitz' +p107683 +sa(dp107684 +g25273 +S'carbon print' +p107685 +sg25267 +g27 +sg25275 +S'1894' +p107686 +sg25268 +S'A Decorative Panel' +p107687 +sg25270 +S'Alfred Stieglitz' +p107688 +sa(dp107689 +g25273 +S'carbon print' +p107690 +sg25267 +g27 +sg25275 +S'1894' +p107691 +sg25268 +S'Along the Seine' +p107692 +sg25270 +S'Alfred Stieglitz' +p107693 +sa(dp107694 +g25273 +S'gelatin silver print, 1920s/1930s' +p107695 +sg25267 +g27 +sg25275 +S'1894' +p107696 +sg25268 +S'Going to Pasture' +p107697 +sg25270 +S'Alfred Stieglitz' +p107698 +sa(dp107699 +g25273 +S'platinum print, 1895/1896' +p107700 +sg25267 +g27 +sg25275 +S'1894' +p107701 +sg25268 +S'Homeward' +p107702 +sg25270 +S'Alfred Stieglitz' +p107703 +sa(dp107704 +g25273 +S'gelatin silver print, 1920s/1930s' +p107705 +sg25267 +g27 +sg25275 +S'1894' +p107706 +sg25268 +S'Homeward' +p107707 +sg25270 +S'Alfred Stieglitz' +p107708 +sa(dp107709 +g25268 +S'A Wet Day on the Boulevard, Paris' +p107710 +sg25270 +S'Alfred Stieglitz' +p107711 +sg25273 +S'carbon print' +p107712 +sg25275 +S'1894' +p107713 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b05.jpg' +p107714 +sg25267 +g27 +sa(dp107715 +g25273 +S'photogravure on cream thick slightly textured wove paper, 1897' +p107716 +sg25267 +g27 +sg25275 +S'1894' +p107717 +sg25268 +S'A Wet Day on the Boulevard--Paris' +p107718 +sg25270 +S'Alfred Stieglitz' +p107719 +sa(dp107720 +g25273 +S'gelatin silver print, 1920s/1930s' +p107721 +sg25267 +g27 +sg25275 +S'1894' +p107722 +sg25268 +S'A Wet Day on the Boulevard, Paris' +p107723 +sg25270 +S'Alfred Stieglitz' +p107724 +sa(dp107725 +g25268 +S'Ornament with Vase and Two Female Figures' +p107726 +sg25270 +S'Heinrich Aldegrever' +p107727 +sg25273 +S'engraving' +p107728 +sg25275 +S'1553' +p107729 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6d6.jpg' +p107730 +sg25267 +g27 +sa(dp107731 +g25273 +S'gelatin silver print, 1920s/1930s' +p107732 +sg25267 +g27 +sg25275 +S'1894' +p107733 +sg25268 +S'Paris' +p107734 +sg25270 +S'Alfred Stieglitz' +p107735 +sa(dp107736 +g25273 +S'platinum print, 1895/1896' +p107737 +sg25267 +g27 +sg25275 +S'1894' +p107738 +sg25268 +S'In the Suburbs of Paris' +p107739 +sg25270 +S'Alfred Stieglitz' +p107740 +sa(dp107741 +g25273 +S'platinum print, 1895/1896' +p107742 +sg25267 +g27 +sg25275 +S'1894' +p107743 +sg25268 +S'Sketching in the Bois' +p107744 +sg25270 +S'Alfred Stieglitz' +p107745 +sa(dp107746 +g25273 +S'platinum print, 1895/1896' +p107747 +sg25267 +g27 +sg25275 +S'1894' +p107748 +sg25268 +S'On the Piazza, 6 a.m.' +p107749 +sg25270 +S'Alfred Stieglitz' +p107750 +sa(dp107751 +g25273 +S'platinum print, 1895/1896' +p107752 +sg25267 +g27 +sg25275 +S'1894' +p107753 +sg25268 +S'A Venetian Gamin' +p107754 +sg25270 +S'Alfred Stieglitz' +p107755 +sa(dp107756 +g25268 +S'A Venetian Gamin' +p107757 +sg25270 +S'Alfred Stieglitz' +p107758 +sg25273 +S'gelatin silver print, 1920s/1930s' +p107759 +sg25275 +S'1894' +p107760 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a000625c.jpg' +p107761 +sg25267 +g27 +sa(dp107762 +g25273 +S'platinum print processed with mercury' +p107763 +sg25267 +g27 +sg25275 +S'1894' +p107764 +sg25268 +S'A Venetian Gamin' +p107765 +sg25270 +S'Alfred Stieglitz' +p107766 +sa(dp107767 +g25273 +S'platinum print, 1895/1896' +p107768 +sg25267 +g27 +sg25275 +S'1894' +p107769 +sg25268 +S'A Venetian Gamin' +p107770 +sg25270 +S'Alfred Stieglitz' +p107771 +sa(dp107772 +g25273 +S'platinum print, 1895/1896' +p107773 +sg25267 +g27 +sg25275 +S'1894' +p107774 +sg25268 +S'Gossip, Venice' +p107775 +sg25270 +S'Alfred Stieglitz' +p107776 +sa(dp107777 +g25273 +S'platinum print, 1895/1896' +p107778 +sg25267 +g27 +sg25275 +S'1894' +p107779 +sg25268 +S'Venice' +p107780 +sg25270 +S'Alfred Stieglitz' +p107781 +sa(dp107782 +g25268 +S'Ornament' +p107783 +sg25270 +S'Heinrich Aldegrever' +p107784 +sg25273 +S'engraving' +p107785 +sg25275 +S'1553' +p107786 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6d1.jpg' +p107787 +sg25267 +g27 +sa(dp107788 +g25273 +S'platinum print, 1895/1896' +p107789 +sg25267 +g27 +sg25275 +S'1894' +p107790 +sg25268 +S'A Venetian Well' +p107791 +sg25270 +S'Alfred Stieglitz' +p107792 +sa(dp107793 +g25273 +S'platinum print, 1895/1896' +p107794 +sg25267 +g27 +sg25275 +S'1894' +p107795 +sg25268 +S'A Well, Venice' +p107796 +sg25270 +S'Alfred Stieglitz' +p107797 +sa(dp107798 +g25273 +S'gelatin silver print, 1920s/1930s' +p107799 +sg25267 +g27 +sg25275 +S'1894' +p107800 +sg25268 +S'A Venetian Well' +p107801 +sg25270 +S'Alfred Stieglitz' +p107802 +sa(dp107803 +g25273 +S'platinum print, 1895/1896' +p107804 +sg25267 +g27 +sg25275 +S'1894' +p107805 +sg25268 +S'A Venetian Well' +p107806 +sg25270 +S'Alfred Stieglitz' +p107807 +sa(dp107808 +g25273 +S'gelatin silver print, 1920s/1930s' +p107809 +sg25267 +g27 +sg25275 +S'1894' +p107810 +sg25268 +S'A Venetian Well' +p107811 +sg25270 +S'Alfred Stieglitz' +p107812 +sa(dp107813 +g25273 +S'photogravure on cream moderately thick slightly textured wove paper, 1897' +p107814 +sg25267 +g27 +sg25275 +S'1894' +p107815 +sg25268 +S'A Venetian Canal' +p107816 +sg25270 +S'Alfred Stieglitz' +p107817 +sa(dp107818 +g25273 +S'gelatin silver print, 1920s/1930s' +p107819 +sg25267 +g27 +sg25275 +S'1894' +p107820 +sg25268 +S'Venice' +p107821 +sg25270 +S'Alfred Stieglitz' +p107822 +sa(dp107823 +g25273 +S'gelatin silver print, 1920s/1930s' +p107824 +sg25267 +g27 +sg25275 +S'probably 1894' +p107825 +sg25268 +S'Wash Day, Venice' +p107826 +sg25270 +S'Alfred Stieglitz' +p107827 +sa(dp107828 +g25273 +S'gelatin silver print, 1920s/1930s' +p107829 +sg25267 +g27 +sg25275 +S'1894' +p107830 +sg25268 +S'Venice' +p107831 +sg25270 +S'Alfred Stieglitz' +p107832 +sa(dp107833 +g25273 +S'platinum print, 1895/1896' +p107834 +sg25267 +g27 +sg25275 +S'1894' +p107835 +sg25268 +S'A Venetian Street' +p107836 +sg25270 +S'Alfred Stieglitz' +p107837 +sa(dp107838 +g25268 +S'Commemoration of the Dead' +p107839 +sg25270 +S'Heinrich Aldegrever' +p107840 +sg25273 +S'engraving' +p107841 +sg25275 +S'1529' +p107842 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6fd.jpg' +p107843 +sg25267 +g27 +sa(dp107844 +g25273 +S'platinum print mounted on laid paper, 1895/1896' +p107845 +sg25267 +g27 +sg25275 +S'1894' +p107846 +sg25268 +S'Venice' +p107847 +sg25270 +S'Alfred Stieglitz' +p107848 +sa(dp107849 +g25273 +S'platinum print, 1895/1896' +p107850 +sg25267 +g27 +sg25275 +S'1894' +p107851 +sg25268 +S'A Bit of Venice' +p107852 +sg25270 +S'Alfred Stieglitz' +p107853 +sa(dp107854 +g25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p107855 +sg25267 +g27 +sg25275 +S'1894' +p107856 +sg25268 +S'Venetian Canal' +p107857 +sg25270 +S'Alfred Stieglitz' +p107858 +sa(dp107859 +g25273 +S'platinum print, 1895/1896' +p107860 +sg25267 +g27 +sg25275 +S'1894' +p107861 +sg25268 +S'Venice' +p107862 +sg25270 +S'Alfred Stieglitz' +p107863 +sa(dp107864 +g25273 +S'platinum print. 1895/1896' +p107865 +sg25267 +g27 +sg25275 +S'1894' +p107866 +sg25268 +S'Reflections' +p107867 +sg25270 +S'Alfred Stieglitz' +p107868 +sa(dp107869 +g25273 +S'platinum print mounted on laid paper, 1895/1896' +p107870 +sg25267 +g27 +sg25275 +S'1894' +p107871 +sg25268 +S'Reflections' +p107872 +sg25270 +S'Alfred Stieglitz' +p107873 +sa(dp107874 +g25273 +S'photogravure on cream thick slightly textured wove paper, 1897' +p107875 +sg25267 +g27 +sg25275 +S'1894' +p107876 +sg25268 +S'Reflections--Venice' +p107877 +sg25270 +S'Alfred Stieglitz' +p107878 +sa(dp107879 +g25273 +S'silver gelatin print mounted on paperboard, 1920s/1930s' +p107880 +sg25267 +g27 +sg25275 +S'1894' +p107881 +sg25268 +S'Santi Giovanni e Paolo, Venice' +p107882 +sg25270 +S'Alfred Stieglitz' +p107883 +sa(dp107884 +g25273 +S'platinum print, 1895/1896' +p107885 +sg25267 +g27 +sg25275 +S'1894' +p107886 +sg25268 +S'Santi Giovanni e Paolo, Venice' +p107887 +sg25270 +S'Alfred Stieglitz' +p107888 +sa(dp107889 +g25273 +S'platinum print, 1895/1896' +p107890 +sg25267 +g27 +sg25275 +S'1894' +p107891 +sg25268 +S'Santi Giovanni e Paolo, Venice' +p107892 +sg25270 +S'Alfred Stieglitz' +p107893 +sa(dp107894 +g25268 +S'Self-Portrait' +p107895 +sg25270 +S'Heinrich Aldegrever' +p107896 +sg25273 +g27 +sg25275 +S'1537' +p107897 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6b3.jpg' +p107898 +sg25267 +g27 +sa(dp107899 +g25273 +S'platinum print with mercury' +p107900 +sg25267 +g27 +sg25275 +S'1887' +p107901 +sg25268 +S'Via Fiori, Bellagio' +p107902 +sg25270 +S'Alfred Stieglitz' +p107903 +sa(dp107904 +g25273 +S'gelatin silver print, 1920s/1930s' +p107905 +sg25267 +g27 +sg25275 +S'1887' +p107906 +sg25268 +S'Via Fiori, Bellagio' +p107907 +sg25270 +S'Alfred Stieglitz' +p107908 +sa(dp107909 +g25273 +S'platinum print, 1895/1896' +p107910 +sg25267 +g27 +sg25275 +S'1894' +p107911 +sg25268 +S'A Venetian Doorway' +p107912 +sg25270 +S'Alfred Stieglitz' +p107913 +sa(dp107914 +g25273 +S'platinum print, 1895/1896' +p107915 +sg25267 +g27 +sg25275 +S'1894' +p107916 +sg25268 +S'Venetian Doorway' +p107917 +sg25270 +S'Alfred Stieglitz' +p107918 +sa(dp107919 +g25273 +S'platinum print mounted on laid paper, 1895/1896' +p107920 +sg25267 +g27 +sg25275 +S'1894' +p107921 +sg25268 +S'A Street in Bellagio' +p107922 +sg25270 +S'Alfred Stieglitz' +p107923 +sa(dp107924 +g25273 +S'platinum print, 1895/1896' +p107925 +sg25267 +g27 +sg25275 +S'1894' +p107926 +sg25268 +S'Lake Lucerne' +p107927 +sg25270 +S'Alfred Stieglitz' +p107928 +sa(dp107929 +g25273 +S'platinum print, 1895/1896' +p107930 +sg25267 +g27 +sg25275 +S'1894' +p107931 +sg25268 +S'Mid Snow and Ice' +p107932 +sg25270 +S'Alfred Stieglitz' +p107933 +sa(dp107934 +g25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p107935 +sg25267 +g27 +sg25275 +S'1894' +p107936 +sg25268 +S'Mid Snow and Ice [recto]' +p107937 +sg25270 +S'Alfred Stieglitz' +p107938 +sa(dp107939 +g25273 +S'gelatin silver print' +p107940 +sg25267 +g27 +sg25275 +S'1934' +p107941 +sg25268 +S'The House, Lake George [verso]' +p107942 +sg25270 +S'Alfred Stieglitz' +p107943 +sa(dp107944 +g25273 +S'platinum print, 1895/1896' +p107945 +sg25267 +g27 +sg25275 +S'1894' +p107946 +sg25268 +S'Mid Snow and Ice' +p107947 +sg25270 +S'Alfred Stieglitz' +p107948 +sa(dp107949 +g25268 +S'Modesty' +p107950 +sg25270 +S'Heinrich Aldegrever' +p107951 +sg25273 +g27 +sg25275 +S'1552' +p107952 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6f4.jpg' +p107953 +sg25267 +g27 +sa(dp107954 +g25273 +S'platinum print, 1895/1896' +p107955 +sg25267 +g27 +sg25275 +S'1894' +p107956 +sg25268 +S'From the H\xc3\xb6heweg, Interlaken' +p107957 +sg25270 +S'Alfred Stieglitz' +p107958 +sa(dp107959 +g25273 +S'platinum print, 1895/1896' +p107960 +sg25267 +g27 +sg25275 +S'1894' +p107961 +sg25268 +S'The Jungfrau Group' +p107962 +sg25270 +S'Alfred Stieglitz' +p107963 +sa(dp107964 +g25273 +S'gelatin silver print, 1920s/1930s' +p107965 +sg25267 +g27 +sg25275 +S'1894' +p107966 +sg25268 +S'The Jungfrau Group [recto]' +p107967 +sg25270 +S'Alfred Stieglitz' +p107968 +sa(dp107969 +g25273 +S'gelatin silver print' +p107970 +sg25267 +g27 +sg25275 +S'unknown date\n' +p107971 +sg25268 +S'Maria, the Fruit Seller [verso]' +p107972 +sg25270 +S'Alfred Stieglitz' +p107973 +sa(dp107974 +g25273 +S'platinum print, 1895/1896' +p107975 +sg25267 +g27 +sg25275 +S'1894' +p107976 +sg25268 +S'The Jungfrau' +p107977 +sg25270 +S'Alfred Stieglitz' +p107978 +sa(dp107979 +g25273 +S'photogravure on cream thick slightly textured wove paper, 1897' +p107980 +sg25267 +g27 +sg25275 +S'1894' +p107981 +sg25268 +S'The Letter Box' +p107982 +sg25270 +S'Alfred Stieglitz' +p107983 +sa(dp107984 +g25273 +S'platinum print' +p107985 +sg25267 +g27 +sg25275 +S'1894' +p107986 +sg25268 +S'The Letter Box' +p107987 +sg25270 +S'Alfred Stieglitz' +p107988 +sa(dp107989 +g25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p107990 +sg25267 +g27 +sg25275 +S'1894' +p107991 +sg25268 +S'The Letter Box' +p107992 +sg25270 +S'Alfred Stieglitz' +p107993 +sa(dp107994 +g25273 +S'platinum print, 1895/1896' +p107995 +sg25267 +g27 +sg25275 +S'1894' +p107996 +sg25268 +S'The Letter Box' +p107997 +sg25270 +S'Alfred Stieglitz' +p107998 +sa(dp107999 +g25273 +S'platinum print' +p108000 +sg25267 +g27 +sg25275 +S'1894' +p108001 +sg25268 +S'The Old Mill' +p108002 +sg25270 +S'Alfred Stieglitz' +p108003 +sa(dp108004 +g25268 +S'Jan van Leyden' +p108005 +sg25270 +S'Heinrich Aldegrever' +p108006 +sg25273 +S'engraving' +p108007 +sg25275 +S'unknown date\n' +p108008 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000aecc.jpg' +p108009 +sg25267 +g27 +sa(dp108010 +g25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p108011 +sg25267 +g27 +sg25275 +S'1894' +p108012 +sg25268 +S'The Old Mill' +p108013 +sg25270 +S'Alfred Stieglitz' +p108014 +sa(dp108015 +g25273 +S'photogravure on cream thick slightly textured wove paper, 1897' +p108016 +sg25267 +g27 +sg25275 +S'1894' +p108017 +sg25268 +S'The Old Mill' +p108018 +sg25270 +S'Alfred Stieglitz' +p108019 +sa(dp108020 +g25273 +S'platinum print' +p108021 +sg25267 +g27 +sg25275 +S'1894' +p108022 +sg25268 +S'The Old Mill' +p108023 +sg25270 +S'Alfred Stieglitz' +p108024 +sa(dp108025 +g25273 +S'platinum print, 1895/1896' +p108026 +sg25267 +g27 +sg25275 +S'1894' +p108027 +sg25268 +S'The Old Mill' +p108028 +sg25270 +S'Alfred Stieglitz' +p108029 +sa(dp108030 +g25273 +S'platinum print mounted on laid paper' +p108031 +sg25267 +g27 +sg25275 +S'1894' +p108032 +sg25268 +S'The Little Milkmaid' +p108033 +sg25270 +S'Alfred Stieglitz' +p108034 +sa(dp108035 +g25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p108036 +sg25267 +g27 +sg25275 +S'1894' +p108037 +sg25268 +S'Black Forest Girl' +p108038 +sg25270 +S'Alfred Stieglitz' +p108039 +sa(dp108040 +g25273 +S'platinum print, 1895/1896' +p108041 +sg25267 +g27 +sg25275 +S'1894' +p108042 +sg25268 +S'A Gutach Peasant Girl' +p108043 +sg25270 +S'Alfred Stieglitz' +p108044 +sa(dp108045 +g25273 +S'platinum print, 1895/1896' +p108046 +sg25267 +g27 +sg25275 +S'1894' +p108047 +sg25268 +S'Gutach Children' +p108048 +sg25270 +S'Alfred Stieglitz' +p108049 +sa(dp108050 +g25273 +S'platinum print, 1895/1896' +p108051 +sg25267 +g27 +sg25275 +S'1894' +p108052 +sg25268 +S'Harvesting' +p108053 +sg25270 +S'Alfred Stieglitz' +p108054 +sa(dp108055 +g25273 +S'platinum print, 1895/1896' +p108056 +sg25267 +g27 +sg25275 +S'1894' +p108057 +sg25268 +S'Interrupted' +p108058 +sg25270 +S'Alfred Stieglitz' +p108059 +sa(dp108060 +g25268 +S'Johan van Leyden (Jan Beukels)' +p108061 +sg25270 +S'Artist Information (' +p108062 +sg25273 +S'(artist after)' +p108063 +sg25275 +S'\n' +p108064 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d534.jpg' +p108065 +sg25267 +g27 +sa(dp108066 +g25273 +S'platinum print, 1895/1896' +p108067 +sg25267 +g27 +sg25275 +S'1894' +p108068 +sg25268 +S'From the Fields' +p108069 +sg25270 +S'Alfred Stieglitz' +p108070 +sa(dp108071 +g25273 +S'platinum print, 1895/1896' +p108072 +sg25267 +g27 +sg25275 +S'1894' +p108073 +sg25268 +S'Early Morn' +p108074 +sg25270 +S'Alfred Stieglitz' +p108075 +sa(dp108076 +g25268 +S'Harvesting, Black Forest' +p108077 +sg25270 +S'Alfred Stieglitz' +p108078 +sg25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p108079 +sg25275 +S'1894' +p108080 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a000625d.jpg' +p108081 +sg25267 +g27 +sa(dp108082 +g25273 +S'platinum print' +p108083 +sg25267 +g27 +sg25275 +S'1894' +p108084 +sg25268 +S'Early Morn' +p108085 +sg25270 +S'Alfred Stieglitz' +p108086 +sa(dp108087 +g25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p108088 +sg25267 +g27 +sg25275 +S'1894' +p108089 +sg25268 +S'At the Pump, Black Forest' +p108090 +sg25270 +S'Alfred Stieglitz' +p108091 +sa(dp108092 +g25273 +S'platinum print mounted on laid paper, 1895/1896' +p108093 +sg25267 +g27 +sg25275 +S'1894' +p108094 +sg25268 +S'Sunlight Effect, Gutach' +p108095 +sg25270 +S'Alfred Stieglitz' +p108096 +sa(dp108097 +g25273 +S'platinum print, 1895/1896' +p108098 +sg25267 +g27 +sg25275 +S'1894' +p108099 +sg25268 +S'Sunlight' +p108100 +sg25270 +S'Alfred Stieglitz' +p108101 +sa(dp108102 +g25273 +S'platinum print, 1895/1896' +p108103 +sg25267 +g27 +sg25275 +S'1894' +p108104 +sg25268 +S'A Study, Gutach' +p108105 +sg25270 +S'Alfred Stieglitz' +p108106 +sa(dp108107 +g25273 +S'platinum print, 1895/1896' +p108108 +sg25267 +g27 +sg25275 +S'1894' +p108109 +sg25268 +S'A Study, Gutach' +p108110 +sg25270 +S'Alfred Stieglitz' +p108111 +sa(dp108112 +g25273 +S'platinum print, 1895/1896' +p108113 +sg25267 +g27 +sg25275 +S'1894' +p108114 +sg25268 +S'Wrinkles' +p108115 +sg25270 +S'Alfred Stieglitz' +p108116 +sa(dp108117 +g25268 +S'William Herzog' +p108118 +sg25270 +S'Heinrich Aldegrever' +p108119 +sg25273 +g27 +sg25275 +S'unknown date\n' +p108120 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b07a.jpg' +p108121 +sg25267 +g27 +sa(dp108122 +g25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p108123 +sg25267 +g27 +sg25275 +S'1894' +p108124 +sg25268 +S'Old Woman with Spinning Wheel' +p108125 +sg25270 +S'Alfred Stieglitz' +p108126 +sa(dp108127 +g25273 +S'platinum print, 1895/1896' +p108128 +sg25267 +g27 +sg25275 +S'1894' +p108129 +sg25268 +S'A Bit of Gutach' +p108130 +sg25270 +S'Alfred Stieglitz' +p108131 +sa(dp108132 +g25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p108133 +sg25267 +g27 +sg25275 +S'1894' +p108134 +sg25268 +S'Black Forest House' +p108135 +sg25270 +S'Alfred Stieglitz' +p108136 +sa(dp108137 +g25273 +S'platinum print, 1895/1896' +p108138 +sg25267 +g27 +sg25275 +S'1894' +p108139 +sg25268 +S'Gutach Houses' +p108140 +sg25270 +S'Alfred Stieglitz' +p108141 +sa(dp108142 +g25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p108143 +sg25267 +g27 +sg25275 +S'1894' +p108144 +sg25268 +S'A Gutach Meeting' +p108145 +sg25270 +S'Alfred Stieglitz' +p108146 +sa(dp108147 +g25273 +S'platinum print, 1895/1896' +p108148 +sg25267 +g27 +sg25275 +S'1894' +p108149 +sg25268 +S'The Village Philosopher' +p108150 +sg25270 +S'Alfred Stieglitz' +p108151 +sa(dp108152 +g25273 +S'gelatin silver print mounted on paperboard, 190s/1930s' +p108153 +sg25267 +g27 +sg25275 +S'1894' +p108154 +sg25268 +S'The Village Philosopher' +p108155 +sg25270 +S'Alfred Stieglitz' +p108156 +sa(dp108157 +g25273 +S'platinum print, 1895/1896' +p108158 +sg25267 +g27 +sg25275 +S'1894' +p108159 +sg25268 +S'The Village Philosopher' +p108160 +sg25270 +S'Alfred Stieglitz' +p108161 +sa(dp108162 +g25273 +S'platinum print' +p108163 +sg25267 +g27 +sg25275 +S'1894' +p108164 +sg25268 +S'The Village Philosopher' +p108165 +sg25270 +S'Alfred Stieglitz' +p108166 +sa(dp108167 +g25273 +S'platinum print, 1895-1896' +p108168 +sg25267 +g27 +sg25275 +S'1894' +p108169 +sg25268 +S'Sime Hermann' +p108170 +sg25270 +S'Alfred Stieglitz' +p108171 +sa(dp108172 +g25273 +S'platinum print, 1895-1896' +p108173 +sg25267 +g27 +sg25275 +S'1894' +p108174 +sg25268 +S'Sime Hermann' +p108175 +sg25270 +S'Alfred Stieglitz' +p108176 +sa(dp108177 +g25273 +S'platinum print, 1895/1896' +p108178 +sg25267 +g27 +sg25275 +S'1894' +p108179 +sg25268 +S"Hasemann's Studio" +p108180 +sg25270 +S'Alfred Stieglitz' +p108181 +sa(dp108182 +g25273 +S'platinum print, 1895/1896' +p108183 +sg25267 +g27 +sg25275 +S'1894' +p108184 +sg25268 +S'A Bit of Katwyk' +p108185 +sg25270 +S'Alfred Stieglitz' +p108186 +sa(dp108187 +g25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p108188 +sg25267 +g27 +sg25275 +S'1894' +p108189 +sg25268 +S'Gossip--Katwyk' +p108190 +sg25270 +S'Alfred Stieglitz' +p108191 +sa(dp108192 +g25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p108193 +sg25267 +g27 +sg25275 +S'1894' +p108194 +sg25268 +S'Gossip--Katwyk' +p108195 +sg25270 +S'Alfred Stieglitz' +p108196 +sa(dp108197 +g25268 +S'Gossip--Katwyk' +p108198 +sg25270 +S'Alfred Stieglitz' +p108199 +sg25273 +S'carbon print' +p108200 +sg25275 +S'1894' +p108201 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a000625e.jpg' +p108202 +sg25267 +g27 +sa(dp108203 +g25273 +S'platinum print, 1895/1896' +p108204 +sg25267 +g27 +sg25275 +S'1894' +p108205 +sg25268 +S'Indoors, Katwyk' +p108206 +sg25270 +S'Alfred Stieglitz' +p108207 +sa(dp108208 +g25273 +S'platinum print, 1895/1896' +p108209 +sg25267 +g27 +sg25275 +S'1894' +p108210 +sg25268 +S'Dutch Study' +p108211 +sg25270 +S'Alfred Stieglitz' +p108212 +sa(dp108213 +g25273 +S'platinum print, 1895/1896' +p108214 +sg25267 +g27 +sg25275 +S'1894' +p108215 +sg25268 +S'Katwyk' +p108216 +sg25270 +S'Alfred Stieglitz' +p108217 +sa(dp108218 +g25273 +S'platinum print, 1895/1896' +p108219 +sg25267 +g27 +sg25275 +S'1894' +p108220 +sg25268 +S'Katwyk Dunes' +p108221 +sg25270 +S'Alfred Stieglitz' +p108222 +sa(dp108223 +g25268 +S'Large Dagger Sheath with Nude Couple' +p108224 +sg25270 +S'Heinrich Aldegrever' +p108225 +sg25273 +S'engraving' +p108226 +sg25275 +S'1536' +p108227 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac16.jpg' +p108228 +sg25267 +g27 +sa(dp108229 +g25273 +S'carbon print' +p108230 +sg25267 +g27 +sg25275 +S'1894' +p108231 +sg25268 +S'The Net Mender' +p108232 +sg25270 +S'Alfred Stieglitz' +p108233 +sa(dp108234 +g25273 +S'platinum print, 1895/1896' +p108235 +sg25267 +g27 +sg25275 +S'1894' +p108236 +sg25268 +S'Mending Nets' +p108237 +sg25270 +S'Alfred Stieglitz' +p108238 +sa(dp108239 +g25273 +S'platinum print, 1895/1896' +p108240 +sg25267 +g27 +sg25275 +S'1894' +p108241 +sg25268 +S'On the Dunes' +p108242 +sg25270 +S'Alfred Stieglitz' +p108243 +sa(dp108244 +g25273 +S'gelatin silver print, 1920s/1930s' +p108245 +sg25267 +g27 +sg25275 +S'1894' +p108246 +sg25268 +S'Scurrying Home' +p108247 +sg25270 +S'Alfred Stieglitz' +p108248 +sa(dp108249 +g25273 +S'photogravure on cream moderately thick smooth wove Japan paper, 1894/1895' +p108250 +sg25267 +g27 +sg25275 +S'1894' +p108251 +sg25268 +S'Hour of Prayer' +p108252 +sg25270 +S'Alfred Stieglitz' +p108253 +sa(dp108254 +g25273 +S'photogravure in sepia on cream thick slightly textured wove paper, 1897' +p108255 +sg25267 +g27 +sg25275 +S'1894' +p108256 +sg25268 +S'Scurrying Home' +p108257 +sg25270 +S'Alfred Stieglitz' +p108258 +sa(dp108259 +g25273 +S'platinum print mounted on laid paper, 1895/1896' +p108260 +sg25267 +g27 +sg25275 +S'1894' +p108261 +sg25268 +S'Scurrying Home' +p108262 +sg25270 +S'Alfred Stieglitz' +p108263 +sa(dp108264 +g25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p108265 +sg25267 +g27 +sg25275 +S'1894' +p108266 +sg25268 +S'Wash Day, Katwyk' +p108267 +sg25270 +S'Alfred Stieglitz' +p108268 +sa(dp108269 +g25273 +S'platinum print, 1895/1896' +p108270 +sg25267 +g27 +sg25275 +S'1894' +p108271 +sg25268 +S'Wash Day, Katwyk' +p108272 +sg25270 +S'Alfred Stieglitz' +p108273 +sa(dp108274 +g25273 +S'carbon print' +p108275 +sg25267 +g27 +sg25275 +S'1894' +p108276 +sg25268 +S'Watching for the Return' +p108277 +sg25270 +S'Alfred Stieglitz' +p108278 +sa(dp108279 +g25268 +S'Design for a Dagger Sheath with Cain and Abel' +p108280 +sg25270 +S'Heinrich Aldegrever' +p108281 +sg25273 +S'engraving' +p108282 +sg25275 +S'1539' +p108283 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b07b.jpg' +p108284 +sg25267 +g27 +sa(dp108285 +g25273 +S'carbon print' +p108286 +sg25267 +g27 +sg25275 +S'1894' +p108287 +sg25268 +S'The Landing of the Boats' +p108288 +sg25270 +S'Alfred Stieglitz' +p108289 +sa(dp108290 +g25273 +S'platinum print, 1895/1896' +p108291 +sg25267 +g27 +sg25275 +S'1894' +p108292 +sg25268 +S'The Landing of the Boats' +p108293 +sg25270 +S'Alfred Stieglitz' +p108294 +sa(dp108295 +g25273 +S'platinum print, 1895/1896' +p108296 +sg25267 +g27 +sg25275 +S'1894' +p108297 +sg25268 +S'Unloading' +p108298 +sg25270 +S'Alfred Stieglitz' +p108299 +sa(dp108300 +g25273 +S'platinum print, 1895/1896' +p108301 +sg25267 +g27 +sg25275 +S'1894' +p108302 +sg25268 +S'At Anchor' +p108303 +sg25270 +S'Alfred Stieglitz' +p108304 +sa(dp108305 +g25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p108306 +sg25267 +g27 +sg25275 +S'1894' +p108307 +sg25268 +S'At Anchor' +p108308 +sg25270 +S'Alfred Stieglitz' +p108309 +sa(dp108310 +g25273 +S'platinum print, 1895/1896' +p108311 +sg25267 +g27 +sg25275 +S'1894' +p108312 +sg25268 +S"The Fisherman's Return" +p108313 +sg25270 +S'Alfred Stieglitz' +p108314 +sa(dp108315 +g25273 +S'photogravure on cream moderately thick slightly textured wove paper, probably 1897' +p108316 +sg25267 +g27 +sg25275 +S'1894' +p108317 +sg25268 +S'The Incoming Boat' +p108318 +sg25270 +S'Alfred Stieglitz' +p108319 +sa(dp108320 +g25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p108321 +sg25267 +g27 +sg25275 +S'1894' +p108322 +sg25268 +S'The Beach, Katwyk' +p108323 +sg25270 +S'Alfred Stieglitz' +p108324 +sa(dp108325 +g25273 +S'platinum print, 1895/1896' +p108326 +sg25267 +g27 +sg25275 +S'1894' +p108327 +sg25268 +S'In the Lowlands' +p108328 +sg25270 +S'Alfred Stieglitz' +p108329 +sa(dp108330 +g25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p108331 +sg25267 +g27 +sg25275 +S'1894' +p108332 +sg25268 +S'On the Dykes' +p108333 +sg25270 +S'Alfred Stieglitz' +p108334 +sa(dp108335 +g25268 +S'Design for a Dagger Sheath with Cain and Abel' +p108336 +sg25270 +S'Heinrich Aldegrever' +p108337 +sg25273 +S'engraving' +p108338 +sg25275 +S'1539' +p108339 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b07c.jpg' +p108340 +sg25267 +g27 +sa(dp108341 +g25273 +S'platinum print, 1895/1896' +p108342 +sg25267 +g27 +sg25275 +S'1894' +p108343 +sg25268 +S'A Dutch Waterway' +p108344 +sg25270 +S'Alfred Stieglitz' +p108345 +sa(dp108346 +g25273 +S'platinum print mounted on laid paper, 1895/1896' +p108347 +sg25267 +g27 +sg25275 +S'1894' +p108348 +sg25268 +S'On the Dykes' +p108349 +sg25270 +S'Alfred Stieglitz' +p108350 +sa(dp108351 +g25273 +S'platinum print, 1895/1896' +p108352 +sg25267 +g27 +sg25275 +S'1894' +p108353 +sg25268 +S'Twilight' +p108354 +sg25270 +S'Alfred Stieglitz' +p108355 +sa(dp108356 +g25273 +S'platinum print, 1895/1896' +p108357 +sg25267 +g27 +sg25275 +S'1894' +p108358 +sg25268 +S'Moses Ezekiel' +p108359 +sg25270 +S'Alfred Stieglitz' +p108360 +sa(dp108361 +g25273 +S'platinum print, 1895/1896' +p108362 +sg25267 +g27 +sg25275 +S'1894' +p108363 +sg25268 +S'Miss Isaacs' +p108364 +sg25270 +S'Alfred Stieglitz' +p108365 +sa(dp108366 +g25273 +S'platinum print, 1895/1896' +p108367 +sg25267 +g27 +sg25275 +S'1894' +p108368 +sg25268 +S'My Father' +p108369 +sg25270 +S'Alfred Stieglitz' +p108370 +sa(dp108371 +g25273 +S'platinum print, 1895/1896' +p108372 +sg25267 +g27 +sg25275 +S'1894' +p108373 +sg25268 +S'My Father' +p108374 +sg25270 +S'Alfred Stieglitz' +p108375 +sa(dp108376 +g25273 +S'platinum print, 1895/1896' +p108377 +sg25267 +g27 +sg25275 +S'1894' +p108378 +sg25268 +S'My Father' +p108379 +sg25270 +S'Alfred Stieglitz' +p108380 +sa(dp108381 +g25273 +S'platinum print with palladium, 1916' +p108382 +sg25267 +g27 +sg25275 +S'1894' +p108383 +sg25268 +S'My Father' +p108384 +sg25270 +S'Alfred Stieglitz' +p108385 +sa(dp108386 +g25273 +S'platinum print, 1895/1896' +p108387 +sg25267 +g27 +sg25275 +S'1894' +p108388 +sg25268 +S'Impression, Winter' +p108389 +sg25270 +S'Alfred Stieglitz' +p108390 +sa(dp108391 +g25268 +S'The Fall of Man' +p108392 +sg25270 +S'Albrecht Altdorfer' +p108393 +sg25273 +S'woodcut' +p108394 +sg25275 +S'c. 1513' +p108395 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a70d.jpg' +p108396 +sg25267 +g27 +sa(dp108397 +g25273 +S'platinum print, 1895/1896' +p108398 +sg25267 +g27 +sg25275 +S'1894' +p108399 +sg25268 +S'An Impression, Winter' +p108400 +sg25270 +S'Alfred Stieglitz' +p108401 +sa(dp108402 +g25273 +S'platinum print, 1895/1896' +p108403 +sg25267 +g27 +sg25275 +S'1894' +p108404 +sg25268 +S'In the Park' +p108405 +sg25270 +S'Alfred Stieglitz' +p108406 +sa(dp108407 +g25273 +S'platinum print, 1895/1896' +p108408 +sg25267 +g27 +sg25275 +S'1894' +p108409 +sg25268 +S'Winter (Central Park)' +p108410 +sg25270 +S'Alfred Stieglitz' +p108411 +sa(dp108412 +g25273 +S'platinum print, 1895/1896' +p108413 +sg25267 +g27 +sg25275 +S'1894' +p108414 +sg25268 +S'Winter, Central Park' +p108415 +sg25270 +S'Alfred Stieglitz' +p108416 +sa(dp108417 +g25273 +S'photogravure in blue-black on wove paper, 1897' +p108418 +sg25267 +g27 +sg25275 +S'1894' +p108419 +sg25268 +S'A Winter Sky--Central Park' +p108420 +sg25270 +S'Alfred Stieglitz' +p108421 +sa(dp108422 +g25273 +S'platinum print, 1895/1896' +p108423 +sg25267 +g27 +sg25275 +S'1895' +p108424 +sg25268 +S'Emmy at Oaklawn, Lake George' +p108425 +sg25270 +S'Alfred Stieglitz' +p108426 +sa(dp108427 +g25273 +S'platinum print, 1895/1896' +p108428 +sg25267 +g27 +sg25275 +S'1895' +p108429 +sg25268 +S'Ma, Aunt Rosa, Selma, Ag, Emmy, Ralph Bernheim, Hans Wetzler and Minnie Wetzler, Lake George' +p108430 +sg25270 +S'Alfred Stieglitz' +p108431 +sa(dp108432 +g25273 +S'gelatin silver print, 1920s/1930s' +p108433 +sg25267 +g27 +sg25275 +S'1888' +p108434 +sg25268 +S'Stieglitz Family at Oaklawn, Lake George' +p108435 +sg25270 +S'Alfred Stieglitz' +p108436 +sa(dp108437 +g25273 +S'platinum print, 1895/1896' +p108438 +sg25267 +g27 +sg25275 +S'1895' +p108439 +sg25268 +S'Mr. Randolph' +p108440 +sg25270 +S'Alfred Stieglitz' +p108441 +sa(dp108442 +g25273 +S'platinum print, 1895/1896' +p108443 +sg25267 +g27 +sg25275 +S'1895' +p108444 +sg25268 +S'Mr. Randolph' +p108445 +sg25270 +S'Alfred Stieglitz' +p108446 +sa(dp108447 +g25268 +S'Expulsion from Paradise' +p108448 +sg25270 +S'Albrecht Altdorfer' +p108449 +sg25273 +S'woodcut' +p108450 +sg25275 +S'c. 1513' +p108451 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a70c.jpg' +p108452 +sg25267 +g27 +sa(dp108453 +g25273 +S'platinum print, 1895/1896' +p108454 +sg25267 +g27 +sg25275 +S'1895' +p108455 +sg25268 +S'Professor Werner' +p108456 +sg25270 +S'Alfred Stieglitz' +p108457 +sa(dp108458 +g25273 +S'platinum print, 1895/1896' +p108459 +sg25267 +g27 +sg25275 +S'1895' +p108460 +sg25268 +S'At Rockledge, Florida' +p108461 +sg25270 +S'Alfred Stieglitz' +p108462 +sa(dp108463 +g25273 +S'platinum print, 1895/1896' +p108464 +sg25267 +g27 +sg25275 +S'1895' +p108465 +sg25268 +S'At Rockledge, Florida' +p108466 +sg25270 +S'Alfred Stieglitz' +p108467 +sa(dp108468 +g25273 +S'gelatin silver print, 1920s/1930s' +p108469 +sg25267 +g27 +sg25275 +S'probably 1893' +p108470 +sg25268 +S'Sunday, Fifth Avenue and Fifty-Seventh Street, New York' +p108471 +sg25270 +S'Alfred Stieglitz' +p108472 +sa(dp108473 +g25273 +S'platinum print' +p108474 +sg25267 +g27 +sg25275 +S'probably 1893' +p108475 +sg25268 +S'Winter, New York' +p108476 +sg25270 +S'Alfred Stieglitz' +p108477 +sa(dp108478 +g25273 +S'platinum print, 1896' +p108479 +sg25267 +g27 +sg25275 +S'1894' +p108480 +sg25268 +S'Sime Hermann, Mr. and Mrs. Mann, Dr. Brown, Mr. McGibbon, Miss Lonthicum and Emmy - On Board the Bourgogne May 5-14, 1896' +p108481 +sg25270 +S'Alfred Stieglitz' +p108482 +sa(dp108483 +g25273 +S'photogravure on yellow chine coll? on cream thick moderately textured wove paper, 1897' +p108484 +sg25267 +g27 +sg25275 +S'1896' +p108485 +sg25268 +S'The Glow of Night--New York' +p108486 +sg25270 +S'Alfred Stieglitz' +p108487 +sa(dp108488 +g25273 +S'gelatin silver print' +p108489 +sg25267 +g27 +sg25275 +S'1897' +p108490 +sg25268 +S'Night--New York' +p108491 +sg25270 +S'Alfred Stieglitz' +p108492 +sa(dp108493 +g25273 +S'photogravure on beige medium weight slightly textures wove paper, 1897' +p108494 +sg25267 +g27 +sg25275 +S'1896' +p108495 +sg25268 +S'Reflections: Night--New York' +p108496 +sg25270 +S'Alfred Stieglitz' +p108497 +sa(dp108498 +g25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p108499 +sg25267 +g27 +sg25275 +S'1904/1911' +p108500 +sg25268 +S'At City Hall, New York' +p108501 +sg25270 +S'Alfred Stieglitz' +p108502 +sa(dp108503 +g25268 +S'Cupid with the Wheel of Fortune' +p108504 +sg25270 +S'Titian' +p108505 +sg25273 +S'oil on canvas' +p108506 +sg25275 +S'c. 1520' +p108507 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000082c.jpg' +p108508 +sg25267 +g27 +sa(dp108509 +g25268 +S"Joachim's Offering Refused" +p108510 +sg25270 +S'Albrecht Altdorfer' +p108511 +sg25273 +S'woodcut' +p108512 +sg25275 +S'c. 1513' +p108513 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a730.jpg' +p108514 +sg25267 +g27 +sa(dp108515 +g25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p108516 +sg25267 +g27 +sg25275 +S'1897' +p108517 +sg25268 +S'Night--The Savoy' +p108518 +sg25270 +S'Alfred Stieglitz' +p108519 +sa(dp108520 +g25273 +S'gelatin silver print, 1920s/1930s' +p108521 +sg25267 +g27 +sg25275 +S'1898' +p108522 +sg25268 +S'Night, New York' +p108523 +sg25270 +S'Alfred Stieglitz' +p108524 +sa(dp108525 +g25273 +S'gelatin silver print, 1920s/1930s' +p108526 +sg25267 +g27 +sg25275 +S'probably 1898' +p108527 +sg25268 +S'Night, New York' +p108528 +sg25270 +S'Alfred Stieglitz' +p108529 +sa(dp108530 +g25273 +S'gelatin silver print, 1920s/1930s' +p108531 +sg25267 +g27 +sg25275 +S'probably 1898' +p108532 +sg25268 +S'Night--Fifth Avenue' +p108533 +sg25270 +S'Alfred Stieglitz' +p108534 +sa(dp108535 +g25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p108536 +sg25267 +g27 +sg25275 +S'1897' +p108537 +sg25268 +S'Night, New York' +p108538 +sg25270 +S'Alfred Stieglitz' +p108539 +sa(dp108540 +g25273 +S'carbon print' +p108541 +sg25267 +g27 +sg25275 +S'1898' +p108542 +sg25268 +S'An Icy Night' +p108543 +sg25270 +S'Alfred Stieglitz' +p108544 +sa(dp108545 +g25273 +S'gelatin silver print, 1920s/1930s' +p108546 +sg25267 +g27 +sg25275 +S'1898' +p108547 +sg25268 +S'An Icy Night' +p108548 +sg25270 +S'Alfred Stieglitz' +p108549 +sa(dp108550 +g25273 +S'platinum print, hand-colored' +p108551 +sg25267 +g27 +sg25275 +S'1897' +p108552 +sg25268 +S'Savoy Hotel, New York' +p108553 +sg25270 +S'Alfred Stieglitz' +p108554 +sa(dp108555 +g25273 +S'platinum print' +p108556 +sg25267 +g27 +sg25275 +S'1899' +p108557 +sg25268 +S'Kitty' +p108558 +sg25270 +S'Alfred Stieglitz' +p108559 +sa(dp108560 +g25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p108561 +sg25267 +g27 +sg25275 +S'1899' +p108562 +sg25268 +S'Kitty and Emmy Stieglitz' +p108563 +sg25270 +S'Alfred Stieglitz' +p108564 +sa(dp108565 +g25268 +S'Annunciation to Joachim' +p108566 +sg25270 +S'Albrecht Altdorfer' +p108567 +sg25273 +S'woodcut' +p108568 +sg25275 +S'c. 1513' +p108569 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a72f.jpg' +p108570 +sg25267 +g27 +sa(dp108571 +g25268 +S'Spring Showers--The Street-Cleaner' +p108572 +sg25270 +S'Alfred Stieglitz' +p108573 +sg25273 +S'photogravure on beige thin slightly textured laid Japanese paper, 1903/1904' +p108574 +sg25275 +S'1900/1901' +p108575 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a000625f.jpg' +p108576 +sg25267 +g27 +sa(dp108577 +g25273 +S'gelatin silver print, 1920s/1930s' +p108578 +sg25267 +g27 +sg25275 +S'1900/1901' +p108579 +sg25268 +S'Street Sweeper--Little Tree' +p108580 +sg25270 +S'Alfred Stieglitz' +p108581 +sa(dp108582 +g25273 +S'gelatin silver print, 1920s/1930s' +p108583 +sg25267 +g27 +sg25275 +S'1900/1901' +p108584 +sg25268 +S'Street Sweeper--Little Tree' +p108585 +sg25270 +S'Alfred Stieglitz' +p108586 +sa(dp108587 +g25273 +S'gelatin silver print, 1920s/1930s' +p108588 +sg25267 +g27 +sg25275 +S'probably 1901' +p108589 +sg25268 +S'Sunday Afternoon--From My Window, 1111 Madison Avenue, Looking South' +p108590 +sg25270 +S'Alfred Stieglitz' +p108591 +sa(dp108592 +g25273 +S'photogravure on beige thin slightly textured laid Japanese paper, 1903/1904' +p108593 +sg25267 +g27 +sg25275 +S'1901' +p108594 +sg25268 +S'Spring--The Child' +p108595 +sg25270 +S'Alfred Stieglitz' +p108596 +sa(dp108597 +g25273 +S'gelatin silver print, 1920s/1930s' +p108598 +sg25267 +g27 +sg25275 +S'1901' +p108599 +sg25268 +S'Spring' +p108600 +sg25270 +S'Alfred Stieglitz' +p108601 +sa(dp108602 +g25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p108603 +sg25267 +g27 +sg25275 +S'1900/1901' +p108604 +sg25268 +S'Mrs. Stieffel' +p108605 +sg25270 +S'Alfred Stieglitz' +p108606 +sa(dp108607 +g25273 +S'carbon or gum print' +p108608 +sg25267 +g27 +sg25275 +S'1902' +p108609 +sg25268 +S'From My Window, New York' +p108610 +sg25270 +S'Alfred Stieglitz' +p108611 +sa(dp108612 +g25273 +S'photogravure on beige thin slightly textured laid Japan paper, 1903/1904' +p108613 +sg25267 +g27 +sg25275 +S'1900/1901' +p108614 +sg25268 +S'The Street, Fifth Avenue' +p108615 +sg25270 +S'Alfred Stieglitz' +p108616 +sa(dp108617 +g25273 +S'gelatin silver print, 1920s/1930s' +p108618 +sg25267 +g27 +sg25275 +S'1900/1901' +p108619 +sg25268 +S'Fifth Avenue--30th Street' +p108620 +sg25270 +S'Alfred Stieglitz' +p108621 +sa(dp108622 +g25268 +S'Joachim Embracing Anna' +p108623 +sg25270 +S'Albrecht Altdorfer' +p108624 +sg25273 +S'woodcut' +p108625 +sg25275 +S'c. 1513' +p108626 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a72e.jpg' +p108627 +sg25267 +g27 +sa(dp108628 +g25273 +S'photogravure on beige thin slightly textured laid Japan paper, 1910' +p108629 +sg25267 +g27 +sg25275 +S'1902' +p108630 +sg25268 +S'The Hand of Man' +p108631 +sg25270 +S'Alfred Stieglitz' +p108632 +sa(dp108633 +g25268 +S'The Hand of Man' +p108634 +sg25270 +S'Alfred Stieglitz' +p108635 +sg25273 +S'gelatin silver print mounted on paperboard, 1920s/1930s' +p108636 +sg25275 +S'1902' +p108637 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006260.jpg' +p108638 +sg25267 +g27 +sa(dp108639 +g25273 +S'gelatin silver print, 1920s/1930s' +p108640 +sg25267 +g27 +sg25275 +S'1902' +p108641 +sg25268 +S'On the Ferry Boat' +p108642 +sg25270 +S'Alfred Stieglitz' +p108643 +sa(dp108644 +g25273 +S'photogravure on beige thin slightly textured laid Japan paper, in or before 1910' +p108645 +sg25267 +g27 +sg25275 +S'1903' +p108646 +sg25268 +S'The Flatiron' +p108647 +sg25270 +S'Alfred Stieglitz' +p108648 +sa(dp108649 +g25273 +S'gelatin silver print, 1920s/1930s' +p108650 +sg25267 +g27 +sg25275 +S'1903' +p108651 +sg25268 +S'The Flatiron' +p108652 +sg25270 +S'Alfred Stieglitz' +p108653 +sa(dp108654 +g25273 +S'gelatin silver print' +p108655 +sg25267 +g27 +sg25275 +S'1903' +p108656 +sg25268 +S'The Flatiron' +p108657 +sg25270 +S'Alfred Stieglitz' +p108658 +sa(dp108659 +g25273 +S'photogravure on beige thick moderately textured wove paper, in or before 1909' +p108660 +sg25267 +g27 +sg25275 +S'1903' +p108661 +sg25268 +S'The Railroad Yard, Winter' +p108662 +sg25270 +S'Alfred Stieglitz' +p108663 +sa(dp108664 +g25273 +S'platinum print on yellow paper' +p108665 +sg25267 +g27 +sg25275 +S'1904' +p108666 +sg25268 +S'Miss S.R.' +p108667 +sg25270 +S'Alfred Stieglitz' +p108668 +sa(dp108669 +g25273 +S'gelatin silver print, 1920s/1930s' +p108670 +sg25267 +g27 +sg25275 +S'1904' +p108671 +sg25268 +S'Miss S.R.' +p108672 +sg25270 +S'Alfred Stieglitz' +p108673 +sa(dp108674 +g25273 +S'photogravure on cream medium weight very smooth wove Japan paper, before 1909' +p108675 +sg25267 +g27 +sg25275 +S'1904' +p108676 +sg25268 +S'Horses--Tirol' +p108677 +sg25270 +S'Alfred Stieglitz' +p108678 +sa(dp108679 +g25268 +S'Presentation of the Virgin' +p108680 +sg25270 +S'Albrecht Altdorfer' +p108681 +sg25273 +S'woodcut' +p108682 +sg25275 +S'c. 1513' +p108683 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a72d.jpg' +p108684 +sg25267 +g27 +sa(dp108685 +g25273 +S'gelatin silver print mounted on paperboard' +p108686 +sg25267 +g27 +sg25275 +S'probably 1911' +p108687 +sg25268 +S'European Building' +p108688 +sg25270 +S'Alfred Stieglitz' +p108689 +sa(dp108690 +g25273 +S'photogravure on beige thin slightly textured laid Japan paper, in or before 1910' +p108691 +sg25267 +g27 +sg25275 +S'1904' +p108692 +sg25268 +S'Going to the Post, Morris Park' +p108693 +sg25270 +S'Alfred Stieglitz' +p108694 +sa(dp108695 +g25273 +S'gelatin silver print, 1924/1937' +p108696 +sg25267 +g27 +sg25275 +S'1911' +p108697 +sg25268 +S'Paris' +p108698 +sg25270 +S'Alfred Stieglitz' +p108699 +sa(dp108700 +g25273 +S'platinum print' +p108701 +sg25267 +g27 +sg25275 +S'1905' +p108702 +sg25268 +S'Kitty Stieglitz' +p108703 +sg25270 +S'Alfred Stieglitz' +p108704 +sa(dp108705 +g25273 +S'platinum print processed with mercury' +p108706 +sg25267 +g27 +sg25275 +S'1905' +p108707 +sg25268 +S'Kitty' +p108708 +sg25270 +S'Alfred Stieglitz' +p108709 +sa(dp108710 +g25273 +S'platinum print processed with mercury' +p108711 +sg25267 +g27 +sg25275 +S'1906' +p108712 +sg25268 +S'First Steichen Exhibition, Main Room--Photo-Secession Gallery' +p108713 +sg25270 +S'Alfred Stieglitz' +p108714 +sa(dp108715 +g25273 +S'platinum print processed with mercury' +p108716 +sg25267 +g27 +sg25275 +S'1904' +p108717 +sg25268 +S'Kitty--Flower Pot' +p108718 +sg25270 +S'Alfred Stieglitz' +p108719 +sa(dp108720 +g25273 +S'Autochrome' +p108721 +sg25267 +g27 +sg25275 +S'1907' +p108722 +sg25268 +S'Dr. Fritz Raab: Sunspots' +p108723 +sg25270 +S'Alfred Stieglitz' +p108724 +sa(dp108725 +g25273 +S'gelatin silver print, 1920s/1930s' +p108726 +sg25267 +g27 +sg25275 +S'1907' +p108727 +sg25268 +S'Clara Lauer, Kitty and Emmy Stieglitz' +p108728 +sg25270 +S'Alfred Stieglitz' +p108729 +sa(dp108730 +g25273 +S'Autochrome' +p108731 +sg25267 +g27 +sg25275 +S'1915/1916' +p108732 +sg25268 +S'Kitty Stieglitz' +p108733 +sg25270 +S'Alfred Stieglitz' +p108734 +sa(dp108735 +g25268 +S'The Annunciation' +p108736 +sg25270 +S'Albrecht Altdorfer' +p108737 +sg25273 +S'woodcut' +p108738 +sg25275 +S'c. 1513' +p108739 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a731.jpg' +p108740 +sg25267 +g27 +sa(dp108741 +g25273 +S'Autochrome' +p108742 +sg25267 +g27 +sg25275 +S'1907' +p108743 +sg25268 +S'Sophie Raab' +p108744 +sg25270 +S'Alfred Stieglitz' +p108745 +sa(dp108746 +g25273 +S'Autochrome' +p108747 +sg25267 +g27 +sg25275 +S'1907' +p108748 +sg25268 +S'Alfred and Kitty Stieglitz' +p108749 +sg25270 +S'Alfred Stieglitz' +p108750 +sa(dp108751 +g25268 +S'The Steerage' +p108752 +sg25270 +S'Alfred Stieglitz' +p108753 +sg25273 +S'gelatin silver print, 1920s/1930s' +p108754 +sg25275 +S'1907' +p108755 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a0005406.jpg' +p108756 +sg25267 +g27 +sa(dp108757 +g25273 +S'photogravure on cream moderately thick smooth wove Japan paper, in or before 1913' +p108758 +sg25267 +g27 +sg25275 +S'1907' +p108759 +sg25268 +S'The Steerage' +p108760 +sg25270 +S'Alfred Stieglitz' +p108761 +sa(dp108762 +g25268 +S'The Steerage' +p108763 +sg25270 +S'Alfred Stieglitz' +p108764 +sg25273 +S'photogravure on thin beige slightly textured laid Japan paper, 1915' +p108765 +sg25275 +S'1907' +p108766 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006261.jpg' +p108767 +sg25267 +g27 +sa(dp108768 +g25273 +S'photogravure on beige thin slightly textured laid Japan paper, 1911' +p108769 +sg25267 +g27 +sg25275 +S'1907' +p108770 +sg25268 +S'The Steerage' +p108771 +sg25270 +S'Alfred Stieglitz' +p108772 +sa(dp108773 +g25273 +S'Autochrome' +p108774 +sg25267 +g27 +sg25275 +S'probably 1907' +p108775 +sg25268 +S'Self-Portrait' +p108776 +sg25270 +S'Alfred Stieglitz' +p108777 +sa(dp108778 +g25273 +S'Autochrome' +p108779 +sg25267 +g27 +sg25275 +S'1907' +p108780 +sg25268 +S'Unknown Woman' +p108781 +sg25270 +S'Alfred Stieglitz' +p108782 +sa(dp108783 +g25273 +S'Autochrome' +p108784 +sg25267 +g27 +sg25275 +S'probably 1907' +p108785 +sg25268 +S'Emmeline Stieglitz' +p108786 +sg25270 +S'Alfred Stieglitz' +p108787 +sa(dp108788 +g25273 +S'Autochrome' +p108789 +sg25267 +g27 +sg25275 +S'1907' +p108790 +sg25268 +S'Frank Eugene' +p108791 +sg25270 +S'Alfred Stieglitz' +p108792 +sa(dp108793 +g25268 +S'The Visitation' +p108794 +sg25270 +S'Albrecht Altdorfer' +p108795 +sg25273 +S'woodcut' +p108796 +sg25275 +S'c. 1513' +p108797 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a732.jpg' +p108798 +sg25267 +g27 +sa(dp108799 +g25273 +S'Autochrome' +p108800 +sg25267 +g27 +sg25275 +S'possibly 1908' +p108801 +sg25268 +S'Kitty Stieglitz' +p108802 +sg25270 +S'Alfred Stieglitz' +p108803 +sa(dp108804 +g25273 +S'Autochrome' +p108805 +sg25267 +g27 +sg25275 +S'1907' +p108806 +sg25268 +S'Hedwig Stieglitz and Agnes Engelhard' +p108807 +sg25270 +S'Alfred Stieglitz' +p108808 +sa(dp108809 +g25273 +S'Autochrome' +p108810 +sg25267 +g27 +sg25275 +S'1907' +p108811 +sg25268 +S'Hedwig Stieglitz' +p108812 +sg25270 +S'Alfred Stieglitz' +p108813 +sa(dp108814 +g25273 +S'platinum print' +p108815 +sg25267 +g27 +sg25275 +S'probably 1916' +p108816 +sg25268 +S'Charles Duncan' +p108817 +sg25270 +S'Alfred Stieglitz' +p108818 +sa(dp108819 +g25268 +S'Self-Portrait' +p108820 +sg25270 +S'Alfred Stieglitz' +p108821 +sg25273 +S'platinum print' +p108822 +sg25275 +S'probably 1911' +p108823 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006262.jpg' +p108824 +sg25267 +g27 +sa(dp108825 +g25273 +S'gelatin silver print mounted on paperboard, 1924/1937' +p108826 +sg25267 +g27 +sg25275 +S'1910' +p108827 +sg25268 +S'The Dirigible' +p108828 +sg25270 +S'Alfred Stieglitz' +p108829 +sa(dp108830 +g25273 +S'photogravure on beige thin slightly textured laid Japan paper, in or before 1913' +p108831 +sg25267 +g27 +sg25275 +S'1910' +p108832 +sg25268 +S'After Working Hours--The Ferry Boat' +p108833 +sg25270 +S'Alfred Stieglitz' +p108834 +sa(dp108835 +g25273 +S'gelatin silver print, 1924/1937' +p108836 +sg25267 +g27 +sg25275 +S'1910' +p108837 +sg25268 +S'After Working Hours--The Ferry Boat' +p108838 +sg25270 +S'Alfred Stieglitz' +p108839 +sa(dp108840 +g25273 +S'gelatin silver print, 1924/1937' +p108841 +sg25267 +g27 +sg25275 +S'1910' +p108842 +sg25268 +S'The City across the River' +p108843 +sg25270 +S'Alfred Stieglitz' +p108844 +sa(dp108845 +g25268 +S'The City of Ambitions' +p108846 +sg25270 +S'Alfred Stieglitz' +p108847 +sg25273 +S'photogravure on beige thin slightly textured laid Japan paper, in or before 1913' +p108848 +sg25275 +S'1910' +p108849 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006263.jpg' +p108850 +sg25267 +g27 +sa(dp108851 +g25268 +S'The Nativity' +p108852 +sg25270 +S'Albrecht Altdorfer' +p108853 +sg25273 +S'woodcut' +p108854 +sg25275 +S'c. 1513' +p108855 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a733.jpg' +p108856 +sg25267 +g27 +sa(dp108857 +g25273 +S'gelatin silver print, 1924/1937' +p108858 +sg25267 +g27 +sg25275 +S'1910' +p108859 +sg25268 +S'The City of Ambition' +p108860 +sg25270 +S'Alfred Stieglitz' +p108861 +sa(dp108862 +g25273 +S'gelatin silver print, 1924/1937' +p108863 +sg25267 +g27 +sg25275 +S'1910' +p108864 +sg25268 +S'Singer Building from Hudson River' +p108865 +sg25270 +S'Alfred Stieglitz' +p108866 +sa(dp108867 +g25273 +S'photogravure on beige thin slightly textured laid Japan paper, in or before 1913' +p108868 +sg25267 +g27 +sg25275 +S'1910' +p108869 +sg25268 +S'Old and New New York' +p108870 +sg25270 +S'Alfred Stieglitz' +p108871 +sa(dp108872 +g25273 +S'gelatin silver print, 1924/1937' +p108873 +sg25267 +g27 +sg25275 +S'1910' +p108874 +sg25268 +S'Old and New New York' +p108875 +sg25270 +S'Alfred Stieglitz' +p108876 +sa(dp108877 +g25273 +S'photogravure on beige thin slightly textured laid Japan paper, in or before 1913' +p108878 +sg25267 +g27 +sg25275 +S'1910' +p108879 +sg25268 +S'Outward Bound, The Mauretania' +p108880 +sg25270 +S'Alfred Stieglitz' +p108881 +sa(dp108882 +g25273 +S'gelatin silver print, 1924/1937' +p108883 +sg25267 +g27 +sg25275 +S'1910' +p108884 +sg25268 +S'Outward Bound, The Mauretania' +p108885 +sg25270 +S'Alfred Stieglitz' +p108886 +sa(dp108887 +g25273 +S'gelatin silver print, 1924/1937' +p108888 +sg25267 +g27 +sg25275 +S'1910' +p108889 +sg25268 +S'The Ferry Boat' +p108890 +sg25270 +S'Alfred Stieglitz' +p108891 +sa(dp108892 +g25273 +S'platinum print' +p108893 +sg25267 +g27 +sg25275 +S'probably 1915' +p108894 +sg25268 +S'Charles H. Caffin' +p108895 +sg25270 +S'Alfred Stieglitz' +p108896 +sa(dp108897 +g25273 +S'platinum print' +p108898 +sg25267 +g27 +sg25275 +S'probably 1915' +p108899 +sg25268 +S'Charles H. Caffin' +p108900 +sg25270 +S'Alfred Stieglitz' +p108901 +sa(dp108902 +g25273 +S'platinum print' +p108903 +sg25267 +g27 +sg25275 +S'1912' +p108904 +sg25268 +S'Arthur G. Dove' +p108905 +sg25270 +S'Alfred Stieglitz' +p108906 +sa(dp108907 +g25268 +S'The Adoration of the Magi' +p108908 +sg25270 +S'Albrecht Altdorfer' +p108909 +sg25273 +S'woodcut' +p108910 +sg25275 +S'c. 1513' +p108911 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a71c.jpg' +p108912 +sg25267 +g27 +sa(dp108913 +g25273 +S'platinum print' +p108914 +sg25267 +g27 +sg25275 +S'1911' +p108915 +sg25268 +S'Marsden Hartley' +p108916 +sg25270 +S'Alfred Stieglitz' +p108917 +sa(dp108918 +g25273 +S'platinum print' +p108919 +sg25267 +g27 +sg25275 +S'1911' +p108920 +sg25268 +S'Marsden Hartley' +p108921 +sg25270 +S'Alfred Stieglitz' +p108922 +sa(dp108923 +g25273 +S'platinum print' +p108924 +sg25267 +g27 +sg25275 +S'1911' +p108925 +sg25268 +S'J. B. Kerfoot' +p108926 +sg25270 +S'Alfred Stieglitz' +p108927 +sa(dp108928 +g25268 +S'John Marin' +p108929 +sg25270 +S'Artist Information (' +p108930 +sg25273 +S'(artist)' +p108931 +sg25275 +S'\n' +p108932 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006264.jpg' +p108933 +sg25267 +g27 +sa(dp108934 +g25273 +S'platinum print' +p108935 +sg25267 +g27 +sg25275 +S'1911' +p108936 +sg25268 +S'John Marin' +p108937 +sg25270 +S'Alfred Stieglitz' +p108938 +sa(dp108939 +g25273 +S'gelatin silver print, 1920s/1930s' +p108940 +sg25267 +g27 +sg25275 +S'1911' +p108941 +sg25268 +S'Excavating, New York' +p108942 +sg25270 +S'Alfred Stieglitz' +p108943 +sa(dp108944 +g25273 +S'gelatin silver print, 1924/1937' +p108945 +sg25267 +g27 +sg25275 +S'1911' +p108946 +sg25268 +S'Excavating, New York' +p108947 +sg25270 +S'Alfred Stieglitz' +p108948 +sa(dp108949 +g25273 +S'photogravure on cream moderately thick smooth wove Japan paper, in or before 1913' +p108950 +sg25267 +g27 +sg25275 +S'1911' +p108951 +sg25268 +S'Two Towers--New York' +p108952 +sg25270 +S'Alfred Stieglitz' +p108953 +sa(dp108954 +g25273 +S'gelatin silver print mounted on paperboard, 1924/1937' +p108955 +sg25267 +g27 +sg25275 +S'1911' +p108956 +sg25268 +S'Horses, Winter' +p108957 +sg25270 +S'Alfred Stieglitz' +p108958 +sa(dp108959 +g25273 +S'gelatin silver print, 1924/1937' +p108960 +sg25267 +g27 +sg25275 +S'1911' +p108961 +sg25268 +S'Construction, New York' +p108962 +sg25270 +S'Alfred Stieglitz' +p108963 +sa(dp108964 +g25268 +S'The Circumcision' +p108965 +sg25270 +S'Albrecht Altdorfer' +p108966 +sg25273 +S'woodcut' +p108967 +sg25275 +S'c. 1513' +p108968 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a71b.jpg' +p108969 +sg25267 +g27 +sa(dp108970 +g25273 +S'gelatin silver print, 1924/1937' +p108971 +sg25267 +g27 +sg25275 +S'1911' +p108972 +sg25268 +S'A Snapshot, Paris' +p108973 +sg25270 +S'Alfred Stieglitz' +p108974 +sa(dp108975 +g25273 +S'gelatin silver print, 1924/1937' +p108976 +sg25267 +g27 +sg25275 +S'1911' +p108977 +sg25268 +S'A Snapshot, Paris' +p108978 +sg25270 +S'Alfred Stieglitz' +p108979 +sa(dp108980 +g25273 +S'gelatin silver print, 1924/1937' +p108981 +sg25267 +g27 +sg25275 +S'probably 1911' +p108982 +sg25268 +S'Paris' +p108983 +sg25270 +S'Alfred Stieglitz' +p108984 +sa(dp108985 +g25273 +S'platinum print' +p108986 +sg25267 +g27 +sg25275 +S'1913' +p108987 +sg25268 +S'Oscar Bluemner' +p108988 +sg25270 +S'Alfred Stieglitz' +p108989 +sa(dp108990 +g25273 +S'platinum print' +p108991 +sg25267 +g27 +sg25275 +S'1912' +p108992 +sg25268 +S'Arthur B. Carles' +p108993 +sg25270 +S'Alfred Stieglitz' +p108994 +sa(dp108995 +g25273 +S'platinum print' +p108996 +sg25267 +g27 +sg25275 +S'1912' +p108997 +sg25268 +S'Arthur B. Carles' +p108998 +sg25270 +S'Alfred Stieglitz' +p108999 +sa(dp109000 +g25273 +S'platinum print' +p109001 +sg25267 +g27 +sg25275 +S'1914' +p109002 +sg25268 +S'Andrew Dasburg' +p109003 +sg25270 +S'Alfred Stieglitz' +p109004 +sa(dp109005 +g25273 +S'platinum print mounted on gray paper' +p109006 +sg25267 +g27 +sg25275 +S'1913' +p109007 +sg25268 +S'Marius de Zayas' +p109008 +sg25270 +S'Alfred Stieglitz' +p109009 +sa(dp109010 +g25273 +S'platinum print' +p109011 +sg25267 +g27 +sg25275 +S'1912' +p109012 +sg25268 +S'Arthur G. Dove' +p109013 +sg25270 +S'Alfred Stieglitz' +p109014 +sa(dp109015 +g25273 +S'platinum print mounted on paperboard' +p109016 +sg25267 +g27 +sg25275 +S'1911/1912' +p109017 +sg25268 +S'Joseph T. Keiley' +p109018 +sg25270 +S'Alfred Stieglitz' +p109019 +sa(dp109020 +g25268 +S'The Presentation of Christ in the Temple' +p109021 +sg25270 +S'Albrecht Altdorfer' +p109022 +sg25273 +S'woodcut' +p109023 +sg25275 +S'c. 1513' +p109024 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a719.jpg' +p109025 +sg25267 +g27 +sa(dp109026 +g25273 +S'platinum print' +p109027 +sg25267 +g27 +sg25275 +S'1912/1913' +p109028 +sg25268 +S'Lake George, Oaklawn' +p109029 +sg25270 +S'Alfred Stieglitz' +p109030 +sa(dp109031 +g25273 +S'platinum print' +p109032 +sg25267 +g27 +sg25275 +S'1913' +p109033 +sg25268 +S'Oscar Bluemner' +p109034 +sg25270 +S'Alfred Stieglitz' +p109035 +sa(dp109036 +g25273 +S'platinum print' +p109037 +sg25267 +g27 +sg25275 +S'1917' +p109038 +sg25268 +S'Becky Edelson' +p109039 +sg25270 +S'Alfred Stieglitz' +p109040 +sa(dp109041 +g25273 +S'platinum print' +p109042 +sg25267 +g27 +sg25275 +S'1914' +p109043 +sg25268 +S'Konrad Cramer' +p109044 +sg25270 +S'Alfred Stieglitz' +p109045 +sa(dp109046 +g25273 +S'platinum print' +p109047 +sg25267 +g27 +sg25275 +S'1914' +p109048 +sg25268 +S'Paul Haviland' +p109049 +sg25270 +S'Alfred Stieglitz' +p109050 +sa(dp109051 +g25273 +S'platinum print' +p109052 +sg25267 +g27 +sg25275 +S'1913' +p109053 +sg25268 +S'The Garden of Love (Improvisation Number 27) by Wassily Kandinsky' +p109054 +sg25270 +S'Alfred Stieglitz' +p109055 +sa(dp109056 +g25273 +S'gelatin silver print' +p109057 +sg25267 +g27 +sg25275 +S'1923' +p109058 +sg25268 +S'Arthur G. Dove' +p109059 +sg25270 +S'Alfred Stieglitz' +p109060 +sa(dp109061 +g25273 +S'platinum print' +p109062 +sg25267 +g27 +sg25275 +S'1915' +p109063 +sg25268 +S'Marius de Zayas' +p109064 +sg25270 +S'Alfred Stieglitz' +p109065 +sa(dp109066 +g25273 +S'palladium print' +p109067 +sg25267 +g27 +sg25275 +S'1915/1917' +p109068 +sg25268 +S'Kitty' +p109069 +sg25270 +S'Alfred Stieglitz' +p109070 +sa(dp109071 +g25273 +S'platinum print' +p109072 +sg25267 +g27 +sg25275 +S'1915/1917' +p109073 +sg25268 +S'Ma' +p109074 +sg25270 +S'Alfred Stieglitz' +p109075 +sa(dp109076 +g25268 +S'Madonna and Child' +p109077 +sg25270 +S'Pier Francesco Fiorentino' +p109078 +sg25273 +S'tempera on panel transferred to canvas' +p109079 +sg25275 +S'c. 1475' +p109080 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a00062d8.jpg' +p109081 +sg25267 +g27 +sa(dp109082 +g25268 +S'The Flight into Egypt' +p109083 +sg25270 +S'Albrecht Altdorfer' +p109084 +sg25273 +S'woodcut' +p109085 +sg25275 +S'c. 1513' +p109086 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a714.jpg' +p109087 +sg25267 +g27 +sa(dp109088 +g25273 +S'platinum print' +p109089 +sg25267 +g27 +sg25275 +S'1914' +p109090 +sg25268 +S'Marie Rapp' +p109091 +sg25270 +S'Alfred Stieglitz' +p109092 +sa(dp109093 +g25273 +S'platinum with palladium print' +p109094 +sg25267 +g27 +sg25275 +S'1915' +p109095 +sg25268 +S'Katharine N. Rhoades' +p109096 +sg25270 +S'Alfred Stieglitz' +p109097 +sa(dp109098 +g25273 +S'platinum print' +p109099 +sg25267 +g27 +sg25275 +S'1915' +p109100 +sg25268 +S'Katharine N. Rhoades' +p109101 +sg25270 +S'Alfred Stieglitz' +p109102 +sa(dp109103 +g25273 +S'platinum print' +p109104 +sg25267 +g27 +sg25275 +S'1914' +p109105 +sg25268 +S'Brancusi Exhibition at 291' +p109106 +sg25270 +S'Alfred Stieglitz' +p109107 +sa(dp109108 +g25268 +S'Brancusi Exhibition at 291' +p109109 +sg25270 +S'Alfred Stieglitz' +p109110 +sg25273 +S'gelatin silver print, 1924/1937' +p109111 +sg25275 +S'1914' +p109112 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006265.jpg' +p109113 +sg25267 +g27 +sa(dp109114 +g25273 +S'platinum print' +p109115 +sg25267 +g27 +sg25275 +S'1915' +p109116 +sg25268 +S'Charles Demuth' +p109117 +sg25270 +S'Alfred Stieglitz' +p109118 +sa(dp109119 +g25268 +S'Charles Demuth' +p109120 +sg25270 +S'Alfred Stieglitz' +p109121 +sg25273 +S'gelatin silver print, 1924/1937' +p109122 +sg25275 +S'1915' +p109123 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006266.jpg' +p109124 +sg25267 +g27 +sa(dp109125 +g25273 +S'platinum print' +p109126 +sg25267 +g27 +sg25275 +S'1916' +p109127 +sg25268 +S'Marsden Hartley' +p109128 +sg25270 +S'Alfred Stieglitz' +p109129 +sa(dp109130 +g25273 +S'gelatin silver print, 1924/1937' +p109131 +sg25267 +g27 +sg25275 +S'1916' +p109132 +sg25268 +S'Marsden Hartley' +p109133 +sg25270 +S'Alfred Stieglitz' +p109134 +sa(dp109135 +g25273 +S'platinum print' +p109136 +sg25267 +g27 +sg25275 +S'1915' +p109137 +sg25268 +S'Kitty at 291' +p109138 +sg25270 +S'Alfred Stieglitz' +p109139 +sa(dp109140 +g25268 +S'Christ Disputing with the Doctors' +p109141 +sg25270 +S'Albrecht Altdorfer' +p109142 +sg25273 +S'woodcut' +p109143 +sg25275 +S'c. 1513' +p109144 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a713.jpg' +p109145 +sg25267 +g27 +sa(dp109146 +g25273 +S'platinum print' +p109147 +sg25267 +g27 +sg25275 +S'1915' +p109148 +sg25268 +S'Ma and Georgia Engelhard' +p109149 +sg25270 +S'Alfred Stieglitz' +p109150 +sa(dp109151 +g25273 +S'platinum print' +p109152 +sg25267 +g27 +sg25275 +S'1915' +p109153 +sg25268 +S'Alfred Maurer' +p109154 +sg25270 +S'Alfred Stieglitz' +p109155 +sa(dp109156 +g25273 +S'gelatin silver print, 1924/1937' +p109157 +sg25267 +g27 +sg25275 +S'1915' +p109158 +sg25268 +S'Alfred Maurer' +p109159 +sg25270 +S'Alfred Stieglitz' +p109160 +sa(dp109161 +g25273 +S'gelatin silver print, 1924/1937' +p109162 +sg25267 +g27 +sg25275 +S'1915' +p109163 +sg25268 +S'Alfred Maurer' +p109164 +sg25270 +S'Alfred Stieglitz' +p109165 +sa(dp109166 +g25268 +S'Francis Picabia' +p109167 +sg25270 +S'Alfred Stieglitz' +p109168 +sg25273 +S'platinum print' +p109169 +sg25275 +S'1915' +p109170 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006267.jpg' +p109171 +sg25267 +g27 +sa(dp109172 +g25273 +S'platinum print' +p109173 +sg25267 +g27 +sg25275 +S'1915' +p109174 +sg25268 +S'Francis Picabia' +p109175 +sg25270 +S'Alfred Stieglitz' +p109176 +sa(dp109177 +g25273 +S'platinum print' +p109178 +sg25267 +g27 +sg25275 +S'1913' +p109179 +sg25268 +S'Marie Rapp' +p109180 +sg25270 +S'Alfred Stieglitz' +p109181 +sa(dp109182 +g25273 +S'platinum print' +p109183 +sg25267 +g27 +sg25275 +S'1916' +p109184 +sg25268 +S'William Zorach' +p109185 +sg25270 +S'Alfred Stieglitz' +p109186 +sa(dp109187 +g25273 +S'platinum print' +p109188 +sg25267 +g27 +sg25275 +S'1915' +p109189 +sg25268 +S'From the Back-Window--291' +p109190 +sg25270 +S'Alfred Stieglitz' +p109191 +sa(dp109192 +g25273 +S'platinum print' +p109193 +sg25267 +g27 +sg25275 +S'1915' +p109194 +sg25268 +S'From the Back-Window--291' +p109195 +sg25270 +S'Alfred Stieglitz' +p109196 +sa(dp109197 +g25268 +S'The Transfiguration' +p109198 +sg25270 +S'Albrecht Altdorfer' +p109199 +sg25273 +S'woodcut' +p109200 +sg25275 +S'c. 1513' +p109201 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a718.jpg' +p109202 +sg25267 +g27 +sa(dp109203 +g25273 +S'platinum print' +p109204 +sg25267 +g27 +sg25275 +S'1915' +p109205 +sg25268 +S'From the Back-Window--291' +p109206 +sg25270 +S'Alfred Stieglitz' +p109207 +sa(dp109208 +g25273 +S'platinum print' +p109209 +sg25267 +g27 +sg25275 +S'1915' +p109210 +sg25268 +S'From the Back-Window--291' +p109211 +sg25270 +S'Alfred Stieglitz' +p109212 +sa(dp109213 +g25273 +S'platinum print' +p109214 +sg25267 +g27 +sg25275 +S'1915' +p109215 +sg25268 +S'From the Back-Window--291--Snow-Covered Tree, Back-Yard' +p109216 +sg25270 +S'Alfred Stieglitz' +p109217 +sa(dp109218 +g25268 +S'From the Back-Window--291' +p109219 +sg25270 +S'Alfred Stieglitz' +p109220 +sg25273 +S'platinum print' +p109221 +sg25275 +S'1915' +p109222 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006268.jpg' +p109223 +sg25267 +g27 +sa(dp109224 +g25273 +S'platinum print' +p109225 +sg25267 +g27 +sg25275 +S'1913' +p109226 +sg25268 +S'A Bit of New York' +p109227 +sg25270 +S'Alfred Stieglitz' +p109228 +sa(dp109229 +g25273 +S'platinum print' +p109230 +sg25267 +g27 +sg25275 +S'1915' +p109231 +sg25268 +S'291--Picasso-Braque Exhibition' +p109232 +sg25270 +S'Alfred Stieglitz' +p109233 +sa(dp109234 +g25273 +S'platinum print' +p109235 +sg25267 +g27 +sg25275 +S'1916' +p109236 +sg25268 +S'Kitty at Lake George' +p109237 +sg25270 +S'Alfred Stieglitz' +p109238 +sa(dp109239 +g25273 +S'platinum print' +p109240 +sg25267 +g27 +sg25275 +S'1916' +p109241 +sg25268 +S'George F. Of' +p109242 +sg25270 +S'Alfred Stieglitz' +p109243 +sa(dp109244 +g25273 +S'platinum print' +p109245 +sg25267 +g27 +sg25275 +S'1915' +p109246 +sg25268 +S'Marie Rapp' +p109247 +sg25270 +S'Alfred Stieglitz' +p109248 +sa(dp109249 +g25273 +S'platinum print' +p109250 +sg25267 +g27 +sg25275 +S'1915' +p109251 +sg25268 +S'Marie J. Rapp' +p109252 +sg25270 +S'Alfred Stieglitz' +p109253 +sa(dp109254 +g25268 +S'Christ Taking Leave of Mary' +p109255 +sg25270 +S'Albrecht Altdorfer' +p109256 +sg25273 +S'woodcut' +p109257 +sg25275 +S'c. 1513' +p109258 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a711.jpg' +p109259 +sg25267 +g27 +sa(dp109260 +g25273 +S'platinum with palladium print' +p109261 +sg25267 +g27 +sg25275 +S'1915' +p109262 +sg25268 +S'Katharine N. Rhoades' +p109263 +sg25270 +S'Alfred Stieglitz' +p109264 +sa(dp109265 +g25273 +S'platinum with palladium print' +p109266 +sg25267 +g27 +sg25275 +S'1915' +p109267 +sg25268 +S'Katharine N. Rhoades' +p109268 +sg25270 +S'Alfred Stieglitz' +p109269 +sa(dp109270 +g25273 +S'gelatin silver print' +p109271 +sg25267 +g27 +sg25275 +S'1916' +p109272 +sg25268 +S'Shadow in Lake' +p109273 +sg25270 +S'Alfred Stieglitz' +p109274 +sa(dp109275 +g25268 +S'Shadows in Lake' +p109276 +sg25270 +S'Alfred Stieglitz' +p109277 +sg25273 +S'gelatin silver print mounted on paperboard' +p109278 +sg25275 +S'1916' +p109279 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006269.jpg' +p109280 +sg25267 +g27 +sa(dp109281 +g25273 +S'gelatin silver print' +p109282 +sg25267 +g27 +sg25275 +S'1916' +p109283 +sg25268 +S'Shadows in Lake' +p109284 +sg25270 +S'Alfred Stieglitz' +p109285 +sa(dp109286 +g25273 +S'gelatin silver print' +p109287 +sg25267 +g27 +sg25275 +S'1919' +p109288 +sg25268 +S'Professor Julius Stieglitz' +p109289 +sg25270 +S'Alfred Stieglitz' +p109290 +sa(dp109291 +g25273 +S'gelatin silver print' +p109292 +sg25267 +g27 +sg25275 +S'1919' +p109293 +sg25268 +S'Dr. Leopold Stieglitz' +p109294 +sg25270 +S'Alfred Stieglitz' +p109295 +sa(dp109296 +g25273 +S'platinum print' +p109297 +sg25267 +g27 +sg25275 +S'1916' +p109298 +sg25268 +S'Abraham Walkowitz' +p109299 +sg25270 +S'Alfred Stieglitz' +p109300 +sa(dp109301 +g25273 +S'platinum print' +p109302 +sg25267 +g27 +sg25275 +S'1916' +p109303 +sg25268 +S'Abraham Walkowitz' +p109304 +sg25270 +S'Alfred Stieglitz' +p109305 +sa(dp109306 +g25273 +S'gelatin silver print mounted on paperboard' +p109307 +sg25267 +g27 +sg25275 +S'1916' +p109308 +sg25268 +S'Ellen Koeniger, Lake George' +p109309 +sg25270 +S'Alfred Stieglitz' +p109310 +sa(dp109311 +g25268 +S'The Entry into Jerusalem' +p109312 +sg25270 +S'Albrecht Altdorfer' +p109313 +sg25273 +S'woodcut' +p109314 +sg25275 +S'c. 1513' +p109315 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a712.jpg' +p109316 +sg25267 +g27 +sa(dp109317 +g25273 +S'gelatin silver print mounted on paperboard' +p109318 +sg25267 +g27 +sg25275 +S'1916' +p109319 +sg25268 +S'Ellen Koeniger, Lake George' +p109320 +sg25270 +S'Alfred Stieglitz' +p109321 +sa(dp109322 +g25273 +S'gelatin silver print mounted on paperboard' +p109323 +sg25267 +g27 +sg25275 +S'1916' +p109324 +sg25268 +S'Ellen Koeniger, Lake George' +p109325 +sg25270 +S'Alfred Stieglitz' +p109326 +sa(dp109327 +g25273 +S'gelatin silver print' +p109328 +sg25267 +g27 +sg25275 +S'1916' +p109329 +sg25268 +S'Ellen Koeniger, Lake George' +p109330 +sg25270 +S'Alfred Stieglitz' +p109331 +sa(dp109332 +g25273 +S'gelatin silver print mounted on paperboard' +p109333 +sg25267 +g27 +sg25275 +S'1916' +p109334 +sg25268 +S'Ellen Koeniger, Lake George' +p109335 +sg25270 +S'Alfred Stieglitz' +p109336 +sa(dp109337 +g25273 +S'gelatin silver print' +p109338 +sg25267 +g27 +sg25275 +S'1916' +p109339 +sg25268 +S'Ellen Koeniger, Lake George' +p109340 +sg25270 +S'Alfred Stieglitz' +p109341 +sa(dp109342 +g25273 +S'gelatin silver print' +p109343 +sg25267 +g27 +sg25275 +S'1916' +p109344 +sg25268 +S'Ellen Koeniger, Lake George' +p109345 +sg25270 +S'Alfred Stieglitz' +p109346 +sa(dp109347 +g25273 +S'gelatin silver print' +p109348 +sg25267 +g27 +sg25275 +S'1916' +p109349 +sg25268 +S'Ellen Koeniger, Lake George' +p109350 +sg25270 +S'Alfred Stieglitz' +p109351 +sa(dp109352 +g25273 +S'gelatin silver print' +p109353 +sg25267 +g27 +sg25275 +S'1916' +p109354 +sg25268 +S'Ellen Koeniger, Lake George' +p109355 +sg25270 +S'Alfred Stieglitz' +p109356 +sa(dp109357 +g25273 +S'gelatin silver print' +p109358 +sg25267 +g27 +sg25275 +S'1916' +p109359 +sg25268 +S'Ellen Koeniger, Lake George' +p109360 +sg25270 +S'Alfred Stieglitz' +p109361 +sa(dp109362 +g25273 +S'gelatin silver print' +p109363 +sg25267 +g27 +sg25275 +S'1916' +p109364 +sg25268 +S'Ellen Koeniger, Lake George' +p109365 +sg25270 +S'Alfred Stieglitz' +p109366 +sa(dp109367 +g25268 +S'The Last Supper' +p109368 +sg25270 +S'Albrecht Altdorfer' +p109369 +sg25273 +S'woodcut' +p109370 +sg25275 +S'c. 1513' +p109371 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a742.jpg' +p109372 +sg25267 +g27 +sa(dp109373 +g25273 +S'platinum print' +p109374 +sg25267 +g27 +sg25275 +S'1915/1917' +p109375 +sg25268 +S'Unknown Woman' +p109376 +sg25270 +S'Alfred Stieglitz' +p109377 +sa(dp109378 +g25273 +S'platinum print' +p109379 +sg25267 +g27 +sg25275 +S'1916' +p109380 +sg25268 +S'From the Back-Window--291--Wall Closing In' +p109381 +sg25270 +S'Alfred Stieglitz' +p109382 +sa(dp109383 +g25273 +S'platinum print' +p109384 +sg25267 +g27 +sg25275 +S'1915' +p109385 +sg25268 +S'From the Back-Window--291' +p109386 +sg25270 +S'Alfred Stieglitz' +p109387 +sa(dp109388 +g25273 +S'platinum print' +p109389 +sg25267 +g27 +sg25275 +S'1916' +p109390 +sg25268 +S'From the Back-Window--291--Wall Closing In' +p109391 +sg25270 +S'Alfred Stieglitz' +p109392 +sa(dp109393 +g25273 +S'platinum print' +p109394 +sg25267 +g27 +sg25275 +S'1915' +p109395 +sg25268 +S'From the Back-Window--291' +p109396 +sg25270 +S'Alfred Stieglitz' +p109397 +sa(dp109398 +g25273 +S'platinum print' +p109399 +sg25267 +g27 +sg25275 +S'1916' +p109400 +sg25268 +S'From the Back-Window--291--Building in Construction' +p109401 +sg25270 +S'Alfred Stieglitz' +p109402 +sa(dp109403 +g25273 +S'platinum with palladium print' +p109404 +sg25267 +g27 +sg25275 +S'1915/1916' +p109405 +sg25268 +S'From the Back-Window--291' +p109406 +sg25270 +S'Alfred Stieglitz' +p109407 +sa(dp109408 +g25273 +S'platinum with palladium print' +p109409 +sg25267 +g27 +sg25275 +S'1916' +p109410 +sg25268 +S"Georgia O'Keeffe Drawing" +p109411 +sg25270 +S'Alfred Stieglitz' +p109412 +sa(dp109413 +g25273 +S'palladium print' +p109414 +sg25267 +g27 +sg25275 +S'1917' +p109415 +sg25268 +S'Hodge Kirnon' +p109416 +sg25270 +S'Alfred Stieglitz' +p109417 +sa(dp109418 +g25273 +S'Satista print' +p109419 +sg25267 +g27 +sg25275 +S'1917' +p109420 +sg25268 +S'Hodge Kirnon' +p109421 +sg25270 +S'Alfred Stieglitz' +p109422 +sa(dp109423 +g25268 +S'Christ on the Mount of Olives' +p109424 +sg25270 +S'Albrecht Altdorfer' +p109425 +sg25273 +S'woodcut' +p109426 +sg25275 +S'c. 1513' +p109427 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a741.jpg' +p109428 +sg25267 +g27 +sa(dp109429 +g25273 +S'gelatin silver print mounted on paperboard, 1924/1937' +p109430 +sg25267 +g27 +sg25275 +S'1915' +p109431 +sg25268 +S'John Marin' +p109432 +sg25270 +S'Alfred Stieglitz' +p109433 +sa(dp109434 +g25273 +S'platinum print' +p109435 +sg25267 +g27 +sg25275 +S'1917' +p109436 +sg25268 +S'Leo Stein' +p109437 +sg25270 +S'Alfred Stieglitz' +p109438 +sa(dp109439 +g25273 +S'palladium print' +p109440 +sg25267 +g27 +sg25275 +S'1919' +p109441 +sg25268 +S'Paul Strand' +p109442 +sg25270 +S'Alfred Stieglitz' +p109443 +sa(dp109444 +g25273 +S'gelatin silver print' +p109445 +sg25267 +g27 +sg25275 +S'1917' +p109446 +sg25268 +S'Emil C. Zoler' +p109447 +sg25270 +S'Alfred Stieglitz' +p109448 +sa(dp109449 +g25273 +S'palladium print' +p109450 +sg25267 +g27 +sg25275 +S'1917' +p109451 +sg25268 +S'Emil C. Zoler' +p109452 +sg25270 +S'Alfred Stieglitz' +p109453 +sa(dp109454 +g25273 +S'gelatin silver print' +p109455 +sg25267 +g27 +sg25275 +S'probably 1919' +p109456 +sg25268 +S'Military Parade, New York' +p109457 +sg25270 +S'Alfred Stieglitz' +p109458 +sa(dp109459 +g25273 +S'platinum print' +p109460 +sg25267 +g27 +sg25275 +S'1916/1917' +p109461 +sg25268 +S'Lake George' +p109462 +sg25270 +S'Alfred Stieglitz' +p109463 +sa(dp109464 +g25273 +S'palladium print' +p109465 +sg25267 +g27 +sg25275 +S'1917' +p109466 +sg25268 +S'The Last Days of 291' +p109467 +sg25270 +S'Alfred Stieglitz' +p109468 +sa(dp109469 +g25273 +S'platinum print' +p109470 +sg25267 +g27 +sg25275 +S'probably 1911' +p109471 +sg25268 +S'J. Nilsen Laurvik' +p109472 +sg25270 +S'Alfred Stieglitz' +p109473 +sa(dp109474 +g25273 +S'platinum print' +p109475 +sg25267 +g27 +sg25275 +S'1913' +p109476 +sg25268 +S'John Marin' +p109477 +sg25270 +S'Alfred Stieglitz' +p109478 +sa(dp109479 +g25268 +S'Christ Taken Captive' +p109480 +sg25270 +S'Albrecht Altdorfer' +p109481 +sg25273 +S'woodcut' +p109482 +sg25275 +S'c. 1513' +p109483 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a73f.jpg' +p109484 +sg25267 +g27 +sa(dp109485 +g25273 +S'platinum print' +p109486 +sg25267 +g27 +sg25275 +S'1911' +p109487 +sg25268 +S'John Marin' +p109488 +sg25270 +S'Alfred Stieglitz' +p109489 +sa(dp109490 +g25273 +S'platinum print' +p109491 +sg25267 +g27 +sg25275 +S'1912/1913' +p109492 +sg25268 +S'Emil C. Zoler' +p109493 +sg25270 +S'Alfred Stieglitz' +p109494 +sa(dp109495 +g25273 +S'platinum print' +p109496 +sg25267 +g27 +sg25275 +S'1912/1913' +p109497 +sg25268 +S'Emil C. Zoler' +p109498 +sg25270 +S'Alfred Stieglitz' +p109499 +sa(dp109500 +g25273 +S'palladium print' +p109501 +sg25267 +g27 +sg25275 +S'1918' +p109502 +sg25268 +S'Kitty Stieglitz' +p109503 +sg25270 +S'Alfred Stieglitz' +p109504 +sa(dp109505 +g25273 +S'palladium print' +p109506 +sg25267 +g27 +sg25275 +S'1918' +p109507 +sg25268 +S'Kitty Stieglitz and Edward Stieglitz' +p109508 +sg25270 +S'Alfred Stieglitz' +p109509 +sa(dp109510 +g25273 +S'palladium print' +p109511 +sg25267 +g27 +sg25275 +S'1918' +p109512 +sg25268 +S'Kitty Stieglitz and Edward Stieglitz' +p109513 +sg25270 +S'Alfred Stieglitz' +p109514 +sa(dp109515 +g25273 +S'palladium print' +p109516 +sg25267 +g27 +sg25275 +S'1919/1922' +p109517 +sg25268 +S'Dorothy Schubart' +p109518 +sg25270 +S'Alfred Stieglitz' +p109519 +sa(dp109520 +g25273 +S'gelatin silver print' +p109521 +sg25267 +g27 +sg25275 +S'1919' +p109522 +sg25268 +S'Flora Stieglitz Straus' +p109523 +sg25270 +S'Alfred Stieglitz' +p109524 +sa(dp109525 +g25273 +S'palladium print' +p109526 +sg25267 +g27 +sg25275 +S'1920' +p109527 +sg25268 +S'Charles Duncan' +p109528 +sg25270 +S'Alfred Stieglitz' +p109529 +sa(dp109530 +g25273 +S'palladium print' +p109531 +sg25267 +g27 +sg25275 +S'1920' +p109532 +sg25268 +S'Charles Duncan' +p109533 +sg25270 +S'Alfred Stieglitz' +p109534 +sa(dp109535 +g25268 +S'Christ before Caiphas' +p109536 +sg25270 +S'Albrecht Altdorfer' +p109537 +sg25273 +S'woodcut' +p109538 +sg25275 +S'c. 1513' +p109539 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a748.jpg' +p109540 +sg25267 +g27 +sa(dp109541 +g25273 +S'palladium print' +p109542 +sg25267 +g27 +sg25275 +S'1918' +p109543 +sg25268 +S'Georgia Engelhard' +p109544 +sg25270 +S'Alfred Stieglitz' +p109545 +sa(dp109546 +g25273 +S'palladium print' +p109547 +sg25267 +g27 +sg25275 +S'1920' +p109548 +sg25268 +S'Eva Herrmann' +p109549 +sg25270 +S'Alfred Stieglitz' +p109550 +sa(dp109551 +g25273 +S'palladium print' +p109552 +sg25267 +g27 +sg25275 +S'1920' +p109553 +sg25268 +S'Eva Herrmann' +p109554 +sg25270 +S'Alfred Stieglitz' +p109555 +sa(dp109556 +g25273 +S'palladium print' +p109557 +sg25267 +g27 +sg25275 +S'1920' +p109558 +sg25268 +S'J. Nilsen Laurvik' +p109559 +sg25270 +S'Alfred Stieglitz' +p109560 +sa(dp109561 +g25273 +S'palladium print' +p109562 +sg25267 +g27 +sg25275 +S'1920' +p109563 +sg25268 +S'J. Nilsen Laurvik' +p109564 +sg25270 +S'Alfred Stieglitz' +p109565 +sa(dp109566 +g25273 +S'palladium print' +p109567 +sg25267 +g27 +sg25275 +S'1919' +p109568 +sg25268 +S'Dorothy True' +p109569 +sg25270 +S'Alfred Stieglitz' +p109570 +sa(dp109571 +g25273 +S'palladium print' +p109572 +sg25267 +g27 +sg25275 +S'1919' +p109573 +sg25268 +S'Dorothy True' +p109574 +sg25270 +S'Alfred Stieglitz' +p109575 +sa(dp109576 +g25273 +S'palladium print' +p109577 +sg25267 +g27 +sg25275 +S'1919' +p109578 +sg25268 +S'Dorothy True' +p109579 +sg25270 +S'Alfred Stieglitz' +p109580 +sa(dp109581 +g25273 +S'palladium print' +p109582 +sg25267 +g27 +sg25275 +S'1919' +p109583 +sg25268 +S'Dorothy True' +p109584 +sg25270 +S'Alfred Stieglitz' +p109585 +sa(dp109586 +g25268 +S'Dorothy True' +p109587 +sg25270 +S'Alfred Stieglitz' +p109588 +sg25273 +S'gelatin silver print' +p109589 +sg25275 +S'1919' +p109590 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005685.jpg' +p109591 +sg25267 +g27 +sa(dp109592 +g25268 +S'Christ before Herod' +p109593 +sg25270 +S'Albrecht Altdorfer' +p109594 +sg25273 +S'woodcut' +p109595 +sg25275 +S'c. 1513' +p109596 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a745.jpg' +p109597 +sg25267 +g27 +sa(dp109598 +g25273 +S'gelatin silver print' +p109599 +sg25267 +g27 +sg25275 +S'1919' +p109600 +sg25268 +S'The Dying Chestnut' +p109601 +sg25270 +S'Alfred Stieglitz' +p109602 +sa(dp109603 +g25273 +S'gelatin silver print' +p109604 +sg25267 +g27 +sg25275 +S'1920' +p109605 +sg25268 +S'The Old Maple' +p109606 +sg25270 +S'Alfred Stieglitz' +p109607 +sa(dp109608 +g25273 +S'gelatin silver print' +p109609 +sg25267 +g27 +sg25275 +S'1920' +p109610 +sg25268 +S'The Way Art Moves' +p109611 +sg25270 +S'Alfred Stieglitz' +p109612 +sa(dp109613 +g25268 +S'Donald Davidson' +p109614 +sg25270 +S'Alfred Stieglitz' +p109615 +sg25273 +S'palladium print' +p109616 +sg25275 +S'probably 1920' +p109617 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a000626a.jpg' +p109618 +sg25267 +g27 +sa(dp109619 +g25273 +S'gelatin silver print' +p109620 +sg25267 +g27 +sg25275 +S'1920' +p109621 +sg25268 +S'Eva Herrmann' +p109622 +sg25270 +S'Alfred Stieglitz' +p109623 +sa(dp109624 +g25273 +S'gelatin silver print mounted on paperboard' +p109625 +sg25267 +g27 +sg25275 +S'1920/1922' +p109626 +sg25268 +S"Georgia Engelhard, Georgia O'Keeffe, Selma Stieglitz Schubart, and Joseph Obermeyer" +p109627 +sg25270 +S'Alfred Stieglitz' +p109628 +sa(dp109629 +g25273 +S'gelatin silver print' +p109630 +sg25267 +g27 +sg25275 +S'1920/1922' +p109631 +sg25268 +S'Selma Stieglitz Schubart and Joseph Obermeyer' +p109632 +sg25270 +S'Alfred Stieglitz' +p109633 +sa(dp109634 +g25273 +S'gelatin silver print' +p109635 +sg25267 +g27 +sg25275 +S'1920' +p109636 +sg25268 +S'Paul Rosenfeld' +p109637 +sg25270 +S'Alfred Stieglitz' +p109638 +sa(dp109639 +g25273 +S'gelatin silver print mounted on paperboard' +p109640 +sg25267 +g27 +sg25275 +S'1919/1922' +p109641 +sg25268 +S'Hedwig Stieglitz and Katherine Herzig, Lake George' +p109642 +sg25270 +S'Alfred Stieglitz' +p109643 +sa(dp109644 +g25273 +S'gelatin silver print mounted on paperboard' +p109645 +sg25267 +g27 +sg25275 +S'1921/1922' +p109646 +sg25268 +S'Hedwig Stieglitz' +p109647 +sg25270 +S'Alfred Stieglitz' +p109648 +sa(dp109649 +g25268 +S'Madonna and Child' +p109650 +sg25270 +S'Pietro Perugino' +p109651 +sg25273 +S'oil on panel' +p109652 +sg25275 +S'c. 1500' +p109653 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000081c.jpg' +p109654 +sg25267 +g27 +sa(dp109655 +g25268 +S'The Flagellation of Christ' +p109656 +sg25270 +S'Albrecht Altdorfer' +p109657 +sg25273 +S'woodcut' +p109658 +sg25275 +S'c. 1513' +p109659 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a740.jpg' +p109660 +sg25267 +g27 +sa(dp109661 +g25273 +S'gelatin silver print' +p109662 +sg25267 +g27 +sg25275 +S'1920' +p109663 +sg25268 +S'Bly' +p109664 +sg25270 +S'Alfred Stieglitz' +p109665 +sa(dp109666 +g25273 +S'gelatin silver print' +p109667 +sg25267 +g27 +sg25275 +S'1920' +p109668 +sg25268 +S'Bly and Venus' +p109669 +sg25270 +S'Alfred Stieglitz' +p109670 +sa(dp109671 +g25273 +S'gelatin silver print mounted on paperboard' +p109672 +sg25267 +g27 +sg25275 +S'1920' +p109673 +sg25268 +S'Fred Varnum' +p109674 +sg25270 +S'Alfred Stieglitz' +p109675 +sa(dp109676 +g25273 +S'gelatin silver print' +p109677 +sg25267 +g27 +sg25275 +S'1920' +p109678 +sg25268 +S'Jennie (?)' +p109679 +sg25270 +S'Alfred Stieglitz' +p109680 +sa(dp109681 +g25273 +S'gelatin silver print mounted on paperboard' +p109682 +sg25267 +g27 +sg25275 +S'1920' +p109683 +sg25268 +S'Jennie (?)' +p109684 +sg25270 +S'Alfred Stieglitz' +p109685 +sa(dp109686 +g25273 +S'gelatin silver print mounted on paperboard' +p109687 +sg25267 +g27 +sg25275 +S'1920' +p109688 +sg25268 +S'Jennie (?)' +p109689 +sg25270 +S'Alfred Stieglitz' +p109690 +sa(dp109691 +g25273 +S'palladium print' +p109692 +sg25267 +g27 +sg25275 +S'1920' +p109693 +sg25268 +S'Plum Tree, Lake George' +p109694 +sg25270 +S'Alfred Stieglitz' +p109695 +sa(dp109696 +g25273 +S'gelatin silver print' +p109697 +sg25267 +g27 +sg25275 +S'1920' +p109698 +sg25268 +S'Rainbow' +p109699 +sg25270 +S'Alfred Stieglitz' +p109700 +sa(dp109701 +g25273 +S'gelatin silver print' +p109702 +sg25267 +g27 +sg25275 +S'1920' +p109703 +sg25268 +S'Rainbow' +p109704 +sg25270 +S'Alfred Stieglitz' +p109705 +sa(dp109706 +g25273 +S'gelatin silver print' +p109707 +sg25267 +g27 +sg25275 +S'1920' +p109708 +sg25268 +S'Rainbow' +p109709 +sg25270 +S'Alfred Stieglitz' +p109710 +sa(dp109711 +g25268 +S'Christ Crowned with Thorns' +p109712 +sg25270 +S'Albrecht Altdorfer' +p109713 +sg25273 +S'woodcut' +p109714 +sg25275 +S'c. 1513' +p109715 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a744.jpg' +p109716 +sg25267 +g27 +sa(dp109717 +g25268 +S'Georgia Engelhard' +p109718 +sg25270 +S'Alfred Stieglitz' +p109719 +sg25273 +S'gelatin silver print' +p109720 +sg25275 +S'1920' +p109721 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a000626b.jpg' +p109722 +sg25267 +g27 +sa(dp109723 +g25273 +S'gelatin silver print mounted on paperboard' +p109724 +sg25267 +g27 +sg25275 +S'1921' +p109725 +sg25268 +S'Georgia Engelhard and Margaret Treadwell' +p109726 +sg25270 +S'Alfred Stieglitz' +p109727 +sa(dp109728 +g25268 +S'Helen Freeman' +p109729 +sg25270 +S'Alfred Stieglitz' +p109730 +sg25273 +S'palladium print' +p109731 +sg25275 +S'1921/1922' +p109732 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a000626c.jpg' +p109733 +sg25267 +g27 +sa(dp109734 +g25273 +S'palladium print' +p109735 +sg25267 +g27 +sg25275 +S'1921/1922' +p109736 +sg25268 +S'Helen Freeman' +p109737 +sg25270 +S'Alfred Stieglitz' +p109738 +sa(dp109739 +g25273 +S'palladium print' +p109740 +sg25267 +g27 +sg25275 +S'1921' +p109741 +sg25268 +S'Legs (Elizabeth and Donald Davidson)' +p109742 +sg25270 +S'Alfred Stieglitz' +p109743 +sa(dp109744 +g25273 +S'gelatin silver print, 1924/1937' +p109745 +sg25267 +g27 +sg25275 +S'1916/1917' +p109746 +sg25268 +S'John Marin' +p109747 +sg25270 +S'Alfred Stieglitz' +p109748 +sa(dp109749 +g25273 +S'palladium print' +p109750 +sg25267 +g27 +sg25275 +S'1921' +p109751 +sg25268 +S'Herbert J. Seligmann' +p109752 +sg25270 +S'Alfred Stieglitz' +p109753 +sa(dp109754 +g25273 +S'palladium print' +p109755 +sg25267 +g27 +sg25275 +S'1921' +p109756 +sg25268 +S'Mrs. Stieffel' +p109757 +sg25270 +S'Alfred Stieglitz' +p109758 +sa(dp109759 +g25273 +S'palladium print' +p109760 +sg25267 +g27 +sg25275 +S'1921' +p109761 +sg25268 +S'Mrs. Stieffel' +p109762 +sg25270 +S'Alfred Stieglitz' +p109763 +sa(dp109764 +g25273 +S'palladium print' +p109765 +sg25267 +g27 +sg25275 +S'1921' +p109766 +sg25268 +S'Mrs. Stieffel' +p109767 +sg25270 +S'Alfred Stieglitz' +p109768 +sa(dp109769 +g25268 +S'Ecce Homo' +p109770 +sg25270 +S'Albrecht Altdorfer' +p109771 +sg25273 +S'woodcut' +p109772 +sg25275 +S'c. 1513' +p109773 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a74d.jpg' +p109774 +sg25267 +g27 +sa(dp109775 +g25273 +S'gelatin silver print mounted on paperboard' +p109776 +sg25267 +g27 +sg25275 +S'1921' +p109777 +sg25268 +S'Margaret Treadwell' +p109778 +sg25270 +S'Alfred Stieglitz' +p109779 +sa(dp109780 +g25273 +S'palladium print' +p109781 +sg25267 +g27 +sg25275 +S'1921' +p109782 +sg25268 +S'Margaret Treadwell' +p109783 +sg25270 +S'Alfred Stieglitz' +p109784 +sa(dp109785 +g25273 +S'palladium print' +p109786 +sg25267 +g27 +sg25275 +S'1921' +p109787 +sg25268 +S'Margaret Treadwell' +p109788 +sg25270 +S'Alfred Stieglitz' +p109789 +sa(dp109790 +g25273 +S'palladium print' +p109791 +sg25267 +g27 +sg25275 +S'1921' +p109792 +sg25268 +S'Margaret Treadwell' +p109793 +sg25270 +S'Alfred Stieglitz' +p109794 +sa(dp109795 +g25273 +S'palladium print' +p109796 +sg25267 +g27 +sg25275 +S'1921' +p109797 +sg25268 +S'Margaret Treadwell' +p109798 +sg25270 +S'Alfred Stieglitz' +p109799 +sa(dp109800 +g25273 +S'gelatin silver print' +p109801 +sg25267 +g27 +sg25275 +S'1923' +p109802 +sg25268 +S'Yvonne Boursault and Katherine Herzig' +p109803 +sg25270 +S'Alfred Stieglitz' +p109804 +sa(dp109805 +g25273 +S'gelatin silver print' +p109806 +sg25267 +g27 +sg25275 +S'1921/1922' +p109807 +sg25268 +S'Hedwig Stieglitz' +p109808 +sg25270 +S'Alfred Stieglitz' +p109809 +sa(dp109810 +g25268 +S'The Dancing Trees' +p109811 +sg25270 +S'Alfred Stieglitz' +p109812 +sg25273 +S'palladium print mounted on paperboard' +p109813 +sg25275 +S'1922' +p109814 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a000626d.jpg' +p109815 +sg25267 +g27 +sa(dp109816 +g25273 +S'gelatin silver print' +p109817 +sg25267 +g27 +sg25275 +S'1922' +p109818 +sg25268 +S'Barn--Lake George' +p109819 +sg25270 +S'Alfred Stieglitz' +p109820 +sa(dp109821 +g25273 +S'gelatin silver print' +p109822 +sg25267 +g27 +sg25275 +S'1922' +p109823 +sg25268 +S'Barn--Lake George' +p109824 +sg25270 +S'Alfred Stieglitz' +p109825 +sa(dp109826 +g25268 +S'Pilate Washing His Hands' +p109827 +sg25270 +S'Albrecht Altdorfer' +p109828 +sg25273 +S'woodcut' +p109829 +sg25275 +S'c. 1513' +p109830 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a749.jpg' +p109831 +sg25267 +g27 +sa(dp109832 +g25273 +S'gelatin silver print' +p109833 +sg25267 +g27 +sg25275 +S'1919' +p109834 +sg25268 +S'Hedwig Stieglitz' +p109835 +sg25270 +S'Alfred Stieglitz' +p109836 +sa(dp109837 +g25273 +S'gelatin silver print' +p109838 +sg25267 +g27 +sg25275 +S'1922' +p109839 +sg25268 +S'Lake George' +p109840 +sg25270 +S'Alfred Stieglitz' +p109841 +sa(dp109842 +g25273 +S'gelatin silver print' +p109843 +sg25267 +g27 +sg25275 +S'1921' +p109844 +sg25268 +S'Apple Tree' +p109845 +sg25270 +S'Alfred Stieglitz' +p109846 +sa(dp109847 +g25273 +S'gelatin silver print' +p109848 +sg25267 +g27 +sg25275 +S'1921' +p109849 +sg25268 +S'Apple Tree' +p109850 +sg25270 +S'Alfred Stieglitz' +p109851 +sa(dp109852 +g25273 +S'gelatin silver print' +p109853 +sg25267 +g27 +sg25275 +S'1922' +p109854 +sg25268 +S'Florence Cane' +p109855 +sg25270 +S'Alfred Stieglitz' +p109856 +sa(dp109857 +g25273 +S'palladium print' +p109858 +sg25267 +g27 +sg25275 +S'1922' +p109859 +sg25268 +S'Agnes E. Cooke' +p109860 +sg25270 +S'Alfred Stieglitz' +p109861 +sa(dp109862 +g25273 +S'palladium print' +p109863 +sg25267 +g27 +sg25275 +S'1922' +p109864 +sg25268 +S'Agnes E. Cooke' +p109865 +sg25270 +S'Alfred Stieglitz' +p109866 +sa(dp109867 +g25273 +S'palladium print' +p109868 +sg25267 +g27 +sg25275 +S'1923' +p109869 +sg25268 +S'Arthur G. Dove' +p109870 +sg25270 +S'Alfred Stieglitz' +p109871 +sa(dp109872 +g25273 +S'palladium print' +p109873 +sg25267 +g27 +sg25275 +S'1923' +p109874 +sg25268 +S'Arthur G. Dove' +p109875 +sg25270 +S'Alfred Stieglitz' +p109876 +sa(dp109877 +g25273 +S'gelatin silver print' +p109878 +sg25267 +g27 +sg25275 +S'1922' +p109879 +sg25268 +S'Katharine Dudley' +p109880 +sg25270 +S'Alfred Stieglitz' +p109881 +sa(dp109882 +g25268 +S'Christ Carrying the Cross' +p109883 +sg25270 +S'Albrecht Altdorfer' +p109884 +sg25273 +S'woodcut' +p109885 +sg25275 +S'c. 1513' +p109886 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a74f.jpg' +p109887 +sg25267 +g27 +sa(dp109888 +g25273 +S'gelatin silver print' +p109889 +sg25267 +g27 +sg25275 +S'1922' +p109890 +sg25268 +S'Katharine Dudley' +p109891 +sg25270 +S'Alfred Stieglitz' +p109892 +sa(dp109893 +g25273 +S'palladium print' +p109894 +sg25267 +g27 +sg25275 +S'1922' +p109895 +sg25268 +S'Katharine Dudley' +p109896 +sg25270 +S'Alfred Stieglitz' +p109897 +sa(dp109898 +g25273 +S'gelatin silver print' +p109899 +sg25267 +g27 +sg25275 +S'1922' +p109900 +sg25268 +S'Katharine Dudley' +p109901 +sg25270 +S'Alfred Stieglitz' +p109902 +sa(dp109903 +g25273 +S'palladium print' +p109904 +sg25267 +g27 +sg25275 +S'1922' +p109905 +sg25268 +S'Katharine Dudley' +p109906 +sg25270 +S'Alfred Stieglitz' +p109907 +sa(dp109908 +g25273 +S'gelatin silver print' +p109909 +sg25267 +g27 +sg25275 +S'1922' +p109910 +sg25268 +S'Katharine Dudley' +p109911 +sg25270 +S'Alfred Stieglitz' +p109912 +sa(dp109913 +g25273 +S'palladium print' +p109914 +sg25267 +g27 +sg25275 +S'1922' +p109915 +sg25268 +S'Katharine Dudley' +p109916 +sg25270 +S'Alfred Stieglitz' +p109917 +sa(dp109918 +g25273 +S'gelatin silver print' +p109919 +sg25267 +g27 +sg25275 +S'1922' +p109920 +sg25268 +S'Katharine Dudley' +p109921 +sg25270 +S'Alfred Stieglitz' +p109922 +sa(dp109923 +g25273 +S'palladium print' +p109924 +sg25267 +g27 +sg25275 +S'1920' +p109925 +sg25268 +S'Georgia Engelhard' +p109926 +sg25270 +S'Alfred Stieglitz' +p109927 +sa(dp109928 +g25273 +S'palladium print' +p109929 +sg25267 +g27 +sg25275 +S'1920' +p109930 +sg25268 +S'Georgia Engelhard' +p109931 +sg25270 +S'Alfred Stieglitz' +p109932 +sa(dp109933 +g25273 +S'gelatin silver print' +p109934 +sg25267 +g27 +sg25275 +S'1920/1922' +p109935 +sg25268 +S'Georgia Engelhard' +p109936 +sg25270 +S'Alfred Stieglitz' +p109937 +sa(dp109938 +g25268 +S'Christ Nailed to the Cross' +p109939 +sg25270 +S'Albrecht Altdorfer' +p109940 +sg25273 +S'woodcut' +p109941 +sg25275 +S'c. 1513' +p109942 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a74a.jpg' +p109943 +sg25267 +g27 +sa(dp109944 +g25273 +S'gelatin silver print' +p109945 +sg25267 +g27 +sg25275 +S'1920/1922' +p109946 +sg25268 +S'Georgia Engelhard' +p109947 +sg25270 +S'Alfred Stieglitz' +p109948 +sa(dp109949 +g25273 +S'palladium print' +p109950 +sg25267 +g27 +sg25275 +S'1920' +p109951 +sg25268 +S'Waldo Frank' +p109952 +sg25270 +S'Alfred Stieglitz' +p109953 +sa(dp109954 +g25273 +S'gelatin silver print' +p109955 +sg25267 +g27 +sg25275 +S'1920' +p109956 +sg25268 +S'Waldo Frank' +p109957 +sg25270 +S'Alfred Stieglitz' +p109958 +sa(dp109959 +g25273 +S'gelatin silver print' +p109960 +sg25267 +g27 +sg25275 +S'1920' +p109961 +sg25268 +S'Waldo Frank' +p109962 +sg25270 +S'Alfred Stieglitz' +p109963 +sa(dp109964 +g25273 +S'palladium print' +p109965 +sg25267 +g27 +sg25275 +S'1921/1922' +p109966 +sg25268 +S'Helen Freeman' +p109967 +sg25270 +S'Alfred Stieglitz' +p109968 +sa(dp109969 +g25273 +S'palladium print' +p109970 +sg25267 +g27 +sg25275 +S'1921/1922' +p109971 +sg25268 +S'Helen Freeman' +p109972 +sg25270 +S'Alfred Stieglitz' +p109973 +sa(dp109974 +g25273 +S'palladium print' +p109975 +sg25267 +g27 +sg25275 +S'1921/1922' +p109976 +sg25268 +S'Helen Freeman' +p109977 +sg25270 +S'Alfred Stieglitz' +p109978 +sa(dp109979 +g25273 +S'palladium print' +p109980 +sg25267 +g27 +sg25275 +S'1921/1922' +p109981 +sg25268 +S'Helen Freeman' +p109982 +sg25270 +S'Alfred Stieglitz' +p109983 +sa(dp109984 +g25273 +S'palladium print' +p109985 +sg25267 +g27 +sg25275 +S'1922' +p109986 +sg25268 +S'Frank S. Herrmann' +p109987 +sg25270 +S'Alfred Stieglitz' +p109988 +sa(dp109989 +g25273 +S'palladium print' +p109990 +sg25267 +g27 +sg25275 +S'1921/1922' +p109991 +sg25268 +S'John Marin' +p109992 +sg25270 +S'Alfred Stieglitz' +p109993 +sa(dp109994 +g25268 +S'Raising of the Cross' +p109995 +sg25270 +S'Albrecht Altdorfer' +p109996 +sg25273 +S'woodcut' +p109997 +sg25275 +S'c. 1513' +p109998 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a751.jpg' +p109999 +sg25267 +g27 +sa(dp110000 +g25273 +S'palladium print' +p110001 +sg25267 +g27 +sg25275 +S'1921' +p110002 +sg25268 +S'John Marin' +p110003 +sg25270 +S'Alfred Stieglitz' +p110004 +sa(dp110005 +g25273 +S'gelatin silver print' +p110006 +sg25267 +g27 +sg25275 +S'1921/1922' +p110007 +sg25268 +S'John Marin' +p110008 +sg25270 +S'Alfred Stieglitz' +p110009 +sa(dp110010 +g25273 +S'gelatin silver print' +p110011 +sg25267 +g27 +sg25275 +S'1921/1922' +p110012 +sg25268 +S'John Marin, the Water Colorist' +p110013 +sg25270 +S'Alfred Stieglitz' +p110014 +sa(dp110015 +g25273 +S'palladium print' +p110016 +sg25267 +g27 +sg25275 +S'1921/1922' +p110017 +sg25268 +S'John Marin, the Water Colorist' +p110018 +sg25270 +S'Alfred Stieglitz' +p110019 +sa(dp110020 +g25273 +S'palladium print' +p110021 +sg25267 +g27 +sg25275 +S'1921/1922' +p110022 +sg25268 +S'John Marin' +p110023 +sg25270 +S'Alfred Stieglitz' +p110024 +sa(dp110025 +g25273 +S'palladium print' +p110026 +sg25267 +g27 +sg25275 +S'1920' +p110027 +sg25268 +S'Margaret Naumburg' +p110028 +sg25270 +S'Alfred Stieglitz' +p110029 +sa(dp110030 +g25273 +S'palladium print' +p110031 +sg25267 +g27 +sg25275 +S'1920' +p110032 +sg25268 +S'Margaret Naumburg' +p110033 +sg25270 +S'Alfred Stieglitz' +p110034 +sa(dp110035 +g25273 +S'palladium print' +p110036 +sg25267 +g27 +sg25275 +S'1922' +p110037 +sg25268 +S"Claudia O'Keeffe" +p110038 +sg25270 +S'Alfred Stieglitz' +p110039 +sa(dp110040 +g25273 +S'palladium print' +p110041 +sg25267 +g27 +sg25275 +S'1922' +p110042 +sg25268 +S"Claudia O'Keeffe" +p110043 +sg25270 +S'Alfred Stieglitz' +p110044 +sa(dp110045 +g25273 +S'gelatin silver print' +p110046 +sg25267 +g27 +sg25275 +S'1922' +p110047 +sg25268 +S"Claudia O'Keeffe" +p110048 +sg25270 +S'Alfred Stieglitz' +p110049 +sa(dp110050 +g25268 +S'Christ on the Cross' +p110051 +sg25270 +S'Albrecht Altdorfer' +p110052 +sg25273 +S'woodcut' +p110053 +sg25275 +S'c. 1513' +p110054 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a74b.jpg' +p110055 +sg25267 +g27 +sa(dp110056 +g25273 +S'gelatin silver print' +p110057 +sg25267 +g27 +sg25275 +S'1922' +p110058 +sg25268 +S"Claudia O'Keeffe" +p110059 +sg25270 +S'Alfred Stieglitz' +p110060 +sa(dp110061 +g25273 +S'palladium print' +p110062 +sg25267 +g27 +sg25275 +S'1922' +p110063 +sg25268 +S"Claudia O'Keeffe" +p110064 +sg25270 +S'Alfred Stieglitz' +p110065 +sa(dp110066 +g25273 +S'palladium print' +p110067 +sg25267 +g27 +sg25275 +S'1922' +p110068 +sg25268 +S'Selma Schubart' +p110069 +sg25270 +S'Alfred Stieglitz' +p110070 +sa(dp110071 +g25273 +S'gelatin silver print' +p110072 +sg25267 +g27 +sg25275 +S'1922' +p110073 +sg25268 +S'Rebecca Salsbury Strand' +p110074 +sg25270 +S'Alfred Stieglitz' +p110075 +sa(dp110076 +g25273 +S'palladium print' +p110077 +sg25267 +g27 +sg25275 +S'1922' +p110078 +sg25268 +S'Rebecca Salsbury Strand' +p110079 +sg25270 +S'Alfred Stieglitz' +p110080 +sa(dp110081 +g25273 +S'palladium print' +p110082 +sg25267 +g27 +sg25275 +S'1922' +p110083 +sg25268 +S'Alma Wertheim' +p110084 +sg25270 +S'Alfred Stieglitz' +p110085 +sa(dp110086 +g25273 +S'palladium print' +p110087 +sg25267 +g27 +sg25275 +S'1922' +p110088 +sg25268 +S'Alma Wertheim' +p110089 +sg25270 +S'Alfred Stieglitz' +p110090 +sa(dp110091 +g25273 +S'palladium print' +p110092 +sg25267 +g27 +sg25275 +S'1922' +p110093 +sg25268 +S'Hands--Alma Wertheim' +p110094 +sg25270 +S'Alfred Stieglitz' +p110095 +sa(dp110096 +g25273 +S'gelatin silver print' +p110097 +sg25267 +g27 +sg25275 +S'1923' +p110098 +sg25268 +S'Katherine Herzig' +p110099 +sg25270 +S'Alfred Stieglitz' +p110100 +sa(dp110101 +g25273 +S'gelatin silver print' +p110102 +sg25267 +g27 +sg25275 +S'1922' +p110103 +sg25268 +S'Katherine Herzig' +p110104 +sg25270 +S'Alfred Stieglitz' +p110105 +sa(dp110106 +g25268 +S'The Descent from the Cross' +p110107 +sg25270 +S'Albrecht Altdorfer' +p110108 +sg25273 +S'woodcut' +p110109 +sg25275 +S'c. 1513' +p110110 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a74c.jpg' +p110111 +sg25267 +g27 +sa(dp110112 +g25273 +S'gelatin silver print' +p110113 +sg25267 +g27 +sg25275 +S'1922' +p110114 +sg25268 +S'After the Rain' +p110115 +sg25270 +S'Alfred Stieglitz' +p110116 +sa(dp110117 +g25273 +S'gelatin silver print' +p110118 +sg25267 +g27 +sg25275 +S'1922' +p110119 +sg25268 +S'Apple Tree' +p110120 +sg25270 +S'Alfred Stieglitz' +p110121 +sa(dp110122 +g25273 +S'gelatin silver print' +p110123 +sg25267 +g27 +sg25275 +S'1922' +p110124 +sg25268 +S'Gable and Apples' +p110125 +sg25270 +S'Alfred Stieglitz' +p110126 +sa(dp110127 +g25273 +S'gelatin silver print' +p110128 +sg25267 +g27 +sg25275 +S'1922' +p110129 +sg25268 +S'The Barn' +p110130 +sg25270 +S'Alfred Stieglitz' +p110131 +sa(dp110132 +g25273 +S'gelatin silver print mounted on paperboard' +p110133 +sg25267 +g27 +sg25275 +S'1922' +p110134 +sg25268 +S'Barn and Carriage' +p110135 +sg25270 +S'Alfred Stieglitz' +p110136 +sa(dp110137 +g25273 +S'palladium print' +p110138 +sg25267 +g27 +sg25275 +S'1922' +p110139 +sg25268 +S'The Barn' +p110140 +sg25270 +S'Alfred Stieglitz' +p110141 +sa(dp110142 +g25273 +S'gelatin silver print mounted on paperboard' +p110143 +sg25267 +g27 +sg25275 +S'probably 1922' +p110144 +sg25268 +S'Horse and Carriage' +p110145 +sg25270 +S'Alfred Stieglitz' +p110146 +sa(dp110147 +g25273 +S'gelatin silver print mounted on paperboard' +p110148 +sg25267 +g27 +sg25275 +S'probably 1922' +p110149 +sg25268 +S'Horse and Carriage' +p110150 +sg25270 +S'Alfred Stieglitz' +p110151 +sa(dp110152 +g25273 +S'gelatin silver print' +p110153 +sg25267 +g27 +sg25275 +S'1922' +p110154 +sg25268 +S'Judith' +p110155 +sg25270 +S'Alfred Stieglitz' +p110156 +sa(dp110157 +g25273 +S'palladium print' +p110158 +sg25267 +g27 +sg25275 +S'probably 1921' +p110159 +sg25268 +S'Apple Tree' +p110160 +sg25270 +S'Alfred Stieglitz' +p110161 +sa(dp110162 +g25268 +S'The Lamentation of Christ' +p110163 +sg25270 +S'Albrecht Altdorfer' +p110164 +sg25273 +S'woodcut' +p110165 +sg25275 +S'c. 1513' +p110166 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a725.jpg' +p110167 +sg25267 +g27 +sa(dp110168 +g25273 +S'gelatin silver print' +p110169 +sg25267 +g27 +sg25275 +S'possibly 1926' +p110170 +sg25268 +S'The Maple Tree' +p110171 +sg25270 +S'Alfred Stieglitz' +p110172 +sa(dp110173 +g25273 +S'gelatin silver print' +p110174 +sg25267 +g27 +sg25275 +S'possibly 1926' +p110175 +sg25268 +S'The Maple Tree' +p110176 +sg25270 +S'Alfred Stieglitz' +p110177 +sa(dp110178 +g25273 +S'palladium print' +p110179 +sg25267 +g27 +sg25275 +S'1923' +p110180 +sg25268 +S'Charles Demuth' +p110181 +sg25270 +S'Alfred Stieglitz' +p110182 +sa(dp110183 +g25273 +S'gelatin silver print' +p110184 +sg25267 +g27 +sg25275 +S'1923' +p110185 +sg25268 +S'Charles Demuth' +p110186 +sg25270 +S'Alfred Stieglitz' +p110187 +sa(dp110188 +g25273 +S'palladium print' +p110189 +sg25267 +g27 +sg25275 +S'1922' +p110190 +sg25268 +S'Rebecca Salsbury Strand' +p110191 +sg25270 +S'Alfred Stieglitz' +p110192 +sa(dp110193 +g25273 +S'palladium print' +p110194 +sg25267 +g27 +sg25275 +S'1922' +p110195 +sg25268 +S'Rebecca Salsbury Strand' +p110196 +sg25270 +S'Alfred Stieglitz' +p110197 +sa(dp110198 +g25273 +S'palladium print' +p110199 +sg25267 +g27 +sg25275 +S'1922' +p110200 +sg25268 +S'Rebecca Salsbury Strand' +p110201 +sg25270 +S'Alfred Stieglitz' +p110202 +sa(dp110203 +g25273 +S'gelatin silver print' +p110204 +sg25267 +g27 +sg25275 +S'1922' +p110205 +sg25268 +S'Rebecca Salsbury Strand' +p110206 +sg25270 +S'Alfred Stieglitz' +p110207 +sa(dp110208 +g25273 +S'palladium print' +p110209 +sg25267 +g27 +sg25275 +S'1922' +p110210 +sg25268 +S'Rebecca Salsbury Strand' +p110211 +sg25270 +S'Alfred Stieglitz' +p110212 +sa(dp110213 +g25273 +S'gelatin silver print' +p110214 +sg25267 +g27 +sg25275 +S'1923' +p110215 +sg25268 +S'Rebecca Salsbury Strand' +p110216 +sg25270 +S'Alfred Stieglitz' +p110217 +sa(dp110218 +g25268 +S'The Angel of the Annunciation' +p110219 +sg25270 +S'Simone Martini' +p110220 +sg25273 +S'tempera on panel' +p110221 +sg25275 +S'c. 1333' +p110222 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000863.jpg' +p110223 +sg25267 +S"This small panel was originally half of a two-part panel made for \r\n private devotion. Rich with textured gold and marked by Gabriel's graceful \r\n silhouette, it is typical of Simone’s refined style.\n Note the angel's ornate robe. In the decades following Marco Polo's \r\n return from China, thousands of caravans traveled the silk route carrying \r\n luxurious textiles west. As woven patterns of brocade and damask replaced \r\n embroidered and appliqued decoration, Italian cities grew wealthy from \r\n textile production and trade. Simone Martini devised new ways to re-create \r\n the look of these fabrics, and since much of the original paint of this \r\n panel has been lost, it is possible to see his technique. The entire panel, \r\n except for the hands and face, was gilded over an underlayer of red. Next \r\n Simone painted the angel’s robe in delicate pinks, shadowed with darker \r\n tones to define folds and the body. After tracing the outlines of the \r\n brocade, he scraped away the paint in the pattern area to reveal the \r\n gilding below, and finally textured the gold with tiny punches. This \r\n technique may have been inspired by Islamic “sgraffito” (scratched) \r\n ceramics, which were imported into Italy.\n " +p110224 +sa(dp110225 +g25268 +S'The Entombment' +p110226 +sg25270 +S'Albrecht Altdorfer' +p110227 +sg25273 +S'woodcut' +p110228 +sg25275 +S'c. 1513' +p110229 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a72b.jpg' +p110230 +sg25267 +g27 +sa(dp110231 +g25273 +S'gelatin silver print' +p110232 +sg25267 +g27 +sg25275 +S'1922' +p110233 +sg25268 +S'Rebecca Salsbury Strand' +p110234 +sg25270 +S'Alfred Stieglitz' +p110235 +sa(dp110236 +g25273 +S'gelatin silver print' +p110237 +sg25267 +g27 +sg25275 +S'1922' +p110238 +sg25268 +S'Rebecca Salsbury Strand' +p110239 +sg25270 +S'Alfred Stieglitz' +p110240 +sa(dp110241 +g25273 +S'gelatin silver print' +p110242 +sg25267 +g27 +sg25275 +S'1922' +p110243 +sg25268 +S'Rebecca Salsbury Strand' +p110244 +sg25270 +S'Alfred Stieglitz' +p110245 +sa(dp110246 +g25273 +S'gelatin silver print mounted on paperboard' +p110247 +sg25267 +g27 +sg25275 +S'1922' +p110248 +sg25268 +S'Rebecca Salsbury Strand' +p110249 +sg25270 +S'Alfred Stieglitz' +p110250 +sa(dp110251 +g25273 +S'gelatin silver print' +p110252 +sg25267 +g27 +sg25275 +S'1922' +p110253 +sg25268 +S'Rebecca Salsbury Strand' +p110254 +sg25270 +S'Alfred Stieglitz' +p110255 +sa(dp110256 +g25273 +S'gelatin silver print' +p110257 +sg25267 +g27 +sg25275 +S'1922' +p110258 +sg25268 +S'Rebecca Salsbury Strand' +p110259 +sg25270 +S'Alfred Stieglitz' +p110260 +sa(dp110261 +g25273 +S'gelatin silver print' +p110262 +sg25267 +g27 +sg25275 +S'1922' +p110263 +sg25268 +S'Rebecca Salsbury Strand' +p110264 +sg25270 +S'Alfred Stieglitz' +p110265 +sa(dp110266 +g25273 +S'gelatin silver print' +p110267 +sg25267 +g27 +sg25275 +S'1922' +p110268 +sg25268 +S'Rebecca Salsbury Strand' +p110269 +sg25270 +S'Alfred Stieglitz' +p110270 +sa(dp110271 +g25273 +S'gelatin silver print' +p110272 +sg25267 +g27 +sg25275 +S'1922' +p110273 +sg25268 +S'Rebecca Salsbury Strand' +p110274 +sg25270 +S'Alfred Stieglitz' +p110275 +sa(dp110276 +g25273 +S'gelatin silver print' +p110277 +sg25267 +g27 +sg25275 +S'1922' +p110278 +sg25268 +S'Rebecca Salsbury Strand' +p110279 +sg25270 +S'Alfred Stieglitz' +p110280 +sa(dp110281 +g25268 +S'Christ Descending into Hell' +p110282 +sg25270 +S'Albrecht Altdorfer' +p110283 +sg25273 +S'woodcut' +p110284 +sg25275 +S'c. 1513' +p110285 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a726.jpg' +p110286 +sg25267 +g27 +sa(dp110287 +g25273 +S'gelatin silver print' +p110288 +sg25267 +g27 +sg25275 +S'1922' +p110289 +sg25268 +S'Rebecca Salsbury Strand' +p110290 +sg25270 +S'Alfred Stieglitz' +p110291 +sa(dp110292 +g25273 +S'gelatin silver print' +p110293 +sg25267 +g27 +sg25275 +S'1922' +p110294 +sg25268 +S'Rebecca Salsbury Strand' +p110295 +sg25270 +S'Alfred Stieglitz' +p110296 +sa(dp110297 +g25273 +S'gelatin silver print' +p110298 +sg25267 +g27 +sg25275 +S'1922' +p110299 +sg25268 +S'Rebecca Salsbury Strand' +p110300 +sg25270 +S'Alfred Stieglitz' +p110301 +sa(dp110302 +g25273 +S'gelatin silver print' +p110303 +sg25267 +g27 +sg25275 +S'1922' +p110304 +sg25268 +S'Rebecca Salsbury Strand' +p110305 +sg25270 +S'Alfred Stieglitz' +p110306 +sa(dp110307 +g25273 +S'gelatin silver print' +p110308 +sg25267 +g27 +sg25275 +S'probably 1922' +p110309 +sg25268 +S'Rebecca Salsbury Strand' +p110310 +sg25270 +S'Alfred Stieglitz' +p110311 +sa(dp110312 +g25273 +S'gelatin silver print' +p110313 +sg25267 +g27 +sg25275 +S'1922' +p110314 +sg25268 +S'Rebecca Salsbury Strand' +p110315 +sg25270 +S'Alfred Stieglitz' +p110316 +sa(dp110317 +g25273 +S'gelatin silver print' +p110318 +sg25267 +g27 +sg25275 +S'1922' +p110319 +sg25268 +S'Rebecca Salsbury Strand' +p110320 +sg25270 +S'Alfred Stieglitz' +p110321 +sa(dp110322 +g25273 +S'gelatin silver print' +p110323 +sg25267 +g27 +sg25275 +S'probably 1924' +p110324 +sg25268 +S'Rebecca Salsbury Strand' +p110325 +sg25270 +S'Alfred Stieglitz' +p110326 +sa(dp110327 +g25273 +S'gelatin silver print mounted on paperboard' +p110328 +sg25267 +g27 +sg25275 +S'1922' +p110329 +sg25268 +S'Rebecca Salsbury Strand' +p110330 +sg25270 +S'Alfred Stieglitz' +p110331 +sa(dp110332 +g25273 +S'gelatin silver print' +p110333 +sg25267 +g27 +sg25275 +S'1922' +p110334 +sg25268 +S'Rebecca Salsbury Strand' +p110335 +sg25270 +S'Alfred Stieglitz' +p110336 +sa(dp110337 +g25268 +S'The Resurrection' +p110338 +sg25270 +S'Albrecht Altdorfer' +p110339 +sg25273 +S'woodcut' +p110340 +sg25275 +S'c. 1513' +p110341 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a72a.jpg' +p110342 +sg25267 +g27 +sa(dp110343 +g25273 +S'gelatin silver print mounted on paperboard' +p110344 +sg25267 +g27 +sg25275 +S'probably 1924' +p110345 +sg25268 +S'Rebecca Salsbury Strand' +p110346 +sg25270 +S'Alfred Stieglitz' +p110347 +sa(dp110348 +g25273 +S'gelatin silver print' +p110349 +sg25267 +g27 +sg25275 +S'1922' +p110350 +sg25268 +S'Rebecca Salsbury Strand' +p110351 +sg25270 +S'Alfred Stieglitz' +p110352 +sa(dp110353 +g25273 +S'gelatin silver print' +p110354 +sg25267 +g27 +sg25275 +S'1922' +p110355 +sg25268 +S'Rebecca Salsbury Strand' +p110356 +sg25270 +S'Alfred Stieglitz' +p110357 +sa(dp110358 +g25273 +S'gelatin silver print' +p110359 +sg25267 +g27 +sg25275 +S'1923' +p110360 +sg25268 +S'Sherwood Anderson' +p110361 +sg25270 +S'Alfred Stieglitz' +p110362 +sa(dp110363 +g25273 +S'gelatin silver print' +p110364 +sg25267 +g27 +sg25275 +S'1923' +p110365 +sg25268 +S'Sherwood Anderson' +p110366 +sg25270 +S'Alfred Stieglitz' +p110367 +sa(dp110368 +g25273 +S'palladium print' +p110369 +sg25267 +g27 +sg25275 +S'1923' +p110370 +sg25268 +S'Sherwood Anderson' +p110371 +sg25270 +S'Alfred Stieglitz' +p110372 +sa(dp110373 +g25273 +S'gelatin silver print' +p110374 +sg25267 +g27 +sg25275 +S'1923' +p110375 +sg25268 +S'Sherwood Anderson' +p110376 +sg25270 +S'Alfred Stieglitz' +p110377 +sa(dp110378 +g25273 +S'gelatin silver print' +p110379 +sg25267 +g27 +sg25275 +S'1923' +p110380 +sg25268 +S'Sherwood Anderson' +p110381 +sg25270 +S'Alfred Stieglitz' +p110382 +sa(dp110383 +g25273 +S'gelatin silver print' +p110384 +sg25267 +g27 +sg25275 +S'1923' +p110385 +sg25268 +S'Sherwood Anderson' +p110386 +sg25270 +S'Alfred Stieglitz' +p110387 +sa(dp110388 +g25273 +S'gelatin silver print' +p110389 +sg25267 +g27 +sg25275 +S'1923' +p110390 +sg25268 +S'Arthur B. Carles' +p110391 +sg25270 +S'Alfred Stieglitz' +p110392 +sa(dp110393 +g25268 +S'Christ Appearing to Saint Magdalene' +p110394 +sg25270 +S'Albrecht Altdorfer' +p110395 +sg25273 +S'woodcut' +p110396 +sg25275 +S'c. 1513' +p110397 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a729.jpg' +p110398 +sg25267 +g27 +sa(dp110399 +g25273 +S'palladium print' +p110400 +sg25267 +g27 +sg25275 +S'1923' +p110401 +sg25268 +S'Arthur B. Carles' +p110402 +sg25270 +S'Alfred Stieglitz' +p110403 +sa(dp110404 +g25273 +S'gelatin silver print' +p110405 +sg25267 +g27 +sg25275 +S'1923' +p110406 +sg25268 +S'Arthur B. Carles' +p110407 +sg25270 +S'Alfred Stieglitz' +p110408 +sa(dp110409 +g25273 +S'gelatin silver print' +p110410 +sg25267 +g27 +sg25275 +S'1920' +p110411 +sg25268 +S'Donald Davidson' +p110412 +sg25270 +S'Alfred Stieglitz' +p110413 +sa(dp110414 +g25273 +S'palladium print' +p110415 +sg25267 +g27 +sg25275 +S'probably 1922' +p110416 +sg25268 +S'Donald Davidson' +p110417 +sg25270 +S'Alfred Stieglitz' +p110418 +sa(dp110419 +g25273 +S'palladium print' +p110420 +sg25267 +g27 +sg25275 +S'1923' +p110421 +sg25268 +S'Charles Demuth' +p110422 +sg25270 +S'Alfred Stieglitz' +p110423 +sa(dp110424 +g25273 +S'palladium print' +p110425 +sg25267 +g27 +sg25275 +S'1923' +p110426 +sg25268 +S'Charles Demuth' +p110427 +sg25270 +S'Alfred Stieglitz' +p110428 +sa(dp110429 +g25273 +S'palladium print' +p110430 +sg25267 +g27 +sg25275 +S'1923' +p110431 +sg25268 +S'Marcel Duchamp' +p110432 +sg25270 +S'Alfred Stieglitz' +p110433 +sa(dp110434 +g25268 +S'Marcel Duchamp' +p110435 +sg25270 +S'Alfred Stieglitz' +p110436 +sg25273 +S'palladium print' +p110437 +sg25275 +S'1923' +p110438 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a000626f.jpg' +p110439 +sg25267 +g27 +sa(dp110440 +g25273 +S'gelatin silver print' +p110441 +sg25267 +g27 +sg25275 +S'1922' +p110442 +sg25268 +S'Georgia Engelhard' +p110443 +sg25270 +S'Alfred Stieglitz' +p110444 +sa(dp110445 +g25273 +S'gelatin silver print' +p110446 +sg25267 +g27 +sg25275 +S'1924' +p110447 +sg25268 +S"Ida O'Keeffe" +p110448 +sg25270 +S'Alfred Stieglitz' +p110449 +sa(dp110450 +g25268 +S"Christ's Ascension" +p110451 +sg25270 +S'Albrecht Altdorfer' +p110452 +sg25273 +S'woodcut' +p110453 +sg25275 +S'c. 1513' +p110454 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a72c.jpg' +p110455 +sg25267 +g27 +sa(dp110456 +g25273 +S'gelatin silver print' +p110457 +sg25267 +g27 +sg25275 +S'1924' +p110458 +sg25268 +S"Ida O'Keeffe" +p110459 +sg25270 +S'Alfred Stieglitz' +p110460 +sa(dp110461 +g25273 +S'gelatin silver print' +p110462 +sg25267 +g27 +sg25275 +S'1924' +p110463 +sg25268 +S"Ida O'Keeffe" +p110464 +sg25270 +S'Alfred Stieglitz' +p110465 +sa(dp110466 +g25273 +S'gelatin silver print' +p110467 +sg25267 +g27 +sg25275 +S'1924' +p110468 +sg25268 +S"Ida O'Keeffe" +p110469 +sg25270 +S'Alfred Stieglitz' +p110470 +sa(dp110471 +g25273 +S'gelatin silver print' +p110472 +sg25267 +g27 +sg25275 +S'1924' +p110473 +sg25268 +S"Ida O'Keeffe" +p110474 +sg25270 +S'Alfred Stieglitz' +p110475 +sa(dp110476 +g25273 +S'gelatin silver print' +p110477 +sg25267 +g27 +sg25275 +S'1924' +p110478 +sg25268 +S"Ida O'Keeffe" +p110479 +sg25270 +S'Alfred Stieglitz' +p110480 +sa(dp110481 +g25273 +S'gelatin silver print' +p110482 +sg25267 +g27 +sg25275 +S'1924' +p110483 +sg25268 +S"Ida O'Keeffe" +p110484 +sg25270 +S'Alfred Stieglitz' +p110485 +sa(dp110486 +g25273 +S'gelatin silver print' +p110487 +sg25267 +g27 +sg25275 +S'1924' +p110488 +sg25268 +S"Ida O'Keeffe" +p110489 +sg25270 +S'Alfred Stieglitz' +p110490 +sa(dp110491 +g25273 +S'gelatin silver print' +p110492 +sg25267 +g27 +sg25275 +S'1924' +p110493 +sg25268 +S"Ida O'Keeffe" +p110494 +sg25270 +S'Alfred Stieglitz' +p110495 +sa(dp110496 +g25273 +S'gelatin silver print' +p110497 +sg25267 +g27 +sg25275 +S'1924' +p110498 +sg25268 +S"Ida O'Keeffe" +p110499 +sg25270 +S'Alfred Stieglitz' +p110500 +sa(dp110501 +g25273 +S'gelatin silver print' +p110502 +sg25267 +g27 +sg25275 +S'1924' +p110503 +sg25268 +S"Ida O'Keeffe" +p110504 +sg25270 +S'Alfred Stieglitz' +p110505 +sa(dp110506 +g25268 +S'The Death of the Virgin' +p110507 +sg25270 +S'Albrecht Altdorfer' +p110508 +sg25273 +S'woodcut' +p110509 +sg25275 +S'c. 1513' +p110510 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a728.jpg' +p110511 +sg25267 +g27 +sa(dp110512 +g25273 +S'gelatin silver print mounted on paperboard' +p110513 +sg25267 +g27 +sg25275 +S'1924' +p110514 +sg25268 +S"Ida O'Keeffe" +p110515 +sg25270 +S'Alfred Stieglitz' +p110516 +sa(dp110517 +g25273 +S'gelatin silver print' +p110518 +sg25267 +g27 +sg25275 +S'1924' +p110519 +sg25268 +S"Ida O'Keeffe" +p110520 +sg25270 +S'Alfred Stieglitz' +p110521 +sa(dp110522 +g25273 +S'palladium print' +p110523 +sg25267 +g27 +sg25275 +S'1919/1922' +p110524 +sg25268 +S"Ida O'Keeffe" +p110525 +sg25270 +S'Alfred Stieglitz' +p110526 +sa(dp110527 +g25273 +S'palladium print' +p110528 +sg25267 +g27 +sg25275 +S'1922/1923' +p110529 +sg25268 +S'Paul Rosenfeld' +p110530 +sg25270 +S'Alfred Stieglitz' +p110531 +sa(dp110532 +g25273 +S'gelatin silver print mounted on paperboard' +p110533 +sg25267 +g27 +sg25275 +S'1924' +p110534 +sg25268 +S'Peggy Davidson' +p110535 +sg25270 +S'Alfred Stieglitz' +p110536 +sa(dp110537 +g25273 +S'gelatin silver print mounted on paperboard' +p110538 +sg25267 +g27 +sg25275 +S'1924' +p110539 +sg25268 +S'Peggy Davidson' +p110540 +sg25270 +S'Alfred Stieglitz' +p110541 +sa(dp110542 +g25273 +S'gelatin silver print mounted on paperboard' +p110543 +sg25267 +g27 +sg25275 +S'1923' +p110544 +sg25268 +S'Katherine' +p110545 +sg25270 +S'Alfred Stieglitz' +p110546 +sa(dp110547 +g25273 +S'gelatin silver print' +p110548 +sg25267 +g27 +sg25275 +S'probably 1918' +p110549 +sg25268 +S'Kitty Stieglitz and Edward Stieglitz' +p110550 +sg25270 +S'Alfred Stieglitz' +p110551 +sa(dp110552 +g25273 +S'gelatin silver print' +p110553 +sg25267 +g27 +sg25275 +S'1923' +p110554 +sg25268 +S'Katherine (Lake George Cook)' +p110555 +sg25270 +S'Alfred Stieglitz' +p110556 +sa(dp110557 +g25273 +S'gelatin silver print' +p110558 +sg25267 +g27 +sg25275 +S'1923' +p110559 +sg25268 +S'Katherine' +p110560 +sg25270 +S'Alfred Stieglitz' +p110561 +sa(dp110562 +g25268 +S'The Last Judgment' +p110563 +sg25270 +S'Albrecht Altdorfer' +p110564 +sg25273 +S'woodcut' +p110565 +sg25275 +S'c. 1513' +p110566 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a727.jpg' +p110567 +sg25267 +g27 +sa(dp110568 +g25273 +S'gelatin silver print mounted on paperboard' +p110569 +sg25267 +g27 +sg25275 +S'1923' +p110570 +sg25268 +S'Barn & Snow' +p110571 +sg25270 +S'Alfred Stieglitz' +p110572 +sa(dp110573 +g25273 +S'gelatin silver print' +p110574 +sg25267 +g27 +sg25275 +S'1923' +p110575 +sg25268 +S'Barnside' +p110576 +sg25270 +S'Alfred Stieglitz' +p110577 +sa(dp110578 +g25273 +S'palladium print' +p110579 +sg25267 +g27 +sg25275 +S'1922' +p110580 +sg25268 +S'The Barn' +p110581 +sg25270 +S'Alfred Stieglitz' +p110582 +sa(dp110583 +g25273 +S'gelatin silver print mounted on paperboard' +p110584 +sg25267 +g27 +sg25275 +S'1923' +p110585 +sg25268 +S'Barn, Carriage & Snow' +p110586 +sg25270 +S'Alfred Stieglitz' +p110587 +sa(dp110588 +g25273 +S'palladium print' +p110589 +sg25267 +g27 +sg25275 +S'1922' +p110590 +sg25268 +S'The Barn' +p110591 +sg25270 +S'Alfred Stieglitz' +p110592 +sa(dp110593 +g25273 +S'gelatin silver print mounted on paperboard' +p110594 +sg25267 +g27 +sg25275 +S'1923' +p110595 +sg25268 +S'Barn & Snow' +p110596 +sg25270 +S'Alfred Stieglitz' +p110597 +sa(dp110598 +g25273 +S'gelatin silver print' +p110599 +sg25267 +g27 +sg25275 +S'1923' +p110600 +sg25268 +S'The Black Barn & White Snow' +p110601 +sg25270 +S'Alfred Stieglitz' +p110602 +sa(dp110603 +g25273 +S'gelatin silver print' +p110604 +sg25267 +g27 +sg25275 +S'1923' +p110605 +sg25268 +S'Barn & Snow' +p110606 +sg25270 +S'Alfred Stieglitz' +p110607 +sa(dp110608 +g25273 +S'gelatin silver print' +p110609 +sg25267 +g27 +sg25275 +S'1923' +p110610 +sg25268 +S'Barn & Snow' +p110611 +sg25270 +S'Alfred Stieglitz' +p110612 +sa(dp110613 +g25273 +S'gelatin silver print' +p110614 +sg25267 +g27 +sg25275 +S'1924' +p110615 +sg25268 +S"Crow's Feather and Apple" +p110616 +sg25270 +S'Alfred Stieglitz' +p110617 +sa(dp110618 +g25268 +S'The Virgin Crowned by Angels' +p110619 +sg25270 +S'Albrecht Altdorfer' +p110620 +sg25273 +S'woodcut' +p110621 +sg25275 +S'c. 1513' +p110622 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a70b.jpg' +p110623 +sg25267 +g27 +sa(dp110624 +g25268 +S'The Hay Wagon' +p110625 +sg25270 +S'Alfred Stieglitz' +p110626 +sg25273 +S'palladium print' +p110627 +sg25275 +S'1922' +p110628 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006270.jpg' +p110629 +sg25267 +g27 +sa(dp110630 +g25273 +S'gelatin silver print mounted on paperboard' +p110631 +sg25267 +g27 +sg25275 +S'1922' +p110632 +sg25268 +S'The Hay Wagon and Barn' +p110633 +sg25270 +S'Alfred Stieglitz' +p110634 +sa(dp110635 +g25273 +S'gelatin silver print mounted on paperboard' +p110636 +sg25267 +g27 +sg25275 +S'1923' +p110637 +sg25268 +S'Lake George' +p110638 +sg25270 +S'Alfred Stieglitz' +p110639 +sa(dp110640 +g25268 +S'Lake George' +p110641 +sg25270 +S'Alfred Stieglitz' +p110642 +sg25273 +S'gelatin silver print mounted on paperboard' +p110643 +sg25275 +S'1923' +p110644 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006271.jpg' +p110645 +sg25267 +g27 +sa(dp110646 +g25273 +S'gelatin silver print' +p110647 +sg25267 +g27 +sg25275 +S'1923' +p110648 +sg25268 +S'First Snow and the Little House' +p110649 +sg25270 +S'Alfred Stieglitz' +p110650 +sa(dp110651 +g25273 +S'gelatin silver print mounted on paperboard' +p110652 +sg25267 +g27 +sg25275 +S'1923' +p110653 +sg25268 +S'First Snow and the Little House' +p110654 +sg25270 +S'Alfred Stieglitz' +p110655 +sa(dp110656 +g25273 +S'gelatin silver print' +p110657 +sg25267 +g27 +sg25275 +S'1924' +p110658 +sg25268 +S'Long Underwear, Lake George' +p110659 +sg25270 +S'Alfred Stieglitz' +p110660 +sa(dp110661 +g25273 +S'gelatin silver print' +p110662 +sg25267 +g27 +sg25275 +S'1924' +p110663 +sg25268 +S'Long Underwear, Lake George' +p110664 +sg25270 +S'Alfred Stieglitz' +p110665 +sa(dp110666 +g25273 +S'gelatin silver print' +p110667 +sg25267 +g27 +sg25275 +S'1924' +p110668 +sg25268 +S'Long Underwear, Lake George' +p110669 +sg25270 +S'Alfred Stieglitz' +p110670 +sa(dp110671 +g25273 +S'gelatin silver print' +p110672 +sg25267 +g27 +sg25275 +S'1924' +p110673 +sg25268 +S'Long Underwear, Lake George' +p110674 +sg25270 +S'Alfred Stieglitz' +p110675 +sa(dp110676 +g25268 +S'Jael and Sisera' +p110677 +sg25270 +S'Albrecht Altdorfer' +p110678 +sg25273 +S'woodcut' +p110679 +sg25275 +S'c. 1513' +p110680 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a707.jpg' +p110681 +sg25267 +g27 +sa(dp110682 +g25273 +S'gelatin silver print' +p110683 +sg25267 +g27 +sg25275 +S'1924' +p110684 +sg25268 +S'Long Underwear, Lake George' +p110685 +sg25270 +S'Alfred Stieglitz' +p110686 +sa(dp110687 +g25273 +S'gelatin silver print' +p110688 +sg25267 +g27 +sg25275 +S'1923' +p110689 +sg25268 +S'Barn & Snow' +p110690 +sg25270 +S'Alfred Stieglitz' +p110691 +sa(dp110692 +g25273 +S'gelatin silver print' +p110693 +sg25267 +g27 +sg25275 +S'1923' +p110694 +sg25268 +S'Window' +p110695 +sg25270 +S'Alfred Stieglitz' +p110696 +sa(dp110697 +g25273 +S'gelatin silver print' +p110698 +sg25267 +g27 +sg25275 +S'1923' +p110699 +sg25268 +S'Window: Wood, Glass, Snow' +p110700 +sg25270 +S'Alfred Stieglitz' +p110701 +sa(dp110702 +g25273 +S'palladium print' +p110703 +sg25267 +g27 +sg25275 +S'1920/1922' +p110704 +sg25268 +S'Legs, Lake George' +p110705 +sg25270 +S'Alfred Stieglitz' +p110706 +sa(dp110707 +g25273 +S'gelatin silver print' +p110708 +sg25267 +g27 +sg25275 +S'1926' +p110709 +sg25268 +S'Eva Herrmann' +p110710 +sg25270 +S'Alfred Stieglitz' +p110711 +sa(dp110712 +g25273 +S'gelatin silver print' +p110713 +sg25267 +g27 +sg25275 +S'1926' +p110714 +sg25268 +S'Eva Herrmann' +p110715 +sg25270 +S'Alfred Stieglitz' +p110716 +sa(dp110717 +g25273 +S'gelatin silver print' +p110718 +sg25267 +g27 +sg25275 +S'1926' +p110719 +sg25268 +S"Frances O'Brien" +p110720 +sg25270 +S'Alfred Stieglitz' +p110721 +sa(dp110722 +g25273 +S'gelatin silver print mounted on paperboard' +p110723 +sg25267 +g27 +sg25275 +S'1926' +p110724 +sg25268 +S"Frances O'Brien" +p110725 +sg25270 +S'Alfred Stieglitz' +p110726 +sa(dp110727 +g25273 +S'gelatin silver print' +p110728 +sg25267 +g27 +sg25275 +S'1925' +p110729 +sg25268 +S'Paul Rosenfeld' +p110730 +sg25270 +S'Alfred Stieglitz' +p110731 +sa(dp110732 +g25268 +S"Abraham's Sacrifice" +p110733 +sg25270 +S'Albrecht Altdorfer' +p110734 +sg25273 +S'woodcut' +p110735 +sg25275 +S'in or after 1520' +p110736 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a781.jpg' +p110737 +sg25267 +g27 +sa(dp110738 +g25273 +S'gelatin silver print' +p110739 +sg25267 +g27 +sg25275 +S'1925' +p110740 +sg25268 +S'Jean Toomer' +p110741 +sg25270 +S'Alfred Stieglitz' +p110742 +sa(dp110743 +g25273 +S'gelatin silver print' +p110744 +sg25267 +g27 +sg25275 +S'1925' +p110745 +sg25268 +S'Jean Toomer' +p110746 +sg25270 +S'Alfred Stieglitz' +p110747 +sa(dp110748 +g25273 +S'gelatin silver print' +p110749 +sg25267 +g27 +sg25275 +S'1925' +p110750 +sg25268 +S'Jean Toomer' +p110751 +sg25270 +S'Alfred Stieglitz' +p110752 +sa(dp110753 +g25273 +S'gelatin silver print' +p110754 +sg25267 +g27 +sg25275 +S'1925' +p110755 +sg25268 +S'Jean Toomer' +p110756 +sg25270 +S'Alfred Stieglitz' +p110757 +sa(dp110758 +g25273 +S'gelatin silver print' +p110759 +sg25267 +g27 +sg25275 +S'1925' +p110760 +sg25268 +S'Jean Toomer' +p110761 +sg25270 +S'Alfred Stieglitz' +p110762 +sa(dp110763 +g25273 +S'gelatin silver print' +p110764 +sg25267 +g27 +sg25275 +S'1925' +p110765 +sg25268 +S'Jean Toomer' +p110766 +sg25270 +S'Alfred Stieglitz' +p110767 +sa(dp110768 +g25273 +S'gelatin silver print' +p110769 +sg25267 +g27 +sg25275 +S'1925' +p110770 +sg25268 +S'Jean Toomer' +p110771 +sg25270 +S'Alfred Stieglitz' +p110772 +sa(dp110773 +g25273 +S'gelatin silver print' +p110774 +sg25267 +g27 +sg25275 +S'1925' +p110775 +sg25268 +S'Jean Toomer' +p110776 +sg25270 +S'Alfred Stieglitz' +p110777 +sa(dp110778 +g25273 +S'gelatin silver print' +p110779 +sg25267 +g27 +sg25275 +S'1925' +p110780 +sg25268 +S'Jean Toomer' +p110781 +sg25270 +S'Alfred Stieglitz' +p110782 +sa(dp110783 +g25273 +S'gelatin silver print' +p110784 +sg25267 +g27 +sg25275 +S'1925' +p110785 +sg25268 +S'Jean Toomer' +p110786 +sg25270 +S'Alfred Stieglitz' +p110787 +sa(dp110788 +g25268 +S'Saint Jerome Reading' +p110789 +sg25270 +S'Giovanni Bellini' +p110790 +sg25273 +S'oil on panel' +p110791 +sg25275 +S'1505' +p110792 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007d0.jpg' +p110793 +sg25267 +S'Saint Jerome is often depicted on small devotional panels like this one. Because he had translated the Bible into Latin, the saint was a favorite of Renaissance humanists and was often shown reading in a study. Other depictions showed him in the wilderness, living as a hermit and beating his breast in penance. Here the two types are combined.\n In fact, the elderly saint and his lion companion, shifted to the lower right, occupy only a small area of the painting. The landscape commands center stage, filled with a distant view and abundant life, all washed with a radiant light. Many of the plants and animals have various symbolic meanings—the rabbits, for example, could serve as reminders of lust or Christian meekness. Rather than intending that we "read" them as symbols, perhaps Bellini means us to see them simply as part of a vast and rich nature.\n Perhaps, paradoxically, it was because Venice was so intensely urban—it was a largely artificial environment constructed on pilings and scant marshy ground—that its artists developed into such evocative landscape painters. Their approach, in contrast to contemporaries elsewhere, was more intuitive than scientific: they responded to, rather than recorded, nature.\n ' +p110794 +sa(dp110795 +g25268 +S'The Annunciation' +p110796 +sg25270 +S'Albrecht Altdorfer' +p110797 +sg25273 +S'woodcut' +p110798 +sg25275 +S'1513' +p110799 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a705.jpg' +p110800 +sg25267 +g27 +sa(dp110801 +g25273 +S'gelatin silver print' +p110802 +sg25267 +g27 +sg25275 +S'1925' +p110803 +sg25268 +S'Jean Toomer' +p110804 +sg25270 +S'Alfred Stieglitz' +p110805 +sa(dp110806 +g25273 +S'gelatin silver print' +p110807 +sg25267 +g27 +sg25275 +S'1925' +p110808 +sg25268 +S'Jean Toomer' +p110809 +sg25270 +S'Alfred Stieglitz' +p110810 +sa(dp110811 +g25273 +S'gelatin silver print' +p110812 +sg25267 +g27 +sg25275 +S'1925' +p110813 +sg25268 +S'Jean Toomer' +p110814 +sg25270 +S'Alfred Stieglitz' +p110815 +sa(dp110816 +g25273 +S'gelatin silver print' +p110817 +sg25267 +g27 +sg25275 +S'1925' +p110818 +sg25268 +S'Jean Toomer' +p110819 +sg25270 +S'Alfred Stieglitz' +p110820 +sa(dp110821 +g25273 +S'gelatin silver print' +p110822 +sg25267 +g27 +sg25275 +S'1925' +p110823 +sg25268 +S'Jean Toomer' +p110824 +sg25270 +S'Alfred Stieglitz' +p110825 +sa(dp110826 +g25273 +S'gelatin silver photograph' +p110827 +sg25267 +g27 +sg25275 +S'1926' +p110828 +sg25268 +S'Ethel Tyrrell' +p110829 +sg25270 +S'Alfred Stieglitz' +p110830 +sa(dp110831 +g25273 +S'gelatin silver photograph' +p110832 +sg25267 +g27 +sg25275 +S'1926' +p110833 +sg25268 +S'Ethel Tyrrell' +p110834 +sg25270 +S'Alfred Stieglitz' +p110835 +sa(dp110836 +g25273 +S'gelatin silver photograph' +p110837 +sg25267 +g27 +sg25275 +S'1926' +p110838 +sg25268 +S'Ethel Tyrrell' +p110839 +sg25270 +S'Alfred Stieglitz' +p110840 +sa(dp110841 +g25273 +S'gelatin silver print mounted on paperboard' +p110842 +sg25267 +g27 +sg25275 +S'1926' +p110843 +sg25268 +S'Ethel Tyrrell' +p110844 +sg25270 +S'Alfred Stieglitz' +p110845 +sa(dp110846 +g25273 +S'gelatin silver photograph' +p110847 +sg25267 +g27 +sg25275 +S'1926' +p110848 +sg25268 +S'Ethel Tyrrell' +p110849 +sg25270 +S'Alfred Stieglitz' +p110850 +sa(dp110851 +g25268 +S'The Holy Kinship' +p110852 +sg25270 +S'Albrecht Altdorfer' +p110853 +sg25273 +S'woodcut' +p110854 +sg25275 +S'in or after 1520' +p110855 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a778.jpg' +p110856 +sg25267 +g27 +sa(dp110857 +g25273 +S'gelatin silver print mounted on paperboard' +p110858 +sg25267 +g27 +sg25275 +S'1926' +p110859 +sg25268 +S'Eva Herrmann' +p110860 +sg25270 +S'Alfred Stieglitz' +p110861 +sa(dp110862 +g25273 +S'gelatin silver print' +p110863 +sg25267 +g27 +sg25275 +S'1922/1924' +p110864 +sg25268 +S'House on the Hill, Lake George' +p110865 +sg25270 +S'Alfred Stieglitz' +p110866 +sa(dp110867 +g25273 +S'gelatin silver print' +p110868 +sg25267 +g27 +sg25275 +S'1925' +p110869 +sg25268 +S'Lake George' +p110870 +sg25270 +S'Alfred Stieglitz' +p110871 +sa(dp110872 +g25273 +S'gelatin silver print mounted on paperboard' +p110873 +sg25267 +g27 +sg25275 +S'1925' +p110874 +sg25268 +S'Sue Davidson' +p110875 +sg25270 +S'Alfred Stieglitz' +p110876 +sa(dp110877 +g25273 +S'gelatin silver print' +p110878 +sg25267 +g27 +sg25275 +S'1925' +p110879 +sg25268 +S'Alfred Kreymborg' +p110880 +sg25270 +S'Alfred Stieglitz' +p110881 +sa(dp110882 +g25273 +S'gelatin silver print' +p110883 +sg25267 +g27 +sg25275 +S'1925' +p110884 +sg25268 +S'Dorothy Kreymborg' +p110885 +sg25270 +S'Alfred Stieglitz' +p110886 +sa(dp110887 +g25273 +S'gelatin silver print' +p110888 +sg25267 +g27 +sg25275 +S'1926' +p110889 +sg25268 +S'Eva Herrmann' +p110890 +sg25270 +S'Alfred Stieglitz' +p110891 +sa(dp110892 +g25273 +S'gelatin silver print mounted on paperboard' +p110893 +sg25267 +g27 +sg25275 +S'probably 1926' +p110894 +sg25268 +S'Lake George' +p110895 +sg25270 +S'Alfred Stieglitz' +p110896 +sa(dp110897 +g25273 +S'gelatin silver print' +p110898 +sg25267 +g27 +sg25275 +S'1926' +p110899 +sg25268 +S'Lake George' +p110900 +sg25270 +S'Alfred Stieglitz' +p110901 +sa(dp110902 +g25273 +S'gelatin silver print' +p110903 +sg25267 +g27 +sg25275 +S'probably 1926' +p110904 +sg25268 +S'Lake George' +p110905 +sg25270 +S'Alfred Stieglitz' +p110906 +sa(dp110907 +g25268 +S'Virgin and Child in a Church' +p110908 +sg25270 +S'Albrecht Altdorfer' +p110909 +sg25273 +S'woodcut' +p110910 +sg25275 +S'c. 1519' +p110911 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a779.jpg' +p110912 +sg25267 +g27 +sa(dp110913 +g25273 +S'gelatin silver print' +p110914 +sg25267 +g27 +sg25275 +S'probably 1926' +p110915 +sg25268 +S'Lake George' +p110916 +sg25270 +S'Alfred Stieglitz' +p110917 +sa(dp110918 +g25273 +S'gelatin silver print' +p110919 +sg25267 +g27 +sg25275 +S'probably 1926' +p110920 +sg25268 +S'Lake George' +p110921 +sg25270 +S'Alfred Stieglitz' +p110922 +sa(dp110923 +g25273 +S'gelatin silver print' +p110924 +sg25267 +g27 +sg25275 +S'1926' +p110925 +sg25268 +S'The Old Maple--Lake George' +p110926 +sg25270 +S'Alfred Stieglitz' +p110927 +sa(dp110928 +g25273 +S'gelatin silver print' +p110929 +sg25267 +g27 +sg25275 +S'1927' +p110930 +sg25268 +S'Rain Drops' +p110931 +sg25270 +S'Alfred Stieglitz' +p110932 +sa(dp110933 +g25273 +S'gelatin silver print' +p110934 +sg25267 +g27 +sg25275 +S'1927' +p110935 +sg25268 +S'The Dying Chestnut Tree' +p110936 +sg25270 +S'Alfred Stieglitz' +p110937 +sa(dp110938 +g25273 +S'gelatin silver print' +p110939 +sg25267 +g27 +sg25275 +S'1927' +p110940 +sg25268 +S'The Dying Chestnut Tree' +p110941 +sg25270 +S'Alfred Stieglitz' +p110942 +sa(dp110943 +g25273 +S'gelatin silver print' +p110944 +sg25267 +g27 +sg25275 +S'1927' +p110945 +sg25268 +S'The Dying Chestnut Tree' +p110946 +sg25270 +S'Alfred Stieglitz' +p110947 +sa(dp110948 +g25273 +S'gelatin silver print' +p110949 +sg25267 +g27 +sg25275 +S'probably 1937' +p110950 +sg25268 +S'Dead Chestnut Tree' +p110951 +sg25270 +S'Alfred Stieglitz' +p110952 +sa(dp110953 +g25273 +S'gelatin silver print' +p110954 +sg25267 +g27 +sg25275 +S'1927' +p110955 +sg25268 +S'Lookout House, Prospect Mountain, Lake George' +p110956 +sg25270 +S'Alfred Stieglitz' +p110957 +sa(dp110958 +g25273 +S'gelatin silver print' +p110959 +sg25267 +g27 +sg25275 +S'1927' +p110960 +sg25268 +S'The Dying Chestnut Tree' +p110961 +sg25270 +S'Alfred Stieglitz' +p110962 +sa(dp110963 +g25268 +S'The Resurrection' +p110964 +sg25270 +S'Albrecht Altdorfer' +p110965 +sg25273 +S'woodcut' +p110966 +sg25275 +S'1512' +p110967 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b07e.jpg' +p110968 +sg25267 +g27 +sa(dp110969 +g25273 +S'gelatin silver print' +p110970 +sg25267 +g27 +sg25275 +S'probably 1937' +p110971 +sg25268 +S'Dead Chestnut Tree' +p110972 +sg25270 +S'Alfred Stieglitz' +p110973 +sa(dp110974 +g25273 +S'gelatin silver print' +p110975 +sg25267 +g27 +sg25275 +S'probably 1937' +p110976 +sg25268 +S'Dead Chestnut Tree' +p110977 +sg25270 +S'Alfred Stieglitz' +p110978 +sa(dp110979 +g25273 +S'gelatin silver print' +p110980 +sg25267 +g27 +sg25275 +S'probably 1924' +p110981 +sg25268 +S'Tree Set 4' +p110982 +sg25270 +S'Alfred Stieglitz' +p110983 +sa(dp110984 +g25273 +S'gelatin silver print' +p110985 +sg25267 +g27 +sg25275 +S'probably 1924' +p110986 +sg25268 +S'Tree Set 2' +p110987 +sg25270 +S'Alfred Stieglitz' +p110988 +sa(dp110989 +g25273 +S'gelatin silver print' +p110990 +sg25267 +g27 +sg25275 +S'probably 1924' +p110991 +sg25268 +S'Tree Set 5' +p110992 +sg25270 +S'Alfred Stieglitz' +p110993 +sa(dp110994 +g25273 +S'gelatin silver print' +p110995 +sg25267 +g27 +sg25275 +S'probably 1924' +p110996 +sg25268 +S'Tree Set 1' +p110997 +sg25270 +S'Alfred Stieglitz' +p110998 +sa(dp110999 +g25273 +S'gelatin silver print' +p111000 +sg25267 +g27 +sg25275 +S'1927' +p111001 +sg25268 +S'The Dying Chestnut Tree--My Teacher' +p111002 +sg25270 +S'Alfred Stieglitz' +p111003 +sa(dp111004 +g25273 +S'gelatin silver print' +p111005 +sg25267 +g27 +sg25275 +S'probably 1937' +p111006 +sg25268 +S'Dead Chestnut Tree' +p111007 +sg25270 +S'Alfred Stieglitz' +p111008 +sa(dp111009 +g25273 +S'gelatin silver print' +p111010 +sg25267 +g27 +sg25275 +S'1927' +p111011 +sg25268 +S'Lake George' +p111012 +sg25270 +S'Alfred Stieglitz' +p111013 +sa(dp111014 +g25273 +S'gelatin silver print' +p111015 +sg25267 +g27 +sg25275 +S'1927' +p111016 +sg25268 +S'Mrs. Fiene by Lachaise' +p111017 +sg25270 +S'Alfred Stieglitz' +p111018 +sa(dp111019 +g25268 +S'Saint Christopher' +p111020 +sg25270 +S'Albrecht Altdorfer' +p111021 +sg25273 +S'woodcut' +p111022 +sg25275 +S'1513' +p111023 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a701.jpg' +p111024 +sg25267 +g27 +sa(dp111025 +g25273 +S'gelatin silver print' +p111026 +sg25267 +g27 +sg25275 +S'1924/1927' +p111027 +sg25268 +S'Trees' +p111028 +sg25270 +S'Alfred Stieglitz' +p111029 +sa(dp111030 +g25273 +S'gelatin silver print' +p111031 +sg25267 +g27 +sg25275 +S'1924/1927' +p111032 +sg25268 +S'Trees' +p111033 +sg25270 +S'Alfred Stieglitz' +p111034 +sa(dp111035 +g25273 +S'gelatin silver print' +p111036 +sg25267 +g27 +sg25275 +S'1930' +p111037 +sg25268 +S'Elizabeth (Peggy) and Sue Davidson' +p111038 +sg25270 +S'Alfred Stieglitz' +p111039 +sa(dp111040 +g25273 +S'gelatin silver print' +p111041 +sg25267 +g27 +sg25275 +S'probably 1935' +p111042 +sg25268 +S'Barn' +p111043 +sg25270 +S'Alfred Stieglitz' +p111044 +sa(dp111045 +g25273 +S'gelatin silver print' +p111046 +sg25267 +g27 +sg25275 +S'1922/1924' +p111047 +sg25268 +S'House on the Hill, Lake George' +p111048 +sg25270 +S'Alfred Stieglitz' +p111049 +sa(dp111050 +g25273 +S'gelatin silver print' +p111051 +sg25267 +g27 +sg25275 +S'1922/1924' +p111052 +sg25268 +S'House on the Hill, Lake George' +p111053 +sg25270 +S'Alfred Stieglitz' +p111054 +sa(dp111055 +g25273 +S'gelatin silver print' +p111056 +sg25267 +g27 +sg25275 +S'1930' +p111057 +sg25268 +S'The Little House' +p111058 +sg25270 +S'Alfred Stieglitz' +p111059 +sa(dp111060 +g25273 +S'gelatin silver print' +p111061 +sg25267 +g27 +sg25275 +S'1931' +p111062 +sg25268 +S'Dorothy Norman' +p111063 +sg25270 +S'Alfred Stieglitz' +p111064 +sa(dp111065 +g25273 +S'gelatin silver print' +p111066 +sg25267 +g27 +sg25275 +S'1931' +p111067 +sg25268 +S'Dorothy Norman' +p111068 +sg25270 +S'Alfred Stieglitz' +p111069 +sa(dp111070 +g25273 +S'gelatin silver print' +p111071 +sg25267 +g27 +sg25275 +S'probably 1931' +p111072 +sg25268 +S'Dorothy Norman' +p111073 +sg25270 +S'Alfred Stieglitz' +p111074 +sa(dp111075 +g25268 +S'Saint Christopher Seated by a River Bank' +p111076 +sg25270 +S'Albrecht Altdorfer' +p111077 +sg25273 +S'woodcut' +p111078 +sg25275 +S'c. 1515/1517' +p111079 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a77d.jpg' +p111080 +sg25267 +g27 +sa(dp111081 +g25273 +S'gelatin silver print' +p111082 +sg25267 +g27 +sg25275 +S'1931' +p111083 +sg25268 +S'Dorothy Norman' +p111084 +sg25270 +S'Alfred Stieglitz' +p111085 +sa(dp111086 +g25273 +S'gelatin silver print' +p111087 +sg25267 +g27 +sg25275 +S'probably 1931' +p111088 +sg25268 +S'Dorothy Norman' +p111089 +sg25270 +S'Alfred Stieglitz' +p111090 +sa(dp111091 +g25273 +S'gelatin silver print' +p111092 +sg25267 +g27 +sg25275 +S'1931' +p111093 +sg25268 +S'Dorothy Norman' +p111094 +sg25270 +S'Alfred Stieglitz' +p111095 +sa(dp111096 +g25273 +S'gelatin silver print' +p111097 +sg25267 +g27 +sg25275 +S'1930/1931' +p111098 +sg25268 +S'Dorothy Norman' +p111099 +sg25270 +S'Alfred Stieglitz' +p111100 +sa(dp111101 +g25273 +S'gelatin silver print' +p111102 +sg25267 +g27 +sg25275 +S'probably 1931' +p111103 +sg25268 +S'Dorothy Norman' +p111104 +sg25270 +S'Alfred Stieglitz' +p111105 +sa(dp111106 +g25273 +S'gelatin silver print' +p111107 +sg25267 +g27 +sg25275 +S'1930/1931' +p111108 +sg25268 +S'Dorothy Norman' +p111109 +sg25270 +S'Alfred Stieglitz' +p111110 +sa(dp111111 +g25273 +S'gelatin silver print' +p111112 +sg25267 +g27 +sg25275 +S'1930/1931' +p111113 +sg25268 +S'Dorothy Norman' +p111114 +sg25270 +S'Alfred Stieglitz' +p111115 +sa(dp111116 +g25273 +S'gelatin silver print' +p111117 +sg25267 +g27 +sg25275 +S'1930/1931' +p111118 +sg25268 +S'Dorothy Norman' +p111119 +sg25270 +S'Alfred Stieglitz' +p111120 +sa(dp111121 +g25273 +S'gelatin silver print' +p111122 +sg25267 +g27 +sg25275 +S'1930/1931' +p111123 +sg25268 +S'Dorothy Norman' +p111124 +sg25270 +S'Alfred Stieglitz' +p111125 +sa(dp111126 +g25273 +S'gelatin silver print' +p111127 +sg25267 +g27 +sg25275 +S'probably 1931' +p111128 +sg25268 +S'Dorothy Norman' +p111129 +sg25270 +S'Alfred Stieglitz' +p111130 +sa(dp111131 +g25273 +S'gelatin silver print mounted on paperboard' +p111132 +sg25267 +g27 +sg25275 +S'1931' +p111133 +sg25268 +S'Dorothy Norman' +p111134 +sg25270 +S'Alfred Stieglitz' +p111135 +sa(dp111136 +g25273 +S'gelatin silver print mounted on paperboard' +p111137 +sg25267 +g27 +sg25275 +S'1931' +p111138 +sg25268 +S'Richard Menshausen' +p111139 +sg25270 +S'Alfred Stieglitz' +p111140 +sa(dp111141 +g25273 +S'gelatin silver print' +p111142 +sg25267 +g27 +sg25275 +S'probably 1931' +p111143 +sg25268 +S'House, Lake George' +p111144 +sg25270 +S'Alfred Stieglitz' +p111145 +sa(dp111146 +g25273 +S'gelatin silver print' +p111147 +sg25267 +g27 +sg25275 +S'1931' +p111148 +sg25268 +S'House and Trees, Lake George' +p111149 +sg25270 +S'Alfred Stieglitz' +p111150 +sa(dp111151 +g25273 +S'gelatin silver print' +p111152 +sg25267 +g27 +sg25275 +S'1931' +p111153 +sg25268 +S'Lake George' +p111154 +sg25270 +S'Alfred Stieglitz' +p111155 +sa(dp111156 +g25273 +S'gelatin silver print mounted on paperboard' +p111157 +sg25267 +g27 +sg25275 +S'1932' +p111158 +sg25268 +S'Lake George from the Hill' +p111159 +sg25270 +S'Alfred Stieglitz' +p111160 +sa(dp111161 +g25273 +S'gelatin silver print' +p111162 +sg25267 +g27 +sg25275 +S'1931' +p111163 +sg25268 +S'Lake George' +p111164 +sg25270 +S'Alfred Stieglitz' +p111165 +sa(dp111166 +g25273 +S'gelatin silver print mounted on paperboard' +p111167 +sg25267 +g27 +sg25275 +S'1932' +p111168 +sg25268 +S'Louis Kalonyme' +p111169 +sg25270 +S'Alfred Stieglitz' +p111170 +sa(dp111171 +g25273 +S'gelatin silver print' +p111172 +sg25267 +g27 +sg25275 +S'1932' +p111173 +sg25268 +S'Louis Kalonyme' +p111174 +sg25270 +S'Alfred Stieglitz' +p111175 +sa(dp111176 +g25273 +S'gelatin silver print' +p111177 +sg25267 +g27 +sg25275 +S'1932' +p111178 +sg25268 +S'Louis Kalonyme' +p111179 +sg25270 +S'Alfred Stieglitz' +p111180 +sa(dp111181 +g25268 +S'Saint Jerome in a Cave' +p111182 +sg25270 +S'Albrecht Altdorfer' +p111183 +sg25273 +S'woodcut' +p111184 +sg25275 +S'c. 1513/1515' +p111185 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a783.jpg' +p111186 +sg25267 +g27 +sa(dp111187 +g25273 +S'gelatin silver print mounted on paperboard' +p111188 +sg25267 +g27 +sg25275 +S'1931' +p111189 +sg25268 +S'Jerome Mellquist and Paul Rosenfeld, Lake George' +p111190 +sg25270 +S'Alfred Stieglitz' +p111191 +sa(dp111192 +g25268 +S'Dorothy Norman' +p111193 +sg25270 +S'Alfred Stieglitz' +p111194 +sg25273 +S'gelatin silver print' +p111195 +sg25275 +S'1930' +p111196 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006272.jpg' +p111197 +sg25267 +g27 +sa(dp111198 +g25273 +S'gelatin silver print' +p111199 +sg25267 +g27 +sg25275 +S'1932' +p111200 +sg25268 +S'Dualities' +p111201 +sg25270 +S'Alfred Stieglitz' +p111202 +sa(dp111203 +g25273 +S'gelatin silver photograph' +p111204 +sg25267 +g27 +sg25275 +S'1930' +p111205 +sg25268 +S'Dorothy Norman' +p111206 +sg25270 +S'Alfred Stieglitz' +p111207 +sa(dp111208 +g25273 +S'gelatin silver print' +p111209 +sg25267 +g27 +sg25275 +S'probably 1931' +p111210 +sg25268 +S'Dorothy Norman' +p111211 +sg25270 +S'Alfred Stieglitz' +p111212 +sa(dp111213 +g25273 +S'gelatin silver print' +p111214 +sg25267 +g27 +sg25275 +S'1932' +p111215 +sg25268 +S'Cary Ross' +p111216 +sg25270 +S'Alfred Stieglitz' +p111217 +sa(dp111218 +g25273 +S'gelatin silver print' +p111219 +sg25267 +g27 +sg25275 +S'1932' +p111220 +sg25268 +S'House and Poplars, Lake George' +p111221 +sg25270 +S'Alfred Stieglitz' +p111222 +sa(dp111223 +g25273 +S'gelatin silver print mounted on paperboard' +p111224 +sg25267 +g27 +sg25275 +S'1932' +p111225 +sg25268 +S'Lake George from the Hill' +p111226 +sg25270 +S'Alfred Stieglitz' +p111227 +sa(dp111228 +g25273 +S'gelatin silver print' +p111229 +sg25267 +g27 +sg25275 +S'1932' +p111230 +sg25268 +S'Poplars--Lake George' +p111231 +sg25270 +S'Alfred Stieglitz' +p111232 +sa(dp111233 +g25273 +S'gelatin silver print' +p111234 +sg25267 +g27 +sg25275 +S'1932' +p111235 +sg25268 +S'Dying Poplar and Live Branch--Lake George' +p111236 +sg25270 +S'Alfred Stieglitz' +p111237 +sa(dp111238 +g25268 +S'The Rest on the Flight into Egypt at a Fountain' +p111239 +sg25270 +S'Albrecht Altdorfer' +p111240 +sg25273 +S'woodcut' +p111241 +sg25275 +S'c. 1512/1515' +p111242 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a785.jpg' +p111243 +sg25267 +g27 +sa(dp111244 +g25268 +S'Poplars--Lake George' +p111245 +sg25270 +S'Alfred Stieglitz' +p111246 +sg25273 +S'gelatin silver print' +p111247 +sg25275 +S'1932' +p111248 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006294.jpg' +p111249 +sg25267 +g27 +sa(dp111250 +g25273 +S'gelatin silver print' +p111251 +sg25267 +g27 +sg25275 +S'1932' +p111252 +sg25268 +S'Poplars--Lake George' +p111253 +sg25270 +S'Alfred Stieglitz' +p111254 +sa(dp111255 +g25273 +S'gelatin silver print' +p111256 +sg25267 +g27 +sg25275 +S'1936' +p111257 +sg25268 +S'Poplar--Lake George' +p111258 +sg25270 +S'Alfred Stieglitz' +p111259 +sa(dp111260 +g25273 +S'gelatin silver print' +p111261 +sg25267 +g27 +sg25275 +S'1936' +p111262 +sg25268 +S'Poplar--Lake George' +p111263 +sg25270 +S'Alfred Stieglitz' +p111264 +sa(dp111265 +g25273 +S'gelatin silver print' +p111266 +sg25267 +g27 +sg25275 +S'1933' +p111267 +sg25268 +S'Ernest Gutman' +p111268 +sg25270 +S'Alfred Stieglitz' +p111269 +sa(dp111270 +g25273 +S'gelatin silver print' +p111271 +sg25267 +g27 +sg25275 +S'1934' +p111272 +sg25268 +S'Back of Little House' +p111273 +sg25270 +S'Alfred Stieglitz' +p111274 +sa(dp111275 +g25273 +S'gelatin silver print' +p111276 +sg25267 +g27 +sg25275 +S'1933' +p111277 +sg25268 +S'Grass' +p111278 +sg25270 +S'Alfred Stieglitz' +p111279 +sa(dp111280 +g25273 +S'gelatin silver print' +p111281 +sg25267 +g27 +sg25275 +S'1933' +p111282 +sg25268 +S'Grass and Flagpole' +p111283 +sg25270 +S'Alfred Stieglitz' +p111284 +sa(dp111285 +g25268 +S'Grass and Frost' +p111286 +sg25270 +S'Alfred Stieglitz' +p111287 +sg25273 +S'gelatin silver print' +p111288 +sg25275 +S'1934' +p111289 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006295.jpg' +p111290 +sg25267 +g27 +sa(dp111291 +g25268 +S'Grasses' +p111292 +sg25270 +S'Alfred Stieglitz' +p111293 +sg25273 +S'gelatin silver print' +p111294 +sg25275 +S'1933' +p111295 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006296.jpg' +p111296 +sg25267 +g27 +sa(dp111297 +g25268 +S'Pyramus and Thisbe' +p111298 +sg25270 +S'Albrecht Altdorfer' +p111299 +sg25273 +S'woodcut' +p111300 +sg25275 +S'1513' +p111301 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a704.jpg' +p111302 +sg25267 +g27 +sa(dp111303 +g25273 +S'gelatin silver print' +p111304 +sg25267 +g27 +sg25275 +S'1933' +p111305 +sg25268 +S'Grasses' +p111306 +sg25270 +S'Alfred Stieglitz' +p111307 +sa(dp111308 +g25273 +S'gelatin silver print' +p111309 +sg25267 +g27 +sg25275 +S'1933' +p111310 +sg25268 +S'Hedge and Grasses--Lake George' +p111311 +sg25270 +S'Alfred Stieglitz' +p111312 +sa(dp111313 +g25273 +S'gelatin silver print' +p111314 +sg25267 +g27 +sg25275 +S'1932' +p111315 +sg25268 +S'House and Trees, Lake George' +p111316 +sg25270 +S'Alfred Stieglitz' +p111317 +sa(dp111318 +g25273 +S'gelatin silver print' +p111319 +sg25267 +g27 +sg25275 +S'1934' +p111320 +sg25268 +S'House and Trees, Lake George' +p111321 +sg25270 +S'Alfred Stieglitz' +p111322 +sa(dp111323 +g25273 +S'gelatin silver print' +p111324 +sg25267 +g27 +sg25275 +S'1934' +p111325 +sg25268 +S'House and Poplars, Lake George' +p111326 +sg25270 +S'Alfred Stieglitz' +p111327 +sa(dp111328 +g25273 +S'gelatin silver print' +p111329 +sg25267 +g27 +sg25275 +S'1932' +p111330 +sg25268 +S'House and Trees, Lake George' +p111331 +sg25270 +S'Alfred Stieglitz' +p111332 +sa(dp111333 +g25273 +S'gelatin silver print' +p111334 +sg25267 +g27 +sg25275 +S'probably 1933' +p111335 +sg25268 +S'Little House, Lake George' +p111336 +sg25270 +S'Alfred Stieglitz' +p111337 +sa(dp111338 +g25273 +S'gelatin silver print' +p111339 +sg25267 +g27 +sg25275 +S'1933' +p111340 +sg25268 +S'House and Poplars, Lake George' +p111341 +sg25270 +S'Alfred Stieglitz' +p111342 +sa(dp111343 +g25273 +S'gelatin silver print' +p111344 +sg25267 +g27 +sg25275 +S'1933' +p111345 +sg25268 +S'Poplars, Lake George' +p111346 +sg25270 +S'Alfred Stieglitz' +p111347 +sa(dp111348 +g25273 +S'gelatin silver print' +p111349 +sg25267 +g27 +sg25275 +S'1936' +p111350 +sg25268 +S'Poplars--Lake George' +p111351 +sg25270 +S'Alfred Stieglitz' +p111352 +sa(dp111353 +g25268 +S'The Annunciation' +p111354 +sg25270 +S'Fra Carnevale' +p111355 +sg25273 +S'tempera on panel' +p111356 +sg25275 +S'c. 1445/1450' +p111357 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000761.jpg' +p111358 +sg25267 +S'The style of Fra Carnevale, which draws on older artists like Fra Filippo Lippi, also shows evidence of newer trends, especially in his treatment of\r\ndistant space. Follow the lines of the architecture: the regular rhythm of arcades and arches recedes into the background. The grid formed by the\r\ncourtyard measures the distance for our eye.\n These converging perspective lines lead to a door beyond which we glimpse a lush garden. This is not a random choice of landscape. The artist has used perspective not simply to create a convincing depiction of space, but to lead us to see the theological implications of his scene. In reference to her virginity, Mary was often called the \n ' +p111359 +sa(dp111360 +g25268 +S'The Standard Bearer' +p111361 +sg25270 +S'Albrecht Altdorfer' +p111362 +sg25273 +S'woodcut' +p111363 +sg25275 +S'c. 1516/1518' +p111364 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a77b.jpg' +p111365 +sg25267 +g27 +sa(dp111366 +g25273 +S'gelatin silver print' +p111367 +sg25267 +g27 +sg25275 +S'1932' +p111368 +sg25268 +S'Poplars--Lake George' +p111369 +sg25270 +S'Alfred Stieglitz' +p111370 +sa(dp111371 +g25273 +S'gelatin silver print' +p111372 +sg25267 +g27 +sg25275 +S'1935' +p111373 +sg25268 +S'Poplars--Lake George' +p111374 +sg25270 +S'Alfred Stieglitz' +p111375 +sa(dp111376 +g25273 +S'gelatin silver print' +p111377 +sg25267 +g27 +sg25275 +S'1933' +p111378 +sg25268 +S'Poplars--Lake George' +p111379 +sg25270 +S'Alfred Stieglitz' +p111380 +sa(dp111381 +g25273 +S'gelatin silver print' +p111382 +sg25267 +g27 +sg25275 +S'1934' +p111383 +sg25268 +S'The Two Poplars, Lake George' +p111384 +sg25270 +S'Alfred Stieglitz' +p111385 +sa(dp111386 +g25273 +S'gelatin silver print' +p111387 +sg25267 +g27 +sg25275 +S'1936' +p111388 +sg25268 +S'Poplar--Lake George' +p111389 +sg25270 +S'Alfred Stieglitz' +p111390 +sa(dp111391 +g25273 +S'gelatin silver print' +p111392 +sg25267 +g27 +sg25275 +S'1936' +p111393 +sg25268 +S'Poplars--Lake George' +p111394 +sg25270 +S'Alfred Stieglitz' +p111395 +sa(dp111396 +g25273 +S'gelatin silver print' +p111397 +sg25267 +g27 +sg25275 +S'1935' +p111398 +sg25268 +S'Poplars--Lake George' +p111399 +sg25270 +S'Alfred Stieglitz' +p111400 +sa(dp111401 +g25273 +S'gelatin silver print' +p111402 +sg25267 +g27 +sg25275 +S'1935' +p111403 +sg25268 +S'Poplars--Lake George' +p111404 +sg25270 +S'Alfred Stieglitz' +p111405 +sa(dp111406 +g25273 +S'gelatin silver print' +p111407 +sg25267 +g27 +sg25275 +S'1936' +p111408 +sg25268 +S'Poplars--Lake George' +p111409 +sg25270 +S'Alfred Stieglitz' +p111410 +sa(dp111411 +g25273 +S'gelatin silver print' +p111412 +sg25267 +g27 +sg25275 +S'1936' +p111413 +sg25268 +S'Poplar--Lake George' +p111414 +sg25270 +S'Alfred Stieglitz' +p111415 +sa(dp111416 +g25268 +S'Pair of Lovers in a Landscape' +p111417 +sg25270 +S'Albrecht Altdorfer' +p111418 +sg25273 +S'woodcut' +p111419 +sg25275 +S'1511' +p111420 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a703.jpg' +p111421 +sg25267 +g27 +sa(dp111422 +g25273 +S'gelatin silver print' +p111423 +sg25267 +g27 +sg25275 +S'1933' +p111424 +sg25268 +S'Apple Tree, Lake George' +p111425 +sg25270 +S'Alfred Stieglitz' +p111426 +sa(dp111427 +g25273 +S'gelatin silver print' +p111428 +sg25267 +g27 +sg25275 +S'1937' +p111429 +sg25268 +S'Swami Nikhilanada' +p111430 +sg25270 +S'Alfred Stieglitz' +p111431 +sa(dp111432 +g25273 +S'gelatin silver print' +p111433 +sg25267 +g27 +sg25275 +S'1937' +p111434 +sg25268 +S'Swami Nikhilanada' +p111435 +sg25270 +S'Alfred Stieglitz' +p111436 +sa(dp111437 +g25273 +S'gelatin silver print' +p111438 +sg25267 +g27 +sg25275 +S'1937' +p111439 +sg25268 +S'Swami Nikhilanada' +p111440 +sg25270 +S'Alfred Stieglitz' +p111441 +sa(dp111442 +g25273 +S'gelatin silver print' +p111443 +sg25267 +g27 +sg25275 +S'1937' +p111444 +sg25268 +S'Swami Nikhilanada' +p111445 +sg25270 +S'Alfred Stieglitz' +p111446 +sa(dp111447 +g25273 +S'gelatin silver print' +p111448 +sg25267 +g27 +sg25275 +S'1937' +p111449 +sg25268 +S'Swami Nikhilanada' +p111450 +sg25270 +S'Alfred Stieglitz' +p111451 +sa(dp111452 +g25273 +S'gelatin silver print mounted on paperboard' +p111453 +sg25267 +g27 +sg25275 +S'1934' +p111454 +sg25268 +S'Barn and Car, Lake George' +p111455 +sg25270 +S'Alfred Stieglitz' +p111456 +sa(dp111457 +g25273 +S'gelatin silver print mounted on paperboard' +p111458 +sg25267 +g27 +sg25275 +S'1934' +p111459 +sg25268 +S'Door to Kitchen, Lake George' +p111460 +sg25270 +S'Alfred Stieglitz' +p111461 +sa(dp111462 +g25273 +S'gelatin silver print' +p111463 +sg25267 +g27 +sg25275 +S'1934' +p111464 +sg25268 +S'Door to Kitchen, Lake George' +p111465 +sg25270 +S'Alfred Stieglitz' +p111466 +sa(dp111467 +g25273 +S'gelatin silver print' +p111468 +sg25267 +g27 +sg25275 +S'1935/1936' +p111469 +sg25268 +S'House on the Hill' +p111470 +sg25270 +S'Alfred Stieglitz' +p111471 +sa(dp111472 +g25268 +S'Mary with Child and Two Boys' +p111473 +sg25270 +S'Albrecht Altdorfer' +p111474 +sg25273 +S'engraving' +p111475 +sg25275 +S'1507' +p111476 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a75e.jpg' +p111477 +sg25267 +g27 +sa(dp111478 +g25273 +S'gelatin silver print' +p111479 +sg25267 +g27 +sg25275 +S'1933' +p111480 +sg25268 +S'Back of Little House' +p111481 +sg25270 +S'Alfred Stieglitz' +p111482 +sa(dp111483 +g25273 +S'gelatin silver print' +p111484 +sg25267 +g27 +sg25275 +S'1934' +p111485 +sg25268 +S'Back of Little House' +p111486 +sg25270 +S'Alfred Stieglitz' +p111487 +sa(dp111488 +g25273 +S'gelatin silver print mounted on paperboard' +p111489 +sg25267 +g27 +sg25275 +S'probably 1933' +p111490 +sg25268 +S'Little House, Lake George' +p111491 +sg25270 +S'Alfred Stieglitz' +p111492 +sa(dp111493 +g25273 +S'gelatin silver print' +p111494 +sg25267 +g27 +sg25275 +S'1934' +p111495 +sg25268 +S'The Two Poplars, Lake George' +p111496 +sg25270 +S'Alfred Stieglitz' +p111497 +sa(dp111498 +g25273 +S'gelatin silver print' +p111499 +sg25267 +g27 +sg25275 +S'1934' +p111500 +sg25268 +S'The Two Poplars, Lake George' +p111501 +sg25270 +S'Alfred Stieglitz' +p111502 +sa(dp111503 +g25273 +S'gelatin silver print' +p111504 +sg25267 +g27 +sg25275 +S'1934' +p111505 +sg25268 +S'House, Leaves and Tree' +p111506 +sg25270 +S'Alfred Stieglitz' +p111507 +sa(dp111508 +g25273 +S'gelatin silver print' +p111509 +sg25267 +g27 +sg25275 +S'1934' +p111510 +sg25268 +S'House, Lake George' +p111511 +sg25270 +S'Alfred Stieglitz' +p111512 +sa(dp111513 +g25273 +S'gelatin silver print' +p111514 +sg25267 +g27 +sg25275 +S'1934' +p111515 +sg25268 +S'House and Grape Leaves' +p111516 +sg25270 +S'Alfred Stieglitz' +p111517 +sa(dp111518 +g25273 +S'gelatin silver print' +p111519 +sg25267 +g27 +sg25275 +S'1934' +p111520 +sg25268 +S'House and Grape Leaves' +p111521 +sg25270 +S'Alfred Stieglitz' +p111522 +sa(dp111523 +g25268 +S'House and Grape Leaves' +p111524 +sg25270 +S'Alfred Stieglitz' +p111525 +sg25273 +S'gelatin silver print mounted on paperboard' +p111526 +sg25275 +S'1934' +p111527 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005ad2.jpg' +p111528 +sg25267 +g27 +sa(dp111529 +g25268 +S'Virgin in a Landscape' +p111530 +sg25270 +S'Albrecht Altdorfer' +p111531 +sg25273 +S'engraving' +p111532 +sg25275 +S'c. 1515' +p111533 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a766.jpg' +p111534 +sg25267 +g27 +sa(dp111535 +g25273 +S'gelatin silver print' +p111536 +sg25267 +g27 +sg25275 +S'1936' +p111537 +sg25268 +S'Dorothy Norman' +p111538 +sg25270 +S'Alfred Stieglitz' +p111539 +sa(dp111540 +g25273 +S'gelatin silver print' +p111541 +sg25267 +g27 +sg25275 +S'1930/1931' +p111542 +sg25268 +S'Dorothy Norman' +p111543 +sg25270 +S'Alfred Stieglitz' +p111544 +sa(dp111545 +g25273 +S'gelatin silver print' +p111546 +sg25267 +g27 +sg25275 +S'1930/1931' +p111547 +sg25268 +S'Dorothy Norman' +p111548 +sg25270 +S'Alfred Stieglitz' +p111549 +sa(dp111550 +g25268 +S'Car 2F-77-77' +p111551 +sg25270 +S'Alfred Stieglitz' +p111552 +sg25273 +S'gelatin silver print' +p111553 +sg25275 +S'1935' +p111554 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006297.jpg' +p111555 +sg25267 +g27 +sa(dp111556 +g25273 +S'gelatin silver print' +p111557 +sg25267 +g27 +sg25275 +S'1935' +p111558 +sg25268 +S'Lake George' +p111559 +sg25270 +S'Alfred Stieglitz' +p111560 +sa(dp111561 +g25273 +S'gelatin silver print' +p111562 +sg25267 +g27 +sg25275 +S'1935' +p111563 +sg25268 +S'Lake George' +p111564 +sg25270 +S'Alfred Stieglitz' +p111565 +sa(dp111566 +g25273 +S'gelatin silver print' +p111567 +sg25267 +g27 +sg25275 +S'1937' +p111568 +sg25268 +S'Poplar--Lake George' +p111569 +sg25270 +S'Alfred Stieglitz' +p111570 +sa(dp111571 +g25273 +S'gelatin silver print' +p111572 +sg25267 +g27 +sg25275 +S'1936' +p111573 +sg25268 +S'Barn, Lake George' +p111574 +sg25270 +S'Alfred Stieglitz' +p111575 +sa(dp111576 +g25273 +S'gelatin silver print' +p111577 +sg25267 +g27 +sg25275 +S'1936' +p111578 +sg25268 +S'Barn, Lake George' +p111579 +sg25270 +S'Alfred Stieglitz' +p111580 +sa(dp111581 +g25273 +S'gelatin silver print' +p111582 +sg25267 +g27 +sg25275 +S'1936' +p111583 +sg25268 +S'The Little House, Lake George' +p111584 +sg25270 +S'Alfred Stieglitz' +p111585 +sa(dp111586 +g25268 +S'Saint Jerome in a Courtyard' +p111587 +sg25270 +S'Albrecht Altdorfer' +p111588 +sg25273 +S'engraving' +p111589 +sg25275 +S'c. 1512/1515' +p111590 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a765.jpg' +p111591 +sg25267 +g27 +sa(dp111592 +g25273 +S'gelatin silver print' +p111593 +sg25267 +g27 +sg25275 +S'1936' +p111594 +sg25268 +S'The Little House, Lake George' +p111595 +sg25270 +S'Alfred Stieglitz' +p111596 +sa(dp111597 +g25273 +S'gelatin silver print' +p111598 +sg25267 +g27 +sg25275 +S'1936' +p111599 +sg25268 +S'Dorothy Norman' +p111600 +sg25270 +S'Alfred Stieglitz' +p111601 +sa(dp111602 +g25273 +S'gelatin silver print' +p111603 +sg25267 +g27 +sg25275 +S'1936' +p111604 +sg25268 +S'Dorothy Norman' +p111605 +sg25270 +S'Alfred Stieglitz' +p111606 +sa(dp111607 +g25273 +S'gelatin silver print' +p111608 +sg25267 +g27 +sg25275 +S'1936' +p111609 +sg25268 +S'Dorothy Norman' +p111610 +sg25270 +S'Alfred Stieglitz' +p111611 +sa(dp111612 +g25273 +S'gelatin silver print' +p111613 +sg25267 +g27 +sg25275 +S'1936' +p111614 +sg25268 +S'Dorothy Norman' +p111615 +sg25270 +S'Alfred Stieglitz' +p111616 +sa(dp111617 +g25273 +S'gelatin silver print' +p111618 +sg25267 +g27 +sg25275 +S'1936' +p111619 +sg25268 +S'Dorothy Norman' +p111620 +sg25270 +S'Alfred Stieglitz' +p111621 +sa(dp111622 +g25273 +S'gelatin silver print' +p111623 +sg25267 +g27 +sg25275 +S'1936' +p111624 +sg25268 +S'Margaret Prosser' +p111625 +sg25270 +S'Alfred Stieglitz' +p111626 +sa(dp111627 +g25273 +S'gelatin silver print' +p111628 +sg25267 +g27 +sg25275 +S'1937' +p111629 +sg25268 +S'Dorothy Norman' +p111630 +sg25270 +S'Alfred Stieglitz' +p111631 +sa(dp111632 +g25273 +S'gelatin silver print' +p111633 +sg25267 +g27 +sg25275 +S'1937' +p111634 +sg25268 +S'Dorothy Norman' +p111635 +sg25270 +S'Alfred Stieglitz' +p111636 +sa(dp111637 +g25273 +S'gelatin silver print' +p111638 +sg25267 +g27 +sg25275 +S'1937' +p111639 +sg25268 +S'Dorothy Norman' +p111640 +sg25270 +S'Alfred Stieglitz' +p111641 +sa(dp111642 +g25268 +S'The Large Crucifixion' +p111643 +sg25270 +S'Albrecht Altdorfer' +p111644 +sg25273 +S'engraving' +p111645 +sg25275 +S'c. 1515/1517' +p111646 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a767.jpg' +p111647 +sg25267 +g27 +sa(dp111648 +g25273 +S'gelatin silver print' +p111649 +sg25267 +g27 +sg25275 +S'1937' +p111650 +sg25268 +S'Dorothy Norman' +p111651 +sg25270 +S'Alfred Stieglitz' +p111652 +sa(dp111653 +g25273 +S'gelatin silver print' +p111654 +sg25267 +g27 +sg25275 +S'1937' +p111655 +sg25268 +S'Dorothy Norman' +p111656 +sg25270 +S'Alfred Stieglitz' +p111657 +sa(dp111658 +g25273 +S'gelatin silver print' +p111659 +sg25267 +g27 +sg25275 +S'1937' +p111660 +sg25268 +S'Dorothy Norman' +p111661 +sg25270 +S'Alfred Stieglitz' +p111662 +sa(dp111663 +g25273 +S'gelatin silver print' +p111664 +sg25267 +g27 +sg25275 +S'1937' +p111665 +sg25268 +S'Poplar--Lake George' +p111666 +sg25270 +S'Alfred Stieglitz' +p111667 +sa(dp111668 +g25273 +S'gelatin silver print' +p111669 +sg25267 +g27 +sg25275 +S'possibly 1922' +p111670 +sg25268 +S'Lake George' +p111671 +sg25270 +S'Alfred Stieglitz' +p111672 +sa(dp111673 +g25273 +S'gelatin silver print mounted on paperboard' +p111674 +sg25267 +g27 +sg25275 +S'1922/1924' +p111675 +sg25268 +S'Lake George' +p111676 +sg25270 +S'Alfred Stieglitz' +p111677 +sa(dp111678 +g25273 +S'gelatin silver print' +p111679 +sg25267 +g27 +sg25275 +S'1922' +p111680 +sg25268 +S'Lake George' +p111681 +sg25270 +S'Alfred Stieglitz' +p111682 +sa(dp111683 +g25273 +S'gelatin silver print' +p111684 +sg25267 +g27 +sg25275 +S'1922' +p111685 +sg25268 +S'Lake George' +p111686 +sg25270 +S'Alfred Stieglitz' +p111687 +sa(dp111688 +g25273 +S'gelatin silver print' +p111689 +sg25267 +g27 +sg25275 +S'1922/1927' +p111690 +sg25268 +S'Lake George' +p111691 +sg25270 +S'Alfred Stieglitz' +p111692 +sa(dp111693 +g25273 +S'gelatin silver print' +p111694 +sg25267 +g27 +sg25275 +S'probably 1934' +p111695 +sg25268 +S'Margaret Prosser' +p111696 +sg25270 +S'Alfred Stieglitz' +p111697 +sa(dp111698 +g25268 +S'Little Standard Bearer' +p111699 +sg25270 +S'Albrecht Altdorfer' +p111700 +sg25273 +S'engraving' +p111701 +sg25275 +S'c. 1516/1518' +p111702 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a75d.jpg' +p111703 +sg25267 +g27 +sa(dp111704 +g25273 +S'gelatin silver print' +p111705 +sg25267 +g27 +sg25275 +S'1936' +p111706 +sg25268 +S'Margaret Prosser' +p111707 +sg25270 +S'Alfred Stieglitz' +p111708 +sa(dp111709 +g25273 +S'gelatin silver print' +p111710 +sg25267 +g27 +sg25275 +S'1925' +p111711 +sg25268 +S'Paul Rosenfeld' +p111712 +sg25270 +S'Alfred Stieglitz' +p111713 +sa(dp111714 +g25273 +S'gelatin silver print' +p111715 +sg25267 +g27 +sg25275 +S'1925' +p111716 +sg25268 +S'Paul Rosenfeld' +p111717 +sg25270 +S'Alfred Stieglitz' +p111718 +sa(dp111719 +g25273 +S'gelatin silver print' +p111720 +sg25267 +g27 +sg25275 +S'probably 1926' +p111721 +sg25268 +S'Lake George' +p111722 +sg25270 +S'Alfred Stieglitz' +p111723 +sa(dp111724 +g25273 +S'gelatin silver print' +p111725 +sg25267 +g27 +sg25275 +S'probably 1930' +p111726 +sg25268 +S'Back of Little House' +p111727 +sg25270 +S'Alfred Stieglitz' +p111728 +sa(dp111729 +g25273 +S'gelatin silver print' +p111730 +sg25267 +g27 +sg25275 +S'1932' +p111731 +sg25268 +S'Lake George from the Hill' +p111732 +sg25270 +S'Alfred Stieglitz' +p111733 +sa(dp111734 +g25273 +S'gelatin silver print' +p111735 +sg25267 +g27 +sg25275 +S'1937' +p111736 +sg25268 +S'Poplar--Lake George' +p111737 +sg25270 +S'Alfred Stieglitz' +p111738 +sa(dp111739 +g25273 +S'gelatin silver print' +p111740 +sg25267 +g27 +sg25275 +S'1937' +p111741 +sg25268 +S'Poplar--Lake George' +p111742 +sg25270 +S'Alfred Stieglitz' +p111743 +sa(dp111744 +g25273 +S'gelatin silver print' +p111745 +sg25267 +g27 +sg25275 +S'probably 1930' +p111746 +sg25268 +S'Donald Davidson' +p111747 +sg25270 +S'Alfred Stieglitz' +p111748 +sa(dp111749 +g25273 +S'gelatin silver print' +p111750 +sg25267 +g27 +sg25275 +S'probably 1930' +p111751 +sg25268 +S'Donald Davidson' +p111752 +sg25270 +S'Alfred Stieglitz' +p111753 +sa(dp111754 +g25268 +S'Venus and Cupids' +p111755 +sg25270 +S'Albrecht Altdorfer' +p111756 +sg25273 +S'engraving' +p111757 +sg25275 +S'c. 1512/1515' +p111758 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a757.jpg' +p111759 +sg25267 +g27 +sa(dp111760 +g25273 +S'gelatin silver print' +p111761 +sg25267 +g27 +sg25275 +S'probably 1930' +p111762 +sg25268 +S'Donald Davidson' +p111763 +sg25270 +S'Alfred Stieglitz' +p111764 +sa(dp111765 +g25273 +S'gelatin silver print' +p111766 +sg25267 +g27 +sg25275 +S'1936' +p111767 +sg25268 +S'Richard Menshausen' +p111768 +sg25270 +S'Alfred Stieglitz' +p111769 +sa(dp111770 +g25273 +S'gelatin silver print' +p111771 +sg25267 +g27 +sg25275 +S'1936' +p111772 +sg25268 +S'Richard Menshausen' +p111773 +sg25270 +S'Alfred Stieglitz' +p111774 +sa(dp111775 +g25273 +S'gelatin silver print' +p111776 +sg25267 +g27 +sg25275 +S'probably 1924' +p111777 +sg25268 +S'Rebecca Strand' +p111778 +sg25270 +S'Alfred Stieglitz' +p111779 +sa(dp111780 +g25273 +S'gelatin silver print' +p111781 +sg25267 +g27 +sg25275 +S'possibly 1922' +p111782 +sg25268 +S'Lake George' +p111783 +sg25270 +S'Alfred Stieglitz' +p111784 +sa(dp111785 +g25273 +S'gelatin silver print' +p111786 +sg25267 +g27 +sg25275 +S'1934' +p111787 +sg25268 +S'Door to Shanty, Lake George' +p111788 +sg25270 +S'Alfred Stieglitz' +p111789 +sa(dp111790 +g25273 +S'gelatin silver print' +p111791 +sg25267 +g27 +sg25275 +S'1922' +p111792 +sg25268 +S'Peggy Davidson' +p111793 +sg25270 +S'Alfred Stieglitz' +p111794 +sa(dp111795 +g25273 +S'gelatin silver print mounted on paperboard' +p111796 +sg25267 +g27 +sg25275 +S'1922/1927' +p111797 +sg25268 +S'Lake George' +p111798 +sg25270 +S'Alfred Stieglitz' +p111799 +sa(dp111800 +g25273 +S'gelatin silver print' +p111801 +sg25267 +g27 +sg25275 +S'1922/1924' +p111802 +sg25268 +S'Lake George' +p111803 +sg25270 +S'Alfred Stieglitz' +p111804 +sa(dp111805 +g25273 +S'gelatin silver print mounted on paperboard' +p111806 +sg25267 +g27 +sg25275 +S'1922' +p111807 +sg25268 +S'Music--A Sequence of Ten Cloud Photographs, No. I' +p111808 +sg25270 +S'Alfred Stieglitz' +p111809 +sa(dp111810 +g25268 +S'Judgment of Paris' +p111811 +sg25270 +S'Albrecht Altdorfer' +p111812 +sg25273 +S'engraving' +p111813 +sg25275 +S'c. 1515/1518' +p111814 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a75a.jpg' +p111815 +sg25267 +g27 +sa(dp111816 +g25273 +S'gelatin silver print mounted on paperboard' +p111817 +sg25267 +g27 +sg25275 +S'1922' +p111818 +sg25268 +S'Music--A Sequence of Ten Cloud Photographs, No. II' +p111819 +sg25270 +S'Alfred Stieglitz' +p111820 +sa(dp111821 +g25273 +S'gelatin silver print mounted on paperboard' +p111822 +sg25267 +g27 +sg25275 +S'1922' +p111823 +sg25268 +S'Music--A Sequence of Ten Cloud Photographs, No. II' +p111824 +sg25270 +S'Alfred Stieglitz' +p111825 +sa(dp111826 +g25273 +S'palladium print' +p111827 +sg25267 +g27 +sg25275 +S'1922' +p111828 +sg25268 +S'Music--A Sequence of Ten Cloud Photographs, No. III' +p111829 +sg25270 +S'Alfred Stieglitz' +p111830 +sa(dp111831 +g25273 +S'gelatin silver print mounted on paperboard' +p111832 +sg25267 +g27 +sg25275 +S'1922' +p111833 +sg25268 +S'Music--A Sequence of Ten Cloud Photographs, No. IV' +p111834 +sg25270 +S'Alfred Stieglitz' +p111835 +sa(dp111836 +g25268 +S'Music--A Sequence of Ten Cloud Photographs, No. V' +p111837 +sg25270 +S'Alfred Stieglitz' +p111838 +sg25273 +S'gelatin silver print mounted on paperboard' +p111839 +sg25275 +S'1922' +p111840 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f8b.jpg' +p111841 +sg25267 +g27 +sa(dp111842 +g25268 +S'Music--A Sequence of Ten Cloud Photographs, No. VI' +p111843 +sg25270 +S'Alfred Stieglitz' +p111844 +sg25273 +S'gelatin silver print' +p111845 +sg25275 +S'1922' +p111846 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f90.jpg' +p111847 +sg25267 +g27 +sa(dp111848 +g25273 +S'gelatin silver print' +p111849 +sg25267 +g27 +sg25275 +S'1922' +p111850 +sg25268 +S'Music--A Sequence of Ten Cloud Photographs, No. VII' +p111851 +sg25270 +S'Alfred Stieglitz' +p111852 +sa(dp111853 +g25273 +S'gelatin silver print mounted on paperboard' +p111854 +sg25267 +g27 +sg25275 +S'1922' +p111855 +sg25268 +S'Music--A Sequence of Ten Cloud Photographs, No. VIII' +p111856 +sg25270 +S'Alfred Stieglitz' +p111857 +sa(dp111858 +g25273 +S'gelatin silver print' +p111859 +sg25267 +g27 +sg25275 +S'1922' +p111860 +sg25268 +S'Music--A Sequence of Ten Cloud Photographs, No. IX' +p111861 +sg25270 +S'Alfred Stieglitz' +p111862 +sa(dp111863 +g25273 +S'gelatin silver print' +p111864 +sg25267 +g27 +sg25275 +S'1922' +p111865 +sg25268 +S'Music--A Sequence of Ten Cloud Photographs, No. X' +p111866 +sg25270 +S'Alfred Stieglitz' +p111867 +sa(dp111868 +g25268 +S'The "Beautiful Virgin" of Ratisbon in a Landscape' +p111869 +sg25270 +S'Albrecht Altdorfer' +p111870 +sg25273 +S'engraving' +p111871 +sg25275 +S'c. 1519/1520' +p111872 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a76d.jpg' +p111873 +sg25267 +g27 +sa(dp111874 +g25273 +S'gelatin silver print mounted on paperboard' +p111875 +sg25267 +g27 +sg25275 +S'1923' +p111876 +sg25268 +S'Songs of the Sky' +p111877 +sg25270 +S'Alfred Stieglitz' +p111878 +sa(dp111879 +g25273 +S'gelatin silver print mounted on paperboard' +p111880 +sg25267 +g27 +sg25275 +S'1923' +p111881 +sg25268 +S'Songs of the Sky' +p111882 +sg25270 +S'Alfred Stieglitz' +p111883 +sa(dp111884 +g25273 +S'gelatin silver print mounted on paperboard' +p111885 +sg25267 +g27 +sg25275 +S'1923' +p111886 +sg25268 +S'Songs of the Sky Q4' +p111887 +sg25270 +S'Alfred Stieglitz' +p111888 +sa(dp111889 +g25273 +S'gelatin silver print mounted on paperboard' +p111890 +sg25267 +g27 +sg25275 +S'1923' +p111891 +sg25268 +S'Songs of the Sky Q5' +p111892 +sg25270 +S'Alfred Stieglitz' +p111893 +sa(dp111894 +g25273 +S'gelatin silver print mounted on paperboard' +p111895 +sg25267 +g27 +sg25275 +S'1923' +p111896 +sg25268 +S'Songs of the Sky' +p111897 +sg25270 +S'Alfred Stieglitz' +p111898 +sa(dp111899 +g25273 +S'gelatin silver print mounted on paperboard' +p111900 +sg25267 +g27 +sg25275 +S'1923' +p111901 +sg25268 +S'Portrait of Georgia, No. 3' +p111902 +sg25270 +S'Alfred Stieglitz' +p111903 +sa(dp111904 +g25268 +S'Spiritual America' +p111905 +sg25270 +S'Alfred Stieglitz' +p111906 +sg25273 +S'gelatin silver print mounted on paperboard' +p111907 +sg25275 +S'1923' +p111908 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006298.jpg' +p111909 +sg25267 +g27 +sa(dp111910 +g25273 +S'gelatin silver print mounted on paperboard' +p111911 +sg25267 +g27 +sg25275 +S'1923' +p111912 +sg25268 +S'Songs of the Sky A2' +p111913 +sg25270 +S'Alfred Stieglitz' +p111914 +sa(dp111915 +g25273 +S'gelatin silver print mounted on paperboard' +p111916 +sg25267 +g27 +sg25275 +S'1923' +p111917 +sg25268 +S'Songs of the Sky A3' +p111918 +sg25270 +S'Alfred Stieglitz' +p111919 +sa(dp111920 +g25273 +S'gelatin silver print mounted on paperboard' +p111921 +sg25267 +g27 +sg25275 +S'1923' +p111922 +sg25268 +S'Songs of the Sky A4' +p111923 +sg25270 +S'Alfred Stieglitz' +p111924 +sa(dp111925 +g25268 +S'Portrait of a Young Man in Red' +p111926 +sg25270 +S'Giovanni Bellini' +p111927 +sg25273 +S'oil and tempera on panel' +p111928 +sg25275 +S'c. 1480' +p111929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005c7.jpg' +p111930 +sg25267 +S"Beginning in the mid-1300s, an official portrait of each new doge, the \n elected head of the Venetian republic, was hung in the room where the \n city's governing council met. Paintings commissioned by Venice's religious \n confraternities sometimes also included likenesses of the society's leading \n members. Single portraits of private individuals, however, were virtually \n unknown until the 1470s. Venetians credited their new popularity to \n Bellini. His portraits spawned such demand for likenesses of family members \n that his contemporaries reported it common to see the faces of four \n generations in a single household.\n The individualized features of this young man are carefully defined but \n do not reveal much about his personality. In fact, all of Bellini's \n portraits of young men share a reserved dignity but deny a more penetrating look into the sitter's character.\n Venetian men of both the patrician and the citizen classes wore a long, \n simple black robe, a small black hat, and a stole over the shoulder or \n sometimes, as here, over the head. Red gowns worn by senators were also \n prescribed for certain ceremonial occasions.\n " +p111931 +sa(dp111932 +g25268 +S'Giovanni II Bentivoglio' +p111933 +sg25270 +S"Ercole de' Roberti" +p111934 +sg25273 +S'tempera on panel' +p111935 +sg25275 +S'c. 1474/1477' +p111936 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005eb.jpg' +p111937 +sg25267 +g27 +sa(dp111938 +g25268 +S'Saint Jerome Reading' +p111939 +sg25270 +S'Albrecht Altdorfer' +p111940 +sg25273 +S'engraving' +p111941 +sg25275 +S'c. 1515/1520' +p111942 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a768.jpg' +p111943 +sg25267 +g27 +sa(dp111944 +g25273 +S'gelatin silver print mounted on paperboard' +p111945 +sg25267 +g27 +sg25275 +S'1923' +p111946 +sg25268 +S'Songs of the Sky A5' +p111947 +sg25270 +S'Alfred Stieglitz' +p111948 +sa(dp111949 +g25273 +S'gelatin silver print mounted on paperboard' +p111950 +sg25267 +g27 +sg25275 +S'1923' +p111951 +sg25268 +S'Songs of the Sky A6' +p111952 +sg25270 +S'Alfred Stieglitz' +p111953 +sa(dp111954 +g25273 +S'gelatin silver print mounted on paperboard' +p111955 +sg25267 +g27 +sg25275 +S'1923' +p111956 +sg25268 +S'Songs of the Sky A7' +p111957 +sg25270 +S'Alfred Stieglitz' +p111958 +sa(dp111959 +g25273 +S'gelatin silver print mounted on paperboard' +p111960 +sg25267 +g27 +sg25275 +S'1923' +p111961 +sg25268 +S'Songs of the Sky A8' +p111962 +sg25270 +S'Alfred Stieglitz' +p111963 +sa(dp111964 +g25273 +S'gelatin silver print mounted on paperboard' +p111965 +sg25267 +g27 +sg25275 +S'1923' +p111966 +sg25268 +S'Songs of the Sky A9' +p111967 +sg25270 +S'Alfred Stieglitz' +p111968 +sa(dp111969 +g25273 +S'gelatin silver print mounted on paperboard' +p111970 +sg25267 +g27 +sg25275 +S'1923' +p111971 +sg25268 +S'Songs of the Sky B1' +p111972 +sg25270 +S'Alfred Stieglitz' +p111973 +sa(dp111974 +g25273 +S'gelatin silver print mounted on paperboard' +p111975 +sg25267 +g27 +sg25275 +S'1923' +p111976 +sg25268 +S'Songs of the Sky B2' +p111977 +sg25270 +S'Alfred Stieglitz' +p111978 +sa(dp111979 +g25273 +S'gelatin silver print mounted on paperboard' +p111980 +sg25267 +g27 +sg25275 +S'1923' +p111981 +sg25268 +S'Songs of the Sky B3' +p111982 +sg25270 +S'Alfred Stieglitz' +p111983 +sa(dp111984 +g25273 +S'gelatin silver print mounted on paperboard' +p111985 +sg25267 +g27 +sg25275 +S'1923' +p111986 +sg25268 +S'Songs of the Sky B4' +p111987 +sg25270 +S'Alfred Stieglitz' +p111988 +sa(dp111989 +g25273 +S'gelatin silver print mounted on paperboard' +p111990 +sg25267 +g27 +sg25275 +S'1923' +p111991 +sg25268 +S'Songs of the Sky B5' +p111992 +sg25270 +S'Alfred Stieglitz' +p111993 +sa(dp111994 +g25268 +S'The Beautiful Virgin of Regensburg on an Altar' +p111995 +sg25270 +S'Albrecht Altdorfer' +p111996 +sg25273 +S'engraving' +p111997 +sg25275 +S'c. 1519/1520' +p111998 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a76a.jpg' +p111999 +sg25267 +g27 +sa(dp112000 +g25273 +S'gelatin silver print mounted on paperboard' +p112001 +sg25267 +g27 +sg25275 +S'1923' +p112002 +sg25268 +S'Songs of the Sky B6' +p112003 +sg25270 +S'Alfred Stieglitz' +p112004 +sa(dp112005 +g25273 +S'gelatin silver print mounted on paperboard' +p112006 +sg25267 +g27 +sg25275 +S'1923' +p112007 +sg25268 +S'Songs of the Sky B7' +p112008 +sg25270 +S'Alfred Stieglitz' +p112009 +sa(dp112010 +g25273 +S'gelatin silver print mounted on paperboard' +p112011 +sg25267 +g27 +sg25275 +S'1929' +p112012 +sg25268 +S'Equivalent, Set B, No. 1' +p112013 +sg25270 +S'Alfred Stieglitz' +p112014 +sa(dp112015 +g25273 +S'gelatin silver print mounted on paperboard' +p112016 +sg25267 +g27 +sg25275 +S'1929' +p112017 +sg25268 +S'Equivalent, Set B, No. 2' +p112018 +sg25270 +S'Alfred Stieglitz' +p112019 +sa(dp112020 +g25273 +S'gelatin silver print mounted on paperboard' +p112021 +sg25267 +g27 +sg25275 +S'1923' +p112022 +sg25268 +S'Portrait--K. N. R., No. 1' +p112023 +sg25270 +S'Alfred Stieglitz' +p112024 +sa(dp112025 +g25273 +S'gelatin silver print mounted on paperboard' +p112026 +sg25267 +g27 +sg25275 +S'1923' +p112027 +sg25268 +S'Portrait--K. N. R., No. 2' +p112028 +sg25270 +S'Alfred Stieglitz' +p112029 +sa(dp112030 +g25273 +S'gelatin silver print mounted on paperboard' +p112031 +sg25267 +g27 +sg25275 +S'1923' +p112032 +sg25268 +S'Portrait--K. N. R., No. 3' +p112033 +sg25270 +S'Alfred Stieglitz' +p112034 +sa(dp112035 +g25273 +S'gelatin silver print mounted on paperboard' +p112036 +sg25267 +g27 +sg25275 +S'1923' +p112037 +sg25268 +S'Portrait--K. N. R., No. 4' +p112038 +sg25270 +S'Alfred Stieglitz' +p112039 +sa(dp112040 +g25273 +S'gelatin silver print mounted on paperboard' +p112041 +sg25267 +g27 +sg25275 +S'1923' +p112042 +sg25268 +S'Portrait--K.N.R., No. 5' +p112043 +sg25270 +S'Alfred Stieglitz' +p112044 +sa(dp112045 +g25273 +S'gelatin silver print mounted on paperboard' +p112046 +sg25267 +g27 +sg25275 +S'1923' +p112047 +sg25268 +S'Portrait--K. N. R., No. 6' +p112048 +sg25270 +S'Alfred Stieglitz' +p112049 +sa(dp112050 +g25268 +S'Christ Expelling the Money Changers' +p112051 +sg25270 +S'Albrecht Altdorfer' +p112052 +sg25273 +S'engraving' +p112053 +sg25275 +S'c. 1519' +p112054 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a76b.jpg' +p112055 +sg25267 +g27 +sa(dp112056 +g25273 +S'gelatin silver print mounted on paperboard' +p112057 +sg25267 +g27 +sg25275 +S'1923' +p112058 +sg25268 +S'Songs of the Sky D1' +p112059 +sg25270 +S'Alfred Stieglitz' +p112060 +sa(dp112061 +g25273 +S'gelatin silver print mounted on paperboard' +p112062 +sg25267 +g27 +sg25275 +S'probably 1923' +p112063 +sg25268 +S'Songs of the Sky D2' +p112064 +sg25270 +S'Alfred Stieglitz' +p112065 +sa(dp112066 +g25273 +S'gelatin silver print mounted on paperboard' +p112067 +sg25267 +g27 +sg25275 +S'1923' +p112068 +sg25268 +S'Songs of the Sky D3' +p112069 +sg25270 +S'Alfred Stieglitz' +p112070 +sa(dp112071 +g25273 +S'gelatin silver print mounted on paperboard' +p112072 +sg25267 +g27 +sg25275 +S'1923' +p112073 +sg25268 +S'Songs of the Sky D4' +p112074 +sg25270 +S'Alfred Stieglitz' +p112075 +sa(dp112076 +g25273 +S'gelatin silver print mounted on paperboard' +p112077 +sg25267 +g27 +sg25275 +S'1923' +p112078 +sg25268 +S'Songs of the Sky D5' +p112079 +sg25270 +S'Alfred Stieglitz' +p112080 +sa(dp112081 +g25273 +S'gelatin silver print mounted on paperboard' +p112082 +sg25267 +g27 +sg25275 +S'1923' +p112083 +sg25268 +S'Songs of the Sky D6' +p112084 +sg25270 +S'Alfred Stieglitz' +p112085 +sa(dp112086 +g25273 +S'gelatin silver print mounted on paperboard' +p112087 +sg25267 +g27 +sg25275 +S'1923' +p112088 +sg25268 +S'Songs of the Sky D7' +p112089 +sg25270 +S'Alfred Stieglitz' +p112090 +sa(dp112091 +g25268 +S'Songs of the Sky D8' +p112092 +sg25270 +S'Alfred Stieglitz' +p112093 +sg25273 +S'gelatin silver print mounted on paperboard' +p112094 +sg25275 +S'1923' +p112095 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006273.jpg' +p112096 +sg25267 +g27 +sa(dp112097 +g25273 +S'gelatin silver print mounted on paperboard' +p112098 +sg25267 +g27 +sg25275 +S'1923' +p112099 +sg25268 +S'Songs of the Sky D9' +p112100 +sg25270 +S'Alfred Stieglitz' +p112101 +sa(dp112102 +g25273 +S'gelatin silver print mounted on paperboard' +p112103 +sg25267 +g27 +sg25275 +S'1923' +p112104 +sg25268 +S'Songs of the Sky D10' +p112105 +sg25270 +S'Alfred Stieglitz' +p112106 +sa(dp112107 +g25268 +S'The Little Crucifixion' +p112108 +sg25270 +S'Albrecht Altdorfer' +p112109 +sg25273 +S'engraving' +p112110 +sg25275 +S'c. 1512/1518' +p112111 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a759.jpg' +p112112 +sg25267 +g27 +sa(dp112113 +g25273 +S'gelatin silver print mounted on paperboard' +p112114 +sg25267 +g27 +sg25275 +S'probably 1923' +p112115 +sg25268 +S'Songs of the Sky DD1' +p112116 +sg25270 +S'Alfred Stieglitz' +p112117 +sa(dp112118 +g25273 +S'gelatin silver print mounted on paperboard' +p112119 +sg25267 +g27 +sg25275 +S'probably 1923' +p112120 +sg25268 +S'Songs of the Sky DD2' +p112121 +sg25270 +S'Alfred Stieglitz' +p112122 +sa(dp112123 +g25273 +S'gelatin silver print mounted on paperboard' +p112124 +sg25267 +g27 +sg25275 +S'probably 1923' +p112125 +sg25268 +S'Songs of the Sky K1 or H1' +p112126 +sg25270 +S'Alfred Stieglitz' +p112127 +sa(dp112128 +g25273 +S'gelatin silver print mounted on paperboard' +p112129 +sg25267 +g27 +sg25275 +S'probably 1923' +p112130 +sg25268 +S'Songs of the Sky K2 or H2' +p112131 +sg25270 +S'Alfred Stieglitz' +p112132 +sa(dp112133 +g25273 +S'gelatin silver print mounted on paperboard' +p112134 +sg25267 +g27 +sg25275 +S'probably 1923' +p112135 +sg25268 +S'Songs of the Sky K3 or H3' +p112136 +sg25270 +S'Alfred Stieglitz' +p112137 +sa(dp112138 +g25273 +S'gelatin silver print mounted on paperboard' +p112139 +sg25267 +g27 +sg25275 +S'1923' +p112140 +sg25268 +S'Songs of the Sky P1' +p112141 +sg25270 +S'Alfred Stieglitz' +p112142 +sa(dp112143 +g25273 +S'gelatin silver print mounted on paperboard' +p112144 +sg25267 +g27 +sg25275 +S'1923' +p112145 +sg25268 +S'Songs of the Sky P2' +p112146 +sg25270 +S'Alfred Stieglitz' +p112147 +sa(dp112148 +g25273 +S'gelatin silver print mounted on paperboard' +p112149 +sg25267 +g27 +sg25275 +S'1923' +p112150 +sg25268 +S'Songs of the Sky P3' +p112151 +sg25270 +S'Alfred Stieglitz' +p112152 +sa(dp112153 +g25273 +S'gelatin silver print mounted on paperboard' +p112154 +sg25267 +g27 +sg25275 +S'1923' +p112155 +sg25268 +S'Songs of the Sky P4' +p112156 +sg25270 +S'Alfred Stieglitz' +p112157 +sa(dp112158 +g25273 +S'gelatin silver print mounted on paperboard' +p112159 +sg25267 +g27 +sg25275 +S'1923' +p112160 +sg25268 +S'Songs of the Sky P5' +p112161 +sg25270 +S'Alfred Stieglitz' +p112162 +sa(dp112163 +g25268 +S'Saint George' +p112164 +sg25270 +S'Albrecht Altdorfer' +p112165 +sg25273 +S'engraving' +p112166 +sg25275 +S'c. 1515/1518' +p112167 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a75c.jpg' +p112168 +sg25267 +g27 +sa(dp112169 +g25273 +S'gelatin silver print mounted on paperboard' +p112170 +sg25267 +g27 +sg25275 +S'1923' +p112171 +sg25268 +S'Portrait of Georgia, No. 2' +p112172 +sg25270 +S'Alfred Stieglitz' +p112173 +sa(dp112174 +g25273 +S'gelatin silver print mounted on paperboard' +p112175 +sg25267 +g27 +sg25275 +S'1923' +p112176 +sg25268 +S'Songs of the Sky' +p112177 +sg25270 +S'Alfred Stieglitz' +p112178 +sa(dp112179 +g25273 +S'gelatin silver print mounted on paperboard' +p112180 +sg25267 +g27 +sg25275 +S'1923' +p112181 +sg25268 +S'Songs of the Sky' +p112182 +sg25270 +S'Alfred Stieglitz' +p112183 +sa(dp112184 +g25273 +S'gelatin silver print mounted on paperboard' +p112185 +sg25267 +g27 +sg25275 +S'probably 1923' +p112186 +sg25268 +S'Songs of the Sky and Trees' +p112187 +sg25270 +S'Alfred Stieglitz' +p112188 +sa(dp112189 +g25273 +S'gelatin silver print mounted on paperboard' +p112190 +sg25267 +g27 +sg25275 +S'1924' +p112191 +sg25268 +S'Songs of the Sky' +p112192 +sg25270 +S'Alfred Stieglitz' +p112193 +sa(dp112194 +g25273 +S'gelatin silver print mounted on paperboard' +p112195 +sg25267 +g27 +sg25275 +S'1924' +p112196 +sg25268 +S'Songs of the Sky' +p112197 +sg25270 +S'Alfred Stieglitz' +p112198 +sa(dp112199 +g25273 +S'gelatin silver print mounted on paperboard' +p112200 +sg25267 +g27 +sg25275 +S'1923/1929' +p112201 +sg25268 +S'Songs of the Sky, or Equivalent' +p112202 +sg25270 +S'Alfred Stieglitz' +p112203 +sa(dp112204 +g25273 +S'gelatin silver print mounted on paperboard' +p112205 +sg25267 +g27 +sg25275 +S'1924' +p112206 +sg25268 +S'Songs of the Sky' +p112207 +sg25270 +S'Alfred Stieglitz' +p112208 +sa(dp112209 +g25273 +S'gelatin silver print mounted on paperboard' +p112210 +sg25267 +g27 +sg25275 +S'1924' +p112211 +sg25268 +S'Songs of the Sky' +p112212 +sg25270 +S'Alfred Stieglitz' +p112213 +sa(dp112214 +g25273 +S'gelatin silver print mounted on paperboard' +p112215 +sg25267 +g27 +sg25275 +S'1924' +p112216 +sg25268 +S'Songs of the Sky' +p112217 +sg25270 +S'Alfred Stieglitz' +p112218 +sa(dp112219 +g25268 +S'The Rest on the Flight into Egypt' +p112220 +sg25270 +S'Albrecht Altdorfer' +p112221 +sg25273 +S'engraving' +p112222 +sg25275 +S'c. 1515/1519' +p112223 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00010/a000105f.jpg' +p112224 +sg25267 +g27 +sa(dp112225 +g25273 +S'gelatin silver print mounted on paperboard' +p112226 +sg25267 +g27 +sg25275 +S'1922' +p112227 +sg25268 +S'Lake George' +p112228 +sg25270 +S'Alfred Stieglitz' +p112229 +sa(dp112230 +g25273 +S'gelatin silver print mounted on paperboard' +p112231 +sg25267 +g27 +sg25275 +S'1924' +p112232 +sg25268 +S'Songs of the Sky' +p112233 +sg25270 +S'Alfred Stieglitz' +p112234 +sa(dp112235 +g25273 +S'gelatin silver print mounted on paperboard' +p112236 +sg25267 +g27 +sg25275 +S'1924' +p112237 +sg25268 +S'Songs of the Sky' +p112238 +sg25270 +S'Alfred Stieglitz' +p112239 +sa(dp112240 +g25273 +S'gelatin silver print mounted on paperboard' +p112241 +sg25267 +g27 +sg25275 +S'1924' +p112242 +sg25268 +S'Songs of the Sky' +p112243 +sg25270 +S'Alfred Stieglitz' +p112244 +sa(dp112245 +g25273 +S'gelatin silver print mounted on paperboard' +p112246 +sg25267 +g27 +sg25275 +S'1924' +p112247 +sg25268 +S'Songs of the Sky' +p112248 +sg25270 +S'Alfred Stieglitz' +p112249 +sa(dp112250 +g25273 +S'gelatin silver print mounted on paperboard' +p112251 +sg25267 +g27 +sg25275 +S'1924' +p112252 +sg25268 +S'Songs of the Sky' +p112253 +sg25270 +S'Alfred Stieglitz' +p112254 +sa(dp112255 +g25273 +S'gelatin silver print mounted on paperboard' +p112256 +sg25267 +g27 +sg25275 +S'1924' +p112257 +sg25268 +S'Songs of the Sky' +p112258 +sg25270 +S'Alfred Stieglitz' +p112259 +sa(dp112260 +g25273 +S'gelatin silver print mounted on paperboard' +p112261 +sg25267 +g27 +sg25275 +S'1925' +p112262 +sg25268 +S'Equivalent' +p112263 +sg25270 +S'Alfred Stieglitz' +p112264 +sa(dp112265 +g25273 +S'gelatin silver print mounted on paperboard' +p112266 +sg25267 +g27 +sg25275 +S'1923' +p112267 +sg25268 +S'Songs of the Sky and Trees' +p112268 +sg25270 +S'Alfred Stieglitz' +p112269 +sa(dp112270 +g25273 +S'gelatin silver print mounted on paperboard' +p112271 +sg25267 +g27 +sg25275 +S'1924-1925' +p112272 +sg25268 +S'Songs of the Sky, or Equivalent' +p112273 +sg25270 +S'Alfred Stieglitz' +p112274 +sa(dp112275 +g25268 +S'Martin Luther' +p112276 +sg25270 +S'Albrecht Altdorfer' +p112277 +sg25273 +S'engraving' +p112278 +sg25275 +S'c. 1525' +p112279 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7a7.jpg' +p112280 +sg25267 +g27 +sa(dp112281 +g25273 +S'gelatin silver print mounted on paperboard' +p112282 +sg25267 +g27 +sg25275 +S'1924' +p112283 +sg25268 +S'Songs of the Sky' +p112284 +sg25270 +S'Alfred Stieglitz' +p112285 +sa(dp112286 +g25273 +S'gelatin silver print mounted on paperboard' +p112287 +sg25267 +g27 +sg25275 +S'1924' +p112288 +sg25268 +S'Songs of the Sky' +p112289 +sg25270 +S'Alfred Stieglitz' +p112290 +sa(dp112291 +g25273 +S'gelatin silver print mounted on paperboard' +p112292 +sg25267 +g27 +sg25275 +S'1925' +p112293 +sg25268 +S'Equivalent' +p112294 +sg25270 +S'Alfred Stieglitz' +p112295 +sa(dp112296 +g25273 +S'gelatin silver print mounted on paperboard' +p112297 +sg25267 +g27 +sg25275 +S'1925' +p112298 +sg25268 +S'Equivalent' +p112299 +sg25270 +S'Alfred Stieglitz' +p112300 +sa(dp112301 +g25273 +S'gelatin silver print mounted on paperboard' +p112302 +sg25267 +g27 +sg25275 +S'1924' +p112303 +sg25268 +S'Songs of the Sky, or Equivalent' +p112304 +sg25270 +S'Alfred Stieglitz' +p112305 +sa(dp112306 +g25273 +S'gelatin silver print mounted on paperboard' +p112307 +sg25267 +g27 +sg25275 +S'1925' +p112308 +sg25268 +S'Equivalent' +p112309 +sg25270 +S'Alfred Stieglitz' +p112310 +sa(dp112311 +g25273 +S'gelatin silver print mounted on paperboard' +p112312 +sg25267 +g27 +sg25275 +S'1922/1923' +p112313 +sg25268 +S'Lake George' +p112314 +sg25270 +S'Alfred Stieglitz' +p112315 +sa(dp112316 +g25268 +S'Lake George' +p112317 +sg25270 +S'Alfred Stieglitz' +p112318 +sg25273 +S'gelatin silver print mounted on paperboard' +p112319 +sg25275 +S'1922/1923' +p112320 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006274.jpg' +p112321 +sg25267 +g27 +sa(dp112322 +g25268 +S'Songs of the Sky' +p112323 +sg25270 +S'Alfred Stieglitz' +p112324 +sg25273 +S'gelatin silver print mounted on paperboard' +p112325 +sg25275 +S'1924' +p112326 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006275.jpg' +p112327 +sg25267 +g27 +sa(dp112328 +g25273 +S'gelatin silver print mounted on paperboard' +p112329 +sg25267 +g27 +sg25275 +S'1924' +p112330 +sg25268 +S'Songs of the Sky' +p112331 +sg25270 +S'Alfred Stieglitz' +p112332 +sa(dp112333 +g25268 +S'Pyramus and Thisbe' +p112334 +sg25270 +S'Albrecht Altdorfer' +p112335 +sg25273 +S'engraving' +p112336 +sg25275 +S'c. 1515/1518' +p112337 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a75b.jpg' +p112338 +sg25267 +g27 +sa(dp112339 +g25273 +S'gelatin silver print mounted on paperboard' +p112340 +sg25267 +g27 +sg25275 +S'probably 1930' +p112341 +sg25268 +S'Equivalent' +p112342 +sg25270 +S'Alfred Stieglitz' +p112343 +sa(dp112344 +g25273 +S'gelatin silver print mounted on paperboard' +p112345 +sg25267 +g27 +sg25275 +S'1925' +p112346 +sg25268 +S'Equivalent' +p112347 +sg25270 +S'Alfred Stieglitz' +p112348 +sa(dp112349 +g25273 +S'gelatin silver print mounted on paperboard' +p112350 +sg25267 +g27 +sg25275 +S'1925' +p112351 +sg25268 +S'Equivalent' +p112352 +sg25270 +S'Alfred Stieglitz' +p112353 +sa(dp112354 +g25273 +S'gelatin silver print mounted on paperboard' +p112355 +sg25267 +g27 +sg25275 +S'1927' +p112356 +sg25268 +S'Equivalent' +p112357 +sg25270 +S'Alfred Stieglitz' +p112358 +sa(dp112359 +g25273 +S'gelatin silver print mounted on paperboard' +p112360 +sg25267 +g27 +sg25275 +S'1925' +p112361 +sg25268 +S'Equivalent' +p112362 +sg25270 +S'Alfred Stieglitz' +p112363 +sa(dp112364 +g25273 +S'gelatin silver print mounted on paperboard' +p112365 +sg25267 +g27 +sg25275 +S'1925' +p112366 +sg25268 +S'Equivalent' +p112367 +sg25270 +S'Alfred Stieglitz' +p112368 +sa(dp112369 +g25273 +S'gelatin silver print mounted on paperboard' +p112370 +sg25267 +g27 +sg25275 +S'1925' +p112371 +sg25268 +S'Equivalent' +p112372 +sg25270 +S'Alfred Stieglitz' +p112373 +sa(dp112374 +g25273 +S'gelatin silver print mounted on paperboard' +p112375 +sg25267 +g27 +sg25275 +S'1925' +p112376 +sg25268 +S'Equivalent' +p112377 +sg25270 +S'Alfred Stieglitz' +p112378 +sa(dp112379 +g25273 +S'gelatin silver print mounted on paperboard' +p112380 +sg25267 +g27 +sg25275 +S'1925' +p112381 +sg25268 +S'Equivalent' +p112382 +sg25270 +S'Alfred Stieglitz' +p112383 +sa(dp112384 +g25273 +S'gelatin silver print mounted on paperboard' +p112385 +sg25267 +g27 +sg25275 +S'1925' +p112386 +sg25268 +S'Equivalent' +p112387 +sg25270 +S'Alfred Stieglitz' +p112388 +sa(dp112389 +g25268 +S'Samson and Delilah' +p112390 +sg25270 +S'Albrecht Altdorfer' +p112391 +sg25273 +S'engraving' +p112392 +sg25275 +S'c. 1520/1525' +p112393 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a771.jpg' +p112394 +sg25267 +g27 +sa(dp112395 +g25273 +S'gelatin silver print mounted on paperboard' +p112396 +sg25267 +g27 +sg25275 +S'1925' +p112397 +sg25268 +S'Morning, Lake George' +p112398 +sg25270 +S'Alfred Stieglitz' +p112399 +sa(dp112400 +g25273 +S'gelatin silver print mounted on paperboard' +p112401 +sg25267 +g27 +sg25275 +S'1925' +p112402 +sg25268 +S'Equivalent' +p112403 +sg25270 +S'Alfred Stieglitz' +p112404 +sa(dp112405 +g25273 +S'gelatin silver print mounted on paperboard' +p112406 +sg25267 +g27 +sg25275 +S'1925' +p112407 +sg25268 +S'Equivalent' +p112408 +sg25270 +S'Alfred Stieglitz' +p112409 +sa(dp112410 +g25273 +S'gelatin silver print mounted on paperboard' +p112411 +sg25267 +g27 +sg25275 +S'1925' +p112412 +sg25268 +S'Equivalent T1' +p112413 +sg25270 +S'Alfred Stieglitz' +p112414 +sa(dp112415 +g25273 +S'gelatin silver print mounted on paperboard' +p112416 +sg25267 +g27 +sg25275 +S'1925' +p112417 +sg25268 +S'Equivalent' +p112418 +sg25270 +S'Alfred Stieglitz' +p112419 +sa(dp112420 +g25273 +S'gelatin silver print mounted on paperboard' +p112421 +sg25267 +g27 +sg25275 +S'1925' +p112422 +sg25268 +S'Equivalent' +p112423 +sg25270 +S'Alfred Stieglitz' +p112424 +sa(dp112425 +g25273 +S'gelatin silver print mounted on paperboard' +p112426 +sg25267 +g27 +sg25275 +S'1925' +p112427 +sg25268 +S'Equivalent' +p112428 +sg25270 +S'Alfred Stieglitz' +p112429 +sa(dp112430 +g25273 +S'gelatin silver print mounted on paperboard' +p112431 +sg25267 +g27 +sg25275 +S'1925' +p112432 +sg25268 +S'Equivalent' +p112433 +sg25270 +S'Alfred Stieglitz' +p112434 +sa(dp112435 +g25273 +S'gelatin silver print mounted on paperboard' +p112436 +sg25267 +g27 +sg25275 +S'1925' +p112437 +sg25268 +S'Equivalent' +p112438 +sg25270 +S'Alfred Stieglitz' +p112439 +sa(dp112440 +g25273 +S'gelatin silver print mounted on paperboard' +p112441 +sg25267 +g27 +sg25275 +S'1925' +p112442 +sg25268 +S'Equivalent' +p112443 +sg25270 +S'Alfred Stieglitz' +p112444 +sa(dp112445 +g25268 +S'Solomon Praying to the Idols' +p112446 +sg25270 +S'Albrecht Altdorfer' +p112447 +sg25273 +S'engraving' +p112448 +sg25275 +S'c. 1519' +p112449 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a769.jpg' +p112450 +sg25267 +g27 +sa(dp112451 +g25273 +S'gelatin silver print mounted on paperboard' +p112452 +sg25267 +g27 +sg25275 +S'1925' +p112453 +sg25268 +S'Equivalent' +p112454 +sg25270 +S'Alfred Stieglitz' +p112455 +sa(dp112456 +g25273 +S'gelatin silver print mounted on paperboard' +p112457 +sg25267 +g27 +sg25275 +S'1925' +p112458 +sg25268 +S'Equivalent' +p112459 +sg25270 +S'Alfred Stieglitz' +p112460 +sa(dp112461 +g25273 +S'gelatin silver print mounted on paperboard' +p112462 +sg25267 +g27 +sg25275 +S'1925' +p112463 +sg25268 +S'Equivalent' +p112464 +sg25270 +S'Alfred Stieglitz' +p112465 +sa(dp112466 +g25273 +S'gelatin silver print mounted on paperboard' +p112467 +sg25267 +g27 +sg25275 +S'1925' +p112468 +sg25268 +S'Equivalent' +p112469 +sg25270 +S'Alfred Stieglitz' +p112470 +sa(dp112471 +g25273 +S'gelatin silver print mounted on paperboard' +p112472 +sg25267 +g27 +sg25275 +S'1923 or 1929' +p112473 +sg25268 +S'Equivalent XX2' +p112474 +sg25270 +S'Alfred Stieglitz' +p112475 +sa(dp112476 +g25273 +S'gelatin silver print mounted on paperboard' +p112477 +sg25267 +g27 +sg25275 +S'1923 or 1929' +p112478 +sg25268 +S'Equivalent XX3' +p112479 +sg25270 +S'Alfred Stieglitz' +p112480 +sa(dp112481 +g25273 +S'gelatin silver print mounted on paperboard' +p112482 +sg25267 +g27 +sg25275 +S'1923 or 1929' +p112483 +sg25268 +S'Equivalent XX4' +p112484 +sg25270 +S'Alfred Stieglitz' +p112485 +sa(dp112486 +g25273 +S'gelatin silver print mounted on paperboard' +p112487 +sg25267 +g27 +sg25275 +S'1923 or 1929' +p112488 +sg25268 +S'Equivalent XX5' +p112489 +sg25270 +S'Alfred Stieglitz' +p112490 +sa(dp112491 +g25273 +S'gelatin silver print mounted on paperboard' +p112492 +sg25267 +g27 +sg25275 +S'1923' +p112493 +sg25268 +S'Songs of the Sky' +p112494 +sg25270 +S'Alfred Stieglitz' +p112495 +sa(dp112496 +g25273 +S'gelatin silver print mounted on paperboard' +p112497 +sg25267 +g27 +sg25275 +S'1923' +p112498 +sg25268 +S'Songs of the Sky' +p112499 +sg25270 +S'Alfred Stieglitz' +p112500 +sa(dp112501 +g25268 +S'Ginevra Bentivoglio' +p112502 +sg25270 +S"Ercole de' Roberti" +p112503 +sg25273 +S'tempera on panel' +p112504 +sg25275 +S'c. 1474/1477' +p112505 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005ec.jpg' +p112506 +sg25267 +S"Both this panel of Ginevra Bentivoglio and the companion portrait of her husband,\n\n Renaissance profile portraits recalled the images of emperors and deities on the\nancient Roman coins and medals that were so highly prized at the time. Moreover,\nthe profile format, which isolates the sitter from the observer, was particularly\nappropriate to Giovanni's position as a strong-willed lord.\n Ercole de' Roberti absorbed Francesco del Cossa's and Cosimo Tura's eccentric style;\nyet he was also aware of the meticulous realism of contemporary Flemish art, as\nis indicated by the lustrous pearls and gems so prominently displayed on Ginevra's\nsleeve. But the single most salient element in Ercole's style is his superior draftsmanship.\nAn energetic yet nervous line describes the flowing contours of Ginevra's head,\nthe swirling concentric rhythms of her hair, and the stiff, parallel folds of her\nkerchief.\n " +p112507 +sa(dp112508 +g25268 +S'Judith with the Head of Holofernes' +p112509 +sg25270 +S'Albrecht Altdorfer' +p112510 +sg25273 +S'engraving' +p112511 +sg25275 +S'c. 1520/1530' +p112512 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a78d.jpg' +p112513 +sg25267 +g27 +sa(dp112514 +g25273 +S'gelatin silver print mounted on paperboard' +p112515 +sg25267 +g27 +sg25275 +S'1923' +p112516 +sg25268 +S'Songs of the Sky' +p112517 +sg25270 +S'Alfred Stieglitz' +p112518 +sa(dp112519 +g25273 +S'gelatin silver print mounted on paperboard' +p112520 +sg25267 +g27 +sg25275 +S'1923/1931' +p112521 +sg25268 +S'Songs of the Sky' +p112522 +sg25270 +S'Alfred Stieglitz' +p112523 +sa(dp112524 +g25273 +S'gelatin silver print mounted on paperboard' +p112525 +sg25267 +g27 +sg25275 +S'1926' +p112526 +sg25268 +S'Equivalent' +p112527 +sg25270 +S'Alfred Stieglitz' +p112528 +sa(dp112529 +g25273 +S'gelatin silver print mounted on paperboard' +p112530 +sg25267 +g27 +sg25275 +S'1925/1927' +p112531 +sg25268 +S'Equivalent' +p112532 +sg25270 +S'Alfred Stieglitz' +p112533 +sa(dp112534 +g25273 +S'gelatin silver print mounted on paperboard' +p112535 +sg25267 +g27 +sg25275 +S'1925/1927' +p112536 +sg25268 +S'Equivalent' +p112537 +sg25270 +S'Alfred Stieglitz' +p112538 +sa(dp112539 +g25273 +S'gelatin silver print mounted on paperboard' +p112540 +sg25267 +g27 +sg25275 +S'1923/1929' +p112541 +sg25268 +S'Songs of the Sky' +p112542 +sg25270 +S'Alfred Stieglitz' +p112543 +sa(dp112544 +g25273 +S'gelatin silver print mounted on paperboard' +p112545 +sg25267 +g27 +sg25275 +S'1926' +p112546 +sg25268 +S'Equivalent' +p112547 +sg25270 +S'Alfred Stieglitz' +p112548 +sa(dp112549 +g25273 +S'gelatin silver print mounted on paperboard' +p112550 +sg25267 +g27 +sg25275 +S'1926' +p112551 +sg25268 +S'Equivalent' +p112552 +sg25270 +S'Alfred Stieglitz' +p112553 +sa(dp112554 +g25268 +S'Equivalent' +p112555 +sg25270 +S'Alfred Stieglitz' +p112556 +sg25273 +S'gelatin silver print mounted on paperboard' +p112557 +sg25275 +S'1926' +p112558 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006276.jpg' +p112559 +sg25267 +g27 +sa(dp112560 +g25273 +S'gelatin silver print mounted on paperboard' +p112561 +sg25267 +g27 +sg25275 +S'1926' +p112562 +sg25268 +S'Equivalent' +p112563 +sg25270 +S'Alfred Stieglitz' +p112564 +sa(dp112565 +g25268 +S'The Virgin Seeking Jesus in the Temple' +p112566 +sg25270 +S'Albrecht Altdorfer' +p112567 +sg25273 +S'engraving' +p112568 +sg25275 +S'c. 1519/1520' +p112569 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a76c.jpg' +p112570 +sg25267 +g27 +sa(dp112571 +g25273 +S'gelatin silver print mounted on paperboard' +p112572 +sg25267 +g27 +sg25275 +S'1926' +p112573 +sg25268 +S'Equivalent' +p112574 +sg25270 +S'Alfred Stieglitz' +p112575 +sa(dp112576 +g25273 +S'gelatin silver print mounted on paperboard' +p112577 +sg25267 +g27 +sg25275 +S'1926' +p112578 +sg25268 +S'Equivalent' +p112579 +sg25270 +S'Alfred Stieglitz' +p112580 +sa(dp112581 +g25273 +S'gelatin silver print mounted on paperboard' +p112582 +sg25267 +g27 +sg25275 +S'1923/1929' +p112583 +sg25268 +S'Songs of the Sky' +p112584 +sg25270 +S'Alfred Stieglitz' +p112585 +sa(dp112586 +g25273 +S'gelatin silver print mounted on paperboard' +p112587 +sg25267 +g27 +sg25275 +S'1926' +p112588 +sg25268 +S'Equivalent' +p112589 +sg25270 +S'Alfred Stieglitz' +p112590 +sa(dp112591 +g25273 +S'gelatin silver print mounted on paperboard' +p112592 +sg25267 +g27 +sg25275 +S'1926' +p112593 +sg25268 +S'Equivalent' +p112594 +sg25270 +S'Alfred Stieglitz' +p112595 +sa(dp112596 +g25268 +S'Equivalent' +p112597 +sg25270 +S'Alfred Stieglitz' +p112598 +sg25273 +S'gelatin silver print mounted on paperboard' +p112599 +sg25275 +S'1926' +p112600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006277.jpg' +p112601 +sg25267 +g27 +sa(dp112602 +g25273 +S'gelatin silver print mounted on paperboard' +p112603 +sg25267 +g27 +sg25275 +S'probably 1927' +p112604 +sg25268 +S'Equivalent' +p112605 +sg25270 +S'Alfred Stieglitz' +p112606 +sa(dp112607 +g25273 +S'gelatin silver print mounted on paperboard' +p112608 +sg25267 +g27 +sg25275 +S'probably 1926' +p112609 +sg25268 +S'Equivalent' +p112610 +sg25270 +S'Alfred Stieglitz' +p112611 +sa(dp112612 +g25273 +S'gelatin silver print mounted on paperboard' +p112613 +sg25267 +g27 +sg25275 +S'1926' +p112614 +sg25268 +S'Equivalent' +p112615 +sg25270 +S'Alfred Stieglitz' +p112616 +sa(dp112617 +g25273 +S'gelatin silver print mounted on paperboard' +p112618 +sg25267 +g27 +sg25275 +S'1926' +p112619 +sg25268 +S'Equivalent' +p112620 +sg25270 +S'Alfred Stieglitz' +p112621 +sa(dp112622 +g25268 +S'The Virgin and Child and Saint Anne' +p112623 +sg25270 +S'Albrecht Altdorfer' +p112624 +sg25273 +S'engraving' +p112625 +sg25275 +S'c. 1515/1520' +p112626 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a75f.jpg' +p112627 +sg25267 +g27 +sa(dp112628 +g25273 +S'gelatin silver print mounted on paperboard' +p112629 +sg25267 +g27 +sg25275 +S'1925/1927' +p112630 +sg25268 +S'Equivalent' +p112631 +sg25270 +S'Alfred Stieglitz' +p112632 +sa(dp112633 +g25273 +S'gelatin silver print mounted on paperboard' +p112634 +sg25267 +g27 +sg25275 +S'1926' +p112635 +sg25268 +S'Equivalent' +p112636 +sg25270 +S'Alfred Stieglitz' +p112637 +sa(dp112638 +g25273 +S'gelatin silver print mounted on paperboard' +p112639 +sg25267 +g27 +sg25275 +S'1926' +p112640 +sg25268 +S'Equivalent' +p112641 +sg25270 +S'Alfred Stieglitz' +p112642 +sa(dp112643 +g25273 +S'gelatin silver print mounted on paperboard' +p112644 +sg25267 +g27 +sg25275 +S'1926' +p112645 +sg25268 +S'Equivalent' +p112646 +sg25270 +S'Alfred Stieglitz' +p112647 +sa(dp112648 +g25273 +S'gelatin silver print mounted on paperboard' +p112649 +sg25267 +g27 +sg25275 +S'1926' +p112650 +sg25268 +S'Equivalent' +p112651 +sg25270 +S'Alfred Stieglitz' +p112652 +sa(dp112653 +g25273 +S'gelatin silver print mounted on paperboard' +p112654 +sg25267 +g27 +sg25275 +S'1923/1929' +p112655 +sg25268 +S'Songs of the Sky' +p112656 +sg25270 +S'Alfred Stieglitz' +p112657 +sa(dp112658 +g25273 +S'gelatin silver print mounted on paperboard' +p112659 +sg25267 +g27 +sg25275 +S'1926' +p112660 +sg25268 +S'Equivalent' +p112661 +sg25270 +S'Alfred Stieglitz' +p112662 +sa(dp112663 +g25273 +S'gelatin silver print mounted on paperboard' +p112664 +sg25267 +g27 +sg25275 +S'1926' +p112665 +sg25268 +S'Equivalents' +p112666 +sg25270 +S'Alfred Stieglitz' +p112667 +sa(dp112668 +g25273 +S'gelatin silver print mounted on paperboard' +p112669 +sg25267 +g27 +sg25275 +S'1927' +p112670 +sg25268 +S'Equivalent' +p112671 +sg25270 +S'Alfred Stieglitz' +p112672 +sa(dp112673 +g25273 +S'gelatin silver print mounted on paperboard' +p112674 +sg25267 +g27 +sg25275 +S'1927' +p112675 +sg25268 +S'Equivalent' +p112676 +sg25270 +S'Alfred Stieglitz' +p112677 +sa(dp112678 +g25268 +S'Saint Christopher' +p112679 +sg25270 +S'Albrecht Altdorfer' +p112680 +sg25273 +S'engraving' +p112681 +sg25275 +S'c. 1515/1520' +p112682 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a761.jpg' +p112683 +sg25267 +g27 +sa(dp112684 +g25273 +S'gelatin silver print mounted on paperboard' +p112685 +sg25267 +g27 +sg25275 +S'1927' +p112686 +sg25268 +S'Equivalent' +p112687 +sg25270 +S'Alfred Stieglitz' +p112688 +sa(dp112689 +g25273 +S'gelatin silver print mounted on paperboard' +p112690 +sg25267 +g27 +sg25275 +S'1927' +p112691 +sg25268 +S'Equivalent' +p112692 +sg25270 +S'Alfred Stieglitz' +p112693 +sa(dp112694 +g25273 +S'gelatin silver print mounted on paperboard' +p112695 +sg25267 +g27 +sg25275 +S'1927' +p112696 +sg25268 +S'Equivalent' +p112697 +sg25270 +S'Alfred Stieglitz' +p112698 +sa(dp112699 +g25273 +S'gelatin silver print mounted on paperboard' +p112700 +sg25267 +g27 +sg25275 +S'1927' +p112701 +sg25268 +S'Equivalent' +p112702 +sg25270 +S'Alfred Stieglitz' +p112703 +sa(dp112704 +g25273 +S'gelatin silver print mounted on paperboard' +p112705 +sg25267 +g27 +sg25275 +S'1927' +p112706 +sg25268 +S'Equivalent' +p112707 +sg25270 +S'Alfred Stieglitz' +p112708 +sa(dp112709 +g25273 +S'gelatin silver print mounted on paperboard' +p112710 +sg25267 +g27 +sg25275 +S'probably 1927' +p112711 +sg25268 +S'Equivalent' +p112712 +sg25270 +S'Alfred Stieglitz' +p112713 +sa(dp112714 +g25273 +S'gelatin silver print mounted on paperboard' +p112715 +sg25267 +g27 +sg25275 +S'probably 1927' +p112716 +sg25268 +S'Equivalent' +p112717 +sg25270 +S'Alfred Stieglitz' +p112718 +sa(dp112719 +g25273 +S'gelatin silver print mounted on paperboard' +p112720 +sg25267 +g27 +sg25275 +S'1927' +p112721 +sg25268 +S'Equivalents' +p112722 +sg25270 +S'Alfred Stieglitz' +p112723 +sa(dp112724 +g25273 +S'gelatin silver print mounted on paperboard' +p112725 +sg25267 +g27 +sg25275 +S'1927' +p112726 +sg25268 +S'Equivalents' +p112727 +sg25270 +S'Alfred Stieglitz' +p112728 +sa(dp112729 +g25273 +S'gelatin silver print mounted on paperboard' +p112730 +sg25267 +g27 +sg25275 +S'1927' +p112731 +sg25268 +S'Equivalent' +p112732 +sg25270 +S'Alfred Stieglitz' +p112733 +sa(dp112734 +g25268 +S'Lovers led by Seagods on Triumph' +p112735 +sg25270 +S'Albrecht Altdorfer' +p112736 +sg25273 +S'engraving' +p112737 +sg25275 +S'c. 1520/1525' +p112738 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a788.jpg' +p112739 +sg25267 +g27 +sa(dp112740 +g25273 +S'gelatin silver print mounted on paperboard' +p112741 +sg25267 +g27 +sg25275 +S'1927' +p112742 +sg25268 +S'Equivalent' +p112743 +sg25270 +S'Alfred Stieglitz' +p112744 +sa(dp112745 +g25273 +S'gelatin silver print mounted on paperboard' +p112746 +sg25267 +g27 +sg25275 +S'1927' +p112747 +sg25268 +S'Equivalents' +p112748 +sg25270 +S'Alfred Stieglitz' +p112749 +sa(dp112750 +g25273 +S'gelatin silver print mounted on paperboard' +p112751 +sg25267 +g27 +sg25275 +S'1927' +p112752 +sg25268 +S'Equivalent' +p112753 +sg25270 +S'Alfred Stieglitz' +p112754 +sa(dp112755 +g25273 +S'gelatin silver print mounted on paperboard' +p112756 +sg25267 +g27 +sg25275 +S'1927' +p112757 +sg25268 +S'Equivalents' +p112758 +sg25270 +S'Alfred Stieglitz' +p112759 +sa(dp112760 +g25273 +S'gelatin silver print mounted on paperboard' +p112761 +sg25267 +g27 +sg25275 +S'1927' +p112762 +sg25268 +S'Equivalents' +p112763 +sg25270 +S'Alfred Stieglitz' +p112764 +sa(dp112765 +g25273 +S'gelatin silver print mounted on paperboard' +p112766 +sg25267 +g27 +sg25275 +S'1927' +p112767 +sg25268 +S'Equivalent' +p112768 +sg25270 +S'Alfred Stieglitz' +p112769 +sa(dp112770 +g25273 +S'gelatin silver print mounted on paperboard' +p112771 +sg25267 +g27 +sg25275 +S'1927' +p112772 +sg25268 +S'Equivalents' +p112773 +sg25270 +S'Alfred Stieglitz' +p112774 +sa(dp112775 +g25273 +S'gelatin silver print mounted on paperboard' +p112776 +sg25267 +g27 +sg25275 +S'1927' +p112777 +sg25268 +S'Equivalents' +p112778 +sg25270 +S'Alfred Stieglitz' +p112779 +sa(dp112780 +g25273 +S'gelatin silver print mounted on paperboard' +p112781 +sg25267 +g27 +sg25275 +S'1927' +p112782 +sg25268 +S'Equivalents' +p112783 +sg25270 +S'Alfred Stieglitz' +p112784 +sa(dp112785 +g25273 +S'gelatin silver print mounted on paperboard' +p112786 +sg25267 +g27 +sg25275 +S'1927' +p112787 +sg25268 +S'Equivalents' +p112788 +sg25270 +S'Alfred Stieglitz' +p112789 +sa(dp112790 +g25268 +S'Neptune on a Sea Monster' +p112791 +sg25270 +S'Albrecht Altdorfer' +p112792 +sg25273 +S'engraving' +p112793 +sg25275 +S'c. 1520/1525' +p112794 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a792.jpg' +p112795 +sg25267 +g27 +sa(dp112796 +g25273 +S'gelatin silver print mounted on paperboard' +p112797 +sg25267 +g27 +sg25275 +S'1926' +p112798 +sg25268 +S'Equivalent' +p112799 +sg25270 +S'Alfred Stieglitz' +p112800 +sa(dp112801 +g25273 +S'gelatin silver print mounted on paperboard' +p112802 +sg25267 +g27 +sg25275 +S'1927' +p112803 +sg25268 +S'Equivalent' +p112804 +sg25270 +S'Alfred Stieglitz' +p112805 +sa(dp112806 +g25273 +S'gelatin silver print mounted on paperboard' +p112807 +sg25267 +g27 +sg25275 +S'1927' +p112808 +sg25268 +S'Clouds' +p112809 +sg25270 +S'Alfred Stieglitz' +p112810 +sa(dp112811 +g25273 +S'gelatin silver print mounted on paperboard' +p112812 +sg25267 +g27 +sg25275 +S'1927' +p112813 +sg25268 +S'Equivalents' +p112814 +sg25270 +S'Alfred Stieglitz' +p112815 +sa(dp112816 +g25273 +S'gelatin silver print mounted on paperboard' +p112817 +sg25267 +g27 +sg25275 +S'1927' +p112818 +sg25268 +S'Equivalent' +p112819 +sg25270 +S'Alfred Stieglitz' +p112820 +sa(dp112821 +g25268 +S'Equivalents' +p112822 +sg25270 +S'Alfred Stieglitz' +p112823 +sg25273 +S'gelatin silver print mounted on paperboard' +p112824 +sg25275 +S'1927' +p112825 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006278.jpg' +p112826 +sg25267 +g27 +sa(dp112827 +g25273 +S'gelatin silver print mounted on paperboard' +p112828 +sg25267 +g27 +sg25275 +S'1927' +p112829 +sg25268 +S'Equivalents' +p112830 +sg25270 +S'Alfred Stieglitz' +p112831 +sa(dp112832 +g25273 +S'gelatin silver print mounted on paperboard' +p112833 +sg25267 +g27 +sg25275 +S'1927' +p112834 +sg25268 +S'Equivalent' +p112835 +sg25270 +S'Alfred Stieglitz' +p112836 +sa(dp112837 +g25273 +S'gelatin silver print mounted on paperboard' +p112838 +sg25267 +g27 +sg25275 +S'1927' +p112839 +sg25268 +S'Equivalent' +p112840 +sg25270 +S'Alfred Stieglitz' +p112841 +sa(dp112842 +g25273 +S'gelatin silver print mounted on paperboard' +p112843 +sg25267 +g27 +sg25275 +S'1927' +p112844 +sg25268 +S'Equivalent' +p112845 +sg25270 +S'Alfred Stieglitz' +p112846 +sa(dp112847 +g25268 +S'Crouching Venus' +p112848 +sg25270 +S'Albrecht Altdorfer' +p112849 +sg25273 +S'engraving' +p112850 +sg25275 +S'c. 1525/1530' +p112851 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a791.jpg' +p112852 +sg25267 +g27 +sa(dp112853 +g25273 +S'gelatin silver print mounted on paperboard' +p112854 +sg25267 +g27 +sg25275 +S'1927' +p112855 +sg25268 +S'Equivalents' +p112856 +sg25270 +S'Alfred Stieglitz' +p112857 +sa(dp112858 +g25273 +S'gelatin silver print mounted on paperboard' +p112859 +sg25267 +g27 +sg25275 +S'1933' +p112860 +sg25268 +S'Equivalent 27B' +p112861 +sg25270 +S'Alfred Stieglitz' +p112862 +sa(dp112863 +g25273 +S'gelatin silver print mounted on paperboard' +p112864 +sg25267 +g27 +sg25275 +S'1933' +p112865 +sg25268 +S'Equivalent 27A' +p112866 +sg25270 +S'Alfred Stieglitz' +p112867 +sa(dp112868 +g25273 +S'gelatin silver print mounted on paperboard' +p112869 +sg25267 +g27 +sg25275 +S'1933' +p112870 +sg25268 +S'Equivalent 17C' +p112871 +sg25270 +S'Alfred Stieglitz' +p112872 +sa(dp112873 +g25273 +S'gelatin silver print' +p112874 +sg25267 +g27 +sg25275 +S'1922' +p112875 +sg25268 +S'Lake George' +p112876 +sg25270 +S'Alfred Stieglitz' +p112877 +sa(dp112878 +g25273 +S'gelatin silver print mounted on paperboard' +p112879 +sg25267 +g27 +sg25275 +S'1928' +p112880 +sg25268 +S'Equivalent' +p112881 +sg25270 +S'Alfred Stieglitz' +p112882 +sa(dp112883 +g25273 +S'gelatin silver print mounted on paperboard' +p112884 +sg25267 +g27 +sg25275 +S'1929' +p112885 +sg25268 +S'Equivalent T2' +p112886 +sg25270 +S'Alfred Stieglitz' +p112887 +sa(dp112888 +g25273 +S'gelatin silver print mounted on paperboard' +p112889 +sg25267 +g27 +sg25275 +S'1929' +p112890 +sg25268 +S'Equivalent' +p112891 +sg25270 +S'Alfred Stieglitz' +p112892 +sa(dp112893 +g25273 +S'gelatin silver print mounted on paperboard' +p112894 +sg25267 +g27 +sg25275 +S'possibly 1929' +p112895 +sg25268 +S'Equivalent' +p112896 +sg25270 +S'Alfred Stieglitz' +p112897 +sa(dp112898 +g25273 +S'gelatin silver print mounted on paperboard' +p112899 +sg25267 +g27 +sg25275 +S'1923/1929' +p112900 +sg25268 +S'Songs of the Sky' +p112901 +sg25270 +S'Alfred Stieglitz' +p112902 +sa(dp112903 +g25268 +S'Venus after the Bath' +p112904 +sg25270 +S'Albrecht Altdorfer' +p112905 +sg25273 +S'engraving' +p112906 +sg25275 +S'c. 1525/1530' +p112907 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7a6.jpg' +p112908 +sg25267 +g27 +sa(dp112909 +g25273 +S'gelatin silver print mounted on paperboard' +p112910 +sg25267 +g27 +sg25275 +S'1923/1929' +p112911 +sg25268 +S'Songs of the Sky' +p112912 +sg25270 +S'Alfred Stieglitz' +p112913 +sa(dp112914 +g25273 +S'gelatin silver print mounted on paperboard' +p112915 +sg25267 +g27 +sg25275 +S'1929' +p112916 +sg25268 +S'Equivalent T4' +p112917 +sg25270 +S'Alfred Stieglitz' +p112918 +sa(dp112919 +g25273 +S'gelatin silver print mounted on paperboard' +p112920 +sg25267 +g27 +sg25275 +S'1929' +p112921 +sg25268 +S'Equivalent' +p112922 +sg25270 +S'Alfred Stieglitz' +p112923 +sa(dp112924 +g25273 +S'gelatin silver print mounted on paperboard' +p112925 +sg25267 +g27 +sg25275 +S'1929' +p112926 +sg25268 +S'Equivalent' +p112927 +sg25270 +S'Alfred Stieglitz' +p112928 +sa(dp112929 +g25273 +S'gelatin silver print mounted on paperboard' +p112930 +sg25267 +g27 +sg25275 +S'1929' +p112931 +sg25268 +S'Equivalent' +p112932 +sg25270 +S'Alfred Stieglitz' +p112933 +sa(dp112934 +g25273 +S'gelatin silver print mounted on paperboard' +p112935 +sg25267 +g27 +sg25275 +S'1929' +p112936 +sg25268 +S'Equivalent' +p112937 +sg25270 +S'Alfred Stieglitz' +p112938 +sa(dp112939 +g25273 +S'gelatin silver print mounted on paperboard' +p112940 +sg25267 +g27 +sg25275 +S'1929' +p112941 +sg25268 +S'Equivalent' +p112942 +sg25270 +S'Alfred Stieglitz' +p112943 +sa(dp112944 +g25273 +S'gelatin silver print mounted on paperboard' +p112945 +sg25267 +g27 +sg25275 +S'1923/1929' +p112946 +sg25268 +S'Equivalent' +p112947 +sg25270 +S'Alfred Stieglitz' +p112948 +sa(dp112949 +g25273 +S'gelatin silver print mounted on paperboard' +p112950 +sg25267 +g27 +sg25275 +S'1923/1929' +p112951 +sg25268 +S'Songs of the Sky' +p112952 +sg25270 +S'Alfred Stieglitz' +p112953 +sa(dp112954 +g25268 +S'Songs of the Sky' +p112955 +sg25270 +S'Alfred Stieglitz' +p112956 +sg25273 +S'gelatin silver print mounted on paperboard' +p112957 +sg25275 +S'1923/1927' +p112958 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006279.jpg' +p112959 +sg25267 +g27 +sa(dp112960 +g25268 +S'Hercules and a Muse' +p112961 +sg25270 +S'Albrecht Altdorfer' +p112962 +sg25273 +S'engraving' +p112963 +sg25275 +S'c. 1520/1525' +p112964 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a789.jpg' +p112965 +sg25267 +g27 +sa(dp112966 +g25273 +S'gelatin silver print mounted on paperboard' +p112967 +sg25267 +g27 +sg25275 +S'1929' +p112968 +sg25268 +S'Equivalent' +p112969 +sg25270 +S'Alfred Stieglitz' +p112970 +sa(dp112971 +g25273 +S'gelatin silver print mounted on paperboard' +p112972 +sg25267 +g27 +sg25275 +S'1929' +p112973 +sg25268 +S'Equivalent' +p112974 +sg25270 +S'Alfred Stieglitz' +p112975 +sa(dp112976 +g25273 +S'gelatin silver print mounted on paperboard' +p112977 +sg25267 +g27 +sg25275 +S'1929' +p112978 +sg25268 +S'Equivalent' +p112979 +sg25270 +S'Alfred Stieglitz' +p112980 +sa(dp112981 +g25273 +S'gelatin silver print mounted on paperboard' +p112982 +sg25267 +g27 +sg25275 +S'1929' +p112983 +sg25268 +S'Equivalent' +p112984 +sg25270 +S'Alfred Stieglitz' +p112985 +sa(dp112986 +g25273 +S'gelatin silver print mounted on paperboard' +p112987 +sg25267 +g27 +sg25275 +S'1929' +p112988 +sg25268 +S'Equivalent, Set C2, No. 1' +p112989 +sg25270 +S'Alfred Stieglitz' +p112990 +sa(dp112991 +g25273 +S'gelatin silver print mounted on paperboard' +p112992 +sg25267 +g27 +sg25275 +S'1929' +p112993 +sg25268 +S'Equivalent, Set C2, No. 2' +p112994 +sg25270 +S'Alfred Stieglitz' +p112995 +sa(dp112996 +g25273 +S'gelatin silver print mounted on paperboard' +p112997 +sg25267 +g27 +sg25275 +S'1929' +p112998 +sg25268 +S'Equivalent, Set C2, No. 3' +p112999 +sg25270 +S'Alfred Stieglitz' +p113000 +sa(dp113001 +g25273 +S'gelatin silver print mounted on paperboard' +p113002 +sg25267 +g27 +sg25275 +S'1929' +p113003 +sg25268 +S'Equivalent, Set C2, No. 4' +p113004 +sg25270 +S'Alfred Stieglitz' +p113005 +sa(dp113006 +g25273 +S'gelatin silver print mounted on paperboard' +p113007 +sg25267 +g27 +sg25275 +S'1929' +p113008 +sg25268 +S'Equivalent, Set C2, No. 5' +p113009 +sg25270 +S'Alfred Stieglitz' +p113010 +sa(dp113011 +g25273 +S'gelatin silver print mounted on paperboard' +p113012 +sg25267 +g27 +sg25275 +S'1929' +p113013 +sg25268 +S'Equivalent HH1' +p113014 +sg25270 +S'Alfred Stieglitz' +p113015 +sa(dp113016 +g25268 +S'Hercules Overcoming the Nemean Lion' +p113017 +sg25270 +S'Albrecht Altdorfer' +p113018 +sg25273 +S'engraving' +p113019 +sg25275 +S'c. 1520/1525' +p113020 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a76f.jpg' +p113021 +sg25267 +g27 +sa(dp113022 +g25273 +S'gelatin silver print mounted on paperboard' +p113023 +sg25267 +g27 +sg25275 +S'1929' +p113024 +sg25268 +S'Equivalent HH2' +p113025 +sg25270 +S'Alfred Stieglitz' +p113026 +sa(dp113027 +g25273 +S'gelatin silver print mounted on paperboard' +p113028 +sg25267 +g27 +sg25275 +S'1929' +p113029 +sg25268 +S'Equivalent HH3' +p113030 +sg25270 +S'Alfred Stieglitz' +p113031 +sa(dp113032 +g25273 +S'gelatin silver print mounted on paperboard' +p113033 +sg25267 +g27 +sg25275 +S'1929' +p113034 +sg25268 +S'Equivalent, Set1 LX' +p113035 +sg25270 +S'Alfred Stieglitz' +p113036 +sa(dp113037 +g25273 +S'gelatin silver print mounted on paperboard' +p113038 +sg25267 +g27 +sg25275 +S'1929' +p113039 +sg25268 +S'Equivalent Set2 LX' +p113040 +sg25270 +S'Alfred Stieglitz' +p113041 +sa(dp113042 +g25273 +S'gelatin silver print mounted on paperboard' +p113043 +sg25267 +g27 +sg25275 +S'1929' +p113044 +sg25268 +S'Equivalent, Set O, No. 2' +p113045 +sg25270 +S'Alfred Stieglitz' +p113046 +sa(dp113047 +g25273 +S'gelatin silver print mounted on paperboard' +p113048 +sg25267 +g27 +sg25275 +S'1929' +p113049 +sg25268 +S'Equivalent, Set O, No. 3' +p113050 +sg25270 +S'Alfred Stieglitz' +p113051 +sa(dp113052 +g25273 +S'gelatin silver print mounted on paperboard' +p113053 +sg25267 +g27 +sg25275 +S'1929' +p113054 +sg25268 +S'Equivalent, Set O, No. 4' +p113055 +sg25270 +S'Alfred Stieglitz' +p113056 +sa(dp113057 +g25273 +S'gelatin silver print mounted on paperboard' +p113058 +sg25267 +g27 +sg25275 +S'1929' +p113059 +sg25268 +S'Equivalent, Set O, No. 5' +p113060 +sg25270 +S'Alfred Stieglitz' +p113061 +sa(dp113062 +g25273 +S'gelatin silver print mounted on paperboard' +p113063 +sg25267 +g27 +sg25275 +S'1929' +p113064 +sg25268 +S'Equivalent, Set O, No. 6' +p113065 +sg25270 +S'Alfred Stieglitz' +p113066 +sa(dp113067 +g25273 +S'gelatin silver print mounted on paperboard' +p113068 +sg25267 +g27 +sg25275 +S'1929' +p113069 +sg25268 +S'Equivalent, Set O, No. 7' +p113070 +sg25270 +S'Alfred Stieglitz' +p113071 +sa(dp113072 +g25268 +S'Madonna and Child' +p113073 +sg25270 +S'Domenico Veneziano' +p113074 +sg25273 +S'tempera (and oil?) on panel' +p113075 +sg25275 +S'c. 1445/1450' +p113076 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005cf.jpg' +p113077 +sg25267 +g27 +sa(dp113078 +g25268 +S'Hercules Bearing the Column of Gades' +p113079 +sg25270 +S'Albrecht Altdorfer' +p113080 +sg25273 +S'engraving' +p113081 +sg25275 +S'c. 1520/1525' +p113082 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a770.jpg' +p113083 +sg25267 +g27 +sa(dp113084 +g25273 +S'gelatin silver print mounted on paperboard' +p113085 +sg25267 +g27 +sg25275 +S'1929' +p113086 +sg25268 +S'Equivalent, Set O, No. 8' +p113087 +sg25270 +S'Alfred Stieglitz' +p113088 +sa(dp113089 +g25273 +S'gelatin silver print mounted on paperboard' +p113090 +sg25267 +g27 +sg25275 +S'1929' +p113091 +sg25268 +S'Equivalent, Set W, No. 1' +p113092 +sg25270 +S'Alfred Stieglitz' +p113093 +sa(dp113094 +g25273 +S'gelatin silver print mounted on paperboard' +p113095 +sg25267 +g27 +sg25275 +S'1929' +p113096 +sg25268 +S'Equivalent, Set W, No. 2' +p113097 +sg25270 +S'Alfred Stieglitz' +p113098 +sa(dp113099 +g25273 +S'gelatin silver print mounted on paperboard' +p113100 +sg25267 +g27 +sg25275 +S'1929' +p113101 +sg25268 +S'Equivalent, Set W, No. 3' +p113102 +sg25270 +S'Alfred Stieglitz' +p113103 +sa(dp113104 +g25273 +S'gelatin silver print mounted on paperboard' +p113105 +sg25267 +g27 +sg25275 +S'1929' +p113106 +sg25268 +S'Equivalent, Set W, No. 4' +p113107 +sg25270 +S'Alfred Stieglitz' +p113108 +sa(dp113109 +g25273 +S'gelatin silver print mounted on paperboard' +p113110 +sg25267 +g27 +sg25275 +S'1929' +p113111 +sg25268 +S'Equivalent, Set W, No. 5' +p113112 +sg25270 +S'Alfred Stieglitz' +p113113 +sa(dp113114 +g25273 +S'gelatin silver print mounted on paperboard' +p113115 +sg25267 +g27 +sg25275 +S'1929' +p113116 +sg25268 +S'Equivalent, Series XX No. 1' +p113117 +sg25270 +S'Alfred Stieglitz' +p113118 +sa(dp113119 +g25273 +S'gelatin silver print mounted on paperboard' +p113120 +sg25267 +g27 +sg25275 +S'1929' +p113121 +sg25268 +S'Equivalent, Series XX No. 2' +p113122 +sg25270 +S'Alfred Stieglitz' +p113123 +sa(dp113124 +g25273 +S'gelatin silver print mounted on paperboard' +p113125 +sg25267 +g27 +sg25275 +S'1929' +p113126 +sg25268 +S'Equivalent, Series XX No. 3' +p113127 +sg25270 +S'Alfred Stieglitz' +p113128 +sa(dp113129 +g25273 +S'gelatin silver print mounted on paperboard' +p113130 +sg25267 +g27 +sg25275 +S'1929' +p113131 +sg25268 +S'Equivalent, Series XX No. 4' +p113132 +sg25270 +S'Alfred Stieglitz' +p113133 +sa(dp113134 +g25268 +S'Mucius Scaevola' +p113135 +sg25270 +S'Albrecht Altdorfer' +p113136 +sg25273 +S'engraving' +p113137 +sg25275 +S'c. 1520/1530' +p113138 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a78c.jpg' +p113139 +sg25267 +g27 +sa(dp113140 +g25273 +S'gelatin silver print mounted on paperboard' +p113141 +sg25267 +g27 +sg25275 +S'1929' +p113142 +sg25268 +S'Equivalent, Series XX No. 5' +p113143 +sg25270 +S'Alfred Stieglitz' +p113144 +sa(dp113145 +g25268 +S'Equivalent, Series XX No. 6' +p113146 +sg25270 +S'Alfred Stieglitz' +p113147 +sg25273 +S'gelatin silver print mounted on paperboard' +p113148 +sg25275 +S'1929' +p113149 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005ad3.jpg' +p113150 +sg25267 +g27 +sa(dp113151 +g25273 +S'gelatin silver print mounted on paperboard' +p113152 +sg25267 +g27 +sg25275 +S'1929' +p113153 +sg25268 +S'Equivalent, Series XX No. 7' +p113154 +sg25270 +S'Alfred Stieglitz' +p113155 +sa(dp113156 +g25273 +S'gelatin silver print mounted on paperboard' +p113157 +sg25267 +g27 +sg25275 +S'1929' +p113158 +sg25268 +S'Equivalent, Series XX No. 8' +p113159 +sg25270 +S'Alfred Stieglitz' +p113160 +sa(dp113161 +g25273 +S'gelatin silver print mounted on paperboard' +p113162 +sg25267 +g27 +sg25275 +S'1929' +p113163 +sg25268 +S'Equivalent, Series XX No. 9' +p113164 +sg25270 +S'Alfred Stieglitz' +p113165 +sa(dp113166 +g25273 +S'gelatin silver print mounted on paperboard' +p113167 +sg25267 +g27 +sg25275 +S'1930' +p113168 +sg25268 +S'Equivalent' +p113169 +sg25270 +S'Alfred Stieglitz' +p113170 +sa(dp113171 +g25273 +S'gelatin silver print mounted on paperboard' +p113172 +sg25267 +g27 +sg25275 +S'1930' +p113173 +sg25268 +S'Equivalent' +p113174 +sg25270 +S'Alfred Stieglitz' +p113175 +sa(dp113176 +g25268 +S'Equivalent' +p113177 +sg25270 +S'Alfred Stieglitz' +p113178 +sg25273 +S'gelatin silver print mounted on paperboard' +p113179 +sg25275 +S'1930' +p113180 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a000627a.jpg' +p113181 +sg25267 +g27 +sa(dp113182 +g25273 +S'gelatin silver print mounted on paperboard' +p113183 +sg25267 +g27 +sg25275 +S'1930' +p113184 +sg25268 +S'Equivalent' +p113185 +sg25270 +S'Alfred Stieglitz' +p113186 +sa(dp113187 +g25273 +S'gelatin silver print mounted on paperboard' +p113188 +sg25267 +g27 +sg25275 +S'1930' +p113189 +sg25268 +S'Equivalent' +p113190 +sg25270 +S'Alfred Stieglitz' +p113191 +sa(dp113192 +g25268 +S'The Suicide of Dido' +p113193 +sg25270 +S'Albrecht Altdorfer' +p113194 +sg25273 +S'engraving' +p113195 +sg25275 +S'c. 1520/1530' +p113196 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a78a.jpg' +p113197 +sg25267 +g27 +sa(dp113198 +g25273 +S'gelatin silver print mounted on paperboard' +p113199 +sg25267 +g27 +sg25275 +S'1930' +p113200 +sg25268 +S'Equivalent' +p113201 +sg25270 +S'Alfred Stieglitz' +p113202 +sa(dp113203 +g25273 +S'gelatin silver print mounted on paperboard' +p113204 +sg25267 +g27 +sg25275 +S'1930' +p113205 +sg25268 +S'Equivalent' +p113206 +sg25270 +S'Alfred Stieglitz' +p113207 +sa(dp113208 +g25273 +S'gelatin silver print mounted on paperboard' +p113209 +sg25267 +g27 +sg25275 +S'1930' +p113210 +sg25268 +S'Equivalent' +p113211 +sg25270 +S'Alfred Stieglitz' +p113212 +sa(dp113213 +g25273 +S'gelatin silver print mounted on paperboard' +p113214 +sg25267 +g27 +sg25275 +S'1930' +p113215 +sg25268 +S'Equivalent' +p113216 +sg25270 +S'Alfred Stieglitz' +p113217 +sa(dp113218 +g25273 +S'gelatin silver print mounted on paperboard' +p113219 +sg25267 +g27 +sg25275 +S'probably 1930' +p113220 +sg25268 +S'Equivalent' +p113221 +sg25270 +S'Alfred Stieglitz' +p113222 +sa(dp113223 +g25273 +S'gelatin silver print mounted on paperboard' +p113224 +sg25267 +g27 +sg25275 +S'possibly 1930' +p113225 +sg25268 +S'Equivalent' +p113226 +sg25270 +S'Alfred Stieglitz' +p113227 +sa(dp113228 +g25273 +S'gelatin silver print mounted on paperboard' +p113229 +sg25267 +g27 +sg25275 +S'1930' +p113230 +sg25268 +S'Equivalent' +p113231 +sg25270 +S'Alfred Stieglitz' +p113232 +sa(dp113233 +g25273 +S'gelatin silver print mounted on paperboard' +p113234 +sg25267 +g27 +sg25275 +S'1930' +p113235 +sg25268 +S'Equivalent' +p113236 +sg25270 +S'Alfred Stieglitz' +p113237 +sa(dp113238 +g25273 +S'gelatin silver print mounted on paperboard' +p113239 +sg25267 +g27 +sg25275 +S'1930' +p113240 +sg25268 +S'Equivalent' +p113241 +sg25270 +S'Alfred Stieglitz' +p113242 +sa(dp113243 +g25273 +S'gelatin silver print mounted on paperboard' +p113244 +sg25267 +g27 +sg25275 +S'1930' +p113245 +sg25268 +S'Equivalent' +p113246 +sg25270 +S'Alfred Stieglitz' +p113247 +sa(dp113248 +g25268 +S'Horatio Cocles Leaping into the River Tiber' +p113249 +sg25270 +S'Albrecht Altdorfer' +p113250 +sg25273 +S'engraving' +p113251 +sg25275 +S'c. 1520/1530' +p113252 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a78b.jpg' +p113253 +sg25267 +g27 +sa(dp113254 +g25273 +S'gelatin silver print mounted on paperboard' +p113255 +sg25267 +g27 +sg25275 +S'1930' +p113256 +sg25268 +S'Equivalent' +p113257 +sg25270 +S'Alfred Stieglitz' +p113258 +sa(dp113259 +g25273 +S'gelatin silver print mounted on paperboard' +p113260 +sg25267 +g27 +sg25275 +S'1930' +p113261 +sg25268 +S'Poplars--Lake George' +p113262 +sg25270 +S'Alfred Stieglitz' +p113263 +sa(dp113264 +g25273 +S'gelatin silver print mounted on paperboard' +p113265 +sg25267 +g27 +sg25275 +S'1927' +p113266 +sg25268 +S'Equivalent, Set X, No. 1' +p113267 +sg25270 +S'Alfred Stieglitz' +p113268 +sa(dp113269 +g25273 +S'gelatin silver print mounted on paperboard' +p113270 +sg25267 +g27 +sg25275 +S'1927' +p113271 +sg25268 +S'Equivalent, Set X, No. 2' +p113272 +sg25270 +S'Alfred Stieglitz' +p113273 +sa(dp113274 +g25273 +S'gelatin silver print mounted on paperboard' +p113275 +sg25267 +g27 +sg25275 +S'1927' +p113276 +sg25268 +S'Equivalent, Set X, No. 3' +p113277 +sg25270 +S'Alfred Stieglitz' +p113278 +sa(dp113279 +g25273 +S'gelatin silver print mounted on paperboard' +p113280 +sg25267 +g27 +sg25275 +S'1931' +p113281 +sg25268 +S'Equivalent' +p113282 +sg25270 +S'Alfred Stieglitz' +p113283 +sa(dp113284 +g25273 +S'gelatin silver print mounted on paperboard' +p113285 +sg25267 +g27 +sg25275 +S'1931' +p113286 +sg25268 +S'Equivalent' +p113287 +sg25270 +S'Alfred Stieglitz' +p113288 +sa(dp113289 +g25273 +S'gelatin silver print mounted on paperboard' +p113290 +sg25267 +g27 +sg25275 +S'1931' +p113291 +sg25268 +S'Equivalent' +p113292 +sg25270 +S'Alfred Stieglitz' +p113293 +sa(dp113294 +g25273 +S'gelatin silver print mounted on paperboard' +p113295 +sg25267 +g27 +sg25275 +S'1931' +p113296 +sg25268 +S'Equivalent' +p113297 +sg25270 +S'Alfred Stieglitz' +p113298 +sa(dp113299 +g25273 +S'gelatin silver print mounted on paperboard' +p113300 +sg25267 +g27 +sg25275 +S'1931' +p113301 +sg25268 +S'Equivalent' +p113302 +sg25270 +S'Alfred Stieglitz' +p113303 +sa(dp113304 +g25268 +S'Winged Genii with Hobby Horse and Whip' +p113305 +sg25270 +S'Albrecht Altdorfer' +p113306 +sg25273 +S'engraving' +p113307 +sg25275 +S'c. 1520' +p113308 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a777.jpg' +p113309 +sg25267 +g27 +sa(dp113310 +g25273 +S'gelatin silver print mounted on paperboard' +p113311 +sg25267 +g27 +sg25275 +S'1931' +p113312 +sg25268 +S'Equivalent' +p113313 +sg25270 +S'Alfred Stieglitz' +p113314 +sa(dp113315 +g25273 +S'gelatin silver print mounted on paperboard' +p113316 +sg25267 +g27 +sg25275 +S'1931' +p113317 +sg25268 +S'Equivalent' +p113318 +sg25270 +S'Alfred Stieglitz' +p113319 +sa(dp113320 +g25273 +S'gelatin silver print mounted on paperboard' +p113321 +sg25267 +g27 +sg25275 +S'1931' +p113322 +sg25268 +S'Equivalent' +p113323 +sg25270 +S'Alfred Stieglitz' +p113324 +sa(dp113325 +g25273 +S'gelatin silver print mounted on paperboard' +p113326 +sg25267 +g27 +sg25275 +S'1931' +p113327 +sg25268 +S'Equivalent' +p113328 +sg25270 +S'Alfred Stieglitz' +p113329 +sa(dp113330 +g25273 +S'gelatin silver print mounted on paperboard' +p113331 +sg25267 +g27 +sg25275 +S'1931' +p113332 +sg25268 +S'Equivalent' +p113333 +sg25270 +S'Alfred Stieglitz' +p113334 +sa(dp113335 +g25273 +S'gelatin silver print mounted on paperboard' +p113336 +sg25267 +g27 +sg25275 +S'1931' +p113337 +sg25268 +S'Equivalent' +p113338 +sg25270 +S'Alfred Stieglitz' +p113339 +sa(dp113340 +g25273 +S'gelatin silver print mounted on paperboard' +p113341 +sg25267 +g27 +sg25275 +S'1931' +p113342 +sg25268 +S'Equivalent' +p113343 +sg25270 +S'Alfred Stieglitz' +p113344 +sa(dp113345 +g25273 +S'gelatin silver print mounted on paperboard' +p113346 +sg25267 +g27 +sg25275 +S'1931' +p113347 +sg25268 +S'Equivalent' +p113348 +sg25270 +S'Alfred Stieglitz' +p113349 +sa(dp113350 +g25273 +S'gelatin silver print mounted on paperboard' +p113351 +sg25267 +g27 +sg25275 +S'1931' +p113352 +sg25268 +S'Equivalent' +p113353 +sg25270 +S'Alfred Stieglitz' +p113354 +sa(dp113355 +g25273 +S'gelatin silver print mounted on paperboard' +p113356 +sg25267 +g27 +sg25275 +S'1930' +p113357 +sg25268 +S'Equivalent' +p113358 +sg25270 +S'Alfred Stieglitz' +p113359 +sa(dp113360 +g25273 +S'gelatin silver print mounted on paperboard' +p113361 +sg25267 +g27 +sg25275 +S'1931' +p113362 +sg25268 +S'Poplars--Lake George' +p113363 +sg25270 +S'Alfred Stieglitz' +p113364 +sa(dp113365 +g25273 +S'gelatin silver print mounted on paperboard' +p113366 +sg25267 +g27 +sg25275 +S'probably 1931' +p113367 +sg25268 +S'Equivalent' +p113368 +sg25270 +S'Alfred Stieglitz' +p113369 +sa(dp113370 +g25273 +S'gelatin silver print mounted on paperboard' +p113371 +sg25267 +g27 +sg25275 +S'probably 1929' +p113372 +sg25268 +S'Equivalent' +p113373 +sg25270 +S'Alfred Stieglitz' +p113374 +sa(dp113375 +g25273 +S'gelatin silver print mounted on paperboard' +p113376 +sg25267 +g27 +sg25275 +S'1934' +p113377 +sg25268 +S'Equivalent' +p113378 +sg25270 +S'Alfred Stieglitz' +p113379 +sa(dp113380 +g25273 +S'gelatin silver print mounted on paperboard' +p113381 +sg25267 +g27 +sg25275 +S'1922' +p113382 +sg25268 +S'Bird' +p113383 +sg25270 +S'Alfred Stieglitz' +p113384 +sa(dp113385 +g25273 +S'gelatin silver print mounted on paperboard' +p113386 +sg25267 +g27 +sg25275 +S'1922' +p113387 +sg25268 +S'Lake George' +p113388 +sg25270 +S'Alfred Stieglitz' +p113389 +sa(dp113390 +g25273 +S'gelatin silver print mounted on paperboard' +p113391 +sg25267 +g27 +sg25275 +S'1922' +p113392 +sg25268 +S'Lake George' +p113393 +sg25270 +S'Alfred Stieglitz' +p113394 +sa(dp113395 +g25273 +S'gelatin silver print mounted on paperboard' +p113396 +sg25267 +g27 +sg25275 +S'probably 1922' +p113397 +sg25268 +S'Lake George' +p113398 +sg25270 +S'Alfred Stieglitz' +p113399 +sa(dp113400 +g25273 +S'gelatin silver print mounted on paperboard' +p113401 +sg25267 +g27 +sg25275 +S'1922' +p113402 +sg25268 +S'Lake George' +p113403 +sg25270 +S'Alfred Stieglitz' +p113404 +sa(dp113405 +g25273 +S'gelatin silver print mounted on paperboard' +p113406 +sg25267 +g27 +sg25275 +S'probably 1929' +p113407 +sg25268 +S'Equivalent, Set F, No. 5' +p113408 +sg25270 +S'Alfred Stieglitz' +p113409 +sa(dp113410 +g25268 +S"Genii with Altdorfer's Schram" +p113411 +sg25270 +S'Albrecht Altdorfer' +p113412 +sg25273 +S'engraving' +p113413 +sg25275 +S'c. 1520' +p113414 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a776.jpg' +p113415 +sg25267 +g27 +sa(dp113416 +g25273 +S'gelatin silver print mounted on paperboard' +p113417 +sg25267 +g27 +sg25275 +S'1923' +p113418 +sg25268 +S'Songs of the Sky G1' +p113419 +sg25270 +S'Alfred Stieglitz' +p113420 +sa(dp113421 +g25273 +S'gelatin silver print mounted on paperboard' +p113422 +sg25267 +g27 +sg25275 +S'1923' +p113423 +sg25268 +S'Songs of the Sky G2' +p113424 +sg25270 +S'Alfred Stieglitz' +p113425 +sa(dp113426 +g25273 +S'gelatin silver print mounted on paperboard' +p113427 +sg25267 +g27 +sg25275 +S'1923' +p113428 +sg25268 +S'Songs of the Sky G3' +p113429 +sg25270 +S'Alfred Stieglitz' +p113430 +sa(dp113431 +g25273 +S'gelatin silver print mounted on paperboard' +p113432 +sg25267 +g27 +sg25275 +S'1923' +p113433 +sg25268 +S'Songs of the Sky G4' +p113434 +sg25270 +S'Alfred Stieglitz' +p113435 +sa(dp113436 +g25273 +S'gelatin silver print mounted on paperboard' +p113437 +sg25267 +g27 +sg25275 +S'1929' +p113438 +sg25268 +S'Equivalent K1' +p113439 +sg25270 +S'Alfred Stieglitz' +p113440 +sa(dp113441 +g25273 +S'gelatin silver print mounted on paperboard' +p113442 +sg25267 +g27 +sg25275 +S'1929' +p113443 +sg25268 +S'Equivalent K2' +p113444 +sg25270 +S'Alfred Stieglitz' +p113445 +sa(dp113446 +g25273 +S'gelatin silver print mounted on paperboard' +p113447 +sg25267 +g27 +sg25275 +S'1929' +p113448 +sg25268 +S'Equivalent K3' +p113449 +sg25270 +S'Alfred Stieglitz' +p113450 +sa(dp113451 +g25273 +S'gelatin silver print mounted on paperboard' +p113452 +sg25267 +g27 +sg25275 +S'possibly 1923' +p113453 +sg25268 +S'Songs of the Sky M1' +p113454 +sg25270 +S'Alfred Stieglitz' +p113455 +sa(dp113456 +g25273 +S'gelatin silver print mounted on paperboard' +p113457 +sg25267 +g27 +sg25275 +S'possibly 1923' +p113458 +sg25268 +S'Songs of the Sky M2' +p113459 +sg25270 +S'Alfred Stieglitz' +p113460 +sa(dp113461 +g25273 +S'gelatin silver print mounted on paperboard' +p113462 +sg25267 +g27 +sg25275 +S'1923' +p113463 +sg25268 +S'Songs of the Sky M3' +p113464 +sg25270 +S'Alfred Stieglitz' +p113465 +sa(dp113466 +g25268 +S'Centaur with a Vase' +p113467 +sg25270 +S'Albrecht Altdorfer' +p113468 +sg25273 +S'engraving' +p113469 +sg25275 +S'c. 1515/1525' +p113470 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a773.jpg' +p113471 +sg25267 +g27 +sa(dp113472 +g25273 +S'gelatin silver print mounted on paperboard' +p113473 +sg25267 +g27 +sg25275 +S'1923' +p113474 +sg25268 +S'Songs of the Sky M4' +p113475 +sg25270 +S'Alfred Stieglitz' +p113476 +sa(dp113477 +g25273 +S'gelatin silver print mounted on paperboard' +p113478 +sg25267 +g27 +sg25275 +S'probably 1923' +p113479 +sg25268 +S'Songs of the Sky Q3' +p113480 +sg25270 +S'Alfred Stieglitz' +p113481 +sa(dp113482 +g25273 +S'gelatin silver print mounted on paperboard' +p113483 +sg25267 +g27 +sg25275 +S'1923/1929' +p113484 +sg25268 +S'Songs of the Sky' +p113485 +sg25270 +S'Alfred Stieglitz' +p113486 +sa(dp113487 +g25273 +S'gelatin silver print mounted on paperboard' +p113488 +sg25267 +g27 +sg25275 +S'1925' +p113489 +sg25268 +S'Equivalent' +p113490 +sg25270 +S'Alfred Stieglitz' +p113491 +sa(dp113492 +g25273 +S'gelatin silver print mounted on paperboard' +p113493 +sg25267 +g27 +sg25275 +S'1930/1934' +p113494 +sg25268 +S'Equivalent' +p113495 +sg25270 +S'Alfred Stieglitz' +p113496 +sa(dp113497 +g25273 +S'gelatin silver print mounted on paperboard' +p113498 +sg25267 +g27 +sg25275 +S'1930/1934' +p113499 +sg25268 +S'Equivalent' +p113500 +sg25270 +S'Alfred Stieglitz' +p113501 +sa(dp113502 +g25268 +S'Equivalent' +p113503 +sg25270 +S'Alfred Stieglitz' +p113504 +sg25273 +S'gelatin silver print mounted on paperboard' +p113505 +sg25275 +S'probably 1925' +p113506 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a000627b.jpg' +p113507 +sg25267 +g27 +sa(dp113508 +g25273 +S'gelatin silver print mounted on paperboard' +p113509 +sg25267 +g27 +sg25275 +S'probably 1925' +p113510 +sg25268 +S'Equivalent' +p113511 +sg25270 +S'Alfred Stieglitz' +p113512 +sa(dp113513 +g25273 +S'gelatin silver print mounted on paperboard' +p113514 +sg25267 +g27 +sg25275 +S'probably 1925' +p113515 +sg25268 +S'Equivalent' +p113516 +sg25270 +S'Alfred Stieglitz' +p113517 +sa(dp113518 +g25273 +S'gelatin silver print mounted on paperboard' +p113519 +sg25267 +g27 +sg25275 +S'probably 1923' +p113520 +sg25268 +S'Songs of the Sky' +p113521 +sg25270 +S'Alfred Stieglitz' +p113522 +sa(dp113523 +g25268 +S'Two Satyrs Fighting about a Nymph' +p113524 +sg25270 +S'Albrecht Altdorfer' +p113525 +sg25273 +S'engraving' +p113526 +sg25275 +S'c. 1520/1525' +p113527 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a78f.jpg' +p113528 +sg25267 +g27 +sa(dp113529 +g25268 +S'Songs of the Sky Z1' +p113530 +sg25270 +S'Alfred Stieglitz' +p113531 +sg25273 +S'gelatin silver print mounted on paperboard' +p113532 +sg25275 +S'1923/1929' +p113533 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a000627c.jpg' +p113534 +sg25267 +g27 +sa(dp113535 +g25273 +S'gelatin silver print mounted on paperboard' +p113536 +sg25267 +g27 +sg25275 +S'1923/1929' +p113537 +sg25268 +S'Songs of the Sky' +p113538 +sg25270 +S'Alfred Stieglitz' +p113539 +sa(dp113540 +g25273 +S'gelatin silver print mounted on paperboard' +p113541 +sg25267 +g27 +sg25275 +S'1923 or 1929' +p113542 +sg25268 +S'Songs of the Sky W4' +p113543 +sg25270 +S'Alfred Stieglitz' +p113544 +sa(dp113545 +g25273 +S'gelatin silver print mounted on paperboard' +p113546 +sg25267 +g27 +sg25275 +S'1923 or 1929' +p113547 +sg25268 +S'Songs of the Sky W3' +p113548 +sg25270 +S'Alfred Stieglitz' +p113549 +sa(dp113550 +g25273 +S'gelatin silver print mounted on paperboard' +p113551 +sg25267 +g27 +sg25275 +S'1923/1929' +p113552 +sg25268 +S'Songs of the Sky' +p113553 +sg25270 +S'Alfred Stieglitz' +p113554 +sa(dp113555 +g25273 +S'gelatin silver print mounted on paperboard' +p113556 +sg25267 +g27 +sg25275 +S'1923/1929' +p113557 +sg25268 +S'Songs of the Sky' +p113558 +sg25270 +S'Alfred Stieglitz' +p113559 +sa(dp113560 +g25273 +S'gelatin silver print mounted on paperboard' +p113561 +sg25267 +g27 +sg25275 +S'1923' +p113562 +sg25268 +S'Songs of the Sky' +p113563 +sg25270 +S'Alfred Stieglitz' +p113564 +sa(dp113565 +g25273 +S'gelatin silver print mounted on paperboard' +p113566 +sg25267 +g27 +sg25275 +S'1923' +p113567 +sg25268 +S'Songs of the Sky' +p113568 +sg25270 +S'Alfred Stieglitz' +p113569 +sa(dp113570 +g25273 +S'gelatin silver print mounted on paperboard' +p113571 +sg25267 +g27 +sg25275 +S'possibly 1923' +p113572 +sg25268 +S'Songs of the Sky' +p113573 +sg25270 +S'Alfred Stieglitz' +p113574 +sa(dp113575 +g25273 +S'gelatin silver print mounted on paperboard' +p113576 +sg25267 +g27 +sg25275 +S'possibly 1929' +p113577 +sg25268 +S'Equivalent' +p113578 +sg25270 +S'Alfred Stieglitz' +p113579 +sa(dp113580 +g25268 +S'Winged Woman on a Star' +p113581 +sg25270 +S'Albrecht Altdorfer' +p113582 +sg25273 +S'engraving' +p113583 +sg25275 +S'c. 1515/1518' +p113584 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a762.jpg' +p113585 +sg25267 +g27 +sa(dp113586 +g25273 +S'gelatin silver print mounted on paperboard' +p113587 +sg25267 +g27 +sg25275 +S'possibly 1929' +p113588 +sg25268 +S'Equivalent' +p113589 +sg25270 +S'Alfred Stieglitz' +p113590 +sa(dp113591 +g25273 +S'gelatin silver print mounted on paperboard' +p113592 +sg25267 +g27 +sg25275 +S'probably 1925' +p113593 +sg25268 +S'Equivalent' +p113594 +sg25270 +S'Alfred Stieglitz' +p113595 +sa(dp113596 +g25273 +S'gelatin silver print mounted on paperboard' +p113597 +sg25267 +g27 +sg25275 +S'1923/1929' +p113598 +sg25268 +S'Songs of the Sky' +p113599 +sg25270 +S'Alfred Stieglitz' +p113600 +sa(dp113601 +g25273 +S'gelatin silver print mounted on paperboard' +p113602 +sg25267 +g27 +sg25275 +S'probably 1925' +p113603 +sg25268 +S'Equivalent' +p113604 +sg25270 +S'Alfred Stieglitz' +p113605 +sa(dp113606 +g25273 +S'gelatin silver print mounted on paperboard' +p113607 +sg25267 +g27 +sg25275 +S'1925/1927' +p113608 +sg25268 +S'Equivalent' +p113609 +sg25270 +S'Alfred Stieglitz' +p113610 +sa(dp113611 +g25273 +S'gelatin silver print mounted on paperboard' +p113612 +sg25267 +g27 +sg25275 +S'probably 1927' +p113613 +sg25268 +S'Equivalent' +p113614 +sg25270 +S'Alfred Stieglitz' +p113615 +sa(dp113616 +g25273 +S'gelatin silver print mounted on paperboard' +p113617 +sg25267 +g27 +sg25275 +S'probably 1927' +p113618 +sg25268 +S'Equivalent' +p113619 +sg25270 +S'Alfred Stieglitz' +p113620 +sa(dp113621 +g25273 +S'gelatin silver print mounted on paperboard' +p113622 +sg25267 +g27 +sg25275 +S'1923' +p113623 +sg25268 +S'Songs of the Sky' +p113624 +sg25270 +S'Alfred Stieglitz' +p113625 +sa(dp113626 +g25273 +S'gelatin silver print mounted on paperboard' +p113627 +sg25267 +g27 +sg25275 +S'1934' +p113628 +sg25268 +S'Equivalent' +p113629 +sg25270 +S'Alfred Stieglitz' +p113630 +sa(dp113631 +g25273 +S'gelatin silver print mounted on paperboard' +p113632 +sg25267 +g27 +sg25275 +S'1923/1929' +p113633 +sg25268 +S'Songs of the Sky' +p113634 +sg25270 +S'Alfred Stieglitz' +p113635 +sa(dp113636 +g25268 +S'The Pensive Carpenter' +p113637 +sg25270 +S'Albrecht Altdorfer' +p113638 +sg25273 +S'engraving' +p113639 +sg25275 +S'c. 1520/1530' +p113640 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a772.jpg' +p113641 +sg25267 +g27 +sa(dp113642 +g25273 +S'gelatin silver print mounted on paperboard' +p113643 +sg25267 +g27 +sg25275 +S'1923/1929' +p113644 +sg25268 +S'Songs of the Sky' +p113645 +sg25270 +S'Alfred Stieglitz' +p113646 +sa(dp113647 +g25273 +S'gelatin silver print mounted on paperboard' +p113648 +sg25267 +g27 +sg25275 +S'1934' +p113649 +sg25268 +S'Equivalent' +p113650 +sg25270 +S'Alfred Stieglitz' +p113651 +sa(dp113652 +g25273 +S'gelatin silver print mounted on paperboard' +p113653 +sg25267 +g27 +sg25275 +S'1934' +p113654 +sg25268 +S'Equivalent' +p113655 +sg25270 +S'Alfred Stieglitz' +p113656 +sa(dp113657 +g25273 +S'gelatin silver print mounted on paperboard' +p113658 +sg25267 +g27 +sg25275 +S'1934' +p113659 +sg25268 +S'Equivalent' +p113660 +sg25270 +S'Alfred Stieglitz' +p113661 +sa(dp113662 +g25268 +S'Song of the Sky' +p113663 +sg25270 +S'Alfred Stieglitz' +p113664 +sg25273 +S'gelatin silver print mounted on paperboard' +p113665 +sg25275 +S'1923' +p113666 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a000627d.jpg' +p113667 +sg25267 +g27 +sa(dp113668 +g25273 +S'gelatin silver print mounted on paperboard' +p113669 +sg25267 +g27 +sg25275 +S'1923/1929' +p113670 +sg25268 +S'Songs of the Sky' +p113671 +sg25270 +S'Alfred Stieglitz' +p113672 +sa(dp113673 +g25273 +S'gelatin silver print mounted on paperboard' +p113674 +sg25267 +g27 +sg25275 +S'1925' +p113675 +sg25268 +S'Equivalent' +p113676 +sg25270 +S'Alfred Stieglitz' +p113677 +sa(dp113678 +g25273 +S'gelatin silver print mounted on paperboard' +p113679 +sg25267 +g27 +sg25275 +S'1923/1929' +p113680 +sg25268 +S'Songs of the Sky' +p113681 +sg25270 +S'Alfred Stieglitz' +p113682 +sa(dp113683 +g25273 +S'gelatin silver print mounted on paperboard' +p113684 +sg25267 +g27 +sg25275 +S'1923/1929' +p113685 +sg25268 +S'Songs of the Sky' +p113686 +sg25270 +S'Alfred Stieglitz' +p113687 +sa(dp113688 +g25273 +S'gelatin silver print mounted on paperboard' +p113689 +sg25267 +g27 +sg25275 +S'1923/1929' +p113690 +sg25268 +S'Songs of the Sky' +p113691 +sg25270 +S'Alfred Stieglitz' +p113692 +sa(dp113693 +g25268 +S'The Pensive Carpenter' +p113694 +sg25270 +S'Albrecht Altdorfer' +p113695 +sg25273 +S'engraving' +p113696 +sg25275 +S'c. 1520/1530' +p113697 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a774.jpg' +p113698 +sg25267 +g27 +sa(dp113699 +g25273 +S'gelatin silver print mounted on paperboard' +p113700 +sg25267 +g27 +sg25275 +S'1925' +p113701 +sg25268 +S'Equivalent' +p113702 +sg25270 +S'Alfred Stieglitz' +p113703 +sa(dp113704 +g25273 +S'gelatin silver print mounted on paperboard' +p113705 +sg25267 +g27 +sg25275 +S'1925' +p113706 +sg25268 +S'Equivalent' +p113707 +sg25270 +S'Alfred Stieglitz' +p113708 +sa(dp113709 +g25273 +S'gelatin silver print mounted on paperboard' +p113710 +sg25267 +g27 +sg25275 +S'1923/1929' +p113711 +sg25268 +S'Songs of the Sky' +p113712 +sg25270 +S'Alfred Stieglitz' +p113713 +sa(dp113714 +g25273 +S'gelatin silver print mounted on paperboard' +p113715 +sg25267 +g27 +sg25275 +S'1925/1927' +p113716 +sg25268 +S'Equivalent' +p113717 +sg25270 +S'Alfred Stieglitz' +p113718 +sa(dp113719 +g25273 +S'gelatin silver print mounted on paperboard' +p113720 +sg25267 +g27 +sg25275 +S'probably 1925' +p113721 +sg25268 +S'Equivalent' +p113722 +sg25270 +S'Alfred Stieglitz' +p113723 +sa(dp113724 +g25273 +S'gelatin silver print mounted on paperboard' +p113725 +sg25267 +g27 +sg25275 +S'probably 1925' +p113726 +sg25268 +S'Equivalent' +p113727 +sg25270 +S'Alfred Stieglitz' +p113728 +sa(dp113729 +g25273 +S'gelatin silver print mounted on paperboard' +p113730 +sg25267 +g27 +sg25275 +S'1923/1927' +p113731 +sg25268 +S'Songs of the Sky' +p113732 +sg25270 +S'Alfred Stieglitz' +p113733 +sa(dp113734 +g25273 +S'gelatin silver print mounted on paperboard' +p113735 +sg25267 +g27 +sg25275 +S'1923/1927' +p113736 +sg25268 +S'Songs of the Sky' +p113737 +sg25270 +S'Alfred Stieglitz' +p113738 +sa(dp113739 +g25268 +S'Equivalent' +p113740 +sg25270 +S'Alfred Stieglitz' +p113741 +sg25273 +S'gelatin silver print mounted on paperboard' +p113742 +sg25275 +S'probably 1927' +p113743 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a000627e.jpg' +p113744 +sg25267 +g27 +sa(dp113745 +g25273 +S'gelatin silver print mounted on paperboard' +p113746 +sg25267 +g27 +sg25275 +S'probably 1927' +p113747 +sg25268 +S'Equivalent' +p113748 +sg25270 +S'Alfred Stieglitz' +p113749 +sa(dp113750 +g25268 +S'The Roman Courtesan (The Revenge of the Magician Virgil)' +p113751 +sg25270 +S'Albrecht Altdorfer' +p113752 +sg25273 +S'engraving' +p113753 +sg25275 +S'c. 1520/1530' +p113754 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a787.jpg' +p113755 +sg25267 +g27 +sa(dp113756 +g25273 +S'gelatin silver print mounted on paperboard' +p113757 +sg25267 +g27 +sg25275 +S'probably 1927' +p113758 +sg25268 +S'Equivalent' +p113759 +sg25270 +S'Alfred Stieglitz' +p113760 +sa(dp113761 +g25273 +S'gelatin silver print mounted on paperboard' +p113762 +sg25267 +g27 +sg25275 +S'1924' +p113763 +sg25268 +S'Songs of the Sky' +p113764 +sg25270 +S'Alfred Stieglitz' +p113765 +sa(dp113766 +g25273 +S'gelatin silver print mounted on paperboard' +p113767 +sg25267 +g27 +sg25275 +S'1923/1929' +p113768 +sg25268 +S'Songs of the Sky' +p113769 +sg25270 +S'Alfred Stieglitz' +p113770 +sa(dp113771 +g25273 +S'gelatin silver print mounted on paperboard' +p113772 +sg25267 +g27 +sg25275 +S'1923/1929' +p113773 +sg25268 +S'Songs of the Sky' +p113774 +sg25270 +S'Alfred Stieglitz' +p113775 +sa(dp113776 +g25273 +S'gelatin silver print mounted on paperboard' +p113777 +sg25267 +g27 +sg25275 +S'1923/1929' +p113778 +sg25268 +S'Songs of the Sky' +p113779 +sg25270 +S'Alfred Stieglitz' +p113780 +sa(dp113781 +g25268 +S'Songs of the Sky' +p113782 +sg25270 +S'Alfred Stieglitz' +p113783 +sg25273 +S'gelatin silver print mounted on paperboard' +p113784 +sg25275 +S'1923/1931' +p113785 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a000627f.jpg' +p113786 +sg25267 +g27 +sa(dp113787 +g25273 +S'gelatin silver print mounted on paperboard' +p113788 +sg25267 +g27 +sg25275 +S'1925' +p113789 +sg25268 +S'Equivalent' +p113790 +sg25270 +S'Alfred Stieglitz' +p113791 +sa(dp113792 +g25273 +S'gelatin silver print mounted on paperboard' +p113793 +sg25267 +g27 +sg25275 +S'1925' +p113794 +sg25268 +S'Equivalent' +p113795 +sg25270 +S'Alfred Stieglitz' +p113796 +sa(dp113797 +g25273 +S'gelatin silver print mounted on paperboard' +p113798 +sg25267 +g27 +sg25275 +S'1923/1929' +p113799 +sg25268 +S'Songs of the Sky' +p113800 +sg25270 +S'Alfred Stieglitz' +p113801 +sa(dp113802 +g25273 +S'gelatin silver print mounted on paperboard' +p113803 +sg25267 +g27 +sg25275 +S'1923/1929' +p113804 +sg25268 +S'Songs of the Sky' +p113805 +sg25270 +S'Alfred Stieglitz' +p113806 +sa(dp113807 +g25268 +S'Knight in Armour with Bread and Wine' +p113808 +sg25270 +S'Albrecht Altdorfer' +p113809 +sg25273 +S'engraving' +p113810 +sg25275 +S'c. 1512/1515' +p113811 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a763.jpg' +p113812 +sg25267 +g27 +sa(dp113813 +g25273 +S'gelatin silver print mounted on paperboard' +p113814 +sg25267 +g27 +sg25275 +S'1923/1929' +p113815 +sg25268 +S'Songs of the Sky' +p113816 +sg25270 +S'Alfred Stieglitz' +p113817 +sa(dp113818 +g25273 +S'gelatin silver print mounted on paperboard' +p113819 +sg25267 +g27 +sg25275 +S'1923/1927' +p113820 +sg25268 +S'Songs of the Sky' +p113821 +sg25270 +S'Alfred Stieglitz' +p113822 +sa(dp113823 +g25273 +S'gelatin silver print mounted on paperboard' +p113824 +sg25267 +g27 +sg25275 +S'1923/1927' +p113825 +sg25268 +S'Songs of the Sky' +p113826 +sg25270 +S'Alfred Stieglitz' +p113827 +sa(dp113828 +g25273 +S'gelatin silver print mounted on paperboard' +p113829 +sg25267 +g27 +sg25275 +S'1925/1927' +p113830 +sg25268 +S'Equivalent' +p113831 +sg25270 +S'Alfred Stieglitz' +p113832 +sa(dp113833 +g25273 +S'gelatin silver print mounted on paperboard' +p113834 +sg25267 +g27 +sg25275 +S'1934' +p113835 +sg25268 +S'Equivalent' +p113836 +sg25270 +S'Alfred Stieglitz' +p113837 +sa(dp113838 +g25273 +S'gelatin silver print mounted on paperboard' +p113839 +sg25267 +g27 +sg25275 +S'1922' +p113840 +sg25268 +S'Birds' +p113841 +sg25270 +S'Alfred Stieglitz' +p113842 +sa(dp113843 +g25273 +S'gelatin silver print mounted on paperboard' +p113844 +sg25267 +g27 +sg25275 +S'probably 1924' +p113845 +sg25268 +S'Tree Set 3' +p113846 +sg25270 +S'Alfred Stieglitz' +p113847 +sa(dp113848 +g25273 +S'gelatin silver print mounted on paperboard' +p113849 +sg25267 +g27 +sg25275 +S'probably 1923' +p113850 +sg25268 +S'Songs of the Sky' +p113851 +sg25270 +S'Alfred Stieglitz' +p113852 +sa(dp113853 +g25273 +S'gelatin silver print mounted on paperboard' +p113854 +sg25267 +g27 +sg25275 +S'1923/1927' +p113855 +sg25268 +S'Songs of the Sky' +p113856 +sg25270 +S'Alfred Stieglitz' +p113857 +sa(dp113858 +g25273 +S'gelatin silver print' +p113859 +sg25267 +g27 +sg25275 +S'1927' +p113860 +sg25268 +S'From Room "3003"--The Shelton, New York, Looking Northeast' +p113861 +sg25270 +S'Alfred Stieglitz' +p113862 +sa(dp113863 +g25268 +S'Bathing Woman' +p113864 +sg25270 +S'Albrecht Altdorfer' +p113865 +sg25273 +S'engraving' +p113866 +sg25275 +S'c. 1520/1530' +p113867 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a775.jpg' +p113868 +sg25267 +g27 +sa(dp113869 +g25273 +S'gelatin silver print' +p113870 +sg25267 +g27 +sg25275 +S'1927' +p113871 +sg25268 +S'From Room 3003--(Looking Northwest)--Shelton Hotel, New York' +p113872 +sg25270 +S'Alfred Stieglitz' +p113873 +sa(dp113874 +g25273 +S'gelatin silver print' +p113875 +sg25267 +g27 +sg25275 +S'1927' +p113876 +sg25268 +S'From "Room 303" (Intimate Gallery)--489 Park Avenue -- New York' +p113877 +sg25270 +S'Alfred Stieglitz' +p113878 +sa(dp113879 +g25273 +S'gelatin silver print' +p113880 +sg25267 +g27 +sg25275 +S'1927' +p113881 +sg25268 +S'From "Room 303" (Intimate Gallery)--New York --489 Park Ave' +p113882 +sg25270 +S'Alfred Stieglitz' +p113883 +sa(dp113884 +g25273 +S'gelatin silver print' +p113885 +sg25267 +g27 +sg25275 +S'1927' +p113886 +sg25268 +S'From "Room 303"--(Intimate Gallery)--New York' +p113887 +sg25270 +S'Alfred Stieglitz' +p113888 +sa(dp113889 +g25273 +S'gelatin silver print' +p113890 +sg25267 +g27 +sg25275 +S'1927' +p113891 +sg25268 +S'From Room 303 (Intimate Gallery)--489 Park Ave.--New York' +p113892 +sg25270 +S'Alfred Stieglitz' +p113893 +sa(dp113894 +g25273 +S'gelatin silver print' +p113895 +sg25267 +g27 +sg25275 +S'1927' +p113896 +sg25268 +S'Looking North from Room 3003--Shelton Hotel, New York' +p113897 +sg25270 +S'Alfred Stieglitz' +p113898 +sa(dp113899 +g25273 +S'gelatin silver print' +p113900 +sg25267 +g27 +sg25275 +S'1927' +p113901 +sg25268 +S'From The Shelton, New York, 30th Floor-- Looking North' +p113902 +sg25270 +S'Alfred Stieglitz' +p113903 +sa(dp113904 +g25273 +S'gelatin silver print' +p113905 +sg25267 +g27 +sg25275 +S'1927' +p113906 +sg25268 +S'From the Shelton, New York, 30th Floor Looking North' +p113907 +sg25270 +S'Alfred Stieglitz' +p113908 +sa(dp113909 +g25273 +S'gelatin silver print' +p113910 +sg25267 +g27 +sg25275 +S'1927' +p113911 +sg25268 +S'From the Shelton, New York (Room 3003) Looking Southeast' +p113912 +sg25270 +S'Alfred Stieglitz' +p113913 +sa(dp113914 +g25273 +S'gelatin silver print' +p113915 +sg25267 +g27 +sg25275 +S'1930' +p113916 +sg25268 +S'From My Window at An American Place, North' +p113917 +sg25270 +S'Alfred Stieglitz' +p113918 +sa(dp113919 +g25268 +S'Goblet with the Infant Hercules on Top' +p113920 +sg25270 +S'Albrecht Altdorfer' +p113921 +sg25273 +S'etching' +p113922 +sg25275 +S'c. 1520/1525' +p113923 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7a0.jpg' +p113924 +sg25267 +g27 +sa(dp113925 +g25268 +S'From My Window at An American Place, North' +p113926 +sg25270 +S'Alfred Stieglitz' +p113927 +sg25273 +S'gelatin silver print' +p113928 +sg25275 +S'1930' +p113929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006280.jpg' +p113930 +sg25267 +g27 +sa(dp113931 +g25273 +S'gelatin silver print' +p113932 +sg25267 +g27 +sg25275 +S'1930' +p113933 +sg25268 +S'From My Window at An American Place, North' +p113934 +sg25270 +S'Alfred Stieglitz' +p113935 +sa(dp113936 +g25273 +S'gelatin silver print' +p113937 +sg25267 +g27 +sg25275 +S'1931' +p113938 +sg25268 +S'From My Window at The Shelton, Southeast' +p113939 +sg25270 +S'Alfred Stieglitz' +p113940 +sa(dp113941 +g25273 +S'gelatin silver print' +p113942 +sg25267 +g27 +sg25275 +S'1931' +p113943 +sg25268 +S'From My Window at the Shelton, Southeast' +p113944 +sg25270 +S'Alfred Stieglitz' +p113945 +sa(dp113946 +g25273 +S'gelatin silver print' +p113947 +sg25267 +g27 +sg25275 +S'1932' +p113948 +sg25268 +S'From My Window at the Shelton, Northeast' +p113949 +sg25270 +S'Alfred Stieglitz' +p113950 +sa(dp113951 +g25273 +S'gelatin silver print' +p113952 +sg25267 +g27 +sg25275 +S'1930/1931' +p113953 +sg25268 +S'From My Window at An American Place, North' +p113954 +sg25270 +S'Alfred Stieglitz' +p113955 +sa(dp113956 +g25273 +S'gelatin silver print' +p113957 +sg25267 +g27 +sg25275 +S'1930/1931' +p113958 +sg25268 +S'From My Window at An American Place, North' +p113959 +sg25270 +S'Alfred Stieglitz' +p113960 +sa(dp113961 +g25273 +S'gelatin silver print' +p113962 +sg25267 +g27 +sg25275 +S'1930/1931' +p113963 +sg25268 +S'From My Window at An American Place, North' +p113964 +sg25270 +S'Alfred Stieglitz' +p113965 +sa(dp113966 +g25268 +S'From My Window at An American Place, North' +p113967 +sg25270 +S'Alfred Stieglitz' +p113968 +sg25273 +S'gelatin silver print' +p113969 +sg25275 +S'1931' +p113970 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006281.jpg' +p113971 +sg25267 +g27 +sa(dp113972 +g25273 +S'gelatin silver print' +p113973 +sg25267 +g27 +sg25275 +S'1931' +p113974 +sg25268 +S'From My Window at An American Place, North' +p113975 +sg25270 +S'Alfred Stieglitz' +p113976 +sa(dp113977 +g25268 +S'Covered Goblet with Winged Ball' +p113978 +sg25270 +S'Albrecht Altdorfer' +p113979 +sg25273 +S'etching' +p113980 +sg25275 +S'c. 1520/1525' +p113981 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7a2.jpg' +p113982 +sg25267 +g27 +sa(dp113983 +g25273 +S'gelatin silver print' +p113984 +sg25267 +g27 +sg25275 +S'1931' +p113985 +sg25268 +S'From My Window at An American Place, North' +p113986 +sg25270 +S'Alfred Stieglitz' +p113987 +sa(dp113988 +g25273 +S'gelatin silver print' +p113989 +sg25267 +g27 +sg25275 +S'1931' +p113990 +sg25268 +S'From My Window at An American Place, North' +p113991 +sg25270 +S'Alfred Stieglitz' +p113992 +sa(dp113993 +g25273 +S'gelatin silver print' +p113994 +sg25267 +g27 +sg25275 +S'1931' +p113995 +sg25268 +S'From My Window at An American Place, North' +p113996 +sg25270 +S'Alfred Stieglitz' +p113997 +sa(dp113998 +g25273 +S'gelatin silver print' +p113999 +sg25267 +g27 +sg25275 +S'1930/1931' +p114000 +sg25268 +S'From My Window at the Shelton, North' +p114001 +sg25270 +S'Alfred Stieglitz' +p114002 +sa(dp114003 +g25273 +S'gelatin silver print' +p114004 +sg25267 +g27 +sg25275 +S'1931' +p114005 +sg25268 +S'From My Window at the Shelton, North' +p114006 +sg25270 +S'Alfred Stieglitz' +p114007 +sa(dp114008 +g25273 +S'gelatin silver print' +p114009 +sg25267 +g27 +sg25275 +S'1931' +p114010 +sg25268 +S'From My Window at the Shelton, North' +p114011 +sg25270 +S'Alfred Stieglitz' +p114012 +sa(dp114013 +g25273 +S'gelatin silver print' +p114014 +sg25267 +g27 +sg25275 +S'1930/1931' +p114015 +sg25268 +S'From My Window at the Shelton, North' +p114016 +sg25270 +S'Alfred Stieglitz' +p114017 +sa(dp114018 +g25273 +S'gelatin silver print' +p114019 +sg25267 +g27 +sg25275 +S'1930' +p114020 +sg25268 +S'From My Window at the Shelton, North' +p114021 +sg25270 +S'Alfred Stieglitz' +p114022 +sa(dp114023 +g25273 +S'gelatin silver print' +p114024 +sg25267 +g27 +sg25275 +S'1930' +p114025 +sg25268 +S'From My Window at the Shelton, North' +p114026 +sg25270 +S'Alfred Stieglitz' +p114027 +sa(dp114028 +g25273 +S'gelatin silver print' +p114029 +sg25267 +g27 +sg25275 +S'1930' +p114030 +sg25268 +S'From My Window at the Shelton, North' +p114031 +sg25270 +S'Alfred Stieglitz' +p114032 +sa(dp114033 +g25268 +S'Goblet with Pomegranate on the Knob' +p114034 +sg25270 +S'Albrecht Altdorfer' +p114035 +sg25273 +S'etching' +p114036 +sg25275 +S'c. 1520/1525' +p114037 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7a3.jpg' +p114038 +sg25267 +g27 +sa(dp114039 +g25273 +S'gelatin silver print' +p114040 +sg25267 +g27 +sg25275 +S'1930' +p114041 +sg25268 +S'From My Window at the Shelton, North' +p114042 +sg25270 +S'Alfred Stieglitz' +p114043 +sa(dp114044 +g25273 +S'gelatin silver print' +p114045 +sg25267 +g27 +sg25275 +S'1930' +p114046 +sg25268 +S'From My Window at the Shelton, North' +p114047 +sg25270 +S'Alfred Stieglitz' +p114048 +sa(dp114049 +g25273 +S'gelatin silver print' +p114050 +sg25267 +g27 +sg25275 +S'1931' +p114051 +sg25268 +S'From My Window at the Shelton, North' +p114052 +sg25270 +S'Alfred Stieglitz' +p114053 +sa(dp114054 +g25273 +S'gelatin silver print' +p114055 +sg25267 +g27 +sg25275 +S'1931' +p114056 +sg25268 +S'From My Window at the Shelton, North' +p114057 +sg25270 +S'Alfred Stieglitz' +p114058 +sa(dp114059 +g25273 +S'gelatin silver print' +p114060 +sg25267 +g27 +sg25275 +S'1931' +p114061 +sg25268 +S'From My Window at the Shelton, North' +p114062 +sg25270 +S'Alfred Stieglitz' +p114063 +sa(dp114064 +g25273 +S'gelatin silver print' +p114065 +sg25267 +g27 +sg25275 +S'1936/1937' +p114066 +sg25268 +S'New York from 405 East 54th Street' +p114067 +sg25270 +S'Alfred Stieglitz' +p114068 +sa(dp114069 +g25273 +S'gelatin silver print' +p114070 +sg25267 +g27 +sg25275 +S'1936/1937' +p114071 +sg25268 +S'New York from 405 East 54th Street' +p114072 +sg25270 +S'Alfred Stieglitz' +p114073 +sa(dp114074 +g25268 +S'From My Window at the Shelton, West' +p114075 +sg25270 +S'Alfred Stieglitz' +p114076 +sg25273 +S'gelatin silver print' +p114077 +sg25275 +S'1931' +p114078 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006282.jpg' +p114079 +sg25267 +g27 +sa(dp114080 +g25273 +S'gelatin silver print' +p114081 +sg25267 +g27 +sg25275 +S'1931' +p114082 +sg25268 +S'From My Window at the Shelton, West' +p114083 +sg25270 +S'Alfred Stieglitz' +p114084 +sa(dp114085 +g25273 +S'gelatin silver print' +p114086 +sg25267 +g27 +sg25275 +S'1931' +p114087 +sg25268 +S'From My Window at the Shelton, West' +p114088 +sg25270 +S'Alfred Stieglitz' +p114089 +sa(dp114090 +g25268 +S'Young Man and Maids' +p114091 +sg25270 +S'Erhard Altdorfer' +p114092 +sg25273 +S'engraving' +p114093 +sg25275 +S'1506' +p114094 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7a4.jpg' +p114095 +sg25267 +g27 +sa(dp114096 +g25273 +S'gelatin silver print' +p114097 +sg25267 +g27 +sg25275 +S'1931' +p114098 +sg25268 +S'From My Window at the Shelton, West' +p114099 +sg25270 +S'Alfred Stieglitz' +p114100 +sa(dp114101 +g25273 +S'gelatin silver print' +p114102 +sg25267 +g27 +sg25275 +S'1931' +p114103 +sg25268 +S'From My Window at An American Place, North' +p114104 +sg25270 +S'Alfred Stieglitz' +p114105 +sa(dp114106 +g25273 +S'gelatin silver print' +p114107 +sg25267 +g27 +sg25275 +S'1931' +p114108 +sg25268 +S'From My Window at An American Place, North' +p114109 +sg25270 +S'Alfred Stieglitz' +p114110 +sa(dp114111 +g25273 +S'gelatin silver print' +p114112 +sg25267 +g27 +sg25275 +S'1931' +p114113 +sg25268 +S'From My Window at An American Place, North' +p114114 +sg25270 +S'Alfred Stieglitz' +p114115 +sa(dp114116 +g25273 +S'gelatin silver print' +p114117 +sg25267 +g27 +sg25275 +S'March 1932' +p114118 +sg25268 +S'From My Window at An American Place, Southwest' +p114119 +sg25270 +S'Alfred Stieglitz' +p114120 +sa(dp114121 +g25268 +S'From My Window at An American Place, Southwest' +p114122 +sg25270 +S'Alfred Stieglitz' +p114123 +sg25273 +S'gelatin silver print' +p114124 +sg25275 +S'1932' +p114125 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006283.jpg' +p114126 +sg25267 +g27 +sa(dp114127 +g25273 +S'gelatin silver print' +p114128 +sg25267 +g27 +sg25275 +S'March 1932' +p114129 +sg25268 +S'From My Window at An American Place, Southwest' +p114130 +sg25270 +S'Alfred Stieglitz' +p114131 +sa(dp114132 +g25273 +S'gelatin silver print' +p114133 +sg25267 +g27 +sg25275 +S'March 1932' +p114134 +sg25268 +S'From My Window at An American Place, Southwest' +p114135 +sg25270 +S'Alfred Stieglitz' +p114136 +sa(dp114137 +g25273 +S'gelatin silver print' +p114138 +sg25267 +g27 +sg25275 +S'1932' +p114139 +sg25268 +S'From My Window at An American Place, Southwest' +p114140 +sg25270 +S'Alfred Stieglitz' +p114141 +sa(dp114142 +g25273 +S'gelatin silver print' +p114143 +sg25267 +g27 +sg25275 +S'April 1932' +p114144 +sg25268 +S'From My Window at An American Place, Southwest' +p114145 +sg25270 +S'Alfred Stieglitz' +p114146 +sa(dp114147 +g25268 +S'Albrecht Altdorfer' +p114148 +sg25270 +S'Jeremias Falck' +p114149 +sg25273 +S'etching and engraving' +p114150 +sg25275 +S'unknown date\n' +p114151 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2be.jpg' +p114152 +sg25267 +g27 +sa(dp114153 +g25273 +S'gelatin silver print' +p114154 +sg25267 +g27 +sg25275 +S'April 1932' +p114155 +sg25268 +S'From My Window at An American Place, Southwest' +p114156 +sg25270 +S'Alfred Stieglitz' +p114157 +sa(dp114158 +g25273 +S'gelatin silver print' +p114159 +sg25267 +g27 +sg25275 +S'April-June 1932' +p114160 +sg25268 +S'From My Window at An American Place, Southwest' +p114161 +sg25270 +S'Alfred Stieglitz' +p114162 +sa(dp114163 +g25273 +S'gelatin silver print' +p114164 +sg25267 +g27 +sg25275 +S'April-June 1932' +p114165 +sg25268 +S'From My Window at An American Place, Southwest' +p114166 +sg25270 +S'Alfred Stieglitz' +p114167 +sa(dp114168 +g25273 +S'gelatin silver print' +p114169 +sg25267 +g27 +sg25275 +S'probably 1931' +p114170 +sg25268 +S'From My Window at An American Place, North' +p114171 +sg25270 +S'Alfred Stieglitz' +p114172 +sa(dp114173 +g25273 +S'gelatin silver print' +p114174 +sg25267 +g27 +sg25275 +S'1931' +p114175 +sg25268 +S'New York from An American Place' +p114176 +sg25270 +S'Alfred Stieglitz' +p114177 +sa(dp114178 +g25273 +S'gelatin silver print' +p114179 +sg25267 +g27 +sg25275 +S'1931' +p114180 +sg25268 +S'New York from An American Place' +p114181 +sg25270 +S'Alfred Stieglitz' +p114182 +sa(dp114183 +g25273 +S'gelatin silver print' +p114184 +sg25267 +g27 +sg25275 +S'1933' +p114185 +sg25268 +S'Water Tower and Radio City, New York' +p114186 +sg25270 +S'Alfred Stieglitz' +p114187 +sa(dp114188 +g25273 +S'gelatin silver print' +p114189 +sg25267 +g27 +sg25275 +S'1933' +p114190 +sg25268 +S'Water Tower and Radio City, New York' +p114191 +sg25270 +S'Alfred Stieglitz' +p114192 +sa(dp114193 +g25273 +S'gelatin silver print' +p114194 +sg25267 +g27 +sg25275 +S'April-June 1932' +p114195 +sg25268 +S'From My Window at An American Place, Southwest' +p114196 +sg25270 +S'Alfred Stieglitz' +p114197 +sa(dp114198 +g25273 +S'gelatin silver print' +p114199 +sg25267 +g27 +sg25275 +S'April-June 1932' +p114200 +sg25268 +S'From My Window at An American Place, Southwest' +p114201 +sg25270 +S'Alfred Stieglitz' +p114202 +sa(dp114203 +g25268 +S'The Annunciation and Expulsion from Paradise' +p114204 +sg25270 +S'Giovanni di Paolo' +p114205 +sg25273 +S'tempera on panel' +p114206 +sg25275 +S'c. 1435' +p114207 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000813.jpg' +p114208 +sg25267 +S"Giovanni di Paolo's \n Disregarding naturalistic detail in favor of flat, decorative pattern, Giovanni\nwas nevertheless aware of current Renaissance experiments in linear perspective,\nas exemplified by the receding floor tiles in both the central loggia and Joseph's\ncubicle. The artist's decision, however, not to follow realistic spatial and scale\nrelationships completely, and his use of willowy, elegantly dressed figures, place\nhim firmly within the medieval pictorial tradition, now reappearing as the International\nStyle.\n " +p114209 +sa(dp114210 +g25268 +S'Arion and Nereide' +p114211 +sg25270 +S'Albrecht Altdorfer' +p114212 +sg25273 +S'engraving' +p114213 +sg25275 +S'c. 1520/1525' +p114214 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a790.jpg' +p114215 +sg25267 +g27 +sa(dp114216 +g25273 +S'gelatin silver print' +p114217 +sg25267 +g27 +sg25275 +S'1931' +p114218 +sg25268 +S'From My Window at the Shelton, North' +p114219 +sg25270 +S'Alfred Stieglitz' +p114220 +sa(dp114221 +g25273 +S'gelatin silver print' +p114222 +sg25267 +g27 +sg25275 +S'1931' +p114223 +sg25268 +S'From My Window at the Shelton, North' +p114224 +sg25270 +S'Alfred Stieglitz' +p114225 +sa(dp114226 +g25273 +S'gelatin silver print' +p114227 +sg25267 +g27 +sg25275 +S'1935' +p114228 +sg25268 +S'New York from the Shelton' +p114229 +sg25270 +S'Alfred Stieglitz' +p114230 +sa(dp114231 +g25273 +S'gelatin silver print' +p114232 +sg25267 +g27 +sg25275 +S'1935' +p114233 +sg25268 +S'New York from the Shelton' +p114234 +sg25270 +S'Alfred Stieglitz' +p114235 +sa(dp114236 +g25273 +S'gelatin silver print' +p114237 +sg25267 +g27 +sg25275 +S'1935' +p114238 +sg25268 +S'New York from the Shelton' +p114239 +sg25270 +S'Alfred Stieglitz' +p114240 +sa(dp114241 +g25273 +S'gelatin silver print' +p114242 +sg25267 +g27 +sg25275 +S'1935' +p114243 +sg25268 +S'New York from the Shelton' +p114244 +sg25270 +S'Alfred Stieglitz' +p114245 +sa(dp114246 +g25273 +S'gelatin silver print' +p114247 +sg25267 +g27 +sg25275 +S'1935' +p114248 +sg25268 +S'New York from the Shelton' +p114249 +sg25270 +S'Alfred Stieglitz' +p114250 +sa(dp114251 +g25273 +S'gelatin silver print' +p114252 +sg25267 +g27 +sg25275 +S'1935' +p114253 +sg25268 +S'New York from the Shelton' +p114254 +sg25270 +S'Alfred Stieglitz' +p114255 +sa(dp114256 +g25273 +S'gelatin silver print' +p114257 +sg25267 +g27 +sg25275 +S'1935' +p114258 +sg25268 +S'New York from the Shelton' +p114259 +sg25270 +S'Alfred Stieglitz' +p114260 +sa(dp114261 +g25273 +S'gelatin silver print' +p114262 +sg25267 +g27 +sg25275 +S'1935' +p114263 +sg25268 +S'New York from the Shelton' +p114264 +sg25270 +S'Alfred Stieglitz' +p114265 +sa(dp114266 +g25273 +S'etching' +p114267 +sg25267 +g27 +sg25275 +S'1936' +p114268 +sg25268 +S'Up Above the World' +p114269 +sg25270 +S'James E. Allen' +p114270 +sa(dp114271 +g25273 +S'gelatin silver print' +p114272 +sg25267 +g27 +sg25275 +S'1935' +p114273 +sg25268 +S'New York from the Shelton' +p114274 +sg25270 +S'Alfred Stieglitz' +p114275 +sa(dp114276 +g25273 +S'gelatin silver print' +p114277 +sg25267 +g27 +sg25275 +S'1935' +p114278 +sg25268 +S'New York from the Shelton' +p114279 +sg25270 +S'Alfred Stieglitz' +p114280 +sa(dp114281 +g25273 +S'gelatin silver print' +p114282 +sg25267 +g27 +sg25275 +S'1935' +p114283 +sg25268 +S'New York from the Shelton' +p114284 +sg25270 +S'Alfred Stieglitz' +p114285 +sa(dp114286 +g25273 +S'gelatin silver print' +p114287 +sg25267 +g27 +sg25275 +S'1936/1937' +p114288 +sg25268 +S'New York from 405 E 54th Street' +p114289 +sg25270 +S'Alfred Stieglitz' +p114290 +sa(dp114291 +g25273 +S'gelatin silver print' +p114292 +sg25267 +g27 +sg25275 +S'1936/1937' +p114293 +sg25268 +S'New York from 405 E 54th Street' +p114294 +sg25270 +S'Alfred Stieglitz' +p114295 +sa(dp114296 +g25273 +S'gelatin silver print' +p114297 +sg25267 +g27 +sg25275 +S'1937' +p114298 +sg25268 +S'New York from 405 E 54th Street' +p114299 +sg25270 +S'Alfred Stieglitz' +p114300 +sa(dp114301 +g25273 +S'gelatin silver print' +p114302 +sg25267 +g27 +sg25275 +S'1937' +p114303 +sg25268 +S'New York from 405 E 54th Street' +p114304 +sg25270 +S'Alfred Stieglitz' +p114305 +sa(dp114306 +g25273 +S'gelatin silver print' +p114307 +sg25267 +g27 +sg25275 +S'1937' +p114308 +sg25268 +S'New York from 405 E 54th Street' +p114309 +sg25270 +S'Alfred Stieglitz' +p114310 +sa(dp114311 +g25273 +S'gelatin silver print' +p114312 +sg25267 +g27 +sg25275 +S'1926/1927' +p114313 +sg25268 +S'From the Shelton, New York, Looking East' +p114314 +sg25270 +S'Alfred Stieglitz' +p114315 +sa(dp114316 +g25273 +S'platinum print' +p114317 +sg25267 +g27 +sg25275 +S'1894' +p114318 +sg25268 +S'The Jungfrau Group' +p114319 +sg25270 +S'Alfred Stieglitz' +p114320 +sa(dp114321 +g25273 +S'lithograph' +p114322 +sg25267 +g27 +sg25275 +S'1935' +p114323 +sg25268 +S'Mother and Child' +p114324 +sg25270 +S'Emilio Amero' +p114325 +sa(dp114326 +g25273 +S'palladium print' +p114327 +sg25267 +g27 +sg25275 +S'1922' +p114328 +sg25268 +S'Rebecca Salsbury Strand' +p114329 +sg25270 +S'Alfred Stieglitz' +p114330 +sa(dp114331 +g25273 +S'(artist after)' +p114332 +sg25267 +g27 +sg25275 +S'\n' +p114333 +sg25268 +S'Camera Work: Vol.1: Numbers 1-4' +p114334 +sg25270 +S'Artist Information (' +p114335 +sa(dp114336 +g25273 +S'(artist after)' +p114337 +sg25267 +g27 +sg25275 +S'\n' +p114338 +sg25268 +S'Camera Work: Vol.2: Numbers 5-8' +p114339 +sg25270 +S'Artist Information (' +p114340 +sa(dp114341 +g25273 +S'(artist after)' +p114342 +sg25267 +g27 +sg25275 +S'\n' +p114343 +sg25268 +S'Camera Work: Vol.3: Numbers 9-12' +p114344 +sg25270 +S'Artist Information (' +p114345 +sa(dp114346 +g25273 +S'(artist after)' +p114347 +sg25267 +g27 +sg25275 +S'\n' +p114348 +sg25268 +S'Camera Work: Vol.4: Numbers 13-16 and Special Supplement' +p114349 +sg25270 +S'Artist Information (' +p114350 +sa(dp114351 +g25273 +S'(artist after)' +p114352 +sg25267 +g27 +sg25275 +S'\n' +p114353 +sg25268 +S'Camera Work: Vol.5: Numbers 17-20' +p114354 +sg25270 +S'Artist Information (' +p114355 +sa(dp114356 +g25273 +S'(artist after)' +p114357 +sg25267 +g27 +sg25275 +S'\n' +p114358 +sg25268 +S'Camera Work: Vol.6: Numbers 21-24' +p114359 +sg25270 +S'Artist Information (' +p114360 +sa(dp114361 +g25273 +S'(artist after)' +p114362 +sg25267 +g27 +sg25275 +S'\n' +p114363 +sg25268 +S'Camera Work: Vol.7: Numbers 25-28' +p114364 +sg25270 +S'Artist Information (' +p114365 +sa(dp114366 +g25273 +S'(artist after)' +p114367 +sg25267 +g27 +sg25275 +S'\n' +p114368 +sg25268 +S'Camera Work: Vol.8: Numbers 29-32' +p114369 +sg25270 +S'Artist Information (' +p114370 +sa(dp114371 +g25273 +S'(artist after)' +p114372 +sg25267 +g27 +sg25275 +S'\n' +p114373 +sg25268 +S'Camera Work: Vol.9: Numbers 33, 34/35, 36' +p114374 +sg25270 +S'Artist Information (' +p114375 +sa(dp114376 +g25268 +S'Gaspar de Coligny' +p114377 +sg25270 +S'Jost Amman' +p114378 +sg25273 +g27 +sg25275 +S'1573' +p114379 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef8b.jpg' +p114380 +sg25267 +g27 +sa(dp114381 +g25273 +S'(artist after)' +p114382 +sg25267 +g27 +sg25275 +S'\n' +p114383 +sg25268 +S'Camera Work: Vol.10: Numbers 37-40 and Special Supplement' +p114384 +sg25270 +S'Artist Information (' +p114385 +sa(dp114386 +g25273 +S'(artist after)' +p114387 +sg25267 +g27 +sg25275 +S'\n' +p114388 +sg25268 +S'Camera Work: Vol.11: Numbers 41, 42/43, 44, and Special Supplement' +p114389 +sg25270 +S'Artist Information (' +p114390 +sa(dp114391 +g25273 +S'(artist after)' +p114392 +sg25267 +g27 +sg25275 +S'\n' +p114393 +sg25268 +S'Camera Work: Vol.12: Numbers 45-48' +p114394 +sg25270 +S'Artist Information (' +p114395 +sa(dp114396 +g25273 +S'(artist after)' +p114397 +sg25267 +g27 +sg25275 +S'\n' +p114398 +sg25268 +S'Camera Work: Vol.13: Numbers 49/50' +p114399 +sg25270 +S'Artist Information (' +p114400 +sa(dp114401 +g25273 +S'(artist after)' +p114402 +sg25267 +g27 +sg25275 +S'\n' +p114403 +sg25268 +S'Camera Work: Number 47: "What is 291?"' +p114404 +sg25270 +S'Artist Information (' +p114405 +sa(dp114406 +g25273 +S'gelatin silver print' +p114407 +sg25267 +g27 +sg25275 +S'1935' +p114408 +sg25268 +S'Dunoyer de Segonzac' +p114409 +sg25270 +S'Edward Steichen' +p114410 +sa(dp114411 +g25273 +S'gelatin silver print' +p114412 +sg25267 +g27 +sg25275 +S'early 1940s' +p114413 +sg25268 +S'Untitled--City View' +p114414 +sg25270 +S'Brett Weston' +p114415 +sa(dp114416 +g25273 +S'gelatin silver print' +p114417 +sg25267 +g27 +sg25275 +S'1930s' +p114418 +sg25268 +S'Tree Stump' +p114419 +sg25270 +S'Brett Weston' +p114420 +sa(dp114421 +g25273 +S'gelatin silver print' +p114422 +sg25267 +g27 +sg25275 +S'1930s' +p114423 +sg25268 +S'Pine' +p114424 +sg25270 +S'Brett Weston' +p114425 +sa(dp114426 +g25273 +S'gelatin silver print' +p114427 +sg25267 +g27 +sg25275 +S'1936' +p114428 +sg25268 +S'Landscape' +p114429 +sg25270 +S'Brett Weston' +p114430 +sa(dp114431 +g25268 +S'The Holy Trinity' +p114432 +sg25270 +S'Jost Amman' +p114433 +sg25273 +g27 +sg25275 +S'unknown date\n' +p114434 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef8c.jpg' +p114435 +sg25267 +g27 +sa(dp114436 +g25273 +S'gelatin silver print' +p114437 +sg25267 +g27 +sg25275 +S'probably 1940s' +p114438 +sg25268 +S'Tug "Ida W"--Wilamette River North' +p114439 +sg25270 +S'Minor White' +p114440 +sa(dp114441 +g25268 +S'Solomon Worshipping False Gods' +p114442 +sg25270 +S'Master MZ' +p114443 +sg25273 +S'engraving' +p114444 +sg25275 +S'1501' +p114445 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f5b.jpg' +p114446 +sg25267 +g27 +sa(dp114447 +g25273 +S'1 vol: text with etched head-pieces and initials' +p114448 +sg25267 +g27 +sg25275 +S'published 1784' +p114449 +sg25268 +S'Le Antichit\xc3\xa0 Romane (text for volumes I-IV)' +p114450 +sg25270 +S'Giovanni Battista Piranesi' +p114451 +sa(dp114452 +g25273 +S'1 vol: etchings' +p114453 +sg25267 +g27 +sg25275 +S'possibly 1756/1784' +p114454 +sg25268 +S'Le Antichit\xc3\xa0 Romane (volume I)' +p114455 +sg25270 +S'Giovanni Battista Piranesi' +p114456 +sa(dp114457 +g25273 +S'1 vol: etchings' +p114458 +sg25267 +g27 +sg25275 +S'possibly 1756/1784' +p114459 +sg25268 +S'Le Antichit\xc3\xa0 Romane (volume II)' +p114460 +sg25270 +S'Giovanni Battista Piranesi' +p114461 +sa(dp114462 +g25273 +S'1 vol: etchings' +p114463 +sg25267 +g27 +sg25275 +S'possibly 1756/1784' +p114464 +sg25268 +S'Le Antichit\xc3\xa0 Romane (volume III)' +p114465 +sg25270 +S'Giovanni Battista Piranesi' +p114466 +sa(dp114467 +g25273 +S'1 vol: etchings' +p114468 +sg25267 +g27 +sg25275 +S'possibly 1756/1784' +p114469 +sg25268 +S'Le Antichit\xc3\xa0 Romane (volume IV)' +p114470 +sg25270 +S'Giovanni Battista Piranesi' +p114471 +sa(dp114472 +g25273 +S'2 works bound in 1 vol: text with etched head- and tail- pieces and initial' +p114473 +sg25267 +g27 +sg25275 +S'published 1785' +p114474 +sg25268 +S'Monumenti degli Scipione; Raccolta de\'Tempi Antichi (Suppl.to "Le Antichit\xc3\xa0 Romane")' +p114475 +sg25270 +S'Francesco Piranesi' +p114476 +sa(dp114477 +g25273 +S'1 vol: etchings' +p114478 +sg25267 +g27 +sg25275 +S'published 1785' +p114479 +sg25268 +S'Monumenti degli Scipione (Supplement to "Le Antichit\xc3\xa0 Romane")' +p114480 +sg25270 +S'Francesco Piranesi' +p114481 +sa(dp114482 +g25273 +S'1 vol: etchings' +p114483 +sg25267 +g27 +sg25275 +S'published 1780' +p114484 +sg25268 +S'Raccolta de\'Tempi Antichi (Supplement to "Le Antichit\xc3\xa0 Romane")' +p114485 +sg25270 +S'Francesco Piranesi' +p114486 +sa(dp114487 +g25273 +S'drypoint' +p114488 +sg25267 +g27 +sg25275 +S'1940' +p114489 +sg25268 +S'Going to Town' +p114490 +sg25270 +S'Niels Yde Andersen' +p114491 +sa(dp114492 +g25273 +S'1 vol: text with etched title page, tail-pieces, and initials' +p114493 +sg25267 +g27 +sg25275 +S'published 1761' +p114494 +sg25268 +S"Della Magnificenza ed Archittetura de'Romani" +p114495 +sg25270 +S'Giovanni Battista Piranesi' +p114496 +sa(dp114497 +g25273 +S'3 works bound in 1 vol: text with etched head- and tail-pieces' +p114498 +sg25267 +g27 +sg25275 +S'published 1765' +p114499 +sg25268 +S"Osservazione; E Parere su l'Architettura ...; Diverse Maniere d'adornare i Cammini" +p114500 +sg25270 +S'Giovanni Battista Piranesi' +p114501 +sa(dp114502 +g25273 +S'3 works bound in 1 vol: etchings' +p114503 +sg25267 +g27 +sg25275 +S'published 1761' +p114504 +sg25268 +S"Della Magnificenza ed Archittetura; Osservazioni; E Parere su l'Architettura" +p114505 +sg25270 +S'Giovanni Battista Piranesi' +p114506 +sa(dp114507 +g25273 +S'1 vol: ill: etchings' +p114508 +sg25267 +g27 +sg25275 +S'published 1769' +p114509 +sg25268 +S'Diverse Maniere di adornare i Cammini' +p114510 +sg25270 +S'Giovanni Battista Piranesi' +p114511 +sa(dp114512 +g25268 +S'Prima Parte; Grotteschi; Carceri; Alcuna Vedute ...; Trofei di Ottaviano Augusto' +p114513 +sg25270 +S'Artist Information (' +p114514 +sg25273 +S'(artist)' +p114515 +sg25275 +S'\n' +p114516 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000df/a000dfb6.jpg' +p114517 +sg25267 +g27 +sa(dp114518 +g25273 +S'3 works bound in 1 vol: text with etched head- and tail-pieces' +p114519 +sg25267 +g27 +sg25275 +S'published 1762' +p114520 +sg25268 +S"Lapides Capitolini; Le Rovine dell Castello dell'Acqua Giula; Antichit\xc3\xa0 di Cora" +p114521 +sg25270 +S'Giovanni Battista Piranesi' +p114522 +sa(dp114523 +g25273 +S'3 works bound in 1 vol: etchings' +p114524 +sg25267 +g27 +sg25275 +S'published 1762' +p114525 +sg25268 +S"Lapides Capitolini; Le Rovine dell Castello dell'Acqua Giula; Antichit\xc3\xa0 di Cora" +p114526 +sg25270 +S'Giovanni Battista Piranesi' +p114527 +sa(dp114528 +g25273 +S'(artist)' +p114529 +sg25267 +g27 +sg25275 +S'\n' +p114530 +sg25268 +S"Il Campo Marzio ...; Descrizione ... dell'Emissario; Antichit\xc3\xa0 d'Albano; Di due Spelonche; Il Teatro d'Ercolano" +p114531 +sg25270 +S'Artist Information (' +p114532 +sa(dp114533 +g25273 +S'(artist)' +p114534 +sg25267 +g27 +sg25275 +S'\n' +p114535 +sg25268 +S"Il Campo Marzio dell'Antica Roma" +p114536 +sg25270 +S'Artist Information (' +p114537 +sa(dp114538 +g25273 +S'3 works bound in 1 vol: etchings' +p114539 +sg25267 +g27 +sg25275 +S'published 1764' +p114540 +sg25268 +S"Antichit\xc3\xa0 d'Albano ...; Descrizione ... del'Emmissario...; Di due Spelonche" +p114541 +sg25270 +S'Giovanni Battista Piranesi' +p114542 +sa(dp114543 +g25273 +S'etching' +p114544 +sg25267 +g27 +sg25275 +S'unknown date\n' +p114545 +sg25268 +S"Durer's House, Nuremberg" +p114546 +sg25270 +S'Stanley Anderson' +p114547 +sa(dp114548 +g25273 +S'1 vol: etchings' +p114549 +sg25267 +g27 +sg25275 +S'published 1785' +p114550 +sg25268 +S"Il Teatro d'Ercolano" +p114551 +sg25270 +S'Francesco Piranesi' +p114552 +sa(dp114553 +g25273 +S'(artist)' +p114554 +sg25267 +g27 +sg25275 +S'\n' +p114555 +sg25268 +S'Vasi, candelabri, cippi ... (volume I)' +p114556 +sg25270 +S'Artist Information (' +p114557 +sa(dp114558 +g25273 +S'(artist)' +p114559 +sg25267 +g27 +sg25275 +S'\n' +p114560 +sg25268 +S'Vasi, candelabri, cippi ... (volume II)' +p114561 +sg25270 +S'Artist Information (' +p114562 +sa(dp114563 +g25273 +S'(artist)' +p114564 +sg25267 +g27 +sg25275 +S'\n' +p114565 +sg25268 +S'Trofeo ... Colonna di Trajano; Colonna Antonino Pio e Faustina; Colonna Antonina' +p114566 +sg25270 +S'Artist Information (' +p114567 +sa(dp114568 +g25273 +S'(artist)' +p114569 +sg25267 +g27 +sg25275 +S'\n' +p114570 +sg25268 +S'Differentes vues de quelques Restes ...' +p114571 +sg25270 +S'Artist Information (' +p114572 +sa(dp114573 +g25273 +S'2 works bound in 1 vol: etchings' +p114574 +sg25267 +g27 +sg25275 +S'published 1800/1807' +p114575 +sg25268 +S'Le Vedute di Roma; Pianta di Roma e del Campo Marzo (volume I)' +p114576 +sg25270 +S'Giovanni Battista Piranesi' +p114577 +sa(dp114578 +g25273 +S'(artist)' +p114579 +sg25267 +g27 +sg25275 +S'\n' +p114580 +sg25268 +S'Le Vedute di Roma (volume II)' +p114581 +sg25270 +S'Artist Information (' +p114582 +sa(dp114583 +g25273 +S'(artist after)' +p114584 +sg25267 +g27 +sg25275 +S'\n' +p114585 +sg25268 +S'Statue Antichi' +p114586 +sg25270 +S'Artist Information (' +p114587 +sa(dp114588 +g25273 +S'(artist)' +p114589 +sg25267 +g27 +sg25275 +S'\n' +p114590 +sg25268 +S'Raccolta di Alcuni Disegni del ... Guercino' +p114591 +sg25270 +S'Artist Information (' +p114592 +sa(dp114593 +g25273 +S'Italian, c. 1758 - 1810' +p114594 +sg25267 +g27 +sg25275 +S'(publisher)' +p114595 +sg25268 +S'La Scuola Italiana' +p114596 +sg25270 +S'Artist Information (' +p114597 +sa(dp114598 +g25273 +S'etching' +p114599 +sg25267 +g27 +sg25275 +S'unknown date\n' +p114600 +sg25268 +S'Fallen Star' +p114601 +sg25270 +S'Stanley Anderson' +p114602 +sa(dp114603 +g25273 +S'(artist after)' +p114604 +sg25267 +g27 +sg25275 +S'\n' +p114605 +sg25268 +S'Antiquites de la Grande-Grece (volume I)' +p114606 +sg25270 +S'Artist Information (' +p114607 +sa(dp114608 +g25273 +S'(artist after)' +p114609 +sg25267 +g27 +sg25275 +S'\n' +p114610 +sg25268 +S'Antiquites de la Grande-Grece (volume II)' +p114611 +sg25270 +S'Artist Information (' +p114612 +sa(dp114613 +g25268 +S'Antiquites de la Grande-Grece (volume I)' +p114614 +sg25270 +S'Artist Information (' +p114615 +sg25273 +S'(artist after)' +p114616 +sg25275 +S'\n' +p114617 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00065/a000659f.jpg' +p114618 +sg25267 +g27 +sa(dp114619 +g25268 +S'Nocturne: Salute' +p114620 +sg25270 +S'James McNeill Whistler' +p114621 +sg25273 +S'etching' +p114622 +sg25275 +S'1879/1880' +p114623 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b50f.jpg' +p114624 +sg25267 +g27 +sa(dp114625 +g25268 +S'Intemperance' +p114626 +sg25270 +S'Heinrich Aldegrever' +p114627 +sg25273 +S'engraving' +p114628 +sg25275 +S'1528' +p114629 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6fc.jpg' +p114630 +sg25267 +g27 +sa(dp114631 +g25268 +S'Joachim Patinir' +p114632 +sg25270 +S'Artist Information (' +p114633 +sg25273 +S'Netherlandish, 1533 - 1578' +p114634 +sg25275 +S'(artist)' +p114635 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd01.jpg' +p114636 +sg25267 +g27 +sa(dp114637 +g25268 +S'Gothic Letter "D"' +p114638 +sg25270 +S'German 15th Century' +p114639 +sg25273 +S'Lehrs, Vol. 4, p.306, no. 147' +p114640 +sg25275 +S'\nengraving' +p114641 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005780.jpg' +p114642 +sg25267 +g27 +sa(dp114643 +g25268 +S'Saint Sebastian' +p114644 +sg25270 +S"Jacopo de' Barbari" +p114645 +sg25273 +S'engraving' +p114646 +sg25275 +S'c. 1509' +p114647 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7a1.jpg' +p114648 +sg25267 +g27 +sa(dp114649 +g25268 +S'Eug\xc3\xa8ne Rouher' +p114650 +sg25270 +S'Honor\xc3\xa9 Daumier' +p114651 +sg25273 +S'lithograph' +p114652 +sg25275 +S'1850' +p114653 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009442.jpg' +p114654 +sg25267 +g27 +sa(dp114655 +g25268 +S"R.P.L. S\xc3\xa9gur d'Aguesseau" +p114656 +sg25270 +S'Honor\xc3\xa9 Daumier' +p114657 +sg25273 +S'lithograph' +p114658 +sg25275 +S'1850' +p114659 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000943d.jpg' +p114660 +sg25267 +g27 +sa(dp114661 +g25273 +S'etching' +p114662 +sg25267 +g27 +sg25275 +S'unknown date\n' +p114663 +sg25268 +S'Morning on the Seine' +p114664 +sg25270 +S'Stanley Anderson' +p114665 +sa(dp114666 +g25268 +S'M.L.P.F. Esquirou de Parieu' +p114667 +sg25270 +S'Honor\xc3\xa9 Daumier' +p114668 +sg25273 +S'lithograph' +p114669 +sg25275 +S'1850' +p114670 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009443.jpg' +p114671 +sg25267 +g27 +sa(dp114672 +g25268 +S'Achille Fould' +p114673 +sg25270 +S'Honor\xc3\xa9 Daumier' +p114674 +sg25273 +S'lithograph' +p114675 +sg25275 +S'1849' +p114676 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009441.jpg' +p114677 +sg25267 +g27 +sa(dp114678 +g25268 +S'H.M. Augustin Corne' +p114679 +sg25270 +S'Honor\xc3\xa9 Daumier' +p114680 +sg25273 +S'lithograph' +p114681 +sg25275 +S'1849' +p114682 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000943e.jpg' +p114683 +sg25267 +g27 +sa(dp114684 +g25268 +S'Ferdinand Favre' +p114685 +sg25270 +S'Honor\xc3\xa9 Daumier' +p114686 +sg25273 +S'lithograph' +p114687 +sg25275 +S'1849' +p114688 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009440.jpg' +p114689 +sg25267 +g27 +sa(dp114690 +g25268 +S'Prince Lucien Murat' +p114691 +sg25270 +S'Honor\xc3\xa9 Daumier' +p114692 +sg25273 +S'lithograph' +p114693 +sg25275 +S'1849' +p114694 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009430.jpg' +p114695 +sg25267 +g27 +sa(dp114696 +g25268 +S'J. Marie Joseph Deville' +p114697 +sg25270 +S'Honor\xc3\xa9 Daumier' +p114698 +sg25273 +S'lithograph' +p114699 +sg25275 +S'1849' +p114700 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000943c.jpg' +p114701 +sg25267 +g27 +sa(dp114702 +g25268 +S'F\xc3\xa9lix Saint-Priest' +p114703 +sg25270 +S'Honor\xc3\xa9 Daumier' +p114704 +sg25273 +S'lithograph' +p114705 +sg25275 +S'1849' +p114706 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000943b.jpg' +p114707 +sg25267 +g27 +sa(dp114708 +g25268 +S'J.-B. Gustave de Laboulie' +p114709 +sg25270 +S'Honor\xc3\xa9 Daumier' +p114710 +sg25273 +S'lithograph' +p114711 +sg25275 +S'1849' +p114712 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009439.jpg' +p114713 +sg25267 +g27 +sa(dp114714 +g25268 +S'Marie Denis Larabit' +p114715 +sg25270 +S'Honor\xc3\xa9 Daumier' +p114716 +sg25273 +S'lithograph' +p114717 +sg25275 +S'1849' +p114718 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009432.jpg' +p114719 +sg25267 +g27 +sa(dp114720 +g25268 +S'Ch. Ferdinand Gambon' +p114721 +sg25270 +S'Honor\xc3\xa9 Daumier' +p114722 +sg25273 +S'lithograph' +p114723 +sg25275 +S'1849' +p114724 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009437.jpg' +p114725 +sg25267 +g27 +sa(dp114726 +g25273 +S'etching' +p114727 +sg25267 +g27 +sg25275 +S'unknown date\n' +p114728 +sg25268 +S'Reading Room' +p114729 +sg25270 +S'Stanley Anderson' +p114730 +sa(dp114731 +g25268 +S'Emmanuel Arago' +p114732 +sg25270 +S'Honor\xc3\xa9 Daumier' +p114733 +sg25273 +S'lithograph' +p114734 +sg25275 +S'1848' +p114735 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000943a.jpg' +p114736 +sg25267 +g27 +sa(dp114737 +g25268 +S'Comte de Montalembert' +p114738 +sg25270 +S'Honor\xc3\xa9 Daumier' +p114739 +sg25273 +S'lithograph' +p114740 +sg25275 +S'1849' +p114741 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009436.jpg' +p114742 +sg25267 +g27 +sa(dp114743 +g25268 +S'Alex. Ch. Henri de Tocqueville' +p114744 +sg25270 +S'Honor\xc3\xa9 Daumier' +p114745 +sg25273 +S'lithograph' +p114746 +sg25275 +S'1849' +p114747 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009435.jpg' +p114748 +sg25267 +g27 +sa(dp114749 +g25268 +S'Charles Dupin' +p114750 +sg25270 +S'Honor\xc3\xa9 Daumier' +p114751 +sg25273 +S'lithograph' +p114752 +sg25275 +S'1849' +p114753 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009434.jpg' +p114754 +sg25267 +g27 +sa(dp114755 +g25268 +S'Arm. Jacques Lherbette' +p114756 +sg25270 +S'Honor\xc3\xa9 Daumier' +p114757 +sg25273 +S'lithograph' +p114758 +sg25275 +S'1849' +p114759 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009438.jpg' +p114760 +sg25267 +g27 +sa(dp114761 +g25268 +S'Un Lutteur malheureux' +p114762 +sg25270 +S'Honor\xc3\xa9 Daumier' +p114763 +sg25273 +S'lithograph' +p114764 +sg25275 +S'1851' +p114765 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000947e.jpg' +p114766 +sg25267 +g27 +sa(dp114767 +g25268 +S"Un Jeune homme qui est l'espoir... de la famille Badinguet" +p114768 +sg25270 +S'Honor\xc3\xa9 Daumier' +p114769 +sg25273 +S'lithograph' +p114770 +sg25275 +S'1846' +p114771 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000938e.jpg' +p114772 +sg25267 +g27 +sa(dp114773 +g25268 +S'Deux bons voisins' +p114774 +sg25270 +S'Honor\xc3\xa9 Daumier' +p114775 +sg25273 +S'lithograph' +p114776 +sg25275 +S'1847' +p114777 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093e6.jpg' +p114778 +sg25267 +g27 +sa(dp114779 +g25268 +S'Parisien transportant dans un autre quartier...' +p114780 +sg25270 +S'Honor\xc3\xa9 Daumier' +p114781 +sg25273 +S'lithograph' +p114782 +sg25275 +S'1847' +p114783 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093d3.jpg' +p114784 +sg25267 +g27 +sa(dp114785 +g25273 +S'etching' +p114786 +sg25267 +g27 +sg25275 +S'probably 1940' +p114787 +sg25268 +S'Cider Mill' +p114788 +sg25270 +S'Kerr Eby' +p114789 +sa(dp114790 +g25268 +S'Giovanni Emo' +p114791 +sg25270 +S'Giovanni Bellini' +p114792 +sg25273 +S', c. 1475/1480' +p114793 +sg25275 +S'\n' +p114794 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000075d.jpg' +p114795 +sg25267 +g27 +sa(dp114796 +g25268 +S'Christ before Pilate' +p114797 +sg25270 +S'Giovanni Antonio da Brescia' +p114798 +sg25273 +S'engraving' +p114799 +sg25275 +S'c. 1500/1505' +p114800 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c829.jpg' +p114801 +sg25267 +g27 +sa(dp114802 +g25268 +S'Chicken Vendor' +p114803 +sg25270 +S'George Overbury (Pop) Hart' +p114804 +sg25273 +S'etching and drypoint' +p114805 +sg25275 +S'unknown date\n' +p114806 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a00104d1.jpg' +p114807 +sg25267 +g27 +sa(dp114808 +g25268 +S'Going to the Sacrifice' +p114809 +sg25270 +S'George Overbury (Pop) Hart' +p114810 +sg25273 +S'color etching' +p114811 +sg25275 +S'unknown date\n' +p114812 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a00104d0.jpg' +p114813 +sg25267 +g27 +sa(dp114814 +g25268 +S'Coytesville on the Hudson' +p114815 +sg25270 +S'George Overbury (Pop) Hart' +p114816 +sg25273 +S'color etching' +p114817 +sg25275 +S'unknown date\n' +p114818 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ab0.jpg' +p114819 +sg25267 +g27 +sa(dp114820 +g25268 +S'Picnic Party' +p114821 +sg25270 +S'George Overbury (Pop) Hart' +p114822 +sg25273 +S'color etching' +p114823 +sg25275 +S'unknown date\n' +p114824 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a00104da.jpg' +p114825 +sg25267 +g27 +sa(dp114826 +g25268 +S'The Brook' +p114827 +sg25270 +S'George Overbury (Pop) Hart' +p114828 +sg25273 +S'color etching (and monotype?)' +p114829 +sg25275 +S'unknown date\n' +p114830 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a00104d9.jpg' +p114831 +sg25267 +g27 +sa(dp114832 +g25268 +S'Native Baptism, Trinidad' +p114833 +sg25270 +S'George Overbury (Pop) Hart' +p114834 +sg25273 +S'etching in green' +p114835 +sg25275 +S'unknown date\n' +p114836 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a00104ce.jpg' +p114837 +sg25267 +g27 +sa(dp114838 +g25268 +S'Camp Fire' +p114839 +sg25270 +S'George Overbury (Pop) Hart' +p114840 +sg25273 +S'etching in green' +p114841 +sg25275 +S'unknown date\n' +p114842 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f56b.jpg' +p114843 +sg25267 +g27 +sa(dp114844 +g25268 +S'Dias de Fiesta (No.2)' +p114845 +sg25270 +S'George Overbury (Pop) Hart' +p114846 +sg25273 +S'etching and aquatint' +p114847 +sg25275 +S'unknown date\n' +p114848 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a00104cf.jpg' +p114849 +sg25267 +g27 +sa(dp114850 +g25268 +S'Jersey Hills' +p114851 +sg25270 +S'George Overbury (Pop) Hart' +p114852 +sg25273 +S'color etching' +p114853 +sg25275 +S'unknown date\n' +p114854 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a00104d6.jpg' +p114855 +sg25267 +g27 +sa(dp114856 +g25268 +S'Jersey Hills' +p114857 +sg25270 +S'George Overbury (Pop) Hart' +p114858 +sg25273 +S'color etching' +p114859 +sg25275 +S'unknown date\n' +p114860 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a00104d7.jpg' +p114861 +sg25267 +g27 +sa(dp114862 +g25268 +S'The Entombment' +p114863 +sg25270 +S'Artist Information (' +p114864 +sg25273 +S'Italian, c. 1431 - 1506' +p114865 +sg25275 +S'(artist after)' +p114866 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7a7.jpg' +p114867 +sg25267 +g27 +sa(dp114868 +g25273 +S'etching' +p114869 +sg25267 +g27 +sg25275 +S'unknown date\n' +p114870 +sg25268 +S'Midnight Duty' +p114871 +sg25270 +S'Eugene Higgins' +p114872 +sa(dp114873 +g25268 +S'American Landscape' +p114874 +sg25270 +S'Edward Hopper' +p114875 +sg25273 +S'etching in black on wove paper' +p114876 +sg25275 +S'1920' +p114877 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b38.jpg' +p114878 +sg25267 +g27 +sa(dp114879 +g25268 +S'East Side Interior' +p114880 +sg25270 +S'Edward Hopper' +p114881 +sg25273 +S'etching' +p114882 +sg25275 +S'1922' +p114883 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ac7.jpg' +p114884 +sg25267 +g27 +sa(dp114885 +g25268 +S'The Cat Boat' +p114886 +sg25270 +S'Edward Hopper' +p114887 +sg25273 +S'etching' +p114888 +sg25275 +S'1922' +p114889 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b39.jpg' +p114890 +sg25267 +g27 +sa(dp114891 +g25268 +S"Landscape with View of a Farmer's Cottage" +p114892 +sg25270 +S'Hans Sebald Lautensack' +p114893 +sg25273 +S'etching' +p114894 +sg25275 +S'1551' +p114895 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acc8.jpg' +p114896 +sg25267 +g27 +sa(dp114897 +g25268 +S'Saint Catherine' +p114898 +sg25270 +S'Master MZ' +p114899 +sg25273 +S'engraving' +p114900 +sg25275 +S'c. 1500' +p114901 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3b1.jpg' +p114902 +sg25267 +g27 +sa(dp114903 +g25268 +S'The Mass of Saint Gregory' +p114904 +sg25270 +S'Israhel van Meckenem' +p114905 +sg25273 +S'engraving' +p114906 +sg25275 +S'c. 1480/1485' +p114907 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3f4.jpg' +p114908 +sg25267 +g27 +sa(dp114909 +g25268 +S'La morgue, Paris (The Mortuary)' +p114910 +sg25270 +S'Charles Meryon' +p114911 +sg25273 +S'etching and engraving on laid paper' +p114912 +sg25275 +S'1854' +p114913 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f61.jpg' +p114914 +sg25267 +g27 +sa(dp114915 +g25268 +S'La galerie Notre-Dame, Paris (The Gallery of Notre Dame, Paris)' +p114916 +sg25270 +S'Charles Meryon' +p114917 +sg25273 +S'etching on green paper' +p114918 +sg25275 +S'1853' +p114919 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d15.jpg' +p114920 +sg25267 +g27 +sa(dp114921 +g25268 +S'Le Petit Pont, Paris' +p114922 +sg25270 +S'Charles Meryon' +p114923 +sg25273 +S'etching and drypoint on gray-green paper' +p114924 +sg25275 +S'1850' +p114925 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d0c.jpg' +p114926 +sg25267 +g27 +sa(dp114927 +g25268 +S'Page from Livius Historiabum Libri' +p114928 +sg25270 +S'Zoan Andrea' +p114929 +sg25273 +S', 1520' +p114930 +sg25275 +S'\n' +p114931 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c708.jpg' +p114932 +sg25267 +g27 +sa(dp114933 +g25268 +S'Sleeping Puppy' +p114934 +sg25270 +S'Rembrandt van Rijn' +p114935 +sg25273 +S'etching and drypoint' +p114936 +sg25275 +S'c. 1640' +p114937 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d320.jpg' +p114938 +sg25267 +g27 +sa(dp114939 +g25273 +S'overall: 20.2 x 15.3 cm (7 15/16 x 6 in.)' +p114940 +sg25267 +g27 +sg25275 +S'\nminiature on vellum' +p114941 +sg25268 +S'The Crucifixion' +p114942 +sg25270 +S'Austrian 15th Century' +p114943 +sa(dp114944 +g25268 +S'A Lectern Cloth with the Marriage at Cana' +p114945 +sg25270 +S'German 15th Century' +p114946 +sg25273 +S'overall (fragment): 120.7 x 85.1 cm (47 1/2 x 33 1/2 in.)' +p114947 +sg25275 +S'\nwoodcut on linen, hand-colored in brown and red' +p114948 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00016/a000163f.jpg' +p114949 +sg25267 +g27 +sa(dp114950 +g25268 +S'The Crucifixion' +p114951 +sg25270 +S'German 15th Century' +p114952 +sg25273 +S'overall: 26.2 x 17.9 cm (10 5/16 x 7 1/16 in.)' +p114953 +sg25275 +S'\nminiature on vellum' +p114954 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ff7e.jpg' +p114955 +sg25267 +g27 +sa(dp114956 +g25273 +S'overall (approximate): 15.3 x 13.5 cm (6 x 5 5/16 in.)' +p114957 +sg25267 +g27 +sg25275 +S'\nminiature' +p114958 +sg25268 +S'Saint Augustine' +p114959 +sg25270 +S'English 12th Century' +p114960 +sa(dp114961 +g25268 +S'The Crucifixion' +p114962 +sg25270 +S'French 13th Century' +p114963 +sg25273 +S'overall: 15.6 x 10.7 cm (6 1/8 x 4 3/16 in.)' +p114964 +sg25275 +S'\nminiature on vellum' +p114965 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00025/a0002536.jpg' +p114966 +sg25267 +g27 +sa(dp114967 +g25273 +S'overall: 15.9 x 12.1 cm (6 1/4 x 4 3/4 in.)' +p114968 +sg25267 +g27 +sg25275 +S'\nminiature on vellum' +p114969 +sg25268 +S'The Virgin and Child Enthroned, and Saint Benedict Imparting His Rule' +p114970 +sg25270 +S'German 13th Century' +p114971 +sa(dp114972 +g25268 +S'Birth of John the Baptist' +p114973 +sg25270 +S'Niccol\xc3\xb2 di Giacomo da Bologna' +p114974 +sg25273 +S', late 14th century' +p114975 +sg25275 +S'\n' +p114976 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037c9.jpg' +p114977 +sg25267 +g27 +sa(dp114978 +g25268 +S'The Nativity with the Annunciation to the Shepherds' +p114979 +sg25270 +S'Master of the Dominican Effigies' +p114980 +sg25273 +S'miniature on vellum' +p114981 +sg25275 +S'c. 1340' +p114982 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037bf.jpg' +p114983 +sg25267 +g27 +sa(dp114984 +g25268 +S'Saint Peter Enthroned' +p114985 +sg25270 +S'Lippo Vanni' +p114986 +sg25273 +S'miniature on vellum' +p114987 +sg25275 +S'1345/1350' +p114988 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d68.jpg' +p114989 +sg25267 +g27 +sa(dp114990 +g25268 +S'Ornament Panel with Dragons, Masks, and Instruments of War' +p114991 +sg25270 +S'Zoan Andrea' +p114992 +sg25273 +S'engraving' +p114993 +sg25275 +S'c. 1505' +p114994 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c70b.jpg' +p114995 +sg25267 +g27 +sa(dp114996 +g25273 +S'NGA Miniatures 1975, no. 22' +p114997 +sg25267 +g27 +sg25275 +S'\nminiature on vellum' +p114998 +sg25268 +S'Saint Maurice and the Theban Legion' +p114999 +sg25270 +S'Italian 15th Century' +p115000 +sa(dp115001 +g25268 +S'Lamentation for Christ' +p115002 +sg25270 +S'Hans Baldung Grien' +p115003 +sg25273 +S'woodcut' +p115004 +sg25275 +S'1514' +p115005 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7d7.jpg' +p115006 +sg25267 +g27 +sa(dp115007 +g25268 +S'Lamentation for Christ' +p115008 +sg25270 +S'Hans Baldung Grien' +p115009 +sg25273 +S'woodcut' +p115010 +sg25275 +S'1510' +p115011 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7da.jpg' +p115012 +sg25267 +g27 +sa(dp115013 +g25268 +S'Bathsheba at Her Bath' +p115014 +sg25270 +S'Hans Burgkmair I' +p115015 +sg25273 +S'woodcut' +p115016 +sg25275 +S'1519' +p115017 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8de.jpg' +p115018 +sg25267 +g27 +sa(dp115019 +g25268 +S'The Annunciation' +p115020 +sg25270 +S'Jacques Callot' +p115021 +sg25273 +S'etching' +p115022 +sg25275 +S'unknown date\n' +p115023 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a000884c.jpg' +p115024 +sg25267 +g27 +sa(dp115025 +g25268 +S'The Annunciation' +p115026 +sg25270 +S'Jacques Callot' +p115027 +sg25273 +S', unknown date' +p115028 +sg25275 +S'\n' +p115029 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088cd.jpg' +p115030 +sg25267 +g27 +sa(dp115031 +g25268 +S'The Holy Family at Table' +p115032 +sg25270 +S'Jacques Callot' +p115033 +sg25273 +S'etching and engraving' +p115034 +sg25275 +S'c. 1628' +p115035 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086af.jpg' +p115036 +sg25267 +g27 +sa(dp115037 +g25268 +S'The Card Players' +p115038 +sg25270 +S'Jacques Callot' +p115039 +sg25273 +S'etching and engraving' +p115040 +sg25275 +S'c. 1628' +p115041 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086b3.jpg' +p115042 +sg25267 +g27 +sa(dp115043 +g25268 +S'Title Page for "The Capricci"' +p115044 +sg25270 +S'Jacques Callot' +p115045 +sg25273 +S'etching' +p115046 +sg25275 +S'c. 1617' +p115047 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083ec.jpg' +p115048 +sg25267 +g27 +sa(dp115049 +g25268 +S"Dedication to Don Lorenzo de' Medici" +p115050 +sg25270 +S'Jacques Callot' +p115051 +sg25273 +S'etching' +p115052 +sg25275 +S'c. 1617' +p115053 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083e3.jpg' +p115054 +sg25267 +g27 +sa(dp115055 +g25268 +S'Ornament Panel: Triton Ridden by a Child' +p115056 +sg25270 +S'Artist Information (' +p115057 +sg25273 +S'(artist)' +p115058 +sg25275 +S'\n' +p115059 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7c3.jpg' +p115060 +sg25267 +g27 +sa(dp115061 +g25268 +S'Gentleman and His Page' +p115062 +sg25270 +S'Jacques Callot' +p115063 +sg25273 +S'etching' +p115064 +sg25275 +S'c. 1617' +p115065 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083d9.jpg' +p115066 +sg25267 +g27 +sa(dp115067 +g25268 +S'Two Seated Figures' +p115068 +sg25270 +S'Jacques Callot' +p115069 +sg25273 +S'etching' +p115070 +sg25275 +S'c. 1617' +p115071 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083d0.jpg' +p115072 +sg25267 +g27 +sa(dp115073 +g25268 +S'Shepherd and Ruins' +p115074 +sg25270 +S'Jacques Callot' +p115075 +sg25273 +S'etching' +p115076 +sg25275 +S'c. 1617' +p115077 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083c6.jpg' +p115078 +sg25267 +g27 +sa(dp115079 +g25268 +S'Courtyard of a Farm' +p115080 +sg25270 +S'Jacques Callot' +p115081 +sg25273 +S'etching' +p115082 +sg25275 +S'c. 1617' +p115083 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083bc.jpg' +p115084 +sg25267 +g27 +sa(dp115085 +g25268 +S'Ponte Vecchio, Florence' +p115086 +sg25270 +S'Jacques Callot' +p115087 +sg25273 +S'etching' +p115088 +sg25275 +S'c. 1617' +p115089 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008385.jpg' +p115090 +sg25267 +g27 +sa(dp115091 +g25268 +S'Soldiers Attacking Robbers' +p115092 +sg25270 +S'Jacques Callot' +p115093 +sg25273 +S'etching' +p115094 +sg25275 +S'c. 1617' +p115095 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000837a.jpg' +p115096 +sg25267 +g27 +sa(dp115097 +g25268 +S'The Promenade' +p115098 +sg25270 +S'Jacques Callot' +p115099 +sg25273 +S'etching' +p115100 +sg25275 +S'c. 1617' +p115101 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000839b.jpg' +p115102 +sg25267 +g27 +sa(dp115103 +g25268 +S'The Dance' +p115104 +sg25270 +S'Jacques Callot' +p115105 +sg25273 +S'etching' +p115106 +sg25275 +S'c. 1617' +p115107 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008390.jpg' +p115108 +sg25267 +g27 +sa(dp115109 +g25268 +S'Horses Running' +p115110 +sg25270 +S'Jacques Callot' +p115111 +sg25273 +S'etching' +p115112 +sg25275 +S'c. 1617' +p115113 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008456.jpg' +p115114 +sg25267 +g27 +sa(dp115115 +g25268 +S'Man Moving Abruptly' +p115116 +sg25270 +S'Jacques Callot' +p115117 +sg25273 +S'etching' +p115118 +sg25275 +S'c. 1617' +p115119 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008449.jpg' +p115120 +sg25267 +g27 +sa(dp115121 +g25268 +S'Violinist' +p115122 +sg25270 +S'Jacques Callot' +p115123 +sg25273 +S'etching' +p115124 +sg25275 +S'c. 1617' +p115125 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008343.jpg' +p115126 +sg25267 +g27 +sa(dp115127 +g25268 +S'Peasant with Hat in Hand' +p115128 +sg25270 +S'Jacques Callot' +p115129 +sg25273 +S'etching' +p115130 +sg25275 +S'c. 1617' +p115131 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008499.jpg' +p115132 +sg25267 +g27 +sa(dp115133 +g25268 +S'Man Wrapped in His Mantle' +p115134 +sg25270 +S'Jacques Callot' +p115135 +sg25273 +S'etching' +p115136 +sg25275 +S'c. 1617' +p115137 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000846f.jpg' +p115138 +sg25267 +g27 +sa(dp115139 +g25268 +S'Gentleman with Cane' +p115140 +sg25270 +S'Jacques Callot' +p115141 +sg25273 +S'etching' +p115142 +sg25275 +S'c. 1617' +p115143 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008462.jpg' +p115144 +sg25267 +g27 +sa(dp115145 +g25268 +S'Man with Sword' +p115146 +sg25270 +S'Jacques Callot' +p115147 +sg25273 +S'etching' +p115148 +sg25275 +S'c. 1617' +p115149 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008489.jpg' +p115150 +sg25267 +g27 +sa(dp115151 +g25268 +S'Man seen from Behind with His Right Arm Extended' +p115152 +sg25270 +S'Jacques Callot' +p115153 +sg25273 +S'etching' +p115154 +sg25275 +S'c. 1617' +p115155 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000847c.jpg' +p115156 +sg25267 +g27 +sa(dp115157 +g25268 +S'Two Women in Profile' +p115158 +sg25270 +S'Jacques Callot' +p115159 +sg25273 +S'etching' +p115160 +sg25275 +S'c. 1617' +p115161 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008341.jpg' +p115162 +sg25267 +g27 +sa(dp115163 +g25268 +S'Lady in a Large Coat' +p115164 +sg25270 +S'Jacques Callot' +p115165 +sg25273 +S'etching' +p115166 +sg25275 +S'c. 1622' +p115167 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008619.jpg' +p115168 +sg25267 +g27 +sa(dp115169 +g25268 +S'Lady in a Large Coat' +p115170 +sg25270 +S'Jacques Callot' +p115171 +sg25273 +S'etching' +p115172 +sg25275 +S'c. 1617' +p115173 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008497.jpg' +p115174 +sg25267 +g27 +sa(dp115175 +g25268 +S'Gentleman in Large Mantle, Front View' +p115176 +sg25270 +S'Jacques Callot' +p115177 +sg25273 +S'etching' +p115178 +sg25275 +S'c. 1617' +p115179 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008359.jpg' +p115180 +sg25267 +g27 +sa(dp115181 +g25268 +S'Ornament Panel: Two Children Wearing Helmets' +p115182 +sg25270 +S'Artist Information (' +p115183 +sg25273 +S'(artist)' +p115184 +sg25275 +S'\n' +p115185 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7c4.jpg' +p115186 +sg25267 +g27 +sa(dp115187 +g25268 +S'Gentleman Viewed from the Front with Hand on Hip' +p115188 +sg25270 +S'Jacques Callot' +p115189 +sg25273 +S'etching' +p115190 +sg25275 +S'c. 1617' +p115191 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000836f.jpg' +p115192 +sg25267 +g27 +sa(dp115193 +g25268 +S'Gentleman in Large Mantle, Seen from Behind' +p115194 +sg25270 +S'Jacques Callot' +p115195 +sg25273 +S'etching' +p115196 +sg25275 +S'c. 1617' +p115197 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000834f.jpg' +p115198 +sg25267 +g27 +sa(dp115199 +g25268 +S'Peasant with a Cup' +p115200 +sg25270 +S'Jacques Callot' +p115201 +sg25273 +S'etching' +p115202 +sg25275 +S'c. 1617' +p115203 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008364.jpg' +p115204 +sg25267 +g27 +sa(dp115205 +g25268 +S'Gentleman Viewed from the Side' +p115206 +sg25270 +S'Jacques Callot' +p115207 +sg25273 +S'etching' +p115208 +sg25275 +S'c. 1617' +p115209 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083b1.jpg' +p115210 +sg25267 +g27 +sa(dp115211 +g25268 +S'Duel with Swords' +p115212 +sg25270 +S'Jacques Callot' +p115213 +sg25273 +S'etching' +p115214 +sg25275 +S'c. 1622' +p115215 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085f9.jpg' +p115216 +sg25267 +g27 +sa(dp115217 +g25268 +S'Duel with Swords and Daggers' +p115218 +sg25270 +S'Jacques Callot' +p115219 +sg25273 +S'etching' +p115220 +sg25275 +S'c. 1617' +p115221 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084e8.jpg' +p115222 +sg25267 +g27 +sa(dp115223 +g25268 +S'Peasant with Shovel on His Shoulder' +p115224 +sg25270 +S'Jacques Callot' +p115225 +sg25273 +S'etching' +p115226 +sg25275 +S'c. 1617' +p115227 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083a6.jpg' +p115228 +sg25267 +g27 +sa(dp115229 +g25268 +S'Peasant Attacked by Bees' +p115230 +sg25270 +S'Jacques Callot' +p115231 +sg25273 +S'etching' +p115232 +sg25275 +S'c. 1617' +p115233 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084e9.jpg' +p115234 +sg25267 +g27 +sa(dp115235 +g25268 +S'Peasant with Sack' +p115236 +sg25270 +S'Jacques Callot' +p115237 +sg25273 +S'etching' +p115238 +sg25275 +S'c. 1617' +p115239 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084ed.jpg' +p115240 +sg25267 +g27 +sa(dp115241 +g25268 +S'Peasant Removing His Shoe' +p115242 +sg25270 +S'Jacques Callot' +p115243 +sg25273 +S'etching' +p115244 +sg25275 +S'c. 1617' +p115245 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084ec.jpg' +p115246 +sg25267 +g27 +sa(dp115247 +g25268 +S'Peasant Defecating' +p115248 +sg25270 +S'Jacques Callot' +p115249 +sg25273 +S'etching' +p115250 +sg25275 +S'c. 1617' +p115251 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084ea.jpg' +p115252 +sg25267 +g27 +sa(dp115253 +g25268 +S'Shepherd Playing Flute' +p115254 +sg25270 +S'Jacques Callot' +p115255 +sg25273 +S'etching' +p115256 +sg25275 +S'c. 1617' +p115257 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084df.jpg' +p115258 +sg25267 +g27 +sa(dp115259 +g25268 +S'Dancers with Flute and Tambourine' +p115260 +sg25270 +S'Jacques Callot' +p115261 +sg25273 +S'etching' +p115262 +sg25275 +S'c. 1617' +p115263 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084eb.jpg' +p115264 +sg25267 +g27 +sa(dp115265 +g25268 +S'Dancers with Lute' +p115266 +sg25270 +S'Jacques Callot' +p115267 +sg25273 +S'etching' +p115268 +sg25275 +S'c. 1617' +p115269 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084e0.jpg' +p115270 +sg25267 +g27 +sa(dp115271 +g25268 +S'Two Pantaloons Dancing' +p115272 +sg25270 +S'Jacques Callot' +p115273 +sg25273 +S'etching' +p115274 +sg25275 +S'c. 1617' +p115275 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084e1.jpg' +p115276 +sg25267 +g27 +sa(dp115277 +g25268 +S'Two Pantaloons Dancing' +p115278 +sg25270 +S'Jacques Callot' +p115279 +sg25273 +S'etching' +p115280 +sg25275 +S'c. 1617' +p115281 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084de.jpg' +p115282 +sg25267 +g27 +sa(dp115283 +g25268 +S'Almshouse' +p115284 +sg25270 +S'Jacques Callot' +p115285 +sg25273 +S'etching' +p115286 +sg25275 +S'c. 1617' +p115287 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084e6.jpg' +p115288 +sg25267 +g27 +sa(dp115289 +g25268 +S'Tavern' +p115290 +sg25270 +S'Jacques Callot' +p115291 +sg25273 +S'etching' +p115292 +sg25275 +S'c. 1617' +p115293 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084e7.jpg' +p115294 +sg25267 +g27 +sa(dp115295 +g25268 +S'Military Commander on Foot' +p115296 +sg25270 +S'Jacques Callot' +p115297 +sg25273 +S'etching' +p115298 +sg25275 +S'c. 1617' +p115299 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084e4.jpg' +p115300 +sg25267 +g27 +sa(dp115301 +g25268 +S'Military Commander on Horseback' +p115302 +sg25270 +S'Jacques Callot' +p115303 +sg25273 +S'etching' +p115304 +sg25275 +S'c. 1617' +p115305 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084e5.jpg' +p115306 +sg25267 +g27 +sa(dp115307 +g25268 +S'Standard Bearer' +p115308 +sg25270 +S'Jacques Callot' +p115309 +sg25273 +S'etching' +p115310 +sg25275 +S'c. 1617' +p115311 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084dc.jpg' +p115312 +sg25267 +g27 +sa(dp115313 +g25268 +S'Skirmish in a Roman Circus' +p115314 +sg25270 +S'Jacques Callot' +p115315 +sg25273 +S'etching' +p115316 +sg25275 +S'c. 1617' +p115317 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084dd.jpg' +p115318 +sg25267 +g27 +sa(dp115319 +g25268 +S'Piazza SS. Annunziata, Florence' +p115320 +sg25270 +S'Jacques Callot' +p115321 +sg25273 +S'etching' +p115322 +sg25275 +S'c. 1617' +p115323 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084e2.jpg' +p115324 +sg25267 +g27 +sa(dp115325 +g25268 +S'Fireworks on the Arno, Florence' +p115326 +sg25270 +S'Jacques Callot' +p115327 +sg25273 +S'etching' +p115328 +sg25275 +S'c. 1622' +p115329 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085ef.jpg' +p115330 +sg25267 +g27 +sa(dp115331 +g25268 +S'Piazza della Signoria, Florence' +p115332 +sg25270 +S'Jacques Callot' +p115333 +sg25273 +S'etching' +p115334 +sg25275 +S'c. 1622' +p115335 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085f0.jpg' +p115336 +sg25267 +g27 +sa(dp115337 +g25268 +S'Piazza del Duomo, Florence' +p115338 +sg25270 +S'Jacques Callot' +p115339 +sg25273 +S'etching' +p115340 +sg25275 +S'c. 1617' +p115341 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084e3.jpg' +p115342 +sg25267 +g27 +sa(dp115343 +g25268 +S'Piazza Santa Maria Novella, Florence' +p115344 +sg25270 +S'Jacques Callot' +p115345 +sg25273 +S'etching' +p115346 +sg25275 +S'c. 1622' +p115347 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085e9.jpg' +p115348 +sg25267 +g27 +sa(dp115349 +g25268 +S'Piazza Presso alla Porta al Prato' +p115350 +sg25270 +S'Jacques Callot' +p115351 +sg25273 +S'etching' +p115352 +sg25275 +S'c. 1622' +p115353 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085ea.jpg' +p115354 +sg25267 +g27 +sa(dp115355 +g25268 +S'Piazza Santa Croce, Florence' +p115356 +sg25270 +S'Jacques Callot' +p115357 +sg25273 +S'etching' +p115358 +sg25275 +S'c. 1617' +p115359 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084db.jpg' +p115360 +sg25267 +g27 +sa(dp115361 +g25268 +S'Title Page for "The Capricci"' +p115362 +sg25270 +S'Jacques Callot' +p115363 +sg25273 +S'etching' +p115364 +sg25275 +S'c. 1622' +p115365 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000861e.jpg' +p115366 +sg25267 +g27 +sa(dp115367 +g25268 +S'Ornament Panel: Four Children Playing' +p115368 +sg25270 +S'Artist Information (' +p115369 +sg25273 +S'(artist)' +p115370 +sg25275 +S'\n' +p115371 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7be.jpg' +p115372 +sg25267 +g27 +sa(dp115373 +g25268 +S"Dedication to Don Lorenzo de' Medici" +p115374 +sg25270 +S'Jacques Callot' +p115375 +sg25273 +S'etching' +p115376 +sg25275 +S'c. 1622' +p115377 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000861f.jpg' +p115378 +sg25267 +g27 +sa(dp115379 +g25268 +S'Gentleman and His Page' +p115380 +sg25270 +S'Jacques Callot' +p115381 +sg25273 +S'etching' +p115382 +sg25275 +S'c. 1622' +p115383 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000861c.jpg' +p115384 +sg25267 +g27 +sa(dp115385 +g25268 +S'Two Seated Figures' +p115386 +sg25270 +S'Jacques Callot' +p115387 +sg25273 +S'etching' +p115388 +sg25275 +S'c. 1622' +p115389 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000861d.jpg' +p115390 +sg25267 +g27 +sa(dp115391 +g25268 +S'Shepherd and Ruins' +p115392 +sg25270 +S'Jacques Callot' +p115393 +sg25273 +S'etching' +p115394 +sg25275 +S'c. 1622' +p115395 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008632.jpg' +p115396 +sg25267 +g27 +sa(dp115397 +g25268 +S'Courtyard of a Farm' +p115398 +sg25270 +S'Jacques Callot' +p115399 +sg25273 +S'etching' +p115400 +sg25275 +S'c. 1622' +p115401 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008633.jpg' +p115402 +sg25267 +g27 +sa(dp115403 +g25268 +S'Ponte Vecchio, Florence' +p115404 +sg25270 +S'Jacques Callot' +p115405 +sg25273 +S'etching' +p115406 +sg25275 +S'c. 1622' +p115407 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008620.jpg' +p115408 +sg25267 +g27 +sa(dp115409 +g25268 +S'Soldiers Attacking Robbers' +p115410 +sg25270 +S'Jacques Callot' +p115411 +sg25273 +S'etching' +p115412 +sg25275 +S'c. 1622' +p115413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008621.jpg' +p115414 +sg25267 +g27 +sa(dp115415 +g25268 +S'The Promenade' +p115416 +sg25270 +S'Jacques Callot' +p115417 +sg25273 +S'etching' +p115418 +sg25275 +S'c. 1622' +p115419 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008622.jpg' +p115420 +sg25267 +g27 +sa(dp115421 +g25268 +S'The Dance' +p115422 +sg25270 +S'Jacques Callot' +p115423 +sg25273 +S'etching' +p115424 +sg25275 +S'c. 1622' +p115425 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008623.jpg' +p115426 +sg25267 +g27 +sa(dp115427 +g25268 +S'Horses Running' +p115428 +sg25270 +S'Jacques Callot' +p115429 +sg25273 +S'etching' +p115430 +sg25275 +S'c. 1622' +p115431 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000861a.jpg' +p115432 +sg25267 +g27 +sa(dp115433 +g25268 +S'The Archangel Gabriel' +p115434 +sg25270 +S'Masolino da Panicale' +p115435 +sg25273 +S'tempera (?) on panel' +p115436 +sg25275 +S'c. 1430' +p115437 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000085d.jpg' +p115438 +sg25267 +g27 +sa(dp115439 +g25268 +S'Man Moving Abruptly' +p115440 +sg25270 +S'Jacques Callot' +p115441 +sg25273 +S'etching' +p115442 +sg25275 +S'c. 1622' +p115443 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000861b.jpg' +p115444 +sg25267 +g27 +sa(dp115445 +g25268 +S'Violinist' +p115446 +sg25270 +S'Jacques Callot' +p115447 +sg25273 +S'etching' +p115448 +sg25275 +S'c. 1622' +p115449 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008628.jpg' +p115450 +sg25267 +g27 +sa(dp115451 +g25268 +S'Peasant with Hat in Hand' +p115452 +sg25270 +S'Jacques Callot' +p115453 +sg25273 +S'etching' +p115454 +sg25275 +S'c. 1622' +p115455 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008629.jpg' +p115456 +sg25267 +g27 +sa(dp115457 +g25268 +S'Man Wrapped in His Mantle' +p115458 +sg25270 +S'Jacques Callot' +p115459 +sg25273 +S'etching' +p115460 +sg25275 +S'c. 1622' +p115461 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008609.jpg' +p115462 +sg25267 +g27 +sa(dp115463 +g25268 +S'Gentleman with Cane' +p115464 +sg25270 +S'Jacques Callot' +p115465 +sg25273 +S'etching' +p115466 +sg25275 +S'c. 1622' +p115467 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000860a.jpg' +p115468 +sg25267 +g27 +sa(dp115469 +g25268 +S'Man with Sword' +p115470 +sg25270 +S'Jacques Callot' +p115471 +sg25273 +S'etching' +p115472 +sg25275 +S'c. 1622' +p115473 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008607.jpg' +p115474 +sg25267 +g27 +sa(dp115475 +g25268 +S'Man seen from Behind with His Right Arm Extended' +p115476 +sg25270 +S'Jacques Callot' +p115477 +sg25273 +S'etching' +p115478 +sg25275 +S'c. 1622' +p115479 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008608.jpg' +p115480 +sg25267 +g27 +sa(dp115481 +g25268 +S'Two Women in Profile' +p115482 +sg25270 +S'Jacques Callot' +p115483 +sg25273 +S'etching' +p115484 +sg25275 +S'c. 1622' +p115485 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008603.jpg' +p115486 +sg25267 +g27 +sa(dp115487 +g25268 +S'Lady in a Large Coat' +p115488 +sg25270 +S'Jacques Callot' +p115489 +sg25273 +S'etching' +p115490 +sg25275 +S'c. 1622' +p115491 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008604.jpg' +p115492 +sg25267 +g27 +sa(dp115493 +g25268 +S'Gentleman in Large Mantle, Front View' +p115494 +sg25270 +S'Jacques Callot' +p115495 +sg25273 +S'etching' +p115496 +sg25275 +S'c. 1622' +p115497 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000860f.jpg' +p115498 +sg25267 +g27 +sa(dp115499 +g25268 +S'Ornament Panel: Satyr Holding a Violin' +p115500 +sg25270 +S'Artist Information (' +p115501 +sg25273 +S'(artist)' +p115502 +sg25275 +S'\n' +p115503 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7bc.jpg' +p115504 +sg25267 +g27 +sa(dp115505 +g25268 +S'Gentleman Viewed from the Side' +p115506 +sg25270 +S'Jacques Callot' +p115507 +sg25273 +S'etching' +p115508 +sg25275 +S'c. 1622' +p115509 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008605.jpg' +p115510 +sg25267 +g27 +sa(dp115511 +g25268 +S'Gentleman Viewed from the Front with Hand on Hip' +p115512 +sg25270 +S'Jacques Callot' +p115513 +sg25273 +S'etching' +p115514 +sg25275 +S'c. 1622' +p115515 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000860b.jpg' +p115516 +sg25267 +g27 +sa(dp115517 +g25268 +S'Peasant with a Cup' +p115518 +sg25270 +S'Jacques Callot' +p115519 +sg25273 +S'etching' +p115520 +sg25275 +S'c. 1622' +p115521 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000860c.jpg' +p115522 +sg25267 +g27 +sa(dp115523 +g25268 +S'Gentleman in Large Mantle, Seen from Behind' +p115524 +sg25270 +S'Jacques Callot' +p115525 +sg25273 +S'etching' +p115526 +sg25275 +S'c. 1622' +p115527 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008610.jpg' +p115528 +sg25267 +g27 +sa(dp115529 +g25268 +S'Duel with Swords and Daggers' +p115530 +sg25270 +S'Jacques Callot' +p115531 +sg25273 +S'etching' +p115532 +sg25275 +S'c. 1622' +p115533 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085ca.jpg' +p115534 +sg25267 +g27 +sa(dp115535 +g25268 +S'Duel with Swords' +p115536 +sg25270 +S'Jacques Callot' +p115537 +sg25273 +S'etching' +p115538 +sg25275 +S'c. 1622' +p115539 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085c9.jpg' +p115540 +sg25267 +g27 +sa(dp115541 +g25268 +S'Peasant with Shovel on His Shoulder' +p115542 +sg25270 +S'Jacques Callot' +p115543 +sg25273 +S'etching' +p115544 +sg25275 +S'c. 1622' +p115545 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008606.jpg' +p115546 +sg25267 +g27 +sa(dp115547 +g25268 +S'Peasant Attacked by Bees' +p115548 +sg25270 +S'Jacques Callot' +p115549 +sg25273 +S'etching' +p115550 +sg25275 +S'c. 1622' +p115551 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085cf.jpg' +p115552 +sg25267 +g27 +sa(dp115553 +g25268 +S'Peasant with Sack' +p115554 +sg25270 +S'Jacques Callot' +p115555 +sg25273 +S'etching' +p115556 +sg25275 +S'c. 1622' +p115557 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085c5.jpg' +p115558 +sg25267 +g27 +sa(dp115559 +g25268 +S'Peasant Removing His Shoe' +p115560 +sg25270 +S'Jacques Callot' +p115561 +sg25273 +S'etching' +p115562 +sg25275 +S'c. 1622' +p115563 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085d0.jpg' +p115564 +sg25267 +g27 +sa(dp115565 +g25273 +S'lithograph' +p115566 +sg25267 +g27 +sg25275 +S'unknown date\n' +p115567 +sg25268 +S'The Concert' +p115568 +sg25270 +S'Mariano Andreu' +p115569 +sa(dp115570 +g25268 +S'Peasant Defecating' +p115571 +sg25270 +S'Jacques Callot' +p115572 +sg25273 +S'etching' +p115573 +sg25275 +S'c. 1622' +p115574 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085c6.jpg' +p115575 +sg25267 +g27 +sa(dp115576 +g25268 +S'Shepherd Playing Flute' +p115577 +sg25270 +S'Jacques Callot' +p115578 +sg25273 +S'etching' +p115579 +sg25275 +S'c. 1622' +p115580 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085cb.jpg' +p115581 +sg25267 +g27 +sa(dp115582 +g25268 +S'Dancers with Flute and Tambourine' +p115583 +sg25270 +S'Jacques Callot' +p115584 +sg25273 +S'etching' +p115585 +sg25275 +S'c. 1622' +p115586 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085cd.jpg' +p115587 +sg25267 +g27 +sa(dp115588 +g25268 +S'Dancers with Lute' +p115589 +sg25270 +S'Jacques Callot' +p115590 +sg25273 +S'etching' +p115591 +sg25275 +S'c. 1622' +p115592 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085ce.jpg' +p115593 +sg25267 +g27 +sa(dp115594 +g25268 +S'Two Pantaloons Dancing' +p115595 +sg25270 +S'Jacques Callot' +p115596 +sg25273 +S'etching' +p115597 +sg25275 +S'c. 1622' +p115598 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085c7.jpg' +p115599 +sg25267 +g27 +sa(dp115600 +g25268 +S'Two Pantaloons Dancing' +p115601 +sg25270 +S'Jacques Callot' +p115602 +sg25273 +S'etching' +p115603 +sg25275 +S'c. 1622' +p115604 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085c8.jpg' +p115605 +sg25267 +g27 +sa(dp115606 +g25268 +S'Almshouse' +p115607 +sg25270 +S'Jacques Callot' +p115608 +sg25273 +S'etching' +p115609 +sg25275 +S'c. 1622' +p115610 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085cc.jpg' +p115611 +sg25267 +g27 +sa(dp115612 +g25268 +S'Tavern' +p115613 +sg25270 +S'Jacques Callot' +p115614 +sg25273 +S'etching' +p115615 +sg25275 +S'c. 1622' +p115616 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085f7.jpg' +p115617 +sg25267 +g27 +sa(dp115618 +g25268 +S'Military Commander on Foot' +p115619 +sg25270 +S'Jacques Callot' +p115620 +sg25273 +S'etching' +p115621 +sg25275 +S'c. 1622' +p115622 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085f8.jpg' +p115623 +sg25267 +g27 +sa(dp115624 +g25268 +S'Military Commander on Horseback' +p115625 +sg25270 +S'Jacques Callot' +p115626 +sg25273 +S'etching' +p115627 +sg25275 +S'c. 1622' +p115628 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085f5.jpg' +p115629 +sg25267 +g27 +sa(dp115630 +g25268 +S'Adam and Eve' +p115631 +sg25270 +S'German 15th Century' +p115632 +sg25273 +S'Schreiber, no. 14, State m' +p115633 +sg25275 +S'\nwoodcut, hand-colored in red lake, green, tan, and ochre' +p115634 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a593.jpg' +p115635 +sg25267 +g27 +sa(dp115636 +g25268 +S'Standard Bearer' +p115637 +sg25270 +S'Jacques Callot' +p115638 +sg25273 +S'etching' +p115639 +sg25275 +S'c. 1622' +p115640 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085f6.jpg' +p115641 +sg25267 +g27 +sa(dp115642 +g25268 +S'Skirmish in a Roman Circus' +p115643 +sg25270 +S'Jacques Callot' +p115644 +sg25273 +S'etching' +p115645 +sg25275 +S'c. 1622' +p115646 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085ed.jpg' +p115647 +sg25267 +g27 +sa(dp115648 +g25268 +S'Piazza SS. Annunziata, Florence' +p115649 +sg25270 +S'Jacques Callot' +p115650 +sg25273 +S'etching' +p115651 +sg25275 +S'c. 1622' +p115652 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085ee.jpg' +p115653 +sg25267 +g27 +sa(dp115654 +g25268 +S'Fireworks on the Arno, Florence' +p115655 +sg25270 +S'Jacques Callot' +p115656 +sg25273 +S'etching' +p115657 +sg25275 +S'c. 1622' +p115658 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085e5.jpg' +p115659 +sg25267 +g27 +sa(dp115660 +g25268 +S'Piazza della Signoria, Florence' +p115661 +sg25270 +S'Jacques Callot' +p115662 +sg25273 +S'etching' +p115663 +sg25275 +S'c. 1622' +p115664 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085e6.jpg' +p115665 +sg25267 +g27 +sa(dp115666 +g25268 +S'Piazza del Duomo, Florence' +p115667 +sg25270 +S'Jacques Callot' +p115668 +sg25273 +S'etching' +p115669 +sg25275 +S'c. 1622' +p115670 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085f3.jpg' +p115671 +sg25267 +g27 +sa(dp115672 +g25268 +S'Piazza Santa Maria Novella, Florence' +p115673 +sg25270 +S'Jacques Callot' +p115674 +sg25273 +S'etching' +p115675 +sg25275 +S'c. 1622' +p115676 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085f4.jpg' +p115677 +sg25267 +g27 +sa(dp115678 +g25268 +S'Piazza Presso alla Porta al Prato' +p115679 +sg25270 +S'Jacques Callot' +p115680 +sg25273 +S'etching' +p115681 +sg25275 +S'c. 1622' +p115682 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085f1.jpg' +p115683 +sg25267 +g27 +sa(dp115684 +g25268 +S'Piazza Santa Croce, Florence' +p115685 +sg25270 +S'Jacques Callot' +p115686 +sg25273 +S'etching' +p115687 +sg25275 +S'c. 1622' +p115688 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085f2.jpg' +p115689 +sg25267 +g27 +sa(dp115690 +g25268 +S'The Catafalque of the Emperor Mathias' +p115691 +sg25270 +S'Jacques Callot' +p115692 +sg25273 +S'etching and engraving' +p115693 +sg25275 +S'1619' +p115694 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008abb.jpg' +p115695 +sg25267 +g27 +sa(dp115696 +g25268 +S'The Annunciation' +p115697 +sg25270 +S'German 15th Century' +p115698 +sg25273 +S'image: 27.1 x 19.3 cm (10 11/16 x 7 5/8 in.)\r\nsheet: 31.5 x 22.7 cm (12 3/8 x 8 15/16 in.)\r\noverall: 59.7 x 44.5 cm (23 1/2 x 17 1/2 in.)' +p115699 +sg25275 +S'\nwoodcut, hand-colored in red lake, green, yellow, tan, olive, and pink' +p115700 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a000561c.jpg' +p115701 +sg25267 +g27 +sa(dp115702 +g25268 +S'The Catafalque of the Emperor Mathias' +p115703 +sg25270 +S'Jacques Callot' +p115704 +sg25273 +S'etching and engraving' +p115705 +sg25275 +S'1619' +p115706 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008abc.jpg' +p115707 +sg25267 +g27 +sa(dp115708 +g25268 +S'The Nativity' +p115709 +sg25270 +S'French 15th Century' +p115710 +sg25273 +S'Schreiber, no. 63, State a' +p115711 +sg25275 +S'\nwoodcut, hand-colored in red, brown, slate blue, ochre, and blue' +p115712 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a00082f4.jpg' +p115713 +sg25267 +g27 +sa(dp115714 +g25268 +S'The Cavalry Combat with Swords' +p115715 +sg25270 +S'Jacques Callot' +p115716 +sg25273 +S'etching' +p115717 +sg25275 +S'c. 1632/1634' +p115718 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088aa.jpg' +p115719 +sg25267 +g27 +sa(dp115720 +g25268 +S'The Cavalry Combat with Pistols' +p115721 +sg25270 +S'Jacques Callot' +p115722 +sg25273 +S'etching' +p115723 +sg25275 +S'c. 1632/1634' +p115724 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088ab.jpg' +p115725 +sg25267 +g27 +sa(dp115726 +g25268 +S'Two Society Women' +p115727 +sg25270 +S'Jacques Callot' +p115728 +sg25273 +S'etching' +p115729 +sg25275 +S'c. 1623' +p115730 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085b7.jpg' +p115731 +sg25267 +g27 +sa(dp115732 +g25268 +S'Two Zanni' +p115733 +sg25270 +S'Jacques Callot' +p115734 +sg25273 +S'etching' +p115735 +sg25275 +S'c. 1616' +p115736 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008405.jpg' +p115737 +sg25267 +g27 +sa(dp115738 +g25268 +S'The Winder and the Spinner' +p115739 +sg25270 +S'Jacques Callot' +p115740 +sg25273 +S'etching' +p115741 +sg25275 +S'c. 1623' +p115742 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085b8.jpg' +p115743 +sg25267 +g27 +sa(dp115744 +g25268 +S'The Young Jesus' +p115745 +sg25270 +S'Jacques Callot' +p115746 +sg25273 +S'etching' +p115747 +sg25275 +S'unknown date\n' +p115748 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000851c.jpg' +p115749 +sg25267 +g27 +sa(dp115750 +g25268 +S'The Young Jesus' +p115751 +sg25270 +S'Jacques Callot' +p115752 +sg25273 +S'etching' +p115753 +sg25275 +S'unknown date\n' +p115754 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000851d.jpg' +p115755 +sg25267 +g27 +sa(dp115756 +g25268 +S'Title Page for "The Fantasies"' +p115757 +sg25270 +S'Jacques Callot' +p115758 +sg25273 +S'etching' +p115759 +sg25275 +S'probably 1634' +p115760 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087fd.jpg' +p115761 +sg25267 +g27 +sa(dp115762 +g25268 +S'The Adoration of the Magi' +p115763 +sg25270 +S'German 15th Century' +p115764 +sg25273 +S'Schreiber, no. 103' +p115765 +sg25275 +S'\nwoodcut' +p115766 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c69c.jpg' +p115767 +sg25267 +g27 +sa(dp115768 +g25268 +S'Lady with Dress Gathered Up, and Two Gentlemen' +p115769 +sg25270 +S'Jacques Callot' +p115770 +sg25273 +S'etching' +p115771 +sg25275 +S'probably 1634' +p115772 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087fe.jpg' +p115773 +sg25267 +g27 +sa(dp115774 +g25268 +S'Lady with Plumed Hat, and Two Gentlemen' +p115775 +sg25270 +S'Jacques Callot' +p115776 +sg25273 +S'etching' +p115777 +sg25275 +S'probably 1634' +p115778 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008803.jpg' +p115779 +sg25267 +g27 +sa(dp115780 +g25268 +S'Lady with String Instrument, and Two Gentlemen' +p115781 +sg25270 +S'Jacques Callot' +p115782 +sg25273 +S'etching' +p115783 +sg25275 +S'probably 1634' +p115784 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008804.jpg' +p115785 +sg25267 +g27 +sa(dp115786 +g25268 +S'Lady with Outstretched Arm, and Two Gentlemen' +p115787 +sg25270 +S'Jacques Callot' +p115788 +sg25273 +S'etching' +p115789 +sg25275 +S'probably 1634' +p115790 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087fb.jpg' +p115791 +sg25267 +g27 +sa(dp115792 +g25268 +S'Three Gentlemen' +p115793 +sg25270 +S'Jacques Callot' +p115794 +sg25273 +S'etching' +p115795 +sg25275 +S'probably 1634' +p115796 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087fc.jpg' +p115797 +sg25267 +g27 +sa(dp115798 +g25268 +S'Lady with Large Plumes, and Two Gentlemen' +p115799 +sg25270 +S'Jacques Callot' +p115800 +sg25273 +S'etching' +p115801 +sg25275 +S'probably 1634' +p115802 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008801.jpg' +p115803 +sg25267 +g27 +sa(dp115804 +g25268 +S'Lady Seen from Behind, and Two Gentlemen' +p115805 +sg25270 +S'Jacques Callot' +p115806 +sg25273 +S'etching' +p115807 +sg25275 +S'probably 1634' +p115808 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008802.jpg' +p115809 +sg25267 +g27 +sa(dp115810 +g25268 +S'Lady with Outstretched Arm, Seen from Behind, and Two Gentlemen' +p115811 +sg25270 +S'Jacques Callot' +p115812 +sg25273 +S'etching' +p115813 +sg25275 +S'probably 1634' +p115814 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087ff.jpg' +p115815 +sg25267 +g27 +sa(dp115816 +g25268 +S'Lady with Arms Folded, and Two Gentlemen' +p115817 +sg25270 +S'Jacques Callot' +p115818 +sg25273 +S'etching' +p115819 +sg25275 +S'probably 1634' +p115820 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008800.jpg' +p115821 +sg25267 +g27 +sa(dp115822 +g25268 +S'Lady with Wine Bottle, and Two Gentlemen' +p115823 +sg25270 +S'Jacques Callot' +p115824 +sg25273 +S'etching' +p115825 +sg25275 +S'probably 1634' +p115826 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008807.jpg' +p115827 +sg25267 +g27 +sa(dp115828 +g25268 +S'The Adoration of the Magi' +p115829 +sg25270 +S'German 15th Century' +p115830 +sg25273 +S'Schreiber, no. 108, State d' +p115831 +sg25275 +S'\nwoodcut, hand-colored in orange, green, and rose' +p115832 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a501.jpg' +p115833 +sg25267 +g27 +sa(dp115834 +g25268 +S'Lady in Long Cloak, and Two Gentlemen' +p115835 +sg25270 +S'Jacques Callot' +p115836 +sg25273 +S'etching' +p115837 +sg25275 +S'probably 1634' +p115838 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008808.jpg' +p115839 +sg25267 +g27 +sa(dp115840 +g25268 +S'Lady with Plumes, and Two Gentlemen' +p115841 +sg25270 +S'Jacques Callot' +p115842 +sg25273 +S'etching' +p115843 +sg25275 +S'probably 1634' +p115844 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008805.jpg' +p115845 +sg25267 +g27 +sa(dp115846 +g25268 +S'Three Women, One Holding a Child' +p115847 +sg25270 +S'Jacques Callot' +p115848 +sg25273 +S'etching' +p115849 +sg25275 +S'probably 1634' +p115850 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008806.jpg' +p115851 +sg25267 +g27 +sa(dp115852 +g25268 +S'La belle jardiniere' +p115853 +sg25270 +S'Jacques Callot' +p115854 +sg25273 +S'etching' +p115855 +sg25275 +S'1619' +p115856 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000852f.jpg' +p115857 +sg25267 +g27 +sa(dp115858 +g25268 +S'Frontispiece for "Varie Figure"' +p115859 +sg25270 +S'Jacques Callot' +p115860 +sg25273 +S'etching' +p115861 +sg25275 +S'c. 1621' +p115862 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008584.jpg' +p115863 +sg25267 +g27 +sa(dp115864 +g25268 +S'Peasant Woman with Basket, in Profile, Facing Left' +p115865 +sg25270 +S'Jacques Callot' +p115866 +sg25273 +S'etching' +p115867 +sg25275 +S'1617 and 1621' +p115868 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083ac.jpg' +p115869 +sg25267 +g27 +sa(dp115870 +g25268 +S'Officer, Front View' +p115871 +sg25270 +S'Jacques Callot' +p115872 +sg25273 +S'etching' +p115873 +sg25275 +S'1617 and 1621' +p115874 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000843a.jpg' +p115875 +sg25267 +g27 +sa(dp115876 +g25268 +S'Peasant Woman, in Profile, Facing Left' +p115877 +sg25270 +S'Jacques Callot' +p115878 +sg25273 +S'etching' +p115879 +sg25275 +S'1617 and 1621' +p115880 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008396.jpg' +p115881 +sg25267 +g27 +sa(dp115882 +g25268 +S'Man in Cloak, Seen from Behind' +p115883 +sg25270 +S'Jacques Callot' +p115884 +sg25273 +S'etching' +p115885 +sg25275 +S'1617 and 1621' +p115886 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008477.jpg' +p115887 +sg25267 +g27 +sa(dp115888 +g25268 +S'Peasant Woman with Basket, in Profile, Facing Right' +p115889 +sg25270 +S'Jacques Callot' +p115890 +sg25273 +S'etching' +p115891 +sg25275 +S'1617 and 1621' +p115892 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000836a.jpg' +p115893 +sg25267 +g27 +sa(dp115894 +g25268 +S'The Transfiguration' +p115895 +sg25270 +S'German 15th Century' +p115896 +sg25273 +S'Schreiber, no. 140' +p115897 +sg25275 +S'\nwoodcut in warm black ink, hand-colored in red lake, blue, yellow, rose, orange, and silver' +p115898 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5e4.jpg' +p115899 +sg25267 +g27 +sa(dp115900 +g25268 +S'Officer, with Arm Extended, Front View' +p115901 +sg25270 +S'Jacques Callot' +p115902 +sg25273 +S'etching' +p115903 +sg25275 +S'1617 and 1621' +p115904 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008444.jpg' +p115905 +sg25267 +g27 +sa(dp115906 +g25268 +S'Two Turks' +p115907 +sg25270 +S'Jacques Callot' +p115908 +sg25273 +S'etching' +p115909 +sg25275 +S'1617 and 1621' +p115910 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008409.jpg' +p115911 +sg25267 +g27 +sa(dp115912 +g25268 +S'Peasant Woman, in Profile, Facing Right, with Arm Extended' +p115913 +sg25270 +S'Jacques Callot' +p115914 +sg25273 +S'etching' +p115915 +sg25275 +S'1617 and 1621' +p115916 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083a1.jpg' +p115917 +sg25267 +g27 +sa(dp115918 +g25268 +S'Peasant Woman with Basket, Seen from Behind' +p115919 +sg25270 +S'Jacques Callot' +p115920 +sg25273 +S'etching' +p115921 +sg25275 +S'1617 and 1621' +p115922 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008375.jpg' +p115923 +sg25267 +g27 +sa(dp115924 +g25268 +S'Peasant Woman with Basket on Head, Front View' +p115925 +sg25270 +S'Jacques Callot' +p115926 +sg25273 +S'etching' +p115927 +sg25275 +S'1617 and 1621' +p115928 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083b7.jpg' +p115929 +sg25267 +g27 +sa(dp115930 +g25268 +S'Officer with Large Plume, Front View' +p115931 +sg25270 +S'Jacques Callot' +p115932 +sg25273 +S'etching' +p115933 +sg25275 +S'1617 and 1621' +p115934 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000846a.jpg' +p115935 +sg25267 +g27 +sa(dp115936 +g25268 +S'Officer with Plume, Seen from Behind' +p115937 +sg25270 +S'Jacques Callot' +p115938 +sg25273 +S'etching' +p115939 +sg25275 +S'1617 and 1621' +p115940 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008413.jpg' +p115941 +sg25267 +g27 +sa(dp115942 +g25268 +S'Peasant Couple at Rest' +p115943 +sg25270 +S'Jacques Callot' +p115944 +sg25273 +S'etching' +p115945 +sg25275 +S'c. 1621' +p115946 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008583.jpg' +p115947 +sg25267 +g27 +sa(dp115948 +g25268 +S'Peasant Couple with Cow' +p115949 +sg25270 +S'Jacques Callot' +p115950 +sg25273 +S'etching' +p115951 +sg25275 +S'c. 1621' +p115952 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008582.jpg' +p115953 +sg25267 +g27 +sa(dp115954 +g25268 +S'Two Turks Dressed in Turbans with a Plume' +p115955 +sg25270 +S'Jacques Callot' +p115956 +sg25273 +S'etching' +p115957 +sg25275 +S'unknown date\n' +p115958 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083f5.jpg' +p115959 +sg25267 +g27 +sa(dp115960 +g25268 +S'Christ and the Woman of Samaria' +p115961 +sg25270 +S'German 15th Century' +p115962 +sg25273 +S'Schreiber, no. 141, State b' +p115963 +sg25275 +S'\nwoodcut, hand-colored in red lake, green, tan, blue, and yellow' +p115964 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a594.jpg' +p115965 +sg25267 +g27 +sa(dp115966 +g25268 +S'Officer with Feathers in Cap, Seen from Behind' +p115967 +sg25270 +S'Jacques Callot' +p115968 +sg25273 +S'etching' +p115969 +sg25275 +S'1617 and 1621' +p115970 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000841d.jpg' +p115971 +sg25267 +g27 +sa(dp115972 +g25268 +S'Frontispiece for "Gloriosissimae"' +p115973 +sg25270 +S'Jacques Callot' +p115974 +sg25273 +S'etching' +p115975 +sg25275 +S'unknown date\n' +p115976 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085c3.jpg' +p115977 +sg25267 +g27 +sa(dp115978 +g25268 +S'Frontispiece for the Miracles and Graces of Our Lady of "Bon-Secours-les-Nancy"' +p115979 +sg25270 +S'Jacques Callot' +p115980 +sg25273 +S'etching' +p115981 +sg25275 +S'unknown date\n' +p115982 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086f0.jpg' +p115983 +sg25267 +g27 +sa(dp115984 +g25268 +S'Giovanni Domenico Peri' +p115985 +sg25270 +S'Jacques Callot' +p115986 +sg25273 +S'etching' +p115987 +sg25275 +S'1619' +p115988 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000852c.jpg' +p115989 +sg25267 +g27 +sa(dp115990 +g25268 +S'Frontispiece for "Varie Figure Gobbi"' +p115991 +sg25270 +S'Jacques Callot' +p115992 +sg25273 +S'etching and engraving//one of four prints on uncut sheet of Lorrainese paper (1949.5.253.a-d)' +p115993 +sg25275 +S'c. 1622' +p115994 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000859a.jpg' +p115995 +sg25267 +g27 +sa(dp115996 +g25268 +S'The Lute Player' +p115997 +sg25270 +S'Jacques Callot' +p115998 +sg25273 +S'etching and engraving//one of four prints on uncut sheet of Lorrainese paper (1949.5.253.a-d)' +p115999 +sg25275 +S'c. 1622' +p116000 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000859b.jpg' +p116001 +sg25267 +g27 +sa(dp116002 +g25268 +S'The Drinker, Front View' +p116003 +sg25270 +S'Jacques Callot' +p116004 +sg25273 +S'etching and engraving//one of four prints on uncut sheet of Lorrainese paper (1949.5.253.a-d)' +p116005 +sg25275 +S'c. 1622' +p116006 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000859c.jpg' +p116007 +sg25267 +g27 +sa(dp116008 +g25268 +S'The Flageolet Player' +p116009 +sg25270 +S'Jacques Callot' +p116010 +sg25273 +S'etching and engraving//one of four prints on uncut sheet of Lorrainese paper (1949.5.253.a-d)' +p116011 +sg25275 +S'c. 1622' +p116012 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000859d.jpg' +p116013 +sg25267 +g27 +sa(dp116014 +g25268 +S'Duellist with Two Sabers' +p116015 +sg25270 +S'Jacques Callot' +p116016 +sg25273 +S'etching and engraving//one of three prints on uncut sheet of Lorrainese paper (1949.5.254.a-c)' +p116017 +sg25275 +S'c. 1622' +p116018 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008592.jpg' +p116019 +sg25267 +g27 +sa(dp116020 +g25268 +S'Duellist with Sword and Dagger' +p116021 +sg25270 +S'Jacques Callot' +p116022 +sg25273 +S'etching and engraving//one of three prints on uncut sheet of Lorrainese paper (1949.5.254.a-c)' +p116023 +sg25275 +S'c. 1622' +p116024 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008593.jpg' +p116025 +sg25267 +g27 +sa(dp116026 +g25268 +S'The Virgin Annunciate' +p116027 +sg25270 +S'Masolino da Panicale' +p116028 +sg25273 +S'tempera (?) on panel' +p116029 +sg25275 +S'c. 1430' +p116030 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000085e.jpg' +p116031 +sg25267 +g27 +sa(dp116032 +g25268 +S'Christ and the Woman of Samaria' +p116033 +sg25270 +S'German 15th Century' +p116034 +sg25273 +S'Schreiber, Vol. *, no. 141, State c' +p116035 +sg25275 +S'\nwoodcut, hand-colored in red lake, yellow, green, blue, brown, and gray' +p116036 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4fd.jpg' +p116037 +sg25267 +g27 +sa(dp116038 +g25268 +S'Cripple with Crutch and Wooden Leg' +p116039 +sg25270 +S'Jacques Callot' +p116040 +sg25273 +S'etching and engraving//one of three prints on uncut sheet of Lorrainese paper (1949.5.254.a-c)' +p116041 +sg25275 +S'c. 1622' +p116042 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008594.jpg' +p116043 +sg25267 +g27 +sa(dp116044 +g25268 +S'The Masked Comedian Playing a Guitar' +p116045 +sg25270 +S'Jacques Callot' +p116046 +sg25273 +S'etching and engraving' +p116047 +sg25275 +S'c. 1622' +p116048 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085a1.jpg' +p116049 +sg25267 +g27 +sa(dp116050 +g25268 +S'The Guitar Player' +p116051 +sg25270 +S'Jacques Callot' +p116052 +sg25273 +S'etching and engraving' +p116053 +sg25275 +S'c. 1622' +p116054 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085b3.jpg' +p116055 +sg25267 +g27 +sa(dp116056 +g25268 +S'The Hurdy-Gurdy Player' +p116057 +sg25270 +S'Jacques Callot' +p116058 +sg25273 +S'etching and engraving//one of three prints on uncut sheet of Lorrainese paper (1949.5.257.a-c)' +p116059 +sg25275 +S'c. 1622' +p116060 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000859e.jpg' +p116061 +sg25267 +g27 +sa(dp116062 +g25268 +S'The Bagpipe Player' +p116063 +sg25270 +S'Jacques Callot' +p116064 +sg25273 +S'etching and engraving//one of three prints on uncut sheet of Lorrainese paper (1949.5.257.a-c)' +p116065 +sg25275 +S'c. 1622' +p116066 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000859f.jpg' +p116067 +sg25267 +g27 +sa(dp116068 +g25268 +S'Man with Big Belly' +p116069 +sg25270 +S'Jacques Callot' +p116070 +sg25273 +S'etching and engraving//one of three prints on uncut sheet of Lorrainese paper (1949.5.257.a-c)' +p116071 +sg25275 +S'c. 1622' +p116072 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085a0.jpg' +p116073 +sg25267 +g27 +sa(dp116074 +g25268 +S'The Hooded Cripple' +p116075 +sg25270 +S'Jacques Callot' +p116076 +sg25273 +S'etching and engraving' +p116077 +sg25275 +S'c. 1622' +p116078 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008595.jpg' +p116079 +sg25267 +g27 +sa(dp116080 +g25268 +S'The Hunchback with a Cane' +p116081 +sg25270 +S'Jacques Callot' +p116082 +sg25273 +S'etching and engraving//one of four prints on uncut sheet of Lorrainese paper (1949.5.259.a-d)' +p116083 +sg25275 +S'c. 1622' +p116084 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008596.jpg' +p116085 +sg25267 +g27 +sa(dp116086 +g25268 +S'The Drinker, Back View' +p116087 +sg25270 +S'Jacques Callot' +p116088 +sg25273 +S'etching and engraving//one of four prints on uncut sheet of Lorrainese paper (1949.5.259.a-d)' +p116089 +sg25275 +S'c. 1622' +p116090 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008597.jpg' +p116091 +sg25267 +g27 +sa(dp116092 +g25268 +S'The Hunchback with the Feathered Cap' +p116093 +sg25270 +S'Jacques Callot' +p116094 +sg25273 +S'etching and engraving//one of four prints on uncut sheet of Lorrainese paper (1949.5.259.a-d)' +p116095 +sg25275 +S'c. 1622' +p116096 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008598.jpg' +p116097 +sg25267 +g27 +sa(dp116098 +g25268 +S'The Stoning of Christ' +p116099 +sg25270 +S'German 15th Century' +p116100 +sg25273 +S'Schreiber, no. 143, State a' +p116101 +sg25275 +S'\nwoodcut, hand-colored in red, green, yellow, blue-gray, and gold' +p116102 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a582.jpg' +p116103 +sg25267 +g27 +sa(dp116104 +g25268 +S'The Potbellied Man with the Tall Hat' +p116105 +sg25270 +S'Jacques Callot' +p116106 +sg25273 +S'etching and engraving//one of four prints on uncut sheet of Lorrainese paper (1949.5.259.a-d)' +p116107 +sg25275 +S'c. 1622' +p116108 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008599.jpg' +p116109 +sg25267 +g27 +sa(dp116110 +g25268 +S'Man Scraping a Grill' +p116111 +sg25270 +S'Jacques Callot' +p116112 +sg25273 +S'etching and engraving//one of four prints on uncut sheet of Lorrainese paper (1949.5.260.a-d)' +p116113 +sg25275 +S'c. 1622' +p116114 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085a2.jpg' +p116115 +sg25267 +g27 +sa(dp116116 +g25268 +S'The Violin Player' +p116117 +sg25270 +S'Jacques Callot' +p116118 +sg25273 +S'etching and engraving//one of four prints on uncut sheet of Lorrainese paper (1949.5.260.a-d)' +p116119 +sg25275 +S'c. 1622' +p116120 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085a3.jpg' +p116121 +sg25267 +g27 +sa(dp116122 +g25268 +S'Man Preparing to Draw his Sword' +p116123 +sg25270 +S'Jacques Callot' +p116124 +sg25273 +S'etching and engraving//one of four prints on uncut sheet of Lorrainese paper (1949.5.260.a-d)' +p116125 +sg25275 +S'c. 1622' +p116126 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085a4.jpg' +p116127 +sg25267 +g27 +sa(dp116128 +g25268 +S'Masked Man with Twisted Feet' +p116129 +sg25270 +S'Jacques Callot' +p116130 +sg25273 +S'etching and engraving//one of four prints on uncut sheet of Lorrainese paper (1949.5.260.a-d)' +p116131 +sg25275 +S'c. 1622' +p116132 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085a5.jpg' +p116133 +sg25267 +g27 +sa(dp116134 +g25268 +S'The Steamboat, Venice' +p116135 +sg25270 +S'James McNeill Whistler' +p116136 +sg25273 +S'etching' +p116137 +sg25275 +S'1879/1880' +p116138 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b50d.jpg' +p116139 +sg25267 +g27 +sa(dp116140 +g25268 +S'Venetian Water-Carrier' +p116141 +sg25270 +S'James McNeill Whistler' +p116142 +sg25273 +S'etching' +p116143 +sg25275 +S'1879/1880' +p116144 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b50e.jpg' +p116145 +sg25267 +g27 +sa(dp116146 +g25268 +S'Alderney Street' +p116147 +sg25270 +S'James McNeill Whistler' +p116148 +sg25273 +S'etching' +p116149 +sg25275 +S'c. 1880/1881' +p116150 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa3a.jpg' +p116151 +sg25267 +g27 +sa(dp116152 +g25268 +S'Little Dordrecht' +p116153 +sg25270 +S'James McNeill Whistler' +p116154 +sg25273 +S'etching' +p116155 +sg25275 +S'1884' +p116156 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa3e.jpg' +p116157 +sg25267 +g27 +sa(dp116158 +g25268 +S'A Sketch at Dieppe' +p116159 +sg25270 +S'James McNeill Whistler' +p116160 +sg25273 +S'etching' +p116161 +sg25275 +S'unknown date\n' +p116162 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa11.jpg' +p116163 +sg25267 +g27 +sa(dp116164 +g25268 +S"Christ's Entry into Jerusalem" +p116165 +sg25270 +S'German 15th Century' +p116166 +sg25273 +S'Schreiber, no. 150' +p116167 +sg25275 +S'\nwoodcut in light brown, hand-colored in red lake, green, black, tan, orange, and yellow' +p116168 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4fa.jpg' +p116169 +sg25267 +g27 +sa(dp116170 +g25268 +S'A Corner of the Palais Royal' +p116171 +sg25270 +S'James McNeill Whistler' +p116172 +sg25273 +S'etching' +p116173 +sg25275 +S'c. 1883/1886' +p116174 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa07.jpg' +p116175 +sg25267 +g27 +sa(dp116176 +g25268 +S'A Sketch on the Embankment' +p116177 +sg25270 +S'James McNeill Whistler' +p116178 +sg25273 +S'etching' +p116179 +sg25275 +S'c. 1884/1886' +p116180 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa09.jpg' +p116181 +sg25267 +g27 +sa(dp116182 +g25268 +S'The Menpes Children' +p116183 +sg25270 +S'James McNeill Whistler' +p116184 +sg25273 +S'etching' +p116185 +sg25275 +S'c. 1884/1886' +p116186 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa0f.jpg' +p116187 +sg25267 +g27 +sa(dp116188 +g25268 +S'Savoy Scaffolding' +p116189 +sg25270 +S'James McNeill Whistler' +p116190 +sg25273 +S'etching' +p116191 +sg25275 +S'c. 1887' +p116192 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa2f.jpg' +p116193 +sg25267 +g27 +sa(dp116194 +g25268 +S'Furniture-Shop' +p116195 +sg25270 +S'James McNeill Whistler' +p116196 +sg25273 +S'etching and drypoint' +p116197 +sg25275 +S'c. 1887' +p116198 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa2c.jpg' +p116199 +sg25267 +g27 +sa(dp116200 +g25268 +S'Shaving and Shampooing' +p116201 +sg25270 +S'James McNeill Whistler' +p116202 +sg25273 +S'etching' +p116203 +sg25275 +S'c. 1886/1888' +p116204 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa2e.jpg' +p116205 +sg25267 +g27 +sa(dp116206 +g25268 +S"King's Road, Chelsea" +p116207 +sg25270 +S'James McNeill Whistler' +p116208 +sg25273 +S'etching' +p116209 +sg25275 +S'c. 1886/1888' +p116210 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa6a.jpg' +p116211 +sg25267 +g27 +sa(dp116212 +g25268 +S"Little Maunder's" +p116213 +sg25270 +S'James McNeill Whistler' +p116214 +sg25273 +S'etching on laid paper' +p116215 +sg25275 +S'unknown date\n' +p116216 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa6b.jpg' +p116217 +sg25267 +g27 +sa(dp116218 +g25268 +S"Christ Washing the Apostles' Feet" +p116219 +sg25270 +S'Jacques Callot' +p116220 +sg25273 +S'etching and engraving' +p116221 +sg25275 +S'c. 1618' +p116222 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000850b.jpg' +p116223 +sg25267 +g27 +sa(dp116224 +g25268 +S'The Last Supper' +p116225 +sg25270 +S'Jacques Callot' +p116226 +sg25273 +S'etching and engraving' +p116227 +sg25275 +S'c. 1618' +p116228 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000850a.jpg' +p116229 +sg25267 +g27 +sa(dp116230 +g25268 +S"Christ's Entry into Jerusalem" +p116231 +sg25270 +S'German 15th Century' +p116232 +sg25273 +S'image: 27.6 x 21 cm (10 7/8 x 8 1/4 in.)\r\nsheet: 29.6 x 23 cm (11 5/8 x 9 1/16 in.)' +p116233 +sg25275 +S'\nwoodcut, hand-colored in rose, yellow, brown, green, and gray' +p116234 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a00055c2.jpg' +p116235 +sg25267 +g27 +sa(dp116236 +g25268 +S'The Condemnation to Death' +p116237 +sg25270 +S'Jacques Callot' +p116238 +sg25273 +S'etching and engraving' +p116239 +sg25275 +S'c. 1618' +p116240 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000850f.jpg' +p116241 +sg25267 +g27 +sa(dp116242 +g25268 +S'The Crowning with Thorns' +p116243 +sg25270 +S'Jacques Callot' +p116244 +sg25273 +S'etching and engraving' +p116245 +sg25275 +S'c. 1618' +p116246 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008505.jpg' +p116247 +sg25267 +g27 +sa(dp116248 +g25268 +S'The Ecce Homo' +p116249 +sg25270 +S'Jacques Callot' +p116250 +sg25273 +S'etching and engraving' +p116251 +sg25275 +S'c. 1618' +p116252 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008517.jpg' +p116253 +sg25267 +g27 +sa(dp116254 +g25268 +S'The Carrying of the Cross' +p116255 +sg25270 +S'Jacques Callot' +p116256 +sg25273 +S'etching and engraving' +p116257 +sg25275 +S'c. 1618' +p116258 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008516.jpg' +p116259 +sg25267 +g27 +sa(dp116260 +g25268 +S'The Nailing to the Cross' +p116261 +sg25270 +S'Jacques Callot' +p116262 +sg25273 +S'etching and engraving' +p116263 +sg25275 +S'c. 1618' +p116264 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008518.jpg' +p116265 +sg25267 +g27 +sa(dp116266 +g25268 +S'The Great Rock' +p116267 +sg25270 +S'Jacques Callot' +p116268 +sg25273 +S'etching' +p116269 +sg25275 +S'1623' +p116270 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ad0.jpg' +p116271 +sg25267 +g27 +sa(dp116272 +g25268 +S'Captain of the Barons' +p116273 +sg25270 +S'Jacques Callot' +p116274 +sg25273 +S'etching' +p116275 +sg25275 +S'c. 1622' +p116276 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008656.jpg' +p116277 +sg25267 +g27 +sa(dp116278 +g25268 +S'The Hurdy-Gurdy Player' +p116279 +sg25270 +S'Jacques Callot' +p116280 +sg25273 +S'etching' +p116281 +sg25275 +S'c. 1622' +p116282 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008655.jpg' +p116283 +sg25267 +g27 +sa(dp116284 +g25268 +S'Beggar with Crutches and Cap' +p116285 +sg25270 +S'Jacques Callot' +p116286 +sg25273 +S'etching' +p116287 +sg25275 +S'c. 1622' +p116288 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008659.jpg' +p116289 +sg25267 +g27 +sa(dp116290 +g25268 +S'Beggar with Crutches and Hat, Back View' +p116291 +sg25270 +S'Jacques Callot' +p116292 +sg25273 +S'etching' +p116293 +sg25275 +S'c. 1622' +p116294 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008658.jpg' +p116295 +sg25267 +g27 +sa(dp116296 +g25268 +S"Christ Washing the Apostles' Feet" +p116297 +sg25270 +S'German 15th Century' +p116298 +sg25273 +S'Schreiber, no. 162' +p116299 +sg25275 +S'\nwoodcut in brown, hand-colored in red lake, blue, yellow, green, gray, gold, and orange' +p116300 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5e5.jpg' +p116301 +sg25267 +g27 +sa(dp116302 +g25268 +S'Beggar with Pot' +p116303 +sg25270 +S'Jacques Callot' +p116304 +sg25273 +S'etching' +p116305 +sg25275 +S'c. 1622' +p116306 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008657.jpg' +p116307 +sg25267 +g27 +sa(dp116308 +g25268 +S'Beggar Woman with Rosary' +p116309 +sg25270 +S'Jacques Callot' +p116310 +sg25273 +S'etching' +p116311 +sg25275 +S'c. 1622' +p116312 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000865a.jpg' +p116313 +sg25267 +g27 +sa(dp116314 +g25268 +S'Two Beggar Women' +p116315 +sg25270 +S'Jacques Callot' +p116316 +sg25273 +S'etching' +p116317 +sg25275 +S'c. 1622' +p116318 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008661.jpg' +p116319 +sg25267 +g27 +sa(dp116320 +g25268 +S'Blind Beggar and Companion' +p116321 +sg25270 +S'Jacques Callot' +p116322 +sg25273 +S'etching' +p116323 +sg25275 +S'c. 1622' +p116324 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008662.jpg' +p116325 +sg25267 +g27 +sa(dp116326 +g25268 +S'Beggar with Crutches and Sack' +p116327 +sg25270 +S'Jacques Callot' +p116328 +sg25273 +S'etching' +p116329 +sg25275 +S'c. 1622' +p116330 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008660.jpg' +p116331 +sg25267 +g27 +sa(dp116332 +g25268 +S'Beggar with Rosary' +p116333 +sg25270 +S'Jacques Callot' +p116334 +sg25273 +S'etching' +p116335 +sg25275 +S'c. 1622' +p116336 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000865f.jpg' +p116337 +sg25267 +g27 +sa(dp116338 +g25268 +S'Beggar with Bare Head and Feet' +p116339 +sg25270 +S'Jacques Callot' +p116340 +sg25273 +S'etching' +p116341 +sg25275 +S'c. 1622' +p116342 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000865e.jpg' +p116343 +sg25267 +g27 +sa(dp116344 +g25268 +S'The Sick Man' +p116345 +sg25270 +S'Jacques Callot' +p116346 +sg25273 +S'etching' +p116347 +sg25275 +S'c. 1622' +p116348 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000865d.jpg' +p116349 +sg25267 +g27 +sa(dp116350 +g25268 +S'Beggar with Wooden Leg' +p116351 +sg25270 +S'Jacques Callot' +p116352 +sg25273 +S'etching' +p116353 +sg25275 +S'c. 1622' +p116354 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000866f.jpg' +p116355 +sg25267 +g27 +sa(dp116356 +g25268 +S'One-Eyed Woman' +p116357 +sg25270 +S'Jacques Callot' +p116358 +sg25273 +S'etching' +p116359 +sg25275 +S'c. 1622' +p116360 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000865c.jpg' +p116361 +sg25267 +g27 +sa(dp116362 +g25268 +S'Christ on the Mount of Olives' +p116363 +sg25270 +S'German 15th Century' +p116364 +sg25273 +S'Schreiber, no. 184, State a' +p116365 +sg25275 +S'\nwoodcut, hand-colored in red-brown lake, gray, yellow, rose, olive, and green' +p116366 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a655.jpg' +p116367 +sg25267 +g27 +sa(dp116368 +g25268 +S'Beggar Woman with Crutches' +p116369 +sg25270 +S'Jacques Callot' +p116370 +sg25273 +S'etching' +p116371 +sg25275 +S'c. 1622' +p116372 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000866e.jpg' +p116373 +sg25267 +g27 +sa(dp116374 +g25268 +S'Old Beggar with One Crutch' +p116375 +sg25270 +S'Jacques Callot' +p116376 +sg25273 +S'etching' +p116377 +sg25275 +S'c. 1622' +p116378 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000866d.jpg' +p116379 +sg25267 +g27 +sa(dp116380 +g25268 +S'Mother and Three Children' +p116381 +sg25270 +S'Jacques Callot' +p116382 +sg25273 +S'etching' +p116383 +sg25275 +S'c. 1622' +p116384 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000866c.jpg' +p116385 +sg25267 +g27 +sa(dp116386 +g25268 +S'Beggar with a Stick' +p116387 +sg25270 +S'Jacques Callot' +p116388 +sg25273 +S'etching' +p116389 +sg25275 +S'c. 1622' +p116390 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008677.jpg' +p116391 +sg25267 +g27 +sa(dp116392 +g25268 +S'Beggar Woman with Pan' +p116393 +sg25270 +S'Jacques Callot' +p116394 +sg25273 +S'etching' +p116395 +sg25275 +S'c. 1622' +p116396 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008670.jpg' +p116397 +sg25267 +g27 +sa(dp116398 +g25268 +S'Fat Beggar with Eyes Cast Down' +p116399 +sg25270 +S'Jacques Callot' +p116400 +sg25273 +S'etching' +p116401 +sg25275 +S'c. 1622' +p116402 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000866a.jpg' +p116403 +sg25267 +g27 +sa(dp116404 +g25268 +S'Beggar with Dog' +p116405 +sg25270 +S'Jacques Callot' +p116406 +sg25273 +S'etching' +p116407 +sg25275 +S'c. 1622' +p116408 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085be.jpg' +p116409 +sg25267 +g27 +sa(dp116410 +g25268 +S'Beggar Woman Receiving Charity' +p116411 +sg25270 +S'Jacques Callot' +p116412 +sg25273 +S'etching' +p116413 +sg25275 +S'c. 1622' +p116414 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085bc.jpg' +p116415 +sg25267 +g27 +sa(dp116416 +g25268 +S'Beggar Eating' +p116417 +sg25270 +S'Jacques Callot' +p116418 +sg25273 +S'etching' +p116419 +sg25275 +S'c. 1622' +p116420 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085bb.jpg' +p116421 +sg25267 +g27 +sa(dp116422 +g25268 +S'Old Woman with Cats' +p116423 +sg25270 +S'Jacques Callot' +p116424 +sg25273 +S'etching' +p116425 +sg25275 +S'c. 1622' +p116426 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085ba.jpg' +p116427 +sg25267 +g27 +sa(dp116428 +g25268 +S'Christ on the Mount of Olives' +p116429 +sg25270 +S'German 15th Century' +p116430 +sg25273 +S'Schreiber, no. 190, State m' +p116431 +sg25275 +S'\nwoodcut, hand-colored in red lake, yellow, green, orange, brown, gray, and rose' +p116432 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a656.jpg' +p116433 +sg25267 +g27 +sa(dp116434 +g25268 +S'The Two Pilgrims' +p116435 +sg25270 +S'Jacques Callot' +p116436 +sg25273 +S'etching' +p116437 +sg25275 +S'c. 1622' +p116438 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008654.jpg' +p116439 +sg25267 +g27 +sa(dp116440 +g25268 +S'Captain of the Barons' +p116441 +sg25270 +S'Artist Information (' +p116442 +sg25273 +S'French, 1592 - 1635' +p116443 +sg25275 +S'(artist after)' +p116444 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087ce.jpg' +p116445 +sg25267 +g27 +sa(dp116446 +g25268 +S'The Hurdy-Gurdy Player' +p116447 +sg25270 +S'Artist Information (' +p116448 +sg25273 +S'French, 1592 - 1635' +p116449 +sg25275 +S'(artist after)' +p116450 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087d3.jpg' +p116451 +sg25267 +g27 +sa(dp116452 +g25268 +S'Beggar with Crutches and Cap' +p116453 +sg25270 +S'Artist Information (' +p116454 +sg25273 +S'French, 1592 - 1635' +p116455 +sg25275 +S'(artist after)' +p116456 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087cf.jpg' +p116457 +sg25267 +g27 +sa(dp116458 +g25268 +S'Beggar with Crutches and Hat, Back View' +p116459 +sg25270 +S'Artist Information (' +p116460 +sg25273 +S'French, 1592 - 1635' +p116461 +sg25275 +S'(artist after)' +p116462 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087d0.jpg' +p116463 +sg25267 +g27 +sa(dp116464 +g25268 +S'Beggar with Pot' +p116465 +sg25270 +S'Artist Information (' +p116466 +sg25273 +S'French, 1592 - 1635' +p116467 +sg25275 +S'(artist after)' +p116468 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087d2.jpg' +p116469 +sg25267 +g27 +sa(dp116470 +g25268 +S'Beggar Woman with Rosary' +p116471 +sg25270 +S'Artist Information (' +p116472 +sg25273 +S'French, 1592 - 1635' +p116473 +sg25275 +S'(artist after)' +p116474 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087d1.jpg' +p116475 +sg25267 +g27 +sa(dp116476 +g25268 +S'Two Beggar Women' +p116477 +sg25270 +S'Artist Information (' +p116478 +sg25273 +S'French, 1592 - 1635' +p116479 +sg25275 +S'(artist after)' +p116480 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087e1.jpg' +p116481 +sg25267 +g27 +sa(dp116482 +g25268 +S'Blind Beggar and Companion' +p116483 +sg25270 +S'Artist Information (' +p116484 +sg25273 +S'French, 1592 - 1635' +p116485 +sg25275 +S'(artist after)' +p116486 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087e2.jpg' +p116487 +sg25267 +g27 +sa(dp116488 +g25268 +S'Beggar with Crutches and Sack' +p116489 +sg25270 +S'Artist Information (' +p116490 +sg25273 +S'French, 1592 - 1635' +p116491 +sg25275 +S'(artist after)' +p116492 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087e0.jpg' +p116493 +sg25267 +g27 +sa(dp116494 +g25268 +S'Christ on the Mount of Olives' +p116495 +sg25270 +S'German 15th Century' +p116496 +sg25273 +S'Schreiber, no. 191, State a' +p116497 +sg25275 +S'\nwoodcut, hand-colored in green, carmine, rose, yellow, gray, blue, and brown' +p116498 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4fb.jpg' +p116499 +sg25267 +g27 +sa(dp116500 +g25268 +S'Beggar with Rosary' +p116501 +sg25270 +S'Artist Information (' +p116502 +sg25273 +S'French, 1592 - 1635' +p116503 +sg25275 +S'(artist after)' +p116504 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087df.jpg' +p116505 +sg25267 +g27 +sa(dp116506 +g25268 +S'Beggar with Bare Head and Feet' +p116507 +sg25270 +S'Artist Information (' +p116508 +sg25273 +S'French, 1592 - 1635' +p116509 +sg25275 +S'(artist after)' +p116510 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087de.jpg' +p116511 +sg25267 +g27 +sa(dp116512 +g25268 +S'The Sick Man' +p116513 +sg25270 +S'Artist Information (' +p116514 +sg25273 +S'French, 1592 - 1635' +p116515 +sg25275 +S'(artist after)' +p116516 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087da.jpg' +p116517 +sg25267 +g27 +sa(dp116518 +g25268 +S'Beggar with Wooden Leg' +p116519 +sg25270 +S'Artist Information (' +p116520 +sg25273 +S'French, 1592 - 1635' +p116521 +sg25275 +S'(artist after)' +p116522 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087db.jpg' +p116523 +sg25267 +g27 +sa(dp116524 +g25268 +S'One-Eyed Woman' +p116525 +sg25270 +S'Artist Information (' +p116526 +sg25273 +S'French, 1592 - 1635' +p116527 +sg25275 +S'(artist after)' +p116528 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087d9.jpg' +p116529 +sg25267 +g27 +sa(dp116530 +g25268 +S'Beggar Woman with Crutches' +p116531 +sg25270 +S'Artist Information (' +p116532 +sg25273 +S'French, 1592 - 1635' +p116533 +sg25275 +S'(artist after)' +p116534 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087dc.jpg' +p116535 +sg25267 +g27 +sa(dp116536 +g25268 +S'Old Beggar with One Crutch' +p116537 +sg25270 +S'Artist Information (' +p116538 +sg25273 +S'French, 1592 - 1635' +p116539 +sg25275 +S'(artist after)' +p116540 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087d8.jpg' +p116541 +sg25267 +g27 +sa(dp116542 +g25268 +S'Mother and Three Children' +p116543 +sg25270 +S'Artist Information (' +p116544 +sg25273 +S'French, 1592 - 1635' +p116545 +sg25275 +S'(artist after)' +p116546 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087dd.jpg' +p116547 +sg25267 +g27 +sa(dp116548 +g25268 +S'Beggar with a Stick' +p116549 +sg25270 +S'Artist Information (' +p116550 +sg25273 +S'French, 1592 - 1635' +p116551 +sg25275 +S'(artist after)' +p116552 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008960.jpg' +p116553 +sg25267 +g27 +sa(dp116554 +g25268 +S'Beggar Woman with Pan' +p116555 +sg25270 +S'Artist Information (' +p116556 +sg25273 +S'French, 1592 - 1635' +p116557 +sg25275 +S'(artist after)' +p116558 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008961.jpg' +p116559 +sg25267 +g27 +sa(dp116560 +g25268 +S'Christ on the Mount of Olives' +p116561 +sg25270 +S'German 15th Century' +p116562 +sg25273 +S'Schreiber, no. 196, State a' +p116563 +sg25275 +S'\nwoodcut, hand-colored in orange-red, gray, green, rose, light yellow, brown, and gold' +p116564 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4fe.jpg' +p116565 +sg25267 +g27 +sa(dp116566 +g25268 +S'Fat Beggar with Eyes Cast Down' +p116567 +sg25270 +S'Artist Information (' +p116568 +sg25273 +S'French, 1592 - 1635' +p116569 +sg25275 +S'(artist after)' +p116570 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a000895e.jpg' +p116571 +sg25267 +g27 +sa(dp116572 +g25268 +S'Beggar with Dog' +p116573 +sg25270 +S'Artist Information (' +p116574 +sg25273 +S'French, 1592 - 1635' +p116575 +sg25275 +S'(artist after)' +p116576 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008963.jpg' +p116577 +sg25267 +g27 +sa(dp116578 +g25268 +S'Beggar Woman Receiving Charity' +p116579 +sg25270 +S'Artist Information (' +p116580 +sg25273 +S'French, 1592 - 1635' +p116581 +sg25275 +S'(artist after)' +p116582 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a000895f.jpg' +p116583 +sg25267 +g27 +sa(dp116584 +g25268 +S'Beggar Eating' +p116585 +sg25270 +S'Artist Information (' +p116586 +sg25273 +S'French, 1592 - 1635' +p116587 +sg25275 +S'(artist after)' +p116588 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a000895d.jpg' +p116589 +sg25267 +g27 +sa(dp116590 +g25268 +S'Old Woman with Cats' +p116591 +sg25270 +S'Artist Information (' +p116592 +sg25273 +S'French, 1592 - 1635' +p116593 +sg25275 +S'(artist after)' +p116594 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008962.jpg' +p116595 +sg25267 +g27 +sa(dp116596 +g25268 +S'Parade in the Amphitheater' +p116597 +sg25270 +S'Jacques Callot' +p116598 +sg25273 +S'etching' +p116599 +sg25275 +S'1616' +p116600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aa8.jpg' +p116601 +sg25267 +g27 +sa(dp116602 +g25268 +S'One of the Infantry Combats' +p116603 +sg25270 +S'Jacques Callot' +p116604 +sg25273 +S'etching' +p116605 +sg25275 +S'1616' +p116606 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aa9.jpg' +p116607 +sg25267 +g27 +sa(dp116608 +g25268 +S'Floats and Participants' +p116609 +sg25270 +S'Jacques Callot' +p116610 +sg25273 +S'etching' +p116611 +sg25275 +S'1616' +p116612 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aac.jpg' +p116613 +sg25267 +g27 +sa(dp116614 +g25268 +S'The Float of Mount Parnassus' +p116615 +sg25270 +S'Jacques Callot' +p116616 +sg25273 +S'etching' +p116617 +sg25275 +S'1616' +p116618 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aa3.jpg' +p116619 +sg25267 +g27 +sa(dp116620 +g25268 +S'The Float of Thetis' +p116621 +sg25270 +S'Jacques Callot' +p116622 +sg25273 +S'etching' +p116623 +sg25275 +S'1616' +p116624 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aa2.jpg' +p116625 +sg25267 +g27 +sa(dp116626 +g25268 +S'Christ on the Mount of Olives' +p116627 +sg25270 +S'German 15th Century' +p116628 +sg25273 +S'Schreiber, no. 213' +p116629 +sg25275 +S'\nwoodcut, hand-colored in red lake, green, yellow, tan, and orange' +p116630 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5df.jpg' +p116631 +sg25267 +g27 +sa(dp116632 +g25268 +S'The Float of the Sun' +p116633 +sg25270 +S'Jacques Callot' +p116634 +sg25273 +S'etching' +p116635 +sg25275 +S'1616' +p116636 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aa7.jpg' +p116637 +sg25267 +g27 +sa(dp116638 +g25268 +S'The Float of Love' +p116639 +sg25270 +S'Jacques Callot' +p116640 +sg25273 +S'etching' +p116641 +sg25275 +S'1616' +p116642 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ab5.jpg' +p116643 +sg25267 +g27 +sa(dp116644 +g25268 +S'Frontispiece for "The Light of the Cloister"' +p116645 +sg25270 +S'Jacques Callot' +p116646 +sg25273 +S'etching' +p116647 +sg25275 +S'1628' +p116648 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086a5.jpg' +p116649 +sg25267 +g27 +sa(dp116650 +g25268 +S'The Vigilant Eye' +p116651 +sg25270 +S'Jacques Callot' +p116652 +sg25273 +S'etching' +p116653 +sg25275 +S'1628' +p116654 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000867c.jpg' +p116655 +sg25267 +g27 +sa(dp116656 +g25268 +S'Candle Stick' +p116657 +sg25270 +S'Jacques Callot' +p116658 +sg25273 +S'etching' +p116659 +sg25275 +S'1628' +p116660 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000867d.jpg' +p116661 +sg25267 +g27 +sa(dp116662 +g25268 +S'Shepherds Defending their Herds' +p116663 +sg25270 +S'Jacques Callot' +p116664 +sg25273 +S'etching' +p116665 +sg25275 +S'1628' +p116666 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008686.jpg' +p116667 +sg25267 +g27 +sa(dp116668 +g25268 +S'Saint Florian' +p116669 +sg25270 +S'Francesco del Cossa' +p116670 +sg25273 +S'tempera on panel' +p116671 +sg25275 +S'c. 1473/1474' +p116672 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000787.jpg' +p116673 +sg25267 +g27 +sa(dp116674 +g25268 +S'The Betrayal of Christ' +p116675 +sg25270 +S'German 15th Century' +p116676 +sg25273 +S'Schreiber, Vol. *, no. 217, State b' +p116677 +sg25275 +S'\nwoodcut, hand-colored in blue-green, orange, yellow, and tan' +p116678 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4ff.jpg' +p116679 +sg25267 +g27 +sa(dp116680 +g25268 +S'The Crow and her Young' +p116681 +sg25270 +S'Jacques Callot' +p116682 +sg25273 +S'etching' +p116683 +sg25275 +S'1628' +p116684 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008687.jpg' +p116685 +sg25267 +g27 +sa(dp116686 +g25268 +S'The Tulips and the Sun' +p116687 +sg25270 +S'Jacques Callot' +p116688 +sg25273 +S'etching' +p116689 +sg25275 +S'1628' +p116690 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008682.jpg' +p116691 +sg25267 +g27 +sa(dp116692 +g25268 +S'Burning Phoenix' +p116693 +sg25270 +S'Jacques Callot' +p116694 +sg25273 +S'etching' +p116695 +sg25275 +S'1628' +p116696 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008683.jpg' +p116697 +sg25267 +g27 +sa(dp116698 +g25268 +S'Crow and Snail' +p116699 +sg25270 +S'Jacques Callot' +p116700 +sg25273 +S'etching' +p116701 +sg25275 +S'1628' +p116702 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008678.jpg' +p116703 +sg25267 +g27 +sa(dp116704 +g25268 +S'Serpent' +p116705 +sg25270 +S'Jacques Callot' +p116706 +sg25273 +S'etching' +p116707 +sg25275 +S'1628' +p116708 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008679.jpg' +p116709 +sg25267 +g27 +sa(dp116710 +g25268 +S'Cat Watching Caged Bird' +p116711 +sg25270 +S'Jacques Callot' +p116712 +sg25273 +S'etching' +p116713 +sg25275 +S'1628' +p116714 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086cd.jpg' +p116715 +sg25267 +g27 +sa(dp116716 +g25268 +S'Two Knights' +p116717 +sg25270 +S'Jacques Callot' +p116718 +sg25273 +S'etching' +p116719 +sg25275 +S'1628' +p116720 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086ce.jpg' +p116721 +sg25267 +g27 +sa(dp116722 +g25268 +S'Stag in the Water' +p116723 +sg25270 +S'Jacques Callot' +p116724 +sg25273 +S'etching' +p116725 +sg25275 +S'1628' +p116726 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086c3.jpg' +p116727 +sg25267 +g27 +sa(dp116728 +g25268 +S'Bird Perched in a Thistle' +p116729 +sg25270 +S'Jacques Callot' +p116730 +sg25273 +S'etching' +p116731 +sg25275 +S'1628' +p116732 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086c4.jpg' +p116733 +sg25267 +g27 +sa(dp116734 +g25268 +S'Nightingale in a Bush' +p116735 +sg25270 +S'Jacques Callot' +p116736 +sg25273 +S'etching' +p116737 +sg25275 +S'1628' +p116738 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086d3.jpg' +p116739 +sg25267 +g27 +sa(dp116740 +g25268 +S'The Betrayal of Christ' +p116741 +sg25270 +S'German 15th Century' +p116742 +sg25273 +S'Schreiber, no. 226, State (=223)' +p116743 +sg25275 +S'\nwoodcut in dark brown, hand-colored in red lake, green, blue, orange, and gold' +p116744 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5e6.jpg' +p116745 +sg25267 +g27 +sa(dp116746 +g25268 +S'Eagle Losing an Old Feather' +p116747 +sg25270 +S'Jacques Callot' +p116748 +sg25273 +S'etching' +p116749 +sg25275 +S'1628' +p116750 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086d4.jpg' +p116751 +sg25267 +g27 +sa(dp116752 +g25268 +S'Crane Flying' +p116753 +sg25270 +S'Jacques Callot' +p116754 +sg25273 +S'etching' +p116755 +sg25275 +S'1628' +p116756 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086e3.jpg' +p116757 +sg25267 +g27 +sa(dp116758 +g25268 +S'Siren between Two Ships' +p116759 +sg25270 +S'Jacques Callot' +p116760 +sg25273 +S'etching' +p116761 +sg25275 +S'1628' +p116762 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086e4.jpg' +p116763 +sg25267 +g27 +sa(dp116764 +g25268 +S'Crayfish Looking at the Sun' +p116765 +sg25270 +S'Jacques Callot' +p116766 +sg25273 +S'etching' +p116767 +sg25275 +S'1628' +p116768 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086d8.jpg' +p116769 +sg25267 +g27 +sa(dp116770 +g25268 +S'Sun Rising' +p116771 +sg25270 +S'Jacques Callot' +p116772 +sg25273 +S'etching' +p116773 +sg25275 +S'1628' +p116774 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086d7.jpg' +p116775 +sg25267 +g27 +sa(dp116776 +g25268 +S'The Tomb' +p116777 +sg25270 +S'Jacques Callot' +p116778 +sg25273 +S'etching' +p116779 +sg25275 +S'1628' +p116780 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086d9.jpg' +p116781 +sg25267 +g27 +sa(dp116782 +g25268 +S'Nun Embracing the Holy Cross' +p116783 +sg25270 +S'Jacques Callot' +p116784 +sg25273 +S'etching' +p116785 +sg25275 +S'1628' +p116786 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086da.jpg' +p116787 +sg25267 +g27 +sa(dp116788 +g25268 +S'Narcissus Looking in the Water' +p116789 +sg25270 +S'Jacques Callot' +p116790 +sg25273 +S'etching' +p116791 +sg25275 +S'1628' +p116792 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086db.jpg' +p116793 +sg25267 +g27 +sa(dp116794 +g25268 +S"Willows by the Water's Edge" +p116795 +sg25270 +S'Jacques Callot' +p116796 +sg25273 +S'etching' +p116797 +sg25275 +S'1628' +p116798 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086dc.jpg' +p116799 +sg25267 +g27 +sa(dp116800 +g25268 +S'Two Hearts' +p116801 +sg25270 +S'Jacques Callot' +p116802 +sg25273 +S'etching' +p116803 +sg25275 +S'1628' +p116804 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a000871e.jpg' +p116805 +sg25267 +g27 +sa(dp116806 +g25268 +S'The Denial of Peter' +p116807 +sg25270 +S'German 15th Century' +p116808 +sg25273 +S'Schreiber, Vol. IX, no. 247, State b' +p116809 +sg25275 +S'\nwoodcut in brown, hand-colored in red lake, green,brown, and ochre' +p116810 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a500.jpg' +p116811 +sg25267 +g27 +sa(dp116812 +g25268 +S'Peasant Whipping his Donkey' +p116813 +sg25270 +S'Jacques Callot' +p116814 +sg25273 +S'etching' +p116815 +sg25275 +S'1628' +p116816 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a000871f.jpg' +p116817 +sg25267 +g27 +sa(dp116818 +g25268 +S'Gardener Pruning a Tree' +p116819 +sg25270 +S'Jacques Callot' +p116820 +sg25273 +S'etching' +p116821 +sg25275 +S'1628' +p116822 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a000872c.jpg' +p116823 +sg25267 +g27 +sa(dp116824 +g25268 +S'The Reeds and the Wind' +p116825 +sg25270 +S'Jacques Callot' +p116826 +sg25273 +S'etching' +p116827 +sg25275 +S'1628' +p116828 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a000872d.jpg' +p116829 +sg25267 +g27 +sa(dp116830 +g25268 +S'Title Page for "The Martyrdoms of the Apostles"' +p116831 +sg25270 +S'Jacques Callot' +p116832 +sg25273 +S'etching' +p116833 +sg25275 +S'c. 1634/1635' +p116834 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a000888d.jpg' +p116835 +sg25267 +g27 +sa(dp116836 +g25268 +S'The Martyrdom of Saint Peter' +p116837 +sg25270 +S'Jacques Callot' +p116838 +sg25273 +S'etching' +p116839 +sg25275 +S'c. 1634/1635' +p116840 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a000888e.jpg' +p116841 +sg25267 +g27 +sa(dp116842 +g25268 +S'The Martyrdom of Saint Paul' +p116843 +sg25270 +S'Jacques Callot' +p116844 +sg25273 +S'etching' +p116845 +sg25275 +S'c. 1634/1635' +p116846 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a000887f.jpg' +p116847 +sg25267 +g27 +sa(dp116848 +g25268 +S'The Martyrdom of Saint Andrew' +p116849 +sg25270 +S'Jacques Callot' +p116850 +sg25273 +S'etching' +p116851 +sg25275 +S'c. 1634/1635' +p116852 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008880.jpg' +p116853 +sg25267 +g27 +sa(dp116854 +g25268 +S'The Martyrdom of Saint James Major' +p116855 +sg25270 +S'Jacques Callot' +p116856 +sg25273 +S'etching' +p116857 +sg25275 +S'c. 1634/1635' +p116858 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008881.jpg' +p116859 +sg25267 +g27 +sa(dp116860 +g25268 +S'The Martyrdom of Saint John the Evangelist' +p116861 +sg25270 +S'Jacques Callot' +p116862 +sg25273 +S'etching' +p116863 +sg25275 +S'c. 1634/1635' +p116864 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008882.jpg' +p116865 +sg25267 +g27 +sa(dp116866 +g25268 +S'The Martyrdom of Saint Thomas' +p116867 +sg25270 +S'Jacques Callot' +p116868 +sg25273 +S'etching' +p116869 +sg25275 +S'c. 1634/1635' +p116870 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a000888b.jpg' +p116871 +sg25267 +g27 +sa(dp116872 +g25268 +S'The Flagellation' +p116873 +sg25270 +S'German 15th Century' +p116874 +sg25273 +S'Schreiber, no. 294' +p116875 +sg25275 +S'\nwoodcut in dark brown, hand-colored in vermilion, gray-blue, purple, peach, and tan' +p116876 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a58b.jpg' +p116877 +sg25267 +g27 +sa(dp116878 +g25268 +S'The Martyrdom of Saint James Minor' +p116879 +sg25270 +S'Jacques Callot' +p116880 +sg25273 +S'etching' +p116881 +sg25275 +S'c. 1634/1635' +p116882 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a000888c.jpg' +p116883 +sg25267 +g27 +sa(dp116884 +g25268 +S'The Martyrdom of Saint Philip' +p116885 +sg25270 +S'Jacques Callot' +p116886 +sg25273 +S'etching' +p116887 +sg25275 +S'c. 1634/1635' +p116888 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008883.jpg' +p116889 +sg25267 +g27 +sa(dp116890 +g25268 +S'The Martyrdom of Saint Bartholomew' +p116891 +sg25270 +S'Jacques Callot' +p116892 +sg25273 +S'etching' +p116893 +sg25275 +S'c. 1634/1635' +p116894 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008884.jpg' +p116895 +sg25267 +g27 +sa(dp116896 +g25268 +S'The Martyrdom of Saint Simon' +p116897 +sg25270 +S'Jacques Callot' +p116898 +sg25273 +S'etching' +p116899 +sg25275 +S'c. 1634/1635' +p116900 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a000888f.jpg' +p116901 +sg25267 +g27 +sa(dp116902 +g25268 +S'The Martyrdom of Saint Matthias' +p116903 +sg25270 +S'Jacques Callot' +p116904 +sg25273 +S'etching' +p116905 +sg25275 +S'c. 1634/1635' +p116906 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008890.jpg' +p116907 +sg25267 +g27 +sa(dp116908 +g25268 +S'The Martyrdom of Saint Thaddeus' +p116909 +sg25270 +S'Jacques Callot' +p116910 +sg25273 +S'etching' +p116911 +sg25275 +S'c. 1634/1635' +p116912 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008885.jpg' +p116913 +sg25267 +g27 +sa(dp116914 +g25268 +S'The Martyrdom of Saint Matthew' +p116915 +sg25270 +S'Jacques Callot' +p116916 +sg25273 +S'etching' +p116917 +sg25275 +S'c. 1634/1635' +p116918 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008886.jpg' +p116919 +sg25267 +g27 +sa(dp116920 +g25268 +S'The Death of Judas' +p116921 +sg25270 +S'Jacques Callot' +p116922 +sg25273 +S'etching' +p116923 +sg25275 +S'c. 1634/1635' +p116924 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008889.jpg' +p116925 +sg25267 +g27 +sa(dp116926 +g25268 +S'The Martyrdoms of Saint Barnabas' +p116927 +sg25270 +S'Jacques Callot' +p116928 +sg25273 +S'etching' +p116929 +sg25275 +S'c. 1634/1635' +p116930 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a000888a.jpg' +p116931 +sg25267 +g27 +sa(dp116932 +g25268 +S'The Martyrdom of Saint Lawrence' +p116933 +sg25270 +S'Jacques Callot' +p116934 +sg25273 +S'etching' +p116935 +sg25275 +S'unknown date\n' +p116936 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086a7.jpg' +p116937 +sg25267 +g27 +sa(dp116938 +g25268 +S'Christ Bearing the Cross' +p116939 +sg25270 +S'German 15th Century' +p116940 +sg25273 +S'Schreiber, no. 352, State a' +p116941 +sg25275 +S'\nwoodcut, hand-colored in green, red, yellow, light orange, tan, blue, black' +p116942 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a508.jpg' +p116943 +sg25267 +g27 +sa(dp116944 +g25268 +S'The Massacre of the Innocents' +p116945 +sg25270 +S'Jacques Callot' +p116946 +sg25273 +S'etching' +p116947 +sg25275 +S'c. 1618/1620' +p116948 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008502.jpg' +p116949 +sg25267 +g27 +sa(dp116950 +g25268 +S'The Massacre of the Innocents' +p116951 +sg25270 +S'Jacques Callot' +p116952 +sg25273 +S'etching' +p116953 +sg25275 +S'c. 1618/1620' +p116954 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008503.jpg' +p116955 +sg25267 +g27 +sa(dp116956 +g25268 +S'The Massacre of the Innocents' +p116957 +sg25270 +S'Jacques Callot' +p116958 +sg25273 +S'etching' +p116959 +sg25275 +S'c. 1622' +p116960 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a00085b1.jpg' +p116961 +sg25267 +g27 +sa(dp116962 +g25268 +S'Coins [plate 1]' +p116963 +sg25270 +S'Jacques Callot' +p116964 +sg25273 +S'etching' +p116965 +sg25275 +S'unknown date\n' +p116966 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ae8.jpg' +p116967 +sg25267 +g27 +sa(dp116968 +g25268 +S'Coins [plate 2]' +p116969 +sg25270 +S'Jacques Callot' +p116970 +sg25273 +S'etching' +p116971 +sg25275 +S'unknown date\n' +p116972 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ae9.jpg' +p116973 +sg25267 +g27 +sa(dp116974 +g25268 +S'Coins [plate 3]' +p116975 +sg25270 +S'Jacques Callot' +p116976 +sg25273 +S'etching' +p116977 +sg25275 +S'unknown date\n' +p116978 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aeb.jpg' +p116979 +sg25267 +g27 +sa(dp116980 +g25268 +S'Coins [plate 4]' +p116981 +sg25270 +S'Jacques Callot' +p116982 +sg25273 +S'etching' +p116983 +sg25275 +S'unknown date\n' +p116984 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aed.jpg' +p116985 +sg25267 +g27 +sa(dp116986 +g25268 +S'Coins [plate 5]' +p116987 +sg25270 +S'Jacques Callot' +p116988 +sg25273 +S'etching' +p116989 +sg25275 +S'unknown date\n' +p116990 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aee.jpg' +p116991 +sg25267 +g27 +sa(dp116992 +g25268 +S'Coins [plate 6]' +p116993 +sg25270 +S'Jacques Callot' +p116994 +sg25273 +S'etching' +p116995 +sg25275 +S'unknown date\n' +p116996 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aea.jpg' +p116997 +sg25267 +g27 +sa(dp116998 +g25268 +S'Coins [plate 7]' +p116999 +sg25270 +S'Jacques Callot' +p117000 +sg25273 +S'etching' +p117001 +sg25275 +S'unknown date\n' +p117002 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008af0.jpg' +p117003 +sg25267 +g27 +sa(dp117004 +g25268 +S'Christ Bearing the Cross' +p117005 +sg25270 +S'German 15th Century' +p117006 +sg25273 +S'Schreiber, no. 353' +p117007 +sg25275 +S'\nwoodcut, hand-colored in mauve, red, blue, green, ochre, yellow, black, white, and gold, on vellum' +p117008 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a50a.jpg' +p117009 +sg25267 +g27 +sa(dp117010 +g25268 +S'Coins [plate 8]' +p117011 +sg25270 +S'Jacques Callot' +p117012 +sg25273 +S'etching' +p117013 +sg25275 +S'unknown date\n' +p117014 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aec.jpg' +p117015 +sg25267 +g27 +sa(dp117016 +g25268 +S'Coins [plate 9]' +p117017 +sg25270 +S'Jacques Callot' +p117018 +sg25273 +S'etching' +p117019 +sg25275 +S'unknown date\n' +p117020 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aef.jpg' +p117021 +sg25267 +g27 +sa(dp117022 +g25268 +S'Coins [plate 10]' +p117023 +sg25270 +S'Jacques Callot' +p117024 +sg25273 +S'etching' +p117025 +sg25275 +S'unknown date\n' +p117026 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ae5.jpg' +p117027 +sg25267 +g27 +sa(dp117028 +g25268 +S'Mysteries of the Passion' +p117029 +sg25270 +S'Jacques Callot' +p117030 +sg25273 +S'etching' +p117031 +sg25275 +S'c. 1631' +p117032 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a000873a.jpg' +p117033 +sg25267 +g27 +sa(dp117034 +g25268 +S'Mysteries of the Passion' +p117035 +sg25270 +S'Jacques Callot' +p117036 +sg25273 +S'etching' +p117037 +sg25275 +S'c. 1631' +p117038 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a0008738.jpg' +p117039 +sg25267 +g27 +sa(dp117040 +g25268 +S'Mysteries of the Passion' +p117041 +sg25270 +S'Jacques Callot' +p117042 +sg25273 +S'etching' +p117043 +sg25275 +S'c. 1631' +p117044 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a0008739.jpg' +p117045 +sg25267 +g27 +sa(dp117046 +g25268 +S'Mysteries of the Passion' +p117047 +sg25270 +S'Jacques Callot' +p117048 +sg25273 +S'etching' +p117049 +sg25275 +S'c. 1631' +p117050 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a000873d.jpg' +p117051 +sg25267 +g27 +sa(dp117052 +g25268 +S'Soldier with Feathered Hat' +p117053 +sg25270 +S'Jacques Callot' +p117054 +sg25273 +S'etching' +p117055 +sg25275 +S'c. 1620/1623' +p117056 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008694.jpg' +p117057 +sg25267 +g27 +sa(dp117058 +g25268 +S'Noble Man with Felt Hat, Bowing' +p117059 +sg25270 +S'Jacques Callot' +p117060 +sg25273 +S'etching' +p117061 +sg25275 +S'c. 1620/1623' +p117062 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008695.jpg' +p117063 +sg25267 +g27 +sa(dp117064 +g25268 +S'Noble Man with Mantle Trimmed in Fur, Holding his Hands Behind his Back' +p117065 +sg25270 +S'Jacques Callot' +p117066 +sg25273 +S'etching' +p117067 +sg25275 +S'c. 1620/1623' +p117068 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008699.jpg' +p117069 +sg25267 +g27 +sa(dp117070 +g25268 +S'Christ Carrying the Cross' +p117071 +sg25270 +S'German 15th Century' +p117072 +sg25273 +S'Schreiber, no. 355, State a (=352)' +p117073 +sg25275 +S'\nwoodcut in brown, hand-colored in blue, orange, red, yellow, rose, and gold' +p117074 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5e7.jpg' +p117075 +sg25267 +g27 +sa(dp117076 +g25268 +S'Noble Woman with Fan' +p117077 +sg25270 +S'Jacques Callot' +p117078 +sg25273 +S'etching' +p117079 +sg25275 +S'c. 1620/1623' +p117080 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000869a.jpg' +p117081 +sg25267 +g27 +sa(dp117082 +g25268 +S'Noble Man with Folded Hands' +p117083 +sg25270 +S'Jacques Callot' +p117084 +sg25273 +S'etching' +p117085 +sg25275 +S'c. 1620/1623' +p117086 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000869c.jpg' +p117087 +sg25267 +g27 +sa(dp117088 +g25268 +S'Noble Man with Fur Plastron' +p117089 +sg25270 +S'Jacques Callot' +p117090 +sg25273 +S'etching' +p117091 +sg25275 +S'c. 1620/1623' +p117092 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008692.jpg' +p117093 +sg25267 +g27 +sa(dp117094 +g25268 +S'Noble Woman Wearing a Veil and a Dress Trimmed in Fur' +p117095 +sg25270 +S'Jacques Callot' +p117096 +sg25273 +S'etching' +p117097 +sg25275 +S'c. 1620/1623' +p117098 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008697.jpg' +p117099 +sg25267 +g27 +sa(dp117100 +g25268 +S'Noble Woman with Large Collar' +p117101 +sg25270 +S'Jacques Callot' +p117102 +sg25273 +S'etching' +p117103 +sg25275 +S'c. 1620/1623' +p117104 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008698.jpg' +p117105 +sg25267 +g27 +sa(dp117106 +g25268 +S'Noble Woman in Profile with her Hands in a Muff' +p117107 +sg25270 +S'Jacques Callot' +p117108 +sg25273 +S'etching' +p117109 +sg25275 +S'c. 1620/1623' +p117110 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008693.jpg' +p117111 +sg25267 +g27 +sa(dp117112 +g25268 +S'Masked Noble Woman' +p117113 +sg25270 +S'Jacques Callot' +p117114 +sg25273 +S'etching' +p117115 +sg25275 +S'c. 1620/1623' +p117116 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000869d.jpg' +p117117 +sg25267 +g27 +sa(dp117118 +g25268 +S'Noble Man Srapped in a Mantle Trimmed with Fur' +p117119 +sg25270 +S'Jacques Callot' +p117120 +sg25273 +S'etching' +p117121 +sg25275 +S'c. 1620/1623' +p117122 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a000869b.jpg' +p117123 +sg25267 +g27 +sa(dp117124 +g25268 +S'Noble Woman with a Small Hat' +p117125 +sg25270 +S'Jacques Callot' +p117126 +sg25273 +S'etching' +p117127 +sg25275 +S'c. 1620/1623' +p117128 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008696.jpg' +p117129 +sg25267 +g27 +sa(dp117130 +g25268 +S'Frontispiece for Callot\'s "The Penitents"' +p117131 +sg25270 +S'Abraham Bosse' +p117132 +sg25273 +S'etching and engraving' +p117133 +sg25275 +S'unknown date\n' +p117134 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087ea.jpg' +p117135 +sg25267 +g27 +sa(dp117136 +g25268 +S'Christ on the Cross' +p117137 +sg25270 +S'German 15th Century' +p117138 +sg25273 +S'Schreiber, Vol. *, no. 372, State d' +p117139 +sg25275 +S'\nwoodcut, hand-colored in red lake, tan, yellow, green, and gray' +p117140 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a50b.jpg' +p117141 +sg25267 +g27 +sa(dp117142 +g25268 +S'Saint John the Baptist' +p117143 +sg25270 +S'Jacques Callot' +p117144 +sg25273 +S'etching' +p117145 +sg25275 +S'unknown date\n' +p117146 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087a1.jpg' +p117147 +sg25267 +g27 +sa(dp117148 +g25268 +S'Saint Mary Magdalene' +p117149 +sg25270 +S'Jacques Callot' +p117150 +sg25273 +S'etching' +p117151 +sg25275 +S'unknown date\n' +p117152 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087a2.jpg' +p117153 +sg25267 +g27 +sa(dp117154 +g25268 +S'Death of the Magdalene' +p117155 +sg25270 +S'Jacques Callot' +p117156 +sg25273 +S'etching' +p117157 +sg25275 +S'unknown date\n' +p117158 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087a5.jpg' +p117159 +sg25267 +g27 +sa(dp117160 +g25268 +S'Saint Jerome' +p117161 +sg25270 +S'Jacques Callot' +p117162 +sg25273 +S'etching' +p117163 +sg25275 +S'unknown date\n' +p117164 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087a6.jpg' +p117165 +sg25267 +g27 +sa(dp117166 +g25268 +S'Saint Francis' +p117167 +sg25270 +S'Jacques Callot' +p117168 +sg25273 +S'etching' +p117169 +sg25275 +S'unknown date\n' +p117170 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087e9.jpg' +p117171 +sg25267 +g27 +sa(dp117172 +g25268 +S'The Marriage at Cana' +p117173 +sg25270 +S'Jacques Callot' +p117174 +sg25273 +S'etching' +p117175 +sg25275 +S'1618' +p117176 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000853a.jpg' +p117177 +sg25267 +g27 +sa(dp117178 +g25268 +S'The Feast of the Pharisees' +p117179 +sg25270 +S'Jacques Callot' +p117180 +sg25273 +S'etching' +p117181 +sg25275 +S'1618' +p117182 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008538.jpg' +p117183 +sg25267 +g27 +sa(dp117184 +g25268 +S'The Last Supper' +p117185 +sg25270 +S'Jacques Callot' +p117186 +sg25273 +S'etching' +p117187 +sg25275 +S'1618' +p117188 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008537.jpg' +p117189 +sg25267 +g27 +sa(dp117190 +g25268 +S'The Supper at Emmaus' +p117191 +sg25270 +S'Jacques Callot' +p117192 +sg25273 +S'etching' +p117193 +sg25275 +S'1618' +p117194 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008539.jpg' +p117195 +sg25267 +g27 +sa(dp117196 +g25268 +S'The Garden' +p117197 +sg25270 +S'Artist Information (' +p117198 +sg25273 +S'(artist)' +p117199 +sg25275 +S'\n' +p117200 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084fa.jpg' +p117201 +sg25267 +g27 +sa(dp117202 +g25268 +S'Christ on the Cross with Pope Pius II' +p117203 +sg25270 +S'German 15th Century' +p117204 +sg25273 +S'Overall: 36 x 26 cm (14 3/16 x 10 1/4 in.)\r\noverall (external frame dimensions): 59.7 x 44.5 cm (23 1/2 x 17 1/2 in.)' +p117205 +sg25275 +S'\nwoodcut' +p117206 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005705.jpg' +p117207 +sg25267 +g27 +sa(dp117208 +g25268 +S'The Dovecot' +p117209 +sg25270 +S'Artist Information (' +p117210 +sg25273 +S'(artist)' +p117211 +sg25275 +S'\n' +p117212 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084f9.jpg' +p117213 +sg25267 +g27 +sa(dp117214 +g25268 +S'The Watermill' +p117215 +sg25270 +S'Artist Information (' +p117216 +sg25273 +S'(artist)' +p117217 +sg25275 +S'\n' +p117218 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084f8.jpg' +p117219 +sg25267 +g27 +sa(dp117220 +g25268 +S'The Small Port' +p117221 +sg25270 +S'Artist Information (' +p117222 +sg25273 +S'French, 1592 - 1635' +p117223 +sg25275 +S'(artist)' +p117224 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084fb.jpg' +p117225 +sg25267 +g27 +sa(dp117226 +g25268 +S'The Review' +p117227 +sg25270 +S'Jacques Callot' +p117228 +sg25273 +S'etching' +p117229 +sg25275 +S'c. 1627/1628' +p117230 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086b8.jpg' +p117231 +sg25267 +g27 +sa(dp117232 +g25268 +S'Saint John Preaching in the Desert' +p117233 +sg25270 +S'Jacques Callot' +p117234 +sg25273 +S'etching' +p117235 +sg25275 +S'unknown date\n' +p117236 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a000881e.jpg' +p117237 +sg25267 +g27 +sa(dp117238 +g25268 +S'Saint Amond' +p117239 +sg25270 +S'Jacques Callot' +p117240 +sg25273 +S'etching' +p117241 +sg25275 +S'1621' +p117242 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ad8.jpg' +p117243 +sg25267 +g27 +sa(dp117244 +g25273 +S'etching' +p117245 +sg25267 +g27 +sg25275 +S'unknown date\n' +p117246 +sg25268 +S'The Punishments' +p117247 +sg25270 +S'Jacques Callot' +p117248 +sa(dp117249 +g25268 +S'The Temptation of Saint Anthony [first version]' +p117250 +sg25270 +S'Jacques Callot' +p117251 +sg25273 +S'etching' +p117252 +sg25275 +S'c. 1617' +p117253 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a0006168.jpg' +p117254 +sg25267 +g27 +sa(dp117255 +g25268 +S'Frontispiece for the Sacred Cosmologia (Title with Astrologers)' +p117256 +sg25270 +S'Artist Information (' +p117257 +sg25273 +S'French, 1592 - 1635' +p117258 +sg25275 +S'(artist after)' +p117259 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a000896d.jpg' +p117260 +sg25267 +g27 +sa(dp117261 +g25268 +S'Frontispiece for the Sacred Cosmologia (Title with Astrologers)' +p117262 +sg25270 +S'Jacques Callot' +p117263 +sg25273 +S'etching' +p117264 +sg25275 +S'unknown date\n' +p117265 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086e7.jpg' +p117266 +sg25267 +g27 +sa(dp117267 +g25268 +S'Christ on the Cross' +p117268 +sg25270 +S'Hans Burgkmair I' +p117269 +sg25273 +S', early 16th century' +p117270 +sg25275 +S'\n' +p117271 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000ae08.jpg' +p117272 +sg25267 +g27 +sa(dp117273 +g25268 +S'The Cult of God' +p117274 +sg25270 +S'Jacques Callot' +p117275 +sg25273 +S'etching' +p117276 +sg25275 +S'probably 1627' +p117277 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008688.jpg' +p117278 +sg25267 +g27 +sa(dp117279 +g25268 +S'The Cult of the Demon' +p117280 +sg25270 +S'Jacques Callot' +p117281 +sg25273 +S'etching' +p117282 +sg25275 +S'probably 1627' +p117283 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a0008689.jpg' +p117284 +sg25267 +g27 +sa(dp117285 +g25268 +S'Title Page for "The Life of the Virgin in Emblems"' +p117286 +sg25270 +S'Jacques Callot' +p117287 +sg25273 +S'etching' +p117288 +sg25275 +S'unknown date\n' +p117289 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a0008736.jpg' +p117290 +sg25267 +g27 +sa(dp117291 +g25268 +S'Salamander Surrounded by Flames' +p117292 +sg25270 +S'Jacques Callot' +p117293 +sg25273 +S'etching' +p117294 +sg25275 +S'unknown date\n' +p117295 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a000871c.jpg' +p117296 +sg25267 +g27 +sa(dp117297 +g25268 +S'Ship Navigating Near Rocks' +p117298 +sg25270 +S'Jacques Callot' +p117299 +sg25273 +S'etching' +p117300 +sg25275 +S'unknown date\n' +p117301 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a000871d.jpg' +p117302 +sg25267 +g27 +sa(dp117303 +g25268 +S'Dawn' +p117304 +sg25270 +S'Jacques Callot' +p117305 +sg25273 +S'etching' +p117306 +sg25275 +S'unknown date\n' +p117307 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a0008724.jpg' +p117308 +sg25267 +g27 +sa(dp117309 +g25268 +S'Eagle and Young' +p117310 +sg25270 +S'Jacques Callot' +p117311 +sg25273 +S'etching' +p117312 +sg25275 +S'unknown date\n' +p117313 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a0008725.jpg' +p117314 +sg25267 +g27 +sa(dp117315 +g25268 +S'Bird of Paradise' +p117316 +sg25270 +S'Jacques Callot' +p117317 +sg25273 +S'etching' +p117318 +sg25275 +S'unknown date\n' +p117319 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a0008722.jpg' +p117320 +sg25267 +g27 +sa(dp117321 +g25268 +S'Bunch of Grapes' +p117322 +sg25270 +S'Jacques Callot' +p117323 +sg25273 +S'etching' +p117324 +sg25275 +S'unknown date\n' +p117325 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a0008723.jpg' +p117326 +sg25267 +g27 +sa(dp117327 +g25268 +S'The Vulture' +p117328 +sg25270 +S'Jacques Callot' +p117329 +sg25273 +S'etching' +p117330 +sg25275 +S'unknown date\n' +p117331 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a0008730.jpg' +p117332 +sg25267 +g27 +sa(dp117333 +g25268 +S'Saint Lucy' +p117334 +sg25270 +S'Francesco del Cossa' +p117335 +sg25273 +S'tempera on panel' +p117336 +sg25275 +S'c. 1473/1474' +p117337 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000788.jpg' +p117338 +sg25267 +g27 +sa(dp117339 +g25268 +S'Christ on the Cross' +p117340 +sg25270 +S'German 15th Century' +p117341 +sg25273 +S'Schreiber, no. 386' +p117342 +sg25275 +S'\nwoodcut on vellum' +p117343 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a644.jpg' +p117344 +sg25267 +g27 +sa(dp117345 +g25268 +S'Two Palm Trees' +p117346 +sg25270 +S'Jacques Callot' +p117347 +sg25273 +S'etching' +p117348 +sg25275 +S'unknown date\n' +p117349 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a0008731.jpg' +p117350 +sg25267 +g27 +sa(dp117351 +g25268 +S'The Gardener' +p117352 +sg25270 +S'Jacques Callot' +p117353 +sg25273 +S'etching' +p117354 +sg25275 +S'unknown date\n' +p117355 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a0008765.jpg' +p117356 +sg25267 +g27 +sa(dp117357 +g25268 +S'The Doe' +p117358 +sg25270 +S'Jacques Callot' +p117359 +sg25273 +S'etching' +p117360 +sg25275 +S'unknown date\n' +p117361 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a0008768.jpg' +p117362 +sg25267 +g27 +sa(dp117363 +g25268 +S'Oyster with Pearl' +p117364 +sg25270 +S'Jacques Callot' +p117365 +sg25273 +S'etching' +p117366 +sg25275 +S'unknown date\n' +p117367 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a000875b.jpg' +p117368 +sg25267 +g27 +sa(dp117369 +g25268 +S'Rays of the Sun' +p117370 +sg25270 +S'Jacques Callot' +p117371 +sg25273 +S'etching' +p117372 +sg25275 +S'unknown date\n' +p117373 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a000875c.jpg' +p117374 +sg25267 +g27 +sa(dp117375 +g25268 +S'Man Washing a Pearl' +p117376 +sg25270 +S'Jacques Callot' +p117377 +sg25273 +S'etching' +p117378 +sg25275 +S'unknown date\n' +p117379 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a000874f.jpg' +p117380 +sg25267 +g27 +sa(dp117381 +g25268 +S'Lioness and Cub Pursued by Hunters' +p117382 +sg25270 +S'Jacques Callot' +p117383 +sg25273 +S'etching' +p117384 +sg25275 +S'unknown date\n' +p117385 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a0008750.jpg' +p117386 +sg25267 +g27 +sa(dp117387 +g25268 +S'Dolphins and Crocodile' +p117388 +sg25270 +S'Jacques Callot' +p117389 +sg25273 +S'etching' +p117390 +sg25275 +S'unknown date\n' +p117391 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a0008767.jpg' +p117392 +sg25267 +g27 +sa(dp117393 +g25268 +S'Sheep Calling Lamb' +p117394 +sg25270 +S'Jacques Callot' +p117395 +sg25273 +S'etching' +p117396 +sg25275 +S'unknown date\n' +p117397 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a0008766.jpg' +p117398 +sg25267 +g27 +sa(dp117399 +g25268 +S'The Huntress' +p117400 +sg25270 +S'Jacques Callot' +p117401 +sg25273 +S'etching' +p117402 +sg25275 +S'unknown date\n' +p117403 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a000875d.jpg' +p117404 +sg25267 +g27 +sa(dp117405 +g25268 +S'Christ on the Cross' +p117406 +sg25270 +S'German 15th Century' +p117407 +sg25273 +S'Schreiber, no. 392' +p117408 +sg25275 +S'\nwoodcut, hand-colored in blue, green, brown, tan, ocher, olive, pale blue, and gold' +p117409 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a648.jpg' +p117410 +sg25267 +g27 +sa(dp117411 +g25268 +S'Doe Mourning her Foal' +p117412 +sg25270 +S'Jacques Callot' +p117413 +sg25273 +S'etching' +p117414 +sg25275 +S'unknown date\n' +p117415 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a000875e.jpg' +p117416 +sg25267 +g27 +sa(dp117417 +g25268 +S'Lioness Mourning her Cub' +p117418 +sg25270 +S'Jacques Callot' +p117419 +sg25273 +S'etching' +p117420 +sg25275 +S'unknown date\n' +p117421 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a0008761.jpg' +p117422 +sg25267 +g27 +sa(dp117423 +g25268 +S'Turtle Dove Flying in the Desert' +p117424 +sg25270 +S'Jacques Callot' +p117425 +sg25273 +S'etching' +p117426 +sg25275 +S'unknown date\n' +p117427 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a0008762.jpg' +p117428 +sg25267 +g27 +sa(dp117429 +g25268 +S"Noah's Ark" +p117430 +sg25270 +S'Jacques Callot' +p117431 +sg25273 +S'etching' +p117432 +sg25275 +S'unknown date\n' +p117433 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a0008753.jpg' +p117434 +sg25267 +g27 +sa(dp117435 +g25268 +S'Man Cutting a Balm-Tree' +p117436 +sg25270 +S'Jacques Callot' +p117437 +sg25273 +S'etching' +p117438 +sg25275 +S'unknown date\n' +p117439 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a0008754.jpg' +p117440 +sg25267 +g27 +sa(dp117441 +g25268 +S'Man Attending a Fire' +p117442 +sg25270 +S'Jacques Callot' +p117443 +sg25273 +S'etching' +p117444 +sg25275 +S'unknown date\n' +p117445 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086e1.jpg' +p117446 +sg25267 +g27 +sa(dp117447 +g25268 +S'Sun and Rain' +p117448 +sg25270 +S'Jacques Callot' +p117449 +sg25273 +S'etching' +p117450 +sg25275 +S'unknown date\n' +p117451 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086e2.jpg' +p117452 +sg25267 +g27 +sa(dp117453 +g25268 +S'The Two Crowns' +p117454 +sg25270 +S'Jacques Callot' +p117455 +sg25273 +S'etching' +p117456 +sg25275 +S'unknown date\n' +p117457 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086d1.jpg' +p117458 +sg25267 +g27 +sa(dp117459 +g25268 +S'The Nile Flooding' +p117460 +sg25270 +S'Jacques Callot' +p117461 +sg25273 +S'etching' +p117462 +sg25275 +S'unknown date\n' +p117463 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086d2.jpg' +p117464 +sg25267 +g27 +sa(dp117465 +g25268 +S'Lydia and Her Mother at Tea' +p117466 +sg25270 +S'Mary Cassatt' +p117467 +sg25273 +S'soft-ground etching and aquatint' +p117468 +sg25275 +S'1882' +p117469 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa2e.jpg' +p117470 +sg25267 +g27 +sa(dp117471 +g25268 +S'Christ on the Cross' +p117472 +sg25270 +S'German 15th Century' +p117473 +sg25273 +S'Schreiber, no. 394' +p117474 +sg25275 +S'\nwoodcut, hand-colored in blue, light blue, ocher, green, red, tan, and cinnamon' +p117475 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a64a.jpg' +p117476 +sg25267 +g27 +sa(dp117477 +g25268 +S'Before the Fireplace (No. 1)' +p117478 +sg25270 +S'Mary Cassatt' +p117479 +sg25273 +S'soft-ground etching and aquatint on wove paper' +p117480 +sg25275 +S'c. 1882' +p117481 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f2/a000f29a.jpg' +p117482 +sg25267 +g27 +sa(dp117483 +g25268 +S"Portrait of the Artist's Mother" +p117484 +sg25270 +S'Mary Cassatt' +p117485 +sg25273 +S'soft-ground etching and aquatint' +p117486 +sg25275 +S'c. 1889' +p117487 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa35.jpg' +p117488 +sg25267 +g27 +sa(dp117489 +g25268 +S"Portrait of the Artist's Mother" +p117490 +sg25270 +S'Mary Cassatt' +p117491 +sg25273 +S'soft-ground etching and aquatint' +p117492 +sg25275 +S'c. 1889' +p117493 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa34.jpg' +p117494 +sg25267 +g27 +sa(dp117495 +g25268 +S'Interior: On the Sofa' +p117496 +sg25270 +S'Mary Cassatt' +p117497 +sg25273 +S'soft-ground etching on cream wove paper' +p117498 +sg25275 +S'c. 1883' +p117499 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b74.jpg' +p117500 +sg25267 +g27 +sa(dp117501 +g25268 +S'Degas' +p117502 +sg25270 +S'Marcellin-Gilbert Desboutin' +p117503 +sg25273 +S'drypoint' +p117504 +sg25275 +S'1876' +p117505 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009858.jpg' +p117506 +sg25267 +g27 +sa(dp117507 +g25268 +S'Renoir Seated' +p117508 +sg25270 +S'Marcellin-Gilbert Desboutin' +p117509 +sg25273 +S'etching and drypoint' +p117510 +sg25275 +S'1877' +p117511 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095c9.jpg' +p117512 +sg25267 +g27 +sa(dp117513 +g25268 +S"Actresses in Their Dressing Rooms (Loges d'actrices)" +p117514 +sg25270 +S'Edgar Degas' +p117515 +sg25273 +S'etching and aquatint' +p117516 +sg25275 +S'c. 1879/1880' +p117517 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005bdd.jpg' +p117518 +sg25267 +g27 +sa(dp117519 +g25268 +S'Un enano (A Dwarf)' +p117520 +sg25270 +S'Artist Information (' +p117521 +sg25273 +S'(artist after)' +p117522 +sg25275 +S'\n' +p117523 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed5c.jpg' +p117524 +sg25267 +g27 +sa(dp117525 +g25268 +S'Landscape with a Large Lake at Center' +p117526 +sg25270 +S'Augustin Hirschvogel' +p117527 +sg25273 +S'etching' +p117528 +sg25275 +S'1546' +p117529 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac2c.jpg' +p117530 +sg25267 +g27 +sa(dp117531 +g25268 +S'Christ on the Cross Between the Virgin and Saint John' +p117532 +sg25270 +S'Albrecht D\xc3\xbcrer' +p117533 +sg25273 +S'hand-colored woodcut' +p117534 +sg25275 +S'1493' +p117535 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a970.jpg' +p117536 +sg25267 +g27 +sa(dp117537 +g25268 +S'James Nares' +p117538 +sg25270 +S'John Hoppner' +p117539 +sg25273 +S'graphite, black and red chalk on laid paper' +p117540 +sg25275 +S'c. 1775' +p117541 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006de9.jpg' +p117542 +sg25267 +g27 +sa(dp117543 +g25268 +S'The Crucifixion' +p117544 +sg25270 +S'Wolf Huber' +p117545 +sg25273 +S'woodcut' +p117546 +sg25275 +S'unknown date\n' +p117547 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac9d.jpg' +p117548 +sg25267 +g27 +sa(dp117549 +g25268 +S'Landscape with a Castle and Radiating Sun' +p117550 +sg25270 +S'Hans Sebald Lautensack' +p117551 +sg25273 +S'etching' +p117552 +sg25275 +S'1553' +p117553 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acc3.jpg' +p117554 +sg25267 +g27 +sa(dp117555 +g25268 +S'Saints Peter and Paul Seated in a Landscape' +p117556 +sg25270 +S'Lucas van Leyden' +p117557 +sg25273 +S'engraving' +p117558 +sg25275 +S'1527' +p117559 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce6c.jpg' +p117560 +sg25267 +g27 +sa(dp117561 +g25268 +S'The Lamentation' +p117562 +sg25270 +S'Master BM' +p117563 +sg25273 +S'engraving' +p117564 +sg25275 +S'c. 1480/1490' +p117565 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3ce.jpg' +p117566 +sg25267 +g27 +sa(dp117567 +g25268 +S'The Rest on the Flight into Egypt' +p117568 +sg25270 +S'Master BM' +p117569 +sg25273 +S'engraving' +p117570 +sg25275 +S'c. 1480/1490' +p117571 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3cd.jpg' +p117572 +sg25267 +g27 +sa(dp117573 +g25268 +S'The Adoration of the Magi' +p117574 +sg25270 +S'Master E.S.' +p117575 +sg25273 +S'engraving' +p117576 +sg25275 +S'c. 1460/1465' +p117577 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3ad.jpg' +p117578 +sg25267 +g27 +sa(dp117579 +g25268 +S'Peasant and Egg Woman' +p117580 +sg25270 +S'Artist Information (' +p117581 +sg25273 +S'(artist after)' +p117582 +sg25275 +S'\n' +p117583 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c761.jpg' +p117584 +sg25267 +g27 +sa(dp117585 +g25268 +S'Two Loves' +p117586 +sg25270 +S'Artist Information (' +p117587 +sg25273 +S'(artist after)' +p117588 +sg25275 +S'\n' +p117589 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c762.jpg' +p117590 +sg25267 +g27 +sa(dp117591 +g25268 +S"Gardeuse d'oies nue (Nude Goose Girl)" +p117592 +sg25270 +S'Camille Pissarro' +p117593 +sg25273 +S'lithograph (zinc)' +p117594 +sg25275 +S'c. 1897' +p117595 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099a8.jpg' +p117596 +sg25267 +g27 +sa(dp117597 +g25268 +S'Christ on the Cross' +p117598 +sg25270 +S'German 15th Century' +p117599 +sg25273 +S'Schreiber, Vol. IX, no. 396, State a' +p117600 +sg25275 +S'\nwoodcut, hand-colored in blue, light blue, green, red lake, brown, and tan' +p117601 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a50c.jpg' +p117602 +sg25267 +g27 +sa(dp117603 +g25268 +S"Wooded Landscape at L'Hermitage, Pontoise (Paysage sous bois, a L'Hermitage,Pontoise)" +p117604 +sg25270 +S'Camille Pissarro' +p117605 +sg25273 +S'aquatint, soft-ground, and drypoint on Japanese paper' +p117606 +sg25275 +S'1879' +p117607 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009db3.jpg' +p117608 +sg25267 +g27 +sa(dp117609 +g25268 +S'Whistler' +p117610 +sg25270 +S'Carlo Pellegrini' +p117611 +sg25273 +S'drypoint' +p117612 +sg25275 +S'unknown date\n' +p117613 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc5e.jpg' +p117614 +sg25267 +g27 +sa(dp117615 +g25268 +S'J.J. Rousseau' +p117616 +sg25270 +S'Artist Information (' +p117617 +sg25273 +S'(artist after)' +p117618 +sg25275 +S'\n' +p117619 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009683.jpg' +p117620 +sg25267 +g27 +sa(dp117621 +g25268 +S"Frontispiece: Aid\xc3\xa9 de la sagesse, on se sauve de l'amour dans les bras de la raison" +p117622 +sg25270 +S'Artist Information (' +p117623 +sg25273 +S'(artist after)' +p117624 +sg25275 +S'\n' +p117625 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fcc.jpg' +p117626 +sg25267 +g27 +sa(dp117627 +g25268 +S'Voil\xc3\xa0 la r\xc3\xa8gle de la nature, pourquoi la contrariez-vous?' +p117628 +sg25270 +S'Artist Information (' +p117629 +sg25273 +S'(artist after)' +p117630 +sg25275 +S'\n' +p117631 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fec.jpg' +p117632 +sg25267 +g27 +sa(dp117633 +g25268 +S'Chacun respecte le travail des autres, afin que le sien soit en s\xc3\xbbret\xc3\xa9' +p117634 +sg25270 +S'Artist Information (' +p117635 +sg25273 +S'(artist after)' +p117636 +sg25275 +S'\n' +p117637 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fee.jpg' +p117638 +sg25267 +g27 +sa(dp117639 +g25268 +S"Piqu\xc3\xa9 de ma raillerie, il s'\xc3\xa9vertue et remporte le prix" +p117640 +sg25270 +S'Artist Information (' +p117641 +sg25273 +S'(artist after)' +p117642 +sg25275 +S'\n' +p117643 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008ff0.jpg' +p117644 +sg25267 +g27 +sa(dp117645 +g25268 +S"Courons v\xc3\xaete: l'astronomie est bonne \xc3\xa0 quelque chose" +p117646 +sg25270 +S'Artist Information (' +p117647 +sg25273 +S'(artist after)' +p117648 +sg25275 +S'\n' +p117649 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008ff4.jpg' +p117650 +sg25267 +g27 +sa(dp117651 +g25268 +S'La nature \xc3\xa9taloit \xc3\xa0 nos yeux toute sa magnificence' +p117652 +sg25270 +S'Artist Information (' +p117653 +sg25273 +S'(artist after)' +p117654 +sg25275 +S'\n' +p117655 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fe7.jpg' +p117656 +sg25267 +g27 +sa(dp117657 +g25268 +S'La barque' +p117658 +sg25270 +S'Artist Information (' +p117659 +sg25273 +S'(artist after)' +p117660 +sg25275 +S'\n' +p117661 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fde.jpg' +p117662 +sg25267 +g27 +sa(dp117663 +g25268 +S'Christ on the Cross' +p117664 +sg25270 +S'German 15th Century' +p117665 +sg25273 +S'Schreiber, Vol. IX, no. 406, State a' +p117666 +sg25275 +S'\nwoodcut, hand-colored in red lake, yellow, brown, and green' +p117667 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a52b.jpg' +p117668 +sg25267 +g27 +sa(dp117669 +g25268 +S'La confiance des belles \xc3\xa2mes' +p117670 +sg25270 +S'Artist Information (' +p117671 +sg25273 +S'(artist after)' +p117672 +sg25275 +S'\n' +p117673 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fe5.jpg' +p117674 +sg25267 +g27 +sa(dp117675 +g25268 +S'Sophie remettez-vous' +p117676 +sg25270 +S'Artist Information (' +p117677 +sg25273 +S'(artist after)' +p117678 +sg25275 +S'\n' +p117679 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008ffd.jpg' +p117680 +sg25267 +g27 +sa(dp117681 +g25268 +S'Les fol\xc3\xa2tres jeux sont les premiers cuisiniers du monde' +p117682 +sg25270 +S'Artist Information (' +p117683 +sg25273 +S'(artist after)' +p117684 +sg25275 +S'\n' +p117685 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008ffe.jpg' +p117686 +sg25267 +g27 +sa(dp117687 +g25268 +S'Un violent exercice \xc3\xa9touffe les sentimens tendres' +p117688 +sg25270 +S'Artist Information (' +p117689 +sg25273 +S'(artist after)' +p117690 +sg25275 +S'\n' +p117691 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a0009000.jpg' +p117692 +sg25267 +g27 +sa(dp117693 +g25268 +S'Le Devin du Village (Colette Weeping)' +p117694 +sg25270 +S'Artist Information (' +p117695 +sg25273 +S'(artist after)' +p117696 +sg25275 +S'\n' +p117697 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008ff9.jpg' +p117698 +sg25267 +g27 +sa(dp117699 +g25268 +S"Il en est n\xc3\xa2vre, je l'entraine avec peine" +p117700 +sg25270 +S'Artist Information (' +p117701 +sg25273 +S'(artist after)' +p117702 +sg25275 +S'\n' +p117703 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008ff6.jpg' +p117704 +sg25267 +g27 +sa(dp117705 +g25268 +S"Discours sur l'\xc3\xa9galit\xc3\xa9 des conditions: Il retourne chez ses \xc3\xa9gaux" +p117706 +sg25270 +S'Artist Information (' +p117707 +sg25273 +S'(artist after)' +p117708 +sg25275 +S'\n' +p117709 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008ffa.jpg' +p117710 +sg25267 +g27 +sa(dp117711 +g25268 +S"L'amant de lui-mesme" +p117712 +sg25270 +S'Artist Information (' +p117713 +sg25273 +S'(artist after)' +p117714 +sg25275 +S'\n' +p117715 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a0009002.jpg' +p117716 +sg25267 +g27 +sa(dp117717 +g25268 +S'La d\xc3\xa9couverte du nouveau monde' +p117718 +sg25270 +S'Artist Information (' +p117719 +sg25273 +S'(artist after)' +p117720 +sg25275 +S'\n' +p117721 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009609.jpg' +p117722 +sg25267 +g27 +sa(dp117723 +g25268 +S'Iphis' +p117724 +sg25270 +S'Artist Information (' +p117725 +sg25273 +S'(artist after)' +p117726 +sg25275 +S'\n' +p117727 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000960a.jpg' +p117728 +sg25267 +g27 +sa(dp117729 +g25268 +S'Christ on the Cross' +p117730 +sg25270 +S'German 15th Century' +p117731 +sg25273 +S'Schreiber, Vol. *, no. 433, State m' +p117732 +sg25275 +S'\nwoodcut, hand-colored in blue, green, lavender, yellow, brown, red, and orange' +p117733 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a52c.jpg' +p117734 +sg25267 +g27 +sa(dp117735 +g25268 +S'Ah! Jeune homme \xc3\xa0 ton bienfaiteur' +p117736 +sg25270 +S'Artist Information (' +p117737 +sg25273 +S'(artist after)' +p117738 +sg25275 +S'\n' +p117739 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fcd.jpg' +p117740 +sg25267 +g27 +sa(dp117741 +g25268 +S"Julie s'\xc3\xa9vanouit dans un fauteuil" +p117742 +sg25270 +S'Artist Information (' +p117743 +sg25273 +S'(artist after)' +p117744 +sg25275 +S'\n' +p117745 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008ff2.jpg' +p117746 +sg25267 +g27 +sa(dp117747 +g25268 +S"Elle s'\xc3\xa9lance apr\xc3\xa8s lui" +p117748 +sg25270 +S'Artist Information (' +p117749 +sg25273 +S'(artist after)' +p117750 +sg25275 +S'\n' +p117751 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fe3.jpg' +p117752 +sg25267 +g27 +sa(dp117753 +g25268 +S'Il appliqua sur cette main un baiser que je sentis sur mon coeur' +p117754 +sg25270 +S'Artist Information (' +p117755 +sg25273 +S'(artist after)' +p117756 +sg25275 +S'\n' +p117757 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fe0.jpg' +p117758 +sg25267 +g27 +sa(dp117759 +g25268 +S'Sans rien comprendre \xc3\xa0 ce mystere' +p117760 +sg25270 +S'Artist Information (' +p117761 +sg25273 +S'(artist after)' +p117762 +sg25275 +S'\n' +p117763 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fcf.jpg' +p117764 +sg25267 +g27 +sa(dp117765 +g25268 +S'Frontispiece: Dictionnaire de musique' +p117766 +sg25270 +S'Jean-Michel Moreau the Younger' +p117767 +sg25273 +S', 1779' +p117768 +sg25275 +S'\n' +p117769 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009605.jpg' +p117770 +sg25267 +g27 +sa(dp117771 +g25268 +S'Pygmalion' +p117772 +sg25270 +S'Artist Information (' +p117773 +sg25273 +S'(artist after)' +p117774 +sg25275 +S'\n' +p117775 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009606.jpg' +p117776 +sg25267 +g27 +sa(dp117777 +g25268 +S"J'ai tort, mon cher Val\xc3\xa8re, et t'en demande excuse" +p117778 +sg25270 +S'Artist Information (' +p117779 +sg25273 +S'(artist after)' +p117780 +sg25275 +S'\n' +p117781 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009603.jpg' +p117782 +sg25267 +g27 +sa(dp117783 +g25268 +S'Saint-Preux sort de chez des femmes du monde' +p117784 +sg25270 +S'Artist Information (' +p117785 +sg25273 +S'(artist after)' +p117786 +sg25275 +S'\n' +p117787 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fe4.jpg' +p117788 +sg25267 +g27 +sa(dp117789 +g25268 +S"L'inoculation de l'amour" +p117790 +sg25270 +S'Artist Information (' +p117791 +sg25273 +S'(artist after)' +p117792 +sg25275 +S'\n' +p117793 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fdb.jpg' +p117794 +sg25267 +g27 +sa(dp117795 +g25268 +S'Christ on the Cross' +p117796 +sg25270 +S'French 15th Century' +p117797 +sg25273 +S'Schreiber, Vol. IX, no. 437, State a' +p117798 +sg25275 +S'\nwoodcut, hand-colored in red, light blue, and gray' +p117799 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a00082fb.jpg' +p117800 +sg25267 +g27 +sa(dp117801 +g25268 +S'La Provocation' +p117802 +sg25270 +S'Artist Information (' +p117803 +sg25273 +S'(artist after)' +p117804 +sg25275 +S'\n' +p117805 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fd1.jpg' +p117806 +sg25267 +g27 +sa(dp117807 +g25268 +S'Le Soufflet' +p117808 +sg25270 +S'Artist Information (' +p117809 +sg25273 +S'(artist after)' +p117810 +sg25275 +S'\n' +p117811 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fd5.jpg' +p117812 +sg25267 +g27 +sa(dp117813 +g25268 +S'Mort de Julie' +p117814 +sg25270 +S'Artist Information (' +p117815 +sg25273 +S'(artist after)' +p117816 +sg25275 +S'\n' +p117817 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fed.jpg' +p117818 +sg25267 +g27 +sa(dp117819 +g25268 +S'Saint Roch and Saint Sebastian' +p117820 +sg25270 +S'Hans Leonard Sch\xc3\xa4ufelein' +p117821 +sg25273 +S'woodcut' +p117822 +sg25275 +S'1510' +p117823 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad7b.jpg' +p117824 +sg25267 +g27 +sa(dp117825 +g25268 +S'James Nares' +p117826 +sg25270 +S'William Ward' +p117827 +sg25273 +S'stipple engraving' +p117828 +sg25275 +S'unknown date\n' +p117829 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a000782c.jpg' +p117830 +sg25267 +g27 +sa(dp117831 +g25268 +S'Whistler' +p117832 +sg25270 +S'Sir Leslie Ward' +p117833 +sg25273 +S'watercolor and graphite on blue paper' +p117834 +sg25275 +S'unknown date\n' +p117835 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cd3.jpg' +p117836 +sg25267 +g27 +sa(dp117837 +g25268 +S'En Plein Soleil' +p117838 +sg25270 +S'James McNeill Whistler' +p117839 +sg25273 +S'etching' +p117840 +sg25275 +S'1858' +p117841 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9be.jpg' +p117842 +sg25267 +g27 +sa(dp117843 +g25268 +S'Gretchen at Heidelberg' +p117844 +sg25270 +S'James McNeill Whistler' +p117845 +sg25273 +S'etching' +p117846 +sg25275 +S'1858' +p117847 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9d5.jpg' +p117848 +sg25267 +g27 +sa(dp117849 +g25268 +S'August Delatre' +p117850 +sg25270 +S'James McNeill Whistler' +p117851 +sg25273 +S'etching' +p117852 +sg25275 +S'1858' +p117853 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9c6.jpg' +p117854 +sg25267 +g27 +sa(dp117855 +g25268 +S'The Wine-Glass' +p117856 +sg25270 +S'James McNeill Whistler' +p117857 +sg25273 +S'etching in dark brown on oatmeal laid paper' +p117858 +sg25275 +S'1858' +p117859 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9c7.jpg' +p117860 +sg25267 +g27 +sa(dp117861 +g25268 +S'Christ on the Cross' +p117862 +sg25270 +S'German 15th Century' +p117863 +sg25273 +S'Schreiber, Vol. *, no. 438, State c (=438a)' +p117864 +sg25275 +S'\nwoodcut, hand-colored in orange, yellow, olive, blue, and gold' +p117865 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a588.jpg' +p117866 +sg25267 +g27 +sa(dp117867 +g25268 +S'Annie Seated' +p117868 +sg25270 +S'James McNeill Whistler' +p117869 +sg25273 +S'etching' +p117870 +sg25275 +S'1858' +p117871 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9c9.jpg' +p117872 +sg25267 +g27 +sa(dp117873 +g25268 +S'Seymour Standing under a Tree' +p117874 +sg25270 +S'James McNeill Whistler' +p117875 +sg25273 +S'etching and drypoint' +p117876 +sg25275 +S'1859' +p117877 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a994.jpg' +p117878 +sg25267 +g27 +sa(dp117879 +g25268 +S'Greenwich Park' +p117880 +sg25270 +S'James McNeill Whistler' +p117881 +sg25273 +S'etching in black on "japon mince"' +p117882 +sg25275 +S'1859' +p117883 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a99a.jpg' +p117884 +sg25267 +g27 +sa(dp117885 +g25268 +S'Billingsgate' +p117886 +sg25270 +S'James McNeill Whistler' +p117887 +sg25273 +S'etching' +p117888 +sg25275 +S'1859' +p117889 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9a5.jpg' +p117890 +sg25267 +g27 +sa(dp117891 +g25268 +S'Self-Portrait' +p117892 +sg25270 +S'James McNeill Whistler' +p117893 +sg25273 +S'drypoint' +p117894 +sg25275 +S'1859' +p117895 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bc0.jpg' +p117896 +sg25267 +g27 +sa(dp117897 +g25268 +S'Fumette, Standing' +p117898 +sg25270 +S'James McNeill Whistler' +p117899 +sg25273 +S'drypoint' +p117900 +sg25275 +S'1859' +p117901 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aac6.jpg' +p117902 +sg25267 +g27 +sa(dp117903 +g25268 +S"Fumette's Bent Head" +p117904 +sg25270 +S'James McNeill Whistler' +p117905 +sg25273 +S'etching' +p117906 +sg25275 +S'1859' +p117907 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9a6.jpg' +p117908 +sg25267 +g27 +sa(dp117909 +g25268 +S'Axenfeld' +p117910 +sg25270 +S'James McNeill Whistler' +p117911 +sg25273 +S'drypoint in black with soft overall plate tone on cream laid paper' +p117912 +sg25275 +S'1859' +p117913 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9b6.jpg' +p117914 +sg25267 +g27 +sa(dp117915 +g25268 +S'Millbank' +p117916 +sg25270 +S'James McNeill Whistler' +p117917 +sg25273 +S'etching' +p117918 +sg25275 +S'1861' +p117919 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9ab.jpg' +p117920 +sg25267 +g27 +sa(dp117921 +g25268 +S'Early Morning, Battersea' +p117922 +sg25270 +S'James McNeill Whistler' +p117923 +sg25273 +S'etching' +p117924 +sg25275 +S'1861' +p117925 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9b1.jpg' +p117926 +sg25267 +g27 +sa(dp117927 +g25268 +S'Christ on the Cross' +p117928 +sg25270 +S'German 15th Century' +p117929 +sg25273 +S'Schreiber, Vol. *, no. 445, State a' +p117930 +sg25275 +S'\nwoodcut, hand-colored in blue, orange, yellow, green, rose, gray, and silver' +p117931 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a52f.jpg' +p117932 +sg25267 +g27 +sa(dp117933 +g25268 +S'Jo' +p117934 +sg25270 +S'James McNeill Whistler' +p117935 +sg25273 +S'drypoint' +p117936 +sg25275 +S'1861' +p117937 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005da1.jpg' +p117938 +sg25267 +g27 +sa(dp117939 +g25268 +S'The Storm' +p117940 +sg25270 +S'James McNeill Whistler' +p117941 +sg25273 +S'drypoint' +p117942 +sg25275 +S'1861' +p117943 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab5f.jpg' +p117944 +sg25267 +g27 +sa(dp117945 +g25268 +S'F. R. Leyland' +p117946 +sg25270 +S'James McNeill Whistler' +p117947 +sg25273 +S'etching and drypoint on "japon mince"' +p117948 +sg25275 +S'c. 1870/1873' +p117949 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bc1.jpg' +p117950 +sg25267 +g27 +sa(dp117951 +g25268 +S'The Silk Dress' +p117952 +sg25270 +S'James McNeill Whistler' +p117953 +sg25273 +S'drypoint' +p117954 +sg25275 +S'c. 1873' +p117955 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9d8.jpg' +p117956 +sg25267 +g27 +sa(dp117957 +g25268 +S'Tillie: A Model' +p117958 +sg25270 +S'James McNeill Whistler' +p117959 +sg25273 +S'drypoint' +p117960 +sg25275 +S'1873' +p117961 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa46.jpg' +p117962 +sg25267 +g27 +sa(dp117963 +g25268 +S'A Child on a Couch, No.2' +p117964 +sg25270 +S'James McNeill Whistler' +p117965 +sg25273 +S'drypoint' +p117966 +sg25275 +S'c. 1873/1875' +p117967 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab2c.jpg' +p117968 +sg25267 +g27 +sa(dp117969 +g25268 +S'Agnes' +p117970 +sg25270 +S'James McNeill Whistler' +p117971 +sg25273 +S'drypoint' +p117972 +sg25275 +S'c. 1873/1875' +p117973 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab30.jpg' +p117974 +sg25267 +g27 +sa(dp117975 +g25268 +S'The Scotch Widow' +p117976 +sg25270 +S'James McNeill Whistler' +p117977 +sg25273 +S'drypoint' +p117978 +sg25275 +S'1875' +p117979 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab2a.jpg' +p117980 +sg25267 +g27 +sa(dp117981 +g25268 +S'Speke Hall, No.2' +p117982 +sg25270 +S'James McNeill Whistler' +p117983 +sg25273 +S'etching and drypoint' +p117984 +sg25275 +S'1875' +p117985 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab33.jpg' +p117986 +sg25267 +g27 +sa(dp117987 +g25268 +S'The Troubled Thames' +p117988 +sg25270 +S'James McNeill Whistler' +p117989 +sg25273 +S'etching' +p117990 +sg25275 +S'c. 1875' +p117991 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab3d.jpg' +p117992 +sg25267 +g27 +sa(dp117993 +g25268 +S'Madonna and Child' +p117994 +sg25270 +S'Antonello da Messina' +p117995 +sg25273 +S'oil and tempera on panel transferred from panel' +p117996 +sg25275 +S'c. 1475' +p117997 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f5a0.jpg' +p117998 +sg25267 +S"Antonello da Messina probably painted this work during his \n eighteen-month visit to Venice, at which time, it was once thought, he \n introduced Venetian artists to oil paints. It is now known that they were \n using oils well before Antonello's arrival. For many years Italian \n merchants returning from business in the Low Countries had brought home \n Netherlandish oil paintings. An eager market for these highly detailed and \n naturalistic works already existed -- probably this prospect led Antonello \n north to Venice in the first place -- and Venetian painters themselves were \n experimenting with the new medium. Nevertheless, Antonello does seem to \n have exerted a strong influence: Venetian painting simply looked different \n after his stay than it had before. Probably his contribution was to teach \n techniques for using oils. Before his arrival Venetian painters had \n sometimes applied oils in alternating layers with tempera or brushed them \n on with the same short parallel strokes they used for opaque colors. These \n practices effectively blocked the full ability of oil paint to capture and \n reflect light, which is achieved only when translucent pigments are built \n up in thin, blended layers.\n " +p117999 +sa(dp118000 +g25268 +S'Tobias and the Angel' +p118001 +sg25270 +S'Filippino Lippi' +p118002 +sg25273 +S'oil and tempera (?) on panel' +p118003 +sg25275 +S'c. 1475/1480' +p118004 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000776.jpg' +p118005 +sg25267 +S'This painting is based on the Book of Tobit which tells the story of Tobit of Nenevah. Tobit is described as a man of good faith who suffers from blindness and poverty. He sent his son, Tobias, to a distant city to collect money he had deposited there, and hired a companion to accompany the youth. The companion was actually the archangel Raphael in disguise. Their journey was successful: not only was the money recovered, but medicine made from a monstrous fish Tobias encounters along the way cures Tobit\'s blindness.\r\n \n In Hebrew, Raphael\'s name means "God has healed." In this painting, Raphael holds a golden mortar used for compounding medicinal ingredients. Although the archangel is usually shown with a mortar or medicine box, his identity here is established by the presence of Tobias holding a fish. Raphael is named only in the Book of Tobit.\r\n \n The story of Tobit may have been particularly popular in fifteenth-century Florence because of its appeal to merchant families, whose sons were often sent to trade in far-away cities. Paintings of Tobias and his angelic guardian were likely commissioned as dedications to ensure a safe journey, or offer thanks for a safe return. The painting\'s suggestion of reward for fair dealing may have been equally welcome.\r\n \n ' +p118006 +sa(dp118007 +g25268 +S'Christ on the Cross' +p118008 +sg25270 +S'German 15th Century' +p118009 +sg25273 +S'Schreiber, no. 452, State a' +p118010 +sg25275 +S'\nhand-colored woodcut' +p118011 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a52e.jpg' +p118012 +sg25267 +g27 +sa(dp118013 +g25268 +S'The Tiny Pool' +p118014 +sg25270 +S'James McNeill Whistler' +p118015 +sg25273 +S'etching' +p118016 +sg25275 +S'c. 1879' +p118017 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9fa.jpg' +p118018 +sg25267 +g27 +sa(dp118019 +g25268 +S'Old Battersea Bridge' +p118020 +sg25270 +S'James McNeill Whistler' +p118021 +sg25273 +S'etching' +p118022 +sg25275 +S'1879' +p118023 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab6b.jpg' +p118024 +sg25267 +g27 +sa(dp118025 +g25268 +S'The Traghetto, No.I' +p118026 +sg25270 +S'James McNeill Whistler' +p118027 +sg25273 +S'etching' +p118028 +sg25275 +S'1879/1880' +p118029 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab47.jpg' +p118030 +sg25267 +g27 +sa(dp118031 +g25268 +S'Self-Portrait' +p118032 +sg25270 +S'Judith Leyster' +p118033 +sg25273 +S'oil on canvas' +p118034 +sg25275 +S'c. 1630' +p118035 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e6e.jpg' +p118036 +sg25267 +S'Judith Leyster\xe2\x80\x99s \n Leyster was accepted into the professional artists\xe2\x80\x99 guild of Saint Luke\xe2\x80\x99s Guild of Haarlem as an independent master in 1633, a rarity for a female artist at the time. As such, Leyster was entitled to establish her own workshop and take paying students. Early chroniclers of Haarlem praised her proficiency and talent. She was celebrated as "the true leading star" in art, a clever allusion to her family name, which means "lodestar." Leyster incorporated a star in her professional signature, the monogram JL*. Following her marriage in 1636 to fellow Haarlem artist Jan Miense Molenaer, Leyster stopped producing art in her own name but probably continued to paint in collaboration with her husband.\n ' +p118037 +sa(dp118038 +g25268 +S'Enthroned Madonna and Child' +p118039 +sg25270 +S'Byzantine 13th Century' +p118040 +sg25273 +S'overall: 130.7 x 77.1 cm (51 7/16 x 30 3/8 in.)\r\npainted surface: 124.8 x 70.8 cm (49 1/8 x 27 7/8 in.)\r\nframed: 130.5 x 77 x 6 cm (51 3/8 x 30 5/16 x 2 3/8 in.)' +p118041 +sg25275 +S'\ntempera on panel' +p118042 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a06.jpg' +p118043 +sg25267 +S'During the thirteenth century, the art of the Catholic West and Orthodox East\nintermingled, resulting in a Byzantine style in Italy. This icon or "holy image,"\nprobably painted by a Greek artist working in Italy, is a perfect example of this\nfusion. Known also as the "Kahn Madonna" from the name of the previous owner, the\nlarge panel represents a full-length figure of Mary enthroned as Queen of Heaven.\nShe holds the infant Christ who, true to medieval convention, is a miniature adult.\nIn the flanking medallions, archangels hold orbs and scepters, emphasizing Mary\'s\nimperial role. In this, the "Hodegetria" type of Madonna, she directs the viewer\'s\nattention to Christ, thus pointing the way to salvation.\n There are distinct similarities in style and subject matter between this painting\nand the Byzantine icons painted in the East for the Greek Orthodox Church. The graceful\nmovement of the figures, the gold striations on the drapery which simulate shimmering\nlight, and the flowing, rhythmic lines identify the artist as a Greek painter. But\nan Italian influence is notable in the tooled decoration of the halos, the perspective\nof the wooden throne with its high back, the delicate gradations of light and shade,\nand the distinctly Tuscan scheme of the rectangular panel with a full-length depiction\nof the enthroned Virgin.\n ' +p118044 +sa(dp118045 +g25268 +S'Young Woman in White' +p118046 +sg25270 +S'Robert Henri' +p118047 +sg25273 +S'oil on canvas' +p118048 +sg25275 +S'1904' +p118049 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000ef.jpg' +p118050 +sg25267 +g27 +sa(dp118051 +g25268 +S'Head of an Old Man' +p118052 +sg25270 +S'Alphonse Legros' +p118053 +sg25273 +S', unknown date' +p118054 +sg25275 +S'\n' +p118055 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073f1.jpg' +p118056 +sg25267 +g27 +sa(dp118057 +g25268 +S'Madonna on the Half Moon' +p118058 +sg25270 +S'Sebald Beham' +p118059 +sg25273 +S'engraving' +p118060 +sg25275 +S'1520' +p118061 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a817.jpg' +p118062 +sg25267 +g27 +sa(dp118063 +g25268 +S'Head of a Man with Upturned Eyes' +p118064 +sg25270 +S'Alphonse Legros' +p118065 +sg25273 +S'oil on canvas' +p118066 +sg25275 +S'unknown date\n' +p118067 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e4c.jpg' +p118068 +sg25267 +g27 +sa(dp118069 +g25268 +S"Study of a Man's Head with a Full Beard" +p118070 +sg25270 +S'Alphonse Legros' +p118071 +sg25273 +S'pen and brown ink with red chalk and graphite' +p118072 +sg25275 +S'unknown date\n' +p118073 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073e4.jpg' +p118074 +sg25267 +g27 +sa(dp118075 +g25268 +S'Christ on the Cross' +p118076 +sg25270 +S'German 15th Century' +p118077 +sg25273 +S'Schreiber, no. 455, State a' +p118078 +sg25275 +S'\nwoodcut, hand-colored in blue, red, yellow, green, gold, orange' +p118079 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a531.jpg' +p118080 +sg25267 +g27 +sa(dp118081 +g25268 +S'Head of a Man, Full Face' +p118082 +sg25270 +S'Alphonse Legros' +p118083 +sg25273 +S'graphite and black chalk with brown wash, heightened with white, on laid paper' +p118084 +sg25275 +S'unknown date\n' +p118085 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073f0.jpg' +p118086 +sg25267 +g27 +sa(dp118087 +g25268 +S'Clap of Thunder [recto]' +p118088 +sg25270 +S'Alphonse Legros' +p118089 +sg25273 +S'pen and brown ink with brown wash over graphite on paperboard' +p118090 +sg25275 +S'unknown date\n' +p118091 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072fc.jpg' +p118092 +sg25267 +g27 +sa(dp118093 +g25268 +S'Crowd of People Seen between Two Columns [verso]' +p118094 +sg25270 +S'Alphonse Legros' +p118095 +sg25273 +S'pen and brown ink with brown wash over black chalk on paperboard' +p118096 +sg25275 +S'unknown date\n' +p118097 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072fd.jpg' +p118098 +sg25267 +g27 +sa(dp118099 +g25268 +S'Head of a Man (Possible Portrait of Professor E.D. Adams)' +p118100 +sg25270 +S'Alphonse Legros' +p118101 +sg25273 +S'black and red chalk with yellow-green crayon, heightened with white, over graphite on orange-pink prepared paper' +p118102 +sg25275 +S'unknown date\n' +p118103 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073da.jpg' +p118104 +sg25267 +g27 +sa(dp118105 +g25268 +S'Mab and Cupid (Mab et Cupidon)' +p118106 +sg25270 +S'Alphonse Legros' +p118107 +sg25273 +S'etching' +p118108 +sg25275 +S'unknown date\n' +p118109 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098e3.jpg' +p118110 +sg25267 +g27 +sa(dp118111 +g25268 +S'Broken Cart (La charette brisee)' +p118112 +sg25270 +S'Alphonse Legros' +p118113 +sg25273 +S'etching' +p118114 +sg25275 +S'unknown date\n' +p118115 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009902.jpg' +p118116 +sg25267 +g27 +sa(dp118117 +g25268 +S'Auguste Rodin' +p118118 +sg25270 +S'Alphonse Legros' +p118119 +sg25273 +S'etching in brown ink' +p118120 +sg25275 +S'unknown date\n' +p118121 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b8c.jpg' +p118122 +sg25267 +g27 +sa(dp118123 +g25268 +S'Old man, Old Tree (Vieil homme, vieil arbre)' +p118124 +sg25270 +S'Alphonse Legros' +p118125 +sg25273 +S'etching and drypoint' +p118126 +sg25275 +S'unknown date\n' +p118127 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bd2.jpg' +p118128 +sg25267 +g27 +sa(dp118129 +g25268 +S'Unfurled Waves, Flood of September 1901 (Les lames deferlent,maree de Septembre 1901)' +p118130 +sg25270 +S'Auguste Lep\xc3\xa8re' +p118131 +sg25273 +S'color woodcut' +p118132 +sg25275 +S'1901' +p118133 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cf6.jpg' +p118134 +sg25267 +g27 +sa(dp118135 +g25268 +S'Herd of Sheep near the Hague' +p118136 +sg25270 +S'Willem Buytewech' +p118137 +sg25273 +g27 +sg25275 +S'1621' +p118138 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0ca.jpg' +p118139 +sg25267 +g27 +sa(dp118140 +g25268 +S'Christ on the Cross' +p118141 +sg25270 +S'German 15th Century' +p118142 +sg25273 +S'Schreiber, no. 456, State a' +p118143 +sg25275 +S'\nwoodcut, hand-colored in blue, red, vermillion, olive, green, yellow, and rose' +p118144 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a51f.jpg' +p118145 +sg25267 +g27 +sa(dp118146 +g25268 +S'Two Plank Hedges' +p118147 +sg25270 +S'Willem Buytewech' +p118148 +sg25273 +g27 +sg25275 +S'1621' +p118149 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0c8.jpg' +p118150 +sg25267 +g27 +sa(dp118151 +g25268 +S'Christ before Caiaphas' +p118152 +sg25270 +S'Lucas Cranach the Elder' +p118153 +sg25273 +S'woodcut' +p118154 +sg25275 +S'in or before 1509' +p118155 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0a7.jpg' +p118156 +sg25267 +g27 +sa(dp118157 +g25268 +S'The Resurrection' +p118158 +sg25270 +S'Lucas Cranach the Elder' +p118159 +sg25273 +S'woodcut' +p118160 +sg25275 +S'in or before 1509' +p118161 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0bc.jpg' +p118162 +sg25267 +g27 +sa(dp118163 +g25268 +S'The Entombment' +p118164 +sg25270 +S'Lucas Cranach the Elder' +p118165 +sg25273 +S'woodcut' +p118166 +sg25275 +S'in or before 1509' +p118167 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0bd.jpg' +p118168 +sg25267 +g27 +sa(dp118169 +g25268 +S'The Gate in the Rocks' +p118170 +sg25270 +S'Hans Sebald Lautensack' +p118171 +sg25273 +S'etching' +p118172 +sg25275 +S'1554' +p118173 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acc1.jpg' +p118174 +sg25267 +g27 +sa(dp118175 +g25268 +S'Christ Bearing the Cross' +p118176 +sg25270 +S'Lucas Cranach the Elder' +p118177 +sg25273 +S'woodcut' +p118178 +sg25275 +S'in or before 1509' +p118179 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0bf.jpg' +p118180 +sg25267 +g27 +sa(dp118181 +g25268 +S'Ecce Homo' +p118182 +sg25270 +S'Lucas Cranach the Elder' +p118183 +sg25273 +S'woodcut' +p118184 +sg25275 +S'in or before 1509' +p118185 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac1d.jpg' +p118186 +sg25267 +g27 +sa(dp118187 +g25268 +S'Christ Crowned with Thorns' +p118188 +sg25270 +S'Lucas Cranach the Elder' +p118189 +sg25273 +S'woodcut' +p118190 +sg25275 +S'in or before 1509' +p118191 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0c1.jpg' +p118192 +sg25267 +g27 +sa(dp118193 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(related artist)' +p118194 +sg25268 +S'Male Head' +p118195 +sg25270 +S'Artist Information (' +p118196 +sa(dp118197 +g25268 +S'Landscape, Evening' +p118198 +sg25270 +S'Alphonse Legros' +p118199 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p118200 +sg25275 +S'unknown date\n' +p118201 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007300.jpg' +p118202 +sg25267 +g27 +sa(dp118203 +g25268 +S'Christ on the Cross' +p118204 +sg25270 +S'German 15th Century' +p118205 +sg25273 +S'Schreiber, no. 456, State a' +p118206 +sg25275 +S'\nwoodcut, hand-colored in blue-green, vermilion, lavender, brown, olive, and yellow' +p118207 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a51e.jpg' +p118208 +sg25267 +g27 +sa(dp118209 +g25268 +S'Florestan Mionnet' +p118210 +sg25270 +S'Alphonse Legros' +p118211 +sg25273 +S'drypoint' +p118212 +sg25275 +S'unknown date\n' +p118213 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098ff.jpg' +p118214 +sg25267 +g27 +sa(dp118215 +g25268 +S'Old man seated (Vieillard assis)' +p118216 +sg25270 +S'Alphonse Legros' +p118217 +sg25273 +S'etching' +p118218 +sg25275 +S'unknown date\n' +p118219 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b18.jpg' +p118220 +sg25267 +g27 +sa(dp118221 +g25268 +S'Frederic Regamey' +p118222 +sg25270 +S'Alphonse Legros' +p118223 +sg25273 +S'drypoint' +p118224 +sg25275 +S'unknown date\n' +p118225 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009908.jpg' +p118226 +sg25267 +g27 +sa(dp118227 +g25268 +S'Procession in the Sepulchre of Saint Medard(Procession dans les caveaux de St.Medard)' +p118228 +sg25270 +S'Alphonse Legros' +p118229 +sg25273 +S'etching' +p118230 +sg25275 +S'1859' +p118231 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b1f.jpg' +p118232 +sg25267 +g27 +sa(dp118233 +g25268 +S'View over Flat Country' +p118234 +sg25270 +S'Alphonse Legros' +p118235 +sg25273 +S'pen and brown ink with brown wash over graphite on laid paper' +p118236 +sg25275 +S'1906' +p118237 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007301.jpg' +p118238 +sg25267 +g27 +sa(dp118239 +g25268 +S'Beggar with Crutches' +p118240 +sg25270 +S'Alphonse Legros' +p118241 +sg25273 +S'pen and brown ink with brown wash over traces of graphite' +p118242 +sg25275 +S'unknown date\n' +p118243 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073f2.jpg' +p118244 +sg25267 +g27 +sa(dp118245 +g25273 +S'etching and drypoint' +p118246 +sg25267 +g27 +sg25275 +S'unknown date\n' +p118247 +sg25268 +S'Procession in a Spanish Church (Procession dans une eglise espagnole)' +p118248 +sg25270 +S'Alphonse Legros' +p118249 +sa(dp118250 +g25273 +S'lithograph' +p118251 +sg25267 +g27 +sg25275 +S'1929' +p118252 +sg25268 +S'Brother and Sister (Geschwister)' +p118253 +sg25270 +S'Erich Heckel' +p118254 +sa(dp118255 +g25268 +S'Two Mercenaries and a Woman' +p118256 +sg25270 +S'Urs Graf I' +p118257 +sg25273 +S'woodcut' +p118258 +sg25275 +S'1524' +p118259 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef9d.jpg' +p118260 +sg25267 +g27 +sa(dp118261 +g25268 +S'Josias Simler' +p118262 +sg25270 +S'Jost Amman' +p118263 +sg25273 +S'engraving' +p118264 +sg25275 +S'unknown date\n' +p118265 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef9a.jpg' +p118266 +sg25267 +g27 +sa(dp118267 +g25268 +S'The Crucifixion with Saint Mary Magdalene' +p118268 +sg25270 +S'Michael Wolgemut' +p118269 +sg25273 +S', c. 1490' +p118270 +sg25275 +S'\n' +p118271 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a637.jpg' +p118272 +sg25267 +g27 +sa(dp118273 +g25268 +S'The Lamentation' +p118274 +sg25270 +S'Artist Information (' +p118275 +sg25273 +g27 +sg25275 +S'(artist)' +p118276 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3ca.jpg' +p118277 +sg25267 +g27 +sa(dp118278 +g25268 +S'Saint Maurice' +p118279 +sg25270 +S'German 15th Century' +p118280 +sg25273 +S'Passavant, no. 167, State unique' +p118281 +sg25275 +S'\nengraving, hand-colored' +p118282 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3cc.jpg' +p118283 +sg25267 +g27 +sa(dp118284 +g25268 +S'Apollo Dancing with the Nine Muses' +p118285 +sg25270 +S'German 16th Century' +p118286 +sg25273 +S'Bartsch, no. 2' +p118287 +sg25275 +S'\nengraving' +p118288 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a79f.jpg' +p118289 +sg25267 +g27 +sa(dp118290 +g25273 +S'overall: 22.1 x 15.8 cm (8 11/16 x 6 1/4 in.)' +p118291 +sg25267 +g27 +sg25275 +S'\nminiature on vellum' +p118292 +sg25268 +S'Birth and Naming of John the Baptist' +p118293 +sg25270 +S'Italian 13th Century' +p118294 +sa(dp118295 +g25268 +S'Praying Prophet' +p118296 +sg25270 +S'Lorenzo Monaco' +p118297 +sg25273 +S'miniature on vellum' +p118298 +sg25275 +S'1410/1413' +p118299 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b571.jpg' +p118300 +sg25267 +g27 +sa(dp118301 +g25268 +S'Tree with Crown and Two Birds' +p118302 +sg25270 +S'Italian 16th Century' +p118303 +sg25273 +S"Hind 'Engravings', undescribed" +p118304 +sg25275 +S'\nwoodcut' +p118305 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c879.jpg' +p118306 +sg25267 +g27 +sa(dp118307 +g25268 +S'Two Putti with Shield Inscribed Pier Santi' +p118308 +sg25270 +S'Italian 16th Century' +p118309 +sg25273 +S"Hind 'Engravings', undescribed" +p118310 +sg25275 +S'\nwoodcut' +p118311 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9e8.jpg' +p118312 +sg25267 +g27 +sa(dp118313 +g25273 +S'etching in black on wove paper' +p118314 +sg25267 +g27 +sg25275 +S'1949' +p118315 +sg25268 +S'French Lace' +p118316 +sg25270 +S'John Taylor Arms' +p118317 +sa(dp118318 +g25273 +S'etching in black on laid paper' +p118319 +sg25267 +g27 +sg25275 +S'1948' +p118320 +sg25268 +S'The Old Order' +p118321 +sg25270 +S'John Taylor Arms' +p118322 +sa(dp118323 +g25268 +S'Saint John the Baptist' +p118324 +sg25270 +S'Hans Baldung Grien' +p118325 +sg25273 +S'woodcut' +p118326 +sg25275 +S'1517' +p118327 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7ea.jpg' +p118328 +sg25267 +g27 +sa(dp118329 +g25268 +S'The Lamentation' +p118330 +sg25270 +S'German 15th Century' +p118331 +sg25273 +S'Schreiber, no. 506, State m' +p118332 +sg25275 +S'\nwoodcut, hand-colored in brown lake, gray, rose, yellow, green, and olive' +p118333 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a643.jpg' +p118334 +sg25267 +g27 +sa(dp118335 +g25268 +S'View of Venice [upper left block]' +p118336 +sg25270 +S"Jacopo de' Barbari" +p118337 +sg25273 +S'woodcut on two sheets pasted together' +p118338 +sg25275 +S'1500' +p118339 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057cd.jpg' +p118340 +sg25267 +g27 +sa(dp118341 +g25268 +S'View of Venice [upper center block]' +p118342 +sg25270 +S"Jacopo de' Barbari" +p118343 +sg25273 +S'woodcut on two sheets pasted together' +p118344 +sg25275 +S'1500' +p118345 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a0005902.jpg' +p118346 +sg25267 +g27 +sa(dp118347 +g25268 +S'View of Venice [upper right block]' +p118348 +sg25270 +S"Jacopo de' Barbari" +p118349 +sg25273 +S'woodcut on two sheets pasted together' +p118350 +sg25275 +S'1500' +p118351 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a000590e.jpg' +p118352 +sg25267 +g27 +sa(dp118353 +g25268 +S'View of Venice [lower left block]' +p118354 +sg25270 +S"Jacopo de' Barbari" +p118355 +sg25273 +S'woodcut on two sheets pasted together' +p118356 +sg25275 +S'1500' +p118357 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a000590f.jpg' +p118358 +sg25267 +g27 +sa(dp118359 +g25268 +S'View of Venice [lower center block]' +p118360 +sg25270 +S"Jacopo de' Barbari" +p118361 +sg25273 +S'woodcut' +p118362 +sg25275 +S'1500' +p118363 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a0005910.jpg' +p118364 +sg25267 +g27 +sa(dp118365 +g25268 +S'View of Venice [lower right block]' +p118366 +sg25270 +S"Jacopo de' Barbari" +p118367 +sg25273 +S'woodcut on two sheets pasted together' +p118368 +sg25275 +S'1500' +p118369 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a0005911.jpg' +p118370 +sg25267 +g27 +sa(dp118371 +g25268 +S'Woman and Child with Distaff' +p118372 +sg25270 +S"Jacopo de' Barbari" +p118373 +sg25273 +S'engraving' +p118374 +sg25275 +S'unknown date\n' +p118375 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c796.jpg' +p118376 +sg25267 +g27 +sa(dp118377 +g25268 +S'Man Kneeling' +p118378 +sg25270 +S'Ernst Barlach' +p118379 +sg25273 +S'pen and brown ink with gray wash and graphite' +p118380 +sg25275 +S'1916' +p118381 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000704b.jpg' +p118382 +sg25267 +g27 +sa(dp118383 +g25273 +S'lithograph' +p118384 +sg25267 +g27 +sg25275 +S'unknown date\n' +p118385 +sg25268 +S'Composition' +p118386 +sg25270 +S'Willi Baumeister' +p118387 +sa(dp118388 +g25268 +S'The Three Marys at the Tomb' +p118389 +sg25270 +S'Jacques de Bellange' +p118390 +sg25273 +S', unknown date' +p118391 +sg25275 +S'\n' +p118392 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bf5.jpg' +p118393 +sg25267 +g27 +sa(dp118394 +g25268 +S'The Deposition' +p118395 +sg25270 +S'German 15th Century' +p118396 +sg25273 +S'Schreiber, no. 502' +p118397 +sg25275 +S'\nwoodcut, hand-colored in orange-red, yellow, and green' +p118398 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a530.jpg' +p118399 +sg25267 +g27 +sa(dp118400 +g25268 +S'The Resurrection' +p118401 +sg25270 +S'Artist Information (' +p118402 +sg25273 +S'(artist after)' +p118403 +sg25275 +S'\n' +p118404 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a1c.jpg' +p118405 +sg25267 +g27 +sa(dp118406 +g25268 +S'The Parable of the Wise and Foolish Virgins' +p118407 +sg25270 +S'Artist Information (' +p118408 +sg25273 +S'(artist after)' +p118409 +sg25275 +S'\n' +p118410 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cef3.jpg' +p118411 +sg25267 +g27 +sa(dp118412 +g25268 +S'Jan Uytenbogaert' +p118413 +sg25270 +S'Artist Information (' +p118414 +sg25273 +S'(artist after)' +p118415 +sg25275 +S'\n' +p118416 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4ed.jpg' +p118417 +sg25267 +g27 +sa(dp118418 +g25268 +S'Title Plate' +p118419 +sg25270 +S'Willem Buytewech' +p118420 +sg25273 +S'etching' +p118421 +sg25275 +S'1621' +p118422 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0cd.jpg' +p118423 +sg25267 +g27 +sa(dp118424 +g25268 +S'Ruined Tower Right of Center' +p118425 +sg25270 +S'Willem Buytewech' +p118426 +sg25273 +S'etching' +p118427 +sg25275 +S'1621' +p118428 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0c6.jpg' +p118429 +sg25267 +g27 +sa(dp118430 +g25268 +S'Two Ruins (Huys te Kleef near Haarlem)' +p118431 +sg25270 +S'Willem Buytewech' +p118432 +sg25273 +S'etching' +p118433 +sg25275 +S'1621' +p118434 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0ce.jpg' +p118435 +sg25267 +g27 +sa(dp118436 +g25268 +S'Road at the Edge of the Forest' +p118437 +sg25270 +S'Willem Buytewech' +p118438 +sg25273 +S'etching' +p118439 +sg25275 +S'1621' +p118440 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0cf.jpg' +p118441 +sg25267 +g27 +sa(dp118442 +g25268 +S'The Sower' +p118443 +sg25270 +S'Willem Buytewech' +p118444 +sg25273 +S'etching' +p118445 +sg25275 +S'1621' +p118446 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0c7.jpg' +p118447 +sg25267 +g27 +sa(dp118448 +g25268 +S'The House with the Stepped Gable' +p118449 +sg25270 +S'Willem Buytewech' +p118450 +sg25273 +S'etching' +p118451 +sg25275 +S'1621' +p118452 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0cc.jpg' +p118453 +sg25267 +g27 +sa(dp118454 +g25268 +S'The Charcoal-Burner' +p118455 +sg25270 +S'Willem Buytewech' +p118456 +sg25273 +S'etching' +p118457 +sg25275 +S'1621' +p118458 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0c9.jpg' +p118459 +sg25267 +g27 +sa(dp118460 +g25268 +S'The Lamentation' +p118461 +sg25270 +S'German 15th Century' +p118462 +sg25273 +S'Schreiber, no. 510' +p118463 +sg25275 +S'\nwoodcut in dark brown, hand-colored in red-lake, blue, green, yellow, tan, gold, and orange' +p118464 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a606.jpg' +p118465 +sg25267 +g27 +sa(dp118466 +g25268 +S'Ruins of a Church (Chapel of Eykenduynen near The Hague)' +p118467 +sg25270 +S'Willem Buytewech' +p118468 +sg25273 +S'etching' +p118469 +sg25275 +S'1621' +p118470 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0cb.jpg' +p118471 +sg25267 +g27 +sa(dp118472 +g25268 +S'Scene of Pillage' +p118473 +sg25270 +S'Jacques Callot' +p118474 +sg25273 +S'etching' +p118475 +sg25275 +S'c. 1633' +p118476 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088df.jpg' +p118477 +sg25267 +g27 +sa(dp118478 +g25268 +S'Destruction of a Convent' +p118479 +sg25270 +S'Jacques Callot' +p118480 +sg25273 +S'etching' +p118481 +sg25275 +S'c. 1633' +p118482 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088dc.jpg' +p118483 +sg25267 +g27 +sa(dp118484 +g25273 +S'etching' +p118485 +sg25267 +g27 +sg25275 +S'c. 1633' +p118486 +sg25268 +S'Plundering and Burning a Village' +p118487 +sg25270 +S'Jacques Callot' +p118488 +sa(dp118489 +g25273 +S'etching' +p118490 +sg25267 +g27 +sg25275 +S'c. 1633' +p118491 +sg25268 +S'The Firing Squad' +p118492 +sg25270 +S'Jacques Callot' +p118493 +sa(dp118494 +g25273 +S'etching' +p118495 +sg25267 +g27 +sg25275 +S'c. 1633' +p118496 +sg25268 +S'The Stake' +p118497 +sg25270 +S'Jacques Callot' +p118498 +sa(dp118499 +g25268 +S'The Letter' +p118500 +sg25270 +S'Mary Cassatt' +p118501 +sg25273 +S'drypoint, soft-ground etching, and aquatint in color' +p118502 +sg25275 +S'c. 1891' +p118503 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a53.jpg' +p118504 +sg25267 +g27 +sa(dp118505 +g25268 +S'Woman Bathing' +p118506 +sg25270 +S'Mary Cassatt' +p118507 +sg25273 +S'color drypoint and aquatint on laid paper' +p118508 +sg25275 +S'1890/1891' +p118509 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa46.jpg' +p118510 +sg25267 +g27 +sa(dp118511 +g25268 +S'The Fitting' +p118512 +sg25270 +S'Mary Cassatt' +p118513 +sg25273 +S'color drypoint and aquatint' +p118514 +sg25275 +S'1890/1891' +p118515 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa3f.jpg' +p118516 +sg25267 +g27 +sa(dp118517 +g25268 +S'Christ on the Mount of Olives' +p118518 +sg25270 +S'Lucas Cranach the Elder' +p118519 +sg25273 +S'woodcut' +p118520 +sg25275 +S'in or before 1509' +p118521 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0a3.jpg' +p118522 +sg25267 +g27 +sa(dp118523 +g25268 +S'The Lamentation' +p118524 +sg25270 +S'German 15th Century' +p118525 +sg25273 +S'Schreiber, no. 514, State a' +p118526 +sg25275 +S'\nwoodcut, hand-colored in red lake, green, tan, and ochre' +p118527 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a592.jpg' +p118528 +sg25267 +g27 +sa(dp118529 +g25268 +S'Christ Taken Captive' +p118530 +sg25270 +S'Lucas Cranach the Elder' +p118531 +sg25273 +S'woodcut' +p118532 +sg25275 +S'in or before 1509' +p118533 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0a4.jpg' +p118534 +sg25267 +g27 +sa(dp118535 +g25268 +S'Christ before Annas' +p118536 +sg25270 +S'Lucas Cranach the Elder' +p118537 +sg25273 +S'woodcut' +p118538 +sg25275 +S'in or before 1509' +p118539 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0a5.jpg' +p118540 +sg25267 +g27 +sa(dp118541 +g25268 +S'Christ before Herod' +p118542 +sg25270 +S'Lucas Cranach the Elder' +p118543 +sg25273 +S'woodcut' +p118544 +sg25275 +S'in or before 1509' +p118545 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0a8.jpg' +p118546 +sg25267 +g27 +sa(dp118547 +g25268 +S'The Flagellation' +p118548 +sg25270 +S'Lucas Cranach the Elder' +p118549 +sg25273 +S'woodcut' +p118550 +sg25275 +S'in or before 1509' +p118551 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0a9.jpg' +p118552 +sg25267 +g27 +sa(dp118553 +g25268 +S'Pilate Washing His Hands' +p118554 +sg25270 +S'Lucas Cranach the Elder' +p118555 +sg25273 +S'woodcut' +p118556 +sg25275 +S'in or before 1509' +p118557 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0c0.jpg' +p118558 +sg25267 +g27 +sa(dp118559 +g25268 +S'The Crucifixion' +p118560 +sg25270 +S'Lucas Cranach the Elder' +p118561 +sg25273 +S'woodcut' +p118562 +sg25275 +S'in or before 1509' +p118563 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8bb.jpg' +p118564 +sg25267 +g27 +sa(dp118565 +g25268 +S'The Lamentation' +p118566 +sg25270 +S'Lucas Cranach the Elder' +p118567 +sg25273 +S'woodcut' +p118568 +sg25275 +S'in or before 1509' +p118569 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0be.jpg' +p118570 +sg25267 +g27 +sa(dp118571 +g25268 +S'A Saxon Prince on Horseback' +p118572 +sg25270 +S'Lucas Cranach the Elder' +p118573 +sg25273 +S'woodcut' +p118574 +sg25275 +S'1506' +p118575 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a901.jpg' +p118576 +sg25267 +g27 +sa(dp118577 +g25268 +S'Manet Seated, Turned to the Left (Manet assis, tourn\xc3\xa9 \xc3\xa0 gauche)' +p118578 +sg25270 +S'Edgar Degas' +p118579 +sg25273 +S'etching on wove paper' +p118580 +sg25275 +S'c. 1861' +p118581 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a00097fc.jpg' +p118582 +sg25267 +g27 +sa(dp118583 +g25268 +S'The Annunciation' +p118584 +sg25270 +S'Francesco Denanto' +p118585 +sg25273 +S'woodcut' +p118586 +sg25275 +S'unknown date\n' +p118587 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8b2.jpg' +p118588 +sg25267 +g27 +sa(dp118589 +g25268 +S'Christ Appearing to Mary Magdalene' +p118590 +sg25270 +S'French 15th Century' +p118591 +sg25273 +S'Schreiber, no. 554, State a' +p118592 +sg25275 +S'\nwoodcut, hand-colored in maroon, orange, yellow, blue-green, mauve, and flesh; possibly applied with stencils' +p118593 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a00082fe.jpg' +p118594 +sg25267 +g27 +sa(dp118595 +g25268 +S'Christ and the Woman of Samaria' +p118596 +sg25270 +S'Artist Information (' +p118597 +sg25273 +S'(artist after)' +p118598 +sg25275 +S'\n' +p118599 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8b3.jpg' +p118600 +sg25267 +g27 +sa(dp118601 +g25268 +S'The Holy Family with Saint Sebastian and Saint Roch' +p118602 +sg25270 +S'Francesco Denanto' +p118603 +sg25273 +S'woodcut' +p118604 +sg25275 +S'unknown date\n' +p118605 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8aa.jpg' +p118606 +sg25267 +g27 +sa(dp118607 +g25268 +S'The Last Supper' +p118608 +sg25270 +S'Francesco Denanto' +p118609 +sg25273 +S'woodcut' +p118610 +sg25275 +S'unknown date\n' +p118611 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8ab.jpg' +p118612 +sg25267 +g27 +sa(dp118613 +g25268 +S'The Adoration of the Magi' +p118614 +sg25270 +S'Francesco Denanto' +p118615 +sg25273 +S'woodcut' +p118616 +sg25275 +S'unknown date\n' +p118617 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8ae.jpg' +p118618 +sg25267 +g27 +sa(dp118619 +g25268 +S'The Raising of Lazarus' +p118620 +sg25270 +S'Francesco Denanto' +p118621 +sg25273 +S'woodcut' +p118622 +sg25275 +S'unknown date\n' +p118623 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8ad.jpg' +p118624 +sg25267 +g27 +sa(dp118625 +g25268 +S"Christ's Entry into Jerusalem" +p118626 +sg25270 +S'Francesco Denanto' +p118627 +sg25273 +S'woodcut' +p118628 +sg25275 +S'unknown date\n' +p118629 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8ac.jpg' +p118630 +sg25267 +g27 +sa(dp118631 +g25268 +S'The Adoration of the Shepherds' +p118632 +sg25270 +S'Francesco Denanto' +p118633 +sg25273 +S'woodcut' +p118634 +sg25275 +S'unknown date\n' +p118635 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8b0.jpg' +p118636 +sg25267 +g27 +sa(dp118637 +g25268 +S'Coat of Arms of Scheurl and Tucher Families' +p118638 +sg25270 +S'Wolf Traut' +p118639 +sg25273 +S'woodcut' +p118640 +sg25275 +S'1512' +p118641 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b285.jpg' +p118642 +sg25267 +g27 +sa(dp118643 +g25273 +S'woodcut on Japanese laid paper [proof]' +p118644 +sg25267 +g27 +sg25275 +S'1919' +p118645 +sg25268 +S'Cruising Sailing Ships, 2 (Kreuzende Segelschiffe, 2)' +p118646 +sg25270 +S'Lyonel Feininger' +p118647 +sa(dp118648 +g25273 +S'woodcut on Oriental laid paper [proof]' +p118649 +sg25267 +g27 +sg25275 +S'1931' +p118650 +sg25268 +S'Yellow Village Church, 3 (Gelbe Dorfkirche, 3)' +p118651 +sg25270 +S'Lyonel Feininger' +p118652 +sa(dp118653 +g25268 +S'Portrait of a Lady in White' +p118654 +sg25270 +S'Moretto da Brescia' +p118655 +sg25273 +S'oil on canvas' +p118656 +sg25275 +S'c. 1540' +p118657 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000815.jpg' +p118658 +sg25267 +g27 +sa(dp118659 +g25268 +S'Christ Appearing to Mary Magdalene' +p118660 +sg25270 +S'German 15th Century' +p118661 +sg25273 +S'Schreiber, no. 560' +p118662 +sg25275 +S'\nwoodcut, hand-colored in green, gray, olive, red lake, and gold' +p118663 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a536.jpg' +p118664 +sg25267 +g27 +sa(dp118665 +g25273 +S'woodcut on oatmeal (carbon-copy?) paper' +p118666 +sg25267 +g27 +sg25275 +S'1918' +p118667 +sg25268 +S'City with Church in the Sun (Stadt mit Kirche in der Sonne)' +p118668 +sg25270 +S'Lyonel Feininger' +p118669 +sa(dp118670 +g25268 +S'J.-K. Huysmans' +p118671 +sg25270 +S'Jean-Louis Forain' +p118672 +sg25273 +S'etching' +p118673 +sg25275 +S'1909' +p118674 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099ee.jpg' +p118675 +sg25267 +g27 +sa(dp118676 +g25273 +S'lithograph' +p118677 +sg25267 +g27 +sg25275 +S'unknown date\n' +p118678 +sg25268 +S'New England Snow' +p118679 +sg25270 +S'Eugene M. Frandzen' +p118680 +sa(dp118681 +g25273 +S'linoleum cut' +p118682 +sg25267 +g27 +sg25275 +S'1921' +p118683 +sg25268 +S'Still Life (Composition A)' +p118684 +sg25270 +S'Albert Gleizes' +p118685 +sa(dp118686 +g25268 +S'Landscape with a Seated Couple' +p118687 +sg25270 +S'Hendrick Goltzius' +p118688 +sg25273 +S', probably 1592/1595' +p118689 +sg25275 +S'\n' +p118690 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce42.jpg' +p118691 +sg25267 +g27 +sa(dp118692 +g25268 +S'Young Man Standing in Fluttering Dress' +p118693 +sg25270 +S'Hendrick Goltzius' +p118694 +sg25273 +S', probably c. 1588' +p118695 +sg25275 +S'\n' +p118696 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce45.jpg' +p118697 +sg25267 +g27 +sa(dp118698 +g25268 +S'Arcadian Landscape' +p118699 +sg25270 +S'Hendrick Goltzius' +p118700 +sg25273 +S', unknown date' +p118701 +sg25275 +S'\n' +p118702 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfd3.jpg' +p118703 +sg25267 +g27 +sa(dp118704 +g25268 +S'Seascape with Two Sailing Vessels' +p118705 +sg25270 +S'Hendrick Goltzius' +p118706 +sg25273 +S', unknown date' +p118707 +sg25275 +S'\n' +p118708 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce3e.jpg' +p118709 +sg25267 +g27 +sa(dp118710 +g25268 +S'Landscape with Six Single Trees and Three Small Farm-Houses' +p118711 +sg25270 +S'Augustin Hirschvogel' +p118712 +sg25273 +S'etching' +p118713 +sg25275 +S'unknown date\n' +p118714 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac2e.jpg' +p118715 +sg25267 +g27 +sa(dp118716 +g25268 +S'Landscape with a Lake and Sailing-Vessels' +p118717 +sg25270 +S'Augustin Hirschvogel' +p118718 +sg25273 +S'etching' +p118719 +sg25275 +S'1545' +p118720 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abc5.jpg' +p118721 +sg25267 +g27 +sa(dp118722 +g25268 +S'The Entombment' +p118723 +sg25270 +S'German 15th Century' +p118724 +sg25273 +S'Schreiber, no. 538' +p118725 +sg25275 +S'\nwoodcut, hand-colored in red lake, green, yellow, tan, and orange' +p118726 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5e3.jpg' +p118727 +sg25267 +g27 +sa(dp118728 +g25268 +S'River Landscape with the Temptation of Christ' +p118729 +sg25270 +S'Augustin Hirschvogel' +p118730 +sg25273 +S'etching [counterproof]' +p118731 +sg25275 +S'1545' +p118732 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abc8.jpg' +p118733 +sg25267 +g27 +sa(dp118734 +g25268 +S'River Landscape with Saint Christopher' +p118735 +sg25270 +S'Augustin Hirschvogel' +p118736 +sg25273 +S'etching' +p118737 +sg25275 +S'unknown date\n' +p118738 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac2f.jpg' +p118739 +sg25267 +g27 +sa(dp118740 +g25268 +S'Landscape with Lake and Town' +p118741 +sg25270 +S'Augustin Hirschvogel' +p118742 +sg25273 +S'etching' +p118743 +sg25275 +S'1545' +p118744 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac30.jpg' +p118745 +sg25267 +g27 +sa(dp118746 +g25268 +S'Landscape with Three Burning Cities: Sodom, Gomorrah and Tyrus' +p118747 +sg25270 +S'Augustin Hirschvogel' +p118748 +sg25273 +S'etching' +p118749 +sg25275 +S'unknown date\n' +p118750 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac31.jpg' +p118751 +sg25267 +g27 +sa(dp118752 +g25268 +S'Landscape with a Town at Left' +p118753 +sg25270 +S'Augustin Hirschvogel' +p118754 +sg25273 +S'etching' +p118755 +sg25275 +S'1549' +p118756 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abca.jpg' +p118757 +sg25267 +g27 +sa(dp118758 +g25268 +S'Landscape with the Conversion of Saint Paul' +p118759 +sg25270 +S'Augustin Hirschvogel' +p118760 +sg25273 +S'etching' +p118761 +sg25275 +S'1545' +p118762 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abbd.jpg' +p118763 +sg25267 +g27 +sa(dp118764 +g25268 +S'Landscape with Castle at Right, Surrounded by Rocks' +p118765 +sg25270 +S'Augustin Hirschvogel' +p118766 +sg25273 +S'etching' +p118767 +sg25275 +S'1546' +p118768 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac2d.jpg' +p118769 +sg25267 +g27 +sa(dp118770 +g25268 +S'Self-Portrait' +p118771 +sg25270 +S'Augustin Hirschvogel' +p118772 +sg25273 +S'etching' +p118773 +sg25275 +S'1548' +p118774 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00065/a000655c.jpg' +p118775 +sg25267 +g27 +sa(dp118776 +g25268 +S'Stags in the Forest' +p118777 +sg25270 +S'Augustin Hirschvogel' +p118778 +sg25273 +S'etching' +p118779 +sg25275 +S'1545' +p118780 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b247.jpg' +p118781 +sg25267 +g27 +sa(dp118782 +g25268 +S'Bear Hunt' +p118783 +sg25270 +S'Augustin Hirschvogel' +p118784 +sg25273 +S'etching' +p118785 +sg25275 +S'1545' +p118786 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b248.jpg' +p118787 +sg25267 +g27 +sa(dp118788 +g25268 +S'Christ Carrying the Cross' +p118789 +sg25270 +S'German 15th Century' +p118790 +sg25273 +S'Schreiber, no. 361' +p118791 +sg25275 +S'\nwoodcut, hand-colored in red lake, green, yellow, tan, and orange' +p118792 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5e2.jpg' +p118793 +sg25267 +g27 +sa(dp118794 +g25268 +S'Gabriel Cortois de Pressigny' +p118795 +sg25270 +S'Jean-Auguste-Dominique Ingres' +p118796 +sg25273 +S'etching' +p118797 +sg25275 +S'1816' +p118798 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004fc2.jpg' +p118799 +sg25267 +g27 +sa(dp118800 +g25268 +S'Park' +p118801 +sg25270 +S'Paul Klee' +p118802 +sg25273 +S'color lithographic facsimile' +p118803 +sg25275 +S'1920' +p118804 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef96.jpg' +p118805 +sg25267 +g27 +sa(dp118806 +g25273 +S'drypoint' +p118807 +sg25267 +g27 +sg25275 +S'unknown date\n' +p118808 +sg25268 +S'Processional - Taos' +p118809 +sg25270 +S'Gene Kloss' +p118810 +sa(dp118811 +g25268 +S'Venus' +p118812 +sg25270 +S'Johann Ladenspelder' +p118813 +sg25273 +S'engraving' +p118814 +sg25275 +S'unknown date\n' +p118815 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000aca4.jpg' +p118816 +sg25267 +g27 +sa(dp118817 +g25268 +S'Landscape with a Fortress and Big Stairway' +p118818 +sg25270 +S'Hans Sebald Lautensack' +p118819 +sg25273 +S'etching' +p118820 +sg25275 +S'1554' +p118821 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acc7.jpg' +p118822 +sg25267 +g27 +sa(dp118823 +g25268 +S'Landscape with a Willow' +p118824 +sg25270 +S'Hans Sebald Lautensack' +p118825 +sg25273 +S'etching' +p118826 +sg25275 +S'1553' +p118827 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acc5.jpg' +p118828 +sg25267 +g27 +sa(dp118829 +g25268 +S'Landscape with a Castle in the Center' +p118830 +sg25270 +S'Hans Sebald Lautensack' +p118831 +sg25273 +S'etching' +p118832 +sg25275 +S'1553' +p118833 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acca.jpg' +p118834 +sg25267 +g27 +sa(dp118835 +g25268 +S'View on a River with a Castle on an Island' +p118836 +sg25270 +S'Hans Sebald Lautensack' +p118837 +sg25273 +S'etching' +p118838 +sg25275 +S'1553' +p118839 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000accb.jpg' +p118840 +sg25267 +g27 +sa(dp118841 +g25268 +S'The Good Samaritan' +p118842 +sg25270 +S'Hans Sebald Lautensack' +p118843 +sg25273 +S'etching' +p118844 +sg25275 +S'unknown date\n' +p118845 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b243.jpg' +p118846 +sg25267 +g27 +sa(dp118847 +g25268 +S'Mountainous Landscape with a Village' +p118848 +sg25270 +S'Hans Sebald Lautensack' +p118849 +sg25273 +S'etching' +p118850 +sg25275 +S'1553' +p118851 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acc9.jpg' +p118852 +sg25267 +g27 +sa(dp118853 +g25268 +S'The Flagellation' +p118854 +sg25270 +S'German 15th Century' +p118855 +sg25273 +S'Schreiber, no. 307' +p118856 +sg25275 +S'\nwoodcut, hand-colored in red lake, green, yellow, tan, and orange' +p118857 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5e1.jpg' +p118858 +sg25267 +g27 +sa(dp118859 +g25268 +S'Landscape with a Castle' +p118860 +sg25270 +S'Hans Sebald Lautensack' +p118861 +sg25273 +S'etching' +p118862 +sg25275 +S'1553' +p118863 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acc4.jpg' +p118864 +sg25267 +g27 +sa(dp118865 +g25268 +S'Leonard von Eckh' +p118866 +sg25270 +S'Hans Sebald Lautensack' +p118867 +sg25273 +S'etching and engraving' +p118868 +sg25275 +S'1553' +p118869 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b240.jpg' +p118870 +sg25267 +g27 +sa(dp118871 +g25268 +S'Felicitas von Eckh (-Freyberg)' +p118872 +sg25270 +S'Hans Sebald Lautensack' +p118873 +sg25273 +S'etching and engraving' +p118874 +sg25275 +S'1553' +p118875 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b241.jpg' +p118876 +sg25267 +g27 +sa(dp118877 +g25268 +S'Lady von Eckh (born Piencsenau)' +p118878 +sg25270 +S'Hans Sebald Lautensack' +p118879 +sg25273 +S'etching and engraving' +p118880 +sg25275 +S'1553' +p118881 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b23e.jpg' +p118882 +sg25267 +g27 +sa(dp118883 +g25268 +S'Mars and Venus (Mercury and Venus?)' +p118884 +sg25270 +S'Master H.L.' +p118885 +sg25273 +S'engraving' +p118886 +sg25275 +S'unknown date\n' +p118887 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acba.jpg' +p118888 +sg25267 +g27 +sa(dp118889 +g25268 +S'The Man with the Torch and a Woman Followed by a Fool' +p118890 +sg25270 +S'Lucas van Leyden' +p118891 +sg25273 +S'engraving' +p118892 +sg25275 +S'c. 1508' +p118893 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce86.jpg' +p118894 +sg25267 +g27 +sa(dp118895 +g25268 +S"Solomon's Idolatry" +p118896 +sg25270 +S'Lucas van Leyden' +p118897 +sg25273 +S'woodcut' +p118898 +sg25275 +S'c. 1512' +p118899 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d013.jpg' +p118900 +sg25267 +g27 +sa(dp118901 +g25268 +S'Saint Matthew' +p118902 +sg25270 +S'Lucas van Leyden' +p118903 +sg25273 +S'engraving' +p118904 +sg25275 +S'1518' +p118905 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce6f.jpg' +p118906 +sg25267 +g27 +sa(dp118907 +g25268 +S'Saint Matthew' +p118908 +sg25270 +S'Lucas van Leyden' +p118909 +sg25273 +S'engraving' +p118910 +sg25275 +S'c. 1510' +p118911 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce68.jpg' +p118912 +sg25267 +g27 +sa(dp118913 +g25268 +S'Saint Christopher Carrying the Infant Christ' +p118914 +sg25270 +S'Lucas van Leyden' +p118915 +sg25273 +S'engraving' +p118916 +sg25275 +S'c. 1521' +p118917 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce70.jpg' +p118918 +sg25267 +g27 +sa(dp118919 +g25268 +S'Christ before Herod' +p118920 +sg25270 +S'German 15th Century' +p118921 +sg25273 +S'Schreiber, no. 273' +p118922 +sg25275 +S'\nwoodcut, hand-colored in red lake, green, yellow, tan, and orange' +p118923 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5e0.jpg' +p118924 +sg25267 +g27 +sa(dp118925 +g25268 +S'Saint Simon' +p118926 +sg25270 +S'Lucas van Leyden' +p118927 +sg25273 +S'engraving' +p118928 +sg25275 +S'c. 1510' +p118929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce67.jpg' +p118930 +sg25267 +g27 +sa(dp118931 +g25268 +S'Abigail and David' +p118932 +sg25270 +S'Lucas van Leyden' +p118933 +sg25273 +S'engraving' +p118934 +sg25275 +S'in or before 1508' +p118935 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cffd.jpg' +p118936 +sg25267 +g27 +sa(dp118937 +g25268 +S'The Raising of Lazarus' +p118938 +sg25270 +S'Lucas van Leyden' +p118939 +sg25273 +S'engraving' +p118940 +sg25275 +S'in or before 1508' +p118941 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cffc.jpg' +p118942 +sg25267 +g27 +sa(dp118943 +g25268 +S'Herod and Herodias' +p118944 +sg25270 +S'Lucas van Leyden' +p118945 +sg25273 +S'woodcut' +p118946 +sg25275 +S'c. 1512' +p118947 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d011.jpg' +p118948 +sg25267 +g27 +sa(dp118949 +g25268 +S'The Crucified Man' +p118950 +sg25270 +S'Melchior Lorch' +p118951 +sg25273 +S'engraving' +p118952 +sg25275 +S'1550' +p118953 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000dc/a000dc47.jpg' +p118954 +sg25267 +g27 +sa(dp118955 +g25268 +S'Switch Engines, Erie Yards, Jersey City, Stone No.3' +p118956 +sg25270 +S'Reginald Marsh' +p118957 +sg25273 +S'lithograph' +p118958 +sg25275 +S'1947' +p118959 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b28.jpg' +p118960 +sg25267 +g27 +sa(dp118961 +g25268 +S"Satyr's Family" +p118962 +sg25270 +S'Master of 1515' +p118963 +sg25273 +S'engraving' +p118964 +sg25275 +S'c. 1510/1515' +p118965 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c748.jpg' +p118966 +sg25267 +g27 +sa(dp118967 +g25268 +S'Solomon Worshipping False Gods' +p118968 +sg25270 +S'Master MZ' +p118969 +sg25273 +S'engraving' +p118970 +sg25275 +S'unknown date\n' +p118971 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3b9.jpg' +p118972 +sg25267 +g27 +sa(dp118973 +g25273 +S'monotype on wove paper' +p118974 +sg25267 +g27 +sg25275 +S'1949' +p118975 +sg25268 +S'The Circus' +p118976 +sg25270 +S'Adja Yunkers' +p118977 +sa(dp118978 +g25268 +S'Studies of the Head of Saskia and Others' +p118979 +sg25270 +S'Rembrandt van Rijn' +p118980 +sg25273 +S'etching' +p118981 +sg25275 +S'1636' +p118982 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b09.jpg' +p118983 +sg25267 +g27 +sa(dp118984 +g25268 +S'Caiaphas Tearing his Clothes' +p118985 +sg25270 +S'German 15th Century' +p118986 +sg25273 +S'Schreiber, no. 244, State a' +p118987 +sg25275 +S'\nwoodcut, hand-colored in red lake, dark green, yellow, gray-blue, and gold' +p118988 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a583.jpg' +p118989 +sg25267 +g27 +sa(dp118990 +g25268 +S'Christ Appearing to the Apostles' +p118991 +sg25270 +S'Rembrandt van Rijn' +p118992 +sg25273 +S'etching' +p118993 +sg25275 +S'1656' +p118994 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005660.jpg' +p118995 +sg25267 +g27 +sa(dp118996 +g25268 +S'Small Gray Landscape: a House and Trees beside a Pool' +p118997 +sg25270 +S'Rembrandt van Rijn' +p118998 +sg25273 +S'etching' +p118999 +sg25275 +S'c. 1640' +p119000 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d344.jpg' +p119001 +sg25267 +g27 +sa(dp119002 +g25268 +S'The Second Oriental Head' +p119003 +sg25270 +S'Artist Information (' +p119004 +sg25273 +S'Dutch, 1606 - 1669' +p119005 +sg25275 +S'(artist)' +p119006 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d439.jpg' +p119007 +sg25267 +g27 +sa(dp119008 +g25268 +S'Bust of an Old Bearded Man, Looking Down, Three Quarters Right' +p119009 +sg25270 +S'Rembrandt van Rijn' +p119010 +sg25273 +S'etching' +p119011 +sg25275 +S'1631' +p119012 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d353.jpg' +p119013 +sg25267 +g27 +sa(dp119014 +g25273 +S'(artist after)' +p119015 +sg25267 +g27 +sg25275 +S'\n' +p119016 +sg25268 +S'Recueil de Griffonis' +p119017 +sg25270 +S'Artist Information (' +p119018 +sa(dp119019 +g25273 +S'(artist after)' +p119020 +sg25267 +g27 +sg25275 +S'\n' +p119021 +sg25268 +S'Frontispiece to "Recueil de Griffonis"' +p119022 +sg25270 +S'Artist Information (' +p119023 +sa(dp119024 +g25273 +S'(artist after)' +p119025 +sg25267 +g27 +sg25275 +S'\n' +p119026 +sg25268 +S'Arco di Druso (Arch of Drusus)' +p119027 +sg25270 +S'Artist Information (' +p119028 +sa(dp119029 +g25273 +S'(artist after)' +p119030 +sg25267 +g27 +sg25275 +S'\n' +p119031 +sg25268 +S'Terme di Tito (Baths of Tito)' +p119032 +sg25270 +S'Artist Information (' +p119033 +sa(dp119034 +g25273 +S'(artist after)' +p119035 +sg25267 +g27 +sg25275 +S'\n' +p119036 +sg25268 +S'Tempio di Pola (Temple of Pola)' +p119037 +sg25270 +S'Artist Information (' +p119038 +sa(dp119039 +g25273 +S'(artist after)' +p119040 +sg25267 +g27 +sg25275 +S'\n' +p119041 +sg25268 +S"Acquedott dell'Acqua Claudia (Aqueduct of Acqua Claudia)" +p119042 +sg25270 +S'Artist Information (' +p119043 +sa(dp119044 +g25268 +S'The Crowning with Thorns' +p119045 +sg25270 +S'German 15th Century' +p119046 +sg25273 +S'Schreiber, no. 318, State a' +p119047 +sg25275 +S'\nwoodcut, hand-colored in red, green, yellow, gray-blue, and gold' +p119048 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a584.jpg' +p119049 +sg25267 +g27 +sa(dp119050 +g25273 +S'(artist after)' +p119051 +sg25267 +g27 +sg25275 +S'\n' +p119052 +sg25268 +S'Vestigie della vecchia Curia Ostilia (Ruins at Curia Ostilia)' +p119053 +sg25270 +S'Artist Information (' +p119054 +sa(dp119055 +g25273 +S'(artist after)' +p119056 +sg25267 +g27 +sg25275 +S'\n' +p119057 +sg25268 +S"Parte dell'Antica Via Appia (Portion of the Via Appia Antica)" +p119058 +sg25270 +S'Artist Information (' +p119059 +sa(dp119060 +g25273 +S'(artist after)' +p119061 +sg25267 +g27 +sg25275 +S'\n' +p119062 +sg25268 +S'River Landscape with a Footbridge' +p119063 +sg25270 +S'Artist Information (' +p119064 +sa(dp119065 +g25273 +S'(artist after)' +p119066 +sg25267 +g27 +sg25275 +S'\n' +p119067 +sg25268 +S"\xc3\x89l\xc3\xa9vation d'un Temple antique que l'on croit estre celui de Jupiter Serapis \xc3\xa0 Pouzzoles pr\xc3\xa8s de Naples (Temple at Pozzuoli)" +p119068 +sg25270 +S'Artist Information (' +p119069 +sa(dp119070 +g25273 +S'etching and roulette' +p119071 +sg25267 +g27 +sg25275 +S'c. 1755' +p119072 +sg25268 +S'Frontispiece to "Varie Vedute del Gentile Mulino" (Views at a Mill)' +p119073 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119074 +sa(dp119075 +g25273 +S'(artist after)' +p119076 +sg25267 +g27 +sg25275 +S'\n' +p119077 +sg25268 +S'View of a Mill with Fishermen on a Bank' +p119078 +sg25270 +S'Artist Information (' +p119079 +sa(dp119080 +g25273 +S'(artist after)' +p119081 +sg25267 +g27 +sg25275 +S'\n' +p119082 +sg25268 +S'View of a Mill with a Bather' +p119083 +sg25270 +S'Artist Information (' +p119084 +sa(dp119085 +g25273 +S'(artist after)' +p119086 +sg25267 +g27 +sg25275 +S'\n' +p119087 +sg25268 +S'Landscape with a Footbridge and a Woman Hanging Linens' +p119088 +sg25270 +S'Artist Information (' +p119089 +sa(dp119090 +g25273 +S'(artist after)' +p119091 +sg25267 +g27 +sg25275 +S'\n' +p119092 +sg25268 +S'Landscape with a Cottage and a Well' +p119093 +sg25270 +S'Artist Information (' +p119094 +sa(dp119095 +g25273 +S'(artist after)' +p119096 +sg25267 +g27 +sg25275 +S'\n' +p119097 +sg25268 +S'Vue prise dans les jardins de Villa Mattei aux environs de Rome en 1761 (Gardens at Villa Mattei)' +p119098 +sg25270 +S'Artist Information (' +p119099 +sa(dp119100 +g25268 +S'Christ Appearing to the Apostles' +p119101 +sg25270 +S'German 15th Century' +p119102 +sg25273 +S'Schreiber, no. 578, State n' +p119103 +sg25275 +S'\nwoodcut, hand-colored in venetian red, green, lavender, and yellow' +p119104 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a611.jpg' +p119105 +sg25267 +g27 +sa(dp119106 +g25273 +S'(artist after)' +p119107 +sg25267 +g27 +sg25275 +S'\n' +p119108 +sg25268 +S"Vue prise dans les jardins de la Ville d'Est \xc3\xa0 Tivoli (Gardens of the Villa d'Este at Tivoli)" +p119109 +sg25270 +S'Artist Information (' +p119110 +sa(dp119111 +g25273 +S'(artist after)' +p119112 +sg25267 +g27 +sg25275 +S'\n' +p119113 +sg25268 +S"Vue de l'entr\xc3\xa9e de Tivoli et des Murs de la Villa d'Est (View of the Entrance at Tivoli and the Walls of the Villa d'Este)" +p119114 +sg25270 +S'Artist Information (' +p119115 +sa(dp119116 +g25273 +S'(artist after)' +p119117 +sg25267 +g27 +sg25275 +S'\n' +p119118 +sg25268 +S"Vue prise dans les jardins de la Ville d'Est \xc3\xa0 Tivoli (Gardens of the Villa d'Este at Tivoli)" +p119119 +sg25270 +S'Artist Information (' +p119120 +sa(dp119121 +g25273 +S'(artist after)' +p119122 +sg25267 +g27 +sg25275 +S'\n' +p119123 +sg25268 +S'Vue prise dans les jardins de Villa Madame aupr\xc3\xa8s de Rome (Gardens at Villa Madama)' +p119124 +sg25270 +S'Artist Information (' +p119125 +sa(dp119126 +g25273 +S'(artist after)' +p119127 +sg25267 +g27 +sg25275 +S'\n' +p119128 +sg25268 +S'Herders and Cattle Fording a River' +p119129 +sg25270 +S'Artist Information (' +p119130 +sa(dp119131 +g25273 +S'(artist after)' +p119132 +sg25267 +g27 +sg25275 +S'\n' +p119133 +sg25268 +S'Farmyard Scene' +p119134 +sg25270 +S'Artist Information (' +p119135 +sa(dp119136 +g25273 +S'(artist after)' +p119137 +sg25267 +g27 +sg25275 +S'\n' +p119138 +sg25268 +S'Farmyard Scene with a Woman Nursing' +p119139 +sg25270 +S'Artist Information (' +p119140 +sa(dp119141 +g25273 +S'(artist after)' +p119142 +sg25267 +g27 +sg25275 +S'\n' +p119143 +sg25268 +S'Vue dessin\xc3\xa9e dans les Jardins de la Villa Borghese \xc3\xa0 Rome (Gardens of the Villa Borghese)' +p119144 +sg25270 +S'Artist Information (' +p119145 +sa(dp119146 +g25273 +S'(artist after)' +p119147 +sg25267 +g27 +sg25275 +S'\n' +p119148 +sg25268 +S"Vue de l'entr\xc3\xa9e du Temple de S\xc3\xa9rapis \xc3\xa0 Puzzuolo pr\xc3\xa9s de Naples (Entrance of the Temple of Serapis at Pozzuoli)" +p119149 +sg25270 +S'Artist Information (' +p119150 +sa(dp119151 +g25273 +S'(artist after)' +p119152 +sg25267 +g27 +sg25275 +S'\n' +p119153 +sg25268 +S'The Little Bear Leader' +p119154 +sg25270 +S'Artist Information (' +p119155 +sa(dp119156 +g25268 +S'Last Judgment' +p119157 +sg25270 +S'German 15th Century' +p119158 +sg25273 +S'Schreiber, no. 621, State m' +p119159 +sg25275 +S'\nwoodcut, hand-colored in Venetian red, green, yellow, and lavender' +p119160 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a614.jpg' +p119161 +sg25267 +g27 +sa(dp119162 +g25273 +S'(artist after)' +p119163 +sg25267 +g27 +sg25275 +S'\n' +p119164 +sg25268 +S"Gardens at the Villa d'Este" +p119165 +sg25270 +S'Artist Information (' +p119166 +sa(dp119167 +g25273 +S'(artist after)' +p119168 +sg25267 +g27 +sg25275 +S'\n' +p119169 +sg25268 +S'Oval Landscape with a Bird Coop' +p119170 +sg25270 +S'Artist Information (' +p119171 +sa(dp119172 +g25273 +S'(artist after)' +p119173 +sg25267 +g27 +sg25275 +S'\n' +p119174 +sg25268 +S'Oval Landscape with a Figure Holding a Fishnet' +p119175 +sg25270 +S'Artist Information (' +p119176 +sa(dp119177 +g25273 +S'(artist after)' +p119178 +sg25267 +g27 +sg25275 +S'\n' +p119179 +sg25268 +S'Oval Landscape with a Woman on a Swing' +p119180 +sg25270 +S'Artist Information (' +p119181 +sa(dp119182 +g25273 +S'(artist after)' +p119183 +sg25267 +g27 +sg25275 +S'\n' +p119184 +sg25268 +S'Oval Riverscape with Figures on the Bank' +p119185 +sg25270 +S'Artist Information (' +p119186 +sa(dp119187 +g25273 +S'(artist after)' +p119188 +sg25267 +g27 +sg25275 +S'\n' +p119189 +sg25268 +S'Peasants Going to Market' +p119190 +sg25270 +S'Artist Information (' +p119191 +sa(dp119192 +g25273 +S'(artist after)' +p119193 +sg25267 +g27 +sg25275 +S'\n' +p119194 +sg25268 +S'Landscape with Cottage and a Dovecote' +p119195 +sg25270 +S'Artist Information (' +p119196 +sa(dp119197 +g25273 +S'(artist after)' +p119198 +sg25267 +g27 +sg25275 +S'\n' +p119199 +sg25268 +S'Landscape with a Cross' +p119200 +sg25270 +S'Artist Information (' +p119201 +sa(dp119202 +g25273 +S'(artist after)' +p119203 +sg25267 +g27 +sg25275 +S'\n' +p119204 +sg25268 +S'Riverscape with a Man and a Woman Fishing' +p119205 +sg25270 +S'Artist Information (' +p119206 +sa(dp119207 +g25273 +S'(artist after)' +p119208 +sg25267 +g27 +sg25275 +S'\n' +p119209 +sg25268 +S'Frontispiece to "Fragments choisis ... des Palais et des \xc3\x89glises de l\'Italie, Premiere Suite, Rome"' +p119210 +sg25270 +S'Artist Information (' +p119211 +sa(dp119212 +g25268 +S'The Holy Ghost' +p119213 +sg25270 +S'German 15th Century' +p119214 +sg25273 +S'Schreiber, no. 752, State m' +p119215 +sg25275 +S'\nwoodcut, hand-colored in yellow, lavender, and rose' +p119216 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a615.jpg' +p119217 +sg25267 +g27 +sa(dp119218 +g25273 +S'(artist after)' +p119219 +sg25267 +g27 +sg25275 +S'\n' +p119220 +sg25268 +S'Saint Mark (from a painting by Domenichino) and the Council of the Gods (from a painting by Raphael)' +p119221 +sg25270 +S'Artist Information (' +p119222 +sa(dp119223 +g25273 +S'(artist after)' +p119224 +sg25267 +g27 +sg25275 +S'\n' +p119225 +sg25268 +S'Gathering of Farmers and Soldiers (from a painting by Rubens)' +p119226 +sg25270 +S'Artist Information (' +p119227 +sa(dp119228 +g25273 +S'(artist after)' +p119229 +sg25267 +g27 +sg25275 +S'\n' +p119230 +sg25268 +S"Putti's Bacchanal (from a painting by Poussin)" +p119231 +sg25270 +S'Artist Information (' +p119232 +sa(dp119233 +g25273 +S'(artist after)' +p119234 +sg25267 +g27 +sg25275 +S'\n' +p119235 +sg25268 +S'The Glory of Saint Agnes (from a painting by' +p119236 +sg25270 +S'Artist Information (' +p119237 +sa(dp119238 +g25273 +S'(artist after)' +p119239 +sg25267 +g27 +sg25275 +S'\n' +p119240 +sg25268 +S'Details from Paintings by Raphael including the Donation of Constantine' +p119241 +sg25270 +S'Artist Information (' +p119242 +sa(dp119243 +g25273 +S'(artist after)' +p119244 +sg25267 +g27 +sg25275 +S'\n' +p119245 +sg25268 +S'Charity (from a painting by Carracci), Saints Cecilia and Valerian Crowned by an Angel (detail from a painting by Domenichino), Transfiguration (detail from a painting by Raphael), and Madonna and Child (from a painting by Carracci)' +p119246 +sg25270 +S'Artist Information (' +p119247 +sa(dp119248 +g25273 +S'(artist after)' +p119249 +sg25267 +g27 +sg25275 +S'\n' +p119250 +sg25268 +S'Supper at Emmaus' +p119251 +sg25270 +S'Artist Information (' +p119252 +sa(dp119253 +g25273 +S'(artist after)' +p119254 +sg25267 +g27 +sg25275 +S'\n' +p119255 +sg25268 +S'Delphic Sibyl and the Prophet Jeremiah from the Sistine Chapel Ceiling' +p119256 +sg25270 +S'Artist Information (' +p119257 +sa(dp119258 +g25273 +S'(artist after)' +p119259 +sg25267 +g27 +sg25275 +S'\n' +p119260 +sg25268 +S'Neptune Calms the Waves' +p119261 +sg25270 +S'Artist Information (' +p119262 +sa(dp119263 +g25273 +S'(artist after)' +p119264 +sg25267 +g27 +sg25275 +S'\n' +p119265 +sg25268 +S'Sacre Conversazione (detail from a painting by Lotto), Venus and Cupid (detail from a painting by Veronese), and Spring (detail of two cocks from a painting by Bassano)' +p119266 +sg25270 +S'Artist Information (' +p119267 +sa(dp119268 +g25268 +S'Susanna' +p119269 +sg25270 +S'Jacopo Tintoretto' +p119270 +sg25273 +S'oil on canvas' +p119271 +sg25275 +S'c. 1575' +p119272 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000889.jpg' +p119273 +sg25267 +g27 +sa(dp119274 +g25268 +S'Christ Child with Three Angels' +p119275 +sg25270 +S'German 15th Century' +p119276 +sg25273 +S'Schreiber, no. 794, State m' +p119277 +sg25275 +S'\nwoodcut, hand-colored in green, venetian red, yellow, and lavender' +p119278 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a613.jpg' +p119279 +sg25267 +g27 +sa(dp119280 +g25273 +S'(artist after)' +p119281 +sg25267 +g27 +sg25275 +S'\n' +p119282 +sg25268 +S"Putti's Bacchanal" +p119283 +sg25270 +S'Artist Information (' +p119284 +sa(dp119285 +g25273 +S'(artist after)' +p119286 +sg25267 +g27 +sg25275 +S'\n' +p119287 +sg25268 +S'Martyrdom of Saint Cecilia (detail from a painting by Domenichino) and Deposition (from a painting by Volterra)' +p119288 +sg25270 +S'Artist Information (' +p119289 +sa(dp119290 +g25273 +S'(artist after)' +p119291 +sg25267 +g27 +sg25275 +S'\n' +p119292 +sg25268 +S'Saint John the Evangelist' +p119293 +sg25270 +S'Artist Information (' +p119294 +sa(dp119295 +g25273 +S'(artist after)' +p119296 +sg25267 +g27 +sg25275 +S'\n' +p119297 +sg25268 +S'Ursa Major' +p119298 +sg25270 +S'Artist Information (' +p119299 +sa(dp119300 +g25273 +S'(artist after)' +p119301 +sg25267 +g27 +sg25275 +S'\n' +p119302 +sg25268 +S'Innocence (Peace?)' +p119303 +sg25270 +S'Artist Information (' +p119304 +sa(dp119305 +g25273 +S'(artist after)' +p119306 +sg25267 +g27 +sg25275 +S'\n' +p119307 +sg25268 +S'Justice' +p119308 +sg25270 +S'Artist Information (' +p119309 +sa(dp119310 +g25273 +S'(artist after)' +p119311 +sg25267 +g27 +sg25275 +S'\n' +p119312 +sg25268 +S'Persian Sibyl and Two Figures from Judith and Holofernes from the Sistine Chapel Ceiling' +p119313 +sg25270 +S'Artist Information (' +p119314 +sa(dp119315 +g25273 +S'(artist after)' +p119316 +sg25267 +g27 +sg25275 +S'\n' +p119317 +sg25268 +S'Massacre of the Innocents (from a painting by Scarsellino), Triumph of Flora (detail from a painting by Poussin), Vessel from the Triumph of Bacchus (from a painting by Pietro da Cortona), and Cupid Awaken from Sleep (from a painting by Albani)' +p119318 +sg25270 +S'Artist Information (' +p119319 +sa(dp119320 +g25273 +S'(artist after)' +p119321 +sg25267 +g27 +sg25275 +S'\n' +p119322 +sg25268 +S'Head of a Man (from a painting by Peruzzi), Cupid (from a painting by Raphael), Hercules and the Nemean Lion (from a painting by Peruzzi), Triumph of Galatea (from a painting by Raphael)' +p119323 +sg25270 +S'Artist Information (' +p119324 +sa(dp119325 +g25273 +S'(artist after)' +p119326 +sg25267 +g27 +sg25275 +S'\n' +p119327 +sg25268 +S'The Triumph of Cupid (from a painting by Parmigianino) and Donation of Rome (from a painting by Raphael)' +p119328 +sg25270 +S'Artist Information (' +p119329 +sa(dp119330 +g25268 +S'The Resurrection of the Dead' +p119331 +sg25270 +S'German 15th Century' +p119332 +sg25273 +S'Schreiber, no. 597, State m' +p119333 +sg25275 +S'\nwoodcut, hand-colored in red lake, blue, green, gray, and gold' +p119334 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a618.jpg' +p119335 +sg25267 +g27 +sa(dp119336 +g25273 +S'(artist after)' +p119337 +sg25267 +g27 +sg25275 +S'\n' +p119338 +sg25268 +S'Strength and Temperance (from a painting by Carracci) and Romulus and Remus Suckling from the Wolf (from a painting by Rubens)' +p119339 +sg25270 +S'Artist Information (' +p119340 +sa(dp119341 +g25273 +S'(artist after)' +p119342 +sg25267 +g27 +sg25275 +S'\n' +p119343 +sg25268 +S'Massacre of the Innocents' +p119344 +sg25270 +S'Artist Information (' +p119345 +sa(dp119346 +g25273 +S'(artist after)' +p119347 +sg25267 +g27 +sg25275 +S'\n' +p119348 +sg25268 +S'Abiah and Rehoboam from the Sistine Chapel Ceiling' +p119349 +sg25270 +S'Artist Information (' +p119350 +sa(dp119351 +g25273 +S'(artist after)' +p119352 +sg25267 +g27 +sg25275 +S'\n' +p119353 +sg25268 +S'Frontispiece to "Fragments choisis ... de l\'Italie, Seconde Suite, Rome"' +p119354 +sg25270 +S'Artist Information (' +p119355 +sa(dp119356 +g25273 +S'(artist after)' +p119357 +sg25267 +g27 +sg25275 +S'\n' +p119358 +sg25268 +S'Aurora' +p119359 +sg25270 +S'Artist Information (' +p119360 +sa(dp119361 +g25273 +S'(artist after)' +p119362 +sg25267 +g27 +sg25275 +S'\n' +p119363 +sg25268 +S"Christ Washing the Apostle's Feet" +p119364 +sg25270 +S'Artist Information (' +p119365 +sa(dp119366 +g25273 +S'(artist after)' +p119367 +sg25267 +g27 +sg25275 +S'\n' +p119368 +sg25268 +S'Woman Playing a Lute (from a painting by Caravaggio), School of Athens (detail from a painting by Raphael), and the Virgin Blessing a Saint (from an unknown painting by Carlo Maratta)' +p119369 +sg25270 +S'Artist Information (' +p119370 +sa(dp119371 +g25273 +S'(artist after)' +p119372 +sg25267 +g27 +sg25275 +S'\n' +p119373 +sg25268 +S'Saint Jerome Receiving the Sacrament' +p119374 +sg25270 +S'Artist Information (' +p119375 +sa(dp119376 +g25273 +S'(artist after)' +p119377 +sg25267 +g27 +sg25275 +S'\n' +p119378 +sg25268 +S'The Deposition' +p119379 +sg25270 +S'Artist Information (' +p119380 +sa(dp119381 +g25273 +S'(artist after)' +p119382 +sg25267 +g27 +sg25275 +S'\n' +p119383 +sg25268 +S'The Charity of Saint Laurence' +p119384 +sg25270 +S'Artist Information (' +p119385 +sa(dp119386 +g25268 +S'Confession' +p119387 +sg25270 +S'German 15th Century' +p119388 +sg25273 +S'Schreiber, no. 1854, State m' +p119389 +sg25275 +S'\nwoodcut, hand-colored in rose, green, venetian red, lavender, and yellow' +p119390 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a617.jpg' +p119391 +sg25267 +g27 +sa(dp119392 +g25273 +S'(artist after)' +p119393 +sg25267 +g27 +sg25275 +S'\n' +p119394 +sg25268 +S'The Prophet Daniel and the Erythraean Sibyl from the Sistine Chapel Ceiling' +p119395 +sg25270 +S'Artist Information (' +p119396 +sa(dp119397 +g25273 +S'(artist after)' +p119398 +sg25267 +g27 +sg25275 +S'\n' +p119399 +sg25268 +S'Expulsion of Eliodoro from the Temple (top and bottom) and Head of a Woman' +p119400 +sg25270 +S'Artist Information (' +p119401 +sa(dp119402 +g25273 +S'(artist after)' +p119403 +sg25267 +g27 +sg25275 +S'\n' +p119404 +sg25268 +S'Prudence (from a painting by Domenichino) and Ignudi (from a painting by Carracci)' +p119405 +sg25270 +S'Artist Information (' +p119406 +sa(dp119407 +g25273 +S'(artist after)' +p119408 +sg25267 +g27 +sg25275 +S'\n' +p119409 +sg25268 +S'Creation of the Heavenly Bodies and a Prophet from the Sistine Chapel Ceiling' +p119410 +sg25270 +S'Artist Information (' +p119411 +sa(dp119412 +g25273 +S'(artist after)' +p119413 +sg25267 +g27 +sg25275 +S'\n' +p119414 +sg25268 +S'Battle of Ponte Milvio (details from a painting by Raphael and Giulio Romano)' +p119415 +sg25270 +S'Artist Information (' +p119416 +sa(dp119417 +g25273 +S'(artist after)' +p119418 +sg25267 +g27 +sg25275 +S'\n' +p119419 +sg25268 +S'Expulsion of Eliodore from the Temple (from a painting by Raphael) and Caryatids (after Volterra)' +p119420 +sg25270 +S'Artist Information (' +p119421 +sa(dp119422 +g25273 +S'(artist after)' +p119423 +sg25267 +g27 +sg25275 +S'\n' +p119424 +sg25268 +S'The Deposition' +p119425 +sg25270 +S'Artist Information (' +p119426 +sa(dp119427 +g25273 +S'(artist after)' +p119428 +sg25267 +g27 +sg25275 +S'\n' +p119429 +sg25268 +S'Aurora (from a painting by Albani) and Strength (from a painting by Domenichino)' +p119430 +sg25270 +S'Artist Information (' +p119431 +sa(dp119432 +g25273 +S'(artist after)' +p119433 +sg25267 +g27 +sg25275 +S'\n' +p119434 +sg25268 +S'Night (from a painting by Albani) and Aurora and Cephalus (from a painting by Carracci)' +p119435 +sg25270 +S'Artist Information (' +p119436 +sa(dp119437 +g25273 +S'(artist after)' +p119438 +sg25267 +g27 +sg25275 +S'\n' +p119439 +sg25268 +S'Boreas Abducting Oreithyia and Ignudo (from a painting by Carracci) and the Death of Turno (from a painting by Pietro da Cortona)' +p119440 +sg25270 +S'Artist Information (' +p119441 +sa(dp119442 +g25268 +S'Christ Measuring the Globe' +p119443 +sg25270 +S'German 15th Century' +p119444 +sg25273 +S'Schreiber, no. 836, State m' +p119445 +sg25275 +S'\nwoodcut, hand-colored in venetian red, lavender, yellow, and green' +p119446 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a612.jpg' +p119447 +sg25267 +g27 +sa(dp119448 +g25273 +S'(artist after)' +p119449 +sg25267 +g27 +sg25275 +S'\n' +p119450 +sg25268 +S'Rape of Europa (from a painting by Carracci) and Battle of Ponte Milvio (from a painting by Raphael and Giulio Romano)' +p119451 +sg25270 +S'Artist Information (' +p119452 +sa(dp119453 +g25273 +S'(artist after)' +p119454 +sg25267 +g27 +sg25275 +S'\n' +p119455 +sg25268 +S'Jupiter and Ganymede and a Satyr (from a painting by Carracci) and Battle of Ponte Milvio (from a painting by Giulio Romano)' +p119456 +sg25270 +S'Artist Information (' +p119457 +sa(dp119458 +g25273 +S'(artist after)' +p119459 +sg25267 +g27 +sg25275 +S'\n' +p119460 +sg25268 +S'Pan Subdued by Cupid (from a painting by Carracci) and Triumph of Bacchus (from a painting by Pietro da Cortona)' +p119461 +sg25270 +S'Artist Information (' +p119462 +sa(dp119463 +g25273 +S'(artist after)' +p119464 +sg25267 +g27 +sg25275 +S'\n' +p119465 +sg25268 +S'Jupiter and Cupid and Two Heads of Men with Turbans' +p119466 +sg25270 +S'Artist Information (' +p119467 +sa(dp119468 +g25273 +S'(artist after)' +p119469 +sg25267 +g27 +sg25275 +S'\n' +p119470 +sg25268 +S'Venus and Cupid, Nude on a Cloud, Cupid, and Mercury' +p119471 +sg25270 +S'Artist Information (' +p119472 +sa(dp119473 +g25273 +S'(artist after)' +p119474 +sg25267 +g27 +sg25275 +S'\n' +p119475 +sg25268 +S"Fragments choisis ... des Eglises de l'Italie, Troisieme Suite, Bologne" +p119476 +sg25270 +S'Artist Information (' +p119477 +sa(dp119478 +g25273 +S'(artist after)' +p119479 +sg25267 +g27 +sg25275 +S'\n' +p119480 +sg25268 +S'Birth of Alexander' +p119481 +sg25270 +S'Artist Information (' +p119482 +sa(dp119483 +g25273 +S'(artist after)' +p119484 +sg25267 +g27 +sg25275 +S'\n' +p119485 +sg25268 +S'Investiture of Saint William' +p119486 +sg25270 +S'Artist Information (' +p119487 +sa(dp119488 +g25273 +S'(artist after)' +p119489 +sg25267 +g27 +sg25275 +S'\n' +p119490 +sg25268 +S'Offering of the First Christians' +p119491 +sg25270 +S'Artist Information (' +p119492 +sa(dp119493 +g25273 +S'(artist after)' +p119494 +sg25267 +g27 +sg25275 +S'\n' +p119495 +sg25268 +S'Hercules and Jupiter' +p119496 +sg25270 +S'Artist Information (' +p119497 +sa(dp119498 +g25268 +S'Saint Peter as Founder of the Church' +p119499 +sg25270 +S'German 15th Century' +p119500 +sg25273 +S'Schreiber, no. 1654, State m' +p119501 +sg25275 +S'\nwoodcut, hand-colored in venetian red, green, yellow, lavender, and rose' +p119502 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a616.jpg' +p119503 +sg25267 +g27 +sa(dp119504 +g25273 +S'(artist after)' +p119505 +sg25267 +g27 +sg25275 +S'\n' +p119506 +sg25268 +S'The Transfiguration' +p119507 +sg25270 +S'Artist Information (' +p119508 +sa(dp119509 +g25273 +S'(artist after)' +p119510 +sg25267 +g27 +sg25275 +S'\n' +p119511 +sg25268 +S'Jesus between the Virgin and Saint Joseph Offering His Passion to God' +p119512 +sg25270 +S'Artist Information (' +p119513 +sa(dp119514 +g25273 +S'(artist after)' +p119515 +sg25267 +g27 +sg25275 +S'\n' +p119516 +sg25268 +S'Apostles Peter and Paul' +p119517 +sg25270 +S'Artist Information (' +p119518 +sa(dp119519 +g25273 +S'(artist after)' +p119520 +sg25267 +g27 +sg25275 +S'\n' +p119521 +sg25268 +S'Cain and Abel' +p119522 +sg25270 +S'Artist Information (' +p119523 +sa(dp119524 +g25273 +S'(artist after)' +p119525 +sg25267 +g27 +sg25275 +S'\n' +p119526 +sg25268 +S'Jacob Wrestling with the Angel' +p119527 +sg25270 +S'Artist Information (' +p119528 +sa(dp119529 +g25273 +S'etching and aquatint' +p119530 +sg25267 +g27 +sg25275 +S'c. 1770' +p119531 +sg25268 +S'Benjamin Franklin Crowned by Liberty (Le Docteur Francklin couronn\xc3\xa9 par la Libert\xc3\xa9)' +p119532 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119533 +sa(dp119534 +g25273 +S'(artist after)' +p119535 +sg25267 +g27 +sg25275 +S'\n' +p119536 +sg25268 +S'The Reading Lesson' +p119537 +sg25270 +S'Artist Information (' +p119538 +sa(dp119539 +g25273 +S'(artist after)' +p119540 +sg25267 +g27 +sg25275 +S'\n' +p119541 +sg25268 +S'Putti in a Circle' +p119542 +sg25270 +S'Artist Information (' +p119543 +sa(dp119544 +g25273 +S'(artist after)' +p119545 +sg25267 +g27 +sg25275 +S'\n' +p119546 +sg25268 +S'Putti' +p119547 +sg25270 +S'Artist Information (' +p119548 +sa(dp119549 +g25273 +S'etching and aquatint' +p119550 +sg25267 +g27 +sg25275 +S'c. 1765' +p119551 +sg25268 +S'Flight of Victory' +p119552 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119553 +sa(dp119554 +g25268 +S'The Descent of the Holy Ghost' +p119555 +sg25270 +S'German 15th Century' +p119556 +sg25273 +S'Schreiber, no. 587, State a' +p119557 +sg25275 +S'\nwoodcut, hand-colored in tan, brown, orange-red, green, rose, red lake, blue, and gold' +p119558 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a53a.jpg' +p119559 +sg25267 +g27 +sa(dp119560 +g25273 +S'etching and aquatint' +p119561 +sg25267 +g27 +sg25275 +S'c. 1765' +p119562 +sg25268 +S'The Abduction of Ganymede' +p119563 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119564 +sa(dp119565 +g25273 +S'etching' +p119566 +sg25267 +g27 +sg25275 +S'c. 1765' +p119567 +sg25268 +S'Peasant and His Mule' +p119568 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119569 +sa(dp119570 +g25273 +S'(artist after)' +p119571 +sg25267 +g27 +sg25275 +S'\n' +p119572 +sg25268 +S'Musician with Performing Dogs' +p119573 +sg25270 +S'Artist Information (' +p119574 +sa(dp119575 +g25273 +S'(artist after)' +p119576 +sg25267 +g27 +sg25275 +S'\n' +p119577 +sg25268 +S'Carriage in a Shady Lane' +p119578 +sg25270 +S'Artist Information (' +p119579 +sa(dp119580 +g25273 +S'(artist after)' +p119581 +sg25267 +g27 +sg25275 +S'\n' +p119582 +sg25268 +S'Young Girl Warming Her Hands' +p119583 +sg25270 +S'Artist Information (' +p119584 +sa(dp119585 +g25273 +S'(artist after)' +p119586 +sg25267 +g27 +sg25275 +S'\n' +p119587 +sg25268 +S'Beggars' +p119588 +sg25270 +S'Artist Information (' +p119589 +sa(dp119590 +g25273 +S'(artist after)' +p119591 +sg25267 +g27 +sg25275 +S'\n' +p119592 +sg25268 +S'Polichinelle Asleep' +p119593 +sg25270 +S'Artist Information (' +p119594 +sa(dp119595 +g25273 +S'(artist after)' +p119596 +sg25267 +g27 +sg25275 +S'\n' +p119597 +sg25268 +S'Ruins at Night' +p119598 +sg25270 +S'Artist Information (' +p119599 +sa(dp119600 +g25273 +S'etching and aquatint' +p119601 +sg25267 +g27 +sg25275 +S'1775' +p119602 +sg25268 +S'Polish Archer' +p119603 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119604 +sa(dp119605 +g25273 +S'(artist after)' +p119606 +sg25267 +g27 +sg25275 +S'\n' +p119607 +sg25268 +S'Polish Horseman' +p119608 +sg25270 +S'Artist Information (' +p119609 +sa(dp119610 +g25268 +S'The Descent of the Holy Ghost' +p119611 +sg25270 +S'German 15th Century' +p119612 +sg25273 +S'Schreiber, no. 594' +p119613 +sg25275 +S'\nwoodcut, hand-colored in red lake, blue, green, gray, and gold' +p119614 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5e9.jpg' +p119615 +sg25267 +g27 +sa(dp119616 +g25273 +S'(artist after)' +p119617 +sg25267 +g27 +sg25275 +S'\n' +p119618 +sg25268 +S'Duc Napolitain' +p119619 +sg25270 +S'Artist Information (' +p119620 +sa(dp119621 +g25273 +S'(artist after)' +p119622 +sg25267 +g27 +sg25275 +S'\n' +p119623 +sg25268 +S'Ma\xc3\xaetre de chapelle Napolitain se promenat au Mole' +p119624 +sg25270 +S'Artist Information (' +p119625 +sa(dp119626 +g25273 +S'(artist after)' +p119627 +sg25267 +g27 +sg25275 +S'\n' +p119628 +sg25268 +S'Prince Napolitain prennant le frais sur le bord de la mer' +p119629 +sg25270 +S'Artist Information (' +p119630 +sa(dp119631 +g25273 +S'(artist after)' +p119632 +sg25267 +g27 +sg25275 +S'\n' +p119633 +sg25268 +S"L'un des plus fameux pailletes de Naples" +p119634 +sg25270 +S'Artist Information (' +p119635 +sa(dp119636 +g25273 +S'(artist after)' +p119637 +sg25267 +g27 +sg25275 +S'\n' +p119638 +sg25268 +S"Laquais Napolitain portant l'\xc3\xa9p\xc3\xa9e de son ma\xc3\xaetre \xc3\xa0 la promenade" +p119639 +sg25270 +S'Artist Information (' +p119640 +sa(dp119641 +g25273 +S'(artist after)' +p119642 +sg25267 +g27 +sg25275 +S'\n' +p119643 +sg25268 +S'Cavalier Napolitain voulant se donner un tour Fran\xc3\xa7ois' +p119644 +sg25270 +S'Artist Information (' +p119645 +sa(dp119646 +g25273 +S'(artist after)' +p119647 +sg25267 +g27 +sg25275 +S'\n' +p119648 +sg25268 +S'Bearded Man Facing Front' +p119649 +sg25270 +S'Artist Information (' +p119650 +sa(dp119651 +g25273 +S'(artist after)' +p119652 +sg25267 +g27 +sg25275 +S'\n' +p119653 +sg25268 +S'Bearded Man in a Turban' +p119654 +sg25270 +S'Artist Information (' +p119655 +sa(dp119656 +g25273 +S'(artist after)' +p119657 +sg25267 +g27 +sg25275 +S'\n' +p119658 +sg25268 +S'Bearded Man with His Eyes Shielded' +p119659 +sg25270 +S'Artist Information (' +p119660 +sa(dp119661 +g25273 +S'(artist after)' +p119662 +sg25267 +g27 +sg25275 +S'\n' +p119663 +sg25268 +S'Bearded Man in a Wide Brimmed Hat' +p119664 +sg25270 +S'Artist Information (' +p119665 +sa(dp119666 +g25268 +S'The Last Judgment with the Apostles' +p119667 +sg25270 +S'German 15th Century' +p119668 +sg25273 +S'Schreiber, no. 600, State a' +p119669 +sg25275 +S'\nwoodcut, hand-colored in red lake, ochre, green, brown, tan, and black' +p119670 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a641.jpg' +p119671 +sg25267 +g27 +sa(dp119672 +g25273 +S'(artist after)' +p119673 +sg25267 +g27 +sg25275 +S'\n' +p119674 +sg25268 +S'Bearded Man with a Skull Cap' +p119675 +sg25270 +S'Artist Information (' +p119676 +sa(dp119677 +g25273 +S'(artist after)' +p119678 +sg25267 +g27 +sg25275 +S'\n' +p119679 +sg25268 +S'Bearded Man in Profile to the Right' +p119680 +sg25270 +S'Artist Information (' +p119681 +sa(dp119682 +g25273 +S'(artist after)' +p119683 +sg25267 +g27 +sg25275 +S'\n' +p119684 +sg25268 +S'Il primo pensiere del quadro ...' +p119685 +sg25270 +S'Artist Information (' +p119686 +sa(dp119687 +g25273 +S'(artist after)' +p119688 +sg25267 +g27 +sg25275 +S'\n' +p119689 +sg25268 +S'Portico, Looking Out to a Pyramid' +p119690 +sg25270 +S'Artist Information (' +p119691 +sa(dp119692 +g25273 +S'(artist after)' +p119693 +sg25267 +g27 +sg25275 +S'\n' +p119694 +sg25268 +S'Statue of Marcus Aurelius in a Ruined Basilica' +p119695 +sg25270 +S'Artist Information (' +p119696 +sa(dp119697 +g25273 +S'(artist after)' +p119698 +sg25267 +g27 +sg25275 +S'\n' +p119699 +sg25268 +S"The Pope's Stables" +p119700 +sg25270 +S'Artist Information (' +p119701 +sa(dp119702 +g25273 +S'(artist after)' +p119703 +sg25267 +g27 +sg25275 +S'\n' +p119704 +sg25268 +S'Gardens of a Roman Villa' +p119705 +sg25270 +S'Artist Information (' +p119706 +sa(dp119707 +g25273 +S'(artist after)' +p119708 +sg25267 +g27 +sg25275 +S'\n' +p119709 +sg25268 +S"Gardens at Villa d'Este (Villa Caprarola?)" +p119710 +sg25270 +S'Artist Information (' +p119711 +sa(dp119712 +g25273 +S'(artist after)' +p119713 +sg25267 +g27 +sg25275 +S'\n' +p119714 +sg25268 +S'Garden with a Classical Fountain' +p119715 +sg25270 +S'Artist Information (' +p119716 +sa(dp119717 +g25273 +S'(artist after)' +p119718 +sg25267 +g27 +sg25275 +S'\n' +p119719 +sg25268 +S'The Stubborn Mule' +p119720 +sg25270 +S'Artist Information (' +p119721 +sa(dp119722 +g25268 +S'Last Judgment' +p119723 +sg25270 +S'German 15th Century' +p119724 +sg25273 +S'Schreiber, no. 614' +p119725 +sg25275 +S'\nwoodcut, hand-colored in blue-green, orange, yellow, rose, blue, and silver' +p119726 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a589.jpg' +p119727 +sg25267 +g27 +sa(dp119728 +g25273 +S'(artist after)' +p119729 +sg25267 +g27 +sg25275 +S'\n' +p119730 +sg25268 +S"Vue de l'Arc de Constantin (View of the Arch of Constantine)" +p119731 +sg25270 +S'Artist Information (' +p119732 +sa(dp119733 +g25273 +S'(artist after)' +p119734 +sg25267 +g27 +sg25275 +S'\n' +p119735 +sg25268 +S'The Departure from the Stable' +p119736 +sg25270 +S'Artist Information (' +p119737 +sa(dp119738 +g25273 +S'(artist after)' +p119739 +sg25267 +g27 +sg25275 +S'\n' +p119740 +sg25268 +S'Antique Sculpture of a Woman; Antique Fountain of an Egyptian King; Egyptian Sculpture; Antique Sculpture of Victory Holding a Sash; Antique Pillar (pl. 7)' +p119741 +sg25270 +S'Artist Information (' +p119742 +sa(dp119743 +g25273 +S'etching' +p119744 +sg25267 +g27 +sg25275 +S'1763' +p119745 +sg25268 +S"Pyramid; Antique Sculpture of Two Female Heads; A Fountain with Jupiter; A Sculpture of a Satyr Removing a Splinter from a Young Boy's Foot (pl. 8)" +p119746 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119747 +sa(dp119748 +g25273 +S'(artist after)' +p119749 +sg25267 +g27 +sg25275 +S'\n' +p119750 +sg25268 +S'Antique Sculpture of an Angel on a Globe; Antique Bas Relief of a Woman Making a Sacrifice; Antique Sculpture of a Man Carrying a Sacrificial Goat; Antique Vase with Two Egyptian Figures (pl. 9)' +p119751 +sg25270 +S'Artist Information (' +p119752 +sa(dp119753 +g25273 +S'etching' +p119754 +sg25267 +g27 +sg25275 +S'1763' +p119755 +sg25268 +S'Sarcophagus with Scrollwork and Griffins; Altar with Storks; Antique Egyptian Sculpture; Sarcophagus with Lions (pl. 10)' +p119756 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119757 +sa(dp119758 +g25273 +S'etching' +p119759 +sg25267 +g27 +sg25275 +S'1763' +p119760 +sg25268 +S'Sculptures, Vases, and a Table from the Antique (pl. 11)' +p119761 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119762 +sa(dp119763 +g25273 +S'(artist after)' +p119764 +sg25267 +g27 +sg25275 +S'\n' +p119765 +sg25268 +S'Stone Fragments, Vase, and a Fountain from the Antique (pl. 12)' +p119766 +sg25270 +S'Artist Information (' +p119767 +sa(dp119768 +g25273 +S'etching' +p119769 +sg25267 +g27 +sg25275 +S'1763' +p119770 +sg25268 +S'Vases, Sculpture, a Bas Relief and an Altar from the Antique (pl. 13)' +p119771 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119772 +sa(dp119773 +g25273 +S'(artist after)' +p119774 +sg25267 +g27 +sg25275 +S'\n' +p119775 +sg25268 +S'Sculptures, Fragments, and Vases from the Antique (pl. 14)' +p119776 +sg25270 +S'Artist Information (' +p119777 +sa(dp119778 +g25268 +S'The Flagellation in the Presence of Mary' +p119779 +sg25270 +S'German 15th Century' +p119780 +sg25273 +S'Schreiber, no. 649' +p119781 +sg25275 +S'\nwoodcut, hand-colored in red lake, rose, yellow-orange, green, and tan' +p119782 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a539.jpg' +p119783 +sg25267 +g27 +sa(dp119784 +g25273 +S'etching' +p119785 +sg25267 +g27 +sg25275 +S'1763' +p119786 +sg25268 +S'Sculpture, Fragments, Vase, Incense Burner, and Bas Relief from the Antique (pl. 15)' +p119787 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119788 +sa(dp119789 +g25273 +S'(artist after)' +p119790 +sg25267 +g27 +sg25275 +S'\n' +p119791 +sg25268 +S'Frieze, Funerary Monument, Vase, and Three Grotesques from the Antique (pl. 17)' +p119792 +sg25270 +S'Artist Information (' +p119793 +sa(dp119794 +g25273 +S'(artist after)' +p119795 +sg25267 +g27 +sg25275 +S'\n' +p119796 +sg25268 +S'Vase, Bas Relief, Frieze, Amphora, and an Altar from the Antique (pl. 18)' +p119797 +sg25270 +S'Artist Information (' +p119798 +sa(dp119799 +g25273 +S'etching and aquatint' +p119800 +sg25267 +g27 +sg25275 +S'1773' +p119801 +sg25268 +S'Bacchante on a Centaur' +p119802 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119803 +sa(dp119804 +g25273 +S'etching and aquatint' +p119805 +sg25267 +g27 +sg25275 +S'1773' +p119806 +sg25268 +S'Centauress Carrying a Young Man' +p119807 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119808 +sa(dp119809 +g25273 +S'etching and aquatint' +p119810 +sg25267 +g27 +sg25275 +S'1773' +p119811 +sg25268 +S'Music Lesson' +p119812 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119813 +sa(dp119814 +g25273 +S'etching and aquatint' +p119815 +sg25267 +g27 +sg25275 +S'1773' +p119816 +sg25268 +S'Reclining Bacchante Embracing a Satyr' +p119817 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119818 +sa(dp119819 +g25273 +S'(artist after)' +p119820 +sg25267 +g27 +sg25275 +S'\n' +p119821 +sg25268 +S'Male and Female Mythical Figures' +p119822 +sg25270 +S'Artist Information (' +p119823 +sa(dp119824 +g25273 +S'etching and aquatint' +p119825 +sg25267 +g27 +sg25275 +S'1773' +p119826 +sg25268 +S'Uranus and Polymnia' +p119827 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119828 +sa(dp119829 +g25273 +S'etching and aquatint' +p119830 +sg25267 +g27 +sg25275 +S'1773' +p119831 +sg25268 +S"Female Nude and a Tiger with a Dragon's Tail" +p119832 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119833 +sa(dp119834 +g25268 +S'The Preparation for the Crucifixion' +p119835 +sg25270 +S'German 15th Century' +p119836 +sg25273 +S'Schreiber, no. 661' +p119837 +sg25275 +S'\nwoodcut in brown, hand-colored in red lake, green, brown, and yellow' +p119838 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a538.jpg' +p119839 +sg25267 +g27 +sa(dp119840 +g25273 +S'etching and aquatint' +p119841 +sg25267 +g27 +sg25275 +S'1773' +p119842 +sg25268 +S'Banquet Scene' +p119843 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119844 +sa(dp119845 +g25273 +S'etching and aquatint' +p119846 +sg25267 +g27 +sg25275 +S'1773' +p119847 +sg25268 +S'Man and Woman Offering Grapes to a Baby' +p119848 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119849 +sa(dp119850 +g25273 +S'etching and aquatint' +p119851 +sg25267 +g27 +sg25275 +S'1773' +p119852 +sg25268 +S'Robed Woman' +p119853 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119854 +sa(dp119855 +g25273 +S'etching and aquatint' +p119856 +sg25267 +g27 +sg25275 +S'1773' +p119857 +sg25268 +S'Woman with a Basket on Her Head' +p119858 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119859 +sa(dp119860 +g25273 +S'etching and aquatint' +p119861 +sg25267 +g27 +sg25275 +S'1773' +p119862 +sg25268 +S'Chiron Teaching Achilles' +p119863 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119864 +sa(dp119865 +g25273 +S'(artist after)' +p119866 +sg25267 +g27 +sg25275 +S'\n' +p119867 +sg25268 +S'Cupid Seller' +p119868 +sg25270 +S'Artist Information (' +p119869 +sa(dp119870 +g25273 +S'etching' +p119871 +sg25267 +g27 +sg25275 +S'1763' +p119872 +sg25268 +S'Bas Relief, Sculpture, and a Capital from the Antique (pl. 1)' +p119873 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119874 +sa(dp119875 +g25273 +S'etching' +p119876 +sg25267 +g27 +sg25275 +S'1763' +p119877 +sg25268 +S'Bas Relief, Vases, Sculpture, and Sculptures from the Antique (pl. 2)' +p119878 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119879 +sa(dp119880 +g25273 +S'(artist after)' +p119881 +sg25267 +g27 +sg25275 +S'\n' +p119882 +sg25268 +S'Bas Relief with a Procession of Women Carrying an Altar, Pedestal, and a Sculpture from the Antique (pl. 3)' +p119883 +sg25270 +S'Artist Information (' +p119884 +sa(dp119885 +g25273 +S'(artist after)' +p119886 +sg25267 +g27 +sg25275 +S'\n' +p119887 +sg25268 +S'Sculpture, Bas Relief, Basin, and an Egyptian Vase from the Antique (pl. 4)' +p119888 +sg25270 +S'Artist Information (' +p119889 +sa(dp119890 +g25268 +S'The Death of the Virgin' +p119891 +sg25270 +S'Artist Information (' +p119892 +sg25273 +S'(artist)' +p119893 +sg25275 +S'\n' +p119894 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a645.jpg' +p119895 +sg25267 +g27 +sa(dp119896 +g25273 +S'etching' +p119897 +sg25267 +g27 +sg25275 +S'1763' +p119898 +sg25268 +S'Vases, Lamp, Hair Pin, and a Sculpted Dwarf from the Antique (pl. 5)' +p119899 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p119900 +sa(dp119901 +g25273 +S'(artist after)' +p119902 +sg25267 +g27 +sg25275 +S'\n' +p119903 +sg25268 +S'Vase on a Pedestal, Bas Relief, Three Vases on an Altar, and a Fountain from the Antique (pl. 6)' +p119904 +sg25270 +S'Artist Information (' +p119905 +sa(dp119906 +g25273 +S'(artist after)' +p119907 +sg25267 +g27 +sg25275 +S'\n' +p119908 +sg25268 +S'Massacre of the Innocents' +p119909 +sg25270 +S'Artist Information (' +p119910 +sa(dp119911 +g25273 +S'(artist after)' +p119912 +sg25267 +g27 +sg25275 +S'\n' +p119913 +sg25268 +S'The Madonna of San Margherita' +p119914 +sg25270 +S'Artist Information (' +p119915 +sa(dp119916 +g25273 +S'(artist after)' +p119917 +sg25267 +g27 +sg25275 +S'\n' +p119918 +sg25268 +S'Three Young Women Turned Toward the Three Graces' +p119919 +sg25270 +S'Artist Information (' +p119920 +sa(dp119921 +g25273 +S'(artist after)' +p119922 +sg25267 +g27 +sg25275 +S'\n' +p119923 +sg25268 +S'Virgin and Child Adored by a Two Kneeling Saints' +p119924 +sg25270 +S'Artist Information (' +p119925 +sa(dp119926 +g25273 +S'(artist after)' +p119927 +sg25267 +g27 +sg25275 +S'\n' +p119928 +sg25268 +S'The Destruction of Encelades (from a painting by Ludovico Carracci) and Hercules and Cacus (from a painting by Annibale Carracci)' +p119929 +sg25270 +S'Artist Information (' +p119930 +sa(dp119931 +g25273 +S'(artist after)' +p119932 +sg25267 +g27 +sg25275 +S'\n' +p119933 +sg25268 +S'Two Caryatids' +p119934 +sg25270 +S'Artist Information (' +p119935 +sa(dp119936 +g25273 +S'(artist after)' +p119937 +sg25267 +g27 +sg25275 +S'\n' +p119938 +sg25268 +S"Homer and a Mask in the Form of a Lion's Head" +p119939 +sg25270 +S'Artist Information (' +p119940 +sa(dp119941 +g25273 +S'(artist after)' +p119942 +sg25267 +g27 +sg25275 +S'\n' +p119943 +sg25268 +S'The Assumption' +p119944 +sg25270 +S'Artist Information (' +p119945 +sa(dp119946 +g25268 +S'The Death of the Virgin' +p119947 +sg25270 +S'German 15th Century' +p119948 +sg25273 +S'Overall: 9.7 x 8.1 cm (3 13/16 x 3 3/16 in.)\r\noverall (external frame dimensions): 39.4 x 31.8 cm (15 1/2 x 12 1/2 in.)' +p119949 +sg25275 +S'\nwoodcut, hand-colored in carmine, brown, green, and ochre' +p119950 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005628.jpg' +p119951 +sg25267 +g27 +sa(dp119952 +g25273 +S'(artist after)' +p119953 +sg25267 +g27 +sg25275 +S'\n' +p119954 +sg25268 +S'Two Giants' +p119955 +sg25270 +S'Artist Information (' +p119956 +sa(dp119957 +g25273 +S'(artist after)' +p119958 +sg25267 +g27 +sg25275 +S'\n' +p119959 +sg25268 +S'Hercules and Antaeus' +p119960 +sg25270 +S'Artist Information (' +p119961 +sa(dp119962 +g25273 +S'(artist after)' +p119963 +sg25267 +g27 +sg25275 +S'\n' +p119964 +sg25268 +S'Venus with a Torch Embracing Cupid' +p119965 +sg25270 +S'Artist Information (' +p119966 +sa(dp119967 +g25273 +S'(artist after)' +p119968 +sg25267 +g27 +sg25275 +S'\n' +p119969 +sg25268 +S'Cupid and Psyche' +p119970 +sg25270 +S'Artist Information (' +p119971 +sa(dp119972 +g25273 +S'(artist after)' +p119973 +sg25267 +g27 +sg25275 +S'\n' +p119974 +sg25268 +S'Two Prophets' +p119975 +sg25270 +S'Artist Information (' +p119976 +sa(dp119977 +g25273 +S'(artist after)' +p119978 +sg25267 +g27 +sg25275 +S'\n' +p119979 +sg25268 +S'Saint Benedict Building the Monastery on Mount Cassino' +p119980 +sg25270 +S'Artist Information (' +p119981 +sa(dp119982 +g25273 +S'(artist after)' +p119983 +sg25267 +g27 +sg25275 +S'\n' +p119984 +sg25268 +S'Saint Philip Benizzi Being Carried Heavenward by Angels' +p119985 +sg25270 +S'Artist Information (' +p119986 +sa(dp119987 +g25273 +S'(artist after)' +p119988 +sg25267 +g27 +sg25275 +S'\n' +p119989 +sg25268 +S'Caryatids' +p119990 +sg25270 +S'Artist Information (' +p119991 +sa(dp119992 +g25273 +S'(artist after)' +p119993 +sg25267 +g27 +sg25275 +S'\n' +p119994 +sg25268 +S'The Trojans Fighting Harpies' +p119995 +sg25270 +S'Artist Information (' +p119996 +sa(dp119997 +g25273 +S'(artist after)' +p119998 +sg25267 +g27 +sg25275 +S'\n' +p119999 +sg25268 +S'Caryatids' +p120000 +sg25270 +S'Artist Information (' +p120001 +sa(dp120002 +g25268 +S'The Head of Christ' +p120003 +sg25270 +S'German 15th Century' +p120004 +sg25273 +S'Schreiber, no. 754, State a' +p120005 +sg25275 +S'\nwoodcut' +p120006 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a649.jpg' +p120007 +sg25267 +g27 +sa(dp120008 +g25273 +S'(artist after)' +p120009 +sg25267 +g27 +sg25275 +S'\n' +p120010 +sg25268 +S'The Son Resuscitated from the Dead and the Blindman at the Entombment of Saint Philip' +p120011 +sg25270 +S'Artist Information (' +p120012 +sa(dp120013 +g25273 +S'(artist after)' +p120014 +sg25267 +g27 +sg25275 +S'\n' +p120015 +sg25268 +S'Two Caryatids' +p120016 +sg25270 +S'Artist Information (' +p120017 +sa(dp120018 +g25273 +S'(artist after)' +p120019 +sg25267 +g27 +sg25275 +S'\n' +p120020 +sg25268 +S'The Ecstasy of Saint Madeleine' +p120021 +sg25270 +S'Artist Information (' +p120022 +sa(dp120023 +g25273 +S'(artist after)' +p120024 +sg25267 +g27 +sg25275 +S'\n' +p120025 +sg25268 +S'Two Statues of Warriors with Harpies' +p120026 +sg25270 +S'Artist Information (' +p120027 +sa(dp120028 +g25273 +S'(artist after)' +p120029 +sg25267 +g27 +sg25275 +S'\n' +p120030 +sg25268 +S'The Birth of the Virgin' +p120031 +sg25270 +S'Artist Information (' +p120032 +sa(dp120033 +g25273 +S'(artist after)' +p120034 +sg25267 +g27 +sg25275 +S'\n' +p120035 +sg25268 +S'The Preaching of Saint John the Baptist' +p120036 +sg25270 +S'Artist Information (' +p120037 +sa(dp120038 +g25273 +S'(artist after)' +p120039 +sg25267 +g27 +sg25275 +S'\n' +p120040 +sg25268 +S'Fragments des Peintures et des Tableaux ... de Italie ... Naples' +p120041 +sg25270 +S'Artist Information (' +p120042 +sa(dp120043 +g25273 +S'(artist after)' +p120044 +sg25267 +g27 +sg25275 +S'\n' +p120045 +sg25268 +S'Christ Driving the Money Changers from the Temple' +p120046 +sg25270 +S'Artist Information (' +p120047 +sa(dp120048 +g25273 +S'(artist after)' +p120049 +sg25267 +g27 +sg25275 +S'\n' +p120050 +sg25268 +S'Madonna of the Rosary' +p120051 +sg25270 +S'Artist Information (' +p120052 +sa(dp120053 +g25273 +S'(artist after)' +p120054 +sg25267 +g27 +sg25275 +S'\n' +p120055 +sg25268 +S'Faith' +p120056 +sg25270 +S'Artist Information (' +p120057 +sa(dp120058 +g25268 +S'The Head of Christ' +p120059 +sg25270 +S'German 15th Century' +p120060 +sg25273 +S'Schreiber, Vol. IX, no. 757, State m' +p120061 +sg25275 +S'\nwoodcut' +p120062 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a646.jpg' +p120063 +sg25267 +g27 +sa(dp120064 +g25273 +S'(artist after)' +p120065 +sg25267 +g27 +sg25275 +S'\n' +p120066 +sg25268 +S'Abundance (from a painting by Solimena) and Prophets (after Ribera)' +p120067 +sg25270 +S'Artist Information (' +p120068 +sa(dp120069 +g25273 +S'(artist after)' +p120070 +sg25267 +g27 +sg25275 +S'\n' +p120071 +sg25268 +S'Gifts of the Holy Spirit? (after a painting by Solimena) and Two Prophets (after Ribera)' +p120072 +sg25270 +S'Artist Information (' +p120073 +sa(dp120074 +g25273 +S'(artist after)' +p120075 +sg25267 +g27 +sg25275 +S'\n' +p120076 +sg25268 +S'Faith, Hope, and Charity' +p120077 +sg25270 +S'Artist Information (' +p120078 +sa(dp120079 +g25273 +S'(artist after)' +p120080 +sg25267 +g27 +sg25275 +S'\n' +p120081 +sg25268 +S'Strength, Prudence, and Temperance' +p120082 +sg25270 +S'Artist Information (' +p120083 +sa(dp120084 +g25273 +S'(artist after)' +p120085 +sg25267 +g27 +sg25275 +S'\n' +p120086 +sg25268 +S'Salome' +p120087 +sg25270 +S'Artist Information (' +p120088 +sa(dp120089 +g25273 +S'(artist after)' +p120090 +sg25267 +g27 +sg25275 +S'\n' +p120091 +sg25268 +S'Saint Catherine Attended by Angels and the Mystic Marriage of Saint Catherine' +p120092 +sg25270 +S'Artist Information (' +p120093 +sa(dp120094 +g25273 +S'(artist after)' +p120095 +sg25267 +g27 +sg25275 +S'\n' +p120096 +sg25268 +S'Two Angels Playing Lutes' +p120097 +sg25270 +S'Artist Information (' +p120098 +sa(dp120099 +g25273 +S'(artist after)' +p120100 +sg25267 +g27 +sg25275 +S'\n' +p120101 +sg25268 +S'Two Angels Playing a Violin and Cello' +p120102 +sg25270 +S'Artist Information (' +p120103 +sa(dp120104 +g25273 +S'(artist after)' +p120105 +sg25267 +g27 +sg25275 +S'\n' +p120106 +sg25268 +S'Angels Playing a Harp and an Organ' +p120107 +sg25270 +S'Artist Information (' +p120108 +sa(dp120109 +g25273 +S'(artist after)' +p120110 +sg25267 +g27 +sg25275 +S'\n' +p120111 +sg25268 +S'Angel Musicians and the Fall of Simon Magus' +p120112 +sg25270 +S'Artist Information (' +p120113 +sa(dp120114 +g25268 +S'Christ Child with Bird' +p120115 +sg25270 +S'German 15th Century' +p120116 +sg25273 +S'Schreiber, Vol. IX, no. 789, State a' +p120117 +sg25275 +S'\nwoodcut in warm black, hand-colored in olive, rose, vermilion, yellow ochre, and tan' +p120118 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a534.jpg' +p120119 +sg25267 +g27 +sa(dp120120 +g25273 +S'(artist after)' +p120121 +sg25267 +g27 +sg25275 +S'\n' +p120122 +sg25268 +S'Holy Family' +p120123 +sg25270 +S'Artist Information (' +p120124 +sa(dp120125 +g25273 +S'(artist after)' +p120126 +sg25267 +g27 +sg25275 +S'\n' +p120127 +sg25268 +S'God the Father' +p120128 +sg25270 +S'Artist Information (' +p120129 +sa(dp120130 +g25273 +S'(artist after)' +p120131 +sg25267 +g27 +sg25275 +S'\n' +p120132 +sg25268 +S'The Lamentation' +p120133 +sg25270 +S'Artist Information (' +p120134 +sa(dp120135 +g25273 +S'(artist after)' +p120136 +sg25267 +g27 +sg25275 +S'\n' +p120137 +sg25268 +S'The Holy Family' +p120138 +sg25270 +S'Artist Information (' +p120139 +sa(dp120140 +g25273 +S'(artist after)' +p120141 +sg25267 +g27 +sg25275 +S'\n' +p120142 +sg25268 +S'Faith (from a painting by Solimena) and the Prophet Amos (after Ribera)' +p120143 +sg25270 +S'Artist Information (' +p120144 +sa(dp120145 +g25273 +S'(artist after)' +p120146 +sg25267 +g27 +sg25275 +S'\n' +p120147 +sg25268 +S'Charity (from a painting by Solimena) and the Prophet Joel (after Ribera)' +p120148 +sg25270 +S'Artist Information (' +p120149 +sa(dp120150 +g25273 +S'(artist after)' +p120151 +sg25267 +g27 +sg25275 +S'\n' +p120152 +sg25268 +S'The Birth of the Virgin' +p120153 +sg25270 +S'Artist Information (' +p120154 +sa(dp120155 +g25273 +S'(artist after)' +p120156 +sg25267 +g27 +sg25275 +S'\n' +p120157 +sg25268 +S'Saint Luke Painting the Virgin and Child' +p120158 +sg25270 +S'Artist Information (' +p120159 +sa(dp120160 +g25273 +S'(artist after)' +p120161 +sg25267 +g27 +sg25275 +S'\n' +p120162 +sg25268 +S'Saint Luke' +p120163 +sg25270 +S'Artist Information (' +p120164 +sa(dp120165 +g25273 +S'(artist after)' +p120166 +sg25267 +g27 +sg25275 +S'\n' +p120167 +sg25268 +S'Saint Mark' +p120168 +sg25270 +S'Artist Information (' +p120169 +sa(dp120170 +g25268 +S'Christ Child with Bird' +p120171 +sg25270 +S'German 15th Century' +p120172 +sg25273 +S'Schreiber, no. 789' +p120173 +sg25275 +S'\nwoodcut in brown, hand-colored in blue, yellow, and green' +p120174 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a533.jpg' +p120175 +sg25267 +g27 +sa(dp120176 +g25273 +S'(artist after)' +p120177 +sg25267 +g27 +sg25275 +S'\n' +p120178 +sg25268 +S'Justice Conquering Vice' +p120179 +sg25270 +S'Artist Information (' +p120180 +sa(dp120181 +g25273 +S'(artist after)' +p120182 +sg25267 +g27 +sg25275 +S'\n' +p120183 +sg25268 +S'Heliodore Chased from the Temple' +p120184 +sg25270 +S'Artist Information (' +p120185 +sa(dp120186 +g25273 +S'(artist after)' +p120187 +sg25267 +g27 +sg25275 +S'\n' +p120188 +sg25268 +S'The Money Changers Driven from the Temple' +p120189 +sg25270 +S'Artist Information (' +p120190 +sa(dp120191 +g25273 +S'(artist after)' +p120192 +sg25267 +g27 +sg25275 +S'\n' +p120193 +sg25268 +S'Antique Bas Relief and Allegory of the Conquest of Fiandra' +p120194 +sg25270 +S'Artist Information (' +p120195 +sa(dp120196 +g25273 +S'etching and aquatint' +p120197 +sg25267 +g27 +sg25275 +S'1773' +p120198 +sg25268 +S"Choix de quelques morceaux de Peintures antiques d'Herculanum" +p120199 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p120200 +sa(dp120201 +g25273 +S'etching and aquatint' +p120202 +sg25267 +g27 +sg25275 +S'1773' +p120203 +sg25268 +S'Two Women in Robes Engaged in a Dance' +p120204 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p120205 +sa(dp120206 +g25273 +S'etching and aquatint' +p120207 +sg25267 +g27 +sg25275 +S'1773' +p120208 +sg25268 +S'Victory Holding a Wreath' +p120209 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p120210 +sa(dp120211 +g25273 +S'etching and aquatint' +p120212 +sg25267 +g27 +sg25275 +S'1773' +p120213 +sg25268 +S'Half-Nude Woman and a Woman Holding a Plate and Basket' +p120214 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p120215 +sa(dp120216 +g25273 +S'(artist after)' +p120217 +sg25267 +g27 +sg25275 +S'\n' +p120218 +sg25268 +S"Fragments des Peintures ... Palais et Eglises de l'Italie ... Venise" +p120219 +sg25270 +S'Artist Information (' +p120220 +sa(dp120221 +g25273 +S'(artist after)' +p120222 +sg25267 +g27 +sg25275 +S'\n' +p120223 +sg25268 +S'Adoration of the Magi' +p120224 +sg25270 +S'Artist Information (' +p120225 +sa(dp120226 +g25268 +S'Christ Child on Donkey' +p120227 +sg25270 +S'German 15th Century' +p120228 +sg25273 +S'sheet (trimmed to plate mark): 8.1 x 5.5 cm (3 3/16 x 2 3/16 in.)' +p120229 +sg25275 +S'\nwoodcut, hand-colored in yellow, rose, and brown' +p120230 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b35.jpg' +p120231 +sg25267 +g27 +sa(dp120232 +g25273 +S'(artist after)' +p120233 +sg25267 +g27 +sg25275 +S'\n' +p120234 +sg25268 +S'The Martyrdom of Saints John and Paul' +p120235 +sg25270 +S'Artist Information (' +p120236 +sa(dp120237 +g25273 +S'(artist after)' +p120238 +sg25267 +g27 +sg25275 +S'\n' +p120239 +sg25268 +S'The Infant Hercules' +p120240 +sg25270 +S'Artist Information (' +p120241 +sa(dp120242 +g25273 +S'(artist after)' +p120243 +sg25267 +g27 +sg25275 +S'\n' +p120244 +sg25268 +S'The Presentation in the Temple' +p120245 +sg25270 +S'Artist Information (' +p120246 +sa(dp120247 +g25273 +S'(artist after)' +p120248 +sg25267 +g27 +sg25275 +S'\n' +p120249 +sg25268 +S'The Education of the Virgin' +p120250 +sg25270 +S'Artist Information (' +p120251 +sa(dp120252 +g25273 +S'(artist after)' +p120253 +sg25267 +g27 +sg25275 +S'\n' +p120254 +sg25268 +S'The Feast of Antony and Cleopatra' +p120255 +sg25270 +S'Artist Information (' +p120256 +sa(dp120257 +g25273 +S'(artist after)' +p120258 +sg25267 +g27 +sg25275 +S'\n' +p120259 +sg25268 +S'The Worship of the Golden Calf and Christ on the Mount of Olives' +p120260 +sg25270 +S'Artist Information (' +p120261 +sa(dp120262 +g25273 +S'(artist after)' +p120263 +sg25267 +g27 +sg25275 +S'\n' +p120264 +sg25268 +S'The Vision of Saint Peter' +p120265 +sg25270 +S'Artist Information (' +p120266 +sa(dp120267 +g25273 +S'(artist after)' +p120268 +sg25267 +g27 +sg25275 +S'\n' +p120269 +sg25268 +S'Moses Drawing Water from the Rock' +p120270 +sg25270 +S'Artist Information (' +p120271 +sa(dp120272 +g25273 +S'(artist after)' +p120273 +sg25267 +g27 +sg25275 +S'\n' +p120274 +sg25268 +S'Pastoral Scene and Women Tending Goats and a Baby' +p120275 +sg25270 +S'Artist Information (' +p120276 +sa(dp120277 +g25273 +S'(artist after)' +p120278 +sg25267 +g27 +sg25275 +S'\n' +p120279 +sg25268 +S'The Public Baths' +p120280 +sg25270 +S'Artist Information (' +p120281 +sa(dp120282 +g25268 +S'Christ Child in the Sacred Heart' +p120283 +sg25270 +S'German 15th Century' +p120284 +sg25273 +S'Schreiber, no. 807, State b' +p120285 +sg25275 +S'\nwoodcut, hand-colored in red lake, vermilion, green, blue, yellow, and gold' +p120286 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a542.jpg' +p120287 +sg25267 +g27 +sa(dp120288 +g25273 +S'(artist after)' +p120289 +sg25267 +g27 +sg25275 +S'\n' +p120290 +sg25268 +S'The Vision of Saint Jerome' +p120291 +sg25270 +S'Artist Information (' +p120292 +sa(dp120293 +g25273 +S'(artist after)' +p120294 +sg25267 +g27 +sg25275 +S'\n' +p120295 +sg25268 +S'Two Scenes of the Resurrection of Lazarus' +p120296 +sg25270 +S'Artist Information (' +p120297 +sa(dp120298 +g25273 +S'(artist after)' +p120299 +sg25267 +g27 +sg25275 +S'\n' +p120300 +sg25268 +S'Martyrdom of Saint Peter' +p120301 +sg25270 +S'Artist Information (' +p120302 +sa(dp120303 +g25273 +S'(artist after)' +p120304 +sg25267 +g27 +sg25275 +S'\n' +p120305 +sg25268 +S'Details from the Marriage at Cana' +p120306 +sg25270 +S'Artist Information (' +p120307 +sa(dp120308 +g25273 +S'(artist after)' +p120309 +sg25267 +g27 +sg25275 +S'\n' +p120310 +sg25268 +S'Hagar Consoled by an Angel (from a painting by Castiglione) and Three Heads of Old Men (from a painting by Ricci of Jesus and the Adultress)' +p120311 +sg25270 +S'Artist Information (' +p120312 +sa(dp120313 +g25273 +S'(artist after)' +p120314 +sg25267 +g27 +sg25275 +S'\n' +p120315 +sg25268 +S'The Adoration of the Shepherds' +p120316 +sg25270 +S'Artist Information (' +p120317 +sa(dp120318 +g25273 +S'(artist after)' +p120319 +sg25267 +g27 +sg25275 +S'\n' +p120320 +sg25268 +S'The Massacre of the Innocents' +p120321 +sg25270 +S'Artist Information (' +p120322 +sa(dp120323 +g25273 +S'(artist after)' +p120324 +sg25267 +g27 +sg25275 +S'\n' +p120325 +sg25268 +S'The Communion of the Apostles' +p120326 +sg25270 +S'Artist Information (' +p120327 +sa(dp120328 +g25273 +S'(artist after)' +p120329 +sg25267 +g27 +sg25275 +S'\n' +p120330 +sg25268 +S'The Meeting of Antony and Cleopatra and the Feast of Antony and Cleopatra' +p120331 +sg25270 +S'Artist Information (' +p120332 +sa(dp120333 +g25273 +S'(artist after)' +p120334 +sg25267 +g27 +sg25275 +S'\n' +p120335 +sg25268 +S'The Martyrdom of Saint Peter' +p120336 +sg25270 +S'Artist Information (' +p120337 +sa(dp120338 +g25268 +S'Christ Child in the Sacred Heart' +p120339 +sg25270 +S'German 15th Century' +p120340 +sg25273 +S'Schreiber, Vol. *, no. 807, State c' +p120341 +sg25275 +S'\nwoodcut in warm black, hand-colored in red lake, blue, green, yellow, and gold' +p120342 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a61f.jpg' +p120343 +sg25267 +g27 +sa(dp120344 +g25273 +S'(artist after)' +p120345 +sg25267 +g27 +sg25275 +S'\n' +p120346 +sg25268 +S'The Conquest of the Carthaginians' +p120347 +sg25270 +S'Artist Information (' +p120348 +sa(dp120349 +g25273 +S'(artist after)' +p120350 +sg25267 +g27 +sg25275 +S'\n' +p120351 +sg25268 +S'Details from the Sacred Covenant' +p120352 +sg25270 +S'Artist Information (' +p120353 +sa(dp120354 +g25273 +S'(artist after)' +p120355 +sg25267 +g27 +sg25275 +S'\n' +p120356 +sg25268 +S'Woman on a Horse with a Herd and God Appearing to Jacob' +p120357 +sg25270 +S'Artist Information (' +p120358 +sa(dp120359 +g25273 +S'(artist after)' +p120360 +sg25267 +g27 +sg25275 +S'\n' +p120361 +sg25268 +S'A Youth Carrying an Old Man, the Stoning of Serpents, and the Drunkeness of Silenus' +p120362 +sg25270 +S'Artist Information (' +p120363 +sa(dp120364 +g25273 +S'(artist after)' +p120365 +sg25267 +g27 +sg25275 +S'\n' +p120366 +sg25268 +S'Jupiter and Minerva (Wisdom of the Venetian Government)' +p120367 +sg25270 +S'Artist Information (' +p120368 +sa(dp120369 +g25273 +S'(artist after)' +p120370 +sg25267 +g27 +sg25275 +S'\n' +p120371 +sg25268 +S'Saint Luke at His Easel and Four Expressive Heads' +p120372 +sg25270 +S'Artist Information (' +p120373 +sa(dp120374 +g25273 +S'(artist after)' +p120375 +sg25267 +g27 +sg25275 +S'\n' +p120376 +sg25268 +S'Four Details from a Painting of the Massacre of the Innocents' +p120377 +sg25270 +S'Artist Information (' +p120378 +sa(dp120379 +g25273 +S'(artist after)' +p120380 +sg25267 +g27 +sg25275 +S'\n' +p120381 +sg25268 +S'Details from the Adoration of the Magi and the Pool at Bethesda' +p120382 +sg25270 +S'Artist Information (' +p120383 +sa(dp120384 +g25273 +S'(artist after)' +p120385 +sg25267 +g27 +sg25275 +S'\n' +p120386 +sg25268 +S'Satyrs, Nymphs and a Lion, a Satyr Family, and Head of a Man' +p120387 +sg25270 +S'Artist Information (' +p120388 +sa(dp120389 +g25273 +S'(artist after)' +p120390 +sg25267 +g27 +sg25275 +S'\n' +p120391 +sg25268 +S'Two Scenes of a Drunken Silenus with Satyrs' +p120392 +sg25270 +S'Artist Information (' +p120393 +sa(dp120394 +g25268 +S'Christ as Salvator Mundi' +p120395 +sg25270 +S'German 15th Century' +p120396 +sg25273 +S'Schreiber, no. 835' +p120397 +sg25275 +S'\nwoodcut' +p120398 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a540.jpg' +p120399 +sg25267 +g27 +sa(dp120400 +g25273 +S'(artist after)' +p120401 +sg25267 +g27 +sg25275 +S'\n' +p120402 +sg25268 +S'Madonna and Child with Saints Catherine and Agnes' +p120403 +sg25270 +S'Artist Information (' +p120404 +sa(dp120405 +g25273 +S'(artist after)' +p120406 +sg25267 +g27 +sg25275 +S'\n' +p120407 +sg25268 +S'The Triumph of Marcus Aurelius' +p120408 +sg25270 +S'Artist Information (' +p120409 +sa(dp120410 +g25273 +S'etching and aquatint' +p120411 +sg25267 +g27 +sg25275 +S'1773' +p120412 +sg25268 +S'Woman Seen from Behind Gathering Flowers' +p120413 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p120414 +sa(dp120415 +g25273 +S'etching and aquatint' +p120416 +sg25267 +g27 +sg25275 +S'1773' +p120417 +sg25268 +S'Half-Nude Woman in Profile' +p120418 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p120419 +sa(dp120420 +g25273 +S'(artist after)' +p120421 +sg25267 +g27 +sg25275 +S'\n' +p120422 +sg25268 +S'Bas Relief of Dancing Women and a Satyr and Two Vases from the Antique' +p120423 +sg25270 +S'Artist Information (' +p120424 +sa(dp120425 +g25273 +S'(artist after)' +p120426 +sg25267 +g27 +sg25275 +S'\n' +p120427 +sg25268 +S'Bas Relief of a Woman Astride a Satyr and a Fragment of a Frieze' +p120428 +sg25270 +S'Artist Information (' +p120429 +sa(dp120430 +g25273 +S'etching and aquatint' +p120431 +sg25267 +g27 +sg25275 +S'1767' +p120432 +sg25268 +S'Funerary Monument, Vase, and a Lamp from the Antique' +p120433 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p120434 +sa(dp120435 +g25273 +S'etching and aquatint' +p120436 +sg25267 +g27 +sg25275 +S'1767' +p120437 +sg25268 +S'Bas Relief of a Seated Satyr Playing with Eros, Antique Lamp, and an Ornate Chair' +p120438 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p120439 +sa(dp120440 +g25273 +S'(artist after)' +p120441 +sg25267 +g27 +sg25275 +S'\n' +p120442 +sg25268 +S'Vase, Pyramidal Monument, Cameo, and an Incense Burner from the Antique' +p120443 +sg25270 +S'Artist Information (' +p120444 +sa(dp120445 +g25273 +S'(artist after)' +p120446 +sg25267 +g27 +sg25275 +S'\n' +p120447 +sg25268 +S'Bas Relief of Seven Women Playing with Cupid, Vase, and a Tripod with Fasces from the Antique' +p120448 +sg25270 +S'Artist Information (' +p120449 +sa(dp120450 +g25268 +S'Christ as Salvator Mundi' +p120451 +sg25270 +S'German 15th Century' +p120452 +sg25273 +S'Schreiber, no. 835, State c' +p120453 +sg25275 +S'\nhand-colored woodcut' +p120454 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a53c.jpg' +p120455 +sg25267 +g27 +sa(dp120456 +g25273 +S'(artist after)' +p120457 +sg25267 +g27 +sg25275 +S'\n' +p120458 +sg25268 +S'Bas Relief with Satyrs and Lovers Embracing, Incense Burner, and a Table from the Antique' +p120459 +sg25270 +S'Artist Information (' +p120460 +sa(dp120461 +g25273 +S'(artist after)' +p120462 +sg25267 +g27 +sg25275 +S'\n' +p120463 +sg25268 +S'Bas Relief with Satyr Family and a Fragment of a Frieze with Lions and Serpents' +p120464 +sg25270 +S'Artist Information (' +p120465 +sa(dp120466 +g25273 +S'(artist after)' +p120467 +sg25267 +g27 +sg25275 +S'\n' +p120468 +sg25268 +S'Vue prise dans les jardins de Villa Albani \xc3\xa0 Rome' +p120469 +sg25270 +S'Artist Information (' +p120470 +sa(dp120471 +g25273 +S'(artist after)' +p120472 +sg25267 +g27 +sg25275 +S'\n' +p120473 +sg25268 +S'Landscape with Cattle Fording a Stream' +p120474 +sg25270 +S'Artist Information (' +p120475 +sa(dp120476 +g25273 +S'(artist after)' +p120477 +sg25267 +g27 +sg25275 +S'\n' +p120478 +sg25268 +S'Oval Riverscape with Laundresses' +p120479 +sg25270 +S'Artist Information (' +p120480 +sa(dp120481 +g25273 +S'(artist after)' +p120482 +sg25267 +g27 +sg25275 +S'\n' +p120483 +sg25268 +S'Oval Riverscape with a Fishing Boat and Net' +p120484 +sg25270 +S'Artist Information (' +p120485 +sa(dp120486 +g25273 +S'(artist after)' +p120487 +sg25267 +g27 +sg25275 +S'\n' +p120488 +sg25268 +S'Preaching of Saint John the Baptist' +p120489 +sg25270 +S'Artist Information (' +p120490 +sa(dp120491 +g25273 +S'(artist after)' +p120492 +sg25267 +g27 +sg25275 +S'\n' +p120493 +sg25268 +S'Aurora (from a painting by Pietro da Cortona), Triumph of Galatea (detail from a painting by Raphael), and Triumph of Flora (from a painting by Poussin)' +p120494 +sg25270 +S'Artist Information (' +p120495 +sa(dp120496 +g25273 +S'(artist after)' +p120497 +sg25267 +g27 +sg25275 +S'\n' +p120498 +sg25268 +S'Winter' +p120499 +sg25270 +S'Artist Information (' +p120500 +sa(dp120501 +g25273 +S'(artist after)' +p120502 +sg25267 +g27 +sg25275 +S'\n' +p120503 +sg25268 +S'Saint Matthew' +p120504 +sg25270 +S'Artist Information (' +p120505 +sa(dp120506 +g25268 +S'Good Shepherd' +p120507 +sg25270 +S'German 15th Century' +p120508 +sg25273 +S'Schreiber, no. 840' +p120509 +sg25275 +S'\nwoodcut in warm black, hand-colored in yellow, green-gray, and rose' +p120510 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a541.jpg' +p120511 +sg25267 +g27 +sa(dp120512 +g25273 +S'(artist after)' +p120513 +sg25267 +g27 +sg25275 +S'\n' +p120514 +sg25268 +S'Mercury and Psyche (from a painting by Raphael), Galatea and Polyphemus (from a painting by Badalocchio), and Triumph of Bacchus and Ariadne (from a painting by Carracci)' +p120515 +sg25270 +S'Artist Information (' +p120516 +sa(dp120517 +g25273 +S'(artist after)' +p120518 +sg25267 +g27 +sg25275 +S'\n' +p120519 +sg25268 +S'Flora (from a painting by Ferri) and Justice (from a painting by Domenichino)' +p120520 +sg25270 +S'Artist Information (' +p120521 +sa(dp120522 +g25273 +S'(artist after)' +p120523 +sg25267 +g27 +sg25275 +S'\n' +p120524 +sg25268 +S'Battle Scenes' +p120525 +sg25270 +S'Artist Information (' +p120526 +sa(dp120527 +g25273 +S'(artist after)' +p120528 +sg25267 +g27 +sg25275 +S'\n' +p120529 +sg25268 +S'Sacred and Profane Love (from a painting by Reni), Caryatid from the Coat of Arms of Leo X (from a painting by Raphael), Venus and Cupid (from a painting by Salimbeni), and the Adoration of Jesus (from a painting by Fra Bartolomeo)' +p120530 +sg25270 +S'Artist Information (' +p120531 +sa(dp120532 +g25273 +S'(artist after)' +p120533 +sg25267 +g27 +sg25275 +S'\n' +p120534 +sg25268 +S'Hyacinth Kneels Before a Vision of the Virgin' +p120535 +sg25270 +S'Artist Information (' +p120536 +sa(dp120537 +g25273 +S'(artist after)' +p120538 +sg25267 +g27 +sg25275 +S'\n' +p120539 +sg25268 +S'The Circumcision' +p120540 +sg25270 +S'Artist Information (' +p120541 +sa(dp120542 +g25273 +S'(artist after)' +p120543 +sg25267 +g27 +sg25275 +S'\n' +p120544 +sg25268 +S'Traveling Musicians' +p120545 +sg25270 +S'Artist Information (' +p120546 +sa(dp120547 +g25273 +S'(artist after)' +p120548 +sg25267 +g27 +sg25275 +S'\n' +p120549 +sg25268 +S'Punchinello Lying on the Ground' +p120550 +sg25270 +S'Artist Information (' +p120551 +sa(dp120552 +g25273 +S'(artist after)' +p120553 +sg25267 +g27 +sg25275 +S'\n' +p120554 +sg25268 +S"View of St. Peter's from Tivoli" +p120555 +sg25270 +S'Artist Information (' +p120556 +sa(dp120557 +g25273 +S'(artist after)' +p120558 +sg25267 +g27 +sg25275 +S'\n' +p120559 +sg25268 +S'Entrance to the Temple at S\xc3\xa9rapis at Pozzuoli' +p120560 +sg25270 +S'Artist Information (' +p120561 +sa(dp120562 +g25268 +S'Christ as the Man of Sorrows' +p120563 +sg25270 +S'German 15th Century' +p120564 +sg25273 +S'Schreiber, Vol. *, no. 886, State c' +p120565 +sg25275 +S'\nwoodcut, hand-colored in red lake, green, and yellow' +p120566 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a53d.jpg' +p120567 +sg25267 +g27 +sa(dp120568 +g25273 +S'etching and aquatint' +p120569 +sg25267 +g27 +sg25275 +S'1773' +p120570 +sg25268 +S'Music Lesson' +p120571 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p120572 +sa(dp120573 +g25273 +S'etching and aquatint' +p120574 +sg25267 +g27 +sg25275 +S'1773' +p120575 +sg25268 +S'Declamation Lesson' +p120576 +sg25270 +S'Jean-Claude-Richard, Abb\xc3\xa9 de Saint-Non' +p120577 +sa(dp120578 +g25273 +S'(artist after)' +p120579 +sg25267 +g27 +sg25275 +S'\n' +p120580 +sg25268 +S'Saint Gregory the Great Resting' +p120581 +sg25270 +S'Artist Information (' +p120582 +sa(dp120583 +g25273 +S'(artist after)' +p120584 +sg25267 +g27 +sg25275 +S'\n' +p120585 +sg25268 +S'The Madonna of the Bargellini' +p120586 +sg25270 +S'Artist Information (' +p120587 +sa(dp120588 +g25273 +S'(artist after)' +p120589 +sg25267 +g27 +sg25275 +S'\n' +p120590 +sg25268 +S'The Seizure of Simon' +p120591 +sg25270 +S'Artist Information (' +p120592 +sa(dp120593 +g25273 +S'(artist after)' +p120594 +sg25267 +g27 +sg25275 +S'\n' +p120595 +sg25268 +S'Atlas and Putti' +p120596 +sg25270 +S'Artist Information (' +p120597 +sa(dp120598 +g25273 +S'(artist after)' +p120599 +sg25267 +g27 +sg25275 +S'\n' +p120600 +sg25268 +S'The Martyrdom of Saint Catherine' +p120601 +sg25270 +S'Artist Information (' +p120602 +sa(dp120603 +g25273 +S'(artist after)' +p120604 +sg25267 +g27 +sg25275 +S'\n' +p120605 +sg25268 +S'The Assumption of Saint Catherine' +p120606 +sg25270 +S'Artist Information (' +p120607 +sa(dp120608 +g25273 +S'(artist after)' +p120609 +sg25267 +g27 +sg25275 +S'\n' +p120610 +sg25268 +S'The Circumcision' +p120611 +sg25270 +S'Artist Information (' +p120612 +sa(dp120613 +g25273 +S'(artist after)' +p120614 +sg25267 +g27 +sg25275 +S'\n' +p120615 +sg25268 +S'The Pilgrims to Emmaus' +p120616 +sg25270 +S'Artist Information (' +p120617 +sa(dp120618 +g25268 +S'Christ as the Man of Sorrows' +p120619 +sg25270 +S'Netherlandish 15th Century' +p120620 +sg25273 +S'Schreiber, no. 908, State a' +p120621 +sg25275 +S'\nwoodcut, hand-colored in yellow, ochre, brown and indian red' +p120622 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccfd.jpg' +p120623 +sg25267 +g27 +sa(dp120624 +g25273 +S'(artist after)' +p120625 +sg25267 +g27 +sg25275 +S'\n' +p120626 +sg25268 +S'Cain Slaying Abel and the Sacrifice of Abraham' +p120627 +sg25270 +S'Artist Information (' +p120628 +sa(dp120629 +g25273 +S'(artist after)' +p120630 +sg25267 +g27 +sg25275 +S'\n' +p120631 +sg25268 +S'The Mystic Marriage of Saint Catherine' +p120632 +sg25270 +S'Artist Information (' +p120633 +sa(dp120634 +g25273 +S'(artist after)' +p120635 +sg25267 +g27 +sg25275 +S'\n' +p120636 +sg25268 +S'Bacchanale, Pedestal with Egyptian Figures, and an Incense Burner' +p120637 +sg25270 +S'Artist Information (' +p120638 +sa(dp120639 +g25273 +S'(artist after)' +p120640 +sg25267 +g27 +sg25275 +S'\n' +p120641 +sg25268 +S'Vase, Cameo, and Two Incense Burners' +p120642 +sg25270 +S'Artist Information (' +p120643 +sa(dp120644 +g25273 +S'lithograph' +p120645 +sg25267 +g27 +sg25275 +S'1923' +p120646 +sg25268 +S'Boats Off Duty (Boote ausser Dienst)' +p120647 +sg25270 +S'Karl Schmidt-Rottluff' +p120648 +sa(dp120649 +g25273 +S'woodcut' +p120650 +sg25267 +g27 +sg25275 +S'1915' +p120651 +sg25268 +S'Bible Reader (Bibelleser)' +p120652 +sg25270 +S'Karl Schmidt-Rottluff' +p120653 +sa(dp120654 +g25273 +S'lithograph' +p120655 +sg25267 +g27 +sg25275 +S'1923' +p120656 +sg25268 +S'After the Catch (Nach dem Fang)' +p120657 +sg25270 +S'Karl Schmidt-Rottluff' +p120658 +sa(dp120659 +g25273 +S'etching' +p120660 +sg25267 +g27 +sg25275 +S'unknown date\n' +p120661 +sg25268 +S'Work' +p120662 +sg25270 +S'Armando Sica' +p120663 +sa(dp120664 +g25273 +S'6-color lithograph' +p120665 +sg25267 +g27 +sg25275 +S'1945' +p120666 +sg25268 +S'A Wind Is Rising and the Rivers Flow' +p120667 +sg25270 +S'Benton Murdoch Spruance' +p120668 +sa(dp120669 +g25273 +S'engraved copper plate' +p120670 +sg25267 +g27 +sg25275 +S'unknown date\n' +p120671 +sg25268 +S'Hommage a Rimbaud' +p120672 +sg25270 +S'Roger Vieillard' +p120673 +sa(dp120674 +g25268 +S'Christ as the Man of Sorrows' +p120675 +sg25270 +S'German 15th Century' +p120676 +sg25273 +S'Schreiber, Vol. *, no. 908, State bb' +p120677 +sg25275 +S'\nwoodcut, hand-colored in red lake, orange, blue, yellow, and green' +p120678 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a64b.jpg' +p120679 +sg25267 +g27 +sa(dp120680 +g25273 +S'color monotype from woodblock on green wove paper' +p120681 +sg25267 +g27 +sg25275 +S'1949' +p120682 +sg25268 +S'Tower of Birds' +p120683 +sg25270 +S'Adja Yunkers' +p120684 +sa(dp120685 +g25273 +S'monotype on wove paper' +p120686 +sg25267 +g27 +sg25275 +S'1949' +p120687 +sg25268 +S'Desert' +p120688 +sg25270 +S'Adja Yunkers' +p120689 +sa(dp120690 +g25273 +S'monotype on wove paper' +p120691 +sg25267 +g27 +sg25275 +S'probably 1947' +p120692 +sg25268 +S'La Mesa' +p120693 +sg25270 +S'Adja Yunkers' +p120694 +sa(dp120695 +g25273 +S'color monotype on wove papr' +p120696 +sg25267 +g27 +sg25275 +S'1949' +p120697 +sg25268 +S'Blue Shields' +p120698 +sg25270 +S'Adja Yunkers' +p120699 +sa(dp120700 +g25268 +S'Les divers pourtraicts et figures I (Title Page)' +p120701 +sg25270 +S'Master AD' +p120702 +sg25273 +S'engraving' +p120703 +sg25275 +S'c. 1600' +p120704 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000838d.jpg' +p120705 +sg25267 +g27 +sa(dp120706 +g25268 +S'Les divers pourtraicts et figures II' +p120707 +sg25270 +S'Master AD' +p120708 +sg25273 +S'engraving' +p120709 +sg25275 +S'c. 1600' +p120710 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008398.jpg' +p120711 +sg25267 +g27 +sa(dp120712 +g25268 +S'Les divers pourtraicts et figures III' +p120713 +sg25270 +S'Master AD' +p120714 +sg25273 +S'engraving' +p120715 +sg25275 +S'c. 1600' +p120716 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008377.jpg' +p120717 +sg25267 +g27 +sa(dp120718 +g25268 +S'Les divers pourtraicts et figures IV' +p120719 +sg25270 +S'Master AD' +p120720 +sg25273 +S'engraving' +p120721 +sg25275 +S'c. 1600' +p120722 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008382.jpg' +p120723 +sg25267 +g27 +sa(dp120724 +g25268 +S'Les divers pourtraicts et figures V' +p120725 +sg25270 +S'Master AD' +p120726 +sg25273 +S'engraving' +p120727 +sg25275 +S'c. 1600' +p120728 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008356.jpg' +p120729 +sg25267 +g27 +sa(dp120730 +g25268 +S'Les divers pourtraicts et figures VI' +p120731 +sg25270 +S'Master AD' +p120732 +sg25273 +S'engraving' +p120733 +sg25275 +S'c. 1600' +p120734 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000834c.jpg' +p120735 +sg25267 +g27 +sa(dp120736 +g25268 +S'Christ as the Man of Sorrows' +p120737 +sg25270 +S'Netherlandish 15th Century' +p120738 +sg25273 +S'Schreiber, Vol. *, no. 909, State alpha' +p120739 +sg25275 +S'\nwoodcut, hand-colored in dark brown, tan and rose' +p120740 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cce8.jpg' +p120741 +sg25267 +g27 +sa(dp120742 +g25268 +S'Les divers pourtraicts et figures VII' +p120743 +sg25270 +S'Master AD' +p120744 +sg25273 +S'engraving' +p120745 +sg25275 +S'c. 1600' +p120746 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008361.jpg' +p120747 +sg25267 +g27 +sa(dp120748 +g25268 +S'Les divers pourtraicts et figures VIII' +p120749 +sg25270 +S'Master AD' +p120750 +sg25273 +S'engraving' +p120751 +sg25275 +S'c. 1600' +p120752 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000836c.jpg' +p120753 +sg25267 +g27 +sa(dp120754 +g25268 +S'Les divers pourtraicts et figures IX' +p120755 +sg25270 +S'Master AD' +p120756 +sg25273 +S'engraving' +p120757 +sg25275 +S'c. 1600' +p120758 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000833e.jpg' +p120759 +sg25267 +g27 +sa(dp120760 +g25268 +S'Les divers pourtraicts et figures X' +p120761 +sg25270 +S'Master AD' +p120762 +sg25273 +S'engraving' +p120763 +sg25275 +S'c. 1600' +p120764 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008494.jpg' +p120765 +sg25267 +g27 +sa(dp120766 +g25268 +S'Les divers pourtraicts et figures XI' +p120767 +sg25270 +S'Master AD' +p120768 +sg25273 +S'engraving' +p120769 +sg25275 +S'c. 1600' +p120770 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008486.jpg' +p120771 +sg25267 +g27 +sa(dp120772 +g25268 +S'Les divers pourtraicts et figures XII' +p120773 +sg25270 +S'Master AD' +p120774 +sg25273 +S'engraving' +p120775 +sg25275 +S'c. 1600' +p120776 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008479.jpg' +p120777 +sg25267 +g27 +sa(dp120778 +g25268 +S'Les divers pourtraicts et figures XIII' +p120779 +sg25270 +S'Master AD' +p120780 +sg25273 +S'engraving' +p120781 +sg25275 +S'c. 1600' +p120782 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000846c.jpg' +p120783 +sg25267 +g27 +sa(dp120784 +g25273 +S'aquatint and drypoint over heliogravure' +p120785 +sg25267 +g27 +sg25275 +S'1923' +p120786 +sg25268 +S'Miserere mei, Deus, secundum magnam misericordiam tuam' +p120787 +sg25270 +S'Georges Rouault' +p120788 +sa(dp120789 +g25273 +S'portfolio with 2 blank pages, title page, index page, explanatory page, explanatory page w/text, text and 58 mixed etchings' +p120790 +sg25267 +g27 +sg25275 +S'published 1948' +p120791 +sg25268 +S'Miserere' +p120792 +sg25270 +S'Georges Rouault' +p120793 +sa(dp120794 +g25273 +S'aquatint and drypoint over heliogravure' +p120795 +sg25267 +g27 +sg25275 +S'1922' +p120796 +sg25268 +S'Jesus honni ...' +p120797 +sg25270 +S'Georges Rouault' +p120798 +sa(dp120799 +g25268 +S'The Man of Sorrows and His Mother' +p120800 +sg25270 +S'Netherlandish 15th Century' +p120801 +sg25273 +S'plate: 9.6 x 6.8 cm (3 3/4 x 2 11/16 in.)\r\nsheet: 13.6 x 9.7 cm (5 3/8 x 3 13/16 in.)' +p120802 +sg25275 +S'\nwoodcut, hand-colored in rose, blue, lilac, vermilion, mustard yellow, white, brown, and silver' +p120803 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cce9.jpg' +p120804 +sg25267 +g27 +sa(dp120805 +g25273 +S'aquatint and drypoint over heliogravure' +p120806 +sg25267 +g27 +sg25275 +S'1922' +p120807 +sg25268 +S'toujours flagelle ...' +p120808 +sg25270 +S'Georges Rouault' +p120809 +sa(dp120810 +g25273 +S'aquatint and drypoint over heliogravure' +p120811 +sg25267 +g27 +sg25275 +S'1922' +p120812 +sg25268 +S'Se refugie en ton coeur, va-nu-pieds de malheur' +p120813 +sg25270 +S'Georges Rouault' +p120814 +sa(dp120815 +g25273 +S'aquatint and drypoint over heliogravure' +p120816 +sg25267 +g27 +sg25275 +S'1922' +p120817 +sg25268 +S"Solitaire, en cette vie d'embuches et de malices" +p120818 +sg25270 +S'Georges Rouault' +p120819 +sa(dp120820 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p120821 +sg25267 +g27 +sg25275 +S'1926' +p120822 +sg25268 +S'Ne sommes-nous pas forcats?' +p120823 +sg25270 +S'Georges Rouault' +p120824 +sa(dp120825 +g25273 +S'aquatint and drypoint over heliogravure' +p120826 +sg25267 +g27 +sg25275 +S'1923' +p120827 +sg25268 +S'nous croyant rois' +p120828 +sg25270 +S'Georges Rouault' +p120829 +sa(dp120830 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p120831 +sg25267 +g27 +sg25275 +S'1923' +p120832 +sg25268 +S'Qui ne se grime pas?' +p120833 +sg25270 +S'Georges Rouault' +p120834 +sa(dp120835 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p120836 +sg25267 +g27 +sg25275 +S'1922' +p120837 +sg25268 +S'Il arrive parfois que la route soit belle ...' +p120838 +sg25270 +S'Georges Rouault' +p120839 +sa(dp120840 +g25273 +S'aquatint and drypoint over heliogravure' +p120841 +sg25267 +g27 +sg25275 +S'1923' +p120842 +sg25268 +S'au vieux faubourg des Longues Peines' +p120843 +sg25270 +S'Georges Rouault' +p120844 +sa(dp120845 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p120846 +sg25267 +g27 +sg25275 +S'1922' +p120847 +sg25268 +S'Demain sera beau, disait le naufrage' +p120848 +sg25270 +S'Georges Rouault' +p120849 +sa(dp120850 +g25273 +S'aquatint, and drypoint over heliogravure' +p120851 +sg25267 +g27 +sg25275 +S'1922' +p120852 +sg25268 +S'Le dur metier de vivre' +p120853 +sg25270 +S'Georges Rouault' +p120854 +sa(dp120855 +g25268 +S'Christ Falling Under the Weight of the Cross' +p120856 +sg25270 +S'German 15th Century' +p120857 +sg25273 +S'Overall: 12.6 x 18.8 cm (4 15/16 x 7 3/8 in.)\r\noverall (external frame dimensions): 39.4 x 31.8 cm (15 1/2 x 12 1/2 in.)' +p120858 +sg25275 +S'\nwoodcut, hand-colored in yellow ochre, tan, green, and red' +p120859 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005622.jpg' +p120860 +sg25267 +g27 +sa(dp120861 +g25273 +S'aquatint and drypoint over heliogravure' +p120862 +sg25267 +g27 +sg25275 +S'1923' +p120863 +sg25268 +S"il serait si doux d'aimer" +p120864 +sg25270 +S'Georges Rouault' +p120865 +sa(dp120866 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p120867 +sg25267 +g27 +sg25275 +S'1922' +p120868 +sg25268 +S'Fille dite de joie' +p120869 +sg25270 +S'Georges Rouault' +p120870 +sa(dp120871 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p120872 +sg25267 +g27 +sg25275 +S'1922' +p120873 +sg25268 +S'En bouche qui fut fraiche, gout de fiel' +p120874 +sg25270 +S'Georges Rouault' +p120875 +sa(dp120876 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p120877 +sg25267 +g27 +sg25275 +S'1922' +p120878 +sg25268 +S'Dame du Haut-Quartier croit prendre pour le Ciel place reservee' +p120879 +sg25270 +S'Georges Rouault' +p120880 +sa(dp120881 +g25273 +S'aquatint and drypoint over heliogravure' +p120882 +sg25267 +g27 +sg25275 +S'1922' +p120883 +sg25268 +S'Femme affranchie, a quatorze heures, chante midi' +p120884 +sg25270 +S'Georges Rouault' +p120885 +sa(dp120886 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p120887 +sg25267 +g27 +sg25275 +S'1922' +p120888 +sg25268 +S"Le condamne s'en est alle" +p120889 +sg25270 +S'Georges Rouault' +p120890 +sa(dp120891 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p120892 +sg25267 +g27 +sg25275 +S'1922' +p120893 +sg25268 +S'Son avocat, en phrases creuses, clame sa totale inconscience ...' +p120894 +sg25270 +S'Georges Rouault' +p120895 +sa(dp120896 +g25273 +S'aquatint and drypoint over heliogravure' +p120897 +sg25267 +g27 +sg25275 +S'1922' +p120898 +sg25268 +S'sous un Jesus en crois oublie la' +p120899 +sg25270 +S'Georges Rouault' +p120900 +sa(dp120901 +g25273 +S'aquatint and drypoint over heliogravure' +p120902 +sg25267 +g27 +sg25275 +S'1923' +p120903 +sg25268 +S"Il a ete maltraite et opprime et il n'a pas ouvert la bouche" +p120904 +sg25270 +S'Georges Rouault' +p120905 +sa(dp120906 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p120907 +sg25267 +g27 +sg25275 +S'1926' +p120908 +sg25268 +S"En tant d'ordres divers, le beau metier d'ensemencer une terre hostile" +p120909 +sg25270 +S'Georges Rouault' +p120910 +sa(dp120911 +g25268 +S'The Man of Sorrows with a Franciscan' +p120912 +sg25270 +S'French 15th Century' +p120913 +sg25273 +S'Schreiber, Vol. *, no. 916, State b' +p120914 +sg25275 +S'\nwoodcut, hand-colored in red, blue, green-yellow, gray, and flesh' +p120915 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a00082fa.jpg' +p120916 +sg25267 +g27 +sa(dp120917 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p120918 +sg25267 +g27 +sg25275 +S'1922' +p120919 +sg25268 +S'Rue des Solitaires' +p120920 +sg25270 +S'Georges Rouault' +p120921 +sa(dp120922 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p120923 +sg25267 +g27 +sg25275 +S'1922' +p120924 +sg25268 +S'"Hiver lepre de la terre"' +p120925 +sg25270 +S'Georges Rouault' +p120926 +sa(dp120927 +g25273 +S'aquatint and drypoint over heliogravure' +p120928 +sg25267 +g27 +sg25275 +S'1923' +p120929 +sg25268 +S'Jean-Francois jamais ne chante alleluia ...' +p120930 +sg25270 +S'Georges Rouault' +p120931 +sa(dp120932 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p120933 +sg25267 +g27 +sg25275 +S'1923' +p120934 +sg25268 +S'au pays de la soif et de la peur' +p120935 +sg25270 +S'Georges Rouault' +p120936 +sa(dp120937 +g25273 +S'aquatint and drypoint over heliogravure' +p120938 +sg25267 +g27 +sg25275 +S'1926' +p120939 +sg25268 +S'Sunt lacrimae rerum ...' +p120940 +sg25270 +S'Georges Rouault' +p120941 +sa(dp120942 +g25273 +S'aquatint and drypoint over heliogravure' +p120943 +sg25267 +g27 +sg25275 +S'1923' +p120944 +sg25268 +S'Celui qui croit en moi, fut-il mort, vivra' +p120945 +sg25270 +S'Georges Rouault' +p120946 +sa(dp120947 +g25273 +S'aquatint and drypoint over heliogravure' +p120948 +sg25267 +g27 +sg25275 +S'1923' +p120949 +sg25268 +S'Chantez Matines, le jour renait' +p120950 +sg25270 +S'Georges Rouault' +p120951 +sa(dp120952 +g25273 +S'aquatint over heliogravure' +p120953 +sg25267 +g27 +sg25275 +S'1922/1927' +p120954 +sg25268 +S"Nous ... c'est en sa mort que nous avons ete baptises" +p120955 +sg25270 +S'Georges Rouault' +p120956 +sa(dp120957 +g25273 +S'aquatint and roulette over heliogravure' +p120958 +sg25267 +g27 +sg25275 +S'1923' +p120959 +sg25268 +S'"Aimez-vous les uns les autres"' +p120960 +sg25270 +S'Georges Rouault' +p120961 +sa(dp120962 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p120963 +sg25267 +g27 +sg25275 +S'1927' +p120964 +sg25268 +S"Seigneur, c'est vous, je vous reconnais" +p120965 +sg25270 +S'Georges Rouault' +p120966 +sa(dp120967 +g25268 +S'Christ on the Cross with Angels' +p120968 +sg25270 +S'German 15th Century' +p120969 +sg25273 +S'Schreiber, Vol. IX, no. 948, State a' +p120970 +sg25275 +S'\nwoodcut' +p120971 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a650.jpg' +p120972 +sg25267 +g27 +sa(dp120973 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p120974 +sg25267 +g27 +sg25275 +S'1922' +p120975 +sg25268 +S"Seigneur, c'est vous, je vous reconnais" +p120976 +sg25270 +S'Georges Rouault' +p120977 +sa(dp120978 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p120979 +sg25267 +g27 +sg25275 +S'1926' +p120980 +sg25268 +S'"Les ruines elles-memes ont peri"' +p120981 +sg25270 +S'Georges Rouault' +p120982 +sa(dp120983 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p120984 +sg25267 +g27 +sg25275 +S'1926' +p120985 +sg25268 +S'"Jesus sera en agonie jusqu\'a la fin du monde..."' +p120986 +sg25270 +S'Georges Rouault' +p120987 +sa(dp120988 +g25273 +S'aquatint and drypoint over heliogravure' +p120989 +sg25267 +g27 +sg25275 +S'1927' +p120990 +sg25268 +S'Ce sera la derniere, petit pere' +p120991 +sg25270 +S'Georges Rouault' +p120992 +sa(dp120993 +g25273 +S'aquatint and drypoint over heliogravure' +p120994 +sg25267 +g27 +sg25275 +S'1926' +p120995 +sg25268 +S'Homo Homini Lupus' +p120996 +sg25270 +S'Georges Rouault' +p120997 +sa(dp120998 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p120999 +sg25267 +g27 +sg25275 +S'1926' +p121000 +sg25268 +S'Chinois inventa, dit-on, la poudre a canon, nous en fit don' +p121001 +sg25270 +S'Georges Rouault' +p121002 +sa(dp121003 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p121004 +sg25267 +g27 +sg25275 +S'1922' +p121005 +sg25268 +S'Nous sommes fous...' +p121006 +sg25270 +S'Georges Rouault' +p121007 +sa(dp121008 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p121009 +sg25267 +g27 +sg25275 +S'1926' +p121010 +sg25268 +S'Face a face' +p121011 +sg25270 +S'Georges Rouault' +p121012 +sa(dp121013 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p121014 +sg25267 +g27 +sg25275 +S'1923' +p121015 +sg25268 +S'Augures...' +p121016 +sg25270 +S'Georges Rouault' +p121017 +sa(dp121018 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p121019 +sg25267 +g27 +sg25275 +S'1927' +p121020 +sg25268 +S'Bella matribus detestata' +p121021 +sg25270 +S'Georges Rouault' +p121022 +sa(dp121023 +g25268 +S'Christ Showing His Wounds to Peter, the Magdalene and the Good Thief' +p121024 +sg25270 +S'German 15th Century' +p121025 +sg25273 +S'Schreiber, no. 918' +p121026 +sg25275 +S'\nwoodcut' +p121027 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a53e.jpg' +p121028 +sg25267 +g27 +sa(dp121029 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p121030 +sg25267 +g27 +sg25275 +S'1922' +p121031 +sg25268 +S'"Nous devons mourir, nous et tout ce qui est notre"' +p121032 +sg25270 +S'Georges Rouault' +p121033 +sa(dp121034 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p121035 +sg25267 +g27 +sg25275 +S'1927' +p121036 +sg25268 +S'Mon doux pays, ou etes-vous?' +p121037 +sg25270 +S'Georges Rouault' +p121038 +sa(dp121039 +g25273 +S'aquatint and drypoint over heliogravure' +p121040 +sg25267 +g27 +sg25275 +S'1922' +p121041 +sg25268 +S"La mort l'a pris comme il sortait du lit d'orties" +p121042 +sg25270 +S'Georges Rouault' +p121043 +sa(dp121044 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p121045 +sg25267 +g27 +sg25275 +S'1927' +p121046 +sg25268 +S'"Le Juste comme le bois de Santal parfume la hache qui la frappe"' +p121047 +sg25270 +S'Georges Rouault' +p121048 +sa(dp121049 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p121050 +sg25267 +g27 +sg25275 +S'1927' +p121051 +sg25268 +S'De profundis ...' +p121052 +sg25270 +S'Georges Rouault' +p121053 +sa(dp121054 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p121055 +sg25267 +g27 +sg25275 +S'1922' +p121056 +sg25268 +S'Au pressoir, le raisin fut foule' +p121057 +sg25270 +S'Georges Rouault' +p121058 +sa(dp121059 +g25273 +S'aquatint and drypoint over heliogravure' +p121060 +sg25267 +g27 +sg25275 +S'1926' +p121061 +sg25268 +S'"Plus le coeur est noble moins le col est roide"' +p121062 +sg25270 +S'Georges Rouault' +p121063 +sa(dp121064 +g25273 +S'aquatint and drypoint over heliogravure' +p121065 +sg25267 +g27 +sg25275 +S'1926' +p121066 +sg25268 +S'"Des ongles et du bec"' +p121067 +sg25270 +S'Georges Rouault' +p121068 +sa(dp121069 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p121070 +sg25267 +g27 +sg25275 +S'1922' +p121071 +sg25268 +S'Loin du sourire de Reims' +p121072 +sg25270 +S'Georges Rouault' +p121073 +sa(dp121074 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p121075 +sg25267 +g27 +sg25275 +S'1926' +p121076 +sg25268 +S'Dura lex sed lex' +p121077 +sg25270 +S'Georges Rouault' +p121078 +sa(dp121079 +g25268 +S'Christ on the Cross with Angels' +p121080 +sg25270 +S'German 15th Century' +p121081 +sg25273 +S'Schreiber, no. 949' +p121082 +sg25275 +S'\nwoodcut in brown, hand-colored in red lake, brown, yellow, green, black, and tan' +p121083 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a653.jpg' +p121084 +sg25267 +g27 +sa(dp121085 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p121086 +sg25267 +g27 +sg25275 +S'1926' +p121087 +sg25268 +S'Vierge aux sept glaives' +p121088 +sg25270 +S'Georges Rouault' +p121089 +sa(dp121090 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p121091 +sg25267 +g27 +sg25275 +S'1927' +p121092 +sg25268 +S'"Debout les morts!"' +p121093 +sg25270 +S'Georges Rouault' +p121094 +sa(dp121095 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p121096 +sg25267 +g27 +sg25275 +S'1926' +p121097 +sg25268 +S"L'aveugle parfois a console le voyant" +p121098 +sg25270 +S'Georges Rouault' +p121099 +sa(dp121100 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p121101 +sg25267 +g27 +sg25275 +S'1927' +p121102 +sg25268 +S"En ces temps noirs de jactance et d'incroyance, Notre-Dame de la Fin des Terresvigilante" +p121103 +sg25270 +S'Georges Rouault' +p121104 +sa(dp121105 +g25273 +S'aquatint and roulette over heliogravure' +p121106 +sg25267 +g27 +sg25275 +S'1926' +p121107 +sg25268 +S'"Obeissant jusqu\'a la mort et a la mort de la croix"' +p121108 +sg25270 +S'Georges Rouault' +p121109 +sa(dp121110 +g25273 +S'aquatint and roulette over heliogravure' +p121111 +sg25267 +g27 +sg25275 +S'1926' +p121112 +sg25268 +S'"C\'est par ses meurtrissures que nous sommes gueris"' +p121113 +sg25270 +S'Georges Rouault' +p121114 +sa(dp121115 +g25268 +S'Paris with the Apple' +p121116 +sg25270 +S'Abraham de Bruyn' +p121117 +sg25273 +S'engraving' +p121118 +sg25275 +S'unknown date\n' +p121119 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd10.jpg' +p121120 +sg25267 +g27 +sa(dp121121 +g25268 +S'Juno' +p121122 +sg25270 +S'Abraham de Bruyn' +p121123 +sg25273 +S'engraving' +p121124 +sg25275 +S'unknown date\n' +p121125 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd11.jpg' +p121126 +sg25267 +g27 +sa(dp121127 +g25268 +S'Venus' +p121128 +sg25270 +S'Abraham de Bruyn' +p121129 +sg25273 +S'engraving' +p121130 +sg25275 +S'unknown date\n' +p121131 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd0e.jpg' +p121132 +sg25267 +g27 +sa(dp121133 +g25268 +S'Hermes' +p121134 +sg25270 +S'Abraham de Bruyn' +p121135 +sg25273 +S'engraving' +p121136 +sg25275 +S'unknown date\n' +p121137 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd0f.jpg' +p121138 +sg25267 +g27 +sa(dp121139 +g25268 +S'Christ on the Cross with Angels' +p121140 +sg25270 +S'Artist Information (' +p121141 +sg25273 +g27 +sg25275 +S'(artist after)' +p121142 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a64f.jpg' +p121143 +sg25267 +g27 +sa(dp121144 +g25268 +S'Cebren (The River God)' +p121145 +sg25270 +S'Abraham de Bruyn' +p121146 +sg25273 +S'engraving' +p121147 +sg25275 +S'unknown date\n' +p121148 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd13.jpg' +p121149 +sg25267 +g27 +sa(dp121150 +g25268 +S'Minerva' +p121151 +sg25270 +S'Abraham de Bruyn' +p121152 +sg25273 +S'engraving' +p121153 +sg25275 +S'unknown date\n' +p121154 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd12.jpg' +p121155 +sg25267 +g27 +sa(dp121156 +g25268 +S'Girl with a Crown of Flowers' +p121157 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p121158 +sg25273 +S'etching' +p121159 +sg25275 +S'1784' +p121160 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b34a.jpg' +p121161 +sg25267 +g27 +sa(dp121162 +g25268 +S'Girl with an Ostrich Feather Headdress' +p121163 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p121164 +sg25273 +S'etching' +p121165 +sg25275 +S'1784' +p121166 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b34b.jpg' +p121167 +sg25267 +g27 +sa(dp121168 +g25268 +S'Girl with Fan, Facing Right' +p121169 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p121170 +sg25273 +S'etching' +p121171 +sg25275 +S'1784' +p121172 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b34c.jpg' +p121173 +sg25267 +g27 +sa(dp121174 +g25268 +S'Girl with Fan, Facing Left' +p121175 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p121176 +sg25273 +S'etching' +p121177 +sg25275 +S'1784' +p121178 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b34d.jpg' +p121179 +sg25267 +g27 +sa(dp121180 +g25268 +S'Girl Seated, Sewing' +p121181 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p121182 +sg25273 +S'etching' +p121183 +sg25275 +S'1784' +p121184 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b34e.jpg' +p121185 +sg25267 +g27 +sa(dp121186 +g25268 +S'Girl Sleeping on Settee' +p121187 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p121188 +sg25273 +S'etching' +p121189 +sg25275 +S'1784' +p121190 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b34f.jpg' +p121191 +sg25267 +g27 +sa(dp121192 +g25268 +S'Young Man Writing by Lamplight' +p121193 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p121194 +sg25273 +S'etching' +p121195 +sg25275 +S'1784' +p121196 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b350.jpg' +p121197 +sg25267 +g27 +sa(dp121198 +g25268 +S'Young Man Seated, Smoking' +p121199 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p121200 +sg25273 +S'etching' +p121201 +sg25275 +S'1784' +p121202 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b351.jpg' +p121203 +sg25267 +g27 +sa(dp121204 +g25268 +S'Christ on the Cross with Angels' +p121205 +sg25270 +S'German 15th Century' +p121206 +sg25273 +S'Schreiber, no. 950, State (=951)' +p121207 +sg25275 +S'\nwoodcut on vellum' +p121208 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a64c.jpg' +p121209 +sg25267 +g27 +sa(dp121210 +g25268 +S'Young Man Bareheaded, with Sword' +p121211 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p121212 +sg25273 +S'etching' +p121213 +sg25275 +S'1784' +p121214 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b352.jpg' +p121215 +sg25267 +g27 +sa(dp121216 +g25268 +S'Young Man with Cane' +p121217 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p121218 +sg25273 +S'etching' +p121219 +sg25275 +S'1784' +p121220 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b353.jpg' +p121221 +sg25267 +g27 +sa(dp121222 +g25268 +S'Young Man with Hat under Arm' +p121223 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p121224 +sg25273 +S'etching' +p121225 +sg25275 +S'1784' +p121226 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b354.jpg' +p121227 +sg25267 +g27 +sa(dp121228 +g25268 +S'Young Man with Sword, Cane and Dog' +p121229 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p121230 +sg25273 +S'etching' +p121231 +sg25275 +S'1784' +p121232 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b355.jpg' +p121233 +sg25267 +g27 +sa(dp121234 +g25268 +S'Infancy' +p121235 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p121236 +sg25273 +S'etching' +p121237 +sg25275 +S'1793' +p121238 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3b1.jpg' +p121239 +sg25267 +g27 +sa(dp121240 +g25268 +S'Childhood' +p121241 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p121242 +sg25273 +S'etching' +p121243 +sg25275 +S'1793' +p121244 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3b2.jpg' +p121245 +sg25267 +g27 +sa(dp121246 +g25268 +S'Lovers' +p121247 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p121248 +sg25273 +S'etching' +p121249 +sg25275 +S'1793' +p121250 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3b3.jpg' +p121251 +sg25267 +g27 +sa(dp121252 +g25268 +S'Bethrothal' +p121253 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p121254 +sg25273 +S'etching' +p121255 +sg25275 +S'1793' +p121256 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3b4.jpg' +p121257 +sg25267 +g27 +sa(dp121258 +g25268 +S'Growing Family' +p121259 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p121260 +sg25273 +S'etching' +p121261 +sg25275 +S'1793' +p121262 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3b5.jpg' +p121263 +sg25267 +g27 +sa(dp121264 +g25268 +S'Family Grown' +p121265 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p121266 +sg25273 +S'etching' +p121267 +sg25275 +S'1793' +p121268 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3b6.jpg' +p121269 +sg25267 +g27 +sa(dp121270 +g25268 +S'Christ on the Cross with Angels' +p121271 +sg25270 +S'German 15th Century' +p121272 +sg25273 +S'Schreiber, no. 953, State variant' +p121273 +sg25275 +S'\nwoodcut, hand-colored in blue, yellow, orange, green, brown, carmine, and gold on vellum' +p121274 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a652.jpg' +p121275 +sg25267 +g27 +sa(dp121276 +g25268 +S'Grandparents' +p121277 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p121278 +sg25273 +S'etching' +p121279 +sg25275 +S'1793' +p121280 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3b7.jpg' +p121281 +sg25267 +g27 +sa(dp121282 +g25268 +S'Death' +p121283 +sg25270 +S'Daniel Nikolaus Chodowiecki' +p121284 +sg25273 +S'etching' +p121285 +sg25275 +S'1793' +p121286 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3b8.jpg' +p121287 +sg25267 +g27 +sa(dp121288 +g25268 +S'Title Page with Fountain' +p121289 +sg25270 +S'Karel Dujardin' +p121290 +sg25273 +S'etching' +p121291 +sg25275 +S'1652' +p121292 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0d9.jpg' +p121293 +sg25267 +g27 +sa(dp121294 +g25268 +S'Title Page with Fountain' +p121295 +sg25270 +S'Karel Dujardin' +p121296 +sg25273 +S'etching' +p121297 +sg25275 +S'1652' +p121298 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0d8.jpg' +p121299 +sg25267 +g27 +sa(dp121300 +g25268 +S'Dog and Cat' +p121301 +sg25270 +S'Karel Dujardin' +p121302 +sg25273 +S'etching' +p121303 +sg25275 +S'unknown date\n' +p121304 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0d0.jpg' +p121305 +sg25267 +g27 +sa(dp121306 +g25268 +S'Two Asses' +p121307 +sg25270 +S'Karel Dujardin' +p121308 +sg25273 +S'etching' +p121309 +sg25275 +S'1652' +p121310 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0d5.jpg' +p121311 +sg25267 +g27 +sa(dp121312 +g25268 +S'Two Carts' +p121313 +sg25270 +S'Allart van Everdingen' +p121314 +sg25273 +S'etching with engraving' +p121315 +sg25275 +S'probably c. 1645/1656' +p121316 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1ad.jpg' +p121317 +sg25267 +g27 +sa(dp121318 +g25268 +S'Three Cottages' +p121319 +sg25270 +S'Allart van Everdingen' +p121320 +sg25273 +S'etching' +p121321 +sg25275 +S'probably c. 1645/1656' +p121322 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1c0.jpg' +p121323 +sg25267 +g27 +sa(dp121324 +g25268 +S'Three Cottages' +p121325 +sg25270 +S'Allart van Everdingen' +p121326 +sg25273 +S'etching with engraving' +p121327 +sg25275 +S'probably c. 1645/1656' +p121328 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1c2.jpg' +p121329 +sg25267 +g27 +sa(dp121330 +g25268 +S'The Knoll' +p121331 +sg25270 +S'Allart van Everdingen' +p121332 +sg25273 +S'etching' +p121333 +sg25275 +S'probably c. 1645/1656' +p121334 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1c6.jpg' +p121335 +sg25267 +g27 +sa(dp121336 +g25268 +S'Christ on the Cross with Angels' +p121337 +sg25270 +S'German 15th Century' +p121338 +sg25273 +S'Schreiber, no. 954' +p121339 +sg25275 +S'\nwoodcut, faintly touched in red' +p121340 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a64d.jpg' +p121341 +sg25267 +g27 +sa(dp121342 +g25268 +S'Large Rock' +p121343 +sg25270 +S'Allart van Everdingen' +p121344 +sg25273 +S'etching' +p121345 +sg25275 +S'probably c. 1645/1656' +p121346 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d12d.jpg' +p121347 +sg25267 +g27 +sa(dp121348 +g25268 +S'Large Rock' +p121349 +sg25270 +S'Allart van Everdingen' +p121350 +sg25273 +S'etching with engraving' +p121351 +sg25275 +S'probably c. 1645/1656' +p121352 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d12b.jpg' +p121353 +sg25267 +g27 +sa(dp121354 +g25268 +S'The Steeple' +p121355 +sg25270 +S'Allart van Everdingen' +p121356 +sg25273 +S'etching' +p121357 +sg25275 +S'probably c. 1645/1656' +p121358 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1b3.jpg' +p121359 +sg25267 +g27 +sa(dp121360 +g25268 +S'Boulder in the Woods' +p121361 +sg25270 +S'Allart van Everdingen' +p121362 +sg25273 +S'etching with engraving and drypoint' +p121363 +sg25275 +S'probably c. 1645/1656' +p121364 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1bb.jpg' +p121365 +sg25267 +g27 +sa(dp121366 +g25268 +S'Pilgrim with a Dog' +p121367 +sg25270 +S'Allart van Everdingen' +p121368 +sg25273 +S'etching' +p121369 +sg25275 +S'probably c. 1645/1656' +p121370 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d12e.jpg' +p121371 +sg25267 +g27 +sa(dp121372 +g25268 +S'Wheel underneath the Hay Barn' +p121373 +sg25270 +S'Allart van Everdingen' +p121374 +sg25273 +S'etching' +p121375 +sg25275 +S'probably c. 1645/1656' +p121376 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1b4.jpg' +p121377 +sg25267 +g27 +sa(dp121378 +g25268 +S'Cottage with Two Ladders' +p121379 +sg25270 +S'Allart van Everdingen' +p121380 +sg25273 +S'etching with engraving' +p121381 +sg25275 +S'probably c. 1645/1656' +p121382 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1bd.jpg' +p121383 +sg25267 +g27 +sa(dp121384 +g25268 +S'Firs in the Defile' +p121385 +sg25270 +S'Allart van Everdingen' +p121386 +sg25273 +S'etching with drypoint' +p121387 +sg25275 +S'probably c. 1645/1656' +p121388 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d192.jpg' +p121389 +sg25267 +g27 +sa(dp121390 +g25268 +S'Shepherd with Lamb' +p121391 +sg25270 +S'Allart van Everdingen' +p121392 +sg25273 +S'etching with engraving' +p121393 +sg25275 +S'probably c. 1645/1656' +p121394 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1b0.jpg' +p121395 +sg25267 +g27 +sa(dp121396 +g25268 +S'Two Horsemen on a Rocky Path' +p121397 +sg25270 +S'Allart van Everdingen' +p121398 +sg25273 +S'etching with drypoint' +p121399 +sg25275 +S'probably c. 1645/1656' +p121400 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1a6.jpg' +p121401 +sg25267 +g27 +sa(dp121402 +g25268 +S'The Piet\xc3\xa0' +p121403 +sg25270 +S'German 15th Century' +p121404 +sg25273 +S'Schreiber, no. 978, State a' +p121405 +sg25275 +S'\nwoodcut in brown, hand-colored in yellow ochre, green, rose, and gold' +p121406 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a548.jpg' +p121407 +sg25267 +g27 +sa(dp121408 +g25268 +S'Man on a Small Wooden Bridge' +p121409 +sg25270 +S'Allart van Everdingen' +p121410 +sg25273 +S'etching' +p121411 +sg25275 +S'probably c. 1645/1656' +p121412 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d11b.jpg' +p121413 +sg25267 +g27 +sa(dp121414 +g25268 +S'River at the Foot of a High Rock' +p121415 +sg25270 +S'Allart van Everdingen' +p121416 +sg25273 +S'etching' +p121417 +sg25275 +S'probably c. 1645/1656' +p121418 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d16a.jpg' +p121419 +sg25267 +g27 +sa(dp121420 +g25268 +S'Pointed Boulder at the Bank of a River' +p121421 +sg25270 +S'Allart van Everdingen' +p121422 +sg25273 +S'etching with engraving' +p121423 +sg25275 +S'probably c. 1645/1656' +p121424 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d18e.jpg' +p121425 +sg25267 +g27 +sa(dp121426 +g25268 +S'Hut with the Remains of a Hedge' +p121427 +sg25270 +S'Allart van Everdingen' +p121428 +sg25273 +S'etching' +p121429 +sg25275 +S'probably c. 1645/1656' +p121430 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d140.jpg' +p121431 +sg25267 +g27 +sa(dp121432 +g25268 +S'Berkenrode Castle' +p121433 +sg25270 +S'Pieter Jansz Saenredam' +p121434 +sg25273 +S'engraving' +p121435 +sg25275 +S'probably c. 1628' +p121436 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3af.jpg' +p121437 +sg25267 +g27 +sa(dp121438 +g25268 +S'Ruins of Assemburg Castle' +p121439 +sg25270 +S'Pieter Jansz Saenredam' +p121440 +sg25273 +S'engraving' +p121441 +sg25275 +S'probably c. 1628' +p121442 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3b0.jpg' +p121443 +sg25267 +g27 +sa(dp121444 +g25268 +S'Ice Sleighs' +p121445 +sg25270 +S'Peeter Bout' +p121446 +sg25273 +S'etching' +p121447 +sg25275 +S'unknown date\n' +p121448 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4eb.jpg' +p121449 +sg25267 +g27 +sa(dp121450 +g25268 +S'The Lime-Burner' +p121451 +sg25270 +S'James McNeill Whistler' +p121452 +sg25273 +S'etching' +p121453 +sg25275 +S'1859' +p121454 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aacb.jpg' +p121455 +sg25267 +g27 +sa(dp121456 +g25268 +S'Seaward Skerries' +p121457 +sg25270 +S'Anders Zorn' +p121458 +sg25273 +S'etching' +p121459 +sg25275 +S'1913' +p121460 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed3c.jpg' +p121461 +sg25267 +g27 +sa(dp121462 +g25268 +S'Wet' +p121463 +sg25270 +S'Anders Zorn' +p121464 +sg25273 +S'etching' +p121465 +sg25275 +S'1911' +p121466 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed24.jpg' +p121467 +sg25267 +g27 +sa(dp121468 +g25268 +S'Piet\xc3\xa0 with Saint John' +p121469 +sg25270 +S'German 15th Century' +p121470 +sg25273 +S'Schreiber, Vol. *, no. 981, State o' +p121471 +sg25275 +S'\nwoodcut, hand-colored in blue, red, green, ochre, orange, and gold; with additions in pen and ink' +p121472 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a54b.jpg' +p121473 +sg25267 +g27 +sa(dp121474 +g25268 +S'Procession Leaving a Church (La sortie de la procession)' +p121475 +sg25270 +S'Alphonse Legros' +p121476 +sg25273 +S'etching' +p121477 +sg25275 +S'unknown date\n' +p121478 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b3f.jpg' +p121479 +sg25267 +g27 +sa(dp121480 +g25268 +S"Siesta of a Laborer (Sieste d'un ouvrier)" +p121481 +sg25270 +S'Alphonse Legros' +p121482 +sg25273 +S'drypoint' +p121483 +sg25275 +S'unknown date\n' +p121484 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b79.jpg' +p121485 +sg25267 +g27 +sa(dp121486 +g25268 +S'Salmon Fisher (Le pecheur de saumon)' +p121487 +sg25270 +S'Alphonse Legros' +p121488 +sg25273 +S'etching' +p121489 +sg25275 +S'unknown date\n' +p121490 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b82.jpg' +p121491 +sg25267 +g27 +sa(dp121492 +g25268 +S"Peasant Woman Seated near a Hedge (Paysanne assise pres d'une haie)" +p121493 +sg25270 +S'Alphonse Legros' +p121494 +sg25273 +S'etching and drypoint' +p121495 +sg25275 +S'unknown date\n' +p121496 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009914.jpg' +p121497 +sg25267 +g27 +sa(dp121498 +g25268 +S"Choir in a Spanish Church (Le choeur d'une eglise espagnole)" +p121499 +sg25270 +S'Alphonse Legros' +p121500 +sg25273 +S'etching' +p121501 +sg25275 +S'1860' +p121502 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b1e.jpg' +p121503 +sg25267 +g27 +sa(dp121504 +g25268 +S'Shed (Le hangar)' +p121505 +sg25270 +S'Alphonse Legros' +p121506 +sg25273 +S'etching? and drypoint' +p121507 +sg25275 +S'unknown date\n' +p121508 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bdf.jpg' +p121509 +sg25267 +g27 +sa(dp121510 +g25268 +S'Sir E.J. Poynter, P.R.A.' +p121511 +sg25270 +S'Alphonse Legros' +p121512 +sg25273 +S'etching and drypoint?' +p121513 +sg25275 +S'unknown date\n' +p121514 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b27.jpg' +p121515 +sg25267 +g27 +sa(dp121516 +g25268 +S'The Refectory (Le refectoire)' +p121517 +sg25270 +S'Alphonse Legros' +p121518 +sg25273 +S'etching' +p121519 +sg25275 +S'unknown date\n' +p121520 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b21.jpg' +p121521 +sg25267 +g27 +sa(dp121522 +g25268 +S'Bathers (Les baigneuses)' +p121523 +sg25270 +S'Alphonse Legros' +p121524 +sg25273 +S'drypoint' +p121525 +sg25275 +S'unknown date\n' +p121526 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b38.jpg' +p121527 +sg25267 +g27 +sa(dp121528 +g25268 +S'English Beggars (Les mendiants anglais)' +p121529 +sg25270 +S'Alphonse Legros' +p121530 +sg25273 +S'etching and drypoint' +p121531 +sg25275 +S'1875' +p121532 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b4d.jpg' +p121533 +sg25267 +g27 +sa(dp121534 +g25268 +S'Piet\xc3\xa0 with Saint John' +p121535 +sg25270 +S'German 15th Century' +p121536 +sg25273 +S'Schreiber, no. 982' +p121537 +sg25275 +S'\nwoodcut in brown, hand-colored in red, green, tan, yellow, and black' +p121538 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a54a.jpg' +p121539 +sg25267 +g27 +sa(dp121540 +g25268 +S'Farm with Large Tree (La ferme au grand arbre)' +p121541 +sg25270 +S'Alphonse Legros' +p121542 +sg25273 +S'etching, drypoint and aquatint?' +p121543 +sg25275 +S'unknown date\n' +p121544 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b5b.jpg' +p121545 +sg25267 +g27 +sa(dp121546 +g25268 +S'Old Woman Seated (La vieille femme assise)' +p121547 +sg25270 +S'Alphonse Legros' +p121548 +sg25273 +S'etching and drypoint?' +p121549 +sg25275 +S'unknown date\n' +p121550 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098fb.jpg' +p121551 +sg25267 +g27 +sa(dp121552 +g25268 +S'Broken Cart (La charrette brisee)' +p121553 +sg25270 +S'Alphonse Legros' +p121554 +sg25273 +S'etching' +p121555 +sg25275 +S'unknown date\n' +p121556 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b4b.jpg' +p121557 +sg25267 +g27 +sa(dp121558 +g25268 +S'Milkmaid of Boulogne, 1st plate (Laitiere a Boulogne)' +p121559 +sg25270 +S'Alphonse Legros' +p121560 +sg25273 +S'etching' +p121561 +sg25275 +S'unknown date\n' +p121562 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b76.jpg' +p121563 +sg25267 +g27 +sa(dp121564 +g25268 +S'Milkmaid of Boulogne, 1st plate (Laitiere a Boulogne)' +p121565 +sg25270 +S'Alphonse Legros' +p121566 +sg25273 +S'etching' +p121567 +sg25275 +S'unknown date\n' +p121568 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b78.jpg' +p121569 +sg25267 +g27 +sa(dp121570 +g25268 +S'Farm on a Hillside in Sunlight (La ferme du coteau; Effet de soleil sur le coteau)' +p121571 +sg25270 +S'Alphonse Legros' +p121572 +sg25273 +S'etching' +p121573 +sg25275 +S'unknown date\n' +p121574 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098ec.jpg' +p121575 +sg25267 +g27 +sa(dp121576 +g25268 +S'Farm on a Hillside in Sunlight (La ferme du coteau; Effet de soleil sur le coteau)' +p121577 +sg25270 +S'Alphonse Legros' +p121578 +sg25273 +S'etching' +p121579 +sg25275 +S'unknown date\n' +p121580 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098e6.jpg' +p121581 +sg25267 +g27 +sa(dp121582 +g25268 +S'Day-dream (Le reveur)' +p121583 +sg25270 +S'Alphonse Legros' +p121584 +sg25273 +S'drypoint and photo reproductive process?' +p121585 +sg25275 +S'unknown date\n' +p121586 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098eb.jpg' +p121587 +sg25267 +g27 +sa(dp121588 +g25268 +S'Woman Reading: Lesson under the Trees (La liseuse: La lecture sous les arbres)' +p121589 +sg25270 +S'Alphonse Legros' +p121590 +sg25273 +S'etching and drypoint?' +p121591 +sg25275 +S'unknown date\n' +p121592 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b83.jpg' +p121593 +sg25267 +g27 +sa(dp121594 +g25268 +S'Traveler Resting (Repos du voyageur)' +p121595 +sg25270 +S'Alphonse Legros' +p121596 +sg25273 +S'etching and drypoint' +p121597 +sg25275 +S'unknown date\n' +p121598 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098e7.jpg' +p121599 +sg25267 +g27 +sa(dp121600 +g25268 +S'Christ Sitting on His Tomb with One Angel' +p121601 +sg25270 +S'German 15th Century' +p121602 +sg25273 +S'Schreiber, no. 988' +p121603 +sg25275 +S'\nwoodcut, hand-colored in carmine red and green' +p121604 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a585.jpg' +p121605 +sg25267 +g27 +sa(dp121606 +g25268 +S'Banks of the Liane (Les bords de la Liane)' +p121607 +sg25270 +S'Alphonse Legros' +p121608 +sg25273 +S'etching' +p121609 +sg25275 +S'unknown date\n' +p121610 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098ef.jpg' +p121611 +sg25267 +g27 +sa(dp121612 +g25268 +S'Job, 2nd plate' +p121613 +sg25270 +S'Alphonse Legros' +p121614 +sg25273 +S'drypoint and etching? on light green paper' +p121615 +sg25275 +S'unknown date\n' +p121616 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000991d.jpg' +p121617 +sg25267 +g27 +sa(dp121618 +g25268 +S'Edge of a Brook (Bord de ruisseau)' +p121619 +sg25270 +S'Alphonse Legros' +p121620 +sg25273 +S'drypoint in brown' +p121621 +sg25275 +S'unknown date\n' +p121622 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009923.jpg' +p121623 +sg25267 +g27 +sa(dp121624 +g25268 +S'Edge of a Brook (Bord de ruisseau)' +p121625 +sg25270 +S'Alphonse Legros' +p121626 +sg25273 +S'drypoint' +p121627 +sg25275 +S'unknown date\n' +p121628 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009925.jpg' +p121629 +sg25267 +g27 +sa(dp121630 +g25268 +S'Thatched Cottage (Chaumiere)' +p121631 +sg25270 +S'Alphonse Legros' +p121632 +sg25273 +S'etching and drypoint' +p121633 +sg25275 +S'unknown date\n' +p121634 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b92.jpg' +p121635 +sg25267 +g27 +sa(dp121636 +g25268 +S"Birch Trees: Water's Edge Seen in Morning Light (Les Bouleaux: Bord de l'eau, effet du matin)" +p121637 +sg25270 +S'Alphonse Legros' +p121638 +sg25273 +S'etching and drypoint?' +p121639 +sg25275 +S'unknown date\n' +p121640 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009ba4.jpg' +p121641 +sg25267 +g27 +sa(dp121642 +g25268 +S'Castle in Spain (Chateau en Espagne)' +p121643 +sg25270 +S'Alphonse Legros' +p121644 +sg25273 +S'drypoint and etching' +p121645 +sg25275 +S'unknown date\n' +p121646 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bd4.jpg' +p121647 +sg25267 +g27 +sa(dp121648 +g25268 +S'Abandoned Village (Le village abondonne)' +p121649 +sg25270 +S'Alphonse Legros' +p121650 +sg25273 +S'etching and drypoint?' +p121651 +sg25275 +S'unknown date\n' +p121652 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009be2.jpg' +p121653 +sg25267 +g27 +sa(dp121654 +g25268 +S'Along the River (Sur la riviere)' +p121655 +sg25270 +S'Alphonse Legros' +p121656 +sg25273 +S'drypoint' +p121657 +sg25275 +S'unknown date\n' +p121658 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c03.jpg' +p121659 +sg25267 +g27 +sa(dp121660 +g25268 +S'Thinker (Le penseur)' +p121661 +sg25270 +S'Alphonse Legros' +p121662 +sg25273 +S'etching and drypoint' +p121663 +sg25275 +S'unknown date\n' +p121664 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c10.jpg' +p121665 +sg25267 +g27 +sa(dp121666 +g25268 +S'Christ in the Tomb with Two Angels' +p121667 +sg25270 +S'German 15th Century' +p121668 +sg25273 +S'Schreiber, Vol. *, no. 990, State a' +p121669 +sg25275 +S'\nwoodcut, hand-colored in red, orange-yellow, blue-green, green, and gold' +p121670 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a651.jpg' +p121671 +sg25267 +g27 +sa(dp121672 +g25268 +S'Farm on the Hillside (La ferme sur le coteau)' +p121673 +sg25270 +S'Alphonse Legros' +p121674 +sg25273 +S'etching and drypoint' +p121675 +sg25275 +S'unknown date\n' +p121676 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c0f.jpg' +p121677 +sg25267 +g27 +sa(dp121678 +g25268 +S'Fagot-makers (Les faiseurs de fagots)' +p121679 +sg25270 +S'Alphonse Legros' +p121680 +sg25273 +S'etching and drypoint' +p121681 +sg25275 +S'unknown date\n' +p121682 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b73.jpg' +p121683 +sg25267 +g27 +sa(dp121684 +g25268 +S"Landscape with Storm (Paysage d'orage)" +p121685 +sg25270 +S'Alphonse Legros' +p121686 +sg25273 +S'etching and drypoint' +p121687 +sg25275 +S'unknown date\n' +p121688 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c47.jpg' +p121689 +sg25267 +g27 +sa(dp121690 +g25268 +S'Returning with the Hay (Rentrant le foin)' +p121691 +sg25270 +S'Alphonse Legros' +p121692 +sg25273 +S'etching and drypoint' +p121693 +sg25275 +S'unknown date\n' +p121694 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c4b.jpg' +p121695 +sg25267 +g27 +sa(dp121696 +g25268 +S'Return from the Fields (Le retour des champs)' +p121697 +sg25270 +S'Alphonse Legros' +p121698 +sg25273 +S'etching' +p121699 +sg25275 +S'unknown date\n' +p121700 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009df7.jpg' +p121701 +sg25267 +g27 +sa(dp121702 +g25268 +S'Sinbad the Sailor (Sinbad le marin)' +p121703 +sg25270 +S'Alphonse Legros' +p121704 +sg25273 +S'etching and drypoint?' +p121705 +sg25275 +S'unknown date\n' +p121706 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c70.jpg' +p121707 +sg25267 +g27 +sa(dp121708 +g25268 +S'Sinbad the Sailor (Sinbad le marin)' +p121709 +sg25270 +S'Alphonse Legros' +p121710 +sg25273 +S'etching' +p121711 +sg25275 +S'unknown date\n' +p121712 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c6d.jpg' +p121713 +sg25267 +g27 +sa(dp121714 +g25268 +S'Ruins of a Chateau (Les ruines du chateau)' +p121715 +sg25270 +S'Alphonse Legros' +p121716 +sg25273 +S'etching' +p121717 +sg25275 +S'unknown date\n' +p121718 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dec.jpg' +p121719 +sg25267 +g27 +sa(dp121720 +g25268 +S'Fountain: Grotesque, Children and Basin (Une fountaine: Masque, enfants et bassin)' +p121721 +sg25270 +S'Alphonse Legros' +p121722 +sg25273 +S'etching' +p121723 +sg25275 +S'unknown date\n' +p121724 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e21.jpg' +p121725 +sg25267 +g27 +sa(dp121726 +g25268 +S'Fountain: Grotesque, Children and Basin (Une fountaine: Masque, enfants et bassin)' +p121727 +sg25270 +S'Alphonse Legros' +p121728 +sg25273 +S'etching and drypoint?' +p121729 +sg25275 +S'unknown date\n' +p121730 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e22.jpg' +p121731 +sg25267 +g27 +sa(dp121732 +g25268 +S'Christ between Maria and John' +p121733 +sg25270 +S'German 15th Century' +p121734 +sg25273 +S'Schreiber, no. 992' +p121735 +sg25275 +S'\nwoodcut' +p121736 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a63a.jpg' +p121737 +sg25267 +g27 +sa(dp121738 +g25268 +S'Orphans (Les orphelins (?))' +p121739 +sg25270 +S'Alphonse Legros' +p121740 +sg25273 +S'etching and drypoint?' +p121741 +sg25275 +S'unknown date\n' +p121742 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d6b.jpg' +p121743 +sg25267 +g27 +sa(dp121744 +g25268 +S"Harvesters Surprised by the Storm (Moissonneuses surprises par l'orage)" +p121745 +sg25270 +S'Alphonse Legros' +p121746 +sg25273 +S'etching' +p121747 +sg25275 +S'unknown date\n' +p121748 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fa8.jpg' +p121749 +sg25267 +g27 +sa(dp121750 +g25268 +S"Fishing for Crayfish (Les pecheurs d'ecrevisses)" +p121751 +sg25270 +S'Alphonse Legros' +p121752 +sg25273 +S'drypoint' +p121753 +sg25275 +S'unknown date\n' +p121754 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f9c.jpg' +p121755 +sg25267 +g27 +sa(dp121756 +g25268 +S'Geographer (Le geographe)' +p121757 +sg25270 +S'Alphonse Legros' +p121758 +sg25273 +S'drypoint' +p121759 +sg25275 +S'unknown date\n' +p121760 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098f5.jpg' +p121761 +sg25267 +g27 +sa(dp121762 +g25268 +S'Saint Peter and Saint Paul at the Door of Bonhomme Misere (Saint Pierre et Saint Paula la port du Bonhomme Misere)' +p121763 +sg25270 +S'Alphonse Legros' +p121764 +sg25273 +S'etching and drypoint' +p121765 +sg25275 +S'unknown date\n' +p121766 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098f7.jpg' +p121767 +sg25267 +g27 +sa(dp121768 +g25268 +S'Supper of the Poor (Le souper chez misere)' +p121769 +sg25270 +S'Alphonse Legros' +p121770 +sg25273 +S'etching and drypoint on green paper' +p121771 +sg25275 +S'unknown date\n' +p121772 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098f0.jpg' +p121773 +sg25267 +g27 +sa(dp121774 +g25268 +S'The Bersaglieri' +p121775 +sg25270 +S'George Benjamin Luks' +p121776 +sg25273 +S'oil on canvas' +p121777 +sg25275 +S'1918' +p121778 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000151.jpg' +p121779 +sg25267 +g27 +sa(dp121780 +g25268 +S'America' +p121781 +sg25270 +S'Artist Information (' +p121782 +sg25273 +S'(designer)' +p121783 +sg25275 +S'\n' +p121784 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063a7.jpg' +p121785 +sg25267 +g27 +sa(dp121786 +g25268 +S'Encounter of the Moorish Horsemen (Rencontre de Cavaliers Maures)' +p121787 +sg25270 +S'Eug\xc3\xa8ne Delacroix' +p121788 +sg25273 +S'etching and drypoint' +p121789 +sg25275 +S'1834' +p121790 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000959b.jpg' +p121791 +sg25267 +g27 +sa(dp121792 +g25273 +S'oil on canvas' +p121793 +sg25267 +g27 +sg25275 +S'1844' +p121794 +sg25268 +S'Thomas Whittemore' +p121795 +sg25270 +S'Alvan Clark' +p121796 +sa(dp121797 +g25268 +S'Madonna as a Protectress' +p121798 +sg25270 +S'German 15th Century' +p121799 +sg25273 +S'Schreiber, no. 1010' +p121800 +sg25275 +S'\nwoodcut, hand-colored in rose carmine, green, and yellow' +p121801 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a586.jpg' +p121802 +sg25267 +g27 +sa(dp121803 +g25273 +S'oil on canvas' +p121804 +sg25267 +g27 +sg25275 +S'1845' +p121805 +sg25268 +S'Lovice Corbett Whittemore (Mrs. Thomas Whittemore)' +p121806 +sg25270 +S'Alvan Clark' +p121807 +sa(dp121808 +g25268 +S'Gellius de Bouma' +p121809 +sg25270 +S'Cornelis Visscher' +p121810 +sg25273 +S'engraving and etching' +p121811 +sg25275 +S'unknown date\n' +p121812 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5df.jpg' +p121813 +sg25267 +g27 +sa(dp121814 +g25268 +S"Mattias de' Medici" +p121815 +sg25270 +S'Artist Information (' +p121816 +sg25273 +S'Flemish, 1597 - 1681' +p121817 +sg25275 +S'(related artist)' +p121818 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e011.jpg' +p121819 +sg25267 +g27 +sa(dp121820 +g25268 +S'Madonna and Child with Saint Peter and Saint Stephen [left panel]' +p121821 +sg25270 +S'Martino di Bartolomeo di Biagio' +p121822 +sg25273 +S', c. 1400' +p121823 +sg25275 +S'\n' +p121824 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b13.jpg' +p121825 +sg25267 +g27 +sa(dp121826 +g25268 +S'Madonna and Child with Saint Peter and Saint Stephen [middle panel]' +p121827 +sg25270 +S'Martino di Bartolomeo di Biagio' +p121828 +sg25273 +S', c. 1400' +p121829 +sg25275 +S'\n' +p121830 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b14.jpg' +p121831 +sg25267 +g27 +sa(dp121832 +g25268 +S'Madonna and Child with Saint Peter and Saint Stephen [right panel]' +p121833 +sg25270 +S'Martino di Bartolomeo di Biagio' +p121834 +sg25273 +S', c. 1400' +p121835 +sg25275 +S'\n' +p121836 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b15.jpg' +p121837 +sg25267 +g27 +sa(dp121838 +g25268 +S'Portrait of a Man with a Dog' +p121839 +sg25270 +S'Cariani' +p121840 +sg25273 +S'oil on canvas' +p121841 +sg25275 +S'c. 1520' +p121842 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a0006699.jpg' +p121843 +sg25267 +g27 +sa(dp121844 +g25268 +S'Woman with a Cat' +p121845 +sg25270 +S'Auguste Renoir' +p121846 +sg25273 +S'oil on canvas' +p121847 +sg25275 +S'c. 1875' +p121848 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000071e.jpg' +p121849 +sg25267 +g27 +sa(dp121850 +g25268 +S'Dancing in the Country (La danse a la campagne)' +p121851 +sg25270 +S'Auguste Renoir' +p121852 +sg25273 +S'etching on japan paper' +p121853 +sg25275 +S'c. 1890' +p121854 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099bc.jpg' +p121855 +sg25267 +g27 +sa(dp121856 +g25273 +S'(artist)' +p121857 +sg25267 +g27 +sg25275 +S'\n' +p121858 +sg25268 +S'Robert Abbot, Bishop of Salisbury' +p121859 +sg25270 +S'Artist Information (' +p121860 +sa(dp121861 +g25268 +S'Madonna as Protectress' +p121862 +sg25270 +S'German 15th Century' +p121863 +sg25273 +S'Schreiber, no. 1011' +p121864 +sg25275 +S'\nwoodcut in brown, hand-colored in blue, red brown, yellow, gold, and red' +p121865 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a544.jpg' +p121866 +sg25267 +g27 +sa(dp121867 +g25273 +S'engraving' +p121868 +sg25267 +g27 +sg25275 +S'unknown date\n' +p121869 +sg25268 +S'Domini Robertus, Episcopi Salisbury (Robert Abbot, Bishop of Salisbury)' +p121870 +sg25270 +S'Francis Delaram' +p121871 +sa(dp121872 +g25273 +S'engraving' +p121873 +sg25267 +g27 +sg25275 +S'1607' +p121874 +sg25268 +S'Joannes Adams' +p121875 +sg25270 +S'Dominicus Custos' +p121876 +sa(dp121877 +g25273 +S', 1601' +p121878 +sg25267 +g27 +sg25275 +S'\n' +p121879 +sg25268 +S'Joannes Adams' +p121880 +sg25270 +S'Crispijn van de Passe I' +p121881 +sa(dp121882 +g25273 +S'engraving' +p121883 +sg25267 +g27 +sg25275 +S'published 1602' +p121884 +sg25268 +S'Godfrey Adelmar, Founder of the Knights Templar' +p121885 +sg25270 +S'William Rogers' +p121886 +sa(dp121887 +g25273 +S', unknown date' +p121888 +sg25267 +g27 +sg25275 +S'\n' +p121889 +sg25268 +S'Albert of Austria, Archduke' +p121890 +sg25270 +S'Crispijn van de Passe I' +p121891 +sa(dp121892 +g25273 +S'(artist after)' +p121893 +sg25267 +g27 +sg25275 +S'\n' +p121894 +sg25268 +S'Albert, Archduke of Austria' +p121895 +sg25270 +S'Artist Information (' +p121896 +sa(dp121897 +g25273 +S', unknown date' +p121898 +sg25267 +g27 +sg25275 +S'\n' +p121899 +sg25268 +S'Albert of Austria, Archduke' +p121900 +sg25270 +S'Crispijn van de Passe I' +p121901 +sa(dp121902 +g25273 +S'engraving' +p121903 +sg25267 +g27 +sg25275 +S'unknown date\n' +p121904 +sg25268 +S'Albert VII, Archduke of Austria' +p121905 +sg25270 +S'Antonie Wierix' +p121906 +sa(dp121907 +g25273 +S'engraving' +p121908 +sg25267 +g27 +sg25275 +S'unknown date\n' +p121909 +sg25268 +S'Albert VII, Archduke of Austria' +p121910 +sg25270 +S'Pieter de Jode I' +p121911 +sa(dp121912 +g25273 +S', unknown date' +p121913 +sg25267 +g27 +sg25275 +S'\n' +p121914 +sg25268 +S'Albert VII, Archduke of Austria' +p121915 +sg25270 +S'Hieronymus Wierix' +p121916 +sa(dp121917 +g25268 +S'Madonna in a Wreath of Roses' +p121918 +sg25270 +S'German 15th Century' +p121919 +sg25273 +S'diameter (trimmed within plate mark): 17.8 cm (7 in.)' +p121920 +sg25275 +S'\nwoodcut, hand-colored in red lake, green, and gray-yellow' +p121921 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a54e.jpg' +p121922 +sg25267 +g27 +sa(dp121923 +g25273 +S'engraving' +p121924 +sg25267 +g27 +sg25275 +S'unknown date\n' +p121925 +sg25268 +S'Archduke Albert and Isabella Clara Eugenie of Austria' +p121926 +sg25270 +S'Hans Collaert' +p121927 +sa(dp121928 +g25273 +S'engraving' +p121929 +sg25267 +g27 +sg25275 +S'unknown date\n' +p121930 +sg25268 +S"Jeanne D'Albret, Queen of Navarre, Mother of Henry IV of France" +p121931 +sg25270 +S'Thomas de Leu' +p121932 +sa(dp121933 +g25273 +S'engraving' +p121934 +sg25267 +g27 +sg25275 +S'unknown date\n' +p121935 +sg25268 +S"Jeanne D'Albret, Queen of Navarre and Mother of Henry IV of France" +p121936 +sg25270 +S'Marc Duval' +p121937 +sa(dp121938 +g25273 +S'engraving' +p121939 +sg25267 +g27 +sg25275 +S'unknown date\n' +p121940 +sg25268 +S"Jeanne d'Albret, Queen of Navarre, Mother of Henry IV of France" +p121941 +sg25270 +S'Gerard de Lairesse' +p121942 +sa(dp121943 +g25273 +S'engraving' +p121944 +sg25267 +g27 +sg25275 +S'unknown date\n' +p121945 +sg25268 +S'Andrea Alciati' +p121946 +sg25270 +S'Nicolas de Larmessin IV' +p121947 +sa(dp121948 +g25273 +S'engraving' +p121949 +sg25267 +g27 +sg25275 +S'1537' +p121950 +sg25268 +S'Self-Portrait' +p121951 +sg25270 +S'Heinrich Aldegrever' +p121952 +sa(dp121953 +g25273 +S'(artist after)' +p121954 +sg25267 +g27 +sg25275 +S'\n' +p121955 +sg25268 +S'Henry Aldrich, Dean of Christ Church' +p121956 +sg25270 +S'Artist Information (' +p121957 +sa(dp121958 +g25273 +S'engraving' +p121959 +sg25267 +g27 +sg25275 +S'published 1602' +p121960 +sg25268 +S'Godfredus Aldemarus Alexandrino (Godfrey Adelmar)' +p121961 +sg25270 +S'William Rogers' +p121962 +sa(dp121963 +g25273 +S'engraving' +p121964 +sg25267 +g27 +sg25275 +S'published 1602' +p121965 +sg25268 +S'Alphonso, King of Castile' +p121966 +sg25270 +S'William Rogers' +p121967 +sa(dp121968 +g25273 +S'engraving' +p121969 +sg25267 +g27 +sg25275 +S'unknown date\n' +p121970 +sg25268 +S'Alphonso, King of Castile' +p121971 +sg25270 +S'William Rogers' +p121972 +sa(dp121973 +g25268 +S'Madonna in a Rosary with Saints' +p121974 +sg25270 +S'German 15th Century' +p121975 +sg25273 +S'Schreiber, no. 1012, State b' +p121976 +sg25275 +S'\nwoodcut, hand-colored in red, ochre, green, gray, and tan' +p121977 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a54c.jpg' +p121978 +sg25267 +g27 +sa(dp121979 +g25273 +S'engraving' +p121980 +sg25267 +g27 +sg25275 +S'unknown date\n' +p121981 +sg25268 +S'Fernando Alvarez de Toledo, Duke of Alva' +p121982 +sg25270 +S'Unknown 19th Century' +p121983 +sa(dp121984 +g25268 +S'Amalia, Wife of Fredierick Henry, Prince of Orange' +p121985 +sg25270 +S'Frederik de Wit' +p121986 +sg25273 +S'engraving' +p121987 +sg25275 +S'unknown date\n' +p121988 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e01c.jpg' +p121989 +sg25267 +g27 +sa(dp121990 +g25273 +S'engraving' +p121991 +sg25267 +g27 +sg25275 +S'unknown date\n' +p121992 +sg25268 +S'Dutch Ambassadors' +p121993 +sg25270 +S'Unknown 19th Century' +p121994 +sa(dp121995 +g25273 +S', 1618' +p121996 +sg25267 +g27 +sg25275 +S'\n' +p121997 +sg25268 +S'Lancelot Andrewes, Bishop of Winchester' +p121998 +sg25270 +S'Simon van de Passe' +p121999 +sa(dp122000 +g25273 +S'engraving' +p122001 +sg25267 +g27 +sg25275 +S'1632' +p122002 +sg25268 +S'Lancelot Andrewes, Bishop of Winchester' +p122003 +sg25270 +S'John Payne' +p122004 +sa(dp122005 +g25273 +S'Rosenwald Collection' +p122006 +sg25267 +g27 +sg25275 +S'\nengraving' +p122007 +sg25268 +S'Andreas, Cardinal of the Holy Roman Empire' +p122008 +sg25270 +S'Cornelius Pinssen' +p122009 +sa(dp122010 +g25273 +S'engraving' +p122011 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122012 +sg25268 +S"Francis, Duc d'Anjou, Son of Henri II" +p122013 +sg25270 +S'Unknown 19th Century' +p122014 +sa(dp122015 +g25273 +S'engraving' +p122016 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122017 +sg25268 +S'Anna, Daughter of Duke of Julich and Cleves' +p122018 +sg25270 +S'Unknown 19th Century' +p122019 +sa(dp122020 +g25273 +S'engraving' +p122021 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122022 +sg25268 +S'Anna, Wife of Matthias, Roman Emperor' +p122023 +sg25270 +S'Unknown 19th Century' +p122024 +sa(dp122025 +g25273 +S'engraving' +p122026 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122027 +sg25268 +S'Anna, Wife of Matthias, Roman Emperor' +p122028 +sg25270 +S'Aegidius Sadeler II' +p122029 +sa(dp122030 +g25268 +S'The Assumption of the Virgin' +p122031 +sg25270 +S'German 15th Century' +p122032 +sg25273 +S'Schreiber, no. 1017, State b' +p122033 +sg25275 +S'\nwoodcut' +p122034 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a545.jpg' +p122035 +sg25267 +g27 +sa(dp122036 +g25273 +S'(artist after)' +p122037 +sg25267 +g27 +sg25275 +S'\n' +p122038 +sg25268 +S'Anna Regina (Anne, Queen of France and Navarre)' +p122039 +sg25270 +S'Artist Information (' +p122040 +sa(dp122041 +g25273 +S'engraving' +p122042 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122043 +sg25268 +S'Anne Boleyn' +p122044 +sg25270 +S'Renold Elstrack' +p122045 +sa(dp122046 +g25273 +S', 1604' +p122047 +sg25267 +g27 +sg25275 +S'\n' +p122048 +sg25268 +S'Anne of England' +p122049 +sg25270 +S'Crispijn van de Passe I' +p122050 +sa(dp122051 +g25273 +S', 1604' +p122052 +sg25267 +g27 +sg25275 +S'\n' +p122053 +sg25268 +S'Anne of England' +p122054 +sg25270 +S'Crispijn van de Passe I' +p122055 +sa(dp122056 +g25273 +S', unknown date' +p122057 +sg25267 +g27 +sg25275 +S'\n' +p122058 +sg25268 +S'Anne of Denmark' +p122059 +sg25270 +S'Simon van de Passe' +p122060 +sa(dp122061 +g25273 +S'engraving' +p122062 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122063 +sg25268 +S'Anne of Denmark' +p122064 +sg25270 +S'Unknown 19th Century' +p122065 +sa(dp122066 +g25273 +S'engraving' +p122067 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122068 +sg25268 +S'Anne of Denmark' +p122069 +sg25270 +S'William Sherwin' +p122070 +sa(dp122071 +g25273 +S'engraving' +p122072 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122073 +sg25268 +S'Anne of Austria, Wife of Louis XIII' +p122074 +sg25270 +S'Jean Picquet' +p122075 +sa(dp122076 +g25273 +S'engraving' +p122077 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122078 +sg25268 +S'Portrait of Man in Oval' +p122079 +sg25270 +S'Unknown 19th Century' +p122080 +sa(dp122081 +g25273 +S'engraving' +p122082 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122083 +sg25268 +S'Portrait of a Nun Holding Crucifix' +p122084 +sg25270 +S'Unknown 19th Century' +p122085 +sa(dp122086 +g25268 +S'Madonna and Child' +p122087 +sg25270 +S'Spanish 15th Century' +p122088 +sg25273 +S'Schreiber, no. 1027, State c' +p122089 +sg25275 +S'\nhand-colored woodcut' +p122090 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed51.jpg' +p122091 +sg25267 +g27 +sa(dp122092 +g25273 +S'engraving' +p122093 +sg25267 +g27 +sg25275 +S'1623' +p122094 +sg25268 +S'Man With Ruffled Collar' +p122095 +sg25270 +S'Unknown 19th Century' +p122096 +sa(dp122097 +g25273 +S'engraving' +p122098 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122099 +sg25268 +S'Head and Bust in Oval in a Vertical Rectangle' +p122100 +sg25270 +S'Unknown 19th Century' +p122101 +sa(dp122102 +g25273 +S'engraving' +p122103 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122104 +sg25268 +S'Portrait of a Man Holding a Laurel Wreath' +p122105 +sg25270 +S'Unknown 19th Century' +p122106 +sa(dp122107 +g25273 +S'(artist after)' +p122108 +sg25267 +g27 +sg25275 +S'\n' +p122109 +sg25268 +S'Unknown Man' +p122110 +sg25270 +S'Artist Information (' +p122111 +sa(dp122112 +g25273 +S'(artist after)' +p122113 +sg25267 +g27 +sg25275 +S'\n' +p122114 +sg25268 +S'Portrait of Man in Oval with Decoration of Winged Figures' +p122115 +sg25270 +S'Artist Information (' +p122116 +sa(dp122117 +g25273 +S'engraving' +p122118 +sg25267 +g27 +sg25275 +S'1677' +p122119 +sg25268 +S'Portrait of a Man' +p122120 +sg25270 +S'Etienne Gantrel' +p122121 +sa(dp122122 +g25273 +S'engraving' +p122123 +sg25267 +g27 +sg25275 +S'1615' +p122124 +sg25268 +S'Portrait of a Man and His Son' +p122125 +sg25270 +S'Peter Isselburg' +p122126 +sa(dp122127 +g25273 +S'engraving' +p122128 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122129 +sg25268 +S'Portrait of a Woman' +p122130 +sg25270 +S'Lucas Kilian' +p122131 +sa(dp122132 +g25273 +S', unknown date' +p122133 +sg25267 +g27 +sg25275 +S'\n' +p122134 +sg25268 +S'Medallion Portrait of Man in Ruff and Pointed Beard' +p122135 +sg25270 +S'Simon van de Passe' +p122136 +sa(dp122137 +g25273 +S'engraving' +p122138 +sg25267 +g27 +sg25275 +S'1719' +p122139 +sg25268 +S'Anonymous' +p122140 +sg25270 +S'Bernard Picart' +p122141 +sa(dp122142 +g25268 +S'Madonna and Child in a Glory' +p122143 +sg25270 +S'German 15th Century' +p122144 +sg25273 +S'Schreiber, no. 1079, State (=1078)' +p122145 +sg25275 +S'\nwoodcut in brown, hand-colored in red lake, blue, yellow, green, gold, and orange; retouched with pen and ink' +p122146 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a549.jpg' +p122147 +sg25267 +g27 +sa(dp122148 +g25273 +S'engraving' +p122149 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122150 +sg25268 +S'Portrait of Boy with Falcon' +p122151 +sg25270 +S'William Raddon' +p122152 +sa(dp122153 +g25273 +S'mezzotint' +p122154 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122155 +sg25268 +S'Portrait of a Man' +p122156 +sg25270 +S'Nikolaus Rhein' +p122157 +sa(dp122158 +g25273 +S'engraving' +p122159 +sg25267 +g27 +sg25275 +S'1675' +p122160 +sg25268 +S'Portrait of a Man' +p122161 +sg25270 +S'Peter Ludwig van Schuppen' +p122162 +sa(dp122163 +g25273 +S'Flemish, c. 1576 - 1621' +p122164 +sg25267 +g27 +sg25275 +S'(artist after)' +p122165 +sg25268 +S'Head of a Man' +p122166 +sg25270 +S'Artist Information (' +p122167 +sa(dp122168 +g25273 +S'engraving' +p122169 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122170 +sg25268 +S'Portrait of a Man with a Long Beard' +p122171 +sg25270 +S'Unknown 19th Century' +p122172 +sa(dp122173 +g25273 +S'engraving' +p122174 +sg25267 +g27 +sg25275 +S'1579' +p122175 +sg25268 +S'Man Holding Scroll' +p122176 +sg25270 +S'Hieronymus Wierix' +p122177 +sa(dp122178 +g25273 +S'engraving' +p122179 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122180 +sg25268 +S'Clergyman (?)' +p122181 +sg25270 +S'J. Cochran' +p122182 +sa(dp122183 +g25273 +S'engraving' +p122184 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122185 +sg25268 +S'The Virgin Appearing to a Lady Penitent' +p122186 +sg25270 +S'Jaspar Isacsz' +p122187 +sa(dp122188 +g25273 +S', 1599' +p122189 +sg25267 +g27 +sg25275 +S'\n' +p122190 +sg25268 +S'Antonia Lotharingica' +p122191 +sg25270 +S'Crispijn van de Passe I' +p122192 +sa(dp122193 +g25273 +S'engraving' +p122194 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122195 +sg25268 +S'Jacobus Arminius' +p122196 +sg25270 +S'Unknown 19th Century' +p122197 +sa(dp122198 +g25268 +S'Madonna and Child in a Glory Standing on a Crescent Moon' +p122199 +sg25270 +S'German 15th Century' +p122200 +sg25273 +S'Schreiber, Vol. IX, no. 1083, State a' +p122201 +sg25275 +S'\nwoodcut in gray-black, hand-colored in red lake, yellow, green, and brown' +p122202 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a54d.jpg' +p122203 +sg25267 +g27 +sa(dp122204 +g25273 +S'engraving' +p122205 +sg25267 +g27 +sg25275 +S'1606' +p122206 +sg25268 +S"Cesare d'Arpino" +p122207 +sg25270 +S'Jacob Matham' +p122208 +sa(dp122209 +g25273 +S'(artist after)' +p122210 +sg25267 +g27 +sg25275 +S'\n' +p122211 +sg25268 +S'Thomas Howard, Earl of Arundel and His Wife' +p122212 +sg25270 +S'Artist Information (' +p122213 +sa(dp122214 +g25273 +S'engraving' +p122215 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122216 +sg25268 +S'Andreas Athemstet' +p122217 +sg25270 +S'Dominicus Custos' +p122218 +sa(dp122219 +g25273 +S'engraving' +p122220 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122221 +sg25268 +S'Carolus Clusi Atrebatis, Professor of Botany at Leyden' +p122222 +sg25270 +S'Jacques de Gheyn II' +p122223 +sa(dp122224 +g25273 +S'engraving' +p122225 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122226 +sg25268 +S'Augustus, Duke of Brunswick' +p122227 +sg25270 +S'Unknown 19th Century' +p122228 +sa(dp122229 +g25273 +S'(artist after)' +p122230 +sg25267 +g27 +sg25275 +S'\n' +p122231 +sg25268 +S'Augustus, Duke of Brunswick' +p122232 +sg25270 +S'Artist Information (' +p122233 +sa(dp122234 +g25273 +S'engraving' +p122235 +sg25267 +g27 +sg25275 +S'1621' +p122236 +sg25268 +S'Augustus II, Duke of Brunswick' +p122237 +sg25270 +S'Lucas Kilian' +p122238 +sa(dp122239 +g25273 +S'engraving' +p122240 +sg25267 +g27 +sg25275 +S'1621' +p122241 +sg25268 +S'Augustus II, Duke of Brunswick' +p122242 +sg25270 +S'Lucas Kilian' +p122243 +sa(dp122244 +g25273 +S'engraving' +p122245 +sg25267 +g27 +sg25275 +S'1626' +p122246 +sg25268 +S'Augustus II, Duke of Brunswick' +p122247 +sg25270 +S'Lucas Kilian' +p122248 +sa(dp122249 +g25273 +S'engraving' +p122250 +sg25267 +g27 +sg25275 +S'1582' +p122251 +sg25268 +S'Augustus, Duke of Saxony' +p122252 +sg25270 +S'Unknown 19th Century' +p122253 +sa(dp122254 +g25268 +S'Madonna and Child in a Glory with an Indulgence and a Prayer' +p122255 +sg25270 +S'German 15th Century' +p122256 +sg25273 +S'sheet (trimmed to image): 16.5 x 12.6 cm (6 1/2 x 4 15/16 in.)' +p122257 +sg25275 +S'\nwoodcut in brown, hand-colored in red lake, yellow, and green' +p122258 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a527.jpg' +p122259 +sg25267 +g27 +sa(dp122260 +g25273 +S'engraving' +p122261 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122262 +sg25268 +S'Melchior Ayrer, Philosopher and Doctor' +p122263 +sg25270 +S'Unknown 19th Century' +p122264 +sa(dp122265 +g25273 +S'(artist)' +p122266 +sg25267 +g27 +sg25275 +S'\n' +p122267 +sg25268 +S'Gervase Babington, Bishop of Worcester' +p122268 +sg25270 +S'Artist Information (' +p122269 +sa(dp122270 +g25273 +S'engraving' +p122271 +sg25267 +g27 +sg25275 +S'published 1616' +p122272 +sg25268 +S'Gervase Babington, Bishop of Worcester' +p122273 +sg25270 +S'Renold Elstrack' +p122274 +sa(dp122275 +g25273 +S'engraving' +p122276 +sg25267 +g27 +sg25275 +S'1635' +p122277 +sg25268 +S'John Babington, Pyrotechnia' +p122278 +sg25270 +S'John Droeshout' +p122279 +sa(dp122280 +g25273 +S'stipple engraving' +p122281 +sg25267 +g27 +sg25275 +S'published 1810' +p122282 +sg25268 +S'Anna, Lady Bacon, Daughter of Sir Anthony Cooke and Wife of Sir Nicolas Bacon' +p122283 +sg25270 +S'Hereward Lester Cooke' +p122284 +sa(dp122285 +g25273 +S'stipple engraving' +p122286 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122287 +sg25268 +S'Anna, Lady Bacon, Daughter of Sir Anthony Cooke and Wife of Sir Nicolas Bacon' +p122288 +sg25270 +S'Hereward Lester Cooke' +p122289 +sa(dp122290 +g25273 +S'etching' +p122291 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122292 +sg25268 +S'Lord Bacon' +p122293 +sg25270 +S'Henry Adlard' +p122294 +sa(dp122295 +g25273 +S'engraving' +p122296 +sg25267 +g27 +sg25275 +S'published 1788' +p122297 +sg25268 +S'Lord Bacon' +p122298 +sg25270 +S'Unknown 19th Century' +p122299 +sa(dp122300 +g25273 +S'engraving' +p122301 +sg25267 +g27 +sg25275 +S'1626' +p122302 +sg25268 +S"Monument of Bacon in Saint Michael's Church, Saint Albans" +p122303 +sg25270 +S'Unknown 19th Century' +p122304 +sa(dp122305 +g25273 +S'engraving' +p122306 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122307 +sg25268 +S'Lord Bacon, London: Routledge' +p122308 +sg25270 +S'Unknown 19th Century' +p122309 +sa(dp122310 +g25268 +S'Madonna and Child in a Glory Standing on a Crescent Moon' +p122311 +sg25270 +S'German 15th Century' +p122312 +sg25273 +S'Schreiber, no. 1093, State m' +p122313 +sg25275 +S'\nwoodcut, hand-colored in rose, green, yellow' +p122314 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a521.jpg' +p122315 +sg25267 +g27 +sa(dp122316 +g25273 +S'engraving' +p122317 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122318 +sg25268 +S'Lord Bacon' +p122319 +sg25270 +S'Unknown 19th Century' +p122320 +sa(dp122321 +g25273 +S'engraving' +p122322 +sg25267 +g27 +sg25275 +S'published 1822' +p122323 +sg25268 +S'Lord Bacon, "Knowledge is Power"' +p122324 +sg25270 +S'Unknown 19th Century' +p122325 +sa(dp122326 +g25273 +S'engraving' +p122327 +sg25267 +g27 +sg25275 +S'published 1640' +p122328 +sg25268 +S'Francis Bacon' +p122329 +sg25270 +S'William Marshall' +p122330 +sa(dp122331 +g25273 +S'engraving' +p122332 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122333 +sg25268 +S'Sir Francis Bacon, Lord Verulam' +p122334 +sg25270 +S'Unknown 19th Century' +p122335 +sa(dp122336 +g25273 +S'Flemish, c. 1576 - 1621' +p122337 +sg25267 +g27 +sg25275 +S'(artist after)' +p122338 +sg25268 +S'Sir Francis Bacon, Lord Verulam' +p122339 +sg25270 +S'Artist Information (' +p122340 +sa(dp122341 +g25273 +S'engraving' +p122342 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122343 +sg25268 +S'Francis Bacon, Lord Verulam' +p122344 +sg25270 +S'Unknown 19th Century' +p122345 +sa(dp122346 +g25273 +S'engraving' +p122347 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122348 +sg25268 +S'Sir Francis Bacon' +p122349 +sg25270 +S'Unknown 19th Century' +p122350 +sa(dp122351 +g25273 +S'Dutch, 1698 - 1780' +p122352 +sg25267 +g27 +sg25275 +S'(artist after)' +p122353 +sg25268 +S'Sir Francis Bacon' +p122354 +sg25270 +S'Artist Information (' +p122355 +sa(dp122356 +g25273 +S'Flemish, c. 1576 - 1621' +p122357 +sg25267 +g27 +sg25275 +S'(artist after)' +p122358 +sg25268 +S'The Great Lord Bacon' +p122359 +sg25270 +S'Artist Information (' +p122360 +sa(dp122361 +g25273 +S'Flemish, c. 1576 - 1621' +p122362 +sg25267 +g27 +sg25275 +S'(artist after)' +p122363 +sg25268 +S'Sir Francis Bacon, Lord Verulam' +p122364 +sg25270 +S'Artist Information (' +p122365 +sa(dp122366 +g25268 +S'Madonna and Child in a Glory Standing on a Crescent Moon' +p122367 +sg25270 +S'German 15th Century' +p122368 +sg25273 +S'Schreiber, no. 1093' +p122369 +sg25275 +S'\nwoodcut, hand-colored in peach, blue, gray, green, and gold on vellum' +p122370 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a520.jpg' +p122371 +sg25267 +g27 +sa(dp122372 +g25273 +S'engraving' +p122373 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122374 +sg25268 +S'Francis Bacon, Lord Verulam' +p122375 +sg25270 +S'Unknown 19th Century' +p122376 +sa(dp122377 +g25273 +S'engraving' +p122378 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122379 +sg25268 +S'Francis Bacon, Viscount, Saint Albans' +p122380 +sg25270 +S'Unknown 19th Century' +p122381 +sa(dp122382 +g25273 +S'engraving' +p122383 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122384 +sg25268 +S'Sir Francis Bacon' +p122385 +sg25270 +S'Unknown 19th Century' +p122386 +sa(dp122387 +g25273 +S'engraving' +p122388 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122389 +sg25268 +S'Lord Bacon' +p122390 +sg25270 +S'Unknown 19th Century' +p122391 +sa(dp122392 +g25273 +S'engraving' +p122393 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122394 +sg25268 +S'Sir Francis Bacon' +p122395 +sg25270 +S'Unknown 19th Century' +p122396 +sa(dp122397 +g25273 +S'engraving' +p122398 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122399 +sg25268 +S'Lord Bacon' +p122400 +sg25270 +S'Unknown 19th Century' +p122401 +sa(dp122402 +g25273 +S'engraving' +p122403 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122404 +sg25268 +S'Sir Francis Bacon' +p122405 +sg25270 +S'Unknown 19th Century' +p122406 +sa(dp122407 +g25273 +S'engraving' +p122408 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122409 +sg25268 +S'Sir Francis Bacon, Lord Chancellor' +p122410 +sg25270 +S'Alexander Bannerman' +p122411 +sa(dp122412 +g25273 +S'engraving' +p122413 +sg25267 +g27 +sg25275 +S'published 1757' +p122414 +sg25268 +S'Bacon Lord Verulam' +p122415 +sg25270 +S'Thomas Chambers' +p122416 +sa(dp122417 +g25273 +S'engraving' +p122418 +sg25267 +g27 +sg25275 +S'published 1798' +p122419 +sg25268 +S'Francis Lord Bacon' +p122420 +sg25270 +S'John Chapman' +p122421 +sa(dp122422 +g25268 +S'Madonna in a Closed Garden' +p122423 +sg25270 +S'German 15th Century' +p122424 +sg25273 +S'sheet: 19.2 x 13.6 cm (7 9/16 x 5 3/8 in.)' +p122425 +sg25275 +S'\nwoodcut in brown, hand-colored in red lake, yellow, green, gray, and tan' +p122426 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a529.jpg' +p122427 +sg25267 +g27 +sa(dp122428 +g25273 +S'engraving' +p122429 +sg25267 +g27 +sg25275 +S'published 1798' +p122430 +sg25268 +S'Francis Lord Bacon' +p122431 +sg25270 +S'John Chapman' +p122432 +sa(dp122433 +g25273 +S'(artist after)' +p122434 +sg25267 +g27 +sg25275 +S'\n' +p122435 +sg25268 +S'Francis Bacon' +p122436 +sg25270 +S'Artist Information (' +p122437 +sa(dp122438 +g25273 +S'(artist after)' +p122439 +sg25267 +g27 +sg25275 +S'\n' +p122440 +sg25268 +S'Francis Bacon' +p122441 +sg25270 +S'Artist Information (' +p122442 +sa(dp122443 +g25273 +S'engraving' +p122444 +sg25267 +g27 +sg25275 +S'published 1754' +p122445 +sg25268 +S'Sir Francis Bacon, Lord Verulam' +p122446 +sg25270 +S'B. Cole' +p122447 +sa(dp122448 +g25273 +S'engraving' +p122449 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122450 +sg25268 +S'Francois Bacon' +p122451 +sg25270 +S'Jean Baptiste Compagnie' +p122452 +sa(dp122453 +g25273 +S'engraving' +p122454 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122455 +sg25268 +S"Monument of the Lord Chancellor Bacon, Saint Michael's Church" +p122456 +sg25270 +S'George Cooke' +p122457 +sa(dp122458 +g25273 +S'engraving' +p122459 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122460 +sg25268 +S'Francis Bacon' +p122461 +sg25270 +S'George Cooke' +p122462 +sa(dp122463 +g25273 +S'engraving' +p122464 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122465 +sg25268 +S'Francis Bacon, Viscount St. Alban' +p122466 +sg25270 +S'Robert Cooper' +p122467 +sa(dp122468 +g25273 +S'(artist after)' +p122469 +sg25267 +g27 +sg25275 +S'\n' +p122470 +sg25268 +S'Francis Bacon' +p122471 +sg25270 +S'Artist Information (' +p122472 +sa(dp122473 +g25273 +S'engraving' +p122474 +sg25267 +g27 +sg25275 +S'published 1817' +p122475 +sg25268 +S'The Essays or Counsels of Sir Francis Bacon' +p122476 +sg25270 +S'Thomas Chambers' +p122477 +sa(dp122478 +g25268 +S'Madonna and Child Seated on a Grassy Bank with Angels' +p122479 +sg25270 +S'German 15th Century' +p122480 +sg25273 +S'image: 8.9 x 5.9 cm (3 1/2 x 2 5/16 in.)\r\nsheet: 11 x 7.9 cm (4 5/16 x 3 1/8 in.)' +p122481 +sg25275 +S'\nwoodcut in dark brown, hand-colored in light red lake, dark blue, green, brown, gold, and orange' +p122482 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a526.jpg' +p122483 +sg25267 +g27 +sa(dp122484 +g25273 +S'engraving' +p122485 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122486 +sg25268 +S'Lord Chancellor Bacon' +p122487 +sg25270 +S'J. Dadley' +p122488 +sa(dp122489 +g25273 +S'engraving' +p122490 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122491 +sg25268 +S'Francis Bacon' +p122492 +sg25270 +S'Remi-Henri-Joseph Delvaux' +p122493 +sa(dp122494 +g25273 +S'(artist after)' +p122495 +sg25267 +g27 +sg25275 +S'\n' +p122496 +sg25268 +S'Sir Francis Bacon' +p122497 +sg25270 +S'Artist Information (' +p122498 +sa(dp122499 +g25273 +S'(artist after)' +p122500 +sg25267 +g27 +sg25275 +S'\n' +p122501 +sg25268 +S'Francis, Lord Bacon' +p122502 +sg25270 +S'Artist Information (' +p122503 +sa(dp122504 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122505 +sg25268 +S'Sir Francis Bacon' +p122506 +sg25270 +S'Samuel Freeman' +p122507 +sa(dp122508 +g25273 +S'(artist after)' +p122509 +sg25267 +g27 +sg25275 +S'\n' +p122510 +sg25268 +S'Francis Bacon, Viscount Saint Albans' +p122511 +sg25270 +S'Artist Information (' +p122512 +sa(dp122513 +g25273 +S'engraving' +p122514 +sg25267 +g27 +sg25275 +S'published 1806' +p122515 +sg25268 +S'Sir Francis Bacon' +p122516 +sg25270 +S'Innocenzo Geremia' +p122517 +sa(dp122518 +g25273 +S'engraving' +p122519 +sg25267 +g27 +sg25275 +S'published 1806' +p122520 +sg25268 +S'Sir Francis Bacon' +p122521 +sg25270 +S'Innocenzo Geremia' +p122522 +sa(dp122523 +g25273 +S'engraving' +p122524 +sg25267 +g27 +sg25275 +S'published 1798' +p122525 +sg25268 +S'Sir Francis Bacon' +p122526 +sg25270 +S'Innocenzo Geremia' +p122527 +sa(dp122528 +g25273 +S'engraving' +p122529 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122530 +sg25268 +S'Franciscus Bacon' +p122531 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p122532 +sa(dp122533 +g25268 +S'Madonna with the Rosary' +p122534 +sg25270 +S'German 15th Century' +p122535 +sg25273 +S'image: 37.2 x 24.8 cm (14 5/8 x 9 3/4 in.)\r\nsheet (external frame dimensions): 37.8 x 25.6 cm (14 7/8 x 10 1/16 in.)' +p122536 +sg25275 +S'\nwoodcut, hand-colored in red lake, green, brown, yellow, tan, gray, rose, and black' +p122537 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005626.jpg' +p122538 +sg25267 +g27 +sa(dp122539 +g25273 +S'engraving' +p122540 +sg25267 +g27 +sg25275 +S'published 1713' +p122541 +sg25268 +S'The Right Honorable Sir Francis Bacon, Knight' +p122542 +sg25270 +S'Michiel van der Gucht' +p122543 +sa(dp122544 +g25273 +S'engraving' +p122545 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122546 +sg25268 +S'Sir Francis Bacon' +p122547 +sg25270 +S'Charles Heath' +p122548 +sa(dp122549 +g25273 +S'engraving' +p122550 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122551 +sg25268 +S'Sir Francis Bacon' +p122552 +sg25270 +S'Charles Heath' +p122553 +sa(dp122554 +g25273 +S'(artist)' +p122555 +sg25267 +g27 +sg25275 +S'\n' +p122556 +sg25268 +S'Sir Francis Bacon' +p122557 +sg25270 +S'Artist Information (' +p122558 +sa(dp122559 +g25273 +S'(artist)' +p122560 +sg25267 +g27 +sg25275 +S'\n' +p122561 +sg25268 +S'Lord Bacon' +p122562 +sg25270 +S'Artist Information (' +p122563 +sa(dp122564 +g25273 +S'engraving' +p122565 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122566 +sg25268 +S'Francis Bacon When a Boy' +p122567 +sg25270 +S'Francis Holl' +p122568 +sa(dp122569 +g25273 +S'(artist)' +p122570 +sg25267 +g27 +sg25275 +S'\n' +p122571 +sg25268 +S'Francis Bacon' +p122572 +sg25270 +S'Artist Information (' +p122573 +sa(dp122574 +g25273 +S'engraving' +p122575 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122576 +sg25268 +S"The Monument of Lord Bacon, Saint Michael's Church" +p122577 +sg25270 +S'James Hopwood I' +p122578 +sa(dp122579 +g25273 +S'engraving' +p122580 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122581 +sg25268 +S'Lord Bacon' +p122582 +sg25270 +S'James Hopwood I' +p122583 +sa(dp122584 +g25273 +S'(artist after)' +p122585 +sg25267 +g27 +sg25275 +S'\n' +p122586 +sg25268 +S'Francis Bacon' +p122587 +sg25270 +S'Artist Information (' +p122588 +sa(dp122589 +g25268 +S'The Madonna and Child in a Rosary' +p122590 +sg25270 +S'French 15th Century' +p122591 +sg25273 +S'sheet: 25.5 x 17.8 cm (10 1/16 x 7 in.)' +p122592 +sg25275 +S'\nwoodcut, hand-colored in brown, red, and green' +p122593 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a00082f5.jpg' +p122594 +sg25267 +g27 +sa(dp122595 +g25273 +S'(artist after)' +p122596 +sg25267 +g27 +sg25275 +S'\n' +p122597 +sg25268 +S'Francis Bacon' +p122598 +sg25270 +S'Artist Information (' +p122599 +sa(dp122600 +g25273 +S'engraving' +p122601 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122602 +sg25268 +S'Lord Bacon' +p122603 +sg25270 +S'George Murray' +p122604 +sa(dp122605 +g25273 +S'etching' +p122606 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122607 +sg25268 +S"Lord Bacon's Essays - Title Page" +p122608 +sg25270 +S'George Murray' +p122609 +sa(dp122610 +g25273 +S'engraving' +p122611 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122612 +sg25268 +S'Sir Francis Bacon' +p122613 +sg25270 +S'Unknown 19th Century' +p122614 +sa(dp122615 +g25273 +S'engraving' +p122616 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122617 +sg25268 +S'Francois Bacon' +p122618 +sg25270 +S'Unknown 19th Century' +p122619 +sa(dp122620 +g25273 +S'engraving' +p122621 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122622 +sg25268 +S'Bacon' +p122623 +sg25270 +S'Unknown 19th Century' +p122624 +sa(dp122625 +g25273 +S'engraving' +p122626 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122627 +sg25268 +S'Lord Bacon' +p122628 +sg25270 +S'James Posselwhite' +p122629 +sa(dp122630 +g25273 +S'(artist after)' +p122631 +sg25267 +g27 +sg25275 +S'\n' +p122632 +sg25268 +S'Lord Bacon' +p122633 +sg25270 +S'Artist Information (' +p122634 +sa(dp122635 +g25273 +S'engraving' +p122636 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122637 +sg25268 +S'Sir Francis Bacon' +p122638 +sg25270 +S'W. Read' +p122639 +sa(dp122640 +g25273 +S'etching' +p122641 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122642 +sg25268 +S'Francis Bacon, Baron Verulam' +p122643 +sg25270 +S'William Ridley' +p122644 +sa(dp122645 +g25268 +S'The Madonna and Child in a Rosary' +p122646 +sg25270 +S'French 15th Century' +p122647 +sg25273 +S'Schreiber, no. 1130, State b' +p122648 +sg25275 +S'\nwoodcut, hand-colored in light purple, rose carmine, gray' +p122649 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a00082ff.jpg' +p122650 +sg25267 +g27 +sa(dp122651 +g25273 +S'(artist after)' +p122652 +sg25267 +g27 +sg25275 +S'\n' +p122653 +sg25268 +S'Francis Bacon, Lord Verulam' +p122654 +sg25270 +S'Artist Information (' +p122655 +sa(dp122656 +g25273 +S'(artist after)' +p122657 +sg25267 +g27 +sg25275 +S'\n' +p122658 +sg25268 +S'Francis, Lord Bacon' +p122659 +sg25270 +S'Artist Information (' +p122660 +sa(dp122661 +g25273 +S'Flemish, c. 1576 - 1621' +p122662 +sg25267 +g27 +sg25275 +S'(artist after)' +p122663 +sg25268 +S'Francis Bacon, Viscount Saint Alban' +p122664 +sg25270 +S'Artist Information (' +p122665 +sa(dp122666 +g25273 +S'(artist after)' +p122667 +sg25267 +g27 +sg25275 +S'\n' +p122668 +sg25268 +S'Francis Bacon' +p122669 +sg25270 +S'Artist Information (' +p122670 +sa(dp122671 +g25273 +S'(artist after)' +p122672 +sg25267 +g27 +sg25275 +S'\n' +p122673 +sg25268 +S'Francis Bacon' +p122674 +sg25270 +S'Artist Information (' +p122675 +sa(dp122676 +g25273 +S'engraving' +p122677 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122678 +sg25268 +S'Sir Francis Bacon' +p122679 +sg25270 +S'W. Tringham' +p122680 +sa(dp122681 +g25273 +S'(artist after)' +p122682 +sg25267 +g27 +sg25275 +S'\n' +p122683 +sg25268 +S'Francis Bacon, Viscount Saint Albans' +p122684 +sg25270 +S'Artist Information (' +p122685 +sa(dp122686 +g25273 +S'(artist after)' +p122687 +sg25267 +g27 +sg25275 +S'\n' +p122688 +sg25268 +S'Francis Bacon, Viscount Saint Albans' +p122689 +sg25270 +S'Artist Information (' +p122690 +sa(dp122691 +g25273 +S'(artist after)' +p122692 +sg25267 +g27 +sg25275 +S'\n' +p122693 +sg25268 +S'Francis Bacon, Viscount Saint Albans' +p122694 +sg25270 +S'Artist Information (' +p122695 +sa(dp122696 +g25273 +S'(artist after)' +p122697 +sg25267 +g27 +sg25275 +S'\n' +p122698 +sg25268 +S'Francis Bacon' +p122699 +sg25270 +S'Artist Information (' +p122700 +sa(dp122701 +g25268 +S'Madonna and Child in a Rosary' +p122702 +sg25270 +S'German 15th Century' +p122703 +sg25273 +S'image: 18.5 x 12.5 cm (7 5/16 x 4 15/16 in.)\r\nsheet: 22.3 x 16 cm (8 3/4 x 6 5/16 in.)' +p122704 +sg25275 +S'\nwoodcut, hand-colored in red lake, yelllow, black,green, brown, and rose' +p122705 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a528.jpg' +p122706 +sg25267 +g27 +sa(dp122707 +g25273 +S'(artist after)' +p122708 +sg25267 +g27 +sg25275 +S'\n' +p122709 +sg25268 +S'Francis Bacon' +p122710 +sg25270 +S'Artist Information (' +p122711 +sa(dp122712 +g25273 +S'engraving' +p122713 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122714 +sg25268 +S'Francis Bacon' +p122715 +sg25270 +S'George Vertue' +p122716 +sa(dp122717 +g25273 +S'engraving' +p122718 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122719 +sg25268 +S'Sir Francis Bacon' +p122720 +sg25270 +S'Anthony Walker' +p122721 +sa(dp122722 +g25273 +S'engraving' +p122723 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122724 +sg25268 +S'Sir Francis Bacon, Lord Chancellor' +p122725 +sg25270 +S'William Walker' +p122726 +sa(dp122727 +g25273 +S'engraving' +p122728 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122729 +sg25268 +S'Sir Francis Bacon, Lord Chancellor' +p122730 +sg25270 +S'William Walker' +p122731 +sa(dp122732 +g25273 +S'(artist after)' +p122733 +sg25267 +g27 +sg25275 +S'\n' +p122734 +sg25268 +S'Bacon' +p122735 +sg25270 +S'Artist Information (' +p122736 +sa(dp122737 +g25273 +S'engraving' +p122738 +sg25267 +g27 +sg25275 +S'published 1827' +p122739 +sg25268 +S"Monument of Lord Bacon in Saint Michael's Church" +p122740 +sg25270 +S'William Henry Worthington' +p122741 +sa(dp122742 +g25273 +S'engraving' +p122743 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122744 +sg25268 +S'Bacon, Baxter, Blackstone, Beattie, Burns' +p122745 +sg25270 +S'Unknown 19th Century' +p122746 +sa(dp122747 +g25273 +S'engraving' +p122748 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122749 +sg25268 +S'Hooker, Spenser, Lord Bacon, Ben Johnson' +p122750 +sg25270 +S'Thomas Abiel Prior' +p122751 +sa(dp122752 +g25273 +S'(artist)' +p122753 +sg25267 +g27 +sg25275 +S'\n' +p122754 +sg25268 +S'Sir Nicholas Bacon, Lord Keeper' +p122755 +sg25270 +S'Artist Information (' +p122756 +sa(dp122757 +g25268 +S'The Madonna and Child in a Rosary' +p122758 +sg25270 +S'French 15th Century' +p122759 +sg25273 +S'Schreiber, Vol. IX, no. 1134, State m' +p122760 +sg25275 +S'\nwoodcut, hand-colored in mauve purple, vermilion, gray-blue, probably by stencil' +p122761 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a00082f0.jpg' +p122762 +sg25267 +g27 +sa(dp122763 +g25273 +S'(artist)' +p122764 +sg25267 +g27 +sg25275 +S'\n' +p122765 +sg25268 +S'Sir Nicholas Bacon, Lord Keeper' +p122766 +sg25270 +S'Artist Information (' +p122767 +sa(dp122768 +g25273 +S'(artist)' +p122769 +sg25267 +g27 +sg25275 +S'\n' +p122770 +sg25268 +S'Sir Nicholas Bacon, Lord Keeper' +p122771 +sg25270 +S'Artist Information (' +p122772 +sa(dp122773 +g25273 +S'engraving' +p122774 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122775 +sg25268 +S'Marchioness of Baden' +p122776 +sg25270 +S'Unknown 19th Century' +p122777 +sa(dp122778 +g25273 +S', unknown date' +p122779 +sg25267 +g27 +sg25275 +S'\n' +p122780 +sg25268 +S'Elizabeth van Pallandt, Countess of Culemborg, Wife of Jacob, Margrave of Baden' +p122781 +sg25270 +S'Crispijn van de Passe I' +p122782 +sa(dp122783 +g25273 +S'engraving' +p122784 +sg25267 +g27 +sg25275 +S'1641' +p122785 +sg25268 +S'David Baker' +p122786 +sg25270 +S'Jacobus Neeffs' +p122787 +sa(dp122788 +g25273 +S'etching' +p122789 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122790 +sg25268 +S'Walter Baker, Inventor of a Medicine' +p122791 +sg25270 +S'Thomas Worlidge' +p122792 +sa(dp122793 +g25273 +S'(artist)' +p122794 +sg25267 +g27 +sg25275 +S'\n' +p122795 +sg25268 +S'John Bale, Bishop of Ossory' +p122796 +sg25270 +S'Artist Information (' +p122797 +sa(dp122798 +g25273 +S'(artist)' +p122799 +sg25267 +g27 +sg25275 +S'\n' +p122800 +sg25268 +S'John Bale, Bishop of Ossory' +p122801 +sg25270 +S'Artist Information (' +p122802 +sa(dp122803 +g25273 +S'engraving' +p122804 +sg25267 +g27 +sg25275 +S'published 1650' +p122805 +sg25268 +S'John Bale, Bishop of Ossory' +p122806 +sg25270 +S'Unknown 19th Century' +p122807 +sa(dp122808 +g25273 +S', unknown date' +p122809 +sg25267 +g27 +sg25275 +S'\n' +p122810 +sg25268 +S'William Knollys, Earl of Banbury, When Viscount Wallingford' +p122811 +sg25270 +S'Simon van de Passe' +p122812 +sa(dp122813 +g25268 +S'Madonna and Saint Bridget' +p122814 +sg25270 +S'German 15th Century' +p122815 +sg25273 +S'Schreiber, no. 1139' +p122816 +sg25275 +S'\nwoodcut, hand-colored in blue, yellow, tan, orange, and red' +p122817 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a523.jpg' +p122818 +sg25267 +g27 +sa(dp122819 +g25273 +S'engraving' +p122820 +sg25267 +g27 +sg25275 +S'published 1745' +p122821 +sg25268 +S'Richard Bancroft, Archbishop of Canterbury' +p122822 +sg25270 +S'George Vertue' +p122823 +sa(dp122824 +g25273 +S'engraving' +p122825 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122826 +sg25268 +S'John Barclay' +p122827 +sg25270 +S'Jacob van der Heyden' +p122828 +sa(dp122829 +g25273 +S'engraving' +p122830 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122831 +sg25268 +S'John Barclay' +p122832 +sg25270 +S'Nicolas de Larmessin IV' +p122833 +sa(dp122834 +g25268 +S'John Barclay' +p122835 +sg25270 +S'Artist Information (' +p122836 +sg25273 +S'(artist after)' +p122837 +sg25275 +S'\n' +p122838 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a00067da.jpg' +p122839 +sg25267 +g27 +sa(dp122840 +g25273 +S'(artist after)' +p122841 +sg25267 +g27 +sg25275 +S'\n' +p122842 +sg25268 +S'John Barclay' +p122843 +sg25270 +S'Artist Information (' +p122844 +sa(dp122845 +g25273 +S'engraving' +p122846 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122847 +sg25268 +S'John Barclay' +p122848 +sg25270 +S'Unknown 19th Century' +p122849 +sa(dp122850 +g25273 +S'engraving' +p122851 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122852 +sg25268 +S'John Barclay' +p122853 +sg25270 +S'Unknown 19th Century' +p122854 +sa(dp122855 +g25273 +S'French, 1574 - 1646' +p122856 +sg25267 +g27 +sg25275 +S'(artist after)' +p122857 +sg25268 +S'John Barclay' +p122858 +sg25270 +S'Artist Information (' +p122859 +sa(dp122860 +g25273 +S', unknown date' +p122861 +sg25267 +g27 +sg25275 +S'\n' +p122862 +sg25268 +S'William Barclay' +p122863 +sg25270 +S'Karel van Mallery' +p122864 +sa(dp122865 +g25273 +S', unknown date' +p122866 +sg25267 +g27 +sg25275 +S'\n' +p122867 +sg25268 +S'William Barclay' +p122868 +sg25270 +S'Karel van Mallery' +p122869 +sa(dp122870 +g25268 +S'Madonna between Saints Catherine and Barbara' +p122871 +sg25270 +S'German 15th Century' +p122872 +sg25273 +S'Schreiber, no. 1151' +p122873 +sg25275 +S'\nwoodcut in warm black, hand-colored in red lake, buff, green, and yellow' +p122874 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a52a.jpg' +p122875 +sg25267 +g27 +sa(dp122876 +g25273 +S'engraving' +p122877 +sg25267 +g27 +sg25275 +S'1624' +p122878 +sg25268 +S'Gulielmus Baudartius, Theologian and Historian' +p122879 +sg25270 +S'Albert Poel' +p122880 +sa(dp122881 +g25273 +S'(artist after)' +p122882 +sg25267 +g27 +sg25275 +S'\n' +p122883 +sg25268 +S'Jean de Beaugrand' +p122884 +sg25270 +S'Artist Information (' +p122885 +sa(dp122886 +g25273 +S'(artist)' +p122887 +sg25267 +g27 +sg25275 +S'\n' +p122888 +sg25268 +S'Thomas Becon, Protestant Divine' +p122889 +sg25270 +S'Artist Information (' +p122890 +sa(dp122891 +g25273 +S'engraving' +p122892 +sg25267 +g27 +sg25275 +S'published 1576' +p122893 +sg25268 +S'Thomas Becon, D.D.' +p122894 +sg25270 +S'Unknown 19th Century' +p122895 +sa(dp122896 +g25273 +S'engraving' +p122897 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122898 +sg25268 +S'Abel Bede, Minister' +p122899 +sg25270 +S'Unknown 19th Century' +p122900 +sa(dp122901 +g25273 +S'engraving' +p122902 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122903 +sg25268 +S'Robert Bellarmin, Cardinal' +p122904 +sg25270 +S'Unknown 19th Century' +p122905 +sa(dp122906 +g25273 +S', unknown date' +p122907 +sg25267 +g27 +sg25275 +S'\n' +p122908 +sg25268 +S'Roberto, Cardinal Bellarminus' +p122909 +sg25270 +S'Hieronymus Wierix' +p122910 +sa(dp122911 +g25273 +S'(artist after)' +p122912 +sg25267 +g27 +sg25275 +S'\n' +p122913 +sg25268 +S'Bernard, Abbot of the Monasteries of Udalrici and Afrae' +p122914 +sg25270 +S'Artist Information (' +p122915 +sa(dp122916 +g25273 +S'engraving' +p122917 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122918 +sg25268 +S'Philip, Comte de Bethune' +p122919 +sg25270 +S'Samuel Bernard' +p122920 +sa(dp122921 +g25268 +S'The Adoration of the Magi' +p122922 +sg25270 +S'German 15th Century' +p122923 +sg25273 +S'Schreiber, no. 102' +p122924 +sg25275 +S'\nwoodcut, hand-colored in red, green, and yellow' +p122925 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a60f.jpg' +p122926 +sg25267 +g27 +sa(dp122927 +g25273 +S'(artist after)' +p122928 +sg25267 +g27 +sg25275 +S'\n' +p122929 +sg25268 +S'Jerome van Beverningk' +p122930 +sg25270 +S'Artist Information (' +p122931 +sa(dp122932 +g25268 +S'Dr. Henry Blackwood, Jr.' +p122933 +sg25270 +S'Claude Mellan' +p122934 +sg25273 +S'engraving' +p122935 +sg25275 +S'unknown date\n' +p122936 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a00067d9.jpg' +p122937 +sg25267 +g27 +sa(dp122938 +g25273 +S'engraving' +p122939 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122940 +sg25268 +S'Vincent le Blanc of Marseilles' +p122941 +sg25270 +S'Unknown 19th Century' +p122942 +sa(dp122943 +g25273 +S'engraving' +p122944 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122945 +sg25268 +S'Jean Jacques Boissard' +p122946 +sg25270 +S'Unknown 19th Century' +p122947 +sa(dp122948 +g25273 +S'engraving' +p122949 +sg25267 +g27 +sg25275 +S'unknown date\n' +p122950 +sg25268 +S'Jean Jacques Boissard' +p122951 +sg25270 +S'Unknown 19th Century' +p122952 +sa(dp122953 +g25268 +S'Hans Bol' +p122954 +sg25270 +S'Hendrick Goltzius' +p122955 +sg25273 +S', 1593' +p122956 +sg25275 +S'\n' +p122957 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfba.jpg' +p122958 +sg25267 +g27 +sa(dp122959 +g25273 +S'engraving' +p122960 +sg25267 +g27 +sg25275 +S'1632' +p122961 +sg25268 +S'Rev. Robert Bolton' +p122962 +sg25270 +S'John Payne' +p122963 +sa(dp122964 +g25273 +S'engraving' +p122965 +sg25267 +g27 +sg25275 +S'1668' +p122966 +sg25268 +S'Everhard Bornaeus' +p122967 +sg25270 +S'Abraham Blooteling' +p122968 +sa(dp122969 +g25273 +S', 1573' +p122970 +sg25267 +g27 +sg25275 +S'\n' +p122971 +sg25268 +S'Jacob Bornonius' +p122972 +sg25270 +S'Pieter van den Berge' +p122973 +sa(dp122974 +g25273 +S'(artist after)' +p122975 +sg25267 +g27 +sg25275 +S'\n' +p122976 +sg25268 +S'Anthony Bourbon, Count Mouretan' +p122977 +sg25270 +S'Artist Information (' +p122978 +sa(dp122979 +g25268 +S'Madonna and Child with Four Saints' +p122980 +sg25270 +S'German 15th Century' +p122981 +sg25273 +S'Schreiber, no. 1172' +p122982 +sg25275 +S'\nwoodcut, hand-colored in red, green, and yellow; retouched in pen and ink' +p122983 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a610.jpg' +p122984 +sg25267 +g27 +sa(dp122985 +g25268 +S'Charlotte of Bourbon' +p122986 +sg25270 +S'Hendrick Goltzius' +p122987 +sg25273 +S', 1581' +p122988 +sg25275 +S'\n' +p122989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfbd.jpg' +p122990 +sg25267 +g27 +sa(dp122991 +g25268 +S'Charlotte of Bourbon' +p122992 +sg25270 +S'Hendrick Goltzius' +p122993 +sg25273 +S', 1581' +p122994 +sg25275 +S'\n' +p122995 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfbe.jpg' +p122996 +sg25267 +g27 +sa(dp122997 +g25268 +S'Charlotte of Bourbon' +p122998 +sg25270 +S'Hendrick Goltzius' +p122999 +sg25273 +S', 1581' +p123000 +sg25275 +S'\n' +p123001 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfbf.jpg' +p123002 +sg25267 +g27 +sa(dp123003 +g25273 +S'engraving' +p123004 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123005 +sg25268 +S'Catherine de Bourbon' +p123006 +sg25270 +S'Thomas de Leu' +p123007 +sa(dp123008 +g25273 +S'engraving' +p123009 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123010 +sg25268 +S'Catherine de Bourbon' +p123011 +sg25270 +S'Thomas de Leu' +p123012 +sa(dp123013 +g25273 +S'engraving' +p123014 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123015 +sg25268 +S'Catherine of Bourbon, Sister of Henry IV' +p123016 +sg25270 +S'Thomas de Leu' +p123017 +sa(dp123018 +g25273 +S'engraving' +p123019 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123020 +sg25268 +S'Catherine de Bourbon' +p123021 +sg25270 +S'L\xc3\xa9onard Gaultier' +p123022 +sa(dp123023 +g25273 +S'engraving' +p123024 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123025 +sg25268 +S'Eleanora, Princess of Orange' +p123026 +sg25270 +S'Pieter de Jode I' +p123027 +sa(dp123028 +g25273 +S'engraving' +p123029 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123030 +sg25268 +S'Elizabeth de Bourbon' +p123031 +sg25270 +S'Thomas de Leu' +p123032 +sa(dp123033 +g25268 +S'Saint Agnes' +p123034 +sg25270 +S'German 15th Century' +p123035 +sg25273 +S'Schreiber, no. 1180' +p123036 +sg25275 +S'\nwoodcut, hand-colored in orange-tan, green, light blue, gray, carmine, and gold' +p123037 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a524.jpg' +p123038 +sg25267 +g27 +sa(dp123039 +g25273 +S'engraving' +p123040 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123041 +sg25268 +S'Francois de Bourbon, First Prince of Conti, son of Louis I' +p123042 +sg25270 +S'Thomas de Leu' +p123043 +sa(dp123044 +g25273 +S'engraving' +p123045 +sg25267 +g27 +sg25275 +S'1604' +p123046 +sg25268 +S'Henry II de Bourbon, Prince de Conde' +p123047 +sg25270 +S'L\xc3\xa9onard Gaultier' +p123048 +sa(dp123049 +g25273 +S'engraving' +p123050 +sg25267 +g27 +sg25275 +S'1604' +p123051 +sg25268 +S'Henry II de Bourbon, Prince de Conde' +p123052 +sg25270 +S'L\xc3\xa9onard Gaultier' +p123053 +sa(dp123054 +g25273 +S'engraving' +p123055 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123056 +sg25268 +S"Jean de Bourbon, Comte D'Anguyen" +p123057 +sg25270 +S'Unknown 19th Century' +p123058 +sa(dp123059 +g25273 +S', 1632' +p123060 +sg25267 +g27 +sg25275 +S'\n' +p123061 +sg25268 +S'Jesper Rasmussen Brochmand' +p123062 +sg25270 +S'Simon van de Passe' +p123063 +sa(dp123064 +g25273 +S', 1632' +p123065 +sg25267 +g27 +sg25275 +S'\n' +p123066 +sg25268 +S'Jesper Rasmussen Brochmand' +p123067 +sg25270 +S'Simon van de Passe' +p123068 +sa(dp123069 +g25273 +S'(artist)' +p123070 +sg25267 +g27 +sg25275 +S'\n' +p123071 +sg25268 +S'John Bradford, Protestant Martyr' +p123072 +sg25270 +S'Artist Information (' +p123073 +sa(dp123074 +g25273 +S'(artist)' +p123075 +sg25267 +g27 +sg25275 +S'\n' +p123076 +sg25268 +S'John Bradford, Protestant Martyr' +p123077 +sg25270 +S'Artist Information (' +p123078 +sa(dp123079 +g25273 +S'(artist after)' +p123080 +sg25267 +g27 +sg25275 +S'\n' +p123081 +sg25268 +S'Tycho de Brahe' +p123082 +sg25270 +S'Artist Information (' +p123083 +sa(dp123084 +g25268 +S'The Virgin and Child' +p123085 +sg25270 +S'German 15th Century' +p123086 +sg25273 +S'Schreiber, Vol. IX, no. 1166, State s' +p123087 +sg25275 +S'\nwoodcut' +p123088 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a58d.jpg' +p123089 +sg25267 +g27 +sa(dp123090 +g25273 +S'engraving' +p123091 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123092 +sg25268 +S'Hieronymus de Bran' +p123093 +sg25270 +S'Lucas Emil Vorsterman' +p123094 +sa(dp123095 +g25273 +S'(artist after)' +p123096 +sg25267 +g27 +sg25275 +S'\n' +p123097 +sg25268 +S'Jacobus de Breuck, Jr.' +p123098 +sg25270 +S'Artist Information (' +p123099 +sa(dp123100 +g25273 +S'engraving' +p123101 +sg25267 +g27 +sg25275 +S'1651' +p123102 +sg25268 +S'Joannes Brice' +p123103 +sg25270 +S'Jerome David' +p123104 +sa(dp123105 +g25273 +S'engraving' +p123106 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123107 +sg25268 +S'Fulke Greville, First Lord Brooke, Poet' +p123108 +sg25270 +S'Unknown 19th Century' +p123109 +sa(dp123110 +g25273 +S'(artist after)' +p123111 +sg25267 +g27 +sg25275 +S'\n' +p123112 +sg25268 +S'Cornelius de Bruyn I, Painter' +p123113 +sg25270 +S'Artist Information (' +p123114 +sa(dp123115 +g25273 +S'(artist after)' +p123116 +sg25267 +g27 +sg25275 +S'\n' +p123117 +sg25268 +S'Peter Brueghel' +p123118 +sg25270 +S'Artist Information (' +p123119 +sa(dp123120 +g25273 +S'engraving' +p123121 +sg25267 +g27 +sg25275 +S'1615' +p123122 +sg25268 +S'Johannes Theodorus de Bry' +p123123 +sg25270 +S'Unknown 19th Century' +p123124 +sa(dp123125 +g25273 +S'engraving' +p123126 +sg25267 +g27 +sg25275 +S'published 1650' +p123127 +sg25268 +S'George Buchanan' +p123128 +sg25270 +S'Jacques Granthomme' +p123129 +sa(dp123130 +g25273 +S', 1614' +p123131 +sg25267 +g27 +sg25275 +S'\n' +p123132 +sg25268 +S'Arnoldus Buchelius' +p123133 +sg25270 +S'Crispijn van de Passe I' +p123134 +sa(dp123135 +g25273 +S', unknown date' +p123136 +sg25267 +g27 +sg25275 +S'\n' +p123137 +sg25268 +S'Catherine Manners, Duchess of Buckingham' +p123138 +sg25270 +S'Magdalena van de Passe' +p123139 +sa(dp123140 +g25268 +S'Saint Hugo of Lincoln (or Saint Hugo of Avalon)' +p123141 +sg25270 +S'German 15th Century' +p123142 +sg25273 +S'Schreiber, no. 1502, State p' +p123143 +sg25275 +S'\nwoodcut' +p123144 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a590.jpg' +p123145 +sg25267 +g27 +sa(dp123146 +g25273 +S'(artist after)' +p123147 +sg25267 +g27 +sg25275 +S'\n' +p123148 +sg25268 +S'George Villiers, Duke of Buckingham' +p123149 +sg25270 +S'Artist Information (' +p123150 +sa(dp123151 +g25273 +S', unknown date' +p123152 +sg25267 +g27 +sg25275 +S'\n' +p123153 +sg25268 +S'George Villiers, First Duke of Buckingham' +p123154 +sg25270 +S'Balthasar Moncornet' +p123155 +sa(dp123156 +g25273 +S'(artist after)' +p123157 +sg25267 +g27 +sg25275 +S'\n' +p123158 +sg25268 +S'John Sheffield, Third Earl of Mulgrave, FirstDuke of Buckinghamshire' +p123159 +sg25270 +S'Artist Information (' +p123160 +sa(dp123161 +g25273 +S', unknown date' +p123162 +sg25267 +g27 +sg25275 +S'\n' +p123163 +sg25268 +S'Charles de Bucquoy' +p123164 +sg25270 +S'Crispijn van de Passe I' +p123165 +sa(dp123166 +g25273 +S', unknown date' +p123167 +sg25267 +g27 +sg25275 +S'\n' +p123168 +sg25268 +S'Charles de Bucquoy' +p123169 +sg25270 +S'Crispijn van de Passe I' +p123170 +sa(dp123171 +g25273 +S'engraving' +p123172 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123173 +sg25268 +S'Charles Albert Bonaventure de Longueval, Comte de Bucquoi' +p123174 +sg25270 +S'Balthasar Moncornet' +p123175 +sa(dp123176 +g25273 +S'engraving' +p123177 +sg25267 +g27 +sg25275 +S'1621' +p123178 +sg25268 +S'Charles de Longueval, Count de Bucquoi' +p123179 +sg25270 +S'Aegidius Sadeler II' +p123180 +sa(dp123181 +g25273 +S'engraving' +p123182 +sg25267 +g27 +sg25275 +S'published 1738' +p123183 +sg25268 +S'William Cecil, Lord Burleigh' +p123184 +sg25270 +S'Jacobus Houbraken' +p123185 +sa(dp123186 +g25273 +S'engraving' +p123187 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123188 +sg25268 +S'William Cecil, First Baron Burghley' +p123189 +sg25270 +S'William Rogers' +p123190 +sa(dp123191 +g25273 +S'engraving' +p123192 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123193 +sg25268 +S'William Cecil, First Baron Burghley' +p123194 +sg25270 +S'Franz Hogenberg' +p123195 +sa(dp123196 +g25268 +S'Saint Bruno' +p123197 +sg25270 +S'German 15th Century' +p123198 +sg25273 +S'Schreiber, Vol. IX, no. 1314, State s' +p123199 +sg25275 +S'\nwoodcut' +p123200 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a591.jpg' +p123201 +sg25267 +g27 +sa(dp123202 +g25273 +S'(artist)' +p123203 +sg25267 +g27 +sg25275 +S'\n' +p123204 +sg25268 +S'William Cecil, First Baron Burghley' +p123205 +sg25270 +S'Artist Information (' +p123206 +sa(dp123207 +g25273 +S'engraving' +p123208 +sg25267 +g27 +sg25275 +S'published 1568' +p123209 +sg25268 +S'William Cecil, Lord Burghley' +p123210 +sg25270 +S'Franz Hogenberg' +p123211 +sa(dp123212 +g25273 +S'engraving' +p123213 +sg25267 +g27 +sg25275 +S'published 1622' +p123214 +sg25268 +S'Willmus Burton de Falde (William Burton)' +p123215 +sg25270 +S'Francis Delaram' +p123216 +sa(dp123217 +g25273 +S'engraving' +p123218 +sg25267 +g27 +sg25275 +S'published 1622' +p123219 +sg25268 +S'Willmus Burton de Falde (William Burton)' +p123220 +sg25270 +S'Francis Delaram' +p123221 +sa(dp123222 +g25273 +S', unknown date' +p123223 +sg25267 +g27 +sg25275 +S'\n' +p123224 +sg25268 +S'William Butler, Physician' +p123225 +sg25270 +S'Simon van de Passe' +p123226 +sa(dp123227 +g25273 +S', unknown date' +p123228 +sg25267 +g27 +sg25275 +S'\n' +p123229 +sg25268 +S'William Butler, Physician' +p123230 +sg25270 +S'Simon van de Passe' +p123231 +sa(dp123232 +g25273 +S'engraving' +p123233 +sg25267 +g27 +sg25275 +S'published 1650' +p123234 +sg25268 +S'Dr. William Butler' +p123235 +sg25270 +S'Unknown 19th Century' +p123236 +sa(dp123237 +g25273 +S'engraving' +p123238 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123239 +sg25268 +S'Sir Julius Caesar' +p123240 +sg25270 +S'Renold Elstrack' +p123241 +sa(dp123242 +g25273 +S'engraving' +p123243 +sg25267 +g27 +sg25275 +S'published 1810' +p123244 +sg25268 +S'Sir Julius Caesar' +p123245 +sg25270 +S'Unknown 19th Century' +p123246 +sa(dp123247 +g25273 +S'(artist)' +p123248 +sg25267 +g27 +sg25275 +S'\n' +p123249 +sg25268 +S'John Caius, Co-Founder of Gonville and Caius College, Cambridge' +p123250 +sg25270 +S'Artist Information (' +p123251 +sa(dp123252 +g25268 +S'Saint Hugo of Grenoble' +p123253 +sg25270 +S'German 15th Century' +p123254 +sg25273 +S'Schreiber, Vol. IX, no. 1502, State q' +p123255 +sg25275 +S'\nwoodcut' +p123256 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a58c.jpg' +p123257 +sg25267 +g27 +sa(dp123258 +g25273 +S'Rosenwald Collection' +p123259 +sg25267 +g27 +sg25275 +S'\nengraving' +p123260 +sg25268 +S'John Calvin' +p123261 +sg25270 +S'I. Covens' +p123262 +sa(dp123263 +g25273 +S'engraving' +p123264 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123265 +sg25268 +S'John Calvin' +p123266 +sg25270 +S'Unknown 19th Century' +p123267 +sa(dp123268 +g25273 +S'engraving' +p123269 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123270 +sg25268 +S'William Camden, Herald, Antiquary and Historian' +p123271 +sg25270 +S'Nicolas de Larmessin IV' +p123272 +sa(dp123273 +g25273 +S'engraving' +p123274 +sg25267 +g27 +sg25275 +S'published 1650' +p123275 +sg25268 +S'William Camden, Herald, Antiquary and Historian' +p123276 +sg25270 +S'Unknown 19th Century' +p123277 +sa(dp123278 +g25273 +S'engraving' +p123279 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123280 +sg25268 +S'Vincentius Carafa, Jesuit' +p123281 +sg25270 +S'Unknown 19th Century' +p123282 +sa(dp123283 +g25273 +S'engraving' +p123284 +sg25267 +g27 +sg25275 +S'1675' +p123285 +sg25268 +S'Peter de Carcavy' +p123286 +sg25270 +S'Gerard Edelinck' +p123287 +sa(dp123288 +g25273 +S'mezzotint' +p123289 +sg25267 +g27 +sg25275 +S'published 1723' +p123290 +sg25268 +S'Sir Nicholas Caren of Beddington' +p123291 +sg25270 +S'John Faber II' +p123292 +sa(dp123293 +g25273 +S'engraving' +p123294 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123295 +sg25268 +S'Christopher Carleill' +p123296 +sg25270 +S'Robert Boissard' +p123297 +sa(dp123298 +g25273 +S'(artist)' +p123299 +sg25267 +g27 +sg25275 +S'\n' +p123300 +sg25268 +S'Christopher Carleill' +p123301 +sg25270 +S'Artist Information (' +p123302 +sa(dp123303 +g25273 +S'(artist)' +p123304 +sg25267 +g27 +sg25275 +S'\n' +p123305 +sg25268 +S'Christopher Carleill' +p123306 +sg25270 +S'Artist Information (' +p123307 +sa(dp123308 +g25268 +S'Saint John the Baptist [recto]' +p123309 +sg25270 +S'German 15th Century' +p123310 +sg25273 +S'image: 14.1 x 11.4 cm (5 9/16 x 4 1/2 in.)' +p123311 +sg25275 +S'\nwoodcut' +p123312 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a58e.jpg' +p123313 +sg25267 +g27 +sa(dp123314 +g25273 +S'(artist after)' +p123315 +sg25267 +g27 +sg25275 +S'\n' +p123316 +sg25268 +S'Lucy Percy, Second Wife of James Hay, First Earl of Carlisle' +p123317 +sg25270 +S'Artist Information (' +p123318 +sa(dp123319 +g25273 +S', 1617' +p123320 +sg25267 +g27 +sg25275 +S'\n' +p123321 +sg25268 +S'James Hay, First Earl of Carlisle' +p123322 +sg25270 +S'Simon van de Passe' +p123323 +sa(dp123324 +g25273 +S', unknown date' +p123325 +sg25267 +g27 +sg25275 +S'\n' +p123326 +sg25268 +S'Don Carlos, Prince of Asturias' +p123327 +sg25270 +S'Hieronymus Cock' +p123328 +sa(dp123329 +g25273 +S'engraving' +p123330 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123331 +sg25268 +S'Don Carlos, Prince of Asturias' +p123332 +sg25270 +S'Frans Huys' +p123333 +sa(dp123334 +g25273 +S'facsimile' +p123335 +sg25267 +g27 +sg25275 +S'published 1796' +p123336 +sg25268 +S'George Carlton, Clergyman' +p123337 +sg25270 +S'Unknown 19th Century' +p123338 +sa(dp123339 +g25273 +S'engraving' +p123340 +sg25267 +g27 +sg25275 +S'published 1683' +p123341 +sg25268 +S'Thomas Cartwright, Puritan Divine' +p123342 +sg25270 +S'Unknown 19th Century' +p123343 +sa(dp123344 +g25273 +S'(artist)' +p123345 +sg25267 +g27 +sg25275 +S'\n' +p123346 +sg25268 +S'Thomas Cavendish' +p123347 +sg25270 +S'Artist Information (' +p123348 +sa(dp123349 +g25273 +S'(artist)' +p123350 +sg25267 +g27 +sg25275 +S'\n' +p123351 +sg25268 +S'Thomas Cavendish' +p123352 +sg25270 +S'Artist Information (' +p123353 +sa(dp123354 +g25273 +S', published 1598' +p123355 +sg25267 +g27 +sg25275 +S'\n' +p123356 +sg25268 +S'Thomas Cavendish' +p123357 +sg25270 +S'Crispijn van de Passe I' +p123358 +sa(dp123359 +g25273 +S', published 1598' +p123360 +sg25267 +g27 +sg25275 +S'\n' +p123361 +sg25268 +S'Thomas Cavendish' +p123362 +sg25270 +S'Crispijn van de Passe I' +p123363 +sa(dp123364 +g25268 +S'Saint Agnes [verso]' +p123365 +sg25270 +S'German 15th Century' +p123366 +sg25273 +S'Schreiber, no. 1180, State mu' +p123367 +sg25275 +S'\nwoodcut' +p123368 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a58f.jpg' +p123369 +sg25267 +g27 +sa(dp123370 +g25273 +S'engraving' +p123371 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123372 +sg25268 +S'Thomas Cavendish' +p123373 +sg25270 +S'Robert Boissard' +p123374 +sa(dp123375 +g25273 +S'(artist after)' +p123376 +sg25267 +g27 +sg25275 +S'\n' +p123377 +sg25268 +S'Jacob Cats' +p123378 +sg25270 +S'Artist Information (' +p123379 +sa(dp123380 +g25273 +S'(artist after)' +p123381 +sg25267 +g27 +sg25275 +S'\n' +p123382 +sg25268 +S'Jacob Cats, Poet' +p123383 +sg25270 +S'Artist Information (' +p123384 +sa(dp123385 +g25273 +S'(artist after)' +p123386 +sg25267 +g27 +sg25275 +S'\n' +p123387 +sg25268 +S'M. de Cheval' +p123388 +sg25270 +S'Artist Information (' +p123389 +sa(dp123390 +g25273 +S'(artist after)' +p123391 +sg25267 +g27 +sg25275 +S'\n' +p123392 +sg25268 +S'M. de Chalvel' +p123393 +sg25270 +S'Artist Information (' +p123394 +sa(dp123395 +g25273 +S'engraving' +p123396 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123397 +sg25268 +S'Charles, Archduke of Austria' +p123398 +sg25270 +S'Pieter de Jode I' +p123399 +sa(dp123400 +g25273 +S'engraving' +p123401 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123402 +sg25268 +S'Charles I' +p123403 +sg25270 +S'Unknown 19th Century' +p123404 +sa(dp123405 +g25273 +S', unknown date' +p123406 +sg25267 +g27 +sg25275 +S'\n' +p123407 +sg25268 +S'Charles I, Prince of Great Britain and Ireland, Duc of Cornwall and Yorck' +p123408 +sg25270 +S'Simon van de Passe' +p123409 +sa(dp123410 +g25273 +S'engraving' +p123411 +sg25267 +g27 +sg25275 +S'published 1616' +p123412 +sg25268 +S'Charles Prince of Wales (Charles I)' +p123413 +sg25270 +S'Francis Delaram' +p123414 +sa(dp123415 +g25273 +S'engraving' +p123416 +sg25267 +g27 +sg25275 +S'1626' +p123417 +sg25268 +S'Charles I' +p123418 +sg25270 +S'Hendrik Hondius I' +p123419 +sa(dp123420 +g25268 +S'Saint Alto, Saint Bridget and the Founders of the Mariamunster' +p123421 +sg25270 +S'German 15th Century' +p123422 +sg25273 +S'Schreiber, Vol. *, no. 1185, State b' +p123423 +sg25275 +S'\nwoodcut, hand-colored in green, red lake, brown, gray, and yellow' +p123424 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a553.jpg' +p123425 +sg25267 +g27 +sa(dp123426 +g25273 +S', unknown date' +p123427 +sg25267 +g27 +sg25275 +S'\n' +p123428 +sg25268 +S'Charles I on Horseback' +p123429 +sg25270 +S'Pierre Daret de Cazeneuve' +p123430 +sa(dp123431 +g25273 +S'(artist after)' +p123432 +sg25267 +g27 +sg25275 +S'\n' +p123433 +sg25268 +S'Charles II' +p123434 +sg25270 +S'Artist Information (' +p123435 +sa(dp123436 +g25273 +S'(artist after)' +p123437 +sg25267 +g27 +sg25275 +S'\n' +p123438 +sg25268 +S'Charles II' +p123439 +sg25270 +S'Artist Information (' +p123440 +sa(dp123441 +g25273 +S'(artist after)' +p123442 +sg25267 +g27 +sg25275 +S'\n' +p123443 +sg25268 +S'Charles II' +p123444 +sg25270 +S'Artist Information (' +p123445 +sa(dp123446 +g25273 +S'(artist after)' +p123447 +sg25267 +g27 +sg25275 +S'\n' +p123448 +sg25268 +S'Charles II' +p123449 +sg25270 +S'Artist Information (' +p123450 +sa(dp123451 +g25273 +S', unknown date' +p123452 +sg25267 +g27 +sg25275 +S'\n' +p123453 +sg25268 +S'Emperor Charles V' +p123454 +sg25270 +S'Hieronymus Wierix' +p123455 +sa(dp123456 +g25273 +S'engraving' +p123457 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123458 +sg25268 +S'Emperor Charles V' +p123459 +sg25270 +S'Unknown 19th Century' +p123460 +sa(dp123461 +g25273 +S'engraving' +p123462 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123463 +sg25268 +S'Charles IX, King of France' +p123464 +sg25270 +S'Etienne Desrochers' +p123465 +sa(dp123466 +g25273 +S'engraving' +p123467 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123468 +sg25268 +S'Charles IX, King of Sweden' +p123469 +sg25270 +S'Unknown 19th Century' +p123470 +sa(dp123471 +g25273 +S'engraving' +p123472 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123473 +sg25268 +S'Charles X, King of Sweden' +p123474 +sg25270 +S'Fran\xc3\xa7ois Mazot' +p123475 +sa(dp123476 +g25268 +S'Saint Alto' +p123477 +sg25270 +S'German 15th Century' +p123478 +sg25273 +S'Schreiber, no. 1185' +p123479 +sg25275 +S'\nwoodcut, hand colored in burgundy, blue-green, orange, brown, red, and yellow-green' +p123480 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a54f.jpg' +p123481 +sg25267 +g27 +sa(dp123482 +g25273 +S'engraving' +p123483 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123484 +sg25268 +S'King Charles Taking Leave of His Children' +p123485 +sg25270 +S'Bernard Lepicie' +p123486 +sa(dp123487 +g25273 +S'Rosenwald Collection' +p123488 +sg25267 +g27 +sg25275 +S'\nengraving' +p123489 +sg25268 +S'Charles Emmanuel I, Prince of Piedmont' +p123490 +sg25270 +S'Jacobus Laurus Romanus' +p123491 +sa(dp123492 +g25273 +S'engraving' +p123493 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123494 +sg25268 +S'Charles Emmanuel I, Duke of Savoy, Prince of Piedmont' +p123495 +sg25270 +S'Thomas de Leu' +p123496 +sa(dp123497 +g25273 +S'engraving' +p123498 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123499 +sg25268 +S'Charles Emmanuel, Prince of Piedmont' +p123500 +sg25270 +S'Aegidius Sadeler II' +p123501 +sa(dp123502 +g25273 +S'engraving' +p123503 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123504 +sg25268 +S'Charles Emmanuel, Prince of Piedmont' +p123505 +sg25270 +S'Aegidius Sadeler II' +p123506 +sa(dp123507 +g25273 +S'engraving' +p123508 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123509 +sg25268 +S'Pierre Charron, French Philosopher' +p123510 +sg25270 +S'Unknown 19th Century' +p123511 +sa(dp123512 +g25273 +S'engraving' +p123513 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123514 +sg25268 +S'The Progenie of Geffrey Chaucer' +p123515 +sg25270 +S'Unknown 19th Century' +p123516 +sa(dp123517 +g25273 +S'(artist)' +p123518 +sg25267 +g27 +sg25275 +S'\n' +p123519 +sg25268 +S'Sir John Cheke, Tutor to Edward VI' +p123520 +sg25270 +S'Artist Information (' +p123521 +sa(dp123522 +g25273 +S'(artist)' +p123523 +sg25267 +g27 +sg25275 +S'\n' +p123524 +sg25268 +S'Sir John Cheke, Tutor to Edward VI' +p123525 +sg25270 +S'Artist Information (' +p123526 +sa(dp123527 +g25273 +S'engraving' +p123528 +sg25267 +g27 +sg25275 +S'1615' +p123529 +sg25268 +S'Christian II' +p123530 +sg25270 +S'Lucas Kilian' +p123531 +sa(dp123532 +g25268 +S'Saint Anne, The Madonna and Child, and a Franciscan Monk' +p123533 +sg25270 +S'German 15th Century' +p123534 +sg25273 +S'Schreiber, Vol. *, no. 1197, State a' +p123535 +sg25275 +S'\nwoodcut, hand-colored red lake, green, rose, yellow, and gray' +p123536 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a550.jpg' +p123537 +sg25267 +g27 +sa(dp123538 +g25273 +S', published 1598' +p123539 +sg25267 +g27 +sg25275 +S'\n' +p123540 +sg25268 +S'Christian IV, King of Denmark' +p123541 +sg25270 +S'Crispijn van de Passe I' +p123542 +sa(dp123543 +g25273 +S'(artist after)' +p123544 +sg25267 +g27 +sg25275 +S'\n' +p123545 +sg25268 +S'Christian IV of Denmark' +p123546 +sg25270 +S'Artist Information (' +p123547 +sa(dp123548 +g25273 +S'engraving' +p123549 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123550 +sg25268 +S'Christian IV of Denmark' +p123551 +sg25270 +S'Jodocus Hondius I' +p123552 +sa(dp123553 +g25273 +S'engraving' +p123554 +sg25267 +g27 +sg25275 +S'1625' +p123555 +sg25268 +S'Christian IV of Denmark' +p123556 +sg25270 +S'Lucas Kilian' +p123557 +sa(dp123558 +g25273 +S', unknown date' +p123559 +sg25267 +g27 +sg25275 +S'\n' +p123560 +sg25268 +S'Christian IV, King of Denmark' +p123561 +sg25270 +S'Crispijn van de Passe I' +p123562 +sa(dp123563 +g25273 +S'engraving' +p123564 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123565 +sg25268 +S'Christian IV, King of Denmark' +p123566 +sg25270 +S'Gottlieb Muller' +p123567 +sa(dp123568 +g25273 +S'(artist after)' +p123569 +sg25267 +g27 +sg25275 +S'\n' +p123570 +sg25268 +S'Prince Christian, Son of Christian IV' +p123571 +sg25270 +S'Artist Information (' +p123572 +sa(dp123573 +g25273 +S'engraving' +p123574 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123575 +sg25268 +S'Christian, Markgraf of Brandenburg' +p123576 +sg25270 +S'Peter Troschel' +p123577 +sa(dp123578 +g25273 +S'engraving' +p123579 +sg25267 +g27 +sg25275 +S'1634' +p123580 +sg25268 +S'Queen Christina' +p123581 +sg25270 +S'Lucas Kilian' +p123582 +sa(dp123583 +g25273 +S', published 1613' +p123584 +sg25267 +g27 +sg25275 +S'\n' +p123585 +sg25268 +S'Queen Christina' +p123586 +sg25270 +S'Wenceslaus Hollar' +p123587 +sa(dp123588 +g25268 +S'Saint Anne with the Madonna and Child' +p123589 +sg25270 +S'German 15th Century' +p123590 +sg25273 +S'Schreiber, no. 1204, State b' +p123591 +sg25275 +S'\nwoodcut, hand-colored in yellow, green, red' +p123592 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a554.jpg' +p123593 +sg25267 +g27 +sa(dp123594 +g25273 +S'engraving' +p123595 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123596 +sg25268 +S'Christina, Queen of Sweden' +p123597 +sg25270 +S'Unknown 19th Century' +p123598 +sa(dp123599 +g25273 +S'engraving' +p123600 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123601 +sg25268 +S'Prince Christopher, son of Anthony, King of Portugal' +p123602 +sg25270 +S'Anna van Bouckel' +p123603 +sa(dp123604 +g25273 +S', 1598' +p123605 +sg25267 +g27 +sg25275 +S'\n' +p123606 +sg25268 +S'Ciconia (Paschalis)' +p123607 +sg25270 +S'Crispijn van de Passe I' +p123608 +sa(dp123609 +g25273 +S'engraving' +p123610 +sg25267 +g27 +sg25275 +S'1621' +p123611 +sg25268 +S'Clara Maria, Duchess of Brunswick, Wife of August II' +p123612 +sg25270 +S'Lucas Kilian' +p123613 +sa(dp123614 +g25273 +S', 1592' +p123615 +sg25267 +g27 +sg25275 +S'\n' +p123616 +sg25268 +S'Pope Clement VIII' +p123617 +sg25270 +S'Crispijn van de Passe I' +p123618 +sa(dp123619 +g25273 +S', published 1598' +p123620 +sg25267 +g27 +sg25275 +S'\n' +p123621 +sg25268 +S'Pope Clement VIII' +p123622 +sg25270 +S'Crispijn van de Passe I' +p123623 +sa(dp123624 +g25273 +S'engraving' +p123625 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123626 +sg25268 +S'Pierre le Clerc, Doctor of Theology in Paris' +p123627 +sg25270 +S'Pierre Daret de Cazeneuve' +p123628 +sa(dp123629 +g25273 +S', unknown date' +p123630 +sg25267 +g27 +sg25275 +S'\n' +p123631 +sg25268 +S'Philip Cluver, Geographer' +p123632 +sg25270 +S'Jacques de Gheyn II' +p123633 +sa(dp123634 +g25273 +S'engraving' +p123635 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123636 +sg25268 +S'Jeannes de Cocesme, First Wife of Francois, Prince of Conti' +p123637 +sg25270 +S'Thomas de Leu' +p123638 +sa(dp123639 +g25273 +S'stipple engraving (?)' +p123640 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123641 +sg25268 +S'Sir Aston Cockain, Poet' +p123642 +sg25270 +S'Unknown 19th Century' +p123643 +sa(dp123644 +g25268 +S'Saint Apollonia' +p123645 +sg25270 +S'German 15th Century' +p123646 +sg25273 +S'Schreiber, Vol. *, no. 1237, State c' +p123647 +sg25275 +S'\nwoodcut, hand-colored in red lake, green, yellow, and brown' +p123648 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a555.jpg' +p123649 +sg25267 +g27 +sa(dp123650 +g25273 +S'mezzotint' +p123651 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123652 +sg25268 +S'Sir Edward Coke, Knight, Lord Chief Justice' +p123653 +sg25270 +S'J. Cooper' +p123654 +sa(dp123655 +g25273 +S'(artist after)' +p123656 +sg25267 +g27 +sg25275 +S'\n' +p123657 +sg25268 +S'Lady Mary Coke, Wife of Edward, Viscount Coke' +p123658 +sg25270 +S'Artist Information (' +p123659 +sa(dp123660 +g25273 +S'(artist)' +p123661 +sg25267 +g27 +sg25275 +S'\n' +p123662 +sg25268 +S"John Colet, Dean of Saint Paul's" +p123663 +sg25270 +S'Artist Information (' +p123664 +sa(dp123665 +g25273 +S'engraving' +p123666 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123667 +sg25268 +S'Louise de Coligny, Fourth Wife of William I of Orange' +p123668 +sg25270 +S'Crispyn van den Queboorn' +p123669 +sa(dp123670 +g25273 +S'engraving' +p123671 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123672 +sg25268 +S'Petrus Collins' +p123673 +sg25270 +S'Cornelis Galle I' +p123674 +sa(dp123675 +g25273 +S'engraving' +p123676 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123677 +sg25268 +S'Petrus Collins' +p123678 +sg25270 +S'Cornelis Galle I' +p123679 +sa(dp123680 +g25273 +S'engraving' +p123681 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123682 +sg25268 +S'Christopher Columbus' +p123683 +sg25270 +S'Unknown 19th Century' +p123684 +sa(dp123685 +g25273 +S'(artist after)' +p123686 +sg25267 +g27 +sg25275 +S'\n' +p123687 +sg25268 +S'Captain Thomas Coram' +p123688 +sg25270 +S'Artist Information (' +p123689 +sa(dp123690 +g25273 +S'(artist after)' +p123691 +sg25267 +g27 +sg25275 +S'\n' +p123692 +sg25268 +S'Francisco Cornaro' +p123693 +sg25270 +S'Artist Information (' +p123694 +sa(dp123695 +g25273 +S'engraving' +p123696 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123697 +sg25268 +S'R. P. Francis Coster' +p123698 +sg25270 +S'Lucas Emil Vorsterman' +p123699 +sa(dp123700 +g25268 +S'Saint Augustine' +p123701 +sg25270 +S'German 15th Century' +p123702 +sg25273 +S'Schreiber, no. 1242, State a' +p123703 +sg25275 +S'\nwoodcut, hand-colored in black, brown, ochre, green, tan, brick red, and mauve' +p123704 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a63b.jpg' +p123705 +sg25267 +g27 +sa(dp123706 +g25273 +S'engraving' +p123707 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123708 +sg25268 +S'Abraham Cowley' +p123709 +sg25270 +S'John Hall' +p123710 +sa(dp123711 +g25273 +S'engraving' +p123712 +sg25267 +g27 +sg25275 +S'1599' +p123713 +sg25268 +S'Thomas Cranmer, Archbishop of Canterbury' +p123714 +sg25270 +S'Hendrik Hondius I' +p123715 +sa(dp123716 +g25273 +S'(artist)' +p123717 +sg25267 +g27 +sg25275 +S'\n' +p123718 +sg25268 +S'Thomas Cranmer' +p123719 +sg25270 +S'Artist Information (' +p123720 +sa(dp123721 +g25273 +S'British, 1618 - 1680' +p123722 +sg25267 +g27 +sg25275 +S'(artist after)' +p123723 +sg25268 +S'Oliver Cromwell, Lord Protector' +p123724 +sg25270 +S'Artist Information (' +p123725 +sa(dp123726 +g25273 +S'engraving' +p123727 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123728 +sg25268 +S'Oliver Cromwell' +p123729 +sg25270 +S'George Bickham, d. A.' +p123730 +sa(dp123731 +g25273 +S'(artist)' +p123732 +sg25267 +g27 +sg25275 +S'\n' +p123733 +sg25268 +S'George Clifford, Third Earl of Cumberland' +p123734 +sg25270 +S'Artist Information (' +p123735 +sa(dp123736 +g25273 +S'(artist after)' +p123737 +sg25267 +g27 +sg25275 +S'\n' +p123738 +sg25268 +S'Cornelius van Dalen' +p123739 +sg25270 +S'Artist Information (' +p123740 +sa(dp123741 +g25273 +S'engraving' +p123742 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123743 +sg25268 +S'Abraham Darssie' +p123744 +sg25270 +S'Francis Delaram' +p123745 +sa(dp123746 +g25273 +S'engraving' +p123747 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123748 +sg25268 +S'Abraham Darssie' +p123749 +sg25270 +S'Francis Delaram' +p123750 +sa(dp123751 +g25273 +S'engraving' +p123752 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123753 +sg25268 +S'Anne Dautri' +p123754 +sg25270 +S'Unknown 19th Century' +p123755 +sa(dp123756 +g25268 +S'Saint Barbara' +p123757 +sg25270 +S'German 15th Century' +p123758 +sg25273 +S'image: 18.4 x 12 cm (7 1/4 x 4 3/4 in.)\r\nsheet: 20.9 x 15 cm (8 1/4 x 5 7/8 in.)\r\noverall (external frame dimensions): 39.4 x 31.8 cm (15 1/2 x 12 1/2 in.)' +p123759 +sg25275 +S'\nwoodcut, hand-colored in red lake, yellow, green, and rose' +p123760 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a000562d.jpg' +p123761 +sg25267 +g27 +sa(dp123762 +g25273 +S'engraving' +p123763 +sg25267 +g27 +sg25275 +S'1609' +p123764 +sg25268 +S'Samuel David' +p123765 +sg25270 +S'Thomas Cockson' +p123766 +sa(dp123767 +g25273 +S', 1562' +p123768 +sg25267 +g27 +sg25275 +S'\n' +p123769 +sg25268 +S'John Day, Printer' +p123770 +sg25270 +S'John Bettes' +p123771 +sa(dp123772 +g25273 +S'engraving' +p123773 +sg25267 +g27 +sg25275 +S'1589' +p123774 +sg25268 +S"D'Ayrail" +p123775 +sg25270 +S'Thomas de Leu' +p123776 +sa(dp123777 +g25268 +S'Nicolaus Petri van Deventer' +p123778 +sg25270 +S'Hendrick Goltzius' +p123779 +sg25273 +S', 1595' +p123780 +sg25275 +S'\n' +p123781 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce34.jpg' +p123782 +sg25267 +g27 +sa(dp123783 +g25273 +S'(artist)' +p123784 +sg25267 +g27 +sg25275 +S'\n' +p123785 +sg25268 +S'Edward Dering, Puritan Divine' +p123786 +sg25270 +S'Artist Information (' +p123787 +sa(dp123788 +g25273 +S'(artist after)' +p123789 +sg25267 +g27 +sg25275 +S'\n' +p123790 +sg25268 +S'Sir Kenelm Digby, Author and Diplomatist' +p123791 +sg25270 +S'Artist Information (' +p123792 +sa(dp123793 +g25273 +S'engraving' +p123794 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123795 +sg25268 +S'Sir Thomas Docwra' +p123796 +sg25270 +S'William Rogers' +p123797 +sa(dp123798 +g25273 +S'engraving' +p123799 +sg25267 +g27 +sg25275 +S'published 1602' +p123800 +sg25268 +S'Sir Thomas Docwra, Knight of Malta' +p123801 +sg25270 +S'William Rogers' +p123802 +sa(dp123803 +g25273 +S'woodcut' +p123804 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123805 +sg25268 +S'Rembret Dodoens' +p123806 +sg25270 +S'Unknown 19th Century' +p123807 +sa(dp123808 +g25273 +S'(artist after)' +p123809 +sg25267 +g27 +sg25275 +S'\n' +p123810 +sg25268 +S'Marc Antonio de Dominis' +p123811 +sg25270 +S'Artist Information (' +p123812 +sa(dp123813 +g25268 +S'Martyrdom of Saint Barbara' +p123814 +sg25270 +S'German 15th Century' +p123815 +sg25273 +S'Schreiber, no. 1260, State b' +p123816 +sg25275 +S'\nwoodcut in brown, hand-colored in red lake, green, blue, yellow, gold, and orange' +p123817 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a609.jpg' +p123818 +sg25267 +g27 +sa(dp123819 +g25273 +S'Dutch, 1567 - 1641' +p123820 +sg25267 +g27 +sg25275 +S'(artist after)' +p123821 +sg25268 +S'Marc Antonio de Dominis' +p123822 +sg25270 +S'Artist Information (' +p123823 +sa(dp123824 +g25273 +S'Dutch, 1567 - 1641' +p123825 +sg25267 +g27 +sg25275 +S'(artist after)' +p123826 +sg25268 +S'Marc Antonio de Dominis' +p123827 +sg25270 +S'Artist Information (' +p123828 +sa(dp123829 +g25273 +S', unknown date' +p123830 +sg25267 +g27 +sg25275 +S'\n' +p123831 +sg25268 +S'Hugo Donellus' +p123832 +sg25270 +S'Crispijn van de Passe I' +p123833 +sa(dp123834 +g25273 +S'engraving' +p123835 +sg25267 +g27 +sg25275 +S'published 1633' +p123836 +sg25268 +S"Dr. John Donne, Dean of Saint Paul's, Poet" +p123837 +sg25270 +S'Martin Droeshout' +p123838 +sa(dp123839 +g25273 +S'(artist after)' +p123840 +sg25267 +g27 +sg25275 +S'\n' +p123841 +sg25268 +S'Sir Dudley Carleton, Viscount Dorchester' +p123842 +sg25270 +S'Artist Information (' +p123843 +sa(dp123844 +g25273 +S'(artist after)' +p123845 +sg25267 +g27 +sg25275 +S'\n' +p123846 +sg25268 +S'Sir Dudley Carleton, Viscount Dorchester' +p123847 +sg25270 +S'Artist Information (' +p123848 +sa(dp123849 +g25273 +S'(artist after)' +p123850 +sg25267 +g27 +sg25275 +S'\n' +p123851 +sg25268 +S'Sir Dudley Carleton, Viscount Dorchester' +p123852 +sg25270 +S'Artist Information (' +p123853 +sa(dp123854 +g25273 +S', published 1598' +p123855 +sg25267 +g27 +sg25275 +S'\n' +p123856 +sg25268 +S'Andrea Doria' +p123857 +sg25270 +S'Crispijn van de Passe I' +p123858 +sa(dp123859 +g25273 +S'engraving' +p123860 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123861 +sg25268 +S'John Doucher, French Divine' +p123862 +sg25270 +S'Willem Jacobsz Delff' +p123863 +sa(dp123864 +g25273 +S'engraving' +p123865 +sg25267 +g27 +sg25275 +S'in or after 1651' +p123866 +sg25268 +S'Rupert Duglass, Swedish General' +p123867 +sg25270 +S'Jeremias Falck' +p123868 +sa(dp123869 +g25268 +S'Portrait of a Young Man' +p123870 +sg25270 +S'Antonello da Messina' +p123871 +sg25273 +S', c. 1475/1480' +p123872 +sg25275 +S'\n' +p123873 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007cd.jpg' +p123874 +sg25267 +g27 +sa(dp123875 +g25268 +S'The Martyrdom of Saint Barbara' +p123876 +sg25270 +S'German 15th Century' +p123877 +sg25273 +S'Schreiber, Vol. IX, no. 1260, State e' +p123878 +sg25275 +S'\nwoodcut in lt. brown, hand-colored in red lake, green, blue, yellow, rose, gold, and orange' +p123879 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a60a.jpg' +p123880 +sg25267 +g27 +sa(dp123881 +g25273 +S'engraving' +p123882 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123883 +sg25268 +S'Robert Duglass, Swedish General' +p123884 +sg25270 +S'Wolfgang Philipp Kilian' +p123885 +sa(dp123886 +g25273 +S', unknown date' +p123887 +sg25267 +g27 +sg25275 +S'\n' +p123888 +sg25268 +S'Sir Francis Drake' +p123889 +sg25270 +S'Jodocus Hondius I' +p123890 +sa(dp123891 +g25273 +S'Dutch, 1563 - 1611/1612' +p123892 +sg25267 +g27 +sg25275 +S'(artist after)' +p123893 +sg25268 +S'Sir Francis Drake' +p123894 +sg25270 +S'Artist Information (' +p123895 +sa(dp123896 +g25273 +S'(artist)' +p123897 +sg25267 +g27 +sg25275 +S'\n' +p123898 +sg25268 +S'Sir Francis Drake' +p123899 +sg25270 +S'Artist Information (' +p123900 +sa(dp123901 +g25273 +S'(artist)' +p123902 +sg25267 +g27 +sg25275 +S'\n' +p123903 +sg25268 +S'Sir Francis Drake' +p123904 +sg25270 +S'Artist Information (' +p123905 +sa(dp123906 +g25273 +S', published 1598' +p123907 +sg25267 +g27 +sg25275 +S'\n' +p123908 +sg25268 +S'Francis Drake' +p123909 +sg25270 +S'Crispijn van de Passe I' +p123910 +sa(dp123911 +g25273 +S'engraving' +p123912 +sg25267 +g27 +sg25275 +S'published 1682' +p123913 +sg25268 +S'Sir Francis Drake' +p123914 +sg25270 +S'Nicolas de Larmessin IV' +p123915 +sa(dp123916 +g25273 +S'(artist after)' +p123917 +sg25267 +g27 +sg25275 +S'\n' +p123918 +sg25268 +S'Sir Francis Drake' +p123919 +sg25270 +S'Artist Information (' +p123920 +sa(dp123921 +g25273 +S'(artist after)' +p123922 +sg25267 +g27 +sg25275 +S'\n' +p123923 +sg25268 +S'Sir Francis Drake' +p123924 +sg25270 +S'Artist Information (' +p123925 +sa(dp123926 +g25273 +S'(artist after)' +p123927 +sg25267 +g27 +sg25275 +S'\n' +p123928 +sg25268 +S'Sir Francis Drake' +p123929 +sg25270 +S'Artist Information (' +p123930 +sa(dp123931 +g25268 +S'Madonna and Child' +p123932 +sg25270 +S'German 15th Century' +p123933 +sg25273 +S'Lehrs, undescribed' +p123934 +sg25275 +S'\nhand-colored engraving' +p123935 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3c5.jpg' +p123936 +sg25267 +g27 +sa(dp123937 +g25273 +S'engraving' +p123938 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123939 +sg25268 +S'Sir Francis Drake' +p123940 +sg25270 +S'Hieronymus Wierix' +p123941 +sa(dp123942 +g25273 +S'engraving' +p123943 +sg25267 +g27 +sg25275 +S'1608' +p123944 +sg25268 +S'Albrecht Durer' +p123945 +sg25270 +S'Lucas Kilian' +p123946 +sa(dp123947 +g25268 +S'Albrecht Durer' +p123948 +sg25270 +S'German 16th Century' +p123949 +sg25273 +S'plate (diameter): 9.4 cm (3 11/16 in.)\r\nsheet: 9.9 x 9.5 cm (3 7/8 x 3 3/4 in.)' +p123950 +sg25275 +S'\nengraving' +p123951 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a79d.jpg' +p123952 +sg25267 +g27 +sa(dp123953 +g25268 +S'Albrecht Durer' +p123954 +sg25270 +S'Artist Information (' +p123955 +sg25273 +S'Flemish, c. 1510 - 1570' +p123956 +sg25275 +S'(publisher)' +p123957 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce52.jpg' +p123958 +sg25267 +g27 +sa(dp123959 +g25273 +S'engraving' +p123960 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123961 +sg25268 +S'Edward I of England' +p123962 +sg25270 +S'Renold Elstrack' +p123963 +sa(dp123964 +g25273 +S'engraving' +p123965 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123966 +sg25268 +S'Edward II of England' +p123967 +sg25270 +S'Renold Elstrack' +p123968 +sa(dp123969 +g25273 +S'engraving' +p123970 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123971 +sg25268 +S'Edward III of England' +p123972 +sg25270 +S'Renold Elstrack' +p123973 +sa(dp123974 +g25273 +S'engraving' +p123975 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123976 +sg25268 +S'Edward IV of England' +p123977 +sg25270 +S'Renold Elstrack' +p123978 +sa(dp123979 +g25273 +S'engraving' +p123980 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123981 +sg25268 +S'King Edward IV' +p123982 +sg25270 +S'Renold Elstrack' +p123983 +sa(dp123984 +g25273 +S'engraving' +p123985 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123986 +sg25268 +S'Edward V of England' +p123987 +sg25270 +S'Renold Elstrack' +p123988 +sa(dp123989 +g25268 +S'Saint Barbara' +p123990 +sg25270 +S'German 15th Century' +p123991 +sg25273 +S'Schreiber, no. 1261' +p123992 +sg25275 +S'\nwoodcut in brown, hand-colored in red lake, yellow, green, blue, ochre, and gold' +p123993 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a57e.jpg' +p123994 +sg25267 +g27 +sa(dp123995 +g25273 +S'engraving' +p123996 +sg25267 +g27 +sg25275 +S'unknown date\n' +p123997 +sg25268 +S'King Edward V' +p123998 +sg25270 +S'Renold Elstrack' +p123999 +sa(dp124000 +g25273 +S', unknown date' +p124001 +sg25267 +g27 +sg25275 +S'\n' +p124002 +sg25268 +S'Edward VI of England' +p124003 +sg25270 +S'Simon van de Passe' +p124004 +sa(dp124005 +g25273 +S'engraving' +p124006 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124007 +sg25268 +S'Edward VI' +p124008 +sg25270 +S'Michel Corneille' +p124009 +sa(dp124010 +g25273 +S'(artist)' +p124011 +sg25267 +g27 +sg25275 +S'\n' +p124012 +sg25268 +S'Edward VI' +p124013 +sg25270 +S'Artist Information (' +p124014 +sa(dp124015 +g25273 +S'(artist)' +p124016 +sg25267 +g27 +sg25275 +S'\n' +p124017 +sg25268 +S'Edward VI' +p124018 +sg25270 +S'Artist Information (' +p124019 +sa(dp124020 +g25273 +S'engraving' +p124021 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124022 +sg25268 +S'Edward VI' +p124023 +sg25270 +S'Unknown 19th Century' +p124024 +sa(dp124025 +g25273 +S'engraving' +p124026 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124027 +sg25268 +S'Edward, the Black Prince' +p124028 +sg25270 +S'Renold Elstrack' +p124029 +sa(dp124030 +g25268 +S"Countess Francoise d'Egmond" +p124031 +sg25270 +S'Hendrick Goltzius' +p124032 +sg25273 +S', 1580' +p124033 +sg25275 +S'\n' +p124034 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce24.jpg' +p124035 +sg25267 +g27 +sa(dp124036 +g25273 +S'(artist after)' +p124037 +sg25267 +g27 +sg25275 +S'\n' +p124038 +sg25268 +S'Elizabeth' +p124039 +sg25270 +S'Artist Information (' +p124040 +sa(dp124041 +g25273 +S'(artist)' +p124042 +sg25267 +g27 +sg25275 +S'\n' +p124043 +sg25268 +S'Queen Elizabeth' +p124044 +sg25270 +S'Artist Information (' +p124045 +sa(dp124046 +g25268 +S'Saint Barbara' +p124047 +sg25270 +S'German 15th Century' +p124048 +sg25273 +S'Schreiber, Vol. IX, no. 1261, State a' +p124049 +sg25275 +S'\nwoodcut, hand-colored in red, blue, yellow, green,gold' +p124050 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a57f.jpg' +p124051 +sg25267 +g27 +sa(dp124052 +g25273 +S'(artist after)' +p124053 +sg25267 +g27 +sg25275 +S'\n' +p124054 +sg25268 +S'Queen Elizabeth' +p124055 +sg25270 +S'Artist Information (' +p124056 +sa(dp124057 +g25273 +S'(artist after)' +p124058 +sg25267 +g27 +sg25275 +S'\n' +p124059 +sg25268 +S'Queen Elizabeth' +p124060 +sg25270 +S'Artist Information (' +p124061 +sa(dp124062 +g25273 +S'(artist after)' +p124063 +sg25267 +g27 +sg25275 +S'\n' +p124064 +sg25268 +S'Queen Elizabeth' +p124065 +sg25270 +S'Artist Information (' +p124066 +sa(dp124067 +g25273 +S'French, c. 1565 - 1617' +p124068 +sg25267 +g27 +sg25275 +S'(artist after)' +p124069 +sg25268 +S'Elizabeth' +p124070 +sg25270 +S'Artist Information (' +p124071 +sa(dp124072 +g25273 +S', unknown date' +p124073 +sg25267 +g27 +sg25275 +S'\n' +p124074 +sg25268 +S'Princess Elizabeth' +p124075 +sg25270 +S'Richard Earlom' +p124076 +sa(dp124077 +g25273 +S'engraving' +p124078 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124079 +sg25268 +S'Queen Elizabeth' +p124080 +sg25270 +S'Cornelis Vermeulen' +p124081 +sa(dp124082 +g25273 +S'engraving' +p124083 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124084 +sg25268 +S'Queen Elizabeth' +p124085 +sg25270 +S'Unknown 19th Century' +p124086 +sa(dp124087 +g25273 +S'Dutch, c. 1565 - 1637' +p124088 +sg25267 +g27 +sg25275 +S'(artist after)' +p124089 +sg25268 +S'Queen Elizabeth' +p124090 +sg25270 +S'Artist Information (' +p124091 +sa(dp124092 +g25273 +S'engraving' +p124093 +sg25267 +g27 +sg25275 +S'1589' +p124094 +sg25268 +S'Queen Elizabeth' +p124095 +sg25270 +S'Thomas de Leu' +p124096 +sa(dp124097 +g25273 +S'engraving' +p124098 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124099 +sg25268 +S'Elizabetha Anglia et Francae et Hibe. Reginae(Queen Elizabeth)' +p124100 +sg25270 +S'Francis Delaram' +p124101 +sa(dp124102 +g25268 +S'Saint Bernard of Clairvaux' +p124103 +sg25270 +S'German 15th Century' +p124104 +sg25273 +S'Schreiber, no. 1276, State d' +p124105 +sg25275 +S'\nwoodcut, hand-colored in black, yellow, green, orange, gold, and red' +p124106 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a558.jpg' +p124107 +sg25267 +g27 +sa(dp124108 +g25273 +S'engraving' +p124109 +sg25267 +g27 +sg25275 +S'1625' +p124110 +sg25268 +S'Queen Elizabeth' +p124111 +sg25270 +S'Crispyn van den Queboorn' +p124112 +sa(dp124113 +g25273 +S'(artist after)' +p124114 +sg25267 +g27 +sg25275 +S'\n' +p124115 +sg25268 +S'Queen Elizabeth' +p124116 +sg25270 +S'Artist Information (' +p124117 +sa(dp124118 +g25273 +S'engraving' +p124119 +sg25267 +g27 +sg25275 +S'1625' +p124120 +sg25268 +S'Queen Elizabeth' +p124121 +sg25270 +S'Crispyn van den Queboorn' +p124122 +sa(dp124123 +g25273 +S'Dutch, c. 1565 - 1637' +p124124 +sg25267 +g27 +sg25275 +S'(artist after)' +p124125 +sg25268 +S'Queen Elizabeth' +p124126 +sg25270 +S'Artist Information (' +p124127 +sa(dp124128 +g25273 +S'Dutch, c. 1565 - 1637' +p124129 +sg25267 +g27 +sg25275 +S'(artist after)' +p124130 +sg25268 +S'Queen Elizabeth' +p124131 +sg25270 +S'Artist Information (' +p124132 +sa(dp124133 +g25273 +S'Dutch, c. 1565 - 1637' +p124134 +sg25267 +g27 +sg25275 +S'(artist after)' +p124135 +sg25268 +S'Queen Elizabeth' +p124136 +sg25270 +S'Artist Information (' +p124137 +sa(dp124138 +g25268 +S'Queen Elizabeth' +p124139 +sg25270 +S'Artist Information (' +p124140 +sg25273 +S'(artist after)' +p124141 +sg25275 +S'\n' +p124142 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd59.jpg' +p124143 +sg25267 +g27 +sa(dp124144 +g25273 +S'Dutch, c. 1565 - 1637' +p124145 +sg25267 +g27 +sg25275 +S'(artist after)' +p124146 +sg25268 +S'Queen Elizabeth' +p124147 +sg25270 +S'Artist Information (' +p124148 +sa(dp124149 +g25273 +S'engraving' +p124150 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124151 +sg25268 +S'Queen Elizabeth' +p124152 +sg25270 +S'Renold Elstrack' +p124153 +sa(dp124154 +g25273 +S'engraving' +p124155 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124156 +sg25268 +S'Queen Elizabeth' +p124157 +sg25270 +S'Renold Elstrack' +p124158 +sa(dp124159 +g25268 +S'Saint Bernard with the Madonna and Child' +p124160 +sg25270 +S'German 15th Century' +p124161 +sg25273 +S'Schreiber, no. 1276, State h' +p124162 +sg25275 +S'\nwoodcut, hand-colored in red lake, yellow, green, black, and orange' +p124163 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a556.jpg' +p124164 +sg25267 +g27 +sa(dp124165 +g25273 +S'engraving' +p124166 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124167 +sg25268 +S'Queen Elizabeth' +p124168 +sg25270 +S'Willem Kip' +p124169 +sa(dp124170 +g25273 +S'engraving' +p124171 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124172 +sg25268 +S'Queen Elizabeth' +p124173 +sg25270 +S'Frans Huys' +p124174 +sa(dp124175 +g25268 +S'Elizabeth, Queen of Great Britain' +p124176 +sg25270 +S'Christoffel van Sichem I' +p124177 +sg25273 +S'engraving on laid paper' +p124178 +sg25275 +S'published 1601' +p124179 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3c0.jpg' +p124180 +sg25267 +g27 +sa(dp124181 +g25273 +S'engraving' +p124182 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124183 +sg25268 +S'Queen Elizabeth' +p124184 +sg25270 +S'Unknown 19th Century' +p124185 +sa(dp124186 +g25273 +S'(artist)' +p124187 +sg25267 +g27 +sg25275 +S'\n' +p124188 +sg25268 +S'Queen Elizabeth' +p124189 +sg25270 +S'Artist Information (' +p124190 +sa(dp124191 +g25273 +S'(artist)' +p124192 +sg25267 +g27 +sg25275 +S'\n' +p124193 +sg25268 +S'Queen Elizabeth' +p124194 +sg25270 +S'Artist Information (' +p124195 +sa(dp124196 +g25273 +S', published 1598' +p124197 +sg25267 +g27 +sg25275 +S'\n' +p124198 +sg25268 +S'Elizabeth, Queen of England' +p124199 +sg25270 +S'Crispijn van de Passe I' +p124200 +sa(dp124201 +g25273 +S'engraving' +p124202 +sg25267 +g27 +sg25275 +S'published 1630' +p124203 +sg25268 +S'Queen Elizabeth' +p124204 +sg25270 +S'Francis Delaram' +p124205 +sa(dp124206 +g25273 +S'(artist)' +p124207 +sg25267 +g27 +sg25275 +S'\n' +p124208 +sg25268 +S"Elizabeth's Tomb" +p124209 +sg25270 +S'Artist Information (' +p124210 +sa(dp124211 +g25273 +S'(artist)' +p124212 +sg25267 +g27 +sg25275 +S'\n' +p124213 +sg25268 +S"Elizabeth's Tomb" +p124214 +sg25270 +S'Artist Information (' +p124215 +sa(dp124216 +g25268 +S'Saint Bridget' +p124217 +sg25270 +S'German 15th Century' +p124218 +sg25273 +S'Schreiber, no. 1290' +p124219 +sg25275 +S'\nwoodcut, hand-colored in green, red, brown, and yellow' +p124220 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a562.jpg' +p124221 +sg25267 +g27 +sa(dp124222 +g25273 +S'woodcut' +p124223 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124224 +sg25268 +S'Queen Elizabeth Memorial' +p124225 +sg25270 +S'Unknown 19th Century' +p124226 +sa(dp124227 +g25273 +S'woodcut' +p124228 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124229 +sg25268 +S'Elizabeth - Sphaera Civitatis (Globe of Citizens)' +p124230 +sg25270 +S'Unknown 19th Century' +p124231 +sa(dp124232 +g25273 +S'engraving' +p124233 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124234 +sg25268 +S'Elizabeth, Queen of Bohemia' +p124235 +sg25270 +S'Unknown 19th Century' +p124236 +sa(dp124237 +g25273 +S'engraving' +p124238 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124239 +sg25268 +S'Marriage of Elizabeth to Frederick V of Bohemia, February 14, 1613' +p124240 +sg25270 +S'Unknown 19th Century' +p124241 +sa(dp124242 +g25273 +S'engraving' +p124243 +sg25267 +g27 +sg25275 +S'1650' +p124244 +sg25268 +S'Richard Elton of Bristol' +p124245 +sg25270 +S'John Droeshout' +p124246 +sa(dp124247 +g25273 +S'engraving' +p124248 +sg25267 +g27 +sg25275 +S'published 1602' +p124249 +sg25268 +S'Emmanuel Philibert, Duke of Savoy' +p124250 +sg25270 +S'William Rogers' +p124251 +sa(dp124252 +g25273 +S'engraving' +p124253 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124254 +sg25268 +S'Emmanuel Philibert of Savoy' +p124255 +sg25270 +S'William Rogers' +p124256 +sa(dp124257 +g25273 +S'engraving' +p124258 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124259 +sg25268 +S'Emmanuel Philibert, Duke of Savoy, Prince of Piedmont' +p124260 +sg25270 +S'Unknown 19th Century' +p124261 +sa(dp124262 +g25273 +S'engraving' +p124263 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124264 +sg25268 +S'Enno Ludovick, Count of East Friesland and His Wife, Catherina Henriette' +p124265 +sg25270 +S'Cornelis Visscher' +p124266 +sa(dp124267 +g25273 +S'(artist after)' +p124268 +sg25267 +g27 +sg25275 +S'\n' +p124269 +sg25268 +S'Desiderius Erasmus' +p124270 +sg25270 +S'Artist Information (' +p124271 +sa(dp124272 +g25268 +S'Saint Bridget' +p124273 +sg25270 +S'German 15th Century' +p124274 +sg25273 +S'Schreiber, no. 1299' +p124275 +sg25275 +S'\nwoodcut, hand-colored in orange-pink, green, yellow, green-blue, and white' +p124276 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a55e.jpg' +p124277 +sg25267 +g27 +sa(dp124278 +g25273 +S'engraving' +p124279 +sg25267 +g27 +sg25275 +S'probably 1631' +p124280 +sg25268 +S'Desiderius Erasmus Rotterdam' +p124281 +sg25270 +S'Jacob van der Heyden' +p124282 +sa(dp124283 +g25273 +S'engraving' +p124284 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124285 +sg25268 +S'Eric XIV, King of Sweden' +p124286 +sg25270 +S'Frans Huys' +p124287 +sa(dp124288 +g25273 +S'engraving' +p124289 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124290 +sg25268 +S'Eric XIV, King of Sweden' +p124291 +sg25270 +S'Frans Huys' +p124292 +sa(dp124293 +g25273 +S'(artist after)' +p124294 +sg25267 +g27 +sg25275 +S'\n' +p124295 +sg25268 +S'Ernest, Archduke of Austria' +p124296 +sg25270 +S'Artist Information (' +p124297 +sa(dp124298 +g25273 +S', unknown date' +p124299 +sg25267 +g27 +sg25275 +S'\n' +p124300 +sg25268 +S'Ernest of Austria, Archduke, Governor of the Spanish Netherlands' +p124301 +sg25270 +S'Crispijn van de Passe I' +p124302 +sa(dp124303 +g25273 +S'engraving' +p124304 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124305 +sg25268 +S'Prince Ernest, Duke of Saxony and Cleves' +p124306 +sg25270 +S'Wolfgang Philipp Kilian' +p124307 +sa(dp124308 +g25273 +S', unknown date' +p124309 +sg25267 +g27 +sg25275 +S'\n' +p124310 +sg25268 +S'Ernest, Elector of Brandenburg' +p124311 +sg25270 +S'Simon van de Passe' +p124312 +sa(dp124313 +g25273 +S', unknown date' +p124314 +sg25267 +g27 +sg25275 +S'\n' +p124315 +sg25268 +S'Ernest, Margrave of Brandenburg' +p124316 +sg25270 +S'Crispijn van de Passe I' +p124317 +sa(dp124318 +g25273 +S'engraving' +p124319 +sg25267 +g27 +sg25275 +S'1623' +p124320 +sg25268 +S'Ernest of Holstein, Schawenburg and Sternberg, Prince of Holy Roman Empire' +p124321 +sg25270 +S'Lucas Kilian' +p124322 +sa(dp124323 +g25273 +S'(artist)' +p124324 +sg25267 +g27 +sg25275 +S'\n' +p124325 +sg25268 +S'Thomas Cromwell, Earl of Essex' +p124326 +sg25270 +S'Artist Information (' +p124327 +sa(dp124328 +g25268 +S'Saint Bridget' +p124329 +sg25270 +S'German 15th Century' +p124330 +sg25273 +S'Schreiber, no. 1293, State (=1294)' +p124331 +sg25275 +S'\nwoodcut, hand-colored in orange, yellow, gray, green, and orange-brown' +p124332 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a55f.jpg' +p124333 +sg25267 +g27 +sa(dp124334 +g25273 +S'(artist)' +p124335 +sg25267 +g27 +sg25275 +S'\n' +p124336 +sg25268 +S'Thomas Cromwell, Earl of Essex' +p124337 +sg25270 +S'Artist Information (' +p124338 +sa(dp124339 +g25273 +S'(artist)' +p124340 +sg25267 +g27 +sg25275 +S'\n' +p124341 +sg25268 +S'Walter Devereux, First Earl of Essex' +p124342 +sg25270 +S'Artist Information (' +p124343 +sa(dp124344 +g25273 +S'(artist)' +p124345 +sg25267 +g27 +sg25275 +S'\n' +p124346 +sg25268 +S'Walter Devereux, First Earl of Essex' +p124347 +sg25270 +S'Artist Information (' +p124348 +sa(dp124349 +g25273 +S'engraving' +p124350 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124351 +sg25268 +S'Robert Devereux, Second Earl of Essex' +p124352 +sg25270 +S'Unknown 19th Century' +p124353 +sa(dp124354 +g25273 +S'(artist)' +p124355 +sg25267 +g27 +sg25275 +S'\n' +p124356 +sg25268 +S'Robert Devereux, Second Earl of Essex' +p124357 +sg25270 +S'Artist Information (' +p124358 +sa(dp124359 +g25273 +S'(artist)' +p124360 +sg25267 +g27 +sg25275 +S'\n' +p124361 +sg25268 +S'Robert Devereux, Second Earl of Essex' +p124362 +sg25270 +S'Artist Information (' +p124363 +sa(dp124364 +g25273 +S'French, born 1570' +p124365 +sg25267 +g27 +sg25275 +S'(artist after)' +p124366 +sg25268 +S'Robert Devereux, Second Earl of Essex' +p124367 +sg25270 +S'Artist Information (' +p124368 +sa(dp124369 +g25273 +S'engraving' +p124370 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124371 +sg25268 +S'Robert Devereux, Earl of Essex' +p124372 +sg25270 +S'James Stow' +p124373 +sa(dp124374 +g25268 +S"Isabella d'Este" +p124375 +sg25270 +S'Artist Information (' +p124376 +sg25273 +S'(artist after)' +p124377 +sg25275 +S'\n' +p124378 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a00058d5.jpg' +p124379 +sg25267 +g27 +sa(dp124380 +g25273 +S'engraving' +p124381 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124382 +sg25268 +S'William Estius, Catholic Priest' +p124383 +sg25270 +S'Martin Baes' +p124384 +sa(dp124385 +g25268 +S'Saint Catherine of Alexandria' +p124386 +sg25270 +S'German 15th Century' +p124387 +sg25273 +S'Schreiber, no. 1325' +p124388 +sg25275 +S'\nwoodcut in brown, hand-colored in rose, yellow, green, red, blue, and gold' +p124389 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a55d.jpg' +p124390 +sg25267 +g27 +sa(dp124391 +g25273 +S'engraving' +p124392 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124393 +sg25268 +S"Gabrielle D'Estrees, Marquise de Monceaux" +p124394 +sg25270 +S'Thomas de Leu' +p124395 +sa(dp124396 +g25273 +S'engraving' +p124397 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124398 +sg25268 +S"Gabrielle D'Estrees, Marquise de Montceaux" +p124399 +sg25270 +S'Thomas de Leu' +p124400 +sa(dp124401 +g25273 +S'engraving' +p124402 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124403 +sg25268 +S'Alexander Farnese, Duke of Parma' +p124404 +sg25270 +S'Unknown 19th Century' +p124405 +sa(dp124406 +g25273 +S'(artist after)' +p124407 +sg25267 +g27 +sg25275 +S'\n' +p124408 +sg25268 +S'Alexander Farnese' +p124409 +sg25270 +S'Artist Information (' +p124410 +sa(dp124411 +g25273 +S', unknown date' +p124412 +sg25267 +g27 +sg25275 +S'\n' +p124413 +sg25268 +S'Alexander Farnese, Duke of Parma' +p124414 +sg25270 +S'Crispijn van de Passe I' +p124415 +sa(dp124416 +g25273 +S'engraving' +p124417 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124418 +sg25268 +S'Johan Faulhaver, Mathematician' +p124419 +sg25270 +S'Lucas Kilian' +p124420 +sa(dp124421 +g25273 +S', unknown date' +p124422 +sg25267 +g27 +sg25275 +S'\n' +p124423 +sg25268 +S'Ferdinand I, Roman Emperor' +p124424 +sg25270 +S'Hieronymus Cock' +p124425 +sa(dp124426 +g25273 +S'engraving' +p124427 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124428 +sg25268 +S'Ferdinand I, Roman Emperor' +p124429 +sg25270 +S'Unknown 19th Century' +p124430 +sa(dp124431 +g25273 +S'engraving' +p124432 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124433 +sg25268 +S'Ferdinand I of Brunswick' +p124434 +sg25270 +S'Andreas Paul Multz' +p124435 +sa(dp124436 +g25273 +S'engraving' +p124437 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124438 +sg25268 +S'Ferdinand II, Roman Emperor' +p124439 +sg25270 +S'Lucas Kilian' +p124440 +sa(dp124441 +g25268 +S'Saint Catherine of Alexandria' +p124442 +sg25270 +S'German 15th Century' +p124443 +sg25273 +S'Schreiber, no. 1327, State a' +p124444 +sg25275 +S'\nwoodcut, hand-colored in red, green, and yellow' +p124445 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a55b.jpg' +p124446 +sg25267 +g27 +sa(dp124447 +g25273 +S'engraving' +p124448 +sg25267 +g27 +sg25275 +S'1628' +p124449 +sg25268 +S'Ferdinand II, Roman Emperor' +p124450 +sg25270 +S'Wolfgang Philipp Kilian' +p124451 +sa(dp124452 +g25273 +S'Rosenwald Collection' +p124453 +sg25267 +g27 +sg25275 +S'\nengraving' +p124454 +sg25268 +S'Ferdinand II, Roman Emperor' +p124455 +sg25270 +S'Francis Hocius' +p124456 +sa(dp124457 +g25273 +S'engraving' +p124458 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124459 +sg25268 +S'Ferdinand II, Par la Grace de Dieu Emperur des Romains' +p124460 +sg25270 +S'Balthasar Moncornet' +p124461 +sa(dp124462 +g25273 +S'(artist)' +p124463 +sg25267 +g27 +sg25275 +S'\n' +p124464 +sg25268 +S'William Fich of Canfield, Essex' +p124465 +sg25270 +S'Artist Information (' +p124466 +sa(dp124467 +g25273 +S'engraving' +p124468 +sg25267 +g27 +sg25275 +S'1655' +p124469 +sg25268 +S'Christopher Fierer' +p124470 +sg25270 +S'Unknown 19th Century' +p124471 +sa(dp124472 +g25273 +S'engraving' +p124473 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124474 +sg25268 +S'John Fisher, Bishop of Rochester' +p124475 +sg25270 +S'Nicolas de Larmessin IV' +p124476 +sa(dp124477 +g25273 +S'(artist after)' +p124478 +sg25267 +g27 +sg25275 +S'\n' +p124479 +sg25268 +S'John Fisher, Bishop of Rochester' +p124480 +sg25270 +S'Artist Information (' +p124481 +sa(dp124482 +g25273 +S'engraving' +p124483 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124484 +sg25268 +S'John Fisher and Sir Thomas More' +p124485 +sg25270 +S'Unknown 19th Century' +p124486 +sa(dp124487 +g25273 +S'engraving' +p124488 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124489 +sg25268 +S'Eva Fliegen' +p124490 +sg25270 +S'Unknown 19th Century' +p124491 +sa(dp124492 +g25273 +S'facsimile' +p124493 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124494 +sg25268 +S"Medallion of Woman's Head: Flora" +p124495 +sg25270 +S'Unknown 19th Century' +p124496 +sa(dp124497 +g25268 +S'Beheading of Saint Catherine' +p124498 +sg25270 +S'German 15th Century' +p124499 +sg25273 +S'Schreiber, no. 1343' +p124500 +sg25275 +S'\nwoodcut, hand-colored in orange, yellow, blue-green, blue, and rose' +p124501 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a60b.jpg' +p124502 +sg25267 +g27 +sa(dp124503 +g25273 +S'engraving' +p124504 +sg25267 +g27 +sg25275 +S'published 1631' +p124505 +sg25268 +S'Dr. Robert Fludd, Physician and Rosicrucian' +p124506 +sg25270 +S'Matthaus Merian I' +p124507 +sa(dp124508 +g25273 +S'engraving' +p124509 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124510 +sg25268 +S'Dr. Robert Fludd, Physician and Rosicrucian' +p124511 +sg25270 +S'Unknown 19th Century' +p124512 +sa(dp124513 +g25273 +S'(artist)' +p124514 +sg25267 +g27 +sg25275 +S'\n' +p124515 +sg25268 +S'John Forbes' +p124516 +sg25270 +S'Artist Information (' +p124517 +sa(dp124518 +g25273 +S'(artist)' +p124519 +sg25267 +g27 +sg25275 +S'\n' +p124520 +sg25268 +S'John Foxe, Martyrologist' +p124521 +sg25270 +S'Artist Information (' +p124522 +sa(dp124523 +g25273 +S'(artist after)' +p124524 +sg25267 +g27 +sg25275 +S'\n' +p124525 +sg25268 +S'Fouet' +p124526 +sg25270 +S'Artist Information (' +p124527 +sa(dp124528 +g25273 +S'engraving' +p124529 +sg25267 +g27 +sg25275 +S'1600' +p124530 +sg25268 +S'Nicolas Abraham de la Framboisiere' +p124531 +sg25270 +S'Thomas de Leu' +p124532 +sa(dp124533 +g25273 +S'engraving' +p124534 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124535 +sg25268 +S'Nicolas Abraham de la Framboisiere' +p124536 +sg25270 +S'Frederik van Hulsen' +p124537 +sa(dp124538 +g25273 +S'(artist after)' +p124539 +sg25267 +g27 +sg25275 +S'\n' +p124540 +sg25268 +S'Nicolas Abraham de la Framboisiere' +p124541 +sg25270 +S'Artist Information (' +p124542 +sa(dp124543 +g25273 +S'(artist after)' +p124544 +sg25267 +g27 +sg25275 +S'\n' +p124545 +sg25268 +S'Francis II, King of France' +p124546 +sg25270 +S'Artist Information (' +p124547 +sa(dp124548 +g25273 +S'engraving' +p124549 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124550 +sg25268 +S'Francis II, King of France' +p124551 +sg25270 +S'Unknown 19th Century' +p124552 +sa(dp124553 +g25268 +S'Saint Christopher' +p124554 +sg25270 +S'German 15th Century' +p124555 +sg25273 +S'Schreiber, no. 1376, State b' +p124556 +sg25275 +S'\nwoodcut, hand-colored in dark blue, light blue, orange, red, green, yellow, brown, and gold' +p124557 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a559.jpg' +p124558 +sg25267 +g27 +sa(dp124559 +g25273 +S'engraving' +p124560 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124561 +sg25268 +S'Franciscus Guilielmus' +p124562 +sg25270 +S'Unknown 19th Century' +p124563 +sa(dp124564 +g25273 +S'engraving' +p124565 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124566 +sg25268 +S'Frederick I, Duke of Wurtemberg' +p124567 +sg25270 +S'Unknown 19th Century' +p124568 +sa(dp124569 +g25273 +S'engraving' +p124570 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124571 +sg25268 +S'Fredericus IIII (Frederick IV)' +p124572 +sg25270 +S'Francis Delaram' +p124573 +sa(dp124574 +g25273 +S'engraving' +p124575 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124576 +sg25268 +S'Frederick IV, Elector Palatine' +p124577 +sg25270 +S'Unknown 19th Century' +p124578 +sa(dp124579 +g25273 +S'engraving' +p124580 +sg25267 +g27 +sg25275 +S'1606' +p124581 +sg25268 +S'Frederick IV, Elector Palatine' +p124582 +sg25270 +S'Unknown 19th Century' +p124583 +sa(dp124584 +g25273 +S'engraving' +p124585 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124586 +sg25268 +S'Frederick IV' +p124587 +sg25270 +S'Conrad Goltzius' +p124588 +sa(dp124589 +g25273 +S'engraving' +p124590 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124591 +sg25268 +S'Frederick V, Count Palatine' +p124592 +sg25270 +S'Unknown 19th Century' +p124593 +sa(dp124594 +g25273 +S'engraving' +p124595 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124596 +sg25268 +S'Frederick of Bohemia' +p124597 +sg25270 +S'Willem Hondius' +p124598 +sa(dp124599 +g25273 +S', unknown date' +p124600 +sg25267 +g27 +sg25275 +S'\n' +p124601 +sg25268 +S'Frederick, King of Bohemia' +p124602 +sg25270 +S'Crispijn van de Passe I' +p124603 +sa(dp124604 +g25273 +S'engraving' +p124605 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124606 +sg25268 +S'Fredericus D.G. Bohem. Rex (Frederick V, Kingof Bohemia)' +p124607 +sg25270 +S'Francis Delaram' +p124608 +sa(dp124609 +g25268 +S'Saint Dorothy' +p124610 +sg25270 +S'German 15th Century' +p124611 +sg25273 +S'Schreiber, Vol. IX, no. 1398, State Aa' +p124612 +sg25275 +S'\nwoodcut, hand-colored in tan, red lake, yellow, and green' +p124613 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00051/a0005194.jpg' +p124614 +sg25267 +g27 +sa(dp124615 +g25273 +S'engraving' +p124616 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124617 +sg25268 +S'Frederick VI, Duke of Wurtenberg' +p124618 +sg25270 +S'Unknown 19th Century' +p124619 +sa(dp124620 +g25273 +S'Rosenwald Collection' +p124621 +sg25267 +g27 +sg25275 +S'\nengraving' +p124622 +sg25268 +S'Frederick Achilles, Duke of Wurtenburg' +p124623 +sg25270 +S'M. Io. Albert Aubelin' +p124624 +sa(dp124625 +g25273 +S'engraving' +p124626 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124627 +sg25268 +S'Frederick Christian III, King of Denmark and Norway' +p124628 +sg25270 +S'Cornelis Visscher' +p124629 +sa(dp124630 +g25273 +S'engraving' +p124631 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124632 +sg25268 +S'Prince Frederick Henry' +p124633 +sg25270 +S'Francis Delaram' +p124634 +sa(dp124635 +g25273 +S'engraving' +p124636 +sg25267 +g27 +sg25275 +S'1637' +p124637 +sg25268 +S'Frederick Henry of Nassau' +p124638 +sg25270 +S'Paul Furst' +p124639 +sa(dp124640 +g25273 +S'engraving' +p124641 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124642 +sg25268 +S'Frederick Henry of Nassau' +p124643 +sg25270 +S'Crispyn van den Queboorn' +p124644 +sa(dp124645 +g25273 +S'engraving' +p124646 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124647 +sg25268 +S'Frederick Henry of Nassau' +p124648 +sg25270 +S'Crispyn van den Queboorn' +p124649 +sa(dp124650 +g25273 +S'engraving' +p124651 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124652 +sg25268 +S'Frederick Henry of Nassau' +p124653 +sg25270 +S'Crispyn van den Queboorn' +p124654 +sa(dp124655 +g25273 +S'(artist after)' +p124656 +sg25267 +g27 +sg25275 +S'\n' +p124657 +sg25268 +S'Frederick Henry of Nassau' +p124658 +sg25270 +S'Artist Information (' +p124659 +sa(dp124660 +g25273 +S', unknown date' +p124661 +sg25267 +g27 +sg25275 +S'\n' +p124662 +sg25268 +S'Frederick Henry of Nassau' +p124663 +sg25270 +S'Claes Jansz Visscher' +p124664 +sa(dp124665 +g25268 +S'Saint Clare of Assisi' +p124666 +sg25270 +S'German 15th Century' +p124667 +sg25273 +S'Schreiber, Vol. *, no. 1380, State e' +p124668 +sg25275 +S'\nwoodcut, hand-colored in wine red, blue, green, carmine, gray, and gold' +p124669 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a620.jpg' +p124670 +sg25267 +g27 +sa(dp124671 +g25273 +S'engraving' +p124672 +sg25267 +g27 +sg25275 +S'1628' +p124673 +sg25268 +S'Frederick Henry, Prince of Orange' +p124674 +sg25270 +S'Willem Outgertsz Akersloot' +p124675 +sa(dp124676 +g25273 +S'engraving' +p124677 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124678 +sg25268 +S'Frederick Henry, Prince of Orange' +p124679 +sg25270 +S'Willem Outgertsz Akersloot' +p124680 +sa(dp124681 +g25273 +S'engraving' +p124682 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124683 +sg25268 +S'Frederick Henry, Prince of Orange' +p124684 +sg25270 +S'Unknown 19th Century' +p124685 +sa(dp124686 +g25273 +S', unknown date' +p124687 +sg25267 +g27 +sg25275 +S'\n' +p124688 +sg25268 +S'Frederick Henry, Prince of Orange' +p124689 +sg25270 +S'Balthasar Moncornet' +p124690 +sa(dp124691 +g25273 +S'engraving' +p124692 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124693 +sg25268 +S'Frederick Henry, Prince of Orange' +p124694 +sg25270 +S'Willem Jacobsz Delff' +p124695 +sa(dp124696 +g25273 +S'(artist after)' +p124697 +sg25267 +g27 +sg25275 +S'\n' +p124698 +sg25268 +S'Frederick Henry of Orange' +p124699 +sg25270 +S'Artist Information (' +p124700 +sa(dp124701 +g25273 +S'engraving' +p124702 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124703 +sg25268 +S'Frederick Henry of Orange With Two Maps' +p124704 +sg25270 +S'Unknown 19th Century' +p124705 +sa(dp124706 +g25273 +S'engraving' +p124707 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124708 +sg25268 +S'Family of Frederick Henry, Prince of Orange' +p124709 +sg25270 +S'Unknown 19th Century' +p124710 +sa(dp124711 +g25273 +S'engraving' +p124712 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124713 +sg25268 +S'Prince Frederick Henry' +p124714 +sg25270 +S'Unknown 19th Century' +p124715 +sa(dp124716 +g25273 +S'engraving' +p124717 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124718 +sg25268 +S"Frederick Maurice de la Tour d'Auveregne, Duc de Bouillon" +p124719 +sg25270 +S'Balthasar Moncornet' +p124720 +sa(dp124721 +g25268 +S'Saint Clare of Assisi' +p124722 +sg25270 +S'German 15th Century' +p124723 +sg25273 +S'Schreiber, Vol. *, no. 1380, State g' +p124724 +sg25275 +S'\nwoodcut, hand-colored in pink, green, gray, black,gold, and blue' +p124725 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a55c.jpg' +p124726 +sg25267 +g27 +sa(dp124727 +g25273 +S'engraving' +p124728 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124729 +sg25268 +S'Paulo Frehero' +p124730 +sg25270 +S'Aegidius Sadeler II' +p124731 +sa(dp124732 +g25273 +S'(artist)' +p124733 +sg25267 +g27 +sg25275 +S'\n' +p124734 +sg25268 +S'Sir Martin Frobisher' +p124735 +sg25270 +S'Artist Information (' +p124736 +sa(dp124737 +g25273 +S'(artist)' +p124738 +sg25267 +g27 +sg25275 +S'\n' +p124739 +sg25268 +S'Sir Martin Frobisher' +p124740 +sg25270 +S'Artist Information (' +p124741 +sa(dp124742 +g25273 +S'engraving' +p124743 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124744 +sg25268 +S'Sir Martin Frobisher' +p124745 +sg25270 +S'Robert Boissard' +p124746 +sa(dp124747 +g25273 +S'facsimile' +p124748 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124749 +sg25268 +S'Henry Garnett, Jesuit Priest' +p124750 +sg25270 +S'Unknown 19th Century' +p124751 +sa(dp124752 +g25273 +S'engraving' +p124753 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124754 +sg25268 +S'Henry Garnett' +p124755 +sg25270 +S'Johan Wierix' +p124756 +sa(dp124757 +g25273 +S'engraving' +p124758 +sg25267 +g27 +sg25275 +S'1652' +p124759 +sg25268 +S'Catherine Gascoigne' +p124760 +sg25270 +S'Johann Hainzelman' +p124761 +sa(dp124762 +g25268 +S'Pierre Gassendi' +p124763 +sg25270 +S'Jacques Lubin' +p124764 +sg25273 +S'engraving' +p124765 +sg25275 +S'unknown date\n' +p124766 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b3e.jpg' +p124767 +sg25267 +g27 +sa(dp124768 +g25273 +S'engraving' +p124769 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124770 +sg25268 +S'John of Gaunt' +p124771 +sg25270 +S'Renold Elstrack' +p124772 +sa(dp124773 +g25273 +S'facsimile' +p124774 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124775 +sg25268 +S'Prince John of Gaunt, Duke of Lancaster' +p124776 +sg25270 +S'Unknown 19th Century' +p124777 +sa(dp124778 +g25268 +S'The Martyrdom of Saint Erasmus' +p124779 +sg25270 +S'French 15th Century' +p124780 +sg25273 +S'Schreiber, no. 1410' +p124781 +sg25275 +S'\nwoodcut, hand-colored in light purple, rose, gray-green, yellow, brown, and gray-blue' +p124782 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a00082ee.jpg' +p124783 +sg25267 +g27 +sa(dp124784 +g25273 +S'engraving' +p124785 +sg25267 +g27 +sg25275 +S'published 1597' +p124786 +sg25268 +S'John Gerard, Herbalist' +p124787 +sg25270 +S'William Rogers' +p124788 +sa(dp124789 +g25273 +S'engraving' +p124790 +sg25267 +g27 +sg25275 +S'published 1597' +p124791 +sg25268 +S'John Gerard, Herbalist' +p124792 +sg25270 +S'William Rogers' +p124793 +sa(dp124794 +g25273 +S'engraving' +p124795 +sg25267 +g27 +sg25275 +S'1623' +p124796 +sg25268 +S'George Frederick, Margrave of Baden' +p124797 +sg25270 +S'Lucas Kilian' +p124798 +sa(dp124799 +g25273 +S'engraving' +p124800 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124801 +sg25268 +S'George William, Marqui of Brandenburg' +p124802 +sg25270 +S'Unknown 19th Century' +p124803 +sa(dp124804 +g25273 +S'(engraver)' +p124805 +sg25267 +g27 +sg25275 +S'\n' +p124806 +sg25268 +S'Jacob de Gheyn' +p124807 +sg25270 +S'Artist Information (' +p124808 +sa(dp124809 +g25273 +S'(artist after)' +p124810 +sg25267 +g27 +sg25275 +S'\n' +p124811 +sg25268 +S'Grinling Gibbons, Wood Carver' +p124812 +sg25270 +S'Artist Information (' +p124813 +sa(dp124814 +g25273 +S'(artist after)' +p124815 +sg25267 +g27 +sg25275 +S'\n' +p124816 +sg25268 +S'James Gibbs, Architect' +p124817 +sg25270 +S'Artist Information (' +p124818 +sa(dp124819 +g25273 +S'(artist after)' +p124820 +sg25267 +g27 +sg25275 +S'\n' +p124821 +sg25268 +S'James Gibbs, Architect' +p124822 +sg25270 +S'Artist Information (' +p124823 +sa(dp124824 +g25273 +S'(artist)' +p124825 +sg25267 +g27 +sg25275 +S'\n' +p124826 +sg25268 +S'Sir Humphrey Gilbert' +p124827 +sg25270 +S'Artist Information (' +p124828 +sa(dp124829 +g25273 +S'engraving' +p124830 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124831 +sg25268 +S'Sir Humphrey Gilbert' +p124832 +sg25270 +S'Robert Boissard' +p124833 +sa(dp124834 +g25268 +S'Saint Stephen' +p124835 +sg25270 +S'German 15th Century' +p124836 +sg25273 +S'Schreiber, no. 1415' +p124837 +sg25275 +S'\nwoodcut, hand-colored in orange, green, blue and brown' +p124838 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a561.jpg' +p124839 +sg25267 +g27 +sa(dp124840 +g25273 +S'engraving' +p124841 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124842 +sg25268 +S'Henry, Duke of Gloucester' +p124843 +sg25270 +S'Cornelis van Dalen I' +p124844 +sa(dp124845 +g25273 +S', 1614' +p124846 +sg25267 +g27 +sg25275 +S'\n' +p124847 +sg25268 +S'Hendrik Goltzius' +p124848 +sg25270 +S'Simon van de Passe' +p124849 +sa(dp124850 +g25273 +S', 1614' +p124851 +sg25267 +g27 +sg25275 +S'\n' +p124852 +sg25268 +S'Hendrik Goltzius' +p124853 +sg25270 +S'Simon van de Passe' +p124854 +sa(dp124855 +g25273 +S'engraving' +p124856 +sg25267 +g27 +sg25275 +S'1617' +p124857 +sg25268 +S'Hendrik Goltzius, Pictor et Sculptor' +p124858 +sg25270 +S'Gerard Edelinck' +p124859 +sa(dp124860 +g25273 +S'engraving' +p124861 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124862 +sg25268 +S'Hubert Goltzius' +p124863 +sg25270 +S'Unknown 19th Century' +p124864 +sa(dp124865 +g25273 +S'facsimile' +p124866 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124867 +sg25268 +S'Count Gondamor, Sarmiento de Acuna' +p124868 +sg25270 +S'Unknown 19th Century' +p124869 +sa(dp124870 +g25273 +S'engraving' +p124871 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124872 +sg25268 +S'Count Gondamor' +p124873 +sg25270 +S'Unknown 19th Century' +p124874 +sa(dp124875 +g25273 +S'engraving' +p124876 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124877 +sg25268 +S'Charles de Gontaut, Duc de Biron' +p124878 +sg25270 +S'Thomas de Leu' +p124879 +sa(dp124880 +g25273 +S'engraving' +p124881 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124882 +sg25268 +S'Aloisius Gonzaga, Marquess of Mantua' +p124883 +sg25270 +S'Unknown 19th Century' +p124884 +sa(dp124885 +g25273 +S'engraving' +p124886 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124887 +sg25268 +S'Carolus Gonzaga, Duc de Nevers-Rethel' +p124888 +sg25270 +S'Thomas de Leu' +p124889 +sa(dp124890 +g25268 +S'Saint Francis Receiving the Stigmata' +p124891 +sg25270 +S'German 15th Century' +p124892 +sg25273 +S'Schreiber, no. 1428, State a' +p124893 +sg25275 +S'\nwoodcut, hand-colored in brown, yellow, green, blue, and tan' +p124894 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5b3.jpg' +p124895 +sg25267 +g27 +sa(dp124896 +g25273 +S'engraving' +p124897 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124898 +sg25268 +S'Charles de Gonzaga and Cleves, Duke of Mantua' +p124899 +sg25270 +S'Unknown 19th Century' +p124900 +sa(dp124901 +g25273 +S'engraving' +p124902 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124903 +sg25268 +S'Charles de Gonzaga and Cleves, Duke of Mantua' +p124904 +sg25270 +S'Unknown 19th Century' +p124905 +sa(dp124906 +g25273 +S'engraving' +p124907 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124908 +sg25268 +S'Ferdinand Gonzaga' +p124909 +sg25270 +S'Unknown 19th Century' +p124910 +sa(dp124911 +g25273 +S'engraving' +p124912 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124913 +sg25268 +S'Lady Jane Gray' +p124914 +sg25270 +S'Esme de Boulonois' +p124915 +sa(dp124916 +g25273 +S'engraving' +p124917 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124918 +sg25268 +S'Lady Jane Gray' +p124919 +sg25270 +S'Esme de Boulonois' +p124920 +sa(dp124921 +g25273 +S'(artist)' +p124922 +sg25267 +g27 +sg25275 +S'\n' +p124923 +sg25268 +S'Lady Jane Grey' +p124924 +sg25270 +S'Artist Information (' +p124925 +sa(dp124926 +g25273 +S'(artist)' +p124927 +sg25267 +g27 +sg25275 +S'\n' +p124928 +sg25268 +S'Lady Jane Grey' +p124929 +sg25270 +S'Artist Information (' +p124930 +sa(dp124931 +g25273 +S'engraving' +p124932 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124933 +sg25268 +S'Joanna Gray (Lady Jane Grey)' +p124934 +sg25270 +S'Unknown 19th Century' +p124935 +sa(dp124936 +g25273 +S'engraving' +p124937 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124938 +sg25268 +S'Lady Dudley, Lady Jane Grey' +p124939 +sg25270 +S'Unknown 19th Century' +p124940 +sa(dp124941 +g25273 +S'(artist)' +p124942 +sg25267 +g27 +sg25275 +S'\n' +p124943 +sg25268 +S'Sir Richard Grenville, Naval Commander' +p124944 +sg25270 +S'Artist Information (' +p124945 +sa(dp124946 +g25268 +S'Saint Francis Receiving the Stigmata' +p124947 +sg25270 +S'German 15th Century' +p124948 +sg25273 +S'Schreiber, Vol. IX, no. 1430, State a' +p124949 +sg25275 +S'\nwoodcut, hand-colored in green, yellow, indian red, and blue' +p124950 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5af.jpg' +p124951 +sg25267 +g27 +sa(dp124952 +g25273 +S'(artist)' +p124953 +sg25267 +g27 +sg25275 +S'\n' +p124954 +sg25268 +S'Sir Richard Grenville, Naval Commander' +p124955 +sg25270 +S'Artist Information (' +p124956 +sa(dp124957 +g25273 +S'(artist)' +p124958 +sg25267 +g27 +sg25275 +S'\n' +p124959 +sg25268 +S'Sir Richard Grenville, Naval Commander' +p124960 +sg25270 +S'Artist Information (' +p124961 +sa(dp124962 +g25273 +S'engraving' +p124963 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124964 +sg25268 +S'Thomae Gresham Equi. Aura (Sir Thomas Gresham)' +p124965 +sg25270 +S'Francis Delaram' +p124966 +sa(dp124967 +g25273 +S'engraving' +p124968 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124969 +sg25268 +S'Thomae Gresham Equi. Aura (Sir Thomas Gresham)' +p124970 +sg25270 +S'Francis Delaram' +p124971 +sa(dp124972 +g25273 +S'(artist)' +p124973 +sg25267 +g27 +sg25275 +S'\n' +p124974 +sg25268 +S'Edmund Grindal, Archbishop of Canterbury' +p124975 +sg25270 +S'Artist Information (' +p124976 +sa(dp124977 +g25273 +S'engraving' +p124978 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124979 +sg25268 +S'Hugo Grotius' +p124980 +sg25270 +S'Jacques de Gheyn II' +p124981 +sa(dp124982 +g25273 +S'(artist after)' +p124983 +sg25267 +g27 +sg25275 +S'\n' +p124984 +sg25268 +S'Hugo Grotius' +p124985 +sg25270 +S'Artist Information (' +p124986 +sa(dp124987 +g25273 +S'(artist after)' +p124988 +sg25267 +g27 +sg25275 +S'\n' +p124989 +sg25268 +S'Hugo Grotius' +p124990 +sg25270 +S'Artist Information (' +p124991 +sa(dp124992 +g25273 +S'engraving' +p124993 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124994 +sg25268 +S'Hugo Grotius' +p124995 +sg25270 +S'Jacques de Gheyn II' +p124996 +sa(dp124997 +g25273 +S'engraving' +p124998 +sg25267 +g27 +sg25275 +S'unknown date\n' +p124999 +sg25268 +S'Hugo Grotius' +p125000 +sg25270 +S'Unknown 19th Century' +p125001 +sa(dp125002 +g25268 +S'Saint Francis of Assisi' +p125003 +sg25270 +S'German 15th Century' +p125004 +sg25273 +S'Schreiber, Vol. *, no. 1432, State c' +p125005 +sg25275 +S'\nwoodcut, hand-colored in red lake, green, vermilion, blue, gray, and gold' +p125006 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a621.jpg' +p125007 +sg25267 +g27 +sa(dp125008 +g25273 +S'Rosenwald Collection' +p125009 +sg25267 +g27 +sg25275 +S'\nengraving' +p125010 +sg25268 +S'Ulrich Grundhern' +p125011 +sg25270 +S'Ae. Hol' +p125012 +sa(dp125013 +g25273 +S', unknown date' +p125014 +sg25267 +g27 +sg25275 +S'\n' +p125015 +sg25268 +S'Jan Gruter' +p125016 +sg25270 +S'Crispijn van de Passe I' +p125017 +sa(dp125018 +g25273 +S', unknown date' +p125019 +sg25267 +g27 +sg25275 +S'\n' +p125020 +sg25268 +S'Jan Gruter' +p125021 +sg25270 +S'Crispijn van de Passe I' +p125022 +sa(dp125023 +g25273 +S'engraving' +p125024 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125025 +sg25268 +S'Jan Gruter' +p125026 +sg25270 +S'Unknown 19th Century' +p125027 +sa(dp125028 +g25273 +S'engraving' +p125029 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125030 +sg25268 +S'Jan Gruter, Writer, Critic and Scholar' +p125031 +sg25270 +S'Unknown 19th Century' +p125032 +sa(dp125033 +g25273 +S'engraving' +p125034 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125035 +sg25268 +S'Portrait of a Man With Cross Around Neck' +p125036 +sg25270 +S'Unknown 19th Century' +p125037 +sa(dp125038 +g25273 +S'(artist after)' +p125039 +sg25267 +g27 +sg25275 +S'\n' +p125040 +sg25268 +S'Henri Du Plessis' +p125041 +sg25270 +S'Artist Information (' +p125042 +sa(dp125043 +g25273 +S'engraving' +p125044 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125045 +sg25268 +S'Figures in Gunpowder Plot' +p125046 +sg25270 +S'Unknown 19th Century' +p125047 +sa(dp125048 +g25273 +S'engraving' +p125049 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125050 +sg25268 +S'Gunpowder Plot Conspirators' +p125051 +sg25270 +S'Unknown 19th Century' +p125052 +sa(dp125053 +g25273 +S'Rosenwald Collection' +p125054 +sg25267 +g27 +sg25275 +S'\nfacsimile' +p125055 +sg25268 +S'Execution of the Gunpowder Conspirators' +p125056 +sg25270 +S'R. Romney' +p125057 +sa(dp125058 +g25268 +S'Saint Francis and Saint Clara' +p125059 +sg25270 +S'German 15th Century' +p125060 +sg25273 +S'Schreiber, no. 1432, State n' +p125061 +sg25275 +S'\nwoodcut, hand-colored in rose, red, gray, black, yellow, and gold' +p125062 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a622.jpg' +p125063 +sg25267 +g27 +sa(dp125064 +g25273 +S'engraving' +p125065 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125066 +sg25268 +S'Ludovick Guntherus of Nassau' +p125067 +sg25270 +S'Unknown 19th Century' +p125068 +sa(dp125069 +g25273 +S'engraving' +p125070 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125071 +sg25268 +S'Gustavus Adolphus' +p125072 +sg25270 +S'Robert Cooper' +p125073 +sa(dp125074 +g25273 +S'engraving' +p125075 +sg25267 +g27 +sg25275 +S'1632' +p125076 +sg25268 +S'Gustavus Adolphus' +p125077 +sg25270 +S'Michel Lasne' +p125078 +sa(dp125079 +g25273 +S'(artist after)' +p125080 +sg25267 +g27 +sg25275 +S'\n' +p125081 +sg25268 +S'Eleanor Gwyn, Mistress of Charles II' +p125082 +sg25270 +S'Artist Information (' +p125083 +sa(dp125084 +g25273 +S'engraving' +p125085 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125086 +sg25268 +S'Mary, Wife of Thomas Habingdon' +p125087 +sg25270 +S'Unknown 19th Century' +p125088 +sa(dp125089 +g25273 +S'engraving' +p125090 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125091 +sg25268 +S'Mary, Wife of Thomas Habingdon' +p125092 +sg25270 +S'Unknown 19th Century' +p125093 +sa(dp125094 +g25273 +S'(artist after)' +p125095 +sg25267 +g27 +sg25275 +S'\n' +p125096 +sg25268 +S'Charles Montagu, First Earl of Halifax' +p125097 +sg25270 +S'Artist Information (' +p125098 +sa(dp125099 +g25273 +S'engraving' +p125100 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125101 +sg25268 +S'Rev. Joseph Hall, Bishop of Norwich' +p125102 +sg25270 +S'Unknown 19th Century' +p125103 +sa(dp125104 +g25273 +S'engraving' +p125105 +sg25267 +g27 +sg25275 +S'1628' +p125106 +sg25268 +S'Joseph Hall, Bishop of Norwich' +p125107 +sg25270 +S'John Payne' +p125108 +sa(dp125109 +g25273 +S'engraving' +p125110 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125111 +sg25268 +S'Joseph Hall, Bishop of Norwich' +p125112 +sg25270 +S'Crispyn van den Queboorn' +p125113 +sa(dp125114 +g25268 +S'Saint George' +p125115 +sg25270 +S'German 15th Century' +p125116 +sg25273 +S'Schreiber, no. 1440, State a' +p125117 +sg25275 +S'\nwoodcut, hand-colored in brown-red, green, and vermilion' +p125118 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5ab.jpg' +p125119 +sg25267 +g27 +sa(dp125120 +g25273 +S'engraving' +p125121 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125122 +sg25268 +S'Joseph Hall, Bishop of Norwich' +p125123 +sg25270 +S'Crispyn van den Queboorn' +p125124 +sa(dp125125 +g25273 +S'(artist after)' +p125126 +sg25267 +g27 +sg25275 +S'\n' +p125127 +sg25268 +S'Joseph Hall, Bishop of Norwich' +p125128 +sg25270 +S'Artist Information (' +p125129 +sa(dp125130 +g25273 +S'engraving' +p125131 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125132 +sg25268 +S'Christopher Harant' +p125133 +sg25270 +S'Aegidius Sadeler II' +p125134 +sa(dp125135 +g25273 +S'(artist after)' +p125136 +sg25267 +g27 +sg25275 +S'\n' +p125137 +sg25268 +S'William Van Haren' +p125138 +sg25270 +S'Artist Information (' +p125139 +sa(dp125140 +g25273 +S'(artist)' +p125141 +sg25267 +g27 +sg25275 +S'\n' +p125142 +sg25268 +S'John Harington, First Baron of Exton' +p125143 +sg25270 +S'Artist Information (' +p125144 +sa(dp125145 +g25273 +S'(artist)' +p125146 +sg25267 +g27 +sg25275 +S'\n' +p125147 +sg25268 +S'John Harington, First Baron of Exton' +p125148 +sg25270 +S'Artist Information (' +p125149 +sa(dp125150 +g25273 +S'facsimile' +p125151 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125152 +sg25268 +S'John Harington, Second Baron of Exton' +p125153 +sg25270 +S'Renold Elstrack' +p125154 +sa(dp125155 +g25273 +S'(artist)' +p125156 +sg25267 +g27 +sg25275 +S'\n' +p125157 +sg25268 +S'John Harington, Second Baron of Exton' +p125158 +sg25270 +S'Artist Information (' +p125159 +sa(dp125160 +g25273 +S'(artist)' +p125161 +sg25267 +g27 +sg25275 +S'\n' +p125162 +sg25268 +S'John Harington, Second Baron of Exton' +p125163 +sg25270 +S'Artist Information (' +p125164 +sa(dp125165 +g25273 +S'woodcut' +p125166 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125167 +sg25268 +S'John, Lord Harrington of Exton' +p125168 +sg25270 +S'Unknown 19th Century' +p125169 +sa(dp125170 +g25268 +S'Saint George' +p125171 +sg25270 +S'German 15th Century' +p125172 +sg25273 +S'Schreiber, undescribed' +p125173 +sg25275 +S'\nhand-colored woodcut' +p125174 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5a5.jpg' +p125175 +sg25267 +g27 +sa(dp125176 +g25273 +S'mezzotint' +p125177 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125178 +sg25268 +S'James Harrington, Esq.' +p125179 +sg25270 +S'Giuseppi Filippo Liberati Marchi' +p125180 +sa(dp125181 +g25273 +S'mezzotint' +p125182 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125183 +sg25268 +S'James Harrington, Esq.' +p125184 +sg25270 +S'Giuseppi Filippo Liberati Marchi' +p125185 +sa(dp125186 +g25273 +S', unknown date' +p125187 +sg25267 +g27 +sg25275 +S'\n' +p125188 +sg25268 +S'Hartoch Christian of Brunswick' +p125189 +sg25270 +S'Claes Jansz Visscher' +p125190 +sa(dp125191 +g25273 +S'engraving' +p125192 +sg25267 +g27 +sg25275 +S'1639' +p125193 +sg25268 +S'Jean Baptiste Hautin' +p125194 +sg25270 +S'Michel Lasne' +p125195 +sa(dp125196 +g25273 +S'(artist)' +p125197 +sg25267 +g27 +sg25275 +S'\n' +p125198 +sg25268 +S'Sir John Hawkins' +p125199 +sg25270 +S'Artist Information (' +p125200 +sa(dp125201 +g25273 +S'(artist)' +p125202 +sg25267 +g27 +sg25275 +S'\n' +p125203 +sg25268 +S'Sir John Hawkins' +p125204 +sg25270 +S'Artist Information (' +p125205 +sa(dp125206 +g25273 +S'engraving' +p125207 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125208 +sg25268 +S'Sir John Hawkins, Naval Commander' +p125209 +sg25270 +S'Robert Boissard' +p125210 +sa(dp125211 +g25273 +S'engraving' +p125212 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125213 +sg25268 +S'Sir John Hawkins, Naval Commander' +p125214 +sg25270 +S'Robert Boissard' +p125215 +sa(dp125216 +g25273 +S'engraving' +p125217 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125218 +sg25268 +S'Johan Ludovicus Hawenrenter' +p125219 +sg25270 +S'Unknown 19th Century' +p125220 +sa(dp125221 +g25273 +S'engraving' +p125222 +sg25267 +g27 +sg25275 +S'1630' +p125223 +sg25268 +S'Sir John Hayward, Historian' +p125224 +sg25270 +S'Willem de Passe' +p125225 +sa(dp125226 +g25268 +S'The Mass of Saint Gregory [recto]' +p125227 +sg25270 +S'French 15th Century' +p125228 +sg25273 +S'Schreiber, Vol. *, no. 1463, State a' +p125229 +sg25275 +S'\nwoodcut, hand-colored in red, yellow, cinnamon, lilac, possibly with stencil' +p125230 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a00082f1.jpg' +p125231 +sg25267 +g27 +sa(dp125232 +g25273 +S'engraving' +p125233 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125234 +sg25268 +S'Georgius Henischius, Doctor of Medicine' +p125235 +sg25270 +S'Unknown 19th Century' +p125236 +sa(dp125237 +g25273 +S'engraving' +p125238 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125239 +sg25268 +S'Princess Henrietta Catharina, Sister of William II of Orange' +p125240 +sg25270 +S'Crispyn van den Queboorn' +p125241 +sa(dp125242 +g25273 +S'engraving' +p125243 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125244 +sg25268 +S'Princess Henriette Catharine of Orange' +p125245 +sg25270 +S'Unknown 19th Century' +p125246 +sa(dp125247 +g25273 +S', unknown date' +p125248 +sg25267 +g27 +sg25275 +S'\n' +p125249 +sg25268 +S'Henrietta Maria on Horseback' +p125250 +sg25270 +S'Pierre Daret de Cazeneuve' +p125251 +sa(dp125252 +g25273 +S'engraving' +p125253 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125254 +sg25268 +S'Henrietta Maria, Queen of Charles I' +p125255 +sg25270 +S'Jerome David' +p125256 +sa(dp125257 +g25273 +S'engraving' +p125258 +sg25267 +g27 +sg25275 +S'published 1618' +p125259 +sg25268 +S'Henry I of England' +p125260 +sg25270 +S'Renold Elstrack' +p125261 +sa(dp125262 +g25273 +S'engraving' +p125263 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125264 +sg25268 +S'King Henry II' +p125265 +sg25270 +S'Renold Elstrack' +p125266 +sa(dp125267 +g25273 +S'engraving' +p125268 +sg25267 +g27 +sg25275 +S'published 1618' +p125269 +sg25268 +S'Henry II of England' +p125270 +sg25270 +S'Renold Elstrack' +p125271 +sa(dp125272 +g25273 +S'engraving' +p125273 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125274 +sg25268 +S'Henry III of England' +p125275 +sg25270 +S'Renold Elstrack' +p125276 +sa(dp125277 +g25273 +S'engraving' +p125278 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125279 +sg25268 +S'Henry III of England' +p125280 +sg25270 +S'Renold Elstrack' +p125281 +sa(dp125282 +g25273 +S'Schreiber, Vol. *, no. 1463, State a' +p125283 +sg25267 +g27 +sg25275 +S'\nwoodcut [counterproof fragment]' +p125284 +sg25268 +S'The Mass of Saint Gregory [verso]' +p125285 +sg25270 +S'French 15th Century' +p125286 +sa(dp125287 +g25273 +S'engraving' +p125288 +sg25267 +g27 +sg25275 +S'1602' +p125289 +sg25268 +S'Henry III of France' +p125290 +sg25270 +S'William Rogers' +p125291 +sa(dp125292 +g25273 +S'engraving' +p125293 +sg25267 +g27 +sg25275 +S'1602' +p125294 +sg25268 +S'Henry III of France' +p125295 +sg25270 +S'William Rogers' +p125296 +sa(dp125297 +g25273 +S'engraving' +p125298 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125299 +sg25268 +S'Henry III of France' +p125300 +sg25270 +S'Thomas de Leu' +p125301 +sa(dp125302 +g25273 +S'engraving' +p125303 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125304 +sg25268 +S'Henry III of France' +p125305 +sg25270 +S'Thomas de Leu' +p125306 +sa(dp125307 +g25273 +S'engraving' +p125308 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125309 +sg25268 +S'Henry III, King of France' +p125310 +sg25270 +S'Unknown 19th Century' +p125311 +sa(dp125312 +g25273 +S'engraving' +p125313 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125314 +sg25268 +S"Henry III, King of France, When Duc d'Anjou" +p125315 +sg25270 +S'Unknown 19th Century' +p125316 +sa(dp125317 +g25273 +S'engraving' +p125318 +sg25267 +g27 +sg25275 +S'1588' +p125319 +sg25268 +S'Henry III, Roy de France et de Pol' +p125320 +sg25270 +S'Unknown 19th Century' +p125321 +sa(dp125322 +g25273 +S'engraving' +p125323 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125324 +sg25268 +S'Henry III of France' +p125325 +sg25270 +S'Hieronymus Wierix' +p125326 +sa(dp125327 +g25273 +S'engraving' +p125328 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125329 +sg25268 +S'Henry III and Louise of France' +p125330 +sg25270 +S'Unknown 19th Century' +p125331 +sa(dp125332 +g25273 +S'engraving' +p125333 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125334 +sg25268 +S'King Henry IV of England' +p125335 +sg25270 +S'Renold Elstrack' +p125336 +sa(dp125337 +g25268 +S'Saint Francis and Saint Clara' +p125338 +sg25270 +S'German 15th Century' +p125339 +sg25273 +S'Schreiber, no. 1432, State i' +p125340 +sg25275 +S'\nwoodcut, hand-colored in brown, rose, green, black, and yellow' +p125341 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5b2.jpg' +p125342 +sg25267 +g27 +sa(dp125343 +g25273 +S'engraving' +p125344 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125345 +sg25268 +S'Henry IV of England' +p125346 +sg25270 +S'Renold Elstrack' +p125347 +sa(dp125348 +g25273 +S', published 1598' +p125349 +sg25267 +g27 +sg25275 +S'\n' +p125350 +sg25268 +S'Henry IV, King of France' +p125351 +sg25270 +S'Crispijn van de Passe I' +p125352 +sa(dp125353 +g25273 +S', published 1598' +p125354 +sg25267 +g27 +sg25275 +S'\n' +p125355 +sg25268 +S'Henry IV, King of France' +p125356 +sg25270 +S'Crispijn van de Passe I' +p125357 +sa(dp125358 +g25273 +S'engraving' +p125359 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125360 +sg25268 +S'Henry IV' +p125361 +sg25270 +S'L\xc3\xa9onard Gaultier' +p125362 +sa(dp125363 +g25273 +S'engraving' +p125364 +sg25267 +g27 +sg25275 +S'1602' +p125365 +sg25268 +S'Henry IV of France' +p125366 +sg25270 +S'William Rogers' +p125367 +sa(dp125368 +g25273 +S'(artist after)' +p125369 +sg25267 +g27 +sg25275 +S'\n' +p125370 +sg25268 +S'Henry IV of France' +p125371 +sg25270 +S'Artist Information (' +p125372 +sa(dp125373 +g25273 +S'engraving' +p125374 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125375 +sg25268 +S'Henry IV, King of France' +p125376 +sg25270 +S'Susanne Maria von Sandrart' +p125377 +sa(dp125378 +g25273 +S'engraving' +p125379 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125380 +sg25268 +S'Henry IV' +p125381 +sg25270 +S'Giacomo Franco' +p125382 +sa(dp125383 +g25273 +S'engraving' +p125384 +sg25267 +g27 +sg25275 +S'1594' +p125385 +sg25268 +S'Henry IV' +p125386 +sg25270 +S'L\xc3\xa9onard Gaultier' +p125387 +sa(dp125388 +g25273 +S', 1590' +p125389 +sg25267 +g27 +sg25275 +S'\n' +p125390 +sg25268 +S'Henry IV, King of France' +p125391 +sg25270 +S'Crispijn van de Passe I' +p125392 +sa(dp125393 +g25268 +S'The Mass of Saint Gregory' +p125394 +sg25270 +S'German 15th Century' +p125395 +sg25273 +S'Schreiber, no. 1483' +p125396 +sg25275 +S'\nwoodcut in brown, hand-colored in red lake, light blue, green, yellow, gold, and orange' +p125397 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a60c.jpg' +p125398 +sg25267 +g27 +sa(dp125399 +g25273 +S', 1592' +p125400 +sg25267 +g27 +sg25275 +S'\n' +p125401 +sg25268 +S'Henry IV, King of France' +p125402 +sg25270 +S'Crispijn van de Passe I' +p125403 +sa(dp125404 +g25273 +S'Rosenwald Collection' +p125405 +sg25267 +g27 +sg25275 +S'\nengraving' +p125406 +sg25268 +S'Henry IV of France' +p125407 +sg25270 +S'H. Grotius' +p125408 +sa(dp125409 +g25273 +S'engraving' +p125410 +sg25267 +g27 +sg25275 +S'1610' +p125411 +sg25268 +S'Henry IV of France, Marie de Medici, Louis XIII, Francis Ravaillac' +p125412 +sg25270 +S'Unknown 19th Century' +p125413 +sa(dp125414 +g25273 +S'engraving' +p125415 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125416 +sg25268 +S'King Henry V' +p125417 +sg25270 +S'Renold Elstrack' +p125418 +sa(dp125419 +g25273 +S'engraving' +p125420 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125421 +sg25268 +S'Henry V of England' +p125422 +sg25270 +S'Renold Elstrack' +p125423 +sa(dp125424 +g25273 +S'engraving' +p125425 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125426 +sg25268 +S'Henry VI of England' +p125427 +sg25270 +S'Renold Elstrack' +p125428 +sa(dp125429 +g25273 +S'engraving' +p125430 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125431 +sg25268 +S'Henry VI of England' +p125432 +sg25270 +S'Renold Elstrack' +p125433 +sa(dp125434 +g25273 +S'engraving' +p125435 +sg25267 +g27 +sg25275 +S'published 1618' +p125436 +sg25268 +S'Henry VII' +p125437 +sg25270 +S'Unknown 19th Century' +p125438 +sa(dp125439 +g25273 +S'engraving' +p125440 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125441 +sg25268 +S'King Henry VII' +p125442 +sg25270 +S'Renold Elstrack' +p125443 +sa(dp125444 +g25268 +S'The Mass of Saint Gregory' +p125445 +sg25270 +S'German 15th Century' +p125446 +sg25273 +S'Schreiber, no. 1487' +p125447 +sg25275 +S'\nwoodcut, hand-colored in green, red lake, tan, and yellow' +p125448 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a587.jpg' +p125449 +sg25267 +g27 +sa(dp125450 +g25273 +S'engraving' +p125451 +sg25267 +g27 +sg25275 +S'published 1618' +p125452 +sg25268 +S'Henry VII of England' +p125453 +sg25270 +S'Renold Elstrack' +p125454 +sa(dp125455 +g25273 +S'engraving' +p125456 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125457 +sg25268 +S'Henry VII of England' +p125458 +sg25270 +S'Renold Elstrack' +p125459 +sa(dp125460 +g25273 +S'engraving' +p125461 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125462 +sg25268 +S'Henry VII of England' +p125463 +sg25270 +S'Renold Elstrack' +p125464 +sa(dp125465 +g25273 +S'engraving' +p125466 +sg25267 +g27 +sg25275 +S'published 1638' +p125467 +sg25268 +S'Henry VII of England' +p125468 +sg25270 +S'Renold Elstrack' +p125469 +sa(dp125470 +g25273 +S'engraving' +p125471 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125472 +sg25268 +S'Henry VII of England' +p125473 +sg25270 +S'Michel Lasne' +p125474 +sa(dp125475 +g25273 +S'engraving' +p125476 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125477 +sg25268 +S'King Henry VII' +p125478 +sg25270 +S'John Payne' +p125479 +sa(dp125480 +g25273 +S'engraving' +p125481 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125482 +sg25268 +S'Henrici VIII Angliae, Franciae et Hiberniam Rex (King Henry VIII)' +p125483 +sg25270 +S'Francis Delaram' +p125484 +sa(dp125485 +g25273 +S'engraving' +p125486 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125487 +sg25268 +S'Henrici VIII Angliae, Franciae et Hiberniam Rex (King Henry VIII)' +p125488 +sg25270 +S'Francis Delaram' +p125489 +sa(dp125490 +g25273 +S'engraving' +p125491 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125492 +sg25268 +S'Henrici VIII Angliae, Franciae et Hiberniam Rex (King Henry VIII)' +p125493 +sg25270 +S'Francis Delaram' +p125494 +sa(dp125495 +g25268 +S'Saint John on the Island of Patmos' +p125496 +sg25270 +S'German 15th Century' +p125497 +sg25273 +S'Schreiber, no. 1526, State b' +p125498 +sg25275 +S'\nwoodcut in brown, hand-colored in red lake, yellow, blue, green, tan, gold, and red-orange' +p125499 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a60d.jpg' +p125500 +sg25267 +g27 +sa(dp125501 +g25273 +S'engraving' +p125502 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125503 +sg25268 +S'Henry VIII' +p125504 +sg25270 +S'Unknown 19th Century' +p125505 +sa(dp125506 +g25273 +S'(artist after)' +p125507 +sg25267 +g27 +sg25275 +S'\n' +p125508 +sg25268 +S'Henry VIII' +p125509 +sg25270 +S'Artist Information (' +p125510 +sa(dp125511 +g25273 +S'(artist after)' +p125512 +sg25267 +g27 +sg25275 +S'\n' +p125513 +sg25268 +S'Henry VIII' +p125514 +sg25270 +S'Artist Information (' +p125515 +sa(dp125516 +g25273 +S'engraving' +p125517 +sg25267 +g27 +sg25275 +S'1548' +p125518 +sg25268 +S'Henry VIII' +p125519 +sg25270 +S'Cornelius Matsys' +p125520 +sa(dp125521 +g25273 +S'(artist)' +p125522 +sg25267 +g27 +sg25275 +S'\n' +p125523 +sg25268 +S'Henry VIII' +p125524 +sg25270 +S'Artist Information (' +p125525 +sa(dp125526 +g25273 +S'engraving' +p125527 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125528 +sg25268 +S'Henry, Duke of Savoy, Nemours and Geneva' +p125529 +sg25270 +S'Thomas de Leu' +p125530 +sa(dp125531 +g25273 +S', published 1604' +p125532 +sg25267 +g27 +sg25275 +S'\n' +p125533 +sg25268 +S'Henry Frederick, Prince of Wales' +p125534 +sg25270 +S'Crispijn van de Passe I' +p125535 +sa(dp125536 +g25273 +S', published 1604' +p125537 +sg25267 +g27 +sg25275 +S'\n' +p125538 +sg25268 +S'Henry Frederick, Prince of Wales' +p125539 +sg25270 +S'Crispijn van de Passe I' +p125540 +sa(dp125541 +g25273 +S', published 1604' +p125542 +sg25267 +g27 +sg25275 +S'\n' +p125543 +sg25268 +S'Henry Frederick, Prince of Wales' +p125544 +sg25270 +S'Crispijn van de Passe I' +p125545 +sa(dp125546 +g25273 +S'(artist)' +p125547 +sg25267 +g27 +sg25275 +S'\n' +p125548 +sg25268 +S'Henry Frederick, Prince of Wales' +p125549 +sg25270 +S'Artist Information (' +p125550 +sa(dp125551 +g25268 +S'Saint Juliana' +p125552 +sg25270 +S'German 15th Century' +p125553 +sg25273 +S'Schreiber, no. 1578' +p125554 +sg25275 +S'\nwoodcut, hand-colored in blue, green, rose, brown, tan, and gold' +p125555 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a580.jpg' +p125556 +sg25267 +g27 +sa(dp125557 +g25273 +S'(artist)' +p125558 +sg25267 +g27 +sg25275 +S'\n' +p125559 +sg25268 +S'Henry Frederick, Prince of Wales' +p125560 +sg25270 +S'Artist Information (' +p125561 +sa(dp125562 +g25273 +S'(artist)' +p125563 +sg25267 +g27 +sg25275 +S'\n' +p125564 +sg25268 +S'Prince Henry with the Pike' +p125565 +sg25270 +S'Artist Information (' +p125566 +sa(dp125567 +g25273 +S'(artist)' +p125568 +sg25267 +g27 +sg25275 +S'\n' +p125569 +sg25268 +S'Prince Henry with the Pike' +p125570 +sg25270 +S'Artist Information (' +p125571 +sa(dp125572 +g25273 +S'engraving' +p125573 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125574 +sg25268 +S'Henry Frederick, Prince of Wales' +p125575 +sg25270 +S'Cornelis Boel' +p125576 +sa(dp125577 +g25273 +S'engraving' +p125578 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125579 +sg25268 +S'Henrici VIII Angliae, Franciae et Hiberniam Rex (King Henry VIII)' +p125580 +sg25270 +S'Francis Delaram' +p125581 +sa(dp125582 +g25273 +S'(artist)' +p125583 +sg25267 +g27 +sg25275 +S'\n' +p125584 +sg25268 +S"Prince Henry's Hearse" +p125585 +sg25270 +S'Artist Information (' +p125586 +sa(dp125587 +g25273 +S'(artist after)' +p125588 +sg25267 +g27 +sg25275 +S'\n' +p125589 +sg25268 +S'Henry of Nassau' +p125590 +sg25270 +S'Artist Information (' +p125591 +sa(dp125592 +g25273 +S'Rosenwald Collection' +p125593 +sg25267 +g27 +sg25275 +S'\nengraving' +p125594 +sg25268 +S'Henry Frederick of Nassau' +p125595 +sg25270 +S'H. Grotius' +p125596 +sa(dp125597 +g25273 +S'engraving' +p125598 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125599 +sg25268 +S'Henry Julius, Duke of Brunswick, Bishop of Halberstadt' +p125600 +sg25270 +S'Unknown 19th Century' +p125601 +sa(dp125602 +g25273 +S'engraving' +p125603 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125604 +sg25268 +S'Balthasar AB Herden, Doctor' +p125605 +sg25270 +S'Johann Friedrich Fleischberger' +p125606 +sa(dp125607 +g25268 +S'Saint John the Baptist and Saint Christopher' +p125608 +sg25270 +S'German 15th Century' +p125609 +sg25273 +S'Schreiber, no. 1518, State a' +p125610 +sg25275 +S'\nwoodcut, hand-colored in red lake, yellow, green, pink, gray, brown, and tan' +p125611 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a63c.jpg' +p125612 +sg25267 +g27 +sa(dp125613 +g25273 +S'engraving' +p125614 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125615 +sg25268 +S'Balthasar AB Herden, Doctor' +p125616 +sg25270 +S'Johann Friedrich Fleischberger' +p125617 +sa(dp125618 +g25273 +S'(artist after)' +p125619 +sg25267 +g27 +sg25275 +S'\n' +p125620 +sg25268 +S'Martin Herpert' +p125621 +sg25270 +S'Artist Information (' +p125622 +sa(dp125623 +g25273 +S'engraving' +p125624 +sg25267 +g27 +sg25275 +S'1607' +p125625 +sg25268 +S'Joannes Heurnius, Medical Professor and Rector of Academy at Leyden' +p125626 +sg25270 +S'Willem Swanenburgh' +p125627 +sa(dp125628 +g25273 +S'engraving' +p125629 +sg25267 +g27 +sg25275 +S'1613' +p125630 +sg25268 +S'Isaac Hilary' +p125631 +sg25270 +S'Unknown 19th Century' +p125632 +sa(dp125633 +g25273 +S'engraving' +p125634 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125635 +sg25268 +S'Arthur Hildersham, Minister' +p125636 +sg25270 +S'John Payne' +p125637 +sa(dp125638 +g25273 +S', unknown date' +p125639 +sg25267 +g27 +sg25275 +S'\n' +p125640 +sg25268 +S'Philip, Count of Hohenlohe' +p125641 +sg25270 +S'Simon van de Passe' +p125642 +sa(dp125643 +g25273 +S'(artist)' +p125644 +sg25267 +g27 +sg25275 +S'\n' +p125645 +sg25268 +S'Thomas Holland, Regius Professor of Divinity at Oxford, and Rector of Exeter College' +p125646 +sg25270 +S'Artist Information (' +p125647 +sa(dp125648 +g25273 +S'engraving' +p125649 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125650 +sg25268 +S'Thomas Holland, Jesuit' +p125651 +sg25270 +S'Jacobus Neeffs' +p125652 +sa(dp125653 +g25273 +S'engraving' +p125654 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125655 +sg25268 +S'Joanni Hollando (Jan Hollander)' +p125656 +sg25270 +S'Dominique Lampsonius' +p125657 +sa(dp125658 +g25273 +S'engraving' +p125659 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125660 +sg25268 +S'Sigismundus Jacobus Holtzschuher de Neuenburg' +p125661 +sg25270 +S'Andreas Mattaus Wolfgang' +p125662 +sa(dp125663 +g25268 +S'Saint Margaret' +p125664 +sg25270 +S'German 15th Century' +p125665 +sg25273 +S'Schreiber, no. 1610' +p125666 +sg25275 +S'\nwoodcut, hand-colored in gray, rose, and yellow' +p125667 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5ae.jpg' +p125668 +sg25267 +g27 +sa(dp125669 +g25273 +S'facsimile' +p125670 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125671 +sg25268 +S'Head of a Man Crowned with Laurel: Homer' +p125672 +sg25270 +S'Unknown 19th Century' +p125673 +sa(dp125674 +g25273 +S'(artist)' +p125675 +sg25267 +g27 +sg25275 +S'\n' +p125676 +sg25268 +S'Hendrik Hondius' +p125677 +sg25270 +S'Artist Information (' +p125678 +sa(dp125679 +g25273 +S'engraving' +p125680 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125681 +sg25268 +S'Jodocus Hondius' +p125682 +sg25270 +S'Jodocus Hondius I' +p125683 +sa(dp125684 +g25273 +S'engraving' +p125685 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125686 +sg25268 +S'Johannes Hoornebeeck' +p125687 +sg25270 +S'Jonas Suyderhoff' +p125688 +sa(dp125689 +g25273 +S'engraving' +p125690 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125691 +sg25268 +S'Petrus Hogerbeets Hornanus' +p125692 +sg25270 +S'Unknown 19th Century' +p125693 +sa(dp125694 +g25273 +S'(artist after)' +p125695 +sg25267 +g27 +sg25275 +S'\n' +p125696 +sg25268 +S'Rumoldus Hogerbeets Hornanus' +p125697 +sg25270 +S'Artist Information (' +p125698 +sa(dp125699 +g25273 +S'(artist)' +p125700 +sg25267 +g27 +sg25275 +S'\n' +p125701 +sg25268 +S'Laurence Humphrey' +p125702 +sg25270 +S'Artist Information (' +p125703 +sa(dp125704 +g25273 +S'engraving' +p125705 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125706 +sg25268 +S'Laurence Humphrey, Dean of Winchester' +p125707 +sg25270 +S'Hendrik Hondius I' +p125708 +sa(dp125709 +g25273 +S'stipple engraving' +p125710 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125711 +sg25268 +S'Lord Hundson, Henry Carey' +p125712 +sg25270 +S'Unknown 19th Century' +p125713 +sa(dp125714 +g25273 +S'(artist after)' +p125715 +sg25267 +g27 +sg25275 +S'\n' +p125716 +sg25268 +S'Constantin Huygens' +p125717 +sg25270 +S'Artist Information (' +p125718 +sa(dp125719 +g25268 +S'Saint Margaret' +p125720 +sg25270 +S'German 15th Century' +p125721 +sg25273 +S'Schreiber, no. 1612' +p125722 +sg25275 +S'\nwoodcut, hand-colored in red, green, yellow, rose, orange, and blue' +p125723 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b37.jpg' +p125724 +sg25267 +g27 +sa(dp125725 +g25273 +S', unknown date' +p125726 +sg25267 +g27 +sg25275 +S'\n' +p125727 +sg25268 +S'Isabella, Third Wife of Philip II of Spain' +p125728 +sg25270 +S'Hieronymus Cock' +p125729 +sa(dp125730 +g25273 +S'engraving' +p125731 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125732 +sg25268 +S'Isabella, Wife of Philip IV of Spain' +p125733 +sg25270 +S'Unknown 19th Century' +p125734 +sa(dp125735 +g25273 +S', unknown date' +p125736 +sg25267 +g27 +sg25275 +S'\n' +p125737 +sg25268 +S'Isabella Clara Eugenia, Infanta' +p125738 +sg25270 +S'Crispijn van de Passe I' +p125739 +sa(dp125740 +g25273 +S'engraving' +p125741 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125742 +sg25268 +S'Isabella Clara Eugenie' +p125743 +sg25270 +S'Unknown 19th Century' +p125744 +sa(dp125745 +g25273 +S', unknown date' +p125746 +sg25267 +g27 +sg25275 +S'\n' +p125747 +sg25268 +S'Isabella Clara Eugenia, Infanta' +p125748 +sg25270 +S'Crispijn van de Passe I' +p125749 +sa(dp125750 +g25273 +S'Dutch, 1571 - 1635' +p125751 +sg25267 +g27 +sg25275 +S'(artist after)' +p125752 +sg25268 +S'Isabella Clara Eugenie of Austria, Spain and Countess of Flanders' +p125753 +sg25270 +S'Artist Information (' +p125754 +sa(dp125755 +g25273 +S'engraving' +p125756 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125757 +sg25268 +S'Isabella Clara Eugenie of Spain, Archduchess of Austria' +p125758 +sg25270 +S'Antonie Wierix' +p125759 +sa(dp125760 +g25273 +S'engraving' +p125761 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125762 +sg25268 +S'Isabella Clara Eugenie, Wife of Albert VII' +p125763 +sg25270 +S'Pieter de Jode I' +p125764 +sa(dp125765 +g25273 +S'(artist after)' +p125766 +sg25267 +g27 +sg25275 +S'\n' +p125767 +sg25268 +S'Isabella Clara Eugenie as a Nun' +p125768 +sg25270 +S'Artist Information (' +p125769 +sa(dp125770 +g25273 +S'(artist after)' +p125771 +sg25267 +g27 +sg25275 +S'\n' +p125772 +sg25268 +S'Isabella Clara Eugenia, Infanta of Spain' +p125773 +sg25270 +S'Artist Information (' +p125774 +sa(dp125775 +g25268 +S'Saint Margaret' +p125776 +sg25270 +S'German 15th Century' +p125777 +sg25273 +S'Schreiber, Vol. IX, no. 1615, State a' +p125778 +sg25275 +S'\nwoodcut, hand-colored in red, blue, yellow, vermilion, and gold' +p125779 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a581.jpg' +p125780 +sg25267 +g27 +sa(dp125781 +g25273 +S'(artist after)' +p125782 +sg25267 +g27 +sg25275 +S'\n' +p125783 +sg25268 +S'Isabella Clara Eugenia as a Nun' +p125784 +sg25270 +S'Artist Information (' +p125785 +sa(dp125786 +g25273 +S'(artist after)' +p125787 +sg25267 +g27 +sg25275 +S'\n' +p125788 +sg25268 +S'Sir Thomas Isham' +p125789 +sg25270 +S'Artist Information (' +p125790 +sa(dp125791 +g25273 +S', published 1604' +p125792 +sg25267 +g27 +sg25275 +S'\n' +p125793 +sg25268 +S'James I, King of England' +p125794 +sg25270 +S'Crispijn van de Passe I' +p125795 +sa(dp125796 +g25273 +S', published 1604' +p125797 +sg25267 +g27 +sg25275 +S'\n' +p125798 +sg25268 +S'James I, King of England' +p125799 +sg25270 +S'Crispijn van de Passe I' +p125800 +sa(dp125801 +g25273 +S', published 1604' +p125802 +sg25267 +g27 +sg25275 +S'\n' +p125803 +sg25268 +S'James I, King of England' +p125804 +sg25270 +S'Crispijn van de Passe I' +p125805 +sa(dp125806 +g25273 +S'engraving' +p125807 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125808 +sg25268 +S'King James I' +p125809 +sg25270 +S'Unknown 19th Century' +p125810 +sa(dp125811 +g25273 +S', 1622' +p125812 +sg25267 +g27 +sg25275 +S'\n' +p125813 +sg25268 +S'James I, King of England' +p125814 +sg25270 +S'Crispijn van de Passe I' +p125815 +sa(dp125816 +g25273 +S', unknown date' +p125817 +sg25267 +g27 +sg25275 +S'\n' +p125818 +sg25268 +S'James I of England' +p125819 +sg25270 +S'Simon van de Passe' +p125820 +sa(dp125821 +g25273 +S'engraving [facsimile]' +p125822 +sg25267 +g27 +sg25275 +S'1603' +p125823 +sg25268 +S'King James I' +p125824 +sg25270 +S'George Keller' +p125825 +sa(dp125826 +g25273 +S'engraving' +p125827 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125828 +sg25268 +S'James I' +p125829 +sg25270 +S'Unknown 19th Century' +p125830 +sa(dp125831 +g25268 +S'Saint Michael' +p125832 +sg25270 +S'German 15th Century' +p125833 +sg25273 +S'Schreiber, Vol. *, no. 1628, State b' +p125834 +sg25275 +S'\nwoodcut, hand-colored in red, green, blue, brown, gold, and yellow' +p125835 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5ac.jpg' +p125836 +sg25267 +g27 +sa(dp125837 +g25273 +S'engraving' +p125838 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125839 +sg25268 +S'James I' +p125840 +sg25270 +S'Unknown 19th Century' +p125841 +sa(dp125842 +g25273 +S'engraving' +p125843 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125844 +sg25268 +S'James I on Horseback' +p125845 +sg25270 +S'Unknown 19th Century' +p125846 +sa(dp125847 +g25273 +S'engraving' +p125848 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125849 +sg25268 +S'The Royal Progenei of our Most Sacred King James' +p125850 +sg25270 +S'Benjamin Wright' +p125851 +sa(dp125852 +g25273 +S'engraving' +p125853 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125854 +sg25268 +S'James I and Anne of Denmark' +p125855 +sg25270 +S'Renold Elstrack' +p125856 +sa(dp125857 +g25273 +S'engraving' +p125858 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125859 +sg25268 +S'Majesties Sacred Monument' +p125860 +sg25270 +S'Robert Vaughan' +p125861 +sa(dp125862 +g25273 +S', published 1598' +p125863 +sg25267 +g27 +sg25275 +S'\n' +p125864 +sg25268 +S'James I, as King of Scotland' +p125865 +sg25270 +S'Crispijn van de Passe I' +p125866 +sa(dp125867 +g25273 +S', published 1598' +p125868 +sg25267 +g27 +sg25275 +S'\n' +p125869 +sg25268 +S'James I, as King of Scotland' +p125870 +sg25270 +S'Crispijn van de Passe I' +p125871 +sa(dp125872 +g25273 +S', published 1598' +p125873 +sg25267 +g27 +sg25275 +S'\n' +p125874 +sg25268 +S'James I, as King of Scotland' +p125875 +sg25270 +S'Crispijn van de Passe I' +p125876 +sa(dp125877 +g25273 +S'engraving' +p125878 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125879 +sg25268 +S'James II, Duke of York' +p125880 +sg25270 +S'Cornelis van Dalen I' +p125881 +sa(dp125882 +g25273 +S'engraving' +p125883 +sg25267 +g27 +sg25275 +S'1680' +p125884 +sg25268 +S'James II, as Duke of York' +p125885 +sg25270 +S'David Loggan' +p125886 +sa(dp125887 +g25268 +S'Saint Onuphrius' +p125888 +sg25270 +S'German 15th Century' +p125889 +sg25273 +S'image: 27.8 x 19.1 cm (10 15/16 x 7 1/2 in.)\r\nsheet: 29.3 x 21 cm (11 9/16 x 8 1/4 in.)\r\noverall (external frame dimensions): 59.7 x 44.5 cm (23 1/2 x 17 1/2 in.)' +p125890 +sg25275 +S'\nwoodcut, hand-colored in ochre, pink, gray, and red' +p125891 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a000561e.jpg' +p125892 +sg25267 +g27 +sa(dp125893 +g25273 +S'engraving' +p125894 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125895 +sg25268 +S'Franz Janius' +p125896 +sg25270 +S'Hendrik Hondius I' +p125897 +sa(dp125898 +g25273 +S'English, 1646 - 1723' +p125899 +sg25267 +g27 +sg25275 +S'(artist after)' +p125900 +sg25268 +S'George Jeffreys, Earl of Flint, Viscount Weikham' +p125901 +sg25270 +S'Artist Information (' +p125902 +sa(dp125903 +g25273 +S'English, 1646 - 1723' +p125904 +sg25267 +g27 +sg25275 +S'(artist after)' +p125905 +sg25268 +S'George, Lord Jeffreys' +p125906 +sg25270 +S'Artist Information (' +p125907 +sa(dp125908 +g25273 +S'engraving' +p125909 +sg25267 +g27 +sg25275 +S'1752' +p125910 +sg25268 +S'The Great Age of Henry Jenkins' +p125911 +sg25270 +S'Thomas Worlidge' +p125912 +sa(dp125913 +g25273 +S'(artist)' +p125914 +sg25267 +g27 +sg25275 +S'\n' +p125915 +sg25268 +S'John Jewell, Bishop of Salisbury' +p125916 +sg25270 +S'Artist Information (' +p125917 +sa(dp125918 +g25273 +S'engraving' +p125919 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125920 +sg25268 +S'King John' +p125921 +sg25270 +S'Renold Elstrack' +p125922 +sa(dp125923 +g25273 +S'engraving' +p125924 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125925 +sg25268 +S'King John of England' +p125926 +sg25270 +S'Renold Elstrack' +p125927 +sa(dp125928 +g25273 +S'engraving' +p125929 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125930 +sg25268 +S'John, Archduke of Austria' +p125931 +sg25270 +S'Unknown 19th Century' +p125932 +sa(dp125933 +g25273 +S'engraving' +p125934 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125935 +sg25268 +S'Johan the Elder of Nassau' +p125936 +sg25270 +S'Unknown 19th Century' +p125937 +sa(dp125938 +g25273 +S'engraving' +p125939 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125940 +sg25268 +S'Johan the Elder of Nassau' +p125941 +sg25270 +S'Unknown 19th Century' +p125942 +sa(dp125943 +g25268 +S'Saint Onuphrius' +p125944 +sg25270 +S'German 15th Century' +p125945 +sg25273 +S'image: 9 x 7.1 cm (3 9/16 x 2 13/16 in.)\r\nsheet: 9.8 x 7.7 cm (3 7/8 x 3 1/16 in.)' +p125946 +sg25275 +S'\nwoodcut in brown, hand-colored in tan, blue, green, red, gold, and orange' +p125947 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5b0.jpg' +p125948 +sg25267 +g27 +sa(dp125949 +g25273 +S'engraving' +p125950 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125951 +sg25268 +S'Joachim Ernest, Elector of Brandenburg' +p125952 +sg25270 +S'Lucas Kilian' +p125953 +sa(dp125954 +g25273 +S'engraving' +p125955 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125956 +sg25268 +S'Joachim Ernest, Elector of Brandenburg' +p125957 +sg25270 +S'Peter Isselburg' +p125958 +sa(dp125959 +g25273 +S'engraving' +p125960 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125961 +sg25268 +S'Johan Ernest of Nassau' +p125962 +sg25270 +S'Unknown 19th Century' +p125963 +sa(dp125964 +g25273 +S'engraving' +p125965 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125966 +sg25268 +S'John Ernest of Nassau' +p125967 +sg25270 +S'Unknown 19th Century' +p125968 +sa(dp125969 +g25273 +S'(artist after)' +p125970 +sg25267 +g27 +sg25275 +S'\n' +p125971 +sg25268 +S'John Ernest, Jr., Duke of Saxony' +p125972 +sg25270 +S'Artist Information (' +p125973 +sa(dp125974 +g25273 +S'engraving' +p125975 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125976 +sg25268 +S'Johan Louis of Nassau' +p125977 +sg25270 +S'Unknown 19th Century' +p125978 +sa(dp125979 +g25273 +S'engraving' +p125980 +sg25267 +g27 +sg25275 +S'unknown date\n' +p125981 +sg25268 +S'Johan Louis of Nassau' +p125982 +sg25270 +S'Unknown 19th Century' +p125983 +sa(dp125984 +g25273 +S'(artist after)' +p125985 +sg25267 +g27 +sg25275 +S'\n' +p125986 +sg25268 +S'John Maurice, Count of Nassau' +p125987 +sg25270 +S'Artist Information (' +p125988 +sa(dp125989 +g25273 +S'(artist after)' +p125990 +sg25267 +g27 +sg25275 +S'\n' +p125991 +sg25268 +S'John William, Duke of Cleves' +p125992 +sg25270 +S'Artist Information (' +p125993 +sa(dp125994 +g25273 +S'engraving' +p125995 +sg25267 +g27 +sg25275 +S'1562' +p125996 +sg25268 +S'Hadrianus Junius' +p125997 +sg25270 +S'Unknown 19th Century' +p125998 +sa(dp125999 +g25268 +S'Saint Onuphrius' +p126000 +sg25270 +S'German 15th Century' +p126001 +sg25273 +S'Schreiber, Vol. *, no. 1642, State a' +p126002 +sg25275 +S'\nwoodcut, hand-colored in green, rose, brown, black, silver, and yellow' +p126003 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a623.jpg' +p126004 +sg25267 +g27 +sa(dp126005 +g25273 +S'engraving' +p126006 +sg25267 +g27 +sg25275 +S'1587' +p126007 +sg25268 +S'Anne, Duc de Joyeuse' +p126008 +sg25270 +S'Unknown 19th Century' +p126009 +sa(dp126010 +g25273 +S'engraving' +p126011 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126012 +sg25268 +S'Anne, Duc de Joyeuse' +p126013 +sg25270 +S'Thomas de Leu' +p126014 +sa(dp126015 +g25268 +S'Equestrian Portrait of Don Juan de Austria' +p126016 +sg25270 +S'Jusepe de Ribera' +p126017 +sg25273 +S'etching' +p126018 +sg25275 +S'1648' +p126019 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a00067db.jpg' +p126020 +sg25267 +g27 +sa(dp126021 +g25273 +S'engraving' +p126022 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126023 +sg25268 +S'Joachim Jung' +p126024 +sg25270 +S'Unknown 19th Century' +p126025 +sa(dp126026 +g25273 +S'engraving' +p126027 +sg25267 +g27 +sg25275 +S'1654' +p126028 +sg25268 +S'Robert Junius' +p126029 +sg25270 +S'Cornelis Visscher' +p126030 +sa(dp126031 +g25273 +S'mezzotint' +p126032 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126033 +sg25268 +S'Mrs. Anne Killigrew' +p126034 +sg25270 +S'Isaak Beckett' +p126035 +sa(dp126036 +g25273 +S'mezzotint' +p126037 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126038 +sg25268 +S'Mrs. Anne Killigrew' +p126039 +sg25270 +S'Isaak Beckett' +p126040 +sa(dp126041 +g25273 +S'engraving' +p126042 +sg25267 +g27 +sg25275 +S'1650' +p126043 +sg25268 +S'John King, Bishop of London' +p126044 +sg25270 +S'Unknown 19th Century' +p126045 +sa(dp126046 +g25273 +S', unknown date' +p126047 +sg25267 +g27 +sg25275 +S'\n' +p126048 +sg25268 +S'Rev. Father Antonius Kress' +p126049 +sg25270 +S'Hendrik Hondius I' +p126050 +sa(dp126051 +g25273 +S'engraving' +p126052 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126053 +sg25268 +S'Christoph Kress von Kressenstein' +p126054 +sg25270 +S'Unknown 19th Century' +p126055 +sa(dp126056 +g25268 +S'Saints Peter and Paul with the Sudarium' +p126057 +sg25270 +S'German 15th Century' +p126058 +sg25273 +S'Schreiber, no. 1662' +p126059 +sg25275 +S'\nwoodcut, hand-colored in vermilion, red-violet, rose, blue, green, brown, and yellow' +p126060 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5b6.jpg' +p126061 +sg25267 +g27 +sa(dp126062 +g25273 +S'engraving' +p126063 +sg25267 +g27 +sg25275 +S'1629' +p126064 +sg25268 +S'Arthur Lake, Bishop of Bath and Wells' +p126065 +sg25270 +S'John Payne' +p126066 +sa(dp126067 +g25273 +S'engraving' +p126068 +sg25267 +g27 +sg25275 +S'published 1650' +p126069 +sg25268 +S'Arthur Lake, Bishop of Bath and Wells' +p126070 +sg25270 +S'Unknown 19th Century' +p126071 +sa(dp126072 +g25273 +S'(artist after)' +p126073 +sg25267 +g27 +sg25275 +S'\n' +p126074 +sg25268 +S'John Lambert, Parliamentary General' +p126075 +sg25270 +S'Artist Information (' +p126076 +sa(dp126077 +g25273 +S'engraving' +p126078 +sg25267 +g27 +sg25275 +S'1663' +p126079 +sg25268 +S'William of Lamoignon' +p126080 +sg25270 +S'Robert Nanteuil' +p126081 +sa(dp126082 +g25273 +S', published 1598' +p126083 +sg25267 +g27 +sg25275 +S'\n' +p126084 +sg25268 +S'Rene de Laudonniere' +p126085 +sg25270 +S'Crispijn van de Passe I' +p126086 +sa(dp126087 +g25273 +S'engraving' +p126088 +sg25267 +g27 +sg25275 +S'1599' +p126089 +sg25268 +S'Teucrides Annaeus Lanicerus' +p126090 +sg25270 +S'Unknown 19th Century' +p126091 +sa(dp126092 +g25273 +S'engraving' +p126093 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126094 +sg25268 +S'Philip Lansberg' +p126095 +sg25270 +S'D. Heinsius' +p126096 +sa(dp126097 +g25273 +S'(artist)' +p126098 +sg25267 +g27 +sg25275 +S'\n' +p126099 +sg25268 +S'Hugh Latimer, Bishop of Worcester, Protestant Martyr' +p126100 +sg25270 +S'Artist Information (' +p126101 +sa(dp126102 +g25273 +S', unknown date' +p126103 +sg25267 +g27 +sg25275 +S'\n' +p126104 +sg25268 +S'William Laud, Archbishop of Canterbury' +p126105 +sg25270 +S'Claes Jansz Visscher' +p126106 +sa(dp126107 +g25273 +S'engraving' +p126108 +sg25267 +g27 +sg25275 +S'1577' +p126109 +sg25268 +S'Andreas Laurent, Doctor of Henry IV of France' +p126110 +sg25270 +S'Unknown 19th Century' +p126111 +sa(dp126112 +g25268 +S'Saint Poppo' +p126113 +sg25270 +S'Netherlandish 15th Century' +p126114 +sg25273 +S'sheet (trimmed to image): 10.3 x 6.8 cm (4 1/16 x 2 11/16 in.)' +p126115 +sg25275 +S'\nwoodcut, hand-colored in green, red and yellow; printed on vellum and retouched' +p126116 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccea.jpg' +p126117 +sg25267 +g27 +sa(dp126118 +g25273 +S'engraving' +p126119 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126120 +sg25268 +S'Robert Dudley, Earl of Leicester' +p126121 +sg25270 +S'Franz Hogenberg' +p126122 +sa(dp126123 +g25273 +S'engraving' +p126124 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126125 +sg25268 +S'Robert Dudley, Earl of Leicester' +p126126 +sg25270 +S'Unknown 19th Century' +p126127 +sa(dp126128 +g25273 +S'etching' +p126129 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126130 +sg25268 +S'Robert Dudley, Earl of Leicester on Horseback' +p126131 +sg25270 +S'Unknown 19th Century' +p126132 +sa(dp126133 +g25273 +S'engraving' +p126134 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126135 +sg25268 +S'Robert Dudley, Earl of Leicester' +p126136 +sg25270 +S'Unknown 19th Century' +p126137 +sa(dp126138 +g25273 +S'engraving' +p126139 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126140 +sg25268 +S'Robert Dudley, Earl of Leicester' +p126141 +sg25270 +S'Unknown 19th Century' +p126142 +sa(dp126143 +g25273 +S'engraving' +p126144 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126145 +sg25268 +S'Robert Dudley, Earl of Leicester' +p126146 +sg25270 +S'Unknown 19th Century' +p126147 +sa(dp126148 +g25273 +S'engraving' +p126149 +sg25267 +g27 +sg25275 +S'published 1620' +p126150 +sg25268 +S'Robert Dudley, Earl of Leicester' +p126151 +sg25270 +S'Willem de Passe' +p126152 +sa(dp126153 +g25273 +S'engraving' +p126154 +sg25267 +g27 +sg25275 +S'published 1620' +p126155 +sg25268 +S'Robert Dudley, Earl of Leicester' +p126156 +sg25270 +S'Willem de Passe' +p126157 +sa(dp126158 +g25273 +S'engraving' +p126159 +sg25267 +g27 +sg25275 +S'1568' +p126160 +sg25268 +S'Robert Dudley, Earl of Leicester' +p126161 +sg25270 +S'Unknown 19th Century' +p126162 +sa(dp126163 +g25268 +S'Robert Dudley, Earl of Leicester' +p126164 +sg25270 +S'Christoffel van Sichem I' +p126165 +sg25273 +S'engraving' +p126166 +sg25275 +S'unknown date\n' +p126167 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3bb.jpg' +p126168 +sg25267 +g27 +sa(dp126169 +g25268 +S'Saint Sebastian' +p126170 +sg25270 +S'German 15th Century' +p126171 +sg25273 +S'Schreiber, Vol. *, no. 1687, State d' +p126172 +sg25275 +S'\nwoodcut, hand-colored in green, red lake, olive, and yellow' +p126173 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5b8.jpg' +p126174 +sg25267 +g27 +sa(dp126175 +g25268 +S'Robert Dudley, Earl of Leicester' +p126176 +sg25270 +S'Artist Information (' +p126177 +sg25273 +S'(artist after)' +p126178 +sg25275 +S'\n' +p126179 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3b9.jpg' +p126180 +sg25267 +g27 +sa(dp126181 +g25273 +S'engraving' +p126182 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126183 +sg25268 +S'Robert Dudley, Earl of Leicester' +p126184 +sg25270 +S'Hieronymus Wierix' +p126185 +sa(dp126186 +g25273 +S', 1605' +p126187 +sg25267 +g27 +sg25275 +S'\n' +p126188 +sg25268 +S'Pope Leo XI' +p126189 +sg25270 +S'Crispijn van de Passe I' +p126190 +sa(dp126191 +g25273 +S'engraving' +p126192 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126193 +sg25268 +S'Otto Leoni' +p126194 +sg25270 +S'Unknown 19th Century' +p126195 +sa(dp126196 +g25273 +S'engraving' +p126197 +sg25267 +g27 +sg25275 +S'1637' +p126198 +sg25268 +S'Walter Leslie (Count Leslie)' +p126199 +sg25270 +S'Lucas Kilian' +p126200 +sa(dp126201 +g25273 +S'engraving' +p126202 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126203 +sg25268 +S'Leonard Lessius, Jesuit' +p126204 +sg25270 +S'Schelte Adams Bolswert' +p126205 +sa(dp126206 +g25273 +S'engraving' +p126207 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126208 +sg25268 +S'Leonard Lessius, Jesuit Priest, Professor at Louvain' +p126209 +sg25270 +S'Cornelis Galle I' +p126210 +sa(dp126211 +g25273 +S'engraving' +p126212 +sg25267 +g27 +sg25275 +S'1595' +p126213 +sg25268 +S'Joannes Hugo van Linschoten' +p126214 +sg25270 +S'Unknown 19th Century' +p126215 +sa(dp126216 +g25273 +S'engraving' +p126217 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126218 +sg25268 +S'Justus Lipsius, Historian' +p126219 +sg25270 +S'Unknown 19th Century' +p126220 +sa(dp126221 +g25273 +S', 1587' +p126222 +sg25267 +g27 +sg25275 +S'\n' +p126223 +sg25268 +S'Justus Lipsius' +p126224 +sg25270 +S'Crispijn van de Passe I' +p126225 +sa(dp126226 +g25268 +S'Saint Sebaldus and Saint Lawrence' +p126227 +sg25270 +S'German 15th Century' +p126228 +sg25273 +S'Schreiber, no. 1675' +p126229 +sg25275 +S'\nwoodcut, hand-colored in blue, red, yellow, green, and orange' +p126230 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a639.jpg' +p126231 +sg25267 +g27 +sa(dp126232 +g25273 +S'engraving' +p126233 +sg25267 +g27 +sg25275 +S'1591' +p126234 +sg25268 +S'Justus Lipsius' +p126235 +sg25270 +S'Bartolomeus Willemsz Dolendo' +p126236 +sa(dp126237 +g25273 +S'engraving' +p126238 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126239 +sg25268 +S'Justus Lipsius' +p126240 +sg25270 +S'Jacques de Fornazeris' +p126241 +sa(dp126242 +g25273 +S'(artist after)' +p126243 +sg25267 +g27 +sg25275 +S'\n' +p126244 +sg25268 +S'Henry Cornelius Longkius' +p126245 +sg25270 +S'Artist Information (' +p126246 +sa(dp126247 +g25273 +S'(artist after)' +p126248 +sg25267 +g27 +sg25275 +S'\n' +p126249 +sg25268 +S'Charles, Duc de Lorraine' +p126250 +sg25270 +S'Artist Information (' +p126251 +sa(dp126252 +g25273 +S'engraving' +p126253 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126254 +sg25268 +S'Christiana Lotharingia (Christine de Lorraine)' +p126255 +sg25270 +S'Unknown 19th Century' +p126256 +sa(dp126257 +g25273 +S'French, active c. 1550/1600' +p126258 +sg25267 +g27 +sg25275 +S'(artist after)' +p126259 +sg25268 +S'Francis de Lorraine, Second Duc de Guise' +p126260 +sg25270 +S'Artist Information (' +p126261 +sa(dp126262 +g25273 +S'engraving' +p126263 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126264 +sg25268 +S'Francis de Lorraine, Second Duc de Guise' +p126265 +sg25270 +S'Unknown 19th Century' +p126266 +sa(dp126267 +g25273 +S'engraving' +p126268 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126269 +sg25268 +S'Henry de Lorraine, Third Duc de Guise' +p126270 +sg25270 +S'Unknown 19th Century' +p126271 +sa(dp126272 +g25273 +S'engraving' +p126273 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126274 +sg25268 +S'Henry de Lorraine, Fifth Duc de Guise' +p126275 +sg25270 +S'Balthasar Moncornet' +p126276 +sa(dp126277 +g25273 +S'engraving' +p126278 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126279 +sg25268 +S'Louise de Lorraine, Wife of Henry III' +p126280 +sg25270 +S'Unknown 19th Century' +p126281 +sa(dp126282 +g25268 +S'Saint Sebastian' +p126283 +sg25270 +S'German 15th Century' +p126284 +sg25273 +S'sheet: 29.4 x 20 cm (11 9/16 x 7 7/8 in.)\r\noverall (external frame dimensions): 59.7 x 44.5 cm (23 1/2 x 17 1/2 in.)' +p126285 +sg25275 +S'\nwoodcut in black, hand-colored in red lake, red-orange, green, yellow, and tan' +p126286 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a000562b.jpg' +p126287 +sg25267 +g27 +sa(dp126288 +g25273 +S'engraving' +p126289 +sg25267 +g27 +sg25275 +S'1588' +p126290 +sg25268 +S'Louise de Lorraine, Queen of France' +p126291 +sg25270 +S'Unknown 19th Century' +p126292 +sa(dp126293 +g25273 +S'engraving' +p126294 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126295 +sg25268 +S'Louise Marguerite de Lorraine, Second Wife ofFrancois, Prince of Conti' +p126296 +sg25270 +S'Thomas de Leu' +p126297 +sa(dp126298 +g25273 +S'engraving' +p126299 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126300 +sg25268 +S'Louis of Nassau' +p126301 +sg25270 +S'Unknown 19th Century' +p126302 +sa(dp126303 +g25273 +S', unknown date' +p126304 +sg25267 +g27 +sg25275 +S'\n' +p126305 +sg25268 +S'Louis XIII, King of France' +p126306 +sg25270 +S'Karel van Mallery' +p126307 +sa(dp126308 +g25273 +S'engraving' +p126309 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126310 +sg25268 +S'Louis XIII, King of France' +p126311 +sg25270 +S'Thomas de Leu' +p126312 +sa(dp126313 +g25273 +S'engraving' +p126314 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126315 +sg25268 +S'Louis XIII of France' +p126316 +sg25270 +S'Unknown 19th Century' +p126317 +sa(dp126318 +g25273 +S'(artist after)' +p126319 +sg25267 +g27 +sg25275 +S'\n' +p126320 +sg25268 +S'Louis XIII, King of France' +p126321 +sg25270 +S'Artist Information (' +p126322 +sa(dp126323 +g25273 +S'engraving' +p126324 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126325 +sg25268 +S'Louis XIII, King of France' +p126326 +sg25270 +S'Unknown 19th Century' +p126327 +sa(dp126328 +g25273 +S'engraving' +p126329 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126330 +sg25268 +S'Louis XIII of France' +p126331 +sg25270 +S'Unknown 19th Century' +p126332 +sa(dp126333 +g25273 +S'French, 1561 - 1641' +p126334 +sg25267 +g27 +sg25275 +S'(artist after)' +p126335 +sg25268 +S'Louis XIII' +p126336 +sg25270 +S'Artist Information (' +p126337 +sa(dp126338 +g25268 +S'Saint Benedict' +p126339 +sg25270 +S'German 15th Century' +p126340 +sg25273 +S'Schreiber, Vol. IX, no. 1268, State b' +p126341 +sg25275 +S'\nwoodcut, hand-colored in brown, olive, yellow, androse' +p126342 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a551.jpg' +p126343 +sg25267 +g27 +sa(dp126344 +g25273 +S'engraving' +p126345 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126346 +sg25268 +S'Louis XIII of France' +p126347 +sg25270 +S'Wolfgang Philipp Kilian' +p126348 +sa(dp126349 +g25273 +S'engraving' +p126350 +sg25267 +g27 +sg25275 +S'1624' +p126351 +sg25268 +S'Louis XIII of France' +p126352 +sg25270 +S'Unknown 19th Century' +p126353 +sa(dp126354 +g25273 +S'(artist after)' +p126355 +sg25267 +g27 +sg25275 +S'\n' +p126356 +sg25268 +S'Louis XIII' +p126357 +sg25270 +S'Artist Information (' +p126358 +sa(dp126359 +g25273 +S'engraving' +p126360 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126361 +sg25268 +S'Louis Henry of Nassau' +p126362 +sg25270 +S'Pierre Philippe' +p126363 +sa(dp126364 +g25273 +S'engraving' +p126365 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126366 +sg25268 +S'Princess Louisa, Daughter of Henry Frederick' +p126367 +sg25270 +S'Crispyn van den Queboorn' +p126368 +sa(dp126369 +g25273 +S'(artist after)' +p126370 +sg25267 +g27 +sg25275 +S'\n' +p126371 +sg25268 +S'Her Royal Highness Princess Louisa Anne' +p126372 +sg25270 +S'Artist Information (' +p126373 +sa(dp126374 +g25273 +S', unknown date' +p126375 +sg25267 +g27 +sg25275 +S'\n' +p126376 +sg25268 +S'Louise Juliana of Nassau, Electress Palatine' +p126377 +sg25270 +S'Crispijn van de Passe I' +p126378 +sa(dp126379 +g25273 +S'engraving' +p126380 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126381 +sg25268 +S'Louise Juliana, Wife of Frederick IV' +p126382 +sg25270 +S'Unknown 19th Century' +p126383 +sa(dp126384 +g25273 +S'engraving' +p126385 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126386 +sg25268 +S'Louise Juliana, Wife of Frederick IV' +p126387 +sg25270 +S'Unknown 19th Century' +p126388 +sa(dp126389 +g25273 +S'engraving' +p126390 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126391 +sg25268 +S'Saint Ignatius de Loyola, Founder of the Jesuits' +p126392 +sg25270 +S'Unknown 19th Century' +p126393 +sa(dp126394 +g25268 +S'The Voyage of Saint Ursula' +p126395 +sg25270 +S'German 15th Century' +p126396 +sg25273 +S'Schreiber, no. 1714' +p126397 +sg25275 +S'\nwoodcut in brown, hand-colored in red lake, green, blue, yellow, tan, gold, and orange' +p126398 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a60e.jpg' +p126399 +sg25267 +g27 +sa(dp126400 +g25273 +S'engraving' +p126401 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126402 +sg25268 +S'Saint Ignatius de Loyola' +p126403 +sg25270 +S'Unknown 19th Century' +p126404 +sa(dp126405 +g25273 +S'engraving' +p126406 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126407 +sg25268 +S'Saint Ignatius de Loyola' +p126408 +sg25270 +S'Aegidius Sadeler II' +p126409 +sa(dp126410 +g25273 +S'engraving' +p126411 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126412 +sg25268 +S'St. Ignatius de Loyola' +p126413 +sg25270 +S'Hieronymus Wierix' +p126414 +sa(dp126415 +g25273 +S'engraving' +p126416 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126417 +sg25268 +S'St. Ignatius de Loyola' +p126418 +sg25270 +S'Hieronymus Wierix' +p126419 +sa(dp126420 +g25273 +S'(artist after)' +p126421 +sg25267 +g27 +sg25275 +S'\n' +p126422 +sg25268 +S'Saint Ignatius de Loyola' +p126423 +sg25270 +S'Artist Information (' +p126424 +sa(dp126425 +g25273 +S'engraving' +p126426 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126427 +sg25268 +S'Madame Lvebout' +p126428 +sg25270 +S'Peregrine Lovell' +p126429 +sa(dp126430 +g25273 +S'engraving' +p126431 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126432 +sg25268 +S'Martin Luther' +p126433 +sg25270 +S'Unknown 19th Century' +p126434 +sa(dp126435 +g25273 +S'(artist after)' +p126436 +sg25267 +g27 +sg25275 +S'\n' +p126437 +sg25268 +S'Edward Lyttelton, Baron of Mounslow' +p126438 +sg25270 +S'Artist Information (' +p126439 +sa(dp126440 +g25273 +S'engraving' +p126441 +sg25267 +g27 +sg25275 +S'1610' +p126442 +sg25268 +S'Cardinal Carolus Madrucius' +p126443 +sg25270 +S'Unknown 19th Century' +p126444 +sa(dp126445 +g25273 +S'engraving' +p126446 +sg25267 +g27 +sg25275 +S'1592' +p126447 +sg25268 +S'Doctor Francois Maelson' +p126448 +sg25270 +S'Hieronymus Wierix' +p126449 +sa(dp126450 +g25268 +S'Saint Valentine' +p126451 +sg25270 +S'German 15th Century' +p126452 +sg25273 +S'sheet: 13.4 x 9.5 cm (5 1/4 x 3 3/4 in.)\r\noverall (external frame dimensions): 39.4 x 31.8 cm (15 1/2 x 12 1/2 in.)' +p126453 +sg25275 +S'\nwoodcut, hand-colored in red lake, green, yellow, rose, and tan' +p126454 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a00055fb.jpg' +p126455 +sg25267 +g27 +sa(dp126456 +g25273 +S', 1595' +p126457 +sg25267 +g27 +sg25275 +S'\n' +p126458 +sg25268 +S'Mehmed II, Sultan of Turkey' +p126459 +sg25270 +S'Crispijn van de Passe I' +p126460 +sa(dp126461 +g25273 +S', 1595' +p126462 +sg25267 +g27 +sg25275 +S'\n' +p126463 +sg25268 +S'Mehmed II, Sultan of Turkey' +p126464 +sg25270 +S'Crispijn van de Passe I' +p126465 +sa(dp126466 +g25273 +S'engraving' +p126467 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126468 +sg25268 +S'Antoine le Maitre' +p126469 +sg25270 +S'Jacques Lubin' +p126470 +sa(dp126471 +g25273 +S'engraving' +p126472 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126473 +sg25268 +S'Charles von Mansfeld' +p126474 +sg25270 +S'Giacomo Franco' +p126475 +sa(dp126476 +g25273 +S', 1623' +p126477 +sg25267 +g27 +sg25275 +S'\n' +p126478 +sg25268 +S'Ernest, Count of Mansfeld' +p126479 +sg25270 +S'Simon van de Passe' +p126480 +sa(dp126481 +g25273 +S'engraving' +p126482 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126483 +sg25268 +S'Peter Ernst, Furst von Mansfeld' +p126484 +sg25270 +S'Unknown 19th Century' +p126485 +sa(dp126486 +g25273 +S'engraving' +p126487 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126488 +sg25268 +S'Margaret, Wife of Philip III of Spain' +p126489 +sg25270 +S'Unknown 19th Century' +p126490 +sa(dp126491 +g25273 +S'engraving' +p126492 +sg25267 +g27 +sg25275 +S'1601' +p126493 +sg25268 +S'Margaret, Wife of Philip III of Spain' +p126494 +sg25270 +S'Paul de la Houve' +p126495 +sa(dp126496 +g25268 +S'Mary, Queen of Hungary' +p126497 +sg25270 +S'Artist Information (' +p126498 +sg25273 +S'(artist after)' +p126499 +sg25275 +S'\n' +p126500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3bc.jpg' +p126501 +sg25267 +g27 +sa(dp126502 +g25273 +S', 1622' +p126503 +sg25267 +g27 +sg25275 +S'\n' +p126504 +sg25268 +S'Maria of Austria, Infanta of Spain' +p126505 +sg25270 +S'Simon van de Passe' +p126506 +sa(dp126507 +g25268 +S'The Mass of Saint Gregory' +p126508 +sg25270 +S'German 15th Century' +p126509 +sg25273 +S'Schreiber, no. 1472, State a' +p126510 +sg25275 +S'\nwoodcut, hand-colored in red lake, green, yellow, tan, brown' +p126511 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5b4.jpg' +p126512 +sg25267 +g27 +sa(dp126513 +g25273 +S'engraving' +p126514 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126515 +sg25268 +S'Princess Maria, Daughter of Emanuel, King of Portugal' +p126516 +sg25270 +S'Unknown 19th Century' +p126517 +sa(dp126518 +g25273 +S'engraving' +p126519 +sg25267 +g27 +sg25275 +S'1615' +p126520 +sg25268 +S'Princess Maria Magdalen' +p126521 +sg25270 +S'Wolfgang Kilian' +p126522 +sa(dp126523 +g25273 +S', 1620' +p126524 +sg25267 +g27 +sg25275 +S'\n' +p126525 +sg25268 +S'Richard Martin' +p126526 +sg25270 +S'Simon van de Passe' +p126527 +sa(dp126528 +g25273 +S'engraving' +p126529 +sg25267 +g27 +sg25275 +S'1568' +p126530 +sg25268 +S'Queen Mary of England' +p126531 +sg25270 +S'Niccol\xc3\xb2 Nelli' +p126532 +sa(dp126533 +g25273 +S'engraving' +p126534 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126535 +sg25268 +S'Mariae, D.G. Angliae, Franciae et Hiberniam Reginae (Mary I)' +p126536 +sg25270 +S'Francis Delaram' +p126537 +sa(dp126538 +g25273 +S'engraving' +p126539 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126540 +sg25268 +S'Mariae, D.G. Angliae, Franciae et Hiberniam Reginae (Mary I)' +p126541 +sg25270 +S'Francis Delaram' +p126542 +sa(dp126543 +g25273 +S'engraving' +p126544 +sg25267 +g27 +sg25275 +S'1555' +p126545 +sg25268 +S'Queen Mary of England' +p126546 +sg25270 +S'Frans Huys' +p126547 +sa(dp126548 +g25273 +S'engraving' +p126549 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126550 +sg25268 +S'Mary Stuart' +p126551 +sg25270 +S'Jean Couvay' +p126552 +sa(dp126553 +g25273 +S'engraving' +p126554 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126555 +sg25268 +S'Mary of Guise' +p126556 +sg25270 +S'Henry Shaw' +p126557 +sa(dp126558 +g25273 +S'engraving' +p126559 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126560 +sg25268 +S'Mary, Queen of Scots' +p126561 +sg25270 +S'Frans Huys' +p126562 +sa(dp126563 +g25268 +S'The Crucifixion' +p126564 +sg25270 +S'German 15th Century' +p126565 +sg25273 +S'Schreiber, Vol. IX, no. 1765, State a' +p126566 +sg25275 +S'\nwoodcut, hand-colored in blue, green, yellow, and brown [fragment]' +p126567 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5bc.jpg' +p126568 +sg25267 +g27 +sa(dp126569 +g25273 +S'engraving' +p126570 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126571 +sg25268 +S'Mary, Queen of Scots' +p126572 +sg25270 +S'Frans Huys' +p126573 +sa(dp126574 +g25273 +S'engraving' +p126575 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126576 +sg25268 +S'Mary, Queen of Scots' +p126577 +sg25270 +S'Renold Elstrack' +p126578 +sa(dp126579 +g25273 +S'engraving' +p126580 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126581 +sg25268 +S'Mary, Queen of Scots' +p126582 +sg25270 +S'Renold Elstrack' +p126583 +sa(dp126584 +g25273 +S'engraving' +p126585 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126586 +sg25268 +S'Mary, Queen of Scots' +p126587 +sg25270 +S'Crispyn van den Queboorn' +p126588 +sa(dp126589 +g25273 +S'engraving' +p126590 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126591 +sg25268 +S'Mary, Queen of Scots' +p126592 +sg25270 +S'Unknown 19th Century' +p126593 +sa(dp126594 +g25273 +S'Rosenwald Collection' +p126595 +sg25267 +g27 +sg25275 +S'\nengraving' +p126596 +sg25268 +S'Mary, Queen of Scots' +p126597 +sg25270 +S'J. Liepoldt' +p126598 +sa(dp126599 +g25273 +S'engraving' +p126600 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126601 +sg25268 +S'Mary, Queen of Scots' +p126602 +sg25270 +S'Charles David' +p126603 +sa(dp126604 +g25273 +S'engraving' +p126605 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126606 +sg25268 +S'Mary, Queen of Scots' +p126607 +sg25270 +S'Thomas de Leu' +p126608 +sa(dp126609 +g25273 +S'English, 1571 - 1625' +p126610 +sg25267 +g27 +sg25275 +S'(artist after)' +p126611 +sg25268 +S'Mary, Queen of Scots' +p126612 +sg25270 +S'Artist Information (' +p126613 +sa(dp126614 +g25273 +S'engraving' +p126615 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126616 +sg25268 +S'Mary, Wife of William II of Orange' +p126617 +sg25270 +S'Pieter de Jode I' +p126618 +sa(dp126619 +g25268 +S'Four Martyrs - Saint Acacius' +p126620 +sg25270 +S'German 15th Century' +p126621 +sg25273 +S'Schreiber, no. 1772' +p126622 +sg25275 +S'\nwoodcut in brown, hand-colored in yellow, green, red, and tan-gray' +p126623 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5b9.jpg' +p126624 +sg25267 +g27 +sa(dp126625 +g25273 +S'(artist after)' +p126626 +sg25267 +g27 +sg25275 +S'\n' +p126627 +sg25268 +S'Mary of Modena, as Duchess of York' +p126628 +sg25270 +S'Artist Information (' +p126629 +sa(dp126630 +g25273 +S'engraving' +p126631 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126632 +sg25268 +S'Tobias Matthew, Archbishop of York' +p126633 +sg25270 +S'Renold Elstrack' +p126634 +sa(dp126635 +g25273 +S'engraving' +p126636 +sg25267 +g27 +sg25275 +S'1650' +p126637 +sg25268 +S'Tobias Matthew, Archbishop of York' +p126638 +sg25270 +S'Unknown 19th Century' +p126639 +sa(dp126640 +g25273 +S'engraving' +p126641 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126642 +sg25268 +S'Matthias, Roman Emperor and William I, Princeof Orange' +p126643 +sg25270 +S'Unknown 19th Century' +p126644 +sa(dp126645 +g25273 +S'engraving' +p126646 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126647 +sg25268 +S'Emperor Matthias' +p126648 +sg25270 +S'Wolfgang Philipp Kilian' +p126649 +sa(dp126650 +g25273 +S'engraving' +p126651 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126652 +sg25268 +S'Matthias, Roman Emperor' +p126653 +sg25270 +S'Aegidius Sadeler II' +p126654 +sa(dp126655 +g25273 +S'engraving' +p126656 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126657 +sg25268 +S'Emperor Matthias' +p126658 +sg25270 +S'Thomas Cockson' +p126659 +sa(dp126660 +g25273 +S', 1598' +p126661 +sg25267 +g27 +sg25275 +S'\n' +p126662 +sg25268 +S'Maurice of Nassau, Prince of Orange' +p126663 +sg25270 +S'Crispijn van de Passe I' +p126664 +sa(dp126665 +g25273 +S', published 1598' +p126666 +sg25267 +g27 +sg25275 +S'\n' +p126667 +sg25268 +S'Maurice of Nassau, Prince of Orange' +p126668 +sg25270 +S'Crispijn van de Passe I' +p126669 +sa(dp126670 +g25273 +S'engraving' +p126671 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126672 +sg25268 +S'Maurice, Prince of Orange' +p126673 +sg25270 +S'Unknown 19th Century' +p126674 +sa(dp126675 +g25268 +S'Holy Kinship' +p126676 +sg25270 +S'German 15th Century' +p126677 +sg25273 +S'image: 26.5 x 38.9 cm (10 7/16 x 15 5/16 in.)\r\nsheet: 26.7 x 39.1 cm (10 1/2 x 15 3/8 in.)\r\noverall (exterior frame dimensions): 44.8 x 60 cm (17 5/8 x 23 5/8 in.)' +p126678 +sg25275 +S'\nwoodcut, hand-colored in green, yellow, red lake, and light brown' +p126679 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a000562a.jpg' +p126680 +sg25267 +g27 +sa(dp126681 +g25273 +S', unknown date' +p126682 +sg25267 +g27 +sg25275 +S'\n' +p126683 +sg25268 +S'Maurice of Nassau, Prince of Orange' +p126684 +sg25270 +S'Crispijn van de Passe I' +p126685 +sa(dp126686 +g25273 +S', unknown date' +p126687 +sg25267 +g27 +sg25275 +S'\n' +p126688 +sg25268 +S'Maurice of Nassau, Prince of Orange' +p126689 +sg25270 +S'Crispijn van de Passe I' +p126690 +sa(dp126691 +g25268 +S'Maurice of Nassau, Prince of Orange' +p126692 +sg25270 +S'Christoffel van Sichem I' +p126693 +sg25273 +S'engraving' +p126694 +sg25275 +S'unknown date\n' +p126695 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3bf.jpg' +p126696 +sg25267 +g27 +sa(dp126697 +g25273 +S', unknown date' +p126698 +sg25267 +g27 +sg25275 +S'\n' +p126699 +sg25268 +S'Maurice of Nassau, Prince of Orange' +p126700 +sg25270 +S'Crispijn van de Passe I' +p126701 +sa(dp126702 +g25273 +S'engraving' +p126703 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126704 +sg25268 +S'Maurice, Prince of Orange' +p126705 +sg25270 +S'Unknown 19th Century' +p126706 +sa(dp126707 +g25273 +S'engraving' +p126708 +sg25267 +g27 +sg25275 +S'1608' +p126709 +sg25268 +S'Maurice, Prince of Orange' +p126710 +sg25270 +S'Hendrik Hondius I' +p126711 +sa(dp126712 +g25273 +S'engraving' +p126713 +sg25267 +g27 +sg25275 +S'1614' +p126714 +sg25268 +S'Maurice, Prince of Orange' +p126715 +sg25270 +S'Unknown 19th Century' +p126716 +sa(dp126717 +g25273 +S'engraving' +p126718 +sg25267 +g27 +sg25275 +S'1618' +p126719 +sg25268 +S'Maurice, Prince of Orange' +p126720 +sg25270 +S'Unknown 19th Century' +p126721 +sa(dp126722 +g25273 +S'engraving' +p126723 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126724 +sg25268 +S'Maurice, Prince of Orange' +p126725 +sg25270 +S'Pieter de Jode I' +p126726 +sa(dp126727 +g25273 +S'engraving' +p126728 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126729 +sg25268 +S'Maurice, Prince of Orange' +p126730 +sg25270 +S'Crispyn van den Queboorn' +p126731 +sa(dp126732 +g25268 +S'The Sacred Monogram' +p126733 +sg25270 +S'French 15th Century' +p126734 +sg25273 +S'Schreiber, no. 1821, State i/ii' +p126735 +sg25275 +S'\nwoodcut, hand-colored in orange-red and gray-blue' +p126736 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a00082f3.jpg' +p126737 +sg25267 +g27 +sa(dp126738 +g25273 +S'(artist after)' +p126739 +sg25267 +g27 +sg25275 +S'\n' +p126740 +sg25268 +S'Maurice of Nassau, Prince of Orange' +p126741 +sg25270 +S'Artist Information (' +p126742 +sa(dp126743 +g25273 +S'engraving' +p126744 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126745 +sg25268 +S'Maurice, Prince of Orange on Horseback' +p126746 +sg25270 +S'Egbert van Panderen' +p126747 +sa(dp126748 +g25273 +S'engraving' +p126749 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126750 +sg25268 +S'Thomas Maurois' +p126751 +sg25270 +S'Abraham Conradus' +p126752 +sa(dp126753 +g25273 +S'(artist after)' +p126754 +sg25267 +g27 +sg25275 +S'\n' +p126755 +sg25268 +S'Thomas Maurois' +p126756 +sg25270 +S'Artist Information (' +p126757 +sa(dp126758 +g25273 +S'engraving' +p126759 +sg25267 +g27 +sg25275 +S'published 1602' +p126760 +sg25268 +S'Maximilian I, Son of Emperor Frederick III' +p126761 +sg25270 +S'William Rogers' +p126762 +sa(dp126763 +g25273 +S'engraving' +p126764 +sg25267 +g27 +sg25275 +S'published 1602' +p126765 +sg25268 +S'Emperor Maximilian I' +p126766 +sg25270 +S'William Rogers' +p126767 +sa(dp126768 +g25273 +S'engraving' +p126769 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126770 +sg25268 +S'Maximilian I, Duke of Bavaria' +p126771 +sg25270 +S'Jan Sadeler I' +p126772 +sa(dp126773 +g25273 +S'engraving' +p126774 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126775 +sg25268 +S'Maximilian I, Duke of Bavaria' +p126776 +sg25270 +S'Jan Sadeler I' +p126777 +sa(dp126778 +g25273 +S'engraving' +p126779 +sg25267 +g27 +sg25275 +S'1594' +p126780 +sg25268 +S'Maximilian II, Roman Emperor' +p126781 +sg25270 +S'Unknown 19th Century' +p126782 +sa(dp126783 +g25273 +S'engraving' +p126784 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126785 +sg25268 +S'Maximilian II, Roman Emperor' +p126786 +sg25270 +S'Frans Huys' +p126787 +sa(dp126788 +g25268 +S'Purgatory' +p126789 +sg25270 +S'German 15th Century' +p126790 +sg25273 +S'Schreiber, no. 1834, State (?)' +p126791 +sg25275 +S'\nwoodcut, hand-colored in orange, red lake, green, yellow, and gold' +p126792 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a59a.jpg' +p126793 +sg25267 +g27 +sa(dp126794 +g25273 +S'(artist after)' +p126795 +sg25267 +g27 +sg25275 +S'\n' +p126796 +sg25268 +S'Maximilian II' +p126797 +sg25270 +S'Artist Information (' +p126798 +sa(dp126799 +g25268 +S'Maximilian II, Roman Emperor' +p126800 +sg25270 +S'Martino Rota' +p126801 +sg25273 +S'engraving' +p126802 +sg25275 +S'1575' +p126803 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066db.jpg' +p126804 +sg25267 +g27 +sa(dp126805 +g25273 +S'(artist after)' +p126806 +sg25267 +g27 +sg25275 +S'\n' +p126807 +sg25268 +S'Sir Thomas Meautys, Secretary to Sir Francis Bacon' +p126808 +sg25270 +S'Artist Information (' +p126809 +sa(dp126810 +g25273 +S'(artist after)' +p126811 +sg25267 +g27 +sg25275 +S'\n' +p126812 +sg25268 +S'Sir Thomas Meautys, Secretary to Sir Francis Bacon' +p126813 +sg25270 +S'Artist Information (' +p126814 +sa(dp126815 +g25273 +S'engraving' +p126816 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126817 +sg25268 +S'Catherine de Medici (?)' +p126818 +sg25270 +S'Jan Sadeler I' +p126819 +sa(dp126820 +g25273 +S'engraving' +p126821 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126822 +sg25268 +S'Catherine de Medici, Wife of Henry II of France' +p126823 +sg25270 +S'Frans Huys' +p126824 +sa(dp126825 +g25273 +S'engraving' +p126826 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126827 +sg25268 +S'Catherine de Medici, Wife of Henry II of France' +p126828 +sg25270 +S'Thomas de Leu' +p126829 +sa(dp126830 +g25273 +S'engraving' +p126831 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126832 +sg25268 +S'Catherine de Medici, Wife of Henry II of France' +p126833 +sg25270 +S'Johan Wierix' +p126834 +sa(dp126835 +g25273 +S'engraving' +p126836 +sg25267 +g27 +sg25275 +S'1629' +p126837 +sg25268 +S'Claudia de Medici, Wife of Leopold of Austrian Tyrol' +p126838 +sg25270 +S'Lucas Kilian' +p126839 +sa(dp126840 +g25273 +S'engraving' +p126841 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126842 +sg25268 +S'Joannes de Medici, son of Joannes of Naples' +p126843 +sg25270 +S'Dominicus Custos' +p126844 +sa(dp126845 +g25268 +S'The Hand as the Mirror of Salvation' +p126846 +sg25270 +S'Netherlandish 15th Century' +p126847 +sg25273 +S'image: 38.5 x 26.5 cm (15 3/16 x 10 7/16 in.)\r\nsheet: 39.1 x 27 cm (15 3/8 x 10 5/8 in.)\r\noverall (exterior frame dimensions): 59.7 x 44.5 cm (23 1/2 x 17 1/2 in.)' +p126848 +sg25275 +S'\nwoodcut, hand-colored in rose, green, yellow and gray; printed by friction in brown ink' +p126849 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00050/a0005034.jpg' +p126850 +sg25267 +g27 +sa(dp126851 +g25273 +S'engraving' +p126852 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126853 +sg25268 +S'Marie de Medici, Wife of Henry IV of France' +p126854 +sg25270 +S'Unknown 19th Century' +p126855 +sa(dp126856 +g25273 +S'engraving' +p126857 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126858 +sg25268 +S'Marie de Medici, Wife of Henry IV of France' +p126859 +sg25270 +S'Unknown 19th Century' +p126860 +sa(dp126861 +g25273 +S', 1601' +p126862 +sg25267 +g27 +sg25275 +S'\n' +p126863 +sg25268 +S'Marie de Medicis, Queen of France' +p126864 +sg25270 +S'Crispijn van de Passe I' +p126865 +sa(dp126866 +g25273 +S'engraving' +p126867 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126868 +sg25268 +S'Marie de Medici, Wife of Henry IV of France' +p126869 +sg25270 +S'Unknown 19th Century' +p126870 +sa(dp126871 +g25273 +S'engraving' +p126872 +sg25267 +g27 +sg25275 +S'1625' +p126873 +sg25268 +S'Marie de Medici (?)' +p126874 +sg25270 +S'Unknown 19th Century' +p126875 +sa(dp126876 +g25273 +S'engraving' +p126877 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126878 +sg25268 +S'Marie de Medici, Wife of Henry IV of France' +p126879 +sg25270 +S'Thomas de Leu' +p126880 +sa(dp126881 +g25273 +S'engraving' +p126882 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126883 +sg25268 +S'Marie de Medici, Wife of Henry IV of France' +p126884 +sg25270 +S'Thomas Cockson' +p126885 +sa(dp126886 +g25273 +S'engraving' +p126887 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126888 +sg25268 +S'Maria de Medici' +p126889 +sg25270 +S'Johan Wierix' +p126890 +sa(dp126891 +g25268 +S'Marie de Medici' +p126892 +sg25270 +S'French 17th Century' +p126893 +sg25273 +S'Rosenwald Collection' +p126894 +sg25275 +S'\nengraving' +p126895 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bf6.jpg' +p126896 +sg25267 +g27 +sa(dp126897 +g25273 +S'engraving' +p126898 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126899 +sg25268 +S'Robert Melunius' +p126900 +sg25270 +S'Joseph Greuter' +p126901 +sa(dp126902 +g25268 +S'The Way of Salvation' +p126903 +sg25270 +S'German 15th Century' +p126904 +sg25273 +S'image: 26.2 x 18 cm (10 5/16 x 7 1/16 in.)\r\nsheet: 26.9 x 18.8 cm (10 9/16 x 7 3/8 in.)\r\noverall (external frame dimensions): 59.7 x 44.5 cm (23 1/2 x 17 1/2 in.)' +p126905 +sg25275 +S'\nwoodcut in brown, hand-colored in green, yellow, red lake, blue, brown, and orange (border)' +p126906 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005623.jpg' +p126907 +sg25267 +g27 +sa(dp126908 +g25273 +S'(artist after)' +p126909 +sg25267 +g27 +sg25275 +S'\n' +p126910 +sg25268 +S'Franciscus de Mendosa' +p126911 +sg25270 +S'Artist Information (' +p126912 +sa(dp126913 +g25268 +S'Franciscus de Mendoza' +p126914 +sg25270 +S'Karel van Sichem' +p126915 +sg25273 +S'engraving' +p126916 +sg25275 +S'published 1626' +p126917 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3b7.jpg' +p126918 +sg25267 +g27 +sa(dp126919 +g25273 +S'(artist after)' +p126920 +sg25267 +g27 +sg25275 +S'\n' +p126921 +sg25268 +S'Admiral Jan Cornelius Meppel of Holland' +p126922 +sg25270 +S'Artist Information (' +p126923 +sa(dp126924 +g25273 +S'engraving, colored' +p126925 +sg25267 +g27 +sg25275 +S'1574' +p126926 +sg25268 +S'Gerard Mercator' +p126927 +sg25270 +S'Franz Hogenberg' +p126928 +sa(dp126929 +g25273 +S'engraving' +p126930 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126931 +sg25268 +S'Joannes van Meurs, Dutch Classical Scholar' +p126932 +sg25270 +S'Unknown 19th Century' +p126933 +sa(dp126934 +g25273 +S', 1631' +p126935 +sg25267 +g27 +sg25275 +S'\n' +p126936 +sg25268 +S'Johannes Meursius, Historian' +p126937 +sg25270 +S'Simon van de Passe' +p126938 +sa(dp126939 +g25273 +S', 1631' +p126940 +sg25267 +g27 +sg25275 +S'\n' +p126941 +sg25268 +S'Johannes Meursius, Historian' +p126942 +sg25270 +S'Simon van de Passe' +p126943 +sa(dp126944 +g25273 +S'engraving' +p126945 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126946 +sg25268 +S'Petrus Molineus' +p126947 +sg25270 +S'Thomas de Leu' +p126948 +sa(dp126949 +g25273 +S'engraving' +p126950 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126951 +sg25268 +S'Portrait of a Man in an Oval with Cupids Decoration' +p126952 +sg25270 +S'Unknown 19th Century' +p126953 +sa(dp126954 +g25273 +S'(artist after)' +p126955 +sg25267 +g27 +sg25275 +S'\n' +p126956 +sg25268 +S'Ann, Wife of James Scott, Duke of Monmouth and Buccleuch' +p126957 +sg25270 +S'Artist Information (' +p126958 +sa(dp126959 +g25268 +S'Calendar with the Nativity and Adoration' +p126960 +sg25270 +S'German 15th Century' +p126961 +sg25273 +S'Schreiber, no. 1906, State m' +p126962 +sg25275 +S'\nwoodcut' +p126963 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a63f.jpg' +p126964 +sg25267 +g27 +sa(dp126965 +g25273 +S'(artist after)' +p126966 +sg25267 +g27 +sg25275 +S'\n' +p126967 +sg25268 +S'James, Duke of Monmouth and Buccleuch' +p126968 +sg25270 +S'Artist Information (' +p126969 +sa(dp126970 +g25273 +S'(artist)' +p126971 +sg25267 +g27 +sg25275 +S'\n' +p126972 +sg25268 +S'James Montagu, Bishop of Winchester' +p126973 +sg25270 +S'Artist Information (' +p126974 +sa(dp126975 +g25273 +S'engraving' +p126976 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126977 +sg25268 +S'James Graham, First Marquess of Montrose' +p126978 +sg25270 +S'Adriaen Matham' +p126979 +sa(dp126980 +g25273 +S'engraving' +p126981 +sg25267 +g27 +sg25275 +S'unknown date\n' +p126982 +sg25268 +S'James Graham, First Marquess of Montrose' +p126983 +sg25270 +S'Paulus Pontius' +p126984 +sa(dp126985 +g25273 +S'(artist after)' +p126986 +sg25267 +g27 +sg25275 +S'\n' +p126987 +sg25268 +S'Sir John Moore' +p126988 +sg25270 +S'Artist Information (' +p126989 +sa(dp126990 +g25273 +S', unknown date' +p126991 +sg25267 +g27 +sg25275 +S'\n' +p126992 +sg25268 +S'Alexander Morus' +p126993 +sg25270 +S'Crispijn van de Passe II' +p126994 +sa(dp126995 +g25273 +S'Dutch, c. 1565 - 1637' +p126996 +sg25267 +g27 +sg25275 +S'(artist after)' +p126997 +sg25268 +S'Alexander More' +p126998 +sg25270 +S'Artist Information (' +p126999 +sa(dp127000 +g25273 +S'(artist)' +p127001 +sg25267 +g27 +sg25275 +S'\n' +p127002 +sg25268 +S"John More, Rector of Saint Andrew's, Norwich" +p127003 +sg25270 +S'Artist Information (' +p127004 +sa(dp127005 +g25273 +S'(artist)' +p127006 +sg25267 +g27 +sg25275 +S'\n' +p127007 +sg25268 +S'Sir Thomas More' +p127008 +sg25270 +S'Artist Information (' +p127009 +sa(dp127010 +g25268 +S"Initial A and a New Year's Wish" +p127011 +sg25270 +S'German 15th Century' +p127012 +sg25273 +S'Schreiber, no. 1908, State a' +p127013 +sg25275 +S'\nwoodcut, hand-colored in olive green, rose, orange, green, brown, and yellow-green' +p127014 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a63d.jpg' +p127015 +sg25267 +g27 +sa(dp127016 +g25273 +S'engraving' +p127017 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127018 +sg25268 +S'Sir Thomas More, Lord Chancellor' +p127019 +sg25270 +S'Renold Elstrack' +p127020 +sa(dp127021 +g25273 +S'engraving' +p127022 +sg25267 +g27 +sg25275 +S'1621' +p127023 +sg25268 +S'Sir Thomas More, Lord Chacellor' +p127024 +sg25270 +S'Jean Waldor' +p127025 +sa(dp127026 +g25273 +S'engraving' +p127027 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127028 +sg25268 +S'Balthasar Moretus of Antwerp' +p127029 +sg25270 +S'Cornelis Galle I' +p127030 +sa(dp127031 +g25273 +S'engraving' +p127032 +sg25267 +g27 +sg25275 +S'1611' +p127033 +sg25268 +S'Philippe de Mornay (Du Plessis-Mornay)' +p127034 +sg25270 +S'L\xc3\xa9onard Gaultier' +p127035 +sa(dp127036 +g25273 +S'engraving' +p127037 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127038 +sg25268 +S'Henry, Duc de Moutpensier' +p127039 +sg25270 +S'Thomas de Leu' +p127040 +sa(dp127041 +g25273 +S'engraving' +p127042 +sg25267 +g27 +sg25275 +S'1611' +p127043 +sg25268 +S'Vincent Muschinger' +p127044 +sg25270 +S'Aegidius Sadeler II' +p127045 +sa(dp127046 +g25273 +S'engraving' +p127047 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127048 +sg25268 +S'Napier of Merchiston, Inventor of Logarithms' +p127049 +sg25270 +S'Unknown 19th Century' +p127050 +sa(dp127051 +g25273 +S'Rosenwald Collection' +p127052 +sg25267 +g27 +sg25275 +S'\netching [reprint ?]' +p127053 +sg25268 +S'Rev. Jac. Nasmith' +p127054 +sg25270 +S'W. Tyson' +p127055 +sa(dp127056 +g25273 +S'stipple engraving' +p127057 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127058 +sg25268 +S'Sir Robert Naunton, Secretary of State for James I' +p127059 +sg25270 +S'Robert Cooper' +p127060 +sa(dp127061 +g25273 +S', unknown date' +p127062 +sg25267 +g27 +sg25275 +S'\n' +p127063 +sg25268 +S'Carolus van Utenhoven' +p127064 +sg25270 +S'Crispijn van de Passe I' +p127065 +sa(dp127066 +g25268 +S'Miracle at Seefeld' +p127067 +sg25270 +S'German 15th Century' +p127068 +sg25273 +S'Schreiber, no. 1943' +p127069 +sg25275 +S'\nwoodcut, hand-colored in red, blue, yellow, purple, brown, gray, and lavender' +p127070 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5c5.jpg' +p127071 +sg25267 +g27 +sa(dp127072 +g25268 +S'Jan Nicquet' +p127073 +sg25270 +S'Hendrick Goltzius' +p127074 +sg25273 +S', 1595' +p127075 +sg25275 +S'\n' +p127076 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce2d.jpg' +p127077 +sg25267 +g27 +sa(dp127078 +g25273 +S'engraving' +p127079 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127080 +sg25268 +S'Sir John Norris' +p127081 +sg25270 +S'Unknown 19th Century' +p127082 +sa(dp127083 +g25273 +S'engraving' +p127084 +sg25267 +g27 +sg25275 +S'published 1796' +p127085 +sg25268 +S'Henry Howard, Earl of Northampton' +p127086 +sg25270 +S'R. Clamp' +p127087 +sa(dp127088 +g25273 +S'engraving' +p127089 +sg25267 +g27 +sg25275 +S'published 1796' +p127090 +sg25268 +S'Henry Howard, Earl of Northampton' +p127091 +sg25270 +S'R. Clamp' +p127092 +sa(dp127093 +g25273 +S'stipple engraving' +p127094 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127095 +sg25268 +S'Henry Howard, Earl of Northampton' +p127096 +sg25270 +S'Unknown 19th Century' +p127097 +sa(dp127098 +g25273 +S'engraving' +p127099 +sg25267 +g27 +sg25275 +S'published 1602' +p127100 +sg25268 +S'Charles Howard, First Earl of Nottingham' +p127101 +sg25270 +S'William Rogers' +p127102 +sa(dp127103 +g25273 +S'(artist)' +p127104 +sg25267 +g27 +sg25275 +S'\n' +p127105 +sg25268 +S"Alexander Nowell, Dean of Saint Paul's" +p127106 +sg25270 +S'Artist Information (' +p127107 +sa(dp127108 +g25273 +S'engraving' +p127109 +sg25267 +g27 +sg25275 +S'1615' +p127110 +sg25268 +S"Matthias de L'Obel" +p127111 +sg25270 +S'Francis Delaram' +p127112 +sa(dp127113 +g25273 +S'engraving' +p127114 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127115 +sg25268 +S'Portrait of a Man' +p127116 +sg25270 +S'Unknown 19th Century' +p127117 +sa(dp127118 +g25273 +S'engraving' +p127119 +sg25267 +g27 +sg25275 +S'1617' +p127120 +sg25268 +S'Johan van Oldenbarneveldt' +p127121 +sg25270 +S'Willem Jacobsz Delff' +p127122 +sa(dp127123 +g25268 +S'Allegory of the Eagle and Emperor Maximilian I' +p127124 +sg25270 +S'German 15th Century' +p127125 +sg25273 +S'Schreiber, Vol. IX, no. 1944, State s' +p127126 +sg25275 +S'\nwoodcut' +p127127 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3de.jpg' +p127128 +sg25267 +g27 +sa(dp127129 +g25273 +S', unknown date' +p127130 +sg25267 +g27 +sg25275 +S'\n' +p127131 +sg25268 +S'Johan van Oldenbarnevelt' +p127132 +sg25270 +S'Crispijn van de Passe I' +p127133 +sa(dp127134 +g25273 +S'engraving' +p127135 +sg25267 +g27 +sg25275 +S'1618' +p127136 +sg25268 +S'Johan van Oldenbarneveldt' +p127137 +sg25270 +S'Willem Swanenburgh' +p127138 +sa(dp127139 +g25273 +S'engraving' +p127140 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127141 +sg25268 +S'Execution of Johan van Oldenbarneveldt' +p127142 +sg25270 +S'Unknown 19th Century' +p127143 +sa(dp127144 +g25273 +S'engraving' +p127145 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127146 +sg25268 +S'Reinier van Oldenbarneveldt' +p127147 +sg25270 +S'Unknown 19th Century' +p127148 +sa(dp127149 +g25273 +S'engraving' +p127150 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127151 +sg25268 +S'Reinier van Oldenbarneveldt' +p127152 +sg25270 +S'Unknown 19th Century' +p127153 +sa(dp127154 +g25273 +S'(artist after)' +p127155 +sg25267 +g27 +sg25275 +S'\n' +p127156 +sg25268 +S'Gaspar de Guzman, Count of Olivares and Duke of San Lucas' +p127157 +sg25270 +S'Artist Information (' +p127158 +sa(dp127159 +g25273 +S'engraving' +p127160 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127161 +sg25268 +S'James Butler, First Duke of Ormonde' +p127162 +sg25270 +S'David Loggan' +p127163 +sa(dp127164 +g25273 +S'engraving' +p127165 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127166 +sg25268 +S'Abraham Ortelius (Wortels)' +p127167 +sg25270 +S'Philip Galle' +p127168 +sa(dp127169 +g25273 +S'engraving' +p127170 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127171 +sg25268 +S'Abraham Ortelius (Wortels)' +p127172 +sg25270 +S'Philip Galle' +p127173 +sa(dp127174 +g25273 +S'engraving' +p127175 +sg25267 +g27 +sg25275 +S'in or after 1598' +p127176 +sg25268 +S'Title Page to Abraham Ortelius, Theatrum Orbis Tenarum' +p127177 +sg25270 +S'Unknown 19th Century' +p127178 +sa(dp127179 +g25268 +S'Map of the World' +p127180 +sg25270 +S'German 15th Century' +p127181 +sg25273 +S'image: 41.3 x 29.2 cm (16 1/4 x 11 1/2 in.)\r\nsheet: 38.4 x 28.8 cm (15 1/8 x 11 5/16 in.)\r\noverall (external frame dimensions): 59.7 x 44.5 cm (23 1/2 x 17 1/2 in.)' +p127182 +sg25275 +S'\nwoodcut' +p127183 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a000561d.jpg' +p127184 +sg25267 +g27 +sa(dp127185 +g25273 +S'engraving' +p127186 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127187 +sg25268 +S'Otto Henry, Count of Schwarzenberg' +p127188 +sg25270 +S'Jan Sadeler I' +p127189 +sa(dp127190 +g25273 +S'facsimile' +p127191 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127192 +sg25268 +S'Sir Thomas Overbury' +p127193 +sg25270 +S'Unknown 19th Century' +p127194 +sa(dp127195 +g25273 +S', unknown date' +p127196 +sg25267 +g27 +sg25275 +S'\n' +p127197 +sg25268 +S'Count Axel Gustafsson Oxenstiern, Chancellor of Sweden' +p127198 +sg25270 +S'Balthasar Moncornet' +p127199 +sa(dp127200 +g25273 +S'engraving' +p127201 +sg25267 +g27 +sg25275 +S'1602' +p127202 +sg25268 +S'Francis Paget, Jesuit Priest' +p127203 +sg25270 +S'Unknown 19th Century' +p127204 +sa(dp127205 +g25273 +S'engraving' +p127206 +sg25267 +g27 +sg25275 +S'1629' +p127207 +sg25268 +S'Bernard Paluden' +p127208 +sg25270 +S'Unknown 19th Century' +p127209 +sa(dp127210 +g25273 +S'engraving' +p127211 +sg25267 +g27 +sg25275 +S'1582' +p127212 +sg25268 +S'Ambrosius Parens' +p127213 +sg25270 +S'Unknown 19th Century' +p127214 +sa(dp127215 +g25273 +S'engraving' +p127216 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127217 +sg25268 +S'Ambrosius Parens' +p127218 +sg25270 +S'Unknown 19th Century' +p127219 +sa(dp127220 +g25273 +S'(artist)' +p127221 +sg25267 +g27 +sg25275 +S'\n' +p127222 +sg25268 +S'Matthew Parker, Archbishop of Canterbury' +p127223 +sg25270 +S'Artist Information (' +p127224 +sa(dp127225 +g25273 +S'engraving' +p127226 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127227 +sg25268 +S'Matthew Parker, Archbishop of Canterbury' +p127228 +sg25270 +S'Unknown 19th Century' +p127229 +sa(dp127230 +g25273 +S'engraving' +p127231 +sg25267 +g27 +sg25275 +S'published 1669' +p127232 +sg25268 +S'Robert Parsons, Jesuit Missionary' +p127233 +sg25270 +S'Jacobus Neeffs' +p127234 +sa(dp127235 +g25268 +S'A Warning Against Playing Dice' +p127236 +sg25270 +S'French 15th Century' +p127237 +sg25273 +S'Schreiber, Vol. *, no. 1972, State m' +p127238 +sg25275 +S'\nwoodcut [fragment]' +p127239 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a00082eb.jpg' +p127240 +sg25267 +g27 +sa(dp127241 +g25273 +S'engraving' +p127242 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127243 +sg25268 +S'Robert Parsons, Jesuit Missionary' +p127244 +sg25270 +S'Jean Waldor' +p127245 +sa(dp127246 +g25273 +S'engraving' +p127247 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127248 +sg25268 +S'P. Robertus Personius, Priest' +p127249 +sg25270 +S'Jean Waldor' +p127250 +sa(dp127251 +g25273 +S'engraving' +p127252 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127253 +sg25268 +S'Stephen Paschasius' +p127254 +sg25270 +S'Jaspar Isacsz' +p127255 +sa(dp127256 +g25273 +S'engraving' +p127257 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127258 +sg25268 +S'Magdalen de Pass' +p127259 +sg25270 +S'Unknown 19th Century' +p127260 +sa(dp127261 +g25268 +S'Gabrielle Carola Patina' +p127262 +sg25270 +S'Susanne Maria von Sandrart' +p127263 +sg25273 +S'engraving' +p127264 +sg25275 +S'c. 1682' +p127265 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b289.jpg' +p127266 +sg25267 +g27 +sa(dp127267 +g25273 +S'engraving' +p127268 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127269 +sg25268 +S'George Paulus' +p127270 +sg25270 +S'Bartholomaus Kilian' +p127271 +sa(dp127272 +g25273 +S'(artist after)' +p127273 +sg25267 +g27 +sg25275 +S'\n' +p127274 +sg25268 +S'Mary Sidney, Countess of Pembroke' +p127275 +sg25270 +S'Artist Information (' +p127276 +sa(dp127277 +g25273 +S', 1618' +p127278 +sg25267 +g27 +sg25275 +S'\n' +p127279 +sg25268 +S'Mary Sidney, Countess of Pembroke' +p127280 +sg25270 +S'Simon van de Passe' +p127281 +sa(dp127282 +g25273 +S', 1618' +p127283 +sg25267 +g27 +sg25275 +S'\n' +p127284 +sg25268 +S'Mary Sidney, Countess of Pembroke' +p127285 +sg25270 +S'Simon van de Passe' +p127286 +sa(dp127287 +g25273 +S'engraving' +p127288 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127289 +sg25268 +S'Mary Sidney, Countess of Pembroke' +p127290 +sg25270 +S'Jean de Courbes' +p127291 +sa(dp127292 +g25268 +S'Bookplate of Wilhelm von Zell' +p127293 +sg25270 +S'German 15th Century' +p127294 +sg25273 +S'Schreiber, no. 2037' +p127295 +sg25275 +S'\nwoodcut' +p127296 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5c3.jpg' +p127297 +sg25267 +g27 +sa(dp127298 +g25273 +S'(artist)' +p127299 +sg25267 +g27 +sg25275 +S'\n' +p127300 +sg25268 +S'William Herbert, First Earl of Pembroke' +p127301 +sg25270 +S'Artist Information (' +p127302 +sa(dp127303 +g25273 +S'(artist)' +p127304 +sg25267 +g27 +sg25275 +S'\n' +p127305 +sg25268 +S'Henry Herbert, Second Earl of Pembroke' +p127306 +sg25270 +S'Artist Information (' +p127307 +sa(dp127308 +g25273 +S'(artist)' +p127309 +sg25267 +g27 +sg25275 +S'\n' +p127310 +sg25268 +S'William Herbert, Third Earl of Pembroke' +p127311 +sg25270 +S'Artist Information (' +p127312 +sa(dp127313 +g25273 +S'(artist after)' +p127314 +sg25267 +g27 +sg25275 +S'\n' +p127315 +sg25268 +S'William, Earl of Pembroke' +p127316 +sg25270 +S'Artist Information (' +p127317 +sa(dp127318 +g25273 +S'facsimile' +p127319 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127320 +sg25268 +S'Thomas Percy' +p127321 +sg25270 +S'Adam' +p127322 +sa(dp127323 +g25273 +S'facsimile' +p127324 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127325 +sg25268 +S'Thomas Percy' +p127326 +sg25270 +S'Adam' +p127327 +sa(dp127328 +g25273 +S'facsimile' +p127329 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127330 +sg25268 +S'Thomas Percy' +p127331 +sg25270 +S'Unknown 19th Century' +p127332 +sa(dp127333 +g25273 +S'facsimile' +p127334 +sg25267 +g27 +sg25275 +S'1605' +p127335 +sg25268 +S'Thomas Percy' +p127336 +sg25270 +S'Unknown 19th Century' +p127337 +sa(dp127338 +g25273 +S'facsimile' +p127339 +sg25267 +g27 +sg25275 +S'1605' +p127340 +sg25268 +S'Thomas Percy' +p127341 +sg25270 +S'Unknown 19th Century' +p127342 +sa(dp127343 +g25273 +S'facsimile' +p127344 +sg25267 +g27 +sg25275 +S'1605' +p127345 +sg25268 +S'Thomas Percy' +p127346 +sg25270 +S'Unknown 19th Century' +p127347 +sa(dp127348 +g25268 +S'Bookplate of Hilprand Brandenburg of Bibrach' +p127349 +sg25270 +S'German 15th Century' +p127350 +sg25273 +S'Schreiber, no. 2038' +p127351 +sg25275 +S'\nwoodcut, hand-colored in green, rose, light blue, red, and yellow' +p127352 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5bd.jpg' +p127353 +sg25267 +g27 +sa(dp127354 +g25273 +S'engraving' +p127355 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127356 +sg25268 +S'Thomas Percy, Gunpowder Plot Conspirator' +p127357 +sg25270 +S'Unknown 19th Century' +p127358 +sa(dp127359 +g25273 +S'(artist)' +p127360 +sg25267 +g27 +sg25275 +S'\n' +p127361 +sg25268 +S'William Perkins, Puritan Divine' +p127362 +sg25270 +S'Artist Information (' +p127363 +sa(dp127364 +g25273 +S'(artist after)' +p127365 +sg25267 +g27 +sg25275 +S'\n' +p127366 +sg25268 +S'Sir John Perrot, Deputy of Ireland' +p127367 +sg25270 +S'Artist Information (' +p127368 +sa(dp127369 +g25273 +S'engraving' +p127370 +sg25267 +g27 +sg25275 +S'1618' +p127371 +sg25268 +S'Petavius (?)' +p127372 +sg25270 +S'Isaac Briot' +p127373 +sa(dp127374 +g25273 +S'engraving' +p127375 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127376 +sg25268 +S'Petrus Henriquez' +p127377 +sg25270 +S'Unknown 19th Century' +p127378 +sa(dp127379 +g25273 +S'engraving' +p127380 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127381 +sg25268 +S'Philibert, Prince of Orange' +p127382 +sg25270 +S'Unknown 19th Century' +p127383 +sa(dp127384 +g25273 +S', 1598' +p127385 +sg25267 +g27 +sg25275 +S'\n' +p127386 +sg25268 +S'Philip II, King of Spain' +p127387 +sg25270 +S'Crispijn van de Passe I' +p127388 +sa(dp127389 +g25268 +S'Philip II, King of Spain' +p127390 +sg25270 +S'Christoffel van Sichem I' +p127391 +sg25273 +S'engraving' +p127392 +sg25275 +S'unknown date\n' +p127393 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3bd.jpg' +p127394 +sg25267 +g27 +sa(dp127395 +g25273 +S'engraving' +p127396 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127397 +sg25268 +S'Philip II, King of Spain' +p127398 +sg25270 +S'Hieronymus Wierix' +p127399 +sa(dp127400 +g25273 +S'engraving' +p127401 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127402 +sg25268 +S'Philip III, King of Spain' +p127403 +sg25270 +S'Unknown 19th Century' +p127404 +sa(dp127405 +g25268 +S'Bookplate of Hilprand Brandenburg of Bibrach' +p127406 +sg25270 +S'German 15th Century' +p127407 +sg25273 +S'Schreiber, no. 2038' +p127408 +sg25275 +S'\nwoodcut, hand-colored in green, rose, light blue, red, and yellow' +p127409 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5be.jpg' +p127410 +sg25267 +g27 +sa(dp127411 +g25273 +S'engraving' +p127412 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127413 +sg25268 +S'Philip III, King of Spain' +p127414 +sg25270 +S'Unknown 19th Century' +p127415 +sa(dp127416 +g25273 +S'engraving' +p127417 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127418 +sg25268 +S'Philip III, King of Spain' +p127419 +sg25270 +S'Lucas Kilian' +p127420 +sa(dp127421 +g25273 +S'engraving' +p127422 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127423 +sg25268 +S'Philip III, King of Spain' +p127424 +sg25270 +S'Lucas Kilian' +p127425 +sa(dp127426 +g25273 +S'engraving' +p127427 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127428 +sg25268 +S'Philip III, King of Spain' +p127429 +sg25270 +S'Hendrik Hondius I' +p127430 +sa(dp127431 +g25273 +S'engraving' +p127432 +sg25267 +g27 +sg25275 +S'1601' +p127433 +sg25268 +S'Philip III, King of Spain' +p127434 +sg25270 +S'Paul de la Houve' +p127435 +sa(dp127436 +g25273 +S'engraving' +p127437 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127438 +sg25268 +S'Philip IV of Spain' +p127439 +sg25270 +S'Unknown 19th Century' +p127440 +sa(dp127441 +g25273 +S'engraving' +p127442 +sg25267 +g27 +sg25275 +S'1621' +p127443 +sg25268 +S'Philip IV, King of Spain' +p127444 +sg25270 +S'Lucas Kilian' +p127445 +sa(dp127446 +g25273 +S', 1611' +p127447 +sg25267 +g27 +sg25275 +S'\n' +p127448 +sg25268 +S'Philip of Cleves and Julich' +p127449 +sg25270 +S'Crispijn van de Passe I' +p127450 +sa(dp127451 +g25273 +S'engraving' +p127452 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127453 +sg25268 +S"Philip, Duc d'Orl\xc3\xa9ans, Brother of Louis XIV" +p127454 +sg25270 +S'Unknown 19th Century' +p127455 +sa(dp127456 +g25273 +S'engraving' +p127457 +sg25267 +g27 +sg25275 +S'probably 1612' +p127458 +sg25268 +S'Philip Louis, Count Palatine' +p127459 +sg25270 +S'Wolfgang Kilian' +p127460 +sa(dp127461 +g25268 +S'Gerson as Pilgrim with Town in Background' +p127462 +sg25270 +S'German 15th Century' +p127463 +sg25273 +S'Schreiber Manuel, no. 4101' +p127464 +sg25275 +S'\nwoodcut' +p127465 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5a6.jpg' +p127466 +sg25267 +g27 +sa(dp127467 +g25273 +S'engraving' +p127468 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127469 +sg25268 +S'Philip William, Prince of Nassau' +p127470 +sg25270 +S'Unknown 19th Century' +p127471 +sa(dp127472 +g25273 +S'engraving' +p127473 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127474 +sg25268 +S'Philip William, Prince of Nassau' +p127475 +sg25270 +S'Unknown 19th Century' +p127476 +sa(dp127477 +g25273 +S'engraving' +p127478 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127479 +sg25268 +S'Philip William, Prince of Orange' +p127480 +sg25270 +S'Unknown 19th Century' +p127481 +sa(dp127482 +g25273 +S'engraving' +p127483 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127484 +sg25268 +S'Philip William, Prince of Orange' +p127485 +sg25270 +S'Johan Wierix' +p127486 +sa(dp127487 +g25273 +S'engraving' +p127488 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127489 +sg25268 +S'Johannes Pistorius, Divine' +p127490 +sg25270 +S'Lucas Kilian' +p127491 +sa(dp127492 +g25273 +S', 1598' +p127493 +sg25267 +g27 +sg25275 +S'\n' +p127494 +sg25268 +S'Francisco Pizarro' +p127495 +sg25270 +S'Crispijn van de Passe I' +p127496 +sa(dp127497 +g25273 +S', 1616' +p127498 +sg25267 +g27 +sg25275 +S'\n' +p127499 +sg25268 +S'Poca Hontas, Daughter of the Emperor of Virgina' +p127500 +sg25270 +S'Simon van de Passe' +p127501 +sa(dp127502 +g25273 +S'Dutch, c. 1565 - 1637' +p127503 +sg25267 +g27 +sg25275 +S'(artist after)' +p127504 +sg25268 +S'Matoaka Als Rebecka (Pocohontas)' +p127505 +sg25270 +S'Artist Information (' +p127506 +sa(dp127507 +g25273 +S'(artist after)' +p127508 +sg25267 +g27 +sg25275 +S'\n' +p127509 +sg25268 +S'Cardinal Reginald Pole, Archbishop of Canterbury' +p127510 +sg25270 +S'Artist Information (' +p127511 +sa(dp127512 +g25268 +S'Gerson as Pilgrim' +p127513 +sg25270 +S'German 15th Century' +p127514 +sg25273 +S'Schreiber Manuel, no. 4102' +p127515 +sg25275 +S'\nwoodcut, touched with red' +p127516 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5a1.jpg' +p127517 +sg25267 +g27 +sa(dp127518 +g25273 +S'(artist after)' +p127519 +sg25267 +g27 +sg25275 +S'\n' +p127520 +sg25268 +S'Johannes Polyander, Doctor of Divinity and Teacher' +p127521 +sg25270 +S'Artist Information (' +p127522 +sa(dp127523 +g25273 +S'engraving' +p127524 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127525 +sg25268 +S'Johannes van den Popeliere' +p127526 +sg25270 +S'Sebastian Furck' +p127527 +sa(dp127528 +g25273 +S'engraving' +p127529 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127530 +sg25268 +S'Eduardus Poppius, Preacher' +p127531 +sg25270 +S'Unknown 19th Century' +p127532 +sa(dp127533 +g25273 +S'engraving' +p127534 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127535 +sg25268 +S'Friar Martinus de Porras' +p127536 +sg25270 +S'Unknown 19th Century' +p127537 +sa(dp127538 +g25273 +S'stipple' +p127539 +sg25267 +g27 +sg25275 +S'published 1796' +p127540 +sg25268 +S'Sir Amias Poulett' +p127541 +sg25270 +S'R. Clamp' +p127542 +sa(dp127543 +g25273 +S'(artist)' +p127544 +sg25267 +g27 +sg25275 +S'\n' +p127545 +sg25268 +S'John Rainolds, President of Corpus College Osford, and Dean of Lincoln' +p127546 +sg25270 +S'Artist Information (' +p127547 +sa(dp127548 +g25273 +S'facsimile' +p127549 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127550 +sg25268 +S'Portraits of Sir Walter Raleigh, Lord Bacon, Algernon Sidney, and Sir Matthew Hale' +p127551 +sg25270 +S'Thomas Woolnoth' +p127552 +sa(dp127553 +g25273 +S'engraving' +p127554 +sg25267 +g27 +sg25275 +S'1636' +p127555 +sg25268 +S'Sir James Ramsay' +p127556 +sg25270 +S'Sebastian Furck' +p127557 +sa(dp127558 +g25273 +S'engraving' +p127559 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127560 +sg25268 +S'Francois Ravaillac' +p127561 +sg25270 +S'Unknown 19th Century' +p127562 +sa(dp127563 +g25268 +S'The Crucifixion with Saint Mary Magdalene' +p127564 +sg25270 +S'Michael Wolgemut' +p127565 +sg25273 +S', c. 1490' +p127566 +sg25275 +S'\n' +p127567 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a638.jpg' +p127568 +sg25267 +g27 +sa(dp127569 +g25273 +S'engraving' +p127570 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127571 +sg25268 +S'Francois Ravaillac' +p127572 +sg25270 +S'Unknown 19th Century' +p127573 +sa(dp127574 +g25273 +S'engraving' +p127575 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127576 +sg25268 +S'Dorothea Rawlins' +p127577 +sg25270 +S'Anthony van der Does' +p127578 +sa(dp127579 +g25273 +S'engraving' +p127580 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127581 +sg25268 +S'Bernardin Realinus, Jesuit Priest' +p127582 +sg25270 +S'Hieronymus Wierix' +p127583 +sa(dp127584 +g25273 +S'engraving' +p127585 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127586 +sg25268 +S'Quirinus Rechlinger' +p127587 +sg25270 +S'Lucas Kilian' +p127588 +sa(dp127589 +g25273 +S'engraving' +p127590 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127591 +sg25268 +S'Everhard Reidan, Friend of William the Silent' +p127592 +sg25270 +S'Jan Muller' +p127593 +sa(dp127594 +g25273 +S'engraving' +p127595 +sg25267 +g27 +sg25275 +S'1623' +p127596 +sg25268 +S'Georgius Remus' +p127597 +sg25270 +S'Lucas Kilian' +p127598 +sa(dp127599 +g25273 +S'engraving' +p127600 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127601 +sg25268 +S'Don Luis de Requesens' +p127602 +sg25270 +S'Unknown 19th Century' +p127603 +sa(dp127604 +g25273 +S'engraving' +p127605 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127606 +sg25268 +S'Nicolas Reusner' +p127607 +sg25270 +S'Unknown 19th Century' +p127608 +sa(dp127609 +g25273 +S'engraving' +p127610 +sg25267 +g27 +sg25275 +S'published 1618' +p127611 +sg25268 +S'Richard I of England' +p127612 +sg25270 +S'Renold Elstrack' +p127613 +sa(dp127614 +g25273 +S'engraving' +p127615 +sg25267 +g27 +sg25275 +S'published 1618' +p127616 +sg25268 +S'Richard II of England' +p127617 +sg25270 +S'Renold Elstrack' +p127618 +sa(dp127619 +g25268 +S'Christ on the Cross' +p127620 +sg25270 +S'German 15th Century' +p127621 +sg25273 +S'Schreiber Manuel, no. 4740' +p127622 +sg25275 +S'\nhand-colored woodcut on vellum' +p127623 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a65e.jpg' +p127624 +sg25267 +g27 +sa(dp127625 +g25273 +S'engraving' +p127626 +sg25267 +g27 +sg25275 +S'published 1618' +p127627 +sg25268 +S'Richard II of England' +p127628 +sg25270 +S'Renold Elstrack' +p127629 +sa(dp127630 +g25273 +S'engraving' +p127631 +sg25267 +g27 +sg25275 +S'published 1618' +p127632 +sg25268 +S'Richard III of England' +p127633 +sg25270 +S'Renold Elstrack' +p127634 +sa(dp127635 +g25273 +S'engraving' +p127636 +sg25267 +g27 +sg25275 +S'published 1618' +p127637 +sg25268 +S'Richard III of England' +p127638 +sg25270 +S'Renold Elstrack' +p127639 +sa(dp127640 +g25273 +S'engraving' +p127641 +sg25267 +g27 +sg25275 +S'1634' +p127642 +sg25268 +S'Philps van dorp Ridder, Dutch Admiral' +p127643 +sg25270 +S'Unknown 19th Century' +p127644 +sa(dp127645 +g25273 +S'(artist)' +p127646 +sg25267 +g27 +sg25275 +S'\n' +p127647 +sg25268 +S'Nicholas Ridley, Bishop of London, Protestant Martyr' +p127648 +sg25270 +S'Artist Information (' +p127649 +sa(dp127650 +g25273 +S', unknown date' +p127651 +sg25267 +g27 +sg25275 +S'\n' +p127652 +sg25268 +S'Andreas Rivetus' +p127653 +sg25270 +S'Simon van de Passe' +p127654 +sa(dp127655 +g25273 +S'engraving' +p127656 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127657 +sg25268 +S'Andreas Rivetus, Doctor of Divinity and Professor' +p127658 +sg25270 +S'Hendrik Hondius I' +p127659 +sa(dp127660 +g25273 +S'engraving' +p127661 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127662 +sg25268 +S'Saint Robert, Founder and First Abbot of the Cistercian Monks' +p127663 +sg25270 +S'Johan Wierix' +p127664 +sa(dp127665 +g25273 +S'(artist after)' +p127666 +sg25267 +g27 +sg25275 +S'\n' +p127667 +sg25268 +S'Nicholas Roccoxius' +p127668 +sg25270 +S'Artist Information (' +p127669 +sa(dp127670 +g25268 +S'Madonna of the Hernleberg' +p127671 +sg25270 +S'German 17th Century' +p127672 +sg25273 +S'Rosenwald Collection' +p127673 +sg25275 +S'\nwoodcut in orange' +p127674 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2bd.jpg' +p127675 +sg25267 +g27 +sa(dp127676 +g25273 +S'engraving' +p127677 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127678 +sg25268 +S'The Venerable Alphonsus Rodriguez' +p127679 +sg25270 +S'Antonie Wierix' +p127680 +sa(dp127681 +g25273 +S'(artist)' +p127682 +sg25267 +g27 +sg25275 +S'\n' +p127683 +sg25268 +S"John Rogers, Prebendary of Saint Paul's, Protestant Martyr" +p127684 +sg25270 +S'Artist Information (' +p127685 +sa(dp127686 +g25273 +S'engraving' +p127687 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127688 +sg25268 +S'Rudolph II, Roman Emperor' +p127689 +sg25270 +S'Unknown 19th Century' +p127690 +sa(dp127691 +g25273 +S'engraving' +p127692 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127693 +sg25268 +S'Rudolph II, Roman Emperor' +p127694 +sg25270 +S'Giacomo Franco' +p127695 +sa(dp127696 +g25273 +S'engraving' +p127697 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127698 +sg25268 +S'Rudolph II in Chariot Drawn by Lion and Eagle' +p127699 +sg25270 +S'Unknown 19th Century' +p127700 +sa(dp127701 +g25273 +S', 1596' +p127702 +sg25267 +g27 +sg25275 +S'\n' +p127703 +sg25268 +S'Rudolph II, Roman Emperor' +p127704 +sg25270 +S'Crispijn van de Passe I' +p127705 +sa(dp127706 +g25273 +S'engraving' +p127707 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127708 +sg25268 +S'Emperor Rudolph II' +p127709 +sg25270 +S'Aegidius Sadeler II' +p127710 +sa(dp127711 +g25273 +S'engraving' +p127712 +sg25267 +g27 +sg25275 +S'1603' +p127713 +sg25268 +S'Emperor Rudolph II' +p127714 +sg25270 +S'Aegidius Sadeler II' +p127715 +sa(dp127716 +g25273 +S'engraving' +p127717 +sg25267 +g27 +sg25275 +S'1609' +p127718 +sg25268 +S'Emperor Rudolph II' +p127719 +sg25270 +S'Aegidius Sadeler II' +p127720 +sa(dp127721 +g25273 +S'(artist after)' +p127722 +sg25267 +g27 +sg25275 +S'\n' +p127723 +sg25268 +S'Emperor Rudolph II on Rearing Horse' +p127724 +sg25270 +S'Artist Information (' +p127725 +sa(dp127726 +g25268 +S'Madonna of the Hernleberg' +p127727 +sg25270 +S'German 16th Century' +p127728 +sg25273 +S'Rosenwald Collection' +p127729 +sg25275 +S'\nwoodcut, hand-colored' +p127730 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a79e.jpg' +p127731 +sg25267 +g27 +sa(dp127732 +g25273 +S'(artist after)' +p127733 +sg25267 +g27 +sg25275 +S'\n' +p127734 +sg25268 +S'Sir Benjamin Rudyerd, Politician and Poet' +p127735 +sg25270 +S'Artist Information (' +p127736 +sa(dp127737 +g25273 +S'engraving' +p127738 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127739 +sg25268 +S'Lady Mary Ruthven, Wife of A. Van Dyck' +p127740 +sg25270 +S'Nicolas de Larmessin IV' +p127741 +sa(dp127742 +g25273 +S'engraving' +p127743 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127744 +sg25268 +S'Cardinal Jacopo Sadoleto' +p127745 +sg25270 +S'Unknown 19th Century' +p127746 +sa(dp127747 +g25273 +S'engraving' +p127748 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127749 +sg25268 +S'Cardinal Jacopo Sadoleto' +p127750 +sg25270 +S'Unknown 19th Century' +p127751 +sa(dp127752 +g25273 +S'(artist)' +p127753 +sg25267 +g27 +sg25275 +S'\n' +p127754 +sg25268 +S'Robert Cecil, First Earl of Salisbury' +p127755 +sg25270 +S'Artist Information (' +p127756 +sa(dp127757 +g25273 +S'(artist)' +p127758 +sg25267 +g27 +sg25275 +S'\n' +p127759 +sg25268 +S'Robert Cecil, First Earl of Salisbury' +p127760 +sg25270 +S'Artist Information (' +p127761 +sa(dp127762 +g25273 +S'(artist after)' +p127763 +sg25267 +g27 +sg25275 +S'\n' +p127764 +sg25268 +S'Edward Montagu, First Earl of Sandwich' +p127765 +sg25270 +S'Artist Information (' +p127766 +sa(dp127767 +g25273 +S'(artist)' +p127768 +sg25267 +g27 +sg25275 +S'\n' +p127769 +sg25268 +S'Edwin Sandys, Archbishop of York' +p127770 +sg25270 +S'Artist Information (' +p127771 +sa(dp127772 +g25273 +S'engraving' +p127773 +sg25267 +g27 +sg25275 +S'1565' +p127774 +sg25268 +S'Erasmus Sarcerius' +p127775 +sg25270 +S'Unknown 19th Century' +p127776 +sa(dp127777 +g25273 +S'(artist)' +p127778 +sg25267 +g27 +sg25275 +S'\n' +p127779 +sg25268 +S'Laurence Saunders, Prebendary of York, Protestant Martyr' +p127780 +sg25270 +S'Artist Information (' +p127781 +sa(dp127782 +g25268 +S'Madonna of Humility' +p127783 +sg25270 +S'Sassetta' +p127784 +sg25273 +S'tempera (?) on panel' +p127785 +sg25275 +S'c. 1435/1440' +p127786 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000821.jpg' +p127787 +sg25267 +g27 +sa(dp127788 +g25268 +S'Title Page for Callot\'s "The Small Miseries of War"' +p127789 +sg25270 +S'Abraham Bosse' +p127790 +sg25273 +S'etching' +p127791 +sg25275 +S'1636' +p127792 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087e3.jpg' +p127793 +sg25267 +g27 +sa(dp127794 +g25273 +S'engraving' +p127795 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127796 +sg25268 +S'Savoy' +p127797 +sg25270 +S'Unknown 19th Century' +p127798 +sa(dp127799 +g25268 +S'Josephus Scaliger' +p127800 +sg25270 +S'Hendrick Goltzius' +p127801 +sg25273 +S', 1592' +p127802 +sg25275 +S'\n' +p127803 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfc1.jpg' +p127804 +sg25267 +g27 +sa(dp127805 +g25273 +S'engraving' +p127806 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127807 +sg25268 +S'Julius Caesar Scaliger' +p127808 +sg25270 +S'Unknown 19th Century' +p127809 +sa(dp127810 +g25273 +S'Rosenwald Collection' +p127811 +sg25267 +g27 +sg25275 +S'\nengraving' +p127812 +sg25268 +S'Daniel Schnabel' +p127813 +sg25270 +S'J. Sandrart' +p127814 +sa(dp127815 +g25273 +S'engraving' +p127816 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127817 +sg25268 +S'Anna Maria van Schurman' +p127818 +sg25270 +S'Unknown 19th Century' +p127819 +sa(dp127820 +g25273 +S'engraving' +p127821 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127822 +sg25268 +S'Anna Maria van Schurman' +p127823 +sg25270 +S'Unknown 19th Century' +p127824 +sa(dp127825 +g25273 +S'engraving' +p127826 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127827 +sg25268 +S'Anna Maria van Schurman' +p127828 +sg25270 +S'Unknown 19th Century' +p127829 +sa(dp127830 +g25273 +S'engraving' +p127831 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127832 +sg25268 +S'Anna Maria van Schurman' +p127833 +sg25270 +S'Unknown 19th Century' +p127834 +sa(dp127835 +g25273 +S'engraving' +p127836 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127837 +sg25268 +S'Anna Maria van Schurman' +p127838 +sg25270 +S'Unknown 19th Century' +p127839 +sa(dp127840 +g25273 +S'engraving' +p127841 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127842 +sg25268 +S'Anna Maria van Schurman' +p127843 +sg25270 +S'Unknown 19th Century' +p127844 +sa(dp127845 +g25268 +S'Christ as Salvator Mundi' +p127846 +sg25270 +S'German 15th Century' +p127847 +sg25273 +S'Schreiber, no. 833' +p127848 +sg25275 +S'\nwoodcut, hand-colored in yellow and red' +p127849 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a64e.jpg' +p127850 +sg25267 +g27 +sa(dp127851 +g25273 +S'engraving' +p127852 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127853 +sg25268 +S'Christopher Schwaiger' +p127854 +sg25270 +S'Lucas Kilian' +p127855 +sa(dp127856 +g25273 +S'engraving' +p127857 +sg25267 +g27 +sg25275 +S'1620' +p127858 +sg25268 +S'Gaspar Scioppi' +p127859 +sg25270 +S'Unknown 19th Century' +p127860 +sa(dp127861 +g25273 +S'engraving' +p127862 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127863 +sg25268 +S'Andrew Scott, Jesuit Missionary' +p127864 +sg25270 +S'Theodor Galle' +p127865 +sa(dp127866 +g25273 +S'engraving' +p127867 +sg25267 +g27 +sg25275 +S'published 1650' +p127868 +sg25268 +S'Thomas Scott, Geographer and Theologian' +p127869 +sg25270 +S'Unknown 19th Century' +p127870 +sa(dp127871 +g25273 +S'engraving' +p127872 +sg25267 +g27 +sg25275 +S'published 1650' +p127873 +sg25268 +S'Thomas Scott, Geographer and Theologian' +p127874 +sg25270 +S'Unknown 19th Century' +p127875 +sa(dp127876 +g25273 +S'engraving' +p127877 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127878 +sg25268 +S'Petrus Scriverius' +p127879 +sg25270 +S'Unknown 19th Century' +p127880 +sa(dp127881 +g25273 +S'(artist after)' +p127882 +sg25267 +g27 +sg25275 +S'\n' +p127883 +sg25268 +S'Peter Scriverius, Dutch Historian' +p127884 +sg25270 +S'Artist Information (' +p127885 +sa(dp127886 +g25273 +S', unknown date' +p127887 +sg25267 +g27 +sg25275 +S'\n' +p127888 +sg25268 +S'Sebastian, King of Portugal' +p127889 +sg25270 +S'Hieronymus Cock' +p127890 +sa(dp127891 +g25273 +S', unknown date' +p127892 +sg25267 +g27 +sg25275 +S'\n' +p127893 +sg25268 +S'Sebastian, King of Portugal' +p127894 +sg25270 +S'Hieronymus Cock' +p127895 +sa(dp127896 +g25268 +S'Daniel Segers, Jesuit Priest' +p127897 +sg25270 +S'Artist Information (' +p127898 +sg25273 +S'(artist after)' +p127899 +sg25275 +S'\n' +p127900 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f24.jpg' +p127901 +sg25267 +g27 +sa(dp127902 +g25268 +S'Franciscan, Pelbartus of Temesvar, in a Garden' +p127903 +sg25270 +S'German 15th Century' +p127904 +sg25273 +S'sheet: 24.5 x 17.3 cm (9 5/8 x 6 13/16 in.)' +p127905 +sg25275 +S'\nwoodcut' +p127906 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3dd.jpg' +p127907 +sg25267 +g27 +sa(dp127908 +g25273 +S'(artist after)' +p127909 +sg25267 +g27 +sg25275 +S'\n' +p127910 +sg25268 +S'John Selden, Jurist and Antiquary' +p127911 +sg25270 +S'Artist Information (' +p127912 +sa(dp127913 +g25273 +S'(artist)' +p127914 +sg25267 +g27 +sg25275 +S'\n' +p127915 +sg25268 +S'John Selden, Jurist and Antiquary' +p127916 +sg25270 +S'Artist Information (' +p127917 +sa(dp127918 +g25273 +S'(artist after)' +p127919 +sg25267 +g27 +sg25275 +S'\n' +p127920 +sg25268 +S'John Selden, Jurist and Antiquary' +p127921 +sg25270 +S'Artist Information (' +p127922 +sa(dp127923 +g25273 +S'(artist after)' +p127924 +sg25267 +g27 +sg25275 +S'\n' +p127925 +sg25268 +S'John Selden, Jurist and Antiquary' +p127926 +sg25270 +S'Artist Information (' +p127927 +sa(dp127928 +g25273 +S'(artist after)' +p127929 +sg25267 +g27 +sg25275 +S'\n' +p127930 +sg25268 +S'John Selden, Esquire, Jurist and Antiquary' +p127931 +sg25270 +S'Artist Information (' +p127932 +sa(dp127933 +g25273 +S'Rosenwald Collection' +p127934 +sg25267 +g27 +sg25275 +S'\nengraving' +p127935 +sg25268 +S'John Selden' +p127936 +sg25270 +S'W. J. Alais' +p127937 +sa(dp127938 +g25273 +S'stipple engraving' +p127939 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127940 +sg25268 +S'John Selden, Jurist and Antiquary' +p127941 +sg25270 +S'Unknown 19th Century' +p127942 +sa(dp127943 +g25273 +S'engraving' +p127944 +sg25267 +g27 +sg25275 +S'1644' +p127945 +sg25268 +S'John Selden, Esq., Jurist and Antiquary' +p127946 +sg25270 +S'Unknown 19th Century' +p127947 +sa(dp127948 +g25273 +S'engraving' +p127949 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127950 +sg25268 +S'Ludovicus Septalius, Patricius Mediolanensis' +p127951 +sg25270 +S'Raphael Sadeler I' +p127952 +sa(dp127953 +g25273 +S'engraving' +p127954 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127955 +sg25268 +S'Shakespeare' +p127956 +sg25270 +S'William Walker' +p127957 +sa(dp127958 +g25268 +S'Bishop of Augsburg with Three Coats of Arms' +p127959 +sg25270 +S'German 15th Century' +p127960 +sg25273 +S'Schreiber, no. 2025' +p127961 +sg25275 +S'\nhand-colored woodcut' +p127962 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5c2.jpg' +p127963 +sg25267 +g27 +sa(dp127964 +g25273 +S'engraving' +p127965 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127966 +sg25268 +S'Shakespeare Monument in Church at Stratford-on-Avon' +p127967 +sg25270 +S'George Vertue' +p127968 +sa(dp127969 +g25273 +S'(artist after)' +p127970 +sg25267 +g27 +sg25275 +S'\n' +p127971 +sg25268 +S'Shakespeare Monument in Church at Stratford-on-Avon' +p127972 +sg25270 +S'Artist Information (' +p127973 +sa(dp127974 +g25273 +S'(artist after)' +p127975 +sg25267 +g27 +sg25275 +S'\n' +p127976 +sg25268 +S'Shakespeare Monument in Church at Stratford-on-Avon' +p127977 +sg25270 +S'Artist Information (' +p127978 +sa(dp127979 +g25273 +S'engraving' +p127980 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127981 +sg25268 +S'William Shakespeare' +p127982 +sg25270 +S'Martin Droeshout' +p127983 +sa(dp127984 +g25273 +S'engraving' +p127985 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127986 +sg25268 +S'Sir Anthony Shirley' +p127987 +sg25270 +S'Aegidius Sadeler II' +p127988 +sa(dp127989 +g25273 +S'engraving' +p127990 +sg25267 +g27 +sg25275 +S'published 1602' +p127991 +sg25268 +S'Sir Anthony Shirley, Traveler and Ambassador to Persia' +p127992 +sg25270 +S'Dominicus Custos' +p127993 +sa(dp127994 +g25273 +S'engraving' +p127995 +sg25267 +g27 +sg25275 +S'unknown date\n' +p127996 +sg25268 +S'Sir Anthony Shirley, Traveler and Ambassador to Persia' +p127997 +sg25270 +S'Unknown 19th Century' +p127998 +sa(dp127999 +g25273 +S'engraving' +p128000 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128001 +sg25268 +S'Sir Robert Shirley' +p128002 +sg25270 +S'Matthaus Greuter' +p128003 +sa(dp128004 +g25273 +S'facsimile' +p128005 +sg25267 +g27 +sg25275 +S'1789' +p128006 +sg25268 +S'Robert Shirley' +p128007 +sg25270 +S'Unknown 19th Century' +p128008 +sa(dp128009 +g25273 +S'engraving' +p128010 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128011 +sg25268 +S'Sir Robert Shirley, With the Shah of Persian and the Papal Legat' +p128012 +sg25270 +S'Unknown 19th Century' +p128013 +sa(dp128014 +g25268 +S'Friedrich Count of Schaumberg - Bishop of Salzburg' +p128015 +sg25270 +S'German 15th Century' +p128016 +sg25273 +S'Schreiber Manuel, no. 4755' +p128017 +sg25275 +S'\nhand-colored woodcut' +p128018 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a65d.jpg' +p128019 +sg25267 +g27 +sa(dp128020 +g25273 +S', unknown date' +p128021 +sg25267 +g27 +sg25275 +S'\n' +p128022 +sg25268 +S'Jane Shore' +p128023 +sg25270 +S'Francesco Bartolozzi' +p128024 +sa(dp128025 +g25273 +S'(artist)' +p128026 +sg25267 +g27 +sg25275 +S'\n' +p128027 +sg25268 +S'Sir Henry Sidney, Lord Deputy of Ireland' +p128028 +sg25270 +S'Artist Information (' +p128029 +sa(dp128030 +g25273 +S'(artist)' +p128031 +sg25267 +g27 +sg25275 +S'\n' +p128032 +sg25268 +S'Sir Henry Sidney, Lord Deputy of Ireland' +p128033 +sg25270 +S'Artist Information (' +p128034 +sa(dp128035 +g25273 +S'engraving' +p128036 +sg25267 +g27 +sg25275 +S'published 1625' +p128037 +sg25268 +S'Sir Philip Sidney, Soldier and Poet' +p128038 +sg25270 +S'Jean de Courbes' +p128039 +sa(dp128040 +g25273 +S'(artist)' +p128041 +sg25267 +g27 +sg25275 +S'\n' +p128042 +sg25268 +S'Sir Philip Sidney, Soldier and Poet' +p128043 +sg25270 +S'Artist Information (' +p128044 +sa(dp128045 +g25273 +S'(artist)' +p128046 +sg25267 +g27 +sg25275 +S'\n' +p128047 +sg25268 +S'Sir Philip Sidney, Soldier and Poet' +p128048 +sg25270 +S'Artist Information (' +p128049 +sa(dp128050 +g25273 +S'(artist after)' +p128051 +sg25267 +g27 +sg25275 +S'\n' +p128052 +sg25268 +S'Sir Philip Sidney, Soldier and Poet' +p128053 +sg25270 +S'Artist Information (' +p128054 +sa(dp128055 +g25273 +S'(artist after)' +p128056 +sg25267 +g27 +sg25275 +S'\n' +p128057 +sg25268 +S'Sir Philip Sidney, Soldier and Poet' +p128058 +sg25270 +S'Artist Information (' +p128059 +sa(dp128060 +g25273 +S'engraving' +p128061 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128062 +sg25268 +S'Sigismund Bathori, Prince of Transylvania' +p128063 +sg25270 +S'Aegidius Sadeler II' +p128064 +sa(dp128065 +g25273 +S'engraving' +p128066 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128067 +sg25268 +S'Sigismund III, King of Poland' +p128068 +sg25270 +S'Aegidius Sadeler II' +p128069 +sa(dp128070 +g25268 +S'The Crucifixion' +p128071 +sg25270 +S'German 15th Century' +p128072 +sg25273 +S'Schreiber Manuel, no. 4693' +p128073 +sg25275 +S'\nwoodcut, hand-colored, on vellum' +p128074 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a65f.jpg' +p128075 +sg25267 +g27 +sa(dp128076 +g25273 +S'engraving' +p128077 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128078 +sg25268 +S'Sigismund III, King of Poland and Sweden' +p128079 +sg25270 +S'Unknown 19th Century' +p128080 +sa(dp128081 +g25273 +S', 1598' +p128082 +sg25267 +g27 +sg25275 +S'\n' +p128083 +sg25268 +S'Sigismund III, King of Poland' +p128084 +sg25270 +S'Crispijn van de Passe I' +p128085 +sa(dp128086 +g25273 +S'engraving' +p128087 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128088 +sg25268 +S'Nicolas Brulart, Marquis de Sillery' +p128089 +sg25270 +S'Unknown 19th Century' +p128090 +sa(dp128091 +g25273 +S'engraving' +p128092 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128093 +sg25268 +S'Nicolas Brulart, Marquis de Sillery' +p128094 +sg25270 +S'Unknown 19th Century' +p128095 +sa(dp128096 +g25273 +S'engraving' +p128097 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128098 +sg25268 +S'Josias Simler' +p128099 +sg25270 +S'Hendrik Hondius I' +p128100 +sa(dp128101 +g25273 +S'engraving' +p128102 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128103 +sg25268 +S'Sydrach Simpson, Preacher' +p128104 +sg25270 +S'Unknown 19th Century' +p128105 +sa(dp128106 +g25273 +S'engraving' +p128107 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128108 +sg25268 +S'William Slater, D.D.' +p128109 +sg25270 +S'Unknown 19th Century' +p128110 +sa(dp128111 +g25273 +S'engraving' +p128112 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128113 +sg25268 +S'Hendrick Daniels Slatius, Preacher' +p128114 +sg25270 +S'Unknown 19th Century' +p128115 +sa(dp128116 +g25273 +S'engraving' +p128117 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128118 +sg25268 +S'Henrich Daniel Slatius, Arminian Preacher' +p128119 +sg25270 +S'Unknown 19th Century' +p128120 +sa(dp128121 +g25273 +S'facsimile' +p128122 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128123 +sg25268 +S'Captain John Smith' +p128124 +sg25270 +S'Unknown 19th Century' +p128125 +sa(dp128126 +g25268 +S'The Nativity' +p128127 +sg25270 +S'German 15th Century' +p128128 +sg25273 +S'Schreiber, Vol. IX, no. 2194, State e' +p128129 +sg25275 +S'\nmetalcut, hand-colored in yellow, red-brown lake, and green' +p128130 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4e5.jpg' +p128131 +sg25267 +g27 +sa(dp128132 +g25273 +S'facsimile' +p128133 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128134 +sg25268 +S'Captain John Smith' +p128135 +sg25270 +S'Unknown 19th Century' +p128136 +sa(dp128137 +g25273 +S'facsimile' +p128138 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128139 +sg25268 +S'Sir Thomas Smith' +p128140 +sg25270 +S'Unknown 19th Century' +p128141 +sa(dp128142 +g25273 +S'engraving' +p128143 +sg25267 +g27 +sg25275 +S'1624' +p128144 +sg25268 +S'Louis de Bourbon, Conte de Soissons' +p128145 +sg25270 +S'Unknown 19th Century' +p128146 +sa(dp128147 +g25273 +S'facsimile' +p128148 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128149 +sg25268 +S"William Sommers, King Henry VIII's Jester" +p128150 +sg25270 +S'Francis Delaram' +p128151 +sa(dp128152 +g25273 +S'(artist)' +p128153 +sg25267 +g27 +sg25275 +S'\n' +p128154 +sg25268 +S'Edward Seymour, First Duke of Somerset' +p128155 +sg25270 +S'Artist Information (' +p128156 +sa(dp128157 +g25273 +S'(artist)' +p128158 +sg25267 +g27 +sg25275 +S'\n' +p128159 +sg25268 +S'Edward Seymour, First Duke of Somerset' +p128160 +sg25270 +S'Artist Information (' +p128161 +sa(dp128162 +g25273 +S'(artist after)' +p128163 +sg25267 +g27 +sg25275 +S'\n' +p128164 +sg25268 +S'Charles Seymour, Sixth Duke of Somerset' +p128165 +sg25270 +S'Artist Information (' +p128166 +sa(dp128167 +g25273 +S'facsimile' +p128168 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128169 +sg25268 +S'Lady Frances Howard, Countess of Somerset' +p128170 +sg25270 +S'Unknown 19th Century' +p128171 +sa(dp128172 +g25273 +S', unknown date' +p128173 +sg25267 +g27 +sg25275 +S'\n' +p128174 +sg25268 +S'Robert Carr, Earl of Somerset' +p128175 +sg25270 +S'Simon van de Passe' +p128176 +sa(dp128177 +g25273 +S'engraving' +p128178 +sg25267 +g27 +sg25275 +S'published 1618' +p128179 +sg25268 +S'The Portraitures of Robert, Earl of Somerset and Lady Frances Howard' +p128180 +sg25270 +S'Renold Elstrack' +p128181 +sa(dp128182 +g25268 +S'The Massacre of the Innocents' +p128183 +sg25270 +S'German 15th Century' +p128184 +sg25273 +S'Schreiber, Vol. IX, no. 2212, State z' +p128185 +sg25275 +S'\nmetalcut, hand-colored in yellow, red-brown lake, and green' +p128186 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4e6.jpg' +p128187 +sg25267 +g27 +sa(dp128188 +g25273 +S'engraving' +p128189 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128190 +sg25268 +S'Earl and Countess of Somerset, Accomplices inthe Murder of Sir Thomas Overbury' +p128191 +sg25270 +S'George Cruikshank' +p128192 +sa(dp128193 +g25273 +S'engraving' +p128194 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128195 +sg25268 +S'Sophia Hedwig, Duchess of Brunswick' +p128196 +sg25270 +S'Unknown 19th Century' +p128197 +sa(dp128198 +g25273 +S'(artist after)' +p128199 +sg25267 +g27 +sg25275 +S'\n' +p128200 +sg25268 +S'Thomas Wriothesley, Earl of Southampton' +p128201 +sg25270 +S'Artist Information (' +p128202 +sa(dp128203 +g25273 +S', unknown date' +p128204 +sg25267 +g27 +sg25275 +S'\n' +p128205 +sg25268 +S'Sir Richard Spencer, Ambassador to Holland' +p128206 +sg25270 +S'Hendrik Hondius I' +p128207 +sa(dp128208 +g25273 +S'engraving' +p128209 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128210 +sg25268 +S'Johannes A. Spina' +p128211 +sg25270 +S'Unknown 19th Century' +p128212 +sa(dp128213 +g25268 +S'Ambrosius Spinola' +p128214 +sg25270 +S'Christoffel van Sichem I' +p128215 +sg25273 +S'engraving' +p128216 +sg25275 +S'unknown date\n' +p128217 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3be.jpg' +p128218 +sg25267 +g27 +sa(dp128219 +g25273 +S'(artist after)' +p128220 +sg25267 +g27 +sg25275 +S'\n' +p128221 +sg25268 +S'Ambroise Spinola, Spanish General in the Low Countries' +p128222 +sg25270 +S'Artist Information (' +p128223 +sa(dp128224 +g25273 +S'engraving' +p128225 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128226 +sg25268 +S'Bartholomew and Christina Spranger' +p128227 +sg25270 +S'Aegidius Sadeler II' +p128228 +sa(dp128229 +g25273 +S'engraving' +p128230 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128231 +sg25268 +S'Robert Stafford of Bradfield, Berks' +p128232 +sg25270 +S'David Loggan' +p128233 +sa(dp128234 +g25273 +S'(artist after)' +p128235 +sg25267 +g27 +sg25275 +S'\n' +p128236 +sg25268 +S'Johannes Stalpard' +p128237 +sg25270 +S'Artist Information (' +p128238 +sa(dp128239 +g25268 +S'The Adoration of the Magi' +p128240 +sg25270 +S'German 15th Century' +p128241 +sg25273 +S'Schreiber, Vol. IX, no. 2210, State g' +p128242 +sg25275 +S'\nmetalcut, hand-colored in yellow, red-brown lake, and green' +p128243 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4e7.jpg' +p128244 +sg25267 +g27 +sa(dp128245 +g25273 +S'engraving' +p128246 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128247 +sg25268 +S'Thomas Stapleton, D.D.' +p128248 +sg25270 +S'L\xc3\xa9onard Gaultier' +p128249 +sa(dp128250 +g25273 +S', 1652' +p128251 +sg25267 +g27 +sg25275 +S'\n' +p128252 +sg25268 +S'Joannes Steinbergius' +p128253 +sg25270 +S'Crispijn van de Passe II' +p128254 +sa(dp128255 +g25273 +S'engraving' +p128256 +sg25267 +g27 +sg25275 +S'published 1618' +p128257 +sg25268 +S'Stephen, King of England' +p128258 +sg25270 +S'Renold Elstrack' +p128259 +sa(dp128260 +g25273 +S'engraving' +p128261 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128262 +sg25268 +S'Stephen, King of England' +p128263 +sg25270 +S'Renold Elstrack' +p128264 +sa(dp128265 +g25273 +S'engraving' +p128266 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128267 +sg25268 +S'Jan van der Straet, Artist' +p128268 +sg25270 +S'Unknown 19th Century' +p128269 +sa(dp128270 +g25273 +S'(artist after)' +p128271 +sg25267 +g27 +sg25275 +S'\n' +p128272 +sg25268 +S'Thomas Wentworth, Comte de Strafford' +p128273 +sg25270 +S'Artist Information (' +p128274 +sa(dp128275 +g25273 +S'(artist after)' +p128276 +sg25267 +g27 +sg25275 +S'\n' +p128277 +sg25268 +S'Thomas Wentworth, Earl of Strafford' +p128278 +sg25270 +S'Artist Information (' +p128279 +sa(dp128280 +g25273 +S'(artist after)' +p128281 +sg25267 +g27 +sg25275 +S'\n' +p128282 +sg25268 +S'Thomas Wentworth, Earl of Strafford' +p128283 +sg25270 +S'Artist Information (' +p128284 +sa(dp128285 +g25273 +S', unknown date' +p128286 +sg25267 +g27 +sg25275 +S'\n' +p128287 +sg25268 +S'Thomas Wentworth, Earl of Strafford' +p128288 +sg25270 +S'Claes Jansz Visscher' +p128289 +sa(dp128290 +g25273 +S'engraving' +p128291 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128292 +sg25268 +S'Thomas Wentworth, Earl of Strafford' +p128293 +sg25270 +S'Unknown 19th Century' +p128294 +sa(dp128295 +g25268 +S'The Betrayal' +p128296 +sg25270 +S'German 15th Century' +p128297 +sg25273 +S'Schreiber, Vol. IX, no. 2255, State e' +p128298 +sg25275 +S'\nmetalcut, hand-colored in yellow, red-brown lake, and green' +p128299 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4e8.jpg' +p128300 +sg25267 +g27 +sa(dp128301 +g25273 +S'engraving' +p128302 +sg25267 +g27 +sg25275 +S'1641' +p128303 +sg25268 +S'Thomas Wentworth, Earl of Strafford' +p128304 +sg25270 +S'Unknown 19th Century' +p128305 +sa(dp128306 +g25273 +S'engraving' +p128307 +sg25267 +g27 +sg25275 +S'1603' +p128308 +sg25268 +S'Joannes Sturmius' +p128309 +sg25270 +S'Hendrik Hondius I' +p128310 +sa(dp128311 +g25273 +S'facsimile' +p128312 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128313 +sg25268 +S'Thomas Howard, First Earl of Suffolk' +p128314 +sg25270 +S'Renold Elstrack' +p128315 +sa(dp128316 +g25273 +S'(artist)' +p128317 +sg25267 +g27 +sg25275 +S'\n' +p128318 +sg25268 +S'Thomas Sutton, Founder of the Charterhouse' +p128319 +sg25270 +S'Artist Information (' +p128320 +sa(dp128321 +g25273 +S'(artist)' +p128322 +sg25267 +g27 +sg25275 +S'\n' +p128323 +sg25268 +S'Thomas Sutton, Founder of the Charterhouse' +p128324 +sg25270 +S'Artist Information (' +p128325 +sa(dp128326 +g25273 +S'engraving' +p128327 +sg25267 +g27 +sg25275 +S'1606' +p128328 +sg25268 +S'Joannes Swicardus, Archbishop of Maguntino' +p128329 +sg25270 +S'Peter Isselburg' +p128330 +sa(dp128331 +g25273 +S'engraving' +p128332 +sg25267 +g27 +sg25275 +S'1624' +p128333 +sg25268 +S'Jan Pieter Swelinck, Dutch Composer and Organist' +p128334 +sg25270 +S'Jan Muller' +p128335 +sa(dp128336 +g25273 +S'engraving' +p128337 +sg25267 +g27 +sg25275 +S'1624' +p128338 +sg25268 +S'Jan Pieter Swelinck, Dutch Composer and Organist' +p128339 +sg25270 +S'Jan Muller' +p128340 +sa(dp128341 +g25273 +S'engraving' +p128342 +sg25267 +g27 +sg25275 +S'1604' +p128343 +sg25268 +S'Francis Sylvestri, Cardinal' +p128344 +sg25270 +S'Aegidius Sadeler II' +p128345 +sa(dp128346 +g25273 +S'engraving' +p128347 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128348 +sg25268 +S'Synal Chaen, Persian Ambassador to Court of Rudolph II' +p128349 +sg25270 +S'Aegidius Sadeler II' +p128350 +sa(dp128351 +g25268 +S'Pilate Washing His Hands' +p128352 +sg25270 +S'German 15th Century' +p128353 +sg25273 +S'Schreiber, Vol. IX, no. 2275, State e' +p128354 +sg25275 +S'\nmetalcut, hand-colored in yellow, red-brown lake, and green' +p128355 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4e9.jpg' +p128356 +sg25267 +g27 +sa(dp128357 +g25273 +S', unknown date' +p128358 +sg25267 +g27 +sg25275 +S'\n' +p128359 +sg25268 +S'Elias Taddel' +p128360 +sg25270 +S'Crispijn van de Passe II' +p128361 +sa(dp128362 +g25273 +S'engraving' +p128363 +sg25267 +g27 +sg25275 +S'1621' +p128364 +sg25268 +S'William Teeling' +p128365 +sg25270 +S'Pieter de Jode I' +p128366 +sa(dp128367 +g25273 +S'(artist after)' +p128368 +sg25267 +g27 +sg25275 +S'\n' +p128369 +sg25268 +S'Thomas Tenison, Archbishop of Canterbury' +p128370 +sg25270 +S'Artist Information (' +p128371 +sa(dp128372 +g25273 +S'engraving' +p128373 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128374 +sg25268 +S'Thomas de Thomasi' +p128375 +sg25270 +S'Unknown 19th Century' +p128376 +sa(dp128377 +g25273 +S'engraving' +p128378 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128379 +sg25268 +S'Jacques Auguste de Thou' +p128380 +sg25270 +S'Unknown 19th Century' +p128381 +sa(dp128382 +g25273 +S'engraving' +p128383 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128384 +sg25268 +S'Jacques Auguste de Thou' +p128385 +sg25270 +S'Unknown 19th Century' +p128386 +sa(dp128387 +g25273 +S'(artist after)' +p128388 +sg25267 +g27 +sg25275 +S'\n' +p128389 +sg25268 +S'John Tillotson' +p128390 +sg25270 +S'Artist Information (' +p128391 +sa(dp128392 +g25273 +S'(artist)' +p128393 +sg25267 +g27 +sg25275 +S'\n' +p128394 +sg25268 +S'Johann Tzerklas, Count of Tilly' +p128395 +sg25270 +S'Artist Information (' +p128396 +sa(dp128397 +g25273 +S'engraving' +p128398 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128399 +sg25268 +S'Johan Tzerklas, Count of Tilly' +p128400 +sg25270 +S'Unknown 19th Century' +p128401 +sa(dp128402 +g25273 +S'(artist after)' +p128403 +sg25267 +g27 +sg25275 +S'\n' +p128404 +sg25268 +S'Johann Tzerklas, Count of Tilly' +p128405 +sg25270 +S'Artist Information (' +p128406 +sa(dp128407 +g25268 +S'Christ Carrying the Cross' +p128408 +sg25270 +S'German 15th Century' +p128409 +sg25273 +S'Schreiber, Vol. IX, no. 2305, State d' +p128410 +sg25275 +S'\nmetalcut, hand-colored in yellow, red-brown lake, and green' +p128411 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4ea.jpg' +p128412 +sg25267 +g27 +sa(dp128413 +g25273 +S'engraving' +p128414 +sg25267 +g27 +sg25275 +S'1587' +p128415 +sg25268 +S'Titian' +p128416 +sg25270 +S'Agostino Carracci' +p128417 +sa(dp128418 +g25273 +S'engraving' +p128419 +sg25267 +g27 +sg25275 +S'1587' +p128420 +sg25268 +S'Titian' +p128421 +sg25270 +S'Agostino Carracci' +p128422 +sa(dp128423 +g25273 +S'(artist after)' +p128424 +sg25267 +g27 +sg25275 +S'\n' +p128425 +sg25268 +S'Harboldus van Tombergen' +p128426 +sg25270 +S'Artist Information (' +p128427 +sa(dp128428 +g25273 +S'(artist after)' +p128429 +sg25267 +g27 +sg25275 +S'\n' +p128430 +sg25268 +S'Johannes Torrentius, Dutch Painter' +p128431 +sg25270 +S'Artist Information (' +p128432 +sa(dp128433 +g25273 +S'engraving' +p128434 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128435 +sg25268 +S'Georgius Tradelius' +p128436 +sg25270 +S'Dominicus Custos' +p128437 +sa(dp128438 +g25273 +S'engraving' +p128439 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128440 +sg25268 +S'William Trealong of Blois' +p128441 +sg25270 +S'Unknown 19th Century' +p128442 +sa(dp128443 +g25273 +S'engraving' +p128444 +sg25267 +g27 +sg25275 +S'1648' +p128445 +sg25268 +S'Tristan, the Hermit' +p128446 +sg25270 +S'Pierre Daret de Cazeneuve' +p128447 +sa(dp128448 +g25273 +S'engraving' +p128449 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128450 +sg25268 +S'Martin Harpertzoon Tromp' +p128451 +sg25270 +S'Jan Lievens' +p128452 +sa(dp128453 +g25273 +S'engraving' +p128454 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128455 +sg25268 +S'Nicolaes Pietersz Tulp' +p128456 +sg25270 +S'Jan de Bisschop' +p128457 +sa(dp128458 +g25273 +S'(artist)' +p128459 +sg25267 +g27 +sg25275 +S'\n' +p128460 +sg25268 +S'William Tyndale, Protestant Reformer and Martyr' +p128461 +sg25270 +S'Artist Information (' +p128462 +sa(dp128463 +g25268 +S'Christ Nailed to the Cross' +p128464 +sg25270 +S'German 15th Century' +p128465 +sg25273 +S'Schreiber, Vol. IX, no. 2417, State z' +p128466 +sg25275 +S'\nmetalcut, hand-colored in yellow, red-brown lake, and green' +p128467 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4eb.jpg' +p128468 +sg25267 +g27 +sa(dp128469 +g25273 +S'engraving' +p128470 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128471 +sg25268 +S'Pope Urban VIII (Maffeo Barberini)' +p128472 +sg25270 +S'Unknown 19th Century' +p128473 +sa(dp128474 +g25273 +S'engraving' +p128475 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128476 +sg25268 +S'Johannes Utenbogaert' +p128477 +sg25270 +S'Willem Jacobsz Delff' +p128478 +sa(dp128479 +g25273 +S'engraving' +p128480 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128481 +sg25268 +S'Johannes Uytenbogaert' +p128482 +sg25270 +S'Hans Vischer' +p128483 +sa(dp128484 +g25273 +S'Rosenwald Collection' +p128485 +sg25267 +g27 +sg25275 +S'\nengraving' +p128486 +sg25268 +S'Johann Valetin' +p128487 +sg25270 +S'J. Sandrart' +p128488 +sa(dp128489 +g25273 +S'engraving' +p128490 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128491 +sg25268 +S'Marguerite de Valois, Wife of Henry of Navarre' +p128492 +sg25270 +S'Thomas de Leu' +p128493 +sa(dp128494 +g25273 +S'engraving' +p128495 +sg25267 +g27 +sg25275 +S'1589' +p128496 +sg25268 +S'Marguerite de Valois, Wife of Henry of Navarre' +p128497 +sg25270 +S'Unknown 19th Century' +p128498 +sa(dp128499 +g25273 +S'German, 1590 - active 1613/1614' +p128500 +sg25267 +g27 +sg25275 +S'(artist after)' +p128501 +sg25268 +S'Barbara van Beck' +p128502 +sg25270 +S'Artist Information (' +p128503 +sa(dp128504 +g25273 +S'German, 1590 - active 1613/1614' +p128505 +sg25267 +g27 +sg25275 +S'(artist after)' +p128506 +sg25268 +S'Barbara van Beck, A Bearded Lady' +p128507 +sg25270 +S'Artist Information (' +p128508 +sa(dp128509 +g25273 +S'(artist)' +p128510 +sg25267 +g27 +sg25275 +S'\n' +p128511 +sg25268 +S'Richard Vaughan, Bishop of London' +p128512 +sg25270 +S'Artist Information (' +p128513 +sa(dp128514 +g25273 +S'engraving' +p128515 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128516 +sg25268 +S'Francis le Mothe le Vayer' +p128517 +sg25270 +S'Louis Coquin' +p128518 +sa(dp128519 +g25268 +S'The Resurrection' +p128520 +sg25270 +S'German 15th Century' +p128521 +sg25273 +S'Schreiber, Vol. IX, no. 2377, State f' +p128522 +sg25275 +S'\nmetalcut, hand-colored in yellow, red-brown lake, and green' +p128523 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4ec.jpg' +p128524 +sg25267 +g27 +sa(dp128525 +g25273 +S'engraving' +p128526 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128527 +sg25268 +S'Octavio van Veen' +p128528 +sg25270 +S'Joannes Meyssens' +p128529 +sa(dp128530 +g25273 +S'engraving' +p128531 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128532 +sg25268 +S'Theodore Veit, Preacher' +p128533 +sg25270 +S'Unknown 19th Century' +p128534 +sa(dp128535 +g25273 +S'engraving' +p128536 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128537 +sg25268 +S'Horace Vere, Baron Vere of Tilbury' +p128538 +sg25270 +S'Unknown 19th Century' +p128539 +sa(dp128540 +g25273 +S'engraving' +p128541 +sg25267 +g27 +sg25275 +S'1648' +p128542 +sg25268 +S'M. Francois Veron, Doctor of Theology, Lecturer, Professor, under Louis XIV' +p128543 +sg25270 +S'Unknown 19th Century' +p128544 +sa(dp128545 +g25273 +S'engraving' +p128546 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128547 +sg25268 +S'Paolo Caliari' +p128548 +sg25270 +S'Agostino Carracci' +p128549 +sa(dp128550 +g25273 +S', 1598' +p128551 +sg25267 +g27 +sg25275 +S'\n' +p128552 +sg25268 +S'Amerigo Vespucci' +p128553 +sg25270 +S'Crispijn van de Passe I' +p128554 +sa(dp128555 +g25273 +S', unknown date' +p128556 +sg25267 +g27 +sg25275 +S'\n' +p128557 +sg25268 +S'Victor Amedeo I, Duke of Savoy' +p128558 +sg25270 +S'Pierre-Jean Mariette' +p128559 +sa(dp128560 +g25273 +S'engraving' +p128561 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128562 +sg25268 +S'John Volckamer' +p128563 +sg25270 +S'Bartholomaus Kilian' +p128564 +sa(dp128565 +g25273 +S'engraving' +p128566 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128567 +sg25268 +S'Everardus Vorstius Medicinae' +p128568 +sg25270 +S'Unknown 19th Century' +p128569 +sa(dp128570 +g25273 +S'(artist after)' +p128571 +sg25267 +g27 +sg25275 +S'\n' +p128572 +sg25268 +S'Martin de Vos' +p128573 +sg25270 +S'Artist Information (' +p128574 +sa(dp128575 +g25268 +S'Christ Appearing to Saint Thomas' +p128576 +sg25270 +S'Artist Information (' +p128577 +sg25273 +S'German, active c. 1470' +p128578 +sg25275 +S'(related artist)' +p128579 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4e1.jpg' +p128580 +sg25267 +g27 +sa(dp128581 +g25273 +S'(artist after)' +p128582 +sg25267 +g27 +sg25275 +S'\n' +p128583 +sg25268 +S'Martin de Vos' +p128584 +sg25270 +S'Artist Information (' +p128585 +sa(dp128586 +g25273 +S'engraving' +p128587 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128588 +sg25268 +S'Albrecht Wenzel Euscbius von Wallenstein' +p128589 +sg25270 +S'Wolfgang Philipp Kilian' +p128590 +sa(dp128591 +g25273 +S'engraving' +p128592 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128593 +sg25268 +S'Sir William Waller, Parliamentary General' +p128594 +sg25270 +S'Unknown 19th Century' +p128595 +sa(dp128596 +g25273 +S'(artist)' +p128597 +sg25267 +g27 +sg25275 +S'\n' +p128598 +sg25268 +S'Sir Francis Walsingham' +p128599 +sg25270 +S'Artist Information (' +p128600 +sa(dp128601 +g25273 +S'(artist)' +p128602 +sg25267 +g27 +sg25275 +S'\n' +p128603 +sg25268 +S'Sir Francis Walsingham' +p128604 +sg25270 +S'Artist Information (' +p128605 +sa(dp128606 +g25273 +S'(artist)' +p128607 +sg25267 +g27 +sg25275 +S'\n' +p128608 +sg25268 +S'Ambrose Dudley, Earl of Warwick' +p128609 +sg25270 +S'Artist Information (' +p128610 +sa(dp128611 +g25273 +S'(artist)' +p128612 +sg25267 +g27 +sg25275 +S'\n' +p128613 +sg25268 +S'Ambrose Dudley, Earl of Warwick' +p128614 +sg25270 +S'Artist Information (' +p128615 +sa(dp128616 +g25273 +S'Flemish, 1599 - 1641' +p128617 +sg25267 +g27 +sg25275 +S'(artist after)' +p128618 +sg25268 +S'Elizabeth, Countess Warwick' +p128619 +sg25270 +S'Artist Information (' +p128620 +sa(dp128621 +g25273 +S'(artist after)' +p128622 +sg25267 +g27 +sg25275 +S'\n' +p128623 +sg25268 +S'Mary Boyle, Countess of Warwick' +p128624 +sg25270 +S'Artist Information (' +p128625 +sa(dp128626 +g25273 +S'engraving' +p128627 +sg25267 +g27 +sg25275 +S'1632' +p128628 +sg25268 +S'William von Welsberg, Archbishop of Brussels' +p128629 +sg25270 +S'Lucas Kilian' +p128630 +sa(dp128631 +g25268 +S'The Crucifixion' +p128632 +sg25270 +S'Artist Information (' +p128633 +sg25273 +S'German, active c. 1470' +p128634 +sg25275 +S'(related artist)' +p128635 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4d4.jpg' +p128636 +sg25267 +g27 +sa(dp128637 +g25273 +S'Rosenwald Collection' +p128638 +sg25267 +g27 +sg25275 +S'\nengraving' +p128639 +sg25268 +S'Johannes Angelius Werdenhagen' +p128640 +sg25270 +S'Andr. Cramerus Iun. Magdeb.' +p128641 +sa(dp128642 +g25273 +S'(artist)' +p128643 +sg25267 +g27 +sg25275 +S'\n' +p128644 +sg25268 +S"William Whitaker, D.D., Master of Saint John's College, Cambridge" +p128645 +sg25270 +S'Artist Information (' +p128646 +sa(dp128647 +g25273 +S'engraving' +p128648 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128649 +sg25268 +S'William Whitaker, D.D.' +p128650 +sg25270 +S'John Payne' +p128651 +sa(dp128652 +g25273 +S'engraving' +p128653 +sg25267 +g27 +sg25275 +S'published 1650' +p128654 +sg25268 +S'William Whitaker, D.D.' +p128655 +sg25270 +S'Klemens Ammon' +p128656 +sa(dp128657 +g25273 +S'engraving' +p128658 +sg25267 +g27 +sg25275 +S'published 1624' +p128659 +sg25268 +S'Francis White, D.D., Bishop of Ely' +p128660 +sg25270 +S'Thomas Cockson' +p128661 +sa(dp128662 +g25273 +S'engraving' +p128663 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128664 +sg25268 +S'Francis White, Bishop of Ely' +p128665 +sg25270 +S'Thomas Cockson' +p128666 +sa(dp128667 +g25273 +S'colored engraving' +p128668 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128669 +sg25268 +S'Richard White of Basingstoke, Hampshire' +p128670 +sg25270 +S'H. Mortier' +p128671 +sa(dp128672 +g25273 +S'(artist)' +p128673 +sg25267 +g27 +sg25275 +S'\n' +p128674 +sg25268 +S'David Whitehead, D.D., Chaplain to Anne Boleyn' +p128675 +sg25270 +S'Artist Information (' +p128676 +sa(dp128677 +g25273 +S'(artist)' +p128678 +sg25267 +g27 +sg25275 +S'\n' +p128679 +sg25268 +S'John Whitgift, D.D., Archbishop of Canterbury' +p128680 +sg25270 +S'Artist Information (' +p128681 +sa(dp128682 +g25273 +S'engraving' +p128683 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128684 +sg25268 +S'Sir Richard Whittington, Lord Mayor of London' +p128685 +sg25270 +S'Renold Elstrack' +p128686 +sa(dp128687 +g25268 +S'The Descent from the Cross' +p128688 +sg25270 +S'Artist Information (' +p128689 +sg25273 +S'German, active c. 1470' +p128690 +sg25275 +S'(related artist)' +p128691 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4d5.jpg' +p128692 +sg25267 +g27 +sa(dp128693 +g25273 +S'facsimile' +p128694 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128695 +sg25268 +S'Richard Whittington' +p128696 +sg25270 +S'Renold Elstrack' +p128697 +sa(dp128698 +g25273 +S'engraving' +p128699 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128700 +sg25268 +S'Willem Lodewyk, Count of Nassau' +p128701 +sg25270 +S'Unknown 19th Century' +p128702 +sa(dp128703 +g25273 +S'engraving' +p128704 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128705 +sg25268 +S'William I of England' +p128706 +sg25270 +S'Renold Elstrack' +p128707 +sa(dp128708 +g25273 +S'engraving' +p128709 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128710 +sg25268 +S'William I in Helmet' +p128711 +sg25270 +S'Renold Elstrack' +p128712 +sa(dp128713 +g25273 +S'engraving' +p128714 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128715 +sg25268 +S'William II' +p128716 +sg25270 +S'Renold Elstrack' +p128717 +sa(dp128718 +g25273 +S'engraving' +p128719 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128720 +sg25268 +S'William I, Prince of Orange' +p128721 +sg25270 +S'Unknown 19th Century' +p128722 +sa(dp128723 +g25273 +S'engraving' +p128724 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128725 +sg25268 +S'William I, Prince of Orange' +p128726 +sg25270 +S'Unknown 19th Century' +p128727 +sa(dp128728 +g25268 +S'William of Nassau, Prince of Orange' +p128729 +sg25270 +S'Artist Information (' +p128730 +sg25273 +S'(artist after)' +p128731 +sg25275 +S'\n' +p128732 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3b8.jpg' +p128733 +sg25267 +g27 +sa(dp128734 +g25268 +S'William of Nassau, Prince of Orange' +p128735 +sg25270 +S'Christoffel van Sichem I' +p128736 +sg25273 +S'engraving' +p128737 +sg25275 +S'unknown date\n' +p128738 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3ba.jpg' +p128739 +sg25267 +g27 +sa(dp128740 +g25268 +S'William, Prince of Nassau-Orange' +p128741 +sg25270 +S'Hendrick Goltzius' +p128742 +sg25273 +S', 1581' +p128743 +sg25275 +S'\n' +p128744 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfbb.jpg' +p128745 +sg25267 +g27 +sa(dp128746 +g25268 +S'The Lamentation' +p128747 +sg25270 +S'Artist Information (' +p128748 +sg25273 +S'German, active c. 1470' +p128749 +sg25275 +S'(related artist)' +p128750 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4d6.jpg' +p128751 +sg25267 +g27 +sa(dp128752 +g25268 +S'William, Prince of Nassau-Orange' +p128753 +sg25270 +S'Hendrick Goltzius' +p128754 +sg25273 +S', 1581' +p128755 +sg25275 +S'\n' +p128756 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfbc.jpg' +p128757 +sg25267 +g27 +sa(dp128758 +g25273 +S'engraving' +p128759 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128760 +sg25268 +S'William I, Prince of Orange' +p128761 +sg25270 +S'Unknown 19th Century' +p128762 +sa(dp128763 +g25273 +S'engraving' +p128764 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128765 +sg25268 +S'William I, Prince of Orange' +p128766 +sg25270 +S'Johannes Sarragon' +p128767 +sa(dp128768 +g25273 +S'engraving' +p128769 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128770 +sg25268 +S'William I, Prince of Orange' +p128771 +sg25270 +S'Crispyn van den Queboorn' +p128772 +sa(dp128773 +g25268 +S'William, Prince of Nassau-Orange' +p128774 +sg25270 +S'Hendrick Goltzius' +p128775 +sg25273 +S', 1581' +p128776 +sg25275 +S'\n' +p128777 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005c/a0005c8e.jpg' +p128778 +sg25267 +g27 +sa(dp128779 +g25273 +S'(artist after)' +p128780 +sg25267 +g27 +sg25275 +S'\n' +p128781 +sg25268 +S'William of Orange' +p128782 +sg25270 +S'Artist Information (' +p128783 +sa(dp128784 +g25273 +S'engraving' +p128785 +sg25267 +g27 +sg25275 +S'1641' +p128786 +sg25268 +S'William II of Orange' +p128787 +sg25270 +S'Pieter de Jode I' +p128788 +sa(dp128789 +g25273 +S'(artist after)' +p128790 +sg25267 +g27 +sg25275 +S'\n' +p128791 +sg25268 +S'William, Prince of Orange' +p128792 +sg25270 +S'Artist Information (' +p128793 +sa(dp128794 +g25273 +S'engraving' +p128795 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128796 +sg25268 +S'William V, Duke of Julich and Cleves' +p128797 +sg25270 +S'Heinrich Aldegrever' +p128798 +sa(dp128799 +g25273 +S'engraving' +p128800 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128801 +sg25268 +S'William Count la Marck, Duke of Julich and Cleves' +p128802 +sg25270 +S'Unknown 19th Century' +p128803 +sa(dp128804 +g25268 +S'The Entombment' +p128805 +sg25270 +S'Artist Information (' +p128806 +sg25273 +S'German, active c. 1470' +p128807 +sg25275 +S'(related artist)' +p128808 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4de.jpg' +p128809 +sg25267 +g27 +sa(dp128810 +g25273 +S'engraving' +p128811 +sg25267 +g27 +sg25275 +S'1623' +p128812 +sg25268 +S'William, Duke of Saxony' +p128813 +sg25270 +S'Wolfgang Kilian' +p128814 +sa(dp128815 +g25273 +S'engraving' +p128816 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128817 +sg25268 +S'William V, Duke of Bavaria' +p128818 +sg25270 +S'Antonie Wierix' +p128819 +sa(dp128820 +g25273 +S', unknown date' +p128821 +sg25267 +g27 +sg25275 +S'\n' +p128822 +sg25268 +S'William of Nassau, Vice-Admiral of Holland' +p128823 +sg25270 +S'Balthasar Moncornet' +p128824 +sa(dp128825 +g25273 +S'engraving' +p128826 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128827 +sg25268 +S'William Frederick of Nassau' +p128828 +sg25270 +S'Abraham Blooteling' +p128829 +sa(dp128830 +g25273 +S'(artist after)' +p128831 +sg25267 +g27 +sg25275 +S'\n' +p128832 +sg25268 +S'William Louis, Count of Nassau' +p128833 +sg25270 +S'Artist Information (' +p128834 +sa(dp128835 +g25273 +S'(artist after)' +p128836 +sg25267 +g27 +sg25275 +S'\n' +p128837 +sg25268 +S'Marc de Wilson, Chevalier Sieur de la Colombiere' +p128838 +sg25270 +S'Artist Information (' +p128839 +sa(dp128840 +g25273 +S', 1618' +p128841 +sg25267 +g27 +sg25275 +S'\n' +p128842 +sg25268 +S'Edward Cecil, Viscount Wimbledon' +p128843 +sg25270 +S'Simon van de Passe' +p128844 +sa(dp128845 +g25273 +S'(artist after)' +p128846 +sg25267 +g27 +sg25275 +S'\n' +p128847 +sg25268 +S'Prince Wolfgang William, Count Palatine' +p128848 +sg25270 +S'Artist Information (' +p128849 +sa(dp128850 +g25273 +S'(artist after)' +p128851 +sg25267 +g27 +sg25275 +S'\n' +p128852 +sg25268 +S'Prince Wolfgang William, Count Palatine' +p128853 +sg25270 +S'Artist Information (' +p128854 +sa(dp128855 +g25273 +S', unknown date' +p128856 +sg25267 +g27 +sg25275 +S'\n' +p128857 +sg25268 +S'Wolfgang William, Count Palatine' +p128858 +sg25270 +S'Crispijn van de Passe I' +p128859 +sa(dp128860 +g25268 +S'The Three Maries at the Tomb' +p128861 +sg25270 +S'Artist Information (' +p128862 +sg25273 +S'German, active c. 1470' +p128863 +sg25275 +S'(related artist)' +p128864 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4df.jpg' +p128865 +sg25267 +g27 +sa(dp128866 +g25273 +S', unknown date' +p128867 +sg25267 +g27 +sg25275 +S'\n' +p128868 +sg25268 +S'Wolfgang William, Count Palatine' +p128869 +sg25270 +S'Crispijn van de Passe I' +p128870 +sa(dp128871 +g25273 +S', 1618' +p128872 +sg25267 +g27 +sg25275 +S'\n' +p128873 +sg25268 +S'Wolfgang William, Count Palatine' +p128874 +sg25270 +S'Simon van de Passe' +p128875 +sa(dp128876 +g25273 +S'engraving' +p128877 +sg25267 +g27 +sg25275 +S'1618' +p128878 +sg25268 +S'Eustace Wolowicz, Archbishop of Vilna' +p128879 +sg25270 +S'Lucas Kilian' +p128880 +sa(dp128881 +g25273 +S'(artist)' +p128882 +sg25267 +g27 +sg25275 +S'\n' +p128883 +sg25268 +S'Thomas Wolsey, Cardinal' +p128884 +sg25270 +S'Artist Information (' +p128885 +sa(dp128886 +g25273 +S'(artist)' +p128887 +sg25267 +g27 +sg25275 +S'\n' +p128888 +sg25268 +S'Thomas Wolsey, Cardinal' +p128889 +sg25270 +S'Artist Information (' +p128890 +sa(dp128891 +g25273 +S'engraving' +p128892 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128893 +sg25268 +S'Thomas Wolsey, Cardinal' +p128894 +sg25270 +S'Renold Elstrack' +p128895 +sa(dp128896 +g25273 +S'English, 1571 - 1625' +p128897 +sg25267 +g27 +sg25275 +S'(artist after)' +p128898 +sg25268 +S'Thomas Wolsey, Cardinal' +p128899 +sg25270 +S'Artist Information (' +p128900 +sa(dp128901 +g25273 +S'engraving' +p128902 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128903 +sg25268 +S'Thomas Wolsey, Cardinal, Lord Chancellor, Archbishop of York' +p128904 +sg25270 +S'Unknown 19th Century' +p128905 +sa(dp128906 +g25273 +S'mezzotint' +p128907 +sg25267 +g27 +sg25275 +S'published 1750' +p128908 +sg25268 +S'Christopher Wren, Son of the Architect' +p128909 +sg25270 +S'John Faber II' +p128910 +sa(dp128911 +g25273 +S'engraving' +p128912 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128913 +sg25268 +S'Michael Victor von Wusterow (?)' +p128914 +sg25270 +S'Unknown 19th Century' +p128915 +sa(dp128916 +g25268 +S'Christ Appearing to the Magdalene as a Gardner' +p128917 +sg25270 +S'Artist Information (' +p128918 +sg25273 +S'German, active c. 1470' +p128919 +sg25275 +S'(related artist)' +p128920 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4e0.jpg' +p128921 +sg25267 +g27 +sa(dp128922 +g25273 +S'engraving' +p128923 +sg25267 +g27 +sg25275 +S'1626' +p128924 +sg25268 +S'Martin Zobel' +p128925 +sg25270 +S'Lucas Kilian' +p128926 +sa(dp128927 +g25268 +S'Johannes Zurenus (Jan van Suren)' +p128928 +sg25270 +S'Artist Information (' +p128929 +sg25273 +S'(artist after)' +p128930 +sg25275 +S'\n' +p128931 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce38.jpg' +p128932 +sg25267 +g27 +sa(dp128933 +g25273 +S', 1630' +p128934 +sg25267 +g27 +sg25275 +S'\n' +p128935 +sg25268 +S'Henricus a Zijll' +p128936 +sg25270 +S'Crispijn van de Passe II' +p128937 +sa(dp128938 +g25273 +S'engraving' +p128939 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128940 +sg25268 +S'Coat of Arms in a Circle' +p128941 +sg25270 +S'Unknown 19th Century' +p128942 +sa(dp128943 +g25273 +S'engraving' +p128944 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128945 +sg25268 +S'Coat of Arms, Moniti Meliora' +p128946 +sg25270 +S'Unknown 19th Century' +p128947 +sa(dp128948 +g25273 +S'engraving' +p128949 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128950 +sg25268 +S'Ambrose Isted, Esq.' +p128951 +sg25270 +S'Unknown 19th Century' +p128952 +sa(dp128953 +g25273 +S'facsimile' +p128954 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128955 +sg25268 +S'Coat of Arms of Howard, Duke of Norfolk' +p128956 +sg25270 +S'Unknown 19th Century' +p128957 +sa(dp128958 +g25273 +S'facsimile on India paper' +p128959 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128960 +sg25268 +S'Coat of Arms of Prince Rupert, Hollar and Evelyn' +p128961 +sg25270 +S'Unknown 19th Century' +p128962 +sa(dp128963 +g25273 +S'engraving' +p128964 +sg25267 +g27 +sg25275 +S'published 1802' +p128965 +sg25268 +S'Title Page of Book by Alleyne, Lord St. Helens' +p128966 +sg25270 +S'Unknown 19th Century' +p128967 +sa(dp128968 +g25273 +S'facsimile' +p128969 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128970 +sg25268 +S'Coat of Arms of Shakespeare' +p128971 +sg25270 +S'Unknown 19th Century' +p128972 +sa(dp128973 +g25268 +S'The Ascension' +p128974 +sg25270 +S'Artist Information (' +p128975 +sg25273 +S'German, active c. 1470' +p128976 +sg25275 +S'(related artist)' +p128977 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4e2.jpg' +p128978 +sg25267 +g27 +sa(dp128979 +g25273 +S'Rosenwald Collection' +p128980 +sg25267 +g27 +sg25275 +S'\nengraving' +p128981 +sg25268 +S'Ex Libris Th. Vandenheede' +p128982 +sg25270 +S'Brochery' +p128983 +sa(dp128984 +g25273 +S'engraving' +p128985 +sg25267 +g27 +sg25275 +S'1611' +p128986 +sg25268 +S'Title Page for the Achievement of our Soveraigne King James' +p128987 +sg25270 +S'Jodocus Hondius I' +p128988 +sa(dp128989 +g25273 +S'engraving' +p128990 +sg25267 +g27 +sg25275 +S'1611' +p128991 +sg25268 +S'Title Page for the Achievement of our Soveraigne King James' +p128992 +sg25270 +S'Jodocus Hondius I' +p128993 +sa(dp128994 +g25273 +S'engraving' +p128995 +sg25267 +g27 +sg25275 +S'unknown date\n' +p128996 +sg25268 +S'Title Page to Angleterre' +p128997 +sg25270 +S'Unknown 19th Century' +p128998 +sa(dp128999 +g25273 +S'engraving' +p129000 +sg25267 +g27 +sg25275 +S'unknown date\n' +p129001 +sg25268 +S'Title Page: the Achievement of Our Sovereign King Charles the Second' +p129002 +sg25270 +S'Unknown 19th Century' +p129003 +sa(dp129004 +g25273 +S'engraving' +p129005 +sg25267 +g27 +sg25275 +S'1646' +p129006 +sg25268 +S'Title Page to Atlas Novus by William and JohnBlaev' +p129007 +sg25270 +S'Unknown 19th Century' +p129008 +sa(dp129009 +g25273 +S'engraving' +p129010 +sg25267 +g27 +sg25275 +S'published 1618' +p129011 +sg25268 +S'Title page, Baziliologia' +p129012 +sg25270 +S'Renold Elstrack' +p129013 +sa(dp129014 +g25273 +S'reprint' +p129015 +sg25267 +g27 +sg25275 +S'1532' +p129016 +sg25268 +S'Title Page to Clarissimi IV' +p129017 +sg25270 +S'Unknown 19th Century' +p129018 +sa(dp129019 +g25273 +S'engraving' +p129020 +sg25267 +g27 +sg25275 +S'published 1579' +p129021 +sg25268 +S'Title Page to De Republicae Anglorum by Thomas Chaloner' +p129022 +sg25270 +S'Unknown 19th Century' +p129023 +sa(dp129024 +g25273 +S'engraving' +p129025 +sg25267 +g27 +sg25275 +S'1611' +p129026 +sg25268 +S'Title Page to An Exact Geography by John Speed' +p129027 +sg25270 +S'Unknown 19th Century' +p129028 +sa(dp129029 +g25268 +S'Pentecost' +p129030 +sg25270 +S'Artist Information (' +p129031 +sg25273 +S'German, active c. 1470' +p129032 +sg25275 +S'(related artist)' +p129033 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4e3.jpg' +p129034 +sg25267 +g27 +sa(dp129035 +g25273 +S'engraving' +p129036 +sg25267 +g27 +sg25275 +S'published 1611' +p129037 +sg25268 +S'Title Page to An Exact Geography by John Speed' +p129038 +sg25270 +S'Unknown 19th Century' +p129039 +sa(dp129040 +g25273 +S'engraving' +p129041 +sg25267 +g27 +sg25275 +S'1676' +p129042 +sg25268 +S'Title Page: An Exact Geography by John Speed' +p129043 +sg25270 +S'Robert White' +p129044 +sa(dp129045 +g25273 +S', 1620' +p129046 +sg25267 +g27 +sg25275 +S'\n' +p129047 +sg25268 +S'Title page to Holland\'s "Herwologia"' +p129048 +sg25270 +S'Crispijn van de Passe I' +p129049 +sa(dp129050 +g25273 +S'engraving' +p129051 +sg25267 +g27 +sg25275 +S'1641' +p129052 +sg25268 +S'Title page, An History of the Civill Warres of England' +p129053 +sg25270 +S'Renold Elstrack' +p129054 +sa(dp129055 +g25273 +S'engraving' +p129056 +sg25267 +g27 +sg25275 +S'1611' +p129057 +sg25268 +S'Title Page to The History of Great Britaine by John Speed' +p129058 +sg25270 +S'Unknown 19th Century' +p129059 +sa(dp129060 +g25273 +S'engraving' +p129061 +sg25267 +g27 +sg25275 +S'1633' +p129062 +sg25268 +S'Title Page to Saturne Ephemerides by Henry Isaacson' +p129063 +sg25270 +S'William Marshall' +p129064 +sa(dp129065 +g25273 +S'engraving, colored' +p129066 +sg25267 +g27 +sg25275 +S'unknown date\n' +p129067 +sg25268 +S'Title Page to Urbium Praecipuarum Totius Mundi' +p129068 +sg25270 +S'Unknown 19th Century' +p129069 +sa(dp129070 +g25273 +S'engraving' +p129071 +sg25267 +g27 +sg25275 +S'unknown date\n' +p129072 +sg25268 +S'Title Page to Urbium Praecipuarum Mundi Theatrum Quintum' +p129073 +sg25270 +S'Unknown 19th Century' +p129074 +sa(dp129075 +g25273 +S'(artist after)' +p129076 +sg25267 +g27 +sg25275 +S'\n' +p129077 +sg25268 +S"William Hogarth's Business Card" +p129078 +sg25270 +S'Artist Information (' +p129079 +sa(dp129080 +g25268 +S"Christ's Descent in Limbo" +p129081 +sg25270 +S'Artist Information (' +p129082 +sg25273 +S'German, active c. 1470' +p129083 +sg25275 +S'(related artist)' +p129084 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4e4.jpg' +p129085 +sg25267 +g27 +sa(dp129086 +g25273 +S'engraving' +p129087 +sg25267 +g27 +sg25275 +S'1642' +p129088 +sg25268 +S'Untitled' +p129089 +sg25270 +S'Abraham Bosse' +p129090 +sa(dp129091 +g25273 +S'woodcut' +p129092 +sg25267 +g27 +sg25275 +S'c. 1710' +p129093 +sg25268 +S'Battle with Swords' +p129094 +sg25270 +S'Unknown 19th Century' +p129095 +sa(dp129096 +g25273 +S'(artist after)' +p129097 +sg25267 +g27 +sg25275 +S'\n' +p129098 +sg25268 +S'The Card Players' +p129099 +sg25270 +S'Artist Information (' +p129100 +sa(dp129101 +g25273 +S'woodcut' +p129102 +sg25267 +g27 +sg25275 +S'unknown date\n' +p129103 +sg25268 +S'Queen Elizabeth Memorial' +p129104 +sg25270 +S'Unknown 19th Century' +p129105 +sa(dp129106 +g25268 +S'Thomas Paine' +p129107 +sg25270 +S'John Wesley Jarvis' +p129108 +sg25273 +S'oil on canvas' +p129109 +sg25275 +S'c. 1806/1807' +p129110 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000117.jpg' +p129111 +sg25267 +g27 +sa(dp129112 +g25268 +S'Le Matin' +p129113 +sg25270 +S'Karl Bodmer' +p129114 +sg25273 +S'lithograph on Japan paper' +p129115 +sg25275 +S'unknown date\n' +p129116 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000efd2.jpg' +p129117 +sg25267 +g27 +sa(dp129118 +g25268 +S'Daims dans un Parc' +p129119 +sg25270 +S'Karl Bodmer' +p129120 +sg25273 +S'etching' +p129121 +sg25275 +S'unknown date\n' +p129122 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eefa.jpg' +p129123 +sg25267 +g27 +sa(dp129124 +g25268 +S'Les Deux Herons' +p129125 +sg25270 +S'Karl Bodmer' +p129126 +sg25273 +S'etching' +p129127 +sg25275 +S'unknown date\n' +p129128 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eef6.jpg' +p129129 +sg25267 +g27 +sa(dp129130 +g25268 +S'Entree de la rade de Rio-Janeiro' +p129131 +sg25270 +S'Artist Information (' +p129132 +sg25273 +S'(artist after)' +p129133 +sg25275 +S'\n' +p129134 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d55.jpg' +p129135 +sg25267 +g27 +sa(dp129136 +g25268 +S'Adam and Eve' +p129137 +sg25270 +S'Artist Information (' +p129138 +sg25273 +S'German, active c. 1470' +p129139 +sg25275 +S'(related artist)' +p129140 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4d7.jpg' +p129141 +sg25267 +g27 +sa(dp129142 +g25273 +S'lithograph in red, yellow-orange, brown, gray-black and gray-beige' +p129143 +sg25267 +g27 +sg25275 +S'1896' +p129144 +sg25268 +S'The Laundress' +p129145 +sg25270 +S'Pierre Bonnard' +p129146 +sa(dp129147 +g25268 +S'Family Scene, from Above' +p129148 +sg25270 +S'Pierre Bonnard' +p129149 +sg25273 +S'lithograph in beige, brown, brick red and green' +p129150 +sg25275 +S'1893' +p129151 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00010/a0001069.jpg' +p129152 +sg25267 +g27 +sa(dp129153 +g25273 +S'lithograph in brown, green and dark blue' +p129154 +sg25267 +g27 +sg25275 +S'c. 1896' +p129155 +sg25268 +S"L'Estampe et l'affiche" +p129156 +sg25270 +S'Pierre Bonnard' +p129157 +sa(dp129158 +g25273 +S'lithograph in green, blue, yellow, and brown-violet' +p129159 +sg25267 +g27 +sg25275 +S'1897' +p129160 +sg25268 +S'Boating' +p129161 +sg25270 +S'Pierre Bonnard' +p129162 +sa(dp129163 +g25273 +S'lithograph in two greens, violet and pink' +p129164 +sg25267 +g27 +sg25275 +S'1900' +p129165 +sg25268 +S'The Boulevards (Les Boulevards)' +p129166 +sg25270 +S'Pierre Bonnard' +p129167 +sa(dp129168 +g25268 +S'Frontispiece' +p129169 +sg25270 +S'Rodolphe Bresdin' +p129170 +sg25273 +S'lithograph' +p129171 +sg25275 +S'1878' +p129172 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009154.jpg' +p129173 +sg25267 +g27 +sa(dp129174 +g25268 +S'The Towns Behind the Marsh' +p129175 +sg25270 +S'Rodolphe Bresdin' +p129176 +sg25273 +S'lithograph' +p129177 +sg25275 +S'probably 1868' +p129178 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a000914f.jpg' +p129179 +sg25267 +g27 +sa(dp129180 +g25268 +S'The Stream in the Gorge' +p129181 +sg25270 +S'Rodolphe Bresdin' +p129182 +sg25273 +S'transfer lithograph' +p129183 +sg25275 +S'1880' +p129184 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a000914d.jpg' +p129185 +sg25267 +g27 +sa(dp129186 +g25268 +S'Flemish Interior' +p129187 +sg25270 +S'Rodolphe Bresdin' +p129188 +sg25273 +S'lithograph' +p129189 +sg25275 +S'1873' +p129190 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a000914b.jpg' +p129191 +sg25267 +g27 +sa(dp129192 +g25268 +S'Flemish Interior' +p129193 +sg25270 +S'Rodolphe Bresdin' +p129194 +sg25273 +S'etching' +p129195 +sg25275 +S'1876/1880' +p129196 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a000914c.jpg' +p129197 +sg25267 +g27 +sa(dp129198 +g25268 +S'The Expulsion from the Garden of Eden' +p129199 +sg25270 +S'Artist Information (' +p129200 +sg25273 +S'German, active c. 1470' +p129201 +sg25275 +S'(related artist)' +p129202 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4d8.jpg' +p129203 +sg25267 +g27 +sa(dp129204 +g25268 +S'Seascape' +p129205 +sg25270 +S'Rodolphe Bresdin' +p129206 +sg25273 +S'pen and ink on tracing paper' +p129207 +sg25275 +S'unknown date\n' +p129208 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072af.jpg' +p129209 +sg25267 +g27 +sa(dp129210 +g25268 +S'The Bathers (Small Plate)' +p129211 +sg25270 +S'Paul C\xc3\xa9zanne' +p129212 +sg25273 +S'color lithograph on china paper' +p129213 +sg25275 +S'1897' +p129214 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a000570a.jpg' +p129215 +sg25267 +g27 +sa(dp129216 +g25268 +S'Self-Portrait' +p129217 +sg25270 +S'Paul C\xc3\xa9zanne' +p129218 +sg25273 +S'lithograph in black' +p129219 +sg25275 +S'1898' +p129220 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f15.jpg' +p129221 +sg25267 +g27 +sa(dp129222 +g25268 +S'Seriez vous sensible?' +p129223 +sg25270 +S'Nicolas-Toussaint Charlet' +p129224 +sg25273 +S'lithograph' +p129225 +sg25275 +S'1823' +p129226 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009189.jpg' +p129227 +sg25267 +g27 +sa(dp129228 +g25268 +S"Ah! tr\xc3\xa8s bien j'en suis sur! malheureuse..." +p129229 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129230 +sg25273 +S'lithograph' +p129231 +sg25275 +S'1841' +p129232 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092fb.jpg' +p129233 +sg25267 +g27 +sa(dp129234 +g25268 +S"Ah vous trouvez que mon dernier roman n'est pas tout a fait..." +p129235 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129236 +sg25273 +S'lithograph' +p129237 +sg25275 +S'1844' +p129238 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000931a.jpg' +p129239 +sg25267 +g27 +sa(dp129240 +g25268 +S"L'Avocat que se trouve mal" +p129241 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129242 +sg25273 +S'lithograph' +p129243 +sg25275 +S'1846' +p129244 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000934b.jpg' +p129245 +sg25267 +g27 +sa(dp129246 +g25268 +S"Carotte de l'\xc3\xa9crin" +p129247 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129248 +sg25273 +S'lithograph' +p129249 +sg25275 +S'1844' +p129250 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009325.jpg' +p129251 +sg25267 +g27 +sa(dp129252 +g25268 +S'Carotte du voltigeur' +p129253 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129254 +sg25273 +S'lithograph' +p129255 +sg25275 +S'1844' +p129256 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000932a.jpg' +p129257 +sg25267 +g27 +sa(dp129258 +g25268 +S"C'est bien parce que c'est votre ami..." +p129259 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129260 +sg25273 +S'lithograph' +p129261 +sg25275 +S'1845' +p129262 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009363.jpg' +p129263 +sg25267 +g27 +sa(dp129264 +g25268 +S'The Annunciation' +p129265 +sg25270 +S'Artist Information (' +p129266 +sg25273 +S'German, active c. 1470' +p129267 +sg25275 +S'(related artist)' +p129268 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4d9.jpg' +p129269 +sg25267 +g27 +sa(dp129270 +g25268 +S"C'est singulier... il ne me vient plus d'id\xc3\xa9es... que..." +p129271 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129272 +sg25273 +S'lithograph' +p129273 +sg25275 +S'1844' +p129274 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000930e.jpg' +p129275 +sg25267 +g27 +sa(dp129276 +g25268 +S"Le Charivari reconnaissant a l'ann\xc3\xa9e 1841" +p129277 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129278 +sg25273 +S'lithograph' +p129279 +sg25275 +S'1841' +p129280 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000929e.jpg' +p129281 +sg25267 +g27 +sa(dp129282 +g25268 +S'Le Constitutionnel et le Juif errant' +p129283 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129284 +sg25273 +S'lithograph' +p129285 +sg25275 +S'1844' +p129286 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009324.jpg' +p129287 +sg25267 +g27 +sa(dp129288 +g25268 +S'Un D\xc3\xa9but a la chasse' +p129289 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129290 +sg25273 +S'lithograph' +p129291 +sg25275 +S'1844' +p129292 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092c0.jpg' +p129293 +sg25267 +g27 +sa(dp129294 +g25268 +S'Emportez donc \xc3\xa7a plus loin... impossible de travailler...' +p129295 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129296 +sg25273 +S'lithograph' +p129297 +sg25275 +S'1844' +p129298 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009318.jpg' +p129299 +sg25267 +g27 +sa(dp129300 +g25268 +S'Entrez Messieurs... voici de magnifiques...' +p129301 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129302 +sg25273 +S'lithograph' +p129303 +sg25275 +S'1844' +p129304 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009321.jpg' +p129305 +sg25267 +g27 +sa(dp129306 +g25268 +S"L'Ex-Colonel" +p129307 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129308 +sg25273 +S'lithograph' +p129309 +sg25275 +S'1842' +p129310 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009271.jpg' +p129311 +sg25267 +g27 +sa(dp129312 +g25268 +S'Une Femme comme moi... remettre un bouton?...' +p129313 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129314 +sg25273 +S'lithograph' +p129315 +sg25275 +S'1844' +p129316 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009314.jpg' +p129317 +sg25267 +g27 +sa(dp129318 +g25268 +S"Satan\xc3\xa9 piallard d'enfant va!..." +p129319 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129320 +sg25273 +S'lithograph' +p129321 +sg25275 +S'1844' +p129322 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000930a.jpg' +p129323 +sg25267 +g27 +sa(dp129324 +g25268 +S'Un Grand homme de plus' +p129325 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129326 +sg25273 +S'lithograph' +p129327 +sg25275 +S'1844' +p129328 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092d8.jpg' +p129329 +sg25267 +g27 +sa(dp129330 +g25268 +S'The Visitation' +p129331 +sg25270 +S'Artist Information (' +p129332 +sg25273 +S'German, active c. 1470' +p129333 +sg25275 +S'(related artist)' +p129334 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4da.jpg' +p129335 +sg25267 +g27 +sa(dp129336 +g25268 +S'Une Heureuse nouvelle' +p129337 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129338 +sg25273 +S'lithograph' +p129339 +sg25275 +S'1844' +p129340 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092c2.jpg' +p129341 +sg25267 +g27 +sa(dp129342 +g25268 +S'Ce Journal trouve mon ouvrage pitoyable...' +p129343 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129344 +sg25273 +S'lithograph' +p129345 +sg25275 +S'1844' +p129346 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000930b.jpg' +p129347 +sg25267 +g27 +sa(dp129348 +g25268 +S'Laissez dire un peu de mal de vous...' +p129349 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129350 +sg25273 +S'lithograph' +p129351 +sg25275 +S'1847' +p129352 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000934a.jpg' +p129353 +sg25267 +g27 +sa(dp129354 +g25268 +S"Monsieur voila vingt ans que je poursuis l'union de..." +p129355 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129356 +sg25273 +S'lithograph' +p129357 +sg25275 +S'1846' +p129358 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009373.jpg' +p129359 +sg25267 +g27 +sa(dp129360 +g25268 +S"O plaisir de l'opium que tu me ravis!..." +p129361 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129362 +sg25273 +S'lithograph' +p129363 +sg25275 +S'1844' +p129364 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009315.jpg' +p129365 +sg25267 +g27 +sa(dp129366 +g25268 +S'Quand le crime ne donne pas' +p129367 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129368 +sg25273 +S'lithograph' +p129369 +sg25275 +S'1848' +p129370 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009351.jpg' +p129371 +sg25267 +g27 +sa(dp129372 +g25268 +S'Quand on a brul\xc3\xa9 son dernier chevalet!' +p129373 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129374 +sg25273 +S'lithograph' +p129375 +sg25275 +S'1845' +p129376 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009331.jpg' +p129377 +sg25267 +g27 +sa(dp129378 +g25268 +S"Quelle heureuse rencontre!... C'est..." +p129379 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129380 +sg25273 +S'lithograph' +p129381 +sg25275 +S'1845' +p129382 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009366.jpg' +p129383 +sg25267 +g27 +sa(dp129384 +g25268 +S'Le Rajeunissement du Constitutionnel' +p129385 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129386 +sg25273 +S'lithograph' +p129387 +sg25275 +S'1844' +p129388 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009320.jpg' +p129389 +sg25267 +g27 +sa(dp129390 +g25268 +S'Rencontre de la payse' +p129391 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129392 +sg25273 +S'lithograph' +p129393 +sg25275 +S'1844' +p129394 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092c9.jpg' +p129395 +sg25267 +g27 +sa(dp129396 +g25268 +S'The Circumcision' +p129397 +sg25270 +S'Artist Information (' +p129398 +sg25273 +S'German, active c. 1470' +p129399 +sg25275 +S'(related artist)' +p129400 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4db.jpg' +p129401 +sg25267 +g27 +sa(dp129402 +g25268 +S'Rencontre de la payse' +p129403 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129404 +sg25273 +S'lithograph' +p129405 +sg25275 +S'1844' +p129406 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092c7.jpg' +p129407 +sg25267 +g27 +sa(dp129408 +g25268 +S'Un Retour de jeunesse' +p129409 +sg25270 +S'Honor\xc3\xa9 Daumier' +p129410 +sg25273 +S'lithograph' +p129411 +sg25275 +S'1845' +p129412 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092d6.jpg' +p129413 +sg25267 +g27 +sa(dp129414 +g25268 +S'Leaving the Bath (La sortie du bain)' +p129415 +sg25270 +S'Edgar Degas' +p129416 +sg25273 +S'electric crayon, etching, drypoint, and aquatint' +p129417 +sg25275 +S'c. 1879/1880' +p129418 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005bcb.jpg' +p129419 +sg25267 +g27 +sa(dp129420 +g25268 +S'Leaving the Bath (La sortie du bain)' +p129421 +sg25270 +S'Edgar Degas' +p129422 +sg25273 +S'electric crayon, etching, drypoint, and aquatint' +p129423 +sg25275 +S'c. 1879/1880' +p129424 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005bca.jpg' +p129425 +sg25267 +g27 +sa(dp129426 +g25268 +S'Tiger Sleeping in the Desert (Tigre couch\xc3\xa9 dans le d\xc3\xa9sert)' +p129427 +sg25270 +S'Eug\xc3\xa8ne Delacroix' +p129428 +sg25273 +S'etching' +p129429 +sg25275 +S'1846' +p129430 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a000988a.jpg' +p129431 +sg25267 +g27 +sa(dp129432 +g25273 +S'lithograph in pink and green' +p129433 +sg25267 +g27 +sg25275 +S'1943' +p129434 +sg25268 +S'The Annunciation' +p129435 +sg25270 +S'Maurice Denis' +p129436 +sa(dp129437 +g25273 +S'drypoint' +p129438 +sg25267 +g27 +sg25275 +S'c. 1910/1912' +p129439 +sg25268 +S'Landscape' +p129440 +sg25270 +S'Andr\xc3\xa9 Derain' +p129441 +sa(dp129442 +g25268 +S'Sortie du bain' +p129443 +sg25270 +S'Charles Georges Dufresne' +p129444 +sg25273 +S'etching' +p129445 +sg25275 +S'unknown date\n' +p129446 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a36a.jpg' +p129447 +sg25267 +g27 +sa(dp129448 +g25273 +S'woodcut' +p129449 +sg25267 +g27 +sg25275 +S'unknown date\n' +p129450 +sg25268 +S"L'Amour" +p129451 +sg25270 +S'Raoul Dufy' +p129452 +sa(dp129453 +g25273 +S'color lithograph' +p129454 +sg25267 +g27 +sg25275 +S'c. 1921' +p129455 +sg25268 +S'Baigneuse' +p129456 +sg25270 +S'Raoul Dufy' +p129457 +sa(dp129458 +g25268 +S'The Presentation in the Temple' +p129459 +sg25270 +S'Artist Information (' +p129460 +sg25273 +S'German, active c. 1470' +p129461 +sg25275 +S'(related artist)' +p129462 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4dc.jpg' +p129463 +sg25267 +g27 +sa(dp129464 +g25273 +S'woodcut' +p129465 +sg25267 +g27 +sg25275 +S'unknown date\n' +p129466 +sg25268 +S'La Chasse' +p129467 +sg25270 +S'Raoul Dufy' +p129468 +sa(dp129469 +g25273 +S'woodcut' +p129470 +sg25267 +g27 +sg25275 +S'unknown date\n' +p129471 +sg25268 +S'La Danse' +p129472 +sg25270 +S'Raoul Dufy' +p129473 +sa(dp129474 +g25273 +S'woodcut' +p129475 +sg25267 +g27 +sg25275 +S'c. 1910' +p129476 +sg25268 +S'La Peche' +p129477 +sg25270 +S'Raoul Dufy' +p129478 +sa(dp129479 +g25273 +S'lithograph' +p129480 +sg25267 +g27 +sg25275 +S'c. 1925' +p129481 +sg25268 +S'Le Golfe Juan' +p129482 +sg25270 +S'Raoul Dufy' +p129483 +sa(dp129484 +g25273 +S'etching' +p129485 +sg25267 +g27 +sg25275 +S'unknown date\n' +p129486 +sg25268 +S'Self-Portrait with Cat' +p129487 +sg25270 +S'Tsugouharu Foujita' +p129488 +sa(dp129489 +g25273 +S'mezzotint' +p129490 +sg25267 +g27 +sg25275 +S'unknown date\n' +p129491 +sg25268 +S'Still Life' +p129492 +sg25270 +S'Demetrius-Emmanuel Galanis' +p129493 +sa(dp129494 +g25268 +S'The Laundresses (Les blanchisseuses (La repassage))' +p129495 +sg25270 +S'Edgar Degas' +p129496 +sg25273 +S'etching and aquatint' +p129497 +sg25275 +S'c. 1879' +p129498 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009806.jpg' +p129499 +sg25267 +g27 +sa(dp129500 +g25268 +S'Bouddha (Buddha)' +p129501 +sg25270 +S'Paul Gauguin' +p129502 +sg25273 +S'woodcut in brown-black on japan paper' +p129503 +sg25275 +S'in or after 1895' +p129504 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a0006697.jpg' +p129505 +sg25267 +g27 +sa(dp129506 +g25268 +S'The Ox Cart (Le char a boeufs)' +p129507 +sg25270 +S'Paul Gauguin' +p129508 +sg25273 +S'woodcut on japan paper' +p129509 +sg25275 +S'in or after 1895' +p129510 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066b9.jpg' +p129511 +sg25267 +g27 +sa(dp129512 +g25268 +S'Dramas of the Sea: A Descent into the Maelstrom (Les drames de la mer)' +p129513 +sg25270 +S'Artist Information (' +p129514 +sg25273 +S'French, active 1860s/1890s' +p129515 +sg25275 +S'(printer)' +p129516 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a71.jpg' +p129517 +sg25267 +g27 +sa(dp129518 +g25268 +S'Saint Jerome in the Wilderness' +p129519 +sg25270 +S'Artist Information (' +p129520 +sg25273 +S'Italian, c. 1431 - 1506' +p129521 +sg25275 +S'(related artist)' +p129522 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f64.jpg' +p129523 +sg25267 +g27 +sa(dp129524 +g25268 +S'Christ Washing the Feet of the Apostles' +p129525 +sg25270 +S'Artist Information (' +p129526 +sg25273 +S'German, active c. 1470' +p129527 +sg25275 +S'(related artist)' +p129528 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4dd.jpg' +p129529 +sg25267 +g27 +sa(dp129530 +g25268 +S"The Rape of Europa (L'enlevement d'Europe)" +p129531 +sg25270 +S'Paul Gauguin' +p129532 +sg25273 +S'woodcut on chine coll?, with a fragment of another print on back of mount' +p129533 +sg25275 +S'in or after 1895' +p129534 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066b8.jpg' +p129535 +sg25267 +g27 +sa(dp129536 +g25268 +S'Women, Animals and Foliage (Femmes, animaux et feuillages)' +p129537 +sg25270 +S'Paul Gauguin' +p129538 +sg25273 +S'woodcut in black' +p129539 +sg25275 +S'in or after 1895' +p129540 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a82.jpg' +p129541 +sg25267 +g27 +sa(dp129542 +g25268 +S'Woman Picking Fruit and the Savage (Femme cueillant des fruits et oviri)' +p129543 +sg25270 +S'Paul Gauguin' +p129544 +sg25273 +S'woodcut in black' +p129545 +sg25275 +S'1894/1895' +p129546 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a000670c.jpg' +p129547 +sg25267 +g27 +sa(dp129548 +g25268 +S'St\xc3\xa9phane Mallarm\xc3\xa9' +p129549 +sg25270 +S'Paul Gauguin' +p129550 +sg25273 +S'etching in brown' +p129551 +sg25275 +S'1891' +p129552 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000997e.jpg' +p129553 +sg25267 +g27 +sa(dp129554 +g25268 +S'Plate with the Head of a Horned Devil (Planche au diable cornu)' +p129555 +sg25270 +S'Paul Gauguin' +p129556 +sg25273 +S'woodcut on very thin japan paper' +p129557 +sg25275 +S'in or after 1895' +p129558 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a000671c.jpg' +p129559 +sg25267 +g27 +sa(dp129560 +g25268 +S'Be in Love and You will be Happy (Soyez amoureuses, vous serez heureuses)' +p129561 +sg25270 +S'Paul Gauguin' +p129562 +sg25273 +S'woodcut in light brown and black on chine coll?' +p129563 +sg25275 +S'in or after 1895' +p129564 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a0006686.jpg' +p129565 +sg25267 +g27 +sa(dp129566 +g25268 +S'Te Faruru (They are Making Love Here)' +p129567 +sg25270 +S'Paul Gauguin' +p129568 +sg25273 +S'woodcut printed in beige, red and black by Louis Roy' +p129569 +sg25275 +S'1894/1895' +p129570 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a75.jpg' +p129571 +sg25267 +g27 +sa(dp129572 +g25268 +S'Title Page for "Le Sourire" (Titre du Sourire)' +p129573 +sg25270 +S'Paul Gauguin' +p129574 +sg25273 +S'woodcut on japan paper' +p129575 +sg25275 +S'in or after 1895' +p129576 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066dd.jpg' +p129577 +sg25267 +g27 +sa(dp129578 +g25268 +S"The Universe is Created (L'Univers est cree)" +p129579 +sg25270 +S'Paul Gauguin' +p129580 +sg25273 +S'woodcut printed in red-brown, red and black by Louis Roy' +p129581 +sg25275 +S'c. 1894' +p129582 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a0006736.jpg' +p129583 +sg25267 +g27 +sa(dp129584 +g25268 +S'The Last Supper' +p129585 +sg25270 +S'Artist Information (' +p129586 +sg25273 +S'German, active c. 1470' +p129587 +sg25275 +S'(related artist)' +p129588 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4d1.jpg' +p129589 +sg25267 +g27 +sa(dp129590 +g25268 +S'An Arabian Horse' +p129591 +sg25270 +S'Th\xc3\xa9odore Gericault' +p129592 +sg25273 +S'lithograph' +p129593 +sg25275 +S'1821' +p129594 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009ac0.jpg' +p129595 +sg25267 +g27 +sa(dp129596 +g25268 +S'Groom Mounted on a Carriage-Horse (Cheval de carrosse monte par un palfrenier)' +p129597 +sg25270 +S'Th\xc3\xa9odore Gericault' +p129598 +sg25273 +S'lithograph' +p129599 +sg25275 +S'1820' +p129600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009ab6.jpg' +p129601 +sg25267 +g27 +sa(dp129602 +g25268 +S'The Coal Waggon' +p129603 +sg25270 +S'Th\xc3\xa9odore Gericault' +p129604 +sg25273 +S'lithograph' +p129605 +sg25275 +S'1821' +p129606 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009abf.jpg' +p129607 +sg25267 +g27 +sa(dp129608 +g25268 +S'A Party of Life Guards' +p129609 +sg25270 +S'Th\xc3\xa9odore Gericault' +p129610 +sg25273 +S'lithograph' +p129611 +sg25275 +S'1821' +p129612 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f6a.jpg' +p129613 +sg25267 +g27 +sa(dp129614 +g25268 +S'Grasp All, Lose All (Qui trop embrasse, mal etrient)' +p129615 +sg25270 +S'baron Pierre-Narcisse Guerin' +p129616 +sg25273 +S'lithograph' +p129617 +sg25275 +S'c. 1816' +p129618 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a65.jpg' +p129619 +sg25267 +g27 +sa(dp129620 +g25268 +S'Four Magistrates of Besan\xc3\xa7on (Quatre magistrats de Besan\xc3\xa7on)' +p129621 +sg25270 +S'Jean-Auguste-Dominique Ingres' +p129622 +sg25273 +S'lithograph' +p129623 +sg25275 +S'1825' +p129624 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004fc3.jpg' +p129625 +sg25267 +g27 +sa(dp129626 +g25268 +S'Environs de Dieppe' +p129627 +sg25270 +S'Eug\xc3\xa8ne Isabey' +p129628 +sg25273 +S'lithograph' +p129629 +sg25275 +S'1833' +p129630 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009ade.jpg' +p129631 +sg25267 +g27 +sa(dp129632 +g25268 +S'Mar\xc3\xa9e Basse' +p129633 +sg25270 +S'Eug\xc3\xa8ne Isabey' +p129634 +sg25273 +S'lithograph' +p129635 +sg25275 +S'1833' +p129636 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009ae4.jpg' +p129637 +sg25267 +g27 +sa(dp129638 +g25268 +S'Eglise Saint-Jean, Thiers' +p129639 +sg25270 +S'Eug\xc3\xa8ne Isabey' +p129640 +sg25273 +S'lithograph' +p129641 +sg25275 +S'1831' +p129642 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009ae5.jpg' +p129643 +sg25267 +g27 +sa(dp129644 +g25268 +S'Rue des Gras \xc3\xa0 Clermont' +p129645 +sg25270 +S'Eug\xc3\xa8ne Isabey' +p129646 +sg25273 +S'lithograph' +p129647 +sg25275 +S'1830' +p129648 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009adc.jpg' +p129649 +sg25267 +g27 +sa(dp129650 +g25268 +S'Christ on the Mount of Olives' +p129651 +sg25270 +S'Artist Information (' +p129652 +sg25273 +S'German, active c. 1470' +p129653 +sg25275 +S'(related artist)' +p129654 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4d2.jpg' +p129655 +sg25267 +g27 +sa(dp129656 +g25268 +S'Crepuscule poetique (Poetical Twilight)' +p129657 +sg25270 +S'Charles \xc3\x89mile Jacque' +p129658 +sg25273 +S'lithograph' +p129659 +sg25275 +S'unknown date\n' +p129660 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009afa.jpg' +p129661 +sg25267 +g27 +sa(dp129662 +g25268 +S'Holland Canal, near Rotterdam (Canal de Hollande, pres de Rotterdam (Hiver))' +p129663 +sg25270 +S'Johan Barthold Jongkind' +p129664 +sg25273 +S'etching' +p129665 +sg25275 +S'1875' +p129666 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d6a1.jpg' +p129667 +sg25267 +g27 +sa(dp129668 +g25273 +S'etching and engraving' +p129669 +sg25267 +g27 +sg25275 +S'1925' +p129670 +sg25268 +S"Print Connoisseurs (Les amateurs d'estampes)" +p129671 +sg25270 +S'Jean-\xc3\x89mile Laboureur' +p129672 +sa(dp129673 +g25268 +S'A Haarlem' +p129674 +sg25270 +S'Maxime Lalanne' +p129675 +sg25273 +S'etching' +p129676 +sg25275 +S'1877' +p129677 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b08.jpg' +p129678 +sg25267 +g27 +sa(dp129679 +g25273 +S'etching' +p129680 +sg25267 +g27 +sg25275 +S'unknown date\n' +p129681 +sg25268 +S'Nude' +p129682 +sg25270 +S'Andr\xc3\xa9 Lhote' +p129683 +sa(dp129684 +g25273 +S'woodcut' +p129685 +sg25267 +g27 +sg25275 +S'unknown date\n' +p129686 +sg25268 +S"Pastoral: Shepherd Playing a Harmonica (Pastorale: Berger jouant de l'harmonica)" +p129687 +sg25270 +S'Aristide Maillol' +p129688 +sa(dp129689 +g25273 +S'etching' +p129690 +sg25267 +g27 +sg25275 +S'1927' +p129691 +sg25268 +S'Woman Kneeling on Her Left Knee with Elbow onthe Right Knee (Femme agenouilee sur le genou gauche, le coude sur le genou droit)' +p129692 +sg25270 +S'Aristide Maillol' +p129693 +sa(dp129694 +g25273 +S'lithograph' +p129695 +sg25267 +g27 +sg25275 +S'1935' +p129696 +sg25268 +S'Ovid\'s "The Art of Love" ("L\'art d\'aimer" d\'Ovide)' +p129697 +sg25270 +S'Aristide Maillol' +p129698 +sa(dp129699 +g25273 +S'lithograph' +p129700 +sg25267 +g27 +sg25275 +S'1935' +p129701 +sg25268 +S'Ovid\'s "The Art of Love" ("L\'art d\'aimer d\'Ovide)' +p129702 +sg25270 +S'Aristide Maillol' +p129703 +sa(dp129704 +g25273 +S'lithograph' +p129705 +sg25267 +g27 +sg25275 +S'1935' +p129706 +sg25268 +S'Ovid\'s "The Art of Love" ("L\'art d\'aimer" d\'Ovide)' +p129707 +sg25270 +S'Aristide Maillol' +p129708 +sa(dp129709 +g25268 +S'Christ Crowned with Thorns' +p129710 +sg25270 +S'Artist Information (' +p129711 +sg25273 +S'German, active c. 1470' +p129712 +sg25275 +S'(related artist)' +p129713 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4d3.jpg' +p129714 +sg25267 +g27 +sa(dp129715 +g25273 +S'lithograph' +p129716 +sg25267 +g27 +sg25275 +S'1935' +p129717 +sg25268 +S'Ovid\'s "The Art of Love" ("L\'art d\'aimer" d\'Ovide)' +p129718 +sg25270 +S'Aristide Maillol' +p129719 +sa(dp129720 +g25273 +S'lithograph' +p129721 +sg25267 +g27 +sg25275 +S'1935' +p129722 +sg25268 +S'Ovid\'s "The Art of Love" ("L\'art d\'aimer" d\'Ovide)' +p129723 +sg25270 +S'Aristide Maillol' +p129724 +sa(dp129725 +g25273 +S'lithograph' +p129726 +sg25267 +g27 +sg25275 +S'1935' +p129727 +sg25268 +S'Ovid\'s "The Art of Love" ("L\'art d\'aimer" d\'Ovide)' +p129728 +sg25270 +S'Aristide Maillol' +p129729 +sa(dp129730 +g25273 +S'lithograph' +p129731 +sg25267 +g27 +sg25275 +S'1935' +p129732 +sg25268 +S'Ovid\'s "The Art of Love" ("L\'art d\'aimer" d\'Ovide)' +p129733 +sg25270 +S'Aristide Maillol' +p129734 +sa(dp129735 +g25273 +S'lithograph' +p129736 +sg25267 +g27 +sg25275 +S'1935' +p129737 +sg25268 +S'Ovid\'s "The Art of Love" ("L\'art d\'aimer" d\'Ovide)' +p129738 +sg25270 +S'Aristide Maillol' +p129739 +sa(dp129740 +g25268 +S'Line in Front of the Butcher Shop (Queue devant la boucherie)' +p129741 +sg25270 +S'Edouard Manet' +p129742 +sg25273 +S'etching' +p129743 +sg25275 +S'1870' +p129744 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d00.jpg' +p129745 +sg25267 +g27 +sa(dp129746 +g25268 +S'Gauguin' +p129747 +sg25270 +S'Georges Daniel de Monfreid' +p129748 +sg25273 +S'woodcut in black on japan paper' +p129749 +sg25275 +S'1924' +p129750 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009949.jpg' +p129751 +sg25267 +g27 +sa(dp129752 +g25268 +S'Music Title' +p129753 +sg25270 +S'C\xc3\xa9lestin Nanteuil' +p129754 +sg25273 +S'graphite on thin wove paper' +p129755 +sg25275 +S'unknown date\n' +p129756 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000706d.jpg' +p129757 +sg25267 +g27 +sa(dp129758 +g25268 +S'Music Title' +p129759 +sg25270 +S'C\xc3\xa9lestin Nanteuil' +p129760 +sg25273 +S'lithograph' +p129761 +sg25275 +S'unknown date\n' +p129762 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dad.jpg' +p129763 +sg25267 +g27 +sa(dp129764 +g25268 +S'Portrait of a Man' +p129765 +sg25270 +S'Giuseppe de Nittis' +p129766 +sg25273 +S'etching [trial proof]' +p129767 +sg25275 +S'unknown date\n' +p129768 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc5d.jpg' +p129769 +sg25267 +g27 +sa(dp129770 +g25268 +S'The Expulsion from the Garden of Eden' +p129771 +sg25270 +S'Artist Information (' +p129772 +sg25273 +S'German, active c. 1460/1480' +p129773 +sg25275 +S'(related artist)' +p129774 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4f5.jpg' +p129775 +sg25267 +g27 +sa(dp129776 +g25268 +S'Bal Tabarin' +p129777 +sg25270 +S'Jules Pascin' +p129778 +sg25273 +S'drypoint' +p129779 +sg25275 +S'unknown date\n' +p129780 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a1/a000a15d.jpg' +p129781 +sg25267 +g27 +sa(dp129782 +g25268 +S'Four Women' +p129783 +sg25270 +S'Jules Pascin' +p129784 +sg25273 +S'drypoint' +p129785 +sg25275 +S'unknown date\n' +p129786 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a1/a000a162.jpg' +p129787 +sg25267 +g27 +sa(dp129788 +g25268 +S'Sculptors, Models, and Sculpture (Sculpteurs, mod\xc3\xa8les et sculpture)' +p129789 +sg25270 +S'Pablo Picasso' +p129790 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129791 +sg25275 +S'1933' +p129792 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee44.jpg' +p129793 +sg25267 +g27 +sa(dp129794 +g25268 +S'Two Women Looking at a Sculpted Head (Deux femmes regardant une t\xc3\xaate sculpt\xc3\xa9e)' +p129795 +sg25270 +S'Pablo Picasso' +p129796 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129797 +sg25275 +S'1933' +p129798 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee43.jpg' +p129799 +sg25267 +g27 +sa(dp129800 +g25268 +S'Model, Painting, and Sculpture (Mod\xc3\xa8le, tableau et sculpture)' +p129801 +sg25270 +S'Pablo Picasso' +p129802 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129803 +sg25275 +S'1933' +p129804 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee42.jpg' +p129805 +sg25267 +g27 +sa(dp129806 +g25268 +S'Sculptor, Model, Scupture, and a Goldfish (Sculpteur, mod\xc3\xa8le, sculpture et poisson rouge)' +p129807 +sg25270 +S'Pablo Picasso' +p129808 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129809 +sg25275 +S'1933' +p129810 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee41.jpg' +p129811 +sg25267 +g27 +sa(dp129812 +g25268 +S'Sculptor with His Model and Sculpture of Her Head (Sculpteur avec son mod\xc3\xa8le et sa sculpture)' +p129813 +sg25270 +S'Pablo Picasso' +p129814 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129815 +sg25275 +S'1933' +p129816 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee3f.jpg' +p129817 +sg25267 +g27 +sa(dp129818 +g25268 +S'Sculptor Reclining with an Unmasked Model and Her Sculpted Representation (Sculpteur au repos avec mod\xc3\xa8le d\xc3\xa9masqu\xc3\xa9 et sa repr\xc3\xa9sentation sculpt\xc3\xa9e)' +p129819 +sg25270 +S'Pablo Picasso' +p129820 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129821 +sg25275 +S'1933' +p129822 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee3a.jpg' +p129823 +sg25267 +g27 +sa(dp129824 +g25268 +S'Young Sculptor Finishing a Plaster (Jeune sculpteur finissant un pl\xc3\xa2tre)' +p129825 +sg25270 +S'Pablo Picasso' +p129826 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129827 +sg25275 +S'1933' +p129828 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee3d.jpg' +p129829 +sg25267 +g27 +sa(dp129830 +g25268 +S'Old Sculptor at Work (Vieux sculpteur au travail I)' +p129831 +sg25270 +S'Pablo Picasso' +p129832 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129833 +sg25275 +S'1933' +p129834 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee40.jpg' +p129835 +sg25267 +g27 +sa(dp129836 +g25268 +S'The Visitation' +p129837 +sg25270 +S'Artist Information (' +p129838 +sg25273 +S'German, active c. 1460/1480' +p129839 +sg25275 +S'(related artist)' +p129840 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4f6.jpg' +p129841 +sg25267 +g27 +sa(dp129842 +g25268 +S'Old Sculptor at Work (Vieux sculpteur au travail II)' +p129843 +sg25270 +S'Pablo Picasso' +p129844 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129845 +sg25275 +S'1933' +p129846 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee3b.jpg' +p129847 +sg25267 +g27 +sa(dp129848 +g25268 +S'Sculptor with His Self-Portrait Serving as a Pedestal for a Head of Marie-Th\xc3\xa9r\xc3\xa8se (Sculpteur et son autoportrait sculpt\xc3\xa9 servant de socle \xc3\xa0 une t\xc3\xaate de Marie-Th\xc3\xa9r\xc3\xa8se)' +p129849 +sg25270 +S'Pablo Picasso' +p129850 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129851 +sg25275 +S'1933' +p129852 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee3c.jpg' +p129853 +sg25267 +g27 +sa(dp129854 +g25268 +S'Sculptor Reclining with Marie-Th\xc3\xa9r\xc3\xa8se and Her Representation as a Chaste Venus (Sculpteur au repos avec Marie-Th\xc3\xa9r\xc3\xa8se et sa repr\xc3\xa9sentation en V\xc3\xa9nus pudique)' +p129855 +sg25270 +S'Pablo Picasso' +p129856 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129857 +sg25275 +S'1933' +p129858 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee39.jpg' +p129859 +sg25267 +g27 +sa(dp129860 +g25268 +S'A Young Greek Sculptor with Sculptures of a Man and an Ephebe (Jeune sculpteur Grec avec sa sculpture: un homme et un \xc3\xa9ph\xc3\xa8be)' +p129861 +sg25270 +S'Pablo Picasso' +p129862 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129863 +sg25275 +S'1933' +p129864 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee38.jpg' +p129865 +sg25267 +g27 +sa(dp129866 +g25268 +S'Sculptor Reclining with His Model before a Small Torso (Sculpteur au repos avec son mod\xc3\xa8le, an\xc3\xa9mones et Petit Torse)' +p129867 +sg25270 +S'Pablo Picasso' +p129868 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129869 +sg25275 +S'1933' +p129870 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee52.jpg' +p129871 +sg25267 +g27 +sa(dp129872 +g25268 +S'Sculptor and His Model with a Sculpture Group of Athletes (Sculpteur et son mod\xc3\xa8le avec un groupe sculpt\xc3\xa9 repr\xc3\xa9sentant des athl\xc3\xa8tes)' +p129873 +sg25270 +S'Pablo Picasso' +p129874 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129875 +sg25275 +S'1933' +p129876 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee48.jpg' +p129877 +sg25267 +g27 +sa(dp129878 +g25268 +S'Sculptor and His Model with a Sculpture Group of a Horse and Groomer (Sculpteur et son mod\xc3\xa8le avec un groupe sculpt\xc3\xa9 repr\xc3\xa9sentant un dresseur de chevaux)' +p129879 +sg25270 +S'Pablo Picasso' +p129880 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129881 +sg25275 +S'1933' +p129882 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee47.jpg' +p129883 +sg25267 +g27 +sa(dp129884 +g25268 +S"Sculptor, Model, and Boy with a Sculpture Representing the Abduction of Europa (Sculpteur, gar\xc3\xa7on et mod\xc3\xa8le avec un groupe sculpt\xc3\xa9 repr\xc3\xa9sentant le rapt d'Europe)" +p129885 +sg25270 +S'Pablo Picasso' +p129886 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129887 +sg25275 +S'1933' +p129888 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee53.jpg' +p129889 +sg25267 +g27 +sa(dp129890 +g25268 +S'Sculptor and Model with a Sculpture Representing a Bull Attacking Horses (Sculpteur et son mod\xc3\xa8le avec un groupe sculpt\xc3\xa9 repr\xc3\xa9sentant un taureau attaquant des chevaux)' +p129891 +sg25270 +S'Pablo Picasso' +p129892 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129893 +sg25275 +S'1933' +p129894 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee49.jpg' +p129895 +sg25267 +g27 +sa(dp129896 +g25268 +S'Sculptor and Model with a Sculpture Representing a Centaur Kissing a Woman (Sculpteur et son mod\xc3\xa8le avec un groupe sculpt\xc3\xa9 repr\xc3\xa9sentant un centaure embrassant une femme)' +p129897 +sg25270 +S'Pablo Picasso' +p129898 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129899 +sg25275 +S'1933' +p129900 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee4a.jpg' +p129901 +sg25267 +g27 +sa(dp129902 +g25268 +S'The Crucifixion' +p129903 +sg25270 +S'Artist Information (' +p129904 +sg25273 +S'German, active c. 1460/1480' +p129905 +sg25275 +S'(related artist)' +p129906 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4f7.jpg' +p129907 +sg25267 +g27 +sa(dp129908 +g25268 +S'Sculptor at Rest and Surrealist Sculpture (Lerepos du sculpteur et la sculpture surr ealiste)' +p129909 +sg25270 +S'Pablo Picasso' +p129910 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129911 +sg25275 +S'1933' +p129912 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee4c.jpg' +p129913 +sg25267 +g27 +sa(dp129914 +g25268 +S'Sculptor at Work with Marie-Th\xc3\xa9r\xc3\xa8se Posing (Sculpteur travaillant sur le motif avec Marie-Th\xc3\xa9r\xc3\xa8se posant)' +p129915 +sg25270 +S'Pablo Picasso' +p129916 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129917 +sg25275 +S'1933' +p129918 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee4b.jpg' +p129919 +sg25267 +g27 +sa(dp129920 +g25268 +S'Model and Large Sculpted Head (Modele et grande tete sculptee)' +p129921 +sg25270 +S'Pablo Picasso' +p129922 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129923 +sg25275 +S'1933' +p129924 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee4d.jpg' +p129925 +sg25267 +g27 +sa(dp129926 +g25268 +S'Sculptor at Rest I (Le repos du sculpteur I)' +p129927 +sg25270 +S'Pablo Picasso' +p129928 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129929 +sg25275 +S'1933' +p129930 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee4e.jpg' +p129931 +sg25267 +g27 +sa(dp129932 +g25268 +S'Sculptor at Rest II (Le repos du sculpteur II)' +p129933 +sg25270 +S'Pablo Picasso' +p129934 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129935 +sg25275 +S'1933' +p129936 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee4f.jpg' +p129937 +sg25267 +g27 +sa(dp129938 +g25268 +S'Sculptor at Rest III (Le repos du sculpteur III)' +p129939 +sg25270 +S'Pablo Picasso' +p129940 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129941 +sg25275 +S'1933' +p129942 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee50.jpg' +p129943 +sg25267 +g27 +sa(dp129944 +g25268 +S'Sculptor at Rest IV (Le repos du sculpteur IV)' +p129945 +sg25270 +S'Pablo Picasso' +p129946 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129947 +sg25275 +S'1933' +p129948 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee51.jpg' +p129949 +sg25267 +g27 +sa(dp129950 +g25268 +S'Model Contemplating a Sculpted Group (Modele contemplant un groupe sculpte)' +p129951 +sg25270 +S'Pablo Picasso' +p129952 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129953 +sg25275 +S'1933' +p129954 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee45.jpg' +p129955 +sg25267 +g27 +sa(dp129956 +g25268 +S"Three Nudes and a Basin of Anemones (Trois femmes nues et une coupe d'an\xc3\xa9mones)" +p129957 +sg25270 +S'Pablo Picasso' +p129958 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129959 +sg25275 +S'1933' +p129960 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee62.jpg' +p129961 +sg25267 +g27 +sa(dp129962 +g25268 +S'Pensive Sculptor, Model with Black Hair, and a Bowl with Three Anemones (Sculpteur songeant, mod\xc3\xa8le aux cheveux noirs, et bol avec trois an\xc3\xa9mones)' +p129963 +sg25270 +S'Pablo Picasso' +p129964 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129965 +sg25275 +S'1933' +p129966 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee61.jpg' +p129967 +sg25267 +g27 +sa(dp129968 +g25268 +S'The Resurrection' +p129969 +sg25270 +S'Artist Information (' +p129970 +sg25273 +S'German, active c. 1460/1480' +p129971 +sg25275 +S'(related artist)' +p129972 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4f8.jpg' +p129973 +sg25267 +g27 +sa(dp129974 +g25268 +S'Sculptor and Model Looking at a Mirror Leaning against a Sculpted Self-Portrait (Sculpteur et mod\xc3\xa8le se regardant dans un miroir cal\xc3\xa9 sur un autoportrait sculpt\xc3\xa9)' +p129975 +sg25270 +S'Pablo Picasso' +p129976 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129977 +sg25275 +S'1933' +p129978 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee60.jpg' +p129979 +sg25267 +g27 +sa(dp129980 +g25268 +S'Marie-Th\xc3\xa9r\xc3\xa8se, the Sculptor at Work, and a Sculpture Representing a Greek Athlete (Marie-Th\xc3\xa9r\xc3\xa8se, sculpteur au travail et sculpture repr\xc3\xa9sentant un athl\xc3\xa8te grec' +p129981 +sg25270 +S'Pablo Picasso' +p129982 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p129983 +sg25275 +S'1933' +p129984 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee5a.jpg' +p129985 +sg25267 +g27 +sa(dp129986 +g25268 +S"The Maid in the Sculpture Studio (La Bonne dans l'atelier de sculpture)" +p129987 +sg25270 +S'Pablo Picasso' +p129988 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p129989 +sg25275 +S'1933' +p129990 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee5d.jpg' +p129991 +sg25267 +g27 +sa(dp129992 +g25268 +S"An Unattractive Woman Before the Sculpture of an Athletic Marie-Th\xc3\xa9r\xc3\xa8se Leaning on a Self-Portrait of the Sculptor (Femme laide devant la sculpture d'une Marie-Th\xc3\xa9r\xc3\xa8se athl\xc3\xa9tique sur un autoportrait du sculpteur)" +p129993 +sg25270 +S'Pablo Picasso' +p129994 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p129995 +sg25275 +S'1933' +p129996 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee5e.jpg' +p129997 +sg25267 +g27 +sa(dp129998 +g25268 +S'Marie-Th\xc3\xa9r\xc3\xa8se Looking at Her Sculpted Body (Marie-Th\xc3\xa9r\xc3\xa8se regardant son corps sculpt\xc3\xa9)' +p129999 +sg25270 +S'Pablo Picasso' +p130000 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130001 +sg25275 +S'1933' +p130002 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee56.jpg' +p130003 +sg25267 +g27 +sa(dp130004 +g25268 +S'Marie-Th\xc3\xa9r\xc3\xa8se Considering a Surrealist Sculpture of Her Effigy (Marie-Th\xc3\xa9r\xc3\xa8se consid\xc3\xa9rant son effigie surr\xc3\xa9aliste sculpt\xc3\xa9e)' +p130005 +sg25270 +S'Pablo Picasso' +p130006 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130007 +sg25275 +S'1933' +p130008 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee55.jpg' +p130009 +sg25267 +g27 +sa(dp130010 +g25268 +S"Anxious and Introspective Woman in the Sculptor's Studio (Femme songeuse et inqui\xc3\xa8te dans l'atelier de sculpteur)" +p130011 +sg25270 +S'Pablo Picasso' +p130012 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130013 +sg25275 +S'1933' +p130014 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee54.jpg' +p130015 +sg25267 +g27 +sa(dp130016 +g25268 +S'Sculptures Representing Marie-Th\xc3\xa9r\xc3\xa8se and the Head of the Sculptor, with a Vase of Three Flowers (Sculptures repr\xc3\xa9sentant Marie-Th\xc3\xa9r\xc3\xa8se et la t\xc3\xaate du sculpteur, avec le vase aux trois fleurs)' +p130017 +sg25270 +S'Pablo Picasso' +p130018 +sg25273 +S'etching and aquatint [printed in 1939 by Roger Lacouriere]' +p130019 +sg25275 +S'1933' +p130020 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee57.jpg' +p130021 +sg25267 +g27 +sa(dp130022 +g25268 +S'Sculptor, Reclining Model, and Self-Portrait in the Form of a Sculpted Hercules (Sculpteur, mod\xc3\xa8le couch\xc3\xa9 et autoportrait en Hercule sculpt\xc3\xa9)' +p130023 +sg25270 +S'Pablo Picasso' +p130024 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p130025 +sg25275 +S'1933' +p130026 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee36.jpg' +p130027 +sg25267 +g27 +sa(dp130028 +g25268 +S'Model and Sculptor with a Sculpted Bust of the Model (Mod\xc3\xa8le et sculpteur avec sa sculpture)' +p130029 +sg25270 +S'Pablo Picasso' +p130030 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p130031 +sg25275 +S'1933' +p130032 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee37.jpg' +p130033 +sg25267 +g27 +sa(dp130034 +g25268 +S'Christ Appearing to Thomas' +p130035 +sg25270 +S'Artist Information (' +p130036 +sg25273 +S'German, active c. 1460/1480' +p130037 +sg25275 +S'(related artist)' +p130038 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4f9.jpg' +p130039 +sg25267 +g27 +sa(dp130040 +g25268 +S"Sculptor with his Model, a Sculpture of Her Head, and a Bowl of Anemones (Sculpteur avec son mod\xc3\xa8le, sa sculpture et un bol d'an\xc3\xa9mones)" +p130041 +sg25270 +S'Pablo Picasso' +p130042 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p130043 +sg25275 +S'1933' +p130044 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee3e.jpg' +p130045 +sg25267 +g27 +sa(dp130046 +g25268 +S'Sculptor, Model, and Sculpture (Sculpteur, mod\xc3\xa8le et sculpture: femme assise)' +p130047 +sg25270 +S'Pablo Picasso' +p130048 +sg25273 +S'drypoint with scraping and burnishing in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p130049 +sg25275 +S'1933' +p130050 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee2d.jpg' +p130051 +sg25267 +g27 +sa(dp130052 +g25268 +S'Three Actors with a Bust of Marie-Th\xc3\xa9r\xc3\xa8se (Trois com\xc3\xa9diens avec buste de Marie-Th\xc3\xa9r\xc3\xa8se)' +p130053 +sg25270 +S'Pablo Picasso' +p130054 +sg25273 +S'drypoint in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p130055 +sg25275 +S'1933' +p130056 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee35.jpg' +p130057 +sg25267 +g27 +sa(dp130058 +g25268 +S'Female Bathers (Femmes au bain)' +p130059 +sg25270 +S'Pablo Picasso' +p130060 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130061 +sg25275 +S'1934' +p130062 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee7b.jpg' +p130063 +sg25267 +g27 +sa(dp130064 +g25268 +S'Two Women at the Bath (Deux femmes au bain)' +p130065 +sg25270 +S'Pablo Picasso' +p130066 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130067 +sg25275 +S'1934' +p130068 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee78.jpg' +p130069 +sg25267 +g27 +sa(dp130070 +g25268 +S'At the Bath. Woman in a Hat with Flowers and Woman Draped in a Towel (Au bain)' +p130071 +sg25270 +S'Pablo Picasso' +p130072 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130073 +sg25275 +S'1934' +p130074 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee7a.jpg' +p130075 +sg25267 +g27 +sa(dp130076 +g25268 +S'Homage to Carpeaux (Hommage \xc3\xa0 Carpeaux)' +p130077 +sg25270 +S'Pablo Picasso' +p130078 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130079 +sg25275 +S'1934' +p130080 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee7e.jpg' +p130081 +sg25267 +g27 +sa(dp130082 +g25268 +S'Four Nudes and Sculpted Head (Quatres femmes nues et tete sculptee)' +p130083 +sg25270 +S'Pablo Picasso' +p130084 +sg25273 +S'etching and burin [printed in 1939 by Roger Lacouriere]' +p130085 +sg25275 +S'1934' +p130086 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee81.jpg' +p130087 +sg25267 +g27 +sa(dp130088 +g25268 +S'The Bath (Au Bain)' +p130089 +sg25270 +S'Pablo Picasso' +p130090 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p130091 +sg25275 +S'1930' +p130092 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee31.jpg' +p130093 +sg25267 +g27 +sa(dp130094 +g25268 +S'The Surprised Bathers (Les baigneuses surprises)' +p130095 +sg25270 +S'Pablo Picasso' +p130096 +sg25273 +S'aquatint and drypoint [printed in 1939 by Roger Lacouriere]' +p130097 +sg25275 +S'1933' +p130098 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee6f.jpg' +p130099 +sg25267 +g27 +sa(dp130100 +g25268 +S'The Entry into Jerusalem' +p130101 +sg25270 +S'German 15th Century' +p130102 +sg25273 +S'Schreiber, no. 2224' +p130103 +sg25275 +S'\nmetalcut, hand-colored in red lake, yellow, and green' +p130104 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4ce.jpg' +p130105 +sg25267 +g27 +sa(dp130106 +g25268 +S'Seated Woman Holding Head in Hand (Femme nueassise, la tete appuyee sur la main)' +p130107 +sg25270 +S'Pablo Picasso' +p130108 +sg25273 +S'etching and burin [printed in 1939 by Roger Lacouriere]' +p130109 +sg25275 +S'1934' +p130110 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee85.jpg' +p130111 +sg25267 +g27 +sa(dp130112 +g25268 +S'Two Catalonian Drinkers (Deux buveurs catalans)' +p130113 +sg25270 +S'Pablo Picasso' +p130114 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130115 +sg25275 +S'1934' +p130116 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee88.jpg' +p130117 +sg25267 +g27 +sa(dp130118 +g25268 +S'Masked Persons and Female Bird (Personnages masqu\xc3\xa9s et femme oiseau)' +p130119 +sg25270 +S'Pablo Picasso' +p130120 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130121 +sg25275 +S'1934' +p130122 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee8d.jpg' +p130123 +sg25267 +g27 +sa(dp130124 +g25268 +S'Corrida. Wounded Torero (Corrida. Torero bless\xc3\xa9)' +p130125 +sg25270 +S'Pablo Picasso' +p130126 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130127 +sg25275 +S'1933' +p130128 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee68.jpg' +p130129 +sg25267 +g27 +sa(dp130130 +g25268 +S'Two Sculptors before a Statue (Deux sculpteurs devant une statue)' +p130131 +sg25270 +S'Pablo Picasso' +p130132 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p130133 +sg25275 +S'1931' +p130134 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee30.jpg' +p130135 +sg25267 +g27 +sa(dp130136 +g25268 +S'The Circus Family with a Monkey (La famille de saltimbanques au macaque)' +p130137 +sg25270 +S'Pablo Picasso' +p130138 +sg25273 +S'drypoint (zinc) in black on "v?lin ancien" wove paper' +p130139 +sg25275 +S'1905' +p130140 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee21.jpg' +p130141 +sg25267 +g27 +sa(dp130142 +g25268 +S'Nude with Her Knee Raised (Femme nue \xc3\xa0 la jambe pli\xc3\xa9e)' +p130143 +sg25270 +S'Pablo Picasso' +p130144 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p130145 +sg25275 +S'1931' +p130146 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee2c.jpg' +p130147 +sg25267 +g27 +sa(dp130148 +g25268 +S'Nude Seated before a Curtain (Femme nue assise devant un rideau)' +p130149 +sg25270 +S'Pablo Picasso' +p130150 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p130151 +sg25275 +S'1931' +p130152 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee34.jpg' +p130153 +sg25267 +g27 +sa(dp130154 +g25268 +S'Nude Placing Flowers in Her Hair (Femme nue se couronnant de fleurs)' +p130155 +sg25270 +S'Pablo Picasso' +p130156 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p130157 +sg25275 +S'1930' +p130158 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee32.jpg' +p130159 +sg25267 +g27 +sa(dp130160 +g25268 +S'Nude with a Coronet of Flowers (Femme nue couronne de fleurs)' +p130161 +sg25270 +S'Pablo Picasso' +p130162 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouriere]' +p130163 +sg25275 +S'1930' +p130164 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee33.jpg' +p130165 +sg25267 +g27 +sa(dp130166 +g25268 +S'Aeneas and Achates on the Libyan Coast' +p130167 +sg25270 +S'Dosso Dossi' +p130168 +sg25273 +S'oil on canvas' +p130169 +sg25275 +S'c. 1520' +p130170 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000800.jpg' +p130171 +sg25267 +S"The obscure iconography of Dosso's canvas has caused much speculation. In the\npast it has been titled simply \n Two other surviving scenes from the \n " +p130172 +sa(dp130173 +g25268 +S'The Last Supper' +p130174 +sg25270 +S'German 15th Century' +p130175 +sg25273 +S'Schreiber, Vol. IX, no. 2234, State m' +p130176 +sg25275 +S'\nmetalcut, hand-colored in red lake, yellow, and green' +p130177 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4cf.jpg' +p130178 +sg25267 +g27 +sa(dp130179 +g25268 +S'Nude before a Statue (Femme nue devant une statue)' +p130180 +sg25270 +S'Pablo Picasso' +p130181 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p130182 +sg25275 +S'1931' +p130183 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee2f.jpg' +p130184 +sg25267 +g27 +sa(dp130185 +g25268 +S'Two Nudes at Rest (Femmes se reposant)' +p130186 +sg25270 +S'Pablo Picasso' +p130187 +sg25273 +S'drypoint in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p130188 +sg25275 +S'1931' +p130189 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee2a.jpg' +p130190 +sg25267 +g27 +sa(dp130191 +g25268 +S'Figure (Bather in a Cabin)' +p130192 +sg25270 +S'Pablo Picasso' +p130193 +sg25273 +S'crayon lithograph (stone) in black on smooth wove paper' +p130194 +sg25275 +S'1929' +p130195 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed93.jpg' +p130196 +sg25267 +g27 +sa(dp130197 +g25268 +S"Sheet of Studies. Profiles of Marie-Th\xc3\xa9r\xc3\xa8se and Head of Rembrandt in a Beret (Feuille d'\xc3\xa9tudes. Profils de Marie-Th\xc3\xa9r\xc3\xa8se et t\xc3\xaate de Rembrandt au b\xc3\xa9ret)" +p130198 +sg25270 +S'Pablo Picasso' +p130199 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130200 +sg25275 +S'1934' +p130201 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee72.jpg' +p130202 +sg25267 +g27 +sa(dp130203 +g25268 +S'Rembrandt in a "turban," in "furs," and in the "elephant\'s eye" (Rembrandt au "turban," aux "fourrures," et \xc3\xa0 l\'oeil d\'\xc3\xa9l\xc3\xa9phant")' +p130204 +sg25270 +S'Pablo Picasso' +p130205 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130206 +sg25275 +S'1934' +p130207 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee79.jpg' +p130208 +sg25267 +g27 +sa(dp130209 +g25268 +S'Rembrandt and Two Women (Rembrandt et deux femmes)' +p130210 +sg25270 +S'Pablo Picasso' +p130211 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130212 +sg25275 +S'1934' +p130213 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee74.jpg' +p130214 +sg25267 +g27 +sa(dp130215 +g25268 +S'Rembrandt Takes a Young Veiled Woman by the Hand (Rembrandt tenant par la main un jeune femme au voile)' +p130216 +sg25270 +S'Pablo Picasso' +p130217 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130218 +sg25275 +S'1934' +p130219 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee75.jpg' +p130220 +sg25267 +g27 +sa(dp130221 +g25268 +S"Sheet of Studies. Seated Woman and Heads of Women (Feuille d'\xc3\xa9tudes. Femme assise et t\xc3\xaates des femmes)" +p130222 +sg25270 +S'Pablo Picasso' +p130223 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130224 +sg25275 +S'1934' +p130225 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee73.jpg' +p130226 +sg25267 +g27 +sa(dp130227 +g25268 +S'Man Uncovering a Woman (Homme d\xc3\xa9voilant une femme)' +p130228 +sg25270 +S'Pablo Picasso' +p130229 +sg25273 +S'drypoint in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p130230 +sg25275 +S'1931' +p130231 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee2b.jpg' +p130232 +sg25267 +g27 +sa(dp130233 +g25268 +S'Flautist and Three Nudes (Fl\xc3\xbbtiste et trois femmes nues)' +p130234 +sg25270 +S'Pablo Picasso' +p130235 +sg25273 +S'drypoint with scraping in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p130236 +sg25275 +S'1932' +p130237 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee29.jpg' +p130238 +sg25267 +g27 +sa(dp130239 +g25268 +S'The Flagellation' +p130240 +sg25270 +S'German 15th Century' +p130241 +sg25273 +S'Schreiber, Vol. IX, no. 2282, State m' +p130242 +sg25275 +S'\nmetalcut, hand-colored in red lake, yellow, and green' +p130243 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4d0.jpg' +p130244 +sg25267 +g27 +sa(dp130245 +g25268 +S'Blinded Minotaur Led by a Girl I (Minotaure aveugle guide par une fillette I)' +p130246 +sg25270 +S'Pablo Picasso' +p130247 +sg25273 +S'etching and burin [printed in 1939 by Roger Lacouriere]' +p130248 +sg25275 +S'1934' +p130249 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee7f.jpg' +p130250 +sg25267 +g27 +sa(dp130251 +g25268 +S'Blinded Minotaur Led by a Girl II (Minotaur aveugle guide par une fillette II)' +p130252 +sg25270 +S'Pablo Picasso' +p130253 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130254 +sg25275 +S'1934' +p130255 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee84.jpg' +p130256 +sg25267 +g27 +sa(dp130257 +g25268 +S'Blinded Minotaur Led by a Girl III (Minotaur aveugle guide par une fillette III)' +p130258 +sg25270 +S'Pablo Picasso' +p130259 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130260 +sg25275 +S'1934' +p130261 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee80.jpg' +p130262 +sg25267 +g27 +sa(dp130263 +g25268 +S'Blind Minotaur Led by Marie-Th\xc3\xa9r\xc3\xa8se with a Dove in a Starry Night (Minotaure aveugle guid\xc3\xa9 par Marie-Th\xc3\xa9r\xc3\xa8se au pigeon dans une nuit \xc3\xa9toil\xc3\xa9e)' +p130264 +sg25270 +S'Pablo Picasso' +p130265 +sg25273 +S'dark-manner aquatint in black with scraping, burnishing, drypoint, and engraving on wove paper [after steelfacing]' +p130266 +sg25275 +S'1934' +p130267 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee89.jpg' +p130268 +sg25267 +g27 +sa(dp130269 +g25268 +S'Minotaur with Chalice in Hand and Young Woman (Minotaure, une coupe a la main, et jeune femme)' +p130270 +sg25270 +S'Pablo Picasso' +p130271 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130272 +sg25275 +S'1933' +p130273 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee6e.jpg' +p130274 +sg25267 +g27 +sa(dp130275 +g25268 +S'Self-Portrait in Three Forms: Crowned Painter, Bust Sculpture, and Amorous Minotaur (Autoportrait sous trois formes: peintre couronn\xc3\xa9, sculpteur en buste, et minotaure amoureux)' +p130276 +sg25270 +S'Pablo Picasso' +p130277 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130278 +sg25275 +S'1933' +p130279 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee66.jpg' +p130280 +sg25267 +g27 +sa(dp130281 +g25268 +S'Bacchanal Scene with Minotaur (Scene bachique au minotaure)' +p130282 +sg25270 +S'Pablo Picasso' +p130283 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130284 +sg25275 +S'1933' +p130285 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee65.jpg' +p130286 +sg25267 +g27 +sa(dp130287 +g25268 +S'Marie-Th\xc3\xa9r\xc3\xa8se, as a Vestal Virgin, Watching the Sleeping Minotaur (Marie-Th\xc3\xa9r\xc3\xa8se, en vestale, veillant le mintaoure endormi)' +p130288 +sg25270 +S'Pablo Picasso' +p130289 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130290 +sg25275 +S'1933' +p130291 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee67.jpg' +p130292 +sg25267 +g27 +sa(dp130293 +g25268 +S"Minotaur Loving a Female Centaur (Minotaure amoureux d'une femme-centaure)" +p130294 +sg25270 +S'Pablo Picasso' +p130295 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130296 +sg25275 +S'1933' +p130297 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee70.jpg' +p130298 +sg25267 +g27 +sa(dp130299 +g25268 +S'Wounded Minotaur VI (Minotaure blesse VI)' +p130300 +sg25270 +S'Pablo Picasso' +p130301 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130302 +sg25275 +S'1933' +p130303 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee6b.jpg' +p130304 +sg25267 +g27 +sa(dp130305 +g25268 +S'Ornamental Alphabet' +p130306 +sg25270 +S'German 15th Century' +p130307 +sg25273 +S'Schreiber, no. 2001' +p130308 +sg25275 +S'\nwoodcut' +p130309 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3df.jpg' +p130310 +sg25267 +g27 +sa(dp130311 +g25268 +S"In the Arena. Young Man Kills the Minotaur (Dans l'ar\xc3\xa8ne. Jeune homme achevant le minotaure)" +p130312 +sg25270 +S'Pablo Picasso' +p130313 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130314 +sg25275 +S'1933' +p130315 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee6c.jpg' +p130316 +sg25267 +g27 +sa(dp130317 +g25268 +S'Dying Minotaur and Compassionate Young Woman (Minotaure mourant et jeune femme pitoyable)' +p130318 +sg25270 +S'Pablo Picasso' +p130319 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130320 +sg25275 +S'1933' +p130321 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee6d.jpg' +p130322 +sg25267 +g27 +sa(dp130323 +g25268 +S'Minotaur and Young Woman Entertwined and Dreaming Under a Window (Minotaure et jeune femme enlac\xc3\xa9s r\xc3\xaavant sous une fen\xc3\xaatre)' +p130324 +sg25270 +S'Pablo Picasso' +p130325 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130326 +sg25275 +S'1933' +p130327 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee6a.jpg' +p130328 +sg25267 +g27 +sa(dp130329 +g25268 +S'Marie-Th\xc3\xa9r\xc3\xa8se Dreams of Metamorphosis: She and the Sculptor Drink with a Young Greek Actor Playing the Role of the Minotaur (Marie-Th\xc3\xa9r\xc3\xa8se r\xc3\xaavant de m\xc3\xa9tamorposes: elle-m\xc3\xaame et le sculpteur buvant avec un jeune acteur grec jouant le r\xc3\xb4le du minotaure)' +p130330 +sg25270 +S'Pablo Picasso' +p130331 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130332 +sg25275 +S'1933' +p130333 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee64.jpg' +p130334 +sg25267 +g27 +sa(dp130335 +g25268 +S'Minotaur Caressing a Sleeping Woman (Minotaure caressant une dormeuse)' +p130336 +sg25270 +S'Pablo Picasso' +p130337 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130338 +sg25275 +S'1933' +p130339 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee63.jpg' +p130340 +sg25267 +g27 +sa(dp130341 +g25268 +S'Boy and Sleeping Girl in Candlelight (Gar\xc3\xa7on et dormeuse \xc3\xa0 la chandelle)' +p130342 +sg25270 +S'Pablo Picasso' +p130343 +sg25273 +S'etching and aquatint [printed in 1939 by Roger Lacouriere]' +p130344 +sg25275 +S'1934' +p130345 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee86.jpg' +p130346 +sg25267 +g27 +sa(dp130347 +g25268 +S'Marie-Th\xc3\xa9r\xc3\xa8se as an Idol and Three Bearded Greeks (Marie-Th\xc3\xa9r\xc3\xa8se en idole et trois grecs barbus)' +p130348 +sg25270 +S'Pablo Picasso' +p130349 +sg25273 +S'etching, burin, and aquatint [printed in 1939 by Roger Lacouriere]' +p130350 +sg25275 +S'1934' +p130351 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee71.jpg' +p130352 +sg25267 +g27 +sa(dp130353 +g25268 +S'Faun Unveiling a Woman (Faune d\xc3\xa9voilant une femme)' +p130354 +sg25270 +S'Pablo Picasso' +p130355 +sg25273 +S'etching and aquatint [printed in 1939 by Roger Lacouriere]' +p130356 +sg25275 +S'1936' +p130357 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee8e.jpg' +p130358 +sg25267 +g27 +sa(dp130359 +g25268 +S'Flautist and Young Girl with Tambourine (Flutiste et jeune fille au tambourin)' +p130360 +sg25270 +S'Pablo Picasso' +p130361 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130362 +sg25275 +S'1934' +p130363 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee76.jpg' +p130364 +sg25267 +g27 +sa(dp130365 +g25268 +S'Young Bacchus with a Tambourine, with a Bacchante (Jeune Bacchus au tambourin, avec un Bacchante)' +p130366 +sg25270 +S'Pablo Picasso' +p130367 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130368 +sg25275 +S'1934' +p130369 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee77.jpg' +p130370 +sg25267 +g27 +sa(dp130371 +g25268 +S'The Last Supper' +p130372 +sg25270 +S'Artist Information (' +p130373 +sg25273 +S'German, active c. 1460/1480' +p130374 +sg25275 +S'(related artist)' +p130375 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4f1.jpg' +p130376 +sg25267 +g27 +sa(dp130377 +g25268 +S'Circus. Repetition (Le cirque. R\xc3\xa9p\xc3\xa9tition)' +p130378 +sg25270 +S'Pablo Picasso' +p130379 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130380 +sg25275 +S'1933' +p130381 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee7d.jpg' +p130382 +sg25267 +g27 +sa(dp130383 +g25268 +S'Bull, Horse, and Reclining Woman II (Femme torero II)' +p130384 +sg25270 +S'Pablo Picasso' +p130385 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130386 +sg25275 +S'1934' +p130387 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee82.jpg' +p130388 +sg25267 +g27 +sa(dp130389 +g25268 +S'Bull, Horse, and Reclining Woman III (Femme torero III)' +p130390 +sg25270 +S'Pablo Picasso' +p130391 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130392 +sg25275 +S'1934' +p130393 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee83.jpg' +p130394 +sg25267 +g27 +sa(dp130395 +g25268 +S'Winged Bull Watched by Four Children (Taureau ail\xc3\xa9 contempl\xc3\xa9 par quatre enfants)' +p130396 +sg25270 +S'Pablo Picasso' +p130397 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130398 +sg25275 +S'1934' +p130399 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee87.jpg' +p130400 +sg25267 +g27 +sa(dp130401 +g25268 +S'The Rape (Le viol)' +p130402 +sg25270 +S'Pablo Picasso' +p130403 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p130404 +sg25275 +S'1931' +p130405 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee2e.jpg' +p130406 +sg25267 +g27 +sa(dp130407 +g25268 +S"The Embrace I (L'\xc3\x89treinte I)" +p130408 +sg25270 +S'Pablo Picasso' +p130409 +sg25273 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p130410 +sg25275 +S'1933' +p130411 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee5f.jpg' +p130412 +sg25267 +g27 +sa(dp130413 +g25268 +S"The Embrace III (L'\xc3\x89treinte III)" +p130414 +sg25270 +S'Pablo Picasso' +p130415 +sg25273 +S'drypoint [printed in 1939 by Roger Lacouriere]' +p130416 +sg25275 +S'1933' +p130417 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee5c.jpg' +p130418 +sg25267 +g27 +sa(dp130419 +g25268 +S"Couple Making Love (Couple faisant l'amour)" +p130420 +sg25270 +S'Pablo Picasso' +p130421 +sg25273 +S'etching [printed in 1939 by Roger Lacouriere]' +p130422 +sg25275 +S'1933' +p130423 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee69.jpg' +p130424 +sg25267 +g27 +sa(dp130425 +g25268 +S'Coupling I (Accouplement I)' +p130426 +sg25270 +S'Pablo Picasso' +p130427 +sg25273 +S'etching, drypoint, and aquatint [printed in 1939 by Roger Lacouriere]' +p130428 +sg25275 +S'1933' +p130429 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee59.jpg' +p130430 +sg25267 +g27 +sa(dp130431 +g25268 +S'Rape under the Window (Le viol sous la fenetre)' +p130432 +sg25270 +S'Pablo Picasso' +p130433 +sg25273 +S'aquatint, etching, and drypoint [printed in 1939 by Roger Lacouriere]' +p130434 +sg25275 +S'1933' +p130435 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee58.jpg' +p130436 +sg25267 +g27 +sa(dp130437 +g25268 +S'Christ Crowned with Thorns' +p130438 +sg25270 +S'Artist Information (' +p130439 +sg25273 +S'German, active c. 1460/1480' +p130440 +sg25275 +S'(related artist)' +p130441 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4f2.jpg' +p130442 +sg25267 +g27 +sa(dp130443 +g25268 +S'B\xc3\xa9atrice' +p130444 +sg25270 +S'Artist Information (' +p130445 +sg25273 +S'French, 1867 - 1939' +p130446 +sg25275 +S'(artist)' +p130447 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fd5.jpg' +p130448 +sg25267 +g27 +sa(dp130449 +g25268 +S'Le Buddha' +p130450 +sg25270 +S'Artist Information (' +p130451 +sg25273 +S'French, 1858 - 1936' +p130452 +sg25275 +S'(printer)' +p130453 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fd2.jpg' +p130454 +sg25267 +g27 +sa(dp130455 +g25268 +S"Tete d'Enfant avec Fleurs (Head of a Child with Flowers)" +p130456 +sg25270 +S'Odilon Redon' +p130457 +sg25273 +S'lithograph' +p130458 +sg25275 +S'1897' +p130459 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c98.jpg' +p130460 +sg25267 +g27 +sa(dp130461 +g25268 +S'Vieux Chevalier (Old Knight)' +p130462 +sg25270 +S'Artist Information (' +p130463 +sg25273 +S'(artist)' +p130464 +sg25275 +S'\n' +p130465 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fcb.jpg' +p130466 +sg25267 +g27 +sa(dp130467 +g25268 +S'Seated Bather (Baigneuse assise)' +p130468 +sg25270 +S'Auguste Renoir' +p130469 +sg25273 +S'soft ground etching' +p130470 +sg25275 +S'c. 1905' +p130471 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cae.jpg' +p130472 +sg25267 +g27 +sa(dp130473 +g25268 +S'Paul C\xc3\xa9zanne' +p130474 +sg25270 +S'Auguste Renoir' +p130475 +sg25273 +S'lithograph on japan paper' +p130476 +sg25275 +S'1902' +p130477 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009ff6.jpg' +p130478 +sg25267 +g27 +sa(dp130479 +g25268 +S'The Hat Pin (Le chapeau \xc3\xa9pingle)' +p130480 +sg25270 +S'Auguste Renoir' +p130481 +sg25273 +S'lithograph' +p130482 +sg25275 +S'1897' +p130483 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f78.jpg' +p130484 +sg25267 +g27 +sa(dp130485 +g25273 +S'lithograph' +p130486 +sg25267 +g27 +sg25275 +S'1897' +p130487 +sg25268 +S'The Hat Pin (Le chapeau epingle)' +p130488 +sg25270 +S'Auguste Renoir' +p130489 +sa(dp130490 +g25273 +S'lithograph' +p130491 +sg25267 +g27 +sg25275 +S'1898' +p130492 +sg25268 +S'The Hat Pin (Le chapeau epingle)' +p130493 +sg25270 +S'Auguste Renoir' +p130494 +sa(dp130495 +g25268 +S'Children Playing Ball (Enfants jouant a la balle)' +p130496 +sg25270 +S'Auguste Renoir' +p130497 +sg25273 +S'color lithograph' +p130498 +sg25275 +S'1900' +p130499 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a0006719.jpg' +p130500 +sg25267 +g27 +sa(dp130501 +g25268 +S'The Piet\xc3\xa0' +p130502 +sg25270 +S'Artist Information (' +p130503 +sg25273 +S'German, active c. 1460/1480' +p130504 +sg25275 +S'(related artist)' +p130505 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4f3.jpg' +p130506 +sg25267 +g27 +sa(dp130507 +g25268 +S'Study for a Bather (Etude pour une baigneuse)' +p130508 +sg25270 +S'Auguste Renoir' +p130509 +sg25273 +S'drypoint' +p130510 +sg25275 +S'unknown date\n' +p130511 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cad.jpg' +p130512 +sg25267 +g27 +sa(dp130513 +g25268 +S'Woman Reclining (Femme couchee)' +p130514 +sg25270 +S'Auguste Renoir' +p130515 +sg25273 +S'color etching on japan paper' +p130516 +sg25275 +S'1906' +p130517 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099be.jpg' +p130518 +sg25267 +g27 +sa(dp130519 +g25268 +S'Female Nude Reclining (Femme nue couchee)' +p130520 +sg25270 +S'Auguste Renoir' +p130521 +sg25273 +S'color etching on japan paper' +p130522 +sg25275 +S'1906' +p130523 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099bd.jpg' +p130524 +sg25267 +g27 +sa(dp130525 +g25268 +S'Pierre Renoir' +p130526 +sg25270 +S'Auguste Renoir' +p130527 +sg25273 +S'lithograph' +p130528 +sg25275 +S'1893' +p130529 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009ff4.jpg' +p130530 +sg25267 +g27 +sa(dp130531 +g25268 +S'Richard Wagner' +p130532 +sg25270 +S'Auguste Renoir' +p130533 +sg25273 +S'lithograph on japan paper' +p130534 +sg25275 +S'c. 1900' +p130535 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009ff7.jpg' +p130536 +sg25267 +g27 +sa(dp130537 +g25273 +S'lithograph' +p130538 +sg25267 +g27 +sg25275 +S'1933' +p130539 +sg25268 +S'Verlaine' +p130540 +sg25270 +S'Georges Rouault' +p130541 +sa(dp130542 +g25268 +S'La Guerre (The War)' +p130543 +sg25270 +S'Henri Rousseau' +p130544 +sg25273 +S'lithograph on red paper' +p130545 +sg25275 +S'1895' +p130546 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cb5.jpg' +p130547 +sg25267 +g27 +sa(dp130548 +g25273 +S'French, 1858 - 1936' +p130549 +sg25267 +g27 +sg25275 +S'(printer)' +p130550 +sg25268 +S"Cupids Frolicking beside a Nymph (Amours jouant aupr\xc3\xa8s d'une nymphe)" +p130551 +sg25270 +S'Artist Information (' +p130552 +sa(dp130553 +g25273 +S'French, 1858 - 1936' +p130554 +sg25267 +g27 +sg25275 +S'(printer)' +p130555 +sg25268 +S'Bathers (Les Baigneuses)' +p130556 +sg25270 +S'Artist Information (' +p130557 +sa(dp130558 +g25273 +S'French, 1858 - 1936' +p130559 +sg25267 +g27 +sg25275 +S'(printer)' +p130560 +sg25268 +S'Woman in Red in a Landscape (Femme en rouge dans un paysage)' +p130561 +sg25270 +S'Artist Information (' +p130562 +sa(dp130563 +g25268 +S'The Three Maries at the Tomb' +p130564 +sg25270 +S'Artist Information (' +p130565 +sg25273 +S'German, active c. 1460/1480' +p130566 +sg25275 +S'(related artist)' +p130567 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4f4.jpg' +p130568 +sg25267 +g27 +sa(dp130569 +g25273 +S'French, 1858 - 1936' +p130570 +sg25267 +g27 +sg25275 +S'(printer)' +p130571 +sg25268 +S'Woman in a Striped Dress in a Landscape (Femme en robe \xc3\xa0 rayures)' +p130572 +sg25270 +S'Artist Information (' +p130573 +sa(dp130574 +g25273 +S'French, 1867 - 1939' +p130575 +sg25267 +g27 +sg25275 +S'(artist)' +p130576 +sg25268 +S'Bathers on the Shore (Personnages au bord de la mer)' +p130577 +sg25270 +S'Artist Information (' +p130578 +sa(dp130579 +g25273 +S'French, 1867 - 1939' +p130580 +sg25267 +g27 +sg25275 +S'(artist)' +p130581 +sg25268 +S'Nymphs in a Landscape' +p130582 +sg25270 +S'Artist Information (' +p130583 +sa(dp130584 +g25273 +S'(artist)' +p130585 +sg25267 +g27 +sg25275 +S'\n' +p130586 +sg25268 +S'Landscape with a House (Paysage avec maison)' +p130587 +sg25270 +S'Artist Information (' +p130588 +sa(dp130589 +g25268 +S'The Hanging Gardens' +p130590 +sg25270 +S'Walter Richard Sickert' +p130591 +sg25273 +S'etching' +p130592 +sg25275 +S'published 1929' +p130593 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cfa.jpg' +p130594 +sg25267 +g27 +sa(dp130595 +g25268 +S'Boats at Flushing (Bateaux \xc3\xa0 Flessingue)' +p130596 +sg25270 +S'Paul Signac' +p130597 +sg25273 +S'5-color lithograph' +p130598 +sg25275 +S'1895' +p130599 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a005.jpg' +p130600 +sg25267 +g27 +sa(dp130601 +g25268 +S'The Buoy (La bou\xc3\xa9e)' +p130602 +sg25270 +S'Paul Signac' +p130603 +sg25273 +S'6-color lithograph' +p130604 +sg25275 +S'1894' +p130605 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a0006730.jpg' +p130606 +sg25267 +g27 +sa(dp130607 +g25268 +S'At Flushing (A Flessingue)' +p130608 +sg25270 +S'Paul Signac' +p130609 +sg25273 +S'5-color lithograph' +p130610 +sg25275 +S'1895' +p130611 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a000.jpg' +p130612 +sg25267 +g27 +sa(dp130613 +g25268 +S'St. Tropez: The Port (Saint-Tropez: Le port)' +p130614 +sg25270 +S'Paul Signac' +p130615 +sg25273 +S'6-color lithograph on wove paper' +p130616 +sg25275 +S'1897/1898' +p130617 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a004.jpg' +p130618 +sg25267 +g27 +sa(dp130619 +g25268 +S'Banks of the River (Les Bords de rivi\xc3\xa8re)' +p130620 +sg25270 +S'Artist Information (' +p130621 +sg25273 +S'French, 1867 - 1939' +p130622 +sg25275 +S'(artist)' +p130623 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a0006731.jpg' +p130624 +sg25267 +g27 +sa(dp130625 +g25268 +S'Madonna and Child in Glory' +p130626 +sg25270 +S'Artist Information (' +p130627 +sg25273 +S'(artist)' +p130628 +sg25275 +S'\n' +p130629 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a51c.jpg' +p130630 +sg25267 +g27 +sa(dp130631 +g25268 +S'Miss May Belfort in the Irish and American Bar, rue Royale (Miss Belfort Belfort au Irish and American Bar, Rue Royale)' +p130632 +sg25270 +S'Henri de Toulouse-Lautrec' +p130633 +sg25273 +S'lithograph' +p130634 +sg25275 +S'1895' +p130635 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a045.jpg' +p130636 +sg25267 +g27 +sa(dp130637 +g25268 +S'Wounded Eros (Eros vann\xc3\xa9)' +p130638 +sg25270 +S'Henri de Toulouse-Lautrec' +p130639 +sg25273 +S'lithograph in black on velin paper' +p130640 +sg25275 +S'1894' +p130641 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ed2.jpg' +p130642 +sg25267 +g27 +sa(dp130643 +g25268 +S'Mlle. Pois Vert' +p130644 +sg25270 +S'Henri de Toulouse-Lautrec' +p130645 +sg25273 +S'lithograph in green-black' +p130646 +sg25275 +S'1895' +p130647 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e4e.jpg' +p130648 +sg25267 +g27 +sa(dp130649 +g25268 +S'Polaire' +p130650 +sg25270 +S'Henri de Toulouse-Lautrec' +p130651 +sg25273 +S'lithograph in black on velin paper' +p130652 +sg25275 +S'1897' +p130653 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e78.jpg' +p130654 +sg25267 +g27 +sa(dp130655 +g25268 +S'Mme. R\xc3\xa9jane' +p130656 +sg25270 +S'Henri de Toulouse-Lautrec' +p130657 +sg25273 +S'lithograph' +p130658 +sg25275 +S'1898' +p130659 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e7e.jpg' +p130660 +sg25267 +g27 +sa(dp130661 +g25268 +S'Les Vielles Histoires (cover/frontispiece)' +p130662 +sg25270 +S'Henri de Toulouse-Lautrec' +p130663 +sg25273 +S'lithograph in black touched with watercolor' +p130664 +sg25275 +S'1893' +p130665 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a03e.jpg' +p130666 +sg25267 +g27 +sa(dp130667 +g25268 +S'Les Vielles Histoires (cover/frontispiece)' +p130668 +sg25270 +S'Henri de Toulouse-Lautrec' +p130669 +sg25273 +S'lithograph in olive green [trial proof?]' +p130670 +sg25275 +S'1893' +p130671 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a03c.jpg' +p130672 +sg25267 +g27 +sa(dp130673 +g25268 +S'Yahne in His Box (Yahne dans sa loge)' +p130674 +sg25270 +S'Henri de Toulouse-Lautrec' +p130675 +sg25273 +S'lithograph in olive green' +p130676 +sg25275 +S'1895' +p130677 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a028.jpg' +p130678 +sg25267 +g27 +sa(dp130679 +g25268 +S'The Madonna Enthroned with Eighteen Holy Women' +p130680 +sg25270 +S'Artist Information (' +p130681 +sg25273 +S'(artist)' +p130682 +sg25275 +S'\n' +p130683 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4cd.jpg' +p130684 +sg25267 +g27 +sa(dp130685 +g25268 +S'Cover, Yvette Guilbert' +p130686 +sg25270 +S'Henri de Toulouse-Lautrec' +p130687 +sg25273 +S'lithograph on green-blue paper' +p130688 +sg25275 +S'1898' +p130689 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a571.jpg' +p130690 +sg25267 +g27 +sa(dp130691 +g25268 +S'Frontispiece' +p130692 +sg25270 +S'Henri de Toulouse-Lautrec' +p130693 +sg25273 +S'lithograph' +p130694 +sg25275 +S'1898' +p130695 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a052.jpg' +p130696 +sg25267 +g27 +sa(dp130697 +g25268 +S'On the Stage (Sur la sc\xc3\xa8ne)' +p130698 +sg25270 +S'Henri de Toulouse-Lautrec' +p130699 +sg25273 +S'lithograph in black and beige' +p130700 +sg25275 +S'1898' +p130701 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a04d.jpg' +p130702 +sg25267 +g27 +sa(dp130703 +g25268 +S'In "La glu" (Dans "La glu")' +p130704 +sg25270 +S'Henri de Toulouse-Lautrec' +p130705 +sg25273 +S'lithograph in black and beige' +p130706 +sg25275 +S'1898' +p130707 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a051.jpg' +p130708 +sg25267 +g27 +sa(dp130709 +g25268 +S'Pessima' +p130710 +sg25270 +S'Henri de Toulouse-Lautrec' +p130711 +sg25273 +S'lithograph in black and beige' +p130712 +sg25275 +S'1898' +p130713 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a04f.jpg' +p130714 +sg25267 +g27 +sa(dp130715 +g25268 +S'To Menilmontant from Bruant (A M\xc3\xa9nilmontant, de Bruant)' +p130716 +sg25270 +S'Henri de Toulouse-Lautrec' +p130717 +sg25273 +S'lithograph in black and beige' +p130718 +sg25275 +S'1898' +p130719 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a04e.jpg' +p130720 +sg25267 +g27 +sa(dp130721 +g25268 +S'Old Song (Chanson ancienne)' +p130722 +sg25270 +S'Henri de Toulouse-Lautrec' +p130723 +sg25273 +S'lithograph in black and beige' +p130724 +sg25275 +S'1898' +p130725 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a050.jpg' +p130726 +sg25267 +g27 +sa(dp130727 +g25268 +S'Drunkard (Soularde)' +p130728 +sg25270 +S'Henri de Toulouse-Lautrec' +p130729 +sg25273 +S'lithograph in black and beige' +p130730 +sg25275 +S'1898' +p130731 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a04c.jpg' +p130732 +sg25267 +g27 +sa(dp130733 +g25268 +S'"Linger, Longer, Loo"' +p130734 +sg25270 +S'Henri de Toulouse-Lautrec' +p130735 +sg25273 +S'lithograph in black and beige' +p130736 +sg25275 +S'1898' +p130737 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a049.jpg' +p130738 +sg25267 +g27 +sa(dp130739 +g25268 +S'Bowing to the Audience (Saluant le public)' +p130740 +sg25270 +S'Henri de Toulouse-Lautrec' +p130741 +sg25273 +S'lithograph in black and beige' +p130742 +sg25275 +S'1898' +p130743 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a04a.jpg' +p130744 +sg25267 +g27 +sa(dp130745 +g25268 +S'Saint Jerome in His Study' +p130746 +sg25270 +S'Artist Information (' +p130747 +sg25273 +S'German, active c. 1460/1480' +p130748 +sg25275 +S'(artist)' +p130749 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a50f.jpg' +p130750 +sg25267 +g27 +sa(dp130751 +g25268 +S'The Green Hat (Le chapeau vert)' +p130752 +sg25270 +S'F\xc3\xa9lix Vallotton' +p130753 +sg25273 +S'color lithograph' +p130754 +sg25275 +S'1896' +p130755 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef6f.jpg' +p130756 +sg25267 +g27 +sa(dp130757 +g25268 +S'Le Gagnant (The Winner)' +p130758 +sg25270 +S'Artist Information (' +p130759 +sg25273 +S'(artist)' +p130760 +sg25275 +S'\n' +p130761 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef61.jpg' +p130762 +sg25267 +g27 +sa(dp130763 +g25268 +S'Hussard Striking a Cosack' +p130764 +sg25270 +S'Carle Vernet' +p130765 +sg25273 +S'lithograph' +p130766 +sg25275 +S'unknown date\n' +p130767 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a05b.jpg' +p130768 +sg25267 +g27 +sa(dp130769 +g25268 +S'Hussard Striking a Mameluck' +p130770 +sg25270 +S'Carle Vernet' +p130771 +sg25273 +S'lithograph' +p130772 +sg25275 +S'unknown date\n' +p130773 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a05c.jpg' +p130774 +sg25267 +g27 +sa(dp130775 +g25268 +S'La piece en action' +p130776 +sg25270 +S'Horace Vernet' +p130777 +sg25273 +S'lithograph' +p130778 +sg25275 +S'1817' +p130779 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e9c.jpg' +p130780 +sg25267 +g27 +sa(dp130781 +g25268 +S'La piece en batterie' +p130782 +sg25270 +S'Horace Vernet' +p130783 +sg25273 +S'lithograph' +p130784 +sg25275 +S'1817' +p130785 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e9d.jpg' +p130786 +sg25267 +g27 +sa(dp130787 +g25268 +S'Bust of Carle Vernet' +p130788 +sg25270 +S'Horace Vernet' +p130789 +sg25273 +S'lithograph' +p130790 +sg25275 +S'1817' +p130791 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e9e.jpg' +p130792 +sg25267 +g27 +sa(dp130793 +g25268 +S'Carle Vernet, Full-Length' +p130794 +sg25270 +S'Horace Vernet' +p130795 +sg25273 +S'lithograph' +p130796 +sg25275 +S'1818' +p130797 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e9a.jpg' +p130798 +sg25267 +g27 +sa(dp130799 +g25273 +S'etching in black on wove paper' +p130800 +sg25267 +g27 +sg25275 +S'1920' +p130801 +sg25268 +S'Baudelaire' +p130802 +sg25270 +S'Jacques Villon' +p130803 +sa(dp130804 +g25273 +S'etching' +p130805 +sg25267 +g27 +sg25275 +S'1934' +p130806 +sg25268 +S'The Plain between Cannes and Mougins (La plaine entre Cannes et Mougins)' +p130807 +sg25270 +S'Jacques Villon' +p130808 +sa(dp130809 +g25268 +S'Saint Jerome' +p130810 +sg25270 +S'Artist Information (' +p130811 +sg25273 +S'German, active c. 1460/1480' +p130812 +sg25275 +S'(related artist)' +p130813 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a000561f.jpg' +p130814 +sg25267 +g27 +sa(dp130815 +g25268 +S'Across Country (A travers champs)' +p130816 +sg25270 +S'Artist Information (' +p130817 +sg25273 +S'(artist)' +p130818 +sg25275 +S'\n' +p130819 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00053/a00053c1.jpg' +p130820 +sg25267 +g27 +sa(dp130821 +g25268 +S"The Hearth (L'atre)" +p130822 +sg25270 +S'Artist Information (' +p130823 +sg25273 +S'French, 1867 - 1939' +p130824 +sg25275 +S'(artist)' +p130825 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f24.jpg' +p130826 +sg25267 +g27 +sa(dp130827 +g25268 +S"The Avenue (L'avenue)" +p130828 +sg25270 +S'Artist Information (' +p130829 +sg25273 +S'(artist)' +p130830 +sg25275 +S'\n' +p130831 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000fae.jpg' +p130832 +sg25267 +g27 +sa(dp130833 +g25268 +S'Two Sisters-in-Law (Les deux belles-soeurs)' +p130834 +sg25270 +S'Artist Information (' +p130835 +sg25273 +S'(artist)' +p130836 +sg25275 +S'\n' +p130837 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00053/a00053c2.jpg' +p130838 +sg25267 +g27 +sa(dp130839 +g25268 +S'The Cook (La cuisiniere)' +p130840 +sg25270 +S'Artist Information (' +p130841 +sg25273 +S'(artist)' +p130842 +sg25275 +S'\n' +p130843 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f26.jpg' +p130844 +sg25267 +g27 +sa(dp130845 +g25268 +S'Interior with Hanging Lamp (Interieur a la suspension)' +p130846 +sg25270 +S'Artist Information (' +p130847 +sg25273 +S'French, 1867 - 1939' +p130848 +sg25275 +S'(artist)' +p130849 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f23.jpg' +p130850 +sg25267 +g27 +sa(dp130851 +g25268 +S'Interior with Pink Wallpaper I (Interieur aux tentures roses I)' +p130852 +sg25270 +S'Artist Information (' +p130853 +sg25273 +S'(artist)' +p130854 +sg25275 +S'\n' +p130855 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f21.jpg' +p130856 +sg25267 +g27 +sa(dp130857 +g25268 +S'Interior with Pink Wallpaper II (Interieur aux tentures roses II)' +p130858 +sg25270 +S'Artist Information (' +p130859 +sg25273 +S'(artist)' +p130860 +sg25275 +S'\n' +p130861 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f20.jpg' +p130862 +sg25267 +g27 +sa(dp130863 +g25268 +S'Interior with Pink Wallpaper III (Interieur aux tentures roses III)' +p130864 +sg25270 +S'Artist Information (' +p130865 +sg25273 +S'French, 1867 - 1939' +p130866 +sg25275 +S'(artist)' +p130867 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f1f.jpg' +p130868 +sg25267 +g27 +sa(dp130869 +g25268 +S"The Birth of Annette (La naissance d'Annette)" +p130870 +sg25270 +S'Edouard Vuillard' +p130871 +sg25273 +S'color lithograph' +p130872 +sg25275 +S'1898' +p130873 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a068.jpg' +p130874 +sg25267 +g27 +sa(dp130875 +g25268 +S'Saint Matthias and Saint Jude with Articles from the Credo' +p130876 +sg25270 +S'Master d' +p130877 +sg25273 +S', 1450/1460' +p130878 +sg25275 +S'\n' +p130879 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccef.jpg' +p130880 +sg25267 +g27 +sa(dp130881 +g25273 +S'etching' +p130882 +sg25267 +g27 +sg25275 +S'1935' +p130883 +sg25268 +S'Chevreuse' +p130884 +sg25270 +S'Jacques Villon' +p130885 +sa(dp130886 +g25273 +S'etching' +p130887 +sg25267 +g27 +sg25275 +S'1944' +p130888 +sg25268 +S'Flowers (Fleurs)' +p130889 +sg25270 +S'Jacques Villon' +p130890 +sa(dp130891 +g25273 +S'etching' +p130892 +sg25267 +g27 +sg25275 +S'1930' +p130893 +sg25268 +S'Globes' +p130894 +sg25270 +S'Jacques Villon' +p130895 +sa(dp130896 +g25273 +S'etching' +p130897 +sg25267 +g27 +sg25275 +S'1943' +p130898 +sg25268 +S'Interior (Int\xc3\xa9rieur)' +p130899 +sg25270 +S'Jacques Villon' +p130900 +sa(dp130901 +g25273 +S'drypoint' +p130902 +sg25267 +g27 +sg25275 +S'1931' +p130903 +sg25268 +S'Portrait of J.P. (J. Patrelle)' +p130904 +sg25270 +S'Jacques Villon' +p130905 +sa(dp130906 +g25273 +S'engraving' +p130907 +sg25267 +g27 +sg25275 +S'1935' +p130908 +sg25268 +S'My Old Luxembourg (Mon vieux Luxembourg)' +p130909 +sg25270 +S'Jacques Villon' +p130910 +sa(dp130911 +g25273 +S'drypoint' +p130912 +sg25267 +g27 +sg25275 +S'1933' +p130913 +sg25268 +S'Nude Fixing Her Hair (Nu se coiffant)' +p130914 +sg25270 +S'Jacques Villon' +p130915 +sa(dp130916 +g25273 +S'etching' +p130917 +sg25267 +g27 +sg25275 +S'1933' +p130918 +sg25268 +S'The Poet (Le po\xc3\xa8te)' +p130919 +sg25270 +S'Jacques Villon' +p130920 +sa(dp130921 +g25273 +S'etching' +p130922 +sg25267 +g27 +sg25275 +S'1934' +p130923 +sg25268 +S'The Village of Mougins (Le Village de Mougins)' +p130924 +sg25270 +S'Jacques Villon' +p130925 +sa(dp130926 +g25273 +S'etching' +p130927 +sg25267 +g27 +sg25275 +S'1935' +p130928 +sg25268 +S'The Great Draftsman Seated (Le grand dessinateur assis)' +p130929 +sg25270 +S'Jacques Villon' +p130930 +sa(dp130931 +g25268 +S'Saint Barbara' +p130932 +sg25270 +S'Artist Information (' +p130933 +sg25273 +S'German, active c. 1470/1480' +p130934 +sg25275 +S'(related artist)' +p130935 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a51d.jpg' +p130936 +sg25267 +g27 +sa(dp130937 +g25268 +S'Game of Checkers (La partie de dames)' +p130938 +sg25270 +S'Artist Information (' +p130939 +sg25273 +S'(artist)' +p130940 +sg25275 +S'\n' +p130941 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000fad.jpg' +p130942 +sg25267 +g27 +sa(dp130943 +g25268 +S'Cover for the Album "Paysages et int\xc3\xa9rieurs"' +p130944 +sg25270 +S'Artist Information (' +p130945 +sg25273 +S'(artist)' +p130946 +sg25275 +S'\n' +p130947 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a067.jpg' +p130948 +sg25267 +g27 +sa(dp130949 +g25268 +S'The Bakery (La patiserie)' +p130950 +sg25270 +S'Artist Information (' +p130951 +sg25273 +S'(artist)' +p130952 +sg25275 +S'\n' +p130953 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f25.jpg' +p130954 +sg25267 +g27 +sa(dp130955 +g25268 +S'La Vie muette' +p130956 +sg25270 +S'Edouard Vuillard' +p130957 +sg25273 +S'lithograph' +p130958 +sg25275 +S'1894' +p130959 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f19.jpg' +p130960 +sg25267 +g27 +sa(dp130961 +g25268 +S'Four Scenes from the First Book of Samuel' +p130962 +sg25270 +S'Italian 11th Century' +p130963 +sg25273 +S'overall: 41.4 x 27.3 cm (16 5/16 x 10 3/4 in.)' +p130964 +sg25275 +S'\nminiature on vellum' +p130965 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00034/a0003421.jpg' +p130966 +sg25267 +g27 +sa(dp130967 +g25268 +S'Saint John Dictating to the Venerable Bede' +p130968 +sg25270 +S'Austrian 12th Century' +p130969 +sg25273 +S'overall: 35.2 x 23.5 cm (13 7/8 x 9 1/4 in.)' +p130970 +sg25275 +S'\npen with brown and red ink with color washes on vellum' +p130971 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00030/a0003030.jpg' +p130972 +sg25267 +g27 +sa(dp130973 +g25268 +S'Christ on the Cross' +p130974 +sg25270 +S'Netherlandish 15th Century' +p130975 +sg25273 +S'Overall: 82.9 x 52.8 cm (32 5/8 x 20 13/16 in.)\r\noverall (external frame dimensions): 92.1 x 64.1 cm (36 1/4 x 25 1/4 in.)' +p130976 +sg25275 +S'\nwoodcut, hand-colored in dark red, blue-green, olive, yellow-brown and blue; printed in brown ink on two sheets of paper' +p130977 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005708.jpg' +p130978 +sg25267 +g27 +sa(dp130979 +g25268 +S'Woman Reading (Liseuse)' +p130980 +sg25270 +S'Edgar Degas' +p130981 +sg25273 +S'monotype (black ink)' +p130982 +sg25275 +S'c. 1885' +p130983 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f15.jpg' +p130984 +sg25267 +g27 +sa(dp130985 +g25268 +S'Minotauromachy (La minotauromachie)' +p130986 +sg25270 +S'Pablo Picasso' +p130987 +sg25273 +S'etching' +p130988 +sg25275 +S'1935' +p130989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00022/a00022ec.jpg' +p130990 +sg25267 +g27 +sa(dp130991 +g25273 +S'lithograph' +p130992 +sg25267 +g27 +sg25275 +S'1947' +p130993 +sg25268 +S'Head of a Girl (Tete de jeune femme)' +p130994 +sg25270 +S'Pablo Picasso' +p130995 +sa(dp130996 +g25268 +S'Saint Roche' +p130997 +sg25270 +S'Artist Information (' +p130998 +sg25273 +S'German, active c. 1470/1480' +p130999 +sg25275 +S'(related artist)' +p131000 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a510.jpg' +p131001 +sg25267 +g27 +sa(dp131002 +g25268 +S'Death by Water' +p131003 +sg25270 +S'Stanley William Hayter' +p131004 +sg25273 +S'engraving with gouging' +p131005 +sg25275 +S'1948' +p131006 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a000613f.jpg' +p131007 +sg25267 +g27 +sa(dp131008 +g25273 +S'color monotype' +p131009 +sg25267 +g27 +sg25275 +S'1949' +p131010 +sg25268 +S'Head of a Woman (Mrs. Esther Halpern)' +p131011 +sg25270 +S'Bernard Reder' +p131012 +sa(dp131013 +g25268 +S'The Flagellation' +p131014 +sg25270 +S'Artist Information (' +p131015 +sg25273 +S'Bohemian, active c. 1400' +p131016 +sg25275 +S'(related artist)' +p131017 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e27.jpg' +p131018 +sg25267 +g27 +sa(dp131019 +g25268 +S'Coronation of the Virgin with the Trinity and Saints' +p131020 +sg25270 +S'Olivetan Master' +p131021 +sg25273 +S'miniature on vellum' +p131022 +sg25275 +S'c. 1440' +p131023 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a000588b.jpg' +p131024 +sg25267 +g27 +sa(dp131025 +g25273 +S'Bohemian, active c. 1400' +p131026 +sg25267 +g27 +sg25275 +S'(related artist)' +p131027 +sg25268 +S'David in Prayer' +p131028 +sg25270 +S'Artist Information (' +p131029 +sa(dp131030 +g25268 +S'Isaac Blessing Jacob' +p131031 +sg25270 +S'Artist Information (' +p131032 +sg25273 +S'Bohemian, active c. 1400' +p131033 +sg25275 +S'(related artist)' +p131034 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fbd.jpg' +p131035 +sg25267 +g27 +sa(dp131036 +g25273 +S'overall: 22.9 x 14.4 cm (9 x 5 11/16 in.)' +p131037 +sg25267 +g27 +sg25275 +S'\nminiature on vellum' +p131038 +sg25268 +S'The Judge Judah (?)' +p131039 +sg25270 +S'German 13th Century' +p131040 +sa(dp131041 +g25268 +S'Nuremberg' +p131042 +sg25270 +S'German 16th Century' +p131043 +sg25273 +S'Rosenwald Collection' +p131044 +sg25275 +S'\nengraving' +p131045 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b06f.jpg' +p131046 +sg25267 +g27 +sa(dp131047 +g25268 +S'Adam and Eve' +p131048 +sg25270 +S'Hans Baldung Grien' +p131049 +sg25273 +S'chiaroscuro woodcut' +p131050 +sg25275 +S'1511' +p131051 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b02a.jpg' +p131052 +sg25267 +g27 +sa(dp131053 +g25273 +S'color lithograph' +p131054 +sg25267 +g27 +sg25275 +S'1946' +p131055 +sg25268 +S'The Yellow Table' +p131056 +sg25270 +S'Maxil Ballinger' +p131057 +sa(dp131058 +g25268 +S'Playing Card' +p131059 +sg25270 +S'German 15th Century' +p131060 +sg25273 +S'Rosenwald Collection' +p131061 +sg25275 +S'\nwoodcut' +p131062 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005784.jpg' +p131063 +sg25267 +g27 +sa(dp131064 +g25268 +S'Souvenir a Bretagne' +p131065 +sg25270 +S'Emile Bernard' +p131066 +sg25273 +S'woodcut' +p131067 +sg25275 +S'unknown date\n' +p131068 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a000903c.jpg' +p131069 +sg25267 +g27 +sa(dp131070 +g25273 +S'lithograph' +p131071 +sg25267 +g27 +sg25275 +S'unknown date\n' +p131072 +sg25268 +S'"I will lift up mine eyes unto the hills"' +p131073 +sg25270 +S'Julius Thiengen Bloch' +p131074 +sa(dp131075 +g25273 +S'lithograph' +p131076 +sg25267 +g27 +sg25275 +S'unknown date\n' +p131077 +sg25268 +S'Negro' +p131078 +sg25270 +S'Julius Thiengen Bloch' +p131079 +sa(dp131080 +g25273 +S'lithograph' +p131081 +sg25267 +g27 +sg25275 +S'unknown date\n' +p131082 +sg25268 +S'Night' +p131083 +sg25270 +S'Julius Thiengen Bloch' +p131084 +sa(dp131085 +g25273 +S'lithograph' +p131086 +sg25267 +g27 +sg25275 +S'unknown date\n' +p131087 +sg25268 +S'The Refugee' +p131088 +sg25270 +S'Julius Thiengen Bloch' +p131089 +sa(dp131090 +g25273 +S'pelograph (lithograph?)' +p131091 +sg25267 +g27 +sg25275 +S'unknown date\n' +p131092 +sg25268 +S'The Prisoner' +p131093 +sg25270 +S'Bertalan Bodnar' +p131094 +sa(dp131095 +g25273 +S'lithograph' +p131096 +sg25267 +g27 +sg25275 +S'1926' +p131097 +sg25268 +S'Still Life IV' +p131098 +sg25270 +S'Georges Braque' +p131099 +sa(dp131100 +g25268 +S'Twelve Children Dancing' +p131101 +sg25270 +S'Domenico Campagnola' +p131102 +sg25273 +S'engraving' +p131103 +sg25275 +S'1517' +p131104 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c882.jpg' +p131105 +sg25267 +g27 +sa(dp131106 +g25273 +S'color lithograph' +p131107 +sg25267 +g27 +sg25275 +S'unknown date\n' +p131108 +sg25268 +S'The Printer Ravel' +p131109 +sg25270 +S'Pierre-Eugene Clairin' +p131110 +sa(dp131111 +g25268 +S'Horses in the Meadow (Chevaux dans la prairie)' +p131112 +sg25270 +S'Edgar Degas' +p131113 +sg25273 +S'soft-ground etching' +p131114 +sg25275 +S'c. 1891/1892' +p131115 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009807.jpg' +p131116 +sg25267 +g27 +sa(dp131117 +g25273 +S'Rosenwald Collection' +p131118 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p131119 +sg25268 +S'Playing Card' +p131120 +sg25270 +S'German 15th Century' +p131121 +sa(dp131122 +g25273 +S'color monotype (plastic plate)' +p131123 +sg25267 +g27 +sg25275 +S'1947' +p131124 +sg25268 +S'Phantoms' +p131125 +sg25270 +S'Stella Drabkin' +p131126 +sa(dp131127 +g25273 +S'color monotype (plastic plate)' +p131128 +sg25267 +g27 +sg25275 +S'1947' +p131129 +sg25268 +S'Street at Night' +p131130 +sg25270 +S'Stella Drabkin' +p131131 +sa(dp131132 +g25268 +S'Landscape with the Cannon' +p131133 +sg25270 +S'Albrecht D\xc3\xbcrer' +p131134 +sg25273 +S'etching (iron)' +p131135 +sg25275 +S'1518' +p131136 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b104.jpg' +p131137 +sg25267 +g27 +sa(dp131138 +g25268 +S'Artus Wolfart' +p131139 +sg25270 +S'Artist Information (' +p131140 +sg25273 +S'(artist after)' +p131141 +sg25275 +S'\n' +p131142 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0f3.jpg' +p131143 +sg25267 +g27 +sa(dp131144 +g25268 +S'Constantijn Huygens' +p131145 +sg25270 +S'Artist Information (' +p131146 +sg25273 +S'(artist after)' +p131147 +sg25275 +S'\n' +p131148 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d106.jpg' +p131149 +sg25267 +g27 +sa(dp131150 +g25268 +S'Karel de Mallery' +p131151 +sg25270 +S'Artist Information (' +p131152 +sg25273 +S'(artist after)' +p131153 +sg25275 +S'\n' +p131154 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d10e.jpg' +p131155 +sg25267 +g27 +sa(dp131156 +g25268 +S'Orazio Gentileschi' +p131157 +sg25270 +S'Artist Information (' +p131158 +sg25273 +S'(artist after)' +p131159 +sg25275 +S'\n' +p131160 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d109.jpg' +p131161 +sg25267 +g27 +sa(dp131162 +g25268 +S'Jan van Mildert' +p131163 +sg25270 +S'Artist Information (' +p131164 +sg25273 +S'(artist after)' +p131165 +sg25275 +S'\n' +p131166 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d10f.jpg' +p131167 +sg25267 +g27 +sa(dp131168 +g25268 +S'Sir Kenelm Digby' +p131169 +sg25270 +S'Artist Information (' +p131170 +sg25273 +S'(artist after)' +p131171 +sg25275 +S'\n' +p131172 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d108.jpg' +p131173 +sg25267 +g27 +sa(dp131174 +g25268 +S'Pieter de Jode the Elder' +p131175 +sg25270 +S'Artist Information (' +p131176 +sg25273 +S'(artist after)' +p131177 +sg25275 +S'\n' +p131178 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d10b.jpg' +p131179 +sg25267 +g27 +sa(dp131180 +g25268 +S'The Baptism of Christ; Pharoah Passing through the Red Sea; Joshua and Caleb' +p131181 +sg25270 +S'Netherlandish 15th Century' +p131182 +sg25273 +S'Schreiber Manuel, Vol. IV, p., no. 27, State ed. VIII' +p131183 +sg25275 +S'\nwoodcut (block book page)' +p131184 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccfc.jpg' +p131185 +sg25267 +g27 +sa(dp131186 +g25273 +S'lithograph [trial proof]' +p131187 +sg25267 +g27 +sg25275 +S'1949' +p131188 +sg25268 +S"Fyodor's Second Marriage (Book I: The History of a Family, facing p.10)" +p131189 +sg25270 +S'Fritz Eichenberg' +p131190 +sa(dp131191 +g25273 +S'lithograph' +p131192 +sg25267 +g27 +sg25275 +S'1949' +p131193 +sg25268 +S"Fyodor's Second Marriage (Book I: The History of a Family, facing p.10)" +p131194 +sg25270 +S'Fritz Eichenberg' +p131195 +sa(dp131196 +g25273 +S'lithograph' +p131197 +sg25267 +g27 +sg25275 +S'1949' +p131198 +sg25268 +S'Alyosha the Boy (Book I: The History of a Family, facing p.14)' +p131199 +sg25270 +S'Fritz Eichenberg' +p131200 +sa(dp131201 +g25273 +S'lithograph' +p131202 +sg25267 +g27 +sg25275 +S'1949' +p131203 +sg25268 +S'The Old Buffoon (Book II: An Unfortunate Gathering, facing p.30)' +p131204 +sg25270 +S'Fritz Eichenberg' +p131205 +sa(dp131206 +g25273 +S'lithograph' +p131207 +sg25267 +g27 +sg25275 +S'1949' +p131208 +sg25268 +S'Women of Great Faith (Book II: An Unfortunate Gathering, facing p.38)' +p131209 +sg25270 +S'Fritz Eichenberg' +p131210 +sa(dp131211 +g25273 +S'lithograph' +p131212 +sg25267 +g27 +sg25275 +S'1949' +p131213 +sg25268 +S'The Blessing of Father Zosima (Book II: An Unfortunate Gathering, p.58)' +p131214 +sg25270 +S'Fritz Eichenberg' +p131215 +sa(dp131216 +g25273 +S'lithograph' +p131217 +sg25267 +g27 +sg25275 +S'1949' +p131218 +sg25268 +S'Grigory and the Child (Book III: The Sensualists, p.74)' +p131219 +sg25270 +S'Fritz Eichenberg' +p131220 +sa(dp131221 +g25273 +S'lithograph' +p131222 +sg25267 +g27 +sg25275 +S'1949' +p131223 +sg25268 +S'The Finding of Lizaveta (Book III: The Sensualists, facing p.78)' +p131224 +sg25270 +S'Fritz Eichenberg' +p131225 +sa(dp131226 +g25273 +S'lithograph' +p131227 +sg25267 +g27 +sg25275 +S'1949' +p131228 +sg25268 +S'The Ardent Heart (Book III: The Sensualists, facing p.86)' +p131229 +sg25270 +S'Fritz Eichenberg' +p131230 +sa(dp131231 +g25273 +S'lithograph' +p131232 +sg25267 +g27 +sg25275 +S'1949' +p131233 +sg25268 +S'The Madness of Dmitri (Book III: The Sensualists, facing p.106)' +p131234 +sg25270 +S'Fritz Eichenberg' +p131235 +sa(dp131236 +g25268 +S'Apocalypse of John, Leaf 10' +p131237 +sg25270 +S'German 15th Century' +p131238 +sg25273 +S'Schreiber Manuel, Vol. IV, p., no. 208, State ed. V' +p131239 +sg25275 +S'\nwoodcut' +p131240 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a65c.jpg' +p131241 +sg25267 +g27 +sa(dp131242 +g25273 +S'lithograph' +p131243 +sg25267 +g27 +sg25275 +S'1949' +p131244 +sg25268 +S"Katerina Kisses Grushenka's Hand (Book III: The Sensualists, facing p.110)" +p131245 +sg25270 +S'Fritz Eichenberg' +p131246 +sa(dp131247 +g25273 +S'lithograph' +p131248 +sg25267 +g27 +sg25275 +S'1949' +p131249 +sg25268 +S'Father Ferapont (Book IV: Lacerations, facing p.126)' +p131250 +sg25270 +S'Fritz Eichenberg' +p131251 +sa(dp131252 +g25273 +S'lithograph' +p131253 +sg25267 +g27 +sg25275 +S'1949' +p131254 +sg25268 +S'The Boy Who Threw the Stone (Book IV: Lacerations, facing p.134)' +p131255 +sg25270 +S'Fritz Eichenberg' +p131256 +sa(dp131257 +g25273 +S'lithograph' +p131258 +sg25267 +g27 +sg25275 +S'1949' +p131259 +sg25268 +S'"And in the Open Air" (Book IV: Lacerations, facing p.158)' +p131260 +sg25270 +S'Fritz Eichenberg' +p131261 +sa(dp131262 +g25273 +S'lithograph' +p131263 +sg25267 +g27 +sg25275 +S'1949' +p131264 +sg25268 +S'"That\'s Rebellion" (Book V: Pro and Contra, facing p.182)' +p131265 +sg25270 +S'Fritz Eichenberg' +p131266 +sa(dp131267 +g25273 +S'lithograph' +p131268 +sg25267 +g27 +sg25275 +S'1949' +p131269 +sg25268 +S'The Grand Inquisitor (Book V: Pro and Contra, facing p.190)' +p131270 +sg25270 +S'Fritz Eichenberg' +p131271 +sa(dp131272 +g25273 +S'lithograph' +p131273 +sg25267 +g27 +sg25275 +S'1949' +p131274 +sg25268 +S'The Crazy Old Man (Book V: Pro and Contra, facing p.206)' +p131275 +sg25270 +S'Fritz Eichenberg' +p131276 +sa(dp131277 +g25273 +S'lithograph' +p131278 +sg25267 +g27 +sg25275 +S'1949' +p131279 +sg25268 +S'The Scream of the Epileptic (Book VI: The Russian Monk, facing p.214)' +p131280 +sg25270 +S'Fritz Eichenberg' +p131281 +sa(dp131282 +g25273 +S'lithograph' +p131283 +sg25267 +g27 +sg25275 +S'1949' +p131284 +sg25268 +S'Alyosha among the Tombs (Book VII: Alyosha, facing p.252)' +p131285 +sg25270 +S'Fritz Eichenberg' +p131286 +sa(dp131287 +g25273 +S'lithograph' +p131288 +sg25267 +g27 +sg25275 +S'1949' +p131289 +sg25268 +S'"Satan, Go Hence!" (Book VII: Alyosha, facing p.256)' +p131290 +sg25270 +S'Fritz Eichenberg' +p131291 +sa(dp131292 +g25268 +S'Apocalypse of John, Leaf 42' +p131293 +sg25270 +S'German 15th Century' +p131294 +sg25273 +S'Schreiber Manuel, Vol. IV, p., no. 210, State ed. V' +p131295 +sg25275 +S'\nwoodcut' +p131296 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a59f.jpg' +p131297 +sg25267 +g27 +sa(dp131298 +g25273 +S'lithograph' +p131299 +sg25267 +g27 +sg25275 +S'1949' +p131300 +sg25268 +S'"Drink to the Gates of Paradise" (Book VII: Alyosha, facing p.272)' +p131301 +sg25270 +S'Fritz Eichenberg' +p131302 +sa(dp131303 +g25273 +S'lithograph' +p131304 +sg25267 +g27 +sg25275 +S'1949' +p131305 +sg25268 +S'Cana of Galilee (Book VII: Alyosha, facing p.276)' +p131306 +sg25270 +S'Fritz Eichenberg' +p131307 +sa(dp131308 +g25273 +S'lithograph' +p131309 +sg25267 +g27 +sg25275 +S'1949' +p131310 +sg25268 +S'The Mystery of Earth (Book VIII: Mitya, facing p.284)' +p131311 +sg25270 +S'Fritz Eichenberg' +p131312 +sa(dp131313 +g25273 +S'lithograph' +p131314 +sg25267 +g27 +sg25275 +S'1949' +p131315 +sg25268 +S'Old Samsonov (Book VIII: Mitya, facing p.288)' +p131316 +sg25270 +S'Fritz Eichenberg' +p131317 +sa(dp131318 +g25273 +S'lithograph' +p131319 +sg25267 +g27 +sg25275 +S'1949' +p131320 +sg25268 +S'An Occurrence in the Dark (Book VIII: Mitya, facing p.304)' +p131321 +sg25270 +S'Fritz Eichenberg' +p131322 +sa(dp131323 +g25273 +S'lithograph' +p131324 +sg25267 +g27 +sg25275 +S'1949' +p131325 +sg25268 +S'Fyodor Pavlovich Examines His Bruises (Book VIII: Mitya, facing p.308)' +p131326 +sg25270 +S'Fritz Eichenberg' +p131327 +sa(dp131328 +g25273 +S'lithograph' +p131329 +sg25267 +g27 +sg25275 +S'1949' +p131330 +sg25268 +S'Dmitri on the Road (Book VIII: Mitya, facing p.316)' +p131331 +sg25270 +S'Fritz Eichenberg' +p131332 +sa(dp131333 +g25273 +S'lithograph' +p131334 +sg25267 +g27 +sg25275 +S'1949' +p131335 +sg25268 +S'The First, the Rightful Lover (Book VIII: Mitya, facing p.320)' +p131336 +sg25270 +S'Fritz Eichenberg' +p131337 +sa(dp131338 +g25273 +S'lithograph' +p131339 +sg25267 +g27 +sg25275 +S'1949' +p131340 +sg25268 +S'The Orgy (Book VIII: Mitya, facing p.336)' +p131341 +sg25270 +S'Fritz Eichenberg' +p131342 +sa(dp131343 +g25273 +S'lithograph' +p131344 +sg25267 +g27 +sg25275 +S'1949' +p131345 +sg25268 +S'"I am Drunk with You" (Book VIII: Mitya, facing p.340)' +p131346 +sg25270 +S'Fritz Eichenberg' +p131347 +sa(dp131348 +g25268 +S'The Last Agony of the Dying Man' +p131349 +sg25270 +S'German 15th Century' +p131350 +sg25273 +S'Schreiber Manuel, Vol. IV, p., no. 309, State ed. VII' +p131351 +sg25275 +S'\nhand-colored woodcut' +p131352 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5a0.jpg' +p131353 +sg25267 +g27 +sa(dp131354 +g25273 +S'lithograph' +p131355 +sg25267 +g27 +sg25275 +S'1949' +p131356 +sg25268 +S'"You are Charged with the Murder of Your Father (Book IX: Preliminary Investigation, facing p.348)' +p131357 +sg25270 +S'Fritz Eichenberg' +p131358 +sa(dp131359 +g25273 +S'lithograph' +p131360 +sg25267 +g27 +sg25275 +S'1949' +p131361 +sg25268 +S'Quite Dead, with His Head Broken (Book IX: Preliminary Investigation, facing p.352)' +p131362 +sg25270 +S'Fritz Eichenberg' +p131363 +sa(dp131364 +g25273 +S'lithograph' +p131365 +sg25267 +g27 +sg25275 +S'1949' +p131366 +sg25268 +S'The First Ordeal (Book IX: Preliminary Investigation, facing p.356)' +p131367 +sg25270 +S'Fritz Eichenberg' +p131368 +sa(dp131369 +g25273 +S'lithograph' +p131370 +sg25267 +g27 +sg25275 +S'1949' +p131371 +sg25268 +S'Mitya is Disgraced (Book IX: Preliminary Investigation, facing p.374)' +p131372 +sg25270 +S'Fritz Eichenberg' +p131373 +sa(dp131374 +g25273 +S'lithograph' +p131375 +sg25267 +g27 +sg25275 +S'1949' +p131376 +sg25268 +S'The Peasant Called It a "Babe" (Book IX: Preliminary Investigation, facing p.394)' +p131377 +sg25270 +S'Fritz Eichenberg' +p131378 +sa(dp131379 +g25273 +S'lithograph' +p131380 +sg25267 +g27 +sg25275 +S'1949' +p131381 +sg25268 +S"Ilusha's Father (Book X: The Boys, facing p.416)" +p131382 +sg25270 +S'Fritz Eichenberg' +p131383 +sa(dp131384 +g25273 +S'lithograph' +p131385 +sg25267 +g27 +sg25275 +S'1949' +p131386 +sg25268 +S'Ilusha Sick (Book X: The Boys, facing p.420)' +p131387 +sg25270 +S'Fritz Eichenberg' +p131388 +sa(dp131389 +g25273 +S'lithograph' +p131390 +sg25267 +g27 +sg25275 +S'1949' +p131391 +sg25268 +S'The Little Bronze Cannon (Book X: The Boys, facing p.428)' +p131392 +sg25270 +S'Fritz Eichenberg' +p131393 +sa(dp131394 +g25273 +S'lithograph' +p131395 +sg25267 +g27 +sg25275 +S'1949' +p131396 +sg25268 +S'The Doctor (Book X: The Boys, facing p.432)' +p131397 +sg25270 +S'Fritz Eichenberg' +p131398 +sa(dp131399 +g25273 +S'lithograph' +p131400 +sg25267 +g27 +sg25275 +S'1949' +p131401 +sg25268 +S'Krasotkin and His Son (Book XI: Brother Ivan Fyodorovich, facing p.436)' +p131402 +sg25270 +S'Fritz Eichenberg' +p131403 +sa(dp131404 +g25268 +S'Massacre of the Firstborn and Egyptian Darkness' +p131405 +sg25270 +S'Spanish 15th Century' +p131406 +sg25273 +S'Schreiber, undescribed' +p131407 +sg25275 +S'\nhand-colored woodcut' +p131408 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed52.jpg' +p131409 +sg25267 +g27 +sa(dp131410 +g25273 +S'lithograph' +p131411 +sg25267 +g27 +sg25275 +S'1949' +p131412 +sg25268 +S'The Imp (Book XI: Brother Ivan Fyodorovich, facing p.452)' +p131413 +sg25270 +S'Fritz Eichenberg' +p131414 +sa(dp131415 +g25273 +S'lithograph' +p131416 +sg25267 +g27 +sg25275 +S'1949' +p131417 +sg25268 +S'"Brother, Turn to Me!" (Book XI: Brother Ivan Fyodorovich, facing p.468)' +p131418 +sg25270 +S'Fritz Eichenberg' +p131419 +sa(dp131420 +g25273 +S'lithograph' +p131421 +sg25267 +g27 +sg25275 +S'1949' +p131422 +sg25268 +S'Last Interview with Smerdyakov (Book XI: Ivan Fyodorovich, facing p.484)' +p131423 +sg25270 +S'Fritz Eichenberg' +p131424 +sa(dp131425 +g25273 +S'lithograph' +p131426 +sg25267 +g27 +sg25275 +S'1949' +p131427 +sg25268 +S'Ivan and the Devil (Book XI: Ivan Fyodorovich, facing p.492)' +p131428 +sg25270 +S'Fritz Eichenberg' +p131429 +sa(dp131430 +g25273 +S'lithograph' +p131431 +sg25267 +g27 +sg25275 +S'1949' +p131432 +sg25268 +S'Trial for Murder (Book XII: A Judicial Error, facing p.512)' +p131433 +sg25270 +S'Fritz Eichenberg' +p131434 +sa(dp131435 +g25273 +S'lithograph' +p131436 +sg25267 +g27 +sg25275 +S'1949' +p131437 +sg25268 +S'He Sat Rigid in His Place (Book XII: A Judicial Error, facing p.528)' +p131438 +sg25270 +S'Fritz Eichenberg' +p131439 +sa(dp131440 +g25273 +S'lithograph' +p131441 +sg25267 +g27 +sg25275 +S'1949' +p131442 +sg25268 +S'Speech for the Defence (Book XII: A Judicial Error, facing p.564)' +p131443 +sg25270 +S'Fritz Eichenberg' +p131444 +sa(dp131445 +g25273 +S'lithograph' +p131446 +sg25267 +g27 +sg25275 +S'1949' +p131447 +sg25268 +S'"Gentlemen of the Jury" (Book XII: A Judicial Error, facing p.582)' +p131448 +sg25270 +S'Fritz Eichenberg' +p131449 +sa(dp131450 +g25273 +S'lithograph' +p131451 +sg25267 +g27 +sg25275 +S'1949' +p131452 +sg25268 +S'"Hurrah for Karamazov!" (Epilogue, facing p.602)' +p131453 +sg25270 +S'Fritz Eichenberg' +p131454 +sa(dp131455 +g25273 +S'lithograph' +p131456 +sg25267 +g27 +sg25275 +S'1949' +p131457 +sg25268 +S'Dostoevsky [illustration for Book V, chap. V: The Grand Inquis]' +p131458 +sg25270 +S'Fritz Eichenberg' +p131459 +sa(dp131460 +g25268 +S'Page from "Canticum Canticorum": 2nd Edition' +p131461 +sg25270 +S'Netherlandish 15th Century' +p131462 +sg25273 +S'Schreiber Manuel, Vol. IV, p., no. 157, State ed. Xh' +p131463 +sg25275 +S'\nwoodcut (block book page)' +p131464 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccfe.jpg' +p131465 +sg25267 +g27 +sa(dp131466 +g25268 +S'Swine Herd near a Chapel' +p131467 +sg25270 +S'Allart van Everdingen' +p131468 +sg25273 +S'etching' +p131469 +sg25275 +S'probably c. 1645/1656' +p131470 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d15e.jpg' +p131471 +sg25267 +g27 +sa(dp131472 +g25268 +S'Auti te Pape (Women at the River)' +p131473 +sg25270 +S'Paul Gauguin' +p131474 +sg25273 +S'woodcut printed in yellow, orange and black by Louis Roy' +p131475 +sg25275 +S'1894/1895' +p131476 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00015/a000155c.jpg' +p131477 +sg25267 +g27 +sa(dp131478 +g25268 +S'Mahna no Varua Ino (The Devil Speaks)' +p131479 +sg25270 +S'Paul Gauguin' +p131480 +sg25273 +S'woodcut printed in orange, green and black by Louis Roy' +p131481 +sg25275 +S'1894/1895' +p131482 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a7f.jpg' +p131483 +sg25267 +g27 +sa(dp131484 +g25268 +S'Manao Tupapau (She is Haunted by a Spirit)' +p131485 +sg25270 +S'Paul Gauguin' +p131486 +sg25273 +S'woodcut printed in yellow, orange and black by Louis Roy' +p131487 +sg25275 +S'1894/1895' +p131488 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a7d.jpg' +p131489 +sg25267 +g27 +sa(dp131490 +g25268 +S'Noa Noa (Fragrant, Fragrant)' +p131491 +sg25270 +S'Paul Gauguin' +p131492 +sg25273 +S'woodcut printed in yellow, yellow-brown, red and black by Louis Roy' +p131493 +sg25275 +S'1894/1895' +p131494 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00016/a000163e.jpg' +p131495 +sg25267 +g27 +sa(dp131496 +g25268 +S'Te Po (The Long Night)' +p131497 +sg25270 +S'Paul Gauguin' +p131498 +sg25273 +S'woodcut printed in red-brown, yellow and black by Louis Roy' +p131499 +sg25275 +S'1894/1895' +p131500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a7c.jpg' +p131501 +sg25267 +g27 +sa(dp131502 +g25268 +S"The Tree of Man's Life" +p131503 +sg25270 +S'John Goddard' +p131504 +sg25273 +S'engraving' +p131505 +sg25275 +S'unknown date\n' +p131506 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a000785e.jpg' +p131507 +sg25267 +g27 +sa(dp131508 +g25268 +S'Gheraert van der Spronck' +p131509 +sg25270 +S'Hendrick Goltzius' +p131510 +sg25273 +S', 1581' +p131511 +sg25275 +S'\n' +p131512 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce33.jpg' +p131513 +sg25267 +g27 +sa(dp131514 +g25268 +S'Cardinal Charles de Bourbon' +p131515 +sg25270 +S'Jean de Gourmont I' +p131516 +sg25273 +S'engraving' +p131517 +sg25275 +S'unknown date\n' +p131518 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000833d.jpg' +p131519 +sg25267 +g27 +sa(dp131520 +g25268 +S'Old Woman on a Swing' +p131521 +sg25270 +S'Francisco de Goya' +p131522 +sg25273 +S'etching and (burnisher?)' +p131523 +sg25275 +S'1824/1828' +p131524 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed59.jpg' +p131525 +sg25267 +g27 +sa(dp131526 +g25268 +S'Page from "Canticum Canticorum": 2nd Edition' +p131527 +sg25270 +S'Netherlandish 15th Century' +p131528 +sg25273 +S'Schreiber Manuel, Vol. IV, p., no. 158, State ed. XIVh' +p131529 +sg25275 +S'\nwoodcut (block book page)' +p131530 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccff.jpg' +p131531 +sg25267 +g27 +sa(dp131532 +g25268 +S'Old Man on a Swing' +p131533 +sg25270 +S'Francisco de Goya' +p131534 +sg25273 +S'etching, burnished aquatint and/or lavis on heavy laid paper [printed in the Calcografia in 1859 for John Saville Lumley]' +p131535 +sg25275 +S'c. 1826/1828' +p131536 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed57.jpg' +p131537 +sg25267 +g27 +sa(dp131538 +g25273 +S'engraving' +p131539 +sg25267 +g27 +sg25275 +S'1946' +p131540 +sg25268 +S'Bird Stalks Man' +p131541 +sg25270 +S'Peter Grippe' +p131542 +sa(dp131543 +g25268 +S'Marcelle la Blonde' +p131544 +sg25270 +S'Juan Gris' +p131545 +sg25273 +S'lithograph in red-brown' +p131546 +sg25275 +S'1921' +p131547 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000edc1.jpg' +p131548 +sg25267 +g27 +sa(dp131549 +g25268 +S'Marcelle la Brune' +p131550 +sg25270 +S'Juan Gris' +p131551 +sg25273 +S'lithograph in dark green' +p131552 +sg25275 +S'1921' +p131553 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000edc2.jpg' +p131554 +sg25267 +g27 +sa(dp131555 +g25268 +S'The Corral' +p131556 +sg25270 +S'George Overbury (Pop) Hart' +p131557 +sg25273 +S'lithograph hand-colored with watercolor and India ink' +p131558 +sg25275 +S'1928' +p131559 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ab1.jpg' +p131560 +sg25267 +g27 +sa(dp131561 +g25268 +S'Hut in Trinidad' +p131562 +sg25270 +S'George Overbury (Pop) Hart' +p131563 +sg25273 +S'watercolor over graphite' +p131564 +sg25275 +S'unknown date\n' +p131565 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e9/a000e9c6.jpg' +p131566 +sg25267 +g27 +sa(dp131567 +g25273 +S'pen and black ink with yellow crayon' +p131568 +sg25267 +g27 +sg25275 +S'1948' +p131569 +sg25268 +S'Work Sheet' +p131570 +sg25270 +S'Stanley William Hayter' +p131571 +sa(dp131572 +g25268 +S'Creation of Eve' +p131573 +sg25270 +S'Augustin Hirschvogel' +p131574 +sg25273 +S'etching' +p131575 +sg25275 +S'1547' +p131576 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac34.jpg' +p131577 +sg25267 +g27 +sa(dp131578 +g25268 +S'The Temptation of Eve' +p131579 +sg25270 +S'Augustin Hirschvogel' +p131580 +sg25273 +S'etching' +p131581 +sg25275 +S'1548' +p131582 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abe3.jpg' +p131583 +sg25267 +g27 +sa(dp131584 +g25268 +S'The Fall of Man' +p131585 +sg25270 +S'Augustin Hirschvogel' +p131586 +sg25273 +S'etching' +p131587 +sg25275 +S'1548' +p131588 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abfa.jpg' +p131589 +sg25267 +g27 +sa(dp131590 +g25268 +S'The Sacred Monograph with the Crucifixion and Passion Symbols [recto]' +p131591 +sg25270 +S'German 15th Century' +p131592 +sg25273 +S'Schreiber, Vol. IX, no. 2754, State m' +p131593 +sg25275 +S'\nmetalcut, hand-colored in light green, rose, and yellow' +p131594 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a462.jpg' +p131595 +sg25267 +g27 +sa(dp131596 +g25268 +S'Melchizedek with Bread and Wine' +p131597 +sg25270 +S'Augustin Hirschvogel' +p131598 +sg25273 +S'etching' +p131599 +sg25275 +S'1547' +p131600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abed.jpg' +p131601 +sg25267 +g27 +sa(dp131602 +g25268 +S'The Sacrifice of Isaac' +p131603 +sg25270 +S'Augustin Hirschvogel' +p131604 +sg25273 +S'etching' +p131605 +sg25275 +S'1547' +p131606 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac0d.jpg' +p131607 +sg25267 +g27 +sa(dp131608 +g25268 +S'Jacob Wrestling with the Angel' +p131609 +sg25270 +S'Augustin Hirschvogel' +p131610 +sg25273 +S'etching' +p131611 +sg25275 +S'1548' +p131612 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac0f.jpg' +p131613 +sg25267 +g27 +sa(dp131614 +g25268 +S'Joseph Recounts His Dreams' +p131615 +sg25270 +S'Augustin Hirschvogel' +p131616 +sg25273 +S'etching' +p131617 +sg25275 +S'1547' +p131618 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac50.jpg' +p131619 +sg25267 +g27 +sa(dp131620 +g25268 +S'Joseph Thrown into the Well' +p131621 +sg25270 +S'Augustin Hirschvogel' +p131622 +sg25273 +S'etching' +p131623 +sg25275 +S'1549' +p131624 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abe4.jpg' +p131625 +sg25267 +g27 +sa(dp131626 +g25268 +S'Joseph Sold to the Ishmaelites' +p131627 +sg25270 +S'Augustin Hirschvogel' +p131628 +sg25273 +S'etching' +p131629 +sg25275 +S'1547' +p131630 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abf1.jpg' +p131631 +sg25267 +g27 +sa(dp131632 +g25268 +S'Finding of Moses' +p131633 +sg25270 +S'Augustin Hirschvogel' +p131634 +sg25273 +S'etching' +p131635 +sg25275 +S'1548' +p131636 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abdc.jpg' +p131637 +sg25267 +g27 +sa(dp131638 +g25268 +S'Moses and the Burning Bush' +p131639 +sg25270 +S'Augustin Hirschvogel' +p131640 +sg25273 +S'etching' +p131641 +sg25275 +S'1548' +p131642 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abd0.jpg' +p131643 +sg25267 +g27 +sa(dp131644 +g25268 +S'Moses and the Serpent' +p131645 +sg25270 +S'Augustin Hirschvogel' +p131646 +sg25273 +S'etching' +p131647 +sg25275 +S'1548' +p131648 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac0b.jpg' +p131649 +sg25267 +g27 +sa(dp131650 +g25268 +S'Moses Closing the Red Sea' +p131651 +sg25270 +S'Augustin Hirschvogel' +p131652 +sg25273 +S'etching' +p131653 +sg25275 +S'1548' +p131654 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abfb.jpg' +p131655 +sg25267 +g27 +sa(dp131656 +g25268 +S'Saint Catherine [verso]' +p131657 +sg25270 +S'German 15th Century' +p131658 +sg25273 +S'Schreiber, Vol. IX, no. 2836, State m' +p131659 +sg25275 +S'\npaste print' +p131660 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a463.jpg' +p131661 +sg25267 +g27 +sa(dp131662 +g25268 +S'Moses Striking the Rock' +p131663 +sg25270 +S'Augustin Hirschvogel' +p131664 +sg25273 +S'etching' +p131665 +sg25275 +S'1548' +p131666 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abf7.jpg' +p131667 +sg25267 +g27 +sa(dp131668 +g25268 +S'Moses with Outstretched Arms' +p131669 +sg25270 +S'Augustin Hirschvogel' +p131670 +sg25273 +S'etching' +p131671 +sg25275 +S'1547' +p131672 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac37.jpg' +p131673 +sg25267 +g27 +sa(dp131674 +g25268 +S'Moses Receiving the Tablets' +p131675 +sg25270 +S'Augustin Hirschvogel' +p131676 +sg25273 +S'etching' +p131677 +sg25275 +S'1548' +p131678 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac4e.jpg' +p131679 +sg25267 +g27 +sa(dp131680 +g25268 +S'Moses Speaks to the Children of Israel' +p131681 +sg25270 +S'Augustin Hirschvogel' +p131682 +sg25273 +S'etching' +p131683 +sg25275 +S'1548' +p131684 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac0e.jpg' +p131685 +sg25267 +g27 +sa(dp131686 +g25268 +S'The Lord Sweetens the Waters of Marah' +p131687 +sg25270 +S'Augustin Hirschvogel' +p131688 +sg25273 +S'etching' +p131689 +sg25275 +S'1548' +p131690 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac08.jpg' +p131691 +sg25267 +g27 +sa(dp131692 +g25268 +S'Nadab and Abihu' +p131693 +sg25270 +S'Augustin Hirschvogel' +p131694 +sg25273 +S'etching' +p131695 +sg25275 +S'1549' +p131696 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac54.jpg' +p131697 +sg25267 +g27 +sa(dp131698 +g25268 +S"The Blossoming of Aaron's Rod" +p131699 +sg25270 +S'Augustin Hirschvogel' +p131700 +sg25273 +S'etching' +p131701 +sg25275 +S'unknown date\n' +p131702 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abd4.jpg' +p131703 +sg25267 +g27 +sa(dp131704 +g25268 +S"Balak's Sacrifice, and Balaam's Prophecy" +p131705 +sg25270 +S'Augustin Hirschvogel' +p131706 +sg25273 +S'etching' +p131707 +sg25275 +S'1548' +p131708 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abd7.jpg' +p131709 +sg25267 +g27 +sa(dp131710 +g25268 +S'The Twelve Stones, and the Waters of the Jordan are Divided' +p131711 +sg25270 +S'Augustin Hirschvogel' +p131712 +sg25273 +S'etching' +p131713 +sg25275 +S'1548' +p131714 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac4b.jpg' +p131715 +sg25267 +g27 +sa(dp131716 +g25268 +S'The Fall of Jericho' +p131717 +sg25270 +S'Augustin Hirschvogel' +p131718 +sg25273 +S'etching' +p131719 +sg25275 +S'1540' +p131720 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac63.jpg' +p131721 +sg25267 +g27 +sa(dp131722 +g25268 +S'Saint Catherine' +p131723 +sg25270 +S'German 15th Century' +p131724 +sg25273 +S'Schreiber, Vol. IX, no. 2136, State m (counterproof)' +p131725 +sg25275 +S'\npaste print [counterproof]' +p131726 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a459.jpg' +p131727 +sg25267 +g27 +sa(dp131728 +g25268 +S'The Sacrifice of Gideon' +p131729 +sg25270 +S'Augustin Hirschvogel' +p131730 +sg25273 +S'etching' +p131731 +sg25275 +S'1549' +p131732 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abcc.jpg' +p131733 +sg25267 +g27 +sa(dp131734 +g25268 +S'Samson Slays the Philistines' +p131735 +sg25270 +S'Augustin Hirschvogel' +p131736 +sg25273 +S'etching' +p131737 +sg25275 +S'1548' +p131738 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abf8.jpg' +p131739 +sg25267 +g27 +sa(dp131740 +g25268 +S'The Death of Samson' +p131741 +sg25270 +S'Augustin Hirschvogel' +p131742 +sg25273 +S'etching' +p131743 +sg25275 +S'1547' +p131744 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac3c.jpg' +p131745 +sg25267 +g27 +sa(dp131746 +g25268 +S'Absalom Slain by Joab' +p131747 +sg25270 +S'Augustin Hirschvogel' +p131748 +sg25273 +S'etching' +p131749 +sg25275 +S'1548' +p131750 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac3e.jpg' +p131751 +sg25267 +g27 +sa(dp131752 +g25268 +S'Jesse Sends David to His Brothers and Saul' +p131753 +sg25270 +S'Augustin Hirschvogel' +p131754 +sg25273 +S'etching' +p131755 +sg25275 +S'1548' +p131756 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abce.jpg' +p131757 +sg25267 +g27 +sa(dp131758 +g25268 +S'David Beheads Goliath' +p131759 +sg25270 +S'Augustin Hirschvogel' +p131760 +sg25273 +S'etching' +p131761 +sg25275 +S'1547' +p131762 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac33.jpg' +p131763 +sg25267 +g27 +sa(dp131764 +g25268 +S"David is Welcomed after Killing Goliath, and Saul's Jealousy" +p131765 +sg25270 +S'Augustin Hirschvogel' +p131766 +sg25273 +S'etching' +p131767 +sg25275 +S'1547' +p131768 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abef.jpg' +p131769 +sg25267 +g27 +sa(dp131770 +g25268 +S'Moses Returns to Egypt from Midian' +p131771 +sg25270 +S'Augustin Hirschvogel' +p131772 +sg25273 +S'etching' +p131773 +sg25275 +S'1549' +p131774 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abe1.jpg' +p131775 +sg25267 +g27 +sa(dp131776 +g25268 +S'The Angel Agitating the Pool of Bethesda' +p131777 +sg25270 +S'Augustin Hirschvogel' +p131778 +sg25273 +S'etching' +p131779 +sg25275 +S'1548' +p131780 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abda.jpg' +p131781 +sg25267 +g27 +sa(dp131782 +g25268 +S'Elijah Anoints Elisha' +p131783 +sg25270 +S'Augustin Hirschvogel' +p131784 +sg25273 +S'etching' +p131785 +sg25275 +S'1549' +p131786 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac05.jpg' +p131787 +sg25267 +g27 +sa(dp131788 +g25268 +S'Fourteen Auxiliary Saints' +p131789 +sg25270 +S'German 15th Century' +p131790 +sg25273 +S'Schreiber, Vol. IX, no. 1765, State a' +p131791 +sg25275 +S'\nwoodcut, hand-colored in pink-red, green, blue, and yellow' +p131792 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a63e.jpg' +p131793 +sg25267 +g27 +sa(dp131794 +g25268 +S"Queen of Sheba's Visit to Solomon" +p131795 +sg25270 +S'Augustin Hirschvogel' +p131796 +sg25273 +S'etching' +p131797 +sg25275 +S'1548' +p131798 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abcf.jpg' +p131799 +sg25267 +g27 +sa(dp131800 +g25268 +S'The Rival Sacrifices of Elijah and the Priests of Baal' +p131801 +sg25270 +S'Augustin Hirschvogel' +p131802 +sg25273 +S'etching' +p131803 +sg25275 +S'1548' +p131804 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abe8.jpg' +p131805 +sg25267 +g27 +sa(dp131806 +g25268 +S'The Murder of the Children of Bethel' +p131807 +sg25270 +S'Augustin Hirschvogel' +p131808 +sg25273 +S'etching' +p131809 +sg25275 +S'1547' +p131810 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac65.jpg' +p131811 +sg25267 +g27 +sa(dp131812 +g25268 +S'Elijah is Taken up to Heaven' +p131813 +sg25270 +S'Augustin Hirschvogel' +p131814 +sg25273 +S'etching' +p131815 +sg25275 +S'1547' +p131816 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac53.jpg' +p131817 +sg25267 +g27 +sa(dp131818 +g25268 +S'Elisha Raises the Son of the Shunammite' +p131819 +sg25270 +S'Augustin Hirschvogel' +p131820 +sg25273 +S'etching' +p131821 +sg25275 +S'1547' +p131822 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abcd.jpg' +p131823 +sg25267 +g27 +sa(dp131824 +g25268 +S'Naaman is Cured of Leprosy' +p131825 +sg25270 +S'Augustin Hirschvogel' +p131826 +sg25273 +S'etching' +p131827 +sg25275 +S'1547' +p131828 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abdf.jpg' +p131829 +sg25267 +g27 +sa(dp131830 +g25268 +S"Elisha Punishes Gehazi with Naaman's Leprosy" +p131831 +sg25270 +S'Augustin Hirschvogel' +p131832 +sg25273 +S'etching' +p131833 +sg25275 +S'1547' +p131834 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abeb.jpg' +p131835 +sg25267 +g27 +sa(dp131836 +g25268 +S'Isaiah Accepts Mockery because of His Faith' +p131837 +sg25270 +S'Augustin Hirschvogel' +p131838 +sg25273 +S'etching' +p131839 +sg25275 +S'1549' +p131840 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abff.jpg' +p131841 +sg25267 +g27 +sa(dp131842 +g25268 +S'The Victory of Judas Maccabeus Over Niccanor' +p131843 +sg25270 +S'Augustin Hirschvogel' +p131844 +sg25273 +S'etching' +p131845 +sg25275 +S'1547' +p131846 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac64.jpg' +p131847 +sg25267 +g27 +sa(dp131848 +g25268 +S"Daniel in the Lions' Den" +p131849 +sg25270 +S'Augustin Hirschvogel' +p131850 +sg25273 +S'etching' +p131851 +sg25275 +S'1549' +p131852 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abfe.jpg' +p131853 +sg25267 +g27 +sa(dp131854 +g25268 +S'The Transportation of the Holy House of Loreto' +p131855 +sg25270 +S'French 15th Century' +p131856 +sg25273 +S'Schreiber, Vol. IX, no. 1942, State z' +p131857 +sg25275 +S'\nwoodcut, hand-colored in tan, dark gray-green, orange, and purple; the green and orange may have been applied by means of a stencil' +p131858 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a00082ed.jpg' +p131859 +sg25267 +g27 +sa(dp131860 +g25268 +S'Jonah in the Whale' +p131861 +sg25270 +S'Augustin Hirschvogel' +p131862 +sg25273 +S'etching' +p131863 +sg25275 +S'unknown date\n' +p131864 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac36.jpg' +p131865 +sg25267 +g27 +sa(dp131866 +g25268 +S'Jonah is Delivered from the Whale' +p131867 +sg25270 +S'Augustin Hirschvogel' +p131868 +sg25273 +S'etching' +p131869 +sg25275 +S'1548' +p131870 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac38.jpg' +p131871 +sg25267 +g27 +sa(dp131872 +g25268 +S'Joab Betrays Abner' +p131873 +sg25270 +S'Augustin Hirschvogel' +p131874 +sg25273 +S'etching' +p131875 +sg25275 +S'1547' +p131876 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abea.jpg' +p131877 +sg25267 +g27 +sa(dp131878 +g25268 +S'The Men of Ephraim Care for their Captives and Return Them to Jerico' +p131879 +sg25270 +S'Augustin Hirschvogel' +p131880 +sg25273 +S'etching' +p131881 +sg25275 +S'1549' +p131882 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abe6.jpg' +p131883 +sg25267 +g27 +sa(dp131884 +g25268 +S"The Three Kings Tell Herod of Christ's Birth" +p131885 +sg25270 +S'Augustin Hirschvogel' +p131886 +sg25273 +S'etching' +p131887 +sg25275 +S'1549' +p131888 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abd6.jpg' +p131889 +sg25267 +g27 +sa(dp131890 +g25268 +S'The Adoration of the Magi' +p131891 +sg25270 +S'Augustin Hirschvogel' +p131892 +sg25273 +S'etching' +p131893 +sg25275 +S'1548' +p131894 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abcb.jpg' +p131895 +sg25267 +g27 +sa(dp131896 +g25268 +S'The Flight into Egypt' +p131897 +sg25270 +S'Augustin Hirschvogel' +p131898 +sg25273 +S'etching' +p131899 +sg25275 +S'1548' +p131900 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abdd.jpg' +p131901 +sg25267 +g27 +sa(dp131902 +g25268 +S'The Holy Family Returns from Egypt' +p131903 +sg25270 +S'Augustin Hirschvogel' +p131904 +sg25273 +S'etching' +p131905 +sg25275 +S'1549' +p131906 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abe2.jpg' +p131907 +sg25267 +g27 +sa(dp131908 +g25268 +S'The Baptism of Christ' +p131909 +sg25270 +S'Augustin Hirschvogel' +p131910 +sg25273 +S'etching' +p131911 +sg25275 +S'1547' +p131912 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abe0.jpg' +p131913 +sg25267 +g27 +sa(dp131914 +g25268 +S'The Parable of the Wicked Husbandmen' +p131915 +sg25270 +S'Augustin Hirschvogel' +p131916 +sg25273 +S'etching' +p131917 +sg25275 +S'1549' +p131918 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abe5.jpg' +p131919 +sg25267 +g27 +sa(dp131920 +g25268 +S'Christ on the Cross with the Virgin and Saint John' +p131921 +sg25270 +S'Hans Burgkmair I' +p131922 +sg25273 +S'colored woodcut on vellum' +p131923 +sg25275 +S'unknown date\n' +p131924 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b09b.jpg' +p131925 +sg25267 +g27 +sa(dp131926 +g25268 +S'The Temptation of Christ' +p131927 +sg25270 +S'Augustin Hirschvogel' +p131928 +sg25273 +S'etching' +p131929 +sg25275 +S'1548' +p131930 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abd9.jpg' +p131931 +sg25267 +g27 +sa(dp131932 +g25268 +S'Christ Heals a Blind and Dumb Demoniac' +p131933 +sg25270 +S'Augustin Hirschvogel' +p131934 +sg25273 +S'etching' +p131935 +sg25275 +S'1548' +p131936 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abdb.jpg' +p131937 +sg25267 +g27 +sa(dp131938 +g25268 +S'The Entry into Jerusalem' +p131939 +sg25270 +S'Augustin Hirschvogel' +p131940 +sg25273 +S'etching' +p131941 +sg25275 +S'1547' +p131942 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abee.jpg' +p131943 +sg25267 +g27 +sa(dp131944 +g25268 +S'The Payment of Judas' +p131945 +sg25270 +S'Augustin Hirschvogel' +p131946 +sg25273 +S'etching' +p131947 +sg25275 +S'1547' +p131948 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abf2.jpg' +p131949 +sg25267 +g27 +sa(dp131950 +g25268 +S'The Agony in the Garden' +p131951 +sg25270 +S'Augustin Hirschvogel' +p131952 +sg25273 +S'etching' +p131953 +sg25275 +S'1548' +p131954 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abe9.jpg' +p131955 +sg25267 +g27 +sa(dp131956 +g25268 +S'Jesus Being Led to Caiaphas' +p131957 +sg25270 +S'Augustin Hirschvogel' +p131958 +sg25273 +S'etching' +p131959 +sg25275 +S'1549' +p131960 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abf6.jpg' +p131961 +sg25267 +g27 +sa(dp131962 +g25268 +S'The Last Supper' +p131963 +sg25270 +S'Augustin Hirschvogel' +p131964 +sg25273 +S'etching' +p131965 +sg25275 +S'1547' +p131966 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abf0.jpg' +p131967 +sg25267 +g27 +sa(dp131968 +g25268 +S'Ecce Homo' +p131969 +sg25270 +S'Augustin Hirschvogel' +p131970 +sg25273 +S'etching' +p131971 +sg25275 +S'1549' +p131972 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abfd.jpg' +p131973 +sg25267 +g27 +sa(dp131974 +g25268 +S'Christ is Mocked, and Caiaphas Rends His Garments' +p131975 +sg25270 +S'Augustin Hirschvogel' +p131976 +sg25273 +S'etching' +p131977 +sg25275 +S'1549' +p131978 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abfc.jpg' +p131979 +sg25267 +g27 +sa(dp131980 +g25268 +S'The Flagellation' +p131981 +sg25270 +S'Augustin Hirschvogel' +p131982 +sg25273 +S'etching' +p131983 +sg25275 +S'1548' +p131984 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abf9.jpg' +p131985 +sg25267 +g27 +sa(dp131986 +g25268 +S'Song to the Madonna' +p131987 +sg25270 +S'German 15th Century' +p131988 +sg25273 +S'Schreiber, undescribed' +p131989 +sg25275 +S'\nwoodcut' +p131990 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3e1.jpg' +p131991 +sg25267 +g27 +sa(dp131992 +g25268 +S'Christ in the Tomb' +p131993 +sg25270 +S'Augustin Hirschvogel' +p131994 +sg25273 +S'etching' +p131995 +sg25275 +S'1548' +p131996 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac3a.jpg' +p131997 +sg25267 +g27 +sa(dp131998 +g25268 +S'The Ascension' +p131999 +sg25270 +S'Augustin Hirschvogel' +p132000 +sg25273 +S'etching' +p132001 +sg25275 +S'1547' +p132002 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac4f.jpg' +p132003 +sg25267 +g27 +sa(dp132004 +g25268 +S'The Last Judgment' +p132005 +sg25270 +S'Augustin Hirschvogel' +p132006 +sg25273 +S'etching' +p132007 +sg25275 +S'1549' +p132008 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac5f.jpg' +p132009 +sg25267 +g27 +sa(dp132010 +g25268 +S'The Last Judgment' +p132011 +sg25270 +S'Augustin Hirschvogel' +p132012 +sg25273 +S'etching' +p132013 +sg25275 +S'1549' +p132014 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac60.jpg' +p132015 +sg25267 +g27 +sa(dp132016 +g25268 +S'Woe is Pronounced on Covetousness' +p132017 +sg25270 +S'Augustin Hirschvogel' +p132018 +sg25273 +S'etching' +p132019 +sg25275 +S'1549' +p132020 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac61.jpg' +p132021 +sg25267 +g27 +sa(dp132022 +g25268 +S'Woe is Pronounced on the Scribes and Pharisees' +p132023 +sg25270 +S'Augustin Hirschvogel' +p132024 +sg25273 +S'etching' +p132025 +sg25275 +S'1549' +p132026 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac62.jpg' +p132027 +sg25267 +g27 +sa(dp132028 +g25268 +S'The Transfiguration' +p132029 +sg25270 +S'Augustin Hirschvogel' +p132030 +sg25273 +S'etching' +p132031 +sg25275 +S'1548' +p132032 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac55.jpg' +p132033 +sg25267 +g27 +sa(dp132034 +g25268 +S'Christ Charges the Apostles of their Mission' +p132035 +sg25270 +S'Augustin Hirschvogel' +p132036 +sg25273 +S'etching' +p132037 +sg25275 +S'1548' +p132038 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac56.jpg' +p132039 +sg25267 +g27 +sa(dp132040 +g25268 +S'The Annunciation' +p132041 +sg25270 +S'Augustin Hirschvogel' +p132042 +sg25273 +S'etching' +p132043 +sg25275 +S'1547' +p132044 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abd3.jpg' +p132045 +sg25267 +g27 +sa(dp132046 +g25268 +S'The Annunciation' +p132047 +sg25270 +S'Augustin Hirschvogel' +p132048 +sg25273 +S'etching' +p132049 +sg25275 +S'1548' +p132050 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abd5.jpg' +p132051 +sg25267 +g27 +sa(dp132052 +g25268 +S'Border from an Almanac' +p132053 +sg25270 +S'German 15th Century' +p132054 +sg25273 +S'Schreiber, Vol. IX, no. 776, State t' +p132055 +sg25275 +S'\nwoodcut, hand-colored in green, brown, rose, and yellow' +p132056 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a642.jpg' +p132057 +sg25267 +g27 +sa(dp132058 +g25268 +S'The Nativity' +p132059 +sg25270 +S'Augustin Hirschvogel' +p132060 +sg25273 +S'etching' +p132061 +sg25275 +S'1548' +p132062 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abd2.jpg' +p132063 +sg25267 +g27 +sa(dp132064 +g25268 +S'The Adoration of the Shepherds' +p132065 +sg25270 +S'Augustin Hirschvogel' +p132066 +sg25273 +S'etching' +p132067 +sg25275 +S'1548' +p132068 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abd1.jpg' +p132069 +sg25267 +g27 +sa(dp132070 +g25268 +S'The Presentation in the Temple' +p132071 +sg25270 +S'Augustin Hirschvogel' +p132072 +sg25273 +S'etching' +p132073 +sg25275 +S'1549' +p132074 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abde.jpg' +p132075 +sg25267 +g27 +sa(dp132076 +g25268 +S'Man Carries the Cross after Christ' +p132077 +sg25270 +S'Augustin Hirschvogel' +p132078 +sg25273 +S'etching' +p132079 +sg25275 +S'1549' +p132080 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac04.jpg' +p132081 +sg25267 +g27 +sa(dp132082 +g25268 +S'No One Who Puts His Hand on the Plow and Looks Back ia a Follower of Christ' +p132083 +sg25270 +S'Augustin Hirschvogel' +p132084 +sg25273 +S'etching' +p132085 +sg25275 +S'1549' +p132086 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac07.jpg' +p132087 +sg25267 +g27 +sa(dp132088 +g25268 +S'The Parable of the Good Samaritan' +p132089 +sg25270 +S'Augustin Hirschvogel' +p132090 +sg25273 +S'etching' +p132091 +sg25275 +S'1549' +p132092 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abe7.jpg' +p132093 +sg25267 +g27 +sa(dp132094 +g25268 +S'The Payment of Judas' +p132095 +sg25270 +S'Augustin Hirschvogel' +p132096 +sg25273 +S'etching' +p132097 +sg25275 +S'unknown date\n' +p132098 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abec.jpg' +p132099 +sg25267 +g27 +sa(dp132100 +g25268 +S'The Kiss of Judas' +p132101 +sg25270 +S'Augustin Hirschvogel' +p132102 +sg25273 +S'etching' +p132103 +sg25275 +S'unknown date\n' +p132104 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abf3.jpg' +p132105 +sg25267 +g27 +sa(dp132106 +g25268 +S'Christ before Caiaphas, and Peter Denying Christ' +p132107 +sg25270 +S'Augustin Hirschvogel' +p132108 +sg25273 +S'etching' +p132109 +sg25275 +S'1548' +p132110 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abf5.jpg' +p132111 +sg25267 +g27 +sa(dp132112 +g25268 +S'Christ Ascending the Cross with Sin, Death, and the Devil' +p132113 +sg25270 +S'Augustin Hirschvogel' +p132114 +sg25273 +S'etching' +p132115 +sg25275 +S'1547' +p132116 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac35.jpg' +p132117 +sg25267 +g27 +sa(dp132118 +g25268 +S'The Nativity' +p132119 +sg25270 +S'French 15th Century' +p132120 +sg25273 +S'Schreiber, undescribed' +p132121 +sg25275 +S'\nwoodcut' +p132122 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a00082fd.jpg' +p132123 +sg25267 +g27 +sa(dp132124 +g25268 +S'Christ Appears to the Apostles' +p132125 +sg25270 +S'Augustin Hirschvogel' +p132126 +sg25273 +S'etching' +p132127 +sg25275 +S'1547' +p132128 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac52.jpg' +p132129 +sg25267 +g27 +sa(dp132130 +g25268 +S'Jesus Identifies Himself before the Arrest' +p132131 +sg25270 +S'Augustin Hirschvogel' +p132132 +sg25273 +S'etching' +p132133 +sg25275 +S'1548' +p132134 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abf4.jpg' +p132135 +sg25267 +g27 +sa(dp132136 +g25268 +S'Ecce Homo, and the Jews Deny Christ' +p132137 +sg25270 +S'Augustin Hirschvogel' +p132138 +sg25273 +S'etching' +p132139 +sg25275 +S'1548' +p132140 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac0a.jpg' +p132141 +sg25267 +g27 +sa(dp132142 +g25268 +S'Christ Carrying the Cross' +p132143 +sg25270 +S'Augustin Hirschvogel' +p132144 +sg25273 +S'etching' +p132145 +sg25275 +S'1547' +p132146 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac09.jpg' +p132147 +sg25267 +g27 +sa(dp132148 +g25268 +S'The Nailing to the Cross' +p132149 +sg25270 +S'Augustin Hirschvogel' +p132150 +sg25273 +S'etching' +p132151 +sg25275 +S'1548' +p132152 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac3f.jpg' +p132153 +sg25267 +g27 +sa(dp132154 +g25268 +S'Christ is Given Vinegar to Drink' +p132155 +sg25270 +S'Augustin Hirschvogel' +p132156 +sg25273 +S'etching' +p132157 +sg25275 +S'1547' +p132158 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac3b.jpg' +p132159 +sg25267 +g27 +sa(dp132160 +g25268 +S'Christ is Pierced with the Lance' +p132161 +sg25270 +S'Augustin Hirschvogel' +p132162 +sg25273 +S'etching' +p132163 +sg25275 +S'1547' +p132164 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac39.jpg' +p132165 +sg25267 +g27 +sa(dp132166 +g25268 +S'The Resurrection' +p132167 +sg25270 +S'Augustin Hirschvogel' +p132168 +sg25273 +S'etching' +p132169 +sg25275 +S'unknown date\n' +p132170 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac51.jpg' +p132171 +sg25267 +g27 +sa(dp132172 +g25268 +S'Judas Returns the Thirty Pieces of Silver' +p132173 +sg25270 +S'Augustin Hirschvogel' +p132174 +sg25273 +S'etching' +p132175 +sg25275 +S'1548' +p132176 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac3d.jpg' +p132177 +sg25267 +g27 +sa(dp132178 +g25268 +S'The Descent of the Holy Spirit' +p132179 +sg25270 +S'Augustin Hirschvogel' +p132180 +sg25273 +S'etching' +p132181 +sg25275 +S'1548' +p132182 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac4d.jpg' +p132183 +sg25267 +g27 +sa(dp132184 +g25268 +S'Crowned Man on a Throne with the Virgin Standing at the left' +p132185 +sg25270 +S'German 15th Century' +p132186 +sg25273 +S'Schreiber Manuel, no. 4877' +p132187 +sg25275 +S'\nhand-colored woodcut' +p132188 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5a3.jpg' +p132189 +sg25267 +g27 +sa(dp132190 +g25268 +S'The Punishment of Ananias and Sapphira' +p132191 +sg25270 +S'Augustin Hirschvogel' +p132192 +sg25273 +S'etching' +p132193 +sg25275 +S'1549' +p132194 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac4c.jpg' +p132195 +sg25267 +g27 +sa(dp132196 +g25268 +S'The Preparation of the Cross' +p132197 +sg25270 +S'Augustin Hirschvogel' +p132198 +sg25273 +S'etching' +p132199 +sg25275 +S'1548' +p132200 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac10.jpg' +p132201 +sg25267 +g27 +sa(dp132202 +g25268 +S'The Cross of Christ' +p132203 +sg25270 +S'Augustin Hirschvogel' +p132204 +sg25273 +S'etching' +p132205 +sg25275 +S'1548' +p132206 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac06.jpg' +p132207 +sg25267 +g27 +sa(dp132208 +g25268 +S'The Harrowing of Hell' +p132209 +sg25270 +S'Augustin Hirschvogel' +p132210 +sg25273 +S'etching' +p132211 +sg25275 +S'1547' +p132212 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac32.jpg' +p132213 +sg25267 +g27 +sa(dp132214 +g25268 +S'The Opening of the Seventh Seal' +p132215 +sg25270 +S'Augustin Hirschvogel' +p132216 +sg25273 +S'etching' +p132217 +sg25275 +S'1549' +p132218 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac5e.jpg' +p132219 +sg25267 +g27 +sa(dp132220 +g25268 +S'Job Learns of His Misfortunes' +p132221 +sg25270 +S'Augustin Hirschvogel' +p132222 +sg25273 +S'etching' +p132223 +sg25275 +S'1549' +p132224 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac0c.jpg' +p132225 +sg25267 +g27 +sa(dp132226 +g25268 +S'Sigismund von Herberstein' +p132227 +sg25270 +S'Augustin Hirschvogel' +p132228 +sg25273 +S'etching' +p132229 +sg25275 +S'1548' +p132230 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b24b.jpg' +p132231 +sg25267 +g27 +sa(dp132232 +g25268 +S'Landscape with a Village Church' +p132233 +sg25270 +S'Augustin Hirschvogel' +p132234 +sg25273 +S'etching' +p132235 +sg25275 +S'1545' +p132236 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00016/a0001645.jpg' +p132237 +sg25267 +g27 +sa(dp132238 +g25268 +S'Ludwig II, King of Hungary' +p132239 +sg25270 +S'Augustin Hirschvogel' +p132240 +sg25273 +S'etching' +p132241 +sg25275 +S'1546' +p132242 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac29.jpg' +p132243 +sg25267 +g27 +sa(dp132244 +g25273 +S'(artist)' +p132245 +sg25267 +g27 +sg25275 +S'\n' +p132246 +sg25268 +S'Collection de cinquante vues du Rhin ...' +p132247 +sg25270 +S'Artist Information (' +p132248 +sa(dp132249 +g25268 +S'The Crucifixion' +p132250 +sg25270 +S'French 15th Century' +p132251 +sg25273 +S'Schreiber, undescribed' +p132252 +sg25275 +S'\nwoodcut on vellum touched with red' +p132253 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a00082f2.jpg' +p132254 +sg25267 +g27 +sa(dp132255 +g25273 +S'soft-ground etching?' +p132256 +sg25267 +g27 +sg25275 +S'unknown date\n' +p132257 +sg25268 +S'Percussion Head' +p132258 +sg25270 +S'Kenneth Kilstrom' +p132259 +sa(dp132260 +g25268 +S'Height! (H\xc3\xb6he!)' +p132261 +sg25270 +S'Paul Klee' +p132262 +sg25273 +S'etching in black on japan paper' +p132263 +sg25275 +S'1928' +p132264 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000effe.jpg' +p132265 +sg25267 +g27 +sa(dp132266 +g25268 +S'Old Man Reckoning (Rechnender Greis)' +p132267 +sg25270 +S'Paul Klee' +p132268 +sg25273 +S'etching' +p132269 +sg25275 +S'1929' +p132270 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f070.jpg' +p132271 +sg25267 +g27 +sa(dp132272 +g25268 +S'Die Hexe mit dem Kamm (Witch with a Comb)' +p132273 +sg25270 +S'Paul Klee' +p132274 +sg25273 +S'lithograph' +p132275 +sg25275 +S'1922' +p132276 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000effd.jpg' +p132277 +sg25267 +g27 +sa(dp132278 +g25273 +S'etching' +p132279 +sg25267 +g27 +sg25275 +S'unknown date\n' +p132280 +sg25268 +S'Eget Tryk from London' +p132281 +sg25270 +S'Rudi Lesser' +p132282 +sa(dp132283 +g25273 +S'woodcut' +p132284 +sg25267 +g27 +sg25275 +S'1949' +p132285 +sg25268 +S'Bull Fight' +p132286 +sg25270 +S'Gerhard Marcks' +p132287 +sa(dp132288 +g25273 +S'woodcut' +p132289 +sg25267 +g27 +sg25275 +S'unknown date\n' +p132290 +sg25268 +S'Rustem' +p132291 +sg25270 +S'Gerhard Marcks' +p132292 +sa(dp132293 +g25268 +S'Vine Ornament with Two Birds' +p132294 +sg25270 +S'Artist Information (' +p132295 +sg25273 +S'German, active c. 1430/1455' +p132296 +sg25275 +S'(related artist)' +p132297 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a40c.jpg' +p132298 +sg25267 +g27 +sa(dp132299 +g25268 +S'Christ in the Wilderness Served by Angels' +p132300 +sg25270 +S'Master i.e.' +p132301 +sg25273 +S'engraving' +p132302 +sg25275 +S'c. 1480/1490' +p132303 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a453.jpg' +p132304 +sg25267 +g27 +sa(dp132305 +g25273 +S'lithograph in green' +p132306 +sg25267 +g27 +sg25275 +S'1901' +p132307 +sg25268 +S'Holger Drachmann' +p132308 +sg25270 +S'Edvard Munch' +p132309 +sa(dp132310 +g25268 +S'Christ as the Man of Sorrows' +p132311 +sg25270 +S'German 15th Century' +p132312 +sg25273 +S'Schreiber, Vol. IX, no. 860, State a' +p132313 +sg25275 +S'\nwoodcut, hand-colored in red lake, yellow ochre, tan, and green' +p132314 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a53b.jpg' +p132315 +sg25267 +g27 +sa(dp132316 +g25273 +S'lithograph' +p132317 +sg25267 +g27 +sg25275 +S'1908/1909' +p132318 +sg25268 +S'The Actor Smith (Portrat Schauspieler Smith)' +p132319 +sg25270 +S'Edvard Munch' +p132320 +sa(dp132321 +g25268 +S'The Vampire (Vampyr)' +p132322 +sg25270 +S'Edvard Munch' +p132323 +sg25273 +S'lithograph with watercolor' +p132324 +sg25275 +S'1895' +p132325 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001d/a0001df1.jpg' +p132326 +sg25267 +g27 +sa(dp132327 +g25273 +S'lithograph' +p132328 +sg25267 +g27 +sg25275 +S'1894' +p132329 +sg25268 +S'The Young Model (Das junge Modell)' +p132330 +sg25270 +S'Edvard Munch' +p132331 +sa(dp132332 +g25273 +S'hand-colored lithograph' +p132333 +sg25267 +g27 +sg25275 +S'unknown date\n' +p132334 +sg25268 +S'Corral' +p132335 +sg25270 +S'Zoran Music' +p132336 +sa(dp132337 +g25268 +S'Dedication: Ich bin die Auferstehung und das Leben (I am the resurrection and the life)' +p132338 +sg25270 +S'Ferdinand Olivier' +p132339 +sg25273 +S'lithograph' +p132340 +sg25275 +S'1823' +p132341 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3c2.jpg' +p132342 +sg25267 +g27 +sa(dp132343 +g25268 +S'Montag - Rosenecker Garten vor Salzburg (Monday - Rosenecker Garden near Salzburg)' +p132344 +sg25270 +S'Ferdinand Olivier' +p132345 +sg25273 +S'lithograph' +p132346 +sg25275 +S'1823' +p132347 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3bf.jpg' +p132348 +sg25267 +g27 +sa(dp132349 +g25268 +S'Dienstag - Bergveste Salzburg vor der Mittagseit (Tuesday - The Castle of Salzburg from the Noontime Side)' +p132350 +sg25270 +S'Ferdinand Olivier' +p132351 +sg25273 +S'lithograph' +p132352 +sg25275 +S'1823' +p132353 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3be.jpg' +p132354 +sg25267 +g27 +sa(dp132355 +g25268 +S'Mittwoch - Fusspfad auf dem M\xc3\xb6nchsberge bey Salzburg (Wednesday - Footpath on the M\xc3\xb6nchsberge near Salzburg)' +p132356 +sg25270 +S'Ferdinand Olivier' +p132357 +sg25273 +S'lithograph' +p132358 +sg25275 +S'1823' +p132359 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3bc.jpg' +p132360 +sg25267 +g27 +sa(dp132361 +g25268 +S'Donnerstag - Berchtesgaden und der Watzmann (Thursday - Berchtesgaden and the Watzmann Mountain)' +p132362 +sg25270 +S'Ferdinand Olivier' +p132363 +sg25273 +S'lithograph' +p132364 +sg25275 +S'1823' +p132365 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3c0.jpg' +p132366 +sg25267 +g27 +sa(dp132367 +g25268 +S'Freitag - Wiesenplan vor Aigen bey Salzburg (Meadow before Aigen near Salzburg)' +p132368 +sg25270 +S'Ferdinand Olivier' +p132369 +sg25273 +S'lithograph' +p132370 +sg25275 +S'1823' +p132371 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3bb.jpg' +p132372 +sg25267 +g27 +sa(dp132373 +g25268 +S'Christ in the Wine Press' +p132374 +sg25270 +S'Netherlandish 16th Century' +p132375 +sg25273 +S'Schreiber, Vol. IX, no. 841, State m' +p132376 +sg25275 +S'\nwoodcut, hand-colored in burgundy red, pink, dull green, dull orange, brown, tan and white' +p132377 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cce5.jpg' +p132378 +sg25267 +g27 +sa(dp132379 +g25268 +S"Sonnabend - Gottesacker zu St. Peter in Salzburg (Saturday - Graveyard of St. Peter's in Salzburg)" +p132380 +sg25270 +S'Ferdinand Olivier' +p132381 +sg25273 +S'lithograph' +p132382 +sg25275 +S'1823' +p132383 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3bd.jpg' +p132384 +sg25267 +g27 +sa(dp132385 +g25268 +S'Sonntag - Kircheneingang in Berchtesgaden (Sunday - Going to Church near Berchtesgaden)' +p132386 +sg25270 +S'Ferdinand Olivier' +p132387 +sg25273 +S'lithograph' +p132388 +sg25275 +S'1823' +p132389 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3ba.jpg' +p132390 +sg25267 +g27 +sa(dp132391 +g25268 +S'Tailpiece: Selig sind die nicht sehen und doch glauben (Blessed are those who do not' +p132392 +sg25270 +S'Ferdinand Olivier' +p132393 +sg25273 +S'lithograph' +p132394 +sg25275 +S'1823' +p132395 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3c1.jpg' +p132396 +sg25267 +g27 +sa(dp132397 +g25268 +S'The Last Supper' +p132398 +sg25270 +S'Artist Information (' +p132399 +sg25273 +S'(artist after)' +p132400 +sg25275 +S'\n' +p132401 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf58.jpg' +p132402 +sg25267 +g27 +sa(dp132403 +g25268 +S'Christ on the Mount of Olives' +p132404 +sg25270 +S'Jacob Cornelisz van Oostsanen' +p132405 +sg25273 +S'woodcut' +p132406 +sg25275 +S'1512' +p132407 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf59.jpg' +p132408 +sg25267 +g27 +sa(dp132409 +g25268 +S'The Kiss of Judas' +p132410 +sg25270 +S'Jacob Cornelisz van Oostsanen' +p132411 +sg25273 +S'woodcut' +p132412 +sg25275 +S'1512' +p132413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf5a.jpg' +p132414 +sg25267 +g27 +sa(dp132415 +g25268 +S'Christ Taken Captive' +p132416 +sg25270 +S'Jacob Cornelisz van Oostsanen' +p132417 +sg25273 +S'woodcut' +p132418 +sg25275 +S'1512' +p132419 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf5b.jpg' +p132420 +sg25267 +g27 +sa(dp132421 +g25268 +S'The Mocking of Christ' +p132422 +sg25270 +S'Jacob Cornelisz van Oostsanen' +p132423 +sg25273 +S'woodcut' +p132424 +sg25275 +S'1513' +p132425 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf5c.jpg' +p132426 +sg25267 +g27 +sa(dp132427 +g25268 +S'The Flagellation' +p132428 +sg25270 +S'Jacob Cornelisz van Oostsanen' +p132429 +sg25273 +S'woodcut' +p132430 +sg25275 +S'1514' +p132431 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf5d.jpg' +p132432 +sg25267 +g27 +sa(dp132433 +g25268 +S'Christ Crowned with Thorns' +p132434 +sg25270 +S'Jacob Cornelisz van Oostsanen' +p132435 +sg25273 +S'woodcut' +p132436 +sg25275 +S'1511' +p132437 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf5e.jpg' +p132438 +sg25267 +g27 +sa(dp132439 +g25268 +S'Saint Anne, The Madonna and Child and Saints Christopher, Sebastian, Clara and Roche' +p132440 +sg25270 +S'German 15th Century' +p132441 +sg25273 +S'Schreiber, undescribed' +p132442 +sg25275 +S'\nwoodcut, hand-colored in blue, yellow, and cinnamon' +p132443 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3e4.jpg' +p132444 +sg25267 +g27 +sa(dp132445 +g25268 +S'Ecce Homo' +p132446 +sg25270 +S'Jacob Cornelisz van Oostsanen' +p132447 +sg25273 +S'woodcut' +p132448 +sg25275 +S'1514' +p132449 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf5f.jpg' +p132450 +sg25267 +g27 +sa(dp132451 +g25268 +S'Christ Carrying the Cross' +p132452 +sg25270 +S'Jacob Cornelisz van Oostsanen' +p132453 +sg25273 +S'woodcut' +p132454 +sg25275 +S'1514' +p132455 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf60.jpg' +p132456 +sg25267 +g27 +sa(dp132457 +g25268 +S'The Crucifixion' +p132458 +sg25270 +S'Jacob Cornelisz van Oostsanen' +p132459 +sg25273 +S'woodcut' +p132460 +sg25275 +S'1514' +p132461 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf61.jpg' +p132462 +sg25267 +g27 +sa(dp132463 +g25268 +S'Deploration and Entombment of Christ' +p132464 +sg25270 +S'Jacob Cornelisz van Oostsanen' +p132465 +sg25273 +S'woodcut' +p132466 +sg25275 +S'1514' +p132467 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf62.jpg' +p132468 +sg25267 +g27 +sa(dp132469 +g25268 +S'The Resurrection' +p132470 +sg25270 +S'Jacob Cornelisz van Oostsanen' +p132471 +sg25273 +S'woodcut' +p132472 +sg25275 +S'1514' +p132473 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf63.jpg' +p132474 +sg25267 +g27 +sa(dp132475 +g25268 +S'Combat (Le combat)' +p132476 +sg25270 +S'Pablo Picasso' +p132477 +sg25273 +S'etching' +p132478 +sg25275 +S'1937' +p132479 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eecd.jpg' +p132480 +sg25267 +g27 +sa(dp132481 +g25268 +S'The Diver (La plongeuse)' +p132482 +sg25270 +S'Pablo Picasso' +p132483 +sg25273 +S'color etching and collage' +p132484 +sg25275 +S'1932' +p132485 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000edb6.jpg' +p132486 +sg25267 +g27 +sa(dp132487 +g25268 +S'Dove (La colombe)' +p132488 +sg25270 +S'Pablo Picasso' +p132489 +sg25273 +S'lithograph' +p132490 +sg25275 +S'1949' +p132491 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057f1.jpg' +p132492 +sg25267 +g27 +sa(dp132493 +g25273 +S'lithograph' +p132494 +sg25267 +g27 +sg25275 +S'1947' +p132495 +sg25268 +S'Ines and Her Child (Ines et son enfant)' +p132496 +sg25270 +S'Pablo Picasso' +p132497 +sa(dp132498 +g25268 +S"Goose Girl (Gardeuse d'oies)" +p132499 +sg25270 +S'Camille Pissarro' +p132500 +sg25273 +S'etching and drypoint' +p132501 +sg25275 +S'1888' +p132502 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009daf.jpg' +p132503 +sg25267 +g27 +sa(dp132504 +g25268 +S'Saints Christopher, Sebastian and Roche' +p132505 +sg25270 +S'German 15th Century' +p132506 +sg25273 +S'Schreiber, Vol. IX, no. 1909, State m' +p132507 +sg25275 +S'\nwoodcut' +p132508 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a59e.jpg' +p132509 +sg25267 +g27 +sa(dp132510 +g25273 +S'color monotype' +p132511 +sg25267 +g27 +sg25275 +S'1949' +p132512 +sg25268 +S'Woman and Centaur' +p132513 +sg25270 +S'Bernard Reder' +p132514 +sa(dp132515 +g25273 +S'brush and black ink with gray wash' +p132516 +sg25267 +g27 +sg25275 +S'1949' +p132517 +sg25268 +S'Woman and Centaur' +p132518 +sg25270 +S'Bernard Reder' +p132519 +sa(dp132520 +g25273 +S'aquatint in black (trial proof)' +p132521 +sg25267 +g27 +sg25275 +S'1934' +p132522 +sg25268 +S'Master Arthur' +p132523 +sg25270 +S'Georges Rouault' +p132524 +sa(dp132525 +g25273 +S'aquatint in blue, green and black (trial proof)' +p132526 +sg25267 +g27 +sg25275 +S'1934' +p132527 +sg25268 +S'Master Arthur' +p132528 +sg25270 +S'Georges Rouault' +p132529 +sa(dp132530 +g25273 +S'aquatint in red, green, brown, and yellow (trial proof)' +p132531 +sg25267 +g27 +sg25275 +S'1934' +p132532 +sg25268 +S'Master Arthur' +p132533 +sg25270 +S'Georges Rouault' +p132534 +sa(dp132535 +g25273 +S'aquatint in blue, red, green, brown, and yellow (trial proof)' +p132536 +sg25267 +g27 +sg25275 +S'1934' +p132537 +sg25268 +S'Master Arthur' +p132538 +sg25270 +S'Georges Rouault' +p132539 +sa(dp132540 +g25273 +S'aquatint (trial proof of finished plate)' +p132541 +sg25267 +g27 +sg25275 +S'1934' +p132542 +sg25268 +S'Master Arthur' +p132543 +sg25270 +S'Georges Rouault' +p132544 +sa(dp132545 +g25273 +S'aquatint in black [trial proof]' +p132546 +sg25267 +g27 +sg25275 +S'published 1934' +p132547 +sg25268 +S'Jongleur' +p132548 +sg25270 +S'Georges Rouault' +p132549 +sa(dp132550 +g25273 +S'aquatint in yellow, brown, green, and red [trial proof]' +p132551 +sg25267 +g27 +sg25275 +S'published 1934' +p132552 +sg25268 +S'Jongleur' +p132553 +sg25270 +S'Georges Rouault' +p132554 +sa(dp132555 +g25273 +S'aquatint in blue, aqua, green, and pink [trial proof]' +p132556 +sg25267 +g27 +sg25275 +S'published 1934' +p132557 +sg25268 +S'Jongleur' +p132558 +sg25270 +S'Georges Rouault' +p132559 +sa(dp132560 +g25268 +S'Saint Francis Receiving the Stigmata' +p132561 +sg25270 +S'Italian 15th Century' +p132562 +sg25273 +S'Schreiber, Vol. IX, no. 1432, State hh' +p132563 +sg25275 +S'\nwoodcut' +p132564 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c710.jpg' +p132565 +sg25267 +g27 +sa(dp132566 +g25273 +S'aquatint in blue, green, yellow, pink, and brown [trial proof]' +p132567 +sg25267 +g27 +sg25275 +S'published 1934' +p132568 +sg25268 +S'Jongleur' +p132569 +sg25270 +S'Georges Rouault' +p132570 +sa(dp132571 +g25273 +S'aquatint and mixed intaglio processes on Japan paper [final trial proof]' +p132572 +sg25267 +g27 +sg25275 +S'published 1934' +p132573 +sg25268 +S'Jongleur' +p132574 +sg25270 +S'Georges Rouault' +p132575 +sa(dp132576 +g25273 +S'wood engraving block' +p132577 +sg25267 +g27 +sg25275 +S'1935/1936' +p132578 +sg25268 +S'Untitled' +p132579 +sg25270 +S'Georges Rouault' +p132580 +sa(dp132581 +g25273 +S'aquatint in black (trial proof)' +p132582 +sg25267 +g27 +sg25275 +S'1935' +p132583 +sg25268 +S'"Apache ... Chacal Beni par Toutes les Academies"' +p132584 +sg25270 +S'Georges Rouault' +p132585 +sa(dp132586 +g25273 +S'aquatint in black (trial proof)' +p132587 +sg25267 +g27 +sg25275 +S'1935' +p132588 +sg25268 +S'Chemineau' +p132589 +sg25270 +S'Georges Rouault' +p132590 +sa(dp132591 +g25273 +S'aquatint in black (trial proof)' +p132592 +sg25267 +g27 +sg25275 +S'1936' +p132593 +sg25268 +S'Le Vieil Homme Chemine' +p132594 +sg25270 +S'Georges Rouault' +p132595 +sa(dp132596 +g25273 +S'aquatint in black (trial proof)' +p132597 +sg25267 +g27 +sg25275 +S'1936' +p132598 +sg25268 +S'Aide-Borreau (Portant un de Bois de la Croix)' +p132599 +sg25270 +S'Georges Rouault' +p132600 +sa(dp132601 +g25273 +S'aquatint in black (trial proof)' +p132602 +sg25267 +g27 +sg25275 +S'1936' +p132603 +sg25268 +S'Ecce Homo' +p132604 +sg25270 +S'Georges Rouault' +p132605 +sa(dp132606 +g25273 +S'aquatint in black (trial proof)' +p132607 +sg25267 +g27 +sg25275 +S'1936' +p132608 +sg25268 +S'Le Christ et Mammon' +p132609 +sg25270 +S'Georges Rouault' +p132610 +sa(dp132611 +g25273 +S'aquatint in black (trial proof)' +p132612 +sg25267 +g27 +sg25275 +S'1936' +p132613 +sg25268 +S'Christ et Sainte Femme' +p132614 +sg25270 +S'Georges Rouault' +p132615 +sa(dp132616 +g25268 +S'Christ on the Cross' +p132617 +sg25270 +S'German 15th Century' +p132618 +sg25273 +S'Schreiber, no. 371, State b' +p132619 +sg25275 +S'\nwoodcut, hand-colored in brown lake, tan, green, and black' +p132620 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a65a.jpg' +p132621 +sg25267 +g27 +sa(dp132622 +g25273 +S'aquatint in black (trial proof)' +p132623 +sg25267 +g27 +sg25275 +S'1936' +p132624 +sg25268 +S'Christ et Disciples' +p132625 +sg25270 +S'Georges Rouault' +p132626 +sa(dp132627 +g25273 +S'aquatint in black (trial proof)' +p132628 +sg25267 +g27 +sg25275 +S'1936' +p132629 +sg25268 +S'Dame a la Huppe' +p132630 +sg25270 +S'Georges Rouault' +p132631 +sa(dp132632 +g25273 +S'aquatint in black (trial proof)' +p132633 +sg25267 +g27 +sg25275 +S'1936' +p132634 +sg25268 +S'Paysans' +p132635 +sg25270 +S'Georges Rouault' +p132636 +sa(dp132637 +g25273 +S'aquatint in black (trial proof)' +p132638 +sg25267 +g27 +sg25275 +S'1936' +p132639 +sg25268 +S'Recontre' +p132640 +sg25270 +S'Georges Rouault' +p132641 +sa(dp132642 +g25273 +S'aquatint in black (trial proof)' +p132643 +sg25267 +g27 +sg25275 +S'1935' +p132644 +sg25268 +S'Christ au Faubourg' +p132645 +sg25270 +S'Georges Rouault' +p132646 +sa(dp132647 +g25273 +S'aquatint in black (trial proof)' +p132648 +sg25267 +g27 +sg25275 +S'1935' +p132649 +sg25268 +S'Christ aux Portes de la Ville (Frontispiece)' +p132650 +sg25270 +S'Georges Rouault' +p132651 +sa(dp132652 +g25268 +S"Allegorie sur l'Erection de la Statue de Louis XV (Allegory on the Establishment of a" +p132653 +sg25270 +S'Gabriel de Saint-Aubin' +p132654 +sg25273 +S', c. 1763' +p132655 +sg25275 +S'\n' +p132656 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000968e.jpg' +p132657 +sg25267 +g27 +sa(dp132658 +g25268 +S'Les chaises [lower half]' +p132659 +sg25270 +S'Gabriel de Saint-Aubin' +p132660 +sg25273 +S', 1760' +p132661 +sg25275 +S'\n' +p132662 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009693.jpg' +p132663 +sg25267 +g27 +sa(dp132664 +g25268 +S"Le tonneau d'arrosage [upper half]" +p132665 +sg25270 +S'Gabriel de Saint-Aubin' +p132666 +sg25273 +S', 1762' +p132667 +sg25275 +S'\n' +p132668 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009692.jpg' +p132669 +sg25267 +g27 +sa(dp132670 +g25273 +S'wood engraving on green paper [trial proof]' +p132671 +sg25267 +g27 +sg25275 +S'1948' +p132672 +sg25268 +S'Der Pfeifer' +p132673 +sg25270 +S'Imre Reiner' +p132674 +sa(dp132675 +g25268 +S'Portrait of a Venetian Gentleman' +p132676 +sg25270 +S'Giovanni Bellini' +p132677 +sg25273 +S'oil on panel transferred to panel' +p132678 +sg25275 +S'c. 1500' +p132679 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000075e.jpg' +p132680 +sg25267 +g27 +sa(dp132681 +g25268 +S'Saint Michael' +p132682 +sg25270 +S'German 15th Century' +p132683 +sg25273 +S'hand-colored woodcut' +p132684 +sg25275 +S'unknown date\n' +p132685 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3e0.jpg' +p132686 +sg25267 +g27 +sa(dp132687 +g25268 +S"Vue du Salon du Louvre en l'annee 1753" +p132688 +sg25270 +S'Gabriel de Saint-Aubin' +p132689 +sg25273 +S', 1753' +p132690 +sg25275 +S'\n' +p132691 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005c/a0005cc7.jpg' +p132692 +sg25267 +g27 +sa(dp132693 +g25273 +S'woodcut' +p132694 +sg25267 +g27 +sg25275 +S'1917' +p132695 +sg25268 +S'Dunes and Pier (Dunen und Mole)' +p132696 +sg25270 +S'Karl Schmidt-Rottluff' +p132697 +sa(dp132698 +g25268 +S'Banks of the Loing near Saint-Mammes (Bords du Loing, pres Saint-Mammes)' +p132699 +sg25270 +S'Alfred Sisley' +p132700 +sg25273 +S'lithograph in dark brown' +p132701 +sg25275 +S'1896' +p132702 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099c5.jpg' +p132703 +sg25267 +g27 +sa(dp132704 +g25273 +S'monotype' +p132705 +sg25267 +g27 +sg25275 +S'unknown date\n' +p132706 +sg25268 +S'The Crucifixion' +p132707 +sg25270 +S'Frank J. Van Sloun' +p132708 +sa(dp132709 +g25273 +S'monotype' +p132710 +sg25267 +g27 +sg25275 +S'unknown date\n' +p132711 +sg25268 +S'Old Man and Woman' +p132712 +sg25270 +S'Frank J. Van Sloun' +p132713 +sa(dp132714 +g25273 +S'monotype' +p132715 +sg25267 +g27 +sg25275 +S'probably 1931' +p132716 +sg25268 +S'Self-Portrait' +p132717 +sg25270 +S'Frank J. Van Sloun' +p132718 +sa(dp132719 +g25273 +S'monotype' +p132720 +sg25267 +g27 +sg25275 +S'unknown date\n' +p132721 +sg25268 +S'Two Figures near a Hut' +p132722 +sg25270 +S'Frank J. Van Sloun' +p132723 +sa(dp132724 +g25273 +S'5-color lithograph' +p132725 +sg25267 +g27 +sg25275 +S'1949' +p132726 +sg25268 +S'Soliloquy: Vanity of Decision' +p132727 +sg25270 +S'Benton Murdoch Spruance' +p132728 +sa(dp132729 +g25268 +S'Christ on the Cross' +p132730 +sg25270 +S'German 15th Century' +p132731 +sg25273 +S'Schreiber, Vol. IX, no. 397, State m' +p132732 +sg25275 +S'\nwoodcut, hand-colored in brown, tan, ochre, olive,and red' +p132733 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a50e.jpg' +p132734 +sg25267 +g27 +sa(dp132735 +g25273 +S'portfolio with title page and five lithographs' +p132736 +sg25267 +g27 +sg25275 +S'published 1949' +p132737 +sg25268 +S'Vanity I: Vanity of the Mind' +p132738 +sg25270 +S'Benton Murdoch Spruance' +p132739 +sa(dp132740 +g25273 +S'4-color lithograph' +p132741 +sg25267 +g27 +sg25275 +S'1949' +p132742 +sg25268 +S'Fallen Angel: Vanity of Disagreement' +p132743 +sg25270 +S'Benton Murdoch Spruance' +p132744 +sa(dp132745 +g25273 +S'5-color lithograph' +p132746 +sg25267 +g27 +sg25275 +S'1949' +p132747 +sg25268 +S'Set Pieces: Vanity of Trust' +p132748 +sg25270 +S'Benton Murdoch Spruance' +p132749 +sa(dp132750 +g25273 +S'4-color lithograph' +p132751 +sg25267 +g27 +sg25275 +S'1949' +p132752 +sg25268 +S"I'll Be What I Choose: Vanity of Ambition" +p132753 +sg25270 +S'Benton Murdoch Spruance' +p132754 +sa(dp132755 +g25273 +S'4-color lithograph' +p132756 +sg25267 +g27 +sg25275 +S'1949' +p132757 +sg25268 +S'Of Course He Will Come: Vanity of Hope' +p132758 +sg25270 +S'Benton Murdoch Spruance' +p132759 +sa(dp132760 +g25268 +S'Old Horse (Le vieux cheval)' +p132761 +sg25270 +S'Henri de Toulouse-Lautrec' +p132762 +sg25273 +S'lithograph in black' +p132763 +sg25275 +S'1897' +p132764 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e77.jpg' +p132765 +sg25267 +g27 +sa(dp132766 +g25273 +S'lithograph' +p132767 +sg25267 +g27 +sg25275 +S'c. 1948' +p132768 +sg25268 +S'I will not let thee go except thou bless me...' +p132769 +sg25270 +S'Pepi Weixlg\xc3\xa4rtner-Neutra' +p132770 +sa(dp132771 +g25273 +S'lithograph' +p132772 +sg25267 +g27 +sg25275 +S'c. 1947' +p132773 +sg25268 +S'Dr. Arpad Weixlgartner' +p132774 +sg25270 +S'Pepi Weixlg\xc3\xa4rtner-Neutra' +p132775 +sa(dp132776 +g25273 +S'lithograph' +p132777 +sg25267 +g27 +sg25275 +S'c. 1949' +p132778 +sg25268 +S'Dr. R. J. Neutra' +p132779 +sg25270 +S'Pepi Weixlg\xc3\xa4rtner-Neutra' +p132780 +sa(dp132781 +g25273 +S'lithograph' +p132782 +sg25267 +g27 +sg25275 +S'c. 1948' +p132783 +sg25268 +S'Piet\xc3\xa0' +p132784 +sg25270 +S'Pepi Weixlg\xc3\xa4rtner-Neutra' +p132785 +sa(dp132786 +g25268 +S'Song to the Virgin' +p132787 +sg25270 +S'German 15th Century' +p132788 +sg25273 +S'Schreiber, undescribed' +p132789 +sg25275 +S'\nwoodcut, hand-colored in rose and ochre' +p132790 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3e3.jpg' +p132791 +sg25267 +g27 +sa(dp132792 +g25273 +S'wood engraving [trial proof]' +p132793 +sg25267 +g27 +sg25275 +S'1940' +p132794 +sg25268 +S'Illustration to Novalis, "Heinrich von Ofterdingen"' +p132795 +sg25270 +S'Imre Reiner' +p132796 +sa(dp132797 +g25273 +S'wood engraving [trial proof]' +p132798 +sg25267 +g27 +sg25275 +S'1941' +p132799 +sg25268 +S'Illustration to Novalis, "Heinrich von Ofterdingen"' +p132800 +sg25270 +S'Imre Reiner' +p132801 +sa(dp132802 +g25273 +S'wood engraving in brown [trial proof]' +p132803 +sg25267 +g27 +sg25275 +S'unknown date\n' +p132804 +sg25268 +S'Illustration to Novalis, "Heinrich von Ofterdingen"' +p132805 +sg25270 +S'Imre Reiner' +p132806 +sa(dp132807 +g25273 +S'wood engraving [trial proof]' +p132808 +sg25267 +g27 +sg25275 +S'1948' +p132809 +sg25268 +S'Four Figures' +p132810 +sg25270 +S'Imre Reiner' +p132811 +sa(dp132812 +g25273 +S'wood engraving' +p132813 +sg25267 +g27 +sg25275 +S'1947' +p132814 +sg25268 +S'Der Vogel & Sein Nest' +p132815 +sg25270 +S'Imre Reiner' +p132816 +sa(dp132817 +g25273 +S'wood engraving [trial proof]' +p132818 +sg25267 +g27 +sg25275 +S'1947/1948' +p132819 +sg25268 +S'Die Matrofon (?)' +p132820 +sg25270 +S'Imre Reiner' +p132821 +sa(dp132822 +g25273 +S'wood engraving' +p132823 +sg25267 +g27 +sg25275 +S'1947/1948' +p132824 +sg25268 +S'Der Vogel & Die Frucht' +p132825 +sg25270 +S'Imre Reiner' +p132826 +sa(dp132827 +g25273 +S'wood engraving [trial proof]' +p132828 +sg25267 +g27 +sg25275 +S'1948' +p132829 +sg25268 +S'Still Life' +p132830 +sg25270 +S'Imre Reiner' +p132831 +sa(dp132832 +g25273 +S'wood engraving [trial proof]' +p132833 +sg25267 +g27 +sg25275 +S'1948' +p132834 +sg25268 +S'Land hohes Leben (?)' +p132835 +sg25270 +S'Imre Reiner' +p132836 +sa(dp132837 +g25273 +S'wood engraving in brown [trial proof]' +p132838 +sg25267 +g27 +sg25275 +S'1948' +p132839 +sg25268 +S'Vor der Laube (?)' +p132840 +sg25270 +S'Imre Reiner' +p132841 +sa(dp132842 +g25268 +S'Saint Martin and the Beggar' +p132843 +sg25270 +S'German 15th Century' +p132844 +sg25273 +S'Schreiber, Vol. IX, no. 1619, State m' +p132845 +sg25275 +S'\nhand-colored woodcut' +p132846 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a640.jpg' +p132847 +sg25267 +g27 +sa(dp132848 +g25273 +S'lithograph' +p132849 +sg25267 +g27 +sg25275 +S'1922' +p132850 +sg25268 +S'Misery' +p132851 +sg25270 +S'Ernst Barlach' +p132852 +sa(dp132853 +g25268 +S'Man of Heights' +p132854 +sg25270 +S'Ernst Barlach' +p132855 +sg25273 +S'pen and black ink over graphite' +p132856 +sg25275 +S'1906' +p132857 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a000793c.jpg' +p132858 +sg25267 +g27 +sa(dp132859 +g25268 +S'Walk in the Shadow' +p132860 +sg25270 +S'Ernst Barlach' +p132861 +sg25273 +S'lithograph on handmade paper' +p132862 +sg25275 +S'1922' +p132863 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b61b.jpg' +p132864 +sg25267 +g27 +sa(dp132865 +g25268 +S'The Couple in the Crowd' +p132866 +sg25270 +S'Ernst Barlach' +p132867 +sg25273 +S'charcoal on wove paper' +p132868 +sg25275 +S'1917' +p132869 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000707b.jpg' +p132870 +sg25267 +g27 +sa(dp132871 +g25273 +S'woodcut' +p132872 +sg25267 +g27 +sg25275 +S'1913' +p132873 +sg25268 +S'Brother and Sister (Geschwister)' +p132874 +sg25270 +S'Erich Heckel' +p132875 +sa(dp132876 +g25273 +S'lithograph' +p132877 +sg25267 +g27 +sg25275 +S'1908' +p132878 +sg25268 +S'Head of a Man (Bartiger Mann)' +p132879 +sg25270 +S'Erich Heckel' +p132880 +sa(dp132881 +g25273 +S'woodcut' +p132882 +sg25267 +g27 +sg25275 +S'1919' +p132883 +sg25268 +S'The Walk (Spaziergang)' +p132884 +sg25270 +S'Erich Heckel' +p132885 +sa(dp132886 +g25273 +S'lithograph' +p132887 +sg25267 +g27 +sg25275 +S'1920' +p132888 +sg25268 +S'Portrait of E.G. (Bildnis E.G.)' +p132889 +sg25270 +S'Erich Heckel' +p132890 +sa(dp132891 +g25273 +S'lithograph' +p132892 +sg25267 +g27 +sg25275 +S'1920' +p132893 +sg25268 +S'Portrait of M.H. (Bildnis M.H.)' +p132894 +sg25270 +S'Erich Heckel' +p132895 +sa(dp132896 +g25273 +S'lithograph' +p132897 +sg25267 +g27 +sg25275 +S'1920' +p132898 +sg25268 +S'Portrait of a Woman (Frauenbildnis)' +p132899 +sg25270 +S'Erich Heckel' +p132900 +sa(dp132901 +g25268 +S'Christ on the Cross' +p132902 +sg25270 +S'German 15th Century' +p132903 +sg25273 +S'Schreiber, Vol. IX, no. 396, State m' +p132904 +sg25275 +S'\nwoodcut, hand-colored in green, blue, vermilion, rose, pale orange, and red on vellum' +p132905 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a647.jpg' +p132906 +sg25267 +g27 +sa(dp132907 +g25273 +S'graphite on wove paper' +p132908 +sg25267 +g27 +sg25275 +S'1913' +p132909 +sg25268 +S'Three Figures' +p132910 +sg25270 +S'Erich Heckel' +p132911 +sa(dp132912 +g25273 +S'lithograph' +p132913 +sg25267 +g27 +sg25275 +S'1917' +p132914 +sg25268 +S"Romana Kokoschka - The Artist's Mother" +p132915 +sg25270 +S'Oskar Kokoschka' +p132916 +sa(dp132917 +g25273 +S'lithograph' +p132918 +sg25267 +g27 +sg25275 +S'1918' +p132919 +sg25268 +S'Corona II' +p132920 +sg25270 +S'Oskar Kokoschka' +p132921 +sa(dp132922 +g25273 +S'lithograph' +p132923 +sg25267 +g27 +sg25275 +S'1921' +p132924 +sg25268 +S'Recha' +p132925 +sg25270 +S'Oskar Kokoschka' +p132926 +sa(dp132927 +g25273 +S'lithograph' +p132928 +sg25267 +g27 +sg25275 +S'1920' +p132929 +sg25268 +S'Concert V: Deborah' +p132930 +sg25270 +S'Oskar Kokoschka' +p132931 +sa(dp132932 +g25273 +S'lithograph' +p132933 +sg25267 +g27 +sg25275 +S'1920' +p132934 +sg25268 +S'Tilla Durieux' +p132935 +sg25270 +S'Oskar Kokoschka' +p132936 +sa(dp132937 +g25273 +S'lithograph' +p132938 +sg25267 +g27 +sg25275 +S'probably 1918' +p132939 +sg25268 +S'Katia (K\xc3\xa4the Richter)' +p132940 +sg25270 +S'Oskar Kokoschka' +p132941 +sa(dp132942 +g25273 +S'lithograph' +p132943 +sg25267 +g27 +sg25275 +S'1919' +p132944 +sg25268 +S'Little Girl Sitting (Sitzendes Madchen)' +p132945 +sg25270 +S'Oskar Kokoschka' +p132946 +sa(dp132947 +g25273 +S'lithograph' +p132948 +sg25267 +g27 +sg25275 +S'1920' +p132949 +sg25268 +S'Concert I: Naemi' +p132950 +sg25270 +S'Oskar Kokoschka' +p132951 +sa(dp132952 +g25273 +S'lithograph' +p132953 +sg25267 +g27 +sg25275 +S'1922' +p132954 +sg25268 +S'Hefa' +p132955 +sg25270 +S'Oskar Kokoschka' +p132956 +sa(dp132957 +g25273 +S'Rosenwald Collection' +p132958 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p132959 +sg25268 +S'Playing Cards' +p132960 +sg25270 +S'German 15th Century' +p132961 +sa(dp132962 +g25273 +S'lithograph' +p132963 +sg25267 +g27 +sg25275 +S'1921' +p132964 +sg25268 +S'Artist and the Muse (Der Kunstler und die Muse)' +p132965 +sg25270 +S'Oskar Kokoschka' +p132966 +sa(dp132967 +g25268 +S'Karl Legien' +p132968 +sg25270 +S'Max Liebermann' +p132969 +sg25273 +S'drypoint in black on wove paper' +p132970 +sg25275 +S'unknown date\n' +p132971 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a00058e6.jpg' +p132972 +sg25267 +g27 +sa(dp132973 +g25268 +S'Woman and Child in Garden' +p132974 +sg25270 +S'Max Liebermann' +p132975 +sg25273 +S'drypoint in black on wove paper' +p132976 +sg25275 +S'unknown date\n' +p132977 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a00058e8.jpg' +p132978 +sg25267 +g27 +sa(dp132979 +g25268 +S'Olympia' +p132980 +sg25270 +S'Otto M\xc3\xbcller' +p132981 +sg25273 +S'lithograph hand-colored with crayon' +p132982 +sg25275 +S'1924' +p132983 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c46d.jpg' +p132984 +sg25267 +g27 +sa(dp132985 +g25268 +S'Five Girls at a Forest Pond (Funf Madchen am Waldteich)' +p132986 +sg25270 +S'Otto M\xc3\xbcller' +p132987 +sg25273 +S'lithograph' +p132988 +sg25275 +S'c. 1919' +p132989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c458.jpg' +p132990 +sg25267 +g27 +sa(dp132991 +g25268 +S'Courtyard with Tree and Houses (Ummauerter Hof mit Baum und Dachern)' +p132992 +sg25270 +S'Otto M\xc3\xbcller' +p132993 +sg25273 +S'lithograph' +p132994 +sg25275 +S'1920/1925' +p132995 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c46e.jpg' +p132996 +sg25267 +g27 +sa(dp132997 +g25268 +S'Three Girls in front of a Mirror (Drei Madchen vor dem Speigel)' +p132998 +sg25270 +S'Otto M\xc3\xbcller' +p132999 +sg25273 +S'lithograph' +p133000 +sg25275 +S'c. 1922' +p133001 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b6da.jpg' +p133002 +sg25267 +g27 +sa(dp133003 +g25268 +S'Finding of Moses (Auffindung des Moses)' +p133004 +sg25270 +S'Otto M\xc3\xbcller' +p133005 +sg25273 +S'lithograph in black and gold' +p133006 +sg25275 +S'c. 1920' +p133007 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c474.jpg' +p133008 +sg25267 +g27 +sa(dp133009 +g25268 +S'Irene Altman' +p133010 +sg25270 +S'Otto M\xc3\xbcller' +p133011 +sg25273 +S'lithograph' +p133012 +sg25275 +S'1921/1922' +p133013 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c46f.jpg' +p133014 +sg25267 +g27 +sa(dp133015 +g25268 +S'Mother and Child (Mutter und Kind)' +p133016 +sg25270 +S'Otto M\xc3\xbcller' +p133017 +sg25273 +S'lithograph' +p133018 +sg25275 +S'probably 1920' +p133019 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b6d8.jpg' +p133020 +sg25267 +g27 +sa(dp133021 +g25268 +S'The Crucifixion' +p133022 +sg25270 +S'Netherlandish 15th Century' +p133023 +sg25273 +S'Schreiber, undescribed' +p133024 +sg25275 +S'\nhand-colored woodcut' +p133025 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccf1.jpg' +p133026 +sg25267 +g27 +sa(dp133027 +g25273 +S'color crayons' +p133028 +sg25267 +g27 +sg25275 +S'unknown date\n' +p133029 +sg25268 +S'Nude Figure' +p133030 +sg25270 +S'Otto M\xc3\xbcller' +p133031 +sa(dp133032 +g25273 +S'color crayons' +p133033 +sg25267 +g27 +sg25275 +S'unknown date\n' +p133034 +sg25268 +S'Nude Figure' +p133035 +sg25270 +S'Otto M\xc3\xbcller' +p133036 +sa(dp133037 +g25268 +S'Girl on a Couch (Madchen auf dem Kanapee)' +p133038 +sg25270 +S'Otto M\xc3\xbcller' +p133039 +sg25273 +S'lithograph' +p133040 +sg25275 +S'1921/1922' +p133041 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c471.jpg' +p133042 +sg25267 +g27 +sa(dp133043 +g25268 +S'Landscape with Tree and Water (Landschaft mitBaum und Wasser)' +p133044 +sg25270 +S'Otto M\xc3\xbcller' +p133045 +sg25273 +S'lithograph' +p133046 +sg25275 +S'c. 1920' +p133047 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c45c.jpg' +p133048 +sg25267 +g27 +sa(dp133049 +g25268 +S'Self-Portrait Facing Left (Selbstbildnis nachlinks)' +p133050 +sg25270 +S'Otto M\xc3\xbcller' +p133051 +sg25273 +S'lithograph' +p133052 +sg25275 +S'1920' +p133053 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c44f.jpg' +p133054 +sg25267 +g27 +sa(dp133055 +g25268 +S'Standing Nude in a Landscape' +p133056 +sg25270 +S'Otto M\xc3\xbcller' +p133057 +sg25273 +S'color crayons and watercolor' +p133058 +sg25275 +S'unknown date\n' +p133059 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a000793d.jpg' +p133060 +sg25267 +g27 +sa(dp133061 +g25268 +S'Standing Boy and Two Girls (Stehender Knabe und zwei Madchen)' +p133062 +sg25270 +S'Otto M\xc3\xbcller' +p133063 +sg25273 +S'lithograph' +p133064 +sg25275 +S'1917' +p133065 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b6d9.jpg' +p133066 +sg25267 +g27 +sa(dp133067 +g25268 +S'Three Girls in Profile (Drei Madchen im Profile)' +p133068 +sg25270 +S'Otto M\xc3\xbcller' +p133069 +sg25273 +S'lithograph' +p133070 +sg25275 +S'1921' +p133071 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c450.jpg' +p133072 +sg25267 +g27 +sa(dp133073 +g25268 +S'Standing, Sitting, and Bathing Girls near a Tree (Stehende, sitzendes und badendes Madchen am Baum)' +p133074 +sg25270 +S'Otto M\xc3\xbcller' +p133075 +sg25273 +S'lithograph' +p133076 +sg25275 +S'1920/1921' +p133077 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b6d7.jpg' +p133078 +sg25267 +g27 +sa(dp133079 +g25268 +S'Two Bathers' +p133080 +sg25270 +S'Otto M\xc3\xbcller' +p133081 +sg25273 +S'color crayons and watercolor' +p133082 +sg25275 +S'c. 1920' +p133083 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00029/a0002966.jpg' +p133084 +sg25267 +g27 +sa(dp133085 +g25268 +S'Saint George (?)' +p133086 +sg25270 +S'Netherlandish 15th Century' +p133087 +sg25273 +S'Schreiber, undescribed' +p133088 +sg25275 +S'\nwoodcut' +p133089 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccf0.jpg' +p133090 +sg25267 +g27 +sa(dp133091 +g25268 +S'Standing Girl in Water and the Other Sitting on Shore (Im Wasser stehendes und am Ufer sitzendes Madchen mit Hut)' +p133092 +sg25270 +S'Otto M\xc3\xbcller' +p133093 +sg25273 +S'lithograph' +p133094 +sg25275 +S'1921/1922' +p133095 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c470.jpg' +p133096 +sg25267 +g27 +sa(dp133097 +g25268 +S'Adam and Eve (Adam und Eva)' +p133098 +sg25270 +S'Otto M\xc3\xbcller' +p133099 +sg25273 +S'lithograph' +p133100 +sg25275 +S'1920/1923' +p133101 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c44d.jpg' +p133102 +sg25267 +g27 +sa(dp133103 +g25273 +S'woodcut' +p133104 +sg25267 +g27 +sg25275 +S'1950' +p133105 +sg25268 +S'The Four Net Menders' +p133106 +sg25270 +S'Robert von Neumann' +p133107 +sa(dp133108 +g25273 +S'etching and aquatint' +p133109 +sg25267 +g27 +sg25275 +S'1918' +p133110 +sg25268 +S'The Animal Lover (Der Tierfreund)' +p133111 +sg25270 +S'Emil Nolde' +p133112 +sa(dp133113 +g25273 +S'etching and aquatint' +p133114 +sg25267 +g27 +sg25275 +S'1922' +p133115 +sg25268 +S'Vikings (Wikinger)' +p133116 +sg25270 +S'Emil Nolde' +p133117 +sa(dp133118 +g25273 +S'etching' +p133119 +sg25267 +g27 +sg25275 +S'1922' +p133120 +sg25268 +S'Young Girl (Junges Madchen)' +p133121 +sg25270 +S'Emil Nolde' +p133122 +sa(dp133123 +g25273 +S'etching and aquatint' +p133124 +sg25267 +g27 +sg25275 +S'1911' +p133125 +sg25268 +S'People in a Village Inn (Leute im Dorfkrug)' +p133126 +sg25270 +S'Emil Nolde' +p133127 +sa(dp133128 +g25273 +S'etching and aquatint' +p133129 +sg25267 +g27 +sg25275 +S'1918' +p133130 +sg25268 +S'Siberian Squire (Sibirsche Gutshernn)' +p133131 +sg25270 +S'Emil Nolde' +p133132 +sa(dp133133 +g25273 +S'color lithograph' +p133134 +sg25267 +g27 +sg25275 +S'1907' +p133135 +sg25268 +S'Tingeltangel Singer (Tingeltangel-Sangerin)' +p133136 +sg25270 +S'Emil Nolde' +p133137 +sa(dp133138 +g25273 +S'black crayon and watercolor' +p133139 +sg25267 +g27 +sg25275 +S'1920' +p133140 +sg25268 +S'Bathers' +p133141 +sg25270 +S'Max Pechstein' +p133142 +sa(dp133143 +g25268 +S'Saint Catherine of Siena, or Saint Clare of Assis' +p133144 +sg25270 +S'Italian 15th Century' +p133145 +sg25273 +S'sheet: 13.2 x 13.2 cm (5 3/16 x 5 3/16 in.)' +p133146 +sg25275 +S'\nwoodcut hand-colored in gray, yellow, and red lake' +p133147 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ffa1.jpg' +p133148 +sg25267 +g27 +sa(dp133149 +g25273 +S'lithograph on oatmeal paper' +p133150 +sg25267 +g27 +sg25275 +S'1909' +p133151 +sg25268 +S'Cart Horses' +p133152 +sg25270 +S'Max Pechstein' +p133153 +sa(dp133154 +g25273 +S'woodcut on wove paper' +p133155 +sg25267 +g27 +sg25275 +S'1918' +p133156 +sg25268 +S'The Convalescent' +p133157 +sg25270 +S'Max Pechstein' +p133158 +sa(dp133159 +g25273 +S'woodcut on gray-brown wove paper' +p133160 +sg25267 +g27 +sg25275 +S'1918' +p133161 +sg25268 +S'Exotic Pair' +p133162 +sg25270 +S'Max Pechstein' +p133163 +sa(dp133164 +g25273 +S'drypoint and platetone on wove paper' +p133165 +sg25267 +g27 +sg25275 +S'1921' +p133166 +sg25268 +S'Dr. Paul Fechter' +p133167 +sg25270 +S'Max Pechstein' +p133168 +sa(dp133169 +g25273 +S'drypoint and roulette on japan paper' +p133170 +sg25267 +g27 +sg25275 +S'1917' +p133171 +sg25268 +S'The Fur Neck Piece' +p133172 +sg25270 +S'Max Pechstein' +p133173 +sa(dp133174 +g25273 +S'brush and black ink' +p133175 +sg25267 +g27 +sg25275 +S'1911' +p133176 +sg25268 +S'Man with a Pipe' +p133177 +sg25270 +S'Max Pechstein' +p133178 +sa(dp133179 +g25273 +S'woodcut on wove paper' +p133180 +sg25267 +g27 +sg25275 +S'1922' +p133181 +sg25268 +S'The Mirror' +p133182 +sg25270 +S'Max Pechstein' +p133183 +sa(dp133184 +g25273 +S'graphite' +p133185 +sg25267 +g27 +sg25275 +S'1920' +p133186 +sg25268 +S'Nude Figure' +p133187 +sg25270 +S'Max Pechstein' +p133188 +sa(dp133189 +g25273 +S'brush and black ink' +p133190 +sg25267 +g27 +sg25275 +S'1918' +p133191 +sg25268 +S'Portrait of a Woman' +p133192 +sg25270 +S'Max Pechstein' +p133193 +sa(dp133194 +g25273 +S'woodcut on wove paper' +p133195 +sg25267 +g27 +sg25275 +S'1921' +p133196 +sg25268 +S'Fisherman' +p133197 +sg25270 +S'Max Pechstein' +p133198 +sa(dp133199 +g25268 +S'Saint Bernardino of Siena' +p133200 +sg25270 +S'Italian 15th Century' +p133201 +sg25273 +S'Schreiber, Vol. IX, no. 1279, State m' +p133202 +sg25275 +S'\nwoodcut' +p133203 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c70f.jpg' +p133204 +sg25267 +g27 +sa(dp133205 +g25273 +S'woodcut on gray wove paper' +p133206 +sg25267 +g27 +sg25275 +S'1918' +p133207 +sg25268 +S'Dr. Edwin Finlay-Freundlich' +p133208 +sg25270 +S'Max Pechstein' +p133209 +sa(dp133210 +g25273 +S'woodcut on wove paper' +p133211 +sg25267 +g27 +sg25275 +S'1922' +p133212 +sg25268 +S'Self-Portrait in Studio' +p133213 +sg25270 +S'Max Pechstein' +p133214 +sa(dp133215 +g25273 +S'woodcut on wove paper' +p133216 +sg25267 +g27 +sg25275 +S'1917' +p133217 +sg25268 +S'Wounded Soldier' +p133218 +sg25270 +S'Max Pechstein' +p133219 +sa(dp133220 +g25273 +S'woodcut on wove paper' +p133221 +sg25267 +g27 +sg25275 +S'1922' +p133222 +sg25268 +S'Two Fishermen' +p133223 +sg25270 +S'Max Pechstein' +p133224 +sa(dp133225 +g25273 +S'lithograph in black on brown wove paper' +p133226 +sg25267 +g27 +sg25275 +S'1909' +p133227 +sg25268 +S'Two Women on a Sofa' +p133228 +sg25270 +S'Max Pechstein' +p133229 +sa(dp133230 +g25273 +S'brush and black ink' +p133231 +sg25267 +g27 +sg25275 +S'1917' +p133232 +sg25268 +S'Woman Seated' +p133233 +sg25270 +S'Max Pechstein' +p133234 +sa(dp133235 +g25273 +S'woodcut' +p133236 +sg25267 +g27 +sg25275 +S'1919' +p133237 +sg25268 +S'Large Prophetess (Grosse Prophetin)' +p133238 +sg25270 +S'Karl Schmidt-Rottluff' +p133239 +sa(dp133240 +g25268 +S'Untitled' +p133241 +sg25270 +S'Ferdinand Schmutzer' +p133242 +sg25273 +S'etching and drypoint' +p133243 +sg25275 +S'unknown date\n' +p133244 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d77b.jpg' +p133245 +sg25267 +g27 +sa(dp133246 +g25273 +S'soft ground' +p133247 +sg25267 +g27 +sg25275 +S'1922' +p133248 +sg25268 +S'Kathe Kollwitz' +p133249 +sg25270 +S'Hedwig Weiss' +p133250 +sa(dp133251 +g25273 +S'Rosenwald Collection' +p133252 +sg25267 +g27 +sg25275 +S'\nportfolio with 11 prints by Hoelscher, Struck, Steinhardt, Fingesten, Scholz, Heuser, Orlik, Meid, Harta, and Kroll' +p133253 +sg25268 +S'Kopfe 1922' +p133254 +sg25270 +S'Various Artists' +p133255 +sa(dp133256 +g25268 +S'Madonna and Child Enthroned' +p133257 +sg25270 +S'Gentile da Fabriano' +p133258 +sg25273 +S'tempera on panel' +p133259 +sg25275 +S'c. 1420' +p133260 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005cc.jpg' +p133261 +sg25267 +S"Gentile da Fabriano's patrons were princes, the church, and various city\r\ngovernments as well as the customary merchant clients. His art has a cosmopolitan\r\nflavor, in which brilliant color, textural richness, and ornamental pattern are\r\ncombined.\n In the \n Gentile's art is typical of the International Style, a manner of painting which\r\nbecame popular at courts throughout Europe in the late fourteenth and early fifteenth\r\ncenturies. Characterized by a refined decorative elegance, a concern for continuous\r\nrhythms, and the lavish use of gold and bright colors, this aristocratic manner\r\nfused the stylized art of the Middle Ages with the emerging naturalistic interests\r\nof the Renaissance.\n " +p133262 +sa(dp133263 +g25268 +S'Madonna and Child' +p133264 +sg25270 +S'German 16th Century' +p133265 +sg25273 +S'Rosenwald Collection' +p133266 +sg25275 +S'\nengraving' +p133267 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a79b.jpg' +p133268 +sg25267 +g27 +sa(dp133269 +g25273 +S'etching' +p133270 +sg25267 +g27 +sg25275 +S'1922' +p133271 +sg25268 +S'Hermann Keyserling?' +p133272 +sg25270 +S'Richard Hoelscher' +p133273 +sa(dp133274 +g25273 +S'drypoint' +p133275 +sg25267 +g27 +sg25275 +S'1922' +p133276 +sg25268 +S'W. Nemat' +p133277 +sg25270 +S'Hermann Struck' +p133278 +sa(dp133279 +g25273 +S'drypoint' +p133280 +sg25267 +g27 +sg25275 +S'1922' +p133281 +sg25268 +S'Sven Hedin' +p133282 +sg25270 +S'Jakob Steinhardt' +p133283 +sa(dp133284 +g25273 +S'mezzotint' +p133285 +sg25267 +g27 +sg25275 +S'1922' +p133286 +sg25268 +S'Franz Schreker' +p133287 +sg25270 +S'Michel Fingesten' +p133288 +sa(dp133289 +g25273 +S'drypoint' +p133290 +sg25267 +g27 +sg25275 +S'1922' +p133291 +sg25268 +S'Hans Pfitzner' +p133292 +sg25270 +S'Richard Scholz' +p133293 +sa(dp133294 +g25273 +S'drypoint' +p133295 +sg25267 +g27 +sg25275 +S'1922' +p133296 +sg25268 +S'Thomas Mann' +p133297 +sg25270 +S'Heinrich Heuser' +p133298 +sa(dp133299 +g25273 +S'drypoint and rocker' +p133300 +sg25267 +g27 +sg25275 +S'1917' +p133301 +sg25268 +S'Max Slevogt' +p133302 +sg25270 +S'Emil Orlik' +p133303 +sa(dp133304 +g25273 +S'drypoint' +p133305 +sg25267 +g27 +sg25275 +S'1921' +p133306 +sg25268 +S'Max Liebermann' +p133307 +sg25270 +S'Hans Meid' +p133308 +sa(dp133309 +g25273 +S'drypoint and roulette' +p133310 +sg25267 +g27 +sg25275 +S'1922' +p133311 +sg25268 +S'Head of a Man' +p133312 +sg25270 +S'Felix Albrecht Harta' +p133313 +sa(dp133314 +g25273 +S'drypoint' +p133315 +sg25267 +g27 +sg25275 +S'1922' +p133316 +sg25268 +S'August Bier' +p133317 +sg25270 +S'Julius Kroll' +p133318 +sa(dp133319 +g25268 +S'Joseph and the Christ Child' +p133320 +sg25270 +S'German 15th Century' +p133321 +sg25273 +S'Lehrs, undescribed' +p133322 +sg25275 +S'\nengraving, hand-colored in red and green' +p133323 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3c8.jpg' +p133324 +sg25267 +g27 +sa(dp133325 +g25273 +S'etching' +p133326 +sg25267 +g27 +sg25275 +S'1922' +p133327 +sg25268 +S'Landschaft mit Ziegen' +p133328 +sg25270 +S'Felix Meseck' +p133329 +sa(dp133330 +g25273 +S'Rosenwald Collection' +p133331 +sg25267 +g27 +sg25275 +S'\nportfolio with 12 prints by Meseck, Beckmann, Campendonk, Kleinschmidt, Seewald, Unold, Hecht, Grossman, Rossing, Trumm, and Hofer' +p133332 +sg25268 +S'Inhalt der zweiten Ganymed-Mappe' +p133333 +sg25270 +S'Various Artists' +p133334 +sa(dp133335 +g25273 +S'woodcut' +p133336 +sg25267 +g27 +sg25275 +S'1922' +p133337 +sg25268 +S'Tanzende (Dancing)' +p133338 +sg25270 +S'Max Beckmann' +p133339 +sa(dp133340 +g25273 +S'woodcut' +p133341 +sg25267 +g27 +sg25275 +S'1922' +p133342 +sg25268 +S'Die Bettler nach Bruegel' +p133343 +sg25270 +S'Heinrich Campendonk' +p133344 +sa(dp133345 +g25273 +S'etching' +p133346 +sg25267 +g27 +sg25275 +S'1922' +p133347 +sg25268 +S'Bei der Karten schlagern' +p133348 +sg25270 +S'Paul Kleinschmidt' +p133349 +sa(dp133350 +g25273 +S'woodcut' +p133351 +sg25267 +g27 +sg25275 +S'1922' +p133352 +sg25268 +S'Aus dem Camposanto' +p133353 +sg25270 +S'Richard Seewald' +p133354 +sa(dp133355 +g25273 +S'woodcut' +p133356 +sg25267 +g27 +sg25275 +S'1922' +p133357 +sg25268 +S'In Memoriam Rene Beeh' +p133358 +sg25270 +S'Max Unold' +p133359 +sa(dp133360 +g25273 +S'woodcut' +p133361 +sg25267 +g27 +sg25275 +S'1922' +p133362 +sg25268 +S'Aus dem Leben des Heiligen Franz nach Taddeo Goddi' +p133363 +sg25270 +S'Franz Hecht' +p133364 +sa(dp133365 +g25273 +S'woodcut' +p133366 +sg25267 +g27 +sg25275 +S'1922' +p133367 +sg25268 +S'Der Eingebildete' +p133368 +sg25270 +S'Karl R\xc3\xb6ssing' +p133369 +sa(dp133370 +g25268 +S'Saint Brigitta?' +p133371 +sg25270 +S'German 15th Century' +p133372 +sg25273 +S'Lehrs, undescribed' +p133373 +sg25275 +S'\nengraving, hand-colored' +p133374 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3c4.jpg' +p133375 +sg25267 +g27 +sa(dp133376 +g25273 +S'woodcut' +p133377 +sg25267 +g27 +sg25275 +S'1922' +p133378 +sg25268 +S'Die Stadt' +p133379 +sg25270 +S'Franz Hecht' +p133380 +sa(dp133381 +g25273 +S'woodcut' +p133382 +sg25267 +g27 +sg25275 +S'1922' +p133383 +sg25268 +S'Coriolan und seine Mutter' +p133384 +sg25270 +S'Peter Trumm' +p133385 +sa(dp133386 +g25273 +S'lithograph' +p133387 +sg25267 +g27 +sg25275 +S'1922' +p133388 +sg25268 +S'Novize II' +p133389 +sg25270 +S'Karl Hofer' +p133390 +sa(dp133391 +g25273 +S'lithograph' +p133392 +sg25267 +g27 +sg25275 +S'1922' +p133393 +sg25268 +S'The Curse' +p133394 +sg25270 +S'Ernst Barlach' +p133395 +sa(dp133396 +g25273 +S'lithograph' +p133397 +sg25267 +g27 +sg25275 +S'1922' +p133398 +sg25268 +S'The Jolly Peg-Leg' +p133399 +sg25270 +S'Ernst Barlach' +p133400 +sa(dp133401 +g25273 +S'lithograph' +p133402 +sg25267 +g27 +sg25275 +S'1922' +p133403 +sg25268 +S'Stony Path' +p133404 +sg25270 +S'Ernst Barlach' +p133405 +sa(dp133406 +g25273 +S'lithograph' +p133407 +sg25267 +g27 +sg25275 +S'1922' +p133408 +sg25268 +S'Rebellion (The Prophet Elijah)' +p133409 +sg25270 +S'Ernst Barlach' +p133410 +sa(dp133411 +g25273 +S'lithograph' +p133412 +sg25267 +g27 +sg25275 +S'1922' +p133413 +sg25268 +S'The Executioner' +p133414 +sg25270 +S'Ernst Barlach' +p133415 +sa(dp133416 +g25273 +S'lithograph' +p133417 +sg25267 +g27 +sg25275 +S'1922' +p133418 +sg25268 +S'Three Gray Women' +p133419 +sg25270 +S'Ernst Barlach' +p133420 +sa(dp133421 +g25273 +S'wood engraving on green paper [trial proof]' +p133422 +sg25267 +g27 +sg25275 +S'1948' +p133423 +sg25268 +S'Untitled' +p133424 +sg25270 +S'Imre Reiner' +p133425 +sa(dp133426 +g25268 +S'Christ as the Man of Sorrows' +p133427 +sg25270 +S'Artist Information (' +p133428 +sg25273 +S'German, active c. 1450 - active 1467' +p133429 +sg25275 +S'(related artist)' +p133430 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3c2.jpg' +p133431 +sg25267 +g27 +sa(dp133432 +g25273 +S'wood engraving on green paper [trial proof]' +p133433 +sg25267 +g27 +sg25275 +S'published 1944' +p133434 +sg25268 +S'Illustration to V. Hofmannsthal, "Andreas"' +p133435 +sg25270 +S'Imre Reiner' +p133436 +sa(dp133437 +g25273 +S'wood engraving [trial proof]' +p133438 +sg25267 +g27 +sg25275 +S'c. 1944' +p133439 +sg25268 +S'Illustration to V. Hofmannsthal, "Andreas"' +p133440 +sg25270 +S'Imre Reiner' +p133441 +sa(dp133442 +g25273 +S'wood engraving [trial proof]' +p133443 +sg25267 +g27 +sg25275 +S'c. 1944' +p133444 +sg25268 +S'Illustration to V. Hofmannsthal, "Andreas"' +p133445 +sg25270 +S'Imre Reiner' +p133446 +sa(dp133447 +g25273 +S'wood engraving [trial proof]' +p133448 +sg25267 +g27 +sg25275 +S'c. 1944' +p133449 +sg25268 +S'Illustration to V. Hofmannsthal, "Andreas"' +p133450 +sg25270 +S'Imre Reiner' +p133451 +sa(dp133452 +g25273 +S'wood engraving [trial proof]' +p133453 +sg25267 +g27 +sg25275 +S'c. 1944' +p133454 +sg25268 +S'Illustration to V. Hofmannsthal, "Andreas"' +p133455 +sg25270 +S'Imre Reiner' +p133456 +sa(dp133457 +g25273 +S'wood engraving [trial proof]' +p133458 +sg25267 +g27 +sg25275 +S'c. 1944' +p133459 +sg25268 +S'Illustration to V. Hofmannsthal, "Andreas"' +p133460 +sg25270 +S'Imre Reiner' +p133461 +sa(dp133462 +g25273 +S'wood engraving [trial proof]' +p133463 +sg25267 +g27 +sg25275 +S'1947' +p133464 +sg25268 +S'Illustration to "Bandello"' +p133465 +sg25270 +S'Imre Reiner' +p133466 +sa(dp133467 +g25273 +S'wood engraving on grey paper [trial proof]' +p133468 +sg25267 +g27 +sg25275 +S'1947' +p133469 +sg25268 +S'Illustration to "Bandello"' +p133470 +sg25270 +S'Imre Reiner' +p133471 +sa(dp133472 +g25273 +S'wood engraving [trial proof]' +p133473 +sg25267 +g27 +sg25275 +S'1949' +p133474 +sg25268 +S'Illustration to Hesiod' +p133475 +sg25270 +S'Imre Reiner' +p133476 +sa(dp133477 +g25273 +S'wood engraving [trial proof]' +p133478 +sg25267 +g27 +sg25275 +S'1949' +p133479 +sg25268 +S'Artemis' +p133480 +sg25270 +S'Imre Reiner' +p133481 +sa(dp133482 +g25268 +S'Madonna and Child' +p133483 +sg25270 +S'Artist Information (' +p133484 +sg25273 +g27 +sg25275 +S'(artist)' +p133485 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3c7.jpg' +p133486 +sg25267 +g27 +sa(dp133487 +g25273 +S'wood engraving [trial proof]' +p133488 +sg25267 +g27 +sg25275 +S'published 1943' +p133489 +sg25268 +S'Illustration to Goethe\'s "Novelle"' +p133490 +sg25270 +S'Imre Reiner' +p133491 +sa(dp133492 +g25273 +S'wood engraving in blue [trial proof]' +p133493 +sg25267 +g27 +sg25275 +S'1941' +p133494 +sg25268 +S'Illustration to Novalis, "Hymmen an die NachtRosenhammer"' +p133495 +sg25270 +S'Imre Reiner' +p133496 +sa(dp133497 +g25273 +S'wood engraving [trial proof]' +p133498 +sg25267 +g27 +sg25275 +S'published 1942' +p133499 +sg25268 +S'Illustration to Novalis, "Hymmen an die NachtRosenhammer"' +p133500 +sg25270 +S'Imre Reiner' +p133501 +sa(dp133502 +g25273 +S'wood engraving [trial proof]' +p133503 +sg25267 +g27 +sg25275 +S'published 1942' +p133504 +sg25268 +S'Illustration to Novalis, "Hymmen an die NachtRosenhammer"' +p133505 +sg25270 +S'Imre Reiner' +p133506 +sa(dp133507 +g25273 +S'wood engraving [trial proof]' +p133508 +sg25267 +g27 +sg25275 +S'unknown date\n' +p133509 +sg25268 +S'Illustration to Balzac, "La Bourse"' +p133510 +sg25270 +S'Imre Reiner' +p133511 +sa(dp133512 +g25273 +S'wood engraving in brown [trial proof]' +p133513 +sg25267 +g27 +sg25275 +S'unknown date\n' +p133514 +sg25268 +S'Illustration to Balzac, "La Bourse"' +p133515 +sg25270 +S'Imre Reiner' +p133516 +sa(dp133517 +g25273 +S'wood engraving [trial proof]' +p133518 +sg25267 +g27 +sg25275 +S'1942' +p133519 +sg25268 +S'Illustration to Balzac, "La Bourse"' +p133520 +sg25270 +S'Imre Reiner' +p133521 +sa(dp133522 +g25273 +S'wood engraving in brown [trial proof]' +p133523 +sg25267 +g27 +sg25275 +S'1941' +p133524 +sg25268 +S'Illustration to Balzac, "La Bourse"' +p133525 +sg25270 +S'Imre Reiner' +p133526 +sa(dp133527 +g25273 +S'wood engraving in brown [trial proof]' +p133528 +sg25267 +g27 +sg25275 +S'1941' +p133529 +sg25268 +S'Frontispiece for Balzac, "La Bourse"' +p133530 +sg25270 +S'Imre Reiner' +p133531 +sa(dp133532 +g25273 +S'wood engraving [trial proof]' +p133533 +sg25267 +g27 +sg25275 +S'published 1941' +p133534 +sg25268 +S'Illustration to Cervantes, "Don Quixote"' +p133535 +sg25270 +S'Imre Reiner' +p133536 +sa(dp133537 +g25268 +S'Madonna and Child' +p133538 +sg25270 +S'Master with the Flower Borders' +p133539 +sg25273 +S', unknown date' +p133540 +sg25275 +S'\n' +p133541 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3c3.jpg' +p133542 +sg25267 +g27 +sa(dp133543 +g25273 +S'wood engraving [trial proof]' +p133544 +sg25267 +g27 +sg25275 +S'1940' +p133545 +sg25268 +S'Illustration to Cervantes, "Don Quixote"' +p133546 +sg25270 +S'Imre Reiner' +p133547 +sa(dp133548 +g25273 +S'wood engraving [trial proof]' +p133549 +sg25267 +g27 +sg25275 +S'1940' +p133550 +sg25268 +S'Illustration to Cervantes, "Don Quixote"' +p133551 +sg25270 +S'Imre Reiner' +p133552 +sa(dp133553 +g25273 +S'wood engraving in green [trial proof]' +p133554 +sg25267 +g27 +sg25275 +S'1940' +p133555 +sg25268 +S'Illustration to Cervantes, "Don Quixote"' +p133556 +sg25270 +S'Imre Reiner' +p133557 +sa(dp133558 +g25273 +S'wood engraving [trial proof]' +p133559 +sg25267 +g27 +sg25275 +S'in or before 1941' +p133560 +sg25268 +S'Illustration to Cervantes, "Don Quixote"' +p133561 +sg25270 +S'Imre Reiner' +p133562 +sa(dp133563 +g25273 +S'wood engraving [trial proof]' +p133564 +sg25267 +g27 +sg25275 +S'1941' +p133565 +sg25268 +S'Illustration to Cervantes, "Don Quixote"' +p133566 +sg25270 +S'Imre Reiner' +p133567 +sa(dp133568 +g25273 +S'wood engraving [trial proof]' +p133569 +sg25267 +g27 +sg25275 +S'in or before 1941' +p133570 +sg25268 +S'Illustration to Cervantes, "Don Quixote"' +p133571 +sg25270 +S'Imre Reiner' +p133572 +sa(dp133573 +g25273 +S'wood engraving [trial proof]' +p133574 +sg25267 +g27 +sg25275 +S'in or before 1941' +p133575 +sg25268 +S'Illustration to Cervantes, "Don Quixote"' +p133576 +sg25270 +S'Imre Reiner' +p133577 +sa(dp133578 +g25273 +S'wood engraving [trial proof]' +p133579 +sg25267 +g27 +sg25275 +S'in or before 1941' +p133580 +sg25268 +S'Illustration to Cervantes, "Don Quixote"' +p133581 +sg25270 +S'Imre Reiner' +p133582 +sa(dp133583 +g25273 +S'wood engraving [trial proof]' +p133584 +sg25267 +g27 +sg25275 +S'1941' +p133585 +sg25268 +S'Illustration to Voltaire, "La Princesse de Babilone"' +p133586 +sg25270 +S'Imre Reiner' +p133587 +sa(dp133588 +g25273 +S'wood engraving [trial proof]' +p133589 +sg25267 +g27 +sg25275 +S'1941' +p133590 +sg25268 +S'Illustration to Voltaire, "La Princesse de Babilone"' +p133591 +sg25270 +S'Imre Reiner' +p133592 +sa(dp133593 +g25268 +S'The Madonna and Child with a Pear' +p133594 +sg25270 +S'German 15th Century' +p133595 +sg25273 +S'Lehrs, Vol. 4, p.243, no. 43, State unique' +p133596 +sg25275 +S'\nengraving, hand-colored in red, orange, green, yellow, blue, and tan' +p133597 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3cb.jpg' +p133598 +sg25267 +g27 +sa(dp133599 +g25273 +S'wood engraving [trial proof]' +p133600 +sg25267 +g27 +sg25275 +S'1941' +p133601 +sg25268 +S'Illustration to Voltaire, "La Princesse de Babilone"' +p133602 +sg25270 +S'Imre Reiner' +p133603 +sa(dp133604 +g25273 +S'wood engraving [trial proof]' +p133605 +sg25267 +g27 +sg25275 +S'in or before 1942' +p133606 +sg25268 +S'Illustration to Voltaire, "La Princesse de Babilone"' +p133607 +sg25270 +S'Imre Reiner' +p133608 +sa(dp133609 +g25273 +S'color woodcut and wood engraving [trial proof]' +p133610 +sg25267 +g27 +sg25275 +S'in or before 1942' +p133611 +sg25268 +S'Illustration to Voltaire, "La Princesse de Babilone"' +p133612 +sg25270 +S'Imre Reiner' +p133613 +sa(dp133614 +g25273 +S'wood engraving [trial proof]' +p133615 +sg25267 +g27 +sg25275 +S'1941' +p133616 +sg25268 +S'Illustration to Voltaire, "La Princesse de Babilone"' +p133617 +sg25270 +S'Imre Reiner' +p133618 +sa(dp133619 +g25273 +S'wood engraving [trial proof]' +p133620 +sg25267 +g27 +sg25275 +S'1948' +p133621 +sg25268 +S'Illustration to Voltaire, "Candide"' +p133622 +sg25270 +S'Imre Reiner' +p133623 +sa(dp133624 +g25273 +S'wood engraving [trial proof]' +p133625 +sg25267 +g27 +sg25275 +S'1948' +p133626 +sg25268 +S'Illustration to Voltaire, "Candide"' +p133627 +sg25270 +S'Imre Reiner' +p133628 +sa(dp133629 +g25273 +S'wood engraving [trial proof]' +p133630 +sg25267 +g27 +sg25275 +S'1948' +p133631 +sg25268 +S'Illustration to Voltaire, "Candide"' +p133632 +sg25270 +S'Imre Reiner' +p133633 +sa(dp133634 +g25273 +S'wood engraving [trial proof]' +p133635 +sg25267 +g27 +sg25275 +S'1948' +p133636 +sg25268 +S'Illustration to Voltaire, "Candide"' +p133637 +sg25270 +S'Imre Reiner' +p133638 +sa(dp133639 +g25273 +S'wood engraving [trial proof]' +p133640 +sg25267 +g27 +sg25275 +S'1948' +p133641 +sg25268 +S'Illustration to Voltaire, "Candide"' +p133642 +sg25270 +S'Imre Reiner' +p133643 +sa(dp133644 +g25273 +S'wood engraving [trial proof]' +p133645 +sg25267 +g27 +sg25275 +S'1948' +p133646 +sg25268 +S'Illustration to Voltaire, "Candide"' +p133647 +sg25270 +S'Imre Reiner' +p133648 +sa(dp133649 +g25268 +S'Christ as the Man of Sorrows' +p133650 +sg25270 +S'Netherlandish 15th Century' +p133651 +sg25273 +S'Lehrs, Vol. 4, p.233, no. 27' +p133652 +sg25275 +S'\nengraving, hand-colored in red, tan, violet, green and flesh; pasted into an initial "O" on an illuminated vellum sheet, torn from a book' +p133653 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccf3.jpg' +p133654 +sg25267 +g27 +sa(dp133655 +g25273 +S'wood engraving [trial proof]' +p133656 +sg25267 +g27 +sg25275 +S'1948' +p133657 +sg25268 +S'Illustration to Voltaire, "Candide"' +p133658 +sg25270 +S'Imre Reiner' +p133659 +sa(dp133660 +g25273 +S'wood engraving [trial proof]' +p133661 +sg25267 +g27 +sg25275 +S'1948' +p133662 +sg25268 +S'Illustration to Voltaire, "Candide"' +p133663 +sg25270 +S'Imre Reiner' +p133664 +sa(dp133665 +g25273 +S'wood engraving [trial proof]' +p133666 +sg25267 +g27 +sg25275 +S'1948' +p133667 +sg25268 +S'Illustration to Voltaire, "Candide"' +p133668 +sg25270 +S'Imre Reiner' +p133669 +sa(dp133670 +g25273 +S'wood engraving [trial proof]' +p133671 +sg25267 +g27 +sg25275 +S'published 1950' +p133672 +sg25268 +S'Illustration to Voltaire, "Candide"' +p133673 +sg25270 +S'Imre Reiner' +p133674 +sa(dp133675 +g25273 +S'wood engraving [trial proof]' +p133676 +sg25267 +g27 +sg25275 +S'1948' +p133677 +sg25268 +S'Illustration to Voltaire, "Candide"' +p133678 +sg25270 +S'Imre Reiner' +p133679 +sa(dp133680 +g25273 +S'color wood engraving [trial proof]' +p133681 +sg25267 +g27 +sg25275 +S'unknown date\n' +p133682 +sg25268 +S'Titlepage: Illustration to Dickens' +p133683 +sg25270 +S'Imre Reiner' +p133684 +sa(dp133685 +g25273 +S'wood engraving in brown [trial proof]' +p133686 +sg25267 +g27 +sg25275 +S'1935' +p133687 +sg25268 +S'Werkstatt - Stilleben' +p133688 +sg25270 +S'Imre Reiner' +p133689 +sa(dp133690 +g25273 +S'wood engraving in brown [trial proof]' +p133691 +sg25267 +g27 +sg25275 +S'unknown date\n' +p133692 +sg25268 +S'Illustration to Aristophanes, "Die Frosche"' +p133693 +sg25270 +S'Imre Reiner' +p133694 +sa(dp133695 +g25273 +S'wood engraving [trial proof]' +p133696 +sg25267 +g27 +sg25275 +S'1940' +p133697 +sg25268 +S'David (Der Beschutzer)' +p133698 +sg25270 +S'Imre Reiner' +p133699 +sa(dp133700 +g25268 +S'Madonna and Child' +p133701 +sg25270 +S'German 15th Century' +p133702 +sg25273 +S'Lehrs, Vol. 4, p.237, no. 34' +p133703 +sg25275 +S'\nengraving, hand-colored in green and red' +p133704 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3c6.jpg' +p133705 +sg25267 +g27 +sa(dp133706 +g25273 +S'wood engraving [trial proof]' +p133707 +sg25267 +g27 +sg25275 +S'1940' +p133708 +sg25268 +S'Vom Theater' +p133709 +sg25270 +S'Imre Reiner' +p133710 +sa(dp133711 +g25273 +S'wood engraving in blue' +p133712 +sg25267 +g27 +sg25275 +S'unknown date\n' +p133713 +sg25268 +S'Illustration to Novalis, "Heinrich von Ofterdingen"' +p133714 +sg25270 +S'Imre Reiner' +p133715 +sa(dp133716 +g25273 +S'wood engraving' +p133717 +sg25267 +g27 +sg25275 +S'unknown date\n' +p133718 +sg25268 +S'Untitled' +p133719 +sg25270 +S'Imre Reiner' +p133720 +sa(dp133721 +g25273 +S'wood engraving [trial proof]' +p133722 +sg25267 +g27 +sg25275 +S'published 1948' +p133723 +sg25268 +S'Illustration to Heine, "Florentinische Naechte"' +p133724 +sg25270 +S'Imre Reiner' +p133725 +sa(dp133726 +g25273 +S'wood engraving' +p133727 +sg25267 +g27 +sg25275 +S'unknown date\n' +p133728 +sg25268 +S'Untitled' +p133729 +sg25270 +S'Imre Reiner' +p133730 +sa(dp133731 +g25273 +S'wood engraving' +p133732 +sg25267 +g27 +sg25275 +S'unknown date\n' +p133733 +sg25268 +S'Untitled' +p133734 +sg25270 +S'Imre Reiner' +p133735 +sa(dp133736 +g25273 +S'wood engraving' +p133737 +sg25267 +g27 +sg25275 +S'unknown date\n' +p133738 +sg25268 +S'Untitled' +p133739 +sg25270 +S'Imre Reiner' +p133740 +sa(dp133741 +g25273 +S'wood engraving [trial proof]' +p133742 +sg25267 +g27 +sg25275 +S'unknown date\n' +p133743 +sg25268 +S'Primavera' +p133744 +sg25270 +S'Imre Reiner' +p133745 +sa(dp133746 +g25273 +S'wood engraving [trial proof]' +p133747 +sg25267 +g27 +sg25275 +S'unknown date\n' +p133748 +sg25268 +S'Illustration to Aristophanes, "Die Frosche"' +p133749 +sg25270 +S'Imre Reiner' +p133750 +sa(dp133751 +g25273 +S'wood engraving [trial proof]' +p133752 +sg25267 +g27 +sg25275 +S'unknown date\n' +p133753 +sg25268 +S'Die Verwandelte Wunderblume' +p133754 +sg25270 +S'Imre Reiner' +p133755 +sa(dp133756 +g25268 +S'Christ as the Man of Sorrows' +p133757 +sg25270 +S'Artist Information (' +p133758 +sg25273 +S'German, c. 1445 - 1503' +p133759 +sg25275 +S'(artist after)' +p133760 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a411.jpg' +p133761 +sg25267 +g27 +sa(dp133762 +g25273 +S'color engraving with hand coloring in white [working proof]' +p133763 +sg25267 +g27 +sg25275 +S'unknown date\n' +p133764 +sg25268 +S'Die Tanzerin mit dem Affen' +p133765 +sg25270 +S'Imre Reiner' +p133766 +sa(dp133767 +g25273 +S'wood engraving in brown [trial proof]' +p133768 +sg25267 +g27 +sg25275 +S'unknown date\n' +p133769 +sg25268 +S'Untitled' +p133770 +sg25270 +S'Imre Reiner' +p133771 +sa(dp133772 +g25273 +S'wood engraving' +p133773 +sg25267 +g27 +sg25275 +S'1934' +p133774 +sg25268 +S'Prilke Papageienpark (?)' +p133775 +sg25270 +S'Imre Reiner' +p133776 +sa(dp133777 +g25273 +S'wood engraving [trial proof]' +p133778 +sg25267 +g27 +sg25275 +S'1936/1938' +p133779 +sg25268 +S'Begegnung nach Jahren' +p133780 +sg25270 +S'Imre Reiner' +p133781 +sa(dp133782 +g25273 +S'wood engraving in brown' +p133783 +sg25267 +g27 +sg25275 +S'1938' +p133784 +sg25268 +S'Untitled' +p133785 +sg25270 +S'Imre Reiner' +p133786 +sa(dp133787 +g25273 +S'wood engraving in green [trial proof]' +p133788 +sg25267 +g27 +sg25275 +S'1938' +p133789 +sg25268 +S'Das Konzert' +p133790 +sg25270 +S'Imre Reiner' +p133791 +sa(dp133792 +g25273 +S'wood engraving' +p133793 +sg25267 +g27 +sg25275 +S'1939' +p133794 +sg25268 +S'Illustration to V. Hofmannsthal, "Andreas"' +p133795 +sg25270 +S'Imre Reiner' +p133796 +sa(dp133797 +g25273 +S'wood engraving [trial proof]' +p133798 +sg25267 +g27 +sg25275 +S'1936/1939' +p133799 +sg25268 +S'Der Drehorgelmann' +p133800 +sg25270 +S'Imre Reiner' +p133801 +sa(dp133802 +g25273 +S'wood engraving [trial proof]' +p133803 +sg25267 +g27 +sg25275 +S'1939' +p133804 +sg25268 +S'Illustration to V. Hofmannsthal, "Andreas"' +p133805 +sg25270 +S'Imre Reiner' +p133806 +sa(dp133807 +g25273 +S'wood engraving in brown' +p133808 +sg25267 +g27 +sg25275 +S'1939/1940' +p133809 +sg25268 +S'Das Madchen mit der Taube und der Eule' +p133810 +sg25270 +S'Imre Reiner' +p133811 +sa(dp133812 +g25268 +S'Madonna and Child' +p133813 +sg25270 +S'Giotto' +p133814 +sg25273 +S'tempera on panel' +p133815 +sg25275 +S'probably 1320/1330' +p133816 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a00009b9.jpg' +p133817 +sg25267 +S"Giotto's explorations and innovations in art during the early fourteenth century\ndeveloped, a full century later, into the Italian Renaissance. Besides making panel\npaintings, he executed many fresco cycles, the most famous at the Arena Chapel,\nPadua, and he also worked as an architect and sculptor.\n Transformed by Giotto, the stylized figures in paintings such as the \n Painted during the latter part of Giotto's career, the \n " +p133818 +sa(dp133819 +g25268 +S'A Monk with an Angel' +p133820 +sg25270 +S'German 15th Century' +p133821 +sg25273 +S'Schreiber, no. 1752' +p133822 +sg25275 +S'\nwoodcut, hand-colored in red, olive-gray, light green, olive, blue, yellow, and pink' +p133823 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5b7.jpg' +p133824 +sg25267 +g27 +sa(dp133825 +g25273 +S'wood engraving' +p133826 +sg25267 +g27 +sg25275 +S'1940' +p133827 +sg25268 +S'Die Hollanderin' +p133828 +sg25270 +S'Imre Reiner' +p133829 +sa(dp133830 +g25273 +S'wood engraving [trial proof]' +p133831 +sg25267 +g27 +sg25275 +S'1940' +p133832 +sg25268 +S'David' +p133833 +sg25270 +S'Imre Reiner' +p133834 +sa(dp133835 +g25273 +S'wood engraving [working proof]' +p133836 +sg25267 +g27 +sg25275 +S'1940' +p133837 +sg25268 +S'Der Junge mit der Lilie' +p133838 +sg25270 +S'Imre Reiner' +p133839 +sa(dp133840 +g25273 +S'wood engraving' +p133841 +sg25267 +g27 +sg25275 +S'1940' +p133842 +sg25268 +S'Der Brandhauptmann' +p133843 +sg25270 +S'Imre Reiner' +p133844 +sa(dp133845 +g25273 +S'wood engraving [trial proof]' +p133846 +sg25267 +g27 +sg25275 +S'1940/1943' +p133847 +sg25268 +S'Leontine Pikarsky' +p133848 +sg25270 +S'Imre Reiner' +p133849 +sa(dp133850 +g25273 +S'wood engraving in green [trial proof]' +p133851 +sg25267 +g27 +sg25275 +S'1940/1943' +p133852 +sg25268 +S'Illustration to Aristophanes, "Die Frosche"' +p133853 +sg25270 +S'Imre Reiner' +p133854 +sa(dp133855 +g25273 +S'wood engraving' +p133856 +sg25267 +g27 +sg25275 +S'1947/1948' +p133857 +sg25268 +S'Das Vogelpaar' +p133858 +sg25270 +S'Imre Reiner' +p133859 +sa(dp133860 +g25273 +S'wood engraving' +p133861 +sg25267 +g27 +sg25275 +S'1947' +p133862 +sg25268 +S'Untitled' +p133863 +sg25270 +S'Imre Reiner' +p133864 +sa(dp133865 +g25273 +S'wood engraving' +p133866 +sg25267 +g27 +sg25275 +S'published 1948' +p133867 +sg25268 +S'Illustration to Heine, "Florentinische Naechte"' +p133868 +sg25270 +S'Imre Reiner' +p133869 +sa(dp133870 +g25273 +S'wood engraving [trial proof]' +p133871 +sg25267 +g27 +sg25275 +S'1947' +p133872 +sg25268 +S'Illustration to Heine, "Florentinische Naechte"' +p133873 +sg25270 +S'Imre Reiner' +p133874 +sa(dp133875 +g25268 +S'Saint Veronica with the Sudarium' +p133876 +sg25270 +S'Netherlandish 15th Century' +p133877 +sg25273 +S'Schreiber, Vol. *, no. 1724, State c' +p133878 +sg25275 +S'\nwoodcut, hand-colored in yellow, blue, red, green and gold' +p133879 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cced.jpg' +p133880 +sg25267 +g27 +sa(dp133881 +g25273 +S'wood engraving [trial proof]' +p133882 +sg25267 +g27 +sg25275 +S'1947' +p133883 +sg25268 +S'Bandello' +p133884 +sg25270 +S'Imre Reiner' +p133885 +sa(dp133886 +g25273 +S'wood engraving in brown [trial proof]' +p133887 +sg25267 +g27 +sg25275 +S'1946' +p133888 +sg25268 +S'Illustration to Wilde, "A Florentine Tragedy"' +p133889 +sg25270 +S'Imre Reiner' +p133890 +sa(dp133891 +g25273 +S'wood engraving [working proof]' +p133892 +sg25267 +g27 +sg25275 +S'1946' +p133893 +sg25268 +S'Der Hingst St. Manr (?)' +p133894 +sg25270 +S'Imre Reiner' +p133895 +sa(dp133896 +g25273 +S'wood engraving in green [trial proof]' +p133897 +sg25267 +g27 +sg25275 +S'1943' +p133898 +sg25268 +S'Der Zirkus' +p133899 +sg25270 +S'Imre Reiner' +p133900 +sa(dp133901 +g25273 +S'wood engraving [trial proof]' +p133902 +sg25267 +g27 +sg25275 +S'1941' +p133903 +sg25268 +S"Promersi d'an Marinaio (?)" +p133904 +sg25270 +S'Imre Reiner' +p133905 +sa(dp133906 +g25273 +S'wood engraving [trial proof]' +p133907 +sg25267 +g27 +sg25275 +S'1941' +p133908 +sg25268 +S'Das Paar' +p133909 +sg25270 +S'Imre Reiner' +p133910 +sa(dp133911 +g25273 +S'color wood engraving' +p133912 +sg25267 +g27 +sg25275 +S'1949' +p133913 +sg25268 +S'Der Herbstblatter [left half]' +p133914 +sg25270 +S'Imre Reiner' +p133915 +sa(dp133916 +g25273 +S'color wood engraving' +p133917 +sg25267 +g27 +sg25275 +S'1949' +p133918 +sg25268 +S'Der Herbstblatter [right half]' +p133919 +sg25270 +S'Imre Reiner' +p133920 +sa(dp133921 +g25273 +S'woodcut' +p133922 +sg25267 +g27 +sg25275 +S'published 1950' +p133923 +sg25268 +S'Cover' +p133924 +sg25270 +S'Adja Yunkers' +p133925 +sa(dp133926 +g25273 +S'(artist)' +p133927 +sg25267 +g27 +sg25275 +S'\n' +p133928 +sg25268 +S'Prints in the Desert' +p133929 +sg25270 +S'Artist Information (' +p133930 +sa(dp133931 +g25268 +S'Saint Valentine, Saint Stephen and Saint Maximilian' +p133932 +sg25270 +S'Hans Burgkmair I' +p133933 +sg25273 +S'color woodcut' +p133934 +sg25275 +S'1498' +p133935 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000ae88.jpg' +p133936 +sg25267 +g27 +sa(dp133937 +g25273 +S'woodcut on wove paper' +p133938 +sg25267 +g27 +sg25275 +S'published 1950' +p133939 +sg25268 +S'Title Page' +p133940 +sg25270 +S'Adja Yunkers' +p133941 +sa(dp133942 +g25273 +S'woodcut on wove paper' +p133943 +sg25267 +g27 +sg25275 +S'published 1950' +p133944 +sg25268 +S'End Medallion' +p133945 +sg25270 +S'Adja Yunkers' +p133946 +sa(dp133947 +g25273 +S'lithograph in black and brown on wove paper' +p133948 +sg25267 +g27 +sg25275 +S'published 1950' +p133949 +sg25268 +S'Koshare' +p133950 +sg25270 +S"Frederick O'Hara" +p133951 +sa(dp133952 +g25273 +S'color woodcut on japan paper' +p133953 +sg25267 +g27 +sg25275 +S'published 1950' +p133954 +sg25268 +S'Succubae' +p133955 +sg25270 +S'Adja Yunkers' +p133956 +sa(dp133957 +g25273 +S'color woodcut on black paper' +p133958 +sg25267 +g27 +sg25275 +S'unknown date\n' +p133959 +sg25268 +S'Whorlworm' +p133960 +sg25270 +S'Robert Walters' +p133961 +sa(dp133962 +g25273 +S'Rosenwald Collection' +p133963 +sg25267 +g27 +sg25275 +S'\nwatercolor' +p133964 +sg25268 +S"Child's Work" +p133965 +sg25270 +S'American 20th Century' +p133966 +sa(dp133967 +g25273 +S'monospray' +p133968 +sg25267 +g27 +sg25275 +S'published 1950' +p133969 +sg25268 +S'De Chaco' +p133970 +sg25270 +S'Jack Garver' +p133971 +sa(dp133972 +g25273 +S'Rosenwald Collection' +p133973 +sg25267 +g27 +sg25275 +S'\nlinoleum cut' +p133974 +sg25268 +S"Child's Vignette" +p133975 +sg25270 +S'American 20th Century' +p133976 +sa(dp133977 +g25273 +S'woodcut' +p133978 +sg25267 +g27 +sg25275 +S'published 1950' +p133979 +sg25268 +S'This Sand by Elmer Gorman' +p133980 +sg25270 +S"Frederick O'Hara" +p133981 +sa(dp133982 +g25268 +S'The Skater (Portrait of William Grant)' +p133983 +sg25270 +S'Gilbert Stuart' +p133984 +sg25273 +S'oil on canvas' +p133985 +sg25275 +S'1782' +p133986 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000247.jpg' +p133987 +sg25267 +S' In 1775, Gilbert Stuart set sail for London where Benjamin West welcomed the\ndestitute young man into his home. \n The unorthodox motif of skating -- indeed, any presentation of vigorous movement at\nall -- had absolutely no precedent in Britain\'s "Grand Manner" tradition of life-size\nsociety portraiture. The painter recalled that when William Grant, from Congalton\nnear Edinburgh, arrived to have his picture painted, the Scottish sitter remarked\nthat, "on account of the excessive coldness of the weather . . . the day was better\nsuited for skating than sitting for one\'s portrait." Thus artist and sitter went\noff to skate on the Serpentine River in Hyde Park. When he returned to West\'s studio\nwith Grant, Stuart conceived the idea of portraying his subject on ice skates in\na winter landscape, with the twin towers of Westminster Abbey far in the distance.\n In this innovative design, Grant glides effortlessly forward with arms crossed over\nhis chest in typical eighteenth-century skating form. Except for his folded arms,\nthe figure\'s stance derives from an ancient Roman statue, the \n ' +p133988 +sa(dp133989 +g25268 +S'A Monstrance Held by Two Angels' +p133990 +sg25270 +S'German 15th Century' +p133991 +sg25273 +S'Schreiber, no. 1940' +p133992 +sg25275 +S'\nwoodcut, hand-colored in green, brown, rose, and olive' +p133993 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a595.jpg' +p133994 +sg25267 +g27 +sa(dp133995 +g25273 +S'oil on canvas' +p133996 +sg25267 +g27 +sg25275 +S'1950' +p133997 +sg25268 +S'Fred M. Vinson' +p133998 +sg25270 +S'Thomas E. Stephens' +p133999 +sa(dp134000 +g25268 +S'Landscape with a Boy Fishing' +p134001 +sg25270 +S'Domenico Campagnola' +p134002 +sg25273 +S'pen and brown ink on laid paper' +p134003 +sg25275 +S'c. 1520' +p134004 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a000596a.jpg' +p134005 +sg25267 +g27 +sa(dp134006 +g25268 +S'The Death of the Virgin' +p134007 +sg25270 +S'Netherlandish 14th Century' +p134008 +sg25273 +S'overall: 29.1 x 40 cm (11 7/16 x 15 3/4 in.)' +p134009 +sg25275 +S'\nsilverpoint on blue-green prepared paper' +p134010 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037c8.jpg' +p134011 +sg25267 +g27 +sa(dp134012 +g25268 +S'Saint George and the Dragon' +p134013 +sg25270 +S'Hugo van der Goes' +p134014 +sg25273 +S', unknown date' +p134015 +sg25275 +S'\n' +p134016 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000700e.jpg' +p134017 +sg25267 +g27 +sa(dp134018 +g25268 +S'Landscape with a Castle' +p134019 +sg25270 +S'German 16th Century' +p134020 +sg25273 +S'overall: 15.5 x 22.1 cm (6 1/8 x 8 11/16 in.)' +p134021 +sg25275 +S'\npen and black ink with white heightening on blue prepared paper' +p134022 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00025/a0002542.jpg' +p134023 +sg25267 +g27 +sa(dp134024 +g25268 +S'Landscape with Men Fishing' +p134025 +sg25270 +S'German 16th Century' +p134026 +sg25273 +S'overall (approximate): 14.6 x 22.6 cm (5 3/4 x 8 7/8 in.)' +p134027 +sg25275 +S'\npen and black ink with white heightening on blue prepared paper' +p134028 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a000794a.jpg' +p134029 +sg25267 +g27 +sa(dp134030 +g25268 +S'The Annunciation to Joachim' +p134031 +sg25270 +S'Wolf Huber' +p134032 +sg25273 +S'pen and brown ink on laid paper' +p134033 +sg25275 +S'1514' +p134034 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00025/a0002557.jpg' +p134035 +sg25267 +g27 +sa(dp134036 +g25268 +S'The Rapids of the Danube near Grein' +p134037 +sg25270 +S'Wolf Huber' +p134038 +sg25273 +S'pen with black and gray ink' +p134039 +sg25275 +S'1531' +p134040 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a000795e.jpg' +p134041 +sg25267 +g27 +sa(dp134042 +g25268 +S'The Baptism of Christ' +p134043 +sg25270 +S'Jacopo Palma il Giovane' +p134044 +sg25273 +S'pen and brown ink with brown wash (heightened with white?) on brown washed laid paper' +p134045 +sg25275 +S'unknown date\n' +p134046 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00075/a0007505.jpg' +p134047 +sg25267 +g27 +sa(dp134048 +g25268 +S'Sketch for a Baptism of Christ' +p134049 +sg25270 +S'Jacopo Palma il Giovane' +p134050 +sg25273 +S'pen and brown ink with brown wash (heightened with white?) on brown washed laid paper' +p134051 +sg25275 +S'unknown date\n' +p134052 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00075/a0007507.jpg' +p134053 +sg25267 +g27 +sa(dp134054 +g25268 +S'Allegory of the Eucharist' +p134055 +sg25270 +S'German 15th Century' +p134056 +sg25273 +S'Schreiber, Vol. IX, no. 1843, State u' +p134057 +sg25275 +S'\nwoodcut in lt. brown, hand-colored in blue, green,orange, and gold' +p134058 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a598.jpg' +p134059 +sg25267 +g27 +sa(dp134060 +g25268 +S'Sketch for a Baptism of Christ' +p134061 +sg25270 +S'Jacopo Palma il Giovane' +p134062 +sg25273 +S'pen and brown ink with brown wash (heightened with white?) on brown washed laid paper' +p134063 +sg25275 +S'unknown date\n' +p134064 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00075/a000750a.jpg' +p134065 +sg25267 +g27 +sa(dp134066 +g25268 +S'Apollo and Daphne' +p134067 +sg25270 +S'Artist Information (' +p134068 +sg25273 +S'(designer)' +p134069 +sg25275 +S'\n' +p134070 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a0006741.jpg' +p134071 +sg25267 +g27 +sa(dp134072 +g25268 +S'Madame Dietz-Monnin' +p134073 +sg25270 +S'Edgar Degas' +p134074 +sg25273 +S'pastel on paper' +p134075 +sg25275 +S'1879' +p134076 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a0006742.jpg' +p134077 +sg25267 +g27 +sa(dp134078 +g25268 +S'Marie Leszczynska of Poland, Queen of France' +p134079 +sg25270 +S'Artist Information (' +p134080 +sg25273 +S'(artist after)' +p134081 +sg25275 +S'\n' +p134082 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096b0.jpg' +p134083 +sg25267 +g27 +sa(dp134084 +g25268 +S'Mary, Queen of Scots' +p134085 +sg25270 +S'Artist Information (' +p134086 +sg25273 +S'(artist after)' +p134087 +sg25275 +S'\n' +p134088 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbc7.jpg' +p134089 +sg25267 +g27 +sa(dp134090 +g25268 +S'Phillip II of Spain' +p134091 +sg25270 +S'Hieronymus Wierix' +p134092 +sg25273 +S'engraving' +p134093 +sg25275 +S'possibly 1585' +p134094 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d019.jpg' +p134095 +sg25267 +g27 +sa(dp134096 +g25268 +S'Peter the Great of Russia' +p134097 +sg25270 +S'Artist Information (' +p134098 +sg25273 +S'(artist after)' +p134099 +sg25275 +S'\n' +p134100 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009ac4.jpg' +p134101 +sg25267 +g27 +sa(dp134102 +g25268 +S'John the Fearless, Duke of Burgundy' +p134103 +sg25270 +S'Artist Information (' +p134104 +sg25273 +S'(artist after)' +p134105 +sg25275 +S'\n' +p134106 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d57c.jpg' +p134107 +sg25267 +g27 +sa(dp134108 +g25268 +S'Maria Anna of Spain' +p134109 +sg25270 +S'Artist Information (' +p134110 +sg25273 +S'(artist after)' +p134111 +sg25275 +S'\n' +p134112 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d526.jpg' +p134113 +sg25267 +g27 +sa(dp134114 +g25268 +S'Maria of Burgundy, Empress and Wife of Maximilian I' +p134115 +sg25270 +S'Artist Information (' +p134116 +sg25273 +S'(artist after)' +p134117 +sg25275 +S'\n' +p134118 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d57a.jpg' +p134119 +sg25267 +g27 +sa(dp134120 +g25268 +S'Purgatory' +p134121 +sg25270 +S'German 15th Century' +p134122 +sg25273 +S'Schreiber, no. 1834, State h' +p134123 +sg25275 +S'\nwoodcut' +p134124 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a59c.jpg' +p134125 +sg25267 +g27 +sa(dp134126 +g25268 +S'Marie Therese of Spain, Dauphine of France' +p134127 +sg25270 +S'Artist Information (' +p134128 +sg25273 +S'(artist after)' +p134129 +sg25275 +S'\n' +p134130 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a00097eb.jpg' +p134131 +sg25267 +g27 +sa(dp134132 +g25268 +S'Mary I Stuart' +p134133 +sg25270 +S'Artist Information (' +p134134 +sg25273 +S'(artist after)' +p134135 +sg25275 +S'\n' +p134136 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d628.jpg' +p134137 +sg25267 +g27 +sa(dp134138 +g25268 +S'King George II' +p134139 +sg25270 +S'Pieter Stevens van Gunst' +p134140 +sg25273 +S'engraving' +p134141 +sg25275 +S'unknown date\n' +p134142 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d686.jpg' +p134143 +sg25267 +g27 +sa(dp134144 +g25268 +S'Oliver Cromwell' +p134145 +sg25270 +S'Artist Information (' +p134146 +sg25273 +S'(artist after)' +p134147 +sg25275 +S'\n' +p134148 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbc9.jpg' +p134149 +sg25267 +g27 +sa(dp134150 +g25273 +S'(artist after)' +p134151 +sg25267 +g27 +sg25275 +S'\n' +p134152 +sg25268 +S'Henry VII and the Family of Henry VIII in Whitehall Palace' +p134153 +sg25270 +S'Artist Information (' +p134154 +sa(dp134155 +g25268 +S'Lady Jane Grey' +p134156 +sg25270 +S'George Vertue' +p134157 +sg25273 +S'engraving' +p134158 +sg25275 +S'1748' +p134159 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007db5.jpg' +p134160 +sg25267 +g27 +sa(dp134161 +g25273 +S'engraving' +p134162 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134163 +sg25268 +S'Charles I of England and the Duke of Hamilton' +p134164 +sg25270 +S'Sir Robert Strange' +p134165 +sa(dp134166 +g25268 +S'Augustus Stellingwerf, First Lord Admiral of Friesland' +p134167 +sg25270 +S'Artist Information (' +p134168 +sg25273 +S'(artist after)' +p134169 +sg25275 +S'\n' +p134170 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5f1.jpg' +p134171 +sg25267 +g27 +sa(dp134172 +g25268 +S'The Bathers' +p134173 +sg25270 +S'Paul Gauguin' +p134174 +sg25273 +S'oil on canvas' +p134175 +sg25275 +S'1897' +p134176 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000639.jpg' +p134177 +sg25267 +S"Like \n Gauguin had always been preoccupied with the role of color, calling it a "profound and mysterious language, a language of the dream." He described its effects as akin to music and its relationships to musical harmonies. The gentle tones here—the soft mat of pinks that carpets the foreground, the swirls of lavender water—seem to be scented with the sweet perfumes of paradise. This is one of the most sumptuous of all Gauguin's paintings. \n " +p134178 +sa(dp134179 +g25268 +S'Oarsmen at Chatou' +p134180 +sg25270 +S'Auguste Renoir' +p134181 +sg25273 +S'oil on canvas' +p134182 +sg25275 +S'1879' +p134183 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000071f.jpg' +p134184 +sg25267 +S'Located on the Seine approximately nine\r\nmiles west of Paris, Chatou was a site popular\r\nwith Parisian day-trippers. Its accessibility\r\nto the capital and its proximity to the\r\nwater made it ideal for a variety of leisure\r\nactivities, including swimming, promenading,\r\nand, of course, boating. Among its\r\nnotable attractions was the Maison Fournaise,\r\none of the many suburban taverns\r\nand restaurants that had sprung up in the\r\nnineteenth century to cater to the needs\r\nof the growing throng of weekend visitors.\r\nA favorite meeting place of boating parties,\r\nthe Maison Fournaise held a particular\r\nappeal for Renoir, who became a friend of\r\nthe Fournaise family in 1875. In the years\r\nthat followed, he would paint a number of\r\nworks in and around that locale; nine of\r\nhis figure paintings and seven of his landscapes\r\nhave been associated with Chatou,\r\nincluding what is perhaps the artist\xe2\x80\x99s most\r\nfamous painting, \n Oarsmen at Chatou\n "The chic thing to do on Sundays,"\r\nRenoir later reminisced, "was to bring\r\npretty girls rowing there. . . . It was there\r\nthat I found models who were willing, if\r\nfor an instant, to lend me their youth and grace."\n With its celebration of leisure culture,\r\nits lush, vibrant color, and its flickering\r\nbrushwork, \n (Text by Kimberly Jones, \n Notes\n \n \n \n ' +p134185 +sa(dp134186 +g25268 +S'The Cross' +p134187 +sg25270 +S'German 15th Century' +p134188 +sg25273 +S'Schreiber, no. 1825, State a' +p134189 +sg25275 +S'\nwoodcut, hand-colored in red, pink, and yellow' +p134190 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a597.jpg' +p134191 +sg25267 +g27 +sa(dp134192 +g25268 +S'Mending the Harness' +p134193 +sg25270 +S'Albert Pinkham Ryder' +p134194 +sg25273 +S'oil on canvas' +p134195 +sg25275 +S'mid to late 1870s' +p134196 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001fd.jpg' +p134197 +sg25267 +g27 +sa(dp134198 +g25268 +S'Miss Julia Marlowe' +p134199 +sg25270 +S'Irving R. Wiles' +p134200 +sg25273 +S'oil on canvas' +p134201 +sg25275 +S'1901' +p134202 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002a2.jpg' +p134203 +sg25267 +g27 +sa(dp134204 +g25268 +S'A Graduate of Merton College, Oxford' +p134205 +sg25270 +S'George Knapton' +p134206 +sg25273 +S', c. 1754/1755' +p134207 +sg25275 +S'\n' +p134208 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000052f.jpg' +p134209 +sg25267 +S"Merton at Oxford University is among the oldest colleges in the \r\n English-speaking world. In 1264-1274, the chancellor of England,\r\n Walter de \r\n Merton, endowed it as a secular institution patterned after higher \r\n education in religious orders. This painting's background depicts\r\n Merton \r\n College, including its chapel tower, as seen from Christ Church\r\n Meadow; \r\n these thirteenth- to fifteenth-century buildings still stand.\r\n Details that \r\n show changes to the architecture date the picture to around\r\n 1754/1755.\n The unidentified youth wears the black gown of an undergraduate,\r\n a robe \r\n without a hood. He holds a black mortarboard and wears a simple\r\n white \r\n cravat. (Today, Oxford’s male students wear white bow ties.)\r\n Underneath \r\n this plain gown, though, he sports a satin coat and a waistcoat\r\n with \r\n ostentatious embroidery.\n The absence of sleeves on his academic robe marks this\r\n aristocrat as a \r\n “commoner,” meaning a student who paid tuition. A gown with short\r\n sleeves \r\n indicates a “scholar,” or someone who required a financial\r\n grant.\n The painter George Knapton, son of a prosperous London\r\n bookseller, spent \r\n seven years studying in Italy. A major artist in pastel chalks,\r\n Knapton \r\n capped his career as curator of the British royal picture \r\n collection.\n " +p134210 +sa(dp134211 +g25268 +S'Right and Left' +p134212 +sg25270 +S'Winslow Homer' +p134213 +sg25273 +S'oil on canvas' +p134214 +sg25275 +S'1909' +p134215 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000103.jpg' +p134216 +sg25267 +S"Right and Left\n We witness the scene from the ducks' elevated vantage point, a precarious perspective that encourages empathy with the threatened creatures. By underscoring the fleeting nature of these birds' existence, Homer reminds viewers of the fragility of their own.\n " +p134217 +sa(dp134218 +g25268 +S'Black-Footed Ferret' +p134219 +sg25270 +S'John Woodhouse Audubon' +p134220 +sg25273 +S'oil on canvas' +p134221 +sg25275 +S'1840/1846' +p134222 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000006.jpg' +p134223 +sg25267 +g27 +sa(dp134224 +g25268 +S'A Young Bull' +p134225 +sg25270 +S'John Woodhouse Audubon' +p134226 +sg25273 +S', c. 1849' +p134227 +sg25275 +S'\n' +p134228 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000007.jpg' +p134229 +sg25267 +g27 +sa(dp134230 +g25268 +S'Farmyard Fowls' +p134231 +sg25270 +S'John James Audubon' +p134232 +sg25273 +S'oil on canvas' +p134233 +sg25275 +S'c. 1827' +p134234 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000005.jpg' +p134235 +sg25267 +g27 +sa(dp134236 +g25268 +S'Long-Tailed Weasel' +p134237 +sg25270 +S'Artist Information (' +p134238 +sg25273 +S'American, 1785 - 1851' +p134239 +sg25275 +S'(related artist)' +p134240 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000004.jpg' +p134241 +sg25267 +g27 +sa(dp134242 +g25268 +S'Sharp-Tailed Finch' +p134243 +sg25270 +S'Artist Information (' +p134244 +sg25273 +S'(artist after)' +p134245 +sg25275 +S'\n' +p134246 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000052c.jpg' +p134247 +sg25267 +g27 +sa(dp134248 +g25268 +S'Black-Backed Three-Toed Woodpecker' +p134249 +sg25270 +S'Artist Information (' +p134250 +sg25273 +S'(artist after)' +p134251 +sg25275 +S'\n' +p134252 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000052a.jpg' +p134253 +sg25267 +g27 +sa(dp134254 +g25268 +S'The Adoration of the Magi' +p134255 +sg25270 +S'German 15th Century' +p134256 +sg25273 +S'Schreiber, no. 2210, State d' +p134257 +sg25275 +S'\nmetalcut, hand-colored in red, yellow, and green' +p134258 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a475.jpg' +p134259 +sg25267 +g27 +sa(dp134260 +g25268 +S'Orchard Oriole' +p134261 +sg25270 +S'Artist Information (' +p134262 +sg25273 +S'(artist after)' +p134263 +sg25275 +S'\n' +p134264 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000052b.jpg' +p134265 +sg25267 +g27 +sa(dp134266 +g25268 +S'Yellow Warbler' +p134267 +sg25270 +S'Artist Information (' +p134268 +sg25273 +S'(artist after)' +p134269 +sg25275 +S'\n' +p134270 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000529.jpg' +p134271 +sg25267 +g27 +sa(dp134272 +g25268 +S'Long-Tailed Red Fox' +p134273 +sg25270 +S'John Woodhouse Audubon' +p134274 +sg25273 +S'oil on canvas' +p134275 +sg25275 +S'1848/1854' +p134276 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000008.jpg' +p134277 +sg25267 +g27 +sa(dp134278 +g25268 +S'Arctic Hare' +p134279 +sg25270 +S'John James Audubon' +p134280 +sg25273 +S'pen and black ink and graphite with watercolor and oil paint on paper' +p134281 +sg25275 +S'c. 1841' +p134282 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a00008a4.jpg' +p134283 +sg25267 +g27 +sa(dp134284 +g25273 +S'(artist after)' +p134285 +sg25267 +g27 +sg25275 +S'\n' +p134286 +sg25268 +S'Common American Wild Cat' +p134287 +sg25270 +S'Artist Information (' +p134288 +sa(dp134289 +g25273 +S'(artist after)' +p134290 +sg25267 +g27 +sg25275 +S'\n' +p134291 +sg25268 +S'Black Rat' +p134292 +sg25270 +S'Artist Information (' +p134293 +sa(dp134294 +g25273 +S'(artist after)' +p134295 +sg25267 +g27 +sg25275 +S'\n' +p134296 +sg25268 +S'The Jaguar' +p134297 +sg25270 +S'Artist Information (' +p134298 +sa(dp134299 +g25273 +S'lithograph in black' +p134300 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134301 +sg25268 +S'Jack Rabbits' +p134302 +sg25270 +S'John Woodhouse Audubon' +p134303 +sa(dp134304 +g25273 +S'(artist after)' +p134305 +sg25267 +g27 +sg25275 +S'\n' +p134306 +sg25268 +S'The Cougar' +p134307 +sg25270 +S'Artist Information (' +p134308 +sa(dp134309 +g25273 +S'(artist after)' +p134310 +sg25267 +g27 +sg25275 +S'\n' +p134311 +sg25268 +S'Collies Squirrel' +p134312 +sg25270 +S'Artist Information (' +p134313 +sa(dp134314 +g25268 +S'The Nativity' +p134315 +sg25270 +S'Artist Information (' +p134316 +sg25273 +S'German, active c. 1460/1480' +p134317 +sg25275 +S'(related artist)' +p134318 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a474.jpg' +p134319 +sg25267 +g27 +sa(dp134320 +g25273 +S'(artist after)' +p134321 +sg25267 +g27 +sg25275 +S'\n' +p134322 +sg25268 +S'Caribou or American Rein-Deer' +p134323 +sg25270 +S'Artist Information (' +p134324 +sa(dp134325 +g25273 +S'(artist after)' +p134326 +sg25267 +g27 +sg25275 +S'\n' +p134327 +sg25268 +S'Cinnamon Bear' +p134328 +sg25270 +S'Artist Information (' +p134329 +sa(dp134330 +g25273 +S'(artist after)' +p134331 +sg25267 +g27 +sg25275 +S'\n' +p134332 +sg25268 +S'Grizzly Bear' +p134333 +sg25270 +S'Artist Information (' +p134334 +sa(dp134335 +g25273 +S'(artist after)' +p134336 +sg25267 +g27 +sg25275 +S'\n' +p134337 +sg25268 +S'Hare-Indian Dog' +p134338 +sg25270 +S'Artist Information (' +p134339 +sa(dp134340 +g25273 +S'(artist after)' +p134341 +sg25267 +g27 +sg25275 +S'\n' +p134342 +sg25268 +S'Common or Virginian Deer' +p134343 +sg25270 +S'Artist Information (' +p134344 +sa(dp134345 +g25273 +S'(artist after)' +p134346 +sg25267 +g27 +sg25275 +S'\n' +p134347 +sg25268 +S'The Camas Rat' +p134348 +sg25270 +S'Artist Information (' +p134349 +sa(dp134350 +g25273 +S'(artist after)' +p134351 +sg25267 +g27 +sg25275 +S'\n' +p134352 +sg25268 +S"Townsend's Shrew Mole" +p134353 +sg25270 +S'Artist Information (' +p134354 +sa(dp134355 +g25273 +S'(artist after)' +p134356 +sg25267 +g27 +sg25275 +S'\n' +p134357 +sg25268 +S'Tawny Weasel' +p134358 +sg25270 +S'Artist Information (' +p134359 +sa(dp134360 +g25273 +S'lithograph' +p134361 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134362 +sg25268 +S'Puffin' +p134363 +sg25270 +S'John James Audubon' +p134364 +sa(dp134365 +g25273 +S'lithograph in black' +p134366 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134367 +sg25268 +S'Seaside Finch' +p134368 +sg25270 +S'John James Audubon' +p134369 +sa(dp134370 +g25268 +S'The Flagellation' +p134371 +sg25270 +S'German 15th Century' +p134372 +sg25273 +S'Schreiber, no. 2285' +p134373 +sg25275 +S'\nmetalcut, hand-colored in red and yellow' +p134374 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a473.jpg' +p134375 +sg25267 +g27 +sa(dp134376 +g25273 +S'lithograph in black' +p134377 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134378 +sg25268 +S'Towhe Bunting' +p134379 +sg25270 +S'John James Audubon' +p134380 +sa(dp134381 +g25273 +S'lithograph in black' +p134382 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134383 +sg25268 +S'Sandwich Tern' +p134384 +sg25270 +S'John James Audubon' +p134385 +sa(dp134386 +g25273 +S', c. 1410' +p134387 +sg25267 +g27 +sg25275 +S'\n' +p134388 +sg25268 +S'Death of the Virgin' +p134389 +sg25270 +S'Joshua Master' +p134390 +sa(dp134391 +g25268 +S'Doubting Thomas' +p134392 +sg25270 +S'German 15th Century' +p134393 +sg25273 +S'Overall: 6.8 x 5.5 cm (2 11/16 x 2 3/16 in.)\r\noverall (external frame dimensions): 39.4 x 31.8 cm (15 1/2 x 12 1/2 in.)' +p134394 +sg25275 +S'\nhand-colored woodcut' +p134395 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005627.jpg' +p134396 +sg25267 +g27 +sa(dp134397 +g25273 +S'miniature on vellum' +p134398 +sg25267 +g27 +sg25275 +S'1250/1275' +p134399 +sg25268 +S'The Three Holy Women at the Tomb' +p134400 +sg25270 +S'First Master of the Cortona Antiphonaries' +p134401 +sa(dp134402 +g25273 +S'overall: 19.7 x 12.2 cm (7 3/4 x 4 13/16 in.)' +p134403 +sg25267 +g27 +sg25275 +S'\nminiature on vellum' +p134404 +sg25268 +S'The Nativity with Saint Bridget of Sweden' +p134405 +sg25270 +S'Italian 14th Century' +p134406 +sa(dp134407 +g25268 +S'The Conversion of Saint Paul' +p134408 +sg25270 +S'Hans Baldung Grien' +p134409 +sg25273 +S'woodcut' +p134410 +sg25275 +S'1508' +p134411 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7e6.jpg' +p134412 +sg25267 +g27 +sa(dp134413 +g25268 +S'High-Class' +p134414 +sg25270 +S'Ernst Barlach' +p134415 +sg25273 +S'pen and ink over graphite' +p134416 +sg25275 +S'1906' +p134417 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a000793a.jpg' +p134418 +sg25267 +g27 +sa(dp134419 +g25273 +S'lithograph' +p134420 +sg25267 +g27 +sg25275 +S'1948' +p134421 +sg25268 +S'"...And So..."' +p134422 +sg25270 +S'Alfred Bendiner' +p134423 +sa(dp134424 +g25268 +S'Two Galleys behind an Armed Three-Master with Phaethon and Jupiter in the Sky' +p134425 +sg25270 +S'Artist Information (' +p134426 +sg25273 +S'(artist after)' +p134427 +sg25275 +S'\n' +p134428 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ceec.jpg' +p134429 +sg25267 +g27 +sa(dp134430 +g25268 +S'Portrait of a Gentleman' +p134431 +sg25270 +S'Bartolomeo Veneto' +p134432 +sg25273 +S'oil on panel transferred to canvas' +p134433 +sg25275 +S'c. 1520' +p134434 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007f5.jpg' +p134435 +sg25267 +g27 +sa(dp134436 +g25268 +S'Saint Barbara' +p134437 +sg25270 +S'Artist Information (' +p134438 +sg25273 +S'German, active c. 1460/1480' +p134439 +sg25275 +S'(related artist)' +p134440 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4ed.jpg' +p134441 +sg25267 +g27 +sa(dp134442 +g25268 +S'Armed Four-Master Sailing towards a Port' +p134443 +sg25270 +S'Artist Information (' +p134444 +sg25273 +S'(artist after)' +p134445 +sg25275 +S'\n' +p134446 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cee1.jpg' +p134447 +sg25267 +g27 +sa(dp134448 +g25268 +S'Armed Three-Master Anchored near a City' +p134449 +sg25270 +S'Artist Information (' +p134450 +sg25273 +S'(artist after)' +p134451 +sg25275 +S'\n' +p134452 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cee7.jpg' +p134453 +sg25267 +g27 +sa(dp134454 +g25268 +S'Four-Master (Left) and Two Three-Masters Anchored near a Fortified Island with a Lighthouse' +p134455 +sg25270 +S'Artist Information (' +p134456 +sg25273 +S'(artist after)' +p134457 +sg25275 +S'\n' +p134458 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cee9.jpg' +p134459 +sg25267 +g27 +sa(dp134460 +g25268 +S'Conrad Celtis' +p134461 +sg25270 +S'Hans Burgkmair I' +p134462 +sg25273 +S'woodcut' +p134463 +sg25275 +S'1507' +p134464 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8d5.jpg' +p134465 +sg25267 +g27 +sa(dp134466 +g25268 +S'The Imperial Eagle' +p134467 +sg25270 +S'Hans Burgkmair I' +p134468 +sg25273 +S'woodcut' +p134469 +sg25275 +S'1507' +p134470 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b09c.jpg' +p134471 +sg25267 +g27 +sa(dp134472 +g25273 +S'etching' +p134473 +sg25267 +g27 +sg25275 +S'1949' +p134474 +sg25268 +S'Winter in Ile-de-France' +p134475 +sg25270 +S'Michel Ciry' +p134476 +sa(dp134477 +g25273 +S'engraving and etching' +p134478 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134479 +sg25268 +S'Moulin dans la lande Bretonne' +p134480 +sg25270 +S'Gury' +p134481 +sa(dp134482 +g25268 +S'Self-Portrait (Selbstbildnis)' +p134483 +sg25270 +S'Lovis Corinth' +p134484 +sg25273 +S'lithograph' +p134485 +sg25275 +S'1920' +p134486 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c50f.jpg' +p134487 +sg25267 +g27 +sa(dp134488 +g25268 +S'Two Figures' +p134489 +sg25270 +S'Lovis Corinth' +p134490 +sg25273 +S'graphite on laid paper' +p134491 +sg25275 +S'unknown date\n' +p134492 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a000792f.jpg' +p134493 +sg25267 +g27 +sa(dp134494 +g25268 +S'Joseph Schwarz' +p134495 +sg25270 +S'Lovis Corinth' +p134496 +sg25273 +S'lithograph' +p134497 +sg25275 +S'1916' +p134498 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b663.jpg' +p134499 +sg25267 +g27 +sa(dp134500 +g25268 +S'Saint Catherine' +p134501 +sg25270 +S'Artist Information (' +p134502 +sg25273 +S'German, active c. 1475' +p134503 +sg25275 +S'(related artist)' +p134504 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a51b.jpg' +p134505 +sg25267 +g27 +sa(dp134506 +g25268 +S'Horse and Rider (Reiter)' +p134507 +sg25270 +S'Lovis Corinth' +p134508 +sg25273 +S'drypoint' +p134509 +sg25275 +S'1925' +p134510 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b6ab.jpg' +p134511 +sg25267 +g27 +sa(dp134512 +g25268 +S'Fortitude' +p134513 +sg25270 +S'Marco Dente' +p134514 +sg25273 +S'engraving' +p134515 +sg25275 +S'unknown date\n' +p134516 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbad.jpg' +p134517 +sg25267 +g27 +sa(dp134518 +g25268 +S'The Teacher, the Clergyman, and Providence' +p134519 +sg25270 +S'Albrecht D\xc3\xbcrer' +p134520 +sg25273 +S'woodcut' +p134521 +sg25275 +S'probably 1526' +p134522 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b16d.jpg' +p134523 +sg25267 +g27 +sa(dp134524 +g25268 +S'Time and a Fox Turning the Wheel of Fortune with People of all Ranks to the Right' +p134525 +sg25270 +S'Albrecht D\xc3\xbcrer' +p134526 +sg25273 +S'woodcut' +p134527 +sg25275 +S'probably 1526' +p134528 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b236.jpg' +p134529 +sg25267 +g27 +sa(dp134530 +g25273 +S'wood engraving' +p134531 +sg25267 +g27 +sg25275 +S'1949' +p134532 +sg25268 +S'Saint Christopher' +p134533 +sg25270 +S'Fritz Eichenberg' +p134534 +sa(dp134535 +g25268 +S'Feste de Diane, Troublee par des Satyres (Feast of Diana Disrupted by Satyrs)' +p134536 +sg25270 +S'Claude Gillot' +p134537 +sg25273 +S'etching and engraving' +p134538 +sg25275 +S'unknown date\n' +p134539 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f81.jpg' +p134540 +sg25267 +g27 +sa(dp134541 +g25268 +S'Feste de Bacchus, celebree par des Satyres et des Bacchantes (Feast of Bacchus Celeb rated by Satyrs and Bacchanales)' +p134542 +sg25270 +S'Claude Gillot' +p134543 +sg25273 +S'etching and engraving' +p134544 +sg25275 +S'unknown date\n' +p134545 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f83.jpg' +p134546 +sg25267 +g27 +sa(dp134547 +g25268 +S'Feste du Dieu Pan, celebree par des Sylvains et des Nymphes (Feast of the God Pan Celebrated by Sylvans and Nymphs)' +p134548 +sg25270 +S'Claude Gillot' +p134549 +sg25273 +S'etching and engraving' +p134550 +sg25275 +S'unknown date\n' +p134551 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f82.jpg' +p134552 +sg25267 +g27 +sa(dp134553 +g25268 +S'La Naissance (Birth)' +p134554 +sg25270 +S'Claude Gillot' +p134555 +sg25273 +S'etching and engraving' +p134556 +sg25275 +S'unknown date\n' +p134557 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f88.jpg' +p134558 +sg25267 +g27 +sa(dp134559 +g25268 +S"L'Education (Education)" +p134560 +sg25270 +S'Claude Gillot' +p134561 +sg25273 +S'etching and engraving' +p134562 +sg25275 +S'unknown date\n' +p134563 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f87.jpg' +p134564 +sg25267 +g27 +sa(dp134565 +g25268 +S'Christ Nailed to the Cross' +p134566 +sg25270 +S'Artist Information (' +p134567 +sg25273 +S'German, active fourth quarter 15th century' +p134568 +sg25275 +S'(artist)' +p134569 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a519.jpg' +p134570 +sg25267 +g27 +sa(dp134571 +g25268 +S'Le Mariage (Marriage)' +p134572 +sg25270 +S'Claude Gillot' +p134573 +sg25273 +S'etching and engraving' +p134574 +sg25275 +S'unknown date\n' +p134575 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f89.jpg' +p134576 +sg25267 +g27 +sa(dp134577 +g25268 +S'Les Obseques (The Funeral Rites)' +p134578 +sg25270 +S'Claude Gillot' +p134579 +sg25273 +S'etching and engraving' +p134580 +sg25275 +S'unknown date\n' +p134581 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f8a.jpg' +p134582 +sg25267 +g27 +sa(dp134583 +g25268 +S'God the Father with His Right Hand Raised in Blessing' +p134584 +sg25270 +S'Girolamo dai Libri' +p134585 +sg25273 +S'leadpoint(?), pen and brown ink and wash, heightened with white on cream-colored prepared(?) paper laid down on wood panel' +p134586 +sg25275 +S'unknown date\n' +p134587 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00033/a00033de.jpg' +p134588 +sg25267 +g27 +sa(dp134589 +g25268 +S'Orphan Man, Standing' +p134590 +sg25270 +S'Vincent van Gogh' +p134591 +sg25273 +S'lithograph' +p134592 +sg25275 +S'1882' +p134593 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4d8.jpg' +p134594 +sg25267 +g27 +sa(dp134595 +g25268 +S'Potato Eaters' +p134596 +sg25270 +S'Vincent van Gogh' +p134597 +sg25273 +S'lithograph in dark brown' +p134598 +sg25275 +S'1885' +p134599 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c0d.jpg' +p134600 +sg25267 +g27 +sa(dp134601 +g25268 +S'Baco (Bacchus)' +p134602 +sg25270 +S'Artist Information (' +p134603 +sg25273 +S'(artist after)' +p134604 +sg25275 +S'\n' +p134605 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000edb1.jpg' +p134606 +sg25267 +g27 +sa(dp134607 +g25268 +S'Baltasar Carlos' +p134608 +sg25270 +S'Artist Information (' +p134609 +sg25273 +S'(artist after)' +p134610 +sg25275 +S'\n' +p134611 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000edaa.jpg' +p134612 +sg25267 +g27 +sa(dp134613 +g25268 +S'The Blind Singer' +p134614 +sg25270 +S'Francisco de Goya' +p134615 +sg25273 +S'etching, aquatint and/or lavis, drypoint and burin' +p134616 +sg25275 +S'1824/1828' +p134617 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed67.jpg' +p134618 +sg25267 +g27 +sa(dp134619 +g25268 +S'Un enano (A Dwarf)' +p134620 +sg25270 +S'Artist Information (' +p134621 +sg25273 +S'(artist after)' +p134622 +sg25275 +S'\n' +p134623 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed69.jpg' +p134624 +sg25267 +g27 +sa(dp134625 +g25268 +S'Fiero monstruo! (Fierce Monster!)' +p134626 +sg25270 +S'Francisco de Goya' +p134627 +sg25273 +S'etching, drypoint and burin [trial proof printed posthumously Calcografia in or after 1870]' +p134628 +sg25275 +S'1810/1820' +p134629 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed5e.jpg' +p134630 +sg25267 +g27 +sa(dp134631 +g25268 +S'Emperor Octavian and the Sibyl' +p134632 +sg25270 +S'Artist Information (' +p134633 +sg25273 +S'German, active c. 1460/1480' +p134634 +sg25275 +S'(related artist)' +p134635 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a476.jpg' +p134636 +sg25267 +g27 +sa(dp134637 +g25268 +S'Gaspar de Guzman, Conde Duque de Olivares' +p134638 +sg25270 +S'Artist Information (' +p134639 +sg25273 +S'(artist after)' +p134640 +sg25275 +S'\n' +p134641 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000edad.jpg' +p134642 +sg25267 +g27 +sa(dp134643 +g25268 +S'Felipe IV' +p134644 +sg25270 +S'Artist Information (' +p134645 +sg25273 +S'(artist after)' +p134646 +sg25275 +S'\n' +p134647 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000edac.jpg' +p134648 +sg25267 +g27 +sa(dp134649 +g25268 +S'La seguridad de un reo no exige tormento (The Custody of a Criminal Does Not Call for Torture' +p134650 +sg25270 +S'Francisco de Goya' +p134651 +sg25273 +S'etching and burin [trial proof printed posthumously before 1859]' +p134652 +sg25275 +S'c. 1810' +p134653 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed54.jpg' +p134654 +sg25267 +g27 +sa(dp134655 +g25268 +S'Si es delinquente qe. muera presto (If He is Guilty, Let Him Die Quickly)' +p134656 +sg25270 +S'Francisco de Goya' +p134657 +sg25273 +S'etching [trial proof printed posthumously before 1859]' +p134658 +sg25275 +S'c. 1810' +p134659 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed55.jpg' +p134660 +sg25267 +g27 +sa(dp134661 +g25268 +S'Disparate femenino (Feminine Folly)' +p134662 +sg25270 +S'Francisco de Goya' +p134663 +sg25273 +S'etching, aquatint and (drypoint?) (trial proof printed posthumously circa 1854-1863]' +p134664 +sg25275 +S'in or after 1816' +p134665 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a0005805.jpg' +p134666 +sg25267 +g27 +sa(dp134667 +g25268 +S'Disparate de miedo (Folly of Fear)' +p134668 +sg25270 +S'Francisco de Goya' +p134669 +sg25273 +S'etching, aquatint and (drypoint?) [trial proof printed posthumously circa 1854-1863]' +p134670 +sg25275 +S'in or after 1816' +p134671 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed9c.jpg' +p134672 +sg25267 +g27 +sa(dp134673 +g25268 +S'Disparate ridiculo (Ridiculous Folly)' +p134674 +sg25270 +S'Francisco de Goya' +p134675 +sg25273 +S'etching, aquatint and drypoint [trial proof printed posthumously circa 1854-1863]' +p134676 +sg25275 +S'in or after 1816' +p134677 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed9d.jpg' +p134678 +sg25267 +g27 +sa(dp134679 +g25268 +S'Bobalicon (Simpleton)' +p134680 +sg25270 +S'Francisco de Goya' +p134681 +sg25273 +S'etching, burnished aquatint, burin and (drypoint?) [trial proof printed posthumously circa 1854-1863]' +p134682 +sg25275 +S'in or after 1816' +p134683 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed9b.jpg' +p134684 +sg25267 +g27 +sa(dp134685 +g25268 +S'Disparate volante (Flying Folly)' +p134686 +sg25270 +S'Francisco de Goya' +p134687 +sg25273 +S'etching and aquatint [trial proof printed posthumoously circa 1854-1863]' +p134688 +sg25275 +S'in or after 1816' +p134689 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed9a.jpg' +p134690 +sg25267 +g27 +sa(dp134691 +g25268 +S'Disparate furioso (Furious Folly)' +p134692 +sg25270 +S'Francisco de Goya' +p134693 +sg25273 +S'etching and burnished aquatint [trial proof printed posthumously circa 1854-1863]' +p134694 +sg25275 +S'in or after 1816' +p134695 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed99.jpg' +p134696 +sg25267 +g27 +sa(dp134697 +g25268 +S'Saint Christopher' +p134698 +sg25270 +S'Artist Information (' +p134699 +sg25273 +S'German, active c. 1460/1480' +p134700 +sg25275 +S'(related artist)' +p134701 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4ef.jpg' +p134702 +sg25267 +g27 +sa(dp134703 +g25268 +S'Disparate desordenado (Disorderly Folly)' +p134704 +sg25270 +S'Francisco de Goya' +p134705 +sg25273 +S'etching, aquatint and drypoint [trial proof printed posthumously circa 1854-1863]' +p134706 +sg25275 +S'in or after 1816' +p134707 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed97.jpg' +p134708 +sg25267 +g27 +sa(dp134709 +g25268 +S'Los ensacados (The Men in Sacks)' +p134710 +sg25270 +S'Francisco de Goya' +p134711 +sg25273 +S'etching and burnished aquatint [trial proof printed posthumously circa 1854-1863]' +p134712 +sg25275 +S'in or after 1816' +p134713 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed9f.jpg' +p134714 +sg25267 +g27 +sa(dp134715 +g25268 +S'Disparate general (General Folly)' +p134716 +sg25270 +S'Francisco de Goya' +p134717 +sg25273 +S'etching and burnished aquatint [trial proof printed posthumously circa 1854-1863]' +p134718 +sg25275 +S'in or after 1816' +p134719 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed95.jpg' +p134720 +sg25267 +g27 +sa(dp134721 +g25268 +S'El caballo raptor (The Horse-Abductor)' +p134722 +sg25270 +S'Francisco de Goya' +p134723 +sg25273 +S'etching, burnished aquatint and drypoint [trial proof printed posthumously circa 1854-1863]' +p134724 +sg25275 +S'in or after 1816' +p134725 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed94.jpg' +p134726 +sg25267 +g27 +sa(dp134727 +g25268 +S'Disparate pobre (Poor Folly)' +p134728 +sg25270 +S'Francisco de Goya' +p134729 +sg25273 +S'etching, burnished aquatint, drypoint and burin [trial proof printed posthumously circa 1854-1863]' +p134730 +sg25275 +S'in or after 1816' +p134731 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a0005806.jpg' +p134732 +sg25267 +g27 +sa(dp134733 +g25268 +S'Disparate allegre (Merry Folly)' +p134734 +sg25270 +S'Francisco de Goya' +p134735 +sg25273 +S'etching, burnished aquatint and drypoint [trial proof printed posthumously circa 1854-1863]' +p134736 +sg25275 +S'in or after 1816' +p134737 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000eda0.jpg' +p134738 +sg25267 +g27 +sa(dp134739 +g25268 +S'Modo de volar (A Way of Flying)' +p134740 +sg25270 +S'Francisco de Goya' +p134741 +sg25273 +S'etching, aquatint and (drypoint?) [trial proof printed posthumously circa 1854-1863]' +p134742 +sg25275 +S'in or after 1816' +p134743 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000eda1.jpg' +p134744 +sg25267 +g27 +sa(dp134745 +g25268 +S'Disparate de Carnabal (Carnival Folly)' +p134746 +sg25270 +S'Francisco de Goya' +p134747 +sg25273 +S'etching and aquatint [trial proof printed posthumosuly circa 1854-1863]' +p134748 +sg25275 +S'in or after 1816' +p134749 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000eda3.jpg' +p134750 +sg25267 +g27 +sa(dp134751 +g25268 +S'Disparate claro (Clear Folly)' +p134752 +sg25270 +S'Francisco de Goya' +p134753 +sg25273 +S'etching, burnished aquatint and lavis [trial proof printed posthumously circa 1854-1863]' +p134754 +sg25275 +S'in or after 1816' +p134755 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000eda4.jpg' +p134756 +sg25267 +g27 +sa(dp134757 +g25268 +S'Sanan cuchilladas mas no malas palabras (Wounds Heal Quicker than Hasty Words)' +p134758 +sg25270 +S'Francisco de Goya' +p134759 +sg25273 +S'etching and burnished aquatint [trial proof printed posthumously circa 1854-1863]' +p134760 +sg25275 +S'in or after 1816' +p134761 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000eda5.jpg' +p134762 +sg25267 +g27 +sa(dp134763 +g25268 +S'Saint Christopher' +p134764 +sg25270 +S'Artist Information (' +p134765 +sg25273 +S'German, active c. 1460/1480' +p134766 +sg25275 +S'(related artist)' +p134767 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a517.jpg' +p134768 +sg25267 +g27 +sa(dp134769 +g25268 +S'La lealtad (Loyalty)' +p134770 +sg25270 +S'Francisco de Goya' +p134771 +sg25273 +S'etching and burnished aquatint [trial proof printed posthumously circa 1854-1863]' +p134772 +sg25275 +S'in or after 1816' +p134773 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000eda6.jpg' +p134774 +sg25267 +g27 +sa(dp134775 +g25268 +S'Dios los cria y ellos se juntan (God Creates Them and They Join Up Together)' +p134776 +sg25270 +S'Francisco de Goya' +p134777 +sg25273 +S'etching, burnished aquatint and burin [trial proof printed posthumously circa 1854-1863]' +p134778 +sg25275 +S'in or after 1816' +p134779 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000eda7.jpg' +p134780 +sg25267 +g27 +sa(dp134781 +g25268 +S'Barbarroxa' +p134782 +sg25270 +S'Artist Information (' +p134783 +sg25273 +S'(artist after)' +p134784 +sg25275 +S'\n' +p134785 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed6a.jpg' +p134786 +sg25267 +g27 +sa(dp134787 +g25268 +S'Esto es lo verdadero (This Is the Truth)' +p134788 +sg25270 +S'Francisco de Goya' +p134789 +sg25273 +S'etching, aquatint, drypoint, burin and burnisher in umber on laid paper [trial proof printed posthumously by Lefort and/or in the Calcografia c.1870)' +p134790 +sg25275 +S'1810/1820' +p134791 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed5f.jpg' +p134792 +sg25267 +g27 +sa(dp134793 +g25268 +S'Untitled' +p134794 +sg25270 +S'Rudolf Grossman' +p134795 +sg25273 +S'etching' +p134796 +sg25275 +S'unknown date\n' +p134797 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5fa.jpg' +p134798 +sg25267 +g27 +sa(dp134799 +g25273 +S'lithograph' +p134800 +sg25267 +g27 +sg25275 +S'1949' +p134801 +sg25268 +S'Storm Clouds, Cape Cod (Sturmwolken uber Cape Cod)' +p134802 +sg25270 +S'George Grosz' +p134803 +sa(dp134804 +g25273 +S'color lithograph' +p134805 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134806 +sg25268 +S'Untitled' +p134807 +sg25270 +S'Bernhard Hasler' +p134808 +sa(dp134809 +g25273 +S'portfolio with twenty-three color lithographs' +p134810 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134811 +sg25268 +S'Mozart-Figaro' +p134812 +sg25270 +S'Bernhard Hasler' +p134813 +sa(dp134814 +g25273 +S'color lithograph' +p134815 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134816 +sg25268 +S'Untitled' +p134817 +sg25270 +S'Bernhard Hasler' +p134818 +sa(dp134819 +g25273 +S'color lithograph' +p134820 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134821 +sg25268 +S'Untitled' +p134822 +sg25270 +S'Bernhard Hasler' +p134823 +sa(dp134824 +g25268 +S'Saint Dorothy' +p134825 +sg25270 +S'Artist Information (' +p134826 +sg25273 +S'German, active c. 1460/1480' +p134827 +sg25275 +S'(related artist)' +p134828 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a518.jpg' +p134829 +sg25267 +g27 +sa(dp134830 +g25273 +S'color lithograph' +p134831 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134832 +sg25268 +S'Untitled' +p134833 +sg25270 +S'Bernhard Hasler' +p134834 +sa(dp134835 +g25273 +S'color lithograph' +p134836 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134837 +sg25268 +S'Untitled' +p134838 +sg25270 +S'Bernhard Hasler' +p134839 +sa(dp134840 +g25273 +S'color lithograph' +p134841 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134842 +sg25268 +S'Untitled' +p134843 +sg25270 +S'Bernhard Hasler' +p134844 +sa(dp134845 +g25273 +S'color lithograph' +p134846 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134847 +sg25268 +S'Untitled' +p134848 +sg25270 +S'Bernhard Hasler' +p134849 +sa(dp134850 +g25273 +S'color lithograph' +p134851 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134852 +sg25268 +S'Untitled' +p134853 +sg25270 +S'Bernhard Hasler' +p134854 +sa(dp134855 +g25273 +S'color lithograph' +p134856 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134857 +sg25268 +S'Untitled' +p134858 +sg25270 +S'Bernhard Hasler' +p134859 +sa(dp134860 +g25273 +S'color lithograph' +p134861 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134862 +sg25268 +S'Untitled' +p134863 +sg25270 +S'Bernhard Hasler' +p134864 +sa(dp134865 +g25273 +S'color lithograph' +p134866 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134867 +sg25268 +S'Untitled' +p134868 +sg25270 +S'Bernhard Hasler' +p134869 +sa(dp134870 +g25273 +S'color lithograph' +p134871 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134872 +sg25268 +S'Untitled' +p134873 +sg25270 +S'Bernhard Hasler' +p134874 +sa(dp134875 +g25273 +S'color lithograph' +p134876 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134877 +sg25268 +S'Untitled' +p134878 +sg25270 +S'Bernhard Hasler' +p134879 +sa(dp134880 +g25268 +S'Saint Dorothy' +p134881 +sg25270 +S'Artist Information (' +p134882 +sg25273 +S'German, active c. 1460/1480' +p134883 +sg25275 +S'(related artist)' +p134884 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4ee.jpg' +p134885 +sg25267 +g27 +sa(dp134886 +g25273 +S'color lithograph' +p134887 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134888 +sg25268 +S'Untitled' +p134889 +sg25270 +S'Bernhard Hasler' +p134890 +sa(dp134891 +g25273 +S'color lithograph' +p134892 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134893 +sg25268 +S'Untitled' +p134894 +sg25270 +S'Bernhard Hasler' +p134895 +sa(dp134896 +g25273 +S'color lithograph' +p134897 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134898 +sg25268 +S'Untitled' +p134899 +sg25270 +S'Bernhard Hasler' +p134900 +sa(dp134901 +g25273 +S'color lithograph' +p134902 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134903 +sg25268 +S'Untitled' +p134904 +sg25270 +S'Bernhard Hasler' +p134905 +sa(dp134906 +g25273 +S'color lithograph' +p134907 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134908 +sg25268 +S'Untitled' +p134909 +sg25270 +S'Bernhard Hasler' +p134910 +sa(dp134911 +g25273 +S'color lithograph' +p134912 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134913 +sg25268 +S'Untitled' +p134914 +sg25270 +S'Bernhard Hasler' +p134915 +sa(dp134916 +g25273 +S'color lithograph' +p134917 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134918 +sg25268 +S'Untitled' +p134919 +sg25270 +S'Bernhard Hasler' +p134920 +sa(dp134921 +g25273 +S'color lithograph' +p134922 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134923 +sg25268 +S'Untitled' +p134924 +sg25270 +S'Bernhard Hasler' +p134925 +sa(dp134926 +g25273 +S'color lithograph' +p134927 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134928 +sg25268 +S'Untitled' +p134929 +sg25270 +S'Bernhard Hasler' +p134930 +sa(dp134931 +g25273 +S'color lithograph' +p134932 +sg25267 +g27 +sg25275 +S'unknown date\n' +p134933 +sg25268 +S'Untitled' +p134934 +sg25270 +S'Bernhard Hasler' +p134935 +sa(dp134936 +g25268 +S'Saint Erasmus' +p134937 +sg25270 +S'German 15th Century' +p134938 +sg25273 +S'Schreiber, Vol. IX, no. 2620, State i' +p134939 +sg25275 +S'\nmetalcut, hand-colored in green, yellow, and red' +p134940 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a51a.jpg' +p134941 +sg25267 +g27 +sa(dp134942 +g25273 +S'color woodcut' +p134943 +sg25267 +g27 +sg25275 +S'1949' +p134944 +sg25268 +S'Shy Veery' +p134945 +sg25270 +S'James Dexter Havens' +p134946 +sa(dp134947 +g25268 +S'Angels Wrestling' +p134948 +sg25270 +S'Stanley William Hayter' +p134949 +sg25273 +S'engraving and soft-ground etching (copper)' +p134950 +sg25275 +S'1950' +p134951 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a000826d.jpg' +p134952 +sg25267 +g27 +sa(dp134953 +g25268 +S'Tropic of Cancer' +p134954 +sg25270 +S'Stanley William Hayter' +p134955 +sg25273 +S'engraving and soft-ground etching (copper) with areas of deep intaglio (printing as white relief) where ink has been wiped clean' +p134956 +sg25275 +S'1949' +p134957 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a0006076.jpg' +p134958 +sg25267 +g27 +sa(dp134959 +g25268 +S'Emperor Charles V' +p134960 +sg25270 +S'Augustin Hirschvogel' +p134961 +sg25273 +S'etching' +p134962 +sg25275 +S'1546' +p134963 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac25.jpg' +p134964 +sg25267 +g27 +sa(dp134965 +g25268 +S'Spring: The Shooting Range' +p134966 +sg25270 +S'Wenceslaus Hollar' +p134967 +sg25273 +S'etching' +p134968 +sg25275 +S'c. 1628/1629' +p134969 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db1f.jpg' +p134970 +sg25267 +g27 +sa(dp134971 +g25268 +S'Autumn: The Wine Market' +p134972 +sg25270 +S'Wenceslaus Hollar' +p134973 +sg25273 +S'etching' +p134974 +sg25275 +S'c. 1628/1629' +p134975 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db21.jpg' +p134976 +sg25267 +g27 +sa(dp134977 +g25268 +S'Winter: The Parade Ground' +p134978 +sg25270 +S'Wenceslaus Hollar' +p134979 +sg25273 +S'etching' +p134980 +sg25275 +S'c. 1628/1629' +p134981 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db22.jpg' +p134982 +sg25267 +g27 +sa(dp134983 +g25268 +S'Under Manhattan Bridge' +p134984 +sg25270 +S'Earl Horter' +p134985 +sg25273 +S'etching' +p134986 +sg25275 +S'unknown date\n' +p134987 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00105/a0010576.jpg' +p134988 +sg25267 +g27 +sa(dp134989 +g25273 +S'woodcut' +p134990 +sg25267 +g27 +sg25275 +S'in or after 1938' +p134991 +sg25268 +S'Women Harvesting (Jeunes filles ramassant dessarments de vigne: Deuxieme planche)' +p134992 +sg25270 +S'Aristide Maillol' +p134993 +sa(dp134994 +g25268 +S'Saint George' +p134995 +sg25270 +S'Artist Information (' +p134996 +sg25273 +S'German, active c. 1460/1480' +p134997 +sg25275 +S'(related artist)' +p134998 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4f0.jpg' +p134999 +sg25267 +g27 +sa(dp135000 +g25273 +S'lithograph' +p135001 +sg25267 +g27 +sg25275 +S'1926' +p135002 +sg25268 +S'Alfred Cortot' +p135003 +sg25270 +S'Henri Matisse' +p135004 +sa(dp135005 +g25273 +S'wood engraving on Basingwerk parchment' +p135006 +sg25267 +g27 +sg25275 +S'1949' +p135007 +sg25268 +S'Bird of Prey' +p135008 +sg25270 +S'Roderick Fletcher Mead' +p135009 +sa(dp135010 +g25268 +S'The Death of the Virgin' +p135011 +sg25270 +S'Artist Information (' +p135012 +sg25273 +S'(artist after)' +p135013 +sg25275 +S'\n' +p135014 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a441.jpg' +p135015 +sg25267 +g27 +sa(dp135016 +g25268 +S'The Falconer and Noble Lady' +p135017 +sg25270 +S'Israhel van Meckenem' +p135018 +sg25273 +S'engraving' +p135019 +sg25275 +S'c. 1495/1503' +p135020 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a41f.jpg' +p135021 +sg25267 +g27 +sa(dp135022 +g25268 +S'The Lute Player and the Singer' +p135023 +sg25270 +S'Israhel van Meckenem' +p135024 +sg25273 +S'engraving' +p135025 +sg25275 +S'c. 1495/1503' +p135026 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a421.jpg' +p135027 +sg25267 +g27 +sa(dp135028 +g25268 +S'Ragotin lie par les parents du fou' +p135029 +sg25270 +S'Jean-Baptiste Oudry' +p135030 +sg25273 +S'black chalk heightened with white chalk on blue laid paper' +p135031 +sg25275 +S'1727' +p135032 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071bb.jpg' +p135033 +sg25267 +g27 +sa(dp135034 +g25268 +S"On trouve le corps mort de l'hote que l'on avait cache" +p135035 +sg25270 +S'Jean-Baptiste Oudry' +p135036 +sg25273 +S'black chalk heightened with white chalk on blue laid paper' +p135037 +sg25275 +S'1727' +p135038 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a00060cb.jpg' +p135039 +sg25267 +g27 +sa(dp135040 +g25268 +S'Ragotin enivr\xc3\xa9 par La Rancune' +p135041 +sg25270 +S'Jean-Baptiste Oudry' +p135042 +sg25273 +S'black and white chalk heightened with white and with touches of brush and black ink on blue laid paper' +p135043 +sg25275 +S'1726/1727' +p135044 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037cb.jpg' +p135045 +sg25267 +g27 +sa(dp135046 +g25268 +S"L'Arrivee de l'Operateur dans l'hotellerie" +p135047 +sg25270 +S'Jean-Baptiste Oudry' +p135048 +sg25273 +S'black chalk heightened with white chalk on blue laid paper' +p135049 +sg25275 +S'1727' +p135050 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a0007295.jpg' +p135051 +sg25267 +g27 +sa(dp135052 +g25268 +S'Ragotin dans le coffre' +p135053 +sg25270 +S'Jean-Baptiste Oudry' +p135054 +sg25273 +S'black chalk heightened with white chalk on blue laid paper' +p135055 +sg25275 +S'1737' +p135056 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071f3.jpg' +p135057 +sg25267 +g27 +sa(dp135058 +g25268 +S'Portrait of a Venetian Gentleman' +p135059 +sg25270 +S'Artist Information (' +p135060 +sg25273 +S'(artist)' +p135061 +sg25275 +S'\n' +p135062 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005cd.jpg' +p135063 +sg25267 +S'The expression of calculating, almost cruel, appraisal—amplified by his closed fist—gives this man an aggressive air, but we do not know his identity. The inscription on the parapet does not help. These letters, \n Like other paintings associated with Giorgione, this one presents difficulties of attribution. Both Titian and \n ' +p135064 +sa(dp135065 +g25268 +S'Saint Gregory' +p135066 +sg25270 +S'Artist Information (' +p135067 +sg25273 +S'German, active c. 1460/1480' +p135068 +sg25275 +S'(related artist)' +p135069 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a515.jpg' +p135070 +sg25267 +g27 +sa(dp135071 +g25268 +S'La Rancune en brancard, abattu dans le bourbier' +p135072 +sg25270 +S'Jean-Baptiste Oudry' +p135073 +sg25273 +S'black chalk heightened with white chalk on blue laid paper' +p135074 +sg25275 +S'1726' +p135075 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a000722b.jpg' +p135076 +sg25267 +g27 +sa(dp135077 +g25268 +S'Peasants Carrying Sticks (Paysannes portant des fagots)' +p135078 +sg25270 +S'Camille Pissarro' +p135079 +sg25273 +S'lithograph (zinc) [trail proof?]' +p135080 +sg25275 +S'1896' +p135081 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dba.jpg' +p135082 +sg25267 +g27 +sa(dp135083 +g25268 +S'Peasants Carrying Sticks (Paysannes portant des fagots)' +p135084 +sg25270 +S'Camille Pissarro' +p135085 +sg25273 +S'lithograph (zinc) on pink Chine colle paper' +p135086 +sg25275 +S'1896' +p135087 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009db8.jpg' +p135088 +sg25267 +g27 +sa(dp135089 +g25273 +S'color monotype' +p135090 +sg25267 +g27 +sg25275 +S'1949' +p135091 +sg25268 +S'Still Life with Cat and Goldfishes' +p135092 +sg25270 +S'Bernard Reder' +p135093 +sa(dp135094 +g25268 +S'Der Tod als Freund' +p135095 +sg25270 +S'Alfred Rethel' +p135096 +sg25273 +S'wood engraving' +p135097 +sg25275 +S'1851' +p135098 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3c3.jpg' +p135099 +sg25267 +g27 +sa(dp135100 +g25268 +S'Der Tod als Erwurger' +p135101 +sg25270 +S'Alfred Rethel' +p135102 +sg25273 +S'wood engraving' +p135103 +sg25275 +S'1851' +p135104 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3c4.jpg' +p135105 +sg25267 +g27 +sa(dp135106 +g25273 +S'wood engraving [restrike printed in 1949 by Max Kahn]' +p135107 +sg25267 +g27 +sg25275 +S'unknown date\n' +p135108 +sg25268 +S'Saint John the Baptist' +p135109 +sg25270 +S'Georges Rouault' +p135110 +sa(dp135111 +g25268 +S'Hercules and Antaeus' +p135112 +sg25270 +S'Gabriel Salmon' +p135113 +sg25273 +S'woodcut' +p135114 +sg25275 +S'unknown date\n' +p135115 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008370.jpg' +p135116 +sg25267 +g27 +sa(dp135117 +g25268 +S'Hercules and the Nemean Lion' +p135118 +sg25270 +S'Gabriel Salmon' +p135119 +sg25273 +S'woodcut' +p135120 +sg25275 +S'unknown date\n' +p135121 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000837b.jpg' +p135122 +sg25267 +g27 +sa(dp135123 +g25268 +S'The Death of Hercules' +p135124 +sg25270 +S'Gabriel Salmon' +p135125 +sg25273 +S'woodcut' +p135126 +sg25275 +S'unknown date\n' +p135127 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008386.jpg' +p135128 +sg25267 +g27 +sa(dp135129 +g25268 +S'Saint Jost' +p135130 +sg25270 +S'Artist Information (' +p135131 +sg25273 +S'German, active c. 1460/1480' +p135132 +sg25275 +S'(related artist)' +p135133 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a514.jpg' +p135134 +sg25267 +g27 +sa(dp135135 +g25268 +S'Hercules Carrying Off the Cattle of Geryon' +p135136 +sg25270 +S'Gabriel Salmon' +p135137 +sg25273 +S'woodcut' +p135138 +sg25275 +S'unknown date\n' +p135139 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008391.jpg' +p135140 +sg25267 +g27 +sa(dp135141 +g25273 +S'color woodcut' +p135142 +sg25267 +g27 +sg25275 +S'1949' +p135143 +sg25268 +S'Christmas Card' +p135144 +sg25270 +S'Louis Schanker' +p135145 +sa(dp135146 +g25273 +S'woodcut' +p135147 +sg25267 +g27 +sg25275 +S'1914' +p135148 +sg25268 +S'Melancholy (Melancholie)' +p135149 +sg25270 +S'Karl Schmidt-Rottluff' +p135150 +sa(dp135151 +g25268 +S'The Griffin' +p135152 +sg25270 +S'Martin Schongauer' +p135153 +sg25273 +S'engraving' +p135154 +sg25275 +S'c. 1480/1490' +p135155 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000fa3.jpg' +p135156 +sg25267 +g27 +sa(dp135157 +g25273 +S'etching' +p135158 +sg25267 +g27 +sg25275 +S'1672' +p135159 +sg25268 +S'Veue du Chasteau de Blois' +p135160 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135161 +sa(dp135162 +g25273 +S'French, 1621 - 1691' +p135163 +sg25267 +g27 +sg25275 +S'(artist)' +p135164 +sg25268 +S'Works by Israel Silvestre and Various Artists' +p135165 +sg25270 +S'Artist Information (' +p135166 +sa(dp135167 +g25273 +S'etching' +p135168 +sg25267 +g27 +sg25275 +S'1676' +p135169 +sg25268 +S'Veue du Chasteau de Chambor, du coste du parc' +p135170 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135171 +sa(dp135172 +g25273 +S'etching' +p135173 +sg25267 +g27 +sg25275 +S'1678' +p135174 +sg25268 +S"Veue du Chasteau de Chambor, du coste de l'entree" +p135175 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135176 +sa(dp135177 +g25273 +S'etching' +p135178 +sg25267 +g27 +sg25275 +S'1670' +p135179 +sg25268 +S'Veue et perspectiue du Colege des 4 nations' +p135180 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135181 +sa(dp135182 +g25273 +S'etching' +p135183 +sg25267 +g27 +sg25275 +S'1667' +p135184 +sg25268 +S'Veue de la cour du cheual blanc de fontaine Belleau' +p135185 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135186 +sa(dp135187 +g25268 +S'Saint Margaret' +p135188 +sg25270 +S'Artist Information (' +p135189 +sg25273 +S'German, active c. 1440/1470' +p135190 +sg25275 +S'(related artist)' +p135191 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a512.jpg' +p135192 +sg25267 +g27 +sa(dp135193 +g25273 +S'etching' +p135194 +sg25267 +g27 +sg25275 +S'1679' +p135195 +sg25268 +S'Veue du Chasteau de Fontainebleau, du coste du Jardin' +p135196 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135197 +sa(dp135198 +g25273 +S'etching' +p135199 +sg25267 +g27 +sg25275 +S'1678' +p135200 +sg25268 +S'Veue du Chasteau de Fontainebleau, du coste du grand canal' +p135201 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135202 +sa(dp135203 +g25273 +S'engraving' +p135204 +sg25267 +g27 +sg25275 +S'1666' +p135205 +sg25268 +S"Veue de l'Estang de Fontainebleau" +p135206 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135207 +sa(dp135208 +g25273 +S'engraving' +p135209 +sg25267 +g27 +sg25275 +S'unknown date\n' +p135210 +sg25268 +S'Veue du chasteau de Fontainebleau, du coste des Jardins' +p135211 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135212 +sa(dp135213 +g25273 +S'engraving' +p135214 +sg25267 +g27 +sg25275 +S'unknown date\n' +p135215 +sg25268 +S'Veue du chasteau de Fontainebleau, du coste du Jardin' +p135216 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135217 +sa(dp135218 +g25273 +S'engraving' +p135219 +sg25267 +g27 +sg25275 +S'1667' +p135220 +sg25268 +S'Plan du Chasteau de St. Germain en Laye' +p135221 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135222 +sa(dp135223 +g25273 +S'engraving' +p135224 +sg25267 +g27 +sg25275 +S'1666' +p135225 +sg25268 +S'Veue du Chasteau neuf de St. Germain en Laye,du coste de la riviere' +p135226 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135227 +sa(dp135228 +g25273 +S'engraving' +p135229 +sg25267 +g27 +sg25275 +S'unknown date\n' +p135230 +sg25268 +S'Veue du Chasteau de Jametz' +p135231 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135232 +sa(dp135233 +g25273 +S'engraving' +p135234 +sg25267 +g27 +sg25275 +S'1673' +p135235 +sg25268 +S'Veue du Chasteau de Marimont' +p135236 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135237 +sa(dp135238 +g25273 +S'engraving' +p135239 +sg25267 +g27 +sg25275 +S'1670' +p135240 +sg25268 +S'Profil de la ville et forteresse du Marsal' +p135241 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135242 +sa(dp135243 +g25268 +S'Saint Sebastian' +p135244 +sg25270 +S'German 15th Century' +p135245 +sg25273 +S'Schreiber, no. 2727, State a' +p135246 +sg25275 +S'\nmetalcut, hand-colored in green, rose, and yellow' +p135247 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a516.jpg' +p135248 +sg25267 +g27 +sa(dp135249 +g25273 +S'engraving' +p135250 +sg25267 +g27 +sg25275 +S'1667' +p135251 +sg25268 +S'Profil de la ville de Metz en Lorraine veue du coste de la porte Mazel' +p135252 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135253 +sa(dp135254 +g25273 +S'engraving' +p135255 +sg25267 +g27 +sg25275 +S'unknown date\n' +p135256 +sg25268 +S'Plan releve du Chasteau, Jardin et Parc de Monceaux' +p135257 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135258 +sa(dp135259 +g25273 +S'engraving' +p135260 +sg25267 +g27 +sg25275 +S'1679' +p135261 +sg25268 +S'Veue du Chasteau de Monceaux' +p135262 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135263 +sa(dp135264 +g25273 +S'engraving' +p135265 +sg25267 +g27 +sg25275 +S'1680' +p135266 +sg25268 +S'Veue du Chasteau de Monceaux du coste du Parc' +p135267 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135268 +sa(dp135269 +g25273 +S'engraving' +p135270 +sg25267 +g27 +sg25275 +S'1669' +p135271 +sg25268 +S'Veue et perspective de Mommdey' +p135272 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135273 +sa(dp135274 +g25273 +S'engraving' +p135275 +sg25267 +g27 +sg25275 +S'unknown date\n' +p135276 +sg25268 +S'Veue de la ville et Chasteau de Sedan' +p135277 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135278 +sa(dp135279 +g25273 +S'engraving' +p135280 +sg25267 +g27 +sg25275 +S'unknown date\n' +p135281 +sg25268 +S'Profil de la ville et citadelle de Stonay' +p135282 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135283 +sa(dp135284 +g25273 +S'engraving' +p135285 +sg25267 +g27 +sg25275 +S'unknown date\n' +p135286 +sg25268 +S'Veue et perspective de la ville et citadelle de Verdun' +p135287 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135288 +sa(dp135289 +g25273 +S'engraving' +p135290 +sg25267 +g27 +sg25275 +S'1668' +p135291 +sg25268 +S'Plan general du Chasteau et petit Parc de Vincennes' +p135292 +sg25270 +S'Isra\xc3\xabl Silvestre' +p135293 +sa(dp135294 +g25273 +S'engraving' +p135295 +sg25267 +g27 +sg25275 +S'1677' +p135296 +sg25268 +S'Plan du Chasteau de Blois' +p135297 +sg25270 +S'Fran\xc3\xa7ois Dorbay II' +p135298 +sa(dp135299 +g25268 +S'Saint Sophia' +p135300 +sg25270 +S'Artist Information (' +p135301 +sg25273 +S'German, active c. 1460/1480' +p135302 +sg25275 +S'(related artist)' +p135303 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a513.jpg' +p135304 +sg25267 +g27 +sa(dp135305 +g25273 +S'engraving' +p135306 +sg25267 +g27 +sg25275 +S'1677' +p135307 +sg25268 +S'Plan du Chasteau de Compiegne' +p135308 +sg25270 +S'Fran\xc3\xa7ois Dorbay II' +p135309 +sa(dp135310 +g25273 +S'engraving' +p135311 +sg25267 +g27 +sg25275 +S'unknown date\n' +p135312 +sg25268 +S'Plan general du Chasteau de Fontainebleau et des environs fait en 1682' +p135313 +sg25270 +S'Fran\xc3\xa7ois Dorbay II' +p135314 +sa(dp135315 +g25273 +S'engraving' +p135316 +sg25267 +g27 +sg25275 +S'unknown date\n' +p135317 +sg25268 +S'Plan du Chasteau de Fontainebleau au Rez de Chaussee fait en 1682' +p135318 +sg25270 +S'Fran\xc3\xa7ois Dorbay II' +p135319 +sa(dp135320 +g25273 +S'engraving' +p135321 +sg25267 +g27 +sg25275 +S'unknown date\n' +p135322 +sg25268 +S'Plan general des Chasteaux de St. Germain en Laye' +p135323 +sg25270 +S'Fran\xc3\xa7ois Dorbay II' +p135324 +sa(dp135325 +g25273 +S'etching and engraving' +p135326 +sg25267 +g27 +sg25275 +S'unknown date\n' +p135327 +sg25268 +S'Plan de la ville de Charleroy' +p135328 +sg25270 +S'Pierre Lepautre' +p135329 +sa(dp135330 +g25273 +S'engraving' +p135331 +sg25267 +g27 +sg25275 +S'unknown date\n' +p135332 +sg25268 +S'Plan et profil de la ville et du chasteau de Namur' +p135333 +sg25270 +S'Pierre Lepautre' +p135334 +sa(dp135335 +g25273 +S'engraving' +p135336 +sg25267 +g27 +sg25275 +S'unknown date\n' +p135337 +sg25268 +S'Plan et profil de la ville et du chasteau de Namur' +p135338 +sg25270 +S'Pierre Lepautre' +p135339 +sa(dp135340 +g25273 +S'engraving' +p135341 +sg25267 +g27 +sg25275 +S'1698' +p135342 +sg25268 +S'Carte particuliere du camp de Coudun pres Compiegne' +p135343 +sg25270 +S'Pierre Lepautre' +p135344 +sa(dp135345 +g25273 +S'engraving' +p135346 +sg25267 +g27 +sg25275 +S'unknown date\n' +p135347 +sg25268 +S'Plan de la ville de Roses' +p135348 +sg25270 +S'Pierre Lepautre' +p135349 +sa(dp135350 +g25273 +S'Rosenwald Collection' +p135351 +sg25267 +g27 +sg25275 +S'\nengraving' +p135352 +sg25268 +S'Plan de la ville de Roses en Catalogue et de ses attaques' +p135353 +sg25270 +S'French 17th Century' +p135354 +sa(dp135355 +g25268 +S'Saint Ursula as Protectress' +p135356 +sg25270 +S'Artist Information (' +p135357 +sg25273 +S'German, active c. 1475' +p135358 +sg25275 +S'(artist)' +p135359 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a511.jpg' +p135360 +sg25267 +g27 +sa(dp135361 +g25273 +S'engraving' +p135362 +sg25267 +g27 +sg25275 +S'1676' +p135363 +sg25268 +S"Plan du Chasteau de Madrid avec la Court et le fosse qui l'environne" +p135364 +sg25270 +S'Jean Marot I' +p135365 +sa(dp135366 +g25273 +S'engraving' +p135367 +sg25267 +g27 +sg25275 +S'1677' +p135368 +sg25268 +S'Elevation du Chasteau de Madrid' +p135369 +sg25270 +S'Jean Marot I' +p135370 +sa(dp135371 +g25273 +S'engraving' +p135372 +sg25267 +g27 +sg25275 +S'1679' +p135373 +sg25268 +S'Plan general du Palais-Royal' +p135374 +sg25270 +S'Simon de La Boissiere' +p135375 +sa(dp135376 +g25273 +S'(artist after)' +p135377 +sg25267 +g27 +sg25275 +S'\n' +p135378 +sg25268 +S'Detail du portail de Vincennes en face de la cour' +p135379 +sg25270 +S'Artist Information (' +p135380 +sa(dp135381 +g25273 +S'engraving' +p135382 +sg25267 +g27 +sg25275 +S'1679' +p135383 +sg25268 +S'Veue du Palais Royal' +p135384 +sg25270 +S'Simon de La Boissiere' +p135385 +sa(dp135386 +g25273 +S'engraving' +p135387 +sg25267 +g27 +sg25275 +S'unknown date\n' +p135388 +sg25268 +S'Veue et perspective du chateau de Vincennes' +p135389 +sg25270 +S'Pierre Brissart' +p135390 +sa(dp135391 +g25273 +S'engraving' +p135392 +sg25267 +g27 +sg25275 +S'1597' +p135393 +sg25268 +S'Portrait de la Pyramide dressee devant la porte du Pallais' +p135394 +sg25270 +S'Jacob de Weert' +p135395 +sa(dp135396 +g25273 +S'engraving' +p135397 +sg25267 +g27 +sg25275 +S'1669' +p135398 +sg25268 +S'Carte particuliere des environs du Port de Brest' +p135399 +sg25270 +S'Robert Cordier' +p135400 +sa(dp135401 +g25273 +S'engraving' +p135402 +sg25267 +g27 +sg25275 +S'1669' +p135403 +sg25268 +S'Carte particuliere des environs du Port de Brest' +p135404 +sg25270 +S'Robert Cordier' +p135405 +sa(dp135406 +g25273 +S'engraving' +p135407 +sg25267 +g27 +sg25275 +S'unknown date\n' +p135408 +sg25268 +S'Plan de la ville et des attaques de Bude en 1686' +p135409 +sg25270 +S'Harmanus van Loon' +p135410 +sa(dp135411 +g25268 +S'Saint Franciscus' +p135412 +sg25270 +S'German 15th Century' +p135413 +sg25273 +S'Schreiber, no. 2843' +p135414 +sg25275 +S'\npaste print' +p135415 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a461.jpg' +p135416 +sg25267 +g27 +sa(dp135417 +g25268 +S'Trabrennen I' +p135418 +sg25270 +S'Max Slevogt' +p135419 +sg25273 +S'lithograph' +p135420 +sg25275 +S'unknown date\n' +p135421 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3d3.jpg' +p135422 +sg25267 +g27 +sa(dp135423 +g25268 +S'Trabrennen' +p135424 +sg25270 +S'Max Slevogt' +p135425 +sg25273 +S'portfolio with thirteen lithographs' +p135426 +sg25275 +S'unknown date\n' +p135427 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3d2.jpg' +p135428 +sg25267 +g27 +sa(dp135429 +g25268 +S'Trabrennen II' +p135430 +sg25270 +S'Max Slevogt' +p135431 +sg25273 +S'lithograph' +p135432 +sg25275 +S'unknown date\n' +p135433 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3d4.jpg' +p135434 +sg25267 +g27 +sa(dp135435 +g25268 +S'Trabrennen III' +p135436 +sg25270 +S'Max Slevogt' +p135437 +sg25273 +S'lithograph' +p135438 +sg25275 +S'unknown date\n' +p135439 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3d5.jpg' +p135440 +sg25267 +g27 +sa(dp135441 +g25268 +S'Trabrennen IV' +p135442 +sg25270 +S'Max Slevogt' +p135443 +sg25273 +S'lithograph' +p135444 +sg25275 +S'unknown date\n' +p135445 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3d6.jpg' +p135446 +sg25267 +g27 +sa(dp135447 +g25268 +S'Trabrennen V' +p135448 +sg25270 +S'Max Slevogt' +p135449 +sg25273 +S'lithograph' +p135450 +sg25275 +S'unknown date\n' +p135451 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3d7.jpg' +p135452 +sg25267 +g27 +sa(dp135453 +g25268 +S'Trabrennen VI' +p135454 +sg25270 +S'Max Slevogt' +p135455 +sg25273 +S'lithograph' +p135456 +sg25275 +S'unknown date\n' +p135457 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3d8.jpg' +p135458 +sg25267 +g27 +sa(dp135459 +g25268 +S'Trabrennen VII' +p135460 +sg25270 +S'Max Slevogt' +p135461 +sg25273 +S'lithograph' +p135462 +sg25275 +S'unknown date\n' +p135463 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3d9.jpg' +p135464 +sg25267 +g27 +sa(dp135465 +g25268 +S'Trabrennen VIII' +p135466 +sg25270 +S'Max Slevogt' +p135467 +sg25273 +S'lithograph' +p135468 +sg25275 +S'unknown date\n' +p135469 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3da.jpg' +p135470 +sg25267 +g27 +sa(dp135471 +g25268 +S'Trabrennen IX' +p135472 +sg25270 +S'Max Slevogt' +p135473 +sg25273 +S'lithograph' +p135474 +sg25275 +S'unknown date\n' +p135475 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3db.jpg' +p135476 +sg25267 +g27 +sa(dp135477 +g25268 +S'Madonna and Child' +p135478 +sg25270 +S'German 15th Century' +p135479 +sg25273 +S'Schreiber, no. 2824, State c' +p135480 +sg25275 +S'\npaste print' +p135481 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a46b.jpg' +p135482 +sg25267 +g27 +sa(dp135483 +g25268 +S'Trabrennen X' +p135484 +sg25270 +S'Max Slevogt' +p135485 +sg25273 +S'lithograph' +p135486 +sg25275 +S'unknown date\n' +p135487 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3dc.jpg' +p135488 +sg25267 +g27 +sa(dp135489 +g25268 +S'Trabrennen XI' +p135490 +sg25270 +S'Max Slevogt' +p135491 +sg25273 +S'lithograph' +p135492 +sg25275 +S'unknown date\n' +p135493 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3dd.jpg' +p135494 +sg25267 +g27 +sa(dp135495 +g25268 +S'Trabrennen XII' +p135496 +sg25270 +S'Max Slevogt' +p135497 +sg25273 +S'lithograph' +p135498 +sg25275 +S'unknown date\n' +p135499 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3de.jpg' +p135500 +sg25267 +g27 +sa(dp135501 +g25268 +S'Trabrennen XIII' +p135502 +sg25270 +S'Max Slevogt' +p135503 +sg25273 +S'lithograph' +p135504 +sg25275 +S'unknown date\n' +p135505 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3df.jpg' +p135506 +sg25267 +g27 +sa(dp135507 +g25268 +S'Saint Augustine' +p135508 +sg25270 +S'Hans Springinklee' +p135509 +sg25273 +S'woodcut' +p135510 +sg25275 +S'unknown date\n' +p135511 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad5c.jpg' +p135512 +sg25267 +g27 +sa(dp135513 +g25273 +S'lithograph in tan and black with watercolor [trial proof]' +p135514 +sg25267 +g27 +sg25275 +S'1948' +p135515 +sg25268 +S'Jeanne in a Seminole Blouse' +p135516 +sg25270 +S'Benton Murdoch Spruance' +p135517 +sa(dp135518 +g25273 +S'4-color lithograph' +p135519 +sg25267 +g27 +sg25275 +S'1949' +p135520 +sg25268 +S'Fallen Angel: Vanity of Disagreement' +p135521 +sg25270 +S'Benton Murdoch Spruance' +p135522 +sa(dp135523 +g25273 +S'lithograph in blue and yellow [trial proof]' +p135524 +sg25267 +g27 +sg25275 +S'1950' +p135525 +sg25268 +S'Lamentation [recto]' +p135526 +sg25270 +S'Benton Murdoch Spruance' +p135527 +sa(dp135528 +g25273 +S'lithograph in black [trial proof]' +p135529 +sg25267 +g27 +sg25275 +S'1950' +p135530 +sg25268 +S'Variation [verso]' +p135531 +sg25270 +S'Benton Murdoch Spruance' +p135532 +sa(dp135533 +g25273 +S'lithograph in yellow, red-brown, and blue [trial proof]' +p135534 +sg25267 +g27 +sg25275 +S'1950' +p135535 +sg25268 +S'Variation [recto]' +p135536 +sg25270 +S'Benton Murdoch Spruance' +p135537 +sa(dp135538 +g25268 +S'Saint George' +p135539 +sg25270 +S'German 15th Century' +p135540 +sg25273 +S'Schreiber, no. 2845, State a' +p135541 +sg25275 +S'\npaste print' +p135542 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a45f.jpg' +p135543 +sg25267 +g27 +sa(dp135544 +g25273 +S'lithograph in red-brown [separation proof]' +p135545 +sg25267 +g27 +sg25275 +S'1950' +p135546 +sg25268 +S'Variation [verso]' +p135547 +sg25270 +S'Benton Murdoch Spruance' +p135548 +sa(dp135549 +g25273 +S'lithograph in black [separation proof]' +p135550 +sg25267 +g27 +sg25275 +S'1950' +p135551 +sg25268 +S'Broken Carousel' +p135552 +sg25270 +S'Benton Murdoch Spruance' +p135553 +sa(dp135554 +g25273 +S'lithograph in black and sienna [trial proof]' +p135555 +sg25267 +g27 +sg25275 +S'1950' +p135556 +sg25268 +S'Broken Carousel' +p135557 +sg25270 +S'Benton Murdoch Spruance' +p135558 +sa(dp135559 +g25273 +S'lithograph in black, sienna and yellow [trial proof]' +p135560 +sg25267 +g27 +sg25275 +S'1950' +p135561 +sg25268 +S'Broken Carousel' +p135562 +sg25270 +S'Benton Murdoch Spruance' +p135563 +sa(dp135564 +g25273 +S'lithograph in black, sienna, yellow and pink [trial proof]' +p135565 +sg25267 +g27 +sg25275 +S'1950' +p135566 +sg25268 +S'Broken Carousel' +p135567 +sg25270 +S'Benton Murdoch Spruance' +p135568 +sa(dp135569 +g25273 +S'lithograph in mauve [separation proof]' +p135570 +sg25267 +g27 +sg25275 +S'1950' +p135571 +sg25268 +S'Judith' +p135572 +sg25270 +S'Benton Murdoch Spruance' +p135573 +sa(dp135574 +g25273 +S'lithograph in green [separation proof]' +p135575 +sg25267 +g27 +sg25275 +S'1950' +p135576 +sg25268 +S'Judith' +p135577 +sg25270 +S'Benton Murdoch Spruance' +p135578 +sa(dp135579 +g25273 +S'lithograph in sienna [separation proof]' +p135580 +sg25267 +g27 +sg25275 +S'1950' +p135581 +sg25268 +S'Judith' +p135582 +sg25270 +S'Benton Murdoch Spruance' +p135583 +sa(dp135584 +g25273 +S'lithograph in gray-rose, green, red-brown, light orange, black [trial proof]' +p135585 +sg25267 +g27 +sg25275 +S'1950' +p135586 +sg25268 +S'Judith' +p135587 +sg25270 +S'Benton Murdoch Spruance' +p135588 +sa(dp135589 +g25273 +S'lithograph in black, green, and tan [trial proof]' +p135590 +sg25267 +g27 +sg25275 +S'1950' +p135591 +sg25268 +S'Judith' +p135592 +sg25270 +S'Benton Murdoch Spruance' +p135593 +sa(dp135594 +g25268 +S'Christ Carrying the Cross' +p135595 +sg25270 +S'German 15th Century' +p135596 +sg25273 +S'Schreiber, no. 2788, State (variant?)' +p135597 +sg25275 +S'\npaste print' +p135598 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a46a.jpg' +p135599 +sg25267 +g27 +sa(dp135600 +g25273 +S'lithograph in black and tan [trial proof]' +p135601 +sg25267 +g27 +sg25275 +S'1950' +p135602 +sg25268 +S'Judith' +p135603 +sg25270 +S'Benton Murdoch Spruance' +p135604 +sa(dp135605 +g25273 +S'lithograph in black [separation proof]' +p135606 +sg25267 +g27 +sg25275 +S'1950' +p135607 +sg25268 +S'Judith' +p135608 +sg25270 +S'Benton Murdoch Spruance' +p135609 +sa(dp135610 +g25273 +S'lithograph in black, yellow and sienna [trial proof]' +p135611 +sg25267 +g27 +sg25275 +S'1950' +p135612 +sg25268 +S'Jacob and the Angel' +p135613 +sg25270 +S'Benton Murdoch Spruance' +p135614 +sa(dp135615 +g25273 +S'lithograph in black and yellow [trial proof]' +p135616 +sg25267 +g27 +sg25275 +S'1950' +p135617 +sg25268 +S'Jacob and the Angel' +p135618 +sg25270 +S'Benton Murdoch Spruance' +p135619 +sa(dp135620 +g25273 +S'lithograph in yellow [separation proof]' +p135621 +sg25267 +g27 +sg25275 +S'1950' +p135622 +sg25268 +S'Jacob and the Angel' +p135623 +sg25270 +S'Benton Murdoch Spruance' +p135624 +sa(dp135625 +g25273 +S'lithograph in blue [separation proof]' +p135626 +sg25267 +g27 +sg25275 +S'1950' +p135627 +sg25268 +S'Jacob and the Angel' +p135628 +sg25270 +S'Benton Murdoch Spruance' +p135629 +sa(dp135630 +g25273 +S'lithograph in sienna [separation proof]' +p135631 +sg25267 +g27 +sg25275 +S'1950' +p135632 +sg25268 +S'Jacob and the Angel' +p135633 +sg25270 +S'Benton Murdoch Spruance' +p135634 +sa(dp135635 +g25273 +S'lithograph in black [separation proof]' +p135636 +sg25267 +g27 +sg25275 +S'1950' +p135637 +sg25268 +S'Jacob and the Angel' +p135638 +sg25270 +S'Benton Murdoch Spruance' +p135639 +sa(dp135640 +g25273 +S'lithograph in grey-brown [separation proof]' +p135641 +sg25267 +g27 +sg25275 +S'1950' +p135642 +sg25268 +S'Girl with Mask' +p135643 +sg25270 +S'Benton Murdoch Spruance' +p135644 +sa(dp135645 +g25273 +S'lithograph in black [separation proof]' +p135646 +sg25267 +g27 +sg25275 +S'1950' +p135647 +sg25268 +S'Girl with Mask' +p135648 +sg25270 +S'Benton Murdoch Spruance' +p135649 +sa(dp135650 +g25268 +S'Madonna Enthroned with Saints and Angels [right panel]' +p135651 +sg25270 +S'Agnolo Gaddi' +p135652 +sg25273 +S'tempera on panel' +p135653 +sg25275 +S'1380/1390' +p135654 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f5b5.jpg' +p135655 +sg25267 +g27 +sa(dp135656 +g25268 +S'Madonna and Child with Saint Jerome and Saint John the Baptist' +p135657 +sg25270 +S'Cima da Conegliano' +p135658 +sg25273 +S'oil on panel' +p135659 +sg25275 +S'c. 1492/1495' +p135660 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000853.jpg' +p135661 +sg25267 +g27 +sa(dp135662 +g25268 +S"Allegory (Possibly Alfonso d'Este and Laura Dianti)" +p135663 +sg25270 +S'Artist Information (' +p135664 +sg25273 +S'Italian, c. 1490 - 1576' +p135665 +sg25275 +S'(related artist)' +p135666 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c21.jpg' +p135667 +sg25267 +g27 +sa(dp135668 +g25268 +S'Madonna and Child' +p135669 +sg25270 +S'German 15th Century' +p135670 +sg25273 +S'Schreiber, no. 2825' +p135671 +sg25275 +S'\npaste print' +p135672 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a46c.jpg' +p135673 +sg25267 +g27 +sa(dp135674 +g25273 +S'lithograph in grey-brown and black [trial proof]' +p135675 +sg25267 +g27 +sg25275 +S'1950' +p135676 +sg25268 +S'Girl with Mask' +p135677 +sg25270 +S'Benton Murdoch Spruance' +p135678 +sa(dp135679 +g25273 +S'lithograph in orange [separation proof]' +p135680 +sg25267 +g27 +sg25275 +S'1950' +p135681 +sg25268 +S'Memorial' +p135682 +sg25270 +S'Benton Murdoch Spruance' +p135683 +sa(dp135684 +g25273 +S'lithograph in yellow [separation proof]' +p135685 +sg25267 +g27 +sg25275 +S'1950' +p135686 +sg25268 +S'Memorial' +p135687 +sg25270 +S'Benton Murdoch Spruance' +p135688 +sa(dp135689 +g25273 +S'lithograph in brown [separation proof]' +p135690 +sg25267 +g27 +sg25275 +S'1950' +p135691 +sg25268 +S'Memorial' +p135692 +sg25270 +S'Benton Murdoch Spruance' +p135693 +sa(dp135694 +g25273 +S'4-color lithograph [separation proof]' +p135695 +sg25267 +g27 +sg25275 +S'1950' +p135696 +sg25268 +S'Memorial' +p135697 +sg25270 +S'Benton Murdoch Spruance' +p135698 +sa(dp135699 +g25273 +S'lithograph in black, tan, and yellow [trial proof]' +p135700 +sg25267 +g27 +sg25275 +S'1950' +p135701 +sg25268 +S'Memorial' +p135702 +sg25270 +S'Benton Murdoch Spruance' +p135703 +sa(dp135704 +g25273 +S'lithograph in black and tan [trial proof]' +p135705 +sg25267 +g27 +sg25275 +S'1950' +p135706 +sg25268 +S'Memorial' +p135707 +sg25270 +S'Benton Murdoch Spruance' +p135708 +sa(dp135709 +g25273 +S'lithograph in black [separation proof]' +p135710 +sg25267 +g27 +sg25275 +S'1950' +p135711 +sg25268 +S'Memorial' +p135712 +sg25270 +S'Benton Murdoch Spruance' +p135713 +sa(dp135714 +g25273 +S'lithograph in black [separation proof]' +p135715 +sg25267 +g27 +sg25275 +S'1950' +p135716 +sg25268 +S'Lamentation [recto]' +p135717 +sg25270 +S'Benton Murdoch Spruance' +p135718 +sa(dp135719 +g25273 +S'lithograph in yellow and blue [trial proof]' +p135720 +sg25267 +g27 +sg25275 +S'1950' +p135721 +sg25268 +S'Variation [verso]' +p135722 +sg25270 +S'Benton Murdoch Spruance' +p135723 +sa(dp135724 +g25268 +S'Saint John the Baptist' +p135725 +sg25270 +S'German 15th Century' +p135726 +sg25273 +S'Schreiber, no. 2850, State m' +p135727 +sg25275 +S'\npaste print' +p135728 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a45e.jpg' +p135729 +sg25267 +g27 +sa(dp135730 +g25273 +S'lithograph in blue-grey and yellow [trial proof]' +p135731 +sg25267 +g27 +sg25275 +S'1950' +p135732 +sg25268 +S'Lamentation' +p135733 +sg25270 +S'Benton Murdoch Spruance' +p135734 +sa(dp135735 +g25273 +S'lithograph in blue-grey [separation proof]' +p135736 +sg25267 +g27 +sg25275 +S'1950' +p135737 +sg25268 +S'Lamentation' +p135738 +sg25270 +S'Benton Murdoch Spruance' +p135739 +sa(dp135740 +g25273 +S'lithograph in salmon [separation proof]' +p135741 +sg25267 +g27 +sg25275 +S'1950' +p135742 +sg25268 +S'Lamentation' +p135743 +sg25270 +S'Benton Murdoch Spruance' +p135744 +sa(dp135745 +g25273 +S'mezzotint' +p135746 +sg25267 +g27 +sg25275 +S'1949' +p135747 +sg25268 +S'Cathedral Repairs, Mexico City' +p135748 +sg25270 +S'Reynold Henry Weidenaar' +p135749 +sa(dp135750 +g25273 +S'lithograph' +p135751 +sg25267 +g27 +sg25275 +S'1949' +p135752 +sg25268 +S'Along the Canal' +p135753 +sg25270 +S'Stow Wengenroth' +p135754 +sa(dp135755 +g25273 +S'monotype on black paper from woodblocks [proof]' +p135756 +sg25267 +g27 +sg25275 +S'1948' +p135757 +sg25268 +S'Grey Still Life' +p135758 +sg25270 +S'Adja Yunkers' +p135759 +sa(dp135760 +g25273 +S'monotype in blue and black printed from woodblocks[proof]' +p135761 +sg25267 +g27 +sg25275 +S'1948' +p135762 +sg25268 +S'Grey Still Life' +p135763 +sg25270 +S'Adja Yunkers' +p135764 +sa(dp135765 +g25273 +S'monotype in blue, black, and brown printed from woodblocks [proof]' +p135766 +sg25267 +g27 +sg25275 +S'1948' +p135767 +sg25268 +S'Grey Still Life' +p135768 +sg25270 +S'Adja Yunkers' +p135769 +sa(dp135770 +g25273 +S'monotype in blue, black, brown, and red printed from woodblocks [proof]' +p135771 +sg25267 +g27 +sg25275 +S'1948' +p135772 +sg25268 +S'Grey Still Life' +p135773 +sg25270 +S'Adja Yunkers' +p135774 +sa(dp135775 +g25273 +S'monotype printed from woodblock on black paper' +p135776 +sg25267 +g27 +sg25275 +S'1948' +p135777 +sg25268 +S'Grey Still Life' +p135778 +sg25270 +S'Adja Yunkers' +p135779 +sa(dp135780 +g25268 +S'Saint Michael' +p135781 +sg25270 +S'Artist Information (' +p135782 +sg25273 +S'German, active c. 1450/1470' +p135783 +sg25275 +S'(artist after)' +p135784 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a460.jpg' +p135785 +sg25267 +g27 +sa(dp135786 +g25273 +S'monotype printed from woodblock on black paper' +p135787 +sg25267 +g27 +sg25275 +S'1948' +p135788 +sg25268 +S'Grey Still Life' +p135789 +sg25270 +S'Adja Yunkers' +p135790 +sa(dp135791 +g25273 +S'monotype printed from woodblock on black paper' +p135792 +sg25267 +g27 +sg25275 +S'1948' +p135793 +sg25268 +S'Grey Still Life' +p135794 +sg25270 +S'Adja Yunkers' +p135795 +sa(dp135796 +g25273 +S'monotype printed from woodblock on black paper' +p135797 +sg25267 +g27 +sg25275 +S'1948' +p135798 +sg25268 +S'Grey Still Life' +p135799 +sg25270 +S'Adja Yunkers' +p135800 +sa(dp135801 +g25273 +S'monotype printed from woodblock [proof]' +p135802 +sg25267 +g27 +sg25275 +S'1948' +p135803 +sg25268 +S'Grey Still Life' +p135804 +sg25270 +S'Adja Yunkers' +p135805 +sa(dp135806 +g25273 +S'monotype printed from woodblock on black paper' +p135807 +sg25267 +g27 +sg25275 +S'1948' +p135808 +sg25268 +S'Grey Still Life' +p135809 +sg25270 +S'Adja Yunkers' +p135810 +sa(dp135811 +g25273 +S'lithograph' +p135812 +sg25267 +g27 +sg25275 +S'1922' +p135813 +sg25268 +S'Lowenjagd' +p135814 +sg25270 +S'Alfred Kubin' +p135815 +sa(dp135816 +g25273 +S'Rosenwald Collection' +p135817 +sg25267 +g27 +sg25275 +S'\nportfolio with 10 prints by Kubin, Feininger, Schinnerer, Seewald, Teutsch, Schubert, Luckner, Jaekel, Hofer, and Beckmann; plus table of contents' +p135818 +sg25268 +S'Die zweite Jahresgabe des Kreises graphischer Kunstler und Sammler' +p135819 +sg25270 +S'Various Artists' +p135820 +sa(dp135821 +g25273 +S'etching with some false biting on laid paper' +p135822 +sg25267 +g27 +sg25275 +S'1912' +p135823 +sg25268 +S'Die grune Brucke (The Green Bridge)' +p135824 +sg25270 +S'Lyonel Feininger' +p135825 +sa(dp135826 +g25273 +S'drypoint' +p135827 +sg25267 +g27 +sg25275 +S'1922' +p135828 +sg25268 +S'Reiter und Frauen' +p135829 +sg25270 +S'Adolf Ferdinand Schinnerer' +p135830 +sa(dp135831 +g25273 +S'woodcut' +p135832 +sg25267 +g27 +sg25275 +S'1922' +p135833 +sg25268 +S'Italienische Landschaft' +p135834 +sg25270 +S'Richard Seewald' +p135835 +sa(dp135836 +g25268 +S'Trinity' +p135837 +sg25270 +S'German 15th Century' +p135838 +sg25273 +S'Schreiber, no. 2811, State m' +p135839 +sg25275 +S'\npaste print' +p135840 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a46f.jpg' +p135841 +sg25267 +g27 +sa(dp135842 +g25273 +S'color lithograph' +p135843 +sg25267 +g27 +sg25275 +S'1922' +p135844 +sg25268 +S'Schlafende Nymphe' +p135845 +sg25270 +S'Walther Teutsch' +p135846 +sa(dp135847 +g25273 +S'color lithograph' +p135848 +sg25267 +g27 +sg25275 +S'1922' +p135849 +sg25268 +S'Elblandschoft' +p135850 +sg25270 +S'Otto Schubert' +p135851 +sa(dp135852 +g25273 +S'drypoint' +p135853 +sg25267 +g27 +sg25275 +S'1922' +p135854 +sg25268 +S'Saukt George' +p135855 +sg25270 +S'Graf von Heinrich Luckner' +p135856 +sa(dp135857 +g25273 +S'etching' +p135858 +sg25267 +g27 +sg25275 +S'1922' +p135859 +sg25268 +S'Emporbluherr und Niedergehen' +p135860 +sg25270 +S'Willy Jaeckel' +p135861 +sa(dp135862 +g25273 +S'lithograph' +p135863 +sg25267 +g27 +sg25275 +S'1922' +p135864 +sg25268 +S'Schlafende' +p135865 +sg25270 +S'Karl Hofer' +p135866 +sa(dp135867 +g25273 +S'drypoint' +p135868 +sg25267 +g27 +sg25275 +S'1922' +p135869 +sg25268 +S'Wooden Bridge (Holzbr\xc3\xbccke)' +p135870 +sg25270 +S'Max Beckmann' +p135871 +sa(dp135872 +g25268 +S'Three Figures' +p135873 +sg25270 +S'Ernst Barlach' +p135874 +sg25273 +S'charcoal on wove paper' +p135875 +sg25275 +S'1913' +p135876 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007937.jpg' +p135877 +sg25267 +g27 +sa(dp135878 +g25268 +S'Anno Domini MCMXVI Post Christum Natum' +p135879 +sg25270 +S'Ernst Barlach' +p135880 +sg25273 +S'lithograph' +p135881 +sg25275 +S'1916' +p135882 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b61a.jpg' +p135883 +sg25267 +g27 +sa(dp135884 +g25268 +S"Child's Funeral in Russia" +p135885 +sg25270 +S'Ernst Barlach' +p135886 +sg25273 +S'pen and black ink over graphite' +p135887 +sg25275 +S'1906/1907' +p135888 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007943.jpg' +p135889 +sg25267 +g27 +sa(dp135890 +g25268 +S'The Dog Catcher' +p135891 +sg25270 +S'Ernst Barlach' +p135892 +sg25273 +S'lithograph' +p135893 +sg25275 +S'1919' +p135894 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b614.jpg' +p135895 +sg25267 +g27 +sa(dp135896 +g25268 +S'Madonna and Child' +p135897 +sg25270 +S'German 15th Century' +p135898 +sg25273 +S'Schreiber, no. 2826, State a' +p135899 +sg25275 +S'\npaste print' +p135900 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a46e.jpg' +p135901 +sg25267 +g27 +sa(dp135902 +g25268 +S'The Fugitives' +p135903 +sg25270 +S'Ernst Barlach' +p135904 +sg25273 +S'lithograph' +p135905 +sg25275 +S'1916/1917' +p135906 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b76b.jpg' +p135907 +sg25267 +g27 +sa(dp135908 +g25268 +S'The Assault' +p135909 +sg25270 +S'Ernst Barlach' +p135910 +sg25273 +S'lithograph' +p135911 +sg25275 +S'published 1915' +p135912 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b612.jpg' +p135913 +sg25267 +g27 +sa(dp135914 +g25268 +S'Blessed are the Merciful' +p135915 +sg25270 +S'Ernst Barlach' +p135916 +sg25273 +S'lithograph' +p135917 +sg25275 +S'published 1916' +p135918 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b617.jpg' +p135919 +sg25267 +g27 +sa(dp135920 +g25268 +S'Italian Peasants with Wine Flasks' +p135921 +sg25270 +S'Ernst Barlach' +p135922 +sg25273 +S'brush and brown ink over charcoal on wove paper' +p135923 +sg25275 +S'1909' +p135924 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f64.jpg' +p135925 +sg25267 +g27 +sa(dp135926 +g25268 +S'The Raging Barbarian' +p135927 +sg25270 +S'Ernst Barlach' +p135928 +sg25273 +S'lithograph' +p135929 +sg25275 +S'c. 1916/1917' +p135930 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b76a.jpg' +p135931 +sg25267 +g27 +sa(dp135932 +g25268 +S'The Writing Prophet (Saint John on Patmos)' +p135933 +sg25270 +S'Ernst Barlach' +p135934 +sg25273 +S'woodcut' +p135935 +sg25275 +S'1919' +p135936 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b615.jpg' +p135937 +sg25267 +g27 +sa(dp135938 +g25268 +S'Street in Warsaw' +p135939 +sg25270 +S'Ernst Barlach' +p135940 +sg25273 +S'lithograph' +p135941 +sg25275 +S'published 1915' +p135942 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b613.jpg' +p135943 +sg25267 +g27 +sa(dp135944 +g25268 +S'Woman Kneeling before a Seated Man' +p135945 +sg25270 +S'Ernst Barlach' +p135946 +sg25273 +S'brush and brown ink over graphite on wove paper' +p135947 +sg25275 +S'unknown date\n' +p135948 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fed.jpg' +p135949 +sg25267 +g27 +sa(dp135950 +g25273 +S'lithograph' +p135951 +sg25267 +g27 +sg25275 +S'1911' +p135952 +sg25268 +S'Tavern (Kneipe)' +p135953 +sg25270 +S'Max Beckmann' +p135954 +sa(dp135955 +g25273 +S'lithograph' +p135956 +sg25267 +g27 +sg25275 +S'1911' +p135957 +sg25268 +S'Self-Portrait' +p135958 +sg25270 +S'Max Beckmann' +p135959 +sa(dp135960 +g25268 +S'Saint Margaret' +p135961 +sg25270 +S'German 15th Century' +p135962 +sg25273 +S'Schreiber, no. 2854, State d' +p135963 +sg25275 +S'\npaste print' +p135964 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a45b.jpg' +p135965 +sg25267 +g27 +sa(dp135966 +g25273 +S'drypoint' +p135967 +sg25267 +g27 +sg25275 +S'probably 1914' +p135968 +sg25268 +S'The Large Operation (Grosse Operation)' +p135969 +sg25270 +S'Max Beckmann' +p135970 +sa(dp135971 +g25273 +S'drypoint' +p135972 +sg25267 +g27 +sg25275 +S'1913' +p135973 +sg25268 +S'Small Self-Portrait' +p135974 +sg25270 +S'Max Beckmann' +p135975 +sa(dp135976 +g25273 +S'woodcut' +p135977 +sg25267 +g27 +sg25275 +S'1923' +p135978 +sg25268 +S'Sleeping Woman (Schlafende)' +p135979 +sg25270 +S'Max Beckmann' +p135980 +sa(dp135981 +g25273 +S'graphite on wove paper' +p135982 +sg25267 +g27 +sg25275 +S'c. 1914/1915' +p135983 +sg25268 +S'Horse' +p135984 +sg25270 +S'Max Beckmann' +p135985 +sa(dp135986 +g25273 +S'graphite on wove paper' +p135987 +sg25267 +g27 +sg25275 +S'1922' +p135988 +sg25268 +S'Portrait of a Man with a Mustache' +p135989 +sg25270 +S'Max Beckmann' +p135990 +sa(dp135991 +g25273 +S'black chalk on wove paper' +p135992 +sg25267 +g27 +sg25275 +S'c. 1913' +p135993 +sg25268 +S'Cafe' +p135994 +sg25270 +S'Max Beckmann' +p135995 +sa(dp135996 +g25273 +S'lithograph' +p135997 +sg25267 +g27 +sg25275 +S'unknown date\n' +p135998 +sg25268 +S"Woman's Figure in Landscape" +p135999 +sg25270 +S'Sir Frank Brangwyn' +p136000 +sa(dp136001 +g25268 +S'City Square' +p136002 +sg25270 +S'Theo von Brockhusen' +p136003 +sg25273 +S'etching' +p136004 +sg25275 +S'unknown date\n' +p136005 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c504.jpg' +p136006 +sg25267 +g27 +sa(dp136007 +g25268 +S'Landscape' +p136008 +sg25270 +S'Theo von Brockhusen' +p136009 +sg25273 +S'etching' +p136010 +sg25275 +S'unknown date\n' +p136011 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c4a5.jpg' +p136012 +sg25267 +g27 +sa(dp136013 +g25268 +S'Landscape' +p136014 +sg25270 +S'Theo von Brockhusen' +p136015 +sg25273 +S'etching' +p136016 +sg25275 +S'unknown date\n' +p136017 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c500.jpg' +p136018 +sg25267 +g27 +sa(dp136019 +g25268 +S'Saint Catherine' +p136020 +sg25270 +S'German 15th Century' +p136021 +sg25273 +S'Schreiber, no. 2837, State a' +p136022 +sg25275 +S'\npaste print' +p136023 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a45d.jpg' +p136024 +sg25267 +g27 +sa(dp136025 +g25273 +S'color woodcut' +p136026 +sg25267 +g27 +sg25275 +S'1920' +p136027 +sg25268 +S'The Occurence (Girl with Fish and Birds)' +p136028 +sg25270 +S'Heinrich Campendonk' +p136029 +sa(dp136030 +g25273 +S'etching' +p136031 +sg25267 +g27 +sg25275 +S'1922' +p136032 +sg25268 +S'Fire in the City' +p136033 +sg25270 +S'Marc Chagall' +p136034 +sa(dp136035 +g25273 +S'etching and drypoint' +p136036 +sg25267 +g27 +sg25275 +S'1922' +p136037 +sg25268 +S'Musician' +p136038 +sg25270 +S'Marc Chagall' +p136039 +sa(dp136040 +g25273 +S'etching and drypoint' +p136041 +sg25267 +g27 +sg25275 +S'1922' +p136042 +sg25268 +S'The Lovers' +p136043 +sg25270 +S'Marc Chagall' +p136044 +sa(dp136045 +g25273 +S'etching and drypoint' +p136046 +sg25267 +g27 +sg25275 +S'1922' +p136047 +sg25268 +S'Promenade' +p136048 +sg25270 +S'Marc Chagall' +p136049 +sa(dp136050 +g25273 +S'etching and drypoint' +p136051 +sg25267 +g27 +sg25275 +S'1922' +p136052 +sg25268 +S'Automobilist' +p136053 +sg25270 +S'Marc Chagall' +p136054 +sa(dp136055 +g25268 +S'Adam and Eve (Der S\xc3\xbcndenfall)' +p136056 +sg25270 +S'Lovis Corinth' +p136057 +sg25273 +S'woodcut' +p136058 +sg25275 +S'1919' +p136059 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b674.jpg' +p136060 +sg25267 +g27 +sa(dp136061 +g25268 +S'The Barn' +p136062 +sg25270 +S'Lovis Corinth' +p136063 +sg25273 +S'graphite on wove paper' +p136064 +sg25275 +S'1883' +p136065 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071e3.jpg' +p136066 +sg25267 +g27 +sa(dp136067 +g25268 +S'Cain and Abel (Brudermord)' +p136068 +sg25270 +S'Lovis Corinth' +p136069 +sg25273 +S'woodcut' +p136070 +sg25275 +S'1919' +p136071 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c509.jpg' +p136072 +sg25267 +g27 +sa(dp136073 +g25268 +S'The Crucifixion (Christus am Kreuz)' +p136074 +sg25270 +S'Lovis Corinth' +p136075 +sg25273 +S'woodcut' +p136076 +sg25275 +S'1919' +p136077 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c50c.jpg' +p136078 +sg25267 +g27 +sa(dp136079 +g25268 +S'Unknown Saint' +p136080 +sg25270 +S'German 15th Century' +p136081 +sg25273 +S'Schreiber, no. 2861, State m' +p136082 +sg25275 +S'\npaste print' +p136083 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a45c.jpg' +p136084 +sg25267 +g27 +sa(dp136085 +g25268 +S'The Expulsion from Paradise (Austreibung aus dem Paradies)' +p136086 +sg25270 +S'Lovis Corinth' +p136087 +sg25273 +S'woodcut' +p136088 +sg25275 +S'1919' +p136089 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c50a.jpg' +p136090 +sg25267 +g27 +sa(dp136091 +g25268 +S'G\xc3\xb6tz von Berlichingen (Das Leben des G\xc3\xb6tz von Berlichingen von ihm Selbst Erz\xc3\xa4hct)' +p136092 +sg25270 +S'Lovis Corinth' +p136093 +sg25273 +S'lithograph' +p136094 +sg25275 +S'1920' +p136095 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b682.jpg' +p136096 +sg25267 +g27 +sa(dp136097 +g25268 +S'Interior' +p136098 +sg25270 +S'Lovis Corinth' +p136099 +sg25273 +S'graphite on wove paper' +p136100 +sg25275 +S'1880' +p136101 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a000721c.jpg' +p136102 +sg25267 +g27 +sa(dp136103 +g25268 +S'Harrow (Egge)' +p136104 +sg25270 +S'Lovis Corinth' +p136105 +sg25273 +S'drypoint in black on japan paper' +p136106 +sg25275 +S'1916' +p136107 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5ce.jpg' +p136108 +sg25267 +g27 +sa(dp136109 +g25268 +S'Carl Liebknecht (Totenmaske Liebknechts)' +p136110 +sg25270 +S'Lovis Corinth' +p136111 +sg25273 +S'lithograph' +p136112 +sg25275 +S'1920' +p136113 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b68b.jpg' +p136114 +sg25267 +g27 +sa(dp136115 +g25268 +S'Self-Portrait (Selbstbildnis)' +p136116 +sg25270 +S'Lovis Corinth' +p136117 +sg25273 +S'lithograph' +p136118 +sg25275 +S'1920' +p136119 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b692.jpg' +p136120 +sg25267 +g27 +sa(dp136121 +g25268 +S'Sheet of Sketches' +p136122 +sg25270 +S'Lovis Corinth' +p136123 +sg25273 +S'graphite on wove paper' +p136124 +sg25275 +S'1877' +p136125 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071aa.jpg' +p136126 +sg25267 +g27 +sa(dp136127 +g25268 +S'Thomas' +p136128 +sg25270 +S'Lovis Corinth' +p136129 +sg25273 +S'drypoint' +p136130 +sg25275 +S'1922' +p136131 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5e5.jpg' +p136132 +sg25267 +g27 +sa(dp136133 +g25268 +S'Portrait of a Woman (Frauenbildnis)' +p136134 +sg25270 +S'Lovis Corinth' +p136135 +sg25273 +S'drypoint' +p136136 +sg25275 +S'1914' +p136137 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5a8.jpg' +p136138 +sg25267 +g27 +sa(dp136139 +g25268 +S'Priest Reading (Lesender M\xc3\xb6nch)' +p136140 +sg25270 +S'Lovis Corinth' +p136141 +sg25273 +S'drypoint' +p136142 +sg25275 +S'1916' +p136143 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5d7.jpg' +p136144 +sg25267 +g27 +sa(dp136145 +g25268 +S'Unknown Saint' +p136146 +sg25270 +S'German 15th Century' +p136147 +sg25273 +S'Schreiber, no. 2861, State n' +p136148 +sg25275 +S'\npaste print' +p136149 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a45a.jpg' +p136150 +sg25267 +g27 +sa(dp136151 +g25268 +S'Debut from "Paradise and the Peri" (3rdplate )' +p136152 +sg25270 +S'Henri Fantin-Latour' +p136153 +sg25273 +S'lithograph' +p136154 +sg25275 +S'1901' +p136155 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095d2.jpg' +p136156 +sg25267 +g27 +sa(dp136157 +g25273 +S'woodcut on J.W. Zanders laid cream paper' +p136158 +sg25267 +g27 +sg25275 +S'1918' +p136159 +sg25268 +S'Bark and Brig at Sea (Barke und Brigg auf See)' +p136160 +sg25270 +S'Lyonel Feininger' +p136161 +sa(dp136162 +g25268 +S'Animal Sketches' +p136163 +sg25270 +S'August Gaul' +p136164 +sg25273 +S'lithograph' +p136165 +sg25275 +S'unknown date\n' +p136166 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3f4.jpg' +p136167 +sg25267 +g27 +sa(dp136168 +g25268 +S'The British Lion' +p136169 +sg25270 +S'August Gaul' +p136170 +sg25273 +S'lithograph' +p136171 +sg25275 +S'unknown date\n' +p136172 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3f9.jpg' +p136173 +sg25267 +g27 +sa(dp136174 +g25268 +S'Pigs' +p136175 +sg25270 +S'August Gaul' +p136176 +sg25273 +S'lithograph' +p136177 +sg25275 +S'unknown date\n' +p136178 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3f0.jpg' +p136179 +sg25267 +g27 +sa(dp136180 +g25273 +S'lithograph' +p136181 +sg25267 +g27 +sg25275 +S'1918' +p136182 +sg25268 +S'Beauty Contest in the Motzstrasse (Schonheitsabend in der Motzstrasse)' +p136183 +sg25270 +S'George Grosz' +p136184 +sa(dp136185 +g25273 +S'lithograph' +p136186 +sg25267 +g27 +sg25275 +S'1924' +p136187 +sg25268 +S'From the Medrano Circus (Aus dem Zirkus Medrano)' +p136188 +sg25270 +S'George Grosz' +p136189 +sa(dp136190 +g25273 +S'lithograph' +p136191 +sg25267 +g27 +sg25275 +S'1916/1917' +p136192 +sg25268 +S'Murder in the Ackerstrasse (Mord in der Ackerstrasse)' +p136193 +sg25270 +S'George Grosz' +p136194 +sa(dp136195 +g25273 +S'lithograph' +p136196 +sg25267 +g27 +sg25275 +S'1919' +p136197 +sg25268 +S'The Convict (Der Zuchthausler)' +p136198 +sg25270 +S'George Grosz' +p136199 +sa(dp136200 +g25273 +S'pen and black ink' +p136201 +sg25267 +g27 +sg25275 +S'c. 1925' +p136202 +sg25268 +S'Restaurant' +p136203 +sg25270 +S'George Grosz' +p136204 +sa(dp136205 +g25268 +S'Piet\xc3\xa0' +p136206 +sg25270 +S'German 15th Century' +p136207 +sg25273 +S'Schreiber, no. 2822, State b' +p136208 +sg25275 +S'\npaste print' +p136209 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a46d.jpg' +p136210 +sg25267 +g27 +sa(dp136211 +g25273 +S'transfer lithograph' +p136212 +sg25267 +g27 +sg25275 +S'1922' +p136213 +sg25268 +S'"I will root up from my path whatever obstructs my progress toward becoming the master." ("Ich will alles um mich her ausrotten, was mich einschrankt, das ich nicht Herr bin." (I.Akt, 1.Szene))' +p136214 +sg25270 +S'George Grosz' +p136215 +sa(dp136216 +g25273 +S'transfer lithograph' +p136217 +sg25267 +g27 +sg25275 +S'1920/1921' +p136218 +sg25268 +S'"Under my rule it shall be brought to pass, that potatoes and small-beer shall be con sidered a holiday treat; and woe to him who meets my eye with the audacious front of health. Haggard want, and crouching fear, are my insignia; and in this livery I will clothe ye."("In meinem Gebiet soll\'s soweit kommen, das Kartoffeln und Dunnbier ein Traktament fur Festtage werden, und wehe dem, der mir mit vollen feurigen Backen unter die Augen tritt! Blasse der Armut und sklavische Furcht sind meine Leibf arbe; in diese Livrei will ich euch kleiden." (II.Akt, 2.Szene))' +p136219 +sg25270 +S'George Grosz' +p136220 +sa(dp136221 +g25273 +S'transfer lithograph' +p136222 +sg25267 +g27 +sg25275 +S'1922' +p136223 +sg25268 +S'"Poor hare! Thou playest but a sorry part in this world\'s drama, but your worshipful lords must needs have hares!"("Es ist doch eine jammerliche Rolle, der Hase sein zu mussen auf dieser Welt - Aber der gnadige Herr braucht Hasen." (I.Akt, 1.Szene))' +p136224 +sg25270 +S'George Grosz' +p136225 +sa(dp136226 +g25273 +S'transfer lithograph' +p136227 +sg25267 +g27 +sg25275 +S'1922' +p136228 +sg25268 +S'"I have done my part ... the plunder is your affair." ("Ich habe das Meine getan ... Das Plundern ist eure Sache!" (II.Akt, 3.Szene))' +p136229 +sg25270 +S'George Grosz' +p136230 +sa(dp136231 +g25273 +S'transfer lithograph' +p136232 +sg25267 +g27 +sg25275 +S'1921' +p136233 +sg25268 +S'"Even lions and tigers nourish their young. Ravens feast their brood on carrion." ("Lowen und Leoparden futtern ihre Jungen, Raben tischen ihren Kleinen auf ..." (I.Akt, 2.Szene))' +p136234 +sg25270 +S'George Grosz' +p136235 +sa(dp136236 +g25273 +S'transfer lithograph' +p136237 +sg25267 +g27 +sg25275 +S'1922' +p136238 +sg25268 +S'"The blessing of heaven is visibly upon me." ("Gottes sichtbarer Segen ist bei mir." (II.Akt, 3.Szene))' +p136239 +sg25270 +S'George Grosz' +p136240 +sa(dp136241 +g25273 +S'transfer lithograph' +p136242 +sg25267 +g27 +sg25275 +S'1921/1922' +p136243 +sg25268 +S'"They thunder forth from their clouds about gentleness and forbearance, while they sacrifice human victims to the God of love." ("Da donnern sie Sanftmut und Duldung aus ihren Wolken und bringen dem Gott der Liebe Menschenopfer." (II.Akt, 3.Szene))' +p136244 +sg25270 +S'George Grosz' +p136245 +sa(dp136246 +g25273 +S'transfer lithograph' +p136247 +sg25267 +g27 +sg25275 +S'1921' +p136248 +sg25268 +S'"Let those swim who can - the heavy may sink." ("Schwimme, wer schwimmen kann, und wer zu plump ist, geh\' unter!" (I.Akt, 1.Szene))' +p136249 +sg25270 +S'George Grosz' +p136250 +sa(dp136251 +g25273 +S'transfer lithograph' +p136252 +sg25267 +g27 +sg25275 +S'1921/1922' +p136253 +sg25268 +S'"Right is with the strongest." ("Das Recht wohnet beim Uberwaltiger." (I.Akt, 1.Szene))' +p136254 +sg25270 +S'George Grosz' +p136255 +sa(dp136256 +g25273 +S'transfer lithograph on blue-green portfolio cover; title page for series kept within cover' +p136257 +sg25267 +g27 +sg25275 +S'1922' +p136258 +sg25268 +S'"I will root up from my path whatever obstructs my progress toward becoming the master." ("Ich will alles um mich her ausrotten, was mich einschrankt, das ich nicht Herr bin." (I.Akt, 1.Szene))' +p136259 +sg25270 +S'George Grosz' +p136260 +sa(dp136261 +g25268 +S'The Entombment of Christ' +p136262 +sg25270 +S'Fra Angelico' +p136263 +sg25273 +S', c. 1450' +p136264 +sg25275 +S'\n' +p136265 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00025/a00025e7.jpg' +p136266 +sg25267 +g27 +sa(dp136267 +g25268 +S'The Sudarium' +p136268 +sg25270 +S'German 15th Century' +p136269 +sg25273 +S'Schreiber, no. 2811, State z' +p136270 +sg25275 +S'\npaste print' +p136271 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a470.jpg' +p136272 +sg25267 +g27 +sa(dp136273 +g25273 +S'lithograph (see discussion in Duckers 1979, p.185, MI,6)' +p136274 +sg25267 +g27 +sg25275 +S'1915/1916' +p136275 +sg25268 +S'Suburb (Vorstadt)' +p136276 +sg25270 +S'George Grosz' +p136277 +sa(dp136278 +g25273 +S'lithograph' +p136279 +sg25267 +g27 +sg25275 +S'1919' +p136280 +sg25268 +S"The Neighbor's Daughter or Spring Fever (Nachbars Lenchen oder Fruhlings Erwachen)" +p136281 +sg25270 +S'George Grosz' +p136282 +sa(dp136283 +g25273 +S'pen and black ink' +p136284 +sg25267 +g27 +sg25275 +S'c. 1925' +p136285 +sg25268 +S'Street Scene' +p136286 +sg25270 +S'George Grosz' +p136287 +sa(dp136288 +g25273 +S'pen and black ink' +p136289 +sg25267 +g27 +sg25275 +S'c. 1925' +p136290 +sg25268 +S'Tea Dance (Tanz Kaffee)' +p136291 +sg25270 +S'George Grosz' +p136292 +sa(dp136293 +g25273 +S'drypoint' +p136294 +sg25267 +g27 +sg25275 +S'1916' +p136295 +sg25268 +S'In the Dressing Room (In der Garderobe)' +p136296 +sg25270 +S'Erich Heckel' +p136297 +sa(dp136298 +g25273 +S'drypoint' +p136299 +sg25267 +g27 +sg25275 +S'1919' +p136300 +sg25268 +S'Conversation (Unterhaltung)' +p136301 +sg25270 +S'Erich Heckel' +p136302 +sa(dp136303 +g25273 +S'watercolor and black chalk' +p136304 +sg25267 +g27 +sg25275 +S'unknown date\n' +p136305 +sg25268 +S'Nude [recto]' +p136306 +sg25270 +S'Erich Heckel' +p136307 +sa(dp136308 +g25273 +S'black chalk' +p136309 +sg25267 +g27 +sg25275 +S'1913' +p136310 +sg25268 +S'Arbeitende Frau [verso]' +p136311 +sg25270 +S'Erich Heckel' +p136312 +sa(dp136313 +g25273 +S'watercolor on laid paper' +p136314 +sg25267 +g27 +sg25275 +S'1917' +p136315 +sg25268 +S'Young Man' +p136316 +sg25270 +S'Erich Heckel' +p136317 +sa(dp136318 +g25268 +S'Lumberman' +p136319 +sg25270 +S'Ferdinand Hodler' +p136320 +sg25273 +S'lithograph' +p136321 +sg25275 +S'unknown date\n' +p136322 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f068.jpg' +p136323 +sg25267 +g27 +sa(dp136324 +g25268 +S'Saint Margaret' +p136325 +sg25270 +S'German 15th Century' +p136326 +sg25273 +S'Schreiber, Vol. IX, no. 1613, State a' +p136327 +sg25275 +S'\nwoodcut in brown, hand-colored in red lake, yellow, blue, gold, and orange-red' +p136328 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a61d.jpg' +p136329 +sg25267 +g27 +sa(dp136330 +g25273 +S'lithograph' +p136331 +sg25267 +g27 +sg25275 +S'c. 1923' +p136332 +sg25268 +S'Woman at the Window (Frau am Fenster)' +p136333 +sg25270 +S'Karl Hofer' +p136334 +sa(dp136335 +g25273 +S'lithograph' +p136336 +sg25267 +g27 +sg25275 +S'c. 1923' +p136337 +sg25268 +S'Girl with Fruit Basket (Madchen mit Fruchtekorb)' +p136338 +sg25270 +S'Karl Hofer' +p136339 +sa(dp136340 +g25273 +S'lithograph' +p136341 +sg25267 +g27 +sg25275 +S'1922' +p136342 +sg25268 +S'Milliner (Putzmacherin II)' +p136343 +sg25270 +S'Karl Hofer' +p136344 +sa(dp136345 +g25273 +S'etching and drypoint' +p136346 +sg25267 +g27 +sg25275 +S'1924' +p136347 +sg25268 +S'Reading (Beim Lesen)' +p136348 +sg25270 +S'Karl Hofer' +p136349 +sa(dp136350 +g25273 +S'lithograph' +p136351 +sg25267 +g27 +sg25275 +S'unknown date\n' +p136352 +sg25268 +S'Under the Door (In der Tur)' +p136353 +sg25270 +S'Karl Hofer' +p136354 +sa(dp136355 +g25273 +S'etching' +p136356 +sg25267 +g27 +sg25275 +S'unknown date\n' +p136357 +sg25268 +S'Composition with Five Nude Figures' +p136358 +sg25270 +S'Ludwig von Hofmann' +p136359 +sa(dp136360 +g25268 +S'Hiddensee I' +p136361 +sg25270 +S'Alexander Kanoldt' +p136362 +sg25273 +S'lithograph' +p136363 +sg25275 +S'1927' +p136364 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c430.jpg' +p136365 +sg25267 +g27 +sa(dp136366 +g25268 +S'Woman Tying Her Shoe (Frau, Schuh Zuknopfend)' +p136367 +sg25270 +S'Ernst Ludwig Kirchner' +p136368 +sg25273 +S'woodcut' +p136369 +sg25275 +S'1912' +p136370 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b7c0.jpg' +p136371 +sg25267 +g27 +sa(dp136372 +g25273 +S'woodcut' +p136373 +sg25267 +g27 +sg25275 +S'unknown date\n' +p136374 +sg25268 +S'The Bridge' +p136375 +sg25270 +S'Otto Kisling' +p136376 +sa(dp136377 +g25273 +S'woodcut' +p136378 +sg25267 +g27 +sg25275 +S'1918' +p136379 +sg25268 +S'Boats' +p136380 +sg25270 +S'Cesar Klein' +p136381 +sa(dp136382 +g25268 +S'The Coronation of the Virgin' +p136383 +sg25270 +S'German 15th Century' +p136384 +sg25273 +S'Schreiber, Vol. IX, no. 732, State c' +p136385 +sg25275 +S'\nwoodcut in brown, hand-colored in red lake, blue, tan, green, rose, gold, orange' +p136386 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a608.jpg' +p136387 +sg25267 +g27 +sa(dp136388 +g25273 +S'woodcut' +p136389 +sg25267 +g27 +sg25275 +S'1918' +p136390 +sg25268 +S'Landscape' +p136391 +sg25270 +S'Cesar Klein' +p136392 +sa(dp136393 +g25273 +S'woodcut' +p136394 +sg25267 +g27 +sg25275 +S'1919' +p136395 +sg25268 +S'Nude Figure' +p136396 +sg25270 +S'Cesar Klein' +p136397 +sa(dp136398 +g25273 +S'woodcut' +p136399 +sg25267 +g27 +sg25275 +S'1912' +p136400 +sg25268 +S'Nude in a Landscape' +p136401 +sg25270 +S'Cesar Klein' +p136402 +sa(dp136403 +g25273 +S'woodcut' +p136404 +sg25267 +g27 +sg25275 +S'unknown date\n' +p136405 +sg25268 +S'Woman Before a Mirror' +p136406 +sg25270 +S'Cesar Klein' +p136407 +sa(dp136408 +g25273 +S'color woodcut' +p136409 +sg25267 +g27 +sg25275 +S'1909' +p136410 +sg25268 +S'Ice Skaters' +p136411 +sg25270 +S'Walther Klemm' +p136412 +sa(dp136413 +g25273 +S'woodcut' +p136414 +sg25267 +g27 +sg25275 +S'unknown date\n' +p136415 +sg25268 +S'The Shower' +p136416 +sg25270 +S'Walther Klemm' +p136417 +sa(dp136418 +g25273 +S'mezzotint with engraving in black on wove paper' +p136419 +sg25267 +g27 +sg25275 +S'1894' +p136420 +sg25268 +S'Beloved Recalled (Die Ferngeliebte)' +p136421 +sg25270 +S'Max Klinger' +p136422 +sa(dp136423 +g25273 +S'lithograph' +p136424 +sg25267 +g27 +sg25275 +S'1917' +p136425 +sg25268 +S'Walter Hasenclever' +p136426 +sg25270 +S'Oskar Kokoschka' +p136427 +sa(dp136428 +g25273 +S'lithograph' +p136429 +sg25267 +g27 +sg25275 +S'1923' +p136430 +sg25268 +S'Hugo Simon (Bildnis Herr H.S.)' +p136431 +sg25270 +S'Oskar Kokoschka' +p136432 +sa(dp136433 +g25273 +S'etching' +p136434 +sg25267 +g27 +sg25275 +S'unknown date\n' +p136435 +sg25268 +S'Nude' +p136436 +sg25270 +S'Georg Kolbe' +p136437 +sa(dp136438 +g25268 +S'The Marriage of the Virgin' +p136439 +sg25270 +S'German 15th Century' +p136440 +sg25273 +S'Schreiber, Vol. IX, no. 634, State a' +p136441 +sg25275 +S'\nwoodcut, hand-colored in red lake, rose, blue, green, yellow, black, gold, and orange' +p136442 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b36.jpg' +p136443 +sg25267 +g27 +sa(dp136444 +g25273 +S'graphite' +p136445 +sg25267 +g27 +sg25275 +S'1927' +p136446 +sg25268 +S'Composition' +p136447 +sg25270 +S'Fernand L\xc3\xa9ger' +p136448 +sa(dp136449 +g25268 +S'Dr. Burchard' +p136450 +sg25270 +S'Max Liebermann' +p136451 +sg25273 +S'lithograph in black on laid paper' +p136452 +sg25275 +S'unknown date\n' +p136453 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a00058e7.jpg' +p136454 +sg25267 +g27 +sa(dp136455 +g25268 +S'Cafe' +p136456 +sg25270 +S'Max Liebermann' +p136457 +sg25273 +S'etching in black on wove paper' +p136458 +sg25275 +S'unknown date\n' +p136459 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a00058dc.jpg' +p136460 +sg25267 +g27 +sa(dp136461 +g25268 +S'Canoeing' +p136462 +sg25270 +S'Max Liebermann' +p136463 +sg25273 +S'lithograph in black on laid paper' +p136464 +sg25275 +S'1919' +p136465 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b71f.jpg' +p136466 +sg25267 +g27 +sa(dp136467 +g25273 +S'drypoint (and roulette?)' +p136468 +sg25267 +g27 +sg25275 +S'1921' +p136469 +sg25268 +S'Dostoyevsky I' +p136470 +sg25270 +S'Max Beckmann' +p136471 +sa(dp136472 +g25268 +S'Portrait' +p136473 +sg25270 +S'Max Liebermann' +p136474 +sg25273 +S'drypoint in black on wove paper' +p136475 +sg25275 +S'unknown date\n' +p136476 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b720.jpg' +p136477 +sg25267 +g27 +sa(dp136478 +g25268 +S'Portrait of a Man' +p136479 +sg25270 +S'Max Liebermann' +p136480 +sg25273 +S'etching in black on wove paper' +p136481 +sg25275 +S'unknown date\n' +p136482 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b721.jpg' +p136483 +sg25267 +g27 +sa(dp136484 +g25268 +S'Self-Portrait' +p136485 +sg25270 +S'Max Liebermann' +p136486 +sg25273 +S'lithograph in black on wove paper' +p136487 +sg25275 +S'unknown date\n' +p136488 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a00058dd.jpg' +p136489 +sg25267 +g27 +sa(dp136490 +g25268 +S'The Smoker (Le fumeur)' +p136491 +sg25270 +S'Edouard Manet' +p136492 +sg25273 +S'etching and drypoint' +p136493 +sg25275 +S'1866' +p136494 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d02.jpg' +p136495 +sg25267 +g27 +sa(dp136496 +g25268 +S'The Infanta Marguerita (Infante Marguerite)' +p136497 +sg25270 +S'Artist Information (' +p136498 +sg25273 +S'(artist after)' +p136499 +sg25275 +S'\n' +p136500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cfc.jpg' +p136501 +sg25267 +g27 +sa(dp136502 +g25268 +S'The Ecstasy of Mary Magdalene' +p136503 +sg25270 +S'German 15th Century' +p136504 +sg25273 +S'Schreiber, Vol. IX, no. 1603, State d' +p136505 +sg25275 +S'\nwoodcut in brown, hand-colored in red lake, blue, green, rose, gold, and orange' +p136506 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5ad.jpg' +p136507 +sg25267 +g27 +sa(dp136508 +g25273 +S'woodcut' +p136509 +sg25267 +g27 +sg25275 +S'1921' +p136510 +sg25268 +S'Emile Verhaeren' +p136511 +sg25270 +S'Frans Masereel' +p136512 +sa(dp136513 +g25273 +S'woodcut' +p136514 +sg25267 +g27 +sg25275 +S'1921' +p136515 +sg25268 +S'Maurice Maeterlinck' +p136516 +sg25270 +S'Frans Masereel' +p136517 +sa(dp136518 +g25273 +S'woodcut' +p136519 +sg25267 +g27 +sg25275 +S'1922' +p136520 +sg25268 +S'Le parvenu' +p136521 +sg25270 +S'Frans Masereel' +p136522 +sa(dp136523 +g25273 +S'etching' +p136524 +sg25267 +g27 +sg25275 +S'1910' +p136525 +sg25268 +S'Balcony Scene (Balkonscene)' +p136526 +sg25270 +S'Hans Meid' +p136527 +sa(dp136528 +g25273 +S'etching' +p136529 +sg25267 +g27 +sg25275 +S'1918' +p136530 +sg25268 +S'"Die Frau ohne schatten" von Hugo von Hofmannsthal' +p136531 +sg25270 +S'Hans Meid' +p136532 +sa(dp136533 +g25273 +S'drypoint' +p136534 +sg25267 +g27 +sg25275 +S'1912' +p136535 +sg25268 +S'Monte Pincio III' +p136536 +sg25270 +S'Hans Meid' +p136537 +sa(dp136538 +g25273 +S'lithograph' +p136539 +sg25267 +g27 +sg25275 +S'unknown date\n' +p136540 +sg25268 +S'Hausmann' +p136541 +sg25270 +S'Ludwig Meidner' +p136542 +sa(dp136543 +g25268 +S'Bather' +p136544 +sg25270 +S'Otto M\xc3\xbcller' +p136545 +sg25273 +S'color crayons on brown paper' +p136546 +sg25275 +S'unknown date\n' +p136547 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a000793b.jpg' +p136548 +sg25267 +g27 +sa(dp136549 +g25268 +S'Bather' +p136550 +sg25270 +S'Otto M\xc3\xbcller' +p136551 +sg25273 +S'color crayons and watercolor' +p136552 +sg25275 +S'unknown date\n' +p136553 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a000793f.jpg' +p136554 +sg25267 +g27 +sa(dp136555 +g25268 +S'Bathers' +p136556 +sg25270 +S'Otto M\xc3\xbcller' +p136557 +sg25273 +S'pen and black ink and color crayons' +p136558 +sg25275 +S'unknown date\n' +p136559 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007942.jpg' +p136560 +sg25267 +g27 +sa(dp136561 +g25268 +S'Martyrdom of a Saint' +p136562 +sg25270 +S'German 15th Century' +p136563 +sg25273 +S'Schreiber, Vol. IX, no. 1752, State m' +p136564 +sg25275 +S'\nwoodcut, hand-colored in red lake, green, yellow, blue, rose, gold, and orange' +p136565 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5bb.jpg' +p136566 +sg25267 +g27 +sa(dp136567 +g25268 +S'Nude Figure of a Boy in a Landscape (Knabe zwischen Blattpflanzen)' +p136568 +sg25270 +S'Otto M\xc3\xbcller' +p136569 +sg25273 +S'woodcut' +p136570 +sg25275 +S'1912' +p136571 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c462.jpg' +p136572 +sg25267 +g27 +sa(dp136573 +g25268 +S'Nude Figure of a Girl in a Landscape (Madchenzwischen Blattpflanzen)' +p136574 +sg25270 +S'Otto M\xc3\xbcller' +p136575 +sg25273 +S'woodcut' +p136576 +sg25275 +S'1912' +p136577 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c453.jpg' +p136578 +sg25267 +g27 +sa(dp136579 +g25273 +S'etching' +p136580 +sg25267 +g27 +sg25275 +S'1901' +p136581 +sg25268 +S'The Dead Lovers (Totes Liebespaar)' +p136582 +sg25270 +S'Edvard Munch' +p136583 +sa(dp136584 +g25273 +S'etching' +p136585 +sg25267 +g27 +sg25275 +S'1913' +p136586 +sg25268 +S'Half-Length Portrait of a Man (Brustbild eines bartlosen Mannes)' +p136587 +sg25270 +S'Edvard Munch' +p136588 +sa(dp136589 +g25273 +S'etching' +p136590 +sg25267 +g27 +sg25275 +S'1906' +p136591 +sg25268 +S'Head of a Man (Mannerkopf)' +p136592 +sg25270 +S'Edvard Munch' +p136593 +sa(dp136594 +g25273 +S'etching' +p136595 +sg25267 +g27 +sg25275 +S'1907' +p136596 +sg25268 +S'Head of a Girl (Madchenkopf)' +p136597 +sg25270 +S'Edvard Munch' +p136598 +sa(dp136599 +g25273 +S'drypoint' +p136600 +sg25267 +g27 +sg25275 +S'1905' +p136601 +sg25268 +S'Head of a Woman (Frauenkopf)' +p136602 +sg25270 +S'Edvard Munch' +p136603 +sa(dp136604 +g25273 +S'lithograph' +p136605 +sg25267 +g27 +sg25275 +S'1899' +p136606 +sg25268 +S'The Kiss of Death (Todeskuss)' +p136607 +sg25270 +S'Edvard Munch' +p136608 +sa(dp136609 +g25268 +S'Knut Hamsun' +p136610 +sg25270 +S'Artist Information (' +p136611 +sg25273 +S'Norwegian, 1863 - 1944' +p136612 +sg25275 +S'(artist after)' +p136613 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000de/a000de66.jpg' +p136614 +sg25267 +g27 +sa(dp136615 +g25273 +S'etching' +p136616 +sg25267 +g27 +sg25275 +S'1908/1909' +p136617 +sg25268 +S'Norwegian Landscape (Norwegische Landschaft)' +p136618 +sg25270 +S'Edvard Munch' +p136619 +sa(dp136620 +g25268 +S'Saint Peter' +p136621 +sg25270 +S'German 15th Century' +p136622 +sg25273 +S'Schreiber, Vol. IX, no. 1654, State e' +p136623 +sg25275 +S'\nwoodcut, hand-colored in orange-red lake, green, yellow, blue, gold, and orange' +p136624 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a61e.jpg' +p136625 +sg25267 +g27 +sa(dp136626 +g25273 +S'lithographic reproduction?' +p136627 +sg25267 +g27 +sg25275 +S'unknown date\n' +p136628 +sg25268 +S'Prince Bismarck' +p136629 +sg25270 +S'Sir William Nicholson' +p136630 +sa(dp136631 +g25273 +S'woodcut' +p136632 +sg25267 +g27 +sg25275 +S'1917' +p136633 +sg25268 +S'Frau D.S.' +p136634 +sg25270 +S'Emil Nolde' +p136635 +sa(dp136636 +g25273 +S'woodcut' +p136637 +sg25267 +g27 +sg25275 +S'1906' +p136638 +sg25268 +S'Italian (Italiener)' +p136639 +sg25270 +S'Emil Nolde' +p136640 +sa(dp136641 +g25273 +S'lithograph' +p136642 +sg25267 +g27 +sg25275 +S'1911' +p136643 +sg25268 +S'Profile III (Profil III)' +p136644 +sg25270 +S'Emil Nolde' +p136645 +sa(dp136646 +g25273 +S'lithograph' +p136647 +sg25267 +g27 +sg25275 +S'1911' +p136648 +sg25268 +S'Standing Woman (Stehende Frau)' +p136649 +sg25270 +S'Emil Nolde' +p136650 +sa(dp136651 +g25273 +S'woodcut' +p136652 +sg25267 +g27 +sg25275 +S'1917' +p136653 +sg25268 +S'Women' +p136654 +sg25270 +S'Emil Nolde' +p136655 +sa(dp136656 +g25273 +S'woodcut' +p136657 +sg25267 +g27 +sg25275 +S'1917' +p136658 +sg25268 +S"Woman's Profile (Frauenprofil)" +p136659 +sg25270 +S'Emil Nolde' +p136660 +sa(dp136661 +g25273 +S'woodcut' +p136662 +sg25267 +g27 +sg25275 +S'1912' +p136663 +sg25268 +S'Young Woman I (Junges Madchen I)' +p136664 +sg25270 +S'Emil Nolde' +p136665 +sa(dp136666 +g25268 +S'Self-Portrait' +p136667 +sg25270 +S'Ernst Oppler' +p136668 +sg25273 +S'etching' +p136669 +sg25275 +S'unknown date\n' +p136670 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b476.jpg' +p136671 +sg25267 +g27 +sa(dp136672 +g25268 +S'Under the Oaks' +p136673 +sg25270 +S'Ernst Oppler' +p136674 +sg25273 +S'etching' +p136675 +sg25275 +S'unknown date\n' +p136676 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b471.jpg' +p136677 +sg25267 +g27 +sa(dp136678 +g25268 +S'Sacred Monogram in a Sacred Heart on a Cloth Held by an Angel' +p136679 +sg25270 +S'German 15th Century' +p136680 +sg25273 +S'Overall: 8.2 x 6.5 cm (3 1/4 x 2 9/16 in.)\r\noverall (external frame dimensions): 39.4 x 31.8 cm (15 1/2 x 12 1/2 in.)' +p136681 +sg25275 +S'\nwoodcut, hand-colored in red, green, yellow, gold,and orange' +p136682 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005621.jpg' +p136683 +sg25267 +g27 +sa(dp136684 +g25268 +S'Portrait of a Woman' +p136685 +sg25270 +S'Ernst Oppler' +p136686 +sg25273 +S'etching' +p136687 +sg25275 +S'unknown date\n' +p136688 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3cc.jpg' +p136689 +sg25267 +g27 +sa(dp136690 +g25273 +S'brush and black ink' +p136691 +sg25267 +g27 +sg25275 +S'c. 1910' +p136692 +sg25268 +S'Dancer' +p136693 +sg25270 +S'Max Pechstein' +p136694 +sa(dp136695 +g25273 +S'graphite with black wash' +p136696 +sg25267 +g27 +sg25275 +S'1920' +p136697 +sg25268 +S'Head of a Woman' +p136698 +sg25270 +S'Max Pechstein' +p136699 +sa(dp136700 +g25273 +S'watercolor on brown paper' +p136701 +sg25267 +g27 +sg25275 +S'1909' +p136702 +sg25268 +S'Nude' +p136703 +sg25270 +S'Max Pechstein' +p136704 +sa(dp136705 +g25273 +S'etching and plate tone on laid paper' +p136706 +sg25267 +g27 +sg25275 +S'1908' +p136707 +sg25268 +S'Woman Standing by a Door' +p136708 +sg25270 +S'Max Pechstein' +p136709 +sa(dp136710 +g25273 +S'drypoint and roulette on wove paper' +p136711 +sg25267 +g27 +sg25275 +S'1917' +p136712 +sg25268 +S'Self-Portrait' +p136713 +sg25270 +S'Max Pechstein' +p136714 +sa(dp136715 +g25273 +S'drypoint with plate tone on wove paper' +p136716 +sg25267 +g27 +sg25275 +S'1923' +p136717 +sg25268 +S'Two Bathers' +p136718 +sg25270 +S'Max Pechstein' +p136719 +sa(dp136720 +g25273 +S'graphite and watercolor on brown paper' +p136721 +sg25267 +g27 +sg25275 +S'1910' +p136722 +sg25268 +S'Franzi and Her Sister in a Hammock' +p136723 +sg25270 +S'Max Pechstein' +p136724 +sa(dp136725 +g25273 +S'graphite and watercolor' +p136726 +sg25267 +g27 +sg25275 +S'1920' +p136727 +sg25268 +S'Woman and Child' +p136728 +sg25270 +S'Max Pechstein' +p136729 +sa(dp136730 +g25273 +S'drypoint' +p136731 +sg25267 +g27 +sg25275 +S'unknown date\n' +p136732 +sg25268 +S'Portrait of a Woman' +p136733 +sg25270 +S'Hans Purrmann' +p136734 +sa(dp136735 +g25268 +S'Christ on the Cross with a Grape Vine' +p136736 +sg25270 +S'Artist Information (' +p136737 +sg25273 +g27 +sg25275 +S'(artist)' +p136738 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a00082f7.jpg' +p136739 +sg25267 +g27 +sa(dp136740 +g25273 +S'etching' +p136741 +sg25267 +g27 +sg25275 +S'unknown date\n' +p136742 +sg25268 +S'Landscape' +p136743 +sg25270 +S'Franz Radziwill' +p136744 +sa(dp136745 +g25273 +S'watercolor' +p136746 +sg25267 +g27 +sg25275 +S'unknown date\n' +p136747 +sg25268 +S'Landscape' +p136748 +sg25270 +S'Franz Radziwill' +p136749 +sa(dp136750 +g25273 +S'etching' +p136751 +sg25267 +g27 +sg25275 +S'unknown date\n' +p136752 +sg25268 +S'Landscape' +p136753 +sg25270 +S'Franz Radziwill' +p136754 +sa(dp136755 +g25268 +S'Nude' +p136756 +sg25270 +S'Armand Rassenfosse' +p136757 +sg25273 +S'aquatint' +p136758 +sg25275 +S'unknown date\n' +p136759 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d804.jpg' +p136760 +sg25267 +g27 +sa(dp136761 +g25268 +S'Seated Woman' +p136762 +sg25270 +S'Armand Rassenfosse' +p136763 +sg25273 +S'soft-ground and drypoint' +p136764 +sg25275 +S'unknown date\n' +p136765 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d805.jpg' +p136766 +sg25267 +g27 +sa(dp136767 +g25268 +S'Death as Juggler' +p136768 +sg25270 +S'Christian Rohlfs' +p136769 +sg25273 +S'woodcut in blue-gray heightened with yellow and red watercolor' +p136770 +sg25275 +S'1918/1919' +p136771 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c4b7.jpg' +p136772 +sg25267 +g27 +sa(dp136773 +g25268 +S'Landscape' +p136774 +sg25270 +S'Christian Rohlfs' +p136775 +sg25273 +S'watercolor on laid paper' +p136776 +sg25275 +S'1870s' +p136777 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007924.jpg' +p136778 +sg25267 +g27 +sa(dp136779 +g25273 +S'watercolor' +p136780 +sg25267 +g27 +sg25275 +S'unknown date\n' +p136781 +sg25268 +S'Nude' +p136782 +sg25270 +S'Christian Rohlfs' +p136783 +sa(dp136784 +g25268 +S'Old Man' +p136785 +sg25270 +S'Christian Rohlfs' +p136786 +sg25273 +S'woodcut in brown with graphite' +p136787 +sg25275 +S'1918' +p136788 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b75f.jpg' +p136789 +sg25267 +g27 +sa(dp136790 +g25273 +S'woodcut in blue' +p136791 +sg25267 +g27 +sg25275 +S'1918' +p136792 +sg25268 +S'Prisoner' +p136793 +sg25270 +S'Christian Rohlfs' +p136794 +sa(dp136795 +g25268 +S'Christ as the Man of Sorrows' +p136796 +sg25270 +S'Netherlandish 15th Century' +p136797 +sg25273 +S'Schreiber, Vol. IX, no. 875, State m' +p136798 +sg25275 +S'\nhand-colored woodcut' +p136799 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cceb.jpg' +p136800 +sg25267 +g27 +sa(dp136801 +g25268 +S'Return of the Prodigal Son' +p136802 +sg25270 +S'Christian Rohlfs' +p136803 +sg25273 +S'woodcut' +p136804 +sg25275 +S'1916' +p136805 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c4b9.jpg' +p136806 +sg25267 +g27 +sa(dp136807 +g25268 +S'Deliberation (Beratung)' +p136808 +sg25270 +S'Christian Rohlfs' +p136809 +sg25273 +S'woodcut in green with black crayon' +p136810 +sg25275 +S'1913' +p136811 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b75c.jpg' +p136812 +sg25267 +g27 +sa(dp136813 +g25268 +S'Deliberation (Beratung)' +p136814 +sg25270 +S'Christian Rohlfs' +p136815 +sg25273 +S'woodcut in blue' +p136816 +sg25275 +S'1913' +p136817 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b75b.jpg' +p136818 +sg25267 +g27 +sa(dp136819 +g25268 +S'Frontispiece: The Dregs of Society (Les bas-fonds de la societe)' +p136820 +sg25270 +S'F\xc3\xa9licien Rops' +p136821 +sg25273 +S'etching' +p136822 +sg25275 +S'1864' +p136823 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d818.jpg' +p136824 +sg25267 +g27 +sa(dp136825 +g25268 +S'The Falconer (La fauconniere)' +p136826 +sg25270 +S'F\xc3\xa9licien Rops' +p136827 +sg25273 +S'etching' +p136828 +sg25275 +S'unknown date\n' +p136829 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d80d.jpg' +p136830 +sg25267 +g27 +sa(dp136831 +g25268 +S'The Sparrow of Lesbie (Le moineau de Lesbie)' +p136832 +sg25270 +S'F\xc3\xa9licien Rops' +p136833 +sg25273 +S'etching' +p136834 +sg25275 +S'unknown date\n' +p136835 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d80e.jpg' +p136836 +sg25267 +g27 +sa(dp136837 +g25268 +S'Oude-Kate' +p136838 +sg25270 +S'F\xc3\xa9licien Rops' +p136839 +sg25273 +S'etching' +p136840 +sg25275 +S'unknown date\n' +p136841 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d803.jpg' +p136842 +sg25267 +g27 +sa(dp136843 +g25268 +S'Le Rydeack' +p136844 +sg25270 +S'F\xc3\xa9licien Rops' +p136845 +sg25273 +S'etching' +p136846 +sg25275 +S'unknown date\n' +p136847 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d806.jpg' +p136848 +sg25267 +g27 +sa(dp136849 +g25268 +S"Satan Sowing Tare (Satan semant l'ivraie)" +p136850 +sg25270 +S'F\xc3\xa9licien Rops' +p136851 +sg25273 +S'aquatint and etching' +p136852 +sg25275 +S'unknown date\n' +p136853 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a000601a.jpg' +p136854 +sg25267 +g27 +sa(dp136855 +g25268 +S'Madonna and Child with Saint Peter and Saint John the Evangelist [left panel]' +p136856 +sg25270 +S'Nardo di Cione' +p136857 +sg25273 +S'tempera on panel' +p136858 +sg25275 +S'probably c. 1360' +p136859 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b37.jpg' +p136860 +sg25267 +S'Nardo, who with brothers \n Nardo’s Virgin, despite her soft expression, appears removed\r\n from human\r\n concerns. Bright, artificial colors separate her from the real\r\n world, and\r\n the stiff saints on either side underscore her hierarchical\r\n importance.\r\n Around the middle of the fourteenth century, Florentine artists\r\n like Nardo\r\n and his brothers abandoned the human concerns and naturalism of\r\n Giotto. For\r\n several decades the older, traditional styles again predominated.\r\n Art\r\n historians continue to debate why this occurred. Perhaps Giotto’s\r\n work was\r\n only appreciated, as Petrarch believed, by a small, educated\r\n elite.\n Perhaps intensified religious sentiment following the plague of\r\n 1348—when up to half the population of Italian cities died \r\n within a few weeks—prompted this conservatism. Or perhaps the\r\n deaths of so many artists and patrons changed the nature of \r\n commissions and workshop practice.\n ' +p136861 +sa(dp136862 +g25268 +S'Madonna and Child' +p136863 +sg25270 +S'German 16th Century' +p136864 +sg25273 +S'Rosenwald Collection' +p136865 +sg25275 +S'\nwoodcut' +p136866 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a79c.jpg' +p136867 +sg25267 +g27 +sa(dp136868 +g25273 +S'woodcut' +p136869 +sg25267 +g27 +sg25275 +S'1921' +p136870 +sg25268 +S'Woman in the Woods (Frau im Wald)' +p136871 +sg25270 +S'Karl Schmidt-Rottluff' +p136872 +sa(dp136873 +g25273 +S'woodcut' +p136874 +sg25267 +g27 +sg25275 +S'1919' +p136875 +sg25268 +S'Russian Landscape (Russische Landschaft)' +p136876 +sg25270 +S'Karl Schmidt-Rottluff' +p136877 +sa(dp136878 +g25273 +S'woodcut' +p136879 +sg25267 +g27 +sg25275 +S'1913' +p136880 +sg25268 +S'Woman with Unbound Hair (Frau mit aufgelostemHaar)' +p136881 +sg25270 +S'Karl Schmidt-Rottluff' +p136882 +sa(dp136883 +g25273 +S'woodcut' +p136884 +sg25267 +g27 +sg25275 +S'1920' +p136885 +sg25268 +S'Lovers (Liebespaar)' +p136886 +sg25270 +S'Karl Schmidt-Rottluff' +p136887 +sa(dp136888 +g25273 +S'woodcut' +p136889 +sg25267 +g27 +sg25275 +S'1914' +p136890 +sg25268 +S'Three at a Table (Drei am Tisch)' +p136891 +sg25270 +S'Karl Schmidt-Rottluff' +p136892 +sa(dp136893 +g25273 +S'woodcut' +p136894 +sg25267 +g27 +sg25275 +S'1921' +p136895 +sg25268 +S'Hay Harvest (Heurnte)' +p136896 +sg25270 +S'Karl Schmidt-Rottluff' +p136897 +sa(dp136898 +g25268 +S'Evening (Le soir)' +p136899 +sg25270 +S'Paul Signac' +p136900 +sg25273 +S'5-color lithograph' +p136901 +sg25275 +S'1898' +p136902 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bb6.jpg' +p136903 +sg25267 +g27 +sa(dp136904 +g25268 +S'In the Park' +p136905 +sg25270 +S'Henri Edmond Cross' +p136906 +sg25273 +S'color lithograph' +p136907 +sg25275 +S'unknown date\n' +p136908 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091c0.jpg' +p136909 +sg25267 +g27 +sa(dp136910 +g25273 +S'lithograph' +p136911 +sg25267 +g27 +sg25275 +S'unknown date\n' +p136912 +sg25268 +S'Girl Seated' +p136913 +sg25270 +S'Ren\xc3\xa9e Sintenis' +p136914 +sa(dp136915 +g25273 +S'lithograph' +p136916 +sg25267 +g27 +sg25275 +S'unknown date\n' +p136917 +sg25268 +S'Profile of a Woman' +p136918 +sg25270 +S'Ren\xc3\xa9e Sintenis' +p136919 +sa(dp136920 +g25268 +S'The Man of Sorrows' +p136921 +sg25270 +S'Artist Information (' +p136922 +sg25273 +g27 +sg25275 +S'(artist)' +p136923 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccee.jpg' +p136924 +sg25267 +g27 +sa(dp136925 +g25268 +S'Self-Portrait' +p136926 +sg25270 +S'Max Slevogt' +p136927 +sg25273 +S'drypoint on Japan paper' +p136928 +sg25275 +S'unknown date\n' +p136929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3e5.jpg' +p136930 +sg25267 +g27 +sa(dp136931 +g25273 +S'lithograph' +p136932 +sg25267 +g27 +sg25275 +S'unknown date\n' +p136933 +sg25268 +S'Leopold Prunystar?' +p136934 +sg25270 +S'Eugene Spiro' +p136935 +sa(dp136936 +g25273 +S'lithograph' +p136937 +sg25267 +g27 +sg25275 +S'unknown date\n' +p136938 +sg25268 +S'Arthur Schnabel' +p136939 +sg25270 +S'Eugene Spiro' +p136940 +sa(dp136941 +g25273 +S'drypoint and roulette' +p136942 +sg25267 +g27 +sg25275 +S'c. 1914' +p136943 +sg25268 +S'Coffee House' +p136944 +sg25270 +S'Jakob Steinhardt' +p136945 +sa(dp136946 +g25273 +S'drypoint' +p136947 +sg25267 +g27 +sg25275 +S'c. 1913' +p136948 +sg25268 +S'Fuchs' +p136949 +sg25270 +S'Jakob Steinhardt' +p136950 +sa(dp136951 +g25273 +S'drypoint' +p136952 +sg25267 +g27 +sg25275 +S'1913' +p136953 +sg25268 +S'Head of an Old Jew' +p136954 +sg25270 +S'Jakob Steinhardt' +p136955 +sa(dp136956 +g25273 +S'drypoint' +p136957 +sg25267 +g27 +sg25275 +S'1913' +p136958 +sg25268 +S'Praying Jews' +p136959 +sg25270 +S'Jakob Steinhardt' +p136960 +sa(dp136961 +g25273 +S'drypoint and roulette' +p136962 +sg25267 +g27 +sg25275 +S'1914' +p136963 +sg25268 +S'Mortality' +p136964 +sg25270 +S'Jakob Steinhardt' +p136965 +sa(dp136966 +g25273 +S'drypoint' +p136967 +sg25267 +g27 +sg25275 +S'1913' +p136968 +sg25268 +S'Fugitive' +p136969 +sg25270 +S'Jakob Steinhardt' +p136970 +sa(dp136971 +g25273 +S'drypoint' +p136972 +sg25267 +g27 +sg25275 +S'1923' +p136973 +sg25268 +S'Hermann Struck' +p136974 +sg25270 +S'Jakob Steinhardt' +p136975 +sa(dp136976 +g25268 +S'The Lamentation' +p136977 +sg25270 +S'German 15th Century' +p136978 +sg25273 +S'Schreiber, no. 515' +p136979 +sg25275 +S'\nwoodcut, hand-colored in green, red, pink, yellow, and gold' +p136980 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a535.jpg' +p136981 +sg25267 +g27 +sa(dp136982 +g25273 +S'drypoint' +p136983 +sg25267 +g27 +sg25275 +S'1920' +p136984 +sg25268 +S'Lovis Corinth' +p136985 +sg25270 +S'Hermann Struck' +p136986 +sa(dp136987 +g25273 +S'etching' +p136988 +sg25267 +g27 +sg25275 +S'unknown date\n' +p136989 +sg25268 +S'Oskar Fried' +p136990 +sg25270 +S'Hermann Struck' +p136991 +sa(dp136992 +g25268 +S'Calm Excursion' +p136993 +sg25270 +S'Hans Thoma' +p136994 +sg25273 +S'etching' +p136995 +sg25275 +S'1919' +p136996 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3d1.jpg' +p136997 +sg25267 +g27 +sa(dp136998 +g25273 +S'color lithograph' +p136999 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137000 +sg25268 +S'Christ and the Woman of Samaria' +p137001 +sg25270 +S'Hans Thoma' +p137002 +sa(dp137003 +g25273 +S'lithograph' +p137004 +sg25267 +g27 +sg25275 +S'1900' +p137005 +sg25268 +S'Landscape' +p137006 +sg25270 +S'Hans Thoma' +p137007 +sa(dp137008 +g25268 +S'Self-Portrait II' +p137009 +sg25270 +S'Hans Thoma' +p137010 +sg25273 +S'etching' +p137011 +sg25275 +S'1898' +p137012 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3d0.jpg' +p137013 +sg25267 +g27 +sa(dp137014 +g25268 +S'Self-Portrait VI with Flower' +p137015 +sg25270 +S'Hans Thoma' +p137016 +sg25273 +S'etching' +p137017 +sg25275 +S'1909' +p137018 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3cf.jpg' +p137019 +sg25267 +g27 +sa(dp137020 +g25273 +S'color lithograph' +p137021 +sg25267 +g27 +sg25275 +S'1909' +p137022 +sg25268 +S'Sorrento' +p137023 +sg25270 +S'Hans Thoma' +p137024 +sa(dp137025 +g25268 +S'Anna Held and Baldy (Anna Held et Baldy)' +p137026 +sg25270 +S'Henri de Toulouse-Lautrec' +p137027 +sg25273 +S'lithograph in black on velin paper' +p137028 +sg25275 +S'1896' +p137029 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a048.jpg' +p137030 +sg25267 +g27 +sa(dp137031 +g25268 +S'Bust of Mlle. Marcelle Lender (Mlle. Marcelle Lender, en buste)' +p137032 +sg25270 +S'Henri de Toulouse-Lautrec' +p137033 +sg25273 +S'color lithograph' +p137034 +sg25275 +S'1895' +p137035 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a0006744.jpg' +p137036 +sg25267 +g27 +sa(dp137037 +g25268 +S'Madonna and Child in a Glory Standing on a Crescent Moon' +p137038 +sg25270 +S'German 15th Century' +p137039 +sg25273 +S'Schreiber, no. 1095' +p137040 +sg25275 +S'\nwoodcut in dark brown, hand-colored in rose, green, yellow, blue, brown, gold, and orange' +p137041 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a522.jpg' +p137042 +sg25267 +g27 +sa(dp137043 +g25268 +S'Last Ballad (Ultime ballade)' +p137044 +sg25270 +S'Henri de Toulouse-Lautrec' +p137045 +sg25273 +S'lithograph in black on China paper' +p137046 +sg25275 +S'1893' +p137047 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e38.jpg' +p137048 +sg25267 +g27 +sa(dp137049 +g25268 +S'Your Mouth (Ta bouche)' +p137050 +sg25270 +S'Henri de Toulouse-Lautrec' +p137051 +sg25273 +S'lithograph in olive green on China paper' +p137052 +sg25275 +S'1893' +p137053 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e3e.jpg' +p137054 +sg25267 +g27 +sa(dp137055 +g25268 +S'Zimmerman et sa machine (Zimmerman and His Machine)' +p137056 +sg25270 +S'Henri de Toulouse-Lautrec' +p137057 +sg25273 +S'lithograph in gray on velin paper' +p137058 +sg25275 +S'1895' +p137059 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ea9.jpg' +p137060 +sg25267 +g27 +sa(dp137061 +g25273 +S', 1921' +p137062 +sg25267 +g27 +sg25275 +S'\n' +p137063 +sg25268 +S'Einstein' +p137064 +sg25270 +S'Julius C. Turner' +p137065 +sa(dp137066 +g25268 +S'Spira' +p137067 +sg25270 +S'Heinrich Wolff' +p137068 +sg25273 +S'mezzotint' +p137069 +sg25275 +S'unknown date\n' +p137070 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3ea.jpg' +p137071 +sg25267 +g27 +sa(dp137072 +g25268 +S'Madame Simon, II' +p137073 +sg25270 +S'Anders Zorn' +p137074 +sg25273 +S'etching' +p137075 +sg25275 +S'1891' +p137076 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed27.jpg' +p137077 +sg25267 +g27 +sa(dp137078 +g25268 +S'Edouard Manet, Bust-Length Portrait (Manet en buste)' +p137079 +sg25270 +S'Edgar Degas' +p137080 +sg25273 +S'etching, drypoint, and aquatint in red-brown on wove paper' +p137081 +sg25275 +S'c. 1861' +p137082 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a00097ff.jpg' +p137083 +sg25267 +g27 +sa(dp137084 +g25268 +S'The Deposition' +p137085 +sg25270 +S'Jean Duvet' +p137086 +sg25273 +S'engraving' +p137087 +sg25275 +S'c. 1550' +p137088 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083fc.jpg' +p137089 +sg25267 +g27 +sa(dp137090 +g25268 +S'Henry II as the Victorious Saint Michael' +p137091 +sg25270 +S'Jean Duvet' +p137092 +sg25273 +S'engraving' +p137093 +sg25275 +S'probably 1548' +p137094 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084d9.jpg' +p137095 +sg25267 +g27 +sa(dp137096 +g25268 +S'Divine Infant with the Globe in a Circle with Four Angels' +p137097 +sg25270 +S'Netherlandish 15th Century' +p137098 +sg25273 +S'Schreiber, undescribed' +p137099 +sg25275 +S'\nwoodcut' +p137100 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccec.jpg' +p137101 +sg25267 +g27 +sa(dp137102 +g25268 +S'La Majeste Royale' +p137103 +sg25270 +S'Jean Duvet' +p137104 +sg25273 +S'engraving' +p137105 +sg25275 +S'probably 1548' +p137106 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084d7.jpg' +p137107 +sg25267 +g27 +sa(dp137108 +g25268 +S'The Martyrdom of Saint John the Evangelist' +p137109 +sg25270 +S'Jean Duvet' +p137110 +sg25273 +S'engraving' +p137111 +sg25275 +S'1546/1556' +p137112 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008406.jpg' +p137113 +sg25267 +g27 +sa(dp137114 +g25268 +S'Moses Surrounded by the Patriarchs' +p137115 +sg25270 +S'Jean Duvet' +p137116 +sg25273 +S'engraving' +p137117 +sg25275 +S'c. 1555' +p137118 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083f2.jpg' +p137119 +sg25267 +g27 +sa(dp137120 +g25268 +S'Adam van Noort' +p137121 +sg25270 +S'Sir Anthony van Dyck' +p137122 +sg25273 +S'etching and engraving' +p137123 +sg25275 +S'probably 1626/1641' +p137124 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0e3.jpg' +p137125 +sg25267 +g27 +sa(dp137126 +g25268 +S'Jan Bruegel the Elder' +p137127 +sg25270 +S'Sir Anthony van Dyck' +p137128 +sg25273 +S'etching and engraving' +p137129 +sg25275 +S'probably 1626/1641' +p137130 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0ea.jpg' +p137131 +sg25267 +g27 +sa(dp137132 +g25268 +S'Philippe le Roy, Lord of Ravels' +p137133 +sg25270 +S'Sir Anthony van Dyck' +p137134 +sg25273 +S'etching and engraving' +p137135 +sg25275 +S'probably 1626/1641' +p137136 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0de.jpg' +p137137 +sg25267 +g27 +sa(dp137138 +g25268 +S'The Dozing Fishmonger (Le marchand de poissons endormie)' +p137139 +sg25270 +S'Artist Information (' +p137140 +sg25273 +S'(artist)' +p137141 +sg25275 +S'\n' +p137142 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009ab4.jpg' +p137143 +sg25267 +g27 +sa(dp137144 +g25268 +S'Three Children Playing with a Donkey (Trois enfants jouant avec un ane)' +p137145 +sg25270 +S'Artist Information (' +p137146 +sg25273 +S'(artist)' +p137147 +sg25275 +S'\n' +p137148 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009ab5.jpg' +p137149 +sg25267 +g27 +sa(dp137150 +g25268 +S'Retreat from Russia (Retour de Russie)' +p137151 +sg25270 +S'Th\xc3\xa9odore Gericault' +p137152 +sg25273 +S'lithograph' +p137153 +sg25275 +S'1818' +p137154 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f65.jpg' +p137155 +sg25267 +g27 +sa(dp137156 +g25268 +S'Allegorical Theme: Combat of Animals' +p137157 +sg25270 +S'Master of the Beheading of St. John the Baptist' +p137158 +sg25273 +S'engraving' +p137159 +sg25275 +S'c. 1515/1520' +p137160 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c831.jpg' +p137161 +sg25267 +g27 +sa(dp137162 +g25268 +S'Christ on the Cross between the Two Thieves' +p137163 +sg25270 +S'German 15th Century' +p137164 +sg25273 +S'Schreiber, Vol. IX, no. 965, State b' +p137165 +sg25275 +S'\nwoodcut, hand-colored in blue, pink, ochre, green,and gold' +p137166 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a543.jpg' +p137167 +sg25267 +g27 +sa(dp137168 +g25268 +S'The Madonna and Child on the Crescent Supported by Four Angels' +p137169 +sg25270 +S'Israhel van Meckenem' +p137170 +sg25273 +S'engraving' +p137171 +sg25275 +S'c. 1490/1500' +p137172 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a450.jpg' +p137173 +sg25267 +g27 +sa(dp137174 +g25268 +S'Christ' +p137175 +sg25270 +S'Odilon Redon' +p137176 +sg25273 +S'lithograph' +p137177 +sg25275 +S'1887' +p137178 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fd3.jpg' +p137179 +sg25267 +g27 +sa(dp137180 +g25268 +S'Elle tire de sa poitrine une eponge toute noire, la couvre de baisers (She draws from her bosom a sponge, perfectly black, and covers it with kisses)' +p137181 +sg25270 +S'Odilon Redon' +p137182 +sg25273 +S'lithograph' +p137183 +sg25275 +S'1896' +p137184 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c9a.jpg' +p137185 +sg25267 +g27 +sa(dp137186 +g25268 +S'Hantise (Obsession)' +p137187 +sg25270 +S'Odilon Redon' +p137188 +sg25273 +S'lithograph' +p137189 +sg25275 +S'1894' +p137190 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c93.jpg' +p137191 +sg25267 +g27 +sa(dp137192 +g25268 +S'Le Liseur (The reader)' +p137193 +sg25270 +S'Odilon Redon' +p137194 +sg25273 +S'lithograph' +p137195 +sg25275 +S'1892' +p137196 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fcc.jpg' +p137197 +sg25267 +g27 +sa(dp137198 +g25268 +S"Quand s'eveillait la Vie au Fon de la matiere obscure (When life was awakening in the depths of obscure matter" +p137199 +sg25270 +S'Odilon Redon' +p137200 +sg25273 +S'lithograph' +p137201 +sg25275 +S'1883' +p137202 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c7e.jpg' +p137203 +sg25267 +g27 +sa(dp137204 +g25268 +S'Il y eut peut-etre une vision premiere essayee dans la fleur (There was perhaps a first vision attempted in the flower' +p137205 +sg25270 +S'Odilon Redon' +p137206 +sg25273 +S'lithograph' +p137207 +sg25275 +S'1883' +p137208 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c7b.jpg' +p137209 +sg25267 +g27 +sa(dp137210 +g25268 +S'Le Polype difforme flottait sur les rivages, sorte de cyclope souriant et hideux (Thedeformed polyp floated on the shores, a sort of smiling and hideous Cyclops' +p137211 +sg25270 +S'Odilon Redon' +p137212 +sg25273 +S'lithograph' +p137213 +sg25275 +S'1883' +p137214 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c7c.jpg' +p137215 +sg25267 +g27 +sa(dp137216 +g25268 +S'La sirene sortit des flots vetue de dards (The Siren clothed in barbs, emerged from the waves' +p137217 +sg25270 +S'Odilon Redon' +p137218 +sg25273 +S'lithograph' +p137219 +sg25275 +S'1883' +p137220 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c82.jpg' +p137221 +sg25267 +g27 +sa(dp137222 +g25268 +S'Christ on the Cross' +p137223 +sg25270 +S'German 15th Century' +p137224 +sg25273 +S'Schreiber, no. 466' +p137225 +sg25275 +S'\nwoodcut, hand-colored in yellow ocher, green, and red-orange' +p137226 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a532.jpg' +p137227 +sg25267 +g27 +sa(dp137228 +g25268 +S'Le Satyre au cynique sourire (The Satyr with the cynical smile)' +p137229 +sg25270 +S'Odilon Redon' +p137230 +sg25273 +S'lithograph' +p137231 +sg25275 +S'1883' +p137232 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c7d.jpg' +p137233 +sg25267 +g27 +sa(dp137234 +g25268 +S'Il y eut des luttes et des vaines victoires (There were struggles and vain victories)' +p137235 +sg25270 +S'Odilon Redon' +p137236 +sg25273 +S'lithograph' +p137237 +sg25275 +S'1883' +p137238 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c80.jpg' +p137239 +sg25267 +g27 +sa(dp137240 +g25268 +S"L'Aile impuissante n'eleva point la bete en ces noirs espaces (The impotent wing did not lift the animal into that black space" +p137241 +sg25270 +S'Odilon Redon' +p137242 +sg25273 +S'lithograph' +p137243 +sg25275 +S'1883' +p137244 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c81.jpg' +p137245 +sg25267 +g27 +sa(dp137246 +g25268 +S"Et l'homme parut, interrogeant le sol d'ou il sort et qui l'attire, il se fraya la voie vers (And Man appeared; questioning theearth from which he emerged and which attracts hi m, he made his way toward somber brightness)" +p137247 +sg25270 +S'Odilon Redon' +p137248 +sg25273 +S'lithograph' +p137249 +sg25275 +S'1883' +p137250 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c7f.jpg' +p137251 +sg25267 +g27 +sa(dp137252 +g25268 +S"Passage d'une Ame (Passage of a Spirit)" +p137253 +sg25270 +S'Odilon Redon' +p137254 +sg25273 +S'etching' +p137255 +sg25275 +S'1891' +p137256 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099b8.jpg' +p137257 +sg25267 +g27 +sa(dp137258 +g25268 +S"C'etait un voile, un empriente (It was a veil, an imprint)" +p137259 +sg25270 +S'Odilon Redon' +p137260 +sg25273 +S'lithograph' +p137261 +sg25275 +S'1891' +p137262 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c8c.jpg' +p137263 +sg25267 +g27 +sa(dp137264 +g25268 +S"Et la-bas l'idole astrale, l'Apotheose (And beyond, the star idol, the apotheosis)" +p137265 +sg25270 +S'Odilon Redon' +p137266 +sg25273 +S'lithograph' +p137267 +sg25275 +S'1891' +p137268 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c8e.jpg' +p137269 +sg25267 +g27 +sa(dp137270 +g25268 +S"Lueur precaire, une tete a l'infini suspendue(Precarious glimmering, a head suspended" +p137271 +sg25270 +S'Odilon Redon' +p137272 +sg25273 +S'lithograph' +p137273 +sg25275 +S'1891' +p137274 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c90.jpg' +p137275 +sg25267 +g27 +sa(dp137276 +g25268 +S"Sous l'aile d'ombre, l'etre noir appliquait une active morsure (Beneath the wing of shadow the black creature was biting energetically)" +p137277 +sg25270 +S'Odilon Redon' +p137278 +sg25273 +S'lithograph' +p137279 +sg25275 +S'1891' +p137280 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c8d.jpg' +p137281 +sg25267 +g27 +sa(dp137282 +g25268 +S'P\xc3\xa9lerin du monde sublunaire (Pilgrim of the sublunary world)' +p137283 +sg25270 +S'Odilon Redon' +p137284 +sg25273 +S'lithograph' +p137285 +sg25275 +S'1891' +p137286 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c8f.jpg' +p137287 +sg25267 +g27 +sa(dp137288 +g25268 +S'Allegory of the Eucharist' +p137289 +sg25270 +S'German 15th Century' +p137290 +sg25273 +S'Schreiber, Vol. IX, no. 1843, State a' +p137291 +sg25275 +S'\nwoodcut, hand-colored in orange, green, tan, pink,lt. blue, and red' +p137292 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a596.jpg' +p137293 +sg25267 +g27 +sa(dp137294 +g25268 +S'Le Jour (Day)' +p137295 +sg25270 +S'Odilon Redon' +p137296 +sg25273 +S'lithograph' +p137297 +sg25275 +S'1891' +p137298 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f093.jpg' +p137299 +sg25267 +g27 +sa(dp137300 +g25268 +S'Yeux Clos (Closed Eyes)' +p137301 +sg25270 +S'Odilon Redon' +p137302 +sg25273 +S'lithograph' +p137303 +sg25275 +S'1890' +p137304 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fd0.jpg' +p137305 +sg25267 +g27 +sa(dp137306 +g25268 +S"Bust of a Man Wearing a High Cap, Three-Quarters Right (The Artist's Father?)" +p137307 +sg25270 +S'Rembrandt van Rijn' +p137308 +sg25273 +S'etching' +p137309 +sg25275 +S'1630' +p137310 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d383.jpg' +p137311 +sg25267 +g27 +sa(dp137312 +g25268 +S'The Flight into Egypt: Small' +p137313 +sg25270 +S'Rembrandt van Rijn' +p137314 +sg25273 +S'etching' +p137315 +sg25275 +S'1633' +p137316 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2e2.jpg' +p137317 +sg25267 +g27 +sa(dp137318 +g25268 +S'The Flight into Egypt: Altered from Seghers' +p137319 +sg25270 +S'Rembrandt van Rijn' +p137320 +sg25273 +S'etching, burin and drypoint' +p137321 +sg25275 +S'c. 1653' +p137322 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d545.jpg' +p137323 +sg25267 +g27 +sa(dp137324 +g25268 +S'The Fourth Oriental Head' +p137325 +sg25270 +S'Artist Information (' +p137326 +sg25273 +S'(artist)' +p137327 +sg25275 +S'\n' +p137328 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e45.jpg' +p137329 +sg25267 +g27 +sa(dp137330 +g25268 +S'The Large Lion Hunt' +p137331 +sg25270 +S'Rembrandt van Rijn' +p137332 +sg25273 +S'etching' +p137333 +sg25275 +S'1641' +p137334 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d548.jpg' +p137335 +sg25267 +g27 +sa(dp137336 +g25268 +S'Self-Portrait in a Heavy Fur Cap' +p137337 +sg25270 +S'Rembrandt van Rijn' +p137338 +sg25273 +S'etching' +p137339 +sg25275 +S'1631' +p137340 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2c5.jpg' +p137341 +sg25267 +g27 +sa(dp137342 +g25268 +S'Sick Woman with a Large White Headdress (Saskia)' +p137343 +sg25270 +S'Rembrandt van Rijn' +p137344 +sg25273 +S'etching, with touches of drypoint' +p137345 +sg25275 +S'c. 1641/1642' +p137346 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00053/a00053b6.jpg' +p137347 +sg25267 +g27 +sa(dp137348 +g25268 +S'The Skater' +p137349 +sg25270 +S'Rembrandt van Rijn' +p137350 +sg25273 +S'etching and drypoint' +p137351 +sg25275 +S'c. 1639' +p137352 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d31e.jpg' +p137353 +sg25267 +g27 +sa(dp137354 +g25268 +S'Saint George' +p137355 +sg25270 +S'German 15th Century' +p137356 +sg25273 +S'Schreiber, undescribed' +p137357 +sg25275 +S'\nhand-colored woodcut' +p137358 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5aa.jpg' +p137359 +sg25267 +g27 +sa(dp137360 +g25268 +S'The Sleeping Herdsman' +p137361 +sg25270 +S'Rembrandt van Rijn' +p137362 +sg25273 +S'etching and burin' +p137363 +sg25275 +S'c. 1644' +p137364 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d33b.jpg' +p137365 +sg25267 +g27 +sa(dp137366 +g25273 +S'(author)' +p137367 +sg25267 +g27 +sg25275 +S'\n' +p137368 +sg25268 +S'Alte Marchen' +p137369 +sg25270 +S'Artist Information (' +p137370 +sa(dp137371 +g25273 +S'lithograph' +p137372 +sg25267 +g27 +sg25275 +S'published 1920' +p137373 +sg25268 +S'Alte Marchen' +p137374 +sg25270 +S'Max Slevogt' +p137375 +sa(dp137376 +g25273 +S'engraving' +p137377 +sg25267 +g27 +sg25275 +S'1603' +p137378 +sg25268 +S'Title Page for R. Knolles Generall Historie of the Turkes' +p137379 +sg25270 +S'George Keller' +p137380 +sa(dp137381 +g25273 +S', unknown date' +p137382 +sg25267 +g27 +sg25275 +S'\n' +p137383 +sg25268 +S'Sir Philip Sidney' +p137384 +sg25270 +S'Crispijn van de Passe II' +p137385 +sa(dp137386 +g25273 +S', unknown date' +p137387 +sg25267 +g27 +sg25275 +S'\n' +p137388 +sg25268 +S'Elizabeth, Queen of England' +p137389 +sg25270 +S'Crispijn van de Passe I' +p137390 +sa(dp137391 +g25273 +S', 1592' +p137392 +sg25267 +g27 +sg25275 +S'\n' +p137393 +sg25268 +S'Elizabeth, Queen of England' +p137394 +sg25270 +S'Crispijn van de Passe I' +p137395 +sa(dp137396 +g25273 +S', unknown date' +p137397 +sg25267 +g27 +sg25275 +S'\n' +p137398 +sg25268 +S'Elizabeth, Queen of England' +p137399 +sg25270 +S'Crispijn van de Passe I' +p137400 +sa(dp137401 +g25273 +S', unknown date' +p137402 +sg25267 +g27 +sg25275 +S'\n' +p137403 +sg25268 +S'Elizabeth, Queen of England' +p137404 +sg25270 +S'Crispijn van de Passe I' +p137405 +sa(dp137406 +g25273 +S', 1600' +p137407 +sg25267 +g27 +sg25275 +S'\n' +p137408 +sg25268 +S'Maurice of Nassau, Prince of Orange' +p137409 +sg25270 +S'Crispijn van de Passe I' +p137410 +sa(dp137411 +g25268 +S'Saint Christopher' +p137412 +sg25270 +S'Artist Information (' +p137413 +sg25273 +g27 +sg25275 +S'(artist)' +p137414 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a793.jpg' +p137415 +sg25267 +g27 +sa(dp137416 +g25273 +S', 1600' +p137417 +sg25267 +g27 +sg25275 +S'\n' +p137418 +sg25268 +S'Maurice of Nassau, Prince of Orange' +p137419 +sg25270 +S'Crispijn van de Passe I' +p137420 +sa(dp137421 +g25273 +S', 1604' +p137422 +sg25267 +g27 +sg25275 +S'\n' +p137423 +sg25268 +S'Albert of Austria, Governor of the Southern Netherlands' +p137424 +sg25270 +S'Crispijn van de Passe I' +p137425 +sa(dp137426 +g25273 +S', 1613' +p137427 +sg25267 +g27 +sg25275 +S'\n' +p137428 +sg25268 +S'James I, King of England' +p137429 +sg25270 +S'Crispijn van de Passe I' +p137430 +sa(dp137431 +g25273 +S', unknown date' +p137432 +sg25267 +g27 +sg25275 +S'\n' +p137433 +sg25268 +S'James I, King of England' +p137434 +sg25270 +S'Crispijn van de Passe I' +p137435 +sa(dp137436 +g25273 +S'Dutch, c. 1565 - 1637' +p137437 +sg25267 +g27 +sg25275 +S'(related artist)' +p137438 +sg25268 +S'Charles I, Prince of Wales' +p137439 +sg25270 +S'Artist Information (' +p137440 +sa(dp137441 +g25273 +S', unknown date' +p137442 +sg25267 +g27 +sg25275 +S'\n' +p137443 +sg25268 +S'Elizabeth, Princess, Wife of the Elector Palatine Frederick V, King of Bohemia' +p137444 +sg25270 +S'Crispijn van de Passe I' +p137445 +sa(dp137446 +g25273 +S', unknown date' +p137447 +sg25267 +g27 +sg25275 +S'\n' +p137448 +sg25268 +S'Elizabeth, Princess, Wife of the Elector Palatine Frederick V, King of Bohemia' +p137449 +sg25270 +S'Crispijn van de Passe I' +p137450 +sa(dp137451 +g25273 +S', unknown date' +p137452 +sg25267 +g27 +sg25275 +S'\n' +p137453 +sg25268 +S'Frederick V, Elector Palatine, Later King of Bohemia' +p137454 +sg25270 +S'Crispijn van de Passe I' +p137455 +sa(dp137456 +g25273 +S', unknown date' +p137457 +sg25267 +g27 +sg25275 +S'\n' +p137458 +sg25268 +S'Frederick V, Elector Palatine, Later King of Bohemia' +p137459 +sg25270 +S'Crispijn van de Passe I' +p137460 +sa(dp137461 +g25273 +S', 1624' +p137462 +sg25267 +g27 +sg25275 +S'\n' +p137463 +sg25268 +S'Thomas Scott' +p137464 +sg25270 +S'Crispijn van de Passe I' +p137465 +sa(dp137466 +g25268 +S'Madonna and Child with Saint Peter and Saint John the Evangelist [middle panel]' +p137467 +sg25270 +S'Nardo di Cione' +p137468 +sg25273 +S'tempera on panel' +p137469 +sg25275 +S'probably c. 1360' +p137470 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f5b2.jpg' +p137471 +sg25267 +g27 +sa(dp137472 +g25268 +S'Saint Christopher' +p137473 +sg25270 +S'Artist Information (' +p137474 +sg25273 +g27 +sg25275 +S'(artist)' +p137475 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a794.jpg' +p137476 +sg25267 +g27 +sa(dp137477 +g25273 +S', 1624' +p137478 +sg25267 +g27 +sg25275 +S'\n' +p137479 +sg25268 +S'Thomas Scott' +p137480 +sg25270 +S'Crispijn van de Passe I' +p137481 +sa(dp137482 +g25273 +S', 1624' +p137483 +sg25267 +g27 +sg25275 +S'\n' +p137484 +sg25268 +S'Thomas Scott' +p137485 +sg25270 +S'Crispijn van de Passe I' +p137486 +sa(dp137487 +g25273 +S', 1624' +p137488 +sg25267 +g27 +sg25275 +S'\n' +p137489 +sg25268 +S'Vox Dei, by Thomas Scott' +p137490 +sg25270 +S'Crispijn van de Passe I' +p137491 +sa(dp137492 +g25273 +S', 1624' +p137493 +sg25267 +g27 +sg25275 +S'\n' +p137494 +sg25268 +S'Vox Dei, by Thomas Scott' +p137495 +sg25270 +S'Crispijn van de Passe I' +p137496 +sa(dp137497 +g25273 +S', 1624' +p137498 +sg25267 +g27 +sg25275 +S'\n' +p137499 +sg25268 +S'Vox Regis, by Thomas Scott' +p137500 +sg25270 +S'Crispijn van de Passe I' +p137501 +sa(dp137502 +g25273 +S', 1624' +p137503 +sg25267 +g27 +sg25275 +S'\n' +p137504 +sg25268 +S'Title Page for Vox Populi Eoricum, by Thomas Scott' +p137505 +sg25270 +S'Crispijn van de Passe I' +p137506 +sa(dp137507 +g25273 +S', 1624' +p137508 +sg25267 +g27 +sg25275 +S'\n' +p137509 +sg25268 +S'Title Page for Vox Populi Eoricum, by Thomas Scott' +p137510 +sg25270 +S'Crispijn van de Passe I' +p137511 +sa(dp137512 +g25273 +S', 1624' +p137513 +sg25267 +g27 +sg25275 +S'\n' +p137514 +sg25268 +S'The Spanish Parliament from Vox Populi Eoricum, by Thomas Scott' +p137515 +sg25270 +S'Crispijn van de Passe I' +p137516 +sa(dp137517 +g25273 +S', 1624' +p137518 +sg25267 +g27 +sg25275 +S'\n' +p137519 +sg25268 +S'True Portraiture of the Jesuits and Priests from Vox Populi, by Thomas Scott' +p137520 +sg25270 +S'Crispijn van de Passe I' +p137521 +sa(dp137522 +g25273 +S'letter press [first published, 1578]' +p137523 +sg25267 +g27 +sg25275 +S'published 1675' +p137524 +sg25268 +S'Title Page to De Origine Moribus by Joanne Leslaeo' +p137525 +sg25270 +S'Unknown 19th Century' +p137526 +sa(dp137527 +g25268 +S'The Lamentation' +p137528 +sg25270 +S'German 15th Century' +p137529 +sg25273 +S'Schreiber, Vol. IX, no. 506, State x' +p137530 +sg25275 +S'\nwoodcut, hand-colored in red, green, and yellow' +p137531 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a52d.jpg' +p137532 +sg25267 +g27 +sa(dp137533 +g25273 +S'etching' +p137534 +sg25267 +g27 +sg25275 +S'published 1675' +p137535 +sg25268 +S'Fergus I of Scotland With Geneology' +p137536 +sg25270 +S'Unknown 19th Century' +p137537 +sa(dp137538 +g25273 +S'etching' +p137539 +sg25267 +g27 +sg25275 +S'published 1675' +p137540 +sg25268 +S'Donald I of Scotland with Geneology' +p137541 +sg25270 +S'Unknown 19th Century' +p137542 +sa(dp137543 +g25273 +S'etching' +p137544 +sg25267 +g27 +sg25275 +S'published 1675' +p137545 +sg25268 +S'Fergus II of Scotland with Geneology' +p137546 +sg25270 +S'Unknown 19th Century' +p137547 +sa(dp137548 +g25273 +S'etching' +p137549 +sg25267 +g27 +sg25275 +S'published 1675' +p137550 +sg25268 +S'Achaius of Scotland, with Geneology' +p137551 +sg25270 +S'Unknown 19th Century' +p137552 +sa(dp137553 +g25273 +S'etching' +p137554 +sg25267 +g27 +sg25275 +S'published 1675' +p137555 +sg25268 +S'Malcolm III with Geneology' +p137556 +sg25270 +S'Unknown 19th Century' +p137557 +sa(dp137558 +g25273 +S'engraving' +p137559 +sg25267 +g27 +sg25275 +S'published 1675' +p137560 +sg25268 +S'Robert de Bruce VIII, King of Scotland' +p137561 +sg25270 +S'Unknown 19th Century' +p137562 +sa(dp137563 +g25273 +S'etching' +p137564 +sg25267 +g27 +sg25275 +S'published 1675' +p137565 +sg25268 +S'James II of Scotland with Geneology of the Stuarts' +p137566 +sg25270 +S'Unknown 19th Century' +p137567 +sa(dp137568 +g25273 +S'etching' +p137569 +sg25267 +g27 +sg25275 +S'published 1675' +p137570 +sg25268 +S'James V of Scotland with Geneology' +p137571 +sg25270 +S'Unknown 19th Century' +p137572 +sa(dp137573 +g25273 +S'etching' +p137574 +sg25267 +g27 +sg25275 +S'published 1675' +p137575 +sg25268 +S'Family Tree of the Stuarts Stemming From Banquho' +p137576 +sg25270 +S'Unknown 19th Century' +p137577 +sa(dp137578 +g25273 +S'etching' +p137579 +sg25267 +g27 +sg25275 +S'published 1675' +p137580 +sg25268 +S'Mary Queen of Scots with James VI of Scotlandand I of England' +p137581 +sg25270 +S'Unknown 19th Century' +p137582 +sa(dp137583 +g25268 +S'Saint Barbara' +p137584 +sg25270 +S'German 15th Century' +p137585 +sg25273 +S'Schreiber, Vol. IX, no. 1252, State m' +p137586 +sg25275 +S'\nwoodcut, hand-colored in brown, lavender, and blue' +p137587 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a552.jpg' +p137588 +sg25267 +g27 +sa(dp137589 +g25273 +S'etching and engraving' +p137590 +sg25267 +g27 +sg25275 +S'published 1675' +p137591 +sg25268 +S'Coat of Arms -- Mary, Queen of Scots' +p137592 +sg25270 +S'Unknown 19th Century' +p137593 +sa(dp137594 +g25273 +S'engraving [first published, 1602]' +p137595 +sg25267 +g27 +sg25275 +S'published 1603' +p137596 +sg25268 +S'Stuart Coat of Arms from Vera Descriptio by John Jonston' +p137597 +sg25270 +S'Unknown 19th Century' +p137598 +sa(dp137599 +g25273 +S'facsimile' +p137600 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137601 +sg25268 +S'Later Copy of the Arms of Scotland' +p137602 +sg25270 +S'Unknown 19th Century' +p137603 +sa(dp137604 +g25273 +S'engraving [first published, 1602]' +p137605 +sg25267 +g27 +sg25275 +S'published 1603' +p137606 +sg25268 +S'Robert II, King of Scotland' +p137607 +sg25270 +S'Unknown 19th Century' +p137608 +sa(dp137609 +g25273 +S'engraving [first published, 1602]' +p137610 +sg25267 +g27 +sg25275 +S'published 1603' +p137611 +sg25268 +S'Robert III, King of Scotland' +p137612 +sg25270 +S'Unknown 19th Century' +p137613 +sa(dp137614 +g25273 +S'engraving [first published, 1602]' +p137615 +sg25267 +g27 +sg25275 +S'published 1603' +p137616 +sg25268 +S'James I, King of Scotland' +p137617 +sg25270 +S'Unknown 19th Century' +p137618 +sa(dp137619 +g25273 +S'engraving [first published, 1602]' +p137620 +sg25267 +g27 +sg25275 +S'published 1603' +p137621 +sg25268 +S'James II, King of Scotland' +p137622 +sg25270 +S'Unknown 19th Century' +p137623 +sa(dp137624 +g25273 +S'engraving [first published, 1602]' +p137625 +sg25267 +g27 +sg25275 +S'published 1603' +p137626 +sg25268 +S'James III, King of Scotland' +p137627 +sg25270 +S'Unknown 19th Century' +p137628 +sa(dp137629 +g25273 +S'engraving [first published, 1602]' +p137630 +sg25267 +g27 +sg25275 +S'published 1603' +p137631 +sg25268 +S'James IV, King of Scotland' +p137632 +sg25270 +S'Unknown 19th Century' +p137633 +sa(dp137634 +g25273 +S'engraving [first published, 1602]' +p137635 +sg25267 +g27 +sg25275 +S'published 1603' +p137636 +sg25268 +S'James V, King of Scotland' +p137637 +sg25270 +S'Unknown 19th Century' +p137638 +sa(dp137639 +g25268 +S'Saint Michael' +p137640 +sg25270 +S'German 15th Century' +p137641 +sg25273 +S'Schreiber, Vol. IX, no. 1627, State m' +p137642 +sg25275 +S'\nwoodcut, hand-colored in olive green, rose, yellow, tan, gray, and blue' +p137643 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5b1.jpg' +p137644 +sg25267 +g27 +sa(dp137645 +g25273 +S'engraving [first published, 1602]' +p137646 +sg25267 +g27 +sg25275 +S'published 1602' +p137647 +sg25268 +S'Mary, Queen of Scots' +p137648 +sg25270 +S'Unknown 19th Century' +p137649 +sa(dp137650 +g25273 +S'engraving [first published, 1602]' +p137651 +sg25267 +g27 +sg25275 +S'published 1603' +p137652 +sg25268 +S'James VI, King of Scotland' +p137653 +sg25270 +S'Unknown 19th Century' +p137654 +sa(dp137655 +g25273 +S'engraving [first published, 1602)' +p137656 +sg25267 +g27 +sg25275 +S'published 1602' +p137657 +sg25268 +S'Anne of Denmark, Queen of James VI of Scotland' +p137658 +sg25270 +S'Unknown 19th Century' +p137659 +sa(dp137660 +g25273 +S'engraving' +p137661 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137662 +sg25268 +S'James I of England and James VI of Scotland' +p137663 +sg25270 +S'Unknown 19th Century' +p137664 +sa(dp137665 +g25273 +S'engraving' +p137666 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137667 +sg25268 +S'Anne of Denmark' +p137668 +sg25270 +S'Unknown 19th Century' +p137669 +sa(dp137670 +g25273 +S'engraving' +p137671 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137672 +sg25268 +S'Anne of Denmark' +p137673 +sg25270 +S'Unknown 19th Century' +p137674 +sa(dp137675 +g25273 +S'engraving' +p137676 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137677 +sg25268 +S'James I and Prince Henry Frederick' +p137678 +sg25270 +S'Unknown 19th Century' +p137679 +sa(dp137680 +g25273 +S'engraving' +p137681 +sg25267 +g27 +sg25275 +S'published 1613' +p137682 +sg25268 +S'Charles I, at 13 Years of Age' +p137683 +sg25270 +S'Unknown 19th Century' +p137684 +sa(dp137685 +g25273 +S'engraving' +p137686 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137687 +sg25268 +S'James I and Anne of Denmark' +p137688 +sg25270 +S'Johan Wierix' +p137689 +sa(dp137690 +g25273 +S'engraving' +p137691 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137692 +sg25268 +S'James I' +p137693 +sg25270 +S'Johan Wierix' +p137694 +sa(dp137695 +g25268 +S'Christ on the Cross' +p137696 +sg25270 +S'Artist Information (' +p137697 +sg25273 +S'Flemish, active c. 1480/1500' +p137698 +sg25275 +S'(artist)' +p137699 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c737.jpg' +p137700 +sg25267 +g27 +sa(dp137701 +g25273 +S'engraving' +p137702 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137703 +sg25268 +S'Anne of Denmark' +p137704 +sg25270 +S'Johan Wierix' +p137705 +sa(dp137706 +g25273 +S'Flemish, c. 1553 - 1619' +p137707 +sg25267 +g27 +sg25275 +S'(artist after)' +p137708 +sg25268 +S'James I and Anne of Denmark' +p137709 +sg25270 +S'Artist Information (' +p137710 +sa(dp137711 +g25273 +S'Flemish, c. 1553 - 1619' +p137712 +sg25267 +g27 +sg25275 +S'(artist after)' +p137713 +sg25268 +S'James I' +p137714 +sg25270 +S'Artist Information (' +p137715 +sa(dp137716 +g25273 +S', unknown date' +p137717 +sg25267 +g27 +sg25275 +S'\n' +p137718 +sg25268 +S'Anne of Denmark' +p137719 +sg25270 +S'Cornelis Boel' +p137720 +sa(dp137721 +g25273 +S'engraving' +p137722 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137723 +sg25268 +S'Charles I with the Infanta of Spain' +p137724 +sg25270 +S'Unknown 19th Century' +p137725 +sa(dp137726 +g25273 +S'engraving' +p137727 +sg25267 +g27 +sg25275 +S'published 1622' +p137728 +sg25268 +S'Queen Mary I of England' +p137729 +sg25270 +S'Unknown 19th Century' +p137730 +sa(dp137731 +g25273 +S'engraving' +p137732 +sg25267 +g27 +sg25275 +S'published 1622' +p137733 +sg25268 +S'Queen Elizabeth' +p137734 +sg25270 +S'Unknown 19th Century' +p137735 +sa(dp137736 +g25273 +S'Dutch, 1558 - 1617' +p137737 +sg25267 +g27 +sg25275 +S'(artist after)' +p137738 +sg25268 +S'Henry VIII, Edward VI, Mary I and Elizabeth' +p137739 +sg25270 +S'Artist Information (' +p137740 +sa(dp137741 +g25273 +S'engraving' +p137742 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137743 +sg25268 +S'Albert, Archduke of Austria' +p137744 +sg25270 +S'Renold Elstrack' +p137745 +sa(dp137746 +g25273 +S'engraving' +p137747 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137748 +sg25268 +S'Gervase Babington, Bishop' +p137749 +sg25270 +S'Renold Elstrack' +p137750 +sa(dp137751 +g25268 +S'The Last Supper' +p137752 +sg25270 +S'German 15th Century' +p137753 +sg25273 +S'Schreiber, Vol. IX, no. 173, State m' +p137754 +sg25275 +S'\nwoodcut, hand-colored in blue, lt. blue, lavender,vermilion, rose, tan, yellow, and green' +p137755 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a58a.jpg' +p137756 +sg25267 +g27 +sa(dp137757 +g25273 +S'engraving' +p137758 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137759 +sg25268 +S'John Digby, Earl of Bristol, Ambassador to Spain' +p137760 +sg25270 +S'Unknown 19th Century' +p137761 +sa(dp137762 +g25273 +S'engraving' +p137763 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137764 +sg25268 +S'John Digby, Earl of Bristol, Ambassador to Spain' +p137765 +sg25270 +S'Unknown 19th Century' +p137766 +sa(dp137767 +g25273 +S'engraving' +p137768 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137769 +sg25268 +S'William Cecill, First Baron Burghley' +p137770 +sg25270 +S'Renold Elstrack' +p137771 +sa(dp137772 +g25273 +S'engraving' +p137773 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137774 +sg25268 +S'Sir Julius Caesar, Master of the Roules' +p137775 +sg25270 +S'Renold Elstrack' +p137776 +sa(dp137777 +g25273 +S'engraving' +p137778 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137779 +sg25268 +S'Christian IV of Denmark' +p137780 +sg25270 +S'Renold Elstrack' +p137781 +sa(dp137782 +g25273 +S'engraving' +p137783 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137784 +sg25268 +S'Henry Stuart, Lord Darnley' +p137785 +sg25270 +S'Renold Elstrack' +p137786 +sa(dp137787 +g25273 +S'engraving' +p137788 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137789 +sg25268 +S'Henry Stuart, Lord Darnley' +p137790 +sg25270 +S'Renold Elstrack' +p137791 +sa(dp137792 +g25273 +S'engraving' +p137793 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137794 +sg25268 +S'Marc Antonis De Dominis' +p137795 +sg25270 +S'Renold Elstrack' +p137796 +sa(dp137797 +g25273 +S'engraving' +p137798 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137799 +sg25268 +S'Marc Antonis De Dominis' +p137800 +sg25270 +S'Renold Elstrack' +p137801 +sa(dp137802 +g25273 +S'engraving' +p137803 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137804 +sg25268 +S'Marc Antonis De Dominis' +p137805 +sg25270 +S'Renold Elstrack' +p137806 +sa(dp137807 +g25268 +S"Christ Washing the Apostles' Feet" +p137808 +sg25270 +S'German 15th Century' +p137809 +sg25273 +S'Schreiber, Vol. IX, no. 164, State c' +p137810 +sg25275 +S'\nwoodcut, hand-colored in tan, green, rose, and yellow' +p137811 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a503.jpg' +p137812 +sg25267 +g27 +sa(dp137813 +g25273 +S'engraving' +p137814 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137815 +sg25268 +S'Frederick Christian of Denmark' +p137816 +sg25270 +S'Renold Elstrack' +p137817 +sa(dp137818 +g25273 +S'engraving' +p137819 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137820 +sg25268 +S'Frederick Christian of Denmark' +p137821 +sg25270 +S'Renold Elstrack' +p137822 +sa(dp137823 +g25273 +S'engraving' +p137824 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137825 +sg25268 +S'John, Lord Harrington of Exton' +p137826 +sg25270 +S'Renold Elstrack' +p137827 +sa(dp137828 +g25273 +S'engraving' +p137829 +sg25267 +g27 +sg25275 +S'published 1627' +p137830 +sg25268 +S'Isabella Clara Eugenia, Infanta of Spain, wife of Archduke of Austria' +p137831 +sg25270 +S'Renold Elstrack' +p137832 +sa(dp137833 +g25273 +S'engraving' +p137834 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137835 +sg25268 +S'Tobias Matthew, D.D., Archbishop of York' +p137836 +sg25270 +S'Renold Elstrack' +p137837 +sa(dp137838 +g25273 +S'engraving' +p137839 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137840 +sg25268 +S'Tobias Matthew, D.D., Archbishop of York' +p137841 +sg25270 +S'Renold Elstrack' +p137842 +sa(dp137843 +g25273 +S'engraving' +p137844 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137845 +sg25268 +S'Sir Thomas More' +p137846 +sg25270 +S'Renold Elstrack' +p137847 +sa(dp137848 +g25273 +S'engraving' +p137849 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137850 +sg25268 +S'Sir Thomas Overbury' +p137851 +sg25270 +S'Renold Elstrack' +p137852 +sa(dp137853 +g25273 +S'engraving' +p137854 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137855 +sg25268 +S'Edmond Shaffield, First Earl of Malgrave' +p137856 +sg25270 +S'Renold Elstrack' +p137857 +sa(dp137858 +g25273 +S'engraving' +p137859 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137860 +sg25268 +S'Jon van Olden-Bernevelt' +p137861 +sg25270 +S'Renold Elstrack' +p137862 +sa(dp137863 +g25268 +S'The Virgin in a Robe Embroidered with Ears of Corn' +p137864 +sg25270 +S'German 15th Century' +p137865 +sg25273 +S'sheet: 8.5 x 6.6 cm (3 3/8 x 2 5/8 in.)' +p137866 +sg25275 +S'\nwoodcut, hand-colored in blue, green, orange, yellow, rose, and gold' +p137867 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a546.jpg' +p137868 +sg25267 +g27 +sa(dp137869 +g25273 +S'engraving' +p137870 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137871 +sg25268 +S'William Perkins, D.D.' +p137872 +sg25270 +S'Renold Elstrack' +p137873 +sa(dp137874 +g25273 +S'engraving' +p137875 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137876 +sg25268 +S'William Perkins, D.D.' +p137877 +sg25270 +S'Renold Elstrack' +p137878 +sa(dp137879 +g25273 +S'engraving' +p137880 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137881 +sg25268 +S'Sir Philip Sidney' +p137882 +sg25270 +S'Renold Elstrack' +p137883 +sa(dp137884 +g25273 +S'engraving' +p137885 +sg25267 +g27 +sg25275 +S'published 1651' +p137886 +sg25268 +S'Robert Carr, Earl of Somerset and His Countess' +p137887 +sg25270 +S'Renold Elstrack' +p137888 +sa(dp137889 +g25273 +S'engraving' +p137890 +sg25267 +g27 +sg25275 +S'published 1651' +p137891 +sg25268 +S'Robert Carr, Earl of Somerset and His Countess' +p137892 +sg25270 +S'Renold Elstrack' +p137893 +sa(dp137894 +g25273 +S'engraving' +p137895 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137896 +sg25268 +S'Thomas Howard, First Earl of Suffolk' +p137897 +sg25270 +S'Renold Elstrack' +p137898 +sa(dp137899 +g25273 +S'engraving' +p137900 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137901 +sg25268 +S'Thomas Howard, First Earl of Suffolk' +p137902 +sg25270 +S'Renold Elstrack' +p137903 +sa(dp137904 +g25273 +S'engraving' +p137905 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137906 +sg25268 +S'Thomas Sutton, Founder of the Charterhouse' +p137907 +sg25270 +S'Renold Elstrack' +p137908 +sa(dp137909 +g25273 +S'engraving' +p137910 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137911 +sg25268 +S'Sir Richard Whittington' +p137912 +sg25270 +S'Renold Elstrack' +p137913 +sa(dp137914 +g25273 +S'engraving' +p137915 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137916 +sg25268 +S'Sir Richard Whittington' +p137917 +sg25270 +S'Renold Elstrack' +p137918 +sa(dp137919 +g25268 +S'The Virgin in a Robe Embroidered with Ears of Corn' +p137920 +sg25270 +S'German 15th Century' +p137921 +sg25273 +S'sheet: 8.8 x 6.6 cm (3 7/16 x 2 5/8 in.)' +p137922 +sg25275 +S'\nwoodcut, hand-colored in gray, rose, yellow, red, blue, green, gold, and orange' +p137923 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a547.jpg' +p137924 +sg25267 +g27 +sa(dp137925 +g25273 +S'engraving' +p137926 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137927 +sg25268 +S'Thomas Wolsey, Cardinal Archbishop of York' +p137928 +sg25270 +S'Renold Elstrack' +p137929 +sa(dp137930 +g25273 +S'engraving' +p137931 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137932 +sg25268 +S'Thomas Wolsey, Cardinal' +p137933 +sg25270 +S'Renold Elstrack' +p137934 +sa(dp137935 +g25273 +S'English, 1571 - 1625' +p137936 +sg25267 +g27 +sg25275 +S'(artist after)' +p137937 +sg25268 +S'Thomas Wolsey, Cardinal' +p137938 +sg25270 +S'Artist Information (' +p137939 +sa(dp137940 +g25273 +S'engraving' +p137941 +sg25267 +g27 +sg25275 +S'published 1608' +p137942 +sg25268 +S'Title Page, De Republica Ecclesiatica by MarcAntonio de Dominis' +p137943 +sg25270 +S'Renold Elstrack' +p137944 +sa(dp137945 +g25273 +S'engraving' +p137946 +sg25267 +g27 +sg25275 +S'published 1608' +p137947 +sg25268 +S'Queen Elizabeth in Parliament' +p137948 +sg25270 +S'Renold Elstrack' +p137949 +sa(dp137950 +g25273 +S'engraving' +p137951 +sg25267 +g27 +sg25275 +S'published 1610' +p137952 +sg25268 +S'James I Enthroned' +p137953 +sg25270 +S'Renold Elstrack' +p137954 +sa(dp137955 +g25273 +S'engraving' +p137956 +sg25267 +g27 +sg25275 +S'published 1610' +p137957 +sg25268 +S'James I in Parliament' +p137958 +sg25270 +S'Renold Elstrack' +p137959 +sa(dp137960 +g25273 +S'engraving' +p137961 +sg25267 +g27 +sg25275 +S'published 1619' +p137962 +sg25268 +S'Title Page. James I, an Opera' +p137963 +sg25270 +S'Renold Elstrack' +p137964 +sa(dp137965 +g25273 +S'engraving' +p137966 +sg25267 +g27 +sg25275 +S'published 1621' +p137967 +sg25268 +S'Title Page. English Catechisme by John Mayer' +p137968 +sg25270 +S'Renold Elstrack' +p137969 +sa(dp137970 +g25273 +S'engraving' +p137971 +sg25267 +g27 +sg25275 +S'published 1652' +p137972 +sg25268 +S'Title Page to Sir Walter Raleigh, History of the World' +p137973 +sg25270 +S'Renold Elstrack' +p137974 +sa(dp137975 +g25268 +S'The Visitation' +p137976 +sg25270 +S'German 15th Century' +p137977 +sg25273 +S'Schreiber, Vol. IX, no. 56, State m' +p137978 +sg25275 +S'\nwoodcut in dark brown, hand-colored in red, yellow, green, lt. blue, pink, blue, gold, orange' +p137979 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a504.jpg' +p137980 +sg25267 +g27 +sa(dp137981 +g25273 +S'engraving' +p137982 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137983 +sg25268 +S'Title Page. Jean de Serres, Generall Historieof France' +p137984 +sg25270 +S'Renold Elstrack' +p137985 +sa(dp137986 +g25273 +S'engraving' +p137987 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137988 +sg25268 +S'Domini Robert Episcopi Salisbury (Robert Abbot, Bishop of Salisbury)' +p137989 +sg25270 +S'Francis Delaram' +p137990 +sa(dp137991 +g25273 +S'engraving' +p137992 +sg25267 +g27 +sg25275 +S'unknown date\n' +p137993 +sg25268 +S'Catherine Mannes' +p137994 +sg25270 +S'Francis Delaram' +p137995 +sa(dp137996 +g25273 +S'engraving' +p137997 +sg25267 +g27 +sg25275 +S'published 1622' +p137998 +sg25268 +S'Willmus Burton de Falde (William Burton de Falde)' +p137999 +sg25270 +S'Francis Delaram' +p138000 +sa(dp138001 +g25273 +S'engraving' +p138002 +sg25267 +g27 +sg25275 +S'published 1616' +p138003 +sg25268 +S'Charles I, as Prince of Wales' +p138004 +sg25270 +S'Francis Delaram' +p138005 +sa(dp138006 +g25273 +S'engraving' +p138007 +sg25267 +g27 +sg25275 +S'published 1616' +p138008 +sg25268 +S'Charles I, as Prince of Wales' +p138009 +sg25270 +S'Francis Delaram' +p138010 +sa(dp138011 +g25273 +S'engraving' +p138012 +sg25267 +g27 +sg25275 +S'published 1630' +p138013 +sg25268 +S'Queen Elizabeth' +p138014 +sg25270 +S'Francis Delaram' +p138015 +sa(dp138016 +g25273 +S'engraving' +p138017 +sg25267 +g27 +sg25275 +S'published 1630' +p138018 +sg25268 +S'Queen Elizabeth' +p138019 +sg25270 +S'Francis Delaram' +p138020 +sa(dp138021 +g25273 +S'engraving' +p138022 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138023 +sg25268 +S'Elizabeth, Queen of Bohemia' +p138024 +sg25270 +S'Francis Delaram' +p138025 +sa(dp138026 +g25273 +S'engraving' +p138027 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138028 +sg25268 +S'Frederick V, King of Bohemia' +p138029 +sg25270 +S'Francis Delaram' +p138030 +sa(dp138031 +g25268 +S'Madonna and Child with Saint Peter and Saint John the Evangelist [right panel]' +p138032 +sg25270 +S'Nardo di Cione' +p138033 +sg25273 +S'tempera on panel' +p138034 +sg25275 +S'probably c. 1360' +p138035 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f5b3.jpg' +p138036 +sg25267 +g27 +sa(dp138037 +g25268 +S'Saint Augustine' +p138038 +sg25270 +S'German 15th Century' +p138039 +sg25273 +S'Schreiber, Vol. IX, no. 1246, State m' +p138040 +sg25275 +S'\nwoodcut, hand-colored in red lake, black, blue, green, yellow, gold, and orange' +p138041 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a619.jpg' +p138042 +sg25267 +g27 +sa(dp138043 +g25273 +S'engraving' +p138044 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138045 +sg25268 +S'Frederick V, King of Bohemia' +p138046 +sg25270 +S'Francis Delaram' +p138047 +sa(dp138048 +g25273 +S'engraving' +p138049 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138050 +sg25268 +S'Prince Frederick Henry' +p138051 +sg25270 +S'Francis Delaram' +p138052 +sa(dp138053 +g25273 +S'engraving' +p138054 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138055 +sg25268 +S'Sir Thomas Grisham' +p138056 +sg25270 +S'Francis Delaram' +p138057 +sa(dp138058 +g25273 +S'engraving' +p138059 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138060 +sg25268 +S'Thomae Gresham, Equi. Aura (Sir Thomas Gresham)' +p138061 +sg25270 +S'Francis Delaram' +p138062 +sa(dp138063 +g25273 +S'engraving' +p138064 +sg25267 +g27 +sg25275 +S'1641' +p138065 +sg25268 +S'James I' +p138066 +sg25270 +S'Francis Delaram' +p138067 +sa(dp138068 +g25273 +S'engraving' +p138069 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138070 +sg25268 +S'James I' +p138071 +sg25270 +S'Francis Delaram' +p138072 +sa(dp138073 +g25273 +S'engraving' +p138074 +sg25267 +g27 +sg25275 +S'1615' +p138075 +sg25268 +S"Matthias de l'Obel" +p138076 +sg25270 +S'Francis Delaram' +p138077 +sa(dp138078 +g25273 +S'engraving' +p138079 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138080 +sg25268 +S'Henricus Montagu (Henry Montague, First Earl of Manchester)' +p138081 +sg25270 +S'Francis Delaram' +p138082 +sa(dp138083 +g25273 +S'engraving' +p138084 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138085 +sg25268 +S'Henricus Montagu (Henry Montague, First Earl of Manchester)' +p138086 +sg25270 +S'Francis Delaram' +p138087 +sa(dp138088 +g25273 +S'engraving' +p138089 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138090 +sg25268 +S'Henricus Percye (Henry Percy, Ninth Earl of Northumberland)' +p138091 +sg25270 +S'Francis Delaram' +p138092 +sa(dp138093 +g25268 +S'Saint James the Greater' +p138094 +sg25270 +S'German 15th Century' +p138095 +sg25273 +S'Schreiber, Vol. IX, no. 1503, State m' +p138096 +sg25275 +S'\nwoodcut in brown, hand-colored in red lake, blue, green, yellow, gold, and orange' +p138097 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a61c.jpg' +p138098 +sg25267 +g27 +sa(dp138099 +g25273 +S'engraving' +p138100 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138101 +sg25268 +S'Henricus Percye (Henry Percy, Ninth Earl of Northumberland)' +p138102 +sg25270 +S'Francis Delaram' +p138103 +sa(dp138104 +g25273 +S'engraving' +p138105 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138106 +sg25268 +S'Ernestus Earle of Mansfield' +p138107 +sg25270 +S'Francis Delaram' +p138108 +sa(dp138109 +g25273 +S'engraving' +p138110 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138111 +sg25268 +S'Henricus Percye (Henry Percy, 9th Earl of Northumberland)' +p138112 +sg25270 +S'Francis Delaram' +p138113 +sa(dp138114 +g25273 +S'engraving' +p138115 +sg25267 +g27 +sg25275 +S'1618' +p138116 +sg25268 +S"Arthur O'Toole" +p138117 +sg25270 +S'Francis Delaram' +p138118 +sa(dp138119 +g25273 +S'engraving' +p138120 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138121 +sg25268 +S'The Ladie Frances, Countesse of Hertford (Frances Howard)' +p138122 +sg25270 +S'Francis Delaram' +p138123 +sa(dp138124 +g25273 +S'engraving' +p138125 +sg25267 +g27 +sg25275 +S'1623' +p138126 +sg25268 +S'Frances Howard, Duchess of Richmond' +p138127 +sg25270 +S'Francis Delaram' +p138128 +sa(dp138129 +g25273 +S'engraving' +p138130 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138131 +sg25268 +S'Guliemus Segar (Sir William Segar, Garter King of Arms)' +p138132 +sg25270 +S'Francis Delaram' +p138133 +sa(dp138134 +g25273 +S'engraving' +p138135 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138136 +sg25268 +S'Guliemus Segar (Sir William Segar)' +p138137 +sg25270 +S'Francis Delaram' +p138138 +sa(dp138139 +g25273 +S'engraving' +p138140 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138141 +sg25268 +S'Will Sommers, Kinge Henryes Jester' +p138142 +sg25270 +S'Francis Delaram' +p138143 +sa(dp138144 +g25273 +S'engraving' +p138145 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138146 +sg25268 +S'Will Sommers, Kinge Henryes Jester' +p138147 +sg25270 +S'Francis Delaram' +p138148 +sa(dp138149 +g25268 +S'David Playing the Harp' +p138150 +sg25270 +S'German 15th Century' +p138151 +sg25273 +S'Schreiber, Vol. IX, no. 19, State m' +p138152 +sg25275 +S'\nwoodcut' +p138153 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a502.jpg' +p138154 +sg25267 +g27 +sa(dp138155 +g25273 +S'engraving' +p138156 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138157 +sg25268 +S'Horaty Veer, Equitus (Horace Vere, Lord Vere of Telbury)' +p138158 +sg25270 +S'Francis Delaram' +p138159 +sa(dp138160 +g25273 +S'engraving' +p138161 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138162 +sg25268 +S'John Williams, D.D., Archbishop of York and Lord Keeper' +p138163 +sg25270 +S'Francis Delaram' +p138164 +sa(dp138165 +g25273 +S'engraving' +p138166 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138167 +sg25268 +S'John Williams, D.D., Archbishop of York and Lord Keeper' +p138168 +sg25270 +S'Francis Delaram' +p138169 +sa(dp138170 +g25273 +S'engraving' +p138171 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138172 +sg25268 +S'Georgii Wither (George Wither)' +p138173 +sg25270 +S'Francis Delaram' +p138174 +sa(dp138175 +g25273 +S'engraving' +p138176 +sg25267 +g27 +sg25275 +S'1622' +p138177 +sg25268 +S'Frontispiece to William Burton, Description of Leicestershire' +p138178 +sg25270 +S'Francis Delaram' +p138179 +sa(dp138180 +g25273 +S'engraving' +p138181 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138182 +sg25268 +S'George Montaigne, Archbishop of York' +p138183 +sg25270 +S'George Yeates' +p138184 +sa(dp138185 +g25273 +S'engraving' +p138186 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138187 +sg25268 +S'Mustapha III, Sultan of Turkey' +p138188 +sg25270 +S'George Yeates' +p138189 +sa(dp138190 +g25273 +S', unknown date' +p138191 +sg25267 +g27 +sg25275 +S'\n' +p138192 +sg25268 +S'Abbot George, Archbishop of Canterbury' +p138193 +sg25270 +S'Simon van de Passe' +p138194 +sa(dp138195 +g25273 +S', unknown date' +p138196 +sg25267 +g27 +sg25275 +S'\n' +p138197 +sg25268 +S'Abbot George, Archbishop of Canterbury' +p138198 +sg25270 +S'Simon van de Passe' +p138199 +sa(dp138200 +g25273 +S', unknown date' +p138201 +sg25267 +g27 +sg25275 +S'\n' +p138202 +sg25268 +S'Lancelot Andrews, Bishop of Ely and Winchester' +p138203 +sg25270 +S'Simon van de Passe' +p138204 +sa(dp138205 +g25268 +S'Ecce Homo' +p138206 +sg25270 +S'German 15th Century' +p138207 +sg25273 +S'Schreiber, Vol. *, no. 334, State a' +p138208 +sg25275 +S'\nwoodcut, hand-colored in green, brown, lt. yellow,blue, red, and gold' +p138209 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a509.jpg' +p138210 +sg25267 +g27 +sa(dp138211 +g25273 +S', unknown date' +p138212 +sg25267 +g27 +sg25275 +S'\n' +p138213 +sg25268 +S'Lancelot Andrews, Bishop of Ely and Winchester' +p138214 +sg25270 +S'Simon van de Passe' +p138215 +sa(dp138216 +g25273 +S', unknown date' +p138217 +sg25267 +g27 +sg25275 +S'\n' +p138218 +sg25268 +S'Thomas Howard, Second Earl of Arundel and Surrey' +p138219 +sg25270 +S'Simon van de Passe' +p138220 +sa(dp138221 +g25273 +S', unknown date' +p138222 +sg25267 +g27 +sg25275 +S'\n' +p138223 +sg25268 +S'Sir Francis Bacon' +p138224 +sg25270 +S'Simon van de Passe' +p138225 +sa(dp138226 +g25273 +S', unknown date' +p138227 +sg25267 +g27 +sg25275 +S'\n' +p138228 +sg25268 +S'Sir Francis Bacon' +p138229 +sg25270 +S'Simon van de Passe' +p138230 +sa(dp138231 +g25273 +S', unknown date' +p138232 +sg25267 +g27 +sg25275 +S'\n' +p138233 +sg25268 +S'Sir Francis Bacon' +p138234 +sg25270 +S'Simon van de Passe' +p138235 +sa(dp138236 +g25273 +S', unknown date' +p138237 +sg25267 +g27 +sg25275 +S'\n' +p138238 +sg25268 +S'Sir Francis Bacon' +p138239 +sg25270 +S'Simon van de Passe' +p138240 +sa(dp138241 +g25273 +S', unknown date' +p138242 +sg25267 +g27 +sg25275 +S'\n' +p138243 +sg25268 +S'Sir Francis Bacon' +p138244 +sg25270 +S'Simon van de Passe' +p138245 +sa(dp138246 +g25273 +S', unknown date' +p138247 +sg25267 +g27 +sg25275 +S'\n' +p138248 +sg25268 +S'Sir Francis Bacon' +p138249 +sg25270 +S'Simon van de Passe' +p138250 +sa(dp138251 +g25273 +S', unknown date' +p138252 +sg25267 +g27 +sg25275 +S'\n' +p138253 +sg25268 +S'Sir Francis Bacon' +p138254 +sg25270 +S'Simon van de Passe' +p138255 +sa(dp138256 +g25273 +S', published 1638' +p138257 +sg25267 +g27 +sg25275 +S'\n' +p138258 +sg25268 +S'Sir Francis Bacon' +p138259 +sg25270 +S'Simon van de Passe' +p138260 +sa(dp138261 +g25268 +S'Beheading of Saint Catherine (?)' +p138262 +sg25270 +S'French 15th Century' +p138263 +sg25273 +S'Schreiber, undescribed' +p138264 +sg25275 +S'\nwoodcut, hand-colored' +p138265 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a00082f6.jpg' +p138266 +sg25267 +g27 +sa(dp138267 +g25273 +S', unknown date' +p138268 +sg25267 +g27 +sg25275 +S'\n' +p138269 +sg25268 +S'Sir Francis Bacon' +p138270 +sg25270 +S'Simon van de Passe' +p138271 +sa(dp138272 +g25273 +S', unknown date' +p138273 +sg25267 +g27 +sg25275 +S'\n' +p138274 +sg25268 +S'Sir Francis Bacon' +p138275 +sg25270 +S'Simon van de Passe' +p138276 +sa(dp138277 +g25273 +S', unknown date' +p138278 +sg25267 +g27 +sg25275 +S'\n' +p138279 +sg25268 +S'Sir Francis Bacon' +p138280 +sg25270 +S'Simon van de Passe' +p138281 +sa(dp138282 +g25273 +S', unknown date' +p138283 +sg25267 +g27 +sg25275 +S'\n' +p138284 +sg25268 +S'Sir Francis Bacon' +p138285 +sg25270 +S'Simon van de Passe' +p138286 +sa(dp138287 +g25273 +S', unknown date' +p138288 +sg25267 +g27 +sg25275 +S'\n' +p138289 +sg25268 +S'Sir Francis Bacon' +p138290 +sg25270 +S'Simon van de Passe' +p138291 +sa(dp138292 +g25273 +S', unknown date' +p138293 +sg25267 +g27 +sg25275 +S'\n' +p138294 +sg25268 +S'Sir Francis Bacon' +p138295 +sg25270 +S'Simon van de Passe' +p138296 +sa(dp138297 +g25273 +S', unknown date' +p138298 +sg25267 +g27 +sg25275 +S'\n' +p138299 +sg25268 +S'Thomas, First Baron Coventry' +p138300 +sg25270 +S'Simon van de Passe' +p138301 +sa(dp138302 +g25273 +S', unknown date' +p138303 +sg25267 +g27 +sg25275 +S'\n' +p138304 +sg25268 +S'Sir Francis Bacon' +p138305 +sg25270 +S'Simon van de Passe' +p138306 +sa(dp138307 +g25273 +S', unknown date' +p138308 +sg25267 +g27 +sg25275 +S'\n' +p138309 +sg25268 +S'Sir Francis Bacon' +p138310 +sg25270 +S'Crispijn van de Passe II' +p138311 +sa(dp138312 +g25273 +S', unknown date' +p138313 +sg25267 +g27 +sg25275 +S'\n' +p138314 +sg25268 +S'Sir Francis Bacon' +p138315 +sg25270 +S'Crispijn van de Passe II' +p138316 +sa(dp138317 +g25268 +S'Man Walking Towards a Grave' +p138318 +sg25270 +S'German 15th Century' +p138319 +sg25273 +S'Schreiber, undescribed' +p138320 +sg25275 +S'\nhand-colored woodcut' +p138321 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5a9.jpg' +p138322 +sg25267 +g27 +sa(dp138323 +g25273 +S', unknown date' +p138324 +sg25267 +g27 +sg25275 +S'\n' +p138325 +sg25268 +S'William Knollis, Earl of Banbury, When Viscount Wallingford' +p138326 +sg25270 +S'Simon van de Passe' +p138327 +sa(dp138328 +g25273 +S', unknown date' +p138329 +sg25267 +g27 +sg25275 +S'\n' +p138330 +sg25268 +S'William Knollis, Earl of Banbury, When Viscount Wallingford' +p138331 +sg25270 +S'Simon van de Passe' +p138332 +sa(dp138333 +g25273 +S', unknown date' +p138334 +sg25267 +g27 +sg25275 +S'\n' +p138335 +sg25268 +S'Lucia Harrington, Countess of Bedford' +p138336 +sg25270 +S'Simon van de Passe' +p138337 +sa(dp138338 +g25273 +S', unknown date' +p138339 +sg25267 +g27 +sg25275 +S'\n' +p138340 +sg25268 +S'Lucia Harrington, Countess of Bedford' +p138341 +sg25270 +S'Simon van de Passe' +p138342 +sa(dp138343 +g25273 +S', unknown date' +p138344 +sg25267 +g27 +sg25275 +S'\n' +p138345 +sg25268 +S'Lucia Harrington, Countess of Bedford' +p138346 +sg25270 +S'Simon van de Passe' +p138347 +sa(dp138348 +g25273 +S', unknown date' +p138349 +sg25267 +g27 +sg25275 +S'\n' +p138350 +sg25268 +S'Anne Bill' +p138351 +sg25270 +S'Simon van de Passe' +p138352 +sa(dp138353 +g25273 +S', unknown date' +p138354 +sg25267 +g27 +sg25275 +S'\n' +p138355 +sg25268 +S'Anne Bill' +p138356 +sg25270 +S'Simon van de Passe' +p138357 +sa(dp138358 +g25273 +S', unknown date' +p138359 +sg25267 +g27 +sg25275 +S'\n' +p138360 +sg25268 +S'Anne Bill' +p138361 +sg25270 +S'Simon van de Passe' +p138362 +sa(dp138363 +g25273 +S', unknown date' +p138364 +sg25267 +g27 +sg25275 +S'\n' +p138365 +sg25268 +S'Anne Bill' +p138366 +sg25270 +S'Simon van de Passe' +p138367 +sa(dp138368 +g25273 +S'German, c. 1595 - 1647' +p138369 +sg25267 +g27 +sg25275 +S'(artist after)' +p138370 +sg25268 +S'Anne Bill' +p138371 +sg25270 +S'Artist Information (' +p138372 +sa(dp138373 +g25268 +S'The Wounds of Christ with the Symbols of the Passion' +p138374 +sg25270 +S'German 15th Century' +p138375 +sg25273 +S'Overall: 12 x 8.1 cm (4 3/4 x 3 3/16 in.)\r\noverall (external frame dimensions): 39.4 x 31.8 cm (15 1/2 x 12 1/2 in.)' +p138376 +sg25275 +S'\nwoodcut, hand-colored in vermilion, green, and yellow; mounted on sheet that covers manuscript on verso' +p138377 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005620.jpg' +p138378 +sg25267 +g27 +sa(dp138379 +g25273 +S', unknown date' +p138380 +sg25267 +g27 +sg25275 +S'\n' +p138381 +sg25268 +S'Thomas Egerton, First Viscount of Brackley' +p138382 +sg25270 +S'Simon van de Passe' +p138383 +sa(dp138384 +g25273 +S', unknown date' +p138385 +sg25267 +g27 +sg25275 +S'\n' +p138386 +sg25268 +S'Thomas Egerton, First Viscount of Brackley' +p138387 +sg25270 +S'Simon van de Passe' +p138388 +sa(dp138389 +g25273 +S', 1622' +p138390 +sg25267 +g27 +sg25275 +S'\n' +p138391 +sg25268 +S'Christian, Duke of Brunswick' +p138392 +sg25270 +S'Simon van de Passe' +p138393 +sa(dp138394 +g25273 +S', unknown date' +p138395 +sg25267 +g27 +sg25275 +S'\n' +p138396 +sg25268 +S'Christian, Duke of Brunswick' +p138397 +sg25270 +S'Simon van de Passe' +p138398 +sa(dp138399 +g25273 +S', unknown date' +p138400 +sg25267 +g27 +sg25275 +S'\n' +p138401 +sg25268 +S'Christian, Duke of Brunswick' +p138402 +sg25270 +S'Simon van de Passe' +p138403 +sa(dp138404 +g25273 +S', unknown date' +p138405 +sg25267 +g27 +sg25275 +S'\n' +p138406 +sg25268 +S'George Villiers, First Duke of Buckingham' +p138407 +sg25270 +S'Simon van de Passe' +p138408 +sa(dp138409 +g25273 +S', unknown date' +p138410 +sg25267 +g27 +sg25275 +S'\n' +p138411 +sg25268 +S'George Villiers, First Duke of Buckingham' +p138412 +sg25270 +S'Simon van de Passe' +p138413 +sa(dp138414 +g25273 +S', unknown date' +p138415 +sg25267 +g27 +sg25275 +S'\n' +p138416 +sg25268 +S'James Hay, First Earl of Carlisle' +p138417 +sg25270 +S'Simon van de Passe' +p138418 +sa(dp138419 +g25273 +S', published 1616' +p138420 +sg25267 +g27 +sg25275 +S'\n' +p138421 +sg25268 +S'Charles I, King of England as Duke of York' +p138422 +sg25270 +S'Simon van de Passe' +p138423 +sa(dp138424 +g25273 +S', published 1619' +p138425 +sg25267 +g27 +sg25275 +S'\n' +p138426 +sg25268 +S'Charles I, King of England, as Prince of Wales' +p138427 +sg25270 +S'Simon van de Passe' +p138428 +sa(dp138429 +g25268 +S'Monogram JHS in a Flaming Circle' +p138430 +sg25270 +S'German 15th Century' +p138431 +sg25273 +S'Schreiber, Vol. IX, no. 1819, State p' +p138432 +sg25275 +S'\nwoodcut, hand-colored in red, green, yellow, and lavender-pink' +p138433 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a59b.jpg' +p138434 +sg25267 +g27 +sa(dp138435 +g25273 +S', unknown date' +p138436 +sg25267 +g27 +sg25275 +S'\n' +p138437 +sg25268 +S'Charles I, King of England, as Duke of York' +p138438 +sg25270 +S'Simon van de Passe' +p138439 +sa(dp138440 +g25273 +S', unknown date' +p138441 +sg25267 +g27 +sg25275 +S'\n' +p138442 +sg25268 +S'Sir Edward Coke' +p138443 +sg25270 +S'Simon van de Passe' +p138444 +sa(dp138445 +g25273 +S', unknown date' +p138446 +sg25267 +g27 +sg25275 +S'\n' +p138447 +sg25268 +S'Richard Sackville, Third Earl of Dorset' +p138448 +sg25270 +S'Simon van de Passe' +p138449 +sa(dp138450 +g25273 +S', unknown date' +p138451 +sg25267 +g27 +sg25275 +S'\n' +p138452 +sg25268 +S'Richard Sackville, Third Earl of Dorset' +p138453 +sg25270 +S'Simon van de Passe' +p138454 +sa(dp138455 +g25273 +S', unknown date' +p138456 +sg25267 +g27 +sg25275 +S'\n' +p138457 +sg25268 +S'Diego Sarmiento de Acuna, Count of Gondomar' +p138458 +sg25270 +S'Simon van de Passe' +p138459 +sa(dp138460 +g25273 +S', unknown date' +p138461 +sg25267 +g27 +sg25275 +S'\n' +p138462 +sg25268 +S'Diego Sarmiento de Acuna, Count of Gondomar' +p138463 +sg25270 +S'Simon van de Passe' +p138464 +sa(dp138465 +g25273 +S', unknown date' +p138466 +sg25267 +g27 +sg25275 +S'\n' +p138467 +sg25268 +S'Diego Sarmiento de Acuna, Count of Gondomar' +p138468 +sg25270 +S'Simon van de Passe' +p138469 +sa(dp138470 +g25273 +S', unknown date' +p138471 +sg25267 +g27 +sg25275 +S'\n' +p138472 +sg25268 +S'Sir Henry Hobart' +p138473 +sg25270 +S'Simon van de Passe' +p138474 +sa(dp138475 +g25273 +S', unknown date' +p138476 +sg25267 +g27 +sg25275 +S'\n' +p138477 +sg25268 +S'Sir Henry Hobart' +p138478 +sg25270 +S'Simon van de Passe' +p138479 +sa(dp138480 +g25273 +S', 1641' +p138481 +sg25267 +g27 +sg25275 +S'\n' +p138482 +sg25268 +S'Sir Henry Hobart' +p138483 +sg25270 +S'Simon van de Passe' +p138484 +sa(dp138485 +g25268 +S'Christ as the Man of Sorrows' +p138486 +sg25270 +S'Netherlandish 15th Century' +p138487 +sg25273 +S'Schreiber, Vol. IX, no. 908, State d' +p138488 +sg25275 +S'\nwoodcut, hand-colored in green, yellow, red and brown' +p138489 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cce6.jpg' +p138490 +sg25267 +g27 +sa(dp138491 +g25273 +S', published 1616' +p138492 +sg25267 +g27 +sg25275 +S'\n' +p138493 +sg25268 +S'James I of England' +p138494 +sg25270 +S'Simon van de Passe' +p138495 +sa(dp138496 +g25273 +S', published 1616' +p138497 +sg25267 +g27 +sg25275 +S'\n' +p138498 +sg25268 +S'James I of England' +p138499 +sg25270 +S'Simon van de Passe' +p138500 +sa(dp138501 +g25273 +S', unknown date' +p138502 +sg25267 +g27 +sg25275 +S'\n' +p138503 +sg25268 +S'John King, Bishop of London' +p138504 +sg25270 +S'Simon van de Passe' +p138505 +sa(dp138506 +g25273 +S', unknown date' +p138507 +sg25267 +g27 +sg25275 +S'\n' +p138508 +sg25268 +S'John King, Bishop of London' +p138509 +sg25270 +S'Simon van de Passe' +p138510 +sa(dp138511 +g25273 +S', unknown date' +p138512 +sg25267 +g27 +sg25275 +S'\n' +p138513 +sg25268 +S'Robert Sidney, First Earl of Leicester' +p138514 +sg25270 +S'Simon van de Passe' +p138515 +sa(dp138516 +g25273 +S', unknown date' +p138517 +sg25267 +g27 +sg25275 +S'\n' +p138518 +sg25268 +S'Robert Sidney, First Earl of Leicester' +p138519 +sg25270 +S'Simon van de Passe' +p138520 +sa(dp138521 +g25273 +S', 1623' +p138522 +sg25267 +g27 +sg25275 +S'\n' +p138523 +sg25268 +S'Ernest, Count of Mansfeld' +p138524 +sg25270 +S'Simon van de Passe' +p138525 +sa(dp138526 +g25273 +S', 1622' +p138527 +sg25267 +g27 +sg25275 +S'\n' +p138528 +sg25268 +S'Maria of Austria, Infanta of Spain' +p138529 +sg25270 +S'Simon van de Passe' +p138530 +sa(dp138531 +g25273 +S', unknown date' +p138532 +sg25267 +g27 +sg25275 +S'\n' +p138533 +sg25268 +S'Maria of Austria, Infanta of Spain' +p138534 +sg25270 +S'Simon van de Passe' +p138535 +sa(dp138536 +g25273 +S', unknown date' +p138537 +sg25267 +g27 +sg25275 +S'\n' +p138538 +sg25268 +S'James Montagu, Bishop of Winchester' +p138539 +sg25270 +S'Simon van de Passe' +p138540 +sa(dp138541 +g25268 +S'Christ Crowned with Thorns' +p138542 +sg25270 +S'German 15th Century' +p138543 +sg25273 +S'Schreiber, no. 314, State c' +p138544 +sg25275 +S'\nwoodcut' +p138545 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a657.jpg' +p138546 +sg25267 +g27 +sa(dp138547 +g25273 +S', unknown date' +p138548 +sg25267 +g27 +sg25275 +S'\n' +p138549 +sg25268 +S'Sir Robert Naunton' +p138550 +sg25270 +S'Simon van de Passe' +p138551 +sa(dp138552 +g25273 +S', unknown date' +p138553 +sg25267 +g27 +sg25275 +S'\n' +p138554 +sg25268 +S'Charles Howard, First Earl of Nottingham' +p138555 +sg25270 +S'Simon van de Passe' +p138556 +sa(dp138557 +g25273 +S', unknown date' +p138558 +sg25267 +g27 +sg25275 +S'\n' +p138559 +sg25268 +S'Sir Thomas Overbury' +p138560 +sg25270 +S'Simon van de Passe' +p138561 +sa(dp138562 +g25273 +S', unknown date' +p138563 +sg25267 +g27 +sg25275 +S'\n' +p138564 +sg25268 +S'Sir Thomas Overbury' +p138565 +sg25270 +S'Simon van de Passe' +p138566 +sa(dp138567 +g25273 +S', unknown date' +p138568 +sg25267 +g27 +sg25275 +S'\n' +p138569 +sg25268 +S'Sir Thomas Overbury' +p138570 +sg25270 +S'Simon van de Passe' +p138571 +sa(dp138572 +g25273 +S'German, c. 1595 - 1647' +p138573 +sg25267 +g27 +sg25275 +S'(artist after)' +p138574 +sg25268 +S'Sir Thomas Overbury' +p138575 +sg25270 +S'Artist Information (' +p138576 +sa(dp138577 +g25273 +S'German, c. 1595 - 1647' +p138578 +sg25267 +g27 +sg25275 +S'(artist after)' +p138579 +sg25268 +S'Sir Thomas Overbury' +p138580 +sg25270 +S'Artist Information (' +p138581 +sa(dp138582 +g25273 +S', unknown date' +p138583 +sg25267 +g27 +sg25275 +S'\n' +p138584 +sg25268 +S'Mary Sidney, Countess of Pembroke' +p138585 +sg25270 +S'Simon van de Passe' +p138586 +sa(dp138587 +g25273 +S', unknown date' +p138588 +sg25267 +g27 +sg25275 +S'\n' +p138589 +sg25268 +S'Mary Sidney, Countess of Pembroke' +p138590 +sg25270 +S'Simon van de Passe' +p138591 +sa(dp138592 +g25273 +S', unknown date' +p138593 +sg25267 +g27 +sg25275 +S'\n' +p138594 +sg25268 +S'Philip Herbert, Fourth Earl of Pembroke' +p138595 +sg25270 +S'Simon van de Passe' +p138596 +sa(dp138597 +g25268 +S'Madonna and Child in a Landscape' +p138598 +sg25270 +S'Artist Information (' +p138599 +sg25273 +S'Italian, c. 1430/1435 - 1516' +p138600 +sg25275 +S'(related artist)' +p138601 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000867.jpg' +p138602 +sg25267 +g27 +sa(dp138603 +g25268 +S'Dracole Wajda' +p138604 +sg25270 +S'German 15th Century' +p138605 +sg25273 +S'Schreiber, undescribed' +p138606 +sg25275 +S'\nhand-colored woodcut' +p138607 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5a8.jpg' +p138608 +sg25267 +g27 +sa(dp138609 +g25273 +S', unknown date' +p138610 +sg25267 +g27 +sg25275 +S'\n' +p138611 +sg25268 +S'Philip Herbert, Fourth Earl of Pembroke' +p138612 +sg25270 +S'Simon van de Passe' +p138613 +sa(dp138614 +g25273 +S', unknown date' +p138615 +sg25267 +g27 +sg25275 +S'\n' +p138616 +sg25268 +S'William Herbert, Third Earl of Pembroke' +p138617 +sg25270 +S'Simon van de Passe' +p138618 +sa(dp138619 +g25273 +S'(artist after)' +p138620 +sg25267 +g27 +sg25275 +S'\n' +p138621 +sg25268 +S'William Herbert, Third Earl of Pembroke' +p138622 +sg25270 +S'Artist Information (' +p138623 +sa(dp138624 +g25273 +S'German, c. 1595 - 1647' +p138625 +sg25267 +g27 +sg25275 +S'(artist after)' +p138626 +sg25268 +S'William Herbert, Third Earl of Pembroke' +p138627 +sg25270 +S'Artist Information (' +p138628 +sa(dp138629 +g25273 +S'German, c. 1595 - 1647' +p138630 +sg25267 +g27 +sg25275 +S'(artist after)' +p138631 +sg25268 +S'William Herbert, Third Earl of Pembroke' +p138632 +sg25270 +S'Artist Information (' +p138633 +sa(dp138634 +g25273 +S', unknown date' +p138635 +sg25267 +g27 +sg25275 +S'\n' +p138636 +sg25268 +S'Sir Walter Raleigh' +p138637 +sg25270 +S'Simon van de Passe' +p138638 +sa(dp138639 +g25273 +S', unknown date' +p138640 +sg25267 +g27 +sg25275 +S'\n' +p138641 +sg25268 +S'Sir Walter Raleigh' +p138642 +sg25270 +S'Simon van de Passe' +p138643 +sa(dp138644 +g25273 +S', unknown date' +p138645 +sg25267 +g27 +sg25275 +S'\n' +p138646 +sg25268 +S'Sir Walter Raleigh' +p138647 +sg25270 +S'Simon van de Passe' +p138648 +sa(dp138649 +g25273 +S', unknown date' +p138650 +sg25267 +g27 +sg25275 +S'\n' +p138651 +sg25268 +S'Sir Walter Raleigh' +p138652 +sg25270 +S'Simon van de Passe' +p138653 +sa(dp138654 +g25273 +S', published 1628' +p138655 +sg25267 +g27 +sg25275 +S'\n' +p138656 +sg25268 +S'Sir Walter Raleigh' +p138657 +sg25270 +S'Simon van de Passe' +p138658 +sa(dp138659 +g25268 +S'The Trinity' +p138660 +sg25270 +S'German 15th Century' +p138661 +sg25273 +S'Schreiber, Vol. *, no. 744' +p138662 +sg25275 +S'\nwoodcut, hand-colored in blue, orange, yellow, green, white, black, gold, and silver' +p138663 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a537.jpg' +p138664 +sg25267 +g27 +sa(dp138665 +g25273 +S', published 1634' +p138666 +sg25267 +g27 +sg25275 +S'\n' +p138667 +sg25268 +S'Sir Walter Raleigh' +p138668 +sg25270 +S'Simon van de Passe' +p138669 +sa(dp138670 +g25273 +S', unknown date' +p138671 +sg25267 +g27 +sg25275 +S'\n' +p138672 +sg25268 +S'Sir Walter Raleigh' +p138673 +sg25270 +S'Simon van de Passe' +p138674 +sa(dp138675 +g25273 +S', published 1652' +p138676 +sg25267 +g27 +sg25275 +S'\n' +p138677 +sg25268 +S'Sir Walter Raleigh' +p138678 +sg25270 +S'Simon van de Passe' +p138679 +sa(dp138680 +g25273 +S', unknown date' +p138681 +sg25267 +g27 +sg25275 +S'\n' +p138682 +sg25268 +S'Sir Walter Raleigh' +p138683 +sg25270 +S'Simon van de Passe' +p138684 +sa(dp138685 +g25273 +S', unknown date' +p138686 +sg25267 +g27 +sg25275 +S'\n' +p138687 +sg25268 +S'Sir Walter Raleigh' +p138688 +sg25270 +S'Simon van de Passe' +p138689 +sa(dp138690 +g25273 +S', published 1687' +p138691 +sg25267 +g27 +sg25275 +S'\n' +p138692 +sg25268 +S'Sir Walter Raleigh' +p138693 +sg25270 +S'Simon van de Passe' +p138694 +sa(dp138695 +g25273 +S'German, c. 1595 - 1647' +p138696 +sg25267 +g27 +sg25275 +S'(artist after)' +p138697 +sg25268 +S'Sir Walter Raleigh' +p138698 +sg25270 +S'Artist Information (' +p138699 +sa(dp138700 +g25273 +S'German, c. 1595 - 1647' +p138701 +sg25267 +g27 +sg25275 +S'(artist after)' +p138702 +sg25268 +S'Sir Walter Raleigh' +p138703 +sg25270 +S'Artist Information (' +p138704 +sa(dp138705 +g25273 +S'German, c. 1595 - 1647' +p138706 +sg25267 +g27 +sg25275 +S'(artist after)' +p138707 +sg25268 +S'Sir Walter Raleigh' +p138708 +sg25270 +S'Artist Information (' +p138709 +sa(dp138710 +g25273 +S'German, c. 1595 - 1647' +p138711 +sg25267 +g27 +sg25275 +S'(artist after)' +p138712 +sg25268 +S'Sir Walter Raleigh' +p138713 +sg25270 +S'Artist Information (' +p138714 +sa(dp138715 +g25268 +S'The Death of the Virgin' +p138716 +sg25270 +S'German 15th Century' +p138717 +sg25273 +S'Schreiber, no. 717' +p138718 +sg25275 +S'\nwoodcut in brown, hand-colored in red lake, green,vermilion, brown, yellow, tan, and gold' +p138719 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a607.jpg' +p138720 +sg25267 +g27 +sa(dp138721 +g25273 +S', published 1616' +p138722 +sg25267 +g27 +sg25275 +S'\n' +p138723 +sg25268 +S'Aaron Rathborne' +p138724 +sg25270 +S'Simon van de Passe' +p138725 +sa(dp138726 +g25273 +S', published 1616' +p138727 +sg25267 +g27 +sg25275 +S'\n' +p138728 +sg25268 +S'Aaron Rathborne' +p138729 +sg25270 +S'Simon van de Passe' +p138730 +sa(dp138731 +g25273 +S', unknown date' +p138732 +sg25267 +g27 +sg25275 +S'\n' +p138733 +sg25268 +S'Ludovic Stuart, Duke of Lennox and Richmond' +p138734 +sg25270 +S'Simon van de Passe' +p138735 +sa(dp138736 +g25273 +S', unknown date' +p138737 +sg25267 +g27 +sg25275 +S'\n' +p138738 +sg25268 +S'Ludovic Stuart, Duke of Lennox and Richmond' +p138739 +sg25270 +S'Simon van de Passe' +p138740 +sa(dp138741 +g25273 +S', unknown date' +p138742 +sg25267 +g27 +sg25275 +S'\n' +p138743 +sg25268 +S'Captain John Smith' +p138744 +sg25270 +S'Simon van de Passe' +p138745 +sa(dp138746 +g25273 +S', unknown date' +p138747 +sg25267 +g27 +sg25275 +S'\n' +p138748 +sg25268 +S'Sir Thomas Smith' +p138749 +sg25270 +S'Simon van de Passe' +p138750 +sa(dp138751 +g25273 +S', 1617' +p138752 +sg25267 +g27 +sg25275 +S'\n' +p138753 +sg25268 +S'Sir Thomas Smith' +p138754 +sg25270 +S'Simon van de Passe' +p138755 +sa(dp138756 +g25273 +S', unknown date' +p138757 +sg25267 +g27 +sg25275 +S'\n' +p138758 +sg25268 +S'Robert Carr, Earl of Somerset' +p138759 +sg25270 +S'Simon van de Passe' +p138760 +sa(dp138761 +g25273 +S'(artist after)' +p138762 +sg25267 +g27 +sg25275 +S'\n' +p138763 +sg25268 +S'Robert Carr, Earl of Somerset' +p138764 +sg25270 +S'Artist Information (' +p138765 +sa(dp138766 +g25273 +S', unknown date' +p138767 +sg25267 +g27 +sg25275 +S'\n' +p138768 +sg25268 +S'Frances, Countess of Somerset' +p138769 +sg25270 +S'Simon van de Passe' +p138770 +sa(dp138771 +g25268 +S'Saint Andrew' +p138772 +sg25270 +S'German 15th Century' +p138773 +sg25273 +S'Schreiber, Vol. IX, no. 1189, State r' +p138774 +sg25275 +S'\nwoodcut, hand-colored in rose, green, yellow, blue, gold, and red-orange' +p138775 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a557.jpg' +p138776 +sg25267 +g27 +sa(dp138777 +g25273 +S', unknown date' +p138778 +sg25267 +g27 +sg25275 +S'\n' +p138779 +sg25268 +S'Frances, Countess of Somerset' +p138780 +sg25270 +S'Simon van de Passe' +p138781 +sa(dp138782 +g25273 +S', 1617' +p138783 +sg25267 +g27 +sg25275 +S'\n' +p138784 +sg25268 +S'Henry Wriothersley, Third Earl of Southampton' +p138785 +sg25270 +S'Simon van de Passe' +p138786 +sa(dp138787 +g25273 +S', 1617' +p138788 +sg25267 +g27 +sg25275 +S'\n' +p138789 +sg25268 +S'Edward Cecil, Viscount Wimbledon' +p138790 +sg25270 +S'Simon van de Passe' +p138791 +sa(dp138792 +g25273 +S', 1618' +p138793 +sg25267 +g27 +sg25275 +S'\n' +p138794 +sg25268 +S'Edward Somerset, Fourth Earl of Worcester' +p138795 +sg25270 +S'Simon van de Passe' +p138796 +sa(dp138797 +g25273 +S', unknown date' +p138798 +sg25267 +g27 +sg25275 +S'\n' +p138799 +sg25268 +S'Edward Somerset, Fourth Earl of Worcester' +p138800 +sg25270 +S'Simon van de Passe' +p138801 +sa(dp138802 +g25273 +S', unknown date' +p138803 +sg25267 +g27 +sg25275 +S'\n' +p138804 +sg25268 +S'Edward Somerset, Fourth Earl of Worcester' +p138805 +sg25270 +S'Simon van de Passe' +p138806 +sa(dp138807 +g25273 +S'engraving' +p138808 +sg25267 +g27 +sg25275 +S'published 1630' +p138809 +sg25268 +S'Sir John Hayward, Historian' +p138810 +sg25270 +S'Willem de Passe' +p138811 +sa(dp138812 +g25273 +S'engraving' +p138813 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138814 +sg25268 +S'Henry Rich, First Earl of Holland' +p138815 +sg25270 +S'Willem de Passe' +p138816 +sa(dp138817 +g25273 +S'engraving' +p138818 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138819 +sg25268 +S'Henry Rich, First Earl of Holland' +p138820 +sg25270 +S'Willem de Passe' +p138821 +sa(dp138822 +g25273 +S'engraving' +p138823 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138824 +sg25268 +S'Henry Rich, First Earl of Holland' +p138825 +sg25270 +S'Willem de Passe' +p138826 +sa(dp138827 +g25268 +S'Saint Conrad of Constance' +p138828 +sg25270 +S'German 15th Century' +p138829 +sg25273 +S'Schreiber, Vol. IX, no. 1380, State z' +p138830 +sg25275 +S'\nwoodcut in brown, hand-colored in red lake, green,yellow, blue, gold, and orange' +p138831 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a61b.jpg' +p138832 +sg25267 +g27 +sa(dp138833 +g25273 +S'engraving' +p138834 +sg25267 +g27 +sg25275 +S'published 1653' +p138835 +sg25268 +S'James I, King of England' +p138836 +sg25270 +S'Willem de Passe' +p138837 +sa(dp138838 +g25273 +S'engraving' +p138839 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138840 +sg25268 +S'James I, King of England and Charles, Prince of Wales' +p138841 +sg25270 +S'Willem de Passe' +p138842 +sa(dp138843 +g25273 +S'engraving' +p138844 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138845 +sg25268 +S'James I' +p138846 +sg25270 +S'Willem de Passe' +p138847 +sa(dp138848 +g25273 +S'engraving' +p138849 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138850 +sg25268 +S'Louis XIII, King of France' +p138851 +sg25270 +S'Willem de Passe' +p138852 +sa(dp138853 +g25273 +S'engraving' +p138854 +sg25267 +g27 +sg25275 +S'1623' +p138855 +sg25268 +S'Frances Howard, Duchess of Richmond' +p138856 +sg25270 +S'Willem de Passe' +p138857 +sa(dp138858 +g25273 +S'engraving' +p138859 +sg25267 +g27 +sg25275 +S'1623' +p138860 +sg25268 +S'Frances Howard, Duchess of Richmond' +p138861 +sg25270 +S'Willem de Passe' +p138862 +sa(dp138863 +g25273 +S'engraving' +p138864 +sg25267 +g27 +sg25275 +S'1623' +p138865 +sg25268 +S'Darcy Wentworth' +p138866 +sg25270 +S'Willem de Passe' +p138867 +sa(dp138868 +g25273 +S'engraving' +p138869 +sg25267 +g27 +sg25275 +S'1624' +p138870 +sg25268 +S"Title Page, A Thankful Remembrance of God's Mercie, by George Carleton" +p138871 +sg25270 +S'Willem de Passe' +p138872 +sa(dp138873 +g25273 +S', unknown date' +p138874 +sg25267 +g27 +sg25275 +S'\n' +p138875 +sg25268 +S'Catherine Manners, Duchess of Buckingham' +p138876 +sg25270 +S'Magdalena van de Passe' +p138877 +sa(dp138878 +g25273 +S', unknown date' +p138879 +sg25267 +g27 +sg25275 +S'\n' +p138880 +sg25268 +S'Catherine Manners, Duchess of Buckingham' +p138881 +sg25270 +S'Magdalena van de Passe' +p138882 +sa(dp138883 +g25268 +S'Saint Christopher [recto]' +p138884 +sg25270 +S'French 15th Century' +p138885 +sg25273 +S'sheet (irregular fragment): 14.1 x 9.9 cm (5 9/16 x 3 7/8 in.)\r\noverall (external frame dimensions): 31.8 x 25.4 cm (12 1/2 x 10 in.)' +p138886 +sg25275 +S'\nwoodcut, hand-colored in brown and yellow' +p138887 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005629.jpg' +p138888 +sg25267 +g27 +sa(dp138889 +g25273 +S'engraving' +p138890 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138891 +sg25268 +S'Robert Cecil, First Earl of Salisbury, Lord Treasurer' +p138892 +sg25270 +S'H. Stock' +p138893 +sa(dp138894 +g25273 +S'engraving' +p138895 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138896 +sg25268 +S'Robert Cecil, First Earl of Salisbury' +p138897 +sg25270 +S'H. Stock' +p138898 +sa(dp138899 +g25273 +S'engraving' +p138900 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138901 +sg25268 +S'James I' +p138902 +sg25270 +S'Unknown 19th Century' +p138903 +sa(dp138904 +g25273 +S'engraving' +p138905 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138906 +sg25268 +S'Alexander the Great Receiving a Sword (?)' +p138907 +sg25270 +S'Unknown 19th Century' +p138908 +sa(dp138909 +g25273 +S'etching' +p138910 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138911 +sg25268 +S'Arabella Stuart' +p138912 +sg25270 +S'Unknown 19th Century' +p138913 +sa(dp138914 +g25273 +S'engraving' +p138915 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138916 +sg25268 +S'Prince Henry, Lord Darnley, King of Scotland' +p138917 +sg25270 +S'Jo Hallbrock' +p138918 +sa(dp138919 +g25273 +S'(artist after)' +p138920 +sg25267 +g27 +sg25275 +S'\n' +p138921 +sg25268 +S'Francis White, D.D., Bishop of Ely' +p138922 +sg25270 +S'Artist Information (' +p138923 +sa(dp138924 +g25273 +S'engraving' +p138925 +sg25267 +g27 +sg25275 +S'1649' +p138926 +sg25268 +S'Richard Elton' +p138927 +sg25270 +S'John Droeshout' +p138928 +sa(dp138929 +g25273 +S'engraving' +p138930 +sg25267 +g27 +sg25275 +S'1635' +p138931 +sg25268 +S'Pyrotechnia' +p138932 +sg25270 +S'John Droeshout' +p138933 +sa(dp138934 +g25273 +S'engraving' +p138935 +sg25267 +g27 +sg25275 +S'1641' +p138936 +sg25268 +S'Frontispiece to Complaint of the False Prophets, by John de La Marche' +p138937 +sg25270 +S'John Droeshout' +p138938 +sa(dp138939 +g25268 +S"Christ on a Goldsmith's Cross" +p138940 +sg25270 +S'French 15th Century' +p138941 +sg25273 +S'sheet (irregular fragment): 14.1 x 9.9 cm (5 9/16 x 3 7/8 in.)' +p138942 +sg25275 +S'\nwoodcut' +p138943 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005707.jpg' +p138944 +sg25267 +g27 +sa(dp138945 +g25273 +S'engraving' +p138946 +sg25267 +g27 +sg25275 +S'published 1692' +p138947 +sg25268 +S'Frontispiece to Truth Brought to Light by Time' +p138948 +sg25270 +S'John Droeshout' +p138949 +sa(dp138950 +g25268 +S'Queen Elizabeth' +p138951 +sg25270 +S'Martin Droeshout' +p138952 +sg25273 +S'engraving' +p138953 +sg25275 +S'unknown date\n' +p138954 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd5a.jpg' +p138955 +sg25267 +g27 +sa(dp138956 +g25273 +S'engraving' +p138957 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138958 +sg25268 +S'John Foxe, Author of Book of Martyrs' +p138959 +sg25270 +S'Martin Droeshout' +p138960 +sa(dp138961 +g25273 +S'engraving' +p138962 +sg25267 +g27 +sg25275 +S'1623' +p138963 +sg25268 +S'James, Second Marquis of Hamilton' +p138964 +sg25270 +S'Martin Droeshout' +p138965 +sa(dp138966 +g25273 +S'engraving' +p138967 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138968 +sg25268 +S'John Howson, Bishop of Durham' +p138969 +sg25270 +S'Martin Droeshout' +p138970 +sa(dp138971 +g25273 +S'engraving' +p138972 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138973 +sg25268 +S'Mountjoy Blount, First Earl of Newport' +p138974 +sg25270 +S'Martin Droeshout' +p138975 +sa(dp138976 +g25273 +S'engraving' +p138977 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138978 +sg25268 +S'Henry Frederick, Prince of Wales' +p138979 +sg25270 +S'Cornelis Boel' +p138980 +sa(dp138981 +g25273 +S'engraving' +p138982 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138983 +sg25268 +S'Henry Frederick, Prince of Wales' +p138984 +sg25270 +S'Cornelis Boel' +p138985 +sa(dp138986 +g25273 +S'engraving' +p138987 +sg25267 +g27 +sg25275 +S'1623' +p138988 +sg25268 +S'Martin Billingsley' +p138989 +sg25270 +S'William Hole' +p138990 +sa(dp138991 +g25268 +S'Saint Catherine' +p138992 +sg25270 +S'German 15th Century' +p138993 +sg25273 +S'Schreiber, Vol. IX, no. 1330, State b' +p138994 +sg25275 +S'\nwoodcut in brown, hand-colored in red lake, blue, green, yellow, gold, and orange' +p138995 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a55a.jpg' +p138996 +sg25267 +g27 +sa(dp138997 +g25273 +S'engraving' +p138998 +sg25267 +g27 +sg25275 +S'unknown date\n' +p138999 +sg25268 +S'Thomas Egerton, First Viscount Brackley' +p139000 +sg25270 +S'William Hole' +p139001 +sa(dp139002 +g25273 +S'engraving' +p139003 +sg25267 +g27 +sg25275 +S'published 1616' +p139004 +sg25268 +S'George Chapman' +p139005 +sg25270 +S'William Hole' +p139006 +sa(dp139007 +g25273 +S'engraving' +p139008 +sg25267 +g27 +sg25275 +S'published 1619' +p139009 +sg25268 +S'Michael Drayton' +p139010 +sg25270 +S'William Hole' +p139011 +sa(dp139012 +g25273 +S'engraving' +p139013 +sg25267 +g27 +sg25275 +S'published 1619' +p139014 +sg25268 +S'Michael Drayton' +p139015 +sg25270 +S'William Hole' +p139016 +sa(dp139017 +g25273 +S'engraving' +p139018 +sg25267 +g27 +sg25275 +S'published 1611' +p139019 +sg25268 +S'John Florio' +p139020 +sg25270 +S'William Hole' +p139021 +sa(dp139022 +g25273 +S'engraving' +p139023 +sg25267 +g27 +sg25275 +S'published 1611' +p139024 +sg25268 +S'John Florio' +p139025 +sg25270 +S'William Hole' +p139026 +sa(dp139027 +g25273 +S'engraving' +p139028 +sg25267 +g27 +sg25275 +S'published 1612' +p139029 +sg25268 +S'Prince Henry With the Pike' +p139030 +sg25270 +S'William Hole' +p139031 +sa(dp139032 +g25273 +S'engraving' +p139033 +sg25267 +g27 +sg25275 +S'published 1613' +p139034 +sg25268 +S'Prince Henry With the Pike' +p139035 +sg25270 +S'William Hole' +p139036 +sa(dp139037 +g25273 +S'etching' +p139038 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139039 +sg25268 +S"Prince Henry's Hearse" +p139040 +sg25270 +S'William Hole' +p139041 +sa(dp139042 +g25273 +S'engraving' +p139043 +sg25267 +g27 +sg25275 +S'published 1613' +p139044 +sg25268 +S'George Wither' +p139045 +sg25270 +S'William Hole' +p139046 +sa(dp139047 +g25268 +S'Saint Bartholomew' +p139048 +sg25270 +S'German 15th Century' +p139049 +sg25273 +S'Schreiber, Vol. IX, no. 1267, State m' +p139050 +sg25275 +S'\nwoodcut, hand-colored in blue, red lake, green, yellow, white, orange, and silver or gold' +p139051 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a61a.jpg' +p139052 +sg25267 +g27 +sa(dp139053 +g25273 +S'engraving' +p139054 +sg25267 +g27 +sg25275 +S'1612/1622' +p139055 +sg25268 +S"Text from Drayton's Poly-olbion" +p139056 +sg25270 +S'Unknown 19th Century' +p139057 +sa(dp139058 +g25273 +S'engraving' +p139059 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139060 +sg25268 +S"Frontispiece to Drayton's Poly-olbion" +p139061 +sg25270 +S'William Hole' +p139062 +sa(dp139063 +g25273 +S'engraving' +p139064 +sg25267 +g27 +sg25275 +S'1632' +p139065 +sg25268 +S'Lancelot Andrewes, Bishop of Winchester' +p139066 +sg25270 +S'John Payne' +p139067 +sa(dp139068 +g25273 +S'engraving' +p139069 +sg25267 +g27 +sg25275 +S'1635' +p139070 +sg25268 +S'Lancelot Andrewes' +p139071 +sg25270 +S'John Payne' +p139072 +sa(dp139073 +g25273 +S'engraving' +p139074 +sg25267 +g27 +sg25275 +S'1641' +p139075 +sg25268 +S'Lancelot Andrewes' +p139076 +sg25270 +S'John Payne' +p139077 +sa(dp139078 +g25273 +S'engraving' +p139079 +sg25267 +g27 +sg25275 +S'1650' +p139080 +sg25268 +S'Lancelot Andrewes' +p139081 +sg25270 +S'John Payne' +p139082 +sa(dp139083 +g25273 +S'engraving' +p139084 +sg25267 +g27 +sg25275 +S'1632' +p139085 +sg25268 +S'Lancelot Andrewes' +p139086 +sg25270 +S'John Payne' +p139087 +sa(dp139088 +g25273 +S'engraving' +p139089 +sg25267 +g27 +sg25275 +S'1632' +p139090 +sg25268 +S'Reverend Robert Bolton' +p139091 +sg25270 +S'John Payne' +p139092 +sa(dp139093 +g25273 +S'engraving' +p139094 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139095 +sg25268 +S'Rev. Robert Bolton' +p139096 +sg25270 +S'John Payne' +p139097 +sa(dp139098 +g25273 +S'engraving' +p139099 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139100 +sg25268 +S'Robert Bolton' +p139101 +sg25270 +S'John Payne' +p139102 +sa(dp139103 +g25273 +S'graphite' +p139104 +sg25267 +g27 +sg25275 +S'1920' +p139105 +sg25268 +S'Nude' +p139106 +sg25270 +S'Karl Albiker' +p139107 +sa(dp139108 +g25273 +S'engraving' +p139109 +sg25267 +g27 +sg25275 +S'1620' +p139110 +sg25268 +S'Hugh Broughton' +p139111 +sg25270 +S'John Payne' +p139112 +sa(dp139113 +g25273 +S'engraving' +p139114 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139115 +sg25268 +S'Christian, Duke of Brunswick' +p139116 +sg25270 +S'John Payne' +p139117 +sa(dp139118 +g25273 +S'engraving' +p139119 +sg25267 +g27 +sg25275 +S'1629' +p139120 +sg25268 +S'Sir Edward Coke' +p139121 +sg25270 +S'John Payne' +p139122 +sa(dp139123 +g25273 +S'engraving' +p139124 +sg25267 +g27 +sg25275 +S'1670' +p139125 +sg25268 +S'Sir Edward Coke' +p139126 +sg25270 +S'John Payne' +p139127 +sa(dp139128 +g25273 +S'(artist)' +p139129 +sg25267 +g27 +sg25275 +S'\n' +p139130 +sg25268 +S'Queen Elizabeth' +p139131 +sg25270 +S'Artist Information (' +p139132 +sa(dp139133 +g25273 +S'engraving' +p139134 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139135 +sg25268 +S'Queen Elizabeth' +p139136 +sg25270 +S'John Payne' +p139137 +sa(dp139138 +g25273 +S'engraving' +p139139 +sg25267 +g27 +sg25275 +S'1628' +p139140 +sg25268 +S'Joseph Hall, Bishop of Exeter and Norwich' +p139141 +sg25270 +S'John Payne' +p139142 +sa(dp139143 +g25273 +S'engraving' +p139144 +sg25267 +g27 +sg25275 +S'published 1654' +p139145 +sg25268 +S'Francis Hawkins, Jesuit' +p139146 +sg25270 +S'John Payne' +p139147 +sa(dp139148 +g25273 +S'engraving' +p139149 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139150 +sg25268 +S'Francis Hawkins' +p139151 +sg25270 +S'John Payne' +p139152 +sa(dp139153 +g25273 +S'engraving' +p139154 +sg25267 +g27 +sg25275 +S'1622' +p139155 +sg25268 +S'Henry VII' +p139156 +sg25270 +S'John Payne' +p139157 +sa(dp139158 +g25268 +S'Profile Portrait of a Boy' +p139159 +sg25270 +S'North Italian 15th Century' +p139160 +sg25273 +S'overall: 25.1 x 17.8 cm (9 7/8 x 7 in.)\r\nframed: 48.6 x 37.5 cm (19 1/8 x 14 3/4 in.)' +p139161 +sg25275 +S'\ntempera and oil on panel' +p139162 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000087a.jpg' +p139163 +sg25267 +g27 +sa(dp139164 +g25268 +S'The Three Women at the Tomb [recto]' +p139165 +sg25270 +S'German 16th Century' +p139166 +sg25273 +S'overall: 20.1 x 15.5 cm (7 15/16 x 6 1/8 in.)' +p139167 +sg25275 +S'\npen and brush and black ink with gray wash heightend with white on gray prepared paper' +p139168 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007956.jpg' +p139169 +sg25267 +g27 +sa(dp139170 +g25273 +S'engraving' +p139171 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139172 +sg25268 +S'Rev. Arthur Hildersam' +p139173 +sg25270 +S'John Payne' +p139174 +sa(dp139175 +g25273 +S'engraving' +p139176 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139177 +sg25268 +S'Arthur Lake, Bishop of Bath and Wells' +p139178 +sg25270 +S'John Payne' +p139179 +sa(dp139180 +g25273 +S'engraving' +p139181 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139182 +sg25268 +S'Nicholas Leate, London Merchant' +p139183 +sg25270 +S'John Payne' +p139184 +sa(dp139185 +g25273 +S'engraving' +p139186 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139187 +sg25268 +S'James Ley, First Earl of Marlborough' +p139188 +sg25270 +S'John Payne' +p139189 +sa(dp139190 +g25273 +S'(artist)' +p139191 +sg25267 +g27 +sg25275 +S'\n' +p139192 +sg25268 +S'James Ley, First Earl of Marlborough' +p139193 +sg25270 +S'Artist Information (' +p139194 +sa(dp139195 +g25273 +S'(artist after)' +p139196 +sg25267 +g27 +sg25275 +S'\n' +p139197 +sg25268 +S'Algernon Percy, Earl of Northampton' +p139198 +sg25270 +S'Artist Information (' +p139199 +sa(dp139200 +g25273 +S'engraving' +p139201 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139202 +sg25268 +S'Henry de Vere, Eighteenth Earl of Oxford' +p139203 +sg25270 +S'John Payne' +p139204 +sa(dp139205 +g25273 +S'(artist after)' +p139206 +sg25267 +g27 +sg25275 +S'\n' +p139207 +sg25268 +S'Sir Benjamin Rudyerd, Court of Wardes and Liveryes' +p139208 +sg25270 +S'Artist Information (' +p139209 +sa(dp139210 +g25273 +S'(artist after)' +p139211 +sg25267 +g27 +sg25275 +S'\n' +p139212 +sg25268 +S'Sir Benjamin Rudyerd' +p139213 +sg25270 +S'Artist Information (' +p139214 +sa(dp139215 +g25273 +S'(artist after)' +p139216 +sg25267 +g27 +sg25275 +S'\n' +p139217 +sg25268 +S'Sir Benjamin Rudyerd' +p139218 +sg25270 +S'Artist Information (' +p139219 +sa(dp139220 +g25268 +S'The High Priest before Pilate [verso]' +p139221 +sg25270 +S'German 16th Century' +p139222 +sg25273 +S'overall: 20.1 x 15.5 cm (7 15/16 x 6 1/8 in.)' +p139223 +sg25275 +S'\npen and brush and black ink with gray wash heightened with white on gray prepared paper' +p139224 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007957.jpg' +p139225 +sg25267 +g27 +sa(dp139226 +g25273 +S'engraving' +p139227 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139228 +sg25268 +S'Rev. Richard Sibbes' +p139229 +sg25270 +S'John Payne' +p139230 +sa(dp139231 +g25273 +S'engraving' +p139232 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139233 +sg25268 +S'Sir William Wadd' +p139234 +sg25270 +S'John Payne' +p139235 +sa(dp139236 +g25273 +S'engraving' +p139237 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139238 +sg25268 +S"William Whitaker, Master of Saint John's College, Cambridge" +p139239 +sg25270 +S'John Payne' +p139240 +sa(dp139241 +g25273 +S'engraving' +p139242 +sg25267 +g27 +sg25275 +S'published 1635' +p139243 +sg25268 +S'George Wither, Poet' +p139244 +sg25270 +S'John Payne' +p139245 +sa(dp139246 +g25273 +S'engraving' +p139247 +sg25267 +g27 +sg25275 +S'published 1635' +p139248 +sg25268 +S'George Wither, Poet' +p139249 +sg25270 +S'John Payne' +p139250 +sa(dp139251 +g25273 +S'engraving' +p139252 +sg25267 +g27 +sg25275 +S'1627' +p139253 +sg25268 +S'Portrait of a Man' +p139254 +sg25270 +S'John Payne' +p139255 +sa(dp139256 +g25273 +S'engraving' +p139257 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139258 +sg25268 +S"Title Page to John Boys' Works" +p139259 +sg25270 +S'John Payne' +p139260 +sa(dp139261 +g25273 +S'engraving' +p139262 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139263 +sg25268 +S'William Cecill, First Baron Burghley' +p139264 +sg25270 +S'John Chantry' +p139265 +sa(dp139266 +g25273 +S'engraving' +p139267 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139268 +sg25268 +S'Edward, the Black Prince at the Age of 49' +p139269 +sg25270 +S'Thomas Cecil' +p139270 +sa(dp139271 +g25273 +S'engraving' +p139272 +sg25267 +g27 +sg25275 +S'published 1630' +p139273 +sg25268 +S'Edward VI' +p139274 +sg25270 +S'Thomas Cecil' +p139275 +sa(dp139276 +g25273 +S'etching' +p139277 +sg25267 +g27 +sg25275 +S'1940' +p139278 +sg25268 +S'Up and On' +p139279 +sg25270 +S'Richard Evett Bishop' +p139280 +sa(dp139281 +g25273 +S'engraving' +p139282 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139283 +sg25268 +S'Gustavus Adolphus' +p139284 +sg25270 +S'Thomas Cecil' +p139285 +sa(dp139286 +g25273 +S'engraving' +p139287 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139288 +sg25268 +S'Gustavus Adolphus' +p139289 +sg25270 +S'Thomas Cecil' +p139290 +sa(dp139291 +g25273 +S'engraving' +p139292 +sg25267 +g27 +sg25275 +S'1630' +p139293 +sg25268 +S'Henry VIII' +p139294 +sg25270 +S'Thomas Cecil' +p139295 +sa(dp139296 +g25273 +S'engraving' +p139297 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139298 +sg25268 +S'John Talbot, First Earl of Shrewsbury' +p139299 +sg25270 +S'Thomas Cecil' +p139300 +sa(dp139301 +g25273 +S'engraving' +p139302 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139303 +sg25268 +S'John Talbot, First Earl of Shrewsbury' +p139304 +sg25270 +S'Thomas Cecil' +p139305 +sa(dp139306 +g25273 +S'engraving' +p139307 +sg25267 +g27 +sg25275 +S'1629' +p139308 +sg25268 +S'Title Page for Sylva Sylvarum, Francis Bacon' +p139309 +sg25270 +S'Thomas Cecil' +p139310 +sa(dp139311 +g25273 +S'engraving' +p139312 +sg25267 +g27 +sg25275 +S'1630' +p139313 +sg25268 +S'Title Page for Holy Oyle for the Lampes of the Sanctuarie, John Clarke' +p139314 +sg25270 +S'Thomas Cecil' +p139315 +sa(dp139316 +g25273 +S'engraving' +p139317 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139318 +sg25268 +S"Title Page to Sir William Cornwally's Essays" +p139319 +sg25270 +S'Thomas Cecil' +p139320 +sa(dp139321 +g25273 +S'engraving' +p139322 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139323 +sg25268 +S"Title Page to Sir William Cornwally's Essays" +p139324 +sg25270 +S'Thomas Cecil' +p139325 +sa(dp139326 +g25273 +S'engraving' +p139327 +sg25267 +g27 +sg25275 +S'1631' +p139328 +sg25268 +S'Title Page to John Weever, Ancient Funeral Monuments' +p139329 +sg25270 +S'Thomas Cecil' +p139330 +sa(dp139331 +g25273 +S'pen and brown ink and watercolor on paperboard' +p139332 +sg25267 +g27 +sg25275 +S'1929' +p139333 +sg25268 +S'Aloft' +p139334 +sg25270 +S'Arthur Briscoe' +p139335 +sa(dp139336 +g25273 +S'engraving' +p139337 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139338 +sg25268 +S'Title Page to An Apologie, or Declaration of the Power and Providence of God' +p139339 +sg25270 +S'Thomas Cecil' +p139340 +sa(dp139341 +g25273 +S'engraving' +p139342 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139343 +sg25268 +S"Title Page to Ovid's Metamorphosis, translated by G. Sandy" +p139344 +sg25270 +S'Thomas Cecil' +p139345 +sa(dp139346 +g25273 +S'engraving' +p139347 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139348 +sg25268 +S'Achmet I, Sultan of Turkey' +p139349 +sg25270 +S'Robert Vaughan' +p139350 +sa(dp139351 +g25273 +S'(artist after)' +p139352 +sg25267 +g27 +sg25275 +S'\n' +p139353 +sg25268 +S'Lancelot Andrewes, Bishop of Winchester' +p139354 +sg25270 +S'Artist Information (' +p139355 +sa(dp139356 +g25273 +S'engraving' +p139357 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139358 +sg25268 +S'John Carter' +p139359 +sg25270 +S'Robert Vaughan' +p139360 +sa(dp139361 +g25273 +S'engraving' +p139362 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139363 +sg25268 +S'Sir George Croke' +p139364 +sg25270 +S'Robert Vaughan' +p139365 +sa(dp139366 +g25273 +S'engraving' +p139367 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139368 +sg25268 +S'George Clifford, Third Earl of Cumberland' +p139369 +sg25270 +S'Robert Vaughan' +p139370 +sa(dp139371 +g25273 +S'engraving' +p139372 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139373 +sg25268 +S'George Clifford, Earl of Cumberland' +p139374 +sg25270 +S'Robert Vaughan' +p139375 +sa(dp139376 +g25273 +S'engraving' +p139377 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139378 +sg25268 +S'Sir Francis Drake' +p139379 +sg25270 +S'Robert Vaughan' +p139380 +sa(dp139381 +g25273 +S'engraving' +p139382 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139383 +sg25268 +S'Sir Francis Drake' +p139384 +sg25270 +S'Robert Vaughan' +p139385 +sa(dp139386 +g25268 +S'Alphabet for a Primer' +p139387 +sg25270 +S'German 16th Century' +p139388 +sg25273 +S'engraving' +p139389 +sg25275 +S'unknown date\n' +p139390 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b071.jpg' +p139391 +sg25267 +g27 +sa(dp139392 +g25273 +S'engraving' +p139393 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139394 +sg25268 +S'James, Second Marquis of Hamilton' +p139395 +sg25270 +S'Robert Vaughan' +p139396 +sa(dp139397 +g25273 +S'engraving' +p139398 +sg25267 +g27 +sg25275 +S'published 1653' +p139399 +sg25268 +S'Thomas Hilde, Puritan Divine' +p139400 +sg25270 +S'Robert Vaughan' +p139401 +sa(dp139402 +g25273 +S'engraving' +p139403 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139404 +sg25268 +S'James I' +p139405 +sg25270 +S'Robert Vaughan' +p139406 +sa(dp139407 +g25273 +S'engraving' +p139408 +sg25267 +g27 +sg25275 +S'published 1630' +p139409 +sg25268 +S'Ben Jonson' +p139410 +sg25270 +S'Robert Vaughan' +p139411 +sa(dp139412 +g25273 +S'engraving' +p139413 +sg25267 +g27 +sg25275 +S'published 1658' +p139414 +sg25268 +S'Samson Lennard' +p139415 +sg25270 +S'Robert Vaughan' +p139416 +sa(dp139417 +g25273 +S'engraving' +p139418 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139419 +sg25268 +S'Samson Lennard' +p139420 +sg25270 +S'Robert Vaughan' +p139421 +sa(dp139422 +g25273 +S'engraving' +p139423 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139424 +sg25268 +S'William Lilly' +p139425 +sg25270 +S'Robert Vaughan' +p139426 +sa(dp139427 +g25273 +S'engraving' +p139428 +sg25267 +g27 +sg25275 +S'published 1684' +p139429 +sg25268 +S'Sir Thomas Lyttleton, Lawyer' +p139430 +sg25270 +S'Robert Vaughan' +p139431 +sa(dp139432 +g25273 +S'engraving' +p139433 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139434 +sg25268 +S'Henry de Vere, Eighteenth Earl of Oxford' +p139435 +sg25270 +S'Robert Vaughan' +p139436 +sa(dp139437 +g25273 +S'engraving' +p139438 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139439 +sg25268 +S'Robert de Vere, Earl of Oxford' +p139440 +sg25270 +S'Robert Vaughan' +p139441 +sa(dp139442 +g25273 +S'glass plate for monotype' +p139443 +sg25267 +g27 +sg25275 +S'1943' +p139444 +sg25268 +S'Sarabande (Portrait of Adrian Segal?)' +p139445 +sg25270 +S'Stella Drabkin' +p139446 +sa(dp139447 +g25273 +S'engraving' +p139448 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139449 +sg25268 +S'Philip II, King of Spain' +p139450 +sg25270 +S'Robert Vaughan' +p139451 +sa(dp139452 +g25273 +S'(artist after)' +p139453 +sg25267 +g27 +sg25275 +S'\n' +p139454 +sg25268 +S'Sir Walter Raleigh' +p139455 +sg25270 +S'Artist Information (' +p139456 +sa(dp139457 +g25273 +S'(artist after)' +p139458 +sg25267 +g27 +sg25275 +S'\n' +p139459 +sg25268 +S'Sir Walter Raleigh' +p139460 +sg25270 +S'Artist Information (' +p139461 +sa(dp139462 +g25273 +S'(artist after)' +p139463 +sg25267 +g27 +sg25275 +S'\n' +p139464 +sg25268 +S'Sir Walter Raleigh' +p139465 +sg25270 +S'Artist Information (' +p139466 +sa(dp139467 +g25273 +S'(artist after)' +p139468 +sg25267 +g27 +sg25275 +S'\n' +p139469 +sg25268 +S'Sir Walter Raleigh' +p139470 +sg25270 +S'Artist Information (' +p139471 +sa(dp139472 +g25273 +S'engraving' +p139473 +sg25267 +g27 +sg25275 +S'1622' +p139474 +sg25268 +S'Sir Philip Sidney' +p139475 +sg25270 +S'Robert Vaughan' +p139476 +sa(dp139477 +g25273 +S'(artist after)' +p139478 +sg25267 +g27 +sg25275 +S'\n' +p139479 +sg25268 +S'James Ussher, Archbishop of Armagh' +p139480 +sg25270 +S'Artist Information (' +p139481 +sa(dp139482 +g25273 +S'engraving' +p139483 +sg25267 +g27 +sg25275 +S'1658' +p139484 +sg25268 +S'Thomas Willsford, Mathematician' +p139485 +sg25270 +S'Robert Vaughan' +p139486 +sa(dp139487 +g25273 +S'engraving' +p139488 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139489 +sg25268 +S'A Venetian Doge' +p139490 +sg25270 +S'Robert Vaughan' +p139491 +sa(dp139492 +g25273 +S'engraving' +p139493 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139494 +sg25268 +S'A Doge of Venice' +p139495 +sg25270 +S'Robert Vaughan' +p139496 +sa(dp139497 +g25273 +S'etched copper plate [cancelled]' +p139498 +sg25267 +g27 +sg25275 +S'1930' +p139499 +sg25268 +S'Lessing J. Rosenwald' +p139500 +sg25270 +S'James McBey' +p139501 +sa(dp139502 +g25273 +S'engraving' +p139503 +sg25267 +g27 +sg25275 +S'published 1630' +p139504 +sg25268 +S'Title Plate to John Hayward, Life and Reigne of King Edward the Sixth' +p139505 +sg25270 +S'Robert Vaughan' +p139506 +sa(dp139507 +g25273 +S'engraving' +p139508 +sg25267 +g27 +sg25275 +S'published 1630' +p139509 +sg25268 +S'Title Plate to John Hayward, Life and Reigne of King Edward the Sixth' +p139510 +sg25270 +S'Robert Vaughan' +p139511 +sa(dp139512 +g25273 +S'engraving' +p139513 +sg25267 +g27 +sg25275 +S'published 1630' +p139514 +sg25268 +S'Title Plate to John Hayward, Life and Reigne of King Edward the Sixth' +p139515 +sg25270 +S'Robert Vaughan' +p139516 +sa(dp139517 +g25273 +S'engraving' +p139518 +sg25267 +g27 +sg25275 +S'published 1654' +p139519 +sg25268 +S'The Lady of Rochford' +p139520 +sg25270 +S'Robert Vaughan' +p139521 +sa(dp139522 +g25273 +S'engraving' +p139523 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139524 +sg25268 +S'Augustus II, Elector of Saxony' +p139525 +sg25270 +S'Johan Barra' +p139526 +sa(dp139527 +g25273 +S'(artist after)' +p139528 +sg25267 +g27 +sg25275 +S'\n' +p139529 +sg25268 +S'Lodovick Stuart, Duke of Richmond and Lennox' +p139530 +sg25270 +S'Artist Information (' +p139531 +sa(dp139532 +g25273 +S'engraving' +p139533 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139534 +sg25268 +S'Roberto Francesco Romolo Bellarmino, Cardinal' +p139535 +sg25270 +S'Unknown 19th Century' +p139536 +sa(dp139537 +g25273 +S'engraving' +p139538 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139539 +sg25268 +S'Bonaventura, Comte de Buquoy' +p139540 +sg25270 +S'Unknown 19th Century' +p139541 +sa(dp139542 +g25273 +S'engraving' +p139543 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139544 +sg25268 +S'Charles, Count of Bucquoy' +p139545 +sg25270 +S'Unknown 19th Century' +p139546 +sa(dp139547 +g25273 +S'engraving' +p139548 +sg25267 +g27 +sg25275 +S'published 1617' +p139549 +sg25268 +S'William Camden' +p139550 +sg25270 +S'Unknown 19th Century' +p139551 +sa(dp139552 +g25273 +S'etched copper plate, steelfaced' +p139553 +sg25267 +g27 +sg25275 +S'1930' +p139554 +sg25268 +S'Bookplate of Lessing and Edith Rosenwald' +p139555 +sg25270 +S'David Young Cameron' +p139556 +sa(dp139557 +g25273 +S'engraving' +p139558 +sg25267 +g27 +sg25275 +S'published 1636' +p139559 +sg25268 +S'William Camden' +p139560 +sg25270 +S'Unknown 19th Century' +p139561 +sa(dp139562 +g25273 +S'engraving' +p139563 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139564 +sg25268 +S'Richard Sackville, Third Earl of Dorset' +p139565 +sg25270 +S'Unknown 19th Century' +p139566 +sa(dp139567 +g25273 +S'engraving' +p139568 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139569 +sg25268 +S'Robert Devereux, Second Earl of Essex' +p139570 +sg25270 +S'Unknown 19th Century' +p139571 +sa(dp139572 +g25273 +S'engraving' +p139573 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139574 +sg25268 +S'Robert Devereux, Second Earl of Essex' +p139575 +sg25270 +S'Unknown 19th Century' +p139576 +sa(dp139577 +g25273 +S'engraving' +p139578 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139579 +sg25268 +S'Eva Fliegen' +p139580 +sg25270 +S'Unknown 19th Century' +p139581 +sa(dp139582 +g25273 +S'engraving' +p139583 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139584 +sg25268 +S'Eva Fliegen' +p139585 +sg25270 +S'Unknown 19th Century' +p139586 +sa(dp139587 +g25273 +S'engraving' +p139588 +sg25267 +g27 +sg25275 +S'published 1627' +p139589 +sg25268 +S'Frederick Henry, Prince of Orange' +p139590 +sg25270 +S'Unknown 19th Century' +p139591 +sa(dp139592 +g25273 +S'engraving' +p139593 +sg25267 +g27 +sg25275 +S'published 1627' +p139594 +sg25268 +S'Frederick Henry, Prince of Orange' +p139595 +sg25270 +S'Unknown 19th Century' +p139596 +sa(dp139597 +g25273 +S'engraving' +p139598 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139599 +sg25268 +S'Frederick Henry, Prince of Orange' +p139600 +sg25270 +S'Unknown 19th Century' +p139601 +sa(dp139602 +g25273 +S'engraving' +p139603 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139604 +sg25268 +S'Gustavus Adolphus, King of Sweden' +p139605 +sg25270 +S'Unknown 19th Century' +p139606 +sa(dp139607 +g25273 +S'etching' +p139608 +sg25267 +g27 +sg25275 +S'1892' +p139609 +sg25268 +S'Marij' +p139610 +sg25270 +S'David Young Cameron' +p139611 +sa(dp139612 +g25273 +S'engraving' +p139613 +sg25267 +g27 +sg25275 +S'published 1622' +p139614 +sg25268 +S'Patrick Hannay' +p139615 +sg25270 +S'Unknown 19th Century' +p139616 +sa(dp139617 +g25273 +S'engraving' +p139618 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139619 +sg25268 +S'Robert Dudley, Earl of Leicester' +p139620 +sg25270 +S'Unknown 19th Century' +p139621 +sa(dp139622 +g25273 +S'engraving' +p139623 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139624 +sg25268 +S'Maurice, Prince of Orange' +p139625 +sg25270 +S'Unknown 19th Century' +p139626 +sa(dp139627 +g25273 +S'engraving' +p139628 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139629 +sg25268 +S'Maurice, Prince of Orange' +p139630 +sg25270 +S'Unknown 19th Century' +p139631 +sa(dp139632 +g25273 +S'engraving' +p139633 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139634 +sg25268 +S'Henry de Vere, 18th Earl of Oxford and Henry Wriothsly, 3rd Earl of Southampton' +p139635 +sg25270 +S'Unknown 19th Century' +p139636 +sa(dp139637 +g25273 +S'engraving' +p139638 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139639 +sg25268 +S'Francis Manners, First Earl of Rutland' +p139640 +sg25270 +S'Unknown 19th Century' +p139641 +sa(dp139642 +g25273 +S'engraving' +p139643 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139644 +sg25268 +S'Francis Manners, Earl of Rutland' +p139645 +sg25270 +S'Unknown 19th Century' +p139646 +sa(dp139647 +g25273 +S'engraving' +p139648 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139649 +sg25268 +S'Ambrogio Spinola' +p139650 +sg25270 +S'Unknown 19th Century' +p139651 +sa(dp139652 +g25273 +S'engraving' +p139653 +sg25267 +g27 +sg25275 +S'published 1624' +p139654 +sg25268 +S'John White, D.D., Minister of Eccles' +p139655 +sg25270 +S'Unknown 19th Century' +p139656 +sa(dp139657 +g25273 +S'engraving' +p139658 +sg25267 +g27 +sg25275 +S'published 1634' +p139659 +sg25268 +S'Andrew Willet, D.D., Controversionalist' +p139660 +sg25270 +S'Unknown 19th Century' +p139661 +sa(dp139662 +g25268 +S'Libyan Sibyl' +p139663 +sg25270 +S'Baccio Baldini' +p139664 +sg25273 +S'engraving' +p139665 +sg25275 +S'c. 1470/1480' +p139666 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c730.jpg' +p139667 +sg25267 +g27 +sa(dp139668 +g25273 +S'engraving' +p139669 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139670 +sg25268 +S'John Williams, Archbishop of York, Lord Keeper' +p139671 +sg25270 +S'Unknown 19th Century' +p139672 +sa(dp139673 +g25273 +S'engraving' +p139674 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139675 +sg25268 +S'John Williams, Archbishop of York, Lord Keeper' +p139676 +sg25270 +S'Unknown 19th Century' +p139677 +sa(dp139678 +g25273 +S'engraving' +p139679 +sg25267 +g27 +sg25275 +S'published 1655' +p139680 +sg25268 +S"Title Page to Observations Upon Caesar's Commentaries by Clement Edmondes" +p139681 +sg25270 +S'Unknown 19th Century' +p139682 +sa(dp139683 +g25273 +S'engraving' +p139684 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139685 +sg25268 +S'John Dee (?)' +p139686 +sg25270 +S'Unknown 19th Century' +p139687 +sa(dp139688 +g25273 +S'engraving' +p139689 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139690 +sg25268 +S'Roger Bacon, Friar and Philosopher' +p139691 +sg25270 +S'Unknown 19th Century' +p139692 +sa(dp139693 +g25273 +S'engraving' +p139694 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139695 +sg25268 +S'John Dee, Astrologer' +p139696 +sg25270 +S'Unknown 19th Century' +p139697 +sa(dp139698 +g25273 +S'engraving' +p139699 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139700 +sg25268 +S'Edward Kelley, Alchemist, Friend of Dr. John Dee' +p139701 +sg25270 +S'Unknown 19th Century' +p139702 +sa(dp139703 +g25273 +S'engraving' +p139704 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139705 +sg25268 +S'Frederick V, King of Bohemia and Gabriel II, Prince of Transylvania' +p139706 +sg25270 +S'Unknown 19th Century' +p139707 +sa(dp139708 +g25273 +S'engraving' +p139709 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139710 +sg25268 +S'Henry Garnett, His Face in the Miraculous Corn Straw' +p139711 +sg25270 +S'Unknown 19th Century' +p139712 +sa(dp139713 +g25273 +S'engraving' +p139714 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139715 +sg25268 +S'Isaac Oliver, Miniature Painter' +p139716 +sg25270 +S'Hendrik Hondius I' +p139717 +sa(dp139718 +g25268 +S'Madonna and Child' +p139719 +sg25270 +S'Carlo Crivelli' +p139720 +sg25273 +S'tempera on panel' +p139721 +sg25275 +S'c. 1490' +p139722 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007a9.jpg' +p139723 +sg25267 +g27 +sa(dp139724 +g25268 +S'Jesus Attracting the Faithful to Heart' +p139725 +sg25270 +S'German 15th Century' +p139726 +sg25273 +S'Overall: 12.7 x 18.1 cm (5 x 7 1/8 in.)\r\noverall (external frame size): 31.8 x 39.4 cm (12 1/2 x 15 1/2 in.)' +p139727 +sg25275 +S'\nwoodcut, hand-colored in yellow, green, brown, red lake, and olive brown' +p139728 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005625.jpg' +p139729 +sg25267 +g27 +sa(dp139730 +g25273 +S'engraving' +p139731 +sg25267 +g27 +sg25275 +S'in or after 1624' +p139732 +sg25268 +S'Samuel Purchas' +p139733 +sg25270 +S'Unknown 19th Century' +p139734 +sa(dp139735 +g25273 +S'engraving' +p139736 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139737 +sg25268 +S'Horace Vere, Lord Vere of Tilbury' +p139738 +sg25270 +S'Unknown 19th Century' +p139739 +sa(dp139740 +g25273 +S'engraving' +p139741 +sg25267 +g27 +sg25275 +S'published 1614' +p139742 +sg25268 +S'Edmund Geninges, Catholic Priest' +p139743 +sg25270 +S'Martin Baes' +p139744 +sa(dp139745 +g25273 +S'Dutch, c. 1565 - 1637' +p139746 +sg25267 +g27 +sg25275 +S'(artist after)' +p139747 +sg25268 +S'Gunpowder Plot' +p139748 +sg25270 +S'Artist Information (' +p139749 +sa(dp139750 +g25273 +S'engraving' +p139751 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139752 +sg25268 +S'Thomas Percy and the Gunpowder Plot' +p139753 +sg25270 +S'Unknown 19th Century' +p139754 +sa(dp139755 +g25273 +S'engraving' +p139756 +sg25267 +g27 +sg25275 +S'1606' +p139757 +sg25268 +S'Gunpowder Plot' +p139758 +sg25270 +S'George Keller' +p139759 +sa(dp139760 +g25273 +S', 1645' +p139761 +sg25267 +g27 +sg25275 +S'\n' +p139762 +sg25268 +S'Thomas Percy' +p139763 +sg25270 +S'Crispijn van de Passe I' +p139764 +sa(dp139765 +g25273 +S'engraving' +p139766 +sg25267 +g27 +sg25275 +S'published 1642' +p139767 +sg25268 +S'Duke of Alva' +p139768 +sg25270 +S'William Marshall' +p139769 +sa(dp139770 +g25273 +S'engraving' +p139771 +sg25267 +g27 +sg25275 +S'published 1633' +p139772 +sg25268 +S'William Ames' +p139773 +sg25270 +S'William Marshall' +p139774 +sa(dp139775 +g25273 +S'engraving' +p139776 +sg25267 +g27 +sg25275 +S'1640' +p139777 +sg25268 +S'Francis Bacon' +p139778 +sg25270 +S'William Marshall' +p139779 +sa(dp139780 +g25268 +S'Allegory on Death' +p139781 +sg25270 +S'Artist Information (' +p139782 +sg25273 +S'(artist after)' +p139783 +sg25275 +S'\n' +p139784 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c89c.jpg' +p139785 +sg25267 +g27 +sa(dp139786 +g25273 +S'engraving' +p139787 +sg25267 +g27 +sg25275 +S'1640' +p139788 +sg25268 +S'Francis Bacon' +p139789 +sg25270 +S'William Marshall' +p139790 +sa(dp139791 +g25273 +S'engraving' +p139792 +sg25267 +g27 +sg25275 +S'1640' +p139793 +sg25268 +S'Richard Carpenter' +p139794 +sg25270 +S'William Marshall' +p139795 +sa(dp139796 +g25273 +S'engraving' +p139797 +sg25267 +g27 +sg25275 +S'published 1649' +p139798 +sg25268 +S'Charles I' +p139799 +sg25270 +S'William Marshall' +p139800 +sa(dp139801 +g25273 +S'engraving' +p139802 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139803 +sg25268 +S'Charles I' +p139804 +sg25270 +S'William Marshall' +p139805 +sa(dp139806 +g25273 +S'engraving' +p139807 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139808 +sg25268 +S'Henry, Duke of Gloucester' +p139809 +sg25270 +S'William Marshall' +p139810 +sa(dp139811 +g25273 +S'engraving' +p139812 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139813 +sg25268 +S'Henry, Duke of Gloucester' +p139814 +sg25270 +S'William Marshall' +p139815 +sa(dp139816 +g25273 +S'engraving' +p139817 +sg25267 +g27 +sg25275 +S'1635/1639' +p139818 +sg25268 +S'John Donne' +p139819 +sg25270 +S'William Marshall' +p139820 +sa(dp139821 +g25273 +S'engraving' +p139822 +sg25267 +g27 +sg25275 +S'published 1642' +p139823 +sg25268 +S'Sir Francis Drake' +p139824 +sg25270 +S'William Marshall' +p139825 +sa(dp139826 +g25273 +S'engraving' +p139827 +sg25267 +g27 +sg25275 +S'published 1646' +p139828 +sg25268 +S'Robert Devereux, Third Earl of Essex' +p139829 +sg25270 +S'William Marshall' +p139830 +sa(dp139831 +g25273 +S'engraving' +p139832 +sg25267 +g27 +sg25275 +S'published 1647' +p139833 +sg25268 +S'Sir Thomas Fairfax, General of the Forces Raised by Parliament' +p139834 +sg25270 +S'William Marshall' +p139835 +sa(dp139836 +g25268 +S'The Embalming of Christ' +p139837 +sg25270 +S'German 15th Century' +p139838 +sg25273 +S'Schreiber, no. 514, State (=511?)' +p139839 +sg25275 +S'\nwoodcut, hand-colored in red lake, blue, green, yellow, and gold' +p139840 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5e8.jpg' +p139841 +sg25267 +g27 +sa(dp139842 +g25273 +S'engraving' +p139843 +sg25267 +g27 +sg25275 +S'published 1649' +p139844 +sg25268 +S'Leticia Morison, Viscountess Falkland' +p139845 +sg25270 +S'William Marshall' +p139846 +sa(dp139847 +g25273 +S'engraving' +p139848 +sg25267 +g27 +sg25275 +S'1645' +p139849 +sg25268 +S'Daniel Featly, age 65' +p139850 +sg25270 +S'William Marshall' +p139851 +sa(dp139852 +g25273 +S'engraving' +p139853 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139854 +sg25268 +S'Daniel Featly, age 65' +p139855 +sg25270 +S'William Marshall' +p139856 +sa(dp139857 +g25273 +S'engraving' +p139858 +sg25267 +g27 +sg25275 +S'published 1649' +p139859 +sg25268 +S'Edmund Gregory' +p139860 +sg25270 +S'William Marshall' +p139861 +sa(dp139862 +g25273 +S'engraving' +p139863 +sg25267 +g27 +sg25275 +S'1641' +p139864 +sg25268 +S'Joseph Hall, Bishop of Norwich' +p139865 +sg25270 +S'William Marshall' +p139866 +sa(dp139867 +g25273 +S'engraving' +p139868 +sg25267 +g27 +sg25275 +S'1641' +p139869 +sg25268 +S'Joseph Hall, Bishop of Norwich' +p139870 +sg25270 +S'William Marshall' +p139871 +sa(dp139872 +g25273 +S'engraving' +p139873 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139874 +sg25268 +S'James, First Duke of Hamilton, as Marquis' +p139875 +sg25270 +S'William Marshall' +p139876 +sa(dp139877 +g25273 +S'engraving' +p139878 +sg25267 +g27 +sg25275 +S'published 1636' +p139879 +sg25268 +S'William Hodson' +p139880 +sg25270 +S'William Marshall' +p139881 +sa(dp139882 +g25273 +S'engraving' +p139883 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139884 +sg25268 +S'Elizabeth Stanley, Countess of Huntingdon' +p139885 +sg25270 +S'William Marshall' +p139886 +sa(dp139887 +g25273 +S'English, active 1617/1649' +p139888 +sg25267 +g27 +sg25275 +S'(artist after)' +p139889 +sg25268 +S'David Jenkins, Welsh Magistrate and Royalist' +p139890 +sg25270 +S'Artist Information (' +p139891 +sa(dp139892 +g25268 +S'The Man of Sorrows Mocked by a Soldier' +p139893 +sg25270 +S'Albrecht D\xc3\xbcrer' +p139894 +sg25273 +S'woodcut' +p139895 +sg25275 +S'probably 1511' +p139896 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0cd.jpg' +p139897 +sg25267 +g27 +sa(dp139898 +g25273 +S'English, active 1617/1649' +p139899 +sg25267 +g27 +sg25275 +S'(artist after)' +p139900 +sg25268 +S'David Jenkins' +p139901 +sg25270 +S'Artist Information (' +p139902 +sa(dp139903 +g25273 +S'engraving' +p139904 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139905 +sg25268 +S'William Laud' +p139906 +sg25270 +S'William Marshall' +p139907 +sa(dp139908 +g25273 +S'engraving' +p139909 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139910 +sg25268 +S'William Laud' +p139911 +sg25270 +S'William Marshall' +p139912 +sa(dp139913 +g25273 +S'engraving' +p139914 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139915 +sg25268 +S'Robert Dudley, Earl of Leicester' +p139916 +sg25270 +S'William Marshall' +p139917 +sa(dp139918 +g25273 +S'engraving' +p139919 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139920 +sg25268 +S'Robert Dudley, Earl of Leicester' +p139921 +sg25270 +S'William Marshall' +p139922 +sa(dp139923 +g25273 +S'engraving' +p139924 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139925 +sg25268 +S'William Lilly, Astrologer' +p139926 +sg25270 +S'William Marshall' +p139927 +sa(dp139928 +g25273 +S'engraving' +p139929 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139930 +sg25268 +S'Edward, Lord Lyttelton of Mounslow' +p139931 +sg25270 +S'William Marshall' +p139932 +sa(dp139933 +g25273 +S'engraving' +p139934 +sg25267 +g27 +sg25275 +S'published 1649' +p139935 +sg25268 +S'Henry Cary, Earl of Monmouth' +p139936 +sg25270 +S'William Marshall' +p139937 +sa(dp139938 +g25273 +S'engraving' +p139939 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139940 +sg25268 +S'Henry Cary' +p139941 +sg25270 +S'William Marshall' +p139942 +sa(dp139943 +g25273 +S'engraving' +p139944 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139945 +sg25268 +S'Henry Cary, Earl of Monmouth' +p139946 +sg25270 +S'William Marshall' +p139947 +sa(dp139948 +g25268 +S'Christ Crowned with Thorns' +p139949 +sg25270 +S'Artist Information (' +p139950 +sg25273 +S'German, active c. 1460/1480' +p139951 +sg25275 +S'(related artist)' +p139952 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a471.jpg' +p139953 +sg25267 +g27 +sa(dp139954 +g25273 +S'engraving' +p139955 +sg25267 +g27 +sg25275 +S'1649' +p139956 +sg25268 +S'John Ogilby' +p139957 +sg25270 +S'William Marshall' +p139958 +sa(dp139959 +g25273 +S'etching' +p139960 +sg25267 +g27 +sg25275 +S'published 1640' +p139961 +sg25268 +S'John Parkinson, Apothecary and Herbalist to James I' +p139962 +sg25270 +S'William Marshall' +p139963 +sa(dp139964 +g25273 +S'engraving' +p139965 +sg25267 +g27 +sg25275 +S'published 1642' +p139966 +sg25268 +S'William Perkins, Preacher' +p139967 +sg25270 +S'William Marshall' +p139968 +sa(dp139969 +g25273 +S'engraving' +p139970 +sg25267 +g27 +sg25275 +S'published 1649' +p139971 +sg25268 +S'John Quarles, Poet' +p139972 +sg25270 +S'William Marshall' +p139973 +sa(dp139974 +g25273 +S'engraving' +p139975 +sg25267 +g27 +sg25275 +S'1649' +p139976 +sg25268 +S'John Quarles' +p139977 +sg25270 +S'William Marshall' +p139978 +sa(dp139979 +g25273 +S'engraving' +p139980 +sg25267 +g27 +sg25275 +S'published 1642' +p139981 +sg25268 +S'Captain Charles Saltonstall' +p139982 +sg25270 +S'William Marshall' +p139983 +sa(dp139984 +g25273 +S'engraving' +p139985 +sg25267 +g27 +sg25275 +S'1646' +p139986 +sg25268 +S'Thomas Scott, B.D., Political Writer' +p139987 +sg25270 +S'William Marshall' +p139988 +sa(dp139989 +g25273 +S'engraving' +p139990 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139991 +sg25268 +S'James Shirley' +p139992 +sg25270 +S'William Marshall' +p139993 +sa(dp139994 +g25273 +S'engraving' +p139995 +sg25267 +g27 +sg25275 +S'unknown date\n' +p139996 +sg25268 +S'James Shirley' +p139997 +sg25270 +S'William Marshall' +p139998 +sa(dp139999 +g25273 +S'engraving' +p140000 +sg25267 +g27 +sg25275 +S'published 1649' +p140001 +sg25268 +S'Josiah Shute, B.D.' +p140002 +sg25270 +S'William Marshall' +p140003 +sa(dp140004 +g25268 +S'Pilate Washing His Hands [recto]' +p140005 +sg25270 +S'German 15th Century' +p140006 +sg25273 +S'sheet (trimmed to plate mark): 7.2 x 5.5 cm (2 13/16 x 2 3/16 in.)' +p140007 +sg25275 +S'\nwoodcut, hand-colored in lavender, rose, green, yellow, brown, blue, and red' +p140008 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a506.jpg' +p140009 +sg25267 +g27 +sa(dp140010 +g25273 +S'engraving' +p140011 +sg25267 +g27 +sg25275 +S'published 1638' +p140012 +sg25268 +S'Richard Sibbes, D.D.' +p140013 +sg25270 +S'William Marshall' +p140014 +sa(dp140015 +g25273 +S'engraving' +p140016 +sg25267 +g27 +sg25275 +S'published 1647' +p140017 +sg25268 +S'Sir Robert Stapylton, dramatic poet and translator' +p140018 +sg25270 +S'William Marshall' +p140019 +sa(dp140020 +g25273 +S'engraving' +p140021 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140022 +sg25268 +S'Sir Robert Stapylton' +p140023 +sg25270 +S'William Marshall' +p140024 +sa(dp140025 +g25273 +S'engraving' +p140026 +sg25267 +g27 +sg25275 +S'published 1637' +p140027 +sg25268 +S'John Sym, Rector of Leigh and Essex' +p140028 +sg25270 +S'William Marshall' +p140029 +sa(dp140030 +g25273 +S'engraving' +p140031 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140032 +sg25268 +S'Thomas Taylor, D.D.' +p140033 +sg25270 +S'William Marshall' +p140034 +sa(dp140035 +g25273 +S'engraving' +p140036 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140037 +sg25268 +S'Thomas Taylor, D.D.' +p140038 +sg25270 +S'William Marshall' +p140039 +sa(dp140040 +g25273 +S'engraving' +p140041 +sg25267 +g27 +sg25275 +S'1645' +p140042 +sg25268 +S'John Thompson' +p140043 +sg25270 +S'William Marshall' +p140044 +sa(dp140045 +g25273 +S'engraving' +p140046 +sg25267 +g27 +sg25275 +S'1645' +p140047 +sg25268 +S'John Thompson, Navigator' +p140048 +sg25270 +S'William Marshall' +p140049 +sa(dp140050 +g25273 +S'engraving' +p140051 +sg25267 +g27 +sg25275 +S'1647' +p140052 +sg25268 +S'James Ussher, Archbishop of Armagh' +p140053 +sg25270 +S'William Marshall' +p140054 +sa(dp140055 +g25273 +S'engraving' +p140056 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140057 +sg25268 +S'James Ussher, Archbishop of Armagh' +p140058 +sg25270 +S'William Marshall' +p140059 +sa(dp140060 +g25268 +S'Ecce Homo [verso]' +p140061 +sg25270 +S'German 15th Century' +p140062 +sg25273 +S'Schreiber, no. 335, State m' +p140063 +sg25275 +S'\nwoodcut, hand-colored in lavender, rose, green, yellow, brown, blue, and red' +p140064 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a507.jpg' +p140065 +sg25267 +g27 +sa(dp140066 +g25273 +S'engraving' +p140067 +sg25267 +g27 +sg25275 +S'published 1649' +p140068 +sg25268 +S'Captain Thomas Weaver of Armagh' +p140069 +sg25270 +S'William Marshall' +p140070 +sa(dp140071 +g25273 +S'engraving' +p140072 +sg25267 +g27 +sg25275 +S'published 1637' +p140073 +sg25268 +S'Henry Welby' +p140074 +sg25270 +S'William Marshall' +p140075 +sa(dp140076 +g25273 +S'engraving' +p140077 +sg25267 +g27 +sg25275 +S'published 1642' +p140078 +sg25268 +S'Thomas Wolsey, Cardinal, Archibishop of York' +p140079 +sg25270 +S'William Marshall' +p140080 +sa(dp140081 +g25273 +S'engraving' +p140082 +sg25267 +g27 +sg25275 +S'1638' +p140083 +sg25268 +S'Title page to R. Brathwait, A Survey of History' +p140084 +sg25270 +S'William Marshall' +p140085 +sa(dp140086 +g25273 +S'engraving' +p140087 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140088 +sg25268 +S'Title page to Richard Brathwait, English Gentleman and English Gentlewoman' +p140089 +sg25270 +S'William Marshall' +p140090 +sa(dp140091 +g25273 +S'engraving' +p140092 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140093 +sg25268 +S'Title page to Thomas Fuller, Holy State' +p140094 +sg25270 +S'William Marshall' +p140095 +sa(dp140096 +g25273 +S'engraving' +p140097 +sg25267 +g27 +sg25275 +S'1638' +p140098 +sg25268 +S'Title page to J.L. Guez, Sieur du Balzack, New Epistles' +p140099 +sg25270 +S'William Marshall' +p140100 +sa(dp140101 +g25273 +S'engraving' +p140102 +sg25267 +g27 +sg25275 +S'1638' +p140103 +sg25268 +S'Sir Thomas More, Epigrammata' +p140104 +sg25270 +S'William Marshall' +p140105 +sa(dp140106 +g25273 +S'engraving' +p140107 +sg25267 +g27 +sg25275 +S'1646' +p140108 +sg25268 +S'Title Page to Francis Quarles, Shepherds Oracles' +p140109 +sg25270 +S'William Marshall' +p140110 +sa(dp140111 +g25273 +S'engraving' +p140112 +sg25267 +g27 +sg25275 +S'published 1649' +p140113 +sg25268 +S'Bust of Earl of Monmouth' +p140114 +sg25270 +S'William Marshall' +p140115 +sa(dp140116 +g25268 +S'The Adoration of the Magi Set in a Border' +p140117 +sg25270 +S'German 15th Century' +p140118 +sg25273 +S'Schreiber, Vol. *, no. 112, State a' +p140119 +sg25275 +S'\nwoodcut, hand-colored in red, lt. green, brown, and yellow' +p140120 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4fc.jpg' +p140121 +sg25267 +g27 +sa(dp140122 +g25273 +S'engraving' +p140123 +sg25267 +g27 +sg25275 +S'published 1649' +p140124 +sg25268 +S'Title Page to J.F. Lenault, The Use of the Passions' +p140125 +sg25270 +S'William Marshall' +p140126 +sa(dp140127 +g25273 +S'engraving' +p140128 +sg25267 +g27 +sg25275 +S'1633' +p140129 +sg25268 +S'Title Page to Sir Thomas Smith, The Commonwealth of England' +p140130 +sg25270 +S'William Marshall' +p140131 +sa(dp140132 +g25273 +S'engraving' +p140133 +sg25267 +g27 +sg25275 +S'1632' +p140134 +sg25268 +S'Title Page to Henophon, Cyrupaedia, translated by P. Holland' +p140135 +sg25270 +S'William Marshall' +p140136 +sa(dp140137 +g25273 +S'(artist after)' +p140138 +sg25267 +g27 +sg25275 +S'\n' +p140139 +sg25268 +S'Thomas Howard, Earl of Arundel' +p140140 +sg25270 +S'Artist Information (' +p140141 +sa(dp140142 +g25273 +S'engraving' +p140143 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140144 +sg25268 +S'Charles I' +p140145 +sg25270 +S'Lucas Emil Vorsterman' +p140146 +sa(dp140147 +g25273 +S'(artist after)' +p140148 +sg25267 +g27 +sg25275 +S'\n' +p140149 +sg25268 +S'Desiderius Erasmus' +p140150 +sg25270 +S'Artist Information (' +p140151 +sa(dp140152 +g25273 +S'(artist after)' +p140153 +sg25267 +g27 +sg25275 +S'\n' +p140154 +sg25268 +S'Desiderius Erasmus' +p140155 +sg25270 +S'Artist Information (' +p140156 +sa(dp140157 +g25273 +S'(artist after)' +p140158 +sg25267 +g27 +sg25275 +S'\n' +p140159 +sg25268 +S'Desiderius Erasmus' +p140160 +sg25270 +S'Artist Information (' +p140161 +sa(dp140162 +g25273 +S'(artist)' +p140163 +sg25267 +g27 +sg25275 +S'\n' +p140164 +sg25268 +S'Richard Kingston, Political Pamphleteer, Chaplain to Charles I' +p140165 +sg25270 +S'Artist Information (' +p140166 +sa(dp140167 +g25268 +S'Saint Bonaventure Arriving and Preaching in Lyon' +p140168 +sg25270 +S'French 15th Century' +p140169 +sg25273 +S'Schreiber, Vol. IX, no. 1282, State x' +p140170 +sg25275 +S'\nwoodcut, hand-colored in vermilion, orange-rose, light and dark gray-blue, and lavender' +p140171 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a0006078.jpg' +p140172 +sg25267 +g27 +sa(dp140173 +g25273 +S'engraving' +p140174 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140175 +sg25268 +S'William, First Duke of Newcastle' +p140176 +sg25270 +S'Lucas Emil Vorsterman' +p140177 +sa(dp140178 +g25273 +S'(artist after)' +p140179 +sg25267 +g27 +sg25275 +S'\n' +p140180 +sg25268 +S'Thomas Howard, Third Duke of Norfolk' +p140181 +sg25270 +S'Artist Information (' +p140182 +sa(dp140183 +g25273 +S'engraving' +p140184 +sg25267 +g27 +sg25275 +S'1631' +p140185 +sg25268 +S'Abraham Aurelius, Minister of the French Church in London' +p140186 +sg25270 +S'Robert van Voerst' +p140187 +sa(dp140188 +g25273 +S'(artist after)' +p140189 +sg25267 +g27 +sg25275 +S'\n' +p140190 +sg25268 +S'Christian, Duke of Brunswick' +p140191 +sg25270 +S'Artist Information (' +p140192 +sa(dp140193 +g25273 +S'(artist after)' +p140194 +sg25267 +g27 +sg25275 +S'\n' +p140195 +sg25268 +S'William Fielding, First Earl of Denbigh' +p140196 +sg25270 +S'Artist Information (' +p140197 +sa(dp140198 +g25273 +S'(artist after)' +p140199 +sg25267 +g27 +sg25275 +S'\n' +p140200 +sg25268 +S'Edward Sackville, Fourth Earl of Dorset' +p140201 +sg25270 +S'Artist Information (' +p140202 +sa(dp140203 +g25273 +S', published 1633' +p140204 +sg25267 +g27 +sg25275 +S'\n' +p140205 +sg25268 +S'Queen Elizabeth' +p140206 +sg25270 +S'Robert van Voerst' +p140207 +sa(dp140208 +g25273 +S', unknown date' +p140209 +sg25267 +g27 +sg25275 +S'\n' +p140210 +sg25268 +S'Prince Frederick Henry Bavaria' +p140211 +sg25270 +S'Robert van Voerst' +p140212 +sa(dp140213 +g25273 +S'engraving' +p140214 +sg25267 +g27 +sg25275 +S'1630' +p140215 +sg25268 +S'Charles Louis, Elector Palatine' +p140216 +sg25270 +S'Robert van Voerst' +p140217 +sa(dp140218 +g25273 +S'(artist after)' +p140219 +sg25267 +g27 +sg25275 +S'\n' +p140220 +sg25268 +S'Robert Bertie, First Earl of Lindsey, Royalist, Fell at Edgehill' +p140221 +sg25270 +S'Artist Information (' +p140222 +sa(dp140223 +g25268 +S'Saint John the Baptist Pray for Us' +p140224 +sg25270 +S'French 19th Century' +p140225 +sg25273 +S'Rosenwald Collection' +p140226 +sg25275 +S'\nhand-colored woodcut on blue laid paper' +p140227 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a0009016.jpg' +p140228 +sg25267 +g27 +sa(dp140229 +g25273 +S'(artist after)' +p140230 +sg25267 +g27 +sg25275 +S'\n' +p140231 +sg25268 +S'Robert Bertie, First Earl of Lindsey' +p140232 +sg25270 +S'Artist Information (' +p140233 +sa(dp140234 +g25273 +S'(artist after)' +p140235 +sg25267 +g27 +sg25275 +S'\n' +p140236 +sg25268 +S'Philip Herbert, Fourth Earl of Pembroke' +p140237 +sg25270 +S'Artist Information (' +p140238 +sa(dp140239 +g25273 +S'(artist after)' +p140240 +sg25267 +g27 +sg25275 +S'\n' +p140241 +sg25268 +S'Philip Herbert, Fourth Earl of Pembroke' +p140242 +sg25270 +S'Artist Information (' +p140243 +sa(dp140244 +g25273 +S'(artist after)' +p140245 +sg25267 +g27 +sg25275 +S'\n' +p140246 +sg25268 +S'James Stuart, Duke of Richmond and Lennox' +p140247 +sg25270 +S'Artist Information (' +p140248 +sa(dp140249 +g25273 +S'engraving' +p140250 +sg25267 +g27 +sg25275 +S'published 1633' +p140251 +sg25268 +S'George Carew, Earl of Totnes' +p140252 +sg25270 +S'Robert van Voerst' +p140253 +sa(dp140254 +g25273 +S'engraving' +p140255 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140256 +sg25268 +S'George Carew, Earl of Totnes' +p140257 +sg25270 +S'Robert van Voerst' +p140258 +sa(dp140259 +g25273 +S'(artist after)' +p140260 +sg25267 +g27 +sg25275 +S'\n' +p140261 +sg25268 +S'Robert van Voerst' +p140262 +sg25270 +S'Artist Information (' +p140263 +sa(dp140264 +g25273 +S'(artist after)' +p140265 +sg25267 +g27 +sg25275 +S'\n' +p140266 +sg25268 +S'Simon Vouet' +p140267 +sg25270 +S'Artist Information (' +p140268 +sa(dp140269 +g25273 +S', unknown date' +p140270 +sg25267 +g27 +sg25275 +S'\n' +p140271 +sg25268 +S'Robert Rich, Second Earl of Warwick' +p140272 +sg25270 +S'Robert van Voerst' +p140273 +sa(dp140274 +g25273 +S', unknown date' +p140275 +sg25267 +g27 +sg25275 +S'\n' +p140276 +sg25268 +S'Robert Rich' +p140277 +sg25270 +S'Robert van Voerst' +p140278 +sa(dp140279 +g25268 +S'Saint Ursula with Two Angels and Donor' +p140280 +sg25270 +S'Benozzo Gozzoli' +p140281 +sg25273 +S'tempera on panel' +p140282 +sg25275 +S'c. 1455/1460' +p140283 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b11.jpg' +p140284 +sg25267 +g27 +sa(dp140285 +g25268 +S'Exhortation Against Avarice' +p140286 +sg25270 +S'German 15th Century' +p140287 +sg25273 +S'Schreiber Manuel, Vol. IV, p., no. 307, State ed. VIIa' +p140288 +sg25275 +S'\nhand-colored woodcut' +p140289 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a660.jpg' +p140290 +sg25267 +g27 +sa(dp140291 +g25273 +S'engraving' +p140292 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140293 +sg25268 +S'Francis Bacon' +p140294 +sg25270 +S'Unknown 19th Century' +p140295 +sa(dp140296 +g25273 +S'engraving' +p140297 +sg25267 +g27 +sg25275 +S'published 1627' +p140298 +sg25268 +S'George Carleton, Bishop of Cheschester' +p140299 +sg25270 +S'Frederik van Hulsen' +p140300 +sa(dp140301 +g25273 +S'engraving' +p140302 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140303 +sg25268 +S'George Carleton, Bishop of Cheschester' +p140304 +sg25270 +S'Frederik van Hulsen' +p140305 +sa(dp140306 +g25273 +S'engraving' +p140307 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140308 +sg25268 +S'George Carleton, Bishop of Cheschester' +p140309 +sg25270 +S'Frederik van Hulsen' +p140310 +sa(dp140311 +g25273 +S'engraving' +p140312 +sg25267 +g27 +sg25275 +S'published 1627' +p140313 +sg25268 +S'Title Page to History of the Defenders of theCatholic Faith, by Christopher Lever' +p140314 +sg25270 +S'Frederik van Hulsen' +p140315 +sa(dp140316 +g25273 +S'engraving' +p140317 +sg25267 +g27 +sg25275 +S'1627' +p140318 +sg25268 +S'Title Page to History of the Defenders of theCatholic Faith, by Christopher Lever' +p140319 +sg25270 +S'Frederik van Hulsen' +p140320 +sa(dp140321 +g25273 +S'engraving' +p140322 +sg25267 +g27 +sg25275 +S'published 1632' +p140323 +sg25268 +S'John Speed' +p140324 +sg25270 +S'Salomon Savery' +p140325 +sa(dp140326 +g25273 +S'engraving' +p140327 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140328 +sg25268 +S'John Speed' +p140329 +sg25270 +S'Salomon Savery' +p140330 +sa(dp140331 +g25273 +S'engraving' +p140332 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140333 +sg25268 +S'Martin Luther' +p140334 +sg25270 +S'Theodor Holtmann' +p140335 +sa(dp140336 +g25273 +S'engraving' +p140337 +sg25267 +g27 +sg25275 +S'published 1643' +p140338 +sg25268 +S'William Barriffe' +p140339 +sg25270 +S'George Glover' +p140340 +sa(dp140341 +g25268 +S'Christ on the Cross' +p140342 +sg25270 +S'German 15th Century' +p140343 +sg25273 +S'Schreiber, no. 2328' +p140344 +sg25275 +S'\nmetalcut, hand-colored in green, red, and yellow' +p140345 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a472.jpg' +p140346 +sg25267 +g27 +sa(dp140347 +g25273 +S'engraving' +p140348 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140349 +sg25268 +S'Charles II as a Child' +p140350 +sg25270 +S'George Glover' +p140351 +sa(dp140352 +g25273 +S'engraving' +p140353 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140354 +sg25268 +S'Sir Edward Dering' +p140355 +sg25270 +S'George Glover' +p140356 +sa(dp140357 +g25273 +S'engraving' +p140358 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140359 +sg25268 +S'Sir Edward Dering' +p140360 +sg25270 +S'George Glover' +p140361 +sa(dp140362 +g25273 +S'engraving' +p140363 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140364 +sg25268 +S'Sir Edward Dering' +p140365 +sg25270 +S'George Glover' +p140366 +sa(dp140367 +g25273 +S'engraving' +p140368 +sg25267 +g27 +sg25275 +S'published 1641' +p140369 +sg25268 +S'John Foxe' +p140370 +sg25270 +S'George Glover' +p140371 +sa(dp140372 +g25273 +S'engraving' +p140373 +sg25267 +g27 +sg25275 +S'1642' +p140374 +sg25268 +S'John Goodwin' +p140375 +sg25270 +S'George Glover' +p140376 +sa(dp140377 +g25273 +S'engraving' +p140378 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140379 +sg25268 +S'William Perkins' +p140380 +sg25270 +S'George Glover' +p140381 +sa(dp140382 +g25273 +S'(artist after)' +p140383 +sg25267 +g27 +sg25275 +S'\n' +p140384 +sg25268 +S'John Pym' +p140385 +sg25270 +S'Artist Information (' +p140386 +sa(dp140387 +g25273 +S'engraving' +p140388 +sg25267 +g27 +sg25275 +S'1637' +p140389 +sg25268 +S'Lewis Roberts' +p140390 +sg25270 +S'George Glover' +p140391 +sa(dp140392 +g25273 +S'engraving' +p140393 +sg25267 +g27 +sg25275 +S'1637' +p140394 +sg25268 +S'Lewis Roberts' +p140395 +sg25270 +S'George Glover' +p140396 +sa(dp140397 +g25268 +S'Saint Ottilia' +p140398 +sg25270 +S'German 15th Century' +p140399 +sg25273 +S'Schreiber, Vol. *, no. 1647, State c' +p140400 +sg25275 +S'\nwoodcut in brown, hand-colored in black, green, red, yellow, blue, gold, and orange' +p140401 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5ba.jpg' +p140402 +sg25267 +g27 +sa(dp140403 +g25273 +S'engraving' +p140404 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140405 +sg25268 +S'James Ussher, Archbishop of Armagh' +p140406 +sg25270 +S'George Glover' +p140407 +sa(dp140408 +g25273 +S'(artist)' +p140409 +sg25267 +g27 +sg25275 +S'\n' +p140410 +sg25268 +S'Edward VI' +p140411 +sg25270 +S'Artist Information (' +p140412 +sa(dp140413 +g25273 +S'(artist)' +p140414 +sg25267 +g27 +sg25275 +S'\n' +p140415 +sg25268 +S'Queen Elizabeth' +p140416 +sg25270 +S'Artist Information (' +p140417 +sa(dp140418 +g25273 +S'engraving' +p140419 +sg25267 +g27 +sg25275 +S'published 1637' +p140420 +sg25268 +S'Title Page for Devotionis Augustinianae Flamma, by William Austin' +p140421 +sg25270 +S'George Glover' +p140422 +sa(dp140423 +g25273 +S'engraving' +p140424 +sg25267 +g27 +sg25275 +S'published 1637' +p140425 +sg25268 +S'Title Page for Devotionis Augustinianae Flamma, by William Austin' +p140426 +sg25270 +S'George Glover' +p140427 +sa(dp140428 +g25273 +S'engraving' +p140429 +sg25267 +g27 +sg25275 +S'published 1638' +p140430 +sg25268 +S'Title Page for The Golden Scepter, by John Preston' +p140431 +sg25270 +S'George Glover' +p140432 +sa(dp140433 +g25273 +S'engraving' +p140434 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140435 +sg25268 +S'Charles II as Prince' +p140436 +sg25270 +S'Cornelis van Dalen I' +p140437 +sa(dp140438 +g25273 +S'engraving' +p140439 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140440 +sg25268 +S'Algeron Percy, 10th Earl of Northumberland' +p140441 +sg25270 +S'Cornelis van Dalen I' +p140442 +sa(dp140443 +g25273 +S'engraving' +p140444 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140445 +sg25268 +S'Josuah Sylvester, Poet' +p140446 +sg25270 +S'Cornelis van Dalen I' +p140447 +sa(dp140448 +g25273 +S'engraving' +p140449 +sg25267 +g27 +sg25275 +S'1632' +p140450 +sg25268 +S'Title Page to Cruso, Militarie Instructions for the Cavallrie' +p140451 +sg25270 +S'Cornelis van Dalen I' +p140452 +sa(dp140453 +g25268 +S'Genealogical Tree of Christ' +p140454 +sg25270 +S'German 15th Century' +p140455 +sg25273 +S'Schreiber, Vol. *, no. 1782, State b' +p140456 +sg25275 +S'\nwoodcut, hand-colored in red lake, yellow, green, and brown' +p140457 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5b5.jpg' +p140458 +sg25267 +g27 +sa(dp140459 +g25273 +S'engraving' +p140460 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140461 +sg25268 +S'Patrick Forbes, Bishop of Aberdeen' +p140462 +sg25270 +S'Unknown 19th Century' +p140463 +sa(dp140464 +g25273 +S'engraving' +p140465 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140466 +sg25268 +S'Richard Gethinge, Writing Master' +p140467 +sg25270 +S'Unknown 19th Century' +p140468 +sa(dp140469 +g25273 +S'engraving' +p140470 +sg25267 +g27 +sg25275 +S'published 1635' +p140471 +sg25268 +S'John Bate, Writer' +p140472 +sg25270 +S'George Gifford' +p140473 +sa(dp140474 +g25273 +S'engraving' +p140475 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140476 +sg25268 +S'John Bate' +p140477 +sg25270 +S'George Gifford' +p140478 +sa(dp140479 +g25273 +S'engraving' +p140480 +sg25267 +g27 +sg25275 +S'published 1635' +p140481 +sg25268 +S'Hugh Latimer, Bishop of Worcester' +p140482 +sg25270 +S'George Gifford' +p140483 +sa(dp140484 +g25273 +S'engraving' +p140485 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140486 +sg25268 +S'Hugh Latimer' +p140487 +sg25270 +S'George Gifford' +p140488 +sa(dp140489 +g25273 +S'engraving' +p140490 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140491 +sg25268 +S'Lionel Lockyer, Physician' +p140492 +sg25270 +S'Unknown 19th Century' +p140493 +sa(dp140494 +g25273 +S'engraving' +p140495 +sg25267 +g27 +sg25275 +S'published 1640' +p140496 +sg25268 +S'Nathaniel Richards, Dramatist' +p140497 +sg25270 +S'Thomas Rawlins' +p140498 +sa(dp140499 +g25273 +S'engraving' +p140500 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140501 +sg25268 +S"Title Page to Juvenal's Satyrs, by Sir R. Stapleton" +p140502 +sg25270 +S'Thomas Rawlins' +p140503 +sa(dp140504 +g25273 +S'engraving' +p140505 +sg25267 +g27 +sg25275 +S'published 1654' +p140506 +sg25268 +S'Robert Aylett' +p140507 +sg25270 +S'Thomas Cross' +p140508 +sa(dp140509 +g25273 +S'engraving' +p140510 +sg25267 +g27 +sg25275 +S'published 1654' +p140511 +sg25268 +S'Robert Aylett' +p140512 +sg25270 +S'Thomas Cross' +p140513 +sa(dp140514 +g25273 +S'engraving' +p140515 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140516 +sg25268 +S'Francis Bacon' +p140517 +sg25270 +S'Thomas Cross' +p140518 +sa(dp140519 +g25273 +S'(artist after)' +p140520 +sg25267 +g27 +sg25275 +S'\n' +p140521 +sg25268 +S'Francis Lord Verulam Viscount St. Alban' +p140522 +sg25270 +S'Artist Information (' +p140523 +sa(dp140524 +g25273 +S'engraving' +p140525 +sg25267 +g27 +sg25275 +S'published 1653' +p140526 +sg25268 +S'Francis Lord Verulam Viscount St. Alban' +p140527 +sg25270 +S'Thomas Cross' +p140528 +sa(dp140529 +g25273 +S'engraving' +p140530 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140531 +sg25268 +S'Tho. Browne, Med. Doctoris (Sir Thomas Browne, M.D.)' +p140532 +sg25270 +S'Thomas Cross' +p140533 +sa(dp140534 +g25273 +S'engraving' +p140535 +sg25267 +g27 +sg25275 +S'published 1653' +p140536 +sg25268 +S'Richardi Brownlowe Armigeri' +p140537 +sg25270 +S'Thomas Cross' +p140538 +sa(dp140539 +g25273 +S'engraving' +p140540 +sg25267 +g27 +sg25275 +S'published 1653' +p140541 +sg25268 +S'Richardi Brownlowe Armigeri' +p140542 +sg25270 +S'Thomas Cross' +p140543 +sa(dp140544 +g25273 +S'engraving' +p140545 +sg25267 +g27 +sg25275 +S'published 1653' +p140546 +sg25268 +S'Richardi Brownlowe Armigeri' +p140547 +sg25270 +S'Thomas Cross' +p140548 +sa(dp140549 +g25273 +S'engraving' +p140550 +sg25267 +g27 +sg25275 +S'published 1655' +p140551 +sg25268 +S'Robertus Cottonus Bruceus (Sir Robert Cotton)' +p140552 +sg25270 +S'Thomas Cross' +p140553 +sa(dp140554 +g25273 +S'engraving' +p140555 +sg25267 +g27 +sg25275 +S'published 1654' +p140556 +sg25268 +S'Thomas Crymes' +p140557 +sg25270 +S'Thomas Cross' +p140558 +sa(dp140559 +g25268 +S'Leonhard von Eck' +p140560 +sg25270 +S'Barthel Beham' +p140561 +sg25273 +S'engraving' +p140562 +sg25275 +S'1527' +p140563 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7be.jpg' +p140564 +sg25267 +g27 +sa(dp140565 +g25273 +S'engraving' +p140566 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140567 +sg25268 +S'Nicholai Culpeper, Equitus' +p140568 +sg25270 +S'Thomas Cross' +p140569 +sa(dp140570 +g25273 +S'engraving' +p140571 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140572 +sg25268 +S'Nicholai Culpeper, Equitus' +p140573 +sg25270 +S'Thomas Cross' +p140574 +sa(dp140575 +g25273 +S'engraving' +p140576 +sg25267 +g27 +sg25275 +S'published 1668/1669' +p140577 +sg25268 +S'Sir Kenelm Digby' +p140578 +sg25270 +S'Thomas Cross' +p140579 +sa(dp140580 +g25273 +S'engraving' +p140581 +sg25267 +g27 +sg25275 +S'published 1658' +p140582 +sg25268 +S'Johannes Gadburius (John Gadbury)' +p140583 +sg25270 +S'Thomas Cross' +p140584 +sa(dp140585 +g25273 +S'engraving' +p140586 +sg25267 +g27 +sg25275 +S'published 1656' +p140587 +sg25268 +S'Johanis Gamble (John Gamble)' +p140588 +sg25270 +S'Thomas Cross' +p140589 +sa(dp140590 +g25273 +S'engraving' +p140591 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140592 +sg25268 +S'Hugo Grotius' +p140593 +sg25270 +S'Thomas Cross' +p140594 +sa(dp140595 +g25273 +S'engraving' +p140596 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140597 +sg25268 +S'Hugo Grotius' +p140598 +sg25270 +S'Thomas Cross' +p140599 +sa(dp140600 +g25273 +S'(artist after)' +p140601 +sg25267 +g27 +sg25275 +S'\n' +p140602 +sg25268 +S'Reverendi Doni: Josephi Hall Norwici Nuper Episco. (Joseph Hall, Bishop of Norwich)' +p140603 +sg25270 +S'Artist Information (' +p140604 +sa(dp140605 +g25273 +S'(artist after)' +p140606 +sg25267 +g27 +sg25275 +S'\n' +p140607 +sg25268 +S'Reverendi Doni: Josephi Hall Norwici Nuper Episco. (Joseph Hall, Bishop of Norwich)' +p140608 +sg25270 +S'Artist Information (' +p140609 +sa(dp140610 +g25273 +S'etching' +p140611 +sg25267 +g27 +sg25275 +S'published 1662' +p140612 +sg25268 +S'Johannis Heydon (John Heydon)' +p140613 +sg25270 +S'Thomas Cross' +p140614 +sa(dp140615 +g25268 +S'Erasmus Balderman' +p140616 +sg25270 +S'Barthel Beham' +p140617 +sg25273 +S'engraving' +p140618 +sg25275 +S'1535' +p140619 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7c0.jpg' +p140620 +sg25267 +g27 +sa(dp140621 +g25273 +S'etching' +p140622 +sg25267 +g27 +sg25275 +S'published 1650' +p140623 +sg25268 +S'Edward Leigh' +p140624 +sg25270 +S'Thomas Cross' +p140625 +sa(dp140626 +g25273 +S'(artist after)' +p140627 +sg25267 +g27 +sg25275 +S'\n' +p140628 +sg25268 +S'Sir Jonas Moore' +p140629 +sg25270 +S'Artist Information (' +p140630 +sa(dp140631 +g25273 +S'engraving' +p140632 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140633 +sg25268 +S'Francis Quarles' +p140634 +sg25270 +S'Thomas Cross' +p140635 +sa(dp140636 +g25273 +S'engraving' +p140637 +sg25267 +g27 +sg25275 +S'published 1653' +p140638 +sg25268 +S'Wilhelmi Ramesey (William Ramsay, M.D.)' +p140639 +sg25270 +S'Thomas Cross' +p140640 +sa(dp140641 +g25273 +S'engraving' +p140642 +sg25267 +g27 +sg25275 +S'probably 1660' +p140643 +sg25268 +S'Mr. Henry Smith' +p140644 +sg25270 +S'Thomas Cross' +p140645 +sa(dp140646 +g25273 +S'engraving' +p140647 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140648 +sg25268 +S'Mr. Henry Smith' +p140649 +sg25270 +S'Thomas Cross' +p140650 +sa(dp140651 +g25273 +S'engraving' +p140652 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140653 +sg25268 +S'Mr. Henry Smith' +p140654 +sg25270 +S'Thomas Cross' +p140655 +sa(dp140656 +g25273 +S'engraving' +p140657 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140658 +sg25268 +S'Benjamin Spenser (?)' +p140659 +sg25270 +S'Thomas Cross' +p140660 +sa(dp140661 +g25273 +S'engraving' +p140662 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140663 +sg25268 +S'Sir George Wharton' +p140664 +sg25270 +S'John Chantry' +p140665 +sa(dp140666 +g25273 +S'engraving' +p140667 +sg25267 +g27 +sg25275 +S'published 1657' +p140668 +sg25268 +S'Sir George Wharton' +p140669 +sg25270 +S'Thomas Cross' +p140670 +sa(dp140671 +g25268 +S'Emperor Ferdinand I' +p140672 +sg25270 +S'Barthel Beham' +p140673 +sg25273 +S'engraving' +p140674 +sg25275 +S'1531' +p140675 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7c4.jpg' +p140676 +sg25267 +g27 +sa(dp140677 +g25273 +S'English, active c. 1644/1682' +p140678 +sg25267 +g27 +sg25275 +S'(artist after)' +p140679 +sg25268 +S'Sir George Wharton' +p140680 +sg25270 +S'Artist Information (' +p140681 +sa(dp140682 +g25273 +S'engraving' +p140683 +sg25267 +g27 +sg25275 +S'published 1657' +p140684 +sg25268 +S'Leonard Willan' +p140685 +sg25270 +S'Thomas Cross' +p140686 +sa(dp140687 +g25273 +S'engraving' +p140688 +sg25267 +g27 +sg25275 +S'published 1655' +p140689 +sg25268 +S'Thomas Wilson' +p140690 +sg25270 +S'Thomas Cross' +p140691 +sa(dp140692 +g25273 +S'engraving' +p140693 +sg25267 +g27 +sg25275 +S'published 1653' +p140694 +sg25268 +S"Title Page to John Gauden's Hieraspistes" +p140695 +sg25270 +S'Thomas Cross' +p140696 +sa(dp140697 +g25273 +S'engraving' +p140698 +sg25267 +g27 +sg25275 +S'published 1657' +p140699 +sg25268 +S"Title Page to F. Rous' Works" +p140700 +sg25270 +S'Thomas Cross' +p140701 +sa(dp140702 +g25273 +S'engraving' +p140703 +sg25267 +g27 +sg25275 +S'published 1653' +p140704 +sg25268 +S'Title Page to History of the Warres of the Emperour Justinian' +p140705 +sg25270 +S'Thomas Cross' +p140706 +sa(dp140707 +g25273 +S'engraving' +p140708 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140709 +sg25268 +S'Title Page to the Conveyancers Light' +p140710 +sg25270 +S'Thomas Cross' +p140711 +sa(dp140712 +g25273 +S'engraving' +p140713 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140714 +sg25268 +S'John Donne' +p140715 +sg25270 +S'Matthaus Merian I' +p140716 +sa(dp140717 +g25273 +S'engraving' +p140718 +sg25267 +g27 +sg25275 +S'1651' +p140719 +sg25268 +S'Martin Billingsley, Writing Master' +p140720 +sg25270 +S'John Goddard' +p140721 +sa(dp140722 +g25273 +S'engraving' +p140723 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140724 +sg25268 +S'William Barriffe' +p140725 +sg25270 +S'Unknown 19th Century' +p140726 +sa(dp140727 +g25268 +S'Emperor Ferdinand I' +p140728 +sg25270 +S'Barthel Beham' +p140729 +sg25273 +S'engraving' +p140730 +sg25275 +S'1531' +p140731 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7c3.jpg' +p140732 +sg25267 +g27 +sa(dp140733 +g25273 +S'engraving' +p140734 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140735 +sg25268 +S'Satire in Relation to Charles I and His "Eikwn Basilika"(Image of a Ruler)' +p140736 +sg25270 +S'Unknown 19th Century' +p140737 +sa(dp140738 +g25273 +S'engraving' +p140739 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140740 +sg25268 +S'Ralph or Rudolph Corbie, Society of Jesus' +p140741 +sg25270 +S'Unknown 19th Century' +p140742 +sa(dp140743 +g25273 +S'engraving on vellum' +p140744 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140745 +sg25268 +S'Ralph or Rudolph Corbie, Society of Jesus' +p140746 +sg25270 +S'Unknown 19th Century' +p140747 +sa(dp140748 +g25273 +S'engraving' +p140749 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140750 +sg25268 +S'Abraham Cowley' +p140751 +sg25270 +S'Unknown 19th Century' +p140752 +sa(dp140753 +g25273 +S'engraving' +p140754 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140755 +sg25268 +S'Queen Elizabeth in an Oval' +p140756 +sg25270 +S'Unknown 19th Century' +p140757 +sa(dp140758 +g25273 +S'engraving' +p140759 +sg25267 +g27 +sg25275 +S'published 1645' +p140760 +sg25268 +S'Daniel Featley' +p140761 +sg25270 +S'Unknown 19th Century' +p140762 +sa(dp140763 +g25273 +S'engraving' +p140764 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140765 +sg25268 +S'Henrietta Maria and Three Princesses' +p140766 +sg25270 +S'Unknown 19th Century' +p140767 +sa(dp140768 +g25273 +S'engraving' +p140769 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140770 +sg25268 +S'William Laud, Archbishop of Canterbury' +p140771 +sg25270 +S'Unknown 19th Century' +p140772 +sa(dp140773 +g25273 +S'engraving' +p140774 +sg25267 +g27 +sg25275 +S'published 1649' +p140775 +sg25268 +S'Colonel John Lilburne' +p140776 +sg25270 +S'Unknown 19th Century' +p140777 +sa(dp140778 +g25273 +S'engraving' +p140779 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140780 +sg25268 +S'William Macdowell, Scottish Professor at Groningen' +p140781 +sg25270 +S'Unknown 19th Century' +p140782 +sa(dp140783 +g25268 +S'Emperor Ferdinand I' +p140784 +sg25270 +S'Barthel Beham' +p140785 +sg25273 +S'engraving' +p140786 +sg25275 +S'1531' +p140787 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7c2.jpg' +p140788 +sg25267 +g27 +sa(dp140789 +g25273 +S'engraving' +p140790 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140791 +sg25268 +S'Sir Walter Raleigh' +p140792 +sg25270 +S'Unknown 19th Century' +p140793 +sa(dp140794 +g25273 +S'engraving' +p140795 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140796 +sg25268 +S'Sydrach Simpson' +p140797 +sg25270 +S'Unknown 19th Century' +p140798 +sa(dp140799 +g25273 +S'engraving' +p140800 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140801 +sg25268 +S'William Slater, D.D., Chaplain of the Queen of Denmark' +p140802 +sg25270 +S'Unknown 19th Century' +p140803 +sa(dp140804 +g25273 +S'engraving' +p140805 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140806 +sg25268 +S'Joseph Symonds, Vice-Provost of Eton' +p140807 +sg25270 +S'Unknown 19th Century' +p140808 +sa(dp140809 +g25273 +S'engraving' +p140810 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140811 +sg25268 +S'James Ussher, Archbishop of Armagh' +p140812 +sg25270 +S'Unknown 19th Century' +p140813 +sa(dp140814 +g25273 +S'engraving' +p140815 +sg25267 +g27 +sg25275 +S'published 1647' +p140816 +sg25268 +S'William Whateley, Puritan Vicar of Banbury' +p140817 +sg25270 +S'Unknown 19th Century' +p140818 +sa(dp140819 +g25273 +S'engraving' +p140820 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140821 +sg25268 +S'Man With a Dog' +p140822 +sg25270 +S'Unknown 19th Century' +p140823 +sa(dp140824 +g25273 +S'engraving' +p140825 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140826 +sg25268 +S'Iconologia or Morall Emblems by Caesar Ripa' +p140827 +sg25270 +S'Isaac Fuller' +p140828 +sa(dp140829 +g25273 +S'engraving' +p140830 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140831 +sg25268 +S'Thomas Howard, Earl of Arundel' +p140832 +sg25270 +S'Wenceslaus Hollar' +p140833 +sa(dp140834 +g25273 +S'engraving' +p140835 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140836 +sg25268 +S'Francis Bacon in a Niche' +p140837 +sg25270 +S'Wenceslaus Hollar' +p140838 +sa(dp140839 +g25268 +S'Madonna and Child' +p140840 +sg25270 +S'Artist Information (' +p140841 +sg25273 +S'Italian, c. 1431 - 1506' +p140842 +sg25275 +S'(related artist)' +p140843 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000085c.jpg' +p140844 +sg25267 +g27 +sa(dp140845 +g25268 +S'Halberdier on Horseback' +p140846 +sg25270 +S'Barthel Beham' +p140847 +sg25273 +S'engraving' +p140848 +sg25275 +S'unknown date\n' +p140849 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7bd.jpg' +p140850 +sg25267 +g27 +sa(dp140851 +g25273 +S'etching' +p140852 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140853 +sg25268 +S'Charles II as Prince of Wales' +p140854 +sg25270 +S'Wenceslaus Hollar' +p140855 +sa(dp140856 +g25273 +S'engraving' +p140857 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140858 +sg25268 +S'Charles II as Prince of Wales' +p140859 +sg25270 +S'Wenceslaus Hollar' +p140860 +sa(dp140861 +g25273 +S'(artist after)' +p140862 +sg25267 +g27 +sg25275 +S'\n' +p140863 +sg25268 +S'Sir Thomas Cromwell' +p140864 +sg25270 +S'Artist Information (' +p140865 +sa(dp140866 +g25273 +S', 1642' +p140867 +sg25267 +g27 +sg25275 +S'\n' +p140868 +sg25268 +S'Robert Devereux, Third Earl of Essex' +p140869 +sg25270 +S'Wenceslaus Hollar' +p140870 +sa(dp140871 +g25273 +S'engraving' +p140872 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140873 +sg25268 +S'Henry Hastings, Fifth Earl of Huntingdon' +p140874 +sg25270 +S'Wenceslaus Hollar' +p140875 +sa(dp140876 +g25273 +S'(artist after)' +p140877 +sg25267 +g27 +sg25275 +S'\n' +p140878 +sg25268 +S'Philip Herbert, Fourth Earl of Pembroke' +p140879 +sg25270 +S'Artist Information (' +p140880 +sa(dp140881 +g25273 +S'engraving and stipple' +p140882 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140883 +sg25268 +S'Thomas Wentworth, First Earl of Stafford' +p140884 +sg25270 +S'Wenceslaus Hollar' +p140885 +sa(dp140886 +g25273 +S'engraving' +p140887 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140888 +sg25268 +S'Guzman de Alfarache' +p140889 +sg25270 +S'Robert Gaywood' +p140890 +sa(dp140891 +g25273 +S'etching' +p140892 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140893 +sg25268 +S'Jeremiah Burroughes, Puritan Divine' +p140894 +sg25270 +S'Robert Gaywood' +p140895 +sa(dp140896 +g25273 +S'etching' +p140897 +sg25267 +g27 +sg25275 +S'published 1661' +p140898 +sg25268 +S'William Camden' +p140899 +sg25270 +S'Robert Gaywood' +p140900 +sa(dp140901 +g25268 +S'Riding Standard Bearer and Foot-Soldier' +p140902 +sg25270 +S'Barthel Beham' +p140903 +sg25273 +S'engraving' +p140904 +sg25275 +S'1521' +p140905 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7bc.jpg' +p140906 +sg25267 +g27 +sa(dp140907 +g25273 +S'etching' +p140908 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140909 +sg25268 +S'Catherine of Braganza' +p140910 +sg25270 +S'Robert Gaywood' +p140911 +sa(dp140912 +g25273 +S'etching' +p140913 +sg25267 +g27 +sg25275 +S'published 1654' +p140914 +sg25268 +S'Samuel Clarke, Minister' +p140915 +sg25270 +S'Robert Gaywood' +p140916 +sa(dp140917 +g25273 +S'etching' +p140918 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140919 +sg25268 +S'Edward Cocker, Arithmetician and Writing Master' +p140920 +sg25270 +S'Robert Gaywood' +p140921 +sa(dp140922 +g25273 +S'etching' +p140923 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140924 +sg25268 +S'Sir George Croke' +p140925 +sg25270 +S'Robert Gaywood' +p140926 +sa(dp140927 +g25273 +S'(artist after)' +p140928 +sg25267 +g27 +sg25275 +S'\n' +p140929 +sg25268 +S'Oliver Cromwell' +p140930 +sg25270 +S'Artist Information (' +p140931 +sa(dp140932 +g25273 +S'etching' +p140933 +sg25267 +g27 +sg25275 +S'published 1655' +p140934 +sg25268 +S'William Drummond of Hawthornden, Historian and Poet' +p140935 +sg25270 +S'Robert Gaywood' +p140936 +sa(dp140937 +g25273 +S'English, active 1650/1680' +p140938 +sg25267 +g27 +sg25275 +S'(artist after)' +p140939 +sg25268 +S'William Drummond of Hawthornden' +p140940 +sg25270 +S'Artist Information (' +p140941 +sa(dp140942 +g25273 +S'English, active 1650/1680' +p140943 +sg25267 +g27 +sg25275 +S'(artist after)' +p140944 +sg25268 +S'William Drummond of Hawthornden' +p140945 +sg25270 +S'Artist Information (' +p140946 +sa(dp140947 +g25273 +S'English, active 1650/1680' +p140948 +sg25267 +g27 +sg25275 +S'(artist after)' +p140949 +sg25268 +S'William Drummond of Hawthornden' +p140950 +sg25270 +S'Artist Information (' +p140951 +sa(dp140952 +g25273 +S'etching' +p140953 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140954 +sg25268 +S'Jean Louis Guez, Sieur de Balzac' +p140955 +sg25270 +S'Robert Gaywood' +p140956 +sa(dp140957 +g25268 +S'Copy in reverse of "Sea-God to the Left Riding on a Dolphin"' +p140958 +sg25270 +S'Artist Information (' +p140959 +sg25273 +S'German, 1502 - 1540' +p140960 +sg25275 +S'(artist after)' +p140961 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7b7.jpg' +p140962 +sg25267 +g27 +sa(dp140963 +g25273 +S', unknown date' +p140964 +sg25267 +g27 +sg25275 +S'\n' +p140965 +sg25268 +S'Princess Elizabeth, Second Daughter of Charles I' +p140966 +sg25270 +S'Robert Gaywood' +p140967 +sa(dp140968 +g25273 +S'etching' +p140969 +sg25267 +g27 +sg25275 +S'unknown date\n' +p140970 +sg25268 +S'William Leybourn, Mathematician' +p140971 +sg25270 +S'Robert Gaywood' +p140972 +sa(dp140973 +g25273 +S'(artist after)' +p140974 +sg25267 +g27 +sg25275 +S'\n' +p140975 +sg25268 +S'Nicholas Claude Fabri de Peireso, French Antiquary' +p140976 +sg25270 +S'Artist Information (' +p140977 +sa(dp140978 +g25273 +S'etching' +p140979 +sg25267 +g27 +sg25275 +S'published 1663' +p140980 +sg25268 +S'John Playford, Musician and Music Publisher' +p140981 +sg25270 +S'Robert Gaywood' +p140982 +sa(dp140983 +g25273 +S'etching' +p140984 +sg25267 +g27 +sg25275 +S'1655' +p140985 +sg25268 +S'Mary, Queen of Scots' +p140986 +sg25270 +S'Robert Gaywood' +p140987 +sa(dp140988 +g25273 +S'etching' +p140989 +sg25267 +g27 +sg25275 +S'published 1654' +p140990 +sg25268 +S'Cuthbert Sydenham' +p140991 +sg25270 +S'Robert Gaywood' +p140992 +sa(dp140993 +g25273 +S'etching' +p140994 +sg25267 +g27 +sg25275 +S'1658' +p140995 +sg25268 +S'Lady Eleanor Temple, Wife of Sir Peter Templeof Stanton Bury' +p140996 +sg25270 +S'Robert Gaywood' +p140997 +sa(dp140998 +g25273 +S'etching' +p140999 +sg25267 +g27 +sg25275 +S'1658' +p141000 +sg25268 +S'Barbara Van Beck, the Bearded Lady' +p141001 +sg25270 +S'Robert Gaywood' +p141002 +sa(dp141003 +g25273 +S'etching' +p141004 +sg25267 +g27 +sg25275 +S'1654' +p141005 +sg25268 +S'John Trapp, Vicar of Weston-on-Avon, BiblicalCommentator' +p141006 +sg25270 +S'Robert Gaywood' +p141007 +sa(dp141008 +g25273 +S'(artist after)' +p141009 +sg25267 +g27 +sg25275 +S'\n' +p141010 +sg25268 +S'Henry Somerset, Earl of Worcester, First Dukeof Beaufort' +p141011 +sg25270 +S'Artist Information (' +p141012 +sa(dp141013 +g25268 +S'Titus Gracchus' +p141014 +sg25270 +S'Barthel Beham' +p141015 +sg25273 +S'engraving' +p141016 +sg25275 +S'1528' +p141017 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7a9.jpg' +p141018 +sg25267 +g27 +sa(dp141019 +g25273 +S'English, 1626 - 1702 or 1704' +p141020 +sg25267 +g27 +sg25275 +S'(artist after)' +p141021 +sg25268 +S'Illustration for Edward Benlowes, Theophila' +p141022 +sg25270 +S'Artist Information (' +p141023 +sa(dp141024 +g25273 +S'English, 1626 - 1702 or 1704' +p141025 +sg25267 +g27 +sg25275 +S'(artist after)' +p141026 +sg25268 +S'Illustration for Edward Benlowes, Theophila' +p141027 +sg25270 +S'Artist Information (' +p141028 +sa(dp141029 +g25273 +S'English, 1626 - 1702 or 1704' +p141030 +sg25267 +g27 +sg25275 +S'(artist after)' +p141031 +sg25268 +S'Illustration for Sir William Denny, Peliconicidium' +p141032 +sg25270 +S'Artist Information (' +p141033 +sa(dp141034 +g25273 +S'engraving' +p141035 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141036 +sg25268 +S'William Dobson, Portrait Painter' +p141037 +sg25270 +S'Josiah English' +p141038 +sa(dp141039 +g25273 +S'engraving' +p141040 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141041 +sg25268 +S'William Dobson, Portrait Painter' +p141042 +sg25270 +S'Josiah English' +p141043 +sa(dp141044 +g25273 +S'engraving' +p141045 +sg25267 +g27 +sg25275 +S'published 1658' +p141046 +sg25268 +S'Charles I' +p141047 +sg25270 +S'William Faithorne' +p141048 +sa(dp141049 +g25273 +S'engraving' +p141050 +sg25267 +g27 +sg25275 +S'published 1655' +p141051 +sg25268 +S'Henrietta Maria' +p141052 +sg25270 +S'William Faithorne' +p141053 +sa(dp141054 +g25273 +S'engraving' +p141055 +sg25267 +g27 +sg25275 +S'c. 1664/1674' +p141056 +sg25268 +S'Henrietta Maria' +p141057 +sg25270 +S'William Faithorne' +p141058 +sa(dp141059 +g25273 +S'engraving' +p141060 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141061 +sg25268 +S'Charles II' +p141062 +sg25270 +S'William Faithorne' +p141063 +sa(dp141064 +g25273 +S'engraving' +p141065 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141066 +sg25268 +S'Charles II' +p141067 +sg25270 +S'William Faithorne' +p141068 +sa(dp141069 +g25268 +S'"Der Welt Lavf" (Sleeping Justice)' +p141070 +sg25270 +S'Barthel Beham' +p141071 +sg25273 +S'engraving' +p141072 +sg25275 +S'1525' +p141073 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7bb.jpg' +p141074 +sg25267 +g27 +sa(dp141075 +g25273 +S'(artist after)' +p141076 +sg25267 +g27 +sg25275 +S'\n' +p141077 +sg25268 +S'Mary, Princess of Orange' +p141078 +sg25270 +S'Artist Information (' +p141079 +sa(dp141080 +g25273 +S'(artist after)' +p141081 +sg25267 +g27 +sg25275 +S'\n' +p141082 +sg25268 +S'Mary, Princess of Orange' +p141083 +sg25270 +S'Artist Information (' +p141084 +sa(dp141085 +g25273 +S'(artist after)' +p141086 +sg25267 +g27 +sg25275 +S'\n' +p141087 +sg25268 +S'Prince Rupert, K.G.' +p141088 +sg25270 +S'Artist Information (' +p141089 +sa(dp141090 +g25273 +S'engraving' +p141091 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141092 +sg25268 +S'Sir Edmund Anderson, Knt.' +p141093 +sg25270 +S'William Faithorne' +p141094 +sa(dp141095 +g25273 +S'engraving' +p141096 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141097 +sg25268 +S'William Bates, D.D.' +p141098 +sg25270 +S'William Faithorne' +p141099 +sa(dp141100 +g25273 +S'engraving' +p141101 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141102 +sg25268 +S'Robert Bayfield' +p141103 +sg25270 +S'William Faithorne' +p141104 +sa(dp141105 +g25273 +S'engraving' +p141106 +sg25267 +g27 +sg25275 +S'published 1671' +p141107 +sg25268 +S'Sir Orlando Bridgeman' +p141108 +sg25270 +S'William Faithorne' +p141109 +sa(dp141110 +g25273 +S'(artist after)' +p141111 +sg25267 +g27 +sg25275 +S'\n' +p141112 +sg25268 +S'Frances Bridges' +p141113 +sg25270 +S'Artist Information (' +p141114 +sa(dp141115 +g25273 +S'engraving' +p141116 +sg25267 +g27 +sg25275 +S'published 1661' +p141117 +sg25268 +S'Ralph Brownrig' +p141118 +sg25270 +S'William Faithorne' +p141119 +sa(dp141120 +g25273 +S'engraving' +p141121 +sg25267 +g27 +sg25275 +S'published 1661' +p141122 +sg25268 +S'Ralph Brownrig' +p141123 +sg25270 +S'William Faithorne' +p141124 +sa(dp141125 +g25268 +S'Foot-Soldier in Front of a Tree' +p141126 +sg25270 +S'Barthel Beham' +p141127 +sg25273 +S'engraving' +p141128 +sg25275 +S'1520' +p141129 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7ba.jpg' +p141130 +sg25267 +g27 +sa(dp141131 +g25273 +S'engraving' +p141132 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141133 +sg25268 +S'George Villiers, 1st Duke of Buckingham' +p141134 +sg25270 +S'William Faithorne' +p141135 +sa(dp141136 +g25273 +S'engraving' +p141137 +sg25267 +g27 +sg25275 +S'published 1653' +p141138 +sg25268 +S'John Bulwer, M.D.' +p141139 +sg25270 +S'William Faithorne' +p141140 +sa(dp141141 +g25273 +S'engraving' +p141142 +sg25267 +g27 +sg25275 +S'published 1669' +p141143 +sg25268 +S'Charles Howard, Earl of Carlisle' +p141144 +sg25270 +S'William Faithorne' +p141145 +sa(dp141146 +g25273 +S'engraving' +p141147 +sg25267 +g27 +sg25275 +S'published 1657' +p141148 +sg25268 +S'Richard Carpenter' +p141149 +sg25270 +S'William Faithorne' +p141150 +sa(dp141151 +g25273 +S'engraving' +p141152 +sg25267 +g27 +sg25275 +S'published 1671' +p141153 +sg25268 +S'Roger Palmer, Earl of Castlemain' +p141154 +sg25270 +S'William Faithorne' +p141155 +sa(dp141156 +g25273 +S'engraving' +p141157 +sg25267 +g27 +sg25275 +S'published 1684' +p141158 +sg25268 +S'John Colet, D.D.' +p141159 +sg25270 +S'William Faithorne' +p141160 +sa(dp141161 +g25273 +S'engraving' +p141162 +sg25267 +g27 +sg25275 +S'published 1684' +p141163 +sg25268 +S'Domenico Contarino' +p141164 +sg25270 +S'William Faithorne' +p141165 +sa(dp141166 +g25273 +S'(artist after)' +p141167 +sg25267 +g27 +sg25275 +S'\n' +p141168 +sg25268 +S'Abraham Cowley' +p141169 +sg25270 +S'Artist Information (' +p141170 +sa(dp141171 +g25273 +S'engraving' +p141172 +sg25267 +g27 +sg25275 +S'published 1668' +p141173 +sg25268 +S'Abraham Cowley' +p141174 +sg25270 +S'William Faithorne' +p141175 +sa(dp141176 +g25273 +S'engraving' +p141177 +sg25267 +g27 +sg25275 +S'published 1654' +p141178 +sg25268 +S'Oliver Cromwell' +p141179 +sg25270 +S'William Faithorne' +p141180 +sa(dp141181 +g25268 +S'Saint Christopher' +p141182 +sg25270 +S'Barthel Beham' +p141183 +sg25273 +S'engraving' +p141184 +sg25275 +S'1520' +p141185 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7ac.jpg' +p141186 +sg25267 +g27 +sa(dp141187 +g25273 +S'engraving' +p141188 +sg25267 +g27 +sg25275 +S'published 1672/1673' +p141189 +sg25268 +S'Sir William Davenant' +p141190 +sg25270 +S'William Faithorne' +p141191 +sa(dp141192 +g25273 +S'(artist after)' +p141193 +sg25267 +g27 +sg25275 +S'\n' +p141194 +sg25268 +S'Lord Thomas Fairfax' +p141195 +sg25270 +S'Artist Information (' +p141196 +sa(dp141197 +g25273 +S'engraving' +p141198 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141199 +sg25268 +S'Sir Richard Fanshaw, Bart.' +p141200 +sg25270 +S'William Faithorne' +p141201 +sa(dp141202 +g25273 +S'engraving' +p141203 +sg25267 +g27 +sg25275 +S'published 1663' +p141204 +sg25268 +S'Sir John Fortescue' +p141205 +sg25270 +S'William Faithorne' +p141206 +sa(dp141207 +g25273 +S'engraving' +p141208 +sg25267 +g27 +sg25275 +S'published 1666' +p141209 +sg25268 +S'Valentine Greatrakes' +p141210 +sg25270 +S'William Faithorne' +p141211 +sa(dp141212 +g25273 +S'engraving' +p141213 +sg25267 +g27 +sg25275 +S'published 1684' +p141214 +sg25268 +S'Sir Bevil Grenville' +p141215 +sg25270 +S'William Faithorne' +p141216 +sa(dp141217 +g25273 +S'engraving' +p141218 +sg25267 +g27 +sg25275 +S'published 1675' +p141219 +sg25268 +S'John Hacket, Bishop of Lichfield and Coventry' +p141220 +sg25270 +S'William Faithorne' +p141221 +sa(dp141222 +g25273 +S'engraving' +p141223 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141224 +sg25268 +S'Joseph Hall, Bishop of Norwich' +p141225 +sg25270 +S'William Faithorne' +p141226 +sa(dp141227 +g25273 +S'(artist after)' +p141228 +sg25267 +g27 +sg25275 +S'\n' +p141229 +sg25268 +S'Joseph Hall, Bishop of Norwich' +p141230 +sg25270 +S'Artist Information (' +p141231 +sa(dp141232 +g25273 +S'engraving' +p141233 +sg25267 +g27 +sg25275 +S'published 1682' +p141234 +sg25268 +S'Sir James Harrington, Bart.' +p141235 +sg25270 +S'William Faithorne' +p141236 +sa(dp141237 +g25268 +S'Michael Roting' +p141238 +sg25270 +S'Barthel Beham' +p141239 +sg25273 +S'engraving' +p141240 +sg25275 +S'unknown date\n' +p141241 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7c1.jpg' +p141242 +sg25267 +g27 +sa(dp141243 +g25273 +S'engraving' +p141244 +sg25267 +g27 +sg25275 +S'published 1682' +p141245 +sg25268 +S'Sir James Harrington, Bart.' +p141246 +sg25270 +S'William Faithorne' +p141247 +sa(dp141248 +g25273 +S'engraving' +p141249 +sg25267 +g27 +sg25275 +S'published 1682' +p141250 +sg25268 +S'Lady Katherine Harrington' +p141251 +sg25270 +S'William Faithorne' +p141252 +sa(dp141253 +g25273 +S'engraving' +p141254 +sg25267 +g27 +sg25275 +S'published 1653' +p141255 +sg25268 +S'William Harvey, M.D.' +p141256 +sg25270 +S'William Faithorne' +p141257 +sa(dp141258 +g25273 +S'engraving' +p141259 +sg25267 +g27 +sg25275 +S'published 1653' +p141260 +sg25268 +S'William Harvey, M.D.' +p141261 +sg25270 +S'William Faithorne' +p141262 +sa(dp141263 +g25273 +S'engraving' +p141264 +sg25267 +g27 +sg25275 +S'published 1668' +p141265 +sg25268 +S'Thomas Hobbes' +p141266 +sg25270 +S'William Faithorne' +p141267 +sa(dp141268 +g25273 +S'engraving' +p141269 +sg25267 +g27 +sg25275 +S'published 1668' +p141270 +sg25268 +S'Thomas Hobbes' +p141271 +sg25270 +S'William Faithorne' +p141272 +sa(dp141273 +g25273 +S'engraving' +p141274 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141275 +sg25268 +S'Henry Rich, Earl of Holland, K.G.' +p141276 +sg25270 +S'William Faithorne' +p141277 +sa(dp141278 +g25273 +S'engraving' +p141279 +sg25267 +g27 +sg25275 +S'published 1662' +p141280 +sg25268 +S'Richard Hooker' +p141281 +sg25270 +S'William Faithorne' +p141282 +sa(dp141283 +g25273 +S'engraving' +p141284 +sg25267 +g27 +sg25275 +S'published 1662' +p141285 +sg25268 +S'Richard Hooker' +p141286 +sg25270 +S'William Faithorne' +p141287 +sa(dp141288 +g25273 +S'(artist after)' +p141289 +sg25267 +g27 +sg25275 +S'\n' +p141290 +sg25268 +S'John Kersey' +p141291 +sg25270 +S'Artist Information (' +p141292 +sa(dp141293 +g25268 +S'Peasant Woman with Two Jugs' +p141294 +sg25270 +S'Barthel Beham' +p141295 +sg25273 +S'engraving' +p141296 +sg25275 +S'1524' +p141297 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7b8.jpg' +p141298 +sg25267 +g27 +sa(dp141299 +g25273 +S'(artist after)' +p141300 +sg25267 +g27 +sg25275 +S'\n' +p141301 +sg25268 +S'Thomas Killigrew' +p141302 +sg25270 +S'Artist Information (' +p141303 +sa(dp141304 +g25273 +S'(artist after)' +p141305 +sg25267 +g27 +sg25275 +S'\n' +p141306 +sg25268 +S'Thomas Killigrew' +p141307 +sg25270 +S'Artist Information (' +p141308 +sa(dp141309 +g25273 +S'engraving' +p141310 +sg25267 +g27 +sg25275 +S'published 1656' +p141311 +sg25268 +S'John La Motte' +p141312 +sg25270 +S'William Faithorne' +p141313 +sa(dp141314 +g25273 +S'engraving' +p141315 +sg25267 +g27 +sg25275 +S'published 1653' +p141316 +sg25268 +S'Henry Lawes' +p141317 +sg25270 +S'William Faithorne' +p141318 +sa(dp141319 +g25273 +S'engraving' +p141320 +sg25267 +g27 +sg25275 +S'published 1659' +p141321 +sg25268 +S'Robert Loveday' +p141322 +sg25270 +S'William Faithorne' +p141323 +sa(dp141324 +g25273 +S'engraving' +p141325 +sg25267 +g27 +sg25275 +S'published 1659' +p141326 +sg25268 +S'Edward, Lord Littleton' +p141327 +sg25270 +S'William Faithorne' +p141328 +sa(dp141329 +g25268 +S'John Milton' +p141330 +sg25270 +S'William Faithorne' +p141331 +sg25273 +S'engraving' +p141332 +sg25275 +S'published 1670' +p141333 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00053/a00053c5.jpg' +p141334 +sg25267 +g27 +sa(dp141335 +g25273 +S'engraving' +p141336 +sg25267 +g27 +sg25275 +S'published 1656' +p141337 +sg25268 +S'Henry Carey, Earl of Monmouth' +p141338 +sg25270 +S'William Faithorne' +p141339 +sa(dp141340 +g25273 +S'engraving' +p141341 +sg25267 +g27 +sg25275 +S'published 1663' +p141342 +sg25268 +S'Sir Francis Moore, M.P.' +p141343 +sg25270 +S'William Faithorne' +p141344 +sa(dp141345 +g25273 +S'engraving' +p141346 +sg25267 +g27 +sg25275 +S'published 1663' +p141347 +sg25268 +S'Sir Francis Moore, M.P.' +p141348 +sg25270 +S'William Faithorne' +p141349 +sa(dp141350 +g25268 +S'Naked Woman on an Armor (Prudentia?)' +p141351 +sg25270 +S'Barthel Beham' +p141352 +sg25273 +S'engraving' +p141353 +sg25275 +S'unknown date\n' +p141354 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7b6.jpg' +p141355 +sg25267 +g27 +sa(dp141356 +g25273 +S'engraving' +p141357 +sg25267 +g27 +sg25275 +S'published 1663' +p141358 +sg25268 +S'Sir Francis Moore, M.P.' +p141359 +sg25270 +S'William Faithorne' +p141360 +sa(dp141361 +g25273 +S'engraving' +p141362 +sg25267 +g27 +sg25275 +S'published 1675' +p141363 +sg25268 +S'Henry More' +p141364 +sg25270 +S'William Faithorne' +p141365 +sa(dp141366 +g25273 +S'engraving' +p141367 +sg25267 +g27 +sg25275 +S'published 1675' +p141368 +sg25268 +S'Henry More' +p141369 +sg25270 +S'William Faithorne' +p141370 +sa(dp141371 +g25273 +S'engraving' +p141372 +sg25267 +g27 +sg25275 +S'published 1660' +p141373 +sg25268 +S'Thomas Morton' +p141374 +sg25270 +S'William Faithorne' +p141375 +sa(dp141376 +g25273 +S'engraving' +p141377 +sg25267 +g27 +sg25275 +S'published 1660' +p141378 +sg25268 +S'Thomas Morton' +p141379 +sg25270 +S'William Faithorne' +p141380 +sa(dp141381 +g25273 +S'engraving' +p141382 +sg25267 +g27 +sg25275 +S'published 1657' +p141383 +sg25268 +S'John Murcot' +p141384 +sg25270 +S'William Faithorne' +p141385 +sa(dp141386 +g25273 +S'engraving' +p141387 +sg25267 +g27 +sg25275 +S'published 1674' +p141388 +sg25268 +S'Sir William Noy' +p141389 +sg25270 +S'William Faithorne' +p141390 +sa(dp141391 +g25273 +S'engraving' +p141392 +sg25267 +g27 +sg25275 +S'published 1657' +p141393 +sg25268 +S'Sir John Ogle' +p141394 +sg25270 +S'William Faithorne' +p141395 +sa(dp141396 +g25273 +S'engraving' +p141397 +sg25267 +g27 +sg25275 +S'published 1657' +p141398 +sg25268 +S'William Oughtred' +p141399 +sg25270 +S'William Faithorne' +p141400 +sa(dp141401 +g25273 +S'engraving' +p141402 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141403 +sg25268 +S'Endymion Porter' +p141404 +sg25270 +S'William Faithorne' +p141405 +sa(dp141406 +g25268 +S'Venus with a Mirror' +p141407 +sg25270 +S'Titian' +p141408 +sg25273 +S'oil on canvas' +p141409 +sg25275 +S'c. 1555' +p141410 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037f7.jpg' +p141411 +sg25267 +S"At the core of Renaissance art is the revival of the classical past, and in his \n Yet Titian breathed a warmth and life into the remote source to conjure a startlingly immediate and sensual modern Venus. Her pliant flesh seems to melt at the touch of the cupid who strains to bestow on her the crown of love. While she pulls about her a wine–colored velvet wrap lined in fur, soft, opulent, and evoking the sense of touch, Venus reveals her body as much as she conceals it. The beautiful woman gazing at her reflection is a favorite theme of Renaissance love poetry in which the writer envies the fortunate mirror that enjoys his lady's splendid image.\n " +p141412 +sa(dp141413 +g25268 +S'Madonna with Skull' +p141414 +sg25270 +S'Barthel Beham' +p141415 +sg25273 +S'engraving' +p141416 +sg25275 +S'unknown date\n' +p141417 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7b1.jpg' +p141418 +sg25267 +g27 +sa(dp141419 +g25273 +S'engraving' +p141420 +sg25267 +g27 +sg25275 +S'published 1657' +p141421 +sg25268 +S'Francis Rous' +p141422 +sg25270 +S'William Faithorne' +p141423 +sa(dp141424 +g25273 +S'engraving' +p141425 +sg25267 +g27 +sg25275 +S'published 1658' +p141426 +sg25268 +S'Sir William Sanderson' +p141427 +sg25270 +S'William Faithorne' +p141428 +sa(dp141429 +g25273 +S'engraving' +p141430 +sg25267 +g27 +sg25275 +S'published 1658' +p141431 +sg25268 +S'Sir William Sanderson' +p141432 +sg25270 +S'William Faithorne' +p141433 +sa(dp141434 +g25273 +S'engraving' +p141435 +sg25267 +g27 +sg25275 +S'published 1658' +p141436 +sg25268 +S'Sir William Sanderson' +p141437 +sg25270 +S'William Faithorne' +p141438 +sa(dp141439 +g25273 +S'(artist after)' +p141440 +sg25267 +g27 +sg25275 +S'\n' +p141441 +sg25268 +S'Christopher Chelys Simpson' +p141442 +sg25270 +S'Artist Information (' +p141443 +sa(dp141444 +g25273 +S'engraving' +p141445 +sg25267 +g27 +sg25275 +S'published 1667' +p141446 +sg25268 +S'Christopher Chelys Simpson' +p141447 +sg25270 +S'William Faithorne' +p141448 +sa(dp141449 +g25273 +S'engraving' +p141450 +sg25267 +g27 +sg25275 +S'published 1667' +p141451 +sg25268 +S'Christopher Chelys Simpson' +p141452 +sg25270 +S'William Faithorne' +p141453 +sa(dp141454 +g25273 +S'engraving' +p141455 +sg25267 +g27 +sg25275 +S'published 1687' +p141456 +sg25268 +S'Melchisedec de Thevenot' +p141457 +sg25270 +S'William Faithorne' +p141458 +sa(dp141459 +g25273 +S'engraving' +p141460 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141461 +sg25268 +S'James Ussher, D.D.' +p141462 +sg25270 +S'William Faithorne' +p141463 +sa(dp141464 +g25273 +S'engraving' +p141465 +sg25267 +g27 +sg25275 +S'published 1657' +p141466 +sg25268 +S'Sir Francis Vere' +p141467 +sg25270 +S'William Faithorne' +p141468 +sa(dp141469 +g25268 +S'Madonna with Flower Vase' +p141470 +sg25270 +S'Barthel Beham' +p141471 +sg25273 +S'engraving' +p141472 +sg25275 +S'unknown date\n' +p141473 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7b4.jpg' +p141474 +sg25267 +g27 +sa(dp141475 +g25273 +S'engraving' +p141476 +sg25267 +g27 +sg25275 +S'published 1657' +p141477 +sg25268 +S'Sir Horace Vere' +p141478 +sg25270 +S'William Faithorne' +p141479 +sa(dp141480 +g25273 +S'engraving' +p141481 +sg25267 +g27 +sg25275 +S'published 1670' +p141482 +sg25268 +S'Vincent Voiture' +p141483 +sg25270 +S'William Faithorne' +p141484 +sa(dp141485 +g25273 +S'engraving' +p141486 +sg25267 +g27 +sg25275 +S'published 1670' +p141487 +sg25268 +S'Vincent Voiture' +p141488 +sg25270 +S'William Faithorne' +p141489 +sa(dp141490 +g25273 +S'engraving' +p141491 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141492 +sg25268 +S'Sir George Wharton' +p141493 +sg25270 +S'William Faithorne' +p141494 +sa(dp141495 +g25273 +S'engraving' +p141496 +sg25267 +g27 +sg25275 +S'published 1654' +p141497 +sg25268 +S'Title Page to Thomas Blount, The Academy of Eloquence' +p141498 +sg25270 +S'William Faithorne' +p141499 +sa(dp141500 +g25273 +S'engraving' +p141501 +sg25267 +g27 +sg25275 +S'published 1673' +p141502 +sg25268 +S'The Creation of Animals' +p141503 +sg25270 +S'William Faithorne' +p141504 +sa(dp141505 +g25273 +S'engraving' +p141506 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141507 +sg25268 +S'Title Page to The Edward Chamberlayne, The Present State of England' +p141508 +sg25270 +S'William Faithorne' +p141509 +sa(dp141510 +g25273 +S'engraving' +p141511 +sg25267 +g27 +sg25275 +S'1655' +p141512 +sg25268 +S'Title Page to Sir Dudly Digges, The Compleat Ambassador' +p141513 +sg25270 +S'William Faithorne' +p141514 +sa(dp141515 +g25273 +S'engraving' +p141516 +sg25267 +g27 +sg25275 +S'published 1653' +p141517 +sg25268 +S'Title Page to Jeremy Taylor, The Great Exemplar' +p141518 +sg25270 +S'William Faithorne' +p141519 +sa(dp141520 +g25273 +S'engraving' +p141521 +sg25267 +g27 +sg25275 +S'published 1677' +p141522 +sg25268 +S'Title Page to the Work of Homer, Translated by Thomas Hobbes' +p141523 +sg25270 +S'Unknown 19th Century' +p141524 +sa(dp141525 +g25268 +S'Lucretia Standing at a Column' +p141526 +sg25270 +S'Barthel Beham' +p141527 +sg25273 +S'engraving' +p141528 +sg25275 +S'unknown date\n' +p141529 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7af.jpg' +p141530 +sg25267 +g27 +sa(dp141531 +g25273 +S'engraving' +p141532 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141533 +sg25268 +S'Dr. William Davison, Scotch Chemist and Physician in Paris' +p141534 +sg25270 +S'David Loggan' +p141535 +sa(dp141536 +g25273 +S'engraving' +p141537 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141538 +sg25268 +S'John Dethick' +p141539 +sg25270 +S'Pierre Lombard' +p141540 +sa(dp141541 +g25273 +S'engraving' +p141542 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141543 +sg25268 +S'John Donne, Poet' +p141544 +sg25270 +S'Pierre Lombard' +p141545 +sa(dp141546 +g25273 +S'(artist after)' +p141547 +sg25267 +g27 +sg25275 +S'\n' +p141548 +sg25268 +S'Sir Samuel Morland, Diplomatist and Inventor' +p141549 +sg25270 +S'Artist Information (' +p141550 +sa(dp141551 +g25273 +S'engraving' +p141552 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141553 +sg25268 +S'Alexander, Chaplain to Charles I, Author' +p141554 +sg25270 +S'Pierre Lombard' +p141555 +sa(dp141556 +g25273 +S'engraving' +p141557 +sg25267 +g27 +sg25275 +S'published 1653' +p141558 +sg25268 +S'Alexander Ross, Chaplain to Charles I' +p141559 +sg25270 +S'Pierre Lombard' +p141560 +sa(dp141561 +g25273 +S'engraving' +p141562 +sg25267 +g27 +sg25275 +S'published 1660' +p141563 +sg25268 +S'Sir Robert Stapylton, Dramatic Poet and Translator' +p141564 +sg25270 +S'David Loggan' +p141565 +sa(dp141566 +g25273 +S'engraving' +p141567 +sg25267 +g27 +sg25275 +S'1660' +p141568 +sg25268 +S'Jeremy Taylor, Bishop of Down, Connor and Dromore' +p141569 +sg25270 +S'David Loggan' +p141570 +sa(dp141571 +g25273 +S'engraving' +p141572 +sg25267 +g27 +sg25275 +S'published 1660' +p141573 +sg25268 +S'Jeremy Taylor, Bishop of Down, Connor and Dromore' +p141574 +sg25270 +S'Pierre Lombard' +p141575 +sa(dp141576 +g25273 +S'engraving' +p141577 +sg25267 +g27 +sg25275 +S'published 1654' +p141578 +sg25268 +S'Sir Henry Wotton, Diplomatist and Poet' +p141579 +sg25270 +S'Pierre Lombard' +p141580 +sa(dp141581 +g25268 +S'Judith with the Head of Holofernes' +p141582 +sg25270 +S'Barthel Beham' +p141583 +sg25273 +S'engraving' +p141584 +sg25275 +S'1525/1527' +p141585 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7ab.jpg' +p141586 +sg25267 +g27 +sa(dp141587 +g25273 +S'engraving' +p141588 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141589 +sg25268 +S'Sir Henry Wotton, Diplomatist and Poet' +p141590 +sg25270 +S'Unknown 19th Century' +p141591 +sa(dp141592 +g25273 +S'(artist after)' +p141593 +sg25267 +g27 +sg25275 +S'\n' +p141594 +sg25268 +S'Oliver Cromwell' +p141595 +sg25270 +S'Artist Information (' +p141596 +sa(dp141597 +g25273 +S'engraving' +p141598 +sg25267 +g27 +sg25275 +S'published 1660' +p141599 +sg25268 +S'Sir Tobias Matthew, Diplomatist and Writer' +p141600 +sg25270 +S'James Gammon' +p141601 +sa(dp141602 +g25273 +S'engraving' +p141603 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141604 +sg25268 +S'Anne, Duchess of Albemarle' +p141605 +sg25270 +S'William Faithorne' +p141606 +sa(dp141607 +g25273 +S'engraving' +p141608 +sg25267 +g27 +sg25275 +S'published 1699' +p141609 +sg25268 +S'Title Page to J. Moxon, Ductor ad Astronomianet Geographiam' +p141610 +sg25270 +S'Unknown 19th Century' +p141611 +sa(dp141612 +g25273 +S'(artist after)' +p141613 +sg25267 +g27 +sg25275 +S'\n' +p141614 +sg25268 +S'George Monk, First Duke of Albemarle' +p141615 +sg25270 +S'Artist Information (' +p141616 +sa(dp141617 +g25273 +S'engraving' +p141618 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141619 +sg25268 +S'Lady Ferrers' +p141620 +sg25270 +S'John Chantry' +p141621 +sa(dp141622 +g25273 +S'engraving' +p141623 +sg25267 +g27 +sg25275 +S'published 1656' +p141624 +sg25268 +S'Elizabeth Talbot, Countess of Kent, Authoress' +p141625 +sg25270 +S'John Chantry' +p141626 +sa(dp141627 +g25273 +S'engraving' +p141628 +sg25267 +g27 +sg25275 +S'published 1661' +p141629 +sg25268 +S'John Selden, Jurist and Antiquary' +p141630 +sg25270 +S'John Chantry' +p141631 +sa(dp141632 +g25273 +S'engraving' +p141633 +sg25267 +g27 +sg25275 +S'published 1661' +p141634 +sg25268 +S'John Selden, Jurist and Antiquary' +p141635 +sg25270 +S'John Chantry' +p141636 +sa(dp141637 +g25268 +S'Judith Seated on the Body of Holofernes' +p141638 +sg25270 +S'Barthel Beham' +p141639 +sg25273 +S'engraving' +p141640 +sg25275 +S'1525' +p141641 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7b5.jpg' +p141642 +sg25267 +g27 +sa(dp141643 +g25273 +S'engraving' +p141644 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141645 +sg25268 +S'John Selden, Jurist and Antiquary' +p141646 +sg25270 +S'John Chantry' +p141647 +sa(dp141648 +g25273 +S'engraving' +p141649 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141650 +sg25268 +S'John Selden, Jurist and Antiquary' +p141651 +sg25270 +S'John Chantry' +p141652 +sa(dp141653 +g25273 +S'engraving' +p141654 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141655 +sg25268 +S'John Selden, Jurist and Antiquary' +p141656 +sg25270 +S'Unknown 19th Century' +p141657 +sa(dp141658 +g25273 +S'engraving' +p141659 +sg25267 +g27 +sg25275 +S'published 1661' +p141660 +sg25268 +S'Tobias Whitaker, Physician in Ordinary to the Royal Household' +p141661 +sg25270 +S'John Chantry' +p141662 +sa(dp141663 +g25273 +S'(artist after)' +p141664 +sg25267 +g27 +sg25275 +S'\n' +p141665 +sg25268 +S'Sir Hugh Cartwright' +p141666 +sg25270 +S'Artist Information (' +p141667 +sa(dp141668 +g25273 +S'(artist after)' +p141669 +sg25267 +g27 +sg25275 +S'\n' +p141670 +sg25268 +S'Sir Hugh Cartwright' +p141671 +sg25270 +S'Artist Information (' +p141672 +sa(dp141673 +g25273 +S'(artist after)' +p141674 +sg25267 +g27 +sg25275 +S'\n' +p141675 +sg25268 +S'Sir Hugh Cartwright' +p141676 +sg25270 +S'Artist Information (' +p141677 +sa(dp141678 +g25273 +S'engraving' +p141679 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141680 +sg25268 +S'Francis Bacon' +p141681 +sg25270 +S'Frederik Hendrik van den Hove' +p141682 +sa(dp141683 +g25273 +S'engraving' +p141684 +sg25267 +g27 +sg25275 +S'1639' +p141685 +sg25268 +S'Henry Montagu, First Earl of Manchester' +p141686 +sg25270 +S'Frederik Hendrik van den Hove' +p141687 +sa(dp141688 +g25273 +S'(artist after)' +p141689 +sg25267 +g27 +sg25275 +S'\n' +p141690 +sg25268 +S'Sir Walter Raleigh' +p141691 +sg25270 +S'Artist Information (' +p141692 +sa(dp141693 +g25268 +S'Genius on a Globe Floating in the Air' +p141694 +sg25270 +S'Barthel Beham' +p141695 +sg25273 +S'engraving' +p141696 +sg25275 +S'1520' +p141697 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7b9.jpg' +p141698 +sg25267 +g27 +sa(dp141699 +g25273 +S'engraving' +p141700 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141701 +sg25268 +S'Sir Walter Raleigh' +p141702 +sg25270 +S'Frederik Hendrik van den Hove' +p141703 +sa(dp141704 +g25273 +S'engraving' +p141705 +sg25267 +g27 +sg25275 +S'1677' +p141706 +sg25268 +S'John Selden' +p141707 +sg25270 +S'Frederik Hendrik van den Hove' +p141708 +sa(dp141709 +g25273 +S'engraving' +p141710 +sg25267 +g27 +sg25275 +S'1677' +p141711 +sg25268 +S'John Selden' +p141712 +sg25270 +S'Frederik Hendrik van den Hove' +p141713 +sa(dp141714 +g25273 +S'engraving' +p141715 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141716 +sg25268 +S'Sir Philip Sidney' +p141717 +sg25270 +S'Frederik Hendrik van den Hove' +p141718 +sa(dp141719 +g25273 +S'engraving' +p141720 +sg25267 +g27 +sg25275 +S'1687' +p141721 +sg25268 +S'William Winstanley, Poet and Compiler' +p141722 +sg25270 +S'Frederik Hendrik van den Hove' +p141723 +sa(dp141724 +g25273 +S'(artist after)' +p141725 +sg25267 +g27 +sg25275 +S'\n' +p141726 +sg25268 +S'Title Page to Epistolae Hoephanae, by James Howel' +p141727 +sg25270 +S'Artist Information (' +p141728 +sa(dp141729 +g25273 +S'(artist after)' +p141730 +sg25267 +g27 +sg25275 +S'\n' +p141731 +sg25268 +S'Thomas Cromwell, Earl of Essex' +p141732 +sg25270 +S'Artist Information (' +p141733 +sa(dp141734 +g25273 +S'engraving' +p141735 +sg25267 +g27 +sg25275 +S'1675' +p141736 +sg25268 +S'Lancelot Andrewes, Bishop of Winchester' +p141737 +sg25270 +S'David Loggan' +p141738 +sa(dp141739 +g25273 +S'engraving' +p141740 +sg25267 +g27 +sg25275 +S'1676' +p141741 +sg25268 +S'Isaac Barrow, D.D., Divine and Mathematician' +p141742 +sg25270 +S'David Loggan' +p141743 +sa(dp141744 +g25273 +S'engraving' +p141745 +sg25267 +g27 +sg25275 +S'1679' +p141746 +sg25268 +S'Ralph Bathurst, Dean of Wells' +p141747 +sg25270 +S'David Loggan' +p141748 +sa(dp141749 +g25268 +S'Cleopatra' +p141750 +sg25270 +S'Barthel Beham' +p141751 +sg25273 +S'engraving' +p141752 +sg25275 +S'1524' +p141753 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7b3.jpg' +p141754 +sg25267 +g27 +sa(dp141755 +g25273 +S'engraving' +p141756 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141757 +sg25268 +S'Ralph Bathurst, Dean of Wells and President of Trinity College, Oxford' +p141758 +sg25270 +S'David Loggan' +p141759 +sa(dp141760 +g25273 +S'engraving' +p141761 +sg25267 +g27 +sg25275 +S'1679' +p141762 +sg25268 +S'Sir Henry Blount, Traveller' +p141763 +sg25270 +S'David Loggan' +p141764 +sa(dp141765 +g25273 +S'engraving' +p141766 +sg25267 +g27 +sg25275 +S'1679' +p141767 +sg25268 +S'Sir Henry Blount, Traveller' +p141768 +sg25270 +S'David Loggan' +p141769 +sa(dp141770 +g25273 +S'engraving' +p141771 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141772 +sg25268 +S'Charles II' +p141773 +sg25270 +S'David Loggan' +p141774 +sa(dp141775 +g25273 +S'(artist after)' +p141776 +sg25267 +g27 +sg25275 +S'\n' +p141777 +sg25268 +S'James Stanley, Seventh Earl of Derby' +p141778 +sg25270 +S'Artist Information (' +p141779 +sa(dp141780 +g25273 +S'engraving' +p141781 +sg25267 +g27 +sg25275 +S'1661' +p141782 +sg25268 +S'Thomas Fuller, Divine and Historian' +p141783 +sg25270 +S'David Loggan' +p141784 +sa(dp141785 +g25273 +S'engraving' +p141786 +sg25267 +g27 +sg25275 +S'published 1660' +p141787 +sg25268 +S'John Goodhand Holt' +p141788 +sg25270 +S'David Loggan' +p141789 +sa(dp141790 +g25273 +S'engraving' +p141791 +sg25267 +g27 +sg25275 +S'1660' +p141792 +sg25268 +S'John Goodhand Holt' +p141793 +sg25270 +S'David Loggan' +p141794 +sa(dp141795 +g25273 +S'engraving' +p141796 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141797 +sg25268 +S'Arthur Jackson, Ejected Divine' +p141798 +sg25270 +S'David Loggan' +p141799 +sa(dp141800 +g25273 +S'engraving' +p141801 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141802 +sg25268 +S'Mother Louse, Keeper of an Ale-House called Louse Hall, near Oxford' +p141803 +sg25270 +S'David Loggan' +p141804 +sa(dp141805 +g25268 +S'Child with Three Skulls' +p141806 +sg25270 +S'Barthel Beham' +p141807 +sg25273 +S'engraving' +p141808 +sg25275 +S'1529' +p141809 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7b2.jpg' +p141810 +sg25267 +g27 +sa(dp141811 +g25273 +S'engraving' +p141812 +sg25267 +g27 +sg25275 +S'published 1679' +p141813 +sg25268 +S'Henry More, Platonist and Theologian' +p141814 +sg25270 +S'David Loggan' +p141815 +sa(dp141816 +g25273 +S'engraving' +p141817 +sg25267 +g27 +sg25275 +S'published 1658' +p141818 +sg25268 +S'Edward Reynolds, Bishop of Norwich' +p141819 +sg25270 +S'David Loggan' +p141820 +sa(dp141821 +g25273 +S'engraving' +p141822 +sg25267 +g27 +sg25275 +S'1659' +p141823 +sg25268 +S'John Sparrow, Mystic' +p141824 +sg25270 +S'David Loggan' +p141825 +sa(dp141826 +g25273 +S'engraving' +p141827 +sg25267 +g27 +sg25275 +S'1678' +p141828 +sg25268 +S'John Wallis, Mathematician' +p141829 +sg25270 +S'David Loggan' +p141830 +sa(dp141831 +g25273 +S'engraving' +p141832 +sg25267 +g27 +sg25275 +S'1578' +p141833 +sg25268 +S'John Wallis, Mathematician' +p141834 +sg25270 +S'David Loggan' +p141835 +sa(dp141836 +g25273 +S'engraving' +p141837 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141838 +sg25268 +S'Sir George Wharton, Royalist and Astrologer' +p141839 +sg25270 +S'David Loggan' +p141840 +sa(dp141841 +g25273 +S'(artist after)' +p141842 +sg25267 +g27 +sg25275 +S'\n' +p141843 +sg25268 +S'Louise Renee de Penancoet de Keroualle, Duchess of Portsmouth' +p141844 +sg25270 +S'Artist Information (' +p141845 +sa(dp141846 +g25273 +S'engraving' +p141847 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141848 +sg25268 +S'Dr. Gideon Harvey, Physician of Charles II and James II' +p141849 +sg25270 +S'A. Hertochs' +p141850 +sa(dp141851 +g25273 +S'engraving' +p141852 +sg25267 +g27 +sg25275 +S'published 1669' +p141853 +sg25268 +S'Captain Samuel Sturmy, Navigator' +p141854 +sg25270 +S'A. Hertochs' +p141855 +sa(dp141856 +g25273 +S'engraving' +p141857 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141858 +sg25268 +S'Title Page for Ecclesia Anglicana, by J. Ganden' +p141859 +sg25270 +S'A. Hertochs' +p141860 +sa(dp141861 +g25268 +S'Emperor Charles V' +p141862 +sg25270 +S'Barthel Beham' +p141863 +sg25273 +S'engraving' +p141864 +sg25275 +S'1531' +p141865 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7c5.jpg' +p141866 +sg25267 +g27 +sa(dp141867 +g25273 +S'engraving' +p141868 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141869 +sg25268 +S'John Gadbury, Astrologer' +p141870 +sg25270 +S'John Savage' +p141871 +sa(dp141872 +g25273 +S'engraving' +p141873 +sg25267 +g27 +sg25275 +S'published 1672' +p141874 +sg25268 +S'George Villiers, First Duke of Buckingham' +p141875 +sg25270 +S'William Dolle' +p141876 +sa(dp141877 +g25273 +S'engraving' +p141878 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141879 +sg25268 +S'Robert Devereux, Second Earl of Essex' +p141880 +sg25270 +S'William Dolle' +p141881 +sa(dp141882 +g25273 +S'engraving' +p141883 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141884 +sg25268 +S'Sir Henry Wotton' +p141885 +sg25270 +S'William Dolle' +p141886 +sa(dp141887 +g25273 +S'(artist after)' +p141888 +sg25267 +g27 +sg25275 +S'\n' +p141889 +sg25268 +S'John Carter, Puritan Rector of Belstead, Suffolk' +p141890 +sg25270 +S'Artist Information (' +p141891 +sa(dp141892 +g25273 +S'engraving' +p141893 +sg25267 +g27 +sg25275 +S'published 1675' +p141894 +sg25268 +S'Samuel Clarke, Minister of Saint Benet Fink, Biographer' +p141895 +sg25270 +S'John Dunstall' +p141896 +sa(dp141897 +g25273 +S'engraving' +p141898 +sg25267 +g27 +sg25275 +S'1657' +p141899 +sg25268 +S'Cecil Calvert, Second Baron Baltimore' +p141900 +sg25270 +S'Abraham Blooteling' +p141901 +sa(dp141902 +g25273 +S'engraving' +p141903 +sg25267 +g27 +sg25275 +S'1679' +p141904 +sg25268 +S'Charles, Earl of Carlisle' +p141905 +sg25270 +S'Abraham Blooteling' +p141906 +sa(dp141907 +g25273 +S'(artist after)' +p141908 +sg25267 +g27 +sg25275 +S'\n' +p141909 +sg25268 +S'Thomas Osborne, First Duke of Leeds' +p141910 +sg25270 +S'Artist Information (' +p141911 +sa(dp141912 +g25273 +S'(artist after)' +p141913 +sg25267 +g27 +sg25275 +S'\n' +p141914 +sg25268 +S'Thomas Osborne, First Duke of Leeds' +p141915 +sg25270 +S'Artist Information (' +p141916 +sa(dp141917 +g25268 +S'Bust of a Young Woman' +p141918 +sg25270 +S'Cornelis Bega' +p141919 +sg25273 +S'etching' +p141920 +sg25275 +S'unknown date\n' +p141921 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d08c.jpg' +p141922 +sg25267 +g27 +sa(dp141923 +g25273 +S'engraving' +p141924 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141925 +sg25268 +S'Edward Montagu, First Earl of Sandwich' +p141926 +sg25270 +S'Abraham Blooteling' +p141927 +sa(dp141928 +g25273 +S'(artist after)' +p141929 +sg25267 +g27 +sg25275 +S'\n' +p141930 +sg25268 +S'Edward Montagu, Second Earl of Sandwich' +p141931 +sg25270 +S'Artist Information (' +p141932 +sa(dp141933 +g25273 +S'Flemish, 1577 - 1640' +p141934 +sg25267 +g27 +sg25275 +S'(related artist)' +p141935 +sg25268 +S'Frans Rubens' +p141936 +sg25270 +S'Artist Information (' +p141937 +sa(dp141938 +g25273 +S'engraving' +p141939 +sg25267 +g27 +sg25275 +S'1666' +p141940 +sg25268 +S'George Alsop' +p141941 +sg25270 +S'William Sherwin' +p141942 +sa(dp141943 +g25273 +S'engraving' +p141944 +sg25267 +g27 +sg25275 +S'published 1666' +p141945 +sg25268 +S'George Alsop' +p141946 +sg25270 +S'William Sherwin' +p141947 +sa(dp141948 +g25273 +S'engraving' +p141949 +sg25267 +g27 +sg25275 +S'published 1711' +p141950 +sg25268 +S'Edward Hatton, Arithmetician' +p141951 +sg25270 +S'William Sherwin' +p141952 +sa(dp141953 +g25273 +S'engraving' +p141954 +sg25267 +g27 +sg25275 +S'unknown date\n' +p141955 +sg25268 +S'John Heydon, Astrologer and Rosicrucian' +p141956 +sg25270 +S'William Sherwin' +p141957 +sa(dp141958 +g25273 +S'engraving' +p141959 +sg25267 +g27 +sg25275 +S'1672' +p141960 +sg25268 +S'William Ramsay, Physician and Astrologer' +p141961 +sg25270 +S'William Sherwin' +p141962 +sa(dp141963 +g25273 +S'engraving' +p141964 +sg25267 +g27 +sg25275 +S'1672' +p141965 +sg25268 +S'William Ramsay, Physician and Astrologer' +p141966 +sg25270 +S'William Sherwin' +p141967 +sa(dp141968 +g25273 +S'engraving' +p141969 +sg25267 +g27 +sg25275 +S'1671' +p141970 +sg25268 +S'William Sermon, M.D.' +p141971 +sg25270 +S'William Sherwin' +p141972 +sa(dp141973 +g25268 +S'The Crippled and Sick Cured at the Tomb of Saint Nicholas' +p141974 +sg25270 +S'Gentile da Fabriano' +p141975 +sg25273 +S'tempera on panel' +p141976 +sg25275 +S'1425' +p141977 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000763.jpg' +p141978 +sg25267 +g27 +sa(dp141979 +g25268 +S'Bust of an Old Woman' +p141980 +sg25270 +S'Cornelis Bega' +p141981 +sg25273 +S'etching' +p141982 +sg25275 +S'unknown date\n' +p141983 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d086.jpg' +p141984 +sg25267 +g27 +sa(dp141985 +g25273 +S'(artist after)' +p141986 +sg25267 +g27 +sg25275 +S'\n' +p141987 +sg25268 +S'Robert Bruce, First Earl of Arlesbury' +p141988 +sg25270 +S'Artist Information (' +p141989 +sa(dp141990 +g25273 +S'engraving' +p141991 +sg25267 +g27 +sg25275 +S'published 1681' +p141992 +sg25268 +S'Anne Boleyn' +p141993 +sg25270 +S'Robert White' +p141994 +sa(dp141995 +g25273 +S'(artist after)' +p141996 +sg25267 +g27 +sg25275 +S'\n' +p141997 +sg25268 +S'John Ashton, Jacobite, Executed for Treason' +p141998 +sg25270 +S'Artist Information (' +p141999 +sa(dp142000 +g25273 +S'engraving' +p142001 +sg25267 +g27 +sg25275 +S'published 1701' +p142002 +sg25268 +S'John Aylmer, D.D., Bishop of London, Preceptor to Lady Jane Grey' +p142003 +sg25270 +S'Robert White' +p142004 +sa(dp142005 +g25273 +S'(artist after)' +p142006 +sg25267 +g27 +sg25275 +S'\n' +p142007 +sg25268 +S'Henry Somerset, Earl of Worcester, First Dukeof Beaufort' +p142008 +sg25270 +S'Artist Information (' +p142009 +sa(dp142010 +g25273 +S'engraving' +p142011 +sg25267 +g27 +sg25275 +S'published 1679' +p142012 +sg25268 +S'Henry Somerset, First Duke of Beaufort' +p142013 +sg25270 +S'Robert White' +p142014 +sa(dp142015 +g25273 +S'engraving' +p142016 +sg25267 +g27 +sg25275 +S'published 1700' +p142017 +sg25268 +S'Dr. John Blow, Musical Composer and Organist' +p142018 +sg25270 +S'Robert White' +p142019 +sa(dp142020 +g25273 +S'engraving' +p142021 +sg25267 +g27 +sg25275 +S'1678' +p142022 +sg25268 +S'Dr. John Browne, Surgeon' +p142023 +sg25270 +S'Robert White' +p142024 +sa(dp142025 +g25273 +S'engraving' +p142026 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142027 +sg25268 +S'Dr. John Browne, Surgeon' +p142028 +sg25270 +S'Robert White' +p142029 +sa(dp142030 +g25273 +S'(artist after)' +p142031 +sg25267 +g27 +sg25275 +S'\n' +p142032 +sg25268 +S'Dr. John Browne' +p142033 +sg25270 +S'Artist Information (' +p142034 +sa(dp142035 +g25268 +S'The Peasant in a Window' +p142036 +sg25270 +S'Cornelis Bega' +p142037 +sg25273 +S'etching' +p142038 +sg25275 +S'unknown date\n' +p142039 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d090.jpg' +p142040 +sg25267 +g27 +sa(dp142041 +g25273 +S'engraving' +p142042 +sg25267 +g27 +sg25275 +S'published 1681' +p142043 +sg25268 +S'John Browne' +p142044 +sg25270 +S'Robert White' +p142045 +sa(dp142046 +g25273 +S'engraving' +p142047 +sg25267 +g27 +sg25275 +S'published 1691' +p142048 +sg25268 +S'William Camden' +p142049 +sg25270 +S'Robert White' +p142050 +sa(dp142051 +g25273 +S'engraving' +p142052 +sg25267 +g27 +sg25275 +S'published 1691' +p142053 +sg25268 +S'William Camden' +p142054 +sg25270 +S'Robert White' +p142055 +sa(dp142056 +g25273 +S'engraving' +p142057 +sg25267 +g27 +sg25275 +S'published 1674' +p142058 +sg25268 +S'William Camden' +p142059 +sg25270 +S'Robert White' +p142060 +sa(dp142061 +g25273 +S'engraving' +p142062 +sg25267 +g27 +sg25275 +S'published 1674' +p142063 +sg25268 +S'William Camden' +p142064 +sg25270 +S'Robert White' +p142065 +sa(dp142066 +g25273 +S'engraving' +p142067 +sg25267 +g27 +sg25275 +S'published 1695' +p142068 +sg25268 +S'William Camden' +p142069 +sg25270 +S'Robert White' +p142070 +sa(dp142071 +g25273 +S'(artist after)' +p142072 +sg25267 +g27 +sg25275 +S'\n' +p142073 +sg25268 +S'Catherine of Aragon, First Wife of Henry VIII' +p142074 +sg25270 +S'Artist Information (' +p142075 +sa(dp142076 +g25273 +S'engraving' +p142077 +sg25267 +g27 +sg25275 +S'published 1676' +p142078 +sg25268 +S'James Cooke' +p142079 +sg25270 +S'Robert White' +p142080 +sa(dp142081 +g25273 +S'engraving' +p142082 +sg25267 +g27 +sg25275 +S'published 1676' +p142083 +sg25268 +S'James Cooke' +p142084 +sg25270 +S'Robert White' +p142085 +sa(dp142086 +g25268 +S'The Peasant in a Window' +p142087 +sg25270 +S'Cornelis Bega' +p142088 +sg25273 +S'etching' +p142089 +sg25275 +S'unknown date\n' +p142090 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d092.jpg' +p142091 +sg25267 +g27 +sa(dp142092 +g25273 +S'engraving' +p142093 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142094 +sg25268 +S'James Cooke' +p142095 +sg25270 +S'Robert White' +p142096 +sa(dp142097 +g25273 +S'engraving' +p142098 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142099 +sg25268 +S'James Cooke' +p142100 +sg25270 +S'Robert White' +p142101 +sa(dp142102 +g25273 +S'engraving' +p142103 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142104 +sg25268 +S'George, Earl of Cumberland' +p142105 +sg25270 +S'Robert White' +p142106 +sa(dp142107 +g25273 +S'engraving' +p142108 +sg25267 +g27 +sg25275 +S'1681' +p142109 +sg25268 +S'Queen Elizabeth' +p142110 +sg25270 +S'Robert White' +p142111 +sa(dp142112 +g25273 +S'engraving' +p142113 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142114 +sg25268 +S'Queen Elizabeth Enthroned' +p142115 +sg25270 +S'Robert White' +p142116 +sa(dp142117 +g25273 +S'engraving' +p142118 +sg25267 +g27 +sg25275 +S'1681' +p142119 +sg25268 +S'Lady Jane Grey' +p142120 +sg25270 +S'Robert White' +p142121 +sa(dp142122 +g25273 +S'engraving' +p142123 +sg25267 +g27 +sg25275 +S'published 1674' +p142124 +sg25268 +S'George Herbert, Prebendary of Lincoln, Poet' +p142125 +sg25270 +S'Robert White' +p142126 +sa(dp142127 +g25273 +S'engraving' +p142128 +sg25267 +g27 +sg25275 +S'published 1699' +p142129 +sg25268 +S'Denzil, First Baron Holles' +p142130 +sg25270 +S'Robert White' +p142131 +sa(dp142132 +g25273 +S'(artist after)' +p142133 +sg25267 +g27 +sg25275 +S'\n' +p142134 +sg25268 +S'William Laud, Archbishop of Canterbury' +p142135 +sg25270 +S'Artist Information (' +p142136 +sa(dp142137 +g25273 +S'engraving' +p142138 +sg25267 +g27 +sg25275 +S'published 1672' +p142139 +sg25268 +S'Sir John Marsham, Writer on Chronology' +p142140 +sg25270 +S'Robert White' +p142141 +sa(dp142142 +g25268 +S'A Woman Smoking' +p142143 +sg25270 +S'Cornelis Bega' +p142144 +sg25273 +S'etching' +p142145 +sg25275 +S'unknown date\n' +p142146 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d089.jpg' +p142147 +sg25267 +g27 +sa(dp142148 +g25273 +S'engraving' +p142149 +sg25267 +g27 +sg25275 +S'published 1690' +p142150 +sg25268 +S'John Overall, D.D., Bishop of Norwich' +p142151 +sg25270 +S'Robert White' +p142152 +sa(dp142153 +g25273 +S'engraving' +p142154 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142155 +sg25268 +S'John Overall' +p142156 +sg25270 +S'Robert White' +p142157 +sa(dp142158 +g25273 +S'(artist after)' +p142159 +sg25267 +g27 +sg25275 +S'\n' +p142160 +sg25268 +S'Samuel Pepys, Secretary to the Admiralty, Diarist' +p142161 +sg25270 +S'Artist Information (' +p142162 +sa(dp142163 +g25273 +S'engraving' +p142164 +sg25267 +g27 +sg25275 +S'published 1698' +p142165 +sg25268 +S'William Petyt, Keeper of the Records in the Tower' +p142166 +sg25270 +S'Robert White' +p142167 +sa(dp142168 +g25273 +S'(artist after)' +p142169 +sg25267 +g27 +sg25275 +S'\n' +p142170 +sg25268 +S'Henry Purcell, Musical Composer' +p142171 +sg25270 +S'Artist Information (' +p142172 +sa(dp142173 +g25273 +S'engraving' +p142174 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142175 +sg25268 +S'William Sancroft, Archbishop of Canterbury' +p142176 +sg25270 +S'Ernest William Watson' +p142177 +sa(dp142178 +g25273 +S'engraving' +p142179 +sg25267 +g27 +sg25275 +S'published 1683' +p142180 +sg25268 +S'John Selden, Jurist and Antiquary' +p142181 +sg25270 +S'Robert White' +p142182 +sa(dp142183 +g25273 +S'engraving' +p142184 +sg25267 +g27 +sg25275 +S'published 1683' +p142185 +sg25268 +S'John Selden' +p142186 +sg25270 +S'Robert White' +p142187 +sa(dp142188 +g25273 +S'engraving' +p142189 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142190 +sg25268 +S'John Selden' +p142191 +sg25270 +S'Robert White' +p142192 +sa(dp142193 +g25273 +S'engraving' +p142194 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142195 +sg25268 +S'John Selden' +p142196 +sg25270 +S'Unknown 19th Century' +p142197 +sa(dp142198 +g25268 +S'The Inn' +p142199 +sg25270 +S'Cornelis Bega' +p142200 +sg25273 +S'etching' +p142201 +sg25275 +S'unknown date\n' +p142202 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d097.jpg' +p142203 +sg25267 +g27 +sa(dp142204 +g25273 +S'engraving' +p142205 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142206 +sg25268 +S'John Selden' +p142207 +sg25270 +S'Unknown 19th Century' +p142208 +sa(dp142209 +g25273 +S'engraving' +p142210 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142211 +sg25268 +S'John Souter, Merchant at Exeter' +p142212 +sg25270 +S'Robert White' +p142213 +sa(dp142214 +g25273 +S'engraving' +p142215 +sg25267 +g27 +sg25275 +S'published 1699' +p142216 +sg25268 +S'John Whitgift, D.D., Archbishop of Canterbury' +p142217 +sg25270 +S'Robert White' +p142218 +sa(dp142219 +g25273 +S'engraving' +p142220 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142221 +sg25268 +S'Benjamin Woodroffe, R.R.S., Canon of Christ Church, Oxford' +p142222 +sg25270 +S'Robert White' +p142223 +sa(dp142224 +g25273 +S'engraving' +p142225 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142226 +sg25268 +S'Title Page to The Life of Faith by Richard Baxter' +p142227 +sg25270 +S'Robert White' +p142228 +sa(dp142229 +g25273 +S'engraving' +p142230 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142231 +sg25268 +S'Title Page to Gilbert Burnet, Historie of theReformation of the Church of England' +p142232 +sg25270 +S'Robert White' +p142233 +sa(dp142234 +g25273 +S'(artist after)' +p142235 +sg25267 +g27 +sg25275 +S'\n' +p142236 +sg25268 +S'Queen Elizabeth' +p142237 +sg25270 +S'Artist Information (' +p142238 +sa(dp142239 +g25273 +S'engraving' +p142240 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142241 +sg25268 +S'Roger Assham and Mary Surrounded by MedallianPortraits' +p142242 +sg25270 +S'Michael Burghers' +p142243 +sa(dp142244 +g25273 +S'engraving' +p142245 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142246 +sg25268 +S'Sir Thomas Bodley, Founder of the Bodleian Library' +p142247 +sg25270 +S'Michael Burghers' +p142248 +sa(dp142249 +g25273 +S'engraving' +p142250 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142251 +sg25268 +S'Thomas Bodley' +p142252 +sg25270 +S'Michael Burghers' +p142253 +sa(dp142254 +g25268 +S'The Flirtation of a Young Innkeeper' +p142255 +sg25270 +S'Cornelis Bega' +p142256 +sg25273 +S'etching' +p142257 +sg25275 +S'unknown date\n' +p142258 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d096.jpg' +p142259 +sg25267 +g27 +sa(dp142260 +g25273 +S'engraving' +p142261 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142262 +sg25268 +S'Thomas Bodley' +p142263 +sg25270 +S'Michael Burghers' +p142264 +sa(dp142265 +g25273 +S'engraving' +p142266 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142267 +sg25268 +S'Thomas Bodley' +p142268 +sg25270 +S'Michael Burghers' +p142269 +sa(dp142270 +g25273 +S'engraving' +p142271 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142272 +sg25268 +S"Robert Eglesfield, Founder of Queen's CollegeOxford" +p142273 +sg25270 +S'Michael Burghers' +p142274 +sa(dp142275 +g25273 +S'engraving' +p142276 +sg25267 +g27 +sg25275 +S'published 1693' +p142277 +sg25268 +S'William Somner, Anglo-Saxon Scholar and Antiquary' +p142278 +sg25270 +S'Michael Burghers' +p142279 +sa(dp142280 +g25273 +S'engraving' +p142281 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142282 +sg25268 +S'Title Page to A New System of Mathematicks, Composed by Sir Jonas Moore, Knight' +p142283 +sg25270 +S'Nicholas Yeates' +p142284 +sa(dp142285 +g25273 +S'engraving' +p142286 +sg25267 +g27 +sg25275 +S'published 1710' +p142287 +sg25268 +S'Edmund Grindal, Archbishop of Canterbury' +p142288 +sg25270 +S'Michiel van der Gucht' +p142289 +sa(dp142290 +g25273 +S'engraving' +p142291 +sg25267 +g27 +sg25275 +S'1696' +p142292 +sg25268 +S'Colonel William Parsons, Chronologer' +p142293 +sg25270 +S'Simon Gribelin II' +p142294 +sa(dp142295 +g25273 +S'engraving' +p142296 +sg25267 +g27 +sg25275 +S'published 1750' +p142297 +sg25268 +S'Sir Christopher Wren, Architect' +p142298 +sg25270 +S'S. Coignard' +p142299 +sa(dp142300 +g25273 +S'engraving' +p142301 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142302 +sg25268 +S'Charles I and His Supporters' +p142303 +sg25270 +S'Unknown 19th Century' +p142304 +sa(dp142305 +g25273 +S'engraving' +p142306 +sg25267 +g27 +sg25275 +S'published 1679' +p142307 +sg25268 +S'Henry Bennett, Earl of Arlington' +p142308 +sg25270 +S'Unknown 19th Century' +p142309 +sa(dp142310 +g25268 +S'Christopher, Margrave of Baden' +p142311 +sg25270 +S'Hans Baldung Grien' +p142312 +sg25273 +S'woodcut' +p142313 +sg25275 +S'1511' +p142314 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7ed.jpg' +p142315 +sg25267 +g27 +sa(dp142316 +g25273 +S'engraving' +p142317 +sg25267 +g27 +sg25275 +S'published 1673' +p142318 +sg25268 +S'Thomas Cartwright, Puritan Divine' +p142319 +sg25270 +S'Unknown 19th Century' +p142320 +sa(dp142321 +g25273 +S'engraving' +p142322 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142323 +sg25268 +S'Charles I' +p142324 +sg25270 +S'Unknown 19th Century' +p142325 +sa(dp142326 +g25273 +S'engraving' +p142327 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142328 +sg25268 +S'Charles I' +p142329 +sg25270 +S'Unknown 19th Century' +p142330 +sa(dp142331 +g25273 +S'engraving' +p142332 +sg25267 +g27 +sg25275 +S'published 1660' +p142333 +sg25268 +S'Charles I' +p142334 +sg25270 +S'Unknown 19th Century' +p142335 +sa(dp142336 +g25273 +S'engraving' +p142337 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142338 +sg25268 +S'Charles II' +p142339 +sg25270 +S'Unknown 19th Century' +p142340 +sa(dp142341 +g25273 +S'engraving' +p142342 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142343 +sg25268 +S'Charles II' +p142344 +sg25270 +S'Unknown 19th Century' +p142345 +sa(dp142346 +g25273 +S'engraving' +p142347 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142348 +sg25268 +S'Charles II' +p142349 +sg25270 +S'Unknown 19th Century' +p142350 +sa(dp142351 +g25273 +S'engraving' +p142352 +sg25267 +g27 +sg25275 +S'published 1669' +p142353 +sg25268 +S'Sir Aston Cokayne' +p142354 +sg25270 +S'Unknown 19th Century' +p142355 +sa(dp142356 +g25273 +S'engraving' +p142357 +sg25267 +g27 +sg25275 +S'published 1679' +p142358 +sg25268 +S'William, Earl of Craven' +p142359 +sg25270 +S'Unknown 19th Century' +p142360 +sa(dp142361 +g25273 +S'engraving' +p142362 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142363 +sg25268 +S'Oliver Cromwell' +p142364 +sg25270 +S'Unknown 19th Century' +p142365 +sa(dp142366 +g25268 +S'Maria Kneeling over Corpse of Christ' +p142367 +sg25270 +S'Hans Baldung Grien' +p142368 +sg25273 +S'engraving' +p142369 +sg25275 +S'unknown date\n' +p142370 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7d5.jpg' +p142371 +sg25267 +g27 +sa(dp142372 +g25273 +S'engraving' +p142373 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142374 +sg25268 +S'Dr. Giles Everard Seated at a Table Smoking aPipe' +p142375 +sg25270 +S'Unknown 19th Century' +p142376 +sa(dp142377 +g25273 +S'engraving' +p142378 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142379 +sg25268 +S'John Goodwin' +p142380 +sg25270 +S'Unknown 19th Century' +p142381 +sa(dp142382 +g25273 +S'engraving' +p142383 +sg25267 +g27 +sg25275 +S'published 1664' +p142384 +sg25268 +S'John Heydon' +p142385 +sg25270 +S'Unknown 19th Century' +p142386 +sa(dp142387 +g25273 +S'engraving' +p142388 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142389 +sg25268 +S'John Heydon' +p142390 +sg25270 +S'Unknown 19th Century' +p142391 +sa(dp142392 +g25273 +S'engraving' +p142393 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142394 +sg25268 +S'James II as Duke of York' +p142395 +sg25270 +S'Unknown 19th Century' +p142396 +sa(dp142397 +g25273 +S'engraving' +p142398 +sg25267 +g27 +sg25275 +S'published 1655' +p142399 +sg25268 +S'Thomas May, Poet and Historian' +p142400 +sg25270 +S'Unknown 19th Century' +p142401 +sa(dp142402 +g25273 +S'engraving' +p142403 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142404 +sg25268 +S'Francois Missonne' +p142405 +sg25270 +S'Unknown 19th Century' +p142406 +sa(dp142407 +g25273 +S'engraving' +p142408 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142409 +sg25268 +S'James Scott, Duke of Monmouth and His Duchess' +p142410 +sg25270 +S'Unknown 19th Century' +p142411 +sa(dp142412 +g25273 +S'engraving' +p142413 +sg25267 +g27 +sg25275 +S'published 1663' +p142414 +sg25268 +S'Col. James Turner' +p142415 +sg25270 +S'Unknown 19th Century' +p142416 +sa(dp142417 +g25273 +S'engraving' +p142418 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142419 +sg25268 +S'Robert Turner, Herbalist and Astrologer' +p142420 +sg25270 +S'Unknown 19th Century' +p142421 +sa(dp142422 +g25268 +S'The Conversion of Saint Paul' +p142423 +sg25270 +S'Hans Baldung Grien' +p142424 +sg25273 +S'woodcut' +p142425 +sg25275 +S'1514' +p142426 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b098.jpg' +p142427 +sg25267 +g27 +sa(dp142428 +g25273 +S'engraving' +p142429 +sg25267 +g27 +sg25275 +S'published 1657' +p142430 +sg25268 +S'Sir Henry Wotton' +p142431 +sg25270 +S'Unknown 19th Century' +p142432 +sa(dp142433 +g25273 +S'engraving' +p142434 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142435 +sg25268 +S'William III as Prince of Orange on Horseback' +p142436 +sg25270 +S'Unknown 19th Century' +p142437 +sa(dp142438 +g25273 +S'engraving' +p142439 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142440 +sg25268 +S'Sir Thomas Worthy' +p142441 +sg25270 +S'Unknown 19th Century' +p142442 +sa(dp142443 +g25273 +S'engraving' +p142444 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142445 +sg25268 +S'Title Page to a Manual of Private Devotions by Lancelot Andrewes' +p142446 +sg25270 +S'Unknown 19th Century' +p142447 +sa(dp142448 +g25273 +S'engraving' +p142449 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142450 +sg25268 +S'Title Page to the Bible' +p142451 +sg25270 +S'Unknown 19th Century' +p142452 +sa(dp142453 +g25273 +S'engraving' +p142454 +sg25267 +g27 +sg25275 +S'published 1690' +p142455 +sg25268 +S'Title Page to the Bible' +p142456 +sg25270 +S'Unknown 19th Century' +p142457 +sa(dp142458 +g25273 +S'engraving' +p142459 +sg25267 +g27 +sg25275 +S'published 1690' +p142460 +sg25268 +S'The Compilers of the English Liturgy' +p142461 +sg25270 +S'Unknown 19th Century' +p142462 +sa(dp142463 +g25273 +S'engraving' +p142464 +sg25267 +g27 +sg25275 +S'published 1674' +p142465 +sg25268 +S'Title Page to Arcana Clericalia or the Misteries of Clerkshipp by George Billinghurst' +p142466 +sg25270 +S'Unknown 19th Century' +p142467 +sa(dp142468 +g25273 +S'engraving' +p142469 +sg25267 +g27 +sg25275 +S'published 1678' +p142470 +sg25268 +S'Title Page to The New World of Words or A General English Dictionary' +p142471 +sg25270 +S'Unknown 19th Century' +p142472 +sa(dp142473 +g25273 +S'engraving' +p142474 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142475 +sg25268 +S'Title Page to the Moderne World of Words, or A Universal English Dictionary' +p142476 +sg25270 +S'Unknown 19th Century' +p142477 +sa(dp142478 +g25268 +S'The Crucifixion' +p142479 +sg25270 +S'Hans Baldung Grien' +p142480 +sg25273 +S'chiaroscuro woodcut in black and brown' +p142481 +sg25275 +S'1514' +p142482 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000aeec.jpg' +p142483 +sg25267 +g27 +sa(dp142484 +g25273 +S'engraving' +p142485 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142486 +sg25268 +S'Title Page to Hermes Theologus or New Descants Upon Old Records, Theoph. Woodnote' +p142487 +sg25270 +S'Unknown 19th Century' +p142488 +sa(dp142489 +g25273 +S'engraving' +p142490 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142491 +sg25268 +S'Title Page to Hermes Theologus or New Descants Upon Old Records, Theoph. Woodnote' +p142492 +sg25270 +S'Unknown 19th Century' +p142493 +sa(dp142494 +g25273 +S'engraving' +p142495 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142496 +sg25268 +S'Portrait of a Woman in an Oval with Coat of Arms' +p142497 +sg25270 +S'Unknown 19th Century' +p142498 +sa(dp142499 +g25273 +S'engraving' +p142500 +sg25267 +g27 +sg25275 +S'1652' +p142501 +sg25268 +S'Portrait of a Man' +p142502 +sg25270 +S'Unknown 19th Century' +p142503 +sa(dp142504 +g25273 +S'engraving' +p142505 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142506 +sg25268 +S'Portrait of a Geographer' +p142507 +sg25270 +S'Unknown 19th Century' +p142508 +sa(dp142509 +g25273 +S'engraving' +p142510 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142511 +sg25268 +S'Portrait of an Astronomer' +p142512 +sg25270 +S'Unknown 19th Century' +p142513 +sa(dp142514 +g25273 +S'engraving' +p142515 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142516 +sg25268 +S'Portrait of a Man with a Broad Collar' +p142517 +sg25270 +S'Unknown 19th Century' +p142518 +sa(dp142519 +g25273 +S'engraving' +p142520 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142521 +sg25268 +S'Portrait of a Man With a Ruff' +p142522 +sg25270 +S'Unknown 19th Century' +p142523 +sa(dp142524 +g25273 +S'engraving' +p142525 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142526 +sg25268 +S'Portrait of a Woman' +p142527 +sg25270 +S'Unknown 19th Century' +p142528 +sa(dp142529 +g25273 +S'engraving' +p142530 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142531 +sg25268 +S'Portrait of a Man in Toga' +p142532 +sg25270 +S'Unknown 19th Century' +p142533 +sa(dp142534 +g25268 +S'Christ on the Pillar' +p142535 +sg25270 +S'Hans Baldung Grien' +p142536 +sg25273 +S'woodcut' +p142537 +sg25275 +S'1517' +p142538 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7d8.jpg' +p142539 +sg25267 +g27 +sa(dp142540 +g25273 +S'engraving' +p142541 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142542 +sg25268 +S'Portrait of a Clergyman' +p142543 +sg25270 +S'Unknown 19th Century' +p142544 +sa(dp142545 +g25273 +S'engraving' +p142546 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142547 +sg25268 +S'Abbas I, Shah of Persia' +p142548 +sg25270 +S'Unknown 19th Century' +p142549 +sa(dp142550 +g25273 +S'engraving' +p142551 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142552 +sg25268 +S'Nicholas Ridley, D.D., Bishop of London, Martyr' +p142553 +sg25270 +S'Unknown 19th Century' +p142554 +sa(dp142555 +g25273 +S'engraving' +p142556 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142557 +sg25268 +S'Title Page to the Compleat Horseman' +p142558 +sg25270 +S'Unknown 19th Century' +p142559 +sa(dp142560 +g25273 +S'engraving' +p142561 +sg25267 +g27 +sg25275 +S'1568' +p142562 +sg25268 +S'Queen Mary I of England' +p142563 +sg25270 +S'Niccol\xc3\xb2 Nelli' +p142564 +sa(dp142565 +g25273 +S'woodcut' +p142566 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142567 +sg25268 +S'James IV of Scotland, Margaret, Daughter of Henry VII, Archibald Douglas, Earl of Angus, Henry VII, Elizabeth of York' +p142568 +sg25270 +S'Unknown 19th Century' +p142569 +sa(dp142570 +g25273 +S'engraving' +p142571 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142572 +sg25268 +S'Queen Mary I' +p142573 +sg25270 +S'Unknown 19th Century' +p142574 +sa(dp142575 +g25273 +S'woodcut' +p142576 +sg25267 +g27 +sg25275 +S'1604' +p142577 +sg25268 +S'Queen Elizabeth' +p142578 +sg25270 +S'Unknown 19th Century' +p142579 +sa(dp142580 +g25273 +S'engraving' +p142581 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142582 +sg25268 +S'Mary, Queen of Scots' +p142583 +sg25270 +S'Unknown 19th Century' +p142584 +sa(dp142585 +g25273 +S'engraving' +p142586 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142587 +sg25268 +S'Mary, Queen of Scots' +p142588 +sg25270 +S'Thomas de Leu' +p142589 +sa(dp142590 +g25268 +S'Christ on the Cross' +p142591 +sg25270 +S'Hans Baldung Grien' +p142592 +sg25273 +S'woodcut' +p142593 +sg25275 +S'1505/1507' +p142594 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7db.jpg' +p142595 +sg25267 +g27 +sa(dp142596 +g25273 +S'engraving' +p142597 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142598 +sg25268 +S'James, King of Scots' +p142599 +sg25270 +S'Unknown 19th Century' +p142600 +sa(dp142601 +g25273 +S'etching' +p142602 +sg25267 +g27 +sg25275 +S'1681' +p142603 +sg25268 +S'James V, King of Scotland' +p142604 +sg25270 +S'Unknown 19th Century' +p142605 +sa(dp142606 +g25273 +S'engraving' +p142607 +sg25267 +g27 +sg25275 +S'published 1817' +p142608 +sg25268 +S'James I, as James VI of Scotland' +p142609 +sg25270 +S'Thomas Chambers' +p142610 +sa(dp142611 +g25273 +S'engraving' +p142612 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142613 +sg25268 +S'James I, as James VI of Scotland' +p142614 +sg25270 +S'Dominicus Custos' +p142615 +sa(dp142616 +g25273 +S'engraving' +p142617 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142618 +sg25268 +S'James I, as James VI of Scotland' +p142619 +sg25270 +S'Dominicus Custos' +p142620 +sa(dp142621 +g25273 +S'engraving' +p142622 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142623 +sg25268 +S'James I' +p142624 +sg25270 +S'Dominicus Custos' +p142625 +sa(dp142626 +g25273 +S'engraving' +p142627 +sg25267 +g27 +sg25275 +S'published 1602' +p142628 +sg25268 +S'James I as James VI of Scotland' +p142629 +sg25270 +S'Dominicus Custos' +p142630 +sa(dp142631 +g25273 +S'engraving' +p142632 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142633 +sg25268 +S'James I as James VI of Scotland' +p142634 +sg25270 +S'Heinrich Ullrich' +p142635 +sa(dp142636 +g25273 +S'engraving' +p142637 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142638 +sg25268 +S'James I as James VI of Scotland' +p142639 +sg25270 +S'Heinrich Ullrich' +p142640 +sa(dp142641 +g25273 +S'engraving' +p142642 +sg25267 +g27 +sg25275 +S'1603' +p142643 +sg25268 +S'James I' +p142644 +sg25270 +S'Heinrich Ullrich' +p142645 +sa(dp142646 +g25268 +S'The Three Fates: Lachesis, Atropos and Clotho' +p142647 +sg25270 +S'Hans Baldung Grien' +p142648 +sg25273 +S'woodcut' +p142649 +sg25275 +S'1513' +p142650 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7e9.jpg' +p142651 +sg25267 +g27 +sa(dp142652 +g25273 +S'engraving' +p142653 +sg25267 +g27 +sg25275 +S'1603' +p142654 +sg25268 +S'James I' +p142655 +sg25270 +S'Pieter de Jode I' +p142656 +sa(dp142657 +g25273 +S'engraving' +p142658 +sg25267 +g27 +sg25275 +S'1603' +p142659 +sg25268 +S'James I' +p142660 +sg25270 +S'Pieter de Jode I' +p142661 +sa(dp142662 +g25273 +S'etching' +p142663 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142664 +sg25268 +S'James I and Anne of Denmark with GeneologicalTree' +p142665 +sg25270 +S'Unknown 19th Century' +p142666 +sa(dp142667 +g25273 +S'engraving' +p142668 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142669 +sg25268 +S'James I of England' +p142670 +sg25270 +S'Unknown 19th Century' +p142671 +sa(dp142672 +g25273 +S'engraving' +p142673 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142674 +sg25268 +S'James I' +p142675 +sg25270 +S'Unknown 19th Century' +p142676 +sa(dp142677 +g25273 +S'engraving' +p142678 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142679 +sg25268 +S'James I' +p142680 +sg25270 +S'Unknown 19th Century' +p142681 +sa(dp142682 +g25273 +S'engraving' +p142683 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142684 +sg25268 +S'James I on Horseback' +p142685 +sg25270 +S'Unknown 19th Century' +p142686 +sa(dp142687 +g25273 +S'engraving' +p142688 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142689 +sg25268 +S'James I' +p142690 +sg25270 +S'Unknown 19th Century' +p142691 +sa(dp142692 +g25273 +S', unknown date' +p142693 +sg25267 +g27 +sg25275 +S'\n' +p142694 +sg25268 +S'James I' +p142695 +sg25270 +S'Claes Jansz Visscher' +p142696 +sa(dp142697 +g25273 +S'engraving' +p142698 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142699 +sg25268 +S'James I' +p142700 +sg25270 +S'Unknown 19th Century' +p142701 +sa(dp142702 +g25268 +S'Group of Seven Horses in Woods' +p142703 +sg25270 +S'Hans Baldung Grien' +p142704 +sg25273 +S'woodcut' +p142705 +sg25275 +S'1534' +p142706 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000adfc.jpg' +p142707 +sg25267 +g27 +sa(dp142708 +g25273 +S'engraving' +p142709 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142710 +sg25268 +S'James I' +p142711 +sg25270 +S'Jacques de Fornazeris' +p142712 +sa(dp142713 +g25273 +S', unknown date' +p142714 +sg25267 +g27 +sg25275 +S'\n' +p142715 +sg25268 +S'James I' +p142716 +sg25270 +S'Karel van Mallery' +p142717 +sa(dp142718 +g25273 +S', unknown date' +p142719 +sg25267 +g27 +sg25275 +S'\n' +p142720 +sg25268 +S'James I' +p142721 +sg25270 +S'Karel van Mallery' +p142722 +sa(dp142723 +g25273 +S'engraving' +p142724 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142725 +sg25268 +S'James I' +p142726 +sg25270 +S'Unknown 19th Century' +p142727 +sa(dp142728 +g25273 +S'engraving' +p142729 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142730 +sg25268 +S'James I' +p142731 +sg25270 +S'Unknown 19th Century' +p142732 +sa(dp142733 +g25273 +S'engraving' +p142734 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142735 +sg25268 +S'James I' +p142736 +sg25270 +S'Unknown 19th Century' +p142737 +sa(dp142738 +g25268 +S'James I, King of Great Britain' +p142739 +sg25270 +S'Christoffel van Sichem I' +p142740 +sg25273 +S'engraving' +p142741 +sg25275 +S'unknown date\n' +p142742 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3b6.jpg' +p142743 +sg25267 +g27 +sa(dp142744 +g25273 +S', unknown date' +p142745 +sg25267 +g27 +sg25275 +S'\n' +p142746 +sg25268 +S'Anne of Denmark, Queen of James I' +p142747 +sg25270 +S'Pieter de Jode I' +p142748 +sa(dp142749 +g25273 +S', unknown date' +p142750 +sg25267 +g27 +sg25275 +S'\n' +p142751 +sg25268 +S'Anne of Denmark' +p142752 +sg25270 +S'Pieter de Jode I' +p142753 +sa(dp142754 +g25273 +S'engraving' +p142755 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142756 +sg25268 +S'Anne of Denmark, Queen of James I' +p142757 +sg25270 +S'Unknown 19th Century' +p142758 +sa(dp142759 +g25268 +S'Christ on the Cross' +p142760 +sg25270 +S'Hans Baldung Grien' +p142761 +sg25273 +S'woodcut' +p142762 +sg25275 +S'1505' +p142763 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7dd.jpg' +p142764 +sg25267 +g27 +sa(dp142765 +g25273 +S'engraving' +p142766 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142767 +sg25268 +S'Anne of Denmark, Queen of James I' +p142768 +sg25270 +S'Unknown 19th Century' +p142769 +sa(dp142770 +g25273 +S'Dutch, c. 1565 - 1637' +p142771 +sg25267 +g27 +sg25275 +S'(artist after)' +p142772 +sg25268 +S'Charles I as Prince of Wales' +p142773 +sg25270 +S'Artist Information (' +p142774 +sa(dp142775 +g25273 +S'engraving' +p142776 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142777 +sg25268 +S'Charles I as Prince of Wales' +p142778 +sg25270 +S'Unknown 19th Century' +p142779 +sa(dp142780 +g25273 +S'engraving' +p142781 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142782 +sg25268 +S'Charles I' +p142783 +sg25270 +S'Unknown 19th Century' +p142784 +sa(dp142785 +g25273 +S'engraving' +p142786 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142787 +sg25268 +S'Betrothal of Princess Elizabeth and Frederic V, Elector Palatine' +p142788 +sg25270 +S'Unknown 19th Century' +p142789 +sa(dp142790 +g25273 +S'engraving and Etching' +p142791 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142792 +sg25268 +S'Elizabeth, Queen of Bohemia' +p142793 +sg25270 +S'Unknown 19th Century' +p142794 +sa(dp142795 +g25273 +S'engraving' +p142796 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142797 +sg25268 +S'Elizabeth, Queen of Bohemia (?)' +p142798 +sg25270 +S'Unknown 19th Century' +p142799 +sa(dp142800 +g25273 +S'engraving' +p142801 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142802 +sg25268 +S'Elizabeth, Queen of Bohemia' +p142803 +sg25270 +S'Unknown 19th Century' +p142804 +sa(dp142805 +g25273 +S'engraving' +p142806 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142807 +sg25268 +S'Elizabeth, Queen of Bohemia' +p142808 +sg25270 +S'Unknown 19th Century' +p142809 +sa(dp142810 +g25273 +S', unknown date' +p142811 +sg25267 +g27 +sg25275 +S'\n' +p142812 +sg25268 +S'Elizabeth, Queen of Bohemia' +p142813 +sg25270 +S'Claes Jansz Visscher' +p142814 +sa(dp142815 +g25268 +S'Adam and Eve' +p142816 +sg25270 +S'Hans Baldung Grien' +p142817 +sg25273 +S'chiaroscuro woodcut' +p142818 +sg25275 +S'1511' +p142819 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00010/a0001060.jpg' +p142820 +sg25267 +g27 +sa(dp142821 +g25273 +S'engraving' +p142822 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142823 +sg25268 +S'Frederick V as Count Palatine' +p142824 +sg25270 +S'Unknown 19th Century' +p142825 +sa(dp142826 +g25273 +S', unknown date' +p142827 +sg25267 +g27 +sg25275 +S'\n' +p142828 +sg25268 +S'Frederick V, Elector Palatine, King of Bohemia' +p142829 +sg25270 +S'Crispijn van de Passe I' +p142830 +sa(dp142831 +g25273 +S', unknown date' +p142832 +sg25267 +g27 +sg25275 +S'\n' +p142833 +sg25268 +S'Frederick V, Elector Palatine, King of Bohemia' +p142834 +sg25270 +S'Crispijn van de Passe I' +p142835 +sa(dp142836 +g25273 +S', unknown date' +p142837 +sg25267 +g27 +sg25275 +S'\n' +p142838 +sg25268 +S'Frederick V, Elector Palatine, King of Bohemia' +p142839 +sg25270 +S'Crispijn van de Passe I' +p142840 +sa(dp142841 +g25273 +S', unknown date' +p142842 +sg25267 +g27 +sg25275 +S'\n' +p142843 +sg25268 +S'Frederick V, Elector Palatine, King of Bohemia' +p142844 +sg25270 +S'Crispijn van de Passe I' +p142845 +sa(dp142846 +g25273 +S'engraving' +p142847 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142848 +sg25268 +S'Frederick V, King of Bohemia' +p142849 +sg25270 +S'Pieter Rollos I' +p142850 +sa(dp142851 +g25273 +S'engraving' +p142852 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142853 +sg25268 +S'Frederick V, King of Bohemia' +p142854 +sg25270 +S'Peter Isselburg' +p142855 +sa(dp142856 +g25273 +S'engraving' +p142857 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142858 +sg25268 +S'Frederick V, King of Bohemia, Standing in a Niche' +p142859 +sg25270 +S'Unknown 19th Century' +p142860 +sa(dp142861 +g25273 +S'engraving' +p142862 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142863 +sg25268 +S'Frederick V' +p142864 +sg25270 +S'Crispyn van den Queboorn' +p142865 +sa(dp142866 +g25273 +S', unknown date' +p142867 +sg25267 +g27 +sg25275 +S'\n' +p142868 +sg25268 +S'Frederick V, King of Bohemia' +p142869 +sg25270 +S'Balthasar Moncornet' +p142870 +sa(dp142871 +g25268 +S'Saint Sebastian' +p142872 +sg25270 +S'Hans Baldung Grien' +p142873 +sg25273 +S'woodcut' +p142874 +sg25275 +S'1514' +p142875 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b097.jpg' +p142876 +sg25267 +g27 +sa(dp142877 +g25273 +S'engraving' +p142878 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142879 +sg25268 +S'Frederick V, Elizabeth and Their Family' +p142880 +sg25270 +S'Unknown 19th Century' +p142881 +sa(dp142882 +g25273 +S', unknown date' +p142883 +sg25267 +g27 +sg25275 +S'\n' +p142884 +sg25268 +S'Frederick V, King of Bohemia, Elizabeth and Their Family' +p142885 +sg25270 +S'Claes Jansz Visscher' +p142886 +sa(dp142887 +g25273 +S'engraving' +p142888 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142889 +sg25268 +S'Frederick V, King of Bohemia Between Christ and Moses From the Palatine Catechism' +p142890 +sg25270 +S'Unknown 19th Century' +p142891 +sa(dp142892 +g25273 +S'etching' +p142893 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142894 +sg25268 +S'Charles I on Horseback' +p142895 +sg25270 +S'Unknown 19th Century' +p142896 +sa(dp142897 +g25273 +S'engraving' +p142898 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142899 +sg25268 +S'Charles I in an Octagonal Border' +p142900 +sg25270 +S'Fran\xc3\xa7ois Chauveau' +p142901 +sa(dp142902 +g25273 +S'engraving' +p142903 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142904 +sg25268 +S'Charles I' +p142905 +sg25270 +S'Unknown 19th Century' +p142906 +sa(dp142907 +g25273 +S'(artist after)' +p142908 +sg25267 +g27 +sg25275 +S'\n' +p142909 +sg25268 +S'Charles I' +p142910 +sg25270 +S'Artist Information (' +p142911 +sa(dp142912 +g25273 +S'Flemish, 1599 - 1641' +p142913 +sg25267 +g27 +sg25275 +S'(artist after)' +p142914 +sg25268 +S'Charles I in a Border of Dragons' +p142915 +sg25270 +S'Artist Information (' +p142916 +sa(dp142917 +g25273 +S'(artist after)' +p142918 +sg25267 +g27 +sg25275 +S'\n' +p142919 +sg25268 +S'Henrietta Maria, Queen of Charles I' +p142920 +sg25270 +S'Artist Information (' +p142921 +sa(dp142922 +g25273 +S'(artist after)' +p142923 +sg25267 +g27 +sg25275 +S'\n' +p142924 +sg25268 +S'Henrietta Maria (?)' +p142925 +sg25270 +S'Artist Information (' +p142926 +sa(dp142927 +g25268 +S'Saint Philip' +p142928 +sg25270 +S'Hans Baldung Grien' +p142929 +sg25273 +S'woodcut' +p142930 +sg25275 +S'1519' +p142931 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7ce.jpg' +p142932 +sg25267 +g27 +sa(dp142933 +g25273 +S', unknown date' +p142934 +sg25267 +g27 +sg25275 +S'\n' +p142935 +sg25268 +S'Henrietta Maria, Queen of Charles I' +p142936 +sg25270 +S'Balthasar Moncornet' +p142937 +sa(dp142938 +g25273 +S', unknown date' +p142939 +sg25267 +g27 +sg25275 +S'\n' +p142940 +sg25268 +S'Henrietta Maria, Queen of Charles I' +p142941 +sg25270 +S'Balthasar Moncornet' +p142942 +sa(dp142943 +g25273 +S'engraving' +p142944 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142945 +sg25268 +S'Henrietta Maria' +p142946 +sg25270 +S'Unknown 19th Century' +p142947 +sa(dp142948 +g25273 +S'engraving' +p142949 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142950 +sg25268 +S'Henrietta Maria (?)' +p142951 +sg25270 +S'Unknown 19th Century' +p142952 +sa(dp142953 +g25273 +S'engraving' +p142954 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142955 +sg25268 +S'Elizabeth, Queen of Bohemia (?)' +p142956 +sg25270 +S'Unknown 19th Century' +p142957 +sa(dp142958 +g25273 +S'engraving' +p142959 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142960 +sg25268 +S'Henrietta Maria' +p142961 +sg25270 +S'Unknown 19th Century' +p142962 +sa(dp142963 +g25273 +S'engraving' +p142964 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142965 +sg25268 +S'Henrietta Maria (?)' +p142966 +sg25270 +S'Unknown 19th Century' +p142967 +sa(dp142968 +g25273 +S', unknown date' +p142969 +sg25267 +g27 +sg25275 +S'\n' +p142970 +sg25268 +S'Charles II' +p142971 +sg25270 +S'Wolfgang Philipp Kilian' +p142972 +sa(dp142973 +g25273 +S'engraving and etching' +p142974 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142975 +sg25268 +S'Charles II on Horseback' +p142976 +sg25270 +S'Unknown 19th Century' +p142977 +sa(dp142978 +g25273 +S'etching and engraving' +p142979 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142980 +sg25268 +S'Prince Rupert (?)' +p142981 +sg25270 +S'Unknown 19th Century' +p142982 +sa(dp142983 +g25268 +S'Saint Matthew' +p142984 +sg25270 +S'Hans Baldung Grien' +p142985 +sg25273 +S'woodcut' +p142986 +sg25275 +S'1519' +p142987 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7c8.jpg' +p142988 +sg25267 +g27 +sa(dp142989 +g25273 +S'engraving' +p142990 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142991 +sg25268 +S'Princess Isabella of York, Daughter of James II While Duke of York' +p142992 +sg25270 +S'Unknown 19th Century' +p142993 +sa(dp142994 +g25273 +S'engraving and etching' +p142995 +sg25267 +g27 +sg25275 +S'unknown date\n' +p142996 +sg25268 +S'William III (?)' +p142997 +sg25270 +S'Unknown 19th Century' +p142998 +sa(dp142999 +g25273 +S'engraving' +p143000 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143001 +sg25268 +S'Portrait of a Man' +p143002 +sg25270 +S'Unknown 19th Century' +p143003 +sa(dp143004 +g25273 +S'engraving' +p143005 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143006 +sg25268 +S'William Laud, Archbishop of Canterbury' +p143007 +sg25270 +S'Unknown 19th Century' +p143008 +sa(dp143009 +g25273 +S'engraving' +p143010 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143011 +sg25268 +S'Edwin Sanders, Archbishop of York' +p143012 +sg25270 +S'Unknown 19th Century' +p143013 +sa(dp143014 +g25273 +S'English, active 1622/1678' +p143015 +sg25267 +g27 +sg25275 +S'(artist after)' +p143016 +sg25268 +S'Sir Walter Raleigh' +p143017 +sg25270 +S'Artist Information (' +p143018 +sa(dp143019 +g25273 +S'stipple engraving' +p143020 +sg25267 +g27 +sg25275 +S'c. 1800' +p143021 +sg25268 +S'Charles II' +p143022 +sg25270 +S'Unknown 19th Century' +p143023 +sa(dp143024 +g25273 +S'engraving' +p143025 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143026 +sg25268 +S'Isaac Casawbon' +p143027 +sg25270 +S'Unknown 19th Century' +p143028 +sa(dp143029 +g25273 +S'engraving' +p143030 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143031 +sg25268 +S'Sir Thomas More' +p143032 +sg25270 +S'Unknown 19th Century' +p143033 +sa(dp143034 +g25268 +S'The Presentation in the Temple in the Dark Manner' +p143035 +sg25270 +S'Rembrandt van Rijn' +p143036 +sg25273 +S'etching and drypoint' +p143037 +sg25275 +S'c. 1654' +p143038 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2d9.jpg' +p143039 +sg25267 +g27 +sa(dp143040 +g25268 +S'Apostle Judas Thaddeus' +p143041 +sg25270 +S'Hans Baldung Grien' +p143042 +sg25273 +S'woodcut' +p143043 +sg25275 +S'1519' +p143044 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7d2.jpg' +p143045 +sg25267 +g27 +sa(dp143046 +g25268 +S'In an Elevator' +p143047 +sg25270 +S'George Bellows' +p143048 +sg25273 +S'lithograph on wove paper' +p143049 +sg25275 +S'1916' +p143050 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fc/a000fc4d.jpg' +p143051 +sg25267 +g27 +sa(dp143052 +g25273 +S'etching' +p143053 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143054 +sg25268 +S'High Flying Ducks' +p143055 +sg25270 +S'Frank Weston Benson' +p143056 +sa(dp143057 +g25273 +S'etching' +p143058 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143059 +sg25268 +S'Lone Yellowlegs' +p143060 +sg25270 +S'Frank Weston Benson' +p143061 +sa(dp143062 +g25273 +S'etching' +p143063 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143064 +sg25268 +S'Turnstones' +p143065 +sg25270 +S'Frank Weston Benson' +p143066 +sa(dp143067 +g25268 +S'La Place Pigalle en 1878 (Place Pigalle in 1878)' +p143068 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p143069 +sg25273 +S'etching, aquatint, drypoint, and roulette with burnishing on turpentine soaked japan paper' +p143070 +sg25275 +S'1878' +p143071 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005745.jpg' +p143072 +sg25267 +g27 +sa(dp143073 +g25268 +S'Saints Stephen, Sixtus and Lawrence' +p143074 +sg25270 +S'Albrecht D\xc3\xbcrer' +p143075 +sg25273 +S'woodcut' +p143076 +sg25275 +S'probably c. 1504/1505' +p143077 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac44.jpg' +p143078 +sg25267 +g27 +sa(dp143079 +g25268 +S'The Holy Family with Two Angels in a Vaulted Hall' +p143080 +sg25270 +S'Albrecht D\xc3\xbcrer' +p143081 +sg25273 +S'woodcut' +p143082 +sg25275 +S'c. 1504' +p143083 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a972.jpg' +p143084 +sg25267 +g27 +sa(dp143085 +g25268 +S"No se puede saber por que (One Can't Tell Why)" +p143086 +sg25270 +S'Francisco de Goya' +p143087 +sg25273 +S'etching, burnished lavis, drypoint and burin' +p143088 +sg25275 +S'1810/1820' +p143089 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed65.jpg' +p143090 +sg25267 +g27 +sa(dp143091 +g25268 +S'Disparate desordenado (Disorderly Folly)' +p143092 +sg25270 +S'Francisco de Goya' +p143093 +sg25273 +S'etching, aquatint and drypoint' +p143094 +sg25275 +S'in or after 1816' +p143095 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed98.jpg' +p143096 +sg25267 +g27 +sa(dp143097 +g25268 +S'Disparate furioso (Furious Folly)' +p143098 +sg25270 +S'Francisco de Goya' +p143099 +sg25273 +S'etching and burnished aquatint' +p143100 +sg25275 +S'in or after 1816' +p143101 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed92.jpg' +p143102 +sg25267 +g27 +sa(dp143103 +g25268 +S'Apostle Judas Thaddeus' +p143104 +sg25270 +S'Hans Baldung Grien' +p143105 +sg25273 +S'woodcut' +p143106 +sg25275 +S'1519' +p143107 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7d0.jpg' +p143108 +sg25267 +g27 +sa(dp143109 +g25268 +S'Dutch View' +p143110 +sg25270 +S'Maxime Lalanne' +p143111 +sg25273 +S'pen and black ink heightened with white' +p143112 +sg25275 +S'unknown date\n' +p143113 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073ab.jpg' +p143114 +sg25267 +g27 +sa(dp143115 +g25268 +S'The Landscape Artist (Le paysagiste)' +p143116 +sg25270 +S'Auguste Lep\xc3\xa8re' +p143117 +sg25273 +S'color woodcut' +p143118 +sg25275 +S'1912' +p143119 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cf4.jpg' +p143120 +sg25267 +g27 +sa(dp143121 +g25268 +S"The Tragic Actor (L'acteur tragique)" +p143122 +sg25270 +S'Edouard Manet' +p143123 +sg25273 +S'etching' +p143124 +sg25275 +S'1866' +p143125 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d07.jpg' +p143126 +sg25267 +g27 +sa(dp143127 +g25268 +S'The Wool Carder (La cardeuse)' +p143128 +sg25270 +S'Jean-Fran\xc3\xa7ois Millet' +p143129 +sg25273 +S'etching' +p143130 +sg25275 +S'unknown date\n' +p143131 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d90.jpg' +p143132 +sg25267 +g27 +sa(dp143133 +g25273 +S'etching' +p143134 +sg25267 +g27 +sg25275 +S'1917/1919' +p143135 +sg25268 +S'The Desert of Sinai, No.2' +p143136 +sg25270 +S'James McBey' +p143137 +sa(dp143138 +g25273 +S'etching and drypoint' +p143139 +sg25267 +g27 +sg25275 +S'1917/1919' +p143140 +sg25268 +S'Strange Signals' +p143141 +sg25270 +S'James McBey' +p143142 +sa(dp143143 +g25273 +S'etching' +p143144 +sg25267 +g27 +sg25275 +S'1921' +p143145 +sg25268 +S'Macduff' +p143146 +sg25270 +S'James McBey' +p143147 +sa(dp143148 +g25268 +S'Hail America' +p143149 +sg25270 +S'Joseph Pennell' +p143150 +sg25273 +S'mezzotint' +p143151 +sg25275 +S'1909' +p143152 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bad.jpg' +p143153 +sg25267 +g27 +sa(dp143154 +g25268 +S'Rainy Night, Charing Cross Shops' +p143155 +sg25270 +S'Joseph Pennell' +p143156 +sg25273 +S'etching' +p143157 +sg25275 +S'1903' +p143158 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b52.jpg' +p143159 +sg25267 +g27 +sa(dp143160 +g25268 +S'The West Front, Amiens' +p143161 +sg25270 +S'Joseph Pennell' +p143162 +sg25273 +S'etching' +p143163 +sg25275 +S'1907' +p143164 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010ba2.jpg' +p143165 +sg25267 +g27 +sa(dp143166 +g25268 +S'Saint Paul' +p143167 +sg25270 +S'Hans Baldung Grien' +p143168 +sg25273 +S'woodcut' +p143169 +sg25275 +S'1519' +p143170 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7ec.jpg' +p143171 +sg25267 +g27 +sa(dp143172 +g25268 +S'Bibi Lalouette' +p143173 +sg25270 +S'James McNeill Whistler' +p143174 +sg25273 +S'etching and drypoint' +p143175 +sg25275 +S'1859' +p143176 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9a7.jpg' +p143177 +sg25267 +g27 +sa(dp143178 +g25268 +S"The Rag Gatherers'" +p143179 +sg25270 +S'James McNeill Whistler' +p143180 +sg25273 +S'etching' +p143181 +sg25275 +S'1858' +p143182 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9cd.jpg' +p143183 +sg25267 +g27 +sa(dp143184 +g25268 +S'La Vieille aux Loques' +p143185 +sg25270 +S'James McNeill Whistler' +p143186 +sg25273 +S'etching' +p143187 +sg25275 +S'1858' +p143188 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aac0.jpg' +p143189 +sg25267 +g27 +sa(dp143190 +g25268 +S'Sketch for Madame Moitessier' +p143191 +sg25270 +S'Jean-Auguste-Dominique Ingres' +p143192 +sg25273 +S'graphite on wove paper' +p143193 +sg25275 +S'unknown date\n' +p143194 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d48.jpg' +p143195 +sg25267 +g27 +sa(dp143196 +g25268 +S'Portrait of a Man and Boy' +p143197 +sg25270 +S'Artist Information (' +p143198 +sg25273 +S'Italian, 1518 - 1594' +p143199 +sg25275 +S'(related artist)' +p143200 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a0006310.jpg' +p143201 +sg25267 +g27 +sa(dp143202 +g25268 +S'Ascension' +p143203 +sg25270 +S'Josef Albers' +p143204 +sg25273 +S'lithograph' +p143205 +sg25275 +S'1942' +p143206 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000918.jpg' +p143207 +sg25267 +g27 +sa(dp143208 +g25268 +S'Black Circle' +p143209 +sg25270 +S'Josef Albers' +p143210 +sg25273 +S'woodcut' +p143211 +sg25275 +S'1933' +p143212 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000919.jpg' +p143213 +sg25267 +g27 +sa(dp143214 +g25273 +S'lithograph' +p143215 +sg25267 +g27 +sg25275 +S'1942' +p143216 +sg25268 +S'Sanctuary' +p143217 +sg25270 +S'Josef Albers' +p143218 +sa(dp143219 +g25268 +S'Broadside: An Invitation to an Arms Competition' +p143220 +sg25270 +S'German 16th Century' +p143221 +sg25273 +S'Field 1965, no. 295' +p143222 +sg25275 +S'\nwoodcut, hand-colored, with movable type on two joined sheets of paper' +p143223 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c0b.jpg' +p143224 +sg25267 +g27 +sa(dp143225 +g25273 +S'Rosenwald Collection' +p143226 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p143227 +sg25268 +S'Playing Cards' +p143228 +sg25270 +S'Italian 15th Century' +p143229 +sa(dp143230 +g25268 +S'Saint James the Less' +p143231 +sg25270 +S'Hans Baldung Grien' +p143232 +sg25273 +S'woodcut' +p143233 +sg25275 +S'1519' +p143234 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7cf.jpg' +p143235 +sg25267 +g27 +sa(dp143236 +g25273 +S'Rosenwald Collection' +p143237 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p143238 +sg25268 +S'Playing Cards' +p143239 +sg25270 +S'Italian 15th Century' +p143240 +sa(dp143241 +g25273 +S'Rosenwald Collection' +p143242 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p143243 +sg25268 +S'Playing Cards' +p143244 +sg25270 +S'Italian 15th Century' +p143245 +sa(dp143246 +g25268 +S'Le matin' +p143247 +sg25270 +S'Richard Parkes Bonington' +p143248 +sg25273 +S'lithograph' +p143249 +sg25275 +S'1824' +p143250 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007ddd.jpg' +p143251 +sg25267 +g27 +sa(dp143252 +g25268 +S'Rue du gros-horloge, Rouen' +p143253 +sg25270 +S'Richard Parkes Bonington' +p143254 +sg25273 +S'lithograph' +p143255 +sg25275 +S'1824' +p143256 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dc0.jpg' +p143257 +sg25267 +g27 +sa(dp143258 +g25268 +S'The Orchard (Le verger)' +p143259 +sg25270 +S'Pierre Bonnard' +p143260 +sg25273 +S'color lithograph on china paper' +p143261 +sg25275 +S'1899' +p143262 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ef9.jpg' +p143263 +sg25267 +g27 +sa(dp143264 +g25268 +S"L'Infirmerie de l'hospital de la Charite de Paris" +p143265 +sg25270 +S'Abraham Bosse' +p143266 +sg25273 +S'etching' +p143267 +sg25275 +S'unknown date\n' +p143268 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a74.jpg' +p143269 +sg25267 +g27 +sa(dp143270 +g25268 +S'The Shoemakers' +p143271 +sg25270 +S'Abraham Bosse' +p143272 +sg25273 +S'etching' +p143273 +sg25275 +S'unknown date\n' +p143274 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a76.jpg' +p143275 +sg25267 +g27 +sa(dp143276 +g25268 +S'My Dream' +p143277 +sg25270 +S'Rodolphe Bresdin' +p143278 +sg25273 +S'etching' +p143279 +sg25275 +S'1883' +p143280 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a000914e.jpg' +p143281 +sg25267 +g27 +sa(dp143282 +g25268 +S'Edmond de Goncourt' +p143283 +sg25270 +S'Eug\xc3\xa8ne Carri\xc3\xa8re' +p143284 +sg25273 +S'lithograph' +p143285 +sg25275 +S'1896' +p143286 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f10.jpg' +p143287 +sg25267 +g27 +sa(dp143288 +g25268 +S'Marine' +p143289 +sg25270 +S'Minna Wright Citron' +p143290 +sg25273 +S'color soft-ground etching' +p143291 +sg25275 +S'1948' +p143292 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a65.jpg' +p143293 +sg25267 +g27 +sa(dp143294 +g25268 +S'Saint Simon' +p143295 +sg25270 +S'Hans Baldung Grien' +p143296 +sg25273 +S'woodcut' +p143297 +sg25275 +S'1519' +p143298 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7cd.jpg' +p143299 +sg25267 +g27 +sa(dp143300 +g25273 +S'etching and engraving in black and rust' +p143301 +sg25267 +g27 +sg25275 +S'1946' +p143302 +sg25268 +S'Men Seldom Make Passes ...' +p143303 +sg25270 +S'Minna Wright Citron' +p143304 +sa(dp143305 +g25273 +S'color soft-ground etching' +p143306 +sg25267 +g27 +sg25275 +S'1948' +p143307 +sg25268 +S'Way Through the Woods' +p143308 +sg25270 +S'Minna Wright Citron' +p143309 +sa(dp143310 +g25273 +S'engraving' +p143311 +sg25267 +g27 +sg25275 +S'1946' +p143312 +sg25268 +S'"Whatever"' +p143313 +sg25270 +S'Minna Wright Citron' +p143314 +sa(dp143315 +g25268 +S'In the Dunes: Souvenir of The Hague (Dans les dunes: Souvenir du bois de La Haye)' +p143316 +sg25270 +S'Jean-Baptiste-Camille Corot' +p143317 +sg25273 +S'etching' +p143318 +sg25275 +S'1869' +p143319 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091af.jpg' +p143320 +sg25267 +g27 +sa(dp143321 +g25268 +S'Environs of Rome (Environs de Rome)' +p143322 +sg25270 +S'Jean-Baptiste-Camille Corot' +p143323 +sg25273 +S'etching' +p143324 +sg25275 +S'1866' +p143325 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091a9.jpg' +p143326 +sg25267 +g27 +sa(dp143327 +g25268 +S'Souvenir of Tuscany (Souvenir de Toscane)' +p143328 +sg25270 +S'Jean-Baptiste-Camille Corot' +p143329 +sg25273 +S'etching' +p143330 +sg25275 +S'c. 1845' +p143331 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091b0.jpg' +p143332 +sg25267 +g27 +sa(dp143333 +g25268 +S'Ch\xc3\xa8re baronne, je vous f\xc3\xa9licite...' +p143334 +sg25270 +S'Honor\xc3\xa9 Daumier' +p143335 +sg25273 +S'lithograph' +p143336 +sg25275 +S'1847' +p143337 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093ee.jpg' +p143338 +sg25267 +g27 +sa(dp143339 +g25268 +S"L'Escompte d'un billet" +p143340 +sg25270 +S'Honor\xc3\xa9 Daumier' +p143341 +sg25273 +S'lithograph' +p143342 +sg25275 +S'1844' +p143343 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092dc.jpg' +p143344 +sg25267 +g27 +sa(dp143345 +g25268 +S'Mar\xc3\xa9chal Bugeaud' +p143346 +sg25270 +S'Honor\xc3\xa9 Daumier' +p143347 +sg25273 +S'lithograph' +p143348 +sg25275 +S'1849' +p143349 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009433.jpg' +p143350 +sg25267 +g27 +sa(dp143351 +g25268 +S'Oui je viens, dans son temple...' +p143352 +sg25270 +S'Honor\xc3\xa9 Daumier' +p143353 +sg25273 +S'lithograph' +p143354 +sg25275 +S'1841' +p143355 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000928e.jpg' +p143356 +sg25267 +g27 +sa(dp143357 +g25268 +S'Saint Thomas' +p143358 +sg25270 +S'Hans Baldung Grien' +p143359 +sg25273 +S'woodcut' +p143360 +sg25275 +S'1519' +p143361 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7c9.jpg' +p143362 +sg25267 +g27 +sa(dp143363 +g25268 +S'Saperlotte!... que je voudrais... que ma femme ait fini...' +p143364 +sg25270 +S'Honor\xc3\xa9 Daumier' +p143365 +sg25273 +S'lithograph' +p143366 +sg25275 +S'1844' +p143367 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009316.jpg' +p143368 +sg25267 +g27 +sa(dp143369 +g25268 +S'Un Diner maigre' +p143370 +sg25270 +S'Honor\xc3\xa9 Daumier' +p143371 +sg25273 +S'lithograph' +p143372 +sg25275 +S'1844' +p143373 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092da.jpg' +p143374 +sg25267 +g27 +sa(dp143375 +g25268 +S'Un Triomphe de botaniste' +p143376 +sg25270 +S'Honor\xc3\xa9 Daumier' +p143377 +sg25273 +S'lithograph' +p143378 +sg25275 +S'1844' +p143379 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092d1.jpg' +p143380 +sg25267 +g27 +sa(dp143381 +g25268 +S'Ah!... quelle singuli\xc3\xa8re \xc3\xa9ducation vous donnez a votre fille?...' +p143382 +sg25270 +S'Honor\xc3\xa9 Daumier' +p143383 +sg25273 +S'lithograph' +p143384 +sg25275 +S'1844' +p143385 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009313.jpg' +p143386 +sg25267 +g27 +sa(dp143387 +g25268 +S'Abonn\xc3\xa9s recevant leur journal...' +p143388 +sg25270 +S'Honor\xc3\xa9 Daumier' +p143389 +sg25273 +S'lithograph' +p143390 +sg25275 +S'1845' +p143391 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000932f.jpg' +p143392 +sg25267 +g27 +sa(dp143393 +g25268 +S'Une Heureuse trouvaille' +p143394 +sg25270 +S'Honor\xc3\xa9 Daumier' +p143395 +sg25273 +S'lithograph' +p143396 +sg25275 +S'1844' +p143397 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092db.jpg' +p143398 +sg25267 +g27 +sa(dp143399 +g25268 +S"Le Jour de l'an" +p143400 +sg25270 +S'Honor\xc3\xa9 Daumier' +p143401 +sg25273 +S'lithograph' +p143402 +sg25275 +S'1844' +p143403 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092d2.jpg' +p143404 +sg25267 +g27 +sa(dp143405 +g25268 +S"Un Monsieur qu'on rajeunit trop" +p143406 +sg25270 +S'Honor\xc3\xa9 Daumier' +p143407 +sg25273 +S'lithograph' +p143408 +sg25275 +S'1845' +p143409 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092d0.jpg' +p143410 +sg25267 +g27 +sa(dp143411 +g25268 +S'La Visite a la nourrice' +p143412 +sg25270 +S'Honor\xc3\xa9 Daumier' +p143413 +sg25273 +S'lithograph' +p143414 +sg25275 +S'1845' +p143415 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092e2.jpg' +p143416 +sg25267 +g27 +sa(dp143417 +g25268 +S'Pour lors... nous... sommes dans le p\xc3\xa9trin' +p143418 +sg25270 +S'Honor\xc3\xa9 Daumier' +p143419 +sg25273 +S'lithograph' +p143420 +sg25275 +S'1840' +p143421 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093a5.jpg' +p143422 +sg25267 +g27 +sa(dp143423 +g25268 +S'Saint Bartholomew' +p143424 +sg25270 +S'Hans Baldung Grien' +p143425 +sg25273 +S'woodcut' +p143426 +sg25275 +S'1519' +p143427 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7cb.jpg' +p143428 +sg25267 +g27 +sa(dp143429 +g25268 +S'Ah! Saperlotte, je crois que nous sommes pinc\xc3\xa9s!' +p143430 +sg25270 +S'Honor\xc3\xa9 Daumier' +p143431 +sg25273 +S'lithograph' +p143432 +sg25275 +S'1845' +p143433 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000935c.jpg' +p143434 +sg25267 +g27 +sa(dp143435 +g25268 +S'Ainsi donc, mon ami, a vingt-deux ans...' +p143436 +sg25270 +S'Honor\xc3\xa9 Daumier' +p143437 +sg25273 +S'lithograph' +p143438 +sg25275 +S'1844' +p143439 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009329.jpg' +p143440 +sg25267 +g27 +sa(dp143441 +g25268 +S'Je pars plus amoureux que... jamais...' +p143442 +sg25270 +S'Honor\xc3\xa9 Daumier' +p143443 +sg25273 +S'lithograph' +p143444 +sg25275 +S'1841' +p143445 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000928f.jpg' +p143446 +sg25267 +g27 +sa(dp143447 +g25268 +S'Ph. Auguste Demesmay' +p143448 +sg25270 +S'Honor\xc3\xa9 Daumier' +p143449 +sg25273 +S'lithograph' +p143450 +sg25275 +S'1849' +p143451 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009431.jpg' +p143452 +sg25267 +g27 +sa(dp143453 +g25268 +S"Et dire que voila trois... pr\xc3\xa9venu que je n'ai pas pu faire condamner!..." +p143454 +sg25270 +S'Honor\xc3\xa9 Daumier' +p143455 +sg25273 +S'lithograph' +p143456 +sg25275 +S'1845' +p143457 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000933b.jpg' +p143458 +sg25267 +g27 +sa(dp143459 +g25268 +S"Voila! t'es devenu rentier, moi m\xc3\xa9decin, lui..." +p143460 +sg25270 +S'Honor\xc3\xa9 Daumier' +p143461 +sg25273 +S'lithograph' +p143462 +sg25275 +S'1841' +p143463 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009246.jpg' +p143464 +sg25267 +g27 +sa(dp143465 +g25268 +S'Ren\xc3\xa9-Hilaire de Gas, Grandfather of the Artist' +p143466 +sg25270 +S'Edgar Degas' +p143467 +sg25273 +S'etching and drypoint' +p143468 +sg25275 +S'1856' +p143469 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f16.jpg' +p143470 +sg25267 +g27 +sa(dp143471 +g25268 +S'The Swiss Sentry at the Louvre (Le factionnaire Suisse au Louvre)' +p143472 +sg25270 +S'Th\xc3\xa9odore Gericault' +p143473 +sg25273 +S'lithograph' +p143474 +sg25275 +S'1818' +p143475 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f66.jpg' +p143476 +sg25267 +g27 +sa(dp143477 +g25268 +S'Beethoven' +p143478 +sg25270 +S'Henryk Glicenstein' +p143479 +sg25273 +S'drypoint' +p143480 +sg25275 +S'unknown date\n' +p143481 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000de/a000ded3.jpg' +p143482 +sg25267 +g27 +sa(dp143483 +g25268 +S'The Finding of Moses' +p143484 +sg25270 +S'Henryk Glicenstein' +p143485 +sg25273 +S'drypoint' +p143486 +sg25275 +S'unknown date\n' +p143487 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000de/a000dede.jpg' +p143488 +sg25267 +g27 +sa(dp143489 +g25268 +S'Saint John' +p143490 +sg25270 +S'Hans Baldung Grien' +p143491 +sg25273 +S'woodcut' +p143492 +sg25275 +S'1519' +p143493 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7cc.jpg' +p143494 +sg25267 +g27 +sa(dp143495 +g25268 +S'Lincoln' +p143496 +sg25270 +S'Henryk Glicenstein' +p143497 +sg25273 +S'drypoint' +p143498 +sg25275 +S'unknown date\n' +p143499 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000de/a000dec7.jpg' +p143500 +sg25267 +g27 +sa(dp143501 +g25268 +S'Saint Francis' +p143502 +sg25270 +S'Henryk Glicenstein' +p143503 +sg25273 +S'drypoint' +p143504 +sg25275 +S'unknown date\n' +p143505 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000de/a000ded9.jpg' +p143506 +sg25267 +g27 +sa(dp143507 +g25273 +S'embossed engraving on shaped plates with dark pencil (crayon?) outline' +p143508 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143509 +sg25268 +S'Composition for a World Map' +p143510 +sg25270 +S'Joseph Hecht' +p143511 +sa(dp143512 +g25273 +S'embossed engraving on shaped plates with monoprint background printed on light brown laid paper' +p143513 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143514 +sg25268 +S'Triple Frieze' +p143515 +sg25270 +S'Joseph Hecht' +p143516 +sa(dp143517 +g25268 +S"Int\xc3\xa9rieur d'un port" +p143518 +sg25270 +S'Eug\xc3\xa8ne Isabey' +p143519 +sg25273 +S'lithograph' +p143520 +sg25275 +S'1833' +p143521 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f75.jpg' +p143522 +sg25267 +g27 +sa(dp143523 +g25268 +S"Radoub d'une barque \xc3\xa0 Mar\xc3\xa9e Basse" +p143524 +sg25270 +S'Eug\xc3\xa8ne Isabey' +p143525 +sg25273 +S'lithograph' +p143526 +sg25275 +S'1833' +p143527 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f76.jpg' +p143528 +sg25267 +g27 +sa(dp143529 +g25268 +S'Retour au port' +p143530 +sg25270 +S'Eug\xc3\xa8ne Isabey' +p143531 +sg25273 +S'lithograph' +p143532 +sg25275 +S'1833' +p143533 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f77.jpg' +p143534 +sg25267 +g27 +sa(dp143535 +g25268 +S'Title Page (Titre du cahier de six eaux-fortes)' +p143536 +sg25270 +S'Johan Barthold Jongkind' +p143537 +sg25273 +S'etching' +p143538 +sg25275 +S'1862' +p143539 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d6a3.jpg' +p143540 +sg25267 +g27 +sa(dp143541 +g25268 +S'The Canal (Le Canal)' +p143542 +sg25270 +S'Johan Barthold Jongkind' +p143543 +sg25273 +S'etching' +p143544 +sg25275 +S'1862' +p143545 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d6a9.jpg' +p143546 +sg25267 +g27 +sa(dp143547 +g25268 +S'The Houses on the Canal Bank (Les Maisons au bord du canal)' +p143548 +sg25270 +S'Johan Barthold Jongkind' +p143549 +sg25273 +S'etching' +p143550 +sg25275 +S'1862' +p143551 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d6a8.jpg' +p143552 +sg25267 +g27 +sa(dp143553 +g25268 +S'Saint James the Great' +p143554 +sg25270 +S'Hans Baldung Grien' +p143555 +sg25273 +S'woodcut' +p143556 +sg25275 +S'1519' +p143557 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7d3.jpg' +p143558 +sg25267 +g27 +sa(dp143559 +g25268 +S'The Nurse (La Nourrice)' +p143560 +sg25270 +S'Johan Barthold Jongkind' +p143561 +sg25273 +S'etching' +p143562 +sg25275 +S'1862' +p143563 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d6a7.jpg' +p143564 +sg25267 +g27 +sa(dp143565 +g25268 +S'The Towpath (Le Chemin de Halage)' +p143566 +sg25270 +S'Johan Barthold Jongkind' +p143567 +sg25273 +S'etching' +p143568 +sg25275 +S'1862' +p143569 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d6a6.jpg' +p143570 +sg25267 +g27 +sa(dp143571 +g25268 +S'The Moored Boat (La Barque amarree)' +p143572 +sg25270 +S'Johan Barthold Jongkind' +p143573 +sg25273 +S'etching' +p143574 +sg25275 +S'1862' +p143575 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d6a5.jpg' +p143576 +sg25267 +g27 +sa(dp143577 +g25268 +S'Two Boats at Sail (Les deux Barques a voile)' +p143578 +sg25270 +S'Johan Barthold Jongkind' +p143579 +sg25273 +S'etching' +p143580 +sg25275 +S'1862' +p143581 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d6a4.jpg' +p143582 +sg25267 +g27 +sa(dp143583 +g25273 +S'charcoal on laid Ingres paper' +p143584 +sg25267 +g27 +sg25275 +S'1910' +p143585 +sg25268 +S'Death, Mother and Child' +p143586 +sg25270 +S'K\xc3\xa4the Kollwitz' +p143587 +sa(dp143588 +g25268 +S'The Adoration of the Magi' +p143589 +sg25270 +S'Lucas van Leyden' +p143590 +sg25273 +S', c. 1515' +p143591 +sg25275 +S'\n' +p143592 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d010.jpg' +p143593 +sg25267 +g27 +sa(dp143594 +g25268 +S'Sleeping Shepherdess (Schlafende Hirtin)' +p143595 +sg25270 +S'Franz Marc' +p143596 +sg25273 +S'woodcut' +p143597 +sg25275 +S'1912' +p143598 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b727.jpg' +p143599 +sg25267 +g27 +sa(dp143600 +g25268 +S'Ambroise Vollard III' +p143601 +sg25270 +S'Pablo Picasso' +p143602 +sg25273 +S'etching and aquatint [printed in 1939 by Roger Lacouriere]' +p143603 +sg25275 +S'c. 1937' +p143604 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee91.jpg' +p143605 +sg25267 +g27 +sa(dp143606 +g25268 +S'The Book of Light' +p143607 +sg25270 +S'Odilon Redon' +p143608 +sg25273 +S'charcoal on tan paper' +p143609 +sg25275 +S'1893' +p143610 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00021/a0002186.jpg' +p143611 +sg25267 +g27 +sa(dp143612 +g25268 +S'Landscape with a Coach' +p143613 +sg25270 +S'Philips Koninck' +p143614 +sg25273 +S'etching and drypoint' +p143615 +sg25275 +S'unknown date\n' +p143616 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d24c.jpg' +p143617 +sg25267 +g27 +sa(dp143618 +g25268 +S'Saint Andrew' +p143619 +sg25270 +S'Hans Baldung Grien' +p143620 +sg25273 +S'woodcut' +p143621 +sg25275 +S'1519' +p143622 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7d1.jpg' +p143623 +sg25267 +g27 +sa(dp143624 +g25268 +S'Landscape with a Cottage and a Large Tree' +p143625 +sg25270 +S'Rembrandt van Rijn' +p143626 +sg25273 +S'etching' +p143627 +sg25275 +S'1641' +p143628 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d551.jpg' +p143629 +sg25267 +g27 +sa(dp143630 +g25268 +S"Allegorie sur l'Erection de la Statue de Louis XV (Allegory on the Establishment of a" +p143631 +sg25270 +S'Gabriel de Saint-Aubin' +p143632 +sg25273 +S', c. 1763' +p143633 +sg25275 +S'\n' +p143634 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000968f.jpg' +p143635 +sg25267 +g27 +sa(dp143636 +g25273 +S'etching' +p143637 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143638 +sg25268 +S'Young Soldier with Philosopher, and Seated Woman' +p143639 +sg25270 +S'Giovanni Battista Tiepolo' +p143640 +sa(dp143641 +g25273 +S'bound volume with 34 etchings' +p143642 +sg25267 +g27 +sg25275 +S'1737-1756' +p143643 +sg25268 +S'Tiepolo Etchings (volume I)' +p143644 +sg25270 +S'Giovanni Battista Tiepolo' +p143645 +sa(dp143646 +g25273 +S'etching' +p143647 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143648 +sg25268 +S'Woman, Satyr Child and Goat in a Landscape' +p143649 +sg25270 +S'Giovanni Battista Tiepolo' +p143650 +sa(dp143651 +g25273 +S'etching' +p143652 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143653 +sg25268 +S'Death Giving Audience' +p143654 +sg25270 +S'Giovanni Battista Tiepolo' +p143655 +sa(dp143656 +g25273 +S'etching' +p143657 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143658 +sg25268 +S'Women and Men Regarding a Burning Pyre of Bones' +p143659 +sg25270 +S'Giovanni Battista Tiepolo' +p143660 +sa(dp143661 +g25273 +S'etching' +p143662 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143663 +sg25268 +S'Soldier Seated on a Tomb, with Surrounding Figures' +p143664 +sg25270 +S'Giovanni Battista Tiepolo' +p143665 +sa(dp143666 +g25273 +S'etching' +p143667 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143668 +sg25268 +S'Standing Woman and Seated Men before an Obelisk' +p143669 +sg25270 +S'Giovanni Battista Tiepolo' +p143670 +sa(dp143671 +g25273 +S'etching' +p143672 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143673 +sg25268 +S'Standing Philosopher and Two Other Figures' +p143674 +sg25270 +S'Giovanni Battista Tiepolo' +p143675 +sa(dp143676 +g25268 +S'Saint Peter' +p143677 +sg25270 +S'Hans Baldung Grien' +p143678 +sg25273 +S'woodcut' +p143679 +sg25275 +S'1519' +p143680 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7c7.jpg' +p143681 +sg25267 +g27 +sa(dp143682 +g25273 +S'etching on laid paper' +p143683 +sg25267 +g27 +sg25275 +S'1740/1743' +p143684 +sg25268 +S'Seated Youth Leaning against an Urn' +p143685 +sg25270 +S'Giovanni Battista Tiepolo' +p143686 +sa(dp143687 +g25273 +S'etching' +p143688 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143689 +sg25268 +S'Soldier with Horse and Attendant' +p143690 +sg25270 +S'Giovanni Battista Tiepolo' +p143691 +sa(dp143692 +g25273 +S'etching' +p143693 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143694 +sg25268 +S'Three Soldiers and a Youth' +p143695 +sg25270 +S'Giovanni Battista Tiepolo' +p143696 +sa(dp143697 +g25273 +S'etching, with the hair of Joseph and the Child, the staff, and some drapery reworked in pen and brown ink' +p143698 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143699 +sg25268 +S'Saint Joseph Holding the Infant Christ' +p143700 +sg25270 +S'Giovanni Battista Tiepolo' +p143701 +sa(dp143702 +g25273 +S'etching' +p143703 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143704 +sg25268 +S'Title Page (Unlettered)' +p143705 +sg25270 +S'Giovanni Battista Tiepolo' +p143706 +sa(dp143707 +g25273 +S'etching, with left side of the altar, the owl, andthe left knee and forefinger of seated figure rew orked in pen and brown ink' +p143708 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143709 +sg25268 +S'Seated Magician with Other Figures beside an Altar' +p143710 +sg25270 +S'Giovanni Battista Tiepolo' +p143711 +sa(dp143712 +g25273 +S'etching, with hip line of foremost figure reworkedin pen and brown ink' +p143713 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143714 +sg25268 +S'A Bacchante with Satyr and Fauness' +p143715 +sg25270 +S'Giovanni Battista Tiepolo' +p143716 +sa(dp143717 +g25273 +S'etching, with hair and left arm of boy, and hair and fingers of bearded sage reworked in pen and brown ink' +p143718 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143719 +sg25268 +S'Two Philosophers and a Youth' +p143720 +sg25270 +S'Giovanni Battista Tiepolo' +p143721 +sa(dp143722 +g25273 +S'etching, reworked with pen and brown ink' +p143723 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143724 +sg25268 +S'Two Figures Attentive to Punchinello, with Others' +p143725 +sg25270 +S'Giovanni Battista Tiepolo' +p143726 +sa(dp143727 +g25273 +S'etching, reworked with pen and brown ink' +p143728 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143729 +sg25268 +S'Woman with Child and Kneeling Youth' +p143730 +sg25270 +S'Giovanni Battista Tiepolo' +p143731 +sa(dp143732 +g25268 +S'Saint Peter' +p143733 +sg25270 +S'Marco Zoppo' +p143734 +sg25273 +S'tempera on panel' +p143735 +sg25275 +S'c. 1468' +p143736 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007ca.jpg' +p143737 +sg25267 +g27 +sa(dp143738 +g25268 +S'Christ' +p143739 +sg25270 +S'Hans Baldung Grien' +p143740 +sg25273 +S'woodcut' +p143741 +sg25275 +S'1519' +p143742 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7ca.jpg' +p143743 +sg25267 +g27 +sa(dp143744 +g25273 +S'etching' +p143745 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143746 +sg25268 +S'Magician and Other Figures beside an Altar with Skull and Bones' +p143747 +sg25270 +S'Giovanni Battista Tiepolo' +p143748 +sa(dp143749 +g25273 +S'etching' +p143750 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143751 +sg25268 +S'Figures Regarding an Effigy of Punchinello' +p143752 +sg25270 +S'Giovanni Battista Tiepolo' +p143753 +sa(dp143754 +g25273 +S'etching, with figure at the right of the magician reworked in pen and brown ink' +p143755 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143756 +sg25268 +S"Magician with Two Other Principal Figures Regarding a Burning Pyre with a Man's Head" +p143757 +sg25270 +S'Giovanni Battista Tiepolo' +p143758 +sa(dp143759 +g25273 +S'etching, with seated boy reworked in pen and brownink' +p143760 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143761 +sg25268 +S'Seated Magician with Monkey, Standing Youth, and Ox' +p143762 +sg25270 +S'Giovanni Battista Tiepolo' +p143763 +sa(dp143764 +g25273 +S'etching, with drapery of boy and back of seated figure reworked in pen and brown ink' +p143765 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143766 +sg25268 +S'Seated Woman with Torch and Men Standing before a Burning Altar' +p143767 +sg25270 +S'Giovanni Battista Tiepolo' +p143768 +sa(dp143769 +g25273 +S'etching, with hair and left shoulder of the foremost figure reworked in pen and brown ink with whiteopaque wash' +p143770 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143771 +sg25268 +S'Youth, Sage, and Attendant with Horse' +p143772 +sg25270 +S'Giovanni Battista Tiepolo' +p143773 +sa(dp143774 +g25273 +S'etching, reworked with pen and brown ink, and opaque white and gray wash' +p143775 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143776 +sg25268 +S'Magician and Other Figures before a Burning Altar with Skull and Bones' +p143777 +sg25270 +S'Giovanni Battista Tiepolo' +p143778 +sa(dp143779 +g25273 +S'etching' +p143780 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143781 +sg25268 +S'Woman, Child, and Man, with Ox in a Landscape' +p143782 +sg25270 +S'Giovanni Battista Tiepolo' +p143783 +sa(dp143784 +g25273 +S'etching, with hair and sleeve of seated boy reworked in pen and brown ink' +p143785 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143786 +sg25268 +S'Two Seated Magicians and Two Youths' +p143787 +sg25270 +S'Giovanni Battista Tiepolo' +p143788 +sa(dp143789 +g25273 +S'etching, with standing figure reworked in pen and brown ink' +p143790 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143791 +sg25268 +S'Seated Magician Regarding Animal Skulls, and Other Figures' +p143792 +sg25270 +S'Giovanni Battista Tiepolo' +p143793 +sa(dp143794 +g25268 +S'The Bewitched Groom' +p143795 +sg25270 +S'Hans Baldung Grien' +p143796 +sg25273 +S'woodcut' +p143797 +sg25275 +S'1544' +p143798 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b096.jpg' +p143799 +sg25267 +g27 +sa(dp143800 +g25268 +S'Seated Woman and Standing Man Surrounded by Other Figures and Paraphernalia' +p143801 +sg25270 +S'Giovanni Battista Tiepolo' +p143802 +sg25273 +S'etching, with pen and brown ink added to tree trunk behind foremost seated woman' +p143803 +sg25275 +S'unknown date\n' +p143804 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00020/a000202f.jpg' +p143805 +sg25267 +g27 +sa(dp143806 +g25273 +S'etching' +p143807 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143808 +sg25268 +S'Seated Man and Two Magicians' +p143809 +sg25270 +S'Giovanni Battista Tiepolo' +p143810 +sa(dp143811 +g25273 +S'etching' +p143812 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143813 +sg25268 +S'Satyrs with Obelisk at Left' +p143814 +sg25270 +S'Giovanni Battista Tiepolo' +p143815 +sa(dp143816 +g25273 +S'etching' +p143817 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143818 +sg25268 +S'Satyr Family' +p143819 +sg25270 +S'Giovanni Battista Tiepolo' +p143820 +sa(dp143821 +g25273 +S'etching, with fingers and left sleeve of bearded figure reworked in pen and brown ink' +p143822 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143823 +sg25268 +S'Two Turbaned Magicians and a Boy' +p143824 +sg25270 +S'Giovanni Battista Tiepolo' +p143825 +sa(dp143826 +g25273 +S'etching' +p143827 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143828 +sg25268 +S'Magician and Others Regarding a Serpent' +p143829 +sg25270 +S'Giovanni Battista Tiepolo' +p143830 +sa(dp143831 +g25273 +S'etching, reworked with pen and brown ink' +p143832 +sg25267 +g27 +sg25275 +S'unknown date\n' +p143833 +sg25268 +S'Philosopher Seated, with Globe, Book, and Compass' +p143834 +sg25270 +S'Giovanni Battista Tiepolo' +p143835 +sa(dp143836 +g25268 +S'Title Page' +p143837 +sg25270 +S'Giovanni Domenico Tiepolo' +p143838 +sg25273 +S'etching' +p143839 +sg25275 +S'published 1749' +p143840 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000fa4.jpg' +p143841 +sg25267 +g27 +sa(dp143842 +g25273 +S'bound volume with 51 etchings' +p143843 +sg25267 +g27 +sg25275 +S'1749/1753' +p143844 +sg25268 +S'Tiepolo Etchings (volume II)' +p143845 +sg25270 +S'Giovanni Domenico Tiepolo' +p143846 +sa(dp143847 +g25273 +S'etching' +p143848 +sg25267 +g27 +sg25275 +S'published 1749' +p143849 +sg25268 +S'Dedication Page' +p143850 +sg25270 +S'Giovanni Domenico Tiepolo' +p143851 +sa(dp143852 +g25268 +S'Adam and Eve with Serpent' +p143853 +sg25270 +S'Hans Baldung Grien' +p143854 +sg25273 +S'woodcut' +p143855 +sg25275 +S'1514' +p143856 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7d9.jpg' +p143857 +sg25267 +g27 +sa(dp143858 +g25273 +S'etching' +p143859 +sg25267 +g27 +sg25275 +S'published 1749' +p143860 +sg25268 +S'Stazione I: Gesu condannato a morte (First Station: Jesus is Condemned to Death)' +p143861 +sg25270 +S'Giovanni Domenico Tiepolo' +p143862 +sa(dp143863 +g25273 +S'etching' +p143864 +sg25267 +g27 +sg25275 +S'published 1749' +p143865 +sg25268 +S'Stazione II: Riceve la croce su le spalle (Second Station: Jesus Receives the Cross on His Shoulders)' +p143866 +sg25270 +S'Giovanni Domenico Tiepolo' +p143867 +sa(dp143868 +g25273 +S'etching' +p143869 +sg25267 +g27 +sg25275 +S'published 1749' +p143870 +sg25268 +S'Stazione III: Cade sotto la croce la prima volta (Third Station: Jesus Falls Under the Cross for the First Time)' +p143871 +sg25270 +S'Giovanni Domenico Tiepolo' +p143872 +sa(dp143873 +g25273 +S'etching' +p143874 +sg25267 +g27 +sg25275 +S'published 1749' +p143875 +sg25268 +S'Stazione IV: Incontra la sua SSma. Madre (Fourth Station: Jesus Meets His Most Holy Mother)' +p143876 +sg25270 +S'Giovanni Domenico Tiepolo' +p143877 +sa(dp143878 +g25273 +S'etching' +p143879 +sg25267 +g27 +sg25275 +S'published 1749' +p143880 +sg25268 +S'Stazione V: Viene Aiutato dal Cireneo a portar la Croce (Fifth Station: Jesus is Helped by Simon of Cyrene to Carry the Cross)' +p143881 +sg25270 +S'Giovanni Domenico Tiepolo' +p143882 +sa(dp143883 +g25273 +S'etching' +p143884 +sg25267 +g27 +sg25275 +S'published 1749' +p143885 +sg25268 +S"Stazione VI: Gesu asciugato da Sta. Veronica (Sixth Station: Jesus' Face is Wiped by Saint Veronica)" +p143886 +sg25270 +S'Giovanni Domenico Tiepolo' +p143887 +sa(dp143888 +g25273 +S'etching' +p143889 +sg25267 +g27 +sg25275 +S'published 1749' +p143890 +sg25268 +S'Stazione VII: Cade sotto la croce la seconda volta (Seventh Station: Jesus Falls Under the Cross for the Second Time)' +p143891 +sg25270 +S'Giovanni Domenico Tiepolo' +p143892 +sa(dp143893 +g25273 +S'etching' +p143894 +sg25267 +g27 +sg25275 +S'published 1749' +p143895 +sg25268 +S'Stazione VIII: Consola le donne piagenti (Eighth Station: Jesus Consoles the Weeping Women)' +p143896 +sg25270 +S'Giovanni Domenico Tiepolo' +p143897 +sa(dp143898 +g25273 +S'etching' +p143899 +sg25267 +g27 +sg25275 +S'published 1749' +p143900 +sg25268 +S'Stazione IX: Cade sotto la croce la terza volta (Ninth Station: Jesus Falls Under theCross for the Third Time)' +p143901 +sg25270 +S'Giovanni Domenico Tiepolo' +p143902 +sa(dp143903 +g25273 +S'etching' +p143904 +sg25267 +g27 +sg25275 +S'published 1749' +p143905 +sg25268 +S'Stazione X: Gesu spogliato, ed abbeverato confele (Tenth Station: Jesus is Stripped of His Garments)' +p143906 +sg25270 +S'Giovanni Domenico Tiepolo' +p143907 +sa(dp143908 +g25268 +S'Adam and Eve' +p143909 +sg25270 +S'Hans Baldung Grien' +p143910 +sg25273 +S'woodcut' +p143911 +sg25275 +S'1519' +p143912 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b099.jpg' +p143913 +sg25267 +g27 +sa(dp143914 +g25273 +S'etching' +p143915 +sg25267 +g27 +sg25275 +S'published 1749' +p143916 +sg25268 +S'Stazione XI: Gesu inchiodato in Croce (Eleventh Station: Jesus is Nailed to the Cross' +p143917 +sg25270 +S'Giovanni Domenico Tiepolo' +p143918 +sa(dp143919 +g25273 +S'etching' +p143920 +sg25267 +g27 +sg25275 +S'published 1749' +p143921 +sg25268 +S'Stazione XII: Sul legno infame sta... (Twelfth Station: The Crucifixion)' +p143922 +sg25270 +S'Giovanni Domenico Tiepolo' +p143923 +sa(dp143924 +g25273 +S'etching' +p143925 +sg25267 +g27 +sg25275 +S'published 1749' +p143926 +sg25268 +S'Stazione XIII: Morto Gesu, vien deposito dalla croce (Thirteenth Station: The Deposition)' +p143927 +sg25270 +S'Giovanni Domenico Tiepolo' +p143928 +sa(dp143929 +g25273 +S'etching' +p143930 +sg25267 +g27 +sg25275 +S'published 1749' +p143931 +sg25268 +S'Stazione Ultima (Fourteenth Station: The Entombment)' +p143932 +sg25270 +S'Giovanni Domenico Tiepolo' +p143933 +sa(dp143934 +g25273 +S'etching' +p143935 +sg25267 +g27 +sg25275 +S'published 1753' +p143936 +sg25268 +S'Dedication Page' +p143937 +sg25270 +S'Giovanni Domenico Tiepolo' +p143938 +sa(dp143939 +g25273 +S'etching' +p143940 +sg25267 +g27 +sg25275 +S'published 1753' +p143941 +sg25268 +S'Arms of Karl Philip von Greiffenklau, Prince-Bishop of Wurzburg' +p143942 +sg25270 +S'Giovanni Domenico Tiepolo' +p143943 +sa(dp143944 +g25273 +S'etching' +p143945 +sg25267 +g27 +sg25275 +S'published 1753' +p143946 +sg25268 +S'Title Page' +p143947 +sg25270 +S'Giovanni Domenico Tiepolo' +p143948 +sa(dp143949 +g25273 +S'etching' +p143950 +sg25267 +g27 +sg25275 +S'published 1753' +p143951 +sg25268 +S"Joseph Relays to Mary God's Command to Flee" +p143952 +sg25270 +S'Giovanni Domenico Tiepolo' +p143953 +sa(dp143954 +g25268 +S'Joseph and Mary Prepare to Leave' +p143955 +sg25270 +S'Giovanni Domenico Tiepolo' +p143956 +sg25273 +S'etching [proof]' +p143957 +sg25275 +S'published 1753' +p143958 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000fa5.jpg' +p143959 +sg25267 +g27 +sa(dp143960 +g25268 +S'Joseph and Mary Prepare to Leave' +p143961 +sg25270 +S'Giovanni Domenico Tiepolo' +p143962 +sg25273 +S'etching' +p143963 +sg25275 +S'published 1753' +p143964 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000fa6.jpg' +p143965 +sg25267 +g27 +sa(dp143966 +g25268 +S'Standing Figure with Extinguished Torches' +p143967 +sg25270 +S'Ernst Barlach' +p143968 +sg25273 +S'charcoal on green-gray paper' +p143969 +sg25275 +S'1922' +p143970 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000701b.jpg' +p143971 +sg25267 +g27 +sa(dp143972 +g25273 +S'etching' +p143973 +sg25267 +g27 +sg25275 +S'published 1753' +p143974 +sg25268 +S'Joseph Kneels with the Child before Mary on the Donkey' +p143975 +sg25270 +S'Giovanni Domenico Tiepolo' +p143976 +sa(dp143977 +g25273 +S'etching [proof]' +p143978 +sg25267 +g27 +sg25275 +S'published 1753' +p143979 +sg25268 +S'The Holy Family Passes Under a City Arch' +p143980 +sg25270 +S'Giovanni Domenico Tiepolo' +p143981 +sa(dp143982 +g25273 +S'etching' +p143983 +sg25267 +g27 +sg25275 +S'published 1753' +p143984 +sg25268 +S'The Holy Family Passes Under a City Arch' +p143985 +sg25270 +S'Giovanni Domenico Tiepolo' +p143986 +sa(dp143987 +g25273 +S'etching' +p143988 +sg25267 +g27 +sg25275 +S'published 1753' +p143989 +sg25268 +S'The Flight with the Holy Family at the Right' +p143990 +sg25270 +S'Giovanni Domenico Tiepolo' +p143991 +sa(dp143992 +g25273 +S'etching [proof]' +p143993 +sg25267 +g27 +sg25275 +S'published 1753' +p143994 +sg25268 +S'Joseph, Standing, Adores the Child' +p143995 +sg25270 +S'Giovanni Domenico Tiepolo' +p143996 +sa(dp143997 +g25273 +S'etching' +p143998 +sg25267 +g27 +sg25275 +S'published 1753' +p143999 +sg25268 +S'Joseph, Standing, Adores the Child' +p144000 +sg25270 +S'Giovanni Domenico Tiepolo' +p144001 +sa(dp144002 +g25273 +S'etching [proof]' +p144003 +sg25267 +g27 +sg25275 +S'published 1753' +p144004 +sg25268 +S'The Flight with the Holy Family at the Left' +p144005 +sg25270 +S'Giovanni Domenico Tiepolo' +p144006 +sa(dp144007 +g25273 +S'etching' +p144008 +sg25267 +g27 +sg25275 +S'published 1753' +p144009 +sg25268 +S'The Flight with the Holy Family at the Left' +p144010 +sg25270 +S'Giovanni Domenico Tiepolo' +p144011 +sa(dp144012 +g25273 +S'etching [proof]' +p144013 +sg25267 +g27 +sg25275 +S'published 1753' +p144014 +sg25268 +S'The Flight, Holy Family at the Right, Joseph Looking to the Left' +p144015 +sg25270 +S'Giovanni Domenico Tiepolo' +p144016 +sa(dp144017 +g25273 +S'etching' +p144018 +sg25267 +g27 +sg25275 +S'published 1753' +p144019 +sg25268 +S'The Flight, Holy Family Walking with Angel' +p144020 +sg25270 +S'Giovanni Domenico Tiepolo' +p144021 +sa(dp144022 +g25268 +S'Christ in Gethsemane' +p144023 +sg25270 +S'Ernst Barlach' +p144024 +sg25273 +S'woodcut' +p144025 +sg25275 +S'1919' +p144026 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b618.jpg' +p144027 +sg25267 +g27 +sa(dp144028 +g25273 +S'etching' +p144029 +sg25267 +g27 +sg25275 +S'1750' +p144030 +sg25268 +S'The Rest on the Flight, with Adoring Angels' +p144031 +sg25270 +S'Giovanni Domenico Tiepolo' +p144032 +sa(dp144033 +g25273 +S'etching' +p144034 +sg25267 +g27 +sg25275 +S'published 1753' +p144035 +sg25268 +S'The Holy Family at the Bank of the River' +p144036 +sg25270 +S'Giovanni Domenico Tiepolo' +p144037 +sa(dp144038 +g25273 +S'etching' +p144039 +sg25267 +g27 +sg25275 +S'published 1753' +p144040 +sg25268 +S'The Holy Family Preparing to Embark' +p144041 +sg25270 +S'Giovanni Domenico Tiepolo' +p144042 +sa(dp144043 +g25273 +S'etching' +p144044 +sg25267 +g27 +sg25275 +S'published 1753' +p144045 +sg25268 +S'The Madonna, Child, and Angels Entering the Boat' +p144046 +sg25270 +S'Giovanni Domenico Tiepolo' +p144047 +sa(dp144048 +g25273 +S'etching' +p144049 +sg25267 +g27 +sg25275 +S'published 1753' +p144050 +sg25268 +S'The Holy Family Being Ferried Across the River' +p144051 +sg25270 +S'Giovanni Domenico Tiepolo' +p144052 +sa(dp144053 +g25273 +S'etching' +p144054 +sg25267 +g27 +sg25275 +S'published 1753' +p144055 +sg25268 +S'The Holy Family Disembarking' +p144056 +sg25270 +S'Giovanni Domenico Tiepolo' +p144057 +sa(dp144058 +g25268 +S'The Rest on the Flight with Joseph in Adoration' +p144059 +sg25270 +S'Giovanni Domenico Tiepolo' +p144060 +sg25273 +S'etching' +p144061 +sg25275 +S'1752' +p144062 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000fa7.jpg' +p144063 +sg25267 +g27 +sa(dp144064 +g25273 +S'etching' +p144065 +sg25267 +g27 +sg25275 +S'published 1753' +p144066 +sg25268 +S'The Flight with Obelisk at the Left' +p144067 +sg25270 +S'Giovanni Domenico Tiepolo' +p144068 +sa(dp144069 +g25273 +S'etching' +p144070 +sg25267 +g27 +sg25275 +S'1753' +p144071 +sg25268 +S'The Flight with Joseph in the Foreground' +p144072 +sg25270 +S'Giovanni Domenico Tiepolo' +p144073 +sa(dp144074 +g25273 +S'etching' +p144075 +sg25267 +g27 +sg25275 +S'published 1753' +p144076 +sg25268 +S'The Episode of the Falling Idol' +p144077 +sg25270 +S'Giovanni Domenico Tiepolo' +p144078 +sa(dp144079 +g25268 +S'Study of a Tiger' +p144080 +sg25270 +S'Antoine-Louis Barye' +p144081 +sg25273 +g27 +sg25275 +S'unknown date\n' +p144082 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000975c.jpg' +p144083 +sg25267 +g27 +sa(dp144084 +g25273 +S'etching' +p144085 +sg25267 +g27 +sg25275 +S'published 1753' +p144086 +sg25268 +S'The Rest on the Flight, with Holy Family Under a Tree' +p144087 +sg25270 +S'Giovanni Domenico Tiepolo' +p144088 +sa(dp144089 +g25273 +S'etching [proof]' +p144090 +sg25267 +g27 +sg25275 +S'published 1753' +p144091 +sg25268 +S'The Flight, Joseph at Right and Mary and Angel at Left' +p144092 +sg25270 +S'Giovanni Domenico Tiepolo' +p144093 +sa(dp144094 +g25273 +S'etching' +p144095 +sg25267 +g27 +sg25275 +S'published 1753' +p144096 +sg25268 +S'The Flight, Joseph at Right and Mary and Angel at Left' +p144097 +sg25270 +S'Giovanni Domenico Tiepolo' +p144098 +sa(dp144099 +g25273 +S'etching [proof]' +p144100 +sg25267 +g27 +sg25275 +S'published 1753' +p144101 +sg25268 +S'The Madonna and Child at Left, with a File of Angels' +p144102 +sg25270 +S'Giovanni Domenico Tiepolo' +p144103 +sa(dp144104 +g25273 +S'etching' +p144105 +sg25267 +g27 +sg25275 +S'published 1753' +p144106 +sg25268 +S'The Madonna and Child at Left, with a File of Angels' +p144107 +sg25270 +S'Giovanni Domenico Tiepolo' +p144108 +sa(dp144109 +g25273 +S'etching [proof]' +p144110 +sg25267 +g27 +sg25275 +S'published 1753' +p144111 +sg25268 +S'The Flight, with Madonna at Right Supported by Angels' +p144112 +sg25270 +S'Giovanni Domenico Tiepolo' +p144113 +sa(dp144114 +g25273 +S'etching' +p144115 +sg25267 +g27 +sg25275 +S'published 1753' +p144116 +sg25268 +S'The Flight, with Madonna at Right Supported by Angels' +p144117 +sg25270 +S'Giovanni Domenico Tiepolo' +p144118 +sa(dp144119 +g25273 +S'etching' +p144120 +sg25267 +g27 +sg25275 +S'published 1753' +p144121 +sg25268 +S'The Holy Family Arriving at a City Gate' +p144122 +sg25270 +S'Giovanni Domenico Tiepolo' +p144123 +sa(dp144124 +g25273 +S'etching' +p144125 +sg25267 +g27 +sg25275 +S'published 1753' +p144126 +sg25268 +S'The Flight, Holy Family at the Right, Joseph Looking to the Left' +p144127 +sg25270 +S'Giovanni Domenico Tiepolo' +p144128 +sa(dp144129 +g25268 +S'Dupas Deposition (D\xc3\xa9position Dupas)' +p144130 +sg25270 +S'Henri de Toulouse-Lautrec' +p144131 +sg25273 +S'lithograph' +p144132 +sg25275 +S'1896' +p144133 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a031.jpg' +p144134 +sg25267 +g27 +sa(dp144135 +g25268 +S'The Young White King between the Queen and Princess of the Feuereisen' +p144136 +sg25270 +S'Leonhard Beck' +p144137 +sg25273 +S'woodcut' +p144138 +sg25275 +S'1514/1516' +p144139 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000ae8c.jpg' +p144140 +sg25267 +g27 +sa(dp144141 +g25268 +S'Ribot Deposition (D\xc3\xa9position Ribot)' +p144142 +sg25270 +S'Henri de Toulouse-Lautrec' +p144143 +sg25273 +S'lithograph' +p144144 +sg25275 +S'1896' +p144145 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a02d.jpg' +p144146 +sg25267 +g27 +sa(dp144147 +g25268 +S'Soudais Deposition (D\xc3\xa9position Soudais)' +p144148 +sg25270 +S'Henri de Toulouse-Lautrec' +p144149 +sg25273 +S'lithograph' +p144150 +sg25275 +S'1896' +p144151 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a02e.jpg' +p144152 +sg25267 +g27 +sa(dp144153 +g25268 +S'Clifton from Kingsweston' +p144154 +sg25270 +S'James Bulwer' +p144155 +sg25273 +S'watercolor over graphite' +p144156 +sg25275 +S'1830' +p144157 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c6d.jpg' +p144158 +sg25267 +g27 +sa(dp144159 +g25268 +S'High Street, Bristol' +p144160 +sg25270 +S'James Johnson' +p144161 +sg25273 +S'watercolor and graphite on wove paper' +p144162 +sg25275 +S'1821' +p144163 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cb1.jpg' +p144164 +sg25267 +g27 +sa(dp144165 +g25268 +S'A Mountainous Landscape' +p144166 +sg25270 +S'British 19th Century' +p144167 +sg25273 +S'image: 22.5 x 32 cm (8 7/8 x 12 5/8 in.)\r\nsheet: 23.5 x 33.8 cm (9 1/4 x 13 5/16 in.)' +p144168 +sg25275 +S'\npen and black ink with gray wash over graphite on wove paper' +p144169 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c59.jpg' +p144170 +sg25267 +g27 +sa(dp144171 +g25268 +S'Sailboat on a Beach' +p144172 +sg25270 +S'British 19th Century' +p144173 +sg25273 +S'overall: 13.5 x 21.7 cm (5 5/16 x 8 9/16 in.)' +p144174 +sg25275 +S'\nbrown wash and graphite' +p144175 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006be0.jpg' +p144176 +sg25267 +g27 +sa(dp144177 +g25268 +S'Carrigogunniel' +p144178 +sg25270 +S'James Bulwer' +p144179 +sg25273 +S'watercolor and graphite' +p144180 +sg25275 +S'1830' +p144181 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c6a.jpg' +p144182 +sg25267 +g27 +sa(dp144183 +g25268 +S'Landscape with Buildings and Winding Stream' +p144184 +sg25270 +S'James Bulwer' +p144185 +sg25273 +S'watercolor over graphite' +p144186 +sg25275 +S'unknown date\n' +p144187 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c71.jpg' +p144188 +sg25267 +g27 +sa(dp144189 +g25268 +S'Landscape with Cattle' +p144190 +sg25270 +S'James Bulwer' +p144191 +sg25273 +S'watercolor over graphite' +p144192 +sg25275 +S'1830' +p144193 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c6f.jpg' +p144194 +sg25267 +g27 +sa(dp144195 +g25268 +S'Landscape with Church Steeple' +p144196 +sg25270 +S'James Bulwer' +p144197 +sg25273 +S'watercolor and graphite' +p144198 +sg25275 +S'1828' +p144199 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c6b.jpg' +p144200 +sg25267 +g27 +sa(dp144201 +g25268 +S'A King on a Throne, before him Four Men' +p144202 +sg25270 +S'Leonhard Beck' +p144203 +sg25273 +S'woodcut' +p144204 +sg25275 +S'1514/1516' +p144205 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b09f.jpg' +p144206 +sg25267 +g27 +sa(dp144207 +g25268 +S'Landscape by the Shore with Road in Foreground' +p144208 +sg25270 +S'James Bulwer' +p144209 +sg25273 +S'watercolor and graphite' +p144210 +sg25275 +S'unknown date\n' +p144211 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00069/a0006970.jpg' +p144212 +sg25267 +g27 +sa(dp144213 +g25268 +S'Landscape with Trees and Water' +p144214 +sg25270 +S'James Bulwer' +p144215 +sg25273 +S'watercolor and graphite' +p144216 +sg25275 +S'unknown date\n' +p144217 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c6e.jpg' +p144218 +sg25267 +g27 +sa(dp144219 +g25268 +S'Portland Castle' +p144220 +sg25270 +S'James Bulwer' +p144221 +sg25273 +S'watercolor and graphite' +p144222 +sg25275 +S'unknown date\n' +p144223 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c70.jpg' +p144224 +sg25267 +g27 +sa(dp144225 +g25268 +S'River Scene with Distant Castle' +p144226 +sg25270 +S'James Bulwer' +p144227 +sg25273 +S'watercolor and graphite' +p144228 +sg25275 +S'unknown date\n' +p144229 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c6c.jpg' +p144230 +sg25267 +g27 +sa(dp144231 +g25268 +S'Shore Scene with Sailboats' +p144232 +sg25270 +S'James Bulwer' +p144233 +sg25273 +S'watercolor and graphite' +p144234 +sg25275 +S'unknown date\n' +p144235 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c75.jpg' +p144236 +sg25267 +g27 +sa(dp144237 +g25268 +S'Clifton Suspension Bridge near Bristol' +p144238 +sg25270 +S'James Bulwer' +p144239 +sg25273 +S', unknown date' +p144240 +sg25275 +S'\n' +p144241 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c73.jpg' +p144242 +sg25267 +g27 +sa(dp144243 +g25268 +S'Hunworth Church' +p144244 +sg25270 +S'James Bulwer' +p144245 +sg25273 +S', unknown date' +p144246 +sg25275 +S'\n' +p144247 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00069/a000696f.jpg' +p144248 +sg25267 +g27 +sa(dp144249 +g25268 +S'Seascape with Lighthouse' +p144250 +sg25270 +S'James Bulwer' +p144251 +sg25273 +S', unknown date' +p144252 +sg25275 +S'\n' +p144253 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bef.jpg' +p144254 +sg25267 +g27 +sa(dp144255 +g25268 +S'Two Sketches of Trees' +p144256 +sg25270 +S'James Bulwer' +p144257 +sg25273 +S', unknown date' +p144258 +sg25275 +S'\n' +p144259 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bf0.jpg' +p144260 +sg25267 +g27 +sa(dp144261 +g25268 +S'Castle Rheban on the River Barrow, Athy' +p144262 +sg25270 +S'James Bulwer' +p144263 +sg25273 +S', unknown date' +p144264 +sg25275 +S'\n' +p144265 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c74.jpg' +p144266 +sg25267 +g27 +sa(dp144267 +g25268 +S'Christ Disputing with the Doctors' +p144268 +sg25270 +S'Master HFE' +p144269 +sg25273 +S'engraving' +p144270 +sg25275 +S'unknown date\n' +p144271 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c840.jpg' +p144272 +sg25267 +g27 +sa(dp144273 +g25268 +S'On the Bure, near Aylsham, Norfolk' +p144274 +sg25270 +S'James Bulwer' +p144275 +sg25273 +S', unknown date' +p144276 +sg25275 +S'\n' +p144277 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c76.jpg' +p144278 +sg25267 +g27 +sa(dp144279 +g25268 +S"Shane's Castle, Tenants' Dinner" +p144280 +sg25270 +S'James Bulwer' +p144281 +sg25273 +S', unknown date' +p144282 +sg25275 +S'\n' +p144283 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c72.jpg' +p144284 +sg25267 +g27 +sa(dp144285 +g25268 +S'Fauldon, South Greenhoe, Norfolk' +p144286 +sg25270 +S'Hendrik Frans de Cort' +p144287 +sg25273 +S'graphite and brown wash on laid paper' +p144288 +sg25275 +S'probably 1794' +p144289 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072f3.jpg' +p144290 +sg25267 +g27 +sa(dp144291 +g25268 +S'Ruined Church' +p144292 +sg25270 +S'Hendrik Frans de Cort' +p144293 +sg25273 +S'graphite with gray and brown wash on laid paper' +p144294 +sg25275 +S'probably 1794' +p144295 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d0a.jpg' +p144296 +sg25267 +g27 +sa(dp144297 +g25268 +S'Boy Milking Cow' +p144298 +sg25270 +S'John Sell Cotman' +p144299 +sg25273 +S', unknown date' +p144300 +sg25275 +S'\n' +p144301 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c85.jpg' +p144302 +sg25267 +g27 +sa(dp144303 +g25268 +S'Cottage with Pigs in the Foreground' +p144304 +sg25270 +S'John Sell Cotman' +p144305 +sg25273 +S', unknown date' +p144306 +sg25275 +S'\n' +p144307 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c81.jpg' +p144308 +sg25267 +g27 +sa(dp144309 +g25268 +S'Gorge with Tree Stumps' +p144310 +sg25270 +S'John Sell Cotman' +p144311 +sg25273 +S'graphite with brown and gray wash and white heightening on gray wove paper' +p144312 +sg25275 +S'unknown date\n' +p144313 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bff.jpg' +p144314 +sg25267 +g27 +sa(dp144315 +g25268 +S'Landscape Sketch with Bridge and Castle' +p144316 +sg25270 +S'John Sell Cotman' +p144317 +sg25273 +S'graphite on wove paper' +p144318 +sg25275 +S'unknown date\n' +p144319 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c00.jpg' +p144320 +sg25267 +g27 +sa(dp144321 +g25268 +S'River with Bridge and Distant Castle' +p144322 +sg25270 +S'John Sell Cotman' +p144323 +sg25273 +S', c. 1802/1804' +p144324 +sg25275 +S'\n' +p144325 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c03.jpg' +p144326 +sg25267 +g27 +sa(dp144327 +g25273 +S'drypoint' +p144328 +sg25267 +g27 +sg25275 +S'1920' +p144329 +sg25268 +S'Reinhard Piper' +p144330 +sg25270 +S'Max Beckmann' +p144331 +sa(dp144332 +g25268 +S'Ruined Tomb Inscribed "A.M.G."' +p144333 +sg25270 +S'John Sell Cotman' +p144334 +sg25273 +S'graphite on tan paper' +p144335 +sg25275 +S'unknown date\n' +p144336 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c84.jpg' +p144337 +sg25267 +g27 +sa(dp144338 +g25268 +S'Sketch of Buildings with Cart and Horses in Foreground' +p144339 +sg25270 +S'John Sell Cotman' +p144340 +sg25273 +S', unknown date' +p144341 +sg25275 +S'\n' +p144342 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c04.jpg' +p144343 +sg25267 +g27 +sa(dp144344 +g25268 +S'Sketch of Ruined Church Interior with Chair' +p144345 +sg25270 +S'John Sell Cotman' +p144346 +sg25273 +S'graphite heightened with white on gray paper' +p144347 +sg25275 +S'unknown date\n' +p144348 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c82.jpg' +p144349 +sg25267 +g27 +sa(dp144350 +g25268 +S'Waterfall with Rocks' +p144351 +sg25270 +S'John Sell Cotman' +p144352 +sg25273 +S', unknown date' +p144353 +sg25275 +S'\n' +p144354 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c86.jpg' +p144355 +sg25267 +g27 +sa(dp144356 +g25268 +S'Eye Mill in Suffolk' +p144357 +sg25270 +S'John Sell Cotman' +p144358 +sg25273 +S', unknown date' +p144359 +sg25275 +S'\n' +p144360 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c80.jpg' +p144361 +sg25267 +g27 +sa(dp144362 +g25268 +S'Landscape with Hills and Water' +p144363 +sg25270 +S'John Sell Cotman' +p144364 +sg25273 +S', unknown date' +p144365 +sg25275 +S'\n' +p144366 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c83.jpg' +p144367 +sg25267 +g27 +sa(dp144368 +g25268 +S'Landscape with Trees' +p144369 +sg25270 +S'John Sell Cotman' +p144370 +sg25273 +S', unknown date' +p144371 +sg25275 +S'\n' +p144372 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c7f.jpg' +p144373 +sg25267 +g27 +sa(dp144374 +g25268 +S'A Dry Dock' +p144375 +sg25270 +S'Artist Information (' +p144376 +sg25273 +S'British, 1782 - 1842' +p144377 +sg25275 +S'(related artist)' +p144378 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c05.jpg' +p144379 +sg25267 +g27 +sa(dp144380 +g25268 +S'Landscape with Church' +p144381 +sg25270 +S'Artist Information (' +p144382 +sg25273 +S'British, 1782 - 1842' +p144383 +sg25275 +S'(related artist)' +p144384 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c06.jpg' +p144385 +sg25267 +g27 +sa(dp144386 +g25268 +S'Mountain Scene with Rocks' +p144387 +sg25270 +S'Artist Information (' +p144388 +sg25273 +S'British, 1782 - 1842' +p144389 +sg25275 +S'(related artist)' +p144390 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c07.jpg' +p144391 +sg25267 +g27 +sa(dp144392 +g25273 +S'drypoint' +p144393 +sg25267 +g27 +sg25275 +S'1920' +p144394 +sg25268 +S'Mr. Muller, I and the Barmaid (Herr M\xc3\xbcller, ich und die Bufettmamsell)' +p144395 +sg25270 +S'Max Beckmann' +p144396 +sa(dp144397 +g25268 +S'Street with Buildings' +p144398 +sg25270 +S'Robert Dixon' +p144399 +sg25273 +S', unknown date' +p144400 +sg25275 +S'\n' +p144401 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c94.jpg' +p144402 +sg25267 +g27 +sa(dp144403 +g25268 +S'Bridge Near Waters-Meet, Lynton, North Devon' +p144404 +sg25270 +S'British 19th Century' +p144405 +sg25273 +S'overall: 28 x 36.5 cm (11 x 14 3/8 in.)' +p144406 +sg25275 +S'\nwatercolor over graphite on cardboard' +p144407 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c58.jpg' +p144408 +sg25267 +g27 +sa(dp144409 +g25268 +S'Castle on a Hill' +p144410 +sg25270 +S'British 19th Century' +p144411 +sg25273 +S'overall: 16.7 x 25 cm (6 9/16 x 9 13/16 in.)' +p144412 +sg25275 +S'\nwatercolor over graphite on gray-green wove paper' +p144413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c5c.jpg' +p144414 +sg25267 +g27 +sa(dp144415 +g25268 +S'Landscape' +p144416 +sg25270 +S'British 19th Century' +p144417 +sg25273 +S'overall: 13 x 21.8 cm (5 1/8 x 8 9/16 in.)' +p144418 +sg25275 +S'\ngraphite on wove paper' +p144419 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006be1.jpg' +p144420 +sg25267 +g27 +sa(dp144421 +g25268 +S'Ragland' +p144422 +sg25270 +S'British 19th Century' +p144423 +sg25273 +S'overall: 26 x 35.6 cm (10 1/4 x 14 in.)' +p144424 +sg25275 +S'\ngraphite on wove paper' +p144425 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c57.jpg' +p144426 +sg25267 +g27 +sa(dp144427 +g25268 +S'Shore Scene with Boats in Choppy Water' +p144428 +sg25270 +S'British 19th Century' +p144429 +sg25273 +S'overall: 18.4 x 27 cm (7 1/4 x 10 5/8 in.)' +p144430 +sg25275 +S'\nwatercolor and graphite on wove paper' +p144431 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c5b.jpg' +p144432 +sg25267 +g27 +sa(dp144433 +g25268 +S'Tower Overlooking Water' +p144434 +sg25270 +S'British 19th Century' +p144435 +sg25273 +S'overall (approximate): 9.5 x 17.4 cm (3 3/4 x 6 7/8 in.)' +p144436 +sg25275 +S'\ngraphite with brown wash' +p144437 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006be2.jpg' +p144438 +sg25267 +g27 +sa(dp144439 +g25268 +S'The Mill' +p144440 +sg25270 +S'Artist Information (' +p144441 +sg25273 +S'Dutch, 1606 - 1669' +p144442 +sg25275 +S'(artist after)' +p144443 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006be7.jpg' +p144444 +sg25267 +g27 +sa(dp144445 +g25268 +S'The Bristol Riots: The Burning in the Street' +p144446 +sg25270 +S'John Skinner Prout' +p144447 +sg25273 +S'watercolor' +p144448 +sg25275 +S'unknown date\n' +p144449 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cc3.jpg' +p144450 +sg25267 +g27 +sa(dp144451 +g25273 +S'graphite with brown wash' +p144452 +sg25267 +g27 +sg25275 +S'unknown date\n' +p144453 +sg25268 +S'Landscape with Ruins' +p144454 +sg25270 +S'John Varley' +p144455 +sa(dp144456 +g25268 +S'Venus and Cupid' +p144457 +sg25270 +S'Artist Information (' +p144458 +sg25273 +S'(artist after)' +p144459 +sg25275 +S'\n' +p144460 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9f0.jpg' +p144461 +sg25267 +g27 +sa(dp144462 +g25268 +S'The Smiling Man' +p144463 +sg25270 +S'Artist Information (' +p144464 +sg25273 +g27 +sg25275 +S'(sculptor)' +p144465 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a000540e.jpg' +p144466 +sg25267 +g27 +sa(dp144467 +g25268 +S'Man in a Tall Hat' +p144468 +sg25270 +S'Artist Information (' +p144469 +sg25273 +g27 +sg25275 +S'(sculptor)' +p144470 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a000540f.jpg' +p144471 +sg25267 +g27 +sa(dp144472 +g25268 +S'Ratapoil' +p144473 +sg25270 +S'Honor\xc3\xa9 Daumier' +p144474 +sg25273 +S'bronze' +p144475 +sg25275 +S'model 1851, cast c. 1891' +p144476 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002aed.jpg' +p144477 +sg25267 +S"Viewed from any direction, the swaying, strutting Ratapoil is Daumier's brilliant stab at the political ambitions of Louis-Napoleon, who would proclaim himself emperor of France in 1852. Daumier strongly supported the nascent French democracy and used his art—both his drawn caricatures of Ratapoil that appeared in the satiric journal \n Daumier used a rough-modeled realism to detail the character of Ratapoil. With hat crumpled and smashed down over a bony skull, eye glaring, nose broken, mustache and beard pointed to a Satanic extreme, and outmoded frockcoat and trousers streaming over an emaciated torso, Ratapoil seems a mix of self-confident dandy and has-been thug. Sweeping diagonals invigorate the figure: Ratapoil's neck and jaw turn hard to one side, shoulders, chest, and right leg propel him forward as he arches his back in a dramatic curve, grasping his club behind him.\n Though less than 18 inches tall, \n " +p144478 +sa(dp144479 +g25268 +S'Hippolyte-Abraham Dubois' +p144480 +sg25270 +S'Honor\xc3\xa9 Daumier' +p144481 +sg25273 +S'bronze' +p144482 +sg25275 +S'model c. 1832/1835, cast 1929/1950' +p144483 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fae.jpg' +p144484 +sg25267 +g27 +sa(dp144485 +g25268 +S"Antoine-Maurice-Apollinaire, Comte D'Argout" +p144486 +sg25270 +S'Honor\xc3\xa9 Daumier' +p144487 +sg25273 +S'bronze' +p144488 +sg25275 +S'model c. 1832/1835, cast 1929/1950' +p144489 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001faf.jpg' +p144490 +sg25267 +g27 +sa(dp144491 +g25268 +S'Marthe-Camille Bachasson, Comte de Montalivet' +p144492 +sg25270 +S'Honor\xc3\xa9 Daumier' +p144493 +sg25273 +S'bronze' +p144494 +sg25275 +S'model c. 1832/1835, cast 1929/1950' +p144495 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fb0.jpg' +p144496 +sg25267 +g27 +sa(dp144497 +g25268 +S'Laurent Cunin, called Cunin-Gridaine' +p144498 +sg25270 +S'Honor\xc3\xa9 Daumier' +p144499 +sg25273 +S'bronze' +p144500 +sg25275 +S'model c. 1832/1835, cast 1929/1950' +p144501 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fb1.jpg' +p144502 +sg25267 +g27 +sa(dp144503 +g25268 +S'Jacques-Antoine-Adrien, Baron Delort' +p144504 +sg25270 +S'Honor\xc3\xa9 Daumier' +p144505 +sg25273 +S'bronze' +p144506 +sg25275 +S'model c. 1832/1835, cast 1929/1950' +p144507 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fb2.jpg' +p144508 +sg25267 +g27 +sa(dp144509 +g25268 +S'Charles-Guillaume Etienne' +p144510 +sg25270 +S'Honor\xc3\xa9 Daumier' +p144511 +sg25273 +S'bronze' +p144512 +sg25275 +S'model c. 1832/1835, cast 1929/1950' +p144513 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fb3.jpg' +p144514 +sg25267 +g27 +sa(dp144515 +g25268 +S'Auguste Gady' +p144516 +sg25270 +S'Honor\xc3\xa9 Daumier' +p144517 +sg25273 +S'bronze' +p144518 +sg25275 +S'model c. 1832/1835, cast 1929/1950' +p144519 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fad.jpg' +p144520 +sg25267 +g27 +sa(dp144521 +g25273 +S'lithograph' +p144522 +sg25267 +g27 +sg25275 +S'1938' +p144523 +sg25268 +S'Mary' +p144524 +sg25270 +S'Will Barnet' +p144525 +sa(dp144526 +g25268 +S'Fran\xc3\xa7ois-Pierre-Guillaume Guizot' +p144527 +sg25270 +S'Honor\xc3\xa9 Daumier' +p144528 +sg25273 +S'bronze' +p144529 +sg25275 +S'model c. 1832/1835, cast 1929/1950' +p144530 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fb8.jpg' +p144531 +sg25267 +g27 +sa(dp144532 +g25268 +S'Jean-Marie Harl\xc3\xa9, P\xc3\xa8re' +p144533 +sg25270 +S'Honor\xc3\xa9 Daumier' +p144534 +sg25273 +S'bronze' +p144535 +sg25275 +S'model c. 1832/1835, cast 1929/1950' +p144536 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fb9.jpg' +p144537 +sg25267 +g27 +sa(dp144538 +g25268 +S'Jacques Lef\xc3\xa8bvre' +p144539 +sg25270 +S'Honor\xc3\xa9 Daumier' +p144540 +sg25273 +S'bronze' +p144541 +sg25275 +S'model c. 1832/1835, cast 1929/1950' +p144542 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fba.jpg' +p144543 +sg25267 +g27 +sa(dp144544 +g25268 +S'Alexandre-Simon Pataille' +p144545 +sg25270 +S'Honor\xc3\xa9 Daumier' +p144546 +sg25273 +S'bronze' +p144547 +sg25275 +S'model c. 1832/1835, cast 1929/1950' +p144548 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fbc.jpg' +p144549 +sg25267 +g27 +sa(dp144550 +g25268 +S'Charles-L\xc3\xa9once-Victor, Duc de Broglie' +p144551 +sg25270 +S'Honor\xc3\xa9 Daumier' +p144552 +sg25273 +S'bronze' +p144553 +sg25275 +S'model c. 1832/1835, cast 1929/1950' +p144554 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001f/a0001fbb.jpg' +p144555 +sg25267 +g27 +sa(dp144556 +g25268 +S'The Rape of Proserpine' +p144557 +sg25270 +S'Joseph Mallord William Turner' +p144558 +sg25273 +S'oil on canvas' +p144559 +sg25275 +S'1839' +p144560 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f89.jpg' +p144561 +sg25267 +S'In classical mythology, Pluto, the god of the underworld, abducted the \r\n maiden Proserpine to make her his wife and the queen of Hades. Turner, in \r\n this entry from the 1839 Royal Academy exhibition, depicted the moment when \r\n Pluto’s fiery chariot erupts earthward, burning the meadow and terrifying \r\n Proserpine’s attendants. The setting, equally dramatic, is a fantasy based \r\n upon the hills, gorges, waterfalls, and ruins at Tivoli, an ancient village \r\n near Rome.\n ' +p144562 +sa(dp144563 +g25268 +S'Angler (Le pecheur a la ligne)' +p144564 +sg25270 +S'Alphonse Legros' +p144565 +sg25273 +S'etching and drypoint?' +p144566 +sg25275 +S'unknown date\n' +p144567 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b6d.jpg' +p144568 +sg25267 +g27 +sa(dp144569 +g25268 +S'Death and the Woodcutter, 2nd plate (Le mort et le bucheron)' +p144570 +sg25270 +S'Alphonse Legros' +p144571 +sg25273 +S'etching in bistre' +p144572 +sg25275 +S'unknown date\n' +p144573 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b32.jpg' +p144574 +sg25267 +g27 +sa(dp144575 +g25268 +S"Monks at Church (Les moines a l'eglise)" +p144576 +sg25270 +S'Alphonse Legros' +p144577 +sg25273 +S'etching and drypoint' +p144578 +sg25275 +S'unknown date\n' +p144579 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c2f.jpg' +p144580 +sg25267 +g27 +sa(dp144581 +g25268 +S'Landscape (Paysage)' +p144582 +sg25270 +S'Alphonse Legros' +p144583 +sg25273 +S'etching and drypoint' +p144584 +sg25275 +S'unknown date\n' +p144585 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c55.jpg' +p144586 +sg25267 +g27 +sa(dp144587 +g25273 +S'etching' +p144588 +sg25267 +g27 +sg25275 +S'1941' +p144589 +sg25268 +S'Peter and Mary' +p144590 +sg25270 +S'Will Barnet' +p144591 +sa(dp144592 +g25268 +S'Landscape (Paysage)' +p144593 +sg25270 +S'Alphonse Legros' +p144594 +sg25273 +S'etching, drypoint and aquatint' +p144595 +sg25275 +S'unknown date\n' +p144596 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c5c.jpg' +p144597 +sg25267 +g27 +sa(dp144598 +g25268 +S'Beggar (Un mendiant)' +p144599 +sg25270 +S'Alphonse Legros' +p144600 +sg25273 +S'drypoint' +p144601 +sg25275 +S'unknown date\n' +p144602 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009918.jpg' +p144603 +sg25267 +g27 +sa(dp144604 +g25268 +S'Peddler (Le colporteur)' +p144605 +sg25270 +S'Alphonse Legros' +p144606 +sg25273 +S'drypoint and etching?' +p144607 +sg25275 +S'unknown date\n' +p144608 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bc4.jpg' +p144609 +sg25267 +g27 +sa(dp144610 +g25268 +S'Tower (La tour)' +p144611 +sg25270 +S'Alphonse Legros' +p144612 +sg25273 +S'drypoint' +p144613 +sg25275 +S'unknown date\n' +p144614 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b9a.jpg' +p144615 +sg25267 +g27 +sa(dp144616 +g25268 +S'Edge of a Wood (Lisiere de bois)' +p144617 +sg25270 +S'Alphonse Legros' +p144618 +sg25273 +S'etching and drypoint' +p144619 +sg25275 +S'unknown date\n' +p144620 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b95.jpg' +p144621 +sg25267 +g27 +sa(dp144622 +g25268 +S'Small Hill (Le coteau)' +p144623 +sg25270 +S'Alphonse Legros' +p144624 +sg25273 +S'etching? and drypoint' +p144625 +sg25275 +S'unknown date\n' +p144626 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009ba2.jpg' +p144627 +sg25267 +g27 +sa(dp144628 +g25268 +S'Across Country (A travers champ)' +p144629 +sg25270 +S'Alphonse Legros' +p144630 +sg25273 +S'drypoint' +p144631 +sg25275 +S'unknown date\n' +p144632 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bca.jpg' +p144633 +sg25267 +g27 +sa(dp144634 +g25268 +S'Edge of a Forest in Bourgogne (Un coin de foret en Bourgogne)' +p144635 +sg25270 +S'Alphonse Legros' +p144636 +sg25273 +S'etching and drypoint' +p144637 +sg25275 +S'unknown date\n' +p144638 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bce.jpg' +p144639 +sg25267 +g27 +sa(dp144640 +g25268 +S'Roman Ruin (Ruine romaine)' +p144641 +sg25270 +S'Alphonse Legros' +p144642 +sg25273 +S'etching and drypoint' +p144643 +sg25275 +S'unknown date\n' +p144644 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bcf.jpg' +p144645 +sg25267 +g27 +sa(dp144646 +g25268 +S'Little Wandering Jew (Le petit juif errant)' +p144647 +sg25270 +S'Alphonse Legros' +p144648 +sg25273 +S'etching and drypoint' +p144649 +sg25275 +S'unknown date\n' +p144650 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bc9.jpg' +p144651 +sg25267 +g27 +sa(dp144652 +g25268 +S"Woods in Winter Sun, 2nd plate (Soleil d'hiver dans les bois)" +p144653 +sg25270 +S'Alphonse Legros' +p144654 +sg25273 +S'drypoint and etching?' +p144655 +sg25275 +S'unknown date\n' +p144656 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c05.jpg' +p144657 +sg25267 +g27 +sa(dp144658 +g25268 +S'Farm on a Hill (La ferme sur la colline)' +p144659 +sg25270 +S'Alphonse Legros' +p144660 +sg25273 +S'etching and drypoint' +p144661 +sg25275 +S'unknown date\n' +p144662 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c19.jpg' +p144663 +sg25267 +g27 +sa(dp144664 +g25268 +S'Old Chateau (Un vieux chateau)' +p144665 +sg25270 +S'Alphonse Legros' +p144666 +sg25273 +S'etching' +p144667 +sg25275 +S'unknown date\n' +p144668 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c21.jpg' +p144669 +sg25267 +g27 +sa(dp144670 +g25268 +S'Self-Portrait, 4th plate' +p144671 +sg25270 +S'Alphonse Legros' +p144672 +sg25273 +S'etching and drypoint' +p144673 +sg25275 +S'unknown date\n' +p144674 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c2e.jpg' +p144675 +sg25267 +g27 +sa(dp144676 +g25268 +S'Bend in the River (Un coin de riviere)' +p144677 +sg25270 +S'Alphonse Legros' +p144678 +sg25273 +S'etching retouched with sepia ink and wash' +p144679 +sg25275 +S'unknown date\n' +p144680 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c5f.jpg' +p144681 +sg25267 +g27 +sa(dp144682 +g25268 +S'Bridge at the Mill (Le pont du moulin)' +p144683 +sg25270 +S'Alphonse Legros' +p144684 +sg25273 +S'etching and drypoint' +p144685 +sg25275 +S'unknown date\n' +p144686 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c73.jpg' +p144687 +sg25267 +g27 +sa(dp144688 +g25268 +S'Bridge at the Mill (Le pont du moulin)' +p144689 +sg25270 +S'Alphonse Legros' +p144690 +sg25273 +S'etching' +p144691 +sg25275 +S'unknown date\n' +p144692 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c6b.jpg' +p144693 +sg25267 +g27 +sa(dp144694 +g25268 +S'Landscape with Boat, 2nd plate (Paysage au bateau)' +p144695 +sg25270 +S'Alphonse Legros' +p144696 +sg25273 +S'etching' +p144697 +sg25275 +S'unknown date\n' +p144698 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c79.jpg' +p144699 +sg25267 +g27 +sa(dp144700 +g25268 +S"Farm at the Monastery (La ferme de l'abbaye)" +p144701 +sg25270 +S'Alphonse Legros' +p144702 +sg25273 +S'etching on buff paper' +p144703 +sg25275 +S'unknown date\n' +p144704 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009de2.jpg' +p144705 +sg25267 +g27 +sa(dp144706 +g25268 +S"Remembrance of Italy (Souvenir d'Italie)" +p144707 +sg25270 +S'Alphonse Legros' +p144708 +sg25273 +S'etching' +p144709 +sg25275 +S'unknown date\n' +p144710 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e11.jpg' +p144711 +sg25267 +g27 +sa(dp144712 +g25268 +S'Victory Reclining Amid Trophies' +p144713 +sg25270 +S"Jacopo de' Barbari" +p144714 +sg25273 +S'engraving' +p144715 +sg25275 +S'c. 1500/1503' +p144716 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7a0.jpg' +p144717 +sg25267 +g27 +sa(dp144718 +g25268 +S'Morning along the River (La matin sur la riviere)' +p144719 +sg25270 +S'Alphonse Legros' +p144720 +sg25273 +S'etching and drypoint' +p144721 +sg25275 +S'unknown date\n' +p144722 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d39.jpg' +p144723 +sg25267 +g27 +sa(dp144724 +g25268 +S'Thomas Okey, Esq.' +p144725 +sg25270 +S'Alphonse Legros' +p144726 +sg25273 +S'lithograph in sanguine' +p144727 +sg25275 +S'1903' +p144728 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d5a.jpg' +p144729 +sg25267 +g27 +sa(dp144730 +g25273 +S'drypoint' +p144731 +sg25267 +g27 +sg25275 +S'unknown date\n' +p144732 +sg25268 +S'Fisherman with a Drum (Le peche au tambour)' +p144733 +sg25270 +S'Alphonse Legros' +p144734 +sa(dp144735 +g25268 +S'Victor Hugo, 1st plate' +p144736 +sg25270 +S'Alphonse Legros' +p144737 +sg25273 +S'etching' +p144738 +sg25275 +S'unknown date\n' +p144739 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098fe.jpg' +p144740 +sg25267 +g27 +sa(dp144741 +g25268 +S'Victor Hugo, 1st plate' +p144742 +sg25270 +S'Alphonse Legros' +p144743 +sg25273 +S'etching and drypoint' +p144744 +sg25275 +S'unknown date\n' +p144745 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009900.jpg' +p144746 +sg25267 +g27 +sa(dp144747 +g25268 +S'Edwin Edwards' +p144748 +sg25270 +S'Alphonse Legros' +p144749 +sg25273 +S'drypoint' +p144750 +sg25275 +S'unknown date\n' +p144751 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009901.jpg' +p144752 +sg25267 +g27 +sa(dp144753 +g25268 +S'Auguste Delatre' +p144754 +sg25270 +S'Alphonse Legros' +p144755 +sg25273 +S'etching and drypoint' +p144756 +sg25275 +S'unknown date\n' +p144757 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b16.jpg' +p144758 +sg25267 +g27 +sa(dp144759 +g25268 +S"Study of a Man's Head (Etude de tete d'homme)" +p144760 +sg25270 +S'Alphonse Legros' +p144761 +sg25273 +S'etching' +p144762 +sg25275 +S'unknown date\n' +p144763 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b1b.jpg' +p144764 +sg25267 +g27 +sa(dp144765 +g25268 +S'Old Spaniard (Vieil Espagnol)' +p144766 +sg25270 +S'Alphonse Legros' +p144767 +sg25273 +S'etching' +p144768 +sg25275 +S'unknown date\n' +p144769 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b17.jpg' +p144770 +sg25267 +g27 +sa(dp144771 +g25268 +S'Horse-driven Mill (Le manege)' +p144772 +sg25270 +S'Alphonse Legros' +p144773 +sg25273 +S'etching' +p144774 +sg25275 +S'unknown date\n' +p144775 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b44.jpg' +p144776 +sg25267 +g27 +sa(dp144777 +g25268 +S"Satyr's Family" +p144778 +sg25270 +S"Jacopo de' Barbari" +p144779 +sg25273 +S'engraving' +p144780 +sg25275 +S'c. 1503/1504' +p144781 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c798.jpg' +p144782 +sg25267 +g27 +sa(dp144783 +g25268 +S'In the Forest of Fontainebleau (Dans le foret de Fontainebleau)' +p144784 +sg25270 +S'Alphonse Legros' +p144785 +sg25273 +S'etching? and drypoint' +p144786 +sg25275 +S'unknown date\n' +p144787 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bc6.jpg' +p144788 +sg25267 +g27 +sa(dp144789 +g25268 +S'Wheelwright (Un charron)' +p144790 +sg25270 +S'Alphonse Legros' +p144791 +sg25273 +S'drypoint' +p144792 +sg25275 +S'unknown date\n' +p144793 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098da.jpg' +p144794 +sg25267 +g27 +sa(dp144795 +g25268 +S'Farm on a Hill (La ferme sur la colline)' +p144796 +sg25270 +S'Alphonse Legros' +p144797 +sg25273 +S'etching' +p144798 +sg25275 +S'unknown date\n' +p144799 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c1c.jpg' +p144800 +sg25267 +g27 +sa(dp144801 +g25268 +S'Along the Thames (Sur la Tamise)' +p144802 +sg25270 +S'Alphonse Legros' +p144803 +sg25273 +S'etching? and drypoint' +p144804 +sg25275 +S'unknown date\n' +p144805 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c24.jpg' +p144806 +sg25267 +g27 +sa(dp144807 +g25268 +S'Lord A. Tennyson, 2nd plate' +p144808 +sg25270 +S'Alphonse Legros' +p144809 +sg25273 +S'etching and aquatint' +p144810 +sg25275 +S'unknown date\n' +p144811 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c3c.jpg' +p144812 +sg25267 +g27 +sa(dp144813 +g25268 +S'Fisherman with a Hoop-net (La peche a la truble)' +p144814 +sg25270 +S'Alphonse Legros' +p144815 +sg25273 +S'etching, aquatint and drypoint?' +p144816 +sg25275 +S'unknown date\n' +p144817 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f9d.jpg' +p144818 +sg25267 +g27 +sa(dp144819 +g25268 +S"Water's Edge by Morning Light (Au bord de l'eau (Effet du matin))" +p144820 +sg25270 +S'Alphonse Legros' +p144821 +sg25273 +S'etching, aquatint and drypoint?' +p144822 +sg25275 +S'unknown date\n' +p144823 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fa7.jpg' +p144824 +sg25267 +g27 +sa(dp144825 +g25268 +S'Ellen Peabody Endicott (Mrs. William Crowninshield Endicott)' +p144826 +sg25270 +S'John Singer Sargent' +p144827 +sg25273 +S'oil on canvas' +p144828 +sg25275 +S'1901' +p144829 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000202.jpg' +p144830 +sg25267 +g27 +sa(dp144831 +g25268 +S'Gypsy Girl with Mandolin' +p144832 +sg25270 +S'Jean-Baptiste-Camille Corot' +p144833 +sg25273 +S'oil on canvas' +p144834 +sg25275 +S'c. 1870' +p144835 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000da4.jpg' +p144836 +sg25267 +g27 +sa(dp144837 +g25268 +S'Alexander Hamilton' +p144838 +sg25270 +S'John Trumbull' +p144839 +sg25273 +S'oil on canvas' +p144840 +sg25275 +S'c. 1792' +p144841 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000027c.jpg' +p144842 +sg25267 +g27 +sa(dp144843 +g25268 +S'Apollo and Diana' +p144844 +sg25270 +S"Jacopo de' Barbari" +p144845 +sg25273 +S'engraving' +p144846 +sg25275 +S'c. 1503/1504' +p144847 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c79b.jpg' +p144848 +sg25267 +g27 +sa(dp144849 +g25268 +S'The Adoration of the Magi' +p144850 +sg25270 +S'Artist Information (' +p144851 +sg25273 +S'(painter)' +p144852 +sg25275 +S'\n' +p144853 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005c1.jpg' +p144854 +sg25267 +S"This brilliantly colored, richly decorated circular panel presents a splendid\r\nvision of the arrival of the Magi, accompanied by a courtly entourage. A 1492 inventory of Lorenzo de' Medici's estate possibly identifies this picture as the most valuable in the collection of the powerful Florentine family, and attributes it to Fra Angelico. The \n Fra Angelico was a Dominican known for his great monastic devotion; his saintly deportment is mirrored in the quiet piety of his paintings. The representation of the Virgin Mary here characterizes his style in the pure, simple form of her head and the gentle refinement of her features. Fra Filippo's earthy style appeals to the viewer in the portrayal of massive forms and well–articulated figures. In the \n While several elements of the painting can be seen as symbolic—for example, the peacock was considered a symbol of immortality—the \n " +p144855 +sa(dp144856 +g25268 +S'The Feast of Herod and the Beheading of Saint John the Baptist' +p144857 +sg25270 +S'Benozzo Gozzoli' +p144858 +sg25273 +S'tempera (?) on panel' +p144859 +sg25275 +S'1461-1462' +p144860 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000764.jpg' +p144861 +sg25267 +S'A contract for an altarpiece, executed between the artist and\r\n the \r\n Confraternity of the Purification of the Virgin, gives explicit \r\n instructions. The artist "is obligated to apply himself to this\r\n painting so \r\n that the said picture will excel, or at least favorably compare\r\n with, every \r\n good picture made thus far by [him]." The appearance of the central\r\n section \r\n is carefully prescribed: the Virgin is to be flanked by John the\r\n Baptist \r\n and five other named saints "with all the usual attributes."\r\n Gozzoli must \r\n also "with his own hand...paint at the bottom, that is in the\n This is one of those \n ' +p144862 +sa(dp144863 +g25268 +S'The Virgin Adoring the Child' +p144864 +sg25270 +S'Sandro Botticelli' +p144865 +sg25273 +S'tempera on panel' +p144866 +sg25275 +S'1480/1490' +p144867 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000086a.jpg' +p144868 +sg25267 +g27 +sa(dp144869 +g25268 +S'Portrait of a Man' +p144870 +sg25270 +S'Andrea Mantegna' +p144871 +sg25273 +S'tempera on hardboard transferred from canvas transferred from panel' +p144872 +sg25275 +S'c. 1470' +p144873 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007aa.jpg' +p144874 +sg25267 +g27 +sa(dp144875 +g25268 +S'The Annunciation with Saint Francis and Saint Louis of Toulouse [far left panel]' +p144876 +sg25270 +S'Cosm\xc3\xa8 Tura' +p144877 +sg25273 +S'tempera and distemper on panel' +p144878 +sg25275 +S'c. 1470/1480' +p144879 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00068/a000680d.jpg' +p144880 +sg25267 +g27 +sa(dp144881 +g25268 +S'The Annunciation with Saint Francis and Saint Louis of Toulouse [middle left panel]' +p144882 +sg25270 +S'Cosm\xc3\xa8 Tura' +p144883 +sg25273 +S'tempera and distemper on panel' +p144884 +sg25275 +S'c. 1470/1480' +p144885 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007ad.jpg' +p144886 +sg25267 +g27 +sa(dp144887 +g25268 +S'The Annunciation with Saint Francis and Saint Louis of Toulouse [middle right panel]' +p144888 +sg25270 +S'Cosm\xc3\xa8 Tura' +p144889 +sg25273 +S'tempera and distemper on panel' +p144890 +sg25275 +S'c. 1470/1480' +p144891 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007ae.jpg' +p144892 +sg25267 +g27 +sa(dp144893 +g25268 +S'The Annunciation with Saint Francis and Saint Louis of Toulouse [far right panel]' +p144894 +sg25270 +S'Cosm\xc3\xa8 Tura' +p144895 +sg25273 +S'tempera and distemper on panel' +p144896 +sg25275 +S'c. 1470/1480' +p144897 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007af.jpg' +p144898 +sg25267 +g27 +sa(dp144899 +g25268 +S'An Episode from the Life of Publius Cornelius Scipio' +p144900 +sg25270 +S'Giovanni Bellini' +p144901 +sg25273 +S'oil on canvas' +p144902 +sg25275 +S'after 1506' +p144903 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005c9.jpg' +p144904 +sg25267 +g27 +sa(dp144905 +g25268 +S'Two Philosophers' +p144906 +sg25270 +S"Jacopo de' Barbari" +p144907 +sg25273 +S'engraving' +p144908 +sg25275 +S'c. 1509' +p144909 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c79a.jpg' +p144910 +sg25267 +g27 +sa(dp144911 +g25268 +S'The Holy Family' +p144912 +sg25270 +S'Titian' +p144913 +sg25273 +S'oil on panel transferred to hardboard' +p144914 +sg25275 +S'probably c. 1500' +p144915 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000811.jpg' +p144916 +sg25267 +S"Knowledge of Giorgione's life and career is in inverse proportion to his importance. He remains one of the least documented and most influential of all Renaissance painters. A single signed painting exists. Beyond that, scholars must attempt to identify his works on the basis of style and on sixteenth-century household inventories, which provide only brief indications of subject matter. Many of Giorgione's paintings were made for private patrons, so that records, which typically document large civic and religious commissions, are not available. Difficulty also arises in distinguishing the early work of Giorgione from that of near contemporaries like \n This painting must be one of those early works. The figures, especially the aged, bearded Joseph, closely resemble those of Bellini. Joseph sits on an unfinished wall, while mother and child are seated on a humble rock that emphasizes Christ's humility and humanity. The symbolism of the unfinished wall also refers to the incomplete and imperfect era before Christ's birth. The\r\nprecision of detail, particularly of the plants and rocks in the foreground, suggests the influence of paintings from northern Europe, which could be seen in Venice in large numbers and were also known through prints.\n " +p144917 +sa(dp144918 +g25268 +S'Portrait of a Young Woman as a Wise Virgin' +p144919 +sg25270 +S'Sebastiano del Piombo' +p144920 +sg25273 +S'oil on hardboard transferred from panel' +p144921 +sg25275 +S'c. 1510' +p144922 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000805.jpg' +p144923 +sg25267 +S'\r\n\tThe story of the wise and foolish virgins is told in the biblical book of Matthew. Preparing for marriage, five wise virgins carefully provided oil for their lamps and awaited the bridegroom. Five foolish virgins, on the other hand, missed the bridegroom when they left their homes in search of more oil. The parable was often interpreted in terms of the Last Judgment and the need to be constantly prepared for the Second Coming. \r\n\n \r\n\tOtherwise unusual for early sixteenth-century Italy, this subject would have had obvious significance for brides, and this painting is possibly an idealized portrait intended as a wedding gift. A faint inscription on the painting has often been interpreted as a reference to Vittoria Colonna, a poet best known for her friendship with Michelangelo. Perhaps the painting was done to commemorate her wedding in 1509. Several seventeenth-century editions of her works used engravings based on this painting as a frontispiece. \r\n\n \r\n\tVittoria, however, lived in Rome, and Sebastiano worked in Venice until 1511. Furthermore, paintings like this one were more popular in Venice than in Rome. Venetian works depicting beautiful young women with locks of hair tumbling to creamy shoulders and revealing necklines may have been idealized portraits or fanciful creations painted for a gentleman’s private enjoyment. The models for these \n ' +p144924 +sa(dp144925 +g25268 +S'Piet\xc3\xa0' +p144926 +sg25270 +S'Moretto da Brescia' +p144927 +sg25273 +S'oil on panel' +p144928 +sg25275 +S'1520s' +p144929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000816.jpg' +p144930 +sg25267 +S"The \n The Virgin, Saint John the Evangelist, and Mary Magdalene have assembled at Christ's\ntomb and hold up his gray, lifeless body against the marble sarcophagus. Behind\nthem is the dark mouth of the rock cut tomb, and beyond it opens a verdant river\nlandscape. Moretto has frozen the mourners in their awkward poses, their strain\nfueling the anguished pitch of the image. By contrast, the disposition of Christ's\nbody is almost balletic. It stands out pale against the deep colors of the mourners'\nrobes. Moretto's palette is rich but acerbic, darkening to iron-gray in the shadows.\n Although Moretto had absorbed the styles of the Venetians, especially their brilliant\nexperiments with color and light, this intensely emotional \n " +p144931 +sa(dp144932 +g25268 +S'Ranuccio Farnese' +p144933 +sg25270 +S'Titian' +p144934 +sg25273 +S'oil on canvas' +p144935 +sg25275 +S'1542' +p144936 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000898.jpg' +p144937 +sg25267 +S"Ranuccio Farnese was twelve years old when Titian painted his portrait. The boy had been sent to Venice by his grandfather, Pope Paul III, to become prior of an important property belonging to the Knights of Malta. As a member of the powerful and aristocratic Farnese family, Ranuccio went on to an illustrious ecclesiastical career. He was made Archbishop of Naples at the age of fourteen, and he later served as Bishop of Bologna, Archbishop of Milan and Ravenna, and Cardinal Sant'Angelo, dying when he was only thirty–five years old.\n Adult responsibility came to Ranuccio when still a child, as Titian so brilliantly conveyed through the cloak of office, too large and heavy, sliding off the youth's small shoulders. The boy in the role of the man is what gives this characterization such poignancy.\n Portraits by Titian were in great demand, distinguished as they were for their remarkable insight into character and their brilliant technique. Nowhere is the painter's genius more in evidence than in this image. Limiting his palette to black, white, and rose, Titian enlivened the surface with light: the dull gleam rippling over the sleeves of the velvet cloak; the fitful pattern flickering across the slashed doublet; and the changing reflections on the satin Maltese Cross.\n " +p144938 +sa(dp144939 +g25268 +S'Venus Blindfolding Cupid' +p144940 +sg25270 +S'Artist Information (' +p144941 +sg25273 +S'Italian, c. 1490 - 1576' +p144942 +sg25275 +S'(related artist)' +p144943 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000899.jpg' +p144944 +sg25267 +g27 +sa(dp144945 +g25268 +S'Mary, Queen of Heaven' +p144946 +sg25270 +S'Master of the Saint Lucy Legend' +p144947 +sg25273 +S'oil on panel' +p144948 +sg25275 +S'c. 1485/1500' +p144949 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005b8.jpg' +p144950 +sg25267 +S"This unusually large panel painting depicts three facets of Marian iconography: the Virgin's corporeal assumption, the Immaculate Conception—the crescent moon and the radiance behind her identify Mary as the Woman of the Apocalyse, mentioned in Revelation 12:I—and the Coronation of the Virgin. The painting is of great interest to musicologists in that it depicts Renaissance instruments with great accuracy and also reflects contemporary performance practices in the arrangement of the music–making angels. At the top, a full orchestra plays before the three figures of the Trinity. The ensemble around the Virgin is a mixed consort composed of "loud" instruments (trumpets and shawms) and "soft" instruments (vielle, lute, and harp). Two of the singing angels hold books bearing legible lyrics and notations. This music, which is the source of the painting's title, has been identified as derived from a setting of the Marian antiphon, \n Historians refer to the artist as the Master of the Saint Lucy Legend because his principal work, an alterpiece dated 1480, depicts episodes from the life of that saint. His style is characterized in both paintings by oval faces that are restrained in expression, the use of extraordinarily intense color, and a tendency to over–emphasize elaborate textures.\n " +p144951 +sa(dp144952 +g25268 +S'Episodes from the Life of a Bishop Saint' +p144953 +sg25270 +S'Artist Information (' +p144954 +sg25273 +S'(painter)' +p144955 +sg25275 +S'\n' +p144956 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000593.jpg' +p144957 +sg25267 +g27 +sa(dp144958 +g25268 +S'The Baptism of Clovis' +p144959 +sg25270 +S'Master of Saint Giles' +p144960 +sg25273 +S'oil on panel' +p144961 +sg25275 +S'c. 1500' +p144962 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000594.jpg' +p144963 +sg25267 +S'Clovis (d. 511) was the founder of the Merovingian dynasty and the first Christian king of France. The setting for his baptism can be recognized as Sainte-Chapelle, the royal chapel on the Ile-de-la-Cité in Paris. Among the witnesses is his wife, Clothilde, who was largely responsible for his conversion. In the companion work, \n The companion work with the scene at Notre-Dame was painted, at least in part, by workshop assistants. Whether the master artist himself was a French painter trained in the north or a northerner who emigrated to France, his style has the detail and precision of Netherlandish painting. His assistants, on the other hand, display the simplified and more solid forms of French art. Compare, for example, the limestone blocks, which are textured and carefully differentiated in the baptism scene but which have a smoother, more uniform look in the other painting. The assistants tended to outline features and to contrast colors and shapes more abruptly.\n ' +p144964 +sa(dp144965 +g25268 +S'Madonna and Child [obverse]' +p144966 +sg25270 +S'Albrecht D\xc3\xbcrer' +p144967 +sg25273 +S'oil on panel' +p144968 +sg25275 +S'c. 1496/1499' +p144969 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000057c.jpg' +p144970 +sg25267 +S"Dürer was born in Nuremberg and received a typical medieval training from his goldsmith father and from the Nuremberg painter Michael Wolgemut. Yet he was one of the major transmitters of the ideas of the Italian Renaissance to artists in the North. This was the result of direct experience acquired on two trips to Italy, as well as of his own diligent study of ideal figural proportions and perspective.\n Dürer traveled to Venice in 1494/1495 and 1505/1507. While there, he became well acquainted with Giovanni Bellini, whose influence is evident in the \n On the other hand, Mary's placement in the corner of a room with a window open on a distant view indicates Dürer's familiarity with Netherlandish devotional images. The minute treatment of the Alpine landscape and the careful delineation of all textures and surfaces equally remind one of Dürer's persistent fascination with the North's tradition of visual exactitude.\n The \n " +p144971 +sa(dp144972 +g25268 +S'Lot and His Daughters [reverse]' +p144973 +sg25270 +S'Albrecht D\xc3\xbcrer' +p144974 +sg25273 +S'oil on panel' +p144975 +sg25275 +S'c. 1496/1499' +p144976 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000546.jpg' +p144977 +sg25267 +S"This scene is painted on the reverse side of Dürer's \n This scene was important for the moral lesson it taught. Like the story of Noah\nand the flood, that of Lot and the desolation of Sodom and Gomorrah was an allegory\ndemonstrating the power of God to save the righteous.\n Since the combination of the story of Lot with the depiction of the Virgin and Child\nis extremely unusual, the exact relation of the two images remains unclear. However,\nthey could be understood as two examples of the value of a just life and of the\npervasive grace of God, especially if the \n " +p144978 +sa(dp144979 +g25268 +S'Custodi Nos Dormientes (The Guardian Angel)' +p144980 +sg25270 +S"Jacopo de' Barbari" +p144981 +sg25273 +S'engraving' +p144982 +sg25275 +S'c. 1509' +p144983 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7a2.jpg' +p144984 +sg25267 +g27 +sa(dp144985 +g25268 +S'Portrait of a Clergyman (Johann Dorsch?)' +p144986 +sg25270 +S'Albrecht D\xc3\xbcrer' +p144987 +sg25273 +S'oil on parchment on fabric' +p144988 +sg25275 +S'1516' +p144989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b2e.jpg' +p144990 +sg25267 +S"Although the sitter's identity is not verified, he is possibly Johann Dorsch,\na cleric in Nuremberg. The clergyman's ardor, spiritual zeal, and intense determination\nare communicated through the turn of the head, the fixed, staring eyes, and the\ntight, compressed lips.\n With great respect for reality, Dürer has recorded every detail of the man's appearance\nregardless of how small or unimportant it may be: the wrinkles and lines of the\nface, the individual strands of fine hair, the coarse skin texture, and even the\nreflection of window panes in the irises of the eyes. This incisive clarity and\naccuracy derive in large part from Dürer's experience in the graphic arts.\n The portrait is of further interest for having been painted on parchment rather\nthan on wood, which was still the most common support. Experimenting with techniques\nand materials, Dürer also used silk and linen at times. The animal skin gives the\npaint surface a fine, smooth quality and lends amazing richness to the oil colors.\n " +p144991 +sa(dp144992 +g25268 +S'The Martyrdom of Saint Catherine' +p144993 +sg25270 +S'Artist Information (' +p144994 +sg25273 +S'Netherlandish, c. 1509 - 1548' +p144995 +sg25275 +S'(painter)' +p144996 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000059a.jpg' +p144997 +sg25267 +S'As Europeans came to understand the world\r\n through printed maps and geographies, landscape emerged as a popular\r\n subject. The Italian artist and biographer \n This painting may be the work of Matthys Cock, whose brother \n ' +p144998 +sa(dp144999 +g25268 +S'The Temptation of Saint Anthony' +p145000 +sg25270 +S'Artist Information (' +p145001 +sg25273 +S'Flemish, c. 1525/1530 - 1569' +p145002 +sg25275 +S'(related artist)' +p145003 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005ae.jpg' +p145004 +sg25267 +S"Legends of Anthony Abbot relate how the pious early Christian, forsaking\nsociety, journeyed into the wilderness to seek God. Anthony appears twice in this\npainting; in his foreground retreat, he resists the Devil's manifold temptations.\nAfter failing to yield to the evil lures, he is shown again being physically tortured\nwhile carried aloft by demons. Yet, the saint was saved by the purity of his soul.\n The religious subject is presented in a revolutionary fashion; generations of earlier\nartists had tended to treat landscape as an unobtrusive backdrop of secondary importance,\nwhereas now the landscape dominates the subject to such an extent that the temptation\nof Saint Anthony seems only incidental. This change of emphasis marks an important\nadvance toward the development of pure landscape painting, in which Pieter Bruegel\nthe Elder was an instrumental figure. Already, that delight in the natural world\nis apparent here in the shadowy depths of leafy forests, contrasting with open vistas\nof waterways, villages, and towns bathed in pearly light.\n Perhaps the juxtaposition of a peaceful landscape with the temptations and attacks\nof demons was a subtle statement by this Bruegel follower on the political and moral\nbrutalities of his time. Possibly Saint Anthony is meant allegorically to represent\nEveryman caught up in a world gone mad.\n " +p145005 +sa(dp145006 +g25268 +S'Peasant Interior' +p145007 +sg25270 +S'Louis Le Nain' +p145008 +sg25273 +S'oil on canvas' +p145009 +sg25275 +S'c. 1645' +p145010 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d75.jpg' +p145011 +sg25267 +g27 +sa(dp145012 +g25268 +S'Nymphs Feeding the Child Jupiter' +p145013 +sg25270 +S'Artist Information (' +p145014 +sg25273 +S'French, 1594 - 1665' +p145015 +sg25275 +S'(related artist)' +p145016 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d8a.jpg' +p145017 +sg25267 +S"According to Roman mythology, the infant Jupiter was concealed from his \n murderous father on the island of Crete. The princess Amalthea uses a \n goat's horn, or cornucopia, to give him milk to drink, while her sister \n Melissa holds a honeycomb for him to eat. Thus nurtured in secret, Jupiter \n grew to manhood and overthrew his father to become king of the Olympian \n deities. In the otherwise muted color scheme, the princess holding Jupiter \n wears pure yellow and blue, attracting attention to the main character. \n Poussin's coherent compositions and lucid color contrasts were in accord \n with a belief that painting, like mathematics, was governed by absolute \n logic. To obtain these calculated effects, Poussin often constructed a \n theatrical shadow box which, filled with movable wax manikins, served as a \n model for his final picture.\n " +p145018 +sa(dp145019 +g25268 +S'Picnic after the Hunt' +p145020 +sg25270 +S'Nicolas Lancret' +p145021 +sg25273 +S'oil on canvas' +p145022 +sg25275 +S'probably c. 1735/1740' +p145023 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d7f.jpg' +p145024 +sg25267 +g27 +sa(dp145025 +g25268 +S'Pope Pius VII in the Sistine Chapel' +p145026 +sg25270 +S'Jean-Auguste-Dominique Ingres' +p145027 +sg25273 +S'oil on canvas' +p145028 +sg25275 +S'1814' +p145029 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d96.jpg' +p145030 +sg25267 +S"Ingres painted this scene while he was living in Italy. The painting's \r\n extreme visual accuracy, which reproduces \r\n Michelangelo's \n The circumstances of the work's commission are somewhat surprising, since \r\n Ingres painted it for a prominent French official in Rome who might have \r\n been expected to avoid such a potentially controversial subject. He was \r\n Charles Marcotte, a good friend of Ingres' and one of his most important \r\n patrons, whose \n Ingres, unlike David in whose studio he studied, remained blind to \r\n politics, devoting himself instead to the perfection of his art.\n " +p145031 +sa(dp145032 +g25268 +S"Marcotte d'Argenteuil" +p145033 +sg25270 +S'Jean-Auguste-Dominique Ingres' +p145034 +sg25273 +S'oil on canvas' +p145035 +sg25275 +S'1810' +p145036 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d95.jpg' +p145037 +sg25267 +g27 +sa(dp145038 +g25268 +S'Miss Mathilde Townsend' +p145039 +sg25270 +S'John Singer Sargent' +p145040 +sg25273 +S'oil on canvas' +p145041 +sg25275 +S'1907' +p145042 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000203.jpg' +p145043 +sg25267 +g27 +sa(dp145044 +g25268 +S'Fantastic Landscape with Figures' +p145045 +sg25270 +S'Emilian 16th Century' +p145046 +sg25273 +S'overall: 63.5 x 83.9 cm (25 x 33 1/16 in.)\r\nframed: 84.9 x 104.8 x 6 cm (33 7/16 x 41 1/4 x 2 3/8 in.)' +p145047 +sg25275 +S'\noil on canvas' +p145048 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000080e.jpg' +p145049 +sg25267 +g27 +sa(dp145050 +g25268 +S'Holy Family' +p145051 +sg25270 +S"Jacopo de' Barbari" +p145052 +sg25273 +S'engraving' +p145053 +sg25275 +S'c. 1508/1509' +p145054 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c799.jpg' +p145055 +sg25267 +g27 +sa(dp145056 +g25268 +S'The Singing Party' +p145057 +sg25270 +S'Philip Mercier' +p145058 +sg25273 +S', c. 1732/1760' +p145059 +sg25275 +S'\n' +p145060 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000073e.jpg' +p145061 +sg25267 +g27 +sa(dp145062 +g25268 +S'Christ Risen from the Tomb' +p145063 +sg25270 +S'Bergognone' +p145064 +sg25273 +S'oil on panel' +p145065 +sg25275 +S'c. 1490' +p145066 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007c2.jpg' +p145067 +sg25267 +g27 +sa(dp145068 +g25268 +S'Joseph of Egypt' +p145069 +sg25270 +S'Master of the Griselda Legend' +p145070 +sg25273 +S'oil on panel transferred to canvas' +p145071 +sg25275 +S'c. 1490/1495' +p145072 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000077b.jpg' +p145073 +sg25267 +g27 +sa(dp145074 +g25268 +S'The Healing of Palladia by Saint Cosmas and Saint Damian' +p145075 +sg25270 +S'Fra Angelico' +p145076 +sg25273 +S'tempera (and oil?) on panel' +p145077 +sg25275 +S'c. 1438/1440' +p145078 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007cb.jpg' +p145079 +sg25267 +g27 +sa(dp145080 +g25268 +S'The Gathering of Manna' +p145081 +sg25270 +S'Bacchiacca' +p145082 +sg25273 +S'oil on panel' +p145083 +sg25275 +S'1540/1555' +p145084 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000807.jpg' +p145085 +sg25267 +S"Various explanations are given for Francesco d'Ubertino Verdi's nickname, Bacchiacca. It is tempting to see a connection with \n This is not appropriation by an artist unwilling or unable to devise something new, however. Bacchiacca was a court painter to Cosimo de' Medici in Florence, where patrons would have delighted in puzzling out his sources. Admirers of the then current mannerist style, which depended on complexity and artifice over naturalistic representation, they would also have appreciated his pictures' \n Among all these creatures only the quail relate to the biblical story. A day after the birds arrived to alleviate the Israelites' hunger, God provided manna from the sky. Here Moses—in bright pink, light emanating from his head—commands his people to gather the almost invisible bread. Perhaps this painting was part of a campaign to depict Cosimo as a new Moses, one who would provide the Florentines with prosperity—an abundance suggested even in the fullness of Bacchiacca's composition.\n " +p145086 +sa(dp145087 +g25268 +S'The Crucifixion' +p145088 +sg25270 +S'Francesco del Cossa' +p145089 +sg25273 +S'tempera on panel' +p145090 +sg25275 +S'c. 1473/1474' +p145091 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000762.jpg' +p145092 +sg25267 +g27 +sa(dp145093 +g25268 +S'Madonna and Child Enthroned with Donor' +p145094 +sg25270 +S'Carlo Crivelli' +p145095 +sg25273 +S'tempera on panel' +p145096 +sg25275 +S'1470' +p145097 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007ab.jpg' +p145098 +sg25267 +S'"Remember me, O Mother of God. O Queen of Heaven, rejoice." These words, taken\r\nfrom an Easter psalm sung in the Virgin\'s honor, appear on the golden arch at the\r\ntop of Carlo Crivelli\'s \n Crivelli\'s painting originally constituted the central section of a polyptych in\r\nthe parish church at Porto San Giorgio, near Fermi. The crisp, sculptural forms\r\nreflect Crivelli\'s probable training in the humanist center of Padua. Yet the manner\r\nin which Crivelli\'s figures are modeled in light and shade also expresses a broader\r\nRenaissance concern with direct observation of nature.\n Crivelli\'s very personal, almost metallic style must in large part be explained\r\nby the events of his life. He was born in Venice where the Gothic tradition lingered\r\nwell into the fifteenth century. After spending some time in Padua, he settled\r\nin the Marches on the Adriatic, and there remained relatively unaffected by new\r\ntrends.\n ' +p145099 +sa(dp145100 +g25268 +S'The Veil of Veronica' +p145101 +sg25270 +S'Domenico Fetti' +p145102 +sg25273 +S'oil on panel' +p145103 +sg25275 +S'c. 1618/1622' +p145104 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000607.jpg' +p145105 +sg25267 +S"Domenico Fetti was in Rome in 1606 when the Veil of Veronica, one of the oldest and most\nvenerated relics in Christendom, was installed in the crossing of St. Peter's Basilica. According to\nmedieval legend, the veil belonged to a woman who took pity on Christ as he toiled with his\nburden of the cross to Golgotha. She gave Christ her kerchief to wipe his brow, and when he\nreturned the cloth, his image miraculously had been impressed upon it. This kerchief was\nbelieved to have been preserved as the relic called the "true image" or, in Latin,\n\n Fetti's depiction of the relic is compellingly realistic. Isolated against a dark background and\ndraped over a bar, the fabric's texture, folds, and fringed border are rendered with painstaking\ncare. Hovering on its surface is Christ's visage -- the flesh solidly modeled and tangible. Fetti's\namazingly true image of the "true image" is, in a sense, a metaphor of the task of the\npainter. This is not merely a brilliant and self-conscious exhibition of the painter's skill, however,\nbut a sensitive and deeply felt portrayal of Christ at the moment of his most intense physical\nand spiritual suffering.\n " +p145106 +sa(dp145107 +g25268 +S'Judith Holding the Head of Holofernes' +p145108 +sg25270 +S"Jacopo de' Barbari" +p145109 +sg25273 +S'engraving' +p145110 +sg25275 +S'c. 1501/1503' +p145111 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c79f.jpg' +p145112 +sg25267 +g27 +sa(dp145113 +g25268 +S'Saint Benedict Orders Saint Maurus to the Rescue of Saint Placidus' +p145114 +sg25270 +S'Fra Filippo Lippi' +p145115 +sg25273 +S'tempera on panel' +p145116 +sg25275 +S'c. 1445/1450' +p145117 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000777.jpg' +p145118 +sg25267 +g27 +sa(dp145119 +g25268 +S'Madonna and Child Enthroned' +p145120 +sg25270 +S"Margaritone d'Arezzo" +p145121 +sg25273 +S'tempera on panel' +p145122 +sg25275 +S'c. 1270' +p145123 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b12.jpg' +p145124 +sg25267 +g27 +sa(dp145125 +g25268 +S'The Mourning Madonna' +p145126 +sg25270 +S'Master of the Franciscan Crucifixes' +p145127 +sg25273 +S'tempera on panel' +p145128 +sg25275 +S'c. 1272' +p145129 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002aff.jpg' +p145130 +sg25267 +g27 +sa(dp145131 +g25268 +S'Saint John the Evangelist' +p145132 +sg25270 +S'Master of the Franciscan Crucifixes' +p145133 +sg25273 +S'tempera on panel' +p145134 +sg25275 +S'c. 1272' +p145135 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b13.jpg' +p145136 +sg25267 +g27 +sa(dp145137 +g25268 +S'Saint James Minor' +p145138 +sg25270 +S'Master of Saint Francis' +p145139 +sg25273 +S'tempera on panel' +p145140 +sg25275 +S'probably c. 1270/1280' +p145141 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a81.jpg' +p145142 +sg25267 +S"Originally forming part of the back of an altarpiece, this panel\r\n when joined with a \n The artist apparently modeled the arcade and the Roman-style\r\n dress after \r\n an early Christian sarcophagus unearthed in 1262. This marble\r\n coffin was \r\n reused for the burial of the Blessed Egido, a companion of Saint\r\n Francis, \r\n in the crypt of the church of San Francesco al Prato in Perugia.\r\n Probably the \r\n two panels here were originally in the same church, placed on the\r\n altar \r\n directly above Egido's coffin.\n Note how faces and folds of cloth are defined with white\r\n highlights applied over the background colors. Later works in the\r\n Gallery's collection—\n " +p145143 +sa(dp145144 +g25268 +S'Saint John the Evangelist' +p145145 +sg25270 +S'Master of Saint Francis' +p145146 +sg25273 +S'tempera on panel' +p145147 +sg25275 +S'probably c. 1270/1280' +p145148 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a82.jpg' +p145149 +sg25267 +g27 +sa(dp145150 +g25268 +S'Madonna and Child with Saint Anthony Abbot and Saint Sigismund' +p145151 +sg25270 +S"Neroccio de' Landi" +p145152 +sg25273 +S'tempera on panel' +p145153 +sg25275 +S'c. 1490/1495' +p145154 +sg25314 +S'http://www.nga.gov:80/thumb-l/a01751/a0175190.jpg' +p145155 +sg25267 +g27 +sa(dp145156 +g25268 +S'Madonna and Child with Angels' +p145157 +sg25270 +S'Artist Information (' +p145158 +sg25273 +S'(artist)' +p145159 +sg25275 +S'\n' +p145160 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b38.jpg' +p145161 +sg25267 +S'In the early Middle Ages, Mary normally was represented enthroned as the \r\n Queen of Heaven. At the beginning of the 1300s, though, partly due to the \r\n humanistic teachings of Saint Francis of Assisi, a new subject emerged—the Madonna of Humility—which shows Mary seated upon the ground or, as in \r\n this case, a cushion. This Madonna of Humility adds the theme of the baby \r\n Jesus reaching for his mother’s breast to nurse. God the Father appears \r\n overhead, and the dove of the Holy Spirit flies down upon rays of light. \r\n Thus, the entire Trinity is present along with the Virgin.\n Andrea Orcagna was the eldest of three artist brothers who often \r\n collaborated. Jacopo di Cione, the youngest brother, may have assisted \r\n Orcagna in the execution of this work. A small triptych or three-part \r\n altarpiece by their middle brother, \n ' +p145162 +sa(dp145163 +g25268 +S'Saint Apollonia' +p145164 +sg25270 +S'Piero della Francesca' +p145165 +sg25273 +S', c. 1455/1460' +p145166 +sg25275 +S'\n' +p145167 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000087f.jpg' +p145168 +sg25267 +g27 +sa(dp145169 +g25268 +S'Caliope (Calliope)' +p145170 +sg25270 +S'Master of the E-Series Tarocchi' +p145171 +sg25273 +S'engraving' +p145172 +sg25275 +S'c. 1465' +p145173 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6d1.jpg' +p145174 +sg25267 +g27 +sa(dp145175 +g25268 +S'Saint Anthony Distributing His Wealth to the Poor' +p145176 +sg25270 +S'Artist Information (' +p145177 +sg25273 +S'(painter)' +p145178 +sg25275 +S'\n' +p145179 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000861.jpg' +p145180 +sg25267 +S'Along with \n Although he lived in the third century, the saint is depicted in contemporary guise. The arms of a prominent Sienese family appear over a doorway, and some of the architecture may reflect specific buildings in the city and surrounding area. Here are beggars with patches on their clothing, a blind man being led by his small dog, and on the balcony, the iron spikes that supported awnings against the summer sun. Like the dramatic sermons of street preachers and the performance of religious plays, in which townspeople acted the parts of saints, these details helped viewers visualize sacred events with immediacy and vividness.\n The artist combined tradition—note the typically Sienese brilliance of his pinks and greens—with a new interest in landscape and experiments in perspective. Through windows and doorways overlapping layers make depth legible.\n ' +p145181 +sa(dp145182 +g25268 +S'Saint Anthony Leaving His Monastery' +p145183 +sg25270 +S'Artist Information (' +p145184 +sg25273 +S'(painter)' +p145185 +sg25275 +S'\n' +p145186 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000823.jpg' +p145187 +sg25267 +g27 +sa(dp145188 +g25268 +S'Saint Matthew' +p145189 +sg25270 +S'Artist Information (' +p145190 +sg25273 +S'Italian, c. 1284 - 1344' +p145191 +sg25275 +S'(related artist)' +p145192 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00025/a0002520.jpg' +p145193 +sg25267 +g27 +sa(dp145194 +g25268 +S'Saint Simon' +p145195 +sg25270 +S'Artist Information (' +p145196 +sg25273 +S'Italian, c. 1284 - 1344' +p145197 +sg25275 +S'(related artist)' +p145198 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00025/a0002521.jpg' +p145199 +sg25267 +g27 +sa(dp145200 +g25268 +S'Saint James Major' +p145201 +sg25270 +S'Artist Information (' +p145202 +sg25273 +S'Italian, c. 1284 - 1344' +p145203 +sg25275 +S'(related artist)' +p145204 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00025/a0002522.jpg' +p145205 +sg25267 +g27 +sa(dp145206 +g25268 +S'Saint Thaddeus' +p145207 +sg25270 +S'Artist Information (' +p145208 +sg25273 +S'Italian, c. 1284 - 1344' +p145209 +sg25275 +S'(related artist)' +p145210 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00025/a0002523.jpg' +p145211 +sg25267 +g27 +sa(dp145212 +g25268 +S'Christ at the Sea of Galilee' +p145213 +sg25270 +S'Jacopo Tintoretto' +p145214 +sg25273 +S'oil on canvas' +p145215 +sg25275 +S'c. 1575/1580' +p145216 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000864.jpg' +p145217 +sg25267 +S"The Venetian master Tintoretto marshaled the unstable forces of nature to heighten\nthe drama of this scene from John's Gospel; the wind that fills the sail and bends\nthe mast also agitates the sea and sky, and the rocky waves meet the low clouds\nthat blow onto the land. Christ's outstretched arm draws Peter like a magnet, the\ncharge between them creating a dynamic link between the center of the picture and\nthe left foreground. Tintoretto has broken all forms into multiple planes, splintering\nthe light, and frosting the edges with a brush loaded with dry, lead-white oil paint.\nThis use of a thick, white impasto to accent the highlights and as a ghostly shorthand,\nas in the grassy shore at Christ's feet, is a hallmark of Tintoretto's bravura\nstyle.\n Too wild and improvisatory to find a real following among his compatriots in Venice,\nTintoretto's bold expressions instead fired the imagination of one kindred temperament:\nEl Greco, who studied there before moving to Spain. So close in style and spirit\nwas El Greco's art that, earlier in this century, some experts believed that he,\nand not Tintoretto, had painted the \n " +p145218 +sa(dp145219 +g25268 +S'Cardinal Pietro Bembo' +p145220 +sg25270 +S'Titian' +p145221 +sg25273 +S'oil on canvas' +p145222 +sg25275 +S'c. 1540' +p145223 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005e0.jpg' +p145224 +sg25267 +S"The son of a Venetian statesman, Pietro Bembo (1470–1547) is recognized as one of the most celebrated diplomats, poets, and humanist scholars of the sixteenth century. In 1513, after taking Holy Orders, he became secretary to Pope Leo X in Rome. Bembo was appointed librarian of St. Mark's Cathedral in 1530, and he became official historian for the city of Venice. Titian probably painted this official portrait to commemorate Bembo's elevation to cardinal in March 1539.\n In this, his second portrait of Pietro Bembo, Titian portrayed his lifelong friend as an intelligent, dynamic individual. Bembo's dark eyes are bright and alert; his short gray beard is softly modeled. His angular features are somewhat idealized and give him the appearance of a man younger than his seventy years. Wearing the scarlet cape and \n " +p145225 +sa(dp145226 +g25268 +S'Madonna and Child in a Garden' +p145227 +sg25270 +S'Cosm\xc3\xa8 Tura' +p145228 +sg25273 +S'tempera and oil on panel' +p145229 +sg25275 +S'c. 1460/1470' +p145230 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007c8.jpg' +p145231 +sg25267 +S'This work shows the Madonna and Child seated in a garden that represents Eden.\r\nThe orange trees bloom with pure white flowers that symbolize Mary\'s virginity.\r\nAn Annunciation scene appears in the raised and gilded foliate scrolls at the top\r\nof the painting.\n Since antiquity, sleep was regarded as "the brother of death," and during the Renaissance,\r\nrepresentations of the sleeping Christ Child were considered prefigurations of the\r\ndeath that he would suffer for mankind. In Cosmè Tura\'s painting, death is also\r\nforeshadowed by the stone sarcophagus on which Mary is seated.\n Cosmè Tura is considered the first great painter in Renaissance Ferrara, a city\r\nin northern Italy. He spent most of his professional life in the service of the\r\nnoble d\'Este family, the dukes of Ferrara. Because Ferrara lacked strong artistic\r\ntraditions, Cosmè was free to develop a very personal style. He may have been\r\ninspired by the works of Tuscan and Paduan artists, as well as by the Flemish, some\r\nof whose paintings figured in Ferrarese collections in the fifteenth century. In\r\nthis early work, Cosmè showed an eccentric tendency to exaggerate human anatomy\r\nfor expressive ends, as seen in the treatment of the Virgin\'s elongated hands. Purposeful\r\ndistortions increase in his later works, which reverberate with spiritual and emotional\r\nfervor.\n ' +p145232 +sa(dp145233 +g25268 +S'Iupiter (Jupiter)' +p145234 +sg25270 +S'Master of the S-Series Tarocchi' +p145235 +sg25273 +S'engraving' +p145236 +sg25275 +S'probably c. 1470' +p145237 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c704.jpg' +p145238 +sg25267 +g27 +sa(dp145239 +g25268 +S'Tarquin and Lucretia' +p145240 +sg25270 +S'Giuseppe Maria Crespi' +p145241 +sg25273 +S'oil on canvas' +p145242 +sg25275 +S'c. 1695/1700' +p145243 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000604.jpg' +p145244 +sg25267 +S"An historical tale told by Livy, Ovid, and even Shakespeare is the rape of Lucretia. Sextus\nTarquinius, son of the Etruscan King of Rome, forced the Roman matron to submit to his\nadvances by threatening to kill her and, then, to make it seem that she had been caught in\nadultery. Afterward, Lucretia told her family of this outrage and took her own life. Her\nfamily avenged her honor by overthrowing the tyrannical king, an act which led to the\nestablishment of the Roman republic. Lucretia, as an exemplar of feminine virtue and Roman\nstoicism, was a favorite subject for baroque painters who reveled in depicting the extreme\npassion and violence of the story.\n If Crespi's subject is classical, his style is decidedly not. He shows Sextus Tarquinius as he\nrushes in and forces himself on Lucretia, in his haste entangling himself in the rustling silk\ncurtains of Lucretia's bed. The rough-looking villain has dropped his dagger and now\nremonstrates with Lucretia to cease her futile protest. Crespi's brush moved with great speed, and\nhe made dramatic use of light, contrasting the luminous face of virtuous Lucretia with the\nsinister, shadowed profile of her attacker. Even the carved horse of Lucretia's bed comes alive,\nstirred by the violent episode.\n " +p145245 +sa(dp145246 +g25268 +S'The Rule of Bacchus [left panel]' +p145247 +sg25270 +S'Artist Information (' +p145248 +sg25273 +S'German, 1480 or before - 1538' +p145249 +sg25275 +S'(related artist)' +p145250 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00068/a0006800.jpg' +p145251 +sg25267 +g27 +sa(dp145252 +g25268 +S'The Fall of Man [middle panel]' +p145253 +sg25270 +S'Artist Information (' +p145254 +sg25273 +S'German, 1480 or before - 1538' +p145255 +sg25275 +S'(related artist)' +p145256 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a00067fe.jpg' +p145257 +sg25267 +g27 +sa(dp145258 +g25268 +S'The Rule of Mars [right panel]' +p145259 +sg25270 +S'Artist Information (' +p145260 +sg25273 +S'German, 1480 or before - 1538' +p145261 +sg25275 +S'(related artist)' +p145262 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a00067ff.jpg' +p145263 +sg25267 +g27 +sa(dp145264 +g25268 +S'The Expectant Madonna with Saint Joseph' +p145265 +sg25270 +S'French 15th Century' +p145266 +sg25273 +S'image: 70.5 x 35 cm (27 3/4 x 13 3/4 in.)\r\nwith integral frame: 83 x 47 x 2.5 cm (32 11/16 x 18 1/2 x 1 in.)' +p145267 +sg25275 +S'\ntempera on European walnut' +p145268 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d74.jpg' +p145269 +sg25267 +g27 +sa(dp145270 +g25268 +S'Death and the Miser' +p145271 +sg25270 +S'Hieronymus Bosch' +p145272 +sg25273 +S'oil on panel' +p145273 +sg25275 +S'c. 1485/1490' +p145274 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000597.jpg' +p145275 +sg25267 +S"In this panel Bosch shows us the last moments in the life of a miser, just\r\nbefore his eternal fate is decided. A little monster peeping out from under the\r\nbed–curtains tempts the miser with a bag of gold, while an angel kneeling at the right encourages him to acknowledge the crucifix in the window. Death, holding an arrow, enters at the left.\n Oppositions of good and evil occur throughout the painting. A lantern containing the fire of Hell, carried by the demon atop the bed canopy, balances the cross which emits a single ray of divine light. The figure in the middle ground, perhaps representing the miser earlier in his life, is shown as hypocritical; with one hand he puts coins into the strongbox where they are collected by a rat–faced demon, and with the other he fingers a rosary, attempting to serve God and Mammon at the same time. A demon emerging from underneath the chest holds up a paper sealed with red wax — perhaps\r\na letter of indulgence or a document that refers to the miser's mercenary activities.\n This type of deathbed scene derives from an early printed book, the \n " +p145276 +sa(dp145277 +g25268 +S'Countess Ebba Sparre' +p145278 +sg25270 +S'S\xc3\xa9bastien Bourdon' +p145279 +sg25273 +S'oil on canvas' +p145280 +sg25275 +S'1652/1653' +p145281 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d59.jpg' +p145282 +sg25267 +S"While at Stockholm, Bourdon painted Ebba Sparre (1626-1662), a \n lady-in-waiting to and intimate companion of Sweden's Queen Christina. The \n animated portrayal of the countess and the bold lighting derive from \n portraits by the Flemish master \n " +p145283 +sa(dp145284 +g25268 +S'Omer Talon' +p145285 +sg25270 +S'Philippe de Champaigne' +p145286 +sg25273 +S'oil on canvas' +p145287 +sg25275 +S'1649' +p145288 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d5b.jpg' +p145289 +sg25267 +S"Champaigne, the only artist represented in this tour who never visited Italy, was born and trained in Brussels. Arriving in Paris in 1621, he adapted the French decorative style but retained his Flemish realism and interest in minute details. A founder of the academy in France, by the 1640s Champaigne converted to Jansenism, a particularly severe branch of Catholicism, and his subsequent works reveal an ascetic tendency toward grays and browns.\n Omer Talon (1595–1652), a liberal attorney general of the French parliament, fought against the tyranny of Louis XIV's ministers. The somber tonality of judicial robes in blood red and ash black typifies Champaigne's later work. The artist's Flemish heritage explains the candid face with its stern gaze and the attention to detailed textures, but French influence accounts for the formal composition, such as the open robe creating a diagonal line that rises toward the head.\n " +p145290 +sa(dp145291 +g25268 +S'Still Life with Game' +p145292 +sg25270 +S'Jean Sim\xc3\xa9on Chardin' +p145293 +sg25273 +S'oil on canvas' +p145294 +sg25275 +S'probably 1750s' +p145295 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d5f.jpg' +p145296 +sg25267 +S'When Chardin returned to still-life painting late in his life, he \r\n employed a freer style than the more refined technique he had used for \r\n figures. His contemporaries painted dead game with trompe-l\'oeil \r\n (literally, "fool the eye") realism and great virtuosity, but Chardin chose \r\n instead to evoke the limp plumpness of these animals with softness and a \r\n certain ambiguity. An array of tones spreads like light diffusing across \r\n this canvas. Vivid highlights of turquoise and coral in the feathers \r\n punctuate the warm neutrals and are echoed with ever diminishing strength \r\n from left to right. The feathers are painted with smooth scalloping arcs, \r\n while the fur of the rabbits is made with thicker paint puckered on the \r\n surface. Approach the painting, as the critic Diderot suggested visitors to \r\n the Salon exhibitions do, and the forms of the game disappear into a mosaic \r\n of pure paint. "Move away," Diderot continued, "and everything creates \r\n itself and reappears."\n ' +p145297 +sa(dp145298 +g25268 +S'The Attentive Nurse' +p145299 +sg25270 +S'Jean Sim\xc3\xa9on Chardin' +p145300 +sg25273 +S'oil on canvas' +p145301 +sg25275 +S'1747' +p145302 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d60.jpg' +p145303 +sg25267 +S'Through the simple action depicted here, Chardin reveals dignity and \r\n beauty in everyday life. The woman\'s expression as she concentrates on her \r\n task suggests that her thoughts are elsewhere, perhaps with the invalid \r\n whose meal she is preparing (Chardin lost his first wife and young daughter \r\n to illness). Each object receives careful treatment from the artist\'s \r\n brush. The table setting is a harmony of white tones: jug, tablecloth, egg, \r\n and plate, each subtly different. Every pot, each piece of crockery is \r\n palpably present. As Diderot wrote of Chardin, "it is not white, red, or \r\n black pigment that you mix on your palette, it is the very substance of \r\n objects."\n Chardin\'s modest subjects—like this and that of the \n ' +p145304 +sa(dp145305 +g25268 +S'Chronico (Genius of Time)' +p145306 +sg25270 +S'Master of the E-Series Tarocchi' +p145307 +sg25273 +S'engraving' +p145308 +sg25275 +S'c. 1465' +p145309 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6ed.jpg' +p145310 +sg25267 +g27 +sa(dp145311 +g25268 +S'The Kitchen Maid' +p145312 +sg25270 +S'Jean Sim\xc3\xa9on Chardin' +p145313 +sg25273 +S'oil on canvas' +p145314 +sg25275 +S'1738' +p145315 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d61.jpg' +p145316 +sg25267 +g27 +sa(dp145317 +g25268 +S'Queen Henrietta Maria with Sir Jeffrey Hudson' +p145318 +sg25270 +S'Sir Anthony van Dyck' +p145319 +sg25273 +S'oil on canvas' +p145320 +sg25275 +S'1633' +p145321 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e20.jpg' +p145322 +sg25267 +S"In 1632 Anthony van Dyck was invited to England to work at the court of Charles I. There he painted many impressive portraits, including this depiction of Queen Henrietta Maria at age 24. The French–born queen exerted a strong influence on court fashion and protocol, introducing to England the fashions of the Continent; she is shown here dressed for the hunt in a satin riding costume with a delicate lace collar instead of the stiff Elizabethan ruff.\n The queen's love of amusement is symbolized by the presence of the dwarf and monkey, both royal favorites. Jeffrey Hudson, a dwarf, had been presented to the Queen as a gift when he was eight years old and remained a faithful advisor until her death.\n The portrait superbly demonstrates Van Dyck's working methods and the reasons for his phenomenal success. Henrietta probably posed only briefly for a sketch, so the painting itself had to be executed from a model or mannequin attired in the queen's costume. The artist shows a tall woman with an oval face, pointed chin, and long nose. According to sketches done from life, however, the queen was actually a petite person with a round head and small features. She thus has been greatly idealized in the portrait. The fluted column emphasizes her already exaggerated height, and the crown and cloth of gold signify her royalty.\n " +p145323 +sa(dp145324 +g25268 +S'Saint Jerome Penitent [left panel]' +p145325 +sg25270 +S'Jan Gossaert' +p145326 +sg25273 +S'oil on panel' +p145327 +sg25275 +S'c. 1509/1512' +p145328 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e15.jpg' +p145329 +sg25267 +S"These two panels are painted with the\r\n subtly varied grays known by the French term “grisaille,” a palette that\r\n mimicked the appearance of stone sculpture and was used most often, as here,\r\n on the exteriors of altarpiece shutters.\n Seen in the desert where he lived for a time as a hermit, Jerome holds\r\n the stone he used to beat his chest in penance for the visions of pleasure\r\n that interrupted his meditations. He looks to a crucifix growing out of a\r\n gnarled and lifeless tree. The imagery suggests both death and salvation,\r\n and it would also recall for contemporary viewers medieval legends\r\n connecting the wood of the cross to the Tree of Life and the Tree of\r\n Knowledge. Jerome is accompanied by the lion who, according to legend,\r\n became his faithful companion after the saint removed a thorn from its paw.\r\n In the distance unfolds the story of his false accusation of the lion—that it had devoured a caravan donkey—and their subsequent joyful reunion\r\n at the upper right.\n Gossaert was apparently the first Netherlandish artist to travel in\r\n Italy, but it is unclear whether he painted Saint Jerome before or after his\r\n trip. Jerome's robust physique and beardlessness, uncommon in medieval\r\n representations, could have been inspired by ancient or Italian Renaissance\r\n works, but the darkly threatening landscape and the lion's unnaturally flat\r\n face seem more at home in northern art.\n " +p145330 +sa(dp145331 +g25268 +S'Saint Jerome Penitent [right panel]' +p145332 +sg25270 +S'Jan Gossaert' +p145333 +sg25273 +S'oil on panel' +p145334 +sg25275 +S'c. 1509/1512' +p145335 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005ac.jpg' +p145336 +sg25267 +g27 +sa(dp145337 +g25268 +S'The Adoration of the Magi' +p145338 +sg25270 +S'North Netherlandish 15th Century' +p145339 +sg25273 +S'overall: 183 x 164.5 cm (72 1/16 x 64 3/4 in.)\r\nframed: 215.9 x 203.2 x 12 cm (85 x 80 x 4 3/4 in.)' +p145340 +sg25275 +S'\noil on canvas transferred from panel' +p145341 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004a7.jpg' +p145342 +sg25267 +g27 +sa(dp145343 +g25268 +S'The Marriage at Cana' +p145344 +sg25270 +S'Master of the Catholic Kings' +p145345 +sg25273 +S'oil on panel' +p145346 +sg25275 +S'c. 1495/1497' +p145347 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004aa.jpg' +p145348 +sg25267 +S"Christ is shown here at the scene of his first miracle—the transformation of water into wine. He stands at the banquet table of a wedding, his right hand raised in a gesture of benediction, while a servant, pointing to the clay jars on the floor as if to explain what has just taken place, offers the bridal pair a goblet of the transformed liquid.\n That the artist has absorbed the traditions of 15th–century Flemish painting is evident in his mastery of the oil technique and his meticulous rendering of texture and minute detail. Combined with these elements are purely Spanish ones, such as the solemn faces with downturned mouths and the recognizably Spanish costumes.\n The unidentified artist's name is derived from his principal work, \n " +p145349 +sa(dp145350 +g25268 +S'Christ among the Doctors' +p145351 +sg25270 +S'Master of the Catholic Kings' +p145352 +sg25273 +S'oil on panel' +p145353 +sg25275 +S'c. 1495/1497' +p145354 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004ab.jpg' +p145355 +sg25267 +S'Ferdinand and Isabel became known as the "Catholic Kings" because of \r\n their religious zeal, offering the Jews and Moors the choice of converting \r\n to Catholicism or being expelled from Spain. Two paintings in the National \r\n Gallery, which depict coats of arms of Ferdinand and Isabel, must have been \r\n commissioned by or for the monarchs. Along with six pictures now in other \r\n museums, they formed parts of an altarpiece probably painted for a church \r\n or convent in Valladolid in north central Spain. The high quality of the \r\n altarpiece and its probable royal patronage have given the painter the name \r\n Master of the Catholic Kings.\n The last incident of Jesus\' childhood recorded in the Bible derives from \r\n Luke (2:41-52). Leaving Jerusalem after celebrating the Passover feast, \r\n Joseph and Mary discovered that Jesus was not in the caravan. Returning and \r\n searching for three days, they found the boy in scholarly dispute in the \r\n temple. \n Deep space is skillfully indicated by contrasting the large scale of the \r\n foreground figures with the distant view of a town glimpsed through the \r\n door behind Joseph and Mary. The stained-glass windows bear the heraldry of \r\n Ferdinard and Isabel as well as of Maximilian I of the Holy Roman Empire. \r\n The Spanish monarchs\' daughter and son were married to the son and daughter \r\n respectively of the Holy Roman Emperor in 1496 and 1497. Thus the \r\n altarpiece may have commemorated these dynastic weddings.\n ' +p145356 +sa(dp145357 +g25268 +S'Landscape with Merchants' +p145358 +sg25270 +S'Claude Lorrain' +p145359 +sg25273 +S'oil on canvas' +p145360 +sg25275 +S'c. 1629' +p145361 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c15.jpg' +p145362 +sg25267 +g27 +sa(dp145363 +g25268 +S'A Miracle of Saint Benedict' +p145364 +sg25270 +S'French 15th Century' +p145365 +sg25273 +S'painted surface: 91.5 x 78 cm (36 x 30 11/16 in.)\r\noriginal panel: 94 x 79.4 cm (37 x 31 1/4 in.)\r\nframed: 109.5 x 95.7 x 7.6 cm (43 1/8 x 37 11/16 x 3 in.)' +p145366 +sg25275 +S'\noil on oak' +p145367 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005aaf.jpg' +p145368 +sg25267 +g27 +sa(dp145369 +g25268 +S'Saint Veronica [obverse]' +p145370 +sg25270 +S'Hans Memling' +p145371 +sg25273 +S'oil on panel' +p145372 +sg25275 +S'c. 1470/1475' +p145373 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005bb.jpg' +p145374 +sg25267 +S"This two-sided panel was once the right wing of a diptych. On the front we see Veronica, among the most venerated saints of the Middle Ages and Renaissance. Several legends about her were conflated and she was identified with different people, including the compassionate woman who gave Jesus a cloth as he struggled on the way to Calvary; when he wiped his brow with the cloth, it was miraculously imprinted with his face. By the 12th century, a cloth believed to be Veronica's veil had entered the Vatican. Indulgences (reducing time in purgatory and even remitting sin) were granted for reciting prayers either before the relic or before images of it. Veronica was also invoked against the danger of sudden death before confession. On the \n Memling worked primarily for the middle class and the resident Italian community in Bruges. He apparently studied with \n " +p145375 +sa(dp145376 +g25268 +S'Council of High Priests' +p145377 +sg25270 +S'German 15th Century' +p145378 +sg25273 +S'Schreiber Manuel, no. 3448' +p145379 +sg25275 +S'\nhand-colored woodcut' +p145380 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a602.jpg' +p145381 +sg25267 +g27 +sa(dp145382 +g25268 +S'Chalice of Saint John the Evangelist [reverse]' +p145383 +sg25270 +S'Hans Memling' +p145384 +sg25273 +S'oil on panel' +p145385 +sg25275 +S'c. 1470/1475' +p145386 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000059f.jpg' +p145387 +sg25267 +g27 +sa(dp145388 +g25268 +S'Christ among the Doctors [obverse]' +p145389 +sg25270 +S'Bernard van Orley' +p145390 +sg25273 +S'oil on panel' +p145391 +sg25275 +S'c. 1513' +p145392 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005bd.jpg' +p145393 +sg25267 +g27 +sa(dp145394 +g25268 +S'Putto with Arms of Jacques Co\xc3\xabne [reverse]' +p145395 +sg25270 +S'Bernard van Orley' +p145396 +sg25273 +S'oil on panel' +p145397 +sg25275 +S'c. 1513' +p145398 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a0005974.jpg' +p145399 +sg25267 +g27 +sa(dp145400 +g25268 +S'The Marriage of the Virgin' +p145401 +sg25270 +S'Bernard van Orley' +p145402 +sg25273 +S'oil on panel' +p145403 +sg25275 +S'c. 1513' +p145404 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005be.jpg' +p145405 +sg25267 +S'The panels, \n The marriage of the Virgin and Joseph is a story not found in the Bible but popular in late medieval religious literature. In \n Though van Orley assimilated Renaissance style, it is not clear whether he actually traveled to Italy. Italian style moved north in a number of ways. The elaborate Renaissance porticoes here may have been influenced, for example, by the drawings of other northern artists. Or they may reflect the ceremonial structures erected for the triumphal entry of Holy Roman Emperor Charles V into Bruges. A few years after these panels were painted, van Orley himself received a series of influential designs by \n ' +p145406 +sa(dp145407 +g25268 +S'The Holy Family on the Steps' +p145408 +sg25270 +S'Artist Information (' +p145409 +sg25273 +S'French, 1594 - 1665' +p145410 +sg25275 +S'(related artist)' +p145411 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d4d.jpg' +p145412 +sg25267 +g27 +sa(dp145413 +g25268 +S'The Ponte Salario' +p145414 +sg25270 +S'Hubert Robert' +p145415 +sg25273 +S'oil on canvas' +p145416 +sg25275 +S'c. 1775' +p145417 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d8c.jpg' +p145418 +sg25267 +S'Hubert Robert, known as "Robert of the Ruins," spent eleven years as a student\nin Rome from 1754 until 1765. During his sojourn he studied at the French Academy,\nbut dedicated most of his energy to sketching the Eternal City and the Roman \n In \n Robert has combined the grandeur of ancient Rome with the anecdotal. For example,\nthe young man on the right bank admires the washerwoman opposite, while the old\nwoman on the pier entices her cat to return. Robert, by linking present and past\nunder the warm light of the Italian sun, reminds us that bridges are emblems of\nthe passage of time, thus evoking a nostalgia for the glory of ancient Rome.\n ' +p145419 +sa(dp145420 +g25268 +S'Saint Jerome' +p145421 +sg25270 +S'Francesco Benaglio' +p145422 +sg25273 +S'tempera on panel' +p145423 +sg25275 +S'c. 1470/1475' +p145424 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000760.jpg' +p145425 +sg25267 +g27 +sa(dp145426 +g25268 +S'Christ Carrying the Cross' +p145427 +sg25270 +S'Benvenuto di Giovanni' +p145428 +sg25273 +S'tempera on panel' +p145429 +sg25275 +S'probably 1491' +p145430 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000784.jpg' +p145431 +sg25267 +g27 +sa(dp145432 +g25268 +S'The Crucifixion' +p145433 +sg25270 +S'Benvenuto di Giovanni' +p145434 +sg25273 +S'tempera on panel' +p145435 +sg25275 +S'probably 1491' +p145436 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000785.jpg' +p145437 +sg25267 +g27 +sa(dp145438 +g25268 +S'Christ in Limbo' +p145439 +sg25270 +S'Benvenuto di Giovanni' +p145440 +sg25273 +S'tempera on panel' +p145441 +sg25275 +S'probably 1491' +p145442 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000771.jpg' +p145443 +sg25267 +g27 +sa(dp145444 +g25268 +S'Mocking of Christ' +p145445 +sg25270 +S'German 15th Century' +p145446 +sg25273 +S'Schreiber Manuel, no. 3448' +p145447 +sg25275 +S'\nhand-colored woodcut' +p145448 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a601.jpg' +p145449 +sg25267 +g27 +sa(dp145450 +g25268 +S'The Resurrection' +p145451 +sg25270 +S'Benvenuto di Giovanni' +p145452 +sg25273 +S'tempera on panel' +p145453 +sg25275 +S'probably 1491' +p145454 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000786.jpg' +p145455 +sg25267 +g27 +sa(dp145456 +g25268 +S"Giuliano de' Medici" +p145457 +sg25270 +S'Sandro Botticelli' +p145458 +sg25273 +S'tempera on panel' +p145459 +sg25275 +S'c. 1478/1480' +p145460 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005c8.jpg' +p145461 +sg25267 +S"Giuliano Medici, the younger brother of Lorenzo, was nursing a bad knee on Easter Day 1478 and had to be helped to the cathedral—by the very men who were plotting to kill him and his brother during mass. The assassins, members and supporters of the Pazzi family, banking rivals of the Medici, awaited their signal. As worshipers bowed their heads at the elevation of the host, Giuliano was brutally stabbed. Lorenzo escaped to the sacristy, remaining there while the Pazzi partisans attempted to seize the government. They soon failed, however, and Lorenzo resumed control.\n The murder of Giuliano shocked Florence, and a number of portraits were ordered for public display to serve both as memorials and as warnings to other plotters. Botticelli's painting may have been the prototype for others, and lent symbolic gravity to Guiliano\xe2\x80\x99s passing, showing him as an icon, almost a saint. The open window and mourning dove were familiar symbols of death, alluding to the flight of the soul and the deceased's passage to the afterlife. Some scholars, noting the lowered eyelids, suggest this portrait was painted posthumously from a death mask.\n " +p145462 +sa(dp145463 +g25268 +S'River Landscape' +p145464 +sg25270 +S'Annibale Carracci' +p145465 +sg25273 +S'oil on canvas' +p145466 +sg25275 +S'c. 1590' +p145467 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000600.jpg' +p145468 +sg25267 +S"It might be said that with paintings like this one, Annibale Carracci invented the landscape as\na subject for Italian baroque painting. Nature here is appreciated first and foremost for herself\nand not as the backdrop for a story. A mellow sunlight dapples the land and picks out the ripples\ndisturbing the surface of the river. The gold in the treetops suggests a day in early autumn.\nBrightly clad in red and white, a boatman poles his craft through the shallow water.\n In the company of his brother Agostino and his cousin Lodovico Carracci, Annibale made\nexcursions into the country in order to sketch the landscape. From these quick studies made on\nthe spot he worked up his paintings in the studio. The resulting composition is an artful\nbalancing of forms. As the river wends its way through the countryside towards the foreground,\nthe spits of land that chart its course are made to recede and project in an alternating rhythm of\ntriangles. Trees, like signposts, mark the progress of recession into the distance. At the same time\nthe bold strokes of dark trees in the foreground form a dramatic pattern on the surface to snap the\nspectator's attention back from the hazy blue of the distant horizon.\n " +p145469 +sa(dp145470 +g25268 +S'The Dream of Saint Catherine of Alexandria' +p145471 +sg25270 +S'Lodovico Carracci' +p145472 +sg25273 +S'oil on canvas' +p145473 +sg25275 +S'c. 1593' +p145474 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000601.jpg' +p145475 +sg25267 +S"We recognize this sleeping figure as Saint Catherine by the fragment of spiked wheel in the\nlower left corner, which was the instrument of an attempted martyrdom. Here Lodovico Carracci\nrepresented her legendary dream in which Mary and the infant Christ, accompanied by\nangels, appeared to her. Plighting his troth, Christ placed a ring on Catherine's finger, and\nthrough this mystic marriage she became his bride. To cast the event as a dream, rather than\nhaving Saint Catherine receive the ring while awake, is Lodovico's innovation.\n Two angels at the left look on with protective tenderness, while others barely emerge amid\nthe vaporous bronze radiance at the right -- spirit becoming matter. The figures, solid and robust,\nbask in an indeterminate setting. A languorous warmth pervades the scene and slows the\ncomposition. At the same time, the quirky folds and pleats cascading down Catherine's garments\nimpart a vertiginous sensation -- the dizziness of sleep.\n Lodovico was the eldest of the three Carracci, the family of Bolognese artists who\ninaugurated the age of the baroque. His depictions of saints in states of visionary ecstasy were\nhighly prized in an age when the purpose of religious art was to arouse intensely pious emotions\nin the spectator.\n " +p145476 +sa(dp145477 +g25268 +S'Madonna and Child with Saint John the Baptist and Saint Peter' +p145478 +sg25270 +S'Cimabue' +p145479 +sg25273 +S', probably c. 1290' +p145480 +sg25275 +S'\n' +p145481 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cc0.jpg' +p145482 +sg25267 +g27 +sa(dp145483 +g25268 +S'Madonna and Child with Saints and Angels' +p145484 +sg25270 +S'Bernardo Daddi' +p145485 +sg25273 +S'tempera on panel' +p145486 +sg25275 +S'1330s' +p145487 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a80.jpg' +p145488 +sg25267 +g27 +sa(dp145489 +g25268 +S'Lucrezia Tornabuoni' +p145490 +sg25270 +S'Domenico Ghirlandaio' +p145491 +sg25273 +S', c. 1475' +p145492 +sg25275 +S'\n' +p145493 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000086c.jpg' +p145494 +sg25267 +g27 +sa(dp145495 +g25268 +S'Saint Anthony of Padua' +p145496 +sg25270 +S'Vincenzo Foppa' +p145497 +sg25273 +S'oil (?) on panel' +p145498 +sg25275 +S'c. 1495/1500' +p145499 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007c3.jpg' +p145500 +sg25267 +g27 +sa(dp145501 +g25268 +S'Bishop Altobello Averoldo' +p145502 +sg25270 +S'Francesco Francia' +p145503 +sg25273 +S'oil on panel' +p145504 +sg25275 +S'c. 1505' +p145505 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000801.jpg' +p145506 +sg25267 +g27 +sa(dp145507 +g25268 +S'Forteza (Fortitude)' +p145508 +sg25270 +S'Master of the E-Series Tarocchi' +p145509 +sg25273 +S'engraving' +p145510 +sg25275 +S'c. 1465' +p145511 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6e9.jpg' +p145512 +sg25267 +g27 +sa(dp145513 +g25268 +S'Madonna and Child with a Pomegranate' +p145514 +sg25270 +S'Lorenzo di Credi' +p145515 +sg25273 +S'oil on panel' +p145516 +sg25275 +S'1475/1480' +p145517 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000780.jpg' +p145518 +sg25267 +S'The workshop of a Renaissance artist was both studio and school, where \r\n apprentices were trained to paint in the style of the master. Since large \r\n commissions required the efforts of many painters, backgrounds, still-life \r\n details, and secondary figures were often painted by assistants. A master \r\n might also give lesser commissions entirely over to his assistants, simply \r\n approving the work as meeting his standard. It is often difficult to \r\n distinguish the work of the master from that of talented assistants whose \r\n individual styles were not yet fully developed.\n This small devotional panel is painted in the style of \n ' +p145519 +sa(dp145520 +g25268 +S'Portrait of a Young Lady' +p145521 +sg25270 +S'Artist Information (' +p145522 +sg25273 +S'Italian, 1452 - 1519' +p145523 +sg25275 +S'(related artist)' +p145524 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b12.jpg' +p145525 +sg25267 +g27 +sa(dp145526 +g25268 +S'The Infant Savior' +p145527 +sg25270 +S'Andrea Mantegna' +p145528 +sg25273 +S'tempera on canvas' +p145529 +sg25275 +S'c. 1460' +p145530 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007c5.jpg' +p145531 +sg25267 +g27 +sa(dp145532 +g25268 +S'Scenes from the Life of Saint John the Baptist' +p145533 +sg25270 +S'Master of the Life of Saint John the Baptist' +p145534 +sg25273 +S'tempera on panel' +p145535 +sg25275 +S'probably 1330/1340' +p145536 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000be7.jpg' +p145537 +sg25267 +S'This panel, the Gallery’s \n Here we see a sequence of three separate events from the\r\n Baptist’s infancy.\r\n First, two women admire the new infant, while a child peers in from\r\n the\r\n doorway. Next, John’s father, Zacharias, writes “his name is John”\r\n on a\r\n scroll. While writing he regains the power of speech, which had\r\n been taken\r\n from him because he was skeptical of God’s announcement that his\r\n elderly\r\n wife would conceive. One witness looks right, leading our eye to\r\n the third scene, where the infant John struggles while being \r\n circumcised.\n The panel’s strong narrative sense and broad, simple figures\r\n reflect\r\n Giotto’s influence. But its strongly contrasting colors and rich\r\n detail—the patterned background, the heavy curtains, and\r\n architectural decoration—express the younger artist’s own \r\n preferences.\n ' +p145538 +sa(dp145539 +g25268 +S'Elijah Taken Up in a Chariot of Fire' +p145540 +sg25270 +S'Giuseppe Angeli' +p145541 +sg25273 +S'oil on canvas' +p145542 +sg25275 +S'c. 1740/1755' +p145543 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005f8.jpg' +p145544 +sg25267 +g27 +sa(dp145545 +g25268 +S'Portrait of a Man' +p145546 +sg25270 +S'Tyrolean 15th Century' +p145547 +sg25273 +S'overall: 56.5 x 40 cm (22 1/4 x 15 3/4 in.)' +p145548 +sg25275 +S'\noil on panel' +p145549 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000542.jpg' +p145550 +sg25267 +g27 +sa(dp145551 +g25268 +S'Putti with a Wine Press' +p145552 +sg25270 +S'Artist Information (' +p145553 +sg25273 +S'Italian, 1483 - 1520' +p145554 +sg25275 +S'(related artist)' +p145555 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000887.jpg' +p145556 +sg25267 +g27 +sa(dp145557 +g25268 +S'The Death of Saint Anthony' +p145558 +sg25270 +S'Artist Information (' +p145559 +sg25273 +S'(painter)' +p145560 +sg25275 +S'\n' +p145561 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000862.jpg' +p145562 +sg25267 +g27 +sa(dp145563 +g25268 +S'Portrait of a Knight' +p145564 +sg25270 +S'Giovanni Girolamo Savoldo' +p145565 +sg25273 +S'oil on canvas' +p145566 +sg25275 +S'c. 1525' +p145567 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000824.jpg' +p145568 +sg25267 +g27 +sa(dp145569 +g25268 +S'Iliaco (Genius of the Sun)' +p145570 +sg25270 +S'Master of the E-Series Tarocchi' +p145571 +sg25273 +S'engraving' +p145572 +sg25275 +S'c. 1465' +p145573 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6ee.jpg' +p145574 +sg25267 +g27 +sa(dp145575 +g25268 +S'The Crucifixion' +p145576 +sg25270 +S'Luca Signorelli' +p145577 +sg25273 +S'tempera and oil (?) on panel' +p145578 +sg25275 +S'c. 1504/1505' +p145579 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000078a.jpg' +p145580 +sg25267 +g27 +sa(dp145581 +g25268 +S'Saint George and the Dragon' +p145582 +sg25270 +S'Sodoma' +p145583 +sg25273 +S'oil on panel' +p145584 +sg25275 +S'probably 1518' +p145585 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000827.jpg' +p145586 +sg25267 +g27 +sa(dp145587 +g25268 +S'Young Lady in a Tricorn Hat' +p145588 +sg25270 +S'Giovanni Battista Tiepolo' +p145589 +sg25273 +S'oil on canvas' +p145590 +sg25275 +S'c. 1755/1760' +p145591 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000911.jpg' +p145592 +sg25267 +g27 +sa(dp145593 +g25268 +S'Apollo Pursuing Daphne' +p145594 +sg25270 +S'Giovanni Battista Tiepolo' +p145595 +sg25273 +S'oil on canvas' +p145596 +sg25275 +S'c. 1755/1760' +p145597 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000628.jpg' +p145598 +sg25267 +S"Throughout his career Tiepolo painted small pictures of mythological themes, which proved extremely popular. The subjects of these works came from the best–known episodes from ancient literature, but his conception of the stories was varied and original. His depiction of Apollo and Daphne comes directly from Ovid's \n The \n " +p145599 +sa(dp145600 +g25268 +S"A Procurator of Saint Mark's" +p145601 +sg25270 +S'Jacopo Tintoretto' +p145602 +sg25273 +S'oil on canvas' +p145603 +sg25275 +S'1575/1585' +p145604 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000088a.jpg' +p145605 +sg25267 +S"Beginning in the 1550s, Tintoretto and his studio received numerous\n commissions for portraits of Venetian civic leaders. This work, painted\n entirely by Tintoretto between 1575 and 1585, is one of the finest\n surviving examples of a new and fashionable portrait type.\n The sitter is dressed in a crimson velvet robe lined with ermine. A\n richly patterned stole is draped over his right shoulder. Together, these\n garments identify him as a procurator, a Venetian civic official similar to\n a chancellor or senator. Seated in a three-quarter pose, the man turns his\n head as if to address the viewer. His position of authority is conveyed by\n his serious expression and his firm grip on the arm of the chair. The\n painting's large format and the voluminous bulk of the costume reinforce\n the unidentified sitter's high official status.\n With its saturated colors and assured brushwork, this portrait stands\n out as a superb example of Tintoretto's later painting style. While the\n garment is very thinly painted with red glazes, broad strokes of white\n create highlights on the edges of the fabric folds.\n " +p145606 +sa(dp145607 +g25268 +S'Alessandro Alberti with a Page' +p145608 +sg25270 +S'Artist Information (' +p145609 +sg25273 +S'Italian, c. 1490 - 1576' +p145610 +sg25275 +S'(related artist)' +p145611 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000082d.jpg' +p145612 +sg25267 +g27 +sa(dp145613 +g25268 +S'The Flagellation of Christ' +p145614 +sg25270 +S'Bacchiacca' +p145615 +sg25273 +S'oil on panel' +p145616 +sg25275 +S'c. 1512/1515' +p145617 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000808.jpg' +p145618 +sg25267 +g27 +sa(dp145619 +g25268 +S'Rebecca at the Well' +p145620 +sg25270 +S'Veronese' +p145621 +sg25273 +S'oil on canvas' +p145622 +sg25275 +S'1580/1585' +p145623 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000831.jpg' +p145624 +sg25267 +S"As suggested by his name of Veronese, Paolo Caliari was born in the\n northern Italian town of Verona. Following his training and early success\n there, the artist moved to Venice in 1553, where he, like Tintoretto and\n Bassano, was influenced by Titian's bold coloristic and compositional\n approaches.\n The story of Rebecca at the well comes from the Book of Genesis. The\n aged Abraham, wanting a wife for his son Isaac, sent his servant Eliezer to\n his homeland of Mesopotamia to find a suitable woman. Tired after his long\n journey, Eliezer stopped at a well and prayed for guidance. When Rebecca\n offered water to Eliezer and his camels, the old steward recognized her as\n the appointed bride and presented her with the betrothal jewels offered by\n the kneeling servant.\n Originally part of a decorative cycle of ten biblical scenes, this large\n canvas displays an interest in nature that is often noted in Veronese's\n later works. The deeply receding landscape at right balances the large,\n elegantly posed figures in the left foreground. Gleaming copper pots and\n luxurious orange, rose, and yellow fabrics provide a sharp contrast with\n the darkness of the lush vegetation and the evening sky. The fanciful\n camels add an exotic touch to Veronese's poetic interpretation of the\n story.\n " +p145625 +sa(dp145626 +g25268 +S'The Death of Saint Clare' +p145627 +sg25270 +S'Master of Heiligenkreuz' +p145628 +sg25273 +S'oil on panel' +p145629 +sg25275 +S'c. 1400/1410' +p145630 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005b5.jpg' +p145631 +sg25267 +S"Saint Clare, a wealthy woman from the central Italian town of Assisi, gave\nup all her possessions to pursue the goals of poverty and service preached by Saint\nFrancis. She founded an order of nuns known as the Poor Clares, which was recognized\nby the Pope in 1253. This painting depicts the vision of the death of Saint Clare\nas experienced by one of her followers, Sister Benvenuta of Diambra.\n In the vision of Saint Benvenuta, the Virgin Mary and a procession of virgin martyrs\nappeared to Saint Clare on her deathbed. Here Mary, dressed in a rich brocade robe,\nsupports Saint Clare's head, while the other elegantly robed and crowned saints\nfollow behind, identified by the tiny attributes they hold.\n The work of the Master of Heiligenkreuz, who was probably active in Lower Austria,\nillustrates the cosmopolitan aspect of the International Style, which flourished\naround 1400. While his exaggerated figures with their bulbous foreheads and clinging\ndrapery are characteristically Austrian, the anonymous painter must also have been\naware of the most advanced art produced at the courts of Paris and Prague. Thus\nthe surface of the panel is worked in a variety of different techniques to fashion\na particularly splendid object.\n " +p145632 +sa(dp145633 +g25268 +S'The Crucifixion' +p145634 +sg25270 +S'Artist Information (' +p145635 +sg25273 +S'German, 1516 - 1573' +p145636 +sg25275 +S'(related artist)' +p145637 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000544.jpg' +p145638 +sg25267 +g27 +sa(dp145639 +g25268 +S'Madonna and Child with Saint Jerome, Saint Bernardino, and Angels' +p145640 +sg25270 +S'Sano di Pietro' +p145641 +sg25273 +S'tempera on panel' +p145642 +sg25275 +S'c. 1460/1470' +p145643 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000065e.jpg' +p145644 +sg25267 +S"In the mid-1400s, Sano di Pietro's workshop was the \r\nbusiest in Siena. He and his assistants produced—we might almost say mass produced—scores of devotional panels \r\nlike this one, often for religious fraternities. His half-length Madonnas are iconlike, objects for contemplation. Mother and child are surrounded by saints and angels, wreathed by their halos. The bright colors and the rich gold, textured with punched decoration, have a jewellike quality that appealed to the Sienese taste for ornament and luxury. Sano's images met conventional religious expectations as well. This Madonna's wide oval face and narrow almond eyes have the look of a Virgin painted a hundred years earlier.\n The saints are Jerome (left) and Bernardino (right). Sano would have seen the latter preaching in the Campo, Siena's central public square. In frescoes, Sano recorded the throngs and festival atmosphere that attended Bernardino's dawn sermons. Here he gives the saint the sunken cheeks \r\nof a man who has lost all his teeth to ascetic self-denial.\n When first documented as an independent master, Sano was already in his thirties. He seems to have studied in \n " +p145645 +sa(dp145646 +g25268 +S'Melpomene' +p145647 +sg25270 +S'Master of the S-Series Tarocchi' +p145648 +sg25273 +S'engraving' +p145649 +sg25275 +S'probably c. 1470' +p145650 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c703.jpg' +p145651 +sg25267 +g27 +sa(dp145652 +g25268 +S'Christ in Limbo' +p145653 +sg25270 +S'Artist Information (' +p145654 +sg25273 +S'German, 1516 - 1573' +p145655 +sg25275 +S'(related artist)' +p145656 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000580.jpg' +p145657 +sg25267 +g27 +sa(dp145658 +g25268 +S'Piet\xc3\xa0 (The Dead Christ Mourned by Nicodemus and Two Angels)' +p145659 +sg25270 +S'Filippino Lippi' +p145660 +sg25273 +S'oil (and possibly tempera) on panel' +p145661 +sg25275 +S'c. 1500' +p145662 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000778.jpg' +p145663 +sg25267 +g27 +sa(dp145664 +g25268 +S'The Coronation of the Virgin' +p145665 +sg25270 +S'Paolo Veneziano' +p145666 +sg25273 +S'tempera on panel' +p145667 +sg25275 +S'1324' +p145668 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a0a.jpg' +p145669 +sg25267 +g27 +sa(dp145670 +g25268 +S'Saint Jerome with Saint Paula and Saint Eustochium' +p145671 +sg25270 +S'Artist Information (' +p145672 +sg25273 +S'(painter)' +p145673 +sg25275 +S'\n' +p145674 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004b4.jpg' +p145675 +sg25267 +S"In seventeenth-century Spain, the religious orders were unrivaled\n in their patronage of the arts. Among the most important\n were the Hieronymites, whose white and brown habits are worn\n by these three saints: Paula, her daughter Eustochium, and\n Sophronius Eusebius Hieronymous, called Jerome in English.\n Under Jerome's spiritual direction, the two women founded a\n hospice and convent in the Holy Land that were regarded as\n the initial establishments of the Hieronymite Order. Paula and\n Jerome hold books, alluding to Jerome's role as the translator\n of the Bible into Latin. Paula, a well-educated woman from an\n illustrious Roman family, assisted Jerome with translations from\n Greek. Although Jerome is traditionally shown in a cardinal's\n garb, this is ahistorical. He died around 420, but the office of\n cardinal was not created until the end of the eleventh century,\n and the red robe and hat were not adopted until the mid-1200s.\n This work relies on a formula Zurbarán used for a series\n of pictures he painted in the late 1630s for the Hieronymite\n monastery of Guadalupe. There is extensive reworking in the\n contours of the figures -- probably an indication that while\n Zurbarán established the composition, the actual painting was\n carried out by assistants. Paula's robe, for example, appears\n doughy and lacks volume as it falls to the floor. Her stony expression\n and awkward thumb also suggest the hand of an assistant.\n " +p145676 +sa(dp145677 +g25273 +S'overall: 75.6 x 62 x 31.8 cm (29 3/4 x 24 7/16 x 12 1/2 in.)' +p145678 +sg25267 +g27 +sg25275 +S'\nmarble' +p145679 +sg25268 +S'Eagle' +p145680 +sg25270 +S'Italian 16th Century' +p145681 +sa(dp145682 +g25273 +S'(sculptor)' +p145683 +sg25267 +g27 +sg25275 +S'\n' +p145684 +sg25268 +S'The Adoration of the Magi' +p145685 +sg25270 +S'Artist Information (' +p145686 +sa(dp145687 +g25268 +S'The Flight into Egypt' +p145688 +sg25270 +S'Artist Information (' +p145689 +sg25273 +S'(sculptor)' +p145690 +sg25275 +S'\n' +p145691 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d73.jpg' +p145692 +sg25267 +g27 +sa(dp145693 +g25268 +S'A Nereid' +p145694 +sg25270 +S'Giuseppe Mazzuoli' +p145695 +sg25273 +S', c. 1705/1715' +p145696 +sg25275 +S'\n' +p145697 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c39.jpg' +p145698 +sg25267 +S"A man who has seen a nymph "becomes possessed by nymphs" according to ancient Greek lore. Nymphs were embodiments of the spirit of nature, so there are many kinds—nymphs of rivers and woodlands, streams and mountains. Nereids are nymphs of the sea (specifically the fifty daughters of the old sea god Nereus), and usually are benevolent and playful, taking care with the fate of sailors. Although mortal, they live supernaturally long lives. Among the best-known nereids are Thetis, mother of Achilles, and Amphitrite, wife of Poseidon, but no specific attributes identify this one.\n This nereid's head is thrown back with abandon, her lithe body in counterpoint with a sea monster that helps support the weight of the marble. Voluminous twists of fabric cross diagonally over her, contributing dynamic energy to her pose. The marble here is deeply cut, creating dark pockets of shadow that enliven the surface. She is attributed to Giuseppe Mazzuoli, who as a young man worked with \n " +p145699 +sa(dp145700 +g25268 +S'Cupid' +p145701 +sg25270 +S'Edme Bouchardon' +p145702 +sg25273 +S'marble' +p145703 +sg25275 +S'1744' +p145704 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c00.jpg' +p145705 +sg25267 +g27 +sa(dp145706 +g25273 +S', c. 1775/1820' +p145707 +sg25267 +g27 +sg25275 +S'\n' +p145708 +sg25268 +S'Apollino of the Villa Medici' +p145709 +sg25270 +S'Francesco Righetti' +p145710 +sa(dp145711 +g25268 +S'Justicia (Justice)' +p145712 +sg25270 +S'Master of the E-Series Tarocchi' +p145713 +sg25273 +S'engraving' +p145714 +sg25275 +S'c. 1465' +p145715 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6e8.jpg' +p145716 +sg25267 +g27 +sa(dp145717 +g25273 +S'Italian, 1486 - 1570' +p145718 +sg25267 +g27 +sg25275 +S'(artist after)' +p145719 +sg25268 +S'Bacchus and a Faun' +p145720 +sg25270 +S'Artist Information (' +p145721 +sa(dp145722 +g25273 +S'overall: 173.5 x 58.6 x 55.6 cm (68 5/16 x 23 1/16 x 21 7/8 in.)' +p145723 +sg25267 +g27 +sg25275 +S'\nmarble' +p145724 +sg25268 +S'Bacchante' +p145725 +sg25270 +S'French 19th Century' +p145726 +sa(dp145727 +g25273 +S'overall: 161.2 x 44.4 x 49 cm (63 7/16 x 17 1/2 x 19 5/16 in.)' +p145728 +sg25267 +g27 +sg25275 +S'\nmarble' +p145729 +sg25268 +S'Bacchante' +p145730 +sg25270 +S'French 19th Century' +p145731 +sa(dp145732 +g25268 +S'Poetry and Music' +p145733 +sg25270 +S'Clodion' +p145734 +sg25273 +S'marble' +p145735 +sg25275 +S'c. 1774/1778' +p145736 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c04.jpg' +p145737 +sg25267 +S"This work, along with \n It was Clodion who arranged for the expensive Carrara marble used for \r\n all of Terray's statues, urging his source not to divulge the name of his \r\n unpopular client. Clodion had lived in Italy for nine years after winning \r\n the Prix de Rome. A vision of antiquity he acquired while in Italy — a \r\n wooded Arcadia where young satyrs and nymphs cavort — continued to be his \r\n greatest inspiration. After his return to Paris, these subjects delighted \r\n the aristocratic and wealthy bourgeois clients who flooded him with \r\n commissions to decorate their homes.\n Clodion prepared a terracotta model for \n " +p145738 +sa(dp145739 +g25268 +S'A Vestal' +p145740 +sg25270 +S'Clodion' +p145741 +sg25273 +S'marble' +p145742 +sg25275 +S'1770' +p145743 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c05.jpg' +p145744 +sg25267 +g27 +sa(dp145745 +g25268 +S'Ciborium for the Sacrament' +p145746 +sg25270 +S'Desiderio da Settignano' +p145747 +sg25273 +S'marble' +p145748 +sg25275 +S'c. 1455' +p145749 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a0006335.jpg' +p145750 +sg25267 +g27 +sa(dp145751 +g25268 +S'Venus of the Doves' +p145752 +sg25270 +S'Etienne-Maurice Falconet' +p145753 +sg25273 +S'marble' +p145754 +sg25275 +S'unknown date\n' +p145755 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c31.jpg' +p145756 +sg25267 +g27 +sa(dp145757 +g25268 +S'Saint Barbara' +p145758 +sg25270 +S'Artist Information (' +p145759 +sg25273 +g27 +sg25275 +S'(sculptor)' +p145760 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004a/a0004a11.jpg' +p145761 +sg25267 +g27 +sa(dp145762 +g25268 +S'Giuseppe Balsamo, Comte di Cagliostro' +p145763 +sg25270 +S'Jean-Antoine Houdon' +p145764 +sg25273 +S'marble' +p145765 +sg25275 +S'1786' +p145766 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c0f.jpg' +p145767 +sg25267 +S'One of his contemporaries noted that Houdon, the most successful \r\n portrait sculptor of his day, "pushed truth to the bitter end." This bust \r\n captures the fleshy and disheveled scoundrel Cagliostro, who bilked the \r\n courts of Europe as an alchemist and mesmerizer. He was implicated in the \r\n notorious Affair of the Diamond Necklace, which galvanized public opinion \r\n against the French royal family when it appeared that Marie-Antoinette had \r\n purchased an extravagant necklace at a time of strained public finances. In \r\n fact, an ambitious dupe had made the purchase in hopes of currying the \r\n queen\'s favor. Cagliostro was suspected of acting as a go-between, and \r\n though no charges were proven, he was expelled from France in 1786, the \r\n same year this bust is dated. He died in a prison in Rome about fifteen \r\n years later, condemned by the pope as a heretic.\n Cagliostro\'s spirited portrait contrasts with Houdon\'s cool and \r\n impersonal \n ' +p145768 +sa(dp145769 +g25268 +S'Emperor Charles V' +p145770 +sg25270 +S'Artist Information (' +p145771 +sg25273 +S'Italian, c. 1509 - 1590' +p145772 +sg25275 +S'(artist after)' +p145773 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00049/a00049f3.jpg' +p145774 +sg25267 +g27 +sa(dp145775 +g25268 +S'Octava Spera (Eighth Sphere)' +p145776 +sg25270 +S'Master of the S-Series Tarocchi' +p145777 +sg25273 +S'engraving' +p145778 +sg25275 +S'probably c. 1470' +p145779 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c706.jpg' +p145780 +sg25267 +g27 +sa(dp145781 +g25268 +S'Galatea' +p145782 +sg25270 +S'Robert Le Lorrain' +p145783 +sg25273 +S'marble' +p145784 +sg25275 +S'1701' +p145785 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00029/a00029c1.jpg' +p145786 +sg25267 +g27 +sa(dp145787 +g25268 +S'A Garden Allegory: The Dew and Zephyr Cultivating Flowers' +p145788 +sg25270 +S'Artist Information (' +p145789 +sg25273 +S'(sculptor)' +p145790 +sg25275 +S'\n' +p145791 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c17.jpg' +p145792 +sg25267 +S"The small watering pitcher held by the female figure identifies her as a \n personification of the dew; the butterfly-winged boy is Zephyr, the gentle \n west wind. The sculpture may have been designed for the gardens of the \n royal pavilion of Louis XIV's chateau at Marly, but was apparently never \n installed there. In 1762 it was at Louis XV's Chateau de la Muette. An \n inventory described the work as having been begun by Massou, continued by \n Flamen, and completed by Rebillé. The problems of attribution are \n still being studied, complicated by the fact that Flamen's and Massou's sons \n were also sculptors and that there were two contemporary artists named \n Rebillé, neither very well known.\n The sculptures made for Marly were noted for a new freedom in style. The \n figure of Dew shares their easy movement and intimacy, but her elongated \n proportions, light drapery, and supple grace suggest that she may have been \n the work of the next generation of sculptors.\n " +p145793 +sa(dp145794 +g25268 +S'Calliope' +p145795 +sg25270 +S'Augustin Pajou' +p145796 +sg25273 +S'marble' +p145797 +sg25275 +S'c. 1763' +p145798 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c18.jpg' +p145799 +sg25267 +S"A Latin inscription identifies this figure as Calliope, muse of epic \r\n poetry.\n Although Pajou was known to have carved several muses as garden \r\n decorations, this work is unsigned and its attribution still being studied. \r\n The sculptor shows a natural affinity for the calm restraint of \r\n neoclassicism, which grew in popularity in the later decades of the \r\n eighteenth century. Compare the quiet silhouette and dignified stance of \r\n Calliope with the complex twisting motion of \n Pajou, who came from a family of minor sculptors, was among the busiest \r\n artists of his generation. He was a favorite of Madame du Barry, Louis \r\n XVI's mistress, and received a number of royal and public commissions, but \r\n he is perhaps best known for his portrait busts. These brought him many \r\n private patrons, and, unlike many other artists, he was able to accommodate \r\n a new clientele after the revolution.\n " +p145800 +sa(dp145801 +g25268 +S'Painting and Sculpture' +p145802 +sg25270 +S'Jean-Pierre-Antoine Tassaert' +p145803 +sg25273 +S'marble' +p145804 +sg25275 +S'1774/1778' +p145805 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c22.jpg' +p145806 +sg25267 +S"With \n Terray is representative of the private patrons who transformed the \r\n monumental public works of the preceding century into the more intimate \r\n works admired by eighteenth-century collectors. He was among the most \r\n unpopular of all Louis XV's ministers, accused of excessive luxury. When he \r\n was swiftly dismissed by the new king after Louis XV's death in 1774, a \r\n Parisian mob burned him in effigy. Public opinion notwithstanding, he seems \r\n to have tried to make much-needed economies in public spending, reform \r\n taxes, and reduce bloated state pensions.\n " +p145807 +sa(dp145808 +g25268 +S'Portrait of a Lady' +p145809 +sg25270 +S'Francesco Salviati' +p145810 +sg25273 +S'oil on panel' +p145811 +sg25275 +S'c. 1555' +p145812 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f84.jpg' +p145813 +sg25267 +g27 +sa(dp145814 +g25268 +S'Christ before Annas' +p145815 +sg25270 +S'Israhel van Meckenem' +p145816 +sg25273 +S'engraving' +p145817 +sg25275 +S'c. 1480' +p145818 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3e8.jpg' +p145819 +sg25267 +g27 +sa(dp145820 +g25268 +S'The Flagellation' +p145821 +sg25270 +S'Israhel van Meckenem' +p145822 +sg25273 +S'engraving' +p145823 +sg25275 +S'c. 1480' +p145824 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3f1.jpg' +p145825 +sg25267 +g27 +sa(dp145826 +g25268 +S'Christ before Pilate' +p145827 +sg25270 +S'Israhel van Meckenem' +p145828 +sg25273 +S'engraving' +p145829 +sg25275 +S'c. 1480' +p145830 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3e7.jpg' +p145831 +sg25267 +g27 +sa(dp145832 +g25268 +S'Prudencia (Prudence)' +p145833 +sg25270 +S'Master of the E-Series Tarocchi' +p145834 +sg25273 +S'engraving' +p145835 +sg25275 +S'c. 1465' +p145836 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6ea.jpg' +p145837 +sg25267 +g27 +sa(dp145838 +g25268 +S'Ecce Homo' +p145839 +sg25270 +S'Israhel van Meckenem' +p145840 +sg25273 +S'engraving' +p145841 +sg25275 +S'c. 1480' +p145842 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3ec.jpg' +p145843 +sg25267 +g27 +sa(dp145844 +g25268 +S'The Crucifixion' +p145845 +sg25270 +S'Israhel van Meckenem' +p145846 +sg25273 +S'engraving' +p145847 +sg25275 +S'c. 1480' +p145848 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3ea.jpg' +p145849 +sg25267 +g27 +sa(dp145850 +g25268 +S'Saint John on Patmos' +p145851 +sg25270 +S'Master BM' +p145852 +sg25273 +S'engraving' +p145853 +sg25275 +S'c. 1480/1490' +p145854 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3cf.jpg' +p145855 +sg25267 +g27 +sa(dp145856 +g25268 +S'Arms of Rohrbach and Holzhausen' +p145857 +sg25270 +S'Master bg' +p145858 +sg25273 +S'engraving' +p145859 +sg25275 +S'c. 1480/1490' +p145860 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3d7.jpg' +p145861 +sg25267 +g27 +sa(dp145862 +g25268 +S'Emperors Charles V and Ferdinand I' +p145863 +sg25270 +S'Christoph Bockstorfer' +p145864 +sg25273 +S'etching (iron)' +p145865 +sg25275 +S'unknown date\n' +p145866 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b094.jpg' +p145867 +sg25267 +g27 +sa(dp145868 +g25268 +S'Christ Blessing the Virgin' +p145869 +sg25270 +S'Master E.S.' +p145870 +sg25273 +S'engraving' +p145871 +sg25275 +S'c. 1450' +p145872 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3ac.jpg' +p145873 +sg25267 +g27 +sa(dp145874 +g25268 +S'The Battle of Fornovo' +p145875 +sg25270 +S'Master of the Battle of Fornovo' +p145876 +sg25273 +S'engraving printed on two sheets joined at center' +p145877 +sg25275 +S'1495/1506' +p145878 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c15.jpg' +p145879 +sg25267 +g27 +sa(dp145880 +g25268 +S'Fishing Scene' +p145881 +sg25270 +S'Artist Information (' +p145882 +sg25273 +S'(artist after)' +p145883 +sg25275 +S'\n' +p145884 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000848f.jpg' +p145885 +sg25267 +g27 +sa(dp145886 +g25268 +S'Christ as the Man of Sorrows' +p145887 +sg25270 +S'French 15th Century' +p145888 +sg25273 +S'sheet: 22.5 x 14.5 cm (8 7/8 x 5 11/16 in.)\r\noverall (cofferet): 10 x 16 x 23.5 cm (3 15/16 x 6 5/16 x 9 1/4 in.)' +p145889 +sg25275 +S'\nwoodcut, hand-colored in vermilion, dark green, light blue and brown; glued into the top lid of a travelling strong box' +p145890 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a000571f.jpg' +p145891 +sg25267 +g27 +sa(dp145892 +g25268 +S'Saturno (Saturn)' +p145893 +sg25270 +S'Master of the S-Series Tarocchi' +p145894 +sg25273 +S'engraving' +p145895 +sg25275 +S'probably c. 1470' +p145896 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c705.jpg' +p145897 +sg25267 +g27 +sa(dp145898 +g25268 +S'Bookplate of the Abbey of Ottobeuren' +p145899 +sg25270 +S'German 15th Century' +p145900 +sg25273 +S'Schreiber, Vol. IX, no. 2036, State m' +p145901 +sg25275 +S'\nwoodcut, hand-colored in vermilion and red' +p145902 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5c4.jpg' +p145903 +sg25267 +g27 +sa(dp145904 +g25273 +S', unknown date' +p145905 +sg25267 +g27 +sg25275 +S'\n' +p145906 +sg25268 +S'Architectural Design [left page]' +p145907 +sg25270 +S'Jacques Androuet du Cerceau' +p145908 +sa(dp145909 +g25273 +S', unknown date' +p145910 +sg25267 +g27 +sg25275 +S'\n' +p145911 +sg25268 +S'Architectural Design [right page]' +p145912 +sg25270 +S'Jacques Androuet du Cerceau' +p145913 +sa(dp145914 +g25273 +S', unknown date' +p145915 +sg25267 +g27 +sg25275 +S'\n' +p145916 +sg25268 +S'Architectural Design [left page]' +p145917 +sg25270 +S'Jacques Androuet du Cerceau' +p145918 +sa(dp145919 +g25273 +S', unknown date' +p145920 +sg25267 +g27 +sg25275 +S'\n' +p145921 +sg25268 +S'Architectural Design [right page]' +p145922 +sg25270 +S'Jacques Androuet du Cerceau' +p145923 +sa(dp145924 +g25273 +S', unknown date' +p145925 +sg25267 +g27 +sg25275 +S'\n' +p145926 +sg25268 +S'Architectural Design [left page]' +p145927 +sg25270 +S'Jacques Androuet du Cerceau' +p145928 +sa(dp145929 +g25273 +S', unknown date' +p145930 +sg25267 +g27 +sg25275 +S'\n' +p145931 +sg25268 +S'Architectural Design [right page]' +p145932 +sg25270 +S'Jacques Androuet du Cerceau' +p145933 +sa(dp145934 +g25273 +S', unknown date' +p145935 +sg25267 +g27 +sg25275 +S'\n' +p145936 +sg25268 +S'Architectural Design [left page]' +p145937 +sg25270 +S'Jacques Androuet du Cerceau' +p145938 +sa(dp145939 +g25273 +S', unknown date' +p145940 +sg25267 +g27 +sg25275 +S'\n' +p145941 +sg25268 +S'Architectural Design [right page]' +p145942 +sg25270 +S'Jacques Androuet du Cerceau' +p145943 +sa(dp145944 +g25273 +S', unknown date' +p145945 +sg25267 +g27 +sg25275 +S'\n' +p145946 +sg25268 +S'Architectural Design [left page]' +p145947 +sg25270 +S'Jacques Androuet du Cerceau' +p145948 +sa(dp145949 +g25268 +S'Temperancia (Temperance)' +p145950 +sg25270 +S'Master of the E-Series Tarocchi' +p145951 +sg25273 +S'engraving' +p145952 +sg25275 +S'c. 1465' +p145953 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6eb.jpg' +p145954 +sg25267 +g27 +sa(dp145955 +g25273 +S', unknown date' +p145956 +sg25267 +g27 +sg25275 +S'\n' +p145957 +sg25268 +S'Architectural Design [right page]' +p145958 +sg25270 +S'Jacques Androuet du Cerceau' +p145959 +sa(dp145960 +g25273 +S', unknown date' +p145961 +sg25267 +g27 +sg25275 +S'\n' +p145962 +sg25268 +S'Architectural Design [left page]' +p145963 +sg25270 +S'Jacques Androuet du Cerceau' +p145964 +sa(dp145965 +g25273 +S', unknown date' +p145966 +sg25267 +g27 +sg25275 +S'\n' +p145967 +sg25268 +S'Architectural Design [right page]' +p145968 +sg25270 +S'Jacques Androuet du Cerceau' +p145969 +sa(dp145970 +g25273 +S', unknown date' +p145971 +sg25267 +g27 +sg25275 +S'\n' +p145972 +sg25268 +S'Architectural Design [left page]' +p145973 +sg25270 +S'Jacques Androuet du Cerceau' +p145974 +sa(dp145975 +g25273 +S', unknown date' +p145976 +sg25267 +g27 +sg25275 +S'\n' +p145977 +sg25268 +S'Architectural Design [right page]' +p145978 +sg25270 +S'Jacques Androuet du Cerceau' +p145979 +sa(dp145980 +g25273 +S', unknown date' +p145981 +sg25267 +g27 +sg25275 +S'\n' +p145982 +sg25268 +S'Architectural Design [left page]' +p145983 +sg25270 +S'Jacques Androuet du Cerceau' +p145984 +sa(dp145985 +g25273 +S', unknown date' +p145986 +sg25267 +g27 +sg25275 +S'\n' +p145987 +sg25268 +S'Architectural Design [right page]' +p145988 +sg25270 +S'Jacques Androuet du Cerceau' +p145989 +sa(dp145990 +g25273 +S', unknown date' +p145991 +sg25267 +g27 +sg25275 +S'\n' +p145992 +sg25268 +S'Architectural Design [left page]' +p145993 +sg25270 +S'Jacques Androuet du Cerceau' +p145994 +sa(dp145995 +g25273 +S', unknown date' +p145996 +sg25267 +g27 +sg25275 +S'\n' +p145997 +sg25268 +S'Architectural Design [right page]' +p145998 +sg25270 +S'Jacques Androuet du Cerceau' +p145999 +sa(dp146000 +g25273 +S', unknown date' +p146001 +sg25267 +g27 +sg25275 +S'\n' +p146002 +sg25268 +S'Architectural Design [left page]' +p146003 +sg25270 +S'Jacques Androuet du Cerceau' +p146004 +sa(dp146005 +g25273 +S'graphite squared with graphite' +p146006 +sg25267 +g27 +sg25275 +S'1924' +p146007 +sg25268 +S'Man with a Crucifix' +p146008 +sg25270 +S'Robert Sargent Austin' +p146009 +sa(dp146010 +g25273 +S', unknown date' +p146011 +sg25267 +g27 +sg25275 +S'\n' +p146012 +sg25268 +S'Architectural Design [right page]' +p146013 +sg25270 +S'Jacques Androuet du Cerceau' +p146014 +sa(dp146015 +g25268 +S'Deer in the Forest' +p146016 +sg25270 +S'Italian 16th Century' +p146017 +sg25273 +S"Hind 'Engravings', undescribed" +p146018 +sg25275 +S'\netching' +p146019 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c894.jpg' +p146020 +sg25267 +g27 +sa(dp146021 +g25268 +S'The Jester' +p146022 +sg25270 +S'Jost Amman' +p146023 +sg25273 +S'pen and black ink' +p146024 +sg25275 +S'1586' +p146025 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a0e.jpg' +p146026 +sg25267 +g27 +sa(dp146027 +g25268 +S'The Stag' +p146028 +sg25270 +S'Jost Amman' +p146029 +sg25273 +S'pen and black ink' +p146030 +sg25275 +S'unknown date\n' +p146031 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00030/a000302d.jpg' +p146032 +sg25267 +g27 +sa(dp146033 +g25268 +S'Coridone, Lover of Corisca' +p146034 +sg25270 +S'Johann Wilhelm Baur' +p146035 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p146036 +sg25275 +S'1640' +p146037 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072f0.jpg' +p146038 +sg25267 +g27 +sa(dp146039 +g25268 +S'Uranio and Carino' +p146040 +sg25270 +S'Johann Wilhelm Baur' +p146041 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p146042 +sg25275 +S'1640' +p146043 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071e4.jpg' +p146044 +sg25267 +g27 +sa(dp146045 +g25268 +S'Chorus of Shepherds and Priests: Montano, Mirtillo' +p146046 +sg25270 +S'Johann Wilhelm Baur' +p146047 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p146048 +sg25275 +S'1640' +p146049 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a0007146.jpg' +p146050 +sg25267 +g27 +sa(dp146051 +g25268 +S'Ergasto and Corisca' +p146052 +sg25270 +S'Johann Wilhelm Baur' +p146053 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p146054 +sg25275 +S'1640' +p146055 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071ab.jpg' +p146056 +sg25267 +g27 +sa(dp146057 +g25268 +S'Nicandro and Amarilli' +p146058 +sg25270 +S'Johann Wilhelm Baur' +p146059 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p146060 +sg25275 +S'1640' +p146061 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072ba.jpg' +p146062 +sg25267 +g27 +sa(dp146063 +g25268 +S'Linco, Silvio and Dorinda' +p146064 +sg25270 +S'Johann Wilhelm Baur' +p146065 +sg25273 +S'pen and brown ink with brown wash lightly squared in graphite on laid paper' +p146066 +sg25275 +S'1640' +p146067 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a0007284.jpg' +p146068 +sg25267 +g27 +sa(dp146069 +g25273 +S'graphite on laid paper' +p146070 +sg25267 +g27 +sg25275 +S'1922' +p146071 +sg25268 +S'The Capitol, Rome' +p146072 +sg25270 +S'Robert Sargent Austin' +p146073 +sa(dp146074 +g25268 +S'Chorus of Shepherds: Carino, Montano and Mirtillo' +p146075 +sg25270 +S'Johann Wilhelm Baur' +p146076 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p146077 +sg25275 +S'1640' +p146078 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a0007176.jpg' +p146079 +sg25267 +g27 +sa(dp146080 +g25268 +S'Corisca, Amarilli and Mirtillo' +p146081 +sg25270 +S'Johann Wilhelm Baur' +p146082 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p146083 +sg25275 +S'1640' +p146084 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a000724f.jpg' +p146085 +sg25267 +g27 +sa(dp146086 +g25268 +S'Corisca' +p146087 +sg25270 +S'Johann Wilhelm Baur' +p146088 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p146089 +sg25275 +S'1640' +p146090 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d07.jpg' +p146091 +sg25267 +g27 +sa(dp146092 +g25268 +S'Silvio and Dorinda' +p146093 +sg25270 +S'Johann Wilhelm Baur' +p146094 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p146095 +sg25275 +S'1640' +p146096 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a000721d.jpg' +p146097 +sg25267 +g27 +sa(dp146098 +g25268 +S'Chorus of Hunters and Shepherds' +p146099 +sg25270 +S'Johann Wilhelm Baur' +p146100 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p146101 +sg25275 +S'1640' +p146102 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070ee.jpg' +p146103 +sg25267 +g27 +sa(dp146104 +g25268 +S'Silvio, Dorinda and Linco' +p146105 +sg25270 +S'Johann Wilhelm Baur' +p146106 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p146107 +sg25275 +S'1640' +p146108 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f47.jpg' +p146109 +sg25267 +g27 +sa(dp146110 +g25268 +S'Chorus of Shepherds and Ergasto' +p146111 +sg25270 +S'Johann Wilhelm Baur' +p146112 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p146113 +sg25275 +S'1640' +p146114 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fd1.jpg' +p146115 +sg25267 +g27 +sa(dp146116 +g25268 +S'Silvio' +p146117 +sg25270 +S'Johann Wilhelm Baur' +p146118 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p146119 +sg25275 +S'1640' +p146120 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fa5.jpg' +p146121 +sg25267 +g27 +sa(dp146122 +g25268 +S'Tirenio, Montano and Carino' +p146123 +sg25270 +S'Johann Wilhelm Baur' +p146124 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p146125 +sg25275 +S'1640' +p146126 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f76.jpg' +p146127 +sg25267 +g27 +sa(dp146128 +g25268 +S'Montano, Carino and Dameta' +p146129 +sg25270 +S'Johann Wilhelm Baur' +p146130 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p146131 +sg25275 +S'1640' +p146132 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007030.jpg' +p146133 +sg25267 +g27 +sa(dp146134 +g25273 +S'etching' +p146135 +sg25267 +g27 +sg25275 +S'1924' +p146136 +sg25268 +S'The Angel of Saint Matthew, Orvieto' +p146137 +sg25270 +S'Robert Sargent Austin' +p146138 +sa(dp146139 +g25268 +S'Amarilli and Mirtillo' +p146140 +sg25270 +S'Johann Wilhelm Baur' +p146141 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p146142 +sg25275 +S'1640' +p146143 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070bd.jpg' +p146144 +sg25267 +g27 +sa(dp146145 +g25268 +S'Titiro and Messo' +p146146 +sg25270 +S'Johann Wilhelm Baur' +p146147 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p146148 +sg25275 +S'1640' +p146149 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000705f.jpg' +p146150 +sg25267 +g27 +sa(dp146151 +g25268 +S'Corisca and Linco' +p146152 +sg25270 +S'Johann Wilhelm Baur' +p146153 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p146154 +sg25275 +S'1640' +p146155 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000708f.jpg' +p146156 +sg25267 +g27 +sa(dp146157 +g25273 +S'lithograph' +p146158 +sg25267 +g27 +sg25275 +S'1921' +p146159 +sg25268 +S'Dr. Weidner' +p146160 +sg25270 +S'Max Beckmann' +p146161 +sa(dp146162 +g25273 +S'etching' +p146163 +sg25267 +g27 +sg25275 +S'1747' +p146164 +sg25268 +S'La Ville neuve et le Palais Japonais, a Dresde' +p146165 +sg25270 +S'Bernardo Bellotto' +p146166 +sa(dp146167 +g25273 +S'etching' +p146168 +sg25267 +g27 +sg25275 +S'1747' +p146169 +sg25268 +S'Galerie et jardin du comte de Bruhl, a Dresde' +p146170 +sg25270 +S'Bernardo Bellotto' +p146171 +sa(dp146172 +g25273 +S'etching' +p146173 +sg25267 +g27 +sg25275 +S'1748' +p146174 +sg25268 +S"L'Eglise Catholique, a Dresde" +p146175 +sg25270 +S'Bernardo Bellotto' +p146176 +sa(dp146177 +g25273 +S'etching' +p146178 +sg25267 +g27 +sg25275 +S'1748' +p146179 +sg25268 +S"Le pont sur l'Elbe et l'Eglise Catholique, a Dresde" +p146180 +sg25270 +S'Bernardo Bellotto' +p146181 +sa(dp146182 +g25273 +S'etching' +p146183 +sg25267 +g27 +sg25275 +S'1749' +p146184 +sg25268 +S'Facade de la Galerie Royale, a Dresde' +p146185 +sg25270 +S'Bernardo Bellotto' +p146186 +sa(dp146187 +g25273 +S'etching' +p146188 +sg25267 +g27 +sg25275 +S'1750' +p146189 +sg25268 +S'Vue de la place de la Ville-Neuve, a Dresde' +p146190 +sg25270 +S'Bernardo Bellotto' +p146191 +sa(dp146192 +g25273 +S'etching' +p146193 +sg25267 +g27 +sg25275 +S'1924' +p146194 +sg25268 +S'Comare Giulia' +p146195 +sg25270 +S'Robert Sargent Austin' +p146196 +sa(dp146197 +g25273 +S'etching' +p146198 +sg25267 +g27 +sg25275 +S'1750' +p146199 +sg25268 +S'Place de la Grande Garde, a Dresde' +p146200 +sg25270 +S'Bernardo Bellotto' +p146201 +sa(dp146202 +g25273 +S'etching' +p146203 +sg25267 +g27 +sg25275 +S'1750' +p146204 +sg25268 +S"La Porte d'Italie, a Dresde" +p146205 +sg25270 +S'Bernardo Bellotto' +p146206 +sa(dp146207 +g25273 +S'etching' +p146208 +sg25267 +g27 +sg25275 +S'1752' +p146209 +sg25268 +S"Vue de la Grande Place du Vieux Marche, du cote de l'Eglise de la Ste. Croix et la Ru" +p146210 +sg25270 +S'Bernardo Bellotto' +p146211 +sa(dp146212 +g25273 +S'etching' +p146213 +sg25267 +g27 +sg25275 +S'1752' +p146214 +sg25268 +S'Vue de la Grande Place du vieux Marche, du cote de la Rue du Chateau Royal' +p146215 +sg25270 +S'Bernardo Bellotto' +p146216 +sa(dp146217 +g25273 +S'etching' +p146218 +sg25267 +g27 +sg25275 +S'1758' +p146219 +sg25268 +S'Vue lateral des Galeries du Zwinger, a Dresde' +p146220 +sg25270 +S'Bernardo Bellotto' +p146221 +sa(dp146222 +g25273 +S'etching' +p146223 +sg25267 +g27 +sg25275 +S'1758' +p146224 +sg25268 +S'Vue interieure des Pavillons et des Galleries du Zwinger' +p146225 +sg25270 +S'Bernardo Bellotto' +p146226 +sa(dp146227 +g25273 +S'engraving' +p146228 +sg25267 +g27 +sg25275 +S'unknown date\n' +p146229 +sg25268 +S'View Across the River' +p146230 +sg25270 +S'Alexander M. Bing' +p146231 +sa(dp146232 +g25273 +S'lithograph in red, yellow, blue and gray' +p146233 +sg25267 +g27 +sg25275 +S'1898' +p146234 +sg25268 +S'In the Loge' +p146235 +sg25270 +S'Pierre Bonnard' +p146236 +sa(dp146237 +g25273 +S'lithograph in brown-black, yellow and green' +p146238 +sg25267 +g27 +sg25275 +S'1896' +p146239 +sg25268 +S'Poster for the Exhibition " Les Peintres-Graveurs"' +p146240 +sg25270 +S'Pierre Bonnard' +p146241 +sa(dp146242 +g25268 +S'Poster for "La Revue blanche"' +p146243 +sg25270 +S'Artist Information (' +p146244 +sg25273 +S'French, active 1860s/1890s' +p146245 +sg25275 +S'(printer)' +p146246 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000efa.jpg' +p146247 +sg25267 +g27 +sa(dp146248 +g25273 +S'engraving' +p146249 +sg25267 +g27 +sg25275 +S'1926' +p146250 +sg25268 +S'Plane Tree Cottage' +p146251 +sg25270 +S'Robert Sargent Austin' +p146252 +sa(dp146253 +g25268 +S'Ceremony of the Contract of Marriage between Vladislas IV, King of Poland, and LouiseMarie of Gonzaga, Princess of Mantua, at Fontainbleau' +p146254 +sg25270 +S'Abraham Bosse' +p146255 +sg25273 +S'etching' +p146256 +sg25275 +S'1645' +p146257 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a75.jpg' +p146258 +sg25267 +g27 +sa(dp146259 +g25268 +S'The King Giving the Accolade and Creating Knights of S. Michel Who Receive the Order of the Holy Spirit' +p146260 +sg25270 +S'Abraham Bosse' +p146261 +sg25273 +S'etching and engraving' +p146262 +sg25275 +S'1633' +p146263 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008527.jpg' +p146264 +sg25267 +g27 +sa(dp146265 +g25268 +S'March of the King and Knights of the Holy Spirit in the Courtyard at Fontainebleau' +p146266 +sg25270 +S'Abraham Bosse' +p146267 +sg25273 +S'etching and engraving' +p146268 +sg25275 +S'1633' +p146269 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a79.jpg' +p146270 +sg25267 +g27 +sa(dp146271 +g25268 +S'Meeting in the Chapel at Fontainebleau' +p146272 +sg25270 +S'Abraham Bosse' +p146273 +sg25273 +S'etching and engraving' +p146274 +sg25275 +S'1633' +p146275 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a78.jpg' +p146276 +sg25267 +g27 +sa(dp146277 +g25268 +S'Banquet Given by the King to the New Knights' +p146278 +sg25270 +S'Abraham Bosse' +p146279 +sg25273 +S'etching and engraving' +p146280 +sg25275 +S'1633' +p146281 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a77.jpg' +p146282 +sg25267 +g27 +sa(dp146283 +g25268 +S'The Ponte Molle' +p146284 +sg25270 +S'Jan Both' +p146285 +sg25273 +S'etching on wove paper, posthumous impression' +p146286 +sg25275 +S'unknown date\n' +p146287 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4d9.jpg' +p146288 +sg25267 +g27 +sa(dp146289 +g25268 +S'Landscape with Peasant and his Herd' +p146290 +sg25270 +S'S\xc3\xa9bastien Bourdon' +p146291 +sg25273 +S'engraving' +p146292 +sg25275 +S'unknown date\n' +p146293 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bf9.jpg' +p146294 +sg25267 +g27 +sa(dp146295 +g25268 +S'Jesus Telling the Parable of the Father who Sends his Workers to his Vineyard' +p146296 +sg25270 +S'S\xc3\xa9bastien Bourdon' +p146297 +sg25273 +S'engraving' +p146298 +sg25275 +S'unknown date\n' +p146299 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bf8.jpg' +p146300 +sg25267 +g27 +sa(dp146301 +g25268 +S'The Levite and the Priest Pass the Man Without Helping Him' +p146302 +sg25270 +S'S\xc3\xa9bastien Bourdon' +p146303 +sg25273 +S'engraving' +p146304 +sg25275 +S'unknown date\n' +p146305 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bf7.jpg' +p146306 +sg25267 +g27 +sa(dp146307 +g25273 +S'drypoint' +p146308 +sg25267 +g27 +sg25275 +S'1920' +p146309 +sg25268 +S'The Tow Rope' +p146310 +sg25270 +S'Robert Sargent Austin' +p146311 +sa(dp146312 +g25268 +S'The Parable of the Good Samaritan' +p146313 +sg25270 +S'S\xc3\xa9bastien Bourdon' +p146314 +sg25273 +S'engraving' +p146315 +sg25275 +S'unknown date\n' +p146316 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d9b.jpg' +p146317 +sg25267 +g27 +sa(dp146318 +g25268 +S'The Samaritan Pours Oil and Wine in the Wounds of a Man Left for Dead' +p146319 +sg25270 +S'S\xc3\xa9bastien Bourdon' +p146320 +sg25273 +S'engraving' +p146321 +sg25275 +S'unknown date\n' +p146322 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d9c.jpg' +p146323 +sg25267 +g27 +sa(dp146324 +g25268 +S'The Samaritan Takes the Man to an Inn' +p146325 +sg25270 +S'S\xc3\xa9bastien Bourdon' +p146326 +sg25273 +S'engraving' +p146327 +sg25275 +S'unknown date\n' +p146328 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d9d.jpg' +p146329 +sg25267 +g27 +sa(dp146330 +g25268 +S'The Flight into Egypt' +p146331 +sg25270 +S'S\xc3\xa9bastien Bourdon' +p146332 +sg25273 +S'engraving' +p146333 +sg25275 +S'unknown date\n' +p146334 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d99.jpg' +p146335 +sg25267 +g27 +sa(dp146336 +g25268 +S'The Pharisees Complain to Our Lord' +p146337 +sg25270 +S'S\xc3\xa9bastien Bourdon' +p146338 +sg25273 +S'engraving' +p146339 +sg25275 +S'unknown date\n' +p146340 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d97.jpg' +p146341 +sg25267 +g27 +sa(dp146342 +g25268 +S'Jesus and the Samaritan' +p146343 +sg25270 +S'S\xc3\xa9bastien Bourdon' +p146344 +sg25273 +S'engraving' +p146345 +sg25275 +S'unknown date\n' +p146346 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d96.jpg' +p146347 +sg25267 +g27 +sa(dp146348 +g25268 +S'Landscape with Two Figures on a Bridge' +p146349 +sg25270 +S'S\xc3\xa9bastien Bourdon' +p146350 +sg25273 +S'engraving' +p146351 +sg25275 +S'unknown date\n' +p146352 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d98.jpg' +p146353 +sg25267 +g27 +sa(dp146354 +g25268 +S'Landscape with Wagon' +p146355 +sg25270 +S'S\xc3\xa9bastien Bourdon' +p146356 +sg25273 +S'engraving' +p146357 +sg25275 +S'unknown date\n' +p146358 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d9a.jpg' +p146359 +sg25267 +g27 +sa(dp146360 +g25268 +S'Landscape with a Frightened Waggoner' +p146361 +sg25270 +S'S\xc3\xa9bastien Bourdon' +p146362 +sg25273 +S'engraving' +p146363 +sg25275 +S'unknown date\n' +p146364 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d95.jpg' +p146365 +sg25267 +g27 +sa(dp146366 +g25273 +S'color lithograph' +p146367 +sg25267 +g27 +sg25275 +S'1947' +p146368 +sg25268 +S'Helios IV, red and black' +p146369 +sg25270 +S'Georges Braque' +p146370 +sa(dp146371 +g25273 +S'engraving' +p146372 +sg25267 +g27 +sg25275 +S'1925' +p146373 +sg25268 +S'Woman Milking a Goat' +p146374 +sg25270 +S'Robert Sargent Austin' +p146375 +sa(dp146376 +g25268 +S'Mercury and Venus' +p146377 +sg25270 +S'Hans Burgkmair I' +p146378 +sg25273 +S'etching' +p146379 +sg25275 +S'1520' +p146380 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8db.jpg' +p146381 +sg25267 +g27 +sa(dp146382 +g25268 +S'The Siege of Breda [plate 1 of 6]' +p146383 +sg25270 +S'Jacques Callot' +p146384 +sg25273 +S'etching' +p146385 +sg25275 +S'1627/1628' +p146386 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008db3.jpg' +p146387 +sg25267 +g27 +sa(dp146388 +g25268 +S'The Siege of Breda [plate 2 of 6]' +p146389 +sg25270 +S'Jacques Callot' +p146390 +sg25273 +S'etching' +p146391 +sg25275 +S'1627/1628' +p146392 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008db7.jpg' +p146393 +sg25267 +g27 +sa(dp146394 +g25268 +S'The Siege of Breda [plate 3 of 6]' +p146395 +sg25270 +S'Jacques Callot' +p146396 +sg25273 +S'etching' +p146397 +sg25275 +S'1627/1628' +p146398 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008db6.jpg' +p146399 +sg25267 +g27 +sa(dp146400 +g25268 +S'The Siege of Breda [plate 4 of 6]' +p146401 +sg25270 +S'Jacques Callot' +p146402 +sg25273 +S'etching' +p146403 +sg25275 +S'1627/1628' +p146404 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008db4.jpg' +p146405 +sg25267 +g27 +sa(dp146406 +g25268 +S'The Siege of Breda [plate 5 of 6]' +p146407 +sg25270 +S'Jacques Callot' +p146408 +sg25273 +S'etching' +p146409 +sg25275 +S'1627/1628' +p146410 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008db8.jpg' +p146411 +sg25267 +g27 +sa(dp146412 +g25268 +S'The Siege of Breda [plate 6 of 6]' +p146413 +sg25270 +S'Jacques Callot' +p146414 +sg25273 +S'etching' +p146415 +sg25275 +S'1627/1628' +p146416 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008db5.jpg' +p146417 +sg25267 +g27 +sa(dp146418 +g25268 +S'The Holy Family with Two Angels' +p146419 +sg25270 +S'Jacques Callot' +p146420 +sg25273 +S'etching' +p146421 +sg25275 +S'unknown date\n' +p146422 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008433.jpg' +p146423 +sg25267 +g27 +sa(dp146424 +g25268 +S'The Siege of La Rochelle [plate 1 of 16; set comprises 1952.8.97-112]' +p146425 +sg25270 +S'Artist Information (' +p146426 +sg25273 +S'(artist)' +p146427 +sg25275 +S'\n' +p146428 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008daa.jpg' +p146429 +sg25267 +g27 +sa(dp146430 +g25268 +S'The Siege of La Rochelle [plate 2 of 16; set comprises 1952.8.97-112]' +p146431 +sg25270 +S'Artist Information (' +p146432 +sg25273 +S'(artist)' +p146433 +sg25275 +S'\n' +p146434 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d9e.jpg' +p146435 +sg25267 +g27 +sa(dp146436 +g25273 +S'engraving' +p146437 +sg25267 +g27 +sg25275 +S'1926' +p146438 +sg25268 +S'Woman of Scanno' +p146439 +sg25270 +S'Robert Sargent Austin' +p146440 +sa(dp146441 +g25268 +S'The Siege of La Rochelle [plate 3 of 16; set comprises 1952.8.97-112]' +p146442 +sg25270 +S'Artist Information (' +p146443 +sg25273 +S'(artist)' +p146444 +sg25275 +S'\n' +p146445 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008da9.jpg' +p146446 +sg25267 +g27 +sa(dp146447 +g25268 +S'The Siege of La Rochelle [plate 4 of 16; set comprises 1952.8.97-112]' +p146448 +sg25270 +S'Artist Information (' +p146449 +sg25273 +S'French, 1592 - 1635' +p146450 +sg25275 +S'(related artist)' +p146451 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008da8.jpg' +p146452 +sg25267 +g27 +sa(dp146453 +g25268 +S'The Siege of La Rochelle [plate 5 of 16; set comprises 1952.8.97-112]' +p146454 +sg25270 +S'Jacques Callot' +p146455 +sg25273 +S'etching and engraving' +p146456 +sg25275 +S'1628/1631' +p146457 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008db2.jpg' +p146458 +sg25267 +g27 +sa(dp146459 +g25268 +S'The Siege of La Rochelle [plate 6 of 16; set comprises 1952.8.97-112]' +p146460 +sg25270 +S'Jacques Callot' +p146461 +sg25273 +S'etching and engraving' +p146462 +sg25275 +S'1628/1631' +p146463 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dae.jpg' +p146464 +sg25267 +g27 +sa(dp146465 +g25268 +S'The Siege of La Rochelle [plate 7 of 16; set comprises 1952.8.97-112]' +p146466 +sg25270 +S'Jacques Callot' +p146467 +sg25273 +S'etching and engraving' +p146468 +sg25275 +S'1628/1631' +p146469 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008daf.jpg' +p146470 +sg25267 +g27 +sa(dp146471 +g25268 +S'The Siege of La Rochelle [plate 8 of 16; set comprises 1952.8.97-112]' +p146472 +sg25270 +S'Artist Information (' +p146473 +sg25273 +S'French, 1592 - 1635' +p146474 +sg25275 +S'(related artist)' +p146475 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008da7.jpg' +p146476 +sg25267 +g27 +sa(dp146477 +g25268 +S'The Siege of La Rochelle [plate 9 of 16; set comprises 1952.8.97-112]' +p146478 +sg25270 +S'Artist Information (' +p146479 +sg25273 +S'French, 1592 - 1635' +p146480 +sg25275 +S'(related artist)' +p146481 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008da6.jpg' +p146482 +sg25267 +g27 +sa(dp146483 +g25268 +S'The Siege of La Rochelle [plate 10 of 16; set comprises 1952.8.97-112]' +p146484 +sg25270 +S'Jacques Callot' +p146485 +sg25273 +S'etching and engraving' +p146486 +sg25275 +S'1628/1631' +p146487 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008db0.jpg' +p146488 +sg25267 +g27 +sa(dp146489 +g25268 +S'The Siege of La Rochelle [plate 11 of 16; set comprises 1952.8.97-112]' +p146490 +sg25270 +S'Jacques Callot' +p146491 +sg25273 +S'etching and engraving' +p146492 +sg25275 +S'1628/1631' +p146493 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008db1.jpg' +p146494 +sg25267 +g27 +sa(dp146495 +g25268 +S'The Siege of La Rochelle [plate 12 of 16; set comprises 1952.8.97-112]' +p146496 +sg25270 +S'Jacques Callot' +p146497 +sg25273 +S'etching and engraving' +p146498 +sg25275 +S'1628/1631' +p146499 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dad.jpg' +p146500 +sg25267 +g27 +sa(dp146501 +g25273 +S'etching' +p146502 +sg25267 +g27 +sg25275 +S'1923' +p146503 +sg25268 +S'Siena' +p146504 +sg25270 +S'Robert Sargent Austin' +p146505 +sa(dp146506 +g25268 +S'The Siege of La Rochelle [plate 13 of 16; set comprises 1952.8.97-112]' +p146507 +sg25270 +S'Artist Information (' +p146508 +sg25273 +S'French, 1592 - 1635' +p146509 +sg25275 +S'(related artist)' +p146510 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008da5.jpg' +p146511 +sg25267 +g27 +sa(dp146512 +g25268 +S'The Siege of La Rochelle [plate 14 of 16; set comprises 1952.8.97-112]' +p146513 +sg25270 +S'Artist Information (' +p146514 +sg25273 +S'(artist)' +p146515 +sg25275 +S'\n' +p146516 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008da4.jpg' +p146517 +sg25267 +g27 +sa(dp146518 +g25268 +S'The Siege of La Rochelle [plate 15 of 16; set comprises 1952.8.97-112]' +p146519 +sg25270 +S'Artist Information (' +p146520 +sg25273 +S'(artist)' +p146521 +sg25275 +S'\n' +p146522 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d9f.jpg' +p146523 +sg25267 +g27 +sa(dp146524 +g25268 +S'The Siege of La Rochelle [plate 16 of 16; set comprises 1952.8.97-112]' +p146525 +sg25270 +S'Artist Information (' +p146526 +sg25273 +S'(artist)' +p146527 +sg25275 +S'\n' +p146528 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008da3.jpg' +p146529 +sg25267 +g27 +sa(dp146530 +g25268 +S'The Slave Market' +p146531 +sg25270 +S'Jacques Callot' +p146532 +sg25273 +S'etching' +p146533 +sg25275 +S'1629' +p146534 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000854c.jpg' +p146535 +sg25267 +g27 +sa(dp146536 +g25273 +S'etching' +p146537 +sg25267 +g27 +sg25275 +S'1950' +p146538 +sg25268 +S'The Flight into Egypt' +p146539 +sg25270 +S'Federico Cant\xc3\xba' +p146540 +sa(dp146541 +g25273 +S'etching' +p146542 +sg25267 +g27 +sg25275 +S'1927/1930' +p146543 +sg25268 +S'The Raven and the Fox' +p146544 +sg25270 +S'Marc Chagall' +p146545 +sa(dp146546 +g25273 +S'French, active 20th century' +p146547 +sg25267 +g27 +sg25275 +S'(printer)' +p146548 +sg25268 +S'La Fontaine "Fables"' +p146549 +sg25270 +S'Artist Information (' +p146550 +sa(dp146551 +g25273 +S'etching' +p146552 +sg25267 +g27 +sg25275 +S'1927/1930' +p146553 +sg25268 +S'The Frog that Wished to Make Herself as Big as the Ox' +p146554 +sg25270 +S'Marc Chagall' +p146555 +sa(dp146556 +g25273 +S'etching and drypoint' +p146557 +sg25267 +g27 +sg25275 +S'1927/1930' +p146558 +sg25268 +S'The Two Mules' +p146559 +sg25270 +S'Marc Chagall' +p146560 +sa(dp146561 +g25273 +S'etching' +p146562 +sg25267 +g27 +sg25275 +S'1925' +p146563 +sg25268 +S'San Domenico, Perugia' +p146564 +sg25270 +S'Robert Sargent Austin' +p146565 +sa(dp146566 +g25273 +S'etching' +p146567 +sg25267 +g27 +sg25275 +S'1927/1930' +p146568 +sg25268 +S'The Heifer, the She-Goat, and the Lamb, in Partnership with the Lion' +p146569 +sg25270 +S'Marc Chagall' +p146570 +sa(dp146571 +g25273 +S'etching' +p146572 +sg25267 +g27 +sg25275 +S'1927/1930' +p146573 +sg25268 +S'The Wolf and the Lamb' +p146574 +sg25270 +S'Marc Chagall' +p146575 +sa(dp146576 +g25273 +S'etching' +p146577 +sg25267 +g27 +sg25275 +S'1927/1930' +p146578 +sg25268 +S'The Man and His Image' +p146579 +sg25270 +S'Marc Chagall' +p146580 +sa(dp146581 +g25273 +S'etching' +p146582 +sg25267 +g27 +sg25275 +S'1927/1930' +p146583 +sg25268 +S'Death and the Unhappy Man' +p146584 +sg25270 +S'Marc Chagall' +p146585 +sa(dp146586 +g25273 +S'etching' +p146587 +sg25267 +g27 +sg25275 +S'1927/1930' +p146588 +sg25268 +S'Death and the Woodcutter' +p146589 +sg25270 +S'Marc Chagall' +p146590 +sa(dp146591 +g25273 +S'etching' +p146592 +sg25267 +g27 +sg25275 +S'1927/1930' +p146593 +sg25268 +S'The Fox and the Stork' +p146594 +sg25270 +S'Marc Chagall' +p146595 +sa(dp146596 +g25273 +S'etching' +p146597 +sg25267 +g27 +sg25275 +S'1927/1930' +p146598 +sg25268 +S'The Child and the Schoolmaster' +p146599 +sg25270 +S'Marc Chagall' +p146600 +sa(dp146601 +g25273 +S'etching and drypoint' +p146602 +sg25267 +g27 +sg25275 +S'1927/1930' +p146603 +sg25268 +S'The Cock and the Pearl' +p146604 +sg25270 +S'Marc Chagall' +p146605 +sa(dp146606 +g25273 +S'etching' +p146607 +sg25267 +g27 +sg25275 +S'1927/1930' +p146608 +sg25268 +S'The Oak and the Reed' +p146609 +sg25270 +S'Marc Chagall' +p146610 +sa(dp146611 +g25273 +S'etching and drypoint' +p146612 +sg25267 +g27 +sg25275 +S'1927/1930' +p146613 +sg25268 +S'The Wolf Pleading against the Fox before the Monkey' +p146614 +sg25270 +S'Marc Chagall' +p146615 +sa(dp146616 +g25273 +S'engraving' +p146617 +sg25267 +g27 +sg25275 +S'1926' +p146618 +sg25268 +S'The Pack Bridge' +p146619 +sg25270 +S'Robert Sargent Austin' +p146620 +sa(dp146621 +g25273 +S'etching' +p146622 +sg25267 +g27 +sg25275 +S'1927/1930' +p146623 +sg25268 +S'The Two Bulls and the Frog' +p146624 +sg25270 +S'Marc Chagall' +p146625 +sa(dp146626 +g25273 +S'etching' +p146627 +sg25267 +g27 +sg25275 +S'1927/1930' +p146628 +sg25268 +S'The Bird Wounded by an Arrow' +p146629 +sg25270 +S'Marc Chagall' +p146630 +sa(dp146631 +g25273 +S'etching and drypoint' +p146632 +sg25267 +g27 +sg25275 +S'1927/1930' +p146633 +sg25268 +S'The Dog and Her Friend' +p146634 +sg25270 +S'Marc Chagall' +p146635 +sa(dp146636 +g25273 +S'etching' +p146637 +sg25267 +g27 +sg25275 +S'1927/1930' +p146638 +sg25268 +S'The Eagle and the Beetle' +p146639 +sg25270 +S'Marc Chagall' +p146640 +sa(dp146641 +g25273 +S'etching' +p146642 +sg25267 +g27 +sg25275 +S'1927/1930' +p146643 +sg25268 +S'The Lion and the Gnat' +p146644 +sg25270 +S'Marc Chagall' +p146645 +sa(dp146646 +g25273 +S'etching' +p146647 +sg25267 +g27 +sg25275 +S'1927/1930' +p146648 +sg25268 +S'The Ass Laden with Sponges and the Ass Laden with Salt' +p146649 +sg25270 +S'Marc Chagall' +p146650 +sa(dp146651 +g25273 +S'etching' +p146652 +sg25267 +g27 +sg25275 +S'1927/1930' +p146653 +sg25268 +S'The Lion and the Rat' +p146654 +sg25270 +S'Marc Chagall' +p146655 +sa(dp146656 +g25273 +S'etching' +p146657 +sg25267 +g27 +sg25275 +S'1927/1930' +p146658 +sg25268 +S'The Hare and the Frogs' +p146659 +sg25270 +S'Marc Chagall' +p146660 +sa(dp146661 +g25273 +S'etching and drypoint' +p146662 +sg25267 +g27 +sg25275 +S'1927/1930' +p146663 +sg25268 +S'The Cock and the Fox' +p146664 +sg25270 +S'Marc Chagall' +p146665 +sa(dp146666 +g25273 +S'etching' +p146667 +sg25267 +g27 +sg25275 +S'1927/1930' +p146668 +sg25268 +S'The Raven Who Wished to Imitate the Eagle' +p146669 +sg25270 +S'Marc Chagall' +p146670 +sa(dp146671 +g25273 +S'etching' +p146672 +sg25267 +g27 +sg25275 +S'1924' +p146673 +sg25268 +S'Man with a Cross' +p146674 +sg25270 +S'Robert Sargent Austin' +p146675 +sa(dp146676 +g25273 +S'etching' +p146677 +sg25267 +g27 +sg25275 +S'1927/1930' +p146678 +sg25268 +S'The Peacock Complaining to Juno' +p146679 +sg25270 +S'Marc Chagall' +p146680 +sa(dp146681 +g25273 +S'etching' +p146682 +sg25267 +g27 +sg25275 +S'1927/1930' +p146683 +sg25268 +S'The Cat Changed into a Woman' +p146684 +sg25270 +S'Marc Chagall' +p146685 +sa(dp146686 +g25273 +S'etching' +p146687 +sg25267 +g27 +sg25275 +S'1927/1930' +p146688 +sg25268 +S'The Lion and the Ass' +p146689 +sg25270 +S'Marc Chagall' +p146690 +sa(dp146691 +g25273 +S'etching' +p146692 +sg25267 +g27 +sg25275 +S'1927/1930' +p146693 +sg25268 +S'A Will Interpreted by Aesop' +p146694 +sg25270 +S'Marc Chagall' +p146695 +sa(dp146696 +g25273 +S'etching' +p146697 +sg25267 +g27 +sg25275 +S'1927/1930' +p146698 +sg25268 +S'The Miller, His Son, and the Ass' +p146699 +sg25270 +S'Marc Chagall' +p146700 +sa(dp146701 +g25273 +S'etching' +p146702 +sg25267 +g27 +sg25275 +S'1927/1930' +p146703 +sg25268 +S'The Wolf Turned Shepherd' +p146704 +sg25270 +S'Marc Chagall' +p146705 +sa(dp146706 +g25273 +S'etching' +p146707 +sg25267 +g27 +sg25275 +S'1927/1930' +p146708 +sg25268 +S'The Frogs Who Asked for a King' +p146709 +sg25270 +S'Marc Chagall' +p146710 +sa(dp146711 +g25273 +S'etching' +p146712 +sg25267 +g27 +sg25275 +S'1927/1930' +p146713 +sg25268 +S'The Fox and the Goat' +p146714 +sg25270 +S'Marc Chagall' +p146715 +sa(dp146716 +g25273 +S'etching' +p146717 +sg25267 +g27 +sg25275 +S'1927/1930' +p146718 +sg25268 +S'The Eagle, the Wild Sow, and the Cat' +p146719 +sg25270 +S'Marc Chagall' +p146720 +sa(dp146721 +g25273 +S'etching' +p146722 +sg25267 +g27 +sg25275 +S'1927/1930' +p146723 +sg25268 +S'The Drunkard and His Wife' +p146724 +sg25270 +S'Marc Chagall' +p146725 +sa(dp146726 +g25273 +S'engraving' +p146727 +sg25267 +g27 +sg25275 +S'1925' +p146728 +sg25268 +S'Cat and Mandolin' +p146729 +sg25270 +S'Robert Sargent Austin' +p146730 +sa(dp146731 +g25273 +S'etching and drypoint' +p146732 +sg25267 +g27 +sg25275 +S'1927/1930' +p146733 +sg25268 +S'The Wolf and the Stork' +p146734 +sg25270 +S'Marc Chagall' +p146735 +sa(dp146736 +g25273 +S'etching' +p146737 +sg25267 +g27 +sg25275 +S'1927/1930' +p146738 +sg25268 +S'The Fox and the Grapes' +p146739 +sg25270 +S'Marc Chagall' +p146740 +sa(dp146741 +g25273 +S'etching' +p146742 +sg25267 +g27 +sg25275 +S'1927/1930' +p146743 +sg25268 +S'The Swan and the Cook' +p146744 +sg25270 +S'Marc Chagall' +p146745 +sa(dp146746 +g25273 +S'etching' +p146747 +sg25267 +g27 +sg25275 +S'1927/1930' +p146748 +sg25268 +S'The Wolves and the Sheep' +p146749 +sg25270 +S'Marc Chagall' +p146750 +sa(dp146751 +g25273 +S'etching' +p146752 +sg25267 +g27 +sg25275 +S'1927/1930' +p146753 +sg25268 +S'The Lion Grown Old' +p146754 +sg25270 +S'Marc Chagall' +p146755 +sa(dp146756 +g25273 +S'etching' +p146757 +sg25267 +g27 +sg25275 +S'1927/1930' +p146758 +sg25268 +S'The Drowned Woman' +p146759 +sg25270 +S'Marc Chagall' +p146760 +sa(dp146761 +g25273 +S'etching and drypoint' +p146762 +sg25267 +g27 +sg25275 +S'1927/1930' +p146763 +sg25268 +S'The Lion in Love' +p146764 +sg25270 +S'Marc Chagall' +p146765 +sa(dp146766 +g25273 +S'etching' +p146767 +sg25267 +g27 +sg25275 +S'1927/1930' +p146768 +sg25268 +S'The Shepherd and the Sea' +p146769 +sg25270 +S'Marc Chagall' +p146770 +sa(dp146771 +g25273 +S'etching' +p146772 +sg25267 +g27 +sg25275 +S'1927/1930' +p146773 +sg25268 +S'The Man and the Wooden Idol' +p146774 +sg25270 +S'Marc Chagall' +p146775 +sa(dp146776 +g25273 +S'etching' +p146777 +sg25267 +g27 +sg25275 +S'1927/1930' +p146778 +sg25268 +S"The Jay Dressed in Peacock's Plumes" +p146779 +sg25270 +S'Marc Chagall' +p146780 +sa(dp146781 +g25273 +S'engraving' +p146782 +sg25267 +g27 +sg25275 +S'1926/1927' +p146783 +sg25268 +S'Cadore' +p146784 +sg25270 +S'Robert Sargent Austin' +p146785 +sa(dp146786 +g25273 +S'etching' +p146787 +sg25267 +g27 +sg25275 +S'1927/1930' +p146788 +sg25268 +S'The Camel and the Driftwood' +p146789 +sg25270 +S'Marc Chagall' +p146790 +sa(dp146791 +g25273 +S'etching' +p146792 +sg25267 +g27 +sg25275 +S'1927/1930' +p146793 +sg25268 +S'The Horse Wishing to be Revenged on the Stag' +p146794 +sg25270 +S'Marc Chagall' +p146795 +sa(dp146796 +g25273 +S'etching' +p146797 +sg25267 +g27 +sg25275 +S'1927/1930' +p146798 +sg25268 +S'The Fox and the Bust' +p146799 +sg25270 +S'Marc Chagall' +p146800 +sa(dp146801 +g25273 +S'etching' +p146802 +sg25267 +g27 +sg25275 +S'1927/1930' +p146803 +sg25268 +S'The Wolf, the Goat, and the Kid' +p146804 +sg25270 +S'Marc Chagall' +p146805 +sa(dp146806 +g25273 +S'etching' +p146807 +sg25267 +g27 +sg25275 +S'1927/1930' +p146808 +sg25268 +S'The Wolf, the Mother, and the Child' +p146809 +sg25270 +S'Marc Chagall' +p146810 +sa(dp146811 +g25273 +S'etching' +p146812 +sg25267 +g27 +sg25275 +S'1927/1930' +p146813 +sg25268 +S'The Miser Who Lost His Treasure' +p146814 +sg25270 +S'Marc Chagall' +p146815 +sa(dp146816 +g25273 +S'etching' +p146817 +sg25267 +g27 +sg25275 +S'1927/1930' +p146818 +sg25268 +S'The Eye of the Master' +p146819 +sg25270 +S'Marc Chagall' +p146820 +sa(dp146821 +g25273 +S'etching' +p146822 +sg25267 +g27 +sg25275 +S'1927/1930' +p146823 +sg25268 +S'The Lark and Her Little Ones with the Owner of a Field' +p146824 +sg25270 +S'Marc Chagall' +p146825 +sa(dp146826 +g25273 +S'etching' +p146827 +sg25267 +g27 +sg25275 +S'1927/1930' +p146828 +sg25268 +S'The Woodman and Mercury' +p146829 +sg25270 +S'Marc Chagall' +p146830 +sa(dp146831 +g25273 +S'etching' +p146832 +sg25267 +g27 +sg25275 +S'1927/1930' +p146833 +sg25268 +S'The Earthen Pot and the Iron Pot' +p146834 +sg25270 +S'Marc Chagall' +p146835 +sa(dp146836 +g25273 +S'drypoint' +p146837 +sg25267 +g27 +sg25275 +S'1926' +p146838 +sg25268 +S'Boy and Calf' +p146839 +sg25270 +S'Robert Sargent Austin' +p146840 +sa(dp146841 +g25273 +S'etching' +p146842 +sg25267 +g27 +sg25275 +S'1927/1930' +p146843 +sg25268 +S'The Little Fish and the Fisherman' +p146844 +sg25270 +S'Marc Chagall' +p146845 +sa(dp146846 +g25273 +S'etching' +p146847 +sg25267 +g27 +sg25275 +S'1927/1930' +p146848 +sg25268 +S'The Fox with His Tail Cut Off' +p146849 +sg25270 +S'Marc Chagall' +p146850 +sa(dp146851 +g25273 +S'etching and drypoint' +p146852 +sg25267 +g27 +sg25275 +S'1927/1930' +p146853 +sg25268 +S'The Old Woman and Her Two Servants' +p146854 +sg25270 +S'Marc Chagall' +p146855 +sa(dp146856 +g25273 +S'etching' +p146857 +sg25267 +g27 +sg25275 +S'1927/1930' +p146858 +sg25268 +S'The Satyr and the Passerby' +p146859 +sg25270 +S'Marc Chagall' +p146860 +sa(dp146861 +g25273 +S'etching' +p146862 +sg25267 +g27 +sg25275 +S'1927/1930' +p146863 +sg25268 +S'Fortune and the Little Child' +p146864 +sg25270 +S'Marc Chagall' +p146865 +sa(dp146866 +g25273 +S'etching' +p146867 +sg25267 +g27 +sg25275 +S'1927/1930' +p146868 +sg25268 +S'The Hen with the Golden Eggs' +p146869 +sg25270 +S'Marc Chagall' +p146870 +sa(dp146871 +g25273 +S'etching' +p146872 +sg25267 +g27 +sg25275 +S'1927/1930' +p146873 +sg25268 +S'The Stag and the Vine' +p146874 +sg25270 +S'Marc Chagall' +p146875 +sa(dp146876 +g25273 +S'etching' +p146877 +sg25267 +g27 +sg25275 +S'1927/1930' +p146878 +sg25268 +S'The Eagle and the Owl' +p146879 +sg25270 +S'Marc Chagall' +p146880 +sa(dp146881 +g25273 +S'etching' +p146882 +sg25267 +g27 +sg25275 +S'1927/1930' +p146883 +sg25268 +S'The Lion Going to War' +p146884 +sg25270 +S'Marc Chagall' +p146885 +sa(dp146886 +g25273 +S'etching and drypoint' +p146887 +sg25267 +g27 +sg25275 +S'1927/1930' +p146888 +sg25268 +S'The Bear and the Two Friends' +p146889 +sg25270 +S'Marc Chagall' +p146890 +sa(dp146891 +g25273 +S'engraving' +p146892 +sg25267 +g27 +sg25275 +S'1926' +p146893 +sg25268 +S'Bell No.1' +p146894 +sg25270 +S'Robert Sargent Austin' +p146895 +sa(dp146896 +g25273 +S'etching' +p146897 +sg25267 +g27 +sg25275 +S'1927/1930' +p146898 +sg25268 +S"The Ass in the Lion's Skin" +p146899 +sg25270 +S'Marc Chagall' +p146900 +sa(dp146901 +g25273 +S'etching' +p146902 +sg25267 +g27 +sg25275 +S'1927/1930' +p146903 +sg25268 +S'The Lion and the Hunter' +p146904 +sg25270 +S'Marc Chagall' +p146905 +sa(dp146906 +g25273 +S'etching' +p146907 +sg25267 +g27 +sg25275 +S'1927/1930' +p146908 +sg25268 +S'The Stag Viewing Himself in the Stream' +p146909 +sg25270 +S'Marc Chagall' +p146910 +sa(dp146911 +g25273 +S'etching' +p146912 +sg25267 +g27 +sg25275 +S'1927/1930' +p146913 +sg25268 +S'The Sun and the Frogs' +p146914 +sg25270 +S'Marc Chagall' +p146915 +sa(dp146916 +g25273 +S'etching' +p146917 +sg25267 +g27 +sg25275 +S'1927/1930' +p146918 +sg25268 +S'The Peasant and the Serpent' +p146919 +sg25270 +S'Marc Chagall' +p146920 +sa(dp146921 +g25273 +S'etching' +p146922 +sg25267 +g27 +sg25275 +S'1927/1930' +p146923 +sg25268 +S'The Horse and the Ass' +p146924 +sg25270 +S'Marc Chagall' +p146925 +sa(dp146926 +g25273 +S'etching' +p146927 +sg25267 +g27 +sg25275 +S'1927/1930' +p146928 +sg25268 +S'The Carter Stuck in the Mud' +p146929 +sg25270 +S'Marc Chagall' +p146930 +sa(dp146931 +g25273 +S'etching and drypoint' +p146932 +sg25267 +g27 +sg25275 +S'1927/1930' +p146933 +sg25268 +S'The Charlatan' +p146934 +sg25270 +S'Marc Chagall' +p146935 +sa(dp146936 +g25273 +S'etching' +p146937 +sg25267 +g27 +sg25275 +S'1927/1930' +p146938 +sg25268 +S'The Young Widow' +p146939 +sg25270 +S'Marc Chagall' +p146940 +sa(dp146941 +g25273 +S'etching' +p146942 +sg25267 +g27 +sg25275 +S'1927/1930' +p146943 +sg25268 +S'The Heron' +p146944 +sg25270 +S'Marc Chagall' +p146945 +sa(dp146946 +g25273 +S'engraving' +p146947 +sg25267 +g27 +sg25275 +S'1927' +p146948 +sg25268 +S'Bell No.2' +p146949 +sg25270 +S'Robert Sargent Austin' +p146950 +sa(dp146951 +g25273 +S'etching' +p146952 +sg25267 +g27 +sg25275 +S'1927/1930' +p146953 +sg25268 +S'The Maiden' +p146954 +sg25270 +S'Marc Chagall' +p146955 +sa(dp146956 +g25273 +S'etching' +p146957 +sg25267 +g27 +sg25275 +S'1927/1930' +p146958 +sg25268 +S'The Milkmaid and the Milk-Pail' +p146959 +sg25270 +S'Marc Chagall' +p146960 +sa(dp146961 +g25273 +S'etching' +p146962 +sg25267 +g27 +sg25275 +S'1927/1930' +p146963 +sg25268 +S'The Curate and the Corpse' +p146964 +sg25270 +S'Marc Chagall' +p146965 +sa(dp146966 +g25273 +S'etching' +p146967 +sg25267 +g27 +sg25275 +S'1927/1930' +p146968 +sg25268 +S'The Two Cocks' +p146969 +sg25270 +S'Marc Chagall' +p146970 +sa(dp146971 +g25273 +S'etching' +p146972 +sg25267 +g27 +sg25275 +S'1927/1930' +p146973 +sg25268 +S'The Fortune-Teller' +p146974 +sg25270 +S'Marc Chagall' +p146975 +sa(dp146976 +g25273 +S'etching' +p146977 +sg25267 +g27 +sg25275 +S'1927/1930' +p146978 +sg25268 +S'The Cobbler and the Banker' +p146979 +sg25270 +S'Marc Chagall' +p146980 +sa(dp146981 +g25273 +S'etching and drypoint' +p146982 +sg25267 +g27 +sg25275 +S'1927/1930' +p146983 +sg25268 +S'The Woman and the Secret' +p146984 +sg25270 +S'Marc Chagall' +p146985 +sa(dp146986 +g25273 +S'etching' +p146987 +sg25267 +g27 +sg25275 +S'1927/1930' +p146988 +sg25268 +S"The Dog who Carried Round His Neck His Master's Dinner" +p146989 +sg25270 +S'Marc Chagall' +p146990 +sa(dp146991 +g25273 +S'etching' +p146992 +sg25267 +g27 +sg25275 +S'1927/1930' +p146993 +sg25268 +S'The Joker and the Fish' +p146994 +sg25270 +S'Marc Chagall' +p146995 +sa(dp146996 +g25273 +S'etching' +p146997 +sg25267 +g27 +sg25275 +S'1927/1930' +p146998 +sg25268 +S'The Bear and the Amateur of Gardening' +p146999 +sg25270 +S'Marc Chagall' +p147000 +sa(dp147001 +g25273 +S'engraving' +p147002 +sg25267 +g27 +sg25275 +S'1926' +p147003 +sg25268 +S'Bethlehem' +p147004 +sg25270 +S'Robert Sargent Austin' +p147005 +sa(dp147006 +g25273 +S'etching' +p147007 +sg25267 +g27 +sg25275 +S'1927/1930' +p147008 +sg25268 +S'The Funeral of the Lioness' +p147009 +sg25270 +S'Marc Chagall' +p147010 +sa(dp147011 +g25273 +S'etching' +p147012 +sg25267 +g27 +sg25275 +S'1927/1930' +p147013 +sg25268 +S'The Rat and the Elephant' +p147014 +sg25270 +S'Marc Chagall' +p147015 +sa(dp147016 +g25273 +S'etching' +p147017 +sg25267 +g27 +sg25275 +S'1927/1930' +p147018 +sg25268 +S'The Ass and the Dog' +p147019 +sg25270 +S'Marc Chagall' +p147020 +sa(dp147021 +g25273 +S'etching' +p147022 +sg25267 +g27 +sg25275 +S'1927/1930' +p147023 +sg25268 +S'The Two Pigeons' +p147024 +sg25270 +S'Marc Chagall' +p147025 +sa(dp147026 +g25273 +S'etching and drypoint' +p147027 +sg25267 +g27 +sg25275 +S'1927/1930' +p147028 +sg25268 +S'The Monkey and the Leopard' +p147029 +sg25270 +S'Marc Chagall' +p147030 +sa(dp147031 +g25273 +S'etching' +p147032 +sg25267 +g27 +sg25275 +S'1927/1930' +p147033 +sg25268 +S'The Sculptor and the Statue of Jupiter' +p147034 +sg25270 +S'Marc Chagall' +p147035 +sa(dp147036 +g25273 +S'etching' +p147037 +sg25267 +g27 +sg25275 +S'1927/1930' +p147038 +sg25268 +S'The Mouse Metamorphosed into a Girl' +p147039 +sg25270 +S'Marc Chagall' +p147040 +sa(dp147041 +g25273 +S'etching' +p147042 +sg25267 +g27 +sg25275 +S'1927/1930' +p147043 +sg25268 +S'The Madman Who Sold Wisdom' +p147044 +sg25270 +S'Marc Chagall' +p147045 +sa(dp147046 +g25273 +S'etching and drypoint' +p147047 +sg25267 +g27 +sg25275 +S'1927/1930' +p147048 +sg25268 +S'The Shepherd and His Flock' +p147049 +sg25270 +S'Marc Chagall' +p147050 +sa(dp147051 +g25273 +S'etching' +p147052 +sg25267 +g27 +sg25275 +S'1927/1930' +p147053 +sg25268 +S'The Tortoise and the Two Ducks' +p147054 +sg25270 +S'Marc Chagall' +p147055 +sa(dp147056 +g25273 +S'etching' +p147057 +sg25267 +g27 +sg25275 +S'1924' +p147058 +sg25268 +S'Man with a Crucifix' +p147059 +sg25270 +S'Robert Sargent Austin' +p147060 +sa(dp147061 +g25273 +S'etching' +p147062 +sg25267 +g27 +sg25275 +S'1927/1930' +p147063 +sg25268 +S'The Patridge and the Fowls' +p147064 +sg25270 +S'Marc Chagall' +p147065 +sa(dp147066 +g25273 +S'etching' +p147067 +sg25267 +g27 +sg25275 +S'1927/1930' +p147068 +sg25268 +S'The Fish and the Shepherd Who Played on the Flute' +p147069 +sg25270 +S'Marc Chagall' +p147070 +sa(dp147071 +g25273 +S'etching and drypoint' +p147072 +sg25267 +g27 +sg25275 +S'1927/1930' +p147073 +sg25268 +S'The Two Parrots, the King, and His Son' +p147074 +sg25270 +S'Marc Chagall' +p147075 +sa(dp147076 +g25273 +S'etching' +p147077 +sg25267 +g27 +sg25275 +S'1927/1930' +p147078 +sg25268 +S'The Cat and the Two Sparrows' +p147079 +sg25270 +S'Marc Chagall' +p147080 +sa(dp147081 +g25273 +S'etching' +p147082 +sg25267 +g27 +sg25275 +S'1927/1930' +p147083 +sg25268 +S'The Two Goats' +p147084 +sg25270 +S'Marc Chagall' +p147085 +sa(dp147086 +g25273 +S'etching and drypoint' +p147087 +sg25267 +g27 +sg25275 +S'1927/1930' +p147088 +sg25268 +S'The Sick Stag' +p147089 +sg25270 +S'Marc Chagall' +p147090 +sa(dp147091 +g25273 +S'etching' +p147092 +sg25267 +g27 +sg25275 +S'1927/1930' +p147093 +sg25268 +S'The Fox and the Turkeys' +p147094 +sg25270 +S'Marc Chagall' +p147095 +sa(dp147096 +g25268 +S'Alexis Charles Henry de Tocqueville' +p147097 +sg25270 +S'Th\xc3\xa9odore Chass\xc3\xa9riau' +p147098 +sg25273 +S'lithograph' +p147099 +sg25275 +S'1848' +p147100 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009190.jpg' +p147101 +sg25267 +g27 +sa(dp147102 +g25273 +S'1 vol: ill: 48 etching and soft-ground etchings' +p147103 +sg25267 +g27 +sg25275 +S'published 1838' +p147104 +sg25268 +S'Liber Studiorum' +p147105 +sg25270 +S'John Sell Cotman' +p147106 +sa(dp147107 +g25273 +S'1 vol: ill: 60 etchings' +p147108 +sg25267 +g27 +sg25275 +S'published 1818' +p147109 +sg25268 +S'Architectural Antiquities of Norfolk' +p147110 +sg25270 +S'John Sell Cotman' +p147111 +sa(dp147112 +g25273 +S'graphite and charcoal squared in graphite on wove paper' +p147113 +sg25267 +g27 +sg25275 +S'c. 1926' +p147114 +sg25268 +S'The Puppet Master' +p147115 +sg25270 +S'Robert Sargent Austin' +p147116 +sa(dp147117 +g25273 +S'1 vol: ill: 50 etchings' +p147118 +sg25267 +g27 +sg25275 +S'1816/1818' +p147119 +sg25268 +S'Specimens of Norman and Gothic Architecture in the County of Norfolk' +p147120 +sg25270 +S'John Sell Cotman' +p147121 +sa(dp147122 +g25268 +S'Saint James the Greater' +p147123 +sg25270 +S'Lucas Cranach the Elder' +p147124 +sg25273 +S'woodcut' +p147125 +sg25275 +S'unknown date\n' +p147126 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0c6.jpg' +p147127 +sg25267 +g27 +sa(dp147128 +g25268 +S'Saint Paul' +p147129 +sg25270 +S'Lucas Cranach the Elder' +p147130 +sg25273 +S'woodcut' +p147131 +sg25275 +S'unknown date\n' +p147132 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0c4.jpg' +p147133 +sg25267 +g27 +sa(dp147134 +g25268 +S'Shepherd and Shepherdess (Le Berger et la bergere)' +p147135 +sg25270 +S'Charles-Fran\xc3\xa7ois Daubigny' +p147136 +sg25273 +S'etching' +p147137 +sg25275 +S'1874' +p147138 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091db.jpg' +p147139 +sg25267 +g27 +sa(dp147140 +g25268 +S'The Ford (Le Gue)' +p147141 +sg25270 +S'Charles-Fran\xc3\xa7ois Daubigny' +p147142 +sg25273 +S'etching' +p147143 +sg25275 +S'1865' +p147144 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091da.jpg' +p147145 +sg25267 +g27 +sa(dp147146 +g25268 +S'Un D\xc3\xa9but galant' +p147147 +sg25270 +S'Honor\xc3\xa9 Daumier' +p147148 +sg25273 +S'lithograph' +p147149 +sg25275 +S'1844' +p147150 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092c1.jpg' +p147151 +sg25267 +g27 +sa(dp147152 +g25268 +S'The Road (La route)' +p147153 +sg25270 +S'Edgar Degas' +p147154 +sg25273 +S'monotype (black ink) on china paper' +p147155 +sg25275 +S'c. 1878/1880' +p147156 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f17.jpg' +p147157 +sg25267 +g27 +sa(dp147158 +g25268 +S'Woman in a Ruffled Cap (Dame ag\xc3\xa9e)' +p147159 +sg25270 +S'Edgar Degas' +p147160 +sg25273 +S'etching' +p147161 +sg25275 +S'c. 1857/1860' +p147162 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009803.jpg' +p147163 +sg25267 +g27 +sa(dp147164 +g25268 +S'Program for the Soiree Artistique (Programme de la Soir\xc3\xa9e des anciens \xc3\xa9l\xc3\xa8ves du Lyc\xc3\xa9e de Nantes)' +p147165 +sg25270 +S'Edgar Degas' +p147166 +sg25273 +S'transfer lithograph' +p147167 +sg25275 +S'1844' +p147168 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a0006065.jpg' +p147169 +sg25267 +g27 +sa(dp147170 +g25273 +S'lithograph in green' +p147171 +sg25267 +g27 +sg25275 +S'1895' +p147172 +sg25268 +S"Young Woman with Ewers (Marthe presentant les burettes ou La jeune fille a l'aiguier" +p147173 +sg25270 +S'Maurice Denis' +p147174 +sa(dp147175 +g25273 +S'engraving' +p147176 +sg25267 +g27 +sg25275 +S'1927' +p147177 +sg25268 +S'Highbridge' +p147178 +sg25270 +S'Robert Sargent Austin' +p147179 +sa(dp147180 +g25268 +S'Pan and Syrinx' +p147181 +sg25270 +S'Michel Dorigny' +p147182 +sg25273 +S'engraving' +p147183 +sg25275 +S'unknown date\n' +p147184 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008afe.jpg' +p147185 +sg25267 +g27 +sa(dp147186 +g25273 +S'lithograph' +p147187 +sg25267 +g27 +sg25275 +S'unknown date\n' +p147188 +sg25268 +S"L'Ete (La Moisson)" +p147189 +sg25270 +S'Raoul Dufy' +p147190 +sa(dp147191 +g25273 +S'lithograph' +p147192 +sg25267 +g27 +sg25275 +S'unknown date\n' +p147193 +sg25268 +S'La Mediterranee' +p147194 +sg25270 +S'Raoul Dufy' +p147195 +sa(dp147196 +g25268 +S'The Little Park (Le petite parc)' +p147197 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p147198 +sg25273 +S'etching' +p147199 +sg25275 +S'c. 1763' +p147200 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005a97.jpg' +p147201 +sg25267 +g27 +sa(dp147202 +g25268 +S'At the Black Rocks (Aux roches noires)' +p147203 +sg25270 +S'Paul Gauguin' +p147204 +sg25273 +S'woodcut [working proof?]' +p147205 +sg25275 +S'in or after 1895' +p147206 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a000672e.jpg' +p147207 +sg25267 +g27 +sa(dp147208 +g25268 +S'At the Black Rocks (Aux roches noires)' +p147209 +sg25270 +S'Paul Gauguin' +p147210 +sg25273 +S'woodcut on wove paper' +p147211 +sg25275 +S'in or after 1895' +p147212 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a000612c.jpg' +p147213 +sg25267 +g27 +sa(dp147214 +g25268 +S'Breton Women beside a Fence (Bretonnes \xc3\xa0 la barri\xc3\xa8re)' +p147215 +sg25270 +S'Artist Information (' +p147216 +sg25273 +S'(artist)' +p147217 +sg25275 +S'\n' +p147218 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00015/a000155d.jpg' +p147219 +sg25267 +g27 +sa(dp147220 +g25268 +S"Design for a China Plate (Projet d'assiette)" +p147221 +sg25270 +S'Paul Gauguin' +p147222 +sg25273 +S'lithograph (zinc) in black on imitation japan paper' +p147223 +sg25275 +S'1889' +p147224 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a6f.jpg' +p147225 +sg25267 +g27 +sa(dp147226 +g25268 +S'Te Faruru (They are Making Love Here)' +p147227 +sg25270 +S'Paul Gauguin' +p147228 +sg25273 +S'woodcut printed in orange, red and black by Louis Roy' +p147229 +sg25275 +S'1894/1895' +p147230 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a000671d.jpg' +p147231 +sg25267 +g27 +sa(dp147232 +g25268 +S'Title Page for "Le Sourire" (Titre du Sourire)' +p147233 +sg25270 +S'Paul Gauguin' +p147234 +sg25273 +S'woodcut on japan paper' +p147235 +sg25275 +S'in or after 1895' +p147236 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066de.jpg' +p147237 +sg25267 +g27 +sa(dp147238 +g25273 +S'pen and black ink with watercolor over graphite on wove paper' +p147239 +sg25267 +g27 +sg25275 +S'c. 1925' +p147240 +sg25268 +S'The Stone Breaker' +p147241 +sg25270 +S'Robert Sargent Austin' +p147242 +sa(dp147243 +g25268 +S'Mercury and Argus (Mercure et Argus)' +p147244 +sg25270 +S'Claude Lorrain' +p147245 +sg25273 +S'etching' +p147246 +sg25275 +S'1662' +p147247 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008910.jpg' +p147248 +sg25267 +g27 +sa(dp147249 +g25268 +S'Study for "Swiss Sentry at the Louvre"' +p147250 +sg25270 +S'Th\xc3\xa9odore Gericault' +p147251 +sg25273 +S'graphite on laid paper' +p147252 +sg25275 +S'c. 1819' +p147253 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072b5.jpg' +p147254 +sg25267 +g27 +sa(dp147255 +g25273 +S'lithograph' +p147256 +sg25267 +g27 +sg25275 +S'unknown date\n' +p147257 +sg25268 +S'In the Cafe (Au cafe)' +p147258 +sg25270 +S'Alberto Giacometti' +p147259 +sa(dp147260 +g25268 +S'Christ and the Apostles and the Holy Women' +p147261 +sg25270 +S'Urs Graf I' +p147262 +sg25273 +S'woodcut' +p147263 +sg25275 +S'unknown date\n' +p147264 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef90.jpg' +p147265 +sg25267 +g27 +sa(dp147266 +g25273 +S'etching and (engraving?)' +p147267 +sg25267 +g27 +sg25275 +S'unknown date\n' +p147268 +sg25268 +S'Landscape with Cows' +p147269 +sg25270 +S'Marcel Gromaire' +p147270 +sa(dp147271 +g25273 +S'etching and engraving in brown' +p147272 +sg25267 +g27 +sg25275 +S'unknown date\n' +p147273 +sg25268 +S'Nude with Raised Arm' +p147274 +sg25270 +S'Marcel Gromaire' +p147275 +sa(dp147276 +g25268 +S'Trois Personnages' +p147277 +sg25270 +S'Stanley William Hayter' +p147278 +sg25273 +S'engraving and soft-ground etching with areas of deep intaglio (printing as white relief) where ink has been wiped clean' +p147279 +sg25275 +S'1951' +p147280 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a0008274.jpg' +p147281 +sg25267 +g27 +sa(dp147282 +g25268 +S'Pegase' +p147283 +sg25270 +S'Stanley William Hayter' +p147284 +sg25273 +S'color engraving and soft-ground etching (copper) printed from intaglio and relief (viscosity and stencil methods) [state IV]' +p147285 +sg25275 +S'1951' +p147286 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00081/a00081c3.jpg' +p147287 +sg25267 +g27 +sa(dp147288 +g25268 +S'Reconteur' +p147289 +sg25270 +S'Stanley William Hayter' +p147290 +sg25273 +S'lithograph in red-violet, orange, and blue' +p147291 +sg25275 +S'1951' +p147292 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00081/a00081c5.jpg' +p147293 +sg25267 +g27 +sa(dp147294 +g25273 +S'woodcut' +p147295 +sg25267 +g27 +sg25275 +S'1912' +p147296 +sg25268 +S'Stralsund' +p147297 +sg25270 +S'Erich Heckel' +p147298 +sa(dp147299 +g25273 +S'graphite on laid paper' +p147300 +sg25267 +g27 +sg25275 +S'1922' +p147301 +sg25268 +S'Tivoli' +p147302 +sg25270 +S'Robert Sargent Austin' +p147303 +sa(dp147304 +g25268 +S'Landscape with a Lake [top plate]' +p147305 +sg25270 +S'Augustin Hirschvogel' +p147306 +sg25273 +S'etching [one of 2 prints on piece of uncut paper]' +p147307 +sg25275 +S'1546' +p147308 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abc3.jpg' +p147309 +sg25267 +g27 +sa(dp147310 +g25268 +S'Landscape with Sail Boats [bottom plate]' +p147311 +sg25270 +S'Augustin Hirschvogel' +p147312 +sg25273 +S'etching [one of 2 prints on piece of uncut paper]' +p147313 +sg25275 +S'1546' +p147314 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abc4.jpg' +p147315 +sg25267 +g27 +sa(dp147316 +g25268 +S'Man and Woman' +p147317 +sg25270 +S'Henri de Toulouse-Lautrec' +p147318 +sg25273 +S'7-color photomechanical process' +p147319 +sg25275 +S'unknown date\n' +p147320 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e87.jpg' +p147321 +sg25267 +g27 +sa(dp147322 +g25273 +S'etching' +p147323 +sg25267 +g27 +sg25275 +S'1547' +p147324 +sg25268 +S'Map of Vienna' +p147325 +sg25270 +S'Augustin Hirschvogel' +p147326 +sa(dp147327 +g25268 +S'Chaumi\xc3\xa8res de p\xc3\xaacheurs' +p147328 +sg25270 +S'Eug\xc3\xa8ne Isabey' +p147329 +sg25273 +S'lithograph' +p147330 +sg25275 +S'c. 1844' +p147331 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f73.jpg' +p147332 +sg25267 +g27 +sa(dp147333 +g25268 +S'Six marines' +p147334 +sg25270 +S'Eug\xc3\xa8ne Isabey' +p147335 +sg25273 +S'lithograph, cover for the series' +p147336 +sg25275 +S'1833' +p147337 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f74.jpg' +p147338 +sg25267 +g27 +sa(dp147339 +g25268 +S'Bords de Canal' +p147340 +sg25270 +S'Johan Barthold Jongkind' +p147341 +sg25273 +S'red chalk and graphite on laid paper' +p147342 +sg25275 +S'unknown date\n' +p147343 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007032.jpg' +p147344 +sg25267 +g27 +sa(dp147345 +g25273 +S'engraving' +p147346 +sg25267 +g27 +sg25275 +S'1950' +p147347 +sg25268 +S'Ophiuchus (Constellation)' +p147348 +sg25270 +S'Leo Katz' +p147349 +sa(dp147350 +g25268 +S'Horseman' +p147351 +sg25270 +S'Artist Information (' +p147352 +sg25273 +S'(artist after)' +p147353 +sg25275 +S'\n' +p147354 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098ce.jpg' +p147355 +sg25267 +g27 +sa(dp147356 +g25268 +S'Horseman' +p147357 +sg25270 +S'Artist Information (' +p147358 +sg25273 +S'(artist after)' +p147359 +sg25275 +S'\n' +p147360 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098cf.jpg' +p147361 +sg25267 +g27 +sa(dp147362 +g25273 +S'graphite' +p147363 +sg25267 +g27 +sg25275 +S'c. 1925' +p147364 +sg25268 +S'Ponte Pietra, Verona' +p147365 +sg25270 +S'Robert Sargent Austin' +p147366 +sa(dp147367 +g25268 +S'The Dead Man (Der tote Mann)' +p147368 +sg25270 +S'Wilhelm Lehmbruck' +p147369 +sg25273 +S'drypoint [trial proof]' +p147370 +sg25275 +S'1915' +p147371 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b7cd.jpg' +p147372 +sg25267 +g27 +sa(dp147373 +g25268 +S'Les panaderos' +p147374 +sg25270 +S'Alexandre Lunois' +p147375 +sg25273 +S'color lithograph' +p147376 +sg25275 +S'1905' +p147377 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fc2.jpg' +p147378 +sg25267 +g27 +sa(dp147379 +g25268 +S'The Cats (Les chats)' +p147380 +sg25270 +S'Edouard Manet' +p147381 +sg25273 +S'etching' +p147382 +sg25275 +S'1869' +p147383 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d04.jpg' +p147384 +sg25267 +g27 +sa(dp147385 +g25268 +S'The Philosopher (Le philosophe)' +p147386 +sg25270 +S'Edouard Manet' +p147387 +sg25273 +S'etching and drypoint' +p147388 +sg25275 +S'1866' +p147389 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cfd.jpg' +p147390 +sg25267 +g27 +sa(dp147391 +g25268 +S'At the Prado (Au Prado)' +p147392 +sg25270 +S'Edouard Manet' +p147393 +sg25273 +S'etching and aquatint' +p147394 +sg25275 +S'1865/1868' +p147395 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009956.jpg' +p147396 +sg25267 +g27 +sa(dp147397 +g25268 +S'Mlle. Victorine in the Costume of an "Espada"(L\'espada)' +p147398 +sg25270 +S'Edouard Manet' +p147399 +sg25273 +S'etching and aquatint' +p147400 +sg25275 +S'1862' +p147401 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cf7.jpg' +p147402 +sg25267 +g27 +sa(dp147403 +g25268 +S'The Lute Player and the Harpist' +p147404 +sg25270 +S'Israhel van Meckenem' +p147405 +sg25273 +S'engraving' +p147406 +sg25275 +S'c. 1495/1503' +p147407 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c19.jpg' +p147408 +sg25267 +g27 +sa(dp147409 +g25268 +S'Christ Washing the Feet of the Apostles' +p147410 +sg25270 +S'Israhel van Meckenem' +p147411 +sg25273 +S'engraving' +p147412 +sg25275 +S'c. 1480' +p147413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3ed.jpg' +p147414 +sg25267 +g27 +sa(dp147415 +g25268 +S'The Betrayal' +p147416 +sg25270 +S'Israhel van Meckenem' +p147417 +sg25273 +S'engraving' +p147418 +sg25275 +S'c. 1480' +p147419 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3ef.jpg' +p147420 +sg25267 +g27 +sa(dp147421 +g25268 +S'The Crowning with Thorns' +p147422 +sg25270 +S'Israhel van Meckenem' +p147423 +sg25273 +S'engraving' +p147424 +sg25275 +S'c. 1480' +p147425 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3f0.jpg' +p147426 +sg25267 +g27 +sa(dp147427 +g25268 +S'Andrea dei Franceschi' +p147428 +sg25270 +S'Titian' +p147429 +sg25273 +S', c. 1530/1540' +p147430 +sg25275 +S'\n' +p147431 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000894.jpg' +p147432 +sg25267 +g27 +sa(dp147433 +g25273 +S'watercolor over graphite on wove paper' +p147434 +sg25267 +g27 +sg25275 +S'c. 1929' +p147435 +sg25268 +S'Child in Bed' +p147436 +sg25270 +S'Robert Sargent Austin' +p147437 +sa(dp147438 +g25268 +S'The Bearing of the Cross' +p147439 +sg25270 +S'Israhel van Meckenem' +p147440 +sg25273 +S'engraving' +p147441 +sg25275 +S'c. 1480' +p147442 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3eb.jpg' +p147443 +sg25267 +g27 +sa(dp147444 +g25268 +S'The Lamentation' +p147445 +sg25270 +S'Israhel van Meckenem' +p147446 +sg25273 +S'engraving' +p147447 +sg25275 +S'c. 1480' +p147448 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3e9.jpg' +p147449 +sg25267 +g27 +sa(dp147450 +g25268 +S'The Resurrection' +p147451 +sg25270 +S'Israhel van Meckenem' +p147452 +sg25273 +S'engraving' +p147453 +sg25275 +S'c. 1480' +p147454 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3ee.jpg' +p147455 +sg25267 +g27 +sa(dp147456 +g25268 +S'Christ at Emmaus' +p147457 +sg25270 +S'Israhel van Meckenem' +p147458 +sg25273 +S'engraving' +p147459 +sg25275 +S'c. 1480' +p147460 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3e6.jpg' +p147461 +sg25267 +g27 +sa(dp147462 +g25273 +S'color woodcut' +p147463 +sg25267 +g27 +sg25275 +S'1951' +p147464 +sg25268 +S'Girls with Wagon' +p147465 +sg25270 +S'Vera Myhre' +p147466 +sa(dp147467 +g25273 +S'color woodcut' +p147468 +sg25267 +g27 +sg25275 +S'1952' +p147469 +sg25268 +S'Man in Park' +p147470 +sg25270 +S'Vera Myhre' +p147471 +sa(dp147472 +g25273 +S'color woodcut' +p147473 +sg25267 +g27 +sg25275 +S'1952' +p147474 +sg25268 +S'Mother and Child, Seated' +p147475 +sg25270 +S'Vera Myhre' +p147476 +sa(dp147477 +g25273 +S'color woodcut' +p147478 +sg25267 +g27 +sg25275 +S'1952' +p147479 +sg25268 +S'Woman in a Green Blouse, Seated' +p147480 +sg25270 +S'Vera Myhre' +p147481 +sa(dp147482 +g25268 +S'The Scene with the Tall Baguenodi\xc3\xa8re' +p147483 +sg25270 +S'Jean-Baptiste Oudry' +p147484 +sg25273 +S'black chalk heightened with white chalk on blue laid paper, partially faded to brown' +p147485 +sg25275 +S'1726/1727' +p147486 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037cc.jpg' +p147487 +sg25267 +g27 +sa(dp147488 +g25268 +S"Ragotin declame des vers; des paysans croient qu'il preche" +p147489 +sg25270 +S'Jean-Baptiste Oudry' +p147490 +sg25273 +S'black chalk heightened with white chalk on blue laid paper' +p147491 +sg25275 +S'1737' +p147492 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d60.jpg' +p147493 +sg25267 +g27 +sa(dp147494 +g25273 +S'graphite on wove paper' +p147495 +sg25267 +g27 +sg25275 +S'in or after 1921' +p147496 +sg25268 +S'Halt on Festa' +p147497 +sg25270 +S'Robert Sargent Austin' +p147498 +sa(dp147499 +g25268 +S'Christ in Majesty with Twelve Apostles' +p147500 +sg25270 +S'Artist Information (' +p147501 +sg25273 +S'Italian, active 1302 - c. 1340' +p147502 +sg25275 +S'(related artist)' +p147503 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a0005815.jpg' +p147504 +sg25267 +g27 +sa(dp147505 +g25268 +S'Young Woman Facing Left, Three-Quarter View (Buste de jeune femme)' +p147506 +sg25270 +S'Pablo Picasso' +p147507 +sg25273 +S'woodcut [printed in 1933]' +p147508 +sg25275 +S'1906' +p147509 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eebf.jpg' +p147510 +sg25267 +g27 +sa(dp147511 +g25268 +S"Man with Guitar (L'homme a la guitare)" +p147512 +sg25270 +S'Pablo Picasso' +p147513 +sg25273 +S'engraving' +p147514 +sg25275 +S'1915' +p147515 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000edb7.jpg' +p147516 +sg25267 +g27 +sa(dp147517 +g25268 +S'The Poor (Les pauvres)' +p147518 +sg25270 +S'Artist Information (' +p147519 +sg25273 +S'French, active first half 20th century' +p147520 +sg25275 +S'(printer)' +p147521 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee20.jpg' +p147522 +sg25267 +g27 +sa(dp147523 +g25268 +S'Clown Resting (Le saltimbanque au repos)' +p147524 +sg25270 +S'Artist Information (' +p147525 +sg25273 +S'French, active first half 20th century' +p147526 +sg25275 +S'(printer)' +p147527 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee1c.jpg' +p147528 +sg25267 +g27 +sa(dp147529 +g25273 +S'color lithograph' +p147530 +sg25267 +g27 +sg25275 +S'unknown date\n' +p147531 +sg25268 +S'Double Self-Portrait' +p147532 +sg25270 +S'Carl Pickhardt' +p147533 +sa(dp147534 +g25268 +S'Chestnut Vendors (Marchands de marrons)' +p147535 +sg25270 +S'Camille Pissarro' +p147536 +sg25273 +S'drypoint' +p147537 +sg25275 +S'1878' +p147538 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009db0.jpg' +p147539 +sg25267 +g27 +sa(dp147540 +g25273 +S'color etching' +p147541 +sg25267 +g27 +sg25275 +S'1949' +p147542 +sg25268 +S'The Flight into Egypt' +p147543 +sg25270 +S'Andr\xc3\xa9 Racz' +p147544 +sa(dp147545 +g25273 +S'color monotype' +p147546 +sg25267 +g27 +sg25275 +S'unknown date\n' +p147547 +sg25268 +S'Flowers Behind the Door' +p147548 +sg25270 +S'Bernard Reder' +p147549 +sa(dp147550 +g25273 +S'brush and black ink with charcoal and graphite on wove paper' +p147551 +sg25267 +g27 +sg25275 +S'unknown date\n' +p147552 +sg25268 +S'Beggars of Naples' +p147553 +sg25270 +S'Robert Sargent Austin' +p147554 +sa(dp147555 +g25273 +S'color monotype' +p147556 +sg25267 +g27 +sg25275 +S'unknown date\n' +p147557 +sg25268 +S'"Thy Belly is like a Heap of Wheat"' +p147558 +sg25270 +S'Bernard Reder' +p147559 +sa(dp147560 +g25273 +S'color monotype' +p147561 +sg25267 +g27 +sg25275 +S'1951' +p147562 +sg25268 +S'"Thy Hair is like a Flock of Goats"' +p147563 +sg25270 +S'Bernard Reder' +p147564 +sa(dp147565 +g25268 +S"L'Art Celeste (The Celestial Art)" +p147566 +sg25270 +S'Odilon Redon' +p147567 +sg25273 +S'lithograph' +p147568 +sg25275 +S'1894' +p147569 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f9c.jpg' +p147570 +sg25267 +g27 +sa(dp147571 +g25268 +S'La Peur (Fear)' +p147572 +sg25270 +S'Odilon Redon' +p147573 +sg25273 +S'etching' +p147574 +sg25275 +S'1865' +p147575 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099b5.jpg' +p147576 +sg25267 +g27 +sa(dp147577 +g25268 +S'Jacob Haaringh (Young Haaringh) (Pieter Haaringh)' +p147578 +sg25270 +S'Rembrandt van Rijn' +p147579 +sg25273 +S'etching, drypoint and burin on japan paper' +p147580 +sg25275 +S'1655' +p147581 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d367.jpg' +p147582 +sg25267 +g27 +sa(dp147583 +g25273 +S'lithograph' +p147584 +sg25267 +g27 +sg25275 +S'1926' +p147585 +sg25268 +S'Leon Bloy' +p147586 +sg25270 +S'Georges Rouault' +p147587 +sa(dp147588 +g25268 +S'Le scelerat Damiens' +p147589 +sg25270 +S'Gabriel de Saint-Aubin' +p147590 +sg25273 +S', 1757' +p147591 +sg25275 +S'\n' +p147592 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008be5.jpg' +p147593 +sg25267 +g27 +sa(dp147594 +g25268 +S'The Annunciation' +p147595 +sg25270 +S'Martin Schongauer' +p147596 +sg25273 +S'engraving on laid paper' +p147597 +sg25275 +S'c. 1480' +p147598 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a478.jpg' +p147599 +sg25267 +g27 +sa(dp147600 +g25268 +S'Bust of a Monk Assisting at Communion' +p147601 +sg25270 +S'Martin Schongauer' +p147602 +sg25273 +S'pen and brown ink on laid paper' +p147603 +sg25275 +S'unknown date\n' +p147604 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e01.jpg' +p147605 +sg25267 +g27 +sa(dp147606 +g25268 +S'The Crucifixion with Four Angels' +p147607 +sg25270 +S'Martin Schongauer' +p147608 +sg25273 +S'engraving' +p147609 +sg25275 +S'c. 1475' +p147610 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a445.jpg' +p147611 +sg25267 +g27 +sa(dp147612 +g25273 +S'brown, gray, and gray-green wash with brush and black ink and black chalk on light brown paper' +p147613 +sg25267 +g27 +sg25275 +S'unknown date\n' +p147614 +sg25268 +S'Midday Meal' +p147615 +sg25270 +S'Robert Sargent Austin' +p147616 +sa(dp147617 +g25268 +S'Saint Catherine of Alexandria' +p147618 +sg25270 +S'Martin Schongauer' +p147619 +sg25273 +S'engraving' +p147620 +sg25275 +S'c. 1480/1490' +p147621 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a486.jpg' +p147622 +sg25267 +g27 +sa(dp147623 +g25268 +S'Saint John on Patmos' +p147624 +sg25270 +S'Martin Schongauer' +p147625 +sg25273 +S'engraving on laid paper' +p147626 +sg25275 +S'c. 1475/1480' +p147627 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4b1.jpg' +p147628 +sg25267 +g27 +sa(dp147629 +g25268 +S'Third Foolish Virgin' +p147630 +sg25270 +S'Martin Schongauer' +p147631 +sg25273 +S'engraving' +p147632 +sg25275 +S'c. 1490' +p147633 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a489.jpg' +p147634 +sg25267 +g27 +sa(dp147635 +g25273 +S'etching, engraving and aquatint in black and yellow on wove paper' +p147636 +sg25267 +g27 +sg25275 +S'1950' +p147637 +sg25268 +S'The Influence of the Moon' +p147638 +sg25270 +S'Karl Schrag' +p147639 +sa(dp147640 +g25273 +S'etching in yellow and green on wove paper' +p147641 +sg25267 +g27 +sg25275 +S'1952' +p147642 +sg25268 +S'Solitude (Second Version)' +p147643 +sg25270 +S'Karl Schrag' +p147644 +sa(dp147645 +g25273 +S'lithograph' +p147646 +sg25267 +g27 +sg25275 +S'unknown date\n' +p147647 +sg25268 +S'El Camion' +p147648 +sg25270 +S'Waldemar Sjolander' +p147649 +sa(dp147650 +g25273 +S'color lithograph' +p147651 +sg25267 +g27 +sg25275 +S'1947' +p147652 +sg25268 +S'La Serenata II' +p147653 +sg25270 +S'Waldemar Sjolander' +p147654 +sa(dp147655 +g25268 +S'The Annunciation' +p147656 +sg25270 +S'Virgil Solis' +p147657 +sg25273 +S'pen and black and violet ink on laid paper' +p147658 +sg25275 +S'unknown date\n' +p147659 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007967.jpg' +p147660 +sg25267 +g27 +sa(dp147661 +g25268 +S'The Betrayal' +p147662 +sg25270 +S'Virgil Solis' +p147663 +sg25273 +S'pen and black and violet ink with gray wash and graphite on laid paper' +p147664 +sg25275 +S'unknown date\n' +p147665 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007966.jpg' +p147666 +sg25267 +g27 +sa(dp147667 +g25268 +S'Christ at the Column' +p147668 +sg25270 +S'Virgil Solis' +p147669 +sg25273 +S'pen and black and violet ink on laid paper' +p147670 +sg25275 +S'unknown date\n' +p147671 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007965.jpg' +p147672 +sg25267 +g27 +sa(dp147673 +g25273 +S'charcoal and brush and black ink on laid paper' +p147674 +sg25267 +g27 +sg25275 +S'unknown date\n' +p147675 +sg25268 +S'Dolomites I' +p147676 +sg25270 +S'Robert Sargent Austin' +p147677 +sa(dp147678 +g25268 +S'The Creation of Eve' +p147679 +sg25270 +S'Virgil Solis' +p147680 +sg25273 +S'pen and black and violet ink on laid paper' +p147681 +sg25275 +S'unknown date\n' +p147682 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007962.jpg' +p147683 +sg25267 +g27 +sa(dp147684 +g25268 +S'The Last Judgment' +p147685 +sg25270 +S'Virgil Solis' +p147686 +sg25273 +S'pen and black and violet ink on laid paper' +p147687 +sg25275 +S'unknown date\n' +p147688 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007963.jpg' +p147689 +sg25267 +g27 +sa(dp147690 +g25268 +S'The Transfiguration' +p147691 +sg25270 +S'Virgil Solis' +p147692 +sg25273 +S'pen and black and violet ink on laid paper' +p147693 +sg25275 +S'unknown date\n' +p147694 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007964.jpg' +p147695 +sg25267 +g27 +sa(dp147696 +g25273 +S'woodcut' +p147697 +sg25267 +g27 +sg25275 +S'1935' +p147698 +sg25268 +S'Street in Old Part of Jerusalem' +p147699 +sg25270 +S'Jakob Steinhardt' +p147700 +sa(dp147701 +g25273 +S'woodcut' +p147702 +sg25267 +g27 +sg25275 +S'1947' +p147703 +sg25268 +S'Houses in Jerusalem' +p147704 +sg25270 +S'Jakob Steinhardt' +p147705 +sa(dp147706 +g25268 +S'At the Moulin Rouge, la Goulue and Her Sister (Au Moulin Rouge, la Goulue et sa soeur))' +p147707 +sg25270 +S'Henri de Toulouse-Lautrec' +p147708 +sg25273 +S'color lithograph' +p147709 +sg25275 +S'1892' +p147710 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e62.jpg' +p147711 +sg25267 +g27 +sa(dp147712 +g25268 +S'The Milliner (La Modiste - Ren\xc3\xa9e Vert)' +p147713 +sg25270 +S'Henri de Toulouse-Lautrec' +p147714 +sg25273 +S'lithograph in green' +p147715 +sg25275 +S'1893' +p147716 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e2c.jpg' +p147717 +sg25267 +g27 +sa(dp147718 +g25268 +S'The Milliner (La Modiste - Ren\xc3\xa9e Vert)' +p147719 +sg25270 +S'Henri de Toulouse-Lautrec' +p147720 +sg25273 +S'lithograph in green' +p147721 +sg25275 +S'1893' +p147722 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a03b.jpg' +p147723 +sg25267 +g27 +sa(dp147724 +g25268 +S'The Milliner (La Modiste - Ren\xc3\xa9e Vert)' +p147725 +sg25270 +S'Henri de Toulouse-Lautrec' +p147726 +sg25273 +S'lithograph in gray' +p147727 +sg25275 +S'1893' +p147728 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e2b.jpg' +p147729 +sg25267 +g27 +sa(dp147730 +g25268 +S'The Milliner (La Modiste - Ren\xc3\xa9e Vert)' +p147731 +sg25270 +S'Henri de Toulouse-Lautrec' +p147732 +sg25273 +S'lithograph in green' +p147733 +sg25275 +S'1893' +p147734 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a03a.jpg' +p147735 +sg25267 +g27 +sa(dp147736 +g25273 +S'watercolor' +p147737 +sg25267 +g27 +sg25275 +S'unknown date\n' +p147738 +sg25268 +S'Dolomites II' +p147739 +sg25270 +S'Robert Sargent Austin' +p147740 +sa(dp147741 +g25268 +S'The Hairdresser - Program for the Th\xc3\xa9\xc3\xa2tre Libre (Le coiffeur - Programme du Th\xc3\xa9\xc3\xa2tre Libre)' +p147742 +sg25270 +S'Henri de Toulouse-Lautrec' +p147743 +sg25273 +S'lithograph in green-black, yellow, and red' +p147744 +sg25275 +S'1893' +p147745 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e2d.jpg' +p147746 +sg25267 +g27 +sa(dp147747 +g25268 +S'The Hairdresser - Program for the Theatre-Libre (Le coiffeur - Programme du Th\xc3\xa9atre-Libre)' +p147748 +sg25270 +S'Henri de Toulouse-Lautrec' +p147749 +sg25273 +S'lithograph in green-black, yellow, and red' +p147750 +sg25275 +S'1893' +p147751 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e2f.jpg' +p147752 +sg25267 +g27 +sa(dp147753 +g25268 +S'Loge with the Gilt Mask (La loge au mascaron dor\xc3\xa9)' +p147754 +sg25270 +S'Henri de Toulouse-Lautrec' +p147755 +sg25273 +S'4-color lithograph' +p147756 +sg25275 +S'1893' +p147757 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000fa9.jpg' +p147758 +sg25267 +g27 +sa(dp147759 +g25268 +S'Cover for "L\'estampe originale" (Couverture de "L\'estampe originale")' +p147760 +sg25270 +S'Artist Information (' +p147761 +sg25273 +S'French, active 1860s/1890s' +p147762 +sg25275 +S'(printer)' +p147763 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000faa.jpg' +p147764 +sg25267 +g27 +sa(dp147765 +g25268 +S'Les Vielles Histoires (cover/frontispiece)' +p147766 +sg25270 +S'Henri de Toulouse-Lautrec' +p147767 +sg25273 +S'color lithograph' +p147768 +sg25275 +S'1893' +p147769 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a03d.jpg' +p147770 +sg25267 +g27 +sa(dp147771 +g25268 +S'For You (Pour toi!...)' +p147772 +sg25270 +S'Henri de Toulouse-Lautrec' +p147773 +sg25273 +S'4-color lithograph on velin paper' +p147774 +sg25275 +S'1893' +p147775 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e43.jpg' +p147776 +sg25267 +g27 +sa(dp147777 +g25268 +S'For You (Pour toi!...)' +p147778 +sg25270 +S'Henri de Toulouse-Lautrec' +p147779 +sg25273 +S'lithograph in black on China paper' +p147780 +sg25275 +S'1893' +p147781 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e42.jpg' +p147782 +sg25267 +g27 +sa(dp147783 +g25268 +S'For You (Pour toi!...)' +p147784 +sg25270 +S'Henri de Toulouse-Lautrec' +p147785 +sg25273 +S'lithograph in black' +p147786 +sg25275 +S'1893' +p147787 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e44.jpg' +p147788 +sg25267 +g27 +sa(dp147789 +g25268 +S'Sleepless Night (Nuit blanche)' +p147790 +sg25270 +S'Henri de Toulouse-Lautrec' +p147791 +sg25273 +S'lithograph in black on Japan paper' +p147792 +sg25275 +S'1893' +p147793 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e3f.jpg' +p147794 +sg25267 +g27 +sa(dp147795 +g25273 +S'charcoal and brush with black and gray ink on laid paper' +p147796 +sg25267 +g27 +sg25275 +S'unknown date\n' +p147797 +sg25268 +S'Dolomites III' +p147798 +sg25270 +S'Robert Sargent Austin' +p147799 +sa(dp147800 +g25268 +S'Sleepless Night (Nuit blanche)' +p147801 +sg25270 +S'Henri de Toulouse-Lautrec' +p147802 +sg25273 +S'lithograph in black on China paper' +p147803 +sg25275 +S'1893' +p147804 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e39.jpg' +p147805 +sg25267 +g27 +sa(dp147806 +g25268 +S'Your Mouth (Ta bouche)' +p147807 +sg25270 +S'Henri de Toulouse-Lautrec' +p147808 +sg25273 +S'lithograph in olive green on China paper' +p147809 +sg25275 +S'1893' +p147810 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e3c.jpg' +p147811 +sg25267 +g27 +sa(dp147812 +g25268 +S'Your Mouth (Ta bouche)' +p147813 +sg25270 +S'Henri de Toulouse-Lautrec' +p147814 +sg25273 +S'lithograph in olive green on Japan paper' +p147815 +sg25275 +S'1893' +p147816 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e3d.jpg' +p147817 +sg25267 +g27 +sa(dp147818 +g25268 +S'Wisdom (Sagesse)' +p147819 +sg25270 +S'Henri de Toulouse-Lautrec' +p147820 +sg25273 +S'lithograph in black on Japan paper' +p147821 +sg25275 +S'1893' +p147822 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e41.jpg' +p147823 +sg25267 +g27 +sa(dp147824 +g25268 +S'Wisdom (Sagesse)' +p147825 +sg25270 +S'Henri de Toulouse-Lautrec' +p147826 +sg25273 +S'5-color lithograph' +p147827 +sg25275 +S'1893' +p147828 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e45.jpg' +p147829 +sg25267 +g27 +sa(dp147830 +g25268 +S'Last Ballad (Ultime ballade)' +p147831 +sg25270 +S'Henri de Toulouse-Lautrec' +p147832 +sg25273 +S'lithograph in black and yellow on velin paper' +p147833 +sg25275 +S'1893' +p147834 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e3b.jpg' +p147835 +sg25267 +g27 +sa(dp147836 +g25268 +S'Last Ballad (Ultime ballade)' +p147837 +sg25270 +S'Henri de Toulouse-Lautrec' +p147838 +sg25273 +S'lithograph in black on Japan paper' +p147839 +sg25275 +S'1893' +p147840 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e3a.jpg' +p147841 +sg25267 +g27 +sa(dp147842 +g25268 +S'Study of a Woman (Etude de femme)' +p147843 +sg25270 +S'Henri de Toulouse-Lautrec' +p147844 +sg25273 +S'lithograph in olive green' +p147845 +sg25275 +S'1893' +p147846 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e47.jpg' +p147847 +sg25267 +g27 +sa(dp147848 +g25268 +S'Sick Carnot! (Carnot malade!)' +p147849 +sg25270 +S'Henri de Toulouse-Lautrec' +p147850 +sg25273 +S'lithograph in black on Japan paper' +p147851 +sg25275 +S'1893' +p147852 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e48.jpg' +p147853 +sg25267 +g27 +sa(dp147854 +g25268 +S'The Little Errand-Girl (Le petit trottin)' +p147855 +sg25270 +S'Henri de Toulouse-Lautrec' +p147856 +sg25273 +S'lithograph in black on Japan paper' +p147857 +sg25275 +S'1893' +p147858 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e49.jpg' +p147859 +sg25267 +g27 +sa(dp147860 +g25273 +S'pen and black and gray ink with charcoal on wove paper' +p147861 +sg25267 +g27 +sg25275 +S'unknown date\n' +p147862 +sg25268 +S'In the Waiting Room' +p147863 +sg25270 +S'Robert Sargent Austin' +p147864 +sa(dp147865 +g25268 +S'The Little Errand-Girl (Le petit trottin)' +p147866 +sg25270 +S'Henri de Toulouse-Lautrec' +p147867 +sg25273 +S'lithograph in black on China paper' +p147868 +sg25275 +S'1893' +p147869 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e46.jpg' +p147870 +sg25267 +g27 +sa(dp147871 +g25268 +S'Miss Lo\xc3\xafe Fuller' +p147872 +sg25270 +S'Henri de Toulouse-Lautrec' +p147873 +sg25273 +S'color lithograph' +p147874 +sg25275 +S'1893' +p147875 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d4c.jpg' +p147876 +sg25267 +g27 +sa(dp147877 +g25268 +S"Why Not?...Once Is Not a Habit (Pourquoi pas?...Une fois n'est pas coutume)" +p147878 +sg25270 +S'Henri de Toulouse-Lautrec' +p147879 +sg25273 +S'lithograph in black on velin paper' +p147880 +sg25275 +S'1893' +p147881 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cc9.jpg' +p147882 +sg25267 +g27 +sa(dp147883 +g25268 +S"Why Not?...Once Is Not a Habit (Pourquoi pas?...Une fois n'est pas coutume)" +p147884 +sg25270 +S'Henri de Toulouse-Lautrec' +p147885 +sg25273 +S'lithograph in olive green on velin paper' +p147886 +sg25275 +S'1893' +p147887 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cc7.jpg' +p147888 +sg25267 +g27 +sa(dp147889 +g25268 +S'At the Varieties: Mlle. Lender et Brasseur (Aux vari\xc3\xa9ti\xc3\xa9s: Mlle. Lender et Brasseur)' +p147890 +sg25270 +S'Henri de Toulouse-Lautrec' +p147891 +sg25273 +S'lithograph in olive green' +p147892 +sg25275 +S'1893' +p147893 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ccb.jpg' +p147894 +sg25267 +g27 +sa(dp147895 +g25268 +S'En quarante' +p147896 +sg25270 +S'Henri de Toulouse-Lautrec' +p147897 +sg25273 +S'lithograph in black on velin paper' +p147898 +sg25275 +S'1893' +p147899 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cc8.jpg' +p147900 +sg25267 +g27 +sa(dp147901 +g25268 +S'Mlle. Lender and Baron (Mlle. Lender et Baron)' +p147902 +sg25270 +S'Henri de Toulouse-Lautrec' +p147903 +sg25273 +S'lithograph in olive green' +p147904 +sg25275 +S'1893' +p147905 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cc5.jpg' +p147906 +sg25267 +g27 +sa(dp147907 +g25268 +S'Dress Rehearsal at the Folies-Bergere (R\xc3\xa9p\xc3\xa9tition g\xc3\xa9n\xc3\xa9rale aux Folies-Berg\xc3\xa8re)' +p147908 +sg25270 +S'Henri de Toulouse-Lautrec' +p147909 +sg25273 +S'lithograph in black' +p147910 +sg25275 +S'1893' +p147911 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cce.jpg' +p147912 +sg25267 +g27 +sa(dp147913 +g25268 +S'Dress Rehearsal at the Folies-Bergere (R\xc3\xa9p\xc3\xa9tition g\xc3\xa9n\xc3\xa9rale aux Folies-Berg\xc3\xa8re)' +p147914 +sg25270 +S'Henri de Toulouse-Lautrec' +p147915 +sg25273 +S'lithograph in black' +p147916 +sg25275 +S'1893' +p147917 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ccc.jpg' +p147918 +sg25267 +g27 +sa(dp147919 +g25268 +S'Folies-Bergere: The Censors of M. Prudhomme (Folies-Berg\xc3\xa8re: Les pudeurs de M. Prudhomme)' +p147920 +sg25270 +S'Henri de Toulouse-Lautrec' +p147921 +sg25273 +S'lithograph in black on velin paper' +p147922 +sg25275 +S'1893' +p147923 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ccd.jpg' +p147924 +sg25267 +g27 +sa(dp147925 +g25273 +S'pen and black ink over graphite on laid paper' +p147926 +sg25267 +g27 +sg25275 +S'1924' +p147927 +sg25268 +S'Dom Frankfurt' +p147928 +sg25270 +S'Robert Sargent Austin' +p147929 +sa(dp147930 +g25268 +S'At the Renaissance: Sarah Bernhardt in "Phedre" (A la Renaissance: Sarah Bernhardt dans "Ph\xc3\xa8dre")' +p147931 +sg25270 +S'Henri de Toulouse-Lautrec' +p147932 +sg25273 +S'lithograph in black on velin paper' +p147933 +sg25275 +S'1893' +p147934 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cca.jpg' +p147935 +sg25267 +g27 +sa(dp147936 +g25268 +S'At the Theatre-Libre: Antoine in "L\'inqui\xc3\xa9tude" (Au Th\xc3\xa9atre-Libre: Antoine dans "L\'inqui\xc3\xa9tude")' +p147937 +sg25270 +S'Henri de Toulouse-Lautrec' +p147938 +sg25273 +S'lithograph in black on velin paper' +p147939 +sg25275 +S'1894' +p147940 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ee3.jpg' +p147941 +sg25267 +g27 +sa(dp147942 +g25268 +S'At the Opera: Mme. Caron in "Faust" (A l\'op\xc3\xa9ra: Mme. Caron dans "Faust")' +p147943 +sg25270 +S'Henri de Toulouse-Lautrec' +p147944 +sg25273 +S'lithograph in olive green on velin paper' +p147945 +sg25275 +S'1894' +p147946 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ee6.jpg' +p147947 +sg25267 +g27 +sa(dp147948 +g25268 +S'Lugne Poe and Baldy in "Au-dessus des forces humaines" (Lugne Poe et Baldy dans "Au-desses des forces humaines")' +p147949 +sg25270 +S'Henri de Toulouse-Lautrec' +p147950 +sg25273 +S'lithograph in black' +p147951 +sg25275 +S'1894' +p147952 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ee9.jpg' +p147953 +sg25267 +g27 +sa(dp147954 +g25268 +S'Mlle. Lender in "Madame Satan" (Mlle. Lender dans "Madame Satan")' +p147955 +sg25270 +S'Henri de Toulouse-Lautrec' +p147956 +sg25273 +S'lithograph in olive green on velin paper' +p147957 +sg25275 +S'1894' +p147958 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009eea.jpg' +p147959 +sg25267 +g27 +sa(dp147960 +g25268 +S'Ida Heath at the Bar (Ida Heath au bar)' +p147961 +sg25270 +S'Henri de Toulouse-Lautrec' +p147962 +sg25273 +S'lithograph in olive green on velin paper' +p147963 +sg25275 +S'1894' +p147964 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ee5.jpg' +p147965 +sg25267 +g27 +sa(dp147966 +g25268 +S'Brandes and Le Bargy in "Cabotins" (Brand\xc3\xa8s et Les Bargy dans "Cabotins")' +p147967 +sg25270 +S'Henri de Toulouse-Lautrec' +p147968 +sg25273 +S'lithograph in olive green on velin paper' +p147969 +sg25275 +S'1894' +p147970 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a03f.jpg' +p147971 +sg25267 +g27 +sa(dp147972 +g25268 +S'Brandes and Leloir in "Cabotins" (Brand\xc3\xa8s et Leloir dans "Cabotins")' +p147973 +sg25270 +S'Henri de Toulouse-Lautrec' +p147974 +sg25273 +S'lithograph in olive green on velin paper' +p147975 +sg25275 +S'1894' +p147976 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a018.jpg' +p147977 +sg25267 +g27 +sa(dp147978 +g25268 +S'Antoine and G\xc3\xa9mier in "Une Faillite"' +p147979 +sg25270 +S'Henri de Toulouse-Lautrec' +p147980 +sg25273 +S'lithograph on velin paper' +p147981 +sg25275 +S'1894' +p147982 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a019.jpg' +p147983 +sg25267 +g27 +sa(dp147984 +g25268 +S'Carnival (Carnaval)' +p147985 +sg25270 +S'Henri de Toulouse-Lautrec' +p147986 +sg25273 +S'lithograph in olive green and red on velin paper' +p147987 +sg25275 +S'1894' +p147988 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009eeb.jpg' +p147989 +sg25267 +g27 +sa(dp147990 +g25273 +S'pen and black ink over graphite on laid paper' +p147991 +sg25267 +g27 +sg25275 +S'1924' +p147992 +sg25268 +S'Wurzburg' +p147993 +sg25270 +S'Robert Sargent Austin' +p147994 +sa(dp147995 +g25268 +S'La Tige (Moulin-Rouge)' +p147996 +sg25270 +S'Henri de Toulouse-Lautrec' +p147997 +sg25273 +S'lithograph in black on velin paper' +p147998 +sg25275 +S'1894' +p147999 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ee8.jpg' +p148000 +sg25267 +g27 +sa(dp148001 +g25268 +S'Terror of Grenelle (La terreur de Grenelle)' +p148002 +sg25270 +S'Henri de Toulouse-Lautrec' +p148003 +sg25273 +S'lithograph in green-black on China paper' +p148004 +sg25275 +S'1894' +p148005 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009edc.jpg' +p148006 +sg25267 +g27 +sa(dp148007 +g25268 +S'Terror of Grenelle (La terreur de Grenelle)' +p148008 +sg25270 +S'Henri de Toulouse-Lautrec' +p148009 +sg25273 +S'lithograph in green-black on Japanese paper' +p148010 +sg25275 +S'1894' +p148011 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009edb.jpg' +p148012 +sg25267 +g27 +sa(dp148013 +g25268 +S'Adolphe or the Sad Young Man (Adolphe ou le jeune homme triste)' +p148014 +sg25270 +S'Henri de Toulouse-Lautrec' +p148015 +sg25273 +S'lithograph in black on laid oriental paper' +p148016 +sg25275 +S'1894' +p148017 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ed9.jpg' +p148018 +sg25267 +g27 +sa(dp148019 +g25268 +S'Wounded Eros (Eros vann\xc3\xa9)' +p148020 +sg25270 +S'Henri de Toulouse-Lautrec' +p148021 +sg25273 +S'lithograph in black on laid oriental paper' +p148022 +sg25275 +S'1894' +p148023 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ed3.jpg' +p148024 +sg25267 +g27 +sa(dp148025 +g25268 +S'Wounded Eros (Eros vann\xc3\xa9)' +p148026 +sg25270 +S'Henri de Toulouse-Lautrec' +p148027 +sg25273 +S'lithograph in black on Japan paper' +p148028 +sg25275 +S'1894' +p148029 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ed5.jpg' +p148030 +sg25267 +g27 +sa(dp148031 +g25268 +S'The Old Gentlemen (Les vieux messieurs)' +p148032 +sg25270 +S'Henri de Toulouse-Lautrec' +p148033 +sg25273 +S'lithograph in black on Japan paper' +p148034 +sg25275 +S'1894' +p148035 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ed4.jpg' +p148036 +sg25267 +g27 +sa(dp148037 +g25268 +S"German Babylon (Babylone d'Allemagne)" +p148038 +sg25270 +S'Henri de Toulouse-Lautrec' +p148039 +sg25273 +S'lithograph in black and beige on velin paper' +p148040 +sg25275 +S'1894' +p148041 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ed8.jpg' +p148042 +sg25267 +g27 +sa(dp148043 +g25268 +S'Le Chariot de terre cuite' +p148044 +sg25270 +S'Henri de Toulouse-Lautrec' +p148045 +sg25273 +S'lithograph in blue and rose on velin paper' +p148046 +sg25275 +S'1894' +p148047 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a01a.jpg' +p148048 +sg25267 +g27 +sa(dp148049 +g25268 +S'Advertisement for the Album Yvette Guilbert' +p148050 +sg25270 +S'Henri de Toulouse-Lautrec' +p148051 +sg25273 +S'woodcut in black' +p148052 +sg25275 +S'1894' +p148053 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009eda.jpg' +p148054 +sg25267 +g27 +sa(dp148055 +g25273 +S'graphite on wove paper' +p148056 +sg25267 +g27 +sg25275 +S'c. 1913' +p148057 +sg25268 +S'The Bridge' +p148058 +sg25270 +S'Robert Sargent Austin' +p148059 +sa(dp148060 +g25268 +S'Yvette Guilbert' +p148061 +sg25270 +S'Henri de Toulouse-Lautrec' +p148062 +sg25273 +S'lithograph in light green on velin paper' +p148063 +sg25275 +S'1894' +p148064 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ed7.jpg' +p148065 +sg25267 +g27 +sa(dp148066 +g25268 +S'Footit and Chocolat (Footit et Chocolat) [left recto]' +p148067 +sg25270 +S'Henri de Toulouse-Lautrec' +p148068 +sg25273 +S'lithograph' +p148069 +sg25275 +S'1895' +p148070 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a01b.jpg' +p148071 +sg25267 +g27 +sa(dp148072 +g25268 +S'Nib or the Amateur Photographer (Nib ou le photographe-amateur) [right recto]' +p148073 +sg25270 +S'Henri de Toulouse-Lautrec' +p148074 +sg25273 +S'lithograph' +p148075 +sg25275 +S'1895' +p148076 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a01c.jpg' +p148077 +sg25267 +g27 +sa(dp148078 +g25273 +S'lithograph' +p148079 +sg25267 +g27 +sg25275 +S'1895' +p148080 +sg25268 +S'Anna Held in "Toutes ces dames au Th\xc3\xa9\xc3\xa2tre" (Anna Held dans "Toutes ces dames au th\xc3\xa9\xc3\xa2tre") [verso]' +p148081 +sg25270 +S'Henri de Toulouse-Lautrec' +p148082 +sa(dp148083 +g25268 +S'Mr. and Mrs. Alexandre Natanson Invitation' +p148084 +sg25270 +S'Henri de Toulouse-Lautrec' +p148085 +sg25273 +S'lithograph in olive green and gray' +p148086 +sg25275 +S'1895' +p148087 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ed6.jpg' +p148088 +sg25267 +g27 +sa(dp148089 +g25268 +S'Bust of Mlle. Marcelle Lender (Mlle. Marcelle Lender, en buste)' +p148090 +sg25270 +S'Henri de Toulouse-Lautrec' +p148091 +sg25273 +S'color lithograph' +p148092 +sg25275 +S'1895' +p148093 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a024.jpg' +p148094 +sg25267 +g27 +sa(dp148095 +g25268 +S'Bust of Mlle. Marcelle Lender (Mlle. Marcelle Lender, en buste)' +p148096 +sg25270 +S'Henri de Toulouse-Lautrec' +p148097 +sg25273 +S'lithograph in brown' +p148098 +sg25275 +S'1895' +p148099 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e4d.jpg' +p148100 +sg25267 +g27 +sa(dp148101 +g25268 +S'Mlle. Marcelle Lender, Standing (Mlle. Marcelle Lender, debout)' +p148102 +sg25270 +S'Henri de Toulouse-Lautrec' +p148103 +sg25273 +S'lithograph in olive green' +p148104 +sg25275 +S'1895' +p148105 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a026.jpg' +p148106 +sg25267 +g27 +sa(dp148107 +g25268 +S'Lender Dancing the Bolero in "Chilperic" (Lender dansant le pas du bol\xc3\xa9ro dans "Chilp\xc3\xa9ric")' +p148108 +sg25270 +S'Henri de Toulouse-Lautrec' +p148109 +sg25273 +S'lithograph in olive green' +p148110 +sg25275 +S'1895' +p148111 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e4a.jpg' +p148112 +sg25267 +g27 +sa(dp148113 +g25268 +S'Lender Full Face in "Chilperic" (Lender de face dans "Chilp\xc3\xa9ric")' +p148114 +sg25270 +S'Henri de Toulouse-Lautrec' +p148115 +sg25273 +S'lithograph in olive green' +p148116 +sg25275 +S'1895' +p148117 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e4b.jpg' +p148118 +sg25267 +g27 +sa(dp148119 +g25273 +S'brush and black ink over charcoal on wove paper' +p148120 +sg25267 +g27 +sg25275 +S'c. 1926' +p148121 +sg25268 +S'Boy and Calf' +p148122 +sg25270 +S'Robert Sargent Austin' +p148123 +sa(dp148124 +g25268 +S'Lender from the Back Dancing the Bolero in "Chilperic" (Lender de dos, dansant le bol\xc3\xa9ro dans "Chilp\xc3\xa9ric")' +p148125 +sg25270 +S'Henri de Toulouse-Lautrec' +p148126 +sg25273 +S'lithograph in olive green' +p148127 +sg25275 +S'1895' +p148128 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a022.jpg' +p148129 +sg25267 +g27 +sa(dp148130 +g25268 +S'Lender and Auguez in "La chanson de fortunio" (Lender et Auguez dans "La chanson de fortunio")' +p148131 +sg25270 +S'Henri de Toulouse-Lautrec' +p148132 +sg25273 +S'lithograph in olive green on velin paper' +p148133 +sg25275 +S'1895' +p148134 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a027.jpg' +p148135 +sg25267 +g27 +sa(dp148136 +g25268 +S'Lender and Lavalliere (Lender et Lavalli\xc3\xa8re)' +p148137 +sg25270 +S'Henri de Toulouse-Lautrec' +p148138 +sg25273 +S'lithograph in olive green' +p148139 +sg25275 +S'1895' +p148140 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a01f.jpg' +p148141 +sg25267 +g27 +sa(dp148142 +g25268 +S'Entrance of Brasseur in "Chilperic" (Entr\xc3\xa9e de Brasseur dans "Chilp\xc3\xa9ric")' +p148143 +sg25270 +S'Henri de Toulouse-Lautrec' +p148144 +sg25273 +S'lithograph in olive green' +p148145 +sg25275 +S'1895' +p148146 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a023.jpg' +p148147 +sg25267 +g27 +sa(dp148148 +g25268 +S'Yahne and Mayer in "L\'age difficile" (Yahne et Mayer dans "L\'age difficile")' +p148149 +sg25270 +S'Henri de Toulouse-Lautrec' +p148150 +sg25273 +S'lithograph in olive green' +p148151 +sg25275 +S'1895' +p148152 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a029.jpg' +p148153 +sg25267 +g27 +sa(dp148154 +g25268 +S'Mme. Simon-Girard, Brasseur, and Guy in "La belle Helene" (Mme. Simon-Girard, Brasseur et Guy dans "La belle H\xc3\xa9l\xc3\xa8ne")' +p148155 +sg25270 +S'Henri de Toulouse-Lautrec' +p148156 +sg25273 +S'lithograph' +p148157 +sg25275 +S'1895' +p148158 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a01d.jpg' +p148159 +sg25267 +g27 +sa(dp148160 +g25268 +S'May Belfort Bowing (Miss May Belfort saluant)' +p148161 +sg25270 +S'Henri de Toulouse-Lautrec' +p148162 +sg25273 +S'lithograph' +p148163 +sg25275 +S'1895' +p148164 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a021.jpg' +p148165 +sg25267 +g27 +sa(dp148166 +g25268 +S'Miss May Belfort Bare-Headed (Miss May Belfort en cheveux)' +p148167 +sg25270 +S'Henri de Toulouse-Lautrec' +p148168 +sg25273 +S'lithograph' +p148169 +sg25275 +S'1895' +p148170 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a025.jpg' +p148171 +sg25267 +g27 +sa(dp148172 +g25268 +S'Miss May Belfort, Large Plate (Miss May Belfort, grande planche)' +p148173 +sg25270 +S'Henri de Toulouse-Lautrec' +p148174 +sg25273 +S'lithograph' +p148175 +sg25275 +S'1895' +p148176 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a01e.jpg' +p148177 +sg25267 +g27 +sa(dp148178 +g25268 +S'Miss May Belfort in the Irish and American Bar, rue Royale (Miss Belfort Belfort au Irish and American Bar, Rue Royale)' +p148179 +sg25270 +S'Henri de Toulouse-Lautrec' +p148180 +sg25273 +S'lithograph' +p148181 +sg25275 +S'1895' +p148182 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a042.jpg' +p148183 +sg25267 +g27 +sa(dp148184 +g25273 +S'pen and black ink on tracing paper' +p148185 +sg25267 +g27 +sg25275 +S'c. 1929' +p148186 +sg25268 +S'The Wooden Bridge, Sottocastello' +p148187 +sg25270 +S'Robert Sargent Austin' +p148188 +sa(dp148189 +g25268 +S'Luce Myres in Profile (Luce Myr\xc3\xa8s, de profil)' +p148190 +sg25270 +S'Henri de Toulouse-Lautrec' +p148191 +sg25273 +S'lithograph in olive green' +p148192 +sg25275 +S'1895' +p148193 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a046.jpg' +p148194 +sg25267 +g27 +sa(dp148195 +g25268 +S'Luce Myres Full Face (Luce Myr\xc3\xa8s, de face)' +p148196 +sg25270 +S'Henri de Toulouse-Lautrec' +p148197 +sg25273 +S'lithograph' +p148198 +sg25275 +S'1895' +p148199 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a047.jpg' +p148200 +sg25267 +g27 +sa(dp148201 +g25268 +S'Luce Myres Full Face (Luce Myr\xc3\xa8s, de face)' +p148202 +sg25270 +S'Henri de Toulouse-Lautrec' +p148203 +sg25273 +S'lithograph' +p148204 +sg25275 +S'1895' +p148205 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a043.jpg' +p148206 +sg25267 +g27 +sa(dp148207 +g25268 +S'Adieu' +p148208 +sg25270 +S'Henri de Toulouse-Lautrec' +p148209 +sg25273 +S'lithograph in black on velin paper' +p148210 +sg25275 +S'1895' +p148211 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ec7.jpg' +p148212 +sg25267 +g27 +sa(dp148213 +g25268 +S'Ballade de No\xc3\xabl' +p148214 +sg25270 +S'Henri de Toulouse-Lautrec' +p148215 +sg25273 +S'lithograph in black on velin paper' +p148216 +sg25275 +S'1895' +p148217 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ec6.jpg' +p148218 +sg25267 +g27 +sa(dp148219 +g25268 +S'Ce que dit la pluie' +p148220 +sg25270 +S'Henri de Toulouse-Lautrec' +p148221 +sg25273 +S'lithograph in black on velin paper' +p148222 +sg25275 +S'1895' +p148223 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ecb.jpg' +p148224 +sg25267 +g27 +sa(dp148225 +g25268 +S'Le Fou' +p148226 +sg25270 +S'Henri de Toulouse-Lautrec' +p148227 +sg25273 +S'lithograph in black on velin paper' +p148228 +sg25275 +S'1895' +p148229 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005da6.jpg' +p148230 +sg25267 +g27 +sa(dp148231 +g25268 +S'Les papillons' +p148232 +sg25270 +S'Henri de Toulouse-Lautrec' +p148233 +sg25273 +S'lithograph in black on velin paper' +p148234 +sg25275 +S'1895' +p148235 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ec9.jpg' +p148236 +sg25267 +g27 +sa(dp148237 +g25268 +S"L'hareng saur" +p148238 +sg25270 +S'Henri de Toulouse-Lautrec' +p148239 +sg25273 +S'lithograph in black' +p148240 +sg25275 +S'1895' +p148241 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ed0.jpg' +p148242 +sg25267 +g27 +sa(dp148243 +g25268 +S'Le secret' +p148244 +sg25270 +S'Henri de Toulouse-Lautrec' +p148245 +sg25273 +S'lithograph in black on velin paper' +p148246 +sg25275 +S'1895' +p148247 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ec5.jpg' +p148248 +sg25267 +g27 +sa(dp148249 +g25273 +S'pen and black ink and graphite on tracing paper' +p148250 +sg25267 +g27 +sg25275 +S'c. 1926' +p148251 +sg25268 +S'The Pack Bridge' +p148252 +sg25270 +S'Robert Sargent Austin' +p148253 +sa(dp148254 +g25268 +S'Etoiles filantes' +p148255 +sg25270 +S'Henri de Toulouse-Lautrec' +p148256 +sg25273 +S'lithograph in black on velin paper' +p148257 +sg25275 +S'1895' +p148258 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ecc.jpg' +p148259 +sg25267 +g27 +sa(dp148260 +g25268 +S'Oceano Nox' +p148261 +sg25270 +S'Henri de Toulouse-Lautrec' +p148262 +sg25273 +S'lithograph in black' +p148263 +sg25275 +S'1895' +p148264 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ecf.jpg' +p148265 +sg25267 +g27 +sa(dp148266 +g25268 +S'Les hirondelles de mer' +p148267 +sg25270 +S'Henri de Toulouse-Lautrec' +p148268 +sg25273 +S'lithograph in black on velin paper' +p148269 +sg25275 +S'1895' +p148270 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ec8.jpg' +p148271 +sg25267 +g27 +sa(dp148272 +g25268 +S'Flor\xc3\xa9al' +p148273 +sg25270 +S'Henri de Toulouse-Lautrec' +p148274 +sg25273 +S'lithograph in black' +p148275 +sg25275 +S'1895' +p148276 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ecd.jpg' +p148277 +sg25267 +g27 +sa(dp148278 +g25268 +S'Achetez mes belles violettes' +p148279 +sg25270 +S'Henri de Toulouse-Lautrec' +p148280 +sg25273 +S'lithograph in black on velin paper' +p148281 +sg25275 +S'1895' +p148282 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ec4.jpg' +p148283 +sg25267 +g27 +sa(dp148284 +g25268 +S'Les vieux papillons' +p148285 +sg25270 +S'Henri de Toulouse-Lautrec' +p148286 +sg25273 +S'lithograph in black on velin paper' +p148287 +sg25275 +S'1895' +p148288 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009eca.jpg' +p148289 +sg25267 +g27 +sa(dp148290 +g25268 +S'La valse des lapins' +p148291 +sg25270 +S'Henri de Toulouse-Lautrec' +p148292 +sg25273 +S'lithograph in black on velin paper' +p148293 +sg25275 +S'1895' +p148294 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009eac.jpg' +p148295 +sg25267 +g27 +sa(dp148296 +g25273 +S'(artist)' +p148297 +sg25267 +g27 +sg25275 +S'\n' +p148298 +sg25268 +S"Prospectus Programme de l'Oeuvre" +p148299 +sg25270 +S'Artist Information (' +p148300 +sa(dp148301 +g25268 +S'Sarah Bernhardt in "Cleopatra" (Sarah Bernhardt dans "Cl\xc3\xa9opatre")' +p148302 +sg25270 +S'Henri de Toulouse-Lautrec' +p148303 +sg25273 +S'lithograph in black' +p148304 +sg25275 +S'1896' +p148305 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009eb5.jpg' +p148306 +sg25267 +g27 +sa(dp148307 +g25268 +S'Sarah Bernhardt in "Cleopatra" (Sarah Bernhardt dans "Cl\xc3\xa9opatre")' +p148308 +sg25270 +S'Henri de Toulouse-Lautrec' +p148309 +sg25273 +S'lithograph in black on China paper' +p148310 +sg25275 +S'1896' +p148311 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009eb1.jpg' +p148312 +sg25267 +g27 +sa(dp148313 +g25273 +S'pen and brown ink with watercolor heightened with white over graphite on laid paper' +p148314 +sg25267 +g27 +sg25275 +S'1923' +p148315 +sg25268 +S'Tiber-Island, Rome' +p148316 +sg25270 +S'Robert Sargent Austin' +p148317 +sa(dp148318 +g25268 +S"Subra of the Opera? (Subra, de l'op\xc3\xa9ra?)" +p148319 +sg25270 +S'Henri de Toulouse-Lautrec' +p148320 +sg25273 +S'lithograph in black' +p148321 +sg25275 +S'1896' +p148322 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009eb4.jpg' +p148323 +sg25267 +g27 +sa(dp148324 +g25268 +S'Cl\xc3\xa9o de M\xc3\xa9rode' +p148325 +sg25270 +S'Henri de Toulouse-Lautrec' +p148326 +sg25273 +S'lithograph in black [trial proof?]' +p148327 +sg25275 +S'1896' +p148328 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009eb0.jpg' +p148329 +sg25267 +g27 +sa(dp148330 +g25268 +S'Cl\xc3\xa9o de M\xc3\xa9rode' +p148331 +sg25270 +S'Henri de Toulouse-Lautrec' +p148332 +sg25273 +S'lithograph in black on Japan paper' +p148333 +sg25275 +S'1896' +p148334 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009eab.jpg' +p148335 +sg25267 +g27 +sa(dp148336 +g25268 +S'Cl\xc3\xa9o de M\xc3\xa9rode' +p148337 +sg25270 +S'Henri de Toulouse-Lautrec' +p148338 +sg25273 +S'lithograph in black on China paper' +p148339 +sg25275 +S'1896' +p148340 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009eaf.jpg' +p148341 +sg25267 +g27 +sa(dp148342 +g25268 +S'Coquelin the Elder (Coquelin aine)' +p148343 +sg25270 +S'Henri de Toulouse-Lautrec' +p148344 +sg25273 +S'lithograph in black on Japan paper' +p148345 +sg25275 +S'1896' +p148346 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ead.jpg' +p148347 +sg25267 +g27 +sa(dp148348 +g25268 +S'Coquelin the Elder (Coquelin aine)' +p148349 +sg25270 +S'Henri de Toulouse-Lautrec' +p148350 +sg25273 +S'lithograph in black' +p148351 +sg25275 +S'1896' +p148352 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009eb3.jpg' +p148353 +sg25267 +g27 +sa(dp148354 +g25268 +S'Jeanne Granier' +p148355 +sg25270 +S'Henri de Toulouse-Lautrec' +p148356 +sg25273 +S'lithograph in black on Japan paper' +p148357 +sg25275 +S'1896' +p148358 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009eb2.jpg' +p148359 +sg25267 +g27 +sa(dp148360 +g25268 +S'Jeanne Granier' +p148361 +sg25270 +S'Henri de Toulouse-Lautrec' +p148362 +sg25273 +S'lithograph in black on China paper' +p148363 +sg25275 +S'1896' +p148364 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009eaa.jpg' +p148365 +sg25267 +g27 +sa(dp148366 +g25268 +S'Lucien Guitry' +p148367 +sg25270 +S'Henri de Toulouse-Lautrec' +p148368 +sg25273 +S'lithograph in black on cream-colored velin paper' +p148369 +sg25275 +S'1896' +p148370 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e5a.jpg' +p148371 +sg25267 +g27 +sa(dp148372 +g25268 +S'Lucien Guitry' +p148373 +sg25270 +S'Henri de Toulouse-Lautrec' +p148374 +sg25273 +S'lithograph in black on hand-made oriental paper' +p148375 +sg25275 +S'1896' +p148376 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e52.jpg' +p148377 +sg25267 +g27 +sa(dp148378 +g25273 +S'charcoal, gray, and pen and black ink over red-brown chalk on wove paper' +p148379 +sg25267 +g27 +sg25275 +S'1924' +p148380 +sg25268 +S'The Return from Festa' +p148381 +sg25270 +S'Robert Sargent Austin' +p148382 +sa(dp148383 +g25268 +S'Anna Held' +p148384 +sg25270 +S'Henri de Toulouse-Lautrec' +p148385 +sg25273 +S'lithograph in black on oriental paper' +p148386 +sg25275 +S'1896' +p148387 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e53.jpg' +p148388 +sg25267 +g27 +sa(dp148389 +g25268 +S'Anna Held' +p148390 +sg25270 +S'Henri de Toulouse-Lautrec' +p148391 +sg25273 +S'lithograph in black on cream-colored velin paper' +p148392 +sg25275 +S'1896' +p148393 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e5b.jpg' +p148394 +sg25267 +g27 +sa(dp148395 +g25268 +S'Yvette Guilbert?' +p148396 +sg25270 +S'Henri de Toulouse-Lautrec' +p148397 +sg25273 +S'lithograph in black on oriental paper' +p148398 +sg25275 +S'1896' +p148399 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e55.jpg' +p148400 +sg25267 +g27 +sa(dp148401 +g25268 +S'Jeanne Hading' +p148402 +sg25270 +S'Henri de Toulouse-Lautrec' +p148403 +sg25273 +S'lithograph in black on hand-made oriental paper' +p148404 +sg25275 +S'1896' +p148405 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e4f.jpg' +p148406 +sg25267 +g27 +sa(dp148407 +g25268 +S'Jeanne Hading' +p148408 +sg25270 +S'Henri de Toulouse-Lautrec' +p148409 +sg25273 +S'lithograph in black on cream-colored paper' +p148410 +sg25275 +S'1896' +p148411 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e59.jpg' +p148412 +sg25267 +g27 +sa(dp148413 +g25268 +S'Polin' +p148414 +sg25270 +S'Henri de Toulouse-Lautrec' +p148415 +sg25273 +S'lithograph in black on cream-colored paper' +p148416 +sg25275 +S'1896' +p148417 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e50.jpg' +p148418 +sg25267 +g27 +sa(dp148419 +g25268 +S'Eva Lavalli\xc3\xa8re' +p148420 +sg25270 +S'Henri de Toulouse-Lautrec' +p148421 +sg25273 +S'lithograph in black' +p148422 +sg25275 +S'1896' +p148423 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e56.jpg' +p148424 +sg25267 +g27 +sa(dp148425 +g25268 +S'Eva Lavalli\xc3\xa8re' +p148426 +sg25270 +S'Henri de Toulouse-Lautrec' +p148427 +sg25273 +S'lithograph in black on cream-colored paper' +p148428 +sg25275 +S'1896' +p148429 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e5c.jpg' +p148430 +sg25267 +g27 +sa(dp148431 +g25268 +S"Emilienne d'Alen\xc3\xa7on" +p148432 +sg25270 +S'Henri de Toulouse-Lautrec' +p148433 +sg25273 +S'lithograph in black' +p148434 +sg25275 +S'1896' +p148435 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e54.jpg' +p148436 +sg25267 +g27 +sa(dp148437 +g25268 +S"Emilienne d'Alen\xc3\xa7on" +p148438 +sg25270 +S'Henri de Toulouse-Lautrec' +p148439 +sg25273 +S'lithograph in black on cream-colored velin paper' +p148440 +sg25275 +S'1896' +p148441 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e58.jpg' +p148442 +sg25267 +g27 +sa(dp148443 +g25273 +S'graphite on laid paper' +p148444 +sg25267 +g27 +sg25275 +S'1920' +p148445 +sg25268 +S'View in Glasgow' +p148446 +sg25270 +S'Robert Sargent Austin' +p148447 +sa(dp148448 +g25268 +S'Cassive' +p148449 +sg25270 +S'Henri de Toulouse-Lautrec' +p148450 +sg25273 +S'lithograph in black on cream-colored velin paper' +p148451 +sg25275 +S'1896' +p148452 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e57.jpg' +p148453 +sg25267 +g27 +sa(dp148454 +g25268 +S'Cassive' +p148455 +sg25270 +S'Henri de Toulouse-Lautrec' +p148456 +sg25273 +S'lithograph in black on hand-made oriental paper' +p148457 +sg25275 +S'1896' +p148458 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e51.jpg' +p148459 +sg25267 +g27 +sa(dp148460 +g25268 +S'Lender and Lavalliere in "Le fils de l\'Aretin" (Lender et Lavalli\xc3\xa8re dans "Le fils de l\'Ar\xc3\xa9tin")' +p148461 +sg25270 +S'Henri de Toulouse-Lautrec' +p148462 +sg25273 +S'lithograph' +p148463 +sg25275 +S'1896' +p148464 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a041.jpg' +p148465 +sg25267 +g27 +sa(dp148466 +g25268 +S'Supper in London (Souper \xc3\xa0 Londres)' +p148467 +sg25270 +S'Henri de Toulouse-Lautrec' +p148468 +sg25273 +S'lithograph in black' +p148469 +sg25275 +S'1896' +p148470 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e5d.jpg' +p148471 +sg25267 +g27 +sa(dp148472 +g25268 +S'Supper in London (Souper \xc3\xa0 Londres)' +p148473 +sg25270 +S'Henri de Toulouse-Lautrec' +p148474 +sg25273 +S'lithograph in black' +p148475 +sg25275 +S'1896' +p148476 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a044.jpg' +p148477 +sg25267 +g27 +sa(dp148478 +g25268 +S'Anna Held and Baldy (Anna Held et Baldy)' +p148479 +sg25270 +S'Henri de Toulouse-Lautrec' +p148480 +sg25273 +S'lithograph in black' +p148481 +sg25275 +S'1896' +p148482 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e5f.jpg' +p148483 +sg25267 +g27 +sa(dp148484 +g25268 +S'At the Picton Bar, rue Scribe (Au bar Picton, rue Scribe)' +p148485 +sg25270 +S'Henri de Toulouse-Lautrec' +p148486 +sg25273 +S'lithograph in black on velin paper' +p148487 +sg25275 +S'1896' +p148488 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e63.jpg' +p148489 +sg25267 +g27 +sa(dp148490 +g25268 +S'Debauchery (D\xc3\xa9bauche)' +p148491 +sg25270 +S'Henri de Toulouse-Lautrec' +p148492 +sg25273 +S'4-color lithograph on velin paper' +p148493 +sg25275 +S'1896' +p148494 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e65.jpg' +p148495 +sg25267 +g27 +sa(dp148496 +g25268 +S'Poster for "Elles"' +p148497 +sg25270 +S'Artist Information (' +p148498 +sg25273 +S'French, 1858 - 1936' +p148499 +sg25275 +S'(printer)' +p148500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e60.jpg' +p148501 +sg25267 +g27 +sa(dp148502 +g25268 +S'Frontispiece for "Elles"' +p148503 +sg25270 +S'Artist Information (' +p148504 +sg25273 +S'French, 1858 - 1936' +p148505 +sg25275 +S'(printer)' +p148506 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a00055ed.jpg' +p148507 +sg25267 +g27 +sa(dp148508 +g25273 +S'graphite on wove paper' +p148509 +sg25267 +g27 +sg25275 +S'1922' +p148510 +sg25268 +S'A Madonna' +p148511 +sg25270 +S'Robert Sargent Austin' +p148512 +sa(dp148513 +g25268 +S'Soudais Deposition (D\xc3\xa9position Soudais)' +p148514 +sg25270 +S'Henri de Toulouse-Lautrec' +p148515 +sg25273 +S'lithograph' +p148516 +sg25275 +S'1896' +p148517 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a02c.jpg' +p148518 +sg25267 +g27 +sa(dp148519 +g25273 +S'lithograph in black' +p148520 +sg25267 +g27 +sg25275 +S'1896' +p148521 +sg25268 +S'Lebaudy Trial - Testimony of Mlle. Marsy (Proc\xc3\xa8s Lebaudy - D\xc3\xa9position de Mlle. Marsy)' +p148522 +sg25270 +S'Henri de Toulouse-Lautrec' +p148523 +sa(dp148524 +g25268 +S'Lebaudy Trial - Testimony of Mlle. Marsy (Proc\xc3\xa8s Lebaudy - D\xc3\xa9position de Mlle. Marsy)' +p148525 +sg25270 +S'Henri de Toulouse-Lautrec' +p148526 +sg25273 +S'lithograph in red' +p148527 +sg25275 +S'1896' +p148528 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e67.jpg' +p148529 +sg25267 +g27 +sa(dp148530 +g25268 +S'Program for "La lepreuse" (Programme pour "La l\xc3\xa9preuse")' +p148531 +sg25270 +S'Henri de Toulouse-Lautrec' +p148532 +sg25273 +S'lithograph in red' +p148533 +sg25275 +S'1896' +p148534 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a032.jpg' +p148535 +sg25267 +g27 +sa(dp148536 +g25268 +S'Cover for "La tribu d\'Isodore" (Couverture pour "La tribu d\'Isodore")' +p148537 +sg25270 +S'Henri de Toulouse-Lautrec' +p148538 +sg25273 +S'lithograph in brown and yellow' +p148539 +sg25275 +S'1897' +p148540 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e68.jpg' +p148541 +sg25267 +g27 +sa(dp148542 +g25268 +S"New Year's Greeting (Le compliment du jour de l'an)" +p148543 +sg25270 +S'Henri de Toulouse-Lautrec' +p148544 +sg25273 +S'lithograph in black' +p148545 +sg25275 +S'1897' +p148546 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e6e.jpg' +p148547 +sg25267 +g27 +sa(dp148548 +g25268 +S'Homage to Moliere (Hommage \xc3\xa0 Moli\xc3\xa8re)' +p148549 +sg25270 +S'Henri de Toulouse-Lautrec' +p148550 +sg25273 +S'lithograph in olive green and blue' +p148551 +sg25275 +S'1897' +p148552 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e6f.jpg' +p148553 +sg25267 +g27 +sa(dp148554 +g25268 +S'Program for "Benefice Gemier" (Programme du "B\xc3\xa9n\xc3\xa9fice G\xc3\xa9mier")' +p148555 +sg25270 +S'Henri de Toulouse-Lautrec' +p148556 +sg25273 +S'lithograph in black on velin paper' +p148557 +sg25275 +S'1897' +p148558 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e6b.jpg' +p148559 +sg25267 +g27 +sa(dp148560 +g25268 +S"At The House of Gold (A la maison d'or)" +p148561 +sg25270 +S'Henri de Toulouse-Lautrec' +p148562 +sg25273 +S'lithograph in olive green' +p148563 +sg25275 +S'1897' +p148564 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e6a.jpg' +p148565 +sg25267 +g27 +sa(dp148566 +g25268 +S'The First Vendor of Jourdan and Brown (Le premier vendeur de Jourdan et Brown)' +p148567 +sg25270 +S'Henri de Toulouse-Lautrec' +p148568 +sg25273 +S'lithograph in olive green' +p148569 +sg25275 +S'1897' +p148570 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e69.jpg' +p148571 +sg25267 +g27 +sa(dp148572 +g25273 +S'brush and gray ink over graphite on light brown paper' +p148573 +sg25267 +g27 +sg25275 +S'c. 1923' +p148574 +sg25268 +S'The Digger' +p148575 +sg25270 +S'Robert Sargent Austin' +p148576 +sa(dp148577 +g25268 +S'Cover for "L\'example de Ninon de Lenclos amoureuse"' +p148578 +sg25270 +S'Henri de Toulouse-Lautrec' +p148579 +sg25273 +S'lithograph in black on oriental paper' +p148580 +sg25275 +S'1897' +p148581 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e79.jpg' +p148582 +sg25267 +g27 +sa(dp148583 +g25268 +S'Bust of Mlle. Marcelle Lender, Turned Three Quarters (Mlle. Marcelle Lender en buste, de trois quartes)' +p148584 +sg25270 +S'Henri de Toulouse-Lautrec' +p148585 +sg25273 +S'lithograph in red on blue paper' +p148586 +sg25275 +S'1898' +p148587 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e7a.jpg' +p148588 +sg25267 +g27 +sa(dp148589 +g25268 +S'Di Ti Fellow - Englishmen at the Cafe-Concert (Di Ti Fellow - Anglaise au Caf\xc3\xa9-Concert)' +p148590 +sg25270 +S'Henri de Toulouse-Lautrec' +p148591 +sg25273 +S'lithograph in brown on hand-made oriental paper' +p148592 +sg25275 +S'1898' +p148593 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e81.jpg' +p148594 +sg25267 +g27 +sa(dp148595 +g25268 +S'The Fine Printmaker Adolphe Albert (Le bon graveur - Adolphe Albert)' +p148596 +sg25270 +S'Henri de Toulouse-Lautrec' +p148597 +sg25273 +S'lithograph in black on velin paper' +p148598 +sg25275 +S'1898' +p148599 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e7d.jpg' +p148600 +sg25267 +g27 +sa(dp148601 +g25268 +S'The Jockey (Le jockey)' +p148602 +sg25270 +S'Henri de Toulouse-Lautrec' +p148603 +sg25273 +S'6-color lithograph' +p148604 +sg25275 +S'1899' +p148605 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a056.jpg' +p148606 +sg25267 +g27 +sa(dp148607 +g25268 +S'The Jockey (Le jockey)' +p148608 +sg25270 +S'Henri de Toulouse-Lautrec' +p148609 +sg25273 +S'color lithograph' +p148610 +sg25275 +S'1899' +p148611 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00020/a0002033.jpg' +p148612 +sg25267 +g27 +sa(dp148613 +g25268 +S'The Jockey (Le jockey)' +p148614 +sg25270 +S'Henri de Toulouse-Lautrec' +p148615 +sg25273 +S'lithograph in black' +p148616 +sg25275 +S'1899' +p148617 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a057.jpg' +p148618 +sg25267 +g27 +sa(dp148619 +g25268 +S'The Small Pony from Calmese (Le petit poney de Calm\xc3\xa8se)' +p148620 +sg25270 +S'Henri de Toulouse-Lautrec' +p148621 +sg25273 +S'lithograph in dark brown on velin paper' +p148622 +sg25275 +S'1899' +p148623 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e7b.jpg' +p148624 +sg25267 +g27 +sa(dp148625 +g25268 +S'Promenade (Promenoir)' +p148626 +sg25270 +S'Henri de Toulouse-Lautrec' +p148627 +sg25273 +S'lithograph in black on Japan paper' +p148628 +sg25275 +S'1899' +p148629 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a058.jpg' +p148630 +sg25267 +g27 +sa(dp148631 +g25268 +S'Mme. Le Marguoin, Milliner (Mme. Le Marguoin, modiste)' +p148632 +sg25270 +S'Henri de Toulouse-Lautrec' +p148633 +sg25273 +S'lithograph in black on velin paper' +p148634 +sg25275 +S'1900' +p148635 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e80.jpg' +p148636 +sg25267 +g27 +sa(dp148637 +g25273 +S'pen and black ink with graphite and touches of white on tracing paper' +p148638 +sg25267 +g27 +sg25275 +S'c. 1921' +p148639 +sg25268 +S'The Horse of Ostend' +p148640 +sg25270 +S'Robert Sargent Austin' +p148641 +sa(dp148642 +g25268 +S'The Manor Lady or the Omen (La chatelaine ou le tocsin)' +p148643 +sg25270 +S'Henri de Toulouse-Lautrec' +p148644 +sg25273 +S'lithograph in turquoise and light blue [poster]' +p148645 +sg25275 +S'1895' +p148646 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a000607c.jpg' +p148647 +sg25267 +g27 +sa(dp148648 +g25273 +S'5-color lithograph [poster]' +p148649 +sg25267 +g27 +sg25275 +S'1895' +p148650 +sg25268 +S'Napol\xc3\xa9on' +p148651 +sg25270 +S'Henri de Toulouse-Lautrec' +p148652 +sa(dp148653 +g25268 +S'Irish and American Bar, rue Royale' +p148654 +sg25270 +S'Henri de Toulouse-Lautrec' +p148655 +sg25273 +S'5-color lithograph [poster]' +p148656 +sg25275 +S'1896' +p148657 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a055.jpg' +p148658 +sg25267 +g27 +sa(dp148659 +g25268 +S'The Passenger from Cabin 54 - Sailing in a Yacht (La passag\xc3\xa8re du 54 - Promenade en yacht)' +p148660 +sg25270 +S'Henri de Toulouse-Lautrec' +p148661 +sg25273 +S'lithograph in olive green [poster]' +p148662 +sg25275 +S'1896' +p148663 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a054.jpg' +p148664 +sg25267 +g27 +sa(dp148665 +g25268 +S'Chocolat Dancing in the Achille Bar' +p148666 +sg25270 +S'Henri de Toulouse-Lautrec' +p148667 +sg25273 +S'photomechanical process in black, red, and yellow' +p148668 +sg25275 +S'unknown date\n' +p148669 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e8c.jpg' +p148670 +sg25267 +g27 +sa(dp148671 +g25268 +S'Yvette Guilbert: Linger, Longer, Loo' +p148672 +sg25270 +S'Henri de Toulouse-Lautrec' +p148673 +sg25273 +S'photomechanical process' +p148674 +sg25275 +S'unknown date\n' +p148675 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e85.jpg' +p148676 +sg25267 +g27 +sa(dp148677 +g25268 +S'In the Wings of the Folies-Bergere: Mrs. Lona Barrison with Her Manager and Husband' +p148678 +sg25270 +S'Henri de Toulouse-Lautrec' +p148679 +sg25273 +S'photomechanical process' +p148680 +sg25275 +S'1895' +p148681 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e90.jpg' +p148682 +sg25267 +g27 +sa(dp148683 +g25268 +S'In the Skating Professional Beauty' +p148684 +sg25270 +S'Henri de Toulouse-Lautrec' +p148685 +sg25273 +S'photomechanical process' +p148686 +sg25275 +S'1895' +p148687 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e8a.jpg' +p148688 +sg25267 +g27 +sa(dp148689 +g25268 +S'In the Skating Professional Beauty' +p148690 +sg25270 +S'Henri de Toulouse-Lautrec' +p148691 +sg25273 +S'7-color photomechanical process' +p148692 +sg25275 +S'1895' +p148693 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e88.jpg' +p148694 +sg25267 +g27 +sa(dp148695 +g25268 +S"Les grands concerts de l'opera" +p148696 +sg25270 +S'Henri de Toulouse-Lautrec' +p148697 +sg25273 +S'photomechanical process' +p148698 +sg25275 +S'1895' +p148699 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e89.jpg' +p148700 +sg25267 +g27 +sa(dp148701 +g25268 +S'The Nativity' +p148702 +sg25270 +S'Artist Information (' +p148703 +sg25273 +S'(painter)' +p148704 +sg25275 +S'\n' +p148705 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000765.jpg' +p148706 +sg25267 +g27 +sa(dp148707 +g25273 +S'pen and gray ink over graphite on tracing paper' +p148708 +sg25267 +g27 +sg25275 +S'c. 1923' +p148709 +sg25268 +S'The Two Madonnas' +p148710 +sg25270 +S'Robert Sargent Austin' +p148711 +sa(dp148712 +g25268 +S"Les grands concerts de l'opera" +p148713 +sg25270 +S'Henri de Toulouse-Lautrec' +p148714 +sg25273 +S'6-color photomechanical process' +p148715 +sg25275 +S'1895' +p148716 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e8b.jpg' +p148717 +sg25267 +g27 +sa(dp148718 +g25268 +S'Two Women before a Mirror' +p148719 +sg25270 +S'Henri de Toulouse-Lautrec' +p148720 +sg25273 +S'photomechanical process' +p148721 +sg25275 +S'unknown date\n' +p148722 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e91.jpg' +p148723 +sg25267 +g27 +sa(dp148724 +g25268 +S'Two Women before a Mirror' +p148725 +sg25270 +S'Henri de Toulouse-Lautrec' +p148726 +sg25273 +S'7-color photomechanical process' +p148727 +sg25275 +S'unknown date\n' +p148728 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e8f.jpg' +p148729 +sg25267 +g27 +sa(dp148730 +g25268 +S'Man and Woman' +p148731 +sg25270 +S'Henri de Toulouse-Lautrec' +p148732 +sg25273 +S'photomechanical process' +p148733 +sg25275 +S'unknown date\n' +p148734 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e86.jpg' +p148735 +sg25267 +g27 +sa(dp148736 +g25268 +S'Snobism' +p148737 +sg25270 +S'Henri de Toulouse-Lautrec' +p148738 +sg25273 +S'photomechanical process' +p148739 +sg25275 +S'1895' +p148740 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e92.jpg' +p148741 +sg25267 +g27 +sa(dp148742 +g25268 +S'The Marco Brothers' +p148743 +sg25270 +S'Henri de Toulouse-Lautrec' +p148744 +sg25273 +S'photomechanical process' +p148745 +sg25275 +S'1895' +p148746 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e8e.jpg' +p148747 +sg25267 +g27 +sa(dp148748 +g25268 +S'The Marco Brothers' +p148749 +sg25270 +S'Henri de Toulouse-Lautrec' +p148750 +sg25273 +S'7-color photomechanical process' +p148751 +sg25275 +S'1895' +p148752 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e8d.jpg' +p148753 +sg25267 +g27 +sa(dp148754 +g25268 +S'Wisdom (Sagesse)' +p148755 +sg25270 +S'Henri de Toulouse-Lautrec' +p148756 +sg25273 +S'lithograph in black on China paper' +p148757 +sg25275 +S'1893' +p148758 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e40.jpg' +p148759 +sg25267 +g27 +sa(dp148760 +g25268 +S'The Man of Sorrows and Mater Dolorosa' +p148761 +sg25270 +S'Wolf Traut' +p148762 +sg25273 +S'woodcut highlighted with red ink' +p148763 +sg25275 +S'1512' +p148764 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b284.jpg' +p148765 +sg25267 +g27 +sa(dp148766 +g25268 +S'Le Bain (The Bath)' +p148767 +sg25270 +S'F\xc3\xa9lix Vallotton' +p148768 +sg25273 +S'woodcut' +p148769 +sg25275 +S'1894' +p148770 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef63.jpg' +p148771 +sg25267 +g27 +sa(dp148772 +g25273 +S'graphite on wove paper' +p148773 +sg25267 +g27 +sg25275 +S'1922' +p148774 +sg25268 +S'Study for "The Angelus"' +p148775 +sg25270 +S'Robert Sargent Austin' +p148776 +sa(dp148777 +g25268 +S'Henri Daumier (Honore Daumier)' +p148778 +sg25270 +S'F\xc3\xa9lix Vallotton' +p148779 +sg25273 +S'lithograph' +p148780 +sg25275 +S'1894' +p148781 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef65.jpg' +p148782 +sg25267 +g27 +sa(dp148783 +g25268 +S'La Manifestation (The Demonstration)' +p148784 +sg25270 +S'F\xc3\xa9lix Vallotton' +p148785 +sg25273 +S'woodcut' +p148786 +sg25275 +S'1893' +p148787 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef67.jpg' +p148788 +sg25267 +g27 +sa(dp148789 +g25268 +S'Le Poker (Poker)' +p148790 +sg25270 +S'F\xc3\xa9lix Vallotton' +p148791 +sg25273 +S'woodcut' +p148792 +sg25275 +S'1896' +p148793 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef62.jpg' +p148794 +sg25267 +g27 +sa(dp148795 +g25268 +S'Frontispiece from "Paris Intense"' +p148796 +sg25270 +S'F\xc3\xa9lix Vallotton' +p148797 +sg25273 +S'lithograph (zinc) on yellow wove paper' +p148798 +sg25275 +S'1894' +p148799 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef6e.jpg' +p148800 +sg25267 +g27 +sa(dp148801 +g25268 +S'Album Cover for "Paris Intense"' +p148802 +sg25270 +S'F\xc3\xa9lix Vallotton' +p148803 +sg25273 +S'lithograph (zinc) on green wove paper' +p148804 +sg25275 +S'1894' +p148805 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef6d.jpg' +p148806 +sg25267 +g27 +sa(dp148807 +g25268 +S'Les Chanteurs (The Singers)' +p148808 +sg25270 +S'F\xc3\xa9lix Vallotton' +p148809 +sg25273 +S'lithograph (zinc) on yellow wove paper' +p148810 +sg25275 +S'1893' +p148811 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef6c.jpg' +p148812 +sg25267 +g27 +sa(dp148813 +g25268 +S'Au Violon (Off to the Jug)' +p148814 +sg25270 +S'F\xc3\xa9lix Vallotton' +p148815 +sg25273 +S'lithograph (zinc) on yellow wove paper' +p148816 +sg25275 +S'1893' +p148817 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a0006701.jpg' +p148818 +sg25267 +g27 +sa(dp148819 +g25268 +S'Deuxieme Bureau (Box Office)' +p148820 +sg25270 +S'F\xc3\xa9lix Vallotton' +p148821 +sg25273 +S'lithograph (zinc) on yellow wove paper' +p148822 +sg25275 +S'1893' +p148823 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef6b.jpg' +p148824 +sg25267 +g27 +sa(dp148825 +g25268 +S'Le Mon\xc3\xb4me (Parading through the Streets in Single File)' +p148826 +sg25270 +S'F\xc3\xa9lix Vallotton' +p148827 +sg25273 +S'lithograph (zinc) on yellow wove paper' +p148828 +sg25275 +S'1893' +p148829 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef6a.jpg' +p148830 +sg25267 +g27 +sa(dp148831 +g25268 +S"L'Averse (The Shower)" +p148832 +sg25270 +S'F\xc3\xa9lix Vallotton' +p148833 +sg25273 +S'lithograph (zinc) on yellow wove paper' +p148834 +sg25275 +S'1894' +p148835 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef69.jpg' +p148836 +sg25267 +g27 +sa(dp148837 +g25273 +S'graphite on wove paper' +p148838 +sg25267 +g27 +sg25275 +S'1922' +p148839 +sg25268 +S'Study for "The Angelus"' +p148840 +sg25270 +S'Robert Sargent Austin' +p148841 +sa(dp148842 +g25268 +S"L'Accident (The Accident)" +p148843 +sg25270 +S'F\xc3\xa9lix Vallotton' +p148844 +sg25273 +S'lithograph (zinc) on yellow wove paper' +p148845 +sg25275 +S'1893' +p148846 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a0006702.jpg' +p148847 +sg25267 +g27 +sa(dp148848 +g25273 +S'chiaroscuro woodcut' +p148849 +sg25267 +g27 +sg25275 +S'unknown date\n' +p148850 +sg25268 +S'Cartouche for Title Page' +p148851 +sg25270 +S'conte Antonio Maria Zanetti I' +p148852 +sa(dp148853 +g25273 +S'(artist)' +p148854 +sg25267 +g27 +sg25275 +S'\n' +p148855 +sg25268 +S'Album of Prints by A.M. Zanetti, G.A. Faldoni, and A. Zucchi' +p148856 +sg25270 +S'Artist Information (' +p148857 +sa(dp148858 +g25273 +S'(artist after)' +p148859 +sg25267 +g27 +sg25275 +S'\n' +p148860 +sg25268 +S'Madonna Seated on a Cloud Holding the Infant Christ' +p148861 +sg25270 +S'Artist Information (' +p148862 +sa(dp148863 +g25273 +S'chiaroscuro woodcut' +p148864 +sg25267 +g27 +sg25275 +S'1725' +p148865 +sg25268 +S'Two Children Petting a Lamb I' +p148866 +sg25270 +S'conte Antonio Maria Zanetti I' +p148867 +sa(dp148868 +g25273 +S'chiaroscuro woodcut' +p148869 +sg25267 +g27 +sg25275 +S'1725' +p148870 +sg25268 +S'Two Children Petting a Lamb II' +p148871 +sg25270 +S'conte Antonio Maria Zanetti I' +p148872 +sa(dp148873 +g25273 +S'(artist after)' +p148874 +sg25267 +g27 +sg25275 +S'\n' +p148875 +sg25268 +S'Madonna and Child on a Ledge I' +p148876 +sg25270 +S'Artist Information (' +p148877 +sa(dp148878 +g25273 +S'(artist after)' +p148879 +sg25267 +g27 +sg25275 +S'\n' +p148880 +sg25268 +S'Madonna and Child on a Ledge II' +p148881 +sg25270 +S'Artist Information (' +p148882 +sa(dp148883 +g25273 +S'(artist after)' +p148884 +sg25267 +g27 +sg25275 +S'\n' +p148885 +sg25268 +S'Saint Matthew' +p148886 +sg25270 +S'Artist Information (' +p148887 +sa(dp148888 +g25273 +S'(artist after)' +p148889 +sg25267 +g27 +sg25275 +S'\n' +p148890 +sg25268 +S'Saint Philip' +p148891 +sg25270 +S'Artist Information (' +p148892 +sa(dp148893 +g25273 +S'engraving' +p148894 +sg25267 +g27 +sg25275 +S'1926' +p148895 +sg25268 +S'The Puppet Master' +p148896 +sg25270 +S'Robert Sargent Austin' +p148897 +sa(dp148898 +g25273 +S'(artist after)' +p148899 +sg25267 +g27 +sg25275 +S'\n' +p148900 +sg25268 +S'Young Man Standing' +p148901 +sg25270 +S'Artist Information (' +p148902 +sa(dp148903 +g25273 +S'(artist after)' +p148904 +sg25267 +g27 +sg25275 +S'\n' +p148905 +sg25268 +S'Saint Andrew' +p148906 +sg25270 +S'Artist Information (' +p148907 +sa(dp148908 +g25273 +S'(artist after)' +p148909 +sg25267 +g27 +sg25275 +S'\n' +p148910 +sg25268 +S'Saint Andrew' +p148911 +sg25270 +S'Artist Information (' +p148912 +sa(dp148913 +g25273 +S'(artist after)' +p148914 +sg25267 +g27 +sg25275 +S'\n' +p148915 +sg25268 +S'Saint James' +p148916 +sg25270 +S'Artist Information (' +p148917 +sa(dp148918 +g25273 +S'(artist after)' +p148919 +sg25267 +g27 +sg25275 +S'\n' +p148920 +sg25268 +S'Young Man Half Nude' +p148921 +sg25270 +S'Artist Information (' +p148922 +sa(dp148923 +g25273 +S'(artist after)' +p148924 +sg25267 +g27 +sg25275 +S'\n' +p148925 +sg25268 +S'Saint James' +p148926 +sg25270 +S'Artist Information (' +p148927 +sa(dp148928 +g25273 +S'(artist after)' +p148929 +sg25267 +g27 +sg25275 +S'\n' +p148930 +sg25268 +S'A Genie Aloft' +p148931 +sg25270 +S'Artist Information (' +p148932 +sa(dp148933 +g25273 +S'(artist after)' +p148934 +sg25267 +g27 +sg25275 +S'\n' +p148935 +sg25268 +S'Study of an Old Man' +p148936 +sg25270 +S'Artist Information (' +p148937 +sa(dp148938 +g25273 +S'(artist after)' +p148939 +sg25267 +g27 +sg25275 +S'\n' +p148940 +sg25268 +S'Saint John the Baptist Seated' +p148941 +sg25270 +S'Artist Information (' +p148942 +sa(dp148943 +g25273 +S'(artist after)' +p148944 +sg25267 +g27 +sg25275 +S'\n' +p148945 +sg25268 +S'Madonna Seated Holding the Christ Child' +p148946 +sg25270 +S'Artist Information (' +p148947 +sa(dp148948 +g25273 +S'graphite on wove paper' +p148949 +sg25267 +g27 +sg25275 +S'c. 1926' +p148950 +sg25268 +S'Plane Tree Cottage' +p148951 +sg25270 +S'Robert Sargent Austin' +p148952 +sa(dp148953 +g25273 +S'(artist after)' +p148954 +sg25267 +g27 +sg25275 +S'\n' +p148955 +sg25268 +S'Madonna Seated on the Clouds Holding the Christ Child' +p148956 +sg25270 +S'Artist Information (' +p148957 +sa(dp148958 +g25273 +S'(artist after)' +p148959 +sg25267 +g27 +sg25275 +S'\n' +p148960 +sg25268 +S'An Old Man Standing' +p148961 +sg25270 +S'Artist Information (' +p148962 +sa(dp148963 +g25273 +S'(artist after)' +p148964 +sg25267 +g27 +sg25275 +S'\n' +p148965 +sg25268 +S'Saint Sebastian' +p148966 +sg25270 +S'Artist Information (' +p148967 +sa(dp148968 +g25273 +S'(artist after)' +p148969 +sg25267 +g27 +sg25275 +S'\n' +p148970 +sg25268 +S'An Old Shepherd' +p148971 +sg25270 +S'Artist Information (' +p148972 +sa(dp148973 +g25273 +S'(artist after)' +p148974 +sg25267 +g27 +sg25275 +S'\n' +p148975 +sg25268 +S'Madonna and Child, Saint Stephen, Another Saint, and a Young Man' +p148976 +sg25270 +S'Artist Information (' +p148977 +sa(dp148978 +g25273 +S'(artist after)' +p148979 +sg25267 +g27 +sg25275 +S'\n' +p148980 +sg25268 +S'The Birth of the Virgin' +p148981 +sg25270 +S'Artist Information (' +p148982 +sa(dp148983 +g25273 +S'(artist after)' +p148984 +sg25267 +g27 +sg25275 +S'\n' +p148985 +sg25268 +S'A Woman Standing' +p148986 +sg25270 +S'Artist Information (' +p148987 +sa(dp148988 +g25273 +S'(artist after)' +p148989 +sg25267 +g27 +sg25275 +S'\n' +p148990 +sg25268 +S'Saint Andrew Seated on His Cross' +p148991 +sg25270 +S'Artist Information (' +p148992 +sa(dp148993 +g25273 +S'(artist after)' +p148994 +sg25267 +g27 +sg25275 +S'\n' +p148995 +sg25268 +S'A Woman at the Foot of a Tree Holding a Child' +p148996 +sg25270 +S'Artist Information (' +p148997 +sa(dp148998 +g25273 +S'(artist after)' +p148999 +sg25267 +g27 +sg25275 +S'\n' +p149000 +sg25268 +S'A Woman Seated in a Room' +p149001 +sg25270 +S'Artist Information (' +p149002 +sa(dp149003 +g25273 +S'graphite on gray-green laid paper' +p149004 +sg25267 +g27 +sg25275 +S'c. 1929' +p149005 +sg25268 +S'Portrait of a Lady' +p149006 +sg25270 +S'Robert Sargent Austin' +p149007 +sa(dp149008 +g25273 +S'(artist after)' +p149009 +sg25267 +g27 +sg25275 +S'\n' +p149010 +sg25268 +S'Madonna and Child Enthroned, Saint Jerome and Saint Francis' +p149011 +sg25270 +S'Artist Information (' +p149012 +sa(dp149013 +g25273 +S'(artist after)' +p149014 +sg25267 +g27 +sg25275 +S'\n' +p149015 +sg25268 +S'Saint John in the Wilderness' +p149016 +sg25270 +S'Artist Information (' +p149017 +sa(dp149018 +g25273 +S'(artist after)' +p149019 +sg25267 +g27 +sg25275 +S'\n' +p149020 +sg25268 +S'The Entombment' +p149021 +sg25270 +S'Artist Information (' +p149022 +sa(dp149023 +g25273 +S'(artist after)' +p149024 +sg25267 +g27 +sg25275 +S'\n' +p149025 +sg25268 +S'Six Apostles' +p149026 +sg25270 +S'Artist Information (' +p149027 +sa(dp149028 +g25273 +S'(artist after)' +p149029 +sg25267 +g27 +sg25275 +S'\n' +p149030 +sg25268 +S'Dispute of Apollo and Marsyas' +p149031 +sg25270 +S'Artist Information (' +p149032 +sa(dp149033 +g25273 +S'(artist after)' +p149034 +sg25267 +g27 +sg25275 +S'\n' +p149035 +sg25268 +S'Madonna Seated and Child, Saint John and Saint Joseph' +p149036 +sg25270 +S'Artist Information (' +p149037 +sa(dp149038 +g25273 +S'(artist after)' +p149039 +sg25267 +g27 +sg25275 +S'\n' +p149040 +sg25268 +S'Aneas and Anchises' +p149041 +sg25270 +S'Artist Information (' +p149042 +sa(dp149043 +g25273 +S'(artist after)' +p149044 +sg25267 +g27 +sg25275 +S'\n' +p149045 +sg25268 +S'Young Woman Seen in Profile' +p149046 +sg25270 +S'Artist Information (' +p149047 +sa(dp149048 +g25273 +S'(artist after)' +p149049 +sg25267 +g27 +sg25275 +S'\n' +p149050 +sg25268 +S'Young Woman Standing' +p149051 +sg25270 +S'Artist Information (' +p149052 +sa(dp149053 +g25273 +S'(artist after)' +p149054 +sg25267 +g27 +sg25275 +S'\n' +p149055 +sg25268 +S'Madonna and Child with Saints' +p149056 +sg25270 +S'Artist Information (' +p149057 +sa(dp149058 +g25273 +S'graphite on wove paper' +p149059 +sg25267 +g27 +sg25275 +S'1922' +p149060 +sg25268 +S'Early Spring, Gloucestershire' +p149061 +sg25270 +S'Robert Sargent Austin' +p149062 +sa(dp149063 +g25273 +S'(artist after)' +p149064 +sg25267 +g27 +sg25275 +S'\n' +p149065 +sg25268 +S'The Adoration of the Shepherds' +p149066 +sg25270 +S'Artist Information (' +p149067 +sa(dp149068 +g25273 +S'(artist after)' +p149069 +sg25267 +g27 +sg25275 +S'\n' +p149070 +sg25268 +S'Interior of a Temple' +p149071 +sg25270 +S'Artist Information (' +p149072 +sa(dp149073 +g25273 +S'etching' +p149074 +sg25267 +g27 +sg25275 +S'unknown date\n' +p149075 +sg25268 +S'Seven Heads' +p149076 +sg25270 +S'conte Antonio Maria Zanetti I' +p149077 +sa(dp149078 +g25273 +S'etching and engraving' +p149079 +sg25267 +g27 +sg25275 +S'unknown date\n' +p149080 +sg25268 +S'Antonio Maria Zanetti' +p149081 +sg25270 +S'Giovanni Antonio Faldoni' +p149082 +sa(dp149083 +g25273 +S'engraving' +p149084 +sg25267 +g27 +sg25275 +S'unknown date\n' +p149085 +sg25268 +S'Figure with a Jar on Her Head' +p149086 +sg25270 +S'Giovanni Antonio Faldoni' +p149087 +sa(dp149088 +g25273 +S'(artist after)' +p149089 +sg25267 +g27 +sg25275 +S'\n' +p149090 +sg25268 +S'Three Figures in Cartouches' +p149091 +sg25270 +S'Artist Information (' +p149092 +sa(dp149093 +g25273 +S'(artist after)' +p149094 +sg25267 +g27 +sg25275 +S'\n' +p149095 +sg25268 +S'Six Figures Holding Scrolls' +p149096 +sg25270 +S'Artist Information (' +p149097 +sa(dp149098 +g25273 +S'engraving' +p149099 +sg25267 +g27 +sg25275 +S'1726' +p149100 +sg25268 +S'Mythological Scene' +p149101 +sg25270 +S'Giovanni Antonio Faldoni' +p149102 +sa(dp149103 +g25273 +S'engraving' +p149104 +sg25267 +g27 +sg25275 +S'1724' +p149105 +sg25268 +S'Woman Holding Vase on Her Head' +p149106 +sg25270 +S'Giovanni Antonio Faldoni' +p149107 +sa(dp149108 +g25273 +S'engraving' +p149109 +sg25267 +g27 +sg25275 +S'1724' +p149110 +sg25268 +S'Madonna and Child with Two Saints' +p149111 +sg25270 +S'Giovanni Antonio Faldoni' +p149112 +sa(dp149113 +g25273 +S'graphite on laid paper' +p149114 +sg25267 +g27 +sg25275 +S'c. 1921' +p149115 +sg25268 +S'The Trace Horse' +p149116 +sg25270 +S'Robert Sargent Austin' +p149117 +sa(dp149118 +g25273 +S'engraving' +p149119 +sg25267 +g27 +sg25275 +S'1724' +p149120 +sg25268 +S'Two Shepherds' +p149121 +sg25270 +S'Giovanni Antonio Faldoni' +p149122 +sa(dp149123 +g25273 +S'engraving' +p149124 +sg25267 +g27 +sg25275 +S'1724' +p149125 +sg25268 +S'Israelites Receiving Manna' +p149126 +sg25270 +S'Giovanni Antonio Faldoni' +p149127 +sa(dp149128 +g25268 +S'Folding the Linen (Le pliage du linge)' +p149129 +sg25270 +S'Edouard Vuillard' +p149130 +sg25273 +S'lithograph' +p149131 +sg25275 +S'1893' +p149132 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f18.jpg' +p149133 +sg25267 +g27 +sa(dp149134 +g25273 +S'color lithograph' +p149135 +sg25267 +g27 +sg25275 +S'published 1901' +p149136 +sg25268 +S"The Garden Outside the Studio (Le jardin devant l'atelier)" +p149137 +sg25270 +S'Edouard Vuillard' +p149138 +sa(dp149139 +g25273 +S'drypoint on japan paper' +p149140 +sg25267 +g27 +sg25275 +S'unknown date\n' +p149141 +sg25268 +S'Horse Trader' +p149142 +sg25270 +S'Cadwallader Washburn' +p149143 +sa(dp149144 +g25273 +S'drypoint' +p149145 +sg25267 +g27 +sg25275 +S'unknown date\n' +p149146 +sg25268 +S'Road to Cuernavaca, Mexico' +p149147 +sg25270 +S'Cadwallader Washburn' +p149148 +sa(dp149149 +g25273 +S'woodcut' +p149150 +sg25267 +g27 +sg25275 +S'c. 1951' +p149151 +sg25268 +S'Softly, Softly' +p149152 +sg25270 +S'Franklin Chenault Watkins' +p149153 +sa(dp149154 +g25273 +S'woodcut' +p149155 +sg25267 +g27 +sg25275 +S'1923' +p149156 +sg25268 +S'Edda, der Weltbrandt' +p149157 +sg25270 +S'Joseph Weisz' +p149158 +sa(dp149159 +g25268 +S'Saint Matthew' +p149160 +sg25270 +S'Stefano Della Bella' +p149161 +sg25273 +S', unknown date' +p149162 +sg25275 +S'\n' +p149163 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00074/a0007475.jpg' +p149164 +sg25267 +g27 +sa(dp149165 +g25268 +S'The Martyrdom of Saint Philip' +p149166 +sg25270 +S'Stefano Della Bella' +p149167 +sg25273 +S', unknown date' +p149168 +sg25275 +S'\n' +p149169 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00074/a0007472.jpg' +p149170 +sg25267 +g27 +sa(dp149171 +g25273 +S'pen and black ink with watercolor over graphite' +p149172 +sg25267 +g27 +sg25275 +S'c. 1926' +p149173 +sg25268 +S'Before Mass' +p149174 +sg25270 +S'Robert Sargent Austin' +p149175 +sa(dp149176 +g25268 +S'The Cavalry Combat' +p149177 +sg25270 +S'Stefano Della Bella' +p149178 +sg25273 +S', unknown date' +p149179 +sg25275 +S'\n' +p149180 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00074/a0007474.jpg' +p149181 +sg25267 +g27 +sa(dp149182 +g25268 +S'The Martyrdom of Saint Andrew' +p149183 +sg25270 +S'Stefano Della Bella' +p149184 +sg25273 +S', unknown date' +p149185 +sg25275 +S'\n' +p149186 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00074/a0007473.jpg' +p149187 +sg25267 +g27 +sa(dp149188 +g25268 +S'Saint James the Great' +p149189 +sg25270 +S'Stefano Della Bella' +p149190 +sg25273 +S', unknown date' +p149191 +sg25275 +S'\n' +p149192 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00074/a0007476.jpg' +p149193 +sg25267 +g27 +sa(dp149194 +g25273 +S'transfer lithograph' +p149195 +sg25267 +g27 +sg25275 +S'1920' +p149196 +sg25268 +S'Young Prostitute' +p149197 +sg25270 +S'Edvard Munch' +p149198 +sa(dp149199 +g25268 +S'Portrait of a Lady' +p149200 +sg25270 +S'Edouard Manet' +p149201 +sg25273 +S'oil on wood' +p149202 +sg25275 +S'c. 1879' +p149203 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c12.jpg' +p149204 +sg25267 +g27 +sa(dp149205 +g25268 +S'The Sisters' +p149206 +sg25270 +S'Berthe Morisot' +p149207 +sg25273 +S'oil on canvas' +p149208 +sg25275 +S'1869' +p149209 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000688.jpg' +p149210 +sg25267 +S'The identity of the women portrayed here\r\nhas been the source of much scholarly\r\ndebate. Correspondence among members\r\nof the Morisot family indicates that during\r\nthe autumn of 1869 Morisot undertook a\r\ndouble portrait of two sisters, the Delaroches,\r\nwho sat for her three times. Some\r\nscholars have thus posited that this work is\r\nthe result of those sittings.\n Executed shortly after Edma\xe2\x80\x99s marriage\r\nand the sisters\xe2\x80\x99 subsequent separation,\r\nthe painting depicts an intimate, if posed,\r\nmoment. The correspondence between\r\nBerthe and Edma reveals that each sister\r\nviewed the other as her foil; the letters also\r\ninclude many references to their closeness\r\nprior to Edma\xe2\x80\x99s marriage and their wish\r\nto be reunited. \n An intricately rendered fan held by the\r\nfigure on the right calls attention to the fan\r\non the wall behind the two women. Given to Morisot by her good friend the artist\r\nEdgar Degas, the framed fan indicates that\r\nthe painting was executed in the intimacy\r\nof the Morisot home. Degas painted several\r\nfans during his career; they reflect the increasing\r\npopularity in France of Japanese\r\nfans and woodblock prints as well as a growing\r\ntaste for all things Spanish. The fan he\r\ngave to Morisot (\n In this portrait, Morisot depicted both\r\nsitters in day dresses suitable for receiving\r\nfamiliar company.\n (Text by Daniella Berman, \n Notes\n \n \n \n ' +p149211 +sa(dp149212 +g25268 +S'Mrs. Charles S. Carstairs' +p149213 +sg25270 +S'Sir William Orpen' +p149214 +sg25273 +S'oil on canvas' +p149215 +sg25275 +S'1914' +p149216 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000be/a000be69.jpg' +p149217 +sg25267 +g27 +sa(dp149218 +g25268 +S'Captain Samuel Sharpe Pocklington with His Wife, Pleasance, and possibly His Sister, Frances' +p149219 +sg25270 +S'George Stubbs' +p149220 +sg25273 +S'oil on canvas' +p149221 +sg25275 +S'1769' +p149222 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000057b.jpg' +p149223 +sg25267 +S"Captain Pocklington, who wears the uniform of the Scots Guard, retired from the\nthird regiment in 1769, the same year that Stubbs painted this group portrait. Seated\non the bench is the captain's wife, Pleasance, who is probably wearing bridal clothes.\nThe woman standing behind Pleasance is presumably Pocklington's sister, Frances.\n Stubbs' fame is based on his precise and naturalistic depictions of animals, primarily\nhorses, even in paintings such as this that are ostensibly about human matters.\nStubbs lived in a world fascinated with scientific inquiry; he himself actually\nperformed dissections of animals to fully understand their anatomy.\n Stubbs' interest in the structure and complexity of living things led him to adopt\na working style in which he first painted the individual figures and then completed\nthe background and secondary details. The subjects are arranged in a friezelike\npattern against the darker, more muted shades of the massive tree and fanciful landscape.\nStubbs was not invited to exhibit at the Royal Academy because he had been labeled\nas a horse painter, and his popularity sank even lower during the romantic era.\nNow in an age that looks back on pioneers such as Stubbs with fascination and respect,\nhis stature as an artist has greatly increased.\n " +p149224 +sa(dp149225 +g25268 +S"The Prodigal Son, 6th plate (L'enfant prodigue)" +p149226 +sg25270 +S'Alphonse Legros' +p149227 +sg25273 +S'etching and drypoint' +p149228 +sg25275 +S'unknown date\n' +p149229 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009faa.jpg' +p149230 +sg25267 +g27 +sa(dp149231 +g25268 +S'Finding the Sheep (Le mouton retrouve)' +p149232 +sg25270 +S'Alphonse Legros' +p149233 +sg25273 +S'etching' +p149234 +sg25275 +S'unknown date\n' +p149235 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fa0.jpg' +p149236 +sg25267 +g27 +sa(dp149237 +g25273 +S'engraving' +p149238 +sg25267 +g27 +sg25275 +S'1928' +p149239 +sg25268 +S'Woman Tethering a Goat' +p149240 +sg25270 +S'Robert Sargent Austin' +p149241 +sa(dp149242 +g25268 +S'Monks Chopping Wood (Les moines bucherons)' +p149243 +sg25270 +S'Alphonse Legros' +p149244 +sg25273 +S'etching' +p149245 +sg25275 +S'unknown date\n' +p149246 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b41.jpg' +p149247 +sg25267 +g27 +sa(dp149248 +g25268 +S"Head of a Man (Tete d'homme)" +p149249 +sg25270 +S'Alphonse Legros' +p149250 +sg25273 +S'drypoint' +p149251 +sg25275 +S'1877' +p149252 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b63.jpg' +p149253 +sg25267 +g27 +sa(dp149254 +g25273 +S'drypoint' +p149255 +sg25267 +g27 +sg25275 +S'unknown date\n' +p149256 +sg25268 +S"Tree Pruner (L'elagueur)" +p149257 +sg25270 +S'Alphonse Legros' +p149258 +sa(dp149259 +g25268 +S'Woman Seated against a Wall, Child with His Head in Her Lap (Femme assise, muraille au fond, enfant la tete dans son giron' +p149260 +sg25270 +S'Alphonse Legros' +p149261 +sg25273 +S'etching and drypoint' +p149262 +sg25275 +S'unknown date\n' +p149263 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c61.jpg' +p149264 +sg25267 +g27 +sa(dp149265 +g25268 +S'Val Prinsep, R.A.' +p149266 +sg25270 +S'Alphonse Legros' +p149267 +sg25273 +S'etching and drypoint' +p149268 +sg25275 +S'unknown date\n' +p149269 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b7d.jpg' +p149270 +sg25267 +g27 +sa(dp149271 +g25268 +S'View of a Farm (La ferme de Beauchamp)' +p149272 +sg25270 +S'Alphonse Legros' +p149273 +sg25273 +S'etching' +p149274 +sg25275 +S'unknown date\n' +p149275 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fae.jpg' +p149276 +sg25267 +g27 +sa(dp149277 +g25268 +S'Sleeping Shepherd (Le repos du berger)' +p149278 +sg25270 +S'Alphonse Legros' +p149279 +sg25273 +S'etching' +p149280 +sg25275 +S'unknown date\n' +p149281 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fb0.jpg' +p149282 +sg25267 +g27 +sa(dp149283 +g25268 +S"Fire in the Hamlet (L'incendie du hameau)" +p149284 +sg25270 +S'Alphonse Legros' +p149285 +sg25273 +S'etching and drypoint' +p149286 +sg25275 +S'unknown date\n' +p149287 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fab.jpg' +p149288 +sg25267 +g27 +sa(dp149289 +g25268 +S'Frederic Regamey' +p149290 +sg25270 +S'Alphonse Legros' +p149291 +sg25273 +S'lithograph' +p149292 +sg25275 +S'unknown date\n' +p149293 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000990b.jpg' +p149294 +sg25267 +g27 +sa(dp149295 +g25268 +S'Head of a Model (Tete de modele)' +p149296 +sg25270 +S'Alphonse Legros' +p149297 +sg25273 +S'drypoint' +p149298 +sg25275 +S'unknown date\n' +p149299 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b15.jpg' +p149300 +sg25267 +g27 +sa(dp149301 +g25268 +S'Saint Jerome in the Wilderness' +p149302 +sg25270 +S'Artist Information (' +p149303 +sg25273 +S'Italian, c. 1450 - 1523' +p149304 +sg25275 +S'(related artist)' +p149305 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037cd.jpg' +p149306 +sg25267 +g27 +sa(dp149307 +g25273 +S'etching' +p149308 +sg25267 +g27 +sg25275 +S'1936' +p149309 +sg25268 +S'In Santa Serva II' +p149310 +sg25270 +S'Robert Sargent Austin' +p149311 +sa(dp149312 +g25268 +S'Breton Peasant (Paysan breton)' +p149313 +sg25270 +S'Alphonse Legros' +p149314 +sg25273 +S'drypoint' +p149315 +sg25275 +S'unknown date\n' +p149316 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b26.jpg' +p149317 +sg25267 +g27 +sa(dp149318 +g25268 +S'Little Marie (La petite Marie)' +p149319 +sg25270 +S'Alphonse Legros' +p149320 +sg25273 +S'drypoint' +p149321 +sg25275 +S'unknown date\n' +p149322 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009906.jpg' +p149323 +sg25267 +g27 +sa(dp149324 +g25268 +S'M. Champfleury' +p149325 +sg25270 +S'Alphonse Legros' +p149326 +sg25273 +S'lithograph' +p149327 +sg25275 +S'1875' +p149328 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009907.jpg' +p149329 +sg25267 +g27 +sa(dp149330 +g25268 +S"Head of a Man (Tete d'homme)" +p149331 +sg25270 +S'Alphonse Legros' +p149332 +sg25273 +S'drypoint in brown ink' +p149333 +sg25275 +S'unknown date\n' +p149334 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b25.jpg' +p149335 +sg25267 +g27 +sa(dp149336 +g25268 +S'Jules Dalou, 1st plate' +p149337 +sg25270 +S'Alphonse Legros' +p149338 +sg25273 +S'etching and drypoint' +p149339 +sg25275 +S'unknown date\n' +p149340 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009904.jpg' +p149341 +sg25267 +g27 +sa(dp149342 +g25268 +S"Communion in the Church of Saint Medard (La communion dans l'eglise St.-Medard)" +p149343 +sg25270 +S'Alphonse Legros' +p149344 +sg25273 +S'etching with aquatint?' +p149345 +sg25275 +S'unknown date\n' +p149346 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b1d.jpg' +p149347 +sg25267 +g27 +sa(dp149348 +g25268 +S'The Refectory (Le refectoire)' +p149349 +sg25270 +S'Alphonse Legros' +p149350 +sg25273 +S'etching' +p149351 +sg25275 +S'unknown date\n' +p149352 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b23.jpg' +p149353 +sg25267 +g27 +sa(dp149354 +g25268 +S'The Death of Saint Francis (La mort de St. Francois)' +p149355 +sg25270 +S'Alphonse Legros' +p149356 +sg25273 +S'etching and drypoint' +p149357 +sg25275 +S'unknown date\n' +p149358 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b34.jpg' +p149359 +sg25267 +g27 +sa(dp149360 +g25268 +S'Choristers, 1st plate (Le lutrin)' +p149361 +sg25270 +S'Alphonse Legros' +p149362 +sg25273 +S'drypoint' +p149363 +sg25275 +S'unknown date\n' +p149364 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b3e.jpg' +p149365 +sg25267 +g27 +sa(dp149366 +g25268 +S'Choristers, 2nd plate (Le lutrin)' +p149367 +sg25270 +S'Alphonse Legros' +p149368 +sg25273 +S'etching' +p149369 +sg25275 +S'unknown date\n' +p149370 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b3a.jpg' +p149371 +sg25267 +g27 +sa(dp149372 +g25273 +S'engraving' +p149373 +sg25267 +g27 +sg25275 +S'1928' +p149374 +sg25268 +S'Zoutelande' +p149375 +sg25270 +S'Robert Sargent Austin' +p149376 +sa(dp149377 +g25268 +S'Baptism (Le bapteme)' +p149378 +sg25270 +S'Alphonse Legros' +p149379 +sg25273 +S'etching' +p149380 +sg25275 +S'unknown date\n' +p149381 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b36.jpg' +p149382 +sg25267 +g27 +sa(dp149383 +g25268 +S'Job, 1st plate' +p149384 +sg25270 +S'Alphonse Legros' +p149385 +sg25273 +S'etching and drypoint' +p149386 +sg25275 +S'unknown date\n' +p149387 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b39.jpg' +p149388 +sg25267 +g27 +sa(dp149389 +g25268 +S'Peasant Washing Her Feet (Paysanne se lavant les pieds)' +p149390 +sg25270 +S'Alphonse Legros' +p149391 +sg25273 +S'etching and drypoint' +p149392 +sg25275 +S'1860' +p149393 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b3d.jpg' +p149394 +sg25267 +g27 +sa(dp149395 +g25268 +S'Woodcutter (Le bucheron)' +p149396 +sg25270 +S'Alphonse Legros' +p149397 +sg25273 +S'etching' +p149398 +sg25275 +S'unknown date\n' +p149399 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b47.jpg' +p149400 +sg25267 +g27 +sa(dp149401 +g25268 +S'Peasant Women of Boulogne (Paysannes des environs de Boulogne)' +p149402 +sg25270 +S'Alphonse Legros' +p149403 +sg25273 +S'etching and drypoint?' +p149404 +sg25275 +S'unknown date\n' +p149405 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009903.jpg' +p149406 +sg25267 +g27 +sa(dp149407 +g25268 +S'The Plow (La charrue)' +p149408 +sg25270 +S'Alphonse Legros' +p149409 +sg25273 +S'etching' +p149410 +sg25275 +S'unknown date\n' +p149411 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b46.jpg' +p149412 +sg25267 +g27 +sa(dp149413 +g25268 +S"Traveler taking Shelter (Le voyageur a l'abri)" +p149414 +sg25270 +S'Alphonse Legros' +p149415 +sg25273 +S'etching and drypoint' +p149416 +sg25275 +S'unknown date\n' +p149417 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b4a.jpg' +p149418 +sg25267 +g27 +sa(dp149419 +g25268 +S"Traveler taking Shelter (Le voyageur a l'abri)" +p149420 +sg25270 +S'Alphonse Legros' +p149421 +sg25273 +S'etching, (drypoint?) and aquatint' +p149422 +sg25275 +S'unknown date\n' +p149423 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b49.jpg' +p149424 +sg25267 +g27 +sa(dp149425 +g25268 +S'Fisherman with a Hoop-net (La peche a la truble)' +p149426 +sg25270 +S'Alphonse Legros' +p149427 +sg25273 +S'etching and aquatint on buff paper' +p149428 +sg25275 +S'unknown date\n' +p149429 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b58.jpg' +p149430 +sg25267 +g27 +sa(dp149431 +g25268 +S'Blind Beggar (Le mendiant aveugle)' +p149432 +sg25270 +S'Alphonse Legros' +p149433 +sg25273 +S'drypoint' +p149434 +sg25275 +S'unknown date\n' +p149435 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098fd.jpg' +p149436 +sg25267 +g27 +sa(dp149437 +g25273 +S'engraving' +p149438 +sg25267 +g27 +sg25275 +S'1927/1929' +p149439 +sg25268 +S'Woman Praying' +p149440 +sg25270 +S'Robert Sargent Austin' +p149441 +sa(dp149442 +g25268 +S'Peasant Woman of Boulogne (Paysanne des environs de Boulogne dite La femme au panier)' +p149443 +sg25270 +S'Alphonse Legros' +p149444 +sg25273 +S'etching and aquatint' +p149445 +sg25275 +S'unknown date\n' +p149446 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b54.jpg' +p149447 +sg25267 +g27 +sa(dp149448 +g25268 +S'Peasant Woman of Boulogne (Paysanne des environs de Boulogne dite La femme au panier)' +p149449 +sg25270 +S'Alphonse Legros' +p149450 +sg25273 +S'etching' +p149451 +sg25275 +S'unknown date\n' +p149452 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b50.jpg' +p149453 +sg25267 +g27 +sa(dp149454 +g25268 +S'Brick-works (La Briqueterie)' +p149455 +sg25270 +S'Alphonse Legros' +p149456 +sg25273 +S'drypoint' +p149457 +sg25275 +S'unknown date\n' +p149458 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b55.jpg' +p149459 +sg25267 +g27 +sa(dp149460 +g25268 +S'Landscape with Roller (Le paysage au rouleau)' +p149461 +sg25270 +S'Alphonse Legros' +p149462 +sg25273 +S'etching and drypoint' +p149463 +sg25275 +S'unknown date\n' +p149464 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b5d.jpg' +p149465 +sg25267 +g27 +sa(dp149466 +g25268 +S'Landscape with Boat, 1st plate (Le paysage au bateau)' +p149467 +sg25270 +S'Alphonse Legros' +p149468 +sg25273 +S'etching and drypoint?' +p149469 +sg25275 +S'unknown date\n' +p149470 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b53.jpg' +p149471 +sg25267 +g27 +sa(dp149472 +g25268 +S'Landscape with Boat, 1st plate (Le paysage au bateau)' +p149473 +sg25270 +S'Alphonse Legros' +p149474 +sg25273 +S'etching and drypoint' +p149475 +sg25275 +S'unknown date\n' +p149476 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b52.jpg' +p149477 +sg25267 +g27 +sa(dp149478 +g25268 +S'Landscape with Boat, 1st plate (Le paysage au bateau)' +p149479 +sg25270 +S'Alphonse Legros' +p149480 +sg25273 +S'etching and drypoint' +p149481 +sg25275 +S'unknown date\n' +p149482 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b51.jpg' +p149483 +sg25267 +g27 +sa(dp149484 +g25268 +S'Landscape with Pond (Le paysage a la mare)' +p149485 +sg25270 +S'Alphonse Legros' +p149486 +sg25273 +S'etching and drypoint?' +p149487 +sg25275 +S'unknown date\n' +p149488 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b5a.jpg' +p149489 +sg25267 +g27 +sa(dp149490 +g25268 +S'Landscape with Haystacks (Le paysage aux meules)' +p149491 +sg25270 +S'Alphonse Legros' +p149492 +sg25273 +S'etching and drypoint' +p149493 +sg25275 +S'unknown date\n' +p149494 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b56.jpg' +p149495 +sg25267 +g27 +sa(dp149496 +g25268 +S'Pollard Willows (Les saules tetards)' +p149497 +sg25270 +S'Alphonse Legros' +p149498 +sg25273 +S'etching and drypoint?' +p149499 +sg25275 +S'unknown date\n' +p149500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b59.jpg' +p149501 +sg25267 +g27 +sa(dp149502 +g25273 +S'etching' +p149503 +sg25267 +g27 +sg25275 +S'1923' +p149504 +sg25268 +S'"Wherefore Plough?"' +p149505 +sg25270 +S'Robert Sargent Austin' +p149506 +sa(dp149507 +g25268 +S'The Hearth (Le foyer)' +p149508 +sg25270 +S'Alphonse Legros' +p149509 +sg25273 +S'etching' +p149510 +sg25275 +S'unknown date\n' +p149511 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b29.jpg' +p149512 +sg25267 +g27 +sa(dp149513 +g25268 +S'Account Book (Le livre de comptes)' +p149514 +sg25270 +S'Alphonse Legros' +p149515 +sg25273 +S'etching' +p149516 +sg25275 +S'unknown date\n' +p149517 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098fc.jpg' +p149518 +sg25267 +g27 +sa(dp149519 +g25268 +S'Contre-bass Player (Le joueur de contre-basse)' +p149520 +sg25270 +S'Alphonse Legros' +p149521 +sg25273 +S'etching' +p149522 +sg25275 +S'unknown date\n' +p149523 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b2b.jpg' +p149524 +sg25267 +g27 +sa(dp149525 +g25268 +S'Viol Player (Le joueur de viole)' +p149526 +sg25270 +S'Alphonse Legros' +p149527 +sg25273 +S'etching? and drypoint' +p149528 +sg25275 +S'unknown date\n' +p149529 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b2a.jpg' +p149530 +sg25267 +g27 +sa(dp149531 +g25268 +S'Death and the Woodcutter, 2nd plate (La Mort de le bucheron)' +p149532 +sg25270 +S'Alphonse Legros' +p149533 +sg25273 +S'etching? and drypoint' +p149534 +sg25275 +S'unknown date\n' +p149535 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b2e.jpg' +p149536 +sg25267 +g27 +sa(dp149537 +g25268 +S"The Fire, 2nd plate (L'incendie)" +p149538 +sg25270 +S'Alphonse Legros' +p149539 +sg25273 +S'etching' +p149540 +sg25275 +S'unknown date\n' +p149541 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b2c.jpg' +p149542 +sg25267 +g27 +sa(dp149543 +g25268 +S'Ex-Libris Edwin Edwards' +p149544 +sg25270 +S'Alphonse Legros' +p149545 +sg25273 +S'etching' +p149546 +sg25275 +S'unknown date\n' +p149547 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098f6.jpg' +p149548 +sg25267 +g27 +sa(dp149549 +g25268 +S'Archers (Les archers)' +p149550 +sg25270 +S'Alphonse Legros' +p149551 +sg25273 +S'etching' +p149552 +sg25275 +S'1862' +p149553 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b64.jpg' +p149554 +sg25267 +g27 +sa(dp149555 +g25268 +S'"Since Then" ("Depuis ce temps-la")' +p149556 +sg25270 +S'Alphonse Legros' +p149557 +sg25273 +S'drypoint on light green paper' +p149558 +sg25275 +S'unknown date\n' +p149559 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098f9.jpg' +p149560 +sg25267 +g27 +sa(dp149561 +g25268 +S'Death and the Woodcutter, 3rd plate (La mort et le bucheron)' +p149562 +sg25270 +S'Alphonse Legros' +p149563 +sg25273 +S'etching' +p149564 +sg25275 +S'unknown date\n' +p149565 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b74.jpg' +p149566 +sg25267 +g27 +sa(dp149567 +g25273 +S'drypoint' +p149568 +sg25267 +g27 +sg25275 +S'1921' +p149569 +sg25268 +S'The Trace Horse' +p149570 +sg25270 +S'Robert Sargent Austin' +p149571 +sa(dp149572 +g25268 +S'Fagot-makers (Les faiseurs de fagots)' +p149573 +sg25270 +S'Alphonse Legros' +p149574 +sg25273 +S'etching' +p149575 +sg25275 +S'unknown date\n' +p149576 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b72.jpg' +p149577 +sg25267 +g27 +sa(dp149578 +g25268 +S'Fagot-makers (Les faiseurs de fagots)' +p149579 +sg25270 +S'Alphonse Legros' +p149580 +sg25273 +S'etching and aquatint?' +p149581 +sg25275 +S'unknown date\n' +p149582 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b71.jpg' +p149583 +sg25267 +g27 +sa(dp149584 +g25268 +S'Head of a Philosopher (Tete de philosophe)' +p149585 +sg25270 +S'Alphonse Legros' +p149586 +sg25273 +S'etching' +p149587 +sg25275 +S'unknown date\n' +p149588 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b6f.jpg' +p149589 +sg25267 +g27 +sa(dp149590 +g25268 +S'Auguste Poulet-Malassis, 2nd plate' +p149591 +sg25270 +S'Alphonse Legros' +p149592 +sg25273 +S'etching' +p149593 +sg25275 +S'unknown date\n' +p149594 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098ee.jpg' +p149595 +sg25267 +g27 +sa(dp149596 +g25268 +S"Head of a Man (Tete d'homme)" +p149597 +sg25270 +S'Alphonse Legros' +p149598 +sg25273 +S'etching' +p149599 +sg25275 +S'unknown date\n' +p149600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b6e.jpg' +p149601 +sg25267 +g27 +sa(dp149602 +g25268 +S"Head of a Man (Tete d'homme)" +p149603 +sg25270 +S'Alphonse Legros' +p149604 +sg25273 +S'etching and aquatint?' +p149605 +sg25275 +S'unknown date\n' +p149606 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b77.jpg' +p149607 +sg25267 +g27 +sa(dp149608 +g25268 +S'Village of Wimille, near Boulogne (Village de Wimille, pres Boulogne)' +p149609 +sg25270 +S'Alphonse Legros' +p149610 +sg25273 +S'etching' +p149611 +sg25275 +S'unknown date\n' +p149612 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098e4.jpg' +p149613 +sg25267 +g27 +sa(dp149614 +g25268 +S'Charity (La charite)' +p149615 +sg25270 +S'Alphonse Legros' +p149616 +sg25273 +S'etching' +p149617 +sg25275 +S'unknown date\n' +p149618 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b8a.jpg' +p149619 +sg25267 +g27 +sa(dp149620 +g25268 +S'Beggar (Le mendiant)' +p149621 +sg25270 +S'Alphonse Legros' +p149622 +sg25273 +S'etching' +p149623 +sg25275 +S'1881' +p149624 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b8d.jpg' +p149625 +sg25267 +g27 +sa(dp149626 +g25268 +S'Sir Seymour Haden' +p149627 +sg25270 +S'Alphonse Legros' +p149628 +sg25273 +S'mezzotint' +p149629 +sg25275 +S'unknown date\n' +p149630 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b8b.jpg' +p149631 +sg25267 +g27 +sa(dp149632 +g25273 +S'etching' +p149633 +sg25267 +g27 +sg25275 +S'1925' +p149634 +sg25268 +S'The Stone Breaker' +p149635 +sg25270 +S'Robert Sargent Austin' +p149636 +sa(dp149637 +g25268 +S'Vase with Grotesques (Le vase aux masques)' +p149638 +sg25270 +S'Alphonse Legros' +p149639 +sg25273 +S'etching' +p149640 +sg25275 +S'unknown date\n' +p149641 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000990f.jpg' +p149642 +sg25267 +g27 +sa(dp149643 +g25268 +S'Digger (Le piocheur)' +p149644 +sg25270 +S'Alphonse Legros' +p149645 +sg25273 +S'etching' +p149646 +sg25275 +S'unknown date\n' +p149647 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009915.jpg' +p149648 +sg25267 +g27 +sa(dp149649 +g25268 +S"Burning Grass (Le bruleur d'herbes)" +p149650 +sg25270 +S'Alphonse Legros' +p149651 +sg25273 +S'etching and drypoint' +p149652 +sg25275 +S'unknown date\n' +p149653 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009913.jpg' +p149654 +sg25267 +g27 +sa(dp149655 +g25268 +S'Small Satyr Mask (Petit masque de satyre)' +p149656 +sg25270 +S'Alphonse Legros' +p149657 +sg25273 +S'etching' +p149658 +sg25275 +S'unknown date\n' +p149659 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000990c.jpg' +p149660 +sg25267 +g27 +sa(dp149661 +g25268 +S'Frontispiece (The Beggar Woman of Veze)' +p149662 +sg25270 +S'Alphonse Legros' +p149663 +sg25273 +S'etching' +p149664 +sg25275 +S'unknown date\n' +p149665 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099cb.jpg' +p149666 +sg25267 +g27 +sa(dp149667 +g25268 +S'Vagabond Moving along a Lane (Un vagabond passant dans une ruelle)' +p149668 +sg25270 +S'Alphonse Legros' +p149669 +sg25273 +S'etching' +p149670 +sg25275 +S'unknown date\n' +p149671 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bbc.jpg' +p149672 +sg25267 +g27 +sa(dp149673 +g25268 +S"Head of a Man (Tete d'homme)" +p149674 +sg25270 +S'Alphonse Legros' +p149675 +sg25273 +S'lithograph' +p149676 +sg25275 +S'unknown date\n' +p149677 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d7a.jpg' +p149678 +sg25267 +g27 +sa(dp149679 +g25268 +S'Banks of the Marne (Bord de la Marne)' +p149680 +sg25270 +S'Alphonse Legros' +p149681 +sg25273 +S'drypoint and (etching?) on light green paper' +p149682 +sg25275 +S'unknown date\n' +p149683 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009910.jpg' +p149684 +sg25267 +g27 +sa(dp149685 +g25268 +S"Interior of a Church (Interieur d'eglise)" +p149686 +sg25270 +S'Alphonse Legros' +p149687 +sg25273 +S'etching' +p149688 +sg25275 +S'unknown date\n' +p149689 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009919.jpg' +p149690 +sg25267 +g27 +sa(dp149691 +g25268 +S"Egg-sellers, 1st plate (Les marchandes d'oeufs)" +p149692 +sg25270 +S'Alphonse Legros' +p149693 +sg25273 +S'drypoint' +p149694 +sg25275 +S'unknown date\n' +p149695 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009916.jpg' +p149696 +sg25267 +g27 +sa(dp149697 +g25273 +S'etching' +p149698 +sg25267 +g27 +sg25275 +S'1926' +p149699 +sg25268 +S'Sottocastello' +p149700 +sg25270 +S'Robert Sargent Austin' +p149701 +sa(dp149702 +g25268 +S"The Gate (L'entree du champ)" +p149703 +sg25270 +S'Alphonse Legros' +p149704 +sg25273 +S'etching? and drypoint' +p149705 +sg25275 +S'unknown date\n' +p149706 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000992a.jpg' +p149707 +sg25267 +g27 +sa(dp149708 +g25268 +S'Squaring Logs (Homme que fend des buches)' +p149709 +sg25270 +S'Alphonse Legros' +p149710 +sg25273 +S'etching and drypoint in brown ink' +p149711 +sg25275 +S'unknown date\n' +p149712 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bc8.jpg' +p149713 +sg25267 +g27 +sa(dp149714 +g25268 +S'View of a Farm (La ferme des Bordes)' +p149715 +sg25270 +S'Alphonse Legros' +p149716 +sg25273 +S'etching? and drypoint' +p149717 +sg25275 +S'unknown date\n' +p149718 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b99.jpg' +p149719 +sg25267 +g27 +sa(dp149720 +g25268 +S'Poor Man (Pauvre homme)' +p149721 +sg25270 +S'Alphonse Legros' +p149722 +sg25273 +S'drypoint and (etching?)' +p149723 +sg25275 +S'unknown date\n' +p149724 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009ba0.jpg' +p149725 +sg25267 +g27 +sa(dp149726 +g25268 +S'Guardhouse (La maison du garde)' +p149727 +sg25270 +S'Alphonse Legros' +p149728 +sg25273 +S'drypoint and (etching?)' +p149729 +sg25275 +S'unknown date\n' +p149730 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009ba7.jpg' +p149731 +sg25267 +g27 +sa(dp149732 +g25268 +S'View of a Farm, 2nd plate (La ferme du Bienheureux)' +p149733 +sg25270 +S'Alphonse Legros' +p149734 +sg25273 +S'drypoint and (etching?)' +p149735 +sg25275 +S'unknown date\n' +p149736 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009beb.jpg' +p149737 +sg25267 +g27 +sa(dp149738 +g25268 +S'Sleeping Beggar (Mendiant endormi)' +p149739 +sg25270 +S'Alphonse Legros' +p149740 +sg25273 +S'etching and drypoint' +p149741 +sg25275 +S'unknown date\n' +p149742 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bfa.jpg' +p149743 +sg25267 +g27 +sa(dp149744 +g25268 +S'Bohemien Encampment (Campement de bohemiens)' +p149745 +sg25270 +S'Alphonse Legros' +p149746 +sg25273 +S'etching' +p149747 +sg25275 +S'unknown date\n' +p149748 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c17.jpg' +p149749 +sg25267 +g27 +sa(dp149750 +g25268 +S"Victim of a Fire (Victime d'un incendie)" +p149751 +sg25270 +S'Alphonse Legros' +p149752 +sg25273 +S'drypoint' +p149753 +sg25275 +S'unknown date\n' +p149754 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098d8.jpg' +p149755 +sg25267 +g27 +sa(dp149756 +g25268 +S'Old Inn (Une ancienne auberge)' +p149757 +sg25270 +S'Alphonse Legros' +p149758 +sg25273 +S'etching and drypoint' +p149759 +sg25275 +S'unknown date\n' +p149760 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c51.jpg' +p149761 +sg25267 +g27 +sa(dp149762 +g25273 +S'engraving' +p149763 +sg25267 +g27 +sg25275 +S'1928' +p149764 +sg25268 +S'Scythes' +p149765 +sg25270 +S'Robert Sargent Austin' +p149766 +sa(dp149767 +g25268 +S"Fire, 3rd plate (L'incendie)" +p149768 +sg25270 +S'Alphonse Legros' +p149769 +sg25273 +S'etching' +p149770 +sg25275 +S'unknown date\n' +p149771 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dde.jpg' +p149772 +sg25267 +g27 +sa(dp149773 +g25268 +S'Woodcutters, 3rd plate (Les bucherons)' +p149774 +sg25270 +S'Alphonse Legros' +p149775 +sg25273 +S'etching in dark brown ink' +p149776 +sg25275 +S'unknown date\n' +p149777 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c5a.jpg' +p149778 +sg25267 +g27 +sa(dp149779 +g25268 +S'In the Forest (Lisiere de foret)' +p149780 +sg25270 +S'Alphonse Legros' +p149781 +sg25273 +S'etching' +p149782 +sg25275 +S'unknown date\n' +p149783 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009de1.jpg' +p149784 +sg25267 +g27 +sa(dp149785 +g25268 +S'Death and the Philosopher (La mort et le philosophe)' +p149786 +sg25270 +S'Alphonse Legros' +p149787 +sg25273 +S'etching' +p149788 +sg25275 +S'unknown date\n' +p149789 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dd8.jpg' +p149790 +sg25267 +g27 +sa(dp149791 +g25268 +S'The Cooper (Le tonnelier)' +p149792 +sg25270 +S'Alphonse Legros' +p149793 +sg25273 +S'etching' +p149794 +sg25275 +S'unknown date\n' +p149795 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009de7.jpg' +p149796 +sg25267 +g27 +sa(dp149797 +g25268 +S"Chailli Seen in a Storm (Chailli: Effet d'orage)" +p149798 +sg25270 +S'Alphonse Legros' +p149799 +sg25273 +S'etching' +p149800 +sg25275 +S'unknown date\n' +p149801 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009df6.jpg' +p149802 +sg25267 +g27 +sa(dp149803 +g25268 +S'Man Watering a Horse (Homme abreuvant un cheval)' +p149804 +sg25270 +S'Alphonse Legros' +p149805 +sg25273 +S'etching' +p149806 +sg25275 +S'unknown date\n' +p149807 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e07.jpg' +p149808 +sg25267 +g27 +sa(dp149809 +g25268 +S"Sunrise (Lever du soleil: L'automne)" +p149810 +sg25270 +S'Alphonse Legros' +p149811 +sg25273 +S'etching in green ink' +p149812 +sg25275 +S'unknown date\n' +p149813 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e05.jpg' +p149814 +sg25267 +g27 +sa(dp149815 +g25268 +S'Top of the Hill (Le haut de la colline)' +p149816 +sg25270 +S'Alphonse Legros' +p149817 +sg25273 +S'drypoint and (etching?)' +p149818 +sg25275 +S'unknown date\n' +p149819 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e1a.jpg' +p149820 +sg25267 +g27 +sa(dp149821 +g25268 +S'Siesta in the Country (Sieste dans la campagne)' +p149822 +sg25270 +S'Alphonse Legros' +p149823 +sg25273 +S'drypoint and (etching?)' +p149824 +sg25275 +S'unknown date\n' +p149825 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e18.jpg' +p149826 +sg25267 +g27 +sa(dp149827 +g25273 +S'etching' +p149828 +sg25267 +g27 +sg25275 +S'1922' +p149829 +sg25268 +S'A Roman Madonna' +p149830 +sg25270 +S'Robert Sargent Austin' +p149831 +sa(dp149832 +g25268 +S"Little Burner of Grass (Le petit bruleur d'herbe)" +p149833 +sg25270 +S'Alphonse Legros' +p149834 +sg25273 +S'etching and drypoint' +p149835 +sg25275 +S'unknown date\n' +p149836 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d2f.jpg' +p149837 +sg25267 +g27 +sa(dp149838 +g25268 +S'Wash-house, called "The Washerwomen" (Le lavoir, dite "Les Laveuses")' +p149839 +sg25270 +S'Alphonse Legros' +p149840 +sg25273 +S'etching' +p149841 +sg25275 +S'unknown date\n' +p149842 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d4a.jpg' +p149843 +sg25267 +g27 +sa(dp149844 +g25273 +S'etching with drypoint' +p149845 +sg25267 +g27 +sg25275 +S'unknown date\n' +p149846 +sg25268 +S'Woodcutters, 2nd plate (Les bucherons)' +p149847 +sg25270 +S'Alphonse Legros' +p149848 +sa(dp149849 +g25268 +S'Large Spaniard (Le grand Espagnol)' +p149850 +sg25270 +S'Alphonse Legros' +p149851 +sg25273 +S'etching' +p149852 +sg25275 +S'unknown date\n' +p149853 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b1a.jpg' +p149854 +sg25267 +g27 +sa(dp149855 +g25268 +S'Portrait of a Man' +p149856 +sg25270 +S'Henryk Glicenstein' +p149857 +sg25273 +S'drypoint' +p149858 +sg25275 +S'unknown date\n' +p149859 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000de/a000dedd.jpg' +p149860 +sg25267 +g27 +sa(dp149861 +g25268 +S'Faraduro, Portugal' +p149862 +sg25270 +S'Leonid' +p149863 +sg25273 +S'oil on canvas' +p149864 +sg25275 +S'1952' +p149865 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000149.jpg' +p149866 +sg25267 +g27 +sa(dp149867 +g25273 +S'painted terracotta' +p149868 +sg25267 +g27 +sg25275 +S'second half 15th century' +p149869 +sg25268 +S'An Old Man' +p149870 +sg25270 +S'Florentine 15th Century' +p149871 +sa(dp149872 +g25268 +S'Beacon Rock, Newport Harbor' +p149873 +sg25270 +S'John Frederick Kensett' +p149874 +sg25273 +S'oil on canvas' +p149875 +sg25275 +S'1857' +p149876 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000133.jpg' +p149877 +sg25267 +g27 +sa(dp149878 +g25273 +S'etching' +p149879 +sg25267 +g27 +sg25275 +S'1925' +p149880 +sg25268 +S'Ponte Pietra, Verona' +p149881 +sg25270 +S'Robert Sargent Austin' +p149882 +sa(dp149883 +g25268 +S'The Holy Trinity' +p149884 +sg25270 +S'Artist Information (' +p149885 +sg25273 +g27 +sg25275 +S'(sculptor)' +p149886 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005bd6.jpg' +p149887 +sg25267 +g27 +sa(dp149888 +g25268 +S'Saint George and the Dragon' +p149889 +sg25270 +S'Artist Information (' +p149890 +sg25273 +g27 +sg25275 +S'(artist)' +p149891 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b27.jpg' +p149892 +sg25267 +S"English sculptors in the fourteenth and fifteenth centuries made extensive use of alabaster, a\nstone readily available in the British Isles, which they enlivened with polychromy. Much\nreligious sculpture was destroyed in England and elsewhere in iconoclastic attacks that\naccompanied the Protestant Reformation. This statuary group, fully carved both in front and\nback, is therefore a great rarity. Its survival no doubt owes much to the fact that it was preserved,\nfrom an unknown early date until after 1880, at the Dominican convent of San Juan at Quejana\nin the province of Alava, Spain.\n The sculptor has designed a saint who seems to tower over his elegantly curving horse as he\nplunges a lance (now mostly destroyed) into the resisting dragon. These figures are united in a\nwonderfully compact composition, with a graceful silhouette that survives in spite of important\nlosses like the head of the rescued princess, who holds the dragon by a leash made from her belt.\nNoteworthy is the sculptor's decision to carve the figures with large, smooth surfaces, leaving the\ntextures of chain mail, horse hair on the mane, and scales on the dragon to be applied in\npaint.\n " +p149893 +sa(dp149894 +g25268 +S'Samuel Henry Kress' +p149895 +sg25270 +S'Leopold Seyffert' +p149896 +sg25273 +S'oil on canvas' +p149897 +sg25275 +S'1953' +p149898 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000020e.jpg' +p149899 +sg25267 +S'Originally a Pennsylvania schoolteacher, \n Leopold Gould Seyffert depicted Samuel Kress and his brother \n \n ' +p149900 +sa(dp149901 +g25268 +S'Madonna and Child' +p149902 +sg25270 +S'Lucas Cranach the Elder' +p149903 +sg25273 +S'oil on panel' +p149904 +sg25275 +S'probably c. 1535 or after' +p149905 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005b0.jpg' +p149906 +sg25267 +S"Cranach, court painter to the dukes of Saxony, employed a highly sophisticated, stylized manner, evident here in the rich coloring and decorative folds of Mary's elaborate garments. On his knee Jesus balances an apple, symbolizing the Forbidden Fruit and implying that Christ will redeem humanity. He eats a grape from the bunch offered by his mother. These grapes and the glass on the parapet refer to the eucharistic wine of the Last Supper.\n " +p149907 +sa(dp149908 +g25268 +S'Head of a Young Man' +p149909 +sg25270 +S'Sir Anthony van Dyck' +p149910 +sg25273 +S'oil on paper on panel' +p149911 +sg25275 +S'c. 1617/1618' +p149912 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037b5.jpg' +p149913 +sg25267 +g27 +sa(dp149914 +g25268 +S'A Member of the de Hondecoeter Family [obverse]' +p149915 +sg25270 +S'Antwerp 16th Century' +p149916 +sg25273 +S'oil on panel' +p149917 +sg25275 +S'1543' +p149918 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000059b.jpg' +p149919 +sg25267 +g27 +sa(dp149920 +g25268 +S'Crested Coat of Arms [reverse]' +p149921 +sg25270 +S'Antwerp 16th Century' +p149922 +sg25273 +S'oil on panel' +p149923 +sg25275 +S'1543' +p149924 +sg25314 +S'http://www.nga.gov:80/thumb-l/a01751/a017518f.jpg' +p149925 +sg25267 +g27 +sa(dp149926 +g25268 +S'Wife of a Member of the de Hondecoeter Family' +p149927 +sg25270 +S'Antwerp 16th Century' +p149928 +sg25273 +S'oil on panel' +p149929 +sg25275 +S'1543' +p149930 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000059d.jpg' +p149931 +sg25267 +g27 +sa(dp149932 +g25268 +S'Portrait of a Man' +p149933 +sg25270 +S'Bartholomaeus Bruyn, the Elder' +p149934 +sg25273 +S', c. 1530/1540' +p149935 +sg25275 +S'\n' +p149936 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000537.jpg' +p149937 +sg25267 +g27 +sa(dp149938 +g25268 +S'Pfalzgraf Friedrich III' +p149939 +sg25270 +S'Peter Gertner' +p149940 +sg25273 +S'pen and brown ink over black chalk, with face and hands developed in oil (?) on vellum (?) laid on canvas' +p149941 +sg25275 +S'1539' +p149942 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007996.jpg' +p149943 +sg25267 +g27 +sa(dp149944 +g25273 +S'etching' +p149945 +sg25267 +g27 +sg25275 +S'1922' +p149946 +sg25268 +S'The Plough' +p149947 +sg25270 +S'Robert Sargent Austin' +p149948 +sa(dp149949 +g25268 +S'Maria Markgr\xc3\xa4fin zu Brandenburg' +p149950 +sg25270 +S'Peter Gertner' +p149951 +sg25273 +S'pen and brown ink over black chalk, with face and hands developed in oil (?) on vellum (?) laid on canvas' +p149952 +sg25275 +S'1539' +p149953 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007997.jpg' +p149954 +sg25267 +g27 +sa(dp149955 +g25268 +S'The Visit to the Spinner' +p149956 +sg25270 +S'Israhel van Meckenem' +p149957 +sg25273 +S'engraving' +p149958 +sg25275 +S'c. 1495/1503' +p149959 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c1a.jpg' +p149960 +sg25267 +g27 +sa(dp149961 +g25268 +S'Madonna and Child Standing with a Crescent' +p149962 +sg25270 +S'Albrecht Altdorfer' +p149963 +sg25273 +S'engraving' +p149964 +sg25275 +S'c. 1515/1518' +p149965 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a758.jpg' +p149966 +sg25267 +g27 +sa(dp149967 +g25268 +S'The Virgin and Child with the Pear' +p149968 +sg25270 +S'Albrecht D\xc3\xbcrer' +p149969 +sg25273 +S'engraving' +p149970 +sg25275 +S'1511' +p149971 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a939.jpg' +p149972 +sg25267 +g27 +sa(dp149973 +g25273 +S'oil on canvas' +p149974 +sg25267 +g27 +sg25275 +S'1801' +p149975 +sg25268 +S'Lucia Leonard' +p149976 +sg25270 +S'Luther Allen' +p149977 +sa(dp149978 +g25268 +S'Steamer "St. Lawrence"' +p149979 +sg25270 +S'James Bard' +p149980 +sg25273 +S'oil on canvas' +p149981 +sg25275 +S'1850' +p149982 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000000f.jpg' +p149983 +sg25267 +g27 +sa(dp149984 +g25268 +S'Clement Bonnell' +p149985 +sg25270 +S'William Bonnell' +p149986 +sg25273 +S'oil on wood' +p149987 +sg25275 +S'c. 1825' +p149988 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000029.jpg' +p149989 +sg25267 +g27 +sa(dp149990 +g25268 +S'Vermont Lawyer' +p149991 +sg25270 +S'Horace Bundy' +p149992 +sg25273 +S'oil on canvas' +p149993 +sg25275 +S'1841' +p149994 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000030.jpg' +p149995 +sg25267 +g27 +sa(dp149996 +g25268 +S'Charles H. Sisson' +p149997 +sg25270 +S'Joseph Goodhue Chandler' +p149998 +sg25273 +S'oil on canvas' +p149999 +sg25275 +S'1850' +p150000 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000047.jpg' +p150001 +sg25267 +g27 +sa(dp150002 +g25268 +S'Mrs. Phebe Houston' +p150003 +sg25270 +S'Elias V. Coe' +p150004 +sg25273 +S'oil on canvas' +p150005 +sg25275 +S'1837' +p150006 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000050.jpg' +p150007 +sg25267 +g27 +sa(dp150008 +g25273 +S'etching' +p150009 +sg25267 +g27 +sg25275 +S'1925' +p150010 +sg25268 +S'Charles Murray' +p150011 +sg25270 +S'Robert Sargent Austin' +p150012 +sa(dp150013 +g25268 +S'Salute to General Washington in New York Harbor' +p150014 +sg25270 +S'L.M. Cooke' +p150015 +sg25273 +S'oil on canvas' +p150016 +sg25275 +S'1901' +p150017 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000058.jpg' +p150018 +sg25267 +g27 +sa(dp150019 +g25268 +S'Family Portrait' +p150020 +sg25270 +S'Ralph Eleaser Whiteside Earl' +p150021 +sg25273 +S'oil on canvas' +p150022 +sg25275 +S'1804' +p150023 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000099.jpg' +p150024 +sg25267 +g27 +sa(dp150025 +g25273 +S'overall: 30.4 x 25 cm (11 15/16 x 9 13/16 in.)\r\nframed: 34.3 x 28.5 x 3.1 cm (13 1/2 x 11 1/4 x 1 1/4 in.)' +p150026 +sg25267 +g27 +sg25275 +S'\noil on wood' +p150027 +sg25268 +S'Profile Portrait of a Young Man' +p150028 +sg25270 +S'American 19th Century' +p150029 +sa(dp150030 +g25273 +S'overall: 30.4 x 25 cm (11 15/16 x 9 13/16 in.)\r\nframed: 34.3 x 28.9 x 3.8 cm (13 1/2 x 11 3/8 x 1 1/2 in.)' +p150031 +sg25267 +g27 +sg25275 +S'\noil on wood' +p150032 +sg25268 +S'Profile Portrait of a Young Lady' +p150033 +sg25270 +S'American 19th Century' +p150034 +sa(dp150035 +g25268 +S'Mr. Kline' +p150036 +sg25270 +S'Jacob Eichholtz' +p150037 +sg25273 +S'oil on wood' +p150038 +sg25275 +S'c. 1808' +p150039 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000a3.jpg' +p150040 +sg25267 +g27 +sa(dp150041 +g25268 +S'Jacob (?) Leman' +p150042 +sg25270 +S'Jacob Eichholtz' +p150043 +sg25273 +S'oil on wood' +p150044 +sg25275 +S'c. 1808' +p150045 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000a4.jpg' +p150046 +sg25267 +g27 +sa(dp150047 +g25268 +S'Joseph Leman' +p150048 +sg25270 +S'Jacob Eichholtz' +p150049 +sg25273 +S'oil on wood' +p150050 +sg25275 +S'c. 1808' +p150051 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000a5.jpg' +p150052 +sg25267 +g27 +sa(dp150053 +g25268 +S'Miss Leman' +p150054 +sg25270 +S'Jacob Eichholtz' +p150055 +sg25273 +S'oil on wood' +p150056 +sg25275 +S'c. 1808' +p150057 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000a6.jpg' +p150058 +sg25267 +g27 +sa(dp150059 +g25273 +S'etching' +p150060 +sg25267 +g27 +sg25275 +S'1924' +p150061 +sg25268 +S'Mendicanti' +p150062 +sg25270 +S'Robert Sargent Austin' +p150063 +sa(dp150064 +g25268 +S'Berks County Almshouse, 1878' +p150065 +sg25270 +S'Charles C. Hofmann' +p150066 +sg25273 +S'oil on zinc' +p150067 +sg25275 +S'1878' +p150068 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000ff.jpg' +p150069 +sg25267 +g27 +sa(dp150070 +g25268 +S'The Mounted Acrobats' +p150071 +sg25270 +S'American 19th Century' +p150072 +sg25273 +S'overall: 40.3 x 47.6 cm (15 7/8 x 18 3/4 in.)\r\nframed: 54.1 x 62 x 6 cm (21 5/16 x 24 7/16 x 2 3/8 in.)' +p150073 +sg25275 +S'\noil on wood' +p150074 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000430.jpg' +p150075 +sg25267 +g27 +sa(dp150076 +g25268 +S'Asa Benjamin' +p150077 +sg25270 +S'William Jennys' +p150078 +sg25273 +S'oil on canvas' +p150079 +sg25275 +S'1795' +p150080 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000119.jpg' +p150081 +sg25267 +g27 +sa(dp150082 +g25268 +S'Mrs. Asa Benjamin' +p150083 +sg25270 +S'William Jennys' +p150084 +sg25273 +S'oil on canvas' +p150085 +sg25275 +S'1795' +p150086 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000011a.jpg' +p150087 +sg25267 +g27 +sa(dp150088 +g25268 +S'Everard Benjamin' +p150089 +sg25270 +S'William Jennys' +p150090 +sg25273 +S'oil on canvas' +p150091 +sg25275 +S'1795' +p150092 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000011b.jpg' +p150093 +sg25267 +g27 +sa(dp150094 +g25268 +S'Portrait of a Black Man' +p150095 +sg25270 +S'American 19th Century' +p150096 +sg25273 +S'overall: 49.5 x 34.3 cm (19 1/2 x 13 1/2 in.)\r\nframed: 56 x 40.9 x 3.8 cm (22 1/16 x 16 1/8 x 1 1/2 in.)' +p150097 +sg25275 +S'\noil on wood' +p150098 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000450.jpg' +p150099 +sg25267 +g27 +sa(dp150100 +g25268 +S'Landscape with Churches' +p150101 +sg25270 +S'Charles C.E. Lermond' +p150102 +sg25273 +S'oil on wood (trapezoidal sleigh back)' +p150103 +sg25275 +S'c. 1890/1930' +p150104 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000014a.jpg' +p150105 +sg25267 +g27 +sa(dp150106 +g25268 +S'Girl in a Pink Dress' +p150107 +sg25270 +S'The Beardsley Limner' +p150108 +sg25273 +S'oil on canvas' +p150109 +sg25275 +S'c. 1790' +p150110 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000016.jpg' +p150111 +sg25267 +g27 +sa(dp150112 +g25268 +S'Berks County Almshouse, 1895' +p150113 +sg25270 +S'Louis Mader' +p150114 +sg25273 +S'oil on metal' +p150115 +sg25275 +S'1895' +p150116 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000154.jpg' +p150117 +sg25267 +g27 +sa(dp150118 +g25268 +S'Flax Scutching Bee' +p150119 +sg25270 +S'Linton Park' +p150120 +sg25273 +S'oil on bed ticking' +p150121 +sg25275 +S'1885' +p150122 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001a0.jpg' +p150123 +sg25267 +g27 +sa(dp150124 +g25273 +S'drypoint' +p150125 +sg25267 +g27 +sg25275 +S'1921' +p150126 +sg25268 +S'The Horse of Ostend' +p150127 +sg25270 +S'Robert Sargent Austin' +p150128 +sa(dp150129 +g25268 +S'The Burial' +p150130 +sg25270 +S'Linton Park' +p150131 +sg25273 +S'oil on canvas' +p150132 +sg25275 +S'c. 1890' +p150133 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001a1.jpg' +p150134 +sg25267 +g27 +sa(dp150135 +g25268 +S'Mr. Day' +p150136 +sg25270 +S'Ammi Phillips' +p150137 +sg25273 +S'oil on canvas' +p150138 +sg25275 +S'c. 1835' +p150139 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001b9.jpg' +p150140 +sg25267 +g27 +sa(dp150141 +g25268 +S'Mrs. Day' +p150142 +sg25270 +S'Ammi Phillips' +p150143 +sg25273 +S'oil on canvas' +p150144 +sg25275 +S'c. 1835' +p150145 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001ba.jpg' +p150146 +sg25267 +g27 +sa(dp150147 +g25268 +S'Henry Teller' +p150148 +sg25270 +S'Ammi Phillips' +p150149 +sg25273 +S'oil on canvas' +p150150 +sg25275 +S'c. 1835' +p150151 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001bb.jpg' +p150152 +sg25267 +g27 +sa(dp150153 +g25268 +S'Jane Storm Teller' +p150154 +sg25270 +S'Ammi Phillips' +p150155 +sg25273 +S'oil on canvas' +p150156 +sg25275 +S'c. 1835' +p150157 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001b8.jpg' +p150158 +sg25267 +g27 +sa(dp150159 +g25268 +S'Anna Maria Cumpston' +p150160 +sg25270 +S'Charles Peale Polk' +p150161 +sg25273 +S'oil on canvas' +p150162 +sg25275 +S'c. 1790' +p150163 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001c3.jpg' +p150164 +sg25267 +g27 +sa(dp150165 +g25268 +S'Master Cleeves' +p150166 +sg25270 +S'William Matthew Prior' +p150167 +sg25273 +S'aqueous medium on cardboard' +p150168 +sg25275 +S'1850' +p150169 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001d0.jpg' +p150170 +sg25267 +g27 +sa(dp150171 +g25268 +S'Bowl of Fruit' +p150172 +sg25270 +S'William Stearns' +p150173 +sg25273 +S'watercolor on velveteen (theorem painting)' +p150174 +sg25275 +S'c. 1830/1840' +p150175 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000224.jpg' +p150176 +sg25267 +g27 +sa(dp150177 +g25268 +S'Elizabeth Denison' +p150178 +sg25270 +S'Artist Information (' +p150179 +sg25273 +S'(painter)' +p150180 +sg25275 +S'\n' +p150181 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000077.jpg' +p150182 +sg25267 +g27 +sa(dp150183 +g25268 +S'Engagement between the "Monitor" and the "Merrimac"' +p150184 +sg25270 +S'J.G. Tanner' +p150185 +sg25273 +S'oil on canvas' +p150186 +sg25275 +S'1891 or after' +p150187 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000026f.jpg' +p150188 +sg25267 +g27 +sa(dp150189 +g25273 +S'engraving' +p150190 +sg25267 +g27 +sg25275 +S'1927' +p150191 +sg25268 +S'The Fisherman' +p150192 +sg25270 +S'Robert Sargent Austin' +p150193 +sa(dp150194 +g25268 +S'Woman in Red Arrowback Chair' +p150195 +sg25270 +S'American 19th Century' +p150196 +sg25273 +S'overall: 80 x 70.5 cm (31 1/2 x 27 3/4 in.)\r\nframed: 91.1 x 81.9 x 2.9 cm (35 7/8 x 32 1/4 x 1 1/8 in.)' +p150197 +sg25275 +S'\noil on canvas' +p150198 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000431.jpg' +p150199 +sg25267 +g27 +sa(dp150200 +g25273 +S'American, 1823 - 1900' +p150201 +sg25267 +g27 +sg25275 +S'(artist after)' +p150202 +sg25268 +S'Henry L. Wells' +p150203 +sg25270 +S'Artist Information (' +p150204 +sa(dp150205 +g25273 +S'oil on panel with carved wood relief' +p150206 +sg25267 +g27 +sg25275 +S'1863' +p150207 +sg25268 +S'The Two Brothers' +p150208 +sg25270 +S'W. Wheldon' +p150209 +sa(dp150210 +g25268 +S'Abraham Clark and His Children' +p150211 +sg25270 +S'J. H.' +p150212 +sg25273 +S'oil on wood' +p150213 +sg25275 +S'1822' +p150214 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000f6.jpg' +p150215 +sg25267 +g27 +sa(dp150216 +g25268 +S'Portrait of J. L.' +p150217 +sg25270 +S'Benjamin Greenleaf' +p150218 +sg25273 +S'reverse painting on glass' +p150219 +sg25275 +S'c. 1810/1818' +p150220 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000d0.jpg' +p150221 +sg25267 +g27 +sa(dp150222 +g25268 +S'Husband' +p150223 +sg25270 +S'Prior-Hamblin School' +p150224 +sg25273 +S'oil on cardboard' +p150225 +sg25275 +S'c. 1845' +p150226 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001d7.jpg' +p150227 +sg25267 +g27 +sa(dp150228 +g25268 +S'Daughter' +p150229 +sg25270 +S'Prior-Hamblin School' +p150230 +sg25273 +S'oil on cardboard' +p150231 +sg25275 +S'c. 1845' +p150232 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001d6.jpg' +p150233 +sg25267 +g27 +sa(dp150234 +g25268 +S'Sophia Burpee Conant' +p150235 +sg25270 +S'The Conant Limner' +p150236 +sg25273 +S'oil on canvas' +p150237 +sg25275 +S'c. 1813' +p150238 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000057.jpg' +p150239 +sg25267 +g27 +sa(dp150240 +g25268 +S'Catharine Hendrickson' +p150241 +sg25270 +S'Daniel Hendrickson' +p150242 +sg25273 +S', c. 1770' +p150243 +sg25275 +S'\n' +p150244 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000ed.jpg' +p150245 +sg25267 +g27 +sa(dp150246 +g25273 +S'overall: 38.4 x 29.2 cm (15 1/8 x 11 1/2 in.)\r\nframed: 41.4 x 35.2 cm (16 5/16 x 13 7/8 in.)' +p150247 +sg25267 +g27 +sg25275 +S'\nwatercolor, pen, and ink on silk' +p150248 +sg25268 +S'Maria' +p150249 +sg25270 +S'American 18th Century' +p150250 +sa(dp150251 +g25273 +S'etching' +p150252 +sg25267 +g27 +sg25275 +S'1922' +p150253 +sg25268 +S'Early Spring, Gloucestershire' +p150254 +sg25270 +S'Robert Sargent Austin' +p150255 +sa(dp150256 +g25268 +S'Sophia Mead' +p150257 +sg25270 +S'American 19th Century' +p150258 +sg25273 +S'overall: 76.5 x 63.8 cm (30 1/8 x 25 1/8 in.)\r\nframed: 92.7 x 80 x 5 cm (36 1/2 x 31 1/2 x 1 15/16 in.)' +p150259 +sg25275 +S'\noil on canvas' +p150260 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000432.jpg' +p150261 +sg25267 +g27 +sa(dp150262 +g25268 +S'Possibly Harlan Page' +p150263 +sg25270 +S'American 19th Century' +p150264 +sg25273 +S'overall: 59.1 x 48.9 cm (23 1/4 x 19 1/4 in.)\r\nframed: 72.7 x 63.5 x 6.9 cm (28 5/8 x 25 x 2 11/16 in.)' +p150265 +sg25275 +S'\noil on wood' +p150266 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000433.jpg' +p150267 +sg25267 +g27 +sa(dp150268 +g25268 +S'The Sargent Family' +p150269 +sg25270 +S'American 19th Century' +p150270 +sg25273 +S'overall: 97.2 x 127.8 cm (38 1/4 x 50 5/16 in.)\r\nframed: 111.1 x 142.2 x 7.3 cm (43 3/4 x 56 x 2 7/8 in.)' +p150271 +sg25275 +S'\noil on canvas' +p150272 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000451.jpg' +p150273 +sg25267 +g27 +sa(dp150274 +g25268 +S'Possibly William Sheldon' +p150275 +sg25270 +S'Asahel Powers' +p150276 +sg25273 +S'oil on wood' +p150277 +sg25275 +S'c. 1831' +p150278 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001c8.jpg' +p150279 +sg25267 +g27 +sa(dp150280 +g25268 +S'Possibly Mrs. William Sheldon' +p150281 +sg25270 +S'Asahel Powers' +p150282 +sg25273 +S'oil on wood' +p150283 +sg25275 +S'c. 1831' +p150284 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001c9.jpg' +p150285 +sg25267 +g27 +sa(dp150286 +g25268 +S'Joseph Slade' +p150287 +sg25270 +S'Ammi Phillips' +p150288 +sg25273 +S'oil on canvas' +p150289 +sg25275 +S'1816' +p150290 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001b6.jpg' +p150291 +sg25267 +g27 +sa(dp150292 +g25268 +S'Alsa Slade' +p150293 +sg25270 +S'Ammi Phillips' +p150294 +sg25273 +S'oil on canvas' +p150295 +sg25275 +S'1816' +p150296 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001b7.jpg' +p150297 +sg25267 +g27 +sa(dp150298 +g25268 +S'Hannah Fisher Stedman' +p150299 +sg25270 +S'Asahel Powers' +p150300 +sg25273 +S'oil on wood' +p150301 +sg25275 +S'1833' +p150302 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001ca.jpg' +p150303 +sg25267 +g27 +sa(dp150304 +g25268 +S'John Stone' +p150305 +sg25270 +S'Thomas Skynner' +p150306 +sg25273 +S'oil on canvas' +p150307 +sg25275 +S'c. 1845' +p150308 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000214.jpg' +p150309 +sg25267 +g27 +sa(dp150310 +g25268 +S'Eliza Welch Stone' +p150311 +sg25270 +S'Thomas Skynner' +p150312 +sg25273 +S'oil on canvas' +p150313 +sg25275 +S'c. 1845' +p150314 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000215.jpg' +p150315 +sg25267 +g27 +sa(dp150316 +g25273 +S'engraving' +p150317 +sg25267 +g27 +sg25275 +S'1929' +p150318 +sg25268 +S'Deer' +p150319 +sg25270 +S'Robert Sargent Austin' +p150320 +sa(dp150321 +g25268 +S'Charles Adams Wheeler' +p150322 +sg25270 +S'The Beardsley Limner' +p150323 +sg25273 +S'oil on canvas' +p150324 +sg25275 +S'c. 1790' +p150325 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000015.jpg' +p150326 +sg25267 +g27 +sa(dp150327 +g25268 +S'Baby in Blue' +p150328 +sg25270 +S'William Matthew Prior' +p150329 +sg25273 +S'oil on paper on panel' +p150330 +sg25275 +S'c. 1845' +p150331 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001d1.jpg' +p150332 +sg25267 +g27 +sa(dp150333 +g25268 +S'The Strawberry Girl' +p150334 +sg25270 +S'Ammi Phillips' +p150335 +sg25273 +S'oil on canvas' +p150336 +sg25275 +S'c. 1830' +p150337 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001bc.jpg' +p150338 +sg25267 +g27 +sa(dp150339 +g25268 +S'Boy in Blue' +p150340 +sg25270 +S'American 19th Century' +p150341 +sg25273 +S'overall: 111.4 x 70.5 cm (43 7/8 x 27 3/4 in.)\r\nframed: 122.2 x 81.8 x 5.1 cm (48 1/8 x 32 3/16 x 2 in.)' +p150342 +sg25275 +S'\noil on canvas' +p150343 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00050/a0005089.jpg' +p150344 +sg25267 +g27 +sa(dp150345 +g25268 +S'Brother and Sister' +p150346 +sg25270 +S'American 19th Century' +p150347 +sg25273 +S'overall: 127.2 x 101.6 cm (50 1/16 x 40 in.)\r\nframed: 140.3 x 114.9 x 6.3 cm (55 1/4 x 45 1/4 x 2 1/2 in.)' +p150348 +sg25275 +S'\noil on canvas' +p150349 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003fb.jpg' +p150350 +sg25267 +g27 +sa(dp150351 +g25273 +S'overall: 75.8 x 64.2 cm (29 13/16 x 25 1/4 in.)\r\nframed: 88.9 x 75.5 x 7.6 cm (35 x 29 3/4 x 3 in.)' +p150352 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p150353 +sg25268 +S'Little Miss Wyckoff' +p150354 +sg25270 +S'American 19th Century' +p150355 +sa(dp150356 +g25268 +S'Feeding the Bird' +p150357 +sg25270 +S'American 19th Century' +p150358 +sg25273 +S'overall: 56 x 43.2 cm (22 1/16 x 17 in.)\r\nframed: 63.2 x 51.1 x 4.1 cm (24 7/8 x 20 1/8 x 1 5/8 in.)' +p150359 +sg25275 +S'\noil on canvas' +p150360 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a000040b.jpg' +p150361 +sg25267 +g27 +sa(dp150362 +g25268 +S'Little Girl with Flower Basket' +p150363 +sg25270 +S'American 19th Century' +p150364 +sg25273 +S'overall: 35.6 x 26 cm (14 x 10 1/4 in.)\r\nframed: 39.3 x 30.4 x 2.5 cm (15 1/2 x 11 15/16 x 1 in.)' +p150365 +sg25275 +S'\noil on wood' +p150366 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a000042c.jpg' +p150367 +sg25267 +g27 +sa(dp150368 +g25273 +S'overall: 51.7 x 42.9 cm (20 3/8 x 16 7/8 in.)\r\nframed: 73.6 x 64.1 x 9.5 cm (29 x 25 1/4 x 3 3/4 in.)' +p150369 +sg25267 +g27 +sg25275 +S'\noil on wood' +p150370 +sg25268 +S'Little Girl with Doll' +p150371 +sg25270 +S'American 19th Century' +p150372 +sa(dp150373 +g25268 +S'Little Girl with Slate' +p150374 +sg25270 +S'Prior-Hamblin School' +p150375 +sg25273 +S'oil on canvas' +p150376 +sg25275 +S'c. 1845' +p150377 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001cf.jpg' +p150378 +sg25267 +g27 +sa(dp150379 +g25273 +S'engraving' +p150380 +sg25267 +g27 +sg25275 +S'1928' +p150381 +sg25268 +S'Daisies' +p150382 +sg25270 +S'Robert Sargent Austin' +p150383 +sa(dp150384 +g25268 +S'Boy with Toy Horse and Wagon' +p150385 +sg25270 +S'William Matthew Prior' +p150386 +sg25273 +S'oil on canvas' +p150387 +sg25275 +S'c. 1845' +p150388 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001d2.jpg' +p150389 +sg25267 +g27 +sa(dp150390 +g25268 +S'Blue Eyes' +p150391 +sg25270 +S'American 19th Century' +p150392 +sg25273 +S'overall (oval): 45.7 x 32.4 cm (18 x 12 3/4 in.)' +p150393 +sg25275 +S'\noil on wood' +p150394 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000420.jpg' +p150395 +sg25267 +g27 +sa(dp150396 +g25273 +S'overall: 18.2 x 12.1 cm (7 3/16 x 4 3/4 in.)\r\nframed: 30.4 x 23.5 x 2.5 cm (11 15/16 x 9 1/4 x 1 in.)' +p150397 +sg25267 +g27 +sg25275 +S'\noil on tin on fabric' +p150398 +sg25268 +S'On Exhibition' +p150399 +sg25270 +S'American 19th Century' +p150400 +sa(dp150401 +g25268 +S'Little Girl with Pet Rabbit' +p150402 +sg25270 +S'Sturtevant J. Hamblin' +p150403 +sg25273 +S'oil on paper on panel' +p150404 +sg25275 +S'c. 1845' +p150405 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000d5.jpg' +p150406 +sg25267 +g27 +sa(dp150407 +g25268 +S'Girl with Toy Rooster' +p150408 +sg25270 +S'American 19th Century' +p150409 +sg25273 +S'overall: 76.5 x 63.8 cm (30 1/8 x 25 1/8 in.)\r\nframed: 86.3 x 73 x 4.7 cm (34 x 28 3/4 x 1 7/8 in.)' +p150410 +sg25275 +S'\noil on canvas' +p150411 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000421.jpg' +p150412 +sg25267 +g27 +sa(dp150413 +g25273 +S'overall: 26.2 x 21 cm (10 5/16 x 8 1/4 in.)\r\nframed: 34.9 x 29.8 x 4.1 cm (13 3/4 x 11 3/4 x 1 5/8 in.)' +p150414 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p150415 +sg25268 +S'Little Girl in Blue Dress' +p150416 +sg25270 +S'American 19th Century' +p150417 +sa(dp150418 +g25273 +S'overall: 88.9 x 71.1 cm (35 x 28 in.)\r\nframed: 99.7 x 81.9 x 4.4 cm (39 1/4 x 32 1/4 x 1 3/4 in.)' +p150419 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p150420 +sg25268 +S'Lady Wearing Pearls' +p150421 +sg25270 +S'American 19th Century' +p150422 +sa(dp150423 +g25273 +S'overall: 22.9 x 17.7 cm (9 x 6 15/16 in.)\r\nframed: 28.5 x 22.8 x 3.1 cm (11 1/4 x 9 x 1 1/4 in.)' +p150424 +sg25267 +g27 +sg25275 +S'\noil on wood' +p150425 +sg25268 +S'The Blue Shawl' +p150426 +sg25270 +S'American 19th Century' +p150427 +sa(dp150428 +g25268 +S'At the Writing Table' +p150429 +sg25270 +S'American 18th Century' +p150430 +sg25273 +S'overall: 101.5 x 134.5 cm (39 15/16 x 52 15/16 in.)' +p150431 +sg25275 +S'\naqueous medium on canvas' +p150432 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005c/a0005cea.jpg' +p150433 +sg25267 +g27 +sa(dp150434 +g25268 +S'Old Man in Red Slat Back Chair' +p150435 +sg25270 +S'American 19th Century' +p150436 +sg25273 +S'overall: 80 x 70.5 cm (31 1/2 x 27 3/4 in.)\r\nframed: 90.1 x 80.6 x 3.8 cm (35 1/2 x 31 3/4 x 1 1/2 in.)' +p150437 +sg25275 +S'\noil on canvas' +p150438 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000434.jpg' +p150439 +sg25267 +g27 +sa(dp150440 +g25273 +S'etching' +p150441 +sg25267 +g27 +sg25275 +S'1925' +p150442 +sg25268 +S'The Cowherd' +p150443 +sg25270 +S'Robert Sargent Austin' +p150444 +sa(dp150445 +g25273 +S'overall: 76.2 x 63 cm (30 x 24 13/16 in.)\r\nframed: 99 x 84.4 x 9.5 cm (39 x 33 1/4 x 3 3/4 in.)' +p150446 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p150447 +sg25268 +S'Chief Jumper of the Seminoles' +p150448 +sg25270 +S'American 19th Century' +p150449 +sa(dp150450 +g25268 +S'The Colonel' +p150451 +sg25270 +S'American 19th Century' +p150452 +sg25273 +S'overall (oval): 53.1 x 40 cm (20 7/8 x 15 3/4 in.)' +p150453 +sg25275 +S'\noil on wood' +p150454 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a000040c.jpg' +p150455 +sg25267 +g27 +sa(dp150456 +g25273 +S'overall: 92 x 73.5 cm (36 1/4 x 28 15/16 in.)\r\nframed: 104.4 x 86.3 x 5.7 cm (41 1/8 x 34 x 2 1/4 in.)' +p150457 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p150458 +sg25268 +S'The Letter' +p150459 +sg25270 +S'American 19th Century' +p150460 +sa(dp150461 +g25268 +S'Samuel Griffin' +p150462 +sg25270 +S'William Dunlap' +p150463 +sg25273 +S', c. 1809' +p150464 +sg25275 +S'\n' +p150465 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000082.jpg' +p150466 +sg25267 +g27 +sa(dp150467 +g25268 +S'Textile Merchant' +p150468 +sg25270 +S'American 19th Century' +p150469 +sg25273 +S'overall: 86.3 x 66 cm (34 x 26 in.)\r\nframed: 105.4 x 85.7 x 5 cm (41 1/2 x 33 3/4 x 1 15/16 in.)' +p150470 +sg25275 +S'\noil on canvas' +p150471 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a000045e.jpg' +p150472 +sg25267 +g27 +sa(dp150473 +g25268 +S'Profile Portrait of a Man' +p150474 +sg25270 +S'American 19th Century' +p150475 +sg25273 +S'overall: 22.7 x 17.4 cm (8 15/16 x 6 7/8 in.)\r\nframed: 26.5 x 22.5 x 2.5 cm (10 7/16 x 8 7/8 x 1 in.)' +p150476 +sg25275 +S'\noil on wood' +p150477 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000452.jpg' +p150478 +sg25267 +g27 +sa(dp150479 +g25268 +S'Profile Portrait of a Lady' +p150480 +sg25270 +S'American 19th Century' +p150481 +sg25273 +S'overall: 22.9 x 17.5 cm (9 x 6 7/8 in.)\r\nframed: 26.5 x 22.3 x 3.3 cm (10 7/16 x 8 3/4 x 1 5/16 in.)' +p150482 +sg25275 +S'\noil on wood' +p150483 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000453.jpg' +p150484 +sg25267 +g27 +sa(dp150485 +g25273 +S'overall: 46.7 x 36 cm (18 3/8 x 14 3/16 in.)\r\nframed: 59 x 48.4 x 2.8 cm (23 1/4 x 19 1/16 x 1 1/8 in.)' +p150486 +sg25267 +g27 +sg25275 +S'\noil on wood' +p150487 +sg25268 +S'Anonymous Man' +p150488 +sg25270 +S'American 19th Century' +p150489 +sa(dp150490 +g25273 +S'overall: 46.8 x 36.1 cm (18 7/16 x 14 3/16 in.)\r\nframed: 59 x 48.4 x 3 cm (23 1/4 x 19 1/16 x 1 3/16 in.)' +p150491 +sg25267 +g27 +sg25275 +S'\noil on wood' +p150492 +sg25268 +S'Anonymous Woman' +p150493 +sg25270 +S'American 19th Century' +p150494 +sa(dp150495 +g25268 +S"Attack on Bunker's Hill, with the Burning of Charles Town" +p150496 +sg25270 +S'American 18th Century' +p150497 +sg25273 +S'overall: 53.3 x 70.8 cm (21 x 27 7/8 in.)\r\nframed: 60.3 x 77.4 x 3.8 cm (23 3/4 x 30 1/2 x 1 1/2 in.)' +p150498 +sg25275 +S'\noil on canvas' +p150499 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003fc.jpg' +p150500 +sg25267 +g27 +sa(dp150501 +g25273 +S'etching and drypoint' +p150502 +sg25267 +g27 +sg25275 +S'1929' +p150503 +sg25268 +S'Child in Bed' +p150504 +sg25270 +S'Robert Sargent Austin' +p150505 +sa(dp150506 +g25268 +S'New England Farm in Winter' +p150507 +sg25270 +S'American 19th Century' +p150508 +sg25273 +S'overall: 59.7 x 97.8 cm (23 1/2 x 38 1/2 in.)\r\nframed: 78.1 x 115.6 x 6.6 cm (30 3/4 x 45 1/2 x 2 5/8 in.)' +p150509 +sg25275 +S'\noil on canvas' +p150510 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000435.jpg' +p150511 +sg25267 +g27 +sa(dp150512 +g25268 +S'Lexington Battle Monument' +p150513 +sg25270 +S'American 19th Century' +p150514 +sg25273 +S'overall: 70.4 x 78.1 cm (27 11/16 x 30 3/4 in.)\r\nframed: 82.2 x 90.5 x 5.1 cm (32 3/8 x 35 5/8 x 2 in.)' +p150515 +sg25275 +S'\noil on canvas' +p150516 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a000043e.jpg' +p150517 +sg25267 +g27 +sa(dp150518 +g25268 +S'A View of Mount Vernon' +p150519 +sg25270 +S'American 18th Century' +p150520 +sg25273 +S'image: 58.4 x 89.2 cm (23 x 35 1/8 in.)\r\nunframed (entire fireboard): 95.3 x 109.5 cm (37 1/2 x 43 1/8 in.)' +p150521 +sg25275 +S'\noil on canvas' +p150522 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000454.jpg' +p150523 +sg25267 +g27 +sa(dp150524 +g25268 +S"Imaginary Regatta of America's Cup Winners" +p150525 +sg25270 +S'American 19th Century' +p150526 +sg25273 +S'overall: 67.8 x 119 cm (26 11/16 x 46 7/8 in.)\r\nframed: 80.6 x 131.4 x 5 cm (31 3/4 x 51 3/4 x 1 15/16 in.)' +p150527 +sg25275 +S'\noil on canvas' +p150528 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000423.jpg' +p150529 +sg25267 +g27 +sa(dp150530 +g25268 +S'Christ and the Woman of Samaria' +p150531 +sg25270 +S'American 18th Century' +p150532 +sg25273 +S'overall: 51.5 x 66.4 cm (20 1/4 x 26 1/8 in.)\r\nframed: 60.9 x 75.5 x 3.8 cm (24 x 29 3/4 x 1 1/2 in.)' +p150533 +sg25275 +S'\noil on canvas' +p150534 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6a6.jpg' +p150535 +sg25267 +g27 +sa(dp150536 +g25268 +S'Young Man on a Terrace' +p150537 +sg25270 +S'American 18th Century' +p150538 +sg25273 +S'overall: 51.5 x 66 cm (20 1/4 x 26 in.)\r\nframed: 57.8 x 73 x 4.4 cm (22 3/4 x 28 3/4 x 1 3/4 in.)' +p150539 +sg25275 +S'\noil on canvas' +p150540 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000455.jpg' +p150541 +sg25267 +g27 +sa(dp150542 +g25268 +S'Mahantango Valley Farm' +p150543 +sg25270 +S'American 19th Century' +p150544 +sg25273 +S'overall: 71.1 x 92.2 cm (28 x 36 5/16 in.)\r\nframed: 85.1 x 106 x 5.3 cm (33 1/2 x 41 3/4 x 2 1/16 in.)' +p150545 +sg25275 +S'\noil on window shade' +p150546 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000436.jpg' +p150547 +sg25267 +g27 +sa(dp150548 +g25268 +S'Farmhouse in Mahantango Valley' +p150549 +sg25270 +S'American 19th Century' +p150550 +sg25273 +S'overall: 75 x 72.1 cm (29 1/2 x 28 3/8 in.)\r\nframed: 90.1 x 89.2 x 5.5 cm (35 1/2 x 35 1/8 x 2 3/16 in.)' +p150551 +sg25275 +S'\noil on canvas' +p150552 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000570.jpg' +p150553 +sg25267 +g27 +sa(dp150554 +g25268 +S'The Trotter' +p150555 +sg25270 +S'Charles S. Humphreys' +p150556 +sg25273 +S'oil on canvas' +p150557 +sg25275 +S'c. 1860' +p150558 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000010b.jpg' +p150559 +sg25267 +g27 +sa(dp150560 +g25273 +S'oil on canvas' +p150561 +sg25267 +g27 +sg25275 +S'second half 19th century' +p150562 +sg25268 +S'Retriever' +p150563 +sg25270 +S'O. G.' +p150564 +sa(dp150565 +g25273 +S'etching and drypoint' +p150566 +sg25267 +g27 +sg25275 +S'1929' +p150567 +sg25268 +S'Child in Bed' +p150568 +sg25270 +S'Robert Sargent Austin' +p150569 +sa(dp150570 +g25273 +S'overall: 75.6 x 100.7 cm (29 3/4 x 39 5/8 in.)\r\nframed: 89.2 x 114.3 x 4.7 cm (35 1/8 x 45 x 1 7/8 in.)' +p150571 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p150572 +sg25268 +S'Coon Hunt' +p150573 +sg25270 +S'American 19th Century' +p150574 +sa(dp150575 +g25268 +S'The Start of the Hunt' +p150576 +sg25270 +S'American 19th Century' +p150577 +sg25273 +S'overall: 88.1 x 139.1 cm (34 11/16 x 54 3/4 in.)\r\nframed: 113.7 x 164.8 x 3.8 cm (44 3/4 x 64 7/8 x 1 1/2 in.)' +p150578 +sg25275 +S'\noil on canvas' +p150579 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000425.jpg' +p150580 +sg25267 +g27 +sa(dp150581 +g25268 +S'The End of the Hunt' +p150582 +sg25270 +S'American 19th Century' +p150583 +sg25273 +S'overall: 87.6 x 136.8 cm (34 1/2 x 53 7/8 in.)\r\nframed: 114 x 162.2 x 3.9 cm (44 7/8 x 63 7/8 x 1 9/16 in.)' +p150584 +sg25275 +S'\noil on canvas' +p150585 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a000040d.jpg' +p150586 +sg25267 +g27 +sa(dp150587 +g25268 +S'Under Full Sail' +p150588 +sg25270 +S'American 19th Century' +p150589 +sg25273 +S'image: 65.7 x 52.7 cm (25 7/8 x 20 3/4 in.)\r\nframed: 83.8 x 75 cm (33 x 29 1/2 in.)' +p150590 +sg25275 +S'\noil and casein (?) on plaster and lath' +p150591 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a000044f.jpg' +p150592 +sg25267 +g27 +sa(dp150593 +g25268 +S'Flowers and Fruit' +p150594 +sg25270 +S'American 19th Century' +p150595 +sg25273 +S'overall (picture surface): 75.5 x 56 cm (29 3/4 x 22 1/16 in.)\r\noverall (size if unfolded edge flattened): 76 x 57.4 cm (29 15/16 x 22 5/8 in.)\r\nframed: 87 x 67.9 x 4.1 cm (34 1/4 x 26 3/4 x 1 5/8 in.)' +p150596 +sg25275 +S'\noil on canvas' +p150597 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000409.jpg' +p150598 +sg25267 +g27 +sa(dp150599 +g25268 +S'Pink Roses' +p150600 +sg25270 +S'American 19th Century' +p150601 +sg25273 +S'overall: 40.7 x 36.5 cm (16 x 14 3/8 in.)\r\nframed: 53.6 x 49.8 x 3.9 cm (21 1/8 x 19 5/8 x 1 9/16 in.)' +p150602 +sg25275 +S'\noil on canvas' +p150603 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a000043d.jpg' +p150604 +sg25267 +g27 +sa(dp150605 +g25268 +S'Basket of Fruit' +p150606 +sg25270 +S'American 19th Century' +p150607 +sg25273 +S'overall: 40.6 x 48.4 cm (16 x 19 1/16 in.)\r\nframed: 49.5 x 57.6 x 2.8 cm (19 1/2 x 22 11/16 x 1 1/8 in.)' +p150608 +sg25275 +S'\nwatercolor on velveteen (theorem painting)' +p150609 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000056f.jpg' +p150610 +sg25267 +g27 +sa(dp150611 +g25268 +S'Fruit on a Tray' +p150612 +sg25270 +S'American 19th Century' +p150613 +sg25273 +S'overall: 42.6 x 54 cm (16 3/4 x 21 1/4 in.)\r\nframed: 49.5 x 60.6 x 2.8 cm (19 1/2 x 23 7/8 x 1 1/8 in.)' +p150614 +sg25275 +S'\nwatercolor on velveteen (theorem painting)' +p150615 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a000040a.jpg' +p150616 +sg25267 +g27 +sa(dp150617 +g25273 +S'overall: 45.1 x 65.4 cm (17 3/4 x 25 3/4 in.)\r\nframed: 52.4 x 72.7 x 3.4 cm (20 5/8 x 28 5/8 x 1 5/16 in.)' +p150618 +sg25267 +g27 +sg25275 +S'\nwatercolor on velveteen (theorem painting)' +p150619 +sg25268 +S'Peaches - Still Life' +p150620 +sg25270 +S'American 19th Century' +p150621 +sa(dp150622 +g25268 +S'William Henry Vining' +p150623 +sg25270 +S'George M. Miller' +p150624 +sg25273 +S'painted wax on glass' +p150625 +sg25275 +S'c. 1810' +p150626 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000169.jpg' +p150627 +sg25267 +g27 +sa(dp150628 +g25273 +S'etching' +p150629 +sg25267 +g27 +sg25275 +S'1923' +p150630 +sg25268 +S'The Blind Beggar of Tivoli' +p150631 +sg25270 +S'Robert Sargent Austin' +p150632 +sa(dp150633 +g25268 +S'Deer and Squirrels' +p150634 +sg25270 +S'American 18th Century' +p150635 +sg25273 +S'overall: 19.7 x 30.2 cm (7 3/4 x 11 7/8 in.)' +p150636 +sg25275 +S'\nembroidery: dyed wool on linen' +p150637 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d43.jpg' +p150638 +sg25267 +g27 +sa(dp150639 +g25273 +S'pen and black ink with watercolor' +p150640 +sg25267 +g27 +sg25275 +S'1851' +p150641 +sg25268 +S'Penmanship of Three Equestriennes' +p150642 +sg25270 +S'F.H. Foot' +p150643 +sa(dp150644 +g25273 +S'watercolor' +p150645 +sg25267 +g27 +sg25275 +S'unknown date\n' +p150646 +sg25268 +S'Madonna and Child Visiting the Family of John the Baptist' +p150647 +sg25270 +S'John Landis' +p150648 +sa(dp150649 +g25273 +S'pen, brown ink, and watercolor on paper' +p150650 +sg25267 +g27 +sg25275 +S'c. 1780/1785' +p150651 +sg25268 +S'Pair of Birds' +p150652 +sg25270 +S'Heinrich Otto' +p150653 +sa(dp150654 +g25273 +S'watercolor' +p150655 +sg25267 +g27 +sg25275 +S'1811' +p150656 +sg25268 +S'Memorial to Giles Petibone [sic]' +p150657 +sg25270 +S'Susan Pettibone' +p150658 +sa(dp150659 +g25268 +S'Mother and Child' +p150660 +sg25270 +S'Eunice Pinney' +p150661 +sg25273 +S'pen and black ink and watercolor' +p150662 +sg25275 +S'c. 1815' +p150663 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4c6.jpg' +p150664 +sg25267 +g27 +sa(dp150665 +g25273 +S'pen and brown ink and watercolor with five applied pieces of paper' +p150666 +sg25267 +g27 +sg25275 +S'unknown date\n' +p150667 +sg25268 +S'Horse, Man and Bird' +p150668 +sg25270 +S'J.W. Sawin' +p150669 +sa(dp150670 +g25273 +S'sight size: 49.7 x 60 cm (19 9/16 x 23 5/8 in.)\r\nframed: 57.4 x 67.3 cm (22 5/8 x 26 1/2 in.)' +p150671 +sg25267 +g27 +sg25275 +S'\npen and ink with watercolor' +p150672 +sg25268 +S'Adieu, Poor Luckless Maiden' +p150673 +sg25270 +S'American 19th Century' +p150674 +sa(dp150675 +g25273 +S'watercolor and graphite' +p150676 +sg25267 +g27 +sg25275 +S'1807' +p150677 +sg25268 +S'Captain William Thackera' +p150678 +sg25270 +S'John Archibald Woodside I' +p150679 +sa(dp150680 +g25273 +S'watercolor and graphite' +p150681 +sg25267 +g27 +sg25275 +S'1807' +p150682 +sg25268 +S'Mrs. Thackera' +p150683 +sg25270 +S'John Archibald Woodside I' +p150684 +sa(dp150685 +g25273 +S'engraving' +p150686 +sg25267 +g27 +sg25275 +S'1929' +p150687 +sg25268 +S'The Belfry' +p150688 +sg25270 +S'Robert Sargent Austin' +p150689 +sa(dp150690 +g25273 +S'watercolor and graphite' +p150691 +sg25267 +g27 +sg25275 +S'1807' +p150692 +sg25268 +S'Master Thackera' +p150693 +sg25270 +S'John Archibald Woodside I' +p150694 +sa(dp150695 +g25273 +S'watercolor and graphite' +p150696 +sg25267 +g27 +sg25275 +S'1807' +p150697 +sg25268 +S'Portrait of a Young Lady with Black Hair' +p150698 +sg25270 +S'John Archibald Woodside I' +p150699 +sa(dp150700 +g25273 +S'watercolor and graphite' +p150701 +sg25267 +g27 +sg25275 +S'1807' +p150702 +sg25268 +S'Portrait of a Young Man with Sideburns' +p150703 +sg25270 +S'John Archibald Woodside I' +p150704 +sa(dp150705 +g25273 +S'watercolor and graphite' +p150706 +sg25267 +g27 +sg25275 +S'1807' +p150707 +sg25268 +S'Portrait of a Young Lady with Brown Hair and Necklace' +p150708 +sg25270 +S'John Archibald Woodside I' +p150709 +sa(dp150710 +g25273 +S'watercolor and graphite' +p150711 +sg25267 +g27 +sg25275 +S'1807' +p150712 +sg25268 +S'Portrait of a Woman in a Lace Cap with a Pink Ribbon' +p150713 +sg25270 +S'John Archibald Woodside I' +p150714 +sa(dp150715 +g25273 +S'watercolor and graphite' +p150716 +sg25267 +g27 +sg25275 +S'1807' +p150717 +sg25268 +S'Portrait of a Woman in a Lace Cap with a Blue Ribbon' +p150718 +sg25270 +S'John Archibald Woodside I' +p150719 +sa(dp150720 +g25273 +S'sight size: 43.3 x 58.5 cm (17 1/16 x 23 1/16 in.)\r\nframed: 59 x 74.3 x 2.8 cm (23 1/4 x 29 1/4 x 1 1/8 in.)' +p150721 +sg25267 +g27 +sg25275 +S'\nwatercolor' +p150722 +sg25268 +S'Moses Rescued from the Bulrushes' +p150723 +sg25270 +S'American 19th Century' +p150724 +sa(dp150725 +g25268 +S'Woman Holding a Rose' +p150726 +sg25270 +S'American 19th Century' +p150727 +sg25273 +S'sight size: 29.2 x 23.1 cm (11 1/2 x 9 1/8 in.)\r\nframed: 33.8 x 25.7 x 1.2 cm (13 5/16 x 10 1/8 x 1/2 in.)' +p150728 +sg25275 +S'\nwatercolor and cut paper border' +p150729 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063aa.jpg' +p150730 +sg25267 +g27 +sa(dp150731 +g25273 +S'sight size: 26.7 x 19 cm (10 1/2 x 7 1/2 in.)\r\nframed: 36.2 x 28.5 cm (14 1/4 x 11 1/4 in.)' +p150732 +sg25267 +g27 +sg25275 +S'\npen and ink with watercolor' +p150733 +sg25268 +S'Mr. Gill of Cabbage Hill, Lancaster Co., Pennsylvania' +p150734 +sg25270 +S'American 19th Century' +p150735 +sa(dp150736 +g25273 +S'Overall: 25.1 x 19.8 cm (9 7/8 x 7 13/16 in.)\r\nframed: 27.9 x 22.8 x 1.5 cm (11 x 9 x 9/16 in.)' +p150737 +sg25267 +g27 +sg25275 +S'\npen and brown ink and watercolor' +p150738 +sg25268 +S'Birth Certificate of Catherine Hartman' +p150739 +sg25270 +S'American 19th Century' +p150740 +sa(dp150741 +g25273 +S'engraving' +p150742 +sg25267 +g27 +sg25275 +S'1926' +p150743 +sg25268 +S'Before Mass' +p150744 +sg25270 +S'Robert Sargent Austin' +p150745 +sa(dp150746 +g25273 +S'sight size: 24 x 18.8 cm (9 7/16 x 7 3/8 in.)\r\nframed: 27.9 x 22.8 x 2.2 cm (11 x 9 x 7/8 in.)' +p150747 +sg25267 +g27 +sg25275 +S'\npen and brown ink with watercolor' +p150748 +sg25268 +S'Birth Certificate of Christopher M. Hartman' +p150749 +sg25270 +S'American 19th Century' +p150750 +sa(dp150751 +g25273 +S'sight size: 15.7 x 8.4 cm (6 3/16 x 3 5/16 in.)\r\nframed: 19.2 x 12.3 cm (7 9/16 x 4 13/16 in.)' +p150752 +sg25267 +g27 +sg25275 +S'\nwatercolor over graphite' +p150753 +sg25268 +S'J.W. Lester' +p150754 +sg25270 +S'American 19th Century' +p150755 +sa(dp150756 +g25273 +S'sight size: 17 x 8.8 cm (6 11/16 x 3 7/16 in.)\r\nframed: 21.2 x 13 cm (8 3/8 x 5 1/8 in.)' +p150757 +sg25267 +g27 +sg25275 +S'\nwatercolor over graphite' +p150758 +sg25268 +S'Elonor Lester' +p150759 +sg25270 +S'American 19th Century' +p150760 +sa(dp150761 +g25273 +S'sight size: 32.3 x 24 cm (12 11/16 x 9 7/16 in.)\r\nframed: 40 x 31.7 cm (15 3/4 x 12 1/2 in.)' +p150762 +sg25267 +g27 +sg25275 +S'\nwatercolor with crayon and graphite' +p150763 +sg25268 +S'Samuel C. Stevens' +p150764 +sg25270 +S'American 19th Century' +p150765 +sa(dp150766 +g25273 +S'sight size: 32 x 54.2 cm (12 5/8 x 21 5/16 in.)\r\nframed: 40 x 61.6 cm (15 3/4 x 24 1/4 in.)' +p150767 +sg25267 +g27 +sg25275 +S'\nsilhouette and watercolor' +p150768 +sg25268 +S'The Ladies Converse' +p150769 +sg25270 +S'American 19th Century' +p150770 +sa(dp150771 +g25273 +S'sight size: 43.2 x 56.6 cm (17 x 22 5/16 in.)\r\nframed: 52.4 x 65.7 x 28.2 cm (20 5/8 x 25 7/8 x 11 1/8 in.)' +p150772 +sg25267 +g27 +sg25275 +S'\nwatercolor and pinprick' +p150773 +sg25268 +S'Family Group by the Seaside' +p150774 +sg25270 +S'American 19th Century' +p150775 +sa(dp150776 +g25273 +S', c. 1830' +p150777 +sg25267 +g27 +sg25275 +S'\n' +p150778 +sg25268 +S'Man with Gray-Striped Vest' +p150779 +sg25270 +S'Samuel Addison Shute' +p150780 +sa(dp150781 +g25273 +S', c. 1830' +p150782 +sg25267 +g27 +sg25275 +S'\n' +p150783 +sg25268 +S'Lady in Pink with Tortoise-Shell Combs' +p150784 +sg25270 +S'Samuel Addison Shute' +p150785 +sa(dp150786 +g25268 +S'Bear in Tree' +p150787 +sg25270 +S'American 19th Century' +p150788 +sg25273 +S'Overall (approximate): 22.3 x 37 cm (8 3/4 x 14 9/16 in.)\r\nsupport: 22.7 x 37.2 cm (8 15/16 x 14 5/8 in.)\r\nframed: 27.3 x 41.9 cm (10 3/4 x 16 1/2 in.)' +p150789 +sg25275 +S'\nstencil and watercolor' +p150790 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000089f.jpg' +p150791 +sg25267 +g27 +sa(dp150792 +g25273 +S'sight size: 42 x 55.5 cm (16 9/16 x 21 7/8 in.)\r\nframed: 53.9 x 67.3 x 4.4 cm (21 1/4 x 26 1/2 x 1 3/4 in.)' +p150793 +sg25267 +g27 +sg25275 +S'\nwatercolor' +p150794 +sg25268 +S'Clipper Ship in a Heavy Sea' +p150795 +sg25270 +S'American 19th Century' +p150796 +sa(dp150797 +g25273 +S'pen and black ink with brush and gray ink and graphite' +p150798 +sg25267 +g27 +sg25275 +S'c. 1924' +p150799 +sg25268 +S'The Angel of Saint Matthew, Orvieto' +p150800 +sg25270 +S'Robert Sargent Austin' +p150801 +sa(dp150802 +g25273 +S'overall: 44.4 x 60 cm (17 1/2 x 23 5/8 in.)' +p150803 +sg25267 +g27 +sg25275 +S'\nwatercolor on paper mounted on wood' +p150804 +sg25268 +S'In Memoriam - Column at Left' +p150805 +sg25270 +S'American 19th Century' +p150806 +sa(dp150807 +g25273 +S'sight size: 40 x 52.5 cm (15 3/4 x 20 11/16 in.)\r\nframed: 49.3 x 62 x 3 cm (19 7/16 x 24 7/16 x 1 3/16 in.)' +p150808 +sg25267 +g27 +sg25275 +S'\nwatercolor' +p150809 +sg25268 +S'Platter with Cut Watermelon and Fruit' +p150810 +sg25270 +S'American 19th Century' +p150811 +sa(dp150812 +g25268 +S'Dancing Children' +p150813 +sg25270 +S'Jane Palmer' +p150814 +sg25273 +S'watercolor on wove paper' +p150815 +sg25275 +S'1782' +p150816 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e479.jpg' +p150817 +sg25267 +g27 +sa(dp150818 +g25268 +S'Mother and Daughter' +p150819 +sg25270 +S'Eunice Pinney' +p150820 +sg25273 +S'pen and brown ink and watercolor over graphite on laid paper' +p150821 +sg25275 +S'unknown date\n' +p150822 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4c7.jpg' +p150823 +sg25267 +g27 +sa(dp150824 +g25268 +S'Mother and Three Children Making a Floral Wreath' +p150825 +sg25270 +S'American 19th Century' +p150826 +sg25273 +S'sheet: 30.5 ? 35.6 cm (12 ? 14 in.)' +p150827 +sg25275 +S'\nwatercolor' +p150828 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e485.jpg' +p150829 +sg25267 +g27 +sa(dp150830 +g25268 +S'Woman and Boy with Provisions' +p150831 +sg25270 +S'American 19th Century' +p150832 +sg25273 +S'sight size: 23.8 x 16.8 cm (9 3/8 x 6 5/8 in.)' +p150833 +sg25275 +S'\nwatercolor' +p150834 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e487.jpg' +p150835 +sg25267 +g27 +sa(dp150836 +g25273 +S'overall: 37.7 x 30 cm (14 13/16 x 11 13/16 in.)' +p150837 +sg25267 +g27 +sg25275 +S'\npastel' +p150838 +sg25268 +S'Baby with Locket' +p150839 +sg25270 +S'American 19th Century' +p150840 +sa(dp150841 +g25268 +S'Baby in Pink Dress with Roses' +p150842 +sg25270 +S'American 19th Century' +p150843 +sg25273 +S'sight size: 44 x 34 cm (17 5/16 x 13 3/8 in.)\r\nframed: 51.6 x 46.5 x 2.8 cm (20 5/16 x 18 5/16 x 1 1/8 in.)' +p150844 +sg25275 +S'\nwatercolor' +p150845 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063a8.jpg' +p150846 +sg25267 +g27 +sa(dp150847 +g25273 +S'Overall: 13 x 10.9 cm (5 1/8 x 4 5/16 in.)\r\nsupport: 13.9 x 11.7 cm (5 1/2 x 4 5/8 in.)' +p150848 +sg25267 +g27 +sg25275 +S'\nwatercolor' +p150849 +sg25268 +S'Lady in Black Dress' +p150850 +sg25270 +S'American 19th Century' +p150851 +sa(dp150852 +g25268 +S'Woman with Plumed Hat' +p150853 +sg25270 +S'American 19th Century' +p150854 +sg25273 +S'sheet: 29 ? 19.3 cm (11 7/16 ? 7 5/8 in.)' +p150855 +sg25275 +S'\nwatercolor' +p150856 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e486.jpg' +p150857 +sg25267 +g27 +sa(dp150858 +g25273 +S'etching' +p150859 +sg25267 +g27 +sg25275 +S'1922' +p150860 +sg25268 +S'Autumn' +p150861 +sg25270 +S'Robert Sargent Austin' +p150862 +sa(dp150863 +g25273 +S'sight size: 39.5 x 54 cm (15 9/16 x 21 1/4 in.)\r\nframed: 49.3 x 61.6 x 4.7 cm (19 7/16 x 24 1/4 x 1 7/8 in.)' +p150864 +sg25267 +g27 +sg25275 +S'\npastel on sandpaper' +p150865 +sg25268 +S'The Wharf at Mystic' +p150866 +sg25270 +S'American 19th Century' +p150867 +sa(dp150868 +g25268 +S'The "Beautiful Virgin" of Ratisbon in a Landscape' +p150869 +sg25270 +S'Albrecht Altdorfer' +p150870 +sg25273 +S'engraving' +p150871 +sg25275 +S'c. 1519/1520' +p150872 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a76e.jpg' +p150873 +sg25267 +g27 +sa(dp150874 +g25268 +S'Mississippi Bear' +p150875 +sg25270 +S'Antoine-Louis Barye' +p150876 +sg25273 +S'lithograph' +p150877 +sg25275 +S'1836' +p150878 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a0009033.jpg' +p150879 +sg25267 +g27 +sa(dp150880 +g25268 +S'Anne 1921' +p150881 +sg25270 +S'George Bellows' +p150882 +sg25273 +S'lithograph' +p150883 +sg25275 +S'1923' +p150884 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fc/a000fc4c.jpg' +p150885 +sg25267 +g27 +sa(dp150886 +g25273 +S'lithograph' +p150887 +sg25267 +g27 +sg25275 +S'1951' +p150888 +sg25268 +S'Voice of the Turtle' +p150889 +sg25270 +S'Alfred Bendiner' +p150890 +sa(dp150891 +g25273 +S'lithograph' +p150892 +sg25267 +g27 +sg25275 +S'1950' +p150893 +sg25268 +S'Paris 2,000 Years Later' +p150894 +sg25270 +S'Alfred Bendiner' +p150895 +sa(dp150896 +g25273 +S'lithograph' +p150897 +sg25267 +g27 +sg25275 +S'1950' +p150898 +sg25268 +S'Cafe de la Jeunesse Perdue' +p150899 +sg25270 +S'Alfred Bendiner' +p150900 +sa(dp150901 +g25268 +S'Woman Having Supper' +p150902 +sg25270 +S'Georges Bottini' +p150903 +sg25273 +S'etching' +p150904 +sg25275 +S'1903' +p150905 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a000911c.jpg' +p150906 +sg25267 +g27 +sa(dp150907 +g25268 +S'The Sagot Address' +p150908 +sg25270 +S'Georges Bottini' +p150909 +sg25273 +S'colored lithograph' +p150910 +sg25275 +S'1898' +p150911 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005da5.jpg' +p150912 +sg25267 +g27 +sa(dp150913 +g25273 +S'engraving' +p150914 +sg25267 +g27 +sg25275 +S'1928' +p150915 +sg25268 +S'Alice Lush' +p150916 +sg25270 +S'Robert Sargent Austin' +p150917 +sa(dp150918 +g25268 +S'Willows and White Poplars (Saules et peupliers blancs)' +p150919 +sg25270 +S'Jean-Baptiste-Camille Corot' +p150920 +sg25273 +S'lithograph' +p150921 +sg25275 +S'1871' +p150922 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f30.jpg' +p150923 +sg25267 +g27 +sa(dp150924 +g25268 +S'The Rest on the Flight into Egypt' +p150925 +sg25270 +S'Lucas Cranach the Elder' +p150926 +sg25273 +S'woodcut' +p150927 +sg25275 +S'c. 1520' +p150928 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0ab.jpg' +p150929 +sg25267 +g27 +sa(dp150930 +g25268 +S'A droite ou a gauche?' +p150931 +sg25270 +S'Honor\xc3\xa9 Daumier' +p150932 +sg25273 +S'lithograph' +p150933 +sg25275 +S'1866' +p150934 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094ec.jpg' +p150935 +sg25267 +g27 +sa(dp150936 +g25268 +S'G\xc3\xa9n\xc3\xa9ral P. Mendez Vigo' +p150937 +sg25270 +S'Honor\xc3\xa9 Daumier' +p150938 +sg25273 +S'lithograph' +p150939 +sg25275 +S'probably 1836' +p150940 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000920d.jpg' +p150941 +sg25267 +g27 +sa(dp150942 +g25268 +S"Mariage de l'\xc3\x89poque et du Constitutionnel" +p150943 +sg25270 +S'Honor\xc3\xa9 Daumier' +p150944 +sg25273 +S'lithograph' +p150945 +sg25275 +S'1846' +p150946 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000938d.jpg' +p150947 +sg25267 +g27 +sa(dp150948 +g25268 +S"Vous n'avez pas besoin de me rappeler ses titres..." +p150949 +sg25270 +S'Honor\xc3\xa9 Daumier' +p150950 +sg25273 +S'lithograph' +p150951 +sg25275 +S'1871' +p150952 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009555.jpg' +p150953 +sg25267 +g27 +sa(dp150954 +g25268 +S'Charm\xc3\xa9 de se voir expos\xc3\xa9...' +p150955 +sg25270 +S'Honor\xc3\xa9 Daumier' +p150956 +sg25273 +S'lithograph' +p150957 +sg25275 +S'1841' +p150958 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009298.jpg' +p150959 +sg25267 +g27 +sa(dp150960 +g25268 +S"Tiens, ma femme, v'la mon portrait..." +p150961 +sg25270 +S'Honor\xc3\xa9 Daumier' +p150962 +sg25273 +S'lithograph' +p150963 +sg25275 +S'1846' +p150964 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009395.jpg' +p150965 +sg25267 +g27 +sa(dp150966 +g25268 +S"Je n'ai jamais tant ri qu'a l'enterrement de la fille a Bourdin..." +p150967 +sg25270 +S'Honor\xc3\xa9 Daumier' +p150968 +sg25273 +S'lithograph' +p150969 +sg25275 +S'1862' +p150970 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094db.jpg' +p150971 +sg25267 +g27 +sa(dp150972 +g25273 +S'graphite with brown wash' +p150973 +sg25267 +g27 +sg25275 +S'1926' +p150974 +sg25268 +S'Woman of Scanno' +p150975 +sg25270 +S'Robert Sargent Austin' +p150976 +sa(dp150977 +g25268 +S"Voila une femme qui, a l'heure solennelle..." +p150978 +sg25270 +S'Honor\xc3\xa9 Daumier' +p150979 +sg25273 +S'lithograph' +p150980 +sg25275 +S'1848' +p150981 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000940e.jpg' +p150982 +sg25267 +g27 +sa(dp150983 +g25268 +S'Avons saisi dito... un pot a eau, sans eau' +p150984 +sg25270 +S'Honor\xc3\xa9 Daumier' +p150985 +sg25273 +S'lithograph' +p150986 +sg25275 +S'1845' +p150987 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000932e.jpg' +p150988 +sg25267 +g27 +sa(dp150989 +g25268 +S"Faut-y faire une lettre pour l'attendrir?" +p150990 +sg25270 +S'Honor\xc3\xa9 Daumier' +p150991 +sg25273 +S'lithograph' +p150992 +sg25275 +S'1845' +p150993 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005786.jpg' +p150994 +sg25267 +g27 +sa(dp150995 +g25268 +S'Un Avocat qui est... rempli de la conviction... intime...' +p150996 +sg25270 +S'Honor\xc3\xa9 Daumier' +p150997 +sg25273 +S'lithograph' +p150998 +sg25275 +S'1845' +p150999 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057f2.jpg' +p151000 +sg25267 +g27 +sa(dp151001 +g25268 +S'Allons donc, chers confr\xc3\xa8res...' +p151002 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151003 +sg25273 +S'lithograph' +p151004 +sg25275 +S'1845' +p151005 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057f3.jpg' +p151006 +sg25267 +g27 +sa(dp151007 +g25268 +S'Comme je vous ai dit vertement votre fait!' +p151008 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151009 +sg25273 +S'lithograph' +p151010 +sg25275 +S'1845' +p151011 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009339.jpg' +p151012 +sg25267 +g27 +sa(dp151013 +g25268 +S"Vous m'avez injuri\xc3\xa9 dans votre plaidoirie..." +p151014 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151015 +sg25273 +S'lithograph' +p151016 +sg25275 +S'1845' +p151017 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000933a.jpg' +p151018 +sg25267 +g27 +sa(dp151019 +g25268 +S'Et parlant a sa porti\xc3\xa8re ainsi d\xc3\xa9clar\xc3\xa9e...' +p151020 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151021 +sg25273 +S'lithograph' +p151022 +sg25275 +S'1845' +p151023 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057f4.jpg' +p151024 +sg25267 +g27 +sa(dp151025 +g25268 +S'Oui, on veut d\xc3\xa9pouiller cet orphelin...' +p151026 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151027 +sg25273 +S'lithograph' +p151028 +sg25275 +S'1845' +p151029 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009338.jpg' +p151030 +sg25267 +g27 +sa(dp151031 +g25268 +S"Et dire que voila trois... pr\xc3\xa9venu que je n'ai pas pu faire condamner!..." +p151032 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151033 +sg25273 +S'lithograph' +p151034 +sg25275 +S'1845' +p151035 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057f5.jpg' +p151036 +sg25267 +g27 +sa(dp151037 +g25268 +S'Old Man Standing under Tree' +p151038 +sg25270 +S'Sebald Beham' +p151039 +sg25273 +S'pen and brown ink' +p151040 +sg25275 +S'1520' +p151041 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a000795b.jpg' +p151042 +sg25267 +g27 +sa(dp151043 +g25268 +S'Dites donc, confr\xc3\xa8re, vous allez soutenir...' +p151044 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151045 +sg25273 +S'lithograph' +p151046 +sg25275 +S'1845' +p151047 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009335.jpg' +p151048 +sg25267 +g27 +sa(dp151049 +g25268 +S"Vous aviez faim... ce n'est pas une raison..." +p151050 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151051 +sg25273 +S'lithograph' +p151052 +sg25275 +S'1845' +p151053 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009336.jpg' +p151054 +sg25267 +g27 +sa(dp151055 +g25268 +S"Mr. l'avocat a rendu pleine justice..." +p151056 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151057 +sg25273 +S'lithograph' +p151058 +sg25275 +S'1846' +p151059 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009337.jpg' +p151060 +sg25267 +g27 +sa(dp151061 +g25268 +S'Voyons t\xc3\xa9moin il serait important de...' +p151062 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151063 +sg25273 +S'lithograph' +p151064 +sg25275 +S'1846' +p151065 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000933e.jpg' +p151066 +sg25267 +g27 +sa(dp151067 +g25268 +S"Maitre Chapotard lisant... l'\xc3\xa9loge de lui-m\xc3\xaame..." +p151068 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151069 +sg25273 +S'lithograph' +p151070 +sg25275 +S'1846' +p151071 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057f6.jpg' +p151072 +sg25267 +g27 +sa(dp151073 +g25268 +S"Ce qui m'chiffonne c'est... douze vols!..." +p151074 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151075 +sg25273 +S'lithograph' +p151076 +sg25275 +S'1846' +p151077 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009342.jpg' +p151078 +sg25267 +g27 +sa(dp151079 +g25268 +S'Mon cher monsieur... impossible de plaider votre affaire' +p151080 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151081 +sg25273 +S'lithograph' +p151082 +sg25275 +S'1846' +p151083 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057f7.jpg' +p151084 +sg25267 +g27 +sa(dp151085 +g25268 +S'Voila le minist\xc3\xa8re public qui vous dit des choses... d\xc3\xa9sagr\xc3\xa9ables...' +p151086 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151087 +sg25273 +S'lithograph' +p151088 +sg25275 +S'1846' +p151089 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057f8.jpg' +p151090 +sg25267 +g27 +sa(dp151091 +g25268 +S"Il d\xc3\xa9fend l'orphelin et la veuve, a moins..." +p151092 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151093 +sg25273 +S'lithograph' +p151094 +sg25275 +S'1846' +p151095 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009343.jpg' +p151096 +sg25267 +g27 +sa(dp151097 +g25268 +S"Au Caf\xc3\xa9 d'Aguesseau" +p151098 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151099 +sg25273 +S'lithograph' +p151100 +sg25275 +S'1846' +p151101 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009340.jpg' +p151102 +sg25267 +g27 +sa(dp151103 +g25273 +S'woodcut' +p151104 +sg25267 +g27 +sg25275 +S'unknown date\n' +p151105 +sg25268 +S'The Fountain of Youth [one of 4 sheets]' +p151106 +sg25270 +S'Sebald Beham' +p151107 +sa(dp151108 +g25268 +S'Quel dommage que cette charmante... femme...' +p151109 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151110 +sg25273 +S'lithograph' +p151111 +sg25275 +S'1846' +p151112 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009341.jpg' +p151113 +sg25267 +g27 +sa(dp151114 +g25268 +S'Mr. le Juge de paix a rendu sa d\xc3\xa9cision...' +p151115 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151116 +sg25273 +S'lithograph' +p151117 +sg25275 +S'1846' +p151118 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000934e.jpg' +p151119 +sg25267 +g27 +sa(dp151120 +g25268 +S'Un Plaideur peu satisfait' +p151121 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151122 +sg25273 +S'lithograph' +p151123 +sg25275 +S'1846' +p151124 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009347.jpg' +p151125 +sg25267 +g27 +sa(dp151126 +g25268 +S'Un D\xc3\xa9fenseur... causant... dans son cabinet habituel' +p151127 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151128 +sg25273 +S'lithograph' +p151129 +sg25275 +S'1846' +p151130 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009348.jpg' +p151131 +sg25267 +g27 +sa(dp151132 +g25268 +S"Ainsi donc, quoique j'vous avoue..." +p151133 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151134 +sg25273 +S'lithograph' +p151135 +sg25275 +S'1846' +p151136 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009346.jpg' +p151137 +sg25267 +g27 +sa(dp151138 +g25268 +S'Plaidez... \xc3\xa7a sera un bon tour a jouer...' +p151139 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151140 +sg25273 +S'lithograph' +p151141 +sg25275 +S'1846' +p151142 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000934f.jpg' +p151143 +sg25267 +g27 +sa(dp151144 +g25268 +S'Laissez dire un peu de mal de vous...' +p151145 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151146 +sg25273 +S'lithograph' +p151147 +sg25275 +S'1847' +p151148 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009349.jpg' +p151149 +sg25267 +g27 +sa(dp151150 +g25268 +S'Une P\xc3\xa9roraison a la D\xc3\xa9mosth\xc3\xa8ne' +p151151 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151152 +sg25273 +S'lithograph' +p151153 +sg25275 +S'1847' +p151154 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009358.jpg' +p151155 +sg25267 +g27 +sa(dp151156 +g25268 +S'Encore perdu en Cour Royale... et il se lamente...' +p151157 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151158 +sg25273 +S'lithograph' +p151159 +sg25275 +S'1848' +p151160 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009356.jpg' +p151161 +sg25267 +g27 +sa(dp151162 +g25268 +S"Vous avez perdu votre proc\xc3\xa8s c'est vrai..." +p151163 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151164 +sg25273 +S'lithograph' +p151165 +sg25275 +S'1848' +p151166 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057f9.jpg' +p151167 +sg25267 +g27 +sa(dp151168 +g25268 +S'Saint John the Baptist' +p151169 +sg25270 +S'Jacopo del Sellaio' +p151170 +sg25273 +S'oil on panel' +p151171 +sg25275 +S'c. 1480' +p151172 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b03.jpg' +p151173 +sg25267 +S"Small devotional images such as this were produced in large numbers by \r\n craftsmen and lesser-known artists for the homes of Florence's middle \r\n class. These artists often filled in at leading workshops when extra \r\n assistants were needed for important commissions. We know, for example, \r\n that Jacopo worked with Filippo Lippi, Ghirlandaio, and Botticelli.\n This painting reflects the concerns of Florentine merchants and their \r\n pride in the city. John the Baptist was the patron saint of Florence, and \r\n we see him here before the city skyline. Clear in the distant landscape are \r\n the Palazzo Vecchio, center of the city administration; Brunelleschi's huge \r\n cathedral dome; and the campanile designed by \n " +p151174 +sa(dp151175 +g25268 +S'Saint Sebald' +p151176 +sg25270 +S'Sebald Beham' +p151177 +sg25273 +S'engraving' +p151178 +sg25275 +S'1521' +p151179 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a800.jpg' +p151180 +sg25267 +g27 +sa(dp151181 +g25268 +S'Grand escalier du Palais de justice. Vue de face' +p151182 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151183 +sg25273 +S'lithograph' +p151184 +sg25275 +S'1848' +p151185 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009354.jpg' +p151186 +sg25267 +g27 +sa(dp151187 +g25268 +S'Il parait... que mon gaillard est un grand sc\xc3\xa9l\xc3\xa9rat...' +p151188 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151189 +sg25273 +S'lithograph' +p151190 +sg25275 +S'1848' +p151191 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009350.jpg' +p151192 +sg25267 +g27 +sa(dp151193 +g25268 +S'Il parait... que mon gaillard est un grand sc\xc3\xa9l\xc3\xa9rat...' +p151194 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151195 +sg25273 +S'lithograph' +p151196 +sg25275 +S'1848' +p151197 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009352.jpg' +p151198 +sg25267 +g27 +sa(dp151199 +g25268 +S'Vous \xc3\xaates jolie...' +p151200 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151201 +sg25273 +S'lithograph' +p151202 +sg25275 +S'1848' +p151203 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009355.jpg' +p151204 +sg25267 +g27 +sa(dp151205 +g25268 +S"Oh! quant a la vue, vous ne trouverez pas mieux qu'ici!" +p151206 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151207 +sg25273 +S'lithograph' +p151208 +sg25275 +S'1847' +p151209 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093df.jpg' +p151210 +sg25267 +g27 +sa(dp151211 +g25268 +S'Nourri dans le s\xc3\xa9raii...' +p151212 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151213 +sg25273 +S'lithograph' +p151214 +sg25275 +S'1841' +p151215 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000928c.jpg' +p151216 +sg25267 +g27 +sa(dp151217 +g25268 +S'Sortez!... (Bajazet)' +p151218 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151219 +sg25273 +S'lithograph' +p151220 +sg25275 +S'1841' +p151221 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000929d.jpg' +p151222 +sg25267 +g27 +sa(dp151223 +g25268 +S'Va faire... admirer ta fureur...' +p151224 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151225 +sg25273 +S'lithograph' +p151226 +sg25275 +S'1841' +p151227 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000928b.jpg' +p151228 +sg25267 +g27 +sa(dp151229 +g25268 +S'Soyez donc poli... i...' +p151230 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151231 +sg25273 +S'lithograph' +p151232 +sg25275 +S'1839' +p151233 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009258.jpg' +p151234 +sg25267 +g27 +sa(dp151235 +g25268 +S"Je n'm\xc3\xa9tonne pas si les femmes ont... du go\xc3\xbbt..." +p151236 +sg25270 +S'Honor\xc3\xa9 Daumier' +p151237 +sg25273 +S'lithograph' +p151238 +sg25275 +S'1848' +p151239 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009400.jpg' +p151240 +sg25267 +g27 +sa(dp151241 +g25268 +S'Dance of the Gods of Love' +p151242 +sg25270 +S'Sebald Beham' +p151243 +sg25273 +S'etching' +p151244 +sg25275 +S'unknown date\n' +p151245 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8e5.jpg' +p151246 +sg25267 +g27 +sa(dp151247 +g25268 +S'Alphonse Hirsch' +p151248 +sg25270 +S'Edgar Degas' +p151249 +sg25273 +S'drypoint and aquatint' +p151250 +sg25275 +S'1875' +p151251 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009802.jpg' +p151252 +sg25267 +g27 +sa(dp151253 +g25268 +S'At the Cafe des Ambassadeurs (Aux Ambassadeurs)' +p151254 +sg25270 +S'Edgar Degas' +p151255 +sg25273 +S'etching, aquatint, and drypoint' +p151256 +sg25275 +S'c. 1877' +p151257 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009594.jpg' +p151258 +sg25267 +g27 +sa(dp151259 +g25268 +S'Hercules Conquering Cacus ("Ercules")' +p151260 +sg25270 +S'Albrecht D\xc3\xbcrer' +p151261 +sg25273 +S'woodcut' +p151262 +sg25275 +S'c. 1496' +p151263 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b23a.jpg' +p151264 +sg25267 +g27 +sa(dp151265 +g25268 +S'The Turkish Family' +p151266 +sg25270 +S'Albrecht D\xc3\xbcrer' +p151267 +sg25273 +S'engraving' +p151268 +sg25275 +S'c. 1495/1496' +p151269 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a982.jpg' +p151270 +sg25267 +g27 +sa(dp151271 +g25273 +S'color lithograph' +p151272 +sg25267 +g27 +sg25275 +S'unknown date\n' +p151273 +sg25268 +S'Two Sisters' +p151274 +sg25270 +S'Valdemar Hansen Elenbaas' +p151275 +sa(dp151276 +g25273 +S'woodcut on Kochi japanese paper' +p151277 +sg25267 +g27 +sg25275 +S'1952' +p151278 +sg25268 +S'Day and Night' +p151279 +sg25270 +S'Antonio Frasconi' +p151280 +sa(dp151281 +g25268 +S'A Maori Woman in a Forest; Manao Tupapau (She is Haunted by a Spirit)' +p151282 +sg25270 +S'Paul Gauguin' +p151283 +sg25273 +S'woodcut in black [trial proof]' +p151284 +sg25275 +S'1894/1895' +p151285 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a85.jpg' +p151286 +sg25267 +g27 +sa(dp151287 +g25273 +S'color lithograph' +p151288 +sg25267 +g27 +sg25275 +S'1951' +p151289 +sg25268 +S'Fiesta' +p151290 +sg25270 +S'Emilio Amero' +p151291 +sa(dp151292 +g25268 +S'The Piper' +p151293 +sg25270 +S'Th\xc3\xa9odore Gericault' +p151294 +sg25273 +S'lithograph' +p151295 +sg25275 +S'1821' +p151296 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009ab2.jpg' +p151297 +sg25267 +g27 +sa(dp151298 +g25268 +S'Ni asi la distingue (Even Thus He Cannot Make Her Out)' +p151299 +sg25270 +S'Francisco de Goya' +p151300 +sg25273 +S'etching, aquatint and drypoint [working proof]' +p151301 +sg25275 +S'in or before 1799' +p151302 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a0005807.jpg' +p151303 +sg25267 +g27 +sa(dp151304 +g25268 +S'Trajan' +p151305 +sg25270 +S'Sebald Beham' +p151306 +sg25273 +S'engraving' +p151307 +sg25275 +S'1546' +p151308 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a845.jpg' +p151309 +sg25267 +g27 +sa(dp151310 +g25268 +S'Ya van desplumados (There They Go Plucked)' +p151311 +sg25270 +S'Francisco de Goya' +p151312 +sg25273 +S'etching, burnished aquatint and drypoint [working proof, before letters]' +p151313 +sg25275 +S'1797/1798' +p151314 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed5d.jpg' +p151315 +sg25267 +g27 +sa(dp151316 +g25268 +S'Al Conde Palatino (To the Count Palatine)' +p151317 +sg25270 +S'Francisco de Goya' +p151318 +sg25273 +S'etching, aquatint, drypoint and burin [working proof]' +p151319 +sg25275 +S'in or before 1799' +p151320 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed61.jpg' +p151321 +sg25267 +g27 +sa(dp151322 +g25268 +S'La filiacion (The Filiation)' +p151323 +sg25270 +S'Francisco de Goya' +p151324 +sg25273 +S'etching and aquatint [working proof]' +p151325 +sg25275 +S'in or before 1799' +p151326 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed62.jpg' +p151327 +sg25267 +g27 +sa(dp151328 +g25268 +S'View of Antwerp' +p151329 +sg25270 +S'Wenceslaus Hollar' +p151330 +sg25273 +S'pen and brown ink on laid paper' +p151331 +sg25275 +S'unknown date\n' +p151332 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a5b.jpg' +p151333 +sg25267 +g27 +sa(dp151334 +g25268 +S'The Adoration of the Magi' +p151335 +sg25270 +S'Wolf Huber' +p151336 +sg25273 +S'woodcut' +p151337 +sg25275 +S'unknown date\n' +p151338 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000aca2.jpg' +p151339 +sg25267 +g27 +sa(dp151340 +g25268 +S'The Circumcision' +p151341 +sg25270 +S'Wolf Huber' +p151342 +sg25273 +S'woodcut' +p151343 +sg25275 +S'unknown date\n' +p151344 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000aca0.jpg' +p151345 +sg25267 +g27 +sa(dp151346 +g25268 +S'The Presentation in the Temple' +p151347 +sg25270 +S'Wolf Huber' +p151348 +sg25273 +S'woodcut' +p151349 +sg25275 +S'unknown date\n' +p151350 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000aca1.jpg' +p151351 +sg25267 +g27 +sa(dp151352 +g25268 +S'Still Life' +p151353 +sg25270 +S'Roger de La Fresnaye' +p151354 +sg25273 +S'graphite and pen and white ink on brown paper' +p151355 +sg25275 +S'probably 1920' +p151356 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007026.jpg' +p151357 +sg25267 +g27 +sa(dp151358 +g25268 +S'Self-Portrait' +p151359 +sg25270 +S'Jean-\xc3\x89tienne Liotard' +p151360 +sg25273 +S'roulette and engraving over mezzotint' +p151361 +sg25275 +S'1778/1780' +p151362 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000efd1.jpg' +p151363 +sg25267 +g27 +sa(dp151364 +g25273 +S'American, 1922 - 1998' +p151365 +sg25267 +g27 +sg25275 +S'(printer)' +p151366 +sg25268 +S'Milkweed' +p151367 +sg25270 +S'Artist Information (' +p151368 +sa(dp151369 +g25268 +S'Domitia Calvilla' +p151370 +sg25270 +S'Sebald Beham' +p151371 +sg25273 +S'engraving' +p151372 +sg25275 +S'1546' +p151373 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a844.jpg' +p151374 +sg25267 +g27 +sa(dp151375 +g25268 +S'The Fall of Man' +p151376 +sg25270 +S'Lucas van Leyden' +p151377 +sg25273 +S'engraving' +p151378 +sg25275 +S'in or before 1508' +p151379 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce48.jpg' +p151380 +sg25267 +g27 +sa(dp151381 +g25273 +S'color lithograph' +p151382 +sg25267 +g27 +sg25275 +S'unknown date\n' +p151383 +sg25268 +S'Masked Pheasant (Faisan masque)' +p151384 +sg25270 +S'Jean Lur\xc3\xa7at' +p151385 +sa(dp151386 +g25268 +S'At the Caf\xc3\xa9 (Au caf\xc3\xa9)' +p151387 +sg25270 +S'Edouard Manet' +p151388 +sg25273 +S'transfer lithograph' +p151389 +sg25275 +S'1869' +p151390 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00010/a000106f.jpg' +p151391 +sg25267 +g27 +sa(dp151392 +g25268 +S'Berthe Morisot' +p151393 +sg25270 +S'Edouard Manet' +p151394 +sg25273 +S'lithograph' +p151395 +sg25275 +S'1872' +p151396 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a000587f.jpg' +p151397 +sg25267 +g27 +sa(dp151398 +g25268 +S'Stag Hunt' +p151399 +sg25270 +S'Master H.W.G.' +p151400 +sg25273 +S'woodcut' +p151401 +sg25275 +S'unknown date\n' +p151402 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acb0.jpg' +p151403 +sg25267 +g27 +sa(dp151404 +g25273 +S'lithograph' +p151405 +sg25267 +g27 +sg25275 +S'1925/1926' +p151406 +sg25268 +S'Dix Danseuses IX' +p151407 +sg25270 +S'Henri Matisse' +p151408 +sa(dp151409 +g25273 +S'portfolio with ten lithographs' +p151410 +sg25267 +g27 +sg25275 +S'published 1927' +p151411 +sg25268 +S'Dix Danseuses' +p151412 +sg25270 +S'Henri Matisse' +p151413 +sa(dp151414 +g25273 +S'lithograph' +p151415 +sg25267 +g27 +sg25275 +S'1925/1926' +p151416 +sg25268 +S'Dix Danseuses X' +p151417 +sg25270 +S'Henri Matisse' +p151418 +sa(dp151419 +g25273 +S'lithograph' +p151420 +sg25267 +g27 +sg25275 +S'1925/1926' +p151421 +sg25268 +S'Dix Danseuses V' +p151422 +sg25270 +S'Henri Matisse' +p151423 +sa(dp151424 +g25273 +S'lithograph' +p151425 +sg25267 +g27 +sg25275 +S'1925/1926' +p151426 +sg25268 +S'Dix Danseuses III' +p151427 +sg25270 +S'Henri Matisse' +p151428 +sa(dp151429 +g25268 +S'The Rape of Helena' +p151430 +sg25270 +S'Sebald Beham' +p151431 +sg25273 +S'engraving' +p151432 +sg25275 +S'unknown date\n' +p151433 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7fa.jpg' +p151434 +sg25267 +g27 +sa(dp151435 +g25273 +S'lithograph' +p151436 +sg25267 +g27 +sg25275 +S'1925/1926' +p151437 +sg25268 +S'Dix Danseuses I' +p151438 +sg25270 +S'Henri Matisse' +p151439 +sa(dp151440 +g25273 +S'lithograph' +p151441 +sg25267 +g27 +sg25275 +S'1925/1926' +p151442 +sg25268 +S'Dix Danseuses VI' +p151443 +sg25270 +S'Henri Matisse' +p151444 +sa(dp151445 +g25273 +S'lithograph' +p151446 +sg25267 +g27 +sg25275 +S'1925/1926' +p151447 +sg25268 +S'Dix Danseuses VIII' +p151448 +sg25270 +S'Henri Matisse' +p151449 +sa(dp151450 +g25273 +S'lithograph' +p151451 +sg25267 +g27 +sg25275 +S'1925/1926' +p151452 +sg25268 +S'Dix Danseuses II' +p151453 +sg25270 +S'Henri Matisse' +p151454 +sa(dp151455 +g25273 +S'lithograph' +p151456 +sg25267 +g27 +sg25275 +S'1925/1926' +p151457 +sg25268 +S'Dix Danseuses IV' +p151458 +sg25270 +S'Henri Matisse' +p151459 +sa(dp151460 +g25273 +S'lithograph' +p151461 +sg25267 +g27 +sg25275 +S'1925/1926' +p151462 +sg25268 +S'Dix Danseuses VII' +p151463 +sg25270 +S'Henri Matisse' +p151464 +sa(dp151465 +g25268 +S'Evening (La viellee)' +p151466 +sg25270 +S'Jean-Fran\xc3\xa7ois Millet' +p151467 +sg25273 +S'etching' +p151468 +sg25275 +S'1856' +p151469 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000994c.jpg' +p151470 +sg25267 +g27 +sa(dp151471 +g25268 +S'Nude' +p151472 +sg25270 +S'Berthe Morisot' +p151473 +sg25273 +S'drypoint [reprinted by Ambroise Vollard]' +p151474 +sg25275 +S'1888/1890' +p151475 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d99.jpg' +p151476 +sg25267 +g27 +sa(dp151477 +g25268 +S'Little Girl with Cat' +p151478 +sg25270 +S'Berthe Morisot' +p151479 +sg25273 +S'drypoint [reprinted by Ambroise Vollard]' +p151480 +sg25275 +S'1888/1890' +p151481 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d98.jpg' +p151482 +sg25267 +g27 +sa(dp151483 +g25268 +S'The Drawing Lesson' +p151484 +sg25270 +S'Berthe Morisot' +p151485 +sg25273 +S'drypoint [reprinted by Ambroise Vollard]' +p151486 +sg25275 +S'1888/1890' +p151487 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d95.jpg' +p151488 +sg25267 +g27 +sa(dp151489 +g25268 +S'The Judgment of Paris' +p151490 +sg25270 +S'Sebald Beham' +p151491 +sg25273 +S'engraving' +p151492 +sg25275 +S'1546' +p151493 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a841.jpg' +p151494 +sg25267 +g27 +sa(dp151495 +g25268 +S'Lake with Rowboat' +p151496 +sg25270 +S'Berthe Morisot' +p151497 +sg25273 +S'drypoint [reprinted by Ambroise Vollard]' +p151498 +sg25275 +S'1888/1890' +p151499 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d96.jpg' +p151500 +sg25267 +g27 +sa(dp151501 +g25268 +S'Ducks at Rest on the Bank' +p151502 +sg25270 +S'Berthe Morisot' +p151503 +sg25273 +S'drypoint [reprinted by Ambroise Vollard]' +p151504 +sg25275 +S'1888/1890' +p151505 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d9a.jpg' +p151506 +sg25267 +g27 +sa(dp151507 +g25268 +S'Swans at Stagnant Water' +p151508 +sg25270 +S'Berthe Morisot' +p151509 +sg25273 +S'drypoint [reprinted by Ambroise Vollard]' +p151510 +sg25275 +S'1888/1890' +p151511 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d97.jpg' +p151512 +sg25267 +g27 +sa(dp151513 +g25268 +S'Rest' +p151514 +sg25270 +S'Berthe Morisot' +p151515 +sg25273 +S'drypoint [reprinted by Ambroise Vollard]' +p151516 +sg25275 +S'1888/1890' +p151517 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d9b.jpg' +p151518 +sg25267 +g27 +sa(dp151519 +g25268 +S'Walk in the Boulougne Wood' +p151520 +sg25270 +S'Berthe Morisot' +p151521 +sg25273 +S'drypoint [reprinted by Ambroise Vollard]' +p151522 +sg25275 +S'1888/1890' +p151523 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00010/a0001071.jpg' +p151524 +sg25267 +g27 +sa(dp151525 +g25268 +S'Dancer in Motion' +p151526 +sg25270 +S'Seong Moy' +p151527 +sg25273 +S'6-color woodcut' +p151528 +sg25275 +S'1952' +p151529 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b46.jpg' +p151530 +sg25267 +g27 +sa(dp151531 +g25273 +S'portfoilio with introduction, table of contents, and five color woodcuts' +p151532 +sg25267 +g27 +sg25275 +S'published 1952' +p151533 +sg25268 +S'Seong Moy' +p151534 +sg25270 +S'Seong Moy' +p151535 +sa(dp151536 +g25273 +S'woodcut in red-brown and black' +p151537 +sg25267 +g27 +sg25275 +S'1952' +p151538 +sg25268 +S'Study of Kuang Kung' +p151539 +sg25270 +S'Seong Moy' +p151540 +sa(dp151541 +g25273 +S'9-color woodcut' +p151542 +sg25267 +g27 +sg25275 +S'1952' +p151543 +sg25268 +S'The Royal Family' +p151544 +sg25270 +S'Seong Moy' +p151545 +sa(dp151546 +g25273 +S'color woodcut on Japanese paper' +p151547 +sg25267 +g27 +sg25275 +S'1952' +p151548 +sg25268 +S'Yen Shang' +p151549 +sg25270 +S'Seong Moy' +p151550 +sa(dp151551 +g25268 +S'Venus and Cupid' +p151552 +sg25270 +S'Sebald Beham' +p151553 +sg25273 +S'engraving' +p151554 +sg25275 +S'unknown date\n' +p151555 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a83f.jpg' +p151556 +sg25267 +g27 +sa(dp151557 +g25273 +S'6-color woodcut' +p151558 +sg25267 +g27 +sg25275 +S'1952' +p151559 +sg25268 +S"Inscription of T'Chao Pae No.II" +p151560 +sg25270 +S'Seong Moy' +p151561 +sa(dp151562 +g25268 +S'Horse before the Race' +p151563 +sg25270 +S'C\xc3\xa9lestin Nanteuil' +p151564 +sg25273 +S'lithograph' +p151565 +sg25275 +S'unknown date\n' +p151566 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000999b.jpg' +p151567 +sg25267 +g27 +sa(dp151568 +g25273 +S'color etching and engraving' +p151569 +sg25267 +g27 +sg25275 +S'1952' +p151570 +sg25268 +S'Sponge Fisher' +p151571 +sg25270 +S'Gabor Peterdi' +p151572 +sa(dp151573 +g25273 +S'portfolio with one black and white intaglio print and four color intaglio prints' +p151574 +sg25267 +g27 +sg25275 +S'published 1952' +p151575 +sg25268 +S'Peterdi' +p151576 +sg25270 +S'Gabor Peterdi' +p151577 +sa(dp151578 +g25273 +S'etching and engraving' +p151579 +sg25267 +g27 +sg25275 +S'1952' +p151580 +sg25268 +S'Wings of the Ocean' +p151581 +sg25270 +S'Gabor Peterdi' +p151582 +sa(dp151583 +g25273 +S'color etching and engraving' +p151584 +sg25267 +g27 +sg25275 +S'1952' +p151585 +sg25268 +S'Sunken Treasures' +p151586 +sg25270 +S'Gabor Peterdi' +p151587 +sa(dp151588 +g25273 +S'color etching and engraving' +p151589 +sg25267 +g27 +sg25275 +S'1952' +p151590 +sg25268 +S'The Purple Claw' +p151591 +sg25270 +S'Gabor Peterdi' +p151592 +sa(dp151593 +g25273 +S'color etching and engraving' +p151594 +sg25267 +g27 +sg25275 +S'1952' +p151595 +sg25268 +S'Spawning III' +p151596 +sg25270 +S'Gabor Peterdi' +p151597 +sa(dp151598 +g25268 +S'Self-Portrait (Camille Pissarro, par lui-meme)' +p151599 +sg25270 +S'Camille Pissarro' +p151600 +sg25273 +S'etching (zinc)' +p151601 +sg25275 +S'c. 1890' +p151602 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099ad.jpg' +p151603 +sg25267 +g27 +sa(dp151604 +g25268 +S'Le Gue (The Ford)' +p151605 +sg25270 +S'Odilon Redon' +p151606 +sg25273 +S'etching' +p151607 +sg25275 +S'1865' +p151608 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099b2.jpg' +p151609 +sg25267 +g27 +sa(dp151610 +g25268 +S'Venus and Cupid' +p151611 +sg25270 +S'Sebald Beham' +p151612 +sg25273 +S'engraving' +p151613 +sg25275 +S'unknown date\n' +p151614 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a829.jpg' +p151615 +sg25267 +g27 +sa(dp151616 +g25268 +S'Centaur visant les Nues (Centaur aiming at the Clouds)' +p151617 +sg25270 +S'Artist Information (' +p151618 +sg25273 +S'French, 1858 - 1936' +p151619 +sg25275 +S'(printer)' +p151620 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fd1.jpg' +p151621 +sg25267 +g27 +sa(dp151622 +g25268 +S'Cavalier Galopant (Galloping Horseman)' +p151623 +sg25270 +S'Odilon Redon' +p151624 +sg25273 +S'etching' +p151625 +sg25275 +S'1866' +p151626 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099b7.jpg' +p151627 +sg25267 +g27 +sa(dp151628 +g25268 +S'Vue du Plateau de Bellecroix' +p151629 +sg25270 +S'Th\xc3\xa9odore Rousseau' +p151630 +sg25273 +S'etching' +p151631 +sg25275 +S'1848-1849' +p151632 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cb0.jpg' +p151633 +sg25267 +g27 +sa(dp151634 +g25268 +S'The Madonna' +p151635 +sg25270 +S'Martin Schongauer' +p151636 +sg25273 +S'engraving on laid paper' +p151637 +sg25275 +S'c. 1490/1491' +p151638 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00020/a000202c.jpg' +p151639 +sg25267 +g27 +sa(dp151640 +g25273 +S'lithograph in black' +p151641 +sg25267 +g27 +sg25275 +S'1952' +p151642 +sg25268 +S'Eternal Jacob' +p151643 +sg25270 +S'Benton Murdoch Spruance' +p151644 +sa(dp151645 +g25273 +S'lithograph (stone) in black' +p151646 +sg25267 +g27 +sg25275 +S'1952' +p151647 +sg25268 +S'Space Mask' +p151648 +sg25270 +S'Benton Murdoch Spruance' +p151649 +sa(dp151650 +g25273 +S'lithograph (stone) in black' +p151651 +sg25267 +g27 +sg25275 +S'1952' +p151652 +sg25268 +S'Climate of Fear' +p151653 +sg25270 +S'Benton Murdoch Spruance' +p151654 +sa(dp151655 +g25273 +S'lithograph in black' +p151656 +sg25267 +g27 +sg25275 +S'1952' +p151657 +sg25268 +S'To Freedom - XII August - 1948' +p151658 +sg25270 +S'Benton Murdoch Spruance' +p151659 +sa(dp151660 +g25273 +S'4-color lithograph' +p151661 +sg25267 +g27 +sg25275 +S'1952' +p151662 +sg25268 +S'"When I Laid the Earth\'s Foundation"' +p151663 +sg25270 +S'Benton Murdoch Spruance' +p151664 +sa(dp151665 +g25273 +S'lithograph in black' +p151666 +sg25267 +g27 +sg25275 +S'1952' +p151667 +sg25268 +S'Self-Portrait at the Stone' +p151668 +sg25270 +S'Benton Murdoch Spruance' +p151669 +sa(dp151670 +g25268 +S'Genius on a Dolphin' +p151671 +sg25270 +S'Sebald Beham' +p151672 +sg25273 +S'engraving' +p151673 +sg25275 +S'1521' +p151674 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a82c.jpg' +p151675 +sg25267 +g27 +sa(dp151676 +g25273 +S'4-color lithograph (stone)' +p151677 +sg25267 +g27 +sg25275 +S'1952' +p151678 +sg25268 +S"Fire's Out" +p151679 +sg25270 +S'Benton Murdoch Spruance' +p151680 +sa(dp151681 +g25273 +S'hand-colored lithograph in black [trial proof]' +p151682 +sg25267 +g27 +sg25275 +S'1950' +p151683 +sg25268 +S'Salome - and John' +p151684 +sg25270 +S'Benton Murdoch Spruance' +p151685 +sa(dp151686 +g25273 +S'lithograph (stone) in black' +p151687 +sg25267 +g27 +sg25275 +S'1952' +p151688 +sg25268 +S'Citizen' +p151689 +sg25270 +S'Benton Murdoch Spruance' +p151690 +sa(dp151691 +g25268 +S"The Explorer Vicomte de Brettes (L'explorateur L.J. Vicomte de Brettes?)" +p151692 +sg25270 +S'Henri de Toulouse-Lautrec' +p151693 +sg25273 +S'drypoint' +p151694 +sg25275 +S'1898 (first edition published 1911)' +p151695 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e37.jpg' +p151696 +sg25267 +g27 +sa(dp151697 +g25268 +S'Sept pointes seches' +p151698 +sg25270 +S'Henri de Toulouse-Lautrec' +p151699 +sg25273 +S'portfolio with seven drypoints' +p151700 +sg25275 +S'published 1911' +p151701 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a006.jpg' +p151702 +sg25267 +g27 +sa(dp151703 +g25268 +S'Charles Maurin' +p151704 +sg25270 +S'Henri de Toulouse-Lautrec' +p151705 +sg25273 +S'drypoint' +p151706 +sg25275 +S'1898' +p151707 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e36.jpg' +p151708 +sg25267 +g27 +sa(dp151709 +g25268 +S'Francis Jourdain' +p151710 +sg25270 +S'Henri de Toulouse-Lautrec' +p151711 +sg25273 +S'drypoint' +p151712 +sg25275 +S'1898' +p151713 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e35.jpg' +p151714 +sg25267 +g27 +sa(dp151715 +g25268 +S'W.H.B. Sands (W.H.B. Sands, editeur \xc3\xa0 Edimbourg)' +p151716 +sg25270 +S'Henri de Toulouse-Lautrec' +p151717 +sg25273 +S'drypoint' +p151718 +sg25275 +S'1898' +p151719 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e31.jpg' +p151720 +sg25267 +g27 +sa(dp151721 +g25268 +S'Henry Somm' +p151722 +sg25270 +S'Henri de Toulouse-Lautrec' +p151723 +sg25273 +S'drypoint' +p151724 +sg25275 +S'1898' +p151725 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e33.jpg' +p151726 +sg25267 +g27 +sa(dp151727 +g25268 +S'Sketch (Croquis)' +p151728 +sg25270 +S'Henri de Toulouse-Lautrec' +p151729 +sg25273 +S'drypoint' +p151730 +sg25275 +S'1898' +p151731 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e32.jpg' +p151732 +sg25267 +g27 +sa(dp151733 +g25268 +S'Genius on a Dolphin, Riding Towards the Right' +p151734 +sg25270 +S'Sebald Beham' +p151735 +sg25273 +S'engraving' +p151736 +sg25275 +S'1521' +p151737 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a82d.jpg' +p151738 +sg25267 +g27 +sa(dp151739 +g25268 +S'Portrait of M. X (Portrait de M. X)' +p151740 +sg25270 +S'Henri de Toulouse-Lautrec' +p151741 +sg25273 +S'drypoint' +p151742 +sg25275 +S'1898' +p151743 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e34.jpg' +p151744 +sg25267 +g27 +sa(dp151745 +g25268 +S'Jane Avril' +p151746 +sg25270 +S'Henri de Toulouse-Lautrec' +p151747 +sg25273 +S'5-color lithograph [poster] on thin wove paper' +p151748 +sg25275 +S'1899' +p151749 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a0005489.jpg' +p151750 +sg25267 +g27 +sa(dp151751 +g25268 +S'The Vision of Saint Bernard' +p151752 +sg25270 +S'Dirk Jacobsz Vellert' +p151753 +sg25273 +S'engraving' +p151754 +sg25275 +S'1524' +p151755 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cebe.jpg' +p151756 +sg25267 +g27 +sa(dp151757 +g25273 +S'color woodcut' +p151758 +sg25267 +g27 +sg25275 +S'1952' +p151759 +sg25268 +S'City Lights' +p151760 +sg25270 +S'Adja Yunkers' +p151761 +sa(dp151762 +g25273 +S'color woodcut on Asian paper' +p151763 +sg25267 +g27 +sg25275 +S'1952' +p151764 +sg25268 +S'Las Lolitas' +p151765 +sg25270 +S'Adja Yunkers' +p151766 +sa(dp151767 +g25273 +S'color woodcut on blue wove paper' +p151768 +sg25267 +g27 +sg25275 +S'1952' +p151769 +sg25268 +S'Three Personages' +p151770 +sg25270 +S'Adja Yunkers' +p151771 +sa(dp151772 +g25273 +S'color woodcut' +p151773 +sg25267 +g27 +sg25275 +S'1952' +p151774 +sg25268 +S'Miss Ever-Ready' +p151775 +sg25270 +S'Adja Yunkers' +p151776 +sa(dp151777 +g25273 +S'color woodcut' +p151778 +sg25267 +g27 +sg25275 +S'1952' +p151779 +sg25268 +S'Head of a Traveller' +p151780 +sg25270 +S'Adja Yunkers' +p151781 +sa(dp151782 +g25268 +S'Fleuron for the Title Pages' +p151783 +sg25270 +S'Pierre-Philippe Choffard' +p151784 +sg25273 +S'etching' +p151785 +sg25275 +S'1795' +p151786 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ec6.jpg' +p151787 +sg25267 +g27 +sa(dp151788 +g25268 +S'Fleuron for the Title Pages' +p151789 +sg25270 +S'Pierre-Philippe Choffard' +p151790 +sg25273 +S'etching' +p151791 +sg25275 +S'1795' +p151792 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ec5.jpg' +p151793 +sg25267 +g27 +sa(dp151794 +g25268 +S'Frieze with Centaurs' +p151795 +sg25270 +S'Sebald Beham' +p151796 +sg25273 +S'engraving' +p151797 +sg25275 +S'1521' +p151798 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8ab.jpg' +p151799 +sg25267 +g27 +sa(dp151800 +g25268 +S'Joconde: Le depart' +p151801 +sg25270 +S'Artist Information (' +p151802 +sg25273 +S'French, 1738 - 1826' +p151803 +sg25275 +S'(artist after)' +p151804 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ed5.jpg' +p151805 +sg25267 +g27 +sa(dp151806 +g25268 +S'Joconde: Le depart' +p151807 +sg25270 +S'Artist Information (' +p151808 +sg25273 +S'French, 1738 - 1826' +p151809 +sg25275 +S'(artist after)' +p151810 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ed6.jpg' +p151811 +sg25267 +g27 +sa(dp151812 +g25268 +S'Joconde: Le lit' +p151813 +sg25270 +S'Artist Information (' +p151814 +sg25273 +S'(artist after)' +p151815 +sg25275 +S'\n' +p151816 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ed7.jpg' +p151817 +sg25267 +g27 +sa(dp151818 +g25268 +S'Joconde: Le lit' +p151819 +sg25270 +S'Artist Information (' +p151820 +sg25273 +S'(artist after)' +p151821 +sg25275 +S'\n' +p151822 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ec7.jpg' +p151823 +sg25267 +g27 +sa(dp151824 +g25268 +S'Joconde: Le lit' +p151825 +sg25270 +S'Artist Information (' +p151826 +sg25273 +S'(artist after)' +p151827 +sg25275 +S'\n' +p151828 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ed8.jpg' +p151829 +sg25267 +g27 +sa(dp151830 +g25268 +S'Joconde: Le pardon' +p151831 +sg25270 +S'Artist Information (' +p151832 +sg25273 +S'(artist after)' +p151833 +sg25275 +S'\n' +p151834 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ec8.jpg' +p151835 +sg25267 +g27 +sa(dp151836 +g25268 +S'Joconde: Le pardon' +p151837 +sg25270 +S'Artist Information (' +p151838 +sg25273 +S'(artist after)' +p151839 +sg25275 +S'\n' +p151840 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ec9.jpg' +p151841 +sg25267 +g27 +sa(dp151842 +g25268 +S'Le cocu battu et content' +p151843 +sg25270 +S'Artist Information (' +p151844 +sg25273 +S'(artist)' +p151845 +sg25275 +S'\n' +p151846 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ed9.jpg' +p151847 +sg25267 +g27 +sa(dp151848 +g25268 +S'Le cocu battu et content' +p151849 +sg25270 +S'Artist Information (' +p151850 +sg25273 +S'(artist)' +p151851 +sg25275 +S'\n' +p151852 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ee3.jpg' +p151853 +sg25267 +g27 +sa(dp151854 +g25268 +S'Le cocu battu et content' +p151855 +sg25270 +S'Artist Information (' +p151856 +sg25273 +S'(artist)' +p151857 +sg25275 +S'\n' +p151858 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ee2.jpg' +p151859 +sg25267 +g27 +sa(dp151860 +g25268 +S'Battle of Three Men' +p151861 +sg25270 +S'Sebald Beham' +p151862 +sg25273 +S'engraving' +p151863 +sg25275 +S'unknown date\n' +p151864 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a820.jpg' +p151865 +sg25267 +g27 +sa(dp151866 +g25268 +S'Le cocu battu et content' +p151867 +sg25270 +S'Artist Information (' +p151868 +sg25273 +S'(artist)' +p151869 +sg25275 +S'\n' +p151870 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008eda.jpg' +p151871 +sg25267 +g27 +sa(dp151872 +g25268 +S'Le mari confesseur' +p151873 +sg25270 +S'Artist Information (' +p151874 +sg25273 +S'(artist)' +p151875 +sg25275 +S'\n' +p151876 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ee1.jpg' +p151877 +sg25267 +g27 +sa(dp151878 +g25268 +S'Le mari confesseur' +p151879 +sg25270 +S'Artist Information (' +p151880 +sg25273 +S'(artist)' +p151881 +sg25275 +S'\n' +p151882 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ee0.jpg' +p151883 +sg25267 +g27 +sa(dp151884 +g25268 +S'Le savetier' +p151885 +sg25270 +S'Artist Information (' +p151886 +sg25273 +S'(artist after)' +p151887 +sg25275 +S'\n' +p151888 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008eca.jpg' +p151889 +sg25267 +g27 +sa(dp151890 +g25268 +S'Le savetier' +p151891 +sg25270 +S'Artist Information (' +p151892 +sg25273 +S'(artist after)' +p151893 +sg25275 +S'\n' +p151894 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ee4.jpg' +p151895 +sg25267 +g27 +sa(dp151896 +g25268 +S'Le savetier' +p151897 +sg25270 +S'Artist Information (' +p151898 +sg25273 +S'(artist after)' +p151899 +sg25275 +S'\n' +p151900 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008edb.jpg' +p151901 +sg25267 +g27 +sa(dp151902 +g25268 +S'Le savetier' +p151903 +sg25270 +S'Artist Information (' +p151904 +sg25273 +S'(artist after)' +p151905 +sg25275 +S'\n' +p151906 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ecb.jpg' +p151907 +sg25267 +g27 +sa(dp151908 +g25268 +S'Le paysan' +p151909 +sg25270 +S'Artist Information (' +p151910 +sg25273 +S'(artist after)' +p151911 +sg25275 +S'\n' +p151912 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ecc.jpg' +p151913 +sg25267 +g27 +sa(dp151914 +g25268 +S'Le paysan' +p151915 +sg25270 +S'Artist Information (' +p151916 +sg25273 +S'(artist after)' +p151917 +sg25275 +S'\n' +p151918 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ecd.jpg' +p151919 +sg25267 +g27 +sa(dp151920 +g25268 +S'Le paysan' +p151921 +sg25270 +S'Artist Information (' +p151922 +sg25273 +S'(artist after)' +p151923 +sg25275 +S'\n' +p151924 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008edc.jpg' +p151925 +sg25267 +g27 +sa(dp151926 +g25268 +S'Lycus Bringing the Garment of Nessus to Hercules' +p151927 +sg25270 +S'Sebald Beham' +p151928 +sg25273 +S'engraving' +p151929 +sg25275 +S'1542/1548' +p151930 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a823.jpg' +p151931 +sg25267 +g27 +sa(dp151932 +g25268 +S'Le paysan' +p151933 +sg25270 +S'Artist Information (' +p151934 +sg25273 +S'(artist after)' +p151935 +sg25275 +S'\n' +p151936 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008edd.jpg' +p151937 +sg25267 +g27 +sa(dp151938 +g25268 +S'Le muletier' +p151939 +sg25270 +S'Artist Information (' +p151940 +sg25273 +S'French, 1732 - 1806' +p151941 +sg25275 +S'(artist after)' +p151942 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ede.jpg' +p151943 +sg25267 +g27 +sa(dp151944 +g25268 +S'La gageure des trois commeres: La servante' +p151945 +sg25270 +S'Artist Information (' +p151946 +sg25273 +S'(artist)' +p151947 +sg25275 +S'\n' +p151948 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ece.jpg' +p151949 +sg25267 +g27 +sa(dp151950 +g25268 +S'La gageure des trois commeres: La servante' +p151951 +sg25270 +S'Artist Information (' +p151952 +sg25273 +S'(artist)' +p151953 +sg25275 +S'\n' +p151954 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008edf.jpg' +p151955 +sg25267 +g27 +sa(dp151956 +g25268 +S'La gageure des trois commeres: La servante' +p151957 +sg25270 +S'Artist Information (' +p151958 +sg25273 +S'(artist)' +p151959 +sg25275 +S'\n' +p151960 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ecf.jpg' +p151961 +sg25267 +g27 +sa(dp151962 +g25268 +S'La gageure des trois commeres: La servante' +p151963 +sg25270 +S'Artist Information (' +p151964 +sg25273 +S'(artist)' +p151965 +sg25275 +S'\n' +p151966 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ed0.jpg' +p151967 +sg25267 +g27 +sa(dp151968 +g25268 +S'La gageure des trois commeres: Le poirier' +p151969 +sg25270 +S'Artist Information (' +p151970 +sg25273 +S'French, 1759 - 1835' +p151971 +sg25275 +S'(artist after)' +p151972 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ed1.jpg' +p151973 +sg25267 +g27 +sa(dp151974 +g25268 +S'La gageure des trois commeres: Le poirier' +p151975 +sg25270 +S'Artist Information (' +p151976 +sg25273 +S'French, 1759 - 1835' +p151977 +sg25275 +S'(artist after)' +p151978 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ed2.jpg' +p151979 +sg25267 +g27 +sa(dp151980 +g25268 +S'La gageure des trois commeres: Le poirier' +p151981 +sg25270 +S'Artist Information (' +p151982 +sg25273 +S'French, 1759 - 1835' +p151983 +sg25275 +S'(artist after)' +p151984 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ed3.jpg' +p151985 +sg25267 +g27 +sa(dp151986 +g25268 +S'La gageure des trois commeres: Le poirier' +p151987 +sg25270 +S'Artist Information (' +p151988 +sg25273 +S'French, 1759 - 1835' +p151989 +sg25275 +S'(artist after)' +p151990 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ed4.jpg' +p151991 +sg25267 +g27 +sa(dp151992 +g25268 +S'Hercules and Iole' +p151993 +sg25270 +S'Sebald Beham' +p151994 +sg25273 +S'engraving' +p151995 +sg25275 +S'1544' +p151996 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a824.jpg' +p151997 +sg25267 +g27 +sa(dp151998 +g25268 +S'La gageure des trois commeres: Le fil' +p151999 +sg25270 +S'French 18th Century' +p152000 +sg25273 +S'Wolf 1949, no. 11, State a/b' +p152001 +sg25275 +S'\netching' +p152002 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fc8.jpg' +p152003 +sg25267 +g27 +sa(dp152004 +g25268 +S'La gageure des trois commeres: Le fil' +p152005 +sg25270 +S'French 18th Century' +p152006 +sg25273 +S'Wolf 1949, no. 11, State b/b' +p152007 +sg25275 +S'\netching' +p152008 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fc7.jpg' +p152009 +sg25267 +g27 +sa(dp152010 +g25268 +S'Le calendrier des viellards' +p152011 +sg25270 +S'Artist Information (' +p152012 +sg25273 +S'(artist after)' +p152013 +sg25275 +S'\n' +p152014 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fc6.jpg' +p152015 +sg25267 +g27 +sa(dp152016 +g25268 +S'Le calendrier des viellards' +p152017 +sg25270 +S'Artist Information (' +p152018 +sg25273 +S'(artist after)' +p152019 +sg25275 +S'\n' +p152020 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fc5.jpg' +p152021 +sg25267 +g27 +sa(dp152022 +g25268 +S'Le calendrier des viellards' +p152023 +sg25270 +S'Artist Information (' +p152024 +sg25273 +S'(artist after)' +p152025 +sg25275 +S'\n' +p152026 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fc4.jpg' +p152027 +sg25267 +g27 +sa(dp152028 +g25268 +S'Le calendrier des viellards' +p152029 +sg25270 +S'Artist Information (' +p152030 +sg25273 +S'(artist after)' +p152031 +sg25275 +S'\n' +p152032 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fb4.jpg' +p152033 +sg25267 +g27 +sa(dp152034 +g25268 +S'A femme avare galant escroc' +p152035 +sg25270 +S'Artist Information (' +p152036 +sg25273 +S'(artist)' +p152037 +sg25275 +S'\n' +p152038 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fb3.jpg' +p152039 +sg25267 +g27 +sa(dp152040 +g25268 +S'A femme avare galant escroc' +p152041 +sg25270 +S'Artist Information (' +p152042 +sg25273 +S'(artist)' +p152043 +sg25275 +S'\n' +p152044 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fc3.jpg' +p152045 +sg25267 +g27 +sa(dp152046 +g25268 +S"On ne s'avise jamais de tout" +p152047 +sg25270 +S'Artist Information (' +p152048 +sg25273 +S'(artist after)' +p152049 +sg25275 +S'\n' +p152050 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fb2.jpg' +p152051 +sg25267 +g27 +sa(dp152052 +g25268 +S"On ne s'avise jamais de tout" +p152053 +sg25270 +S'Artist Information (' +p152054 +sg25273 +S'(artist after)' +p152055 +sg25275 +S'\n' +p152056 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fc9.jpg' +p152057 +sg25267 +g27 +sa(dp152058 +g25268 +S'Hercules Carrying the Columns of Gaza' +p152059 +sg25270 +S'Sebald Beham' +p152060 +sg25273 +S'engraving' +p152061 +sg25275 +S'1545' +p152062 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a828.jpg' +p152063 +sg25267 +g27 +sa(dp152064 +g25268 +S"On ne s'avise jamais de tout" +p152065 +sg25270 +S'Artist Information (' +p152066 +sg25273 +S'(artist after)' +p152067 +sg25275 +S'\n' +p152068 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fc2.jpg' +p152069 +sg25267 +g27 +sa(dp152070 +g25268 +S'Le gascon puni' +p152071 +sg25270 +S'Artist Information (' +p152072 +sg25273 +S'(artist)' +p152073 +sg25275 +S'\n' +p152074 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fb1.jpg' +p152075 +sg25267 +g27 +sa(dp152076 +g25268 +S'Le gascon puni' +p152077 +sg25270 +S'Artist Information (' +p152078 +sg25273 +S'(artist)' +p152079 +sg25275 +S'\n' +p152080 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fb0.jpg' +p152081 +sg25267 +g27 +sa(dp152082 +g25268 +S'Le gascon puni' +p152083 +sg25270 +S'Artist Information (' +p152084 +sg25273 +S'(artist)' +p152085 +sg25275 +S'\n' +p152086 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008faf.jpg' +p152087 +sg25267 +g27 +sa(dp152088 +g25268 +S'La fiancee du roi de Garbe: La cassette' +p152089 +sg25270 +S'Artist Information (' +p152090 +sg25273 +S'(artist after)' +p152091 +sg25275 +S'\n' +p152092 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fae.jpg' +p152093 +sg25267 +g27 +sa(dp152094 +g25268 +S'La fiancee du roi de Garbe: La cassette' +p152095 +sg25270 +S'Artist Information (' +p152096 +sg25273 +S'(artist after)' +p152097 +sg25275 +S'\n' +p152098 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fc1.jpg' +p152099 +sg25267 +g27 +sa(dp152100 +g25268 +S'La fiancee du roi de Garbe: La chevalier' +p152101 +sg25270 +S'Artist Information (' +p152102 +sg25273 +S'French, 1732 - 1806' +p152103 +sg25275 +S'(artist after)' +p152104 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fad.jpg' +p152105 +sg25267 +g27 +sa(dp152106 +g25268 +S'La fiancee du roi de Garbe: La chevalier' +p152107 +sg25270 +S'Artist Information (' +p152108 +sg25273 +S'French, 1732 - 1806' +p152109 +sg25275 +S'(artist after)' +p152110 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fc0.jpg' +p152111 +sg25267 +g27 +sa(dp152112 +g25268 +S'La fiancee du roi de Garbe: La chevalier' +p152113 +sg25270 +S'Artist Information (' +p152114 +sg25273 +S'French, 1732 - 1806' +p152115 +sg25275 +S'(artist after)' +p152116 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fbf.jpg' +p152117 +sg25267 +g27 +sa(dp152118 +g25268 +S"La fiancee du roi de Garbe: L'arbre" +p152119 +sg25270 +S'Artist Information (' +p152120 +sg25273 +S'(artist after)' +p152121 +sg25275 +S'\n' +p152122 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fbe.jpg' +p152123 +sg25267 +g27 +sa(dp152124 +g25268 +S'Hercules Killing Anthaeus' +p152125 +sg25270 +S'Sebald Beham' +p152126 +sg25273 +S'engraving' +p152127 +sg25275 +S'1545' +p152128 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a827.jpg' +p152129 +sg25267 +g27 +sa(dp152130 +g25268 +S"La fiancee du roi de Garbe: L'arbre" +p152131 +sg25270 +S'Artist Information (' +p152132 +sg25273 +S'(artist after)' +p152133 +sg25275 +S'\n' +p152134 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fbd.jpg' +p152135 +sg25267 +g27 +sa(dp152136 +g25268 +S"La fiancee du roi de Garbe: L'arbre" +p152137 +sg25270 +S'Artist Information (' +p152138 +sg25273 +S'(artist after)' +p152139 +sg25275 +S'\n' +p152140 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fbc.jpg' +p152141 +sg25267 +g27 +sa(dp152142 +g25268 +S'La coupe enchantee' +p152143 +sg25270 +S'Artist Information (' +p152144 +sg25273 +S'(artist after)' +p152145 +sg25275 +S'\n' +p152146 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fbb.jpg' +p152147 +sg25267 +g27 +sa(dp152148 +g25268 +S'La coupe enchantee' +p152149 +sg25270 +S'Artist Information (' +p152150 +sg25273 +S'(artist after)' +p152151 +sg25275 +S'\n' +p152152 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fba.jpg' +p152153 +sg25267 +g27 +sa(dp152154 +g25268 +S'La coupe enchantee' +p152155 +sg25270 +S'Artist Information (' +p152156 +sg25273 +S'(artist after)' +p152157 +sg25275 +S'\n' +p152158 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fac.jpg' +p152159 +sg25267 +g27 +sa(dp152160 +g25268 +S'Le faucon' +p152161 +sg25270 +S'Artist Information (' +p152162 +sg25273 +S'(artist)' +p152163 +sg25275 +S'\n' +p152164 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fb9.jpg' +p152165 +sg25267 +g27 +sa(dp152166 +g25268 +S'Le faucon' +p152167 +sg25270 +S'Artist Information (' +p152168 +sg25273 +S'(artist)' +p152169 +sg25275 +S'\n' +p152170 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fab.jpg' +p152171 +sg25267 +g27 +sa(dp152172 +g25268 +S'Le faucon' +p152173 +sg25270 +S'Artist Information (' +p152174 +sg25273 +S'(artist)' +p152175 +sg25275 +S'\n' +p152176 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fb8.jpg' +p152177 +sg25267 +g27 +sa(dp152178 +g25268 +S'Le faucon' +p152179 +sg25270 +S'Artist Information (' +p152180 +sg25273 +S'(artist)' +p152181 +sg25275 +S'\n' +p152182 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fb7.jpg' +p152183 +sg25267 +g27 +sa(dp152184 +g25268 +S'Le petit chien' +p152185 +sg25270 +S'French 18th Century' +p152186 +sg25273 +S'Wolf 1949, no. 21, State a' +p152187 +sg25275 +S'\netching' +p152188 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008faa.jpg' +p152189 +sg25267 +g27 +sa(dp152190 +g25268 +S'Satyr Playing Lyre' +p152191 +sg25270 +S'Sebald Beham' +p152192 +sg25273 +S'engraving' +p152193 +sg25275 +S'unknown date\n' +p152194 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a82a.jpg' +p152195 +sg25267 +g27 +sa(dp152196 +g25268 +S"Le pate d'anguilles" +p152197 +sg25270 +S'Artist Information (' +p152198 +sg25273 +S'(artist after)' +p152199 +sg25275 +S'\n' +p152200 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fb6.jpg' +p152201 +sg25267 +g27 +sa(dp152202 +g25268 +S"Le pate d'anguilles" +p152203 +sg25270 +S'Artist Information (' +p152204 +sg25273 +S'(artist after)' +p152205 +sg25275 +S'\n' +p152206 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fa9.jpg' +p152207 +sg25267 +g27 +sa(dp152208 +g25268 +S"Le pate d'anguilles" +p152209 +sg25270 +S'Artist Information (' +p152210 +sg25273 +S'(artist after)' +p152211 +sg25275 +S'\n' +p152212 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fb5.jpg' +p152213 +sg25267 +g27 +sa(dp152214 +g25268 +S"Le pate d'anguilles" +p152215 +sg25270 +S'Artist Information (' +p152216 +sg25273 +S'(artist after)' +p152217 +sg25275 +S'\n' +p152218 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fa8.jpg' +p152219 +sg25267 +g27 +sa(dp152220 +g25268 +S'Le magnifique' +p152221 +sg25270 +S'Artist Information (' +p152222 +sg25273 +S'(artist after)' +p152223 +sg25275 +S'\n' +p152224 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095e8.jpg' +p152225 +sg25267 +g27 +sa(dp152226 +g25268 +S'Le magnifique' +p152227 +sg25270 +S'Artist Information (' +p152228 +sg25273 +S'(artist after)' +p152229 +sg25275 +S'\n' +p152230 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095e7.jpg' +p152231 +sg25267 +g27 +sa(dp152232 +g25268 +S'Le magnifique' +p152233 +sg25270 +S'Artist Information (' +p152234 +sg25273 +S'(artist after)' +p152235 +sg25275 +S'\n' +p152236 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009600.jpg' +p152237 +sg25267 +g27 +sa(dp152238 +g25268 +S"La matrone d'Ephese" +p152239 +sg25270 +S'Artist Information (' +p152240 +sg25273 +S'(artist)' +p152241 +sg25275 +S'\n' +p152242 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095e5.jpg' +p152243 +sg25267 +g27 +sa(dp152244 +g25268 +S"La matrone d'Ephese" +p152245 +sg25270 +S'Artist Information (' +p152246 +sg25273 +S'(artist)' +p152247 +sg25275 +S'\n' +p152248 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095ff.jpg' +p152249 +sg25267 +g27 +sa(dp152250 +g25268 +S"La matrone d'Ephese" +p152251 +sg25270 +S'Artist Information (' +p152252 +sg25273 +S'(artist)' +p152253 +sg25275 +S'\n' +p152254 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095fd.jpg' +p152255 +sg25267 +g27 +sa(dp152256 +g25268 +S'Satyr Blowing a Horn' +p152257 +sg25270 +S'Sebald Beham' +p152258 +sg25273 +S'engraving' +p152259 +sg25275 +S'unknown date\n' +p152260 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a850.jpg' +p152261 +sg25267 +g27 +sa(dp152262 +g25268 +S'Belphegor' +p152263 +sg25270 +S'Artist Information (' +p152264 +sg25273 +S'(artist)' +p152265 +sg25275 +S'\n' +p152266 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095e6.jpg' +p152267 +sg25267 +g27 +sa(dp152268 +g25268 +S'Belphegor' +p152269 +sg25270 +S'Artist Information (' +p152270 +sg25273 +S'(artist)' +p152271 +sg25275 +S'\n' +p152272 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095e4.jpg' +p152273 +sg25267 +g27 +sa(dp152274 +g25268 +S'Belphegor' +p152275 +sg25270 +S'Artist Information (' +p152276 +sg25273 +S'(artist)' +p152277 +sg25275 +S'\n' +p152278 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095fc.jpg' +p152279 +sg25267 +g27 +sa(dp152280 +g25268 +S'Belphegor' +p152281 +sg25270 +S'Artist Information (' +p152282 +sg25273 +S'(artist)' +p152283 +sg25275 +S'\n' +p152284 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095e3.jpg' +p152285 +sg25267 +g27 +sa(dp152286 +g25268 +S'La clochette' +p152287 +sg25270 +S'Artist Information (' +p152288 +sg25273 +S'(artist after)' +p152289 +sg25275 +S'\n' +p152290 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095fb.jpg' +p152291 +sg25267 +g27 +sa(dp152292 +g25268 +S'La clochette' +p152293 +sg25270 +S'Artist Information (' +p152294 +sg25273 +S'(artist after)' +p152295 +sg25275 +S'\n' +p152296 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095e2.jpg' +p152297 +sg25267 +g27 +sa(dp152298 +g25268 +S'Le glouton' +p152299 +sg25270 +S'Artist Information (' +p152300 +sg25273 +S'(artist after)' +p152301 +sg25275 +S'\n' +p152302 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095fe.jpg' +p152303 +sg25267 +g27 +sa(dp152304 +g25268 +S'Le glouton' +p152305 +sg25270 +S'Artist Information (' +p152306 +sg25273 +S'(artist after)' +p152307 +sg25275 +S'\n' +p152308 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095fa.jpg' +p152309 +sg25267 +g27 +sa(dp152310 +g25268 +S'Le glouton' +p152311 +sg25270 +S'Artist Information (' +p152312 +sg25273 +S'(artist after)' +p152313 +sg25275 +S'\n' +p152314 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095f9.jpg' +p152315 +sg25267 +g27 +sa(dp152316 +g25268 +S'Les deux amis' +p152317 +sg25270 +S'French 18th Century' +p152318 +sg25273 +S'Wolf 1949, no. 28, State a/b' +p152319 +sg25275 +S'\netching' +p152320 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095e1.jpg' +p152321 +sg25267 +g27 +sa(dp152322 +g25268 +S'Leda and the Swan' +p152323 +sg25270 +S'Sebald Beham' +p152324 +sg25273 +S'engraving' +p152325 +sg25275 +S'1548' +p152326 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a851.jpg' +p152327 +sg25267 +g27 +sa(dp152328 +g25268 +S'Les deux amis' +p152329 +sg25270 +S'French 18th Century' +p152330 +sg25273 +S'Wolf 1949, no. 28, State b/b' +p152331 +sg25275 +S'\netching and engraving' +p152332 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095f8.jpg' +p152333 +sg25267 +g27 +sa(dp152334 +g25268 +S'Le juge de mesle' +p152335 +sg25270 +S'Jean Dambrun' +p152336 +sg25273 +S'etching' +p152337 +sg25275 +S'unknown date\n' +p152338 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095f7.jpg' +p152339 +sg25267 +g27 +sa(dp152340 +g25268 +S'Le juge de mesle' +p152341 +sg25270 +S'Jean Dambrun' +p152342 +sg25273 +S'etching and engraving' +p152343 +sg25275 +S'unknown date\n' +p152344 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095f6.jpg' +p152345 +sg25267 +g27 +sa(dp152346 +g25268 +S'Le juge de mesle' +p152347 +sg25270 +S'Jean Dambrun' +p152348 +sg25273 +S'etching and engraving' +p152349 +sg25275 +S'unknown date\n' +p152350 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095f5.jpg' +p152351 +sg25267 +g27 +sa(dp152352 +g25268 +S'Alix malade' +p152353 +sg25270 +S'French 18th Century' +p152354 +sg25273 +S'Wolf 1949, no. 30, State a/b' +p152355 +sg25275 +S'\netching' +p152356 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095f4.jpg' +p152357 +sg25267 +g27 +sa(dp152358 +g25268 +S'Alix malade' +p152359 +sg25270 +S'French 18th Century' +p152360 +sg25273 +S'Wolf 1949, no. 30, State b/b' +p152361 +sg25275 +S'\netching and engraving' +p152362 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095f3.jpg' +p152363 +sg25267 +g27 +sa(dp152364 +g25268 +S'Le baiser rendu: Le baiser prete' +p152365 +sg25270 +S'Artist Information (' +p152366 +sg25273 +S'(artist after)' +p152367 +sg25275 +S'\n' +p152368 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095f2.jpg' +p152369 +sg25267 +g27 +sa(dp152370 +g25268 +S'Le baiser rendu: Le baiser rendu' +p152371 +sg25270 +S'Artist Information (' +p152372 +sg25273 +S'(artist after)' +p152373 +sg25275 +S'\n' +p152374 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095f1.jpg' +p152375 +sg25267 +g27 +sa(dp152376 +g25268 +S'Le baiser rendu: Le baiser rendu' +p152377 +sg25270 +S'Artist Information (' +p152378 +sg25273 +S'(artist after)' +p152379 +sg25275 +S'\n' +p152380 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095f0.jpg' +p152381 +sg25267 +g27 +sa(dp152382 +g25268 +S'Le baiser rendu: Le baiser rendu' +p152383 +sg25270 +S'Artist Information (' +p152384 +sg25273 +S'(artist after)' +p152385 +sg25275 +S'\n' +p152386 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095ef.jpg' +p152387 +sg25267 +g27 +sa(dp152388 +g25268 +S'Saturn' +p152389 +sg25270 +S'Sebald Beham' +p152390 +sg25273 +S'engraving' +p152391 +sg25275 +S'unknown date\n' +p152392 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a846.jpg' +p152393 +sg25267 +g27 +sa(dp152394 +g25268 +S'Soeur Jeanne' +p152395 +sg25270 +S'Artist Information (' +p152396 +sg25273 +S'(artist after)' +p152397 +sg25275 +S'\n' +p152398 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095ee.jpg' +p152399 +sg25267 +g27 +sa(dp152400 +g25268 +S'Soeur Jeanne' +p152401 +sg25270 +S'Artist Information (' +p152402 +sg25273 +S'(artist after)' +p152403 +sg25275 +S'\n' +p152404 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095ed.jpg' +p152405 +sg25267 +g27 +sa(dp152406 +g25268 +S'Soeur Jeanne' +p152407 +sg25270 +S'Artist Information (' +p152408 +sg25273 +S'(artist after)' +p152409 +sg25275 +S'\n' +p152410 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095ec.jpg' +p152411 +sg25267 +g27 +sa(dp152412 +g25268 +S"Imitation d'anacreon: Le portrait d'iris" +p152413 +sg25270 +S'French 18th Century' +p152414 +sg25273 +S'Wolf 1949, no. 34, State a' +p152415 +sg25275 +S'\netching' +p152416 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095eb.jpg' +p152417 +sg25267 +g27 +sa(dp152418 +g25268 +S"Autre imitation: L'amour mouille" +p152419 +sg25270 +S'French 18th Century' +p152420 +sg25273 +S'Wolf 1949, no. 35, State a' +p152421 +sg25275 +S'\netching' +p152422 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095ea.jpg' +p152423 +sg25267 +g27 +sa(dp152424 +g25268 +S"L'hermite (Le diable en enfer)" +p152425 +sg25270 +S'Artist Information (' +p152426 +sg25273 +S'French, 1732 - 1806' +p152427 +sg25275 +S'(artist after)' +p152428 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095e9.jpg' +p152429 +sg25267 +g27 +sa(dp152430 +g25268 +S'Perdu, monsieur... perdu sur tous les points...' +p152431 +sg25270 +S'Honor\xc3\xa9 Daumier' +p152432 +sg25273 +S'lithograph' +p152433 +sg25275 +S'1845' +p152434 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009333.jpg' +p152435 +sg25267 +g27 +sa(dp152436 +g25268 +S'La Cour, vidant le d\xc3\xa9lib\xc3\xa9r\xc3\xa9...' +p152437 +sg25270 +S'Honor\xc3\xa9 Daumier' +p152438 +sg25273 +S'lithograph' +p152439 +sg25275 +S'1845' +p152440 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009334.jpg' +p152441 +sg25267 +g27 +sa(dp152442 +g25268 +S'Mon cher que voulez-vous...' +p152443 +sg25270 +S'Honor\xc3\xa9 Daumier' +p152444 +sg25273 +S'lithograph' +p152445 +sg25275 +S'1845' +p152446 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a0005912.jpg' +p152447 +sg25267 +g27 +sa(dp152448 +g25268 +S'Quand le crime ne donne pas' +p152449 +sg25270 +S'Honor\xc3\xa9 Daumier' +p152450 +sg25273 +S'lithograph' +p152451 +sg25275 +S'1848' +p152452 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009353.jpg' +p152453 +sg25267 +g27 +sa(dp152454 +g25268 +S'Jupiter' +p152455 +sg25270 +S'Sebald Beham' +p152456 +sg25273 +S'engraving' +p152457 +sg25275 +S'unknown date\n' +p152458 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a84f.jpg' +p152459 +sg25267 +g27 +sa(dp152460 +g25268 +S'Coronation of the Virgin with Attendant Saints' +p152461 +sg25270 +S'Artist Information (' +p152462 +sg25273 +S'German, active 1299' +p152463 +sg25275 +S'(related artist)' +p152464 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037bc.jpg' +p152465 +sg25267 +g27 +sa(dp152466 +g25268 +S'Country Outing (Partie de campagne)' +p152467 +sg25270 +S'Henri de Toulouse-Lautrec' +p152468 +sg25273 +S'color lithograph' +p152469 +sg25275 +S'1897' +p152470 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a030.jpg' +p152471 +sg25267 +g27 +sa(dp152472 +g25268 +S'Oviri (The Savage) [recto]' +p152473 +sg25270 +S'Paul Gauguin' +p152474 +sg25273 +S'color woodcut' +p152475 +sg25275 +S'1894/1895' +p152476 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00022/a0002240.jpg' +p152477 +sg25267 +g27 +sa(dp152478 +g25268 +S'Mahna no Varua Ino (The Demon Speaks) [verso]' +p152479 +sg25270 +S'Paul Gauguin' +p152480 +sg25273 +S'color woodcut (printed by Louis Roy?)' +p152481 +sg25275 +S'1894/1895' +p152482 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a0006685.jpg' +p152483 +sg25267 +g27 +sa(dp152484 +g25268 +S'Varied Wares' +p152485 +sg25270 +S'Peggy Bacon' +p152486 +sg25273 +S'drypoint' +p152487 +sg25275 +S'1952' +p152488 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a12.jpg' +p152489 +sg25267 +g27 +sa(dp152490 +g25273 +S'lithograph' +p152491 +sg25267 +g27 +sg25275 +S'1950' +p152492 +sg25268 +S'Memory of Childhood' +p152493 +sg25270 +S'Will Barnet' +p152494 +sa(dp152495 +g25273 +S'height: 4 3/16 in. (10.6 cm)\r\nwidth: 7.3 cm, 13/16 in. (2 7/8 in., 2.1 cm)' +p152496 +sg25267 +g27 +sg25275 +S'\nwoodcut block' +p152497 +sg25268 +S'Presentation in the Temple' +p152498 +sg25270 +S'French 16th Century' +p152499 +sa(dp152500 +g25273 +S'engraved copper plate' +p152501 +sg25267 +g27 +sg25275 +S'unknown date\n' +p152502 +sg25268 +S'The Obelisk under the Liberty Tree, Boston [recto]' +p152503 +sg25270 +S'Paul Revere' +p152504 +sa(dp152505 +g25273 +S'engraved copper plate' +p152506 +sg25267 +g27 +sg25275 +S'unknown date\n' +p152507 +sg25268 +S'Masonic Certificate [verso]' +p152508 +sg25270 +S'Paul Revere' +p152509 +sa(dp152510 +g25268 +S'The Virgin Crowned by Two Angels' +p152511 +sg25270 +S'German 15th Century' +p152512 +sg25273 +S'Schreiber, no. 2869' +p152513 +sg25275 +S'\nwhite line woodcut' +p152514 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5c1.jpg' +p152515 +sg25267 +g27 +sa(dp152516 +g25268 +S'Mars' +p152517 +sg25270 +S'Sebald Beham' +p152518 +sg25273 +S'engraving' +p152519 +sg25275 +S'unknown date\n' +p152520 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a84e.jpg' +p152521 +sg25267 +g27 +sa(dp152522 +g25268 +S'The Virgin Crowned by Two Angels' +p152523 +sg25270 +S'German 15th Century' +p152524 +sg25273 +S'Schreiber, no. 2869' +p152525 +sg25275 +S'\nwhite line woodcut' +p152526 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5c0.jpg' +p152527 +sg25267 +g27 +sa(dp152528 +g25268 +S'Three Breton Women with Infants' +p152529 +sg25270 +S'Armand S\xc3\xa9guin' +p152530 +sg25273 +S'color woodcut' +p152531 +sg25275 +S'1894' +p152532 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bba.jpg' +p152533 +sg25267 +g27 +sa(dp152534 +g25273 +S'copper plate worked in drypoint' +p152535 +sg25267 +g27 +sg25275 +S'unknown date\n' +p152536 +sg25268 +S'Drydock' +p152537 +sg25270 +S'Morris Atkinson Blackburn' +p152538 +sa(dp152539 +g25268 +S'Michel Larcher' +p152540 +sg25270 +S'Abraham Bosse' +p152541 +sg25273 +S'engraving' +p152542 +sg25275 +S'1647' +p152543 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008523.jpg' +p152544 +sg25267 +g27 +sa(dp152545 +g25273 +S'drypoint' +p152546 +sg25267 +g27 +sg25275 +S'unknown date\n' +p152547 +sg25268 +S'The Crenellated Hill' +p152548 +sg25270 +S'Louise Boyer' +p152549 +sa(dp152550 +g25273 +S'aquatint and etching' +p152551 +sg25267 +g27 +sg25275 +S'1951' +p152552 +sg25268 +S'Village in the Sun' +p152553 +sg25270 +S'Charles Merrick Capps' +p152554 +sa(dp152555 +g25273 +S'lithograph' +p152556 +sg25267 +g27 +sg25275 +S'1949/1950' +p152557 +sg25268 +S'Bengalese Sisters' +p152558 +sg25270 +S'Federico Castell\xc3\xb3n' +p152559 +sa(dp152560 +g25273 +S'lithograph' +p152561 +sg25267 +g27 +sg25275 +S'unknown date\n' +p152562 +sg25268 +S'Waiting Women' +p152563 +sg25270 +S'Federico Castell\xc3\xb3n' +p152564 +sa(dp152565 +g25273 +S'screenprint' +p152566 +sg25267 +g27 +sg25275 +S'unknown date\n' +p152567 +sg25268 +S'Long Wharf' +p152568 +sg25270 +S'John Russell Clift' +p152569 +sa(dp152570 +g25273 +S'soft-ground etching' +p152571 +sg25267 +g27 +sg25275 +S'1950' +p152572 +sg25268 +S'A Moorland Village, Evening' +p152573 +sg25270 +S'Leslie Cope' +p152574 +sa(dp152575 +g25268 +S'Sol' +p152576 +sg25270 +S'Sebald Beham' +p152577 +sg25273 +S'engraving' +p152578 +sg25275 +S'unknown date\n' +p152579 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a84d.jpg' +p152580 +sg25267 +g27 +sa(dp152581 +g25273 +S'wood engraving' +p152582 +sg25267 +g27 +sg25275 +S'1952' +p152583 +sg25268 +S'Mill on the Aspetuck' +p152584 +sg25270 +S'John H. De Pol' +p152585 +sa(dp152586 +g25273 +S'lithograph' +p152587 +sg25267 +g27 +sg25275 +S'1951' +p152588 +sg25268 +S'Off the Coast' +p152589 +sg25270 +S'Lyonel Feininger' +p152590 +sa(dp152591 +g25273 +S'lithograph' +p152592 +sg25267 +g27 +sg25275 +S'unknown date\n' +p152593 +sg25268 +S'Wood Owl' +p152594 +sg25270 +S'Hans Fischer' +p152595 +sa(dp152596 +g25273 +S'drypoint' +p152597 +sg25267 +g27 +sg25275 +S'unknown date\n' +p152598 +sg25268 +S'Derelict' +p152599 +sg25270 +S'Isac Friedlander' +p152600 +sa(dp152601 +g25268 +S'The Bathers' +p152602 +sg25270 +S'Emil Ganso' +p152603 +sg25273 +S'wood engraving' +p152604 +sg25275 +S'1951' +p152605 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00103/a00103e3.jpg' +p152606 +sg25267 +g27 +sa(dp152607 +g25268 +S'Stephanus Paschinus' +p152608 +sg25270 +S'L\xc3\xa9onard Gaultier' +p152609 +sg25273 +S'engraving' +p152610 +sg25275 +S'1617' +p152611 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000845e.jpg' +p152612 +sg25267 +g27 +sa(dp152613 +g25268 +S'Henry de Bourbon, Prince de Conde' +p152614 +sg25270 +S'L\xc3\xa9onard Gaultier' +p152615 +sg25273 +S'engraving' +p152616 +sg25275 +S'1613' +p152617 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000846b.jpg' +p152618 +sg25267 +g27 +sa(dp152619 +g25268 +S'David Chabodius' +p152620 +sg25270 +S'L\xc3\xa9onard Gaultier' +p152621 +sg25273 +S'engraving' +p152622 +sg25275 +S'unknown date\n' +p152623 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008452.jpg' +p152624 +sg25267 +g27 +sa(dp152625 +g25273 +S'drypoint' +p152626 +sg25267 +g27 +sg25275 +S'1952' +p152627 +sg25268 +S'The Tempest' +p152628 +sg25270 +S'Trude Hanscom' +p152629 +sa(dp152630 +g25273 +S'drypoint' +p152631 +sg25267 +g27 +sg25275 +S'1951' +p152632 +sg25268 +S'Wells-on-Sea' +p152633 +sg25270 +S'Martin Hardie' +p152634 +sa(dp152635 +g25268 +S'Venus' +p152636 +sg25270 +S'Sebald Beham' +p152637 +sg25273 +S'engraving' +p152638 +sg25275 +S'unknown date\n' +p152639 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a84c.jpg' +p152640 +sg25267 +g27 +sa(dp152641 +g25273 +S'lithograph' +p152642 +sg25267 +g27 +sg25275 +S'1951' +p152643 +sg25268 +S'Nocturne' +p152644 +sg25270 +S'Victoria Hutson Huntley' +p152645 +sa(dp152646 +g25273 +S'woodcut' +p152647 +sg25267 +g27 +sg25275 +S'1951' +p152648 +sg25268 +S'Queer House' +p152649 +sg25270 +S'Norman Kent' +p152650 +sa(dp152651 +g25268 +S'Cichla, Aenea' +p152652 +sg25270 +S'Charles Alexandre Lesueur' +p152653 +sg25273 +S'lithograph' +p152654 +sg25275 +S'1822' +p152655 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098c7.jpg' +p152656 +sg25267 +g27 +sa(dp152657 +g25273 +S'color woodcut' +p152658 +sg25267 +g27 +sg25275 +S'1950' +p152659 +sg25268 +S'Don Quixote' +p152660 +sg25270 +S'Hans Alexander Mueller' +p152661 +sa(dp152662 +g25273 +S'etching and drypoint on wove paper' +p152663 +sg25267 +g27 +sg25275 +S'1950' +p152664 +sg25268 +S'Donner Summit' +p152665 +sg25270 +S'Roi Partridge' +p152666 +sa(dp152667 +g25273 +S'color lithograph' +p152668 +sg25267 +g27 +sg25275 +S'1951' +p152669 +sg25268 +S'November Oak' +p152670 +sg25270 +S'Otis Philbrick' +p152671 +sa(dp152672 +g25268 +S'Corrida. Wounded Female Torero III (Corrida. Femme Torero bless\xc3\xa9e III)' +p152673 +sg25270 +S'Pablo Picasso' +p152674 +sg25273 +S'etching and aquatint' +p152675 +sg25275 +S'1933' +p152676 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee7c.jpg' +p152677 +sg25267 +g27 +sa(dp152678 +g25268 +S'Head of a Girl' +p152679 +sg25270 +S'Pablo Picasso' +p152680 +sg25273 +S'etching [restrike from top part of cancelled plate]' +p152681 +sg25275 +S'published 1945' +p152682 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee9e.jpg' +p152683 +sg25267 +g27 +sa(dp152684 +g25273 +S'etching' +p152685 +sg25267 +g27 +sg25275 +S'1951' +p152686 +sg25268 +S'Spoleto - Italy' +p152687 +sg25270 +S'Ernest David Roth' +p152688 +sa(dp152689 +g25273 +S'aquatint' +p152690 +sg25267 +g27 +sg25275 +S'published 1930' +p152691 +sg25268 +S'Le clown jaune' +p152692 +sg25270 +S'Georges Rouault' +p152693 +sa(dp152694 +g25268 +S'Mercury' +p152695 +sg25270 +S'Sebald Beham' +p152696 +sg25273 +S'engraving' +p152697 +sg25275 +S'unknown date\n' +p152698 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a84a.jpg' +p152699 +sg25267 +g27 +sa(dp152700 +g25273 +S'engraving' +p152701 +sg25267 +g27 +sg25275 +S'1950' +p152702 +sg25268 +S'Peaceful Afternoon' +p152703 +sg25270 +S'Carl Max Schultheiss' +p152704 +sa(dp152705 +g25273 +S'wood engraving' +p152706 +sg25267 +g27 +sg25275 +S'1952' +p152707 +sg25268 +S'Warm Afternoon' +p152708 +sg25270 +S'Nora Spicer Unwin' +p152709 +sa(dp152710 +g25273 +S'color lithograph' +p152711 +sg25267 +g27 +sg25275 +S'1949' +p152712 +sg25268 +S'The Colosseum' +p152713 +sg25270 +S'Emil Weddige' +p152714 +sa(dp152715 +g25268 +S'Le General Comte Sebastiani' +p152716 +sg25270 +S'Horace Vernet' +p152717 +sg25273 +S'lithograph' +p152718 +sg25275 +S'unknown date\n' +p152719 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ea8.jpg' +p152720 +sg25267 +g27 +sa(dp152721 +g25268 +S'Ames solitaires' +p152722 +sg25270 +S'Edouard Vuillard' +p152723 +sg25273 +S'lithograph' +p152724 +sg25275 +S'1893' +p152725 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a061.jpg' +p152726 +sg25267 +g27 +sa(dp152727 +g25268 +S"Lisez la revue blanche; Un nuit d'Avril Ceos, L'image" +p152728 +sg25270 +S'Edouard Vuillard' +p152729 +sg25273 +S'lithograph' +p152730 +sg25275 +S'1894' +p152731 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a062.jpg' +p152732 +sg25267 +g27 +sa(dp152733 +g25273 +S'mezzotint' +p152734 +sg25267 +g27 +sg25275 +S'1949' +p152735 +sg25268 +S'Grain Thrashers' +p152736 +sg25270 +S'Reynold Henry Weidenaar' +p152737 +sa(dp152738 +g25273 +S'mezzotint' +p152739 +sg25267 +g27 +sg25275 +S'unknown date\n' +p152740 +sg25268 +S'Demolition in the Plaza del Toro' +p152741 +sg25270 +S'Reynold Henry Weidenaar' +p152742 +sa(dp152743 +g25268 +S'The Biglin Brothers Racing' +p152744 +sg25270 +S'Thomas Eakins' +p152745 +sg25273 +S'oil on canvas' +p152746 +sg25275 +S'1872' +p152747 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000008e.jpg' +p152748 +sg25267 +S"In the decade following the Civil War, rowing became one of\r\nAmerica’s most popular spectator sports. When its champions,\r\nthe Biglin brothers of New York, visited Philadelphia in the\r\nearly 1870s, Thomas Eakins made numerous paintings and\r\ndrawings of them and other racers.\r\nHere, the bank of the Schuylkill River divides the composition\r\nin two. The boatmen and the entering prow of a competing\r\ncraft fill the lower half with their immediate, large-scale\r\npresence. The upper and distant half contains a four-man rowing\r\ncrew, crowds on the shore, and spectators following in flagdecked\r\nsteamboats.\n Himself an amateur oarsman and a friend of the Biglins,\r\nEakins portrays John with his blade still feathered, almost at\r\nthe end of his return motion. Barney, a split-second ahead in\r\nhis stroke, watches for his younger brother’s oar to bite the\r\nwater. Both ends of the Biglins’ pair-oared boat project beyond\r\nthe picture’s edges, generating a sense of urgency, as does the\r\nother prow jutting suddenly into view.\n The precision of Eakins’ style reflects his upbringing as the\r\nson of a teacher of penmanship. He studied under academic\r\nartists in Paris and traveled in Europe from 1866 to 1870. To further\r\nhis understanding of anatomy, Eakins participated in dissections\r\nat Philadelphia's Jefferson Medical College in 1872-1874.\n " +p152749 +sa(dp152750 +g25268 +S"The Man of Affairs (L'homme d'affaires)" +p152751 +sg25270 +S'Artist Information (' +p152752 +sg25273 +S'French, 1808 - 1879' +p152753 +sg25275 +S'(related artist)' +p152754 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a0005410.jpg' +p152755 +sg25267 +g27 +sa(dp152756 +g25268 +S'Luna' +p152757 +sg25270 +S'Sebald Beham' +p152758 +sg25273 +S'engraving' +p152759 +sg25275 +S'unknown date\n' +p152760 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a849.jpg' +p152761 +sg25267 +g27 +sa(dp152762 +g25268 +S'The Dandy (Le dandy)' +p152763 +sg25270 +S'Artist Information (' +p152764 +sg25273 +S'French, 1808 - 1879' +p152765 +sg25275 +S'(related artist)' +p152766 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a0005411.jpg' +p152767 +sg25267 +g27 +sa(dp152768 +g25268 +S'Violet' +p152769 +sg25270 +S'George Fuller' +p152770 +sg25273 +S'oil on canvas' +p152771 +sg25275 +S'1882' +p152772 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000c5.jpg' +p152773 +sg25267 +g27 +sa(dp152774 +g25268 +S'Agnes Gordon Cochran Higginson (Mrs. Stephen Higginson)' +p152775 +sg25270 +S'George Fuller' +p152776 +sg25273 +S'oil on canvas' +p152777 +sg25275 +S'1876' +p152778 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000c6.jpg' +p152779 +sg25267 +g27 +sa(dp152780 +g25268 +S'Marina Piccola, Capri' +p152781 +sg25270 +S'William Stanley Haseltine' +p152782 +sg25273 +S'oil on paper on canvas' +p152783 +sg25275 +S'c. 1858' +p152784 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000e2.jpg' +p152785 +sg25267 +g27 +sa(dp152786 +g25268 +S'Andrew W. Mellon' +p152787 +sg25270 +S'Gari Melchers' +p152788 +sg25273 +S'oil on canvas' +p152789 +sg25275 +S'1930' +p152790 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000165.jpg' +p152791 +sg25267 +g27 +sa(dp152792 +g25268 +S'Banks of the Marne (Bord de la Marne)' +p152793 +sg25270 +S'Alphonse Legros' +p152794 +sg25273 +S'drypoint and (etching?)' +p152795 +sg25275 +S'unknown date\n' +p152796 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009911.jpg' +p152797 +sg25267 +g27 +sa(dp152798 +g25268 +S'Banks of the Marne (Bord de la Marne)' +p152799 +sg25270 +S'Alphonse Legros' +p152800 +sg25273 +S'drypoint and (etching?) on light green paper' +p152801 +sg25275 +S'unknown date\n' +p152802 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000990e.jpg' +p152803 +sg25267 +g27 +sa(dp152804 +g25268 +S'Head of an Old Man (Etude de tete)' +p152805 +sg25270 +S'Alphonse Legros' +p152806 +sg25273 +S'etching' +p152807 +sg25275 +S'unknown date\n' +p152808 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000991a.jpg' +p152809 +sg25267 +g27 +sa(dp152810 +g25268 +S"Egg-sellers, 1st plate (Les marchandes d'oeufs)" +p152811 +sg25270 +S'Alphonse Legros' +p152812 +sg25273 +S'etching and drypoint' +p152813 +sg25275 +S'unknown date\n' +p152814 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009917.jpg' +p152815 +sg25267 +g27 +sa(dp152816 +g25268 +S'Storm (Un orage)' +p152817 +sg25270 +S'Alphonse Legros' +p152818 +sg25273 +S'drypoint and (etching?) on light green paper' +p152819 +sg25275 +S'unknown date\n' +p152820 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bc0.jpg' +p152821 +sg25267 +g27 +sa(dp152822 +g25268 +S'Allegory of Christianity' +p152823 +sg25270 +S'Sebald Beham' +p152824 +sg25273 +S'engraving' +p152825 +sg25275 +S'unknown date\n' +p152826 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a852.jpg' +p152827 +sg25267 +g27 +sa(dp152828 +g25268 +S'Storm (Un orage)' +p152829 +sg25270 +S'Alphonse Legros' +p152830 +sg25273 +S'drypoint and (etching?) on light green paper' +p152831 +sg25275 +S'unknown date\n' +p152832 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bc2.jpg' +p152833 +sg25267 +g27 +sa(dp152834 +g25268 +S'Willows (Les saules)' +p152835 +sg25270 +S'Alphonse Legros' +p152836 +sg25273 +S'drypoint' +p152837 +sg25275 +S'unknown date\n' +p152838 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bc3.jpg' +p152839 +sg25267 +g27 +sa(dp152840 +g25268 +S'Hill with Bushes (La butte aux brousailles)' +p152841 +sg25270 +S'Alphonse Legros' +p152842 +sg25273 +S'etching and drypoint' +p152843 +sg25275 +S'unknown date\n' +p152844 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009928.jpg' +p152845 +sg25267 +g27 +sa(dp152846 +g25268 +S'Chickweed Merchant (Marchand de mouron)' +p152847 +sg25270 +S'Alphonse Legros' +p152848 +sg25273 +S'etching? and drypoint' +p152849 +sg25275 +S'unknown date\n' +p152850 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009921.jpg' +p152851 +sg25267 +g27 +sa(dp152852 +g25268 +S'Banks of the Saint-Pre (Rive du Saint-Pre)' +p152853 +sg25270 +S'Alphonse Legros' +p152854 +sg25273 +S'etching' +p152855 +sg25275 +S'unknown date\n' +p152856 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009926.jpg' +p152857 +sg25267 +g27 +sa(dp152858 +g25268 +S'Banks of the Saint-Pre (Rive du Saint-Pre)' +p152859 +sg25270 +S'Alphonse Legros' +p152860 +sg25273 +S'etching?' +p152861 +sg25275 +S'unknown date\n' +p152862 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009927.jpg' +p152863 +sg25267 +g27 +sa(dp152864 +g25268 +S'Edge of a Wood (Lisiere de bois)' +p152865 +sg25270 +S'Alphonse Legros' +p152866 +sg25273 +S'etching and drypoint?' +p152867 +sg25275 +S'unknown date\n' +p152868 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b96.jpg' +p152869 +sg25267 +g27 +sa(dp152870 +g25268 +S'Banks of the Venelle (Bord de la Venelle)' +p152871 +sg25270 +S'Alphonse Legros' +p152872 +sg25273 +S'etching? and drypoint' +p152873 +sg25275 +S'unknown date\n' +p152874 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b98.jpg' +p152875 +sg25267 +g27 +sa(dp152876 +g25268 +S'Fagot-cutter (Le coupeur de fagots)' +p152877 +sg25270 +S'Alphonse Legros' +p152878 +sg25273 +S'etching and drypoint' +p152879 +sg25275 +S'unknown date\n' +p152880 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b9e.jpg' +p152881 +sg25267 +g27 +sa(dp152882 +g25268 +S"Stand of Trees (Bouquet d'arbres)" +p152883 +sg25270 +S'Alphonse Legros' +p152884 +sg25273 +S'etching? and drypoint' +p152885 +sg25275 +S'unknown date\n' +p152886 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b94.jpg' +p152887 +sg25267 +g27 +sa(dp152888 +g25268 +S'Fides' +p152889 +sg25270 +S'Sebald Beham' +p152890 +sg25273 +S'engraving' +p152891 +sg25275 +S'unknown date\n' +p152892 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a857.jpg' +p152893 +sg25267 +g27 +sa(dp152894 +g25268 +S'Head of a Young Girl (Tete de jeune fille)' +p152895 +sg25270 +S'Alphonse Legros' +p152896 +sg25273 +S'etching and drypoint' +p152897 +sg25275 +S'unknown date\n' +p152898 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bae.jpg' +p152899 +sg25267 +g27 +sa(dp152900 +g25268 +S'Small Hill (Le coteau)' +p152901 +sg25270 +S'Alphonse Legros' +p152902 +sg25273 +S'etching' +p152903 +sg25275 +S'unknown date\n' +p152904 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bab.jpg' +p152905 +sg25267 +g27 +sa(dp152906 +g25268 +S'Path through the Woods (Sentier sous bois)' +p152907 +sg25270 +S'Alphonse Legros' +p152908 +sg25273 +S'drypoint and (etching?)' +p152909 +sg25275 +S'unknown date\n' +p152910 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009ba8.jpg' +p152911 +sg25267 +g27 +sa(dp152912 +g25268 +S'Antique Dealer B...' +p152913 +sg25270 +S'Alphonse Legros' +p152914 +sg25273 +S'etching and drypoint' +p152915 +sg25275 +S'unknown date\n' +p152916 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bd7.jpg' +p152917 +sg25267 +g27 +sa(dp152918 +g25268 +S'English Peasant (Paysan anglais)' +p152919 +sg25270 +S'Alphonse Legros' +p152920 +sg25273 +S'etching and drypoint?' +p152921 +sg25275 +S'unknown date\n' +p152922 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bcc.jpg' +p152923 +sg25267 +g27 +sa(dp152924 +g25268 +S'Remembrance of My Village (Souvenir de mon village)' +p152925 +sg25270 +S'Alphonse Legros' +p152926 +sg25273 +S'etching? and drypoint' +p152927 +sg25275 +S'unknown date\n' +p152928 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bcd.jpg' +p152929 +sg25267 +g27 +sa(dp152930 +g25268 +S"Corner of a Path (Au coin d'un chemin)" +p152931 +sg25270 +S'Alphonse Legros' +p152932 +sg25273 +S'drypoint' +p152933 +sg25275 +S'unknown date\n' +p152934 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009be1.jpg' +p152935 +sg25267 +g27 +sa(dp152936 +g25268 +S'Meditation (La meditation)' +p152937 +sg25270 +S'Alphonse Legros' +p152938 +sg25273 +S'etching? and drypoint' +p152939 +sg25275 +S'unknown date\n' +p152940 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009be5.jpg' +p152941 +sg25267 +g27 +sa(dp152942 +g25268 +S'Along the Marne (Sur la Marne)' +p152943 +sg25270 +S'Alphonse Legros' +p152944 +sg25273 +S'etching and drypoint' +p152945 +sg25275 +S'unknown date\n' +p152946 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009be7.jpg' +p152947 +sg25267 +g27 +sa(dp152948 +g25268 +S'View of a Farm (La ferme de Valoux)' +p152949 +sg25270 +S'Alphonse Legros' +p152950 +sg25273 +S'etching and drypoint' +p152951 +sg25275 +S'unknown date\n' +p152952 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009be0.jpg' +p152953 +sg25267 +g27 +sa(dp152954 +g25268 +S'Cognitio' +p152955 +sg25270 +S'Sebald Beham' +p152956 +sg25273 +S'engraving' +p152957 +sg25275 +S'unknown date\n' +p152958 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a853.jpg' +p152959 +sg25267 +g27 +sa(dp152960 +g25268 +S'Rope-yards (Les corderies)' +p152961 +sg25270 +S'Alphonse Legros' +p152962 +sg25273 +S'etching and drypoint' +p152963 +sg25275 +S'unknown date\n' +p152964 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009be3.jpg' +p152965 +sg25267 +g27 +sa(dp152966 +g25268 +S'The Old Race-grounds at Montrouge (Les vielles carriers de Montrouge)' +p152967 +sg25270 +S'Alphonse Legros' +p152968 +sg25273 +S'etching? and drypoint' +p152969 +sg25275 +S'unknown date\n' +p152970 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009be4.jpg' +p152971 +sg25267 +g27 +sa(dp152972 +g25268 +S'In the Forest of Conteville (Dans la foret de Conteville)' +p152973 +sg25270 +S'Alphonse Legros' +p152974 +sg25273 +S'etching' +p152975 +sg25275 +S'unknown date\n' +p152976 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bd8.jpg' +p152977 +sg25267 +g27 +sa(dp152978 +g25268 +S'Old Village (Ville vieille)' +p152979 +sg25270 +S'Alphonse Legros' +p152980 +sg25273 +S'etching and drypoint' +p152981 +sg25275 +S'unknown date\n' +p152982 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bf5.jpg' +p152983 +sg25267 +g27 +sa(dp152984 +g25268 +S'View of a Farm, 2nd plate (La ferme de Bienheureux)' +p152985 +sg25270 +S'Alphonse Legros' +p152986 +sg25273 +S'etching' +p152987 +sg25275 +S'unknown date\n' +p152988 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bec.jpg' +p152989 +sg25267 +g27 +sa(dp152990 +g25268 +S"Woods in Winter Sun, 1st plate (Soleil d'hiver dans les bois)" +p152991 +sg25270 +S'Alphonse Legros' +p152992 +sg25273 +S'drypoint and (etching?)' +p152993 +sg25275 +S'unknown date\n' +p152994 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009be8.jpg' +p152995 +sg25267 +g27 +sa(dp152996 +g25268 +S"Landscape: Road to Horville (Paysage: Chemin d'Horville)" +p152997 +sg25270 +S'Alphonse Legros' +p152998 +sg25273 +S'etching and drypoint' +p152999 +sg25275 +S'unknown date\n' +p153000 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c00.jpg' +p153001 +sg25267 +g27 +sa(dp153002 +g25268 +S"Landscape: Road to Horville (Paysage: Chemin d'Horville)" +p153003 +sg25270 +S'Alphonse Legros' +p153004 +sg25273 +S'etching' +p153005 +sg25275 +S'unknown date\n' +p153006 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c02.jpg' +p153007 +sg25267 +g27 +sa(dp153008 +g25268 +S'Desperate Man (Le desespere)' +p153009 +sg25270 +S'Alphonse Legros' +p153010 +sg25273 +S'etching and drypoint retouched with brown and grey? ink' +p153011 +sg25275 +S'unknown date\n' +p153012 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bfc.jpg' +p153013 +sg25267 +g27 +sa(dp153014 +g25268 +S'Landscape (Un paysage)' +p153015 +sg25270 +S'Alphonse Legros' +p153016 +sg25273 +S'etching and drypoint' +p153017 +sg25275 +S'unknown date\n' +p153018 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c06.jpg' +p153019 +sg25267 +g27 +sa(dp153020 +g25268 +S'Charitas' +p153021 +sg25270 +S'Sebald Beham' +p153022 +sg25273 +S'engraving' +p153023 +sg25275 +S'unknown date\n' +p153024 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a881.jpg' +p153025 +sg25267 +g27 +sa(dp153026 +g25268 +S"The Prodigal Son, 3rd plate (L'enfant prodigue)" +p153027 +sg25270 +S'Alphonse Legros' +p153028 +sg25273 +S'etching and drypoint' +p153029 +sg25275 +S'unknown date\n' +p153030 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bfd.jpg' +p153031 +sg25267 +g27 +sa(dp153032 +g25268 +S"The Prodigal Son, 3rd plate (L'enfant prodigue)" +p153033 +sg25270 +S'Alphonse Legros' +p153034 +sg25273 +S'etching and drypoint' +p153035 +sg25275 +S'unknown date\n' +p153036 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bff.jpg' +p153037 +sg25267 +g27 +sa(dp153038 +g25268 +S'Plate made for an Exhibition at the Dunthorne Home (Planche faite pour une exposition chez Dunthorne)' +p153039 +sg25270 +S'Alphonse Legros' +p153040 +sg25273 +S'etching and drypoint' +p153041 +sg25275 +S'unknown date\n' +p153042 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c01.jpg' +p153043 +sg25267 +g27 +sa(dp153044 +g25268 +S'Rustic Scene (Scene rustique)' +p153045 +sg25270 +S'Alphonse Legros' +p153046 +sg25273 +S'etching and drypoint' +p153047 +sg25275 +S'unknown date\n' +p153048 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c07.jpg' +p153049 +sg25267 +g27 +sa(dp153050 +g25268 +S'Sleeping Beggar (Mendiant endormi)' +p153051 +sg25270 +S'Alphonse Legros' +p153052 +sg25273 +S'etching and drypoint' +p153053 +sg25275 +S'unknown date\n' +p153054 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bfb.jpg' +p153055 +sg25267 +g27 +sa(dp153056 +g25268 +S'Woman of the Marketplace (Femme du marche)' +p153057 +sg25270 +S'Alphonse Legros' +p153058 +sg25273 +S'etching and drypoint' +p153059 +sg25275 +S'unknown date\n' +p153060 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c0e.jpg' +p153061 +sg25267 +g27 +sa(dp153062 +g25268 +S'Thinker (Le penseur)' +p153063 +sg25270 +S'Alphonse Legros' +p153064 +sg25273 +S'etching and aquatint' +p153065 +sg25275 +S'unknown date\n' +p153066 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c0d.jpg' +p153067 +sg25267 +g27 +sa(dp153068 +g25268 +S'Along the Terne (Sur la terne)' +p153069 +sg25270 +S'Alphonse Legros' +p153070 +sg25273 +S'etching? and drypoint' +p153071 +sg25275 +S'unknown date\n' +p153072 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c09.jpg' +p153073 +sg25267 +g27 +sa(dp153074 +g25268 +S'Banks of the Loire (Bord de la Loire)' +p153075 +sg25270 +S'Alphonse Legros' +p153076 +sg25273 +S'etching and drypoint' +p153077 +sg25275 +S'unknown date\n' +p153078 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c0a.jpg' +p153079 +sg25267 +g27 +sa(dp153080 +g25268 +S'Old Chateau (Un vieux chateau)' +p153081 +sg25270 +S'Alphonse Legros' +p153082 +sg25273 +S'etching' +p153083 +sg25275 +S'unknown date\n' +p153084 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c22.jpg' +p153085 +sg25267 +g27 +sa(dp153086 +g25268 +S'Patience' +p153087 +sg25270 +S'Sebald Beham' +p153088 +sg25273 +S'engraving' +p153089 +sg25275 +S'1540' +p153090 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a891.jpg' +p153091 +sg25267 +g27 +sa(dp153092 +g25268 +S"Banks of the Adour (Bord de l'Adour)" +p153093 +sg25270 +S'Alphonse Legros' +p153094 +sg25273 +S'etching' +p153095 +sg25275 +S'unknown date\n' +p153096 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c23.jpg' +p153097 +sg25267 +g27 +sa(dp153098 +g25268 +S'Blacksmith (Le forgeron)' +p153099 +sg25270 +S'Alphonse Legros' +p153100 +sg25273 +S'drypoint and etching' +p153101 +sg25275 +S'unknown date\n' +p153102 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c1b.jpg' +p153103 +sg25267 +g27 +sa(dp153104 +g25268 +S'In the Pyrenees (Dans les Pyrenees)' +p153105 +sg25270 +S'Alphonse Legros' +p153106 +sg25273 +S'etching and drypoint' +p153107 +sg25275 +S'unknown date\n' +p153108 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c25.jpg' +p153109 +sg25267 +g27 +sa(dp153110 +g25268 +S'Riverbank (Bord de la riviere)' +p153111 +sg25270 +S'Alphonse Legros' +p153112 +sg25273 +S'drypoint and (etching?)' +p153113 +sg25275 +S'unknown date\n' +p153114 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c1d.jpg' +p153115 +sg25267 +g27 +sa(dp153116 +g25268 +S'Village (Un village)' +p153117 +sg25270 +S'Alphonse Legros' +p153118 +sg25273 +S'etching and drypoint' +p153119 +sg25275 +S'unknown date\n' +p153120 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c18.jpg' +p153121 +sg25267 +g27 +sa(dp153122 +g25268 +S"The Prodigal Son, 4th plate (L'enfant prodigue)" +p153123 +sg25270 +S'Alphonse Legros' +p153124 +sg25273 +S'etching and drypoint printed in bistre' +p153125 +sg25275 +S'unknown date\n' +p153126 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c34.jpg' +p153127 +sg25267 +g27 +sa(dp153128 +g25268 +S'Near the Woods (Pres du bois)' +p153129 +sg25270 +S'Alphonse Legros' +p153130 +sg25273 +S'drypoint and (etching?)' +p153131 +sg25275 +S'unknown date\n' +p153132 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c29.jpg' +p153133 +sg25267 +g27 +sa(dp153134 +g25268 +S'Saint Maurice in Bourgogne (Saint Maurice en Bourgogne)' +p153135 +sg25270 +S'Alphonse Legros' +p153136 +sg25273 +S'etching on very light green paper' +p153137 +sg25275 +S'unknown date\n' +p153138 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c2a.jpg' +p153139 +sg25267 +g27 +sa(dp153140 +g25268 +S'Professor Huxley, 2nd plate' +p153141 +sg25270 +S'Alphonse Legros' +p153142 +sg25273 +S'lithograph' +p153143 +sg25275 +S'unknown date\n' +p153144 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c33.jpg' +p153145 +sg25267 +g27 +sa(dp153146 +g25268 +S'Landscape (Paysage)' +p153147 +sg25270 +S'Alphonse Legros' +p153148 +sg25273 +S'etching and drypoint' +p153149 +sg25275 +S'unknown date\n' +p153150 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c3b.jpg' +p153151 +sg25267 +g27 +sa(dp153152 +g25268 +S'Fortune' +p153153 +sg25270 +S'Sebald Beham' +p153154 +sg25273 +S'engraving' +p153155 +sg25275 +S'1541' +p153156 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a88e.jpg' +p153157 +sg25267 +g27 +sa(dp153158 +g25268 +S'Fagot-gatherers (Les fagottiers)' +p153159 +sg25270 +S'Alphonse Legros' +p153160 +sg25273 +S'etching and drypoint' +p153161 +sg25275 +S'unknown date\n' +p153162 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c45.jpg' +p153163 +sg25267 +g27 +sa(dp153164 +g25268 +S'Portrait of a Lady' +p153165 +sg25270 +S'Artist Information (' +p153166 +sg25273 +S'French, 1707 - 1771' +p153167 +sg25275 +S'(related artist)' +p153168 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005aa1.jpg' +p153169 +sg25267 +g27 +sa(dp153170 +g25268 +S'Urn with Grotesque Masks' +p153171 +sg25270 +S'Florentine 16th Century' +p153172 +sg25273 +S'porphyry' +p153173 +sg25275 +S'16th century' +p153174 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d79.jpg' +p153175 +sg25267 +g27 +sa(dp153176 +g25268 +S'The Death of Virginia' +p153177 +sg25270 +S'Italian 16th Century' +p153178 +sg25273 +S'sheet: 24.2 x 30.1 cm (9 1/2 x 11 7/8 in.)' +p153179 +sg25275 +S'\nengraving' +p153180 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ff9c.jpg' +p153181 +sg25267 +g27 +sa(dp153182 +g25268 +S'Daniel Webster' +p153183 +sg25270 +S'James Reid Lambdin' +p153184 +sg25273 +S', c. 1850' +p153185 +sg25275 +S'\n' +p153186 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000145.jpg' +p153187 +sg25267 +g27 +sa(dp153188 +g25268 +S'Lincoln and His Son, Tad' +p153189 +sg25270 +S'Franklin C. Courter' +p153190 +sg25273 +S'oil on hardboard' +p153191 +sg25275 +S'c. 1929' +p153192 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000006b.jpg' +p153193 +sg25267 +g27 +sa(dp153194 +g25273 +S'overall: 101.7 x 77.3 cm (40 1/16 x 30 7/16 in.)\r\nframed: 120.7 x 95.3 x 7.3 cm (47 1/2 x 37 1/2 x 2 7/8 in.)' +p153195 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p153196 +sg25268 +S'Portrait of a Man' +p153197 +sg25270 +S'Unknown 18th Century' +p153198 +sa(dp153199 +g25268 +S'Portrait of a Quaker' +p153200 +sg25270 +S'Adolph-Ulrich Wertm\xc3\xbcller' +p153201 +sg25273 +S', 1795' +p153202 +sg25275 +S'\n' +p153203 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e01a.jpg' +p153204 +sg25267 +g27 +sa(dp153205 +g25268 +S'Henry Eichholtz Leman' +p153206 +sg25270 +S'Jacob Eichholtz' +p153207 +sg25273 +S'oil on canvas' +p153208 +sg25275 +S'c. 1835' +p153209 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000a7.jpg' +p153210 +sg25267 +g27 +sa(dp153211 +g25273 +S'overall: 76.1 x 63.3 cm (29 15/16 x 24 15/16 in.)\r\nframed: 84.8 x 72.1 x 4.8 cm (33 3/8 x 28 3/8 x 1 7/8 in.)' +p153212 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p153213 +sg25268 +S'Portrait of a Man' +p153214 +sg25270 +S'American 19th Century' +p153215 +sa(dp153216 +g25268 +S'Misfortune' +p153217 +sg25270 +S'Sebald Beham' +p153218 +sg25273 +S'engraving' +p153219 +sg25275 +S'unknown date\n' +p153220 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a88d.jpg' +p153221 +sg25267 +g27 +sa(dp153222 +g25273 +S'overall (oval): 37.4 x 30 cm (14 3/4 x 11 13/16 in.)\r\nframed: 49.2 x 42.1 x 4.8 cm (19 3/8 x 16 9/16 x 1 7/8 in.)' +p153223 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p153224 +sg25268 +S'Portrait of a Gentleman' +p153225 +sg25270 +S'British 18th Century' +p153226 +sa(dp153227 +g25268 +S'Captain Robert Calder' +p153228 +sg25270 +S'Lemuel Francis Abbott' +p153229 +sg25273 +S'oil on canvas' +p153230 +sg25275 +S'c. 1787/1790' +p153231 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000054d.jpg' +p153232 +sg25267 +g27 +sa(dp153233 +g25268 +S'William Constable' +p153234 +sg25270 +S'Artist Information (' +p153235 +sg25273 +S'American, 1755 - 1828' +p153236 +sg25275 +S'(artist after)' +p153237 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000248.jpg' +p153238 +sg25267 +g27 +sa(dp153239 +g25268 +S'Sir John Dick' +p153240 +sg25270 +S'Gilbert Stuart' +p153241 +sg25273 +S'oil on canvas' +p153242 +sg25275 +S'1783' +p153243 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000249.jpg' +p153244 +sg25267 +g27 +sa(dp153245 +g25273 +S', c. 1790/1800' +p153246 +sg25267 +g27 +sg25275 +S'\n' +p153247 +sg25268 +S'James Massy-Dawson (?)' +p153248 +sg25270 +S'Henry Singleton' +p153249 +sa(dp153250 +g25268 +S'The Miner' +p153251 +sg25270 +S'George Benjamin Luks' +p153252 +sg25273 +S'oil on canvas' +p153253 +sg25275 +S'1925' +p153254 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000152.jpg' +p153255 +sg25267 +g27 +sa(dp153256 +g25268 +S'Queen Victoria' +p153257 +sg25270 +S'Artist Information (' +p153258 +sg25273 +S'German, 1805 - 1873' +p153259 +sg25275 +S'(related artist)' +p153260 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6a7.jpg' +p153261 +sg25267 +g27 +sa(dp153262 +g25268 +S'Moonlight' +p153263 +sg25270 +S'Julian Alden Weir' +p153264 +sg25273 +S'oil on canvas' +p153265 +sg25275 +S'c. 1905' +p153266 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000028f.jpg' +p153267 +sg25267 +g27 +sa(dp153268 +g25268 +S"The Artist's Garden" +p153269 +sg25270 +S'Ralph Albert Blakelock' +p153270 +sg25273 +S'oil on canvas' +p153271 +sg25275 +S'c. 1879/1889' +p153272 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000027.jpg' +p153273 +sg25267 +g27 +sa(dp153274 +g25268 +S'Snow in New York' +p153275 +sg25270 +S'Robert Henri' +p153276 +sg25273 +S'oil on canvas' +p153277 +sg25275 +S'1902' +p153278 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000f0.jpg' +p153279 +sg25267 +S"Robert Henri urged his students in Philadelphia\r\nand New York to reject idealism and to focus\r\ninstead on reality, whether it be banal or harsh.\r\n“Draw your material from the life around you,\r\nfrom all of it. There is beauty in everything if it\r\nlooks beautiful to your eyes. You can find it anywhere,\r\neverywhere.”\n Henri's \n " +p153280 +sa(dp153281 +g25268 +S'Triumphal Procession' +p153282 +sg25270 +S'Sebald Beham' +p153283 +sg25273 +S'engraving' +p153284 +sg25275 +S'unknown date\n' +p153285 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a89f.jpg' +p153286 +sg25267 +g27 +sa(dp153287 +g25268 +S'The Laundresses' +p153288 +sg25270 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p153289 +sg25273 +S'oil on canvas' +p153290 +sg25275 +S'1899' +p153291 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f85.jpg' +p153292 +sg25267 +g27 +sa(dp153293 +g25268 +S'Possibly Franciska Krasinska, Duchess of Courland' +p153294 +sg25270 +S'Angelica Kauffmann' +p153295 +sg25273 +S'oil on canvas' +p153296 +sg25275 +S'c. 1790' +p153297 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005ab5.jpg' +p153298 +sg25267 +g27 +sa(dp153299 +g25268 +S'Italian Girl' +p153300 +sg25270 +S'Jean-Baptiste-Camille Corot' +p153301 +sg25273 +S'oil on canvas' +p153302 +sg25275 +S'c. 1872' +p153303 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d9f.jpg' +p153304 +sg25267 +g27 +sa(dp153305 +g25268 +S'John Adams' +p153306 +sg25270 +S'Gilbert Stuart' +p153307 +sg25273 +S'oil on canvas' +p153308 +sg25275 +S'c. 1800/1815' +p153309 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000024a.jpg' +p153310 +sg25267 +S'John Adams was vice president during both of George Washington\'s terms \n and served as chief executive himself from 1797 to 1801. This likeness was \n begun in Philadelphia during his presidency, and shows Adams at sixty-five \n years of age; however, like its companion portrait, \n \n Although the second president was a patient sitter, the impish painter \n later delighted in telling a friend, "Isn\'t it like? Do you know what he is \n about to do? He is about to sneeze!" (Both the artist and the sitter \n habitually used snuff.)\n In this sketch from life, soft brushstrokes merely suggest rustling \n movement and indistinct contours in the hair and lace. The portrait subtly \n expresses the inquisitive, analytic aspects of Adams\' character; seated low \n in the composition, he confronts the viewer directly.\n The pose of this first study of Adams inspired Stuart\'s replica in the \n \n ' +p153311 +sa(dp153312 +g25268 +S'Abigail Smith Adams (Mrs. John Adams)' +p153313 +sg25270 +S'Gilbert Stuart' +p153314 +sg25273 +S'oil on canvas' +p153315 +sg25275 +S'1800/1815' +p153316 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000024b.jpg' +p153317 +sg25267 +S'Mrs. John Adams felt that "if we mean to have heroes, statesmen and \n philosophers, we should have learned women." Stuart\'s portrait, begun when \n the first lady was fifty-six, captures the patrician beauty of her \n straight nose and arched brows. The forthright painting also leaves little \n doubt about the force of character, intellect, and principles of this \n daughter of a Massachusetts minister.\n This likeness was Stuart\'s only completed picture of Abigail Smith \n Adams. It and its companion piece of her husband, \n \n ' +p153318 +sa(dp153319 +g25268 +S'The Vintagers' +p153320 +sg25270 +S'Auguste Renoir' +p153321 +sg25273 +S'oil on canvas' +p153322 +sg25275 +S'1879' +p153323 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000705.jpg' +p153324 +sg25267 +g27 +sa(dp153325 +g25268 +S'Claude Renoir ("Coco")' +p153326 +sg25270 +S'Auguste Renoir' +p153327 +sg25273 +S'bronze' +p153328 +sg25275 +S'c. 1908' +p153329 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00043/a00043f7.jpg' +p153330 +sg25267 +g27 +sa(dp153331 +g25268 +S'Miss Jean Christie' +p153332 +sg25270 +S'Artist Information (' +p153333 +sg25273 +S'Scottish, 1756 - 1823' +p153334 +sg25275 +S'(related artist)' +p153335 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000053a.jpg' +p153336 +sg25267 +g27 +sa(dp153337 +g25268 +S'George Washington' +p153338 +sg25270 +S'Gilbert Stuart' +p153339 +sg25273 +S'oil on canvas' +p153340 +sg25275 +S'c. 1803/1805' +p153341 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000024c.jpg' +p153342 +sg25267 +g27 +sa(dp153343 +g25268 +S'Ann Barry' +p153344 +sg25270 +S'Gilbert Stuart' +p153345 +sg25273 +S'oil on canvas' +p153346 +sg25275 +S'1803/1805' +p153347 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000024d.jpg' +p153348 +sg25267 +g27 +sa(dp153349 +g25268 +S'Triumphal Procession of the Noble Glorious Women' +p153350 +sg25270 +S'Sebald Beham' +p153351 +sg25273 +S'engraving' +p153352 +sg25275 +S'1549' +p153353 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8a0.jpg' +p153354 +sg25267 +g27 +sa(dp153355 +g25268 +S'Mary Barry' +p153356 +sg25270 +S'Gilbert Stuart' +p153357 +sg25273 +S'oil on canvas' +p153358 +sg25275 +S'1803/1805' +p153359 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000024e.jpg' +p153360 +sg25267 +g27 +sa(dp153361 +g25268 +S'The Bullfight' +p153362 +sg25270 +S'Eugenio Lucas Villamil' +p153363 +sg25273 +S'oil on canvas' +p153364 +sg25275 +S'c. 1890/1900' +p153365 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004a9.jpg' +p153366 +sg25267 +S'This picture was inspired by Goya’s many paintings, drawings,\r\n and prints \r\n of bullrings. Goya often troweled on thick paint textures with the\r\n flexible \r\n blade of his palette knife, just as this later follower did.\n Goya’s own works accurately convey the danger to professional\r\n athletes. \r\n Lucas’ humorous design, however, places two folk contests inside a\r\n formal \r\n arena. During \n ' +p153367 +sa(dp153368 +g25268 +S'Bacchanal with a Wine Vat' +p153369 +sg25270 +S'Andrea Mantegna' +p153370 +sg25273 +S'engraving' +p153371 +sg25275 +S'c. 1475' +p153372 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7c8.jpg' +p153373 +sg25267 +g27 +sa(dp153374 +g25268 +S'Henry Monnier' +p153375 +sg25270 +S'Paul Gavarni' +p153376 +sg25273 +S'lithograph' +p153377 +sg25275 +S'1843' +p153378 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009aa6.jpg' +p153379 +sg25267 +g27 +sa(dp153380 +g25273 +S', unknown date' +p153381 +sg25267 +g27 +sg25275 +S'\n' +p153382 +sg25268 +S'Run' +p153383 +sg25270 +S'Margot Holt Bostick' +p153384 +sa(dp153385 +g25273 +S'etching and engraving' +p153386 +sg25267 +g27 +sg25275 +S'1952' +p153387 +sg25268 +S'North Shore' +p153388 +sg25270 +S'Morris Atkinson Blackburn' +p153389 +sa(dp153390 +g25273 +S'silkscreen' +p153391 +sg25267 +g27 +sg25275 +S'1952' +p153392 +sg25268 +S'Alleyway' +p153393 +sg25270 +S'Morris Atkinson Blackburn' +p153394 +sa(dp153395 +g25273 +S'etching and engraving' +p153396 +sg25267 +g27 +sg25275 +S'1950' +p153397 +sg25268 +S'Construction' +p153398 +sg25270 +S'Morris Atkinson Blackburn' +p153399 +sa(dp153400 +g25268 +S'The Coiffure' +p153401 +sg25270 +S'Mary Cassatt' +p153402 +sg25273 +S'graphite with traces of green watercolor and brown wash mounted on wove paper' +p153403 +sg25275 +S'c. 1891' +p153404 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a00008ba.jpg' +p153405 +sg25267 +g27 +sa(dp153406 +g25268 +S'The Fitting [recto]' +p153407 +sg25270 +S'Mary Cassatt' +p153408 +sg25273 +S'graphite over black chalk on wove paper' +p153409 +sg25275 +S'1890/1891' +p153410 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a00008bb.jpg' +p153411 +sg25267 +g27 +sa(dp153412 +g25268 +S'Melancholia' +p153413 +sg25270 +S'Sebald Beham' +p153414 +sg25273 +S'engraving' +p153415 +sg25275 +S'1539' +p153416 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a890.jpg' +p153417 +sg25267 +g27 +sa(dp153418 +g25273 +S'pale soft-ground transfer adhered to traced lines' +p153419 +sg25267 +g27 +sg25275 +S'1890/1891' +p153420 +sg25268 +S'The Fitting [verso]' +p153421 +sg25270 +S'Mary Cassatt' +p153422 +sa(dp153423 +g25268 +S'View of Venice' +p153424 +sg25270 +S'Mary Cassatt' +p153425 +sg25273 +S'drypoint' +p153426 +sg25275 +S'1887' +p153427 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa31.jpg' +p153428 +sg25267 +g27 +sa(dp153429 +g25268 +S'Susan on a Balcony Holding a Dog [recto]' +p153430 +sg25270 +S'Mary Cassatt' +p153431 +sg25273 +S'graphite' +p153432 +sg25275 +S'c. 1883' +p153433 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e491.jpg' +p153434 +sg25267 +g27 +sa(dp153435 +g25273 +S'transferred soft-ground medium' +p153436 +sg25267 +g27 +sg25275 +S'c. 1883' +p153437 +sg25268 +S'Susan on a Balcony Holding a Dog [verso]' +p153438 +sg25270 +S'Mary Cassatt' +p153439 +sa(dp153440 +g25268 +S'The Picture Book (No. 1)' +p153441 +sg25270 +S'Mary Cassatt' +p153442 +sg25273 +S'graphite' +p153443 +sg25275 +S'c. 1901' +p153444 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e493.jpg' +p153445 +sg25267 +g27 +sa(dp153446 +g25268 +S'The Picture Book (No. 1)' +p153447 +sg25270 +S'Mary Cassatt' +p153448 +sg25273 +S'drypoint' +p153449 +sg25275 +S'c. 1901' +p153450 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa96.jpg' +p153451 +sg25267 +g27 +sa(dp153452 +g25268 +S'Peasant Mother and Child' +p153453 +sg25270 +S'Mary Cassatt' +p153454 +sg25273 +S'drypoint' +p153455 +sg25275 +S'c. 1894' +p153456 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa95.jpg' +p153457 +sg25267 +g27 +sa(dp153458 +g25268 +S"Souvenir of Italy (Souvenir d'Italie)" +p153459 +sg25270 +S'Jean-Baptiste-Camille Corot' +p153460 +sg25273 +S'etching' +p153461 +sg25275 +S'1866' +p153462 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091ad.jpg' +p153463 +sg25267 +g27 +sa(dp153464 +g25268 +S'Dire... que nous avons un fils qui est... avocat...' +p153465 +sg25270 +S'Honor\xc3\xa9 Daumier' +p153466 +sg25273 +S'lithograph' +p153467 +sg25275 +S'1846' +p153468 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009393.jpg' +p153469 +sg25267 +g27 +sa(dp153470 +g25268 +S"Allant gouter ce qu'on est convenu d'appeler..." +p153471 +sg25270 +S'Honor\xc3\xa9 Daumier' +p153472 +sg25273 +S'lithograph' +p153473 +sg25275 +S'1855' +p153474 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094c4.jpg' +p153475 +sg25267 +g27 +sa(dp153476 +g25268 +S'The Impossibility' +p153477 +sg25270 +S'Sebald Beham' +p153478 +sg25273 +S'engraving' +p153479 +sg25275 +S'1549' +p153480 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a88f.jpg' +p153481 +sg25267 +g27 +sa(dp153482 +g25268 +S'Madeleine-Bastille' +p153483 +sg25270 +S'Honor\xc3\xa9 Daumier' +p153484 +sg25273 +S'lithograph' +p153485 +sg25275 +S'1862' +p153486 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094da.jpg' +p153487 +sg25267 +g27 +sa(dp153488 +g25268 +S'A travers les ateliers' +p153489 +sg25270 +S'Honor\xc3\xa9 Daumier' +p153490 +sg25273 +S'lithograph' +p153491 +sg25275 +S'1862' +p153492 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094dd.jpg' +p153493 +sg25267 +g27 +sa(dp153494 +g25268 +S'Le Nouveau Paris' +p153495 +sg25270 +S'Honor\xc3\xa9 Daumier' +p153496 +sg25273 +S'lithograph' +p153497 +sg25275 +S'1862' +p153498 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094d8.jpg' +p153499 +sg25267 +g27 +sa(dp153500 +g25268 +S'Paysagistes au travail' +p153501 +sg25270 +S'Honor\xc3\xa9 Daumier' +p153502 +sg25273 +S'lithograph' +p153503 +sg25275 +S'1862' +p153504 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057c8.jpg' +p153505 +sg25267 +g27 +sa(dp153506 +g25268 +S"En v'la un, il pourrait bien \xc3\xaatre malheureux..." +p153507 +sg25270 +S'Honor\xc3\xa9 Daumier' +p153508 +sg25273 +S'lithograph' +p153509 +sg25275 +S'1862' +p153510 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094d9.jpg' +p153511 +sg25267 +g27 +sa(dp153512 +g25268 +S'En Chemin de fer... un voisin agr\xc3\xa9able' +p153513 +sg25270 +S'Honor\xc3\xa9 Daumier' +p153514 +sg25273 +S'lithograph' +p153515 +sg25275 +S'1862' +p153516 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e0a.jpg' +p153517 +sg25267 +g27 +sa(dp153518 +g25268 +S"Nadar \xc3\xa9levant la Photographie \xc3\xa0 la hauteur de l'Art" +p153519 +sg25270 +S'Honor\xc3\xa9 Daumier' +p153520 +sg25273 +S'lithograph' +p153521 +sg25275 +S'1862' +p153522 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057fa.jpg' +p153523 +sg25267 +g27 +sa(dp153524 +g25268 +S'A la Varenne Saint-Maur' +p153525 +sg25270 +S'Honor\xc3\xa9 Daumier' +p153526 +sg25273 +S'lithograph' +p153527 +sg25275 +S'1862' +p153528 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094d7.jpg' +p153529 +sg25267 +g27 +sa(dp153530 +g25268 +S'The Forge of Vulcan' +p153531 +sg25270 +S'Artist Information (' +p153532 +sg25273 +S'(artist after)' +p153533 +sg25275 +S'\n' +p153534 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dbe.jpg' +p153535 +sg25267 +g27 +sa(dp153536 +g25268 +S'St. Valery sur somme' +p153537 +sg25270 +S'Eug\xc3\xa8ne Isabey' +p153538 +sg25273 +S'graphite on light brown wove paper' +p153539 +sg25275 +S'unknown date\n' +p153540 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070b9.jpg' +p153541 +sg25267 +g27 +sa(dp153542 +g25268 +S'The Lady and Death' +p153543 +sg25270 +S'Sebald Beham' +p153544 +sg25273 +S'engraving' +p153545 +sg25275 +S'1541' +p153546 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a88c.jpg' +p153547 +sg25267 +g27 +sa(dp153548 +g25268 +S'Men Repairing the Boom' +p153549 +sg25270 +S'Eug\xc3\xa8ne Isabey' +p153550 +sg25273 +S'graphite' +p153551 +sg25275 +S'unknown date\n' +p153552 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a0007116.jpg' +p153553 +sg25267 +g27 +sa(dp153554 +g25273 +S'charcoal on wove paper' +p153555 +sg25267 +g27 +sg25275 +S'1925' +p153556 +sg25268 +S'Prisoners Listening to Music' +p153557 +sg25270 +S'K\xc3\xa4the Kollwitz' +p153558 +sa(dp153559 +g25273 +S'charcoal on laid paper' +p153560 +sg25267 +g27 +sg25275 +S'c. 1910/1912' +p153561 +sg25268 +S'Nude' +p153562 +sg25270 +S'K\xc3\xa4the Kollwitz' +p153563 +sa(dp153564 +g25273 +S'black chalk on laid paper' +p153565 +sg25267 +g27 +sg25275 +S'1904/1906' +p153566 +sg25268 +S'Two Nudes' +p153567 +sg25270 +S'K\xc3\xa4the Kollwitz' +p153568 +sa(dp153569 +g25273 +S'charcoal on gray laid paper' +p153570 +sg25267 +g27 +sg25275 +S'c. 1910/1912' +p153571 +sg25268 +S'Nude' +p153572 +sg25270 +S'K\xc3\xa4the Kollwitz' +p153573 +sa(dp153574 +g25273 +S'charcoal on brown wove paper' +p153575 +sg25267 +g27 +sg25275 +S'c. 1928' +p153576 +sg25268 +S'Two Heads' +p153577 +sg25270 +S'K\xc3\xa4the Kollwitz' +p153578 +sa(dp153579 +g25273 +S'charcoal on wove paper' +p153580 +sg25267 +g27 +sg25275 +S'c. 1927/1928' +p153581 +sg25268 +S'Sitzende Frau' +p153582 +sg25270 +S'K\xc3\xa4the Kollwitz' +p153583 +sa(dp153584 +g25273 +S'charcoal on wove paper' +p153585 +sg25267 +g27 +sg25275 +S'1928' +p153586 +sg25268 +S'Portrait of a Young Man' +p153587 +sg25270 +S'K\xc3\xa4the Kollwitz' +p153588 +sa(dp153589 +g25273 +S'lithograph crayon reworked with pen and black ink on transfer paper' +p153590 +sg25267 +g27 +sg25275 +S'1924' +p153591 +sg25268 +S'Self-Portrait' +p153592 +sg25270 +S'K\xc3\xa4the Kollwitz' +p153593 +sa(dp153594 +g25268 +S'Antonin Proust' +p153595 +sg25270 +S'Auguste Rodin' +p153596 +sg25273 +S'drypoint' +p153597 +sg25275 +S'1885' +p153598 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cc2.jpg' +p153599 +sg25267 +g27 +sa(dp153600 +g25268 +S'Death and the Standing Nude Woman' +p153601 +sg25270 +S'Sebald Beham' +p153602 +sg25273 +S'engraving' +p153603 +sg25275 +S'1547' +p153604 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a88a.jpg' +p153605 +sg25267 +g27 +sa(dp153606 +g25273 +S'etching and drypoint' +p153607 +sg25267 +g27 +sg25275 +S'1934' +p153608 +sg25268 +S'Miss Bea' +p153609 +sg25270 +S'Jacques Villon' +p153610 +sa(dp153611 +g25268 +S'Orpheus' +p153612 +sg25270 +S'Agostino dei Musi' +p153613 +sg25273 +S'engraving' +p153614 +sg25275 +S'1528' +p153615 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c760.jpg' +p153616 +sg25267 +g27 +sa(dp153617 +g25273 +S'woodcut' +p153618 +sg25267 +g27 +sg25275 +S'1950' +p153619 +sg25268 +S'Frontispiece' +p153620 +sg25270 +S'Antonio Frasconi' +p153621 +sa(dp153622 +g25273 +S'woodcut' +p153623 +sg25267 +g27 +sg25275 +S'1950' +p153624 +sg25268 +S'Title Page' +p153625 +sg25270 +S'Antonio Frasconi' +p153626 +sa(dp153627 +g25273 +S'woodcut' +p153628 +sg25267 +g27 +sg25275 +S'1950' +p153629 +sg25268 +S'A Man a Boy and a Donkey' +p153630 +sg25270 +S'Antonio Frasconi' +p153631 +sa(dp153632 +g25273 +S'woodcut' +p153633 +sg25267 +g27 +sg25275 +S'1950' +p153634 +sg25268 +S'The Crow and the Pitcher' +p153635 +sg25270 +S'Antonio Frasconi' +p153636 +sa(dp153637 +g25273 +S'woodcut' +p153638 +sg25267 +g27 +sg25275 +S'1950' +p153639 +sg25268 +S'The Dog and the Sheep' +p153640 +sg25270 +S'Antonio Frasconi' +p153641 +sa(dp153642 +g25273 +S'woodcut' +p153643 +sg25267 +g27 +sg25275 +S'1950' +p153644 +sg25268 +S'The Eagle, the Cat, and the Sow' +p153645 +sg25270 +S'Antonio Frasconi' +p153646 +sa(dp153647 +g25273 +S'woodcut' +p153648 +sg25267 +g27 +sg25275 +S'1950' +p153649 +sg25268 +S'The Four Oxen and the Lion' +p153650 +sg25270 +S'Antonio Frasconi' +p153651 +sa(dp153652 +g25273 +S'woodcut' +p153653 +sg25267 +g27 +sg25275 +S'1950' +p153654 +sg25268 +S'The Fox and the Crow' +p153655 +sg25270 +S'Antonio Frasconi' +p153656 +sa(dp153657 +g25268 +S'Death and Three Nude Women' +p153658 +sg25270 +S'Sebald Beham' +p153659 +sg25273 +S'engraving' +p153660 +sg25275 +S'unknown date\n' +p153661 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a889.jpg' +p153662 +sg25267 +g27 +sa(dp153663 +g25273 +S'woodcut' +p153664 +sg25267 +g27 +sg25275 +S'1950' +p153665 +sg25268 +S'The Fox and the Grapes' +p153666 +sg25270 +S'Antonio Frasconi' +p153667 +sa(dp153668 +g25273 +S'woodcut' +p153669 +sg25267 +g27 +sg25275 +S'1950' +p153670 +sg25268 +S'The Hare and the Tortoise' +p153671 +sg25270 +S'Antonio Frasconi' +p153672 +sa(dp153673 +g25273 +S'woodcut' +p153674 +sg25267 +g27 +sg25275 +S'1950' +p153675 +sg25268 +S'The Mock-Bird' +p153676 +sg25270 +S'Antonio Frasconi' +p153677 +sa(dp153678 +g25273 +S'woodcut' +p153679 +sg25267 +g27 +sg25275 +S'1950' +p153680 +sg25268 +S"The Shepherd's Boy and the Wolf" +p153681 +sg25270 +S'Antonio Frasconi' +p153682 +sa(dp153683 +g25273 +S'woodcut' +p153684 +sg25267 +g27 +sg25275 +S'1950' +p153685 +sg25268 +S'The Sun and Wind' +p153686 +sg25270 +S'Antonio Frasconi' +p153687 +sa(dp153688 +g25273 +S'woodcut' +p153689 +sg25267 +g27 +sg25275 +S'1950' +p153690 +sg25268 +S'The Aesop Tree' +p153691 +sg25270 +S'Antonio Frasconi' +p153692 +sa(dp153693 +g25273 +S'woodcut' +p153694 +sg25267 +g27 +sg25275 +S'1950' +p153695 +sg25268 +S'The Dog and the Crocodile' +p153696 +sg25270 +S'Antonio Frasconi' +p153697 +sa(dp153698 +g25273 +S'portfolio with eleven woodcuts on Kochi paper' +p153699 +sg25267 +g27 +sg25275 +S'1953' +p153700 +sg25268 +S'The Fulton Fish Market' +p153701 +sg25270 +S'Antonio Frasconi' +p153702 +sa(dp153703 +g25273 +S'woodcut in red and black on wove paper' +p153704 +sg25267 +g27 +sg25275 +S'1953' +p153705 +sg25268 +S'Signature Page for The Fulton Fish Market' +p153706 +sg25270 +S'Antonio Frasconi' +p153707 +sa(dp153708 +g25273 +S'woodcut in red and black on wove paper' +p153709 +sg25267 +g27 +sg25275 +S'1953' +p153710 +sg25268 +S'Title Page for The Fulton Fish Market' +p153711 +sg25270 +S'Antonio Frasconi' +p153712 +sa(dp153713 +g25268 +S'Madonna and Child and the Infant Saint John in a Landscape' +p153714 +sg25270 +S'Polidoro Lanzani' +p153715 +sg25273 +S'oil on canvas' +p153716 +sg25275 +S'1540/1550' +p153717 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000886.jpg' +p153718 +sg25267 +g27 +sa(dp153719 +g25268 +S"Peasants' Feast" +p153720 +sg25270 +S'Sebald Beham' +p153721 +sg25273 +S'engraving' +p153722 +sg25275 +S'unknown date\n' +p153723 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a888.jpg' +p153724 +sg25267 +g27 +sa(dp153725 +g25273 +S'woodcut in red and black on wove paper' +p153726 +sg25267 +g27 +sg25275 +S'1953' +p153727 +sg25268 +S'Signature Page for The Fulton Fish Market' +p153728 +sg25270 +S'Antonio Frasconi' +p153729 +sa(dp153730 +g25273 +S'woodcut in black on wove paper' +p153731 +sg25267 +g27 +sg25275 +S'1953' +p153732 +sg25268 +S'The Fulton Fish Market' +p153733 +sg25270 +S'Antonio Frasconi' +p153734 +sa(dp153735 +g25273 +S'woodcut in black on wove paper' +p153736 +sg25267 +g27 +sg25275 +S'1953' +p153737 +sg25268 +S'The Fulton Fish Market' +p153738 +sg25270 +S'Antonio Frasconi' +p153739 +sa(dp153740 +g25273 +S'woodcut in black on wove paper' +p153741 +sg25267 +g27 +sg25275 +S'1953' +p153742 +sg25268 +S'The Fulton Fish Market' +p153743 +sg25270 +S'Antonio Frasconi' +p153744 +sa(dp153745 +g25273 +S'woodcut in black on wove paper' +p153746 +sg25267 +g27 +sg25275 +S'1953' +p153747 +sg25268 +S'Fulton Fish Market' +p153748 +sg25270 +S'Antonio Frasconi' +p153749 +sa(dp153750 +g25273 +S'woodcut in black on wove paper' +p153751 +sg25267 +g27 +sg25275 +S'1953' +p153752 +sg25268 +S'The Fulton Fish Market' +p153753 +sg25270 +S'Antonio Frasconi' +p153754 +sa(dp153755 +g25273 +S'woodcut in black on wove paper' +p153756 +sg25267 +g27 +sg25275 +S'1953' +p153757 +sg25268 +S'The Fulton Fish Market' +p153758 +sg25270 +S'Antonio Frasconi' +p153759 +sa(dp153760 +g25273 +S'woodcut in black on wove paper' +p153761 +sg25267 +g27 +sg25275 +S'1953' +p153762 +sg25268 +S'The Fulton Fish Market' +p153763 +sg25270 +S'Antonio Frasconi' +p153764 +sa(dp153765 +g25273 +S'woodcut in black on wove paper' +p153766 +sg25267 +g27 +sg25275 +S'1953' +p153767 +sg25268 +S'Fulton Fish Market' +p153768 +sg25270 +S'Antonio Frasconi' +p153769 +sa(dp153770 +g25273 +S'color woodcut' +p153771 +sg25267 +g27 +sg25275 +S'probably 1953' +p153772 +sg25268 +S'Autumn' +p153773 +sg25270 +S'Antonio Frasconi' +p153774 +sa(dp153775 +g25268 +S'The Market Peasant' +p153776 +sg25270 +S'Sebald Beham' +p153777 +sg25273 +S'engraving' +p153778 +sg25275 +S'unknown date\n' +p153779 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a86a.jpg' +p153780 +sg25267 +g27 +sa(dp153781 +g25273 +S'color woodcut' +p153782 +sg25267 +g27 +sg25275 +S'probably 1953' +p153783 +sg25268 +S'Winter' +p153784 +sg25270 +S'Antonio Frasconi' +p153785 +sa(dp153786 +g25273 +S'color woodcut' +p153787 +sg25267 +g27 +sg25275 +S'1953' +p153788 +sg25268 +S'Spring' +p153789 +sg25270 +S'Antonio Frasconi' +p153790 +sa(dp153791 +g25273 +S'color woodcut' +p153792 +sg25267 +g27 +sg25275 +S'probably 1953' +p153793 +sg25268 +S'Summer' +p153794 +sg25270 +S'Antonio Frasconi' +p153795 +sa(dp153796 +g25268 +S'The Virgin and Child' +p153797 +sg25270 +S'Jean de Gourmont I' +p153798 +sg25273 +S'engraving' +p153799 +sg25275 +S'unknown date\n' +p153800 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083b8.jpg' +p153801 +sg25267 +g27 +sa(dp153802 +g25268 +S'La desgraciada muerte de Pepe Illo en la plaza de Madrid (The Unlucky Death of Pepe Illo in the Ring at Madrid)' +p153803 +sg25270 +S'Francisco de Goya' +p153804 +sg25273 +S'etching, drypoint and burin [working proof]' +p153805 +sg25275 +S'in or before 1816' +p153806 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed90.jpg' +p153807 +sg25267 +g27 +sa(dp153808 +g25273 +S'engraving, etching and aquatint' +p153809 +sg25267 +g27 +sg25275 +S'unknown date\n' +p153810 +sg25268 +S'Train de nuit (Night Train)' +p153811 +sg25270 +S'Terry Haass' +p153812 +sa(dp153813 +g25268 +S'Death of Cleopatra' +p153814 +sg25270 +S'Augustin Hirschvogel' +p153815 +sg25273 +S'etching' +p153816 +sg25275 +S'1547' +p153817 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac2a.jpg' +p153818 +sg25267 +g27 +sa(dp153819 +g25273 +S'etching [made up of 6 parts mounted on cloth and folded]' +p153820 +sg25267 +g27 +sg25275 +S'1547' +p153821 +sg25268 +S'Map of Vienna' +p153822 +sg25270 +S'Augustin Hirschvogel' +p153823 +sa(dp153824 +g25268 +S'The Creation' +p153825 +sg25270 +S'Hans Holbein the Younger' +p153826 +sg25273 +S'woodcut' +p153827 +sg25275 +S'unknown date\n' +p153828 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac8b.jpg' +p153829 +sg25267 +g27 +sa(dp153830 +g25268 +S'Emperor' +p153831 +sg25270 +S'Hans Holbein the Younger' +p153832 +sg25273 +S'woodcut' +p153833 +sg25275 +S'unknown date\n' +p153834 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac8e.jpg' +p153835 +sg25267 +g27 +sa(dp153836 +g25268 +S'Two Street Players and a Girl' +p153837 +sg25270 +S'Sebald Beham' +p153838 +sg25273 +S'engraving' +p153839 +sg25275 +S'unknown date\n' +p153840 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a866.jpg' +p153841 +sg25267 +g27 +sa(dp153842 +g25268 +S'Cardinal' +p153843 +sg25270 +S'Hans Holbein the Younger' +p153844 +sg25273 +S'woodcut' +p153845 +sg25275 +S'unknown date\n' +p153846 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac8a.jpg' +p153847 +sg25267 +g27 +sa(dp153848 +g25268 +S'Bishop' +p153849 +sg25270 +S'Hans Holbein the Younger' +p153850 +sg25273 +S'woodcut' +p153851 +sg25275 +S'unknown date\n' +p153852 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac8c.jpg' +p153853 +sg25267 +g27 +sa(dp153854 +g25268 +S'Duke' +p153855 +sg25270 +S'Hans Holbein the Younger' +p153856 +sg25273 +S'woodcut' +p153857 +sg25275 +S'unknown date\n' +p153858 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac88.jpg' +p153859 +sg25267 +g27 +sa(dp153860 +g25268 +S'Abbess' +p153861 +sg25270 +S'Hans Holbein the Younger' +p153862 +sg25273 +S'woodcut' +p153863 +sg25275 +S'unknown date\n' +p153864 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac89.jpg' +p153865 +sg25267 +g27 +sa(dp153866 +g25268 +S'Counsellor' +p153867 +sg25270 +S'Hans Holbein the Younger' +p153868 +sg25273 +S'woodcut' +p153869 +sg25275 +S'unknown date\n' +p153870 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac82.jpg' +p153871 +sg25267 +g27 +sa(dp153872 +g25268 +S'Parish Priest' +p153873 +sg25270 +S'Hans Holbein the Younger' +p153874 +sg25273 +S'woodcut' +p153875 +sg25275 +S'unknown date\n' +p153876 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac83.jpg' +p153877 +sg25267 +g27 +sa(dp153878 +g25268 +S'Mendicant Friar' +p153879 +sg25270 +S'Hans Holbein the Younger' +p153880 +sg25273 +S'woodcut' +p153881 +sg25275 +S'unknown date\n' +p153882 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac85.jpg' +p153883 +sg25267 +g27 +sa(dp153884 +g25268 +S'Physician' +p153885 +sg25270 +S'Hans Holbein the Younger' +p153886 +sg25273 +S'woodcut' +p153887 +sg25275 +S'unknown date\n' +p153888 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac84.jpg' +p153889 +sg25267 +g27 +sa(dp153890 +g25268 +S'Portrait of a Man' +p153891 +sg25270 +S'Jean-Auguste-Dominique Ingres' +p153892 +sg25273 +S'graphite on parchment, with black ink and green watercolor in a decorative border' +p153893 +sg25275 +S'1796' +p153894 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d49.jpg' +p153895 +sg25267 +g27 +sa(dp153896 +g25273 +S'drypoint' +p153897 +sg25267 +g27 +sg25275 +S'1934' +p153898 +sg25268 +S'Wild Horses' +p153899 +sg25270 +S'Leon Kelly' +p153900 +sa(dp153901 +g25268 +S'Peasant Woman Going to Market' +p153902 +sg25270 +S'Sebald Beham' +p153903 +sg25273 +S'engraving' +p153904 +sg25275 +S'1520' +p153905 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a867.jpg' +p153906 +sg25267 +g27 +sa(dp153907 +g25273 +S'wood engraving' +p153908 +sg25267 +g27 +sg25275 +S'1951' +p153909 +sg25268 +S'A Season in Hell' +p153910 +sg25270 +S'Misch Kohn' +p153911 +sa(dp153912 +g25268 +S'Ferdinand I' +p153913 +sg25270 +S'Hans Sebald Lautensack' +p153914 +sg25273 +S'etching' +p153915 +sg25275 +S'1556' +p153916 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b23f.jpg' +p153917 +sg25267 +g27 +sa(dp153918 +g25268 +S'Nude' +p153919 +sg25270 +S'Wilhelm Lehmbruck' +p153920 +sg25273 +S'red chalk' +p153921 +sg25275 +S'unknown date\n' +p153922 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006eb9.jpg' +p153923 +sg25267 +g27 +sa(dp153924 +g25268 +S'Bathers' +p153925 +sg25270 +S'Max Liebermann' +p153926 +sg25273 +S'wood engraving on wove paper' +p153927 +sg25275 +S'unknown date\n' +p153928 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a00058de.jpg' +p153929 +sg25267 +g27 +sa(dp153930 +g25268 +S'Animal Legend (Tierlegende)' +p153931 +sg25270 +S'Franz Marc' +p153932 +sg25273 +S'woodcut' +p153933 +sg25275 +S'1912' +p153934 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b72b.jpg' +p153935 +sg25267 +g27 +sa(dp153936 +g25268 +S'Saint Christopher on Horseback' +p153937 +sg25270 +S'Master I.A.M. of Zwolle' +p153938 +sg25273 +S'engraving' +p153939 +sg25275 +S'c. 1490' +p153940 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccf7.jpg' +p153941 +sg25267 +g27 +sa(dp153942 +g25268 +S'Faun Family' +p153943 +sg25270 +S'Giovanni Battista Palumba' +p153944 +sg25273 +S'engraving' +p153945 +sg25275 +S'c. 1507' +p153946 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f11.jpg' +p153947 +sg25267 +g27 +sa(dp153948 +g25268 +S'The Mass of Saint Gregory' +p153949 +sg25270 +S'Israhel van Meckenem' +p153950 +sg25273 +S'engraving' +p153951 +sg25275 +S'c. 1490/1500' +p153952 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000af/a000af20.jpg' +p153953 +sg25267 +g27 +sa(dp153954 +g25273 +S'drypoint' +p153955 +sg25267 +g27 +sg25275 +S'unknown date\n' +p153956 +sg25268 +S'Portrait' +p153957 +sg25270 +S'Ludwig Meidner' +p153958 +sa(dp153959 +g25273 +S'etching' +p153960 +sg25267 +g27 +sg25275 +S'1896' +p153961 +sg25268 +S'The Maiden and the Heart (Das Madchen und das Herz)' +p153962 +sg25270 +S'Edvard Munch' +p153963 +sa(dp153964 +g25268 +S'Three Soldiers and a Dog' +p153965 +sg25270 +S'Sebald Beham' +p153966 +sg25273 +S'engraving' +p153967 +sg25275 +S'unknown date\n' +p153968 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a868.jpg' +p153969 +sg25267 +g27 +sa(dp153970 +g25268 +S'Mother and Child' +p153971 +sg25270 +S'Heinrich Nauen' +p153972 +sg25273 +S'etching' +p153973 +sg25275 +S'1919' +p153974 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b742.jpg' +p153975 +sg25267 +g27 +sa(dp153976 +g25273 +S'lithograph' +p153977 +sg25267 +g27 +sg25275 +S'unknown date\n' +p153978 +sg25268 +S'Promenade' +p153979 +sg25270 +S"Frederick O'Hara" +p153980 +sa(dp153981 +g25273 +S'color woodcut' +p153982 +sg25267 +g27 +sg25275 +S'1953' +p153983 +sg25268 +S'Taurina' +p153984 +sg25270 +S"Frederick O'Hara" +p153985 +sa(dp153986 +g25273 +S'engraving (lucite)' +p153987 +sg25267 +g27 +sg25275 +S'unknown date\n' +p153988 +sg25268 +S'The Story' +p153989 +sg25270 +S'Harold Persico Paris' +p153990 +sa(dp153991 +g25273 +S'engraving (lucite)' +p153992 +sg25267 +g27 +sg25275 +S'unknown date\n' +p153993 +sg25268 +S'Where Are We Going?' +p153994 +sg25270 +S'Harold Persico Paris' +p153995 +sa(dp153996 +g25273 +S'engraving (lucite)' +p153997 +sg25267 +g27 +sg25275 +S'unknown date\n' +p153998 +sg25268 +S'The Moloch Eats Every Day' +p153999 +sg25270 +S'Harold Persico Paris' +p154000 +sa(dp154001 +g25273 +S'engraving (lucite)' +p154002 +sg25267 +g27 +sg25275 +S'unknown date\n' +p154003 +sg25268 +S'In Death Together' +p154004 +sg25270 +S'Harold Persico Paris' +p154005 +sa(dp154006 +g25273 +S'engraving (lucite)' +p154007 +sg25267 +g27 +sg25275 +S'unknown date\n' +p154008 +sg25268 +S'Freed' +p154009 +sg25270 +S'Harold Persico Paris' +p154010 +sa(dp154011 +g25273 +S'engraving (lucite)' +p154012 +sg25267 +g27 +sg25275 +S'unknown date\n' +p154013 +sg25268 +S'Death' +p154014 +sg25270 +S'Harold Persico Paris' +p154015 +sa(dp154016 +g25273 +S'engraving (lucite)' +p154017 +sg25267 +g27 +sg25275 +S'unknown date\n' +p154018 +sg25268 +S'We Shall Live' +p154019 +sg25270 +S'Harold Persico Paris' +p154020 +sa(dp154021 +g25268 +S'Standard Bearer and Drummer' +p154022 +sg25270 +S'Sebald Beham' +p154023 +sg25273 +S'engraving' +p154024 +sg25275 +S'1544' +p154025 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a862.jpg' +p154026 +sg25267 +g27 +sa(dp154027 +g25273 +S'engraving (lucite)' +p154028 +sg25267 +g27 +sg25275 +S'unknown date\n' +p154029 +sg25268 +S'Death is a Small Child' +p154030 +sg25270 +S'Harold Persico Paris' +p154031 +sa(dp154032 +g25273 +S'engraving (lucite)' +p154033 +sg25267 +g27 +sg25275 +S'unknown date\n' +p154034 +sg25268 +S'Lost' +p154035 +sg25270 +S'Harold Persico Paris' +p154036 +sa(dp154037 +g25273 +S'engraving (lucite)' +p154038 +sg25267 +g27 +sg25275 +S'unknown date\n' +p154039 +sg25268 +S'In the Garden' +p154040 +sg25270 +S'Harold Persico Paris' +p154041 +sa(dp154042 +g25273 +S'etching and aquatint' +p154043 +sg25267 +g27 +sg25275 +S'unknown date\n' +p154044 +sg25268 +S'The Kiss' +p154045 +sg25270 +S'Harold Persico Paris' +p154046 +sa(dp154047 +g25273 +S'aquatint' +p154048 +sg25267 +g27 +sg25275 +S'unknown date\n' +p154049 +sg25268 +S'Portrait of a Man' +p154050 +sg25270 +S'Harold Persico Paris' +p154051 +sa(dp154052 +g25273 +S'soft-ground etching and (aquatint?)' +p154053 +sg25267 +g27 +sg25275 +S'unknown date\n' +p154054 +sg25268 +S'The Undecided' +p154055 +sg25270 +S'Harold Persico Paris' +p154056 +sa(dp154057 +g25273 +S'charcoal and watercolor over graphite' +p154058 +sg25267 +g27 +sg25275 +S'1923' +p154059 +sg25268 +S'Monastery' +p154060 +sg25270 +S'Max Pechstein' +p154061 +sa(dp154062 +g25273 +S'woodcut' +p154063 +sg25267 +g27 +sg25275 +S'1952' +p154064 +sg25268 +S'Boats Near Acre' +p154065 +sg25270 +S'Jacob Pins' +p154066 +sa(dp154067 +g25268 +S'Paysage avec berger et moutons a Osny (Pontoise)' +p154068 +sg25270 +S'Camille Pissarro' +p154069 +sg25273 +S'etching, aquatint, and drypoint' +p154070 +sg25275 +S'1883' +p154071 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099a5.jpg' +p154072 +sg25267 +g27 +sa(dp154073 +g25268 +S'Landscape with Sportsman and Dog' +p154074 +sg25270 +S'Rembrandt van Rijn' +p154075 +sg25273 +S'etching and drypoint' +p154076 +sg25275 +S'c. 1653' +p154077 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d341.jpg' +p154078 +sg25267 +g27 +sa(dp154079 +g25268 +S'Standard Bearer' +p154080 +sg25270 +S'Sebald Beham' +p154081 +sg25273 +S'engraving' +p154082 +sg25275 +S'1526' +p154083 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a861.jpg' +p154084 +sg25267 +g27 +sa(dp154085 +g25268 +S'View over the Amstel from the Rampart' +p154086 +sg25270 +S'Rembrandt van Rijn' +p154087 +sg25273 +S'pen and brown ink with brown wash' +p154088 +sg25275 +S'c. 1646/1650' +p154089 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037e0.jpg' +p154090 +sg25267 +g27 +sa(dp154091 +g25268 +S'Death with a Coffin' +p154092 +sg25270 +S'Christian Rohlfs' +p154093 +sg25273 +S'woodcut' +p154094 +sg25275 +S'c. 1917' +p154095 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b597.jpg' +p154096 +sg25267 +g27 +sa(dp154097 +g25273 +S'aquatint over heliogravure' +p154098 +sg25267 +g27 +sg25275 +S'1925/1927' +p154099 +sg25268 +S'Satan IV' +p154100 +sg25270 +S'Georges Rouault' +p154101 +sa(dp154102 +g25273 +S'portfolio with fourteen aquatints' +p154103 +sg25267 +g27 +sg25275 +S'published 1966' +p154104 +sg25268 +S'Les Fleurs du Mal' +p154105 +sg25270 +S'Georges Rouault' +p154106 +sa(dp154107 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p154108 +sg25267 +g27 +sg25275 +S'1925/1927' +p154109 +sg25268 +S'Satan II' +p154110 +sg25270 +S'Georges Rouault' +p154111 +sa(dp154112 +g25273 +S'aquatint, roulette and drypoint with pastel over heliogravure' +p154113 +sg25267 +g27 +sg25275 +S'1925/1927' +p154114 +sg25268 +S'"Lorsque tu dormiras, ma belle tenebreuse ..."' +p154115 +sg25270 +S'Georges Rouault' +p154116 +sa(dp154117 +g25273 +S'aquatint and drypoint over heliogravure' +p154118 +sg25267 +g27 +sg25275 +S'1925/1927' +p154119 +sg25268 +S'Christ aux outrages' +p154120 +sg25270 +S'Georges Rouault' +p154121 +sa(dp154122 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p154123 +sg25267 +g27 +sg25275 +S'1925/1927' +p154124 +sg25268 +S'Christ' +p154125 +sg25270 +S'Georges Rouault' +p154126 +sa(dp154127 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p154128 +sg25267 +g27 +sg25275 +S'1925/1927' +p154129 +sg25268 +S'"La Debauche et la Mort ..."' +p154130 +sg25270 +S'Georges Rouault' +p154131 +sa(dp154132 +g25273 +S'aquatint and roulette over heliogravure' +p154133 +sg25267 +g27 +sg25275 +S'1925/1927' +p154134 +sg25268 +S'"Fiere, autant qu\'un vivant, de sa noble stature..."' +p154135 +sg25270 +S'Georges Rouault' +p154136 +sa(dp154137 +g25268 +S'Foot Soldier Standing by a Tree' +p154138 +sg25270 +S'Sebald Beham' +p154139 +sg25273 +S'etching' +p154140 +sg25275 +S'1520' +p154141 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a85f.jpg' +p154142 +sg25267 +g27 +sa(dp154143 +g25273 +S'aquatint over heliogravure' +p154144 +sg25267 +g27 +sg25275 +S'1925/1927' +p154145 +sg25268 +S'"La prostitution s\'allume dans les rues ..."' +p154146 +sg25270 +S'Georges Rouault' +p154147 +sa(dp154148 +g25273 +S'aquatint, roulette and drypoint over heliogravure' +p154149 +sg25267 +g27 +sg25275 +S'1925/1927' +p154150 +sg25268 +S'Satan' +p154151 +sg25270 +S'Georges Rouault' +p154152 +sa(dp154153 +g25273 +S'aquatint and drypoint over heliogravure' +p154154 +sg25267 +g27 +sg25275 +S'1925/1927' +p154155 +sg25268 +S'Fleur du Mal' +p154156 +sg25270 +S'Georges Rouault' +p154157 +sa(dp154158 +g25273 +S'aquatint and drypoint over heliogravure' +p154159 +sg25267 +g27 +sg25275 +S'1925/1927' +p154160 +sg25268 +S'Satan III' +p154161 +sg25270 +S'Georges Rouault' +p154162 +sa(dp154163 +g25273 +S'aquatint, roulette, and drypoint over heliogravure' +p154164 +sg25267 +g27 +sg25275 +S'1925/1927' +p154165 +sg25268 +S'"C\'est une femme belle et de riche encolure ..."' +p154166 +sg25270 +S'Georges Rouault' +p154167 +sa(dp154168 +g25273 +S'aquatint and roulette over heliogravure' +p154169 +sg25267 +g27 +sg25275 +S'1925/1927' +p154170 +sg25268 +S'Squelette' +p154171 +sg25270 +S'Georges Rouault' +p154172 +sa(dp154173 +g25273 +S'aquatint and drypoint over heliogravure' +p154174 +sg25267 +g27 +sg25275 +S'1925/1927' +p154175 +sg25268 +S'Nu de profil' +p154176 +sg25270 +S'Georges Rouault' +p154177 +sa(dp154178 +g25273 +S'French, 1858 - 1936' +p154179 +sg25267 +g27 +sg25275 +S'(printer)' +p154180 +sg25268 +S'The Spring (La Source)' +p154181 +sg25270 +S'Artist Information (' +p154182 +sa(dp154183 +g25273 +S'color lithograph' +p154184 +sg25267 +g27 +sg25275 +S'1952' +p154185 +sg25268 +S'The Window' +p154186 +sg25270 +S'Giuseppe Santomaso' +p154187 +sa(dp154188 +g25273 +S'woodcut' +p154189 +sg25267 +g27 +sg25275 +S'1915' +p154190 +sg25268 +S'Head of a Woman (Frauenkopf)' +p154191 +sg25270 +S'Karl Schmidt-Rottluff' +p154192 +sa(dp154193 +g25268 +S'Bust of a Young Woman' +p154194 +sg25270 +S'Sebald Beham' +p154195 +sg25273 +S'engraving' +p154196 +sg25275 +S'1518' +p154197 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a87f.jpg' +p154198 +sg25267 +g27 +sa(dp154199 +g25273 +S'woodcut' +p154200 +sg25267 +g27 +sg25275 +S'1951' +p154201 +sg25268 +S'Suspended Boats' +p154202 +sg25270 +S'Lojze Spacal' +p154203 +sa(dp154204 +g25273 +S'4-color lithograph [trial proof]' +p154205 +sg25267 +g27 +sg25275 +S'1954' +p154206 +sg25268 +S'Fortune Teller' +p154207 +sg25270 +S'Benton Murdoch Spruance' +p154208 +sa(dp154209 +g25273 +S'lithograph in black and yellow [trial proof]' +p154210 +sg25267 +g27 +sg25275 +S'1954' +p154211 +sg25268 +S'Fortune Teller' +p154212 +sg25270 +S'Benton Murdoch Spruance' +p154213 +sa(dp154214 +g25273 +S'lithograph in yellow [separation proof]' +p154215 +sg25267 +g27 +sg25275 +S'1954' +p154216 +sg25268 +S'Fortune Teller' +p154217 +sg25270 +S'Benton Murdoch Spruance' +p154218 +sa(dp154219 +g25273 +S'lithograph in blue [separation proof]' +p154220 +sg25267 +g27 +sg25275 +S'1954' +p154221 +sg25268 +S'Fortune Teller' +p154222 +sg25270 +S'Benton Murdoch Spruance' +p154223 +sa(dp154224 +g25273 +S'lithograph in blue [separation proof]' +p154225 +sg25267 +g27 +sg25275 +S'1954' +p154226 +sg25268 +S'Fortune Teller' +p154227 +sg25270 +S'Benton Murdoch Spruance' +p154228 +sa(dp154229 +g25273 +S'lithograph in black [separation proof]' +p154230 +sg25267 +g27 +sg25275 +S'1954' +p154231 +sg25268 +S'Fortune Teller' +p154232 +sg25270 +S'Benton Murdoch Spruance' +p154233 +sa(dp154234 +g25273 +S'4-color lithograph' +p154235 +sg25267 +g27 +sg25275 +S'1954' +p154236 +sg25268 +S'Fortune Teller' +p154237 +sg25270 +S'Benton Murdoch Spruance' +p154238 +sa(dp154239 +g25273 +S'8-color lithograph' +p154240 +sg25267 +g27 +sg25275 +S'1952' +p154241 +sg25268 +S'Portrait' +p154242 +sg25270 +S'Benton Murdoch Spruance' +p154243 +sa(dp154244 +g25273 +S'4-color lithograph' +p154245 +sg25267 +g27 +sg25275 +S'1953' +p154246 +sg25268 +S'Saint Francis - The Fields' +p154247 +sg25270 +S'Benton Murdoch Spruance' +p154248 +sa(dp154249 +g25268 +S'Gentleman and Two Servants, or Solon and Two Peasants' +p154250 +sg25270 +S'Sebald Beham' +p154251 +sg25273 +S'etching' +p154252 +sg25275 +S'unknown date\n' +p154253 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a879.jpg' +p154254 +sg25267 +g27 +sa(dp154255 +g25273 +S'5-color lithograph' +p154256 +sg25267 +g27 +sg25275 +S'1953' +p154257 +sg25268 +S'Saint Francis - The Market' +p154258 +sg25270 +S'Benton Murdoch Spruance' +p154259 +sa(dp154260 +g25273 +S'5-color lithograph' +p154261 +sg25267 +g27 +sg25275 +S'1953' +p154262 +sg25268 +S'Saint Francis - The Piazza' +p154263 +sg25270 +S'Benton Murdoch Spruance' +p154264 +sa(dp154265 +g25268 +S'Achilles as Pyrrha with Cupid' +p154266 +sg25270 +S'Jan Thomas' +p154267 +sg25273 +S'mezzotint' +p154268 +sg25275 +S'1659' +p154269 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5c1.jpg' +p154270 +sg25267 +g27 +sa(dp154271 +g25268 +S'Sheet of Sketches' +p154272 +sg25270 +S'Henri de Toulouse-Lautrec' +p154273 +sg25273 +S'graphite' +p154274 +sg25275 +S'c. 1881' +p154275 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00074/a000740c.jpg' +p154276 +sg25267 +g27 +sa(dp154277 +g25273 +S'woodcut' +p154278 +sg25267 +g27 +sg25275 +S'1951/1952' +p154279 +sg25268 +S'Guinea Fowl' +p154280 +sg25270 +S'Janet Elizabeth Turner' +p154281 +sa(dp154282 +g25268 +S'January' +p154283 +sg25270 +S'Jan van de Velde II' +p154284 +sg25273 +S'etching' +p154285 +sg25275 +S'unknown date\n' +p154286 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5d8.jpg' +p154287 +sg25267 +g27 +sa(dp154288 +g25268 +S'February' +p154289 +sg25270 +S'Jan van de Velde II' +p154290 +sg25273 +S'etching' +p154291 +sg25275 +S'unknown date\n' +p154292 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5d9.jpg' +p154293 +sg25267 +g27 +sa(dp154294 +g25268 +S'March' +p154295 +sg25270 +S'Jan van de Velde II' +p154296 +sg25273 +S'etching' +p154297 +sg25275 +S'unknown date\n' +p154298 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5da.jpg' +p154299 +sg25267 +g27 +sa(dp154300 +g25268 +S'April' +p154301 +sg25270 +S'Jan van de Velde II' +p154302 +sg25273 +S'etching' +p154303 +sg25275 +S'unknown date\n' +p154304 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5db.jpg' +p154305 +sg25267 +g27 +sa(dp154306 +g25268 +S'May' +p154307 +sg25270 +S'Jan van de Velde II' +p154308 +sg25273 +S'etching' +p154309 +sg25275 +S'unknown date\n' +p154310 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5dc.jpg' +p154311 +sg25267 +g27 +sa(dp154312 +g25268 +S'The Nativity' +p154313 +sg25270 +S'Lorenzo Lotto' +p154314 +sg25273 +S'oil on panel' +p154315 +sg25275 +S'1523' +p154316 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007f9.jpg' +p154317 +sg25267 +g27 +sa(dp154318 +g25268 +S'Three Women Bathing' +p154319 +sg25270 +S'Sebald Beham' +p154320 +sg25273 +S'engraving' +p154321 +sg25275 +S'1548' +p154322 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a86f.jpg' +p154323 +sg25267 +g27 +sa(dp154324 +g25268 +S'June' +p154325 +sg25270 +S'Jan van de Velde II' +p154326 +sg25273 +S'etching' +p154327 +sg25275 +S'unknown date\n' +p154328 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5dd.jpg' +p154329 +sg25267 +g27 +sa(dp154330 +g25268 +S'July' +p154331 +sg25270 +S'Jan van de Velde II' +p154332 +sg25273 +S'etching' +p154333 +sg25275 +S'unknown date\n' +p154334 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5d3.jpg' +p154335 +sg25267 +g27 +sa(dp154336 +g25268 +S'August' +p154337 +sg25270 +S'Jan van de Velde II' +p154338 +sg25273 +S'etching' +p154339 +sg25275 +S'unknown date\n' +p154340 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5de.jpg' +p154341 +sg25267 +g27 +sa(dp154342 +g25268 +S'September' +p154343 +sg25270 +S'Jan van de Velde II' +p154344 +sg25273 +S'etching' +p154345 +sg25275 +S'unknown date\n' +p154346 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5d4.jpg' +p154347 +sg25267 +g27 +sa(dp154348 +g25268 +S'October' +p154349 +sg25270 +S'Jan van de Velde II' +p154350 +sg25273 +S'etching' +p154351 +sg25275 +S'unknown date\n' +p154352 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5d7.jpg' +p154353 +sg25267 +g27 +sa(dp154354 +g25268 +S'November' +p154355 +sg25270 +S'Jan van de Velde II' +p154356 +sg25273 +S'etching' +p154357 +sg25275 +S'unknown date\n' +p154358 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5d5.jpg' +p154359 +sg25267 +g27 +sa(dp154360 +g25268 +S'December' +p154361 +sg25270 +S'Jan van de Velde II' +p154362 +sg25273 +S'etching' +p154363 +sg25275 +S'unknown date\n' +p154364 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5d6.jpg' +p154365 +sg25267 +g27 +sa(dp154366 +g25268 +S'The Blaze (La flambee)' +p154367 +sg25270 +S'Edouard Vuillard' +p154368 +sg25273 +S'lithograph' +p154369 +sg25275 +S'1924' +p154370 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f27.jpg' +p154371 +sg25267 +g27 +sa(dp154372 +g25268 +S'The Menu' +p154373 +sg25270 +S'Artist Information (' +p154374 +sg25273 +S'French, 1858 - 1936' +p154375 +sg25275 +S'(printer)' +p154376 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f28.jpg' +p154377 +sg25267 +g27 +sa(dp154378 +g25273 +S'color woodcut on tissue paper' +p154379 +sg25267 +g27 +sg25275 +S'1953' +p154380 +sg25268 +S'The Power of Circumstance' +p154381 +sg25270 +S'Adja Yunkers' +p154382 +sa(dp154383 +g25268 +S'Two Loving Pairs with Clown' +p154384 +sg25270 +S'Sebald Beham' +p154385 +sg25273 +S'engraving' +p154386 +sg25275 +S'1535' +p154387 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a86c.jpg' +p154388 +sg25267 +g27 +sa(dp154389 +g25273 +S'color woodcut' +p154390 +sg25267 +g27 +sg25275 +S'1953' +p154391 +sg25268 +S'Personal Epiphany' +p154392 +sg25270 +S'Adja Yunkers' +p154393 +sa(dp154394 +g25273 +S'color woodcut on wove paper' +p154395 +sg25267 +g27 +sg25275 +S'1953' +p154396 +sg25268 +S'Magnificat No. 3' +p154397 +sg25270 +S'Adja Yunkers' +p154398 +sa(dp154399 +g25273 +S'color woodcut' +p154400 +sg25267 +g27 +sg25275 +S'1953' +p154401 +sg25268 +S'The Chaos of Unreason' +p154402 +sg25270 +S'Adja Yunkers' +p154403 +sa(dp154404 +g25273 +S'color woodcut on tissue paper' +p154405 +sg25267 +g27 +sg25275 +S'1953' +p154406 +sg25268 +S'The Graveyard of Cathedrals' +p154407 +sg25270 +S'Adja Yunkers' +p154408 +sa(dp154409 +g25268 +S'Fountain with Statue of Neptune' +p154410 +sg25270 +S'Zoan Andrea' +p154411 +sg25273 +S'engraving' +p154412 +sg25275 +S'c. 1480/1485' +p154413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c70d.jpg' +p154414 +sg25267 +g27 +sa(dp154415 +g25273 +S'lithograph' +p154416 +sg25267 +g27 +sg25275 +S'1947' +p154417 +sg25268 +S'Frontispiece' +p154418 +sg25270 +S'Valentine Hugo' +p154419 +sa(dp154420 +g25273 +S'lithograph' +p154421 +sg25267 +g27 +sg25275 +S'1947' +p154422 +sg25268 +S'Christine and Rose' +p154423 +sg25270 +S'Valentine Hugo' +p154424 +sa(dp154425 +g25273 +S'lithograph' +p154426 +sg25267 +g27 +sg25275 +S'1947' +p154427 +sg25268 +S'Une jeune homme se tue aux Catalans' +p154428 +sg25270 +S'Valentine Hugo' +p154429 +sa(dp154430 +g25273 +S'lithograph' +p154431 +sg25267 +g27 +sg25275 +S'1947' +p154432 +sg25268 +S'Christine' +p154433 +sg25270 +S'Valentine Hugo' +p154434 +sa(dp154435 +g25273 +S'lithograph' +p154436 +sg25267 +g27 +sg25275 +S'1947' +p154437 +sg25268 +S'Dick Crawley' +p154438 +sg25270 +S'Valentine Hugo' +p154439 +sa(dp154440 +g25268 +S'Clown and Two Women Bathing' +p154441 +sg25270 +S'Sebald Beham' +p154442 +sg25273 +S'engraving' +p154443 +sg25275 +S'1541' +p154444 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a872.jpg' +p154445 +sg25267 +g27 +sa(dp154446 +g25273 +S'lithograph' +p154447 +sg25267 +g27 +sg25275 +S'1947' +p154448 +sg25268 +S'Rita, Gille and Romaine' +p154449 +sg25270 +S'Valentine Hugo' +p154450 +sa(dp154451 +g25273 +S'lithograph' +p154452 +sg25267 +g27 +sg25275 +S'1947' +p154453 +sg25268 +S'Agathe' +p154454 +sg25270 +S'Valentine Hugo' +p154455 +sa(dp154456 +g25273 +S'lithograph' +p154457 +sg25267 +g27 +sg25275 +S'1947' +p154458 +sg25268 +S'Rose and Romaine' +p154459 +sg25270 +S'Valentine Hugo' +p154460 +sa(dp154461 +g25273 +S'color mezzotint' +p154462 +sg25267 +g27 +sg25275 +S'unknown date\n' +p154463 +sg25268 +S'Edmund Spenser' +p154464 +sg25270 +S'Jakob Christoffel Le Blon' +p154465 +sa(dp154466 +g25268 +S'Louis XV' +p154467 +sg25270 +S'Artist Information (' +p154468 +sg25273 +S'(artist after)' +p154469 +sg25275 +S'\n' +p154470 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00015/a0001560.jpg' +p154471 +sg25267 +g27 +sa(dp154472 +g25273 +S'lithograph (zinc) on Japan paper' +p154473 +sg25267 +g27 +sg25275 +S'c. 1895' +p154474 +sg25268 +S'Pastoral Concert (Concert champ\xc3\xaatre)' +p154475 +sg25270 +S'Aristide Maillol' +p154476 +sa(dp154477 +g25268 +S'Brunnhilde' +p154478 +sg25270 +S'Odilon Redon' +p154479 +sg25273 +S'lithograph' +p154480 +sg25275 +S'1894' +p154481 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c95.jpg' +p154482 +sg25267 +g27 +sa(dp154483 +g25268 +S'Parsifal' +p154484 +sg25270 +S'Odilon Redon' +p154485 +sg25273 +S'lithograph' +p154486 +sg25275 +S'1892' +p154487 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fcd.jpg' +p154488 +sg25267 +g27 +sa(dp154489 +g25268 +S'Perversite (Perversity)' +p154490 +sg25270 +S'Odilon Redon' +p154491 +sg25273 +S'etching' +p154492 +sg25275 +S'1891' +p154493 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099b1.jpg' +p154494 +sg25267 +g27 +sa(dp154495 +g25268 +S'Penance of Saint Chrysostomus' +p154496 +sg25270 +S'Sebald Beham' +p154497 +sg25273 +S'engraving' +p154498 +sg25275 +S'unknown date\n' +p154499 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7f6.jpg' +p154500 +sg25267 +g27 +sa(dp154501 +g25273 +S'color aquatint' +p154502 +sg25267 +g27 +sg25275 +S'1903' +p154503 +sg25268 +S"Women of Ushant (Les femmes d'ouessant)" +p154504 +sg25270 +S'Jacques Villon' +p154505 +sa(dp154506 +g25268 +S'Head of Cabbage with Insects' +p154507 +sg25270 +S'Netherlandish 17th Century' +p154508 +sg25273 +S'Overall (approximate): 18.6 x 28.5 cm (7 5/16 x 11 1/4 in.)\r\nsupport: 19.4 x 29.2 cm (7 5/8 x 11 1/2 in.)' +p154509 +sg25275 +S'\nwatercolor' +p154510 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00026/a0002608.jpg' +p154511 +sg25267 +g27 +sa(dp154512 +g25268 +S'Four Scenes from the Legends of Judas and Pilate' +p154513 +sg25270 +S'Georges Hurtrel' +p154514 +sg25273 +S'pen and black ink with black wash, heightened with white and gold, on gray prepared paper (grisaille)' +p154515 +sg25275 +S'in or before 1870' +p154516 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007059.jpg' +p154517 +sg25267 +g27 +sa(dp154518 +g25268 +S'Four Scenes from the Life of Christ' +p154519 +sg25270 +S'Georges Hurtrel' +p154520 +sg25273 +S'pen and black ink with black wash, heightened with white and gold, on gray prepared paper (grisaille)' +p154521 +sg25275 +S'in or before 1870' +p154522 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000702b.jpg' +p154523 +sg25267 +g27 +sa(dp154524 +g25268 +S'Mars and Venus' +p154525 +sg25270 +S'German 15th Century' +p154526 +sg25273 +S'Schreiber, no. 1919, State (restrike)' +p154527 +sg25275 +S'\nwoodcut [restrike]' +p154528 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a59d.jpg' +p154529 +sg25267 +g27 +sa(dp154530 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p154531 +sg25268 +S'King of Clubs' +p154532 +sg25270 +S'Artist Information (' +p154533 +sa(dp154534 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p154535 +sg25268 +S'Two of Clubs' +p154536 +sg25270 +S'Artist Information (' +p154537 +sa(dp154538 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p154539 +sg25268 +S'Three of Clubs' +p154540 +sg25270 +S'Artist Information (' +p154541 +sa(dp154542 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p154543 +sg25268 +S'Four of Clubs' +p154544 +sg25270 +S'Artist Information (' +p154545 +sa(dp154546 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p154547 +sg25268 +S'Six of Clubs' +p154548 +sg25270 +S'Artist Information (' +p154549 +sa(dp154550 +g25268 +S'The Shepherd' +p154551 +sg25270 +S'Sebald Beham' +p154552 +sg25273 +S'engraving' +p154553 +sg25275 +S'1525' +p154554 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a873.jpg' +p154555 +sg25267 +g27 +sa(dp154556 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p154557 +sg25268 +S'Nine of Clubs' +p154558 +sg25270 +S'Artist Information (' +p154559 +sa(dp154560 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p154561 +sg25268 +S'Ace' +p154562 +sg25270 +S'Artist Information (' +p154563 +sa(dp154564 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p154565 +sg25268 +S'Three of Coins' +p154566 +sg25270 +S'Artist Information (' +p154567 +sa(dp154568 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p154569 +sg25268 +S'Five of Coins' +p154570 +sg25270 +S'Artist Information (' +p154571 +sa(dp154572 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p154573 +sg25268 +S'Five of Coins' +p154574 +sg25270 +S'Artist Information (' +p154575 +sa(dp154576 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p154577 +sg25268 +S'Six of Coins' +p154578 +sg25270 +S'Artist Information (' +p154579 +sa(dp154580 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p154581 +sg25268 +S'Six of Coins' +p154582 +sg25270 +S'Artist Information (' +p154583 +sa(dp154584 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p154585 +sg25268 +S'Knave of Coins' +p154586 +sg25270 +S'Artist Information (' +p154587 +sa(dp154588 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p154589 +sg25268 +S'Three of Swords' +p154590 +sg25270 +S'Artist Information (' +p154591 +sa(dp154592 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p154593 +sg25268 +S'Seven of Swords' +p154594 +sg25270 +S'Artist Information (' +p154595 +sa(dp154596 +g25268 +S'Two Horse Heads' +p154597 +sg25270 +S'Sebald Beham' +p154598 +sg25273 +S'engraving' +p154599 +sg25275 +S'unknown date\n' +p154600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a874.jpg' +p154601 +sg25267 +g27 +sa(dp154602 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p154603 +sg25268 +S'Five of Cups' +p154604 +sg25270 +S'Artist Information (' +p154605 +sa(dp154606 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p154607 +sg25268 +S'Nine of Cups' +p154608 +sg25270 +S'Artist Information (' +p154609 +sa(dp154610 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p154611 +sg25268 +S'King of Cups' +p154612 +sg25270 +S'Artist Information (' +p154613 +sa(dp154614 +g25268 +S'Title Page' +p154615 +sg25270 +S'Ernst Barlach' +p154616 +sg25273 +S'woodcut' +p154617 +sg25275 +S'probably 1920' +p154618 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b609.jpg' +p154619 +sg25267 +g27 +sa(dp154620 +g25268 +S'Die Wandlungen Gottes' +p154621 +sg25270 +S'Ernst Barlach' +p154622 +sg25273 +S'series of 8 woodcut images in black (including title page/cover) plus table of contents and 6 cover/title pages' +p154623 +sg25275 +S'1920/1921' +p154624 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b611.jpg' +p154625 +sg25267 +g27 +sa(dp154626 +g25268 +S'The First Day' +p154627 +sg25270 +S'Ernst Barlach' +p154628 +sg25273 +S'woodcut' +p154629 +sg25275 +S'1920' +p154630 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b60a.jpg' +p154631 +sg25267 +g27 +sa(dp154632 +g25268 +S'The Cathedrals' +p154633 +sg25270 +S'Ernst Barlach' +p154634 +sg25273 +S'woodcut' +p154635 +sg25275 +S'1920' +p154636 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b60b.jpg' +p154637 +sg25267 +g27 +sa(dp154638 +g25268 +S'The Divine Beggar' +p154639 +sg25270 +S'Ernst Barlach' +p154640 +sg25273 +S'woodcut' +p154641 +sg25275 +S'1921' +p154642 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b60c.jpg' +p154643 +sg25267 +g27 +sa(dp154644 +g25268 +S'The Dance of Death II' +p154645 +sg25270 +S'Ernst Barlach' +p154646 +sg25273 +S'woodcut' +p154647 +sg25275 +S'1921' +p154648 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b60d.jpg' +p154649 +sg25267 +g27 +sa(dp154650 +g25268 +S'God Belly' +p154651 +sg25270 +S'Ernst Barlach' +p154652 +sg25273 +S'woodcut' +p154653 +sg25275 +S'1921' +p154654 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b60e.jpg' +p154655 +sg25267 +g27 +sa(dp154656 +g25268 +S'Head of a Man' +p154657 +sg25270 +S'Sebald Beham' +p154658 +sg25273 +S'engraving' +p154659 +sg25275 +S'1542' +p154660 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a871.jpg' +p154661 +sg25267 +g27 +sa(dp154662 +g25268 +S'The Cliffs' +p154663 +sg25270 +S'Ernst Barlach' +p154664 +sg25273 +S'woodcut' +p154665 +sg25275 +S'1920' +p154666 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b60f.jpg' +p154667 +sg25267 +g27 +sa(dp154668 +g25268 +S'The Seventh Day' +p154669 +sg25270 +S'Ernst Barlach' +p154670 +sg25273 +S'woodcut' +p154671 +sg25275 +S'1920' +p154672 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b610.jpg' +p154673 +sg25267 +g27 +sa(dp154674 +g25268 +S'Mercury' +p154675 +sg25270 +S'Sebald Beham' +p154676 +sg25273 +S'woodcut' +p154677 +sg25275 +S'unknown date\n' +p154678 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000adf6.jpg' +p154679 +sg25267 +g27 +sa(dp154680 +g25268 +S'The Madonna Spinning' +p154681 +sg25270 +S'Jacques de Bellange' +p154682 +sg25273 +S', 1615' +p154683 +sg25275 +S'\n' +p154684 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a4d.jpg' +p154685 +sg25267 +g27 +sa(dp154686 +g25273 +S'lithograph' +p154687 +sg25267 +g27 +sg25275 +S'1952' +p154688 +sg25268 +S'Santayana' +p154689 +sg25270 +S'George Biddle' +p154690 +sa(dp154691 +g25273 +S'lithograph' +p154692 +sg25267 +g27 +sg25275 +S'1952' +p154693 +sg25268 +S'Ten Elephants' +p154694 +sg25270 +S'George Biddle' +p154695 +sa(dp154696 +g25268 +S'Johann Gottfried von Herder' +p154697 +sg25270 +S'Johann Friedrich Bierlein' +p154698 +sg25273 +S'graphite on vellum' +p154699 +sg25275 +S'1786' +p154700 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e30.jpg' +p154701 +sg25267 +g27 +sa(dp154702 +g25268 +S'Frau Gottfried von Herder' +p154703 +sg25270 +S'Johann Friedrich Bierlein' +p154704 +sg25273 +S'graphite on vellum' +p154705 +sg25275 +S'probably 1786' +p154706 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e60.jpg' +p154707 +sg25267 +g27 +sa(dp154708 +g25273 +S'etching' +p154709 +sg25267 +g27 +sg25275 +S'unknown date\n' +p154710 +sg25268 +S'The Great Stag Hunt' +p154711 +sg25270 +S'Hans Bol' +p154712 +sa(dp154713 +g25268 +S'The Brook in the Woods' +p154714 +sg25270 +S'Rodolphe Bresdin' +p154715 +sg25273 +S'etching' +p154716 +sg25275 +S'1880' +p154717 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009150.jpg' +p154718 +sg25267 +g27 +sa(dp154719 +g25268 +S'Head of a Woman' +p154720 +sg25270 +S'Sebald Beham' +p154721 +sg25273 +S'engraving' +p154722 +sg25275 +S'1542' +p154723 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a870.jpg' +p154724 +sg25267 +g27 +sa(dp154725 +g25268 +S'Landscape with Shepherds Driving Away a Wolf' +p154726 +sg25270 +S'Domenico Campagnola' +p154727 +sg25273 +S'pen and brown ink with touches of pale green wash on laid paper' +p154728 +sg25275 +S'c. 1540' +p154729 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00031/a00031a0.jpg' +p154730 +sg25267 +g27 +sa(dp154731 +g25273 +S'lithograph in red-brown and black on wove paper (proof)' +p154732 +sg25267 +g27 +sg25275 +S'1951' +p154733 +sg25268 +S'Gioco del diabolo' +p154734 +sg25270 +S'Massimo Campigli' +p154735 +sa(dp154736 +g25268 +S'Saint George (St. Georg)' +p154737 +sg25270 +S'Lovis Corinth' +p154738 +sg25273 +S'drypoint' +p154739 +sg25275 +S'1916' +p154740 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b668.jpg' +p154741 +sg25267 +g27 +sa(dp154742 +g25268 +S'The Temptation of Saint Anthony' +p154743 +sg25270 +S'Jan Wellens de Cock' +p154744 +sg25273 +S'woodcut' +p154745 +sg25275 +S'1522' +p154746 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf1a.jpg' +p154747 +sg25267 +g27 +sa(dp154748 +g25268 +S'The Reformers Luther and Hus Giving Communion to the Princes of the House of Saxony' +p154749 +sg25270 +S'Lucas Cranach the Elder' +p154750 +sg25273 +S'woodcut' +p154751 +sg25275 +S'unknown date\n' +p154752 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0f4.jpg' +p154753 +sg25267 +g27 +sa(dp154754 +g25268 +S'Venus and Cupid' +p154755 +sg25270 +S'Lucas Cranach the Elder' +p154756 +sg25273 +S'woodcut' +p154757 +sg25275 +S'dated 1506 (probably executed c. 1509)' +p154758 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0f6.jpg' +p154759 +sg25267 +g27 +sa(dp154760 +g25273 +S'color engraving' +p154761 +sg25267 +g27 +sg25275 +S'unknown date\n' +p154762 +sg25268 +S'Buried City' +p154763 +sg25270 +S'Ruth Cyril' +p154764 +sa(dp154765 +g25268 +S'Un Monsieur au dessous de ses affaires' +p154766 +sg25270 +S'Honor\xc3\xa9 Daumier' +p154767 +sg25273 +S'lithograph' +p154768 +sg25275 +S'1841' +p154769 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093a9.jpg' +p154770 +sg25267 +g27 +sa(dp154771 +g25268 +S'Le Jour ou il faut se montrer galant' +p154772 +sg25270 +S'Honor\xc3\xa9 Daumier' +p154773 +sg25273 +S'lithograph' +p154774 +sg25275 +S'1845' +p154775 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092e4.jpg' +p154776 +sg25267 +g27 +sa(dp154777 +g25268 +S'Le Nouveau tapissier de la couronne...' +p154778 +sg25270 +S'Honor\xc3\xa9 Daumier' +p154779 +sg25273 +S'lithograph' +p154780 +sg25275 +S'1850' +p154781 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000946d.jpg' +p154782 +sg25267 +g27 +sa(dp154783 +g25268 +S'Three Medals with Portraits' +p154784 +sg25270 +S'Sebald Beham' +p154785 +sg25273 +S'engraving' +p154786 +sg25275 +S'unknown date\n' +p154787 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a877.jpg' +p154788 +sg25267 +g27 +sa(dp154789 +g25268 +S'Expliquez-moi donc, monsieur Badoulard...' +p154790 +sg25270 +S'Honor\xc3\xa9 Daumier' +p154791 +sg25273 +S'lithograph' +p154792 +sg25275 +S'1851' +p154793 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009478.jpg' +p154794 +sg25267 +g27 +sa(dp154795 +g25268 +S'The Northern Celestial Hemisphere' +p154796 +sg25270 +S'Albrecht D\xc3\xbcrer' +p154797 +sg25273 +S'woodcut' +p154798 +sg25275 +S'1515' +p154799 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b066.jpg' +p154800 +sg25267 +g27 +sa(dp154801 +g25268 +S'The Southern Celestial Hemisphere' +p154802 +sg25270 +S'Albrecht D\xc3\xbcrer' +p154803 +sg25273 +S'woodcut' +p154804 +sg25275 +S'1515' +p154805 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000aeb5.jpg' +p154806 +sg25267 +g27 +sa(dp154807 +g25273 +S'(artist after)' +p154808 +sg25267 +g27 +sg25275 +S'\n' +p154809 +sg25268 +S'La Fee Electricite I' +p154810 +sg25270 +S'Artist Information (' +p154811 +sa(dp154812 +g25273 +S'(artist after)' +p154813 +sg25267 +g27 +sg25275 +S'\n' +p154814 +sg25268 +S'La Fee Electricite' +p154815 +sg25270 +S'Artist Information (' +p154816 +sa(dp154817 +g25273 +S'(artist after)' +p154818 +sg25267 +g27 +sg25275 +S'\n' +p154819 +sg25268 +S'La Fee Electricite II' +p154820 +sg25270 +S'Artist Information (' +p154821 +sa(dp154822 +g25273 +S'(artist after)' +p154823 +sg25267 +g27 +sg25275 +S'\n' +p154824 +sg25268 +S'La Fee Electricite III' +p154825 +sg25270 +S'Artist Information (' +p154826 +sa(dp154827 +g25273 +S'(artist after)' +p154828 +sg25267 +g27 +sg25275 +S'\n' +p154829 +sg25268 +S'La Fee Electricite IV' +p154830 +sg25270 +S'Artist Information (' +p154831 +sa(dp154832 +g25273 +S'(artist after)' +p154833 +sg25267 +g27 +sg25275 +S'\n' +p154834 +sg25268 +S'La Fee Electricite V' +p154835 +sg25270 +S'Artist Information (' +p154836 +sa(dp154837 +g25273 +S'(artist after)' +p154838 +sg25267 +g27 +sg25275 +S'\n' +p154839 +sg25268 +S'La Fee Electricite VI' +p154840 +sg25270 +S'Artist Information (' +p154841 +sa(dp154842 +g25268 +S'Ornament with Two Tritons Blowing Horns' +p154843 +sg25270 +S'Sebald Beham' +p154844 +sg25273 +S'engraving' +p154845 +sg25275 +S'1544' +p154846 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a87b.jpg' +p154847 +sg25267 +g27 +sa(dp154848 +g25273 +S'(artist after)' +p154849 +sg25267 +g27 +sg25275 +S'\n' +p154850 +sg25268 +S'La Fee Electricite VII' +p154851 +sg25270 +S'Artist Information (' +p154852 +sa(dp154853 +g25273 +S'(artist after)' +p154854 +sg25267 +g27 +sg25275 +S'\n' +p154855 +sg25268 +S'La Fee Electricite VIII' +p154856 +sg25270 +S'Artist Information (' +p154857 +sa(dp154858 +g25273 +S'(artist after)' +p154859 +sg25267 +g27 +sg25275 +S'\n' +p154860 +sg25268 +S'La Fee Electricite IX' +p154861 +sg25270 +S'Artist Information (' +p154862 +sa(dp154863 +g25273 +S'(artist after)' +p154864 +sg25267 +g27 +sg25275 +S'\n' +p154865 +sg25268 +S'La Fee Electricite X' +p154866 +sg25270 +S'Artist Information (' +p154867 +sa(dp154868 +g25268 +S'The Marriage of Adam and Eve' +p154869 +sg25270 +S'Jean Duvet' +p154870 +sg25273 +S'engraving' +p154871 +sg25275 +S'probably 1540/1555' +p154872 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f29.jpg' +p154873 +sg25267 +g27 +sa(dp154874 +g25268 +S'Saint John Sees the Four Horsemen' +p154875 +sg25270 +S'Jean Duvet' +p154876 +sg25273 +S'engraving' +p154877 +sg25275 +S'1546/1556' +p154878 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084ca.jpg' +p154879 +sg25267 +g27 +sa(dp154880 +g25268 +S'The Woman Clothed with the Sun' +p154881 +sg25270 +S'Jean Duvet' +p154882 +sg25273 +S'engraving' +p154883 +sg25275 +S'1546/1556' +p154884 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a000612f.jpg' +p154885 +sg25267 +g27 +sa(dp154886 +g25268 +S'Shipwreck of the Meduse' +p154887 +sg25270 +S'Artist Information (' +p154888 +sg25273 +S'(artist)' +p154889 +sg25275 +S'\n' +p154890 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098a1.jpg' +p154891 +sg25267 +g27 +sa(dp154892 +g25268 +S'The Last Supper' +p154893 +sg25270 +S'William Blake' +p154894 +sg25273 +S'tempera on canvas' +p154895 +sg25275 +S'1799' +p154896 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004e9.jpg' +p154897 +sg25267 +g27 +sa(dp154898 +g25268 +S'The Stroller (Le bourgeois qui fl\xc3\xa2ne)' +p154899 +sg25270 +S'Artist Information (' +p154900 +sg25273 +S'French, 1808 - 1879' +p154901 +sg25275 +S'(related artist)' +p154902 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a0005412.jpg' +p154903 +sg25267 +g27 +sa(dp154904 +g25268 +S'The Adoration of the Shepherds' +p154905 +sg25270 +S'Giorgione' +p154906 +sg25273 +S'oil on panel' +p154907 +sg25275 +S'1505/1510' +p154908 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005d9.jpg' +p154909 +sg25267 +S'Giorgione has always been considered one of the greatest artists of the Renaissance, and one whose influence on following generations of painters was considerable. For all his fame, very little is known about his short life (he may have died during a plague epidemic in 1510 at age 32 or 33), and only a few paintings can be definitively attributed to him. He initially studied with Giovanni Bellini, seems to have been influenced by Leonardo, and could claim Titian and Sebastiano del Piombo as his pupils.\n The \n ' +p154910 +sa(dp154911 +g25268 +S'Three Medals with Coats of Arms' +p154912 +sg25270 +S'Sebald Beham' +p154913 +sg25273 +S'engraving' +p154914 +sg25275 +S'unknown date\n' +p154915 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a876.jpg' +p154916 +sg25267 +g27 +sa(dp154917 +g25268 +S"The Lover (L'amoureux)" +p154918 +sg25270 +S'Artist Information (' +p154919 +sg25273 +S'French, 1808 - 1879' +p154920 +sg25275 +S'(related artist)' +p154921 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a0005413.jpg' +p154922 +sg25267 +g27 +sa(dp154923 +g25268 +S'Mr. Forbes' +p154924 +sg25270 +S'George Romney' +p154925 +sg25273 +S'oil on canvas' +p154926 +sg25275 +S'c. 1780/1790' +p154927 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000535.jpg' +p154928 +sg25267 +g27 +sa(dp154929 +g25268 +S'The House of the Well (La maison du puits)' +p154930 +sg25270 +S'Alphonse Legros' +p154931 +sg25273 +S'etching and drypoint' +p154932 +sg25275 +S'unknown date\n' +p154933 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c41.jpg' +p154934 +sg25267 +g27 +sa(dp154935 +g25268 +S'Near Nordkerque (Pres de Nordkerque)' +p154936 +sg25270 +S'Alphonse Legros' +p154937 +sg25273 +S'etching? and drypoint' +p154938 +sg25275 +S'unknown date\n' +p154939 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c46.jpg' +p154940 +sg25267 +g27 +sa(dp154941 +g25268 +S'Farmer Reclining (Le fermier au repos)' +p154942 +sg25270 +S'Alphonse Legros' +p154943 +sg25273 +S'etching retouched with pen' +p154944 +sg25275 +S'unknown date\n' +p154945 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c3d.jpg' +p154946 +sg25267 +g27 +sa(dp154947 +g25268 +S'W.H. Longfellow, 1st plate' +p154948 +sg25270 +S'Alphonse Legros' +p154949 +sg25273 +S'etching and drypoint' +p154950 +sg25275 +S'unknown date\n' +p154951 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c38.jpg' +p154952 +sg25267 +g27 +sa(dp154953 +g25268 +S'Hovel on a Hillside (Masure sur la colline)' +p154954 +sg25270 +S'Alphonse Legros' +p154955 +sg25273 +S'etching and drypoint?' +p154956 +sg25275 +S'unknown date\n' +p154957 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c42.jpg' +p154958 +sg25267 +g27 +sa(dp154959 +g25268 +S'Hovel on a Hillside (Masure sur la colline)' +p154960 +sg25270 +S'Alphonse Legros' +p154961 +sg25273 +S'etching and drypoint?' +p154962 +sg25275 +S'unknown date\n' +p154963 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c43.jpg' +p154964 +sg25267 +g27 +sa(dp154965 +g25268 +S'Landscape (Paysage)' +p154966 +sg25270 +S'Alphonse Legros' +p154967 +sg25273 +S'etching' +p154968 +sg25275 +S'unknown date\n' +p154969 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c52.jpg' +p154970 +sg25267 +g27 +sa(dp154971 +g25268 +S'Landscape (Paysage)' +p154972 +sg25270 +S'Alphonse Legros' +p154973 +sg25273 +S'etching and drypoint' +p154974 +sg25275 +S'unknown date\n' +p154975 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c53.jpg' +p154976 +sg25267 +g27 +sa(dp154977 +g25268 +S'Ornament with Eagle and Two Genii' +p154978 +sg25270 +S'Sebald Beham' +p154979 +sg25273 +S'engraving' +p154980 +sg25275 +S'1544' +p154981 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a87a.jpg' +p154982 +sg25267 +g27 +sa(dp154983 +g25268 +S'Seated Beggar (Mendiant assis)' +p154984 +sg25270 +S'Alphonse Legros' +p154985 +sg25273 +S'etching and drypoint' +p154986 +sg25275 +S'unknown date\n' +p154987 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c4c.jpg' +p154988 +sg25267 +g27 +sa(dp154989 +g25268 +S'Study of an Old Man (Etude de vieillard)' +p154990 +sg25270 +S'Alphonse Legros' +p154991 +sg25273 +S'etching' +p154992 +sg25275 +S'unknown date\n' +p154993 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c48.jpg' +p154994 +sg25267 +g27 +sa(dp154995 +g25268 +S'Landscape (Paysage)' +p154996 +sg25270 +S'Alphonse Legros' +p154997 +sg25273 +S'etching and drypoint' +p154998 +sg25275 +S'unknown date\n' +p154999 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c49.jpg' +p155000 +sg25267 +g27 +sa(dp155001 +g25268 +S'Farm (Une ferme)' +p155002 +sg25270 +S'Alphonse Legros' +p155003 +sg25273 +S'etching and drypoint' +p155004 +sg25275 +S'unknown date\n' +p155005 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c4f.jpg' +p155006 +sg25267 +g27 +sa(dp155007 +g25268 +S'Old Inn (Une ancienne auberge)' +p155008 +sg25270 +S'Alphonse Legros' +p155009 +sg25273 +S'etching' +p155010 +sg25275 +S'unknown date\n' +p155011 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c4e.jpg' +p155012 +sg25267 +g27 +sa(dp155013 +g25268 +S'Farm in Winter (Une ferme en hiver)' +p155014 +sg25270 +S'Alphonse Legros' +p155015 +sg25273 +S'etching and drypoint' +p155016 +sg25275 +S'unknown date\n' +p155017 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c63.jpg' +p155018 +sg25267 +g27 +sa(dp155019 +g25268 +S'Harvesters (Les moissoneurs)' +p155020 +sg25270 +S'Alphonse Legros' +p155021 +sg25273 +S'etching' +p155022 +sg25275 +S'unknown date\n' +p155023 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c62.jpg' +p155024 +sg25267 +g27 +sa(dp155025 +g25268 +S'Bend in the River (Un coin de riviere)' +p155026 +sg25270 +S'Alphonse Legros' +p155027 +sg25273 +S'etching' +p155028 +sg25275 +S'unknown date\n' +p155029 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c60.jpg' +p155030 +sg25267 +g27 +sa(dp155031 +g25268 +S'Woman at the Foot of the Cross (Femme au calvaire)' +p155032 +sg25270 +S'Alphonse Legros' +p155033 +sg25273 +S'etching' +p155034 +sg25275 +S'unknown date\n' +p155035 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009df0.jpg' +p155036 +sg25267 +g27 +sa(dp155037 +g25268 +S'C.J. Knowles, 2nd plate' +p155038 +sg25270 +S'Alphonse Legros' +p155039 +sg25273 +S'etching in dark brown ink' +p155040 +sg25275 +S'unknown date\n' +p155041 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c5b.jpg' +p155042 +sg25267 +g27 +sa(dp155043 +g25268 +S'Ornament with Female Demon' +p155044 +sg25270 +S'Sebald Beham' +p155045 +sg25273 +S'engraving' +p155046 +sg25275 +S'1544' +p155047 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a87d.jpg' +p155048 +sg25267 +g27 +sa(dp155049 +g25268 +S'Woman Seated against a Wall, Child with His Head in Her Lap (Femme assis, muraille au fond, enfant la tete dans son giron)' +p155050 +sg25270 +S'Alphonse Legros' +p155051 +sg25273 +S'etching and drypoint' +p155052 +sg25275 +S'unknown date\n' +p155053 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c68.jpg' +p155054 +sg25267 +g27 +sa(dp155055 +g25268 +S'Bridge at the Mill (Le pont du moulin)' +p155056 +sg25270 +S'Alphonse Legros' +p155057 +sg25273 +S'etching and drypoint?' +p155058 +sg25275 +S'unknown date\n' +p155059 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c6a.jpg' +p155060 +sg25267 +g27 +sa(dp155061 +g25268 +S'Landscape (Paysage)' +p155062 +sg25270 +S'Alphonse Legros' +p155063 +sg25273 +S'etching' +p155064 +sg25275 +S'unknown date\n' +p155065 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c75.jpg' +p155066 +sg25267 +g27 +sa(dp155067 +g25268 +S"View of a Farm Seen in a Storm (La ferme de Brieux (Effet d'orage))" +p155068 +sg25270 +S'Alphonse Legros' +p155069 +sg25273 +S'drypoint and (etching?)' +p155070 +sg25275 +S'unknown date\n' +p155071 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c74.jpg' +p155072 +sg25267 +g27 +sa(dp155073 +g25268 +S'Study of a Nude Figure (Etude de figure nue)' +p155074 +sg25270 +S'Alphonse Legros' +p155075 +sg25273 +S'etching' +p155076 +sg25275 +S'unknown date\n' +p155077 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c6c.jpg' +p155078 +sg25267 +g27 +sa(dp155079 +g25268 +S'Landscape: Near Chailleux (Paysage: Pres Chailleux)' +p155080 +sg25270 +S'Alphonse Legros' +p155081 +sg25273 +S'etching and drypoint?' +p155082 +sg25275 +S'unknown date\n' +p155083 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c6f.jpg' +p155084 +sg25267 +g27 +sa(dp155085 +g25268 +S'Landscape: Near Chailleux (Paysage: Pres Chailleux)' +p155086 +sg25270 +S'Alphonse Legros' +p155087 +sg25273 +S'etching' +p155088 +sg25275 +S'unknown date\n' +p155089 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c6e.jpg' +p155090 +sg25267 +g27 +sa(dp155091 +g25268 +S'Landscape (Paysage)' +p155092 +sg25270 +S'Alphonse Legros' +p155093 +sg25273 +S'etching and drypoint' +p155094 +sg25275 +S'unknown date\n' +p155095 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c71.jpg' +p155096 +sg25267 +g27 +sa(dp155097 +g25268 +S'View of a Chateau (Chateau des Revenants)' +p155098 +sg25270 +S'Alphonse Legros' +p155099 +sg25273 +S'etching' +p155100 +sg25275 +S'unknown date\n' +p155101 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009ddf.jpg' +p155102 +sg25267 +g27 +sa(dp155103 +g25268 +S"Farm at the Monastery (La ferme de l'abbaye)" +p155104 +sg25270 +S'Alphonse Legros' +p155105 +sg25273 +S'etching and drypoint?' +p155106 +sg25275 +S'unknown date\n' +p155107 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009ddd.jpg' +p155108 +sg25267 +g27 +sa(dp155109 +g25268 +S'Three Medals with Coats of Arms' +p155110 +sg25270 +S'Sebald Beham' +p155111 +sg25273 +S'engraving' +p155112 +sg25275 +S'unknown date\n' +p155113 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a875.jpg' +p155114 +sg25267 +g27 +sa(dp155115 +g25268 +S"Farm at the Monastery (La ferme de l'abbaye)" +p155116 +sg25270 +S'Alphonse Legros' +p155117 +sg25273 +S'etching and drypoint' +p155118 +sg25275 +S'unknown date\n' +p155119 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009ddc.jpg' +p155120 +sg25267 +g27 +sa(dp155121 +g25268 +S'Landscape (Paysage)' +p155122 +sg25270 +S'Alphonse Legros' +p155123 +sg25273 +S'etching' +p155124 +sg25275 +S'unknown date\n' +p155125 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009de5.jpg' +p155126 +sg25267 +g27 +sa(dp155127 +g25268 +S'Sir Charles Holroyd' +p155128 +sg25270 +S'Alphonse Legros' +p155129 +sg25273 +S'etching' +p155130 +sg25275 +S'unknown date\n' +p155131 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009de4.jpg' +p155132 +sg25267 +g27 +sa(dp155133 +g25268 +S'Ruins of a Chateau (Les ruines du chateau)' +p155134 +sg25270 +S'Alphonse Legros' +p155135 +sg25273 +S'etching' +p155136 +sg25275 +S'unknown date\n' +p155137 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dea.jpg' +p155138 +sg25267 +g27 +sa(dp155139 +g25268 +S'Valley of Veronne (La vallee de Veronne)' +p155140 +sg25270 +S'Alphonse Legros' +p155141 +sg25273 +S'etching' +p155142 +sg25275 +S'unknown date\n' +p155143 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009ded.jpg' +p155144 +sg25267 +g27 +sa(dp155145 +g25268 +S'Hut in the Marsh (Cabane dans les marais)' +p155146 +sg25270 +S'Alphonse Legros' +p155147 +sg25273 +S'etching' +p155148 +sg25275 +S'unknown date\n' +p155149 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dee.jpg' +p155150 +sg25267 +g27 +sa(dp155151 +g25268 +S'Landscape (Paysage)' +p155152 +sg25270 +S'Alphonse Legros' +p155153 +sg25273 +S'etching' +p155154 +sg25275 +S'unknown date\n' +p155155 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009def.jpg' +p155156 +sg25267 +g27 +sa(dp155157 +g25268 +S"Ruins of an Ancient Aqueduct (Ruine d'un ancien aqueduc)" +p155158 +sg25270 +S'Alphonse Legros' +p155159 +sg25273 +S'etching' +p155160 +sg25275 +S'unknown date\n' +p155161 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009de9.jpg' +p155162 +sg25267 +g27 +sa(dp155163 +g25268 +S'Sleeper (Un dormeur)' +p155164 +sg25270 +S'Alphonse Legros' +p155165 +sg25273 +S'etching' +p155166 +sg25275 +S'unknown date\n' +p155167 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009df3.jpg' +p155168 +sg25267 +g27 +sa(dp155169 +g25268 +S"The Adoration of the Shepherds (L'adoration des bergers)" +p155170 +sg25270 +S'Alphonse Legros' +p155171 +sg25273 +S'etching retouched with pen' +p155172 +sg25275 +S'unknown date\n' +p155173 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e01.jpg' +p155174 +sg25267 +g27 +sa(dp155175 +g25268 +S'G.F. Watts, R.A., 2nd plate' +p155176 +sg25270 +S'Alphonse Legros' +p155177 +sg25273 +S'transfer lithograph?' +p155178 +sg25275 +S'unknown date\n' +p155179 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dfc.jpg' +p155180 +sg25267 +g27 +sa(dp155181 +g25268 +S'Mlle. Simpson' +p155182 +sg25270 +S'Alphonse Legros' +p155183 +sg25273 +S'transfer lithograph?' +p155184 +sg25275 +S'unknown date\n' +p155185 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dfb.jpg' +p155186 +sg25267 +g27 +sa(dp155187 +g25268 +S'View of a Chateau (Chateau de Poillet)' +p155188 +sg25270 +S'Alphonse Legros' +p155189 +sg25273 +S'etching with drypoint?' +p155190 +sg25275 +S'unknown date\n' +p155191 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009df8.jpg' +p155192 +sg25267 +g27 +sa(dp155193 +g25268 +S'Beggars of Brussels (Les mendiants de Bruges)' +p155194 +sg25270 +S'Alphonse Legros' +p155195 +sg25273 +S'etching' +p155196 +sg25275 +S'unknown date\n' +p155197 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e00.jpg' +p155198 +sg25267 +g27 +sa(dp155199 +g25268 +S"Village of Saint-Pierre during a Storm (Village de Saint-Pierre; Effet d'orage)" +p155200 +sg25270 +S'Alphonse Legros' +p155201 +sg25273 +S'etching' +p155202 +sg25275 +S'unknown date\n' +p155203 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dfd.jpg' +p155204 +sg25267 +g27 +sa(dp155205 +g25268 +S'Mme. Kemp, 4th plate' +p155206 +sg25270 +S'Alphonse Legros' +p155207 +sg25273 +S'etching' +p155208 +sg25275 +S'unknown date\n' +p155209 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dfa.jpg' +p155210 +sg25267 +g27 +sa(dp155211 +g25268 +S'Return of the Peasants (Le retour des paysans)' +p155212 +sg25270 +S'Alphonse Legros' +p155213 +sg25273 +S'transfer lithograph?' +p155214 +sg25275 +S'unknown date\n' +p155215 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e09.jpg' +p155216 +sg25267 +g27 +sa(dp155217 +g25268 +S'Return from the Woods (Le retour du bois)' +p155218 +sg25270 +S'Alphonse Legros' +p155219 +sg25273 +S'etching' +p155220 +sg25275 +S'unknown date\n' +p155221 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e08.jpg' +p155222 +sg25267 +g27 +sa(dp155223 +g25268 +S'At the Foot of the Cross (Au pied de la croix)' +p155224 +sg25270 +S'Alphonse Legros' +p155225 +sg25273 +S'lithograph in green' +p155226 +sg25275 +S'unknown date\n' +p155227 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e0f.jpg' +p155228 +sg25267 +g27 +sa(dp155229 +g25268 +S'The Manger (La creche)' +p155230 +sg25270 +S'Alphonse Legros' +p155231 +sg25273 +S'etching in green touched with green wash' +p155232 +sg25275 +S'unknown date\n' +p155233 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e04.jpg' +p155234 +sg25267 +g27 +sa(dp155235 +g25268 +S'Mask Held by Two Genii' +p155236 +sg25270 +S'Sebald Beham' +p155237 +sg25273 +S'engraving' +p155238 +sg25275 +S'1544' +p155239 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a892.jpg' +p155240 +sg25267 +g27 +sa(dp155241 +g25268 +S'The Manger (La creche)' +p155242 +sg25270 +S'Alphonse Legros' +p155243 +sg25273 +S'etching' +p155244 +sg25275 +S'unknown date\n' +p155245 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e10.jpg' +p155246 +sg25267 +g27 +sa(dp155247 +g25268 +S'Along the Top of the Hill (Sur le haut de la colline)' +p155248 +sg25270 +S'Alphonse Legros' +p155249 +sg25273 +S'etching retouched with crayon and ink' +p155250 +sg25275 +S'unknown date\n' +p155251 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e0d.jpg' +p155252 +sg25267 +g27 +sa(dp155253 +g25268 +S'Landscape with a Boy in a Tree (Paysage avec un garcon grimpe sur un arbre, dite "Le denicheur d\'oiseaux")' +p155254 +sg25270 +S'Alphonse Legros' +p155255 +sg25273 +S'etching and drypoint on light green paper' +p155256 +sg25275 +S'unknown date\n' +p155257 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e0a.jpg' +p155258 +sg25267 +g27 +sa(dp155259 +g25268 +S'Allegory of the Peasant and Fortune (Le paysan et la fortune: Sujet allegorique' +p155260 +sg25270 +S'Alphonse Legros' +p155261 +sg25273 +S'etching' +p155262 +sg25275 +S'unknown date\n' +p155263 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e1f.jpg' +p155264 +sg25267 +g27 +sa(dp155265 +g25268 +S'Allegory of the Peasant and Fortune (Le paysan et la fortune: Sujet allegorique' +p155266 +sg25270 +S'Alphonse Legros' +p155267 +sg25273 +S'etching and drypoint' +p155268 +sg25275 +S'unknown date\n' +p155269 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e1d.jpg' +p155270 +sg25267 +g27 +sa(dp155271 +g25268 +S'Top of the Hill (Le haut de la colline)' +p155272 +sg25270 +S'Alphonse Legros' +p155273 +sg25273 +S'drypoint and (etching?)' +p155274 +sg25275 +S'unknown date\n' +p155275 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e1b.jpg' +p155276 +sg25267 +g27 +sa(dp155277 +g25268 +S'Top of the Hill (Le haut de la colline)' +p155278 +sg25270 +S'Alphonse Legros' +p155279 +sg25273 +S'drypoint and (etching?)' +p155280 +sg25275 +S'unknown date\n' +p155281 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e1c.jpg' +p155282 +sg25267 +g27 +sa(dp155283 +g25268 +S'Small Fountain, Child Playing on the Grotesques (Petite fontaine, enfant qui joue surdes masques)' +p155284 +sg25270 +S'Alphonse Legros' +p155285 +sg25273 +S'etching' +p155286 +sg25275 +S'unknown date\n' +p155287 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e15.jpg' +p155288 +sg25267 +g27 +sa(dp155289 +g25268 +S'J.B. Poquelin de Moliere' +p155290 +sg25270 +S'Artist Information (' +p155291 +sg25273 +S'(artist after)' +p155292 +sg25275 +S'\n' +p155293 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f1f.jpg' +p155294 +sg25267 +g27 +sa(dp155295 +g25268 +S'F.M. Arouet de Voltaire' +p155296 +sg25270 +S'Artist Information (' +p155297 +sg25273 +S'(artist after)' +p155298 +sg25275 +S'\n' +p155299 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f1e.jpg' +p155300 +sg25267 +g27 +sa(dp155301 +g25268 +S'Genius with Alphabet' +p155302 +sg25270 +S'Sebald Beham' +p155303 +sg25273 +S'engraving' +p155304 +sg25275 +S'1542' +p155305 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a897.jpg' +p155306 +sg25267 +g27 +sa(dp155307 +g25268 +S'Bonaparte Premier Consul de la Republique Francaise' +p155308 +sg25270 +S'Charles Francois Gabriel Levachez' +p155309 +sg25273 +S'color aquatint and etching' +p155310 +sg25275 +S'unknown date\n' +p155311 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f04.jpg' +p155312 +sg25267 +g27 +sa(dp155313 +g25273 +S'(artist after)' +p155314 +sg25267 +g27 +sg25275 +S'\n' +p155315 +sg25268 +S'Bonaparte Reviewing the Consular Guard (La Revue du Quintidi)' +p155316 +sg25270 +S'Artist Information (' +p155317 +sa(dp155318 +g25268 +S'The Gift of the Fishermen' +p155319 +sg25270 +S'Artist Information (' +p155320 +sg25273 +S'French, 1695 - 1736' +p155321 +sg25275 +S'(artist after)' +p155322 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005aa2.jpg' +p155323 +sg25267 +g27 +sa(dp155324 +g25273 +S'Italian, 1675 - 1757' +p155325 +sg25267 +g27 +sg25275 +S'(artist after)' +p155326 +sg25268 +S'Countess Orzelska' +p155327 +sg25270 +S'Artist Information (' +p155328 +sa(dp155329 +g25268 +S'A Game of Cards' +p155330 +sg25270 +S'Louis Durameau' +p155331 +sg25273 +S'pen and brown ink with brown wash and white heightening over graphite on laid paper' +p155332 +sg25275 +S'1767' +p155333 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f89.jpg' +p155334 +sg25267 +g27 +sa(dp155335 +g25268 +S'Ornament with a Mask' +p155336 +sg25270 +S'Sebald Beham' +p155337 +sg25273 +S'engraving' +p155338 +sg25275 +S'1543' +p155339 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a89a.jpg' +p155340 +sg25267 +g27 +sa(dp155341 +g25268 +S'Ornament with a Mask' +p155342 +sg25270 +S'Sebald Beham' +p155343 +sg25273 +S'engraving' +p155344 +sg25275 +S'1543' +p155345 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a899.jpg' +p155346 +sg25267 +g27 +sa(dp155347 +g25268 +S'Ornament with Three Satyrs' +p155348 +sg25270 +S'Sebald Beham' +p155349 +sg25273 +S'engraving' +p155350 +sg25275 +S'unknown date\n' +p155351 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a893.jpg' +p155352 +sg25267 +g27 +sa(dp155353 +g25268 +S'Madonna and Child' +p155354 +sg25270 +S'Fra Filippo Lippi' +p155355 +sg25273 +S'tempera on panel' +p155356 +sg25275 +S'c. 1440' +p155357 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005c6.jpg' +p155358 +sg25267 +S"Orphaned at a young age, Filippo Lippi was raised in the\r\n Carmelite \r\n convent of Santa Maria in Florence, where he would undoubtedly have\r\n seen \r\n Masaccio and Masolino at work on the frescoes in the Brancacci\r\n chapel. He \r\n took vows himself, but proved to be wholly unsuited to religious\r\n life. His \r\n name surfaces often in court documents. Tried for embezzlement\r\n (even \r\n tortured on the rack), he lived openly with a Carmelite nun,\r\n Lucretia Buti, \r\n who was his model and with whom he had a son—painter \r\n \n Filippo's Virgin is wistful and slightly melancholy, while the\r\n infant's \r\n heavy, almost muscular form recalls Masaccio's emphatically \r\n three-dimensional figures. Masaccio had used strongly directional\r\n light to \r\n reveal the form of his figures. Filippo's Virgin and child, on the\r\n other \r\n hand, are bathed in an overall glow that prevents the modeling of\r\n the \r\n figures from overpowering the graceful and well-defined line of his\r\n composition. As Filippo grew older his reliance on line increased\r\n and \r\n Masaccio's influence lessened.\n " +p155359 +sa(dp155360 +g25268 +S'Ornament with a Vase between Two Genii' +p155361 +sg25270 +S'Sebald Beham' +p155362 +sg25273 +S'engraving' +p155363 +sg25275 +S'unknown date\n' +p155364 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a895.jpg' +p155365 +sg25267 +g27 +sa(dp155366 +g25268 +S'Ornament with a Vase between Two Genii' +p155367 +sg25270 +S'Sebald Beham' +p155368 +sg25273 +S'engraving' +p155369 +sg25275 +S'unknown date\n' +p155370 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a894.jpg' +p155371 +sg25267 +g27 +sa(dp155372 +g25273 +S'(artist after)' +p155373 +sg25267 +g27 +sg25275 +S'\n' +p155374 +sg25268 +S'Alexander Hamilton' +p155375 +sg25270 +S'Artist Information (' +p155376 +sa(dp155377 +g25273 +S'marble' +p155378 +sg25267 +g27 +sg25275 +S'1954' +p155379 +sg25268 +S'Andrew W. Mellon' +p155380 +sg25270 +S'Walker Hancock' +p155381 +sa(dp155382 +g25268 +S'The Entombment' +p155383 +sg25270 +S'Andrea Mantegna' +p155384 +sg25273 +S'engraving' +p155385 +sg25275 +S'1465/1470' +p155386 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005efb.jpg' +p155387 +sg25267 +g27 +sa(dp155388 +g25268 +S'Ornament Panel: Nereid and Two Children Playing Musical Instruments' +p155389 +sg25270 +S'Artist Information (' +p155390 +sg25273 +S'(artist)' +p155391 +sg25275 +S'\n' +p155392 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7c0.jpg' +p155393 +sg25267 +g27 +sa(dp155394 +g25268 +S'Ornament Panel: Griffins and Two Cupids Crossing Halberds' +p155395 +sg25270 +S'Artist Information (' +p155396 +sg25273 +S'(artist)' +p155397 +sg25275 +S'\n' +p155398 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7bd.jpg' +p155399 +sg25267 +g27 +sa(dp155400 +g25268 +S'Ornament Panel: Nereid Ridden by Two Children' +p155401 +sg25270 +S'Artist Information (' +p155402 +sg25273 +S'(artist)' +p155403 +sg25275 +S'\n' +p155404 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7bf.jpg' +p155405 +sg25267 +g27 +sa(dp155406 +g25268 +S'Ornament Panel: Three Children Blowing Horns' +p155407 +sg25270 +S'Artist Information (' +p155408 +sg25273 +S'(artist)' +p155409 +sg25275 +S'\n' +p155410 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7b9.jpg' +p155411 +sg25267 +g27 +sa(dp155412 +g25268 +S'Thomas Sully' +p155413 +sg25270 +S'Rembrandt Peale' +p155414 +sg25273 +S'oil on canvas board' +p155415 +sg25275 +S'1859' +p155416 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001a9.jpg' +p155417 +sg25267 +g27 +sa(dp155418 +g25268 +S'Ornament with Male Half Figure Between Two Genii' +p155419 +sg25270 +S'Sebald Beham' +p155420 +sg25273 +S'engraving' +p155421 +sg25275 +S'unknown date\n' +p155422 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a896.jpg' +p155423 +sg25267 +g27 +sa(dp155424 +g25268 +S'On the Terrace' +p155425 +sg25270 +S'Jean-Baptiste Joseph Pater' +p155426 +sg25273 +S'oil on canvas' +p155427 +sg25275 +S'c. 1730/1735' +p155428 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d80.jpg' +p155429 +sg25267 +g27 +sa(dp155430 +g25268 +S'Shepherd Dancing to the Sound of a Flute' +p155431 +sg25270 +S'Artist Information (' +p155432 +sg25273 +S'(artist after)' +p155433 +sg25275 +S'\n' +p155434 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e49.jpg' +p155435 +sg25267 +g27 +sa(dp155436 +g25268 +S'Gilles' +p155437 +sg25270 +S'Artist Information (' +p155438 +sg25273 +S'(artist after)' +p155439 +sg25275 +S'\n' +p155440 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e47.jpg' +p155441 +sg25267 +g27 +sa(dp155442 +g25268 +S'Seated Woman Playing a Guitar' +p155443 +sg25270 +S'Artist Information (' +p155444 +sg25273 +S'(artist after)' +p155445 +sg25275 +S'\n' +p155446 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e48.jpg' +p155447 +sg25267 +g27 +sa(dp155448 +g25268 +S'Shepherd and Shepherdess (?)' +p155449 +sg25270 +S'Artist Information (' +p155450 +sg25273 +S'(artist after)' +p155451 +sg25275 +S'\n' +p155452 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f2b.jpg' +p155453 +sg25267 +g27 +sa(dp155454 +g25268 +S'LeMay' +p155455 +sg25270 +S'Artist Information (' +p155456 +sg25273 +S'(artist after)' +p155457 +sg25275 +S'\n' +p155458 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009649.jpg' +p155459 +sg25267 +g27 +sa(dp155460 +g25268 +S'General Francois Severin Desgraviers Marceau' +p155461 +sg25270 +S'Antoine-Fran\xc3\xa7ois Sergent' +p155462 +sg25273 +S'color aquatint' +p155463 +sg25275 +S'unknown date\n' +p155464 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000974a.jpg' +p155465 +sg25267 +g27 +sa(dp155466 +g25268 +S'Joachim Murat (Joachim-Napoleon, Roi de Naples et de Sicile, Grand-Admiral de France)' +p155467 +sg25270 +S'Artist Information (' +p155468 +sg25273 +S'(artist after)' +p155469 +sg25275 +S'\n' +p155470 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009665.jpg' +p155471 +sg25267 +g27 +sa(dp155472 +g25268 +S'Ornament with Two Grotesque Dolphins' +p155473 +sg25270 +S'Sebald Beham' +p155474 +sg25273 +S'engraving' +p155475 +sg25275 +S'unknown date\n' +p155476 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a89c.jpg' +p155477 +sg25267 +g27 +sa(dp155478 +g25268 +S'Marie-Antoinette' +p155479 +sg25270 +S'Artist Information (' +p155480 +sg25273 +S'(artist after)' +p155481 +sg25275 +S'\n' +p155482 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077cd.jpg' +p155483 +sg25267 +g27 +sa(dp155484 +g25268 +S"Charles Henri, Comte d'Estaing" +p155485 +sg25270 +S'P. Frieselhem' +p155486 +sg25273 +S'color aquatint' +p155487 +sg25275 +S'unknown date\n' +p155488 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b349.jpg' +p155489 +sg25267 +g27 +sa(dp155490 +g25268 +S'The Empress Josephine' +p155491 +sg25270 +S'Henry Buquet' +p155492 +sg25273 +S'hand-colored stipple engraving' +p155493 +sg25275 +S'unknown date\n' +p155494 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f33.jpg' +p155495 +sg25267 +g27 +sa(dp155496 +g25268 +S'Princess Auguste Amelie of Bavaria' +p155497 +sg25270 +S'Michele Bisi' +p155498 +sg25273 +S'color -' +p155499 +sg25275 +S'unknown date\n' +p155500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc63.jpg' +p155501 +sg25267 +g27 +sa(dp155502 +g25268 +S'Helvetius' +p155503 +sg25270 +S'Artist Information (' +p155504 +sg25273 +S'(artist after)' +p155505 +sg25275 +S'\n' +p155506 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f17.jpg' +p155507 +sg25267 +g27 +sa(dp155508 +g25268 +S'Napoleon as General of the Italian Army' +p155509 +sg25270 +S'Artist Information (' +p155510 +sg25273 +S'(artist after)' +p155511 +sg25275 +S'\n' +p155512 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009647.jpg' +p155513 +sg25267 +g27 +sa(dp155514 +g25268 +S'Jean Jacques Rousseau' +p155515 +sg25270 +S'Artist Information (' +p155516 +sg25273 +S'(artist after)' +p155517 +sg25275 +S'\n' +p155518 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f1b.jpg' +p155519 +sg25267 +g27 +sa(dp155520 +g25268 +S'Charlotte Corday' +p155521 +sg25270 +S'Artist Information (' +p155522 +sg25273 +S'(artist after)' +p155523 +sg25275 +S'\n' +p155524 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f18.jpg' +p155525 +sg25267 +g27 +sa(dp155526 +g25273 +S'(artist after)' +p155527 +sg25267 +g27 +sg25275 +S'\n' +p155528 +sg25268 +S'Napoleon' +p155529 +sg25270 +S'Artist Information (' +p155530 +sa(dp155531 +g25268 +S'Benjamin Franklin' +p155532 +sg25270 +S'Artist Information (' +p155533 +sg25273 +S'(artist)' +p155534 +sg25275 +S'\n' +p155535 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fa2.jpg' +p155536 +sg25267 +g27 +sa(dp155537 +g25268 +S'Ornament with Two Genii Riding on Two Chimeras' +p155538 +sg25270 +S'Sebald Beham' +p155539 +sg25273 +S'engraving' +p155540 +sg25275 +S'1544' +p155541 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a89d.jpg' +p155542 +sg25267 +g27 +sa(dp155543 +g25268 +S'Henry IV' +p155544 +sg25270 +S'Artist Information (' +p155545 +sg25273 +S'(artist after)' +p155546 +sg25275 +S'\n' +p155547 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008fa4.jpg' +p155548 +sg25267 +g27 +sa(dp155549 +g25273 +S'(artist after)' +p155550 +sg25267 +g27 +sg25275 +S'\n' +p155551 +sg25268 +S'Arthur Wellesley, The Duke of Wellington' +p155552 +sg25270 +S'Artist Information (' +p155553 +sa(dp155554 +g25268 +S'Louis Seize' +p155555 +sg25270 +S'Philibert-Louis Debucourt' +p155556 +sg25273 +S'color aquatint, mezzotint, and etching' +p155557 +sg25275 +S'1789' +p155558 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096c3.jpg' +p155559 +sg25267 +g27 +sa(dp155560 +g25273 +S'(artist after)' +p155561 +sg25267 +g27 +sg25275 +S'\n' +p155562 +sg25268 +S'Lt. Colonel Tarleton' +p155563 +sg25270 +S'Artist Information (' +p155564 +sa(dp155565 +g25273 +S'monotype' +p155566 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155567 +sg25268 +S'The Great Bird (Der grosse Vogel)' +p155568 +sg25270 +S'Hans Achenbach' +p155569 +sa(dp155570 +g25268 +S'Dankspende des deutschen Volkes 1951 / Deutsche Graphik 1952' +p155571 +sg25270 +S'Various Artists' +p155572 +sg25273 +S'Gift of the German People' +p155573 +sg25275 +S'\nportflio with sixty-four prints by various artists, originally divided into three parts but presently removed; see individual entries for locations' +p155574 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b789.jpg' +p155575 +sg25267 +g27 +sa(dp155576 +g25273 +S'color woodcut' +p155577 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155578 +sg25268 +S'The Shared Loaf (Geteiltes Brot)' +p155579 +sg25270 +S'Rudolf Werner Ackermann' +p155580 +sa(dp155581 +g25273 +S'color woodcut' +p155582 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155583 +sg25268 +S'The Gift (Die Gabe)' +p155584 +sg25270 +S'Rudolf Werner Ackermann' +p155585 +sa(dp155586 +g25273 +S'woodcut in two colors' +p155587 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155588 +sg25268 +S'Firs (Tannen)' +p155589 +sg25270 +S'Magda Felicitas Auer' +p155590 +sa(dp155591 +g25273 +S'color lithograph' +p155592 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155593 +sg25268 +S'On Sylt Dunes (Dunen auf Sylt)' +p155594 +sg25270 +S'Gerta Kleist' +p155595 +sa(dp155596 +g25268 +S'Triumphal Procession of Children' +p155597 +sg25270 +S'Sebald Beham' +p155598 +sg25273 +S'engraving' +p155599 +sg25275 +S'unknown date\n' +p155600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a89e.jpg' +p155601 +sg25267 +g27 +sa(dp155602 +g25273 +S'monotype' +p155603 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155604 +sg25268 +S'Peace (Freiden)' +p155605 +sg25270 +S'Gerth Biese' +p155606 +sa(dp155607 +g25273 +S'monotype' +p155608 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155609 +sg25268 +S'Help (Hilfe)' +p155610 +sg25270 +S'Gerth Biese' +p155611 +sa(dp155612 +g25273 +S'color woodcut' +p155613 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155614 +sg25268 +S'Bouquet of Flowers (Blumenstrauss)' +p155615 +sg25270 +S'Gertraud Boelter-Evers' +p155616 +sa(dp155617 +g25273 +S'color woodcut' +p155618 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155619 +sg25268 +S'Girl with Olive Branch (Madchen mit Oelzweig)' +p155620 +sg25270 +S'Gertraud Boelter-Evers' +p155621 +sa(dp155622 +g25273 +S'color woodcut' +p155623 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155624 +sg25268 +S'Saint Martin' +p155625 +sg25270 +S'Gunther Bundschuh' +p155626 +sa(dp155627 +g25273 +S'color woodcut' +p155628 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155629 +sg25268 +S'Charity' +p155630 +sg25270 +S'Gunther Bundschuh' +p155631 +sa(dp155632 +g25273 +S'color lithograph' +p155633 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155634 +sg25268 +S'Composition (Komposition)' +p155635 +sg25270 +S'Gottfried Diehl' +p155636 +sa(dp155637 +g25273 +S'lithograph' +p155638 +sg25267 +g27 +sg25275 +S'1952' +p155639 +sg25268 +S'Two Children (Zwei Kinder)' +p155640 +sg25270 +S'Otto Dix' +p155641 +sa(dp155642 +g25273 +S'color etching' +p155643 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155644 +sg25268 +S'Free World (Freie Welt)' +p155645 +sg25270 +S'Otto Eglau' +p155646 +sa(dp155647 +g25273 +S'color etching' +p155648 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155649 +sg25268 +S'Festive Symbols (Festliche Zeichen)' +p155650 +sg25270 +S'Otto Eglau' +p155651 +sa(dp155652 +g25268 +S'Double Cup with Two Genii Riding on Dolphins' +p155653 +sg25270 +S'Sebald Beham' +p155654 +sg25273 +S'engraving' +p155655 +sg25275 +S'1526' +p155656 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8ae.jpg' +p155657 +sg25267 +g27 +sa(dp155658 +g25273 +S'lithograph' +p155659 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155660 +sg25268 +S'Child (Kind)' +p155661 +sg25270 +S'Gerda Engelke' +p155662 +sa(dp155663 +g25273 +S'7-color lithograph' +p155664 +sg25267 +g27 +sg25275 +S'1952' +p155665 +sg25268 +S'In the Great Space (Im Grossen Raume)' +p155666 +sg25270 +S'Fathwinter' +p155667 +sa(dp155668 +g25273 +S'woodcut in three colors' +p155669 +sg25267 +g27 +sg25275 +S'1952' +p155670 +sg25268 +S'Matilda (Mechtild)' +p155671 +sg25270 +S'Wolfgang Frager' +p155672 +sa(dp155673 +g25273 +S'lithograph' +p155674 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155675 +sg25268 +S'Harbingers of Joy (Vorbeten der Freude)' +p155676 +sg25270 +S'Willi Geiger' +p155677 +sa(dp155678 +g25273 +S'woodcut' +p155679 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155680 +sg25268 +S'Winter 1946' +p155681 +sg25270 +S'Wilhelm Grimm' +p155682 +sa(dp155683 +g25273 +S'woodcut' +p155684 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155685 +sg25268 +S'Musicians (Musikanten)' +p155686 +sg25270 +S'Wilhelm Grimm' +p155687 +sa(dp155688 +g25273 +S'lithograph' +p155689 +sg25267 +g27 +sg25275 +S'1948' +p155690 +sg25268 +S'Eccentric Clown (Excentric-Clown)' +p155691 +sg25270 +S'Erich Heckel' +p155692 +sa(dp155693 +g25273 +S'4-color linoleum cut?' +p155694 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155695 +sg25268 +S'Saint Martin' +p155696 +sg25270 +S'Gunther Heinemann' +p155697 +sa(dp155698 +g25273 +S'hand-colored etching' +p155699 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155700 +sg25268 +S'Vase of Flowers (Blumenvase)' +p155701 +sg25270 +S'Wolf Hoffmann' +p155702 +sa(dp155703 +g25273 +S'color lithograph' +p155704 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155705 +sg25268 +S'I Thirst (Mich durstet)' +p155706 +sg25270 +S'Peter Kleinschmidt' +p155707 +sa(dp155708 +g25268 +S'Double Goblet with Oval Medallions' +p155709 +sg25270 +S'Sebald Beham' +p155710 +sg25273 +S'engraving' +p155711 +sg25275 +S'1530' +p155712 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8a3.jpg' +p155713 +sg25267 +g27 +sa(dp155714 +g25273 +S'woodcut' +p155715 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155716 +sg25268 +S'Night Serenade (Nachtliches Standchen)' +p155717 +sg25270 +S'Hubert Klessen' +p155718 +sa(dp155719 +g25273 +S'color woodcut' +p155720 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155721 +sg25268 +S'Vegetation I' +p155722 +sg25270 +S'Carl-Heinz Kliemann' +p155723 +sa(dp155724 +g25273 +S'color woodcut' +p155725 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155726 +sg25268 +S'Vegetation III' +p155727 +sg25270 +S'Carl-Heinz Kliemann' +p155728 +sa(dp155729 +g25273 +S'woodcut' +p155730 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155731 +sg25268 +S'Cherry Blossoms (Kirschblute)' +p155732 +sg25270 +S'Erich Kohout' +p155733 +sa(dp155734 +g25273 +S'woodcut' +p155735 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155736 +sg25268 +S'The Good Samaritan (Samariter)' +p155737 +sg25270 +S'Wolfgang Kreutter' +p155738 +sa(dp155739 +g25273 +S'woodcut' +p155740 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155741 +sg25268 +S'The Dove of Peace (Taube)' +p155742 +sg25270 +S'Wolfgang Kreutter' +p155743 +sa(dp155744 +g25273 +S'color etching' +p155745 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155746 +sg25268 +S'Thank You from Berlin (Dank aus Berlin)' +p155747 +sg25270 +S'Rudolf K\xc3\xbcgler' +p155748 +sa(dp155749 +g25273 +S'color etching' +p155750 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155751 +sg25268 +S'Blooming and Growing (Bluhend und Wachsend)' +p155752 +sg25270 +S'Rudolf K\xc3\xbcgler' +p155753 +sa(dp155754 +g25273 +S'color etching and aquatint' +p155755 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155756 +sg25268 +S'A Section of Berlin (Berliner Stadtbild)' +p155757 +sg25270 +S'Dietmar Lemcke' +p155758 +sa(dp155759 +g25273 +S'woodcut' +p155760 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155761 +sg25268 +S'Ploughman and Flocks of Birds (Pfluger und Vogelschwarm)' +p155762 +sg25270 +S'Gerhard Marcks' +p155763 +sa(dp155764 +g25268 +S'Double Goblet with Round Medallions' +p155765 +sg25270 +S'Sebald Beham' +p155766 +sg25273 +S'engraving' +p155767 +sg25275 +S'1530' +p155768 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8a4.jpg' +p155769 +sg25267 +g27 +sa(dp155770 +g25273 +S'screenprint' +p155771 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155772 +sg25268 +S'Fiery Dove (Feuerstaube)' +p155773 +sg25270 +S'Georg Meistermann' +p155774 +sa(dp155775 +g25273 +S'color woodcut' +p155776 +sg25267 +g27 +sg25275 +S'probably 1952' +p155777 +sg25268 +S'On a Blue-Gray Ground (Auf Blau-Grauem Grund)' +p155778 +sg25270 +S'Erhart Mitzlaff' +p155779 +sa(dp155780 +g25273 +S'woodcut' +p155781 +sg25267 +g27 +sg25275 +S'1952' +p155782 +sg25268 +S'German Madonna (Deutsche Madonna)' +p155783 +sg25270 +S'Hildegard Mossel' +p155784 +sa(dp155785 +g25273 +S'color woodcut' +p155786 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155787 +sg25268 +S'Giving Him Thanks (Und Dankte Ihm)' +p155788 +sg25270 +S'Rolf Muller' +p155789 +sa(dp155790 +g25273 +S'color lithograph' +p155791 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155792 +sg25268 +S'Composition (Komposition)' +p155793 +sg25270 +S'Ernst Wilhelm Nay' +p155794 +sa(dp155795 +g25273 +S'woodcut' +p155796 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155797 +sg25268 +S'The Joys of Youth (Jugendfreude)' +p155798 +sg25270 +S'Franz Neundinger' +p155799 +sa(dp155800 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155801 +sg25268 +S'Pears (Birnen)' +p155802 +sg25270 +S'Heinz Nickel' +p155803 +sa(dp155804 +g25273 +S'color woodcut' +p155805 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155806 +sg25268 +S'Dr. Lisa Oehler' +p155807 +sg25270 +S'Walter Nikusch' +p155808 +sa(dp155809 +g25273 +S'etching' +p155810 +sg25267 +g27 +sg25275 +S'1918' +p155811 +sg25268 +S'Neighbors (Nachbarn)' +p155812 +sg25270 +S'Emil Nolde' +p155813 +sa(dp155814 +g25273 +S'4-color lithograph' +p155815 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155816 +sg25268 +S'Peace (Frieden)' +p155817 +sg25270 +S'Ernst Oberhoff' +p155818 +sa(dp155819 +g25268 +S'Double Goblet with Oval Decorations' +p155820 +sg25270 +S'Sebald Beham' +p155821 +sg25273 +S'engraving' +p155822 +sg25275 +S'1530' +p155823 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8a5.jpg' +p155824 +sg25267 +g27 +sa(dp155825 +g25273 +S'wood engraving' +p155826 +sg25267 +g27 +sg25275 +S'1952' +p155827 +sg25268 +S'The Good Samaritan (Samariter)' +p155828 +sg25270 +S'Willi Probst' +p155829 +sa(dp155830 +g25273 +S'color lithograph' +p155831 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155832 +sg25268 +S'Playing Child (Spielendes Kind)' +p155833 +sg25270 +S'Robert Pudlich' +p155834 +sa(dp155835 +g25273 +S'color lithograph' +p155836 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155837 +sg25268 +S'Still Life (Stilleben)' +p155838 +sg25270 +S'Robert Pudlich' +p155839 +sa(dp155840 +g25273 +S'lithograph' +p155841 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155842 +sg25268 +S'A Little Dutch Girl and Her Doll (Kleine Hollanderin mit Puppe)' +p155843 +sg25270 +S'Erich Rhein' +p155844 +sa(dp155845 +g25273 +S'lithograph' +p155846 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155847 +sg25268 +S'Saint Martin' +p155848 +sg25270 +S'Erich Rhein' +p155849 +sa(dp155850 +g25273 +S'linoleum cut' +p155851 +sg25267 +g27 +sg25275 +S'1952' +p155852 +sg25268 +S'Composition (Komposition)' +p155853 +sg25270 +S'Diether Ritzert' +p155854 +sa(dp155855 +g25273 +S'color wood engraving' +p155856 +sg25267 +g27 +sg25275 +S'1952' +p155857 +sg25268 +S'Friendly Gifts (Freundliches Gaben)' +p155858 +sg25270 +S'Karl R\xc3\xb6ssing' +p155859 +sa(dp155860 +g25273 +S'color wood engraving' +p155861 +sg25267 +g27 +sg25275 +S'1952' +p155862 +sg25268 +S'Produce and Peace (Fruchte und Frieden)' +p155863 +sg25270 +S'Karl R\xc3\xb6ssing' +p155864 +sa(dp155865 +g25273 +S'color lithograph' +p155866 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155867 +sg25268 +S'Still Life with Pot (Stilleben mit Kanne)' +p155868 +sg25270 +S'Karin Schepers' +p155869 +sa(dp155870 +g25273 +S'woodcut' +p155871 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155872 +sg25268 +S'Landscape in East Germany (Landschaft aus Ostdeutschland)' +p155873 +sg25270 +S'Grete Schmedes' +p155874 +sa(dp155875 +g25268 +S'Saint John the Baptist' +p155876 +sg25270 +S'Lippo Memmi' +p155877 +sg25273 +S'tempera on panel' +p155878 +sg25275 +S'probably c. 1325' +p155879 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000859.jpg' +p155880 +sg25267 +g27 +sa(dp155881 +g25273 +S'woodcut' +p155882 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155883 +sg25268 +S'Thanks (Dank)' +p155884 +sg25270 +S'Johanna Schutz-Wolff' +p155885 +sa(dp155886 +g25273 +S'woodcut' +p155887 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155888 +sg25268 +S'Help in Time of Need (Hilfe in Not)' +p155889 +sg25270 +S'Hermann Sprauer' +p155890 +sa(dp155891 +g25273 +S'color woodcut' +p155892 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155893 +sg25268 +S'Joy (Freude)' +p155894 +sg25270 +S'Margarethe von Stockhausen' +p155895 +sa(dp155896 +g25273 +S'lithograph' +p155897 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155898 +sg25268 +S'Saint Martin' +p155899 +sg25270 +S'Willi Titze' +p155900 +sa(dp155901 +g25273 +S'woodcut' +p155902 +sg25267 +g27 +sg25275 +S'unknown date\n' +p155903 +sg25268 +S"The Children's Thanks (Kinderdank)" +p155904 +sg25270 +S'Max Unold' +p155905 +sa(dp155906 +g25273 +S'lithograph' +p155907 +sg25267 +g27 +sg25275 +S'1953' +p155908 +sg25268 +S'Thanks Offering (Dankespende)' +p155909 +sg25270 +S'Rudolf Weissauer' +p155910 +sa(dp155911 +g25273 +S'color woodcut?' +p155912 +sg25267 +g27 +sg25275 +S'1952' +p155913 +sg25268 +S'Reunion of Cupid and Psyche (Wiederkehr von Amor und Psyche)' +p155914 +sg25270 +S'Conrad Westpfahl' +p155915 +sa(dp155916 +g25273 +S'color woodcut' +p155917 +sg25267 +g27 +sg25275 +S'1952' +p155918 +sg25268 +S'In the Net of Hephaistos (Im Netz des Hephaistos)' +p155919 +sg25270 +S'Conrad Westpfahl' +p155920 +sa(dp155921 +g25273 +S'intaglio' +p155922 +sg25267 +g27 +sg25275 +S'1952' +p155923 +sg25268 +S'Kites Soaring above the Ruins (Drachensteigen)' +p155924 +sg25270 +S'Paul Wunderlich' +p155925 +sa(dp155926 +g25268 +S'Self-Portrait, Frowning' +p155927 +sg25270 +S'Rembrandt van Rijn' +p155928 +sg25273 +S'etching' +p155929 +sg25275 +S'1630' +p155930 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2c4.jpg' +p155931 +sg25267 +g27 +sa(dp155932 +g25268 +S'Double Goblet, at Foot Two Genii' +p155933 +sg25270 +S'Sebald Beham' +p155934 +sg25273 +S'engraving' +p155935 +sg25275 +S'1531' +p155936 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8a6.jpg' +p155937 +sg25267 +g27 +sa(dp155938 +g25268 +S'Self-Portrait (?) with Plumed Cap and Lowered Sabre' +p155939 +sg25270 +S'Rembrandt van Rijn' +p155940 +sg25273 +S'etching' +p155941 +sg25275 +S'1634' +p155942 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2cc.jpg' +p155943 +sg25267 +g27 +sa(dp155944 +g25268 +S'The Adoration of the Shepherds: with the Lamp' +p155945 +sg25270 +S'Rembrandt van Rijn' +p155946 +sg25273 +S'etching (and burin where biting failed in state i)' +p155947 +sg25275 +S'c. 1654' +p155948 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2de.jpg' +p155949 +sg25267 +g27 +sa(dp155950 +g25268 +S'Christ Disputing with the Doctors: a Sketch' +p155951 +sg25270 +S'Rembrandt van Rijn' +p155952 +sg25273 +S'etching and drypoint' +p155953 +sg25275 +S'1652' +p155954 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00069/a0006926.jpg' +p155955 +sg25267 +g27 +sa(dp155956 +g25268 +S'Christ Preaching (La petite Tombe)' +p155957 +sg25270 +S'Rembrandt van Rijn' +p155958 +sg25273 +S'etching, engraving, and drypoint' +p155959 +sg25275 +S'c. 1652' +p155960 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e36.jpg' +p155961 +sg25267 +g27 +sa(dp155962 +g25268 +S'Christ and the Woman of Samaria Among Ruins' +p155963 +sg25270 +S'Rembrandt van Rijn' +p155964 +sg25273 +S'etching' +p155965 +sg25275 +S'1634' +p155966 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2ee.jpg' +p155967 +sg25267 +g27 +sa(dp155968 +g25268 +S'Christ at Emmaus: the Larger Plate' +p155969 +sg25270 +S'Rembrandt van Rijn' +p155970 +sg25273 +S'etching, burin, and drypoint' +p155971 +sg25275 +S'1654' +p155972 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00068/a000680b.jpg' +p155973 +sg25267 +g27 +sa(dp155974 +g25268 +S'Medea, or the Marriage of Jason and Creusa' +p155975 +sg25270 +S'Rembrandt van Rijn' +p155976 +sg25273 +S'etching, with touches of drypoint, on japan paper' +p155977 +sg25275 +S'1648' +p155978 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d543.jpg' +p155979 +sg25267 +g27 +sa(dp155980 +g25268 +S'Nude Seated on a Bench with a Pillow (Woman Bathing Her Feet at a Brook)' +p155981 +sg25270 +S'Rembrandt van Rijn' +p155982 +sg25273 +S'etching and engraving on vellum' +p155983 +sg25275 +S'1658' +p155984 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d337.jpg' +p155985 +sg25267 +g27 +sa(dp155986 +g25268 +S'The Three Trees' +p155987 +sg25270 +S'Rembrandt van Rijn' +p155988 +sg25273 +S'etching, with drypoint and burin, on white paper' +p155989 +sg25275 +S'1643' +p155990 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005ac0.jpg' +p155991 +sg25267 +g27 +sa(dp155992 +g25268 +S'Landscape with a Milkman' +p155993 +sg25270 +S'Rembrandt van Rijn' +p155994 +sg25273 +S'etching and drypoint' +p155995 +sg25275 +S'c. 1650' +p155996 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d33f.jpg' +p155997 +sg25267 +g27 +sa(dp155998 +g25268 +S'Ornament with Two Women Blindfolded' +p155999 +sg25270 +S'Sebald Beham' +p156000 +sg25273 +S'engraving' +p156001 +sg25275 +S'1527' +p156002 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8a1.jpg' +p156003 +sg25267 +g27 +sa(dp156004 +g25268 +S'Landscape with Trees, Farm Buildings and a Tower' +p156005 +sg25270 +S'Rembrandt van Rijn' +p156006 +sg25273 +S'etching and drypoint' +p156007 +sg25275 +S'c. 1651' +p156008 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d54c.jpg' +p156009 +sg25267 +g27 +sa(dp156010 +g25268 +S'The Windmill' +p156011 +sg25270 +S'Rembrandt van Rijn' +p156012 +sg25273 +S'etching' +p156013 +sg25275 +S'1641' +p156014 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f76.jpg' +p156015 +sg25267 +g27 +sa(dp156016 +g25268 +S"Landscape with a View toward Haarlem (The Goldweigher's Field)" +p156017 +sg25270 +S'Rembrandt van Rijn' +p156018 +sg25273 +S'etching and drypoint' +p156019 +sg25275 +S'1651' +p156020 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d555.jpg' +p156021 +sg25267 +g27 +sa(dp156022 +g25268 +S'Young Man in a Velvet Cap (Ferdinand Bol?)' +p156023 +sg25270 +S'Rembrandt van Rijn' +p156024 +sg25273 +S'etching' +p156025 +sg25275 +S'1637' +p156026 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d357.jpg' +p156027 +sg25267 +g27 +sa(dp156028 +g25268 +S'Faust' +p156029 +sg25270 +S'Rembrandt van Rijn' +p156030 +sg25273 +S'etching, drypoint and burin on a heavy white paper' +p156031 +sg25275 +S'c. 1652' +p156032 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00050/a0005038.jpg' +p156033 +sg25267 +g27 +sa(dp156034 +g25268 +S'Jan Lutma' +p156035 +sg25270 +S'Rembrandt van Rijn' +p156036 +sg25273 +S'etching, drypoint and burin' +p156037 +sg25275 +S'1656' +p156038 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d36a.jpg' +p156039 +sg25267 +g27 +sa(dp156040 +g25268 +S'Jan Asselyn' +p156041 +sg25270 +S'Rembrandt van Rijn' +p156042 +sg25273 +S'etching, drypoint and burin' +p156043 +sg25275 +S'c. 1647' +p156044 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d372.jpg' +p156045 +sg25267 +g27 +sa(dp156046 +g25268 +S"The Artist's Mother Seated at a Table, Looking Right" +p156047 +sg25270 +S'Rembrandt van Rijn' +p156048 +sg25273 +S'etching' +p156049 +sg25275 +S'c. 1631' +p156050 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d386.jpg' +p156051 +sg25267 +g27 +sa(dp156052 +g25268 +S"The Marquis d'Ossun" +p156053 +sg25270 +S'Jules C\xc3\xa9sar Denis Van Loo, called C\xc3\xa9sar Van Loo' +p156054 +sg25273 +S', c. 1780' +p156055 +sg25275 +S'\n' +p156056 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005aad.jpg' +p156057 +sg25267 +g27 +sa(dp156058 +g25268 +S'Lessing J. Rosenwald' +p156059 +sg25270 +S'Gardner Cox' +p156060 +sg25273 +S'oil on canvas' +p156061 +sg25275 +S'1955' +p156062 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000006c.jpg' +p156063 +sg25267 +S"Lessing Julius Rosenwald (1891-1979) followed his father in directing \n the mail-order firm of Sears, Roebuck & Company. In 1939, the younger Rosenwald retired from \n business to devote himself to public service and to his love of prints and \n drawings from the Middle Ages to the present. In 1941, only months after \n the National Gallery opened, Rosenwald began donating selections from his \n collection of works on paper. He also freely lent graphic art from his \n home outside Philadelphia for public exhibition or scholarly inspection in \n Washington. By the time of Rosenwald's death, his gifts to the Gallery \n totaled some 22,000 drawings and prints. He donated his rare illustrated \n books and manuscripts to the Library of Congress.\n Gardner Cox achieved fame for the sound draftsmanship and understanding \n of anatomy that underlie Rosenwald's informal likeness.\n " +p156064 +sa(dp156065 +g25268 +S'Capital and Base of a Column' +p156066 +sg25270 +S'Sebald Beham' +p156067 +sg25273 +S'engraving' +p156068 +sg25275 +S'1543' +p156069 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8a8.jpg' +p156070 +sg25267 +g27 +sa(dp156071 +g25268 +S"Ville-d'Avray" +p156072 +sg25270 +S'Jean-Baptiste-Camille Corot' +p156073 +sg25273 +S'oil on canvas' +p156074 +sg25275 +S'c. 1865' +p156075 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000daf.jpg' +p156076 +sg25267 +g27 +sa(dp156077 +g25268 +S'Fowl' +p156078 +sg25270 +S'Nigerian 18th Century' +p156079 +sg25273 +S'brass with cast iron supports' +p156080 +sg25275 +S'mid 18th century' +p156081 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d8b.jpg' +p156082 +sg25267 +g27 +sa(dp156083 +g25268 +S'The Barnyard' +p156084 +sg25270 +S'Amzi Emmons Zeliff' +p156085 +sg25273 +S'oil on canvas' +p156086 +sg25275 +S'late 19th century' +p156087 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000012e.jpg' +p156088 +sg25267 +g27 +sa(dp156089 +g25268 +S'The Herbert Children' +p156090 +sg25270 +S'Lambert Sachs' +p156091 +sg25273 +S'oil on canvas' +p156092 +sg25275 +S'1857' +p156093 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001fe.jpg' +p156094 +sg25267 +g27 +sa(dp156095 +g25268 +S'Mounting of the Guard' +p156096 +sg25270 +S'Redpath' +p156097 +sg25273 +S'oil on canvas' +p156098 +sg25275 +S'mid 19th century' +p156099 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001f2.jpg' +p156100 +sg25267 +g27 +sa(dp156101 +g25268 +S'Allegory of Freedom' +p156102 +sg25270 +S'American 19th Century' +p156103 +sg25273 +S'overall: 94.2 x 109.3 cm (37 1/16 x 43 1/16 in.)\r\nframed: 107.3 x 122.5 x 5.7 cm (42 1/4 x 48 1/4 x 2 1/4 in.)' +p156104 +sg25275 +S'\noil on canvas' +p156105 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003fd.jpg' +p156106 +sg25267 +g27 +sa(dp156107 +g25268 +S'Probably Annis Cook Holding an Apple' +p156108 +sg25270 +S'American 19th Century' +p156109 +sg25273 +S'overall: 81.9 x 59.5 cm (32 1/4 x 23 7/16 in.)\r\nframed: 97.8 x 75.9 x 8.8 cm (38 1/2 x 29 7/8 x 3 7/16 in.)' +p156110 +sg25275 +S'\noil on wood' +p156111 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003fe.jpg' +p156112 +sg25267 +g27 +sa(dp156113 +g25268 +S'Probably Sarah Cook Arnold Knitting' +p156114 +sg25270 +S'American 19th Century' +p156115 +sg25273 +S'overall: 89.6 x 58 cm (35 1/4 x 22 13/16 in.)\r\nframed: 105.7 x 74 x 9.5 cm (41 5/8 x 29 1/8 x 3 3/4 in.)' +p156116 +sg25275 +S'\noil on wood' +p156117 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000426.jpg' +p156118 +sg25267 +g27 +sa(dp156119 +g25268 +S'Memorial to Nicholas M. S. Catlin' +p156120 +sg25270 +S'American 19th Century' +p156121 +sg25273 +S'overall: 98.4 x 73.2 cm (38 3/4 x 28 13/16 in.)\r\nframed: 112.4 x 87.6 x 5 cm (44 1/4 x 34 1/2 x 1 15/16 in.)' +p156122 +sg25275 +S'\noil on canvas' +p156123 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a000043a.jpg' +p156124 +sg25267 +g27 +sa(dp156125 +g25268 +S'Henry L. Wells' +p156126 +sg25270 +S'Susan C. Waters' +p156127 +sg25273 +S'oil on canvas' +p156128 +sg25275 +S'1845' +p156129 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000028b.jpg' +p156130 +sg25267 +g27 +sa(dp156131 +g25268 +S'Capital and Base of a Column' +p156132 +sg25270 +S'Sebald Beham' +p156133 +sg25273 +S'engraving' +p156134 +sg25275 +S'1545' +p156135 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8aa.jpg' +p156136 +sg25267 +g27 +sa(dp156137 +g25268 +S'Eaton Family Memorial' +p156138 +sg25270 +S'Samuel Jordan' +p156139 +sg25273 +S'oil on canvas' +p156140 +sg25275 +S'1831' +p156141 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000126.jpg' +p156142 +sg25267 +g27 +sa(dp156143 +g25268 +S'Emancipation Proclamation' +p156144 +sg25270 +S'A.A. Lamb' +p156145 +sg25273 +S'oil on canvas' +p156146 +sg25275 +S'1864 or after' +p156147 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000144.jpg' +p156148 +sg25267 +g27 +sa(dp156149 +g25268 +S'Eliza Wells' +p156150 +sg25270 +S'Abram Ross Stanley' +p156151 +sg25273 +S'oil on canvas' +p156152 +sg25275 +S'1840' +p156153 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000222.jpg' +p156154 +sg25267 +g27 +sa(dp156155 +g25268 +S'New England Village' +p156156 +sg25270 +S'American 19th Century' +p156157 +sg25273 +S'overall: 31.5 x 65 cm (12 3/8 x 25 9/16 in.)\r\nframed: 37.5 x 70.6 cm (14 3/4 x 27 13/16 in.)' +p156158 +sg25275 +S'\noil on wood' +p156159 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000438.jpg' +p156160 +sg25267 +g27 +sa(dp156161 +g25268 +S'Liberty' +p156162 +sg25270 +S'American 19th Century' +p156163 +sg25273 +S'overall: 75.9 x 50.9 cm (29 7/8 x 20 1/16 in.)\r\nframed: 90.1 x 64.1 x 6 cm (35 1/2 x 25 1/4 x 2 3/8 in.)' +p156164 +sg25275 +S'\noil on canvas' +p156165 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000439.jpg' +p156166 +sg25267 +g27 +sa(dp156167 +g25268 +S'Portrait of an Old Man' +p156168 +sg25270 +S'J.C. Robinson' +p156169 +sg25273 +S'oil on canvas' +p156170 +sg25275 +S'1848' +p156171 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001f6.jpg' +p156172 +sg25267 +g27 +sa(dp156173 +g25268 +S'Portrait of an Old Lady' +p156174 +sg25270 +S'J.C. Robinson' +p156175 +sg25273 +S'oil on canvas' +p156176 +sg25275 +S'1848' +p156177 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001f7.jpg' +p156178 +sg25267 +g27 +sa(dp156179 +g25268 +S"View of Benjamin Reber's Farm" +p156180 +sg25270 +S'Charles C. Hofmann' +p156181 +sg25273 +S'oil on canvas' +p156182 +sg25275 +S'1872' +p156183 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000100.jpg' +p156184 +sg25267 +g27 +sa(dp156185 +g25273 +S'overall: 25.3 x 20 cm (9 15/16 x 7 7/8 in.)\r\nframed: 31.1 x 26.3 x 3.1 cm (12 1/4 x 10 3/8 x 1 1/4 in.)' +p156186 +sg25267 +g27 +sg25275 +S'\noil on wood on pressed wood' +p156187 +sg25268 +S'Wellington Van Reid' +p156188 +sg25270 +S'American 19th Century' +p156189 +sa(dp156190 +g25273 +S'overall: 25.3 x 20.2 cm (9 15/16 x 7 15/16 in.)\r\nframed: 31.7 x 26.6 x 3.4 cm (12 1/2 x 10 1/2 x 1 5/16 in.)' +p156191 +sg25267 +g27 +sg25275 +S'\noil on wood on pressed wood' +p156192 +sg25268 +S'Jane L. Van Reid' +p156193 +sg25270 +S'American 19th Century' +p156194 +sa(dp156195 +g25268 +S'Coat of Arms of H.S. Beham' +p156196 +sg25270 +S'Sebald Beham' +p156197 +sg25273 +S'engraving' +p156198 +sg25275 +S'1544' +p156199 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8ad.jpg' +p156200 +sg25267 +g27 +sa(dp156201 +g25268 +S'Man with Vial' +p156202 +sg25270 +S'Erastus Salisbury Field' +p156203 +sg25273 +S'oil on canvas' +p156204 +sg25275 +S'c. 1827' +p156205 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000b4.jpg' +p156206 +sg25267 +g27 +sa(dp156207 +g25268 +S'Wife of Man with Vial' +p156208 +sg25270 +S'Erastus Salisbury Field' +p156209 +sg25273 +S'oil on canvas' +p156210 +sg25275 +S'c. 1827' +p156211 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000b5.jpg' +p156212 +sg25267 +g27 +sa(dp156213 +g25273 +S'overall: 18.7 x 15.7 cm (7 3/8 x 6 3/16 in.)\r\nframed: 25.7 x 22.8 x 3.1 cm (10 1/8 x 9 x 1 1/4 in.)' +p156214 +sg25267 +g27 +sg25275 +S'\noil on wood' +p156215 +sg25268 +S'Dr. Alvah Cook' +p156216 +sg25270 +S'American 19th Century' +p156217 +sa(dp156218 +g25268 +S'General Washington on a White Charger' +p156219 +sg25270 +S'American 19th Century' +p156220 +sg25273 +S'overall: 96.5 x 74.9 cm (38 x 29 1/2 in.)\r\nframed: 109.5 x 87 x 3.8 cm (43 1/8 x 34 1/4 x 1 1/2 in.)' +p156221 +sg25275 +S'\noil on wood' +p156222 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000456.jpg' +p156223 +sg25267 +g27 +sa(dp156224 +g25268 +S'The Hobby Horse' +p156225 +sg25270 +S'Robert Peckham' +p156226 +sg25273 +S'oil on canvas' +p156227 +sg25275 +S'c. 1840' +p156228 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a000040e.jpg' +p156229 +sg25267 +g27 +sa(dp156230 +g25273 +S'overall: 64.2 x 57.1 cm (25 1/4 x 22 1/2 in.)\r\nframed: 70.5 x 63.5 x 3.1 cm (27 3/4 x 25 x 1 1/4 in.)' +p156231 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p156232 +sg25268 +S'Young Man Wearing White Vest' +p156233 +sg25270 +S'American 19th Century' +p156234 +sa(dp156235 +g25268 +S'Peasant in a Round Hat (Paysan avec chapeau rond)' +p156236 +sg25270 +S'Alphonse Legros' +p156237 +sg25273 +S'etching and (drypoint?) on buff paper' +p156238 +sg25275 +S'unknown date\n' +p156239 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e14.jpg' +p156240 +sg25267 +g27 +sa(dp156241 +g25268 +S'The Triumph of Death: After the Battle (Le triomphe de la mort: Apres le combat)' +p156242 +sg25270 +S'Alphonse Legros' +p156243 +sg25273 +S'etching' +p156244 +sg25275 +S'unknown date\n' +p156245 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c77.jpg' +p156246 +sg25267 +g27 +sa(dp156247 +g25268 +S"The Tree of Salvation (L'arbre de salut)" +p156248 +sg25270 +S'Alphonse Legros' +p156249 +sg25273 +S'drypoint and (etching?) on cream paper' +p156250 +sg25275 +S'unknown date\n' +p156251 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d3c.jpg' +p156252 +sg25267 +g27 +sa(dp156253 +g25268 +S"Siesta of a Harvester (Sieste d'un faucheur)" +p156254 +sg25270 +S'Alphonse Legros' +p156255 +sg25273 +S'drypoint' +p156256 +sg25275 +S'unknown date\n' +p156257 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d3a.jpg' +p156258 +sg25267 +g27 +sa(dp156259 +g25268 +S'Coat of Arms with a Lion' +p156260 +sg25270 +S'Sebald Beham' +p156261 +sg25273 +S'engraving' +p156262 +sg25275 +S'1544' +p156263 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8ac.jpg' +p156264 +sg25267 +g27 +sa(dp156265 +g25268 +S"Remembrance of a Valley in Bourgogne (Souvenir d'une vallee en Bourgogne)" +p156266 +sg25270 +S'Alphonse Legros' +p156267 +sg25273 +S'etching and drypoint' +p156268 +sg25275 +S'unknown date\n' +p156269 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d38.jpg' +p156270 +sg25267 +g27 +sa(dp156271 +g25268 +S"Little Burner of Grass (Le petit bruleur d'herbe)" +p156272 +sg25270 +S'Alphonse Legros' +p156273 +sg25273 +S'etching and drypoint on very light green paper' +p156274 +sg25275 +S'unknown date\n' +p156275 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d31.jpg' +p156276 +sg25267 +g27 +sa(dp156277 +g25268 +S'Peat-bogs (Les Tourbieres)' +p156278 +sg25270 +S'Alphonse Legros' +p156279 +sg25273 +S'drypoint and etching' +p156280 +sg25275 +S'unknown date\n' +p156281 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d37.jpg' +p156282 +sg25267 +g27 +sa(dp156283 +g25268 +S'Plain near a Lake (La plaine pres du lac)' +p156284 +sg25270 +S'Alphonse Legros' +p156285 +sg25273 +S'etching and drypoint' +p156286 +sg25275 +S'unknown date\n' +p156287 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d36.jpg' +p156288 +sg25267 +g27 +sa(dp156289 +g25268 +S'Farm along the River seen by Evening Light (La ferme sur la riviere: Effet du soir)' +p156290 +sg25270 +S'Alphonse Legros' +p156291 +sg25273 +S'etching' +p156292 +sg25275 +S'unknown date\n' +p156293 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d49.jpg' +p156294 +sg25267 +g27 +sa(dp156295 +g25268 +S'Valley in Bourgogne (Une vallee en Bourgogne)' +p156296 +sg25270 +S'Alphonse Legros' +p156297 +sg25273 +S'etching and drypoint?' +p156298 +sg25275 +S'unknown date\n' +p156299 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d46.jpg' +p156300 +sg25267 +g27 +sa(dp156301 +g25268 +S'Valley in Bourgogne (Une vallee en Bourgogne)' +p156302 +sg25270 +S'Alphonse Legros' +p156303 +sg25273 +S'etching and drypoint?' +p156304 +sg25275 +S'unknown date\n' +p156305 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d48.jpg' +p156306 +sg25267 +g27 +sa(dp156307 +g25268 +S"Edge of the Water (Au bord de l'eau)" +p156308 +sg25270 +S'Alphonse Legros' +p156309 +sg25273 +S'etching' +p156310 +sg25275 +S'unknown date\n' +p156311 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d42.jpg' +p156312 +sg25267 +g27 +sa(dp156313 +g25268 +S'Near the Woods, Veronne (Pres du bois, Veronne)' +p156314 +sg25270 +S'Alphonse Legros' +p156315 +sg25273 +S'etching' +p156316 +sg25275 +S'unknown date\n' +p156317 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d40.jpg' +p156318 +sg25267 +g27 +sa(dp156319 +g25268 +S"Hurricane (L'ouragan)" +p156320 +sg25270 +S'Alphonse Legros' +p156321 +sg25273 +S'etching' +p156322 +sg25275 +S'unknown date\n' +p156323 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d3e.jpg' +p156324 +sg25267 +g27 +sa(dp156325 +g25268 +S'Coat of Arms with a Cock' +p156326 +sg25270 +S'Sebald Beham' +p156327 +sg25273 +S'engraving' +p156328 +sg25275 +S'1543' +p156329 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8cf.jpg' +p156330 +sg25267 +g27 +sa(dp156331 +g25268 +S'Small Boat in Peril (Barque en peril)' +p156332 +sg25270 +S'Alphonse Legros' +p156333 +sg25273 +S'drypoint' +p156334 +sg25275 +S'unknown date\n' +p156335 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d44.jpg' +p156336 +sg25267 +g27 +sa(dp156337 +g25268 +S'Little Shelter (Le petit hangar)' +p156338 +sg25270 +S'Alphonse Legros' +p156339 +sg25273 +S'etching and drypoint' +p156340 +sg25275 +S'unknown date\n' +p156341 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d4c.jpg' +p156342 +sg25267 +g27 +sa(dp156343 +g25268 +S"Banks of the Somme near Amiens (Bord de la Somme pres d'Amiens)" +p156344 +sg25270 +S'Alphonse Legros' +p156345 +sg25273 +S'etching' +p156346 +sg25275 +S'unknown date\n' +p156347 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d55.jpg' +p156348 +sg25267 +g27 +sa(dp156349 +g25268 +S'Footbridge (La passerelle)' +p156350 +sg25270 +S'Alphonse Legros' +p156351 +sg25273 +S'etching' +p156352 +sg25275 +S'unknown date\n' +p156353 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d50.jpg' +p156354 +sg25267 +g27 +sa(dp156355 +g25268 +S'Rest along the Banks of the River (Repos au bord de la riviere)' +p156356 +sg25270 +S'Alphonse Legros' +p156357 +sg25273 +S'etching and drypoint?' +p156358 +sg25275 +S'unknown date\n' +p156359 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d51.jpg' +p156360 +sg25267 +g27 +sa(dp156361 +g25268 +S'Hamlet near the Lake (Le hameau pres du lac)' +p156362 +sg25270 +S'Alphonse Legros' +p156363 +sg25273 +S'etching and drypoint' +p156364 +sg25275 +S'unknown date\n' +p156365 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d4f.jpg' +p156366 +sg25267 +g27 +sa(dp156367 +g25268 +S"Man Foraging (L'homme au fourrage)" +p156368 +sg25270 +S'Alphonse Legros' +p156369 +sg25273 +S'etching and drypoint' +p156370 +sg25275 +S'unknown date\n' +p156371 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d53.jpg' +p156372 +sg25267 +g27 +sa(dp156373 +g25268 +S'Young Peasant Seated in a Church (Jeune paysanne assise dans une eglise)' +p156374 +sg25270 +S'Alphonse Legros' +p156375 +sg25273 +S'etching and drypoint?' +p156376 +sg25275 +S'unknown date\n' +p156377 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d4d.jpg' +p156378 +sg25267 +g27 +sa(dp156379 +g25268 +S'Gust of Wind (Un coup de vent)' +p156380 +sg25270 +S'Alphonse Legros' +p156381 +sg25273 +S'drypoint' +p156382 +sg25275 +S'unknown date\n' +p156383 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d5b.jpg' +p156384 +sg25267 +g27 +sa(dp156385 +g25268 +S'Head of a Young Girl (Tete de jeune fille)' +p156386 +sg25270 +S'Alphonse Legros' +p156387 +sg25273 +S'lithograph in sanguine' +p156388 +sg25275 +S'unknown date\n' +p156389 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d59.jpg' +p156390 +sg25267 +g27 +sa(dp156391 +g25268 +S'Coat of Arms with an Eagle' +p156392 +sg25270 +S'Sebald Beham' +p156393 +sg25273 +S'engraving' +p156394 +sg25275 +S'1543' +p156395 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8d0.jpg' +p156396 +sg25267 +g27 +sa(dp156397 +g25268 +S'The Triumph of Death: Death Prepares a Dwelling for the Homeless (Le triomphe de la Mort: Lamort a prepare une demeure a des abandonnees)' +p156398 +sg25270 +S'Alphonse Legros' +p156399 +sg25273 +S'drypoint on light green paper' +p156400 +sg25275 +S'unknown date\n' +p156401 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d54.jpg' +p156402 +sg25267 +g27 +sa(dp156403 +g25268 +S'Spring (Le printemps)' +p156404 +sg25270 +S'Alphonse Legros' +p156405 +sg25273 +S'etching and drypoint' +p156406 +sg25275 +S'unknown date\n' +p156407 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d65.jpg' +p156408 +sg25267 +g27 +sa(dp156409 +g25268 +S"Summer (L'ete)" +p156410 +sg25270 +S'Alphonse Legros' +p156411 +sg25273 +S'etching and drypoint? in dark brown ink' +p156412 +sg25275 +S'unknown date\n' +p156413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d66.jpg' +p156414 +sg25267 +g27 +sa(dp156415 +g25268 +S"Man Climbing a Wall (L'escalade)" +p156416 +sg25270 +S'Alphonse Legros' +p156417 +sg25273 +S'etching and drypoint?' +p156418 +sg25275 +S'unknown date\n' +p156419 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d62.jpg' +p156420 +sg25267 +g27 +sa(dp156421 +g25268 +S'Self-Portrait, Medallion, No.1, 9th plate' +p156422 +sg25270 +S'Alphonse Legros' +p156423 +sg25273 +S'lithograph' +p156424 +sg25275 +S'1905' +p156425 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d61.jpg' +p156426 +sg25267 +g27 +sa(dp156427 +g25268 +S'Self-Portrait, Medallion, No.2, 11th plate' +p156428 +sg25270 +S'Alphonse Legros' +p156429 +sg25273 +S'color lithograph' +p156430 +sg25275 +S'unknown date\n' +p156431 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d67.jpg' +p156432 +sg25267 +g27 +sa(dp156433 +g25268 +S'E.R. Hughes' +p156434 +sg25270 +S'Alphonse Legros' +p156435 +sg25273 +S'lithograph' +p156436 +sg25275 +S'unknown date\n' +p156437 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d5e.jpg' +p156438 +sg25267 +g27 +sa(dp156439 +g25268 +S'Little Pond (La petite mare)' +p156440 +sg25270 +S'Alphonse Legros' +p156441 +sg25273 +S'etching and drypoint?' +p156442 +sg25275 +S'unknown date\n' +p156443 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d68.jpg' +p156444 +sg25267 +g27 +sa(dp156445 +g25268 +S'Self-Portrait, 12th plate' +p156446 +sg25270 +S'Alphonse Legros' +p156447 +sg25273 +S'etching? and drypoint retouched with crayon' +p156448 +sg25275 +S'unknown date\n' +p156449 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098d6.jpg' +p156450 +sg25267 +g27 +sa(dp156451 +g25268 +S'At the Home of the Woodcutters (Chez les bucherons)' +p156452 +sg25270 +S'Alphonse Legros' +p156453 +sg25273 +S'etching and drypoint' +p156454 +sg25275 +S'unknown date\n' +p156455 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d5d.jpg' +p156456 +sg25267 +g27 +sa(dp156457 +g25268 +S'Christ Crowned with Thorns Speaking with His Mother' +p156458 +sg25270 +S'Sebald Beham' +p156459 +sg25273 +S'engraving' +p156460 +sg25275 +S'1519' +p156461 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a809.jpg' +p156462 +sg25267 +g27 +sa(dp156463 +g25268 +S'Remembrance of the Lake at Trastimene (Souvenir du lac de Trastimene)' +p156464 +sg25270 +S'Alphonse Legros' +p156465 +sg25273 +S'etching and drypoint' +p156466 +sg25275 +S'unknown date\n' +p156467 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d70.jpg' +p156468 +sg25267 +g27 +sa(dp156469 +g25268 +S"Burning the Grasses (Le bruleur d'herbes)" +p156470 +sg25270 +S'Alphonse Legros' +p156471 +sg25273 +S'etching and drypoint?' +p156472 +sg25275 +S'unknown date\n' +p156473 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d76.jpg' +p156474 +sg25267 +g27 +sa(dp156475 +g25268 +S"Study of a Spaniard (Etude d'Espagnol)" +p156476 +sg25270 +S'Alphonse Legros' +p156477 +sg25273 +S'etching' +p156478 +sg25275 +S'unknown date\n' +p156479 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d6e.jpg' +p156480 +sg25267 +g27 +sa(dp156481 +g25268 +S'Desperate Young Girl (La jeune desesperee)' +p156482 +sg25270 +S'Alphonse Legros' +p156483 +sg25273 +S'etching and drypoint' +p156484 +sg25275 +S'unknown date\n' +p156485 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d6d.jpg' +p156486 +sg25267 +g27 +sa(dp156487 +g25268 +S'Alphonse Legros Sketching' +p156488 +sg25270 +S'William Strang' +p156489 +sg25273 +S'etching' +p156490 +sg25275 +S'unknown date\n' +p156491 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a32.jpg' +p156492 +sg25267 +g27 +sa(dp156493 +g25268 +S"Head of a Man (Tete d'homme)" +p156494 +sg25270 +S'Alphonse Legros' +p156495 +sg25273 +S'etching' +p156496 +sg25275 +S'unknown date\n' +p156497 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b69.jpg' +p156498 +sg25267 +g27 +sa(dp156499 +g25268 +S'Landscape with Peat-bog; In the Marsh (Paysage des tourbieres; Dans les marais)' +p156500 +sg25270 +S'Alphonse Legros' +p156501 +sg25273 +S'etching? and drypoint' +p156502 +sg25275 +S'unknown date\n' +p156503 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098e2.jpg' +p156504 +sg25267 +g27 +sa(dp156505 +g25268 +S'Farmer and His Donkey (Le fermier et son ane)' +p156506 +sg25270 +S'Alphonse Legros' +p156507 +sg25273 +S'etching and drypoint' +p156508 +sg25275 +S'unknown date\n' +p156509 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009ba3.jpg' +p156510 +sg25267 +g27 +sa(dp156511 +g25268 +S'Small Lake (Le petit lac)' +p156512 +sg25270 +S'Alphonse Legros' +p156513 +sg25273 +S'etching and drypoint?' +p156514 +sg25275 +S'unknown date\n' +p156515 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098d7.jpg' +p156516 +sg25267 +g27 +sa(dp156517 +g25268 +S'Farm on a Hill (La ferme sur la colline)' +p156518 +sg25270 +S'Alphonse Legros' +p156519 +sg25273 +S'etching' +p156520 +sg25275 +S'unknown date\n' +p156521 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c1a.jpg' +p156522 +sg25267 +g27 +sa(dp156523 +g25268 +S'Portrait of a Lady' +p156524 +sg25270 +S'Titian' +p156525 +sg25273 +S'oil on canvas' +p156526 +sg25275 +S'c. 1555' +p156527 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005dd.jpg' +p156528 +sg25267 +g27 +sa(dp156529 +g25268 +S'Christ Crowned with Thorns Speaking with His Mother' +p156530 +sg25270 +S'Sebald Beham' +p156531 +sg25273 +S'engraving' +p156532 +sg25275 +S'1519' +p156533 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a80a.jpg' +p156534 +sg25267 +g27 +sa(dp156535 +g25268 +S"Chailli Seen in a Storm (Chailli: Effet d'orage)" +p156536 +sg25270 +S'Alphonse Legros' +p156537 +sg25273 +S'etching and drypoint on light green paper' +p156538 +sg25275 +S'unknown date\n' +p156539 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009df5.jpg' +p156540 +sg25267 +g27 +sa(dp156541 +g25268 +S'Address of R. Gueraut (Adresse de M.R. Gueraut)' +p156542 +sg25270 +S'Alphonse Legros' +p156543 +sg25273 +S'etching in brown' +p156544 +sg25275 +S'unknown date\n' +p156545 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098dd.jpg' +p156546 +sg25267 +g27 +sa(dp156547 +g25268 +S'The Tinker (Le retameur)' +p156548 +sg25270 +S'Artist Information (' +p156549 +sg25273 +S'(artist after)' +p156550 +sg25275 +S'\n' +p156551 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000998f.jpg' +p156552 +sg25267 +g27 +sa(dp156553 +g25268 +S'The Tinker (Le retameur)' +p156554 +sg25270 +S'Artist Information (' +p156555 +sg25273 +S'(artist after)' +p156556 +sg25275 +S'\n' +p156557 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009994.jpg' +p156558 +sg25267 +g27 +sa(dp156559 +g25268 +S'Sleeping Scholar (Le savant endormi)' +p156560 +sg25270 +S'Alphonse Legros' +p156561 +sg25273 +S'drypoint' +p156562 +sg25275 +S'unknown date\n' +p156563 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098f4.jpg' +p156564 +sg25267 +g27 +sa(dp156565 +g25268 +S'Choirmaster (Le maitre de chapelle)' +p156566 +sg25270 +S'Alphonse Legros' +p156567 +sg25273 +S'etching' +p156568 +sg25275 +S'unknown date\n' +p156569 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c2b.jpg' +p156570 +sg25267 +g27 +sa(dp156571 +g25268 +S'Alphonse Legros' +p156572 +sg25270 +S'Charles Haslewood Shannon' +p156573 +sg25273 +S', unknown date' +p156574 +sg25275 +S'\n' +p156575 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a28.jpg' +p156576 +sg25267 +g27 +sa(dp156577 +g25273 +g27 +sg25267 +g27 +sg25275 +S'18th century' +p156578 +sg25268 +S'Mantel Clock with Brass Ornaments' +p156579 +sg25270 +S'Eardley Norton' +p156580 +sa(dp156581 +g25268 +S'Blue and White Jar with Cover' +p156582 +sg25270 +S'Chinese Qing Dynasty' +p156583 +sg25273 +S'overall (height x greatest diameter): 46.4 x 26.7 cm (18 1/4 x 10 1/2 in.)' +p156584 +sg25275 +S'\n' +p156585 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c61d.jpg' +p156586 +sg25267 +g27 +sa(dp156587 +g25268 +S'Blue and White Jar with Cover' +p156588 +sg25270 +S'Chinese Qing Dynasty' +p156589 +sg25273 +S'overall (height x greatest diameter): 45.7 x 26 cm (18 x 10 1/4 in.)' +p156590 +sg25275 +S'\n' +p156591 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c61b.jpg' +p156592 +sg25267 +g27 +sa(dp156593 +g25268 +S'Ornament with One Male and Two Female Figures' +p156594 +sg25270 +S'Sebald Beham' +p156595 +sg25273 +S'engraving' +p156596 +sg25275 +S'unknown date\n' +p156597 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8a2.jpg' +p156598 +sg25267 +g27 +sa(dp156599 +g25273 +S'(artist after)' +p156600 +sg25267 +g27 +sg25275 +S'\n' +p156601 +sg25268 +S'A View of Salisbury Cathedral' +p156602 +sg25270 +S'Artist Information (' +p156603 +sa(dp156604 +g25268 +S'Interior of a Hut (Interieur de case)' +p156605 +sg25270 +S'Paul Gauguin' +p156606 +sg25273 +S'woodcut in black' +p156607 +sg25275 +S'in or after 1895' +p156608 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009980.jpg' +p156609 +sg25267 +g27 +sa(dp156610 +g25268 +S'Old Woman Plucking a Fowl' +p156611 +sg25270 +S'Artist Information (' +p156612 +sg25273 +S'Dutch, 1606 - 1669' +p156613 +sg25275 +S'(related artist)' +p156614 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00069/a0006951.jpg' +p156615 +sg25267 +g27 +sa(dp156616 +g25268 +S'Alexander the Great' +p156617 +sg25270 +S'Artist Information (' +p156618 +sg25273 +S'(related artist)' +p156619 +sg25275 +S'\n' +p156620 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005e5.jpg' +p156621 +sg25267 +S"\n Dressed in fanciful armor, Alexander here exemplifies the powerful leader capable of controlling several regions and cultures in a vast expanding empire. A relief of Alexander, reportedly done in metal, and a pendant relief of his adversary Darius were presented to King Matthias Corvinus of Hungary in 1480 as a diplomatic gift from Lorenzo de' Medici. The reliefs, flattering gifts from one great humanist patron to another, sought to equate Alexander's campaigns with those of Corvinus, who was engaged in driving back an invading Ottoman army. Lorenzo was aware that successful resistance to the Ottoman invasions would protect the rest of Europe, including Florence, from the ever-present Ottoman threat. During the few decades of Corvinus' reign, the Hungarian court rivaled those of Italy in its artistic patronage.\n \n \n Designing Alexander's armor in an ancient style, Verrocchio also embellished it to his own fancy. Certainly the winged head screaming in fury was indicative of the commander's military ferocity, while the elaborate dragon helmet with ribbon was fitting for his status as a king. Any allegorical meaning is hard to derive, because Verrocchio and his contemporaries often designed such rich and fantastic armor for Florentines to wear in jousts.\n \n " +p156622 +sa(dp156623 +g25268 +S'The Adoration of the Skulls' +p156624 +sg25270 +S'Michel-Fran\xc3\xa7ois Dandr\xc3\xa9-Bardon' +p156625 +sg25273 +S'oil on canvas' +p156626 +sg25275 +S'c. 1733/1734' +p156627 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dca.jpg' +p156628 +sg25267 +g27 +sa(dp156629 +g25268 +S'Portrait of an Almoner of Antwerp' +p156630 +sg25270 +S'Antwerp 16th Century' +p156631 +sg25273 +S'overall: 84.8 x 63.2 cm (33 3/8 x 24 7/8 in.)\r\nframed: 128.9 x 108.9 cm (50 3/4 x 42 7/8 in.)' +p156632 +sg25275 +S'\noil on panel' +p156633 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00043/a00043e8.jpg' +p156634 +sg25267 +g27 +sa(dp156635 +g25268 +S'The Last Supper' +p156636 +sg25270 +S'Giulio Benso' +p156637 +sg25273 +S'pen and brown ink with brown wash' +p156638 +sg25275 +S'unknown date\n' +p156639 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00074/a0007493.jpg' +p156640 +sg25267 +g27 +sa(dp156641 +g25268 +S'Girl with a Basket of Fish' +p156642 +sg25270 +S'Auguste Renoir' +p156643 +sg25273 +S'oil on canvas' +p156644 +sg25275 +S'c. 1889' +p156645 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000706.jpg' +p156646 +sg25267 +g27 +sa(dp156647 +g25268 +S'Girl with a Basket of Oranges' +p156648 +sg25270 +S'Auguste Renoir' +p156649 +sg25273 +S'oil on canvas' +p156650 +sg25275 +S'c. 1889' +p156651 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000707.jpg' +p156652 +sg25267 +g27 +sa(dp156653 +g25273 +S'(artist after)' +p156654 +sg25267 +g27 +sg25275 +S'\n' +p156655 +sg25268 +S'Henry Laurens' +p156656 +sg25270 +S'Artist Information (' +p156657 +sa(dp156658 +g25268 +S'Ecclesia Antichristi' +p156659 +sg25270 +S'Sebald Beham' +p156660 +sg25273 +S'woodcut' +p156661 +sg25275 +S'unknown date\n' +p156662 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8ec.jpg' +p156663 +sg25267 +g27 +sa(dp156664 +g25273 +S'(artist)' +p156665 +sg25267 +g27 +sg25275 +S'\n' +p156666 +sg25268 +S'Architecture, Painting, and Sculpture' +p156667 +sg25270 +S'Artist Information (' +p156668 +sa(dp156669 +g25273 +S'(artist after)' +p156670 +sg25267 +g27 +sg25275 +S'\n' +p156671 +sg25268 +S'The Works of Captain William Baillie, After Paintings ... by the Greatest Masters' +p156672 +sg25270 +S'Artist Information (' +p156673 +sa(dp156674 +g25273 +S'(artist after)' +p156675 +sg25267 +g27 +sg25275 +S'\n' +p156676 +sg25268 +S'Eighty-Two Prints ... from the Original Drawings of Guercino (volume I)' +p156677 +sg25270 +S'Artist Information (' +p156678 +sa(dp156679 +g25273 +S'(artist after)' +p156680 +sg25267 +g27 +sg25275 +S'\n' +p156681 +sg25268 +S'Seventy-Three Prints ... from the Original Pictures and Drawings ... (volume II)' +p156682 +sg25270 +S'Artist Information (' +p156683 +sa(dp156684 +g25273 +S'(artist after)' +p156685 +sg25267 +g27 +sg25275 +S'\n' +p156686 +sg25268 +S'A Set of Etchings ... from the Sketches of ... John Baptist Cipriani' +p156687 +sg25270 +S'Artist Information (' +p156688 +sa(dp156689 +g25273 +S'(artist after)' +p156690 +sg25267 +g27 +sg25275 +S'\n' +p156691 +sg25268 +S"Suite d'Estampes" +p156692 +sg25270 +S'Artist Information (' +p156693 +sa(dp156694 +g25273 +S'British, 1752 - 1817' +p156695 +sg25267 +g27 +sg25275 +S'(publisher)' +p156696 +sg25268 +S'Collection of Prints from ... The Dramatic Works of Shakespeare (volume I)' +p156697 +sg25270 +S'Artist Information (' +p156698 +sa(dp156699 +g25273 +S'British, 1719 - 1804' +p156700 +sg25267 +g27 +sg25275 +S'(publisher)' +p156701 +sg25268 +S'Collection of Prints from ... The Dramatic Works of Shakespeare (volume II)' +p156702 +sg25270 +S'Artist Information (' +p156703 +sa(dp156704 +g25273 +S'British, 1719 - 1804' +p156705 +sg25267 +g27 +sg25275 +S'(publisher)' +p156706 +sg25268 +S'A Collection of Prints Engraved after the Most Capital Paintings in England (vol.I)' +p156707 +sg25270 +S'Artist Information (' +p156708 +sa(dp156709 +g25273 +S'British, 1719 - 1804' +p156710 +sg25267 +g27 +sg25275 +S'(publisher)' +p156711 +sg25268 +S'A Collection of Prints Engraved after the Most Capital Paintings in England (vol.II)' +p156712 +sg25270 +S'Artist Information (' +p156713 +sa(dp156714 +g25268 +S'Saturn' +p156715 +sg25270 +S'Sebald Beham' +p156716 +sg25273 +S'engraving' +p156717 +sg25275 +S'unknown date\n' +p156718 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8cb.jpg' +p156719 +sg25267 +g27 +sa(dp156720 +g25268 +S'Psyches et Amoris ...; Galeriae Farnesianae ...; Barberinae avlae fornix' +p156721 +sg25270 +S'Various Artists' +p156722 +sg25273 +S'Gift of William Robertson Coe' +p156723 +sg25275 +S'\n3 works bound in 1 vol: ill: 71 (including frontispiece), including 12 engravings by N. Dorigny after Raphael ("Psyches et Amoris" of 1693); engravings by P. Aquila after Annibale Carracci ("Galeriae Farnesianae"); and engravings by various artistsafter P. da Cortona ("Barberinae avalae fornix" of 1691)' +p156724 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c96.jpg' +p156725 +sg25267 +g27 +sa(dp156726 +g25273 +S'Gift of William Robertson Coe' +p156727 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: 50 engravings' +p156728 +sg25268 +S"Recueil d'estampes d'apres les ... tableaux de la Galerie Royale de Dresde (volume 1)" +p156729 +sg25270 +S'Various Artists' +p156730 +sa(dp156731 +g25273 +S'Gift of William Robertson Coe' +p156732 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: 50 engravings' +p156733 +sg25268 +S"Recueil d'estampes d'apres les ... tableaux de la Galerie Royale de Dresde (volume 2)" +p156734 +sg25270 +S'Various Artists' +p156735 +sa(dp156736 +g25273 +S'(artist after)' +p156737 +sg25267 +g27 +sg25275 +S'\n' +p156738 +sg25268 +S'A Collection of Prints' +p156739 +sg25270 +S'Artist Information (' +p156740 +sa(dp156741 +g25273 +S'Gift of William Robertson Coe' +p156742 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: engravings by H. Frezza, G. Allet, G. Valet, S. Picart, F. Spierre, Baronius, C. Blomaert, B. Fariat, and Blondeau' +p156743 +sg25268 +S'Missale Romanum' +p156744 +sg25270 +S'Various Artists' +p156745 +sa(dp156746 +g25273 +S'French (?), 1784 - 1863' +p156747 +sg25267 +g27 +sg25275 +S'(author)' +p156748 +sg25268 +S'Iconographie du Genre Camellia ... (volume I)' +p156749 +sg25270 +S'Artist Information (' +p156750 +sa(dp156751 +g25273 +S'French (?), 1784 - 1863' +p156752 +sg25267 +g27 +sg25275 +S'(author)' +p156753 +sg25268 +S'Iconographie du Genre Camellia ... (volume II)' +p156754 +sg25270 +S'Artist Information (' +p156755 +sa(dp156756 +g25273 +S'French (?), 1784 - 1863' +p156757 +sg25267 +g27 +sg25275 +S'(author)' +p156758 +sg25268 +S'Iconographie du Genre Camellia ... (volume III)' +p156759 +sg25270 +S'Artist Information (' +p156760 +sa(dp156761 +g25273 +S'English, c. 1705 - 1758' +p156762 +sg25267 +g27 +sg25275 +S'(artist)' +p156763 +sg25268 +S'Album of Prints after Italian Old Master Drawings' +p156764 +sg25270 +S'Artist Information (' +p156765 +sa(dp156766 +g25273 +S'Gift of William Robertson Coe' +p156767 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: 25 engravings by various artists after drawings by J.-B. and J.-M. Nattier after paintings by Van Dyck and Rubens plus title page and foreward' +p156768 +sg25268 +S'La galerie du palais du Luxembourg, peintre par Rubens ...' +p156769 +sg25270 +S'Various Artists' +p156770 +sa(dp156771 +g25268 +S'Jupiter' +p156772 +sg25270 +S'Sebald Beham' +p156773 +sg25273 +S'engraving' +p156774 +sg25275 +S'unknown date\n' +p156775 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8ce.jpg' +p156776 +sg25267 +g27 +sa(dp156777 +g25273 +S'(artist after)' +p156778 +sg25267 +g27 +sg25275 +S'\n' +p156779 +sg25268 +S'Pierre Paul Rubens' +p156780 +sg25270 +S'Artist Information (' +p156781 +sa(dp156782 +g25273 +S'(artist after)' +p156783 +sg25267 +g27 +sg25275 +S'\n' +p156784 +sg25268 +S'Francois de Medici Grand Duc de Toscone' +p156785 +sg25270 +S'Artist Information (' +p156786 +sa(dp156787 +g25273 +S'(artist after)' +p156788 +sg25267 +g27 +sg25275 +S'\n' +p156789 +sg25268 +S"Jeanne d'Autriche Grand Duchesse de Toscane" +p156790 +sg25270 +S'Artist Information (' +p156791 +sa(dp156792 +g25273 +S'(artist after)' +p156793 +sg25267 +g27 +sg25275 +S'\n' +p156794 +sg25268 +S'Marie de Medicis sous la forme de Minerve Deesse des Arts' +p156795 +sg25270 +S'Artist Information (' +p156796 +sa(dp156797 +g25273 +S'(artist after)' +p156798 +sg25267 +g27 +sg25275 +S'\n' +p156799 +sg25268 +S'La destinee de la Reine' +p156800 +sg25270 +S'Artist Information (' +p156801 +sa(dp156802 +g25273 +S'(artist after)' +p156803 +sg25267 +g27 +sg25275 +S'\n' +p156804 +sg25268 +S'La Naissance de la Reine' +p156805 +sg25270 +S'Artist Information (' +p156806 +sa(dp156807 +g25273 +S'(artist after)' +p156808 +sg25267 +g27 +sg25275 +S'\n' +p156809 +sg25268 +S"L'Education de la Reine" +p156810 +sg25270 +S'Artist Information (' +p156811 +sa(dp156812 +g25273 +S'(artist after)' +p156813 +sg25267 +g27 +sg25275 +S'\n' +p156814 +sg25268 +S'Henri IV delibere sur son futur mariage' +p156815 +sg25270 +S'Artist Information (' +p156816 +sa(dp156817 +g25273 +S'(artist after)' +p156818 +sg25267 +g27 +sg25275 +S'\n' +p156819 +sg25268 +S'Le Mariage de la Reine' +p156820 +sg25270 +S'Artist Information (' +p156821 +sa(dp156822 +g25273 +S'(artist after)' +p156823 +sg25267 +g27 +sg25275 +S'\n' +p156824 +sg25268 +S'Le debarquement de la Reine au port de Marseille' +p156825 +sg25270 +S'Artist Information (' +p156826 +sa(dp156827 +g25268 +S'Mars' +p156828 +sg25270 +S'Sebald Beham' +p156829 +sg25273 +S'engraving' +p156830 +sg25275 +S'unknown date\n' +p156831 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8c9.jpg' +p156832 +sg25267 +g27 +sa(dp156833 +g25273 +S'(artist after)' +p156834 +sg25267 +g27 +sg25275 +S'\n' +p156835 +sg25268 +S'La ville de Lion va audevant de la Reine' +p156836 +sg25270 +S'Artist Information (' +p156837 +sa(dp156838 +g25273 +S'(artist after)' +p156839 +sg25267 +g27 +sg25275 +S'\n' +p156840 +sg25268 +S"L'Accouchement de la Reine" +p156841 +sg25270 +S'Artist Information (' +p156842 +sa(dp156843 +g25273 +S'(artist after)' +p156844 +sg25267 +g27 +sg25275 +S'\n' +p156845 +sg25268 +S"Le Roy part pour la guerre d'Allemagne" +p156846 +sg25270 +S'Artist Information (' +p156847 +sa(dp156848 +g25273 +S'(artist after)' +p156849 +sg25267 +g27 +sg25275 +S'\n' +p156850 +sg25268 +S'Le couronnement de la Reine' +p156851 +sg25270 +S'Artist Information (' +p156852 +sa(dp156853 +g25273 +S'(artist after)' +p156854 +sg25267 +g27 +sg25275 +S'\n' +p156855 +sg25268 +S"L'Apotheose d'Henri IV et la Regence de la Reine" +p156856 +sg25270 +S'Artist Information (' +p156857 +sa(dp156858 +g25273 +S'(artist after)' +p156859 +sg25267 +g27 +sg25275 +S'\n' +p156860 +sg25268 +S'Le Gouvernment de la Reine' +p156861 +sg25270 +S'Artist Information (' +p156862 +sa(dp156863 +g25273 +S'(artist after)' +p156864 +sg25267 +g27 +sg25275 +S'\n' +p156865 +sg25268 +S'Le voyage de la Reine au Port de Ce' +p156866 +sg25270 +S'Artist Information (' +p156867 +sa(dp156868 +g25273 +S'(artist after)' +p156869 +sg25267 +g27 +sg25275 +S'\n' +p156870 +sg25268 +S"L'Echange des deux Reines" +p156871 +sg25270 +S'Artist Information (' +p156872 +sa(dp156873 +g25273 +S'(artist after)' +p156874 +sg25267 +g27 +sg25275 +S'\n' +p156875 +sg25268 +S'La Felicite de la Reine' +p156876 +sg25270 +S'Artist Information (' +p156877 +sa(dp156878 +g25273 +S'(artist after)' +p156879 +sg25267 +g27 +sg25275 +S'\n' +p156880 +sg25268 +S'La Majorite du Roy Louis XIII' +p156881 +sg25270 +S'Artist Information (' +p156882 +sa(dp156883 +g25268 +S'Sol' +p156884 +sg25270 +S'Sebald Beham' +p156885 +sg25273 +S'engraving' +p156886 +sg25275 +S'unknown date\n' +p156887 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8cd.jpg' +p156888 +sg25267 +g27 +sa(dp156889 +g25273 +S'(artist after)' +p156890 +sg25267 +g27 +sg25275 +S'\n' +p156891 +sg25268 +S"La Reine s'enfuit de la ville de Blois" +p156892 +sg25270 +S'Artist Information (' +p156893 +sa(dp156894 +g25273 +S'(artist after)' +p156895 +sg25267 +g27 +sg25275 +S'\n' +p156896 +sg25268 +S'La Reine prend le parti de la paix' +p156897 +sg25270 +S'Artist Information (' +p156898 +sa(dp156899 +g25273 +S'(artist after)' +p156900 +sg25267 +g27 +sg25275 +S'\n' +p156901 +sg25268 +S'La Paix confirmee dans le Ciel' +p156902 +sg25270 +S'Artist Information (' +p156903 +sa(dp156904 +g25273 +S'(artist after)' +p156905 +sg25267 +g27 +sg25275 +S'\n' +p156906 +sg25268 +S'La conclusion de la Paix' +p156907 +sg25270 +S'Artist Information (' +p156908 +sa(dp156909 +g25273 +S'(artist after)' +p156910 +sg25267 +g27 +sg25275 +S'\n' +p156911 +sg25268 +S'Le Tems decouvre la Verite' +p156912 +sg25270 +S'Artist Information (' +p156913 +sa(dp156914 +g25273 +S'Gift of William Robertson Coe' +p156915 +sg25267 +g27 +sg25275 +S'\nbound volume with 58 engravings' +p156916 +sg25268 +S'Album of Prints after Old Masters' +p156917 +sg25270 +S'Various Artists' +p156918 +sa(dp156919 +g25273 +S'(artist after)' +p156920 +sg25267 +g27 +sg25275 +S'\n' +p156921 +sg25268 +S'A Collection of Historical Prints ...' +p156922 +sg25270 +S'Artist Information (' +p156923 +sa(dp156924 +g25273 +S'Italian, c. 1490 - 1576' +p156925 +sg25267 +g27 +sg25275 +S'(artist after)' +p156926 +sg25268 +S'Album of Prints after Works by Titian' +p156927 +sg25270 +S'Artist Information (' +p156928 +sa(dp156929 +g25273 +S'Gift of William Robertson Coe' +p156930 +sg25267 +g27 +sg25275 +S'\nbound volume with 63 engravings' +p156931 +sg25268 +S'Album of Prints after Works by Philips Wouverman' +p156932 +sg25270 +S'Various Artists' +p156933 +sa(dp156934 +g25268 +S'View across the Giudecca Canal toward the Salute and the Campanile of San Marco' +p156935 +sg25270 +S'William Stanley Haseltine' +p156936 +sg25273 +S'watercolor over graphite on blue paper' +p156937 +sg25275 +S'c. 1875' +p156938 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000df/a000dfb9.jpg' +p156939 +sg25267 +g27 +sa(dp156940 +g25268 +S'Venus' +p156941 +sg25270 +S'Sebald Beham' +p156942 +sg25273 +S'engraving' +p156943 +sg25275 +S'unknown date\n' +p156944 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8cc.jpg' +p156945 +sg25267 +g27 +sa(dp156946 +g25268 +S'Blankenberge No.3' +p156947 +sg25270 +S'William Stanley Haseltine' +p156948 +sg25273 +S'pen and black ink with gouache on blue paper' +p156949 +sg25275 +S'1875' +p156950 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000eb/a000eb9f.jpg' +p156951 +sg25267 +g27 +sa(dp156952 +g25268 +S'Between Rounds, No.1' +p156953 +sg25270 +S'George Bellows' +p156954 +sg25273 +S'lithograph' +p156955 +sg25275 +S'1916' +p156956 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000be/a000be7c.jpg' +p156957 +sg25267 +g27 +sa(dp156958 +g25268 +S'Between Rounds, No.2' +p156959 +sg25270 +S'George Bellows' +p156960 +sg25273 +S'lithograph' +p156961 +sg25275 +S'1923' +p156962 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00112/a0011235.jpg' +p156963 +sg25267 +g27 +sa(dp156964 +g25268 +S'Counted Out, No.1' +p156965 +sg25270 +S'George Bellows' +p156966 +sg25273 +S'lithograph' +p156967 +sg25275 +S'1921' +p156968 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a1f.jpg' +p156969 +sg25267 +g27 +sa(dp156970 +g25268 +S'Counted Out, No.2' +p156971 +sg25270 +S'George Bellows' +p156972 +sg25273 +S'lithograph' +p156973 +sg25275 +S'1921' +p156974 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000bb/a000bb64.jpg' +p156975 +sg25267 +g27 +sa(dp156976 +g25273 +S'lithograph on wove paper' +p156977 +sg25267 +g27 +sg25275 +S'1923/1924' +p156978 +sg25268 +S'Dempsey and Firpo' +p156979 +sg25270 +S'George Bellows' +p156980 +sa(dp156981 +g25268 +S'Dempsey through the Ropes' +p156982 +sg25270 +S'George Bellows' +p156983 +sg25273 +S'lithograph' +p156984 +sg25275 +S'1923/1924' +p156985 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00112/a0011236.jpg' +p156986 +sg25267 +g27 +sa(dp156987 +g25268 +S'Introducing Georges Carpentier' +p156988 +sg25270 +S'George Bellows' +p156989 +sg25273 +S'lithograph' +p156990 +sg25275 +S'1921' +p156991 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a20.jpg' +p156992 +sg25267 +g27 +sa(dp156993 +g25273 +S'lithograph' +p156994 +sg25267 +g27 +sg25275 +S'1916' +p156995 +sg25268 +S'Introducing John L. Sullivan' +p156996 +sg25270 +S'George Bellows' +p156997 +sa(dp156998 +g25273 +S'lithograph' +p156999 +sg25267 +g27 +sg25275 +S'1916' +p157000 +sg25268 +S'Introducing the Champion, No.1' +p157001 +sg25270 +S'George Bellows' +p157002 +sa(dp157003 +g25268 +S'Mercury' +p157004 +sg25270 +S'Sebald Beham' +p157005 +sg25273 +S'engraving' +p157006 +sg25275 +S'unknown date\n' +p157007 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8c8.jpg' +p157008 +sg25267 +g27 +sa(dp157009 +g25268 +S'Introducing the Champion, No.2' +p157010 +sg25270 +S'George Bellows' +p157011 +sg25273 +S'lithograph' +p157012 +sg25275 +S'1921' +p157013 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fc/a000fc4e.jpg' +p157014 +sg25267 +g27 +sa(dp157015 +g25268 +S'A Knockout' +p157016 +sg25270 +S'George Bellows' +p157017 +sg25273 +S'lithograph' +p157018 +sg25275 +S'1921' +p157019 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a1d.jpg' +p157020 +sg25267 +g27 +sa(dp157021 +g25268 +S'Preliminaries to the Big Bout' +p157022 +sg25270 +S'George Bellows' +p157023 +sg25273 +S'lithograph' +p157024 +sg25275 +S'1916' +p157025 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c1/a000c1c2.jpg' +p157026 +sg25267 +g27 +sa(dp157027 +g25268 +S"A Stag at Sharkey's" +p157028 +sg25270 +S'George Bellows' +p157029 +sg25273 +S'lithograph' +p157030 +sg25275 +S'1917' +p157031 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a1e.jpg' +p157032 +sg25267 +g27 +sa(dp157033 +g25268 +S'The White Hope' +p157034 +sg25270 +S'George Bellows' +p157035 +sg25273 +S'lithograph' +p157036 +sg25275 +S'1921' +p157037 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000bd/a000bdcd.jpg' +p157038 +sg25267 +g27 +sa(dp157039 +g25268 +S'Training Quarters (Willard in Training)' +p157040 +sg25270 +S'George Bellows' +p157041 +sg25273 +S'lithograph' +p157042 +sg25275 +S'1916' +p157043 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00112/a0011234.jpg' +p157044 +sg25267 +g27 +sa(dp157045 +g25268 +S'Edith Reynolds' +p157046 +sg25270 +S'Robert Henri' +p157047 +sg25273 +S'oil on canvas' +p157048 +sg25275 +S'1908' +p157049 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000f1.jpg' +p157050 +sg25267 +g27 +sa(dp157051 +g25268 +S'Jacques de la Faille' +p157052 +sg25270 +S'Hendrick Goltzius' +p157053 +sg25273 +S', probably 1589' +p157054 +sg25275 +S'\n' +p157055 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce27.jpg' +p157056 +sg25267 +g27 +sa(dp157057 +g25268 +S'Cornelia van de Capelle' +p157058 +sg25270 +S'Hendrick Goltzius' +p157059 +sg25273 +S', 1589' +p157060 +sg25275 +S'\n' +p157061 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce28.jpg' +p157062 +sg25267 +g27 +sa(dp157063 +g25268 +S'The Holy Family' +p157064 +sg25270 +S'Simone Cantarini' +p157065 +sg25273 +S'etching' +p157066 +sg25275 +S'unknown date\n' +p157067 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c974.jpg' +p157068 +sg25267 +g27 +sa(dp157069 +g25268 +S'Luna' +p157070 +sg25270 +S'Sebald Beham' +p157071 +sg25273 +S'engraving' +p157072 +sg25275 +S'unknown date\n' +p157073 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8ca.jpg' +p157074 +sg25267 +g27 +sa(dp157075 +g25268 +S'Abraham Francen' +p157076 +sg25270 +S'Rembrandt van Rijn' +p157077 +sg25273 +S'etching, drypoint and burin' +p157078 +sg25275 +S'c. 1657' +p157079 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d36d.jpg' +p157080 +sg25267 +g27 +sa(dp157081 +g25268 +S'Holy Family' +p157082 +sg25270 +S'Guido Reni' +p157083 +sg25273 +S'etching' +p157084 +sg25275 +S'unknown date\n' +p157085 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00065/a0006582.jpg' +p157086 +sg25267 +g27 +sa(dp157087 +g25268 +S'Two Men at a Gate' +p157088 +sg25270 +S'Anthonie Waterloo' +p157089 +sg25273 +S'etching' +p157090 +sg25275 +S'unknown date\n' +p157091 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4a2.jpg' +p157092 +sg25267 +g27 +sa(dp157093 +g25268 +S'Annie Seated' +p157094 +sg25270 +S'James McNeill Whistler' +p157095 +sg25273 +S'etching' +p157096 +sg25275 +S'1858' +p157097 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9ca.jpg' +p157098 +sg25267 +g27 +sa(dp157099 +g25268 +S'Little Evelyn' +p157100 +sg25270 +S'James McNeill Whistler' +p157101 +sg25273 +S'lithograph' +p157102 +sg25275 +S'1896' +p157103 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aaed.jpg' +p157104 +sg25267 +g27 +sa(dp157105 +g25268 +S'Shepherd Boys and Dog Sheltering from a Storm' +p157106 +sg25270 +S'Thomas Barker' +p157107 +sg25273 +S'oil on paper on canvas' +p157108 +sg25275 +S'c. 1789/1790' +p157109 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000054e.jpg' +p157110 +sg25267 +g27 +sa(dp157111 +g25268 +S"Fanciful View of the Castel Sant'Angelo, Rome" +p157112 +sg25270 +S'Francesco Guardi' +p157113 +sg25273 +S'oil on canvas' +p157114 +sg25275 +S'c. 1785' +p157115 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000612.jpg' +p157116 +sg25267 +g27 +sa(dp157117 +g25268 +S'Portrait of a Gentleman' +p157118 +sg25270 +S'John Hoppner' +p157119 +sg25273 +S', c. 1810/1815' +p157120 +sg25275 +S'\n' +p157121 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e9e.jpg' +p157122 +sg25267 +g27 +sa(dp157123 +g25268 +S'Lord Algernon Percy' +p157124 +sg25270 +S'James Millar' +p157125 +sg25273 +S'oil on canvas' +p157126 +sg25275 +S'c. 1777/1780' +p157127 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f62.jpg' +p157128 +sg25267 +g27 +sa(dp157129 +g25268 +S'Lady Algernon Percy' +p157130 +sg25270 +S'James Millar' +p157131 +sg25273 +S'oil on canvas' +p157132 +sg25275 +S'c. 1777/1780' +p157133 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000531.jpg' +p157134 +sg25267 +g27 +sa(dp157135 +g25268 +S'The Meeting of Saint Anthony and Saint Paul' +p157136 +sg25270 +S'Artist Information (' +p157137 +sg25273 +S'(painter)' +p157138 +sg25275 +S'\n' +p157139 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000822.jpg' +p157140 +sg25267 +g27 +sa(dp157141 +g25268 +S'Lovers by a Fence' +p157142 +sg25270 +S'Sebald Beham' +p157143 +sg25273 +S'woodcut' +p157144 +sg25275 +S'1522' +p157145 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8eb.jpg' +p157146 +sg25267 +g27 +sa(dp157147 +g25268 +S'The Fountain' +p157148 +sg25270 +S'French 18th Century' +p157149 +sg25273 +S'overall: 33.6 x 45.5 cm (13 1/4 x 17 15/16 in.)' +p157150 +sg25275 +S'\nbrown wash over black chalk' +p157151 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f90.jpg' +p157152 +sg25267 +g27 +sa(dp157153 +g25268 +S"Lady's Head" +p157154 +sg25270 +S'Artist Information (' +p157155 +sg25273 +S'French, 1724 - 1780' +p157156 +sg25275 +S'(related artist)' +p157157 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e66.jpg' +p157158 +sg25267 +g27 +sa(dp157159 +g25268 +S'Marine' +p157160 +sg25270 +S'Artist Information (' +p157161 +sg25273 +S'Dutch, 1633 - 1707' +p157162 +sg25275 +S'(related artist)' +p157163 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a0007299.jpg' +p157164 +sg25267 +g27 +sa(dp157165 +g25268 +S'Marine' +p157166 +sg25270 +S'Artist Information (' +p157167 +sg25273 +S'Dutch, 1633 - 1707' +p157168 +sg25275 +S'(related artist)' +p157169 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071ae.jpg' +p157170 +sg25267 +g27 +sa(dp157171 +g25268 +S'Marine' +p157172 +sg25270 +S'Willem van de Velde the Younger' +p157173 +sg25273 +S', unknown date' +p157174 +sg25275 +S'\n' +p157175 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d67.jpg' +p157176 +sg25267 +g27 +sa(dp157177 +g25268 +S'Male Nude Study' +p157178 +sg25270 +S"Pierre Paul Prud'hon" +p157179 +sg25273 +S'charcoal heightened with white chalk on blue paper' +p157180 +sg25275 +S'unknown date\n' +p157181 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007307.jpg' +p157182 +sg25267 +g27 +sa(dp157183 +g25268 +S'Male Nude Study' +p157184 +sg25270 +S'Anton Raphael Mengs' +p157185 +sg25273 +S'graphite and black chalk on blue laid paper' +p157186 +sg25275 +S'1778' +p157187 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b9/a000b9a5.jpg' +p157188 +sg25267 +g27 +sa(dp157189 +g25268 +S'Male Nude Study' +p157190 +sg25270 +S'Anton Raphael Mengs' +p157191 +sg25273 +S'black chalk on paper washed gray' +p157192 +sg25275 +S'unknown date\n' +p157193 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7d3.jpg' +p157194 +sg25267 +g27 +sa(dp157195 +g25273 +S'pen and black ink on pink paper' +p157196 +sg25267 +g27 +sg25275 +S'1937' +p157197 +sg25268 +S'Horseman' +p157198 +sg25270 +S'Salvador Dal\xc3\xad' +p157199 +sa(dp157200 +g25268 +S'Costume Study for "Jeux"' +p157201 +sg25270 +S'Lev Samoilovich Bakst' +p157202 +sg25273 +S'watercolor, graphite and black chalk on laid paper' +p157203 +sg25275 +S'1913' +p157204 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006ac1.jpg' +p157205 +sg25267 +g27 +sa(dp157206 +g25268 +S'Portrait of an Elderly Man Facing Left' +p157207 +sg25270 +S'Sebald Beham' +p157208 +sg25273 +S'woodcut' +p157209 +sg25275 +S'unknown date\n' +p157210 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8e7.jpg' +p157211 +sg25267 +g27 +sa(dp157212 +g25268 +S'Saint Roch Carried to Heaven by Angels' +p157213 +sg25270 +S'Giovanni Battista Tiepolo' +p157214 +sg25273 +S'oil on canvas' +p157215 +sg25275 +S'c. 1735/1745' +p157216 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000629.jpg' +p157217 +sg25267 +g27 +sa(dp157218 +g25268 +S'The Grand Canal Looking Toward the Salute and the Dogana' +p157219 +sg25270 +S'Francesco Tironi' +p157220 +sg25273 +S'pen and brown ink with gray wash on laid paper' +p157221 +sg25275 +S'1770s' +p157222 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00028/a0002869.jpg' +p157223 +sg25267 +g27 +sa(dp157224 +g25268 +S'Capriccio of Classical Ruins on a Shore' +p157225 +sg25270 +S'Giacomo Guardi' +p157226 +sg25273 +S'pen and black and brown ink with gray and brown wash on laid paper' +p157227 +sg25275 +S'unknown date\n' +p157228 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072a2.jpg' +p157229 +sg25267 +g27 +sa(dp157230 +g25268 +S'Capriccio of Classical Ruins with a Fortress' +p157231 +sg25270 +S'Giacomo Guardi' +p157232 +sg25273 +S'pen and brown ink with gray wash on laid paper' +p157233 +sg25275 +S'unknown date\n' +p157234 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072d8.jpg' +p157235 +sg25267 +g27 +sa(dp157236 +g25268 +S'The Island of San Clemente' +p157237 +sg25270 +S'Artist Information (' +p157238 +sg25273 +S'(artist)' +p157239 +sg25275 +S'\n' +p157240 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ef4.jpg' +p157241 +sg25267 +g27 +sa(dp157242 +g25268 +S'The Island of Madonna della Grazia' +p157243 +sg25270 +S'Artist Information (' +p157244 +sg25273 +S'(artist)' +p157245 +sg25275 +S'\n' +p157246 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f24.jpg' +p157247 +sg25267 +g27 +sa(dp157248 +g25268 +S'Head of a Child' +p157249 +sg25270 +S'British 18th Century' +p157250 +sg25273 +S'overall: 30.5 x 25.5 cm (12 x 10 1/16 in.)' +p157251 +sg25275 +S'\nblack and red chalks heightened with white chalk on brown paper' +p157252 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f8c.jpg' +p157253 +sg25267 +g27 +sa(dp157254 +g25268 +S'Drawing for a Ceiling Fresco' +p157255 +sg25270 +S'Artist Information (' +p157256 +sg25273 +S'Italian, 1696 - 1770' +p157257 +sg25275 +S'(related artist)' +p157258 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a000725e.jpg' +p157259 +sg25267 +g27 +sa(dp157260 +g25268 +S'The Flight into Egypt with the Holy Family and Two Angels in a Skiff' +p157261 +sg25270 +S'Giustino Menescardi' +p157262 +sg25273 +S'pen and brown ink with brown wash, heightened with white, over black chalk on laid paper' +p157263 +sg25275 +S'unknown date\n' +p157264 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00074/a000742d.jpg' +p157265 +sg25267 +g27 +sa(dp157266 +g25268 +S'Drover with Calves in a Country Cart' +p157267 +sg25270 +S'Thomas Gainsborough' +p157268 +sg25273 +S'graphite with gray wash on laid paper' +p157269 +sg25275 +S'c. 1755' +p157270 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00033/a00033d2.jpg' +p157271 +sg25267 +g27 +sa(dp157272 +g25268 +S'Saint Erasmus as Bishop' +p157273 +sg25270 +S'Sebald Beham' +p157274 +sg25273 +S'woodcut' +p157275 +sg25275 +S'unknown date\n' +p157276 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8ea.jpg' +p157277 +sg25267 +g27 +sa(dp157278 +g25268 +S'Portrait of a Woman' +p157279 +sg25270 +S'Richard Cosway' +p157280 +sg25273 +S'watercolor over graphite on wove paper' +p157281 +sg25275 +S'1790s' +p157282 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fb9.jpg' +p157283 +sg25267 +g27 +sa(dp157284 +g25268 +S'Two Studies of a Violinist Tuning His Instrument' +p157285 +sg25270 +S'Antoine Watteau' +p157286 +sg25273 +S'black and red chalk heightened with white chalk on light brown laid paper, with later framing line in brown ink' +p157287 +sg25275 +S'1717/1718' +p157288 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00028/a00028e3.jpg' +p157289 +sg25267 +g27 +sa(dp157290 +g25268 +S'Parade (A Theatrical Procession in Paris)' +p157291 +sg25270 +S'Augustin de Saint-Aubin' +p157292 +sg25273 +S', unknown date' +p157293 +sg25275 +S'\n' +p157294 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000700f.jpg' +p157295 +sg25267 +g27 +sa(dp157296 +g25273 +S'brush and black ink' +p157297 +sg25267 +g27 +sg25275 +S'unknown date\n' +p157298 +sg25268 +S'French Soldier and Child' +p157299 +sg25270 +S'Christian B\xc3\xa9rard' +p157300 +sa(dp157301 +g25268 +S'The Railway' +p157302 +sg25270 +S'Edouard Manet' +p157303 +sg25273 +S'oil on canvas' +p157304 +sg25275 +S'1873' +p157305 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000681.jpg' +p157306 +sg25267 +S'The Railway \n The focus of the composition is a pair\r\nof figures: a little girl believed to be the\r\ndaughter of Manet\xe2\x80\x99s neighbor, the artist\r\nAlphonse Hirsch, and a woman immediately\r\nrecognizable as Victorine Meurent,\r\nManet\xe2\x80\x99s favorite model in the 1860s who\r\nappeared in the artist\xe2\x80\x99s most notorious\r\nworks, the \n As Burty\xe2\x80\x99s account suggests, \n In 1874, just as the impressionists\r\nwere preparing to mount their first group\r\nexhibition, Manet submitted four works\r\nfor exhibition at the Paris Salon. Two\r\nwere rejected outright—the first time in\r\nseven years that any of his works had been\r\nrefused—but two others were accepted:\r\na watercolor and this painting, which he\r\nexhibited under the ambiguous title \n (Text by Kimberly Jones, \n Notes\n \n \n \n ' +p157307 +sa(dp157308 +g25268 +S'Victor Guye' +p157309 +sg25270 +S'Francisco de Goya' +p157310 +sg25273 +S'oil on canvas' +p157311 +sg25275 +S'1810' +p157312 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a000049f.jpg' +p157313 +sg25267 +S'The nephew of one of the most important French generals in\r\n Spain, the young \r\n Victor Guye wears the uniform of the Order of Pages to Joseph\r\n Bonaparte, \r\n Napoleon’s brother who had been appointed king of Spain. At six or\r\n seven \r\n years of age, Victor was probably too young to act as a court page.\r\n Even \r\n so, he might have been permitted to wear the prestigious uniform\r\n through \r\n his uncle’s influence. Goya re-created the uniform’s gold braid\r\n with \r\n scintillating flecks and daubs of \n This picture matches a companion portrait of the boy’s uncle,\r\n \n ' +p157314 +sa(dp157315 +g25273 +S'overall: 34.6 x 11.5 cm (13 5/8 x 4 1/2 in.)\r\nframed: 42.6 x 19.1 cm (16 3/4 x 7 1/2 in.)' +p157316 +sg25267 +g27 +sg25275 +S'\nencaustic on wood' +p157317 +sg25268 +S'Portrait of a Woman' +p157318 +sg25270 +S'Egyptian 2nd Century' +p157319 +sa(dp157320 +g25268 +S'Portrait of a Young Boy' +p157321 +sg25270 +S'Catherine Lusurier' +p157322 +sg25273 +S'red and black chalk on heavy brown laid paper' +p157323 +sg25275 +S'unknown date\n' +p157324 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e19.jpg' +p157325 +sg25267 +g27 +sa(dp157326 +g25268 +S'A Young Man' +p157327 +sg25270 +S'Italian 17th Century' +p157328 +sg25273 +S'overall: 19.6 x 12 cm (7 11/16 x 4 3/4 in.)' +p157329 +sg25275 +S'\npen and brown ink with brown wash over red chalk on blue laid paper' +p157330 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00074/a000746a.jpg' +p157331 +sg25267 +g27 +sa(dp157332 +g25268 +S'Father and Son' +p157333 +sg25270 +S'Jonathan Budington' +p157334 +sg25273 +S'oil on canvas' +p157335 +sg25275 +S'1800' +p157336 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000002f.jpg' +p157337 +sg25267 +g27 +sa(dp157338 +g25268 +S'The Holy Family Under a Tree' +p157339 +sg25270 +S'Sebald Beham' +p157340 +sg25273 +S'woodcut' +p157341 +sg25275 +S'1521' +p157342 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8e6.jpg' +p157343 +sg25267 +g27 +sa(dp157344 +g25268 +S'The Connecticut Valley' +p157345 +sg25270 +S'Thomas Chambers' +p157346 +sg25273 +S'oil on canvas' +p157347 +sg25275 +S'mid 19th century' +p157348 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a0000368.jpg' +p157349 +sg25267 +g27 +sa(dp157350 +g25268 +S'Ark of the Covenant' +p157351 +sg25270 +S'Erastus Salisbury Field' +p157352 +sg25273 +S'oil on canvas' +p157353 +sg25275 +S'c. 1865/1880' +p157354 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000467.jpg' +p157355 +sg25267 +g27 +sa(dp157356 +g25268 +S'Ship "Arkansas" Leaving Havana' +p157357 +sg25270 +S'A. Hashagen' +p157358 +sg25273 +S'oil on canvas' +p157359 +sg25275 +S'1847' +p157360 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000e4.jpg' +p157361 +sg25267 +g27 +sa(dp157362 +g25268 +S'Catherine Brower' +p157363 +sg25270 +S'MacKay' +p157364 +sg25273 +S'oil on canvas' +p157365 +sg25275 +S'1791' +p157366 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000153.jpg' +p157367 +sg25267 +g27 +sa(dp157368 +g25268 +S'Mount Vernon' +p157369 +sg25270 +S'George Ropes' +p157370 +sg25273 +S'oil on canvas' +p157371 +sg25275 +S'1806' +p157372 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001f9.jpg' +p157373 +sg25267 +g27 +sa(dp157374 +g25273 +S'overall: 107 x 81.3 cm (42 1/8 x 32 in.)\r\nframed: 119.1 x 93.3 x 6.3 cm (46 7/8 x 36 3/4 x 2 1/2 in.)' +p157375 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p157376 +sg25268 +S'Boy and Girl' +p157377 +sg25270 +S'American 19th Century' +p157378 +sa(dp157379 +g25268 +S'Brothers' +p157380 +sg25270 +S'Susan C. Waters' +p157381 +sg25273 +S'oil on canvas' +p157382 +sg25275 +S'c. 1845' +p157383 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000028c.jpg' +p157384 +sg25267 +g27 +sa(dp157385 +g25268 +S'Miss Daggett of New Haven, Connecticut (possibly Amelia Martha)' +p157386 +sg25270 +S'American 18th Century' +p157387 +sg25273 +S'overall: 91.8 x 72.4 cm (36 1/8 x 28 1/2 in.)\r\nframed: 98.4 x 78.7 x 5 cm (38 3/4 x 31 x 1 15/16 in.)' +p157388 +sg25275 +S'\noil on canvas' +p157389 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a000040f.jpg' +p157390 +sg25267 +g27 +sa(dp157391 +g25268 +S'Landscape with Buildings' +p157392 +sg25270 +S'American 18th Century' +p157393 +sg25273 +S'overall: 68.9 x 116.2 cm (27 1/8 x 45 3/4 in.)\r\nframed: 82.8 x 131.1 x 4.4 cm (32 5/8 x 51 5/8 x 1 3/4 in.)' +p157394 +sg25275 +S'\noil on wood' +p157395 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a000045f.jpg' +p157396 +sg25267 +g27 +sa(dp157397 +g25268 +S'Lady Undressing for a Bath' +p157398 +sg25270 +S'Gerardus Duyckinck' +p157399 +sg25273 +S', c. 1730/1740' +p157400 +sg25275 +S'\n' +p157401 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000008c.jpg' +p157402 +sg25267 +g27 +sa(dp157403 +g25268 +S'The Last Supper' +p157404 +sg25270 +S'Sebald Beham' +p157405 +sg25273 +S'woodcut' +p157406 +sg25275 +S'1522' +p157407 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8c0.jpg' +p157408 +sg25267 +g27 +sa(dp157409 +g25268 +S'Washington, the Mason' +p157410 +sg25270 +S'American 19th Century' +p157411 +sg25273 +S'overall: 38.4 x 30.5 cm (15 1/8 x 12 in.)\r\nframed: 46.3 x 38.1 x 3.4 cm (18 1/4 x 15 x 1 5/16 in.)' +p157412 +sg25275 +S'\noil on canvas' +p157413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000457.jpg' +p157414 +sg25267 +g27 +sa(dp157415 +g25268 +S'"We Go for the Union"' +p157416 +sg25270 +S'American 19th Century' +p157417 +sg25273 +S'overall: 46.2 x 61.5 cm (18 3/16 x 24 3/16 in.)\r\nframed: 57.1 x 72.4 x 5.3 cm (22 1/2 x 28 1/2 x 2 1/16 in.)' +p157418 +sg25275 +S'\noil on canvas' +p157419 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000458.jpg' +p157420 +sg25267 +g27 +sa(dp157421 +g25268 +S'Miss Van Alen' +p157422 +sg25270 +S'Artist Information (' +p157423 +sg25273 +S'(painter)' +p157424 +sg25275 +S'\n' +p157425 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000c8.jpg' +p157426 +sg25267 +g27 +sa(dp157427 +g25268 +S"Memory Copy of Holbein's Erasmus" +p157428 +sg25270 +S'Alphonse Legros' +p157429 +sg25273 +S'oil on wood' +p157430 +sg25275 +S'unknown date\n' +p157431 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6b2.jpg' +p157432 +sg25267 +g27 +sa(dp157433 +g25268 +S'Alphonse Legros' +p157434 +sg25270 +S'Aim\xc3\xa9-Jules Dalou' +p157435 +sg25273 +S'bronze' +p157436 +sg25275 +S'model c. 1876, cast possibly 1879/1920' +p157437 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a000541d.jpg' +p157438 +sg25267 +g27 +sa(dp157439 +g25268 +S'Head of an Old Man' +p157440 +sg25270 +S'Alphonse Legros' +p157441 +sg25273 +S'metalpoint on pink bristol board' +p157442 +sg25275 +S'1897' +p157443 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073e7.jpg' +p157444 +sg25267 +g27 +sa(dp157445 +g25273 +S'pen and brown ink with brown wash' +p157446 +sg25267 +g27 +sg25275 +S'unknown date\n' +p157447 +sg25268 +S'The Big Trees' +p157448 +sg25270 +S'Alphonse Legros' +p157449 +sa(dp157450 +g25268 +S'Head of a Child' +p157451 +sg25270 +S'Alphonse Legros' +p157452 +sg25273 +S'metalpoint on gray bristol board' +p157453 +sg25275 +S'unknown date\n' +p157454 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073ee.jpg' +p157455 +sg25267 +g27 +sa(dp157456 +g25268 +S"Corner of a Wood (Coin d'un bois)" +p157457 +sg25270 +S'Alphonse Legros' +p157458 +sg25273 +S'etching' +p157459 +sg25275 +S'unknown date\n' +p157460 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b86.jpg' +p157461 +sg25267 +g27 +sa(dp157462 +g25268 +S'Bank of a River' +p157463 +sg25270 +S'Alphonse Legros' +p157464 +sg25273 +S'pen and brown ink with brown wash on cardboard' +p157465 +sg25275 +S'unknown date\n' +p157466 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073ec.jpg' +p157467 +sg25267 +g27 +sa(dp157468 +g25268 +S'Christ on the Mount of Olives' +p157469 +sg25270 +S'Sebald Beham' +p157470 +sg25273 +S'woodcut' +p157471 +sg25275 +S'unknown date\n' +p157472 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8bf.jpg' +p157473 +sg25267 +g27 +sa(dp157474 +g25268 +S'English Beggars' +p157475 +sg25270 +S'Alphonse Legros' +p157476 +sg25273 +S'pen and brown ink with brown wash' +p157477 +sg25275 +S'unknown date\n' +p157478 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d15.jpg' +p157479 +sg25267 +g27 +sa(dp157480 +g25268 +S"Birch Trees along the Water (Les bouleaux: Bord de l'eau)" +p157481 +sg25270 +S'Alphonse Legros' +p157482 +sg25273 +S'drypoint and (etching?)' +p157483 +sg25275 +S'unknown date\n' +p157484 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bea.jpg' +p157485 +sg25267 +g27 +sa(dp157486 +g25273 +S'pen and brown ink with brown wash' +p157487 +sg25267 +g27 +sg25275 +S'unknown date\n' +p157488 +sg25268 +S'Landscape' +p157489 +sg25270 +S'Alphonse Legros' +p157490 +sa(dp157491 +g25268 +S'Landscape - Four Trees beyond a River' +p157492 +sg25270 +S'Alphonse Legros' +p157493 +sg25273 +S'pen and brown ink with brown wash on wove paper' +p157494 +sg25275 +S'unknown date\n' +p157495 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073e5.jpg' +p157496 +sg25267 +g27 +sa(dp157497 +g25268 +S'Mountains Seen beyond a Lake' +p157498 +sg25270 +S'Alphonse Legros' +p157499 +sg25273 +S'gouache' +p157500 +sg25275 +S'unknown date\n' +p157501 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007302.jpg' +p157502 +sg25267 +g27 +sa(dp157503 +g25268 +S'Landscape: Sunrise (Paysage: Lever du soleil)' +p157504 +sg25270 +S'Alphonse Legros' +p157505 +sg25273 +S'etching and drypoint' +p157506 +sg25275 +S'unknown date\n' +p157507 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c5d.jpg' +p157508 +sg25267 +g27 +sa(dp157509 +g25268 +S'Traveler Reclining on the Grass (Le voyageur etendu sur le gazon)' +p157510 +sg25270 +S'Alphonse Legros' +p157511 +sg25273 +S'etching and drypoint in brown' +p157512 +sg25275 +S'unknown date\n' +p157513 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b8f.jpg' +p157514 +sg25267 +g27 +sa(dp157515 +g25268 +S'Landscape with Birch Trees (Le paysage aux bouleaux)' +p157516 +sg25270 +S'Alphonse Legros' +p157517 +sg25273 +S'lithograph' +p157518 +sg25275 +S'unknown date\n' +p157519 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fa3.jpg' +p157520 +sg25267 +g27 +sa(dp157521 +g25268 +S'Large Trees Seen against the Sun (Les grandes arbres: Effet du soir)' +p157522 +sg25270 +S'Alphonse Legros' +p157523 +sg25273 +S'etching, aquatint, and drypoint' +p157524 +sg25275 +S'unknown date\n' +p157525 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fac.jpg' +p157526 +sg25267 +g27 +sa(dp157527 +g25268 +S'In the Woods (Dans les bois)' +p157528 +sg25270 +S'Alphonse Legros' +p157529 +sg25273 +S'drypoint' +p157530 +sg25275 +S'unknown date\n' +p157531 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bdc.jpg' +p157532 +sg25267 +g27 +sa(dp157533 +g25268 +S'Christ Taken Captive' +p157534 +sg25270 +S'Sebald Beham' +p157535 +sg25273 +S'woodcut' +p157536 +sg25275 +S'1535' +p157537 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8c3.jpg' +p157538 +sg25267 +g27 +sa(dp157539 +g25268 +S'Tornado (Le typhon)' +p157540 +sg25270 +S'Alphonse Legros' +p157541 +sg25273 +S'drypoint' +p157542 +sg25275 +S'unknown date\n' +p157543 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fb3.jpg' +p157544 +sg25267 +g27 +sa(dp157545 +g25268 +S'My Farm (Ma ferme)' +p157546 +sg25270 +S'Alphonse Legros' +p157547 +sg25273 +S'etching' +p157548 +sg25275 +S'unknown date\n' +p157549 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bbf.jpg' +p157550 +sg25267 +g27 +sa(dp157551 +g25268 +S'Countryside of Burgundy [recto]' +p157552 +sg25270 +S'Alphonse Legros' +p157553 +sg25273 +S'pen and brown ink with brown wash over graphite on paperboard' +p157554 +sg25275 +S'unknown date\n' +p157555 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073ed.jpg' +p157556 +sg25267 +g27 +sa(dp157557 +g25273 +S'graphite on paperboard' +p157558 +sg25267 +g27 +sg25275 +S'unknown date\n' +p157559 +sg25268 +S'The Woodcutters [verso]' +p157560 +sg25270 +S'Alphonse Legros' +p157561 +sa(dp157562 +g25268 +S'Return of the Peasants' +p157563 +sg25270 +S'Alphonse Legros' +p157564 +sg25273 +S'graphite' +p157565 +sg25275 +S'unknown date\n' +p157566 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073e6.jpg' +p157567 +sg25267 +g27 +sa(dp157568 +g25268 +S'Thomas Carlyle' +p157569 +sg25270 +S'Alphonse Legros' +p157570 +sg25273 +S'etching and aquatint' +p157571 +sg25275 +S'unknown date\n' +p157572 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f9f.jpg' +p157573 +sg25267 +g27 +sa(dp157574 +g25268 +S"Harvesters Surprised by the Storm (Moissoneuses surprises par l'orage)" +p157575 +sg25270 +S'Alphonse Legros' +p157576 +sg25273 +S'etching retouched with crayon' +p157577 +sg25275 +S'unknown date\n' +p157578 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fa9.jpg' +p157579 +sg25267 +g27 +sa(dp157580 +g25268 +S'Head of a Child' +p157581 +sg25270 +S'Alphonse Legros' +p157582 +sg25273 +S'graphite on laid paper washed green' +p157583 +sg25275 +S'1893' +p157584 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dfc.jpg' +p157585 +sg25267 +g27 +sa(dp157586 +g25268 +S'Portrait of an Old Man' +p157587 +sg25270 +S'Alphonse Legros' +p157588 +sg25273 +S'graphite' +p157589 +sg25275 +S'unknown date\n' +p157590 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ce0.jpg' +p157591 +sg25267 +g27 +sa(dp157592 +g25273 +S'etched zinc plate [cancelled]' +p157593 +sg25267 +g27 +sg25275 +S'unknown date\n' +p157594 +sg25268 +S'A Fountain: Grotesque, Children and Basin [upper half]' +p157595 +sg25270 +S'Alphonse Legros' +p157596 +sa(dp157597 +g25268 +S'Christ before Caiaphas' +p157598 +sg25270 +S'Sebald Beham' +p157599 +sg25273 +S'woodcut' +p157600 +sg25275 +S'1535' +p157601 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8c4.jpg' +p157602 +sg25267 +g27 +sa(dp157603 +g25273 +S'etched zinc plate [cancelled]' +p157604 +sg25267 +g27 +sg25275 +S'unknown date\n' +p157605 +sg25268 +S'A Fountain: Grotesque, Children and Basin [lower half]' +p157606 +sg25270 +S'Alphonse Legros' +p157607 +sa(dp157608 +g25268 +S'Charles Carroll of Carrollton' +p157609 +sg25270 +S'Chester Harding' +p157610 +sg25273 +S'oil on canvas' +p157611 +sg25275 +S'c. 1828' +p157612 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000dd.jpg' +p157613 +sg25267 +g27 +sa(dp157614 +g25273 +S'marble' +p157615 +sg25267 +g27 +sg25275 +S'1778' +p157616 +sg25268 +S'Diana' +p157617 +sg25270 +S'Jean-Antoine Houdon' +p157618 +sa(dp157619 +g25268 +S'Louis Husson' +p157620 +sg25270 +S'Thomas Eakins' +p157621 +sg25273 +S'oil on canvas' +p157622 +sg25275 +S'1899' +p157623 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000008f.jpg' +p157624 +sg25267 +g27 +sa(dp157625 +g25268 +S'Annie C. Lochrey Husson (Mrs. Louis Husson)' +p157626 +sg25270 +S'Thomas Eakins' +p157627 +sg25273 +S'oil on canvas' +p157628 +sg25275 +S'c. 1905' +p157629 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000090.jpg' +p157630 +sg25267 +g27 +sa(dp157631 +g25268 +S'George Dodd' +p157632 +sg25270 +S'John Neagle' +p157633 +sg25273 +S'oil on canvas' +p157634 +sg25275 +S'1852' +p157635 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000173.jpg' +p157636 +sg25267 +g27 +sa(dp157637 +g25268 +S'Julia Dodd (Mrs. George Dodd)' +p157638 +sg25270 +S'John Neagle' +p157639 +sg25273 +S'oil on canvas' +p157640 +sg25275 +S'1852' +p157641 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000174.jpg' +p157642 +sg25267 +g27 +sa(dp157643 +g25273 +S'pastel on paper on cardboard' +p157644 +sg25267 +g27 +sg25275 +S'c. 1875' +p157645 +sg25268 +S'Nude' +p157646 +sg25270 +S'Albert Besnard' +p157647 +sa(dp157648 +g25268 +S'The Sisters' +p157649 +sg25270 +S'Gari Melchers' +p157650 +sg25273 +S'oil on canvas' +p157651 +sg25275 +S'c. 1895' +p157652 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000166.jpg' +p157653 +sg25267 +g27 +sa(dp157654 +g25268 +S'Hugo Reisinger' +p157655 +sg25270 +S'Anders Zorn' +p157656 +sg25273 +S'oil on canvas' +p157657 +sg25275 +S'1907' +p157658 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000075b.jpg' +p157659 +sg25267 +g27 +sa(dp157660 +g25268 +S'Ecce Homo' +p157661 +sg25270 +S'Sebald Beham' +p157662 +sg25273 +S'woodcut' +p157663 +sg25275 +S'1522' +p157664 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8c5.jpg' +p157665 +sg25267 +g27 +sa(dp157666 +g25268 +S'My Gems' +p157667 +sg25270 +S'William Michael Harnett' +p157668 +sg25273 +S'oil on wood' +p157669 +sg25275 +S'1888' +p157670 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000de.jpg' +p157671 +sg25267 +S"In this somber still life of a cluttered Victorian interior, well-worn yet once-precious\nobjects have been rendered so meticulously that the artist's brushstrokes are barely\ndiscernible. Harnett's exquisitely subtle tonal modulations and his ability to differentiate\ntextures make this painting a tour-de-force of artistic illusionism. Such \n Historically, such a \n " +p157672 +sa(dp157673 +g25268 +S'La Grotte de la Loue' +p157674 +sg25270 +S'Gustave Courbet' +p157675 +sg25273 +S'oil on canvas' +p157676 +sg25275 +S'1864' +p157677 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000db8.jpg' +p157678 +sg25267 +S'Courbet painted events and scenery primarily from his native Ornans, a village\nin the remote Franche-Comté region. A proponent of realism, he challenged traditional\nideas about art by depicting simple peasants and rustic scenery with dignity and\non the grandscale usually reserved for history paintings.\n La Grotte de la Loue\n ' +p157679 +sa(dp157680 +g25268 +S'Singerie: The Concert' +p157681 +sg25270 +S'Christophe Huet' +p157682 +sg25273 +S'oil on canvas' +p157683 +sg25275 +S'c. 1739' +p157684 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000558d.jpg' +p157685 +sg25267 +g27 +sa(dp157686 +g25268 +S'Singerie: The Dance' +p157687 +sg25270 +S'Christophe Huet' +p157688 +sg25273 +S'oil on canvas' +p157689 +sg25275 +S'c. 1739' +p157690 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005588.jpg' +p157691 +sg25267 +g27 +sa(dp157692 +g25268 +S'Singerie: The Fishermen' +p157693 +sg25270 +S'Christophe Huet' +p157694 +sg25273 +S'oil on canvas' +p157695 +sg25275 +S'c. 1739' +p157696 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005587.jpg' +p157697 +sg25267 +g27 +sa(dp157698 +g25268 +S'Singerie: The Picnic' +p157699 +sg25270 +S'Christophe Huet' +p157700 +sg25273 +S'oil on canvas' +p157701 +sg25275 +S'c. 1739' +p157702 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005586.jpg' +p157703 +sg25267 +g27 +sa(dp157704 +g25268 +S'Singerie: The Painter' +p157705 +sg25270 +S'Christophe Huet' +p157706 +sg25273 +S'oil on canvas' +p157707 +sg25275 +S'c. 1739' +p157708 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005585.jpg' +p157709 +sg25267 +g27 +sa(dp157710 +g25268 +S'Singerie: The Sculptor' +p157711 +sg25270 +S'Christophe Huet' +p157712 +sg25273 +S'oil on canvas' +p157713 +sg25275 +S'c. 1739' +p157714 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005584.jpg' +p157715 +sg25267 +g27 +sa(dp157716 +g25273 +S'carved oak' +p157717 +sg25267 +g27 +sg25275 +S'c. 1739' +p157718 +sg25268 +S'Wall Panelling (boiseries)' +p157719 +sg25270 +S'Nicolas Pineau' +p157720 +sa(dp157721 +g25273 +S'oak' +p157722 +sg25267 +g27 +sg25275 +S'19th century' +p157723 +sg25268 +S'Floorboarding (parquet de Versailles)' +p157724 +sg25270 +S'Unknown 19th Century' +p157725 +sa(dp157726 +g25268 +S'Christ Bearing the Cross' +p157727 +sg25270 +S'Sebald Beham' +p157728 +sg25273 +S'woodcut' +p157729 +sg25275 +S'1521' +p157730 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8c1.jpg' +p157731 +sg25267 +g27 +sa(dp157732 +g25273 +S'oak' +p157733 +sg25267 +g27 +sg25275 +S'19th century' +p157734 +sg25268 +S'Floorboarding (parquet de Versailles)' +p157735 +sg25270 +S'Unknown 19th Century' +p157736 +sa(dp157737 +g25273 +S'Gift of George D. Widener and Eleanor Widener Dixon' +p157738 +sg25267 +g27 +sg25275 +S'\ncarved rouge royal marble with interior fitments of cast iron' +p157739 +sg25268 +S'Mantelpiece (chemin\xc3\xa9e)' +p157740 +sg25270 +S'Unknown 18th Century' +p157741 +sa(dp157742 +g25268 +S'Andiron (feu or chenet)' +p157743 +sg25270 +S'Jacques Caffi\xc3\xa9ri' +p157744 +sg25273 +S', probably 1750/1755' +p157745 +sg25275 +S'\n' +p157746 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a00055b7.jpg' +p157747 +sg25267 +S'\n The subjects of these gilt-bronze andirons create visual puns on the English synonym firedogs and its French equivalent, chenets. Presumably made for a hunting lodge, these firedogs depict hounds fighting a boar and a wolf who both have already killed one dog. The lively sculpture groups appear to be the work of \n \n Fantasy marks the marble chimneypiece (cheminée), carved about 1750. Its motifs of seashells are so extravagantly scalloped that they dissolve into curves purely for the sake of curves.\n \n \n The relief sculpture of the cast-iron fireback is cleverly chosen from classical mythology. In the cavern of Hades, Pluto carries his two-pronged poker for brimstone. Entertaining him, the musician Orpheus plays bagpipes in an attempt to reclaim his wife Eurydice from the realm of the dead. Behind blazing logs, this scene would take place, appropriately, in hellfire.\n \n \n Atop the mantel is a charming marble statuette, The Punishment of Cupid, a highly popular design by \n ' +p157748 +sa(dp157749 +g25268 +S'Andiron (feu or chenet)' +p157750 +sg25270 +S'Jacques Caffi\xc3\xa9ri' +p157751 +sg25273 +S', probably 1750/1755' +p157752 +sg25275 +S'\n' +p157753 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a00055b8.jpg' +p157754 +sg25267 +g27 +sa(dp157755 +g25273 +S'height: 57.8 cm (22 3/4 in.)' +p157756 +sg25267 +g27 +sg25275 +S'\ngilded bronze' +p157757 +sg25268 +S'Wall-Light (bras de lumi\xc3\xa8re)' +p157758 +sg25270 +S'French 18th Century' +p157759 +sa(dp157760 +g25268 +S'Wall-Light (bras de lumi\xc3\xa8re)' +p157761 +sg25270 +S'French 18th Century' +p157762 +sg25273 +S'height: 57.5 cm (22 5/8 in.)' +p157763 +sg25275 +S'\ngilded bronze' +p157764 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000558a.jpg' +p157765 +sg25267 +g27 +sa(dp157766 +g25273 +S'height: 65.1 cm (25 5/8 in.)' +p157767 +sg25267 +g27 +sg25275 +S'\ngilded bronze' +p157768 +sg25268 +S'Wall-Light (bras de lumi\xc3\xa8re)' +p157769 +sg25270 +S'French 19th Century' +p157770 +sa(dp157771 +g25273 +S'height: 65.1 cm (25 5/8 in.)' +p157772 +sg25267 +g27 +sg25275 +S'\ngilded bronze' +p157773 +sg25268 +S'Wall-Light (bras de lumi\xc3\xa8re)' +p157774 +sg25270 +S'French 19th Century' +p157775 +sa(dp157776 +g25268 +S'Wall-Light (bras de lumi\xc3\xa8re)' +p157777 +sg25270 +S'Artist Information (' +p157778 +sg25273 +g27 +sg25275 +S'(artist)' +p157779 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005589.jpg' +p157780 +sg25267 +g27 +sa(dp157781 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p157782 +sg25268 +S'Wall-Light (bras de lumi\xc3\xa8re)' +p157783 +sg25270 +S'Artist Information (' +p157784 +sa(dp157785 +g25268 +S'Portrait of a Youth' +p157786 +sg25270 +S'Artist Information (' +p157787 +sg25273 +S'(painter)' +p157788 +sg25275 +S'\n' +p157789 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000077a.jpg' +p157790 +sg25267 +S'The Mazziere brothers ran a significant workshop in Florence in the late fifteenth and early sixteenth centuries, but were known only through mentions in archives. It was not until 1988 that scholars were able to link them with actual paintings and drawings, which up to that time had been assigned to an unidentified artist called the "Master of Santo Spirito." The workshop seems to have eagerly adopted innovations—for example, this sitter, like \n The unidentified youth wears a tight-fitting red doublet of the type that came into fashion at the end of the fifteenth century. The slits in the arms of this doublet not only show off the fine quality of the young man\'s chemise, but they were also probably needed for full range of motion.\n Much of Florence\'s wealth was based on textiles, and an appreciation for fine silk and woolen cloth was regarded as something of a Florentine birthright. Seven guilds oversaw the production of everything from wool berets, like the one worn by the youth in the painting, to shoe soles. It has been estimated that a weaver of brocaded velvets, the most luxurious fabric available, earned more in a year than the architect Brunelleschi, who designed the dome for Florence\'s cathedral. The color red, used for some official garments in Florence, was produced by a range of dyes. The most expensive red cloth, \n ' +p157791 +sa(dp157792 +g25268 +S'Christ on the Cross' +p157793 +sg25270 +S'Sebald Beham' +p157794 +sg25273 +S'woodcut' +p157795 +sg25275 +S'1521' +p157796 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8bd.jpg' +p157797 +sg25267 +g27 +sa(dp157798 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p157799 +sg25268 +S'Wall-Light (bras de lumi\xc3\xa8re)' +p157800 +sg25270 +S'Artist Information (' +p157801 +sa(dp157802 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p157803 +sg25268 +S'Wall-Light (bras de lumi\xc3\xa8re)' +p157804 +sg25270 +S'Artist Information (' +p157805 +sa(dp157806 +g25273 +S'Gift of George D. Widener and Eleanor Widener Dixon' +p157807 +sg25267 +g27 +sg25275 +S'\nsteel, rock crystal, cut and molded glass' +p157808 +sg25268 +S'Chandelier (lustre)' +p157809 +sg25270 +S'French 18th Century' +p157810 +sa(dp157811 +g25273 +S'overall (overall height x diameter): 149.8 x 88.9 cm (59 x 35 in.)\r\noverall (height of cage): 119.1 cm (46 7/8 in.)' +p157812 +sg25267 +g27 +sg25275 +S'\nsteel, rock crystal, cut and molded glass' +p157813 +sg25268 +S'Chandelier (lustre)' +p157814 +sg25270 +S'French 18th Century' +p157815 +sa(dp157816 +g25268 +S'Agostino Barbarigo' +p157817 +sg25270 +S'Artist Information (' +p157818 +sg25273 +S'Italian, 1528 - 1588' +p157819 +sg25275 +S'(related artist)' +p157820 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f8b.jpg' +p157821 +sg25267 +g27 +sa(dp157822 +g25268 +S'Colonel Augustus James Pleasonton' +p157823 +sg25270 +S'John Neagle' +p157824 +sg25273 +S'oil on canvas' +p157825 +sg25275 +S'1846' +p157826 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000175.jpg' +p157827 +sg25267 +g27 +sa(dp157828 +g25268 +S'Robert Liston' +p157829 +sg25270 +S'Gilbert Stuart' +p157830 +sg25273 +S'oil on canvas' +p157831 +sg25275 +S'1800' +p157832 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000024f.jpg' +p157833 +sg25267 +g27 +sa(dp157834 +g25268 +S'Captain Isaac Foster' +p157835 +sg25270 +S'Joseph Badger' +p157836 +sg25273 +S'oil on bed ticking' +p157837 +sg25275 +S'1755' +p157838 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000000a.jpg' +p157839 +sg25267 +g27 +sa(dp157840 +g25268 +S'Eleanor Wyer Foster (Mrs. Isaac Foster)' +p157841 +sg25270 +S'Joseph Badger' +p157842 +sg25273 +S'oil on bed ticking' +p157843 +sg25275 +S'1755' +p157844 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000000b.jpg' +p157845 +sg25267 +g27 +sa(dp157846 +g25268 +S'Isaac Foster, Jr.' +p157847 +sg25270 +S'Joseph Badger' +p157848 +sg25273 +S'oil on canvas' +p157849 +sg25275 +S'1755' +p157850 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000000c.jpg' +p157851 +sg25267 +g27 +sa(dp157852 +g25268 +S'The Entombment' +p157853 +sg25270 +S'Sebald Beham' +p157854 +sg25273 +S'woodcut' +p157855 +sg25275 +S'1521' +p157856 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8be.jpg' +p157857 +sg25267 +g27 +sa(dp157858 +g25268 +S'Dr. William Foster' +p157859 +sg25270 +S'Joseph Badger' +p157860 +sg25273 +S'oil on canvas' +p157861 +sg25275 +S'1755' +p157862 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000000d.jpg' +p157863 +sg25267 +g27 +sa(dp157864 +g25268 +S'Melons and Grapes' +p157865 +sg25270 +S'Chipman' +p157866 +sg25273 +S'oil on canvas' +p157867 +sg25275 +S'mid 19th century' +p157868 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000004d.jpg' +p157869 +sg25267 +g27 +sa(dp157870 +g25268 +S'Henry W. Houston' +p157871 +sg25270 +S'Elias V. Coe' +p157872 +sg25273 +S'oil on canvas' +p157873 +sg25275 +S'1837' +p157874 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000051.jpg' +p157875 +sg25267 +g27 +sa(dp157876 +g25268 +S'Aurora' +p157877 +sg25270 +S'American 19th Century' +p157878 +sg25273 +S'overall: 61 x 81.9 cm (24 x 32 1/4 in.)\r\nframed: 69.5 x 89.8 x 3.1 cm (27 3/8 x 35 3/8 x 1 1/4 in.)' +p157879 +sg25275 +S'\noil on wood' +p157880 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000408.jpg' +p157881 +sg25267 +g27 +sa(dp157882 +g25268 +S'The Dog' +p157883 +sg25270 +S'American 20th Century' +p157884 +sg25273 +S'overall: 89.5 x 105 cm (35 1/4 x 41 5/16 in.)\r\nframed: 105.4 x 116.5 x 4.1 cm (41 1/2 x 45 7/8 x 1 5/8 in.)' +p157885 +sg25275 +S'\noil on canvas' +p157886 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000410.jpg' +p157887 +sg25267 +g27 +sa(dp157888 +g25268 +S'Mr. Willson' +p157889 +sg25270 +S'Artist Information (' +p157890 +sg25273 +S'(painter)' +p157891 +sg25275 +S'\n' +p157892 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000020c.jpg' +p157893 +sg25267 +g27 +sa(dp157894 +g25268 +S'The Nymph of the Spring' +p157895 +sg25270 +S'Lucas Cranach the Elder' +p157896 +sg25273 +S'oil on panel' +p157897 +sg25275 +S'after 1537' +p157898 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005b1.jpg' +p157899 +sg25267 +S"A note of ambiguity or unease often gives a piquant quality to German adaptations\nof the Renaissance ideal. Cranach's painting of a classical nymph represents an\nItalian theme but gives it a moralizing twist common to late Gothic courtly and\namorous subjects.\n The nymph reclines beside a spring, perhaps a reference to a legendary ancient Roman\nfountain with which a Latin verse was associated. The text was translated by Alexander\nPope in 1725:\n\n The inscription on this painting -- \n " +p157900 +sa(dp157901 +g25268 +S'The Battle of Padua' +p157902 +sg25270 +S'Hans Burgkmair I' +p157903 +sg25273 +S'woodcut on vellum' +p157904 +sg25275 +S'unknown date\n' +p157905 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b031.jpg' +p157906 +sg25267 +g27 +sa(dp157907 +g25268 +S'Christ and the Woman of Samaria' +p157908 +sg25270 +S'German 15th Century' +p157909 +sg25273 +S'Schreiber, no. 2215' +p157910 +sg25275 +S'\nmetalcut, hand-colored in gray and rose' +p157911 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a477.jpg' +p157912 +sg25267 +g27 +sa(dp157913 +g25268 +S'The Crucifixion' +p157914 +sg25270 +S'Artist Information (' +p157915 +sg25273 +S'Netherlandish, active c. 1480' +p157916 +sg25275 +S'(related artist)' +p157917 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e13.jpg' +p157918 +sg25267 +g27 +sa(dp157919 +g25268 +S'The Good Shepherd' +p157920 +sg25270 +S'Sebald Beham' +p157921 +sg25273 +S'woodcut' +p157922 +sg25275 +S'probably 1527' +p157923 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8c7.jpg' +p157924 +sg25267 +g27 +sa(dp157925 +g25268 +S'Lady with a Fan' +p157926 +sg25270 +S'Sir Anthony van Dyck' +p157927 +sg25273 +S'oil on canvas' +p157928 +sg25275 +S'c. 1628' +p157929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e41.jpg' +p157930 +sg25267 +S'Lady with a Fan\n ' +p157931 +sa(dp157932 +g25268 +S'Decius Mus Addressing the Legions' +p157933 +sg25270 +S'Sir Peter Paul Rubens' +p157934 +sg25273 +S'oil on hardboard, transferred from wood and canvas' +p157935 +sg25275 +S'probably 1616' +p157936 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e39.jpg' +p157937 +sg25267 +S"About 340 B.C., the cities of southern Italy revolted against the authority of Rome. At their camp near Naples, the Roman leaders were visited by a divine\r\napparition who declared that the army of one side and the commander of the other must be sacrificed to the Underworld. The prophecy meant that the side that lost its general would be victorious. Here Decius Mus, standing on a dais, tells his troops that, for the sake of Roman victory, he would allow himself to be killed.\n Symbolizing Jupiter, the Roman king of the gods, a mighty eagle clutches lightning bolts in its talons and hovers behind Decius Mus. Rubens derived the soldiers' armor, helmets, shields, and military standards from ancient Roman sculpture. The whole composition, in fact, with its large figures silhouetted in the foreground, recalls the appearance of bas-reliefs carved on Roman victory monuments.\n The subject is the first in a series of eight tapestry designs on the theme of Decius Mus, which Rubens completed for a Genoese patron. The panel is a small model, that was enlarged by workshop assistants into the full-size picture, called a cartoon, that was sent to weavers in Brussels.\n " +p157938 +sa(dp157939 +g25268 +S'Vincenzo Cappello' +p157940 +sg25270 +S'Titian' +p157941 +sg25273 +S'oil on canvas' +p157942 +sg25275 +S'probably c. 1540' +p157943 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005ef.jpg' +p157944 +sg25267 +g27 +sa(dp157945 +g25268 +S'Christ Cleansing the Temple' +p157946 +sg25270 +S'El Greco' +p157947 +sg25273 +S', probably before 1570' +p157948 +sg25275 +S'\n' +p157949 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000547.jpg' +p157950 +sg25267 +S"In this tempestuous scene, El Greco depicted an angry Christ driving the moneychangers\nfrom the Temple. An uncommon theme, it became increasingly popular in the latter\nhalf of the sixteenth century, promoted by the Council of Trent as a symbol of the\nCatholic church's attempt to purify itself after the Protestant Reformation. Here\nEl Greco portrayed partially draped women and bare-chested men writhing and twisting\nto escape the blows of Christ's scourge, emphasizing the agitation of the participants\nand exaggerating their irreverence. The setting is one of classical grandeur, more\nreminiscent of an Italian Renaissance palace than of the sacred precincts of the\nTemple in Jerusalem.\n This panel was painted in Venice before El Greco made his way to Spain. The illusionistic\nspace and voluptuous figures in this early work are vastly different from the flattened\nspace and stylized forms of Byzantine art, which continued to dominate painting\nin El Greco's native Crete. El Greco's arrival in Venice, in about 1567, coincided\nwith a high point in that city's artistic achievement. That the Cretan artist had\nabsorbed the influence of the Venetian masters and taught himself a new way of painting\nis evident in the movement and drama, solidly modeled figures, and boldly brushed\ncolors of this panel. The influence of the Venetians is equally evident in the elaborate\narchitectural setting with its complicated perspective.\n " +p157951 +sa(dp157952 +g25268 +S'Charity' +p157953 +sg25270 +S'Andrea del Sarto' +p157954 +sg25273 +S'oil on panel' +p157955 +sg25275 +S'before 1530' +p157956 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000820.jpg' +p157957 +sg25267 +S'The theological virtue of Charity is traditionally represented by a woman with\nseveral small children, one of whom she is shown nursing. Here, those figures appear\nhard and solid amidst a smoky, undefined setting. Sharp colors, like the pink and\nturquoise of the garments or the burnt orange and purple stripes of the tablecloth,\nheighten this contrast of tangible form and indeterminate space. It is, above all,\nin the ideal grace of slowly revolving poses that the real expressive force of the\npicture is conveyed.\n That the subject is subservient to the style in this painting is underlined by the\nfact that the panel was first planned as a \n Andrea d\'Agnolo was called "del Sarto" from his father\'s trade as a tailor. He had\na successful and productive career in Florence and was particularly celebrated for\nthe beauty and originality of his color. Sarto worked briefly at the court of Francis\nI at Fontainebleau in 1518. This \n ' +p157958 +sa(dp157959 +g25268 +S'Saint John the Evangelist on Patmos' +p157960 +sg25270 +S'Titian' +p157961 +sg25273 +S'oil on canvas' +p157962 +sg25275 +S'c. 1547' +p157963 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000088b.jpg' +p157964 +sg25267 +S"In 1544, Titian was commissioned to paint \n Secluded on the Greek island of Patmos, Saint John the Evangelist experienced his apocalyptic vision of the second coming of Christ. This painting depicts the moment when he was inspired by God to write the Book of Revelation. Seen from a low vantage point and dramatically silhouetted against the sky, the heroic figure of John is radically foreshortened. With bent knees and upthrust arms, he looks up to witness God, accompanied by angels, bursting through the clouds above his head.\r\nThe brilliant hues of yellow, blue, and red draw the eye upward through the physical boundaries of the ceiling and into the heavenly realm. The emotional impact of the subject is further intensified by Titian's broad, expressive brushstrokes.\n " +p157965 +sa(dp157966 +g25273 +S'overall (height x length): 35.4 x 41.9 cm (13 15/16 x 16 1/2 in.)' +p157967 +sg25267 +g27 +sg25275 +S'\nbronze' +p157968 +sg25268 +S'Lion' +p157969 +sg25270 +S'Roman 18th/19th Century' +p157970 +sa(dp157971 +g25268 +S'The Capitoline Wolf Suckling Romulus and Remus' +p157972 +sg25270 +S'Artist Information (' +p157973 +sg25273 +g27 +sg25275 +S'(sculptor)' +p157974 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002da7.jpg' +p157975 +sg25267 +g27 +sa(dp157976 +g25273 +S'Italian, 15th century' +p157977 +sg25267 +g27 +sg25275 +S'(sculptor)' +p157978 +sg25268 +S'Fortuna' +p157979 +sg25270 +S'Artist Information (' +p157980 +sa(dp157981 +g25268 +S'Armand-Jean du Plessis, 1585-1642, Cardinal de Richelieu 1622' +p157982 +sg25270 +S'Jean Warin' +p157983 +sg25273 +S'bronze' +p157984 +sg25275 +S'1630' +p157985 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000642a.jpg' +p157986 +sg25267 +g27 +sa(dp157987 +g25268 +S'The Market Woman' +p157988 +sg25270 +S'Sebald Beham' +p157989 +sg25273 +S'engraving' +p157990 +sg25275 +S'unknown date\n' +p157991 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a86b.jpg' +p157992 +sg25267 +g27 +sa(dp157993 +g25268 +S'Fortune Chained to a Chariot Carrying Fame and France [reverse]' +p157994 +sg25270 +S'Jean Warin' +p157995 +sg25273 +S'bronze' +p157996 +sg25275 +S'1630' +p157997 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006429.jpg' +p157998 +sg25267 +g27 +sa(dp157999 +g25268 +S'The Entombment' +p158000 +sg25270 +S'Andrea Briosco, called Riccio' +p158001 +sg25273 +S'bronze' +p158002 +sg25275 +S'unknown date\n' +p158003 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d7c.jpg' +p158004 +sg25267 +S"In the north Italian city of Padua, a major center of Renaissance bronze production, Riccio\nstood out as the most brilliant master. The Entombment of Christ is a recurring subject in his\nreliefs. This is his largest single relief and his masterpiece on the theme.\n Riccio modeled his crowd of mourners in such high relief that many emerge almost as\nseparate statuettes. To an astonishing degree, space penetrates the crowd and the landscape,\nflowing behind the freestanding trees. People of all ages join in the funeral procession, their faces\nand costumes rendered with strength and precision. Their expressions range from stoic sorrow to\nwild outbursts, with streaming hair, gesticulating arms, and mouths open in howls. These frantic\nattitudes had precedents in the art of antiquity and in the works of Donatello and his pupil\nBellano that Riccio could see in Padua. The scene also recalls the funeral of the mythological\nhero Meleager, depicted on many Roman sarcophagi and recommended to artists by the theorist\nAlberti as a convincing portrayal of a dead man weighing down his bearers.\n The man just in front of Christ's feet carries an urn inscribed AERDNA,\n"Andrea" spelled backwards. The presence of this barely disguised signature has led\nto speculation that the artist intended this relief to mark his own tomb.\n " +p158005 +sa(dp158006 +g25268 +S'Saint Jerome' +p158007 +sg25270 +S'Francesco di Giorgio Martini' +p158008 +sg25273 +S'bronze' +p158009 +sg25275 +S'c. 1477' +p158010 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d7a.jpg' +p158011 +sg25267 +g27 +sa(dp158012 +g25273 +S'Italian, c. 1429 - 1464' +p158013 +sg25267 +g27 +sg25275 +S'(related artist)' +p158014 +sg25268 +S'Saint John the Baptist' +p158015 +sg25270 +S'Artist Information (' +p158016 +sa(dp158017 +g25268 +S'The Spinario' +p158018 +sg25270 +S'Artist Information (' +p158019 +sg25273 +S'Italian, active 1496 - 1525/1538' +p158020 +sg25275 +S'(related artist)' +p158021 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d87.jpg' +p158022 +sg25267 +g27 +sa(dp158023 +g25268 +S'A Dancing Faun' +p158024 +sg25270 +S'Giovanni Francesco Rustici' +p158025 +sg25273 +S'bronze' +p158026 +sg25275 +S'model c. 1515, cast possibly mid-16th century' +p158027 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005faa.jpg' +p158028 +sg25267 +g27 +sa(dp158029 +g25273 +S'bronze' +p158030 +sg25267 +g27 +sg25275 +S'15th century' +p158031 +sg25268 +S'Saint George and the Dragon' +p158032 +sg25270 +S'North Italian 15th Century' +p158033 +sa(dp158034 +g25268 +S'Saint Sebastian' +p158035 +sg25270 +S'Severo da Ravenna' +p158036 +sg25273 +S'bronze' +p158037 +sg25275 +S'c. 1500/1509' +p158038 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b0b.jpg' +p158039 +sg25267 +g27 +sa(dp158040 +g25273 +S'Italian, 1470 - 1532' +p158041 +sg25267 +g27 +sg25275 +S'(related artist)' +p158042 +sg25268 +S'Judith with the Head of Holofernes' +p158043 +sg25270 +S'Artist Information (' +p158044 +sa(dp158045 +g25268 +S'Arion Seated on a Shell' +p158046 +sg25270 +S'Severo da Ravenna' +p158047 +sg25273 +S', first quarter 16th century' +p158048 +sg25275 +S'\n' +p158049 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00065/a0006513.jpg' +p158050 +sg25267 +g27 +sa(dp158051 +g25268 +S'Medal of King Ferdinand of Hungary and Bohemia' +p158052 +sg25270 +S'Sebald Beham' +p158053 +sg25273 +S'engraving' +p158054 +sg25275 +S'unknown date\n' +p158055 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a878.jpg' +p158056 +sg25267 +g27 +sa(dp158057 +g25273 +S'bronze' +p158058 +sg25267 +g27 +sg25275 +S'unknown date\n' +p158059 +sg25268 +S'Pomona' +p158060 +sg25270 +S'Andrea Briosco, called Riccio' +p158061 +sa(dp158062 +g25273 +S'overall: 21.6 x 13.1 x 12.6 cm (8 1/2 x 5 3/16 x 4 15/16 in.)' +p158063 +sg25267 +g27 +sg25275 +S'\nbronze' +p158064 +sg25268 +S'A Seated Nymph' +p158065 +sg25270 +S'North Italian 16th Century' +p158066 +sa(dp158067 +g25273 +S'height: 16 3/16 in. (41.15 cm)' +p158068 +sg25267 +g27 +sg25275 +S'\nbronze' +p158069 +sg25268 +S'Saint Sebastian' +p158070 +sg25270 +S'Paduan 16th Century' +p158071 +sa(dp158072 +g25273 +S'overall: 13.4 x 5.1 x 4.5 cm (5 1/4 x 2 x 1 3/4 in.)' +p158073 +sg25267 +g27 +sg25275 +S'\nbronze' +p158074 +sg25268 +S'Fortuna' +p158075 +sg25270 +S'Venetian 16th Century' +p158076 +sa(dp158077 +g25268 +S'Woman Cutting Her Nails' +p158078 +sg25270 +S'Artist Information (' +p158079 +sg25273 +S'French, 1540 - 1611' +p158080 +sg25275 +S'(related artist)' +p158081 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002da2.jpg' +p158082 +sg25267 +g27 +sa(dp158083 +g25273 +S', second quarter 16th century' +p158084 +sg25267 +g27 +sg25275 +S'\n' +p158085 +sg25268 +S'Male Nude with Raised Left Arm' +p158086 +sg25270 +S'Florentine 16th Century' +p158087 +sa(dp158088 +g25268 +S'Bacchus' +p158089 +sg25270 +S'Artist Information (' +p158090 +sg25273 +S'Italian, 1475 - 1564' +p158091 +sg25275 +S'(artist after)' +p158092 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002da8.jpg' +p158093 +sg25267 +g27 +sa(dp158094 +g25273 +S'overall: 10.3 x 3.2 x 6.1 cm (4 1/16 x 1 1/4 x 2 3/8 in.)' +p158095 +sg25267 +g27 +sg25275 +S'\ngilt bronze' +p158096 +sg25268 +S'Kneeling Supplicant' +p158097 +sg25270 +S'Spanish 16th Century' +p158098 +sa(dp158099 +g25273 +S'overall: 9.8 x 3.2 x 4 cm (3 7/8 x 1 1/4 x 1 9/16 in.)' +p158100 +sg25267 +g27 +sg25275 +S'\ngilt bronze' +p158101 +sg25268 +S'Kneeling Supplicant' +p158102 +sg25270 +S'Spanish 16th Century' +p158103 +sa(dp158104 +g25273 +S'overall: 20.8 x 10.5 x 7.2 cm (8 3/16 x 4 1/8 x 2 13/16 in.)' +p158105 +sg25267 +g27 +sg25275 +S'\nbronze' +p158106 +sg25268 +S'Charity' +p158107 +sg25270 +S'Venetian 16th Century' +p158108 +sa(dp158109 +g25268 +S'Adam Seated' +p158110 +sg25270 +S'Sebald Beham' +p158111 +sg25273 +S'engraving' +p158112 +sg25275 +S'1519' +p158113 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a812.jpg' +p158114 +sg25267 +g27 +sa(dp158115 +g25273 +S'bronze' +p158116 +sg25267 +g27 +sg25275 +S'19th century' +p158117 +sg25268 +S'The Virgin of the Annunciation' +p158118 +sg25270 +S'French 19th Century' +p158119 +sa(dp158120 +g25273 +S'overall: 230 x 113 x 102 cm (90 9/16 x 44 1/2 x 40 3/16 in.)' +p158121 +sg25267 +g27 +sg25275 +S'\nbronze//Black lacquer over red-brown bronze, parcel gilt' +p158122 +sg25268 +S'Venus' +p158123 +sg25270 +S'South German 16th Century' +p158124 +sa(dp158125 +g25273 +S'Italian, 1470 - 1532' +p158126 +sg25267 +g27 +sg25275 +S'(artist after)' +p158127 +sg25268 +S'Bound Satyr' +p158128 +sg25270 +S'Artist Information (' +p158129 +sa(dp158130 +g25273 +S'bronze' +p158131 +sg25267 +g27 +sg25275 +S'unknown date\n' +p158132 +sg25268 +S'Bound Satyr' +p158133 +sg25270 +S'Andrea Briosco, called Riccio' +p158134 +sa(dp158135 +g25273 +S'overall: 6.3 x 3.7 x 5.5 cm (2 1/2 x 1 7/16 x 2 3/16 in.)' +p158136 +sg25267 +g27 +sg25275 +S'\nbronze' +p158137 +sg25268 +S'Seated Boy Holding a Jar (an Inkwell ?)' +p158138 +sg25270 +S'North Italian 16th Century' +p158139 +sa(dp158140 +g25268 +S'Inkwell in the Form of a Child Carrying a Shell' +p158141 +sg25270 +S'Artist Information (' +p158142 +sg25273 +S'Italian, active 1496 - 1525/1538' +p158143 +sg25275 +S'(related artist)' +p158144 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063d1.jpg' +p158145 +sg25267 +g27 +sa(dp158146 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p158147 +sg25268 +S'Cupid with Raised Arms' +p158148 +sg25270 +S'Artist Information (' +p158149 +sa(dp158150 +g25273 +S'overall: 9.6 x 4.6 x 2.5 cm (3 3/4 x 1 13/16 x 1 in.)' +p158151 +sg25267 +g27 +sg25275 +S'\nbronze' +p158152 +sg25268 +S'Cupid' +p158153 +sg25270 +S'Italian 15th Century' +p158154 +sa(dp158155 +g25273 +S'bronze' +p158156 +sg25267 +g27 +sg25275 +S'mid 15th century' +p158157 +sg25268 +S'Winged Boy with Hands Raised' +p158158 +sg25270 +S'Florentine 15th Century' +p158159 +sa(dp158160 +g25273 +S'bronze' +p158161 +sg25267 +g27 +sg25275 +S'mid 15th century' +p158162 +sg25268 +S'Wreathed Boy with Hands Raised' +p158163 +sg25270 +S'Florentine 15th Century' +p158164 +sa(dp158165 +g25268 +S'Achilles and Hector' +p158166 +sg25270 +S'Sebald Beham' +p158167 +sg25273 +S'engraving' +p158168 +sg25275 +S'unknown date\n' +p158169 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7f4.jpg' +p158170 +sg25267 +g27 +sa(dp158171 +g25273 +S'bronze' +p158172 +sg25267 +g27 +sg25275 +S'first half 16th century' +p158173 +sg25268 +S'A Child with a Crow' +p158174 +sg25270 +S'German 16th Century' +p158175 +sa(dp158176 +g25273 +S'overall: 6.4 x 4.1 x 4 cm (2 1/2 x 1 5/8 x 1 9/16 in.)' +p158177 +sg25267 +g27 +sg25275 +S'\nbronze' +p158178 +sg25268 +S'Three Cupids' +p158179 +sg25270 +S'Flemish 16th Century' +p158180 +sa(dp158181 +g25273 +S'German, c. 1485 - 1546' +p158182 +sg25267 +g27 +sg25275 +S'(related artist)' +p158183 +sg25268 +S'A Child on a Dolphin' +p158184 +sg25270 +S'Artist Information (' +p158185 +sa(dp158186 +g25273 +S'overall: 10.8 x 3.4 x 2.6 cm (4 1/4 x 1 5/16 x 1 in.)' +p158187 +sg25267 +g27 +sg25275 +S'\nbronze' +p158188 +sg25268 +S'A Child with a Puppy' +p158189 +sg25270 +S'Italian 16th Century' +p158190 +sa(dp158191 +g25273 +S'bronze//Medium brown patina' +p158192 +sg25267 +g27 +sg25275 +S'first quarter 16th century' +p158193 +sg25268 +S'A Child Standing' +p158194 +sg25270 +S'Severo da Ravenna' +p158195 +sa(dp158196 +g25273 +S', first quarter 16th century' +p158197 +sg25267 +g27 +sg25275 +S'\n' +p158198 +sg25268 +S'Standing Boy' +p158199 +sg25270 +S'Severo da Ravenna' +p158200 +sa(dp158201 +g25273 +S'bronze//Heavy black lacquer rubbed locally over medium brown bronze' +p158202 +sg25267 +g27 +sg25275 +S'first quarter 16th century' +p158203 +sg25268 +S'A Child Standing' +p158204 +sg25270 +S'Severo da Ravenna' +p158205 +sa(dp158206 +g25273 +S'overall: 4.5 x 3.2 x 3.4 cm (1 3/4 x 1 1/4 x 1 5/16 in.)' +p158207 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown bronze originally fully gilded (gilding much rubbed)' +p158208 +sg25268 +S'A Triton' +p158209 +sg25270 +S'Italian 16th Century' +p158210 +sa(dp158211 +g25273 +S'overall: 6.2 x 3.4 x 1.9 cm (2 7/16 x 1 5/16 x 3/4 in.)' +p158212 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p158213 +sg25268 +S'Standing Child with Raised Left Arm' +p158214 +sg25270 +S'Italian 16th Century' +p158215 +sa(dp158216 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p158217 +sg25268 +S'Child Clasping a Bird' +p158218 +sg25270 +S'Artist Information (' +p158219 +sa(dp158220 +g25268 +S'Adam Standing' +p158221 +sg25270 +S'Sebald Beham' +p158222 +sg25273 +S'engraving' +p158223 +sg25275 +S'1524' +p158224 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a813.jpg' +p158225 +sg25267 +g27 +sa(dp158226 +g25273 +S'Italian, active 1608/1665' +p158227 +sg25267 +g27 +sg25275 +S'(related artist)' +p158228 +sg25268 +S'Cupid on a Dolphin' +p158229 +sg25270 +S'Artist Information (' +p158230 +sa(dp158231 +g25268 +S'Winged Child Carrying a Torch' +p158232 +sg25270 +S'Roman 1st Century B.C./1st Century A.D.' +p158233 +sg25273 +S'overall: 10.6 x 3.4 x 3.5 cm (4 3/16 x 1 5/16 x 1 3/8 in.)\r\naccessory size (height): 2.4 cm (15/16 in.)' +p158234 +sg25275 +S'\nbronze//Black lacquer (rubbed on torso) over red-brown bronze, copper base filled with lead' +p158235 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000559f.jpg' +p158236 +sg25267 +g27 +sa(dp158237 +g25268 +S'Striding Cupid' +p158238 +sg25270 +S'Artist Information (' +p158239 +sg25273 +g27 +sg25275 +S'(sculptor)' +p158240 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d94.jpg' +p158241 +sg25267 +g27 +sa(dp158242 +g25273 +S'bronze//Medium brown patina' +p158243 +sg25267 +g27 +sg25275 +S'c. 1500/1509' +p158244 +sg25268 +S'The Christ Child' +p158245 +sg25270 +S'Severo da Ravenna' +p158246 +sa(dp158247 +g25268 +S'Head of a Moor' +p158248 +sg25270 +S'Venetian 16th Century' +p158249 +sg25273 +S'overall: 5.7 x 3.7 x 4.6 cm (2 1/4 x 1 7/16 x 1 13/16 in.)' +p158250 +sg25275 +S'\ncast iron' +p158251 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6c3.jpg' +p158252 +sg25267 +g27 +sa(dp158253 +g25273 +S'bronze' +p158254 +sg25267 +g27 +sg25275 +S'unknown date\n' +p158255 +sg25268 +S'Bust of a Youth (Saint John?)' +p158256 +sg25270 +S'Andrea Briosco, called Riccio' +p158257 +sa(dp158258 +g25273 +S'bronze' +p158259 +sg25267 +g27 +sg25275 +S'unknown date\n' +p158260 +sg25268 +S'The Bust of a Man (Vulcan?)' +p158261 +sg25270 +S'Andrea Briosco, called Riccio' +p158262 +sa(dp158263 +g25273 +S'bronze' +p158264 +sg25267 +g27 +sg25275 +S'unknown date\n' +p158265 +sg25268 +S'Head of a Faun' +p158266 +sg25270 +S'Andrea Briosco, called Riccio' +p158267 +sa(dp158268 +g25273 +S'overall: 7.8 x 5.9 x 10.2 cm (3 1/16 x 2 5/16 x 4 in.)' +p158269 +sg25267 +g27 +sg25275 +S'\nbronze' +p158270 +sg25268 +S"Lamp in the Form of a Satyr's Head" +p158271 +sg25270 +S'Paduan 16th Century' +p158272 +sa(dp158273 +g25273 +S'overall (diameter): 20.8 cm (8 3/16 in.)' +p158274 +sg25267 +g27 +sg25275 +S'\nrepouss? copper with extensive traces of gilding' +p158275 +sg25268 +S"A Child's Head" +p158276 +sg25270 +S'Italian 17th Century' +p158277 +sa(dp158278 +g25268 +S'Eve Standing' +p158279 +sg25270 +S'Sebald Beham' +p158280 +sg25273 +S'engraving' +p158281 +sg25275 +S'1523' +p158282 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a814.jpg' +p158283 +sg25267 +g27 +sa(dp158284 +g25268 +S'Saint Simeon of Polirone and the Miracle of the Stag' +p158285 +sg25270 +S'Bartolomeo Spani' +p158286 +sg25273 +S'bronze//Medium brown patina' +p158287 +sg25275 +S'probably c. 1516' +p158288 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a0006625.jpg' +p158289 +sg25267 +g27 +sa(dp158290 +g25268 +S'Writing Casket' +p158291 +sg25270 +S'Paduan 16th Century' +p158292 +sg25273 +S'overall: 7.8 x 20.3 x 12 cm (3 1/16 x 8 x 4 3/4 in.)' +p158293 +sg25275 +S'\nbronze' +p158294 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d934.jpg' +p158295 +sg25267 +g27 +sa(dp158296 +g25268 +S'A Sand-Box' +p158297 +sg25270 +S'Paduan 16th Century' +p158298 +sg25273 +S'overall: 8 x 10.6 x 9.4 cm (3 1/8 x 4 3/16 x 3 11/16 in.)' +p158299 +sg25275 +S'\nbronze//Black lacquer over medium brown bronze' +p158300 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6c8.jpg' +p158301 +sg25267 +g27 +sa(dp158302 +g25273 +S'Italian, 1470 - 1532' +p158303 +sg25267 +g27 +sg25275 +S'(related artist)' +p158304 +sg25268 +S'A Sand-Box (Triangular)' +p158305 +sg25270 +S'Artist Information (' +p158306 +sa(dp158307 +g25273 +S'overall: 4.7 x 17.2 x 7.5 cm (1 7/8 x 6 3/4 x 2 15/16 in.)' +p158308 +sg25267 +g27 +sg25275 +S'\nbronze//Black lacquer over medium brown bronze' +p158309 +sg25268 +S'A Box' +p158310 +sg25270 +S'Paduan 16th Century' +p158311 +sa(dp158312 +g25273 +S'overall: 12.45 x 21.5 x 2.56 cm (4 7/8 x 8 7/16 x 1 in.)\r\noverall (central panel, to inside edge of border filletq): 6.8 x 15.9 cm (2 11/16 x 6 1/4 in.)' +p158313 +sg25267 +g27 +sg25275 +S'\nbronze//Very dark brown lacquer over red-brown bronze' +p158314 +sg25268 +S'Lid of a Box' +p158315 +sg25270 +S'Paduan 16th Century' +p158316 +sa(dp158317 +g25273 +S'bronze' +p158318 +sg25267 +g27 +sg25275 +S'c. 1500' +p158319 +sg25268 +S'A Three Wick Lamp with Bacchic Scenes' +p158320 +sg25270 +S'Andrea Briosco, called Riccio' +p158321 +sa(dp158322 +g25273 +S'overall: 9.2 x 11.8 x 7.3 cm (3 5/8 x 4 5/8 x 2 7/8 in.)' +p158323 +sg25267 +g27 +sg25275 +S'\nbronze//Black lacquer over medium brown bronze' +p158324 +sg25268 +S'A Lamp' +p158325 +sg25270 +S'Paduan 16th Century' +p158326 +sa(dp158327 +g25273 +S'bronze' +p158328 +sg25267 +g27 +sg25275 +S'1525/1550' +p158329 +sg25268 +S"Lamp in the Form of an Ass' Head" +p158330 +sg25270 +S'Paduan 16th Century' +p158331 +sa(dp158332 +g25273 +S'overall: 3.3 x 14.9 x 5.5 cm (1 1/4 x 5 7/8 x 2 1/8 in.)' +p158333 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown bronze' +p158334 +sg25268 +S'A Lamp' +p158335 +sg25270 +S'Paduan 16th Century' +p158336 +sa(dp158337 +g25268 +S'Expulsion from Paradise' +p158338 +sg25270 +S'Sebald Beham' +p158339 +sg25273 +S'engraving' +p158340 +sg25275 +S'1543' +p158341 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a819.jpg' +p158342 +sg25267 +g27 +sa(dp158343 +g25268 +S'Altar-Candlestick with Shield of Arms of the Garzoni of Venice' +p158344 +sg25270 +S'Venetian 16th Century' +p158345 +sg25273 +S'overall: 57.2 x 24.1 x 20.5 cm (22 1/2 x 9 1/2 x 8 1/16 in.)' +p158346 +sg25275 +S'\nbronze//Dark brown bronze' +p158347 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010d/a0010da8.jpg' +p158348 +sg25267 +g27 +sa(dp158349 +g25268 +S'Altar-Candlestick with Shield of Arms of the Garzoni of Venice' +p158350 +sg25270 +S'Venetian 16th Century' +p158351 +sg25273 +S'overall: 57.2 x 24.1 x 20.5 cm (22 1/2 x 9 1/2 x 8 1/16 in.)' +p158352 +sg25275 +S'\nbronze//Dark brown bronze' +p158353 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010d/a0010da9.jpg' +p158354 +sg25267 +g27 +sa(dp158355 +g25268 +S'The Capitoline Wolf Suckling Romulus and Remus' +p158356 +sg25270 +S'Florentine 15th Century' +p158357 +sg25273 +S'bronze//Black lacquer over medium brown bronze' +p158358 +sg25275 +S'15th century' +p158359 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063d2.jpg' +p158360 +sg25267 +g27 +sa(dp158361 +g25268 +S'Pacing Female Panther' +p158362 +sg25270 +S'Artist Information (' +p158363 +sg25273 +g27 +sg25275 +S'(sculptor)' +p158364 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063d3.jpg' +p158365 +sg25267 +g27 +sa(dp158366 +g25268 +S'A Sea Monster' +p158367 +sg25270 +S'Artist Information (' +p158368 +sg25273 +S'Italian, active 1496 - 1525/1538' +p158369 +sg25275 +S'(related artist)' +p158370 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a00055a2.jpg' +p158371 +sg25267 +g27 +sa(dp158372 +g25268 +S'A Sea Monster' +p158373 +sg25270 +S'Artist Information (' +p158374 +sg25273 +S'Italian, active 1496 - 1525/1538' +p158375 +sg25275 +S'(related artist)' +p158376 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066fd.jpg' +p158377 +sg25267 +g27 +sa(dp158378 +g25273 +S'bronze with copper inlay, lined in lead//Black lacquer (much rubbed) over yellowish bronze' +p158379 +sg25267 +g27 +sg25275 +S'16th/19th century' +p158380 +sg25268 +S'Object with Sphinx Head (Furniture Mount?)' +p158381 +sg25270 +S'Italian 16th/19th Century' +p158382 +sa(dp158383 +g25273 +S'bronze' +p158384 +sg25267 +g27 +sg25275 +S'unknown date\n' +p158385 +sg25268 +S'A Goat' +p158386 +sg25270 +S'Andrea Briosco, called Riccio' +p158387 +sa(dp158388 +g25268 +S'A Dog Scratching' +p158389 +sg25270 +S'Georg Schweigger' +p158390 +sg25273 +S', 1630s' +p158391 +sg25275 +S'\n' +p158392 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002da5.jpg' +p158393 +sg25267 +g27 +sa(dp158394 +g25273 +S'overall: 9.1 x 5.7 x 7.2 cm (3 9/16 x 2 1/4 x 2 13/16 in.)' +p158395 +sg25267 +g27 +sg25275 +S'\nbronze//Black lacquer over medium brown bronze' +p158396 +sg25268 +S'A Dog' +p158397 +sg25270 +S'Paduan 16th Century' +p158398 +sa(dp158399 +g25268 +S'Lot and His Daughters' +p158400 +sg25270 +S'Sebald Beham' +p158401 +sg25273 +S'engraving' +p158402 +sg25275 +S'unknown date\n' +p158403 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a81a.jpg' +p158404 +sg25267 +g27 +sa(dp158405 +g25273 +S'overall (height x length): 4.4 x 6 cm (1 3/4 x 2 3/8 in.)' +p158406 +sg25267 +g27 +sg25275 +S'\nbronze//Rich brown bronze' +p158407 +sg25268 +S"A Ram's Head" +p158408 +sg25270 +S'Paduan 16th Century' +p158409 +sa(dp158410 +g25273 +S'overall: 6.6 x 2.4 x 2.6 cm (2 5/8 x 15/16 x 1 in.)' +p158411 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown bronze' +p158412 +sg25268 +S'A Bear' +p158413 +sg25270 +S'German 16th Century' +p158414 +sa(dp158415 +g25273 +S'overall: 7.8 x 4.5 x 4.7 cm (3 1/16 x 1 3/4 x 1 7/8 in.)' +p158416 +sg25267 +g27 +sg25275 +S'\nbronze//Very dark patina' +p158417 +sg25268 +S'Small Vase in the Form of a Monkey' +p158418 +sg25270 +S'Paduan 16th Century' +p158419 +sa(dp158420 +g25273 +S'overall: 8.8 x 3.3 x 6.1 cm (3 7/16 x 1 5/16 x 2 3/8 in.)' +p158421 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p158422 +sg25268 +S'A Cock' +p158423 +sg25270 +S'Italian 16th Century' +p158424 +sa(dp158425 +g25273 +S'overall: 7.3 x 6.3 x 9.5 cm (2 7/8 x 2 1/2 x 3 3/4 in.)' +p158426 +sg25267 +g27 +sg25275 +S'\nbronze with gilding//Dark patina, eyes gilded' +p158427 +sg25268 +S'A Crow' +p158428 +sg25270 +S'Italian 16th Century' +p158429 +sa(dp158430 +g25268 +S'A Bird' +p158431 +sg25270 +S'Florentine 16th Century' +p158432 +sg25273 +S', late 16th century' +p158433 +sg25275 +S'\n' +p158434 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002da6.jpg' +p158435 +sg25267 +g27 +sa(dp158436 +g25268 +S'Box in the Form of a Crab' +p158437 +sg25270 +S'Paduan 16th Century' +p158438 +sg25273 +S'overall: 4.8 x 17.1 x 9.3 cm (1 7/8 x 6 3/4 x 3 11/16 in.)' +p158439 +sg25275 +S'\nbronze' +p158440 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a00055a0.jpg' +p158441 +sg25267 +g27 +sa(dp158442 +g25268 +S'A Crab on a Toad' +p158443 +sg25270 +S'Paduan 16th Century' +p158444 +sg25273 +S'bronze' +p158445 +sg25275 +S'early 16th century' +p158446 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005591.jpg' +p158447 +sg25267 +g27 +sa(dp158448 +g25268 +S'A Toad with a Toad' +p158449 +sg25270 +S'Paduan 16th Century' +p158450 +sg25273 +S'overall: 6 x 13.1 x 8.6 cm (2 3/8 x 5 3/16 x 3 3/8 in.)' +p158451 +sg25275 +S'\nbronze//Medium brown patina' +p158452 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d8c.jpg' +p158453 +sg25267 +g27 +sa(dp158454 +g25268 +S'Inkwell in the Form of a Frog beside a Tree Stump' +p158455 +sg25270 +S'Paduan 16th Century' +p158456 +sg25273 +S'bronze' +p158457 +sg25275 +S'16th century' +p158458 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066fe.jpg' +p158459 +sg25267 +g27 +sa(dp158460 +g25268 +S'Judith and Her Servant Standing' +p158461 +sg25270 +S'Sebald Beham' +p158462 +sg25273 +S'engraving' +p158463 +sg25275 +S'unknown date\n' +p158464 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a81c.jpg' +p158465 +sg25267 +g27 +sa(dp158466 +g25273 +S'overall: 6.1 x 7.9 x 8 cm (2 3/8 x 3 1/8 x 3 1/8 in.)' +p158467 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p158468 +sg25268 +S'A Toad' +p158469 +sg25270 +S'Paduan 16th Century' +p158470 +sa(dp158471 +g25273 +S'overall: 6.8 x 12.8 x 10.8 cm (2 11/16 x 5 1/16 x 4 1/4 in.)' +p158472 +sg25267 +g27 +sg25275 +S'\nbronze' +p158473 +sg25268 +S'A Large Toad' +p158474 +sg25270 +S'Paduan 16th Century' +p158475 +sa(dp158476 +g25268 +S'A Frog' +p158477 +sg25270 +S'Paduan 16th Century' +p158478 +sg25273 +S'overall: 7 x 14.6 x 7.7 cm (2 3/4 x 5 3/4 x 3 1/16 in.)' +p158479 +sg25275 +S'\nbronze//Medium brown patina' +p158480 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00043/a00043f5.jpg' +p158481 +sg25267 +g27 +sa(dp158482 +g25273 +S'overall: 2.3 x 6.5 x 5.9 cm (7/8 x 2 9/16 x 2 5/16 in.)' +p158483 +sg25267 +g27 +sg25275 +S'\nbronze' +p158484 +sg25268 +S'A Toad' +p158485 +sg25270 +S'Paduan 16th Century' +p158486 +sa(dp158487 +g25273 +S'overall: 4.5 x 10.5 x 9 cm (1 3/4 x 4 1/8 x 3 9/16 in.)' +p158488 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p158489 +sg25268 +S'A Frog' +p158490 +sg25270 +S'Paduan 16th Century' +p158491 +sa(dp158492 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p158493 +sg25268 +S'A Bowl' +p158494 +sg25270 +S'Artist Information (' +p158495 +sa(dp158496 +g25268 +S'A Bowl' +p158497 +sg25270 +S'Veneto-Islamic 16th Century' +p158498 +sg25273 +S'overall: 5.2 x 14.2 cm (2 1/16 x 5 9/16 in.)' +p158499 +sg25275 +S'\nbronze//Medium brown patina' +p158500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a00055ea.jpg' +p158501 +sg25267 +g27 +sa(dp158502 +g25273 +S'bronze//Medium brown bronze' +p158503 +sg25267 +g27 +sg25275 +S'16th century' +p158504 +sg25268 +S'A Mortar' +p158505 +sg25270 +S'Venetian 16th Century' +p158506 +sa(dp158507 +g25273 +S'overall: 12.8 x 15.9 cm (5 1/16 x 6 1/4 in.)' +p158508 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown bronze' +p158509 +sg25268 +S'A Mortar' +p158510 +sg25270 +S'Italian 16th Century' +p158511 +sa(dp158512 +g25273 +S'overall: 13.3 x 17.7 cm (5 1/4 x 6 15/16 in.)' +p158513 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown bronze' +p158514 +sg25268 +S'A Mortar' +p158515 +sg25270 +S'Italian 16th Century' +p158516 +sa(dp158517 +g25268 +S'Judith Walking to the Left, and Her Servant' +p158518 +sg25270 +S'Sebald Beham' +p158519 +sg25273 +S'engraving' +p158520 +sg25275 +S'unknown date\n' +p158521 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a81e.jpg' +p158522 +sg25267 +g27 +sa(dp158523 +g25268 +S'Mortar with Rope-shaped Handle' +p158524 +sg25270 +S'Italian 16th Century' +p158525 +sg25273 +S'overall: 15.3 x 17 cm (6 x 6 11/16 in.)' +p158526 +sg25275 +S'\nbronze//Medium brown patina' +p158527 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8e5.jpg' +p158528 +sg25267 +g27 +sa(dp158529 +g25273 +S'overall: 10.2 x 13.2 cm (4 x 5 3/16 in.)' +p158530 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown bronze' +p158531 +sg25268 +S'A Mortar' +p158532 +sg25270 +S'Italian 16th Century' +p158533 +sa(dp158534 +g25273 +S'overall: 9.5 x 11.8 cm (3 3/4 x 4 5/8 in.)' +p158535 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown bronze' +p158536 +sg25268 +S'A Mortar' +p158537 +sg25270 +S'Italian 16th Century' +p158538 +sa(dp158539 +g25273 +S'bronze//Medium brown bronze' +p158540 +sg25267 +g27 +sg25275 +S'16th century' +p158541 +sg25268 +S'Mortar with Shields of Badoer Arms' +p158542 +sg25270 +S'Venetian 16th Century' +p158543 +sa(dp158544 +g25273 +S'overall: 8.7 x 10 cm (3 7/16 x 3 15/16 in.)' +p158545 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown bronze' +p158546 +sg25268 +S'A Mortar' +p158547 +sg25270 +S'Italian 16th Century' +p158548 +sa(dp158549 +g25273 +S'overall: 3.9 x 6.5 cm (1 9/16 x 2 9/16 in.)' +p158550 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p158551 +sg25268 +S'A Mortar' +p158552 +sg25270 +S'Italian 16th Century' +p158553 +sa(dp158554 +g25273 +S'overall: 3.8 x 6.1 cm (1 1/2 x 2 3/8 in.)' +p158555 +sg25267 +g27 +sg25275 +S'\nbronze//Light bronze' +p158556 +sg25268 +S'A Mortar' +p158557 +sg25270 +S'Italian 16th Century' +p158558 +sa(dp158559 +g25273 +S'overall: 4.5 x 6.8 cm (1 3/4 x 2 11/16 in.)' +p158560 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p158561 +sg25268 +S'A Mortar' +p158562 +sg25270 +S'Italian 16th Century' +p158563 +sa(dp158564 +g25273 +S'overall: 8.1 x 11.6 cm (3 3/16 x 4 9/16 in.)' +p158565 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p158566 +sg25268 +S'A Mortar' +p158567 +sg25270 +S'Italian 16th Century' +p158568 +sa(dp158569 +g25273 +S'overall: 8.7 x 10.2 cm (3 7/16 x 4 in.) gross weight: 29 gr' +p158570 +sg25267 +g27 +sg25275 +S'\nbronze//Yellow-brown bronze with medium brown patina' +p158571 +sg25268 +S'A Mortar' +p158572 +sg25270 +S'Italian 16th Century' +p158573 +sa(dp158574 +g25268 +S'Judith Sitting in a Window' +p158575 +sg25270 +S'Sebald Beham' +p158576 +sg25273 +S'engraving' +p158577 +sg25275 +S'1547' +p158578 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a815.jpg' +p158579 +sg25267 +g27 +sa(dp158580 +g25268 +S'Table Bell with Portrait of Lodovico Maria Sforza, 1451-1508, called Il Moro, 7th Duke of Milan 1494-1508' +p158581 +sg25270 +S'Zuanne I (Zanin) Alberghetti' +p158582 +sg25273 +S'bronze//Medium brown patina' +p158583 +sg25275 +S'possibly c. 1494/1499' +p158584 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d9b.jpg' +p158585 +sg25267 +g27 +sa(dp158586 +g25273 +S'overall: 14.9 x 10.5 cm (5 7/8 x 4 1/8 in.)' +p158587 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p158588 +sg25268 +S'Table Bell' +p158589 +sg25270 +S'Italian 16th Century' +p158590 +sa(dp158591 +g25273 +S'bronze//Medium brown patina' +p158592 +sg25267 +g27 +sg25275 +S'16th century' +p158593 +sg25268 +S'Table Bell' +p158594 +sg25270 +S'Venetian 16th Century' +p158595 +sa(dp158596 +g25273 +S'overall: 12.8 x 10.5 cm (5 1/16 x 4 1/8 in.)' +p158597 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p158598 +sg25268 +S'Table Bell' +p158599 +sg25270 +S'Italian 16th Century' +p158600 +sa(dp158601 +g25273 +S'overall: 14.2 x 9.6 cm (5 9/16 x 3 3/4 in.)' +p158602 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p158603 +sg25268 +S'Table Bell' +p158604 +sg25270 +S'North Italian 16th Century' +p158605 +sa(dp158606 +g25273 +S'bronze//Medium brown patina' +p158607 +sg25267 +g27 +sg25275 +S'16th century' +p158608 +sg25268 +S'Table Bell' +p158609 +sg25270 +S'Venetian 16th Century' +p158610 +sa(dp158611 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p158612 +sg25268 +S'Table Bell' +p158613 +sg25270 +S'Artist Information (' +p158614 +sa(dp158615 +g25273 +S'overall: 11.7 x 7.3 cm (4 5/8 x 2 7/8 in.)' +p158616 +sg25267 +g27 +sg25275 +S'\nbronze//Very dark brown patina' +p158617 +sg25268 +S'Table Bell (Orpheus)' +p158618 +sg25270 +S'North Italian 16th Century' +p158619 +sa(dp158620 +g25268 +S'Table Bell' +p158621 +sg25270 +S'Flemish 16th Century' +p158622 +sg25273 +S'overall: 15.9 x 10.3 cm (6 1/4 x 4 1/16 in.)' +p158623 +sg25275 +S'\nbronze//Medium brown patina' +p158624 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005edf.jpg' +p158625 +sg25267 +g27 +sa(dp158626 +g25268 +S'Door Knocker' +p158627 +sg25270 +S'Artist Information (' +p158628 +sg25273 +g27 +sg25275 +S'(sculptor)' +p158629 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8e6.jpg' +p158630 +sg25267 +g27 +sa(dp158631 +g25268 +S"Joseph and Potiphar's Wife" +p158632 +sg25270 +S'Sebald Beham' +p158633 +sg25273 +S'engraving' +p158634 +sg25275 +S'1544' +p158635 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a816.jpg' +p158636 +sg25267 +g27 +sa(dp158637 +g25268 +S'Door Knocker' +p158638 +sg25270 +S'Italian 16th Century' +p158639 +sg25273 +S'overall: 15.9 x 11.2 x 3 cm (6 1/4 x 4 7/16 x 1 3/16 in.)' +p158640 +sg25275 +S'\nbronze//Medium brown patina' +p158641 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063ca.jpg' +p158642 +sg25267 +g27 +sa(dp158643 +g25273 +S'overall: 18.5 x 12.4 x 2.7 cm (7 5/16 x 4 7/8 x 1 1/16 in.)' +p158644 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p158645 +sg25268 +S'Door Knocker' +p158646 +sg25270 +S'Italian 16th Century' +p158647 +sa(dp158648 +g25273 +S'overall: 18.4 x 12.4 x 2.7 cm (7 1/4 x 4 7/8 x 1 1/16 in.)' +p158649 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p158650 +sg25268 +S'Door Knocker' +p158651 +sg25270 +S'Italian 16th Century' +p158652 +sa(dp158653 +g25273 +S'overall: 13 x 27.3 cm (5 1/8 x 10 3/4 in.)' +p158654 +sg25267 +g27 +sg25275 +S'\ngilt bronze//gilding rubbed above eyes and on upper part of shell' +p158655 +sg25268 +S'Appliqu\xc3\xa9 in the Form of Paired Dolphins on a Scallop Shell' +p158656 +sg25270 +S'Italian 16th Century' +p158657 +sa(dp158658 +g25273 +S'overall: 13 x 27.3 cm (5 1/8 x 10 3/4 in.)' +p158659 +sg25267 +g27 +sg25275 +S'\ngilt bronze//gilding rubbed above eyes and on upper part of shell' +p158660 +sg25268 +S'Appliqu\xc3\xa9 in the Form of Paired Dolphins on a Scallop Shell' +p158661 +sg25270 +S'Italian 16th Century' +p158662 +sa(dp158663 +g25268 +S'Self-Portrait' +p158664 +sg25270 +S'Leone Battista Alberti' +p158665 +sg25273 +S'bronze' +p158666 +sg25275 +S'c. 1435' +p158667 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000dab5.jpg' +p158668 +sg25267 +S"Leone Battista Alberti, among the most broadly talented men of the Renaissance, is\ncelebrated for his treatises on painting, sculpture, and architecture. He was also accomplished in\nthe fields of law, philosophy, mathematics, and science. Besides experimenting with painting and\nsculpture, he designed great churches in the north Italian cities of Rimini and Mantua, whose\nrulers he advised on the arts. He also served as architectural advisor to Pope Nicholas V.\n This bronze is probably cast from a wax model, in a shape and design inspired by an ancient\nRoman carved gem. The folds around the neck suggest classical drapery. The closely cropped\ncap of hair can be associated both with Roman and mid-fifteenth-century styles. Its fluffy tufts\nrecall the mane of Alberti's namesake, the lion \n The clean, continuous lines, proudly lifted head, and distant gaze give Alberti's features a\nnoble, idealized character. Under his chin is his personal emblem, a winged eye. Alberti wrote of\nthe eye as the most powerful, swift, and worthy of human parts, reminding us to be ever vigilant\nin the pursuit of what is good. The image is also meant to represent the all-seeing eye of\nGod.\n " +p158669 +sa(dp158670 +g25273 +S'bronze//Dark brown laquer (abraded locally)' +p158671 +sg25267 +g27 +sg25275 +S'15th century' +p158672 +sg25268 +S'Bust of Aristotle' +p158673 +sg25270 +S'Florentine 15th Century' +p158674 +sa(dp158675 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist after)' +p158676 +sg25268 +S'A Satyr and a Bacchante' +p158677 +sg25270 +S'Artist Information (' +p158678 +sa(dp158679 +g25273 +S'overall (oval): 10.7 x 8.1 cm (4 1/4 x 3 3/16 in.) gross weight: 135 gr' +p158680 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina over light bronze' +p158681 +sg25268 +S"A Satyr (Making the Cuckold's Sign)" +p158682 +sg25270 +S'Mantuan 15th Century' +p158683 +sa(dp158684 +g25273 +S'overall (oval): 11 x 8.5 cm (4 5/16 x 3 5/16 in.) gross weight: 232 gr' +p158685 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina over light bronze' +p158686 +sg25268 +S'A Bacchante' +p158687 +sg25270 +S'Mantuan 15th Century' +p158688 +sa(dp158689 +g25268 +S'Job Conversing with His Friends' +p158690 +sg25270 +S'Sebald Beham' +p158691 +sg25273 +S'engraving' +p158692 +sg25275 +S'1547' +p158693 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a81b.jpg' +p158694 +sg25267 +g27 +sa(dp158695 +g25273 +S'gilt bronze//Gilding much abraded' +p158696 +sg25267 +g27 +sg25275 +S'second quarter 15th century' +p158697 +sg25268 +S'The Virgin and Child with Two Angels' +p158698 +sg25270 +S'Florentine 15th Century' +p158699 +sa(dp158700 +g25268 +S'Madonna and Child within an Arch' +p158701 +sg25270 +S'Artist Information (' +p158702 +sg25273 +S'Italian, c. 1386 - 1466' +p158703 +sg25275 +S'(related artist)' +p158704 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dac.jpg' +p158705 +sg25267 +S"This work reflects the relief style of the great Florentine sculptor Donatello, whose approach\nto statuary is glimpsed in the terra-cotta \n The figures appear in a close-up view on a balcony or parapet. The child stands on the ledge\nin a lively pose that combines a forward shift of his weight with a twist backward to cling to his\nmother. With delicate modulations of his wax model, the sculptor varied the textures of crumpled\ncloth, fine fringe, and feathery hair, set against powerful architecture. The gestures of the\nMadonna's and Child's hands, paralleling each other with choreographic grace, recall those of\nDonatello's statues at the Basilica of Saint Anthony in Padua. Here the figures seem to reach out\nin greeting toward acclaiming worshippers. One scholar has named the composition "The\nMadonna of Welcome."\n " +p158706 +sa(dp158707 +g25268 +S'Madonna and Child with Four Angels' +p158708 +sg25270 +S'Artist Information (' +p158709 +sg25273 +S'Italian, c. 1386 - 1466' +p158710 +sg25275 +S'(artist after)' +p158711 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00102/a001020d.jpg' +p158712 +sg25267 +g27 +sa(dp158713 +g25273 +S'bronze//Medium brown patina' +p158714 +sg25267 +g27 +sg25275 +S'c. 1500' +p158715 +sg25268 +S'Christ Attended in the Tomb by Four Angels' +p158716 +sg25270 +S'Veneto region 16th Century' +p158717 +sa(dp158718 +g25268 +S'Saint Jerome' +p158719 +sg25270 +S'Donatello' +p158720 +sg25273 +S'bronze//Dark brown patina' +p158721 +sg25275 +S'mid 15th century' +p158722 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a00062fb.jpg' +p158723 +sg25267 +g27 +sa(dp158724 +g25273 +S'bronze//Dark brown patina' +p158725 +sg25267 +g27 +sg25275 +S'1472/1474' +p158726 +sg25268 +S'The Triumph of Cupid' +p158727 +sg25270 +S'Francesco di Giorgio Martini' +p158728 +sa(dp158729 +g25273 +S'overall: 4.5 x 8.1 cm (1 3/4 x 3 3/16 in.) gross weight: 46 gr' +p158730 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p158731 +sg25268 +S'Five Cupids at Play' +p158732 +sg25270 +S'North Italian 16th Century' +p158733 +sa(dp158734 +g25268 +S'Ornamental Plaque' +p158735 +sg25270 +S'Donatello' +p158736 +sg25273 +S'gilt bronze' +p158737 +sg25275 +S'unknown date\n' +p158738 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063cb.jpg' +p158739 +sg25267 +g27 +sa(dp158740 +g25273 +S'bronze//Black patina revealing light bronze surface in rubbed areas' +p158741 +sg25267 +g27 +sg25275 +S'unknown date\n' +p158742 +sg25268 +S'The Virgin and Child' +p158743 +sg25270 +S'Antonio Rossellino' +p158744 +sa(dp158745 +g25268 +S'The Dead Christ with Two Angels' +p158746 +sg25270 +S'Bartolomeo Bellano' +p158747 +sg25273 +S'gilt bronze' +p158748 +sg25275 +S'unknown date\n' +p158749 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00068/a000681f.jpg' +p158750 +sg25267 +g27 +sa(dp158751 +g25268 +S'The Judgment of Paris' +p158752 +sg25270 +S'Francesco di Giorgio Martini' +p158753 +sg25273 +S'bronze//Dark patina (black lacquer somewhat rubbed over rich reddish-brown bronze)' +p158754 +sg25275 +S'c. 1475/1485' +p158755 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002db1.jpg' +p158756 +sg25267 +g27 +sa(dp158757 +g25273 +S'bronze//Light brown patina' +p158758 +sg25267 +g27 +sg25275 +S'15th century' +p158759 +sg25268 +S'The Virgin and Child' +p158760 +sg25270 +S'Florentine 15th Century' +p158761 +sa(dp158762 +g25273 +S'bronze//Light brown patina' +p158763 +sg25267 +g27 +sg25275 +S'15th century' +p158764 +sg25268 +S'The Virgin and Child' +p158765 +sg25270 +S'Florentine 15th Century' +p158766 +sa(dp158767 +g25273 +S'overall: 10.7 x 11.9 cm (4 3/16 x 4 11/16 in.)' +p158768 +sg25267 +g27 +sg25275 +S'\nbronze//Very dark brown patina' +p158769 +sg25268 +S'The Triumph of Cupid' +p158770 +sg25270 +S'Italian 15th Century' +p158771 +sa(dp158772 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p158773 +sg25268 +S'Romulus and Remus' +p158774 +sg25270 +S'Artist Information (' +p158775 +sa(dp158776 +g25273 +S'bronze//Dark red-brown patina' +p158777 +sg25267 +g27 +sg25275 +S'15th century' +p158778 +sg25268 +S'A Sphinx to Right' +p158779 +sg25270 +S'Florentine 15th Century' +p158780 +sa(dp158781 +g25273 +S'bronze//Dark red-brown patina' +p158782 +sg25267 +g27 +sg25275 +S'15th century' +p158783 +sg25268 +S'A Sphinx to Left' +p158784 +sg25270 +S'Florentine 15th Century' +p158785 +sa(dp158786 +g25268 +S'Noah Entering the Ark' +p158787 +sg25270 +S'Florentine 15th Century' +p158788 +sg25273 +S'bronze//Yellow-gold patina' +p158789 +sg25275 +S'mid 15th century' +p158790 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00065/a00065e4.jpg' +p158791 +sg25267 +g27 +sa(dp158792 +g25268 +S'Apollo and Marsyas' +p158793 +sg25270 +S'Artist Information (' +p158794 +sg25273 +g27 +sg25275 +S'(artist after)' +p158795 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063f3.jpg' +p158796 +sg25267 +g27 +sa(dp158797 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist after)' +p158798 +sg25268 +S'Apollo and Marsyas' +p158799 +sg25270 +S'Artist Information (' +p158800 +sa(dp158801 +g25268 +S'Virgin with a Pear' +p158802 +sg25270 +S'Sebald Beham' +p158803 +sg25273 +S'engraving' +p158804 +sg25275 +S'1520' +p158805 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a81d.jpg' +p158806 +sg25267 +g27 +sa(dp158807 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist after)' +p158808 +sg25268 +S'Bacchus and Ariadne on a Chariot' +p158809 +sg25270 +S'Artist Information (' +p158810 +sa(dp158811 +g25268 +S'Cupid Driving a Chariot' +p158812 +sg25270 +S'Florentine 15th Century' +p158813 +sg25273 +S'bronze//Medium brown patina' +p158814 +sg25275 +S'15th century' +p158815 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c584.jpg' +p158816 +sg25267 +g27 +sa(dp158817 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p158818 +sg25268 +S'Minerva on a Chariot' +p158819 +sg25270 +S'Artist Information (' +p158820 +sa(dp158821 +g25273 +S'bronze//Dark brown patina' +p158822 +sg25267 +g27 +sg25275 +S'15th century' +p158823 +sg25268 +S'Hermaphrodite and Three Cupids' +p158824 +sg25270 +S'Florentine 15th Century' +p158825 +sa(dp158826 +g25268 +S'Ceres and Triptolemus' +p158827 +sg25270 +S'Artist Information (' +p158828 +sg25273 +g27 +sg25275 +S'(artist after)' +p158829 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063f4.jpg' +p158830 +sg25267 +g27 +sa(dp158831 +g25273 +S'Italian, 15th century' +p158832 +sg25267 +g27 +sg25275 +S'(sculptor)' +p158833 +sg25268 +S'Neptune' +p158834 +sg25270 +S'Artist Information (' +p158835 +sa(dp158836 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist after)' +p158837 +sg25268 +S'Hercules and the Nemean Lion' +p158838 +sg25270 +S'Artist Information (' +p158839 +sa(dp158840 +g25273 +S'bronze//Light brown patina' +p158841 +sg25267 +g27 +sg25275 +S'15th century' +p158842 +sg25268 +S'Aesculapius' +p158843 +sg25270 +S'Florentine 15th Century' +p158844 +sa(dp158845 +g25273 +S'bronze//Medium brown patina' +p158846 +sg25267 +g27 +sg25275 +S'15th century' +p158847 +sg25268 +S'A Centaur' +p158848 +sg25270 +S'Florentine 15th Century' +p158849 +sa(dp158850 +g25273 +S'bronze//Light brown patina' +p158851 +sg25267 +g27 +sg25275 +S'unknown date\n' +p158852 +sg25268 +S'The Triumph of Silenus' +p158853 +sg25270 +S'Valerio Belli' +p158854 +sa(dp158855 +g25268 +S'The Virgin and Child with the Parrot' +p158856 +sg25270 +S'Sebald Beham' +p158857 +sg25273 +S'engraving' +p158858 +sg25275 +S'1549' +p158859 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a806.jpg' +p158860 +sg25267 +g27 +sa(dp158861 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist after)' +p158862 +sg25268 +S'Diomedes and the Palladium' +p158863 +sg25270 +S'Artist Information (' +p158864 +sa(dp158865 +g25268 +S'Diomedes and the Palladium' +p158866 +sg25270 +S'Artist Information (' +p158867 +sg25273 +S'(sculptor)' +p158868 +sg25275 +S'\n' +p158869 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00069/a0006944.jpg' +p158870 +sg25267 +g27 +sa(dp158871 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist after)' +p158872 +sg25268 +S'Diomedes, Ulysses and the Palladium' +p158873 +sg25270 +S'Artist Information (' +p158874 +sa(dp158875 +g25268 +S'Minerva' +p158876 +sg25270 +S'Artist Information (' +p158877 +sg25273 +g27 +sg25275 +S'(artist after)' +p158878 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002db4.jpg' +p158879 +sg25267 +g27 +sa(dp158880 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p158881 +sg25268 +S'A Warrior Fighting a Horseman' +p158882 +sg25270 +S'Artist Information (' +p158883 +sa(dp158884 +g25273 +S'bronze' +p158885 +sg25267 +g27 +sg25275 +S'c. 1500' +p158886 +sg25268 +S'Bust of Alexander' +p158887 +sg25270 +S'Florentine 16th Century' +p158888 +sa(dp158889 +g25268 +S'Scipio Africanus' +p158890 +sg25270 +S'Artist Information (' +p158891 +sg25273 +g27 +sg25275 +S'(artist after)' +p158892 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063f5.jpg' +p158893 +sg25267 +g27 +sa(dp158894 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist after)' +p158895 +sg25268 +S'Mars and Diana' +p158896 +sg25270 +S'Artist Information (' +p158897 +sa(dp158898 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist after)' +p158899 +sg25268 +S'Diana' +p158900 +sg25270 +S'Artist Information (' +p158901 +sa(dp158902 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist after)' +p158903 +sg25268 +S'Abundance' +p158904 +sg25270 +S'Artist Information (' +p158905 +sa(dp158906 +g25268 +S'The Marriage at Cana' +p158907 +sg25270 +S'Sebald Beham' +p158908 +sg25273 +S'engraving' +p158909 +sg25275 +S'unknown date\n' +p158910 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a80b.jpg' +p158911 +sg25267 +g27 +sa(dp158912 +g25268 +S'A Youth' +p158913 +sg25270 +S'Artist Information (' +p158914 +sg25273 +g27 +sg25275 +S'(artist after)' +p158915 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005ba1.jpg' +p158916 +sg25267 +g27 +sa(dp158917 +g25273 +S'Italian, 1494 - 1553' +p158918 +sg25267 +g27 +sg25275 +S'(related artist)' +p158919 +sg25268 +S'Bust of a Youth' +p158920 +sg25270 +S'Artist Information (' +p158921 +sa(dp158922 +g25273 +S'lead' +p158923 +sg25267 +g27 +sg25275 +S'c. 1500' +p158924 +sg25268 +S'Cicero' +p158925 +sg25270 +S'Florentine 15th Century' +p158926 +sa(dp158927 +g25273 +S'bronze//Light brown patina' +p158928 +sg25267 +g27 +sg25275 +S'15th century' +p158929 +sg25268 +S'Hippolyta' +p158930 +sg25270 +S'Florentine 15th Century' +p158931 +sa(dp158932 +g25273 +S'bronze//Light brown patina' +p158933 +sg25267 +g27 +sg25275 +S'15th century' +p158934 +sg25268 +S'The Triumph of Chastity' +p158935 +sg25270 +S'Florentine 15th Century' +p158936 +sa(dp158937 +g25273 +S'(artist after)' +p158938 +sg25267 +g27 +sg25275 +S'\n' +p158939 +sg25268 +S'Augustus' +p158940 +sg25270 +S'Artist Information (' +p158941 +sa(dp158942 +g25268 +S'Julius Caesar' +p158943 +sg25270 +S'Artist Information (' +p158944 +sg25273 +g27 +sg25275 +S'(artist after)' +p158945 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00069/a0006942.jpg' +p158946 +sg25267 +g27 +sa(dp158947 +g25268 +S'A Roman Emperor' +p158948 +sg25270 +S'Artist Information (' +p158949 +sg25273 +g27 +sg25275 +S'(sculptor)' +p158950 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000daab.jpg' +p158951 +sg25267 +g27 +sa(dp158952 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist after)' +p158953 +sg25268 +S'Pompey' +p158954 +sg25270 +S'Artist Information (' +p158955 +sa(dp158956 +g25273 +S'bronze//Medium brown patina' +p158957 +sg25267 +g27 +sg25275 +S'unknown date\n' +p158958 +sg25268 +S'An Emperor and Concord' +p158959 +sg25270 +S'Cristoforo di Geremia' +p158960 +sa(dp158961 +g25268 +S'Christ and the Woman of Samaria' +p158962 +sg25270 +S'Sebald Beham' +p158963 +sg25273 +S'engraving' +p158964 +sg25275 +S'unknown date\n' +p158965 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a80d.jpg' +p158966 +sg25267 +g27 +sa(dp158967 +g25273 +S', unknown date' +p158968 +sg25267 +g27 +sg25275 +S'\n' +p158969 +sg25268 +S'Fortune Bestowing Fame' +p158970 +sg25270 +S'Cristoforo di Geremia' +p158971 +sa(dp158972 +g25273 +S'Italian, 1377 - 1446' +p158973 +sg25267 +g27 +sg25275 +S'(related artist)' +p158974 +sg25268 +S'Christ Healing the Possessed Boy' +p158975 +sg25270 +S'Artist Information (' +p158976 +sa(dp158977 +g25273 +S'bronze//Medium brown patina' +p158978 +sg25267 +g27 +sg25275 +S'unknown date\n' +p158979 +sg25268 +S'Saint Jerome' +p158980 +sg25270 +S'Gianfrancesco Enzola' +p158981 +sa(dp158982 +g25273 +S'bronze//Medium brown patina' +p158983 +sg25267 +g27 +sg25275 +S'unknown date\n' +p158984 +sg25268 +S'Martyrdom of Saint Sebastian' +p158985 +sg25270 +S'Gianfrancesco Enzola' +p158986 +sa(dp158987 +g25273 +S'bronze//Dark brown patina' +p158988 +sg25267 +g27 +sg25275 +S'unknown date\n' +p158989 +sg25268 +S'A Child on a Lion' +p158990 +sg25270 +S'Gianfrancesco Enzola' +p158991 +sa(dp158992 +g25273 +S'bronze//Light brown patina' +p158993 +sg25267 +g27 +sg25275 +S'c. 1468' +p158994 +sg25268 +S'Two Soldiers Fighting with a Horseman' +p158995 +sg25270 +S'Gianfrancesco Enzola' +p158996 +sa(dp158997 +g25273 +S'bronze//Dark brown patina' +p158998 +sg25267 +g27 +sg25275 +S'unknown date\n' +p158999 +sg25268 +S'A Horseman Attacked by Three Lions' +p159000 +sg25270 +S'Gianfrancesco Enzola' +p159001 +sa(dp159002 +g25273 +S'bronze//Medium brown patina' +p159003 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159004 +sg25268 +S'The Virgin & Child with Two Angels' +p159005 +sg25270 +S'Gianfrancesco Enzola' +p159006 +sa(dp159007 +g25273 +S'bronze//Medium brown patina' +p159008 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159009 +sg25268 +S'A Child on a Lion' +p159010 +sg25270 +S'Gianfrancesco Enzola' +p159011 +sa(dp159012 +g25273 +S', unknown date' +p159013 +sg25267 +g27 +sg25275 +S'\n' +p159014 +sg25268 +S'Saint George and the Dragon' +p159015 +sg25270 +S'Gianfrancesco Enzola' +p159016 +sa(dp159017 +g25268 +S'Christ in the House of Simon the Pharisee' +p159018 +sg25270 +S'Sebald Beham' +p159019 +sg25273 +S'engraving' +p159020 +sg25275 +S'unknown date\n' +p159021 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a80e.jpg' +p159022 +sg25267 +g27 +sa(dp159023 +g25273 +S'bronze//Dark brown patina' +p159024 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159025 +sg25268 +S'Nymph Carried Off by a Horseman' +p159026 +sg25270 +S'Master M.C.' +p159027 +sa(dp159028 +g25268 +S'Apollo, Venus, Mars and Vulcan' +p159029 +sg25270 +S'Master M.C.' +p159030 +sg25273 +S'bronze//Medium brown patina' +p159031 +sg25275 +S'unknown date\n' +p159032 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006427.jpg' +p159033 +sg25267 +g27 +sa(dp159034 +g25273 +S'bronze//Dark brown patina (rubbed on exposed surfaces)' +p159035 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159036 +sg25268 +S'The Judgment of Solomon' +p159037 +sg25270 +S'Pseudo Melioli' +p159038 +sa(dp159039 +g25273 +S'bronze//Light brown patina' +p159040 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159041 +sg25268 +S'A Warrior and a Sleeping Youth' +p159042 +sg25270 +S'Pseudo Melioli' +p159043 +sa(dp159044 +g25273 +S'lead' +p159045 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159046 +sg25268 +S'Mars and Venus' +p159047 +sg25270 +S'Pseudo Melioli' +p159048 +sa(dp159049 +g25273 +S'gilt bronze//(much rubbed in raised areas)' +p159050 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159051 +sg25268 +S'Vulcan Forging the Arms of Aeneas' +p159052 +sg25270 +S'Pseudo Melioli' +p159053 +sa(dp159054 +g25273 +S', late 15th - early 16th century' +p159055 +sg25267 +g27 +sg25275 +S'\n' +p159056 +sg25268 +S'Vulcan Forging the Arrows of Cupid' +p159057 +sg25270 +S'Pseudo Melioli' +p159058 +sa(dp159059 +g25273 +S'bronze//Medium brown patina (much rubbed)' +p159060 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159061 +sg25268 +S'Hercules and the Nemean Lion' +p159062 +sg25270 +S'Pseudo Melioli' +p159063 +sa(dp159064 +g25273 +S'bronze//Light brown patina' +p159065 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159066 +sg25268 +S'An Allocution' +p159067 +sg25270 +S'Pseudo Melioli' +p159068 +sa(dp159069 +g25273 +S'bronze//Dark brown patina' +p159070 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159071 +sg25268 +S'Mucius Scaevola' +p159072 +sg25270 +S'Pseudo Melioli' +p159073 +sa(dp159074 +g25268 +S'The Man of Sorrows at the Foot of the Cross' +p159075 +sg25270 +S'Sebald Beham' +p159076 +sg25273 +S'engraving' +p159077 +sg25275 +S'1520' +p159078 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a801.jpg' +p159079 +sg25267 +g27 +sa(dp159080 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p159081 +sg25268 +S'Meleager on Horseback (Boar Hunting) [obverse]' +p159082 +sg25270 +S'Artist Information (' +p159083 +sa(dp159084 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p159085 +sg25268 +S'Meleager on Horseback [reverse]' +p159086 +sg25270 +S'Artist Information (' +p159087 +sa(dp159088 +g25268 +S'Romans Passing Under the Yoke' +p159089 +sg25270 +S'Pseudo Melioli' +p159090 +sg25273 +S'bronze//Medium brown patina' +p159091 +sg25275 +S'late 15th - early 16th century' +p159092 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005ec6.jpg' +p159093 +sg25267 +g27 +sa(dp159094 +g25273 +S'bronze//Yellow patina' +p159095 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159096 +sg25268 +S'A Horseman and Two Soldiers' +p159097 +sg25270 +S'Pseudo Melioli' +p159098 +sa(dp159099 +g25273 +S'bronze//Medium brown patina (raised surfaces much rubbed)' +p159100 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159101 +sg25268 +S'Warrior and Horseman Fighting' +p159102 +sg25270 +S'Pseudo Melioli' +p159103 +sa(dp159104 +g25273 +S'gilt bronze' +p159105 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159106 +sg25268 +S'A Youth Riding on a Bull' +p159107 +sg25270 +S'Pseudo Melioli' +p159108 +sa(dp159109 +g25273 +S'bronze//Medium brown patina' +p159110 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159111 +sg25268 +S'A Fruit Offering' +p159112 +sg25270 +S'Pseudo Melioli' +p159113 +sa(dp159114 +g25273 +S'gilt bronze//(much darkened in recessed areas)' +p159115 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159116 +sg25268 +S'Orpheus' +p159117 +sg25270 +S'Pseudo Melioli' +p159118 +sa(dp159119 +g25273 +S'gilt bronze//(much rubbed)' +p159120 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159121 +sg25268 +S'The Death of Cyrus' +p159122 +sg25270 +S'Pseudo Melioli' +p159123 +sa(dp159124 +g25273 +S'bronze//Light brown patina' +p159125 +sg25267 +g27 +sg25275 +S'15th century' +p159126 +sg25268 +S'The Death of Absalom' +p159127 +sg25270 +S'Pseudo Melioli' +p159128 +sa(dp159129 +g25268 +S'The Head of Christ' +p159130 +sg25270 +S'Sebald Beham' +p159131 +sg25273 +S'engraving' +p159132 +sg25275 +S'1520' +p159133 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a810.jpg' +p159134 +sg25267 +g27 +sa(dp159135 +g25273 +S'bronze//Dark brown patina' +p159136 +sg25267 +g27 +sg25275 +S'15th century' +p159137 +sg25268 +S'The Justice of Trajan' +p159138 +sg25270 +S'Pseudo Melioli' +p159139 +sa(dp159140 +g25273 +S'bronze//Medium brown patina' +p159141 +sg25267 +g27 +sg25275 +S'c. 1480' +p159142 +sg25268 +S'The Flagellation' +p159143 +sg25270 +S'Sperandio' +p159144 +sa(dp159145 +g25273 +S'overall: 6.4 x 10.1 cm (2 1/2 x 4 in.) gross weight: 239 gr' +p159146 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p159147 +sg25268 +S'Horsemen Fighting' +p159148 +sg25270 +S'Italian 15th Century' +p159149 +sa(dp159150 +g25268 +S'A Combat' +p159151 +sg25270 +S'Italian 15th Century' +p159152 +sg25273 +S'overall (diameter): 2.9 cm (1 1/8 in.) gross weight: 7 gr' +p159153 +sg25275 +S'\nbronze//Light brown patina' +p159154 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006461.jpg' +p159155 +sg25267 +g27 +sa(dp159156 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p159157 +sg25268 +S'Bull-Baiting' +p159158 +sg25270 +S'Artist Information (' +p159159 +sa(dp159160 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p159161 +sg25268 +S"The Three Sons with their Father's Corpse" +p159162 +sg25270 +S'Artist Information (' +p159163 +sa(dp159164 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p159165 +sg25268 +S'Martyrdom of Saint Sebastian' +p159166 +sg25270 +S'Artist Information (' +p159167 +sa(dp159168 +g25273 +S'overall (trapezoidal): 3.7 x 3.2 cm (1 7/16 x 1 1/4 in.) gross weight: 19 gr' +p159169 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p159170 +sg25268 +S'Two Bacchantes' +p159171 +sg25270 +S'Paduan 16th Century' +p159172 +sa(dp159173 +g25273 +S'overall (trapezoidal): 3.8 x 3.2 cm (1 1/2 x 1 1/4 in.) gross weight: 18 gr' +p159174 +sg25267 +g27 +sg25275 +S'\nbronze//Light brown patina' +p159175 +sg25268 +S'Mucius Scaevola' +p159176 +sg25270 +S'Paduan 16th Century' +p159177 +sa(dp159178 +g25273 +S'bronze' +p159179 +sg25267 +g27 +sg25275 +S'1524' +p159180 +sg25268 +S'Elogius Honnu [obverse]' +p159181 +sg25270 +S'Christoph Weiditz the Elder' +p159182 +sa(dp159183 +g25268 +S'The Head of Christ' +p159184 +sg25270 +S'Sebald Beham' +p159185 +sg25273 +S'engraving' +p159186 +sg25275 +S'1520' +p159187 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a80f.jpg' +p159188 +sg25267 +g27 +sa(dp159189 +g25273 +S'(artist after)' +p159190 +sg25267 +g27 +sg25275 +S'\n' +p159191 +sg25268 +S'Triumph [reverse]' +p159192 +sg25270 +S'Artist Information (' +p159193 +sa(dp159194 +g25273 +S'gilt bronze (much rubbed)' +p159195 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159196 +sg25268 +S'The Rape of Ganymede' +p159197 +sg25270 +S'Caradosso Foppa' +p159198 +sa(dp159199 +g25273 +S'bronze//Medium brown patina' +p159200 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159201 +sg25268 +S'Battle of Centaurs and Lapiths' +p159202 +sg25270 +S'Caradosso Foppa' +p159203 +sa(dp159204 +g25273 +S'bronze//Dark brown patina' +p159205 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159206 +sg25268 +S'Silenus and the Mainads' +p159207 +sg25270 +S'Caradosso Foppa' +p159208 +sa(dp159209 +g25273 +S'bronze//Yellow patina' +p159210 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159211 +sg25268 +S'Marine Scene' +p159212 +sg25270 +S'Caradosso Foppa' +p159213 +sa(dp159214 +g25273 +S'bronze//Dark brown patina' +p159215 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159216 +sg25268 +S'Marine Scene' +p159217 +sg25270 +S'Caradosso Foppa' +p159218 +sa(dp159219 +g25273 +S'bronze//Medium brown patina' +p159220 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159221 +sg25268 +S'Justice, Science and Might' +p159222 +sg25270 +S'Caradosso Foppa' +p159223 +sa(dp159224 +g25273 +S'bronze//Dark brown patina' +p159225 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159226 +sg25268 +S'The Magdalen' +p159227 +sg25270 +S'Caradosso Foppa' +p159228 +sa(dp159229 +g25273 +S'bronze//Medium brown patina' +p159230 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159231 +sg25268 +S'A Triumph' +p159232 +sg25270 +S'Caradosso Foppa' +p159233 +sa(dp159234 +g25273 +S'bronze//Light brown patina' +p159235 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159236 +sg25268 +S'Part of a Sword Pommel (Centaur Supporting Medallion; Venus Flanked by Mars and Hercules)' +p159237 +sg25270 +S'Caradosso Foppa' +p159238 +sa(dp159239 +g25268 +S'Christ on the Globe' +p159240 +sg25270 +S'Sebald Beham' +p159241 +sg25273 +S'engraving' +p159242 +sg25275 +S'1546' +p159243 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a807.jpg' +p159244 +sg25267 +g27 +sa(dp159245 +g25268 +S'Hercules and Cacus' +p159246 +sg25270 +S'Caradosso Foppa' +p159247 +sg25273 +S'bronze//Medium brown patina' +p159248 +sg25275 +S'unknown date\n' +p159249 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006426.jpg' +p159250 +sg25267 +g27 +sa(dp159251 +g25273 +S'bronze//Dark brown patina' +p159252 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159253 +sg25268 +S'Apollo and Daphne' +p159254 +sg25270 +S'Master of the Orpheus Legend' +p159255 +sa(dp159256 +g25273 +S'bronze//Dark brown patina' +p159257 +sg25267 +g27 +sg25275 +S'fourth quarter 15th century' +p159258 +sg25268 +S'Meleager and Atalante' +p159259 +sg25270 +S'Master of the Orpheus Legend' +p159260 +sa(dp159261 +g25273 +S'bronze//Medium brown patina' +p159262 +sg25267 +g27 +sg25275 +S'fourth quarter 15th century' +p159263 +sg25268 +S'The Sacrifice of Iphigenia' +p159264 +sg25270 +S'Master of the Orpheus Legend' +p159265 +sa(dp159266 +g25273 +S'bronze//Dark brown patina' +p159267 +sg25267 +g27 +sg25275 +S'fourth quarter 15th century' +p159268 +sg25268 +S'Achilles Taking Leave of Thetis' +p159269 +sg25270 +S'Master of the Orpheus Legend' +p159270 +sa(dp159271 +g25273 +S'bronze//Medium brown patina' +p159272 +sg25267 +g27 +sg25275 +S'fourth quarter 15th century' +p159273 +sg25268 +S'Orpheus and Eurydice Before Pluto and Proserpine' +p159274 +sg25270 +S'Master of the Orpheus Legend' +p159275 +sa(dp159276 +g25273 +S'bronze//Dark brown patina' +p159277 +sg25267 +g27 +sg25275 +S'fourth quarter 15th century' +p159278 +sg25268 +S'Orpheus Playing to the Animals' +p159279 +sg25270 +S'Master of the Orpheus Legend' +p159280 +sa(dp159281 +g25273 +S'gilt bronze (much darkened and rubbed)' +p159282 +sg25267 +g27 +sg25275 +S'fourth quarter 15th century' +p159283 +sg25268 +S'The Death of Orpheus' +p159284 +sg25270 +S'Master of the Orpheus Legend' +p159285 +sa(dp159286 +g25273 +S'bronze//Dark brown patina' +p159287 +sg25267 +g27 +sg25275 +S'fourth quarter 15th century' +p159288 +sg25268 +S'Aeneas Descending to the Underworld' +p159289 +sg25270 +S'Master of the Orpheus Legend' +p159290 +sa(dp159291 +g25273 +S'bronze//Medium brown patina' +p159292 +sg25267 +g27 +sg25275 +S'fourth quarter 15th century' +p159293 +sg25268 +S'The Sacrifice of a Bull' +p159294 +sg25270 +S'Master of the Orpheus Legend' +p159295 +sa(dp159296 +g25273 +S'bound volume with 16 drawings in graphite and watercolor plus 2 letters' +p159297 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159298 +sg25268 +S'Album of Early Drawings' +p159299 +sg25270 +S'Aubrey Beardsley' +p159300 +sa(dp159301 +g25273 +S'bronze//Dark brown patina' +p159302 +sg25267 +g27 +sg25275 +S'fourth quarter 15th century' +p159303 +sg25268 +S'Mars and Venus' +p159304 +sg25270 +S'Master of the Orpheus Legend' +p159305 +sa(dp159306 +g25273 +S'bronze//Medium brown patina' +p159307 +sg25267 +g27 +sg25275 +S'fourth quarter 15th century' +p159308 +sg25268 +S'Meleager Hunting the Calydonian Boar' +p159309 +sg25270 +S'Master of the Orpheus Legend' +p159310 +sa(dp159311 +g25273 +S'bronze//Medium brown patina (much rubbed on exposed surfaces)' +p159312 +sg25267 +g27 +sg25275 +S'early 16th century' +p159313 +sg25268 +S'Jason and the Dragon' +p159314 +sg25270 +S'Pseudo Antonio da Brescia' +p159315 +sa(dp159316 +g25273 +S'bronze//Medium brown patina (rubbed)' +p159317 +sg25267 +g27 +sg25275 +S'early 16th century' +p159318 +sg25268 +S'A Sleeping Cupid' +p159319 +sg25270 +S'Pseudo Antonio da Brescia' +p159320 +sa(dp159321 +g25273 +S'bronze//Light brown patina' +p159322 +sg25267 +g27 +sg25275 +S'1505 or after' +p159323 +sg25268 +S'Abundance and a Satyr [obverse]' +p159324 +sg25270 +S'Pseudo Antonio da Brescia' +p159325 +sa(dp159326 +g25273 +S'bronze//Light brown patina' +p159327 +sg25267 +g27 +sg25275 +S'1505 or after' +p159328 +sg25268 +S'Sleeping Nymph and Two Satyrs [reverse]' +p159329 +sg25270 +S'Pseudo Antonio da Brescia' +p159330 +sa(dp159331 +g25268 +S'A Satyr Uncovering a Nymph' +p159332 +sg25270 +S'Andrea Briosco, called Riccio' +p159333 +sg25273 +S'bronze' +p159334 +sg25275 +S'unknown date\n' +p159335 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f10.jpg' +p159336 +sg25267 +g27 +sa(dp159337 +g25273 +S'gilt bronze' +p159338 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159339 +sg25268 +S'A Triumphant Warrior' +p159340 +sg25270 +S'Antico' +p159341 +sa(dp159342 +g25273 +S'overall (diameter): 4 cm (1 9/16 in.) gross weight: 24 gr' +p159343 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p159344 +sg25268 +S'A Triumph' +p159345 +sg25270 +S'Mantuan 16th Century' +p159346 +sa(dp159347 +g25273 +S', unknown date' +p159348 +sg25267 +g27 +sg25275 +S'\n' +p159349 +sg25268 +S'A Lion' +p159350 +sg25270 +S'Vettor Gambello, called Camelio' +p159351 +sa(dp159352 +g25268 +S'Departure of the Prodigal Son' +p159353 +sg25270 +S'Sebald Beham' +p159354 +sg25273 +S'engraving' +p159355 +sg25275 +S'unknown date\n' +p159356 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a804.jpg' +p159357 +sg25267 +g27 +sa(dp159358 +g25268 +S'Saint Sebastian' +p159359 +sg25270 +S'Francesco di Giorgio Martini' +p159360 +sg25273 +S'bronze//Black laquer (abraded locally)' +p159361 +sg25275 +S'c. 1475/1485' +p159362 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a0e.jpg' +p159363 +sg25267 +g27 +sa(dp159364 +g25268 +S'Saint John the Baptist' +p159365 +sg25270 +S'Francesco di Giorgio Martini' +p159366 +sg25273 +S'bronze//Black laquer (abraded locally)' +p159367 +sg25275 +S'c. 1475/1485' +p159368 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a0f.jpg' +p159369 +sg25267 +g27 +sa(dp159370 +g25273 +S'bronze' +p159371 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159372 +sg25268 +S'Judith with the Head of Holofernes' +p159373 +sg25270 +S'Andrea Briosco, called Riccio' +p159374 +sa(dp159375 +g25273 +S'bronze' +p159376 +sg25267 +g27 +sg25275 +S'c. 1500' +p159377 +sg25268 +S'The Entombment' +p159378 +sg25270 +S'Andrea Briosco, called Riccio' +p159379 +sa(dp159380 +g25273 +S'bronze' +p159381 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159382 +sg25268 +S'The Entombment' +p159383 +sg25270 +S'Andrea Briosco, called Riccio' +p159384 +sa(dp159385 +g25268 +S'The Entombment' +p159386 +sg25270 +S'Andrea Briosco, called Riccio' +p159387 +sg25273 +S'bronze' +p159388 +sg25275 +S'unknown date\n' +p159389 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c44.jpg' +p159390 +sg25267 +g27 +sa(dp159391 +g25273 +S'bronze' +p159392 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159393 +sg25268 +S'The Entombment' +p159394 +sg25270 +S'Andrea Briosco, called Riccio' +p159395 +sa(dp159396 +g25273 +S'bronze' +p159397 +sg25267 +g27 +sg25275 +S'c. 1500' +p159398 +sg25268 +S'Augustus and the Sibyl' +p159399 +sg25270 +S'Andrea Briosco, called Riccio' +p159400 +sa(dp159401 +g25273 +S'bronze' +p159402 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159403 +sg25268 +S'Saint George and the Dragon' +p159404 +sg25270 +S'Andrea Briosco, called Riccio' +p159405 +sa(dp159406 +g25273 +S'bronze' +p159407 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159408 +sg25268 +S'Death of Marcus Curtius' +p159409 +sg25270 +S'Andrea Briosco, called Riccio' +p159410 +sa(dp159411 +g25268 +S'The Prodigal Son Wasting His Fortune' +p159412 +sg25270 +S'Sebald Beham' +p159413 +sg25273 +S'engraving' +p159414 +sg25275 +S'unknown date\n' +p159415 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a805.jpg' +p159416 +sg25267 +g27 +sa(dp159417 +g25273 +S'bronze' +p159418 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159419 +sg25268 +S'Venus Chastising Cupid' +p159420 +sg25270 +S'Andrea Briosco, called Riccio' +p159421 +sa(dp159422 +g25273 +S'bronze' +p159423 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159424 +sg25268 +S'Leda and the Swan' +p159425 +sg25270 +S'Andrea Briosco, called Riccio' +p159426 +sa(dp159427 +g25273 +S'bronze' +p159428 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159429 +sg25268 +S'Vulcan, Cupid and Venus' +p159430 +sg25270 +S'Andrea Briosco, called Riccio' +p159431 +sa(dp159432 +g25273 +S'bronze' +p159433 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159434 +sg25268 +S'Venus, Cupid and Vulcan' +p159435 +sg25270 +S'Andrea Briosco, called Riccio' +p159436 +sa(dp159437 +g25273 +S'bronze' +p159438 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159439 +sg25268 +S"Meleager Presenting the Boar's Head to Atalanta" +p159440 +sg25270 +S'Andrea Briosco, called Riccio' +p159441 +sa(dp159442 +g25268 +S'Satyr Family' +p159443 +sg25270 +S'Andrea Briosco, called Riccio' +p159444 +sg25273 +S'bronze' +p159445 +sg25275 +S'c. 1500' +p159446 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f1e.jpg' +p159447 +sg25267 +g27 +sa(dp159448 +g25273 +S'bronze' +p159449 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159450 +sg25268 +S'Fame' +p159451 +sg25270 +S'Andrea Briosco, called Riccio' +p159452 +sa(dp159453 +g25273 +S', unknown date' +p159454 +sg25267 +g27 +sg25275 +S'\n' +p159455 +sg25268 +S'The Triumph of a Hero' +p159456 +sg25270 +S'Andrea Briosco, called Riccio' +p159457 +sa(dp159458 +g25273 +S'bronze' +p159459 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159460 +sg25268 +S'Sacrifice of a Swine' +p159461 +sg25270 +S'Andrea Briosco, called Riccio' +p159462 +sa(dp159463 +g25273 +S'bronze' +p159464 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159465 +sg25268 +S'Combat at the Gate' +p159466 +sg25270 +S'Andrea Briosco, called Riccio' +p159467 +sa(dp159468 +g25268 +S'The Prodigal Son with the Swine' +p159469 +sg25270 +S'Sebald Beham' +p159470 +sg25273 +S'engraving' +p159471 +sg25275 +S'unknown date\n' +p159472 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a803.jpg' +p159473 +sg25267 +g27 +sa(dp159474 +g25273 +S'bronze//Medium brown patina' +p159475 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159476 +sg25268 +S'Coriolanus and the Women of Rome' +p159477 +sg25270 +S'Master of Coriolanus' +p159478 +sa(dp159479 +g25273 +S'bronze//Dark brown patina' +p159480 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159481 +sg25268 +S'Coriolanus Leaving Rome' +p159482 +sg25270 +S'Master of Coriolanus' +p159483 +sa(dp159484 +g25273 +S'bronze//Dark brown patina (rubbed on exposed surfaces)' +p159485 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159486 +sg25268 +S'Roman Triumph' +p159487 +sg25270 +S'Master of Coriolanus' +p159488 +sa(dp159489 +g25273 +S'bronze//Dark brown patina' +p159490 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159491 +sg25268 +S'Allegory of Victory' +p159492 +sg25270 +S'Master of Coriolanus' +p159493 +sa(dp159494 +g25273 +S'bronze//Dark brown patina' +p159495 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159496 +sg25268 +S'The Banishment of Coriolanus' +p159497 +sg25270 +S'Master of Coriolanus' +p159498 +sa(dp159499 +g25273 +S'bronze//Dark brown patina' +p159500 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159501 +sg25268 +S'Coriolanus in Battle Before Rome' +p159502 +sg25270 +S'Master of Coriolanus' +p159503 +sa(dp159504 +g25273 +S'bronze//Yellowish patina' +p159505 +sg25267 +g27 +sg25275 +S'c. 1503' +p159506 +sg25268 +S'The Battle of Cannae [obverse]' +p159507 +sg25270 +S'Master of Coriolanus' +p159508 +sa(dp159509 +g25273 +S'bronze//Yellowish patina' +p159510 +sg25267 +g27 +sg25275 +S'c. 1503' +p159511 +sg25268 +S'Shield Supported by Hercules and Janus [reverse]' +p159512 +sg25270 +S'Master of Coriolanus' +p159513 +sa(dp159514 +g25273 +S'bronze//Dark brown patina' +p159515 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159516 +sg25268 +S'Naval Scene' +p159517 +sg25270 +S'Master of Coriolanus' +p159518 +sa(dp159519 +g25273 +S'bronze//Dark brown patina' +p159520 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159521 +sg25268 +S'Soldiers Attacking a Gate' +p159522 +sg25270 +S'Master of Coriolanus' +p159523 +sa(dp159524 +g25268 +S'Portrait of a Lady' +p159525 +sg25270 +S'Bernardino Luini' +p159526 +sg25273 +S'oil on panel' +p159527 +sg25275 +S'1520/1525' +p159528 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005d2.jpg' +p159529 +sg25267 +g27 +sa(dp159530 +g25268 +S'Madonna and Child with Saint Jerome, Saint Catherine of Alexandria, and Angels' +p159531 +sg25270 +S'Matteo di Giovanni' +p159532 +sg25273 +S'tempera (?) on panel' +p159533 +sg25275 +S'c. 1465/1470' +p159534 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000077d.jpg' +p159535 +sg25267 +g27 +sa(dp159536 +g25268 +S'Return of the Prodigal Son' +p159537 +sg25270 +S'Sebald Beham' +p159538 +sg25273 +S'engraving' +p159539 +sg25275 +S'unknown date\n' +p159540 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a802.jpg' +p159541 +sg25267 +g27 +sa(dp159542 +g25273 +S'bronze//Dark brown patina' +p159543 +sg25267 +g27 +sg25275 +S'early 16th century' +p159544 +sg25268 +S'Allegorical Scene' +p159545 +sg25270 +S'Ulocrino' +p159546 +sa(dp159547 +g25268 +S'Saint Jerome' +p159548 +sg25270 +S'Ulocrino' +p159549 +sg25273 +S'bronze//Dark brown patina' +p159550 +sg25275 +S'early 16th century' +p159551 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f59c.jpg' +p159552 +sg25267 +g27 +sa(dp159553 +g25273 +S'bronze//Light brown patina' +p159554 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159555 +sg25268 +S'Saint Jerome' +p159556 +sg25270 +S'Ulocrino' +p159557 +sa(dp159558 +g25273 +S'bronze//Medium brown patina' +p159559 +sg25267 +g27 +sg25275 +S'early 16th century' +p159560 +sg25268 +S'Saint Romedius' +p159561 +sg25270 +S'Ulocrino' +p159562 +sa(dp159563 +g25273 +S'bronze//Medium brown patina' +p159564 +sg25267 +g27 +sg25275 +S'early 16th century' +p159565 +sg25268 +S'Saint Romedius' +p159566 +sg25270 +S'Ulocrino' +p159567 +sa(dp159568 +g25273 +S'bronze//Dark brown patina' +p159569 +sg25267 +g27 +sg25275 +S'early 16th century' +p159570 +sg25268 +S'Apollo and Marsyas' +p159571 +sg25270 +S'Ulocrino' +p159572 +sa(dp159573 +g25273 +S'bronze//Dark brown patina' +p159574 +sg25267 +g27 +sg25275 +S'early 16th century' +p159575 +sg25268 +S'Hercules and Antaeus' +p159576 +sg25270 +S'Ulocrino' +p159577 +sa(dp159578 +g25273 +S'bronze//Very dark patina' +p159579 +sg25267 +g27 +sg25275 +S'early 16th century' +p159580 +sg25268 +S'Death of Meleager' +p159581 +sg25270 +S'Ulocrino' +p159582 +sa(dp159583 +g25273 +S'bronze//Medium brown patina (rubbed on raised surfaces)' +p159584 +sg25267 +g27 +sg25275 +S'early 16th century' +p159585 +sg25268 +S'Aristotle and Alexander of Aphrodisias' +p159586 +sg25270 +S'Ulocrino' +p159587 +sa(dp159588 +g25273 +S'bronze//Dark brown patina' +p159589 +sg25267 +g27 +sg25275 +S'early 16th century' +p159590 +sg25268 +S'Saint Cecilia' +p159591 +sg25270 +S'Ulocrino' +p159592 +sa(dp159593 +g25268 +S'Children Playing with a Bitch and Three Young Dogs' +p159594 +sg25270 +S'Master of the Horse Heads' +p159595 +sg25273 +S'etching' +p159596 +sg25275 +S'unknown date\n' +p159597 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cea3.jpg' +p159598 +sg25267 +g27 +sa(dp159599 +g25273 +S'bronze//Dark brown patina (rubbed on raised surfaces)' +p159600 +sg25267 +g27 +sg25275 +S'1507 or before' +p159601 +sg25268 +S'David Triumphant over Goliath' +p159602 +sg25270 +S'Moderno' +p159603 +sa(dp159604 +g25273 +S'bronze//Dark brown patina' +p159605 +sg25267 +g27 +sg25275 +S'1490' +p159606 +sg25268 +S'Madonna and Child Enthroned with Saint Anthony Abbot and Saint Jerome' +p159607 +sg25270 +S'Moderno' +p159608 +sa(dp159609 +g25273 +S'bronze//Light brown patina' +p159610 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159611 +sg25268 +S'Madonna and Child Enthroned with Saints' +p159612 +sg25270 +S'Moderno' +p159613 +sa(dp159614 +g25273 +S'gilt bronze' +p159615 +sg25267 +g27 +sg25275 +S'1552' +p159616 +sg25268 +S'Madonna and Child Enthroned with Two Angels' +p159617 +sg25270 +S'Moderno' +p159618 +sa(dp159619 +g25273 +S'bronze//Dark brown patina (rubbed on exposed surfaces)' +p159620 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159621 +sg25268 +S'The Adoration of the Magi' +p159622 +sg25270 +S'Moderno' +p159623 +sa(dp159624 +g25273 +S'bronze//Medium brown patina' +p159625 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159626 +sg25268 +S'The Presentation of Jesus in the Temple' +p159627 +sg25270 +S'Moderno' +p159628 +sa(dp159629 +g25273 +S'bronze//Light brown patina' +p159630 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159631 +sg25268 +S'The Presentation of Jesus in the Temple' +p159632 +sg25270 +S'Moderno' +p159633 +sa(dp159634 +g25273 +S'bronze//Dark brown patina' +p159635 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159636 +sg25268 +S'The Flagellation' +p159637 +sg25270 +S'Moderno' +p159638 +sa(dp159639 +g25268 +S'The Crucifixion' +p159640 +sg25270 +S'Moderno' +p159641 +sg25273 +S'bronze//Dark brown patina' +p159642 +sg25275 +S'late 15th - early 16th century' +p159643 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063f6.jpg' +p159644 +sg25267 +g27 +sa(dp159645 +g25273 +S'bronze//Medium brown patina (much rubbed)' +p159646 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159647 +sg25268 +S'The Entombment' +p159648 +sg25270 +S'Moderno' +p159649 +sa(dp159650 +g25268 +S'Bartholomew and Matthias' +p159651 +sg25270 +S'Sebald Beham' +p159652 +sg25273 +S'engraving' +p159653 +sg25275 +S'1520' +p159654 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a808.jpg' +p159655 +sg25267 +g27 +sa(dp159656 +g25273 +S'bronze//Dark brown patina' +p159657 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159658 +sg25268 +S'The Emtombment' +p159659 +sg25270 +S'Moderno' +p159660 +sa(dp159661 +g25273 +S'bronze//Medium brown patina' +p159662 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159663 +sg25268 +S'The Entombment' +p159664 +sg25270 +S'Moderno' +p159665 +sa(dp159666 +g25268 +S'The Dead Christ Supported by the Virgin and Saint John' +p159667 +sg25270 +S'Moderno' +p159668 +sg25273 +S'bronze//Medium brown patina' +p159669 +sg25275 +S'1513 or before' +p159670 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a00067e1.jpg' +p159671 +sg25267 +g27 +sa(dp159672 +g25273 +S'bronze//Medium brown patina' +p159673 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159674 +sg25268 +S'The Resurrection' +p159675 +sg25270 +S'Moderno' +p159676 +sa(dp159677 +g25273 +S'Italian, 1467 - 1528' +p159678 +sg25267 +g27 +sg25275 +S'(related artist)' +p159679 +sg25268 +S'The Martyrdom of Saint Sebastian' +p159680 +sg25270 +S'Artist Information (' +p159681 +sa(dp159682 +g25273 +S'bronze//Dark brown patina' +p159683 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159684 +sg25268 +S'Saint Sebastian' +p159685 +sg25270 +S'Moderno' +p159686 +sa(dp159687 +g25273 +S'bronze//Dark brown patina' +p159688 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159689 +sg25268 +S'Saint Jerome' +p159690 +sg25270 +S'Moderno' +p159691 +sa(dp159692 +g25273 +S'Italian, 1467 - 1528' +p159693 +sg25267 +g27 +sg25275 +S'(related artist)' +p159694 +sg25268 +S'Saint Jerome' +p159695 +sg25270 +S'Artist Information (' +p159696 +sa(dp159697 +g25273 +S'bronze//Medium brown patina' +p159698 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159699 +sg25268 +S'Saint Rochus (Roche)' +p159700 +sg25270 +S'Moderno' +p159701 +sa(dp159702 +g25273 +S'bronze//Medium brown patina' +p159703 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159704 +sg25268 +S'Augustus and the Tiburtine Sibyl' +p159705 +sg25270 +S'Moderno' +p159706 +sa(dp159707 +g25268 +S'Simon Peter' +p159708 +sg25270 +S'Sebald Beham' +p159709 +sg25273 +S'engraving' +p159710 +sg25275 +S'1545' +p159711 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a82e.jpg' +p159712 +sg25267 +g27 +sa(dp159713 +g25273 +S'bronze//Dark brown patina' +p159714 +sg25267 +g27 +sg25275 +S'1507 or before' +p159715 +sg25268 +S'Mars and Victory' +p159716 +sg25270 +S'Moderno' +p159717 +sa(dp159718 +g25273 +S'bronze//Yellow-brown patina' +p159719 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159720 +sg25268 +S'Mars and Victory' +p159721 +sg25270 +S'Moderno' +p159722 +sa(dp159723 +g25273 +S'overall: 6.9 x 9.5 cm (2 11/16 x 3 3/4 in.) gross weight: 375 gr' +p159724 +sg25267 +g27 +sg25275 +S'\ngilt bronze' +p159725 +sg25268 +S'Mars and Victory, with Three Warriors' +p159726 +sg25270 +S'North Italian 16th Century' +p159727 +sa(dp159728 +g25268 +S'Mars Surrounded by Trophies' +p159729 +sg25270 +S'Moderno' +p159730 +sg25273 +S'bronze with gilding//Medium brown patina, parcel gilt and highly chased' +p159731 +sg25275 +S'late 15th - early 16th century' +p159732 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063f7.jpg' +p159733 +sg25267 +g27 +sa(dp159734 +g25273 +S'bronze//Dark brown patina' +p159735 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159736 +sg25268 +S'Mars Surrounded by Trophies' +p159737 +sg25270 +S'Moderno' +p159738 +sa(dp159739 +g25273 +S'bronze//Medium brown patina' +p159740 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159741 +sg25268 +S'Vulcan, Victory and Cupid' +p159742 +sg25270 +S'Moderno' +p159743 +sa(dp159744 +g25273 +S'bronze//Medium brown patina (much rubbed)' +p159745 +sg25267 +g27 +sg25275 +S'c. 1500' +p159746 +sg25268 +S'Cupid Riding on a Dragon' +p159747 +sg25270 +S'Moderno' +p159748 +sa(dp159749 +g25273 +S'bronze//Dark brown patina' +p159750 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159751 +sg25268 +S'Death of Hippolytus' +p159752 +sg25270 +S'Moderno' +p159753 +sa(dp159754 +g25273 +S'bronze//Dark brown patina (rubbed on exposed surf aces)' +p159755 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159756 +sg25268 +S'The Infant Hercules Strangling the Serpents' +p159757 +sg25270 +S'Moderno' +p159758 +sa(dp159759 +g25268 +S'Cacus Stealing the Cattle of Geryon from Hercules' +p159760 +sg25270 +S'Moderno' +p159761 +sg25273 +S'bronze//Medium brown patina' +p159762 +sg25275 +S'late 15th - early 16th century' +p159763 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006425.jpg' +p159764 +sg25267 +g27 +sa(dp159765 +g25268 +S'Andrew' +p159766 +sg25270 +S'Sebald Beham' +p159767 +sg25273 +S'engraving' +p159768 +sg25275 +S'unknown date\n' +p159769 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a82f.jpg' +p159770 +sg25267 +g27 +sa(dp159771 +g25268 +S'Hercules and a Centaur' +p159772 +sg25270 +S'Moderno' +p159773 +sg25273 +S'bronze//Medium brown patina' +p159774 +sg25275 +S'1507 or before' +p159775 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063f8.jpg' +p159776 +sg25267 +g27 +sa(dp159777 +g25273 +S'bronze//Very dark patina' +p159778 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159779 +sg25268 +S'Hercules and the Lernaean Hydra' +p159780 +sg25270 +S'Moderno' +p159781 +sa(dp159782 +g25273 +S', late 15th - early 16th century' +p159783 +sg25267 +g27 +sg25275 +S'\n' +p159784 +sg25268 +S'Hercules and the Nemean Lion' +p159785 +sg25270 +S'Moderno' +p159786 +sa(dp159787 +g25273 +S'bronze//Dark brown patina' +p159788 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159789 +sg25268 +S'Hercules and the Nemean Lion' +p159790 +sg25270 +S'Moderno' +p159791 +sa(dp159792 +g25273 +S', late 15th - early 16th century' +p159793 +sg25267 +g27 +sg25275 +S'\n' +p159794 +sg25268 +S'Hercules and the Nemean Lion' +p159795 +sg25270 +S'Moderno' +p159796 +sa(dp159797 +g25273 +S'bronze//Medium brown patina' +p159798 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159799 +sg25268 +S'Hercules and the Nemean Lion' +p159800 +sg25270 +S'Moderno' +p159801 +sa(dp159802 +g25273 +S'bronze//Very dark brown patina' +p159803 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159804 +sg25268 +S'Nessus and Deianira' +p159805 +sg25270 +S'Moderno' +p159806 +sa(dp159807 +g25273 +S'bronze//Light brown patina' +p159808 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159809 +sg25268 +S'Hercules and Antaeus' +p159810 +sg25270 +S'Moderno' +p159811 +sa(dp159812 +g25273 +S'bronze//Very dark patina' +p159813 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159814 +sg25268 +S'Hercules and Antaeus' +p159815 +sg25270 +S'Moderno' +p159816 +sa(dp159817 +g25273 +S', late 15th - early 16th century' +p159818 +sg25267 +g27 +sg25275 +S'\n' +p159819 +sg25268 +S'Hercules and Antaeus' +p159820 +sg25270 +S'Moderno' +p159821 +sa(dp159822 +g25268 +S'Jacobus the Younger' +p159823 +sg25270 +S'Sebald Beham' +p159824 +sg25273 +S'engraving' +p159825 +sg25275 +S'1545' +p159826 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a830.jpg' +p159827 +sg25267 +g27 +sa(dp159828 +g25273 +S'bronze//Medium brown patina' +p159829 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159830 +sg25268 +S'Hercules and the Cattle of Geryon' +p159831 +sg25270 +S'Moderno' +p159832 +sa(dp159833 +g25273 +S'bronze//Very dark patina (rubbed in raised areas)' +p159834 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159835 +sg25268 +S'Hercules Triumphant over Antaeus' +p159836 +sg25270 +S'Moderno' +p159837 +sa(dp159838 +g25273 +S'bronze//Medium brown patina' +p159839 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159840 +sg25268 +S'Arion Captured by Pirates' +p159841 +sg25270 +S'Moderno' +p159842 +sa(dp159843 +g25273 +S', late 15th - early 16th century' +p159844 +sg25267 +g27 +sg25275 +S'\n' +p159845 +sg25268 +S'Arion Rescued by the Dolphin' +p159846 +sg25270 +S'Moderno' +p159847 +sa(dp159848 +g25273 +S', late 15th - early 16th century' +p159849 +sg25267 +g27 +sg25275 +S'\n' +p159850 +sg25268 +S'Orpheus Descending into Hades' +p159851 +sg25270 +S'Moderno' +p159852 +sa(dp159853 +g25273 +S'bronze//Medium brown patina (much rubbed)' +p159854 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159855 +sg25268 +S'Orpheus Redeeming Eurydice' +p159856 +sg25270 +S'Moderno' +p159857 +sa(dp159858 +g25273 +S', late 15th - early 16th century' +p159859 +sg25267 +g27 +sg25275 +S'\n' +p159860 +sg25268 +S'Orpheus Losing Eurydice' +p159861 +sg25270 +S'Moderno' +p159862 +sa(dp159863 +g25273 +S'bronze//Medium brown patina' +p159864 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159865 +sg25268 +S'Orpheus Charming the Beasts of the Fields' +p159866 +sg25270 +S'Moderno' +p159867 +sa(dp159868 +g25273 +S', late 15th - early 16th century' +p159869 +sg25267 +g27 +sg25275 +S'\n' +p159870 +sg25268 +S'The Death of Orpheus' +p159871 +sg25270 +S'Moderno' +p159872 +sa(dp159873 +g25273 +S', late 15th - early 16th century' +p159874 +sg25267 +g27 +sg25275 +S'\n' +p159875 +sg25268 +S'A Sculptor Carving a Statue of Cupid' +p159876 +sg25270 +S'Moderno' +p159877 +sa(dp159878 +g25268 +S'John' +p159879 +sg25270 +S'Sebald Beham' +p159880 +sg25273 +S'engraving' +p159881 +sg25275 +S'unknown date\n' +p159882 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a831.jpg' +p159883 +sg25267 +g27 +sa(dp159884 +g25273 +S'overall (diameter): 4.4 cm (1 3/4 in.) gross weight: 26 gr' +p159885 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p159886 +sg25268 +S'The Head of Medusa' +p159887 +sg25270 +S'North Italian 16th Century' +p159888 +sa(dp159889 +g25273 +S'overall: 3 x 5.7 cm (1 3/16 x 2 1/4 in.) gross weight: 44 gr' +p159890 +sg25267 +g27 +sg25275 +S'\nsilvered bronze' +p159891 +sg25268 +S'The Head of Medusa' +p159892 +sg25270 +S'Paduan 16th Century' +p159893 +sa(dp159894 +g25273 +S', late 15th - early 16th century' +p159895 +sg25267 +g27 +sg25275 +S'\n' +p159896 +sg25268 +S'The Death of Lucretia' +p159897 +sg25270 +S'Moderno' +p159898 +sa(dp159899 +g25273 +S'bronze//Dark brown patina' +p159900 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159901 +sg25268 +S'Lucretia Stabbing Herself' +p159902 +sg25270 +S'Moderno' +p159903 +sa(dp159904 +g25273 +S'Italian, 1467 - 1528' +p159905 +sg25267 +g27 +sg25275 +S'(related artist)' +p159906 +sg25268 +S'Battle Scene' +p159907 +sg25270 +S'Artist Information (' +p159908 +sa(dp159909 +g25273 +S'bronze//Light brown patina' +p159910 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p159911 +sg25268 +S'A Lion-Hunt' +p159912 +sg25270 +S'Moderno' +p159913 +sa(dp159914 +g25273 +S'bronze//Dark brown patina' +p159915 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159916 +sg25268 +S'A Nude Man' +p159917 +sg25270 +S'Moderno' +p159918 +sa(dp159919 +g25273 +S'bronze//Dark brown patina' +p159920 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159921 +sg25268 +S'Ornamental Frieze' +p159922 +sg25270 +S'Moderno' +p159923 +sa(dp159924 +g25273 +S'overall (oval): 6 x 5.2 cm (2 3/8 x 2 in.)' +p159925 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p159926 +sg25268 +S'A Sacrifice to Cupid' +p159927 +sg25270 +S'Paduan 16th Century' +p159928 +sa(dp159929 +g25268 +S'An Allegorical Scene' +p159930 +sg25270 +S'Andrea Briosco, called Riccio' +p159931 +sg25273 +S'bronze' +p159932 +sg25275 +S'unknown date\n' +p159933 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00065/a00065e3.jpg' +p159934 +sg25267 +g27 +sa(dp159935 +g25268 +S'Philip' +p159936 +sg25270 +S'Sebald Beham' +p159937 +sg25273 +S'engraving' +p159938 +sg25275 +S'1545' +p159939 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a832.jpg' +p159940 +sg25267 +g27 +sa(dp159941 +g25273 +S'Italian, 1470 - 1532' +p159942 +sg25267 +g27 +sg25275 +S'(related artist)' +p159943 +sg25268 +S'An Allegorical Scene' +p159944 +sg25270 +S'Artist Information (' +p159945 +sa(dp159946 +g25273 +S'bronze' +p159947 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159948 +sg25268 +S'An Allegorical Scene (Fame & Eros)' +p159949 +sg25270 +S'Andrea Briosco, called Riccio' +p159950 +sa(dp159951 +g25273 +S'bronze' +p159952 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159953 +sg25268 +S'An Allegorical Scene' +p159954 +sg25270 +S'Andrea Briosco, called Riccio' +p159955 +sa(dp159956 +g25273 +S'bronze' +p159957 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159958 +sg25268 +S'An Allegorical Scene (Fame Crowning Eros)' +p159959 +sg25270 +S'Andrea Briosco, called Riccio' +p159960 +sa(dp159961 +g25273 +S'bronze' +p159962 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159963 +sg25268 +S'An Allegorical Scene' +p159964 +sg25270 +S'Andrea Briosco, called Riccio' +p159965 +sa(dp159966 +g25273 +S'bronze//Medium brown patina' +p159967 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159968 +sg25268 +S'An Allegorical Scene' +p159969 +sg25270 +S'Master I.S.A.' +p159970 +sa(dp159971 +g25273 +S'bronze//Medium red-brown patina' +p159972 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159973 +sg25268 +S'Allegorical Scene [obverse]' +p159974 +sg25270 +S'Master I.S.A.' +p159975 +sa(dp159976 +g25273 +S'bronze//Medium red-brown patina' +p159977 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159978 +sg25268 +S'Allegorical Scene [reverse]' +p159979 +sg25270 +S'Master I.S.A.' +p159980 +sa(dp159981 +g25273 +S'silvered bronze' +p159982 +sg25267 +g27 +sg25275 +S'unknown date\n' +p159983 +sg25268 +S'Apollo and Vulcan' +p159984 +sg25270 +S'Master I.S.A.' +p159985 +sa(dp159986 +g25273 +S'bronze//Medium brown patina' +p159987 +sg25267 +g27 +sg25275 +S'c. 1500' +p159988 +sg25268 +S'The Resurrection' +p159989 +sg25270 +S'Master I.F.P.' +p159990 +sa(dp159991 +g25268 +S'Bartholomew' +p159992 +sg25270 +S'Sebald Beham' +p159993 +sg25273 +S'engraving' +p159994 +sg25275 +S'unknown date\n' +p159995 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a833.jpg' +p159996 +sg25267 +g27 +sa(dp159997 +g25273 +S'overall: 8.8 x 7.6 cm (3 1/2 x 3 in.) gross weight: 202 gr' +p159998 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p159999 +sg25268 +S'The Holy Family' +p160000 +sg25270 +S'Paduan 15th Century' +p160001 +sa(dp160002 +g25273 +S'overall: 7.6 x 6.6 cm (3 x 2 5/8 in.) gross weight: 58 gr' +p160003 +sg25267 +g27 +sg25275 +S'\nlead' +p160004 +sg25268 +S'The Virgin and Child' +p160005 +sg25270 +S'Paduan 15th Century' +p160006 +sa(dp160007 +g25273 +S'overall (with finial): 12.2 x 8.6 cm (4 13/16 x 3 3/8 in.)\r\noverall (height without finial): 9.7 cm (3 13/16 in.)\r\ngross weight: 266 gr (0.586 lb.)' +p160008 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160009 +sg25268 +S'Madonna and Child between Two Candelabra' +p160010 +sg25270 +S'Paduan 15th Century' +p160011 +sa(dp160012 +g25268 +S'Madonna and Child before a Niche' +p160013 +sg25270 +S'Paduan 15th Century' +p160014 +sg25273 +S'overall (arched top): 9.6 x 7.6 cm (3 3/4 x 3 in.) gross weight: 217 gr' +p160015 +sg25275 +S'\nbronze//Medium brown patina' +p160016 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000641e.jpg' +p160017 +sg25267 +g27 +sa(dp160018 +g25273 +S'overall (oval): 10.2 x 8.9 cm (4 x 3 1/2 in.)\r\noverall (approximate size of central insert): 6.6 x 5.1 cm (2 5/8 x 2 in.)' +p160019 +sg25267 +g27 +sg25275 +S'\nbronze//Yellow-brown patina' +p160020 +sg25268 +S'The Virgin and Child with Six Angels' +p160021 +sg25270 +S'Paduan 15th Century' +p160022 +sa(dp160023 +g25273 +S'overall (irregular oval): 8.7 x 4.9 cm (3 7/16 x 1 15/16 in.) gross weight: 114 gr' +p160024 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p160025 +sg25268 +S'The Virgin and Child' +p160026 +sg25270 +S'Paduan 15th Century' +p160027 +sa(dp160028 +g25273 +S'overall: 5.2 x 3.8 cm (2 1/16 x 1 1/2 in.) gross weight: 36 gr' +p160029 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p160030 +sg25268 +S'The Virgin and Child' +p160031 +sg25270 +S'Paduan 15th Century' +p160032 +sa(dp160033 +g25273 +S'overall: 8.3 x 5.7 cm (3 1/4 x 2 1/4 in.) gross weight: 84 gr' +p160034 +sg25267 +g27 +sg25275 +S'\nbronze//Light brown patina' +p160035 +sg25268 +S'The Virgin and Child' +p160036 +sg25270 +S'Paduan 15th Century' +p160037 +sa(dp160038 +g25273 +S'overall: 8 x 5.6 cm (3 1/8 x 2 3/16 in.) gross weight: 98 gr' +p160039 +sg25267 +g27 +sg25275 +S'\nbronze//Very dark patina' +p160040 +sg25268 +S'The Dead Christ between the Virgin and Saint John' +p160041 +sg25270 +S'Paduan 15th Century' +p160042 +sa(dp160043 +g25273 +S'bronze//Dark brown patina' +p160044 +sg25267 +g27 +sg25275 +S'c. 1475' +p160045 +sg25268 +S'The Virgin & Child with Angels' +p160046 +sg25270 +S'Ferrarese 15th Century' +p160047 +sa(dp160048 +g25268 +S'Thomas' +p160049 +sg25270 +S'Sebald Beham' +p160050 +sg25273 +S'engraving' +p160051 +sg25275 +S'unknown date\n' +p160052 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a834.jpg' +p160053 +sg25267 +g27 +sa(dp160054 +g25273 +S'bronze//Dark brown patina' +p160055 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p160056 +sg25268 +S'The Entombment' +p160057 +sg25270 +S'Moderno' +p160058 +sa(dp160059 +g25273 +S'overall: 4.3 x 3.9 cm (1 11/16 x 1 9/16 in.) gross weight: 22 gr' +p160060 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160061 +sg25268 +S'The Entombment' +p160062 +sg25270 +S'Lombard 16th Century' +p160063 +sa(dp160064 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p160065 +sg25268 +S'The Flagellation' +p160066 +sg25270 +S'Artist Information (' +p160067 +sa(dp160068 +g25268 +S'Christ Taken Down from the Cross' +p160069 +sg25270 +S'Artist Information (' +p160070 +sg25273 +g27 +sg25275 +S'(sculptor)' +p160071 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f59d.jpg' +p160072 +sg25267 +g27 +sa(dp160073 +g25273 +S'Italian, 1467 - 1528' +p160074 +sg25267 +g27 +sg25275 +S'(related artist)' +p160075 +sg25268 +S'Dead Christ Supported by the Virgin and Saint John' +p160076 +sg25270 +S'Artist Information (' +p160077 +sa(dp160078 +g25273 +S'overall (trapezoidal): 7.9 x 11.2 cm (3 1/8 x 4 7/16 in.) gross weight: 134 gr' +p160079 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p160080 +sg25268 +S'Lamentation Over the Dead Christ' +p160081 +sg25270 +S'Paduan 15th Century' +p160082 +sa(dp160083 +g25273 +S'overall: 8.8 x 6.8 cm (3 7/16 x 2 11/16 in.) gross weight: 87 gr' +p160084 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160085 +sg25268 +S'Saint Jerome' +p160086 +sg25270 +S'Paduan 15th Century' +p160087 +sa(dp160088 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p160089 +sg25268 +S'Saint Jerome' +p160090 +sg25270 +S'Artist Information (' +p160091 +sa(dp160092 +g25273 +S'overall: 5.8 x 5.9 cm (2 1/4 x 2 5/16 in.) gross weight: 86 gr' +p160093 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p160094 +sg25268 +S'Funeral of a Bishop' +p160095 +sg25270 +S'Paduan 15th Century' +p160096 +sa(dp160097 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p160098 +sg25268 +S'An Assembly of Gods' +p160099 +sg25270 +S'Artist Information (' +p160100 +sa(dp160101 +g25268 +S'Matthew' +p160102 +sg25270 +S'Sebald Beham' +p160103 +sg25273 +S'engraving' +p160104 +sg25275 +S'1546' +p160105 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a835.jpg' +p160106 +sg25267 +g27 +sa(dp160107 +g25273 +S'overall (irregular oblong): 7 x 4.4 cm (2 3/4 x 1 3/4 in.) gross weight: 82 gr' +p160108 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160109 +sg25268 +S'Venus and Cupid [obverse]' +p160110 +sg25270 +S'Paduan 15th Century' +p160111 +sa(dp160112 +g25273 +S'overall (irregular oblong): 7 x 4.4 cm (2 3/4 x 1 3/4 in.) gross weight: 82 gr' +p160113 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160114 +sg25268 +S'Mercury and Minerva [reverse]' +p160115 +sg25270 +S'Paduan 15th Century' +p160116 +sa(dp160117 +g25273 +S'overall (irregular): 4.3 x 5 cm (1 11/16 x 1 15/16 in.) gross weight: 28 gr' +p160118 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p160119 +sg25268 +S'A Horseman' +p160120 +sg25270 +S'Paduan 15th Century' +p160121 +sa(dp160122 +g25273 +S'overall: 4.3 x 3.1 cm (1 11/16 x 1 1/4 in.) gross weight: 35 gr' +p160123 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p160124 +sg25268 +S'Cupid Playing on a Lyre' +p160125 +sg25270 +S'Paduan 16th Century' +p160126 +sa(dp160127 +g25273 +S'overall (circular w/ projection): 6.9 x 3.7 cm (2 3/4 x 1 7/16 in.) gross weight: 32 gr' +p160128 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p160129 +sg25268 +S'Apollo' +p160130 +sg25270 +S'Paduan 16th Century' +p160131 +sa(dp160132 +g25273 +S'overall: 6.3 x 8.1 cm (2 1/2 x 3 3/16 in.) gross weight: 119 gr' +p160133 +sg25267 +g27 +sg25275 +S'\nbronze//Dark laquer (much rubbed) over light brown bronze' +p160134 +sg25268 +S'Cupid and Stags' +p160135 +sg25270 +S'Paduan 16th Century' +p160136 +sa(dp160137 +g25273 +S'overall: 10.2 x 6.4 cm (4 x 2 1/2 in.) gross weight: 193 gr' +p160138 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160139 +sg25268 +S'Decorative Plaquette' +p160140 +sg25270 +S'Paduan 16th Century' +p160141 +sa(dp160142 +g25273 +S'overall (oval): 4.6 x 3.3 cm (1 13/16 x 1 5/16 in.) gross weight: 28 gr' +p160143 +sg25267 +g27 +sg25275 +S'\nbronze//Very dark patina' +p160144 +sg25268 +S'Bust of a Girl' +p160145 +sg25270 +S'Paduan 16th Century' +p160146 +sa(dp160147 +g25273 +S'overall (trapezoidal): 4.1 x 10.1 cm (1 5/8 x 4 in.) gross weight: 94 gr' +p160148 +sg25267 +g27 +sg25275 +S'\nbronze//Dark red-brown patina' +p160149 +sg25268 +S'The Triumph of Silenus' +p160150 +sg25270 +S'Paduan 16th Century' +p160151 +sa(dp160152 +g25273 +S'overall (trapezoidal): 4.5 x 10.5 cm (1 3/4 x 4 1/8 in.) gross weight: 96 gr' +p160153 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p160154 +sg25268 +S'An Allegorical Scene' +p160155 +sg25270 +S'Paduan 16th Century' +p160156 +sa(dp160157 +g25268 +S'Jacobus the Elder' +p160158 +sg25270 +S'Sebald Beham' +p160159 +sg25273 +S'engraving' +p160160 +sg25275 +S'unknown date\n' +p160161 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a836.jpg' +p160162 +sg25267 +g27 +sa(dp160163 +g25268 +S'Combat of Ichthyocentaurs' +p160164 +sg25270 +S'Artist Information (' +p160165 +sg25273 +S'Italian, active 1482 - 1522/1523' +p160166 +sg25275 +S'(related artist)' +p160167 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063f9.jpg' +p160168 +sg25267 +g27 +sa(dp160169 +g25273 +S'bronze//Dark brown patina' +p160170 +sg25267 +g27 +sg25275 +S'early 16th century' +p160171 +sg25268 +S'Pomona' +p160172 +sg25270 +S'Master of the Roman Charity' +p160173 +sa(dp160174 +g25273 +S'bronze//Dark brown patina' +p160175 +sg25267 +g27 +sg25275 +S'early 16th century' +p160176 +sg25268 +S'Mercury' +p160177 +sg25270 +S'Master of the Roman Charity' +p160178 +sa(dp160179 +g25273 +S'overall (diameter): 8.1 cm (3 3/16 in.) gross weight: 138 gr' +p160180 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p160181 +sg25268 +S'Cimon and Pero' +p160182 +sg25270 +S'Paduan 16th Century' +p160183 +sa(dp160184 +g25273 +S'overall (diameter): 6.8 cm (2 11/16 in.) gross weight: 62 gr' +p160185 +sg25267 +g27 +sg25275 +S'\nbronze//Very light brown patina' +p160186 +sg25268 +S'Vulcan Forging the Arms of Aeneas' +p160187 +sg25270 +S'Paduan 16th Century' +p160188 +sa(dp160189 +g25273 +S'overall (oval): 5.3 cm (2 1/16 in.) gross weight: 43 gr' +p160190 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160191 +sg25268 +S'The Birth of Venus' +p160192 +sg25270 +S'Paduan 16th Century' +p160193 +sa(dp160194 +g25268 +S'Venus and Cupid' +p160195 +sg25270 +S'Paduan 16th Century' +p160196 +sg25273 +S'overall (oval w/ silhouetted top): 4.2 x 3.3 cm (1 5/8 x 1 5/16 in.) gross weight: 22 gr' +p160197 +sg25275 +S'\ngilt bronze' +p160198 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006424.jpg' +p160199 +sg25267 +g27 +sa(dp160200 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p160201 +sg25268 +S'The Virgin and Child' +p160202 +sg25270 +S'Artist Information (' +p160203 +sa(dp160204 +g25273 +S'gilt bronze//Excluding flesh areas of figures' +p160205 +sg25267 +g27 +sg25275 +S'second half 15th century' +p160206 +sg25268 +S'Madonna and Child with Two Angels' +p160207 +sg25270 +S'Florentine 15th Century' +p160208 +sa(dp160209 +g25273 +S'overall (silhouetted): 6 x 2.7 cm (2 3/8 x 1 1/16 in.) gross weight: 25 gr' +p160210 +sg25267 +g27 +sg25275 +S'\nbronze, some gilding//Medium brown patina; wings, hair and halo gilded' +p160211 +sg25268 +S'A Child Angel' +p160212 +sg25270 +S'Venetian 15th Century' +p160213 +sa(dp160214 +g25268 +S'Judas Thaddaeus' +p160215 +sg25270 +S'Sebald Beham' +p160216 +sg25273 +S'engraving' +p160217 +sg25275 +S'unknown date\n' +p160218 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a837.jpg' +p160219 +sg25267 +g27 +sa(dp160220 +g25273 +S'overall (silhouetted on three sides): 6.6 x 4.8 cm (2 9/16 x 1 7/8 in.) gross weight: 55 gr' +p160221 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160222 +sg25268 +S'Piet\xc3\xa0' +p160223 +sg25270 +S'Venetian 15th Century' +p160224 +sa(dp160225 +g25273 +S'overall (with upper element): 16.7 x 10.6 cm (6 9/16 x 4 3/16 in.) gross weight: 664 gr' +p160226 +sg25267 +g27 +sg25275 +S'\nbronze//Very dark patina' +p160227 +sg25268 +S'The Resurrection' +p160228 +sg25270 +S'Venetian 16th Century' +p160229 +sa(dp160230 +g25273 +S'overall: 9.5 x 6.4 cm (3 3/4 x 2 1/2 in.) gross weight: 126 gr' +p160231 +sg25267 +g27 +sg25275 +S'\ngilt bronze//Gilding extensively rubbed' +p160232 +sg25268 +S'Christ Appearing to the Apostles' +p160233 +sg25270 +S'Venetian 15th Century' +p160234 +sa(dp160235 +g25273 +S'overall: 12.9 x 8.1 cm (5 1/16 x 3 3/16 in.) gross weight: 211 gr' +p160236 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160237 +sg25268 +S'The Virgin and Child with Four Saints' +p160238 +sg25270 +S'Venetian 15th Century' +p160239 +sa(dp160240 +g25273 +S'overall: 12.2 x 7.8 cm (4 13/16 x 3 1/16 in.) gross weight: 127 gr' +p160241 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p160242 +sg25268 +S'The Virgin and Child with Four Saints' +p160243 +sg25270 +S'Venetian 15th Century' +p160244 +sa(dp160245 +g25273 +S'overall: 12.8 x 6.1 cm (5 1/16 x 2 3/8 in.) gross weight: 132 gr' +p160246 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160247 +sg25268 +S'The Virgin and Child' +p160248 +sg25270 +S'North Italian 15th Century' +p160249 +sa(dp160250 +g25273 +S'overall (silhouetted contour, height): 12.5 cm (4 15/16 in.) gross weight: 105 gr' +p160251 +sg25267 +g27 +sg25275 +S'\nbronze//Light brown patina' +p160252 +sg25268 +S'Saint George and the Dragon' +p160253 +sg25270 +S'North Italian 15th Century' +p160254 +sa(dp160255 +g25273 +S'overall (greatest width): 9.2 cm (3 5/8 in.) gross weight: 168 gr' +p160256 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p160257 +sg25268 +S'The Holy Family' +p160258 +sg25270 +S'Flemish 16th Century' +p160259 +sa(dp160260 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p160261 +sg25268 +S'Saint Sebastian' +p160262 +sg25270 +S'Artist Information (' +p160263 +sa(dp160264 +g25273 +S'overall (without added ring, silhouetted contour): 7.4 x 3.4 cm (2 15/16 x 1 3/8 in.)\r\noverall (height with added ring): 8 cm (3 1/8 in.)\r\ngross weight: 55.000 gr' +p160265 +sg25267 +g27 +sg25275 +S'\ngilt bronze' +p160266 +sg25268 +S'Saint Sebastian' +p160267 +sg25270 +S'North Italian 15th Century' +p160268 +sa(dp160269 +g25268 +S'Simon' +p160270 +sg25270 +S'Sebald Beham' +p160271 +sg25273 +S'engraving' +p160272 +sg25275 +S'unknown date\n' +p160273 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a838.jpg' +p160274 +sg25267 +g27 +sa(dp160275 +g25273 +S'overall (silhouetted contour): 5 x 3.6 cm (1 15/16 x 1 7/16 in.) gross weight: 25 gr' +p160276 +sg25267 +g27 +sg25275 +S'\ngilt bronze' +p160277 +sg25268 +S'Judith' +p160278 +sg25270 +S'North Italian 15th Century' +p160279 +sa(dp160280 +g25273 +S'Overall (without suspension loop): 9.3 x 6.8 cm (3 11/16 x 2 11/16 in.)\r\noverall (height with suspension loop): 10 cm (3 15/16 in.) gross weight: 222 gr' +p160281 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160282 +sg25268 +S'Bust of Christ' +p160283 +sg25270 +S'North Italian 15th Century' +p160284 +sa(dp160285 +g25273 +S'overall (arched): 11.3 x 7.3 cm (4 7/16 x 2 7/8 in.) gross weight: 177 gr' +p160286 +sg25267 +g27 +sg25275 +S'\ngilt bronze//(much rubbed on exposed surfaces)' +p160287 +sg25268 +S'Dead Christ' +p160288 +sg25270 +S'North Italian 15th Century' +p160289 +sa(dp160290 +g25273 +S'overall (diameter): 5.9 cm (2 5/16 in.) gross weight: 49 gr' +p160291 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160292 +sg25268 +S'Saint John the Baptist' +p160293 +sg25270 +S'North Italian 16th Century' +p160294 +sa(dp160295 +g25273 +S'Overall: 6.5 x 5 cm (2 9/16 x 1 15/16 in.)\r\noverall (inner dimensions of oval field): 4.8 x 3.6 cm (1 7/8 x 1 7/16 in.) gross weight: 150 gr' +p160296 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160297 +sg25268 +S'Saint Jerome' +p160298 +sg25270 +S'North Italian 16th Century' +p160299 +sa(dp160300 +g25273 +S'gilt bronze' +p160301 +sg25267 +g27 +sg25275 +S'c. 1506' +p160302 +sg25268 +S'Saint Catherine' +p160303 +sg25270 +S'Francesco Marti' +p160304 +sa(dp160305 +g25273 +S'gilt bronze' +p160306 +sg25267 +g27 +sg25275 +S'c. 1506' +p160307 +sg25268 +S'Saint John the Evangelist' +p160308 +sg25270 +S'Francesco Marti' +p160309 +sa(dp160310 +g25268 +S'Male Saint' +p160311 +sg25270 +S'Francesco Marti' +p160312 +sg25273 +S'gilt bronze' +p160313 +sg25275 +S'c. 1500' +p160314 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063d5.jpg' +p160315 +sg25267 +g27 +sa(dp160316 +g25273 +S'gilt bronze' +p160317 +sg25267 +g27 +sg25275 +S'c. 1506' +p160318 +sg25268 +S'Saint Mary Magdalene' +p160319 +sg25270 +S'Francesco Marti' +p160320 +sa(dp160321 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p160322 +sg25268 +S"The Three Sons with their Father's Corpse" +p160323 +sg25270 +S'Artist Information (' +p160324 +sa(dp160325 +g25268 +S'Matthias' +p160326 +sg25270 +S'Sebald Beham' +p160327 +sg25273 +S'engraving' +p160328 +sg25275 +S'unknown date\n' +p160329 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a839.jpg' +p160330 +sg25267 +g27 +sa(dp160331 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p160332 +sg25268 +S'A Triumph' +p160333 +sg25270 +S'Artist Information (' +p160334 +sa(dp160335 +g25273 +S'overall (diameter): 5.5 cm (2 3/16 in.) gross weight: 61 gr' +p160336 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160337 +sg25268 +S'Allegorical Figure' +p160338 +sg25270 +S'North Italian 16th Century' +p160339 +sa(dp160340 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p160341 +sg25268 +S'Vulcan Forging the Arrows of Cupid' +p160342 +sg25270 +S'Artist Information (' +p160343 +sa(dp160344 +g25273 +S'overall (diameter with rim): 6.2 cm (2 7/16 in.) gross weight: 65 gr' +p160345 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160346 +sg25268 +S'Allegory of Fortune: Man Holding Fortune by her Forelock' +p160347 +sg25270 +S'North Italian 16th Century' +p160348 +sa(dp160349 +g25273 +S'overall (diameter): 5.6 cm (2 3/16 in.) gross weight: 36 gr' +p160350 +sg25267 +g27 +sg25275 +S'\nbronze//Light brown patina' +p160351 +sg25268 +S'Constantia' +p160352 +sg25270 +S'North Italian 16th Century' +p160353 +sa(dp160354 +g25273 +S'overall: 4.8 x 3.1 cm (1 7/8 x 1 1/4 in.) gross weight: 18 gr' +p160355 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160356 +sg25268 +S'Mercury and Judith' +p160357 +sg25270 +S'North Italian 16th Century' +p160358 +sa(dp160359 +g25273 +S'overall: 5.4 x 3.8 cm (2 1/8 x 1 1/2 in.) gross weight: 40 gr' +p160360 +sg25267 +g27 +sg25275 +S'\nbronze//Light brown patina' +p160361 +sg25268 +S'A Sacrifice' +p160362 +sg25270 +S'North Italian 16th Century' +p160363 +sa(dp160364 +g25273 +S'overall (oval): 6.7 x 4.2 cm (2 5/8 x 1 5/8 in.) gross weight: 61 gr' +p160365 +sg25267 +g27 +sg25275 +S'\nbronze//Greyish patina' +p160366 +sg25268 +S'An Amazon' +p160367 +sg25270 +S'North Italian 16th Century' +p160368 +sa(dp160369 +g25273 +S'overall: 4.9 x 7.4 cm (1 15/16 x 2 15/16 in.) gross weight: 73 gr' +p160370 +sg25267 +g27 +sg25275 +S'\nbronze//Light brown patina' +p160371 +sg25268 +S'A Triumph' +p160372 +sg25270 +S'Mantuan 16th Century' +p160373 +sa(dp160374 +g25273 +S'overall (slightly concave): 4.2 x 7.1 cm (1 5/8 x 2 13/16 in.) gross weight: 53 gr' +p160375 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160376 +sg25268 +S'A Family Scene (Adam & Eve)' +p160377 +sg25270 +S'North Italian 16th Century' +p160378 +sa(dp160379 +g25268 +S'Matthew' +p160380 +sg25270 +S'Sebald Beham' +p160381 +sg25273 +S'engraving' +p160382 +sg25275 +S'1541' +p160383 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7f2.jpg' +p160384 +sg25267 +g27 +sa(dp160385 +g25273 +S'overall: 5.4 x 6.1 cm (2 1/8 x 2 3/8 in.) gross weight: 61 gr' +p160386 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160387 +sg25268 +S'A Combat of Horsemen' +p160388 +sg25270 +S'North Italian 16th Century' +p160389 +sa(dp160390 +g25273 +S'bronze//Dark laquer (much rubbed) over light brown bronze' +p160391 +sg25267 +g27 +sg25275 +S'late 15th - early 16th century' +p160392 +sg25268 +S'The Continence of Scipio' +p160393 +sg25270 +S'Moderno' +p160394 +sa(dp160395 +g25273 +S'overall (diameter): 4.7 cm (1 7/8 in.) gross weight: 88 gr' +p160396 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p160397 +sg25268 +S'A Female Bust' +p160398 +sg25270 +S'North Italian 16th Century' +p160399 +sa(dp160400 +g25273 +S'overall (diameter): 4.6 cm (1 13/16 in.) gross weight: 28 gr' +p160401 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160402 +sg25268 +S'A Woman' +p160403 +sg25270 +S'Italian 16th Century' +p160404 +sa(dp160405 +g25273 +S'overall (from finial to base): 15.3 x 8.5 cm (6 x 3 3/8 in.) gross weight: 228 gr' +p160406 +sg25267 +g27 +sg25275 +S'\nbronze, partially gilded' +p160407 +sg25268 +S'The Flagellation' +p160408 +sg25270 +S'North Italian 16th Century' +p160409 +sa(dp160410 +g25273 +S'overall (diameter): 21.5 cm (8 7/16 in.) gross weight: 2865 gr' +p160411 +sg25267 +g27 +sg25275 +S'\nbronze//Dark red-brown patina (black lacquer somewhat rubbed)' +p160412 +sg25268 +S'The Triumph of Neptune' +p160413 +sg25270 +S'Venetian 16th Century' +p160414 +sa(dp160415 +g25273 +S'overall: 11.9 x 10.1 cm (4 11/16 x 4 in.) gross weight: 318 gr' +p160416 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina (rubbed on exposed surfaces; some lead stopping at back)' +p160417 +sg25268 +S'The Entombment' +p160418 +sg25270 +S'Emilian 16th Century' +p160419 +sa(dp160420 +g25273 +S'overall (diameter): 6.1 cm (2 3/8 in.) gross weight: 26 gr' +p160421 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160422 +sg25268 +S'Diana and Actaeon' +p160423 +sg25270 +S'North Italian 16th Century' +p160424 +sa(dp160425 +g25273 +S'overall (diameter): 4.8 cm (1 7/8 in.) gross weight: 66 gr' +p160426 +sg25267 +g27 +sg25275 +S'\nbronze//Very dark patina' +p160427 +sg25268 +S'Mucius Scaevola' +p160428 +sg25270 +S'North Italian 16th Century' +p160429 +sa(dp160430 +g25268 +S'Hagar(?) and the Angel' +p160431 +sg25270 +S'German 16th Century' +p160432 +sg25273 +S'overall (diameter): 5.1 cm (2 in.) gross weight: 18 gr' +p160433 +sg25275 +S'\nbronze//Medium brown patina' +p160434 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006423.jpg' +p160435 +sg25267 +g27 +sa(dp160436 +g25268 +S'Mark' +p160437 +sg25270 +S'Sebald Beham' +p160438 +sg25273 +S'engraving' +p160439 +sg25275 +S'unknown date\n' +p160440 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7f1.jpg' +p160441 +sg25267 +g27 +sa(dp160442 +g25268 +S'The Rape of Lucretia (?)' +p160443 +sg25270 +S'Italian 16th Century' +p160444 +sg25273 +S'bronze//Yellow-brown patina' +p160445 +sg25275 +S'16th century' +p160446 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006422.jpg' +p160447 +sg25267 +g27 +sa(dp160448 +g25273 +S'overall: 3.2 x 6.2 cm (1 1/4 x 2 7/16 in.) gross weight: 36 gr' +p160449 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160450 +sg25268 +S'Cincinnatus at the Plough' +p160451 +sg25270 +S'Flemish 16th Century' +p160452 +sa(dp160453 +g25273 +S', unknown date' +p160454 +sg25267 +g27 +sg25275 +S'\n' +p160455 +sg25268 +S'An Allegory of Faith: Lions Devouring a Nude Youth [obverse]' +p160456 +sg25270 +S'Master IO.F.F.' +p160457 +sa(dp160458 +g25273 +S', unknown date' +p160459 +sg25267 +g27 +sg25275 +S'\n' +p160460 +sg25268 +S'Frieze of Tritons and Nereids [reverse]' +p160461 +sg25270 +S'Master IO.F.F.' +p160462 +sa(dp160463 +g25273 +S'overall (diameter): 6.4 cm (2 1/2 in.) gross weight: 57 gr' +p160464 +sg25267 +g27 +sg25275 +S'\ngilt bronze//(gilding slightly rubbed)' +p160465 +sg25268 +S'A Frieze of Tritons and Nereids' +p160466 +sg25270 +S'North Italian 16th Century' +p160467 +sa(dp160468 +g25273 +S', unknown date' +p160469 +sg25267 +g27 +sg25275 +S'\n' +p160470 +sg25268 +S'A Frieze of Centaurs and Tritons' +p160471 +sg25270 +S'Master IO.F.F.' +p160472 +sa(dp160473 +g25273 +S'bronze//Medium brown patina' +p160474 +sg25267 +g27 +sg25275 +S'c. 1500' +p160475 +sg25268 +S'Allegory of Music' +p160476 +sg25270 +S'Venetian 16th Century' +p160477 +sa(dp160478 +g25273 +S'overall (trapezoidal): 4.8 x 9.7 cm (1 7/8 x 3 13/16 in.) gross weight: 58 gr' +p160479 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160480 +sg25268 +S'Sea-Monsters Fighting' +p160481 +sg25270 +S'North Italian 16th Century' +p160482 +sa(dp160483 +g25273 +S'overall (trapezoidal): 3.8 x 9.5 cm (1 1/2 x 3 3/4 in.) gross weight: 67 gr' +p160484 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160485 +sg25268 +S'Sea-Monsters Fighting' +p160486 +sg25270 +S'North Italian 16th Century' +p160487 +sa(dp160488 +g25273 +S'overall (oval): 5.7 x 4.3 cm (2 1/4 x 1 11/16 in.) gross weight: 58 gr' +p160489 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160490 +sg25268 +S'The Toilette of Venus' +p160491 +sg25270 +S'North Italian 16th Century' +p160492 +sa(dp160493 +g25268 +S'Luke' +p160494 +sg25270 +S'Sebald Beham' +p160495 +sg25273 +S'engraving' +p160496 +sg25275 +S'unknown date\n' +p160497 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7f0.jpg' +p160498 +sg25267 +g27 +sa(dp160499 +g25273 +S'overall (circular, cut below): 4.6 x 5.3 cm (1 13/16 x 2 1/16 in.) gross weight: 34 gr' +p160500 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160501 +sg25268 +S'Saint George and the Dragon' +p160502 +sg25270 +S'North Italian 16th Century' +p160503 +sa(dp160504 +g25268 +S'A Victorious Hero' +p160505 +sg25270 +S'North Italian 16th Century' +p160506 +sg25273 +S'overall (diameter): 5 cm (1 15/16 in.)\r\ndiameter (plaquette only): 3.3 cm (1 5/16 in.)\r\ngross weight: 89 gr (0.196 lb.)' +p160507 +sg25275 +S'\ngilt bronze' +p160508 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006421.jpg' +p160509 +sg25267 +g27 +sa(dp160510 +g25273 +S'overall (silhouetted contour): 10.5 x 6.3 cm (4 1/8 x 2 7/16 in.) gross weight: 115 gr' +p160511 +sg25267 +g27 +sg25275 +S'\ngilt bronze' +p160512 +sg25268 +S'The Virgin and Child' +p160513 +sg25270 +S'North Italian 15th Century' +p160514 +sa(dp160515 +g25273 +S'overall: 6.6 x 10.7 cm (2 5/8 x 4 3/16 in.) gross weight: 138 gr' +p160516 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160517 +sg25268 +S'The Last Supper' +p160518 +sg25270 +S'North Italian 16th Century' +p160519 +sa(dp160520 +g25273 +S'bronze//Dark brown patina' +p160521 +sg25267 +g27 +sg25275 +S'1507' +p160522 +sg25268 +S'A Dancing Faun' +p160523 +sg25270 +S'Master A.L.' +p160524 +sa(dp160525 +g25273 +S'overall: 7.4 x 5.3 cm (2 15/16 x 2 1/16 in.) gross weight: 107 gr' +p160526 +sg25267 +g27 +sg25275 +S'\ngilt bronze//(gilding rubbed)' +p160527 +sg25268 +S'The Baptism in the Jordan' +p160528 +sg25270 +S'Venetian 16th Century' +p160529 +sa(dp160530 +g25273 +S'overall (oval): 4.1 x 3.4 cm (1 5/8 x 1 5/16 in.) gross weight: 14 gr' +p160531 +sg25267 +g27 +sg25275 +S'\nbronze//Dark lacquer (much rubbed) over light brown bronze' +p160532 +sg25268 +S'Pan and Syrinx' +p160533 +sg25270 +S'Italian 16th Century' +p160534 +sa(dp160535 +g25273 +S'overall (diameter): 4.6 cm (1 13/16 in.) gross weight: 24 gr' +p160536 +sg25267 +g27 +sg25275 +S'\nbronze//Very dark patina' +p160537 +sg25268 +S'The Death of Laoco\xc3\xb6n' +p160538 +sg25270 +S'Italian 16th Century' +p160539 +sa(dp160540 +g25273 +S'overall (diameter): 5.2 cm (2 1/16 in.) gross weight: 39 gr' +p160541 +sg25267 +g27 +sg25275 +S'\nbronze//Very dark patina' +p160542 +sg25268 +S'The Rape of Proserpine' +p160543 +sg25270 +S'Italian 16th Century' +p160544 +sa(dp160545 +g25273 +S'overall: 4.3 x 9.9 cm (1 11/16 x 3 7/8 in.) gross weight: 78 gr' +p160546 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160547 +sg25268 +S'Five Putti Making Wine' +p160548 +sg25270 +S'Italian 16th Century' +p160549 +sa(dp160550 +g25268 +S'John' +p160551 +sg25270 +S'Sebald Beham' +p160552 +sg25273 +S'engraving' +p160553 +sg25275 +S'unknown date\n' +p160554 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7ef.jpg' +p160555 +sg25267 +g27 +sa(dp160556 +g25273 +S'overall: 2.4 x 8.4 cm (15/16 x 3 5/16 in.) gross weight: 27 gr' +p160557 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p160558 +sg25268 +S'Five Putti at Play' +p160559 +sg25270 +S'Italian 16th Century' +p160560 +sa(dp160561 +g25273 +S'overall (oval): 6 x 8 cm (2 3/8 x 3 1/8 in.) gross weight: 58 gr' +p160562 +sg25267 +g27 +sg25275 +S'\nbronze//Yellowish patina' +p160563 +sg25268 +S'The Triumph of Amphitrite' +p160564 +sg25270 +S'Italian 16th Century' +p160565 +sa(dp160566 +g25273 +S'overall (diameter): 6.3 cm (2 1/2 in.) gross weight: 21 gr' +p160567 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p160568 +sg25268 +S'Minerva and Vulcan' +p160569 +sg25270 +S'Italian 16th Century' +p160570 +sa(dp160571 +g25273 +S'overall: 6.3 x 7.8 cm (2 1/2 x 3 1/16 in.) gross weight: 98 gr' +p160572 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p160573 +sg25268 +S'Victory between Fame and Peace' +p160574 +sg25270 +S'Italian 16th Century' +p160575 +sa(dp160576 +g25273 +S'overall (diameter): 3.6 cm (1 7/16 in.) gross weight: 6 gr' +p160577 +sg25267 +g27 +sg25275 +S'\ncopper (?) repousse' +p160578 +sg25268 +S'Silenus' +p160579 +sg25270 +S'Italian 16th Century' +p160580 +sa(dp160581 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p160582 +sg25268 +S'Beheading of Saint Paul' +p160583 +sg25270 +S'Artist Information (' +p160584 +sa(dp160585 +g25268 +S'Allegorical Plaquette [obverse]' +p160586 +sg25270 +S'Italian 16th Century' +p160587 +sg25273 +S'overall (irregular): 8.5 x 5.8 cm (3 3/8 x 2 5/16 in.)' +p160588 +sg25275 +S'\nbronze//Medium brown patina' +p160589 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006420.jpg' +p160590 +sg25267 +g27 +sa(dp160591 +g25268 +S'Allegorical Plaquette [reverse]' +p160592 +sg25270 +S'Italian 16th Century' +p160593 +sg25273 +S'overall (irregular): 8.5 x 5.8 cm (3 3/8 x 2 5/16 in.)' +p160594 +sg25275 +S'\nbronze//Medium brown patina' +p160595 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000641f.jpg' +p160596 +sg25267 +g27 +sa(dp160597 +g25273 +S'bronze//Light brown patina' +p160598 +sg25267 +g27 +sg25275 +S'second half 15th century' +p160599 +sg25268 +S'Jupiter [obverse]' +p160600 +sg25270 +S'Master IO.F.F.' +p160601 +sa(dp160602 +g25273 +S'bronze//Light brown patina' +p160603 +sg25267 +g27 +sg25275 +S'second half 15th century' +p160604 +sg25268 +S'An Assembly of Gods [reverse]' +p160605 +sg25270 +S'Master IO.F.F.' +p160606 +sa(dp160607 +g25268 +S'Saint Jerome Standing' +p160608 +sg25270 +S'Sebald Beham' +p160609 +sg25273 +S'engraving' +p160610 +sg25275 +S'1520' +p160611 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7f8.jpg' +p160612 +sg25267 +g27 +sa(dp160613 +g25273 +S'bronze//Medium brown patina' +p160614 +sg25267 +g27 +sg25275 +S'second half 15th century' +p160615 +sg25268 +S'Phaedra and Hippolytus' +p160616 +sg25270 +S'Master IO.F.F.' +p160617 +sa(dp160618 +g25273 +S'bronze//Medium brown patina (slightly rubbed)' +p160619 +sg25267 +g27 +sg25275 +S'second half 15th century' +p160620 +sg25268 +S'Ariadne at Naxos' +p160621 +sg25270 +S'Master IO.F.F.' +p160622 +sa(dp160623 +g25273 +S'bronze//Medium brown patina' +p160624 +sg25267 +g27 +sg25275 +S'second half 15th century' +p160625 +sg25268 +S'Two Hunters' +p160626 +sg25270 +S'Master IO.F.F.' +p160627 +sa(dp160628 +g25273 +S'bronze//Light brown patina' +p160629 +sg25267 +g27 +sg25275 +S'second half 15th century' +p160630 +sg25268 +S'Hercules (?) with Bacchic Figures' +p160631 +sg25270 +S'Master IO.F.F.' +p160632 +sa(dp160633 +g25273 +S'bronze//Medium brown patina' +p160634 +sg25267 +g27 +sg25275 +S'second half 15th century' +p160635 +sg25268 +S'The Judgment of Paris' +p160636 +sg25270 +S'Master IO.F.F.' +p160637 +sa(dp160638 +g25268 +S'Judgment of Paris' +p160639 +sg25270 +S'Master IO.F.F.' +p160640 +sg25273 +S'gilt bronze' +p160641 +sg25275 +S'second half 15th century' +p160642 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005ec7.jpg' +p160643 +sg25267 +g27 +sa(dp160644 +g25273 +S'bronze//Dark brown patina (rubbed on exposed surfaces)' +p160645 +sg25267 +g27 +sg25275 +S'second half 15th century' +p160646 +sg25268 +S'The Sacrifice of Iphigenia' +p160647 +sg25270 +S'Master IO.F.F.' +p160648 +sa(dp160649 +g25273 +S'bronze//Light brown patina' +p160650 +sg25267 +g27 +sg25275 +S'second half 15th century' +p160651 +sg25268 +S'Allegorical Scene-Sacrifice to Diana' +p160652 +sg25270 +S'Master IO.F.F.' +p160653 +sa(dp160654 +g25273 +S'bronze//Light brown patina' +p160655 +sg25267 +g27 +sg25275 +S'second half 15th century' +p160656 +sg25268 +S'Horatius Cocles Defending the Bridge' +p160657 +sg25270 +S'Master IO.F.F.' +p160658 +sa(dp160659 +g25273 +S'bronze//Medium brown patina' +p160660 +sg25267 +g27 +sg25275 +S'second half 15th century' +p160661 +sg25268 +S'Mucius Scaevola' +p160662 +sg25270 +S'Master IO.F.F.' +p160663 +sa(dp160664 +g25268 +S'Saint Jerome in a Landscape' +p160665 +sg25270 +S'Sebald Beham' +p160666 +sg25273 +S'etching' +p160667 +sg25275 +S'1520' +p160668 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7fe.jpg' +p160669 +sg25267 +g27 +sa(dp160670 +g25268 +S'The Death of Marcus Curtius' +p160671 +sg25270 +S'Master IO.F.F.' +p160672 +sg25273 +S'bronze//Dark brown patina (rubbed locally)' +p160673 +sg25275 +S'second half 15th century' +p160674 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d6a.jpg' +p160675 +sg25267 +g27 +sa(dp160676 +g25273 +S'bronze//Medium brown patina' +p160677 +sg25267 +g27 +sg25275 +S'second half 15th century' +p160678 +sg25268 +S'Allegory of Union (?)' +p160679 +sg25270 +S'Master IO.F.F.' +p160680 +sa(dp160681 +g25273 +S'bronze//Medium brown patina' +p160682 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160683 +sg25268 +S'The Adoration of the Shepherds' +p160684 +sg25270 +S'Valerio Belli' +p160685 +sa(dp160686 +g25273 +S'bronze//Dark brown patina' +p160687 +sg25267 +g27 +sg25275 +S'1537 or after' +p160688 +sg25268 +S'The Adoration of the Magi' +p160689 +sg25270 +S'Valerio Belli' +p160690 +sa(dp160691 +g25273 +S'bronze//Very dark patina' +p160692 +sg25267 +g27 +sg25275 +S'1537 or after' +p160693 +sg25268 +S'The Baptism in the Jordan' +p160694 +sg25270 +S'Valerio Belli' +p160695 +sa(dp160696 +g25273 +S', unknown date' +p160697 +sg25267 +g27 +sg25275 +S'\n' +p160698 +sg25268 +S'The Adoration of the Magi' +p160699 +sg25270 +S'Valerio Belli' +p160700 +sa(dp160701 +g25273 +S'bronze//Dark brown patina (slightly rubbed)' +p160702 +sg25267 +g27 +sg25275 +S'1537 or after' +p160703 +sg25268 +S'Jesus Among the Doctors' +p160704 +sg25270 +S'Valerio Belli' +p160705 +sa(dp160706 +g25268 +S'The Betrayal of Christ' +p160707 +sg25270 +S'Valerio Belli' +p160708 +sg25273 +S'bronze//Very dark patina' +p160709 +sg25275 +S'1525 or after' +p160710 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063fb.jpg' +p160711 +sg25267 +g27 +sa(dp160712 +g25273 +S'bronze//Dark brown patina (slightly rubbed)' +p160713 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160714 +sg25268 +S'Christ Brought Before Pontius Pilate' +p160715 +sg25270 +S'Valerio Belli' +p160716 +sa(dp160717 +g25273 +S'bronze//Dark brown patina' +p160718 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160719 +sg25268 +S'Christ Carrying the Cross' +p160720 +sg25270 +S'Valerio Belli' +p160721 +sa(dp160722 +g25268 +S'Saint Jerome at the Arch' +p160723 +sg25270 +S'Sebald Beham' +p160724 +sg25273 +S'engraving' +p160725 +sg25275 +S'1520' +p160726 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7fd.jpg' +p160727 +sg25267 +g27 +sa(dp160728 +g25268 +S'Christ Carrying the Cross' +p160729 +sg25270 +S'Valerio Belli' +p160730 +sg25273 +S'bronze//Dark brown patina' +p160731 +sg25275 +S'1525 or after' +p160732 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063fc.jpg' +p160733 +sg25267 +g27 +sa(dp160734 +g25273 +S'bronze//Dark brown patina' +p160735 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160736 +sg25268 +S'The Entombment' +p160737 +sg25270 +S'Valerio Belli' +p160738 +sa(dp160739 +g25273 +S'bronze//Dark brown patina' +p160740 +sg25267 +g27 +sg25275 +S'1525 or after' +p160741 +sg25268 +S'The Entombment' +p160742 +sg25270 +S'Valerio Belli' +p160743 +sa(dp160744 +g25273 +S'bronze//Yellowish patina' +p160745 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160746 +sg25268 +S'The Entombment' +p160747 +sg25270 +S'Valerio Belli' +p160748 +sa(dp160749 +g25273 +S'bronze//Medium brown patina (rubbed on figures)' +p160750 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160751 +sg25268 +S'Noli Me Tangere' +p160752 +sg25270 +S'Valerio Belli' +p160753 +sa(dp160754 +g25273 +S'bronze//Dark brown patina' +p160755 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160756 +sg25268 +S'The Incredulity of Saint Thomas' +p160757 +sg25270 +S'Valerio Belli' +p160758 +sa(dp160759 +g25268 +S'Christ Appearing to the Apostles' +p160760 +sg25270 +S'Italian 16th Century' +p160761 +sg25273 +S'overall (arched top): 10.6 x 6.5 cm (4 3/16 x 2 9/16 in.) gross weight: 119 gr' +p160762 +sg25275 +S'\nbronze//Dark brown patina' +p160763 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063fa.jpg' +p160764 +sg25267 +g27 +sa(dp160765 +g25268 +S'Christ Appearing to the Apostles' +p160766 +sg25270 +S'Valerio Belli' +p160767 +sg25273 +S'bronze//Medium brown patina' +p160768 +sg25275 +S'unknown date\n' +p160769 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c28.jpg' +p160770 +sg25267 +g27 +sa(dp160771 +g25273 +S'bronze//Medium brown patina' +p160772 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160773 +sg25268 +S'Apollo' +p160774 +sg25270 +S'Valerio Belli' +p160775 +sa(dp160776 +g25273 +S', unknown date' +p160777 +sg25267 +g27 +sg25275 +S'\n' +p160778 +sg25268 +S'Venus (?)' +p160779 +sg25270 +S'Valerio Belli' +p160780 +sa(dp160781 +g25268 +S'Saint Jerome with the Angel' +p160782 +sg25270 +S'Sebald Beham' +p160783 +sg25273 +S'engraving (etching?)' +p160784 +sg25275 +S'1521' +p160785 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7fc.jpg' +p160786 +sg25267 +g27 +sa(dp160787 +g25273 +S'bronze//Light brown patina' +p160788 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160789 +sg25268 +S'Neptune, Amphitrite and Cupid' +p160790 +sg25270 +S'Valerio Belli' +p160791 +sa(dp160792 +g25273 +S'bronze//Dark brown patina' +p160793 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160794 +sg25268 +S'Hercules between Minerva and Venus' +p160795 +sg25270 +S'Valerio Belli' +p160796 +sa(dp160797 +g25273 +S'bronze//Medium brown patina' +p160798 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160799 +sg25268 +S'The Triumph of Amphitrite' +p160800 +sg25270 +S'Valerio Belli' +p160801 +sa(dp160802 +g25273 +S'bronze//Medium brown patina' +p160803 +sg25267 +g27 +sg25275 +S'mid 16th century' +p160804 +sg25268 +S'Perseus Mounted on Pegasus' +p160805 +sg25270 +S'Florentine 16th Century' +p160806 +sa(dp160807 +g25273 +S', mid 16th century' +p160808 +sg25267 +g27 +sg25275 +S'\n' +p160809 +sg25268 +S'Hercules and Antaeus' +p160810 +sg25270 +S'Florentine 16th Century' +p160811 +sa(dp160812 +g25273 +S'lead' +p160813 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160814 +sg25268 +S'Peace and Prosperity' +p160815 +sg25270 +S'Valerio Belli' +p160816 +sa(dp160817 +g25273 +S'bronze//Medium brown patina' +p160818 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160819 +sg25268 +S'Peace' +p160820 +sg25270 +S'Valerio Belli' +p160821 +sa(dp160822 +g25273 +S'lead' +p160823 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160824 +sg25268 +S'Cupid Crowning Two Lovers' +p160825 +sg25270 +S'Valerio Belli' +p160826 +sa(dp160827 +g25273 +S'bronze//Light brown patina' +p160828 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160829 +sg25268 +S'A Lion Hunt' +p160830 +sg25270 +S'Valerio Belli' +p160831 +sa(dp160832 +g25273 +S'bronze//Dark brown patina' +p160833 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160834 +sg25268 +S'A Seated Man' +p160835 +sg25270 +S'Valerio Belli' +p160836 +sa(dp160837 +g25268 +S'Saint Anthony the Hermit' +p160838 +sg25270 +S'Sebald Beham' +p160839 +sg25273 +S'engraving' +p160840 +sg25275 +S'1521' +p160841 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7f9.jpg' +p160842 +sg25267 +g27 +sa(dp160843 +g25273 +S'bronze//Light brown patina' +p160844 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160845 +sg25268 +S'The Adoration of the Magi' +p160846 +sg25270 +S'Giovanni Bernardi' +p160847 +sa(dp160848 +g25268 +S'The Adoration of the Magi' +p160849 +sg25270 +S'Giovanni Bernardi' +p160850 +sg25273 +S'glass' +p160851 +sg25275 +S'unknown date\n' +p160852 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063d6.jpg' +p160853 +sg25267 +g27 +sa(dp160854 +g25273 +S'lead' +p160855 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160856 +sg25268 +S'The Justice of Brutus' +p160857 +sg25270 +S'Giovanni Bernardi' +p160858 +sa(dp160859 +g25273 +S'lead' +p160860 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160861 +sg25268 +S'Venus and Cupid with Other Gods' +p160862 +sg25270 +S'Giovanni Bernardi' +p160863 +sa(dp160864 +g25268 +S'The Fall of Phaeton' +p160865 +sg25270 +S'Giovanni Bernardi' +p160866 +sg25273 +S'bronze//Medium brown patina' +p160867 +sg25275 +S'1533 or after' +p160868 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c2b.jpg' +p160869 +sg25267 +g27 +sa(dp160870 +g25268 +S'The Rape of Ganymede' +p160871 +sg25270 +S'Giovanni Bernardi' +p160872 +sg25273 +S'bronze//Dark brown patina (rubbed on exposed surfaces)' +p160873 +sg25275 +S'1532 or after' +p160874 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063fd.jpg' +p160875 +sg25267 +g27 +sa(dp160876 +g25273 +S'overall (oval): 7.5 x 6.5 cm (2 15/16 x 2 9/16 in.) gross weight: 84 gr' +p160877 +sg25267 +g27 +sg25275 +S'\nbronze//Light brown patina' +p160878 +sg25268 +S'Cupid on a Flying Swan' +p160879 +sg25270 +S'Italian 16th Century' +p160880 +sa(dp160881 +g25273 +S'bronze//Light brown patina' +p160882 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160883 +sg25268 +S'Cupid on a Swan' +p160884 +sg25270 +S'Giovanni Bernardi' +p160885 +sa(dp160886 +g25273 +S'bronze//Light brown patina' +p160887 +sg25267 +g27 +sg25275 +S'1535 or before' +p160888 +sg25268 +S'The Rape of the Sabines' +p160889 +sg25270 +S'Giovanni Bernardi' +p160890 +sa(dp160891 +g25273 +S'lead' +p160892 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160893 +sg25268 +S'The Continence of Scipio' +p160894 +sg25270 +S'Giovanni Bernardi' +p160895 +sa(dp160896 +g25268 +S'Saint Sebald' +p160897 +sg25270 +S'Sebald Beham' +p160898 +sg25273 +S'engraving' +p160899 +sg25275 +S'1521' +p160900 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7ff.jpg' +p160901 +sg25267 +g27 +sa(dp160902 +g25273 +S'lead//Very dark brown patina' +p160903 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160904 +sg25268 +S'A Panther Hunt' +p160905 +sg25270 +S'Giovanni Bernardi' +p160906 +sa(dp160907 +g25273 +S'bronze//Light brown patina' +p160908 +sg25267 +g27 +sg25275 +S'mid 16th century' +p160909 +sg25268 +S'Apollo and Marsyas' +p160910 +sg25270 +S'Florentine 16th Century' +p160911 +sa(dp160912 +g25273 +S'bronze//Medium brown patina' +p160913 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160914 +sg25268 +S'Allegorical Male Figure' +p160915 +sg25270 +S'Giovanni Bernardi' +p160916 +sa(dp160917 +g25273 +S'bronze//Light brown patina' +p160918 +sg25267 +g27 +sg25275 +S'unknown date\n' +p160919 +sg25268 +S'Neptune' +p160920 +sg25270 +S'Giovanni Bernardi' +p160921 +sa(dp160922 +g25273 +S'bronze//Medium brown patina (thin casting); Blunt cast' +p160923 +sg25267 +g27 +sg25275 +S'c. 1544' +p160924 +sg25268 +S'A Boar Hunt [obverse]' +p160925 +sg25270 +S'Giovanni Bernardi' +p160926 +sa(dp160927 +g25273 +S'overall (oval): 9.6 x 11.4 cm (3 3/4 x 4 1/2 in.) gross weight: 108 gr' +p160928 +sg25267 +g27 +sg25275 +S'\noil on bronze' +p160929 +sg25268 +S'Portrait of a Young Man in Oil [reverse]' +p160930 +sg25270 +S'Netherlandish 17th Century' +p160931 +sa(dp160932 +g25273 +S'bronze//Dark brown patina' +p160933 +sg25267 +g27 +sg25275 +S'c. 1541' +p160934 +sg25268 +S'Andrea Doria Guided by Neptune' +p160935 +sg25270 +S'Leone Leoni' +p160936 +sa(dp160937 +g25273 +S'overall (curved edges at top and bottom): 1098.5 x 589 cm (432 1/2 x 231 7/8 in.) gross weight: 218 gr' +p160938 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p160939 +sg25268 +S'Hercules' +p160940 +sg25270 +S'Italian 16th Century' +p160941 +sa(dp160942 +g25273 +S'bronze//Dark brown patina' +p160943 +sg25267 +g27 +sg25275 +S'16th century' +p160944 +sg25268 +S'Narcissus' +p160945 +sg25270 +S'Florentine 16th Century' +p160946 +sa(dp160947 +g25273 +S'bronze//Dark brown patina' +p160948 +sg25267 +g27 +sg25275 +S'16th century' +p160949 +sg25268 +S'The Incredulity of Saint Thomas' +p160950 +sg25270 +S'Florentine 16th Century' +p160951 +sa(dp160952 +g25268 +S'Combat of Greeks and Trojans' +p160953 +sg25270 +S'Sebald Beham' +p160954 +sg25273 +S'engraving' +p160955 +sg25275 +S'unknown date\n' +p160956 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7f5.jpg' +p160957 +sg25267 +g27 +sa(dp160958 +g25273 +S'bronze//Dark brown patina' +p160959 +sg25267 +g27 +sg25275 +S'16th century' +p160960 +sg25268 +S'The Baptism in the Jordan' +p160961 +sg25270 +S'Florentine 16th Century' +p160962 +sa(dp160963 +g25273 +S'gilt bronze' +p160964 +sg25267 +g27 +sg25275 +S'16th century' +p160965 +sg25268 +S'One of Two Ornamental Friezes' +p160966 +sg25270 +S'Florentine 16th Century' +p160967 +sa(dp160968 +g25273 +S'gilt bronze' +p160969 +sg25267 +g27 +sg25275 +S'16th century' +p160970 +sg25268 +S'One of Two Ornamental Friezes' +p160971 +sg25270 +S'Florentine 16th Century' +p160972 +sa(dp160973 +g25273 +S'overall: 10.6 x 7.3 cm (4 3/16 x 2 7/8 in.) gross weight: 173 gr' +p160974 +sg25267 +g27 +sg25275 +S'\nbronze//Yellowish patina' +p160975 +sg25268 +S'Lamentation Over the Dead Christ' +p160976 +sg25270 +S'Emilian 16th Century' +p160977 +sa(dp160978 +g25273 +S'overall (semi-circular): 3.8 x 7.4 cm (1 1/2 x 2 15/16 in.) gross weight: 40 gr' +p160979 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p160980 +sg25268 +S'The Holy Women at the Tomb' +p160981 +sg25270 +S'Italian 16th Century' +p160982 +sa(dp160983 +g25273 +S'overall (diameter): 3.8 cm (1 1/2 in.) gross weight: 27 gr' +p160984 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p160985 +sg25268 +S'Saint Matthew' +p160986 +sg25270 +S'Italian 16th Century' +p160987 +sa(dp160988 +g25273 +S'overall (diameter): 5.2 cm (2 1/16 in.) gross weight: 30 gr' +p160989 +sg25267 +g27 +sg25275 +S'\nlead' +p160990 +sg25268 +S'The Head of Christ' +p160991 +sg25270 +S'Italian 16th Century' +p160992 +sa(dp160993 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p160994 +sg25268 +S'Lot and His Daughters' +p160995 +sg25270 +S'Artist Information (' +p160996 +sa(dp160997 +g25273 +S'overall: 3.6 x 3.4 cm (1 7/16 x 1 3/8 in.) gross weight: 13 gr' +p160998 +sg25267 +g27 +sg25275 +S'\nbronze//Light brown patina' +p160999 +sg25268 +S'Two Cupids with Flutes' +p161000 +sg25270 +S'Italian 16th Century' +p161001 +sa(dp161002 +g25273 +S'overall (pear-shaped): 7.3 x 4.7 cm (2 7/8 x 1 7/8 in.) gross weight: 43 gr' +p161003 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p161004 +sg25268 +S'Saint Jerome' +p161005 +sg25270 +S'Italian 16th Century' +p161006 +sa(dp161007 +g25268 +S'The Rape of Helena' +p161008 +sg25270 +S'Sebald Beham' +p161009 +sg25273 +S'engraving' +p161010 +sg25275 +S'unknown date\n' +p161011 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7fb.jpg' +p161012 +sg25267 +g27 +sa(dp161013 +g25273 +S'overall (diameter): 5 cm (1 15/16 in.) gross weight: 25 gr' +p161014 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p161015 +sg25268 +S'The Judgment of Paris' +p161016 +sg25270 +S'Italian 16th Century' +p161017 +sa(dp161018 +g25273 +S'overall (diameter): 6.7 cm (2 5/8 in.) gross weight: 70 gr' +p161019 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p161020 +sg25268 +S'Mars and Frieze of Trophies' +p161021 +sg25270 +S'North Italian 16th Century' +p161022 +sa(dp161023 +g25273 +S'overall: 9.6 x 8.1 cm (3 3/4 x 3 3/16 in.) gross weight: 97 gr' +p161024 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p161025 +sg25268 +S'Spring and Summer' +p161026 +sg25270 +S'German 17th Century' +p161027 +sa(dp161028 +g25273 +S'overall: 9.6 x 8.7 cm (3 3/4 x 3 7/16 in.) gross weight: 159 gr' +p161029 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p161030 +sg25268 +S'Autumn and Winter' +p161031 +sg25270 +S'German 17th Century' +p161032 +sa(dp161033 +g25273 +S'overall (oval): 4.7 x 4.1 cm (1 7/8 x 1 5/8 in.)' +p161034 +sg25267 +g27 +sg25275 +S'\nbronze//Light brown patina' +p161035 +sg25268 +S'The Virgin and Child' +p161036 +sg25270 +S'Italian 16th Century' +p161037 +sa(dp161038 +g25273 +S'overall (diameter): 6.3 cm (2 1/2 in.) gross weight: 73 gr' +p161039 +sg25267 +g27 +sg25275 +S'\nbronze//Light brown patina' +p161040 +sg25268 +S'Venus in Armour' +p161041 +sg25270 +S'Italian 16th Century' +p161042 +sa(dp161043 +g25273 +S'overall (oval): 4 x 3.4 cm (1 9/16 x 1 5/16 in.) gross weight: 19 gr' +p161044 +sg25267 +g27 +sg25275 +S'\nbronze//Greyish patina' +p161045 +sg25268 +S'The Lamentation' +p161046 +sg25270 +S'Emilian 16th Century' +p161047 +sa(dp161048 +g25273 +S'overall (arched top): 13.8 x 10.5 cm (5 7/16 x 4 1/8 in.) gross weight: 110 gr' +p161049 +sg25267 +g27 +sg25275 +S'\nmedium brown bronze or copper repousse' +p161050 +sg25268 +S'The Adoration of the Shepherds' +p161051 +sg25270 +S'Italian 16th Century' +p161052 +sa(dp161053 +g25273 +S'overall (diameter): 5.5 cm (2 3/16 in.) gross weight: 27 gr' +p161054 +sg25267 +g27 +sg25275 +S'\ngilt bronze repousse' +p161055 +sg25268 +S'Cupid Playing on the Lute' +p161056 +sg25270 +S'German 16th Century' +p161057 +sa(dp161058 +g25273 +S'Italian, 1494 - 1553' +p161059 +sg25267 +g27 +sg25275 +S'(artist after)' +p161060 +sg25268 +S'Bull-Baiting' +p161061 +sg25270 +S'Artist Information (' +p161062 +sa(dp161063 +g25268 +S'Regulus' +p161064 +sg25270 +S'Sebald Beham' +p161065 +sg25273 +S'etching' +p161066 +sg25275 +S'unknown date\n' +p161067 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7f3.jpg' +p161068 +sg25267 +g27 +sa(dp161069 +g25268 +S'Hercules and the Nemean Lion' +p161070 +sg25270 +S'Italian 18th Century' +p161071 +sg25273 +S'overall (oval): 4.3 x 4.8 cm (1 11/16 x 1 7/8 in.) gross weight: 22 gr' +p161072 +sg25275 +S'\nbronze//Medium brown patina' +p161073 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000641d.jpg' +p161074 +sg25267 +g27 +sa(dp161075 +g25268 +S'A Warrior Fighting a Centaur' +p161076 +sg25270 +S'Italian 18th Century' +p161077 +sg25273 +S'overall (oblong): 4.6 x 5.3 cm (1 13/16 x 2 1/16 in.) gross weight: 40 gr' +p161078 +sg25275 +S'\nbronze//Medium brown patina' +p161079 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000641c.jpg' +p161080 +sg25267 +g27 +sa(dp161081 +g25273 +S'overall (diameter): 3.7 cm (1 7/16 in.)' +p161082 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p161083 +sg25268 +S'Herod and Herodias' +p161084 +sg25270 +S'French 15th Century' +p161085 +sa(dp161086 +g25273 +S'overall (diameter): 5.4 cm (2 1/8 in.)' +p161087 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p161088 +sg25268 +S'Virgil Suspended in a Basket' +p161089 +sg25270 +S'French 16th Century' +p161090 +sa(dp161091 +g25273 +S'overall (arched top): 6.6 x 5.2 cm (2 5/8 x 2 1/16 in.) gross weight: 79 gr' +p161092 +sg25267 +g27 +sg25275 +S'\nbronze//Light brown patina' +p161093 +sg25268 +S'The Nativity' +p161094 +sg25270 +S'French 16th Century' +p161095 +sa(dp161096 +g25273 +S'gilt bronze' +p161097 +sg25267 +g27 +sg25275 +S'16th century' +p161098 +sg25268 +S'A Decorative Plaque' +p161099 +sg25270 +S'French 16th Century' +p161100 +sa(dp161101 +g25273 +S'Overall (without frame): 939 x 761 cm (369 11/16 x 299 5/8 in.)\r\naccessory size: 17.8 x 11.4 cm (7 x 4 1/2 in.) gross weight: 506 gr' +p161102 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p161103 +sg25268 +S'The Dead Christ between the Virgin and Saint John' +p161104 +sg25270 +S'Venetian 16th Century' +p161105 +sa(dp161106 +g25273 +S'overall (diameter): 5.8 cm (2 5/16 in.) gross weight: 152 gr' +p161107 +sg25267 +g27 +sg25275 +S'\nbronze//Light brown patina' +p161108 +sg25268 +S'Saint Matthew' +p161109 +sg25270 +S'Flemish 16th Century' +p161110 +sa(dp161111 +g25273 +S'bronze//Light brown patina' +p161112 +sg25267 +g27 +sg25275 +S'15th century' +p161113 +sg25268 +S'The Virgin and Child on a Crescent Moon' +p161114 +sg25270 +S'Anonymous Netherlandish' +p161115 +sa(dp161116 +g25273 +S'bronze//Dark brown patina' +p161117 +sg25267 +g27 +sg25275 +S'15th century' +p161118 +sg25268 +S'The Judgment of Paris' +p161119 +sg25270 +S'Anonymous Netherlandish' +p161120 +sa(dp161121 +g25268 +S'Simon and His Daughter (Cimon and Pero)' +p161122 +sg25270 +S'Sebald Beham' +p161123 +sg25273 +S'etching' +p161124 +sg25275 +S'unknown date\n' +p161125 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a843.jpg' +p161126 +sg25267 +g27 +sa(dp161127 +g25268 +S'The Angel Gabriel' +p161128 +sg25270 +S'Anonymous Netherlandish' +p161129 +sg25273 +S'gilt bronze' +p161130 +sg25275 +S'late 15th - early 16th century' +p161131 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dc8.jpg' +p161132 +sg25267 +g27 +sa(dp161133 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p161134 +sg25268 +S'The Triumph of Religion' +p161135 +sg25270 +S'Artist Information (' +p161136 +sa(dp161137 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p161138 +sg25268 +S'The Triumph of Wisdom' +p161139 +sg25270 +S'Artist Information (' +p161140 +sa(dp161141 +g25273 +S'overall: 6.5 x 12.4 cm (2 9/16 x 4 7/8 in.) gross weight: 162 gr' +p161142 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p161143 +sg25268 +S'The Triumph of Poverty' +p161144 +sg25270 +S'Flemish 16th Century' +p161145 +sa(dp161146 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p161147 +sg25268 +S'The Triumph of Justice' +p161148 +sg25270 +S'Artist Information (' +p161149 +sa(dp161150 +g25268 +S'Orpheus and Eurydice' +p161151 +sg25270 +S'Peter Vischer the Younger' +p161152 +sg25273 +S'bronze//Black lacquer (slightly rubbed on raised areas) over medium brown bronze' +p161153 +sg25275 +S'c. 1515' +p161154 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dc7.jpg' +p161155 +sg25267 +g27 +sa(dp161156 +g25273 +S'bronze//Dark brown patina' +p161157 +sg25267 +g27 +sg25275 +S'1540 or before' +p161158 +sg25268 +S'Fortitude' +p161159 +sg25270 +S'Peter Fl\xc3\xb6tner' +p161160 +sa(dp161161 +g25273 +S'bronze//Dark brown patina' +p161162 +sg25267 +g27 +sg25275 +S'1545 or before' +p161163 +sg25268 +S'Thalia' +p161164 +sg25270 +S'Peter Fl\xc3\xb6tner' +p161165 +sa(dp161166 +g25273 +S'bronze//Light brown patina' +p161167 +sg25267 +g27 +sg25275 +S'1543 or before' +p161168 +sg25268 +S'A Victorious Warrior' +p161169 +sg25270 +S'Peter Fl\xc3\xb6tner' +p161170 +sa(dp161171 +g25273 +S'gilt bronze' +p161172 +sg25267 +g27 +sg25275 +S'unknown date\n' +p161173 +sg25268 +S'Allegorical Scene' +p161174 +sg25270 +S'Peter Fl\xc3\xb6tner' +p161175 +sa(dp161176 +g25268 +S'Simon and His Daughter (Cimon and Pero)' +p161177 +sg25270 +S'Sebald Beham' +p161178 +sg25273 +S'engraving' +p161179 +sg25275 +S'1544' +p161180 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a842.jpg' +p161181 +sg25267 +g27 +sa(dp161182 +g25273 +S'overall: 6.8 x 5.9 cm (2 11/16 x 2 5/16 in.) gross weight: 77 gr' +p161183 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p161184 +sg25268 +S'An Allegorical Scene' +p161185 +sg25270 +S'German 16th Century' +p161186 +sa(dp161187 +g25268 +S'Christ and Nicodemus' +p161188 +sg25270 +S'Master P.G.' +p161189 +sg25273 +S'bronze//Medium red-brown patina' +p161190 +sg25275 +S'c. 1550' +p161191 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000641b.jpg' +p161192 +sg25267 +g27 +sa(dp161193 +g25268 +S'A Nymph on a Dolphin' +p161194 +sg25270 +S'Francesco Marti' +p161195 +sg25273 +S'bronze//Light brownpatina' +p161196 +sg25275 +S'unknown date\n' +p161197 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000641a.jpg' +p161198 +sg25267 +g27 +sa(dp161199 +g25273 +S'overall (diameter): 3.8 cm (1 1/2 in.) gross weight: 24 gr' +p161200 +sg25267 +g27 +sg25275 +S'\ngilt bronze' +p161201 +sg25268 +S'The Judgment of Paris' +p161202 +sg25270 +S'German 16th Century' +p161203 +sa(dp161204 +g25273 +S'overall: 12.9 x 6.9 cm (5 1/16 x 2 11/16 in.) gross weight: 194 gr' +p161205 +sg25267 +g27 +sg25275 +S'\nbronze//Yellowish patina' +p161206 +sg25268 +S'Venus and Cupid' +p161207 +sg25270 +S'German 16th Century' +p161208 +sa(dp161209 +g25273 +S'overall (diameter): 8 cm (3 1/8 in.) gross weight: 192 gr' +p161210 +sg25267 +g27 +sg25275 +S'\nbronze//Very dark patina' +p161211 +sg25268 +S'An Allegorical Scene' +p161212 +sg25270 +S'German 16th Century' +p161213 +sa(dp161214 +g25273 +S'overall (silhouetted contour): 4 x 4.3 cm (1 9/16 x 1 11/16 in.) gross weight: 18 gr' +p161215 +sg25267 +g27 +sg25275 +S'\ngilt bronze' +p161216 +sg25268 +S'Lamentation Over the Dead Christ' +p161217 +sg25270 +S'German 16th Century' +p161218 +sa(dp161219 +g25273 +S'overall: 13.4 x 10.3 cm (5 1/4 x 4 1/16 in.) gross weight: 397 gr' +p161220 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p161221 +sg25268 +S'The Virgin & Child with Four Angels' +p161222 +sg25270 +S'German 16th Century' +p161223 +sa(dp161224 +g25273 +S'gilt bronze' +p161225 +sg25267 +g27 +sg25275 +S'1535/1574' +p161226 +sg25268 +S'The Fall of Man [obverse]' +p161227 +sg25270 +S'Hans Reinhart the Elder' +p161228 +sa(dp161229 +g25273 +S'gilt bronze' +p161230 +sg25267 +g27 +sg25275 +S'1535/1574' +p161231 +sg25268 +S'The Crucifixion [reverse]' +p161232 +sg25270 +S'Hans Reinhart the Elder' +p161233 +sa(dp161234 +g25268 +S'Cleopatra Standing' +p161235 +sg25270 +S'Sebald Beham' +p161236 +sg25273 +S'engraving' +p161237 +sg25275 +S'1529' +p161238 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a83e.jpg' +p161239 +sg25267 +g27 +sa(dp161240 +g25273 +S'overall (silhouetted contour): 8.4 x 7.6 cm (3 5/16 x 3 in.) gross weight: 120 gr' +p161241 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p161242 +sg25268 +S'The Virgin and Child' +p161243 +sg25270 +S'German 15th Century' +p161244 +sa(dp161245 +g25273 +S'overall (silhouetted contour): 14 x 10.2 cm (5 1/2 x 4 in.) gross weight: 104 gr' +p161246 +sg25267 +g27 +sg25275 +S'\ngilt bronze//(much rubbed)' +p161247 +sg25268 +S'Christ Crowned with Thorns' +p161248 +sg25270 +S'German 16th Century' +p161249 +sa(dp161250 +g25268 +S'The Redeemer' +p161251 +sg25270 +S'Roman 15th Century' +p161252 +sg25273 +S'overall (silhouetted contour): 21.5 x 9.3 cm (8 7/16 x 3 5/8 in.)' +p161253 +sg25275 +S'\ngilt bronze' +p161254 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063d8.jpg' +p161255 +sg25267 +g27 +sa(dp161256 +g25273 +S'German, c. 1485 - 1546' +p161257 +sg25267 +g27 +sg25275 +S'(related artist)' +p161258 +sg25268 +S'Mars' +p161259 +sg25270 +S'Artist Information (' +p161260 +sa(dp161261 +g25273 +S'German, c. 1485 - 1546' +p161262 +sg25267 +g27 +sg25275 +S'(related artist)' +p161263 +sg25268 +S'Minerva' +p161264 +sg25270 +S'Artist Information (' +p161265 +sa(dp161266 +g25273 +S'overall (silhouetted contour): 3.6 x 3.7 cm (1 7/16 x 1 7/16 in.)' +p161267 +sg25267 +g27 +sg25275 +S'\nbronze//Medium brown patina' +p161268 +sg25268 +S'Temperance' +p161269 +sg25270 +S'German 16th Century' +p161270 +sa(dp161271 +g25273 +S'overall (silhouetted contour): 989.5 x 555.5 cm (389 9/16 x 218 11/16 in.) gross weight: 99 gr' +p161272 +sg25267 +g27 +sg25275 +S'\ngilt bronze' +p161273 +sg25268 +S'Fortuna' +p161274 +sg25270 +S'German 16th Century' +p161275 +sa(dp161276 +g25268 +S'Leda and the Swan' +p161277 +sg25270 +S'Paul H\xc3\xbcbner' +p161278 +sg25273 +S'bronze//Light red-brown patina' +p161279 +sg25275 +S'early 17th century' +p161280 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006419.jpg' +p161281 +sg25267 +g27 +sa(dp161282 +g25273 +S'bronze//Medium brown patina (rubbed locally)' +p161283 +sg25267 +g27 +sg25275 +S'early 17th century' +p161284 +sg25268 +S'Venus and Cupid' +p161285 +sg25270 +S'Paul H\xc3\xbcbner' +p161286 +sa(dp161287 +g25273 +S'overall: 6.7 x 3.4 cm (2 5/8 x 1 5/16 in.) gross weight: 35 gr' +p161288 +sg25267 +g27 +sg25275 +S'\nbronze//Brown patina with traces of gilding' +p161289 +sg25268 +S'Two Male Saints' +p161290 +sg25270 +S'Russian 16th Century' +p161291 +sa(dp161292 +g25268 +S'Cleopatra Seated' +p161293 +sg25270 +S'Sebald Beham' +p161294 +sg25273 +S'engraving' +p161295 +sg25275 +S'unknown date\n' +p161296 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a83d.jpg' +p161297 +sg25267 +g27 +sa(dp161298 +g25273 +S'lead' +p161299 +sg25267 +g27 +sg25275 +S'mid 17th century' +p161300 +sg25268 +S'Judgment of Paris' +p161301 +sg25270 +S'Flemish 17th Century' +p161302 +sa(dp161303 +g25273 +S'overall: 12.7 x 19.6 cm (5 x 7 11/16 in.) gross weight: 354 gr' +p161304 +sg25267 +g27 +sg25275 +S'\nbronze//Red-brown patina' +p161305 +sg25268 +S'Mourning Over the Body of Jesus' +p161306 +sg25270 +S'Italian 16th Century' +p161307 +sa(dp161308 +g25273 +S'overall (oval): 5.3 x 4.1 cm (2 1/16 x 1 5/8 in.)' +p161309 +sg25267 +g27 +sg25275 +S'\nbronze//Dark brown patina' +p161310 +sg25268 +S'Head of a Girl' +p161311 +sg25270 +S'Italian 16th Century' +p161312 +sa(dp161313 +g25273 +S'bronze' +p161314 +sg25267 +g27 +sg25275 +S'c. 1570' +p161315 +sg25268 +S'Francesco da Sangallo' +p161316 +sg25270 +S'Francesco da Sangallo' +p161317 +sa(dp161318 +g25268 +S'John VIII Palaeologus, 1392-1448, Emperor of Constantinople 1425 [obverse]' +p161319 +sg25270 +S'Pisanello' +p161320 +sg25273 +S'lead//Trial cast, possibly' +p161321 +sg25275 +S'1438' +p161322 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dc5.jpg' +p161323 +sg25267 +g27 +sa(dp161324 +g25268 +S'John VIII Riding in a Rocky Landscape' +p161325 +sg25270 +S'Pisanello' +p161326 +sg25273 +S'lead//Trial cast, possibly' +p161327 +sg25275 +S'1438' +p161328 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dc6.jpg' +p161329 +sg25267 +g27 +sa(dp161330 +g25273 +S'lead' +p161331 +sg25267 +g27 +sg25275 +S'c. 1439' +p161332 +sg25268 +S'Gianfrancesco I Gonzaga, 1395-1444, 1st Marquess of Mantua 1433 [obverse]' +p161333 +sg25270 +S'Pisanello' +p161334 +sa(dp161335 +g25273 +S'lead' +p161336 +sg25267 +g27 +sg25275 +S'c. 1439' +p161337 +sg25268 +S'Gianfrancesco Riding in a Rocky Landscape, with a Companion' +p161338 +sg25270 +S'Pisanello' +p161339 +sa(dp161340 +g25273 +S'bronze' +p161341 +sg25267 +g27 +sg25275 +S'c. 1441' +p161342 +sg25268 +S'Filippo Maria Visconti, 1392-1447, Duke of Milan 1412 [obverse]' +p161343 +sg25270 +S'Pisanello' +p161344 +sa(dp161345 +g25273 +S'bronze' +p161346 +sg25267 +g27 +sg25275 +S'c. 1441' +p161347 +sg25268 +S'Filippo Maria Visconti Riding in a Mountainous Landscape [reverse]' +p161348 +sg25270 +S'Pisanello' +p161349 +sa(dp161350 +g25268 +S'Lucretia Standing' +p161351 +sg25270 +S'Sebald Beham' +p161352 +sg25273 +S'engraving' +p161353 +sg25275 +S'unknown date\n' +p161354 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a840.jpg' +p161355 +sg25267 +g27 +sa(dp161356 +g25268 +S'Niccol\xc3\xb2 Piccinino, 1386-1444, Condottiere [obverse]' +p161357 +sg25270 +S'Pisanello' +p161358 +sg25273 +S'bronze' +p161359 +sg25275 +S'c. 1441' +p161360 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a0005818.jpg' +p161361 +sg25267 +g27 +sa(dp161362 +g25268 +S'The She-Griffin of Perugia Suckling Two Infants [reverse]' +p161363 +sg25270 +S'Pisanello' +p161364 +sg25273 +S'bronze' +p161365 +sg25275 +S'c. 1441' +p161366 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a0005817.jpg' +p161367 +sg25267 +g27 +sa(dp161368 +g25273 +S'bronze' +p161369 +sg25267 +g27 +sg25275 +S'c. 1441' +p161370 +sg25268 +S'Francesco I Sforza, 1401-1466, 4th Duke of Milan 1450 [obverse]' +p161371 +sg25270 +S'Pisanello' +p161372 +sa(dp161373 +g25273 +S'bronze' +p161374 +sg25267 +g27 +sg25275 +S'c. 1441' +p161375 +sg25268 +S'Charger, Books, and Sword [reverse]' +p161376 +sg25270 +S'Pisanello' +p161377 +sa(dp161378 +g25268 +S"Leonello d'Este, 1407-1450, Marquess of Ferrara 1441 [obverse]" +p161379 +sg25270 +S'Pisanello' +p161380 +sg25273 +S'bronze' +p161381 +sg25275 +S'c. 1440/1444' +p161382 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063ee.jpg' +p161383 +sg25267 +g27 +sa(dp161384 +g25273 +S'bronze' +p161385 +sg25267 +g27 +sg25275 +S'c. 1440/1444' +p161386 +sg25268 +S'Head with Three Infantile Faces [reverse]' +p161387 +sg25270 +S'Pisanello' +p161388 +sa(dp161389 +g25273 +S'bronze' +p161390 +sg25267 +g27 +sg25275 +S'c. 1443' +p161391 +sg25268 +S"Leonello d'Este, 1407-1450, Marquess of Ferrara 1441 [obverse]" +p161392 +sg25270 +S'Pisanello' +p161393 +sa(dp161394 +g25273 +S'bronze' +p161395 +sg25267 +g27 +sg25275 +S'c. 1443' +p161396 +sg25268 +S'Two Nude Men Carrying Baskets with Olive Branches [reverse]' +p161397 +sg25270 +S'Pisanello' +p161398 +sa(dp161399 +g25273 +S'bronze' +p161400 +sg25267 +g27 +sg25275 +S'c. 1441/1444' +p161401 +sg25268 +S"Leonello d'Este, 1407-1450, Marquess of Ferrara 1441 [obverse]" +p161402 +sg25270 +S'Pisanello' +p161403 +sa(dp161404 +g25273 +S'bronze' +p161405 +sg25267 +g27 +sg25275 +S'c. 1441/1444' +p161406 +sg25268 +S'Blindfolded Lynx Seated on a Cushion [reverse]' +p161407 +sg25270 +S'Pisanello' +p161408 +sa(dp161409 +g25268 +S'Dido' +p161410 +sg25270 +S'Sebald Beham' +p161411 +sg25273 +S'engraving' +p161412 +sg25275 +S'1520' +p161413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a83a.jpg' +p161414 +sg25267 +g27 +sa(dp161415 +g25273 +S'bronze' +p161416 +sg25267 +g27 +sg25275 +S'c. 1441/1450' +p161417 +sg25268 +S"Leonello d'Este, 1407-1450, Marquess of Ferrara 1441 [obverse]" +p161418 +sg25270 +S'Pisanello' +p161419 +sa(dp161420 +g25273 +S'bronze' +p161421 +sg25267 +g27 +sg25275 +S'c. 1441/1450' +p161422 +sg25268 +S'Nude Youth Lying before a Rock [reverse]' +p161423 +sg25270 +S'Pisanello' +p161424 +sa(dp161425 +g25268 +S"Leonello d'Este, 1407-1450, Marquess of Ferrara 1441 [obverse]" +p161426 +sg25270 +S'Pisanello' +p161427 +sg25273 +S'bronze' +p161428 +sg25275 +S'1444' +p161429 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005ea.jpg' +p161430 +sg25267 +S"Pisanello, who was a painter as well as a medalist, is generally credited with having invented\nthe Renaissance medal form, as well as having brought it to its highest potential. He made\nseveral medals of the Marquess of Ferrara, this one being for the occasion of Leonello's marriage\nto Maria of Aragon in 1444. The composition of the \n The inscription across the field and around the bottom of the obverse, LEONELLVS\nMARCHIO ESTENSIS D(ominus) FERRARIE REGII ET MUTINE, identifies Leonello as\nMarquess of Este and Lord of Ferrara, Reggio, and Modena. The truncated inscription around the\ntop, GE R AR, is an abbreviation of GENER REGIS ARAGONUM, identifying him (through\nhis marriage) as the son-in-law of King Alfonso V of Aragon, ruler of Naples; Leonello's\nmarriage to Maria brought him a bride who increased his prestige by associating him with the\npowerful Neapolitan court.\n " +p161431 +sa(dp161432 +g25268 +S'Lion Being Taught by Cupid to Sing [reverse]' +p161433 +sg25270 +S'Pisanello' +p161434 +sg25273 +S'bronze' +p161435 +sg25275 +S'1444' +p161436 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005e9.jpg' +p161437 +sg25267 +g27 +sa(dp161438 +g25273 +S'lead' +p161439 +sg25267 +g27 +sg25275 +S'1444' +p161440 +sg25268 +S"Leonello d'Este, 1407-1450, Marquess of Ferrara 1441 [obverse]" +p161441 +sg25270 +S'Pisanello' +p161442 +sa(dp161443 +g25273 +S'lead' +p161444 +sg25267 +g27 +sg25275 +S'1444' +p161445 +sg25268 +S'Lion Being Taught by Cupid to Sing [reverse]' +p161446 +sg25270 +S'Pisanello' +p161447 +sa(dp161448 +g25268 +S'Sigismondo Pandolfo Malatesta, 1417-1468, Lord of Rimini and Fano [obverse]' +p161449 +sg25270 +S'Pisanello' +p161450 +sg25273 +S'bronze' +p161451 +sg25275 +S'c. 1445' +p161452 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dca.jpg' +p161453 +sg25267 +g27 +sa(dp161454 +g25268 +S'Sigismondo Armed and Holding a Sword [reverse]' +p161455 +sg25270 +S'Pisanello' +p161456 +sg25273 +S'bronze' +p161457 +sg25275 +S'c. 1445' +p161458 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dcb.jpg' +p161459 +sg25267 +g27 +sa(dp161460 +g25268 +S'Sigismondo Pandolfo Malatesta, 1417-1468, Lord of Rimini 1432 [obverse]' +p161461 +sg25270 +S'Pisanello' +p161462 +sg25273 +S'lead' +p161463 +sg25275 +S'1445' +p161464 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00069/a000694b.jpg' +p161465 +sg25267 +g27 +sa(dp161466 +g25268 +S'Sigismondo on a Charger before a Fortress [reverse]' +p161467 +sg25270 +S'Pisanello' +p161468 +sg25273 +S'lead' +p161469 +sg25275 +S'1445' +p161470 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00069/a000694c.jpg' +p161471 +sg25267 +g27 +sa(dp161472 +g25268 +S'The Judgment of Trajan' +p161473 +sg25270 +S'Sebald Beham' +p161474 +sg25273 +S'engraving' +p161475 +sg25275 +S'1537' +p161476 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a83b.jpg' +p161477 +sg25267 +g27 +sa(dp161478 +g25273 +S'lead' +p161479 +sg25267 +g27 +sg25275 +S'1445' +p161480 +sg25268 +S'Sigismondo Pandolfo Malatesta, 1417-1468, Lord of Rimini 1432 [obverse]' +p161481 +sg25270 +S'Pisanello' +p161482 +sa(dp161483 +g25273 +S'lead' +p161484 +sg25267 +g27 +sg25275 +S'1445' +p161485 +sg25268 +S'Sigismondo on a Charger before a Fortress [reverse]' +p161486 +sg25270 +S'Pisanello' +p161487 +sa(dp161488 +g25268 +S'Domenico Novello Malatesta, 1418-1465, Lord of Cesena and Cervia 1429 [obverse]' +p161489 +sg25270 +S'Pisanello' +p161490 +sg25273 +S'bronze' +p161491 +sg25275 +S'c. 1445' +p161492 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066cd.jpg' +p161493 +sg25267 +g27 +sa(dp161494 +g25268 +S'Malatesta in Armor, Kneeling Before a Crucifix [reverse]' +p161495 +sg25270 +S'Pisanello' +p161496 +sg25273 +S'bronze' +p161497 +sg25275 +S'c. 1445' +p161498 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066ce.jpg' +p161499 +sg25267 +g27 +sa(dp161500 +g25273 +S'bronze' +p161501 +sg25267 +g27 +sg25275 +S'c. 1447/1448' +p161502 +sg25268 +S'Lodovico III Gonzaga, 1414-1478, 2nd Marquess of Mantua 1444 (obverse)' +p161503 +sg25270 +S'Pisanello' +p161504 +sa(dp161505 +g25273 +S'bronze' +p161506 +sg25267 +g27 +sg25275 +S'c. 1447/1448' +p161507 +sg25268 +S'The Marquess in Armor, Riding [reverse]' +p161508 +sg25270 +S'Pisanello' +p161509 +sa(dp161510 +g25268 +S'Cecilia Gonzaga, 1426-1451, daughter of Gianfrancesco I [obverse]' +p161511 +sg25270 +S'Pisanello' +p161512 +sg25273 +S'lead' +p161513 +sg25275 +S'1447' +p161514 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000642b.jpg' +p161515 +sg25267 +g27 +sa(dp161516 +g25268 +S'Innocence and Unicorn in a Moonlit Landscape [reverse]' +p161517 +sg25270 +S'Pisanello' +p161518 +sg25273 +S'lead' +p161519 +sg25275 +S'1447' +p161520 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000642c.jpg' +p161521 +sg25267 +g27 +sa(dp161522 +g25268 +S"Vittorino de' Rambaldoni da Feltre, 1379-1446, Humanist [obverse]" +p161523 +sg25270 +S'Pisanello' +p161524 +sg25273 +S'bronze' +p161525 +sg25275 +S'c. 1446' +p161526 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ff80.jpg' +p161527 +sg25267 +g27 +sa(dp161528 +g25268 +S'Pelican in Her Piety [reverse]' +p161529 +sg25270 +S'Pisanello' +p161530 +sg25273 +S'bronze' +p161531 +sg25275 +S'c. 1446' +p161532 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ff7f.jpg' +p161533 +sg25267 +g27 +sa(dp161534 +g25268 +S"Trajan's Justice" +p161535 +sg25270 +S'Sebald Beham' +p161536 +sg25273 +S'engraving' +p161537 +sg25275 +S'1537' +p161538 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a83c.jpg' +p161539 +sg25267 +g27 +sa(dp161540 +g25268 +S'Alfonso V of Aragon, 1394-1458, King of Naples and Sicily 1443 [obverse]' +p161541 +sg25270 +S'Pisanello' +p161542 +sg25273 +S'lead' +p161543 +sg25275 +S'1449' +p161544 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000642e.jpg' +p161545 +sg25267 +g27 +sa(dp161546 +g25268 +S'Eagle and Lesser Birds of Prey in a Rocky Landscape [reverse]' +p161547 +sg25270 +S'Pisanello' +p161548 +sg25273 +S'lead' +p161549 +sg25275 +S'1449' +p161550 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000642d.jpg' +p161551 +sg25267 +g27 +sa(dp161552 +g25273 +S'bronze' +p161553 +sg25267 +g27 +sg25275 +S'probably 1449' +p161554 +sg25268 +S'Alfonso V of Aragon, 1394-1458, King of Naples and Sicily 1443' +p161555 +sg25270 +S'Pisanello' +p161556 +sa(dp161557 +g25268 +S'Alfonso V of Aragon, 1394-1458, King of Naples and Sicily 1443 [obverse]' +p161558 +sg25270 +S'Pisanello' +p161559 +sg25273 +S'bronze//Late cast' +p161560 +sg25275 +S'c. 1449' +p161561 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dcc.jpg' +p161562 +sg25267 +g27 +sa(dp161563 +g25268 +S'Angel in a Car Drawn by Horses' +p161564 +sg25270 +S'Pisanello' +p161565 +sg25273 +S'bronze//Late cast' +p161566 +sg25275 +S'c. 1449' +p161567 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dcd.jpg' +p161568 +sg25267 +g27 +sa(dp161569 +g25268 +S"Don I\xc3\xb1igo d'Avalos, d. 1484, Grand Chamberlain of Naples 1449 [obverse]" +p161570 +sg25270 +S'Pisanello' +p161571 +sg25273 +S'bronze' +p161572 +sg25275 +S'c. 1448/1449' +p161573 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005560.jpg' +p161574 +sg25267 +g27 +sa(dp161575 +g25268 +S'Sphere Representing Earth, Sea, and Sky [reverse]' +p161576 +sg25270 +S'Pisanello' +p161577 +sg25273 +S'bronze' +p161578 +sg25275 +S'c. 1448/1449' +p161579 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000642f.jpg' +p161580 +sg25267 +g27 +sa(dp161581 +g25273 +S'bronze' +p161582 +sg25267 +g27 +sg25275 +S'c. 1450' +p161583 +sg25268 +S'Alfonso V of Aragon, 1394-1458, King of Naples and Sicily 1442 [obverse]' +p161584 +sg25270 +S'Paolo da Ragusa' +p161585 +sa(dp161586 +g25273 +S'bronze' +p161587 +sg25267 +g27 +sg25275 +S'c. 1450' +p161588 +sg25268 +S'Female Figure with Purse and Scepter [reverse]' +p161589 +sg25270 +S'Paolo da Ragusa' +p161590 +sa(dp161591 +g25273 +S'lead' +p161592 +sg25267 +g27 +sg25275 +S'1463' +p161593 +sg25268 +S"Rene d'Anjou, 1409-1480, King of Naples 1435-1442, and Jeanne de Laval, died 1498 [obverse]" +p161594 +sg25270 +S'Francesco Laurana' +p161595 +sa(dp161596 +g25268 +S'Moses and Aaron' +p161597 +sg25270 +S'Sebald Beham' +p161598 +sg25273 +S'engraving' +p161599 +sg25275 +S'1526' +p161600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a81f.jpg' +p161601 +sg25267 +g27 +sa(dp161602 +g25273 +S'lead' +p161603 +sg25267 +g27 +sg25275 +S'1463' +p161604 +sg25268 +S'Peace Holding an Olive Branch and Helmet [reverse]' +p161605 +sg25270 +S'Francesco Laurana' +p161606 +sa(dp161607 +g25273 +S'lead' +p161608 +sg25267 +g27 +sg25275 +S'1463' +p161609 +sg25268 +S"Rene d'Anjou, 1409-1480, King of Naples 1435-1442, and Jeanne de Laval, died 1498 [obverse]" +p161610 +sg25270 +S'Francesco Laurana' +p161611 +sa(dp161612 +g25273 +S'lead' +p161613 +sg25267 +g27 +sg25275 +S'1463' +p161614 +sg25268 +S'Peace Holding an Olive Branch and Helmet [reverse]' +p161615 +sg25270 +S'Francesco Laurana' +p161616 +sa(dp161617 +g25273 +S'bronze//Late cast' +p161618 +sg25267 +g27 +sg25275 +S'1464' +p161619 +sg25268 +S"Jean d'Anjou, 1426-1470, Duke of Calabria and Lorraine [obverse]" +p161620 +sg25270 +S'Francesco Laurana' +p161621 +sa(dp161622 +g25273 +S'bronze//Late cast' +p161623 +sg25267 +g27 +sg25275 +S'1464' +p161624 +sg25268 +S'Temple Surmounted by Figure of Saint Michael [reverse]' +p161625 +sg25270 +S'Francesco Laurana' +p161626 +sa(dp161627 +g25273 +S'lead//Decayed' +p161628 +sg25267 +g27 +sg25275 +S'c. 1460/1466' +p161629 +sg25268 +S'Louis XI, 1423-1483, King of France 1461 [obverse]' +p161630 +sg25270 +S'Francesco Laurana' +p161631 +sa(dp161632 +g25273 +S'lead//Decayed' +p161633 +sg25267 +g27 +sg25275 +S'c. 1460/1466' +p161634 +sg25268 +S'Concordia Holding a Lily Scepter and an Olive Branch' +p161635 +sg25270 +S'Francesco Laurana' +p161636 +sa(dp161637 +g25273 +S', c. 1441' +p161638 +sg25267 +g27 +sg25275 +S'\n' +p161639 +sg25268 +S"Borso d'Este, 1413-1471, Marquess of Este [obverse]" +p161640 +sg25270 +S'Amadio Amedei, called Amadio da Milano' +p161641 +sa(dp161642 +g25273 +S', c. 1441' +p161643 +sg25267 +g27 +sg25275 +S'\n' +p161644 +sg25268 +S'Marigold and Door Knocker [reverse]' +p161645 +sg25270 +S'Amadio Amedei, called Amadio da Milano' +p161646 +sa(dp161647 +g25268 +S"Niccolo III d'Este, 1383-1441, Marquess of Ferrara 1393 [obverse]" +p161648 +sg25270 +S'Amadio Amedei, called Amadio da Milano' +p161649 +sg25273 +S', probably 1437/1441' +p161650 +sg25275 +S'\n' +p161651 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006430.jpg' +p161652 +sg25267 +g27 +sa(dp161653 +g25268 +S'Death and the Courtesan' +p161654 +sg25270 +S'Artist Information (' +p161655 +sg25273 +S'German, 1500 - 1550' +p161656 +sg25275 +S'(artist after)' +p161657 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000ae79.jpg' +p161658 +sg25267 +g27 +sa(dp161659 +g25273 +S', probably 1437/1441' +p161660 +sg25267 +g27 +sg25275 +S'\n' +p161661 +sg25268 +S'The Este Shield [reverse]' +p161662 +sg25270 +S'Amadio Amedei, called Amadio da Milano' +p161663 +sa(dp161664 +g25273 +S'bronze' +p161665 +sg25267 +g27 +sg25275 +S'c. 1445/1450' +p161666 +sg25268 +S'Antonio Pisano, called Pisanello, the Painter and Medallist' +p161667 +sg25270 +S'Nicholaus' +p161668 +sa(dp161669 +g25273 +S'bronze//After-cast' +p161670 +sg25267 +g27 +sg25275 +S'c. 1444/1462' +p161671 +sg25268 +S'Saint Bernardino of Siena, 1380-1444, Canonized 1450 [obverse]' +p161672 +sg25270 +S'Antonio Marescotti' +p161673 +sa(dp161674 +g25273 +S'bronze//After-cast' +p161675 +sg25267 +g27 +sg25275 +S'c. 1444/1462' +p161676 +sg25268 +S'The Trigram IHS in a Flaming Halo [reverse]' +p161677 +sg25270 +S'Antonio Marescotti' +p161678 +sa(dp161679 +g25268 +S'Antonio Pisano, called Pisanello, the Painter and Medallist [obverse]' +p161680 +sg25270 +S'Antonio Marescotti' +p161681 +sg25273 +S'bronze' +p161682 +sg25275 +S'c. 1440/1443' +p161683 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a03.jpg' +p161684 +sg25267 +g27 +sa(dp161685 +g25268 +S'Initials of the Seven Virtues [reverse]' +p161686 +sg25270 +S'Antonio Marescotti' +p161687 +sg25273 +S'bronze' +p161688 +sg25275 +S'c. 1440/1443' +p161689 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e00b.jpg' +p161690 +sg25267 +g27 +sa(dp161691 +g25273 +S'bronze' +p161692 +sg25267 +g27 +sg25275 +S'c. 1444/1462' +p161693 +sg25268 +S'Guilio Cesare Varano, c. 1430-1502, Lord of Camerino' +p161694 +sg25270 +S'Antonio Marescotti' +p161695 +sa(dp161696 +g25273 +S'lead//Twice pierced' +p161697 +sg25267 +g27 +sg25275 +S'c. 1464' +p161698 +sg25268 +S'Ginevra Sforza, 1442-1507, Wife of GIovanni II Bentivoglio 1464' +p161699 +sg25270 +S'Antonio Marescotti' +p161700 +sa(dp161701 +g25273 +S'lead' +p161702 +sg25267 +g27 +sg25275 +S'1460' +p161703 +sg25268 +S"Borso d'Este, 1413-1471, Marquess of Ferrara 1450, Duke of Modena and Reggio 1452 [obverse]" +p161704 +sg25270 +S'Jacopo Lixignolo' +p161705 +sa(dp161706 +g25273 +S'lead' +p161707 +sg25267 +g27 +sg25275 +S'1460' +p161708 +sg25268 +S'Unicorn Dipping Its Horn into a Stream [reverse]' +p161709 +sg25270 +S'Jacopo Lixignolo' +p161710 +sa(dp161711 +g25273 +S'etching' +p161712 +sg25267 +g27 +sg25275 +S'unknown date\n' +p161713 +sg25268 +S'Katrina' +p161714 +sg25270 +S'William Auerbach-Levy' +p161715 +sa(dp161716 +g25273 +S'lead' +p161717 +sg25267 +g27 +sg25275 +S'1460' +p161718 +sg25268 +S"Borso d'Este, 1413-1471, Marquess of Ferrara 1450, Duke of Modena and Reggio 1452 [obverse]" +p161719 +sg25270 +S'Petrecino' +p161720 +sa(dp161721 +g25273 +S'lead' +p161722 +sg25267 +g27 +sg25275 +S'1460' +p161723 +sg25268 +S'Hexogonal Font in a Landscape [reverse]' +p161724 +sg25270 +S'Petrecino' +p161725 +sa(dp161726 +g25268 +S"Ercole I d'Este, 1431-1505, Duke of Ferrara, Modena, and Reggio 1471" +p161727 +sg25270 +S"Baldassare d'Este" +p161728 +sg25273 +S'brass//With loop' +p161729 +sg25275 +S'1472' +p161730 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063fe.jpg' +p161731 +sg25267 +g27 +sa(dp161732 +g25273 +S', 1472' +p161733 +sg25267 +g27 +sg25275 +S'\n' +p161734 +sg25268 +S"Ercole I d'Este, 1431-1505, Duke of Ferrara, Modena, and Reggio 1471 [obverse]" +p161735 +sg25270 +S'Lodovico Coradino' +p161736 +sa(dp161737 +g25273 +S', 1472' +p161738 +sg25267 +g27 +sg25275 +S'\n' +p161739 +sg25268 +S'Hercules and Three Columns in the Sea [reverse]' +p161740 +sg25270 +S'Lodovico Coradino' +p161741 +sa(dp161742 +g25273 +S'overall (height measured at center): 8.38 x 6.67 cm (3 5/16 x 2 5/8 in.)\r\ngross weight: 280.43 gr (0.618 lb.)' +p161743 +sg25267 +g27 +sg25275 +S'\nlead' +p161744 +sg25268 +S"Arcarino Foresto d'Este, Legendary Ancestor of the Estensi" +p161745 +sg25270 +S'Ferrarese 15th Century' +p161746 +sa(dp161747 +g25273 +S'overall (diameter): 3.04 cm (1 3/16 in.)\r\ngross weight: 11.91 gr (0.026 lb.)\r\naxis: 12:00' +p161748 +sg25267 +g27 +sg25275 +S'\nbronze' +p161749 +sg25268 +S"Borso d'Este, 1413-1471, Marquess of Ferrara 150, Duke of Modena and Reggio 1452 [obverse]" +p161750 +sg25270 +S'Ferrarese 15th Century' +p161751 +sa(dp161752 +g25273 +S'overall (diameter): 3.04 cm (1 3/16 in.)\r\ngross weight: 11.91 gr (0.026 lb.)\r\naxis: 12:00' +p161753 +sg25267 +g27 +sg25275 +S'\nbronze' +p161754 +sg25268 +S'Shield of Este on Floriated Ground [reverse]' +p161755 +sg25270 +S'Ferrarese 15th Century' +p161756 +sa(dp161757 +g25273 +S'overall (diameter): 6.65 cm (2 5/8 in.)\r\ngross weight: 85.78 gr (0.189 lb.)\r\naxis: 12:00' +p161758 +sg25267 +g27 +sg25275 +S'\nbronze' +p161759 +sg25268 +S"Alfonso I d'Este, 1476-1534 [obverse]" +p161760 +sg25270 +S'Ferrarese 15th Century' +p161761 +sa(dp161762 +g25273 +S'overall (diameter): 6.65 cm (2 5/8 in.)\r\ngross weight: 85.78 gr (0.189 lb.)\r\naxis: 12:00' +p161763 +sg25267 +g27 +sg25275 +S'\nbronze' +p161764 +sg25268 +S'Alfonso as Infant Hercules [reverse]' +p161765 +sg25270 +S'Ferrarese 15th Century' +p161766 +sa(dp161767 +g25268 +S'Convoi Fun\xc3\xa8bre au Boulevard de Clichy (Funeral Procession on the Boulevard de Clichy)' +p161768 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p161769 +sg25273 +S'heliogravure, etching, aquatint, and drypoint with burnishing in blue-green and brown-black on toned wove paper' +p161770 +sg25275 +S'1887' +p161771 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a000916f.jpg' +p161772 +sg25267 +g27 +sa(dp161773 +g25273 +S'overall (diameter): 9.24 cm (3 5/8 in.)\r\ngross weight: 219.81 gr (0.485 lb.)\r\naxis: 12:00' +p161774 +sg25267 +g27 +sg25275 +S'\nbronze//Weak cast' +p161775 +sg25268 +S"Ercole I d'Este, 1431-1505, Duke of Ferrara, Modena, and Reggio 1471 [obverse]" +p161776 +sg25270 +S'Ferrarese 15th Century' +p161777 +sa(dp161778 +g25273 +S'overall (diameter): 9.24 cm (3 5/8 in.)\r\ngross weight: 219.81 gr (0.485 lb.)\r\naxis: 12:00' +p161779 +sg25267 +g27 +sg25275 +S'\nbronze//Weak cast' +p161780 +sg25268 +S'Putti Receiving Shower of Este Diamond Rings [reverse]' +p161781 +sg25270 +S'Ferrarese 15th Century' +p161782 +sa(dp161783 +g25273 +S'overall (diameter): 6.85 cm (2 11/16 in.)\r\ngross weight: 70.51 gr (0.155 lb.)' +p161784 +sg25267 +g27 +sg25275 +S'\ngilt bronze' +p161785 +sg25268 +S"Ercole I d'Este, 1431-1505, Duke of Ferrara, Modena, and Reggio 1471" +p161786 +sg25270 +S'Ferrarese 15th Century' +p161787 +sa(dp161788 +g25273 +S'overall: 6.98 x 4.79 cm (2 3/4 x 1 7/8 in.)\r\ngross weight: 111.86 gr (0.247 lb.)' +p161789 +sg25267 +g27 +sg25275 +S'\nbronze' +p161790 +sg25268 +S'Portrait of a Man' +p161791 +sg25270 +S'Ferrarese 15th Century' +p161792 +sa(dp161793 +g25273 +S'overall: 4.42 x 3.36 cm (1 3/4 x 1 5/16 in.)\r\ngross weight: 31.15 gr (0.069 lb.)' +p161794 +sg25267 +g27 +sg25275 +S'\nbronze' +p161795 +sg25268 +S'Portrait of a Man' +p161796 +sg25270 +S'Ferrarese 15th Century' +p161797 +sa(dp161798 +g25273 +S'overall (diameter): 5.07 cm (2 in.)\r\ngross weight: 78.54 gr (0.173 lb.)' +p161799 +sg25267 +g27 +sg25275 +S'\nbronze' +p161800 +sg25268 +S'Portrait of a Man' +p161801 +sg25270 +S'Ferrarese 15th Century' +p161802 +sa(dp161803 +g25273 +S'overall: 4.31 x 3.68 cm (1 11/16 x 1 7/16 in.)\r\ngross weight: 30.33 gr (0.067 lb.)' +p161804 +sg25267 +g27 +sg25275 +S'\nbronze' +p161805 +sg25268 +S'Portrait of a Boy' +p161806 +sg25270 +S'Ferrarese 15th Century' +p161807 +sa(dp161808 +g25273 +S'overall (diameter): 6.51 cm (2 9/16 in.)\r\ngross weight: 100.67 gr (0.222 lb.)' +p161809 +sg25267 +g27 +sg25275 +S'\nbronze' +p161810 +sg25268 +S'Portrait of a Man' +p161811 +sg25270 +S'Ferrarese 15th Century' +p161812 +sa(dp161813 +g25273 +S'overall: 5.55 x 3.77 cm (2 3/16 x 1 1/2 in.)\r\ngross weight: 77.1 gr (0.17 lb.)' +p161814 +sg25267 +g27 +sg25275 +S'\nbronze//Late cast' +p161815 +sg25268 +S'Portrait of a Man' +p161816 +sg25270 +S'Ferrarese 15th Century' +p161817 +sa(dp161818 +g25273 +S'overall: 5.98 x 3.71 cm (2 3/8 x 1 7/16 in.)\r\ngross weight: 112.52 gr (0.248 lb.)' +p161819 +sg25267 +g27 +sg25275 +S'\nbronze' +p161820 +sg25268 +S'Portrait of a Man' +p161821 +sg25270 +S'Ferrarese 15th Century' +p161822 +sa(dp161823 +g25268 +S'La Maison Maudite (The House of the Damned)' +p161824 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p161825 +sg25273 +S'etching' +p161826 +sg25275 +S'c. 1883/1885' +p161827 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009158.jpg' +p161828 +sg25267 +g27 +sa(dp161829 +g25273 +S'overall (diameter): 7.45 cm (2 15/16 in.)\r\ngross weight: 61.34 gr (0.135 lb.)\r\naxis:12:00' +p161830 +sg25267 +g27 +sg25275 +S'\nbronze' +p161831 +sg25268 +S'Portrait of a Man [obverse]' +p161832 +sg25270 +S'Ferrarese 15th Century' +p161833 +sa(dp161834 +g25273 +S'overall (diameter): 7.45 cm (2 15/16 in.)\r\ngross weight: 61.34 gr (0.135 lb.)\r\naxis:12:00' +p161835 +sg25267 +g27 +sg25275 +S'\nbronze' +p161836 +sg25268 +S'Object Resembling Double Axe-head [reverse]' +p161837 +sg25270 +S'Ferrarese 15th Century' +p161838 +sa(dp161839 +g25273 +S'overall (octagonal): 6.42 x 4.58 cm (2 1/2 x 1 13/16 in.)\r\ngross weight: 63.75 gr (0.141 lb.)' +p161840 +sg25267 +g27 +sg25275 +S'\nbronze' +p161841 +sg25268 +S'Portrait of a Woman' +p161842 +sg25270 +S'Ferrarese 15th Century' +p161843 +sa(dp161844 +g25273 +S'overall (irregular): 5.1 x 3.8 cm (2 x 1 1/2 in.) gross weight: 35 gr' +p161845 +sg25267 +g27 +sg25275 +S'\nbronze' +p161846 +sg25268 +S'Portrait of a Woman' +p161847 +sg25270 +S'Ferrarese 15th Century' +p161848 +sa(dp161849 +g25273 +S'overall: 4.79 x 3.71 cm (1 7/8 x 1 7/16 in.)\r\ngross weight: 63.3 gr (0.14 lb.)' +p161850 +sg25267 +g27 +sg25275 +S'\nbronze' +p161851 +sg25268 +S'Portrait of a Woman' +p161852 +sg25270 +S'Ferrarese 15th Century' +p161853 +sa(dp161854 +g25268 +S'Guarino da Verona, 1374-1460, Humanist [obverse]' +p161855 +sg25270 +S"Matteo de' Pasti" +p161856 +sg25273 +S'bronze' +p161857 +sg25275 +S'c. 1446' +p161858 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006431.jpg' +p161859 +sg25267 +g27 +sa(dp161860 +g25268 +S'Fountain Surmounted by a Nude Male Figure [reverse]' +p161861 +sg25270 +S"Matteo de' Pasti" +p161862 +sg25273 +S'bronze' +p161863 +sg25275 +S'c. 1446' +p161864 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a000661a.jpg' +p161865 +sg25267 +g27 +sa(dp161866 +g25268 +S'Leone Battista Alberti, 1404-1472, Architect and Writer on Art and Science [obverse]' +p161867 +sg25270 +S"Matteo de' Pasti" +p161868 +sg25273 +S'bronze' +p161869 +sg25275 +S'1446/1450' +p161870 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006432.jpg' +p161871 +sg25267 +g27 +sa(dp161872 +g25268 +S'Winged Human Eye [reverse]' +p161873 +sg25270 +S"Matteo de' Pasti" +p161874 +sg25273 +S'bronze' +p161875 +sg25275 +S'1446/1450' +p161876 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a000664b.jpg' +p161877 +sg25267 +g27 +sa(dp161878 +g25268 +S'Jesus Christ [obverse]' +p161879 +sg25270 +S"Matteo de' Pasti" +p161880 +sg25273 +S'bronze' +p161881 +sg25275 +S'1446/1450' +p161882 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006462.jpg' +p161883 +sg25267 +g27 +sa(dp161884 +g25268 +S'La Place Pigalle en 1878 (Place Pigalle in 1878)' +p161885 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p161886 +sg25273 +S'etching, aquatint, drypoint, and roulette in black on toned paper' +p161887 +sg25275 +S'1878' +p161888 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009162.jpg' +p161889 +sg25267 +g27 +sa(dp161890 +g25268 +S'Christ in the Tomb [reverse]' +p161891 +sg25270 +S"Matteo de' Pasti" +p161892 +sg25273 +S'bronze' +p161893 +sg25275 +S'1446/1450' +p161894 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006463.jpg' +p161895 +sg25267 +g27 +sa(dp161896 +g25273 +S'bronze' +p161897 +sg25267 +g27 +sg25275 +S'1446' +p161898 +sg25268 +S'Sigismondo Pandolfo Malatesta, 1417-1468, Lord of Rimini and Fano [obverse]' +p161899 +sg25270 +S"Matteo de' Pasti" +p161900 +sa(dp161901 +g25273 +S'bronze' +p161902 +sg25267 +g27 +sg25275 +S'1446' +p161903 +sg25268 +S'Shield, Helmet, Elephant-crest, and Mantling [reverse]' +p161904 +sg25270 +S"Matteo de' Pasti" +p161905 +sa(dp161906 +g25268 +S'Isotta degli Atti, 1432/1433-1474, Mistress 1446, then Wife after 1453, of Sigismondo Malatesta [obverse]' +p161907 +sg25270 +S"Matteo de' Pasti" +p161908 +sg25273 +S'bronze' +p161909 +sg25275 +S'1446' +p161910 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e7e.jpg' +p161911 +sg25267 +g27 +sa(dp161912 +g25268 +S'The Malatesta Elephant in a Meadow [reverse]' +p161913 +sg25270 +S"Matteo de' Pasti" +p161914 +sg25273 +S'bronze' +p161915 +sg25275 +S'1446' +p161916 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063ff.jpg' +p161917 +sg25267 +g27 +sa(dp161918 +g25268 +S'Sigismondo Pandolfo Malatesta, 1417-1468, Lord of Rimini and Fano [obverse]' +p161919 +sg25270 +S"Matteo de' Pasti" +p161920 +sg25273 +S'bronze' +p161921 +sg25275 +S'1446' +p161922 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006401.jpg' +p161923 +sg25267 +g27 +sa(dp161924 +g25268 +S'The Castle of Rimini [reverse]' +p161925 +sg25270 +S"Matteo de' Pasti" +p161926 +sg25273 +S'bronze' +p161927 +sg25275 +S'1446' +p161928 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006400.jpg' +p161929 +sg25267 +g27 +sa(dp161930 +g25273 +S'bronze//Rough cast' +p161931 +sg25267 +g27 +sg25275 +S'1446' +p161932 +sg25268 +S'Sigismondo Pandolfo Malatesta, 1417-1468, Lord of Rimini and Fano [obverse]' +p161933 +sg25270 +S"Matteo de' Pasti" +p161934 +sa(dp161935 +g25273 +S'bronze//Rough cast' +p161936 +sg25267 +g27 +sg25275 +S'1446' +p161937 +sg25268 +S'Fortitude Holding a Broken Column [reverse]' +p161938 +sg25270 +S"Matteo de' Pasti" +p161939 +sa(dp161940 +g25273 +S'bronze' +p161941 +sg25267 +g27 +sg25275 +S'1446' +p161942 +sg25268 +S'Sigismondo Pandolfo Malatesta, 1417-1468, Lord of Rimini and Fano [obverse]' +p161943 +sg25270 +S"Matteo de' Pasti" +p161944 +sa(dp161945 +g25268 +S'La Place des Martyrs et La Taverne du Bagne (The Place des Martyrs and the Jailhouse Tavern)' +p161946 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p161947 +sg25273 +S'etching, aquatint, lift-ground aquatint, and drypoint in blue-black on brown laid paper' +p161948 +sg25275 +S'1885' +p161949 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005740.jpg' +p161950 +sg25267 +g27 +sa(dp161951 +g25273 +S'bronze' +p161952 +sg25267 +g27 +sg25275 +S'1446' +p161953 +sg25268 +S'The Castle of Rimini [reverse]' +p161954 +sg25270 +S"Matteo de' Pasti" +p161955 +sa(dp161956 +g25273 +S'bronze' +p161957 +sg25267 +g27 +sg25275 +S'1446' +p161958 +sg25268 +S'Isotta degli Atti, 1432/1433-1474, Mistress 1446, then Wife after 1453, of Sigismondo Malatesta [obverse]' +p161959 +sg25270 +S"Matteo de' Pasti" +p161960 +sa(dp161961 +g25273 +S'bronze' +p161962 +sg25267 +g27 +sg25275 +S'1446' +p161963 +sg25268 +S'The Malatesta Elephant in a Meadow [reverse]' +p161964 +sg25270 +S"Matteo de' Pasti" +p161965 +sa(dp161966 +g25268 +S'Isotta degli Atti, 1432/1433-1474, Mistress 1446, then Wife after 1453, of Sigismondo Malatesta [obverse]' +p161967 +sg25270 +S"Matteo de' Pasti" +p161968 +sg25273 +S'bronze' +p161969 +sg25275 +S'c. 1446' +p161970 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c587.jpg' +p161971 +sg25267 +g27 +sa(dp161972 +g25268 +S'Closed Book [reverse]' +p161973 +sg25270 +S"Matteo de' Pasti" +p161974 +sg25273 +S'bronze' +p161975 +sg25275 +S'c. 1446' +p161976 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c586.jpg' +p161977 +sg25267 +g27 +sa(dp161978 +g25273 +S'bronze' +p161979 +sg25267 +g27 +sg25275 +S'1446' +p161980 +sg25268 +S'Isotta degli Atti, 1432/1433-1474, Mistress 1446, then Wife after 1453, of Sigismondo Malatesta [obverse]' +p161981 +sg25270 +S"Matteo de' Pasti" +p161982 +sa(dp161983 +g25273 +S'bronze' +p161984 +sg25267 +g27 +sg25275 +S'1446' +p161985 +sg25268 +S'Closed Book [reverse]' +p161986 +sg25270 +S"Matteo de' Pasti" +p161987 +sa(dp161988 +g25268 +S'Sigismondo Pandolfo Malatesta, 1417-1468, Lord of Rimini and Fano [obverse]' +p161989 +sg25270 +S'Artist Information (' +p161990 +sg25273 +S'Italian, c. 1420 - 1467/1468' +p161991 +sg25275 +S'(artist after)' +p161992 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dc3.jpg' +p161993 +sg25267 +g27 +sa(dp161994 +g25268 +S'San Francesco at Rimini [reverse]' +p161995 +sg25270 +S'Artist Information (' +p161996 +sg25273 +S'Italian, c. 1420 - 1467/1468' +p161997 +sg25275 +S'(artist after)' +p161998 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dc4.jpg' +p161999 +sg25267 +g27 +sa(dp162000 +g25273 +S'Italian, c. 1420 - 1467/1468' +p162001 +sg25267 +g27 +sg25275 +S'(artist after)' +p162002 +sg25268 +S'Sigismondo Pandolfo Malatesta, 1417-1468, Lord of Rimini and Fano [obverse]' +p162003 +sg25270 +S'Artist Information (' +p162004 +sa(dp162005 +g25268 +S'La Travers\xc3\xa9e (The Passage)' +p162006 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p162007 +sg25273 +S'etching, drypoint, roulette, aquatint and stop-out in black on brown laid paper' +p162008 +sg25275 +S'1879-1885' +p162009 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a000916d.jpg' +p162010 +sg25267 +g27 +sa(dp162011 +g25268 +S'Lodovico III Gonzaga, 1414-1478, 2nd Marquess of Mantua 1444 [obverse]' +p162012 +sg25270 +S'Bartolommeo Melioli' +p162013 +sg25273 +S'bronze' +p162014 +sg25275 +S'1475' +p162015 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000645c.jpg' +p162016 +sg25267 +g27 +sa(dp162017 +g25268 +S'The Marquess of Mantua with Faith and Pallas [reverse]' +p162018 +sg25270 +S'Bartolommeo Melioli' +p162019 +sg25273 +S'bronze' +p162020 +sg25275 +S'1475' +p162021 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000645d.jpg' +p162022 +sg25267 +g27 +sa(dp162023 +g25273 +S'bronze' +p162024 +sg25267 +g27 +sg25275 +S'probably 1484' +p162025 +sg25268 +S'Francesco II Gonzaga, 1466-1519, 4th Marquess of Mantua 1484 [obverse]' +p162026 +sg25270 +S'Bartolommeo Melioli' +p162027 +sa(dp162028 +g25273 +S'bronze' +p162029 +sg25267 +g27 +sg25275 +S'probably 1484' +p162030 +sg25268 +S'Health Standing between Sea and Fire [reverse]' +p162031 +sg25270 +S'Bartolommeo Melioli' +p162032 +sa(dp162033 +g25273 +S'bronze' +p162034 +sg25267 +g27 +sg25275 +S'c. 1481' +p162035 +sg25268 +S'Chiara Gonzaga, 1464-1503, Wife of Gilbert de Bourbon 1481 [obverse]' +p162036 +sg25270 +S'Bartolommeo Melioli' +p162037 +sa(dp162038 +g25273 +S'bronze' +p162039 +sg25267 +g27 +sg25275 +S'c. 1481' +p162040 +sg25268 +S"Goldsmiths' Ornaments [reverse]" +p162041 +sg25270 +S'Bartolommeo Melioli' +p162042 +sa(dp162043 +g25273 +S', 1484 or after' +p162044 +sg25267 +g27 +sg25275 +S'\n' +p162045 +sg25268 +S'Francesco II Gonzaga, 1466-1519, 4th Marquess of Mantua 1484 [obverse]' +p162046 +sg25270 +S'Gianfrancesco Ruberti della Grana' +p162047 +sa(dp162048 +g25273 +S', 1484 or after' +p162049 +sg25267 +g27 +sg25275 +S'\n' +p162050 +sg25268 +S'Battle Scene [reverse]' +p162051 +sg25270 +S'Gianfrancesco Ruberti della Grana' +p162052 +sa(dp162053 +g25268 +S'Gianfrancesco Gonzaga di Rodigo, 1445-1496, Lord of Bozzolo, Sabbioneta, and Viadana 1478 [obverse]' +p162054 +sg25270 +S'Antico' +p162055 +sg25273 +S'bronze' +p162056 +sg25275 +S'unknown date\n' +p162057 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00068/a000684d.jpg' +p162058 +sg25267 +g27 +sa(dp162059 +g25268 +S'Fortune, Mars, and Minerva [reverse]' +p162060 +sg25270 +S'Antico' +p162061 +sg25273 +S'bronze' +p162062 +sg25275 +S'unknown date\n' +p162063 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00068/a000684c.jpg' +p162064 +sg25267 +g27 +sa(dp162065 +g25268 +S"Une Matin\xc3\xa9e d'Hiver au Quai de l'Hotel-Dieu (Winter Morning on the Quai de l'Hotel-Dieu)" +p162066 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p162067 +sg25273 +S'etching, aquatint, drypoint, stop-out and roulette on japan paper' +p162068 +sg25275 +S'1876' +p162069 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c409.jpg' +p162070 +sg25267 +g27 +sa(dp162071 +g25268 +S'Antonia del Balzo, 1441-1538, Wife of Gianfrancesco Gonzaga di Rodigo 1479 [obverse]' +p162072 +sg25270 +S'Antico' +p162073 +sg25273 +S'bronze' +p162074 +sg25275 +S'unknown date\n' +p162075 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00068/a000684f.jpg' +p162076 +sg25267 +g27 +sa(dp162077 +g25268 +S'Hope on the Prow of a Broken-Masted Vessel [reverse]' +p162078 +sg25270 +S'Antico' +p162079 +sg25273 +S'bronze' +p162080 +sg25275 +S'unknown date\n' +p162081 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00068/a000684e.jpg' +p162082 +sg25267 +g27 +sa(dp162083 +g25268 +S'Diva Giulia [obverse]' +p162084 +sg25270 +S'Antico' +p162085 +sg25273 +S'bronze' +p162086 +sg25275 +S'unknown date\n' +p162087 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00068/a000684b.jpg' +p162088 +sg25267 +g27 +sa(dp162089 +g25268 +S'Battle Scene [reverse]' +p162090 +sg25270 +S'Antico' +p162091 +sg25273 +S'bronze' +p162092 +sg25275 +S'unknown date\n' +p162093 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00068/a000684a.jpg' +p162094 +sg25267 +g27 +sa(dp162095 +g25273 +S'Italian, c. 1460 - 1528' +p162096 +sg25267 +g27 +sg25275 +S'(related artist)' +p162097 +sg25268 +S"Luca de'Zuhari [obverse]" +p162098 +sg25270 +S'Artist Information (' +p162099 +sa(dp162100 +g25273 +S'Italian, c. 1460 - 1528' +p162101 +sg25267 +g27 +sg25275 +S'(related artist)' +p162102 +sg25268 +S'Venus and Mars [reverse]' +p162103 +sg25270 +S'Artist Information (' +p162104 +sa(dp162105 +g25268 +S'Giulia Astallia [obverse]' +p162106 +sg25270 +S'Artist Information (' +p162107 +sg25273 +S'Italian, c. 1465 - 1512' +p162108 +sg25275 +S'(medalist)' +p162109 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006402.jpg' +p162110 +sg25267 +g27 +sa(dp162111 +g25268 +S'Phoenix on a Pyre Looking at the Sun [reverse]' +p162112 +sg25270 +S'Artist Information (' +p162113 +sg25273 +S'Italian, c. 1465 - 1512' +p162114 +sg25275 +S'(medalist)' +p162115 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006403.jpg' +p162116 +sg25267 +g27 +sa(dp162117 +g25268 +S"Isabella d'Este, 1474-1539, Wife of Francesco II Gonzaga of Mantua 1490 [obverse]" +p162118 +sg25270 +S'Giancristoforo Romano' +p162119 +sg25273 +S'bronze' +p162120 +sg25275 +S'1507' +p162121 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6a8.jpg' +p162122 +sg25267 +g27 +sa(dp162123 +g25268 +S'Astrology and the Sign of Sagittarius [reverse]' +p162124 +sg25270 +S'Giancristoforo Romano' +p162125 +sg25273 +S'bronze' +p162126 +sg25275 +S'probably 1507' +p162127 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ff82.jpg' +p162128 +sg25267 +g27 +sa(dp162129 +g25268 +S"Une Matin\xc3\xa9e d'Hiver au Quai de l'Hotel-Dieu (Winter Morning on the Quai de l'Hotel-Dieu)" +p162130 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p162131 +sg25273 +S'etching, aquatint, drypoint, stop-out, and roulette on heavy woe paper' +p162132 +sg25275 +S'1876' +p162133 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009155.jpg' +p162134 +sg25267 +g27 +sa(dp162135 +g25273 +S'bronze' +p162136 +sg25267 +g27 +sg25275 +S'1507' +p162137 +sg25268 +S'Isabella of Aragon, 1470-1524, Wife of Giangaleazzo Sforza, Duke of Milan, 1489 [obverse]' +p162138 +sg25270 +S'Giancristoforo Romano' +p162139 +sa(dp162140 +g25273 +S'bronze' +p162141 +sg25267 +g27 +sg25275 +S'1507' +p162142 +sg25268 +S'Figure before a Palm Tree [reverse]' +p162143 +sg25270 +S'Giancristoforo Romano' +p162144 +sa(dp162145 +g25268 +S"Lucrezia Borgia, 1480-1519, Wife of Alfonso d'Este of Ferrara 1502" +p162146 +sg25270 +S'Artist Information (' +p162147 +sg25273 +S'Italian, c. 1465 - 1512' +p162148 +sg25275 +S'(related artist)' +p162149 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006433.jpg' +p162150 +sg25267 +g27 +sa(dp162151 +g25268 +S"Lucrezia Borgia, 1480-1519, Wife of Alfonso d'Este of Ferrara 1502" +p162152 +sg25270 +S'Artist Information (' +p162153 +sg25273 +S'Italian, c. 1465 - 1512' +p162154 +sg25275 +S'(related artist)' +p162155 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006434.jpg' +p162156 +sg25267 +g27 +sa(dp162157 +g25273 +S'Italian, c. 1465 - 1512' +p162158 +sg25267 +g27 +sg25275 +S'(related artist)' +p162159 +sg25268 +S'Jacoba Correggia [obverse]' +p162160 +sg25270 +S'Artist Information (' +p162161 +sa(dp162162 +g25273 +S'Italian, c. 1465 - 1512' +p162163 +sg25267 +g27 +sg25275 +S'(related artist)' +p162164 +sg25268 +S'Captive Love Bound to a Tree [reverse]' +p162165 +sg25270 +S'Artist Information (' +p162166 +sa(dp162167 +g25273 +S'Italian, c. 1465 - 1512' +p162168 +sg25267 +g27 +sg25275 +S'(related artist)' +p162169 +sg25268 +S'Maddalena Rossi [obverse]' +p162170 +sg25270 +S'Artist Information (' +p162171 +sa(dp162172 +g25273 +S'Italian, c. 1465 - 1512' +p162173 +sg25267 +g27 +sg25275 +S'(related artist)' +p162174 +sg25268 +S'Captive Love Bound to a Tree [reverse]' +p162175 +sg25270 +S'Artist Information (' +p162176 +sa(dp162177 +g25273 +S'Italian, c. 1465 - 1512' +p162178 +sg25267 +g27 +sg25275 +S'(related artist)' +p162179 +sg25268 +S'Maddalena of Mantua [obverse]' +p162180 +sg25270 +S'Artist Information (' +p162181 +sa(dp162182 +g25273 +S'Italian, c. 1465 - 1512' +p162183 +sg25267 +g27 +sg25275 +S'(related artist)' +p162184 +sg25268 +S'Swan Standing on a Bow and Quiver [reverse]' +p162185 +sg25270 +S'Artist Information (' +p162186 +sa(dp162187 +g25268 +S'La Petite Marine - Souvenir de Medway' +p162188 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p162189 +sg25273 +S'etching, drypoint, aquatint, and roulette in black on laid paper' +p162190 +sg25275 +S'1879' +p162191 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009177.jpg' +p162192 +sg25267 +g27 +sa(dp162193 +g25273 +S'Italian, c. 1465 - 1512' +p162194 +sg25267 +g27 +sg25275 +S'(related artist)' +p162195 +sg25268 +S'Beatrice of Aragon, 1457-1508 [obverse]' +p162196 +sg25270 +S'Artist Information (' +p162197 +sa(dp162198 +g25268 +S'Francesco II Gonzaga, 1466-1519, 4th Marquess of Mantua 1484 [obverse]' +p162199 +sg25270 +S'Gian Marco Cavalli' +p162200 +sg25273 +S'bronze//Struck' +p162201 +sg25275 +S'probably 1484/1506' +p162202 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdd6.jpg' +p162203 +sg25267 +g27 +sa(dp162204 +g25268 +S'The Marquess Giving Alms [reverse]' +p162205 +sg25270 +S'Gian Marco Cavalli' +p162206 +sg25273 +S'bronze//Struck' +p162207 +sg25275 +S'probably 1484/1506' +p162208 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdd7.jpg' +p162209 +sg25267 +g27 +sa(dp162210 +g25268 +S'Francesco II Gonzaga, 1466-1519, 4th Marquess of Mantua 1484 [obverse]' +p162211 +sg25270 +S'Gian Marco Cavalli' +p162212 +sg25273 +S'bronze//Struck' +p162213 +sg25275 +S'probably 1484/1506' +p162214 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdd8.jpg' +p162215 +sg25267 +g27 +sa(dp162216 +g25268 +S'The Marquess Giving Alms [reverse]' +p162217 +sg25270 +S'Gian Marco Cavalli' +p162218 +sg25273 +S'bronze//Struck' +p162219 +sg25275 +S'probably 1484/1506' +p162220 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdd9.jpg' +p162221 +sg25267 +g27 +sa(dp162222 +g25273 +S'bronze' +p162223 +sg25267 +g27 +sg25275 +S'c. 1510' +p162224 +sg25268 +S'Francesco Bonatti, Mantuan Lawyer [obverse]' +p162225 +sg25270 +S'Mea' +p162226 +sa(dp162227 +g25273 +S'bronze' +p162228 +sg25267 +g27 +sg25275 +S'c. 1510' +p162229 +sg25268 +S'Truth Escaping from a Book [reverse]' +p162230 +sg25270 +S'Mea' +p162231 +sa(dp162232 +g25273 +S'bronze' +p162233 +sg25267 +g27 +sg25275 +S'c. 1513' +p162234 +sg25268 +S'Battista Spagnoli of Mantua, 1447-1516, Carmelite Poet [obverse]' +p162235 +sg25270 +S'Mea' +p162236 +sa(dp162237 +g25273 +S'bronze' +p162238 +sg25267 +g27 +sg25275 +S'c. 1513' +p162239 +sg25268 +S'Cherub, Swan, and Eagle [reverse]' +p162240 +sg25270 +S'Mea' +p162241 +sa(dp162242 +g25273 +S'bronze' +p162243 +sg25267 +g27 +sg25275 +S'c. 1510' +p162244 +sg25268 +S'Giovanni Gonzaga, 1474-1525, Condottiere [obverse]' +p162245 +sg25270 +S'Mea' +p162246 +sa(dp162247 +g25268 +S'Les Voisins de Campagne (Country Neighbors)' +p162248 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p162249 +sg25273 +S'etching, aquatint, and drypoint in black on cream laid paper' +p162250 +sg25275 +S'1879/1880' +p162251 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a000980b.jpg' +p162252 +sg25267 +g27 +sa(dp162253 +g25273 +S'bronze' +p162254 +sg25267 +g27 +sg25275 +S'c. 1510' +p162255 +sg25268 +S'Galley in Full Sail [reverse]' +p162256 +sg25270 +S'Mea' +p162257 +sa(dp162258 +g25273 +S'overall (diameter): 5.57 cm (2 3/16 in.)\r\ngross weight: 72.21 gr (0.159 lb.)\r\naxis: 6:00' +p162259 +sg25267 +g27 +sg25275 +S'\nbronze' +p162260 +sg25268 +S'Ortensia Piccolomini [obverse]' +p162261 +sg25270 +S'Mantuan 16th Century' +p162262 +sa(dp162263 +g25273 +S'overall (diameter): 5.57 cm (2 3/16 in.)\r\ngross weight: 72.21 gr (0.159 lb.)\r\naxis: 6:00' +p162264 +sg25267 +g27 +sg25275 +S'\nbronze' +p162265 +sg25268 +S'The Judgment of Paris [reverse]' +p162266 +sg25270 +S'Mantuan 16th Century' +p162267 +sa(dp162268 +g25273 +S'overall (diameter): 3.47 cm (1 3/8 in.)\r\ngross weight: 15.19 gr (0.033 lb.)\r\naxis: 11:00' +p162269 +sg25267 +g27 +sg25275 +S'\nbronze' +p162270 +sg25268 +S'Federigo II Gonzaga, 1500-1540, 5th Marquess of Mantua 1519 and 1st Duke of Mantua 1530 [obverse]' +p162271 +sg25270 +S'Mantuan 16th Century' +p162272 +sa(dp162273 +g25273 +S'overall (diameter): 3.47 cm (1 3/8 in.)\r\ngross weight: 15.19 gr (0.033 lb.)\r\naxis: 11:00' +p162274 +sg25267 +g27 +sg25275 +S'\nbronze' +p162275 +sg25268 +S'Saint Catherine [reverse]' +p162276 +sg25270 +S'Mantuan 16th Century' +p162277 +sa(dp162278 +g25268 +S'Corrado Gonzaga, 1268-1360, Captain of Mantua' +p162279 +sg25270 +S'Mantuan 16th Century' +p162280 +sg25273 +S'overall (diameter): 8.12 cm (3 3/16 in.)\r\ngross weight: 184.23 gr (0.406 lb.)' +p162281 +sg25275 +S'\nbronze' +p162282 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006435.jpg' +p162283 +sg25267 +g27 +sa(dp162284 +g25273 +S'bronze' +p162285 +sg25267 +g27 +sg25275 +S'1456' +p162286 +sg25268 +S'Francesco I Sforza, 1401-1466, 4th Duke of Milan 1450 [obverse]' +p162287 +sg25270 +S'Gianfrancesco Enzola' +p162288 +sa(dp162289 +g25273 +S'bronze' +p162290 +sg25267 +g27 +sg25275 +S'1456' +p162291 +sg25268 +S'Greyhound [reverse]' +p162292 +sg25270 +S'Gianfrancesco Enzola' +p162293 +sa(dp162294 +g25273 +S'bronze' +p162295 +sg25267 +g27 +sg25275 +S'1459' +p162296 +sg25268 +S'Francesco I Sforza, 1401-1466, 4th Duke of Milan 1450 [obverse]' +p162297 +sg25270 +S'Gianfrancesco Enzola' +p162298 +sa(dp162299 +g25273 +S'bronze' +p162300 +sg25267 +g27 +sg25275 +S'1459' +p162301 +sg25268 +S'Galeazzo Maria Sforza, 1444-1476, 5th Duke of Milan 1466 [reverse]' +p162302 +sg25270 +S'Gianfrancesco Enzola' +p162303 +sa(dp162304 +g25268 +S'Ex-Libris pour "L\'Ensorcel\xc3\xa9e" (Bookplate for "L\'Ensorcel\xc3\xa9e")' +p162305 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p162306 +sg25273 +S'etching, drypoint, and aquatint in black-brown on cream laid paper' +p162307 +sg25275 +S'c. 1883/1885' +p162308 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a00097e3.jpg' +p162309 +sg25267 +g27 +sa(dp162310 +g25273 +S'bronze//Rough cast' +p162311 +sg25267 +g27 +sg25275 +S'1461' +p162312 +sg25268 +S'Taddeo di Guidacci Manfredi I, Count of Faenza and Lord of Imola 1449 [obverse]' +p162313 +sg25270 +S'Gianfrancesco Enzola' +p162314 +sa(dp162315 +g25273 +S'bronze//Rough cast' +p162316 +sg25267 +g27 +sg25275 +S'1461' +p162317 +sg25268 +S'Female Figure and Putto [reverse]' +p162318 +sg25270 +S'Gianfrancesco Enzola' +p162319 +sa(dp162320 +g25273 +S'lead//After-cast' +p162321 +sg25267 +g27 +sg25275 +S'1475' +p162322 +sg25268 +S'Costanzo Sforza, 1447-1483, Lord of Pesaro 1473 [obverse]' +p162323 +sg25270 +S'Gianfrancesco Enzola' +p162324 +sa(dp162325 +g25273 +S'lead//After-cast' +p162326 +sg25267 +g27 +sg25275 +S'1475' +p162327 +sg25268 +S'Costanzo Riding in the Country [reverse]' +p162328 +sg25270 +S'Gianfrancesco Enzola' +p162329 +sa(dp162330 +g25273 +S'bronze' +p162331 +sg25267 +g27 +sg25275 +S'1475' +p162332 +sg25268 +S'Costanzo Sforza, 1447-1483, Lord of Pesaro 1473 [obverse]' +p162333 +sg25270 +S'Gianfrancesco Enzola' +p162334 +sa(dp162335 +g25273 +S'bronze' +p162336 +sg25267 +g27 +sg25275 +S'1475' +p162337 +sg25268 +S'Alessandro Sforza, 1409-1468, Lord of Pesaro 1445 [reverse]' +p162338 +sg25270 +S'Gianfrancesco Enzola' +p162339 +sa(dp162340 +g25268 +S'Costanzo Sforza, 1447-1483, Lord of Pesaro 1473 [obverse]' +p162341 +sg25270 +S'Gianfrancesco Enzola' +p162342 +sg25273 +S'bronze//Old cast, untrimmed' +p162343 +sg25275 +S'1475' +p162344 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063ef.jpg' +p162345 +sg25267 +g27 +sa(dp162346 +g25268 +S'The Castle of Pesaro [reverse]' +p162347 +sg25270 +S'Gianfrancesco Enzola' +p162348 +sg25273 +S'bronze//Old cast, untrimmed' +p162349 +sg25275 +S'1475' +p162350 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063f0.jpg' +p162351 +sg25267 +g27 +sa(dp162352 +g25273 +S'bronze' +p162353 +sg25267 +g27 +sg25275 +S'probably 1456/1466' +p162354 +sg25268 +S'Francesco I Sforza, 1401-1466, 4th Duke of Milan 1450' +p162355 +sg25270 +S'Gianfrancesco Enzola' +p162356 +sa(dp162357 +g25273 +S'bronze//Struck' +p162358 +sg25267 +g27 +sg25275 +S'probably 1456/1466' +p162359 +sg25268 +S'Costanzo Sforza, 1447-1483, Lord of Pesaro 1473 [obverse]' +p162360 +sg25270 +S'Gianfrancesco Enzola' +p162361 +sa(dp162362 +g25268 +S'Les Petites Chaumi\xc3\xa8res (Thatched Cottages--Small Plate)' +p162363 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p162364 +sg25273 +S'etching' +p162365 +sg25275 +S'1878' +p162366 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a000980f.jpg' +p162367 +sg25267 +g27 +sa(dp162368 +g25273 +S'bronze//Struck' +p162369 +sg25267 +g27 +sg25275 +S'probably 1456/1466' +p162370 +sg25268 +S'The Castle of Pesaro [reverse]' +p162371 +sg25270 +S'Gianfrancesco Enzola' +p162372 +sa(dp162373 +g25268 +S'Federigo da Montefeltro, 1422-1482, Count of Urbino 1444, and Duke 1474 [obverse]' +p162374 +sg25270 +S'Clemente da Urbino' +p162375 +sg25273 +S'bronze' +p162376 +sg25275 +S'1468' +p162377 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002da0.jpg' +p162378 +sg25267 +g27 +sa(dp162379 +g25268 +S'Eagle with Spread Wings Supporting Devices [reverse]' +p162380 +sg25270 +S'Clemente da Urbino' +p162381 +sg25273 +S'bronze' +p162382 +sg25275 +S'1468' +p162383 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002da1.jpg' +p162384 +sg25267 +g27 +sa(dp162385 +g25273 +S'bronze//Four times pierced' +p162386 +sg25267 +g27 +sg25275 +S'probably 1485/1490' +p162387 +sg25268 +S'Borghese Borghesi, 1414-1490, Jurisconsult of Siena [obverse]' +p162388 +sg25270 +S'Francesco di Giorgio Martini' +p162389 +sa(dp162390 +g25273 +S'bronze//Four times pierced' +p162391 +sg25267 +g27 +sg25275 +S'probably 1485/1490' +p162392 +sg25268 +S'Minerva Holding a Spear and Shield [reverse]' +p162393 +sg25270 +S'Francesco di Giorgio Martini' +p162394 +sa(dp162395 +g25268 +S'Mehmed II, 1430-1481, Sultan of the Turks 1451 [obverse]' +p162396 +sg25270 +S'Costanzo da Ferrara' +p162397 +sg25273 +S'bronze' +p162398 +sg25275 +S'c. 1481' +p162399 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005683.jpg' +p162400 +sg25267 +g27 +sa(dp162401 +g25268 +S'The Sultan Riding [reverse]' +p162402 +sg25270 +S'Costanzo da Ferrara' +p162403 +sg25273 +S'bronze' +p162404 +sg25275 +S'c. 1481' +p162405 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005684.jpg' +p162406 +sg25267 +g27 +sa(dp162407 +g25273 +S'overall (diameter): 5.26 cm (2 1/16 in.)\r\ngross weight: 26.51 gr (0.058 lb.)\r\naxis: 12:00' +p162408 +sg25267 +g27 +sg25275 +S'\nbronze//Broken at edge' +p162409 +sg25268 +S"Andrea Matteo III d'Acquaviva, 1457-1528, Duke of Atri and Teramo 1481 [obverse]" +p162410 +sg25270 +S'Neapolitan 15th Century' +p162411 +sa(dp162412 +g25273 +S'overall (diameter): 5.26 cm (2 1/16 in.)\r\ngross weight: 26.51 gr (0.058 lb.)\r\naxis: 12:00' +p162413 +sg25267 +g27 +sg25275 +S'\nbronze//Broken at edge' +p162414 +sg25268 +S'Crowned Shield of Arms [reverse]' +p162415 +sg25270 +S'Neapolitan 15th Century' +p162416 +sa(dp162417 +g25273 +S'bronze' +p162418 +sg25267 +g27 +sg25275 +S'1494 or before' +p162419 +sg25268 +S'Ferdinand of Aragon, died 1496, Prince of Capua and King of Naples 1495 [obverse]' +p162420 +sg25270 +S'Adriano Fiorentino' +p162421 +sa(dp162422 +g25268 +S'Les Noctambules (The Night Prowlers)' +p162423 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p162424 +sg25273 +S'etching and aquatint with scraping and burnishing in black on light blue laid paper' +p162425 +sg25275 +S'1876/1877' +p162426 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a00097c5.jpg' +p162427 +sg25267 +g27 +sa(dp162428 +g25273 +S'bronze' +p162429 +sg25267 +g27 +sg25275 +S'1494 or before' +p162430 +sg25268 +S'Felicitas Seated, Holding Ears of Corn and Waving Cornucopiae [reverse]' +p162431 +sg25270 +S'Adriano Fiorentino' +p162432 +sa(dp162433 +g25273 +S'bronze' +p162434 +sg25267 +g27 +sg25275 +S'1495/1496' +p162435 +sg25268 +S'Ferdinand II of Aragon, died 1496, Prince of Capua and King of Naples 1495 [obverse]' +p162436 +sg25270 +S'Adriano Fiorentino' +p162437 +sa(dp162438 +g25273 +S'bronze' +p162439 +sg25267 +g27 +sg25275 +S'1495/1496' +p162440 +sg25268 +S'Janiform Head [reverse]' +p162441 +sg25270 +S'Adriano Fiorentino' +p162442 +sa(dp162443 +g25268 +S'Giovanni Gioviano Pontano, 1426-1503, Poet [obverse]' +p162444 +sg25270 +S'Adriano Fiorentino' +p162445 +sg25273 +S'bronze' +p162446 +sg25275 +S'1488 or after' +p162447 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a00067eb.jpg' +p162448 +sg25267 +g27 +sa(dp162449 +g25268 +S'Urania Walking to Right, Holding a Globe and Lyre [reverse]' +p162450 +sg25270 +S'Adriano Fiorentino' +p162451 +sg25273 +S'bronze' +p162452 +sg25275 +S'1488 or after' +p162453 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a00067ea.jpg' +p162454 +sg25267 +g27 +sa(dp162455 +g25268 +S'Elisabetta Gonzaga, died 1526, Duchess of Urbino, Wife of Guidobaldo I 1489 [obverse]' +p162456 +sg25270 +S'Adriano Fiorentino' +p162457 +sg25273 +S'bronze' +p162458 +sg25275 +S'probably after 1502' +p162459 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006459.jpg' +p162460 +sg25267 +g27 +sa(dp162461 +g25268 +S'Female Figure Holding a Bridle [reverse]' +p162462 +sg25270 +S'Adriano Fiorentino' +p162463 +sg25273 +S'bronze' +p162464 +sg25275 +S'probably after 1502' +p162465 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006457.jpg' +p162466 +sg25267 +g27 +sa(dp162467 +g25273 +S'bronze' +p162468 +sg25267 +g27 +sg25275 +S'probably 1488/1499' +p162469 +sg25268 +S'Portrait of a Boy' +p162470 +sg25270 +S'Adriano Fiorentino' +p162471 +sa(dp162472 +g25273 +S'bronze' +p162473 +sg25267 +g27 +sg25275 +S'c. 1524' +p162474 +sg25268 +S'Andrea Caraffa, died 1526, Count of Santa Severina and Viceroy of Naples [obverse]' +p162475 +sg25270 +S'Girolamo Santacroce' +p162476 +sa(dp162477 +g25273 +S'bronze' +p162478 +sg25267 +g27 +sg25275 +S'c. 1524' +p162479 +sg25268 +S'Prudence Holding a Double-Faced Head [reverse]' +p162480 +sg25270 +S'Girolamo Santacroce' +p162481 +sa(dp162482 +g25268 +S'Un D\xc3\xa9barquement en Angleterre (Landing in England)' +p162483 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p162484 +sg25273 +S'etching, drypoint, aquatint (dust ground and spirit ground), roulette, and burnishing in black on oatmeal paper' +p162485 +sg25275 +S'1879' +p162486 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a000915d.jpg' +p162487 +sg25267 +g27 +sa(dp162488 +g25273 +S'overall (diameter): 6.33 cm (2 1/2 in.)\r\ngross weight: 64.72 gr (0.143 lb.)\r\naxis: 12:00' +p162489 +sg25267 +g27 +sg25275 +S'\nbronze' +p162490 +sg25268 +S'Andrea Caraffa, died 1526, Count of Santa Severina and Viceroy of Naples [obverse]' +p162491 +sg25270 +S'Neapolitan 16th Century' +p162492 +sa(dp162493 +g25273 +S'overall (diameter): 6.33 cm (2 1/2 in.)\r\ngross weight: 64.72 gr (0.143 lb.)\r\naxis: 12:00' +p162494 +sg25267 +g27 +sg25275 +S'\nbronze' +p162495 +sg25268 +S'Shield of Caraffa Arms [reverse]' +p162496 +sg25270 +S'Neapolitan 16th Century' +p162497 +sa(dp162498 +g25273 +S'overall (diameter): 6.7 cm (2 5/8 in.)\r\ngross weight: 133.92 gr (0.295 lb.)\r\naxis: 6:00' +p162499 +sg25267 +g27 +sg25275 +S'\nbronze' +p162500 +sg25268 +S'Andrea Caraffa, died 1526, Count of Santa Severina and Viceroy of Naples [obverse]' +p162501 +sg25270 +S'Neapolitan 16th Century' +p162502 +sa(dp162503 +g25273 +S'overall (diameter): 6.7 cm (2 5/8 in.)\r\ngross weight: 133.92 gr (0.295 lb.)\r\naxis: 6:00' +p162504 +sg25267 +g27 +sg25275 +S'\nbronze' +p162505 +sg25268 +S'Shield of Caraffa Arms [reverse]' +p162506 +sg25270 +S'Neapolitan 16th Century' +p162507 +sa(dp162508 +g25273 +S'bronze' +p162509 +sg25267 +g27 +sg25275 +S'c. 1462' +p162510 +sg25268 +S'Bartolommeo Pendaglia, died 1462, Merchant of Ferrara [obverse]' +p162511 +sg25270 +S'Sperandio' +p162512 +sa(dp162513 +g25273 +S'bronze' +p162514 +sg25267 +g27 +sg25275 +S'c. 1462' +p162515 +sg25268 +S'Figure Seated on a Cuirass, Holding a Globe and Spear [reverse]' +p162516 +sg25270 +S'Sperandio' +p162517 +sa(dp162518 +g25273 +S'bronze' +p162519 +sg25267 +g27 +sg25275 +S'c. 1463' +p162520 +sg25268 +S"Antonio Sarzanella de' Manfredi, Este Diplomat [obverse]" +p162521 +sg25270 +S'Sperandio' +p162522 +sa(dp162523 +g25273 +S'bronze' +p162524 +sg25267 +g27 +sg25275 +S'c. 1463' +p162525 +sg25268 +S'Prudence Seated on Two Hounds Holding Manfredi Shield [reverse]' +p162526 +sg25270 +S'Sperandio' +p162527 +sa(dp162528 +g25273 +S'bronze' +p162529 +sg25267 +g27 +sg25275 +S'c. 1462/1463' +p162530 +sg25268 +S'Lodovico Carbone, 1430-1485, Poet [obverse]' +p162531 +sg25270 +S'Sperandio' +p162532 +sa(dp162533 +g25273 +S'bronze' +p162534 +sg25267 +g27 +sg25275 +S'c. 1462/1463' +p162535 +sg25268 +S'Carbone Receiving a Wreath from Calliope [reverse]' +p162536 +sg25270 +S'Sperandio' +p162537 +sa(dp162538 +g25268 +S'Le Petit Enterrement (The Burial - Small Plate)' +p162539 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p162540 +sg25273 +S'etching' +p162541 +sg25275 +S'1878' +p162542 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009811.jpg' +p162543 +sg25267 +g27 +sa(dp162544 +g25268 +S'Francesco I Sforza, 1401-1466, 4th Duke of Milan 1450 [obverse]' +p162545 +sg25270 +S'Sperandio' +p162546 +sg25273 +S'bronze' +p162547 +sg25275 +S'c. 1466' +p162548 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006455.jpg' +p162549 +sg25267 +g27 +sa(dp162550 +g25268 +S'Renaissance Building with Four Cupolas [reverse]' +p162551 +sg25270 +S'Sperandio' +p162552 +sg25273 +S'bronze' +p162553 +sg25275 +S'c. 1466' +p162554 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000645a.jpg' +p162555 +sg25267 +g27 +sa(dp162556 +g25268 +S"Ercole I d'Este, 1431-1505, Duke of Ferrara, and Eleonora of Aragon, 1450-1493, His Wife 1473 [obverse]" +p162557 +sg25270 +S'Sperandio' +p162558 +sg25273 +S'lead' +p162559 +sg25275 +S'probably 1473' +p162560 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdd4.jpg' +p162561 +sg25267 +g27 +sa(dp162562 +g25273 +S'lead' +p162563 +sg25267 +g27 +sg25275 +S'probably 1463/1477' +p162564 +sg25268 +S"Sigismondo d'Este, 1433-1507, Son of Niccolo III d'Este [obverse]" +p162565 +sg25270 +S'Sperandio' +p162566 +sa(dp162567 +g25273 +S'lead' +p162568 +sg25267 +g27 +sg25275 +S'probably 1463/1477' +p162569 +sg25268 +S'Cupid Holding a Palm-branch and Balance [reverse]' +p162570 +sg25270 +S'Sperandio' +p162571 +sa(dp162572 +g25273 +S'bronze' +p162573 +sg25267 +g27 +sg25275 +S'probably 1463/1477' +p162574 +sg25268 +S"Sigismondo d'Este, 1433-1507, Son of Niccolo III d'Este" +p162575 +sg25270 +S'Sperandio' +p162576 +sa(dp162577 +g25273 +S'bronze' +p162578 +sg25267 +g27 +sg25275 +S'c. 1472' +p162579 +sg25268 +S'Pietro Bono Avogario, 1425-1506, Physician and Astrologer [obverse]' +p162580 +sg25270 +S'Sperandio' +p162581 +sa(dp162582 +g25273 +S'bronze' +p162583 +sg25267 +g27 +sg25275 +S'c. 1472' +p162584 +sg25268 +S'Aesculapius, Standing on a Dragon, and Urania on a Globe [reverse]' +p162585 +sg25270 +S'Sperandio' +p162586 +sa(dp162587 +g25273 +S'bronze' +p162588 +sg25267 +g27 +sg25275 +S'1471/1477' +p162589 +sg25268 +S'Agostino Bonfranceschi, c. 1437-1479, Lawyer and Diplomat for the Este Family' +p162590 +sg25270 +S'Sperandio' +p162591 +sa(dp162592 +g25273 +S'lead//Late cast' +p162593 +sg25267 +g27 +sg25275 +S'1473' +p162594 +sg25268 +S'Pellegrino Prisciani, c. 1435-1518, Man of Letters and Agent of the Estensi [obverse]' +p162595 +sg25270 +S'Sperandio' +p162596 +sa(dp162597 +g25268 +S'La Ronde de Nuit (Night Patrol)' +p162598 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p162599 +sg25273 +S'etching, aquatint, and drypoint in black on moderately thick beige laid paper' +p162600 +sg25275 +S'1878' +p162601 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a000915b.jpg' +p162602 +sg25267 +g27 +sa(dp162603 +g25273 +S'lead//Late cast' +p162604 +sg25267 +g27 +sg25275 +S'1473' +p162605 +sg25268 +S'Man Standing on an Eagle [reverse]' +p162606 +sg25270 +S'Sperandio' +p162607 +sa(dp162608 +g25273 +S'bronze' +p162609 +sg25267 +g27 +sg25275 +S'probably 1463/1477' +p162610 +sg25268 +S'Parupus, an Unknown Poet [obverse]' +p162611 +sg25270 +S'Sperandio' +p162612 +sa(dp162613 +g25273 +S'bronze' +p162614 +sg25267 +g27 +sg25275 +S'probably 1463/1477' +p162615 +sg25268 +S'Unicorn-Pegasus [reverse]' +p162616 +sg25270 +S'Sperandio' +p162617 +sa(dp162618 +g25273 +S'lead' +p162619 +sg25267 +g27 +sg25275 +S'1477' +p162620 +sg25268 +S'Carlo Manfredi, 1439-1484, Lord of Faenza 1468-1477' +p162621 +sg25270 +S'Sperandio' +p162622 +sa(dp162623 +g25273 +S'bronze' +p162624 +sg25267 +g27 +sg25275 +S'c. 1478' +p162625 +sg25268 +S'Alessandro Tartagni, 1421-1477, Lawyer [obverse]' +p162626 +sg25270 +S'Sperandio' +p162627 +sa(dp162628 +g25273 +S'bronze' +p162629 +sg25267 +g27 +sg25275 +S'c. 1478' +p162630 +sg25268 +S'Mercury Seated on a Dragon [reverse]' +p162631 +sg25270 +S'Sperandio' +p162632 +sa(dp162633 +g25273 +S'lead' +p162634 +sg25267 +g27 +sg25275 +S'1479' +p162635 +sg25268 +S'Andrea Barbazza, died 1480, Legal Adviser [obverse]' +p162636 +sg25270 +S'Sperandio' +p162637 +sa(dp162638 +g25273 +S'lead' +p162639 +sg25267 +g27 +sg25275 +S'1479' +p162640 +sg25268 +S'Fame Holding a Closed and an Open Book [reverse]' +p162641 +sg25270 +S'Sperandio' +p162642 +sa(dp162643 +g25273 +S'lead' +p162644 +sg25267 +g27 +sg25275 +S'c. 1480' +p162645 +sg25268 +S'Niccol\xc3\xb2 da Correggio, 1450-1508, Count of Brescello 1480 [obverse]' +p162646 +sg25270 +S'Sperandio' +p162647 +sa(dp162648 +g25273 +S'lead' +p162649 +sg25267 +g27 +sg25275 +S'c. 1480' +p162650 +sg25268 +S'Niccolo da Correggio and a Friar [reverse]' +p162651 +sg25270 +S'Sperandio' +p162652 +sa(dp162653 +g25268 +S'Liseuse \xc3\xa0 la Lampe (Woman Reading by Lamplight)' +p162654 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p162655 +sg25273 +S'etching with scraping and burnishing in black on thin tissue paper' +p162656 +sg25275 +S'1879' +p162657 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a00097e2.jpg' +p162658 +sg25267 +g27 +sa(dp162659 +g25273 +S'gilt bronze' +p162660 +sg25267 +g27 +sg25275 +S'c. 1482' +p162661 +sg25268 +S'Niccol\xc3\xb2 Sanuti, c. 1407-1482, Noble of Bologna [obverse]' +p162662 +sg25270 +S'Sperandio' +p162663 +sa(dp162664 +g25273 +S'gilt bronze' +p162665 +sg25267 +g27 +sg25275 +S'c. 1482' +p162666 +sg25268 +S'Pelican in Her Piety and Inscription [reverse]' +p162667 +sg25270 +S'Sperandio' +p162668 +sa(dp162669 +g25273 +S'bronze//With loop' +p162670 +sg25267 +g27 +sg25275 +S'probably c. 1478/1482' +p162671 +sg25268 +S'Giovanni II Bentivoglio, 1443-1508, Lord of Bologna 1463-1506 [obverse]' +p162672 +sg25270 +S'Sperandio' +p162673 +sa(dp162674 +g25273 +S'bronze//With loop' +p162675 +sg25267 +g27 +sg25275 +S'probably c. 1478/1482' +p162676 +sg25268 +S'Giovanni II Bentivoglio and Squire [reverse]' +p162677 +sg25270 +S'Sperandio' +p162678 +sa(dp162679 +g25273 +S'bronze//Late cast' +p162680 +sg25267 +g27 +sg25275 +S'c. 1485/1486' +p162681 +sg25268 +S'Guido Pepoli, 1449-1505, Noble of Bologna [obverse]' +p162682 +sg25270 +S'Sperandio' +p162683 +sa(dp162684 +g25273 +S'bronze//Late cast' +p162685 +sg25267 +g27 +sg25275 +S'c. 1485/1486' +p162686 +sg25268 +S'King Evilmerdoch Playing Chess [reverse]' +p162687 +sg25270 +S'Sperandio' +p162688 +sa(dp162689 +g25273 +S'bronze//Rough cast, not contemporary' +p162690 +sg25267 +g27 +sg25275 +S'c. 1490/1495' +p162691 +sg25268 +S'Camilla Sforza of Aragon, Wife of Costanza Sforza 1475' +p162692 +sg25270 +S'Sperandio' +p162693 +sa(dp162694 +g25273 +S'bronze//Rough cast, not contemporary' +p162695 +sg25267 +g27 +sg25275 +S'c. 1490/1495' +p162696 +sg25268 +S'Female Figure and Serpent [reverse]' +p162697 +sg25270 +S'Sperandio' +p162698 +sa(dp162699 +g25268 +S'Francesco II Gonzaga, 1466-1519, 4th Marquess of Mantua 1484 [obverse]' +p162700 +sg25270 +S'Sperandio' +p162701 +sg25273 +S'bronze' +p162702 +sg25275 +S'c. 1495' +p162703 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dd5.jpg' +p162704 +sg25267 +g27 +sa(dp162705 +g25268 +S'Francesco II Gonzaga and Soldiers [reverse]' +p162706 +sg25270 +S'Sperandio' +p162707 +sg25273 +S'bronze' +p162708 +sg25275 +S'c. 1495' +p162709 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dd6.jpg' +p162710 +sg25267 +g27 +sa(dp162711 +g25268 +S'Un Grain \xc3\xa0 Trouville (Squall at Trouville)' +p162712 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p162713 +sg25273 +S'etching' +p162714 +sg25275 +S'1874/1875' +p162715 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009159.jpg' +p162716 +sg25267 +g27 +sa(dp162717 +g25273 +S'bronze//Late cast' +p162718 +sg25267 +g27 +sg25275 +S'c. 1495' +p162719 +sg25268 +S'Agostino Barbarigo, c. 1420-1501, Doge of Venice 1486-1501 [obverse]' +p162720 +sg25270 +S'Sperandio' +p162721 +sa(dp162722 +g25273 +S'bronze//Late cast' +p162723 +sg25267 +g27 +sg25275 +S'c. 1495' +p162724 +sg25268 +S'Doge Barbarigo Kneeling before the Winged Lion of Venice [reverse]' +p162725 +sg25270 +S'Sperandio' +p162726 +sa(dp162727 +g25273 +S'bronze//Late cast' +p162728 +sg25267 +g27 +sg25275 +S'c. 1495/1496' +p162729 +sg25268 +S'Lodovico Brognolo, of the Observant Friars, Patrician of Mantua [obverse]' +p162730 +sg25270 +S'Sperandio' +p162731 +sa(dp162732 +g25273 +S'bronze//Late cast' +p162733 +sg25267 +g27 +sg25275 +S'c. 1495/1496' +p162734 +sg25268 +S'Two Forearms Joined in Prayer [reverse]' +p162735 +sg25270 +S'Sperandio' +p162736 +sa(dp162737 +g25273 +S'bronze//Late cast' +p162738 +sg25267 +g27 +sg25275 +S'probably 1496/1504' +p162739 +sg25268 +S'Antonio Vinciguerra, 1468-1502, Poet, Secretary to the Republic of Venice [obverse]' +p162740 +sg25270 +S'Sperandio' +p162741 +sa(dp162742 +g25273 +S'bronze//Late cast' +p162743 +sg25267 +g27 +sg25275 +S'probably 1496/1504' +p162744 +sg25268 +S'Apollo on a Car Drawn by Swans [reverse]' +p162745 +sg25270 +S'Sperandio' +p162746 +sa(dp162747 +g25273 +S'bronze' +p162748 +sg25267 +g27 +sg25275 +S'c. 1452/1464' +p162749 +sg25268 +S'Pasquale Malipiero, 1385-1462, Doge of Venice 1457 [obverse]' +p162750 +sg25270 +S'Pietro da Fano' +p162751 +sa(dp162752 +g25273 +S'bronze' +p162753 +sg25267 +g27 +sg25275 +S'c. 1452/1464' +p162754 +sg25268 +S'Giovanna Dandolo, Wife of Pasquale Malipiero [reverse]' +p162755 +sg25270 +S'Pietro da Fano' +p162756 +sa(dp162757 +g25273 +S'bronze' +p162758 +sg25267 +g27 +sg25275 +S'probably c. 1457' +p162759 +sg25268 +S'Francesco Foscari, c. 1374-1457, Doge of Venice 1423 [obverse]' +p162760 +sg25270 +S'Antonio Gambello' +p162761 +sa(dp162762 +g25273 +S'bronze' +p162763 +sg25267 +g27 +sg25275 +S'probably c. 1457' +p162764 +sg25268 +S'Venetia and Two Furies [reverse]' +p162765 +sg25270 +S'Antonio Gambello' +p162766 +sa(dp162767 +g25268 +S'Les Bergeries, Soleil Couchant (Pastoral Scene, Setting Sun)' +p162768 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p162769 +sg25273 +S'etching' +p162770 +sg25275 +S'unknown date\n' +p162771 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a000980a.jpg' +p162772 +sg25267 +g27 +sa(dp162773 +g25268 +S'Cristoforo Moro, 1462-1471, Doge of Venice [obverse]' +p162774 +sg25270 +S'Antonello della Moneta' +p162775 +sg25273 +S'bronze//Late cast' +p162776 +sg25275 +S'c. 1454/1484' +p162777 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6c1.jpg' +p162778 +sg25267 +g27 +sa(dp162779 +g25268 +S'Venetia and Two Furies [reverse]' +p162780 +sg25270 +S'Antonello della Moneta' +p162781 +sg25273 +S'bronze//Late cast' +p162782 +sg25275 +S'c. 1454/1484' +p162783 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6c2.jpg' +p162784 +sg25267 +g27 +sa(dp162785 +g25273 +S'lead' +p162786 +sg25267 +g27 +sg25275 +S'1454 or after' +p162787 +sg25268 +S'Bartolommeo Colleone of Bergamo, 1400-1475, Condottiere [obverse]' +p162788 +sg25270 +S'Marco Guidizani' +p162789 +sa(dp162790 +g25273 +S'lead' +p162791 +sg25267 +g27 +sg25275 +S'1454 or after' +p162792 +sg25268 +S'Laureate Figure Holding a Plummet Line [reverse]' +p162793 +sg25270 +S'Marco Guidizani' +p162794 +sa(dp162795 +g25273 +S'bronze' +p162796 +sg25267 +g27 +sg25275 +S'1457' +p162797 +sg25268 +S'Filippo Maserano, Venetian Poet [obverse]' +p162798 +sg25270 +S'Giovanni Bold\xc3\xb9' +p162799 +sa(dp162800 +g25273 +S'bronze' +p162801 +sg25267 +g27 +sg25275 +S'1457' +p162802 +sg25268 +S'Arion Riding on a Dolphin [reverse]' +p162803 +sg25270 +S'Giovanni Bold\xc3\xb9' +p162804 +sa(dp162805 +g25273 +S'bronze' +p162806 +sg25267 +g27 +sg25275 +S'1457' +p162807 +sg25268 +S'Nicolaus Schlifer, German Musician [obverse]' +p162808 +sg25270 +S'Giovanni Bold\xc3\xb9' +p162809 +sa(dp162810 +g25273 +S'bronze' +p162811 +sg25267 +g27 +sg25275 +S'1457' +p162812 +sg25268 +S'Apollo with Lyre and Long Scroll [reverse]' +p162813 +sg25270 +S'Giovanni Bold\xc3\xb9' +p162814 +sa(dp162815 +g25268 +S'Self-Portrait [obverse]' +p162816 +sg25270 +S'Giovanni Bold\xc3\xb9' +p162817 +sg25273 +S'bronze' +p162818 +sg25275 +S'1458' +p162819 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063f1.jpg' +p162820 +sg25267 +g27 +sa(dp162821 +g25268 +S'Bold\xc3\xb9 between Faith and Penitence [reverse]' +p162822 +sg25270 +S'Giovanni Bold\xc3\xb9' +p162823 +sg25273 +S'bronze' +p162824 +sg25275 +S'1458' +p162825 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063f2.jpg' +p162826 +sg25267 +g27 +sa(dp162827 +g25268 +S'Un Vieux Chantier \xc3\xa0 Rochester (The Old Dock-yard at Rochester)' +p162828 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p162829 +sg25273 +S'etching and aquatint' +p162830 +sg25275 +S'unknown date\n' +p162831 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009166.jpg' +p162832 +sg25267 +g27 +sa(dp162833 +g25268 +S'Self-Portrait [obverse]' +p162834 +sg25270 +S'Giovanni Bold\xc3\xb9' +p162835 +sg25273 +S'bronze' +p162836 +sg25275 +S'1458' +p162837 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f00.jpg' +p162838 +sg25267 +g27 +sa(dp162839 +g25268 +S'Bold\xc3\xb9 with the Genius of Death [reverse]' +p162840 +sg25270 +S'Giovanni Bold\xc3\xb9' +p162841 +sg25273 +S'bronze' +p162842 +sg25275 +S'1458' +p162843 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f01.jpg' +p162844 +sg25267 +g27 +sa(dp162845 +g25273 +S'Italian, active c. 1454 - before 1477' +p162846 +sg25267 +g27 +sg25275 +S'(artist after)' +p162847 +sg25268 +S'The Emperor Caracalla [obverse]' +p162848 +sg25270 +S'Artist Information (' +p162849 +sa(dp162850 +g25273 +S'Italian, active c. 1454 - before 1477' +p162851 +sg25267 +g27 +sg25275 +S'(artist after)' +p162852 +sg25268 +S'Bold\xc3\xb9 with the Genius of Death [reverse]' +p162853 +sg25270 +S'Artist Information (' +p162854 +sa(dp162855 +g25268 +S'Mehmed II, 1430-1481, Sultan of the Turks 1451 [obverse]' +p162856 +sg25270 +S'Gentile Bellini' +p162857 +sg25273 +S'bronze//Later casting' +p162858 +sg25275 +S'c. 1480' +p162859 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c29.jpg' +p162860 +sg25267 +g27 +sa(dp162861 +g25268 +S'Three Crowns: Constantinople, Iconium, and Trebizond [reverse]' +p162862 +sg25270 +S'Gentile Bellini' +p162863 +sg25273 +S'bronze' +p162864 +sg25275 +S'c. 1480' +p162865 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c2a.jpg' +p162866 +sg25267 +g27 +sa(dp162867 +g25273 +S', probably 1482' +p162868 +sg25267 +g27 +sg25275 +S'\n' +p162869 +sg25268 +S'Sixtus IV (Francesco della Rovere, 1414-1481), Pope 1471 [obverse]' +p162870 +sg25270 +S'Vettor Gambello, called Camelio' +p162871 +sa(dp162872 +g25273 +S', probably 1482' +p162873 +sg25267 +g27 +sg25275 +S'\n' +p162874 +sg25268 +S'The Pope in Audience [reverse]' +p162875 +sg25270 +S'Vettor Gambello, called Camelio' +p162876 +sa(dp162877 +g25273 +S', c. 1470/1480' +p162878 +sg25267 +g27 +sg25275 +S'\n' +p162879 +sg25268 +S'Giovanni Bellini, c. 1430-1516, Venetian Painter [obverse]' +p162880 +sg25270 +S'Vettor Gambello, called Camelio' +p162881 +sa(dp162882 +g25273 +S', c. 1470/1480' +p162883 +sg25267 +g27 +sg25275 +S'\n' +p162884 +sg25268 +S'An Owl [reverse]' +p162885 +sg25270 +S'Vettor Gambello, called Camelio' +p162886 +sa(dp162887 +g25268 +S'Le Port aux Mouettes (Port with Seagulls)' +p162888 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p162889 +sg25273 +S'etching, drypoint, aquatint, and sandpaper ground in black on beige laid paper' +p162890 +sg25275 +S'1886' +p162891 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005742.jpg' +p162892 +sg25267 +g27 +sa(dp162893 +g25273 +S', c. 1500' +p162894 +sg25267 +g27 +sg25275 +S'\n' +p162895 +sg25268 +S'Gentile Bellini, 1429-1507, Venetian Painter [obverse]' +p162896 +sg25270 +S'Vettor Gambello, called Camelio' +p162897 +sa(dp162898 +g25273 +S'bronze//Late cast' +p162899 +sg25267 +g27 +sg25275 +S'c. 1500' +p162900 +sg25268 +S'Incised Inscription [reverse]' +p162901 +sg25270 +S'Vettor Gambello, called Camelio' +p162902 +sa(dp162903 +g25273 +S', 1508' +p162904 +sg25267 +g27 +sg25275 +S'\n' +p162905 +sg25268 +S'Self-Portrait [obverse]' +p162906 +sg25270 +S'Vettor Gambello, called Camelio' +p162907 +sa(dp162908 +g25273 +S', 1508' +p162909 +sg25267 +g27 +sg25275 +S'\n' +p162910 +sg25268 +S'Sacrificial Scene [reverse]' +p162911 +sg25270 +S'Vettor Gambello, called Camelio' +p162912 +sa(dp162913 +g25273 +S', 1470/1530' +p162914 +sg25267 +g27 +sg25275 +S'\n' +p162915 +sg25268 +S'Classical Subject: Male Figure Carrying a Stag [obverse]' +p162916 +sg25270 +S'Vettor Gambello, called Camelio' +p162917 +sa(dp162918 +g25273 +S', 1470/1530' +p162919 +sg25267 +g27 +sg25275 +S'\n' +p162920 +sg25268 +S'Classical Subject: Flaming Tripod on Altar [reverse]' +p162921 +sg25270 +S'Vettor Gambello, called Camelio' +p162922 +sa(dp162923 +g25268 +S'"Augustus" (Self-Portrait) [obverse]' +p162924 +sg25270 +S'Vettor Gambello, called Camelio' +p162925 +sg25273 +S', probably c. 1510/1530' +p162926 +sg25275 +S'\n' +p162927 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00069/a0006945.jpg' +p162928 +sg25267 +g27 +sa(dp162929 +g25268 +S'Male Figure and Winged Caduceus [reverse]' +p162930 +sg25270 +S'Vettor Gambello, called Camelio' +p162931 +sg25273 +S', probably c. 1510/1530' +p162932 +sg25275 +S'\n' +p162933 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00069/a0006943.jpg' +p162934 +sg25267 +g27 +sa(dp162935 +g25273 +S'Italian, 1455/1460 - 1537' +p162936 +sg25267 +g27 +sg25275 +S'(related artist)' +p162937 +sg25268 +S'Marco Barbarigo, c. 1413-1486, Doge of Venice 1485 [obverse]' +p162938 +sg25270 +S'Artist Information (' +p162939 +sa(dp162940 +g25273 +S'Italian, 1455/1460 - 1537' +p162941 +sg25267 +g27 +sg25275 +S'(related artist)' +p162942 +sg25268 +S'Inscription in a Wreath of Ivy [reverse]' +p162943 +sg25270 +S'Artist Information (' +p162944 +sa(dp162945 +g25268 +S"L'Orage (The Storm)" +p162946 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p162947 +sg25273 +S'drypoint and roulette with isolated areas of etching and possibly salt lift in black on Japanese paper' +p162948 +sg25275 +S'1879' +p162949 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a000916b.jpg' +p162950 +sg25267 +g27 +sa(dp162951 +g25273 +S'Italian, 1455/1460 - 1537' +p162952 +sg25267 +g27 +sg25275 +S'(related artist)' +p162953 +sg25268 +S'Leonardo Loredano, 1436-1521, Doge of Venice 1501 [obverse]' +p162954 +sg25270 +S'Artist Information (' +p162955 +sa(dp162956 +g25273 +S'Italian, 1455/1460 - 1537' +p162957 +sg25267 +g27 +sg25275 +S'(related artist)' +p162958 +sg25268 +S'Equity Holding Scales and Scepter [reverse]' +p162959 +sg25270 +S'Artist Information (' +p162960 +sa(dp162961 +g25273 +S'Italian, 1455/1460 - 1537' +p162962 +sg25267 +g27 +sg25275 +S'(related artist)' +p162963 +sg25268 +S'Andrea Gritti, 1455-1538, Doge of Venice 1523 [obverse]' +p162964 +sg25270 +S'Artist Information (' +p162965 +sa(dp162966 +g25273 +S'Italian, 1455/1460 - 1537' +p162967 +sg25267 +g27 +sg25275 +S'(related artist)' +p162968 +sg25268 +S'Venetia Holding Scales and Cornucopiae [reverse]' +p162969 +sg25270 +S'Artist Information (' +p162970 +sa(dp162971 +g25273 +S'Italian, 1455/1460 - 1537' +p162972 +sg25267 +g27 +sg25275 +S'(related artist)' +p162973 +sg25268 +S"Giuliano II de' Medici, 1479-1516, Duc de Nemours 1515 [obverse]" +p162974 +sg25270 +S'Artist Information (' +p162975 +sa(dp162976 +g25273 +S'Italian, 1455/1460 - 1537' +p162977 +sg25267 +g27 +sg25275 +S'(related artist)' +p162978 +sg25268 +S'Virtue and Fortune [reverse]' +p162979 +sg25270 +S'Artist Information (' +p162980 +sa(dp162981 +g25273 +S'Italian, 1455/1460 - 1537' +p162982 +sg25267 +g27 +sg25275 +S'(related artist)' +p162983 +sg25268 +S'Agostino Barbarigo, 1420-1501, Doge of Venice 1486 [obverse]' +p162984 +sg25270 +S'Artist Information (' +p162985 +sa(dp162986 +g25273 +S'Italian, 1455/1460 - 1537' +p162987 +sg25267 +g27 +sg25275 +S'(related artist)' +p162988 +sg25268 +S'Venetia on Throne [reverse]' +p162989 +sg25270 +S'Artist Information (' +p162990 +sa(dp162991 +g25273 +S'bronze' +p162992 +sg25267 +g27 +sg25275 +S'1512/1516' +p162993 +sg25268 +S"Andrea Gritti, Procurator of St. Mark's, later Doge of Venice [obverse]" +p162994 +sg25270 +S'Giovanni Falier' +p162995 +sa(dp162996 +g25273 +S'bronze' +p162997 +sg25267 +g27 +sg25275 +S'1512/1516' +p162998 +sg25268 +S'Gritti Before the Breached City Wall [reverse]' +p162999 +sg25270 +S'Giovanni Falier' +p163000 +sa(dp163001 +g25268 +S'La Falaise: Baie de Saint-Malo (The Cliff: Saint-Malo Bay)' +p163002 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p163003 +sg25273 +S'heliogravure, etching, drypoint, roulette, and spit bite on laid paper' +p163004 +sg25275 +S'1886/1890' +p163005 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009176.jpg' +p163006 +sg25267 +g27 +sa(dp163007 +g25273 +S', late 15th or early 16th century' +p163008 +sg25267 +g27 +sg25275 +S'\n' +p163009 +sg25268 +S'Niccolo Tempesta (?) of Treviso [obverse]' +p163010 +sg25270 +S'Fra Antonio da Brescia' +p163011 +sa(dp163012 +g25273 +S', late 15th - early 16th century' +p163013 +sg25267 +g27 +sg25275 +S'\n' +p163014 +sg25268 +S'Winged Dragon with a Balance [reverse]' +p163015 +sg25270 +S'Fra Antonio da Brescia' +p163016 +sa(dp163017 +g25273 +S'bronze' +p163018 +sg25267 +g27 +sg25275 +S'1523' +p163019 +sg25268 +S'Francesco Malipiero, Venetian patrician, Brother of Vincenzo [obverse]' +p163020 +sg25270 +S'Maffeo Olivieri' +p163021 +sa(dp163022 +g25273 +S'bronze' +p163023 +sg25267 +g27 +sg25275 +S'1523' +p163024 +sg25268 +S'Pelican in Her Piety [reverse]' +p163025 +sg25270 +S'Maffeo Olivieri' +p163026 +sa(dp163027 +g25273 +S'bronze' +p163028 +sg25267 +g27 +sg25275 +S'1523' +p163029 +sg25268 +S'Vincenzo Malipiero, Venetian Patrician, Brother of Francesco [obverse]' +p163030 +sg25270 +S'Maffeo Olivieri' +p163031 +sa(dp163032 +g25273 +S'bronze' +p163033 +sg25267 +g27 +sg25275 +S'1523' +p163034 +sg25268 +S'Crowned Eagle on a Mound Amid Waters [reverse]' +p163035 +sg25270 +S'Maffeo Olivieri' +p163036 +sa(dp163037 +g25273 +S'bronze' +p163038 +sg25267 +g27 +sg25275 +S'c. 1519' +p163039 +sg25268 +S'Augusto da Udine (Publio Augusto Graziani), Poet and Astrologer [obverse]' +p163040 +sg25270 +S'Maffeo Olivieri' +p163041 +sa(dp163042 +g25273 +S'bronze' +p163043 +sg25267 +g27 +sg25275 +S'c. 1519' +p163044 +sg25268 +S'Urania [reverse]' +p163045 +sg25270 +S'Maffeo Olivieri' +p163046 +sa(dp163047 +g25273 +S'bronze' +p163048 +sg25267 +g27 +sg25275 +S'1520s' +p163049 +sg25268 +S'Altobello Averoldo of Brescia, died 1531, Bishop of Pola, Apostolic Legate [obverse]' +p163050 +sg25270 +S'Maffeo Olivieri' +p163051 +sa(dp163052 +g25273 +S'bronze' +p163053 +sg25267 +g27 +sg25275 +S'1520s' +p163054 +sg25268 +S'Truth Unveiled by Two Men [reverse]' +p163055 +sg25270 +S'Maffeo Olivieri' +p163056 +sa(dp163057 +g25268 +S"La Chapelle Saint-Michel \xc3\xa0 l'Estre (The Chapel Saint-Michel at l'Estre)" +p163058 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p163059 +sg25273 +S'etching, drypoint and roulette on light blue-green laid paper' +p163060 +sg25275 +S'1881' +p163061 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a000916a.jpg' +p163062 +sg25267 +g27 +sa(dp163063 +g25273 +S'bronze' +p163064 +sg25267 +g27 +sg25275 +S'1520/1530' +p163065 +sg25268 +S'Sebastiano Montagnacco, died 1540, Venetian patrician [obverse]' +p163066 +sg25270 +S'Maffeo Olivieri' +p163067 +sa(dp163068 +g25273 +S'bronze' +p163069 +sg25267 +g27 +sg25275 +S'1520/1530' +p163070 +sg25268 +S'Fortress with a Tall Tree [reverse]' +p163071 +sg25270 +S'Maffeo Olivieri' +p163072 +sa(dp163073 +g25273 +S'overall: 9 x 7.32 cm (3 9/16 x 2 7/8 in.)\r\ngross weight: 266.57 gr (0.588 lb.)' +p163074 +sg25267 +g27 +sg25275 +S'\nbronze' +p163075 +sg25268 +S'Beato Lorenzo Giustinian, 1380-1456' +p163076 +sg25270 +S'Venetian 15th Century' +p163077 +sa(dp163078 +g25273 +S'overall (diameter): 3.25 cm (1 1/4 in.)\r\ngross weight: 25.11 gr (0.055 lb.)\r\naxis: 12:00' +p163079 +sg25267 +g27 +sg25275 +S'\nbronze' +p163080 +sg25268 +S'Antonio Grimani, Doge of Venice 1521-1523 [obverse]' +p163081 +sg25270 +S'Venetian 16th Century' +p163082 +sa(dp163083 +g25273 +S'overall (diameter): 3.25 cm (1 1/4 in.)\r\ngross weight: 25.11 gr (0.055 lb.)\r\naxis: 12:00' +p163084 +sg25267 +g27 +sg25275 +S'\nbronze' +p163085 +sg25268 +S'Justice and Peace [reverse]' +p163086 +sg25270 +S'Venetian 16th Century' +p163087 +sa(dp163088 +g25273 +S'overall (diameter): 4.27 cm (1 11/16 in.)\r\ngross weight: 35.15 gr (0.077 lb.)\r\naxis: 12:00' +p163089 +sg25267 +g27 +sg25275 +S'\nbronze' +p163090 +sg25268 +S'Giovanni Fasiol [obverse]' +p163091 +sg25270 +S'Venetian 16th Century' +p163092 +sa(dp163093 +g25273 +S'overall (diameter): 4.27 cm (1 11/16 in.)\r\ngross weight: 35.15 gr (0.077 lb.)\r\naxis: 12:00' +p163094 +sg25267 +g27 +sg25275 +S'\nbronze' +p163095 +sg25268 +S'Figure Holding Victory and Branch [reverse]' +p163096 +sg25270 +S'Venetian 16th Century' +p163097 +sa(dp163098 +g25273 +S'overall (diameter): 5.21 cm (2 1/16 in.)\r\ngross weight: 62.82 gr (0.138 lb.)' +p163099 +sg25267 +g27 +sg25275 +S'\nbronze' +p163100 +sg25268 +S'Simone Michiel, died 1525, Protonotary, afterwards Canon of Verona 1498, Treviso 1510' +p163101 +sg25270 +S'Venetian 16th Century' +p163102 +sa(dp163103 +g25273 +S'overall (diameter): 3.96 cm (1 9/16 in.)\r\ngross weight: 33.72 gr (0.074 lb.)\r\naxis: 8:00' +p163104 +sg25267 +g27 +sg25275 +S'\nbronze//Struck' +p163105 +sg25268 +S'Tommaso Mocenigo [obverse]' +p163106 +sg25270 +S'Venetian 16th Century' +p163107 +sa(dp163108 +g25273 +S'overall (diameter): 3.96 cm (1 9/16 in.)\r\ngross weight: 33.72 gr (0.074 lb.)\r\naxis: 8:00' +p163109 +sg25267 +g27 +sg25275 +S'\nbronze//Struck' +p163110 +sg25268 +S'Toilet of Venus (?) [reverse]' +p163111 +sg25270 +S'Venetian 16th Century' +p163112 +sa(dp163113 +g25273 +S'overall (diameter): 4.42 cm (1 3/4 in.)\r\ngross weight: 30.35 gr (0.067 lb.)\r\naxis: 6:00' +p163114 +sg25267 +g27 +sg25275 +S'\nbronze' +p163115 +sg25268 +S'Fra Giovanni Cornaro, Benedictine Monk, Abbot of Pragiia 1507-1514 [obverse]' +p163116 +sg25270 +S'Venetian 16th Century' +p163117 +sa(dp163118 +g25273 +S'overall (diameter): 4.42 cm (1 3/4 in.)\r\ngross weight: 30.35 gr (0.067 lb.)\r\naxis: 6:00' +p163119 +sg25267 +g27 +sg25275 +S'\nbronze' +p163120 +sg25268 +S'Shepherd with a Flock [reverse]' +p163121 +sg25270 +S'Venetian 16th Century' +p163122 +sa(dp163123 +g25273 +S'overall (diameter): 4.54 cm (1 13/16 in.)\r\ngross weight: 32.03 gr (0.071 lb.)' +p163124 +sg25267 +g27 +sg25275 +S'\nbronze' +p163125 +sg25268 +S'Paolo Diedo' +p163126 +sg25270 +S'Venetian 16th Century' +p163127 +sa(dp163128 +g25273 +S'overall (diameter): 5.81 cm (2 5/16 in.)\r\ngross weight: 78.87 gr (0.174 lb.)' +p163129 +sg25267 +g27 +sg25275 +S'\ngilt bronze' +p163130 +sg25268 +S'Giovanni Mannelli' +p163131 +sg25270 +S'Venetian 16th Century' +p163132 +sa(dp163133 +g25273 +S'overall (diameter): 3.74 cm (1 1/2 in.)\r\ngross weight: 39.25 gr (0.087 lb.)\r\naxis: 6:00' +p163134 +sg25267 +g27 +sg25275 +S'\nbronze' +p163135 +sg25268 +S'Alvise da Noale, active 1509-1533, Jurist [obverse]' +p163136 +sg25270 +S'Venetian 16th Century' +p163137 +sa(dp163138 +g25273 +S'overall (diameter): 3.74 cm (1 1/2 in.)\r\ngross weight: 39.25 gr (0.087 lb.)\r\naxis: 6:00' +p163139 +sg25267 +g27 +sg25275 +S'\nbronze' +p163140 +sg25268 +S'Inscription [reverse]' +p163141 +sg25270 +S'Venetian 16th Century' +p163142 +sa(dp163143 +g25273 +S'bronze' +p163144 +sg25267 +g27 +sg25275 +S'probably 1460/1466' +p163145 +sg25268 +S'Antonio Roselli of Arezzo, 1380-1466, Jurist [obverse]' +p163146 +sg25270 +S'Bartolomeo Bellano' +p163147 +sa(dp163148 +g25273 +S'bronze' +p163149 +sg25267 +g27 +sg25275 +S'probably 1460/1466' +p163150 +sg25268 +S'Roselli Seated on a Bracket [reverse]' +p163151 +sg25270 +S'Bartolomeo Bellano' +p163152 +sa(dp163153 +g25273 +S'overall (diameter): 6.48 cm (2 9/16 in.)\r\ngross weight: 117.97 gr (0.26 lb.)\r\naxis: 11:00' +p163154 +sg25267 +g27 +sg25275 +S'\nbronze' +p163155 +sg25268 +S'Girolamo di Benedetto Pesaro, Captain of Padua 1515 [obverse]' +p163156 +sg25270 +S'Paduan 16th Century' +p163157 +sa(dp163158 +g25273 +S'overall (diameter): 6.48 cm (2 9/16 in.)\r\ngross weight: 117.97 gr (0.26 lb.)\r\naxis: 11:00' +p163159 +sg25267 +g27 +sg25275 +S'\nbronze' +p163160 +sg25268 +S'Inscription in a Wreath [reverse]' +p163161 +sg25270 +S'Paduan 16th Century' +p163162 +sa(dp163163 +g25268 +S"L'Hiver \xc3\xa0 Paris (Winter in Paris)" +p163164 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p163165 +sg25273 +S'etching, aqautint, spit-bite etching, soft-ground etching, drypoint, and scraping on light green laid paper' +p163166 +sg25275 +S'1879' +p163167 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009160.jpg' +p163168 +sg25267 +g27 +sa(dp163169 +g25273 +S'overall (diameter): 3.2 cm (1 1/4 in.)\r\ngross weight: 16.15 gr (0.036 lb.)\r\naxis: 12:00' +p163170 +sg25267 +g27 +sg25275 +S'\nbronze' +p163171 +sg25268 +S'Girolamo di Benedetto Pesaro, Captian of Padua 1515 [obverse]' +p163172 +sg25270 +S'Paduan 16th Century' +p163173 +sa(dp163174 +g25273 +S'overall (diameter): 3.2 cm (1 1/4 in.)\r\ngross weight: 16.15 gr (0.036 lb.)\r\naxis: 12:00' +p163175 +sg25267 +g27 +sg25275 +S'\nbronze' +p163176 +sg25268 +S'Inscription in a Wreath [reverse]' +p163177 +sg25270 +S'Paduan 16th Century' +p163178 +sa(dp163179 +g25273 +S'bronze' +p163180 +sg25267 +g27 +sg25275 +S'1519' +p163181 +sg25268 +S'Stefano di Andrea Magno, c. 1500-1572 [obverse]' +p163182 +sg25270 +S'Giovanni Maria Pomedelli' +p163183 +sa(dp163184 +g25273 +S'bronze' +p163185 +sg25267 +g27 +sg25275 +S'1519' +p163186 +sg25268 +S'Neptune Spearing a Lobster [reverse]' +p163187 +sg25270 +S'Giovanni Maria Pomedelli' +p163188 +sa(dp163189 +g25273 +S'bronze' +p163190 +sg25267 +g27 +sg25275 +S'1527' +p163191 +sg25268 +S'Giovanni Emo, Podesta of Verona 1527 [obverse]' +p163192 +sg25270 +S'Giovanni Maria Pomedelli' +p163193 +sa(dp163194 +g25273 +S'bronze' +p163195 +sg25267 +g27 +sg25275 +S'1527' +p163196 +sg25268 +S'Pallas and Mars [reverse]' +p163197 +sg25270 +S'Giovanni Maria Pomedelli' +p163198 +sa(dp163199 +g25273 +S'bronze' +p163200 +sg25267 +g27 +sg25275 +S'c. 1527' +p163201 +sg25268 +S'Tommaso Moro, Captain of Verona 1527 [obverse]' +p163202 +sg25270 +S'Giovanni Maria Pomedelli' +p163203 +sa(dp163204 +g25273 +S'bronze' +p163205 +sg25267 +g27 +sg25275 +S'c. 1527' +p163206 +sg25268 +S'Phoenix on a Pyre Gazing at the Sun [reverse]' +p163207 +sg25270 +S'Giovanni Maria Pomedelli' +p163208 +sa(dp163209 +g25268 +S'Charles V, 1500-1558, King of Spain 1516, Holy Roman Emperor 1519-1556 [obverse]' +p163210 +sg25270 +S'Giovanni Maria Pomedelli' +p163211 +sg25273 +S'bronze//Double struck' +p163212 +sg25275 +S'unknown date\n' +p163213 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6bd.jpg' +p163214 +sg25267 +g27 +sa(dp163215 +g25268 +S'Genius Writing on a Shield [reverse]' +p163216 +sg25270 +S'Giovanni Maria Pomedelli' +p163217 +sg25273 +S'bronze//Double struck' +p163218 +sg25275 +S'unknown date\n' +p163219 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6be.jpg' +p163220 +sg25267 +g27 +sa(dp163221 +g25268 +S'Westminster Bridge' +p163222 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p163223 +sg25273 +S'etching, drypoint, roulette, aquatint, and spit-bite etching onlaid paper' +p163224 +sg25275 +S'1884' +p163225 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009170.jpg' +p163226 +sg25267 +g27 +sa(dp163227 +g25273 +S'bronze//Later casting' +p163228 +sg25267 +g27 +sg25275 +S'probably 1515/1518' +p163229 +sg25268 +S'Fran\xc3\xa7ois I, 1494-1547, King of France 1515 [obverse]' +p163230 +sg25270 +S'Giovanni Maria Pomedelli' +p163231 +sa(dp163232 +g25273 +S'bronze' +p163233 +sg25267 +g27 +sg25275 +S'probably 1515/1518' +p163234 +sg25268 +S'Salamander in Flames [reverse]' +p163235 +sg25270 +S'Giovanni Maria Pomedelli' +p163236 +sa(dp163237 +g25273 +S'bronze' +p163238 +sg25267 +g27 +sg25275 +S'unknown date\n' +p163239 +sg25268 +S'Portrait of a Lady [obverse]' +p163240 +sg25270 +S'Giovanni Maria Pomedelli' +p163241 +sa(dp163242 +g25273 +S'bronze' +p163243 +sg25267 +g27 +sg25275 +S'unknown date\n' +p163244 +sg25268 +S'Man Holding Fruit, and Cupid [reverse]' +p163245 +sg25270 +S'Giovanni Maria Pomedelli' +p163246 +sa(dp163247 +g25273 +S'bronze' +p163248 +sg25267 +g27 +sg25275 +S'probably 1523/1530' +p163249 +sg25268 +S'Federigo II Gonzaga, 1500-1540, 5th Marquess of Mantua 1519 and 1st Duke of Mantua 1530 [obverse]' +p163250 +sg25270 +S'Giovanni Maria Pomedelli' +p163251 +sa(dp163252 +g25273 +S'bronze' +p163253 +sg25267 +g27 +sg25275 +S'probably 1523/1530' +p163254 +sg25268 +S'Altar of Fides [reverse]' +p163255 +sg25270 +S'Giovanni Maria Pomedelli' +p163256 +sa(dp163257 +g25273 +S'bronze' +p163258 +sg25267 +g27 +sg25275 +S'unknown date\n' +p163259 +sg25268 +S'Isabella Michiel Sesso, Wife of Giambattista Sesso [obverse]' +p163260 +sg25270 +S'Giovanni Maria Pomedelli' +p163261 +sa(dp163262 +g25273 +S'bronze' +p163263 +sg25267 +g27 +sg25275 +S'unknown date\n' +p163264 +sg25268 +S'Occasion Holding a Bridle [reverse]' +p163265 +sg25270 +S'Giovanni Maria Pomedelli' +p163266 +sa(dp163267 +g25273 +S'bronze//Not contemporary cast' +p163268 +sg25267 +g27 +sg25275 +S'1515 or after' +p163269 +sg25268 +S'Fran\xc3\xa7ois I, 1494-1547, King of France 1515 [obverse]' +p163270 +sg25270 +S'Giovanni Maria Pomedelli' +p163271 +sa(dp163272 +g25273 +S'bronze//Not contemporary cast' +p163273 +sg25267 +g27 +sg25275 +S'1515 or after' +p163274 +sg25268 +S'Diomede Seated on a Cippus [reverse]' +p163275 +sg25270 +S'Giovanni Maria Pomedelli' +p163276 +sa(dp163277 +g25268 +S'Les Esprits des Villes Mortes (Spirits from the Cities of the Dead)' +p163278 +sg25270 +S'F\xc3\xa9lix-Hilaire Buhot' +p163279 +sg25273 +S'etching, roulette, drypoint, lift ground, aquatint, scraping and burnishing on laid paper' +p163280 +sg25275 +S'1885' +p163281 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005dba.jpg' +p163282 +sg25267 +g27 +sa(dp163283 +g25273 +S', 1494' +p163284 +sg25267 +g27 +sg25275 +S'\n' +p163285 +sg25268 +S'Giovanni II Bentivoglio, 1443-1509, Lord of Bologna 1462-1506 [obverse]' +p163286 +sg25270 +S'Francesco Francia' +p163287 +sa(dp163288 +g25273 +S', 1494' +p163289 +sg25267 +g27 +sg25275 +S'\n' +p163290 +sg25268 +S'Inscription [reverse]' +p163291 +sg25270 +S'Francesco Francia' +p163292 +sa(dp163293 +g25273 +S', unknown date' +p163294 +sg25267 +g27 +sg25275 +S'\n' +p163295 +sg25268 +S'Giovanni II Bentivoglio, 1443-1509, Lord of Bologna 1462-1506 [obverse]' +p163296 +sg25270 +S'Francesco Francia' +p163297 +sa(dp163298 +g25273 +S', unknown date' +p163299 +sg25267 +g27 +sg25275 +S'\n' +p163300 +sg25268 +S'Shield of Bentivoglio [reverse]' +p163301 +sg25270 +S'Francesco Francia' +p163302 +sa(dp163303 +g25273 +S'Italian, c. 1447 - 1517' +p163304 +sg25267 +g27 +sg25275 +S'(artist after)' +p163305 +sg25268 +S'Francesco degli Alidosi, c. 1455-1511, Cardinal of Pavia 1505, Legate of Bologna and Romagna 1508 [obverse]' +p163306 +sg25270 +S'Artist Information (' +p163307 +sa(dp163308 +g25273 +S'Italian, c. 1447 - 1517' +p163309 +sg25267 +g27 +sg25275 +S'(artist after)' +p163310 +sg25268 +S'Jupiter in a Car Drawn by Eagles [reverse]' +p163311 +sg25270 +S'Artist Information (' +p163312 +sa(dp163313 +g25273 +S'Italian, c. 1447 - 1517' +p163314 +sg25267 +g27 +sg25275 +S'(related artist)' +p163315 +sg25268 +S"Bernardo de' Rossi, died 1527, Bishop of Treviso 1499, Governor of Bologna 1519-1523 [obverse]" +p163316 +sg25270 +S'Artist Information (' +p163317 +sa(dp163318 +g25273 +S'Italian, c. 1447 - 1517' +p163319 +sg25267 +g27 +sg25275 +S'(related artist)' +p163320 +sg25268 +S'Figure in a Car Drawn by a Dragon and an Eagle [reverse]' +p163321 +sg25270 +S'Artist Information (' +p163322 +sa(dp163323 +g25273 +S'overall (rectangular): 15.89 x 12.12 cm (6 1/4 x 4 3/4 in.)\r\ngross weight: 386.54 gr (0.852 lb.)' +p163324 +sg25267 +g27 +sg25275 +S'\nbronze' +p163325 +sg25268 +S'Giangaleazzo Visconti, 1351-1402, 1st Duke of Milan 1378' +p163326 +sg25270 +S'Milanese 15th Century' +p163327 +sa(dp163328 +g25273 +S'overall (oval): 2.61 x 2.18 cm (1 x 7/8 in.)\r\ngross weight: 12.9 gr (0.028 lb.)' +p163329 +sg25267 +g27 +sg25275 +S'\nbronze' +p163330 +sg25268 +S'Lodovico Maria Sforza, called il Moro, 1452-1508, 7th Duke of Milan 1494-1500' +p163331 +sg25270 +S'Milanese 15th Century' +p163332 +sa(dp163333 +g25273 +S'etching' +p163334 +sg25267 +g27 +sg25275 +S'1930' +p163335 +sg25268 +S'Henry Rushbury' +p163336 +sg25270 +S'Gerald Leslie Brockhurst' +p163337 +sa(dp163338 +g25273 +S'bronze//Late cast' +p163339 +sg25267 +g27 +sg25275 +S'c. 1488' +p163340 +sg25268 +S'Francesco I Sforza, 1401-1466, 4th Duke of Milan 1450 [obverse]' +p163341 +sg25270 +S'Caradosso Foppa' +p163342 +sa(dp163343 +g25273 +S'bronze//Late cast' +p163344 +sg25267 +g27 +sg25275 +S'c. 1488' +p163345 +sg25268 +S'Francesco Approaching a City [reverse]' +p163346 +sg25270 +S'Caradosso Foppa' +p163347 +sa(dp163348 +g25273 +S'bronze' +p163349 +sg25267 +g27 +sg25275 +S'c. 1488' +p163350 +sg25268 +S'Lodovico Maria Sforza, called il Moro, 1452-1508, 7th Duke of Milan 1494-1500 [obverse]' +p163351 +sg25270 +S'Caradosso Foppa' +p163352 +sa(dp163353 +g25273 +S'bronze' +p163354 +sg25267 +g27 +sg25275 +S'c. 1488' +p163355 +sg25268 +S'The Doge of Genoa [reverse]' +p163356 +sg25270 +S'Caradosso Foppa' +p163357 +sa(dp163358 +g25273 +S'bronze' +p163359 +sg25267 +g27 +sg25275 +S'c. 1499' +p163360 +sg25268 +S'Gian Giacomo Trivulzio, 1441-1518, Marshal of France 1499 [obverse]' +p163361 +sg25270 +S'Caradosso Foppa' +p163362 +sa(dp163363 +g25273 +S'bronze' +p163364 +sg25267 +g27 +sg25275 +S'c. 1499' +p163365 +sg25268 +S'Inscription [reverse]' +p163366 +sg25270 +S'Caradosso Foppa' +p163367 +sa(dp163368 +g25268 +S'Donato Bramante, c. 1444-1514, Architect [obverse]' +p163369 +sg25270 +S'Caradosso Foppa' +p163370 +sg25273 +S'bronze' +p163371 +sg25275 +S'unknown date\n' +p163372 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00030/a000303b.jpg' +p163373 +sg25267 +g27 +sa(dp163374 +g25268 +S'Architecture Holding a Compass and Square [reverse]' +p163375 +sg25270 +S'Caradosso Foppa' +p163376 +sg25273 +S'bronze' +p163377 +sg25275 +S'unknown date\n' +p163378 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006460.jpg' +p163379 +sg25267 +g27 +sa(dp163380 +g25268 +S'Julius II (Giuliano della Rovere, 1443-1513), Pope 1503 [obverse]' +p163381 +sg25270 +S'Caradosso Foppa' +p163382 +sg25273 +S'bronze' +p163383 +sg25275 +S'1506' +p163384 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006404.jpg' +p163385 +sg25267 +g27 +sa(dp163386 +g25268 +S"View of Saint Peter's [reverse]" +p163387 +sg25270 +S'Caradosso Foppa' +p163388 +sg25273 +S'bronze' +p163389 +sg25275 +S'1506' +p163390 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006405.jpg' +p163391 +sg25267 +g27 +sa(dp163392 +g25273 +S'etching' +p163393 +sg25267 +g27 +sg25275 +S'1931' +p163394 +sg25268 +S'James McBey' +p163395 +sg25270 +S'Gerald Leslie Brockhurst' +p163396 +sa(dp163397 +g25273 +S'bronze' +p163398 +sg25267 +g27 +sg25275 +S'c. 1506' +p163399 +sg25268 +S'Julius II (Giuliano della Rovere, 1443-1513), Pope 1503 [obverse]' +p163400 +sg25270 +S'Caradosso Foppa' +p163401 +sa(dp163402 +g25273 +S'bronze' +p163403 +sg25267 +g27 +sg25275 +S'c. 1506' +p163404 +sg25268 +S"View of Saint Peter's [reverse]" +p163405 +sg25270 +S'Caradosso Foppa' +p163406 +sa(dp163407 +g25273 +S'bronze' +p163408 +sg25267 +g27 +sg25275 +S'1485/1495' +p163409 +sg25268 +S'Niccolo Orsini, 1442-1510, Count of Pitigliano and Nola, Captain of the Army of the Roman Church and of the Florentine Republic [obverse]' +p163410 +sg25270 +S'Caradosso Foppa' +p163411 +sa(dp163412 +g25273 +S'bronze' +p163413 +sg25267 +g27 +sg25275 +S'1485/1495' +p163414 +sg25268 +S'Orsini Riding [reverse]' +p163415 +sg25270 +S'Caradosso Foppa' +p163416 +sa(dp163417 +g25273 +S'overall (diameter): 4.31 cm (1 11/16 in.)\r\ngross weight: 28.46 gr (0.063 lb.)' +p163418 +sg25267 +g27 +sg25275 +S'\nbronze' +p163419 +sg25268 +S'Simone Taverna' +p163420 +sg25270 +S'Milanese 16th Century' +p163421 +sa(dp163422 +g25273 +S'overall (diameter): 5.99 cm (2 3/8 in.)\r\ngross weight: 62.93 gr (0.139 lb.)\r\naxis: 12:00' +p163423 +sg25267 +g27 +sg25275 +S'\nbronze' +p163424 +sg25268 +S'Scaramuccia di Gianfermo Trivulzio, died 1527, Bishop of Como 1508, Cardinal 1517 [obverse]' +p163425 +sg25270 +S'Milanese 16th Century' +p163426 +sa(dp163427 +g25273 +S'overall (diameter): 5.99 cm (2 3/8 in.)\r\ngross weight: 62.93 gr (0.139 lb.)\r\naxis: 12:00' +p163428 +sg25267 +g27 +sg25275 +S'\nbronze' +p163429 +sg25268 +S'Prudence Holding a Mirror and Compasses [reverse]' +p163430 +sg25270 +S'Milanese 16th Century' +p163431 +sa(dp163432 +g25273 +S'overall (diameter): 4.37 cm (1 3/4 in.)\r\ngross weight: 21.76 gr (0.048 lb.)\r\naxis: 6:00' +p163433 +sg25267 +g27 +sg25275 +S'\nbronze' +p163434 +sg25268 +S'Gian Giacomo Trivulzio as a Laureate Warrior [obverse]' +p163435 +sg25270 +S'Milanese 16th Century' +p163436 +sa(dp163437 +g25273 +S'overall (diameter): 4.37 cm (1 3/4 in.)\r\ngross weight: 21.76 gr (0.048 lb.)\r\naxis: 6:00' +p163438 +sg25267 +g27 +sg25275 +S'\nbronze' +p163439 +sg25268 +S'Gian Giacomo Trivulzio, 1441-1518, Marshall of France 1499 [reverse]' +p163440 +sg25270 +S'Milanese 16th Century' +p163441 +sa(dp163442 +g25273 +S'overall (diameter): 4.8 cm (1 7/8 in.)\r\ngross weight: 34.22 gr (0.075 lb.)' +p163443 +sg25267 +g27 +sg25275 +S'\nbronze//Late cast' +p163444 +sg25268 +S'Filippo of Savoy, 1490-1533, Count of Genevois 1514' +p163445 +sg25270 +S'Savoy 16th Century' +p163446 +sa(dp163447 +g25273 +S'red chalk' +p163448 +sg25267 +g27 +sg25275 +S'1934' +p163449 +sg25268 +S'Almira' +p163450 +sg25270 +S'Gerald Leslie Brockhurst' +p163451 +sa(dp163452 +g25273 +S'bronze' +p163453 +sg25267 +g27 +sg25275 +S'unknown date\n' +p163454 +sg25268 +S'Battista II di Campofregoso, Doge of Genoa 1478-1483 [obverse]' +p163455 +sg25270 +S"Battista d'Elia da Genova" +p163456 +sa(dp163457 +g25273 +S'bronze' +p163458 +sg25267 +g27 +sg25275 +S'unknown date\n' +p163459 +sg25268 +S'Crocodile and Trochilus [reverse]' +p163460 +sg25270 +S"Battista d'Elia da Genova" +p163461 +sa(dp163462 +g25268 +S'Nero, 37-68, Roman Emperor 54 [obverse]' +p163463 +sg25270 +S'Antonio Averlino, called Filarete' +p163464 +sg25273 +S', fourth quarter 15th century' +p163465 +sg25275 +S'\n' +p163466 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a00067e4.jpg' +p163467 +sg25267 +g27 +sa(dp163468 +g25268 +S'Nero, Laureate, Seated Under Palm Tree [reverse]' +p163469 +sg25270 +S'Antonio Averlino, called Filarete' +p163470 +sg25273 +S', fourth quarter 15th century' +p163471 +sg25275 +S'\n' +p163472 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a00067e6.jpg' +p163473 +sg25267 +g27 +sa(dp163474 +g25273 +S', fourth quarter 15th century' +p163475 +sg25267 +g27 +sg25275 +S'\n' +p163476 +sg25268 +S'Hadrian [obverse]' +p163477 +sg25270 +S'Antonio Averlino, called Filarete' +p163478 +sa(dp163479 +g25273 +S', fourth quarter 15th century' +p163480 +sg25267 +g27 +sg25275 +S'\n' +p163481 +sg25268 +S'Hadrian Riding and Carrying a Standard [reverse]' +p163482 +sg25270 +S'Antonio Averlino, called Filarete' +p163483 +sa(dp163484 +g25273 +S', fourth quarter 15th century' +p163485 +sg25267 +g27 +sg25275 +S'\n' +p163486 +sg25268 +S'Faustina the Elder, d. 141, Wife of Emperor Antoninus Pius [obverse]' +p163487 +sg25270 +S'Antonio Averlino, called Filarete' +p163488 +sa(dp163489 +g25273 +S', fourth quarter 15th century' +p163490 +sg25267 +g27 +sg25275 +S'\n' +p163491 +sg25268 +S'Antonius Pius and Faustina Joining Hands [reverse]' +p163492 +sg25270 +S'Antonio Averlino, called Filarete' +p163493 +sa(dp163494 +g25273 +S', fourth quarter 15th century' +p163495 +sg25267 +g27 +sg25275 +S'\n' +p163496 +sg25268 +S'Marcus Croto [obverse]' +p163497 +sg25270 +S'Antonio Averlino, called Filarete' +p163498 +sa(dp163499 +g25273 +S', fourth quarter 15th century' +p163500 +sg25267 +g27 +sg25275 +S'\n' +p163501 +sg25268 +S'Marcus Croto Riding [reverse]' +p163502 +sg25270 +S'Antonio Averlino, called Filarete' +p163503 +sa(dp163504 +g25273 +S'etching' +p163505 +sg25267 +g27 +sg25275 +S'1932' +p163506 +sg25268 +S'Adolescence' +p163507 +sg25270 +S'Gerald Leslie Brockhurst' +p163508 +sa(dp163509 +g25273 +S', fourth quarter 15th century' +p163510 +sg25267 +g27 +sg25275 +S'\n' +p163511 +sg25268 +S'Marcus Croto (obliterated) [obverse]' +p163512 +sg25270 +S'Antonio Averlino, called Filarete' +p163513 +sa(dp163514 +g25273 +S', fourth quarter 15th century' +p163515 +sg25267 +g27 +sg25275 +S'\n' +p163516 +sg25268 +S'Man Riding [reverse]' +p163517 +sg25270 +S'Antonio Averlino, called Filarete' +p163518 +sa(dp163519 +g25273 +S'overall (diameter): 3.47 cm (1 3/8 in.)\r\ngross weight: 31.25 gr (0.069 lb.)\r\naxis: 7:00' +p163520 +sg25267 +g27 +sg25275 +S'\nbronze' +p163521 +sg25268 +S'Pier Barbo, Cardinal of San Marco, afterwards Paul II 1455 [obverse]' +p163522 +sg25270 +S'Roman 15th Century' +p163523 +sa(dp163524 +g25273 +S'overall (diameter): 3.47 cm (1 3/8 in.)\r\ngross weight: 31.25 gr (0.069 lb.)\r\naxis: 7:00' +p163525 +sg25267 +g27 +sg25275 +S'\nbronze' +p163526 +sg25268 +S'Barbo Shield [reverse]' +p163527 +sg25270 +S'Roman 15th Century' +p163528 +sa(dp163529 +g25273 +S'bronze' +p163530 +sg25267 +g27 +sg25275 +S'1467' +p163531 +sg25268 +S'Niccol\xc3\xb2 Palmieri, 1401-1467, Bishop of Orte 1455-1467 [obverse]' +p163532 +sg25270 +S'Andrea Guacialoti' +p163533 +sa(dp163534 +g25273 +S'bronze' +p163535 +sg25267 +g27 +sg25275 +S'1467' +p163536 +sg25268 +S'Male Figure Holding an Hourglass [reverse]' +p163537 +sg25270 +S'Andrea Guacialoti' +p163538 +sa(dp163539 +g25273 +S'bronze' +p163540 +sg25267 +g27 +sg25275 +S'unknown date\n' +p163541 +sg25268 +S'Callistus III (Alfonso de Borja, 1378-1458), Pope 1455 [obverse]' +p163542 +sg25270 +S'Andrea Guacialoti' +p163543 +sa(dp163544 +g25273 +S'bronze' +p163545 +sg25267 +g27 +sg25275 +S'unknown date\n' +p163546 +sg25268 +S'Borgia Arms with Tiara [reverse]' +p163547 +sg25270 +S'Andrea Guacialoti' +p163548 +sa(dp163549 +g25273 +S'bronze' +p163550 +sg25267 +g27 +sg25275 +S'1481' +p163551 +sg25268 +S'Sixtus IV (Francesco della Rovere, 1414-1484), Pope 1471 [obverse]' +p163552 +sg25270 +S'Andrea Guacialoti' +p163553 +sa(dp163554 +g25273 +S'bronze' +p163555 +sg25267 +g27 +sg25275 +S'1481' +p163556 +sg25268 +S'Constancy with Turkish Captives [reverse]' +p163557 +sg25270 +S'Andrea Guacialoti' +p163558 +sa(dp163559 +g25268 +S'Madonna and Child with the Infant Saint John' +p163560 +sg25270 +S'Fernando Y\xc3\xa1\xc3\xb1ez de la Almedina' +p163561 +sg25273 +S', c. 1505' +p163562 +sg25275 +S'\n' +p163563 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004b2.jpg' +p163564 +sg25267 +g27 +sa(dp163565 +g25273 +S'etching' +p163566 +sg25267 +g27 +sg25275 +S'1922' +p163567 +sg25268 +S'Genevieve' +p163568 +sg25270 +S'Gerald Leslie Brockhurst' +p163569 +sa(dp163570 +g25273 +S'bronze' +p163571 +sg25267 +g27 +sg25275 +S'1458' +p163572 +sg25268 +S'Alfonso V of Aragon, 1396-1458, King of Naples and Sicily 1443 [obverse]' +p163573 +sg25270 +S'Cristoforo di Geremia' +p163574 +sa(dp163575 +g25273 +S'bronze' +p163576 +sg25267 +g27 +sg25275 +S'1458' +p163577 +sg25268 +S'Alfonso Crowned by Mars and Bellona [reverse]' +p163578 +sg25270 +S'Cristoforo di Geremia' +p163579 +sa(dp163580 +g25268 +S'Constantine the Great [obverse]' +p163581 +sg25270 +S'Cristoforo di Geremia' +p163582 +sg25273 +S'bronze' +p163583 +sg25275 +S'c. 1468' +p163584 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c588.jpg' +p163585 +sg25267 +g27 +sa(dp163586 +g25268 +S'Constantine and the Church [reverse]' +p163587 +sg25270 +S'Cristoforo di Geremia' +p163588 +sg25273 +S'bronze' +p163589 +sg25275 +S'c. 1468' +p163590 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c589.jpg' +p163591 +sg25267 +g27 +sa(dp163592 +g25268 +S'Lodovico Scarampi (Mezzarota), died 1465, Patriarch of Aquileia 1444 [obverse]' +p163593 +sg25270 +S'Cristoforo di Geremia' +p163594 +sg25273 +S'bronze' +p163595 +sg25275 +S'unknown date\n' +p163596 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a00067ed.jpg' +p163597 +sg25267 +g27 +sa(dp163598 +g25268 +S'Triumphal Procession [reverse]' +p163599 +sg25270 +S'Cristoforo di Geremia' +p163600 +sg25273 +S'bronze' +p163601 +sg25275 +S'unknown date\n' +p163602 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a00067ec.jpg' +p163603 +sg25267 +g27 +sa(dp163604 +g25273 +S'bronze' +p163605 +sg25267 +g27 +sg25275 +S'1461' +p163606 +sg25268 +S"Guillaume d'Estouteville, c. 1412-1483, Cardinal 1439, Archbishop of Rouen 1453, Bishop of Ostia 1461" +p163607 +sg25270 +S'Cristoforo di Geremia' +p163608 +sa(dp163609 +g25273 +S'bronze' +p163610 +sg25267 +g27 +sg25275 +S'1461' +p163611 +sg25268 +S'Shield of Arms of Estouteville [reverse]' +p163612 +sg25270 +S'Cristoforo di Geremia' +p163613 +sa(dp163614 +g25273 +S'bronze' +p163615 +sg25267 +g27 +sg25275 +S'unknown date\n' +p163616 +sg25268 +S'Paolo Dotti of Padua (?), General of Militia in Vicenza 1289 [obverse]' +p163617 +sg25270 +S'Cristoforo di Geremia' +p163618 +sa(dp163619 +g25273 +S'bronze' +p163620 +sg25267 +g27 +sg25275 +S'unknown date\n' +p163621 +sg25268 +S'Constancy Resting on Staff and Column [reverse]' +p163622 +sg25270 +S'Cristoforo di Geremia' +p163623 +sa(dp163624 +g25273 +S'etching' +p163625 +sg25267 +g27 +sg25275 +S'1923' +p163626 +sg25268 +S'Maureen (or "Patricia)' +p163627 +sg25270 +S'Gerald Leslie Brockhurst' +p163628 +sa(dp163629 +g25273 +S'overall (diameter): 7.86 cm (3 1/8 in.)\r\ngross weight: 110.75 gr (0.244 lb.)\r\naxis: 12:00' +p163630 +sg25267 +g27 +sg25275 +S'\nbronze' +p163631 +sg25268 +S'Paul II (Pietro Barbo, 1464-1471), Pope 1464, in Public Consistory [obverse]' +p163632 +sg25270 +S'Roman 15th Century' +p163633 +sa(dp163634 +g25273 +S'overall (diameter): 7.86 cm (3 1/8 in.)\r\ngross weight: 110.75 gr (0.244 lb.)\r\naxis: 12:00' +p163635 +sg25267 +g27 +sg25275 +S'\nbronze' +p163636 +sg25268 +S'Christ in Glory, and the Resurrection [reverse]' +p163637 +sg25270 +S'Roman 15th Century' +p163638 +sa(dp163639 +g25273 +S'overall (diameter): 3.39 cm (1 5/16 in.)\r\ngross weight: 22.98 gr (0.051 lb.)\r\naxis: 6:00' +p163640 +sg25267 +g27 +sg25275 +S'\nbronze' +p163641 +sg25268 +S'Paul II (Pietro Barbo, 1417-1471), Pope 1464 [obverse]' +p163642 +sg25270 +S'Roman 15th Century' +p163643 +sa(dp163644 +g25273 +S'overall (diameter): 3.39 cm (1 5/16 in.)\r\ngross weight: 22.98 gr (0.051 lb.)\r\naxis: 6:00' +p163645 +sg25267 +g27 +sg25275 +S'\nbronze' +p163646 +sg25268 +S'Palazzo Venezia [reverse]' +p163647 +sg25270 +S'Roman 15th Century' +p163648 +sa(dp163649 +g25273 +S'bronze//Late cast' +p163650 +sg25267 +g27 +sg25275 +S'unknown date\n' +p163651 +sg25268 +S'Bartolommeo Partenio, active 1480-1485, Humanist [obverse]' +p163652 +sg25270 +S'Lysippus Junior' +p163653 +sa(dp163654 +g25273 +S'bronze//Late cast' +p163655 +sg25267 +g27 +sg25275 +S'unknown date\n' +p163656 +sg25268 +S'Lily and Inscription [reverse]' +p163657 +sg25270 +S'Lysippus Junior' +p163658 +sa(dp163659 +g25273 +S'bronze' +p163660 +sg25267 +g27 +sg25275 +S'unknown date\n' +p163661 +sg25268 +S'Giovanni Francesco de Rangoni [obverse]' +p163662 +sg25270 +S'Lysippus Junior' +p163663 +sa(dp163664 +g25273 +S'bronze' +p163665 +sg25267 +g27 +sg25275 +S'unknown date\n' +p163666 +sg25268 +S'Armed Figure Standing on a Prostrate Wolf [reverse]' +p163667 +sg25270 +S'Lysippus Junior' +p163668 +sa(dp163669 +g25273 +S'bronze' +p163670 +sg25267 +g27 +sg25275 +S'unknown date\n' +p163671 +sg25268 +S'Sixtus IV (Francesco della Rovere, 1414-1484), Pope 1471 [obverse]' +p163672 +sg25270 +S'Lysippus Junior' +p163673 +sa(dp163674 +g25273 +S'bronze' +p163675 +sg25267 +g27 +sg25275 +S'unknown date\n' +p163676 +sg25268 +S'Sixtus IV Being Crowned [reverse]' +p163677 +sg25270 +S'Lysippus Junior' +p163678 +sa(dp163679 +g25273 +S'etching' +p163680 +sg25267 +g27 +sg25275 +S'1922' +p163681 +sg25268 +S'By the Window' +p163682 +sg25270 +S'Gerald Leslie Brockhurst' +p163683 +sa(dp163684 +g25273 +S'bronze' +p163685 +sg25267 +g27 +sg25275 +S'unknown date\n' +p163686 +sg25268 +S'Giovanni Alvise Toscani, c. 1450-1478, Milanese Jurisconsult, Conisitorial Advocate, and Auditor General under Pope Sixtus IV [obverse]' +p163687 +sg25270 +S'Lysippus Junior' +p163688 +sa(dp163689 +g25273 +S'bronze' +p163690 +sg25267 +g27 +sg25275 +S'unknown date\n' +p163691 +sg25268 +S'Neptune in a Sea-Car [reverse]' +p163692 +sg25270 +S'Lysippus Junior' +p163693 +sa(dp163694 +g25273 +S'bronze' +p163695 +sg25267 +g27 +sg25275 +S'unknown date\n' +p163696 +sg25268 +S'Giovanni Alvise Toscani, c. 1450-1478, Milanese Jurisconsult, Consistorial Advocate, and Auditor General under Pope Sixtus IV [obverse]' +p163697 +sg25270 +S'Lysippus Junior' +p163698 +sa(dp163699 +g25273 +S'bronze' +p163700 +sg25267 +g27 +sg25275 +S'unknown date\n' +p163701 +sg25268 +S'Inscription in a Wreath [reverse]' +p163702 +sg25270 +S'Lysippus Junior' +p163703 +sa(dp163704 +g25273 +S', unknown date' +p163705 +sg25267 +g27 +sg25275 +S'\n' +p163706 +sg25268 +S'Giovanni Candida, before 1450-c. 1499, Medallist' +p163707 +sg25270 +S'Giovanni Candida' +p163708 +sa(dp163709 +g25273 +S'bronze' +p163710 +sg25267 +g27 +sg25275 +S'1474' +p163711 +sg25268 +S'Charles the Bold, 1433-1477, Duke of Burgundy 1467 [obverse]' +p163712 +sg25270 +S'Giovanni Candida' +p163713 +sa(dp163714 +g25273 +S'bronze' +p163715 +sg25267 +g27 +sg25275 +S'1474' +p163716 +sg25268 +S'Ram between Two Briquets [reverse]' +p163717 +sg25270 +S'Giovanni Candida' +p163718 +sa(dp163719 +g25273 +S', 1472/1480' +p163720 +sg25267 +g27 +sg25275 +S'\n' +p163721 +sg25268 +S'Antoine, 1421-1504, Grand Bastard of Burgundy [obverse]' +p163722 +sg25270 +S'Giovanni Candida' +p163723 +sa(dp163724 +g25273 +S', 1472/1480' +p163725 +sg25267 +g27 +sg25275 +S'\n' +p163726 +sg25268 +S'Barbican [reverse]' +p163727 +sg25270 +S'Giovanni Candida' +p163728 +sa(dp163729 +g25268 +S'Maximilian I, 1459-1519, Archduke of Austria, afterwards Emperor 1493 [obverse]' +p163730 +sg25270 +S'Giovanni Candida' +p163731 +sg25273 +S', 1477' +p163732 +sg25275 +S'\n' +p163733 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006406.jpg' +p163734 +sg25267 +g27 +sa(dp163735 +g25273 +S'etching' +p163736 +sg25267 +g27 +sg25275 +S'1927' +p163737 +sg25268 +S'The Two Melisandes' +p163738 +sg25270 +S'Gerald Leslie Brockhurst' +p163739 +sa(dp163740 +g25268 +S'Maria of Burgundy, died 1482, Wife of Maximilian of Austria 1477 [reverse]' +p163741 +sg25270 +S'Giovanni Candida' +p163742 +sg25273 +S', 1477' +p163743 +sg25275 +S'\n' +p163744 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006407.jpg' +p163745 +sg25267 +g27 +sa(dp163746 +g25273 +S'bronze//After-cast' +p163747 +sg25267 +g27 +sg25275 +S'c. 1479' +p163748 +sg25268 +S'Jean Carondelet, President of the Parliament of Burgundy 1479 [obverse]' +p163749 +sg25270 +S'Giovanni Candida' +p163750 +sa(dp163751 +g25273 +S'bronze//After-cast' +p163752 +sg25267 +g27 +sg25275 +S'c. 1479' +p163753 +sg25268 +S'Marguerite de Chassey, Wife of Jean Carondelet [reverse]' +p163754 +sg25270 +S'Giovanni Candida' +p163755 +sa(dp163756 +g25273 +S', unknown date' +p163757 +sg25267 +g27 +sg25275 +S'\n' +p163758 +sg25268 +S'Raimondo Lavagnoli, Commissary of Saxony in the 11th or 12th Century [obverse]' +p163759 +sg25270 +S'Giovanni Candida' +p163760 +sa(dp163761 +g25273 +S', unknown date' +p163762 +sg25267 +g27 +sg25275 +S'\n' +p163763 +sg25268 +S'Arms of Lavagnoli [reverse]' +p163764 +sg25270 +S'Giovanni Candida' +p163765 +sa(dp163766 +g25273 +S', 1488/1493' +p163767 +sg25267 +g27 +sg25275 +S'\n' +p163768 +sg25268 +S'Robert Briconnet, President of the Court of Inquiry [obverse]' +p163769 +sg25270 +S'Giovanni Candida' +p163770 +sa(dp163771 +g25273 +S', 1488/1493' +p163772 +sg25267 +g27 +sg25275 +S'\n' +p163773 +sg25268 +S'Inscription [reverse]' +p163774 +sg25270 +S'Giovanni Candida' +p163775 +sa(dp163776 +g25273 +S', c. 1503' +p163777 +sg25267 +g27 +sg25275 +S'\n' +p163778 +sg25268 +S'Nicolas Maugras, Bishop of Uzes 1483-1503 [obverse]' +p163779 +sg25270 +S'Giovanni Candida' +p163780 +sa(dp163781 +g25273 +S', c. 1503' +p163782 +sg25267 +g27 +sg25275 +S'\n' +p163783 +sg25268 +S'Arms of Maugras over a Crozier [reverse]' +p163784 +sg25270 +S'Giovanni Candida' +p163785 +sa(dp163786 +g25273 +S', c. 1494/1499' +p163787 +sg25267 +g27 +sg25275 +S'\n' +p163788 +sg25268 +S'Giuliano della Rovere, 1443-1513, afterwards Pope Julius II, 1503 [obverse]' +p163789 +sg25270 +S'Giovanni Candida' +p163790 +sa(dp163791 +g25273 +S'etching' +p163792 +sg25267 +g27 +sg25275 +S'1929' +p163793 +sg25268 +S'Malvina' +p163794 +sg25270 +S'Gerald Leslie Brockhurst' +p163795 +sa(dp163796 +g25273 +S', c. 1494/1499' +p163797 +sg25267 +g27 +sg25275 +S'\n' +p163798 +sg25268 +S'Clemente della Rovere, Bishop of Mende 1483-1504, Brother of Giuliano [reverse]' +p163799 +sg25270 +S'Giovanni Candida' +p163800 +sa(dp163801 +g25273 +S'Italian, before 1450 - c. 1499' +p163802 +sg25267 +g27 +sg25275 +S'(related artist)' +p163803 +sg25268 +S'Thomas Bohier, died 1524, G\xc3\xa9n\xc3\xa9ral de Finances of Normandy 1496 [obverse]' +p163804 +sg25270 +S'Artist Information (' +p163805 +sa(dp163806 +g25273 +S'Italian, before 1450 - c. 1499' +p163807 +sg25267 +g27 +sg25275 +S'(related artist)' +p163808 +sg25268 +S'Arms of Thomas Bohier [reverse]' +p163809 +sg25270 +S'Artist Information (' +p163810 +sa(dp163811 +g25273 +S'Italian, before 1450 - c. 1499' +p163812 +sg25267 +g27 +sg25275 +S'(related artist)' +p163813 +sg25268 +S'Fran\xc3\xa7ois, Duke of Valois, 1494-1547, afterwards Fran\xc3\xa7ois I, King of France 1515 [obverse]' +p163814 +sg25270 +S'Artist Information (' +p163815 +sa(dp163816 +g25273 +S'Italian, before 1450 - c. 1499' +p163817 +sg25267 +g27 +sg25275 +S'(related artist)' +p163818 +sg25268 +S'Salamander in Flames [reverse]' +p163819 +sg25270 +S'Artist Information (' +p163820 +sa(dp163821 +g25273 +S'overall (diameter): 3.63 cm (1 7/16 in.)\r\ngross weight: 12.49 gr (0.028 lb.)\r\naxis: 6:00' +p163822 +sg25267 +g27 +sg25275 +S'\nbronze' +p163823 +sg25268 +S'Don Rodrigo de Bivar Y Mendoza, died 1523 [obverse]' +p163824 +sg25270 +S'Roman 15th Century' +p163825 +sa(dp163826 +g25273 +S'overall (diameter): 3.63 cm (1 7/16 in.)\r\ngross weight: 12.49 gr (0.028 lb.)\r\naxis: 6:00' +p163827 +sg25267 +g27 +sg25275 +S'\nbronze' +p163828 +sg25268 +S'Mars and Venus [reverse]' +p163829 +sg25270 +S'Roman 15th Century' +p163830 +sa(dp163831 +g25273 +S'overall (diameter): 3.72 cm (1 7/16 in.)\r\ngross weight: 19.98 gr (0.044 lb.)\r\naxis: 5:00' +p163832 +sg25267 +g27 +sg25275 +S'\nbronze' +p163833 +sg25268 +S'Marcello Capodiferro [obverse]' +p163834 +sg25270 +S'Roman 15th Century' +p163835 +sa(dp163836 +g25273 +S'overall (diameter): 3.72 cm (1 7/16 in.)\r\ngross weight: 19.98 gr (0.044 lb.)\r\naxis: 5:00' +p163837 +sg25267 +g27 +sg25275 +S'\nbronze' +p163838 +sg25268 +S'Ox [reverse]' +p163839 +sg25270 +S'Roman 15th Century' +p163840 +sa(dp163841 +g25273 +S'overall (diameter): 4.31 cm (1 11/16 in.)\r\ngross weight: 26.17 gr (0.058 lb.)\r\naxis: 6:00' +p163842 +sg25267 +g27 +sg25275 +S'\nbronze' +p163843 +sg25268 +S'Bernardino Carvajal, died 1522, Cardinal of Santa Croce 1493, deposed 1511, restored 1513 [obverse]' +p163844 +sg25270 +S'Roman 15th Century' +p163845 +sa(dp163846 +g25273 +S'etching' +p163847 +sg25267 +g27 +sg25275 +S'1926' +p163848 +sg25268 +S'La Tresse' +p163849 +sg25270 +S'Gerald Leslie Brockhurst' +p163850 +sa(dp163851 +g25273 +S'overall (diameter): 4.31 cm (1 11/16 in.)\r\ngross weight: 26.17 gr (0.058 lb.)\r\naxis: 6:00' +p163852 +sg25267 +g27 +sg25275 +S'\nbronze' +p163853 +sg25268 +S'Philosophy with a Manuscript and Sceptre [reverse]' +p163854 +sg25270 +S'Roman 15th Century' +p163855 +sa(dp163856 +g25273 +S'overall (diameter): 5.38 cm (2 1/8 in.)\r\ngross weight: 52.88 gr (0.117 lb.)\r\naxis: 12:00' +p163857 +sg25267 +g27 +sg25275 +S'\nbronze' +p163858 +sg25268 +S'Domenico Grimani, 1463-1523, Cardinal 1493 [obverse]' +p163859 +sg25270 +S'Roman 15th Century' +p163860 +sa(dp163861 +g25273 +S'overall (diameter): 5.38 cm (2 1/8 in.)\r\ngross weight: 52.88 gr (0.117 lb.)\r\naxis: 12:00' +p163862 +sg25267 +g27 +sg25275 +S'\nbronze' +p163863 +sg25268 +S'Theology and Philosophy [reverse]' +p163864 +sg25270 +S'Roman 15th Century' +p163865 +sa(dp163866 +g25273 +S'bronze' +p163867 +sg25267 +g27 +sg25275 +S'probably 1450/1503' +p163868 +sg25268 +S'Guillaume de Poitiers, died 1503, Marquis de Cotrone [obverse]' +p163869 +sg25270 +S'Giovanni Candida' +p163870 +sa(dp163871 +g25273 +S'bronze' +p163872 +sg25267 +g27 +sg25275 +S'probably 1450/1503' +p163873 +sg25268 +S'Mercury with a Female Figure [reverse]' +p163874 +sg25270 +S'Giovanni Candida' +p163875 +sa(dp163876 +g25273 +S'overall (diameter): 3.11 cm (1 1/4 in.)\r\ngross weight: 11.88 gr (0.026 lb.)\r\naxis: 8:00' +p163877 +sg25267 +g27 +sg25275 +S'\nbronze//Struck' +p163878 +sg25268 +S'Julius II (Giuliano della Rovere, 1443-1513), Pope 1503 [obverse]' +p163879 +sg25270 +S'Roman 16th Century' +p163880 +sa(dp163881 +g25273 +S'overall (diameter): 3.11 cm (1 1/4 in.)\r\ngross weight: 11.88 gr (0.026 lb.)\r\naxis: 8:00' +p163882 +sg25267 +g27 +sg25275 +S'\nbronze//Struck' +p163883 +sg25268 +S'Shield with the Arms of Della Rovere [reverse]' +p163884 +sg25270 +S'Roman 16th Century' +p163885 +sa(dp163886 +g25273 +S'overall (diameter): 7.86 cm (3 1/8 in.)\r\ngross weight: 245.59 gr (0.541 lb.)\r\naxis: 12:00' +p163887 +sg25267 +g27 +sg25275 +S'\nbronze' +p163888 +sg25268 +S"Leo X (Giovanni de' Medici, 1475-1521), Pope 1513 [obverse]" +p163889 +sg25270 +S'Roman 16th Century' +p163890 +sa(dp163891 +g25273 +S'overall (diameter): 7.86 cm (3 1/8 in.)\r\ngross weight: 245.59 gr (0.541 lb.)\r\naxis: 12:00' +p163892 +sg25267 +g27 +sg25275 +S'\nbronze' +p163893 +sg25268 +S'Shield with the Medici Arms, Surmounted by the Papal Tiara and Crossed Keys [reverse]' +p163894 +sg25270 +S'Roman 16th Century' +p163895 +sa(dp163896 +g25273 +S'overall (diameter): 8.77 cm (3 7/16 in.)\r\ngross weight: 315.54 gr (0.696 lb.)\r\naxis: 6:00' +p163897 +sg25267 +g27 +sg25275 +S'\nbronze' +p163898 +sg25268 +S"Giuliano II de' Medici, 1478-1516, Duc de Nemours [obverse]" +p163899 +sg25270 +S'Roman 16th Century' +p163900 +sa(dp163901 +g25273 +S'etching' +p163902 +sg25267 +g27 +sg25275 +S'1925' +p163903 +sg25268 +S'The Dancer' +p163904 +sg25270 +S'Gerald Leslie Brockhurst' +p163905 +sa(dp163906 +g25273 +S'overall (diameter): 8.77 cm (3 7/16 in.)\r\ngross weight: 315.54 gr (0.696 lb.)\r\naxis: 6:00' +p163907 +sg25267 +g27 +sg25275 +S'\nbronze' +p163908 +sg25268 +S'Florence Leaning on the Medici Shield [reverse]' +p163909 +sg25270 +S'Roman 16th Century' +p163910 +sa(dp163911 +g25273 +S'overall (diameter): 3.41 cm (1 5/16 in.)\r\ngross weight: 19.49 gr (0.043 lb.)\r\naxis: 5:00' +p163912 +sg25267 +g27 +sg25275 +S'\nbronze' +p163913 +sg25268 +S"Giuliano II de' Medici, 1478-1516, Duc de Nemours [obverse]" +p163914 +sg25270 +S'Roman 16th Century' +p163915 +sa(dp163916 +g25273 +S'overall (diameter): 3.41 cm (1 5/16 in.)\r\ngross weight: 19.49 gr (0.043 lb.)\r\naxis: 5:00' +p163917 +sg25267 +g27 +sg25275 +S'\ngilt bronze' +p163918 +sg25268 +S'Rome Holding a Figure of Victory' +p163919 +sg25270 +S'Roman 16th Century' +p163920 +sa(dp163921 +g25273 +S'overall (diameter): 4.55 cm (1 13/16 in.)\r\ngross weight: 48.53 gr (0.107 lb.)\r\naxis: 12:00' +p163922 +sg25267 +g27 +sg25275 +S'\nbronze' +p163923 +sg25268 +S'Girolamo Arsago, Bishop of Nice, 1511-1542 [obverse]' +p163924 +sg25270 +S'Roman 16th Century' +p163925 +sa(dp163926 +g25273 +S'overall (diameter): 4.55 cm (1 13/16 in.)\r\ngross weight: 48.53 gr (0.107 lb.)\r\naxis: 12:00' +p163927 +sg25267 +g27 +sg25275 +S'\nbronze' +p163928 +sg25268 +S'Inscription [reverse]' +p163929 +sg25270 +S'Roman 16th Century' +p163930 +sa(dp163931 +g25273 +S'overall (diameter, including remnants of suspension loop at 12:00 ): 9.22 cm (3 5/8 in.)\r\ngross weight: 188.16 gr (0.415 lb.)\r\naxis: 1:00' +p163932 +sg25267 +g27 +sg25275 +S'\nbronze' +p163933 +sg25268 +S'Jesus Christ [obverse]' +p163934 +sg25270 +S'Roman 16th Century' +p163935 +sa(dp163936 +g25273 +S'overall (diameter, including remnants of suspension loop at 12:00 ): 9.22 cm (3 5/8 in.)\r\ngross weight: 188.16 gr (0.415 lb.)\r\naxis: 1:00' +p163937 +sg25267 +g27 +sg25275 +S'\nbronze' +p163938 +sg25268 +S'Inscription in a Wreath [reverse]' +p163939 +sg25270 +S'Roman 16th Century' +p163940 +sa(dp163941 +g25273 +S'overall (diameter): 8.98 cm (3 9/16 in.)\r\ngross weight: 332.44 gr (0.733 lb.)\r\naxis: 12:00' +p163942 +sg25267 +g27 +sg25275 +S'\nbronze' +p163943 +sg25268 +S'Saint Paul [obverse]' +p163944 +sg25270 +S'Roman 16th Century' +p163945 +sa(dp163946 +g25273 +S'overall (diameter): 8.98 cm (3 9/16 in.)\r\ngross weight: 332.44 gr (0.733 lb.)\r\naxis: 12:00' +p163947 +sg25267 +g27 +sg25275 +S'\nbronze' +p163948 +sg25268 +S'Inscription in a Wreath [reverse]' +p163949 +sg25270 +S'Roman 16th Century' +p163950 +sa(dp163951 +g25268 +S"Cosimo de' Medici, 1389-1464, Pater Patriae [obverse]" +p163952 +sg25270 +S'Florentine 15th Century' +p163953 +sg25273 +S'bronze//Later cast' +p163954 +sg25275 +S'probably 1465/1469' +p163955 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f33.jpg' +p163956 +sg25267 +g27 +sa(dp163957 +g25273 +S'etching' +p163958 +sg25267 +g27 +sg25275 +S'1930' +p163959 +sg25268 +S'Henry Bell, Esquire' +p163960 +sg25270 +S'Gerald Leslie Brockhurst' +p163961 +sa(dp163962 +g25268 +S'Florence Holding an Orb and Triple Olive Branch [reverse]' +p163963 +sg25270 +S'Florentine 15th Century' +p163964 +sg25273 +S'bronze//Later cast' +p163965 +sg25275 +S'probably 1465/1469' +p163966 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f34.jpg' +p163967 +sg25267 +g27 +sa(dp163968 +g25268 +S"Cosimo de' Medici, 1389-1464, Pater Patriae [obverse]" +p163969 +sg25270 +S'Florentine 15th Century' +p163970 +sg25273 +S'bronze' +p163971 +sg25275 +S'c. 1465/1469' +p163972 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002daf.jpg' +p163973 +sg25267 +g27 +sa(dp163974 +g25268 +S'Florence Holding an Orb and Triple Olive Branch [reverse]' +p163975 +sg25270 +S'Florentine 15th Century' +p163976 +sg25273 +S'bronze' +p163977 +sg25275 +S'c. 1465/1469' +p163978 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002db0.jpg' +p163979 +sg25267 +g27 +sa(dp163980 +g25273 +S'bronze' +p163981 +sg25267 +g27 +sg25275 +S'c. 1464/1470' +p163982 +sg25268 +S"Cosimo de' Medici, 1389-1464, Pater Patriae [obverse]" +p163983 +sg25270 +S'Florentine 15th Century' +p163984 +sa(dp163985 +g25273 +S'bronze' +p163986 +sg25267 +g27 +sg25275 +S'c. 1464/1470' +p163987 +sg25268 +S'Florence Holding an Orb and Triple Olive Branch [reverse]' +p163988 +sg25270 +S'Florentine 15th Century' +p163989 +sa(dp163990 +g25268 +S'Mehmed II, 1430-1481, Sultan of the Turks 1451 [obverse]' +p163991 +sg25270 +S'Bertoldo di Giovanni' +p163992 +sg25273 +S'bronze' +p163993 +sg25275 +S'c. 1480' +p163994 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c2d.jpg' +p163995 +sg25267 +g27 +sa(dp163996 +g25268 +S'Triumphal Car with Greece, Trebizond, and Asia [reverse]' +p163997 +sg25270 +S'Bertoldo di Giovanni' +p163998 +sg25273 +S'bronze' +p163999 +sg25275 +S'c. 1480' +p164000 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c2e.jpg' +p164001 +sg25267 +g27 +sa(dp164002 +g25268 +S'Frederick III, 1415-1493, Holy Roman Emperor 1452 [obverse]' +p164003 +sg25270 +S'Bertoldo di Giovanni' +p164004 +sg25273 +S'bronze' +p164005 +sg25275 +S'1468/1469' +p164006 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a00067e8.jpg' +p164007 +sg25267 +g27 +sa(dp164008 +g25268 +S"Emperor, Pope, and Cardinals on Ponte Sant' Angelo [reverse]" +p164009 +sg25270 +S'Bertoldo di Giovanni' +p164010 +sg25273 +S'bronze' +p164011 +sg25275 +S'1468/1469' +p164012 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a00067e9.jpg' +p164013 +sg25267 +g27 +sa(dp164014 +g25273 +S'bronze' +p164015 +sg25267 +g27 +sg25275 +S'c. 1480' +p164016 +sg25268 +S'Antonio Gratiadei, died 1491, Imperial Envoy [obverse]' +p164017 +sg25270 +S'Bertoldo di Giovanni' +p164018 +sa(dp164019 +g25273 +S'graphite, red crayon, and white chalk' +p164020 +sg25267 +g27 +sg25275 +S'unknown date\n' +p164021 +sg25268 +S'Study of Head' +p164022 +sg25270 +S'Gerald Leslie Brockhurst' +p164023 +sa(dp164024 +g25273 +S'bronze' +p164025 +sg25267 +g27 +sg25275 +S'c. 1480' +p164026 +sg25268 +S'Triumphal Car with Mercury and the Muses [reverse]' +p164027 +sg25270 +S'Bertoldo di Giovanni' +p164028 +sa(dp164029 +g25273 +S'bronze' +p164030 +sg25267 +g27 +sg25275 +S'unknown date\n' +p164031 +sg25268 +S"Filippo de' Medici, Archbishop of Pisa, 1462-1474 [obverse]" +p164032 +sg25270 +S'Bertoldo di Giovanni' +p164033 +sa(dp164034 +g25273 +S'bronze' +p164035 +sg25267 +g27 +sg25275 +S'unknown date\n' +p164036 +sg25268 +S'The Last Judgment [reverse]' +p164037 +sg25270 +S'Bertoldo di Giovanni' +p164038 +sa(dp164039 +g25268 +S"Lorenzo de' Medici, il Magnifico, 1449-1492 (The Pazzi Conspiracy Medal) [obverse]" +p164040 +sg25270 +S'Bertoldo di Giovanni' +p164041 +sg25273 +S'bronze' +p164042 +sg25275 +S'1478' +p164043 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00030/a0003033.jpg' +p164044 +sg25267 +g27 +sa(dp164045 +g25268 +S"The Murder of Giuliano I de' Medici (The Pazzi Conspiracy Medal) [reverse]" +p164046 +sg25270 +S'Bertoldo di Giovanni' +p164047 +sg25273 +S'bronze' +p164048 +sg25275 +S'1478' +p164049 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00030/a0003034.jpg' +p164050 +sg25267 +g27 +sa(dp164051 +g25273 +S'bronze' +p164052 +sg25267 +g27 +sg25275 +S'unknown date\n' +p164053 +sg25268 +S"Lorenzo de' Medici, il Magnifico, 1449-1492 [obverse]" +p164054 +sg25270 +S'Bertoldo di Giovanni' +p164055 +sa(dp164056 +g25273 +S'bronze' +p164057 +sg25267 +g27 +sg25275 +S'unknown date\n' +p164058 +sg25268 +S'Figure in Antique Armor [reverse]' +p164059 +sg25270 +S'Bertoldo di Giovanni' +p164060 +sa(dp164061 +g25273 +S'gilt bronze//After-cast' +p164062 +sg25267 +g27 +sg25275 +S'1475' +p164063 +sg25268 +S'Francesco Diedo [obverse]' +p164064 +sg25270 +S'Bertoldo di Giovanni' +p164065 +sa(dp164066 +g25273 +S'gilt bronze//After-cast' +p164067 +sg25267 +g27 +sg25275 +S'1475' +p164068 +sg25268 +S'Hercules Pursuing Nessus and Deianara [reverse]' +p164069 +sg25270 +S'Bertoldo di Giovanni' +p164070 +sa(dp164071 +g25268 +S'Matthias Corvinus, King of Hungary 1458-1490 [obverse]' +p164072 +sg25270 +S'Florentine 15th Century' +p164073 +sg25273 +S'bronze' +p164074 +sg25275 +S'late 15th century' +p164075 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006408.jpg' +p164076 +sg25267 +g27 +sa(dp164077 +g25273 +S'etching' +p164078 +sg25267 +g27 +sg25275 +S'1924' +p164079 +sg25268 +S'Girl with a Basket' +p164080 +sg25270 +S'Gerald Leslie Brockhurst' +p164081 +sa(dp164082 +g25268 +S'Battle between the Hungarians and the Turks [reverse]' +p164083 +sg25270 +S'Florentine 15th Century' +p164084 +sg25273 +S'bronze' +p164085 +sg25275 +S'late 15th century' +p164086 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006409.jpg' +p164087 +sg25267 +g27 +sa(dp164088 +g25268 +S"Alfonso I d'Este, 1476-1534, 3rd Duke of Ferrara, Modena and Reggio 1505 [obverse]" +p164089 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p164090 +sg25273 +S'bronze' +p164091 +sg25275 +S'1492' +p164092 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dbc.jpg' +p164093 +sg25267 +g27 +sa(dp164094 +g25268 +S'Alfonso(?) in a Triumphal Car [reverse]' +p164095 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p164096 +sg25273 +S'bronze' +p164097 +sg25275 +S'1492' +p164098 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dbd.jpg' +p164099 +sg25267 +g27 +sa(dp164100 +g25268 +S"Lorenzo de' Medici, il Magnifico, 1449-1492" +p164101 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p164102 +sg25273 +S'bronze//Late cast, hollow' +p164103 +sg25275 +S'unknown date\n' +p164104 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c585.jpg' +p164105 +sg25267 +g27 +sa(dp164106 +g25273 +S', c. 1480/1486' +p164107 +sg25267 +g27 +sg25275 +S'\n' +p164108 +sg25268 +S'Innocent VIII (Giovanni Battista Cib\xc3\xb2, 1432-1492), Pope 1484 [obverse]' +p164109 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p164110 +sa(dp164111 +g25273 +S', c. 1480/1486' +p164112 +sg25267 +g27 +sg25275 +S'\n' +p164113 +sg25268 +S'Justice, Peace, and Abundance [reverse]' +p164114 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p164115 +sa(dp164116 +g25273 +S'bronze' +p164117 +sg25267 +g27 +sg25275 +S'c. 1480/1486' +p164118 +sg25268 +S'Guglielmo Batonatti [obverse]' +p164119 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p164120 +sa(dp164121 +g25273 +S'bronze' +p164122 +sg25267 +g27 +sg25275 +S'c. 1480/1486' +p164123 +sg25268 +S'Unicorn and Tau-Cross [reverse]' +p164124 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p164125 +sa(dp164126 +g25273 +S'bronze' +p164127 +sg25267 +g27 +sg25275 +S'1485' +p164128 +sg25268 +S'Bernardino Gamberia, 1455-1507, Private Chamberlain of Innocent VIII [obverse]' +p164129 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p164130 +sa(dp164131 +g25273 +S'bronze' +p164132 +sg25267 +g27 +sg25275 +S'1485' +p164133 +sg25268 +S'God the Father in the Clouds [reverse]' +p164134 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p164135 +sa(dp164136 +g25273 +S'etching' +p164137 +sg25267 +g27 +sg25275 +S'1927' +p164138 +sg25268 +S'The Black Silk Dress' +p164139 +sg25270 +S'Gerald Leslie Brockhurst' +p164140 +sa(dp164141 +g25273 +S'bronze' +p164142 +sg25267 +g27 +sg25275 +S'probably 1485' +p164143 +sg25268 +S'Rinaldo Orsini, d. 1510, Archibishop of Florence 1474 [obverse]' +p164144 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p164145 +sa(dp164146 +g25273 +S'bronze' +p164147 +sg25267 +g27 +sg25275 +S'probably 1485' +p164148 +sg25268 +S'Fortune Holding a Rudder and Cornucopiae [reverse]' +p164149 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p164150 +sa(dp164151 +g25273 +S'bronze//Three times pierced' +p164152 +sg25267 +g27 +sg25275 +S'1494/1495' +p164153 +sg25268 +S'Charles VIII, 1470-1498, King of France 1483' +p164154 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p164155 +sa(dp164156 +g25273 +S'bronze' +p164157 +sg25267 +g27 +sg25275 +S'1494/1495' +p164158 +sg25268 +S"Jean du Mas de l'Isle, died 1495, Councillor of Charles VIII [obverse]" +p164159 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p164160 +sa(dp164161 +g25273 +S'bronze' +p164162 +sg25267 +g27 +sg25275 +S'1494/1495' +p164163 +sg25268 +S'Jean du Mas on a Horse Wearing Chanfron and Bardings [reverse]' +p164164 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p164165 +sa(dp164166 +g25273 +S'Italian, 1430 - 1514' +p164167 +sg25267 +g27 +sg25275 +S'(related artist)' +p164168 +sg25268 +S'Lionora Altoviti' +p164169 +sg25270 +S'Artist Information (' +p164170 +sa(dp164171 +g25273 +S'Italian, 1430 - 1514' +p164172 +sg25267 +g27 +sg25275 +S'(related artist)' +p164173 +sg25268 +S'Fra Alberto Belli, died 1482 [obverse]' +p164174 +sg25270 +S'Artist Information (' +p164175 +sa(dp164176 +g25273 +S'Italian, 1430 - 1514' +p164177 +sg25267 +g27 +sg25275 +S'(related artist)' +p164178 +sg25268 +S'Faith Holding a Chalice with a Wafer and a Cross [reverse]' +p164179 +sg25270 +S'Artist Information (' +p164180 +sa(dp164181 +g25273 +S'Italian, 1430 - 1514' +p164182 +sg25267 +g27 +sg25275 +S'(related artist)' +p164183 +sg25268 +S'Antonio di Dante Castiglione' +p164184 +sg25270 +S'Artist Information (' +p164185 +sa(dp164186 +g25273 +S'Italian, 1430 - 1514' +p164187 +sg25267 +g27 +sg25275 +S'(related artist)' +p164188 +sg25268 +S"Ercole I d'Este, 1431-1505, Duke of Ferrara, Modena, and Reggio 1471 [obverse]" +p164189 +sg25270 +S'Artist Information (' +p164190 +sa(dp164191 +g25273 +S'graphite' +p164192 +sg25267 +g27 +sg25275 +S'1920' +p164193 +sg25268 +S'Head of a Coster Girl' +p164194 +sg25270 +S'Gerald Leslie Brockhurst' +p164195 +sa(dp164196 +g25273 +S'Italian, 1430 - 1514' +p164197 +sg25267 +g27 +sg25275 +S'(related artist)' +p164198 +sg25268 +S'Minerva Resting on a Spear and Shield [reverse]' +p164199 +sg25270 +S'Artist Information (' +p164200 +sa(dp164201 +g25268 +S'Marsilio Ficino, 1433-1499, Florentine Humanist [obverse]' +p164202 +sg25270 +S'Artist Information (' +p164203 +sg25273 +S'Italian, 1430 - 1514' +p164204 +sg25275 +S'(related artist)' +p164205 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000640a.jpg' +p164206 +sg25267 +g27 +sa(dp164207 +g25268 +S'Inscription [reverse]' +p164208 +sg25270 +S'Artist Information (' +p164209 +sg25273 +S'Italian, 1430 - 1514' +p164210 +sg25275 +S'(related artist)' +p164211 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000640b.jpg' +p164212 +sg25267 +g27 +sa(dp164213 +g25273 +S'Italian, 1430 - 1514' +p164214 +sg25267 +g27 +sg25275 +S'(related artist)' +p164215 +sg25268 +S'Pietro Machiavelli, 1460/1461-1519 [obverse]' +p164216 +sg25270 +S'Artist Information (' +p164217 +sa(dp164218 +g25273 +S'Italian, 1430 - 1514' +p164219 +sg25267 +g27 +sg25275 +S'(related artist)' +p164220 +sg25268 +S'Eagle and Machiavelli Shield [reverse]' +p164221 +sg25270 +S'Artist Information (' +p164222 +sa(dp164223 +g25273 +S'Italian, 1430 - 1514' +p164224 +sg25267 +g27 +sg25275 +S'(related artist)' +p164225 +sg25268 +S'Roberto di Ruggiero Macinghi [obverse]' +p164226 +sg25270 +S'Artist Information (' +p164227 +sa(dp164228 +g25273 +S'Italian, 1430 - 1514' +p164229 +sg25267 +g27 +sg25275 +S'(related artist)' +p164230 +sg25268 +S'Figure Holding a Shield and Peacock [reverse]' +p164231 +sg25270 +S'Artist Information (' +p164232 +sa(dp164233 +g25273 +S'Italian, 1430 - 1514' +p164234 +sg25267 +g27 +sg25275 +S'(related artist)' +p164235 +sg25268 +S"Lorenzo de' Medici, il Magnifico, 1449-1492" +p164236 +sg25270 +S'Artist Information (' +p164237 +sa(dp164238 +g25268 +S"Maria de' Mucini [obverse]" +p164239 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p164240 +sg25273 +S', c. 1475' +p164241 +sg25275 +S'\n' +p164242 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006437.jpg' +p164243 +sg25267 +g27 +sa(dp164244 +g25268 +S'Eagle on an Armillary Sphere [reverse]' +p164245 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p164246 +sg25273 +S', c. 1475' +p164247 +sg25275 +S'\n' +p164248 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006436.jpg' +p164249 +sg25267 +g27 +sa(dp164250 +g25273 +S'graphite' +p164251 +sg25267 +g27 +sg25275 +S'unknown date\n' +p164252 +sg25268 +S'Yvonne' +p164253 +sg25270 +S'Gerald Leslie Brockhurst' +p164254 +sa(dp164255 +g25273 +S'Italian, 1430 - 1514' +p164256 +sg25267 +g27 +sg25275 +S'(related artist)' +p164257 +sg25268 +S'Ruberto di Bernardo Nasi, born 1479, Prior of Liberty 1513 [obverse]' +p164258 +sg25270 +S'Artist Information (' +p164259 +sa(dp164260 +g25273 +S'Italian, 1430 - 1514' +p164261 +sg25267 +g27 +sg25275 +S'(related artist)' +p164262 +sg25268 +S'Virginity Tying Love to a Tree [reverse]' +p164263 +sg25270 +S'Artist Information (' +p164264 +sa(dp164265 +g25273 +S'Italian, 1430 - 1514' +p164266 +sg25267 +g27 +sg25275 +S'(related artist)' +p164267 +sg25268 +S'Giovanni Paolo Orsini, 1450/1455-1502, Count of Atripaldi 1486 [obverse]' +p164268 +sg25270 +S'Artist Information (' +p164269 +sa(dp164270 +g25273 +S'Italian, 1430 - 1514' +p164271 +sg25267 +g27 +sg25275 +S'(related artist)' +p164272 +sg25268 +S'Giovanni Paolo Orsini on Horseback [reverse]' +p164273 +sg25270 +S'Artist Information (' +p164274 +sa(dp164275 +g25273 +S'Italian, 1430 - 1514' +p164276 +sg25267 +g27 +sg25275 +S'(related artist)' +p164277 +sg25268 +S'Giuliano Particini [obverse]' +p164278 +sg25270 +S'Artist Information (' +p164279 +sa(dp164280 +g25273 +S'Italian, 1430 - 1514' +p164281 +sg25267 +g27 +sg25275 +S'(related artist)' +p164282 +sg25268 +S'Hope Gazing at the Sun [reverse]' +p164283 +sg25270 +S'Artist Information (' +p164284 +sa(dp164285 +g25273 +S'Italian, 1430 - 1514' +p164286 +sg25267 +g27 +sg25275 +S'(related artist)' +p164287 +sg25268 +S'Costanza Bentivoglio, Wife of Antonio Pico della Mirandola 1473, Countess of Concordia 1483 [obverse]' +p164288 +sg25270 +S'Artist Information (' +p164289 +sa(dp164290 +g25273 +S'Italian, 1430 - 1514' +p164291 +sg25267 +g27 +sg25275 +S'(related artist)' +p164292 +sg25268 +S'Constancy Leaning on Tall Staff [reverse]' +p164293 +sg25270 +S'Artist Information (' +p164294 +sa(dp164295 +g25268 +S'Giovanni Pico della Mirandola, 1463-1494, Philosopher and Poet [obverse]' +p164296 +sg25270 +S'Artist Information (' +p164297 +sg25273 +S'Italian, 1430 - 1514' +p164298 +sg25275 +S'(related artist)' +p164299 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dbe.jpg' +p164300 +sg25267 +g27 +sa(dp164301 +g25268 +S'The Three Graces [reverse]' +p164302 +sg25270 +S'Artist Information (' +p164303 +sg25273 +S'Italian, 1430 - 1514' +p164304 +sg25275 +S'(related artist)' +p164305 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dbf.jpg' +p164306 +sg25267 +g27 +sa(dp164307 +g25273 +S'etching' +p164308 +sg25267 +g27 +sg25275 +S'1931' +p164309 +sg25268 +S'Young Womanhood' +p164310 +sg25270 +S'Gerald Leslie Brockhurst' +p164311 +sa(dp164312 +g25273 +S'Italian, 1430 - 1514' +p164313 +sg25267 +g27 +sg25275 +S'(related artist)' +p164314 +sg25268 +S'Antonio Pizzamani, 1462-1512, Venetian Scholar and Apostolic Pronotary, Bishop of Feltre 1504 [obverse]' +p164315 +sg25270 +S'Artist Information (' +p164316 +sa(dp164317 +g25273 +S'Italian, 1430 - 1514' +p164318 +sg25267 +g27 +sg25275 +S'(related artist)' +p164319 +sg25268 +S'Felicity, Virtue, and Fame [reverse]' +p164320 +sg25270 +S'Artist Information (' +p164321 +sa(dp164322 +g25268 +S'Angelo Poliziano, 1454-1494, Humanist [obverse]' +p164323 +sg25270 +S'Artist Information (' +p164324 +sg25273 +S'Italian, 1430 - 1514' +p164325 +sg25275 +S'(related artist)' +p164326 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000640d.jpg' +p164327 +sg25267 +g27 +sa(dp164328 +g25268 +S'Maria Poliziana [reverse]' +p164329 +sg25270 +S'Artist Information (' +p164330 +sg25273 +S'Italian, 1430 - 1514' +p164331 +sg25275 +S'(related artist)' +p164332 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000640c.jpg' +p164333 +sg25267 +g27 +sa(dp164334 +g25273 +S'Italian, 1430 - 1514' +p164335 +sg25267 +g27 +sg25275 +S'(related artist)' +p164336 +sg25268 +S'Maria Poliziana [obverse]' +p164337 +sg25270 +S'Artist Information (' +p164338 +sa(dp164339 +g25273 +S'Italian, 1430 - 1514' +p164340 +sg25267 +g27 +sg25275 +S'(related artist)' +p164341 +sg25268 +S'Constancy Resting on a Bundle of Arrows [reverse]' +p164342 +sg25270 +S'Artist Information (' +p164343 +sa(dp164344 +g25273 +S'Italian, 1430 - 1514' +p164345 +sg25267 +g27 +sg25275 +S'(related artist)' +p164346 +sg25268 +S'Costanza Rucellai, probably Daughter of Girolamo Rucellai and Wife of Francesco Dini 1471 [obverse]' +p164347 +sg25270 +S'Artist Information (' +p164348 +sa(dp164349 +g25273 +S'Italian, 1430 - 1514' +p164350 +sg25267 +g27 +sg25275 +S'(related artist)' +p164351 +sg25268 +S'Virginity Tying Love to a Tree [reverse]' +p164352 +sg25270 +S'Artist Information (' +p164353 +sa(dp164354 +g25268 +S'Girolamo Savonarola, 1452-1498, Dominican Preacher [obverse]' +p164355 +sg25270 +S'Artist Information (' +p164356 +sg25273 +S'Italian, 1430 - 1514' +p164357 +sg25275 +S'(related artist)' +p164358 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dc0.jpg' +p164359 +sg25267 +g27 +sa(dp164360 +g25268 +S'Italy Threatened by the Hand of God [reverse]' +p164361 +sg25270 +S'Artist Information (' +p164362 +sg25273 +S'Italian, 1430 - 1514' +p164363 +sg25275 +S'(related artist)' +p164364 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dc1.jpg' +p164365 +sg25267 +g27 +sa(dp164366 +g25273 +S'etching' +p164367 +sg25267 +g27 +sg25275 +S'1923' +p164368 +sg25268 +S'Le Casaquin de Laine' +p164369 +sg25270 +S'Gerald Leslie Brockhurst' +p164370 +sa(dp164371 +g25273 +S'Italian, 1430 - 1514' +p164372 +sg25267 +g27 +sg25275 +S'(related artist)' +p164373 +sg25268 +S'Caterina Sforza-Riario, 1463-1509, Countess of Forli and Imola [obverse]' +p164374 +sg25270 +S'Artist Information (' +p164375 +sa(dp164376 +g25273 +S'Italian, 1430 - 1514' +p164377 +sg25267 +g27 +sg25275 +S'(related artist)' +p164378 +sg25268 +S'Victory in a Car Drawn by Pegasi [reverse]' +p164379 +sg25270 +S'Artist Information (' +p164380 +sa(dp164381 +g25273 +S'Italian, 1430 - 1514' +p164382 +sg25267 +g27 +sg25275 +S'(related artist)' +p164383 +sg25268 +S'Ottaviano Sforza Riario, b. 1479, Count of Forli and Imola [obverse]' +p164384 +sg25270 +S'Artist Information (' +p164385 +sa(dp164386 +g25273 +S'Italian, 1430 - 1514' +p164387 +sg25267 +g27 +sg25275 +S'(related artist)' +p164388 +sg25268 +S'Ottaviano Riding with Drawn Sword [reverse]' +p164389 +sg25270 +S'Artist Information (' +p164390 +sa(dp164391 +g25273 +S'Italian, 1430 - 1514' +p164392 +sg25267 +g27 +sg25275 +S'(related artist)' +p164393 +sg25268 +S'Giovanni di Andrea da Stia [obverse]' +p164394 +sg25270 +S'Artist Information (' +p164395 +sa(dp164396 +g25273 +S'Italian, 1430 - 1514' +p164397 +sg25267 +g27 +sg25275 +S'(related artist)' +p164398 +sg25268 +S'Hope Gazing at the Sun [reverse]' +p164399 +sg25270 +S'Artist Information (' +p164400 +sa(dp164401 +g25268 +S'Filippo Strozzi, 1428-1491, Florentine Merchant-Prince [obverse]' +p164402 +sg25270 +S'Artist Information (' +p164403 +sg25273 +S'Italian, 1430 - 1514' +p164404 +sg25275 +S'(related artist)' +p164405 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006453.jpg' +p164406 +sg25267 +g27 +sa(dp164407 +g25268 +S'Eagle and Strozzi Shield in a Meadow [reverse]' +p164408 +sg25270 +S'Artist Information (' +p164409 +sg25273 +S'Italian, 1430 - 1514' +p164410 +sg25275 +S'(related artist)' +p164411 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006456.jpg' +p164412 +sg25267 +g27 +sa(dp164413 +g25273 +S'Italian, 1430 - 1514' +p164414 +sg25267 +g27 +sg25275 +S'(related artist)' +p164415 +sg25268 +S'Achille Tiberti of Cesena, died 1501' +p164416 +sg25270 +S'Artist Information (' +p164417 +sa(dp164418 +g25268 +S'Giovanna Albizzi, Wife of Lorenzo Tornabuoni [obverse]' +p164419 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p164420 +sg25273 +S', c. 1486' +p164421 +sg25275 +S'\n' +p164422 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006439.jpg' +p164423 +sg25267 +g27 +sa(dp164424 +g25273 +S'etching' +p164425 +sg25267 +g27 +sg25275 +S'1929' +p164426 +sg25268 +S'Viba' +p164427 +sg25270 +S'Gerald Leslie Brockhurst' +p164428 +sa(dp164429 +g25268 +S'The Three Graces [reverse]' +p164430 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p164431 +sg25273 +S', c. 1486' +p164432 +sg25275 +S'\n' +p164433 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006438.jpg' +p164434 +sg25267 +g27 +sa(dp164435 +g25273 +S'Italian, 1430 - 1514' +p164436 +sg25267 +g27 +sg25275 +S'(related artist)' +p164437 +sg25268 +S'Giovanni di Francesco Tornabuoni, 1428-1497, Florentine Banker and Statesman [obverse]' +p164438 +sg25270 +S'Artist Information (' +p164439 +sa(dp164440 +g25273 +S'Italian, 1430 - 1514' +p164441 +sg25267 +g27 +sg25275 +S'(related artist)' +p164442 +sg25268 +S'Hope Praying [reverse]' +p164443 +sg25270 +S'Artist Information (' +p164444 +sa(dp164445 +g25273 +S'Italian, 1430 - 1514' +p164446 +sg25267 +g27 +sg25275 +S'(related artist)' +p164447 +sg25268 +S'Alessandro di Gino Vecchietti, 1472-1532 [obverse]' +p164448 +sg25270 +S'Artist Information (' +p164449 +sa(dp164450 +g25273 +S'Italian, 1430 - 1514' +p164451 +sg25267 +g27 +sg25275 +S'(related artist)' +p164452 +sg25268 +S'Fortune with Sail, on a Dolphin [reverse]' +p164453 +sg25270 +S'Artist Information (' +p164454 +sa(dp164455 +g25273 +S'Italian, 1430 - 1514' +p164456 +sg25267 +g27 +sg25275 +S'(related artist)' +p164457 +sg25268 +S'Portrait of a Man' +p164458 +sg25270 +S'Artist Information (' +p164459 +sa(dp164460 +g25273 +S'Italian, 1430 - 1514' +p164461 +sg25267 +g27 +sg25275 +S'(related artist)' +p164462 +sg25268 +S"Ippolito d'Este, 1479-1520, Cardinal 1493" +p164463 +sg25270 +S'Artist Information (' +p164464 +sa(dp164465 +g25273 +S'Italian, 1430 - 1514' +p164466 +sg25267 +g27 +sg25275 +S'(related artist)' +p164467 +sg25268 +S'Francesco Lancilotti, born 1472, Painter' +p164468 +sg25270 +S'Artist Information (' +p164469 +sa(dp164470 +g25273 +S'Italian, 1430 - 1514' +p164471 +sg25267 +g27 +sg25275 +S'(related artist)' +p164472 +sg25268 +S'Gianozzo di Bernardo Salviati, born 1462 [obverse]' +p164473 +sg25270 +S'Artist Information (' +p164474 +sa(dp164475 +g25273 +S'Italian, 1430 - 1514' +p164476 +sg25267 +g27 +sg25275 +S'(related artist)' +p164477 +sg25268 +S'Fortune with Sail, on a Dolphin [reverse]' +p164478 +sg25270 +S'Artist Information (' +p164479 +sa(dp164480 +g25273 +S'etching' +p164481 +sg25267 +g27 +sg25275 +S'1930' +p164482 +sg25268 +S'Anais II' +p164483 +sg25270 +S'Gerald Leslie Brockhurst' +p164484 +sa(dp164485 +g25273 +S'Italian, 1430 - 1514' +p164486 +sg25267 +g27 +sg25275 +S'(related artist)' +p164487 +sg25268 +S'Michelangelo di Guglielmino Tanaglia, 1437-1512 [obverse]' +p164488 +sg25270 +S'Artist Information (' +p164489 +sa(dp164490 +g25273 +S'Italian, 1430 - 1514' +p164491 +sg25267 +g27 +sg25275 +S'(related artist)' +p164492 +sg25268 +S"Youth Wearing an Animal's Skin [reverse]" +p164493 +sg25270 +S'Artist Information (' +p164494 +sa(dp164495 +g25273 +S'Italian, 1430 - 1514' +p164496 +sg25267 +g27 +sg25275 +S'(related artist)' +p164497 +sg25268 +S'Lorenzo di Giovanni Tornabuoni, 1466-1497 [obverse]' +p164498 +sg25270 +S'Artist Information (' +p164499 +sa(dp164500 +g25273 +S'Italian, 1430 - 1514' +p164501 +sg25267 +g27 +sg25275 +S'(related artist)' +p164502 +sg25268 +S'Mercury Carrying a Caduceus [reverse]' +p164503 +sg25270 +S'Artist Information (' +p164504 +sa(dp164505 +g25268 +S'Lodovica Tornabuoni, Daughter of Giovanni Tornabuoni [obverse]' +p164506 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p164507 +sg25273 +S', c. 1485/1486' +p164508 +sg25275 +S'\n' +p164509 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006447.jpg' +p164510 +sg25267 +g27 +sa(dp164511 +g25268 +S'Unicorn Before a Tree [reverse]' +p164512 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p164513 +sg25273 +S', c. 1485/1486' +p164514 +sg25275 +S'\n' +p164515 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006446.jpg' +p164516 +sg25267 +g27 +sa(dp164517 +g25273 +S'bronze' +p164518 +sg25267 +g27 +sg25275 +S'c. 1500' +p164519 +sg25268 +S'Aristotle' +p164520 +sg25270 +S'Florentine 15th Century' +p164521 +sa(dp164522 +g25273 +S'bronze//Molded frame' +p164523 +sg25267 +g27 +sg25275 +S'late 15th century' +p164524 +sg25268 +S'Dante Alighieri, Florentine Poet, 1265-1321 [obverse]' +p164525 +sg25270 +S'Florentine 15th Century' +p164526 +sa(dp164527 +g25273 +S'bronze//Molded frame' +p164528 +sg25267 +g27 +sg25275 +S'late 15th century' +p164529 +sg25268 +S'Dante before the Mountain of Purgatory [reverse]' +p164530 +sg25270 +S'Florentine 15th Century' +p164531 +sa(dp164532 +g25273 +S'bronze//Late cast' +p164533 +sg25267 +g27 +sg25275 +S'c. 1500' +p164534 +sg25268 +S'Giovanni Boccaccio, 1313-1375, Florentine Writer [obverse]' +p164535 +sg25270 +S'Florentine 15th Century' +p164536 +sa(dp164537 +g25273 +S'etching' +p164538 +sg25267 +g27 +sg25275 +S'1929' +p164539 +sg25268 +S'Una' +p164540 +sg25270 +S'Gerald Leslie Brockhurst' +p164541 +sa(dp164542 +g25273 +S'bronze//Late cast' +p164543 +sg25267 +g27 +sg25275 +S'c. 1500' +p164544 +sg25268 +S'Wisdom Gazing at a Serpent [reverse]' +p164545 +sg25270 +S'Florentine 15th Century' +p164546 +sa(dp164547 +g25273 +S'bronze//Late cast' +p164548 +sg25267 +g27 +sg25275 +S'c. 1500' +p164549 +sg25268 +S'Francesco Petrarca of Arezzo, 1304-1374, Poet [obverse]' +p164550 +sg25270 +S'Florentine 15th Century' +p164551 +sa(dp164552 +g25273 +S'bronze//Late cast' +p164553 +sg25267 +g27 +sg25275 +S'c. 1500' +p164554 +sg25268 +S'Poetry Walking in a Wood [reverse]' +p164555 +sg25270 +S'Florentine 15th Century' +p164556 +sa(dp164557 +g25273 +S'lead' +p164558 +sg25267 +g27 +sg25275 +S'late 15th century' +p164559 +sg25268 +S'Gianfrancesco Pallavicino' +p164560 +sg25270 +S'Florentine 15th Century' +p164561 +sa(dp164562 +g25273 +S'overall (including triangular pediment): 13.3 x 8.1 cm (5 1/4 x 3 3/16 in.)' +p164563 +sg25267 +g27 +sg25275 +S'\nlead' +p164564 +sg25268 +S'Laura de Noves, 1307/1308-1348, Friend of Petrarch' +p164565 +sg25270 +S'Italian 16th Century' +p164566 +sa(dp164567 +g25273 +S'overall (diameter): 3.21 cm (1 1/4 in.)\r\ngross weight: 23.05 gr (0.051 lb.)\r\naxis: 12:00' +p164568 +sg25267 +g27 +sg25275 +S'\nbronze' +p164569 +sg25268 +S'Portrait of a Boy, Perhaps a Member of the Carrara Family [obverse]' +p164570 +sg25270 +S'Italian 16th Century' +p164571 +sa(dp164572 +g25273 +S'overall (diameter): 3.21 cm (1 1/4 in.)\r\ngross weight: 23.05 gr (0.051 lb.)\r\naxis: 12:00' +p164573 +sg25267 +g27 +sg25275 +S'\nbronze' +p164574 +sg25268 +S'The Heraldic Carro [reverse]' +p164575 +sg25270 +S'Italian 16th Century' +p164576 +sa(dp164577 +g25273 +S'overall (diameter): 3.69 cm (1 7/16 in.)\r\ngross weight: 21.94 gr (0.048 lb.)\r\naxis: 5:00' +p164578 +sg25267 +g27 +sg25275 +S'\nbronze' +p164579 +sg25268 +S'Baldassare Castiglione, 1478-1529, Author of "The Courtier" [obverse]' +p164580 +sg25270 +S'Italian 16th Century' +p164581 +sa(dp164582 +g25273 +S'overall (diameter): 3.69 cm (1 7/16 in.)\r\ngross weight: 21.94 gr (0.048 lb.)\r\naxis: 5:00' +p164583 +sg25267 +g27 +sg25275 +S'\nbronze' +p164584 +sg25268 +S'Aurora Stepping from a Car [reverse]' +p164585 +sg25270 +S'Italian 16th Century' +p164586 +sa(dp164587 +g25273 +S'overall (diameter): 7.1 cm (2 13/16 in.)\r\ngross weight: 84.86 gr (0.187 lb.)\r\naxis: 1:00' +p164588 +sg25267 +g27 +sg25275 +S'\nbronze' +p164589 +sg25268 +S'Louis XII, 1462-1515, King of France 1498 [obverse]' +p164590 +sg25270 +S'Italian 16th Century' +p164591 +sa(dp164592 +g25273 +S'watercolor' +p164593 +sg25267 +g27 +sg25275 +S'1928' +p164594 +sg25268 +S"On the Fo'castle" +p164595 +sg25270 +S'Arthur Briscoe' +p164596 +sa(dp164597 +g25273 +S'overall (diameter): 7.1 cm (2 13/16 in.)\r\ngross weight: 84.86 gr (0.187 lb.)\r\naxis: 1:00' +p164598 +sg25267 +g27 +sg25275 +S'\nbronze' +p164599 +sg25268 +S'Mars Pursuing other Figures [reverse]' +p164600 +sg25270 +S'Italian 16th Century' +p164601 +sa(dp164602 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(medalist)' +p164603 +sg25268 +S'Louis XII, 1462-1515, King of France 1498 [obverse]' +p164604 +sg25270 +S'Artist Information (' +p164605 +sa(dp164606 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(medalist)' +p164607 +sg25268 +S'Inscription [reverse]' +p164608 +sg25270 +S'Artist Information (' +p164609 +sa(dp164610 +g25273 +S'overall (diameter): 5.17 cm (2 1/16 in.)\r\ngross weight: 64.4 gr (0.142 lb.)\r\naxis: 10:00' +p164611 +sg25267 +g27 +sg25275 +S'\nbronze' +p164612 +sg25268 +S'Fran\xc3\xa7ois I, 1494-1547, King of France 1515 [obverse]' +p164613 +sg25270 +S'Italian 16th Century' +p164614 +sa(dp164615 +g25273 +S'overall (diameter): 5.17 cm (2 1/16 in.)\r\ngross weight: 64.4 gr (0.142 lb.)\r\naxis: 10:00' +p164616 +sg25267 +g27 +sg25275 +S'\nbronze' +p164617 +sg25268 +S'Trophy of Arms [reverse]' +p164618 +sg25270 +S'Italian 16th Century' +p164619 +sa(dp164620 +g25273 +S'overall (diameter): 4.59 cm (1 13/16 in.)\r\ngross weight: 50.67 gr (0.112 lb.)\r\naxis: 11:00' +p164621 +sg25267 +g27 +sg25275 +S'\nbronze' +p164622 +sg25268 +S'Bernardino Francesconi of Siena [obverse]' +p164623 +sg25270 +S'Italian 16th Century' +p164624 +sa(dp164625 +g25273 +S'overall (diameter): 4.59 cm (1 13/16 in.)\r\ngross weight: 50.67 gr (0.112 lb.)\r\naxis: 11:00' +p164626 +sg25267 +g27 +sg25275 +S'\nbronze' +p164627 +sg25268 +S'Arms of Francesconi [reverse]' +p164628 +sg25270 +S'Italian 16th Century' +p164629 +sa(dp164630 +g25268 +S'Mattia Ugoni, Bishop of Famagusta 1504 [obverse]' +p164631 +sg25270 +S'Italian 16th Century' +p164632 +sg25273 +S'overall (diameter): 5.84 cm (2 5/16 in.)\r\ngross weight: 109.23 gr (0.241 lb.)\r\naxis: 12:00' +p164633 +sg25275 +S'\nbronze' +p164634 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000640e.jpg' +p164635 +sg25267 +g27 +sa(dp164636 +g25268 +S'Ludovico Ugoni [reverse]' +p164637 +sg25270 +S'Italian 16th Century' +p164638 +sg25273 +S'overall (diameter): 5.84 cm (2 5/16 in.)\r\ngross weight: 109.23 gr (0.241 lb.)\r\naxis: 12:00' +p164639 +sg25275 +S'\nbronze' +p164640 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000640f.jpg' +p164641 +sg25267 +g27 +sa(dp164642 +g25273 +S'overall (diameter): 4.46 cm (1 3/4 in.)\r\ngross weight: 43.02 gr (0.095 lb.)' +p164643 +sg25267 +g27 +sg25275 +S'\nbronze' +p164644 +sg25268 +S'Portrait of a Man' +p164645 +sg25270 +S'Italian 16th Century' +p164646 +sa(dp164647 +g25273 +S'watercolor and pen and ink, pinpricked around perimeter' +p164648 +sg25267 +g27 +sg25275 +S'unknown date\n' +p164649 +sg25268 +S'In the N.E. Trades' +p164650 +sg25270 +S'Arthur Briscoe' +p164651 +sa(dp164652 +g25273 +S'overall (diameter): 2.84 cm (1 1/8 in.)\r\ngross weight: 9.61 gr (0.021 lb.)' +p164653 +sg25267 +g27 +sg25275 +S'\n\r\n\r\n\r\nbronze' +p164654 +sg25268 +S'Castruccio Castracane degli Antelminelli of Lucca, 1281-1328' +p164655 +sg25270 +S'Italian 16th Century' +p164656 +sa(dp164657 +g25273 +S'bronze' +p164658 +sg25267 +g27 +sg25275 +S'c. 1570' +p164659 +sg25268 +S"Giovanni de' Medici delle Bande Nere, 1498-1526, Celebrated Condottiere and Father of Cosimo I [obverse]" +p164660 +sg25270 +S'Francesco da Sangallo' +p164661 +sa(dp164662 +g25273 +S'bronze' +p164663 +sg25267 +g27 +sg25275 +S'c. 1570' +p164664 +sg25268 +S'Winged Thunderbolt [reverse]' +p164665 +sg25270 +S'Francesco da Sangallo' +p164666 +sa(dp164667 +g25273 +S', probably 1537' +p164668 +sg25267 +g27 +sg25275 +S'\n' +p164669 +sg25268 +S"Cosimo I de' Medici, 1519-1574, 2nd Duke of Florence 1537, later Grand Duke of Tuscany 1569 [obverse]" +p164670 +sg25270 +S"Domenico di Polo de' Vetri" +p164671 +sa(dp164672 +g25273 +S', probably 1537' +p164673 +sg25267 +g27 +sg25275 +S'\n' +p164674 +sg25268 +S'Capricorn and Stars [reverse]' +p164675 +sg25270 +S"Domenico di Polo de' Vetri" +p164676 +sa(dp164677 +g25268 +S"Alessandro de' Medici, 1510-1537, 1st Duke of Florence 1532 [obverse]" +p164678 +sg25270 +S"Domenico di Polo de' Vetri" +p164679 +sg25273 +S', unknown date' +p164680 +sg25275 +S'\n' +p164681 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006449.jpg' +p164682 +sg25267 +g27 +sa(dp164683 +g25268 +S"Cosimo I de' Medici, 1519-1574, 2nd Duke of Florence 1537, later Grand Duke of Tuscany 1569 [reverse]" +p164684 +sg25270 +S"Domenico di Polo de' Vetri" +p164685 +sg25273 +S', unknown date' +p164686 +sg25275 +S'\n' +p164687 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006448.jpg' +p164688 +sg25267 +g27 +sa(dp164689 +g25273 +S'bronze' +p164690 +sg25267 +g27 +sg25275 +S'1534' +p164691 +sg25268 +S"Alessandro de' Medici, 1510-1537, 1st Duke of Florence 1532 [obverse]" +p164692 +sg25270 +S'Francesco dal Prato' +p164693 +sa(dp164694 +g25273 +S'bronze' +p164695 +sg25267 +g27 +sg25275 +S'1534' +p164696 +sg25268 +S'Peace Setting Fire to a Pile of Arms [reverse]' +p164697 +sg25270 +S'Francesco dal Prato' +p164698 +sa(dp164699 +g25273 +S'lead//Four times pierced' +p164700 +sg25267 +g27 +sg25275 +S'unknown date\n' +p164701 +sg25268 +S"Alfonso II d'Avalos, 1502-1546, Marquess of Vasto" +p164702 +sg25270 +S'Cesare da Bagno' +p164703 +sa(dp164704 +g25273 +S'watercolor and charcoal' +p164705 +sg25267 +g27 +sg25275 +S'1915' +p164706 +sg25268 +S'Gravesend' +p164707 +sg25270 +S'Arthur Briscoe' +p164708 +sa(dp164709 +g25273 +S'bronze' +p164710 +sg25267 +g27 +sg25275 +S'probably 1540/1586' +p164711 +sg25268 +S'Beatrice of Siena [obverse]' +p164712 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164713 +sa(dp164714 +g25273 +S'bronze' +p164715 +sg25267 +g27 +sg25275 +S'probably 1540/1586' +p164716 +sg25268 +S'Wheat-sheaf [reverse]' +p164717 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164718 +sa(dp164719 +g25273 +S'bronze//Late cast; finely chased' +p164720 +sg25267 +g27 +sg25275 +S'probably 1554/1559' +p164721 +sg25268 +S'Costanza Buti' +p164722 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164723 +sa(dp164724 +g25273 +S'bronze' +p164725 +sg25267 +g27 +sg25275 +S'1561' +p164726 +sg25268 +S'Camillo Castiglione, 1517-1598, Son of Baldassarre' +p164727 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164728 +sa(dp164729 +g25273 +S'bronze//Later cast' +p164730 +sg25267 +g27 +sg25275 +S'probably 1540/1554' +p164731 +sg25268 +S'Cornelia Siciliana [obverse]' +p164732 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164733 +sa(dp164734 +g25273 +S'bronze//Later cast' +p164735 +sg25267 +g27 +sg25275 +S'probably 1540/1554' +p164736 +sg25268 +S'Truth Unveiling Herself [reverse]' +p164737 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164738 +sa(dp164739 +g25273 +S'bronze' +p164740 +sg25267 +g27 +sg25275 +S'1534' +p164741 +sg25268 +S"Ercole II d'Este, 1508-1559, 4th Duke of Ferrara 1534" +p164742 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164743 +sa(dp164744 +g25273 +S'bronze' +p164745 +sg25267 +g27 +sg25275 +S'1554' +p164746 +sg25268 +S"Francesco d'Este, 1516-1578, Son of Alfonso I, Marquess of Massa" +p164747 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164748 +sa(dp164749 +g25273 +S'gilt bronze' +p164750 +sg25267 +g27 +sg25275 +S'1558' +p164751 +sg25268 +S"Lucrezia de' Medici, 1545-1561, Daughter of Cosimo I, First Wife of Alfonso II d'Este 1558" +p164752 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164753 +sa(dp164754 +g25268 +S'Eleonora of Austria, 1534-1594, Duchess of Mantua, Wife of Guglielmo I Gonzaga 1561' +p164755 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164756 +sg25273 +S'bronze' +p164757 +sg25275 +S'1561' +p164758 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000644a.jpg' +p164759 +sg25267 +g27 +sa(dp164760 +g25273 +S'pen and brown ink and watercolor' +p164761 +sg25267 +g27 +sg25275 +S'1926' +p164762 +sg25268 +S'Man Overboard' +p164763 +sg25270 +S'Arthur Briscoe' +p164764 +sa(dp164765 +g25273 +S'bronze' +p164766 +sg25267 +g27 +sg25275 +S'1550' +p164767 +sg25268 +S'Isabella Trotti Negrisoli' +p164768 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164769 +sa(dp164770 +g25268 +S"Isabella Manfro de' Pepoli" +p164771 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164772 +sg25273 +S'bronze//Cast hollow' +p164773 +sg25275 +S'1571' +p164774 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006410.jpg' +p164775 +sg25267 +g27 +sa(dp164776 +g25268 +S'Lodovica Felicina Rossi' +p164777 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164778 +sg25273 +S'bronze//Cast hollow' +p164779 +sg25275 +S'1557' +p164780 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006411.jpg' +p164781 +sg25267 +g27 +sa(dp164782 +g25268 +S'Girolama Sacrata of Ferrara' +p164783 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164784 +sg25273 +S'bronze//Cast hollow' +p164785 +sg25275 +S'1555' +p164786 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006412.jpg' +p164787 +sg25267 +g27 +sa(dp164788 +g25273 +S'bronze' +p164789 +sg25267 +g27 +sg25275 +S'1560' +p164790 +sg25268 +S'Girolama Sacrata of Ferrara' +p164791 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164792 +sa(dp164793 +g25268 +S'Girolama Farnese, Daughter of Galeazzo Farnese, Wife of Alfonso San Vitale, Widowed 1560' +p164794 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164795 +sg25273 +S'bronze//Cast hollow' +p164796 +sg25275 +S'1556' +p164797 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006413.jpg' +p164798 +sg25267 +g27 +sa(dp164799 +g25273 +S'bronze//Late cast' +p164800 +sg25267 +g27 +sg25275 +S'1556/1586' +p164801 +sg25268 +S'Ginevra Trotti' +p164802 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164803 +sa(dp164804 +g25273 +S'bronze//Cast solid; Not an early cast' +p164805 +sg25267 +g27 +sg25275 +S'1555' +p164806 +sg25268 +S'Nicolosa, Daughter of Francesco Bacci of Arezzo, Wife of Giorgio Vasari the Painter 1548' +p164807 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164808 +sa(dp164809 +g25273 +S'bronze' +p164810 +sg25267 +g27 +sg25275 +S'1564' +p164811 +sg25268 +S'Francesco Visdomini of Ferrara, 1509-1573, Humanist and Hebraist [obverse]' +p164812 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164813 +sa(dp164814 +g25273 +S'bronze' +p164815 +sg25267 +g27 +sg25275 +S'1564' +p164816 +sg25268 +S'Hand Issuing from a Cloud, Holding a Flaming Sword [reverse]' +p164817 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164818 +sa(dp164819 +g25273 +S'watercolor' +p164820 +sg25267 +g27 +sg25275 +S'unknown date\n' +p164821 +sg25268 +S'Making the Channel' +p164822 +sg25270 +S'Arthur Briscoe' +p164823 +sa(dp164824 +g25273 +S'gilt bronze//Cast hollow; Cut out' +p164825 +sg25267 +g27 +sg25275 +S'1557' +p164826 +sg25268 +S'Portrait of a Man' +p164827 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164828 +sa(dp164829 +g25273 +S'gilt bronze' +p164830 +sg25267 +g27 +sg25275 +S'unknown date\n' +p164831 +sg25268 +S'Portrait of a Lady' +p164832 +sg25270 +S"Pastorino de' Pastorini, called Pastorino da Siena" +p164833 +sa(dp164834 +g25273 +S'silver//Electrotype' +p164835 +sg25267 +g27 +sg25275 +S'1557' +p164836 +sg25268 +S'Philip II, 1527-1598, King of Spain 1556 [obverse]' +p164837 +sg25270 +S'Gianpaolo Poggini' +p164838 +sa(dp164839 +g25273 +S'silver//Electrotype' +p164840 +sg25267 +g27 +sg25275 +S'1557' +p164841 +sg25268 +S'Hercules Bearing the Globe [reverse]' +p164842 +sg25270 +S'Gianpaolo Poggini' +p164843 +sa(dp164844 +g25273 +S'bronze//Cast hollow' +p164845 +sg25267 +g27 +sg25275 +S'1552/1590' +p164846 +sg25268 +S'Lodovico Ariosto, 1474-1533, Poet' +p164847 +sg25270 +S'Domenico Poggini' +p164848 +sa(dp164849 +g25268 +S"Alfonso II d'Este, 1533-1597, 5th Duke of Ferrara 1559 [obverse]" +p164850 +sg25270 +S'Domenico Poggini' +p164851 +sg25273 +S'bronze//Late cast' +p164852 +sg25275 +S'1552/1590' +p164853 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dce.jpg' +p164854 +sg25267 +g27 +sa(dp164855 +g25268 +S"Lucrezia de' Medici, 1545-1561, Daughter of Cosimo I, First Wife of Alfonso II d'Este 1558 [reverse]" +p164856 +sg25270 +S'Domenico Poggini' +p164857 +sg25273 +S'bronze//Late cast' +p164858 +sg25275 +S'1552/1590' +p164859 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dcf.jpg' +p164860 +sg25267 +g27 +sa(dp164861 +g25273 +S'bronze//Struck' +p164862 +sg25267 +g27 +sg25275 +S'1561' +p164863 +sg25268 +S"Cosimo I de' Medici, 1519-1574, 2nd Duke of Florence 1537, later Grand Duke of Tuscany [obverse]" +p164864 +sg25270 +S'Domenico Poggini' +p164865 +sa(dp164866 +g25273 +S'bronze//Struck' +p164867 +sg25267 +g27 +sg25275 +S'1561' +p164868 +sg25268 +S'The Uffizi and the Palazzo Vecchio [reverse]' +p164869 +sg25270 +S'Domenico Poggini' +p164870 +sa(dp164871 +g25273 +S'bronze' +p164872 +sg25267 +g27 +sg25275 +S'c. 1540' +p164873 +sg25268 +S"Eleonora de Toledo, died 1532, First Wife of Cosimo I de' Medici 1539 [obverse]" +p164874 +sg25270 +S'Domenico Poggini' +p164875 +sa(dp164876 +g25273 +S'etching' +p164877 +sg25267 +g27 +sg25275 +S'1928' +p164878 +sg25268 +S'In the Tropics' +p164879 +sg25270 +S'Arthur Briscoe' +p164880 +sa(dp164881 +g25273 +S'bronze' +p164882 +sg25267 +g27 +sg25275 +S'c. 1540' +p164883 +sg25268 +S'Pea-hen with Six Young [reverse]' +p164884 +sg25270 +S'Domenico Poggini' +p164885 +sa(dp164886 +g25273 +S'bronze' +p164887 +sg25267 +g27 +sg25275 +S'1570' +p164888 +sg25268 +S'Giulio Nobili, 1537-1612, Florentine Senator [obverse]' +p164889 +sg25270 +S'Domenico Poggini' +p164890 +sa(dp164891 +g25273 +S'bronze' +p164892 +sg25267 +g27 +sg25275 +S'1570' +p164893 +sg25268 +S'Figure Holding Scales and Swan [reverse]' +p164894 +sg25270 +S'Domenico Poggini' +p164895 +sa(dp164896 +g25273 +S'bronze' +p164897 +sg25267 +g27 +sg25275 +S'1590' +p164898 +sg25268 +S'Camilla Peretti, died 1591, Sister of Pope Sixtus V [obverse]' +p164899 +sg25270 +S'Domenico Poggini' +p164900 +sa(dp164901 +g25273 +S'bronze' +p164902 +sg25267 +g27 +sg25275 +S'1590' +p164903 +sg25268 +S'Santa Lucia at Grottamare [reverse]' +p164904 +sg25270 +S'Domenico Poggini' +p164905 +sa(dp164906 +g25273 +S'bronze' +p164907 +sg25267 +g27 +sg25275 +S'1585/1590' +p164908 +sg25268 +S"Niccolo Todini of Ancona, Captain of Castel Sant'Angelo, 1585-1591 [obverse]" +p164909 +sg25270 +S'Domenico Poggini' +p164910 +sa(dp164911 +g25273 +S'bronze' +p164912 +sg25267 +g27 +sg25275 +S'1585/1590' +p164913 +sg25268 +S"Castel Sant'Angelo [reverse]" +p164914 +sg25270 +S'Domenico Poggini' +p164915 +sa(dp164916 +g25273 +S'bronze//Late cast' +p164917 +sg25267 +g27 +sg25275 +S'c. 1561' +p164918 +sg25268 +S'Benedetto Varchi, 1502-1565, Florentine Historian and Man of Letters [obverse]' +p164919 +sg25270 +S'Domenico Poggini' +p164920 +sa(dp164921 +g25273 +S'bronze//Late cast' +p164922 +sg25267 +g27 +sg25275 +S'c. 1561' +p164923 +sg25268 +S'Man Lying at the Foot of a Laurel Tree [reverse]' +p164924 +sg25270 +S'Domenico Poggini' +p164925 +sa(dp164926 +g25273 +S'bronze//Late cast' +p164927 +sg25267 +g27 +sg25275 +S'1556' +p164928 +sg25268 +S'Camilla Albizzi [obverse]' +p164929 +sg25270 +S'Medalist R.C.' +p164930 +sa(dp164931 +g25273 +S'etching' +p164932 +sg25267 +g27 +sg25275 +S'1931' +p164933 +sg25268 +S'Flooded Decks' +p164934 +sg25270 +S'Arthur Briscoe' +p164935 +sa(dp164936 +g25273 +S'bronze//Late cast' +p164937 +sg25267 +g27 +sg25275 +S'1556' +p164938 +sg25268 +S'Apollo Pursuing Daphne [reverse]' +p164939 +sg25270 +S'Medalist R.C.' +p164940 +sa(dp164941 +g25273 +S'bronze' +p164942 +sg25267 +g27 +sg25275 +S'c. 1570' +p164943 +sg25268 +S'Antonio Calmone, Secretary to Philip II [obverse]' +p164944 +sg25270 +S'Pier Paolo Galeotti' +p164945 +sa(dp164946 +g25273 +S'bronze' +p164947 +sg25267 +g27 +sg25275 +S'c. 1570' +p164948 +sg25268 +S'Flowering Shrub Growing through Thorns [reverse]' +p164949 +sg25270 +S'Pier Paolo Galeotti' +p164950 +sa(dp164951 +g25273 +S'bronze' +p164952 +sg25267 +g27 +sg25275 +S'c. 1552/1584' +p164953 +sg25268 +S'Bianca Pansana Carcania [obverse]' +p164954 +sg25270 +S'Pier Paolo Galeotti' +p164955 +sa(dp164956 +g25273 +S'bronze' +p164957 +sg25267 +g27 +sg25275 +S'c. 1552/1584' +p164958 +sg25268 +S'Island with High Wall and Rock [reverse]' +p164959 +sg25270 +S'Pier Paolo Galeotti' +p164960 +sa(dp164961 +g25273 +S'bronze' +p164962 +sg25267 +g27 +sg25275 +S'1562' +p164963 +sg25268 +S'Girolamo Figino, 16th Century Milanese Painter [obverse]' +p164964 +sg25270 +S'Pier Paolo Galeotti' +p164965 +sa(dp164966 +g25273 +S'bronze' +p164967 +sg25267 +g27 +sg25275 +S'1562' +p164968 +sg25268 +S'Minerva Armed [reverse]' +p164969 +sg25270 +S'Pier Paolo Galeotti' +p164970 +sa(dp164971 +g25273 +S'bronze' +p164972 +sg25267 +g27 +sg25275 +S'1552 or after' +p164973 +sg25268 +S'Franco Lercari [obverse]' +p164974 +sg25270 +S'Pier Paolo Galeotti' +p164975 +sa(dp164976 +g25273 +S'bronze' +p164977 +sg25267 +g27 +sg25275 +S'1552 or after' +p164978 +sg25268 +S'Figure Carrying a Cornucopiae [reverse]' +p164979 +sg25270 +S'Pier Paolo Galeotti' +p164980 +sa(dp164981 +g25273 +S'bronze' +p164982 +sg25267 +g27 +sg25275 +S'probably 1551' +p164983 +sg25268 +S'Cristoforo Madruzzo, 1512-1587, Cardinal, Prince Bishop of Trent 1539, of Brixen 1542 [obverse]' +p164984 +sg25270 +S'Pier Paolo Galeotti' +p164985 +sa(dp164986 +g25273 +S'etching' +p164987 +sg25267 +g27 +sg25275 +S'1931' +p164988 +sg25268 +S'Heavy Canvas' +p164989 +sg25270 +S'Arthur Briscoe' +p164990 +sa(dp164991 +g25273 +S'bronze' +p164992 +sg25267 +g27 +sg25275 +S'probably 1551' +p164993 +sg25268 +S'Figure beside a River [reverse]' +p164994 +sg25270 +S'Pier Paolo Galeotti' +p164995 +sa(dp164996 +g25273 +S'bronze' +p164997 +sg25267 +g27 +sg25275 +S'1552 or after' +p164998 +sg25268 +S'Cristoforo Madruzzo, 1512-1587, Cardinal, Prince Bishop of Trent 1539, of Brixen 1542 [obverse]' +p164999 +sg25270 +S'Pier Paolo Galeotti' +p165000 +sa(dp165001 +g25273 +S'bronze' +p165002 +sg25267 +g27 +sg25275 +S'1552 or after' +p165003 +sg25268 +S'Neptune on a Dolphin before a Harbor [reverse]' +p165004 +sg25270 +S'Pier Paolo Galeotti' +p165005 +sa(dp165006 +g25273 +S'bronze' +p165007 +sg25267 +g27 +sg25275 +S'1552 or after' +p165008 +sg25268 +S'Tommaso Marini of Genoa, Duke of Teranuova [obverse]' +p165009 +sg25270 +S'Pier Paolo Galeotti' +p165010 +sa(dp165011 +g25273 +S'bronze' +p165012 +sg25267 +g27 +sg25275 +S'1552 or after' +p165013 +sg25268 +S'Sun Shining on Sea [reverse]' +p165014 +sg25270 +S'Pier Paolo Galeotti' +p165015 +sa(dp165016 +g25273 +S'bronze' +p165017 +sg25267 +g27 +sg25275 +S'1552 or after' +p165018 +sg25268 +S"Jacopo de' Medici, 1497-1555, Marquess of Marignan, and General of Charles V" +p165019 +sg25270 +S'Pier Paolo Galeotti' +p165020 +sa(dp165021 +g25273 +S'bronze' +p165022 +sg25267 +g27 +sg25275 +S'1552 or after' +p165023 +sg25268 +S'Cassandra Marinoni, died 1575, Wife of Deifobo II Melilupi [obverse]' +p165024 +sg25270 +S'Pier Paolo Galeotti' +p165025 +sa(dp165026 +g25273 +S'bronze' +p165027 +sg25267 +g27 +sg25275 +S'1552 or after' +p165028 +sg25268 +S'Circular Temple with a City in the Background [reverse]' +p165029 +sg25270 +S'Pier Paolo Galeotti' +p165030 +sa(dp165031 +g25273 +S'bronze' +p165032 +sg25267 +g27 +sg25275 +S'1552 or after' +p165033 +sg25268 +S'Giampaolo Melilupi, Son of Deifobo II and Cassandra [obverse]' +p165034 +sg25270 +S'Pier Paolo Galeotti' +p165035 +sa(dp165036 +g25273 +S'bronze' +p165037 +sg25267 +g27 +sg25275 +S'1552 or after' +p165038 +sg25268 +S'Child Addressing Deifobo II [reverse]' +p165039 +sg25270 +S'Pier Paolo Galeotti' +p165040 +sa(dp165041 +g25273 +S'etching' +p165042 +sg25267 +g27 +sg25275 +S'1925' +p165043 +sg25268 +S'On the Main Yard' +p165044 +sg25270 +S'Arthur Briscoe' +p165045 +sa(dp165046 +g25273 +S'bronze//Late cast, tooled' +p165047 +sg25267 +g27 +sg25275 +S'1552 or after' +p165048 +sg25268 +S'Elisabetta Scotti, Wife of Giovanni Alvise Gonfalanieri [obverse]' +p165049 +sg25270 +S'Pier Paolo Galeotti' +p165050 +sa(dp165051 +g25273 +S'bronze//Late cast, tooled' +p165052 +sg25267 +g27 +sg25275 +S'1552 or after' +p165053 +sg25268 +S'Inscription [reverse]' +p165054 +sg25270 +S'Pier Paolo Galeotti' +p165055 +sa(dp165056 +g25268 +S'Chiara Taverna, Wife of Francesco Taverna [obverse]' +p165057 +sg25270 +S'Pier Paolo Galeotti' +p165058 +sg25273 +S'bronze' +p165059 +sg25275 +S'c. 1554' +p165060 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000644c.jpg' +p165061 +sg25267 +g27 +sa(dp165062 +g25268 +S'Cybele in a Car Drawn by Lions [reverse]' +p165063 +sg25270 +S'Pier Paolo Galeotti' +p165064 +sg25273 +S'bronze' +p165065 +sg25275 +S'c. 1554' +p165066 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000644b.jpg' +p165067 +sg25267 +g27 +sa(dp165068 +g25273 +S'bronze' +p165069 +sg25267 +g27 +sg25275 +S'c. 1554' +p165070 +sg25268 +S'Francesco Taverna, 1488-1560, Count of Landriano, Milanese Jurisconsult [obverse]' +p165071 +sg25270 +S'Pier Paolo Galeotti' +p165072 +sa(dp165073 +g25273 +S'bronze' +p165074 +sg25267 +g27 +sg25275 +S'c. 1554' +p165075 +sg25268 +S'Hound Looking at a Constellation of the Goat [reverse]' +p165076 +sg25270 +S'Pier Paolo Galeotti' +p165077 +sa(dp165078 +g25273 +S'bronze' +p165079 +sg25267 +g27 +sg25275 +S'probably 1573' +p165080 +sg25268 +S'Pietro Vettori the Younger, 1499-1585, Florentine Scholar [obverse]' +p165081 +sg25270 +S'Gaspare Romanelli' +p165082 +sa(dp165083 +g25273 +S'bronze' +p165084 +sg25267 +g27 +sg25275 +S'probably 1573' +p165085 +sg25268 +S'Olive Branch [reverse]' +p165086 +sg25270 +S'Gaspare Romanelli' +p165087 +sa(dp165088 +g25273 +S'bronze//Struck' +p165089 +sg25267 +g27 +sg25275 +S'1574' +p165090 +sg25268 +S'Pietro Vettori the Younger, 1499-1585, Florentine Scholar [obverse]' +p165091 +sg25270 +S'Gaspare Romanelli' +p165092 +sa(dp165093 +g25273 +S'bronze//Struck' +p165094 +sg25267 +g27 +sg25275 +S'1574' +p165095 +sg25268 +S'Minerva Holding an Olive Branch and a Spear [reverse]' +p165096 +sg25270 +S'Gaspare Romanelli' +p165097 +sa(dp165098 +g25273 +S'etching' +p165099 +sg25267 +g27 +sg25275 +S'1930' +p165100 +sg25268 +S'The Binnacle' +p165101 +sg25270 +S'Arthur Briscoe' +p165102 +sa(dp165103 +g25268 +S'Vincenzo Gonzaga, 1562-1612, 4th Duke of Mantua 1587 [obverse]' +p165104 +sg25270 +S'Gaspare Mola' +p165105 +sg25273 +S'bronze' +p165106 +sg25275 +S'unknown date\n' +p165107 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066cf.jpg' +p165108 +sg25267 +g27 +sa(dp165109 +g25268 +S'Saint George and the Dragon [reverse]' +p165110 +sg25270 +S'Gaspare Mola' +p165111 +sg25273 +S'bronze' +p165112 +sg25275 +S'unknown date\n' +p165113 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066d0.jpg' +p165114 +sg25267 +g27 +sa(dp165115 +g25273 +S'bronze' +p165116 +sg25267 +g27 +sg25275 +S'1530' +p165117 +sg25268 +S'Coronation Medal of Charles V, 1500-1558, King of Spain 1516, Holy Roman Emperor 1519-1556' +p165118 +sg25270 +S'Giovanni Bernardi' +p165119 +sa(dp165120 +g25273 +S'bronze//Restrike, from cracked dies' +p165121 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165122 +sg25268 +S"Clement VII (Giulio de' Medici, 1478-1534), Pope 1523 [obverse]" +p165123 +sg25270 +S'Giovanni Bernardi' +p165124 +sa(dp165125 +g25273 +S'bronze//Restrike from cracked dies' +p165126 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165127 +sg25268 +S'Joseph Revealing Himself to His Brethren [reverse]' +p165128 +sg25270 +S'Giovanni Bernardi' +p165129 +sa(dp165130 +g25273 +S'bronze//Struck' +p165131 +sg25267 +g27 +sg25275 +S'c. 1545/1550' +p165132 +sg25268 +S'Paul III (Alessandro Farnese, 1468-1549), Pope 1534 [obverse]' +p165133 +sg25270 +S'Alessandro Cesati, called Il Grechetto' +p165134 +sa(dp165135 +g25273 +S'bronze//Struck' +p165136 +sg25267 +g27 +sg25275 +S'c. 1545/1550' +p165137 +sg25268 +S'Ganymede Watering the Farnese Lilies [reverse]' +p165138 +sg25270 +S'Alessandro Cesati, called Il Grechetto' +p165139 +sa(dp165140 +g25273 +S'bronze//Struck; originally gilded' +p165141 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165142 +sg25268 +S'Emanuele Filiberto, 1528-1580, 10th Duke of Savoy 1553 [obverse]' +p165143 +sg25270 +S'Alessandro Cesati, called Il Grechetto' +p165144 +sa(dp165145 +g25273 +S'bronze//Struck; originally gilded' +p165146 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165147 +sg25268 +S'Marguerite de France, died 1574, Wife of Emanuele Filiberto 1559 [reverse]' +p165148 +sg25270 +S'Alessandro Cesati, called Il Grechetto' +p165149 +sa(dp165150 +g25273 +S'bronze' +p165151 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165152 +sg25268 +S'Dido, Queen of Carthage [obverse]' +p165153 +sg25270 +S'Alessandro Cesati, called Il Grechetto' +p165154 +sa(dp165155 +g25273 +S'etching' +p165156 +sg25267 +g27 +sg25275 +S'1929' +p165157 +sg25268 +S'Hove To' +p165158 +sg25270 +S'Arthur Briscoe' +p165159 +sa(dp165160 +g25273 +S'bronze' +p165161 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165162 +sg25268 +S'Carthage with Galleys in Harbor [reverse]' +p165163 +sg25270 +S'Alessandro Cesati, called Il Grechetto' +p165164 +sa(dp165165 +g25273 +S'bronze' +p165166 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165167 +sg25268 +S'Priam, King of Troy [obverse]' +p165168 +sg25270 +S'Alessandro Cesati, called Il Grechetto' +p165169 +sa(dp165170 +g25273 +S'bronze' +p165171 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165172 +sg25268 +S'Troy with Galleys in Harbor [reverse]' +p165173 +sg25270 +S'Alessandro Cesati, called Il Grechetto' +p165174 +sa(dp165175 +g25273 +S'bronze' +p165176 +sg25267 +g27 +sg25275 +S'c. 1555' +p165177 +sg25268 +S'Marcellus II (Marcello Corvino, 1501-1555), Pope 1555 [obverse]' +p165178 +sg25270 +S"Giovanni Antonio de' Rossi" +p165179 +sa(dp165180 +g25273 +S'bronze' +p165181 +sg25267 +g27 +sg25275 +S'c. 1555' +p165182 +sg25268 +S'The Church Reading the Gospels [reverse]' +p165183 +sg25270 +S"Giovanni Antonio de' Rossi" +p165184 +sa(dp165185 +g25273 +S'gilt bronze' +p165186 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165187 +sg25268 +S'Vincenzo Bovio of Bologna [obverse]' +p165188 +sg25270 +S"Giovanni Antonio de' Rossi" +p165189 +sa(dp165190 +g25273 +S'gilt bronze' +p165191 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165192 +sg25268 +S'Religion and an Ox [reverse]' +p165193 +sg25270 +S"Giovanni Antonio de' Rossi" +p165194 +sa(dp165195 +g25273 +S'bronze' +p165196 +sg25267 +g27 +sg25275 +S'1561' +p165197 +sg25268 +S"Pius IV (Giovanni Angelo de' Medici, 1499-1565), Pope 1559 [obverse]" +p165198 +sg25270 +S'Giovan Federico Bonzagni' +p165199 +sa(dp165200 +g25273 +S'bronze//Struck' +p165201 +sg25267 +g27 +sg25275 +S'1561' +p165202 +sg25268 +S'The Porta Pia [reverse]' +p165203 +sg25270 +S'Giovan Federico Bonzagni' +p165204 +sa(dp165205 +g25273 +S'silver//Struck' +p165206 +sg25267 +g27 +sg25275 +S'1572' +p165207 +sg25268 +S'Pius V (Michele Ghislieri, 1504-1572), Pope 1566 [obverse]' +p165208 +sg25270 +S'Giovan Federico Bonzagni' +p165209 +sa(dp165210 +g25273 +S'etching' +p165211 +sg25267 +g27 +sg25275 +S'1929' +p165212 +sg25268 +S'At the Tiller' +p165213 +sg25270 +S'Arthur Briscoe' +p165214 +sa(dp165215 +g25273 +S'silver//Struck' +p165216 +sg25267 +g27 +sg25275 +S'1572' +p165217 +sg25268 +S'Battle of Lepanto [reverse]' +p165218 +sg25270 +S'Giovan Federico Bonzagni' +p165219 +sa(dp165220 +g25273 +S'bronze//Cast hollow (reverse is incuse of the obverse)' +p165221 +sg25267 +g27 +sg25275 +S'1547/1575' +p165222 +sg25268 +S"Ippolito II d'Este, 1509-1572, Son of Alfonso I d'Este, Cardinal 1538" +p165223 +sg25270 +S'Giovan Federico Bonzagni' +p165224 +sa(dp165225 +g25273 +S'bronze//Struck' +p165226 +sg25267 +g27 +sg25275 +S'1545/1547' +p165227 +sg25268 +S'Pier Luigi Farnese, 1503-1547, 1st Duke of Parma and Piacenza 1545 [obverse]' +p165228 +sg25270 +S'Giovan Federico Bonzagni' +p165229 +sa(dp165230 +g25273 +S'bronze//Struck' +p165231 +sg25267 +g27 +sg25275 +S'1545/1547' +p165232 +sg25268 +S'Citadel of Parma [reverse]' +p165233 +sg25270 +S'Giovan Federico Bonzagni' +p165234 +sa(dp165235 +g25273 +S'bronze' +p165236 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165237 +sg25268 +S'Jean Parisot de la Vallette, 1494-1568, Grand Master of Malta 1557-1568 [obverse]' +p165238 +sg25270 +S'Federico Cocciola' +p165239 +sa(dp165240 +g25273 +S'bronze' +p165241 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165242 +sg25268 +S'David and Goliath [reverse]' +p165243 +sg25270 +S'Federico Cocciola' +p165244 +sa(dp165245 +g25273 +S'bronze' +p165246 +sg25267 +g27 +sg25275 +S'1579' +p165247 +sg25268 +S'Prospero Publicola Santacroce, 1514-1589, Cardinal, 1565 [obverse]' +p165248 +sg25270 +S'Federico Cocciola' +p165249 +sa(dp165250 +g25273 +S'bronze' +p165251 +sg25267 +g27 +sg25275 +S'1579' +p165252 +sg25268 +S'Villa at Gericomio [reverse]' +p165253 +sg25270 +S'Federico Cocciola' +p165254 +sa(dp165255 +g25273 +S'bronze//Struck' +p165256 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165257 +sg25268 +S'Sixtus V (Felice Peretti, 1521-1590), Pope 1585 [obverse]' +p165258 +sg25270 +S'Lorenzo Fragni' +p165259 +sa(dp165260 +g25273 +S'bronze//Struck' +p165261 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165262 +sg25268 +S'Securitas near an Altar [reverse]' +p165263 +sg25270 +S'Lorenzo Fragni' +p165264 +sa(dp165265 +g25268 +S'The Finding of Moses' +p165266 +sg25270 +S'Veronese' +p165267 +sg25273 +S'oil on canvas' +p165268 +sg25275 +S'probably 1570/1575' +p165269 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000830.jpg' +p165270 +sg25267 +g27 +sa(dp165271 +g25273 +S'etching' +p165272 +sg25267 +g27 +sg25275 +S'1931' +p165273 +sg25268 +S'Manning the Pumps' +p165274 +sg25270 +S'Arthur Briscoe' +p165275 +sa(dp165276 +g25273 +S'Italian, 1647 - 1689' +p165277 +sg25267 +g27 +sg25275 +S'(artist after)' +p165278 +sg25268 +S"Leo X (Giovanni de' Medici, 1475-1521), Pope 1513 [obverse]" +p165279 +sg25270 +S'Artist Information (' +p165280 +sa(dp165281 +g25273 +S'Italian, 1647 - 1689' +p165282 +sg25267 +g27 +sg25275 +S'(artist after)' +p165283 +sg25268 +S'Liberality [reverse]' +p165284 +sg25270 +S'Artist Information (' +p165285 +sa(dp165286 +g25273 +S'overall (diameter): 6.7 cm (2 5/8 in.)\r\ngross weight: 99.03 gr (0.218 lb.)' +p165287 +sg25267 +g27 +sg25275 +S'\nbronze' +p165288 +sg25268 +S"Clement VII (Giulio de' Medici, 1478-1534), Pope 1523" +p165289 +sg25270 +S'Italian 16th Century' +p165290 +sa(dp165291 +g25273 +S'overall (diameter): 6.22 cm (2 7/16 in.)\r\ngross weight: 64.64 gr (0.143 lb.)\r\naxis: 6:00' +p165292 +sg25267 +g27 +sg25275 +S'\nbronze' +p165293 +sg25268 +S'Paul III (Alessandro Farnese, 1468-1549), Pope 1534 [obverse]' +p165294 +sg25270 +S'Italian 16th Century' +p165295 +sa(dp165296 +g25273 +S'overall (diameter): 6.22 cm (2 7/16 in.)\r\ngross weight: 64.64 gr (0.143 lb.)\r\naxis: 6:00' +p165297 +sg25267 +g27 +sg25275 +S'\nbronze' +p165298 +sg25268 +S'Griffin and Serpent Fighting [reverse]' +p165299 +sg25270 +S'Italian 16th Century' +p165300 +sa(dp165301 +g25273 +S'overall (maximum dimensions): 8.4 x 7.8 cm (3 5/16 x 3 1/16 in.)\r\ngross weight: 106.43 gr (0.235 lb.)' +p165302 +sg25267 +g27 +sg25275 +S'\nbronze//Cast hollow, without background' +p165303 +sg25268 +S'Paul III (Alessandro Farnese, 1468-1549), Pope 1534' +p165304 +sg25270 +S'Italian 16th Century' +p165305 +sa(dp165306 +g25273 +S'overall (diameter): 8.08 cm (3 3/16 in.)\r\ngross weight: 90.6 gr (0.2 lb.)' +p165307 +sg25267 +g27 +sg25275 +S'\nlead' +p165308 +sg25268 +S'Julius III (Giammaria Ciocchi del Monte, 1487-1555), Pope 1550' +p165309 +sg25270 +S'Italian 16th Century' +p165310 +sa(dp165311 +g25273 +S'overall (diameter): 6.73 cm (2 5/8 in.)\r\ngross weight: 39.83 gr (0.088 lb.)' +p165312 +sg25267 +g27 +sg25275 +S'\nbronze' +p165313 +sg25268 +S"Pius IV (Giovanni Angelo de' Medici, 1499-1565), Pope 1559" +p165314 +sg25270 +S'Italian 16th Century' +p165315 +sa(dp165316 +g25268 +S'Andrea Briosco, called Riccio, 1470-1532, Paduan Sculptor [obverse]' +p165317 +sg25270 +S'Artist Information (' +p165318 +sg25273 +S'Italian, 1470 - 1532' +p165319 +sg25275 +S'(related artist)' +p165320 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdba.jpg' +p165321 +sg25267 +g27 +sa(dp165322 +g25268 +S'Broken Laurel Tree with Leafy Branch [reverse]' +p165323 +sg25270 +S'Artist Information (' +p165324 +sg25273 +S'Italian, 1470 - 1532' +p165325 +sg25275 +S'(related artist)' +p165326 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdbb.jpg' +p165327 +sg25267 +g27 +sa(dp165328 +g25273 +S'etching' +p165329 +sg25267 +g27 +sg25275 +S'1927' +p165330 +sg25268 +S"The Fore T'Gallant Sail" +p165331 +sg25270 +S'Arthur Briscoe' +p165332 +sa(dp165333 +g25273 +S'bronze//Struck' +p165334 +sg25267 +g27 +sg25275 +S'probably 1532' +p165335 +sg25268 +S'Pietro Bembo, 1470-1547, Cardinal 1538 [obverse]' +p165336 +sg25270 +S'Valerio Belli' +p165337 +sa(dp165338 +g25273 +S'bronze//Struck' +p165339 +sg25267 +g27 +sg25275 +S'probably 1532' +p165340 +sg25268 +S'Bembo beside a Stream [reverse]' +p165341 +sg25270 +S'Valerio Belli' +p165342 +sa(dp165343 +g25273 +S'bronze' +p165344 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165345 +sg25268 +S'Helen of Troy [obverse]' +p165346 +sg25270 +S'Valerio Belli' +p165347 +sa(dp165348 +g25273 +S'bronze' +p165349 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165350 +sg25268 +S'Concord Holding Cornucopiae [reverse]' +p165351 +sg25270 +S'Valerio Belli' +p165352 +sa(dp165353 +g25273 +S'bronze//Cast' +p165354 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165355 +sg25268 +S"Alfonso II d'Avalos, 1502-1546, Marquess of Vasto [obverse]" +p165356 +sg25270 +S'Giovanni da Cavino' +p165357 +sa(dp165358 +g25273 +S'bronze//Cast' +p165359 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165360 +sg25268 +S'Man with Arms and Africa Mourning [reverse]' +p165361 +sg25270 +S'Giovanni da Cavino' +p165362 +sa(dp165363 +g25273 +S'bronze' +p165364 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165365 +sg25268 +S'Alessandro Bassiano and the Medallist [obverse]' +p165366 +sg25270 +S'Giovanni da Cavino' +p165367 +sa(dp165368 +g25273 +S'bronze//Struck' +p165369 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165370 +sg25268 +S'Genius Sacrificing [reverse]' +p165371 +sg25270 +S'Giovanni da Cavino' +p165372 +sa(dp165373 +g25273 +S'bronze//Struck' +p165374 +sg25267 +g27 +sg25275 +S'1520 or after' +p165375 +sg25268 +S'Giampietro Mantova Benavides, died 1520, Paduan Physician [obverse]' +p165376 +sg25270 +S'Giovanni da Cavino' +p165377 +sa(dp165378 +g25273 +S'bronze//Struck' +p165379 +sg25267 +g27 +sg25275 +S'1520 or after' +p165380 +sg25268 +S'Temple with Goddess [reverse]' +p165381 +sg25270 +S'Giovanni da Cavino' +p165382 +sa(dp165383 +g25273 +S'etching' +p165384 +sg25267 +g27 +sg25275 +S'1930' +p165385 +sg25268 +S'Abandoned' +p165386 +sg25270 +S'Arthur Briscoe' +p165387 +sa(dp165388 +g25273 +S'bronze//Struck' +p165389 +sg25267 +g27 +sg25275 +S'1540' +p165390 +sg25268 +S'Girolamo Cornaro, c. 1486-1551, Venetian Patrician [obverse]' +p165391 +sg25270 +S'Giovanni da Cavino' +p165392 +sa(dp165393 +g25273 +S'bronze//Struck' +p165394 +sg25267 +g27 +sg25275 +S'1540' +p165395 +sg25268 +S'Cornaro Distributing Alms [reverse]' +p165396 +sg25270 +S'Giovanni da Cavino' +p165397 +sa(dp165398 +g25273 +S'bronze//Struck' +p165399 +sg25267 +g27 +sg25275 +S'1539' +p165400 +sg25268 +S'Giovanni Antonio Vincenzo Dolce, 1482-1555, Paduan Jurist, Canon of Padua 1516 [obverse]' +p165401 +sg25270 +S'Giovanni da Cavino' +p165402 +sa(dp165403 +g25273 +S'bronze//Struck' +p165404 +sg25267 +g27 +sg25275 +S'1539' +p165405 +sg25268 +S'Genius Holding a Dolphin and Sacrificing [reverse]' +p165406 +sg25270 +S'Giovanni da Cavino' +p165407 +sa(dp165408 +g25273 +S'bronze//Struck' +p165409 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165410 +sg25268 +S'Giovanni Mels, died 1559, Jurist [obverse]' +p165411 +sg25270 +S'Giovanni da Cavino' +p165412 +sa(dp165413 +g25273 +S'bronze//Struck' +p165414 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165415 +sg25268 +S'Mels as Genius, Sacrificing [reverse]' +p165416 +sg25270 +S'Giovanni da Cavino' +p165417 +sa(dp165418 +g25273 +S'bronze//Struck' +p165419 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165420 +sg25268 +S'Balduino del Monte, died 1556, Brother of Pope Julius III, Count of Monte Sansovino 1550 [obverse]' +p165421 +sg25270 +S'Giovanni da Cavino' +p165422 +sa(dp165423 +g25273 +S'bronze//Struck' +p165424 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165425 +sg25268 +S'Combat between Two Horsemen [reverse]' +p165426 +sg25270 +S'Giovanni da Cavino' +p165427 +sa(dp165428 +g25273 +S'bronze//Struck' +p165429 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165430 +sg25268 +S'Girolamo Panico, died 1558, and Pompeo Ludovisi, died 1565 [obverse]' +p165431 +sg25270 +S'Giovanni da Cavino' +p165432 +sa(dp165433 +g25273 +S'bronze//Struck' +p165434 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165435 +sg25268 +S'Genius Holding a Dolphin and Sacrificing [reverse]' +p165436 +sg25270 +S'Giovanni da Cavino' +p165437 +sa(dp165438 +g25273 +S'etching' +p165439 +sg25267 +g27 +sg25275 +S'1930' +p165440 +sg25268 +S'Sculling' +p165441 +sg25270 +S'Arthur Briscoe' +p165442 +sa(dp165443 +g25273 +S'bronze//Struck' +p165444 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165445 +sg25268 +S'Francesco Querini, died 1563, Venetian Patrician, Poet and Soldier [obverse]' +p165446 +sg25270 +S'Giovanni da Cavino' +p165447 +sa(dp165448 +g25273 +S'bronze' +p165449 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165450 +sg25268 +S'Wolf and Twins [reverse]' +p165451 +sg25270 +S'Giovanni da Cavino' +p165452 +sa(dp165453 +g25273 +S'bronze' +p165454 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165455 +sg25268 +S'Luca Salvioni, died 1536, Paduan Jurist [obverse]' +p165456 +sg25270 +S'Giovanni da Cavino' +p165457 +sa(dp165458 +g25273 +S'bronze//Struck' +p165459 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165460 +sg25268 +S'Ceres with Book and Cornucopiae [reverse]' +p165461 +sg25270 +S'Giovanni da Cavino' +p165462 +sa(dp165463 +g25273 +S'bronze//Struck' +p165464 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165465 +sg25268 +S'Cosimo Scapti [obverse]' +p165466 +sg25270 +S'Giovanni da Cavino' +p165467 +sa(dp165468 +g25273 +S'bronze//Struck' +p165469 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165470 +sg25268 +S'Salus and Serpent [reverse]' +p165471 +sg25270 +S'Giovanni da Cavino' +p165472 +sa(dp165473 +g25273 +S'bronze//Stuck' +p165474 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165475 +sg25268 +S'Homer [obverse]' +p165476 +sg25270 +S'Giovanni da Cavino' +p165477 +sa(dp165478 +g25273 +S'bronze//Struck' +p165479 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165480 +sg25268 +S'Armed Man with Other Figures [reverse]' +p165481 +sg25270 +S'Giovanni da Cavino' +p165482 +sa(dp165483 +g25273 +S'bronze//Struck' +p165484 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165485 +sg25268 +S'Head of Arethusa [obverse]' +p165486 +sg25270 +S'Giovanni da Cavino' +p165487 +sa(dp165488 +g25273 +S'bronze//Struck' +p165489 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165490 +sg25268 +S'Chariot on a Pedestal [reverse]' +p165491 +sg25270 +S'Giovanni da Cavino' +p165492 +sa(dp165493 +g25273 +S'etching' +p165494 +sg25267 +g27 +sg25275 +S'1930' +p165495 +sg25268 +S'In the Trades' +p165496 +sg25270 +S'Arthur Briscoe' +p165497 +sa(dp165498 +g25273 +S'bronze//Struck' +p165499 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165500 +sg25268 +S'Agrippina Senior, 14 B.C.-A.D. 33, Daughter of Marcus Agrippa, Wife of Germanicus [obverse]' +p165501 +sg25270 +S'Giovanni da Cavino' +p165502 +sa(dp165503 +g25273 +S'bronze//Struck' +p165504 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165505 +sg25268 +S'Funeral Car [reverse]' +p165506 +sg25270 +S'Giovanni da Cavino' +p165507 +sa(dp165508 +g25273 +S'bronze//Struck' +p165509 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165510 +sg25268 +S'Antonia, 36 B.C.-A.D. c. 38, Daughter of Mark Antony and Octavia [obverse]' +p165511 +sg25270 +S'Giovanni da Cavino' +p165512 +sa(dp165513 +g25273 +S'bronze//Struck' +p165514 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165515 +sg25268 +S'Claudius Caesar [reverse]' +p165516 +sg25270 +S'Giovanni da Cavino' +p165517 +sa(dp165518 +g25273 +S'bronze//Struck' +p165519 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165520 +sg25268 +S'Nero, A.D. 37-68, Roman Emperor A.D. 54 [obverse]' +p165521 +sg25270 +S'Giovanni da Cavino' +p165522 +sa(dp165523 +g25273 +S'bronze//Struck' +p165524 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165525 +sg25268 +S'Ceres and Annona [reverse]' +p165526 +sg25270 +S'Giovanni da Cavino' +p165527 +sa(dp165528 +g25273 +S'bronze//Struck' +p165529 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165530 +sg25268 +S'Sabina, died A.D. 136 or 137, Wife of Hadrian [obverse]' +p165531 +sg25270 +S'Giovanni da Cavino' +p165532 +sa(dp165533 +g25273 +S'bronze//Struck' +p165534 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165535 +sg25268 +S'Ceres Holding Ears of Corn and a Torch [reverse]' +p165536 +sg25270 +S'Giovanni da Cavino' +p165537 +sa(dp165538 +g25273 +S'bronze//Cast' +p165539 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165540 +sg25268 +S'Antinous, died A.D. 130, Favorite of the Emperor Hadrian [obverse]' +p165541 +sg25270 +S'Giovanni da Cavino' +p165542 +sa(dp165543 +g25273 +S'bronze//Cast' +p165544 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165545 +sg25268 +S'Mercury Taming Pegasus [reverse]' +p165546 +sg25270 +S'Giovanni da Cavino' +p165547 +sa(dp165548 +g25273 +S'etching' +p165549 +sg25267 +g27 +sg25275 +S'1930' +p165550 +sg25268 +S'Stowing the Mainsail' +p165551 +sg25270 +S'Arthur Briscoe' +p165552 +sa(dp165553 +g25273 +S'bronze//Struck' +p165554 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165555 +sg25268 +S'Antoninus Pius, Emperor A.D. 138-161 [obverse]' +p165556 +sg25270 +S'Giovanni da Cavino' +p165557 +sa(dp165558 +g25273 +S'bronze//Struck' +p165559 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165560 +sg25268 +S'Roma, the Emperor, and Victory [reverse]' +p165561 +sg25270 +S'Giovanni da Cavino' +p165562 +sa(dp165563 +g25273 +S'bronze//Struck' +p165564 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165565 +sg25268 +S'Faustina Junior, died A.D. 176, Wife of Marcus Aurelius [obverse]' +p165566 +sg25270 +S'Giovanni da Cavino' +p165567 +sa(dp165568 +g25273 +S'bronze//Struck' +p165569 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165570 +sg25268 +S'Empress and Five Women Sacrificing [reverse]' +p165571 +sg25270 +S'Giovanni da Cavino' +p165572 +sa(dp165573 +g25273 +S'brass and copper//Struck' +p165574 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165575 +sg25268 +S'Lucius Verus, Emperor, reigned A.D. 161-169 [obverse]' +p165576 +sg25270 +S'Giovanni da Cavino' +p165577 +sa(dp165578 +g25273 +S'brass and copper//Struck' +p165579 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165580 +sg25268 +S'Roma, the Emperor, and Victory [reverse]' +p165581 +sg25270 +S'Giovanni da Cavino' +p165582 +sa(dp165583 +g25273 +S'bronze//Struck' +p165584 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165585 +sg25268 +S'Commodus, Emperor, reigned A.D. 177-192 [obverse]' +p165586 +sg25270 +S'Giovanni da Cavino' +p165587 +sa(dp165588 +g25273 +S'bronze//Struck' +p165589 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165590 +sg25268 +S'Salus Feeding a Serpent [reverse]' +p165591 +sg25270 +S'Giovanni da Cavino' +p165592 +sa(dp165593 +g25273 +S'bronze//Struck' +p165594 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165595 +sg25268 +S'Septimius Severus, Emperor, reigned A.D. 193-211 [obverse]' +p165596 +sg25270 +S'Giovanni da Cavino' +p165597 +sa(dp165598 +g25273 +S'bronze//Struck' +p165599 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165600 +sg25268 +S'Mars Resting on a Spear and Shield [reverse]' +p165601 +sg25270 +S'Giovanni da Cavino' +p165602 +sa(dp165603 +g25273 +S'etching' +p165604 +sg25267 +g27 +sg25275 +S'1926' +p165605 +sg25268 +S'La Tresse' +p165606 +sg25270 +S'Gerald Leslie Brockhurst' +p165607 +sa(dp165608 +g25273 +S'bronze' +p165609 +sg25267 +g27 +sg25275 +S'c. 1525/1550' +p165610 +sg25268 +S'Hercules [obverse]' +p165611 +sg25270 +S'Master HB' +p165612 +sa(dp165613 +g25273 +S'bronze' +p165614 +sg25267 +g27 +sg25275 +S'c. 1525/1550' +p165615 +sg25268 +S'A Messenger Brings Hercules the Shirt of Nessus [reverse]' +p165616 +sg25270 +S'Master HB' +p165617 +sa(dp165618 +g25273 +S'bronze//Later cast' +p165619 +sg25267 +g27 +sg25275 +S'1532' +p165620 +sg25268 +S'Sigismund Augustus, 1520-1572, Grand Duke of Lithuania 1522, King of Poland 1530 [obverse]' +p165621 +sg25270 +S'Giovanni Maria Mosca' +p165622 +sa(dp165623 +g25273 +S'bronze//Later cast' +p165624 +sg25267 +g27 +sg25275 +S'1532' +p165625 +sg25268 +S'Lion [reverse]' +p165626 +sg25270 +S'Giovanni Maria Mosca' +p165627 +sa(dp165628 +g25273 +S'bronze' +p165629 +sg25267 +g27 +sg25275 +S'1534' +p165630 +sg25268 +S'Andrea Gritti, 1455-1538, Doge of Venice 1523 [obverse]' +p165631 +sg25270 +S'Andrea Spinelli' +p165632 +sa(dp165633 +g25273 +S'bronze' +p165634 +sg25267 +g27 +sg25275 +S'1534' +p165635 +sg25268 +S'Church of San Francesco della Vigna [reverse]' +p165636 +sg25270 +S'Andrea Spinelli' +p165637 +sa(dp165638 +g25273 +S'bronze//Struck' +p165639 +sg25267 +g27 +sg25275 +S'1536' +p165640 +sg25268 +S'Antonio Mula, Venetian Patrician, Duke of Candia 1536, Member of Council of Ten 1538 [obverse]' +p165641 +sg25270 +S'Andrea Spinelli' +p165642 +sa(dp165643 +g25273 +S'bronze' +p165644 +sg25267 +g27 +sg25275 +S'1536' +p165645 +sg25268 +S'Mula and Another Man Joining Hands [reverse]' +p165646 +sg25270 +S'Andrea Spinelli' +p165647 +sa(dp165648 +g25273 +S'gilt bronze//Struck' +p165649 +sg25267 +g27 +sg25275 +S'1540' +p165650 +sg25268 +S'Girolamo Zane, Venetian Senator [obverse]' +p165651 +sg25270 +S'Andrea Spinelli' +p165652 +sa(dp165653 +g25273 +S'gilt bronze//Struck' +p165654 +sg25267 +g27 +sg25275 +S'1540' +p165655 +sg25268 +S'Saint Jerome in a Landscape [reverse]' +p165656 +sg25270 +S'Andrea Spinelli' +p165657 +sa(dp165658 +g25273 +S'etching' +p165659 +sg25267 +g27 +sg25275 +S'1930' +p165660 +sg25268 +S'Noon' +p165661 +sg25270 +S'Arthur Briscoe' +p165662 +sa(dp165663 +g25273 +S'bronze//Struck' +p165664 +sg25267 +g27 +sg25275 +S'1539' +p165665 +sg25268 +S'Pietro Lando, c. 1462-1545, Doge of Venice 1539, with Venetian Senators, Kneeling Before Christ [obverse]' +p165666 +sg25270 +S'Andrea Spinelli' +p165667 +sa(dp165668 +g25273 +S'bronze//Struck' +p165669 +sg25267 +g27 +sg25275 +S'1539' +p165670 +sg25268 +S'Venice Crowned Holding Cornucopiae and Scales, Galley and Arms [reverse]' +p165671 +sg25270 +S'Andrea Spinelli' +p165672 +sa(dp165673 +g25273 +S'bronze' +p165674 +sg25267 +g27 +sg25275 +S'1555' +p165675 +sg25268 +S'Pietro Lauro, born 1508, Modenese Poet and Scholar [obverse]' +p165676 +sg25270 +S'Master I.A.V.F.' +p165677 +sa(dp165678 +g25273 +S'bronze' +p165679 +sg25267 +g27 +sg25275 +S'1555' +p165680 +sg25268 +S'Inscription in a Laurel Wreath [reverse]' +p165681 +sg25270 +S'Master I.A.V.F.' +p165682 +sa(dp165683 +g25273 +S'Italian, c. 1509 - 1573' +p165684 +sg25267 +g27 +sg25275 +S'(artist after)' +p165685 +sg25268 +S"Giovanni de' Medici delle Bande Nere, 1498-1526, Condottiere [obverse]" +p165686 +sg25270 +S'Artist Information (' +p165687 +sa(dp165688 +g25273 +S'Italian, c. 1509 - 1573' +p165689 +sg25267 +g27 +sg25275 +S'(artist after)' +p165690 +sg25268 +S'Thunderbolt Issuing from a Cloud [reverse]' +p165691 +sg25270 +S'Artist Information (' +p165692 +sa(dp165693 +g25273 +S'bronze' +p165694 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165695 +sg25268 +S'Elisabetta Querini, died 1559, Daughter of Francesco Querini of Venice, Wife of Lorenzo Masolo, Widowed 1556 [obverse]' +p165696 +sg25270 +S'Danese Cattaneo' +p165697 +sa(dp165698 +g25273 +S'bronze' +p165699 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165700 +sg25268 +S'The Three Graces [reverse]' +p165701 +sg25270 +S'Danese Cattaneo' +p165702 +sa(dp165703 +g25273 +S'bronze' +p165704 +sg25267 +g27 +sg25275 +S'probably 1551/1552' +p165705 +sg25268 +S'Gaspare Borgia, died 1556, Bishop of Segorbe 1530' +p165706 +sg25270 +S'Alessandro Vittoria' +p165707 +sa(dp165708 +g25268 +S'Caterina Sandella of Venice, Wife of Pietro Aretino 1548' +p165709 +sg25270 +S'Alessandro Vittoria' +p165710 +sg25273 +S'bronze' +p165711 +sg25275 +S'c. 1548' +p165712 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006414.jpg' +p165713 +sg25267 +g27 +sa(dp165714 +g25273 +S'etching' +p165715 +sg25267 +g27 +sg25275 +S'1929' +p165716 +sg25268 +S'Brightlingsea Hard' +p165717 +sg25270 +S'Arthur Briscoe' +p165718 +sa(dp165719 +g25268 +S'Pietro Bembo, 1470-1547, Cardinal 1538, Venetian Philologist, Poet and Belletrist [obverse]' +p165720 +sg25270 +S'Artist Information (' +p165721 +sg25273 +S'Italian, 1500 - 1571' +p165722 +sg25275 +S'(sculptor)' +p165723 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002db2.jpg' +p165724 +sg25267 +g27 +sa(dp165725 +g25268 +S'Pegasus on the Fountain Hippocrene [reverse]' +p165726 +sg25270 +S'Artist Information (' +p165727 +sg25273 +S'Italian, 1500 - 1571' +p165728 +sg25275 +S'(sculptor)' +p165729 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002db3.jpg' +p165730 +sg25267 +g27 +sa(dp165731 +g25273 +S'overall (diameter): 5.1 cm (2 in.)\r\ngross weight: 42.2 gr (0.093 lb.)\r\naxis: 12:00' +p165732 +sg25267 +g27 +sg25275 +S'\nbronze' +p165733 +sg25268 +S'Pietro Piantanida [obverse]' +p165734 +sg25270 +S'Milanese 16th Century' +p165735 +sa(dp165736 +g25273 +S'overall (diameter): 5.1 cm (2 in.)\r\ngross weight: 42.2 gr (0.093 lb.)\r\naxis: 12:00' +p165737 +sg25267 +g27 +sg25275 +S'\nbronze' +p165738 +sg25268 +S'Faith Pointing to Heaven [reverse]' +p165739 +sg25270 +S'Milanese 16th Century' +p165740 +sa(dp165741 +g25273 +S'overall (diameter): 5.2 cm (2 1/16 in.)\r\ngross weight: 36.51 gr (0.08 lb.)\r\naxis: 6:00' +p165742 +sg25267 +g27 +sg25275 +S'\nbronze' +p165743 +sg25268 +S'Jean de Lorraine, 1498-1550, Cardinal 1518 [obverse]' +p165744 +sg25270 +S'Milanese 16th Century' +p165745 +sa(dp165746 +g25273 +S'overall (diameter): 5.2 cm (2 1/16 in.)\r\ngross weight: 36.51 gr (0.08 lb.)\r\naxis: 6:00' +p165747 +sg25267 +g27 +sg25275 +S'\nbronze' +p165748 +sg25268 +S'Prudence with a Dragon at her Feet [reverse]' +p165749 +sg25270 +S'Milanese 16th Century' +p165750 +sa(dp165751 +g25273 +S'overall (diameter): 4.9 cm (1 15/16 in.)\r\ngross weight: 49.3 gr (0.109 lb.)\r\naxis: 6:00' +p165752 +sg25267 +g27 +sg25275 +S'\nbronze' +p165753 +sg25268 +S'Gianfrancesco Martinioni, Milanese Physician [obverse]' +p165754 +sg25270 +S'Milanese 16th Century' +p165755 +sa(dp165756 +g25273 +S'overall (diameter): 4.9 cm (1 15/16 in.)\r\ngross weight: 49.3 gr (0.109 lb.)\r\naxis: 6:00' +p165757 +sg25267 +g27 +sg25275 +S'\nbronze' +p165758 +sg25268 +S'Hippocrates(?) [reverse]' +p165759 +sg25270 +S'Milanese 16th Century' +p165760 +sa(dp165761 +g25273 +S'bronze//Late cast' +p165762 +sg25267 +g27 +sg25275 +S'1547 or after' +p165763 +sg25268 +S'Charles V, 1500-1558, King of Spain 1516, Holy Roman Emperor 1519-1556 [obverse]' +p165764 +sg25270 +S'Leone Leoni' +p165765 +sa(dp165766 +g25273 +S'bronze//Late cast' +p165767 +sg25267 +g27 +sg25275 +S'1547 or after' +p165768 +sg25268 +S'Jupiter Thundering against the Giants [reverse]' +p165769 +sg25270 +S'Leone Leoni' +p165770 +sa(dp165771 +g25273 +S'etching' +p165772 +sg25267 +g27 +sg25275 +S'1926' +p165773 +sg25268 +S'All Hands' +p165774 +sg25270 +S'Arthur Briscoe' +p165775 +sa(dp165776 +g25273 +S', unknown date' +p165777 +sg25267 +g27 +sg25275 +S'\n' +p165778 +sg25268 +S'Pietro Aretino, 1492-1556, Satirist [obverse]' +p165779 +sg25270 +S'Leone Leoni' +p165780 +sa(dp165781 +g25273 +S', unknown date' +p165782 +sg25267 +g27 +sg25275 +S'\n' +p165783 +sg25268 +S'Truth Crowned by Victory [reverse]' +p165784 +sg25270 +S'Leone Leoni' +p165785 +sa(dp165786 +g25273 +S'bronze' +p165787 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165788 +sg25268 +S'Baccio Bandinelli, 1493-1560, Florentine Sculptor [obverse]' +p165789 +sg25270 +S'Leone Leoni' +p165790 +sa(dp165791 +g25273 +S'bronze' +p165792 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165793 +sg25268 +S'Inscription in a Laurel Wreath [reverse]' +p165794 +sg25270 +S'Leone Leoni' +p165795 +sa(dp165796 +g25268 +S'Michelangelo Buonarroti, 1475-1564, Florentine Artist [obverse]' +p165797 +sg25270 +S'Leone Leoni' +p165798 +sg25273 +S'bronze//Later casting' +p165799 +sg25275 +S'c. 1561' +p165800 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002db6.jpg' +p165801 +sg25267 +g27 +sa(dp165802 +g25268 +S'Blind Man with a Staff and Water-flask, Led by a Dog [reverse]' +p165803 +sg25270 +S'Leone Leoni' +p165804 +sg25273 +S'bronze//Later casting' +p165805 +sg25275 +S'c. 1561' +p165806 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002db7.jpg' +p165807 +sg25267 +g27 +sa(dp165808 +g25268 +S'Andrea Doria, 1466-1560, Genoese Admiral [obverse]' +p165809 +sg25270 +S'Leone Leoni' +p165810 +sg25273 +S'bronze' +p165811 +sg25275 +S'1541' +p165812 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00030/a0003049.jpg' +p165813 +sg25267 +g27 +sa(dp165814 +g25268 +S'Self-Portrait [reverse]' +p165815 +sg25270 +S'Leone Leoni' +p165816 +sg25273 +S'bronze' +p165817 +sg25275 +S'1541' +p165818 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000644d.jpg' +p165819 +sg25267 +g27 +sa(dp165820 +g25268 +S'Andrea Doria, 1466-1560, Genoese Admiral [obverse]' +p165821 +sg25270 +S'Leone Leoni' +p165822 +sg25273 +S'bronze' +p165823 +sg25275 +S'1541' +p165824 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002db8.jpg' +p165825 +sg25267 +g27 +sa(dp165826 +g25268 +S'Galley and Small Boat [reverse]' +p165827 +sg25270 +S'Leone Leoni' +p165828 +sg25273 +S'bronze' +p165829 +sg25275 +S'1541' +p165830 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002db9.jpg' +p165831 +sg25267 +g27 +sa(dp165832 +g25273 +S'etching' +p165833 +sg25267 +g27 +sg25275 +S'1929' +p165834 +sg25268 +S'Aloft' +p165835 +sg25270 +S'Arthur Briscoe' +p165836 +sa(dp165837 +g25273 +S'lead//Cast hollow' +p165838 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165839 +sg25268 +S'Ippolita de Ferdinando Gonzaga, 1535-1563' +p165840 +sg25270 +S'Leone Leoni' +p165841 +sa(dp165842 +g25273 +S'bronze//Late cast' +p165843 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165844 +sg25268 +S'Ippolita di Ferdinando Gonzaga, 1535-1563 [obverse]' +p165845 +sg25270 +S'Leone Leoni' +p165846 +sa(dp165847 +g25273 +S'bronze//Late cast' +p165848 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165849 +sg25268 +S'Ippolita Looking at a Crown of Stars [reverse]' +p165850 +sg25270 +S'Leone Leoni' +p165851 +sa(dp165852 +g25273 +S'bronze//Struck' +p165853 +sg25267 +g27 +sg25275 +S'1538' +p165854 +sg25268 +S'Paul III (Alessandro Farnese, 1468-1549), Pope 1534 [obverse]' +p165855 +sg25270 +S'Leone Leoni' +p165856 +sa(dp165857 +g25273 +S'bronze//Struck' +p165858 +sg25267 +g27 +sg25275 +S'1538' +p165859 +sg25268 +S'Roma with Wolf and Twins above the Tiber River [reverse]' +p165860 +sg25270 +S'Leone Leoni' +p165861 +sa(dp165862 +g25268 +S'Giannello della Torre of Cremona, 1500-1585, Engineer in the Service of Charles V (obverse)' +p165863 +sg25270 +S'Leone Leoni' +p165864 +sg25273 +S'bronze' +p165865 +sg25275 +S'unknown date\n' +p165866 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000645e.jpg' +p165867 +sg25267 +g27 +sa(dp165868 +g25268 +S'Fountain of the Sciences [reverse]' +p165869 +sg25270 +S'Leone Leoni' +p165870 +sg25273 +S'bronze' +p165871 +sg25275 +S'unknown date\n' +p165872 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000645f.jpg' +p165873 +sg25267 +g27 +sa(dp165874 +g25273 +S'lead//Cast hollow; not contemporary' +p165875 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165876 +sg25268 +S'Philippina Welser, 1527-1580, Wife of Archduke Ferdinand of Austria 1557' +p165877 +sg25270 +S'Leone Leoni' +p165878 +sa(dp165879 +g25268 +S'Philip II, 1527-1598, King of Spain 1556' +p165880 +sg25270 +S'Jacopo Nizzola da Trezzo' +p165881 +sg25273 +S'lead//Later cast' +p165882 +sg25275 +S'1555' +p165883 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000644e.jpg' +p165884 +sg25267 +g27 +sa(dp165885 +g25273 +S'bronze' +p165886 +sg25267 +g27 +sg25275 +S'1552' +p165887 +sg25268 +S'Ippolita Gonzaga, 1535-1563, Daughter of Ferdinando [obverse]' +p165888 +sg25270 +S'Jacopo Nizzola da Trezzo' +p165889 +sa(dp165890 +g25273 +S'etching' +p165891 +sg25267 +g27 +sg25275 +S'1928' +p165892 +sg25268 +S'The Bowsprit' +p165893 +sg25270 +S'Arthur Briscoe' +p165894 +sa(dp165895 +g25273 +S'bronze' +p165896 +sg25267 +g27 +sg25275 +S'1552' +p165897 +sg25268 +S'Aurora Riding through the Heavens [reverse]' +p165898 +sg25270 +S'Jacopo Nizzola da Trezzo' +p165899 +sa(dp165900 +g25273 +S'lead//After-cast' +p165901 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165902 +sg25268 +S'Isabella Capua, Princess of Malfretto, Wife 1529 of Ferrante Gonzaga, died 1559 [obverse]' +p165903 +sg25270 +S'Jacopo Nizzola da Trezzo' +p165904 +sa(dp165905 +g25273 +S'lead//After-cast' +p165906 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165907 +sg25268 +S'Isabella at a Burning Altar [reverse]' +p165908 +sg25270 +S'Jacopo Nizzola da Trezzo' +p165909 +sa(dp165910 +g25273 +S'bronze' +p165911 +sg25267 +g27 +sg25275 +S'1578' +p165912 +sg25268 +S'Juan de Herrera, c. 1530-1597, Architect of the Escorial [obverse]' +p165913 +sg25270 +S'Jacopo Nizzola da Trezzo' +p165914 +sa(dp165915 +g25273 +S'bronze' +p165916 +sg25267 +g27 +sg25275 +S'1578' +p165917 +sg25268 +S'Architecture Holding Compasses and Square [reverse]' +p165918 +sg25270 +S'Jacopo Nizzola da Trezzo' +p165919 +sa(dp165920 +g25273 +S'bronze' +p165921 +sg25267 +g27 +sg25275 +S'1577' +p165922 +sg25268 +S'Ascanio Padula [obverse]' +p165923 +sg25270 +S'Jacopo Nizzola da Trezzo' +p165924 +sa(dp165925 +g25273 +S'bronze' +p165926 +sg25267 +g27 +sg25275 +S'1577' +p165927 +sg25268 +S'Apollo Holding a Bow and Lyre [reverse]' +p165928 +sg25270 +S'Jacopo Nizzola da Trezzo' +p165929 +sa(dp165930 +g25273 +S'bronze' +p165931 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165932 +sg25268 +S"Fernando Francesco II d'Avalos, c. 1530-1571, Marquess of Pescara [obverse]" +p165933 +sg25270 +S'Annibale Fontana' +p165934 +sa(dp165935 +g25273 +S'bronze' +p165936 +sg25267 +g27 +sg25275 +S'unknown date\n' +p165937 +sg25268 +S'Fernando as Hercules Plucking the Apples of the Hesperides [reverse]' +p165938 +sg25270 +S'Annibale Fontana' +p165939 +sa(dp165940 +g25273 +S'bronze' +p165941 +sg25267 +g27 +sg25275 +S'c. 1560' +p165942 +sg25268 +S'Giovanni Paolo Lomazzo, 1538-1600, Milanese Painter and Theorist [obverse]' +p165943 +sg25270 +S'Annibale Fontana' +p165944 +sa(dp165945 +g25273 +S'etching' +p165946 +sg25267 +g27 +sg25275 +S'1930' +p165947 +sg25268 +S'Burning Off' +p165948 +sg25270 +S'Arthur Briscoe' +p165949 +sa(dp165950 +g25273 +S'bronze' +p165951 +sg25267 +g27 +sg25275 +S'c. 1560' +p165952 +sg25268 +S'Lomazzo Presented to Mercury by Fortune [reverse]' +p165953 +sg25270 +S'Annibale Fontana' +p165954 +sa(dp165955 +g25273 +S', mid 16th century' +p165956 +sg25267 +g27 +sg25275 +S'\n' +p165957 +sg25268 +S'Giambattista Castaldi, died 1562, Count Piadena, General of Charles V [obverse]' +p165958 +sg25270 +S'Annibale Fontana' +p165959 +sa(dp165960 +g25273 +S', mid 16th century' +p165961 +sg25267 +g27 +sg25275 +S'\n' +p165962 +sg25268 +S'Castaldi in Armor with Other Figures [reverse]' +p165963 +sg25270 +S'Annibale Fontana' +p165964 +sa(dp165965 +g25273 +S', c. 1550' +p165966 +sg25267 +g27 +sg25275 +S'\n' +p165967 +sg25268 +S'Gonsalvo de Cordoba, 1443-1515, called the Great Captain [obverse]' +p165968 +sg25270 +S'Annibale Fontana' +p165969 +sa(dp165970 +g25273 +S', c. 1550' +p165971 +sg25267 +g27 +sg25275 +S'\n' +p165972 +sg25268 +S'Battle under City Walls [reverse]' +p165973 +sg25270 +S'Annibale Fontana' +p165974 +sa(dp165975 +g25273 +S'lead' +p165976 +sg25267 +g27 +sg25275 +S'1554' +p165977 +sg25268 +S"Ercole II d'Este, 1508-1559, 4th Duke of Ferrara 1534 [obverse]" +p165978 +sg25270 +S'Pompeo Leoni' +p165979 +sa(dp165980 +g25273 +S'lead' +p165981 +sg25267 +g27 +sg25275 +S'1554' +p165982 +sg25268 +S'Patience [reverse]' +p165983 +sg25270 +S'Pompeo Leoni' +p165984 +sa(dp165985 +g25268 +S'Camilla Ruggieri' +p165986 +sg25270 +S'Alfonso Ruspagiari' +p165987 +sg25273 +S'lead' +p165988 +sg25275 +S'late 16th century' +p165989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a00059cc.jpg' +p165990 +sg25267 +g27 +sa(dp165991 +g25273 +S'bronze' +p165992 +sg25267 +g27 +sg25275 +S'late 16th century' +p165993 +sg25268 +S'Camilla Ruggieri' +p165994 +sg25270 +S'Alfonso Ruspagiari' +p165995 +sa(dp165996 +g25268 +S'Self-Portrait' +p165997 +sg25270 +S'Alfonso Ruspagiari' +p165998 +sg25273 +S'lead' +p165999 +sg25275 +S'late 16th century' +p166000 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a000543f.jpg' +p166001 +sg25267 +S'\r\n Portrait medals were inspired by the ancient world, in particular the Roman coins that many humanists avidly collected. In his medal Alfonso Ruspagiari refers to himself four times: with a self-portrait; with his name around the edge; with his initials under the bust; and with the Latin word \n ' +p166002 +sa(dp166003 +g25273 +S'etching' +p166004 +sg25267 +g27 +sg25275 +S'1929' +p166005 +sg25268 +S'"We\'re Bound for Rio Grande"' +p166006 +sg25270 +S'Arthur Briscoe' +p166007 +sa(dp166008 +g25268 +S'Portrait of a Lady' +p166009 +sg25270 +S'Alfonso Ruspagiari' +p166010 +sg25273 +S'lead//Cast hollow' +p166011 +sg25275 +S'late 16th century' +p166012 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a00059ce.jpg' +p166013 +sg25267 +g27 +sa(dp166014 +g25268 +S'Portrait of a Lady' +p166015 +sg25270 +S'Alfonso Ruspagiari' +p166016 +sg25273 +S'lead//Cast hollow' +p166017 +sg25275 +S'late 16th century' +p166018 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a000598b.jpg' +p166019 +sg25267 +g27 +sa(dp166020 +g25273 +S'lead' +p166021 +sg25267 +g27 +sg25275 +S'1560' +p166022 +sg25268 +S'Costanza Bocchi, died 1566, Wife of Gianfrancesco Malvezzi' +p166023 +sg25270 +S'Gian Antonio Signoretti' +p166024 +sa(dp166025 +g25268 +S'Gabriele Lippi of Reggio Emilia' +p166026 +sg25270 +S'Gian Antonio Signoretti' +p166027 +sg25273 +S'lead//Cast hollow' +p166028 +sg25275 +S'late 16th century' +p166029 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a00059c8.jpg' +p166030 +sg25267 +g27 +sa(dp166031 +g25268 +S'Giulia Pratonieri of Reggio Emilia' +p166032 +sg25270 +S'Gian Antonio Signoretti' +p166033 +sg25273 +S'lead' +p166034 +sg25275 +S'late 16th century' +p166035 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a00059cb.jpg' +p166036 +sg25267 +g27 +sa(dp166037 +g25273 +S'bronze//Cast hollow' +p166038 +sg25267 +g27 +sg25275 +S'late 16th century' +p166039 +sg25268 +S'Leonora, Wife of Giovanni Battista Cambi, called Bombarda, the Medallist' +p166040 +sg25270 +S'Giovanni Battista Cambio, called Bombarda' +p166041 +sa(dp166042 +g25273 +S'lead//Cast hollow' +p166043 +sg25267 +g27 +sg25275 +S'late 16th century' +p166044 +sg25268 +S'Isabella Mariani, Wife of Gianfrancesco Carcass' +p166045 +sg25270 +S'Giovanni Battista Cambio, called Bombarda' +p166046 +sa(dp166047 +g25273 +S'lead//Cast hollow' +p166048 +sg25267 +g27 +sg25275 +S'late 16th century' +p166049 +sg25268 +S"Anna Maurella Oldofredi d'Iseo" +p166050 +sg25270 +S'Giovanni Battista Cambio, called Bombarda' +p166051 +sa(dp166052 +g25273 +S'bronze' +p166053 +sg25267 +g27 +sg25275 +S'late 16th century' +p166054 +sg25268 +S"Anna Maurella Oldofredi d'Iseo [obverse]" +p166055 +sg25270 +S'Giovanni Battista Cambio, called Bombarda' +p166056 +sa(dp166057 +g25273 +S'bronze' +p166058 +sg25267 +g27 +sg25275 +S'late 16th century' +p166059 +sg25268 +S'The Judgment of Paris [reverse]' +p166060 +sg25270 +S'Giovanni Battista Cambio, called Bombarda' +p166061 +sa(dp166062 +g25273 +S'etching' +p166063 +sg25267 +g27 +sg25275 +S'1929' +p166064 +sg25268 +S'The Futtock Shrouds' +p166065 +sg25270 +S'Arthur Briscoe' +p166066 +sa(dp166067 +g25273 +S'lead' +p166068 +sg25267 +g27 +sg25275 +S'late 16th century' +p166069 +sg25268 +S"Anna Maurella Oldofredi d'Iseo" +p166070 +sg25270 +S'Giovanni Battista Cambio, called Bombarda' +p166071 +sa(dp166072 +g25268 +S'Violante Brasavola, Wife of Giambattista Pigna' +p166073 +sg25270 +S'Giovanni Battista Cambio, called Bombarda' +p166074 +sg25273 +S'lead' +p166075 +sg25275 +S'late 16th century' +p166076 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a00059c9.jpg' +p166077 +sg25267 +g27 +sa(dp166078 +g25273 +S'lead' +p166079 +sg25267 +g27 +sg25275 +S'late 16th century' +p166080 +sg25268 +S'Portrait of a Lady, perhaps of the Family of Gabriele Fiamma' +p166081 +sg25270 +S'Giovanni Battista Cambio, called Bombarda' +p166082 +sa(dp166083 +g25273 +S'overall (diameter): 6.57 cm (2 9/16 in.)\r\ngross weight: 52.37 gr (0.115 lb.)' +p166084 +sg25267 +g27 +sg25275 +S'\nlead' +p166085 +sg25268 +S'Portrait of a Lady' +p166086 +sg25270 +S'Emilian 16th Century' +p166087 +sa(dp166088 +g25268 +S'Portrait of a Lady' +p166089 +sg25270 +S'Emilian 16th Century' +p166090 +sg25273 +S'overall (diameter): 5.54 cm (2 3/16 in.)\r\ngross weight: 19.5 gr (0.043 lb.)' +p166091 +sg25275 +S'\nlead//Cast hollow' +p166092 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a00059cd.jpg' +p166093 +sg25267 +g27 +sa(dp166094 +g25273 +S'overall (diameter): 7.63 cm (3 in.)\r\ngross weight: 100.73 gr (0.222 lb.)' +p166095 +sg25267 +g27 +sg25275 +S'\nbronze' +p166096 +sg25268 +S'Portrait of a Lady' +p166097 +sg25270 +S'Emilian 16th Century' +p166098 +sa(dp166099 +g25273 +S'silver' +p166100 +sg25267 +g27 +sg25275 +S'1575' +p166101 +sg25268 +S'Maximilian II, 1527-1576, Holy Roman Emperor 1564 [obverse]' +p166102 +sg25270 +S'Antonio Abondio' +p166103 +sa(dp166104 +g25273 +S'silver' +p166105 +sg25267 +g27 +sg25275 +S'1575' +p166106 +sg25268 +S'Maria, 1528-1603, Empress 1548 [reverse]' +p166107 +sg25270 +S'Antonio Abondio' +p166108 +sa(dp166109 +g25273 +S'silver' +p166110 +sg25267 +g27 +sg25275 +S'unknown date\n' +p166111 +sg25268 +S'Rudolph II, 1552-1612, Holy Roman Emperor 1576 [obverse]' +p166112 +sg25270 +S'Antonio Abondio' +p166113 +sa(dp166114 +g25273 +S'silver' +p166115 +sg25267 +g27 +sg25275 +S'unknown date\n' +p166116 +sg25268 +S'Eagle and Radiant Wreath [reverse]' +p166117 +sg25270 +S'Antonio Abondio' +p166118 +sa(dp166119 +g25273 +S'etching' +p166120 +sg25267 +g27 +sg25275 +S'1925' +p166121 +sg25268 +S'The Capstan' +p166122 +sg25270 +S'Arthur Briscoe' +p166123 +sa(dp166124 +g25273 +S'bronze' +p166125 +sg25267 +g27 +sg25275 +S'c. 1571' +p166126 +sg25268 +S'Baron Johann von Khevenh\xc3\xbcller, 1537/1538-1606 [obverse]' +p166127 +sg25270 +S'Antonio Abondio' +p166128 +sa(dp166129 +g25273 +S'bronze' +p166130 +sg25267 +g27 +sg25275 +S'c. 1571' +p166131 +sg25268 +S'Minerva, Hercules, and Vice [reverse]' +p166132 +sg25270 +S'Antonio Abondio' +p166133 +sa(dp166134 +g25268 +S'Caterina Riva' +p166135 +sg25270 +S'Antonio Abondio' +p166136 +sg25273 +S'lead' +p166137 +sg25275 +S'c. 1560' +p166138 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a00059ca.jpg' +p166139 +sg25267 +g27 +sa(dp166140 +g25273 +S'bronze' +p166141 +sg25267 +g27 +sg25275 +S'1561' +p166142 +sg25268 +S'Jacopo Antonio Sorra [obverse]' +p166143 +sg25270 +S'Antonio Abondio' +p166144 +sa(dp166145 +g25273 +S'bronze' +p166146 +sg25267 +g27 +sg25275 +S'1561' +p166147 +sg25268 +S'Sorra Shooting at a Mark [reverse]' +p166148 +sg25270 +S'Antonio Abondio' +p166149 +sa(dp166150 +g25273 +S'bronze' +p166151 +sg25267 +g27 +sg25275 +S'1572' +p166152 +sg25268 +S'Sebastian Z\xc3\xa4h, 1527-1598, Merchant and Financier [obverse]' +p166153 +sg25270 +S'Antonio Abondio' +p166154 +sa(dp166155 +g25273 +S'bronze' +p166156 +sg25267 +g27 +sg25275 +S'1572' +p166157 +sg25268 +S'Susanna Schlecht Z\xc3\xa4h, born 1541, Wife of Sebastian Z\xc3\xa4h 1560 [reverse]' +p166158 +sg25270 +S'Antonio Abondio' +p166159 +sa(dp166160 +g25273 +S'bronze' +p166161 +sg25267 +g27 +sg25275 +S'1530/1531' +p166162 +sg25268 +S'Altobello Averoldo, c. 1468-1531, Bishop of Pola, Thrice Governor of Bologna [obverse]' +p166163 +sg25270 +S'Antonio Vicentino' +p166164 +sa(dp166165 +g25273 +S'bronze' +p166166 +sg25267 +g27 +sg25275 +S'1530/1531' +p166167 +sg25268 +S'A Prince Receiving a Man with a Bridle [reverse]' +p166168 +sg25270 +S'Antonio Vicentino' +p166169 +sa(dp166170 +g25273 +S'lead' +p166171 +sg25267 +g27 +sg25275 +S'unknown date\n' +p166172 +sg25268 +S'Guido Rangoni, 1485-1539, Lord of Spilimberto [obverse]' +p166173 +sg25270 +S'Antonio Vicentino' +p166174 +sa(dp166175 +g25273 +S'etching' +p166176 +sg25267 +g27 +sg25275 +S'1927' +p166177 +sg25268 +S'Low Tide, Brixham' +p166178 +sg25270 +S'Arthur Briscoe' +p166179 +sa(dp166180 +g25273 +S'lead' +p166181 +sg25267 +g27 +sg25275 +S'unknown date\n' +p166182 +sg25268 +S'Angel Adorning a Female Figure Riding on a Bull [reverse]' +p166183 +sg25270 +S'Antonio Vicentino' +p166184 +sa(dp166185 +g25273 +S'bronze' +p166186 +sg25267 +g27 +sg25275 +S'unknown date\n' +p166187 +sg25268 +S'Argentina Pallavicini, died 1550, Wife of Guido Rangoni, Poetess and Botanist' +p166188 +sg25270 +S'Antonio Vicentino' +p166189 +sa(dp166190 +g25273 +S'bronze' +p166191 +sg25267 +g27 +sg25275 +S'1554' +p166192 +sg25268 +S'Guilia Orsini, 1537-1598, Wife of Baldossare Rangoni c. 1554 [obverse]' +p166193 +sg25270 +S'Master IAC. URB.' +p166194 +sa(dp166195 +g25273 +S'bronze' +p166196 +sg25267 +g27 +sg25275 +S'1554' +p166197 +sg25268 +S'Vase in a Landscape [reverse]' +p166198 +sg25270 +S'Master IAC. URB.' +p166199 +sa(dp166200 +g25273 +S'lead' +p166201 +sg25267 +g27 +sg25275 +S'unknown date\n' +p166202 +sg25268 +S'Benedetto Lomellini of Genoa, 1517-1579, Cardinal 1565 [obverse]' +p166203 +sg25270 +S'Medalist T.R.' +p166204 +sa(dp166205 +g25273 +S'lead' +p166206 +sg25267 +g27 +sg25275 +S'unknown date\n' +p166207 +sg25268 +S'Gentleness Standing on a Serpent [reverse]' +p166208 +sg25270 +S'Medalist T.R.' +p166209 +sa(dp166210 +g25273 +S'bronze' +p166211 +sg25267 +g27 +sg25275 +S'unknown date\n' +p166212 +sg25268 +S'Giovanni Pico della Mirandola, 1463-1494, Philosopher and Poet' +p166213 +sg25270 +S'Medalist T.R.' +p166214 +sa(dp166215 +g25268 +S'Dionisio Ratta of Bologna, died 1597 [obverse]' +p166216 +sg25270 +S'Felice Antonio Casone' +p166217 +sg25273 +S'bronze' +p166218 +sg25275 +S'1592' +p166219 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066cb.jpg' +p166220 +sg25267 +g27 +sa(dp166221 +g25268 +S'Inscription [reverse]' +p166222 +sg25270 +S'Felice Antonio Casone' +p166223 +sg25273 +S'bronze' +p166224 +sg25275 +S'1592' +p166225 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066cc.jpg' +p166226 +sg25267 +g27 +sa(dp166227 +g25268 +S'Lavinia Fontana, 1552-1614, Bolognese Painter [obverse]' +p166228 +sg25270 +S'Felice Antonio Casone' +p166229 +sg25273 +S'bronze' +p166230 +sg25275 +S'1611' +p166231 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066c9.jpg' +p166232 +sg25267 +g27 +sa(dp166233 +g25273 +S'etching' +p166234 +sg25267 +g27 +sg25275 +S'1928' +p166235 +sg25268 +S'The Main Rigging' +p166236 +sg25270 +S'Arthur Briscoe' +p166237 +sa(dp166238 +g25268 +S'Lavinia Fontana Painting [reverse]' +p166239 +sg25270 +S'Felice Antonio Casone' +p166240 +sg25273 +S'bronze' +p166241 +sg25275 +S'1611' +p166242 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066ca.jpg' +p166243 +sg25267 +g27 +sa(dp166244 +g25273 +S'bronze' +p166245 +sg25267 +g27 +sg25275 +S'unknown date\n' +p166246 +sg25268 +S'Aulus Caecina Alienus, General of Vitelius A.D. 68 [obverse]' +p166247 +sg25270 +S'Camillo Mariani' +p166248 +sa(dp166249 +g25273 +S'bronze' +p166250 +sg25267 +g27 +sg25275 +S'unknown date\n' +p166251 +sg25268 +S'Inscription [reverse]' +p166252 +sg25270 +S'Camillo Mariani' +p166253 +sa(dp166254 +g25273 +S'lead//Cast hollow' +p166255 +sg25267 +g27 +sg25275 +S'c. 1590/1600' +p166256 +sg25268 +S'Paula Carlina' +p166257 +sg25270 +S'Monogrammist A.G.' +p166258 +sa(dp166259 +g25273 +S'bronze' +p166260 +sg25267 +g27 +sg25275 +S'mid 17th century' +p166261 +sg25268 +S'Teodoro Trivulzio, 1597-1657, Prince of the Holy Roman Empire, Count of Mesocco and Valle Misolcina 1622' +p166262 +sg25270 +S'Master M.A.S.' +p166263 +sa(dp166264 +g25273 +S'bronze//Cast hollow' +p166265 +sg25267 +g27 +sg25275 +S'1640s' +p166266 +sg25268 +S'Francesco Morosini, 1618-1694, Venetian Admiral, Doge of Venice 1688' +p166267 +sg25270 +S'Johann Jakob Kornmann, called Cormano' +p166268 +sa(dp166269 +g25273 +S'bronze' +p166270 +sg25267 +g27 +sg25275 +S'1636' +p166271 +sg25268 +S'Francesco Maria Brancaccio, 1592--1675, Cardinal 1633' +p166272 +sg25270 +S'Johann Jakob Kornmann, called Cormano' +p166273 +sa(dp166274 +g25273 +S'bronze' +p166275 +sg25267 +g27 +sg25275 +S'1740' +p166276 +sg25268 +S"Johanna of Austria, 1547-1578, First Wife of Francisco I de' Medici 1565" +p166277 +sg25270 +S'Antonio Francesco Selvi' +p166278 +sa(dp166279 +g25273 +S'overall (oval): 4.24 cm (1 11/16 in.)\r\ngross weight: 44.54 gr (0.098 lb.)\r\naxis: 6:00' +p166280 +sg25267 +g27 +sg25275 +S'\nbronze' +p166281 +sg25268 +S"Maria of Aragon, after 1503-1568, Wife of Alfonso II d'Avalos [obverse]" +p166282 +sg25270 +S'Italian 16th Century' +p166283 +sa(dp166284 +g25273 +S'overall (oval): 4.24 cm (1 11/16 in.)\r\ngross weight: 44.54 gr (0.098 lb.)\r\naxis: 6:00' +p166285 +sg25267 +g27 +sg25275 +S'\nbronze' +p166286 +sg25268 +S'Assembly of the Gods [reverse]' +p166287 +sg25270 +S'Italian 16th Century' +p166288 +sa(dp166289 +g25273 +S'etching' +p166290 +sg25267 +g27 +sg25275 +S'1929' +p166291 +sg25268 +S'Refitting' +p166292 +sg25270 +S'Arthur Briscoe' +p166293 +sa(dp166294 +g25273 +S'overall (diameter): 4.92 cm (1 15/16 in.)\r\ngross weight: 23.58 gr (0.052 lb.)' +p166295 +sg25267 +g27 +sg25275 +S'\nbronze//Late chasing' +p166296 +sg25268 +S"Vittoria Colonna, c. 1490-1547, Wife of Francesco d'Avalos 1507" +p166297 +sg25270 +S'Italian 16th Century' +p166298 +sa(dp166299 +g25273 +S'overall (diameter): 6.67 cm (2 5/8 in.)\r\ngross weight: 118.47 gr (0.261 lb.)\r\naxis: 6:00' +p166300 +sg25267 +g27 +sg25275 +S'\nlead with bronze rim' +p166301 +sg25268 +S"Lucia dall'Oro, 1521-1567, Bolognese Poet, Wife of Gurone Bertano [obverse]" +p166302 +sg25270 +S'Italian 16th Century' +p166303 +sa(dp166304 +g25273 +S'overall (diameter): 6.67 cm (2 5/8 in.)\r\ngross weight: 118.47 gr (0.261 lb.)\r\naxis: 6:00' +p166305 +sg25267 +g27 +sg25275 +S'\nlead with bronze rim' +p166306 +sg25268 +S'The Three Graces [reverse]' +p166307 +sg25270 +S'Italian 16th Century' +p166308 +sa(dp166309 +g25273 +S', 1555' +p166310 +sg25267 +g27 +sg25275 +S'\n' +p166311 +sg25268 +S'Barbara Borromeo, died 1572, Wife of Camillo Gonzaga 1555 [obverse]' +p166312 +sg25270 +S'Pier Paolo Galeotti' +p166313 +sa(dp166314 +g25273 +S', 1555' +p166315 +sg25267 +g27 +sg25275 +S'\n' +p166316 +sg25268 +S'The Summits of Pindus, on Each a Flaming Vase [reverse]' +p166317 +sg25270 +S'Pier Paolo Galeotti' +p166318 +sa(dp166319 +g25273 +S', 1556' +p166320 +sg25267 +g27 +sg25275 +S'\n' +p166321 +sg25268 +S'Alessandro Caimo, Jurist of Milan [obverse]' +p166322 +sg25270 +S'Pier Paolo Galeotti' +p166323 +sa(dp166324 +g25273 +S', 1556' +p166325 +sg25267 +g27 +sg25275 +S'\n' +p166326 +sg25268 +S'Fortune Holding a Sail, and Helmeted Woman [reverse]' +p166327 +sg25270 +S'Pier Paolo Galeotti' +p166328 +sa(dp166329 +g25273 +S', c. 1550' +p166330 +sg25267 +g27 +sg25275 +S'\n' +p166331 +sg25268 +S'Girolamo Cardano, 1501-1576, Physician and Philosopher of Pavia [obverse]' +p166332 +sg25270 +S'Leone Leoni' +p166333 +sa(dp166334 +g25273 +S', c. 1550' +p166335 +sg25267 +g27 +sg25275 +S'\n' +p166336 +sg25268 +S'Vision of People Approaching a Vine [reverse]' +p166337 +sg25270 +S'Leone Leoni' +p166338 +sa(dp166339 +g25273 +S', probably 1558' +p166340 +sg25267 +g27 +sg25275 +S'\n' +p166341 +sg25268 +S'Alessandro Farnese, 1545-1592, 3rd Duke of Parma and Piacenza 1586' +p166342 +sg25270 +S'Gianpaolo Poggini' +p166343 +sa(dp166344 +g25273 +S'etching' +p166345 +sg25267 +g27 +sg25275 +S'1929' +p166346 +sg25268 +S'Brixham Trawlers' +p166347 +sg25270 +S'Arthur Briscoe' +p166348 +sa(dp166349 +g25273 +S'overall (diameter): 4.74 cm (1 7/8 in.)\r\ngross weight: 35.14 gr (0.077 lb.)\r\naxis: 12:00' +p166350 +sg25267 +g27 +sg25275 +S'\nbronze//Late cast' +p166351 +sg25268 +S'Faustina Romana (?) [obverse]' +p166352 +sg25270 +S'Italian 16th Century' +p166353 +sa(dp166354 +g25273 +S'overall (diameter): 4.74 cm (1 7/8 in.)\r\ngross weight: 35.14 gr (0.077 lb.)\r\naxis: 12:00' +p166355 +sg25267 +g27 +sg25275 +S'\nbronze//Late cast' +p166356 +sg25268 +S'Leda and the Swan [reverse]' +p166357 +sg25270 +S'Italian 16th Century' +p166358 +sa(dp166359 +g25273 +S'overall (diameter): 8.63 cm (3 3/8 in.)\r\ngross weight: 186.93 gr (0.412 lb.)' +p166360 +sg25267 +g27 +sg25275 +S'\nbronze' +p166361 +sg25268 +S'Matthias Corvinus, 1443-1490. King of Hungary 1458' +p166362 +sg25270 +S'Italian 16th Century' +p166363 +sa(dp166364 +g25268 +S"Lorenzino de' Medici, 1514-1547, Son of Pierfrancesco II [obverse]" +p166365 +sg25270 +S'Giovanni da Cavino' +p166366 +sg25273 +S'bronze//Struck' +p166367 +sg25275 +S'unknown date\n' +p166368 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000644f.jpg' +p166369 +sg25267 +g27 +sa(dp166370 +g25268 +S'Cap of Liberty between Daggers [reverse]' +p166371 +sg25270 +S'Giovanni da Cavino' +p166372 +sg25273 +S'bronze//Struck' +p166373 +sg25275 +S'unknown date\n' +p166374 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006450.jpg' +p166375 +sg25267 +g27 +sa(dp166376 +g25273 +S'overall (diameter): 5.95 cm (2 5/16 in.)\r\ngross weight: 92.63 gr (0.204 lb.)\r\naxis: 11:00' +p166377 +sg25267 +g27 +sg25275 +S'\nbronze' +p166378 +sg25268 +S'Cornelio Musso, 1511-1574, Franciscan Monk and Bishop of Bitonto 1547 [obverse]' +p166379 +sg25270 +S'Italian 16th Century' +p166380 +sa(dp166381 +g25268 +S'Unicorn in a Landscape [reverse]' +p166382 +sg25270 +S'Italian 16th Century' +p166383 +sg25273 +S'overall (diameter): 5.95 cm (2 5/16 in.)\r\ngross weight: 92.63 gr (0.204 lb.)\r\naxis: 11:00' +p166384 +sg25275 +S'\nbronze' +p166385 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006415.jpg' +p166386 +sg25267 +g27 +sa(dp166387 +g25268 +S'Giovanni de Nores, 1489-1544, Count of Tripoli' +p166388 +sg25270 +S'Venetian 16th Century' +p166389 +sg25273 +S'overall (diameter): 9.52 cm (3 3/4 in.)\r\ngross weight: 227.78 gr (0.228 kg)' +p166390 +sg25275 +S'\nbronze' +p166391 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e02d.jpg' +p166392 +sg25267 +g27 +sa(dp166393 +g25273 +S'overall (oval): 3.65 ? 2.74 cm (1 7/16 ? 1 1/16 in.)\r\ngross weight: 19.26 gr (0.042 lb.)\r\naxis: 12:00' +p166394 +sg25267 +g27 +sg25275 +S'\nbronze' +p166395 +sg25268 +S'Enrico Orsini, died 1604 [obverse]' +p166396 +sg25270 +S'Italian 16th Century' +p166397 +sa(dp166398 +g25273 +S'overall (oval): 3.65 ? 2.74 cm (1 7/16 ? 1 1/16 in.)\r\ngross weight: 19.26 gr (0.042 lb.)\r\naxis: 12:00' +p166399 +sg25267 +g27 +sg25275 +S'\nbronze' +p166400 +sg25268 +S'Bees around a Hive [reverse]' +p166401 +sg25270 +S'Italian 16th Century' +p166402 +sa(dp166403 +g25273 +S'etching' +p166404 +sg25267 +g27 +sg25275 +S'1928' +p166405 +sg25268 +S'Caulking' +p166406 +sg25270 +S'Arthur Briscoe' +p166407 +sa(dp166408 +g25273 +S'overall (diameter): 5.23 cm (2 1/16 in.)\r\ngross weight: 38.24 gr (0.084 lb.)' +p166409 +sg25267 +g27 +sg25275 +S'\nbronze' +p166410 +sg25268 +S'Giulia Orsini' +p166411 +sg25270 +S'Italian 16th Century' +p166412 +sa(dp166413 +g25273 +S'overall (diameter): 9.73 cm (3 13/16 in.)\r\ngross weight: 320.65 gr (0.707 lb.)\r\naxis: 12:00' +p166414 +sg25267 +g27 +sg25275 +S'\nbronze//Much tooled' +p166415 +sg25268 +S'Girolamo Priuli, 1486-1567, Doge of Venice 1559 [obverse]' +p166416 +sg25270 +S'Italian 16th Century' +p166417 +sa(dp166418 +g25273 +S'overall (diameter): 9.73 cm (3 13/16 in.)\r\ngross weight: 320.65 gr (0.707 lb.)\r\naxis: 12:00' +p166419 +sg25267 +g27 +sg25275 +S'\nbronze' +p166420 +sg25268 +S"Alvise Diedo, 1539-1603, Scholar and Poet, Primicerius of Saint Mark's 1563 [reverse]" +p166421 +sg25270 +S'Italian 16th Century' +p166422 +sa(dp166423 +g25273 +S'overall (rectangular, maximum height and width): 6.11 ? 5.75 cm (2 3/8 ? 2 1/4 in.)\r\naxis: 9:00' +p166424 +sg25267 +g27 +sg25275 +S'\nbronze' +p166425 +sg25268 +S'Beatrice Roverella, c. 1510-1575, Wife of Paolo Manfroni and Ercole Rangone [obverse]' +p166426 +sg25270 +S'Italian 16th Century' +p166427 +sa(dp166428 +g25273 +S'overall (rectangular, maximum height and width): 6.11 ? 5.75 cm (2 3/8 ? 2 1/4 in.)\r\naxis: 9:00' +p166429 +sg25267 +g27 +sg25275 +S'\nbronze' +p166430 +sg25268 +S'Three-Masted Ship, without Sails, in a Stormy Sea [reverse]' +p166431 +sg25270 +S'Italian 16th Century' +p166432 +sa(dp166433 +g25273 +S'bronze' +p166434 +sg25267 +g27 +sg25275 +S'probably 1558' +p166435 +sg25268 +S'Tommaso Rangone, 1493-1577, Physician of Ravenna [obverse]' +p166436 +sg25270 +S'Alessandro Vittoria' +p166437 +sa(dp166438 +g25273 +S'bronze' +p166439 +sg25267 +g27 +sg25275 +S'probably 1558' +p166440 +sg25268 +S"Female Figure Placing a Wreath on an Ox's Horns [reverse]" +p166441 +sg25270 +S'Alessandro Vittoria' +p166442 +sa(dp166443 +g25273 +S'bronze' +p166444 +sg25267 +g27 +sg25275 +S'1556/1558' +p166445 +sg25268 +S'Tommaso Rangone, 1493-1577, Physician of Ravenna [obverse]' +p166446 +sg25270 +S'Alessandro Vittoria' +p166447 +sa(dp166448 +g25273 +S'bronze' +p166449 +sg25267 +g27 +sg25275 +S'1556/1558' +p166450 +sg25268 +S'Apollo Placing a Wreath on a Lion [reverse]' +p166451 +sg25270 +S'Alessandro Vittoria' +p166452 +sa(dp166453 +g25268 +S'Tommaso Rangone, 1493-1577, Physician of Ravenna [obverse]' +p166454 +sg25270 +S'Matteo Pagano, called Matteo della Fede' +p166455 +sg25273 +S', 1562' +p166456 +sg25275 +S'\n' +p166457 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066d2.jpg' +p166458 +sg25267 +g27 +sa(dp166459 +g25273 +S'etching' +p166460 +sg25267 +g27 +sg25275 +S'1927' +p166461 +sg25268 +S'Casting Her Off' +p166462 +sg25270 +S'Arthur Briscoe' +p166463 +sa(dp166464 +g25268 +S'Jupiter as an Eagle Bringing the Infant Hercules to Juno [reverse]' +p166465 +sg25270 +S'Matteo Pagano, called Matteo della Fede' +p166466 +sg25273 +S'bronze' +p166467 +sg25275 +S'1562' +p166468 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066d3.jpg' +p166469 +sg25267 +g27 +sa(dp166470 +g25273 +S'overall (diameter): 5.18 cm (2 1/16 in.)\r\ngross weight: 45.56 gr (0.1 lb.)\r\naxis: 11:00' +p166471 +sg25267 +g27 +sg25275 +S'\nbronze//Late cast' +p166472 +sg25268 +S'Marguerite of France, 1523-1574, Duchess of Savoy [obverse]' +p166473 +sg25270 +S'Italian 16th Century' +p166474 +sa(dp166475 +g25273 +S'overall (diameter): 5.18 cm (2 1/16 in.)\r\ngross weight: 45.56 gr (0.1 lb.)\r\naxis: 11:00' +p166476 +sg25267 +g27 +sg25275 +S'\nbronze//Late cast' +p166477 +sg25268 +S'Marguerite of France, 1523-1574, Duchess of Savoy [reverse]' +p166478 +sg25270 +S'Italian 16th Century' +p166479 +sa(dp166480 +g25273 +S'overall (diameter): 6.35 cm (2 1/2 in.)\r\ngross weight: 110.33 gr (0.243 lb.)\r\naxis: 12:00' +p166481 +sg25267 +g27 +sg25275 +S'\nbronze' +p166482 +sg25268 +S'Marcantonio Trevisan, c. 1475-1554, Doge of Venice 1553 [obverse]' +p166483 +sg25270 +S'Italian 16th Century' +p166484 +sa(dp166485 +g25273 +S'overall (diameter): 6.35 cm (2 1/2 in.)\r\ngross weight: 110.33 gr (0.243 lb.)\r\naxis: 12:00' +p166486 +sg25267 +g27 +sg25275 +S'\nbronze' +p166487 +sg25268 +S'Inscription in a Wreath [reverse]' +p166488 +sg25270 +S'Italian 16th Century' +p166489 +sa(dp166490 +g25273 +S', c. 1548' +p166491 +sg25267 +g27 +sg25275 +S'\n' +p166492 +sg25268 +S'Gianfrancesco Trivulzio, 1504-1573, Marquess of Vigevano 1518 and Count of Mesocco 1518-1549 [obverse]' +p166493 +sg25270 +S'Pier Paolo Galeotti' +p166494 +sa(dp166495 +g25273 +S', c. 1548' +p166496 +sg25267 +g27 +sg25275 +S'\n' +p166497 +sg25268 +S'Fortune on a Dolphin [reverse]' +p166498 +sg25270 +S'Pier Paolo Galeotti' +p166499 +sa(dp166500 +g25273 +S'overall (diameter): 4.7 cm (1 7/8 in.)\r\ngross weight: 36 gr (0.079 lb.)\r\naxis: 6:00' +p166501 +sg25267 +g27 +sg25275 +S'\nbronze' +p166502 +sg25268 +S'Laura Gonzaga Trivulzio [obverse]' +p166503 +sg25270 +S'Italian 16th Century' +p166504 +sa(dp166505 +g25273 +S'overall (diameter): 4.7 cm (1 7/8 in.)\r\ngross weight: 36 gr (0.079 lb.)\r\naxis: 6:00' +p166506 +sg25267 +g27 +sg25275 +S'\nbronze' +p166507 +sg25268 +S'River-god Mincio [reverse]' +p166508 +sg25270 +S'Italian 16th Century' +p166509 +sa(dp166510 +g25268 +S'Andrea Della Valle, 1463-1534, Patron and Collector, Cardinal 1517 [obverse]' +p166511 +sg25270 +S'Italian 16th Century' +p166512 +sg25273 +S'overall (diameter): 3.95 cm (1 9/16 in.)\r\ngross weight: 27.92 gr (0.062 lb.)\r\naxis: 6:00' +p166513 +sg25275 +S'\nbronze' +p166514 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005bc8.jpg' +p166515 +sg25267 +g27 +sa(dp166516 +g25273 +S'etching' +p166517 +sg25267 +g27 +sg25275 +S'1926' +p166518 +sg25268 +S'The Trawler' +p166519 +sg25270 +S'Arthur Briscoe' +p166520 +sa(dp166521 +g25268 +S'Faith Pointing to Heaven [reverse]' +p166522 +sg25270 +S'Italian 16th Century' +p166523 +sg25273 +S'overall (diameter): 3.95 cm (1 9/16 in.)\r\ngross weight: 27.92 gr (0.062 lb.)\r\naxis: 6:00' +p166524 +sg25275 +S'\nbronze' +p166525 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005bc9.jpg' +p166526 +sg25267 +g27 +sa(dp166527 +g25273 +S'overall (diameter): 6.1 cm (2 3/8 in.)\r\ngross weight: 88.44 gr\r\naxis: 6:00' +p166528 +sg25267 +g27 +sg25275 +S'\nbronze' +p166529 +sg25268 +S'Pierio Valeriano Bolzanio, 1477-1558, Philologist and Tutor' +p166530 +sg25270 +S'Italian 16th Century' +p166531 +sa(dp166532 +g25273 +S'overall (diameter): 6.1 cm (2 3/8 in.)\r\ngross weight: 88.44 gr (0.195 lb.)\r\naxis: 6:00' +p166533 +sg25267 +g27 +sg25275 +S'\nbronze' +p166534 +sg25268 +S'Mercury and a Broken Obelisk [reverse]' +p166535 +sg25270 +S'Italian 16th Century' +p166536 +sa(dp166537 +g25273 +S', probably 1555' +p166538 +sg25267 +g27 +sg25275 +S'\n' +p166539 +sg25268 +S'Nicola Vicentino, 1511-c. 1576, Composer and Musical Theorist [obverse]' +p166540 +sg25270 +S'Alessandro Vittoria' +p166541 +sa(dp166542 +g25273 +S', probably 1555' +p166543 +sg25267 +g27 +sg25275 +S'\n' +p166544 +sg25268 +S'Organ and Cymbalum [reverse]' +p166545 +sg25270 +S'Alessandro Vittoria' +p166546 +sa(dp166547 +g25273 +S'overall (diameter): 4.12 cm (1 5/8 in.)\r\ngross weight: 21.34 gr (0.047 lb.)\r\naxis: 11:00' +p166548 +sg25267 +g27 +sg25275 +S'\nbronze' +p166549 +sg25268 +S'Calidonia Visconti Cavanago, Wife of Lucio Cavanago [obverse]' +p166550 +sg25270 +S'Italian 16th Century' +p166551 +sa(dp166552 +g25273 +S'overall (diameter): 4.12 cm (1 5/8 in.)\r\ngross weight: 21.34 gr (0.047 lb.)\r\naxis: 11:00' +p166553 +sg25267 +g27 +sg25275 +S'\nbronze' +p166554 +sg25268 +S'Eagle Looking at the Sun [reverse]' +p166555 +sg25270 +S'Italian 16th Century' +p166556 +sa(dp166557 +g25273 +S'overall (diameter): 6.98 cm (2 3/4 in.)\r\ngross weight: 76.73 gr (0.169 lb.)\r\naxis: 1:00' +p166558 +sg25267 +g27 +sg25275 +S'\nbronze' +p166559 +sg25268 +S'Carlo Visconti, 1523-1565, Cardinal 1565 [obverse]' +p166560 +sg25270 +S'Italian 16th Century' +p166561 +sa(dp166562 +g25273 +S'overall (diameter): 6.98 cm (2 3/4 in.)\r\ngross weight: 76.73 gr (0.169 lb.)\r\naxis: 1:00' +p166563 +sg25267 +g27 +sg25275 +S'\nbronze' +p166564 +sg25268 +S'Stalk of Branching Coral [reverse]' +p166565 +sg25270 +S'Italian 16th Century' +p166566 +sa(dp166567 +g25273 +S'overall (diameter): 6.78 cm (2 11/16 in.)\r\ngross weight: 59.74 gr (0.132 lb.)' +p166568 +sg25267 +g27 +sg25275 +S'\nbronze//Three times pierced' +p166569 +sg25268 +S'Portrait of a Lady' +p166570 +sg25270 +S'North Italian 16th Century' +p166571 +sa(dp166572 +g25273 +S'etching' +p166573 +sg25267 +g27 +sg25275 +S'1928' +p166574 +sg25268 +S'In Dry Dock' +p166575 +sg25270 +S'Arthur Briscoe' +p166576 +sa(dp166577 +g25273 +S'overall (diameter): 8.09 cm (3 3/16 in.)\r\ngross weight: 110.55 gr (0.244 lb.)' +p166578 +sg25267 +g27 +sg25275 +S'\nbronze' +p166579 +sg25268 +S'Portrait of a Lady' +p166580 +sg25270 +S'North Italian 16th Century' +p166581 +sa(dp166582 +g25273 +S'overall (diameter): 5.74 cm (2 1/4 in.)\r\ngross weight: 75.99 gr (0.168 lb.)' +p166583 +sg25267 +g27 +sg25275 +S'\nbronze' +p166584 +sg25268 +S'Portrait of a Lady' +p166585 +sg25270 +S'Italian 16th Century' +p166586 +sa(dp166587 +g25273 +S'overall (diameter): 6.34 cm (2 1/2 in.)\r\ngross weight: 117.01 gr (0.258 lb.)' +p166588 +sg25267 +g27 +sg25275 +S'\nbronze//Cast hollow' +p166589 +sg25268 +S'Portrait of a Lady' +p166590 +sg25270 +S'Italian 16th Century' +p166591 +sa(dp166592 +g25273 +S'overall (irregular): 9.35 ? 6.24 cm (3 11/16 ? 2 7/16 in.)\r\ngross weight: 115.32 gr (0.115 kg)' +p166593 +sg25267 +g27 +sg25275 +S'\nbronze//Cast hollow, without background' +p166594 +sg25268 +S'A Turk' +p166595 +sg25270 +S'Italian 16th Century' +p166596 +sa(dp166597 +g25273 +S'bronze' +p166598 +sg25267 +g27 +sg25275 +S'probably 1500/1599' +p166599 +sg25268 +S'Antinous [obverse]' +p166600 +sg25270 +S'Italian 16th Century' +p166601 +sa(dp166602 +g25273 +S'bronze' +p166603 +sg25267 +g27 +sg25275 +S'probably 1500/1599' +p166604 +sg25268 +S'Antinous on a Griffin [reverse]' +p166605 +sg25270 +S'Italian 16th Century' +p166606 +sa(dp166607 +g25273 +S'bronze' +p166608 +sg25267 +g27 +sg25275 +S'1541' +p166609 +sg25268 +S'Eternity [obverse]' +p166610 +sg25270 +S'Andrea Spinelli' +p166611 +sa(dp166612 +g25273 +S'bronze' +p166613 +sg25267 +g27 +sg25275 +S'1541' +p166614 +sg25268 +S'Fame [reverse]' +p166615 +sg25270 +S'Andrea Spinelli' +p166616 +sa(dp166617 +g25273 +S'bronze' +p166618 +sg25267 +g27 +sg25275 +S'probably 1423' +p166619 +sg25268 +S'Enrico Ambanelli' +p166620 +sg25270 +S'Italian 16th Century' +p166621 +sa(dp166622 +g25273 +S'bronze' +p166623 +sg25267 +g27 +sg25275 +S'16th century' +p166624 +sg25268 +S'Caterina Capalla [obverse]' +p166625 +sg25270 +S'Italian 16th Century' +p166626 +sa(dp166627 +g25273 +S'etching' +p166628 +sg25267 +g27 +sg25275 +S'1927' +p166629 +sg25268 +S'Mooring Her' +p166630 +sg25270 +S'Arthur Briscoe' +p166631 +sa(dp166632 +g25273 +S'bronze' +p166633 +sg25267 +g27 +sg25275 +S'16th century' +p166634 +sg25268 +S'Stalk of Branching Coral [reverse]' +p166635 +sg25270 +S'Italian 16th Century' +p166636 +sa(dp166637 +g25273 +S'bronze' +p166638 +sg25267 +g27 +sg25275 +S'16th century' +p166639 +sg25268 +S'Filippo Cassoli, died 1391, Jurist, Diplomat, and Teacher [obverse]' +p166640 +sg25270 +S'Italian 16th Century' +p166641 +sa(dp166642 +g25273 +S'bronze' +p166643 +sg25267 +g27 +sg25275 +S'16th century' +p166644 +sg25268 +S'Man Walking on Town Walls [reverse]' +p166645 +sg25270 +S'Italian 16th Century' +p166646 +sa(dp166647 +g25273 +S'bronze' +p166648 +sg25267 +g27 +sg25275 +S'16th century' +p166649 +sg25268 +S'Elvira, Daughter of Consalvo de C\xc3\xb3rdoba [obverse]' +p166650 +sg25270 +S'Italian 16th Century' +p166651 +sa(dp166652 +g25273 +S'bronze' +p166653 +sg25267 +g27 +sg25275 +S'16th century' +p166654 +sg25268 +S'Time Carrying a Scythe [reverse]' +p166655 +sg25270 +S'Italian 16th Century' +p166656 +sa(dp166657 +g25273 +S'bronze' +p166658 +sg25267 +g27 +sg25275 +S'16th century' +p166659 +sg25268 +S'Euclid [obverse]' +p166660 +sg25270 +S'Italian 16th Century' +p166661 +sa(dp166662 +g25273 +S'bronze' +p166663 +sg25267 +g27 +sg25275 +S'16th century' +p166664 +sg25268 +S'Inscription [reverse]' +p166665 +sg25270 +S'Italian 16th Century' +p166666 +sa(dp166667 +g25273 +S'Italian, 1430 - 1514' +p166668 +sg25267 +g27 +sg25275 +S'(related artist)' +p166669 +sg25268 +S'Nicol\xc3\xb2 Gander' +p166670 +sg25270 +S'Artist Information (' +p166671 +sa(dp166672 +g25273 +S'overall (diameter): 9.55 cm (3 3/4 in.)\r\ngross weight: 304.73 gr (0.672 lb.)\r\naxis: 12:00' +p166673 +sg25267 +g27 +sg25275 +S'\nbronze' +p166674 +sg25268 +S'Constantine the Great, Roman Emperor 307-337 [obverse]' +p166675 +sg25270 +S'Parisian 15th Century' +p166676 +sa(dp166677 +g25273 +S'overall (diameter): 9.55 cm (3 3/4 in.)\r\ngross weight: 304.73 gr (0.672 lb.)\r\naxis: 12:00' +p166678 +sg25267 +g27 +sg25275 +S'\nbronze' +p166679 +sg25268 +S'The Church and Paganism Beside the Fountain of Life [reverse]' +p166680 +sg25270 +S'Parisian 15th Century' +p166681 +sa(dp166682 +g25273 +S'etching' +p166683 +sg25267 +g27 +sg25275 +S'1929' +p166684 +sg25268 +S'The Main Brace' +p166685 +sg25270 +S'Arthur Briscoe' +p166686 +sa(dp166687 +g25273 +S'overall (diameter): 9.76 cm (3 13/16 in.)\r\ngross weight: 228.73 gr (0.504 lb.)\r\naxis: 11:00' +p166688 +sg25267 +g27 +sg25275 +S'\nbronze' +p166689 +sg25268 +S'Heraclius I, c. 575-641, Roman Emperor 610 [obverse]' +p166690 +sg25270 +S'Parisian 15th Century' +p166691 +sa(dp166692 +g25273 +S'overall (diameter): 9.76 cm (3 13/16 in.)\r\ngross weight: 228.73 gr (0.504 lb.)\r\naxis: 11:00' +p166693 +sg25267 +g27 +sg25275 +S'\nbronze' +p166694 +sg25268 +S'Heraclius I in a Car Drawn by Three Horses [reverse]' +p166695 +sg25270 +S'Parisian 15th Century' +p166696 +sa(dp166697 +g25273 +S'(artist)' +p166698 +sg25267 +g27 +sg25275 +S'\n' +p166699 +sg25268 +S'Charles VIII, 1470-1498, King of France 1483 [obverse]' +p166700 +sg25270 +S'Artist Information (' +p166701 +sa(dp166702 +g25273 +S'(artist)' +p166703 +sg25267 +g27 +sg25275 +S'\n' +p166704 +sg25268 +S'Anne of Brittany, 1477-1514, Wife of Charles VIII 1491 [reverse]' +p166705 +sg25270 +S'Artist Information (' +p166706 +sa(dp166707 +g25273 +S'(artist)' +p166708 +sg25267 +g27 +sg25275 +S'\n' +p166709 +sg25268 +S'Louis XII, 1462-1515, King of France 1498 [obverse]' +p166710 +sg25270 +S'Artist Information (' +p166711 +sa(dp166712 +g25273 +S'(artist)' +p166713 +sg25267 +g27 +sg25275 +S'\n' +p166714 +sg25268 +S'Anne of Brittany, 1477-1514, Wife of Louis XII 1498 [reverse]' +p166715 +sg25270 +S'Artist Information (' +p166716 +sa(dp166717 +g25273 +S'bronze' +p166718 +sg25267 +g27 +sg25275 +S'1502' +p166719 +sg25268 +S'Filiberto II le Beau (the Fair), 1480-1504, 8th Duke of Savoy 1497, and Margaret of Austria, 1480-1530, His Wife [obverse]' +p166720 +sg25270 +S'Jean Marende' +p166721 +sa(dp166722 +g25273 +S'bronze' +p166723 +sg25267 +g27 +sg25275 +S'1502' +p166724 +sg25268 +S'Arms of Filiberto Impaling Those of Margaret [reverse]' +p166725 +sg25270 +S'Jean Marende' +p166726 +sa(dp166727 +g25273 +S'overall (diameter): 6.02 cm (2 3/8 in.)\r\ngross weight: 52.06 gr (0.115 lb.)' +p166728 +sg25267 +g27 +sg25275 +S'\nbronze' +p166729 +sg25268 +S'Louis XII, 1462-1515, King of France 1498' +p166730 +sg25270 +S'French 16th Century' +p166731 +sa(dp166732 +g25273 +S'bronze//Later cast' +p166733 +sg25267 +g27 +sg25275 +S'1518' +p166734 +sg25268 +S'Jean de Talaru, died 1550, Canon of Fourvi\xc3\xa8re 1517' +p166735 +sg25270 +S'Medalist of 1518' +p166736 +sa(dp166737 +g25273 +S'etching' +p166738 +sg25267 +g27 +sg25275 +S'1925' +p166739 +sg25268 +S'Clewlines and Buntlines' +p166740 +sg25270 +S'Arthur Briscoe' +p166741 +sa(dp166742 +g25273 +S'bronze' +p166743 +sg25267 +g27 +sg25275 +S'1518' +p166744 +sg25268 +S'Jacques de Vitry-La Li\xc3\xa8re, died 1515, Canon, Dean, and Chancellor [obverse]' +p166745 +sg25270 +S'Medalist of 1518' +p166746 +sa(dp166747 +g25273 +S'bronze' +p166748 +sg25267 +g27 +sg25275 +S'1518' +p166749 +sg25268 +S'Putto Holding Arms of Vitry [reverse]' +p166750 +sg25270 +S'Medalist of 1518' +p166751 +sa(dp166752 +g25268 +S'Antonio Gonzalo de Toledo, c. 1480/1483-1524, Physician at Lyon [obverse]' +p166753 +sg25270 +S'Medalist of 1518' +p166754 +sg25273 +S'bronze' +p166755 +sg25275 +S'1518' +p166756 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006416.jpg' +p166757 +sg25267 +g27 +sa(dp166758 +g25268 +S'Woman Sitting on a Saddle [reverse]' +p166759 +sg25270 +S'Medalist of 1518' +p166760 +sg25273 +S'bronze' +p166761 +sg25275 +S'1518' +p166762 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006417.jpg' +p166763 +sg25267 +g27 +sa(dp166764 +g25273 +S'bronze' +p166765 +sg25267 +g27 +sg25275 +S'1517' +p166766 +sg25268 +S'Bartolomeo Panciatichi, 1468-1533, Merchant [obverse]' +p166767 +sg25270 +S'Jacques Gauvain' +p166768 +sa(dp166769 +g25273 +S'bronze' +p166770 +sg25267 +g27 +sg25275 +S'1517' +p166771 +sg25268 +S'Arms of Panciatichi [reverse]' +p166772 +sg25270 +S'Jacques Gauvain' +p166773 +sa(dp166774 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p166775 +sg25268 +S'Tommaso Guadagni, 1454-1533, Banker, Florentine Consul at Lyon 1505, Municipal Counselor 1506-1527, Counselor to Fran\xc3\xa7ois I 1523 [obverse]' +p166776 +sg25270 +S'Artist Information (' +p166777 +sa(dp166778 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p166779 +sg25268 +S'Arms of Gaudagni [reverse]' +p166780 +sg25270 +S'Artist Information (' +p166781 +sa(dp166782 +g25273 +S', probably 1538/1544' +p166783 +sg25267 +g27 +sg25275 +S'\n' +p166784 +sg25268 +S'Fran\xc3\xa7ois I, 1494-1547, King of France 1515' +p166785 +sg25270 +S'Matteo del Nassaro' +p166786 +sa(dp166787 +g25273 +S'silver' +p166788 +sg25267 +g27 +sg25275 +S'1537' +p166789 +sg25268 +S'Fran\xc3\xa7ois I, 1494-1547, King of France 1515 [obverse]' +p166790 +sg25270 +S'Ludwig Neufahrer' +p166791 +sa(dp166792 +g25273 +S'etching' +p166793 +sg25267 +g27 +sg25275 +S'1929' +p166794 +sg25268 +S'Make Fast' +p166795 +sg25270 +S'Arthur Briscoe' +p166796 +sa(dp166797 +g25273 +S'silver' +p166798 +sg25267 +g27 +sg25275 +S'1537' +p166799 +sg25268 +S'Salamander in Flames [reverse]' +p166800 +sg25270 +S'Ludwig Neufahrer' +p166801 +sa(dp166802 +g25273 +S'overall (diameter): 3.97 cm (1 9/16 in.)\r\ngross weight: 33.16 gr (0.073 lb.)\r\naxis: 5:00' +p166803 +sg25267 +g27 +sg25275 +S'\nbronze//Struck' +p166804 +sg25268 +S'Fran\xc3\xa7ois I, 1494-1547, King of France 1515 [obverse]' +p166805 +sg25270 +S'Italian 16th Century' +p166806 +sa(dp166807 +g25273 +S'overall (diameter): 3.97 cm (1 9/16 in.)\r\ngross weight: 33.16 gr (0.073 lb.)\r\naxis: 5:00' +p166808 +sg25267 +g27 +sg25275 +S'\nbronze//Struck' +p166809 +sg25268 +S'Unicorn Before a High Rock [reverse]' +p166810 +sg25270 +S'Italian 16th Century' +p166811 +sa(dp166812 +g25273 +S'overall (diameter): 5.32 cm (2 1/8 in.)\r\ngross weight: 63.09 gr (0.139 lb.)' +p166813 +sg25267 +g27 +sg25275 +S'\nbronze' +p166814 +sg25268 +S'Fran\xc3\xa7ois,1517-1536, Dauphin of France, Duke of Brittany 1532' +p166815 +sg25270 +S'French 16th Century' +p166816 +sa(dp166817 +g25273 +S'overall (diameter): 4.23 cm (1 11/16 in.)\r\ngross weight: 28.42 gr (0.063 lb.)\r\naxis: 12:00' +p166818 +sg25267 +g27 +sg25275 +S'\ngilt bronze' +p166819 +sg25268 +S'Antoine, 1489-1544, Duke of Lorraine and Bar 1508 [obverse]' +p166820 +sg25270 +S'French 16th Century' +p166821 +sa(dp166822 +g25273 +S'overall (diameter): 4.23 cm (1 11/16 in.)\r\ngross weight: 28.42 gr (0.063 lb.)\r\naxis: 12:00' +p166823 +sg25267 +g27 +sg25275 +S'\ngilt bronze' +p166824 +sg25268 +S'Ren\xc3\xa9e de Bourbon, died 1539, Wife of Antoine, Duke of Lorraine and Bar, 1515 [reverse]' +p166825 +sg25270 +S'French 16th Century' +p166826 +sa(dp166827 +g25273 +S'bronze' +p166828 +sg25267 +g27 +sg25275 +S'unknown date\n' +p166829 +sg25268 +S'Portrait of a Man [obverse]' +p166830 +sg25270 +S'Regnault Danet' +p166831 +sa(dp166832 +g25273 +S'bronze' +p166833 +sg25267 +g27 +sg25275 +S'unknown date\n' +p166834 +sg25268 +S'Portrait of a Woman [reverse]' +p166835 +sg25270 +S'Regnault Danet' +p166836 +sa(dp166837 +g25273 +S'silver//Struck' +p166838 +sg25267 +g27 +sg25275 +S'1552' +p166839 +sg25268 +S'Henri II, 1519-1559, King of France 1547 [obverse]' +p166840 +sg25270 +S'Etienne Delaune' +p166841 +sa(dp166842 +g25273 +S'silver//Struck' +p166843 +sg25267 +g27 +sg25275 +S'1552' +p166844 +sg25268 +S'Victory [reverse]' +p166845 +sg25270 +S'Etienne Delaune' +p166846 +sa(dp166847 +g25273 +S'etching' +p166848 +sg25267 +g27 +sg25275 +S'1926' +p166849 +sg25268 +S'The Heaving Line' +p166850 +sg25270 +S'Arthur Briscoe' +p166851 +sa(dp166852 +g25273 +S'bronze//Late cast' +p166853 +sg25267 +g27 +sg25275 +S'unknown date\n' +p166854 +sg25268 +S'Henri II, 1519-1559, King of France 1547 [obverse]' +p166855 +sg25270 +S'Etienne Delaune' +p166856 +sa(dp166857 +g25273 +S'bronze//Late cast' +p166858 +sg25267 +g27 +sg25275 +S'unknown date\n' +p166859 +sg25268 +S'Fame, Abundance, Victory [reverse]' +p166860 +sg25270 +S'Etienne Delaune' +p166861 +sa(dp166862 +g25273 +S'lead' +p166863 +sg25267 +g27 +sg25275 +S'unknown date\n' +p166864 +sg25268 +S'Mary Stuart, Queen of Scots, 1542-1587' +p166865 +sg25270 +S'Jacopo Primavera' +p166866 +sa(dp166867 +g25273 +S'bronze' +p166868 +sg25267 +g27 +sg25275 +S'1566' +p166869 +sg25268 +S'Simon Costi\xc3\xa8re of Lyon, 1469-after 1572, Goldsmith and Jeweler' +p166870 +sg25270 +S'Pierre II Woeiriot de Bouzey' +p166871 +sa(dp166872 +g25273 +S'overall (diameter): 4.91 cm (1 15/16 in.)\r\ngross weight: 37.78 gr (0.083 lb.)\r\naxis: 1:00' +p166873 +sg25267 +g27 +sg25275 +S'\nbronze//Late cast' +p166874 +sg25268 +S'Henri II, 1519-1559, King of France 1547 [obverse]' +p166875 +sg25270 +S'French 16th Century' +p166876 +sa(dp166877 +g25273 +S'overall (diameter): 4.91 cm (1 15/16 in.)\r\ngross weight: 37.78 gr (0.083 lb.)\r\naxis: 1:00' +p166878 +sg25267 +g27 +sg25275 +S'\nbronze//Late cast' +p166879 +sg25268 +S'Perseus Rescuing Andromeda [reverse]' +p166880 +sg25270 +S'French 16th Century' +p166881 +sa(dp166882 +g25273 +S'overall (diameter): 3.84 cm (1 1/2 in.)\r\ngross weight: 19.87 gr (0.044 lb.)' +p166883 +sg25267 +g27 +sg25275 +S'\nbronze' +p166884 +sg25268 +S'Fran\xc3\xa7ois I, Henri II, and Fran\xc3\xa7ois II, Kings of France 1515-1547, 1547-1599, and 1599-1560' +p166885 +sg25270 +S'French 16th Century' +p166886 +sa(dp166887 +g25273 +S'overall (diameter): 9.28 cm (3 5/8 in.)\r\ngross weight: 107.99 gr (0.238 lb.)' +p166888 +sg25267 +g27 +sg25275 +S'\nlead//Cast hollow' +p166889 +sg25268 +S"Catherine de' Medici, 1519-1559, Wife of Henri II of France 1533" +p166890 +sg25270 +S'French 16th Century' +p166891 +sa(dp166892 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p166893 +sg25268 +S'Isabelle de Valois, 1545-1568, Third Wife of Philip II of Spain' +p166894 +sg25270 +S'Artist Information (' +p166895 +sa(dp166896 +g25273 +S'overall (diameter): 9.22 cm (3 5/8 in.)\r\ngross weight: 116.66 gr (0.257 lb.)' +p166897 +sg25267 +g27 +sg25275 +S'\nlead//Cast hollow' +p166898 +sg25268 +S'Charles IX, 1550-1574, King of France 1560' +p166899 +sg25270 +S'French 16th Century' +p166900 +sa(dp166901 +g25273 +S'etching' +p166902 +sg25267 +g27 +sg25275 +S'1926' +p166903 +sg25268 +S'Man Overboard' +p166904 +sg25270 +S'Arthur Briscoe' +p166905 +sa(dp166906 +g25273 +S'overall (diameter): 4.87 cm (1 15/16 in.)\r\ngross weight: 38.83 gr (0.086 lb.)\r\naxis: 12:00' +p166907 +sg25267 +g27 +sg25275 +S'\nsilver//Modern strike' +p166908 +sg25268 +S'Charles III de Lorraine, 1543-1608, Duke de Guise [obverse]' +p166909 +sg25270 +S'French 16th Century' +p166910 +sa(dp166911 +g25273 +S'overall (diameter): 4.87 cm (1 15/16 in.)\r\ngross weight: 38.83 gr (0.086 lb.)\r\naxis: 12:00' +p166912 +sg25267 +g27 +sg25275 +S'\nsilver//Modern strike' +p166913 +sg25268 +S'A Man Ploughing [reverse]' +p166914 +sg25270 +S'French 16th Century' +p166915 +sa(dp166916 +g25273 +S'overall (diameter): 5.31 cm (2 1/16 in.)\r\ngross weight: 49.05 gr (0.108 lb.)\r\naxis: 12:00' +p166917 +sg25267 +g27 +sg25275 +S'\nbronze//Late cast' +p166918 +sg25268 +S'Diane de Poitiers, 1499-1566, Wife of Louis de Breze, Duchess of Valentinois 1548 [obverse]' +p166919 +sg25270 +S'French 16th Century' +p166920 +sa(dp166921 +g25273 +S'overall (diameter): 5.31 cm (2 1/16 in.)\r\ngross weight: 49.05 gr (0.108 lb.)\r\naxis: 12:00' +p166922 +sg25267 +g27 +sg25275 +S'\nbronze//Late cast' +p166923 +sg25268 +S'Trampling on Cupid [reverse]' +p166924 +sg25270 +S'French 16th Century' +p166925 +sa(dp166926 +g25273 +S'overall (diameter): 3.54 cm (1 3/8 in.)\r\ngross weight: 15.61 gr (0.034 lb.)\r\naxis: 12:00' +p166927 +sg25267 +g27 +sg25275 +S'\nbronze' +p166928 +sg25268 +S"Michel de l'H\xc3\xb4pital, 1505/1506-1573, Chancellor of France 1560-1568 [obverse]" +p166929 +sg25270 +S'French 16th Century' +p166930 +sa(dp166931 +g25273 +S'overall (diameter): 3.54 cm (1 3/8 in.)\r\ngross weight: 15.61 gr (0.034 lb.)\r\naxis: 12:00' +p166932 +sg25267 +g27 +sg25275 +S'\nbronze' +p166933 +sg25268 +S'Lightning Striking a Tower in the Sea [reverse]' +p166934 +sg25270 +S'French 16th Century' +p166935 +sa(dp166936 +g25273 +S'overall (diameter): 5.45 cm (2 1/8 in.)\r\ngross weight: 81.75 gr (0.18 lb.)\r\naxis: 6:00' +p166937 +sg25267 +g27 +sg25275 +S'\nbronze' +p166938 +sg25268 +S'Anne de Montmorency, 1493-1567, Constable of France 1538 [obverse]' +p166939 +sg25270 +S'French 16th Century' +p166940 +sa(dp166941 +g25273 +S'overall (diameter): 5.45 cm (2 1/8 in.)\r\ngross weight: 81.75 gr (0.18 lb.)\r\naxis: 6:00' +p166942 +sg25267 +g27 +sg25275 +S'\nbronze' +p166943 +sg25268 +S'Prudence, Courage and Fortune [reverse]' +p166944 +sg25270 +S'French 16th Century' +p166945 +sa(dp166946 +g25273 +S'overall (height with suspension loop): 7.43 cm (2 15/16 in.)\r\noverall (diameter without loop): 6.74 cm (2 5/8 in.)\r\ngross weight: 57.98 gr (0.128 lb.)' +p166947 +sg25267 +g27 +sg25275 +S'\nbronze//With loop' +p166948 +sg25268 +S'Jean Viret, died 1583, Scholar and Mathematician' +p166949 +sg25270 +S'French 16th Century' +p166950 +sa(dp166951 +g25273 +S'silver//Struck' +p166952 +sg25267 +g27 +sg25275 +S'1610' +p166953 +sg25268 +S'Louis XIII, 1601-1643, King of France 1610 [obverse]' +p166954 +sg25270 +S'Nicolas Briot' +p166955 +sa(dp166956 +g25268 +S'Saint Jerome Reading' +p166957 +sg25270 +S'Alvise Vivarini' +p166958 +sg25273 +S'tempera on panel' +p166959 +sg25275 +S'c. 1476' +p166960 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007d8.jpg' +p166961 +sg25267 +g27 +sa(dp166962 +g25273 +S'etching' +p166963 +sg25267 +g27 +sg25275 +S'1928' +p166964 +sg25268 +S'Securing the Boat' +p166965 +sg25270 +S'Arthur Briscoe' +p166966 +sa(dp166967 +g25273 +S'silver//Struck' +p166968 +sg25267 +g27 +sg25275 +S'1610' +p166969 +sg25268 +S'Hand Holding Sacred Ampulla over Rheims [reverse]' +p166970 +sg25270 +S'Nicolas Briot' +p166971 +sa(dp166972 +g25268 +S"Henri IV, 1553-1610, King of France 1589, and Marie de' Medici, 1573-1642, His Wife 1600 [obverse]" +p166973 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p166974 +sg25273 +S'gilt bronze//With loop' +p166975 +sg25275 +S'1603' +p166976 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dad.jpg' +p166977 +sg25267 +S"In contrast to the more personal significance of Pisanello's \n On the reverse, the distinctive profiles of the two rulers are recognizable in the two standing\nfigures holding hands. These represent Henri as Mars, the god of war, and Marie as Pallas, the\ngoddess of wisdom and the arts. Beneath their clasped hands stands the young child, their son\nLouis. The inscription around the top, PROPAGO IMPERI, "the offspring of the\nempire," reflects the dynastic aspirations of Henri and Marie, based on their hopes for\nyoung Louis' future.\n " +p166978 +sa(dp166979 +g25268 +S'Louis XIII as Dauphin between Henri IV as Mars and Marie as Pallas Athena [reverse]' +p166980 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p166981 +sg25273 +S'gilt bronze//With loop' +p166982 +sg25275 +S'1603' +p166983 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dae.jpg' +p166984 +sg25267 +g27 +sa(dp166985 +g25273 +S'bronze' +p166986 +sg25267 +g27 +sg25275 +S'1607' +p166987 +sg25268 +S'Jean-Louis de Nogaret de la Valette, 1554-1642, Duke of Epernon, Colonel General of Infantry [obverse]' +p166988 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p166989 +sa(dp166990 +g25273 +S'bronze' +p166991 +sg25267 +g27 +sg25275 +S'1607' +p166992 +sg25268 +S'Lion and Fury with Torches [reverse]' +p166993 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p166994 +sa(dp166995 +g25273 +S'French, c. 1574 - 1642' +p166996 +sg25267 +g27 +sg25275 +S'(related artist)' +p166997 +sg25268 +S'Henri IV, 1553-1610, King of France 1589' +p166998 +sg25270 +S'Artist Information (' +p166999 +sa(dp167000 +g25273 +S'bronze//With loop' +p167001 +sg25267 +g27 +sg25275 +S'1610' +p167002 +sg25268 +S'Louis XIII, 1601-1643, King of France 1610 [obverse]' +p167003 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p167004 +sa(dp167005 +g25273 +S'bronze//With loop' +p167006 +sg25267 +g27 +sg25275 +S'1610' +p167007 +sg25268 +S'Young Louis and Minerva [reverse]' +p167008 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p167009 +sa(dp167010 +g25273 +S'bronze' +p167011 +sg25267 +g27 +sg25275 +S'1611' +p167012 +sg25268 +S'Henri II de Bourbon, 1588-1646, 3rd Prince of Cond\xc3\xa9, first Prince of the Blood [obverse]' +p167013 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p167014 +sa(dp167015 +g25273 +S'bronze' +p167016 +sg25267 +g27 +sg25275 +S'1611' +p167017 +sg25268 +S'Charlotte-Marie de Montmorency, 1594-1650, Wife of Henri de Bourbon 1609 [reverse]' +p167018 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p167019 +sa(dp167020 +g25273 +S'watercolor on heavy paper' +p167021 +sg25267 +g27 +sg25275 +S'1928' +p167022 +sg25268 +S'Smothered' +p167023 +sg25270 +S'Arthur Briscoe' +p167024 +sa(dp167025 +g25273 +S'(artist after)' +p167026 +sg25267 +g27 +sg25275 +S'\n' +p167027 +sg25268 +S'Francesco IV Gonzaga, 1586-1612, 5th Duke of Mantua 1612' +p167028 +sg25270 +S'Artist Information (' +p167029 +sa(dp167030 +g25273 +S'bronze//Cast hollow' +p167031 +sg25267 +g27 +sg25275 +S'1613' +p167032 +sg25268 +S"Maria Magdalena, Grand Duchess of Tuscany, Wife of Cosimo II de' Medici 1589" +p167033 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p167034 +sa(dp167035 +g25273 +S'bronze' +p167036 +sg25267 +g27 +sg25275 +S'1613' +p167037 +sg25268 +S'Nicolas Brulart de Sillery, 1544-1624, Chancellor of France 1607 [obverse]' +p167038 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p167039 +sa(dp167040 +g25273 +S'bronze' +p167041 +sg25267 +g27 +sg25275 +S'1613' +p167042 +sg25268 +S"Apollo Driving the Sun's Car [reverse]" +p167043 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p167044 +sa(dp167045 +g25273 +S'bronze//Thick hollow cast' +p167046 +sg25267 +g27 +sg25275 +S'1618' +p167047 +sg25268 +S'Pierre Jeannin, c. 1540-1622, Lawyer, Superintendent of Finances 1610' +p167048 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p167049 +sa(dp167050 +g25273 +S'bronze' +p167051 +sg25267 +g27 +sg25275 +S'1623' +p167052 +sg25268 +S'Louis XIII, 1601-1643, King of France 1610 [obverse]' +p167053 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p167054 +sa(dp167055 +g25273 +S'bronze' +p167056 +sg25267 +g27 +sg25275 +S'1620' +p167057 +sg25268 +S'Anne of Austria, 1601-1666, Wife of King Louis XIII of France 1615 [reverse]' +p167058 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p167059 +sa(dp167060 +g25273 +S'bronze' +p167061 +sg25267 +g27 +sg25275 +S'1623' +p167062 +sg25268 +S'Louis XIII, 1601-1643, King of France 1610 [obverse]' +p167063 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p167064 +sa(dp167065 +g25273 +S'bronze' +p167066 +sg25267 +g27 +sg25275 +S'1623' +p167067 +sg25268 +S'Justice with Sword and Scales [reverse]' +p167068 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p167069 +sa(dp167070 +g25273 +S'bronze' +p167071 +sg25267 +g27 +sg25275 +S'1624' +p167072 +sg25268 +S"Marie de' Medici, 1573-1642, Wife of King Henri IV of France 1600 [obverse]" +p167073 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p167074 +sa(dp167075 +g25268 +S'The Adoration of the Magi (Virgin in the Grotto)' +p167076 +sg25270 +S'Artist Information (' +p167077 +sg25273 +S'Italian, c. 1431 - 1506' +p167078 +sg25275 +S'(related artist)' +p167079 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a000572a.jpg' +p167080 +sg25267 +g27 +sa(dp167081 +g25273 +S'bronze' +p167082 +sg25267 +g27 +sg25275 +S'1624' +p167083 +sg25268 +S'The Queen as Mother of the Gods [reverse]' +p167084 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p167085 +sa(dp167086 +g25268 +S"Marie de' Medici, 1573-1642, Wife of King Henri IV of France 1600" +p167087 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p167088 +sg25273 +S'bronze//Cast hollow, with loop' +p167089 +sg25275 +S'1624' +p167090 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006454.jpg' +p167091 +sg25267 +g27 +sa(dp167092 +g25273 +S'bronze' +p167093 +sg25267 +g27 +sg25275 +S'1629' +p167094 +sg25268 +S'Antoine Co\xc3\xabffier, called Antoine Ruz\xc3\xa9, 1581-1632, Baron Longjumeau 1621 and Marquess of Effiat 1624 [obverse]' +p167095 +sg25270 +S'Jean Warin' +p167096 +sa(dp167097 +g25273 +S'bronze' +p167098 +sg25267 +g27 +sg25275 +S'1629' +p167099 +sg25268 +S'Hercules Helping Atlas to Bear the Globe [reverse]' +p167100 +sg25270 +S'Jean Warin' +p167101 +sa(dp167102 +g25273 +S'bronze' +p167103 +sg25267 +g27 +sg25275 +S'1634' +p167104 +sg25268 +S'Jean de Caylar de Saint-Bonnet, 1585-1636, Marquis de Toiras, Marshall of France 1630 [obverse]' +p167105 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p167106 +sa(dp167107 +g25273 +S'bronze' +p167108 +sg25267 +g27 +sg25275 +S'1634' +p167109 +sg25268 +S'Radiant Sun over a Landscape [reverse]' +p167110 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p167111 +sa(dp167112 +g25273 +S'bronze//Cast hollow, with loop' +p167113 +sg25267 +g27 +sg25275 +S'1635' +p167114 +sg25268 +S'Christine de France, 1606-1663, Duchess of Savoy, Wife of Victor Amadeus I 1619, Regent 1637-1648' +p167115 +sg25270 +S'Guillaume Dupr\xc3\xa9' +p167116 +sa(dp167117 +g25273 +S'bronze' +p167118 +sg25267 +g27 +sg25275 +S'1624' +p167119 +sg25268 +S'Jacques Boyceau de la Barauderie, c. 1562-1633/1638, Intendant des Jardins under Louis XIII [obverse]' +p167120 +sg25270 +S'Abraham Dupr\xc3\xa9' +p167121 +sa(dp167122 +g25273 +S'bronze' +p167123 +sg25267 +g27 +sg25275 +S'1624' +p167124 +sg25268 +S'Landscape with Caterpillars and Butterflies [reverse]' +p167125 +sg25270 +S'Abraham Dupr\xc3\xa9' +p167126 +sa(dp167127 +g25273 +S'bronze' +p167128 +sg25267 +g27 +sg25275 +S'1601' +p167129 +sg25268 +S'Pomponne de Belli\xc3\xa8vre, 1529-1607, Chancellor of France 1599-1605 [obverse]' +p167130 +sg25270 +S'Nicolas-Gabriel Jacquet' +p167131 +sa(dp167132 +g25273 +S'bronze' +p167133 +sg25267 +g27 +sg25275 +S'1601' +p167134 +sg25268 +S'Justice and Piety at an Altar [reverse]' +p167135 +sg25270 +S'Nicolas-Gabriel Jacquet' +p167136 +sa(dp167137 +g25273 +S'bronze' +p167138 +sg25267 +g27 +sg25275 +S'1603' +p167139 +sg25268 +S'Nicolas de Lange, 1525-1606, Jurisconsult, Antiquarian, and Numismatist [obverse]' +p167140 +sg25270 +S'Philippe Lalyame' +p167141 +sa(dp167142 +g25273 +S'bronze' +p167143 +sg25267 +g27 +sg25275 +S'1603' +p167144 +sg25268 +S'Apollo and Coins of Augustus [reverse]' +p167145 +sg25270 +S'Philippe Lalyame' +p167146 +sa(dp167147 +g25273 +S'bronze//With loop' +p167148 +sg25267 +g27 +sg25275 +S'1642' +p167149 +sg25268 +S'Anne of Austria, 1601-1666, Wife of King Louis XIII of France 1615 [obverse]' +p167150 +sg25270 +S'Jean Darmand, called Lorfelin' +p167151 +sa(dp167152 +g25273 +S'bronze//With loop' +p167153 +sg25267 +g27 +sg25275 +S'1642' +p167154 +sg25268 +S'Stars and Clouds Encircling a Crown [reverse]' +p167155 +sg25270 +S'Jean Darmand, called Lorfelin' +p167156 +sa(dp167157 +g25273 +S'bronze//Modern strike' +p167158 +sg25267 +g27 +sg25275 +S'1631' +p167159 +sg25268 +S'Armand-Jean du Plessis, 1585-1642, Cardinal de Richelieu 1622 [obverse]' +p167160 +sg25270 +S'Jean Warin' +p167161 +sa(dp167162 +g25273 +S'bronze//Modern strike' +p167163 +sg25267 +g27 +sg25275 +S'1631' +p167164 +sg25268 +S'The Globe and the Planets [reverse]' +p167165 +sg25270 +S'Jean Warin' +p167166 +sa(dp167167 +g25273 +S'overall (diameter): 5.27 cm (2 1/16 in.)\r\ngross weight: 38.9 gr (0.086 lb.)\r\naxis: 12:00' +p167168 +sg25267 +g27 +sg25275 +S'\nbronze' +p167169 +sg25268 +S'Nicolas de Bailleul, 1587-1652, Mayor of Paris 1622-1628 [obverse]' +p167170 +sg25270 +S'French 17th Century' +p167171 +sa(dp167172 +g25273 +S'overall (diameter): 5.27 cm (2 1/16 in.)\r\ngross weight: 38.9 gr (0.086 lb.)\r\naxis: 12:00' +p167173 +sg25267 +g27 +sg25275 +S'\nbronze' +p167174 +sg25268 +S'Nymph of the Seine [reverse]' +p167175 +sg25270 +S'French 17th Century' +p167176 +sa(dp167177 +g25273 +S'overall (diameter): 5.18 cm (2 1/16 in.)\r\ngross weight: 29.32 gr (0.065 lb.)\r\naxis: 6:00' +p167178 +sg25267 +g27 +sg25275 +S'\nsilver' +p167179 +sg25268 +S'No\xc3\xabl Brulart de Sillery, 1577-1640, Knight of Malta 1632 [obverse]' +p167180 +sg25270 +S'French 17th Century' +p167181 +sa(dp167182 +g25268 +S'Christ as Salvator Mundi' +p167183 +sg25270 +S'German 15th Century' +p167184 +sg25273 +S'Schreiber, no. 835' +p167185 +sg25275 +S'\nwoodcut' +p167186 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a53f.jpg' +p167187 +sg25267 +g27 +sa(dp167188 +g25273 +S'overall (diameter): 5.18 cm (2 1/16 in.)\r\ngross weight: 29.32 gr (0.065 lb.)\r\naxis: 6:00' +p167189 +sg25267 +g27 +sg25275 +S'\nsilver' +p167190 +sg25268 +S'Achievement of Brulart [reverse]' +p167191 +sg25270 +S'French 17th Century' +p167192 +sa(dp167193 +g25273 +S'overall (diameter): 4.53 cm (1 13/16 in.)\r\ngross weight: 14.14 gr (0.031 lb.)' +p167194 +sg25267 +g27 +sg25275 +S'\nbronze' +p167195 +sg25268 +S'Joachim de Ch\xc3\xa2teauvieux, 1545-1615, Count of Conflans' +p167196 +sg25270 +S'French 17th Century' +p167197 +sa(dp167198 +g25273 +S'overall (diameter): 4.81 cm (1 7/8 in.)\r\ngross weight: 33.58 gr (0.074 lb.)\r\naxis: 12:00' +p167199 +sg25267 +g27 +sg25275 +S'\nbronze' +p167200 +sg25268 +S'Antoine de Lom\xc3\xa9nie, 1560-1638, Counselor and Secretary of State 1606 [obverse]' +p167201 +sg25270 +S'French 17th Century' +p167202 +sa(dp167203 +g25273 +S'overall (diameter): 4.81 cm (1 7/8 in.)\r\ngross weight: 33.58 gr (0.074 lb.)\r\naxis: 12:00' +p167204 +sg25267 +g27 +sg25275 +S'\nbronze' +p167205 +sg25268 +S'The Sun Driving Along the Zodiac [reverse]' +p167206 +sg25270 +S'French 17th Century' +p167207 +sa(dp167208 +g25273 +S'overall (diameter): 7.56 cm (3 in.)\r\ngross weight: 95.55 gr (0.211 lb.)\r\naxis: 7:00' +p167209 +sg25267 +g27 +sg25275 +S'\nbronze' +p167210 +sg25268 +S'Jean de Saulx, 1555-1629, Viscount of Tavanes and Lugny, and Marquess of Mirabet [obverse]' +p167211 +sg25270 +S'French 17th Century' +p167212 +sa(dp167213 +g25273 +S'overall (diameter): 7.56 cm (3 in.)\r\ngross weight: 95.55 gr (0.211 lb.)\r\naxis: 7:00' +p167214 +sg25267 +g27 +sg25275 +S'\nbronze' +p167215 +sg25268 +S'Rampant Lion on a Chain [reverse]' +p167216 +sg25270 +S'French 17th Century' +p167217 +sa(dp167218 +g25273 +S'bronze//With ring' +p167219 +sg25267 +g27 +sg25275 +S'1768' +p167220 +sg25268 +S'Albertine de Nivenheim' +p167221 +sg25270 +S'Giovanni Battista Nini' +p167222 +sa(dp167223 +g25273 +S'lead' +p167224 +sg25267 +g27 +sg25275 +S'1521' +p167225 +sg25268 +S'Charles V, 1500-1558, King of Spain 1516, Holy Roman Emperor 1519-1556 [obverse]' +p167226 +sg25270 +S'Albrecht D\xc3\xbcrer' +p167227 +sa(dp167228 +g25273 +S'lead' +p167229 +sg25267 +g27 +sg25275 +S'1521' +p167230 +sg25268 +S'Coats of Arms around Double-headed Eagle [reverse]' +p167231 +sg25270 +S'Albrecht D\xc3\xbcrer' +p167232 +sa(dp167233 +g25268 +S'Kunz von der Rosen, died 1519, Confidential Counselor of Maximilian I of Austria' +p167234 +sg25270 +S'Hans Schwarz' +p167235 +sg25273 +S'bronze' +p167236 +sg25275 +S'unknown date\n' +p167237 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6b8.jpg' +p167238 +sg25267 +g27 +sa(dp167239 +g25268 +S'Persian Sibyl' +p167240 +sg25270 +S'Artist Information (' +p167241 +sg25273 +S'Italian, died 1487' +p167242 +sg25275 +S'(artist after)' +p167243 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c731.jpg' +p167244 +sg25267 +g27 +sa(dp167245 +g25273 +S'bronze' +p167246 +sg25267 +g27 +sg25275 +S'1519' +p167247 +sg25268 +S"Melchior Pfinzing, 1481-1535, Provost of Saint Sebald's in Nuremberg [obverse]" +p167248 +sg25270 +S'Hans Schwarz' +p167249 +sa(dp167250 +g25273 +S'bronze' +p167251 +sg25267 +g27 +sg25275 +S'1519' +p167252 +sg25268 +S'Inscription in a Wreath [reverse]' +p167253 +sg25270 +S'Hans Schwarz' +p167254 +sa(dp167255 +g25273 +S'bronze//Three times pierced' +p167256 +sg25267 +g27 +sg25275 +S'unknown date\n' +p167257 +sg25268 +S'Self-Portrait' +p167258 +sg25270 +S'Alexander von Bruchsal' +p167259 +sa(dp167260 +g25268 +S'Ambrosius Jung, 1471-1548, City Physician of Augsburg [obverse]' +p167261 +sg25270 +S'Christoph Weiditz the Elder' +p167262 +sg25273 +S'bronze' +p167263 +sg25275 +S'1528' +p167264 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a000597c.jpg' +p167265 +sg25267 +g27 +sa(dp167266 +g25268 +S'Coat of Arms [reverse]' +p167267 +sg25270 +S'Christoph Weiditz the Elder' +p167268 +sg25273 +S'bronze' +p167269 +sg25275 +S'1528' +p167270 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a000597a.jpg' +p167271 +sg25267 +g27 +sa(dp167272 +g25268 +S'Francisco de los Cobos, c. 1475/1480-1547, Privy Counselor and Chancellor, Art Patron [obverse]' +p167273 +sg25270 +S'Christoph Weiditz the Elder' +p167274 +sg25273 +S'lead' +p167275 +sg25275 +S'1531' +p167276 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6ba.jpg' +p167277 +sg25267 +g27 +sa(dp167278 +g25268 +S'Man Riding Towards a Cliff Carrying A Scroll [reverse]' +p167279 +sg25270 +S'Christoph Weiditz the Elder' +p167280 +sg25273 +S'lead' +p167281 +sg25275 +S'1531' +p167282 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6bb.jpg' +p167283 +sg25267 +g27 +sa(dp167284 +g25273 +S'lead' +p167285 +sg25267 +g27 +sg25275 +S'1527' +p167286 +sg25268 +S'Sebastian Liegsalz (Ligsalz), 1483-1534, Munich Patrician' +p167287 +sg25270 +S'Friedrich Hagenauer' +p167288 +sa(dp167289 +g25273 +S'lead' +p167290 +sg25267 +g27 +sg25275 +S'1527' +p167291 +sg25268 +S'Ursula Saemftl, 1499-1551, Second Wife of Sebastian Liegsalz 1522' +p167292 +sg25270 +S'Friedrich Hagenauer' +p167293 +sa(dp167294 +g25273 +S'bronze' +p167295 +sg25267 +g27 +sg25275 +S'1529' +p167296 +sg25268 +S'Giovanni Alessandro Balbiani, Count of Chiavenna, Captain in the Army of Georg van Frundsberg' +p167297 +sg25270 +S'Friedrich Hagenauer' +p167298 +sa(dp167299 +g25268 +S'Delphian Sibyl' +p167300 +sg25270 +S'Artist Information (' +p167301 +sg25273 +S'Italian, died 1487' +p167302 +sg25275 +S'(artist after)' +p167303 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c732.jpg' +p167304 +sg25267 +g27 +sa(dp167305 +g25273 +S'bronze//Cast hollow' +p167306 +sg25267 +g27 +sg25275 +S'unknown date\n' +p167307 +sg25268 +S'Portrait of a Young Man' +p167308 +sg25270 +S'Friedrich Hagenauer' +p167309 +sa(dp167310 +g25273 +S'bronze' +p167311 +sg25267 +g27 +sg25275 +S'1540' +p167312 +sg25268 +S'Johannes Mulicum, Infirmarian of the Cistercian Monestary at Kamp near Neuss [obverse]' +p167313 +sg25270 +S'Friedrich Hagenauer' +p167314 +sa(dp167315 +g25273 +S'bronze' +p167316 +sg25267 +g27 +sg25275 +S'probably 1540' +p167317 +sg25268 +S'Inscription [reverse]' +p167318 +sg25270 +S'Friedrich Hagenauer' +p167319 +sa(dp167320 +g25273 +S'bronze' +p167321 +sg25267 +g27 +sg25275 +S'1543' +p167322 +sg25268 +S'Philipp Melanchthon, 1497-1560, Reformer [obverse]' +p167323 +sg25270 +S'Friedrich Hagenauer' +p167324 +sa(dp167325 +g25273 +S'bronze' +p167326 +sg25267 +g27 +sg25275 +S'1543' +p167327 +sg25268 +S'Inscription [reverse]' +p167328 +sg25270 +S'Friedrich Hagenauer' +p167329 +sa(dp167330 +g25273 +S'bronze' +p167331 +sg25267 +g27 +sg25275 +S'probably 1543' +p167332 +sg25268 +S'Philipp Melanchthon, 1497-1560, Reformer [obverse]' +p167333 +sg25270 +S'Friedrich Hagenauer' +p167334 +sa(dp167335 +g25273 +S'bronze' +p167336 +sg25267 +g27 +sg25275 +S'probably 1543' +p167337 +sg25268 +S'Inscription [reverse]' +p167338 +sg25270 +S'Friedrich Hagenauer' +p167339 +sa(dp167340 +g25273 +S'lead' +p167341 +sg25267 +g27 +sg25275 +S'1543' +p167342 +sg25268 +S'Caspar von Mulheim, 1506-1570/1571, Counselor of Cologne [obverse]' +p167343 +sg25270 +S'Friedrich Hagenauer' +p167344 +sa(dp167345 +g25273 +S'lead' +p167346 +sg25267 +g27 +sg25275 +S'1543' +p167347 +sg25268 +S'Shield with House-mark [reverse]' +p167348 +sg25270 +S'Friedrich Hagenauer' +p167349 +sa(dp167350 +g25273 +S'bronze' +p167351 +sg25267 +g27 +sg25275 +S'1544' +p167352 +sg25268 +S'Hans Hauschel, born 1520 [obverse]' +p167353 +sg25270 +S'Friedrich Hagenauer' +p167354 +sa(dp167355 +g25268 +S'Cumaean Sibyl' +p167356 +sg25270 +S'Artist Information (' +p167357 +sg25273 +S'Italian, died 1487' +p167358 +sg25275 +S'(artist after)' +p167359 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c733.jpg' +p167360 +sg25267 +g27 +sa(dp167361 +g25273 +S'bronze' +p167362 +sg25267 +g27 +sg25275 +S'1544' +p167363 +sg25268 +S'Inscription [reverse]' +p167364 +sg25270 +S'Friedrich Hagenauer' +p167365 +sa(dp167366 +g25273 +S'bronze' +p167367 +sg25267 +g27 +sg25275 +S'1528' +p167368 +sg25268 +S'Philipp von Pfalz-Neuburg, Count Palatine, 1503-1548 [obverse]' +p167369 +sg25270 +S'Matthes Gebel' +p167370 +sa(dp167371 +g25273 +S'bronze' +p167372 +sg25267 +g27 +sg25275 +S'1528' +p167373 +sg25268 +S'Shield with Casques and Crests [reverse]' +p167374 +sg25270 +S'Matthes Gebel' +p167375 +sa(dp167376 +g25273 +S'lead' +p167377 +sg25267 +g27 +sg25275 +S'unknown date\n' +p167378 +sg25268 +S'Marx Rechlinger, died 1532, Patrician of Nuremberg' +p167379 +sg25270 +S'Matthes Gebel' +p167380 +sa(dp167381 +g25268 +S'Charles V, 1500-1558, King of Spain 1516, Holy Roman Emperor 1519-1556 [obverse]' +p167382 +sg25270 +S'Matthes Gebel' +p167383 +sg25273 +S'base silver' +p167384 +sg25275 +S'1530' +p167385 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6b4.jpg' +p167386 +sg25267 +g27 +sa(dp167387 +g25268 +S'Inscription in a Wreath [reverse]' +p167388 +sg25270 +S'Matthes Gebel' +p167389 +sg25273 +S'base silver' +p167390 +sg25275 +S'1530' +p167391 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6b3.jpg' +p167392 +sg25267 +g27 +sa(dp167393 +g25273 +S'lead' +p167394 +sg25267 +g27 +sg25275 +S'1535' +p167395 +sg25268 +S'Ludwig X, 1495-1545, Duke of Bavaria 1514 [obverse]' +p167396 +sg25270 +S'Matthes Gebel' +p167397 +sa(dp167398 +g25273 +S'lead' +p167399 +sg25267 +g27 +sg25275 +S'1535' +p167400 +sg25268 +S'Shield with Casques and Crests [reverse]' +p167401 +sg25270 +S'Matthes Gebel' +p167402 +sa(dp167403 +g25273 +S'silver//With ring' +p167404 +sg25267 +g27 +sg25275 +S'1541' +p167405 +sg25268 +S'Wilhelm L\xc3\xb6ffelholz von Kolberg, 1501-1554, Patrician of Nuremberg [obverse]' +p167406 +sg25270 +S'Matthes Gebel' +p167407 +sa(dp167408 +g25273 +S'silver//With ring' +p167409 +sg25267 +g27 +sg25275 +S'1541' +p167410 +sg25268 +S'Shield, Cuirass, Casque, and Crest [reverse]' +p167411 +sg25270 +S'Matthes Gebel' +p167412 +sa(dp167413 +g25268 +S'Hellespontine Sibyl' +p167414 +sg25270 +S'Artist Information (' +p167415 +sg25273 +S'Italian, died 1487' +p167416 +sg25275 +S'(artist after)' +p167417 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c734.jpg' +p167418 +sg25267 +g27 +sa(dp167419 +g25273 +S'bronze//After-cast' +p167420 +sg25267 +g27 +sg25275 +S'1540' +p167421 +sg25268 +S'Emilia of Saxony, 1516-1591, Margravine of Brandenburg-Ansbach [obverse]' +p167422 +sg25270 +S'Master of the Pistorius Medal' +p167423 +sa(dp167424 +g25273 +S'iron casting//Late cast?' +p167425 +sg25267 +g27 +sg25275 +S'1526' +p167426 +sg25268 +S'V\xc3\xa1clav Payer (Wenceslaus Beyer), 1488-1537, State Physician of Bohemia [obverse]' +p167427 +sg25270 +S'Master M.P.' +p167428 +sa(dp167429 +g25273 +S'iron casting//Late cast?' +p167430 +sg25267 +g27 +sg25275 +S'1526' +p167431 +sg25268 +S'Book, Skull, Bones, and Rider in Landscape [reverse]' +p167432 +sg25270 +S'Master M.P.' +p167433 +sa(dp167434 +g25273 +S'pewter//Struck?' +p167435 +sg25267 +g27 +sg25275 +S'1542' +p167436 +sg25268 +S'Charles V, 1500-1558, King of Spain 1516, Holy Roman Emperor 1519-1556 [obverse]' +p167437 +sg25270 +S'Ludwig Neufahrer' +p167438 +sa(dp167439 +g25273 +S'pewter//Struck?' +p167440 +sg25267 +g27 +sg25275 +S'1542' +p167441 +sg25268 +S'Double-headed Crowned Eagle on the Pillars of Hercules [reverse]' +p167442 +sg25270 +S'Ludwig Neufahrer' +p167443 +sa(dp167444 +g25273 +S'silver' +p167445 +sg25267 +g27 +sg25275 +S'1535' +p167446 +sg25268 +S'Johann Friedrich, 1503-1554, Elector of Saxony 1532 [obverse]' +p167447 +sg25270 +S'Hans Reinhart the Elder' +p167448 +sa(dp167449 +g25273 +S'silver' +p167450 +sg25267 +g27 +sg25275 +S'1535' +p167451 +sg25268 +S'Shield with Helms and Crests [reverse]' +p167452 +sg25270 +S'Hans Reinhart the Elder' +p167453 +sa(dp167454 +g25268 +S'Charles V, 1500-1558, King of Spain 1516, Holy Roman Emperor 1519-1556 [obverse]' +p167455 +sg25270 +S'Hans Reinhart the Elder' +p167456 +sg25273 +S'silver//With loop' +p167457 +sg25275 +S'1537' +p167458 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006458.jpg' +p167459 +sg25267 +g27 +sa(dp167460 +g25268 +S'Double-headed Eagle, Charged with Shield [reverse]' +p167461 +sg25270 +S'Hans Reinhart the Elder' +p167462 +sg25273 +S'silver//With loop' +p167463 +sg25275 +S'1537' +p167464 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a000645b.jpg' +p167465 +sg25267 +g27 +sa(dp167466 +g25273 +S'bronze' +p167467 +sg25267 +g27 +sg25275 +S'1547' +p167468 +sg25268 +S'Johann Fichard, 1512-1581, Syndic of Frankfurt am Main [obverse]' +p167469 +sg25270 +S'Hans Bolsterer' +p167470 +sa(dp167471 +g25268 +S'Phrygian Sibyl' +p167472 +sg25270 +S'Artist Information (' +p167473 +sg25273 +S'Italian, died 1487' +p167474 +sg25275 +S'(artist after)' +p167475 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c735.jpg' +p167476 +sg25267 +g27 +sa(dp167477 +g25273 +S'bronze' +p167478 +sg25267 +g27 +sg25275 +S'1547' +p167479 +sg25268 +S'Elisabeth Gr\xc3\xbcnenberger, born 1518, Wife of Johann Fichard 1539 (reverse)' +p167480 +sg25270 +S'Hans Bolsterer' +p167481 +sa(dp167482 +g25268 +S'Hieronymus Paumgartner, 1498-1565, Patrician of Nuremberg [obverse]' +p167483 +sg25270 +S'Joachim Deschler' +p167484 +sg25273 +S'bronze' +p167485 +sg25275 +S'1553' +p167486 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6b5.jpg' +p167487 +sg25267 +g27 +sa(dp167488 +g25268 +S'Arms of Paumgartner [reverse]' +p167489 +sg25270 +S'Joachim Deschler' +p167490 +sg25273 +S'bronze' +p167491 +sg25275 +S'1553' +p167492 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6b6.jpg' +p167493 +sg25267 +g27 +sa(dp167494 +g25273 +S'silver//With ring' +p167495 +sg25267 +g27 +sg25275 +S'1565' +p167496 +sg25268 +S'Margarethe Ganzhorn Balbus, Wife of Johann Balbus [obverse]' +p167497 +sg25270 +S'Joachim Deschler' +p167498 +sa(dp167499 +g25273 +S'silver//With ring' +p167500 +sg25267 +g27 +sg25275 +S'1565' +p167501 +sg25268 +S'Two Shields [reverse]' +p167502 +sg25270 +S'Joachim Deschler' +p167503 +sa(dp167504 +g25273 +S'bronze' +p167505 +sg25267 +g27 +sg25275 +S'unknown date\n' +p167506 +sg25268 +S'Anna Hofmann, died 1594, Second Wife of the Artist [obverse]' +p167507 +sg25270 +S'Jakob Hofmann' +p167508 +sa(dp167509 +g25273 +S'bronze' +p167510 +sg25267 +g27 +sg25275 +S'unknown date\n' +p167511 +sg25268 +S'Venus and Cupids [reverse]' +p167512 +sg25270 +S'Jakob Hofmann' +p167513 +sa(dp167514 +g25273 +S'lead//Cast hollow' +p167515 +sg25267 +g27 +sg25275 +S'1569' +p167516 +sg25268 +S'Jakob Muffel, 1509-1569, Patrician of Nuremberg' +p167517 +sg25270 +S'Valentin Maler' +p167518 +sa(dp167519 +g25273 +S'bronze' +p167520 +sg25267 +g27 +sg25275 +S'1584' +p167521 +sg25268 +S'Matthaus Schyrer, born 1550, Printer [obverse]' +p167522 +sg25270 +S'Valentin Maler' +p167523 +sa(dp167524 +g25273 +S'bronze' +p167525 +sg25267 +g27 +sg25275 +S'1584' +p167526 +sg25268 +S'Fortune with a Veil [reverse]' +p167527 +sg25270 +S'Valentin Maler' +p167528 +sa(dp167529 +g25268 +S'European Sibyl' +p167530 +sg25270 +S'Artist Information (' +p167531 +sg25273 +S'Italian, died 1487' +p167532 +sg25275 +S'(artist after)' +p167533 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c736.jpg' +p167534 +sg25267 +g27 +sa(dp167535 +g25268 +S'Jakob Fugger, 1459-1525, Banker and Financier' +p167536 +sg25270 +S'Valentin Maler' +p167537 +sg25273 +S'lead' +p167538 +sg25275 +S'unknown date\n' +p167539 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6bc.jpg' +p167540 +sg25267 +g27 +sa(dp167541 +g25273 +S'lead' +p167542 +sg25267 +g27 +sg25275 +S'1592' +p167543 +sg25268 +S'Hans Schel, 1518-1592, Patrician of Nuremberg [obverse]' +p167544 +sg25270 +S'Matth\xc3\xa4us Carl' +p167545 +sa(dp167546 +g25273 +S'lead' +p167547 +sg25267 +g27 +sg25275 +S'1592' +p167548 +sg25268 +S'Arms and Inscription [reverse]' +p167549 +sg25270 +S'Matth\xc3\xa4us Carl' +p167550 +sa(dp167551 +g25273 +S'silver' +p167552 +sg25267 +g27 +sg25275 +S'1591' +p167553 +sg25268 +S'Julius Geuder, 1530-1594, Patrician of Nuremberg' +p167554 +sg25270 +S'Johann Philipp von der P\xc3\xbctt' +p167555 +sa(dp167556 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p167557 +sg25268 +S'Maximilian I, 1459-1519, Archduke of Austria, Holy Roman Emperor 1494 [obverse]' +p167558 +sg25270 +S'Artist Information (' +p167559 +sa(dp167560 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p167561 +sg25268 +S'Maria of Burgundy, 1547-1482, First Wife of Maximilian I 1477 [reverse]' +p167562 +sg25270 +S'Artist Information (' +p167563 +sa(dp167564 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p167565 +sg25268 +S'John Huss Centenary Medal [obverse]' +p167566 +sg25270 +S'Artist Information (' +p167567 +sa(dp167568 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p167569 +sg25268 +S'John Huss Centenary Medal [reverse]' +p167570 +sg25270 +S'Artist Information (' +p167571 +sa(dp167572 +g25273 +S'overall (diameter): 4.29 cm (1 11/16 in.)\r\ngross weight: 25.96 gr (0.057 lb.)\r\naxis:3:00' +p167573 +sg25267 +g27 +sg25275 +S'\nsilver//Struck' +p167574 +sg25268 +S'Friedrich III the Wise, 1463-1525, Duke and Elector of Saxony 1486 [obverse]' +p167575 +sg25270 +S'German 16th Century' +p167576 +sa(dp167577 +g25273 +S'overall (diameter): 4.29 cm (1 11/16 in.)\r\ngross weight: 25.96 gr (0.057 lb.)\r\naxis:3:00' +p167578 +sg25267 +g27 +sg25275 +S'\nsilver//Struck' +p167579 +sg25268 +S'Cross within a Circle [reverse]' +p167580 +sg25270 +S'German 16th Century' +p167581 +sa(dp167582 +g25268 +S'Arabesque with Knight' +p167583 +sg25270 +S'Italian' +p167584 +sg25273 +S'Rosenwald Collection' +p167585 +sg25275 +S'\nniello print' +p167586 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c719.jpg' +p167587 +sg25267 +g27 +sa(dp167588 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p167589 +sg25268 +S'Ferdinand I, 1503-1564, Archduke of Austria 1519, Emperor 1556 [obverse]' +p167590 +sg25270 +S'Artist Information (' +p167591 +sa(dp167592 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p167593 +sg25268 +S'Anne of Hungary, died 1547, Wife of Ferdinand I of Austria 1521 [reverse]' +p167594 +sg25270 +S'Artist Information (' +p167595 +sa(dp167596 +g25273 +S'overall (diameter): 4.18 cm (1 5/8 in.)\r\ngross weight: 14.4 gr (0.032 lb.)\r\naxis: 12:00' +p167597 +sg25267 +g27 +sg25275 +S'\nsilver//Struck' +p167598 +sg25268 +S'Louis II, 1506-1526, King of Hungary and Bohemia 1516 [obverse]' +p167599 +sg25270 +S'German 16th Century' +p167600 +sa(dp167601 +g25273 +S'overall (diameter): 4.18 cm (1 5/8 in.)\r\ngross weight: 14.4 gr (0.032 lb.)\r\naxis: 12:00' +p167602 +sg25267 +g27 +sg25275 +S'\nsilver//Struck' +p167603 +sg25268 +S'Maria of Austria, 1505-1558, Wife of Louis II, King of Hungary and Bohemia, 1522 [reverse]' +p167604 +sg25270 +S'German 16th Century' +p167605 +sa(dp167606 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p167607 +sg25268 +S'Ferdinand I, 1503-1564, Archduke of Austria 1519, Emperor 1556 [obverse]' +p167608 +sg25270 +S'Artist Information (' +p167609 +sa(dp167610 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p167611 +sg25268 +S'Eagle Displayed, Charged with Shield [reverse]' +p167612 +sg25270 +S'Artist Information (' +p167613 +sa(dp167614 +g25273 +S'silver//Struck' +p167615 +sg25267 +g27 +sg25275 +S'c. 1500/1599' +p167616 +sg25268 +S'Luna [obverse]' +p167617 +sg25270 +S'Concz Welcz' +p167618 +sa(dp167619 +g25273 +S'silver//Struck' +p167620 +sg25267 +g27 +sg25275 +S'c. 1500/1599' +p167621 +sg25268 +S'Diana [reverse]' +p167622 +sg25270 +S'Concz Welcz' +p167623 +sa(dp167624 +g25273 +S'silver' +p167625 +sg25267 +g27 +sg25275 +S'unknown date\n' +p167626 +sg25268 +S'Willibald Pirkheimer, 1470-1530, and Albrecht D\xc3\xbcrer, 1471-1528' +p167627 +sg25270 +S'Georg Holdermann' +p167628 +sa(dp167629 +g25273 +S'silver' +p167630 +sg25267 +g27 +sg25275 +S'unknown date\n' +p167631 +sg25268 +S'Frederick III, 1415-1493, King of Germany 1440, Holy Roman Emperor 1452' +p167632 +sg25270 +S'Georg Schweigger' +p167633 +sa(dp167634 +g25268 +S'Presentation of Christ' +p167635 +sg25270 +S'Lorenzo Costa' +p167636 +sg25273 +S'engraving' +p167637 +sg25275 +S'c. 1502' +p167638 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6cd.jpg' +p167639 +sg25267 +g27 +sa(dp167640 +g25273 +S'bronze//Cast hollow' +p167641 +sg25267 +g27 +sg25275 +S'unknown date\n' +p167642 +sg25268 +S'Maximilian I, 1459-1519, Archduke of Austria, Holy Roman Emperor 1494' +p167643 +sg25270 +S'Georg Schweigger' +p167644 +sa(dp167645 +g25273 +S'lead' +p167646 +sg25267 +g27 +sg25275 +S'1642' +p167647 +sg25268 +S'Sigmund Gabriel Holtzschuher, 1575-1652, Citizen of Nuremberg' +p167648 +sg25270 +S'Johann Bartholom\xc3\xa4us Braun' +p167649 +sa(dp167650 +g25273 +S'bronze' +p167651 +sg25267 +g27 +sg25275 +S'1645' +p167652 +sg25268 +S'Cristoph F\xc3\xbcrer von Haimendorf, 1578-1653, Patrician of Nuremberg [obverse]' +p167653 +sg25270 +S'Johann Bartholom\xc3\xa4us Braun' +p167654 +sa(dp167655 +g25273 +S'bronze' +p167656 +sg25267 +g27 +sg25275 +S'1645' +p167657 +sg25268 +S'Shields of F\xc3\xbcrer von Haimendorf and His Two Wives [reverse]' +p167658 +sg25270 +S'Johann Bartholom\xc3\xa4us Braun' +p167659 +sa(dp167660 +g25273 +S'(medalist)' +p167661 +sg25267 +g27 +sg25275 +S'\n' +p167662 +sg25268 +S'Sebald Schreyer, 1446-1520, Humanist' +p167663 +sg25270 +S'Artist Information (' +p167664 +sa(dp167665 +g25268 +S'Adrian VI (Adrian Dedal, 1459-1523), Pope 1522' +p167666 +sg25270 +S'Netherlandish 16th Century' +p167667 +sg25273 +S'overall (diameter): 8.76 cm (3 7/16 in.)\r\ngross weight: 177.02 gr (0.39 lb.)' +p167668 +sg25275 +S'\nbronze' +p167669 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dbb.jpg' +p167670 +sg25267 +g27 +sa(dp167671 +g25273 +S'bronze' +p167672 +sg25267 +g27 +sg25275 +S'1574' +p167673 +sg25268 +S'Fr\xc3\xa9d\xc3\xa9ric Perrenot, 1536-1602, Lord of Champagney, Governor of Antwerp 1571 [obverse]' +p167674 +sg25270 +S'Jacob Zagar' +p167675 +sa(dp167676 +g25273 +S'bronze' +p167677 +sg25267 +g27 +sg25275 +S'1574' +p167678 +sg25268 +S'Ship, and Putto Holding Scales [reverse]' +p167679 +sg25270 +S'Jacob Zagar' +p167680 +sa(dp167681 +g25273 +S'bronze//Cast hollow' +p167682 +sg25267 +g27 +sg25275 +S'c. 1560' +p167683 +sg25268 +S'Antoine Perrenot, 1517-1586, Bishop of Arras 1540, Cardinal Granvelle 1561' +p167684 +sg25270 +S'Jacques Jonghelinck' +p167685 +sa(dp167686 +g25273 +S'lead' +p167687 +sg25267 +g27 +sg25275 +S'1556' +p167688 +sg25268 +S'Viglius van Aytta of Zuichem, 1507-1577, Lawyer and Humanist' +p167689 +sg25270 +S'Jacques Jonghelinck' +p167690 +sa(dp167691 +g25268 +S'Two Peasants' +p167692 +sg25270 +S'Artist Information (' +p167693 +sg25273 +S'Italian, c. 1431 - 1506' +p167694 +sg25275 +S'(related artist)' +p167695 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6cb.jpg' +p167696 +sg25267 +g27 +sa(dp167697 +g25273 +S'bronze' +p167698 +sg25267 +g27 +sg25275 +S'1568' +p167699 +sg25268 +S'Viglius van Aytta of Zuichem, 1507-1577, Lawyer and Humanist [obverse]' +p167700 +sg25270 +S'Jacques Jonghelinck' +p167701 +sa(dp167702 +g25273 +S'bronze' +p167703 +sg25267 +g27 +sg25275 +S'1568' +p167704 +sg25268 +S'Candle, Hourglass, and Book on a Table [reverse]' +p167705 +sg25270 +S'Jacques Jonghelinck' +p167706 +sa(dp167707 +g25273 +S'lead' +p167708 +sg25267 +g27 +sg25275 +S'unknown date\n' +p167709 +sg25268 +S'Viglius van Aytta of Zuichem, 1507-1577, Lawyer and Humanist [obverse]' +p167710 +sg25270 +S'Jacques Jonghelinck' +p167711 +sa(dp167712 +g25273 +S'lead' +p167713 +sg25267 +g27 +sg25275 +S'unknown date\n' +p167714 +sg25268 +S'Table [reverse]' +p167715 +sg25270 +S'Jacques Jonghelinck' +p167716 +sa(dp167717 +g25273 +S'silver' +p167718 +sg25267 +g27 +sg25275 +S'unknown date\n' +p167719 +sg25268 +S'Antoine Perrenot, Cardinal Granvelle, 1517-1586, Bishop of Arras 1540, Cardinal 1561 [obverse]' +p167720 +sg25270 +S'Giovanni Vincenzo Melone' +p167721 +sa(dp167722 +g25273 +S'silver' +p167723 +sg25267 +g27 +sg25275 +S'unknown date\n' +p167724 +sg25268 +S'Ship at Sea [reverse]' +p167725 +sg25270 +S'Giovanni Vincenzo Melone' +p167726 +sa(dp167727 +g25273 +S'bronze' +p167728 +sg25267 +g27 +sg25275 +S'c. 1562' +p167729 +sg25268 +S'Sigismund II Augustus, 1520-1572, King of Poland 1548 [obverse]' +p167730 +sg25270 +S'Steven van Herwijck' +p167731 +sa(dp167732 +g25273 +S'bronze' +p167733 +sg25267 +g27 +sg25275 +S'c. 1562' +p167734 +sg25268 +S'Sigismund II Augustus on Horseback [reverse]' +p167735 +sg25270 +S'Steven van Herwijck' +p167736 +sa(dp167737 +g25273 +S'bronze' +p167738 +sg25267 +g27 +sg25275 +S'unknown date\n' +p167739 +sg25268 +S'Antonis Mor, c. 1517/1521-1576/1577, Painter' +p167740 +sg25270 +S'Steven van Herwijck' +p167741 +sa(dp167742 +g25273 +S'silver//With loop//Made from two separate pieces' +p167743 +sg25267 +g27 +sg25275 +S'1577' +p167744 +sg25268 +S'Willem I, 1533-1584, Prince of Orange and Nassau [obverse]' +p167745 +sg25270 +S'Conrad Bloc' +p167746 +sa(dp167747 +g25268 +S'"El Gran Capitanio"' +p167748 +sg25270 +S'Italian 16th Century' +p167749 +sg25273 +S'sheet: 25.6 x 21.6 cm (10 1/16 x 8 1/2 in.)' +p167750 +sg25275 +S'\nengraving' +p167751 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c793.jpg' +p167752 +sg25267 +g27 +sa(dp167753 +g25273 +S'silver//With loop//Made from two separate pieces' +p167754 +sg25267 +g27 +sg25275 +S'1577' +p167755 +sg25268 +S'Charlotte de Bourbon, 1548-1581, Third Wife of Willem I, Prince of Orange and Nassau [reverse]' +p167756 +sg25270 +S'Conrad Bloc' +p167757 +sa(dp167758 +g25273 +S'bronze' +p167759 +sg25267 +g27 +sg25275 +S'c. 1580' +p167760 +sg25268 +S'Fernando Alvarez de Toledo, 1507-1582, 3rd Duke of Alba [obverse]' +p167761 +sg25270 +S'Giuliano Giannini' +p167762 +sa(dp167763 +g25273 +S'bronze' +p167764 +sg25267 +g27 +sg25275 +S'c. 1580' +p167765 +sg25268 +S'Pallas in a Car Drawn by Two Owls [reverse]' +p167766 +sg25270 +S'Giuliano Giannini' +p167767 +sa(dp167768 +g25273 +S'bronze' +p167769 +sg25267 +g27 +sg25275 +S'1577 or after' +p167770 +sg25268 +S'Sir Richard Shelley, c. 1513-c. 1589, Prior of England in Malta and Turcopolier [obverse]' +p167771 +sg25270 +S'Bernardo Rantwyck' +p167772 +sa(dp167773 +g25273 +S'bronze' +p167774 +sg25267 +g27 +sg25275 +S'1577 or after' +p167775 +sg25268 +S'Griffin, Ducally Gorged, in a Landscape [reverse]' +p167776 +sg25270 +S'Bernardo Rantwyck' +p167777 +sa(dp167778 +g25273 +S'overall (diameter): 2.83 cm (1 1/8 in.)\r\ngross weight: 4.54 gr (0.01 lb.)\r\naxis: 10:00' +p167779 +sg25267 +g27 +sg25275 +S'\nsilver half-testoon//Struck' +p167780 +sg25268 +S'Filiberto II le Beau (the Fair), 1480-1504, 8th Duke of Savoy 1497 [obverse]' +p167781 +sg25270 +S'Turin 16th Century' +p167782 +sa(dp167783 +g25273 +S'overall (diameter): 2.83 cm (1 1/8 in.)\r\ngross weight: 4.54 gr (0.01 lb.)\r\naxis: 10:00' +p167784 +sg25267 +g27 +sg25275 +S'\nsilver half-testoon//Struck' +p167785 +sg25268 +S'Shield of Savoy [reverse]' +p167786 +sg25270 +S'Turin 16th Century' +p167787 +sa(dp167788 +g25273 +S'overall (diameter): 3.02 cm (1 3/16 in.)\r\ngross weight: 9.26 gr (0.02 lb.)\r\naxis: 9:00' +p167789 +sg25267 +g27 +sg25275 +S'\nsilver testoon//Struck' +p167790 +sg25268 +S'Carlo II, 1486-1553, 9th Duke of Savoy 1504 [obverse]' +p167791 +sg25270 +S'Turin 16th Century' +p167792 +sa(dp167793 +g25273 +S'overall (diameter): 3.02 cm (1 3/16 in.)\r\ngross weight: 9.26 gr (0.02 lb.)\r\naxis: 9:00' +p167794 +sg25267 +g27 +sg25275 +S'\nsilver testoon//Struck' +p167795 +sg25268 +S'Crowned Shield [reverse]' +p167796 +sg25270 +S'Turin 16th Century' +p167797 +sa(dp167798 +g25273 +S'overall (diameter): 2.49 cm (1 in.)\r\ngross weight: 3.47 gr (0.008 lb.)\r\naxis: 9:00' +p167799 +sg25267 +g27 +sg25275 +S'\ngold ducat//Struck' +p167800 +sg25268 +S'Lodovico II, 1438-1504, Marquess of Saluzzo 1475 [obverse]' +p167801 +sg25270 +S'Carmagnola 15th Century' +p167802 +sa(dp167803 +g25268 +S'Two Allegorical Figures (Roma and Liberty?)' +p167804 +sg25270 +S'Master IRs' +p167805 +sg25273 +S'engraving' +p167806 +sg25275 +S'unknown date\n' +p167807 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c749.jpg' +p167808 +sg25267 +g27 +sa(dp167809 +g25273 +S'overall (diameter): 2.49 cm (1 in.)\r\ngross weight: 3.47 gr (0.008 lb.)\r\naxis: 9:00' +p167810 +sg25267 +g27 +sg25275 +S'\ngold ducat//Struck' +p167811 +sg25268 +S'Crowned Shield, Eagle Crest [reverse]' +p167812 +sg25270 +S'Carmagnola 15th Century' +p167813 +sa(dp167814 +g25273 +S'overall (diameter): 2.56 cm (1 in.)\r\ngross weight: 7.08 gr (0.016 lb.)\r\naxis: 3:00' +p167815 +sg25267 +g27 +sg25275 +S'\nsilver testoon//Struck' +p167816 +sg25268 +S'Francesco II Gonzaga, 1466-1519, 4th Marquess of Mantua 1484 [obverse]' +p167817 +sg25270 +S'Mantuan 16th Century' +p167818 +sa(dp167819 +g25273 +S'overall (diameter): 2.56 cm (1 in.)\r\ngross weight: 7.08 gr (0.016 lb.)\r\naxis: 3:00' +p167820 +sg25267 +g27 +sg25275 +S'\nsilver testoon//Struck' +p167821 +sg25268 +S'Pyxis of the Blood of Christ [reverse]' +p167822 +sg25270 +S'Mantuan 16th Century' +p167823 +sa(dp167824 +g25273 +S'overall (diameter): 2.56 cm (1 in.)\r\ngross weight: 3.6 gr (0.008 lb.)\r\naxis: 12:00' +p167825 +sg25267 +g27 +sg25275 +S'\nsilver half-testoon//Struck' +p167826 +sg25268 +S'Francesco II Gonzaga, 1466-1519, 4th Marquess of Mantua 1484 [obverse]' +p167827 +sg25270 +S'Mantuan 16th Century' +p167828 +sa(dp167829 +g25273 +S'overall (diameter): 2.56 cm (1 in.)\r\ngross weight: 3.6 gr (0.008 lb.)\r\naxis: 12:00' +p167830 +sg25267 +g27 +sg25275 +S'\nsilver half-testoon//Struck' +p167831 +sg25268 +S'Pyxis of the Blood of Christ [reverse]' +p167832 +sg25270 +S'Mantuan 16th Century' +p167833 +sa(dp167834 +g25273 +S'overall (diameter): 3.04 cm (1 3/16 in.)\r\ngross weight: 6.06 gr (0.013 lb.)\r\naxis: 2:00' +p167835 +sg25267 +g27 +sg25275 +S'\nsilver testoon//Struck' +p167836 +sg25268 +S'Francesco III Gonzaga, 1533-1550, 2nd Duke of Mantua [obverse]' +p167837 +sg25270 +S'Mantuan 16th Century' +p167838 +sa(dp167839 +g25273 +S'overall (diameter): 3.04 cm (1 3/16 in.)\r\ngross weight: 6.06 gr (0.013 lb.)\r\naxis: 2:00' +p167840 +sg25267 +g27 +sg25275 +S'\nsilver testoon//Struck' +p167841 +sg25268 +S'Tobias Guided by the Angel [reverse]' +p167842 +sg25270 +S'Mantuan 16th Century' +p167843 +sa(dp167844 +g25273 +S'overall (diameter): 2.26 cm (7/8 in.)\r\ngross weight: 3.49 gr (0.008 lb.)\r\naxis: 5:00' +p167845 +sg25267 +g27 +sg25275 +S'\ngold ducat//Struck' +p167846 +sg25268 +S'Francesco I Sforza, 1401-1466, 4th Duke of Milan 1450 [obverse]' +p167847 +sg25270 +S'Milanese 16th Century' +p167848 +sa(dp167849 +g25273 +S'overall (diameter): 2.26 cm (7/8 in.)\r\ngross weight: 3.49 gr (0.008 lb.)\r\naxis: 5:00' +p167850 +sg25267 +g27 +sg25275 +S'\ngold ducat//Struck' +p167851 +sg25268 +S'Francesco in Armor on Horseback, Wielding Sword [reverse]' +p167852 +sg25270 +S'Milanese 16th Century' +p167853 +sa(dp167854 +g25273 +S'overall (diameter): 2.94 cm (1 3/16 in.)\r\ngross weight: 9.57 gr (0.021 lb.)\r\naxis: 1:00' +p167855 +sg25267 +g27 +sg25275 +S'\nsilver testoon//Struck' +p167856 +sg25268 +S'Galeazzo Maria Sforza, 1444-1476, 5th Duke of Milan 1466 [obverse]' +p167857 +sg25270 +S'Milanese 16th Century' +p167858 +sa(dp167859 +g25268 +S'Portrait of Petrarch' +p167860 +sg25270 +S'Italian 16th Century' +p167861 +sg25273 +S'sheet: 17.9 x 12.8 cm (7 1/16 x 5 1/16 in.)' +p167862 +sg25275 +S'\nengraving' +p167863 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c87c.jpg' +p167864 +sg25267 +g27 +sa(dp167865 +g25273 +S'overall (diameter): 2.94 cm (1 3/16 in.)\r\ngross weight: 9.57 gr (0.021 lb.)\r\naxis: 1:00' +p167866 +sg25267 +g27 +sg25275 +S'\nsilver testoon//Struck' +p167867 +sg25268 +S'Crowned Casque with Dragon Crest [reverse]' +p167868 +sg25270 +S'Milanese 16th Century' +p167869 +sa(dp167870 +g25273 +S'overall (diameter): 2.88 cm (1 1/8 in.)\r\ngross weight: 6.93 gr (0.015 lb.)\r\naxis: 1:00' +p167871 +sg25267 +g27 +sg25275 +S'\ngold double testoon//Struck' +p167872 +sg25268 +S'Giangaleazzo Maria Sforza, 1469-1494, 6th Duke of Milan 1476 [obverse]' +p167873 +sg25270 +S'Milanese 16th Century' +p167874 +sa(dp167875 +g25273 +S'overall (diameter): 2.88 cm (1 1/8 in.)\r\ngross weight: 6.93 gr (0.015 lb.)\r\naxis: 1:00' +p167876 +sg25267 +g27 +sg25275 +S'\ngold double testoon//Struck' +p167877 +sg25268 +S'Shield with Two Crests [reverse]' +p167878 +sg25270 +S'Milanese 16th Century' +p167879 +sa(dp167880 +g25273 +S'overall (diameter): 2.93 cm (1 1/8 in.)\r\ngross weight: 9.54 gr (0.021 lb.)\r\naxis: 8:00' +p167881 +sg25267 +g27 +sg25275 +S'\nsilver testoon//Struck' +p167882 +sg25268 +S'Giangaleazzo Maria Sforza, 1469-1494, 6th Duke of Milan 1476 [obverse]' +p167883 +sg25270 +S'Milanese 16th Century' +p167884 +sa(dp167885 +g25273 +S'overall (diameter): 2.93 cm (1 1/8 in.)\r\ngross weight: 9.54 gr (0.021 lb.)\r\naxis: 8:00' +p167886 +sg25267 +g27 +sg25275 +S'\nsilver testoon//Struck' +p167887 +sg25268 +S'Shield with Two Crests [reverse]' +p167888 +sg25270 +S'Milanese 16th Century' +p167889 +sa(dp167890 +g25273 +S'overall (diameter): 2.92 cm (1 1/8 in.)\r\ngross weight: 9.65 gr (0.021 lb.)\r\naxis: 11:00' +p167891 +sg25267 +g27 +sg25275 +S'\nsilver testoon//Struck' +p167892 +sg25268 +S'Giangaleazzo Maria Sforza, 1469-1494, 6th Duke of Milan 1476 [obverse]' +p167893 +sg25270 +S'Milanese 16th Century' +p167894 +sa(dp167895 +g25273 +S'overall (diameter): 2.92 cm (1 1/8 in.)\r\ngross weight: 9.65 gr (0.021 lb.)\r\naxis: 11:00' +p167896 +sg25267 +g27 +sg25275 +S'\nsilver testoon//Struck' +p167897 +sg25268 +S'Shield with Two Crests [reverse]' +p167898 +sg25270 +S'Milanese 16th Century' +p167899 +sa(dp167900 +g25273 +S'overall (diameter): 2.9 cm (1 1/8 in.)\r\ngross weight: 9.67 gr (0.021 lb.)\r\naxis: 6:00' +p167901 +sg25267 +g27 +sg25275 +S'\nsilver testoon //Struck' +p167902 +sg25268 +S'Giangaleazzo Maria Sforza, 1469-1494, 6th Duke of Milan 1476 [obverse]' +p167903 +sg25270 +S'Milanese 16th Century' +p167904 +sa(dp167905 +g25273 +S'overall (diameter): 2.9 cm (1 1/8 in.)\r\ngross weight: 9.67 gr (0.021 lb.)\r\naxis: 6:00' +p167906 +sg25267 +g27 +sg25275 +S'\nsilver testoon//Struck' +p167907 +sg25268 +S'Lodovico Maria Sforza, called il Moro, 1451-1508, Regent 1480-1494 [reverse]' +p167908 +sg25270 +S'Milanese 16th Century' +p167909 +sa(dp167910 +g25268 +S'Lodovico Maria Sforza, called il Moro, 1451-1508, 7th Duke of Milan 1494-1500 [obverse]' +p167911 +sg25270 +S'Milanese 15th Century' +p167912 +sg25273 +S'overall (diameter): 2.75 cm (1 1/16 in.)\r\ngross weight: 9.68 gr (0.021 lb.)\r\naxis: 10:00' +p167913 +sg25275 +S'\nsilver testoon//Struck' +p167914 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdd3.jpg' +p167915 +sg25267 +g27 +sa(dp167916 +g25268 +S'Saint Jerome in His Study' +p167917 +sg25270 +S'Giovanni Antonio da Brescia' +p167918 +sg25273 +S'engraving' +p167919 +sg25275 +S'c. 1510' +p167920 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c82d.jpg' +p167921 +sg25267 +g27 +sa(dp167922 +g25268 +S'Crowned Shield [reverse]' +p167923 +sg25270 +S'Milanese 15th Century' +p167924 +sg25273 +S'overall (diameter): 2.75 cm (1 1/16 in.)\r\ngross weight: 9.68 gr (0.021 lb.)\r\naxis: 10:00' +p167925 +sg25275 +S'\nsilver testoon//Struck' +p167926 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdd2.jpg' +p167927 +sg25267 +g27 +sa(dp167928 +g25273 +S'overall (diameter): 2.24 cm (7/8 in.)\r\ngross weight: 10.54 gr (0.023 lb.)\r\naxis: 9:00' +p167929 +sg25267 +g27 +sg25275 +S'\ncopper//Proof for a testoon' +p167930 +sg25268 +S'Lodovico Maria Sforza, called il Moro, 1451-1508, 7th Duke of Milan 1494-1500 [obverse]' +p167931 +sg25270 +S'Milanese 15th Century' +p167932 +sa(dp167933 +g25273 +S'overall (diameter): 2.24 cm (7/8 in.)\r\ngross weight: 10.54 gr (0.023 lb.)\r\naxis: 9:00' +p167934 +sg25267 +g27 +sg25275 +S'\ncopper//Proof for a testoon' +p167935 +sg25268 +S"Beatrice d'Este, 1475-1497, Wife of Lodovico Maria Sforza 1491 [reverse]" +p167936 +sg25270 +S'Milanese 15th Century' +p167937 +sa(dp167938 +g25273 +S'overall (diameter): 3 cm (1 3/16 in.)\r\ngross weight: 9.61 gr (0.021 lb.)\r\naxis: 8:00' +p167939 +sg25267 +g27 +sg25275 +S'\nsilver testoon//Struck' +p167940 +sg25268 +S'Louis XII, 1462-1515, King of France 1498, as Duke of Milan 1500-1513 [obverse]' +p167941 +sg25270 +S'Milanese 16th Century' +p167942 +sa(dp167943 +g25273 +S'overall (diameter): 3 cm (1 3/16 in.)\r\ngross weight: 9.61 gr (0.021 lb.)\r\naxis: 8:00' +p167944 +sg25267 +g27 +sg25275 +S'\nsilver testoon//Struck' +p167945 +sg25268 +S'Saint Ambrose on Horseback, Wielding a Scourge [reverse]' +p167946 +sg25270 +S'Milanese 16th Century' +p167947 +sa(dp167948 +g25273 +S'overall (diameter): 2.46 cm (15/16 in.)\r\ngross weight: 3.44 gr (0.008 lb.)\r\naxis: 7:00' +p167949 +sg25267 +g27 +sg25275 +S'\ngold ducat//Struck' +p167950 +sg25268 +S"Ercole I d'Este, 1431-1505, 2nd Duke of Ferrara, Modena, and Reggio 1471 [obverse]" +p167951 +sg25270 +S'Ferrarese 15th Century' +p167952 +sa(dp167953 +g25273 +S'overall (diameter): 2.46 cm (15/16 in.)\r\ngross weight: 3.44 gr (0.008 lb.)\r\naxis: 7:00' +p167954 +sg25267 +g27 +sg25275 +S'\ngold ducat//Struck' +p167955 +sg25268 +S'Christ Rising from the Tomb Holding a Banner [reverse]' +p167956 +sg25270 +S'Ferrarese 15th Century' +p167957 +sa(dp167958 +g25273 +S'overall (diameter): 2.87 cm (1 1/8 in.)\r\ngross weight: 15.85 gr (0.035 lb.)\r\naxis: 4:00' +p167959 +sg25267 +g27 +sg25275 +S'\ncopper//Proof for a testoon' +p167960 +sg25268 +S"Ercole I d'Este, 1431-1505, 2nd Duke of Ferrara, Modena, and Reggio 1471 [obverse]" +p167961 +sg25270 +S'Ferrarese 15th Century' +p167962 +sa(dp167963 +g25273 +S'overall (diameter): 2.87 cm (1 1/8 in.)\r\ngross weight: 15.85 gr (0.035 lb.)\r\naxis: 4:00' +p167964 +sg25267 +g27 +sg25275 +S'\ncopper//Proof for a testoon' +p167965 +sg25268 +S'Nude Man on Horseback [reverse]' +p167966 +sg25270 +S'Ferrarese 15th Century' +p167967 +sa(dp167968 +g25268 +S"Alfonso I d'Este, 1476-1534, 3rd Duke of Ferrara, Modena and Reggio 1505 [obverse]" +p167969 +sg25270 +S'Ferrarese 16th Century' +p167970 +sg25273 +S'overall (diameter): 2.94 cm (1 3/16 in.)\r\ngross weight: 8.23 gr (0.018 lb.)\r\naxis: 11:00' +p167971 +sg25275 +S'\ncast of a silver testoon' +p167972 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006452.jpg' +p167973 +sg25267 +g27 +sa(dp167974 +g25268 +S'Saint Jerome in Penitence, with Two Ships in a Harbor' +p167975 +sg25270 +S'Italian 15th Century' +p167976 +sg25273 +S'sheet: 20.1 x 28 cm (7 15/16 x 11 in.)' +p167977 +sg25275 +S'\nengraving [restrike, probably late 18th century impression]' +p167978 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c709.jpg' +p167979 +sg25267 +g27 +sa(dp167980 +g25273 +S'overall (diameter): 2.94 cm (1 3/16 in.)\r\ngross weight: 8.23 gr (0.018 lb.)\r\naxis: 11:00' +p167981 +sg25267 +g27 +sg25275 +S'\ncast of a silver testoon' +p167982 +sg25268 +S"Helmeted Nude Figure Seated, Holding a Lion's Head from which Issue Bees [reverse]" +p167983 +sg25270 +S'Ferrarese 16th Century' +p167984 +sa(dp167985 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p167986 +sg25268 +S'Giovanni II Bentivoglio, 1443-1508, Lord of Bologna 1463-1506 [obverse]' +p167987 +sg25270 +S'Artist Information (' +p167988 +sa(dp167989 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(sculptor)' +p167990 +sg25268 +S'Shield Surmounted by an Eagle [reverse]' +p167991 +sg25270 +S'Artist Information (' +p167992 +sa(dp167993 +g25273 +S'overall (diameter): 2.87 cm (1 1/8 in.)\r\ngross weight: 4.38 gr (0.01 lb.)\r\naxis: 5:00' +p167994 +sg25267 +g27 +sg25275 +S'\nsilver giulio//Struck' +p167995 +sg25268 +S'Julius II (Giuliano della Rovere, 1443-1513), Pope 1503 [obverse]' +p167996 +sg25270 +S'Bolognese 16th Century' +p167997 +sa(dp167998 +g25273 +S'overall (diameter): 2.87 cm (1 1/8 in.)\r\ngross weight: 4.38 gr (0.01 lb.)\r\naxis: 5:00' +p167999 +sg25267 +g27 +sg25275 +S'\nsilver giulio//Struck' +p168000 +sg25268 +S'Saint Petronius Enthroned above Arms of Cardinal Alidosi [reverse]' +p168001 +sg25270 +S'Bolognese 16th Century' +p168002 +sa(dp168003 +g25273 +S'overall (diameter): 2.75 cm (1 1/16 in.)\r\ngross weight: 3.76 gr (0.008 lb.)\r\naxis: 12:00' +p168004 +sg25267 +g27 +sg25275 +S'\nsilver bianco//Struck' +p168005 +sg25268 +S"Leo X (Giovanni de' Medici, 1475-1521), Pope 1513 [obverse]" +p168006 +sg25270 +S'Bolognese 16th Century' +p168007 +sa(dp168008 +g25273 +S'overall (diameter): 2.75 cm (1 1/16 in.)\r\ngross weight: 3.76 gr (0.008 lb.)\r\naxis: 12:00' +p168009 +sg25267 +g27 +sg25275 +S'\nsilver bianco//Struck' +p168010 +sg25268 +S'Rampant Lion Holding a Banner [reverse]' +p168011 +sg25270 +S'Bolognese 16th Century' +p168012 +sa(dp168013 +g25273 +S'overall (diameter): 1.94 cm (3/4 in.)\r\ngross weight: 1.67 gr (0.004 lb.)\r\naxis: 1:00' +p168014 +sg25267 +g27 +sg25275 +S'\ncopper denaro//Struck' +p168015 +sg25268 +S'Giovanni Sforza, 1466-1510, Lord of Pesaro [obverse]' +p168016 +sg25270 +S'Pesarese 15th Century' +p168017 +sa(dp168018 +g25273 +S'overall (diameter): 1.94 cm (3/4 in.)\r\ngross weight: 1.67 gr (0.004 lb.)\r\naxis: 1:00' +p168019 +sg25267 +g27 +sg25275 +S'\ncopper denaro//Struck' +p168020 +sg25268 +S'Inscription [reverse]' +p168021 +sg25270 +S'Pesarese 15th Century' +p168022 +sa(dp168023 +g25268 +S"Alessandro de' Medici, 1512-1537, 1st Duke of Florence 1523 [obverse]" +p168024 +sg25270 +S'Benvenuto Cellini' +p168025 +sg25273 +S'silver testoon//Struck' +p168026 +sg25275 +S'1500-1571' +p168027 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006451.jpg' +p168028 +sg25267 +g27 +sa(dp168029 +g25268 +S'Saint Jerome in Penitence' +p168030 +sg25270 +S'Italian 16th Century' +p168031 +sg25273 +S'sheet (trimmed to plate mark): 21.4 x 17 cm (8 7/16 x 6 11/16 in.)' +p168032 +sg25275 +S'\nengraving' +p168033 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c878.jpg' +p168034 +sg25267 +g27 +sa(dp168035 +g25273 +S'silver testoon//Struck' +p168036 +sg25267 +g27 +sg25275 +S'1500/1571' +p168037 +sg25268 +S'Saint Cosmas and Saint Damian' +p168038 +sg25270 +S'Benvenuto Cellini' +p168039 +sa(dp168040 +g25273 +S'overall (diameter): 2.55 cm (1 in.)\r\ngross weight: 3.59 gr (0.008 lb.)\r\naxis: 10:00' +p168041 +sg25267 +g27 +sg25275 +S'\nsilver grosso//Struck' +p168042 +sg25268 +S'Sixtus IV (Francesco della Rovere, 1414-1484), Pope 1471 [obverse]' +p168043 +sg25270 +S'Roman 15th Century' +p168044 +sa(dp168045 +g25273 +S'overall (diameter): 2.55 cm (1 in.)\r\ngross weight: 3.59 gr (0.008 lb.)\r\naxis: 10:00' +p168046 +sg25267 +g27 +sg25275 +S'\nsilver grosso//Struck' +p168047 +sg25268 +S'Della Rovere Shield, Crossed Keys, and Tiara [reverse]' +p168048 +sg25270 +S'Roman 15th Century' +p168049 +sa(dp168050 +g25273 +S'overall (diameter): 2.7 cm (1 1/16 in.)\r\ngross weight: 3.9 gr (0.009 lb.)\r\naxis: 9:00' +p168051 +sg25267 +g27 +sg25275 +S'\nsilver coronato' +p168052 +sg25268 +S'Ferdinand (Ferrante) I of Aragon, 1423-1494, King of Naples 1458 [obverse]' +p168053 +sg25270 +S'Neapolitan 15th Century' +p168054 +sa(dp168055 +g25273 +S'overall (diameter): 2.7 cm (1 1/16 in.)\r\ngross weight: 3.9 gr (0.009 lb.)\r\naxis: 9:00' +p168056 +sg25267 +g27 +sg25275 +S'\nsilver coronato//Struck' +p168057 +sg25268 +S'Saint Michael Spearing the Dragon [reverse]' +p168058 +sg25270 +S'Neapolitan 15th Century' +p168059 +sa(dp168060 +g25273 +S'overall (diameter): 3.05 cm (1 3/16 in.)\r\ngross weight: 9.5 gr (0.021 lb.)\r\naxis: 4:00' +p168061 +sg25267 +g27 +sg25275 +S'\nsilver testoon//Struck' +p168062 +sg25268 +S'Antoine, 1489-1544, Duke of Lorraine 1508 [obverse]' +p168063 +sg25270 +S'Nancy 16th Century' +p168064 +sa(dp168065 +g25273 +S'overall (diameter): 3.05 cm (1 3/16 in.)\r\ngross weight: 9.5 gr (0.021 lb.)\r\naxis: 4:00' +p168066 +sg25267 +g27 +sg25275 +S'\nsilver testoon//Struck' +p168067 +sg25268 +S'Crowned Shield [reverse]' +p168068 +sg25270 +S'Nancy 16th Century' +p168069 +sa(dp168070 +g25273 +S'overall (diameter): 2.96 cm (1 3/16 in.)\r\ngross weight: 7.02 gr (0.015 lb.)\r\naxis: 10:00' +p168071 +sg25267 +g27 +sg25275 +S'\ngold excelente//Struck' +p168072 +sg25268 +S'Ferdinand II, 1452-1516, King of Aragon 1479, and Isabella, 1451-1504, Queen of Castile and Le\xc3\xb3n 1474 [obverse]' +p168073 +sg25270 +S'Spanish 16th Century' +p168074 +sa(dp168075 +g25273 +S'overall (diameter): 2.96 cm (1 3/16 in.)\r\ngross weight: 7.02 gr (0.015 lb.)\r\naxis: 10:00' +p168076 +sg25267 +g27 +sg25275 +S'\ngold excelente' +p168077 +sg25268 +S'Eagle Displaying Crowned Shield of Aragon and Castile [reverse]' +p168078 +sg25270 +S'Spanish 16th Century' +p168079 +sa(dp168080 +g25273 +S'lead//Late cast' +p168081 +sg25267 +g27 +sg25275 +S'1519' +p168082 +sg25268 +S'Desiderius Erasmus of Rotterdam, 1467/1469-1536, Scholar, Theologian, and Satirist' +p168083 +sg25270 +S'Quentin Massys' +p168084 +sa(dp168085 +g25268 +S'The Last Judgment' +p168086 +sg25270 +S'Artist Information (' +p168087 +sg25273 +S'(artist after)' +p168088 +sg25275 +S'\n' +p168089 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7cb.jpg' +p168090 +sg25267 +g27 +sa(dp168091 +g25273 +S'lead//Cast hollow' +p168092 +sg25267 +g27 +sg25275 +S'1568' +p168093 +sg25268 +S'Wenzel Jamnitzer, 1508-1585, Goldsmith' +p168094 +sg25270 +S'Valentin Maler' +p168095 +sa(dp168096 +g25273 +S'overall (diameter): 7.58 cm (3 in.)\r\ngross weight: 83.24 gr (0.184 lb.)' +p168097 +sg25267 +g27 +sg25275 +S'\n' +p168098 +sg25268 +S'A Senator' +p168099 +sg25270 +S'Italian 16th Century' +p168100 +sa(dp168101 +g25273 +S'bronze' +p168102 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168103 +sg25268 +S"Ercole I d'Este, 1431-1505, Duke of Ferrara, Modena, and Reggio 1471 [obverse]" +p168104 +sg25270 +S"Baldassare d'Este" +p168105 +sa(dp168106 +g25273 +S'bronze' +p168107 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168108 +sg25268 +S'Ercole on Horseback [reverse]' +p168109 +sg25270 +S"Baldassare d'Este" +p168110 +sa(dp168111 +g25273 +S'overall (diameter): 10.93 cm (4 5/16 in.)\r\ngross weight: 230.11 gr (0.507 lb.)' +p168112 +sg25267 +g27 +sg25275 +S'\nbronze' +p168113 +sg25268 +S"Borso d'Este, 1413-1471, Marquess of Ferrara 1450, Duke of Modena and Reggio 1452, and 1st Duke of Ferrara 1471 [obverse]" +p168114 +sg25270 +S'Ferrarese 15th Century' +p168115 +sa(dp168116 +g25273 +S'bronze' +p168117 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168118 +sg25268 +S'Giovanni II Bentivoglio, 1443-1508, Lord of Bologna 1463-1506 [obverse]' +p168119 +sg25270 +S'Sperandio' +p168120 +sa(dp168121 +g25273 +S'bronze' +p168122 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168123 +sg25268 +S'Cupids Holding the Arms of the Bentivogli [reverse]' +p168124 +sg25270 +S'Sperandio' +p168125 +sa(dp168126 +g25273 +S'lead' +p168127 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168128 +sg25268 +S'Galeazzo Maria Sforza, 1444-1476, Count of Pavia [obverse]' +p168129 +sg25270 +S'Antonio Marescotti' +p168130 +sa(dp168131 +g25273 +S'lead' +p168132 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168133 +sg25268 +S"Sunburst with Cherub's Head [reverse]" +p168134 +sg25270 +S'Antonio Marescotti' +p168135 +sa(dp168136 +g25273 +S', unknown date' +p168137 +sg25267 +g27 +sg25275 +S'\n' +p168138 +sg25268 +S'Nonnina Strozzi, Wife of Bernardo Barbigia [obverse]' +p168139 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p168140 +sa(dp168141 +g25273 +S'etching' +p168142 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168143 +sg25268 +S'Hombre Bueno' +p168144 +sg25270 +S'Adolfo Bellocq' +p168145 +sa(dp168146 +g25273 +S', unknown date' +p168147 +sg25267 +g27 +sg25275 +S'\n' +p168148 +sg25268 +S'Nonnina Praying [reverse]' +p168149 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p168150 +sa(dp168151 +g25273 +S'bronze' +p168152 +sg25267 +g27 +sg25275 +S'1479' +p168153 +sg25268 +S'Virgilio Malvezzi, died 1481, Politician [obverse]' +p168154 +sg25270 +S'Sperandio' +p168155 +sa(dp168156 +g25273 +S'bronze' +p168157 +sg25267 +g27 +sg25275 +S'1479' +p168158 +sg25268 +S'Swordsman Seated on a Plinth [reverse]' +p168159 +sg25270 +S'Sperandio' +p168160 +sa(dp168161 +g25273 +S'bronze' +p168162 +sg25267 +g27 +sg25275 +S'c. 1467' +p168163 +sg25268 +S'Fra Cesario of Ferrara, died 1490, Servite Monk' +p168164 +sg25270 +S'Sperandio' +p168165 +sa(dp168166 +g25273 +S'bronze' +p168167 +sg25267 +g27 +sg25275 +S'c. 1467' +p168168 +sg25268 +S'Fra Cesario Seated on a Rock, Contemplating a Skull [reverse]' +p168169 +sg25270 +S'Sperandio' +p168170 +sa(dp168171 +g25273 +S'bronze' +p168172 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168173 +sg25268 +S'Marco Mantova Benavides, 1489-1582, Lawyer and Collector [obverse]' +p168174 +sg25270 +S'Martino da Bergamo' +p168175 +sa(dp168176 +g25273 +S'bronze' +p168177 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168178 +sg25268 +S'Reclining Bovine [reverse]' +p168179 +sg25270 +S'Martino da Bergamo' +p168180 +sa(dp168181 +g25273 +S'bronze//Cast hollow' +p168182 +sg25267 +g27 +sg25275 +S'late 15th or early 16th century' +p168183 +sg25268 +S'Giovanni Mocenigo, 1408-1485, Doge of Venice' +p168184 +sg25270 +S'Master G.T.' +p168185 +sa(dp168186 +g25273 +S'silver' +p168187 +sg25267 +g27 +sg25275 +S'1526' +p168188 +sg25268 +S'Henry VIII, 1491-1547, King of England 1509 [obverse]' +p168189 +sg25270 +S'Hans Daucher' +p168190 +sa(dp168191 +g25273 +S'silver' +p168192 +sg25267 +g27 +sg25275 +S'1526' +p168193 +sg25268 +S'Tudor Portcullis Crowned [reverse]' +p168194 +sg25270 +S'Hans Daucher' +p168195 +sa(dp168196 +g25273 +S'etching' +p168197 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168198 +sg25268 +S'Vagabundo' +p168199 +sg25270 +S'Adolfo Bellocq' +p168200 +sa(dp168201 +g25273 +S'overall (diameter): 7.2 cm (2 13/16 in.)\r\ngross weight: 121.12 gr (0.267 lb.)\r\naxis: 12:00' +p168202 +sg25267 +g27 +sg25275 +S'\nsilver' +p168203 +sg25268 +S"William Shevez (Sheves), died 1497, Archbishop of Saint Andrew's, Scotland 1478 [obverse]" +p168204 +sg25270 +S'Netherlandish 15th Century' +p168205 +sa(dp168206 +g25273 +S'silver' +p168207 +sg25267 +g27 +sg25275 +S'1491' +p168208 +sg25268 +S'Coat of Arms and Inscription [reverse]' +p168209 +sg25270 +S'Anonymous Netherlandish' +p168210 +sa(dp168211 +g25273 +S'German, c. 1492 - after 1532' +p168212 +sg25267 +g27 +sg25275 +S'(related artist)' +p168213 +sg25268 +S'Henry VIII, 1491-1547, King of England 1509' +p168214 +sg25270 +S'Artist Information (' +p168215 +sa(dp168216 +g25273 +S'German, c. 1492 - after 1532' +p168217 +sg25267 +g27 +sg25275 +S'(related artist)' +p168218 +sg25268 +S'Henry VIII, 1491-1547, King of England 1509' +p168219 +sg25270 +S'Artist Information (' +p168220 +sa(dp168221 +g25273 +S'overall (diameter): 9.11 cm (3 9/16 in.)\r\ngross weight: 137.18 gr (0.302 lb.)\r\naxis: 12:00' +p168222 +sg25267 +g27 +sg25275 +S'\nbronzed lead' +p168223 +sg25268 +S'Fran\xc3\xa7ois I, 1494-1547, King of France 1515 [obverse]' +p168224 +sg25270 +S'French 16th Century' +p168225 +sa(dp168226 +g25273 +S'overall (diameter): 9.11 cm (3 9/16 in.)\r\ngross weight: 137.18 gr (0.302 lb.)\r\naxis: 12:00' +p168227 +sg25267 +g27 +sg25275 +S'\nbronzed lead' +p168228 +sg25268 +S'Fran\xc3\xa7ois I on Horseback [reverse]' +p168229 +sg25270 +S'French 16th Century' +p168230 +sa(dp168231 +g25273 +S'overall (diameter): 5.5 cm (2 3/16 in.)\r\ngross weight: 87.03 gr (0.192 lb.)\r\naxis: 6:00' +p168232 +sg25267 +g27 +sg25275 +S'\nbronze' +p168233 +sg25268 +S"Charles VIII (L'Affable), King of France, 1470-1498 [obverse]" +p168234 +sg25270 +S'Italian 16th Century' +p168235 +sa(dp168236 +g25273 +S'overall (diameter): 5.5 cm (2 3/16 in.)\r\ngross weight: 87.03 gr (0.192 lb.)\r\naxis: 6:00' +p168237 +sg25267 +g27 +sg25275 +S'\nbronze' +p168238 +sg25268 +S'King in Armor Attended by Victory [reverse]' +p168239 +sg25270 +S'Italian 16th Century' +p168240 +sa(dp168241 +g25273 +S'overall (diameter): 5.42 cm (2 1/8 in.)\r\ngross weight: 76.46 gr (0.169 lb.)\r\naxis: 12:00' +p168242 +sg25267 +g27 +sg25275 +S'\nbronze' +p168243 +sg25268 +S'Mary Stuart, 1542-1587, Queen of Scots [obverse]' +p168244 +sg25270 +S'British 17th Century' +p168245 +sa(dp168246 +g25273 +S'overall (diameter): 5.42 cm (2 1/8 in.)\r\ngross weight: 76.46 gr (0.169 lb.)\r\naxis: 12:00' +p168247 +sg25267 +g27 +sg25275 +S'\nbronze' +p168248 +sg25268 +S'Inscription [reverse]' +p168249 +sg25270 +S'British 17th Century' +p168250 +sa(dp168251 +g25273 +S'etching' +p168252 +sg25267 +g27 +sg25275 +S'1926' +p168253 +sg25268 +S'Errante' +p168254 +sg25270 +S'Adolfo Bellocq' +p168255 +sa(dp168256 +g25273 +S'overall (diameter): 5.91 cm (2 5/16 in.)\r\ngross weight: 88.43 gr (0.195 lb.)\r\naxis: 12:00' +p168257 +sg25267 +g27 +sg25275 +S'\nbronze' +p168258 +sg25268 +S'Sir Thomas More, 1480-1535, Lord Chancellor of England 1529 [obverse]' +p168259 +sg25270 +S'English 17th Century' +p168260 +sa(dp168261 +g25273 +S'overall (diameter): 5.91 cm (2 5/16 in.)\r\ngross weight: 88.43 gr (0.195 lb.)\r\naxis: 12:00' +p168262 +sg25267 +g27 +sg25275 +S'\nbronze' +p168263 +sg25268 +S'Felled Cypress Tree [reverse]' +p168264 +sg25270 +S'English 17th Century' +p168265 +sa(dp168266 +g25273 +S'bronze' +p168267 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168268 +sg25268 +S'Bianca Riario [obverse]' +p168269 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p168270 +sa(dp168271 +g25273 +S'bronze' +p168272 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168273 +sg25268 +S'The Three Graces [reverse]' +p168274 +sg25270 +S'Niccol\xc3\xb2 Fiorentino' +p168275 +sa(dp168276 +g25273 +S'bronze' +p168277 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168278 +sg25268 +S'Pius II (Aeneas Silvius Piccolomini, 1405-1464), Pope 1458 [obverse]' +p168279 +sg25270 +S'Andrea Guacialoti' +p168280 +sa(dp168281 +g25273 +S'bronze' +p168282 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168283 +sg25268 +S'Pelican in Her Piety [reverse]' +p168284 +sg25270 +S'Andrea Guacialoti' +p168285 +sa(dp168286 +g25273 +S'bronze' +p168287 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168288 +sg25268 +S'Giovanni II Bentivoglio, 1443-1508, Lord of Bologna 1463-1506 [obverse]' +p168289 +sg25270 +S'Sperandio' +p168290 +sa(dp168291 +g25273 +S'bronze' +p168292 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168293 +sg25268 +S"Giovanni II Bentivoglio Mounted in Armor with Captain's Baton [reverse]" +p168294 +sg25270 +S'Sperandio' +p168295 +sa(dp168296 +g25273 +S'overall (diameter): 6.12 cm (2 7/16 in.)\r\ngross weight: 105.47 gr (0.233 lb.)\r\naxis: 12:00' +p168297 +sg25267 +g27 +sg25275 +S'\nbronze' +p168298 +sg25268 +S'Michael Ott von Aechterdingen, c. 1479-1532 [obverse]' +p168299 +sg25270 +S'Austrian 16th Century' +p168300 +sa(dp168301 +g25273 +S'overall (diameter): 6.12 cm (2 7/16 in.)\r\ngross weight: 105.47 gr (0.233 lb.)\r\naxis: 12:00' +p168302 +sg25267 +g27 +sg25275 +S'\nbronze' +p168303 +sg25268 +S'Coat of Arms [reverse]' +p168304 +sg25270 +S'Austrian 16th Century' +p168305 +sa(dp168306 +g25273 +S'woodcut' +p168307 +sg25267 +g27 +sg25275 +S'1927' +p168308 +sg25268 +S'Beethoven' +p168309 +sg25270 +S'Adolfo Bellocq' +p168310 +sa(dp168311 +g25273 +S'overall (diameter): 5.32 cm (2 1/8 in.)\r\ngross weight: 43.52 gr (0.096 lb.)\r\naxis: 12:00' +p168312 +sg25267 +g27 +sg25275 +S'\nbronze' +p168313 +sg25268 +S'Ferdinand I, 1503-1564, Archduke of Austria 1519, and Anne of Hungary, died 1547, His Wife 1521 [obverse]' +p168314 +sg25270 +S'Austrian 16th Century' +p168315 +sa(dp168316 +g25273 +S'overall (diameter): 5.32 cm (2 1/8 in.)\r\ngross weight: 43.52 gr (0.096 lb.)\r\naxis: 12:00' +p168317 +sg25267 +g27 +sg25275 +S'\nbronze' +p168318 +sg25268 +S'Monogram FA Circled by the Collar of the Golden Fleece [reverse]' +p168319 +sg25270 +S'Austrian 16th Century' +p168320 +sa(dp168321 +g25273 +S'overall (diameter): 5.44 cm (2 1/8 in.)\r\ngross weight: 31.7 gr (0.07 lb.)\r\naxis: 12:00' +p168322 +sg25267 +g27 +sg25275 +S'\nbronze' +p168323 +sg25268 +S'Philip II, 1527-1598, King of Spain 1556 [obverse]' +p168324 +sg25270 +S'Flemish 16th Century' +p168325 +sa(dp168326 +g25273 +S'overall (diameter): 5.44 cm (2 1/8 in.)\r\ngross weight: 31.7 gr (0.07 lb.)\r\naxis: 12:00' +p168327 +sg25267 +g27 +sg25275 +S'\nbronze' +p168328 +sg25268 +S'Constancy [reverse]' +p168329 +sg25270 +S'Flemish 16th Century' +p168330 +sa(dp168331 +g25273 +S'base silver' +p168332 +sg25267 +g27 +sg25275 +S'1529' +p168333 +sg25268 +S'Hieronymus Holzschuher, 1469-1529, Patrician of Nuremberg [obverse]' +p168334 +sg25270 +S'Matthes Gebel' +p168335 +sa(dp168336 +g25273 +S'base silver' +p168337 +sg25267 +g27 +sg25275 +S'1529' +p168338 +sg25268 +S'Shield of Arms, Crest and Mantling [reverse]' +p168339 +sg25270 +S'Matthes Gebel' +p168340 +sa(dp168341 +g25273 +S'base silver' +p168342 +sg25267 +g27 +sg25275 +S'c. 1532' +p168343 +sg25268 +S'Johann Frederich, 1503-1554, Elector of Saxony 1532 [obverse]' +p168344 +sg25270 +S'Matthes Gebel' +p168345 +sa(dp168346 +g25273 +S'base silver' +p168347 +sg25267 +g27 +sg25275 +S'c. 1532' +p168348 +sg25268 +S'Blazon of Arms [reverse]' +p168349 +sg25270 +S'Matthes Gebel' +p168350 +sa(dp168351 +g25273 +S'lead//Cast hollow' +p168352 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168353 +sg25268 +S'Caspar Hedio, 1494-1552, Preacher and Minister' +p168354 +sg25270 +S'Friedrich Hagenauer' +p168355 +sa(dp168356 +g25268 +S'Raymund Fugger, 1489-1535, Scholar and Patron of the Arts [obverse]' +p168357 +sg25270 +S'Matthes Gebel' +p168358 +sg25273 +S'base silver' +p168359 +sg25275 +S'unknown date\n' +p168360 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6bf.jpg' +p168361 +sg25267 +g27 +sa(dp168362 +g25273 +S'lithograph' +p168363 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168364 +sg25268 +S'Viejo Lobo' +p168365 +sg25270 +S'Adolfo Bellocq' +p168366 +sa(dp168367 +g25268 +S'Allegory of Liberality [reverse]' +p168368 +sg25270 +S'Matthes Gebel' +p168369 +sg25273 +S'base silver' +p168370 +sg25275 +S'unknown date\n' +p168371 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6c0.jpg' +p168372 +sg25267 +g27 +sa(dp168373 +g25273 +S'lead' +p168374 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168375 +sg25268 +S'Lorenz Truchsess von Pommersfelden, 1473-1543, Dean of the Cathedral of Mainz [obverse]' +p168376 +sg25270 +S'Matthes Gebel' +p168377 +sa(dp168378 +g25273 +S'lead' +p168379 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168380 +sg25268 +S'Hourglass on an Inscribed Tablet [reverse]' +p168381 +sg25270 +S'Matthes Gebel' +p168382 +sa(dp168383 +g25268 +S'Lorenz Staiber, 1485/1486-1539, Patrician of Nuremberg, Writer, and Orator [obverse]' +p168384 +sg25270 +S'Matthes Gebel' +p168385 +sg25273 +S'lead' +p168386 +sg25275 +S'1535' +p168387 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00064/a0006418.jpg' +p168388 +sg25267 +g27 +sa(dp168389 +g25273 +S'lead' +p168390 +sg25267 +g27 +sg25275 +S'1535' +p168391 +sg25268 +S'Magdalena Rummel, Wife of Lorenz Staiber 1509 [reverse]' +p168392 +sg25270 +S'Matthes Gebel' +p168393 +sa(dp168394 +g25273 +S'lead' +p168395 +sg25267 +g27 +sg25275 +S'1529' +p168396 +sg25268 +S'Georg Hermann, 1491-1552, German Philospher [obverse]' +p168397 +sg25270 +S'Matthes Gebel' +p168398 +sa(dp168399 +g25273 +S'lead' +p168400 +sg25267 +g27 +sg25275 +S'1529' +p168401 +sg25268 +S'Shields and Helm [reverse]' +p168402 +sg25270 +S'Matthes Gebel' +p168403 +sa(dp168404 +g25273 +S'lead' +p168405 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168406 +sg25268 +S'Jakob von Strasbourg, Linguist' +p168407 +sg25270 +S'Friedrich Hagenauer' +p168408 +sa(dp168409 +g25273 +S'lead' +p168410 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168411 +sg25268 +S'Ludwig Senfl (Sennfel), c. 1486-1542/1543, German Musician and Composer [obverse]' +p168412 +sg25270 +S'Friedrich Hagenauer' +p168413 +sa(dp168414 +g25273 +S'lead' +p168415 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168416 +sg25268 +S'Inscription [reverse]' +p168417 +sg25270 +S'Friedrich Hagenauer' +p168418 +sa(dp168419 +g25273 +S'woodcut' +p168420 +sg25267 +g27 +sg25275 +S'1927' +p168421 +sg25268 +S'Atorrantes' +p168422 +sg25270 +S'Adolfo Bellocq' +p168423 +sa(dp168424 +g25273 +S'overall (diameter): 7.35 cm (2 7/8 in.)\r\ngross weight: 97.93 gr (0.216 lb.)' +p168425 +sg25267 +g27 +sg25275 +S'\nlead' +p168426 +sg25268 +S'Anne of Austria, 1601-1666, Wife of King Louis XIII of France 1615' +p168427 +sg25270 +S'French 17th Century' +p168428 +sa(dp168429 +g25273 +S'lead//Cast hollow' +p168430 +sg25267 +g27 +sg25275 +S'1520' +p168431 +sg25268 +S'Laux Kreler, c. 1486-1552, Goldsmith' +p168432 +sg25270 +S'Hans Kels the Younger' +p168433 +sa(dp168434 +g25273 +S'lead//Old after-cast' +p168435 +sg25267 +g27 +sg25275 +S'1529' +p168436 +sg25268 +S'Margaret von Firmian, 1509-1536, Wife of Caspar von Frundsberg' +p168437 +sg25270 +S'Friedrich Hagenauer' +p168438 +sa(dp168439 +g25273 +S'overall (diameter): 3.94 cm (1 9/16 in.)\r\ngross weight: 28.78 gr (0.063 lb.)\r\naxis: 11:00' +p168440 +sg25267 +g27 +sg25275 +S'\nlead' +p168441 +sg25268 +S'Melchior von Osse, 1506-1557, Chancellor of Saxony [obverse]' +p168442 +sg25270 +S'German 16th Century' +p168443 +sa(dp168444 +g25273 +S'overall (diameter): 3.94 cm (1 9/16 in.)\r\ngross weight: 28.78 gr (0.063 lb.)\r\naxis: 11:00' +p168445 +sg25267 +g27 +sg25275 +S'\nlead' +p168446 +sg25268 +S'Arms and Inscription [reverse]' +p168447 +sg25270 +S'German 16th Century' +p168448 +sa(dp168449 +g25268 +S'Christoph Kress von Kressenstein,1484-1535, Patrician and Diplomat [obverse]' +p168450 +sg25270 +S'Matthes Gebel' +p168451 +sg25273 +S'lead' +p168452 +sg25275 +S'1526' +p168453 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ff7b.jpg' +p168454 +sg25267 +g27 +sa(dp168455 +g25268 +S'Coat of Arms [reverse]' +p168456 +sg25270 +S'Matthes Gebel' +p168457 +sg25273 +S'lead' +p168458 +sg25275 +S'1526' +p168459 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ff7c.jpg' +p168460 +sg25267 +g27 +sa(dp168461 +g25273 +S'overall (diameter): 4.83 cm (1 7/8 in.)\r\ngross weight: 47.84 gr (0.105 lb.)\r\naxis: 11:00' +p168462 +sg25267 +g27 +sg25275 +S'\nlead' +p168463 +sg25268 +S'Albrecht of Brandenburg, 1490-1545, Cardinal 1518 [obverse]' +p168464 +sg25270 +S'German 16th Century' +p168465 +sa(dp168466 +g25273 +S'overall (diameter): 4.83 cm (1 7/8 in.)\r\ngross weight: 47.84 gr (0.105 lb.)\r\naxis: 11:00' +p168467 +sg25267 +g27 +sg25275 +S'\nlead' +p168468 +sg25268 +S'Coat of Arms [reverse]' +p168469 +sg25270 +S'German 16th Century' +p168470 +sa(dp168471 +g25273 +S', 1539' +p168472 +sg25267 +g27 +sg25275 +S'\n' +p168473 +sg25268 +S'Michael Mercator, born 1491, Diplomat' +p168474 +sg25270 +S'Friedrich Hagenauer' +p168475 +sa(dp168476 +g25273 +S'woodcut' +p168477 +sg25267 +g27 +sg25275 +S'1927' +p168478 +sg25268 +S'Pescadores y Vagos' +p168479 +sg25270 +S'Adolfo Bellocq' +p168480 +sa(dp168481 +g25273 +S', 1539' +p168482 +sg25267 +g27 +sg25275 +S'\n' +p168483 +sg25268 +S'Inscription [reverse]' +p168484 +sg25270 +S'Friedrich Hagenauer' +p168485 +sa(dp168486 +g25273 +S'lead//After-cast' +p168487 +sg25267 +g27 +sg25275 +S'1526' +p168488 +sg25268 +S'Caspar Wintzerer, 1465 or 1475-1542, Bavarian Soldier [obverse]' +p168489 +sg25270 +S'Friedrich Hagenauer' +p168490 +sa(dp168491 +g25273 +S'lead//After-cast' +p168492 +sg25267 +g27 +sg25275 +S'1526' +p168493 +sg25268 +S'Inscription [reverse]' +p168494 +sg25270 +S'Friedrich Hagenauer' +p168495 +sa(dp168496 +g25273 +S'lead' +p168497 +sg25267 +g27 +sg25275 +S'1527' +p168498 +sg25268 +S'Georg Vitill, born 1491, of Augsburg' +p168499 +sg25270 +S'Friedrich Hagenauer' +p168500 +sa(dp168501 +g25273 +S'lead' +p168502 +sg25267 +g27 +sg25275 +S'1536' +p168503 +sg25268 +S'Willibald von Redwitz, 1493-1544, Canon of Bamberg [obverse]' +p168504 +sg25270 +S'Peter Dell the Elder' +p168505 +sa(dp168506 +g25273 +S'lead' +p168507 +sg25267 +g27 +sg25275 +S'1536' +p168508 +sg25268 +S'Coat of Arms [reverse]' +p168509 +sg25270 +S'Peter Dell the Elder' +p168510 +sa(dp168511 +g25273 +S'lead' +p168512 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168513 +sg25268 +S'Elisabeth Kreler, c. 1490-after 1535, Wife of Laux Kreler' +p168514 +sg25270 +S'Hans Kels the Younger' +p168515 +sa(dp168516 +g25273 +S'lead' +p168517 +sg25267 +g27 +sg25275 +S'1530' +p168518 +sg25268 +S'Joachim I, Prince of Brandenburg, 1484-1535 [obverse]' +p168519 +sg25270 +S'Friedrich Hagenauer' +p168520 +sa(dp168521 +g25273 +S'lead' +p168522 +sg25267 +g27 +sg25275 +S'1530' +p168523 +sg25268 +S'Inscription [reverse]' +p168524 +sg25270 +S'Friedrich Hagenauer' +p168525 +sa(dp168526 +g25273 +S'lead' +p168527 +sg25267 +g27 +sg25275 +S'1528' +p168528 +sg25268 +S'Friedrich the Elder, 1460-1536, Margrave of Brandenburg-Ansbach 1486 [obverse]' +p168529 +sg25270 +S'Matthes Gebel' +p168530 +sa(dp168531 +g25273 +S'woodcut' +p168532 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168533 +sg25268 +S'Viejos Desesperados' +p168534 +sg25270 +S'Adolfo Bellocq' +p168535 +sa(dp168536 +g25273 +S'lead' +p168537 +sg25267 +g27 +sg25275 +S'1528' +p168538 +sg25268 +S'Blazon of Arms [reverse]' +p168539 +sg25270 +S'Matthes Gebel' +p168540 +sa(dp168541 +g25273 +S'lead//Reproduction' +p168542 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168543 +sg25268 +S'Self-Portrait' +p168544 +sg25270 +S'Valerio Belli' +p168545 +sa(dp168546 +g25273 +S'lead' +p168547 +sg25267 +g27 +sg25275 +S'1526' +p168548 +sg25268 +S'Augustus L\xc3\xb6sch, 1471-1535, Chancellor of the Duchy of Bavaria' +p168549 +sg25270 +S'Friedrich Hagenauer' +p168550 +sa(dp168551 +g25273 +S'lead//Cast hollow' +p168552 +sg25267 +g27 +sg25275 +S'1569' +p168553 +sg25268 +S'Jobst Tetzel, 1503-1575, Patrician of Nuremberg' +p168554 +sg25270 +S'Valentin Maler' +p168555 +sa(dp168556 +g25273 +S'lead' +p168557 +sg25267 +g27 +sg25275 +S'1556' +p168558 +sg25268 +S'Georg Olinger, 1487-1557, Apothecary [obverse]' +p168559 +sg25270 +S'Joachim Deschler' +p168560 +sa(dp168561 +g25273 +S'lead' +p168562 +sg25267 +g27 +sg25275 +S'1556' +p168563 +sg25268 +S'Inscription [reverse]' +p168564 +sg25270 +S'Joachim Deschler' +p168565 +sa(dp168566 +g25268 +S'Conrad Peutinger, 1465-1547, Humanist and Antiquarian' +p168567 +sg25270 +S'Hans Schwarz' +p168568 +sg25273 +S'lead' +p168569 +sg25275 +S'unknown date\n' +p168570 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6b7.jpg' +p168571 +sg25267 +g27 +sa(dp168572 +g25273 +S'lead' +p168573 +sg25267 +g27 +sg25275 +S'1538' +p168574 +sg25268 +S'Barbara Reihing, 1491-1566, Wife of Georg Hermann 1512 [obverse]' +p168575 +sg25270 +S'Hans Kels the Younger' +p168576 +sa(dp168577 +g25273 +S'lead' +p168578 +sg25267 +g27 +sg25275 +S'1538' +p168579 +sg25268 +S'Coat of Arms [reverse]' +p168580 +sg25270 +S'Hans Kels the Younger' +p168581 +sa(dp168582 +g25273 +S'lead' +p168583 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168584 +sg25268 +S'Ladislaus of Prague, Baron of Windhag' +p168585 +sg25270 +S'Friedrich Hagenauer' +p168586 +sa(dp168587 +g25268 +S'Elizabeth Farran' +p168588 +sg25270 +S'Artist Information (' +p168589 +sg25273 +S'(artist after)' +p168590 +sg25275 +S'\n' +p168591 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbca.jpg' +p168592 +sg25267 +g27 +sa(dp168593 +g25268 +S'Conrad Peutinger, 1465-1547, Humanist and Antiquarian' +p168594 +sg25270 +S'Friedrich Hagenauer' +p168595 +sg25273 +S'lead' +p168596 +sg25275 +S'1527' +p168597 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6b9.jpg' +p168598 +sg25267 +g27 +sa(dp168599 +g25273 +S'bronze' +p168600 +sg25267 +g27 +sg25275 +S'1551' +p168601 +sg25268 +S'Elena Marsuppini, 1494-1576, Wife of Giulianode San Gallo' +p168602 +sg25270 +S'Francesco da Sangallo' +p168603 +sa(dp168604 +g25273 +S'Italian, c. 1460 - 1528' +p168605 +sg25267 +g27 +sg25275 +S'(related artist)' +p168606 +sg25268 +S'Maddalena of Mantua [obverse]' +p168607 +sg25270 +S'Artist Information (' +p168608 +sa(dp168609 +g25273 +S'Italian, c. 1460 - 1528' +p168610 +sg25267 +g27 +sg25275 +S'(related artist)' +p168611 +sg25268 +S'Occasion in Pursuit of Time [reverse]' +p168612 +sg25270 +S'Artist Information (' +p168613 +sa(dp168614 +g25273 +S'bronze and copper//Struck' +p168615 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168616 +sg25268 +S'Antinous, died A.D.130, Favorite of the Emperor Hadrian [obverse]' +p168617 +sg25270 +S'Giovanni da Cavino' +p168618 +sa(dp168619 +g25273 +S'bronze and copper//Struck' +p168620 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168621 +sg25268 +S'Mercury Taming Pegasus [reverse]' +p168622 +sg25270 +S'Giovanni da Cavino' +p168623 +sa(dp168624 +g25273 +S'bronze' +p168625 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168626 +sg25268 +S'Federigo II of Montefeltro, 1410-1482, First Duke of Urbino 1474 [obverse]' +p168627 +sg25270 +S'Pietro Torrigiano' +p168628 +sa(dp168629 +g25273 +S'bronze' +p168630 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168631 +sg25268 +S'Cupids Supporting an Eagle and Cornucopias on a Shield [reverse]' +p168632 +sg25270 +S'Pietro Torrigiano' +p168633 +sa(dp168634 +g25273 +S'bronze' +p168635 +sg25267 +g27 +sg25275 +S'15th century' +p168636 +sg25268 +S'Mary of Burgundy, 1457-1482, Wife of Maximilian I, Archduke of Austria' +p168637 +sg25270 +S'Anonymous Netherlandish' +p168638 +sa(dp168639 +g25273 +S'bronze' +p168640 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168641 +sg25268 +S"Giovanni de' Medici delle Bande Nere, 1498-1526 [obverse]" +p168642 +sg25270 +S'Danese Cattaneo' +p168643 +sa(dp168644 +g25273 +S'portfolio with sixty lithographs' +p168645 +sg25267 +g27 +sg25275 +S'published 1917/1918' +p168646 +sg25268 +S'War Drawings' +p168647 +sg25270 +S'Sir Muirhead Bone' +p168648 +sa(dp168649 +g25273 +S'bronze' +p168650 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168651 +sg25268 +S'Cavalry Charge [reverse]' +p168652 +sg25270 +S'Danese Cattaneo' +p168653 +sa(dp168654 +g25273 +S'bronze' +p168655 +sg25267 +g27 +sg25275 +S'1481' +p168656 +sg25268 +S'Alfonso II of Aragon, 1448-1495, Duke of Calabria 1458, afterwards King of Naples 1494 [obverse]' +p168657 +sg25270 +S'Andrea Guacialoti' +p168658 +sa(dp168659 +g25273 +S'bronze' +p168660 +sg25267 +g27 +sg25275 +S'1481' +p168661 +sg25268 +S"Alfonso's Triumphal Entry into Naples [reverse]" +p168662 +sg25270 +S'Andrea Guacialoti' +p168663 +sa(dp168664 +g25273 +g27 +sg25267 +g27 +sg25275 +S'\n' +p168665 +sg25268 +S'Hanging Hall-Lantern' +p168666 +sg25270 +S'French 18th Century' +p168667 +sa(dp168668 +g25268 +S'Mary Crowninshield Endicott Chamberlain (Mrs. Joseph Chamberlain)' +p168669 +sg25270 +S'John Singer Sargent' +p168670 +sg25273 +S'oil on canvas' +p168671 +sg25275 +S'1902' +p168672 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000204.jpg' +p168673 +sg25267 +g27 +sa(dp168674 +g25268 +S'The Union Cavalry and Artillery Starting in Pursuit of the Rebels up the Yorktown Turnpike' +p168675 +sg25270 +S'Artist Information (' +p168676 +sg25273 +S'American, 1836 - 1910' +p168677 +sg25275 +S'(artist after)' +p168678 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fab1.jpg' +p168679 +sg25267 +g27 +sa(dp168680 +g25268 +S'The Last Days of Harvest' +p168681 +sg25270 +S'Artist Information (' +p168682 +sg25273 +S'American, 1836 - 1910' +p168683 +sg25275 +S'(artist after)' +p168684 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000facb.jpg' +p168685 +sg25267 +g27 +sa(dp168686 +g25268 +S'The Dinner Horn' +p168687 +sg25270 +S'Artist Information (' +p168688 +sg25273 +S'American, 1836 - 1910' +p168689 +sg25275 +S'(artist after)' +p168690 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fac2.jpg' +p168691 +sg25267 +g27 +sa(dp168692 +g25268 +S'Gloucester Harbor' +p168693 +sg25270 +S'Artist Information (' +p168694 +sg25273 +S'American, 1836 - 1910' +p168695 +sg25275 +S'(artist after)' +p168696 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fab6.jpg' +p168697 +sg25267 +g27 +sa(dp168698 +g25268 +S'"Dad\'s Coming!"' +p168699 +sg25270 +S'Artist Information (' +p168700 +sg25273 +S'American, 1836 - 1910' +p168701 +sg25275 +S'(artist after)' +p168702 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ff87.jpg' +p168703 +sg25267 +g27 +sa(dp168704 +g25268 +S'A Winter-Morning, - Shovelling Out' +p168705 +sg25270 +S'Artist Information (' +p168706 +sg25273 +S'(artist after)' +p168707 +sg25275 +S'\n' +p168708 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000facd.jpg' +p168709 +sg25267 +g27 +sa(dp168710 +g25268 +S'Deer-Stalking in the Adirondacks in Winter' +p168711 +sg25270 +S'Artist Information (' +p168712 +sg25273 +S'American, 1836 - 1910' +p168713 +sg25275 +S'(artist after)' +p168714 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000facc.jpg' +p168715 +sg25267 +g27 +sa(dp168716 +g25268 +S'Winter at Sea - Taking in Sail Off the Coast' +p168717 +sg25270 +S'Artist Information (' +p168718 +sg25273 +S'American, 1836 - 1910' +p168719 +sg25275 +S'(artist after)' +p168720 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fac0.jpg' +p168721 +sg25267 +g27 +sa(dp168722 +g25268 +S'Fall Games - The Apple-Bee' +p168723 +sg25270 +S'Artist Information (' +p168724 +sg25273 +S'American, 1836 - 1910' +p168725 +sg25275 +S'(artist after)' +p168726 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fab3.jpg' +p168727 +sg25267 +g27 +sa(dp168728 +g25268 +S'Gathering Berries' +p168729 +sg25270 +S'Artist Information (' +p168730 +sg25273 +S'(artist after)' +p168731 +sg25275 +S'\n' +p168732 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fac9.jpg' +p168733 +sg25267 +g27 +sa(dp168734 +g25268 +S"On the Beach at Long Branch - The Children's Hour" +p168735 +sg25270 +S'Artist Information (' +p168736 +sg25273 +S'(artist after)' +p168737 +sg25275 +S'\n' +p168738 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fac8.jpg' +p168739 +sg25267 +g27 +sa(dp168740 +g25268 +S'Thanksgiving in Camp' +p168741 +sg25270 +S'Artist Information (' +p168742 +sg25273 +S'American, 1836 - 1910' +p168743 +sg25275 +S'(artist after)' +p168744 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000faaf.jpg' +p168745 +sg25267 +g27 +sa(dp168746 +g25268 +S'Jurors Listening to Counsel, Supreme Court, New City Hall, New York' +p168747 +sg25270 +S'Artist Information (' +p168748 +sg25273 +S'American, 1836 - 1910' +p168749 +sg25275 +S'(artist after)' +p168750 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fabf.jpg' +p168751 +sg25267 +g27 +sa(dp168752 +g25273 +S'pen and black ink' +p168753 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168754 +sg25268 +S'Night, Boulevard St.-Michel, Paris' +p168755 +sg25270 +S'Sir Muirhead Bone' +p168756 +sa(dp168757 +g25268 +S'Raid on a Sand-Swallow Colony - "How Many Eggs?"' +p168758 +sg25270 +S'Artist Information (' +p168759 +sg25273 +S'(artist after)' +p168760 +sg25275 +S'\n' +p168761 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000faca.jpg' +p168762 +sg25267 +g27 +sa(dp168763 +g25268 +S'Art-Students and Copyists in the Louvre Gallery, Paris' +p168764 +sg25270 +S'Artist Information (' +p168765 +sg25273 +S'American, 1836 - 1910' +p168766 +sg25275 +S'(artist after)' +p168767 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000abf.jpg' +p168768 +sg25267 +g27 +sa(dp168769 +g25268 +S'The Army of the Potomac - A Sharp-Shooter on Picket Duty' +p168770 +sg25270 +S'Artist Information (' +p168771 +sg25273 +S'American, 1836 - 1910' +p168772 +sg25275 +S'(artist after)' +p168773 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fab0.jpg' +p168774 +sg25267 +g27 +sa(dp168775 +g25268 +S'Sea-Side Sketches - A Clam-Bake' +p168776 +sg25270 +S'Artist Information (' +p168777 +sg25273 +S'(artist after)' +p168778 +sg25275 +S'\n' +p168779 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fabe.jpg' +p168780 +sg25267 +g27 +sa(dp168781 +g25268 +S'A Snow Slide in the City' +p168782 +sg25270 +S'Artist Information (' +p168783 +sg25273 +S'American, 1836 - 1910' +p168784 +sg25275 +S'(artist after)' +p168785 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fab2.jpg' +p168786 +sg25267 +g27 +sa(dp168787 +g25268 +S'A Parisian Ball - Dancing at the Mabille, Paris' +p168788 +sg25270 +S'Artist Information (' +p168789 +sg25273 +S'American, 1836 - 1910' +p168790 +sg25275 +S'(artist after)' +p168791 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000faab.jpg' +p168792 +sg25267 +g27 +sa(dp168793 +g25268 +S"The Battle of Bunker-Hill - Watching the Fight from Copp's Hill, in Boston" +p168794 +sg25270 +S'Artist Information (' +p168795 +sg25273 +S'American, 1836 - 1910' +p168796 +sg25275 +S'(artist after)' +p168797 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fac6.jpg' +p168798 +sg25267 +g27 +sa(dp168799 +g25268 +S'Christmas Belles' +p168800 +sg25270 +S'Artist Information (' +p168801 +sg25273 +S'American, 1836 - 1910' +p168802 +sg25275 +S'(artist after)' +p168803 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ac0.jpg' +p168804 +sg25267 +g27 +sa(dp168805 +g25268 +S'Fire-Works on the Night of the Fourth of July' +p168806 +sg25270 +S'Artist Information (' +p168807 +sg25273 +S'American, 1836 - 1910' +p168808 +sg25275 +S'(artist after)' +p168809 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000faa9.jpg' +p168810 +sg25267 +g27 +sa(dp168811 +g25268 +S'The Songs of War' +p168812 +sg25270 +S'Artist Information (' +p168813 +sg25273 +S'American, 1836 - 1910' +p168814 +sg25275 +S'(artist after)' +p168815 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00111/a001113f.jpg' +p168816 +sg25267 +g27 +sa(dp168817 +g25273 +S'watercolor and graphite' +p168818 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168819 +sg25268 +S'The Broad, Oxford' +p168820 +sg25270 +S'Sir Muirhead Bone' +p168821 +sa(dp168822 +g25268 +S"Skating on the Ladies' Skating-Pond in the Central Park, New York" +p168823 +sg25270 +S'Artist Information (' +p168824 +sg25273 +S'American, 1836 - 1910' +p168825 +sg25275 +S'(artist after)' +p168826 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00111/a0011140.jpg' +p168827 +sg25267 +g27 +sa(dp168828 +g25268 +S'Thanksgiving Day, 1860 - The Two Great Classes of Society' +p168829 +sg25270 +S'Artist Information (' +p168830 +sg25273 +S'American, 1836 - 1910' +p168831 +sg25275 +S'(artist after)' +p168832 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00111/a001113a.jpg' +p168833 +sg25267 +g27 +sa(dp168834 +g25268 +S'Thanksgiving Day - Ways and Means [upper left]' +p168835 +sg25270 +S'Artist Information (' +p168836 +sg25273 +S'American, 1836 - 1910' +p168837 +sg25275 +S'(artist after)' +p168838 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00111/a001113c.jpg' +p168839 +sg25267 +g27 +sa(dp168840 +g25273 +S'American, 1836 - 1910' +p168841 +sg25267 +g27 +sg25275 +S'(artist after)' +p168842 +sg25268 +S'Thanksgiving Day - The Dinner [upper right]' +p168843 +sg25270 +S'Artist Information (' +p168844 +sa(dp168845 +g25273 +S'American, 1836 - 1910' +p168846 +sg25267 +g27 +sg25275 +S'(artist after)' +p168847 +sg25268 +S'Thanksgiving Day - Arrival at the Old Home [lower left]' +p168848 +sg25270 +S'Artist Information (' +p168849 +sa(dp168850 +g25273 +S'American, 1836 - 1910' +p168851 +sg25267 +g27 +sg25275 +S'(artist after)' +p168852 +sg25268 +S'Thanksgiving Day - The Dance [lower right]' +p168853 +sg25270 +S'Artist Information (' +p168854 +sa(dp168855 +g25268 +S'The War for the Union, 1862 - A Bayonet Charge' +p168856 +sg25270 +S'Artist Information (' +p168857 +sg25273 +S'American, 1836 - 1910' +p168858 +sg25275 +S'(artist after)' +p168859 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00111/a0011138.jpg' +p168860 +sg25267 +g27 +sa(dp168861 +g25268 +S'The Great Russian Ball at the Academy of Music, November 5, 1863' +p168862 +sg25270 +S'Artist Information (' +p168863 +sg25273 +S'American, 1836 - 1910' +p168864 +sg25275 +S'(artist after)' +p168865 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00111/a001113e.jpg' +p168866 +sg25267 +g27 +sa(dp168867 +g25268 +S'The Letter for Home (Campaign Sketches)' +p168868 +sg25270 +S'Winslow Homer' +p168869 +sg25273 +S'lithograph' +p168870 +sg25275 +S'unknown date\n' +p168871 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000facf.jpg' +p168872 +sg25267 +g27 +sa(dp168873 +g25268 +S'Our Jolly Cook (Campaign Sketches)' +p168874 +sg25270 +S'Winslow Homer' +p168875 +sg25273 +S'lithograph' +p168876 +sg25275 +S'unknown date\n' +p168877 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000face.jpg' +p168878 +sg25267 +g27 +sa(dp168879 +g25273 +S'watercolor and graphite' +p168880 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168881 +sg25268 +S'Coast Of Sweden' +p168882 +sg25270 +S'Sir Muirhead Bone' +p168883 +sa(dp168884 +g25268 +S'The Meeting of Abraham and Melchizedek' +p168885 +sg25270 +S'Sir Peter Paul Rubens' +p168886 +sg25273 +S'oil on panel' +p168887 +sg25275 +S'c. 1626' +p168888 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e3a.jpg' +p168889 +sg25267 +S"Rubens served Albert and Isabella, the Spanish governors of the Netherlands, as both court artist and diplomat. Isabella commissioned Rubens to design twenty tapestries for the Convent of the Poor Clares in Madrid, where she had lived and\r\nstudied as a girl. Woven in Brussels, the series—which is still in the convent (now a museum)—celebrated the Eucharist, the Christian sacrament that reenacts Jesus' transformation of bread and wine into his body and blood at the Last Supper.\n This painting is a \n Rubens presents the narrative as though it appears on a tapestry itself. Cherubs carry the heavy, fringed fabric before an imposing architectural setting. On the right, two attendants seem to climb from a wine cellar. Are they real men standing in front of the tapestry, or images woven inside it? Such confounding illusion delighted baroque audiences.\n " +p168890 +sa(dp168891 +g25268 +S'Mount Auburn Cemetery' +p168892 +sg25270 +S'Thomas Chambers' +p168893 +sg25273 +S'oil on canvas' +p168894 +sg25275 +S'mid 19th century' +p168895 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000130.jpg' +p168896 +sg25267 +g27 +sa(dp168897 +g25268 +S'The Ass at School' +p168898 +sg25270 +S'Artist Information (' +p168899 +sg25273 +S'(artist after)' +p168900 +sg25275 +S'\n' +p168901 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00053/a00053cb.jpg' +p168902 +sg25267 +g27 +sa(dp168903 +g25268 +S'La Ferme aux peupliers de Hollande' +p168904 +sg25270 +S'Auguste Lep\xc3\xa8re' +p168905 +sg25273 +S'etching' +p168906 +sg25275 +S'1914' +p168907 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ce9.jpg' +p168908 +sg25267 +g27 +sa(dp168909 +g25268 +S"The Square of Saint Mark's, Venice" +p168910 +sg25270 +S'Artist Information (' +p168911 +sg25273 +S'Italian, 1712 - 1793' +p168912 +sg25275 +S'(related artist)' +p168913 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c653.jpg' +p168914 +sg25267 +g27 +sa(dp168915 +g25268 +S'The Confidant (Le confidant)' +p168916 +sg25270 +S'Artist Information (' +p168917 +sg25273 +S'French, 1808 - 1879' +p168918 +sg25275 +S'(related artist)' +p168919 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a0005414.jpg' +p168920 +sg25267 +g27 +sa(dp168921 +g25268 +S'The Representative (Le repr\xc3\xa9sentant noue sa cravate)' +p168922 +sg25270 +S'Artist Information (' +p168923 +sg25273 +S'French, 1808 - 1879' +p168924 +sg25275 +S'(related artist)' +p168925 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a0005415.jpg' +p168926 +sg25267 +g27 +sa(dp168927 +g25273 +S'color woodcut' +p168928 +sg25267 +g27 +sg25275 +S'1954' +p168929 +sg25268 +S'And One of Them Struck the Slave' +p168930 +sg25270 +S'Karl H. Blast' +p168931 +sa(dp168932 +g25273 +S'brush and black ink with brown, gray and black wash' +p168933 +sg25267 +g27 +sg25275 +S'1954' +p168934 +sg25268 +S'Seated Woman; Legs; Girls' +p168935 +sg25270 +S'Cock van Gent' +p168936 +sa(dp168937 +g25273 +S'brush and black ink with gray wash on laid paper' +p168938 +sg25267 +g27 +sg25275 +S'1952' +p168939 +sg25268 +S'Mayan Indian Group' +p168940 +sg25270 +S'Cock van Gent' +p168941 +sa(dp168942 +g25273 +S'watercolor and charcoal' +p168943 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168944 +sg25268 +S'Plymouth, Massachusetts' +p168945 +sg25270 +S'Sir Muirhead Bone' +p168946 +sa(dp168947 +g25268 +S'Ath. L. Charles Coquerel' +p168948 +sg25270 +S'Honor\xc3\xa9 Daumier' +p168949 +sg25273 +S'lithograph' +p168950 +sg25275 +S'1849' +p168951 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009444.jpg' +p168952 +sg25267 +g27 +sa(dp168953 +g25268 +S'Ath. L. Charles Coquerel' +p168954 +sg25270 +S'Honor\xc3\xa9 Daumier' +p168955 +sg25273 +S'lithograph' +p168956 +sg25275 +S'1849' +p168957 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009445.jpg' +p168958 +sg25267 +g27 +sa(dp168959 +g25273 +S'color woodcut' +p168960 +sg25267 +g27 +sg25275 +S'1954' +p168961 +sg25268 +S'Red Hollyhocks' +p168962 +sg25270 +S'Werner Drewes' +p168963 +sa(dp168964 +g25273 +S'lithograph' +p168965 +sg25267 +g27 +sg25275 +S'unknown date\n' +p168966 +sg25268 +S'Connie No. 2' +p168967 +sg25270 +S'Eugene Feldman' +p168968 +sa(dp168969 +g25273 +S'color etching' +p168970 +sg25267 +g27 +sg25275 +S'1954' +p168971 +sg25268 +S'Image' +p168972 +sg25270 +S'Elaine Rubeck' +p168973 +sa(dp168974 +g25268 +S'Frontispiece: Allegorical Composition (Composition allegorique)' +p168975 +sg25270 +S'Gabriel de Saint-Aubin' +p168976 +sg25273 +S', 1767' +p168977 +sg25275 +S'\n' +p168978 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f64.jpg' +p168979 +sg25267 +g27 +sa(dp168980 +g25268 +S"Heroic Act of a Father Who Sacrifices for His Son (Trait heroique d'un pere qui se sacrifie pour son fils)" +p168981 +sg25270 +S'Gabriel de Saint-Aubin' +p168982 +sg25273 +S', 1767' +p168983 +sg25275 +S'\n' +p168984 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f63.jpg' +p168985 +sg25267 +g27 +sa(dp168986 +g25268 +S'Envoy to M. de Saint-Denis by M. de Belle-Isle, Prisoner [left]' +p168987 +sg25270 +S'Gabriel de Saint-Aubin' +p168988 +sg25273 +S', 1767' +p168989 +sg25275 +S'\n' +p168990 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f5d.jpg' +p168991 +sg25267 +g27 +sa(dp168992 +g25268 +S'Flight of M. de Belle-Isle, Prisoner with theAttakapas [right]' +p168993 +sg25270 +S'Gabriel de Saint-Aubin' +p168994 +sg25273 +S', 1767' +p168995 +sg25275 +S'\n' +p168996 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f5e.jpg' +p168997 +sg25267 +g27 +sa(dp168998 +g25268 +S'A Blacksmith (Un forgeron)' +p168999 +sg25270 +S'Eug\xc3\xa8ne Delacroix' +p169000 +sg25273 +S'aquatint and drypoint' +p169001 +sg25275 +S'1833' +p169002 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000959a.jpg' +p169003 +sg25267 +g27 +sa(dp169004 +g25273 +S'pastel on gray-brown paper' +p169005 +sg25267 +g27 +sg25275 +S'unknown date\n' +p169006 +sg25268 +S'Storm Clearing Perugia' +p169007 +sg25270 +S'Sir Muirhead Bone' +p169008 +sa(dp169009 +g25273 +S'woodcut' +p169010 +sg25267 +g27 +sg25275 +S'1952' +p169011 +sg25268 +S'Self-Portrait, LB AET 29' +p169012 +sg25270 +S'Leonard Baskin' +p169013 +sa(dp169014 +g25273 +S'woodcut' +p169015 +sg25267 +g27 +sg25275 +S'1951' +p169016 +sg25268 +S'Rhinoceros' +p169017 +sg25270 +S'Leonard Baskin' +p169018 +sa(dp169019 +g25273 +S'woodcut' +p169020 +sg25267 +g27 +sg25275 +S'1952' +p169021 +sg25268 +S'Mantegna at Eremitani' +p169022 +sg25270 +S'Leonard Baskin' +p169023 +sa(dp169024 +g25273 +S'engraved woodblock' +p169025 +sg25267 +g27 +sg25275 +S'c. 1823' +p169026 +sg25268 +S"Aesop's Fables: 1" +p169027 +sg25270 +S'Thomas Bewick' +p169028 +sa(dp169029 +g25273 +S'engraved woodblock' +p169030 +sg25267 +g27 +sg25275 +S'c. 1823' +p169031 +sg25268 +S"Aesop's Fables: 2" +p169032 +sg25270 +S'Thomas Bewick' +p169033 +sa(dp169034 +g25273 +S'engraved woodblock' +p169035 +sg25267 +g27 +sg25275 +S'c. 1823' +p169036 +sg25268 +S"Aesop's Fables: 3" +p169037 +sg25270 +S'Thomas Bewick' +p169038 +sa(dp169039 +g25273 +S'engraved woodblock' +p169040 +sg25267 +g27 +sg25275 +S'c. 1823' +p169041 +sg25268 +S"Aesop's Fables: 4" +p169042 +sg25270 +S'Thomas Bewick' +p169043 +sa(dp169044 +g25268 +S'The Comedy of Death' +p169045 +sg25270 +S'Rodolphe Bresdin' +p169046 +sg25273 +S'lithograph on India paper' +p169047 +sg25275 +S'1854' +p169048 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f91.jpg' +p169049 +sg25267 +g27 +sa(dp169050 +g25273 +S'etching' +p169051 +sg25267 +g27 +sg25275 +S'unknown date\n' +p169052 +sg25268 +S'Auguste Renoir' +p169053 +sg25270 +S'Pierre Bonnard' +p169054 +sa(dp169055 +g25268 +S'Benedictio' +p169056 +sg25270 +S'Mary Corita Kent' +p169057 +sg25273 +S', second half of 20th century' +p169058 +sg25275 +S'\n' +p169059 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000af2.jpg' +p169060 +sg25267 +g27 +sa(dp169061 +g25273 +S'graphite' +p169062 +sg25267 +g27 +sg25275 +S'1929' +p169063 +sg25268 +S'Istanbul from Pera' +p169064 +sg25270 +S'Sir Muirhead Bone' +p169065 +sa(dp169066 +g25273 +S', 1952' +p169067 +sg25267 +g27 +sg25275 +S'\n' +p169068 +sg25268 +S'The Lord Is With Thee' +p169069 +sg25270 +S'Mary Corita Kent' +p169070 +sa(dp169071 +g25268 +S'Un quiproquo - Vous vous trompez... allez... au diable...' +p169072 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169073 +sg25273 +S'lithograph' +p169074 +sg25275 +S'1838' +p169075 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009240.jpg' +p169076 +sg25267 +g27 +sa(dp169077 +g25268 +S'Lagrange' +p169078 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169079 +sg25273 +S'lithograph' +p169080 +sg25275 +S'1849' +p169081 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000942e.jpg' +p169082 +sg25267 +g27 +sa(dp169083 +g25268 +S'Auguste Avond' +p169084 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169085 +sg25273 +S'lithograph' +p169086 +sg25275 +S'1849' +p169087 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000944d.jpg' +p169088 +sg25267 +g27 +sa(dp169089 +g25268 +S'Alex. Thomas Marie' +p169090 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169091 +sg25273 +S'lithograph' +p169092 +sg25275 +S'1849' +p169093 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000944e.jpg' +p169094 +sg25267 +g27 +sa(dp169095 +g25268 +S'Jos. Ant. Ronjac' +p169096 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169097 +sg25273 +S'lithograph' +p169098 +sg25275 +S'1849' +p169099 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009447.jpg' +p169100 +sg25267 +g27 +sa(dp169101 +g25268 +S'Gustave Sautayra' +p169102 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169103 +sg25273 +S'lithograph' +p169104 +sg25275 +S'1849' +p169105 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000944b.jpg' +p169106 +sg25267 +g27 +sa(dp169107 +g25268 +S'Le Jeune Estancelin est oblig\xc3\xa9 de rentrer en classe!' +p169108 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169109 +sg25273 +S'lithograph' +p169110 +sg25275 +S'1849' +p169111 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000945c.jpg' +p169112 +sg25267 +g27 +sa(dp169113 +g25268 +S'Le Jeune Estancelin est oblig\xc3\xa9 de rentrer en classe!' +p169114 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169115 +sg25273 +S'lithograph' +p169116 +sg25275 +S'1849' +p169117 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000945d.jpg' +p169118 +sg25267 +g27 +sa(dp169119 +g25268 +S'Les D\xc3\xa9l\xc3\xa9gu\xc3\xa9s du club central socialiste ont repouss\xc3\xa9...' +p169120 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169121 +sg25273 +S'lithograph' +p169122 +sg25275 +S'1849' +p169123 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009457.jpg' +p169124 +sg25267 +g27 +sa(dp169125 +g25273 +S'charcoal heightened with white on brown paper' +p169126 +sg25267 +g27 +sg25275 +S'1898' +p169127 +sg25268 +S'The Watchman' +p169128 +sg25270 +S'Sir Muirhead Bone' +p169129 +sa(dp169130 +g25268 +S'Quand un orateur ennuyeux monte a la tribune' +p169131 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169132 +sg25273 +S'lithograph' +p169133 +sg25275 +S'1850' +p169134 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009464.jpg' +p169135 +sg25267 +g27 +sa(dp169136 +g25268 +S'Oui, ma ch\xc3\xa8re, mon mari a raval\xc3\xa9 ma dignit\xc3\xa9...' +p169137 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169138 +sg25273 +S'lithograph' +p169139 +sg25275 +S'1849' +p169140 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000944f.jpg' +p169141 +sg25267 +g27 +sa(dp169142 +g25268 +S"Les Augures de l'Empire..." +p169143 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169144 +sg25273 +S'lithograph' +p169145 +sg25275 +S'1850' +p169146 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009467.jpg' +p169147 +sg25267 +g27 +sa(dp169148 +g25268 +S'Lilliputiens essayant de profiter du sommeil...' +p169149 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169150 +sg25273 +S'lithograph' +p169151 +sg25275 +S'1850' +p169152 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009462.jpg' +p169153 +sg25267 +g27 +sa(dp169154 +g25268 +S'Les Fricoteurs politiques' +p169155 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169156 +sg25273 +S'lithograph' +p169157 +sg25275 +S'1850' +p169158 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009461.jpg' +p169159 +sg25267 +g27 +sa(dp169160 +g25268 +S"Grandeur et d\xc3\xa9cadence d'O. Barrot" +p169161 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169162 +sg25273 +S'lithograph' +p169163 +sg25275 +S'1851' +p169164 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009470.jpg' +p169165 +sg25267 +g27 +sa(dp169166 +g25268 +S'Les Malheurs du chimiste Dumas' +p169167 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169168 +sg25273 +S'lithograph' +p169169 +sg25275 +S'1851' +p169170 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000946b.jpg' +p169171 +sg25267 +g27 +sa(dp169172 +g25268 +S'Les Curieux Punis' +p169173 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169174 +sg25273 +S'lithograph' +p169175 +sg25275 +S'1851' +p169176 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000946c.jpg' +p169177 +sg25267 +g27 +sa(dp169178 +g25268 +S'Le Nid abandonn\xc3\xa9' +p169179 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169180 +sg25273 +S'lithograph' +p169181 +sg25275 +S'1851' +p169182 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009474.jpg' +p169183 +sg25267 +g27 +sa(dp169184 +g25268 +S"Le Sommeil d'Endymion-Berryer" +p169185 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169186 +sg25273 +S'lithograph' +p169187 +sg25275 +S'1851' +p169188 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009475.jpg' +p169189 +sg25267 +g27 +sa(dp169190 +g25273 +S'etching' +p169191 +sg25267 +g27 +sg25275 +S'1927' +p169192 +sg25268 +S'The Flight into Egypt' +p169193 +sg25270 +S'Frederick George Austin' +p169194 +sa(dp169195 +g25268 +S'La Souscription Napol\xc3\xa9onienne' +p169196 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169197 +sg25273 +S'lithograph' +p169198 +sg25275 +S'1851' +p169199 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009480.jpg' +p169200 +sg25267 +g27 +sa(dp169201 +g25268 +S'Une Panique de Lilliputiens...' +p169202 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169203 +sg25273 +S'lithograph' +p169204 +sg25275 +S'1851' +p169205 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000947c.jpg' +p169206 +sg25267 +g27 +sa(dp169207 +g25268 +S'Regrets Superflus!' +p169208 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169209 +sg25273 +S'lithograph' +p169210 +sg25275 +S'1851' +p169211 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009482.jpg' +p169212 +sg25267 +g27 +sa(dp169213 +g25268 +S'Docteur... je ne suis pas aussi malade...' +p169214 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169215 +sg25273 +S'lithograph' +p169216 +sg25275 +S'1851' +p169217 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000947b.jpg' +p169218 +sg25267 +g27 +sa(dp169219 +g25268 +S"Ce n'est pas encore cette fois-ci..." +p169220 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169221 +sg25273 +S'lithograph' +p169222 +sg25275 +S'1851' +p169223 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009479.jpg' +p169224 +sg25267 +g27 +sa(dp169225 +g25268 +S'Un Matamore portant une... botte...' +p169226 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169227 +sg25273 +S'lithograph' +p169228 +sg25275 +S'1851' +p169229 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009481.jpg' +p169230 +sg25267 +g27 +sa(dp169231 +g25268 +S'Un Chemin dangereux' +p169232 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169233 +sg25273 +S'lithograph' +p169234 +sg25275 +S'1851' +p169235 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009476.jpg' +p169236 +sg25267 +g27 +sa(dp169237 +g25268 +S'Un Lutteur malheureux' +p169238 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169239 +sg25273 +S'lithograph' +p169240 +sg25275 +S'1851' +p169241 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000947d.jpg' +p169242 +sg25267 +g27 +sa(dp169243 +g25268 +S'A Naples - Le meilleur des rois... (2nd plate)' +p169244 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169245 +sg25273 +S'lithograph' +p169246 +sg25275 +S'1851' +p169247 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000947a.jpg' +p169248 +sg25267 +g27 +sa(dp169249 +g25268 +S'Hamlet' +p169250 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169251 +sg25273 +S'lithograph' +p169252 +sg25275 +S'1851' +p169253 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009483.jpg' +p169254 +sg25267 +g27 +sa(dp169255 +g25273 +S'etching' +p169256 +sg25267 +g27 +sg25275 +S'1927' +p169257 +sg25268 +S'Two Bridges' +p169258 +sg25270 +S'Frederick George Austin' +p169259 +sa(dp169260 +g25268 +S'Henri Monnier (R\xc3\xb4le de Joseph Prudhomme)' +p169261 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169262 +sg25273 +S'lithograph' +p169263 +sg25275 +S'1852' +p169264 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094b1.jpg' +p169265 +sg25267 +g27 +sa(dp169266 +g25268 +S'La fusion' +p169267 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169268 +sg25273 +S'lithograph' +p169269 +sg25275 +S'1872' +p169270 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009566.jpg' +p169271 +sg25267 +g27 +sa(dp169272 +g25268 +S'La fusion' +p169273 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169274 +sg25273 +S'gillotype' +p169275 +sg25275 +S'1872' +p169276 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000955d.jpg' +p169277 +sg25267 +g27 +sa(dp169278 +g25268 +S'Les saltimbanques' +p169279 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169280 +sg25273 +S'gillotype on China paper' +p169281 +sg25275 +S'1880' +p169282 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009567.jpg' +p169283 +sg25267 +g27 +sa(dp169284 +g25268 +S'Fruchard, en buste' +p169285 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169286 +sg25273 +S'lithograph' +p169287 +sg25275 +S'1833' +p169288 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009210.jpg' +p169289 +sg25267 +g27 +sa(dp169290 +g25268 +S'Un nouveau nez' +p169291 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169292 +sg25273 +S'lithograph' +p169293 +sg25275 +S'1833' +p169294 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009214.jpg' +p169295 +sg25267 +g27 +sa(dp169296 +g25268 +S'Attach\xc3\xa9s par leur grandeur au rivage de la Seine...' +p169297 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169298 +sg25273 +S'lithograph' +p169299 +sg25275 +S'1850' +p169300 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009466.jpg' +p169301 +sg25267 +g27 +sa(dp169302 +g25268 +S"L'Artiste - Voila qui est termin\xc3\xa9!..." +p169303 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169304 +sg25273 +S'lithograph' +p169305 +sg25275 +S'1852' +p169306 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009493.jpg' +p169307 +sg25267 +g27 +sa(dp169308 +g25268 +S'Exp\xc3\xa9rience qui r\xc3\xa9ussit trop bien' +p169309 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169310 +sg25273 +S'lithograph' +p169311 +sg25275 +S'1853' +p169312 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094b2.jpg' +p169313 +sg25267 +g27 +sa(dp169314 +g25268 +S'Des gens dont le soleil r\xc3\xa9jouit peu la vue' +p169315 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169316 +sg25273 +S'lithograph' +p169317 +sg25275 +S'1855' +p169318 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094ba.jpg' +p169319 +sg25267 +g27 +sa(dp169320 +g25273 +S'etching' +p169321 +sg25267 +g27 +sg25275 +S'1926' +p169322 +sg25268 +S'A Woodman Resting' +p169323 +sg25270 +S'Frederick George Austin' +p169324 +sa(dp169325 +g25268 +S'Le Czar a S\xc3\xa9bastopol' +p169326 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169327 +sg25273 +S'lithograph' +p169328 +sg25275 +S'1855' +p169329 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094b8.jpg' +p169330 +sg25267 +g27 +sa(dp169331 +g25268 +S'La Lev\xc3\xa9e en masse en Russie...' +p169332 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169333 +sg25273 +S'lithograph' +p169334 +sg25275 +S'1855' +p169335 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094b3.jpg' +p169336 +sg25267 +g27 +sa(dp169337 +g25268 +S"C'est un peu dur d'\xc3\xaatre oblig\xc3\xa9" +p169338 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169339 +sg25273 +S'lithograph' +p169340 +sg25275 +S'1854' +p169341 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094b5.jpg' +p169342 +sg25267 +g27 +sa(dp169343 +g25268 +S"On dit que le chien est ami de l'homme..." +p169344 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169345 +sg25273 +S'lithograph' +p169346 +sg25275 +S'1855' +p169347 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094b4.jpg' +p169348 +sg25267 +g27 +sa(dp169349 +g25268 +S'Les Hommes de vingt-cinq ans...' +p169350 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169351 +sg25273 +S'lithograph' +p169352 +sg25275 +S'1855' +p169353 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094b9.jpg' +p169354 +sg25267 +g27 +sa(dp169355 +g25268 +S'A Naples: D\xc3\xa9fil\xc3\xa9 des... gardes-du-corps...' +p169356 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169357 +sg25273 +S'lithograph' +p169358 +sg25275 +S'1855' +p169359 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094c0.jpg' +p169360 +sg25267 +g27 +sa(dp169361 +g25268 +S'M. Prudhomme Philantrope' +p169362 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169363 +sg25273 +S'lithograph' +p169364 +sg25275 +S'1856' +p169365 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094be.jpg' +p169366 +sg25267 +g27 +sa(dp169367 +g25268 +S"L'Empereur du Maroc consultant... Desbarolles" +p169368 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169369 +sg25273 +S'lithograph' +p169370 +sg25275 +S'1859' +p169371 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094d5.jpg' +p169372 +sg25267 +g27 +sa(dp169373 +g25268 +S"A Man with Weapons (Un Homme d'armes)" +p169374 +sg25270 +S'Eug\xc3\xa8ne Delacroix' +p169375 +sg25273 +S'etching' +p169376 +sg25275 +S'1833' +p169377 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009596.jpg' +p169378 +sg25267 +g27 +sa(dp169379 +g25268 +S"Arabs of Oran (Arabes d'Oran)" +p169380 +sg25270 +S'Eug\xc3\xa8ne Delacroix' +p169381 +sg25273 +S'etching' +p169382 +sg25275 +S'1833' +p169383 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009598.jpg' +p169384 +sg25267 +g27 +sa(dp169385 +g25273 +S'etching' +p169386 +sg25267 +g27 +sg25275 +S'unknown date\n' +p169387 +sg25268 +S'Fania' +p169388 +sg25270 +S'William Auerbach-Levy' +p169389 +sa(dp169390 +g25268 +S'Study of a Woman, Viewed from the Back (\xc3\x89tude de femme vue de dos)' +p169391 +sg25270 +S'Eug\xc3\xa8ne Delacroix' +p169392 +sg25273 +S'etching' +p169393 +sg25275 +S'1833' +p169394 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f3c.jpg' +p169395 +sg25267 +g27 +sa(dp169396 +g25273 +S'lithograph' +p169397 +sg25267 +g27 +sg25275 +S'unknown date\n' +p169398 +sg25268 +S'Portrait' +p169399 +sg25270 +S'Andr\xc3\xa9 Derain' +p169400 +sa(dp169401 +g25268 +S'Noce de Village (Village Wedding)' +p169402 +sg25270 +S'Artist Information (' +p169403 +sg25273 +S'(artist after)' +p169404 +sg25275 +S'\n' +p169405 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005595.jpg' +p169406 +sg25267 +g27 +sa(dp169407 +g25268 +S'Noce de Village (Village Wedding)' +p169408 +sg25270 +S'Artist Information (' +p169409 +sg25273 +S'(artist after)' +p169410 +sg25275 +S'\n' +p169411 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005596.jpg' +p169412 +sg25267 +g27 +sa(dp169413 +g25268 +S'Noce de Village (Village Wedding)' +p169414 +sg25270 +S'Artist Information (' +p169415 +sg25273 +S'(artist after)' +p169416 +sg25275 +S'\n' +p169417 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005597.jpg' +p169418 +sg25267 +g27 +sa(dp169419 +g25268 +S'Noce de Village (Village Wedding)' +p169420 +sg25270 +S'Artist Information (' +p169421 +sg25273 +S'(artist after)' +p169422 +sg25275 +S'\n' +p169423 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005598.jpg' +p169424 +sg25267 +g27 +sa(dp169425 +g25268 +S'Noce de Village (Village Wedding)' +p169426 +sg25270 +S'Artist Information (' +p169427 +sg25273 +S'(artist after)' +p169428 +sg25275 +S'\n' +p169429 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005599.jpg' +p169430 +sg25267 +g27 +sa(dp169431 +g25268 +S'Noce de Village (Village Wedding)' +p169432 +sg25270 +S'Artist Information (' +p169433 +sg25273 +S'(artist after)' +p169434 +sg25275 +S'\n' +p169435 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000559a.jpg' +p169436 +sg25267 +g27 +sa(dp169437 +g25268 +S'Noce de Village (Village Wedding)' +p169438 +sg25270 +S'Artist Information (' +p169439 +sg25273 +S'(artist after)' +p169440 +sg25275 +S'\n' +p169441 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000559b.jpg' +p169442 +sg25267 +g27 +sa(dp169443 +g25268 +S'Noce de Village (Village Wedding)' +p169444 +sg25270 +S'Artist Information (' +p169445 +sg25273 +S'(artist after)' +p169446 +sg25275 +S'\n' +p169447 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000559c.jpg' +p169448 +sg25267 +g27 +sa(dp169449 +g25273 +S'etching' +p169450 +sg25267 +g27 +sg25275 +S'unknown date\n' +p169451 +sg25268 +S'Old Man' +p169452 +sg25270 +S'William Auerbach-Levy' +p169453 +sa(dp169454 +g25268 +S'Noce de Village (Village Wedding)' +p169455 +sg25270 +S'Artist Information (' +p169456 +sg25273 +S'(artist after)' +p169457 +sg25275 +S'\n' +p169458 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000559d.jpg' +p169459 +sg25267 +g27 +sa(dp169460 +g25268 +S'Noce de Village (Village Wedding)' +p169461 +sg25270 +S'Artist Information (' +p169462 +sg25273 +S'(artist after)' +p169463 +sg25275 +S'\n' +p169464 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000559e.jpg' +p169465 +sg25267 +g27 +sa(dp169466 +g25268 +S"Le Menuet de la mari\xc3\xa9e (The Bride's Minuet)" +p169467 +sg25270 +S'Philibert-Louis Debucourt' +p169468 +sg25273 +S'etching and wash manner printed in yellow, red, blue, pink, and black inks' +p169469 +sg25275 +S'1786' +p169470 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00010/a0001067.jpg' +p169471 +sg25267 +g27 +sa(dp169472 +g25273 +S'etching' +p169473 +sg25267 +g27 +sg25275 +S'1888' +p169474 +sg25268 +S'Large Basin of Ostend Harbor (Le Grand Bassin, Ostende)' +p169475 +sg25270 +S'James Ensor' +p169476 +sa(dp169477 +g25273 +S'etching and drypoint' +p169478 +sg25267 +g27 +sg25275 +S'1891' +p169479 +sg25268 +S'Gathering in a Park (Assemblee dans un parc)' +p169480 +sg25270 +S'James Ensor' +p169481 +sa(dp169482 +g25273 +S'lithograph' +p169483 +sg25267 +g27 +sg25275 +S'1951' +p169484 +sg25268 +S'He Walks Alone' +p169485 +sg25270 +S'Richard A. Florsheim' +p169486 +sa(dp169487 +g25273 +S'color lithograph' +p169488 +sg25267 +g27 +sg25275 +S'1955' +p169489 +sg25268 +S'The Fisherman' +p169490 +sg25270 +S'Arthur L. Flory' +p169491 +sa(dp169492 +g25273 +S'color lithograph' +p169493 +sg25267 +g27 +sg25275 +S'1955' +p169494 +sg25268 +S'The Poetess' +p169495 +sg25270 +S'Arthur L. Flory' +p169496 +sa(dp169497 +g25273 +S'color lithograph' +p169498 +sg25267 +g27 +sg25275 +S'1955' +p169499 +sg25268 +S'Flying Crows' +p169500 +sg25270 +S'Arthur L. Flory' +p169501 +sa(dp169502 +g25273 +S'color lithograph' +p169503 +sg25267 +g27 +sg25275 +S'1955' +p169504 +sg25268 +S'The Weirs' +p169505 +sg25270 +S'Arthur L. Flory' +p169506 +sa(dp169507 +g25273 +S'drypoint' +p169508 +sg25267 +g27 +sg25275 +S'1913' +p169509 +sg25268 +S'Cecco' +p169510 +sg25270 +S'William Auerbach-Levy' +p169511 +sa(dp169512 +g25273 +S'watercolor over black chalk on illustration board' +p169513 +sg25267 +g27 +sg25275 +S'unknown date\n' +p169514 +sg25268 +S'Saratoga Track' +p169515 +sg25270 +S'Paul Froelich' +p169516 +sa(dp169517 +g25268 +S'Pleasures of Brittany (Joies de Bretagne)' +p169518 +sg25270 +S'Paul Gauguin' +p169519 +sg25273 +S'lithograph (zinc) in black on imitation japan paper' +p169520 +sg25275 +S'1889' +p169521 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a70.jpg' +p169522 +sg25267 +g27 +sa(dp169523 +g25268 +S'Human Sorrow (Miseres humaines)' +p169524 +sg25270 +S'Artist Information (' +p169525 +sg25273 +S'French, 1867 - 1939' +p169526 +sg25275 +S'(artist)' +p169527 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a6d.jpg' +p169528 +sg25267 +g27 +sa(dp169529 +g25268 +S'Locusts and Ants: A Memory of Martinique (Les cigales et les fourmis)' +p169530 +sg25270 +S'Artist Information (' +p169531 +sg25273 +S'(artist)' +p169532 +sg25275 +S'\n' +p169533 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a72.jpg' +p169534 +sg25267 +g27 +sa(dp169535 +g25268 +S'Dramas of the Sea, Brittany (Les drames de la mer, Bretagne)' +p169536 +sg25270 +S'Artist Information (' +p169537 +sg25273 +S'(artist)' +p169538 +sg25275 +S'\n' +p169539 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a74.jpg' +p169540 +sg25267 +g27 +sa(dp169541 +g25273 +S'color woodcut' +p169542 +sg25267 +g27 +sg25275 +S'1953' +p169543 +sg25268 +S'Oiseaux (Birds)' +p169544 +sg25270 +S'John Greeley' +p169545 +sa(dp169546 +g25273 +S'hand-colored lithograph' +p169547 +sg25267 +g27 +sg25275 +S'1954' +p169548 +sg25268 +S'Children Playing' +p169549 +sg25270 +S'Gunther Kraus' +p169550 +sa(dp169551 +g25273 +S'color lithograph' +p169552 +sg25267 +g27 +sg25275 +S'unknown date\n' +p169553 +sg25268 +S'Cathedral at Palma (Night)' +p169554 +sg25270 +S'Christian Kruck' +p169555 +sa(dp169556 +g25273 +S'engraving' +p169557 +sg25267 +g27 +sg25275 +S'1932-1933' +p169558 +sg25268 +S"L'entomologiste" +p169559 +sg25270 +S'Jean-\xc3\x89mile Laboureur' +p169560 +sa(dp169561 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(publisher)' +p169562 +sg25268 +S'Scaffolding in the Sun' +p169563 +sg25270 +S'Artist Information (' +p169564 +sa(dp169565 +g25273 +S'drypoint [impression from cancelled plate]' +p169566 +sg25267 +g27 +sg25275 +S'1913' +p169567 +sg25268 +S'Cecco' +p169568 +sg25270 +S'William Auerbach-Levy' +p169569 +sa(dp169570 +g25268 +S'Christ Giving the Keys to Saint Peter' +p169571 +sg25270 +S'Lorenzo Monaco' +p169572 +sg25273 +S'tempera and gold leaf on vellum' +p169573 +sg25275 +S'c. 1395-1400' +p169574 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a0006748.jpg' +p169575 +sg25267 +g27 +sa(dp169576 +g25268 +S'Risen Christ between Saints Andrew and Longinus' +p169577 +sg25270 +S'Andrea Mantegna' +p169578 +sg25273 +S'engraving' +p169579 +sg25275 +S'c. 1472' +p169580 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7ca.jpg' +p169581 +sg25267 +g27 +sa(dp169582 +g25273 +S'engraving (etching?)' +p169583 +sg25267 +g27 +sg25275 +S'unknown date\n' +p169584 +sg25268 +S"Kitchen Garden of Anet (Le potager d'Anet)" +p169585 +sg25270 +S'Jacques Maret' +p169586 +sa(dp169587 +g25273 +S'5-color lithograph' +p169588 +sg25267 +g27 +sg25275 +S'1953' +p169589 +sg25268 +S'Red Horseman (Cavalier Rouge)' +p169590 +sg25270 +S'Marino Marini' +p169591 +sa(dp169592 +g25268 +S'Chateau de Chenonceau, 1re planche (The Chateau of Chenonceau, 1st plate)' +p169593 +sg25270 +S'Artist Information (' +p169594 +sg25273 +S'(artist after)' +p169595 +sg25275 +S'\n' +p169596 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000996d.jpg' +p169597 +sg25267 +g27 +sa(dp169598 +g25268 +S"L'abside de Notre-Dame de Paris (The Apsis ofthe Cathedral of Notre-Dame, Paris)" +p169599 +sg25270 +S'Charles Meryon' +p169600 +sg25273 +S'etching' +p169601 +sg25275 +S'1854' +p169602 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d2a.jpg' +p169603 +sg25267 +g27 +sa(dp169604 +g25268 +S'Ornament Panel: Two Sphinxes and Two Children Holding Palms' +p169605 +sg25270 +S'Artist Information (' +p169606 +sg25273 +S'(artist)' +p169607 +sg25275 +S'\n' +p169608 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7bb.jpg' +p169609 +sg25267 +g27 +sa(dp169610 +g25268 +S'Ornament Panel: Two Sphinxes Supporting Shields' +p169611 +sg25270 +S'Artist Information (' +p169612 +sg25273 +S'(artist)' +p169613 +sg25275 +S'\n' +p169614 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7b8.jpg' +p169615 +sg25267 +g27 +sa(dp169616 +g25268 +S'Ornament Panel: Triton and Two Infant Satyrs' +p169617 +sg25270 +S'Artist Information (' +p169618 +sg25273 +S'(artist)' +p169619 +sg25275 +S'\n' +p169620 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7ba.jpg' +p169621 +sg25267 +g27 +sa(dp169622 +g25268 +S'Ornament Panel: Four Children with a Cat and a Dog' +p169623 +sg25270 +S'Artist Information (' +p169624 +sg25273 +S'(artist)' +p169625 +sg25275 +S'\n' +p169626 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7b7.jpg' +p169627 +sg25267 +g27 +sa(dp169628 +g25273 +S'lithograph' +p169629 +sg25267 +g27 +sg25275 +S'1918' +p169630 +sg25268 +S'Horses' +p169631 +sg25270 +S'Acke Aslund' +p169632 +sa(dp169633 +g25268 +S'Victor Hugo' +p169634 +sg25270 +S'C\xc3\xa9lestin Nanteuil' +p169635 +sg25273 +S'etching' +p169636 +sg25275 +S'1833' +p169637 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009997.jpg' +p169638 +sg25267 +g27 +sa(dp169639 +g25268 +S'Bug-Jargal' +p169640 +sg25270 +S'C\xc3\xa9lestin Nanteuil' +p169641 +sg25273 +S'etching' +p169642 +sg25275 +S'1832' +p169643 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000999a.jpg' +p169644 +sg25267 +g27 +sa(dp169645 +g25268 +S'Notre-Dame de Paris' +p169646 +sg25270 +S'C\xc3\xa9lestin Nanteuil' +p169647 +sg25273 +S'etching' +p169648 +sg25275 +S'1832' +p169649 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009999.jpg' +p169650 +sg25267 +g27 +sa(dp169651 +g25268 +S"Le dernier jour d'un condamne" +p169652 +sg25270 +S'C\xc3\xa9lestin Nanteuil' +p169653 +sg25273 +S'etching' +p169654 +sg25275 +S'1833' +p169655 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009998.jpg' +p169656 +sg25267 +g27 +sa(dp169657 +g25273 +S'lithograph in black, blue, and green' +p169658 +sg25267 +g27 +sg25275 +S'unknown date\n' +p169659 +sg25268 +S'Owl' +p169660 +sg25270 +S'Hsiung Ping-Ming' +p169661 +sa(dp169662 +g25268 +S"Lace appraiser (L'Experte en Dentelles)" +p169663 +sg25270 +S'F\xc3\xa9licien Rops' +p169664 +sg25273 +S'etching and drypoint' +p169665 +sg25275 +S'1876' +p169666 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d807.jpg' +p169667 +sg25267 +g27 +sa(dp169668 +g25268 +S'Le Titre' +p169669 +sg25270 +S'Charles Germain de Saint-Aubin' +p169670 +sg25273 +S'etching' +p169671 +sg25275 +S'in or after 1756' +p169672 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000968c.jpg' +p169673 +sg25267 +g27 +sa(dp169674 +g25268 +S'Le Bain' +p169675 +sg25270 +S'Charles Germain de Saint-Aubin' +p169676 +sg25273 +S'etching' +p169677 +sg25275 +S'in or after 1756' +p169678 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009689.jpg' +p169679 +sg25267 +g27 +sa(dp169680 +g25273 +S'woodcut' +p169681 +sg25267 +g27 +sg25275 +S'1937' +p169682 +sg25268 +S'Last Trumpet' +p169683 +sg25270 +S'Boris Artzybasheff' +p169684 +sa(dp169685 +g25268 +S'Le Bate' +p169686 +sg25270 +S'Charles Germain de Saint-Aubin' +p169687 +sg25273 +S'etching' +p169688 +sg25275 +S'in or after 1756' +p169689 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009688.jpg' +p169690 +sg25267 +g27 +sa(dp169691 +g25268 +S'Le Damier' +p169692 +sg25270 +S'Charles Germain de Saint-Aubin' +p169693 +sg25273 +S'etching' +p169694 +sg25275 +S'in or after 1756' +p169695 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009687.jpg' +p169696 +sg25267 +g27 +sa(dp169697 +g25268 +S'Le Blesse' +p169698 +sg25270 +S'Charles Germain de Saint-Aubin' +p169699 +sg25273 +S'etching' +p169700 +sg25275 +S'in or after 1756' +p169701 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000968a.jpg' +p169702 +sg25267 +g27 +sa(dp169703 +g25268 +S'La Brouette' +p169704 +sg25270 +S'Charles Germain de Saint-Aubin' +p169705 +sg25273 +S'etching' +p169706 +sg25275 +S'in or after 1756' +p169707 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000968b.jpg' +p169708 +sg25267 +g27 +sa(dp169709 +g25268 +S'Titre' +p169710 +sg25270 +S'Charles Germain de Saint-Aubin' +p169711 +sg25273 +S'etching' +p169712 +sg25275 +S'in or after 1756' +p169713 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f80.jpg' +p169714 +sg25267 +g27 +sa(dp169715 +g25268 +S'Th\xc3\xa9\xc3\xa2tre Italien' +p169716 +sg25270 +S'Charles Germain de Saint-Aubin' +p169717 +sg25273 +S'etching' +p169718 +sg25275 +S'in or after 1756' +p169719 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f81.jpg' +p169720 +sg25267 +g27 +sa(dp169721 +g25268 +S'Ballet Champ\xc3\xaatre' +p169722 +sg25270 +S'Charles Germain de Saint-Aubin' +p169723 +sg25273 +S'etching' +p169724 +sg25275 +S'in or after 1756' +p169725 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f82.jpg' +p169726 +sg25267 +g27 +sa(dp169727 +g25268 +S'Le Duel' +p169728 +sg25270 +S'Charles Germain de Saint-Aubin' +p169729 +sg25273 +S'etching' +p169730 +sg25275 +S'in or after 1756' +p169731 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f83.jpg' +p169732 +sg25267 +g27 +sa(dp169733 +g25268 +S'Th\xc3\xa9\xc3\xa2tre Fran\xc3\xa7ais' +p169734 +sg25270 +S'Charles Germain de Saint-Aubin' +p169735 +sg25273 +S'etching' +p169736 +sg25275 +S'in or after 1756' +p169737 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f9d.jpg' +p169738 +sg25267 +g27 +sa(dp169739 +g25268 +S'La Toilette' +p169740 +sg25270 +S'Charles Germain de Saint-Aubin' +p169741 +sg25273 +S'etching' +p169742 +sg25275 +S'in or after 1756' +p169743 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f9e.jpg' +p169744 +sg25267 +g27 +sa(dp169745 +g25273 +S'etching on yellow laid paper' +p169746 +sg25267 +g27 +sg25275 +S'1941' +p169747 +sg25268 +S'The Grolier Club Library (Sketch)' +p169748 +sg25270 +S'John Taylor Arms' +p169749 +sa(dp169750 +g25268 +S'Laban cherchant ses dieux' +p169751 +sg25270 +S'Gabriel de Saint-Aubin' +p169752 +sg25273 +S', 1753' +p169753 +sg25275 +S'\n' +p169754 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008be9.jpg' +p169755 +sg25267 +g27 +sa(dp169756 +g25268 +S"Reconciliation of Abraham and David (Reconciliation d'Absalom et de David)" +p169757 +sg25270 +S'Gabriel de Saint-Aubin' +p169758 +sg25273 +S', 1752' +p169759 +sg25275 +S'\n' +p169760 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008be6.jpg' +p169761 +sg25267 +g27 +sa(dp169762 +g25268 +S"Allegory of the Dauphin's Convalescence (Allegorie sur la convalescence du Dauphin)" +p169763 +sg25270 +S'Gabriel de Saint-Aubin' +p169764 +sg25273 +S', 1752' +p169765 +sg25275 +S'\n' +p169766 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bde.jpg' +p169767 +sg25267 +g27 +sa(dp169768 +g25268 +S'Allegorie des mariages faits par la ville de Paris a la naissance du Duc de Bourgogne' +p169769 +sg25270 +S'Gabriel de Saint-Aubin' +p169770 +sg25273 +S', 1751' +p169771 +sg25275 +S'\n' +p169772 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008be1.jpg' +p169773 +sg25267 +g27 +sa(dp169774 +g25268 +S'Allegorie sur la mariage du Comte de Provence' +p169775 +sg25270 +S'Gabriel de Saint-Aubin' +p169776 +sg25273 +S', 1771' +p169777 +sg25275 +S'\n' +p169778 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009691.jpg' +p169779 +sg25267 +g27 +sa(dp169780 +g25268 +S'Expulsion of the Jesuits (Expulsion des Jesuites)' +p169781 +sg25270 +S'Gabriel de Saint-Aubin' +p169782 +sg25273 +S', 1761' +p169783 +sg25275 +S'\n' +p169784 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f5c.jpg' +p169785 +sg25267 +g27 +sa(dp169786 +g25268 +S'Young Woman on the Terrace (La jeune femme a la terrasse)' +p169787 +sg25270 +S'Gabriel de Saint-Aubin' +p169788 +sg25273 +S', unknown date' +p169789 +sg25275 +S'\n' +p169790 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ec4.jpg' +p169791 +sg25267 +g27 +sa(dp169792 +g25268 +S'The Charlatan (Le charlatan)' +p169793 +sg25270 +S'Gabriel de Saint-Aubin' +p169794 +sg25273 +S', c. 1760' +p169795 +sg25275 +S'\n' +p169796 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ec3.jpg' +p169797 +sg25267 +g27 +sa(dp169798 +g25268 +S'La colere de Neptune' +p169799 +sg25270 +S'Gabriel de Saint-Aubin' +p169800 +sg25273 +S', 1767' +p169801 +sg25275 +S'\n' +p169802 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f65.jpg' +p169803 +sg25267 +g27 +sa(dp169804 +g25268 +S'Four Vases (Les quatres vases)' +p169805 +sg25270 +S'Gabriel de Saint-Aubin' +p169806 +sg25273 +S', 1754' +p169807 +sg25275 +S'\n' +p169808 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008be7.jpg' +p169809 +sg25267 +g27 +sa(dp169810 +g25273 +S'etching on blue laid paper' +p169811 +sg25267 +g27 +sg25275 +S'1935' +p169812 +sg25268 +S"From Knoedler's Window MCMXXXV" +p169813 +sg25270 +S'John Taylor Arms' +p169814 +sa(dp169815 +g25268 +S'Allegorie des mariages faits par la ville de Paris a la naissance du Duc de Bourgogne' +p169816 +sg25270 +S'Gabriel de Saint-Aubin' +p169817 +sg25273 +S', 1751' +p169818 +sg25275 +S'\n' +p169819 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008be0.jpg' +p169820 +sg25267 +g27 +sa(dp169821 +g25268 +S'The Two Lovers (Les deux amants)' +p169822 +sg25270 +S'Gabriel de Saint-Aubin' +p169823 +sg25273 +S', 1750' +p169824 +sg25275 +S'\n' +p169825 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bdf.jpg' +p169826 +sg25267 +g27 +sa(dp169827 +g25268 +S"On ne s'avise jamais de tout" +p169828 +sg25270 +S'Gabriel de Saint-Aubin' +p169829 +sg25273 +S', 1761' +p169830 +sg25275 +S'\n' +p169831 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f62.jpg' +p169832 +sg25267 +g27 +sa(dp169833 +g25268 +S'Le Papillon et la Tortue (The Butterfly and the Turtle)' +p169834 +sg25270 +S'Charles Germain de Saint-Aubin' +p169835 +sg25273 +S'etching' +p169836 +sg25275 +S'in or after 1756' +p169837 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008be3.jpg' +p169838 +sg25267 +g27 +sa(dp169839 +g25273 +S'woodcut' +p169840 +sg25267 +g27 +sg25275 +S'1916' +p169841 +sg25268 +S'Mother (Mutter)' +p169842 +sg25270 +S'Karl Schmidt-Rottluff' +p169843 +sa(dp169844 +g25268 +S'A Bishop' +p169845 +sg25270 +S'Martin Schongauer' +p169846 +sg25273 +S'engraving' +p169847 +sg25275 +S'c. 1480/1490' +p169848 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4ba.jpg' +p169849 +sg25267 +g27 +sa(dp169850 +g25273 +S'(artist after)' +p169851 +sg25267 +g27 +sg25275 +S'\n' +p169852 +sg25268 +S'"Beatitudes"' +p169853 +sg25270 +S'Artist Information (' +p169854 +sa(dp169855 +g25273 +S'etching and aquatint' +p169856 +sg25267 +g27 +sg25275 +S'unknown date\n' +p169857 +sg25268 +S'Quadrennial Phenomenon' +p169858 +sg25270 +S'Clarence E. Sherdon' +p169859 +sa(dp169860 +g25273 +S'woodcut' +p169861 +sg25267 +g27 +sg25275 +S'unknown date\n' +p169862 +sg25268 +S'All Around the Town' +p169863 +sg25270 +S'Clarence E. Sherdon' +p169864 +sa(dp169865 +g25273 +S'etching on cream laid paper' +p169866 +sg25267 +g27 +sg25275 +S'1931' +p169867 +sg25268 +S'The Balcony' +p169868 +sg25270 +S'John Taylor Arms' +p169869 +sa(dp169870 +g25273 +S'color woodcut' +p169871 +sg25267 +g27 +sg25275 +S'1954' +p169872 +sg25268 +S'The Print Maker' +p169873 +sg25270 +S'Clarence E. Sherdon' +p169874 +sa(dp169875 +g25268 +S'The Flooded Seine in 1910 (La Seine en crue, en 1910)' +p169876 +sg25270 +S'Paul Signac' +p169877 +sg25273 +S'lithograph' +p169878 +sg25275 +S'1923' +p169879 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099c1.jpg' +p169880 +sg25267 +g27 +sa(dp169881 +g25268 +S'Allegory of the Emperor and the Pope' +p169882 +sg25270 +S'Italian 15th Century' +p169883 +sg25273 +S'sheet: 27.4 x 20 cm (10 13/16 x 7 7/8 in.)' +p169884 +sg25275 +S'\nengraving' +p169885 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c2/a000c21a.jpg' +p169886 +sg25267 +g27 +sa(dp169887 +g25268 +S'A Foolish Virgin' +p169888 +sg25270 +S'Martin Schongauer' +p169889 +sg25273 +S'engraving' +p169890 +sg25275 +S'1475/1491' +p169891 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00020/a000202d.jpg' +p169892 +sg25267 +g27 +sa(dp169893 +g25268 +S'A Bust Figure of a Foolish Virgin Holding Her Inverted Lamp' +p169894 +sg25270 +S'Artist Information (' +p169895 +sg25273 +S'(artist after)' +p169896 +sg25275 +S'\n' +p169897 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef99.jpg' +p169898 +sg25267 +g27 +sa(dp169899 +g25273 +S'overall: 25 x 17.4 cm (9 13/16 x 6 7/8 in.)' +p169900 +sg25267 +g27 +sg25275 +S'\nminiature on vellum' +p169901 +sg25268 +S'Nine Apostles preparing for the Washing of the Feet (?) [recto]' +p169902 +sg25270 +S'Spanish 12th Century' +p169903 +sa(dp169904 +g25273 +S'overall: 25 x 17.4 cm (9 13/16 x 6 7/8 in.)' +p169905 +sg25267 +g27 +sg25275 +S'\nminiature on vellum' +p169906 +sg25268 +S'The Crucifixion [verso]' +p169907 +sg25270 +S'Spanish 12th Century' +p169908 +sa(dp169909 +g25273 +S'color etching' +p169910 +sg25267 +g27 +sg25275 +S'unknown date\n' +p169911 +sg25268 +S'Circling Gulls' +p169912 +sg25270 +S'Julia Andrews' +p169913 +sa(dp169914 +g25273 +S'etching and aquatint' +p169915 +sg25267 +g27 +sg25275 +S'unknown date\n' +p169916 +sg25268 +S'Mountain Woman' +p169917 +sg25270 +S'Julia Andrews' +p169918 +sa(dp169919 +g25268 +S'Le Coup de canon du Palais-Royal' +p169920 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169921 +sg25273 +S'lithograph' +p169922 +sg25275 +S'1846' +p169923 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009391.jpg' +p169924 +sg25267 +g27 +sa(dp169925 +g25273 +S'graphite on wove paper' +p169926 +sg25267 +g27 +sg25275 +S'1930' +p169927 +sg25268 +S'The Balcony' +p169928 +sg25270 +S'John Taylor Arms' +p169929 +sa(dp169930 +g25268 +S'Le Cordon donc!...' +p169931 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169932 +sg25273 +S'lithograph' +p169933 +sg25275 +S'1847' +p169934 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093db.jpg' +p169935 +sg25267 +g27 +sa(dp169936 +g25268 +S"Inconv\xc3\xa9nient d'avoir un parent qui se nomme Babylas..." +p169937 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169938 +sg25273 +S'lithograph' +p169939 +sg25275 +S'1850' +p169940 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009409.jpg' +p169941 +sg25267 +g27 +sa(dp169942 +g25268 +S'Le Festin de Baltazar-V\xc3\xa9ron' +p169943 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169944 +sg25273 +S'lithograph' +p169945 +sg25275 +S'1850' +p169946 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009460.jpg' +p169947 +sg25267 +g27 +sa(dp169948 +g25268 +S"Ces pauvres animaux... n'se reconnaissent... plus..." +p169949 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169950 +sg25273 +S'lithograph' +p169951 +sg25275 +S'1852' +p169952 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000948e.jpg' +p169953 +sg25267 +g27 +sa(dp169954 +g25268 +S'Physionomies de spectateurs de la Porte St.-Martin...' +p169955 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169956 +sg25273 +S'lithograph' +p169957 +sg25275 +S'1852' +p169958 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000948f.jpg' +p169959 +sg25267 +g27 +sa(dp169960 +g25268 +S'Allons bourgeois, levez-vous vite...' +p169961 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169962 +sg25273 +S'lithograph' +p169963 +sg25275 +S'1852' +p169964 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009496.jpg' +p169965 +sg25267 +g27 +sa(dp169966 +g25268 +S'Un Train de plaisir un peu trop gai' +p169967 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169968 +sg25273 +S'lithograph' +p169969 +sg25275 +S'1852' +p169970 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094a5.jpg' +p169971 +sg25267 +g27 +sa(dp169972 +g25268 +S'Tiens... notre jardin... produit des perdreaux!...' +p169973 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169974 +sg25273 +S'lithograph' +p169975 +sg25275 +S'1857' +p169976 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094c1.jpg' +p169977 +sg25267 +g27 +sa(dp169978 +g25268 +S'Mossieu le directeur' +p169979 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169980 +sg25273 +S'lithograph' +p169981 +sg25275 +S'1856' +p169982 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094cd.jpg' +p169983 +sg25267 +g27 +sa(dp169984 +g25268 +S"Les Caniches et les rentiers allant f\xc3\xa9liciter l'Assembl\xc3\xa9e..." +p169985 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169986 +sg25273 +S'lithograph' +p169987 +sg25275 +S'1850' +p169988 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000945f.jpg' +p169989 +sg25267 +g27 +sa(dp169990 +g25273 +S'graphite on wove paper' +p169991 +sg25267 +g27 +sg25275 +S'1929' +p169992 +sg25268 +S'Rio dei Santi Apostoli' +p169993 +sg25270 +S'John Taylor Arms' +p169994 +sa(dp169995 +g25268 +S'Un r\xc3\xaave qui tourne a la r\xc3\xa9alit\xc3\xa9' +p169996 +sg25270 +S'Honor\xc3\xa9 Daumier' +p169997 +sg25273 +S'lithograph' +p169998 +sg25275 +S'1855' +p169999 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094b7.jpg' +p170000 +sg25267 +g27 +sa(dp170001 +g25268 +S"Une Famille qui vient d'apprendre... un impot sur les chiens" +p170002 +sg25270 +S'Honor\xc3\xa9 Daumier' +p170003 +sg25273 +S'lithograph' +p170004 +sg25275 +S'1855' +p170005 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094c5.jpg' +p170006 +sg25267 +g27 +sa(dp170007 +g25268 +S'Le Nouveau polichinelle napolitain' +p170008 +sg25270 +S'Honor\xc3\xa9 Daumier' +p170009 +sg25273 +S'lithograph' +p170010 +sg25275 +S'1855' +p170011 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094bf.jpg' +p170012 +sg25267 +g27 +sa(dp170013 +g25268 +S'Facheux r\xc3\xa9sultat... de la viande de cheval' +p170014 +sg25270 +S'Honor\xc3\xa9 Daumier' +p170015 +sg25273 +S'lithograph' +p170016 +sg25275 +S'1856' +p170017 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094bd.jpg' +p170018 +sg25267 +g27 +sa(dp170019 +g25268 +S'Le Boeuf-\xc3\xa9l\xc3\xa9phant nouvelle vari\xc3\xa9t\xc3\xa9' +p170020 +sg25270 +S'Honor\xc3\xa9 Daumier' +p170021 +sg25273 +S'lithograph' +p170022 +sg25275 +S'1856' +p170023 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094bc.jpg' +p170024 +sg25267 +g27 +sa(dp170025 +g25268 +S'Parisiens prenant... leurs pr\xc3\xa9cautions...' +p170026 +sg25270 +S'Honor\xc3\xa9 Daumier' +p170027 +sg25273 +S'lithograph' +p170028 +sg25275 +S'1857' +p170029 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094ca.jpg' +p170030 +sg25267 +g27 +sa(dp170031 +g25268 +S'Un nouveau marius' +p170032 +sg25270 +S'Honor\xc3\xa9 Daumier' +p170033 +sg25273 +S'lithograph' +p170034 +sg25275 +S'1856' +p170035 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094cc.jpg' +p170036 +sg25267 +g27 +sa(dp170037 +g25268 +S'Voila... mon pot de fleurs... va avoir du soleil...' +p170038 +sg25270 +S'Honor\xc3\xa9 Daumier' +p170039 +sg25273 +S'lithograph' +p170040 +sg25275 +S'1852' +p170041 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a000590d.jpg' +p170042 +sg25267 +g27 +sa(dp170043 +g25268 +S'La Rencontre du tailleur' +p170044 +sg25270 +S'Honor\xc3\xa9 Daumier' +p170045 +sg25273 +S'lithograph' +p170046 +sg25275 +S'1853' +p170047 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094b6.jpg' +p170048 +sg25267 +g27 +sa(dp170049 +g25268 +S'Il faut me trouver... trois pi\xc3\xa8ces...' +p170050 +sg25270 +S'Honor\xc3\xa9 Daumier' +p170051 +sg25273 +S'lithograph' +p170052 +sg25275 +S'1856' +p170053 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094c2.jpg' +p170054 +sg25267 +g27 +sa(dp170055 +g25273 +S'etching on blue laid paper' +p170056 +sg25267 +g27 +sg25275 +S'1930' +p170057 +sg25268 +S'Rio del Santi Apostoli' +p170058 +sg25270 +S'John Taylor Arms' +p170059 +sa(dp170060 +g25268 +S'Modes du printemps de 1855' +p170061 +sg25270 +S'Honor\xc3\xa9 Daumier' +p170062 +sg25273 +S'lithograph' +p170063 +sg25275 +S'1855' +p170064 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094c3.jpg' +p170065 +sg25267 +g27 +sa(dp170066 +g25273 +S'monotype' +p170067 +sg25267 +g27 +sg25275 +S'unknown date\n' +p170068 +sg25268 +S'Prayer I' +p170069 +sg25270 +S'Bernard Reder' +p170070 +sa(dp170071 +g25268 +S'Night Windows' +p170072 +sg25270 +S'John Sloan' +p170073 +sg25273 +S'etching' +p170074 +sg25275 +S'1910' +p170075 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b8e.jpg' +p170076 +sg25267 +g27 +sa(dp170077 +g25273 +S'color lithograph' +p170078 +sg25267 +g27 +sg25275 +S'1955' +p170079 +sg25268 +S"Gertrude's Birds" +p170080 +sg25270 +S'Benton Murdoch Spruance' +p170081 +sa(dp170082 +g25273 +S'lithograph' +p170083 +sg25267 +g27 +sg25275 +S'1955' +p170084 +sg25268 +S'Study for a Messenger V' +p170085 +sg25270 +S'June Wayne' +p170086 +sa(dp170087 +g25273 +S'lithograph' +p170088 +sg25267 +g27 +sg25275 +S'unknown date\n' +p170089 +sg25268 +S'Final Jury' +p170090 +sg25270 +S'June Wayne' +p170091 +sa(dp170092 +g25273 +S'etching and aquatint' +p170093 +sg25267 +g27 +sg25275 +S'probably 1946' +p170094 +sg25268 +S'Les grands toits sous la neige' +p170095 +sg25270 +S'Michel Ciry' +p170096 +sa(dp170097 +g25273 +S'woodcut block' +p170098 +sg25267 +g27 +sg25275 +S'unknown date\n' +p170099 +sg25268 +S'Cul-de-Lampe: Dedication Page for J.B. Oudry\'s Edition of La Fontaine\'s "Fables"' +p170100 +sg25270 +S'Jean Michel Papillon I' +p170101 +sa(dp170102 +g25273 +S'woodcut block' +p170103 +sg25267 +g27 +sg25275 +S'unknown date\n' +p170104 +sg25268 +S'Cul-de-Lampe: Fable XV for J.B. Oudry\'s Edition of La Fontaine\'s "Fables"' +p170105 +sg25270 +S'Jean Michel Papillon I' +p170106 +sa(dp170107 +g25273 +S'woodcut block' +p170108 +sg25267 +g27 +sg25275 +S'unknown date\n' +p170109 +sg25268 +S'Cul-de-Lampe: Fable XI for J.B. Oudry\'s Edition of La Fontaine\'s "Fables"' +p170110 +sg25270 +S'Jean Michel Papillon I' +p170111 +sa(dp170112 +g25273 +S'etching in brown on blue laid paper' +p170113 +sg25267 +g27 +sg25275 +S'1923' +p170114 +sg25268 +S'Leon' +p170115 +sg25270 +S'John Taylor Arms' +p170116 +sa(dp170117 +g25273 +S'woodcut block' +p170118 +sg25267 +g27 +sg25275 +S'unknown date\n' +p170119 +sg25268 +S'Cul-de-Lampe: Fable XXI for J.B. Oudry\'s Edition of La Fontaine\'s "Fables"' +p170120 +sg25270 +S'Jean Michel Papillon I' +p170121 +sa(dp170122 +g25268 +S'Edouard Vuillard' +p170123 +sg25270 +S'Odilon Redon' +p170124 +sg25273 +S'lithograph' +p170125 +sg25275 +S'1900' +p170126 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099ae.jpg' +p170127 +sg25267 +g27 +sa(dp170128 +g25268 +S'Pierre Bonnard' +p170129 +sg25270 +S'Odilon Redon' +p170130 +sg25273 +S'lithograph' +p170131 +sg25275 +S'1900' +p170132 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099b4.jpg' +p170133 +sg25267 +g27 +sa(dp170134 +g25268 +S'Paul Serusier' +p170135 +sg25270 +S'Odilon Redon' +p170136 +sg25273 +S'lithograph' +p170137 +sg25275 +S'1903' +p170138 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099af.jpg' +p170139 +sg25267 +g27 +sa(dp170140 +g25268 +S'Maurice Denis' +p170141 +sg25270 +S'Odilon Redon' +p170142 +sg25273 +S'lithograph' +p170143 +sg25275 +S'1903' +p170144 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099b0.jpg' +p170145 +sg25267 +g27 +sa(dp170146 +g25268 +S"Tete d'Enfant (Head of a Child)" +p170147 +sg25270 +S'Odilon Redon' +p170148 +sg25273 +S'lithograph' +p170149 +sg25275 +S'1899' +p170150 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099b6.jpg' +p170151 +sg25267 +g27 +sa(dp170152 +g25273 +S'woodcut block' +p170153 +sg25267 +g27 +sg25275 +S'unknown date\n' +p170154 +sg25268 +S'Green Atelier [recto]' +p170155 +sg25270 +S'Adja Yunkers' +p170156 +sa(dp170157 +g25273 +S'woodcut block' +p170158 +sg25267 +g27 +sg25275 +S'unknown date\n' +p170159 +sg25268 +S'Green Atelier [verso]' +p170160 +sg25270 +S'Adja Yunkers' +p170161 +sa(dp170162 +g25273 +S'woodcut block' +p170163 +sg25267 +g27 +sg25275 +S'unknown date\n' +p170164 +sg25268 +S'Portrait of a Weeping Woman [recto]' +p170165 +sg25270 +S'Adja Yunkers' +p170166 +sa(dp170167 +g25273 +S'woodcut block' +p170168 +sg25267 +g27 +sg25275 +S'unknown date\n' +p170169 +sg25268 +S'Portrait of a Weeping Woman [verso]' +p170170 +sg25270 +S'Adja Yunkers' +p170171 +sa(dp170172 +g25268 +S'The Grand Canal' +p170173 +sg25270 +S'John Taylor Arms' +p170174 +sg25273 +S'graphite on coated machine-made paper' +p170175 +sg25275 +S'1930' +p170176 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a00008a3.jpg' +p170177 +sg25267 +g27 +sa(dp170178 +g25268 +S'A Lord from the Period of Francis I (Un Seigneur de temps de Fran\xc3\xa7ois Ier)' +p170179 +sg25270 +S'Eug\xc3\xa8ne Delacroix' +p170180 +sg25273 +S'etching' +p170181 +sg25275 +S'1833' +p170182 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009597.jpg' +p170183 +sg25267 +g27 +sa(dp170184 +g25268 +S"Jewish Woman of Algiers (Juive d'Alger)" +p170185 +sg25270 +S'Eug\xc3\xa8ne Delacroix' +p170186 +sg25273 +S'etching' +p170187 +sg25275 +S'1833' +p170188 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009599.jpg' +p170189 +sg25267 +g27 +sa(dp170190 +g25268 +S'Geese in Flight' +p170191 +sg25270 +S'Leila T. Bauman' +p170192 +sg25273 +S'oil on canvas' +p170193 +sg25275 +S'1850 or later' +p170194 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000012.jpg' +p170195 +sg25267 +g27 +sa(dp170196 +g25268 +S'U.S. Mail Boat' +p170197 +sg25270 +S'Leila T. Bauman' +p170198 +sg25273 +S'oil on canvas' +p170199 +sg25275 +S'1855 or later' +p170200 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000011.jpg' +p170201 +sg25267 +g27 +sa(dp170202 +g25268 +S'Little Girl in Lavender' +p170203 +sg25270 +S'John Bradley' +p170204 +sg25273 +S'oil on canvas' +p170205 +sg25275 +S'c. 1840' +p170206 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000002a.jpg' +p170207 +sg25267 +g27 +sa(dp170208 +g25268 +S'Bareback Riders' +p170209 +sg25270 +S'W.H. Brown' +p170210 +sg25273 +S'oil on cardboard on wood' +p170211 +sg25275 +S'1886' +p170212 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000002e.jpg' +p170213 +sg25267 +g27 +sa(dp170214 +g25268 +S'Red Jacket' +p170215 +sg25270 +S'A. Haddock' +p170216 +sg25273 +S'oil on paper on cardboard' +p170217 +sg25275 +S'after 1828' +p170218 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000d4.jpg' +p170219 +sg25267 +g27 +sa(dp170220 +g25268 +S'Skating Scene' +p170221 +sg25270 +S'John Toole' +p170222 +sg25273 +S'oil on canvas' +p170223 +sg25275 +S'c. 1835' +p170224 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000279.jpg' +p170225 +sg25267 +g27 +sa(dp170226 +g25268 +S'Burning of Old South Church, Bath, Maine' +p170227 +sg25270 +S'John Hilling' +p170228 +sg25273 +S'oil on canvas' +p170229 +sg25275 +S'c. 1854' +p170230 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000fd.jpg' +p170231 +sg25267 +g27 +sa(dp170232 +g25268 +S'Cat and Kittens' +p170233 +sg25270 +S'American 19th Century' +p170234 +sg25273 +S'overall: 30 x 34.9 cm (11 13/16 x 13 3/4 in.)\r\nframed: 38.4 x 43.2 x 2.5 cm (15 1/8 x 17 x 1 in.)' +p170235 +sg25275 +S'\noil on millboard' +p170236 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000400.jpg' +p170237 +sg25267 +g27 +sa(dp170238 +g25268 +S'Venetian Mirror' +p170239 +sg25270 +S'John Taylor Arms' +p170240 +sg25273 +S'etching in brown on blue laid paper' +p170241 +sg25275 +S'1935' +p170242 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000930.jpg' +p170243 +sg25267 +g27 +sa(dp170244 +g25268 +S'The Cheney Family' +p170245 +sg25270 +S'American 18th Century' +p170246 +sg25273 +S'overall: 49 x 65 cm (19 5/16 x 25 9/16 in.)\r\nframed: 64.5 x 80 x 7.3 cm (25 3/8 x 31 1/2 x 2 7/8 in.)' +p170247 +sg25275 +S'\noil on canvas' +p170248 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000411.jpg' +p170249 +sg25267 +g27 +sa(dp170250 +g25268 +S'Family Burying Ground' +p170251 +sg25270 +S'American 19th Century' +p170252 +sg25273 +S'overall: 50 x 61 cm (19 11/16 x 24 in.)\r\nframed: 64.1 x 74.9 x 3.4 cm (25 1/4 x 29 1/2 x 1 5/16 in.)' +p170253 +sg25275 +S'\noil on canvas' +p170254 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003ff.jpg' +p170255 +sg25267 +g27 +sa(dp170256 +g25268 +S'Martha' +p170257 +sg25270 +S'American 19th Century' +p170258 +sg25273 +S'overall: 91.5 x 92.3 cm (36 x 36 5/16 in.)\r\nframed: 105.7 x 106.3 x 6.6 cm (41 5/8 x 41 7/8 x 2 5/8 in.)' +p170259 +sg25275 +S'\noil on canvas' +p170260 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a000043b.jpg' +p170261 +sg25267 +g27 +sa(dp170262 +g25268 +S'Aphia Salisbury Rich and Baby Edward' +p170263 +sg25270 +S'Milton W. Hopkins' +p170264 +sg25273 +S'oil on wood' +p170265 +sg25275 +S'c. 1833' +p170266 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000107.jpg' +p170267 +sg25267 +g27 +sa(dp170268 +g25268 +S'Twenty-two Houses and a Church' +p170269 +sg25270 +S'American 19th Century' +p170270 +sg25273 +S'overall: 61.2 x 76.5 cm (24 1/8 x 30 1/8 in.)\r\nframed: 79 x 94.9 x 9.8 cm (31 1/8 x 37 3/8 x 3 7/8 in.)' +p170271 +sg25275 +S'\nwater-based medium on canvas' +p170272 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000442.jpg' +p170273 +sg25267 +g27 +sa(dp170274 +g25268 +S'Village by the River' +p170275 +sg25270 +S'American 19th Century' +p170276 +sg25273 +S'overall: 51 x 85.1 cm (20 1/16 x 33 1/2 in.)\r\nframed: 64.7 x 99 x 5 cm (25 1/2 x 39 x 1 15/16 in.)' +p170277 +sg25275 +S'\noil on canvas' +p170278 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c654.jpg' +p170279 +sg25267 +g27 +sa(dp170280 +g25268 +S'Ch\xc3\xa2teau Noir' +p170281 +sg25270 +S'Paul C\xc3\xa9zanne' +p170282 +sg25273 +S'oil on canvas' +p170283 +sg25275 +S'1900/1904' +p170284 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006a9.jpg' +p170285 +sg25267 +S"Cézanne's paintings after about 1895 are more somber, more mysterious than those of earlier years. His colors deepen, and his brushwork assumes greater expression. Spaces become more enclosed. Compare this landscape with \n That painting is open, while a web of branches screens this one. This place is crabbed and remote—much more difficult and forbidding. Compare the skies, too. This blue is no longer airy, but leaden, darkened with touches of purple and green. Even the pale buildings have been replaced by a deeper ocher. Late in his life Cézanne was attracted not only to the fundamental order of nature, but also its chaos and restlessness. The moody loneliness of this place seems matched to his own. He painted Château Noir several times. It was the subject of local legends and had earlier been called Château Diable, "Castle of the Devil." With its Gothic windows and incomplete walls, it has the look of a ruin.\n Cézanne still painted in the open air, directly in front of his subject, as impressionist Camille Pissarro had encouraged him to do. But this is far from a quick recording of fleeting visual effects. It is a long and intense meditation, an attempt to "realize"—to use Cézanne's word—his complete sensation of this place, which involves his temperament, his vision, and his mind equally.\n " +p170286 +sa(dp170287 +g25268 +S'Vase of Flowers' +p170288 +sg25270 +S'Paul C\xc3\xa9zanne' +p170289 +sg25273 +S'oil on canvas' +p170290 +sg25275 +S'1900/1903' +p170291 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006aa.jpg' +p170292 +sg25267 +g27 +sa(dp170293 +g25273 +S'etching' +p170294 +sg25267 +g27 +sg25275 +S'unknown date\n' +p170295 +sg25268 +S'Scene in a Dutch City with Pile Driver in Foreground' +p170296 +sg25270 +S'George Hendrik Breitner' +p170297 +sa(dp170298 +g25273 +S'etching' +p170299 +sg25267 +g27 +sg25275 +S'unknown date\n' +p170300 +sg25268 +S'Galloping Hussars in Front View' +p170301 +sg25270 +S'George Hendrik Breitner' +p170302 +sa(dp170303 +g25268 +S'Lace in Stone, Rouen Cathedral' +p170304 +sg25270 +S'John Taylor Arms' +p170305 +sg25273 +S'etching on laid paper' +p170306 +sg25275 +S'1927' +p170307 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000931.jpg' +p170308 +sg25267 +g27 +sa(dp170309 +g25273 +S'etching' +p170310 +sg25267 +g27 +sg25275 +S'unknown date\n' +p170311 +sg25268 +S'Hussars Riding Single File' +p170312 +sg25270 +S'George Hendrik Breitner' +p170313 +sa(dp170314 +g25273 +S'etching' +p170315 +sg25267 +g27 +sg25275 +S'unknown date\n' +p170316 +sg25268 +S'Scene with Horses Standing in Stream' +p170317 +sg25270 +S'George Hendrik Breitner' +p170318 +sa(dp170319 +g25268 +S'Morning Haze' +p170320 +sg25270 +S'Claude Monet' +p170321 +sg25273 +S'oil on canvas' +p170322 +sg25275 +S'1888' +p170323 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037c4.jpg' +p170324 +sg25267 +g27 +sa(dp170325 +g25273 +S'1 vol: ill: 74 prints' +p170326 +sg25267 +g27 +sg25275 +S'unknown date\n' +p170327 +sg25268 +S'Album of Prints' +p170328 +sg25270 +S'John Sartain' +p170329 +sa(dp170330 +g25273 +S'American, 1837 - 1900' +p170331 +sg25267 +g27 +sg25275 +S'(author)' +p170332 +sg25268 +S'American Etchings' +p170333 +sg25270 +S'Artist Information (' +p170334 +sa(dp170335 +g25273 +S'American, 1837 - 1900' +p170336 +sg25267 +g27 +sg25275 +S'(author)' +p170337 +sg25268 +S'Foreign Etchings' +p170338 +sg25270 +S'Artist Information (' +p170339 +sa(dp170340 +g25268 +S'Easby Abbey, near Richmond' +p170341 +sg25270 +S'George Cuitt the Younger' +p170342 +sg25273 +S'oil on canvas' +p170343 +sg25275 +S'c. 1821/1854' +p170344 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a07.jpg' +p170345 +sg25267 +g27 +sa(dp170346 +g25268 +S'The Gardener Vallier' +p170347 +sg25270 +S'Paul C\xc3\xa9zanne' +p170348 +sg25273 +S'oil on canvas' +p170349 +sg25275 +S'1906' +p170350 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006ab.jpg' +p170351 +sg25267 +S"This portrait of Cézanne's longtime gardener is one of the paintings he was working on in the days just before his death. It occupied him for quite some time. A look at the canvas from an angle reveals heavy ridges of paint, especially along the contours where one shape meets another. Around Vallier's head extends a thick, dark penumbra—evidence of extensive reworking. Similar evidence\r\nof his struggles to attain just the right contour can be seen on many of his late works. Pigments on \n Dark colors contribute to a sense of airlessness, even gloom. Little characterization comes from the face—more than expression it is the gardener's pose that conveys his simple, solid nature. Cézanne apparently attached great importance to this painting, one of several of Vallier begun several years earlier. He told visitors who saw it still unfinished in his studio, "If I succeed with this fellow, it will mean that the theory was correct." As late as 1906, the year he died, associates said Cézanne was still planning to "write out\r\nhis ideas on painting." But he did not. We have only letters and comments recalled by others. Out of context, many seem contradictory, and others are colored by the ideas of those reporting them.\n " +p170352 +sa(dp170353 +g25268 +S'The Tragic Actor (Rouvi\xc3\xa8re as Hamlet)' +p170354 +sg25270 +S'Velázquez' +p170355 +sg25273 +S'oil on canvas' +p170356 +sg25275 +S'1866' +p170357 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000682.jpg' +p170358 +sg25267 +S"Philibert Rouvière stands before us as he did before Parisian theatergoers as Shakespeare's melancholy prince of Denmark, isolated on stage during one of the play's great soliloquies. The actor, who had been trained as a painter, modeled his portrayal of Hamlet on engravings of scenes from the play\r\nby \n There was a long French tradition of painting actors in their most famous roles, but Manet's Rouvière may also owe something to a work by \n " +p170359 +sa(dp170360 +g25268 +S'Gold and Brown: Self-Portrait' +p170361 +sg25270 +S'James McNeill Whistler' +p170362 +sg25273 +S'oil on canvas' +p170363 +sg25275 +S'c. 1896-1898' +p170364 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d53.jpg' +p170365 +sg25267 +g27 +sa(dp170366 +g25273 +S'etching in black on cream wove paper' +p170367 +sg25267 +g27 +sg25275 +S'1923' +p170368 +sg25268 +S'Le penseur de Notre Dame' +p170369 +sg25270 +S'John Taylor Arms' +p170370 +sa(dp170371 +g25268 +S'George W. Vanderbilt' +p170372 +sg25270 +S'James McNeill Whistler' +p170373 +sg25273 +S'oil on canvas' +p170374 +sg25275 +S'1897/1903' +p170375 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000029f.jpg' +p170376 +sg25267 +g27 +sa(dp170377 +g25268 +S'Epes Sargent' +p170378 +sg25270 +S'John Singleton Copley' +p170379 +sg25273 +S'oil on canvas' +p170380 +sg25275 +S'c. 1760' +p170381 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000005d.jpg' +p170382 +sg25267 +S"John Singleton Copley, America's most important colonial painter, was born in\r\nBoston of Irish parents. In 1748 Copley's widowed mother married Peter Pelham, a\r\npainter and engraver. Copley's stepfather probably gave him some art lessons but\r\ndied when Copley was only thirteen. In later years the painter claimed he was self–taught.\n Copley, who was extremely observant, presumably learned about art largely by watching other English–trained painters who were working in the New World and by studying engravings imported from Europe. Much more important was his innate ability to record details objectively and to suggest character. Gilbert Stuart would later say of the uncompromising realism in Copley's \n About seventy years old when he posed for Copley, Sargent had dropped out of Harvard College to enter business in his native Gloucester. After the death of his first wife, this prosperous merchant and shipowner married a rich widow from Salem. Copley's portrayal shows him nonchalantly leaning on a marble pedestal as a symbol of prestige; since carved stone monuments were rather rare in the colonies, this imaginary device must be borrowed from European prints of potentates.\n Such penetrating likenesses made Copley the best–paid artist in colonial America. By shipping some of his canvases to London for criticism, Copley soon became known in England.\n " +p170383 +sa(dp170384 +g25273 +S'(designer)' +p170385 +sg25267 +g27 +sg25275 +S'\n' +p170386 +sg25268 +S'America' +p170387 +sg25270 +S'Artist Information (' +p170388 +sa(dp170389 +g25268 +S'The Ragan Sisters' +p170390 +sg25270 +S'Jacob Eichholtz' +p170391 +sg25273 +S'oil on canvas' +p170392 +sg25275 +S'1818' +p170393 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000a8.jpg' +p170394 +sg25267 +g27 +sa(dp170395 +g25268 +S'Mercury' +p170396 +sg25270 +S'Italian 16th Century' +p170397 +sg25273 +S'overall: 156 x 64 x 40.7 cm (61 7/16 x 25 3/16 x 16 in.)\r\ngross weight: 186.428 kg (411 lb.)' +p170398 +sg25275 +S'\nbronze' +p170399 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00049/a00049f4.jpg' +p170400 +sg25267 +g27 +sa(dp170401 +g25268 +S'The Battle of La Hogue' +p170402 +sg25270 +S'Benjamin West' +p170403 +sg25273 +S'oil on canvas' +p170404 +sg25275 +S'c. 1778' +p170405 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d48.jpg' +p170406 +sg25267 +S"Seventeen years after Benjamin West settled in England, a London newspaper's\nreview of the 1780 Royal Academy exhibition stated that \n Standing in a boat at the left, for instance, Vice Admiral George Rooke embodies\nheroic command with his upright posture and raised sword. Yet, in order to survey\nthe maneuvers, he undoubtedly gave orders from a distance. Beached in the center\ndistance is the French flagship, the \n " +p170407 +sa(dp170408 +g25268 +S'Portrait of a Man' +p170409 +sg25270 +S'Lucas Cranach the Elder' +p170410 +sg25273 +S'oil on panel' +p170411 +sg25275 +S'1522' +p170412 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004c0.jpg' +p170413 +sg25267 +g27 +sa(dp170414 +g25268 +S'Portrait of a Woman' +p170415 +sg25270 +S'Lucas Cranach the Elder' +p170416 +sg25273 +S'oil on panel' +p170417 +sg25275 +S'1522' +p170418 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004c1.jpg' +p170419 +sg25267 +S"Cranach painted this woman and her husband (\n This couple's identity remains unknown. The lack of distracting details \r\n such as jewelry or elaborate embroidery and the featureless green \r\n backgrounds focus attention on their faces, which are naturalistic \r\n likenesses.\n What is striking though not unusual about their portrayal is the way the \r\n man's portrait is dominant. He is much larger, and his shoulders extend \r\n beyond the frame of the painting, while hers is a smaller, less imposing \r\n figure. Her pale face seems drawn in comparison to his ruddy complexion. \r\n The opposing turn of their heads indicates that he occupied the place of \r\n honor on the left side. It is likely that the portraits were intended to \r\n flank a window: notice how the shadows are cast in opposite directions and \r\n how the reflections of window panes can be seen in their eyes. (In \r\n \n " +p170420 +sa(dp170421 +g25268 +S'Madonna and Child with Saints in the Enclosed Garden' +p170422 +sg25270 +S'Artist Information (' +p170423 +sg25273 +S'Netherlandish, c. 1375 - 1444' +p170424 +sg25275 +S'(related artist)' +p170425 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005af.jpg' +p170426 +sg25267 +S'This large panel painting by a follower of Robert Campin combines the new\ninterest in nature of the fifteenth-century Netherlandish artists with a long tradition\nof symbolic religious painting. There is a thoroughly believable quality about\nthe heavy folds of drapery, the delicate leaves of the flowers, and the shallow\nspace within the garden walls. Yet this world is invested with mystical overtones\nthrough the figures\' quiet poses and the minutely observed details which are painted\nin glowing oil colors and displayed in a steady light.\n John the Baptist holds a lamb, recalling his recognition of Christ as the "Lamb\nof God." Seated on the left is Catherine of Alexandria with her sword and wheel,\nthe instruments of her martyrdom. Saint Barbara offers Jesus an apple or a quince,\nan age-old symbol of love. Her special attribute is the impregnable tower, a symbol\nof her chastity. Half-hidden by Saint Anthony\'s robe, a pig beside him symbolizes\ngluttony, recalling his triumph over temptation.\n The walled garden refers to a passage from the Song of Solomon where a bridegroom\nspeaks of his beloved as "a garden enclosed ... a fountain sealed." To early Christian\nand medieval theologians, Mary became associated with this bride, and the enclosed\ngarden symbolized her virginity and also the lost Eden which is regained through\nChrist\'s birth. Even the doorway recalls Christ\'s saying, "I am the door. No man\ncometh unto the Father but by me."\n ' +p170427 +sa(dp170428 +g25268 +S'The Holy Family with Saint Anne and the Infant John the Baptist' +p170429 +sg25270 +S'El Greco' +p170430 +sg25273 +S', c. 1595/1600' +p170431 +sg25275 +S'\n' +p170432 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000058c.jpg' +p170433 +sg25267 +S"A visitor to El Greco's studio wrote of seeing small versions of the painter's most famous works. They provided models for clients who wished to have\r\ncopies made—such as the smaller \n This scene, in which the Virgin's mother, Saint Anne, and the infant John the Baptist join Mary and Joseph in admiring the sleeping Jesus, is not described in the Bible. It is one of El Greco's many inventions intended to further the aims of the Counter-Reformation. The complex symbolism of the Holy Family suggests Christ's eventual death and resurrection, hinted at by the infant's deep sleep and by the way he lies in his mother's lap. This pose, known in Italian as the pietà (pity), is most often used to show the Virgin holding her son's body after\r\nhis crucifixion.\n " +p170434 +sa(dp170435 +g25273 +S'graphite on wove paper' +p170436 +sg25267 +g27 +sg25275 +S'1936' +p170437 +sg25268 +S'Finchingfield, England' +p170438 +sg25270 +S'John Taylor Arms' +p170439 +sa(dp170440 +g25268 +S'The Ascension' +p170441 +sg25270 +S'Johann Koerbecke' +p170442 +sg25273 +S'tempera on panel' +p170443 +sg25275 +S'1456/1457' +p170444 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005c3.jpg' +p170445 +sg25267 +S"Looking up in amazement as Christ ascends into heaven are the twelve apostles.\nKneeling with them is the Virgin, the only one to have a halo. Although few of the\nmen can be identified, John the Evangelist is recognizable. He is the blond, beardless\nyouth dressed in green who solicitously puts his arm around Mary. Surrounding the\nrisen Christ are a group of Old Testament personages who either predicted or foreshadowed\nevents of his life on earth.\n The gold background, bright colors, and compact space reveal the lingering influence\nof the International Gothic. However, a new spirit of visual observation also can\nbe detected. The sharp, angular folds of the drapery evoke the perception of real\nhuman forms beneath the material. Further, the faces of the apostles reveal a broad\nvariety of human emotions.\n This panel was once part of the high altar in the Cistercian abbey church of Marienfeld\nat Münster. At its center was a richly gilded sculpture of the Virgin and Child.\nFolding wings extended from this core with pictures on the fronts and backs. When\nthe shutters were open, eight scenes -- including the National Gallery's painting\n-- revealed the story of Mary's life. In the closed positions, eight other subjects\nrecounted Christ's Passion.\n " +p170446 +sa(dp170447 +g25268 +S'The Annunciation' +p170448 +sg25270 +S'Veronese' +p170449 +sg25273 +S'oil on canvas' +p170450 +sg25275 +S'c. 1580' +p170451 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000088c.jpg' +p170452 +sg25267 +g27 +sa(dp170453 +g25273 +S'etching' +p170454 +sg25267 +g27 +sg25275 +S'1958' +p170455 +sg25268 +S'Frieze' +p170456 +sg25270 +S'Harold Altman' +p170457 +sa(dp170458 +g25273 +S'color lithograph' +p170459 +sg25267 +g27 +sg25275 +S'1958' +p170460 +sg25268 +S'Fruit' +p170461 +sg25270 +S'Garo Zareh Antreasian' +p170462 +sa(dp170463 +g25273 +S'wood engraving' +p170464 +sg25267 +g27 +sg25275 +S'1957' +p170465 +sg25268 +S'Death of the Laureate' +p170466 +sg25270 +S'Leonard Baskin' +p170467 +sa(dp170468 +g25273 +S'woodcut with collagraph on wove paper' +p170469 +sg25267 +g27 +sg25275 +S'1959' +p170470 +sg25268 +S'Woman of the Quarry' +p170471 +sg25270 +S'Fred Becker' +p170472 +sa(dp170473 +g25273 +S'woodcut' +p170474 +sg25267 +g27 +sg25275 +S'1956' +p170475 +sg25268 +S'After an Iran Sculpture' +p170476 +sg25270 +S'John Bernhardt' +p170477 +sa(dp170478 +g25273 +S'etching' +p170479 +sg25267 +g27 +sg25275 +S'1958' +p170480 +sg25268 +S'Moraine' +p170481 +sg25270 +S'Robert Broner' +p170482 +sa(dp170483 +g25273 +S'color paper-relief cut' +p170484 +sg25267 +g27 +sg25275 +S'1957' +p170485 +sg25268 +S'Blue Vein' +p170486 +sg25270 +S'Edmond Casarella' +p170487 +sa(dp170488 +g25268 +S'Three Months' +p170489 +sg25270 +S'Franz Brun' +p170490 +sg25273 +S'engraving' +p170491 +sg25275 +S'1584' +p170492 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000af/a000af4c.jpg' +p170493 +sg25267 +g27 +sa(dp170494 +g25273 +S'drypoint' +p170495 +sg25267 +g27 +sg25275 +S'1958' +p170496 +sg25268 +S'Rocks and Sea' +p170497 +sg25270 +S'Lee R. Chesney' +p170498 +sa(dp170499 +g25273 +S'etching in black on wove paper' +p170500 +sg25267 +g27 +sg25275 +S'1958' +p170501 +sg25268 +S'Landscape' +p170502 +sg25270 +S'John Ery Coleman' +p170503 +sa(dp170504 +g25273 +S'etching in black on wove paper' +p170505 +sg25267 +g27 +sg25275 +S'1957' +p170506 +sg25268 +S'Mach 5' +p170507 +sg25270 +S'Warrington Colescott' +p170508 +sa(dp170509 +g25273 +S'color woodcut on Japan paper' +p170510 +sg25267 +g27 +sg25275 +S'1958' +p170511 +sg25268 +S'Collision' +p170512 +sg25270 +S'Robert Freemont Conover' +p170513 +sa(dp170514 +g25273 +S'color lithograph on Rives paper' +p170515 +sg25267 +g27 +sg25275 +S'1957' +p170516 +sg25268 +S'Blue, Gray and Black' +p170517 +sg25270 +S'Ralston Crawford' +p170518 +sa(dp170519 +g25273 +S'woodcut' +p170520 +sg25267 +g27 +sg25275 +S'1956' +p170521 +sg25268 +S'Horseman II' +p170522 +sg25270 +S'Arthur Coleman Danto' +p170523 +sa(dp170524 +g25273 +S'color plaster-relief on wove paper' +p170525 +sg25267 +g27 +sg25275 +S'1957' +p170526 +sg25268 +S'Prismatic Presences' +p170527 +sg25270 +S'Worden Day' +p170528 +sa(dp170529 +g25273 +S'lithograph on BFK RIVES paper' +p170530 +sg25267 +g27 +sg25275 +S'1958' +p170531 +sg25268 +S'Hill and Mountain' +p170532 +sg25270 +S'Adolf Arthur Dehn' +p170533 +sa(dp170534 +g25273 +S'relief engraving in black on Lucite' +p170535 +sg25267 +g27 +sg25275 +S'1957' +p170536 +sg25268 +S'The Insects Go Up' +p170537 +sg25270 +S'Arthur Deshaies' +p170538 +sa(dp170539 +g25273 +S'color etching' +p170540 +sg25267 +g27 +sg25275 +S'1956' +p170541 +sg25268 +S'Escarpment' +p170542 +sg25270 +S'Leonard Edmondson' +p170543 +sa(dp170544 +g25268 +S'Saint Jerome' +p170545 +sg25270 +S'Netherlandish 16th Century' +p170546 +sg25273 +S'Rosenwald Collection' +p170547 +sg25275 +S'\nengraving' +p170548 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd03.jpg' +p170549 +sg25267 +g27 +sa(dp170550 +g25273 +S'cardboard cut' +p170551 +sg25267 +g27 +sg25275 +S'1956' +p170552 +sg25268 +S'Flower Image' +p170553 +sg25270 +S'James Forsberg' +p170554 +sa(dp170555 +g25268 +S'The Frozen Sound' +p170556 +sg25270 +S'Antonio Frasconi' +p170557 +sg25273 +S'color woodcut' +p170558 +sg25275 +S'1958' +p170559 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000aa1.jpg' +p170560 +sg25267 +g27 +sa(dp170561 +g25273 +S'color woodcut' +p170562 +sg25267 +g27 +sg25275 +S'1958' +p170563 +sg25268 +S'Summer Bird' +p170564 +sg25270 +S'Antonio Frasconi' +p170565 +sa(dp170566 +g25273 +S'etching' +p170567 +sg25267 +g27 +sg25275 +S'1956' +p170568 +sg25268 +S'Sacrifice of Iphigenia, No.1' +p170569 +sg25270 +S'Peter Grippe' +p170570 +sa(dp170571 +g25273 +S'etching' +p170572 +sg25267 +g27 +sg25275 +S'1958' +p170573 +sg25268 +S'Homage to Francisco de Orellana' +p170574 +sg25270 +S'John Livingston Ihle' +p170575 +sa(dp170576 +g25273 +S'lithograph' +p170577 +sg25267 +g27 +sg25275 +S'1958' +p170578 +sg25268 +S'Izbas' +p170579 +sg25270 +S'Shelia Eaton Isham' +p170580 +sa(dp170581 +g25273 +S'color lithograph on wove paper' +p170582 +sg25267 +g27 +sg25275 +S'1958' +p170583 +sg25268 +S'Dark Angel' +p170584 +sg25270 +S'Max Kahn' +p170585 +sa(dp170586 +g25273 +S'intaglio' +p170587 +sg25267 +g27 +sg25275 +S'1958' +p170588 +sg25268 +S'Quarry' +p170589 +sg25270 +S'Jerome Kaplan' +p170590 +sa(dp170591 +g25273 +S'etching, sugarlift aquatint and engraving on chine coll?' +p170592 +sg25267 +g27 +sg25275 +S'1957' +p170593 +sg25268 +S'Lion' +p170594 +sg25270 +S'Misch Kohn' +p170595 +sa(dp170596 +g25268 +S'Road Map of Central Europe' +p170597 +sg25270 +S'Erhard Etzlaub' +p170598 +sg25273 +S'woodcut' +p170599 +sg25275 +S'c. 1492' +p170600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a000562c.jpg' +p170601 +sg25267 +g27 +sa(dp170602 +g25273 +S'etching, sugarlift aquatint and engraving' +p170603 +sg25267 +g27 +sg25275 +S'1957' +p170604 +sg25268 +S'Three Kings' +p170605 +sg25270 +S'Misch Kohn' +p170606 +sa(dp170607 +g25273 +S'aquatint' +p170608 +sg25267 +g27 +sg25275 +S'1957' +p170609 +sg25268 +S'Crucifixion' +p170610 +sg25270 +S'Chaim Koppelman' +p170611 +sa(dp170612 +g25273 +S'woodcut' +p170613 +sg25267 +g27 +sg25275 +S'1957' +p170614 +sg25268 +S'The Violinist' +p170615 +sg25270 +S'Eugene Larkin' +p170616 +sa(dp170617 +g25273 +S'etching, engraving, aquatint, soft-ground, electric stipple with scraping and burnishing in yellow ochre and black' +p170618 +sg25267 +g27 +sg25275 +S'1956' +p170619 +sg25268 +S'The Vision' +p170620 +sg25270 +S'Mauricio Lasansky' +p170621 +sa(dp170622 +g25273 +S'etching and aquatint in black on wove paper' +p170623 +sg25267 +g27 +sg25275 +S'1957' +p170624 +sg25268 +S'Under the "El"' +p170625 +sg25270 +S'Gerson August Leiber' +p170626 +sa(dp170627 +g25273 +S'lithograph' +p170628 +sg25267 +g27 +sg25275 +S'1958' +p170629 +sg25268 +S'Relic of Old Rome' +p170630 +sg25270 +S'Louis Lozowick' +p170631 +sa(dp170632 +g25273 +S'color lithograph' +p170633 +sg25267 +g27 +sg25275 +S'1956' +p170634 +sg25268 +S'Paris' +p170635 +sg25270 +S'Loren MacIver' +p170636 +sa(dp170637 +g25273 +S'color cellocut on wove paper' +p170638 +sg25267 +g27 +sg25275 +S'1958' +p170639 +sg25268 +S'From Another Galaxy' +p170640 +sg25270 +S'Boris Margo' +p170641 +sa(dp170642 +g25273 +S'intaglio' +p170643 +sg25267 +g27 +sg25275 +S'1957' +p170644 +sg25268 +S'Surgeon' +p170645 +sg25270 +S'Dean Jackson Meeker' +p170646 +sa(dp170647 +g25273 +S'color lithograph on wove paper' +p170648 +sg25267 +g27 +sg25275 +S'1958' +p170649 +sg25268 +S'Composition 25' +p170650 +sg25270 +S'George Joji Miyasaki' +p170651 +sa(dp170652 +g25268 +S'The Dissolute Household' +p170653 +sg25270 +S'Pieter Balten' +p170654 +sg25273 +S'engraving' +p170655 +sg25275 +S'unknown date\n' +p170656 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ced6.jpg' +p170657 +sg25267 +g27 +sa(dp170658 +g25273 +S'engraving in black on wove paper' +p170659 +sg25267 +g27 +sg25275 +S'1956' +p170660 +sg25268 +S'David in the Wilderness' +p170661 +sg25270 +S'Norma Gloria Morgan' +p170662 +sa(dp170663 +g25273 +S'color woodcut' +p170664 +sg25267 +g27 +sg25275 +S'1958' +p170665 +sg25268 +S'The Little "500"' +p170666 +sg25270 +S'Seong Moy' +p170667 +sa(dp170668 +g25273 +S'color intgalio' +p170669 +sg25267 +g27 +sg25275 +S'1957' +p170670 +sg25268 +S'Hundred Guilder Print' +p170671 +sg25270 +S'Malcolm Haynie Myers' +p170672 +sa(dp170673 +g25273 +S'color etching and aquatint' +p170674 +sg25267 +g27 +sg25275 +S'1958' +p170675 +sg25268 +S'Lotus Eaters' +p170676 +sg25270 +S'Barbara Neustadt' +p170677 +sa(dp170678 +g25273 +S'color lithograph' +p170679 +sg25267 +g27 +sg25275 +S'1956' +p170680 +sg25268 +S'Boardwalk' +p170681 +sg25270 +S'Jack Perlmutter' +p170682 +sa(dp170683 +g25273 +S'etching and engraving' +p170684 +sg25267 +g27 +sg25275 +S'1958' +p170685 +sg25268 +S'Cathedral' +p170686 +sg25270 +S'Gabor Peterdi' +p170687 +sa(dp170688 +g25273 +S'color etching and engraving on wove paper' +p170689 +sg25267 +g27 +sg25275 +S'1958' +p170690 +sg25268 +S'Glowing Tree' +p170691 +sg25270 +S'Gabor Peterdi' +p170692 +sa(dp170693 +g25273 +S'color lithograph' +p170694 +sg25267 +g27 +sg25275 +S'1958' +p170695 +sg25268 +S'Concertino' +p170696 +sg25270 +S'Reginald Murray Pollack' +p170697 +sa(dp170698 +g25273 +S'color collage intaglio on wove paper' +p170699 +sg25267 +g27 +sg25275 +S'1958' +p170700 +sg25268 +S'Wounded Mountain' +p170701 +sg25270 +S'Michael Ponce de Leon' +p170702 +sa(dp170703 +g25273 +S'etching-engraving and soft-ground (zinc) on dark blue' +p170704 +sg25267 +g27 +sg25275 +S'1958' +p170705 +sg25268 +S'Tower of Babel' +p170706 +sg25270 +S'Rudy Pozzatti' +p170707 +sa(dp170708 +g25268 +S'Ornament - Large Goblet' +p170709 +sg25270 +S'German 16th Century' +p170710 +sg25273 +S'Rosenwald Collection' +p170711 +sg25275 +S'\npunch engraving?' +p170712 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b070.jpg' +p170713 +sg25267 +g27 +sa(dp170714 +g25273 +S'etching and engraving' +p170715 +sg25267 +g27 +sg25275 +S'1958' +p170716 +sg25268 +S'Shrew' +p170717 +sg25270 +S'Aubrey Schwartz' +p170718 +sa(dp170719 +g25273 +S'hand-colored screenprint' +p170720 +sg25267 +g27 +sg25275 +S'1958' +p170721 +sg25268 +S'Lute and Molecules, No.2' +p170722 +sg25270 +S'Ben Shahn' +p170723 +sa(dp170724 +g25268 +S'Wheat Field' +p170725 +sg25270 +S'Ben Shahn' +p170726 +sg25273 +S'screenprint with hand-coloring' +p170727 +sg25275 +S'1958' +p170728 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b8b.jpg' +p170729 +sg25267 +g27 +sa(dp170730 +g25273 +S'etching and drypoint in black on wove paper' +p170731 +sg25267 +g27 +sg25275 +S'1958' +p170732 +sg25268 +S'Summer' +p170733 +sg25270 +S'Moishe Smith' +p170734 +sa(dp170735 +g25273 +S'etching, soft-ground, and drypoint on wove paper' +p170736 +sg25267 +g27 +sg25275 +S'1958' +p170737 +sg25268 +S'Winter' +p170738 +sg25270 +S'Moishe Smith' +p170739 +sa(dp170740 +g25273 +S'color woodcut' +p170741 +sg25267 +g27 +sg25275 +S'1958' +p170742 +sg25268 +S'Sounding II' +p170743 +sg25270 +S'Jack Sonenberg' +p170744 +sa(dp170745 +g25273 +S'color lithograph' +p170746 +sg25267 +g27 +sg25275 +S'1957' +p170747 +sg25268 +S'Lithograph July 1957' +p170748 +sg25270 +S'Andrew Stasik' +p170749 +sa(dp170750 +g25273 +S'color woodcut' +p170751 +sg25267 +g27 +sg25275 +S'1958' +p170752 +sg25268 +S'Gethsemane' +p170753 +sg25270 +S'Carol Summers' +p170754 +sa(dp170755 +g25273 +S'color woodcut' +p170756 +sg25267 +g27 +sg25275 +S'1958' +p170757 +sg25268 +S'Rainbow' +p170758 +sg25270 +S'Carol Summers' +p170759 +sa(dp170760 +g25273 +S'drypoint' +p170761 +sg25267 +g27 +sg25275 +S'1958' +p170762 +sg25268 +S'Growth' +p170763 +sg25270 +S'Peter Takal' +p170764 +sa(dp170765 +g25268 +S'Saint Michael' +p170766 +sg25270 +S'Artist Information (' +p170767 +sg25273 +S'German, active c. 1450 - active 1467' +p170768 +sg25275 +S'(artist after)' +p170769 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3c1.jpg' +p170770 +sg25267 +g27 +sa(dp170771 +g25273 +S'color lithograph' +p170772 +sg25267 +g27 +sg25275 +S'1957' +p170773 +sg25268 +S'Wolf, Blind in One Eye' +p170774 +sg25270 +S'Romas Viesulas' +p170775 +sa(dp170776 +g25273 +S'color screenprint' +p170777 +sg25267 +g27 +sg25275 +S'1958' +p170778 +sg25268 +S'Arrival' +p170779 +sg25270 +S'Sylvia Wald' +p170780 +sa(dp170781 +g25273 +S'lithograph' +p170782 +sg25267 +g27 +sg25275 +S'1958' +p170783 +sg25268 +S'Eve Tempted [left half]' +p170784 +sg25270 +S'June Wayne' +p170785 +sa(dp170786 +g25268 +S'Adam Waiting [right half]' +p170787 +sg25270 +S'June Wayne' +p170788 +sg25273 +S'lithograph' +p170789 +sg25275 +S'1958' +p170790 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000be5.jpg' +p170791 +sg25267 +g27 +sa(dp170792 +g25273 +S'color woodcut' +p170793 +sg25267 +g27 +sg25275 +S'1958' +p170794 +sg25268 +S'Fighting Cock' +p170795 +sg25270 +S'Walter Williams' +p170796 +sa(dp170797 +g25268 +S'The Westwood Children' +p170798 +sg25270 +S'Joshua Johnson' +p170799 +sg25273 +S'oil on canvas' +p170800 +sg25275 +S'c. 1807' +p170801 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000120.jpg' +p170802 +sg25267 +S"At the center of this image is John, the oldest son of the prominent Westwood family from Baltimore, extending his arm behind and across two younger children. The smaller boys stand close together, hands clasped. All three are dressed in high-waisted trouser suits, fashionable for male children at the time, and hold a branch or flowers as if they've just returned from the outdoors. The family pet featured in the bottom right holds a bird in its mouth, clearly having found it outside as well.\n Joshua Johnson's sympathetic pose of the three boys makes their brotherly relationship the subject of this portrait. A free black artist who worked in Baltimore, Maryland, during the late eighteenth and early nineteenth centuries, Johnson is known for his skillful use of design and balanced composition, as seen in \n The son of a white father and a black mother, Johnson was born into slavery around 1763 and freed in 1782. Having received minimal training in art, perhaps from one of the artists in the extended Peale family, he practiced as a portrait painter, advertising his service in Baltimore's city directories from 1796 to 1824. Roughly eighty portraits are now attributed to him.\n " +p170803 +sa(dp170804 +g25268 +S'Mary and Francis Wilcox' +p170805 +sg25270 +S'Joseph Whiting Stock' +p170806 +sg25273 +S'oil on canvas' +p170807 +sg25275 +S'1845' +p170808 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000022a.jpg' +p170809 +sg25267 +g27 +sa(dp170810 +g25268 +S'Baby in Blue Cradle' +p170811 +sg25270 +S'American 19th Century' +p170812 +sg25273 +S'overall: 69 x 58 cm (27 3/16 x 22 13/16 in.)\r\nframed: 82.5 x 71.7 x 5 cm (32 1/2 x 28 1/4 x 1 15/16 in.)' +p170813 +sg25275 +S'\noil on canvas' +p170814 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003f9.jpg' +p170815 +sg25267 +g27 +sa(dp170816 +g25268 +S'Jonathan Bentham' +p170817 +sg25270 +S'American 18th Century' +p170818 +sg25273 +S'overall: 116.5 x 88.9 cm (45 7/8 x 35 in.)\r\nframed: 129.5 x 102.9 x 5 cm (51 x 40 1/2 x 1 15/16 in.)' +p170819 +sg25275 +S'\noil on canvas' +p170820 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000412.jpg' +p170821 +sg25267 +g27 +sa(dp170822 +g25268 +S'Boy in Blue Coat' +p170823 +sg25270 +S'American 18th Century' +p170824 +sg25273 +S'overall: 121.5 x 83.5 cm (47 13/16 x 32 7/8 in.)\r\nframed: 135.6 x 98.1 x 3.4 cm (53 3/8 x 38 5/8 x 1 5/16 in.)' +p170825 +sg25275 +S'\noil on canvas' +p170826 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000413.jpg' +p170827 +sg25267 +g27 +sa(dp170828 +g25268 +S'At the Dram Well' +p170829 +sg25270 +S'French 17th Century' +p170830 +sg25273 +S'overall: 11.5 x 18.1 cm (4 1/2 x 7 1/8 in.)' +p170831 +sg25275 +S'\npen and brown ink with brown wash' +p170832 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a000712b.jpg' +p170833 +sg25267 +g27 +sa(dp170834 +g25268 +S'Child with Rocking Horse' +p170835 +sg25270 +S'American 19th Century' +p170836 +sg25273 +S'overall: 103.2 x 68.6 cm (40 5/8 x 27 in.)\r\nframed: 125.1 x 90.8 x 7.3 cm (49 1/4 x 35 3/4 x 2 7/8 in.)' +p170837 +sg25275 +S'\noil on canvas' +p170838 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00003/a00003fa.jpg' +p170839 +sg25267 +g27 +sa(dp170840 +g25268 +S'Civil War Battle' +p170841 +sg25270 +S'American 19th Century' +p170842 +sg25273 +S'overall: 91.7 x 112.4 cm (36 1/8 x 44 1/4 in.)\r\nframed: 109.5 x 130.5 x 4.7 cm (43 1/8 x 51 3/8 x 1 7/8 in.)' +p170843 +sg25275 +S'\noil on canvas' +p170844 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000414.jpg' +p170845 +sg25267 +g27 +sa(dp170846 +g25268 +S'Five Children of the Budd Family' +p170847 +sg25270 +S'American 19th Century' +p170848 +sg25273 +S'overall: 121 x 106.4 cm (47 5/8 x 41 7/8 in.)' +p170849 +sg25275 +S'\noil on canvas' +p170850 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000415.jpg' +p170851 +sg25267 +g27 +sa(dp170852 +g25268 +S'Lady in White' +p170853 +sg25270 +S'Ammi Phillips' +p170854 +sg25273 +S'oil on canvas' +p170855 +sg25275 +S'c. 1820' +p170856 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001bd.jpg' +p170857 +sg25267 +g27 +sa(dp170858 +g25268 +S'Leaving the Manor House' +p170859 +sg25270 +S'American 19th Century' +p170860 +sg25273 +S'overall: 68.6 x 86.5 cm (27 x 34 1/16 in.)\r\nframed: 79.4 x 97.2 x 7 cm (31 1/4 x 38 1/4 x 2 3/4 in.)' +p170861 +sg25275 +S'\noil on canvas' +p170862 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a000043f.jpg' +p170863 +sg25267 +g27 +sa(dp170864 +g25273 +S'overall: 52.1 x 36.3 cm (20 1/2 x 14 5/16 in.)' +p170865 +sg25267 +g27 +sg25275 +S'\noil on wood' +p170866 +sg25268 +S'Little Girl and the Cat' +p170867 +sg25270 +S'American 20th Century' +p170868 +sa(dp170869 +g25268 +S'Lady in a White Mob Cap' +p170870 +sg25270 +S'Benjamin Greenleaf' +p170871 +sg25273 +S'oil on canvas' +p170872 +sg25275 +S'c. 1805' +p170873 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000d1.jpg' +p170874 +sg25267 +g27 +sa(dp170875 +g25268 +S'The Donkey Cart' +p170876 +sg25270 +S'George Bellows' +p170877 +sg25273 +S'black crayon on wove paper' +p170878 +sg25275 +S'1922' +p170879 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e5/a000e560.jpg' +p170880 +sg25267 +g27 +sa(dp170881 +g25268 +S'Jean 1923' +p170882 +sg25270 +S'George Bellows' +p170883 +sg25273 +S'lithograph on Asian paper' +p170884 +sg25275 +S'1923' +p170885 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a21.jpg' +p170886 +sg25267 +g27 +sa(dp170887 +g25273 +S'lithograph in yellow, red, violet and gray' +p170888 +sg25267 +g27 +sg25275 +S'1899' +p170889 +sg25268 +S'The Square at Night' +p170890 +sg25270 +S'Pierre Bonnard' +p170891 +sa(dp170892 +g25268 +S'Young Man Drinking Water (Rebecca and Eliezer?)' +p170893 +sg25270 +S'Artist Information (' +p170894 +sg25273 +S'Italian, 1504 - 1570' +p170895 +sg25275 +S'(artist after)' +p170896 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008367.jpg' +p170897 +sg25267 +g27 +sa(dp170898 +g25268 +S'Under the Horse-Chestnut Tree' +p170899 +sg25270 +S'Mary Cassatt' +p170900 +sg25273 +S'drypoint and aquatint in color' +p170901 +sg25275 +S'c. 1895' +p170902 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00111/a001111c.jpg' +p170903 +sg25267 +g27 +sa(dp170904 +g25273 +S'drypoint, soft-ground etching, and aquatint in color' +p170905 +sg25267 +g27 +sg25275 +S'c. 1891' +p170906 +sg25268 +S'The Letter' +p170907 +sg25270 +S'Mary Cassatt' +p170908 +sa(dp170909 +g25268 +S'The Banjo Lesson' +p170910 +sg25270 +S'Mary Cassatt' +p170911 +sg25273 +S'color drypoint and aquatint with monotype inking' +p170912 +sg25275 +S'c. 1893' +p170913 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a55.jpg' +p170914 +sg25267 +g27 +sa(dp170915 +g25268 +S'The Bathers (Small Plate)' +p170916 +sg25270 +S'Paul C\xc3\xa9zanne' +p170917 +sg25273 +S'colored lithograph' +p170918 +sg25275 +S'1897' +p170919 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a000917c.jpg' +p170920 +sg25267 +g27 +sa(dp170921 +g25268 +S'Against Green' +p170922 +sg25270 +S'Arthur B. Davies' +p170923 +sg25273 +S'color aquatint on blue laid paper' +p170924 +sg25275 +S'unknown date\n' +p170925 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a6c.jpg' +p170926 +sg25267 +g27 +sa(dp170927 +g25268 +S'Release at the Gates' +p170928 +sg25270 +S'Arthur B. Davies' +p170929 +sg25273 +S'color lithograph' +p170930 +sg25275 +S'1923' +p170931 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a6d.jpg' +p170932 +sg25267 +g27 +sa(dp170933 +g25268 +S'Jockey' +p170934 +sg25270 +S'Edgar Degas' +p170935 +sg25273 +S'washed pastel, brown wash, and transferred pastel' +p170936 +sg25275 +S'c. 1898' +p170937 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b3d.jpg' +p170938 +sg25267 +g27 +sa(dp170939 +g25268 +S'Bathers in Brittany (Baigneuses Bretonnes)' +p170940 +sg25270 +S'Paul Gauguin' +p170941 +sg25273 +S'lithograph (zinc) in black on imitation japan paper' +p170942 +sg25275 +S'1889' +p170943 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a73.jpg' +p170944 +sg25267 +g27 +sa(dp170945 +g25268 +S'Disparate femenino (Feminine Folly)' +p170946 +sg25270 +S'Francisco de Goya' +p170947 +sg25273 +S'etching, aquatint and (drypoint?)' +p170948 +sg25275 +S'in or after 1816' +p170949 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed9e.jpg' +p170950 +sg25267 +g27 +sa(dp170951 +g25268 +S'Bringing the Goats to Market Sacrifice (Trinidad)' +p170952 +sg25270 +S'George Overbury (Pop) Hart' +p170953 +sg25273 +S'color etching' +p170954 +sg25275 +S'unknown date\n' +p170955 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a00104d2.jpg' +p170956 +sg25267 +g27 +sa(dp170957 +g25268 +S'Caricature of J.M. Whistler' +p170958 +sg25270 +S'Aubrey Beardsley' +p170959 +sg25273 +S'pen and black ink on wove paper' +p170960 +sg25275 +S'unknown date\n' +p170961 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00068/a000683e.jpg' +p170962 +sg25267 +g27 +sa(dp170963 +g25273 +S'lithograph on India paper' +p170964 +sg25267 +g27 +sg25275 +S'1927' +p170965 +sg25268 +S'Dancer Reflected in the Mirror (Danseuse refl\xc3\xa9t\xc3\xa9e dans la glace)' +p170966 +sg25270 +S'Henri Matisse' +p170967 +sa(dp170968 +g25273 +S'lithograph' +p170969 +sg25267 +g27 +sg25275 +S'1913' +p170970 +sg25268 +S'Face with Fringe (Visage \xc3\xa0 la frange)' +p170971 +sg25270 +S'Henri Matisse' +p170972 +sa(dp170973 +g25268 +S'At the Concert (Au concert)' +p170974 +sg25270 +S'Henri de Toulouse-Lautrec' +p170975 +sg25273 +S'4-color lithograph [poster]' +p170976 +sg25275 +S'1896' +p170977 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e82.jpg' +p170978 +sg25267 +g27 +sa(dp170979 +g25268 +S'Family in a Surrey' +p170980 +sg25270 +S'George Bellows' +p170981 +sg25273 +S'black chalk on wove paper' +p170982 +sg25275 +S'unknown date\n' +p170983 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e5/a000e561.jpg' +p170984 +sg25267 +g27 +sa(dp170985 +g25273 +S'Gift of Ethel G. Tolman' +p170986 +sg25267 +g27 +sg25275 +S'\nlithograph on folded paper fan' +p170987 +sg25268 +S'The Presidents Fan' +p170988 +sg25270 +S'American 19th Century' +p170989 +sa(dp170990 +g25268 +S'The Annunciation' +p170991 +sg25270 +S'Artist Information (' +p170992 +sg25273 +S'(artist after)' +p170993 +sg25275 +S'\n' +p170994 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a43c.jpg' +p170995 +sg25267 +g27 +sa(dp170996 +g25268 +S'Still Life with Apples and Peaches' +p170997 +sg25270 +S'Paul C\xc3\xa9zanne' +p170998 +sg25273 +S'oil on canvas' +p170999 +sg25275 +S'c. 1905' +p171000 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00049/a0004952.jpg' +p171001 +sg25267 +S'Cézanne explored an astonishing range of\r\nsubjects, the rare painter among his peers\r\nto devote extensive time to landscape,\r\nportraiture, figural scenes, and still life.\r\nThe latter remained central to his artistic\r\npractice from the beginning to the end.\r\nThis late still life consists of simple props\r\nhe kept in his studio and used in many\r\nof his compositions. The patterned drapery\r\nand the pitcher with floral decoration\r\nappear, together with fruit and a white\r\ncloth, in slightly different arrangements\r\non tabletops in five other paintings made\r\nin the late 1890s. This particular drapery\r\nwas a favorite motif of the artist. He\r\nfirst included it in works he made in Paris\r\n(see \n Of all the possible painting genres, the\r\nstill life was traditionally scorned by critics\r\nand theorists as being the least noble, for\r\nit was considered to be a mere replication\r\nof inanimate objects that demanded little\r\nof the artist\xe2\x80\x99s imagination. Yet the still life\r\nallows the artist an enormous element of\r\ncontrol—in the choice of objects and in\r\ntheir arrangement into seemingly endless\r\nvariations, which must have been the\r\nessence of its appeal for Cézanne. In still\r\nlife after still life he explored the correspondences\r\namong objects, searching for\r\nharmony and balance in form and color.\r\nThe modest household wares that Cézanne\r\npreferred to depict evoke the rustic still\r\nlifes of Jean Siméon Chardin, whom he\r\ngreatly admired, but Cézanne\xe2\x80\x99s orchestrated\r\nplay on pictorial structure, rhythm,\r\nline, and shape elevates them out of the\r\nrealm of the humble. Nothing seems\r\nrandom in this imposing canvas, with its\r\ndramatic sweep of drapery that tumbles\r\nonto the table and envelops the pitcher.\r\nTriangular folds in the fabric echo the\r\npyramid of peaches stacked on the white\r\ndish, while the three bright accents of\r\npitcher, flower holder, and napkin—set\r\noff against an otherwise muted color\r\nscheme—form another inverted triangle.\r\nUndulating lines of the faience resonate\r\nwith waves of the table skirt; the swelling\r\nvolume of pitcher strikes a chord with the\r\nplump fruit; and little touches of light\r\nblue pigment mark and unite curtain,\r\nnapkin, and vase.\n The peaches and apples are glowing\r\nglobes of orange, yellow, and red, seemingly\r\nfreshly picked. Cézanne felt especially drawn to fruits, confiding to a friend\r\nthat "they love having their portraits\r\ndone. . . . They exhale their message with\r\ntheir scent. They reach you with all their\r\nsmells and tell you about the fields they\xe2\x80\x99ve\r\nleft, the rain that made them grow, the\r\ndawns they watched. When I\xe2\x80\x99m outlining\r\nthe skin of a lovely peach with soft touches\r\nof paint, or a sad old apple, I catch a\r\nglimpse in the reflections they exchange\r\nof . . . the same love of the sun, the same\r\nrecollection of the dew, a freshness."\n Cézanne\xe2\x80\x99s still lifes rank among his\r\nfinest achievements, something his contemporaries\r\nbegan to acknowledge in the\r\nlast decade of his life. The still lifes in\r\nparticular exhibit some of the artist\xe2\x80\x99s most\r\ninfluential innovations involving pictorial\r\nspace. Here the top of the table is tilted\r\nprecariously, and the lines that create its\r\nright side fail to converge toward a single\r\nvanishing point. Cézanne was among the\r\nfirst painters to offer disparate views of\r\nthe same object, as he did here with the\r\npitcher: its mouth opens wide as if viewed\r\nfrom above even while its body suggests\r\nthat it is seen at eye level. The subsequent\r\ngeneration of cubist painters drew inspiration\r\nfrom these liberties with perspective\r\nand forged an even more radical break\r\nwith pictorial tradition.\n (Text by Margaret Doyle, \n Notes\n \n \n \n ' +p171002 +sa(dp171003 +g25268 +S'The Triumph of the Church' +p171004 +sg25270 +S'German 13th Century' +p171005 +sg25273 +S'overall: 20.9 x 20.2 cm (8 1/4 x 7 15/16 in.)' +p171006 +sg25275 +S'\ntempera and gold leaf on vellum' +p171007 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00033/a00033d5.jpg' +p171008 +sg25267 +g27 +sa(dp171009 +g25268 +S'Christ and the Virgin Enthroned with Forty Saints' +p171010 +sg25270 +S'Master of the Dominican Effigies' +p171011 +sg25273 +S'miniature on vellum' +p171012 +sg25275 +S'c. 1340' +p171013 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a0005816.jpg' +p171014 +sg25267 +g27 +sa(dp171015 +g25268 +S'Two Friars on a Hillside [recto]' +p171016 +sg25270 +S'Fra Bartolommeo' +p171017 +sg25273 +S'pen and brown ink on laid paper' +p171018 +sg25275 +S'unknown date\n' +p171019 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00030/a0003032.jpg' +p171020 +sg25267 +g27 +sa(dp171021 +g25268 +S'Withered Spring' +p171022 +sg25270 +S'Aubrey Beardsley' +p171023 +sg25273 +S'pen and black ink heightened with white over graphite' +p171024 +sg25275 +S'unknown date\n' +p171025 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b0a.jpg' +p171026 +sg25267 +g27 +sa(dp171027 +g25268 +S'Bare Tree [verso]' +p171028 +sg25270 +S'Fra Bartolommeo' +p171029 +sg25273 +S'pen and brown ink on laid paper' +p171030 +sg25275 +S'unknown date\n' +p171031 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00075/a000750d.jpg' +p171032 +sg25267 +g27 +sa(dp171033 +g25268 +S'Portrait of a Man' +p171034 +sg25270 +S'Leonhard Beck' +p171035 +sg25273 +S'black chalk on laid paper' +p171036 +sg25275 +S'c. 1515' +p171037 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a000795a.jpg' +p171038 +sg25267 +g27 +sa(dp171039 +g25268 +S'Saint Sebald Carrying the Model of His Church in Nuremberg' +p171040 +sg25270 +S'Sebald Beham' +p171041 +sg25273 +S'pen and brown ink with touches of red chalk on laid paper' +p171042 +sg25275 +S'c. 1521' +p171043 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00031/a0003193.jpg' +p171044 +sg25267 +g27 +sa(dp171045 +g25268 +S'The Martyrdom of Saint Catherine' +p171046 +sg25270 +S'Albrecht D\xc3\xbcrer' +p171047 +sg25273 +S'woodcut' +p171048 +sg25275 +S'c. 1497/1499' +p171049 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b239.jpg' +p171050 +sg25267 +g27 +sa(dp171051 +g25273 +S'hand-colored etching' +p171052 +sg25267 +g27 +sg25275 +S'1888' +p171053 +sg25268 +S"The Port of Ostend (Vue du port d'Ostende)" +p171054 +sg25270 +S'James Ensor' +p171055 +sa(dp171056 +g25268 +S'Disparate de Carnabal (Carnival Folly)' +p171057 +sg25270 +S'Francisco de Goya' +p171058 +sg25273 +S'etching and aquatint' +p171059 +sg25275 +S'in or after 1816' +p171060 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000eda2.jpg' +p171061 +sg25267 +g27 +sa(dp171062 +g25268 +S'Los ensacados (The Men in Sacks)' +p171063 +sg25270 +S'Francisco de Goya' +p171064 +sg25273 +S'etching and burnished aquatint' +p171065 +sg25275 +S'in or after 1816' +p171066 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed96.jpg' +p171067 +sg25267 +g27 +sa(dp171068 +g25268 +S"Landscape with View of a Farmer's Cottage and a Town near a River" +p171069 +sg25270 +S'Hans Sebald Lautensack' +p171070 +sg25273 +S'etching//conjoining landscapes on 2 sheets of paper' +p171071 +sg25275 +S'1551' +p171072 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acbd.jpg' +p171073 +sg25267 +g27 +sa(dp171074 +g25268 +S'Jan Cornelisz Sylvius, the Preacher' +p171075 +sg25270 +S'Rembrandt van Rijn' +p171076 +sg25273 +S'pen and brown ink on laid paper' +p171077 +sg25275 +S'1644/1645' +p171078 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00026/a00026e6.jpg' +p171079 +sg25267 +g27 +sa(dp171080 +g25268 +S'The Resurrection' +p171081 +sg25270 +S'Martin Schongauer' +p171082 +sg25273 +S'engraving' +p171083 +sg25275 +S'c. 1480' +p171084 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d54.jpg' +p171085 +sg25267 +g27 +sa(dp171086 +g25268 +S'The Annunciation' +p171087 +sg25270 +S'Jan van Eyck' +p171088 +sg25273 +S'oil on canvas transferred from panel' +p171089 +sg25275 +S'c. 1434/1436' +p171090 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00020/a0002021.jpg' +p171091 +sg25267 +S'The Annunciation described by Saint Luke is interpreted in terms of actuality\r\nin this painting, which was probably once the left wing of a triptych. The forms—even that of the archangel—seem to have weight and volume. Light and shadow play over them in a natural way, and with amazing skill, Jan van Eyck has distinguished between the textures of materials ranging from hard, polished stone to the soft, fragile petals of flowers.\n Yet religious symbolism speaks from every detail, expounding the significance of the Annunciation, and the relationship of the Old Testament to the New. The structure of the church can be interpreted symbolically; the dark upper story, with its single, stained–glass window of Jehovah, may refer to the former era of the Old Testament, while the lower part of the building, already illuminated by the "Light of the World" and dominated by transparent, triple windows symbolizing the Trinity, may refer to the Era of Grace of the New Testament. The idea of passing from old to new is further manifested in the transition from the Romanesque round–arched windows of\r\nthe upper story to the early Gothic pointed arches of the lower zone, and also in the depictions on the floor tiles: David beheading Goliath and Samson destroying the Philistine temple are both Old Testament events in the salvation of the Jewish people which prefigure the salvation of humankind through the coming of Christ.\n ' +p171092 +sa(dp171093 +g25268 +S'The Agony in the Garden' +p171094 +sg25270 +S'Benvenuto di Giovanni' +p171095 +sg25273 +S'tempera on panel' +p171096 +sg25275 +S'probably 1491' +p171097 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000770.jpg' +p171098 +sg25267 +g27 +sa(dp171099 +g25268 +S'Tannh\xc3\xa4user' +p171100 +sg25270 +S'Aubrey Beardsley' +p171101 +sg25273 +S'pen and black ink with gray wash heightened with white' +p171102 +sg25275 +S'unknown date\n' +p171103 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00031/a0003192.jpg' +p171104 +sg25267 +g27 +sa(dp171105 +g25268 +S'The Adoration of the Magi' +p171106 +sg25270 +S'Giovanni Battista Tiepolo' +p171107 +sg25273 +S'etching' +p171108 +sg25275 +S'c. 1740' +p171109 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00020/a0002030.jpg' +p171110 +sg25267 +g27 +sa(dp171111 +g25268 +S'The Lamentation' +p171112 +sg25270 +S'German 15th Century' +p171113 +sg25273 +S'sheet: 12.7 x 12.8 cm (5 x 5 1/16 in.)\r\noverall (slipcase and box): 15.6 x 39.5 cm (6 1/8 x 15 9/16 in.)' +p171114 +sg25275 +S'\ntraveling altar with a woodcut printed on parchment in black and hand-colored in blue, green, brown, tan, orange, and red; set between two panels of printed text to form a triptych; housed in a slipcase with an embroidered crucifixion scene on thefront and backed in leather; in turn housed in a velvet, silk, and linen box, strengthened with layers of parchment from an account book, with ornamental tassels at each corner' +p171115 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f2c.jpg' +p171116 +sg25267 +g27 +sa(dp171117 +g25268 +S'The Adoration of the Magi' +p171118 +sg25270 +S'Master I.A.M. of Zwolle' +p171119 +sg25273 +S'engraving' +p171120 +sg25275 +S'c. 1480/1485' +p171121 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccf4.jpg' +p171122 +sg25267 +g27 +sa(dp171123 +g25273 +S'engraving' +p171124 +sg25267 +g27 +sg25275 +S'unknown date\n' +p171125 +sg25268 +S'Andrew W. Mellon' +p171126 +sg25270 +S'Frederick Thomas Reynolds' +p171127 +sa(dp171128 +g25268 +S'Still Life with Melon and Peaches' +p171129 +sg25270 +S'Edouard Manet' +p171130 +sg25273 +S'oil on canvas' +p171131 +sg25275 +S'c. 1866' +p171132 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000683.jpg' +p171133 +sg25267 +S"Manet is known overwhelmingly for his paintings of people, but he called still life "the touchstone of painting," and it accounts for about twenty percent of his work. Most of his still lifes, like this one, were painted in the 1860s. At the time, still life enjoyed great popularity among the bourgeois citizens of the Second Empire. Dining rooms were filled with depictions of lush bouquets and lavish repasts that suggested their owners' comfortable lives. Bourgeois tastes tended toward the finely detailed and highly finished work of more conventional artists, however. A satirist looked at Manet's painting when it was exhibited in 1867 and remarked, "I do not know much about melons, but this one seems past its prime."\n What contemporary viewers did not like in Manet's painting is precisely what attracts us today: its bold style. Sudden transitions of color—not a gradual modulation of tone—give shape to the objects. Each brushstroke stands independently. They rivet attention on the canvas surface, on the painting itself. The simple tabletop assemblage does not point, either, to any meaning outside itself. Manet's arrangement stands on its own terms, without allegorical allusions—common in earlier still lifes—to abundance or the transitory nature of life. Although his work harkens back to Dutch banquet pictures from the seventeenth century, it has a distinctly modern feel.\n " +p171134 +sa(dp171135 +g25268 +S'Country House in a Park' +p171136 +sg25270 +S'Jacob van Ruisdael' +p171137 +sg25273 +S'oil on canvas' +p171138 +sg25275 +S'c. 1675' +p171139 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ea4.jpg' +p171140 +sg25267 +g27 +sa(dp171141 +g25273 +S'bronze' +p171142 +sg25267 +g27 +sg25275 +S'1917' +p171143 +sg25268 +S'An American Soldier' +p171144 +sg25270 +S'Sir Jacob Epstein' +p171145 +sa(dp171146 +g25268 +S'George Washington' +p171147 +sg25270 +S'Edward Savage' +p171148 +sg25273 +S'oil on canvas' +p171149 +sg25275 +S'c. 1796' +p171150 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000020a.jpg' +p171151 +sg25267 +g27 +sa(dp171152 +g25268 +S'Colonel William Fitch and His Sisters Sarah and Ann Fitch' +p171153 +sg25270 +S'John Singleton Copley' +p171154 +sg25273 +S'oil on canvas' +p171155 +sg25275 +S'1800/1801' +p171156 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d4e.jpg' +p171157 +sg25267 +S'The red-coated William Fitch (1756-1795), an American-born officer in \r\n the British army, prepares to depart on a magnificent steed. Since Colonel \r\n Fitch had been killed in action at Jamaica six years before this gigantic \r\n group portrait was exhibited at the Royal Academy in 1801, Copley must have \r\n painted his late friend’s image from memory or from other likenesses. \r\n Fitch’s two sisters, dressed in mourning, reach poignantly toward their \r\n lost brother. The antique urn is a funerary emblem, and the fiery sunset is \r\n a reminder of time’s passage.\n ' +p171158 +sa(dp171159 +g25268 +S'Madonna and Child with Queen Sancia, Saints and Angels' +p171160 +sg25270 +S'Tino di Camaino' +p171161 +sg25273 +S'marble' +p171162 +sg25275 +S'c. 1335' +p171163 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d81.jpg' +p171164 +sg25267 +S'Tino di Camaino, a sculptor born in Siena who died in Naples, could coax \r\n remarkably soft effects from marble. The figures in this relief, gentle and \r\n supple, with flowing garments, respond tenderly to each other. The saints \r\n standing on either side of the Madonna and Child are probably the early \r\n thirteenth-century Francis of Assisi and his follower Clare, who founded an \r\n order of Franciscan nuns. Saint Clare and the Virgin Mary both reach out to \r\n touch a nun who kneels before them.\n The woman wearing a veil, but carrying a crown around her arm, has been \r\n identified as Queen Sancia of Naples. Out of devotion to the religious \r\n orders of Saints Francis and Clare, she reportedly often exchanged her \r\n regal garments for the habit of a nun, and thus she appears here—with her \r\n earthly crown removed in deference to the celestial crown worn by the \r\n Madonna. In 1343, after the death of her husband, Robert the Wise of \r\n Naples, Sancia joined the Order of Saint Clare.\n ' +p171165 +sa(dp171166 +g25273 +S'etching' +p171167 +sg25267 +g27 +sg25275 +S'unknown date\n' +p171168 +sg25268 +S'Flock of Ducks Landing' +p171169 +sg25270 +S'Frank Weston Benson' +p171170 +sa(dp171171 +g25268 +S'Madonna of Humility' +p171172 +sg25270 +S'Jacopo della Quercia' +p171173 +sg25273 +S'marble, traces of gilding' +p171174 +sg25275 +S'c. 1400' +p171175 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c43.jpg' +p171176 +sg25267 +S'Jacopo della Quercia was born in Siena, where he was probably\r\ntrained by his father, Piero di Angelo. He was active in\r\nLucca, Ferrara, Siena, and Bologna, where he carved works\r\nin both marble and wood. As the most important sculptor\r\nof Siena, Della Quercia strongly influenced the younger\r\nFlorentine master \n The devotional theme of the Madonna of Humility\r\noriginated in Sienese painting during the fourteenth century.\r\nThe Virgin is seated humbly on the ground, in a pose\r\nthat emphasizes her humanity and her submission to divine\r\nwill. With her left knee bent beneath her and her right knee\r\nslightly raised, she holds the Christ child on her lap. Jesus\r\nclutches his mother’s dress as he turns his head toward the\r\nviewer, as if distracted from nursing. Both mother and child\r\nare draped with heavy fabrics that fall in soft, rhythmic folds\r\nover their substantial bodies. Traces of gilding and polychromy\r\ncan be seen on the hair of the figures and along\r\nthe inner folds and hems of the garments. The robust figures\r\nand compact composition endow this work with a\r\nmonumental quality that belies its small size.\n ' +p171177 +sa(dp171178 +g25268 +S'Madonna and Sleeping Child' +p171179 +sg25270 +S'Artist Information (' +p171180 +sg25273 +g27 +sg25275 +S'(sculptor)' +p171181 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063d0.jpg' +p171182 +sg25267 +g27 +sa(dp171183 +g25268 +S'Charity' +p171184 +sg25270 +S'Giovanni di Balduccio' +p171185 +sg25273 +S'marble' +p171186 +sg25275 +S'c. 1330' +p171187 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c34.jpg' +p171188 +sg25267 +S'Giovanni di Balduccio’s \n The quatrefoil or four-lobed shape of the lozenge from which Charity and \r\n the children seem to emerge is typical of ornamental forms that also appear \r\n in Gothic manuscript illumination, stained glass, and architecture. The \r\n marble relief comes from a set of at least sixteen, whose surviving \r\n elements represent Christ’s twelve apostles and the virtues of Truth, \r\n Obedience, Poverty, and Charity. Most are still set into the outside walls \r\n of the church of Orsanmichele in Florence.\n ' +p171189 +sa(dp171190 +g25268 +S'Justice' +p171191 +sg25270 +S'Bonino da Campione' +p171192 +sg25273 +S'marble' +p171193 +sg25275 +S'c. 1357' +p171194 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063cf.jpg' +p171195 +sg25267 +g27 +sa(dp171196 +g25268 +S'Prudence' +p171197 +sg25270 +S'Bonino da Campione' +p171198 +sg25273 +S'marble' +p171199 +sg25275 +S'c. 1357' +p171200 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063ce.jpg' +p171201 +sg25267 +g27 +sa(dp171202 +g25268 +S'Louis of France, The Grand Dauphin' +p171203 +sg25270 +S'Antoine Coysevox' +p171204 +sg25273 +S'marble' +p171205 +sg25275 +S'c. 1698/1699' +p171206 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c2f.jpg' +p171207 +sg25267 +g27 +sa(dp171208 +g25268 +S'Louis, Duc de Bourgogne' +p171209 +sg25270 +S'French 18th Century' +p171210 +sg25273 +S'overall (w/out base): 74.8 x 75.7 x 43.5 cm (29 7/16 x 29 13/16 x 17 1/8 in.)' +p171211 +sg25275 +S'\nmarble' +p171212 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c32.jpg' +p171213 +sg25267 +g27 +sa(dp171214 +g25273 +S'(artist after)' +p171215 +sg25267 +g27 +sg25275 +S'\n' +p171216 +sg25268 +S'Madonna and Child' +p171217 +sg25270 +S'Artist Information (' +p171218 +sa(dp171219 +g25273 +S'overall: 61.6 x 22.9 x 18.1 cm (24 1/4 x 9 x 7 1/8 in.)' +p171220 +sg25267 +g27 +sg25275 +S'\nmarble' +p171221 +sg25268 +S'Angel of the Annunciation' +p171222 +sg25270 +S'Venetian 14th Century' +p171223 +sa(dp171224 +g25273 +S'overall: 61.3 x 21.3 x 15.3 cm (24 1/8 x 8 3/8 x 6 in.)' +p171225 +sg25267 +g27 +sg25275 +S'\nmarble' +p171226 +sg25268 +S'Virgin of the Annunciation' +p171227 +sg25270 +S'Venetian 14th Century' +p171228 +sa(dp171229 +g25268 +S'Approaching Storm' +p171230 +sg25270 +S'Thomas Hart Benton' +p171231 +sg25273 +S'lithograph' +p171232 +sg25275 +S'1938' +p171233 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a2e.jpg' +p171234 +sg25267 +g27 +sa(dp171235 +g25273 +S'overall: 61.8 x 21.8 x 8.9 cm (24 5/16 x 8 9/16 x 3 1/2 in.)' +p171236 +sg25267 +g27 +sg25275 +S'\nmarble' +p171237 +sg25268 +S'Saint Peter' +p171238 +sg25270 +S'Venetian 14th Century' +p171239 +sa(dp171240 +g25273 +S'overall: 60.2 x 21.5 x 8.9 cm (23 11/16 x 8 7/16 x 3 1/2 in.)' +p171241 +sg25267 +g27 +sg25275 +S'\nmarble' +p171242 +sg25268 +S'Saint Paul' +p171243 +sg25270 +S'Venetian 14th Century' +p171244 +sa(dp171245 +g25268 +S'Angel with Symphonia' +p171246 +sg25270 +S'Pisan 14th Century' +p171247 +sg25273 +S'marble' +p171248 +sg25275 +S'c. 1360' +p171249 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c41.jpg' +p171250 +sg25267 +S'Angel with Symphonia\n Such figures, carved in the round, might have stood on top of the pinnacles of a complex Gothic monument whose central image would have represented Christ, the Virgin, or both. Since both angels look to their right, they must have been placed on the same side of the main subject. The notable differences in their faces, movements, and drapery styles suggest more than one hand was involved in their creation.\n ' +p171251 +sa(dp171252 +g25268 +S'Angel with Tambourine' +p171253 +sg25270 +S'Pisan 14th Century' +p171254 +sg25273 +S'marble' +p171255 +sg25275 +S'c. 1360' +p171256 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c42.jpg' +p171257 +sg25267 +g27 +sa(dp171258 +g25268 +S'Madonna and Child' +p171259 +sg25270 +S'Benedetto da Maiano' +p171260 +sg25273 +S'marble' +p171261 +sg25275 +S'c. 1475' +p171262 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d6f.jpg' +p171263 +sg25267 +g27 +sa(dp171264 +g25268 +S'Portrait of a Man' +p171265 +sg25270 +S'Venetian 15th Century' +p171266 +sg25273 +S'overall: 26.6 x 19.3 cm (10 1/2 x 7 5/8 in.)\r\nframed: 43.2 x 35.9 cm (17 x 14 1/8 in.)' +p171267 +sg25275 +S'\noil on panel' +p171268 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3df.jpg' +p171269 +sg25267 +g27 +sa(dp171270 +g25268 +S'Diana and Endymion' +p171271 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p171272 +sg25273 +S'oil on canvas' +p171273 +sg25275 +S'c. 1753/1756' +p171274 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d71.jpg' +p171275 +sg25267 +S'In this scene Diana, virgin goddess of the hunt, steals forth through the moonlight to kiss the sleeping shepherd Endymion, whom the gods granted eternal sleep to preserve his beauty and youth. \n ' +p171276 +sa(dp171277 +g25268 +S'The Love Letter' +p171278 +sg25270 +S'Fran\xc3\xa7ois Boucher' +p171279 +sg25273 +S'oil on canvas' +p171280 +sg25275 +S'1750' +p171281 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d50.jpg' +p171282 +sg25267 +S"The Love Letter\n The scene is a pastoral idyll. The young "shepherdesses" wear fine silks,\r\n and a contemporary audience would understand an erotic promise in the\r\n display of pink toes. Idealized visions of country life were common on the\r\n stage and in real-life masquerades. Denis Diderot, disdainful of the\r\n frivolity of Boucher's scenes, complained, "Shall I never be rid of these\r\n damned pastorals?" Yet the encyclopedist, who was an influential critic,\r\n also appreciated the brilliance of Boucher's painting, which captures the\r\n luminous colors of shells, butterflies, and polished stones—objects the\r\n artist collected so he could copy their fragile iridescence.\n " +p171283 +sa(dp171284 +g25268 +S'Saint Sebastian Succored by the Holy Women' +p171285 +sg25270 +S'Jean-Baptiste-Camille Corot' +p171286 +sg25273 +S'oil on canvas' +p171287 +sg25275 +S'1874' +p171288 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000df/a000dfc6.jpg' +p171289 +sg25267 +g27 +sa(dp171290 +g25268 +S'Madonna and Child with the Infant Saint John' +p171291 +sg25270 +S'Artist Information (' +p171292 +sg25273 +S'Italian, 1489/1494 - 1534' +p171293 +sg25275 +S'(artist after)' +p171294 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a00008c9.jpg' +p171295 +sg25267 +g27 +sa(dp171296 +g25268 +S'Cow Drinking' +p171297 +sg25270 +S'Nicolaes Pietersz Berchem' +p171298 +sg25273 +S'etching' +p171299 +sg25275 +S'1680' +p171300 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4b8.jpg' +p171301 +sg25267 +g27 +sa(dp171302 +g25273 +S'British, 1726 - 1770' +p171303 +sg25267 +g27 +sg25275 +S'(related artist)' +p171304 +sg25268 +S'Portrait of a Lady' +p171305 +sg25270 +S'Artist Information (' +p171306 +sa(dp171307 +g25273 +S'British, 1726 - 1770' +p171308 +sg25267 +g27 +sg25275 +S'(related artist)' +p171309 +sg25268 +S'Portrait of a Lady' +p171310 +sg25270 +S'Artist Information (' +p171311 +sa(dp171312 +g25268 +S'The Hermit' +p171313 +sg25270 +S'Gerrit Dou' +p171314 +sg25273 +S'oil on panel' +p171315 +sg25275 +S'1670' +p171316 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e57.jpg' +p171317 +sg25267 +g27 +sa(dp171318 +g25268 +S'Jeanne B\xc3\xa9cu, Comtesse du Barry' +p171319 +sg25270 +S'Fran\xc3\xa7ois-Hubert Drouais' +p171320 +sg25273 +S'oil on canvas' +p171321 +sg25275 +S'c. 1770/1774' +p171322 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005aae.jpg' +p171323 +sg25267 +g27 +sa(dp171324 +g25268 +S'The Music Lesson' +p171325 +sg25270 +S'Artist Information (' +p171326 +sg25273 +S'Dutch, 1617 - 1681' +p171327 +sg25275 +S'(related artist)' +p171328 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e4b.jpg' +p171329 +sg25267 +g27 +sa(dp171330 +g25273 +S'Flemish, 1599 - 1641' +p171331 +sg25267 +g27 +sg25275 +S'(artist after)' +p171332 +sg25268 +S'Saint Peter' +p171333 +sg25270 +S'Artist Information (' +p171334 +sa(dp171335 +g25268 +S'The Happy Family' +p171336 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p171337 +sg25273 +S'oil on canvas' +p171338 +sg25275 +S'c. 1775' +p171339 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d66.jpg' +p171340 +sg25267 +g27 +sa(dp171341 +g25268 +S'Young Woman and Man' +p171342 +sg25270 +S'French 18th Century' +p171343 +sg25273 +S'overall: 11.8 x 9.9 cm (4 5/8 x 3 7/8 in.)\r\nframed: 25.4 x 22.9 x 1.9 cm (10 x 9 x 3/4 in.)' +p171344 +sg25275 +S'\noil on wood' +p171345 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a000628d.jpg' +p171346 +sg25267 +g27 +sa(dp171347 +g25268 +S'F\xc3\xaate Champ\xc3\xaatre' +p171348 +sg25270 +S'Artist Information (' +p171349 +sg25273 +S'French, 1695 - 1736' +p171350 +sg25275 +S'(artist after)' +p171351 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005aa3.jpg' +p171352 +sg25267 +g27 +sa(dp171353 +g25268 +S'Divertissement' +p171354 +sg25270 +S'French 18th Century' +p171355 +sg25273 +S'overall: 32.2 x 25.3 cm (12 11/16 x 9 15/16 in.)\r\nframed: 52.7 x 43.2 x 5.7 cm (20 3/4 x 17 x 2 1/4 in.)' +p171356 +sg25275 +S'\noil on canvas' +p171357 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a000628c.jpg' +p171358 +sg25267 +g27 +sa(dp171359 +g25273 +S'lithograph' +p171360 +sg25267 +g27 +sg25275 +S'1942' +p171361 +sg25268 +S'Rachmaninoff' +p171362 +sg25270 +S'Alfred Bendiner' +p171363 +sa(dp171364 +g25273 +S'oil on canvas' +p171365 +sg25267 +g27 +sg25275 +S'early 20th century' +p171366 +sg25268 +S'Egyptian Temple' +p171367 +sg25270 +S'Georgia Timken Fry' +p171368 +sa(dp171369 +g25268 +S'Flock of Sheep' +p171370 +sg25270 +S'Georgia Timken Fry' +p171371 +sg25273 +S'oil on canvas' +p171372 +sg25275 +S'early 20th century' +p171373 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3e0.jpg' +p171374 +sg25267 +g27 +sa(dp171375 +g25273 +S'oil on canvas' +p171376 +sg25267 +g27 +sg25275 +S'early 20th century' +p171377 +sg25268 +S'Shepherd and Sheep' +p171378 +sg25270 +S'Georgia Timken Fry' +p171379 +sa(dp171380 +g25268 +S'Girl with Birds' +p171381 +sg25270 +S'Artist Information (' +p171382 +sg25273 +S'French, 1725 - 1805' +p171383 +sg25275 +S'(related artist)' +p171384 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005ab1.jpg' +p171385 +sg25267 +g27 +sa(dp171386 +g25273 +S'French, 1725 - 1805' +p171387 +sg25267 +g27 +sg25275 +S'(artist after)' +p171388 +sg25268 +S'Girl with Folded Arms' +p171389 +sg25270 +S'Artist Information (' +p171390 +sa(dp171391 +g25268 +S'Group of Four Boys' +p171392 +sg25270 +S'Artist Information (' +p171393 +sg25273 +S'Flemish, 1599 - 1641' +p171394 +sg25275 +S'(artist after)' +p171395 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3e1.jpg' +p171396 +sg25267 +g27 +sa(dp171397 +g25268 +S'Reclining Nude' +p171398 +sg25270 +S'Jean-Jacques Henner' +p171399 +sg25273 +S'oil on canvas' +p171400 +sg25275 +S'unknown date\n' +p171401 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dd5.jpg' +p171402 +sg25267 +g27 +sa(dp171403 +g25273 +S', c. 1845/1860' +p171404 +sg25267 +g27 +sg25275 +S'\n' +p171405 +sg25268 +S"Horses' Heads" +p171406 +sg25270 +S'John Frederick Herring the Younger' +p171407 +sa(dp171408 +g25268 +S'Head of a Woman' +p171409 +sg25270 +S'Umbrian 16th Century' +p171410 +sg25273 +S'overall: 39.5 x 28.5 cm (15 9/16 x 11 1/4 in.)' +p171411 +sg25275 +S'\noil on panel' +p171412 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3e2.jpg' +p171413 +sg25267 +g27 +sa(dp171414 +g25268 +S'The Adoration of the Christ Child' +p171415 +sg25270 +S'Artist Information (' +p171416 +sg25273 +S'Italian, 1373 - 1452' +p171417 +sg25275 +S'(related artist)' +p171418 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3e3.jpg' +p171419 +sg25267 +g27 +sa(dp171420 +g25273 +S'lithograph' +p171421 +sg25267 +g27 +sg25275 +S'1940' +p171422 +sg25268 +S'The Artful Dodger' +p171423 +sg25270 +S'Alfred Bendiner' +p171424 +sa(dp171425 +g25268 +S'Barbara Villiers, Duchess of Cleveland' +p171426 +sg25270 +S'Artist Information (' +p171427 +sg25273 +S'British, 1618 - 1680' +p171428 +sg25275 +S'(related artist)' +p171429 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d43.jpg' +p171430 +sg25267 +g27 +sa(dp171431 +g25268 +S'Gian Federico Madruzzo' +p171432 +sg25270 +S'Giovanni Battista Moroni' +p171433 +sg25273 +S'oil on canvas' +p171434 +sg25275 +S'c. 1560' +p171435 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000819.jpg' +p171436 +sg25267 +S"Moroni studied painting with Moretto in Brescia before\n he settled in nearby Bergamo, where he remained for\n most of his career. He also seems to have spent some\n time in Trent. The subject of this portrait is usually\n identified as Gian Federico Madruzzo, a nephew of\n the prince-bishop of Trent. The full-length portrait format\n was relatively new in Italy and perhaps had been\n inspired by examples from the north. Its imposing formality\n is especially suited for public portraits, and here\n the subject wears a diplomat's robes. However, the presence\n of a small dog, traditionally a symbol of loyalty,\n suggests this painting may have been intended for a\n domestic setting.\n Moroni's realistic depictions have ensured his\n reputation as one of the finest portraitists of the sixteenth\n century. His religious works, however, have usually\n been viewed as bland reiterations of themes he learned\n from Moretto. In recent years, scholars have begun\n to reconsider them in relation to the Council of\n Trent (1545-1563), which was convened to address the\n Protestant challenge. Reformers in the Roman Catholic\n church stressed the role of mental images as a focus\n for meditation and urged painters to produce religious\n art that was clear and direct, the sort of explicit image\n seen, for example, in Moroni's painting \n " +p171437 +sa(dp171438 +g25268 +S'Portrait of a Young Woman' +p171439 +sg25270 +S'Artist Information (' +p171440 +sg25273 +S'French, 1685 - 1766' +p171441 +sg25275 +S'(artist after)' +p171442 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004a/a0004a1a.jpg' +p171443 +sg25267 +g27 +sa(dp171444 +g25268 +S'Antwerp Cathedral' +p171445 +sg25270 +S'Peeter Neeffs the Elder' +p171446 +sg25273 +S'oil on copper' +p171447 +sg25275 +S'c. 1650/1655' +p171448 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e35.jpg' +p171449 +sg25267 +g27 +sa(dp171450 +g25268 +S'Four-Panel Screen' +p171451 +sg25270 +S'Portuguese 15th Century' +p171452 +sg25273 +S'overall size: 222 x 286.6 cm (87 3/8 x 112 13/16 in.)\r\noverall (Saint Dionysius, painted surface): 151.5 x 54.5 cm (59 5/8 x 21 7/16 in.)\r\noverall (Saint Dionysius, painted surface and frame): 221 x 71.1 cm (87 x 28 in.)\r\noverall (Saint Sebastian, painted surface): 151.3 x 54.7 cm (59 9/16 x 21 9/16 in.)\r\noverall (Saint Sebastian, painted surface and frame): 222 x 71.3 cm (87 3/8 x 28 1/16 in.)\r\noverall (Saint Barbara, painted surface): 150 x 54.7 cm (59 1/16 x 21 9/16 in.)\r\noverall (Saint Barbara, painted surface and frame): 222 x 71.3 cm (87 3/8 x 28 1/16 in.)\r\noverall (Saint Lawrence, painted surface): 151.5 x 54.5 cm (59 5/8 x 21 7/16 in.)\r\noverall (Saint Lawrence, painted surface and frame): 221 x 71.1 cm (87 x 28 in.)' +p171453 +sg25275 +S'\noil on panel' +p171454 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004bb.jpg' +p171455 +sg25267 +g27 +sa(dp171456 +g25268 +S'Major-General Sir Archibald Campbell' +p171457 +sg25270 +S'George Romney' +p171458 +sg25273 +S'oil on canvas' +p171459 +sg25275 +S'1790-1792' +p171460 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000536.jpg' +p171461 +sg25267 +g27 +sa(dp171462 +g25268 +S'Saint Peter' +p171463 +sg25270 +S'Artist Information (' +p171464 +sg25273 +S'Flemish, 1577 - 1640' +p171465 +sg25275 +S'(related artist)' +p171466 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e3b.jpg' +p171467 +sg25267 +g27 +sa(dp171468 +g25268 +S'Peter Paul Rubens' +p171469 +sg25270 +S'Artist Information (' +p171470 +sg25273 +S'Flemish, 1577 - 1640' +p171471 +sg25275 +S'(related artist)' +p171472 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b02.jpg' +p171473 +sg25267 +g27 +sa(dp171474 +g25268 +S'The Crucifixion' +p171475 +sg25270 +S'Russian 19th Century' +p171476 +sg25273 +S'overall: 47 x 35.9 x 2.2 cm (18 1/2 x 14 1/8 x 7/8 in.)' +p171477 +sg25275 +S'\noil on wood with inset brass cross' +p171478 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000df/a000dfc4.jpg' +p171479 +sg25267 +g27 +sa(dp171480 +g25273 +S'overall: 26.5 x 22 cm (10 7/16 x 8 11/16 in.)' +p171481 +sg25267 +g27 +sg25275 +S'\noil on wood with silver overlay' +p171482 +sg25268 +S'Christ Blessing' +p171483 +sg25270 +S'Russian 19th Century' +p171484 +sa(dp171485 +g25273 +S'lithograph' +p171486 +sg25267 +g27 +sg25275 +S'1937' +p171487 +sg25268 +S'Doing the Flat Foot Floogie' +p171488 +sg25270 +S'Alfred Bendiner' +p171489 +sa(dp171490 +g25268 +S'Bacchus and Ariadne' +p171491 +sg25270 +S'Giovanni Battista Tiepolo' +p171492 +sg25273 +S'oil on canvas' +p171493 +sg25275 +S'c. 1743/1745' +p171494 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a000090f.jpg' +p171495 +sg25267 +g27 +sa(dp171496 +g25268 +S'Lamentation' +p171497 +sg25270 +S'Marco Tintoretto' +p171498 +sg25273 +S'oil on canvas' +p171499 +sg25275 +S'unknown date\n' +p171500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a000630f.jpg' +p171501 +sg25267 +g27 +sa(dp171502 +g25268 +S'Girolamo and Cardinal Marco Corner Investing Marco, Abbot of Carrara, with His Benefice' +p171503 +sg25270 +S'Artist Information (' +p171504 +sg25273 +S'(painter)' +p171505 +sg25275 +S'\n' +p171506 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000082e.jpg' +p171507 +sg25267 +g27 +sa(dp171508 +g25268 +S'Imaginary Self-Portrait of Titian' +p171509 +sg25270 +S'Pietro della Vecchia' +p171510 +sg25273 +S'oil on canvas' +p171511 +sg25275 +S'probably 1650s' +p171512 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000653.jpg' +p171513 +sg25267 +g27 +sa(dp171514 +g25268 +S'The Evening of the Deluge' +p171515 +sg25270 +S'Joseph Mallord William Turner' +p171516 +sg25273 +S'oil on canvas' +p171517 +sg25275 +S'c. 1843' +p171518 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000741.jpg' +p171519 +sg25267 +S'While Noah and his wife sleep in their tent, the biblical Flood begins. \r\n In a spiraling vortex of rain and moonlight, birds and beasts head toward \r\n the distant Ark. This is a preliminary version of a canvas shown in the \r\n 1843 Royal Academy. Now in London’s Tate Gallery, the final work uses \r\n stronger color contrasts but is equally evocative and sketchy.\n ' +p171520 +sa(dp171521 +g25268 +S'Marie-Antoinette' +p171522 +sg25270 +S'Artist Information (' +p171523 +sg25273 +S'French, 1755 - 1842' +p171524 +sg25275 +S'(artist after)' +p171525 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a00054cc.jpg' +p171526 +sg25267 +g27 +sa(dp171527 +g25268 +S'The Holy Family with Saint Elizabeth and Saint John the Baptist' +p171528 +sg25270 +S'Sir David Wilkie' +p171529 +sg25273 +S'oil on canvas on wood' +p171530 +sg25275 +S'1841' +p171531 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000053e.jpg' +p171532 +sg25267 +g27 +sa(dp171533 +g25273 +S'oil on canvas board' +p171534 +sg25267 +g27 +sg25275 +S'early 20th century' +p171535 +sg25268 +S'Landscape' +p171536 +sg25270 +S'Georgia Timken Fry' +p171537 +sa(dp171538 +g25273 +S'oil on canvas board' +p171539 +sg25267 +g27 +sg25275 +S'early 20th century' +p171540 +sg25268 +S'Potters in a Landscape' +p171541 +sg25270 +S'Georgia Timken Fry' +p171542 +sa(dp171543 +g25273 +S'oil on wood' +p171544 +sg25267 +g27 +sg25275 +S'early 20th century' +p171545 +sg25268 +S'Seascape [obverse]' +p171546 +sg25270 +S'Georgia Timken Fry' +p171547 +sa(dp171548 +g25268 +S'Madame Besnard' +p171549 +sg25270 +S'Albert Besnard' +p171550 +sg25273 +S'etching' +p171551 +sg25275 +S'1884' +p171552 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a0009049.jpg' +p171553 +sg25267 +g27 +sa(dp171554 +g25273 +S'oil on wood' +p171555 +sg25267 +g27 +sg25275 +S'early 20th century' +p171556 +sg25268 +S'Landscape with Palm [reverse]' +p171557 +sg25270 +S'Georgia Timken Fry' +p171558 +sa(dp171559 +g25273 +S'oil on canvas' +p171560 +sg25267 +g27 +sg25275 +S'early 20th century' +p171561 +sg25268 +S'Sheep by Stream and Field' +p171562 +sg25270 +S'Georgia Timken Fry' +p171563 +sa(dp171564 +g25273 +S'(artist after)' +p171565 +sg25267 +g27 +sg25275 +S'\n' +p171566 +sg25268 +S'George III of England' +p171567 +sg25270 +S'Artist Information (' +p171568 +sa(dp171569 +g25268 +S'Les Voeux acceptees' +p171570 +sg25270 +S'Artist Information (' +p171571 +sg25273 +S'(artist after)' +p171572 +sg25275 +S'\n' +p171573 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e8f.jpg' +p171574 +sg25267 +g27 +sa(dp171575 +g25268 +S'Pastoral' +p171576 +sg25270 +S'Hans Thoma' +p171577 +sg25273 +S'etching' +p171578 +sg25275 +S'1919' +p171579 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3ce.jpg' +p171580 +sg25267 +g27 +sa(dp171581 +g25268 +S'Farnese Hercules' +p171582 +sg25270 +S'Florentine 16th Century' +p171583 +sg25273 +S'bronze' +p171584 +sg25275 +S'c. 1550/1599' +p171585 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00052/a0005233.jpg' +p171586 +sg25267 +g27 +sa(dp171587 +g25273 +S'watercolor' +p171588 +sg25267 +g27 +sg25275 +S'1876' +p171589 +sg25268 +S'The Tern Schooner "Minnie G. Loud"' +p171590 +sg25270 +S'Louis Roux' +p171591 +sa(dp171592 +g25268 +S'Henrietta Marchant Liston (Mrs. Robert Liston)' +p171593 +sg25270 +S'Gilbert Stuart' +p171594 +sg25273 +S'oil on canvas' +p171595 +sg25275 +S'1800' +p171596 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000250.jpg' +p171597 +sg25267 +g27 +sa(dp171598 +g25268 +S'The Italian Comedians (copy)' +p171599 +sg25270 +S'Artist Information (' +p171600 +sg25273 +S'French, 1684 - 1721' +p171601 +sg25275 +S'(artist after)' +p171602 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a00062d9.jpg' +p171603 +sg25267 +g27 +sa(dp171604 +g25273 +S'(author)' +p171605 +sg25267 +g27 +sg25275 +S'\n' +p171606 +sg25268 +S'Jacques Villon: Catalogue de son oeuvre grave' +p171607 +sg25270 +S'Artist Information (' +p171608 +sa(dp171609 +g25268 +S'La Femme (frontispiece)' +p171610 +sg25270 +S'Albert Besnard' +p171611 +sg25273 +S'etching' +p171612 +sg25275 +S'c. 1886' +p171613 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a000904d.jpg' +p171614 +sg25267 +g27 +sa(dp171615 +g25273 +S'etching on laid paper' +p171616 +sg25267 +g27 +sg25275 +S'published 1950' +p171617 +sg25268 +S'Small Vase of Flowers (Petit vase de fleurs)' +p171618 +sg25270 +S'Jacques Villon' +p171619 +sa(dp171620 +g25268 +S'A Bishop Saint (Burchard of W\xc3\xbcrzburg?)' +p171621 +sg25270 +S'Tilman Riemenschneider' +p171622 +sg25273 +S'linden wood with traces of polychromy' +p171623 +sg25275 +S'c. 1515/1520' +p171624 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d8e.jpg' +p171625 +sg25267 +S"Burchard, the English-born first bishop of Würzburg, Germany, died in 754. In this\nimaginary portrait, he raises his right hand in blessing. His left hand once held a curving crozier.\nThe figure's facial type occurs repeatedly in the wood and stone sculptures of this famous\nGerman master: prominent nose and cheekbones, strong chin, long, sunken cheeks, and finely\noutlined, downturned mouth and eyes, suggesting a mood of slightly sorrowful contemplation. In\nthis careworn, sensitive face, Riemenschneider explored the psychology of a man on whom\nspiritual authority seems to weigh heavily.\n Hollowed out to make it light, the bust may once have been carried in religious processions.\nIt has experienced some alterations since it was carved; the square, diamond-shaped cut on the\nchest was certainly made well after the sculpture was finished, possibly in order to fill the recess\nwith relics.\n Tiny traces of original coloring, removed long ago, may be noticed, for instance on the cope\n(mantle), where bits of blue and yellow remain. Although this particular bust was polychromed,\nRiemenschneider was a pioneer in the use of bare, unpainted wood for the sculpture on his major\naltarpieces. The black rings around the pupils, however, so important to the dreamy expression of\nthe eyes, are typical of Riemenschneider's figures.\n " +p171626 +sa(dp171627 +g25268 +S'The Adoration of the Child' +p171628 +sg25270 +S'Andrea della Robbia' +p171629 +sg25273 +S'glazed terracotta' +p171630 +sg25275 +S'after 1477' +p171631 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d92.jpg' +p171632 +sg25267 +g27 +sa(dp171633 +g25268 +S'The Nativity' +p171634 +sg25270 +S'Luca della Robbia' +p171635 +sg25273 +S'glazed terracotta' +p171636 +sg25275 +S'c. 1460' +p171637 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d7f.jpg' +p171638 +sg25267 +g27 +sa(dp171639 +g25273 +S'marble' +p171640 +sg25267 +g27 +sg25275 +S'probably c. 1875/1900' +p171641 +sg25268 +S'Louis XIV' +p171642 +sg25270 +S'Giovanni Verona' +p171643 +sa(dp171644 +g25268 +S'Apollo and Marsyas' +p171645 +sg25270 +S'Artist Information (' +p171646 +sg25273 +S'Italian, 1475 - 1564' +p171647 +sg25275 +S'(related artist)' +p171648 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063d7.jpg' +p171649 +sg25267 +g27 +sa(dp171650 +g25268 +S'Madonna and Child' +p171651 +sg25270 +S'Jacopo Sansovino' +p171652 +sg25273 +S'papier mache and stucco, painted and gilded' +p171653 +sg25275 +S'c. 1550' +p171654 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d80.jpg' +p171655 +sg25267 +g27 +sa(dp171656 +g25268 +S'Master John Heathcote' +p171657 +sg25270 +S'Thomas Gainsborough' +p171658 +sg25273 +S'oil on canvas' +p171659 +sg25275 +S'c. 1771/1772' +p171660 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000550.jpg' +p171661 +sg25267 +S'Gainsborough, who never left England, devised an idiosyncratic style of \r\n rapidly improvised brushstrokes of multicolored paint, evident in his \r\n \n ' +p171662 +sa(dp171663 +g25268 +S'John Musters' +p171664 +sg25270 +S'Sir Joshua Reynolds' +p171665 +sg25273 +S'oil on canvas' +p171666 +sg25275 +S'1777-c. 1780' +p171667 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00043/a00043fb.jpg' +p171668 +sg25267 +S'Reynolds, the first president of the Royal Academy, had spent three \r\n years in Italy, acquiring a vast knowledge of classical and Renaissance \r\n art. His portrayal of the High Sheriff of Nottingham, \n ' +p171669 +sa(dp171670 +g25268 +S'The Dogana and Santa Maria della Salute, Venice' +p171671 +sg25270 +S'Joseph Mallord William Turner' +p171672 +sg25273 +S'oil on canvas' +p171673 +sg25275 +S'1843' +p171674 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000732.jpg' +p171675 +sg25267 +S'Displayed at the Royal Academy in 1843, Turner’s late view of Venice \r\n shows the Customs House, or Dogana, from an angle opposite to that seen in \r\n his 1834 picture. Behind the Dogana, the domes of the Church \r\n of Santa Maria della Salute rise against the vibrantly luminous sky. \r\n Although his early works had made Turner wealthy and famous, this later \r\n style—in which light evaporates the solid forms—was far too avant-garde \r\n for his contemporaries to comprehend. In retrospect, however, it is such \r\n late works that had the most impact upon subsequent landscapists. (The \r\n parapet at the bottom right is formally inscribed with Turner’s full \r\n initials, \n ' +p171676 +sa(dp171677 +g25268 +S'The Sick Mother (La m\xc3\xa8re malade)' +p171678 +sg25270 +S'Albert Besnard' +p171679 +sg25273 +S'etching' +p171680 +sg25275 +S'1889' +p171681 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a000905b.jpg' +p171682 +sg25267 +g27 +sa(dp171683 +g25268 +S'Madame Henriot' +p171684 +sg25270 +S'Auguste Renoir' +p171685 +sg25273 +S'oil on canvas' +p171686 +sg25275 +S'c. 1876' +p171687 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f79.jpg' +p171688 +sg25267 +S'Born Marie Henriette Alphonsine Grossin\r\nin 1857, Henriette was the daughter\r\nof Aline Grossin, an unmarried milliner\r\nresiding in Paris. In 1872, the fifteenyear-\r\nold Henriette enrolled in the Paris\r\nConservatoire. The following year, she\r\ntoured the provinces but returned home\r\nto Paris in 1874, where she began to pursue\r\nher stage career in earnest, appearing\r\nin minor roles at the Théâtre de l\xe2\x80\x99Ambigu-Comique. Adopting the stage name Henriette\r\nHenriot, the aspiring actress worked\r\nas an artist\xe2\x80\x99s model to pay the rent before\r\nachieving modest fame as a vaudeville star.\r\nShe retired from the stage following the\r\ndeath in 1900 of her daughter Jane—a\r\npromising young actress who was the victim\r\nof a fire at the Comedie-Française—and\r\neventually sank into obscurity.\n Henriette was Renoir\xe2\x80\x99s favorite model\r\nin the 1870s, appearing in at least eleven\r\nof the paintings he produced between\r\nthe years 1874 and 1876, including the\r\nsumptuous full-length portrait \n Renoir\xe2\x80\x99s artistry is equally evident in\r\nthe work\xe2\x80\x99s composition. Renoir depicted\r\nHenriette in a half-length format with her\r\nhands folded demurely in her lap. While\r\nthe face is carefully rendered, the remainder of the picture has the rough, unfinished\r\nquality of a sketch, which serves to\r\nfocus attention upon her visage. The paint\r\nis, for the most part, thinly applied, a technique\r\nparticularly well suited to depicting\r\nthe diaphanous fabric of her dress, which\r\nseems almost to merge with the background.\r\nIn the delicacy of the paint handling\r\nand its soft-hued palette, \n This is the only portrait of herself by\r\nRenoir that Henriette ever owned.\n (Text by Kimberly Jones, \n Notes\n \n \n ' +p171689 +sa(dp171690 +g25268 +S'Elizabeth Fulford Welshman' +p171691 +sg25270 +S'John Greenwood' +p171692 +sg25273 +S'oil on canvas' +p171693 +sg25275 +S'1749' +p171694 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000d2.jpg' +p171695 +sg25267 +g27 +sa(dp171696 +g25268 +S'Lieutenant-General Sir Thomas Picton' +p171697 +sg25270 +S'Sir William Beechey' +p171698 +sg25273 +S'oil on canvas' +p171699 +sg25275 +S'1815/1817' +p171700 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004eb.jpg' +p171701 +sg25267 +g27 +sa(dp171702 +g25268 +S'Mrs. Thomas Horne' +p171703 +sg25270 +S'Francis Cotes' +p171704 +sg25273 +S'oil on canvas' +p171705 +sg25275 +S'c. 1768/1770' +p171706 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f5ac.jpg' +p171707 +sg25267 +g27 +sa(dp171708 +g25273 +S'oil on canvas' +p171709 +sg25267 +g27 +sg25275 +S'c. 1785/1788' +p171710 +sg25268 +S'William Yelverton Davenport' +p171711 +sg25270 +S'Thomas Gainsborough' +p171712 +sa(dp171713 +g25273 +S'oil on panel' +p171714 +sg25267 +g27 +sg25275 +S'1638' +p171715 +sg25268 +S'Portrait of a Lady with a Ruff' +p171716 +sg25270 +S'Michiel van Miereveld' +p171717 +sa(dp171718 +g25268 +S'The Return from the Hunt' +p171719 +sg25270 +S'Artist Information (' +p171720 +sg25273 +S'Flemish, 16th century' +p171721 +sg25275 +S'(designer)' +p171722 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063a5.jpg' +p171723 +sg25267 +g27 +sa(dp171724 +g25268 +S'Vase of Flowers' +p171725 +sg25270 +S'Jan Davidsz de Heem' +p171726 +sg25273 +S'oil on canvas' +p171727 +sg25275 +S'c. 1660' +p171728 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e62.jpg' +p171729 +sg25267 +S"The still life was developed as a separate category of painting in the seventeenth century. Dutch artists worked in a variety of still–life traditions that ranged from banquet pieces to paintings focused solely on fruit, shells, books, or flowers. De Heem was one of the most gifted and versatile of these artists, and one of the most influential. His consummate technique allowed him to portray a great variety of textures in a convincing manner. In this flower painting we can delight in his realistic depiction of tulip petals, long bent reeds of wheat, minute animals including butterflies, ants, snails, caterpillars, and finally, reflections on the transparent\r\nglass vase.\n De Heem also had great compositional sensitivity. Over twenty types of flowers, vegetables, and grains have been brought together here in a way that permits their colors and shapes to balance in an harmonious arrangement. Despite De Heem's realistic depiction, this floral arrangement never actually could have existed. The flowers represented grow at different seasons of the year. In many of his paintings De Heem chose to include specific animals and flowers because of their symbolic meanings; the butterfly, for example, is often a symbol for the Resurrection.\n " +p171730 +sa(dp171731 +g25268 +S'The Copley Family' +p171732 +sg25270 +S'John Singleton Copley' +p171733 +sg25273 +S'oil on canvas' +p171734 +sg25275 +S'1776/1777' +p171735 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000087b.jpg' +p171736 +sg25267 +S'In June 1774, when he was already thirty-five years old, Copley decided that\nhe must go to Europe. Although he intended to stay abroad just long enough to acquire\nartistic sophistication, the American Revolution changed his plans. Studying in\nRome and stopping in many continental cities, Copley arrived in London in October\n1775. There he was joined by his wife, children, and father-in-law, Richard Clarke,\none of the Tory merchants whose investments had been dumped overboard at the Boston\nTea Party.\n In I777 at the Royal Academy, Copley exhibited \n ' +p171737 +sa(dp171738 +g25268 +S'John Smith Warner (?)' +p171739 +sg25270 +S'American 19th Century' +p171740 +sg25273 +S'overall: 76.5 x 63.3 cm (30 1/8 x 24 15/16 in.)\r\nframed: 97.8 x 85.1 x 8.3 cm (38 1/2 x 33 1/2 x 3 1/4 in.)' +p171741 +sg25275 +S'\noil on canvas' +p171742 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000019f.jpg' +p171743 +sg25267 +g27 +sa(dp171744 +g25268 +S'The Adoration of the Shepherds' +p171745 +sg25270 +S'Artist Information (' +p171746 +sg25273 +S'Italian, 1540 - 1587' +p171747 +sg25275 +S'(artist after)' +p171748 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002af2.jpg' +p171749 +sg25267 +g27 +sa(dp171750 +g25268 +S"Woman Reading in the Atelier (La lecture dans l'atelier)" +p171751 +sg25270 +S'Albert Besnard' +p171752 +sg25273 +S'etching' +p171753 +sg25275 +S'1887' +p171754 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000976c.jpg' +p171755 +sg25267 +g27 +sa(dp171756 +g25268 +S'Saint Sebastian' +p171757 +sg25270 +S'Amico Aspertini' +p171758 +sg25273 +S'oil on panel' +p171759 +sg25275 +S'c. 1505' +p171760 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007f4.jpg' +p171761 +sg25267 +g27 +sa(dp171762 +g25268 +S'The Crucifixion' +p171763 +sg25270 +S'Bernardo Daddi' +p171764 +sg25273 +S', c. 1335' +p171765 +sg25275 +S'\n' +p171766 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00025/a000251b.jpg' +p171767 +sg25267 +g27 +sa(dp171768 +g25268 +S'Madonna and Child Enthroned with Saint Peter and Saint Paul' +p171769 +sg25270 +S'Domenico di Bartolo' +p171770 +sg25273 +S'tempera (?) on panel' +p171771 +sg25275 +S'c. 1430' +p171772 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000074f.jpg' +p171773 +sg25267 +S"In the early 1400s, the Sienese artist most influenced by the new Florentine style of painting was Domenico di Bartolo. He was, in fact, the only Sienese painter of his day to receive commissions from Florentine clients.\n This small panel is one of the first in Siena to reflect the innovations of the Florentine painter \n Domenico's use of light, perspective, and classical motifs suggest that he painted this after seeing the work of Masaccio and others in Florence. He is unlikely to have studied there, however; other elements of his work are typically Sienese, for example, the bright pastel pinks for the niche. Domenico's experiments were not taken up by his contemporaries, but they did influence artists in the next generation.\n " +p171774 +sa(dp171775 +g25268 +S'The Presentation of the Virgin' +p171776 +sg25270 +S'Paolo di Giovanni Fei' +p171777 +sg25273 +S'tempera on wood transferred to hardboard' +p171778 +sg25275 +S'c. 1400' +p171779 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004a/a0004ae1.jpg' +p171780 +sg25267 +S"Anne and Joachim were elderly and almost without hope of having \r\n children; when an angel announced that Anne would conceive, she promised \r\n the child to God's service. Here, the young Virgin, aged four or five, \r\n takes leave of her family to enter the temple. Devotion to the Virgin was \r\n especially strong in Siena, where she was patron saint. This panel was \r\n probably part of a large altarpiece commissioned for the city's cathedral, \r\n where it would have been seen near Duccio’s own altarpiece dedicated to the \r\n Virgin in Majesty, the \n Paolo, following in the tradition of Duccio and Simone Martini, used a \r\n brilliant palette—note the mosaiclike impression of his strong colors, \r\n which range from cool blues to salmony pinks and glassy greens. At the same \r\n time, Paolo has infused his scene with an appealing naturalness—legacy \r\n from another Sienese master, Pietro Lorenzetti. Paolo concentrates not on \r\n the awe-inspiring majesty of the Virgin, but on the human aspects of her \r\n story. The young Virgin pauses on the dais. Her expression as she turns \r\n a final time toward her parents is tender and rueful—the genuine \r\n response of a child.\n " +p171781 +sa(dp171782 +g25268 +S'The Infant Bacchus' +p171783 +sg25270 +S'Giovanni Bellini' +p171784 +sg25273 +S'oil on panel transferred to panel' +p171785 +sg25275 +S'probably 1505/1510' +p171786 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007fd.jpg' +p171787 +sg25267 +S'\r\n\tBacchus is typically portrayed as a young man wreathed with vines, his body slouched with the intoxicating effect of drink. This young child, who wears an ivy wreath and holds a wine pitcher, must also represent the god of wine. As a god of agriculture, Bacchus was sometimes depicted as aging along with the seasons, in much the same way that the new year comes in as a baby and goes out as an old man. In winter, when crops were just starting to grow, Bacchus took the guise of a young boy—as pretty, Roman poets said, as a curly-haired girl.\r\n\n \r\n\tBellini used this same figure in the \n ' +p171788 +sa(dp171789 +g25268 +S'Alexander the Great Threatened by His Father' +p171790 +sg25270 +S'Donato Creti' +p171791 +sg25273 +S'oil on canvas' +p171792 +sg25275 +S'probably 1700/1705' +p171793 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000605.jpg' +p171794 +sg25267 +g27 +sa(dp171795 +g25268 +S'Eleonora di Toledo' +p171796 +sg25270 +S'Agnolo Bronzino' +p171797 +sg25273 +S'oil on panel' +p171798 +sg25275 +S'c. 1560' +p171799 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a00008af.jpg' +p171800 +sg25267 +g27 +sa(dp171801 +g25268 +S'Madonna and Child' +p171802 +sg25270 +S'Vittore Carpaccio' +p171803 +sg25273 +S'oil on panel' +p171804 +sg25275 +S'c. 1505/1510' +p171805 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b33.jpg' +p171806 +sg25267 +g27 +sa(dp171807 +g25268 +S'Venus Adorned by the Graces' +p171808 +sg25270 +S'Annibale Carracci' +p171809 +sg25273 +S'oil on panel transferred to canvas' +p171810 +sg25275 +S'1590/1595' +p171811 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000602.jpg' +p171812 +sg25267 +g27 +sa(dp171813 +g25268 +S'Portrait of a Male Donor' +p171814 +sg25270 +S'Petrus Christus' +p171815 +sg25273 +S'oil on panel' +p171816 +sg25275 +S'c. 1455' +p171817 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a0005825.jpg' +p171818 +sg25267 +g27 +sa(dp171819 +g25268 +S'Bathing at Talloires (La baignade \xc3\xa0 Talloires)' +p171820 +sg25270 +S'Albert Besnard' +p171821 +sg25273 +S'etching and aquatint' +p171822 +sg25275 +S'1888' +p171823 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a0009053.jpg' +p171824 +sg25267 +g27 +sa(dp171825 +g25268 +S'Portrait of a Female Donor' +p171826 +sg25270 +S'Petrus Christus' +p171827 +sg25273 +S'oil on panel' +p171828 +sg25275 +S'c. 1455' +p171829 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004a0.jpg' +p171830 +sg25267 +S"Petrus Christus was the leading artist in Bruges after the death of \n The woman's costume is that of a wealthy matron from the Low Countries, \n but the coat of arms depicted is that of the Vivaldi, a prominent Genoese \n family with extensive banking and commercial interests in the north. Stuck \n to the wall with dabs of red sealing wax is a woodcut. It depicts Saint \n Elizabeth of Thuringia, so in all likelihood the woman's name was also \n Elizabeth or some variant of it. Undoubtedly, she and her husband, known to \n be a member of the Lomellini family by the coat of arms on his portrait, \n were part of the large Italian business community in Bruges. These \n families, because they carried small panels like this one home with them, \n played an important role in spreading the oil technique and the precise \n style of northern paintings to Italy. As \n " +p171831 +sa(dp171832 +g25268 +S'Saint Helena' +p171833 +sg25270 +S'Bellini' +p171834 +sg25273 +S'oil on panel' +p171835 +sg25275 +S'c. 1495' +p171836 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000854.jpg' +p171837 +sg25267 +S"Mother of the emperor Constantine, Saint Helena journeyed to the Holy Land, where she found the True Cross, the cross of the crucifixion, which she holds here. Scenes of saints in landscape settings like this were something of a specialty of the artist.\n Cima had moved to Venice by the mid-1480s but always remained in close contact with his hometown of Conegliano on the mainland. The town's castello and other landmarks appear in the background of this small devotional panel. Almost all of Cima's paintings include idyllic landscapes that recall the mountainous region of his home.\n Cima formed his artistic style early in life and never deviated from it. Even though his clear colors and meticulous detail became a bit old-fashioned, his work remained popular with Venetian patrons, especially the more conservative ones. In the 1490s, when \n " +p171838 +sa(dp171839 +g25268 +S'A Lady in Her Bath' +p171840 +sg25270 +S'Fran\xc3\xa7ois Clouet' +p171841 +sg25273 +S'oil on oak' +p171842 +sg25275 +S'c. 1571' +p171843 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d63.jpg' +p171844 +sg25267 +S"François Clouet, the son of a Netherlandish artist, became court painter to the French kings\nFrancis I, Henry II and Charles IX. In this Renaissance portrait Clouet has depicted a female\nnude, whose identity is unknown, at her bath. The bather is seated in her tub, which is lined with\na white cloth and hung on both sides with regal crimson curtains to ward off the cold. Her left\nhand draws back the bath sheet revealing the artist's name inscribed below, while her right hand\nrests on a covered board that displays a sumptuously rendered still life. Slightly behind the bather\na young boy reaches for some grapes as a smiling wet nurse suckles a baby. In the background, a\nmaid is seen holding a metal pitcher of bath water as more water is heated in the fireplace. The\nallusion is to a happy, healthy home.\n The masklike symmetry of the bather's face makes exact identification difficult; scholars\nhave suggested that her aristocratic features indicate that she is one of several royal mistresses,\nmost notable among them Diane de Poitiers, the mistress of Henry II. It is possible that the\nnude, a Venus type, represents ideal beauty rather than a specific individual. The contrast of the\nsmoothly rendered nude figure to the intricate surface details of the fruit, draperies, and jewelry,\npresents a union of Flemish and Italian motifs that characterized French courtly art of the\nsixteenth century.\n " +p171845 +sa(dp171846 +g25268 +S'Madame David' +p171847 +sg25270 +S'Jacques-Louis David' +p171848 +sg25273 +S'oil on canvas' +p171849 +sg25275 +S'1813' +p171850 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000da5.jpg' +p171851 +sg25267 +S'When David married Marguerite-Charlotte Pécoul, the young daughter of a \r\n prosperous builder with connections at Louis XVI\'s court, he was literally \r\n twice her age. Their marriage was at times stormy; they separated, \r\n divorced, and remarried. David spoke of her as a "woman whose virtues and \r\n character had assured the happiness of his life." Political disagreements, \r\n particularly his attachment to the ruthless Robespierre, may have \r\n exacerbated their personal differences. However, after Robespierre was \r\n executed and David himself imprisoned—and threatened with the guillotine—his wife rallied to him with great courage. Her tireless appeals secured \r\n his release, and they remained together until her death.\n David\'s frank but sympathetic portrait catches not only the homeliness \r\n of his wife\'s features, but her intelligence and directness as well. Unlike \r\n many of David\'s works, this portrait was painted entirely by his own hand. \r\n Its technique is freer than the austere style he applied to less intimate \r\n subjects. The satiny texture of her dress, unadorned by jewelry as Madame \r\n David surrendered hers in support of the revolution, is created with heavy \r\n brushes of thick pigment, the plume with lighter strokes of thinner color. \r\n These exuberant surfaces contrast with the restrained precision of the \r\n accessories in Napoleon\'s portrait.\n ' +p171852 +sa(dp171853 +g25268 +S'The Emperor Napoleon in His Study at the Tuileries' +p171854 +sg25270 +S'Jacques-Louis David' +p171855 +sg25273 +S'oil on canvas' +p171856 +sg25275 +S'1812' +p171857 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000daa.jpg' +p171858 +sg25267 +S"Careful examination of the details embedded in this portrait reveals the key\r\nto David's success as a painter during the time of Louis XVI, Robespierre, and Napoleon: the artist's ability to transform his subjects into politically powerful icons.\n Napoleon is placed in the center of a vertical canvas dressed in his uniform as a colonel of the Foot Grenadiers of the Imperial Guard. His pose—the slightly hunched shoulders and hand inserted into his vest—contrasts to the formality of his costume. In addition, his cuffs are unbuttoned, his leggings wrinkled, and his hair disheveled. David, in a letter to the patron of this portrait, Alexander Douglas, the tenth Duke of Hamilton, explained that his appearance was designed to show that Napoleon had spent the night in his study composing the Napoleonic Code, an impression enforced by details, such as the flickering candles that are almost extinguished, the quill pen and papers scattered on the desk, and the clock on the wall which points to 4:13 a.m.\n David strategically placed the sword on the chair to allude to Napoleon's military success, while the prominent display of the word "Code" in his papers, suggests his administrative achievements. Other decorative details—the heraldic bees and the fleurs–de–lys—are symbols of French absolutism, and imply Napoleon's power as ruler.\n " +p171859 +sa(dp171860 +g25268 +S"Blindman's Buff" +p171861 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p171862 +sg25273 +S'oil on canvas' +p171863 +sg25275 +S'c. 1775/1780' +p171864 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d6b.jpg' +p171865 +sg25267 +g27 +sa(dp171866 +g25268 +S'The Swing' +p171867 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p171868 +sg25273 +S'oil on canvas' +p171869 +sg25275 +S'c. 1775/1780' +p171870 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d6c.jpg' +p171871 +sg25267 +S"With children's games glimpsed from above in an immense expanse of earth \r\n and sky, Fragonard presents a vision of nature, imposing yet tamed by \r\n civilization. These are not forests, but gardens resembling the magical \r\n Villa d'Este, where Fragonard sketched in Italy. Light creates volume in \r\n the towering clouds and breaks through in patches on the ground to \r\n illuminate the small figures as if they were on a distant stage.\n The Swing\n " +p171872 +sa(dp171873 +g25268 +S'Portrait of a Young Man' +p171874 +sg25270 +S'French 18th Century' +p171875 +sg25273 +S'overall: 65.3 x 54.4 cm (25 11/16 x 21 7/16 in.)\r\nframed: 97.2 x 86.4 x 10.2 cm (38 1/4 x 34 x 4 in.)' +p171876 +sg25275 +S'\noil on canvas' +p171877 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d6d.jpg' +p171878 +sg25267 +g27 +sa(dp171879 +g25268 +S'The Small Crucifixion' +p171880 +sg25270 +S'Matthias Gr\xc3\xbcnewald' +p171881 +sg25273 +S'oil on panel' +p171882 +sg25275 +S'c. 1511/1520' +p171883 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004c8.jpg' +p171884 +sg25267 +S"Matthias Grünewald's \n In order to communicate this mystical belief, Grünewald resorted to a mixture of ghastly realism and coloristic expressiveness. Silhouetted against a greenish–blue sky and illuminated by an undefined light source, Christ's emaciated frame sags limply on the cross. His twisted feet and hands, crown of thorns, agonized expression, and ragged loincloth convey the terrible physical and emotional suffering he has endured. This abject mood is intensified by the anguished expressions and demonstrative gestures of John the Evangelist, the Virgin Mary, and the kneeling Mary Magdalene.\n Grünewald's dissonant, eerie colors were also rooted in biblical fact. The murky sky, for instance, corresponds to Saint Luke's description of "a darkness over all the earth" at the time of the crucifixion. Grünewald, who himself witnessed a full eclipse in 1502, has re–created here the dark and rich tonalities associated with such natural phenomena.\n Today, only twenty paintings by Grünewald are extant, and \n " +p171885 +sa(dp171886 +g25268 +S'Cardinal Francesco Cennini' +p171887 +sg25270 +S'Guercino' +p171888 +sg25273 +S', 1625' +p171889 +sg25275 +S'\n' +p171890 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000610.jpg' +p171891 +sg25267 +g27 +sa(dp171892 +g25268 +S'Portrait of a Young Man' +p171893 +sg25270 +S'Hans Holbein the Younger' +p171894 +sg25273 +S', c. 1520/1530' +p171895 +sg25275 +S'\n' +p171896 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005b3.jpg' +p171897 +sg25267 +g27 +sa(dp171898 +g25268 +S'The Annunciation' +p171899 +sg25270 +S'Juan de Flandes' +p171900 +sg25273 +S'oil on panel' +p171901 +sg25275 +S'c. 1508/1519' +p171902 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004a8.jpg' +p171903 +sg25267 +g27 +sa(dp171904 +g25268 +S'The Nativity' +p171905 +sg25270 +S'Juan de Flandes' +p171906 +sg25273 +S'oil on panel' +p171907 +sg25275 +S'c. 1508/1519' +p171908 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005a7.jpg' +p171909 +sg25267 +S"Juan de Flandes ("Jan of Flanders") came from the north—and possibly trained in Ghent—but his entire reputation is based on work painted in Spain, where he served as court artist to Queen Isabella. \n The backgrounds in paintings by Juan de Flandes are often enlivened with charming narrative vignettes, characteristic of works from the Netherlandish city of Ghent. Here, a young shepherd is struck with awe and wonder as an angel\r\nappears in a brilliant globe of light to announce the birth of Christ, while his older companion continues to doze. In the manger an ox and ass eat from a straw-filled trough, an allusion to a passage in the Book of Isaiah in which Isaiah prophesized even livestock would recognize the infant Jesus as their master. An owl perched on the crumbling stable—the deteriorated state representing a transition to a new world order—may refer to the darkness dispelled by Christ's birth.\n " +p171910 +sa(dp171911 +g25268 +S'The Adoration of the Magi' +p171912 +sg25270 +S'Juan de Flandes' +p171913 +sg25273 +S'oil on panel' +p171914 +sg25275 +S'c. 1508/1519' +p171915 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005a8.jpg' +p171916 +sg25267 +S"Although the original reference to the wise men, or magi, in the Gospel of Matthew\nis minimal, churchmen eventually elevated them to the status of kings, gave them\nnames -- Balthasar, Caspar, and Melchior -- and invested their gifts of gold, frankincense,\nand myrrh with specific meanings. The royal status and foreign origins of the three\ntravelers inspired medieval and Renaissance artists, who gave free reign to their\nimaginations in treating the colorful subject.\n Juan de Flandes (John of Flanders) took the opportunity to paint a fanciful scene\nreplete with opulent costumes, gleaming gold and jewels, and varied racial types.\nAll wear exotic headgear and carry ornate vessels containing their gifts. Visible\nin the distance, on horseback, are several smaller figures, members of the kings'\nretinue.\n Although there are numerous references to this presumably northern painter in the\nrecords of his Spanish patrons, nothing is known of his early years. His reputation\nas an artist derives entirely from the works he produced in Spain, where he served\nas court painter to Queen Isabella until her death in 1504. Later, he painted this\npanel and its three companion pieces, also in the National Gallery; together, they\nonce formed part of a large altarpiece in the Church of San Lázaro in Palencia.\n " +p171917 +sa(dp171918 +g25268 +S'The Baptism of Christ' +p171919 +sg25270 +S'Juan de Flandes' +p171920 +sg25273 +S'oil on panel' +p171921 +sg25275 +S'c. 1508/1519' +p171922 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005a9.jpg' +p171923 +sg25267 +S'The Gospels relate that when Jesus was baptized in the river Jordan, he saw the heavens open and the Holy Spirit descend toward him like a dove. God the Father then spoke, "This is my beloved Son, in whom I am well pleased." Both appear within the round mandorlas that Juan de Flandes painted in many of the surviving panels of his original altarpiece.\n ' +p171924 +sa(dp171925 +g25268 +S'Portrait of a Young Man and His Tutor' +p171926 +sg25270 +S'Nicolas de Largillierre' +p171927 +sg25273 +S'oil on canvas' +p171928 +sg25275 +S'1685' +p171929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d85.jpg' +p171930 +sg25267 +S"The formality and clear outlines of Largillière's \n " +p171931 +sa(dp171932 +g25268 +S'The Card Players' +p171933 +sg25270 +S'Artist Information (' +p171934 +sg25273 +S'Netherlandish, 1489/1494 - 1533' +p171935 +sg25275 +S'(artist after)' +p171936 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005c4.jpg' +p171937 +sg25267 +g27 +sa(dp171938 +g25268 +S'The Presentation in the Temple' +p171939 +sg25270 +S'Master of the Prado "Adoration of the Magi"' +p171940 +sg25273 +S'oil on panel' +p171941 +sg25275 +S'c. 1470/1480' +p171942 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000595.jpg' +p171943 +sg25267 +g27 +sa(dp171944 +g25268 +S'The Crucifixion' +p171945 +sg25270 +S'Master of Saint Veronica' +p171946 +sg25273 +S'tempera on panel' +p171947 +sg25275 +S'c. 1400/1410' +p171948 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005b6.jpg' +p171949 +sg25267 +S"The anonymous master who painted this work was the leading painter in Cologne\nshortly after 1400. His name derives from his finest work, \n The painting was probably used as a focus for prayers and meditation by a Carthusian\nmonk, since a member of that monastic order is shown kneeling at the right of the\ncross. The painting's small size would make it suitable for such use, probably in\nthe monk's cell.\n Cologne was the largest and most densely populated city in Germany at the end of\nthe Middle Ages. It supported a wealthy middle class and many religious institutions,\nincluding the Charterhouse of Saint Barbara, for which this \n " +p171950 +sa(dp171951 +g25268 +S'Joseph Bonnier de la Mosson' +p171952 +sg25270 +S'Jean-Marc Nattier' +p171953 +sg25273 +S'oil on canvas' +p171954 +sg25275 +S'1745' +p171955 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d79.jpg' +p171956 +sg25267 +S'Bonnier was the perfect eighteenth-century \n ' +p171957 +sa(dp171958 +g25268 +S'Woman in a Cape (La femme \xc3\xa0 la p\xc3\xa8lerine)' +p171959 +sg25270 +S'Albert Besnard' +p171960 +sg25273 +S'etching' +p171961 +sg25275 +S'1889' +p171962 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009774.jpg' +p171963 +sg25267 +g27 +sa(dp171964 +g25268 +S'The Nativity' +p171965 +sg25270 +S'Perino del Vaga' +p171966 +sg25273 +S'oil on panel transferred to canvas' +p171967 +sg25275 +S'1534' +p171968 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000081b.jpg' +p171969 +sg25267 +S"Although called a nativity, this painting lacks the manger, ox, and ass traditionally\nfound in scenes of Christ's birth. It would be better interpreted as a mystical\nadoration of saints. John the Baptist, Catherine of Alexandria, and the Virgin are\nin the foreground. From left to right standing behind them are Sebastian, pierced\nwith arrows; the pilgrim James Major; Joseph, the husband of Mary; and the pilgrim\nRoch. Soaring through the heavens is God the Father accompanied by a phalanx of\nputti.\n Commissioned by a member of the Baciadonne family of Genoa, this large altarpiece\nis the most important religious painting by Perino del Vaga to survive. Perino had\nbeen a pupil of Raphael in Rome, and his indebtedness to his master is evident here\nin the idealization of the figures and the grace of the postures. Like others of\nhis generation, however, Perino departed from Raphael's serene harmonies to instill\nin his works a greater degree of tension and artifice. In this altarpiece the studied\ngestures hang in the air as if to function in the place of speech. Poses seem choreographed\nand, in several instances, tipped off balance. Rich colors glow phosphorescently\nwith a stained-glass intensity out of the oddly dark morning.\n " +p171970 +sa(dp171971 +g25268 +S'The Assumption of the Virgin' +p171972 +sg25270 +S'Artist Information (' +p171973 +sg25273 +S'Flemish, 1577 - 1640' +p171974 +sg25275 +S'(related artist)' +p171975 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e3c.jpg' +p171976 +sg25267 +S"As recounted in the New Testament's Apocrypha, Jesus' mother was physically raised (assumed) to heaven after her death. A choir of angels lifts Mary's body upward in a dramatic spiraling motion toward a burst of divine light. The twelve apostles gather around her tomb. Some raise their hands in awe; others reach down to touch her discarded shroud. The three holy women are probably Mary Magdalene and the Virgin Mary's two sisters. The kneeling woman holds a flower, referring to the blossoms that miraculously filled the empty coffin.\n In 1611, the cathedral at Antwerp announced a competition for an Assumption altar. On February 16, 1618, Rubens submitted two models. He finished the huge altarpiece on September 30, 1626. Thus, fifteen years elapsed between the beginning and conclusion of this project. The cathedral needed the time to complete a majestic marble frame.\n This oil sketch is probably a replica of Rubens' original \n " +p171977 +sa(dp171978 +g25268 +S"Cathedral of Saint John at 's-Hertogenbosch" +p171979 +sg25270 +S'Pieter Jansz Saenredam' +p171980 +sg25273 +S'oil on panel' +p171981 +sg25275 +S'1646' +p171982 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e91.jpg' +p171983 +sg25267 +S"Saenredam's paintings are almost always church interiors in which the luminous and balanced treatment of the architecture has the elegance of an abstract design. In this painting Saenredam not only gives an apparently accurate portrayal of the details of the Cathedral of Saint John, but also creates a unified feeling of spaciousness and light. The town of 's–Hertogenbosch, near the Dutch–Flemish border, became part of the United Provinces, a group of northern Dutch states that were Protestant and seceded from the Catholic south in 1629, only three years before Saenredam visited it. Thus the cathedral, unlike other Dutch churches, still retained the decorations associated with Catholic ceremony, notably the elaborate black and white baroque altar with its statues of the Virgin and Child and Saint John, and the altar\xe2\x80\x99s memorial tablets to the Catholic Habsburg rulers Philip II and Albert of Austria.\n Saenredam subtly changed the proportions of columns and arches to enhance our sense of a soaring architecture. Abraham Bloemaert\xe2\x80\x99s \n " +p171984 +sa(dp171985 +g25268 +S'Church of Santa Maria della Febbre, Rome' +p171986 +sg25270 +S'Pieter Jansz Saenredam' +p171987 +sg25273 +S'oil on panel' +p171988 +sg25275 +S'1629' +p171989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ea5.jpg' +p171990 +sg25267 +S'As the foremost innovator in the accurate depiction of\r\n buildings, \r\n Saenredam has earned the title of “first portraitist of\r\n architecture.” The \r\n son of an engraver, he developed draftsmanship so precise that it\r\n is \r\n difficult to believe he never visited Italy to see the site of\r\n Saint \r\n Peter’s, the subject of this convincing view. In the 1530s, the\r\n Flemish \r\n artist \n The ancient, circular chapel of Santa Maria della Febbre stands\r\n beside \r\n the famous Vatican obelisk that, in 1586, was moved in front of\r\n Saint \r\n Peter’s basilica. Behind ramshackle Old Saint Peter’s rise the\r\n piers of \r\n Michelangelo’s dome for New Saint Peter’s. Saenredam portrayed the\r\n whole construction site as though it were an abandoned, overgrown\r\n ruin.\n An artificial color scheme marks the earliest period of Dutch\r\n landscape \r\n painting, developed in the sixteenth century. To create a feeling\r\n of depth, \r\n Saenredam overlapped layers of contrasting tone: a dark foreground, \r\n through the buildings’ pinkish yellow, to a distant valley in \r\n bright blues \r\n and greens.\n ' +p171991 +sa(dp171992 +g25268 +S'Elijah Fed by the Raven' +p171993 +sg25270 +S'Giovanni Girolamo Savoldo' +p171994 +sg25273 +S'oil on panel transferred to canvas' +p171995 +sg25275 +S'c. 1510' +p171996 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000825.jpg' +p171997 +sg25267 +S'Elijah, sturdy and peasantlike, looks with reflective\n intensity at a black bird perched above his head, grasping\n a large hunk of bread in its beak. The word of the\n Lord had come to him (I Kings 17:3-4): "Go away from\n here, go eastward, and hide yourself....I have ordered\n the ravens to bring you food." It was an absolute act of\n faith and love to obey the command, trusting only in\n God\'s provision for his survival.\n From the earliest days of Christian monasticism,\n Elijah was regarded as the prototype of all those who\n "dwelt in the desert," either alone as hermits or in communities\n with other holy men. In the living tradition of\n monasticism, the authority and spiritual wisdom of one\n abbot is passed down to the next. This transfer of power\n began when Elijah first handed his cloak to his successor\n Elisha, an episode depicted in the background of this\n painting. In a small cloud, Elijah is taken heavenward in\n a fiery chariot as proof of God\'s call.\n This painting, along with a companion work showing\n the two hermit saints Anthony and Paul, was possibly\n commissioned for a Carmelite church in Savoldo\'s\n hometown of Brescia. Elijah held special significance for\n the Carmelites, who, as their name suggests, traced their\n origin to Elijah in the Jordan valley. The faith and moral\n austerity of these men could have appealed to many\n other patrons as well.\n ' +p171998 +sa(dp171999 +g25268 +S'The Rest on the Flight into Egypt' +p172000 +sg25270 +S'Maerten van Heemskerck' +p172001 +sg25273 +S'oil on panel' +p172002 +sg25275 +S'c. 1530' +p172003 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000592.jpg' +p172004 +sg25267 +S'Heemskerck spent several years in Italy,\r\n where he supported himself at times with the particularly northern specialty\r\n of landscape painting. But this picture was produced before his first trip\r\n there. It shows the influence of his teacher, Jan van Scorel, who had\r\n already brought back to the Netherlands an Italian feeling for large,\r\n sculptural figures and a landscape repertoire that included fanciful ruins\r\n and idyllic motifs copied from ancient art. This panel was long thought to\r\n be the work of Van Scorel; if Heemskerck painted it while in Van Scorel’s\r\n studio, it may have been sold as such.\n The story of the Holy Family’s flight into Egypt to avoid Herod’s legions\r\n became a popular vehicle for landscape painting. Here, the exotic locale is\r\n reminiscent of sacred groves in ancient Italy.\n Against this ambiguous panorama, the large image of the Virgin and Child\r\n takes on the quality of an icon. The crystal globe on which Jesus rests\r\n suggests his dominion over the world, the butterfly his resurrection.\r\n Because they are painted in rich colors and with distinct clarity, they seem\r\n quite near to us. Features in the distance, by contrast, are obscured by a\r\n progressive shift to blue that mimics the intervening haze of the\r\n atmosphere.\n ' +p172005 +sa(dp172006 +g25268 +S'Cardinal Bandinello Sauli, His Secretary, and Two Geographers' +p172007 +sg25270 +S'Sebastiano del Piombo' +p172008 +sg25273 +S'oil on panel' +p172009 +sg25275 +S'1516' +p172010 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005f5.jpg' +p172011 +sg25267 +S'One of the earliest Italian group portraits, this painting depicts Cardinal Bandinello\nSauli and three companions gathered around a table covered with a Turkish carpet.\nSet within a narrow space closed off by a rich green wall hanging, the figures appear\nto have been discussing the geography manuscript lying open before them.\n Bandinello Sauli of Genoa was elevated to the rank of cardinal by Pope Julius II\nin 1511. In 1516, when this painting was completed, Sauli was at the height of his\nprestige and influence in Rome. His fortunes quickly changed, for he was imprisoned\nin 1517 for plotting against Pope Leo X.\n The artist, Sebastiano Luciani, is better known as Sebastiano del Piombo from his\nappointment in 1531 to the office of Keeper of the Papal Seal, or \n ' +p172012 +sa(dp172013 +g25268 +S'Portrait of a Humanist' +p172014 +sg25270 +S'Sebastiano del Piombo' +p172015 +sg25273 +S'oil on panel transferred to hardboard' +p172016 +sg25275 +S'c. 1520' +p172017 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000826.jpg' +p172018 +sg25267 +S"Unlike the sitters in many similar portraits who are\n shown in front of an open window, this man wearing\n the simple black robes of a scholar is posed in an\n enclosed, quiet place appropriate for study and concentration.\n His three-quarter pose was newly introduced\n around 1520. Restricted colors in the clothing and face\n leave the small arrangement on the left as the brightest\n area of the composition. Our attention is drawn to the\n tools of his scholarly pursuit: books, writing implements,\n and a globe. (Maps were first applied to spheres\n in the early sixteenth century.) It has been suggested that\n the sitter might be Marcantonio Flaminio, a noted\n scholar and poet who was a friend of the artist.\n Sebastiano must have painted this in Rome,\n although its style retains traces of his Venetian training.\n This is particularly evident in the richness of its pigment -- \n even the somber tones have luxurious texture -- \n and in the slight melancholy that distinguishes the man's\n face. (Admittedly, such melancholy would have been\n expected of a gentleman poet.) The use of light, however,\n shows the new influence of artists in Rome: rather\n than infusing the scene, light sculpts the figure with\n strong three-dimensional form. Sebastiano had always\n modeled his figures more emphatically than most other\n Venetian painters, and his natural inclination was reinforced\n by contact in Rome with \n " +p172019 +sa(dp172020 +g25268 +S'The Marriage of the Virgin' +p172021 +sg25270 +S'Luca Signorelli' +p172022 +sg25273 +S'tempera on panel' +p172023 +sg25275 +S'c. 1490/1491' +p172024 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002bfd.jpg' +p172025 +sg25267 +g27 +sa(dp172026 +g25268 +S'Lamentation' +p172027 +sg25270 +S'Andrea Solario' +p172028 +sg25273 +S'oil on panel' +p172029 +sg25275 +S'c. 1505-1507' +p172030 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007d6.jpg' +p172031 +sg25267 +g27 +sa(dp172032 +g25268 +S'Intimacy (Intimt\xc3\xa9)' +p172033 +sg25270 +S'Albert Besnard' +p172034 +sg25273 +S'etching' +p172035 +sg25275 +S'1889' +p172036 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e91.jpg' +p172037 +sg25267 +g27 +sa(dp172038 +g25268 +S'Bishop Alvise Grimani' +p172039 +sg25270 +S'Bernardo Strozzi' +p172040 +sg25273 +S'oil on canvas' +p172041 +sg25275 +S'1633 or after' +p172042 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000655.jpg' +p172043 +sg25267 +g27 +sa(dp172044 +g25268 +S'Queen Zenobia Addressing Her Soldiers' +p172045 +sg25270 +S'Giovanni Battista Tiepolo' +p172046 +sg25273 +S'oil on canvas' +p172047 +sg25275 +S'1725/1730' +p172048 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00033/a00033f6.jpg' +p172049 +sg25267 +g27 +sa(dp172050 +g25268 +S'The Conversion of Saint Paul' +p172051 +sg25270 +S'Jacopo Tintoretto' +p172052 +sg25273 +S'oil on canvas' +p172053 +sg25275 +S'c. 1545' +p172054 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000082a.jpg' +p172055 +sg25267 +g27 +sa(dp172056 +g25268 +S'Doge Alvise Mocenigo and Family before the Madonna and Child' +p172057 +sg25270 +S'Jacopo Tintoretto' +p172058 +sg25273 +S'oil on canvas' +p172059 +sg25275 +S'probably 1573' +p172060 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000865.jpg' +p172061 +sg25267 +g27 +sa(dp172062 +g25268 +S'Doge Andrea Gritti' +p172063 +sg25270 +S'Titian' +p172064 +sg25273 +S'oil on canvas' +p172065 +sg25275 +S'1546/1548' +p172066 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000082f.jpg' +p172067 +sg25267 +S"The patrician Andrea Gritti (1455–1538) was elected doge, or duke, of\r\n Venice in 1523, after having served the city as a military commander and\r\n diplomat. Renowned for his forceful personality and his promotion of the\r\n arts, Gritti remained an active civic leader until his death in 1538.\r\n Titian painted Gritti twice during his reign. He completed this posthumous\r\n portrait, which might have been commissioned as a memorial by the doge's\r\n family, around 1546–1548.\n Dressed in the brocade robes and conical hat of his office, Gritti makes\r\n a grand impression. Glancing sternly to the viewer's left, he gathers up\r\n his cloak with his right hand and appears to stride forward, as if in a\r\n ceremonial procession. Titian further enhanced the monumental presence of\r\n the sitter by extending his image fully to the edges of the canvas.\n With its free, expressive brushwork, this portrait well exemplifies\r\n Titian's mature painting style. Because the canvas has never been flattened\r\n by the process of lining, the varying surface textures, such as the\r\n transparent red of the robe and the heavy impasto of the white fur and gold\r\n buttons, reveal the ways Titian applied his paints.\n " +p172068 +sa(dp172069 +g25268 +S'The Assumption of the Virgin' +p172070 +sg25270 +S'Juan de Vald\xc3\xa9s Leal' +p172071 +sg25273 +S'oil on canvas' +p172072 +sg25275 +S'c. 1658/1660' +p172073 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000058b.jpg' +p172074 +sg25267 +S"The mystery of Mary's physical ascent into heaven was a favorite theme during\nthe Counter-Reformation, when the Catholic church was reaffirming its devotion to\nthe Virgin. In its sensuous beauty and dramatic appeal, Juan de Valdés Leal's depiction\ncharacterizes the baroque style at its most operatic.\n Amidst spiraling forms, swirling draperies, and extravagant gestures, the figure\nof Mary, arms outstretched, is borne aloft on the wings of a robust group of angels,\nwhile a choir of less corporeal angels makes music in the background. The excitement\nof the supernatural event is sustained by the varied poses and dramatic gestures\nof the animated figures gathered around the tomb below. Saint Paul, closest to us,\nshields his eyes against the radiant light.\n Utilizing a popular device of baroque painting, Valdés Leal placed the monumental\nfigures of two of the apostles in the foreground to lead the eye into the composition\nand to establish a sense of scale. In this instance, their position also serves\nto create the impression that, like the viewer, they have just come upon the scene\nfrom a point outside the picture space.\n Renowned for his vivacious brushwork, Valdés Leal was also a superb colorist, whose\npale but vibrant palette anticipated the decorative tones of the rococo style of\nthe eighteenth century.\n " +p172075 +sa(dp172076 +g25268 +S'Saint Jerome in the Wilderness' +p172077 +sg25270 +S'Veronese' +p172078 +sg25273 +S'oil on canvas' +p172079 +sg25275 +S'c. 1580' +p172080 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000088d.jpg' +p172081 +sg25267 +g27 +sa(dp172082 +g25268 +S'Saint Lucy and a Donor' +p172083 +sg25270 +S'Veronese' +p172084 +sg25273 +S'oil on canvas' +p172085 +sg25275 +S'probably c. 1580' +p172086 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a00008c7.jpg' +p172087 +sg25267 +g27 +sa(dp172088 +g25268 +S'Madonna and Child' +p172089 +sg25270 +S'Domenico Ghirlandaio' +p172090 +sg25273 +S'tempera on panel transferred to hardboard' +p172091 +sg25275 +S'c. 1470/1475' +p172092 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000773.jpg' +p172093 +sg25267 +S"In a city filled with artists, the busiest workshop in the later 1400s \r\n was that of Domenico Ghirlandaio. His popularity rested on the conventional \r\n piety of his images, his direct and forthright style, and his high \r\n standards of craftsmanship. These qualities probably appealed to the \r\n average Florentine, who was less attracted by the humanist erudition and \r\n advanced tastes that enthralled the city's elite. Works like this devout image contrast with the sensuality and luxury denounced by Savonarola.\n The gold background is unusual—a little old-fashioned for a painting \r\n done in the 1470s. It is not clear whether the present gilt surface (not \r\n original) replaced original gilding or was applied over a now-obliterated \r\n landscape, such as seen elsewhere in this room. If the painting was gilded \r\n from the outset, this would have been specified in the contract between \r\n artist and patron. Until the mid-fifteenth century, the intrinsic value of \r\n materials—gold and costly pigments such as ultramarine, which is made from \r\n the semiprecious stone lapis lazuli—accounted for much of a painting's worth. By the time this \r\n work was made, however, the emphasis had shifted. Patrons had come to value instead the skill of the painter, as we do today.\n " +p172094 +sa(dp172095 +g25268 +S'Ceres (Summer)' +p172096 +sg25270 +S'Antoine Watteau' +p172097 +sg25273 +S'oil on canvas' +p172098 +sg25275 +S'c. 1717/1718' +p172099 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d93.jpg' +p172100 +sg25267 +S"Ceres, Roman goddess of the harvest, is surrounded by signs of the summer\r\n zodiac: Gemini, Cancer, and Leo. This is one of four paintings of the\r\n seasons in mythological garb that Watteau painted for the home of Pierre\r\n Crozat. None of the others survive.\n Watteau lived briefly in the Crozat household, studying the wealthy\r\n banker's impressive art collection, particularly works by \n Watteau was probably introduced to Crozat by \n " +p172101 +sa(dp172102 +g25268 +S'Eve' +p172103 +sg25270 +S'Albert Besnard' +p172104 +sg25273 +S'etching' +p172105 +sg25275 +S'1886' +p172106 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000977a.jpg' +p172107 +sg25267 +g27 +sa(dp172108 +g25268 +S'Madonna and Child' +p172109 +sg25270 +S'Artist Information (' +p172110 +sg25273 +S'(painter)' +p172111 +sg25275 +S'\n' +p172112 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000866.jpg' +p172113 +sg25267 +g27 +sa(dp172114 +g25268 +S'Saint Jerome and the Angel' +p172115 +sg25270 +S'Simon Vouet' +p172116 +sg25273 +S'oil on canvas' +p172117 +sg25275 +S'c. 1622/1625' +p172118 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d90.jpg' +p172119 +sg25267 +g27 +sa(dp172120 +g25268 +S'The Porta Portello, Padua' +p172121 +sg25270 +S'Canaletto' +p172122 +sg25273 +S'oil on canvas' +p172123 +sg25275 +S'c. 1741/1742' +p172124 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a000090e.jpg' +p172125 +sg25267 +g27 +sa(dp172126 +g25268 +S'Portrait of an Ecclesiastic' +p172127 +sg25270 +S'French 15th Century' +p172128 +sg25273 +S'overall: 28.8 x 22.2 cm (11 5/16 x 8 3/4 in.)\r\nframed: 35.6 x 27.9 x 3.2 cm (14 x 11 x 1 1/4 in.)' +p172129 +sg25275 +S'\ntempera and oil on oak' +p172130 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d6e.jpg' +p172131 +sg25267 +g27 +sa(dp172132 +g25268 +S"Prince Hercule-Fran\xc3\xa7ois, Duc d'Alen\xc3\xa7on" +p172133 +sg25270 +S'French 16th Century' +p172134 +sg25273 +S'overall: 188.6 x 102.2 cm (74 1/4 x 40 1/4 in.)\r\nframed: 214.6 x 128.3 x 7.9 cm (84 1/2 x 50 1/2 x 3 1/8 in.)' +p172135 +sg25275 +S'\noil on canvas' +p172136 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d72.jpg' +p172137 +sg25267 +g27 +sa(dp172138 +g25268 +S'The Magdalen' +p172139 +sg25270 +S'Bernardino Luini' +p172140 +sg25273 +S'oil on panel' +p172141 +sg25275 +S'c. 1525' +p172142 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005d7.jpg' +p172143 +sg25267 +g27 +sa(dp172144 +g25268 +S'Allegorical Portrait of Dante' +p172145 +sg25270 +S'Florentine 16th Century' +p172146 +sg25273 +S'oil on panel' +p172147 +sg25275 +S'late 16th century' +p172148 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a00008b0.jpg' +p172149 +sg25267 +g27 +sa(dp172150 +g25268 +S'Memorial to Admiral Sir Clowdisley Shovell' +p172151 +sg25270 +S'Artist Information (' +p172152 +sg25273 +S'(artist)' +p172153 +sg25275 +S'\n' +p172154 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000620.jpg' +p172155 +sg25267 +S'Shortly before 1722, Owen McSwiny, a bankrupt Irishman who had settled in Italy\nto escape his creditors, commissioned twenty-four large canvases from prominent\nVenetian and Bolognese painters as a commercial venture. By profession a theater\nimpresario, he concocted this series of allegorical monuments commemorating recently\ndeceased British monarchs and aristocrats, hoping that their wealthy heirs might\npurchase the works. McSwiny\'s "Tombs," as they came to be called, proved to be unintelligible;\nno one, not even the artists who painted them, ever had a clear notion of what the\npictures represented.\n This ornate and fanciful memorial, for example, alludes only vaguely to the subject\'s\nnaval career. The admiral himself does not appear, nor does the shield in the right\nforeground bear his exact coat-of-arms. Only the fountain hints at the maritime\ntheme with its ancient ships\' prows and rudders, statues of tritons riding dolphins,\nand a bas-relief of Neptune, god of the sea.\n The Shovell canvas is a collaboration by Marco Ricci, who contributed the picturesque\nlandscape and theatrical architecture, and his uncle Sebastiano Ricci, who painted\nthe figures and statuary. The two Riccis\' use of fluffy textures and decorative\ncolors marks the emerging rococo style.\n ' +p172156 +sa(dp172157 +g25268 +S'Portrait of a Man' +p172158 +sg25270 +S'Rosso Fiorentino' +p172159 +sg25273 +S'oil on panel' +p172160 +sg25275 +S'early 1520s' +p172161 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000081f.jpg' +p172162 +sg25267 +S'This portrait is less precisely detailed, less “objective,” than others\r\n in this room, partly as the result of Rosso’s technique. To a greater\r\n extent than most of his contemporaries in Florence, Rosso left his\r\n brushstrokes visible. This man holds none of the attributes that normally\r\n help define a sitter’s persona; his character is established by his\r\n strongly projecting elbow. Light rakes across it and seems to push his\r\n gesture to the front of the picture plane. The image crowds the panel. Such\r\n concentration and stylization complement the man’s expression, which is at\r\n once haughty and slightly sad and may reflect an ideal of male\r\n deportment.\n Rosso—he was called “the red” for his red hair—probably painted this not\r\n long before the artist left to work in Fontainebleau. In Italy, Rosso’s\r\n personal, introverted style did not exert much influence, but in France it\r\n was an important starting point for mannerism in the North.\n ' +p172163 +sa(dp172164 +g25268 +S'Marchesa Brigida Spinola Doria' +p172165 +sg25270 +S'Sir Peter Paul Rubens' +p172166 +sg25273 +S'oil on canvas' +p172167 +sg25275 +S'1606' +p172168 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e3d.jpg' +p172169 +sg25267 +S"On at least four occasions during his long stay in Italy (1600–1609), Rubens worked in Genoa, a prosperous seaport. He painted this proud Genoese aristocrat in 1606, the year following her marriage. It is one of a number of female portraits Rubens made in Genoa, a city renowned as a \n The marchesa's stately pose is far from static; it is activated by light, by the diagonal flow of a red curtain, and by Rubens' bravura brushwork. The marchesa's silvery satin dress is built up of layers of translucent glazes and highlighted with thick, freely painted strokes. Rubens combined this bold, painterly style—which he learned from his study of Venetian artists like Veronese, Tintoretto, and Titian—with the tradition for detailed, carefully\r\nobserved surfaces from his native Flanders. Compare, for example, the expressive painting technique in the dress and curtain with the precise handling of\r\nthe architecture.\n " +p172170 +sa(dp172171 +g25268 +S'Pony (Le poney)' +p172172 +sg25270 +S'Albert Besnard' +p172173 +sg25273 +S'etching' +p172174 +sg25275 +S'1892' +p172175 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000977d.jpg' +p172176 +sg25267 +g27 +sa(dp172177 +g25268 +S'The Muses Urania and Calliope' +p172178 +sg25270 +S'Simon Vouet' +p172179 +sg25273 +S', c. 1634' +p172180 +sg25275 +S'\n' +p172181 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d91.jpg' +p172182 +sg25267 +S"Precocious and widely traveled, Vouet already had worked in London, \n Constantinople, and Venice before reaching Rome in 1614. Louis XIII \n summoned him back to Paris in 1627 to become chief court artist. Training \n many French painters, Vouet exercised his power by brashly setting up a \n rival institution to the royal academy of art.\n Resting beside a temple to Apollo, the god of creativity, two muses \n personify aspects of human knowledge. Urania, the muse of astronomy, wears \n a diadem of stars and leans against a celestial globe. The patroness of \n epic poetry and history, Calliope is crowned with gold and holds a volume \n of Homer's \n Simon Vouet's earlier Roman manner differs greatly from the restrained \n taste he adopted in France. His \n " +p172183 +sa(dp172184 +g25268 +S'Saint Anne with the Christ Child, the Virgin, and Saint John the Baptist' +p172185 +sg25270 +S'Hans Baldung Grien' +p172186 +sg25273 +S'oil on hardboard transferred from panel' +p172187 +sg25275 +S'c. 1511' +p172188 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005ad.jpg' +p172189 +sg25267 +S'Among the outstanding German artists of the period around 1500 was Hans Baldung\nGrien, a printmaker and painter. He produced book illustrations, devotional woodcuts,\nstained-glass window designs, portraits, and morality paintings as well as religious\npanels such as this one.\n John the Baptist is here depicted to the left of Jesus. He simultaneously gestures\nto the lamb at his feet and to the infant, visually alluding to his own description\nof Christ as "the Lamb of God." The Virgin\'s mother, Saint Anne, although dressed\nin a sixteenth-century wimple, wears her traditional robe of red, a symbol of divine\nlove. Garbed in green, symbolic of rebirth and eternal life, Mary offers Jesus\nan apple. This fruit, associated with the fall of Adam and Eve, here signifies Mary\nas the new Eve and Christ as the second Adam.\n Baldung Grien\'s figures are symbolically, rather than realistically, depicted. Mary,\nfor instance, is represented as a very young girl. And, although John and Jesus\nhistorically were about the same age, the Baptist is portrayed as an adult to emphasize\nhis prophetic message. The painting was discovered in a small village church in\nAlsace, an area where the artist spent most of his life.\n ' +p172190 +sa(dp172191 +g25268 +S'Nymphenburg Palace, Munich' +p172192 +sg25270 +S'Artist Information (' +p172193 +sg25273 +S'Italian, 1722 - 1780' +p172194 +sg25275 +S'(painter)' +p172195 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005fa.jpg' +p172196 +sg25267 +g27 +sa(dp172197 +g25268 +S'View of Munich' +p172198 +sg25270 +S'Artist Information (' +p172199 +sg25273 +S'Italian, 1722 - 1780' +p172200 +sg25275 +S'(painter)' +p172201 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005fb.jpg' +p172202 +sg25267 +g27 +sa(dp172203 +g25268 +S'The Finding of Moses' +p172204 +sg25270 +S'S\xc3\xa9bastien Bourdon' +p172205 +sg25273 +S'oil on canvas' +p172206 +sg25275 +S'c. 1655/1660' +p172207 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d5a.jpg' +p172208 +sg25267 +S"Sébastien Bourdon was one of the twelve founding members of the Royal Academy\nof Painting and his \n The book of Exodus (2:5) recounts how a Hebrew woman saved her infant son from\nPharoah's\nmassacre of Hebrew children by placing him in a basket on the Nile. Pharoah's daughter,\nwhile bathing on the banks of the river, found the child, adopted him, and named\nhim Moses. In Bourdon's composition, Pharoah's daughter, dressed in yellow, occupies\nthe central vertical axis of the painting, supported on her left by her ladies\nin waiting. The figures form a frieze, like antique sculptures, across the foreground\nplane. They are dressed according to the seventeenth-century concept of ancient\ncostume and placed in a fanciful setting with Egyptian palm trees.\n The careful division of the composition into three parallel planes of space recalls\nthe principles of symmetry and order propounded by the Academy. The dignified gestures\n-- especially that of the princess -- and expressions of the figures tell the story\nin a way considered appropriate to the event, but the work is also enlivened by\nvivid color and clarifying light. Bourdon based his composition on earlier works\nof the same subject by Poussin.\n " +p172209 +sa(dp172210 +g25268 +S'Portrait of a Donor' +p172211 +sg25270 +S'Artist Information (' +p172212 +sg25273 +S'Netherlandish, c. 1415/1420 - 1475' +p172213 +sg25275 +S'(related artist)' +p172214 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000062b.jpg' +p172215 +sg25267 +g27 +sa(dp172216 +g25268 +S'Christ Instructing Peter and John to Prepare for the Passover' +p172217 +sg25270 +S'Vincenzo Civerchio' +p172218 +sg25273 +S'tempera on panel' +p172219 +sg25275 +S'1504' +p172220 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007fe.jpg' +p172221 +sg25267 +g27 +sa(dp172222 +g25268 +S'Salvator Mundi' +p172223 +sg25270 +S'Correggio' +p172224 +sg25273 +S'oil on panel' +p172225 +sg25275 +S'c. 1515' +p172226 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007d5.jpg' +p172227 +sg25267 +g27 +sa(dp172228 +g25268 +S'The Crucifixion with the Converted Centurion' +p172229 +sg25270 +S'Lucas Cranach the Elder' +p172230 +sg25273 +S'oil on panel' +p172231 +sg25275 +S'1536' +p172232 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004c2.jpg' +p172233 +sg25267 +S'In \n The theme of \n From 1505 until his death, Cranach was the court painter to three successive electors\nof Saxony. He became close friends with Luther -- who lived in the Saxon town of\nWittenberg -- and is considered the foremost artist of the Reformation.\n ' +p172234 +sa(dp172235 +g25268 +S'The Presentation and Marriage of the Virgin, and the Annunciation' +p172236 +sg25270 +S'Benedetto Diana' +p172237 +sg25273 +S'oil on panel' +p172238 +sg25275 +S'1520/1525' +p172239 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002aee.jpg' +p172240 +sg25267 +S"Never completed, this painting was probably intended to be cut into \n three separate sections following the lines of the architecture and then \n used in the predella of an altarpiece. Located closer to the viewer's eye \n than an altarpiece's central panel, predellas were usually decorated with a \n series of small narrative scenes recounting events from the life of Christ, \n the Virgin, or the saints.\n At the left, Mary appears to be about four years old. She enters the \n temple to undertake a life of service in fulfillment of a vow made by her \n aging parents. The broken column alludes to a legend that earthquakes \n rocked the temple when Christ was born. In more general terms the column \n symbolizes how Christ's birth will usher in a new era of Grace to replace \n the Old Testament Law. In the center, Mary is wed to Joseph. He was \n identified as God's choice to be her husband when the rod he held -- and which is still in his hands -- sprouted with new life. At the right, the Archangel Gabriel announces to Mary that she will bear the son of God.\n " +p172241 +sa(dp172242 +g25268 +S'Flirtation' +p172243 +sg25270 +S'Albert Besnard' +p172244 +sg25273 +S'etching' +p172245 +sg25275 +S'c. 1886' +p172246 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a000904c.jpg' +p172247 +sg25267 +g27 +sa(dp172248 +g25268 +S'The Assumption of the Virgin' +p172249 +sg25270 +S'Paolo di Giovanni Fei' +p172250 +sg25273 +S'tempera on panel' +p172251 +sg25275 +S'probably c. 1385' +p172252 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bc8.jpg' +p172253 +sg25267 +g27 +sa(dp172254 +g25268 +S'Saint Bernardino of Siena' +p172255 +sg25270 +S'Vincenzo Foppa' +p172256 +sg25273 +S'oil (?) on panel' +p172257 +sg25275 +S'c. 1495/1500' +p172258 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007c4.jpg' +p172259 +sg25267 +g27 +sa(dp172260 +g25268 +S'Saint Cecilia and an Angel' +p172261 +sg25270 +S'Artist Information (' +p172262 +sg25273 +S'(painter)' +p172263 +sg25275 +S'\n' +p172264 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000608.jpg' +p172265 +sg25267 +g27 +sa(dp172266 +g25268 +S'Don Antonio Noriega' +p172267 +sg25270 +S'Francisco de Goya' +p172268 +sg25273 +S'oil on canvas' +p172269 +sg25275 +S'1801' +p172270 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000491.jpg' +p172271 +sg25267 +S'The blue and white ribbon of the Order of Carlos III appears\r\n prominently \r\n on the jacket of Antonio Noriega Bermúdez. His knighthood,\r\n a list of other \r\n offices, and the date 1801 are inscribed in Spanish on both the\r\n tablecloth \r\n and the paper in the sitter’s hand. Don Antonio was knighted on 23\r\n July \r\n 1801, and Goya’s portrait may commemorate that event.\n As is customary in portrayals of government officials, Goya\r\n depicted \r\n Spain’s high treasurer at work. In a gesture of nonchalance, Don\r\n Antonio \r\n rests his hand inside his unbuttoned vest, implying his authority\r\n and \r\n control over the country’s finances. In truth, his administration\r\n was \r\n disastrously inefficient, nearly doubling the national debt. While\r\n fleeing \r\n from the Napoleonic invaders in 1808, Don Antonio was assassinated\r\n by \r\n Spaniards who, mistakenly, thought he had collaborated with the\r\n French \r\n army.\n ' +p172272 +sa(dp172273 +g25268 +S'Still Life with Sweets and Pottery' +p172274 +sg25270 +S'Juan van der Hamen y Le\xc3\xb3n' +p172275 +sg25273 +S'oil on canvas' +p172276 +sg25275 +S'1627' +p172277 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00038/a000385a.jpg' +p172278 +sg25267 +S'Canvases like this one earned Van der Hamen his reputation as the greatest Spanish\nstill-life painter of the seventeenth century, when that form was revived as a worthy\nsubject in and of itself rather than as an adjunct to a symbolic or narrative work.\nConcerned simply with the harmonious arrangement of objects and the accurate representation\nof texture and light, Van der Hamen established the ringlike stoneware bottle as\nthe center of the composition around which other circles and spheres play. Marzipan\nboxes foreshortened into ovals, spherical jars of honey and preserved cherries,\na circular tray of round, sugared donuts, serpentine cakes, and plump, glazed figs --\ndelicacies found on the refined tables of the aristocracy in Spain -- contrast with\nthe geometric severity of the setting. The artist arranged the objects on stepped\nstone ledges, thus varying their distances from the light source. Braided straw,\nwood, terra cotta, and crystal are masterfully described. These carefully rendered\ntextures reach a pinnacle in the water-filled glass finger bowl that casts a shadow\nand, at the same time, reflects the light. The calculated distribution of a single\ncolor, red in various tones, weaves the forms into a harmonious whole whose simplicity,\nat first glance, belies its careful structure.\n ' +p172279 +sa(dp172280 +g25268 +S'Claude Dupouch' +p172281 +sg25270 +S'Maurice-Quentin de La Tour' +p172282 +sg25273 +S'pastel on blue laid paper' +p172283 +sg25275 +S'c. 1739' +p172284 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f96.jpg' +p172285 +sg25267 +g27 +sa(dp172286 +g25268 +S'Madonna and Child Enthroned with Angels' +p172287 +sg25270 +S'Artist Information (' +p172288 +sg25273 +S'Italian, c. 1255 - 1318' +p172289 +sg25275 +S'(related artist)' +p172290 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a0c.jpg' +p172291 +sg25267 +g27 +sa(dp172292 +g25268 +S'The Baptism of Christ' +p172293 +sg25270 +S'Master of the Saint Bartholomew Altar' +p172294 +sg25273 +S'oil on panel' +p172295 +sg25275 +S'c. 1485/1500' +p172296 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000057f.jpg' +p172297 +sg25267 +S'Saints played a very important role in the popular piety of the late Middle Ages.\nThey were considered to be not only patrons and protectors against all manner of\nills, but also mediators between the individual worshiper and God.\n In this unusual scene, fourteen saints participate as witnesses at the Baptism of\nChrist. All the saints are vividly characterized by costume and attributes. They\ninclude the giant Christopher carrying the Christ Child on his shoulders, Catherine\nof Alexandria with sword and wheel of her martyrdom, Augustine holding his heart\npierced by the arrow of divine love, Mary Magdalene with her ointment jar, and the\nchivalrous George kneeling on his dragon. The gold background, the luminescent cloud\non which the saints float, and the unrealistic island setting for the Baptism itself\nall impart a visionary quality to the scene.\n The Master of the Saint Bartholomew Altar, named after his monumental altarpiece\nnow in Munich, was active in Cologne. Early in his career he seems to have worked\nas a manuscript illuminator, and this tradition is evident in his fluid paint handling\nand sparkling treatment of decorative details.\n ' +p172298 +sa(dp172299 +g25268 +S'Portrait of a Young Man' +p172300 +sg25270 +S'Artist Information (' +p172301 +sg25273 +S'Netherlandish, 1519 - 1576' +p172302 +sg25275 +S'(related artist)' +p172303 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000499.jpg' +p172304 +sg25267 +g27 +sa(dp172305 +g25268 +S'The Judgment of Paris' +p172306 +sg25270 +S'Giovanni Sons' +p172307 +sg25273 +S'oil on canvas' +p172308 +sg25275 +S'late 16th century' +p172309 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000828.jpg' +p172310 +sg25267 +g27 +sa(dp172311 +g25268 +S'A Martyr' +p172312 +sg25270 +S'Albert Besnard' +p172313 +sg25273 +S'etching' +p172314 +sg25275 +S'1883' +p172315 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a000904b.jpg' +p172316 +sg25267 +g27 +sa(dp172317 +g25268 +S'The Flight into Egypt' +p172318 +sg25270 +S'Artist Information (' +p172319 +sg25273 +S'Netherlandish, c. 1485 - 1524' +p172320 +sg25275 +S'(related artist)' +p172321 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005a1.jpg' +p172322 +sg25267 +g27 +sa(dp172323 +g25268 +S'Madonna and Child Appearing to Saint Philip Neri' +p172324 +sg25270 +S'Giovanni Battista Piazzetta' +p172325 +sg25273 +S'oil on canvas' +p172326 +sg25275 +S'probably 1725 or after' +p172327 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000061c.jpg' +p172328 +sg25267 +g27 +sa(dp172329 +g25268 +S'Monsignor della Casa' +p172330 +sg25270 +S'Pontormo' +p172331 +sg25273 +S'oil on panel' +p172332 +sg25275 +S'probably 1541/1544' +p172333 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000081d.jpg' +p172334 +sg25267 +S"Giovanni della Casa, who is in all likelihood the subject of this portrait, belonged\nto a wealthy Tuscan family and rose to prominence in the service of the church.\nAs poet, humanist, and political theorist, he circulated at the highest levels of\nItalian intellectual life. Della Casa also wrote a book on manners, and in this\nportrait of the early 1540s displays the sober self-possession espoused in that\nwork. When Pontormo painted this image, della Casa was in his early thirties and\nacting in Florence as Apostolic Commissioner of taxes. Pontormo shows the monsignor\nin a dim interior, and although the architectural details are few, they suggest\nthat the building is Santa Maria del Fiore, the cathedral of Florence.\n Pontormo's mannerist style was a brilliantly expressive synthesis of fantasy and\nacute observation of nature. Here the balance is tilted in favor of visible reality,\nbut a reality intensified by plausible exaggerations. For example, the monsignor's\nsmall head is made to look even smaller by the huge conical bulk of his caped torso\nlooming so close to the picture plane and brushing the sides of the frame.\n " +p172335 +sa(dp172336 +g25268 +S'David Johnston' +p172337 +sg25270 +S"Pierre Paul Prud'hon" +p172338 +sg25273 +S'oil on canvas' +p172339 +sg25275 +S'1808' +p172340 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d9a.jpg' +p172341 +sg25267 +S"David Johnston, who was painted at the age of nineteen, became a \r\n progressive industrialist in the ceramics business and served as mayor of \r\n Bordeaux. This portrait was produced while Prud'hon was at the height of \r\n his fame, in the same year that Napoleon awarded him the Legion of Honor. \r\n Unlike most other painters in France, Prud'hon did not fall under the \r\n influence of David's austere style. His work, by contrast, has the shadowy \r\n softness of Italian Renaissance painters \r\n \n Prud'hon, his life marred by personal tragedy, was passionately admired \r\n by romantic artists of the following generation who saw in his work an \r\n alternative to the \n " +p172342 +sa(dp172343 +g25268 +S'Landscape' +p172344 +sg25270 +S'Jacob van Ruisdael' +p172345 +sg25273 +S'oil on canvas' +p172346 +sg25275 +S'c. 1670' +p172347 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e90.jpg' +p172348 +sg25267 +g27 +sa(dp172349 +g25268 +S'The Adoration of the Shepherds' +p172350 +sg25270 +S'Giovanni Girolamo Savoldo' +p172351 +sg25273 +S'oil on panel' +p172352 +sg25275 +S'1530s' +p172353 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a00009ba.jpg' +p172354 +sg25267 +g27 +sa(dp172355 +g25268 +S'Madonna and Child with Saints and Angels' +p172356 +sg25270 +S'Luca Signorelli' +p172357 +sg25273 +S'oil on panel transferred to hardboard' +p172358 +sg25275 +S'mid or late 1510s' +p172359 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b2c.jpg' +p172360 +sg25267 +g27 +sa(dp172361 +g25268 +S'Saint Mary Cleophas and Her Family' +p172362 +sg25270 +S'Bernhard Strigel' +p172363 +sg25273 +S'oil on panel' +p172364 +sg25275 +S'c. 1520/1528' +p172365 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005bf.jpg' +p172366 +sg25267 +g27 +sa(dp172367 +g25268 +S'Saint Mary Salome and Her Family' +p172368 +sg25270 +S'Bernhard Strigel' +p172369 +sg25273 +S'oil on panel' +p172370 +sg25275 +S'c. 1520/1528' +p172371 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005c0.jpg' +p172372 +sg25267 +S'Saint Mary Salome and Her Family\n Strigel, who worked in Memmingen, a small city in the southern German province of\nBavaria, makes Mary Salome the center of a comfortable domestic scene. Her father\nSalomas, wearing characteristic Jewish headgear, hovers behind her, while her husband\nZebedee sits beside her. Their two small sons James and John are identifiable by\nthe names inscribed on their halos. They will grow up to be disciples of Christ,\nand indeed Saint John is already busy writing a book in Hebrew like characters, foretelling\nhis future activity as one of the four authors of the Gospels.\n ' +p172373 +sa(dp172374 +g25268 +S'Summer' +p172375 +sg25270 +S'Jacopo Tintoretto' +p172376 +sg25273 +S'oil on canvas' +p172377 +sg25275 +S'c. 1555' +p172378 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000082b.jpg' +p172379 +sg25267 +g27 +sa(dp172380 +g25268 +S'The Silk Gown (La robe de soie)' +p172381 +sg25270 +S'Albert Besnard' +p172382 +sg25273 +S'etching' +p172383 +sg25275 +S'1887' +p172384 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a0009058.jpg' +p172385 +sg25267 +g27 +sa(dp172386 +g25268 +S'The Larder' +p172387 +sg25270 +S'Antonio Maria Vassallo' +p172388 +sg25273 +S'oil on canvas' +p172389 +sg25275 +S'probably c. 1650/1660' +p172390 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000652.jpg' +p172391 +sg25267 +S'This painting, a compendium of motifs Vassallo used in\r\n other pictures, can be seen, and was perhaps considered by\r\n the artist himself, as a summing up of his achievements as\r\n a still-life artist. Each object has the same uncompromising\r\n conviction of reality. They are massed in one enormous display,\r\n but Vassallo turned an acute eye on each individually.\n Visual description may not, however, be Vassallo’s only\r\n motive. Scholars have been tempted to find a symbolic meaning,\r\n pointing to abundance or perhaps to God’s provision\r\n for men’s needs, both physical and spiritual. In contemporary\r\n Dutch still lifes, viewers were reminded of the transience\r\n of wealth and life itself by such clues as vessels that were\r\n tipped over, insects, or overripe fruit. We do not find these\r\n signals here, however.\n Another suggestion sees this as an allegory of the Four\r\n Elements: air, water, fire, and earth are each represented. The\r\n bounty of food includes fruits of the earth and sea as well\r\n as birds trapped from the sky. And in the background is the\r\n flare of a cooking fire. In collectors’ cabinets, such allegorical\r\n themes often provided the organizational principle for\r\n the display of wonders like fossils and minerals. Existence\r\n of these collections, in fact, helped create a demand for\r\n still-life painting.\n ' +p172392 +sa(dp172393 +g25268 +S'Three Figures Dressed for a Masquerade' +p172394 +sg25270 +S'Louis-Joseph Le Lorrain' +p172395 +sg25273 +S'oil on canvas' +p172396 +sg25275 +S'c. 1740s' +p172397 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d76.jpg' +p172398 +sg25267 +S'The costumes and setting here suggest a masquerade, perhaps in Venice.\r\n Like the elegant and enigmatic trio depicted, however, the painting remains\r\n mysterious. It has been attributed to many different artists, most recently\r\n Le Lorrain, a little-known artist who spent nine years in Italy and was\r\n recognized primarily as a "painter of ruins." Le Lorrain also designed\r\n interiors, furniture (including a neoclassical suite in a \n ' +p172399 +sa(dp172400 +g25268 +S'Rush Harrison Kress' +p172401 +sg25270 +S'Leopold Seyffert' +p172402 +sg25273 +S'oil on canvas' +p172403 +sg25275 +S'1953' +p172404 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000020f.jpg' +p172405 +sg25267 +S'After illness incapacitated his older brother \n Leopold Gould Seyffert depicted both Kress brothers seated in Italian Renaissance-style armchairs, symbolizing their artistic interests.\n ' +p172406 +sa(dp172407 +g25268 +S'The Man of Sorrows' +p172408 +sg25270 +S'Milanese 16th Century' +p172409 +sg25273 +S'overall: 29.5 x 25.4 cm (11 5/8 x 10 in.)' +p172410 +sg25275 +S'\nmarble' +p172411 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00034/a0003416.jpg' +p172412 +sg25267 +g27 +sa(dp172413 +g25268 +S'Madonna and Child with Two Angels' +p172414 +sg25270 +S'Verona 14th Century' +p172415 +sg25273 +S'overall: 89.5 x 46.4 x 38.8 cm (35 1/4 x 18 1/4 x 15 1/4 in.)' +p172416 +sg25275 +S'\nmarble' +p172417 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004a/a0004a06.jpg' +p172418 +sg25267 +g27 +sa(dp172419 +g25273 +S'terracotta' +p172420 +sg25267 +g27 +sg25275 +S'mid 19th century' +p172421 +sg25268 +S'Madonna with the Sleeping Child' +p172422 +sg25270 +S'Florentine 19th Century' +p172423 +sa(dp172424 +g25268 +S'The Archangel Gabriel' +p172425 +sg25270 +S'Pisan 14th Century' +p172426 +sg25273 +S'overall: 159.4 x 47.3 x 36 cm (62 3/4 x 18 5/8 x 14 3/16 in.)' +p172427 +sg25275 +S'\nwood, polychromed and gilded' +p172428 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b00.jpg' +p172429 +sg25267 +S"Among the National Gallery's earliest life-size sculptures (and few medieval works in wood)\nis this figure and a companion work, \n These wooden figures are copied from a pair of fourteenth-century marble statues in the\nchurch of Santa Caterina in Pisa, Italy. Carbon-14 tests on samples of the wood have indicated\nthat each piece was carved from a tree cut down at least six hundred years ago.\n Such Annunciation pairs would perhaps have flanked the entrance to the high-altar area of a\nchurch or the altar itself. While they might also have been set into tabernacles, the carving\ncompletely in the round suggests a position in which viewers could move around them. Their\nsurfaces were once completely polychromed, and traces of the colors remain -- red, blue, green,\nand a red-and-gilt pattern on the borders of the mantles.\n " +p172430 +sa(dp172431 +g25268 +S'The Virgin Annunciate' +p172432 +sg25270 +S'Pisan 14th Century' +p172433 +sg25273 +S'overall: 162.3 x 53.8 x 39.9 cm (63 7/8 x 21 3/16 x 15 11/16 in.)' +p172434 +sg25275 +S'\nwood, polychromed and gilded' +p172435 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b01.jpg' +p172436 +sg25267 +S"Among the National Gallery's earliest life-size sculptures (and few medieval works in wood)\nis this figure and a companion work, \n These wooden figures are copied from a pair of fourteenth-century marble statues in the\nchurch of Santa Caterina in Pisa, Italy. Carbon-14 tests on samples of the wood have indicated\nthat each piece was carved from a tree cut down at least six hundred years ago.\n Such Annunciation pairs would perhaps have flanked the entrance to the high-altar area of a\nchurch or the altar itself. While they might also have been set into tabernacles, the carving\ncompletely in the round suggests a position in which viewers could move around them. Their\nsurfaces were once completely polychromed, and traces of the colors remain -- red, blue, green,\nand a red-and-gilt pattern on the borders of the mantles.\n " +p172437 +sa(dp172438 +g25268 +S'Virgin and Child' +p172439 +sg25270 +S'French 14th Century' +p172440 +sg25273 +S'overall: 100.8 x 31.2 x 17.8 cm (39 11/16 x 12 5/16 x 7 in.)' +p172441 +sg25275 +S'\nmarble' +p172442 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c0d.jpg' +p172443 +sg25267 +g27 +sa(dp172444 +g25268 +S'Andiron with Figure of Mars' +p172445 +sg25270 +S'Artist Information (' +p172446 +sg25273 +S'Italian, 1557/1559 - 1606' +p172447 +sg25275 +S'(related artist)' +p172448 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00065/a00065de.jpg' +p172449 +sg25267 +g27 +sa(dp172450 +g25268 +S'Kneeling Angel' +p172451 +sg25270 +S'Giovanni Antonio Amadeo' +p172452 +sg25273 +S'marble' +p172453 +sg25275 +S'1470/1480' +p172454 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d6a.jpg' +p172455 +sg25267 +g27 +sa(dp172456 +g25268 +S'In the Embers (Dans les cendres)' +p172457 +sg25270 +S'Albert Besnard' +p172458 +sg25273 +S'etching' +p172459 +sg25275 +S'1887' +p172460 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d71.jpg' +p172461 +sg25267 +g27 +sa(dp172462 +g25268 +S'Andiron with Figure of Venus' +p172463 +sg25270 +S'Artist Information (' +p172464 +sg25273 +S'Italian, 1549 - 1625 or before' +p172465 +sg25275 +S'(related artist)' +p172466 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00065/a00065df.jpg' +p172467 +sg25267 +g27 +sa(dp172468 +g25268 +S'Monsignor Francesco Barberini' +p172469 +sg25270 +S'Gian Lorenzo Bernini' +p172470 +sg25273 +S'marble' +p172471 +sg25275 +S'c. 1623' +p172472 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002ae7.jpg' +p172473 +sg25267 +S"The sternly reserved expression of this portrait bust may come as a surprise in a work of the\ngreat baroque sculptor and architect Bernini. The restrained treatment must owe something to the\nfact that the sculptor was working not from a living subject but from the painted portrait of a man\nwho had died in 1600, when Bernini was two years old. Around 1623 Bernini's good friend\nMaffeo Barberini, the newly elected Pope Urban VIII, commissioned busts of his family,\nincluding this beloved uncle.\n With the needs of his patron in mind, Bernini created a noble and dignified paternal presence\nin the ancient Roman tradition of ancestral portraiture. He chose a bust form that includes most\nof the chest, and curved the truncation to echo the arch of the spreading shoulders,\nproducing an effect both of harmony and imposing physical bulk. Shadows play over Francesco's\naged face, especially in the sunken temples, and beneath the bushy eyebrows. The sagging flesh\nof the cheeks appears soft and pliant. The sculptor's drill has pierced dark wells between the tufts\nof the silky beard. The mantle falls in broad folds that contrast with the crinkly pleats of the\nsurplice below. These varied forms and textures show how successfully Bernini strove to\ncompensate for marble's lack of color.\n " +p172474 +sa(dp172475 +g25268 +S'Madonna and Child' +p172476 +sg25270 +S'Artist Information (' +p172477 +sg25273 +S'Italian, c. 1385 - 1455' +p172478 +sg25275 +S'(related artist)' +p172479 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063cd.jpg' +p172480 +sg25267 +g27 +sa(dp172481 +g25268 +S'Chiaro da Verrazzano' +p172482 +sg25270 +S'Italian 17th Century' +p172483 +sg25273 +S'overall (with base): 91.4 x 68.9 x 37.8 cm (36 x 27 1/8 x 14 7/8 in.)' +p172484 +sg25275 +S'\nmarble' +p172485 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00034/a0003410.jpg' +p172486 +sg25267 +g27 +sa(dp172487 +g25268 +S'Giovanni da Verrazzano' +p172488 +sg25270 +S'Italian 17th Century' +p172489 +sg25273 +S'overall (with base): 88.6 x 68.9 x 33.6 cm (34 7/8 x 27 1/8 x 13 1/4 in.)' +p172490 +sg25275 +S'\nmarble' +p172491 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00034/a0003411.jpg' +p172492 +sg25267 +g27 +sa(dp172493 +g25268 +S'A Gentleman of the Zorzi Family' +p172494 +sg25270 +S'Alessandro Vittoria' +p172495 +sg25273 +S'terracotta' +p172496 +sg25275 +S'1570/1580' +p172497 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d99.jpg' +p172498 +sg25267 +g27 +sa(dp172499 +g25268 +S'A Lady of the Zorzi Family' +p172500 +sg25270 +S'Alessandro Vittoria' +p172501 +sg25273 +S'terracotta' +p172502 +sg25275 +S'1570/1580' +p172503 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d83.jpg' +p172504 +sg25267 +g27 +sa(dp172505 +g25268 +S'Saint Jerome' +p172506 +sg25270 +S'Italian 15th Century' +p172507 +sg25273 +S'Samuel H. Kress Collection' +p172508 +sg25275 +S'\nniello plate' +p172509 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdd5.jpg' +p172510 +sg25267 +g27 +sa(dp172511 +g25273 +S'Samuel H. Kress Collection' +p172512 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172513 +sg25268 +S'The Resurrection' +p172514 +sg25270 +S'Italian 15th Century' +p172515 +sa(dp172516 +g25273 +S'Samuel H. Kress Collection' +p172517 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172518 +sg25268 +S'The Man of Sorrows' +p172519 +sg25270 +S'Italian 15th Century' +p172520 +sa(dp172521 +g25268 +S'Small Donkey at Berck (Un petit ane \xc3\xa0 Berck)' +p172522 +sg25270 +S'Albert Besnard' +p172523 +sg25273 +S'etching and drypoint' +p172524 +sg25275 +S'1897' +p172525 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a0009063.jpg' +p172526 +sg25267 +g27 +sa(dp172527 +g25273 +S'Samuel H. Kress Collection' +p172528 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172529 +sg25268 +S'Saint Bernardino' +p172530 +sg25270 +S'Italian 15th Century' +p172531 +sa(dp172532 +g25273 +S'Samuel H. Kress Collection' +p172533 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172534 +sg25268 +S'The Virgin and Child' +p172535 +sg25270 +S'Italian 15th Century' +p172536 +sa(dp172537 +g25273 +S'Samuel H. Kress Collection' +p172538 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172539 +sg25268 +S'Saint Francis' +p172540 +sg25270 +S'Italian 15th Century' +p172541 +sa(dp172542 +g25273 +S'Samuel H. Kress Collection' +p172543 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172544 +sg25268 +S'Saint Roch' +p172545 +sg25270 +S'Italian 15th Century' +p172546 +sa(dp172547 +g25273 +S'Samuel H. Kress Collection' +p172548 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172549 +sg25268 +S'Half Figure of a Saint Holding a Chalice and Book' +p172550 +sg25270 +S'Italian 15th Century' +p172551 +sa(dp172552 +g25268 +S'Saint Ambrose' +p172553 +sg25270 +S'Italian 15th Century' +p172554 +sg25273 +S'Samuel H. Kress Collection' +p172555 +sg25275 +S'\nniello plate' +p172556 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdb8.jpg' +p172557 +sg25267 +g27 +sa(dp172558 +g25273 +S'Samuel H. Kress Collection' +p172559 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172560 +sg25268 +S'Saint John the Baptist' +p172561 +sg25270 +S'Italian 15th Century' +p172562 +sa(dp172563 +g25273 +S'Samuel H. Kress Collection' +p172564 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172565 +sg25268 +S'Saint Sebastian' +p172566 +sg25270 +S'Italian 15th Century' +p172567 +sa(dp172568 +g25273 +S'Samuel H. Kress Collection' +p172569 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172570 +sg25268 +S'Saint Dorothy (?)' +p172571 +sg25270 +S'Italian 15th Century' +p172572 +sa(dp172573 +g25273 +S'Samuel H. Kress Collection' +p172574 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172575 +sg25268 +S'Saint Roch and Saint Sebastian' +p172576 +sg25270 +S'Italian 15th Century' +p172577 +sa(dp172578 +g25268 +S'La Flore de le Gros' +p172579 +sg25270 +S'Albert Besnard' +p172580 +sg25273 +S'etching' +p172581 +sg25275 +S'1899' +p172582 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a0009061.jpg' +p172583 +sg25267 +g27 +sa(dp172584 +g25273 +S'Samuel H. Kress Collection' +p172585 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172586 +sg25268 +S'Saint Elizabeth of Hungary (?)' +p172587 +sg25270 +S'Italian 15th Century' +p172588 +sa(dp172589 +g25273 +S'Samuel H. Kress Collection' +p172590 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172591 +sg25268 +S'Martyrdom of Saint Stephen (?)' +p172592 +sg25270 +S'Italian 15th Century' +p172593 +sa(dp172594 +g25273 +S'Samuel H. Kress Collection' +p172595 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172596 +sg25268 +S'Heraldic Eagle' +p172597 +sg25270 +S'Italian 15th Century' +p172598 +sa(dp172599 +g25273 +S'Samuel H. Kress Collection' +p172600 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172601 +sg25268 +S'Saint Augustine' +p172602 +sg25270 +S'Italian 15th Century' +p172603 +sa(dp172604 +g25273 +S'Samuel H. Kress Collection' +p172605 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172606 +sg25268 +S'Saint Gregory' +p172607 +sg25270 +S'Italian 15th Century' +p172608 +sa(dp172609 +g25273 +S'Samuel H. Kress Collection' +p172610 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172611 +sg25268 +S'Saint Bernardino' +p172612 +sg25270 +S'Italian 15th Century' +p172613 +sa(dp172614 +g25273 +S'Samuel H. Kress Collection' +p172615 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172616 +sg25268 +S'Saint Jerome' +p172617 +sg25270 +S'Italian 15th Century' +p172618 +sa(dp172619 +g25273 +S'Samuel H. Kress Collection' +p172620 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172621 +sg25268 +S'Martyrdom of a Saint' +p172622 +sg25270 +S'Italian 15th Century' +p172623 +sa(dp172624 +g25273 +S'Samuel H. Kress Collection' +p172625 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172626 +sg25268 +S'Saint Lawrence' +p172627 +sg25270 +S'Italian 15th Century' +p172628 +sa(dp172629 +g25273 +S'Samuel H. Kress Collection' +p172630 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172631 +sg25268 +S'The Crucifixion' +p172632 +sg25270 +S'Italian 15th Century' +p172633 +sa(dp172634 +g25268 +S'Confidences' +p172635 +sg25270 +S'Albert Besnard' +p172636 +sg25273 +S'etching' +p172637 +sg25275 +S'1900' +p172638 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a000905a.jpg' +p172639 +sg25267 +g27 +sa(dp172640 +g25273 +S'Samuel H. Kress Collection' +p172641 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172642 +sg25268 +S'Agnus Dei' +p172643 +sg25270 +S'Italian 15th Century' +p172644 +sa(dp172645 +g25273 +S'Samuel H. Kress Collection' +p172646 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172647 +sg25268 +S'The Man of Sorrows' +p172648 +sg25270 +S'Italian 15th Century' +p172649 +sa(dp172650 +g25268 +S'Virgin and Child with Two Martyrs and Donor' +p172651 +sg25270 +S'Italian 15th Century' +p172652 +sg25273 +S'Samuel H. Kress Collection' +p172653 +sg25275 +S'\nniello plate' +p172654 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdb9.jpg' +p172655 +sg25267 +g27 +sa(dp172656 +g25273 +S'Samuel H. Kress Collection' +p172657 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172658 +sg25268 +S'Saint with Sword and Palm' +p172659 +sg25270 +S'Italian 15th Century' +p172660 +sa(dp172661 +g25273 +S'Samuel H. Kress Collection' +p172662 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172663 +sg25268 +S'Half Figure of a Monk' +p172664 +sg25270 +S'Italian 15th Century' +p172665 +sa(dp172666 +g25273 +S'Samuel H. Kress Collection' +p172667 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172668 +sg25268 +S'Virgin and Child between Two Religious' +p172669 +sg25270 +S'Italian 15th Century' +p172670 +sa(dp172671 +g25273 +S'Samuel H. Kress Collection' +p172672 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172673 +sg25268 +S'Half Figure of a Monk with Cross and Book' +p172674 +sg25270 +S'Italian 15th Century' +p172675 +sa(dp172676 +g25273 +S'Samuel H. Kress Collection' +p172677 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172678 +sg25268 +S'The Man of Sorrows' +p172679 +sg25270 +S'Italian 15th Century' +p172680 +sa(dp172681 +g25273 +S'Samuel H. Kress Collection' +p172682 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172683 +sg25268 +S'The Nativity' +p172684 +sg25270 +S'Italian 15th Century' +p172685 +sa(dp172686 +g25273 +S'Samuel H. Kress Collection' +p172687 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172688 +sg25268 +S'Shield with Three Roses and Bunch of Two Lilies' +p172689 +sg25270 +S'Italian 15th Century' +p172690 +sa(dp172691 +g25268 +S'Morphine Addicts (Morphinomanes)' +p172692 +sg25270 +S'Albert Besnard' +p172693 +sg25273 +S'etching' +p172694 +sg25275 +S'1887' +p172695 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005db8.jpg' +p172696 +sg25267 +g27 +sa(dp172697 +g25273 +S'Samuel H. Kress Collection' +p172698 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172699 +sg25268 +S'The Nativity' +p172700 +sg25270 +S'Italian 15th Century' +p172701 +sa(dp172702 +g25273 +S'Samuel H. Kress Collection' +p172703 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172704 +sg25268 +S'Saint Sebastian' +p172705 +sg25270 +S'Italian 16th Century' +p172706 +sa(dp172707 +g25273 +S'Samuel H. Kress Collection' +p172708 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172709 +sg25268 +S'Virgin and Child' +p172710 +sg25270 +S'Italian 16th Century' +p172711 +sa(dp172712 +g25273 +S'Samuel H. Kress Collection' +p172713 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172714 +sg25268 +S'Saint Barbara' +p172715 +sg25270 +S'Italian 16th Century' +p172716 +sa(dp172717 +g25273 +S'Samuel H. Kress Collection' +p172718 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172719 +sg25268 +S'Saint Roch' +p172720 +sg25270 +S'Italian 16th Century' +p172721 +sa(dp172722 +g25273 +S'Samuel H. Kress Collection' +p172723 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172724 +sg25268 +S'Baptism of Christ' +p172725 +sg25270 +S'Italian 16th Century' +p172726 +sa(dp172727 +g25273 +S'Samuel H. Kress Collection' +p172728 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172729 +sg25268 +S'Saint Peter' +p172730 +sg25270 +S'Italian 16th Century' +p172731 +sa(dp172732 +g25273 +S'Samuel H. Kress Collection' +p172733 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172734 +sg25268 +S'Saint Andrew' +p172735 +sg25270 +S'Italian 15th Century' +p172736 +sa(dp172737 +g25273 +S'Samuel H. Kress Collection' +p172738 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172739 +sg25268 +S'Bust of a Bearded Man with Ornate Breastplate Facing Left' +p172740 +sg25270 +S'Italian 16th Century' +p172741 +sa(dp172742 +g25268 +S'Dead Christ Supported by Two Angels' +p172743 +sg25270 +S'Venetian 16th Century' +p172744 +sg25273 +S'niello plate' +p172745 +sg25275 +S'c. 1589' +p172746 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00069/a000690f.jpg' +p172747 +sg25267 +g27 +sa(dp172748 +g25268 +S'La Biarrote' +p172749 +sg25270 +S'Albert Besnard' +p172750 +sg25273 +S'etching' +p172751 +sg25275 +S'1901' +p172752 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a0009082.jpg' +p172753 +sg25267 +g27 +sa(dp172754 +g25273 +S'Samuel H. Kress Collection' +p172755 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172756 +sg25268 +S'Christ in Limbo' +p172757 +sg25270 +S'German 16th Century' +p172758 +sa(dp172759 +g25273 +S'Samuel H. Kress Collection' +p172760 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172761 +sg25268 +S'Marriage at Cana' +p172762 +sg25270 +S'Italian 15th Century' +p172763 +sa(dp172764 +g25273 +S'Samuel H. Kress Collection' +p172765 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172766 +sg25268 +S'The Nativity' +p172767 +sg25270 +S'Italian 15th Century' +p172768 +sa(dp172769 +g25273 +S'Samuel H. Kress Collection' +p172770 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172771 +sg25268 +S'The Nativity' +p172772 +sg25270 +S'Italian 15th Century' +p172773 +sa(dp172774 +g25273 +S'Samuel H. Kress Collection' +p172775 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172776 +sg25268 +S'Annunciation' +p172777 +sg25270 +S'Italian 15th Century' +p172778 +sa(dp172779 +g25273 +S'Samuel H. Kress Collection' +p172780 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172781 +sg25268 +S'Presentation in the Temple' +p172782 +sg25270 +S'Italian 15th Century' +p172783 +sa(dp172784 +g25273 +S'Samuel H. Kress Collection' +p172785 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172786 +sg25268 +S'Flagellation' +p172787 +sg25270 +S'Italian 15th Century' +p172788 +sa(dp172789 +g25273 +S'Samuel H. Kress Collection' +p172790 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172791 +sg25268 +S'Crowning with Thorns' +p172792 +sg25270 +S'Italian 15th Century' +p172793 +sa(dp172794 +g25273 +S'Samuel H. Kress Collection' +p172795 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172796 +sg25268 +S'Deposition' +p172797 +sg25270 +S'Italian 15th Century' +p172798 +sa(dp172799 +g25273 +S'Samuel H. Kress Collection' +p172800 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172801 +sg25268 +S'The Agony in the Garden' +p172802 +sg25270 +S'Italian 15th Century' +p172803 +sa(dp172804 +g25268 +S'The Feathered Turban (Le turban \xc3\xa0 aigrette)' +p172805 +sg25270 +S'Albert Besnard' +p172806 +sg25273 +S'etching, drypoint, and aquatint in black on laid paper' +p172807 +sg25275 +S'1901' +p172808 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a0009081.jpg' +p172809 +sg25267 +g27 +sa(dp172810 +g25273 +S'Samuel H. Kress Collection' +p172811 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172812 +sg25268 +S'Heraldic Eagle in a Flowered Field' +p172813 +sg25270 +S'Italian 15th Century' +p172814 +sa(dp172815 +g25268 +S'Christ Disputing with the Doctors' +p172816 +sg25270 +S'Italian 15th Century' +p172817 +sg25273 +S'Samuel H. Kress Collection' +p172818 +sg25275 +S'\nniello plate' +p172819 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a00058f9.jpg' +p172820 +sg25267 +g27 +sa(dp172821 +g25273 +S'Samuel H. Kress Collection' +p172822 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172823 +sg25268 +S'The Adoration of the Magi' +p172824 +sg25270 +S'Italian 15th Century' +p172825 +sa(dp172826 +g25273 +S'Samuel H. Kress Collection' +p172827 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172828 +sg25268 +S'Baptism of Christ' +p172829 +sg25270 +S'Italian 15th Century' +p172830 +sa(dp172831 +g25273 +S'Samuel H. Kress Collection' +p172832 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172833 +sg25268 +S'The Flight into Egypt' +p172834 +sg25270 +S'Italian 15th Century' +p172835 +sa(dp172836 +g25273 +S'Samuel H. Kress Collection' +p172837 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172838 +sg25268 +S'Christ Bearing the Cross' +p172839 +sg25270 +S'Italian 15th Century' +p172840 +sa(dp172841 +g25273 +S'Samuel H. Kress Collection' +p172842 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172843 +sg25268 +S'Deposition' +p172844 +sg25270 +S'Italian 15th Century' +p172845 +sa(dp172846 +g25273 +S'Samuel H. Kress Collection' +p172847 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172848 +sg25268 +S'The Nativity' +p172849 +sg25270 +S'Italian 15th Century' +p172850 +sa(dp172851 +g25273 +S'Samuel H. Kress Collection' +p172852 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172853 +sg25268 +S'The Man of Sorrows' +p172854 +sg25270 +S'Italian 15th Century' +p172855 +sa(dp172856 +g25273 +S'Samuel H. Kress Collection' +p172857 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172858 +sg25268 +S'Standing Haloed Figure with Double Cross; At Right, Three Bishop Saints' +p172859 +sg25270 +S'Italian 15th Century' +p172860 +sa(dp172861 +g25268 +S'The Dancer of Tanjore (La bayad\xc3\xa8re of Tanjore)' +p172862 +sg25270 +S'Albert Besnard' +p172863 +sg25273 +S'etching' +p172864 +sg25275 +S'1914' +p172865 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a0009086.jpg' +p172866 +sg25267 +g27 +sa(dp172867 +g25273 +S'Samuel H. Kress Collection' +p172868 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172869 +sg25268 +S'Giangaleazzo Visconti, First Duke of Milan [left half?]' +p172870 +sg25270 +S'Italian 15th Century' +p172871 +sa(dp172872 +g25273 +S'Samuel H. Kress Collection' +p172873 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172874 +sg25268 +S'Coat of Arms [right half?]' +p172875 +sg25270 +S'Italian 15th Century' +p172876 +sa(dp172877 +g25273 +S'Samuel H. Kress Collection' +p172878 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172879 +sg25268 +S'Catherina, Wife of Giangaleazzo Visconti; Coat of Arms' +p172880 +sg25270 +S'Italian 15th Century' +p172881 +sa(dp172882 +g25273 +S'Samuel H. Kress Collection' +p172883 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172884 +sg25268 +S'Bust of Young Woman Turned Left; Seated Woman Turned Left, Holding a Flowering Branch' +p172885 +sg25270 +S'Italian 15th Century' +p172886 +sa(dp172887 +g25273 +S'Samuel H. Kress Collection' +p172888 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172889 +sg25268 +S'Angel Gabriel; Virgin Annunciate; Virgin and Child in Half-Figure among the Clouds' +p172890 +sg25270 +S'Italian 15th Century' +p172891 +sa(dp172892 +g25273 +S'Samuel H. Kress Collection' +p172893 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172894 +sg25268 +S'Pax, Christ on Cross' +p172895 +sg25270 +S'Italian 15th Century' +p172896 +sa(dp172897 +g25268 +S'Pax, Virgin and Child Enthroned with Saints' +p172898 +sg25270 +S'Italian 15th Century' +p172899 +sg25273 +S'Samuel H. Kress Collection' +p172900 +sg25275 +S'\nniello plate' +p172901 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c664.jpg' +p172902 +sg25267 +g27 +sa(dp172903 +g25273 +S'niello plate' +p172904 +sg25267 +g27 +sg25275 +S'c. 1460' +p172905 +sg25268 +S'Pax: Crucifixion with Two Thieves' +p172906 +sg25270 +S'Maso Finiguerra' +p172907 +sa(dp172908 +g25273 +S'niello plate' +p172909 +sg25267 +g27 +sg25275 +S'unknown date\n' +p172910 +sg25268 +S'Saint Anthony' +p172911 +sg25270 +S'German 19th Century' +p172912 +sa(dp172913 +g25273 +S'Samuel H. Kress Collection' +p172914 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172915 +sg25268 +S'The Crucifixion' +p172916 +sg25270 +S'German 19th Century' +p172917 +sa(dp172918 +g25273 +S'watercolor' +p172919 +sg25267 +g27 +sg25275 +S'1930' +p172920 +sg25268 +S'Roydon' +p172921 +sg25270 +S'James McBey' +p172922 +sa(dp172923 +g25273 +S'Samuel H. Kress Collection' +p172924 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172925 +sg25268 +S'Coronation of the Virgin; Adoration of the Magi' +p172926 +sg25270 +S'Italian 15th Century' +p172927 +sa(dp172928 +g25273 +S'Samuel H. Kress Collection' +p172929 +sg25267 +g27 +sg25275 +S'\nniello plate' +p172930 +sg25268 +S'Virgin and Child; The Man of Sorrows' +p172931 +sg25270 +S'Italian 15th Century' +p172932 +sa(dp172933 +g25273 +S'overall (metal plate): 21.3 x 11.2 cm (8 3/8 x 4 7/16 in.)\r\noverall (wood backing): 22.6 x 12.4 cm (8 7/8 x 4 7/8 in.)' +p172934 +sg25267 +g27 +sg25275 +S'\nchamplev? enamel on copper, with traces of gilding, mounted on wooden backing' +p172935 +sg25268 +S'Book Cover with Christ in Majesty' +p172936 +sg25270 +S'French 13th Century' +p172937 +sa(dp172938 +g25273 +S'enamel painted on copper' +p172939 +sg25267 +g27 +sg25275 +S'mid 16th century' +p172940 +sg25268 +S'Plaque with Ganymede' +p172941 +sg25270 +S'Pierre Reymond' +p172942 +sa(dp172943 +g25273 +S'enamel painted on copper' +p172944 +sg25267 +g27 +sg25275 +S'mid 16th century' +p172945 +sg25268 +S'Plaque with Ixion' +p172946 +sg25270 +S'Pierre Reymond' +p172947 +sa(dp172948 +g25268 +S'Cabinet' +p172949 +sg25270 +S'Boas Ulrich' +p172950 +sg25273 +S', c. 1595/1600 and later' +p172951 +sg25275 +S'\n' +p172952 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063c9.jpg' +p172953 +sg25267 +g27 +sa(dp172954 +g25273 +S'overall (disk diameter): 3.9 cm (1 9/16 in.)\r\noverall (velvet strip): 5.1 x 41.6 cm (2 x 16 3/8 in.)\r\noverall (enamel diamater): 1.1 cm (7/16 in.)' +p172955 +sg25267 +g27 +sg25275 +S'\nrepouss? silver, gilded, and translucent enamel, attached to a strip of velvet' +p172956 +sg25268 +S'Costume Ornament with Profile Portrait' +p172957 +sg25270 +S'North Italian 14th Century' +p172958 +sa(dp172959 +g25273 +S'overall (disk diameter): 3.9 cm (1 9/16 in.)\r\noverall (velvet strip): 5.1 x 41.6 cm (2 x 16 3/8 in.)\r\noverall (enamel diameter): 1.1 cm (7/16 in.)' +p172960 +sg25267 +g27 +sg25275 +S'\nrepouss? silver, gilded, and translucent enamel, attached to a strip of velvet' +p172961 +sg25268 +S'Costume Ornament with Profile Portrait' +p172962 +sg25270 +S'North Italian 14th Century' +p172963 +sa(dp172964 +g25273 +S'overall (disk diameter): 3.8 cm (1 1/2 in.)\r\noverall (velvet strip): 5.1 x 41.6 cm (2 x 16 3/8 in.)\r\noverall (enamel): 1.3 x 1.3 cm (1/2 x 1/2 in.)' +p172965 +sg25267 +g27 +sg25275 +S'\nrepouss? silver, gilded, and translucent enamel, attached to a strip of velvet' +p172966 +sg25268 +S'Costume Ornament with Profile Portrait' +p172967 +sg25270 +S'North Italian 14th Century' +p172968 +sa(dp172969 +g25273 +S'overall (disk diameter): 3.8 cm (1 1/2 in.)\r\noverall (velvet strip): 5.1 x 41.6 cm (2 x 16 3/8 in.)\r\noverall (enamel): 1.3 x 1.3 cm (1/2 x 1/2 in.)' +p172970 +sg25267 +g27 +sg25275 +S'\nrepouss? silver, gilded, and translucent enamel, attached to a strip of velvet' +p172971 +sg25268 +S'Costume Ornament with Profile Portrait' +p172972 +sg25270 +S'North Italian 14th Century' +p172973 +sa(dp172974 +g25268 +S'La Muse Accoud\xc3\xa9e' +p172975 +sg25270 +S'Albert Besnard' +p172976 +sg25273 +S'etching' +p172977 +sg25275 +S'1884' +p172978 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a0009048.jpg' +p172979 +sg25267 +g27 +sa(dp172980 +g25273 +S'overall (disk diameter): 4.1 cm (1 5/8 in.)\r\noverall (velvet strip): 5.1 x 41.6 cm (2 x 16 3/8 in.)\r\noverall (enamel): 1.4 x 1.4 cm (9/16 x 9/16 in.)' +p172981 +sg25267 +g27 +sg25275 +S'\nrepouss? silver, gilded, and translucent enamel, attached to a strip of velvet' +p172982 +sg25268 +S'Costume Ornament with Profile Portrait' +p172983 +sg25270 +S'North Italian 14th Century' +p172984 +sa(dp172985 +g25273 +S'overall (disk diameter): 3.9 cm (1 9/16 in.)\r\noverall (velvet strip): 5.1 x 41.6 cm (2 x 16 3/8 in.)\r\noverall (enamel diameter): 1.1 cm (7/16 in.)' +p172986 +sg25267 +g27 +sg25275 +S'\nrepouss? silver, gilded, and translucent enamel, attached to a strip of velvet' +p172987 +sg25268 +S'Costume Ornament with Profile Portrait' +p172988 +sg25270 +S'North Italian 14th Century' +p172989 +sa(dp172990 +g25273 +S'overall (disk diameter): 3.9 cm (1 9/16 in.)\r\noverall (velvet strip): 5.1 x 41.6 cm (2 x 16 3/8 in.)\r\noverall (enamel): 1.3 x 1.3 cm (1/2 x 1/2 in.)' +p172991 +sg25267 +g27 +sg25275 +S'\nrepouss? silver, gilded, and translucent enamel, attached to a strip of velvet' +p172992 +sg25268 +S'Costume Ornament with Profile Portrait' +p172993 +sg25270 +S'North Italian 14th Century' +p172994 +sa(dp172995 +g25273 +S'overall (disk diameter): 3.9 cm (1 9/16 in.)\r\noverall (velvet strip): 5.1 x 41.6 cm (2 x 16 3/8 in.)\r\noverall (enamel): 1.3 x 1.3 cm (1/2 x 1/2 in.)' +p172996 +sg25267 +g27 +sg25275 +S'\nrepouss? silver, gilded, and translucent enamel, attached to a strip of velvet' +p172997 +sg25268 +S'Costume Ornament with Profile Portrait' +p172998 +sg25270 +S'North Italian 14th Century' +p172999 +sa(dp173000 +g25273 +S'overall (disk diameter): 4 cm (1 9/16 in.)\r\noverall (velvet strip): 5.1 x 41.6 cm (2 x 16 3/8 in.)\r\noverall (enamel): 1.3 x 1.3 cm (1/2 x 1/2 in.)' +p173001 +sg25267 +g27 +sg25275 +S'\nrepouss? silver, gilded, and translucent enamel, attached to a strip of velvet' +p173002 +sg25268 +S'Costume Ornament with Profile Portrait' +p173003 +sg25270 +S'North Italian 14th Century' +p173004 +sa(dp173005 +g25273 +g27 +sg25267 +g27 +sg25275 +S'(artist)' +p173006 +sg25268 +S'Silver and Enamel Chest' +p173007 +sg25270 +S'Artist Information (' +p173008 +sa(dp173009 +g25268 +S'Pax with a Miniature of the Nativity' +p173010 +sg25270 +S'Artist Information (' +p173011 +sg25273 +S'Italian, 15th century' +p173012 +sg25275 +S'(artist)' +p173013 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000510.jpg' +p173014 +sg25267 +g27 +sa(dp173015 +g25268 +S'Lucy Tappan Bowen (Mrs. Henry C. Bowen)' +p173016 +sg25270 +S'Francis Bicknell Carpenter' +p173017 +sg25273 +S'oil on canvas' +p173018 +sg25275 +S'1859' +p173019 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000038.jpg' +p173020 +sg25267 +g27 +sa(dp173021 +g25273 +S'(artist after)' +p173022 +sg25267 +g27 +sg25275 +S'\n' +p173023 +sg25268 +S'The Copley Family' +p173024 +sg25270 +S'Artist Information (' +p173025 +sa(dp173026 +g25268 +S'Wildflowers' +p173027 +sg25270 +S'Odilon Redon' +p173028 +sg25273 +S'pastel on brown paper' +p173029 +sg25275 +S'c. 1905' +p173030 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00021/a0002187.jpg' +p173031 +sg25267 +g27 +sa(dp173032 +g25268 +S'Kneeling Angel' +p173033 +sg25270 +S'Artist Information (' +p173034 +sg25273 +S'Italian, c. 1447 - 1522' +p173035 +sg25275 +S'(related artist)' +p173036 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d6b.jpg' +p173037 +sg25267 +g27 +sa(dp173038 +g25268 +S'Cardinal Mercier' +p173039 +sg25270 +S'Albert Besnard' +p173040 +sg25273 +S'etching' +p173041 +sg25275 +S'1916' +p173042 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a0009088.jpg' +p173043 +sg25267 +g27 +sa(dp173044 +g25268 +S'Symbols of Bacchus as God of Wine and the Theater' +p173045 +sg25270 +S'Roman 3rd Century' +p173046 +sg25273 +S'overall: 178.4 x 254.7 cm (70 1/4 x 100 1/4 in.)' +p173047 +sg25275 +S'\nmosaic, marble, and glass' +p173048 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f98.jpg' +p173049 +sg25267 +g27 +sa(dp173050 +g25268 +S'Pansies' +p173051 +sg25270 +S'Odilon Redon' +p173052 +sg25273 +S'pastel on brown paper' +p173053 +sg25275 +S'c. 1905' +p173054 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00021/a0002188.jpg' +p173055 +sg25267 +g27 +sa(dp173056 +g25268 +S'Harriet Lancashire White and Her Children' +p173057 +sg25270 +S'Lydia Field Emmet' +p173058 +sg25273 +S'oil on canvas' +p173059 +sg25275 +S'1922' +p173060 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000ab.jpg' +p173061 +sg25267 +g27 +sa(dp173062 +g25268 +S'Young Girl Reading' +p173063 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p173064 +sg25273 +S'oil on canvas' +p173065 +sg25275 +S'c. 1770' +p173066 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d6a.jpg' +p173067 +sg25267 +S"Perhaps more than the work of his two teachers, Boucher and Chardin, Jean-Honoré Fragonard's bravura handling of brushwork and color embodies 18th-century painting aesthetics. In \n As in Chardin's \n " +p173068 +sa(dp173069 +g25268 +S'The Small Shopkeeper (Le petit propri\xc3\xa9taire)' +p173070 +sg25270 +S'Artist Information (' +p173071 +sg25273 +S'French, 1808 - 1879' +p173072 +sg25275 +S'(related artist)' +p173073 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a0005416.jpg' +p173074 +sg25267 +g27 +sa(dp173075 +g25268 +S'The Visitor (Le visiteur)' +p173076 +sg25270 +S'Artist Information (' +p173077 +sg25273 +S'French, 1808 - 1879' +p173078 +sg25275 +S'(related artist)' +p173079 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a0005417.jpg' +p173080 +sg25267 +g27 +sa(dp173081 +g25268 +S'Christ in Majesty [recto]' +p173082 +sg25270 +S'French 12th Century' +p173083 +sg25273 +S'overall: 17.7 x 12.3 cm (6 15/16 x 4 13/16 in.)' +p173084 +sg25275 +S'\nminiature on vellum' +p173085 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f59.jpg' +p173086 +sg25267 +g27 +sa(dp173087 +g25268 +S'The Crucifixion [verso]' +p173088 +sg25270 +S'French 12th Century' +p173089 +sg25273 +S'overall: 17.7 x 12.3 cm (6 15/16 x 4 13/16 in.)' +p173090 +sg25275 +S'\nminiature on vellum' +p173091 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f2b.jpg' +p173092 +sg25267 +g27 +sa(dp173093 +g25273 +S'overall: 19.4 x 13.3 cm (7 5/8 x 5 1/4 in.)' +p173094 +sg25267 +g27 +sg25275 +S'\nminiature on vellum' +p173095 +sg25268 +S'Pentecost' +p173096 +sg25270 +S'German 13th Century' +p173097 +sa(dp173098 +g25268 +S'The Marriage; the Kiss of the Bride (initial P); the Bride Abandoned (initial D)' +p173099 +sg25270 +S'Niccol\xc3\xb2 di Giacomo da Bologna' +p173100 +sg25273 +S', 1350s' +p173101 +sg25275 +S'\n' +p173102 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00026/a0002609.jpg' +p173103 +sg25267 +g27 +sa(dp173104 +g25268 +S'Self-Portrait' +p173105 +sg25270 +S'Albert Besnard' +p173106 +sg25273 +S'etching and drypoint' +p173107 +sg25275 +S'1919' +p173108 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a0009791.jpg' +p173109 +sg25267 +g27 +sa(dp173110 +g25268 +S'Allegory of Vanity (Death Surprising a Woman)' +p173111 +sg25270 +S'Italian 16th Century' +p173112 +sg25273 +S'sheet (trimmed to plate mark): 35.9 x 25.2 cm (14 1/8 x 9 15/16 in.)' +p173113 +sg25275 +S'\nengraving' +p173114 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c794.jpg' +p173115 +sg25267 +g27 +sa(dp173116 +g25268 +S'White Eagle and Crown of Poland' +p173117 +sg25270 +S'Polish 15th Century' +p173118 +sg25273 +S'Schreiber, Vol. IX, no. 2029, State m' +p173119 +sg25275 +S'\nwoodcut on gray paper' +p173120 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000de/a000dec5.jpg' +p173121 +sg25267 +g27 +sa(dp173122 +g25268 +S'Christian with the Shield of Faith, Taking Leave of His Companions' +p173123 +sg25270 +S'William Blake' +p173124 +sg25273 +S'graphite, pen and ink, and watercolor' +p173125 +sg25275 +S'1824-1827' +p173126 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00022/a00022c0.jpg' +p173127 +sg25267 +g27 +sa(dp173128 +g25268 +S'Title Page for "Bizzarie di varie Figure"' +p173129 +sg25270 +S'Giovanni Battista Bracelli' +p173130 +sg25273 +S'etching' +p173131 +sg25275 +S'1624' +p173132 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c92d.jpg' +p173133 +sg25267 +g27 +sa(dp173134 +g25268 +S'Dedication to Don Pietro Medici from "Bizzarie di varie Figure"' +p173135 +sg25270 +S'Giovanni Battista Bracelli' +p173136 +sg25273 +S'etching' +p173137 +sg25275 +S'1624' +p173138 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c92f.jpg' +p173139 +sg25267 +g27 +sa(dp173140 +g25268 +S'From "Bizzarie di varie Figure"' +p173141 +sg25270 +S'Giovanni Battista Bracelli' +p173142 +sg25273 +S'etching' +p173143 +sg25275 +S'1624' +p173144 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c92c.jpg' +p173145 +sg25267 +g27 +sa(dp173146 +g25268 +S'From "Bizzarie di varie Figure"' +p173147 +sg25270 +S'Giovanni Battista Bracelli' +p173148 +sg25273 +S'etching' +p173149 +sg25275 +S'1624' +p173150 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c92e.jpg' +p173151 +sg25267 +g27 +sa(dp173152 +g25268 +S'From "Bizzarie di varie Figure"' +p173153 +sg25270 +S'Giovanni Battista Bracelli' +p173154 +sg25273 +S'etching' +p173155 +sg25275 +S'1624' +p173156 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c930.jpg' +p173157 +sg25267 +g27 +sa(dp173158 +g25268 +S'From "Bizzarie di varie Figure"' +p173159 +sg25270 +S'Giovanni Battista Bracelli' +p173160 +sg25273 +S'etching' +p173161 +sg25275 +S'1624' +p173162 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c931.jpg' +p173163 +sg25267 +g27 +sa(dp173164 +g25268 +S'From "Bizzarie di varie Figure"' +p173165 +sg25270 +S'Giovanni Battista Bracelli' +p173166 +sg25273 +S'etching' +p173167 +sg25275 +S'1624' +p173168 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c937.jpg' +p173169 +sg25267 +g27 +sa(dp173170 +g25268 +S'A Family (Une famille)' +p173171 +sg25270 +S'Albert Besnard' +p173172 +sg25273 +S'etching' +p173173 +sg25275 +S'1890' +p173174 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000977f.jpg' +p173175 +sg25267 +g27 +sa(dp173176 +g25268 +S'From "Bizzarie di varie Figure"' +p173177 +sg25270 +S'Giovanni Battista Bracelli' +p173178 +sg25273 +S'etching' +p173179 +sg25275 +S'1624' +p173180 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c939.jpg' +p173181 +sg25267 +g27 +sa(dp173182 +g25268 +S'From "Bizzarie di varie Figure"' +p173183 +sg25270 +S'Giovanni Battista Bracelli' +p173184 +sg25273 +S'etching' +p173185 +sg25275 +S'1624' +p173186 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c938.jpg' +p173187 +sg25267 +g27 +sa(dp173188 +g25268 +S'From "Bizzarie di varie Figure"' +p173189 +sg25270 +S'Giovanni Battista Bracelli' +p173190 +sg25273 +S'etching' +p173191 +sg25275 +S'1624' +p173192 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c933.jpg' +p173193 +sg25267 +g27 +sa(dp173194 +g25268 +S'From "Bizzarie di varie Figure"' +p173195 +sg25270 +S'Giovanni Battista Bracelli' +p173196 +sg25273 +S'etching' +p173197 +sg25275 +S'1624' +p173198 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c93c.jpg' +p173199 +sg25267 +g27 +sa(dp173200 +g25268 +S'From "Bizzarie di varie Figure"' +p173201 +sg25270 +S'Giovanni Battista Bracelli' +p173202 +sg25273 +S'etching' +p173203 +sg25275 +S'1624' +p173204 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c93b.jpg' +p173205 +sg25267 +g27 +sa(dp173206 +g25268 +S'From "Bizzarie di varie Figure"' +p173207 +sg25270 +S'Giovanni Battista Bracelli' +p173208 +sg25273 +S'etching' +p173209 +sg25275 +S'1624' +p173210 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c93d.jpg' +p173211 +sg25267 +g27 +sa(dp173212 +g25268 +S'From "Bizzarie di varie Figure"' +p173213 +sg25270 +S'Giovanni Battista Bracelli' +p173214 +sg25273 +S'etching' +p173215 +sg25275 +S'1624' +p173216 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c93a.jpg' +p173217 +sg25267 +g27 +sa(dp173218 +g25268 +S'From "Bizzarie di varie Figure"' +p173219 +sg25270 +S'Giovanni Battista Bracelli' +p173220 +sg25273 +S'etching' +p173221 +sg25275 +S'1624' +p173222 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c932.jpg' +p173223 +sg25267 +g27 +sa(dp173224 +g25268 +S'From "Bizzarie di varie Figure"' +p173225 +sg25270 +S'Giovanni Battista Bracelli' +p173226 +sg25273 +S'etching' +p173227 +sg25275 +S'1624' +p173228 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c934.jpg' +p173229 +sg25267 +g27 +sa(dp173230 +g25268 +S'From "Bizzarie di varie Figure"' +p173231 +sg25270 +S'Giovanni Battista Bracelli' +p173232 +sg25273 +S'etching' +p173233 +sg25275 +S'1624' +p173234 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c935.jpg' +p173235 +sg25267 +g27 +sa(dp173236 +g25268 +S'Saint Mark' +p173237 +sg25270 +S'Jodocus Bickart' +p173238 +sg25273 +S'mezzotint' +p173239 +sg25275 +S'unknown date\n' +p173240 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2c2.jpg' +p173241 +sg25267 +g27 +sa(dp173242 +g25268 +S'From "Bizzarie di varie Figure"' +p173243 +sg25270 +S'Giovanni Battista Bracelli' +p173244 +sg25273 +S'etching' +p173245 +sg25275 +S'1624' +p173246 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c936.jpg' +p173247 +sg25267 +g27 +sa(dp173248 +g25268 +S'From "Bizzarie di varie Figure"' +p173249 +sg25270 +S'Giovanni Battista Bracelli' +p173250 +sg25273 +S'etching' +p173251 +sg25275 +S'1624' +p173252 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c940.jpg' +p173253 +sg25267 +g27 +sa(dp173254 +g25268 +S'From "Bizzarie di varie Figure"' +p173255 +sg25270 +S'Giovanni Battista Bracelli' +p173256 +sg25273 +S'etching' +p173257 +sg25275 +S'1624' +p173258 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c93e.jpg' +p173259 +sg25267 +g27 +sa(dp173260 +g25268 +S'From "Bizzarie di varie Figure"' +p173261 +sg25270 +S'Giovanni Battista Bracelli' +p173262 +sg25273 +S'etching' +p173263 +sg25275 +S'1624' +p173264 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c949.jpg' +p173265 +sg25267 +g27 +sa(dp173266 +g25268 +S'From "Bizzarie di varie Figure"' +p173267 +sg25270 +S'Giovanni Battista Bracelli' +p173268 +sg25273 +S'etching' +p173269 +sg25275 +S'1624' +p173270 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c93f.jpg' +p173271 +sg25267 +g27 +sa(dp173272 +g25268 +S'From "Bizzarie di varie Figure"' +p173273 +sg25270 +S'Giovanni Battista Bracelli' +p173274 +sg25273 +S'etching' +p173275 +sg25275 +S'1624' +p173276 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c942.jpg' +p173277 +sg25267 +g27 +sa(dp173278 +g25268 +S'From "Bizzarie di varie Figure"' +p173279 +sg25270 +S'Giovanni Battista Bracelli' +p173280 +sg25273 +S'etching' +p173281 +sg25275 +S'1624' +p173282 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c948.jpg' +p173283 +sg25267 +g27 +sa(dp173284 +g25268 +S'From "Bizzarie di varie Figure"' +p173285 +sg25270 +S'Giovanni Battista Bracelli' +p173286 +sg25273 +S'etching' +p173287 +sg25275 +S'1624' +p173288 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c946.jpg' +p173289 +sg25267 +g27 +sa(dp173290 +g25268 +S'From "Bizzarie di varie Figure"' +p173291 +sg25270 +S'Giovanni Battista Bracelli' +p173292 +sg25273 +S'etching' +p173293 +sg25275 +S'1624' +p173294 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c947.jpg' +p173295 +sg25267 +g27 +sa(dp173296 +g25268 +S'From "Bizzarie di varie Figure"' +p173297 +sg25270 +S'Giovanni Battista Bracelli' +p173298 +sg25273 +S'etching' +p173299 +sg25275 +S'1624' +p173300 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c945.jpg' +p173301 +sg25267 +g27 +sa(dp173302 +g25268 +S'Ornament' +p173303 +sg25270 +S'Mathias Beutler' +p173304 +sg25273 +S'engraving' +p173305 +sg25275 +S'unknown date\n' +p173306 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8ee.jpg' +p173307 +sg25267 +g27 +sa(dp173308 +g25268 +S'From "Bizzarie di varie Figure"' +p173309 +sg25270 +S'Giovanni Battista Bracelli' +p173310 +sg25273 +S'etching' +p173311 +sg25275 +S'1624' +p173312 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c941.jpg' +p173313 +sg25267 +g27 +sa(dp173314 +g25268 +S'From "Bizzarie di varie Figure"' +p173315 +sg25270 +S'Giovanni Battista Bracelli' +p173316 +sg25273 +S'etching' +p173317 +sg25275 +S'1624' +p173318 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c943.jpg' +p173319 +sg25267 +g27 +sa(dp173320 +g25268 +S'From "Bizzarie di varie Figure"' +p173321 +sg25270 +S'Giovanni Battista Bracelli' +p173322 +sg25273 +S'etching' +p173323 +sg25275 +S'1624' +p173324 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c944.jpg' +p173325 +sg25267 +g27 +sa(dp173326 +g25268 +S'From "Bizzarie di varie Figure"' +p173327 +sg25270 +S'Giovanni Battista Bracelli' +p173328 +sg25273 +S'etching' +p173329 +sg25275 +S'1624' +p173330 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c94a.jpg' +p173331 +sg25267 +g27 +sa(dp173332 +g25268 +S'From "Bizzarie di varie Figure"' +p173333 +sg25270 +S'Giovanni Battista Bracelli' +p173334 +sg25273 +S'etching' +p173335 +sg25275 +S'1624' +p173336 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c94b.jpg' +p173337 +sg25267 +g27 +sa(dp173338 +g25268 +S'From "Bizzarie di varie Figure"' +p173339 +sg25270 +S'Giovanni Battista Bracelli' +p173340 +sg25273 +S'etching' +p173341 +sg25275 +S'1624' +p173342 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c953.jpg' +p173343 +sg25267 +g27 +sa(dp173344 +g25268 +S'From "Bizzarie di varie Figure"' +p173345 +sg25270 +S'Giovanni Battista Bracelli' +p173346 +sg25273 +S'etching' +p173347 +sg25275 +S'1624' +p173348 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c94c.jpg' +p173349 +sg25267 +g27 +sa(dp173350 +g25268 +S'From "Bizzarie di varie Figure"' +p173351 +sg25270 +S'Giovanni Battista Bracelli' +p173352 +sg25273 +S'etching' +p173353 +sg25275 +S'1624' +p173354 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c94e.jpg' +p173355 +sg25267 +g27 +sa(dp173356 +g25268 +S'From "Bizzarie di varie Figure"' +p173357 +sg25270 +S'Giovanni Battista Bracelli' +p173358 +sg25273 +S'etching' +p173359 +sg25275 +S'1624' +p173360 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c954.jpg' +p173361 +sg25267 +g27 +sa(dp173362 +g25268 +S'From "Bizzarie di varie Figure"' +p173363 +sg25270 +S'Giovanni Battista Bracelli' +p173364 +sg25273 +S'etching' +p173365 +sg25275 +S'1624' +p173366 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c950.jpg' +p173367 +sg25267 +g27 +sa(dp173368 +g25268 +S'Ornament' +p173369 +sg25270 +S'Mathias Beutler' +p173370 +sg25273 +S'engraving' +p173371 +sg25275 +S'unknown date\n' +p173372 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8f0.jpg' +p173373 +sg25267 +g27 +sa(dp173374 +g25268 +S'From "Bizzarie di varie Figure"' +p173375 +sg25270 +S'Giovanni Battista Bracelli' +p173376 +sg25273 +S'etching' +p173377 +sg25275 +S'1624' +p173378 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c955.jpg' +p173379 +sg25267 +g27 +sa(dp173380 +g25268 +S'From "Bizzarie di varie Figure"' +p173381 +sg25270 +S'Giovanni Battista Bracelli' +p173382 +sg25273 +S'etching' +p173383 +sg25275 +S'1624' +p173384 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c951.jpg' +p173385 +sg25267 +g27 +sa(dp173386 +g25268 +S'From "Bizzarie di varie Figure"' +p173387 +sg25270 +S'Giovanni Battista Bracelli' +p173388 +sg25273 +S'etching' +p173389 +sg25275 +S'1624' +p173390 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c94d.jpg' +p173391 +sg25267 +g27 +sa(dp173392 +g25268 +S'From "Bizzarie di varie Figure"' +p173393 +sg25270 +S'Giovanni Battista Bracelli' +p173394 +sg25273 +S'etching' +p173395 +sg25275 +S'1624' +p173396 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c952.jpg' +p173397 +sg25267 +g27 +sa(dp173398 +g25268 +S'From "Bizzarie di varie Figure"' +p173399 +sg25270 +S'Giovanni Battista Bracelli' +p173400 +sg25273 +S'etching' +p173401 +sg25275 +S'1624' +p173402 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c94f.jpg' +p173403 +sg25267 +g27 +sa(dp173404 +g25268 +S'Study of Four Horsemen' +p173405 +sg25270 +S'Jacques Callot' +p173406 +sg25273 +S'red chalk on laid paper' +p173407 +sg25275 +S'1628 or before' +p173408 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a000666e.jpg' +p173409 +sg25267 +g27 +sa(dp173410 +g25268 +S'Landscape' +p173411 +sg25270 +S'Artist Information (' +p173412 +sg25273 +S'French, 1604/1605 - 1682' +p173413 +sg25275 +S'(related artist)' +p173414 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071fe.jpg' +p173415 +sg25267 +g27 +sa(dp173416 +g25268 +S'Ferdinand I' +p173417 +sg25270 +S'Augustin Hirschvogel' +p173418 +sg25273 +S'etching' +p173419 +sg25275 +S'1546' +p173420 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac27.jpg' +p173421 +sg25267 +g27 +sa(dp173422 +g25273 +S'British, 1774 - 1816 or after' +p173423 +sg25267 +g27 +sg25275 +S'(publisher)' +p173424 +sg25268 +S"Orme's Collection of British Field Sports" +p173425 +sg25270 +S'Artist Information (' +p173426 +sa(dp173427 +g25273 +S'(artist)' +p173428 +sg25267 +g27 +sg25275 +S'\n' +p173429 +sg25268 +S'Title Page' +p173430 +sg25270 +S'Artist Information (' +p173431 +sa(dp173432 +g25268 +S'Ornament' +p173433 +sg25270 +S'Mathias Beutler' +p173434 +sg25273 +S'engraving' +p173435 +sg25275 +S'unknown date\n' +p173436 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8f1.jpg' +p173437 +sg25267 +g27 +sa(dp173438 +g25273 +S'(artist after)' +p173439 +sg25267 +g27 +sg25275 +S'\n' +p173440 +sg25268 +S'List of Plates' +p173441 +sg25270 +S'Artist Information (' +p173442 +sa(dp173443 +g25273 +S'(artist)' +p173444 +sg25267 +g27 +sg25275 +S'\n' +p173445 +sg25268 +S'Shooters Going Out in the Morning' +p173446 +sg25270 +S'Artist Information (' +p173447 +sa(dp173448 +g25273 +S'(artist)' +p173449 +sg25267 +g27 +sg25275 +S'\n' +p173450 +sg25268 +S'Horse Racing' +p173451 +sg25270 +S'Artist Information (' +p173452 +sa(dp173453 +g25273 +S'(artist)' +p173454 +sg25267 +g27 +sg25275 +S'\n' +p173455 +sg25268 +S'Fox Hunting I' +p173456 +sg25270 +S'Artist Information (' +p173457 +sa(dp173458 +g25273 +S'(artist)' +p173459 +sg25267 +g27 +sg25275 +S'\n' +p173460 +sg25268 +S'Fox Hunting II' +p173461 +sg25270 +S'Artist Information (' +p173462 +sa(dp173463 +g25273 +S'(artist)' +p173464 +sg25267 +g27 +sg25275 +S'\n' +p173465 +sg25268 +S'Stag Hunting I' +p173466 +sg25270 +S'Artist Information (' +p173467 +sa(dp173468 +g25273 +S'(artist)' +p173469 +sg25267 +g27 +sg25275 +S'\n' +p173470 +sg25268 +S'Stag Hunting II' +p173471 +sg25270 +S'Artist Information (' +p173472 +sa(dp173473 +g25273 +S'(artist)' +p173474 +sg25267 +g27 +sg25275 +S'\n' +p173475 +sg25268 +S'Hare Hunting I' +p173476 +sg25270 +S'Artist Information (' +p173477 +sa(dp173478 +g25273 +S'(artist)' +p173479 +sg25267 +g27 +sg25275 +S'\n' +p173480 +sg25268 +S'Hare Hunting II' +p173481 +sg25270 +S'Artist Information (' +p173482 +sa(dp173483 +g25273 +S'(artist)' +p173484 +sg25267 +g27 +sg25275 +S'\n' +p173485 +sg25268 +S'Coursing' +p173486 +sg25270 +S'Artist Information (' +p173487 +sa(dp173488 +g25268 +S'Ornament' +p173489 +sg25270 +S'Mathias Beutler' +p173490 +sg25273 +S'engraving' +p173491 +sg25275 +S'unknown date\n' +p173492 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8ef.jpg' +p173493 +sg25267 +g27 +sa(dp173494 +g25273 +S'(artist)' +p173495 +sg25267 +g27 +sg25275 +S'\n' +p173496 +sg25268 +S'Woodcock Shooting' +p173497 +sg25270 +S'Artist Information (' +p173498 +sa(dp173499 +g25273 +S'(artist)' +p173500 +sg25267 +g27 +sg25275 +S'\n' +p173501 +sg25268 +S'Pheasant Shooting I' +p173502 +sg25270 +S'Artist Information (' +p173503 +sa(dp173504 +g25273 +S'(artist)' +p173505 +sg25267 +g27 +sg25275 +S'\n' +p173506 +sg25268 +S'Pheasant Shooting II' +p173507 +sg25270 +S'Artist Information (' +p173508 +sa(dp173509 +g25273 +S'(artist)' +p173510 +sg25267 +g27 +sg25275 +S'\n' +p173511 +sg25268 +S'Partridge Shooting I' +p173512 +sg25270 +S'Artist Information (' +p173513 +sa(dp173514 +g25273 +S'(artist)' +p173515 +sg25267 +g27 +sg25275 +S'\n' +p173516 +sg25268 +S'Partridge Shooting II' +p173517 +sg25270 +S'Artist Information (' +p173518 +sa(dp173519 +g25273 +S'(artist)' +p173520 +sg25267 +g27 +sg25275 +S'\n' +p173521 +sg25268 +S'Grouse Shooting' +p173522 +sg25270 +S'Artist Information (' +p173523 +sa(dp173524 +g25273 +S'(artist)' +p173525 +sg25267 +g27 +sg25275 +S'\n' +p173526 +sg25268 +S'Snipe Shooting' +p173527 +sg25270 +S'Artist Information (' +p173528 +sa(dp173529 +g25273 +S'(artist)' +p173530 +sg25267 +g27 +sg25275 +S'\n' +p173531 +sg25268 +S'Rabbit Shooting' +p173532 +sg25270 +S'Artist Information (' +p173533 +sa(dp173534 +g25273 +S'(artist)' +p173535 +sg25267 +g27 +sg25275 +S'\n' +p173536 +sg25268 +S'Duck Shooting' +p173537 +sg25270 +S'Artist Information (' +p173538 +sa(dp173539 +g25273 +S'(artist)' +p173540 +sg25267 +g27 +sg25275 +S'\n' +p173541 +sg25268 +S'Hare Shooting' +p173542 +sg25270 +S'Artist Information (' +p173543 +sa(dp173544 +g25268 +S'Ornament' +p173545 +sg25270 +S'Mathias Beutler' +p173546 +sg25273 +S'engraving' +p173547 +sg25275 +S'unknown date\n' +p173548 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8f2.jpg' +p173549 +sg25267 +g27 +sa(dp173550 +g25273 +S'(artist)' +p173551 +sg25267 +g27 +sg25275 +S'\n' +p173552 +sg25268 +S'Fox Shooting III' +p173553 +sg25270 +S'Artist Information (' +p173554 +sa(dp173555 +g25268 +S'First Knot' +p173556 +sg25270 +S'Artist Information (' +p173557 +sg25273 +S'Italian, 1452 - 1519' +p173558 +sg25275 +S'(artist after)' +p173559 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c8c.jpg' +p173560 +sg25267 +g27 +sa(dp173561 +g25268 +S'Fourth Knot' +p173562 +sg25270 +S'Artist Information (' +p173563 +sg25273 +S'Italian, 1452 - 1519' +p173564 +sg25275 +S'(artist after)' +p173565 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005ecf.jpg' +p173566 +sg25267 +g27 +sa(dp173567 +g25268 +S'Sixth Knot' +p173568 +sg25270 +S'Artist Information (' +p173569 +sg25273 +S'Italian, 1452 - 1519' +p173570 +sg25275 +S'(artist after)' +p173571 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005ed0.jpg' +p173572 +sg25267 +g27 +sa(dp173573 +g25268 +S'The Knight of Men' +p173574 +sg25270 +S'Master E.S.' +p173575 +sg25273 +S'engraving' +p173576 +sg25275 +S'1463' +p173577 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3bf.jpg' +p173578 +sg25267 +g27 +sa(dp173579 +g25268 +S'Christ as Saviour' +p173580 +sg25270 +S'Master E.S.' +p173581 +sg25273 +S'engraving' +p173582 +sg25275 +S'c. 1467' +p173583 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3a7.jpg' +p173584 +sg25267 +g27 +sa(dp173585 +g25268 +S'The Madonna and Child in a Garden' +p173586 +sg25270 +S'Artist Information (' +p173587 +sg25273 +S'German, active c. 1450 - active 1467' +p173588 +sg25275 +S'(related artist)' +p173589 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3a6.jpg' +p173590 +sg25267 +g27 +sa(dp173591 +g25268 +S'The Adoration of the Shepherds' +p173592 +sg25270 +S'Artist Information (' +p173593 +sg25273 +S'(artist after)' +p173594 +sg25275 +S'\n' +p173595 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c83e.jpg' +p173596 +sg25267 +g27 +sa(dp173597 +g25268 +S'Banquet in the Park of a French Castle' +p173598 +sg25270 +S'Master HS' +p173599 +sg25273 +S'etching' +p173600 +sg25275 +S'c. 1550' +p173601 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008424.jpg' +p173602 +sg25267 +g27 +sa(dp173603 +g25268 +S"Maniere d'exposer les nobles apres leur mort" +p173604 +sg25270 +S'Gabriel de Saint-Aubin' +p173605 +sg25273 +S', unknown date' +p173606 +sg25275 +S'\n' +p173607 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e36.jpg' +p173608 +sg25267 +g27 +sa(dp173609 +g25273 +S'etching' +p173610 +sg25267 +g27 +sg25275 +S'1936' +p173611 +sg25268 +S'Wild Geese' +p173612 +sg25270 +S'Richard Evett Bishop' +p173613 +sa(dp173614 +g25268 +S'Rendezvous in the Palais Royal' +p173615 +sg25270 +S'Gabriel de Saint-Aubin' +p173616 +sg25273 +S', 1774' +p173617 +sg25275 +S'\n' +p173618 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037ef.jpg' +p173619 +sg25267 +g27 +sa(dp173620 +g25268 +S'Christ Appearing to Mary Magdalene' +p173621 +sg25270 +S'Martin Schongauer' +p173622 +sg25273 +S'engraving on laid paper' +p173623 +sg25275 +S'c. 1480/1490' +p173624 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a47f.jpg' +p173625 +sg25267 +g27 +sa(dp173626 +g25273 +S'bronze' +p173627 +sg25267 +g27 +sg25275 +S'unknown date\n' +p173628 +sg25268 +S'Rodolfo Siviero [obverse]' +p173629 +sg25270 +S'B. Catarzi' +p173630 +sa(dp173631 +g25273 +S'bronze' +p173632 +sg25267 +g27 +sg25275 +S'unknown date\n' +p173633 +sg25268 +S'The Three Graces [reverse]' +p173634 +sg25270 +S'Antonio Berti' +p173635 +sa(dp173636 +g25273 +S'Gift of Mr. August Mencken' +p173637 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173638 +sg25268 +S'Fall of Petersburg' +p173639 +sg25270 +S'American 19th Century' +p173640 +sa(dp173641 +g25273 +S'Gift of Mr. August Mencken' +p173642 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173643 +sg25268 +S'Siege of Vicksburg' +p173644 +sg25270 +S'American 19th Century' +p173645 +sa(dp173646 +g25273 +S'Gift of Mr. August Mencken' +p173647 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173648 +sg25268 +S'Fort Pillow Massacre' +p173649 +sg25270 +S'American 19th Century' +p173650 +sa(dp173651 +g25273 +S'Gift of Mr. August Mencken' +p173652 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173653 +sg25268 +S'Assault on Fort Sanders' +p173654 +sg25270 +S'American 19th Century' +p173655 +sa(dp173656 +g25273 +S'Gift of Mr. August Mencken' +p173657 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173658 +sg25268 +S'Storming of Fort Wagner' +p173659 +sg25270 +S'American 19th Century' +p173660 +sa(dp173661 +g25273 +S'Gift of Mr. August Mencken' +p173662 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173663 +sg25268 +S'Capture of Fort Fisher' +p173664 +sg25270 +S'American 19th Century' +p173665 +sa(dp173666 +g25268 +S'Portrait of a Young Man (V.H. Reinnier)' +p173667 +sg25270 +S'Jakob Binck' +p173668 +sg25273 +S'engraving' +p173669 +sg25275 +S'unknown date\n' +p173670 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8f3.jpg' +p173671 +sg25267 +g27 +sa(dp173672 +g25273 +S'Gift of Mr. August Mencken' +p173673 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173674 +sg25268 +S'Battle of Stone River' +p173675 +sg25270 +S'American 19th Century' +p173676 +sa(dp173677 +g25273 +S'Gift of Mr. August Mencken' +p173678 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173679 +sg25268 +S'Battle of Five Forks' +p173680 +sg25270 +S'American 19th Century' +p173681 +sa(dp173682 +g25273 +S'Gift of Mr. August Mencken' +p173683 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173684 +sg25268 +S'Battle of Wilsons Creek' +p173685 +sg25270 +S'American 19th Century' +p173686 +sa(dp173687 +g25273 +S'Gift of Mr. August Mencken' +p173688 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173689 +sg25268 +S'Battle of Pea Ridge' +p173690 +sg25270 +S'American 19th Century' +p173691 +sa(dp173692 +g25273 +S'Gift of Mr. August Mencken' +p173693 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173694 +sg25268 +S'Battle of Fort Donaldson' +p173695 +sg25270 +S'American 19th Century' +p173696 +sa(dp173697 +g25273 +S'Gift of Mr. August Mencken' +p173698 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173699 +sg25268 +S'Battle of Franklin' +p173700 +sg25270 +S'American 19th Century' +p173701 +sa(dp173702 +g25273 +S'Gift of Mr. August Mencken' +p173703 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173704 +sg25268 +S'Battle of Corinth' +p173705 +sg25270 +S'American 19th Century' +p173706 +sa(dp173707 +g25273 +S'Gift of Mr. August Mencken' +p173708 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173709 +sg25268 +S'Battle of Cedar Creek' +p173710 +sg25270 +S'American 19th Century' +p173711 +sa(dp173712 +g25273 +S'Gift of Mr. August Mencken' +p173713 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173714 +sg25268 +S'Battle of Kenesaw Mountain' +p173715 +sg25270 +S'American 19th Century' +p173716 +sa(dp173717 +g25273 +S'Gift of Mr. August Mencken' +p173718 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173719 +sg25268 +S'Battle of Monitor and Merrimac' +p173720 +sg25270 +S'American 19th Century' +p173721 +sa(dp173722 +g25268 +S'Youth Sleeping before an Altar' +p173723 +sg25270 +S'Jakob Binck' +p173724 +sg25273 +S'engraving' +p173725 +sg25275 +S'unknown date\n' +p173726 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8f4.jpg' +p173727 +sg25267 +g27 +sa(dp173728 +g25273 +S'Gift of Mr. August Mencken' +p173729 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173730 +sg25268 +S'Battle of Winchester' +p173731 +sg25270 +S'American 19th Century' +p173732 +sa(dp173733 +g25273 +S'Gift of Mr. August Mencken' +p173734 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173735 +sg25268 +S'Battle of Antietam' +p173736 +sg25270 +S'American 19th Century' +p173737 +sa(dp173738 +g25273 +S'Gift of Mr. August Mencken' +p173739 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173740 +sg25268 +S'Battle of Fredericksburg' +p173741 +sg25270 +S'American 19th Century' +p173742 +sa(dp173743 +g25273 +S'Gift of Mr. August Mencken' +p173744 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173745 +sg25268 +S'Battle of Atlanta' +p173746 +sg25270 +S'American 19th Century' +p173747 +sa(dp173748 +g25273 +S'Gift of Mr. August Mencken' +p173749 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173750 +sg25268 +S'Battle of Lookout Mountain' +p173751 +sg25270 +S'American 19th Century' +p173752 +sa(dp173753 +g25273 +S'Gift of Mr. August Mencken' +p173754 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173755 +sg25268 +S'Battle of Missionary Ridge' +p173756 +sg25270 +S'American 19th Century' +p173757 +sa(dp173758 +g25273 +S'Gift of Mr. August Mencken' +p173759 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173760 +sg25268 +S'Battle of Champions Hills' +p173761 +sg25270 +S'American 19th Century' +p173762 +sa(dp173763 +g25273 +S'Gift of Mr. August Mencken' +p173764 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173765 +sg25268 +S'Battle of Williamsburg' +p173766 +sg25270 +S'American 19th Century' +p173767 +sa(dp173768 +g25273 +S'Gift of Mr. August Mencken' +p173769 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173770 +sg25268 +S'Battle of Nashville' +p173771 +sg25270 +S'American 19th Century' +p173772 +sa(dp173773 +g25273 +S'Gift of Mr. August Mencken' +p173774 +sg25267 +g27 +sg25275 +S'\ncolor lithograph' +p173775 +sg25268 +S'Battle of Chatanooga' +p173776 +sg25270 +S'American 19th Century' +p173777 +sa(dp173778 +g25273 +S'etching' +p173779 +sg25267 +g27 +sg25275 +S'1939' +p173780 +sg25268 +S'Jersey Dray Cart' +p173781 +sg25270 +S'Edmund Blampied' +p173782 +sa(dp173783 +g25268 +S'Page from a Book of Hours' +p173784 +sg25270 +S'Unknown 19th Century' +p173785 +sg25273 +S'manuscript page with text and illuminated initials' +p173786 +sg25275 +S'unknown date\n' +p173787 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a0007238.jpg' +p173788 +sg25267 +g27 +sa(dp173789 +g25273 +S'lithograph' +p173790 +sg25267 +g27 +sg25275 +S'unknown date\n' +p173791 +sg25268 +S'At the National Gallery' +p173792 +sg25270 +S'Rick Hall' +p173793 +sa(dp173794 +g25273 +S'brush and black and gray ink on paperboard' +p173795 +sg25267 +g27 +sg25275 +S'unknown date\n' +p173796 +sg25268 +S'Bamboo' +p173797 +sg25270 +S"Li Lin-ts'an" +p173798 +sa(dp173799 +g25273 +S'(author)' +p173800 +sg25267 +g27 +sg25275 +S'\n' +p173801 +sg25268 +S'Reginald Marsh' +p173802 +sg25270 +S'Artist Information (' +p173803 +sa(dp173804 +g25273 +S'engraving with some drypoint' +p173805 +sg25267 +g27 +sg25275 +S'1938' +p173806 +sg25268 +S'Girl with Umbrella' +p173807 +sg25270 +S'Reginald Marsh' +p173808 +sa(dp173809 +g25268 +S'Earl Warren' +p173810 +sg25270 +S'Gardner Cox' +p173811 +sg25273 +S'oil on canvas' +p173812 +sg25275 +S'1963' +p173813 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000006d.jpg' +p173814 +sg25267 +g27 +sa(dp173815 +g25268 +S'Lake Albano, Sunset' +p173816 +sg25270 +S'George Inness' +p173817 +sg25273 +S'oil on canvas' +p173818 +sg25275 +S'c. 1874' +p173819 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000112.jpg' +p173820 +sg25267 +g27 +sa(dp173821 +g25268 +S'Oysters' +p173822 +sg25270 +S'Edouard Manet' +p173823 +sg25273 +S'oil on canvas' +p173824 +sg25275 +S'1862' +p173825 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b2f.jpg' +p173826 +sg25267 +S'Painted in 1862, \n Despite its early date, \n This painting is almost stark in its\r\nsimplicity. At left are six oysters that have\r\nbeen opened and arranged haphazardly on\r\na plate. On the right are a cup, two halves\r\nof a lemon, and a single opened oyster: the upward-turned shell cradles the fleshy\r\nmollusk inside while the other shell, turned\r\ndownward, displays the rough exterior.\r\nLying at an oblique angle near the table\xe2\x80\x99s\r\nedge, a three-pronged fork placed at the\r\ncenter of the picture serves to visually link\r\nboth sides of the composition. Manet\xe2\x80\x99s\r\npalette is equally restrained. The painting\r\nis dominated by subdued colors: the brown\r\nof the wooden table; the cool, dark gray of\r\nthe background; and the various shades of\r\nwhite, beige, and taupe with which Manet\r\ndepicted the oysters and the pottery. To this\r\nhe added touches of more vibrant hues: the\r\ncobalt blue of the plate decoration, delicate\r\nstrokes of pink to suggest the nacreous interior\r\nof the oyster shells, and, of course, the\r\nvivid yellow of the lemon.\n While the subject matter and subdued\r\npalette recall seventeenth-century\r\nDutch antecedents, the influence of the\r\neighteenth-century French artist Jean\r\nSiméon Chardin is also evident. Beginning\r\nin the 1840s, there had been a revival\r\nof interest in Chardin\xe2\x80\x99s oeuvre, especially\r\nin still-life paintings that typically feature\r\nhumble kitchen trappings, spare compositions,\r\nand vibrant paint surfaces. In \n (Text by Kimberly Jones, \n Notes\n \n ' +p173827 +sa(dp173828 +g25268 +S'Street in Venice' +p173829 +sg25270 +S'John Singer Sargent' +p173830 +sg25273 +S'oil on wood' +p173831 +sg25275 +S'1882' +p173832 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000205.jpg' +p173833 +sg25267 +S"Although best known for his fashionable formal portraits,\r\n John Singer Sargent was equally adept at landscapes and\r\n scenes of daily life. His early fame and astonishing facility\r\n with a brush prompted the American expatriate novelist\r\n Henry James, his close friend, to comment on “the slightly\r\n 'uncanny' spectacle of a talent which on the very threshold\r\n of its career has nothing more to learn.”\n Another of Sargent’s friends was the French impressionist\r\n \n The emptiness of the silent street implies that Sargent\r\n depicted \n " +p173834 +sa(dp173835 +g25268 +S'The Beautiful Virgin of Regensburg' +p173836 +sg25270 +S'Albrecht Altdorfer' +p173837 +sg25273 +S'woodcut printed from six blocks in red, green, blue, light orange, brown, and black' +p173838 +sg25275 +S'c. 1519/1520' +p173839 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ef2.jpg' +p173840 +sg25267 +g27 +sa(dp173841 +g25273 +S'etching and drypoint' +p173842 +sg25267 +g27 +sg25275 +S'unknown date\n' +p173843 +sg25268 +S'Street by Night' +p173844 +sg25270 +S'Edmund Blampied' +p173845 +sa(dp173846 +g25268 +S'The Nativity' +p173847 +sg25270 +S'Artist Information (' +p173848 +sg25273 +S'(artist after)' +p173849 +sg25275 +S'\n' +p173850 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a43d.jpg' +p173851 +sg25267 +g27 +sa(dp173852 +g25268 +S'Miss Grace Woodhouse' +p173853 +sg25270 +S'John Singer Sargent' +p173854 +sg25273 +S'oil on canvas' +p173855 +sg25275 +S'1890' +p173856 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000206.jpg' +p173857 +sg25267 +g27 +sa(dp173858 +g25273 +S'plaster' +p173859 +sg25267 +g27 +sg25275 +S'probably 1938' +p173860 +sg25268 +S'Death Mask of Ernst Barlach (?)' +p173861 +sg25270 +S'Bernhard A. B\xc3\xb6hmer' +p173862 +sa(dp173863 +g25273 +S'etching in black on cream wove paper' +p173864 +sg25267 +g27 +sg25275 +S'1897' +p173865 +sg25268 +S'The Storm (Sturm)' +p173866 +sg25270 +S'K\xc3\xa4the Kollwitz' +p173867 +sa(dp173868 +g25268 +S'The Lute Player' +p173869 +sg25270 +S'Orazio Gentileschi' +p173870 +sg25273 +S'oil on canvas' +p173871 +sg25275 +S'c. 1612/1620' +p173872 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000609.jpg' +p173873 +sg25267 +S"Orazio Gentileschi was one of the earliest and most gifted painters to be inspired by the genre scenes of Caravaggio in Rome. Here, he must have had in mind Caravaggio's famous picture on the same theme. Orazio's young woman listens intently to a note as it resonates in the pear–shaped body of the instrument. She may be tuning her lute in anticipation of the concert\r\npromised by the assortment of recorders, a cornetto and violin, and the song books lying open on the table before her.\n The graceful musician and her lute are seen, unexpectedly, from the back, turned three–quarters away from the spectator. Orazio's meticulous attention to detail is such that every surface is described with a precision of focus that gives pleasure to the eye. Dutch painters, famous for their amazingly illusionistic renderings of fabrics, improved their craft by studying\r\nOrazio's works. His gift for conveying the textures of fine cloth is shown off here in the sharp gold of the dress, the dull gleam of the scarlet velvet on the stool, and the matte softness of the dark–green cloth covering the table.\n " +p173874 +sa(dp173875 +g25268 +S'Joris Vezeleer' +p173876 +sg25270 +S'Joos van Cleve' +p173877 +sg25273 +S'oil on panel' +p173878 +sg25275 +S'probably 1518' +p173879 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000492.jpg' +p173880 +sg25267 +S'Joris Vezeleer headed a small Antwerp\r\n company that sold wool, other commodities, and luxury items. He provided\r\n tapestries and gems to such clients as French king Francis I and Mary of\r\n Hungary, the Holy Roman Emperor’s capable regent in the Netherlands. Diamond\r\n cutting, in particular, became an important industry of the Low Countries as\r\n new techniques enabled stone cutters to enhance the light reflected from\r\n gems by faceting them. Jews recently expelled from Portugal settled in\r\n Antwerp in the early 1500s and made it an important center of the diamond\r\n trade, as it continues to be today.\n Vezeleer’s gesture of pulling on a fine leather glove marks him as a\r\n gentleman of means. In her portrait, his wife holds a pink, a flower\r\n associated with fidelity and seen often in wedding portraits. (The\r\n Vezeleers’ grandson was the famous Dutch poet and statesman Constantijn\r\n Huygens [d. 1687]; their great-grandson discovered the rings of Saturn.) In\r\n Joos van Cleve, Vezeleer, who was known as a collector of paintings,\r\n obtained the services of one of the finest artists working in Antwerp in the\r\n early 1500s. His skill with portraiture later led Van Cleve to\r\n Fontainebleau, where he painted Francis I and was exposed to the soft\r\n \n ' +p173881 +sa(dp173882 +g25268 +S'Margaretha Boghe, Wife of Joris Vezeleer' +p173883 +sg25270 +S'Joos van Cleve' +p173884 +sg25273 +S'oil on panel' +p173885 +sg25275 +S'probably 1518' +p173886 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004a2.jpg' +p173887 +sg25267 +g27 +sa(dp173888 +g25268 +S'A Lady Writing' +p173889 +sg25270 +S'Johannes Vermeer' +p173890 +sg25273 +S'oil on canvas' +p173891 +sg25275 +S'c. 1665' +p173892 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e20.jpg' +p173893 +sg25267 +S'\r\n\tAbove all, Vermeer was a painter of light. In his study of optics he undoubtedly used a \n \r\n\tVermeer analyzed the resulting images carefully because they duplicate the selective focus of the human eye. Only objects at a certain distance from the camera or the eye are in sharp focus. This is exactly the optical effect Vermeer has generated here. Precise white highlights glisten from the writing box, pearl earrings, satin hair ribbons, and the chair’s brass tacks—all of which lie equally in the middle distance. The near tablecloth is purposely blurred, and the painting on the far wall is hazy. This is just as they would look to someone concentrating specifically on the woman. Because she directly faces the viewer with an open gaze, the painting may be a portrait.\r\n\n \r\n\tMost of the thirty-five or so paintings that now are thought to be Vermeer’s creations share the same setting, his parents’ home, which he inherited.\r\n\n ' +p173894 +sa(dp173895 +g25273 +S'(artist after)' +p173896 +sg25267 +g27 +sg25275 +S'\n' +p173897 +sg25268 +S'Dr. John Brinton' +p173898 +sg25270 +S'Artist Information (' +p173899 +sa(dp173900 +g25273 +S'oil on canvas' +p173901 +sg25267 +g27 +sg25275 +S'unknown date\n' +p173902 +sg25268 +S'Hampstead Heath' +p173903 +sg25270 +S'Alphonse Legros' +p173904 +sa(dp173905 +g25273 +S'lithograph' +p173906 +sg25267 +g27 +sg25275 +S'unknown date\n' +p173907 +sg25268 +S"L'Apertif" +p173908 +sg25270 +S'Edmund Blampied' +p173909 +sa(dp173910 +g25268 +S'Portrait of a Woman' +p173911 +sg25270 +S'Alphonse Legros' +p173912 +sg25273 +S'oil on canvas' +p173913 +sg25275 +S'1875' +p173914 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005ea0.jpg' +p173915 +sg25267 +g27 +sa(dp173916 +g25268 +S'Nude Model Seated' +p173917 +sg25270 +S'Alphonse Legros' +p173918 +sg25273 +S'metalpoint on bristol board' +p173919 +sg25275 +S'unknown date\n' +p173920 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073ea.jpg' +p173921 +sg25267 +g27 +sa(dp173922 +g25268 +S'Old Man' +p173923 +sg25270 +S'Alphonse Legros' +p173924 +sg25273 +S'metalpoint on bristol board' +p173925 +sg25275 +S'unknown date\n' +p173926 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073eb.jpg' +p173927 +sg25267 +g27 +sa(dp173928 +g25268 +S'Study of Cupid (Head of a Girl)' +p173929 +sg25270 +S'Alphonse Legros' +p173930 +sg25273 +S'metalpoint on prepared paper' +p173931 +sg25275 +S'1904' +p173932 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073e8.jpg' +p173933 +sg25267 +g27 +sa(dp173934 +g25268 +S'E.D. Adams, 3rd plate' +p173935 +sg25270 +S'Alphonse Legros' +p173936 +sg25273 +S'etching?' +p173937 +sg25275 +S'unknown date\n' +p173938 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c69.jpg' +p173939 +sg25267 +g27 +sa(dp173940 +g25268 +S'Beggar with Hat in Hand (Mendiant avec son chapeau a la main)' +p173941 +sg25270 +S'Alphonse Legros' +p173942 +sg25273 +S'etching and drypoint' +p173943 +sg25275 +S'unknown date\n' +p173944 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c27.jpg' +p173945 +sg25267 +g27 +sa(dp173946 +g25268 +S"Corner of a Wood (Coin d'un bois)" +p173947 +sg25270 +S'Alphonse Legros' +p173948 +sg25273 +S'etching' +p173949 +sg25275 +S'unknown date\n' +p173950 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b85.jpg' +p173951 +sg25267 +g27 +sa(dp173952 +g25268 +S'Night Crier (Le crieur de nuit)' +p173953 +sg25270 +S'Alphonse Legros' +p173954 +sg25273 +S'chine colle lithograph' +p173955 +sg25275 +S'unknown date\n' +p173956 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fa2.jpg' +p173957 +sg25267 +g27 +sa(dp173958 +g25273 +S'etching' +p173959 +sg25267 +g27 +sg25275 +S'unknown date\n' +p173960 +sg25268 +S'Grand Canal (Le grand canal)' +p173961 +sg25270 +S'Alphonse Legros' +p173962 +sa(dp173963 +g25273 +S'etching, aquatint and drypoint' +p173964 +sg25267 +g27 +sg25275 +S'unknown date\n' +p173965 +sg25268 +S'Large Trees Seen against the Sun (Les grands arbres: Effet du soir)' +p173966 +sg25270 +S'Alphonse Legros' +p173967 +sa(dp173968 +g25268 +S'The Woman with the Pear' +p173969 +sg25270 +S'Ferdinand Bol' +p173970 +sg25273 +S'etching' +p173971 +sg25275 +S'1651' +p173972 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0b7.jpg' +p173973 +sg25267 +g27 +sa(dp173974 +g25268 +S'Hamlet near the Lake (Le hameau pres du lac)' +p173975 +sg25270 +S'Alphonse Legros' +p173976 +sg25273 +S'etching and drypoint' +p173977 +sg25275 +S'unknown date\n' +p173978 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d4e.jpg' +p173979 +sg25267 +g27 +sa(dp173980 +g25268 +S'Head of an Old Man (Etude de tete)' +p173981 +sg25270 +S'Alphonse Legros' +p173982 +sg25273 +S'drypoint' +p173983 +sg25275 +S'unknown date\n' +p173984 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009920.jpg' +p173985 +sg25267 +g27 +sa(dp173986 +g25268 +S"Fishermen's Wives (Femmes de pecheurs)" +p173987 +sg25270 +S'Alphonse Legros' +p173988 +sg25273 +S'etching and (drypoint?)' +p173989 +sg25275 +S'unknown date\n' +p173990 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fa1.jpg' +p173991 +sg25267 +g27 +sa(dp173992 +g25273 +S'drypoint and etching' +p173993 +sg25267 +g27 +sg25275 +S'unknown date\n' +p173994 +sg25268 +S'Grand Canal (Le grand canal)' +p173995 +sg25270 +S'Alphonse Legros' +p173996 +sa(dp173997 +g25268 +S'Solitude (Solitude (Paysage))' +p173998 +sg25270 +S'Alphonse Legros' +p173999 +sg25273 +S'drypoint' +p174000 +sg25275 +S'unknown date\n' +p174001 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fb2.jpg' +p174002 +sg25267 +g27 +sa(dp174003 +g25268 +S'Meadow in Sunshine (Le pre ensoleille)' +p174004 +sg25270 +S'Alphonse Legros' +p174005 +sg25273 +S'drypoint and etching' +p174006 +sg25275 +S'unknown date\n' +p174007 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bdd.jpg' +p174008 +sg25267 +g27 +sa(dp174009 +g25268 +S"Monk Playing the Organ in Church (Moine jouant de l'orgue a l'eglise)" +p174010 +sg25270 +S'Alphonse Legros' +p174011 +sg25273 +S'etching' +p174012 +sg25275 +S'unknown date\n' +p174013 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c57.jpg' +p174014 +sg25267 +g27 +sa(dp174015 +g25268 +S'Landscape (Paysage)' +p174016 +sg25270 +S'Alphonse Legros' +p174017 +sg25273 +S'lithograph' +p174018 +sg25275 +S'unknown date\n' +p174019 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e06.jpg' +p174020 +sg25267 +g27 +sa(dp174021 +g25268 +S"Little Burner of Grass (Le petit bruleur d'herbe)" +p174022 +sg25270 +S'Alphonse Legros' +p174023 +sg25273 +S'etching and drypoint' +p174024 +sg25275 +S'unknown date\n' +p174025 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d30.jpg' +p174026 +sg25267 +g27 +sa(dp174027 +g25268 +S'Little Shelter (Le petit hangar)' +p174028 +sg25270 +S'Alphonse Legros' +p174029 +sg25273 +S'etching and drypoint' +p174030 +sg25275 +S'unknown date\n' +p174031 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d4b.jpg' +p174032 +sg25267 +g27 +sa(dp174033 +g25268 +S'Portrait of an Officer' +p174034 +sg25270 +S'Ferdinand Bol' +p174035 +sg25273 +S'etching' +p174036 +sg25275 +S'1645' +p174037 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0b8.jpg' +p174038 +sg25267 +g27 +sa(dp174039 +g25268 +S'Return of the Fagot-gatherer, 2nd plate (Le retour du fagotier)' +p174040 +sg25270 +S'Alphonse Legros' +p174041 +sg25273 +S'lithograph' +p174042 +sg25275 +S'unknown date\n' +p174043 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e0b.jpg' +p174044 +sg25267 +g27 +sa(dp174045 +g25268 +S'Sunset (Le soir (Coucher de soleil))' +p174046 +sg25270 +S'Alphonse Legros' +p174047 +sg25273 +S'drypoint and etching?' +p174048 +sg25275 +S'unknown date\n' +p174049 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098e1.jpg' +p174050 +sg25267 +g27 +sa(dp174051 +g25268 +S'The Cooper (Le tonnelier)' +p174052 +sg25270 +S'Alphonse Legros' +p174053 +sg25273 +S'etching' +p174054 +sg25275 +S'unknown date\n' +p174055 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009de8.jpg' +p174056 +sg25267 +g27 +sa(dp174057 +g25268 +S'Pigeon Tower (La tour aux pigeons)' +p174058 +sg25270 +S'Alphonse Legros' +p174059 +sg25273 +S'etching and drypoint' +p174060 +sg25275 +S'unknown date\n' +p174061 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b9d.jpg' +p174062 +sg25267 +g27 +sa(dp174063 +g25268 +S'Pigeon Tower (La tour aux pigeons)' +p174064 +sg25270 +S'Alphonse Legros' +p174065 +sg25273 +S'etching and drypoint' +p174066 +sg25275 +S'unknown date\n' +p174067 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b9c.jpg' +p174068 +sg25267 +g27 +sa(dp174069 +g25268 +S"The Prodigal Son, 2nd plate (L'enfant prodigue)" +p174070 +sg25270 +S'Alphonse Legros' +p174071 +sg25273 +S'etching and drypoint' +p174072 +sg25275 +S'unknown date\n' +p174073 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009924.jpg' +p174074 +sg25267 +g27 +sa(dp174075 +g25273 +S'graphite on wove paper' +p174076 +sg25267 +g27 +sg25275 +S'1962' +p174077 +sg25268 +S'Picnic on the Beach' +p174078 +sg25270 +S'Stefano Cusumano' +p174079 +sa(dp174080 +g25268 +S'Christ on the Cross' +p174081 +sg25270 +S'German 15th Century' +p174082 +sg25273 +S'Schreiber, no. 381, State a' +p174083 +sg25275 +S'\nwoodcut' +p174084 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a658.jpg' +p174085 +sg25267 +g27 +sa(dp174086 +g25268 +S'The Duke of Wellington' +p174087 +sg25270 +S'Artist Information (' +p174088 +sg25273 +S'Spanish, 1746 - 1828' +p174089 +sg25275 +S'(related artist)' +p174090 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000054b.jpg' +p174091 +sg25267 +g27 +sa(dp174092 +g25268 +S'Young Lady Wearing a Mantilla and Basquina' +p174093 +sg25270 +S'Francisco de Goya' +p174094 +sg25273 +S'oil on canvas' +p174095 +sg25275 +S'c. 1800/1805' +p174096 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000493.jpg' +p174097 +sg25267 +S'The \n ' +p174098 +sa(dp174099 +g25268 +S'Rembrandt van Rijn' +p174100 +sg25270 +S'Ferdinand Bol' +p174101 +sg25273 +S'chalk, pen and ink, brush and wash on sheet trimmed with gold paper' +p174102 +sg25275 +S'c. 1640' +p174103 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e68.jpg' +p174104 +sg25267 +g27 +sa(dp174105 +g25268 +S'The Assumption of the Virgin' +p174106 +sg25270 +S'Nicolas Poussin' +p174107 +sg25273 +S'oil on canvas' +p174108 +sg25275 +S'c. 1630/1632' +p174109 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a01.jpg' +p174110 +sg25267 +S"Poussin, among the most important of all European painters, worked in \n France and traveled through Venice before reaching Rome in 1624. Shortly \n thereafter, he began seeking rigorously composed interpretations of \n philosophical themes. Except for a royal summons to return to Paris in \n 1640-1642, Poussin remained in Rome. By staying in Italy, France's two \n leading seventeenth-century artists, Poussin and Claude Lorrain, who \n sometimes sketched together in the country, did not join the royal art \n academy in Paris.\n The scene celebrates the Christian belief that after Mary's death her \n body was raised from her tomb into heaven. Executed about two years after \n Poussin's arrival in Rome, this canvas is among his first known paintings. \n In contrast to the severity of the artist's later classical works, a joyful \n exuberance emanates from the billowing clouds, swirling draperies, and \n flying cherubs. This dynamic movement, off-center composition, and rich \n color come directly from Poussin's knowledge of Venetian Renaissance \n painting and of Titian in particular.\n " +p174111 +sa(dp174112 +g25268 +S'Watson and the Shark' +p174113 +sg25270 +S'John Singleton Copley' +p174114 +sg25273 +S'oil on canvas' +p174115 +sg25275 +S'1778' +p174116 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000087c.jpg' +p174117 +sg25267 +S"Watson and the Shark\n The rescuers' anxious expressions and actions reveal both concern for their thrashing companion and a growing awareness of their own peril. Time stands still as the viewer is forced to ponder Watson's fate. Miraculously, he was saved from almost certain death and went on to become a successful British merchant and politician.\n Although Copley underscored the scene's tension and immediacy, the seemingly\r\nspontaneous poses actually were based on art historical precedents. The harpooner's pose, for example, recalls Raphael's altarpiece of the Archangel Michael using a spear to drive Satan out of heaven. The oil painting's enormous acclaim ensured Copley's appointment to the prestigious Royal Academy, and he earned a fortune selling engravings of its design.\n " +p174118 +sa(dp174119 +g25268 +S'Winter Scene' +p174120 +sg25270 +S'Jacob Cats' +p174121 +sg25273 +S'pen and brown ink with gray wash and watercolor on laid paper' +p174122 +sg25275 +S'1790' +p174123 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00022/a00022d4.jpg' +p174124 +sg25267 +g27 +sa(dp174125 +g25268 +S'Agrippina and Germanicus' +p174126 +sg25270 +S'Sir Peter Paul Rubens' +p174127 +sg25273 +S'oil on panel' +p174128 +sg25275 +S'c. 1614' +p174129 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e45.jpg' +p174130 +sg25267 +S"Roman historians directed glowing praise to Agrippina and her husband Germanicus (died A.D. 19). Tacitus described her as "the glory of her country," while Suetonius claimed he "possessed all the highest qualities of body and mind." Germanicus, adopted son of the emperor Tiberius, was a brilliant general. Agrippina, granddaughter of Augustus, Rome's first emperor, was renowned for devotion and bravery.\n For Rubens, the couple's moral virtue was reflected in their physical beauty. Agrippina has a strong face, with glowing skin and golden hair. Notice how subtly Rubens distinguished her ivory complexion from the slightly ruddier face of her husband.\n The unusual double-bust format, like the paint's luminous translucent quality, is explained by Rubens' inspiration: ancient cameos. The artist was a great collector of antiquities, including engraved gems. He planned to illustrate a publication of these small-scale sculptures, but the project was never completed. Germanicus' profile here—with aquiline nose, arched brows, and rounded chin—is similar to a design Rubens made possibly after one of his own cameos.\n " +p174131 +sa(dp174132 +g25268 +S'Autumn - On the Hudson River' +p174133 +sg25270 +S'Jasper Francis Cropsey' +p174134 +sg25273 +S'oil on canvas' +p174135 +sg25275 +S'1860' +p174136 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000006f.jpg' +p174137 +sg25267 +S'This monumental view of the Hudson River Valley was painted from memory in the\nartist\'s London studio. Cropsey adopted a high vantage point, looking southeast\ntoward the distant Hudson River and the flank of Storm King Mountain. A small stream\nleads from the foreground, where three hunters and their dogs gaze into the sunlight.\nAll along the meandering tributary there are signs of man\'s peaceful coexistence\nwith nature: a small log cabin, grazing sheep, children playing on a bridge, and\ncows standing placidly in the water. Here, man neither conquers nor is subservient\nto nature; both coexist harmoniously. In fact, the landscape is depicted as a ready\narena for further agricultural expansion. While autumnal scenes traditionally are\nassociated with the transience of life, Cropsey\'s painting is more a celebration\nof American nationalism. As a critic wrote in 1860, the picture represents "not\nthe solemn wasting away of the year, but its joyful crowning festival."\n The painting created a sensation among many British viewers who had never seen such\na colorful panorama of fall foliage. Indeed, because the autumn in Britain customarily\nis far less colorful than in the United States, the artist decided to display specimens\nof North American leaves alongside his painting to persuade skeptical visitors that\nhis rendition was botanically accurate.\n ' +p174138 +sa(dp174139 +g25268 +S'Fanciful Landscape' +p174140 +sg25270 +S'Thomas Doughty' +p174141 +sg25273 +S'oil on canvas' +p174142 +sg25275 +S'1834' +p174143 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000007f.jpg' +p174144 +sg25267 +g27 +sa(dp174145 +g25268 +S'Simon Hayem' +p174146 +sg25270 +S'Jules Bastien-Lepage' +p174147 +sg25273 +S'oil on canvas' +p174148 +sg25275 +S'1875' +p174149 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b17.jpg' +p174150 +sg25267 +g27 +sa(dp174151 +g25268 +S'Caroline Mortier de Tr\xc3\xa9vise' +p174152 +sg25270 +S'Louis-L\xc3\xa9opold Boilly' +p174153 +sg25273 +S'oil on canvas' +p174154 +sg25275 +S'c. 1810/1812' +p174155 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dab.jpg' +p174156 +sg25267 +g27 +sa(dp174157 +g25268 +S'Malvina Mortier de Tr\xc3\xa9vise' +p174158 +sg25270 +S'Louis-L\xc3\xa9opold Boilly' +p174159 +sg25273 +S'oil on canvas' +p174160 +sg25275 +S'c. 1810/1812' +p174161 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dac.jpg' +p174162 +sg25267 +g27 +sa(dp174163 +g25268 +S'The Beach at Villerville' +p174164 +sg25270 +S'Eug\xc3\xa8ne Boudin' +p174165 +sg25273 +S'oil on canvas' +p174166 +sg25275 +S'1864' +p174167 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006dd.jpg' +p174168 +sg25267 +g27 +sa(dp174169 +g25268 +S'The Astrologer' +p174170 +sg25270 +S'Ferdinand Bol' +p174171 +sg25273 +S'etching' +p174172 +sg25275 +S'unknown date\n' +p174173 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0b9.jpg' +p174174 +sg25267 +g27 +sa(dp174175 +g25268 +S'On the Beach, Trouville' +p174176 +sg25270 +S'Eug\xc3\xa8ne Boudin' +p174177 +sg25273 +S'oil on wood' +p174178 +sg25275 +S'1887' +p174179 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006de.jpg' +p174180 +sg25267 +g27 +sa(dp174181 +g25268 +S'On the Beach' +p174182 +sg25270 +S'Eug\xc3\xa8ne Boudin' +p174183 +sg25273 +S'oil on wood' +p174184 +sg25275 +S'1894' +p174185 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006df.jpg' +p174186 +sg25267 +g27 +sa(dp174187 +g25268 +S'Portrait of an Elderly Lady' +p174188 +sg25270 +S'Mary Cassatt' +p174189 +sg25273 +S'oil on canvas' +p174190 +sg25275 +S'c. 1887' +p174191 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006c2.jpg' +p174192 +sg25267 +S'Mary Cassatt had great respect for the art of Manet and Degas. \n \n Although the identity of the sitter in \n ' +p174193 +sa(dp174194 +g25268 +S'Italian Peasant Boy' +p174195 +sg25270 +S'Jean-Baptiste-Camille Corot' +p174196 +sg25273 +S'oil on paper on canvas' +p174197 +sg25275 +S'1825/1827' +p174198 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dc6.jpg' +p174199 +sg25267 +g27 +sa(dp174200 +g25268 +S'Portrait of a Young Girl' +p174201 +sg25270 +S'Jean-Baptiste-Camille Corot' +p174202 +sg25273 +S'oil on canvas' +p174203 +sg25275 +S'1850 or 1859' +p174204 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000db1.jpg' +p174205 +sg25267 +g27 +sa(dp174206 +g25268 +S'Beach in Normandy' +p174207 +sg25270 +S'Gustave Courbet' +p174208 +sg25273 +S'oil on canvas' +p174209 +sg25275 +S'c. 1872/1875' +p174210 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dc8.jpg' +p174211 +sg25267 +S'During 1869 Courbet had worked along the beaches in Normandy, painting sketches that he later used to produce a number of finished paintings in the studio: "Did I ever earn my bread and butter," he wrote a friend, "I painted twenty seascapes...." Years later,while in exile in Switzerland, he painted more beach scenes, perhaps returning to the same sketches or recalling the landscape from memory.\n Recent scholarship suggests that this painting is probably one of the later group. The light and air lack the kind of vivid freshness of Courbet\'s work done while he was still under his immediate impression of a place. The rocky cliff seems generalized rather than defined by its strong highlights.\n Still, its bulk attracts our attention; our eyes are drawn by the sheer tactile mass of the pigments there. In many places Courbet painted not with a brush, but with a palette knife. His rough technique, like the unsentimentalized peasant subjects he pioneered, scandalized the art establishment -- and helped galvanize the bold style being adopted by younger painters like Manet. Fiercely proud of his rural roots and his country-bred vigor, Courbet retained a forthright and physical connection to the world. He painted the concrete, he said, and he gave what he saw actual physical dimension on his canvas.\n ' +p174212 +sa(dp174213 +g25268 +S'Chester Dale' +p174214 +sg25270 +S'Salvador Dal\xc3\xad' +p174215 +sg25273 +S'oil on canvas' +p174216 +sg25275 +S'1958' +p174217 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dc9.jpg' +p174218 +sg25267 +g27 +sa(dp174219 +g25268 +S'The Beggars' +p174220 +sg25270 +S'Honor\xc3\xa9 Daumier' +p174221 +sg25273 +S'oil on canvas' +p174222 +sg25275 +S'c. 1843' +p174223 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dcc.jpg' +p174224 +sg25267 +g27 +sa(dp174225 +g25268 +S'French Theater' +p174226 +sg25270 +S'Honor\xc3\xa9 Daumier' +p174227 +sg25273 +S'oil on wood' +p174228 +sg25275 +S'c. 1856' +p174229 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000da1.jpg' +p174230 +sg25267 +g27 +sa(dp174231 +g25268 +S'Wandering Saltimbanques' +p174232 +sg25270 +S'Honor\xc3\xa9 Daumier' +p174233 +sg25273 +S'oil on wood' +p174234 +sg25275 +S'1847/1850' +p174235 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000da3.jpg' +p174236 +sg25267 +S"Best known for political cartoons and humorous caricatures satirizing contemporary\nlife, Daumier's paintings reveal a more serious examination of the human condition.\nThe itinerant street musicians and acrobats in \n Daumier may have felt a personal affinity with the entertainers. The little boy\ncarrying a chair could be a recollection of Daumier's childhood, when his family,\ndestitute and living in Paris, endured numerous displacements to progressively\nworse lodgings. Further, it has been suggested that the older clown clad in traditional\ncostume and leading his family in this painting may be associated with the artist's\nfather, a failed poet and playwright committed to the insane asylum at Charenton\nin 1851, where he died.\n Daumier was self-taught as a painter, and his style has many characteristics of\nthe graphic media in which he trained. The blunt silhouettes of the figures and\nthe simplified space they occupy are stylistic elements that originated in his lithographs.\nThe unspecific, indefinite appearance thus produced endows them with more universal\nmeaning. Personal associations aside, the saltimbanques here are artists struggling\nto make their way in a world that, as Daumier depicts it, is a bleak, anonymous\nplace.\n " +p174237 +sa(dp174238 +g25268 +S'Lucas Cranach' +p174239 +sg25270 +S'Johann Martin Bernigeroth' +p174240 +sg25273 +S'engraving' +p174241 +sg25275 +S'1761' +p174242 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b301.jpg' +p174243 +sg25267 +g27 +sa(dp174244 +g25268 +S'Portrait of a Young Horsewoman' +p174245 +sg25270 +S'Charles David' +p174246 +sg25273 +S'oil on canvas' +p174247 +sg25275 +S'1839' +p174248 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f11.jpg' +p174249 +sg25267 +g27 +sa(dp174250 +g25268 +S'Ballet Scene' +p174251 +sg25270 +S'Edgar Degas' +p174252 +sg25273 +S'pastel on greenish transparent tracing paper' +p174253 +sg25275 +S'c. 1907' +p174254 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d44.jpg' +p174255 +sg25267 +g27 +sa(dp174256 +g25268 +S'Girl in Red' +p174257 +sg25270 +S'Edgar Degas' +p174258 +sg25273 +S'oil on canvas' +p174259 +sg25275 +S'c. 1866' +p174260 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006bb.jpg' +p174261 +sg25267 +g27 +sa(dp174262 +g25268 +S'Mademoiselle Malo' +p174263 +sg25270 +S'Edgar Degas' +p174264 +sg25273 +S'oil on canvas' +p174265 +sg25275 +S'c. 1877' +p174266 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006bc.jpg' +p174267 +sg25267 +g27 +sa(dp174268 +g25273 +S'(artist after)' +p174269 +sg25267 +g27 +sg25275 +S'\n' +p174270 +sg25268 +S'Michelangelo in His Studio' +p174271 +sg25270 +S'Artist Information (' +p174272 +sa(dp174273 +g25268 +S'Head of a Woman' +p174274 +sg25270 +S'Andr\xc3\xa9 Derain' +p174275 +sg25273 +S'oil on canvas' +p174276 +sg25275 +S'1926' +p174277 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ea7.jpg' +p174278 +sg25267 +g27 +sa(dp174279 +g25268 +S'Portrait of a Girl' +p174280 +sg25270 +S'Andr\xc3\xa9 Derain' +p174281 +sg25273 +S'oil on canvas' +p174282 +sg25275 +S'1923/1924' +p174283 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000eae.jpg' +p174284 +sg25267 +g27 +sa(dp174285 +g25268 +S'The Basket' +p174286 +sg25270 +S'Raoul Dufy' +p174287 +sg25273 +S'oil on canvas' +p174288 +sg25275 +S'1926' +p174289 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000eab.jpg' +p174290 +sg25267 +g27 +sa(dp174291 +g25268 +S'Duchess de Fitz-James' +p174292 +sg25270 +S'Henri Fantin-Latour' +p174293 +sg25273 +S'oil on canvas' +p174294 +sg25275 +S'1867' +p174295 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000065a.jpg' +p174296 +sg25267 +g27 +sa(dp174297 +g25268 +S'Mademoiselle de Fitz-James' +p174298 +sg25270 +S'Henri Fantin-Latour' +p174299 +sg25273 +S'oil on canvas' +p174300 +sg25275 +S'1867' +p174301 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000065b.jpg' +p174302 +sg25267 +g27 +sa(dp174303 +g25268 +S'The End' +p174304 +sg25270 +S'Albert Besnard' +p174305 +sg25273 +S'etching' +p174306 +sg25275 +S'1883' +p174307 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a000904a.jpg' +p174308 +sg25267 +g27 +sa(dp174309 +g25268 +S'Self-Portrait' +p174310 +sg25270 +S'Henri Fantin-Latour' +p174311 +sg25273 +S'oil on canvas' +p174312 +sg25275 +S'1858' +p174313 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006d1.jpg' +p174314 +sg25267 +g27 +sa(dp174315 +g25268 +S'The Charleston' +p174316 +sg25270 +S'Jean-Louis Forain' +p174317 +sg25273 +S'oil on canvas' +p174318 +sg25275 +S'1926' +p174319 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000646.jpg' +p174320 +sg25267 +g27 +sa(dp174321 +g25268 +S'Madame Alexandre Kohler' +p174322 +sg25270 +S'Paul Gauguin' +p174323 +sg25273 +S'oil on linen' +p174324 +sg25275 +S'1887/1888' +p174325 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000063d.jpg' +p174326 +sg25267 +g27 +sa(dp174327 +g25273 +S'overall: 61.2 x 50.2 cm (24 1/8 x 19 3/4 in.)\r\nframed: 79.4 x 69.2 x 7.6 cm (31 1/4 x 27 1/4 x 3 in.)' +p174328 +sg25267 +g27 +sg25275 +S'\noil on canvas' +p174329 +sg25268 +S'A Young Girl Posing in Back View' +p174330 +sg25270 +S'French 19th Century' +p174331 +sa(dp174332 +g25268 +S'Nude Warrior with a Spear' +p174333 +sg25270 +S'Th\xc3\xa9odore Gericault' +p174334 +sg25273 +S'oil on canvas' +p174335 +sg25275 +S'c. 1816' +p174336 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d84.jpg' +p174337 +sg25267 +S"At the age of nineteen, Théodore Gericault entered the Parisian studio of Pierre-Narcisse\nGuérin, a successful follower of Jacques-Louis David. In Guérin's studio the young\nGericault would have refined his skills by drawing from antique statues and casts\nin the Louvre and then after the live model as a preliminary to full-scale works.\n The \n " +p174338 +sa(dp174339 +g25268 +S'Girl in White' +p174340 +sg25270 +S'Vincent van Gogh' +p174341 +sg25273 +S'oil on canvas' +p174342 +sg25275 +S'1890' +p174343 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000064c.jpg' +p174344 +sg25267 +S'On May 21, 1890, Van Gogh arrived in Auvers, a small town outside Paris. His brother Theo, concerned about his health, had suggested he put himself under the care of Paul Gachet, a homeopathic physician and avid art patron. From his arrival in Auvers to his death on July 29, Van Gogh made about seventy paintings—more than one per day—and many drawings.\n In mid-June he wrote Gauguin: "I am trying to do some studies of wheat . . . . nothing but ears of wheat with green-blue stalks, long leaves like ribbons of green shot with pink, ears that are just turning yellow, edged with the pale pink of the dusty bloom—a pink bindweed at the bottom twisted round a stem. Over that, against a vivid yet tranquil background, I should like to paint some portraits." In fact, two paintings show this same young woman: "a peasant woman, big yellow hat with a knot of sky-blue ribbons . . . "\n ' +p174345 +sa(dp174346 +g25268 +S"Roulin's Baby" +p174347 +sg25270 +S'Vincent van Gogh' +p174348 +sg25273 +S'oil on canvas' +p174349 +sg25275 +S'1888' +p174350 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000064d.jpg' +p174351 +sg25267 +g27 +sa(dp174352 +g25268 +S'Alsatian Girl' +p174353 +sg25270 +S'Jean-Jacques Henner' +p174354 +sg25273 +S'oil on wood' +p174355 +sg25275 +S'1873' +p174356 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000693.jpg' +p174357 +sg25267 +g27 +sa(dp174358 +g25268 +S'Madame Uhring' +p174359 +sg25270 +S'Jean-Jacques Henner' +p174360 +sg25273 +S'oil on wood' +p174361 +sg25275 +S'1890' +p174362 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000065d.jpg' +p174363 +sg25267 +g27 +sa(dp174364 +g25268 +S'Ulysses' +p174365 +sg25270 +S'Jean-Auguste-Dominique Ingres' +p174366 +sg25273 +S'oil on canvas on wood' +p174367 +sg25275 +S'1827' +p174368 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e012.jpg' +p174369 +sg25267 +g27 +sa(dp174370 +g25273 +S'pen and blue ink with blue wash' +p174371 +sg25267 +g27 +sg25275 +S'unknown date\n' +p174372 +sg25268 +S'Excavating for Central Hall, Westminster' +p174373 +sg25270 +S'Sir Muirhead Bone' +p174374 +sa(dp174375 +g25268 +S'Girl with a Dove' +p174376 +sg25270 +S'Marie Laurencin' +p174377 +sg25273 +S'oil on linen' +p174378 +sg25275 +S'1928' +p174379 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ed8.jpg' +p174380 +sg25267 +g27 +sa(dp174381 +g25268 +S'Maud Dale' +p174382 +sg25270 +S'Fernand L\xc3\xa9ger' +p174383 +sg25273 +S'oil on canvas' +p174384 +sg25275 +S'1935' +p174385 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ed9.jpg' +p174386 +sg25267 +g27 +sa(dp174387 +g25273 +S'oil on canvas' +p174388 +sg25267 +g27 +sg25275 +S'1928' +p174389 +sg25268 +S'Chester Dale' +p174390 +sg25270 +S'Jean Lur\xc3\xa7at' +p174391 +sa(dp174392 +g25273 +S'oil on canvas' +p174393 +sg25267 +g27 +sg25275 +S'1928' +p174394 +sg25268 +S'Maud Dale' +p174395 +sg25270 +S'Jean Lur\xc3\xa7at' +p174396 +sa(dp174397 +g25268 +S'Lorette with Turban, Yellow Jacket' +p174398 +sg25270 +S'Henri Matisse' +p174399 +sg25273 +S'oil on wood' +p174400 +sg25275 +S'1917' +p174401 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000eb5.jpg' +p174402 +sg25267 +g27 +sa(dp174403 +g25268 +S'Odalisque, Half-Length--The Tattoo' +p174404 +sg25270 +S'Henri Matisse' +p174405 +sg25273 +S'oil on canvas' +p174406 +sg25275 +S'1923' +p174407 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e09.jpg' +p174408 +sg25267 +g27 +sa(dp174409 +g25268 +S'Pot of Geraniums' +p174410 +sg25270 +S'Henri Matisse' +p174411 +sg25273 +S'oil on linen' +p174412 +sg25275 +S'1912' +p174413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dfd.jpg' +p174414 +sg25267 +g27 +sa(dp174415 +g25268 +S'Leconte de Lisle' +p174416 +sg25270 +S'Jean-Fran\xc3\xa7ois Millet' +p174417 +sg25273 +S'oil on canvas' +p174418 +sg25275 +S'c. 1840/1841' +p174419 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d98.jpg' +p174420 +sg25267 +g27 +sa(dp174421 +g25268 +S'Portrait of a Man' +p174422 +sg25270 +S'Jean-Fran\xc3\xa7ois Millet' +p174423 +sg25273 +S'oil on canvas' +p174424 +sg25275 +S'c. 1845' +p174425 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004fd9.jpg' +p174426 +sg25267 +g27 +sa(dp174427 +g25268 +S'Caf\xc3\xa9 Singer' +p174428 +sg25270 +S'Amedeo Modigliani' +p174429 +sg25273 +S'oil on canvas' +p174430 +sg25275 +S'1917' +p174431 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e02.jpg' +p174432 +sg25267 +g27 +sa(dp174433 +g25273 +S'pen and ink with wash' +p174434 +sg25267 +g27 +sg25275 +S'unknown date\n' +p174435 +sg25268 +S'Evening' +p174436 +sg25270 +S'Sir Muirhead Bone' +p174437 +sa(dp174438 +g25268 +S'Girl in a Green Blouse' +p174439 +sg25270 +S'Amedeo Modigliani' +p174440 +sg25273 +S'oil on canvas' +p174441 +sg25275 +S'1917' +p174442 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e0e.jpg' +p174443 +sg25267 +g27 +sa(dp174444 +g25268 +S'Nude on a Blue Cushion' +p174445 +sg25270 +S'Amedeo Modigliani' +p174446 +sg25273 +S'oil on linen' +p174447 +sg25275 +S'1917' +p174448 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e0f.jpg' +p174449 +sg25267 +g27 +sa(dp174450 +g25268 +S'Chaim Soutine' +p174451 +sg25270 +S'Amedeo Modigliani' +p174452 +sg25273 +S'oil on canvas' +p174453 +sg25275 +S'1917' +p174454 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000de1.jpg' +p174455 +sg25267 +S'Born in 1884 to an aristocratic family in Livorno, Italy, Amedeo Modigliani settled in the Montmartre neighborhood of Paris in 1906 and began making paintings influenced by both the mood of Picasso\'s Blue period and the pictorial structure of late C\xc3\xa9zanne. In 1909 he met Constantin Brancusi and began to focus on sculpture; the thin features and references to African art in the series of \n As both painter and sculptor Modigliani concentrated on portraiture. Though he abandoned sculpture in late 1913 or early 1914 to return to painting, the long necks and attenuated features of his sculptures continue in his later painted portraits. Modigliani is also renowned for a series of languorous nudes, some of which he exhibited in 1918 at the Galerie Berthe Weill in Paris; the exhibition was closed by the police on the grounds of obscenity. Modigliani died of tubercular meningitis, aggravated by drugs and alcohol, in a Paris hospital in 1920.\n The 11th child of a Russian Jewish tailor, Chaim Soutine (1894–1943) was rescued from poverty and abuse by a rabbi who recognized his talent and sent him to art school\xe2\x80\x94first in Minsk, then in Vilna. Soutine arrived in Paris at the age of 17 in 1911\xe2\x80\x931912 and met Modigliani in Montparnasse in about 1914. They developed a close friendship, and Modigliani painted Soutine\'s portrait several times. Soutine\'s unruly, spontaneous manner of painting was alien to his Italian friend, who, to describe his own state of drunkenness, once quipped, "Everything dances around me as in a landscape by Soutine." The elegant Modigliani felt protective of the uncouth Soutine, 10 years his junior. In 1916 Modigliani introduced his friend to his dealer, Leopold Zborowski, and urged him to handle Soutine\'s work, which he began to do. Shortly before Modigliani died, he told Zborowski, "Don\'t worry, I\'m leaving you Soutine."\n While many of Modigliani\'s portraits are either stylized and impersonal—with eyes often left blank\xe2\x80\x94or almost caricatural, this painting seems to be both particular and sympathetic. Soutine sits with tumbling hair and ill-matched clothes, his hands placed awkwardly in his lap, his nose spreading across his face as he stares out of the frame. The half-closed eyes, one slightly higher than the other, might suggest Soutine\'s despair and hopelessness, attitudes with which Modigliani could identify as a poor artist in Paris. Modigliani\'s treatment of Soutine may also reflect the special place that Soutine had won in the older artist\'s affections.\n ' +p174456 +sa(dp174457 +g25268 +S'The Houses of Parliament, Sunset' +p174458 +sg25270 +S'John Singer Sargent' +p174459 +sg25273 +S'oil on canvas' +p174460 +sg25275 +S'1903' +p174461 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000676.jpg' +p174462 +sg25267 +S"Monet and his family lived in England briefly, seeking refuge there during the Franco-Prussian war (1870–1871), and returned in the late 1880s, staying with his artist friends \n Between 1899 and 1901, Monet made three trips to London specifically to paint. He went in winter, when the city was clouded with fog and the smoke of coal fires. "Without fog," Monet said, "London would not be a beautiful city. It is the fog that gives it its magnificent breadth." From his rooms on the sixth floor of the Savoy Hotel, Monet's view up and down the Thames provided him subject matter for several series pictures. He could see Waterloo Bridge, Charing Cross Bridge, and the Houses of Parliament. In all he completed more than one hundred Thames paintings. Most, like this one, render the city's famous landmarks as darkened silhouettes cloaked in the misty sky. He worked at prescribed times of day to capture this backlit effect, often complaining about the rapidity with which conditions changed.\n In 1904, Monet exhibited thirty-seven London pictures, including this one and \n " +p174463 +sa(dp174464 +g25268 +S'Rouen Cathedral, West Fa\xc3\xa7ade' +p174465 +sg25270 +S'Claude Monet' +p174466 +sg25273 +S'oil on canvas' +p174467 +sg25275 +S'1894' +p174468 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ea0.jpg' +p174469 +sg25267 +S"Toward the middle of the 1880s, a number of artists became disaffected with impressionism. Monet began to explore painting in a series, or creating groups of works of almost identical subjects. The series paintings were a break from impressionism in two critical respects: the works, based on campaigns in front of the motif, were usually extensively reworked in the studio and lacked the spontaneity integral to impressionism; and, the motif itself was secondary to effects of light and weather.\n The new qualities of Monet's series paintings were given concentrated expression in the \n In late January or early February 1892, Monet rented rooms across from Rouen cathedral. He remained until spring, painting its looming façade many times, most often as we see it here, close up and cropped to the sides. The next winter he returned to paint the cathedral again, making in all more than 30 views of it. But it was less the carved Gothic façade that was Monet's subject than the atmosphere—the \n " +p174470 +sa(dp174471 +g25268 +S"The Artist's Daughter with a Parakeet" +p174472 +sg25270 +S'Berthe Morisot' +p174473 +sg25273 +S'oil on canvas' +p174474 +sg25275 +S'1890' +p174475 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000068a.jpg' +p174476 +sg25267 +g27 +sa(dp174477 +g25273 +S'oil on canvas' +p174478 +sg25267 +g27 +sg25275 +S'1928' +p174479 +sg25268 +S'Matador in White' +p174480 +sg25270 +S'Roland Oudot' +p174481 +sa(dp174482 +g25268 +S'Le Gourmet' +p174483 +sg25270 +S'Pablo Picasso' +p174484 +sg25273 +S'oil on canvas' +p174485 +sg25275 +S'1901' +p174486 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a00.jpg' +p174487 +sg25267 +g27 +sa(dp174488 +g25268 +S'Pedro Ma\xc3\xb1ach' +p174489 +sg25270 +S'Pablo Picasso' +p174490 +sg25273 +S'oil on canvas' +p174491 +sg25275 +S'1901' +p174492 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dec.jpg' +p174493 +sg25267 +g27 +sa(dp174494 +g25268 +S'The Bather' +p174495 +sg25270 +S'Camille Pissarro' +p174496 +sg25273 +S'oil on canvas' +p174497 +sg25275 +S'1895' +p174498 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000691.jpg' +p174499 +sg25267 +g27 +sa(dp174500 +g25273 +S'graphite' +p174501 +sg25267 +g27 +sg25275 +S'1902' +p174502 +sg25268 +S'Demolition of Wyck Street' +p174503 +sg25270 +S'Sir Muirhead Bone' +p174504 +sa(dp174505 +g25268 +S'The Flower Vendor' +p174506 +sg25270 +S'Jean Fran\xc3\xa7ois Raffa\xc3\xablli' +p174507 +sg25273 +S'oil on canvas' +p174508 +sg25275 +S'unknown date\n' +p174509 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000071d.jpg' +p174510 +sg25267 +g27 +sa(dp174511 +g25268 +S'Pandora' +p174512 +sg25270 +S'Odilon Redon' +p174513 +sg25273 +S'oil on canvas' +p174514 +sg25275 +S'1910/1912' +p174515 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006f2.jpg' +p174516 +sg25267 +g27 +sa(dp174517 +g25268 +S'Saint Sebastian' +p174518 +sg25270 +S'Odilon Redon' +p174519 +sg25273 +S'oil on canvas' +p174520 +sg25275 +S'1910/1912' +p174521 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006f3.jpg' +p174522 +sg25267 +g27 +sa(dp174523 +g25268 +S'Girl with a Hoop' +p174524 +sg25270 +S'Auguste Renoir' +p174525 +sg25273 +S'oil on canvas' +p174526 +sg25275 +S'1885' +p174527 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000722.jpg' +p174528 +sg25267 +S'In the 1880s, Renoir, like many of the impressionists, had become \n dissatisfied with the style\'s reliance on observation and visual effects \n and sought an art of more permanent qualities. "I had wrung impressionism \n dry," he later wrote, "and I finally came to the conclusion that I knew \n neither how to paint [nor] draw."\n On a trip to Italy in 1881, Renoir found new inspiration in the works of Renaissance artists, particularly Raphael, and developed a \n manner of painting he called "aigre," or "sour." The word conveys a sense of \n the hardness and tightness of his new style, exemplified by \n ' +p174529 +sa(dp174530 +g25268 +S'Marie Murer' +p174531 +sg25270 +S'Auguste Renoir' +p174532 +sg25273 +S'oil on canvas' +p174533 +sg25275 +S'1877' +p174534 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000070b.jpg' +p174535 +sg25267 +g27 +sa(dp174536 +g25268 +S'Suzanne Valadon' +p174537 +sg25270 +S'Auguste Renoir' +p174538 +sg25273 +S'oil on canvas' +p174539 +sg25275 +S'c. 1885' +p174540 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000070c.jpg' +p174541 +sg25267 +g27 +sa(dp174542 +g25273 +S'oil on cardboard on Masonite' +p174543 +sg25267 +g27 +sg25275 +S'unknown date\n' +p174544 +sg25268 +S'Portrait of a Man' +p174545 +sg25270 +S'Augustin Th\xc3\xa9odule Ribot' +p174546 +sa(dp174547 +g25268 +S'Chester Dale' +p174548 +sg25270 +S'Diego Rivera' +p174549 +sg25273 +S'oil on canvas' +p174550 +sg25275 +S'1945' +p174551 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ee4.jpg' +p174552 +sg25267 +g27 +sa(dp174553 +g25268 +S'Boy on the Rocks' +p174554 +sg25270 +S'Henri Rousseau' +p174555 +sg25273 +S'oil on linen' +p174556 +sg25275 +S'1895/1897' +p174557 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000728.jpg' +p174558 +sg25267 +g27 +sa(dp174559 +g25268 +S'Madame G' +p174560 +sg25270 +S'Artist Information (' +p174561 +sg25273 +g27 +sg25275 +S'(painter)' +p174562 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000440.jpg' +p174563 +sg25267 +g27 +sa(dp174564 +g25273 +S'graphite' +p174565 +sg25267 +g27 +sg25275 +S'1910' +p174566 +sg25268 +S'Demolition of the Old Egyptian Hall' +p174567 +sg25270 +S'Sir Muirhead Bone' +p174568 +sa(dp174569 +g25268 +S'Young Woman in White Holding a Bouquet' +p174570 +sg25270 +S'Alfred Stevens' +p174571 +sg25273 +S'oil on wood' +p174572 +sg25275 +S'c. 1865/1875' +p174573 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000716.jpg' +p174574 +sg25267 +g27 +sa(dp174575 +g25268 +S'Jane Avril' +p174576 +sg25270 +S'Henri de Toulouse-Lautrec' +p174577 +sg25273 +S'oil on cardboard mounted on wood' +p174578 +sg25275 +S'1892' +p174579 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d3b.jpg' +p174580 +sg25267 +g27 +sa(dp174581 +g25268 +S'A Corner of the Moulin de la Galette' +p174582 +sg25270 +S'Henri de Toulouse-Lautrec' +p174583 +sg25273 +S'oil on cardboard' +p174584 +sg25275 +S'1892' +p174585 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000074b.jpg' +p174586 +sg25267 +S"The seamy underside of the Parisian demimonde, populated by the singers, dancers, and patrons of Montmartre nightclubs was Toulouse–Lautrec's principal subject. Scion of one of France's great aristocratic families, Lautrec suffered physical maladies and stunted growth due to genetic factors. He was encouraged to draw during his long convalescences and permitted professional training in an academic studio, which he deserted to embrace modernism. Lautrec particularly admired Degas and emulated his unusual perspectives and gritty social realism. He mastered the new medium of color lithography and produced an impressive body of posters and printed illustrations that share the incisive linear quality of the design of this painting.\n Isolated by his painful physical deformity, Lautrec became an alcoholic and a denizen of dance halls and nightclubs in Montmartre, a poor working–class neighborhood untouched by Baron Haussmann's renovations of Paris. Insight gained from his handicap and his emotional remoteness from his subjects gave his depictions special force, bitterness, and sympathy, while the artifice of his preferred settings and subjects could alter reality amusingly or grotesquely in his work. Lautrec was an observer, a voyeur rather than a participant, and alienation is endemic even in the crowded \n " +p174587 +sa(dp174588 +g25268 +S'La Goulue and Her Sister' +p174589 +sg25270 +S'Henri de Toulouse-Lautrec' +p174590 +sg25273 +S"oil ? l'essence on gelatin silver print mounted on board" +p174591 +sg25275 +S'c. 1892' +p174592 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d6e.jpg' +p174593 +sg25267 +g27 +sa(dp174594 +g25268 +S'Rue des Moulins, 1894' +p174595 +sg25270 +S'Henri de Toulouse-Lautrec' +p174596 +sg25273 +S'oil on cardboard on wood' +p174597 +sg25275 +S'1894' +p174598 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000745.jpg' +p174599 +sg25267 +g27 +sa(dp174600 +g25268 +S'Th\xc3\xa9odore Duret' +p174601 +sg25270 +S'Edouard Vuillard' +p174602 +sg25273 +S'oil on cardboard on wood' +p174603 +sg25275 +S'1912' +p174604 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000751.jpg' +p174605 +sg25267 +S"As a businessman and politician, collector and critic, Duret married an \n active public life with an interest in the arts. As a young man, he had \n been an intimate of the avant-garde circle of Manet and Degas. \n In the background of Vuillard's portrait we see a literal reflection of \n that youth -- glimpsed in a mirror is another portrait of Duret, painted many \n decades before by the American \n Vuillard's dramatically tilted view into Duret's study recalls the \n unexpected angles of Degas' work, though for Vuillard, born a generation \n later, the influence of other artists, especially \n " +p174606 +sa(dp174607 +g25268 +S'Little Girl in White' +p174608 +sg25270 +S'Artist Information (' +p174609 +sg25273 +g27 +sg25275 +S'(painter)' +p174610 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a00002a0.jpg' +p174611 +sg25267 +g27 +sa(dp174612 +g25268 +S'Woman in an Armchair' +p174613 +sg25270 +S'Andr\xc3\xa9 Derain' +p174614 +sg25273 +S'oil on canvas' +p174615 +sg25275 +S'1920/1925' +p174616 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b1d.jpg' +p174617 +sg25267 +g27 +sa(dp174618 +g25268 +S'Woman in a Chemise' +p174619 +sg25270 +S'Andr\xc3\xa9 Derain' +p174620 +sg25273 +S'oil on canvas' +p174621 +sg25275 +S'c. 1928' +p174622 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ea8.jpg' +p174623 +sg25267 +g27 +sa(dp174624 +g25273 +S'oil on canvas' +p174625 +sg25267 +g27 +sg25275 +S'1928' +p174626 +sg25268 +S'Vendor of Ices' +p174627 +sg25270 +S'Marcel Gromaire' +p174628 +sa(dp174629 +g25273 +S'pen and black ink with wash on darkened paper' +p174630 +sg25267 +g27 +sg25275 +S'unknown date\n' +p174631 +sg25268 +S'Rye from Camber' +p174632 +sg25270 +S'Sir Muirhead Bone' +p174633 +sa(dp174634 +g25268 +S'Nude' +p174635 +sg25270 +S'Roger de La Fresnaye' +p174636 +sg25273 +S'oil on cardboard' +p174637 +sg25275 +S'1910' +p174638 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ed6.jpg' +p174639 +sg25267 +g27 +sa(dp174640 +g25268 +S'Monsieur Deleu' +p174641 +sg25270 +S'Amedeo Modigliani' +p174642 +sg25273 +S'oil on canvas' +p174643 +sg25275 +S'1916' +p174644 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e10.jpg' +p174645 +sg25267 +g27 +sa(dp174646 +g25268 +S'Nude on a Divan' +p174647 +sg25270 +S'Amedeo Modigliani' +p174648 +sg25273 +S'oil on canvas' +p174649 +sg25275 +S'1918' +p174650 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e13.jpg' +p174651 +sg25267 +g27 +sa(dp174652 +g25268 +S'Marigolds and Tangerines' +p174653 +sg25270 +S'F\xc3\xa9lix Vallotton' +p174654 +sg25273 +S'oil on canvas' +p174655 +sg25275 +S'1924' +p174656 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ee9.jpg' +p174657 +sg25267 +g27 +sa(dp174658 +g25273 +S'British, 1734 - 1797' +p174659 +sg25267 +g27 +sg25275 +S'(artist after)' +p174660 +sg25268 +S'The Widow of an Indian Chief' +p174661 +sg25270 +S'Artist Information (' +p174662 +sa(dp174663 +g25268 +S'Edouard Blau' +p174664 +sg25270 +S'Fr\xc3\xa9d\xc3\xa9ric Bazille' +p174665 +sg25273 +S'oil on canvas' +p174666 +sg25275 +S'1866' +p174667 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006ef.jpg' +p174668 +sg25267 +g27 +sa(dp174669 +g25268 +S'Blue Morning' +p174670 +sg25270 +S'George Bellows' +p174671 +sg25273 +S'oil on canvas' +p174672 +sg25275 +S'1909' +p174673 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000001a.jpg' +p174674 +sg25267 +g27 +sa(dp174675 +g25268 +S'The Lone Tenement' +p174676 +sg25270 +S'George Bellows' +p174677 +sg25273 +S'oil on canvas' +p174678 +sg25275 +S'1909' +p174679 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000001b.jpg' +p174680 +sg25267 +S"The Lone Tenement\n The whole composition directs attention to\r\nthe bridge's architectural mass. Pointed up toward\r\nthe black roadway from below, a system of vertical\r\nelements marches left to right. A factory smokestack,\r\ntwo lifeless tree trunks, the masts of a\r\nmoored ship, the slender tenement itself, and\r\nsmoke from a ship on the East River all lead across\r\nthe canvas to the bridge's heavy pier. The powerful\r\ndesign and the superb handling of earthy\r\numbers, ochers, and siennas make it difficult to\r\nbelieve that George Bellows had moved to New\r\nYork and begun painting only five years before.\n " +p174681 +sa(dp174682 +g25268 +S'Nude with Red Hair' +p174683 +sg25270 +S'George Bellows' +p174684 +sg25273 +S'oil on canvas' +p174685 +sg25275 +S'1920' +p174686 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000001c.jpg' +p174687 +sg25267 +g27 +sa(dp174688 +g25273 +S'pen and black ink with wash' +p174689 +sg25267 +g27 +sg25275 +S'unknown date\n' +p174690 +sg25268 +S'Shiplake on Thames' +p174691 +sg25270 +S'Sir Muirhead Bone' +p174692 +sa(dp174693 +g25268 +S'The Letter' +p174694 +sg25270 +S'Pierre Bonnard' +p174695 +sg25273 +S'oil on canvas' +p174696 +sg25275 +S'c. 1906' +p174697 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006d5.jpg' +p174698 +sg25267 +g27 +sa(dp174699 +g25268 +S'Return of the Terre-Neuvier' +p174700 +sg25270 +S'Eug\xc3\xa8ne Boudin' +p174701 +sg25273 +S'oil on canvas' +p174702 +sg25275 +S'1875' +p174703 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006e0.jpg' +p174704 +sg25267 +g27 +sa(dp174705 +g25268 +S'Nude Woman with Basket of Fruit' +p174706 +sg25270 +S'Georges Braque' +p174707 +sg25273 +S'oil on canvas' +p174708 +sg25275 +S'1926' +p174709 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dbe.jpg' +p174710 +sg25267 +g27 +sa(dp174711 +g25268 +S'Nude Woman with Fruit' +p174712 +sg25270 +S'Georges Braque' +p174713 +sg25273 +S'oil on canvas' +p174714 +sg25275 +S'1925' +p174715 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b18.jpg' +p174716 +sg25267 +g27 +sa(dp174717 +g25268 +S'Peonies' +p174718 +sg25270 +S'Georges Braque' +p174719 +sg25273 +S'oil on wood' +p174720 +sg25275 +S'1926' +p174721 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dbf.jpg' +p174722 +sg25267 +g27 +sa(dp174723 +g25268 +S'Still Life: Le Jour' +p174724 +sg25270 +S'Georges Braque' +p174725 +sg25273 +S'oil on canvas' +p174726 +sg25275 +S'1929' +p174727 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dc0.jpg' +p174728 +sg25267 +g27 +sa(dp174729 +g25268 +S'Still Life: The Table' +p174730 +sg25270 +S'Georges Braque' +p174731 +sg25273 +S'oil on canvas' +p174732 +sg25275 +S'1928' +p174733 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dc1.jpg' +p174734 +sg25267 +g27 +sa(dp174735 +g25268 +S'Still Life with Fish' +p174736 +sg25270 +S'Emil Carlsen' +p174737 +sg25273 +S'oil on canvas' +p174738 +sg25275 +S'1882' +p174739 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000037.jpg' +p174740 +sg25267 +g27 +sa(dp174741 +g25268 +S'The Boating Party' +p174742 +sg25270 +S'Mary Cassatt' +p174743 +sg25273 +S'oil on canvas' +p174744 +sg25275 +S'1893/1894' +p174745 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006c3.jpg' +p174746 +sg25267 +S"This bold composition reveals the influence of the flat, patterned surfaces, simplified color, and unusual angles of Japanese prints, which enjoyed a huge vogue in Paris in the late 1800s. The dark figure of the man compresses the picture onto the flat plane of the canvas, and the horizon is pushed to the top, collapsing a sense of distance. Our higher vantage point gives us an oblique view into the boat. Its form is divided into decorative shapes by the intersection of its horizontal supports.\n After 1893, Cassatt began to spend many summers on the Mediterranean coast at Antibes. Under its intense sun, she began to experiment with harder, more decorative color. Here, citron and blue carve strong arcs that divide the picture into assertive, almost abstract, shapes. This picture, with its bold geometry and decorative patterning of the surface, positions Cassatt with such post–impressionist painters as \n This painting, one of her most ambitious, was the centerpiece of Cassatt's first solo exhibition in the United States in 1895. Her contacts with wealthy friends in the United States did much to bring avant–garde French painting into this country.\n " +p174747 +sa(dp174748 +g25273 +S'charcoal' +p174749 +sg25267 +g27 +sg25275 +S'unknown date\n' +p174750 +sg25268 +S'Stirlingshire Village, Winter' +p174751 +sg25270 +S'Sir Muirhead Bone' +p174752 +sa(dp174753 +g25268 +S'Miss Mary Ellison' +p174754 +sg25270 +S'Mary Cassatt' +p174755 +sg25273 +S'oil on canvas' +p174756 +sg25275 +S'c. 1880' +p174757 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006c4.jpg' +p174758 +sg25267 +S"This painting is the second of two portraits by Mary Cassatt thought to be of Mary Ellison. \n Cassatt painted the first in 1877, shortly after she met Miss Ellison through their mutual friend, \n Louise Waldron Elder (later Mrs. H. O. Havemeyer, a well-known American art collector and a patron \n of Cassatt). Cassatt does not flatter but, rather, concentrates on Miss Ellison's contemplative mood.\n In this painting, Cassatt demonstrates her affinities with the \n \n " +p174759 +sa(dp174760 +g25268 +S'The Loge' +p174761 +sg25270 +S'Mary Cassatt' +p174762 +sg25273 +S'oil on canvas' +p174763 +sg25275 +S'1882' +p174764 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006cd.jpg' +p174765 +sg25267 +S'A number of artists, including Degas, Renoir, and Cassatt, depicted \n women at the theater. While Degas took many of his subjects from the stage \n and orchestra pit, Cassatt and Renoir focused on the audience. Reflected \n behind these two young women are rings of theater seats and a massive \n chandelier; clearly, they are sitting in luxurious boxes with mirrored \n walls. Like Cassatt herself, they belong to wealthy, proper families. Their \n careful posture is reserved, almost stiff with decorum. It would have \n distinguished them, despite their bare shoulders, from some other women in \n the audience who were coquettes brought to the opera by their lovers.\n Not all the display at the theater occurred on stage, and the young \n women are equally on view, sitting forward to be seen. But the social code \n prohibits proper, unmarried young women from looking at others. The woman \n holding the fan is probably Mary Ellison, a friend of the artist visiting \n from Philadelphia. Even from behind this screen her gaze is cast modestly \n down. The other woman, perhaps the daughter of poet Stephane Mallarmé, is \n more forthright than her companion. The two seem to be mirror reflections \n of each other; while the young Philadelphian hides shyly, her friend is \n poised with self-confidence to receive the attention of other theater \n patrons.\n ' +p174766 +sa(dp174767 +g25268 +S'Girl Arranging Her Hair' +p174768 +sg25270 +S'Mary Cassatt' +p174769 +sg25273 +S'oil on canvas' +p174770 +sg25275 +S'1886' +p174771 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006c5.jpg' +p174772 +sg25267 +S"It was \n She chose a subject that Degas himself had often depicted: an ordinary, working–class girl at her toilette. The beauty of the picture comes from the rigor of the composition and its harmonized contrast of pinks and blues—in the sitter's nightdress, in the background, and even in her skin. While the moment is casual, even private, the girl's pose and the arrangement of furniture behind her are artfully contrived. Note, for example, how the chair back, the dry sink, and the mirror–frame rise in steps parallel to the motion of her arms, echoing and enhancing their upward sweep.\n " +p174773 +sa(dp174774 +g25268 +S'Mother and Child' +p174775 +sg25270 +S'Mary Cassatt' +p174776 +sg25273 +S'oil on canvas' +p174777 +sg25275 +S'c. 1905' +p174778 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006c6.jpg' +p174779 +sg25267 +S'Mother and Child\n The models for \n When Cassatt painted \n ' +p174780 +sa(dp174781 +g25268 +S'Woman with a Red Zinnia' +p174782 +sg25270 +S'Mary Cassatt' +p174783 +sg25273 +S'oil on canvas' +p174784 +sg25275 +S'1891' +p174785 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006c7.jpg' +p174786 +sg25267 +S'The model in \n Woman with a Red Zinnia,\n ' +p174787 +sa(dp174788 +g25268 +S"The Artist's Son, Paul" +p174789 +sg25270 +S'Paul C\xc3\xa9zanne' +p174790 +sg25273 +S'oil on canvas' +p174791 +sg25275 +S'1885/1890' +p174792 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006a4.jpg' +p174793 +sg25267 +g27 +sa(dp174794 +g25268 +S'Louis Guillaume' +p174795 +sg25270 +S'Paul C\xc3\xa9zanne' +p174796 +sg25273 +S'oil on canvas' +p174797 +sg25275 +S'c. 1882' +p174798 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000be/a000be52.jpg' +p174799 +sg25267 +g27 +sa(dp174800 +g25268 +S'House of P\xc3\xa8re Lacroix' +p174801 +sg25270 +S'Camille Pissarro' +p174802 +sg25273 +S'oil on canvas' +p174803 +sg25275 +S'1873' +p174804 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006a6.jpg' +p174805 +sg25267 +S"To brighten Cézanne's dark palette knife, his friend \n The elaborate signature and date are unusual in Cézanne's work. Perhaps he intended it for a patron or a public exhibition—at the urging of Pissarro, three of his works were included in the first impressionist show. In 1873 Cézanne moved to the village of Auvers, near Paris, where he painted this landscape. It was near Pissarro's home, and the two of them often painted side by side during 1873 and 1874. Auvers was also home to Dr. Gachet, a collector who would later care for the despairing Van Gogh. Cézanne may have hoped Gachet would purchase his work, which was ignored by the public. In the 1880s Cézanne returned to Provence in the south of France, and after inheriting his father's large estate in 1886, largely abandoned efforts to promote his work. He did not gain commercial success until he was in his 50s.\n " +p174806 +sa(dp174807 +g25268 +S'Landscape near Paris' +p174808 +sg25270 +S'Paul C\xc3\xa9zanne' +p174809 +sg25273 +S'oil on canvas' +p174810 +sg25275 +S'c. 1876' +p174811 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006a7.jpg' +p174812 +sg25267 +g27 +sa(dp174813 +g25268 +S'The Peppermint Bottle' +p174814 +sg25270 +S'Paul C\xc3\xa9zanne' +p174815 +sg25273 +S'oil on canvas' +p174816 +sg25275 +S'1893/1895' +p174817 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000071a.jpg' +p174818 +sg25267 +g27 +sa(dp174819 +g25273 +S'graphite' +p174820 +sg25267 +g27 +sg25275 +S'1916' +p174821 +sg25268 +S'View of Bath' +p174822 +sg25270 +S'Sir Muirhead Bone' +p174823 +sa(dp174824 +g25268 +S'Flowers in a Rococo Vase' +p174825 +sg25270 +S'Paul C\xc3\xa9zanne' +p174826 +sg25273 +S'oil on canvas' +p174827 +sg25275 +S'c. 1876' +p174828 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006a8.jpg' +p174829 +sg25267 +g27 +sa(dp174830 +g25268 +S'Chrysanthemums' +p174831 +sg25270 +S'Artist Information (' +p174832 +sg25273 +g27 +sg25275 +S'(painter)' +p174833 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000004c.jpg' +p174834 +sg25267 +g27 +sa(dp174835 +g25268 +S'Conversation among the Ruins' +p174836 +sg25270 +S'Giorgio De Chirico' +p174837 +sg25273 +S'oil on canvas' +p174838 +sg25275 +S'1927' +p174839 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e0c.jpg' +p174840 +sg25267 +g27 +sa(dp174841 +g25268 +S'Agostina' +p174842 +sg25270 +S'Jean-Baptiste-Camille Corot' +p174843 +sg25273 +S'oil on canvas' +p174844 +sg25275 +S'1866' +p174845 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d9e.jpg' +p174846 +sg25267 +g27 +sa(dp174847 +g25268 +S'Forest of Fontainebleau' +p174848 +sg25270 +S'Jean-Baptiste-Camille Corot' +p174849 +sg25273 +S'oil on canvas' +p174850 +sg25275 +S'1834' +p174851 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dc5.jpg' +p174852 +sg25267 +S'The impressionist style developed as a method to render more accurately the\r\nappearance of the natural world, and was principally a technique for landscape painting.\r\nCorot, whose career began in the late 1820s when the academic tradition of landscape\r\npainting was being revived, was one of the most prolific and influential exponents\r\nof the genre. \n In accord with academic training, \n ' +p174853 +sa(dp174854 +g25268 +S'Rocks in the Forest of Fontainebleau' +p174855 +sg25270 +S'Jean-Baptiste-Camille Corot' +p174856 +sg25273 +S'oil on canvas' +p174857 +sg25275 +S'1860/1865' +p174858 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000db0.jpg' +p174859 +sg25267 +g27 +sa(dp174860 +g25268 +S'A View near Volterra' +p174861 +sg25270 +S'Jean-Baptiste-Camille Corot' +p174862 +sg25273 +S'oil on canvas' +p174863 +sg25275 +S'1838' +p174864 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b1a.jpg' +p174865 +sg25267 +g27 +sa(dp174866 +g25268 +S'Portrait of a Young Girl' +p174867 +sg25270 +S'Gustave Courbet' +p174868 +sg25273 +S'oil on canvas' +p174869 +sg25275 +S'1857' +p174870 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b1b.jpg' +p174871 +sg25267 +g27 +sa(dp174872 +g25273 +S'oil on canvas' +p174873 +sg25267 +g27 +sg25275 +S'1866' +p174874 +sg25268 +S'The Promenade' +p174875 +sg25270 +S'Gustave Courbet' +p174876 +sa(dp174877 +g25268 +S'A Young Woman Reading' +p174878 +sg25270 +S'Gustave Courbet' +p174879 +sg25273 +S'oil on canvas' +p174880 +sg25275 +S'c. 1866/1868' +p174881 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000db9.jpg' +p174882 +sg25267 +g27 +sa(dp174883 +g25273 +S'graphite with wash' +p174884 +sg25267 +g27 +sg25275 +S'unknown date\n' +p174885 +sg25268 +S'The Thames' +p174886 +sg25270 +S'Sir Muirhead Bone' +p174887 +sa(dp174888 +g25268 +S'The Sacrament of the Last Supper' +p174889 +sg25270 +S'Salvador Dal\xc3\xad' +p174890 +sg25273 +S'oil on canvas' +p174891 +sg25275 +S'1955' +p174892 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000df9.jpg' +p174893 +sg25267 +g27 +sa(dp174894 +g25268 +S'The Farm' +p174895 +sg25270 +S'Charles-Fran\xc3\xa7ois Daubigny' +p174896 +sg25273 +S'oil on canvas' +p174897 +sg25275 +S'1855' +p174898 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000db6.jpg' +p174899 +sg25267 +g27 +sa(dp174900 +g25268 +S'Hippolyte Lavoignat' +p174901 +sg25270 +S'Artist Information (' +p174902 +sg25273 +S'French, 1808 - 1879' +p174903 +sg25275 +S'(related artist)' +p174904 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000df/a000dfc3.jpg' +p174905 +sg25267 +g27 +sa(dp174906 +g25268 +S'Portrait of a Young Woman in White' +p174907 +sg25270 +S'Artist Information (' +p174908 +sg25273 +S'French, 1748 - 1825' +p174909 +sg25275 +S'(related artist)' +p174910 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000da6.jpg' +p174911 +sg25267 +g27 +sa(dp174912 +g25268 +S'Sweet Tremulous Leaves' +p174913 +sg25270 +S'Arthur B. Davies' +p174914 +sg25273 +S'oil on canvas' +p174915 +sg25275 +S'1922/1923' +p174916 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000074.jpg' +p174917 +sg25267 +g27 +sa(dp174918 +g25268 +S'Flecks of Foam' +p174919 +sg25270 +S'Henry Golden Dearth' +p174920 +sg25273 +S'oil on wood' +p174921 +sg25275 +S'c. 1911/1912' +p174922 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000076.jpg' +p174923 +sg25267 +g27 +sa(dp174924 +g25268 +S'Madame Camus' +p174925 +sg25270 +S'Edgar Degas' +p174926 +sg25273 +S'oil on canvas' +p174927 +sg25275 +S'1869/1870' +p174928 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e96.jpg' +p174929 +sg25267 +g27 +sa(dp174930 +g25268 +S'Four Dancers' +p174931 +sg25270 +S'Edgar Degas' +p174932 +sg25273 +S'oil on canvas' +p174933 +sg25275 +S'c. 1899' +p174934 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006b8.jpg' +p174935 +sg25267 +S'Degas studied his preferred subject, ballet performers, in hundreds of works. \n Two of the figures repeat poses of a model who appears in a unique set of three photographic negatives. Shot between about 1895 and 1898, the original plates solarized into colors that resemble, in reverse, the oranges and greens in \n ' +p174936 +sa(dp174937 +g25268 +S'Achille De Gas in the Uniform of a Cadet' +p174938 +sg25270 +S'Edgar Degas' +p174939 +sg25273 +S'oil on canvas' +p174940 +sg25275 +S'1856/1857' +p174941 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000071c.jpg' +p174942 +sg25267 +g27 +sa(dp174943 +g25268 +S'Madame Ren\xc3\xa9 de Gas' +p174944 +sg25270 +S'Edgar Degas' +p174945 +sg25273 +S'oil on canvas' +p174946 +sg25275 +S'1872/1873' +p174947 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006b9.jpg' +p174948 +sg25267 +S'The impressionist style was incompatible with Degas\' meticulous paint handling\nand premeditated method of composing, and he preferred "independent" or "realist"\nto "impressionist" as the name of the movement. Degas did help establish and direct\nthe impressionist organization, however, and participated in seven of the eight\nexhibitions. He selected insistently modern themes -- ballet dancers, laundresses,\nprostitutes, cafés and café-concerts, and racetracks -- and depicted them in\nnumerous\nvariations. One other recurring genre was portraiture. Degas selected family and\nfriends as models rather than paint commissioned portraits, and his portraits are\noften unconventional characterizations. This portrait of Estelle Musson Balfour\nde Gas, the artist\'s first cousin and sister-in-law, was painted during Degas\' 1872-1873\nvisit to New Orleans.\n The 1871 discovery of the deterioration of his own vision sensitized the artist\nto Estelle\'s near-blindness when he visited the next year. Posture, gesture, accessories,\nand activities were often used by Degas to characterize the models in his portraits.\nSuch incidental details were deliberately omitted here, a similarly informative\ndecision. The soft focus of the painting, subdued and nearly monochromatic color\nharmonies, and Estelle\'s unfocused gaze parallel her limited visual capacity and\nindicate the artist\'s respect for Estelle and compassionate understanding of her\nsituation.\n ' +p174949 +sa(dp174950 +g25273 +S'pen and brown ink with brown wash' +p174951 +sg25267 +g27 +sg25275 +S'probably 1906' +p174952 +sg25268 +S'Horse Guards, London' +p174953 +sg25270 +S'Sir Muirhead Bone' +p174954 +sa(dp174955 +g25268 +S'Edmondo and Th\xc3\xa9r\xc3\xa8se Morbilli' +p174956 +sg25270 +S'Edgar Degas' +p174957 +sg25273 +S'oil on canvas' +p174958 +sg25275 +S'c. 1865' +p174959 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006ba.jpg' +p174960 +sg25267 +S"Degas' family was relatively affluent, so he did not have to rely \r\n entirely on sales of his work for financial support. He was thus free to \r\n experiment and choose his own subjects; almost all of his portraits depict \r\n relatives or friends. He was also able to delay finishing paintings, \r\n reworking them until they met his exacting standards. Many times Degas \r\n retrieved works he had already delivered so that he could perfect them. \r\n Some he never completed.\n This unfinished portrait of Degas' sister and her Neapolitan husband is \r\n one such example. (The painting was in his studio at the time of his \r\n death.) Notice how Thérèse's dress and shawl are undefined masses of color. There, Degas has scraped and rubbed the paint off the canvas. The dark lines indicate changes he intended but never made. The faces, by contrast, are carefully finished, detailed and expressive. Degas hoped to capture his sitters, he said, in "familiar and typical attitudes."\n " +p174961 +sa(dp174962 +g25273 +S'French, 1798 - 1863' +p174963 +sg25267 +g27 +sg25275 +S'(related artist)' +p174964 +sg25268 +S'Algerian Child' +p174965 +sg25270 +S'Artist Information (' +p174966 +sa(dp174967 +g25268 +S'Christopher Columbus and His Son at La R\xc3\xa1bida' +p174968 +sg25270 +S'Eug\xc3\xa8ne Delacroix' +p174969 +sg25273 +S'oil on canvas' +p174970 +sg25275 +S'1838' +p174971 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dcd.jpg' +p174972 +sg25267 +S"The hero, the individual of talent and passion who follows a difficult, solitary path to greatness, was central to romanticism. Here is Columbus at the final moment of frustration before his ultimate triumph. Almost penniless, he and his son have sought shelter in the monastery of La Rábida,\n where, according to legendary accounts, word of the fateful meeting with Queen Isabella would soon arrive.\n Calm rectangular forms dominate: the juncture of walls and ceiling, the parade of dark canvases down the hall, the large map that Columbus contemplates. The figure groups have solid geometrical form. Even the colors are quiet: the monks' habits, the soft light and brown shadows -- only the\n plume of Columbus' hat, which points to him as protagonist, interrupts this muted range. Neither the tone nor composition matches our image of Delacroix as the champion of color and exuberant form. More typical of his work, for\n example, are the bright color accents and dynamic zigzagging energy of \n " +p174973 +sa(dp174974 +g25268 +S'Flowers in a Vase' +p174975 +sg25270 +S'Andr\xc3\xa9 Derain' +p174976 +sg25273 +S'oil on canvas' +p174977 +sg25275 +S'1932' +p174978 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e97.jpg' +p174979 +sg25267 +g27 +sa(dp174980 +g25268 +S'Harlequin' +p174981 +sg25270 +S'Andr\xc3\xa9 Derain' +p174982 +sg25273 +S'oil on canvas' +p174983 +sg25275 +S'1919' +p174984 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ead.jpg' +p174985 +sg25267 +g27 +sa(dp174986 +g25268 +S'The Old Bridge' +p174987 +sg25270 +S'Andr\xc3\xa9 Derain' +p174988 +sg25273 +S'oil on canvas' +p174989 +sg25275 +S'1910' +p174990 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e98.jpg' +p174991 +sg25267 +g27 +sa(dp174992 +g25268 +S'Still Life' +p174993 +sg25270 +S'Andr\xc3\xa9 Derain' +p174994 +sg25273 +S'oil on canvas' +p174995 +sg25275 +S'1913' +p174996 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b1c.jpg' +p174997 +sg25267 +g27 +sa(dp174998 +g25268 +S'Maud Dale' +p174999 +sg25270 +S'Jean-Gabriel Domergue' +p175000 +sg25273 +S'oil on canvas' +p175001 +sg25275 +S'1923' +p175002 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a00060a4.jpg' +p175003 +sg25267 +g27 +sa(dp175004 +g25273 +S'oil on canvas' +p175005 +sg25267 +g27 +sg25275 +S'1914' +p175006 +sg25268 +S'A Picador' +p175007 +sg25270 +S'Jean-Gabriel Domergue' +p175008 +sa(dp175009 +g25268 +S'Anna de Peyster (?)' +p175010 +sg25270 +S'Frans van Doornik' +p175011 +sg25273 +S'oil on canvas' +p175012 +sg25275 +S'1731' +p175013 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e28.jpg' +p175014 +sg25267 +g27 +sa(dp175015 +g25273 +S'charcoal and graphite with watercolor heightened with white' +p175016 +sg25267 +g27 +sg25275 +S'1918' +p175017 +sg25268 +S'H.M.S. Princess Royal at Scapa Flow' +p175018 +sg25270 +S'Sir Muirhead Bone' +p175019 +sa(dp175020 +g25268 +S'Isaac de Peyster (?)' +p175021 +sg25270 +S'Frans van Doornik' +p175022 +sg25273 +S'oil on canvas' +p175023 +sg25275 +S'1731' +p175024 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e29.jpg' +p175025 +sg25267 +g27 +sa(dp175026 +g25268 +S'Caf\xc3\xa9 du D\xc3\xb4me' +p175027 +sg25270 +S'Guy P\xc3\xa8ne du Bois' +p175028 +sg25273 +S'oil on wood' +p175029 +sg25275 +S'1925/1926' +p175030 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000018c.jpg' +p175031 +sg25267 +g27 +sa(dp175032 +g25268 +S'Hallway, Italian Restaurant' +p175033 +sg25270 +S'Guy P\xc3\xa8ne du Bois' +p175034 +sg25273 +S'oil on canvas' +p175035 +sg25275 +S'1922' +p175036 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000018d.jpg' +p175037 +sg25267 +g27 +sa(dp175038 +g25268 +S'The Politicians' +p175039 +sg25270 +S'Guy P\xc3\xa8ne du Bois' +p175040 +sg25273 +S'oil on fabric-covered millboard' +p175041 +sg25275 +S'c. 1912' +p175042 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000018e.jpg' +p175043 +sg25267 +g27 +sa(dp175044 +g25268 +S'La Rue de la Sant\xc3\xa9' +p175045 +sg25270 +S'Guy P\xc3\xa8ne du Bois' +p175046 +sg25273 +S'oil on canvas' +p175047 +sg25275 +S'1928' +p175048 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000018f.jpg' +p175049 +sg25267 +g27 +sa(dp175050 +g25268 +S'Judgment of Paris' +p175051 +sg25270 +S'Charles Georges Dufresne' +p175052 +sg25273 +S'oil on canvas' +p175053 +sg25275 +S'1925' +p175054 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dd0.jpg' +p175055 +sg25267 +g27 +sa(dp175056 +g25268 +S'Still Life' +p175057 +sg25270 +S'Charles Georges Dufresne' +p175058 +sg25273 +S'oil on canvas' +p175059 +sg25275 +S'1927/1928' +p175060 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000eaa.jpg' +p175061 +sg25267 +g27 +sa(dp175062 +g25268 +S'Reclining Nude' +p175063 +sg25270 +S'Raoul Dufy' +p175064 +sg25273 +S'oil on canvas' +p175065 +sg25275 +S'1930' +p175066 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ece.jpg' +p175067 +sg25267 +g27 +sa(dp175068 +g25268 +S'Saint-Jeannet' +p175069 +sg25270 +S'Raoul Dufy' +p175070 +sg25273 +S'oil on canvas' +p175071 +sg25275 +S'1910' +p175072 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ecf.jpg' +p175073 +sg25267 +g27 +sa(dp175074 +g25273 +S'oil on canvas' +p175075 +sg25267 +g27 +sg25275 +S'c. 1730' +p175076 +sg25268 +S'Portrait of a Girl' +p175077 +sg25270 +S'British 18th Century' +p175078 +sa(dp175079 +g25273 +S'watercolor and pen and black ink' +p175080 +sg25267 +g27 +sg25275 +S'unknown date\n' +p175081 +sg25268 +S'Golf at Canter, Sussex' +p175082 +sg25270 +S'Sir Muirhead Bone' +p175083 +sa(dp175084 +g25268 +S'Portrait of Sonia' +p175085 +sg25270 +S'Henri Fantin-Latour' +p175086 +sg25273 +S'oil on canvas' +p175087 +sg25275 +S'1890' +p175088 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000658.jpg' +p175089 +sg25267 +S"Not all the painting produced in France in the 1890s traced its lineage \n to impressionism or had Cassatt's bold color and composition. This \n portrait, for example, with its meticulous technique and careful attention \n to texture and detail, seems almost anachronistic. The artist was an \n intimate of the impressionists and avant-garde -- perhaps his most famous \n work is a group portrait that includes Manet, Renoir, Monet, and Zola -- but \n Fantin exhibited at the Salon and never abandoned his allegiance to the old \n masters. Still, this portrait of Fantin's niece projects a different sort \n of modernism. He approaches his subjects as a camera lens, sharpened to \n such intense focus that it illuminates a preternatural reality beyond \n appearance.\n " +p175090 +sa(dp175091 +g25268 +S'Still Life' +p175092 +sg25270 +S'Henri Fantin-Latour' +p175093 +sg25273 +S'oil on canvas' +p175094 +sg25275 +S'1866' +p175095 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000659.jpg' +p175096 +sg25267 +g27 +sa(dp175097 +g25268 +S'The Basket of Flowers' +p175098 +sg25270 +S'Frederick Carl Frieseke' +p175099 +sg25273 +S'oil on canvas' +p175100 +sg25275 +S'c. 1913/1917' +p175101 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000c3.jpg' +p175102 +sg25267 +g27 +sa(dp175103 +g25268 +S'Brittany Landscape' +p175104 +sg25270 +S'Paul Gauguin' +p175105 +sg25273 +S'oil on canvas' +p175106 +sg25275 +S'1888' +p175107 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000063a.jpg' +p175108 +sg25267 +g27 +sa(dp175109 +g25268 +S'Fatata te Miti (By the Sea)' +p175110 +sg25270 +S'Paul Gauguin' +p175111 +sg25273 +S'oil on canvas' +p175112 +sg25275 +S'1892' +p175113 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000063b.jpg' +p175114 +sg25267 +S'Like \n Their similarities invite us to compare the two works, and in other respects we find they are quite different. Where \n ' +p175115 +sa(dp175116 +g25268 +S'Self-Portrait' +p175117 +sg25270 +S'Paul Gauguin' +p175118 +sg25273 +S'oil on wood' +p175119 +sg25275 +S'1889' +p175120 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000063c.jpg' +p175121 +sg25267 +S"Self–portraiture constituted a significant element of Gauguin's production, particularly in 1888 and 1889. Gauguin's interest was prompted in part by Vincent van Gogh's 1888 portrait series including \n This \n " +p175122 +sa(dp175123 +g25268 +S'La Mousm\xc3\xa9' +p175124 +sg25270 +S'Vincent van Gogh' +p175125 +sg25273 +S'oil on canvas' +p175126 +sg25275 +S'1888' +p175127 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000064a.jpg' +p175128 +sg25267 +S"The intention and determination that inform Van Gogh's art can be obscured by the sensational legends that have arisen about his life. The artist's correspondence, particularly from his brief mature period of 1888 to 1890, contradicts popular lore and attests to the deliberateness, sensitivity, and integrity of his work.\n On July 29, 1888, Van Gogh wrote his younger brother Theo, an art dealer in a Parisian gallery, that "if you know what a 'mousmé' is (you will know when you have read Loti's \n Van Gogh wrote that \n " +p175129 +sa(dp175130 +g25268 +S'The Olive Orchard' +p175131 +sg25270 +S'Vincent van Gogh' +p175132 +sg25273 +S'oil on canvas' +p175133 +sg25275 +S'1889' +p175134 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000064b.jpg' +p175135 +sg25267 +S'During the last six or seven months of 1889, Van Gogh did at least fifteen paintings of olive trees—a subject he found both demanding and compelling. He wrote to his brother Theo that he was "struggling to catch [the olive trees]. They are old silver, sometimes with more blue in them, sometimes greenish, bronzed, fading white above a soil which is yellow, pink, violet tinted orange...very difficult." He found that the "rustle of the olive grove has something very secret in it, and immensely old. It is too beautiful for us to dare to paint it or to be able to imagine it."\n In the olive trees—in the expressive power of their ancient and gnarled forms—Van Gogh found a manifestation of the spiritual force he believed resided in all of nature. His brushstrokes make the soil and even the sky seem alive with the same rustling motion as the leaves, stirred to a shimmer by the Mediterranean wind. These strong individual dashes do not seem painted so much as drawn onto the canvas with a heavily loaded brush. The energy in their continuous rhythm communicates to us, in an almost physical way, the living force that Van Gogh found within the trees themselves, the very spiritual force that he believed had shaped them.\n ' +p175136 +sa(dp175137 +g25268 +S'Portrait of Vincent van Gogh' +p175138 +sg25270 +S'Artist Information (' +p175139 +sg25273 +S'Dutch, 1853 - 1890' +p175140 +sg25275 +S'(related artist)' +p175141 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a00060a5.jpg' +p175142 +sg25267 +g27 +sa(dp175143 +g25268 +S'Dr. Vignardonne' +p175144 +sg25270 +S'Antoine-Jean Gros' +p175145 +sg25273 +S'oil on canvas' +p175146 +sg25275 +S'1827' +p175147 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e9d.jpg' +p175148 +sg25267 +g27 +sa(dp175149 +g25273 +S'graphite' +p175150 +sg25267 +g27 +sg25275 +S'unknown date\n' +p175151 +sg25268 +S'The Gorbals, Glasgow' +p175152 +sg25270 +S'Sir Muirhead Bone' +p175153 +sa(dp175154 +g25268 +S'The Bridge of Louis Philippe' +p175155 +sg25270 +S'Jean-Baptiste-Armand Guillaumin' +p175156 +sg25273 +S'oil on canvas' +p175157 +sg25275 +S'1875' +p175158 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000065c.jpg' +p175159 +sg25267 +g27 +sa(dp175160 +g25268 +S'Nude Seated' +p175161 +sg25270 +S'Childe Hassam' +p175162 +sg25273 +S'oil on canvas' +p175163 +sg25275 +S'1912' +p175164 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000e6.jpg' +p175165 +sg25267 +g27 +sa(dp175166 +g25268 +S'The Early Scholar' +p175167 +sg25270 +S'Eastman Johnson' +p175168 +sg25273 +S'oil on academy board on canvas' +p175169 +sg25275 +S'c. 1865' +p175170 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000011e.jpg' +p175171 +sg25267 +g27 +sa(dp175172 +g25268 +S'In the Park' +p175173 +sg25270 +S'Marie Laurencin' +p175174 +sg25273 +S'oil on canvas' +p175175 +sg25275 +S'1924' +p175176 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ed7.jpg' +p175177 +sg25267 +g27 +sa(dp175178 +g25268 +S'Woman with a Mirror' +p175179 +sg25270 +S'Fernand L\xc3\xa9ger' +p175180 +sg25273 +S'oil on canvas' +p175181 +sg25275 +S'1929' +p175182 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f37.jpg' +p175183 +sg25267 +g27 +sa(dp175184 +g25268 +S'The Big Cloud' +p175185 +sg25270 +S'Jean Lur\xc3\xa7at' +p175186 +sg25273 +S'oil on canvas' +p175187 +sg25275 +S'1929' +p175188 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000eda.jpg' +p175189 +sg25267 +g27 +sa(dp175190 +g25268 +S'Madame Michel-L\xc3\xa9vy' +p175191 +sg25270 +S'Edouard Manet' +p175192 +sg25273 +S'pastel on canvas' +p175193 +sg25275 +S'1882' +p175194 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000666.jpg' +p175195 +sg25267 +g27 +sa(dp175196 +g25268 +S'The Old Musician' +p175197 +sg25270 +S'Edouard Manet' +p175198 +sg25273 +S'oil on canvas' +p175199 +sg25275 +S'1862' +p175200 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000667.jpg' +p175201 +sg25267 +S"In a review of the 1846 Salon, poet and critic Charles Baudelaire urged artists to depict "the heroism of modern life." Manet embodied Baudelaire's ideal painter of contemporary Paris. Emperor Napoleon III ordered the renovation of Paris under the direction of Baron Haussmann, and early in the 1860s the slum where Manet located his studio was being razed to accommodate the planned broad, tree–lined boulevards that still characterize the city. In this painting, Manet represented a strolling musician flanked by a gypsy girl and infant, an acrobat, an urchin, a drunkard, and a ragpicker—individuals the artist might have observed near his studio. The seemingly casual gathering is composed of the urban poor, possibly dispossessed by Haussmann\xe2\x80\x99s projects. Neither anecdotal nor sentimental, Manet\xe2\x80\x99s portrayal carries the careful neutrality of an unbiased onlooker, and this distinctly modern ambiguity and detachment are characteristic of all Manet's work.\n By placing pigments side by side rather than blending tones, Manet could preserve the immediacy and directness of preliminary oil studies in his finished works. Effects produced by this technique were sharper and crisper than those obtained using academic methods. When they first encountered Manet's work early in the 1860s, Monet and Renoir admired his manner of painting and emulated it as they forged the style known as impressionism.\n " +p175202 +sa(dp175203 +g25268 +S'The Musician' +p175204 +sg25270 +S'Louis Casimir Ladislas Marcoussis' +p175205 +sg25273 +S'oil on canvas' +p175206 +sg25275 +S'1914' +p175207 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000eb2.jpg' +p175208 +sg25267 +g27 +sa(dp175209 +g25268 +S'The Pont Neuf' +p175210 +sg25270 +S'Albert Marquet' +p175211 +sg25273 +S'oil on canvas' +p175212 +sg25275 +S'1906' +p175213 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000eb3.jpg' +p175214 +sg25267 +g27 +sa(dp175215 +g25273 +S'charcoal with white chalk and graphite on brown paper' +p175216 +sg25267 +g27 +sg25275 +S'unknown date\n' +p175217 +sg25268 +S'Glasgow' +p175218 +sg25270 +S'Sir Muirhead Bone' +p175219 +sa(dp175220 +g25268 +S'La Coiffure' +p175221 +sg25270 +S'Henri Matisse' +p175222 +sg25273 +S'oil on canvas' +p175223 +sg25275 +S'1901' +p175224 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000eb4.jpg' +p175225 +sg25267 +g27 +sa(dp175226 +g25268 +S'Les Gorges du Loup' +p175227 +sg25270 +S'Henri Matisse' +p175228 +sg25273 +S'oil on canvas' +p175229 +sg25275 +S'1920/1925' +p175230 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dfc.jpg' +p175231 +sg25267 +g27 +sa(dp175232 +g25268 +S'Odalisque Seated with Arms Raised, Green Striped Chair' +p175233 +sg25270 +S'Henri Matisse' +p175234 +sg25273 +S'oil on canvas' +p175235 +sg25275 +S'1923' +p175236 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e06.jpg' +p175237 +sg25267 +g27 +sa(dp175238 +g25268 +S'The Plumed Hat' +p175239 +sg25270 +S'Henri Matisse' +p175240 +sg25273 +S'oil on canvas' +p175241 +sg25275 +S'1919' +p175242 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e07.jpg' +p175243 +sg25267 +g27 +sa(dp175244 +g25268 +S'Still Life with Apples on a Pink Tablecloth' +p175245 +sg25270 +S'Henri Matisse' +p175246 +sg25273 +S'oil on canvas' +p175247 +sg25275 +S'1924' +p175248 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e08.jpg' +p175249 +sg25267 +g27 +sa(dp175250 +g25273 +S'pastel on paper' +p175251 +sg25267 +g27 +sg25275 +S'c. 1925' +p175252 +sg25268 +S'Woman with Exotic Plant' +p175253 +sg25270 +S'Henri Matisse' +p175254 +sa(dp175255 +g25268 +S'Adrienne (Woman with Bangs)' +p175256 +sg25270 +S'Amedeo Modigliani' +p175257 +sg25273 +S'oil on linen' +p175258 +sg25275 +S'1917' +p175259 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e0d.jpg' +p175260 +sg25267 +g27 +sa(dp175261 +g25268 +S'Madame Am\xc3\xa9d\xc3\xa9e (Woman with Cigarette)' +p175262 +sg25270 +S'Amedeo Modigliani' +p175263 +sg25273 +S'oil on canvas' +p175264 +sg25275 +S'1918' +p175265 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000ddd.jpg' +p175266 +sg25267 +g27 +sa(dp175267 +g25268 +S'L\xc3\xa9on Bakst' +p175268 +sg25270 +S'Amedeo Modigliani' +p175269 +sg25273 +S'oil on canvas' +p175270 +sg25275 +S'1917' +p175271 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dde.jpg' +p175272 +sg25267 +g27 +sa(dp175273 +g25268 +S'Gypsy Woman with Baby' +p175274 +sg25270 +S'Amedeo Modigliani' +p175275 +sg25273 +S'oil on canvas' +p175276 +sg25275 +S'1919' +p175277 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000ddf.jpg' +p175278 +sg25267 +g27 +sa(dp175279 +g25273 +S'graphite' +p175280 +sg25267 +g27 +sg25275 +S'unknown date\n' +p175281 +sg25268 +S'Govan' +p175282 +sg25270 +S'Sir Muirhead Bone' +p175283 +sa(dp175284 +g25268 +S'Madame Kisling' +p175285 +sg25270 +S'Amedeo Modigliani' +p175286 +sg25273 +S'oil on canvas' +p175287 +sg25275 +S'c. 1917' +p175288 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000de0.jpg' +p175289 +sg25267 +g27 +sa(dp175290 +g25268 +S'Woman with Red Hair' +p175291 +sg25270 +S'Amedeo Modigliani' +p175292 +sg25273 +S'oil on canvas' +p175293 +sg25275 +S'1917' +p175294 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e12.jpg' +p175295 +sg25267 +g27 +sa(dp175296 +g25268 +S'Banks of the Seine, V\xc3\xa9theuil' +p175297 +sg25270 +S'Claude Monet' +p175298 +sg25273 +S'oil on canvas' +p175299 +sg25275 +S'1880' +p175300 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000066b.jpg' +p175301 +sg25267 +S"During the early years of impressionism, one of Monet's primary intentions was to capture fleeting effects of light and atmosphere. Working quickly, out of doors, he sought to transcribe with directness and spontaneity his sensory experience of the landscape before him. But by about 1880, when this picture was painted, Monet was beginning to show more interest in the painted surface itself. This interest would lead him to explore the same subject repeatedly in his series paintings, seeking to unify individual canvases and harmonize each series as a whole.\n Here, brushstrokes vary in response to the different textures they portray—contrast, for example, the quick horizontal skips in the river's gently rippled surface with the rounder, swirling forms of the sky. But it is the foreground, where thick grasses and flowers are painted with crowded, exuberant strokes, that draws our attention. These heavy layers of paint were probably not completed on the spot, but instead carefully reworked in the studio. The strokes assume an importance in their own right, becoming decorative as\r\nwell as descriptive. Monet, however, never strays far from the natural forms that were his inspiration.\n " +p175302 +sa(dp175303 +g25268 +S'Woman Seated under the Willows' +p175304 +sg25270 +S'Claude Monet' +p175305 +sg25273 +S'oil on canvas' +p175306 +sg25275 +S'1880' +p175307 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000066c.jpg' +p175308 +sg25267 +g27 +sa(dp175309 +g25268 +S'Rouen Cathedral, West Fa\xc3\xa7ade, Sunlight' +p175310 +sg25270 +S'Claude Monet' +p175311 +sg25273 +S'oil on canvas' +p175312 +sg25275 +S'1894' +p175313 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000674.jpg' +p175314 +sg25267 +S"In late January or early February 1892, Monet rented rooms across from Rouen cathedral. He remained until spring, painting its looming façade many times, most often as we see it here, close up and cropped to the sides. The next winter\r\nhe returned to paint the cathedral again, making in all more than thirty views of it. But it was not so much the deeply carved Gothic façade that was Monet's subject as it was the atmosphere—the \n " +p175315 +sa(dp175316 +g25268 +S'The Seine at Giverny' +p175317 +sg25270 +S'Claude Monet' +p175318 +sg25273 +S'oil on canvas' +p175319 +sg25275 +S'1897' +p175320 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000686.jpg' +p175321 +sg25267 +S'From the early 1860s until 1889, not a single year passed that Monet did not paint the Seine. Its flower-strewn banks and watery reflections appear in six of his paintings in the National Gallery of Art. In 1896, though, he began a more systematic study of the river near his home at Giverny, where he moved\r\nin 1883. Lured by the lifting haze and quickly changing light of early morning, he often rose before sunrise—at 3:30 a.m.—to be at his easel by dawn. He worked from a flat-bottomed boat tied up near the bank. But, as with his other series paintings, Monet only began the pictures outdoors, elaborating them over a period of months in his studio, taking special pains to adjust their light. These paintings, more precisely than his other series pictures, show the progression of time and the subtle changes in light as hours, even minutes, pass.\n This painting is related to the early morning series, but is even less defined. The paint here, although it is often thickly applied on the canvas, gives the impression of transparency, like thin veils of mist. This \n ' +p175322 +sa(dp175323 +g25268 +S'Jerusalem Artichoke Flowers' +p175324 +sg25270 +S'Claude Monet' +p175325 +sg25273 +S'oil on canvas' +p175326 +sg25275 +S'1880' +p175327 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000066d.jpg' +p175328 +sg25267 +g27 +sa(dp175329 +g25268 +S'Palazzo da Mula, Venice' +p175330 +sg25270 +S'Claude Monet' +p175331 +sg25273 +S'oil on canvas' +p175332 +sg25275 +S'1908' +p175333 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000663.jpg' +p175334 +sg25267 +g27 +sa(dp175335 +g25268 +S'Waterloo Bridge, Gray Day' +p175336 +sg25270 +S'J. M. W. Turner' +p175337 +sg25273 +S'oil on canvas' +p175338 +sg25275 +S'1903' +p175339 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000675.jpg' +p175340 +sg25267 +S"With their smokestacks, barge traffic, and busy bridges, Monet's London paintings were emphatically urban—the only urban subjects he painted after the 1870s. After returning to France following the Franco-Prussian War, he moved from Paris, preferring to live nearer the countryside. His interest in London and its light-filtering fog may have been spurred by admiration for the English artist \n Like Whistler, most artists used a subdued palette and a limited range of colors to reproduce the grayness of the city. Monet's London paintings are quite different. Even in these subjects dulled by fog and coal dust, he perceived color in every form. Drifting mists are painted with delicate shades of lilac and pink, and the sky is tinged with pale olive. The shaded arches of the bridge are darkened with blues, not black, and its traffic is highlighted with brilliant flecks of scarlet.\n " +p175341 +sa(dp175342 +g25268 +S'Madame Cahen' +p175343 +sg25270 +S'Adolphe Monticelli' +p175344 +sg25273 +S'oil on canvas' +p175345 +sg25275 +S'1869' +p175346 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdce.jpg' +p175347 +sg25267 +g27 +sa(dp175348 +g25273 +S'pen and black ink with wash over graphite' +p175349 +sg25267 +g27 +sg25275 +S'unknown date\n' +p175350 +sg25268 +S'Harwich' +p175351 +sg25270 +S'Sir Muirhead Bone' +p175352 +sa(dp175353 +g25268 +S'In the Dining Room' +p175354 +sg25270 +S'Berthe Morisot' +p175355 +sg25273 +S'oil on canvas' +p175356 +sg25275 +S'1886' +p175357 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000689.jpg' +p175358 +sg25267 +g27 +sa(dp175359 +g25268 +S'The Mother and Sister of the Artist' +p175360 +sg25270 +S'Berthe Morisot' +p175361 +sg25273 +S'oil on canvas' +p175362 +sg25275 +S'1869/1870' +p175363 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004a/a0004a02.jpg' +p175364 +sg25267 +S"In an 1876 review, a sarcastic critic referred to participants in the second\r\nImpressionist exhibition as "five or six lunatics—among them a woman—a group of unfortunate creatures." Berthe Morisot is the woman to whom he alluded. Morisot, an original member of the group, showed in seven of its eight exhibitions and contributed financially to sustain the impressionist movement. \n The painting, a family portrait and an intimate domestic genre scene, was begun when Morisot's sister Edma Pontillon stayed with her family in the winter of 1869–1870 to await the birth of her first child, a pregnancy discreetly disguised by Edma's loose white morning robe. Anxious about sending the painting to the Salon, Morisot solicited Manet's advice, and on the last day for submissions he visited the Morisot home. Morisot's correspondence reveals that, rather than offer verbal suggestions, Manet extensively repainted the figure of the artist's mother. Manet's suave shorthand, seen in the mother's features and black dress, differs obviously from the nervous refinement of Morisot's touch in her sister's features, the floral upholstery, and the reflections in the mirror over Edma's head.\n " +p175365 +sa(dp175366 +g25273 +S'oil on canvas' +p175367 +sg25267 +g27 +sg25275 +S'1929' +p175368 +sg25268 +S'The Market' +p175369 +sg25270 +S'Roland Oudot' +p175370 +sa(dp175371 +g25268 +S'Elizabeth Oakes Prince Smith (Mrs. Seba Smith)' +p175372 +sg25270 +S'John Wesley Paradise' +p175373 +sg25273 +S'oil on canvas' +p175374 +sg25275 +S'c. 1845' +p175375 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d3f.jpg' +p175376 +sg25267 +g27 +sa(dp175377 +g25268 +S'Classical Head' +p175378 +sg25270 +S'Pablo Picasso' +p175379 +sg25273 +S'oil on canvas' +p175380 +sg25275 +S'1922' +p175381 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000de3.jpg' +p175382 +sg25267 +g27 +sa(dp175383 +g25268 +S'Family of Saltimbanques' +p175384 +sg25270 +S'Pablo Picasso' +p175385 +sg25273 +S'oil on canvas' +p175386 +sg25275 +S'1905' +p175387 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000eb9.jpg' +p175388 +sg25267 +S"From late 1904 to the beginning of 1906, Picasso's work centered on a single theme: the \n Circus performers were regarded as social outsiders, poor but independent. As such, they provided a telling symbol for the alienation of avant-garde artists such as Picasso. Indeed, it has been suggested that the \n Picasso reworked the \n " +p175389 +sa(dp175390 +g25268 +S'Juggler with Still Life' +p175391 +sg25270 +S'Pablo Picasso' +p175392 +sg25273 +S'gouache on cardboard' +p175393 +sg25275 +S'1905' +p175394 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000de5.jpg' +p175395 +sg25267 +g27 +sa(dp175396 +g25268 +S'The Lovers' +p175397 +sg25270 +S'Pablo Picasso' +p175398 +sg25273 +S'oil on linen' +p175399 +sg25275 +S'1923' +p175400 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000de6.jpg' +p175401 +sg25267 +g27 +sa(dp175402 +g25268 +S'Dora Maar' +p175403 +sg25270 +S'Pablo Picasso' +p175404 +sg25273 +S'oil on linen' +p175405 +sg25275 +S'1941' +p175406 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000de7.jpg' +p175407 +sg25267 +g27 +sa(dp175408 +g25268 +S'Madame Picasso' +p175409 +sg25270 +S'Pablo Picasso' +p175410 +sg25273 +S'oil on linen' +p175411 +sg25275 +S'1923' +p175412 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000de8.jpg' +p175413 +sg25267 +g27 +sa(dp175414 +g25273 +S'pen and black ink with gray wash on gray paper' +p175415 +sg25267 +g27 +sg25275 +S'1908' +p175416 +sg25268 +S'Leeds' +p175417 +sg25270 +S'Sir Muirhead Bone' +p175418 +sa(dp175419 +g25268 +S'Still Life' +p175420 +sg25270 +S'Pablo Picasso' +p175421 +sg25273 +S'oil on canvas' +p175422 +sg25275 +S'1918' +p175423 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000de9.jpg' +p175424 +sg25267 +g27 +sa(dp175425 +g25268 +S'The Tragedy' +p175426 +sg25270 +S'Pablo Picasso' +p175427 +sg25273 +S'oil on wood' +p175428 +sg25275 +S'1903' +p175429 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00022/a00022bd.jpg' +p175430 +sg25267 +g27 +sa(dp175431 +g25268 +S'Two Youths' +p175432 +sg25270 +S'Pablo Picasso' +p175433 +sg25273 +S'oil on canvas' +p175434 +sg25275 +S'1906' +p175435 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dea.jpg' +p175436 +sg25267 +g27 +sa(dp175437 +g25268 +S'Boulevard des Italiens, Morning, Sunlight' +p175438 +sg25270 +S'Camille Pissarro' +p175439 +sg25273 +S'oil on canvas' +p175440 +sg25275 +S'1897' +p175441 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000690.jpg' +p175442 +sg25267 +g27 +sa(dp175443 +g25268 +S'Peasant Woman' +p175444 +sg25270 +S'Camille Pissarro' +p175445 +sg25273 +S'oil on canvas' +p175446 +sg25275 +S'1880' +p175447 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000695.jpg' +p175448 +sg25267 +g27 +sa(dp175449 +g25268 +S'The Prodigal Son' +p175450 +sg25270 +S'Pierre Puvis de Chavannes' +p175451 +sg25273 +S'oil on linen' +p175452 +sg25275 +S'probably c. 1879' +p175453 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006d4.jpg' +p175454 +sg25267 +g27 +sa(dp175455 +g25268 +S'Spring Woods' +p175456 +sg25270 +S'Henry Ward Ranger' +p175457 +sg25273 +S'oil on canvas' +p175458 +sg25275 +S'c. 1910' +p175459 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001e4.jpg' +p175460 +sg25267 +g27 +sa(dp175461 +g25268 +S'Evocation of Roussel' +p175462 +sg25270 +S'Odilon Redon' +p175463 +sg25273 +S'oil on canvas' +p175464 +sg25275 +S'c. 1912' +p175465 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a00006f1.jpg' +p175466 +sg25267 +g27 +sa(dp175467 +g25268 +S'Bather Arranging Her Hair' +p175468 +sg25270 +S'Auguste Renoir' +p175469 +sg25273 +S'oil on canvas' +p175470 +sg25275 +S'1893' +p175471 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000720.jpg' +p175472 +sg25267 +g27 +sa(dp175473 +g25273 +S'graphite' +p175474 +sg25267 +g27 +sg25275 +S'unknown date\n' +p175475 +sg25268 +S'New Inn, London' +p175476 +sg25270 +S'Sir Muirhead Bone' +p175477 +sa(dp175478 +g25268 +S'Diana' +p175479 +sg25270 +S'Auguste Renoir' +p175480 +sg25273 +S'oil on canvas' +p175481 +sg25275 +S'1867' +p175482 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000709.jpg' +p175483 +sg25267 +S"Renoir wrote that he had produced this painting as a study of a nude, the sort of exercise that was a mainstay of the academic tradition of painting from a posed model in the studio. Notice, for example, that the woman's foot rests on an elevated perch, and that a prop relieves the strain of her raised arms. Such devices were necessary for a model to maintain her pose. This model, though, is Lise Tréhot, the artist's mistress, and in the end, as Renoir admitted, "the picture was considered pretty improper." He said he added the bow, the dead animal, and the deerskin to transform Lise into Diana, the ancient goddess of the hunt, whose voluptuous nudity would be more acceptable to a Salon jury than that of a real woman. However, the painting was rejected by the Salon in 1867, its portrayal perhaps too close to that of a real, flesh–and–blood woman than to a classical mythological heroine.\n The picture's style shows the influence of realist painter \n " +p175484 +sa(dp175485 +g25268 +S'A Girl with a Watering Can' +p175486 +sg25270 +S'Auguste Renoir' +p175487 +sg25273 +S'oil on canvas' +p175488 +sg25275 +S'1876' +p175489 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000070a.jpg' +p175490 +sg25267 +S'In 1876, Renoir began to paint anecdotal depictions of women and children, subjects in which he excelled. \n Specific identifications have been proposed for the girl, but none is convincing. More likely, Renoir depicted a neighborhood child whose pretty features pleased him. A girl with similar curly blond hair, sparkling blue eyes, plump pink cheeks, and smiling red lips appears, dressed the same way in other paintings by Renoir, suggesting she was a favorite figure in the artist\xe2\x80\x99s repertory. \n ' +p175491 +sa(dp175492 +g25268 +S'Odalisque' +p175493 +sg25270 +S'Auguste Renoir' +p175494 +sg25273 +S'oil on canvas' +p175495 +sg25275 +S'1870' +p175496 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a15.jpg' +p175497 +sg25267 +g27 +sa(dp175498 +g25268 +S'Caroline R\xc3\xa9my ("S\xc3\xa9verine")' +p175499 +sg25270 +S'Auguste Renoir' +p175500 +sg25273 +S'pastel on paper' +p175501 +sg25275 +S'c. 1885' +p175502 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b42.jpg' +p175503 +sg25267 +g27 +sa(dp175504 +g25268 +S'Mademoiselle Sicot' +p175505 +sg25270 +S'Auguste Renoir' +p175506 +sg25273 +S'oil on canvas' +p175507 +sg25275 +S'1865' +p175508 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000721.jpg' +p175509 +sg25267 +g27 +sa(dp175510 +g25273 +S'gouache on paper' +p175511 +sg25267 +g27 +sg25275 +S'1906' +p175512 +sg25268 +S'Caf\xc3\xa9 Scene' +p175513 +sg25270 +S'Georges Rouault' +p175514 +sa(dp175515 +g25273 +S'gouache on paper' +p175516 +sg25267 +g27 +sg25275 +S'1906' +p175517 +sg25268 +S'Nude with Upraised Arms' +p175518 +sg25270 +S'Georges Rouault' +p175519 +sa(dp175520 +g25268 +S'Jacques-Louis David' +p175521 +sg25270 +S'Artist Information (' +p175522 +sg25273 +S'French, 1784 - 1869' +p175523 +sg25275 +S'(related artist)' +p175524 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d9b.jpg' +p175525 +sg25267 +g27 +sa(dp175526 +g25268 +S'The Equatorial Jungle' +p175527 +sg25270 +S'Henri Rousseau' +p175528 +sg25273 +S'oil on canvas' +p175529 +sg25275 +S'1909' +p175530 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000070f.jpg' +p175531 +sg25267 +g27 +sa(dp175532 +g25268 +S'The Banks of the Oise' +p175533 +sg25270 +S'Alfred Sisley' +p175534 +sg25273 +S'oil on canvas' +p175535 +sg25275 +S'1877/1878' +p175536 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000072a.jpg' +p175537 +sg25267 +g27 +sa(dp175538 +g25273 +S'graphite with wash' +p175539 +sg25267 +g27 +sg25275 +S'1920' +p175540 +sg25268 +S'Market Day, Canterbury' +p175541 +sg25270 +S'Sir Muirhead Bone' +p175542 +sa(dp175543 +g25268 +S'The Road in the Woods' +p175544 +sg25270 +S'Alfred Sisley' +p175545 +sg25273 +S'oil on canvas' +p175546 +sg25275 +S'1879' +p175547 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000072b.jpg' +p175548 +sg25267 +g27 +sa(dp175549 +g25268 +S'Portrait of a Boy' +p175550 +sg25270 +S'Chaim Soutine' +p175551 +sg25273 +S'oil on canvas' +p175552 +sg25275 +S'1928' +p175553 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ee7.jpg' +p175554 +sg25267 +g27 +sa(dp175555 +g25268 +S'Maxime Dethomas' +p175556 +sg25270 +S'Henri de Toulouse-Lautrec' +p175557 +sg25273 +S'oil on cardboard' +p175558 +sg25275 +S'1896' +p175559 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000748.jpg' +p175560 +sg25267 +g27 +sa(dp175561 +g25268 +S'Alfred la Guigne' +p175562 +sg25270 +S'Henri de Toulouse-Lautrec' +p175563 +sg25273 +S'oil on cardboard' +p175564 +sg25275 +S'1894' +p175565 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000749.jpg' +p175566 +sg25267 +g27 +sa(dp175567 +g25268 +S'Quadrille at the Moulin Rouge' +p175568 +sg25270 +S'Henri de Toulouse-Lautrec' +p175569 +sg25273 +S'oil on cardboard' +p175570 +sg25275 +S'1892' +p175571 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000074a.jpg' +p175572 +sg25267 +g27 +sa(dp175573 +g25268 +S'The Church of Saint-S\xc3\xa9verin' +p175574 +sg25270 +S'Maurice Utrillo' +p175575 +sg25273 +S'oil on canvas' +p175576 +sg25275 +S'c. 1913' +p175577 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ebf.jpg' +p175578 +sg25267 +g27 +sa(dp175579 +g25268 +S'Marizy-Sainte-Genevi\xc3\xa8ve' +p175580 +sg25270 +S'Maurice Utrillo' +p175581 +sg25273 +S'oil on canvas' +p175582 +sg25275 +S'c. 1910' +p175583 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ec0.jpg' +p175584 +sg25267 +g27 +sa(dp175585 +g25268 +S'Carri\xc3\xa8res-Saint-Denis' +p175586 +sg25270 +S'Maurice de Vlaminck' +p175587 +sg25273 +S'oil on linen' +p175588 +sg25275 +S'1918/1920' +p175589 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002bfe.jpg' +p175590 +sg25267 +g27 +sa(dp175591 +g25273 +S'graphite' +p175592 +sg25267 +g27 +sg25275 +S'unknown date\n' +p175593 +sg25268 +S'Monastic Remains at St. John Ely' +p175594 +sg25270 +S'Sir Muirhead Bone' +p175595 +sa(dp175596 +g25268 +S'The Old Port of Marseille' +p175597 +sg25270 +S'Maurice de Vlaminck' +p175598 +sg25273 +S'oil on canvas' +p175599 +sg25275 +S'1913' +p175600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000edb.jpg' +p175601 +sg25267 +g27 +sa(dp175602 +g25268 +S'The River' +p175603 +sg25270 +S'Maurice de Vlaminck' +p175604 +sg25273 +S'oil on canvas' +p175605 +sg25275 +S'c. 1910' +p175606 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000edc.jpg' +p175607 +sg25267 +g27 +sa(dp175608 +g25268 +S'Still Life with Lemons' +p175609 +sg25270 +S'Maurice de Vlaminck' +p175610 +sg25273 +S'oil on canvas' +p175611 +sg25275 +S'1913/1914' +p175612 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000edd.jpg' +p175613 +sg25267 +g27 +sa(dp175614 +g25268 +S'Vase of Flowers' +p175615 +sg25270 +S'Maurice de Vlaminck' +p175616 +sg25273 +S'oil on canvas' +p175617 +sg25275 +S'1910 or before' +p175618 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ede.jpg' +p175619 +sg25267 +g27 +sa(dp175620 +g25268 +S'Repast in a Garden' +p175621 +sg25270 +S'Edouard Vuillard' +p175622 +sg25273 +S'oil on cardboard' +p175623 +sg25275 +S'1898' +p175624 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000072c.jpg' +p175625 +sg25267 +g27 +sa(dp175626 +g25268 +S'The Visit' +p175627 +sg25270 +S'Edouard Vuillard' +p175628 +sg25273 +S'mixed media on canvas' +p175629 +sg25275 +S'1931' +p175630 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a000072d.jpg' +p175631 +sg25267 +g27 +sa(dp175632 +g25273 +S'oil on canvas' +p175633 +sg25267 +g27 +sg25275 +S'1911/1913' +p175634 +sg25268 +S'Achieta' +p175635 +sg25270 +S'Ignacio Zuloaga' +p175636 +sa(dp175637 +g25273 +S'oil on canvas' +p175638 +sg25267 +g27 +sg25275 +S'1912' +p175639 +sg25268 +S'Mrs. Philip Lydig' +p175640 +sg25270 +S'Ignacio Zuloaga' +p175641 +sa(dp175642 +g25273 +S'oil on canvas' +p175643 +sg25267 +g27 +sg25275 +S'1911/1913' +p175644 +sg25268 +S'Merceditas' +p175645 +sg25270 +S'Ignacio Zuloaga' +p175646 +sa(dp175647 +g25268 +S'Woman in Andalusian Dress' +p175648 +sg25270 +S'Ignacio Zuloaga' +p175649 +sg25273 +S'oil on canvas' +p175650 +sg25275 +S'1911/1913' +p175651 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000df7.jpg' +p175652 +sg25267 +g27 +sa(dp175653 +g25268 +S'Sep\xc3\xbalveda' +p175654 +sg25270 +S'Ignacio Zuloaga' +p175655 +sg25273 +S'oil on canvas' +p175656 +sg25275 +S'1909' +p175657 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000df8.jpg' +p175658 +sg25267 +g27 +sa(dp175659 +g25273 +S'bronze' +p175660 +sg25267 +g27 +sg25275 +S'1931' +p175661 +sg25268 +S'Maud Dale' +p175662 +sg25270 +S'Charles Despiau' +p175663 +sa(dp175664 +g25268 +S'Death Mask of Amedeo Modigliani' +p175665 +sg25270 +S'Artist Information (' +p175666 +sg25273 +S'(artist)' +p175667 +sg25275 +S'\n' +p175668 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00043/a00043f2.jpg' +p175669 +sg25267 +g27 +sa(dp175670 +g25268 +S'P\xc3\xa8re Paillard' +p175671 +sg25270 +S'Paul Gauguin' +p175672 +sg25273 +S'painted miro wood' +p175673 +sg25275 +S'1902' +p175674 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00029/a000295a.jpg' +p175675 +sg25267 +S"Gauguin purposefully displayed his \n Gauguin shows the bishop for what he considered him to be: a nude, horned devil. Though outwardly pious, \n Gauguin retained the cylindrical form of the miro wood log (native to the Marquesas Islands where he moved in his final years) in the finished figure, a reflection of his concept of beauty as a harmony between subject and material. For the most part, the sculpture's golden brown surface retains the primitive, rhythmic patterns of the artist's chisels and gouges; only the figure's cheeks, forehead, and jutting chin are filed smooth. Gold paint, used to accent the bishop's eyes, the women, and the inscription, has largely disappeared over time.\n " +p175676 +sa(dp175677 +g25268 +S'Pair of Wooden Shoes (Sabots) [right]' +p175678 +sg25270 +S'Paul Gauguin' +p175679 +sg25273 +S'polychromed oak, leather, and iron nails' +p175680 +sg25275 +S'1889/1890' +p175681 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a17.jpg' +p175682 +sg25267 +g27 +sa(dp175683 +g25268 +S'Voltaire' +p175684 +sg25270 +S'Jean-Antoine Houdon' +p175685 +sg25273 +S'marble' +p175686 +sg25275 +S'1778' +p175687 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c10.jpg' +p175688 +sg25267 +S"Voltaire (François-Marie Arouet, 1694-1778) returned from exile in Switzerland to Paris in\nFebruary 1778. A clamorous welcome awaited the eighty-four-year-old genius, admired by his\ncontemporaries as a playwright, historian, poet, novelist, political and social commentator, and\neloquent champion of human rights against oppression and intolerance. This portrait is one result\nof the encounter, on that last visit to Paris, between a brilliant intellectual and an artist of exalted\nstature. Voltaire sat for Houdon several times before the exertion and excitement of his journey\ntook their toll; he died on 30 May 1778.\n In a few sittings, Houdon grasped the expression that captivated contemporaries. The weary\nface, with its sagging neck and toothless mouth, nevertheless radiates intense mental and spiritual\nvitality. Penetrating observation, mocking humor, and sorrow show in the lined eyes, lifted\nbrows, and compressed smile. Voltaire's face epitomizes the quality so often implied in\neighteenth-century portraiture -- quick, biting wit.\n Voltaire proved Houdon's most popular subject, both for his own sake and for the artist's\nsatisfying characterization. Houdon produced famous seated statues of the writer (today at the\nComédie Française, Paris, and the Hermitage, St. Petersburg), and from his studio\ncame dozens of busts.\n " +p175689 +sa(dp175690 +g25268 +S'Head of a Woman' +p175691 +sg25270 +S'Amedeo Modigliani' +p175692 +sg25273 +S'limestone' +p175693 +sg25275 +S'1910/1911' +p175694 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004a/a0004a13.jpg' +p175695 +sg25267 +g27 +sa(dp175696 +g25268 +S'Claude Renoir ("Coco")' +p175697 +sg25270 +S'Auguste Renoir' +p175698 +sg25273 +S'bronze' +p175699 +sg25275 +S'1908' +p175700 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00034/a0003418.jpg' +p175701 +sg25267 +g27 +sa(dp175702 +g25268 +S'Mother and Baby' +p175703 +sg25270 +S'Honor\xc3\xa9 Daumier' +p175704 +sg25273 +S'crayon and pen and black ink with gray and brown wash on laid paper' +p175705 +sg25275 +S'unknown date\n' +p175706 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a1d.jpg' +p175707 +sg25267 +g27 +sa(dp175708 +g25268 +S'Prosecutor' +p175709 +sg25270 +S'Honor\xc3\xa9 Daumier' +p175710 +sg25273 +S'pen and ink with watercolor on laid paper' +p175711 +sg25275 +S'unknown date\n' +p175712 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fd6.jpg' +p175713 +sg25267 +g27 +sa(dp175714 +g25273 +S'chalk and pen and ink with watercolor over graphite' +p175715 +sg25267 +g27 +sg25275 +S'1923' +p175716 +sg25268 +S'The Aquatania Entering Southampton' +p175717 +sg25270 +S'Sir Muirhead Bone' +p175718 +sa(dp175719 +g25268 +S'Two Lawyers' +p175720 +sg25270 +S'Honor\xc3\xa9 Daumier' +p175721 +sg25273 +S'charcoal and gray wash on laid paper' +p175722 +sg25275 +S'unknown date\n' +p175723 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a000726a.jpg' +p175724 +sg25267 +g27 +sa(dp175725 +g25273 +S'watercolor' +p175726 +sg25267 +g27 +sg25275 +S'1926' +p175727 +sg25268 +S'View of F\xc3\xa8s' +p175728 +sg25270 +S'Raoul Dufy' +p175729 +sa(dp175730 +g25268 +S'Jean Louis Gampert' +p175731 +sg25270 +S'Roger de La Fresnaye' +p175732 +sg25273 +S'black crayon, graphite and watercolor' +p175733 +sg25275 +S'c. 1920' +p175734 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006ff6.jpg' +p175735 +sg25267 +g27 +sa(dp175736 +g25268 +S'The Bath' +p175737 +sg25270 +S'Mary Cassatt' +p175738 +sg25273 +S'drypoint and aquatint on laid paper' +p175739 +sg25275 +S'1890-1891' +p175740 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a56.jpg' +p175741 +sg25267 +S'In April 1890, an exhibition of Japanese \n The Bath\n ' +p175742 +sa(dp175743 +g25268 +S'The Lamp' +p175744 +sg25270 +S'Mary Cassatt' +p175745 +sg25273 +S'color drypoint and aquatint on cream laid paper' +p175746 +sg25275 +S'1890-1891' +p175747 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f35.jpg' +p175748 +sg25267 +g27 +sa(dp175749 +g25268 +S'In the Omnibus' +p175750 +sg25270 +S'Mary Cassatt' +p175751 +sg25273 +S'drypoint and aquatint on laid paper' +p175752 +sg25275 +S'1890-1891' +p175753 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a57.jpg' +p175754 +sg25267 +S"Mary Cassatt often depicts mothers and children, as in \n The exterior setting of \n Cassatt has also marked the social status of the women by their clothing, in particular, \n their hats. The woman on the left wears an elaborately decorated and sculpted hat that clearly \n separates her from the woman on the right, who wears a simple cap. The woman holding the baby \n is presumably the nanny; while her attention is focused on the baby, the baby's mother turns \n her gaze through an unseen window to events happening outside the bus. Women who could afford \n to do so hired nannies to assist in raising their children. In turn, they enjoyed greater \n freedom to pursue other interests, a fact which is perhaps illustrated by the mother's diverted gaze.\n " +p175755 +sa(dp175756 +g25268 +S'The Letter' +p175757 +sg25270 +S'Mary Cassatt' +p175758 +sg25273 +S'drypoint and aquatint on laid paper' +p175759 +sg25275 +S'1890-1891' +p175760 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b75.jpg' +p175761 +sg25267 +S"In \n Correspondence often consumed a large part of a woman's day; she not only wrote to friends \n and acquaintances, but she was also responsible for answering invitations, responding to \n inquiries, and dealing with the daily domestic cares of the household. For Cassatt, who was \n an American expatriate living in Paris, the importance of letter-writing to keep in touch \n with family and friends must have held a special significance. The dropleaf desk in this \n composition still belongs to the artist's family; at one time, Cassatt herself may have used \n it to write letters.\n Several aspects of \n " +p175762 +sa(dp175763 +g25268 +S'The Fitting' +p175764 +sg25270 +S'Mary Cassatt' +p175765 +sg25273 +S'drypoint and aquatint on laid paper' +p175766 +sg25275 +S'1890-1891' +p175767 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a58.jpg' +p175768 +sg25267 +S'In \n The Fitting\n ' +p175769 +sa(dp175770 +g25268 +S'Woman Bathing' +p175771 +sg25270 +S'Mary Cassatt' +p175772 +sg25273 +S'drypoint and aquatint on laid paper' +p175773 +sg25275 +S'1890-1891' +p175774 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b76.jpg' +p175775 +sg25267 +S'In the late 1880s, Mary Cassatt began to explore the theme of women at their toilette. \n \n Although Cassatt depicted few nudes during her long career, \n ' +p175776 +sa(dp175777 +g25268 +S"Mother's Kiss" +p175778 +sg25270 +S'Mary Cassatt' +p175779 +sg25273 +S'drypoint and aquatint on laid paper' +p175780 +sg25275 +S'1890-1891' +p175781 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a59.jpg' +p175782 +sg25267 +S"The theme of mothers and children pervades much of Mary Cassatt's work. Although she \n herself never married, she often spent time with friends and family members and their \n children and represented them in drawings, prints, and paintings.\n Mother's Kiss\n " +p175783 +sa(dp175784 +g25273 +S'graphite' +p175785 +sg25267 +g27 +sg25275 +S'unknown date\n' +p175786 +sg25268 +S'Cumberland Market' +p175787 +sg25270 +S'Sir Muirhead Bone' +p175788 +sa(dp175789 +g25268 +S'Maternal Caress' +p175790 +sg25270 +S'Mary Cassatt' +p175791 +sg25273 +S'color drypoint and aquatint on cream laid paper' +p175792 +sg25275 +S'1890-1891' +p175793 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a5a.jpg' +p175794 +sg25267 +S'After seeing the exhibition of Japanese \n ' +p175795 +sa(dp175796 +g25268 +S'Afternoon Tea Party' +p175797 +sg25270 +S'Mary Cassatt' +p175798 +sg25273 +S'drypoint, aquatint, and gold paint on wove paper' +p175799 +sg25275 +S'1890-1891' +p175800 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a5b.jpg' +p175801 +sg25267 +S'Afternoon Tea Party\n The women in \n ' +p175802 +sa(dp175803 +g25268 +S'The Coiffure' +p175804 +sg25270 +S'Mary Cassatt' +p175805 +sg25273 +S'drypoint and aquatint on laid paper' +p175806 +sg25275 +S'1890-1891' +p175807 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b77.jpg' +p175808 +sg25267 +S'In \n The Coiffure\n Cassatt used the theme of \n ' +p175809 +sa(dp175810 +g25268 +S'The Up-Tide on the Avenue' +p175811 +sg25270 +S'Childe Hassam' +p175812 +sg25273 +S'black and gray wash with white heightening' +p175813 +sg25275 +S'probably 1890' +p175814 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f10f.jpg' +p175815 +sg25267 +g27 +sa(dp175816 +g25273 +S'color woodcut' +p175817 +sg25267 +g27 +sg25275 +S'1955' +p175818 +sg25268 +S'Terraces and Houses' +p175819 +sg25270 +S'Ross Abrams' +p175820 +sa(dp175821 +g25273 +S'etching and lift-ground aquatint' +p175822 +sg25267 +g27 +sg25275 +S'1955' +p175823 +sg25268 +S'The Birds' +p175824 +sg25270 +S"Helene d' Andlau" +p175825 +sa(dp175826 +g25273 +S'etching and (soft-ground etching?), printed over atone plate' +p175827 +sg25267 +g27 +sg25275 +S'1955' +p175828 +sg25268 +S'Flowers' +p175829 +sg25270 +S"Helene d' Andlau" +p175830 +sa(dp175831 +g25268 +S'Leopold I and Eleanor of Austria' +p175832 +sg25270 +S'Austrian 17th Century' +p175833 +sg25273 +S'Rosenwald Collection' +p175834 +sg25275 +S'\nengraving' +p175835 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d782.jpg' +p175836 +sg25267 +g27 +sa(dp175837 +g25268 +S'The Crucifixion' +p175838 +sg25270 +S'French 15th Century' +p175839 +sg25273 +S'Schreiber, Vol. IX, no. 470, State d' +p175840 +sg25275 +S'\nwoodcut, hand-colored in pink, brown, and yellow' +p175841 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a00082f9.jpg' +p175842 +sg25267 +g27 +sa(dp175843 +g25268 +S'The Trinity' +p175844 +sg25270 +S'French 15th Century' +p175845 +sg25273 +S'Schreiber, Vol. IX, no. 741, State m' +p175846 +sg25275 +S'\nwoodcut, hand-colored in vermilion, lilac, and ochre' +p175847 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00082/a00082fc.jpg' +p175848 +sg25267 +g27 +sa(dp175849 +g25273 +S'charcoal over pen and ink and graphite' +p175850 +sg25267 +g27 +sg25275 +S'unknown date\n' +p175851 +sg25268 +S'Concrete Demolishing - Picadilly Circus' +p175852 +sg25270 +S'Sir Muirhead Bone' +p175853 +sa(dp175854 +g25268 +S'Saint Dominic' +p175855 +sg25270 +S'Italian 15th Century' +p175856 +sg25273 +S'image: 27.3 x 10.8 cm (10 3/4 x 4 1/4 in.)\r\nsheet: 29.1 x 14 cm (11 7/16 x 5 1/2 in.)\r\noverall (external frame dimensions): 59.7 x 44.5 cm (23 1/2 x 17 1/2 in.)' +p175857 +sg25275 +S'\nwoodcut, hand-colored in brown, vermilion, orange, blue, olive, and ochre' +p175858 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00020/a000202a.jpg' +p175859 +sg25267 +g27 +sa(dp175860 +g25273 +S'color lithograph' +p175861 +sg25267 +g27 +sg25275 +S'1954' +p175862 +sg25268 +S'Festival Andino' +p175863 +sg25270 +S'Nemesio Antunez' +p175864 +sa(dp175865 +g25273 +S'color lithograph' +p175866 +sg25267 +g27 +sg25275 +S'unknown date\n' +p175867 +sg25268 +S'Composition' +p175868 +sg25270 +S'Jean Arp' +p175869 +sa(dp175870 +g25273 +S'mezzotint' +p175871 +sg25267 +g27 +sg25275 +S'1957' +p175872 +sg25268 +S'Nature Morte a la Fourchette' +p175873 +sg25270 +S'Mario Avati' +p175874 +sa(dp175875 +g25273 +S'portfolio with etchings, aquatints, and mezzotints plus 1 charcoal drawing' +p175876 +sg25267 +g27 +sg25275 +S'published 1950' +p175877 +sg25268 +S'Philippe de Rothschild\'s "A l\'Aube d\'une Guerre"' +p175878 +sg25270 +S'Mario Avati' +p175879 +sa(dp175880 +g25273 +S'woodcut' +p175881 +sg25267 +g27 +sg25275 +S'1956' +p175882 +sg25268 +S'Children and Still Life' +p175883 +sg25270 +S'Leonard Baskin' +p175884 +sa(dp175885 +g25273 +S'(artist after)' +p175886 +sg25267 +g27 +sg25275 +S'\n' +p175887 +sg25268 +S'Wilfred Owen' +p175888 +sg25270 +S'Artist Information (' +p175889 +sa(dp175890 +g25268 +S'The Market Woman [right]' +p175891 +sg25270 +S'Sebald Beham' +p175892 +sg25273 +S'engraving' +p175893 +sg25275 +S'unknown date\n' +p175894 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a85e.jpg' +p175895 +sg25267 +g27 +sa(dp175896 +g25268 +S'Peasant at Market [left]' +p175897 +sg25270 +S'Sebald Beham' +p175898 +sg25273 +S'engraving' +p175899 +sg25275 +S'unknown date\n' +p175900 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a85d.jpg' +p175901 +sg25267 +g27 +sa(dp175902 +g25268 +S'January and February' +p175903 +sg25270 +S'Sebald Beham' +p175904 +sg25273 +S'engraving' +p175905 +sg25275 +S'1546' +p175906 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a887.jpg' +p175907 +sg25267 +g27 +sa(dp175908 +g25273 +S'graphite' +p175909 +sg25267 +g27 +sg25275 +S'unknown date\n' +p175910 +sg25268 +S'Gate of the Wall, Avila' +p175911 +sg25270 +S'Sir Muirhead Bone' +p175912 +sa(dp175913 +g25268 +S'March and April' +p175914 +sg25270 +S'Sebald Beham' +p175915 +sg25273 +S'engraving' +p175916 +sg25275 +S'1546/1547' +p175917 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a886.jpg' +p175918 +sg25267 +g27 +sa(dp175919 +g25268 +S'May and June' +p175920 +sg25270 +S'Sebald Beham' +p175921 +sg25273 +S'engraving' +p175922 +sg25275 +S'1546/1547' +p175923 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a885.jpg' +p175924 +sg25267 +g27 +sa(dp175925 +g25268 +S'July and August' +p175926 +sg25270 +S'Sebald Beham' +p175927 +sg25273 +S'engraving' +p175928 +sg25275 +S'1546' +p175929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a884.jpg' +p175930 +sg25267 +g27 +sa(dp175931 +g25268 +S'September and October' +p175932 +sg25270 +S'Sebald Beham' +p175933 +sg25273 +S'engraving' +p175934 +sg25275 +S'1546/1547' +p175935 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a883.jpg' +p175936 +sg25267 +g27 +sa(dp175937 +g25268 +S'November and December' +p175938 +sg25270 +S'Sebald Beham' +p175939 +sg25273 +S'engraving' +p175940 +sg25275 +S'1546/1547' +p175941 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a882.jpg' +p175942 +sg25267 +g27 +sa(dp175943 +g25268 +S"The Year's End" +p175944 +sg25270 +S'Sebald Beham' +p175945 +sg25273 +S'engraving' +p175946 +sg25275 +S'1546' +p175947 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a864.jpg' +p175948 +sg25267 +g27 +sa(dp175949 +g25268 +S'The Peasant Banquet' +p175950 +sg25270 +S'Sebald Beham' +p175951 +sg25273 +S'engraving' +p175952 +sg25275 +S'1546/1547' +p175953 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aab7.jpg' +p175954 +sg25267 +g27 +sa(dp175955 +g25268 +S'The Peasant Fight' +p175956 +sg25270 +S'Sebald Beham' +p175957 +sg25273 +S'engraving' +p175958 +sg25275 +S'1547' +p175959 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aab5.jpg' +p175960 +sg25267 +g27 +sa(dp175961 +g25268 +S'Peasants behind the Hedge' +p175962 +sg25270 +S'Sebald Beham' +p175963 +sg25273 +S'engraving' +p175964 +sg25275 +S'1546/1547' +p175965 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a865.jpg' +p175966 +sg25267 +g27 +sa(dp175967 +g25268 +S'The Lady and the Fool' +p175968 +sg25270 +S'Sebald Beham' +p175969 +sg25273 +S'etching' +p175970 +sg25275 +S'1540' +p175971 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a88b.jpg' +p175972 +sg25267 +g27 +sa(dp175973 +g25273 +S'watercolor and graphite' +p175974 +sg25267 +g27 +sg25275 +S'unknown date\n' +p175975 +sg25268 +S'Guardarrama, Segovia' +p175976 +sg25270 +S'Sir Muirhead Bone' +p175977 +sa(dp175978 +g25268 +S'Hungry Dogs' +p175979 +sg25270 +S'George Bellows' +p175980 +sg25273 +S'lithograph' +p175981 +sg25275 +S'1916' +p175982 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a22.jpg' +p175983 +sg25267 +g27 +sa(dp175984 +g25273 +S'pen and black ink on wove paper' +p175985 +sg25267 +g27 +sg25275 +S'unknown date\n' +p175986 +sg25268 +S'Pecheurs (Fishermen)' +p175987 +sg25270 +S'Alfred Bendiner' +p175988 +sa(dp175989 +g25273 +S'lithograph on china paper' +p175990 +sg25267 +g27 +sg25275 +S'1946' +p175991 +sg25268 +S'From "Le crepuscule des nymphes" (frontispiece)' +p175992 +sg25270 +S'Pierre Bonnard' +p175993 +sa(dp175994 +g25273 +S'lithograph on china paper' +p175995 +sg25267 +g27 +sg25275 +S'1946' +p175996 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 9)' +p175997 +sg25270 +S'Pierre Bonnard' +p175998 +sa(dp175999 +g25273 +S'lithograph on china paper' +p176000 +sg25267 +g27 +sg25275 +S'1946' +p176001 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 13)' +p176002 +sg25270 +S'Pierre Bonnard' +p176003 +sa(dp176004 +g25273 +S'lithograph on china paper' +p176005 +sg25267 +g27 +sg25275 +S'1946' +p176006 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 17)' +p176007 +sg25270 +S'Pierre Bonnard' +p176008 +sa(dp176009 +g25273 +S'lithograph on china paper' +p176010 +sg25267 +g27 +sg25275 +S'1946' +p176011 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 22)' +p176012 +sg25270 +S'Pierre Bonnard' +p176013 +sa(dp176014 +g25273 +S'lithograph on china paper' +p176015 +sg25267 +g27 +sg25275 +S'1946' +p176016 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 25)' +p176017 +sg25270 +S'Pierre Bonnard' +p176018 +sa(dp176019 +g25273 +S'lithograph on china paper' +p176020 +sg25267 +g27 +sg25275 +S'1946' +p176021 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 28)' +p176022 +sg25270 +S'Pierre Bonnard' +p176023 +sa(dp176024 +g25273 +S'lithograph on china paper' +p176025 +sg25267 +g27 +sg25275 +S'1946' +p176026 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 31)' +p176027 +sg25270 +S'Pierre Bonnard' +p176028 +sa(dp176029 +g25273 +S'graphite with gray wash' +p176030 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176031 +sg25268 +S'Houses at Santiago' +p176032 +sg25270 +S'Sir Muirhead Bone' +p176033 +sa(dp176034 +g25273 +S'lithograph on china paper' +p176035 +sg25267 +g27 +sg25275 +S'1946' +p176036 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 37)' +p176037 +sg25270 +S'Pierre Bonnard' +p176038 +sa(dp176039 +g25273 +S'lithograph on china paper' +p176040 +sg25267 +g27 +sg25275 +S'1946' +p176041 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 39)' +p176042 +sg25270 +S'Pierre Bonnard' +p176043 +sa(dp176044 +g25273 +S'lithograph on china paper' +p176045 +sg25267 +g27 +sg25275 +S'1946' +p176046 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 41)' +p176047 +sg25270 +S'Pierre Bonnard' +p176048 +sa(dp176049 +g25273 +S'lithograph on china paper' +p176050 +sg25267 +g27 +sg25275 +S'1946' +p176051 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 45)' +p176052 +sg25270 +S'Pierre Bonnard' +p176053 +sa(dp176054 +g25273 +S'lithograph on china paper' +p176055 +sg25267 +g27 +sg25275 +S'1946' +p176056 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 49)' +p176057 +sg25270 +S'Pierre Bonnard' +p176058 +sa(dp176059 +g25273 +S'lithograph on china paper' +p176060 +sg25267 +g27 +sg25275 +S'1946' +p176061 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 53)' +p176062 +sg25270 +S'Pierre Bonnard' +p176063 +sa(dp176064 +g25273 +S'lithograph on china paper' +p176065 +sg25267 +g27 +sg25275 +S'1946' +p176066 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 58)' +p176067 +sg25270 +S'Pierre Bonnard' +p176068 +sa(dp176069 +g25273 +S'lithograph on china paper' +p176070 +sg25267 +g27 +sg25275 +S'1946' +p176071 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 65)' +p176072 +sg25270 +S'Pierre Bonnard' +p176073 +sa(dp176074 +g25273 +S'lithograph on china paper' +p176075 +sg25267 +g27 +sg25275 +S'1946' +p176076 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 70)' +p176077 +sg25270 +S'Pierre Bonnard' +p176078 +sa(dp176079 +g25273 +S'lithograph on china paper' +p176080 +sg25267 +g27 +sg25275 +S'1946' +p176081 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 73)' +p176082 +sg25270 +S'Pierre Bonnard' +p176083 +sa(dp176084 +g25273 +S'pen and brown ink with watercolor' +p176085 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176086 +sg25268 +S'Vega of Granada' +p176087 +sg25270 +S'Sir Muirhead Bone' +p176088 +sa(dp176089 +g25273 +S'lithograph on china paper' +p176090 +sg25267 +g27 +sg25275 +S'1946' +p176091 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 76)' +p176092 +sg25270 +S'Pierre Bonnard' +p176093 +sa(dp176094 +g25273 +S'lithograph on china paper' +p176095 +sg25267 +g27 +sg25275 +S'1946' +p176096 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 80)' +p176097 +sg25270 +S'Pierre Bonnard' +p176098 +sa(dp176099 +g25273 +S'lithograph on china paper' +p176100 +sg25267 +g27 +sg25275 +S'1946' +p176101 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 83)' +p176102 +sg25270 +S'Pierre Bonnard' +p176103 +sa(dp176104 +g25273 +S'lithograph on china paper' +p176105 +sg25267 +g27 +sg25275 +S'1946' +p176106 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 86)' +p176107 +sg25270 +S'Pierre Bonnard' +p176108 +sa(dp176109 +g25273 +S'lithograph on china paper' +p176110 +sg25267 +g27 +sg25275 +S'1946' +p176111 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 91)' +p176112 +sg25270 +S'Pierre Bonnard' +p176113 +sa(dp176114 +g25273 +S'lithograph on china paper' +p176115 +sg25267 +g27 +sg25275 +S'1946' +p176116 +sg25268 +S'From "Le crepuscule des nymphes" (illustration, page 98)' +p176117 +sg25270 +S'Pierre Bonnard' +p176118 +sa(dp176119 +g25273 +S'graphite' +p176120 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176121 +sg25268 +S'The Spiritual' +p176122 +sg25270 +S'Jack Bookbinder' +p176123 +sa(dp176124 +g25273 +S'lithograph' +p176125 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176126 +sg25268 +S'The Spiritual' +p176127 +sg25270 +S'Jack Bookbinder' +p176128 +sa(dp176129 +g25268 +S'Landscape' +p176130 +sg25270 +S'Anthonie van Borssom' +p176131 +sg25273 +S'pen and brown ink with brown wash' +p176132 +sg25275 +S'unknown date\n' +p176133 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fac.jpg' +p176134 +sg25267 +g27 +sa(dp176135 +g25268 +S'The Farmyard' +p176136 +sg25270 +S'Rodolphe Bresdin' +p176137 +sg25273 +S'etching on India paper' +p176138 +sg25275 +S'published 1861' +p176139 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009812.jpg' +p176140 +sg25267 +g27 +sa(dp176141 +g25273 +S'watercolor and graphite' +p176142 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176143 +sg25268 +S'Wood Market, Santiago' +p176144 +sg25270 +S'Sir Muirhead Bone' +p176145 +sa(dp176146 +g25273 +S'etching and aquatint' +p176147 +sg25267 +g27 +sg25275 +S'1953' +p176148 +sg25268 +S'Night Passengers' +p176149 +sg25270 +S'Robert Broner' +p176150 +sa(dp176151 +g25268 +S'Solicitudo Rustica (Rustic Concerns)' +p176152 +sg25270 +S'Artist Information (' +p176153 +sg25273 +S'(artist)' +p176154 +sg25275 +S'\n' +p176155 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cedc.jpg' +p176156 +sg25267 +g27 +sa(dp176157 +g25268 +S'S. Hieronymus in Deserto (Saint Jerome in the Desert)' +p176158 +sg25270 +S'Artist Information (' +p176159 +sg25273 +S'(artist)' +p176160 +sg25275 +S'\n' +p176161 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005beb.jpg' +p176162 +sg25267 +g27 +sa(dp176163 +g25273 +S'drypoint in black on wove paper' +p176164 +sg25267 +g27 +sg25275 +S'1953' +p176165 +sg25268 +S'Landscape at Monaco' +p176166 +sg25270 +S'Bernard Buffet' +p176167 +sa(dp176168 +g25268 +S'Christ Crowned with Thorns' +p176169 +sg25270 +S'Jacques Callot' +p176170 +sg25273 +S'red chalk on laid paper, indented with stylus' +p176171 +sg25275 +S'c. 1618' +p176172 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a0007184.jpg' +p176173 +sg25267 +g27 +sa(dp176174 +g25268 +S'The Crowning with Thorns' +p176175 +sg25270 +S'Jacques Callot' +p176176 +sg25273 +S'etching and engraving' +p176177 +sg25275 +S'c. 1618' +p176178 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008509.jpg' +p176179 +sg25267 +g27 +sa(dp176180 +g25268 +S'The Combat of Avigliana' +p176181 +sg25270 +S'Jacques Callot' +p176182 +sg25273 +S'etching' +p176183 +sg25275 +S'in or after 1631' +p176184 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dba.jpg' +p176185 +sg25267 +g27 +sa(dp176186 +g25268 +S'Title Page for "Il Solimano"' +p176187 +sg25270 +S'Jacques Callot' +p176188 +sg25273 +S'etching and engraving' +p176189 +sg25275 +S'1620' +p176190 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008acd.jpg' +p176191 +sg25267 +g27 +sa(dp176192 +g25268 +S'Solimano, Act I' +p176193 +sg25270 +S'Jacques Callot' +p176194 +sg25273 +S'etching and engraving' +p176195 +sg25275 +S'1620' +p176196 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ac4.jpg' +p176197 +sg25267 +g27 +sa(dp176198 +g25268 +S'Solimano, Act II' +p176199 +sg25270 +S'Jacques Callot' +p176200 +sg25273 +S'etching and engraving' +p176201 +sg25275 +S'1620' +p176202 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ac5.jpg' +p176203 +sg25267 +g27 +sa(dp176204 +g25268 +S'A Lady' +p176205 +sg25270 +S'Artist Information (' +p176206 +sg25273 +S'Italian, 1435 - 1488' +p176207 +sg25275 +S'(related artist)' +p176208 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d82.jpg' +p176209 +sg25267 +g27 +sa(dp176210 +g25273 +S'graphite' +p176211 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176212 +sg25268 +S'Street in Zamora' +p176213 +sg25270 +S'Sir Muirhead Bone' +p176214 +sa(dp176215 +g25268 +S'Solimano, Act III' +p176216 +sg25270 +S'Jacques Callot' +p176217 +sg25273 +S'etching and engraving' +p176218 +sg25275 +S'1620' +p176219 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ac9.jpg' +p176220 +sg25267 +g27 +sa(dp176221 +g25268 +S'Solimano, Act IV' +p176222 +sg25270 +S'Jacques Callot' +p176223 +sg25273 +S'etching and engraving' +p176224 +sg25275 +S'1620' +p176225 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ad3.jpg' +p176226 +sg25267 +g27 +sa(dp176227 +g25268 +S'Solimano, Act V' +p176228 +sg25270 +S'Jacques Callot' +p176229 +sg25273 +S'etching and engraving' +p176230 +sg25275 +S'1620' +p176231 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ad7.jpg' +p176232 +sg25267 +g27 +sa(dp176233 +g25273 +S'5-color lithograph on wove paper' +p176234 +sg25267 +g27 +sg25275 +S'1955' +p176235 +sg25268 +S'Passeggiata Romana (Roman Promenade)' +p176236 +sg25270 +S'Massimo Campigli' +p176237 +sa(dp176238 +g25273 +S'lithograph in yellow' +p176239 +sg25267 +g27 +sg25275 +S'1945/1946' +p176240 +sg25268 +S'The Tale of the Ebony Horse' +p176241 +sg25270 +S'Marc Chagall' +p176242 +sa(dp176243 +g25273 +S'lithograph in peach' +p176244 +sg25267 +g27 +sg25275 +S'1945/1946' +p176245 +sg25268 +S'The Tale of the Ebony Horse' +p176246 +sg25270 +S'Marc Chagall' +p176247 +sa(dp176248 +g25273 +S'lithograph in yellow and peach' +p176249 +sg25267 +g27 +sg25275 +S'1945/1946' +p176250 +sg25268 +S'The Tale of the Ebony Horse' +p176251 +sg25270 +S'Marc Chagall' +p176252 +sa(dp176253 +g25273 +S'lithograph in rose' +p176254 +sg25267 +g27 +sg25275 +S'1945/1946' +p176255 +sg25268 +S'The Tale of the Ebony Horse' +p176256 +sg25270 +S'Marc Chagall' +p176257 +sa(dp176258 +g25273 +S'lithograph in yellow, peach and rose' +p176259 +sg25267 +g27 +sg25275 +S'1945/1946' +p176260 +sg25268 +S'The Tale of the Ebony Horse' +p176261 +sg25270 +S'Marc Chagall' +p176262 +sa(dp176263 +g25273 +S'lithograph in amethyst' +p176264 +sg25267 +g27 +sg25275 +S'1945/1946' +p176265 +sg25268 +S'The Tale of the Ebony Horse' +p176266 +sg25270 +S'Marc Chagall' +p176267 +sa(dp176268 +g25273 +S'charcoal' +p176269 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176270 +sg25268 +S'San Esteban, Segovia' +p176271 +sg25270 +S'Sir Muirhead Bone' +p176272 +sa(dp176273 +g25273 +S'lithograph in four colors' +p176274 +sg25267 +g27 +sg25275 +S'1945/1946' +p176275 +sg25268 +S'The Tale of the Ebony Horse' +p176276 +sg25270 +S'Marc Chagall' +p176277 +sa(dp176278 +g25273 +S'lithograph in blue and pink' +p176279 +sg25267 +g27 +sg25275 +S'1945/1946' +p176280 +sg25268 +S'The Tale of the Ebony Horse' +p176281 +sg25270 +S'Marc Chagall' +p176282 +sa(dp176283 +g25273 +S'lithograph in six colors' +p176284 +sg25267 +g27 +sg25275 +S'1945/1946' +p176285 +sg25268 +S'The Tale of the Ebony Horse' +p176286 +sg25270 +S'Marc Chagall' +p176287 +sa(dp176288 +g25273 +S'lithograph in green' +p176289 +sg25267 +g27 +sg25275 +S'1945/1946' +p176290 +sg25268 +S'The Tale of the Ebony Horse' +p176291 +sg25270 +S'Marc Chagall' +p176292 +sa(dp176293 +g25273 +S'lithograph in seven colors' +p176294 +sg25267 +g27 +sg25275 +S'1945/1946' +p176295 +sg25268 +S'The Tale of the Ebony Horse' +p176296 +sg25270 +S'Marc Chagall' +p176297 +sa(dp176298 +g25273 +S'lithograph in blue' +p176299 +sg25267 +g27 +sg25275 +S'1945/1946' +p176300 +sg25268 +S'The Tale of the Ebony Horse' +p176301 +sg25270 +S'Marc Chagall' +p176302 +sa(dp176303 +g25273 +S'color lithograph' +p176304 +sg25267 +g27 +sg25275 +S'1945/1946' +p176305 +sg25268 +S'The Tale of the Ebony Horse' +p176306 +sg25270 +S'Marc Chagall' +p176307 +sa(dp176308 +g25273 +S'color lithograph' +p176309 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176310 +sg25268 +S'The Card Players' +p176311 +sg25270 +S'Antoni Clave' +p176312 +sa(dp176313 +g25268 +S'Alliance of Peace and Abundance' +p176314 +sg25270 +S'Artist Information (' +p176315 +sg25273 +S'(artist after)' +p176316 +sg25275 +S'\n' +p176317 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c95d.jpg' +p176318 +sg25267 +g27 +sa(dp176319 +g25268 +S'La Promenade' +p176320 +sg25270 +S'Henri Edmond Cross' +p176321 +sg25273 +S'5-color lithograph on china paper' +p176322 +sg25275 +S'1897' +p176323 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091be.jpg' +p176324 +sg25267 +g27 +sa(dp176325 +g25273 +S'graphite' +p176326 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176327 +sg25268 +S'Praying Bench, San Pedro, Gerona' +p176328 +sg25270 +S'Sir Muirhead Bone' +p176329 +sa(dp176330 +g25273 +S'engraving' +p176331 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176332 +sg25268 +S'Restaurant' +p176333 +sg25270 +S'Hermine David' +p176334 +sa(dp176335 +g25273 +S'color intaglio' +p176336 +sg25267 +g27 +sg25275 +S'1954' +p176337 +sg25268 +S'Arcana III' +p176338 +sg25270 +S'Worden Day' +p176339 +sa(dp176340 +g25273 +S'copper plate worked in drypoint and aquatint' +p176341 +sg25267 +g27 +sg25275 +S'1875' +p176342 +sg25268 +S'Alphonse Hirsch' +p176343 +sg25270 +S'Edgar Degas' +p176344 +sa(dp176345 +g25268 +S'Pennsylvania Landscape' +p176346 +sg25270 +S'Thomas Doughty' +p176347 +sg25273 +S'etching' +p176348 +sg25275 +S'unknown date\n' +p176349 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa1e.jpg' +p176350 +sg25267 +g27 +sa(dp176351 +g25273 +S'color monotype [plexiglass plate with engraved contours]' +p176352 +sg25267 +g27 +sg25275 +S'1956' +p176353 +sg25268 +S'Mime' +p176354 +sg25270 +S'Stella Drabkin' +p176355 +sa(dp176356 +g25273 +S'color lithograph' +p176357 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176358 +sg25268 +S'La Mer (The Sea)' +p176359 +sg25270 +S'Raoul Dufy' +p176360 +sa(dp176361 +g25268 +S'An Iron Forge' +p176362 +sg25270 +S'Artist Information (' +p176363 +sg25273 +S'(artist after)' +p176364 +sg25275 +S'\n' +p176365 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a0007873.jpg' +p176366 +sg25267 +g27 +sa(dp176367 +g25273 +S'color lithograph' +p176368 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176369 +sg25268 +S'Zebras' +p176370 +sg25270 +S'Hans Erni' +p176371 +sa(dp176372 +g25273 +S'woodcut in black, green and ochre, printed from twenty blocks on three combined sheets' +p176373 +sg25267 +g27 +sg25275 +S'1939/1940' +p176374 +sg25268 +S'Metamorphosis II' +p176375 +sg25270 +S'M.C. Escher' +p176376 +sa(dp176377 +g25268 +S'Tetrahedral Planetoid' +p176378 +sg25270 +S'M.C. Escher' +p176379 +sg25273 +S'woodcut in green and black, printed from two blocks' +p176380 +sg25275 +S'1954' +p176381 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b45.jpg' +p176382 +sg25267 +g27 +sa(dp176383 +g25273 +S'charcoal and graphite' +p176384 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176385 +sg25268 +S'The Paseo, Santander' +p176386 +sg25270 +S'Sir Muirhead Bone' +p176387 +sa(dp176388 +g25273 +S'color woodcut' +p176389 +sg25267 +g27 +sg25275 +S'1956' +p176390 +sg25268 +S'Souvenir from Grock' +p176391 +sg25270 +S'Edythe Ferris' +p176392 +sa(dp176393 +g25273 +S'color monotype' +p176394 +sg25267 +g27 +sg25275 +S'1956' +p176395 +sg25268 +S'Abstraction No. 1' +p176396 +sg25270 +S'Hanns Fierst' +p176397 +sa(dp176398 +g25268 +S'Ia Orana Maria (We Greet Thee, Mary)' +p176399 +sg25270 +S'Paul Gauguin' +p176400 +sg25273 +S'lithograph (zinc) in blue' +p176401 +sg25275 +S'c. 1894' +p176402 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a81.jpg' +p176403 +sg25267 +g27 +sa(dp176404 +g25268 +S'The Washerwomen (Les laveuses)' +p176405 +sg25270 +S'Paul Gauguin' +p176406 +sg25273 +S'lithograph (zinc) in black on imitation japan paper' +p176407 +sg25275 +S'1889' +p176408 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a6e.jpg' +p176409 +sg25267 +g27 +sa(dp176410 +g25273 +S'watercolor' +p176411 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176412 +sg25268 +S'Underbrush' +p176413 +sg25270 +S'Ren\xc3\xa9 Genis' +p176414 +sa(dp176415 +g25273 +S'hand-colored woodcut' +p176416 +sg25267 +g27 +sg25275 +S'c. 1511' +p176417 +sg25268 +S'The Madonna with Saint Ulrich and Saint Afra [recto]' +p176418 +sg25270 +S'Urs Graf I' +p176419 +sa(dp176420 +g25273 +S'hand-colored woodcut' +p176421 +sg25267 +g27 +sg25275 +S'c. 1511' +p176422 +sg25268 +S'Title Page for a Missal, with Satyr and Putti Border [verso]' +p176423 +sg25270 +S'Urs Graf I' +p176424 +sa(dp176425 +g25273 +S'color lithograph' +p176426 +sg25267 +g27 +sg25275 +S'1957' +p176427 +sg25268 +S'Rain at Honfleur' +p176428 +sg25270 +S'Alistair Grant' +p176429 +sa(dp176430 +g25273 +S'engraving' +p176431 +sg25267 +g27 +sg25275 +S'1957' +p176432 +sg25268 +S'The Forge' +p176433 +sg25270 +S'Anthony Gross' +p176434 +sa(dp176435 +g25273 +S'pen and brown ink with brown wash on laid paper' +p176436 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176437 +sg25268 +S'Roman Bridge, Zamora' +p176438 +sg25270 +S'Sir Muirhead Bone' +p176439 +sa(dp176440 +g25273 +S'color mezzotint' +p176441 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176442 +sg25268 +S'Bowl of Grapes (Coupe de raisins)' +p176443 +sg25270 +S'Yozo Hamaguchi' +p176444 +sa(dp176445 +g25273 +S'mezzotint' +p176446 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176447 +sg25268 +S'Bowl of Grapes (Coupe de raisins)' +p176448 +sg25270 +S'Yozo Hamaguchi' +p176449 +sa(dp176450 +g25273 +S'mezzotint' +p176451 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176452 +sg25268 +S'Still Life (Nature morte)' +p176453 +sg25270 +S'Yozo Hamaguchi' +p176454 +sa(dp176455 +g25273 +S'mezzotint' +p176456 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176457 +sg25268 +S'Pomegranate' +p176458 +sg25270 +S'Yozo Hamaguchi' +p176459 +sa(dp176460 +g25273 +S'mezzotint' +p176461 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176462 +sg25268 +S'Still Life with Watermelon' +p176463 +sg25270 +S'Yozo Hamaguchi' +p176464 +sa(dp176465 +g25273 +S'color mezzotint' +p176466 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176467 +sg25268 +S'The Blue Glass (Le verre bleu)' +p176468 +sg25270 +S'Yozo Hamaguchi' +p176469 +sa(dp176470 +g25273 +S'color etching' +p176471 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176472 +sg25268 +S'Billiards' +p176473 +sg25270 +S'Abraham P. Hankins' +p176474 +sa(dp176475 +g25273 +S'color etching' +p176476 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176477 +sg25268 +S'Promenade' +p176478 +sg25270 +S'Abraham P. Hankins' +p176479 +sa(dp176480 +g25273 +S'color etching' +p176481 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176482 +sg25268 +S'Still Life' +p176483 +sg25270 +S'Abraham P. Hankins' +p176484 +sa(dp176485 +g25273 +S'color etching, aquatint, and soft-ground' +p176486 +sg25267 +g27 +sg25275 +S'1956' +p176487 +sg25268 +S'The Harbor' +p176488 +sg25270 +S'Anthony Harrison' +p176489 +sa(dp176490 +g25273 +S'pen and brown ink with blue and brown wash on laid paper' +p176491 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176492 +sg25268 +S'River at Gerona, Spain' +p176493 +sg25270 +S'Sir Muirhead Bone' +p176494 +sa(dp176495 +g25268 +S'Bowl of Fruit' +p176496 +sg25270 +S'Marsden Hartley' +p176497 +sg25273 +S'lithograph' +p176498 +sg25275 +S'1923' +p176499 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ab3.jpg' +p176500 +sg25267 +g27 +sa(dp176501 +g25268 +S'Landscape with a Brook and Ruins' +p176502 +sg25270 +S'Augustin Hirschvogel' +p176503 +sg25273 +S'etching' +p176504 +sg25275 +S'1545' +p176505 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abc6.jpg' +p176506 +sg25267 +g27 +sa(dp176507 +g25273 +S'color lithograph' +p176508 +sg25267 +g27 +sg25275 +S'1955' +p176509 +sg25268 +S'Germinating' +p176510 +sg25270 +S'Gottfried Honegger' +p176511 +sa(dp176512 +g25268 +S'Night in the Park' +p176513 +sg25270 +S'Edward Hopper' +p176514 +sg25273 +S'etching' +p176515 +sg25275 +S'1921' +p176516 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ac8.jpg' +p176517 +sg25267 +g27 +sa(dp176518 +g25273 +S'lithograph' +p176519 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176520 +sg25268 +S'The Great Shepherd(Le Grand Berger)' +p176521 +sg25270 +S'Max Hunziker' +p176522 +sa(dp176523 +g25273 +S'color woodcut?' +p176524 +sg25267 +g27 +sg25275 +S'1956' +p176525 +sg25268 +S'Fighting Bulls' +p176526 +sg25270 +S'Roland Jarvis' +p176527 +sa(dp176528 +g25273 +S'color aquatint' +p176529 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176530 +sg25268 +S'Bodhisattva No. 1: Kuan-yin' +p176531 +sg25270 +S'John Melville Kelly' +p176532 +sa(dp176533 +g25273 +S'watercolor and graphite' +p176534 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176535 +sg25268 +S'Saint Andres, Segovia' +p176536 +sg25270 +S'Sir Muirhead Bone' +p176537 +sa(dp176538 +g25273 +S'color aquatint' +p176539 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176540 +sg25268 +S'Bodhisattva No. 3' +p176541 +sg25270 +S'John Melville Kelly' +p176542 +sa(dp176543 +g25273 +S'color aquatint' +p176544 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176545 +sg25268 +S'Bodhisattva No. 4' +p176546 +sg25270 +S'John Melville Kelly' +p176547 +sa(dp176548 +g25273 +S'color aquatint' +p176549 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176550 +sg25268 +S'Fairy and Phoenix' +p176551 +sg25270 +S'John Melville Kelly' +p176552 +sa(dp176553 +g25273 +S'color aquatint' +p176554 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176555 +sg25268 +S'Little Lotus Blossom' +p176556 +sg25270 +S'John Melville Kelly' +p176557 +sa(dp176558 +g25273 +S'drypoint over yellow-green aquatint tone plate' +p176559 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176560 +sg25268 +S'Lokalia' +p176561 +sg25270 +S'John Melville Kelly' +p176562 +sa(dp176563 +g25273 +S'color aquatint and drypoint' +p176564 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176565 +sg25268 +S'Oriental Decoration' +p176566 +sg25270 +S'John Melville Kelly' +p176567 +sa(dp176568 +g25273 +S'aquatint' +p176569 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176570 +sg25268 +S'The Sage' +p176571 +sg25270 +S'John Melville Kelly' +p176572 +sa(dp176573 +g25273 +S'color wood engraving' +p176574 +sg25267 +g27 +sg25275 +S'1958' +p176575 +sg25268 +S'Inescapable Rhythms' +p176576 +sg25270 +S'Bernard A. Kohn' +p176577 +sa(dp176578 +g25273 +S'wood engraving' +p176579 +sg25267 +g27 +sg25275 +S'1954' +p176580 +sg25268 +S'Kabuki' +p176581 +sg25270 +S'Misch Kohn' +p176582 +sa(dp176583 +g25273 +S'wood engraving' +p176584 +sg25267 +g27 +sg25275 +S'1955' +p176585 +sg25268 +S'Processional' +p176586 +sg25270 +S'Misch Kohn' +p176587 +sa(dp176588 +g25273 +S'pen and brown ink with gray and brown wash over graphite' +p176589 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176590 +sg25268 +S'River in Potes' +p176591 +sg25270 +S'Sir Muirhead Bone' +p176592 +sa(dp176593 +g25273 +S'etching and aquatint on wove paper' +p176594 +sg25267 +g27 +sg25275 +S'1957' +p176595 +sg25268 +S'Three Kings' +p176596 +sg25270 +S'Misch Kohn' +p176597 +sa(dp176598 +g25273 +S'lithograph' +p176599 +sg25267 +g27 +sg25275 +S'1919' +p176600 +sg25268 +S'Self-Portrait (Selbstbildnis)' +p176601 +sg25270 +S'K\xc3\xa4the Kollwitz' +p176602 +sa(dp176603 +g25273 +S'aquatint' +p176604 +sg25267 +g27 +sg25275 +S'1953' +p176605 +sg25268 +S'Der Radierer (The Etcher)' +p176606 +sg25270 +S'Hans Kornig' +p176607 +sa(dp176608 +g25273 +S'lithograph' +p176609 +sg25267 +g27 +sg25275 +S'1938' +p176610 +sg25268 +S'Self-Portrait in Profile Looking Right (Selbstbildnis in Profil nach Rechts)' +p176611 +sg25270 +S'K\xc3\xa4the Kollwitz' +p176612 +sa(dp176613 +g25273 +S'color woodcut on wove paper' +p176614 +sg25267 +g27 +sg25275 +S'1957' +p176615 +sg25268 +S'Young Woman' +p176616 +sg25270 +S'Millicent Krouse' +p176617 +sa(dp176618 +g25273 +S'portfolio with 8 color lithographs on silk plus title page and text' +p176619 +sg25267 +g27 +sg25275 +S'published 1955' +p176620 +sg25268 +S'The Epic of Gilgamish: Flood and Herb of Life (11th Canto)' +p176621 +sg25270 +S'Harry van Kruiningen' +p176622 +sa(dp176623 +g25273 +S'lithograph' +p176624 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176625 +sg25268 +S'James Ensor' +p176626 +sg25270 +S'David Lang' +p176627 +sa(dp176628 +g25273 +S', unknown date' +p176629 +sg25267 +g27 +sg25275 +S'\n' +p176630 +sg25268 +S'Anemones' +p176631 +sg25270 +S'Giorgio Liberale' +p176632 +sa(dp176633 +g25268 +S'Under the Apple Trees, Near Gisors (Sous les pommiers, environs de Gisors)' +p176634 +sg25270 +S'Maximilien Luce' +p176635 +sg25273 +S'color lithograph' +p176636 +sg25275 +S'unknown date\n' +p176637 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b10.jpg' +p176638 +sg25267 +g27 +sa(dp176639 +g25273 +S'lithograph' +p176640 +sg25267 +g27 +sg25275 +S'1923' +p176641 +sg25268 +S"Young Girl in Flowered Dress with Organdy Collar (Jeune fille en robe fleurie au col d'organdi)" +p176642 +sg25270 +S'Henri Matisse' +p176643 +sa(dp176644 +g25273 +S'charcoal and graphite with blue wash' +p176645 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176646 +sg25268 +S'Evening in Ronda' +p176647 +sg25270 +S'Sir Muirhead Bone' +p176648 +sa(dp176649 +g25268 +S'Le stryge (The Vampire)' +p176650 +sg25270 +S'Charles Meryon' +p176651 +sg25273 +S'etching on green paper' +p176652 +sg25275 +S'1853' +p176653 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000995e.jpg' +p176654 +sg25267 +g27 +sa(dp176655 +g25273 +S'color engraving' +p176656 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176657 +sg25268 +S'Two Birds Resting' +p176658 +sg25270 +S'Keiko Minami' +p176659 +sa(dp176660 +g25273 +S'color engraving' +p176661 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176662 +sg25268 +S'Little Girl with a Bird' +p176663 +sg25270 +S'Keiko Minami' +p176664 +sa(dp176665 +g25273 +S'color engraving' +p176666 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176667 +sg25268 +S'The Litle Shepherdess' +p176668 +sg25270 +S'Keiko Minami' +p176669 +sa(dp176670 +g25273 +S'watercolor and blue pastel' +p176671 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176672 +sg25268 +S'Poppies with Butterfly and Self-Portrait' +p176673 +sg25270 +S'Keiko Minami' +p176674 +sa(dp176675 +g25273 +S'engraving in black on wove paper' +p176676 +sg25267 +g27 +sg25275 +S'1952' +p176677 +sg25268 +S'Dartmoor' +p176678 +sg25270 +S'Norma Gloria Morgan' +p176679 +sa(dp176680 +g25273 +S'engraving in black on wove paper' +p176681 +sg25267 +g27 +sg25275 +S'1955' +p176682 +sg25268 +S'Granite Tor' +p176683 +sg25270 +S'Norma Gloria Morgan' +p176684 +sa(dp176685 +g25273 +S'engraving in black on wove paper' +p176686 +sg25267 +g27 +sg25275 +S'1954' +p176687 +sg25268 +S'Moorland Haven' +p176688 +sg25270 +S'Norma Gloria Morgan' +p176689 +sa(dp176690 +g25268 +S'Snow and Shadows (Scottish Highlands)' +p176691 +sg25270 +S'Norma Gloria Morgan' +p176692 +sg25273 +S'engraving in black on wove paper' +p176693 +sg25275 +S'1955' +p176694 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bc5.jpg' +p176695 +sg25267 +g27 +sa(dp176696 +g25273 +S'charcoal with brown, blue, pink, and yellow wash' +p176697 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176698 +sg25268 +S'Hotel Royal and Almeda, Ronda, Spain' +p176699 +sg25270 +S'Sir Muirhead Bone' +p176700 +sa(dp176701 +g25273 +S'color lithograph' +p176702 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176703 +sg25268 +S'Meadow at Night' +p176704 +sg25270 +S'Ivan Mosca' +p176705 +sa(dp176706 +g25268 +S'Barbarossa, Khair-ed-Din' +p176707 +sg25270 +S'Agostino dei Musi' +p176708 +sg25273 +S'engraving' +p176709 +sg25275 +S'1535' +p176710 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8b6.jpg' +p176711 +sg25267 +g27 +sa(dp176712 +g25273 +S'color intaglio and relief print' +p176713 +sg25267 +g27 +sg25275 +S'1956' +p176714 +sg25268 +S"The Pharaoh's Baker" +p176715 +sg25270 +S'Rolf Nesch' +p176716 +sa(dp176717 +g25273 +S'color lithograph or monotype' +p176718 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176719 +sg25268 +S'Madonna and Child' +p176720 +sg25270 +S'Christoph Oehler' +p176721 +sa(dp176722 +g25273 +S'lithograph' +p176723 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176724 +sg25268 +S'Still Life' +p176725 +sg25270 +S'Christoph Oehler' +p176726 +sa(dp176727 +g25273 +S'lithograph' +p176728 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176729 +sg25268 +S'Trosting (Consolation)' +p176730 +sg25270 +S'Christoph Oehler' +p176731 +sa(dp176732 +g25273 +S'lift-ground aquatint' +p176733 +sg25267 +g27 +sg25275 +S'1952' +p176734 +sg25268 +S"Goat's Head (Le Crane de chevre)" +p176735 +sg25270 +S'Pablo Picasso' +p176736 +sa(dp176737 +g25268 +S'The Young Draughtsman (Petit dessinateur)' +p176738 +sg25270 +S'Pablo Picasso' +p176739 +sg25273 +S'5-color lithograph' +p176740 +sg25275 +S'1954' +p176741 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eed1.jpg' +p176742 +sg25267 +g27 +sa(dp176743 +g25273 +S'lithograph' +p176744 +sg25267 +g27 +sg25275 +S'1954' +p176745 +sg25268 +S'House under Construction' +p176746 +sg25270 +S'Tuulikki Pietila' +p176747 +sa(dp176748 +g25273 +S'color lithograph' +p176749 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176750 +sg25268 +S'Foliate Heads' +p176751 +sg25270 +S'John Piper' +p176752 +sa(dp176753 +g25268 +S'Madonna and Child' +p176754 +sg25270 +S'Antonio Rossellino' +p176755 +sg25273 +S'marble' +p176756 +sg25275 +S'c. 1475/1478' +p176757 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00034/a0003419.jpg' +p176758 +sg25267 +g27 +sa(dp176759 +g25273 +S'graphite and pen and ink with wash' +p176760 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176761 +sg25268 +S'Walls of Pamplona' +p176762 +sg25270 +S'Sir Muirhead Bone' +p176763 +sa(dp176764 +g25268 +S'Le champ de choux' +p176765 +sg25270 +S'Camille Pissarro' +p176766 +sg25273 +S'graphite' +p176767 +sg25275 +S'c. 1880' +p176768 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00026/a00026d4.jpg' +p176769 +sg25267 +g27 +sa(dp176770 +g25268 +S'The Cabbage Field (Le champ de choux)' +p176771 +sg25270 +S'Camille Pissarro' +p176772 +sg25273 +S'softground etching with open-bite tone' +p176773 +sg25275 +S'c. 1880' +p176774 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004a/a0004a1b.jpg' +p176775 +sg25267 +g27 +sa(dp176776 +g25268 +S'Two Women Bathing (Les deux baigneuses)' +p176777 +sg25270 +S'Camille Pissarro' +p176778 +sg25273 +S'etching' +p176779 +sg25275 +S'1895' +p176780 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099a4.jpg' +p176781 +sg25267 +g27 +sa(dp176782 +g25273 +S'aquatint and etching' +p176783 +sg25267 +g27 +sg25275 +S'1917' +p176784 +sg25268 +S'La Proie (The Prey)' +p176785 +sg25270 +S'Orovida Camille Pissarro' +p176786 +sa(dp176787 +g25268 +S'The Holy Family' +p176788 +sg25270 +S'Artist Information (' +p176789 +sg25273 +S'(artist after)' +p176790 +sg25275 +S'\n' +p176791 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c854.jpg' +p176792 +sg25267 +g27 +sa(dp176793 +g25268 +S'Abraham and Isaac' +p176794 +sg25270 +S'Rembrandt van Rijn' +p176795 +sg25273 +S'etching and burin' +p176796 +sg25275 +S'1645' +p176797 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00053/a00053b7.jpg' +p176798 +sg25267 +g27 +sa(dp176799 +g25273 +S'color lithograph' +p176800 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176801 +sg25268 +S'Beekeeper' +p176802 +sg25270 +S'Ceri Richards' +p176803 +sa(dp176804 +g25273 +S'etching' +p176805 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176806 +sg25268 +S'Iowa Landscape' +p176807 +sg25270 +S'Jeanne Herron Richards' +p176808 +sa(dp176809 +g25273 +S'etching' +p176810 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176811 +sg25268 +S'Oriental Landscape' +p176812 +sg25270 +S'Jeanne Herron Richards' +p176813 +sa(dp176814 +g25273 +S'woodcut' +p176815 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176816 +sg25268 +S'Sleep' +p176817 +sg25270 +S'Sabin' +p176818 +sa(dp176819 +g25273 +S'watercolor and graphite' +p176820 +sg25267 +g27 +sg25275 +S'1928' +p176821 +sg25268 +S'Gerona Road' +p176822 +sg25270 +S'Sir Muirhead Bone' +p176823 +sa(dp176824 +g25273 +S'color lithograph' +p176825 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176826 +sg25268 +S'Bouquet' +p176827 +sg25270 +S'Louis-Andre Berthomme-Saint-Andre' +p176828 +sa(dp176829 +g25273 +S'color woodcut' +p176830 +sg25267 +g27 +sg25275 +S'1957' +p176831 +sg25268 +S'Ancient City, Nara' +p176832 +sg25270 +S'Kiyoshi Saito' +p176833 +sa(dp176834 +g25273 +S'color woodcut' +p176835 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176836 +sg25268 +S'Cats' +p176837 +sg25270 +S'Kiyoshi Saito' +p176838 +sa(dp176839 +g25273 +S'color woodcut' +p176840 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176841 +sg25268 +S'Pescadores Brasileros (Brazilian Fishermen)' +p176842 +sg25270 +S'Emilio Sanchez' +p176843 +sa(dp176844 +g25273 +S'etching and aquatint' +p176845 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176846 +sg25268 +S'Children Strolling' +p176847 +sg25270 +S'Emilio Sanchez' +p176848 +sa(dp176849 +g25268 +S'Roslin Castle' +p176850 +sg25270 +S'Paul Sandby' +p176851 +sg25273 +S'etching and watercolor on laid paper' +p176852 +sg25275 +S'in or after 1780' +p176853 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a000769e.jpg' +p176854 +sg25267 +g27 +sa(dp176855 +g25268 +S'West Gate at Canterbury' +p176856 +sg25270 +S'Paul Sandby' +p176857 +sg25273 +S'etching and watercolor on laid paper' +p176858 +sg25275 +S'in or after 1780' +p176859 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a000769f.jpg' +p176860 +sg25267 +g27 +sa(dp176861 +g25268 +S'Saint Philip' +p176862 +sg25270 +S'Martin Schongauer' +p176863 +sg25273 +S'engraving' +p176864 +sg25275 +S'c. 1480' +p176865 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4a8.jpg' +p176866 +sg25267 +g27 +sa(dp176867 +g25273 +S'color woodcut' +p176868 +sg25267 +g27 +sg25275 +S'1956' +p176869 +sg25268 +S'Bird and Stars' +p176870 +sg25270 +S"Jun'ichiro Sekino" +p176871 +sa(dp176872 +g25273 +S'color woodcut' +p176873 +sg25267 +g27 +sg25275 +S'1958' +p176874 +sg25268 +S'A Couple of Roosters' +p176875 +sg25270 +S"Jun'ichiro Sekino" +p176876 +sa(dp176877 +g25273 +S'charcoal and graphite' +p176878 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176879 +sg25268 +S'Dawn, Cuenca' +p176880 +sg25270 +S'Sir Muirhead Bone' +p176881 +sa(dp176882 +g25273 +S'color woodcut' +p176883 +sg25267 +g27 +sg25275 +S'1958' +p176884 +sg25268 +S'Roofs' +p176885 +sg25270 +S"Jun'ichiro Sekino" +p176886 +sa(dp176887 +g25268 +S'Alphabet of Creation' +p176888 +sg25270 +S'Ben Shahn' +p176889 +sg25273 +S'screenprint' +p176890 +sg25275 +S'1957' +p176891 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b8c.jpg' +p176892 +sg25267 +g27 +sa(dp176893 +g25273 +S'color woodcut' +p176894 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176895 +sg25268 +S'Squall' +p176896 +sg25270 +S'Paul Shaub' +p176897 +sa(dp176898 +g25273 +S'color lithograph' +p176899 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176900 +sg25268 +S'Composition III' +p176901 +sg25270 +S'Pierre Soulages' +p176902 +sa(dp176903 +g25273 +S'lithograph in black' +p176904 +sg25267 +g27 +sg25275 +S'1957' +p176905 +sg25268 +S'My Glory is upon the Seas, My Strength is Amongst You' +p176906 +sg25270 +S'Benton Murdoch Spruance' +p176907 +sa(dp176908 +g25273 +S'lithograph in black' +p176909 +sg25267 +g27 +sg25275 +S'1957' +p176910 +sg25268 +S'I Tread, You Tread, in a Land of High Slopes, Clothed in Balm' +p176911 +sg25270 +S'Benton Murdoch Spruance' +p176912 +sa(dp176913 +g25273 +S'lithograph in black' +p176914 +sg25267 +g27 +sg25275 +S'1957' +p176915 +sg25268 +S"On the Point of a Lance, Amongst Us, This Horse's Skull!" +p176916 +sg25270 +S'Benton Murdoch Spruance' +p176917 +sa(dp176918 +g25273 +S'lithograph in violet' +p176919 +sg25267 +g27 +sg25275 +S'1957' +p176920 +sg25268 +S'A Child - Offered Us a Quail in a Slipper of Rose Coloured Satin' +p176921 +sg25270 +S'Benton Murdoch Spruance' +p176922 +sa(dp176923 +g25273 +S'lithograph in black' +p176924 +sg25267 +g27 +sg25275 +S'1957' +p176925 +sg25268 +S'And the Stranger Acquires Still More Partisans in the Way of Silence' +p176926 +sg25270 +S'Benton Murdoch Spruance' +p176927 +sa(dp176928 +g25273 +S'lithograph in black' +p176929 +sg25267 +g27 +sg25275 +S'1957' +p176930 +sg25268 +S'Great Chargers of Gold Held Up by the Handmaidens Smote the Weariness of the Sands' +p176931 +sg25270 +S'Benton Murdoch Spruance' +p176932 +sa(dp176933 +g25273 +S'charcoal and graphite with wash' +p176934 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176935 +sg25268 +S'In the Galacia, Spain' +p176936 +sg25270 +S'Sir Muirhead Bone' +p176937 +sa(dp176938 +g25273 +S'lithograph in green' +p176939 +sg25267 +g27 +sg25275 +S'1957' +p176940 +sg25268 +S'The Shadow of a Great Bird Falls on My Face' +p176941 +sg25270 +S'Benton Murdoch Spruance' +p176942 +sa(dp176943 +g25273 +S'lithograph in black' +p176944 +sg25267 +g27 +sg25275 +S'1957' +p176945 +sg25268 +S'Roads of the Earth We Follow You. Authority over All the Signs of the Earth' +p176946 +sg25270 +S'Benton Murdoch Spruance' +p176947 +sa(dp176948 +g25273 +S'lithograph in black' +p176949 +sg25267 +g27 +sg25275 +S'1957' +p176950 +sg25268 +S'Plough-land of Dream! Who Talks of Building?' +p176951 +sg25270 +S'Benton Murdoch Spruance' +p176952 +sa(dp176953 +g25273 +S'lithograph in yellow [separation proof]' +p176954 +sg25267 +g27 +sg25275 +S'1957' +p176955 +sg25268 +S'Anabasis' +p176956 +sg25270 +S'Benton Murdoch Spruance' +p176957 +sa(dp176958 +g25273 +S'lithograph in ochre [separation proof]' +p176959 +sg25267 +g27 +sg25275 +S'1957' +p176960 +sg25268 +S'Anabasis' +p176961 +sg25270 +S'Benton Murdoch Spruance' +p176962 +sa(dp176963 +g25273 +S'lithograph in yellow and ochre [trial proof]' +p176964 +sg25267 +g27 +sg25275 +S'1957' +p176965 +sg25268 +S'Anabasis' +p176966 +sg25270 +S'Benton Murdoch Spruance' +p176967 +sa(dp176968 +g25273 +S'lithograph in gray [separation proof]' +p176969 +sg25267 +g27 +sg25275 +S'1957' +p176970 +sg25268 +S'Anabasis' +p176971 +sg25270 +S'Benton Murdoch Spruance' +p176972 +sa(dp176973 +g25273 +S'lithograph in gray, yellow and ochre [trial proof]' +p176974 +sg25267 +g27 +sg25275 +S'1957' +p176975 +sg25268 +S'Anabasis' +p176976 +sg25270 +S'Benton Murdoch Spruance' +p176977 +sa(dp176978 +g25273 +S'lithograph in red [separation proof]' +p176979 +sg25267 +g27 +sg25275 +S'1957' +p176980 +sg25268 +S'Roads of the Earth We Follow You. Authority over All the Signs of the Earth' +p176981 +sg25270 +S'Benton Murdoch Spruance' +p176982 +sa(dp176983 +g25273 +S'lithograph in red, gray, yellow and ochre [trial proof]' +p176984 +sg25267 +g27 +sg25275 +S'1957' +p176985 +sg25268 +S'Anabasis' +p176986 +sg25270 +S'Benton Murdoch Spruance' +p176987 +sa(dp176988 +g25273 +S'watercolor and graphite' +p176989 +sg25267 +g27 +sg25275 +S'unknown date\n' +p176990 +sg25268 +S'Rainy Day, Oviedo' +p176991 +sg25270 +S'Sir Muirhead Bone' +p176992 +sa(dp176993 +g25273 +S'lithograph in buff [trial proof]' +p176994 +sg25267 +g27 +sg25275 +S'1957' +p176995 +sg25268 +S'Anabasis' +p176996 +sg25270 +S'Benton Murdoch Spruance' +p176997 +sa(dp176998 +g25273 +S'lithograph in buff, crimson, gray, yellow and ochre [trial proof]' +p176999 +sg25267 +g27 +sg25275 +S'1957' +p177000 +sg25268 +S'Anabasis' +p177001 +sg25270 +S'Benton Murdoch Spruance' +p177002 +sa(dp177003 +g25273 +S'lithograph in brown [separation proof]' +p177004 +sg25267 +g27 +sg25275 +S'1957' +p177005 +sg25268 +S'Anabasis' +p177006 +sg25270 +S'Benton Murdoch Spruance' +p177007 +sa(dp177008 +g25273 +S'lithograph in brown, buff, crimson, gray, yellow, ochre [trial proof]' +p177009 +sg25267 +g27 +sg25275 +S'1957' +p177010 +sg25268 +S'Anabasis' +p177011 +sg25270 +S'Benton Murdoch Spruance' +p177012 +sa(dp177013 +g25273 +S'lithograph in black [separation proof]' +p177014 +sg25267 +g27 +sg25275 +S'1957' +p177015 +sg25268 +S'Anabasis' +p177016 +sg25270 +S'Benton Murdoch Spruance' +p177017 +sa(dp177018 +g25273 +S'lithograph in black, brown, and buff [trial proof]' +p177019 +sg25267 +g27 +sg25275 +S'1957' +p177020 +sg25268 +S'Anabasis' +p177021 +sg25270 +S'Benton Murdoch Spruance' +p177022 +sa(dp177023 +g25273 +S'7-color lithograph' +p177024 +sg25267 +g27 +sg25275 +S'1957' +p177025 +sg25268 +S'Anabasis' +p177026 +sg25270 +S'Benton Murdoch Spruance' +p177027 +sa(dp177028 +g25273 +S'4-color lithograph' +p177029 +sg25267 +g27 +sg25275 +S'1956' +p177030 +sg25268 +S'Penelope' +p177031 +sg25270 +S'Benton Murdoch Spruance' +p177032 +sa(dp177033 +g25273 +S'7-color lithograph (stone) on Rives wove paper' +p177034 +sg25267 +g27 +sg25275 +S'1955' +p177035 +sg25268 +S'Thornbush' +p177036 +sg25270 +S'Benton Murdoch Spruance' +p177037 +sa(dp177038 +g25273 +S'color woodcut and (screenprint?)' +p177039 +sg25267 +g27 +sg25275 +S'l956' +p177040 +sg25268 +S'The Ice Cream Man' +p177041 +sg25270 +S'James Louis Steg' +p177042 +sa(dp177043 +g25273 +S'graphite' +p177044 +sg25267 +g27 +sg25275 +S'unknown date\n' +p177045 +sg25268 +S'Moonlight, Caceres [recto]' +p177046 +sg25270 +S'Sir Muirhead Bone' +p177047 +sa(dp177048 +g25268 +S'Studies of Sudarium and Saint Agnes' +p177049 +sg25270 +S'Tobias Stimmer' +p177050 +sg25273 +S', unknown date' +p177051 +sg25275 +S'\n' +p177052 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a0d.jpg' +p177053 +sg25267 +g27 +sa(dp177054 +g25273 +S'woodcut' +p177055 +sg25267 +g27 +sg25275 +S'1956' +p177056 +sg25268 +S'Monks' +p177057 +sg25270 +S'Eileen Taber' +p177058 +sa(dp177059 +g25273 +S'lithograph' +p177060 +sg25267 +g27 +sg25275 +S'1955' +p177061 +sg25268 +S'Space with Buildings' +p177062 +sg25270 +S'Peter Takal' +p177063 +sa(dp177064 +g25273 +S'woodcut' +p177065 +sg25267 +g27 +sg25275 +S'1955' +p177066 +sg25268 +S"L'Entrada" +p177067 +sg25270 +S'Simone Titone' +p177068 +sa(dp177069 +g25273 +S'color woodcut and monotype' +p177070 +sg25267 +g27 +sg25275 +S'1954' +p177071 +sg25268 +S'Mont Cuberta' +p177072 +sg25270 +S'Simone Titone' +p177073 +sa(dp177074 +g25273 +S'lithograph' +p177075 +sg25267 +g27 +sg25275 +S'unknown date\n' +p177076 +sg25268 +S'Notre-Dame de Paris' +p177077 +sg25270 +S'Maurice Utrillo' +p177078 +sa(dp177079 +g25273 +S'color lithograph' +p177080 +sg25267 +g27 +sg25275 +S'1955' +p177081 +sg25268 +S'Scala o Portonaccio' +p177082 +sg25270 +S'Renzo Vespignani' +p177083 +sa(dp177084 +g25273 +S'color lithograph on Japan paper' +p177085 +sg25267 +g27 +sg25275 +S'1955' +p177086 +sg25268 +S'Virgilius Maro (Title Page) [right]' +p177087 +sg25270 +S'Jacques Villon' +p177088 +sa(dp177089 +g25273 +S'color lithograph on Japan paper' +p177090 +sg25267 +g27 +sg25275 +S'1955' +p177091 +sg25268 +S'Portrait of Paul Val\xc3\xa9ry [left]' +p177092 +sg25270 +S'Jacques Villon' +p177093 +sa(dp177094 +g25273 +S'color lithograph on Japan paper' +p177095 +sg25267 +g27 +sg25275 +S'1955' +p177096 +sg25268 +S'Design on Title Page [left half]' +p177097 +sg25270 +S'Jacques Villon' +p177098 +sa(dp177099 +g25273 +S'graphite' +p177100 +sg25267 +g27 +sg25275 +S'unknown date\n' +p177101 +sg25268 +S'Untitled (hillside town) [verso]' +p177102 +sg25270 +S'Sir Muirhead Bone' +p177103 +sa(dp177104 +g25273 +S'color lithograph on Japan paper' +p177105 +sg25267 +g27 +sg25275 +S'1955' +p177106 +sg25268 +S'Illustration [right half]' +p177107 +sg25270 +S'Jacques Villon' +p177108 +sa(dp177109 +g25273 +S'color lithograph on Japan paper' +p177110 +sg25267 +g27 +sg25275 +S'1955' +p177111 +sg25268 +S'First Bucolic: Virgil Expelled from the Earth by a Centurion' +p177112 +sg25270 +S'Jacques Villon' +p177113 +sa(dp177114 +g25273 +S'color lithograph on Japan paper' +p177115 +sg25267 +g27 +sg25275 +S'1955' +p177116 +sg25268 +S'First Bucolic: Virgil Expelled from the Earth by a Centurion' +p177117 +sg25270 +S'Jacques Villon' +p177118 +sa(dp177119 +g25273 +S'color lithograph on Japan paper' +p177120 +sg25267 +g27 +sg25275 +S'1955' +p177121 +sg25268 +S'First Bucolic: Imperial Rome' +p177122 +sg25270 +S'Jacques Villon' +p177123 +sa(dp177124 +g25273 +S'color lithograph on Japan paper' +p177125 +sg25267 +g27 +sg25275 +S'1955' +p177126 +sg25268 +S'Second Bucolic: Beautiful Alexis' +p177127 +sg25270 +S'Jacques Villon' +p177128 +sa(dp177129 +g25273 +S'color lithograph on Japan paper' +p177130 +sg25267 +g27 +sg25275 +S'1955' +p177131 +sg25268 +S'Second Bucolic: The Property of Virgil on the Banks of the Mincio' +p177132 +sg25270 +S'Jacques Villon' +p177133 +sa(dp177134 +g25273 +S'color lithograph on Japan paper' +p177135 +sg25267 +g27 +sg25275 +S'1955' +p177136 +sg25268 +S'Second Bucolic: The Property of Virgil on the Banks of the Mincio' +p177137 +sg25270 +S'Jacques Villon' +p177138 +sa(dp177139 +g25273 +S'color lithograph on Japan paper' +p177140 +sg25267 +g27 +sg25275 +S'1955' +p177141 +sg25268 +S'Third Bucolic: The Stakes' +p177142 +sg25270 +S'Jacques Villon' +p177143 +sa(dp177144 +g25273 +S'color lithograph on Japan paper' +p177145 +sg25267 +g27 +sg25275 +S'1955' +p177146 +sg25268 +S'Third Bucolic: The Gods of Olympia' +p177147 +sg25270 +S'Jacques Villon' +p177148 +sa(dp177149 +g25273 +S'color lithograph on Japan paper' +p177150 +sg25267 +g27 +sg25275 +S'1955' +p177151 +sg25268 +S'Fourth Bucolic: Pollion' +p177152 +sg25270 +S'Jacques Villon' +p177153 +sa(dp177154 +g25273 +S'watercolor and graphite' +p177155 +sg25267 +g27 +sg25275 +S'probably 1928' +p177156 +sg25268 +S'Barcelona Harbor' +p177157 +sg25270 +S'Sir Muirhead Bone' +p177158 +sa(dp177159 +g25273 +S'color lithograph on Japan paper' +p177160 +sg25267 +g27 +sg25275 +S'1955' +p177161 +sg25268 +S'Fourth Bucolic: Pollion' +p177162 +sg25270 +S'Jacques Villon' +p177163 +sa(dp177164 +g25273 +S'color lithograph on Japan paper' +p177165 +sg25267 +g27 +sg25275 +S'1955' +p177166 +sg25268 +S'Fourth Bucolic: The Golden Age' +p177167 +sg25270 +S'Jacques Villon' +p177168 +sa(dp177169 +g25273 +S'color lithograph on Japan paper' +p177170 +sg25267 +g27 +sg25275 +S'1955' +p177171 +sg25268 +S'Fourth Bucolic: The Golden Age' +p177172 +sg25270 +S'Jacques Villon' +p177173 +sa(dp177174 +g25273 +S'color lithograph on Japan paper' +p177175 +sg25267 +g27 +sg25275 +S'1955' +p177176 +sg25268 +S'Fifth Bucolic: The Death of Daphnis' +p177177 +sg25270 +S'Jacques Villon' +p177178 +sa(dp177179 +g25273 +S'color lithograph on Japan paper' +p177180 +sg25267 +g27 +sg25275 +S'1955' +p177181 +sg25268 +S'Fifth Bucolic: Pastoral' +p177182 +sg25270 +S'Jacques Villon' +p177183 +sa(dp177184 +g25273 +S'color lithograph on Japan paper' +p177185 +sg25267 +g27 +sg25275 +S'1955' +p177186 +sg25268 +S'Sixth Bucolic: Silenus, Pasiphae, and the Bull' +p177187 +sg25270 +S'Jacques Villon' +p177188 +sa(dp177189 +g25273 +S'color lithograph on Japan paper' +p177190 +sg25267 +g27 +sg25275 +S'1955' +p177191 +sg25268 +S'Sixth Bucolic: Silenus, Pasiphae, and the Bull' +p177192 +sg25270 +S'Jacques Villon' +p177193 +sa(dp177194 +g25273 +S'color lithograph on Japan paper' +p177195 +sg25267 +g27 +sg25275 +S'1955' +p177196 +sg25268 +S'Sixth Bucolic: Creation of the World' +p177197 +sg25270 +S'Jacques Villon' +p177198 +sa(dp177199 +g25273 +S'color lithograph on Japan paper' +p177200 +sg25267 +g27 +sg25275 +S'1955' +p177201 +sg25268 +S'Seventh Bucolic: Pastoral' +p177202 +sg25270 +S'Jacques Villon' +p177203 +sa(dp177204 +g25273 +S'color lithograph on Japan paper' +p177205 +sg25267 +g27 +sg25275 +S'1955' +p177206 +sg25268 +S'Seventh Bucolic: Pastoral' +p177207 +sg25270 +S'Jacques Villon' +p177208 +sa(dp177209 +g25273 +S'graphite' +p177210 +sg25267 +g27 +sg25275 +S'unknown date\n' +p177211 +sg25268 +S'Coasting Steamers, Gijon (Asturias)' +p177212 +sg25270 +S'Sir Muirhead Bone' +p177213 +sa(dp177214 +g25273 +S'color lithograph on Japan paper' +p177215 +sg25267 +g27 +sg25275 +S'1955' +p177216 +sg25268 +S'Eighth Bucolic: Pastoral' +p177217 +sg25270 +S'Jacques Villon' +p177218 +sa(dp177219 +g25273 +S'color lithograph on Japan paper' +p177220 +sg25267 +g27 +sg25275 +S'1955' +p177221 +sg25268 +S'Eighth Bucolic [left half]' +p177222 +sg25270 +S'Jacques Villon' +p177223 +sa(dp177224 +g25273 +S'color lithograph on Japan paper' +p177225 +sg25267 +g27 +sg25275 +S'1955' +p177226 +sg25268 +S'Eighth Bucolic [right half]' +p177227 +sg25270 +S'Jacques Villon' +p177228 +sa(dp177229 +g25273 +S'color lithograph on Japan paper' +p177230 +sg25267 +g27 +sg25275 +S'1955' +p177231 +sg25268 +S'Ninth Bucolic: Moeris and Lycidas Wait for Virgil' +p177232 +sg25270 +S'Jacques Villon' +p177233 +sa(dp177234 +g25273 +S'color lithograph on Japan paper' +p177235 +sg25267 +g27 +sg25275 +S'1955' +p177236 +sg25268 +S'Ninth Bucolic: Mantua' +p177237 +sg25270 +S'Jacques Villon' +p177238 +sa(dp177239 +g25273 +S'color lithograph on Japan paper' +p177240 +sg25267 +g27 +sg25275 +S'1955' +p177241 +sg25268 +S'Tenth Bucolic: Lycoris and Gallus' +p177242 +sg25270 +S'Jacques Villon' +p177243 +sa(dp177244 +g25273 +S'color lithograph on Japan paper' +p177245 +sg25267 +g27 +sg25275 +S'1955' +p177246 +sg25268 +S'Tenth Bucolic: Lycoris with the Army of Rhin' +p177247 +sg25270 +S'Jacques Villon' +p177248 +sa(dp177249 +g25273 +S'color lithograph on Arches wove paper' +p177250 +sg25267 +g27 +sg25275 +S'1923' +p177251 +sg25268 +S"On the Banks of the Oise (Sur les bords de l'Oise)" +p177252 +sg25270 +S'Maurice de Vlaminck' +p177253 +sa(dp177254 +g25273 +S'lithograph' +p177255 +sg25267 +g27 +sg25275 +S'1921' +p177256 +sg25268 +S"Saint-Ouen L'Aumone, near Pontoise (Saint-Ouen L'Aumone, pres Pontoise)" +p177257 +sg25270 +S'Maurice de Vlaminck' +p177258 +sa(dp177259 +g25273 +S'color lithograph' +p177260 +sg25267 +g27 +sg25275 +S'1956' +p177261 +sg25268 +S'Saint Francis' +p177262 +sg25270 +S'Emil Weddige' +p177263 +sa(dp177264 +g25273 +S'watercolor and pen and ink' +p177265 +sg25267 +g27 +sg25275 +S'unknown date\n' +p177266 +sg25268 +S'Cathedral Tower, Gerona' +p177267 +sg25270 +S'Sir Muirhead Bone' +p177268 +sa(dp177269 +g25273 +S'6-color woodcut' +p177270 +sg25267 +g27 +sg25275 +S'1956' +p177271 +sg25268 +S'Teahouse' +p177272 +sg25270 +S'Hodaka Yoshida' +p177273 +sa(dp177274 +g25273 +S'color lithograph' +p177275 +sg25267 +g27 +sg25275 +S'unknown date\n' +p177276 +sg25268 +S'Two Trees' +p177277 +sg25270 +S'Zao Wou-Ki' +p177278 +sa(dp177279 +g25273 +S'4-color woodcut' +p177280 +sg25267 +g27 +sg25275 +S'1958' +p177281 +sg25268 +S'"A Toute Epreuve" I' +p177282 +sg25270 +S'Joan Mir\xc3\xb3' +p177283 +sa(dp177284 +g25273 +S'portfolio with title page, table of contents, colophon, and eighty color woodcuts and collages' +p177285 +sg25267 +g27 +sg25275 +S'published 1958' +p177286 +sg25268 +S'Paul Eluard\'s "A Toute Epreuve"' +p177287 +sg25270 +S'Joan Mir\xc3\xb3' +p177288 +sa(dp177289 +g25273 +S'4-color woodcut' +p177290 +sg25267 +g27 +sg25275 +S'1958' +p177291 +sg25268 +S'"A Toute Epreuve" II' +p177292 +sg25270 +S'Joan Mir\xc3\xb3' +p177293 +sa(dp177294 +g25273 +S'5-color woodcut' +p177295 +sg25267 +g27 +sg25275 +S'1958' +p177296 +sg25268 +S'"A Toute Epreuve" III' +p177297 +sg25270 +S'Joan Mir\xc3\xb3' +p177298 +sa(dp177299 +g25273 +S'5-color woodcut' +p177300 +sg25267 +g27 +sg25275 +S'1958' +p177301 +sg25268 +S'"A Toute Epreuve" IV' +p177302 +sg25270 +S'Joan Mir\xc3\xb3' +p177303 +sa(dp177304 +g25273 +S'5-color woodcut' +p177305 +sg25267 +g27 +sg25275 +S'1958' +p177306 +sg25268 +S'"A Toute Epreuve" V' +p177307 +sg25270 +S'Joan Mir\xc3\xb3' +p177308 +sa(dp177309 +g25273 +S'5-color woodcut' +p177310 +sg25267 +g27 +sg25275 +S'1958' +p177311 +sg25268 +S'"A Toute Epreuve" VI' +p177312 +sg25270 +S'Joan Mir\xc3\xb3' +p177313 +sa(dp177314 +g25273 +S'woodcut in black' +p177315 +sg25267 +g27 +sg25275 +S'1958' +p177316 +sg25268 +S'"A Toute Epreuve" VII' +p177317 +sg25270 +S'Joan Mir\xc3\xb3' +p177318 +sa(dp177319 +g25268 +S'The Nativity' +p177320 +sg25270 +S'Petrus Christus' +p177321 +sg25273 +S'oil on panel' +p177322 +sg25275 +S'c. 1450' +p177323 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000598.jpg' +p177324 +sg25267 +S"The \n Christus depicted not only the historical moment of Jesus' birth but also the enactment\nof the first Mass, an image deriving in part from the revelation of Saint Bridget,\nwhich had become the conventional visualization of the Nativity by the early fifteenth\ncentury. The angels wear eucharistic vestments of the subministers of the Mass,\nthough none wears the chasuble worn by the principal celebrant, suggesting that\nChrist himself is here both priest and sacrifice.\n " +p177325 +sa(dp177326 +g25268 +S'The Nativity' +p177327 +sg25270 +S'Domenico Gagini' +p177328 +sg25273 +S'marble' +p177329 +sg25275 +S'c. 1460' +p177330 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c33.jpg' +p177331 +sg25267 +g27 +sa(dp177332 +g25273 +S'graphite and pen and ink heightened with white' +p177333 +sg25267 +g27 +sg25275 +S'unknown date\n' +p177334 +sg25268 +S'Sunset - Cathedral And Walls, Gerona' +p177335 +sg25270 +S'Sir Muirhead Bone' +p177336 +sa(dp177337 +g25273 +S'woodcut in black, red, and blue' +p177338 +sg25267 +g27 +sg25275 +S'1958' +p177339 +sg25268 +S'"A Toute Epreuve" VIII' +p177340 +sg25270 +S'Joan Mir\xc3\xb3' +p177341 +sa(dp177342 +g25273 +S'5-color woodcut' +p177343 +sg25267 +g27 +sg25275 +S'1958' +p177344 +sg25268 +S'"A Toute Epreuve" IX' +p177345 +sg25270 +S'Joan Mir\xc3\xb3' +p177346 +sa(dp177347 +g25273 +S'5-color woodcut' +p177348 +sg25267 +g27 +sg25275 +S'1958' +p177349 +sg25268 +S'"A Toute Epreuve" X' +p177350 +sg25270 +S'Joan Mir\xc3\xb3' +p177351 +sa(dp177352 +g25273 +S'5-color woodcut and collage' +p177353 +sg25267 +g27 +sg25275 +S'1958' +p177354 +sg25268 +S'"A Toute Epreuve" XI' +p177355 +sg25270 +S'Joan Mir\xc3\xb3' +p177356 +sa(dp177357 +g25273 +S'4-color woodcut' +p177358 +sg25267 +g27 +sg25275 +S'1958' +p177359 +sg25268 +S'"A Toute Epreuve" XII' +p177360 +sg25270 +S'Joan Mir\xc3\xb3' +p177361 +sa(dp177362 +g25273 +S'woodcut in black, red, and blue' +p177363 +sg25267 +g27 +sg25275 +S'1958' +p177364 +sg25268 +S'"A Toute Epreuve" XIII' +p177365 +sg25270 +S'Joan Mir\xc3\xb3' +p177366 +sa(dp177367 +g25273 +S'4-color woodcut' +p177368 +sg25267 +g27 +sg25275 +S'1958' +p177369 +sg25268 +S'"A Toute Epreuve" XIV' +p177370 +sg25270 +S'Joan Mir\xc3\xb3' +p177371 +sa(dp177372 +g25273 +S'4-color woodcut' +p177373 +sg25267 +g27 +sg25275 +S'1958' +p177374 +sg25268 +S'"A Toute Epreuve" XV' +p177375 +sg25270 +S'Joan Mir\xc3\xb3' +p177376 +sa(dp177377 +g25273 +S'6-color woodcut' +p177378 +sg25267 +g27 +sg25275 +S'1958' +p177379 +sg25268 +S'"A Toute Epreuve" XVI' +p177380 +sg25270 +S'Joan Mir\xc3\xb3' +p177381 +sa(dp177382 +g25273 +S'woodcut in black' +p177383 +sg25267 +g27 +sg25275 +S'1958' +p177384 +sg25268 +S'"A Toute Epreuve" XVII' +p177385 +sg25270 +S'Joan Mir\xc3\xb3' +p177386 +sa(dp177387 +g25273 +S'graphite and wash' +p177388 +sg25267 +g27 +sg25275 +S'unknown date\n' +p177389 +sg25268 +S'Convent near Santiago' +p177390 +sg25270 +S'Sir Muirhead Bone' +p177391 +sa(dp177392 +g25273 +S'6-color woodcut' +p177393 +sg25267 +g27 +sg25275 +S'1958' +p177394 +sg25268 +S'"A Toute Epreuve" XVIII' +p177395 +sg25270 +S'Joan Mir\xc3\xb3' +p177396 +sa(dp177397 +g25273 +S'woodcut in green' +p177398 +sg25267 +g27 +sg25275 +S'1958' +p177399 +sg25268 +S'"A Toute Epreuve" XIX' +p177400 +sg25270 +S'Joan Mir\xc3\xb3' +p177401 +sa(dp177402 +g25273 +S'5-color woodcut' +p177403 +sg25267 +g27 +sg25275 +S'1958' +p177404 +sg25268 +S'"A Toute Epreuve" XX' +p177405 +sg25270 +S'Joan Mir\xc3\xb3' +p177406 +sa(dp177407 +g25273 +S'4-color woodcut' +p177408 +sg25267 +g27 +sg25275 +S'1958' +p177409 +sg25268 +S'"A Toute Epreuve" XXI' +p177410 +sg25270 +S'Joan Mir\xc3\xb3' +p177411 +sa(dp177412 +g25273 +S'5-color woodcut' +p177413 +sg25267 +g27 +sg25275 +S'1958' +p177414 +sg25268 +S'"A Toute Epreuve" XXII' +p177415 +sg25270 +S'Joan Mir\xc3\xb3' +p177416 +sa(dp177417 +g25273 +S'5-color woodcut' +p177418 +sg25267 +g27 +sg25275 +S'1958' +p177419 +sg25268 +S'"A Toute Epreuve" XXIII' +p177420 +sg25270 +S'Joan Mir\xc3\xb3' +p177421 +sa(dp177422 +g25273 +S'8-color woodcut' +p177423 +sg25267 +g27 +sg25275 +S'1958' +p177424 +sg25268 +S'"A Toute Epreuve" XXIV' +p177425 +sg25270 +S'Joan Mir\xc3\xb3' +p177426 +sa(dp177427 +g25273 +S'woodcut in blue' +p177428 +sg25267 +g27 +sg25275 +S'1958' +p177429 +sg25268 +S'"A Toute Epreuve" XXV' +p177430 +sg25270 +S'Joan Mir\xc3\xb3' +p177431 +sa(dp177432 +g25273 +S'4-color woodcut' +p177433 +sg25267 +g27 +sg25275 +S'1958' +p177434 +sg25268 +S'"A Toute Epreuve" XXVI' +p177435 +sg25270 +S'Joan Mir\xc3\xb3' +p177436 +sa(dp177437 +g25273 +S'5-color woodcut' +p177438 +sg25267 +g27 +sg25275 +S'1958' +p177439 +sg25268 +S'"A Toute Epreuve" XXVII' +p177440 +sg25270 +S'Joan Mir\xc3\xb3' +p177441 +sa(dp177442 +g25273 +S'watercolor and graphite' +p177443 +sg25267 +g27 +sg25275 +S'unknown date\n' +p177444 +sg25268 +S'Gray Day, Santiago' +p177445 +sg25270 +S'Sir Muirhead Bone' +p177446 +sa(dp177447 +g25273 +S'woodcut in black and red' +p177448 +sg25267 +g27 +sg25275 +S'1958' +p177449 +sg25268 +S'"A Toute Epreuve" XXVIII' +p177450 +sg25270 +S'Joan Mir\xc3\xb3' +p177451 +sa(dp177452 +g25273 +S'6-color woodcut' +p177453 +sg25267 +g27 +sg25275 +S'1958' +p177454 +sg25268 +S'"A Toute Epreuve" XXIX' +p177455 +sg25270 +S'Joan Mir\xc3\xb3' +p177456 +sa(dp177457 +g25273 +S'4-color woodcut' +p177458 +sg25267 +g27 +sg25275 +S'1958' +p177459 +sg25268 +S'"A Toute Epreuve" XXX' +p177460 +sg25270 +S'Joan Mir\xc3\xb3' +p177461 +sa(dp177462 +g25273 +S'7-color woodcut' +p177463 +sg25267 +g27 +sg25275 +S'1958' +p177464 +sg25268 +S'"A Toute Epreuve" XXXI' +p177465 +sg25270 +S'Joan Mir\xc3\xb3' +p177466 +sa(dp177467 +g25273 +S'5-color woodcut' +p177468 +sg25267 +g27 +sg25275 +S'1958' +p177469 +sg25268 +S'"A Toute Epreuve" XXXII' +p177470 +sg25270 +S'Joan Mir\xc3\xb3' +p177471 +sa(dp177472 +g25273 +S'5-color woodcut' +p177473 +sg25267 +g27 +sg25275 +S'1958' +p177474 +sg25268 +S'"A Toute Epreuve" XXXIII' +p177475 +sg25270 +S'Joan Mir\xc3\xb3' +p177476 +sa(dp177477 +g25273 +S'woodcut in red, black, and blue-green' +p177478 +sg25267 +g27 +sg25275 +S'1958' +p177479 +sg25268 +S'"A Toute Epreuve" XXXIV' +p177480 +sg25270 +S'Joan Mir\xc3\xb3' +p177481 +sa(dp177482 +g25273 +S'woodcut and collage in blue and black' +p177483 +sg25267 +g27 +sg25275 +S'1958' +p177484 +sg25268 +S'"A Toute Epreuve" XXXV' +p177485 +sg25270 +S'Joan Mir\xc3\xb3' +p177486 +sa(dp177487 +g25273 +S'5-color woodcut and collage' +p177488 +sg25267 +g27 +sg25275 +S'1958' +p177489 +sg25268 +S'"A Toute Epreuve" XXXVI' +p177490 +sg25270 +S'Joan Mir\xc3\xb3' +p177491 +sa(dp177492 +g25273 +S'woodcut and collage in blue and black' +p177493 +sg25267 +g27 +sg25275 +S'1958' +p177494 +sg25268 +S'"A Toute Epreuve" XXXVII' +p177495 +sg25270 +S'Joan Mir\xc3\xb3' +p177496 +sa(dp177497 +g25273 +S'graphite with wash' +p177498 +sg25267 +g27 +sg25275 +S'unknown date\n' +p177499 +sg25268 +S'Aisle in Santiago Cathedral' +p177500 +sg25270 +S'Sir Muirhead Bone' +p177501 +sa(dp177502 +g25273 +S'woodcut and collage in red and black' +p177503 +sg25267 +g27 +sg25275 +S'1958' +p177504 +sg25268 +S'"A Toute Epreuve" XXXVIII' +p177505 +sg25270 +S'Joan Mir\xc3\xb3' +p177506 +sa(dp177507 +g25273 +S'5-color woodcut' +p177508 +sg25267 +g27 +sg25275 +S'1958' +p177509 +sg25268 +S'"A Toute Epreuve" XXXIX' +p177510 +sg25270 +S'Joan Mir\xc3\xb3' +p177511 +sa(dp177512 +g25273 +S'5-color woodcut' +p177513 +sg25267 +g27 +sg25275 +S'1958' +p177514 +sg25268 +S'"A Toute Epreuve" XL' +p177515 +sg25270 +S'Joan Mir\xc3\xb3' +p177516 +sa(dp177517 +g25273 +S'5-color woodcut' +p177518 +sg25267 +g27 +sg25275 +S'1958' +p177519 +sg25268 +S'"A Toute Epreuve" XLI' +p177520 +sg25270 +S'Joan Mir\xc3\xb3' +p177521 +sa(dp177522 +g25273 +S'woodcut in blue' +p177523 +sg25267 +g27 +sg25275 +S'1958' +p177524 +sg25268 +S'"A Toute Epreuve" XLII' +p177525 +sg25270 +S'Joan Mir\xc3\xb3' +p177526 +sa(dp177527 +g25273 +S'5-color woodcut' +p177528 +sg25267 +g27 +sg25275 +S'1958' +p177529 +sg25268 +S'"A Toute Epreuve" XLIII' +p177530 +sg25270 +S'Joan Mir\xc3\xb3' +p177531 +sa(dp177532 +g25273 +S'5-color woodcut' +p177533 +sg25267 +g27 +sg25275 +S'1958' +p177534 +sg25268 +S'"A Toute Epreuve" XLIV' +p177535 +sg25270 +S'Joan Mir\xc3\xb3' +p177536 +sa(dp177537 +g25273 +S'5-color woodcut and collage' +p177538 +sg25267 +g27 +sg25275 +S'1958' +p177539 +sg25268 +S'"A Toute Epreuve" XLV' +p177540 +sg25270 +S'Joan Mir\xc3\xb3' +p177541 +sa(dp177542 +g25273 +S'5-color woodcut and collage' +p177543 +sg25267 +g27 +sg25275 +S'1958' +p177544 +sg25268 +S'"A Toute Epreuve" XLVI' +p177545 +sg25270 +S'Joan Mir\xc3\xb3' +p177546 +sa(dp177547 +g25273 +S'4-color woodcut' +p177548 +sg25267 +g27 +sg25275 +S'1958' +p177549 +sg25268 +S'"A Toute Epreuve" XLVII' +p177550 +sg25270 +S'Joan Mir\xc3\xb3' +p177551 +sa(dp177552 +g25273 +S'watercolor and graphite' +p177553 +sg25267 +g27 +sg25275 +S'unknown date\n' +p177554 +sg25268 +S'Percuil' +p177555 +sg25270 +S'Sir Muirhead Bone' +p177556 +sa(dp177557 +g25273 +S'5-color woodcut and collage' +p177558 +sg25267 +g27 +sg25275 +S'1958' +p177559 +sg25268 +S'"A Toute Epreuve" XLVIII' +p177560 +sg25270 +S'Joan Mir\xc3\xb3' +p177561 +sa(dp177562 +g25273 +S'woodcut in yellow and white' +p177563 +sg25267 +g27 +sg25275 +S'1958' +p177564 +sg25268 +S'"A Toute Epreuve" XLIX' +p177565 +sg25270 +S'Joan Mir\xc3\xb3' +p177566 +sa(dp177567 +g25273 +S'7-color woodcut and collage' +p177568 +sg25267 +g27 +sg25275 +S'1958' +p177569 +sg25268 +S'"A Toute Epreuve" L' +p177570 +sg25270 +S'Joan Mir\xc3\xb3' +p177571 +sa(dp177572 +g25273 +S'woodcut and collage in black and white' +p177573 +sg25267 +g27 +sg25275 +S'1958' +p177574 +sg25268 +S'"A Toute Epreuve" LI' +p177575 +sg25270 +S'Joan Mir\xc3\xb3' +p177576 +sa(dp177577 +g25273 +S'5-color woodcut' +p177578 +sg25267 +g27 +sg25275 +S'1958' +p177579 +sg25268 +S'"A Toute Epreuve" LII' +p177580 +sg25270 +S'Joan Mir\xc3\xb3' +p177581 +sa(dp177582 +g25273 +S'woodcut in green and black' +p177583 +sg25267 +g27 +sg25275 +S'1958' +p177584 +sg25268 +S'"A Toute Epreuve" LIII' +p177585 +sg25270 +S'Joan Mir\xc3\xb3' +p177586 +sa(dp177587 +g25273 +S'5-color woodcut' +p177588 +sg25267 +g27 +sg25275 +S'1958' +p177589 +sg25268 +S'"A Toute Epreuve" LIV' +p177590 +sg25270 +S'Joan Mir\xc3\xb3' +p177591 +sa(dp177592 +g25273 +S'5-color woodcut' +p177593 +sg25267 +g27 +sg25275 +S'1958' +p177594 +sg25268 +S'"A Toute Epreuve" LV' +p177595 +sg25270 +S'Joan Mir\xc3\xb3' +p177596 +sa(dp177597 +g25273 +S'woodcut in green, black, and yellow' +p177598 +sg25267 +g27 +sg25275 +S'1958' +p177599 +sg25268 +S'"A Toute Epreuve" LVI' +p177600 +sg25270 +S'Joan Mir\xc3\xb3' +p177601 +sa(dp177602 +g25273 +S'5-color woodcut' +p177603 +sg25267 +g27 +sg25275 +S'1958' +p177604 +sg25268 +S'"A Toute Epreuve" LVII' +p177605 +sg25270 +S'Joan Mir\xc3\xb3' +p177606 +sa(dp177607 +g25273 +S'charcoal and graphite' +p177608 +sg25267 +g27 +sg25275 +S'unknown date\n' +p177609 +sg25268 +S'Tower, Auxerre, Night' +p177610 +sg25270 +S'Sir Muirhead Bone' +p177611 +sa(dp177612 +g25273 +S'4-color woodcut' +p177613 +sg25267 +g27 +sg25275 +S'1958' +p177614 +sg25268 +S'"A Toute Epreuve" LVIII' +p177615 +sg25270 +S'Joan Mir\xc3\xb3' +p177616 +sa(dp177617 +g25273 +S'4-color woodcut' +p177618 +sg25267 +g27 +sg25275 +S'1958' +p177619 +sg25268 +S'"A Toute Epreuve" LIX' +p177620 +sg25270 +S'Joan Mir\xc3\xb3' +p177621 +sa(dp177622 +g25273 +S'5-color woodcut' +p177623 +sg25267 +g27 +sg25275 +S'1958' +p177624 +sg25268 +S'"A Toute Epreuve" LX' +p177625 +sg25270 +S'Joan Mir\xc3\xb3' +p177626 +sa(dp177627 +g25273 +S'woodcut in black' +p177628 +sg25267 +g27 +sg25275 +S'1958' +p177629 +sg25268 +S'"A Toute Epreuve" LXI' +p177630 +sg25270 +S'Joan Mir\xc3\xb3' +p177631 +sa(dp177632 +g25273 +S'woodcut in blue' +p177633 +sg25267 +g27 +sg25275 +S'1958' +p177634 +sg25268 +S'"A Toute Epreuve" LXII' +p177635 +sg25270 +S'Joan Mir\xc3\xb3' +p177636 +sa(dp177637 +g25273 +S'5-color woodcut' +p177638 +sg25267 +g27 +sg25275 +S'1958' +p177639 +sg25268 +S'"A Toute Epreuve" LXIII' +p177640 +sg25270 +S'Joan Mir\xc3\xb3' +p177641 +sa(dp177642 +g25273 +S'5-color woodcut' +p177643 +sg25267 +g27 +sg25275 +S'1958' +p177644 +sg25268 +S'"A Toute Epreuve" LXIV' +p177645 +sg25270 +S'Joan Mir\xc3\xb3' +p177646 +sa(dp177647 +g25273 +S'4-color woodcut' +p177648 +sg25267 +g27 +sg25275 +S'1958' +p177649 +sg25268 +S'"A Toute Epreuve" LXV' +p177650 +sg25270 +S'Joan Mir\xc3\xb3' +p177651 +sa(dp177652 +g25273 +S'5-color woodcut' +p177653 +sg25267 +g27 +sg25275 +S'1958' +p177654 +sg25268 +S'"A Toute Epreuve" LXVI' +p177655 +sg25270 +S'Joan Mir\xc3\xb3' +p177656 +sa(dp177657 +g25273 +S'5-color woodcut' +p177658 +sg25267 +g27 +sg25275 +S'1958' +p177659 +sg25268 +S'"A Toute Epreuve" LXVII' +p177660 +sg25270 +S'Joan Mir\xc3\xb3' +p177661 +sa(dp177662 +g25273 +S'charcoal and graphite' +p177663 +sg25267 +g27 +sg25275 +S'unknown date\n' +p177664 +sg25268 +S'The Latin Quarter, Paris' +p177665 +sg25270 +S'Sir Muirhead Bone' +p177666 +sa(dp177667 +g25273 +S'4-color woodcut' +p177668 +sg25267 +g27 +sg25275 +S'1958' +p177669 +sg25268 +S'"A Toute Epreuve" LXVIII' +p177670 +sg25270 +S'Joan Mir\xc3\xb3' +p177671 +sa(dp177672 +g25273 +S'5-color woodcut' +p177673 +sg25267 +g27 +sg25275 +S'1958' +p177674 +sg25268 +S'"A Toute Epreuve" LXIX' +p177675 +sg25270 +S'Joan Mir\xc3\xb3' +p177676 +sa(dp177677 +g25273 +S'woodcut in black' +p177678 +sg25267 +g27 +sg25275 +S'1958' +p177679 +sg25268 +S'"A Toute Epreuve" LXX' +p177680 +sg25270 +S'Joan Mir\xc3\xb3' +p177681 +sa(dp177682 +g25273 +S'5-color woodcut' +p177683 +sg25267 +g27 +sg25275 +S'1958' +p177684 +sg25268 +S'"A Toute Epreuve" LXXI' +p177685 +sg25270 +S'Joan Mir\xc3\xb3' +p177686 +sa(dp177687 +g25273 +S'6-color woodcut' +p177688 +sg25267 +g27 +sg25275 +S'1958' +p177689 +sg25268 +S'"A Toute Epreuve" LXXII' +p177690 +sg25270 +S'Joan Mir\xc3\xb3' +p177691 +sa(dp177692 +g25273 +S'woodcut in gray and white' +p177693 +sg25267 +g27 +sg25275 +S'1958' +p177694 +sg25268 +S'"A Toute Epreuve" LXXIII' +p177695 +sg25270 +S'Joan Mir\xc3\xb3' +p177696 +sa(dp177697 +g25273 +S'woodcut in red and black' +p177698 +sg25267 +g27 +sg25275 +S'1958' +p177699 +sg25268 +S'"A Toute Epreuve" LXXIV' +p177700 +sg25270 +S'Joan Mir\xc3\xb3' +p177701 +sa(dp177702 +g25273 +S'woodcut in red and white' +p177703 +sg25267 +g27 +sg25275 +S'1958' +p177704 +sg25268 +S'"A Toute Epreuve" LXXV' +p177705 +sg25270 +S'Joan Mir\xc3\xb3' +p177706 +sa(dp177707 +g25273 +S'woodcut in blue, green, and yellow' +p177708 +sg25267 +g27 +sg25275 +S'1958' +p177709 +sg25268 +S'"A Toute Epreuve" LXXVI' +p177710 +sg25270 +S'Joan Mir\xc3\xb3' +p177711 +sa(dp177712 +g25273 +S'4-color woodcut' +p177713 +sg25267 +g27 +sg25275 +S'1958' +p177714 +sg25268 +S'"A Toute Epreuve" LXXVII' +p177715 +sg25270 +S'Joan Mir\xc3\xb3' +p177716 +sa(dp177717 +g25273 +S'watercolor and graphite' +p177718 +sg25267 +g27 +sg25275 +S'unknown date\n' +p177719 +sg25268 +S'Near Ventimiglia, Menton' +p177720 +sg25270 +S'Sir Muirhead Bone' +p177721 +sa(dp177722 +g25273 +S'5-color woodcut' +p177723 +sg25267 +g27 +sg25275 +S'1958' +p177724 +sg25268 +S'"A Toute Epreuve" LXXVIII' +p177725 +sg25270 +S'Joan Mir\xc3\xb3' +p177726 +sa(dp177727 +g25273 +S'5-color woodcut and collage' +p177728 +sg25267 +g27 +sg25275 +S'1958' +p177729 +sg25268 +S'"A Toute Epreuve" LXXIX' +p177730 +sg25270 +S'Joan Mir\xc3\xb3' +p177731 +sa(dp177732 +g25273 +S'5-color woodcut' +p177733 +sg25267 +g27 +sg25275 +S'1958' +p177734 +sg25268 +S'"A Toute Epreuve" LXXX' +p177735 +sg25270 +S'Joan Mir\xc3\xb3' +p177736 +sa(dp177737 +g25268 +S'Mezzetin' +p177738 +sg25270 +S'Antoine Watteau' +p177739 +sg25273 +S'red and black chalk counterproof on laid paper' +p177740 +sg25275 +S'c. 1716' +p177741 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e40.jpg' +p177742 +sg25267 +g27 +sa(dp177743 +g25273 +S'lithograph' +p177744 +sg25267 +g27 +sg25275 +S'1962' +p177745 +sg25268 +S'Warner House' +p177746 +sg25270 +S'Stow Wengenroth' +p177747 +sa(dp177748 +g25273 +S'lithograph' +p177749 +sg25267 +g27 +sg25275 +S'1959' +p177750 +sg25268 +S'Wendell House' +p177751 +sg25270 +S'Stow Wengenroth' +p177752 +sa(dp177753 +g25273 +S'etching' +p177754 +sg25267 +g27 +sg25275 +S'1929/1934' +p177755 +sg25268 +S'Approaching New York, No.2 (Upright Plate)' +p177756 +sg25270 +S'James McBey' +p177757 +sa(dp177758 +g25273 +S'etching' +p177759 +sg25267 +g27 +sg25275 +S'1924' +p177760 +sg25268 +S'Artist and Model' +p177761 +sg25270 +S'James McBey' +p177762 +sa(dp177763 +g25273 +S'etching' +p177764 +sg25267 +g27 +sg25275 +S'1930' +p177765 +sg25268 +S'East River, Sunset' +p177766 +sg25270 +S'James McBey' +p177767 +sa(dp177768 +g25273 +S'etching' +p177769 +sg25267 +g27 +sg25275 +S'1938' +p177770 +sg25268 +S'Marrakesh' +p177771 +sg25270 +S'James McBey' +p177772 +sa(dp177773 +g25273 +S'graphite' +p177774 +sg25267 +g27 +sg25275 +S'unknown date\n' +p177775 +sg25268 +S'New and Old Gaietys' +p177776 +sg25270 +S'Sir Muirhead Bone' +p177777 +sa(dp177778 +g25273 +S'etching' +p177779 +sg25267 +g27 +sg25275 +S'1925' +p177780 +sg25268 +S'Molo' +p177781 +sg25270 +S'James McBey' +p177782 +sa(dp177783 +g25273 +S'etching' +p177784 +sg25267 +g27 +sg25275 +S'1925' +p177785 +sg25268 +S'Mirage' +p177786 +sg25270 +S'James McBey' +p177787 +sa(dp177788 +g25273 +S'etching' +p177789 +sg25267 +g27 +sg25275 +S'1934' +p177790 +sg25268 +S'Phoenician Coast' +p177791 +sg25270 +S'James McBey' +p177792 +sa(dp177793 +g25273 +S'etching' +p177794 +sg25267 +g27 +sg25275 +S'1925' +p177795 +sg25268 +S'A Regatta on the Grand Canal' +p177796 +sg25270 +S'James McBey' +p177797 +sa(dp177798 +g25273 +S'etching and drypoint' +p177799 +sg25267 +g27 +sg25275 +S'1930' +p177800 +sg25268 +S'Manhattan' +p177801 +sg25270 +S'James McBey' +p177802 +sa(dp177803 +g25273 +S'etching' +p177804 +sg25267 +g27 +sg25275 +S'1935' +p177805 +sg25268 +S'The Thames Barge Race: The Start' +p177806 +sg25270 +S'James McBey' +p177807 +sa(dp177808 +g25273 +S'etching' +p177809 +sg25267 +g27 +sg25275 +S'1935' +p177810 +sg25268 +S'The Thames Barge Race: The "Sarah" Winning' +p177811 +sg25270 +S'James McBey' +p177812 +sa(dp177813 +g25268 +S'The Coquette' +p177814 +sg25270 +S'Pierre-Antoine Baudouin' +p177815 +sg25273 +S'black chalk with gray and brown wash' +p177816 +sg25275 +S'1760s' +p177817 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a00060c9.jpg' +p177818 +sg25267 +g27 +sa(dp177819 +g25268 +S'Kindly Martine' +p177820 +sg25270 +S'Pierre-Antoine Baudouin' +p177821 +sg25273 +S'black chalk with gray and brown wash' +p177822 +sg25275 +S'1760s' +p177823 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072a7.jpg' +p177824 +sg25267 +g27 +sa(dp177825 +g25268 +S'Italian Landscape with a Boating Party' +p177826 +sg25270 +S'Louis Gabriel Moreau the Elder' +p177827 +sg25273 +S'gouache' +p177828 +sg25275 +S'unknown date\n' +p177829 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a00060cd.jpg' +p177830 +sg25267 +g27 +sa(dp177831 +g25273 +S'watercolor and graphite' +p177832 +sg25267 +g27 +sg25275 +S'unknown date\n' +p177833 +sg25268 +S'Near Valence' +p177834 +sg25270 +S'Sir Muirhead Bone' +p177835 +sa(dp177836 +g25268 +S'Danae Receiving the Golden Shower' +p177837 +sg25270 +S'Fran\xc3\xa7ois Boucher' +p177838 +sg25273 +S'red, white, and black chalk with gouache' +p177839 +sg25275 +S'1757' +p177840 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ed1.jpg' +p177841 +sg25267 +g27 +sa(dp177842 +g25268 +S'Ascension Day Festival at Venice' +p177843 +sg25270 +S'Canaletto' +p177844 +sg25273 +S'pen and brown ink with gray wash, heightened with white, over graphite on laid paper' +p177845 +sg25275 +S'1766' +p177846 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00031/a00031a1.jpg' +p177847 +sg25267 +g27 +sa(dp177848 +g25268 +S'The Cathedral at Trani' +p177849 +sg25270 +S'Louis-Jean Desprez' +p177850 +sg25273 +S'pen and gray-black ink and watercolor over graphite on laid paper' +p177851 +sg25275 +S'1778' +p177852 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f9e.jpg' +p177853 +sg25267 +g27 +sa(dp177854 +g25268 +S'Gardens of an Italian Villa (Villa Medici?)' +p177855 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p177856 +sg25273 +S'brush and brown ink over graphite on laid paper' +p177857 +sg25275 +S'unknown date\n' +p177858 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007053.jpg' +p177859 +sg25267 +g27 +sa(dp177860 +g25268 +S'Interior of a Farmhouse with Figures' +p177861 +sg25270 +S'Hubert Robert' +p177862 +sg25273 +S', late 18th century' +p177863 +sg25275 +S'\n' +p177864 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f7c.jpg' +p177865 +sg25267 +g27 +sa(dp177866 +g25268 +S"L'Allee de Grenadiers" +p177867 +sg25270 +S'French 18th Century' +p177868 +sg25273 +S'overall: 36 x 24.8 cm (14 3/16 x 9 3/4 in.)' +p177869 +sg25275 +S'\nwatercolor heightened with gouache' +p177870 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071cb.jpg' +p177871 +sg25267 +g27 +sa(dp177872 +g25268 +S'The Bedroom (Le Coucher or Ma Chemise brule)' +p177873 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p177874 +sg25273 +S'brush and brown ink with brown wash over graphite on laid paper' +p177875 +sg25275 +S'unknown date\n' +p177876 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00034/a0003407.jpg' +p177877 +sg25267 +g27 +sa(dp177878 +g25268 +S'Terrace and Garden of an Italian Villa' +p177879 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p177880 +sg25273 +S'red chalk over traces of black chalk on laid paper' +p177881 +sg25275 +S'1762/1763' +p177882 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00025/a0002530.jpg' +p177883 +sg25267 +g27 +sa(dp177884 +g25268 +S'Park of an Italian Villa' +p177885 +sg25270 +S'Fran\xc3\xa7ois-Andr\xc3\xa9 Vincent' +p177886 +sg25273 +S'black chalk with brown wash heightened with white gouache on laid paper, with the remains of a framing line in brown ink' +p177887 +sg25275 +S'1774/1775' +p177888 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a00060c7.jpg' +p177889 +sg25267 +g27 +sa(dp177890 +g25268 +S'The Fortress of San Andrea from the Lagoon' +p177891 +sg25270 +S'Francesco Guardi' +p177892 +sg25273 +S'pen and brown ink with brown wash over black on laid paper' +p177893 +sg25275 +S'1775/1785' +p177894 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00033/a00033e5.jpg' +p177895 +sg25267 +g27 +sa(dp177896 +g25273 +S'glazed terracotta' +p177897 +sg25267 +g27 +sg25275 +S'c. 1480' +p177898 +sg25268 +S'Saint Peter' +p177899 +sg25270 +S'Andrea della Robbia' +p177900 +sa(dp177901 +g25273 +S'graphite and charcoal with gray and brown wash' +p177902 +sg25267 +g27 +sg25275 +S'1929' +p177903 +sg25268 +S'Antwerp' +p177904 +sg25270 +S'Sir Muirhead Bone' +p177905 +sa(dp177906 +g25268 +S'Portrait of a Girl' +p177907 +sg25270 +S'French 18th Century' +p177908 +sg25273 +S'overall (oval): 36.9 x 27.3 cm (14 1/2 x 10 3/4 in.)' +p177909 +sg25275 +S'\nblack and red chalk' +p177910 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a0007193.jpg' +p177911 +sg25267 +g27 +sa(dp177912 +g25268 +S'Farm Scene' +p177913 +sg25270 +S'Jean-Baptiste H\xc3\xbcet' +p177914 +sg25273 +S', 1779' +p177915 +sg25275 +S'\n' +p177916 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f15.jpg' +p177917 +sg25267 +g27 +sa(dp177918 +g25268 +S'Two Seated Ladies' +p177919 +sg25270 +S'Nicolas Lancret' +p177920 +sg25273 +S'red chalk on laid paper' +p177921 +sg25275 +S'unknown date\n' +p177922 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006ff5.jpg' +p177923 +sg25267 +g27 +sa(dp177924 +g25268 +S'A Review on the Champs de Mars' +p177925 +sg25270 +S'Jean-Baptiste Le Paon' +p177926 +sg25273 +S'gouache' +p177927 +sg25275 +S'possibly 1773' +p177928 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070b4.jpg' +p177929 +sg25267 +g27 +sa(dp177930 +g25268 +S'Landscape' +p177931 +sg25270 +S'Louis Gabriel Moreau the Elder' +p177932 +sg25273 +S', probably c. 1780' +p177933 +sg25275 +S'\n' +p177934 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d71.jpg' +p177935 +sg25267 +g27 +sa(dp177936 +g25268 +S'Landscape' +p177937 +sg25270 +S'Louis Gabriel Moreau the Elder' +p177938 +sg25273 +S', late 1770s' +p177939 +sg25275 +S'\n' +p177940 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d42.jpg' +p177941 +sg25267 +g27 +sa(dp177942 +g25268 +S'Panoramic View across a Terraced Park' +p177943 +sg25270 +S'Louis Gabriel Moreau the Elder' +p177944 +sg25273 +S', 1780/1790' +p177945 +sg25275 +S'\n' +p177946 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00025/a00025ff.jpg' +p177947 +sg25267 +g27 +sa(dp177948 +g25268 +S'Mill with Bridge and Figures' +p177949 +sg25270 +S'Louis Gabriel Moreau the Elder' +p177950 +sg25273 +S', unknown date' +p177951 +sg25275 +S'\n' +p177952 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d16.jpg' +p177953 +sg25267 +g27 +sa(dp177954 +g25268 +S'Park View' +p177955 +sg25270 +S'Louis Gabriel Moreau the Elder' +p177956 +sg25273 +S', unknown date' +p177957 +sg25275 +S'\n' +p177958 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072cb.jpg' +p177959 +sg25267 +g27 +sa(dp177960 +g25268 +S'The Potager of the H\xc3\xb4tel de Valentinois in Passy' +p177961 +sg25270 +S'Alexis-Nicolas P\xc3\xa9rignon the Elder' +p177962 +sg25273 +S', c. 1780' +p177963 +sg25275 +S'\n' +p177964 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00026/a00026c9.jpg' +p177965 +sg25267 +g27 +sa(dp177966 +g25273 +S'watercolor over graphite' +p177967 +sg25267 +g27 +sg25275 +S'unknown date\n' +p177968 +sg25268 +S'The Casino' +p177969 +sg25270 +S'Sir Muirhead Bone' +p177970 +sa(dp177971 +g25268 +S'A French Gentleman Standing' +p177972 +sg25270 +S'Jacques Andr\xc3\xa9 Portail' +p177973 +sg25273 +S'black and red chalk on laid paper' +p177974 +sg25275 +S'unknown date\n' +p177975 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070e3.jpg' +p177976 +sg25267 +g27 +sa(dp177977 +g25268 +S'Charitable Ladies' +p177978 +sg25270 +S'Hubert Robert' +p177979 +sg25273 +S'pen and brown ink and watercolor over black chalk on laid paper' +p177980 +sg25275 +S'c. 1780/1785' +p177981 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037e6.jpg' +p177982 +sg25267 +g27 +sa(dp177983 +g25268 +S'The Peasant Dance' +p177984 +sg25270 +S'Hubert Robert' +p177985 +sg25273 +S'pen and black ink with gray and brown wash and black chalk over a black chalk counterproof, on laid paper' +p177986 +sg25275 +S'c. 1770/1775' +p177987 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037e7.jpg' +p177988 +sg25267 +g27 +sa(dp177989 +g25268 +S'Ruined Farm' +p177990 +sg25270 +S'Hubert Robert' +p177991 +sg25273 +S'pen and black ink with gray and brown wash, and blue watercolor, over a black chalk counterproof, with black chalk additions, on laid paper' +p177992 +sg25275 +S'c. 1770/1775' +p177993 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a000712a.jpg' +p177994 +sg25267 +g27 +sa(dp177995 +g25268 +S'The Seesaw' +p177996 +sg25270 +S'Artist Information (' +p177997 +sg25273 +S'French, 1733 - 1808' +p177998 +sg25275 +S'(related artist)' +p177999 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a0007281.jpg' +p178000 +sg25267 +g27 +sa(dp178001 +g25268 +S'Louis XVI and Marie-Antoinette Crowned by Love' +p178002 +sg25270 +S'Gabriel de Saint-Aubin' +p178003 +sg25273 +S', 1775' +p178004 +sg25275 +S'\n' +p178005 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005fff.jpg' +p178006 +sg25267 +g27 +sa(dp178007 +g25268 +S'Figure Sketches' +p178008 +sg25270 +S'Gabriel de Saint-Aubin' +p178009 +sg25273 +S', unknown date' +p178010 +sg25275 +S'\n' +p178011 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dd8.jpg' +p178012 +sg25267 +g27 +sa(dp178013 +g25268 +S'Loaned Kiss' +p178014 +sg25270 +S'Jacques Louis Fran\xc3\xa7ois Touz\xc3\xa9' +p178015 +sg25273 +S'pen and black ink and watercolor' +p178016 +sg25275 +S'in or before 1795' +p178017 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f4d.jpg' +p178018 +sg25267 +g27 +sa(dp178019 +g25268 +S'The Kiss Returned' +p178020 +sg25270 +S'Jacques Louis Fran\xc3\xa7ois Touz\xc3\xa9' +p178021 +sg25273 +S'pen and black ink, watercolor, and gouache' +p178022 +sg25275 +S'in or before 1795' +p178023 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f1e.jpg' +p178024 +sg25267 +g27 +sa(dp178025 +g25268 +S'Port Scene' +p178026 +sg25270 +S'Artist Information (' +p178027 +sg25273 +S'French, 1714 - 1789' +p178028 +sg25275 +S'(related artist)' +p178029 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e9e.jpg' +p178030 +sg25267 +g27 +sa(dp178031 +g25273 +S'watercolor with graphite' +p178032 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178033 +sg25268 +S'Cape St. Vincent' +p178034 +sg25270 +S'Sir Muirhead Bone' +p178035 +sa(dp178036 +g25268 +S"Three Studies of a Woman's Head and a Study of Hands [recto]" +p178037 +sg25270 +S'Antoine Watteau' +p178038 +sg25273 +S'red chalk and graphite with black chalk and pink wash on laid paper' +p178039 +sg25275 +S'1718/1719' +p178040 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f9b.jpg' +p178041 +sg25267 +g27 +sa(dp178042 +g25268 +S'View of a House, a Cottage, and Two Figures [verso]' +p178043 +sg25270 +S'Antoine Watteau' +p178044 +sg25273 +S'red chalk on laid paper' +p178045 +sg25275 +S'1718/1719' +p178046 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f9c.jpg' +p178047 +sg25267 +g27 +sa(dp178048 +g25273 +S'inkless intaglio on wove paper' +p178049 +sg25267 +g27 +sg25275 +S'1959' +p178050 +sg25268 +S'Duo F' +p178051 +sg25270 +S'Josef Albers' +p178052 +sa(dp178053 +g25273 +S'intaglio' +p178054 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178055 +sg25268 +S'Park Conversation' +p178056 +sg25270 +S'Harold Altman' +p178057 +sa(dp178058 +g25273 +S'color etching on wove paper' +p178059 +sg25267 +g27 +sg25275 +S'1964' +p178060 +sg25268 +S'E.P.: It is Pitiable' +p178061 +sg25270 +S'Leonard Baskin' +p178062 +sa(dp178063 +g25273 +S'etching' +p178064 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178065 +sg25268 +S'Three Forms' +p178066 +sg25270 +S'Fred Becker' +p178067 +sa(dp178068 +g25273 +S'etching' +p178069 +sg25267 +g27 +sg25275 +S'1961' +p178070 +sg25268 +S'Feigele' +p178071 +sg25270 +S'Al Blaustein' +p178072 +sa(dp178073 +g25273 +S'lithograph in gray and black' +p178074 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178075 +sg25268 +S'Untitled' +p178076 +sg25270 +S'Louis Bunce' +p178077 +sa(dp178078 +g25273 +S'paper relief' +p178079 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178080 +sg25268 +S'Swamp Bank' +p178081 +sg25270 +S'Edmond Casarella' +p178082 +sa(dp178083 +g25268 +S'The Glass #5' +p178084 +sg25270 +S'Ralston Crawford' +p178085 +sg25273 +S'color lithograph on Arches paper' +p178086 +sg25275 +S'1959' +p178087 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a6b.jpg' +p178088 +sg25267 +g27 +sa(dp178089 +g25273 +S'watercolor and graphite' +p178090 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178091 +sg25268 +S'Distant Beauvais' +p178092 +sg25270 +S'Sir Muirhead Bone' +p178093 +sa(dp178094 +g25273 +S'color woodcut' +p178095 +sg25267 +g27 +sg25275 +S'1960' +p178096 +sg25268 +S'Mandala V' +p178097 +sg25270 +S'Worden Day' +p178098 +sa(dp178099 +g25273 +S'2-color lithograph on wove paper' +p178100 +sg25267 +g27 +sg25275 +S'1961' +p178101 +sg25268 +S'India Night' +p178102 +sg25270 +S'Adolf Arthur Dehn' +p178103 +sa(dp178104 +g25273 +S'plaster engraving' +p178105 +sg25267 +g27 +sg25275 +S'1961' +p178106 +sg25268 +S'Cycle of a Large Sea: Night Sea Rider' +p178107 +sg25270 +S'Arthur Deshaies' +p178108 +sa(dp178109 +g25273 +S'cliche-verre in yellow-brown' +p178110 +sg25267 +g27 +sg25275 +S'1961' +p178111 +sg25268 +S'Fragmented Clowns' +p178112 +sg25270 +S'Caroline Wogan Durieux' +p178113 +sa(dp178114 +g25273 +S'color etching' +p178115 +sg25267 +g27 +sg25275 +S'1956' +p178116 +sg25268 +S'Narcissus' +p178117 +sg25270 +S'Leonard Edmondson' +p178118 +sa(dp178119 +g25273 +S'cardboard cut' +p178120 +sg25267 +g27 +sg25275 +S'1961' +p178121 +sg25268 +S'Plant Life' +p178122 +sg25270 +S'James Forsberg' +p178123 +sa(dp178124 +g25273 +S'color woodcut' +p178125 +sg25267 +g27 +sg25275 +S'1961' +p178126 +sg25268 +S'From a Brecht Poem: Auschwitz' +p178127 +sg25270 +S'Antonio Frasconi' +p178128 +sa(dp178129 +g25268 +S'Drawing for Tondo (Stone 4)' +p178130 +sg25270 +S'Fritz Glarner' +p178131 +sg25273 +S'lithograph in black on wove paper' +p178132 +sg25275 +S'1959' +p178133 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000aa5.jpg' +p178134 +sg25267 +g27 +sa(dp178135 +g25273 +S'color lithograph' +p178136 +sg25267 +g27 +sg25275 +S'1961' +p178137 +sg25268 +S'Pallas Athene' +p178138 +sg25270 +S'Grace Hartigan' +p178139 +sa(dp178140 +g25273 +S'lithograph in black on German copperplate paper' +p178141 +sg25267 +g27 +sg25275 +S'1960' +p178142 +sg25268 +S'Coat Hanger I' +p178143 +sg25270 +S'Jasper Johns' +p178144 +sa(dp178145 +g25273 +S'charcoal and graphite with blue wash' +p178146 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178147 +sg25268 +S'The Docks, Marseilles' +p178148 +sg25270 +S'Sir Muirhead Bone' +p178149 +sa(dp178150 +g25273 +S'color etching' +p178151 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178152 +sg25268 +S'Ice Age' +p178153 +sg25270 +S'Ynez Johnston' +p178154 +sa(dp178155 +g25273 +S'color intaglio' +p178156 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178157 +sg25268 +S'Red Lady' +p178158 +sg25270 +S'John Paul Jones' +p178159 +sa(dp178160 +g25273 +S'intaglio' +p178161 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178162 +sg25268 +S'Walking Woman' +p178163 +sg25270 +S'John Paul Jones' +p178164 +sa(dp178165 +g25273 +S'color intaglio' +p178166 +sg25267 +g27 +sg25275 +S'1960' +p178167 +sg25268 +S'Ceremony' +p178168 +sg25270 +S'Jerome Kaplan' +p178169 +sa(dp178170 +g25273 +S'lithograph' +p178171 +sg25267 +g27 +sg25275 +S'1961' +p178172 +sg25268 +S'Giant' +p178173 +sg25270 +S'Misch Kohn' +p178174 +sa(dp178175 +g25273 +S'intaglio' +p178176 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178177 +sg25268 +S'Figurehead' +p178178 +sg25270 +S'Chaim Koppelman' +p178179 +sa(dp178180 +g25273 +S'color engraving, etching, soft-ground, drypoint, and electric stipple' +p178181 +sg25267 +g27 +sg25275 +S'1961' +p178182 +sg25268 +S'Portrait of an Artist' +p178183 +sg25270 +S'Mauricio Lasansky' +p178184 +sa(dp178185 +g25273 +S'color woodcut' +p178186 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178187 +sg25268 +S'Mandala' +p178188 +sg25270 +S'Vincent John Longo' +p178189 +sa(dp178190 +g25273 +S'inkless embossed print with color stipple engraving' +p178191 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178192 +sg25268 +S'Matrone' +p178193 +sg25270 +S'Ezio Martinelli' +p178194 +sa(dp178195 +g25273 +S'graphite with gray wash on laid paper' +p178196 +sg25267 +g27 +sg25275 +S'1922' +p178197 +sg25268 +S'Allied Fleet at Constantinople' +p178198 +sg25270 +S'Sir Muirhead Bone' +p178199 +sa(dp178200 +g25273 +S'inkless embossed print with color stipple engraving' +p178201 +sg25267 +g27 +sg25275 +S'1961' +p178202 +sg25268 +S'Last Quarter' +p178203 +sg25270 +S'Ezio Martinelli' +p178204 +sa(dp178205 +g25273 +S'drypoint and etching' +p178206 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178207 +sg25268 +S'Models III' +p178208 +sg25270 +S'James McGarrell' +p178209 +sa(dp178210 +g25273 +S'drypoint and etching' +p178211 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178212 +sg25268 +S'Models I' +p178213 +sg25270 +S'James McGarrell' +p178214 +sa(dp178215 +g25273 +S'lithograph (zinc) in yellow and black' +p178216 +sg25267 +g27 +sg25275 +S'1961' +p178217 +sg25268 +S'Moon in August' +p178218 +sg25270 +S'George Joji Miyasaki' +p178219 +sa(dp178220 +g25273 +S'4-color lithograph (stone)' +p178221 +sg25267 +g27 +sg25275 +S'1961' +p178222 +sg25268 +S'Hillside, No.2' +p178223 +sg25270 +S'George Joji Miyasaki' +p178224 +sa(dp178225 +g25273 +S'engraving in black on wove paper' +p178226 +sg25267 +g27 +sg25275 +S'1959' +p178227 +sg25268 +S'Dartmoor' +p178228 +sg25270 +S'Norma Gloria Morgan' +p178229 +sa(dp178230 +g25273 +S'color woodcut' +p178231 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178232 +sg25268 +S'Vis-a-Vis' +p178233 +sg25270 +S'Seong Moy' +p178234 +sa(dp178235 +g25273 +S'lithograph' +p178236 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178237 +sg25268 +S'Actor: Profile' +p178238 +sg25270 +S'Reginald Murray Pollack' +p178239 +sa(dp178240 +g25268 +S'Heritage' +p178241 +sg25270 +S'Michael Ponce de Leon' +p178242 +sg25273 +S'color intaglio and collage' +p178243 +sg25275 +S'unknown date\n' +p178244 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bc9.jpg' +p178245 +sg25267 +g27 +sa(dp178246 +g25273 +S'charcoal with gray wash on laid paper' +p178247 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178248 +sg25268 +S'Constantinople' +p178249 +sg25270 +S'Sir Muirhead Bone' +p178250 +sa(dp178251 +g25273 +S'5-color etching (zinc)' +p178252 +sg25267 +g27 +sg25275 +S'1961' +p178253 +sg25268 +S'Hierogram' +p178254 +sg25270 +S'Rudy Pozzatti' +p178255 +sa(dp178256 +g25273 +S'etching in yellow, olive and black on Arches paper' +p178257 +sg25267 +g27 +sg25275 +S'1960' +p178258 +sg25268 +S'Dusk: Gold and Black' +p178259 +sg25270 +S'Karl Schrag' +p178260 +sa(dp178261 +g25273 +S'screenprint in black and green' +p178262 +sg25267 +g27 +sg25275 +S'1961' +p178263 +sg25268 +S'Blind Botanist' +p178264 +sg25270 +S'Ben Shahn' +p178265 +sa(dp178266 +g25273 +S'hand-colored screenprint with gold leaf' +p178267 +sg25267 +g27 +sg25275 +S'1960' +p178268 +sg25268 +S'Pleiades' +p178269 +sg25270 +S'Ben Shahn' +p178270 +sa(dp178271 +g25273 +S'etching and soft-ground on wove paper' +p178272 +sg25267 +g27 +sg25275 +S'1961' +p178273 +sg25268 +S'Olive Pickers' +p178274 +sg25270 +S'Moishe Smith' +p178275 +sa(dp178276 +g25273 +S'etching and soft-ground on wove paper' +p178277 +sg25267 +g27 +sg25275 +S'1961' +p178278 +sg25268 +S'Maria' +p178279 +sg25270 +S'Moishe Smith' +p178280 +sa(dp178281 +g25273 +S'10-color lithograph' +p178282 +sg25267 +g27 +sg25275 +S'1961' +p178283 +sg25268 +S'Two Figures' +p178284 +sg25270 +S'Benton Murdoch Spruance' +p178285 +sa(dp178286 +g25273 +S'color woodcut' +p178287 +sg25267 +g27 +sg25275 +S'1959' +p178288 +sg25268 +S"Aetna's Dream" +p178289 +sg25270 +S'Carol Summers' +p178290 +sa(dp178291 +g25273 +S'intaglio' +p178292 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178293 +sg25268 +S'Winter Tree' +p178294 +sg25270 +S'Peter Takal' +p178295 +sa(dp178296 +g25273 +S'charcoal over graphite' +p178297 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178298 +sg25268 +S'Old Farmhouse, Constantinople' +p178299 +sg25270 +S'Sir Muirhead Bone' +p178300 +sa(dp178301 +g25273 +S'color woodcut' +p178302 +sg25267 +g27 +sg25275 +S'1961' +p178303 +sg25268 +S'Flow and Grass' +p178304 +sg25270 +S'Ansei Uchima' +p178305 +sa(dp178306 +g25273 +S'color lithograph' +p178307 +sg25267 +g27 +sg25275 +S'1957' +p178308 +sg25268 +S'Rhi-No' +p178309 +sg25270 +S'Romas Viesulas' +p178310 +sa(dp178311 +g25273 +S'color woodcut' +p178312 +sg25267 +g27 +sg25275 +S'1961' +p178313 +sg25268 +S'Winter Grove' +p178314 +sg25270 +S'Sylvia Wald' +p178315 +sa(dp178316 +g25273 +S'American, active 1961/1963' +p178317 +sg25267 +g27 +sg25275 +S'(printer)' +p178318 +sg25268 +S'Skies of Venice I' +p178319 +sg25270 +S'Artist Information (' +p178320 +sa(dp178321 +g25273 +S'aquatint' +p178322 +sg25267 +g27 +sg25275 +S'1961' +p178323 +sg25268 +S'The Plain' +p178324 +sg25270 +S'Jack Zajac' +p178325 +sa(dp178326 +g25273 +S'etching' +p178327 +sg25267 +g27 +sg25275 +S'1961' +p178328 +sg25268 +S'Letchworth II' +p178329 +sg25270 +S'Richard Claude Ziemann' +p178330 +sa(dp178331 +g25273 +S'lithograph' +p178332 +sg25267 +g27 +sg25275 +S'1961' +p178333 +sg25268 +S'Faces - Triptych [left half]' +p178334 +sg25270 +S'Aubrey Schwartz' +p178335 +sa(dp178336 +g25273 +S'lithograph' +p178337 +sg25267 +g27 +sg25275 +S'1961' +p178338 +sg25268 +S'Faces - Triptych [center]' +p178339 +sg25270 +S'Aubrey Schwartz' +p178340 +sa(dp178341 +g25273 +S'lithograph' +p178342 +sg25267 +g27 +sg25275 +S'1961' +p178343 +sg25268 +S'Faces - Triptych [right half]' +p178344 +sg25270 +S'Aubrey Schwartz' +p178345 +sa(dp178346 +g25268 +S'English Landscape Capriccio with a Column' +p178347 +sg25270 +S'Canaletto' +p178348 +sg25273 +S'oil on canvas' +p178349 +sg25275 +S'c. 1754' +p178350 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005fd.jpg' +p178351 +sg25267 +g27 +sa(dp178352 +g25273 +S'graphite' +p178353 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178354 +sg25268 +S'Patras in the Gulf of Corinth' +p178355 +sg25270 +S'Sir Muirhead Bone' +p178356 +sa(dp178357 +g25268 +S'English Landscape Capriccio with a Palace' +p178358 +sg25270 +S'Canaletto' +p178359 +sg25273 +S'oil on canvas' +p178360 +sg25275 +S'c. 1754' +p178361 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005fe.jpg' +p178362 +sg25267 +g27 +sa(dp178363 +g25268 +S'Portrait of a Gentleman Netting Partridges' +p178364 +sg25270 +S'Arthur Devis' +p178365 +sg25273 +S'oil on canvas' +p178366 +sg25275 +S'1756' +p178367 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000054f.jpg' +p178368 +sg25267 +g27 +sa(dp178369 +g25268 +S'Members of the Maynard Family in the Park at Waltons' +p178370 +sg25270 +S'Arthur Devis' +p178371 +sg25273 +S'oil on canvas' +p178372 +sg25275 +S'c. 1755/1762' +p178373 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000538.jpg' +p178374 +sg25267 +g27 +sa(dp178375 +g25268 +S'The Lute Player' +p178376 +sg25270 +S'Artist Information (' +p178377 +sg25273 +S'Italian, 1563 - 1639' +p178378 +sg25275 +S'(artist after)' +p178379 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00074/a000745f.jpg' +p178380 +sg25267 +g27 +sa(dp178381 +g25268 +S'Sunset' +p178382 +sg25270 +S'Winslow Homer' +p178383 +sg25273 +S'oil on canvas' +p178384 +sg25275 +S'c. 1875' +p178385 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000104.jpg' +p178386 +sg25267 +g27 +sa(dp178387 +g25268 +S'Fishing Boats Along Quay, Noank, Conn.' +p178388 +sg25270 +S'John Wesley Beatty' +p178389 +sg25273 +S'etching on Japanese paper' +p178390 +sg25275 +S'1909' +p178391 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f3/a000f37f.jpg' +p178392 +sg25267 +g27 +sa(dp178393 +g25273 +S'drypoint' +p178394 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178395 +sg25268 +S'Swinging In' +p178396 +sg25270 +S'Frank Weston Benson' +p178397 +sa(dp178398 +g25273 +S'etching with drypoint' +p178399 +sg25267 +g27 +sg25275 +S'1906' +p178400 +sg25268 +S'Rialto, Venice' +p178401 +sg25270 +S'Sir Frank Brangwyn' +p178402 +sa(dp178403 +g25268 +S'The Rialto Bridge' +p178404 +sg25270 +S'Frank Duveneck' +p178405 +sg25273 +S'drypoint' +p178406 +sg25275 +S'1883' +p178407 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a8e.jpg' +p178408 +sg25267 +g27 +sa(dp178409 +g25268 +S"Whistler's House, Old Chelsea" +p178410 +sg25270 +S'Francis Seymour Haden' +p178411 +sg25273 +S'etching with drypoint' +p178412 +sg25275 +S'1863' +p178413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d0f.jpg' +p178414 +sg25267 +g27 +sa(dp178415 +g25273 +S'watercolor and graphite' +p178416 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178417 +sg25268 +S'On a P. & O.; Bay of Biscay' +p178418 +sg25270 +S'Sir Muirhead Bone' +p178419 +sa(dp178420 +g25268 +S'Eight Bells' +p178421 +sg25270 +S'Winslow Homer' +p178422 +sg25273 +S'etching' +p178423 +sg25275 +S'1887' +p178424 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ac2.jpg' +p178425 +sg25267 +g27 +sa(dp178426 +g25273 +S'(artist after)' +p178427 +sg25267 +g27 +sg25275 +S'\n' +p178428 +sg25268 +S'Fog Warning' +p178429 +sg25270 +S'Artist Information (' +p178430 +sa(dp178431 +g25268 +S'Mending Nets' +p178432 +sg25270 +S'Winslow Homer' +p178433 +sg25273 +S'etching' +p178434 +sg25275 +S'1888' +p178435 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ac3.jpg' +p178436 +sg25267 +g27 +sa(dp178437 +g25268 +S'Saved' +p178438 +sg25270 +S'Winslow Homer' +p178439 +sg25273 +S'etching' +p178440 +sg25275 +S'1889' +p178441 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ac1.jpg' +p178442 +sg25267 +g27 +sa(dp178443 +g25268 +S'Sunday after Christmas 1848' +p178444 +sg25270 +S'Winslow Homer' +p178445 +sg25273 +S'pen and brown ink' +p178446 +sg25275 +S'1868' +p178447 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0cb.jpg' +p178448 +sg25267 +g27 +sa(dp178449 +g25268 +S'Seated Female Nude' +p178450 +sg25270 +S'Auguste Rodin' +p178451 +sg25273 +S'graphite' +p178452 +sg25275 +S'unknown date\n' +p178453 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00074/a0007405.jpg' +p178454 +sg25267 +g27 +sa(dp178455 +g25268 +S'Dooryard, Buckets and Tree' +p178456 +sg25270 +S'Julian Alden Weir' +p178457 +sg25273 +S'etching' +p178458 +sg25275 +S'unknown date\n' +p178459 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f2/a000f2d3.jpg' +p178460 +sg25267 +g27 +sa(dp178461 +g25268 +S'Mother and Child' +p178462 +sg25270 +S'Julian Alden Weir' +p178463 +sg25273 +S'etching' +p178464 +sg25275 +S'unknown date\n' +p178465 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bd5.jpg' +p178466 +sg25267 +g27 +sa(dp178467 +g25268 +S'Arcturus' +p178468 +sg25270 +S'Julian Alden Weir' +p178469 +sg25273 +S'engraving' +p178470 +sg25275 +S'1893' +p178471 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fb/a000fb21.jpg' +p178472 +sg25267 +g27 +sa(dp178473 +g25268 +S'Young Girl with Large Hat' +p178474 +sg25270 +S'Julian Alden Weir' +p178475 +sg25273 +S'drypoint on gray paper' +p178476 +sg25275 +S'1893' +p178477 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f2/a000f2d5.jpg' +p178478 +sg25267 +g27 +sa(dp178479 +g25273 +S'watercolor with graphite' +p178480 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178481 +sg25268 +S'Entering the Piraeus' +p178482 +sg25270 +S'Sir Muirhead Bone' +p178483 +sa(dp178484 +g25268 +S'The "Adam and Eve," Old Chelsea' +p178485 +sg25270 +S'James McNeill Whistler' +p178486 +sg25273 +S'etching and drypoint' +p178487 +sg25275 +S'1879' +p178488 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab6c.jpg' +p178489 +sg25267 +g27 +sa(dp178490 +g25268 +S'Bibi Valentin' +p178491 +sg25270 +S'James McNeill Whistler' +p178492 +sg25273 +S'etching and drypoint' +p178493 +sg25275 +S'1859' +p178494 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9a9.jpg' +p178495 +sg25267 +g27 +sa(dp178496 +g25268 +S'Reading (La Lecture)' +p178497 +sg25270 +S'Anders Zorn' +p178498 +sg25273 +S'etching on Dutch paper' +p178499 +sg25275 +S'1893' +p178500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005dbe.jpg' +p178501 +sg25267 +g27 +sa(dp178502 +g25268 +S'Ernest Renan' +p178503 +sg25270 +S'Anders Zorn' +p178504 +sg25273 +S'etching on Dutch paper' +p178505 +sg25275 +S'1892' +p178506 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed2a.jpg' +p178507 +sg25267 +g27 +sa(dp178508 +g25268 +S'Cardinal Manning, 2nd plate' +p178509 +sg25270 +S'Alphonse Legros' +p178510 +sg25273 +S'lithograph' +p178511 +sg25275 +S'unknown date\n' +p178512 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c35.jpg' +p178513 +sg25267 +g27 +sa(dp178514 +g25268 +S"The Hand of the Artist's Daughter" +p178515 +sg25270 +S'Alphonse Legros' +p178516 +sg25273 +S'black crayon' +p178517 +sg25275 +S'unknown date\n' +p178518 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072c9.jpg' +p178519 +sg25267 +g27 +sa(dp178520 +g25268 +S'Female Nude Seated' +p178521 +sg25270 +S'Alphonse Legros' +p178522 +sg25273 +S'graphite' +p178523 +sg25275 +S'unknown date\n' +p178524 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073e9.jpg' +p178525 +sg25267 +g27 +sa(dp178526 +g25273 +S'(artist after)' +p178527 +sg25267 +g27 +sg25275 +S'\n' +p178528 +sg25268 +S'The Rest on the Flight into Egypt' +p178529 +sg25270 +S'Artist Information (' +p178530 +sa(dp178531 +g25268 +S'Profil de lumiere (Profile of light)' +p178532 +sg25270 +S'Odilon Redon' +p178533 +sg25273 +S'lithograph' +p178534 +sg25275 +S'1886' +p178535 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c84.jpg' +p178536 +sg25267 +g27 +sa(dp178537 +g25268 +S'The Jolly Good Fellow (Le bon vivant)' +p178538 +sg25270 +S'Artist Information (' +p178539 +sg25273 +S'French, 1808 - 1879' +p178540 +sg25275 +S'(related artist)' +p178541 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a0005418.jpg' +p178542 +sg25267 +g27 +sa(dp178543 +g25273 +S'watercolor and graphite' +p178544 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178545 +sg25268 +S'S.S. Naldera, Mediterranean' +p178546 +sg25270 +S'Sir Muirhead Bone' +p178547 +sa(dp178548 +g25268 +S'The Listener (Le bourgeois en attente)' +p178549 +sg25270 +S'Artist Information (' +p178550 +sg25273 +S'French, 1808 - 1879' +p178551 +sg25275 +S'(related artist)' +p178552 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a0005419.jpg' +p178553 +sg25267 +g27 +sa(dp178554 +g25273 +S'iron' +p178555 +sg25267 +g27 +sg25275 +S'1936' +p178556 +sg25268 +S'Head of Orpheus' +p178557 +sg25270 +S'Carl Milles' +p178558 +sa(dp178559 +g25273 +S'iron' +p178560 +sg25267 +g27 +sg25275 +S'18th/20th century' +p178561 +sg25268 +S'The Nativity' +p178562 +sg25270 +S'Ethiopian 18th/20th Century' +p178563 +sa(dp178564 +g25268 +S'The Virgin and Child with a Rose' +p178565 +sg25270 +S'Jacques de Bellange' +p178566 +sg25273 +S', c. 1616/1617' +p178567 +sg25275 +S'\n' +p178568 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a4f.jpg' +p178569 +sg25267 +g27 +sa(dp178570 +g25268 +S'Fuga Deiparae in Aegyptum (The Flight into Egypt)' +p178571 +sg25270 +S'Artist Information (' +p178572 +sg25273 +S'(artist)' +p178573 +sg25275 +S'\n' +p178574 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00053/a00053ca.jpg' +p178575 +sg25267 +g27 +sa(dp178576 +g25268 +S'The Holy Family with Saint Anne and Saint Joachim' +p178577 +sg25270 +S'Hans Burgkmair I' +p178578 +sg25273 +S'woodcut' +p178579 +sg25275 +S'1512' +p178580 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8e4.jpg' +p178581 +sg25267 +g27 +sa(dp178582 +g25273 +S'etching' +p178583 +sg25267 +g27 +sg25275 +S'1887' +p178584 +sg25268 +S'Large View of Mariakerke (Grande vue de Mariakerke)' +p178585 +sg25270 +S'James Ensor' +p178586 +sa(dp178587 +g25268 +S'The Flight into Egypt' +p178588 +sg25270 +S'Balthasar Moncornet' +p178589 +sg25273 +S'engraving' +p178590 +sg25275 +S'unknown date\n' +p178591 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a14.jpg' +p178592 +sg25267 +g27 +sa(dp178593 +g25268 +S'Christ and the Virgin Enthroned' +p178594 +sg25270 +S'Bohemian 15th Century' +p178595 +sg25273 +S'overall: 13.7 x 11.8 cm (5 3/8 x 4 5/8 in.)' +p178596 +sg25275 +S'\nminiature on vellum' +p178597 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00022/a00022b4.jpg' +p178598 +sg25267 +g27 +sa(dp178599 +g25268 +S'The Genealogical Tree of the Dominicans' +p178600 +sg25270 +S'Netherlandish 15th Century' +p178601 +sg25273 +S'Schreiber, Vol. IX, no. 1776, State d' +p178602 +sg25275 +S'\nwoodcut, hand-colored with tan ground and vermilion, rose, brown, gray-blue and a printed black' +p178603 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccfb.jpg' +p178604 +sg25267 +g27 +sa(dp178605 +g25273 +S'graphite' +p178606 +sg25267 +g27 +sg25275 +S'probably 1929' +p178607 +sg25268 +S'Street in Matcha Suburb, Constantinople' +p178608 +sg25270 +S'Sir Muirhead Bone' +p178609 +sa(dp178610 +g25273 +S'miniature on vellum' +p178611 +sg25267 +g27 +sg25275 +S'c. 1530' +p178612 +sg25268 +S'The Resurrection' +p178613 +sg25270 +S'Simon Bening' +p178614 +sa(dp178615 +g25268 +S'Ship in Full Sail with Two Flags' +p178616 +sg25270 +S'Artist Information (' +p178617 +sg25273 +S'Flemish, c. 1525/1530 - 1569' +p178618 +sg25275 +S'(related artist)' +p178619 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf17.jpg' +p178620 +sg25267 +g27 +sa(dp178621 +g25273 +S'Rosenwald Collection' +p178622 +sg25267 +g27 +sg25275 +S'\nwoodcut in gold metallic ink on hand-washed orange paper' +p178623 +sg25268 +S'Endpaper with Animals' +p178624 +sg25270 +S'German 18th Century' +p178625 +sa(dp178626 +g25273 +S'Rosenwald Collection' +p178627 +sg25267 +g27 +sg25275 +S'\nwoodcut in gold metallic ink on hand-washed pink paper' +p178628 +sg25268 +S'Endpaper with Animals' +p178629 +sg25270 +S'German 18th Century' +p178630 +sa(dp178631 +g25273 +S'Rosenwald Collection' +p178632 +sg25267 +g27 +sg25275 +S'\nwoodcut in gold metallic ink on hand-washed rose paper' +p178633 +sg25268 +S'Endpaper with Animals and Figures' +p178634 +sg25270 +S'German 18th Century' +p178635 +sa(dp178636 +g25273 +S'woodcut in gold metallic ink on hand-washed rose paper' +p178637 +sg25267 +g27 +sg25275 +S'c. 1780' +p178638 +sg25268 +S'Endpaper with Peasant Wedding' +p178639 +sg25270 +S'Paul Reimund' +p178640 +sa(dp178641 +g25273 +S'woodcut in gold metallic ink on hand-washed aqua paper' +p178642 +sg25267 +g27 +sg25275 +S'c. 1780' +p178643 +sg25268 +S'Endpaper with Scenes from the Life of a Knight' +p178644 +sg25270 +S'Paul Reimund' +p178645 +sa(dp178646 +g25273 +S'woodcut in gold metallic ink on hand-washed pale yellow paper' +p178647 +sg25267 +g27 +sg25275 +S'c. 1800' +p178648 +sg25268 +S'Endpaper with Scenes of the Trades' +p178649 +sg25270 +S'Paul Reimund' +p178650 +sa(dp178651 +g25273 +S'Rosenwald Collection' +p178652 +sg25267 +g27 +sg25275 +S'\nwoodcut in gold metallic ink on hand-washed purple paper' +p178653 +sg25268 +S'Endpaper with the Twelve Months' +p178654 +sg25270 +S'German 18th Century' +p178655 +sa(dp178656 +g25273 +S'Rosenwald Collection' +p178657 +sg25267 +g27 +sg25275 +S'\nwoodcut in gold metallic ink on hand-washed orange paper' +p178658 +sg25268 +S'Endpaper with Twelve Standing Figures' +p178659 +sg25270 +S'German 18th Century' +p178660 +sa(dp178661 +g25273 +S'graphite' +p178662 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178663 +sg25268 +S'Seraglio Point, Constantinople' +p178664 +sg25270 +S'Sir Muirhead Bone' +p178665 +sa(dp178666 +g25273 +S'Rosenwald Collection' +p178667 +sg25267 +g27 +sg25275 +S'\nwoodcut in gold metallic ink on hand-washed blue-green paper' +p178668 +sg25268 +S'Endpaper with Twenty-One Standing Figures' +p178669 +sg25270 +S'German 18th Century' +p178670 +sa(dp178671 +g25268 +S'Saints Cyprian, Vitus, Stephan, and Cornelius' +p178672 +sg25270 +S'German 12th Century' +p178673 +sg25273 +S'overall: 10.9 x 14.2 cm (4 5/16 x 5 9/16 in.)' +p178674 +sg25275 +S'\nminiature on vellum' +p178675 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007922.jpg' +p178676 +sg25267 +g27 +sa(dp178677 +g25268 +S'Initials V and D' +p178678 +sg25270 +S'German 12th Century' +p178679 +sg25273 +S'overall: 10.3 x 13.5 cm (4 1/16 x 5 5/16 in.)' +p178680 +sg25275 +S'\nminiature on vellum' +p178681 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007920.jpg' +p178682 +sg25267 +g27 +sa(dp178683 +g25268 +S'Die Herpavck vnd andere Drvmmen zvernst vnd Schimpf wir lassen ervmmen' +p178684 +sg25270 +S'German 16th Century' +p178685 +sg25273 +S'Rosenwald Collection' +p178686 +sg25275 +S'\nengraving touched with yellow watercolor' +p178687 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a799.jpg' +p178688 +sg25267 +g27 +sa(dp178689 +g25268 +S'Gantz loblich Pfeiffen wir all drei avs der Mvsic: Schon Melodey' +p178690 +sg25270 +S'German 16th Century' +p178691 +sg25273 +S'Rosenwald Collection' +p178692 +sg25275 +S'\nengraving touched with yellow watercolor' +p178693 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a795.jpg' +p178694 +sg25267 +g27 +sa(dp178695 +g25268 +S'Die Instrvment gantz lvstig Kling vorab wen man darein tvt singen' +p178696 +sg25270 +S'German 16th Century' +p178697 +sg25273 +S'Rosenwald Collection' +p178698 +sg25275 +S'\nengraving' +p178699 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a796.jpg' +p178700 +sg25267 +g27 +sa(dp178701 +g25268 +S'Liblich singen wir avs der Mass den Tenor discant Alt und Bass' +p178702 +sg25270 +S'German 16th Century' +p178703 +sg25273 +S'Rosenwald Collection' +p178704 +sg25275 +S'\nengraving' +p178705 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a797.jpg' +p178706 +sg25267 +g27 +sa(dp178707 +g25268 +S'Nach der Mvsic: Geigen wir drei gantz Kvnstlice vnd artliche dabei' +p178708 +sg25270 +S'German 16th Century' +p178709 +sg25273 +S'Rosenwald Collection' +p178710 +sg25275 +S'\nengraving' +p178711 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a798.jpg' +p178712 +sg25267 +g27 +sa(dp178713 +g25268 +S'Ich schlag das Positif mit Schall die Zytternavchmacht frolich all' +p178714 +sg25270 +S'German 16th Century' +p178715 +sg25273 +S'Rosenwald Collection' +p178716 +sg25275 +S'\nengraving' +p178717 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a79a.jpg' +p178718 +sg25267 +g27 +sa(dp178719 +g25268 +S'Polimnia (Polyhymnia)' +p178720 +sg25270 +S'Master of the E-Series Tarocchi' +p178721 +sg25273 +S'engraving' +p178722 +sg25275 +S'c. 1465' +p178723 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6dc.jpg' +p178724 +sg25267 +g27 +sa(dp178725 +g25273 +S'graphite with wash' +p178726 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178727 +sg25268 +S'Village of Maidos, Dardanelles' +p178728 +sg25270 +S'Sir Muirhead Bone' +p178729 +sa(dp178730 +g25268 +S'Venus' +p178731 +sg25270 +S'Master of the E-Series Tarocchi' +p178732 +sg25273 +S'engraving' +p178733 +sg25275 +S'c. 1465' +p178734 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6f8.jpg' +p178735 +sg25267 +g27 +sa(dp178736 +g25268 +S'Saint Thomas Aquinas' +p178737 +sg25270 +S'Italian 15th Century' +p178738 +sg25273 +S'image: 28.1 x 11.1 cm (11 1/16 x 4 3/8 in.)\r\nsheet: 29.2 x 14.3 cm (11 1/2 x 5 5/8 in.)\r\noverall (exterior frame dimensions): 59.7 x 44.5 cm (23 1/2 x 17 1/2 in.)' +p178739 +sg25275 +S'\nwoodcut, hand-colored in dark brown, orange, and yellow; with inscription in pen and ink' +p178740 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00010/a000106d.jpg' +p178741 +sg25267 +g27 +sa(dp178742 +g25268 +S'Saint Luke' +p178743 +sg25270 +S'Italian 12th Century' +p178744 +sg25273 +S'overall: 54 x 36.5 cm (21 1/4 x 14 3/8 in.)' +p178745 +sg25275 +S'\nminiature on vellum' +p178746 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063b5.jpg' +p178747 +sg25267 +g27 +sa(dp178748 +g25268 +S'Saint Mark' +p178749 +sg25270 +S'Italian 12th Century' +p178750 +sg25273 +S'overall: 54 x 36.5 cm (21 1/4 x 14 3/8 in.)' +p178751 +sg25275 +S'\nminiature on vellum' +p178752 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00034/a0003422.jpg' +p178753 +sg25267 +g27 +sa(dp178754 +g25268 +S'The Flight into Egypt [recto]' +p178755 +sg25270 +S'Italian 15th Century' +p178756 +sg25273 +S'overall: 17 x 11.7 cm (6 11/16 x 4 5/8 in.)' +p178757 +sg25275 +S'\nminiature on vellum' +p178758 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00075/a000750b.jpg' +p178759 +sg25267 +g27 +sa(dp178760 +g25268 +S'The Destruction of the Egyptian Idols [verso]' +p178761 +sg25270 +S'Italian 15th Century' +p178762 +sg25273 +S'overall: 17 x 11.7 cm (6 11/16 x 4 5/8 in.)' +p178763 +sg25275 +S'\nminiature on vellum' +p178764 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00075/a000750c.jpg' +p178765 +sg25267 +g27 +sa(dp178766 +g25268 +S'Saint Filippo Benizzi Healing a Beggar' +p178767 +sg25270 +S'Artist Information (' +p178768 +sg25273 +S'Italian, 1486 - 1530' +p178769 +sg25275 +S'(artist after)' +p178770 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005608.jpg' +p178771 +sg25267 +g27 +sa(dp178772 +g25273 +S'woodcut in red-orange' +p178773 +sg25267 +g27 +sg25275 +S'1958' +p178774 +sg25268 +S'Oriental Fantasy' +p178775 +sg25270 +S'Irene Aronson' +p178776 +sa(dp178777 +g25273 +S'color engraving' +p178778 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178779 +sg25268 +S'Still Life' +p178780 +sg25270 +S'Irene Aronson' +p178781 +sa(dp178782 +g25273 +S'lithograph' +p178783 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178784 +sg25268 +S'Zurich' +p178785 +sg25270 +S'Irene Aronson' +p178786 +sa(dp178787 +g25273 +S'graphite with blue and purple wash on laid paper' +p178788 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178789 +sg25268 +S'Town Of Gallipoli' +p178790 +sg25270 +S'Sir Muirhead Bone' +p178791 +sa(dp178792 +g25273 +S'woodcut' +p178793 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178794 +sg25268 +S'Christ on the Cross' +p178795 +sg25270 +S'Jean Arp' +p178796 +sa(dp178797 +g25273 +S'etching and aquatint' +p178798 +sg25267 +g27 +sg25275 +S'1958' +p178799 +sg25268 +S"L'Abeille" +p178800 +sg25270 +S'Mario Avati' +p178801 +sa(dp178802 +g25273 +S'etching and aquatint' +p178803 +sg25267 +g27 +sg25275 +S'1962' +p178804 +sg25268 +S'Les Papillons de Nagasaki' +p178805 +sg25270 +S'Mario Avati' +p178806 +sa(dp178807 +g25273 +S'mezzotint' +p178808 +sg25267 +g27 +sg25275 +S'1960' +p178809 +sg25268 +S'Des Oeufs pour la Fete' +p178810 +sg25270 +S'Mario Avati' +p178811 +sa(dp178812 +g25273 +S'mezzotint and engraving (drypoint?)' +p178813 +sg25267 +g27 +sg25275 +S'1962' +p178814 +sg25268 +S'Les Premieres Confitures' +p178815 +sg25270 +S'Mario Avati' +p178816 +sa(dp178817 +g25273 +S'aquatint' +p178818 +sg25267 +g27 +sg25275 +S'1960' +p178819 +sg25268 +S'La Mouche' +p178820 +sg25270 +S'Mario Avati' +p178821 +sa(dp178822 +g25273 +S'mezzotint and drypoint' +p178823 +sg25267 +g27 +sg25275 +S'1961' +p178824 +sg25268 +S'Pipe et Coupelle' +p178825 +sg25270 +S'Mario Avati' +p178826 +sa(dp178827 +g25273 +S'aquatint, drypoint, mezzotint and etching' +p178828 +sg25267 +g27 +sg25275 +S'1958' +p178829 +sg25268 +S'Planche aux Quatre Techniques' +p178830 +sg25270 +S'Mario Avati' +p178831 +sa(dp178832 +g25273 +S'etching' +p178833 +sg25267 +g27 +sg25275 +S'1955' +p178834 +sg25268 +S'Du Cote de la Gare Saint-Lazare' +p178835 +sg25270 +S'Mario Avati' +p178836 +sa(dp178837 +g25273 +S'mezzotint on Rives BFK paper' +p178838 +sg25267 +g27 +sg25275 +S'1962' +p178839 +sg25268 +S'La Grande Maniere Noire' +p178840 +sg25270 +S'Mario Avati' +p178841 +sa(dp178842 +g25273 +S'graphite' +p178843 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178844 +sg25268 +S'Lepanto, Costa Rica' +p178845 +sg25270 +S'Sir Muirhead Bone' +p178846 +sa(dp178847 +g25273 +S'mezzotint' +p178848 +sg25267 +g27 +sg25275 +S'1962' +p178849 +sg25268 +S'Nature Morte \xc3\xa0 la Danseuse' +p178850 +sg25270 +S'Mario Avati' +p178851 +sa(dp178852 +g25273 +S'mezzotint' +p178853 +sg25267 +g27 +sg25275 +S'1962' +p178854 +sg25268 +S"Nature Morte a l'Estampe" +p178855 +sg25270 +S'Mario Avati' +p178856 +sa(dp178857 +g25273 +S'(author)' +p178858 +sg25267 +g27 +sg25275 +S'\n' +p178859 +sg25268 +S'Aphorismes, menus et varieties' +p178860 +sg25270 +S'Artist Information (' +p178861 +sa(dp178862 +g25273 +S'color serigraph' +p178863 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178864 +sg25268 +S'In Black Space' +p178865 +sg25270 +S'Norio Azuma' +p178866 +sa(dp178867 +g25268 +S'The Inferno, after the Fresco in the Camposanto of Pisa' +p178868 +sg25270 +S'Italian 15th Century' +p178869 +sg25273 +S'sheet: 25.3 x 32.2 cm (9 15/16 x 12 11/16 in.)' +p178870 +sg25275 +S'\nengraving' +p178871 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c70a.jpg' +p178872 +sg25267 +g27 +sa(dp178873 +g25268 +S'Madonna and Child on the Grassy Bank' +p178874 +sg25270 +S'Hans Baldung Grien' +p178875 +sg25273 +S'woodcut' +p178876 +sg25275 +S'1505' +p178877 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7e0.jpg' +p178878 +sg25267 +g27 +sa(dp178879 +g25268 +S"Women's Bath" +p178880 +sg25270 +S'Artist Information (' +p178881 +sg25273 +S'German, 1471 - 1528' +p178882 +sg25275 +S'(related artist)' +p178883 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b222.jpg' +p178884 +sg25267 +g27 +sa(dp178885 +g25273 +S'woodcut' +p178886 +sg25267 +g27 +sg25275 +S'1918' +p178887 +sg25268 +S'Title Page' +p178888 +sg25270 +S'Ernst Barlach' +p178889 +sa(dp178890 +g25273 +S'woodcut' +p178891 +sg25267 +g27 +sg25275 +S'1918' +p178892 +sg25268 +S'Old Woman Cursing' +p178893 +sg25270 +S'Ernst Barlach' +p178894 +sa(dp178895 +g25273 +S'woodcut' +p178896 +sg25267 +g27 +sg25275 +S'1918' +p178897 +sg25268 +S'Group of Beggars' +p178898 +sg25270 +S'Ernst Barlach' +p178899 +sa(dp178900 +g25273 +S'watercolor and graphite' +p178901 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178902 +sg25268 +S'Messina' +p178903 +sg25270 +S'Sir Muirhead Bone' +p178904 +sa(dp178905 +g25273 +S'woodcut' +p178906 +sg25267 +g27 +sg25275 +S'1918' +p178907 +sg25268 +S'The Beggar King' +p178908 +sg25270 +S'Ernst Barlach' +p178909 +sa(dp178910 +g25273 +S'woodcut' +p178911 +sg25267 +g27 +sg25275 +S'1918' +p178912 +sg25268 +S'The Whip' +p178913 +sg25270 +S'Ernst Barlach' +p178914 +sa(dp178915 +g25273 +S'woodcut' +p178916 +sg25267 +g27 +sg25275 +S'1918' +p178917 +sg25268 +S'The Rejected' +p178918 +sg25270 +S'Ernst Barlach' +p178919 +sa(dp178920 +g25273 +S'woodcut' +p178921 +sg25267 +g27 +sg25275 +S'1918' +p178922 +sg25268 +S'Russian Beggar Woman' +p178923 +sg25270 +S'Ernst Barlach' +p178924 +sa(dp178925 +g25273 +S'woodcut' +p178926 +sg25267 +g27 +sg25275 +S'1918' +p178927 +sg25268 +S'Despair and Revolt' +p178928 +sg25270 +S'Ernst Barlach' +p178929 +sa(dp178930 +g25273 +S'woodcut' +p178931 +sg25267 +g27 +sg25275 +S'1918' +p178932 +sg25268 +S'Kneeling Beggar Woman' +p178933 +sg25270 +S'Ernst Barlach' +p178934 +sa(dp178935 +g25273 +S'woodcut' +p178936 +sg25267 +g27 +sg25275 +S'1918' +p178937 +sg25268 +S'The Defeated' +p178938 +sg25270 +S'Ernst Barlach' +p178939 +sa(dp178940 +g25273 +S'woodcut' +p178941 +sg25267 +g27 +sg25275 +S'1922' +p178942 +sg25268 +S'The Burden' +p178943 +sg25270 +S'Ernst Barlach' +p178944 +sa(dp178945 +g25273 +S'woodcut' +p178946 +sg25267 +g27 +sg25275 +S'1922' +p178947 +sg25268 +S'Couple Arguing in the Rain' +p178948 +sg25270 +S'Ernst Barlach' +p178949 +sa(dp178950 +g25273 +S'woodcut' +p178951 +sg25267 +g27 +sg25275 +S'1922' +p178952 +sg25268 +S'The Stonebreakers and the Communist Kaiser' +p178953 +sg25270 +S'Ernst Barlach' +p178954 +sa(dp178955 +g25273 +S'charcoal with gray, blue and yellow wash' +p178956 +sg25267 +g27 +sg25275 +S'unknown date\n' +p178957 +sg25268 +S'Mosques on the Golden Horn' +p178958 +sg25270 +S'Sir Muirhead Bone' +p178959 +sa(dp178960 +g25273 +S'woodcut' +p178961 +sg25267 +g27 +sg25275 +S'1922' +p178962 +sg25268 +S'Couple Traveling in the Rain' +p178963 +sg25270 +S'Ernst Barlach' +p178964 +sa(dp178965 +g25273 +S'woodcut' +p178966 +sg25267 +g27 +sg25275 +S'1922' +p178967 +sg25268 +S'Group of Three Figures (bass, soprano, tenor)' +p178968 +sg25270 +S'Ernst Barlach' +p178969 +sa(dp178970 +g25273 +S'woodcut' +p178971 +sg25267 +g27 +sg25275 +S'1922' +p178972 +sg25268 +S'The Hound Cart' +p178973 +sg25270 +S'Ernst Barlach' +p178974 +sa(dp178975 +g25273 +S'woodcut' +p178976 +sg25267 +g27 +sg25275 +S'1922' +p178977 +sg25268 +S'The Lame Men (Diebitz and Stiebitz)' +p178978 +sg25270 +S'Ernst Barlach' +p178979 +sa(dp178980 +g25273 +S'woodcut' +p178981 +sg25267 +g27 +sg25275 +S'1922' +p178982 +sg25268 +S'The Traveling Puppeteer' +p178983 +sg25270 +S'Ernst Barlach' +p178984 +sa(dp178985 +g25273 +S'woodcut' +p178986 +sg25267 +g27 +sg25275 +S'1922' +p178987 +sg25268 +S'The Desperate Puppeteer' +p178988 +sg25270 +S'Ernst Barlach' +p178989 +sa(dp178990 +g25273 +S'woodcut' +p178991 +sg25267 +g27 +sg25275 +S'1922' +p178992 +sg25268 +S'Elise, Kneeling by her Mother' +p178993 +sg25270 +S'Ernst Barlach' +p178994 +sa(dp178995 +g25273 +S'woodcut' +p178996 +sg25267 +g27 +sg25275 +S'1922' +p178997 +sg25268 +S'Group of Several Figures' +p178998 +sg25270 +S'Ernst Barlach' +p178999 +sa(dp179000 +g25273 +S'woodcut' +p179001 +sg25267 +g27 +sg25275 +S'1922' +p179002 +sg25268 +S'The Puppeteer' +p179003 +sg25270 +S'Ernst Barlach' +p179004 +sa(dp179005 +g25273 +S'woodcut' +p179006 +sg25267 +g27 +sg25275 +S'1922' +p179007 +sg25268 +S'The More Honest Man Must Beg (Kummer and Elise)' +p179008 +sg25270 +S'Ernst Barlach' +p179009 +sa(dp179010 +g25273 +S'graphite with brown wash' +p179011 +sg25267 +g27 +sg25275 +S'unknown date\n' +p179012 +sg25268 +S'Bosphorus near Kandira (?)' +p179013 +sg25270 +S'Sir Muirhead Bone' +p179014 +sa(dp179015 +g25273 +S'woodcut' +p179016 +sg25267 +g27 +sg25275 +S'1922' +p179017 +sg25268 +S'The Coat is More Patched than Torn' +p179018 +sg25270 +S'Ernst Barlach' +p179019 +sa(dp179020 +g25273 +S'woodcut' +p179021 +sg25267 +g27 +sg25275 +S'1922' +p179022 +sg25268 +S'Eat, Eat, Father Kummer' +p179023 +sg25270 +S'Ernst Barlach' +p179024 +sa(dp179025 +g25273 +S'woodcut' +p179026 +sg25267 +g27 +sg25275 +S'1922' +p179027 +sg25268 +S'The Kettle' +p179028 +sg25270 +S'Ernst Barlach' +p179029 +sa(dp179030 +g25273 +S'woodcut' +p179031 +sg25267 +g27 +sg25275 +S'1922' +p179032 +sg25268 +S'The Gentleman' +p179033 +sg25270 +S'Ernst Barlach' +p179034 +sa(dp179035 +g25273 +S'woodcut' +p179036 +sg25267 +g27 +sg25275 +S'1922' +p179037 +sg25268 +S'The Mole' +p179038 +sg25270 +S'Ernst Barlach' +p179039 +sa(dp179040 +g25273 +S'woodcut' +p179041 +sg25267 +g27 +sg25275 +S'1922' +p179042 +sg25268 +S'The Child in Glory' +p179043 +sg25270 +S'Ernst Barlach' +p179044 +sa(dp179045 +g25273 +S'woodcut' +p179046 +sg25267 +g27 +sg25275 +S'1922' +p179047 +sg25268 +S'Down with the Expression "Menschenfrass"' +p179048 +sg25270 +S'Ernst Barlach' +p179049 +sa(dp179050 +g25273 +S'woodcut in black on brown paper' +p179051 +sg25267 +g27 +sg25275 +S'1959' +p179052 +sg25268 +S'Angel of Death' +p179053 +sg25270 +S'Leonard Baskin' +p179054 +sa(dp179055 +g25273 +S'woodcut in black on brown paper' +p179056 +sg25267 +g27 +sg25275 +S'1955' +p179057 +sg25268 +S'The Hanged Man' +p179058 +sg25270 +S'Leonard Baskin' +p179059 +sa(dp179060 +g25273 +S'woodcut in black on brown paper' +p179061 +sg25267 +g27 +sg25275 +S'1954' +p179062 +sg25268 +S'The Hydrogen Man' +p179063 +sg25270 +S'Leonard Baskin' +p179064 +sa(dp179065 +g25273 +S'watercolor and graphite' +p179066 +sg25267 +g27 +sg25275 +S'unknown date\n' +p179067 +sg25268 +S'Africa from Gibraltar' +p179068 +sg25270 +S'Sir Muirhead Bone' +p179069 +sa(dp179070 +g25273 +S'woodcut in black on brown paper' +p179071 +sg25267 +g27 +sg25275 +S'1955' +p179072 +sg25268 +S'The Poet Laureate' +p179073 +sg25270 +S'Leonard Baskin' +p179074 +sa(dp179075 +g25273 +S'lithograph' +p179076 +sg25267 +g27 +sg25275 +S'1963' +p179077 +sg25268 +S'Rodin' +p179078 +sg25270 +S'Leonard Baskin' +p179079 +sa(dp179080 +g25273 +S'pen and black ink with black wash on title-page leaf' +p179081 +sg25267 +g27 +sg25275 +S'1962' +p179082 +sg25268 +S'The Spirit of Reanimation Descending' +p179083 +sg25270 +S'Leonard Baskin' +p179084 +sa(dp179085 +g25273 +S'wood engraving' +p179086 +sg25267 +g27 +sg25275 +S'1948' +p179087 +sg25268 +S'Lovers' +p179088 +sg25270 +S'Leonard Baskin' +p179089 +sa(dp179090 +g25273 +S'portfolio w/ 189 linoleum and wood engravings in various colors on 68 sheets including colophon, plus title page and 5 pages of catalogue/index text' +p179091 +sg25267 +g27 +sg25275 +S'published 1961' +p179092 +sg25268 +S'The Wood Engravings of Leonard Baskin 1948-1959' +p179093 +sg25270 +S'Leonard Baskin' +p179094 +sa(dp179095 +g25273 +S'linoleum engraving' +p179096 +sg25267 +g27 +sg25275 +S'1949' +p179097 +sg25268 +S'Three Nude Men' +p179098 +sg25270 +S'Leonard Baskin' +p179099 +sa(dp179100 +g25273 +S'wood engraving' +p179101 +sg25267 +g27 +sg25275 +S'1950' +p179102 +sg25268 +S'Peace' +p179103 +sg25270 +S'Leonard Baskin' +p179104 +sa(dp179105 +g25273 +S'wood engraving' +p179106 +sg25267 +g27 +sg25275 +S'1950' +p179107 +sg25268 +S'Nihil Humanum' +p179108 +sg25270 +S'Leonard Baskin' +p179109 +sa(dp179110 +g25273 +S'wood engraving in red' +p179111 +sg25267 +g27 +sg25275 +S'1951' +p179112 +sg25268 +S'Little Porcupine' +p179113 +sg25270 +S'Leonard Baskin' +p179114 +sa(dp179115 +g25273 +S'wood engraving' +p179116 +sg25267 +g27 +sg25275 +S'1951' +p179117 +sg25268 +S'Paris Shops' +p179118 +sg25270 +S'Leonard Baskin' +p179119 +sa(dp179120 +g25273 +S'graphite' +p179121 +sg25267 +g27 +sg25275 +S'unknown date\n' +p179122 +sg25268 +S'Corinth before the Earthquake' +p179123 +sg25270 +S'Sir Muirhead Bone' +p179124 +sa(dp179125 +g25273 +S'linoleum engraving' +p179126 +sg25267 +g27 +sg25275 +S'1951' +p179127 +sg25268 +S'Boy with Cock' +p179128 +sg25270 +S'Leonard Baskin' +p179129 +sa(dp179130 +g25273 +S'linoleum engraving' +p179131 +sg25267 +g27 +sg25275 +S'1951' +p179132 +sg25268 +S'Tiger & Lamb' +p179133 +sg25270 +S'Leonard Baskin' +p179134 +sa(dp179135 +g25273 +S'linoleum engraving in red' +p179136 +sg25267 +g27 +sg25275 +S'1951' +p179137 +sg25268 +S"Bacon's Boar" +p179138 +sg25270 +S'Leonard Baskin' +p179139 +sa(dp179140 +g25273 +S'linoleum engraving' +p179141 +sg25267 +g27 +sg25275 +S'1951' +p179142 +sg25268 +S'Mosquito' +p179143 +sg25270 +S'Leonard Baskin' +p179144 +sa(dp179145 +g25273 +S'linoleum engraving' +p179146 +sg25267 +g27 +sg25275 +S'1951' +p179147 +sg25268 +S'Owls' +p179148 +sg25270 +S'Leonard Baskin' +p179149 +sa(dp179150 +g25273 +S'linoleum engraving in green' +p179151 +sg25267 +g27 +sg25275 +S'1951' +p179152 +sg25268 +S'Praying Mantis' +p179153 +sg25270 +S'Leonard Baskin' +p179154 +sa(dp179155 +g25273 +S'linoleum engraving in green' +p179156 +sg25267 +g27 +sg25275 +S'1951' +p179157 +sg25268 +S'Frog' +p179158 +sg25270 +S'Leonard Baskin' +p179159 +sa(dp179160 +g25273 +S'linoleum engraving in green' +p179161 +sg25267 +g27 +sg25275 +S'1951' +p179162 +sg25268 +S'Armadillo' +p179163 +sg25270 +S'Leonard Baskin' +p179164 +sa(dp179165 +g25273 +S'linoleum engraving' +p179166 +sg25267 +g27 +sg25275 +S'1951' +p179167 +sg25268 +S'Crows' +p179168 +sg25270 +S'Leonard Baskin' +p179169 +sa(dp179170 +g25273 +S'linoleum engraving in red' +p179171 +sg25267 +g27 +sg25275 +S'1951' +p179172 +sg25268 +S'Beetle' +p179173 +sg25270 +S'Leonard Baskin' +p179174 +sa(dp179175 +g25273 +S'charcoal on green paper' +p179176 +sg25267 +g27 +sg25275 +S'unknown date\n' +p179177 +sg25268 +S'Corinth' +p179178 +sg25270 +S'Sir Muirhead Bone' +p179179 +sa(dp179180 +g25273 +S'linoleum engraving' +p179181 +sg25267 +g27 +sg25275 +S'1951' +p179182 +sg25268 +S'Ant' +p179183 +sg25270 +S'Leonard Baskin' +p179184 +sa(dp179185 +g25273 +S'linoleum engraving' +p179186 +sg25267 +g27 +sg25275 +S'1951' +p179187 +sg25268 +S'Spider' +p179188 +sg25270 +S'Leonard Baskin' +p179189 +sa(dp179190 +g25273 +S'linoleum engraving' +p179191 +sg25267 +g27 +sg25275 +S'1951' +p179192 +sg25268 +S'Scorpion' +p179193 +sg25270 +S'Leonard Baskin' +p179194 +sa(dp179195 +g25273 +S'linoleum engraving' +p179196 +sg25267 +g27 +sg25275 +S'1951' +p179197 +sg25268 +S'Lizard Skeleton' +p179198 +sg25270 +S'Leonard Baskin' +p179199 +sa(dp179200 +g25273 +S'linoleum engraving' +p179201 +sg25267 +g27 +sg25275 +S'1951' +p179202 +sg25268 +S'Bull' +p179203 +sg25270 +S'Leonard Baskin' +p179204 +sa(dp179205 +g25273 +S'linoleum engraving' +p179206 +sg25267 +g27 +sg25275 +S'1951' +p179207 +sg25268 +S'Fly' +p179208 +sg25270 +S'Leonard Baskin' +p179209 +sa(dp179210 +g25273 +S'linoleum engraving' +p179211 +sg25267 +g27 +sg25275 +S'1951' +p179212 +sg25268 +S'Peacock' +p179213 +sg25270 +S'Leonard Baskin' +p179214 +sa(dp179215 +g25273 +S'linoleum engraving' +p179216 +sg25267 +g27 +sg25275 +S'1951' +p179217 +sg25268 +S'Porcupine' +p179218 +sg25270 +S'Leonard Baskin' +p179219 +sa(dp179220 +g25273 +S'linoleum engraving in red' +p179221 +sg25267 +g27 +sg25275 +S'1951' +p179222 +sg25268 +S'Hyena' +p179223 +sg25270 +S'Leonard Baskin' +p179224 +sa(dp179225 +g25273 +S'linoleum engraving' +p179226 +sg25267 +g27 +sg25275 +S'1951' +p179227 +sg25268 +S'Barracuda' +p179228 +sg25270 +S'Leonard Baskin' +p179229 +sa(dp179230 +g25273 +S'graphite' +p179231 +sg25267 +g27 +sg25275 +S'unknown date\n' +p179232 +sg25268 +S'East Side, New York' +p179233 +sg25270 +S'Sir Muirhead Bone' +p179234 +sa(dp179235 +g25273 +S'linoleum engraving' +p179236 +sg25267 +g27 +sg25275 +S'1951' +p179237 +sg25268 +S'Mouse' +p179238 +sg25270 +S'Leonard Baskin' +p179239 +sa(dp179240 +g25273 +S'linoleum engraving' +p179241 +sg25267 +g27 +sg25275 +S'1951' +p179242 +sg25268 +S'Prawn & Crab' +p179243 +sg25270 +S'Leonard Baskin' +p179244 +sa(dp179245 +g25273 +S'linoleum engraving' +p179246 +sg25267 +g27 +sg25275 +S'1951' +p179247 +sg25268 +S'Insects' +p179248 +sg25270 +S'Leonard Baskin' +p179249 +sa(dp179250 +g25273 +S'linoleum engraving in red' +p179251 +sg25267 +g27 +sg25275 +S'1951' +p179252 +sg25268 +S'Flea' +p179253 +sg25270 +S'Leonard Baskin' +p179254 +sa(dp179255 +g25273 +S'linoleum engraving' +p179256 +sg25267 +g27 +sg25275 +S'1951' +p179257 +sg25268 +S'Vulture' +p179258 +sg25270 +S'Leonard Baskin' +p179259 +sa(dp179260 +g25273 +S'linoleum engraving' +p179261 +sg25267 +g27 +sg25275 +S'1951' +p179262 +sg25268 +S'Rooster' +p179263 +sg25270 +S'Leonard Baskin' +p179264 +sa(dp179265 +g25273 +S'linoleum engraving' +p179266 +sg25267 +g27 +sg25275 +S'1951' +p179267 +sg25268 +S'Bee' +p179268 +sg25270 +S'Leonard Baskin' +p179269 +sa(dp179270 +g25273 +S'photo-engraving (original linoleum block lost)' +p179271 +sg25267 +g27 +sg25275 +S'1951' +p179272 +sg25268 +S'Dragon Fly' +p179273 +sg25270 +S'Leonard Baskin' +p179274 +sa(dp179275 +g25273 +S'photo-engraving (original linoleum block lost)' +p179276 +sg25267 +g27 +sg25275 +S'1951' +p179277 +sg25268 +S'Mandrill' +p179278 +sg25270 +S'Leonard Baskin' +p179279 +sa(dp179280 +g25273 +S'wood engraving' +p179281 +sg25267 +g27 +sg25275 +S'1952' +p179282 +sg25268 +S'Three Women before a Plain' +p179283 +sg25270 +S'Leonard Baskin' +p179284 +sa(dp179285 +g25273 +S'graphite on page torn from a book' +p179286 +sg25267 +g27 +sg25275 +S'unknown date\n' +p179287 +sg25268 +S'New Jersey Shore' +p179288 +sg25270 +S'Sir Muirhead Bone' +p179289 +sa(dp179290 +g25273 +S'wood engraving' +p179291 +sg25267 +g27 +sg25275 +S'1952' +p179292 +sg25268 +S'Saint Anthony' +p179293 +sg25270 +S'Leonard Baskin' +p179294 +sa(dp179295 +g25273 +S'wood engraving' +p179296 +sg25267 +g27 +sg25275 +S'1952' +p179297 +sg25268 +S'Illustration to Wilfred Owen' +p179298 +sg25270 +S'Leonard Baskin' +p179299 +sa(dp179300 +g25273 +S'wood engraving' +p179301 +sg25267 +g27 +sg25275 +S'1952' +p179302 +sg25268 +S'Mental Cases from Wilfred Owen' +p179303 +sg25270 +S'Leonard Baskin' +p179304 +sa(dp179305 +g25273 +S'wood engraving' +p179306 +sg25267 +g27 +sg25275 +S'1952' +p179307 +sg25268 +S'Sienese Head' +p179308 +sg25270 +S'Leonard Baskin' +p179309 +sa(dp179310 +g25273 +S'wood engraving' +p179311 +sg25267 +g27 +sg25275 +S'1952' +p179312 +sg25268 +S'Little Fiorentino' +p179313 +sg25270 +S'Leonard Baskin' +p179314 +sa(dp179315 +g25273 +S'wood engraving' +p179316 +sg25267 +g27 +sg25275 +S'1952' +p179317 +sg25268 +S'David & Bathsheba' +p179318 +sg25270 +S'Leonard Baskin' +p179319 +sa(dp179320 +g25273 +S'linoleum engraving' +p179321 +sg25267 +g27 +sg25275 +S'1952' +p179322 +sg25268 +S'King David' +p179323 +sg25270 +S'Leonard Baskin' +p179324 +sa(dp179325 +g25273 +S'wood engraving' +p179326 +sg25267 +g27 +sg25275 +S'1952' +p179327 +sg25268 +S'Head' +p179328 +sg25270 +S'Leonard Baskin' +p179329 +sa(dp179330 +g25273 +S'linoleum engraving' +p179331 +sg25267 +g27 +sg25275 +S'1952' +p179332 +sg25268 +S'Abraham & Isaac' +p179333 +sg25270 +S'Leonard Baskin' +p179334 +sa(dp179335 +g25273 +S'wood engraving' +p179336 +sg25267 +g27 +sg25275 +S'1952' +p179337 +sg25268 +S'Thief Crucified' +p179338 +sg25270 +S'Leonard Baskin' +p179339 +sa(dp179340 +g25273 +S'graphite with pen and brown ink and gray wash' +p179341 +sg25267 +g27 +sg25275 +S'unknown date\n' +p179342 +sg25268 +S'Hell Gate Bridge, Brooklyn' +p179343 +sg25270 +S'Sir Muirhead Bone' +p179344 +sa(dp179345 +g25273 +S'wood engraving' +p179346 +sg25267 +g27 +sg25275 +S'1952' +p179347 +sg25268 +S'Man and the City' +p179348 +sg25270 +S'Leonard Baskin' +p179349 +sa(dp179350 +g25273 +S'wood engraving' +p179351 +sg25267 +g27 +sg25275 +S'1952' +p179352 +sg25268 +S'Blind Man' +p179353 +sg25270 +S'Leonard Baskin' +p179354 +sa(dp179355 +g25273 +S'wood engraving' +p179356 +sg25267 +g27 +sg25275 +S'1952' +p179357 +sg25268 +S'Three Blind Men' +p179358 +sg25270 +S'Leonard Baskin' +p179359 +sa(dp179360 +g25273 +S'wood engraving in red and black' +p179361 +sg25267 +g27 +sg25275 +S'1952' +p179362 +sg25268 +S'Ex-Libris for M. & B. Esty' +p179363 +sg25270 +S'Leonard Baskin' +p179364 +sa(dp179365 +g25273 +S'wood engraving' +p179366 +sg25267 +g27 +sg25275 +S'1952' +p179367 +sg25268 +S'Dead Bird' +p179368 +sg25270 +S'Leonard Baskin' +p179369 +sa(dp179370 +g25273 +S'wood engraving' +p179371 +sg25267 +g27 +sg25275 +S'1952' +p179372 +sg25268 +S'Pomegranate' +p179373 +sg25270 +S'Leonard Baskin' +p179374 +sa(dp179375 +g25273 +S'wood engraving in red and black' +p179376 +sg25267 +g27 +sg25275 +S'1952' +p179377 +sg25268 +S'Ex-Libris for R.G. Dick' +p179378 +sg25270 +S'Leonard Baskin' +p179379 +sa(dp179380 +g25273 +S'wood engraving in green' +p179381 +sg25267 +g27 +sg25275 +S'1952' +p179382 +sg25268 +S'Mark for Hyman Swetzoff' +p179383 +sg25270 +S'Leonard Baskin' +p179384 +sa(dp179385 +g25273 +S'wood engraving' +p179386 +sg25267 +g27 +sg25275 +S'1952' +p179387 +sg25268 +S'Day of Atonement' +p179388 +sg25270 +S'Leonard Baskin' +p179389 +sa(dp179390 +g25273 +S'wood engraving in red and black' +p179391 +sg25267 +g27 +sg25275 +S'1952' +p179392 +sg25268 +S'Ex-Libris for Saxe Collection' +p179393 +sg25270 +S'Leonard Baskin' +p179394 +sa(dp179395 +g25273 +S'graphite with black, yellow, and red wash' +p179396 +sg25267 +g27 +sg25275 +S'unknown date\n' +p179397 +sg25268 +S'Spring Evening, Greenwich, Connecticut' +p179398 +sg25270 +S'Sir Muirhead Bone' +p179399 +sa(dp179400 +g25273 +S'wood engraving' +p179401 +sg25267 +g27 +sg25275 +S'1952' +p179402 +sg25268 +S'Device for The Gehenna Press' +p179403 +sg25270 +S'Leonard Baskin' +p179404 +sa(dp179405 +g25273 +S'wood engraving' +p179406 +sg25267 +g27 +sg25275 +S'1952' +p179407 +sg25268 +S'Two Blind Men' +p179408 +sg25270 +S'Leonard Baskin' +p179409 +sa(dp179410 +g25273 +S'wood engraving' +p179411 +sg25267 +g27 +sg25275 +S'1952' +p179412 +sg25268 +S'Imaginary Portrait of John Skelton (The Tunning of Elynour Rummynge: Frontispiece)' +p179413 +sg25270 +S'Leonard Baskin' +p179414 +sa(dp179415 +g25273 +S'wood engraving' +p179416 +sg25267 +g27 +sg25275 +S'1952' +p179417 +sg25268 +S'The Tunning of Elynour Rummynge by John Skelton: Page 9' +p179418 +sg25270 +S'Leonard Baskin' +p179419 +sa(dp179420 +g25273 +S'wood engraving' +p179421 +sg25267 +g27 +sg25275 +S'1952' +p179422 +sg25268 +S'The Tunning of Elynour Rummynge by John Skelton: Page 19' +p179423 +sg25270 +S'Leonard Baskin' +p179424 +sa(dp179425 +g25273 +S'wood engraving' +p179426 +sg25267 +g27 +sg25275 +S'1952' +p179427 +sg25268 +S'The Tunning of Elynour Rummynge by John Skelton: Glossary Head' +p179428 +sg25270 +S'Leonard Baskin' +p179429 +sa(dp179430 +g25273 +S'wood engraving in red and black' +p179431 +sg25267 +g27 +sg25275 +S'1952' +p179432 +sg25268 +S'The Tunning of Elynour Rummynge by John Skelton: Page 3' +p179433 +sg25270 +S'Leonard Baskin' +p179434 +sa(dp179435 +g25273 +S'wood engraving in green' +p179436 +sg25267 +g27 +sg25275 +S'1952' +p179437 +sg25268 +S'The Tunning of Elynour Rummynge by John Skelton: Page 15' +p179438 +sg25270 +S'Leonard Baskin' +p179439 +sa(dp179440 +g25273 +S'wood engraving' +p179441 +sg25267 +g27 +sg25275 +S'1952' +p179442 +sg25268 +S'The Tunning of Elynour Rummynge by John Skelton: Page 34' +p179443 +sg25270 +S'Leonard Baskin' +p179444 +sa(dp179445 +g25273 +S'wood engraving' +p179446 +sg25267 +g27 +sg25275 +S'1952' +p179447 +sg25268 +S'The Tunning of Elynour Rummynge by John Skelton: Page 32' +p179448 +sg25270 +S'Leonard Baskin' +p179449 +sa(dp179450 +g25273 +S'graphite' +p179451 +sg25267 +g27 +sg25275 +S'unknown date\n' +p179452 +sg25268 +S'Weehawken, New Jersey and New York' +p179453 +sg25270 +S'Sir Muirhead Bone' +p179454 +sa(dp179455 +g25273 +S'wood engraving' +p179456 +sg25267 +g27 +sg25275 +S'1952' +p179457 +sg25268 +S'The Tunning of Elynour Rummynge by John Skelton: Page 27' +p179458 +sg25270 +S'Leonard Baskin' +p179459 +sa(dp179460 +g25273 +S'wood engraving' +p179461 +sg25267 +g27 +sg25275 +S'1952' +p179462 +sg25268 +S'The Tunning of Elynour Rummynge by John Skelton: Page 24' +p179463 +sg25270 +S'Leonard Baskin' +p179464 +sa(dp179465 +g25273 +S'wood engraving in red' +p179466 +sg25267 +g27 +sg25275 +S'1952' +p179467 +sg25268 +S'The Tunning of Elynour Rummynge by John Skelton: Page 11' +p179468 +sg25270 +S'Leonard Baskin' +p179469 +sa(dp179470 +g25273 +S'wood engraving' +p179471 +sg25267 +g27 +sg25275 +S'1952' +p179472 +sg25268 +S'Castle Street Dog' +p179473 +sg25270 +S'Leonard Baskin' +p179474 +sa(dp179475 +g25273 +S'wood engraving' +p179476 +sg25267 +g27 +sg25275 +S'1952' +p179477 +sg25268 +S'Castle Street Dog' +p179478 +sg25270 +S'Leonard Baskin' +p179479 +sa(dp179480 +g25273 +S'wood engraving' +p179481 +sg25267 +g27 +sg25275 +S'1952' +p179482 +sg25268 +S'Castle Street Dog' +p179483 +sg25270 +S'Leonard Baskin' +p179484 +sa(dp179485 +g25273 +S'wood engraving' +p179486 +sg25267 +g27 +sg25275 +S'1952' +p179487 +sg25268 +S'Castle Street Dog' +p179488 +sg25270 +S'Leonard Baskin' +p179489 +sa(dp179490 +g25273 +S'wood engraving' +p179491 +sg25267 +g27 +sg25275 +S'1952' +p179492 +sg25268 +S'Castle Street Dog' +p179493 +sg25270 +S'Leonard Baskin' +p179494 +sa(dp179495 +g25273 +S'wood engraving' +p179496 +sg25267 +g27 +sg25275 +S'1952' +p179497 +sg25268 +S'Castle Street Dog' +p179498 +sg25270 +S'Leonard Baskin' +p179499 +sa(dp179500 +g25273 +S'wood engraving' +p179501 +sg25267 +g27 +sg25275 +S'1952' +p179502 +sg25268 +S'Castle Street Dog' +p179503 +sg25270 +S'Leonard Baskin' +p179504 +sa(dp179505 +g25273 +S'graphite' +p179506 +sg25267 +g27 +sg25275 +S'1923' +p179507 +sg25268 +S'Stuyvesant Square' +p179508 +sg25270 +S'Sir Muirhead Bone' +p179509 +sa(dp179510 +g25273 +S'wood engraving' +p179511 +sg25267 +g27 +sg25275 +S'1952' +p179512 +sg25268 +S'Castle Street Dog' +p179513 +sg25270 +S'Leonard Baskin' +p179514 +sa(dp179515 +g25273 +S'wood engraving' +p179516 +sg25267 +g27 +sg25275 +S'1952' +p179517 +sg25268 +S'Castle Street Dog' +p179518 +sg25270 +S'Leonard Baskin' +p179519 +sa(dp179520 +g25273 +S'wood engraving' +p179521 +sg25267 +g27 +sg25275 +S'1952' +p179522 +sg25268 +S'Castle Street Dog' +p179523 +sg25270 +S'Leonard Baskin' +p179524 +sa(dp179525 +g25273 +S'wood engraving' +p179526 +sg25267 +g27 +sg25275 +S'1952' +p179527 +sg25268 +S'Castle' +p179528 +sg25270 +S'Leonard Baskin' +p179529 +sa(dp179530 +g25273 +S'wood engraving' +p179531 +sg25267 +g27 +sg25275 +S'1952' +p179532 +sg25268 +S'Small Castle' +p179533 +sg25270 +S'Leonard Baskin' +p179534 +sa(dp179535 +g25273 +S'wood engraving' +p179536 +sg25267 +g27 +sg25275 +S'1953' +p179537 +sg25268 +S'View in Worcester' +p179538 +sg25270 +S'Leonard Baskin' +p179539 +sa(dp179540 +g25273 +S'linoleum engraving' +p179541 +sg25267 +g27 +sg25275 +S'1953' +p179542 +sg25268 +S'Plow & Dove' +p179543 +sg25270 +S'Leonard Baskin' +p179544 +sa(dp179545 +g25273 +S'wood engraving' +p179546 +sg25267 +g27 +sg25275 +S'1953' +p179547 +sg25268 +S'Man with Forsythia' +p179548 +sg25270 +S'Leonard Baskin' +p179549 +sa(dp179550 +g25273 +S'wood engraving' +p179551 +sg25267 +g27 +sg25275 +S'1953' +p179552 +sg25268 +S'Man with Spring Plants' +p179553 +sg25270 +S'Leonard Baskin' +p179554 +sa(dp179555 +g25273 +S'wood engraving' +p179556 +sg25267 +g27 +sg25275 +S'1953' +p179557 +sg25268 +S'L.B. AET. 30' +p179558 +sg25270 +S'Leonard Baskin' +p179559 +sa(dp179560 +g25273 +S'graphite' +p179561 +sg25267 +g27 +sg25275 +S'unknown date\n' +p179562 +sg25268 +S'Old Madison Square Garden' +p179563 +sg25270 +S'Sir Muirhead Bone' +p179564 +sa(dp179565 +g25273 +S'wood engraving in red and black' +p179566 +sg25267 +g27 +sg25275 +S'1953' +p179567 +sg25268 +S'Ex-Libris for D. & B. Schiff' +p179568 +sg25270 +S'Leonard Baskin' +p179569 +sa(dp179570 +g25273 +S'wood engraving' +p179571 +sg25267 +g27 +sg25275 +S'1953' +p179572 +sg25268 +S'Still Life' +p179573 +sg25270 +S'Leonard Baskin' +p179574 +sa(dp179575 +g25273 +S'wood engraving' +p179576 +sg25267 +g27 +sg25275 +S'1954' +p179577 +sg25268 +S'Projected Ex-Libris for C.G.' +p179578 +sg25270 +S'Leonard Baskin' +p179579 +sa(dp179580 +g25273 +S'wood engraving in red and black' +p179581 +sg25267 +g27 +sg25275 +S'1954' +p179582 +sg25268 +S'Ex-Libris for S.D. Lockshin' +p179583 +sg25270 +S'Leonard Baskin' +p179584 +sa(dp179585 +g25273 +S'wood engraving' +p179586 +sg25267 +g27 +sg25275 +S'1954' +p179587 +sg25268 +S'Projected Ex-Libris for C.G.' +p179588 +sg25270 +S'Leonard Baskin' +p179589 +sa(dp179590 +g25273 +S'linoleum engraving' +p179591 +sg25267 +g27 +sg25275 +S'1954' +p179592 +sg25268 +S'Dog' +p179593 +sg25270 +S'Leonard Baskin' +p179594 +sa(dp179595 +g25273 +S'linoleum engraving' +p179596 +sg25267 +g27 +sg25275 +S'1954' +p179597 +sg25268 +S'Abundant Bird' +p179598 +sg25270 +S'Leonard Baskin' +p179599 +sa(dp179600 +g25273 +S'wood engraving in green' +p179601 +sg25267 +g27 +sg25275 +S'1954' +p179602 +sg25268 +S"Collector's Mark for E. & L. Baskin" +p179603 +sg25270 +S'Leonard Baskin' +p179604 +sa(dp179605 +g25273 +S'linoleum engraving in red and black' +p179606 +sg25267 +g27 +sg25275 +S'1954' +p179607 +sg25268 +S'E.T.B. AET. 28' +p179608 +sg25270 +S'Leonard Baskin' +p179609 +sa(dp179610 +g25273 +S'wood engraving' +p179611 +sg25267 +g27 +sg25275 +S'1955' +p179612 +sg25268 +S'Fantastic Creature' +p179613 +sg25270 +S'Leonard Baskin' +p179614 +sa(dp179615 +g25273 +S'charcoal and graphite with green wash and blue-white heightening' +p179616 +sg25267 +g27 +sg25275 +S'unknown date\n' +p179617 +sg25268 +S'From Riverside Drive' +p179618 +sg25270 +S'Sir Muirhead Bone' +p179619 +sa(dp179620 +g25273 +S'wood engraving' +p179621 +sg25267 +g27 +sg25275 +S'1955' +p179622 +sg25268 +S'Mark for Louis Smith' +p179623 +sg25270 +S'Leonard Baskin' +p179624 +sa(dp179625 +g25273 +S'wood engraving in black and red' +p179626 +sg25267 +g27 +sg25275 +S'1955' +p179627 +sg25268 +S'Ex-Libris for Max Kahn' +p179628 +sg25270 +S'Leonard Baskin' +p179629 +sa(dp179630 +g25273 +S'wood engraving' +p179631 +sg25267 +g27 +sg25275 +S'1955' +p179632 +sg25268 +S'Angel' +p179633 +sg25270 +S'Leonard Baskin' +p179634 +sa(dp179635 +g25273 +S'wood engraving' +p179636 +sg25267 +g27 +sg25275 +S'1955' +p179637 +sg25268 +S'Walt Whitman' +p179638 +sg25270 +S'Leonard Baskin' +p179639 +sa(dp179640 +g25273 +S'(artist after)' +p179641 +sg25267 +g27 +sg25275 +S'\n' +p179642 +sg25268 +S'Beatitude' +p179643 +sg25270 +S'Artist Information (' +p179644 +sa(dp179645 +g25273 +S'wood engraving' +p179646 +sg25267 +g27 +sg25275 +S'1956' +p179647 +sg25268 +S'Winter Grasses' +p179648 +sg25270 +S'Leonard Baskin' +p179649 +sa(dp179650 +g25273 +S'wood engraving' +p179651 +sg25267 +g27 +sg25275 +S'1956' +p179652 +sg25268 +S'Open Pomegranate' +p179653 +sg25270 +S'Leonard Baskin' +p179654 +sa(dp179655 +g25273 +S'wood engraving' +p179656 +sg25267 +g27 +sg25275 +S'1956' +p179657 +sg25268 +S'Mark for Boris Mirski' +p179658 +sg25270 +S'Leonard Baskin' +p179659 +sa(dp179660 +g25273 +S'wood engraving' +p179661 +sg25267 +g27 +sg25275 +S'1956' +p179662 +sg25268 +S'Mark for Richard Warren' +p179663 +sg25270 +S'Leonard Baskin' +p179664 +sa(dp179665 +g25273 +S'wood engraving' +p179666 +sg25267 +g27 +sg25275 +S'1956' +p179667 +sg25268 +S'Dog Skeleton' +p179668 +sg25270 +S'Leonard Baskin' +p179669 +sa(dp179670 +g25273 +S'graphite' +p179671 +sg25267 +g27 +sg25275 +S'1923' +p179672 +sg25268 +S'Fifth Avenue at Night' +p179673 +sg25270 +S'Sir Muirhead Bone' +p179674 +sa(dp179675 +g25273 +S'wood engraving' +p179676 +sg25267 +g27 +sg25275 +S'1956' +p179677 +sg25268 +S'Blake from the Life Mask by Deville' +p179678 +sg25270 +S'Leonard Baskin' +p179679 +sa(dp179680 +g25273 +S'wood engraving' +p179681 +sg25267 +g27 +sg25275 +S'1956' +p179682 +sg25268 +S'William Blake' +p179683 +sg25270 +S'Leonard Baskin' +p179684 +sa(dp179685 +g25273 +S'wood engraving' +p179686 +sg25267 +g27 +sg25275 +S'1956' +p179687 +sg25268 +S'Blake: An Imagined Death Mask' +p179688 +sg25270 +S'Leonard Baskin' +p179689 +sa(dp179690 +g25273 +S'wood engraving' +p179691 +sg25267 +g27 +sg25275 +S'1956' +p179692 +sg25268 +S'Blake after a Drawing by John Linnell' +p179693 +sg25270 +S'Leonard Baskin' +p179694 +sa(dp179695 +g25273 +S'wood engraving' +p179696 +sg25267 +g27 +sg25275 +S'1956' +p179697 +sg25268 +S'Blake after His Visionary Self-Portrait' +p179698 +sg25270 +S'Leonard Baskin' +p179699 +sa(dp179700 +g25273 +S'wood engraving' +p179701 +sg25267 +g27 +sg25275 +S'1956' +p179702 +sg25268 +S'Samuel Palmer after a Photograph' +p179703 +sg25270 +S'Leonard Baskin' +p179704 +sa(dp179705 +g25273 +S'wood engraving' +p179706 +sg25267 +g27 +sg25275 +S'1956' +p179707 +sg25268 +S'Blake: A Fragment' +p179708 +sg25270 +S'Leonard Baskin' +p179709 +sa(dp179710 +g25273 +S'wood engraving' +p179711 +sg25267 +g27 +sg25275 +S'1956' +p179712 +sg25268 +S'An Adamite Vision of Blake' +p179713 +sg25270 +S'Leonard Baskin' +p179714 +sa(dp179715 +g25273 +S'wood engraving' +p179716 +sg25267 +g27 +sg25275 +S'1956' +p179717 +sg25268 +S'Edward Calvert after a Portrait by His Third Son' +p179718 +sg25270 +S'Leonard Baskin' +p179719 +sa(dp179720 +g25273 +S'wood engraving' +p179721 +sg25267 +g27 +sg25275 +S'1956' +p179722 +sg25268 +S'Edward Calvert' +p179723 +sg25270 +S'Leonard Baskin' +p179724 +sa(dp179725 +g25273 +S'graphite with gray, pink, and blue wash' +p179726 +sg25267 +g27 +sg25275 +S'unknown date\n' +p179727 +sg25268 +S'Lake in Central Park, Night' +p179728 +sg25270 +S'Sir Muirhead Bone' +p179729 +sa(dp179730 +g25273 +S'wood engraving' +p179731 +sg25267 +g27 +sg25275 +S'1956' +p179732 +sg25268 +S'Frederick Tathem from a Little Known Photograph' +p179733 +sg25270 +S'Leonard Baskin' +p179734 +sa(dp179735 +g25273 +S'wood engraving' +p179736 +sg25267 +g27 +sg25275 +S'1956' +p179737 +sg25268 +S'Francis Finch' +p179738 +sg25270 +S'Leonard Baskin' +p179739 +sa(dp179740 +g25273 +S'wood engraving' +p179741 +sg25267 +g27 +sg25275 +S'1956' +p179742 +sg25268 +S'Samuel Palmer after the Water Color by Walter' +p179743 +sg25270 +S'Leonard Baskin' +p179744 +sa(dp179745 +g25273 +S'wood engraving' +p179746 +sg25267 +g27 +sg25275 +S'1956' +p179747 +sg25268 +S'George Richmond Engraving "The Shepard"' +p179748 +sg25270 +S'Leonard Baskin' +p179749 +sa(dp179750 +g25273 +S'wood engraving' +p179751 +sg25267 +g27 +sg25275 +S'1956' +p179752 +sg25268 +S'George Richmond in His Engraving Costume' +p179753 +sg25270 +S'Leonard Baskin' +p179754 +sa(dp179755 +g25273 +S'wood engraving' +p179756 +sg25267 +g27 +sg25275 +S'1956' +p179757 +sg25268 +S'Samuel Palmer' +p179758 +sg25270 +S'Leonard Baskin' +p179759 +sa(dp179760 +g25273 +S'wood engraving' +p179761 +sg25267 +g27 +sg25275 +S'1956' +p179762 +sg25268 +S'A Visionary Portrait of Henry Walter' +p179763 +sg25270 +S'Leonard Baskin' +p179764 +sa(dp179765 +g25273 +S'wood engraving' +p179766 +sg25267 +g27 +sg25275 +S'1956' +p179767 +sg25268 +S'Calvert Preparing to Sacrifice a Lamb' +p179768 +sg25270 +S'Leonard Baskin' +p179769 +sa(dp179770 +g25273 +S'wood engraving' +p179771 +sg25267 +g27 +sg25275 +S'1956' +p179772 +sg25268 +S'Samuel Palmer When He First Met Blake' +p179773 +sg25270 +S'Leonard Baskin' +p179774 +sa(dp179775 +g25273 +S'(artist after)' +p179776 +sg25267 +g27 +sg25275 +S'\n' +p179777 +sg25268 +S'Wilfred Owen' +p179778 +sg25270 +S'Artist Information (' +p179779 +sa(dp179780 +g25273 +S'charcoal and brown wash' +p179781 +sg25267 +g27 +sg25275 +S'unknown date\n' +p179782 +sg25268 +S'Villa Medici, Rome' +p179783 +sg25270 +S'Sir Muirhead Bone' +p179784 +sa(dp179785 +g25273 +S'wood engraving' +p179786 +sg25267 +g27 +sg25275 +S'1956' +p179787 +sg25268 +S'The Leper' +p179788 +sg25270 +S'Leonard Baskin' +p179789 +sa(dp179790 +g25273 +S'wood engraving' +p179791 +sg25267 +g27 +sg25275 +S'1957' +p179792 +sg25268 +S'The Funeral' +p179793 +sg25270 +S'Leonard Baskin' +p179794 +sa(dp179795 +g25273 +S'wood engraving' +p179796 +sg25267 +g27 +sg25275 +S'1957' +p179797 +sg25268 +S'Stag' +p179798 +sg25270 +S'Leonard Baskin' +p179799 +sa(dp179800 +g25273 +S'wood engraving' +p179801 +sg25267 +g27 +sg25275 +S'1957' +p179802 +sg25268 +S'Boar' +p179803 +sg25270 +S'Leonard Baskin' +p179804 +sa(dp179805 +g25273 +S'wood engraving' +p179806 +sg25267 +g27 +sg25275 +S'1957' +p179807 +sg25268 +S'The Ascension' +p179808 +sg25270 +S'Leonard Baskin' +p179809 +sa(dp179810 +g25273 +S'wood engraving' +p179811 +sg25267 +g27 +sg25275 +S'1957' +p179812 +sg25268 +S'Skull' +p179813 +sg25270 +S'Leonard Baskin' +p179814 +sa(dp179815 +g25273 +S'wood engraving' +p179816 +sg25267 +g27 +sg25275 +S'1957' +p179817 +sg25268 +S'Projected Ex-Libris' +p179818 +sg25270 +S'Leonard Baskin' +p179819 +sa(dp179820 +g25273 +S'wood engraving in red' +p179821 +sg25267 +g27 +sg25275 +S'1957' +p179822 +sg25268 +S'Pomegranate Tree' +p179823 +sg25270 +S'Leonard Baskin' +p179824 +sa(dp179825 +g25273 +S'wood engraving' +p179826 +sg25267 +g27 +sg25275 +S'1957' +p179827 +sg25268 +S'Owl & Pomegranate' +p179828 +sg25270 +S'Leonard Baskin' +p179829 +sa(dp179830 +g25273 +S'wood engraving' +p179831 +sg25267 +g27 +sg25275 +S'1957' +p179832 +sg25268 +S"Bird's Skull" +p179833 +sg25270 +S'Leonard Baskin' +p179834 +sa(dp179835 +g25273 +S'charcoal with white pastel on brown paper' +p179836 +sg25267 +g27 +sg25275 +S'unknown date\n' +p179837 +sg25268 +S'Friar Preaching' +p179838 +sg25270 +S'Sir Muirhead Bone' +p179839 +sa(dp179840 +g25273 +S'wood engraving' +p179841 +sg25267 +g27 +sg25275 +S'1957' +p179842 +sg25268 +S'Ernst Barlach' +p179843 +sg25270 +S'Leonard Baskin' +p179844 +sa(dp179845 +g25273 +S'wood engraving' +p179846 +sg25267 +g27 +sg25275 +S'1957' +p179847 +sg25268 +S'Ernst Barlach' +p179848 +sg25270 +S'Leonard Baskin' +p179849 +sa(dp179850 +g25273 +S'wood engraving' +p179851 +sg25267 +g27 +sg25275 +S'1957' +p179852 +sg25268 +S'Ernst Barlach' +p179853 +sg25270 +S'Leonard Baskin' +p179854 +sa(dp179855 +g25273 +S'wood engraving' +p179856 +sg25267 +g27 +sg25275 +S'1957' +p179857 +sg25268 +S'Hart Crane' +p179858 +sg25270 +S'Leonard Baskin' +p179859 +sa(dp179860 +g25273 +S'wood engraving' +p179861 +sg25267 +g27 +sg25275 +S'1957' +p179862 +sg25268 +S'The Sea' +p179863 +sg25270 +S'Leonard Baskin' +p179864 +sa(dp179865 +g25273 +S'wood engraving' +p179866 +sg25267 +g27 +sg25275 +S'1957' +p179867 +sg25268 +S'Venus Shell' +p179868 +sg25270 +S'Leonard Baskin' +p179869 +sa(dp179870 +g25273 +S'wood engraving in green' +p179871 +sg25267 +g27 +sg25275 +S'1957' +p179872 +sg25268 +S'Sea Weed' +p179873 +sg25270 +S'Leonard Baskin' +p179874 +sa(dp179875 +g25273 +S'wood engraving' +p179876 +sg25267 +g27 +sg25275 +S'1957' +p179877 +sg25268 +S'Seascape' +p179878 +sg25270 +S'Leonard Baskin' +p179879 +sa(dp179880 +g25273 +S'wood engraving on mustard yellow paper' +p179881 +sg25267 +g27 +sg25275 +S'1957' +p179882 +sg25268 +S'Bird' +p179883 +sg25270 +S'Leonard Baskin' +p179884 +sa(dp179885 +g25273 +S'wood engraving' +p179886 +sg25267 +g27 +sg25275 +S'1957' +p179887 +sg25268 +S'Death of the Laureate' +p179888 +sg25270 +S'Leonard Baskin' +p179889 +sa(dp179890 +g25273 +S'graphite with wash' +p179891 +sg25267 +g27 +sg25275 +S'unknown date\n' +p179892 +sg25268 +S'Lagoon, Venice' +p179893 +sg25270 +S'Sir Muirhead Bone' +p179894 +sa(dp179895 +g25273 +S'wood engraving' +p179896 +sg25267 +g27 +sg25275 +S'1957' +p179897 +sg25268 +S'Thistle' +p179898 +sg25270 +S'Leonard Baskin' +p179899 +sa(dp179900 +g25273 +S'wood engraving' +p179901 +sg25267 +g27 +sg25275 +S'1957' +p179902 +sg25268 +S'Field' +p179903 +sg25270 +S'Leonard Baskin' +p179904 +sa(dp179905 +g25273 +S'wood engraving' +p179906 +sg25267 +g27 +sg25275 +S'1957' +p179907 +sg25268 +S'The Relic' +p179908 +sg25270 +S'Leonard Baskin' +p179909 +sa(dp179910 +g25273 +S'wood engraving' +p179911 +sg25267 +g27 +sg25275 +S'1957' +p179912 +sg25268 +S'Weeds' +p179913 +sg25270 +S'Leonard Baskin' +p179914 +sa(dp179915 +g25273 +S'wood engraving' +p179916 +sg25267 +g27 +sg25275 +S'1957' +p179917 +sg25268 +S'Borzoi' +p179918 +sg25270 +S'Leonard Baskin' +p179919 +sa(dp179920 +g25273 +S'wood engraving in green, red and black' +p179921 +sg25267 +g27 +sg25275 +S'1958' +p179922 +sg25268 +S'Ex-Libris for M.W. Bick, M.D.' +p179923 +sg25270 +S'Leonard Baskin' +p179924 +sa(dp179925 +g25273 +S'wood engraving' +p179926 +sg25267 +g27 +sg25275 +S'1958' +p179927 +sg25268 +S'Dog' +p179928 +sg25270 +S'Leonard Baskin' +p179929 +sa(dp179930 +g25273 +S'wood engraving' +p179931 +sg25267 +g27 +sg25275 +S'1958' +p179932 +sg25268 +S'Tobias & the Angel' +p179933 +sg25270 +S'Leonard Baskin' +p179934 +sa(dp179935 +g25273 +S'wood engraving' +p179936 +sg25267 +g27 +sg25275 +S'1958' +p179937 +sg25268 +S'Envy' +p179938 +sg25270 +S'Leonard Baskin' +p179939 +sa(dp179940 +g25273 +S'wood engraving' +p179941 +sg25267 +g27 +sg25275 +S'1958' +p179942 +sg25268 +S'Pride' +p179943 +sg25270 +S'Leonard Baskin' +p179944 +sa(dp179945 +g25273 +S'watercolor over graphite' +p179946 +sg25267 +g27 +sg25275 +S'unknown date\n' +p179947 +sg25268 +S'In the Roman Campagna' +p179948 +sg25270 +S'Sir Muirhead Bone' +p179949 +sa(dp179950 +g25273 +S'wood engraving' +p179951 +sg25267 +g27 +sg25275 +S'1958' +p179952 +sg25268 +S'Sloth' +p179953 +sg25270 +S'Leonard Baskin' +p179954 +sa(dp179955 +g25273 +S'wood engraving' +p179956 +sg25267 +g27 +sg25275 +S'1958' +p179957 +sg25268 +S'Wrath' +p179958 +sg25270 +S'Leonard Baskin' +p179959 +sa(dp179960 +g25273 +S'wood engraving' +p179961 +sg25267 +g27 +sg25275 +S'1958' +p179962 +sg25268 +S'Avarice' +p179963 +sg25270 +S'Leonard Baskin' +p179964 +sa(dp179965 +g25273 +S'wood engraving' +p179966 +sg25267 +g27 +sg25275 +S'1958' +p179967 +sg25268 +S'Gluttony' +p179968 +sg25270 +S'Leonard Baskin' +p179969 +sa(dp179970 +g25273 +S'wood engraving' +p179971 +sg25267 +g27 +sg25275 +S'1958' +p179972 +sg25268 +S'Lust' +p179973 +sg25270 +S'Leonard Baskin' +p179974 +sa(dp179975 +g25273 +S'wood engraving on calendered paper' +p179976 +sg25267 +g27 +sg25275 +S'1958' +p179977 +sg25268 +S'Crow' +p179978 +sg25270 +S'Leonard Baskin' +p179979 +sa(dp179980 +g25273 +S'wood engraving in black and red' +p179981 +sg25267 +g27 +sg25275 +S'1958' +p179982 +sg25268 +S"Illustration for Anthony Hecht's Struwwelpeter" +p179983 +sg25270 +S'Leonard Baskin' +p179984 +sa(dp179985 +g25273 +S'wood engraving in black' +p179986 +sg25267 +g27 +sg25275 +S'1958' +p179987 +sg25268 +S"Illustration for Anthony Hecht's Struwwelpeter" +p179988 +sg25270 +S'Leonard Baskin' +p179989 +sa(dp179990 +g25273 +S'wood engraving in red' +p179991 +sg25267 +g27 +sg25275 +S'1958' +p179992 +sg25268 +S"Illustration for Anthony Hecht's Struwwelpeter" +p179993 +sg25270 +S'Leonard Baskin' +p179994 +sa(dp179995 +g25273 +S'wood engraving in black' +p179996 +sg25267 +g27 +sg25275 +S'1958' +p179997 +sg25268 +S"Illustration for Anthony Hecht's Struwwelpeter" +p179998 +sg25270 +S'Leonard Baskin' +p179999 +sa(dp180000 +g25273 +S'wastercolor over graphite' +p180001 +sg25267 +g27 +sg25275 +S'unknown date\n' +p180002 +sg25268 +S'In the Abruzzi' +p180003 +sg25270 +S'Sir Muirhead Bone' +p180004 +sa(dp180005 +g25273 +S'wood engraving' +p180006 +sg25267 +g27 +sg25275 +S'1958' +p180007 +sg25268 +S'Silversword' +p180008 +sg25270 +S'Leonard Baskin' +p180009 +sa(dp180010 +g25273 +S'wood engraving' +p180011 +sg25267 +g27 +sg25275 +S'1958' +p180012 +sg25268 +S'Projected Ex-Libris for E.S.B.' +p180013 +sg25270 +S'Leonard Baskin' +p180014 +sa(dp180015 +g25273 +S'wood engraving' +p180016 +sg25267 +g27 +sg25275 +S'1958' +p180017 +sg25268 +S'Love Me, Love My Dog' +p180018 +sg25270 +S'Leonard Baskin' +p180019 +sa(dp180020 +g25273 +S'wood engraving' +p180021 +sg25267 +g27 +sg25275 +S'1959' +p180022 +sg25268 +S'Death Among the Thistles' +p180023 +sg25270 +S'Leonard Baskin' +p180024 +sa(dp180025 +g25273 +S'wood engraving in black and red' +p180026 +sg25267 +g27 +sg25275 +S'1959' +p180027 +sg25268 +S'Ex-Libris for C. & P. Seton' +p180028 +sg25270 +S'Leonard Baskin' +p180029 +sa(dp180030 +g25273 +S'wood engraving' +p180031 +sg25267 +g27 +sg25275 +S'1959' +p180032 +sg25268 +S'Ex-Libris for Louis W. Black' +p180033 +sg25270 +S'Leonard Baskin' +p180034 +sa(dp180035 +g25273 +S'wood engraving in black and red' +p180036 +sg25267 +g27 +sg25275 +S'1959' +p180037 +sg25268 +S'Mark for Smith Glass' +p180038 +sg25270 +S'Leonard Baskin' +p180039 +sa(dp180040 +g25273 +S'wood engraving' +p180041 +sg25267 +g27 +sg25275 +S'1959' +p180042 +sg25268 +S'Ex-Libris for F.C. Mitchell' +p180043 +sg25270 +S'Leonard Baskin' +p180044 +sa(dp180045 +g25273 +S'wood engraving' +p180046 +sg25267 +g27 +sg25275 +S'1959' +p180047 +sg25268 +S'Ex-Libris for Dorothy King' +p180048 +sg25270 +S'Leonard Baskin' +p180049 +sa(dp180050 +g25273 +S'wood engraving' +p180051 +sg25267 +g27 +sg25275 +S'1959' +p180052 +sg25268 +S'Ex-Libris for Alex Page' +p180053 +sg25270 +S'Leonard Baskin' +p180054 +sa(dp180055 +g25273 +S'watercolor over graphite and charcoal' +p180056 +sg25267 +g27 +sg25275 +S'unknown date\n' +p180057 +sg25268 +S'In Sicily' +p180058 +sg25270 +S'Sir Muirhead Bone' +p180059 +sa(dp180060 +g25273 +S'wood engraving' +p180061 +sg25267 +g27 +sg25275 +S'1959' +p180062 +sg25268 +S'Device for The Gehenna Press' +p180063 +sg25270 +S'Leonard Baskin' +p180064 +sa(dp180065 +g25273 +S'wood engraving in black and red' +p180066 +sg25267 +g27 +sg25275 +S'1959' +p180067 +sg25268 +S'Device for The Gehenna Press' +p180068 +sg25270 +S'Leonard Baskin' +p180069 +sa(dp180070 +g25273 +S'wood engraving' +p180071 +sg25267 +g27 +sg25275 +S'1959' +p180072 +sg25268 +S'Bartleby, the Scrivener' +p180073 +sg25270 +S'Leonard Baskin' +p180074 +sa(dp180075 +g25273 +S'wood engraving' +p180076 +sg25267 +g27 +sg25275 +S'1959' +p180077 +sg25268 +S'"The Owl that Calls Upon the Night Speaks the Unbeliever\'s Fright"' +p180078 +sg25270 +S'Leonard Baskin' +p180079 +sa(dp180080 +g25273 +S'wood engraving' +p180081 +sg25267 +g27 +sg25275 +S'1959' +p180082 +sg25268 +S'"The Strongest Poison Ever Known Came from Caesar\'s Laurel Crown"' +p180083 +sg25270 +S'Leonard Baskin' +p180084 +sa(dp180085 +g25273 +S'wood engraving' +p180086 +sg25267 +g27 +sg25275 +S'1959' +p180087 +sg25268 +S'William Blake' +p180088 +sg25270 +S'Leonard Baskin' +p180089 +sa(dp180090 +g25273 +S'wood engraving' +p180091 +sg25267 +g27 +sg25275 +S'1959' +p180092 +sg25268 +S'"Naught Can So Deform the Human Race Like the Armourer\'s Iron Embrace"' +p180093 +sg25270 +S'Leonard Baskin' +p180094 +sa(dp180095 +g25273 +S'wood engraving' +p180096 +sg25267 +g27 +sg25275 +S'1959' +p180097 +sg25268 +S'"The Beggar\'s Rags, Fluttering in Air Does to Rags the Heavens Tear"' +p180098 +sg25270 +S'Leonard Baskin' +p180099 +sa(dp180100 +g25273 +S'wood engraving' +p180101 +sg25267 +g27 +sg25275 +S'1959' +p180102 +sg25268 +S'"The Questioner, Who Sits so Sly Shall Never Know How to Reply"' +p180103 +sg25270 +S'Leonard Baskin' +p180104 +sa(dp180105 +g25273 +S'wood engraving in green' +p180106 +sg25267 +g27 +sg25275 +S'1959' +p180107 +sg25268 +S'"The Caterpillar on the Leaf Repeats to Thee Thy Mother\'s Grief"' +p180108 +sg25270 +S'Leonard Baskin' +p180109 +sa(dp180110 +g25273 +S'charcoal over graphite' +p180111 +sg25267 +g27 +sg25275 +S'unknown date\n' +p180112 +sg25268 +S'The Jersey Shore from Riverside Drive' +p180113 +sg25270 +S'Sir Muirhead Bone' +p180114 +sa(dp180115 +g25273 +S'wood engraving' +p180116 +sg25267 +g27 +sg25275 +S'1959' +p180117 +sg25268 +S'"Every Wolf\'s & Lion\'s Howl Raises from Hell a Human Soul"' +p180118 +sg25270 +S'Leonard Baskin' +p180119 +sa(dp180120 +g25273 +S'wood engraving in green, red and black' +p180121 +sg25267 +g27 +sg25275 +S'1959' +p180122 +sg25268 +S'Ex-Libris for E. & L. Baskin' +p180123 +sg25270 +S'Leonard Baskin' +p180124 +sa(dp180125 +g25273 +S'wood engraving in red and black' +p180126 +sg25267 +g27 +sg25275 +S'1959' +p180127 +sg25268 +S'Colophon' +p180128 +sg25270 +S'Leonard Baskin' +p180129 +sa(dp180130 +g25273 +S'etching on Rives BFK paper' +p180131 +sg25267 +g27 +sg25275 +S'1962' +p180132 +sg25268 +S'Barlach' +p180133 +sg25270 +S'Leonard Baskin' +p180134 +sa(dp180135 +g25273 +S'etching and roulette with aquatint in green on Rives BFK paper' +p180136 +sg25267 +g27 +sg25275 +S'1962' +p180137 +sg25268 +S'S. della Bella' +p180138 +sg25270 +S'Leonard Baskin' +p180139 +sa(dp180140 +g25273 +S'etching and aquatint in black on Rives BFK paper' +p180141 +sg25267 +g27 +sg25275 +S'1962' +p180142 +sg25268 +S'Blake' +p180143 +sg25270 +S'Leonard Baskin' +p180144 +sa(dp180145 +g25273 +S'etching on Rives BFK paper' +p180146 +sg25267 +g27 +sg25275 +S'1962' +p180147 +sg25268 +S'Bresdin' +p180148 +sg25270 +S'Leonard Baskin' +p180149 +sa(dp180150 +g25273 +S'etching on Rives BFK paper' +p180151 +sg25267 +g27 +sg25275 +S'1962' +p180152 +sg25268 +S'de Gheyn' +p180153 +sg25270 +S'Leonard Baskin' +p180154 +sa(dp180155 +g25273 +S'etching on Rives BFK paper' +p180156 +sg25267 +g27 +sg25275 +S'1962' +p180157 +sg25268 +S'Goltzius' +p180158 +sg25270 +S'Leonard Baskin' +p180159 +sa(dp180160 +g25273 +S'etching on Rives BFK paper' +p180161 +sg25267 +g27 +sg25275 +S'1962' +p180162 +sg25268 +S'Goya' +p180163 +sg25270 +S'Leonard Baskin' +p180164 +sa(dp180165 +g25268 +S'The Adoration of the Shepherds' +p180166 +sg25270 +S'Francesco di Simone Ferrucci' +p180167 +sg25273 +S'terracotta' +p180168 +sg25275 +S'c. 1475/1485' +p180169 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a000666a.jpg' +p180170 +sg25267 +g27 +sa(dp180171 +g25273 +S'pen and ink with blue and gray wash' +p180172 +sg25267 +g27 +sg25275 +S'1912' +p180173 +sg25268 +S'In the Appenines near Bosenlinga' +p180174 +sg25270 +S'Sir Muirhead Bone' +p180175 +sa(dp180176 +g25273 +S'etching on Rives BFK paper' +p180177 +sg25267 +g27 +sg25275 +S'1962' +p180178 +sg25268 +S'Gruenewald' +p180179 +sg25270 +S'Leonard Baskin' +p180180 +sa(dp180181 +g25273 +S'etching (and aquatint?) in black and red on Rives BFK paper' +p180182 +sg25267 +g27 +sg25275 +S'1962' +p180183 +sg25268 +S'Mantegna' +p180184 +sg25270 +S'Leonard Baskin' +p180185 +sa(dp180186 +g25273 +S'etching with aquatint in green on Rives BFK paper' +p180187 +sg25267 +g27 +sg25275 +S'1962' +p180188 +sg25268 +S'Seghers' +p180189 +sg25270 +S'Leonard Baskin' +p180190 +sa(dp180191 +g25273 +S'1 vol: ill: 10 color lithographs plus 1 in black and white' +p180192 +sg25267 +g27 +sg25275 +S'published 1825' +p180193 +sg25268 +S'The North Bank of the Thames' +p180194 +sg25270 +S'Thomas Mann Baynes' +p180195 +sa(dp180196 +g25268 +S'Saint Amelberga' +p180197 +sg25270 +S'Leonhard Beck' +p180198 +sg25273 +S'woodcut' +p180199 +sg25275 +S'1516/1518' +p180200 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000aea6.jpg' +p180201 +sg25267 +g27 +sa(dp180202 +g25268 +S'Saint Bilhelmus' +p180203 +sg25270 +S'Leonhard Beck' +p180204 +sg25273 +S'woodcut' +p180205 +sg25275 +S'1516/1518' +p180206 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0ad.jpg' +p180207 +sg25267 +g27 +sa(dp180208 +g25268 +S'Saint Brigitta' +p180209 +sg25270 +S'Leonhard Beck' +p180210 +sg25273 +S'woodcut' +p180211 +sg25275 +S'1516/1518' +p180212 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000aea7.jpg' +p180213 +sg25267 +g27 +sa(dp180214 +g25268 +S'Saint Colomannus' +p180215 +sg25270 +S'Leonhard Beck' +p180216 +sg25273 +S'woodcut' +p180217 +sg25275 +S'1516/1518' +p180218 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0b5.jpg' +p180219 +sg25267 +g27 +sa(dp180220 +g25268 +S'Saint Dentalinus' +p180221 +sg25270 +S'Leonhard Beck' +p180222 +sg25273 +S'woodcut' +p180223 +sg25275 +S'1516/1518' +p180224 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0b6.jpg' +p180225 +sg25267 +g27 +sa(dp180226 +g25268 +S'Saint Emericus' +p180227 +sg25270 +S'Leonhard Beck' +p180228 +sg25273 +S'woodcut' +p180229 +sg25275 +S'1516/1518' +p180230 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0ae.jpg' +p180231 +sg25267 +g27 +sa(dp180232 +g25273 +S'watercolor and graphite' +p180233 +sg25267 +g27 +sg25275 +S'unknown date\n' +p180234 +sg25268 +S'Near Nice' +p180235 +sg25270 +S'Sir Muirhead Bone' +p180236 +sa(dp180237 +g25268 +S'Saint Goery' +p180238 +sg25270 +S'Leonhard Beck' +p180239 +sg25273 +S'woodcut' +p180240 +sg25275 +S'1516/1518' +p180241 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0b7.jpg' +p180242 +sg25267 +g27 +sa(dp180243 +g25268 +S'Saint Gudula' +p180244 +sg25270 +S'Leonhard Beck' +p180245 +sg25273 +S'woodcut' +p180246 +sg25275 +S'1516/1518' +p180247 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0b8.jpg' +p180248 +sg25267 +g27 +sa(dp180249 +g25268 +S'Saint Jodocus' +p180250 +sg25270 +S'Leonhard Beck' +p180251 +sg25273 +S'woodcut' +p180252 +sg25275 +S'1516/1518' +p180253 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0af.jpg' +p180254 +sg25267 +g27 +sa(dp180255 +g25268 +S'Saint Leo (Pope Leo IX)' +p180256 +sg25270 +S'Leonhard Beck' +p180257 +sg25273 +S'woodcut' +p180258 +sg25275 +S'1516/1518' +p180259 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0b0.jpg' +p180260 +sg25267 +g27 +sa(dp180261 +g25268 +S'Saint Ramaricus' +p180262 +sg25270 +S'Leonhard Beck' +p180263 +sg25273 +S'woodcut' +p180264 +sg25275 +S'1516/1518' +p180265 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0b9.jpg' +p180266 +sg25267 +g27 +sa(dp180267 +g25268 +S'Saint Rudolfus' +p180268 +sg25270 +S'Leonhard Beck' +p180269 +sg25273 +S'woodcut' +p180270 +sg25275 +S'1516/1518' +p180271 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0b1.jpg' +p180272 +sg25267 +g27 +sa(dp180273 +g25268 +S'Saint Rupertus' +p180274 +sg25270 +S'Leonhard Beck' +p180275 +sg25273 +S'woodcut' +p180276 +sg25275 +S'1516/1518' +p180277 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0b2.jpg' +p180278 +sg25267 +g27 +sa(dp180279 +g25268 +S'Saint Sigismundus' +p180280 +sg25270 +S'Leonhard Beck' +p180281 +sg25273 +S'woodcut' +p180282 +sg25275 +S'1516/1518' +p180283 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0b3.jpg' +p180284 +sg25267 +g27 +sa(dp180285 +g25268 +S'Saint Verona' +p180286 +sg25270 +S'Leonhard Beck' +p180287 +sg25273 +S'woodcut' +p180288 +sg25275 +S'1516/1518' +p180289 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac19.jpg' +p180290 +sg25267 +g27 +sa(dp180291 +g25268 +S'Saint Walpurgis' +p180292 +sg25270 +S'Leonhard Beck' +p180293 +sg25273 +S'woodcut' +p180294 +sg25275 +S'1516/1518' +p180295 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0ba.jpg' +p180296 +sg25267 +g27 +sa(dp180297 +g25273 +S'graphite and watercolor' +p180298 +sg25267 +g27 +sg25275 +S'unknown date\n' +p180299 +sg25268 +S'Near Messina' +p180300 +sg25270 +S'Sir Muirhead Bone' +p180301 +sa(dp180302 +g25268 +S'Saint Willibaldus' +p180303 +sg25270 +S'Leonhard Beck' +p180304 +sg25273 +S'woodcut' +p180305 +sg25275 +S'1516/1518' +p180306 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0b4.jpg' +p180307 +sg25267 +g27 +sa(dp180308 +g25273 +S'woodcut on heavy Japan paper' +p180309 +sg25267 +g27 +sg25275 +S'1923' +p180310 +sg25268 +S'Group Portrait, Eden Bar (Gruppenbildnis Edenbar)' +p180311 +sg25270 +S'Max Beckmann' +p180312 +sa(dp180313 +g25268 +S'The Banquet of the Piacevoli' +p180314 +sg25270 +S'Stefano Della Bella' +p180315 +sg25273 +S'etching' +p180316 +sg25275 +S'1627' +p180317 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9b4.jpg' +p180318 +sg25267 +g27 +sa(dp180319 +g25268 +S'Title Page for "Entry into Rome of His Excellency the Polish Ambassador"' +p180320 +sg25270 +S'Stefano Della Bella' +p180321 +sg25273 +S'etching' +p180322 +sg25275 +S'1633' +p180323 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9b5.jpg' +p180324 +sg25267 +g27 +sa(dp180325 +g25268 +S'Colossal Statue of the Apennines' +p180326 +sg25270 +S'Stefano Della Bella' +p180327 +sg25273 +S'etching' +p180328 +sg25275 +S'probably 1653' +p180329 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9cd.jpg' +p180330 +sg25267 +g27 +sa(dp180331 +g25268 +S'Fighting Beggars' +p180332 +sg25270 +S'Jacques de Bellange' +p180333 +sg25273 +S', unknown date' +p180334 +sg25275 +S'\n' +p180335 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a4a.jpg' +p180336 +sg25267 +g27 +sa(dp180337 +g25268 +S'Standing Figure [recto]' +p180338 +sg25270 +S'Artist Information (' +p180339 +sg25273 +S'French, c. 1575 - died 1616' +p180340 +sg25275 +S'(artist after)' +p180341 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a000725f.jpg' +p180342 +sg25267 +g27 +sa(dp180343 +g25268 +S'Figures on Horseback [verso]' +p180344 +sg25270 +S'Artist Information (' +p180345 +sg25273 +S'French, c. 1575 - died 1616' +p180346 +sg25275 +S'(artist after)' +p180347 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a000722e.jpg' +p180348 +sg25267 +g27 +sa(dp180349 +g25273 +S'pen and black ink with brush and red ink on wove paper' +p180350 +sg25267 +g27 +sg25275 +S'unknown date\n' +p180351 +sg25268 +S'London-Rain, Sunday' +p180352 +sg25270 +S'Alfred Bendiner' +p180353 +sa(dp180354 +g25273 +S'watercolor and graphite' +p180355 +sg25267 +g27 +sg25275 +S'unknown date\n' +p180356 +sg25268 +S'Market Day, Oviedo' +p180357 +sg25270 +S'Sir Muirhead Bone' +p180358 +sa(dp180359 +g25273 +S'lithograph' +p180360 +sg25267 +g27 +sg25275 +S'1963' +p180361 +sg25268 +S'Sacre Coeur' +p180362 +sg25270 +S'Alfred Bendiner' +p180363 +sa(dp180364 +g25273 +S'lithograph in black' +p180365 +sg25267 +g27 +sg25275 +S'1963' +p180366 +sg25268 +S"St. Mark's, Venice" +p180367 +sg25270 +S'Alfred Bendiner' +p180368 +sa(dp180369 +g25273 +S'lithograph in blue' +p180370 +sg25267 +g27 +sg25275 +S'1963' +p180371 +sg25268 +S"St. Mark's, Venice" +p180372 +sg25270 +S'Alfred Bendiner' +p180373 +sa(dp180374 +g25273 +S'lithograph in red' +p180375 +sg25267 +g27 +sg25275 +S'1963' +p180376 +sg25268 +S"St. Mark's, Venice" +p180377 +sg25270 +S'Alfred Bendiner' +p180378 +sa(dp180379 +g25273 +S'lithograph in yellow' +p180380 +sg25267 +g27 +sg25275 +S'1963' +p180381 +sg25268 +S"St. Mark's, Venice" +p180382 +sg25270 +S'Alfred Bendiner' +p180383 +sa(dp180384 +g25273 +S'lithograph in blue and red' +p180385 +sg25267 +g27 +sg25275 +S'1963' +p180386 +sg25268 +S"St. Mark's, Venice" +p180387 +sg25270 +S'Alfred Bendiner' +p180388 +sa(dp180389 +g25273 +S'lithograph in yellow and red' +p180390 +sg25267 +g27 +sg25275 +S'1963' +p180391 +sg25268 +S"St. Mark's, Venice" +p180392 +sg25270 +S'Alfred Bendiner' +p180393 +sa(dp180394 +g25273 +S'lithograph' +p180395 +sg25267 +g27 +sg25275 +S'1954' +p180396 +sg25268 +S'The View from the Quai de Renversee' +p180397 +sg25270 +S'Alfred Bendiner' +p180398 +sa(dp180399 +g25273 +S'color etching' +p180400 +sg25267 +g27 +sg25275 +S'1961' +p180401 +sg25268 +S'Checkmate' +p180402 +sg25270 +S'Vera Berdich' +p180403 +sa(dp180404 +g25273 +S'color etching' +p180405 +sg25267 +g27 +sg25275 +S'1962' +p180406 +sg25268 +S'The Doors were Closed' +p180407 +sg25270 +S'Vera Berdich' +p180408 +sa(dp180409 +g25273 +S'graphite and watercolor' +p180410 +sg25267 +g27 +sg25275 +S'unknown date\n' +p180411 +sg25268 +S'Appenines' +p180412 +sg25270 +S'Sir Muirhead Bone' +p180413 +sa(dp180414 +g25273 +S'color etching' +p180415 +sg25267 +g27 +sg25275 +S'1962' +p180416 +sg25268 +S'The Doors were Closed' +p180417 +sg25270 +S'Vera Berdich' +p180418 +sa(dp180419 +g25273 +S'color etching' +p180420 +sg25267 +g27 +sg25275 +S'1957' +p180421 +sg25268 +S'Quest of the Enigma' +p180422 +sg25270 +S'Vera Berdich' +p180423 +sa(dp180424 +g25268 +S'In the Woods' +p180425 +sg25270 +S'Emile Bernard' +p180426 +sg25273 +S'hand-colored lithograph (zinc)' +p180427 +sg25275 +S'1890' +p180428 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b9c.jpg' +p180429 +sg25267 +g27 +sa(dp180430 +g25273 +S'graphite and brush and black ink, heightened with white' +p180431 +sg25267 +g27 +sg25275 +S'1955' +p180432 +sg25268 +S'Be Sure to Give Mine Special Attention' +p180433 +sg25270 +S'Herbert Lawrence Block' +p180434 +sa(dp180435 +g25273 +S'graphite and brush and black ink, heightened with white' +p180436 +sg25267 +g27 +sg25275 +S'1955' +p180437 +sg25268 +S"A Cloud No Bigger Than a Man's Future" +p180438 +sg25270 +S'Herbert Lawrence Block' +p180439 +sa(dp180440 +g25273 +S'graphite and brush and black ink, heightened with white' +p180441 +sg25267 +g27 +sg25275 +S'1958' +p180442 +sg25268 +S'Convoy' +p180443 +sg25270 +S'Herbert Lawrence Block' +p180444 +sa(dp180445 +g25273 +S'graphite and brush and black ink, heightened with white' +p180446 +sg25267 +g27 +sg25275 +S'1956' +p180447 +sg25268 +S"Don't Be Afraid - I Can Always Pull You Back" +p180448 +sg25270 +S'Herbert Lawrence Block' +p180449 +sa(dp180450 +g25273 +S'graphite and brush and black ink, heightened with white' +p180451 +sg25267 +g27 +sg25275 +S'1959' +p180452 +sg25268 +S'Eisenhower and Krushchev' +p180453 +sg25270 +S'Herbert Lawrence Block' +p180454 +sa(dp180455 +g25273 +S'graphite and brush and black ink, heightened with white' +p180456 +sg25267 +g27 +sg25275 +S'1950' +p180457 +sg25268 +S'Five Hundred Million of Them - All Expendable' +p180458 +sg25270 +S'Herbert Lawrence Block' +p180459 +sa(dp180460 +g25273 +S'graphite and brush and black ink, heightened with white' +p180461 +sg25267 +g27 +sg25275 +S'1947' +p180462 +sg25268 +S'Go Back! Wrong Boat!' +p180463 +sg25270 +S'Herbert Lawrence Block' +p180464 +sa(dp180465 +g25268 +S'The Tribute Money' +p180466 +sg25270 +S'Lucas van Leyden' +p180467 +sg25273 +S'woodcut' +p180468 +sg25275 +S'c. 1523' +p180469 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce9d.jpg' +p180470 +sg25267 +g27 +sa(dp180471 +g25273 +S'graphite and brush and black ink, heightened with white' +p180472 +sg25267 +g27 +sg25275 +S'1957' +p180473 +sg25268 +S'I Got a Good Mind To Cut You Adrift' +p180474 +sg25270 +S'Herbert Lawrence Block' +p180475 +sa(dp180476 +g25273 +S'graphite and brush and black ink, heightened with white' +p180477 +sg25267 +g27 +sg25275 +S'1957' +p180478 +sg25268 +S'Krushchev' +p180479 +sg25270 +S'Herbert Lawrence Block' +p180480 +sa(dp180481 +g25273 +S'graphite and brush and black ink, heightened with white' +p180482 +sg25267 +g27 +sg25275 +S'1957' +p180483 +sg25268 +S"Look Lady - You Don't See Me Worrying" +p180484 +sg25270 +S'Herbert Lawrence Block' +p180485 +sa(dp180486 +g25273 +S'graphite and brush and black ink, heightened with white' +p180487 +sg25267 +g27 +sg25275 +S'1960' +p180488 +sg25268 +S'Oh, There Might Be a Slight Gap in Some Areas' +p180489 +sg25270 +S'Herbert Lawrence Block' +p180490 +sa(dp180491 +g25273 +S'graphite and brush and black ink, heightened with white' +p180492 +sg25267 +g27 +sg25275 +S'1953' +p180493 +sg25268 +S'Richest Country in the World' +p180494 +sg25270 +S'Herbert Lawrence Block' +p180495 +sa(dp180496 +g25273 +S'graphite and brush and black ink, heightened with white' +p180497 +sg25267 +g27 +sg25275 +S'1953' +p180498 +sg25268 +S"Sometimes I Wonder What's in Those Darn Things" +p180499 +sg25270 +S'Herbert Lawrence Block' +p180500 +sa(dp180501 +g25273 +S'graphite and brush and black ink, heightened with white' +p180502 +sg25267 +g27 +sg25275 +S'1960' +p180503 +sg25268 +S'Tell Me, as One Soldier to Another, How Does it Feel to Run a Government?' +p180504 +sg25270 +S'Herbert Lawrence Block' +p180505 +sa(dp180506 +g25273 +S'graphite and brush and black ink heightened with white' +p180507 +sg25267 +g27 +sg25275 +S'1956' +p180508 +sg25268 +S'Tsk, Tsk - Somebody Should Do Something About That' +p180509 +sg25270 +S'Herbert Lawrence Block' +p180510 +sa(dp180511 +g25273 +S'graphite and brush and black ink, heightened with white' +p180512 +sg25267 +g27 +sg25275 +S'1953' +p180513 +sg25268 +S'U.N. (The United Nations)' +p180514 +sg25270 +S'Herbert Lawrence Block' +p180515 +sa(dp180516 +g25273 +S'graphite and brush and black ink, heightened with white' +p180517 +sg25267 +g27 +sg25275 +S'1957' +p180518 +sg25268 +S"What is 'Modern', Anyhow?" +p180519 +sg25270 +S'Herbert Lawrence Block' +p180520 +sa(dp180521 +g25273 +S'graphite and watercolor' +p180522 +sg25267 +g27 +sg25275 +S'unknown date\n' +p180523 +sg25268 +S'Archway, Chioggia' +p180524 +sg25270 +S'Sir Muirhead Bone' +p180525 +sa(dp180526 +g25273 +S'graphite and brush and black ink, heightened with white' +p180527 +sg25267 +g27 +sg25275 +S'1947' +p180528 +sg25268 +S"You're With the State Department, I Presume" +p180529 +sg25270 +S'Herbert Lawrence Block' +p180530 +sa(dp180531 +g25273 +S'color etching' +p180532 +sg25267 +g27 +sg25275 +S'1960' +p180533 +sg25268 +S'Drought' +p180534 +sg25270 +S'Lars Bo' +p180535 +sa(dp180536 +g25268 +S'Title Page' +p180537 +sg25270 +S'Artist Information (' +p180538 +sg25273 +S'(artist after)' +p180539 +sg25275 +S'\n' +p180540 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd42.jpg' +p180541 +sg25267 +g27 +sa(dp180542 +g25268 +S'The Nativity and the Flight into Egypt (Aquarius)' +p180543 +sg25270 +S'Artist Information (' +p180544 +sg25273 +S'(artist after)' +p180545 +sg25275 +S'\n' +p180546 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd43.jpg' +p180547 +sg25267 +g27 +sa(dp180548 +g25268 +S'Christ Calling Peter and Andrew (Pisces)' +p180549 +sg25270 +S'Artist Information (' +p180550 +sg25273 +S'(artist after)' +p180551 +sg25275 +S'\n' +p180552 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd44.jpg' +p180553 +sg25267 +g27 +sa(dp180554 +g25268 +S'"The Seed is the word of God" (Aries)' +p180555 +sg25270 +S'Artist Information (' +p180556 +sg25273 +S'(artist after)' +p180557 +sg25275 +S'\n' +p180558 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd45.jpg' +p180559 +sg25267 +g27 +sa(dp180560 +g25268 +S'The Parable of the Wicked Husbandmen (Taurus)' +p180561 +sg25270 +S'Artist Information (' +p180562 +sg25273 +S'(artist after)' +p180563 +sg25275 +S'\n' +p180564 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd46.jpg' +p180565 +sg25267 +g27 +sa(dp180566 +g25268 +S'Christ and the Woman of Samaria (Gemini)' +p180567 +sg25270 +S'Artist Information (' +p180568 +sg25273 +S'(artist after)' +p180569 +sg25275 +S'\n' +p180570 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd47.jpg' +p180571 +sg25267 +g27 +sa(dp180572 +g25268 +S'"He that layeth up treasure for himself..." (Cancer)' +p180573 +sg25270 +S'Artist Information (' +p180574 +sg25273 +S'(artist after)' +p180575 +sg25275 +S'\n' +p180576 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd48.jpg' +p180577 +sg25267 +g27 +sa(dp180578 +g25268 +S'"... I am the door of the sheep" (Leo)' +p180579 +sg25270 +S'Artist Information (' +p180580 +sg25273 +S'(artist after)' +p180581 +sg25275 +S'\n' +p180582 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a0006088.jpg' +p180583 +sg25267 +g27 +sa(dp180584 +g25273 +S'watercolor and graphite' +p180585 +sg25267 +g27 +sg25275 +S'unknown date\n' +p180586 +sg25268 +S'Arbetello in the Maremma' +p180587 +sg25270 +S'Sir Muirhead Bone' +p180588 +sa(dp180589 +g25268 +S'"A group of Pharisees swelling with false pride cursed the disciples" (Virgo)' +p180590 +sg25270 +S'Artist Information (' +p180591 +sg25273 +S'(artist after)' +p180592 +sg25275 +S'\n' +p180593 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd49.jpg' +p180594 +sg25267 +g27 +sa(dp180595 +g25268 +S'The Parable of the Fig Tree (Libra)' +p180596 +sg25270 +S'Artist Information (' +p180597 +sg25273 +S'(artist after)' +p180598 +sg25275 +S'\n' +p180599 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd4a.jpg' +p180600 +sg25267 +g27 +sa(dp180601 +g25268 +S'"... The Kingdom of God shall be taken from you ..." (Scorpio)' +p180602 +sg25270 +S'Artist Information (' +p180603 +sg25273 +S'(artist after)' +p180604 +sg25275 +S'\n' +p180605 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a0006087.jpg' +p180606 +sg25267 +g27 +sa(dp180607 +g25268 +S'"For many are called, but few are chosen" (Sagittarius)' +p180608 +sg25270 +S'Artist Information (' +p180609 +sg25273 +S'(artist after)' +p180610 +sg25275 +S'\n' +p180611 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd4b.jpg' +p180612 +sg25267 +g27 +sa(dp180613 +g25268 +S'The Virgin and Joseph Refused at the Inn (Capricornus)' +p180614 +sg25270 +S'Artist Information (' +p180615 +sg25273 +S'(artist after)' +p180616 +sg25275 +S'\n' +p180617 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd4c.jpg' +p180618 +sg25267 +g27 +sa(dp180619 +g25268 +S'Landscape with a Milkmaid' +p180620 +sg25270 +S'Artist Information (' +p180621 +sg25273 +S'(artist after)' +p180622 +sg25275 +S'\n' +p180623 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d446.jpg' +p180624 +sg25267 +g27 +sa(dp180625 +g25268 +S'Saint Jerome in the Wilderness' +p180626 +sg25270 +S'Artist Information (' +p180627 +sg25273 +S'(artist after)' +p180628 +sg25275 +S'\n' +p180629 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8a7.jpg' +p180630 +sg25267 +g27 +sa(dp180631 +g25268 +S'The Birth of Saint John the Baptist' +p180632 +sg25270 +S'Giulio Bonasone' +p180633 +sg25273 +S'engraving' +p180634 +sg25275 +S'unknown date\n' +p180635 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca9f.jpg' +p180636 +sg25267 +g27 +sa(dp180637 +g25268 +S'The Triumph of Love' +p180638 +sg25270 +S'Giulio Bonasone' +p180639 +sg25273 +S'engraving' +p180640 +sg25275 +S'1545' +p180641 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8a1.jpg' +p180642 +sg25267 +g27 +sa(dp180643 +g25273 +g27 +sg25267 +g27 +sg25275 +S'1962' +p180644 +sg25268 +S'Mirage' +p180645 +sg25270 +S'Paolo Boni' +p180646 +sa(dp180647 +g25273 +S'watercolor and graphite' +p180648 +sg25267 +g27 +sg25275 +S'unknown date\n' +p180649 +sg25268 +S'Boboli Gardens, Florence' +p180650 +sg25270 +S'Sir Muirhead Bone' +p180651 +sa(dp180652 +g25273 +g27 +sg25267 +g27 +sg25275 +S'unknown date\n' +p180653 +sg25268 +S'Contrariete' +p180654 +sg25270 +S'Paolo Boni' +p180655 +sa(dp180656 +g25273 +S'portfolio of 11 relief prints including title page, colophon and portfolio cover' +p180657 +sg25267 +g27 +sg25275 +S'1963' +p180658 +sg25268 +S'Voyage Autour de Moi-meme' +p180659 +sg25270 +S'Paolo Boni' +p180660 +sa(dp180661 +g25273 +S'lithograph on handmade paper' +p180662 +sg25267 +g27 +sg25275 +S'1962' +p180663 +sg25268 +S'First Stone' +p180664 +sg25270 +S'Lee Bontecou' +p180665 +sa(dp180666 +g25268 +S'The Large Rustic Wedding Feast' +p180667 +sg25270 +S'Peter van der Borcht' +p180668 +sg25273 +S'etching and engraving?' +p180669 +sg25275 +S'1560' +p180670 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d050.jpg' +p180671 +sg25267 +g27 +sa(dp180672 +g25273 +S'color drypoint' +p180673 +sg25267 +g27 +sg25275 +S'1945' +p180674 +sg25268 +S'Mahopac Landscape' +p180675 +sg25270 +S'Mortimer Borne' +p180676 +sa(dp180677 +g25268 +S'The Ship of Depravity (Die Blau Schuyte)' +p180678 +sg25270 +S'Artist Information (' +p180679 +sg25273 +S'(artist after)' +p180680 +sg25275 +S'\n' +p180681 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfef.jpg' +p180682 +sg25267 +g27 +sa(dp180683 +g25268 +S'The Temptation of Saint Anthony' +p180684 +sg25270 +S'Artist Information (' +p180685 +sg25273 +S'Flemish, c. 1510 - 1570' +p180686 +sg25275 +S'(publisher)' +p180687 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d056.jpg' +p180688 +sg25267 +g27 +sa(dp180689 +g25273 +S'embossed etching and aquatint' +p180690 +sg25267 +g27 +sg25275 +S'1962' +p180691 +sg25268 +S'Bird of Passage' +p180692 +sg25270 +S'Georges Braque' +p180693 +sa(dp180694 +g25273 +S'etching on Hollande Van Gelder paper' +p180695 +sg25267 +g27 +sg25275 +S'1932' +p180696 +sg25268 +S'Woman and Chariot' +p180697 +sg25270 +S'Georges Braque' +p180698 +sa(dp180699 +g25273 +S'etching on Hollande Van Gelder paper' +p180700 +sg25267 +g27 +sg25275 +S'1932' +p180701 +sg25268 +S'Woman and Chariot' +p180702 +sg25270 +S'Georges Braque' +p180703 +sa(dp180704 +g25273 +S'graphite' +p180705 +sg25267 +g27 +sg25275 +S'unknown date\n' +p180706 +sg25268 +S'Convent in Villafranca del Bierzo' +p180707 +sg25270 +S'Sir Muirhead Bone' +p180708 +sa(dp180709 +g25273 +S'etching on Arches paper' +p180710 +sg25267 +g27 +sg25275 +S'1911' +p180711 +sg25268 +S'Job' +p180712 +sg25270 +S'Georges Braque' +p180713 +sa(dp180714 +g25273 +S'lithograph in black on japan imperial paper' +p180715 +sg25267 +g27 +sg25275 +S'published 1960' +p180716 +sg25268 +S'From "La nuit de la faim"' +p180717 +sg25270 +S'Georges Braque' +p180718 +sa(dp180719 +g25273 +S'French' +p180720 +sg25267 +g27 +sg25275 +S'(editor)' +p180721 +sg25268 +S'La nuit la faim' +p180722 +sg25270 +S'Artist Information (' +p180723 +sa(dp180724 +g25273 +S'color lithograph on japan imperial paper' +p180725 +sg25267 +g27 +sg25275 +S'published 1960' +p180726 +sg25268 +S'From "La nuit la faim"' +p180727 +sg25270 +S'Georges Braque' +p180728 +sa(dp180729 +g25273 +S'color lithograph on japan imperial paper' +p180730 +sg25267 +g27 +sg25275 +S'published 1960' +p180731 +sg25268 +S'From "La nuit la faim"' +p180732 +sg25270 +S'Georges Braque' +p180733 +sa(dp180734 +g25273 +S'color lithograph on japan kosu paper' +p180735 +sg25267 +g27 +sg25275 +S'published 1961' +p180736 +sg25268 +S'Two White Birds on a Gray Ground' +p180737 +sg25270 +S'Georges Braque' +p180738 +sa(dp180739 +g25268 +S'Armed Four-Master Sailing towards a Port' +p180740 +sg25270 +S'Artist Information (' +p180741 +sg25273 +S'(artist after)' +p180742 +sg25275 +S'\n' +p180743 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cee2.jpg' +p180744 +sg25267 +g27 +sa(dp180745 +g25268 +S'Armed Four-Master Putting Out to Sea' +p180746 +sg25270 +S'Artist Information (' +p180747 +sg25273 +S'(artist after)' +p180748 +sg25275 +S'\n' +p180749 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cee6.jpg' +p180750 +sg25267 +g27 +sa(dp180751 +g25268 +S'A Fleet of Galleys Escorted by a Caravel' +p180752 +sg25270 +S'Artist Information (' +p180753 +sg25273 +S'(artist after)' +p180754 +sg25275 +S'\n' +p180755 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ceed.jpg' +p180756 +sg25267 +g27 +sa(dp180757 +g25268 +S'Three Caravels in a Rising Squall with Adrion on a Dolphin' +p180758 +sg25270 +S'Artist Information (' +p180759 +sg25273 +S'(artist after)' +p180760 +sg25275 +S'\n' +p180761 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ceeb.jpg' +p180762 +sg25267 +g27 +sa(dp180763 +g25273 +S'graphite' +p180764 +sg25267 +g27 +sg25275 +S'1912' +p180765 +sg25268 +S'Crowd on the Piazza del Popolo, Rome' +p180766 +sg25270 +S'Sir Muirhead Bone' +p180767 +sa(dp180768 +g25268 +S'The Drunkard Pushed into the Pig Sty' +p180769 +sg25270 +S'Artist Information (' +p180770 +sg25273 +S'Flemish, c. 1525/1530 - 1569' +p180771 +sg25275 +S'(artist after)' +p180772 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf11.jpg' +p180773 +sg25267 +g27 +sa(dp180774 +g25268 +S'Everyman' +p180775 +sg25270 +S'Artist Information (' +p180776 +sg25273 +S'(artist after)' +p180777 +sg25275 +S'\n' +p180778 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00065/a000659d.jpg' +p180779 +sg25267 +g27 +sa(dp180780 +g25268 +S'The Festival of Saint George' +p180781 +sg25270 +S'Artist Information (' +p180782 +sg25273 +S'(artist)' +p180783 +sg25275 +S'\n' +p180784 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d05f.jpg' +p180785 +sg25267 +g27 +sa(dp180786 +g25268 +S'Heads of a Peasant Man and Woman' +p180787 +sg25270 +S'Artist Information (' +p180788 +sg25273 +S'(artist after)' +p180789 +sg25275 +S'\n' +p180790 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd06.jpg' +p180791 +sg25267 +g27 +sa(dp180792 +g25268 +S'River Landscape with Mercury and Psyche' +p180793 +sg25270 +S'Artist Information (' +p180794 +sg25273 +S'(artist after)' +p180795 +sg25275 +S'\n' +p180796 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cedf.jpg' +p180797 +sg25267 +g27 +sa(dp180798 +g25268 +S'The Wedding of Mopsus and Nisa' +p180799 +sg25270 +S'Artist Information (' +p180800 +sg25273 +S'(artist after)' +p180801 +sg25275 +S'\n' +p180802 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf16.jpg' +p180803 +sg25267 +g27 +sa(dp180804 +g25268 +S'The Thin Kitchen' +p180805 +sg25270 +S'Artist Information (' +p180806 +sg25273 +S'(artist after)' +p180807 +sg25275 +S'\n' +p180808 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf0c.jpg' +p180809 +sg25267 +g27 +sa(dp180810 +g25268 +S'Saint James and the Magician Hermogenes' +p180811 +sg25270 +S'Artist Information (' +p180812 +sg25273 +S'(artist after)' +p180813 +sg25275 +S'\n' +p180814 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ceef.jpg' +p180815 +sg25267 +g27 +sa(dp180816 +g25268 +S'Summer' +p180817 +sg25270 +S'Artist Information (' +p180818 +sg25273 +S'(artist after)' +p180819 +sg25275 +S'\n' +p180820 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf10.jpg' +p180821 +sg25267 +g27 +sa(dp180822 +g25268 +S'Village Fair at Hoboken' +p180823 +sg25270 +S'Artist Information (' +p180824 +sg25273 +S'(artist after)' +p180825 +sg25275 +S'\n' +p180826 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf19.jpg' +p180827 +sg25267 +g27 +sa(dp180828 +g25273 +S'charcoal and graphite' +p180829 +sg25267 +g27 +sg25275 +S'unknown date\n' +p180830 +sg25268 +S'A Cafe at Milan' +p180831 +sg25270 +S'Sir Muirhead Bone' +p180832 +sa(dp180833 +g25268 +S'The Big Fish Eat the Little Fish' +p180834 +sg25270 +S'Artist Information (' +p180835 +sg25273 +S'(artist after)' +p180836 +sg25275 +S'\n' +p180837 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d060.jpg' +p180838 +sg25267 +g27 +sa(dp180839 +g25268 +S'Everyman' +p180840 +sg25270 +S'Artist Information (' +p180841 +sg25273 +S'(artist after)' +p180842 +sg25275 +S'\n' +p180843 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd08.jpg' +p180844 +sg25267 +g27 +sa(dp180845 +g25268 +S'The Man with the Moneybag and His Flatterers' +p180846 +sg25270 +S'Artist Information (' +p180847 +sg25273 +S'(artist after)' +p180848 +sg25275 +S'\n' +p180849 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd09.jpg' +p180850 +sg25267 +g27 +sa(dp180851 +g25268 +S'Alpine Landscape' +p180852 +sg25270 +S'Artist Information (' +p180853 +sg25273 +S'(artist)' +p180854 +sg25275 +S'\n' +p180855 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ced9.jpg' +p180856 +sg25267 +g27 +sa(dp180857 +g25268 +S'Plaustrum Belgicum (The Belgian Wagon)' +p180858 +sg25270 +S'Artist Information (' +p180859 +sg25273 +S'(artist)' +p180860 +sg25275 +S'\n' +p180861 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00053/a00053c9.jpg' +p180862 +sg25267 +g27 +sa(dp180863 +g25268 +S'Insidiosus Auceps (The Crafty Bird-Catcher)' +p180864 +sg25270 +S'Artist Information (' +p180865 +sg25273 +S'(artist)' +p180866 +sg25275 +S'\n' +p180867 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d05d.jpg' +p180868 +sg25267 +g27 +sa(dp180869 +g25268 +S'Large Alpine Landscape' +p180870 +sg25270 +S'Artist Information (' +p180871 +sg25273 +S'(artist)' +p180872 +sg25275 +S'\n' +p180873 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d062.jpg' +p180874 +sg25267 +g27 +sa(dp180875 +g25268 +S'Solicitudo Rustica (Rustic Concerns)' +p180876 +sg25270 +S'Artist Information (' +p180877 +sg25273 +S'(artist)' +p180878 +sg25275 +S'\n' +p180879 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cedd.jpg' +p180880 +sg25267 +g27 +sa(dp180881 +g25268 +S'Nundinae Rusticorum (Rustic Market)' +p180882 +sg25270 +S'Artist Information (' +p180883 +sg25273 +S'(artist)' +p180884 +sg25275 +S'\n' +p180885 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ced8.jpg' +p180886 +sg25267 +g27 +sa(dp180887 +g25268 +S'S. Hieronymus in Deserto (Saint Jerome in the Desert)' +p180888 +sg25270 +S'Artist Information (' +p180889 +sg25273 +S'(artist)' +p180890 +sg25275 +S'\n' +p180891 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d05c.jpg' +p180892 +sg25267 +g27 +sa(dp180893 +g25273 +S'watercolor with graphite' +p180894 +sg25267 +g27 +sg25275 +S'unknown date\n' +p180895 +sg25268 +S'Florence' +p180896 +sg25270 +S'Sir Muirhead Bone' +p180897 +sa(dp180898 +g25268 +S'Prospectus Tyburtinus (View of the Tiber)' +p180899 +sg25270 +S'Artist Information (' +p180900 +sg25273 +S'(artist)' +p180901 +sg25275 +S'\n' +p180902 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d058.jpg' +p180903 +sg25267 +g27 +sa(dp180904 +g25268 +S'Pagus Nemorosus (Wooded Village)' +p180905 +sg25270 +S'Artist Information (' +p180906 +sg25273 +S'(artist)' +p180907 +sg25275 +S'\n' +p180908 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005be7.jpg' +p180909 +sg25267 +g27 +sa(dp180910 +g25268 +S'River Landscape with the Fall of Icarus' +p180911 +sg25270 +S'Artist Information (' +p180912 +sg25273 +S'(artist after)' +p180913 +sg25275 +S'\n' +p180914 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cede.jpg' +p180915 +sg25267 +g27 +sa(dp180916 +g25268 +S'The Parable of the Good Shepherd' +p180917 +sg25270 +S'Artist Information (' +p180918 +sg25273 +S'(artist after)' +p180919 +sg25275 +S'\n' +p180920 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cef1.jpg' +p180921 +sg25267 +g27 +sa(dp180922 +g25268 +S'The Triumph of Time' +p180923 +sg25270 +S'Artist Information (' +p180924 +sg25273 +S'(artist after)' +p180925 +sg25275 +S'\n' +p180926 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf13.jpg' +p180927 +sg25267 +g27 +sa(dp180928 +g25268 +S'The Battle of the Moneybags and the Strongboxes' +p180929 +sg25270 +S'Artist Information (' +p180930 +sg25273 +S'(artist after)' +p180931 +sg25275 +S'\n' +p180932 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf0b.jpg' +p180933 +sg25267 +g27 +sa(dp180934 +g25268 +S'The Last Judgment' +p180935 +sg25270 +S'Artist Information (' +p180936 +sg25273 +S'(artist after)' +p180937 +sg25275 +S'\n' +p180938 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cef0.jpg' +p180939 +sg25267 +g27 +sa(dp180940 +g25268 +S'Anger' +p180941 +sg25270 +S'Artist Information (' +p180942 +sg25273 +S'(artist after)' +p180943 +sg25275 +S'\n' +p180944 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cef4.jpg' +p180945 +sg25267 +g27 +sa(dp180946 +g25268 +S'Avarice' +p180947 +sg25270 +S'Artist Information (' +p180948 +sg25273 +S'(artist after)' +p180949 +sg25275 +S'\n' +p180950 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cef6.jpg' +p180951 +sg25267 +g27 +sa(dp180952 +g25268 +S'Envy' +p180953 +sg25270 +S'Artist Information (' +p180954 +sg25273 +S'(artist after)' +p180955 +sg25275 +S'\n' +p180956 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cef8.jpg' +p180957 +sg25267 +g27 +sa(dp180958 +g25268 +S'Pentecost [recto]' +p180959 +sg25270 +S'German 16th Century' +p180960 +sg25273 +S'overall: 20.2 x 15.7 cm (7 15/16 x 6 3/16 in.)' +p180961 +sg25275 +S'\npen and brush and black ink with gray wash heightened with white on gray prepared paper' +p180962 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007954.jpg' +p180963 +sg25267 +g27 +sa(dp180964 +g25268 +S'Gluttony' +p180965 +sg25270 +S'Artist Information (' +p180966 +sg25273 +S'(artist after)' +p180967 +sg25275 +S'\n' +p180968 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cef7.jpg' +p180969 +sg25267 +g27 +sa(dp180970 +g25268 +S'Lust' +p180971 +sg25270 +S'Artist Information (' +p180972 +sg25273 +S'(artist after)' +p180973 +sg25275 +S'\n' +p180974 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cefa.jpg' +p180975 +sg25267 +g27 +sa(dp180976 +g25268 +S'Pride' +p180977 +sg25270 +S'Artist Information (' +p180978 +sg25273 +S'(artist after)' +p180979 +sg25275 +S'\n' +p180980 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cef9.jpg' +p180981 +sg25267 +g27 +sa(dp180982 +g25268 +S'Sloth' +p180983 +sg25270 +S'Artist Information (' +p180984 +sg25273 +S'(artist after)' +p180985 +sg25275 +S'\n' +p180986 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cef5.jpg' +p180987 +sg25267 +g27 +sa(dp180988 +g25268 +S'The Witch of Malleghem' +p180989 +sg25270 +S'Artist Information (' +p180990 +sg25273 +S'(artist after)' +p180991 +sg25275 +S'\n' +p180992 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d061.jpg' +p180993 +sg25267 +g27 +sa(dp180994 +g25268 +S'The Witch of Malleghem' +p180995 +sg25270 +S'Artist Information (' +p180996 +sg25273 +S'(artist after)' +p180997 +sg25275 +S'\n' +p180998 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b0f.jpg' +p180999 +sg25267 +g27 +sa(dp181000 +g25268 +S'Two Groups of Peasants Moving towards the Right' +p181001 +sg25270 +S'Artist Information (' +p181002 +sg25273 +S'(artist after)' +p181003 +sg25275 +S'\n' +p181004 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd02.jpg' +p181005 +sg25267 +g27 +sa(dp181006 +g25268 +S'A Dutch Hulk and a Boeier' +p181007 +sg25270 +S'Artist Information (' +p181008 +sg25273 +S'(artist after)' +p181009 +sg25275 +S'\n' +p181010 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cee0.jpg' +p181011 +sg25267 +g27 +sa(dp181012 +g25268 +S'The Fat Kitchen' +p181013 +sg25270 +S'Artist Information (' +p181014 +sg25273 +S'(artist after)' +p181015 +sg25275 +S'\n' +p181016 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf12.jpg' +p181017 +sg25267 +g27 +sa(dp181018 +g25268 +S'Christ and the Adultress' +p181019 +sg25270 +S'Artist Information (' +p181020 +sg25273 +S'(artist after)' +p181021 +sg25275 +S'\n' +p181022 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ceee.jpg' +p181023 +sg25267 +g27 +sa(dp181024 +g25268 +S'Noli Me Tangere [verso]' +p181025 +sg25270 +S'German 16th Century' +p181026 +sg25273 +S'overall: 20.2 x 15.7 cm (7 15/16 x 6 3/16 in.)' +p181027 +sg25275 +S'\npen and brush and black ink with gray wash heightened with white on gray prepared paper' +p181028 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007955.jpg' +p181029 +sg25267 +g27 +sa(dp181030 +g25268 +S'The Misanthrope Robbed by the World' +p181031 +sg25270 +S'Artist Information (' +p181032 +sg25273 +S'(artist after)' +p181033 +sg25275 +S'\n' +p181034 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd04.jpg' +p181035 +sg25267 +g27 +sa(dp181036 +g25273 +S'drypoint in black on wove paper' +p181037 +sg25267 +g27 +sg25275 +S'1962' +p181038 +sg25268 +S'Departure of the Fishing Boats' +p181039 +sg25270 +S'Bernard Buffet' +p181040 +sa(dp181041 +g25273 +S'color lithograph' +p181042 +sg25267 +g27 +sg25275 +S'1961' +p181043 +sg25268 +S'Shoreline, Baker Island' +p181044 +sg25270 +S'George Bunker' +p181045 +sa(dp181046 +g25268 +S'The Archbishop Blessing the Child after the Baptism' +p181047 +sg25270 +S'Hans Burgkmair I' +p181048 +sg25273 +S'woodcut' +p181049 +sg25275 +S'unknown date\n' +p181050 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000aef4.jpg' +p181051 +sg25267 +g27 +sa(dp181052 +g25268 +S'The Archbishop Blessing the Child after the Baptism' +p181053 +sg25270 +S'Hans Burgkmair I' +p181054 +sg25273 +S'woodcut' +p181055 +sg25275 +S'unknown date\n' +p181056 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000ae84.jpg' +p181057 +sg25267 +g27 +sa(dp181058 +g25273 +S'color engraving, soft-ground etching and aquatint' +p181059 +sg25267 +g27 +sg25275 +S'unknown date\n' +p181060 +sg25268 +S'The Breakthrough' +p181061 +sg25270 +S'Letterio Calapai' +p181062 +sa(dp181063 +g25273 +S'color lithograph' +p181064 +sg25267 +g27 +sg25275 +S'1963' +p181065 +sg25268 +S'Untitled' +p181066 +sg25270 +S'Alexander Calder' +p181067 +sa(dp181068 +g25273 +S'lithograph' +p181069 +sg25267 +g27 +sg25275 +S'unknown date\n' +p181070 +sg25268 +S'Tara' +p181071 +sg25270 +S'Mary Callery' +p181072 +sa(dp181073 +g25268 +S'The Annunciation' +p181074 +sg25270 +S'Artist Information (' +p181075 +sg25273 +S'(artist after)' +p181076 +sg25275 +S'\n' +p181077 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8a3.jpg' +p181078 +sg25267 +g27 +sa(dp181079 +g25268 +S'The Drunken Silenus ("The Tazza Farnese")' +p181080 +sg25270 +S'Annibale Carracci' +p181081 +sg25273 +S'engraving' +p181082 +sg25275 +S'1597/1600' +p181083 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb72.jpg' +p181084 +sg25267 +g27 +sa(dp181085 +g25268 +S"Daniel in the Lions' Den [recto]" +p181086 +sg25270 +S'German 16th Century' +p181087 +sg25273 +S'overall: 21.3 x 16 cm (8 3/8 x 6 5/16 in.)' +p181088 +sg25275 +S'\npen and black ink with brush and gray ink and graywash heightened with white on gray prepared paper' +p181089 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a000794c.jpg' +p181090 +sg25267 +g27 +sa(dp181091 +g25268 +S'The Tournament of Love' +p181092 +sg25270 +S'Antoine Carree' +p181093 +sg25273 +S'etching and aquatint' +p181094 +sg25275 +S'probably 1722' +p181095 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008ce7.jpg' +p181096 +sg25267 +g27 +sa(dp181097 +g25268 +S'Alphonse Daudet' +p181098 +sg25270 +S'Eug\xc3\xa8ne Carri\xc3\xa8re' +p181099 +sg25273 +S'lithograph' +p181100 +sg25275 +S'1893' +p181101 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f17.jpg' +p181102 +sg25267 +g27 +sa(dp181103 +g25268 +S'Henry II of France' +p181104 +sg25270 +S'Nicol\xc3\xb2 della Casa' +p181105 +sg25273 +S'engraving' +p181106 +sg25275 +S'1547' +p181107 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000849d.jpg' +p181108 +sg25267 +g27 +sa(dp181109 +g25273 +S'lithograph' +p181110 +sg25267 +g27 +sg25275 +S'unknown date\n' +p181111 +sg25268 +S'Concert' +p181112 +sg25270 +S'Felice Casorati' +p181113 +sa(dp181114 +g25268 +S'Farmyard in Winter' +p181115 +sg25270 +S'Jacob Cats' +p181116 +sg25273 +S'pen and brown ink with gray wash and watercolor on laid paper' +p181117 +sg25275 +S'1786' +p181118 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f84.jpg' +p181119 +sg25267 +g27 +sa(dp181120 +g25273 +S'lithograph' +p181121 +sg25267 +g27 +sg25275 +S'1959' +p181122 +sg25268 +S'The Acrobat Rider' +p181123 +sg25270 +S'Marc Chagall' +p181124 +sa(dp181125 +g25273 +S'color aquatint' +p181126 +sg25267 +g27 +sg25275 +S'1959' +p181127 +sg25268 +S'Ville' +p181128 +sg25270 +S'Roger Chailloux' +p181129 +sa(dp181130 +g25268 +S'Battle Scene' +p181131 +sg25270 +S'Nicolas-Toussaint Charlet' +p181132 +sg25273 +S'lithograph on India paper' +p181133 +sg25275 +S'unknown date\n' +p181134 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009831.jpg' +p181135 +sg25267 +g27 +sa(dp181136 +g25273 +S'etching and aquatint' +p181137 +sg25267 +g27 +sg25275 +S'1961' +p181138 +sg25268 +S'On a Darksome Road' +p181139 +sg25270 +S'Minna Wright Citron' +p181140 +sa(dp181141 +g25268 +S"The Dance on the River Bank (La danse au bord de l'eau)" +p181142 +sg25270 +S'Claude Lorrain' +p181143 +sg25273 +S'etching' +p181144 +sg25275 +S'c. 1634' +p181145 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a00089ae.jpg' +p181146 +sg25267 +g27 +sa(dp181147 +g25268 +S'Christ and the Woman of Samaria [verso]' +p181148 +sg25270 +S'German 16th Century' +p181149 +sg25273 +S'overall: 21.3 x 16 cm (8 3/8 x 6 5/16 in.)' +p181150 +sg25275 +S'\npen and black ink with brush and gray ink and graywash heightened with white on gray prepared paper' +p181151 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a000794d.jpg' +p181152 +sg25267 +g27 +sa(dp181153 +g25268 +S'Departure for the Fields (Le d\xc3\xa9part pour les champs)' +p181154 +sg25270 +S'Claude Lorrain' +p181155 +sg25273 +S'etching' +p181156 +sg25275 +S'c. 1638/1641' +p181157 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a000890c.jpg' +p181158 +sg25267 +g27 +sa(dp181159 +g25268 +S"The Herd at the Watering Place (Le troupeau \xc3\xa0 l'abreuvoir)" +p181160 +sg25270 +S'Claude Lorrain' +p181161 +sg25273 +S'etching' +p181162 +sg25275 +S'1635' +p181163 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a00089a4.jpg' +p181164 +sg25267 +g27 +sa(dp181165 +g25268 +S'The Roman Forum (Le Campo Vaccino)' +p181166 +sg25270 +S'Claude Lorrain' +p181167 +sg25273 +S'etching' +p181168 +sg25275 +S'1636' +p181169 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008af5.jpg' +p181170 +sg25267 +g27 +sa(dp181171 +g25273 +S'woodcut//(10 blocks, 17 sheets? joined together)' +p181172 +sg25267 +g27 +sg25275 +S'published 1553' +p181173 +sg25268 +S'The Journey to Constantinople' +p181174 +sg25270 +S'Pieter Coecke van Aelst' +p181175 +sa(dp181176 +g25273 +S'etching and aquatint' +p181177 +sg25267 +g27 +sg25275 +S'1960' +p181178 +sg25268 +S'Peekskill' +p181179 +sg25270 +S'Edward Colker' +p181180 +sa(dp181181 +g25273 +S'color lithograph' +p181182 +sg25267 +g27 +sg25275 +S'1962' +p181183 +sg25268 +S'Arbres et rochers (Trees and Rocks)' +p181184 +sg25270 +S'Corneille' +p181185 +sa(dp181186 +g25273 +S"1 vol: ill: 13 etchings (copper and zinc) on Arnold's handmade collotype paper" +p181187 +sg25267 +g27 +sg25275 +S'published 1959' +p181188 +sg25268 +S'The Monkey' +p181189 +sg25270 +S'Thomas Browne Cornell' +p181190 +sa(dp181191 +g25273 +S'etching and aquatint' +p181192 +sg25267 +g27 +sg25275 +S'1960' +p181193 +sg25268 +S'Progression' +p181194 +sg25270 +S'Thomas Browne Cornell' +p181195 +sa(dp181196 +g25273 +S'etching (and engraving?)' +p181197 +sg25267 +g27 +sg25275 +S'1961' +p181198 +sg25268 +S'Sleeping Man' +p181199 +sg25270 +S'Thomas Browne Cornell' +p181200 +sa(dp181201 +g25268 +S'Modo con que los antiguos Espanoles cazaban los toros a caballo en el campo (The Way in which the Ancient Spaniards Hunted Bulls on Horseback in the Open Country)' +p181202 +sg25270 +S'Francisco de Goya' +p181203 +sg25273 +S'etching, burnished aquatint and drypoint [first edition impression]' +p181204 +sg25275 +S'in or before 1816' +p181205 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed72.jpg' +p181206 +sg25267 +g27 +sa(dp181207 +g25268 +S'After the Shipwreck' +p181208 +sg25270 +S'Cornelis Cort' +p181209 +sg25273 +S'etching and engraving' +p181210 +sg25275 +S'unknown date\n' +p181211 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf51.jpg' +p181212 +sg25267 +g27 +sa(dp181213 +g25268 +S'The Shipwreck' +p181214 +sg25270 +S'Cornelis Cort' +p181215 +sg25273 +S'etching and engraving' +p181216 +sg25275 +S'probably 1553' +p181217 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf52.jpg' +p181218 +sg25267 +g27 +sa(dp181219 +g25268 +S'Country House with a Ditch' +p181220 +sg25270 +S'Artist Information (' +p181221 +sg25273 +S'(artist)' +p181222 +sg25275 +S'\n' +p181223 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd66.jpg' +p181224 +sg25267 +g27 +sa(dp181225 +g25268 +S'Title Page for "Multifariarum Casularum"' +p181226 +sg25270 +S'Hieronymus Cock' +p181227 +sg25273 +S', published 1559' +p181228 +sg25275 +S'\n' +p181229 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f14.jpg' +p181230 +sg25267 +g27 +sa(dp181231 +g25268 +S'Farm with Gateway' +p181232 +sg25270 +S'Artist Information (' +p181233 +sg25273 +S'(artist)' +p181234 +sg25275 +S'\n' +p181235 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd71.jpg' +p181236 +sg25267 +g27 +sa(dp181237 +g25268 +S'Farms' +p181238 +sg25270 +S'Artist Information (' +p181239 +sg25273 +S'(artist)' +p181240 +sg25275 +S'\n' +p181241 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdaf.jpg' +p181242 +sg25267 +g27 +sa(dp181243 +g25268 +S'Farm' +p181244 +sg25270 +S'Artist Information (' +p181245 +sg25273 +S'(artist)' +p181246 +sg25275 +S'\n' +p181247 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdb1.jpg' +p181248 +sg25267 +g27 +sa(dp181249 +g25268 +S'Farms' +p181250 +sg25270 +S'Artist Information (' +p181251 +sg25273 +S'(artist)' +p181252 +sg25275 +S'\n' +p181253 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cda7.jpg' +p181254 +sg25267 +g27 +sa(dp181255 +g25268 +S'Farms with Draw Well' +p181256 +sg25270 +S'Artist Information (' +p181257 +sg25273 +S'(artist)' +p181258 +sg25275 +S'\n' +p181259 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd5c.jpg' +p181260 +sg25267 +g27 +sa(dp181261 +g25268 +S'Farm' +p181262 +sg25270 +S'Artist Information (' +p181263 +sg25273 +S'(artist)' +p181264 +sg25275 +S'\n' +p181265 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd9f.jpg' +p181266 +sg25267 +g27 +sa(dp181267 +g25268 +S'La Tauromaquia (The Bullfight)' +p181268 +sg25270 +S'Francisco de Goya' +p181269 +sg25273 +S'portfolio with thirty-three prints and table of contents' +p181270 +sg25275 +S'published 1816' +p181271 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed71.jpg' +p181272 +sg25267 +g27 +sa(dp181273 +g25268 +S'Road with Barn and Cottages' +p181274 +sg25270 +S'Artist Information (' +p181275 +sg25273 +S'(artist)' +p181276 +sg25275 +S'\n' +p181277 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd9c.jpg' +p181278 +sg25267 +g27 +sa(dp181279 +g25268 +S'Castle with Lift-Bridge' +p181280 +sg25270 +S'Artist Information (' +p181281 +sg25273 +S'(artist)' +p181282 +sg25275 +S'\n' +p181283 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd98.jpg' +p181284 +sg25267 +g27 +sa(dp181285 +g25268 +S'Shed with Cottage' +p181286 +sg25270 +S'Artist Information (' +p181287 +sg25273 +S'(artist)' +p181288 +sg25275 +S'\n' +p181289 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdad.jpg' +p181290 +sg25267 +g27 +sa(dp181291 +g25268 +S'Farm' +p181292 +sg25270 +S'Artist Information (' +p181293 +sg25273 +S'(artist)' +p181294 +sg25275 +S'\n' +p181295 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd91.jpg' +p181296 +sg25267 +g27 +sa(dp181297 +g25268 +S'Farms' +p181298 +sg25270 +S'Artist Information (' +p181299 +sg25273 +S'(artist)' +p181300 +sg25275 +S'\n' +p181301 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd96.jpg' +p181302 +sg25267 +g27 +sa(dp181303 +g25268 +S'Farms and Shed' +p181304 +sg25270 +S'Artist Information (' +p181305 +sg25273 +S'(artist)' +p181306 +sg25275 +S'\n' +p181307 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd9a.jpg' +p181308 +sg25267 +g27 +sa(dp181309 +g25268 +S'Country Village with Post Mill' +p181310 +sg25270 +S'Artist Information (' +p181311 +sg25273 +S'(artist)' +p181312 +sg25275 +S'\n' +p181313 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cda3.jpg' +p181314 +sg25267 +g27 +sa(dp181315 +g25268 +S'Farm with Shed and Draw Well' +p181316 +sg25270 +S'Artist Information (' +p181317 +sg25273 +S'(artist)' +p181318 +sg25275 +S'\n' +p181319 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cda9.jpg' +p181320 +sg25267 +g27 +sa(dp181321 +g25268 +S'Title Page for "Praediorum Villarum"' +p181322 +sg25270 +S'Hieronymus Cock' +p181323 +sg25273 +S', 1561' +p181324 +sg25275 +S'\n' +p181325 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd5b.jpg' +p181326 +sg25267 +g27 +sa(dp181327 +g25268 +S'Village Road with Farm and Sheds' +p181328 +sg25270 +S'Artist Information (' +p181329 +sg25273 +S'(artist)' +p181330 +sg25275 +S'\n' +p181331 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd89.jpg' +p181332 +sg25267 +g27 +sa(dp181333 +g25268 +S'Otro modo de cazar a pie (Another Way of Hunting on Foot)' +p181334 +sg25270 +S'Francisco de Goya' +p181335 +sg25273 +S'etching, burnished aquatint, drypoint and burin [first edition impression]' +p181336 +sg25275 +S'in or before 1816' +p181337 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed73.jpg' +p181338 +sg25267 +g27 +sa(dp181339 +g25268 +S'Farms' +p181340 +sg25270 +S'Artist Information (' +p181341 +sg25273 +S'(artist)' +p181342 +sg25275 +S'\n' +p181343 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd75.jpg' +p181344 +sg25267 +g27 +sa(dp181345 +g25268 +S'Village Road' +p181346 +sg25270 +S'Artist Information (' +p181347 +sg25273 +S'(artist)' +p181348 +sg25275 +S'\n' +p181349 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd7b.jpg' +p181350 +sg25267 +g27 +sa(dp181351 +g25268 +S'Village Road with Draw Well' +p181352 +sg25270 +S'Artist Information (' +p181353 +sg25273 +S'(artist)' +p181354 +sg25275 +S'\n' +p181355 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a0006077.jpg' +p181356 +sg25267 +g27 +sa(dp181357 +g25268 +S'Castle' +p181358 +sg25270 +S'Artist Information (' +p181359 +sg25273 +S'(artist)' +p181360 +sg25275 +S'\n' +p181361 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd60.jpg' +p181362 +sg25267 +g27 +sa(dp181363 +g25268 +S'Country House with a Ditch' +p181364 +sg25270 +S'Artist Information (' +p181365 +sg25273 +S'(artist)' +p181366 +sg25275 +S'\n' +p181367 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd64.jpg' +p181368 +sg25267 +g27 +sa(dp181369 +g25268 +S'Town Gate with Country Houses' +p181370 +sg25270 +S'Artist Information (' +p181371 +sg25273 +S'(artist)' +p181372 +sg25275 +S'\n' +p181373 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd5e.jpg' +p181374 +sg25267 +g27 +sa(dp181375 +g25268 +S'Farms' +p181376 +sg25270 +S'Artist Information (' +p181377 +sg25273 +S'(artist)' +p181378 +sg25275 +S'\n' +p181379 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd94.jpg' +p181380 +sg25267 +g27 +sa(dp181381 +g25268 +S'A Farmyard with a Draw Well' +p181382 +sg25270 +S'Artist Information (' +p181383 +sg25273 +S'(artist)' +p181384 +sg25275 +S'\n' +p181385 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd85.jpg' +p181386 +sg25267 +g27 +sa(dp181387 +g25268 +S'Farms in a Court' +p181388 +sg25270 +S'Artist Information (' +p181389 +sg25273 +S'(artist)' +p181390 +sg25275 +S'\n' +p181391 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd62.jpg' +p181392 +sg25267 +g27 +sa(dp181393 +g25268 +S'Country Village' +p181394 +sg25270 +S'Artist Information (' +p181395 +sg25273 +S'(artist)' +p181396 +sg25275 +S'\n' +p181397 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cda5.jpg' +p181398 +sg25267 +g27 +sa(dp181399 +g25268 +S'Los moros establecidos en Espana, prescindiendo de las supersticiones de su Alcoran, adoptaron esta caza y arte, y lancean un toro en el campo (The Moors Settled in Spain, Giving up the Superstitions of the Koran, Adopted This Art of Hunting, and Spear a Bull in the Open)' +p181400 +sg25270 +S'Francisco de Goya' +p181401 +sg25273 +S'etching, burnished aquatint, drypoint and burin [first edition impression]' +p181402 +sg25275 +S'in or before 1816' +p181403 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed74.jpg' +p181404 +sg25267 +g27 +sa(dp181405 +g25268 +S'Farmstead' +p181406 +sg25270 +S'Artist Information (' +p181407 +sg25273 +S'(artist)' +p181408 +sg25275 +S'\n' +p181409 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd7f.jpg' +p181410 +sg25267 +g27 +sa(dp181411 +g25268 +S'Country Houses' +p181412 +sg25270 +S'Artist Information (' +p181413 +sg25273 +S'(artist)' +p181414 +sg25275 +S'\n' +p181415 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd6b.jpg' +p181416 +sg25267 +g27 +sa(dp181417 +g25268 +S'Country Village with Church and Bridge' +p181418 +sg25270 +S'Artist Information (' +p181419 +sg25273 +S'(artist)' +p181420 +sg25275 +S'\n' +p181421 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd6d.jpg' +p181422 +sg25267 +g27 +sa(dp181423 +g25268 +S'Fields and a Village Road with Post Mill' +p181424 +sg25270 +S'Artist Information (' +p181425 +sg25273 +S'(artist)' +p181426 +sg25275 +S'\n' +p181427 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd8f.jpg' +p181428 +sg25267 +g27 +sa(dp181429 +g25268 +S'Country Village with Sheep and Sitting Shepherd' +p181430 +sg25270 +S'Artist Information (' +p181431 +sg25273 +S'(artist)' +p181432 +sg25275 +S'\n' +p181433 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd77.jpg' +p181434 +sg25267 +g27 +sa(dp181435 +g25268 +S'Farms in a Village' +p181436 +sg25270 +S'Artist Information (' +p181437 +sg25273 +S'(artist)' +p181438 +sg25275 +S'\n' +p181439 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd7d.jpg' +p181440 +sg25267 +g27 +sa(dp181441 +g25268 +S'Farm and Row of Houses' +p181442 +sg25270 +S'Artist Information (' +p181443 +sg25273 +S'(artist)' +p181444 +sg25275 +S'\n' +p181445 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd69.jpg' +p181446 +sg25267 +g27 +sa(dp181447 +g25268 +S'Large Farm with Draw Well' +p181448 +sg25270 +S'Artist Information (' +p181449 +sg25273 +S'(artist)' +p181450 +sg25275 +S'\n' +p181451 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd93.jpg' +p181452 +sg25267 +g27 +sa(dp181453 +g25268 +S'Country Village with Church Tower' +p181454 +sg25270 +S'Artist Information (' +p181455 +sg25273 +S'(artist)' +p181456 +sg25275 +S'\n' +p181457 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd79.jpg' +p181458 +sg25267 +g27 +sa(dp181459 +g25268 +S'Country Village with Church' +p181460 +sg25270 +S'Artist Information (' +p181461 +sg25273 +S'(artist)' +p181462 +sg25275 +S'\n' +p181463 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd8d.jpg' +p181464 +sg25267 +g27 +sa(dp181465 +g25268 +S'Capean otro encerrado (They Play Another with the Cape in an Enclosure)' +p181466 +sg25270 +S'Francisco de Goya' +p181467 +sg25273 +S'etching, burnished aquatint, drypoint and burin [first edition impression]' +p181468 +sg25275 +S'in or before 1816' +p181469 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed75.jpg' +p181470 +sg25267 +g27 +sa(dp181471 +g25268 +S'Village Street' +p181472 +sg25270 +S'Artist Information (' +p181473 +sg25273 +S'(artist)' +p181474 +sg25275 +S'\n' +p181475 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd8b.jpg' +p181476 +sg25267 +g27 +sa(dp181477 +g25268 +S'Village Street' +p181478 +sg25270 +S'Artist Information (' +p181479 +sg25273 +S'(artist)' +p181480 +sg25275 +S'\n' +p181481 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd67.jpg' +p181482 +sg25267 +g27 +sa(dp181483 +g25268 +S'Village Street' +p181484 +sg25270 +S'Artist Information (' +p181485 +sg25273 +S'(artist)' +p181486 +sg25275 +S'\n' +p181487 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd70.jpg' +p181488 +sg25267 +g27 +sa(dp181489 +g25268 +S'Farm' +p181490 +sg25270 +S'Artist Information (' +p181491 +sg25273 +S'(artist)' +p181492 +sg25275 +S'\n' +p181493 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd73.jpg' +p181494 +sg25267 +g27 +sa(dp181495 +g25268 +S'Farms' +p181496 +sg25270 +S'Artist Information (' +p181497 +sg25273 +S'(artist)' +p181498 +sg25275 +S'\n' +p181499 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cda1.jpg' +p181500 +sg25267 +g27 +sa(dp181501 +g25268 +S"The Swann's Inn with Farms" +p181502 +sg25270 +S'Artist Information (' +p181503 +sg25273 +S'(artist)' +p181504 +sg25275 +S'\n' +p181505 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd83.jpg' +p181506 +sg25267 +g27 +sa(dp181507 +g25268 +S'Village Street' +p181508 +sg25270 +S'Artist Information (' +p181509 +sg25273 +S'(artist)' +p181510 +sg25275 +S'\n' +p181511 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdab.jpg' +p181512 +sg25267 +g27 +sa(dp181513 +g25268 +S'Village Street with Hay Cart' +p181514 +sg25270 +S'Artist Information (' +p181515 +sg25273 +S'(artist)' +p181516 +sg25275 +S'\n' +p181517 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd9e.jpg' +p181518 +sg25267 +g27 +sa(dp181519 +g25268 +S'Farms' +p181520 +sg25270 +S'Artist Information (' +p181521 +sg25273 +S'(artist)' +p181522 +sg25275 +S'\n' +p181523 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd81.jpg' +p181524 +sg25267 +g27 +sa(dp181525 +g25273 +S', published in or before 1633' +p181526 +sg25267 +g27 +sg25275 +S'\n' +p181527 +sg25268 +S'Title Page for "Regiones et Villae Rusticae"' +p181528 +sg25270 +S'Theodor Galle' +p181529 +sa(dp181530 +g25268 +S'El animoso moro Gazul es el primero que lanceo toros en regla (The Spirited Moor Gazul is the First to Spear Bulls According to Rules)' +p181531 +sg25270 +S'Francisco de Goya' +p181532 +sg25273 +S'etching, burnished aquatint and drypoint [first edition impression]' +p181533 +sg25275 +S'in or before 1816' +p181534 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed76.jpg' +p181535 +sg25267 +g27 +sa(dp181536 +g25273 +S'(artist)' +p181537 +sg25267 +g27 +sg25275 +S'\n' +p181538 +sg25268 +S'Small Landscapes' +p181539 +sg25270 +S'Artist Information (' +p181540 +sa(dp181541 +g25273 +S'etching retouched with engraving' +p181542 +sg25267 +g27 +sg25275 +S'published in or before 1633' +p181543 +sg25268 +S'Castle with a Moat' +p181544 +sg25270 +S'Carel Collaert' +p181545 +sa(dp181546 +g25273 +S'etching retouched with engraving' +p181547 +sg25267 +g27 +sg25275 +S'published in or before 1633' +p181548 +sg25268 +S'Village Square with Shrine' +p181549 +sg25270 +S'Carel Collaert' +p181550 +sa(dp181551 +g25273 +S'(artist)' +p181552 +sg25267 +g27 +sg25275 +S'\n' +p181553 +sg25268 +S'Farms' +p181554 +sg25270 +S'Artist Information (' +p181555 +sa(dp181556 +g25273 +S'(artist)' +p181557 +sg25267 +g27 +sg25275 +S'\n' +p181558 +sg25268 +S'Farms with Draw Well' +p181559 +sg25270 +S'Artist Information (' +p181560 +sa(dp181561 +g25273 +S'(artist)' +p181562 +sg25267 +g27 +sg25275 +S'\n' +p181563 +sg25268 +S'Shed with Cottage' +p181564 +sg25270 +S'Artist Information (' +p181565 +sa(dp181566 +g25273 +S'(artist)' +p181567 +sg25267 +g27 +sg25275 +S'\n' +p181568 +sg25268 +S'Village Road with Farm and Sheds' +p181569 +sg25270 +S'Artist Information (' +p181570 +sa(dp181571 +g25273 +S'(artist)' +p181572 +sg25267 +g27 +sg25275 +S'\n' +p181573 +sg25268 +S'Farm' +p181574 +sg25270 +S'Artist Information (' +p181575 +sa(dp181576 +g25273 +S'(artist)' +p181577 +sg25267 +g27 +sg25275 +S'\n' +p181578 +sg25268 +S'Fields and a Village Road with Post Mill' +p181579 +sg25270 +S'Artist Information (' +p181580 +sa(dp181581 +g25273 +S'(artist)' +p181582 +sg25267 +g27 +sg25275 +S'\n' +p181583 +sg25268 +S'Village Street' +p181584 +sg25270 +S'Artist Information (' +p181585 +sa(dp181586 +g25268 +S'Los Moros hacen otro capeo en plaza con su albornoz (The Moors Make a Different Play in the Ring Calling the Bull with Their Burnous)' +p181587 +sg25270 +S'Francisco de Goya' +p181588 +sg25273 +S'etching, burnished aquatint and drypoint [first edition impression]' +p181589 +sg25275 +S'in or before 1816' +p181590 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed77.jpg' +p181591 +sg25267 +g27 +sa(dp181592 +g25273 +S'(artist)' +p181593 +sg25267 +g27 +sg25275 +S'\n' +p181594 +sg25268 +S'Farm and Row of Houses' +p181595 +sg25270 +S'Artist Information (' +p181596 +sa(dp181597 +g25273 +S'(artist)' +p181598 +sg25267 +g27 +sg25275 +S'\n' +p181599 +sg25268 +S'Farm' +p181600 +sg25270 +S'Artist Information (' +p181601 +sa(dp181602 +g25273 +S'(artist)' +p181603 +sg25267 +g27 +sg25275 +S'\n' +p181604 +sg25268 +S'Country Village with Church and Bridge' +p181605 +sg25270 +S'Artist Information (' +p181606 +sa(dp181607 +g25273 +S'(artist)' +p181608 +sg25267 +g27 +sg25275 +S'\n' +p181609 +sg25268 +S'Village Street' +p181610 +sg25270 +S'Artist Information (' +p181611 +sa(dp181612 +g25273 +S'(artist)' +p181613 +sg25267 +g27 +sg25275 +S'\n' +p181614 +sg25268 +S'Farm with Gateway' +p181615 +sg25270 +S'Artist Information (' +p181616 +sa(dp181617 +g25273 +S'(artist)' +p181618 +sg25267 +g27 +sg25275 +S'\n' +p181619 +sg25268 +S'Crossroads' +p181620 +sg25270 +S'Artist Information (' +p181621 +sa(dp181622 +g25273 +S'(artist)' +p181623 +sg25267 +g27 +sg25275 +S'\n' +p181624 +sg25268 +S'Farms' +p181625 +sg25270 +S'Artist Information (' +p181626 +sa(dp181627 +g25273 +S'(artist)' +p181628 +sg25267 +g27 +sg25275 +S'\n' +p181629 +sg25268 +S'Country Village with Sheep and Sitting Shepherd' +p181630 +sg25270 +S'Artist Information (' +p181631 +sa(dp181632 +g25273 +S'(artist)' +p181633 +sg25267 +g27 +sg25275 +S'\n' +p181634 +sg25268 +S'Country Village with Church' +p181635 +sg25270 +S'Artist Information (' +p181636 +sa(dp181637 +g25273 +S'(artist)' +p181638 +sg25267 +g27 +sg25275 +S'\n' +p181639 +sg25268 +S'Village Road' +p181640 +sg25270 +S'Artist Information (' +p181641 +sa(dp181642 +g25268 +S'Origen de los arpones o banderillas (Origin of the Harpoons or Banderillas)' +p181643 +sg25270 +S'Francisco de Goya' +p181644 +sg25273 +S'etching, burnished aquatint and burin [first edition impression]' +p181645 +sg25275 +S'in or before 1816' +p181646 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed78.jpg' +p181647 +sg25267 +g27 +sa(dp181648 +g25273 +S'(artist)' +p181649 +sg25267 +g27 +sg25275 +S'\n' +p181650 +sg25268 +S'Farms' +p181651 +sg25270 +S'Artist Information (' +p181652 +sa(dp181653 +g25273 +S'(artist)' +p181654 +sg25267 +g27 +sg25275 +S'\n' +p181655 +sg25268 +S'Farms and Shed' +p181656 +sg25270 +S'Artist Information (' +p181657 +sa(dp181658 +g25273 +S'(artist)' +p181659 +sg25267 +g27 +sg25275 +S'\n' +p181660 +sg25268 +S'Farms' +p181661 +sg25270 +S'Artist Information (' +p181662 +sa(dp181663 +g25273 +S'(artist)' +p181664 +sg25267 +g27 +sg25275 +S'\n' +p181665 +sg25268 +S'Farms' +p181666 +sg25270 +S'Artist Information (' +p181667 +sa(dp181668 +g25273 +S'(artist)' +p181669 +sg25267 +g27 +sg25275 +S'\n' +p181670 +sg25268 +S'Farms' +p181671 +sg25270 +S'Artist Information (' +p181672 +sa(dp181673 +g25268 +S'Saint John the Baptist Preaching' +p181674 +sg25270 +S'Frans Crabbe van Espleghem' +p181675 +sg25273 +S'woodcut' +p181676 +sg25275 +S'possibly c. 1530' +p181677 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf66.jpg' +p181678 +sg25267 +g27 +sa(dp181679 +g25273 +S'color aquatint' +p181680 +sg25267 +g27 +sg25275 +S'1959' +p181681 +sg25268 +S"L'Attraction du Soleil" +p181682 +sg25270 +S'Ruth Cyril' +p181683 +sa(dp181684 +g25273 +S'color aquatint' +p181685 +sg25267 +g27 +sg25275 +S'1960' +p181686 +sg25268 +S'La Campagne Endormie' +p181687 +sg25270 +S'Ruth Cyril' +p181688 +sa(dp181689 +g25273 +S'color etching' +p181690 +sg25267 +g27 +sg25275 +S'1962' +p181691 +sg25268 +S'La Foret Aubergine' +p181692 +sg25270 +S'Ruth Cyril' +p181693 +sa(dp181694 +g25273 +S'color aquatint' +p181695 +sg25267 +g27 +sg25275 +S'1960' +p181696 +sg25268 +S"La Foret d'Ensorcellement" +p181697 +sg25270 +S'Ruth Cyril' +p181698 +sa(dp181699 +g25268 +S'Cogida de un moro estando en la plaza (A Moor Caught by the Bull in the Ring)' +p181700 +sg25270 +S'Francisco de Goya' +p181701 +sg25273 +S'etching, burnished aquatint and drypoint [first edition impression]' +p181702 +sg25275 +S'in or before 1816' +p181703 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed79.jpg' +p181704 +sg25267 +g27 +sa(dp181705 +g25273 +S'color aquatint' +p181706 +sg25267 +g27 +sg25275 +S'1955' +p181707 +sg25268 +S'Undersea' +p181708 +sg25270 +S'Ruth Cyril' +p181709 +sa(dp181710 +g25268 +S'King Louis XIII of France and Anne of Austria' +p181711 +sg25270 +S'Cornelis van Dalen I' +p181712 +sg25273 +S'engraving' +p181713 +sg25275 +S'probably 1629' +p181714 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d602.jpg' +p181715 +sg25267 +g27 +sa(dp181716 +g25268 +S"Autumn (L'Automne)" +p181717 +sg25270 +S'Charles-Fran\xc3\xa7ois Daubigny' +p181718 +sg25273 +S'etching' +p181719 +sg25275 +S'1848' +p181720 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091d6.jpg' +p181721 +sg25267 +g27 +sa(dp181722 +g25268 +S'Little Birds (Les Petits oiseaux)' +p181723 +sg25270 +S'Charles-Fran\xc3\xa7ois Daubigny' +p181724 +sg25273 +S'etching' +p181725 +sg25275 +S'1850' +p181726 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009825.jpg' +p181727 +sg25267 +g27 +sa(dp181728 +g25268 +S'Deer in the Woods (Les Cerfs sous bois)' +p181729 +sg25270 +S'Charles-Fran\xc3\xa7ois Daubigny' +p181730 +sg25273 +S'etching' +p181731 +sg25275 +S'1850' +p181732 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009826.jpg' +p181733 +sg25267 +g27 +sa(dp181734 +g25268 +S'A propos des... caves de la Banque de France' +p181735 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181736 +sg25273 +S'lithograph' +p181737 +sg25275 +S'1866' +p181738 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094ee.jpg' +p181739 +sg25267 +g27 +sa(dp181740 +g25268 +S'Au Camp de Chalons' +p181741 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181742 +sg25273 +S'lithograph' +p181743 +sg25275 +S'1869' +p181744 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000952d.jpg' +p181745 +sg25267 +g27 +sa(dp181746 +g25268 +S"Ce que l'Angleterre appelle un trait-d'union" +p181747 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181748 +sg25273 +S'lithograph' +p181749 +sg25275 +S'1867' +p181750 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000950b.jpg' +p181751 +sg25267 +g27 +sa(dp181752 +g25268 +S'Chauds les gros! chauds!...' +p181753 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181754 +sg25273 +S'lithograph' +p181755 +sg25275 +S'1868' +p181756 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000951e.jpg' +p181757 +sg25267 +g27 +sa(dp181758 +g25268 +S'Consultations non gratuites' +p181759 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181760 +sg25273 +S'lithograph' +p181761 +sg25275 +S'1868' +p181762 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009522.jpg' +p181763 +sg25267 +g27 +sa(dp181764 +g25268 +S'Un caballero espanol mata un toro despues de haber perdido el caballo (A Spanish Knight Kills the Bull after Having Lost His Horse)' +p181765 +sg25270 +S'Francisco de Goya' +p181766 +sg25273 +S'etching, burnished aquatint and burin [first edition impression]' +p181767 +sg25275 +S'in or before 1816' +p181768 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed7a.jpg' +p181769 +sg25267 +g27 +sa(dp181770 +g25268 +S'Dialogue des morts' +p181771 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181772 +sg25273 +S'lithograph' +p181773 +sg25275 +S'1867' +p181774 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000950a.jpg' +p181775 +sg25267 +g27 +sa(dp181776 +g25268 +S'\xc3\x89lecteurs, dans mes bras!...' +p181777 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181778 +sg25273 +S'lithograph' +p181779 +sg25275 +S'1869' +p181780 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000951b.jpg' +p181781 +sg25267 +g27 +sa(dp181782 +g25268 +S'Embrassons nous' +p181783 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181784 +sg25273 +S'lithograph' +p181785 +sg25275 +S'1867' +p181786 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009511.jpg' +p181787 +sg25267 +g27 +sa(dp181788 +g25268 +S'Empedocle recevant... les honneurs divins...' +p181789 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181790 +sg25273 +S'lithograph' +p181791 +sg25275 +S'1866' +p181792 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094ea.jpg' +p181793 +sg25267 +g27 +sa(dp181794 +g25268 +S'Entre recors' +p181795 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181796 +sg25273 +S'lithograph' +p181797 +sg25275 +S'1865' +p181798 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094e8.jpg' +p181799 +sg25267 +g27 +sa(dp181800 +g25268 +S'\xc3\x89trennes pour 1867' +p181801 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181802 +sg25273 +S'lithograph' +p181803 +sg25275 +S'1866' +p181804 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009502.jpg' +p181805 +sg25267 +g27 +sa(dp181806 +g25268 +S"Exp\xc3\xa9rience d'\xc3\xa9quilibre" +p181807 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181808 +sg25273 +S'lithograph' +p181809 +sg25275 +S'1868' +p181810 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009521.jpg' +p181811 +sg25267 +g27 +sa(dp181812 +g25268 +S'Gare le d\xc3\xa9raillement!' +p181813 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181814 +sg25273 +S'lithograph' +p181815 +sg25275 +S'1866' +p181816 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009505.jpg' +p181817 +sg25267 +g27 +sa(dp181818 +g25268 +S'Invention charivarique' +p181819 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181820 +sg25273 +S'lithograph' +p181821 +sg25275 +S'1868' +p181822 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000951a.jpg' +p181823 +sg25267 +g27 +sa(dp181824 +g25268 +S"Jadis c'\xc3\xa9tait diff\xc3\xa9rent" +p181825 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181826 +sg25273 +S'lithograph' +p181827 +sg25275 +S'1867' +p181828 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000950e.jpg' +p181829 +sg25267 +g27 +sa(dp181830 +g25268 +S'Carlos V. lanceando un toro en la plaza de Valladolid (Charles V Spearing a Bull in the Ring at Valladolid)' +p181831 +sg25270 +S'Francisco de Goya' +p181832 +sg25273 +S'etching, burnished aquatint, drypoint and burin [first edition impression]' +p181833 +sg25275 +S'in or before 1816' +p181834 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005785.jpg' +p181835 +sg25267 +g27 +sa(dp181836 +g25268 +S"L'Ar\xc3\xa8ne parlementaire" +p181837 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181838 +sg25273 +S'lithograph' +p181839 +sg25275 +S'1870' +p181840 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000952e.jpg' +p181841 +sg25267 +g27 +sa(dp181842 +g25268 +S'La Femme a barbe' +p181843 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181844 +sg25273 +S'lithograph' +p181845 +sg25275 +S'1867' +p181846 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009508.jpg' +p181847 +sg25267 +g27 +sa(dp181848 +g25268 +S'Le Festin de Baltazar-V\xc3\xa9ron' +p181849 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181850 +sg25273 +S'lithograph' +p181851 +sg25275 +S'1850' +p181852 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009468.jpg' +p181853 +sg25267 +g27 +sa(dp181854 +g25268 +S"Le Mot d'ordre: R\xc3\xa9action... Pardon... Libert\xc3\xa9" +p181855 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181856 +sg25273 +S'lithograph' +p181857 +sg25275 +S'1869' +p181858 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009527.jpg' +p181859 +sg25267 +g27 +sa(dp181860 +g25268 +S"Le R\xc3\xaave de l'inventeur du fusil a aiguilles..." +p181861 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181862 +sg25273 +S'lithograph' +p181863 +sg25275 +S'1866' +p181864 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094f6.jpg' +p181865 +sg25267 +g27 +sa(dp181866 +g25268 +S'Le Secret confi\xc3\xa9 au dieu faune' +p181867 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181868 +sg25273 +S'lithograph' +p181869 +sg25275 +S'1850/1851' +p181870 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009471.jpg' +p181871 +sg25267 +g27 +sa(dp181872 +g25268 +S"Le Temps \xc3\xa9prouvant lui aussi le besoin de s'\xc3\xa9quiper a la mode" +p181873 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181874 +sg25273 +S'lithograph' +p181875 +sg25275 +S'1867' +p181876 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009503.jpg' +p181877 +sg25267 +g27 +sa(dp181878 +g25268 +S"Le vrai feu d'artifice est d'\xc3\xaatre lib\xc3\xa9ral" +p181879 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181880 +sg25273 +S'lithograph' +p181881 +sg25275 +S'1869' +p181882 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000952a.jpg' +p181883 +sg25267 +g27 +sa(dp181884 +g25268 +S'Les Cadeaux de No\xc3\xabl de 1868' +p181885 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181886 +sg25273 +S'lithograph' +p181887 +sg25275 +S'1868' +p181888 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000951c.jpg' +p181889 +sg25267 +g27 +sa(dp181890 +g25268 +S'Les Politiques de caf\xc3\xa9' +p181891 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181892 +sg25273 +S'lithograph' +p181893 +sg25275 +S'1864' +p181894 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094e1.jpg' +p181895 +sg25267 +g27 +sa(dp181896 +g25268 +S'El Cid Campeador lanceando otro toro (The Cid Campeador Spearing Another Bull)' +p181897 +sg25270 +S'Francisco de Goya' +p181898 +sg25273 +S'etching, burnished aquatint and burin [first edition impression]' +p181899 +sg25275 +S'in or before 1816' +p181900 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed7b.jpg' +p181901 +sg25267 +g27 +sa(dp181902 +g25268 +S'Les Trains de plaisir' +p181903 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181904 +sg25273 +S'lithograph' +p181905 +sg25275 +S'1864' +p181906 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094e4.jpg' +p181907 +sg25267 +g27 +sa(dp181908 +g25268 +S'Ne tirez pas!!!' +p181909 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181910 +sg25273 +S'lithograph' +p181911 +sg25275 +S'1865' +p181912 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094ed.jpg' +p181913 +sg25267 +g27 +sa(dp181914 +g25268 +S"Non... vous n'\xc3\xaates pas de cette pi\xc3\xa8ce-la!" +p181915 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181916 +sg25273 +S'lithograph' +p181917 +sg25275 +S'1867' +p181918 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009507.jpg' +p181919 +sg25267 +g27 +sa(dp181920 +g25268 +S'Oedipe' +p181921 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181922 +sg25273 +S'lithograph' +p181923 +sg25275 +S'1851' +p181924 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009484.jpg' +p181925 +sg25267 +g27 +sa(dp181926 +g25268 +S'On avait... joliment graiss\xc3\xa9 le m\xc3\xa2t' +p181927 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181928 +sg25273 +S'lithograph' +p181929 +sg25275 +S'1869' +p181930 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009529.jpg' +p181931 +sg25267 +g27 +sa(dp181932 +g25268 +S'Premier prix de croissance - La Prusse' +p181933 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181934 +sg25273 +S'lithograph' +p181935 +sg25275 +S'1867' +p181936 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009506.jpg' +p181937 +sg25267 +g27 +sa(dp181938 +g25268 +S'Prudhomme oblig\xc3\xa9 de prendre des le\xc3\xa7ons...' +p181939 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181940 +sg25273 +S'lithograph' +p181941 +sg25275 +S'1867' +p181942 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009509.jpg' +p181943 +sg25267 +g27 +sa(dp181944 +g25268 +S"R\xc3\xa9flection intime d'un \xc3\xa9picier" +p181945 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181946 +sg25273 +S'lithograph' +p181947 +sg25275 +S'1867' +p181948 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000950f.jpg' +p181949 +sg25267 +g27 +sa(dp181950 +g25268 +S'Renouvel\xc3\xa9 des Japonais' +p181951 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181952 +sg25273 +S'lithograph' +p181953 +sg25275 +S'1867' +p181954 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000950c.jpg' +p181955 +sg25267 +g27 +sa(dp181956 +g25268 +S"Si je n'allais pas \xc3\xaatre r\xc3\xa9\xc3\xa9lu!" +p181957 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181958 +sg25273 +S'lithograph' +p181959 +sg25275 +S'1869' +p181960 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009519.jpg' +p181961 +sg25267 +g27 +sa(dp181962 +g25268 +S'Desjarrete de la canalla con lanzas, medias-lunas, banderillas y otras armas (The Rabble Hamstring the Bull with Lances, Sickles, Banderillas and Other Arms)' +p181963 +sg25270 +S'Francisco de Goya' +p181964 +sg25273 +S'etching, burnished aquatint and drypoint [first edition impression]' +p181965 +sg25275 +S'in or before 1816' +p181966 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed7c.jpg' +p181967 +sg25267 +g27 +sa(dp181968 +g25268 +S"Un Banquet d'hippophages" +p181969 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181970 +sg25273 +S'lithograph' +p181971 +sg25275 +S'1865' +p181972 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094e5.jpg' +p181973 +sg25267 +g27 +sa(dp181974 +g25268 +S"Un proc\xc3\xa9d\xc3\xa9 pour qu'il marche sans avancer" +p181975 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181976 +sg25273 +S'lithograph' +p181977 +sg25275 +S'1868' +p181978 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000951d.jpg' +p181979 +sg25267 +g27 +sa(dp181980 +g25268 +S'Un Replatrage' +p181981 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181982 +sg25273 +S'lithograph' +p181983 +sg25275 +S'1851' +p181984 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000946a.jpg' +p181985 +sg25267 +g27 +sa(dp181986 +g25268 +S'Vous aurez beau faire, ma pauvre presse...' +p181987 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181988 +sg25273 +S'lithograph' +p181989 +sg25275 +S'1866' +p181990 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094f5.jpg' +p181991 +sg25267 +g27 +sa(dp181992 +g25268 +S"Vue d'un atelier... avant l'exposition" +p181993 +sg25270 +S'Honor\xc3\xa9 Daumier' +p181994 +sg25273 +S'lithograph' +p181995 +sg25275 +S'1864' +p181996 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094e2.jpg' +p181997 +sg25267 +g27 +sa(dp181998 +g25273 +S'engraving on BFK Rives wove paper' +p181999 +sg25267 +g27 +sg25275 +S'c. 1961' +p182000 +sg25268 +S'Etudes pour le burin I (Thistle)' +p182001 +sg25270 +S'Marc Dautry' +p182002 +sa(dp182003 +g25273 +S'engraving' +p182004 +sg25267 +g27 +sg25275 +S'1961' +p182005 +sg25268 +S'Etudes pour le burin V (Dead Bird)' +p182006 +sg25270 +S'Marc Dautry' +p182007 +sa(dp182008 +g25268 +S'Apparition' +p182009 +sg25270 +S'Arthur B. Davies' +p182010 +sg25273 +S'softground etching and drypoint in black on wove paper' +p182011 +sg25275 +S'1914' +p182012 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f4/a000f44a.jpg' +p182013 +sg25267 +g27 +sa(dp182014 +g25268 +S'Figures of Earth' +p182015 +sg25270 +S'Arthur B. Davies' +p182016 +sg25273 +S'lithograph in black over gray lithotint' +p182017 +sg25275 +S'1920' +p182018 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a6e.jpg' +p182019 +sg25267 +g27 +sa(dp182020 +g25273 +S'etching and aquatint' +p182021 +sg25267 +g27 +sg25275 +S'1960' +p182022 +sg25268 +S'Conformists' +p182023 +sg25270 +S'Ted Davies' +p182024 +sa(dp182025 +g25273 +S', 1490s' +p182026 +sg25267 +g27 +sg25275 +S'\n' +p182027 +sg25268 +S'Madonna and Child with Saints and Donors' +p182028 +sg25270 +S'Gasparo Cairano' +p182029 +sa(dp182030 +g25268 +S'Un caballero espanol en plaza quebrando rejoncillos sin auxilio de los chulos (A Spanish Mounted Knight in the Ring Breaking Short Spears without the Help of Assistants)' +p182031 +sg25270 +S'Francisco de Goya' +p182032 +sg25273 +S'etching, burnished aquatint, drypoint and burin [first edition impression]' +p182033 +sg25275 +S'in or before 1816' +p182034 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed7d.jpg' +p182035 +sg25267 +g27 +sa(dp182036 +g25273 +S'color woodcut' +p182037 +sg25267 +g27 +sg25275 +S'1960' +p182038 +sg25268 +S"Merritt's Foods" +p182039 +sg25270 +S'Ted Davies' +p182040 +sa(dp182041 +g25273 +S'woodcut in black (then gilded over a printed red base with gold leaf or bronze?)' +p182042 +sg25267 +g27 +sg25275 +S'1959' +p182043 +sg25268 +S'Stock Market' +p182044 +sg25270 +S'Ted Davies' +p182045 +sa(dp182046 +g25268 +S'The Slave Market [recto]' +p182047 +sg25270 +S'Alexandre-Gabriel Decamps' +p182048 +sg25273 +S'pen and black ink with charcoal, gray wash, and white chalk on gray paper' +p182049 +sg25275 +S'unknown date\n' +p182050 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fe6.jpg' +p182051 +sg25267 +g27 +sa(dp182052 +g25273 +S'black chalk on gray paper' +p182053 +sg25267 +g27 +sg25275 +S'unknown date\n' +p182054 +sg25268 +S'Mounted Arab and Slaves [verso]' +p182055 +sg25270 +S'Alexandre-Gabriel Decamps' +p182056 +sa(dp182057 +g25268 +S'After the Bath (La sortie du bain (Petite planche))' +p182058 +sg25270 +S'Edgar Degas' +p182059 +sg25273 +S'lithograph' +p182060 +sg25275 +S'c. 1891' +p182061 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a000673e.jpg' +p182062 +sg25267 +g27 +sa(dp182063 +g25273 +S'3-color lithograph on BFK RIVES paper' +p182064 +sg25267 +g27 +sg25275 +S'1963' +p182065 +sg25268 +S'Italian Night' +p182066 +sg25270 +S'Adolf Arthur Dehn' +p182067 +sa(dp182068 +g25268 +S'Africa' +p182069 +sg25270 +S'Etienne Delaune' +p182070 +sg25273 +S'engraving' +p182071 +sg25275 +S'1575' +p182072 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008319.jpg' +p182073 +sg25267 +g27 +sa(dp182074 +g25268 +S'America' +p182075 +sg25270 +S'Etienne Delaune' +p182076 +sg25273 +S'engraving' +p182077 +sg25275 +S'1575' +p182078 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008318.jpg' +p182079 +sg25267 +g27 +sa(dp182080 +g25268 +S'Asia' +p182081 +sg25270 +S'Etienne Delaune' +p182082 +sg25273 +S'engraving' +p182083 +sg25275 +S'1575' +p182084 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000831a.jpg' +p182085 +sg25267 +g27 +sa(dp182086 +g25268 +S'Europe' +p182087 +sg25270 +S'Etienne Delaune' +p182088 +sg25273 +S'engraving' +p182089 +sg25275 +S'1575' +p182090 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000831b.jpg' +p182091 +sg25267 +g27 +sa(dp182092 +g25268 +S'El diestrisimo estudiante de Falces, embozadoburla al toro con sus quiebros (The Very Skillful Student of Falces, Wrapped in His Cape, Tricks the Bull with the Play of His Body)' +p182093 +sg25270 +S'Francisco de Goya' +p182094 +sg25273 +S'etching, aquatint, drypoint and burin [first edition impression]' +p182095 +sg25275 +S'in or before 1816' +p182096 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed7e.jpg' +p182097 +sg25267 +g27 +sa(dp182098 +g25268 +S'Latona Insulted' +p182099 +sg25270 +S'Etienne Delaune' +p182100 +sg25273 +S'engraving' +p182101 +sg25275 +S'unknown date\n' +p182102 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008317.jpg' +p182103 +sg25267 +g27 +sa(dp182104 +g25268 +S'Apollo Killing Python' +p182105 +sg25270 +S'Etienne Delaune' +p182106 +sg25273 +S'engraving' +p182107 +sg25275 +S'unknown date\n' +p182108 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008313.jpg' +p182109 +sg25267 +g27 +sa(dp182110 +g25268 +S'Diana and Orion' +p182111 +sg25270 +S'Etienne Delaune' +p182112 +sg25273 +S'engraving' +p182113 +sg25275 +S'unknown date\n' +p182114 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008316.jpg' +p182115 +sg25267 +g27 +sa(dp182116 +g25268 +S'Britomartis Jumps into the Sea' +p182117 +sg25270 +S'Etienne Delaune' +p182118 +sg25273 +S'engraving' +p182119 +sg25275 +S'unknown date\n' +p182120 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008315.jpg' +p182121 +sg25267 +g27 +sa(dp182122 +g25268 +S'Orion Killed by Apollo' +p182123 +sg25270 +S'Etienne Delaune' +p182124 +sg25273 +S'engraving' +p182125 +sg25275 +S'unknown date\n' +p182126 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008312.jpg' +p182127 +sg25267 +g27 +sa(dp182128 +g25268 +S'Diana Mourning the Death of Orion' +p182129 +sg25270 +S'Etienne Delaune' +p182130 +sg25273 +S'engraving' +p182131 +sg25275 +S'unknown date\n' +p182132 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008314.jpg' +p182133 +sg25267 +g27 +sa(dp182134 +g25268 +S'Venus Extracting a Thorn from Her Foot' +p182135 +sg25270 +S'Artist Information (' +p182136 +sg25273 +S'(artist after)' +p182137 +sg25275 +S'\n' +p182138 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbae.jpg' +p182139 +sg25267 +g27 +sa(dp182140 +g25273 +S'lithograph (stone) on Arches paper' +p182141 +sg25267 +g27 +sg25275 +S'1962' +p182142 +sg25268 +S'Untitled [left half]' +p182143 +sg25270 +S'John Paul Jones' +p182144 +sa(dp182145 +g25273 +S'lithograph (stone) on Arches paper' +p182146 +sg25267 +g27 +sg25275 +S'1962' +p182147 +sg25268 +S'Untitled [right half]' +p182148 +sg25270 +S'John Paul Jones' +p182149 +sa(dp182150 +g25273 +S'etching' +p182151 +sg25267 +g27 +sg25275 +S'unknown date\n' +p182152 +sg25268 +S'The Games of Marbles' +p182153 +sg25270 +S'Henry-Wilfred Deville' +p182154 +sa(dp182155 +g25268 +S'El famoso Martincho poniendo banderillas al quiebro (The Famous Martincho Places the Banderillas Playing the Bull with the Movement of His Body)' +p182156 +sg25270 +S'Francisco de Goya' +p182157 +sg25273 +S'etching, burnished aquatint, drypoint and burin [first edition impression]' +p182158 +sg25275 +S'in or before 1816' +p182159 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed7f.jpg' +p182160 +sg25267 +g27 +sa(dp182161 +g25273 +S'color lithograph' +p182162 +sg25267 +g27 +sg25275 +S'1960' +p182163 +sg25268 +S'Still Life and Flowers' +p182164 +sg25270 +S'Marie Markovna Djagupova' +p182165 +sa(dp182166 +g25268 +S'Comte Lepic' +p182167 +sg25270 +S'Marcellin-Gilbert Desboutin' +p182168 +sg25273 +S'etching and drypoint' +p182169 +sg25275 +S'1876' +p182170 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095c6.jpg' +p182171 +sg25267 +g27 +sa(dp182172 +g25273 +S'etching' +p182173 +sg25267 +g27 +sg25275 +S'unknown date\n' +p182174 +sg25268 +S'Old Tibetan Lama' +p182175 +sg25270 +S'G. Douglas' +p182176 +sa(dp182177 +g25273 +S'etching' +p182178 +sg25267 +g27 +sg25275 +S'unknown date\n' +p182179 +sg25268 +S'Sherpa Woman, Darjeeling' +p182180 +sg25270 +S'G. Douglas' +p182181 +sa(dp182182 +g25273 +S'etching' +p182183 +sg25267 +g27 +sg25275 +S'unknown date\n' +p182184 +sg25268 +S'Tenzing Norgay' +p182185 +sg25270 +S'G. Douglas' +p182186 +sa(dp182187 +g25273 +S'etching' +p182188 +sg25267 +g27 +sg25275 +S'unknown date\n' +p182189 +sg25268 +S'Tibetan Devil-Dancer' +p182190 +sg25270 +S'G. Douglas' +p182191 +sa(dp182192 +g25273 +S'etching' +p182193 +sg25267 +g27 +sg25275 +S'unknown date\n' +p182194 +sg25268 +S'Tibetan Gypsy' +p182195 +sg25270 +S'G. Douglas' +p182196 +sa(dp182197 +g25273 +S'etching' +p182198 +sg25267 +g27 +sg25275 +S'unknown date\n' +p182199 +sg25268 +S'Tibetan Mendicant Lama, Darjeeling' +p182200 +sg25270 +S'G. Douglas' +p182201 +sa(dp182202 +g25273 +S'etching' +p182203 +sg25267 +g27 +sg25275 +S'unknown date\n' +p182204 +sg25268 +S'Tibetan Mendicant Lama, Darjeeling' +p182205 +sg25270 +S'G. Douglas' +p182206 +sa(dp182207 +g25273 +S'etching' +p182208 +sg25267 +g27 +sg25275 +S'unknown date\n' +p182209 +sg25268 +S'Tibetan Vendor, Darjeeling' +p182210 +sg25270 +S'G. Douglas' +p182211 +sa(dp182212 +g25268 +S'El mismo vuelca un toro en la plaza de Madrid (The Same Man Throws a Bull in the Ring at Madrid)' +p182213 +sg25270 +S'Francisco de Goya' +p182214 +sg25273 +S'etching, burnished aquatint, drypoint and burin [first edition impression]' +p182215 +sg25275 +S'in or before 1816' +p182216 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed80.jpg' +p182217 +sg25267 +g27 +sa(dp182218 +g25273 +S'hand-colored? mixed intaglio on yellow paper' +p182219 +sg25267 +g27 +sg25275 +S'1948' +p182220 +sg25268 +S'Fruit Life' +p182221 +sg25270 +S'Stella Drabkin' +p182222 +sa(dp182223 +g25273 +S'monotype over etching?' +p182224 +sg25267 +g27 +sg25275 +S'1955' +p182225 +sg25268 +S'Lady with Necklace' +p182226 +sg25270 +S'Stella Drabkin' +p182227 +sa(dp182228 +g25268 +S'Portrait of a Man' +p182229 +sg25270 +S'Honore-Jean Dubois Duperray' +p182230 +sg25273 +S'lithograph' +p182231 +sg25275 +S'1816' +p182232 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009857.jpg' +p182233 +sg25267 +g27 +sa(dp182234 +g25273 +S', c. 1531/1533' +p182235 +sg25267 +g27 +sg25275 +S'\n' +p182236 +sg25268 +S'Pitcher' +p182237 +sg25270 +S'Jacques Androuet du Cerceau' +p182238 +sa(dp182239 +g25273 +S', c. 1531/1533' +p182240 +sg25267 +g27 +sg25275 +S'\n' +p182241 +sg25268 +S'Album of Vases, Pitchers, Chalices, etc.' +p182242 +sg25270 +S'Jacques Androuet du Cerceau' +p182243 +sa(dp182244 +g25273 +S', c. 1531/1533' +p182245 +sg25267 +g27 +sg25275 +S'\n' +p182246 +sg25268 +S'Pitcher' +p182247 +sg25270 +S'Jacques Androuet du Cerceau' +p182248 +sa(dp182249 +g25273 +S', c. 1531/1533' +p182250 +sg25267 +g27 +sg25275 +S'\n' +p182251 +sg25268 +S'Pitcher' +p182252 +sg25270 +S'Jacques Androuet du Cerceau' +p182253 +sa(dp182254 +g25273 +S', c. 1531/1533' +p182255 +sg25267 +g27 +sg25275 +S'\n' +p182256 +sg25268 +S'Pitcher' +p182257 +sg25270 +S'Jacques Androuet du Cerceau' +p182258 +sa(dp182259 +g25273 +S', c. 1531/1533' +p182260 +sg25267 +g27 +sg25275 +S'\n' +p182261 +sg25268 +S'Pitcher' +p182262 +sg25270 +S'Jacques Androuet du Cerceau' +p182263 +sa(dp182264 +g25273 +S', c. 1531/1533' +p182265 +sg25267 +g27 +sg25275 +S'\n' +p182266 +sg25268 +S'Pitcher' +p182267 +sg25270 +S'Jacques Androuet du Cerceau' +p182268 +sa(dp182269 +g25268 +S'Palenque de los moros hecho con burros para defenderse del toro embolado (The Moors Use Donkeys as a Barrier to Defend Themselves against the Bull Whose Horns have been Tipped with Balls)' +p182270 +sg25270 +S'Francisco de Goya' +p182271 +sg25273 +S'etching, burnished aquatint, drypoint and burin [first edition impression]' +p182272 +sg25275 +S'in or before 1816' +p182273 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed81.jpg' +p182274 +sg25267 +g27 +sa(dp182275 +g25273 +S', c. 1531/1533' +p182276 +sg25267 +g27 +sg25275 +S'\n' +p182277 +sg25268 +S'Pitcher' +p182278 +sg25270 +S'Jacques Androuet du Cerceau' +p182279 +sa(dp182280 +g25273 +S', c. 1531/1533' +p182281 +sg25267 +g27 +sg25275 +S'\n' +p182282 +sg25268 +S'Pitcher' +p182283 +sg25270 +S'Jacques Androuet du Cerceau' +p182284 +sa(dp182285 +g25273 +S', c. 1531/1533' +p182286 +sg25267 +g27 +sg25275 +S'\n' +p182287 +sg25268 +S'Pitcher' +p182288 +sg25270 +S'Jacques Androuet du Cerceau' +p182289 +sa(dp182290 +g25273 +S', c. 1531/1533' +p182291 +sg25267 +g27 +sg25275 +S'\n' +p182292 +sg25268 +S'Pitcher' +p182293 +sg25270 +S'Jacques Androuet du Cerceau' +p182294 +sa(dp182295 +g25273 +S', c. 1531/1533' +p182296 +sg25267 +g27 +sg25275 +S'\n' +p182297 +sg25268 +S'Pitcher' +p182298 +sg25270 +S'Jacques Androuet du Cerceau' +p182299 +sa(dp182300 +g25273 +S', c. 1531/1533' +p182301 +sg25267 +g27 +sg25275 +S'\n' +p182302 +sg25268 +S'Pitcher' +p182303 +sg25270 +S'Jacques Androuet du Cerceau' +p182304 +sa(dp182305 +g25273 +S', c. 1531/1533' +p182306 +sg25267 +g27 +sg25275 +S'\n' +p182307 +sg25268 +S'Pitcher' +p182308 +sg25270 +S'Jacques Androuet du Cerceau' +p182309 +sa(dp182310 +g25273 +S', c. 1531/1533' +p182311 +sg25267 +g27 +sg25275 +S'\n' +p182312 +sg25268 +S'Pitcher' +p182313 +sg25270 +S'Jacques Androuet du Cerceau' +p182314 +sa(dp182315 +g25273 +S', c. 1531/1533' +p182316 +sg25267 +g27 +sg25275 +S'\n' +p182317 +sg25268 +S'Pitcher' +p182318 +sg25270 +S'Jacques Androuet du Cerceau' +p182319 +sa(dp182320 +g25273 +S', c. 1531/1533' +p182321 +sg25267 +g27 +sg25275 +S'\n' +p182322 +sg25268 +S'Pitcher' +p182323 +sg25270 +S'Jacques Androuet du Cerceau' +p182324 +sa(dp182325 +g25268 +S'Temeridad de martincho en la plaza de Zaragoza (The Daring of Martincho in the Ring a t Saragossa)' +p182326 +sg25270 +S'Francisco de Goya' +p182327 +sg25273 +S'etching, burnished aquatint and drypoint [first edition impression]' +p182328 +sg25275 +S'in or before 1816' +p182329 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed82.jpg' +p182330 +sg25267 +g27 +sa(dp182331 +g25273 +S', c. 1531/1533' +p182332 +sg25267 +g27 +sg25275 +S'\n' +p182333 +sg25268 +S'Pitcher' +p182334 +sg25270 +S'Jacques Androuet du Cerceau' +p182335 +sa(dp182336 +g25273 +S', c. 1531/1533' +p182337 +sg25267 +g27 +sg25275 +S'\n' +p182338 +sg25268 +S'Pitcher' +p182339 +sg25270 +S'Jacques Androuet du Cerceau' +p182340 +sa(dp182341 +g25273 +S', c. 1531/1533' +p182342 +sg25267 +g27 +sg25275 +S'\n' +p182343 +sg25268 +S'Pitcher' +p182344 +sg25270 +S'Jacques Androuet du Cerceau' +p182345 +sa(dp182346 +g25273 +S', c. 1531/1533' +p182347 +sg25267 +g27 +sg25275 +S'\n' +p182348 +sg25268 +S'Pitcher' +p182349 +sg25270 +S'Jacques Androuet du Cerceau' +p182350 +sa(dp182351 +g25273 +S', c. 1531/1533' +p182352 +sg25267 +g27 +sg25275 +S'\n' +p182353 +sg25268 +S'Pitcher' +p182354 +sg25270 +S'Jacques Androuet du Cerceau' +p182355 +sa(dp182356 +g25273 +S', c. 1531/1533' +p182357 +sg25267 +g27 +sg25275 +S'\n' +p182358 +sg25268 +S'Pitcher' +p182359 +sg25270 +S'Jacques Androuet du Cerceau' +p182360 +sa(dp182361 +g25273 +S', c. 1531/1533' +p182362 +sg25267 +g27 +sg25275 +S'\n' +p182363 +sg25268 +S'Pitcher' +p182364 +sg25270 +S'Jacques Androuet du Cerceau' +p182365 +sa(dp182366 +g25273 +S', c. 1531/1533' +p182367 +sg25267 +g27 +sg25275 +S'\n' +p182368 +sg25268 +S'Pitcher' +p182369 +sg25270 +S'Jacques Androuet du Cerceau' +p182370 +sa(dp182371 +g25273 +S', c. 1531/1533' +p182372 +sg25267 +g27 +sg25275 +S'\n' +p182373 +sg25268 +S'Pitcher' +p182374 +sg25270 +S'Jacques Androuet du Cerceau' +p182375 +sa(dp182376 +g25273 +S', c. 1531/1533' +p182377 +sg25267 +g27 +sg25275 +S'\n' +p182378 +sg25268 +S'Pitcher' +p182379 +sg25270 +S'Jacques Androuet du Cerceau' +p182380 +sa(dp182381 +g25268 +S'Otra locura suya en la misma plaza (Another Madness of His in the Same Ring)' +p182382 +sg25270 +S'Francisco de Goya' +p182383 +sg25273 +S'etching, burnished aquatint, drypoint and burin [first edition impression]' +p182384 +sg25275 +S'in or before 1816' +p182385 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed83.jpg' +p182386 +sg25267 +g27 +sa(dp182387 +g25273 +S', c. 1531/1533' +p182388 +sg25267 +g27 +sg25275 +S'\n' +p182389 +sg25268 +S'Pitcher' +p182390 +sg25270 +S'Jacques Androuet du Cerceau' +p182391 +sa(dp182392 +g25273 +S', c. 1531/1533' +p182393 +sg25267 +g27 +sg25275 +S'\n' +p182394 +sg25268 +S'Pitcher' +p182395 +sg25270 +S'Jacques Androuet du Cerceau' +p182396 +sa(dp182397 +g25273 +S', c. 1531/1533' +p182398 +sg25267 +g27 +sg25275 +S'\n' +p182399 +sg25268 +S'Pitcher' +p182400 +sg25270 +S'Jacques Androuet du Cerceau' +p182401 +sa(dp182402 +g25273 +S', c. 1531/1533' +p182403 +sg25267 +g27 +sg25275 +S'\n' +p182404 +sg25268 +S'Pitcher' +p182405 +sg25270 +S'Jacques Androuet du Cerceau' +p182406 +sa(dp182407 +g25273 +S', c. 1531/1533' +p182408 +sg25267 +g27 +sg25275 +S'\n' +p182409 +sg25268 +S'Pitcher' +p182410 +sg25270 +S'Jacques Androuet du Cerceau' +p182411 +sa(dp182412 +g25273 +S', c. 1531/1533' +p182413 +sg25267 +g27 +sg25275 +S'\n' +p182414 +sg25268 +S'Pitcher' +p182415 +sg25270 +S'Jacques Androuet du Cerceau' +p182416 +sa(dp182417 +g25273 +S', c. 1531/1533' +p182418 +sg25267 +g27 +sg25275 +S'\n' +p182419 +sg25268 +S'Pitcher' +p182420 +sg25270 +S'Jacques Androuet du Cerceau' +p182421 +sa(dp182422 +g25273 +S', c. 1531/1533' +p182423 +sg25267 +g27 +sg25275 +S'\n' +p182424 +sg25268 +S'Pitcher' +p182425 +sg25270 +S'Jacques Androuet du Cerceau' +p182426 +sa(dp182427 +g25273 +S', c. 1531/1533' +p182428 +sg25267 +g27 +sg25275 +S'\n' +p182429 +sg25268 +S'Pitcher' +p182430 +sg25270 +S'Jacques Androuet du Cerceau' +p182431 +sa(dp182432 +g25273 +S', c. 1531/1533' +p182433 +sg25267 +g27 +sg25275 +S'\n' +p182434 +sg25268 +S'Pitcher' +p182435 +sg25270 +S'Jacques Androuet du Cerceau' +p182436 +sa(dp182437 +g25268 +S'Ligereza y atrevimiento de Juanito Apinani en la de Madrid (The Agility and Audacityof Juanito Apinani in the Ring at Madrid)' +p182438 +sg25270 +S'Francisco de Goya' +p182439 +sg25273 +S'etching and aquatint [first edition impression]' +p182440 +sg25275 +S'in or before 1816' +p182441 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed84.jpg' +p182442 +sg25267 +g27 +sa(dp182443 +g25273 +S', c. 1531/1533' +p182444 +sg25267 +g27 +sg25275 +S'\n' +p182445 +sg25268 +S'Pitcher' +p182446 +sg25270 +S'Jacques Androuet du Cerceau' +p182447 +sa(dp182448 +g25273 +S', c. 1531/1533' +p182449 +sg25267 +g27 +sg25275 +S'\n' +p182450 +sg25268 +S'Pitcher' +p182451 +sg25270 +S'Jacques Androuet du Cerceau' +p182452 +sa(dp182453 +g25273 +S', c. 1531/1533' +p182454 +sg25267 +g27 +sg25275 +S'\n' +p182455 +sg25268 +S'Pitcher' +p182456 +sg25270 +S'Jacques Androuet du Cerceau' +p182457 +sa(dp182458 +g25273 +S', c. 1531/1533' +p182459 +sg25267 +g27 +sg25275 +S'\n' +p182460 +sg25268 +S'Saltcellar' +p182461 +sg25270 +S'Jacques Androuet du Cerceau' +p182462 +sa(dp182463 +g25273 +S', c. 1531/1533' +p182464 +sg25267 +g27 +sg25275 +S'\n' +p182465 +sg25268 +S'Amphora' +p182466 +sg25270 +S'Jacques Androuet du Cerceau' +p182467 +sa(dp182468 +g25273 +S', c. 1531/1533' +p182469 +sg25267 +g27 +sg25275 +S'\n' +p182470 +sg25268 +S'Amphora' +p182471 +sg25270 +S'Jacques Androuet du Cerceau' +p182472 +sa(dp182473 +g25273 +S', c. 1531/1533' +p182474 +sg25267 +g27 +sg25275 +S'\n' +p182475 +sg25268 +S'Amphora' +p182476 +sg25270 +S'Jacques Androuet du Cerceau' +p182477 +sa(dp182478 +g25273 +S', c. 1531/1533' +p182479 +sg25267 +g27 +sg25275 +S'\n' +p182480 +sg25268 +S'Amphora' +p182481 +sg25270 +S'Jacques Androuet du Cerceau' +p182482 +sa(dp182483 +g25273 +S', c. 1531/1533' +p182484 +sg25267 +g27 +sg25275 +S'\n' +p182485 +sg25268 +S'Amphora' +p182486 +sg25270 +S'Jacques Androuet du Cerceau' +p182487 +sa(dp182488 +g25273 +S', c. 1531/1533' +p182489 +sg25267 +g27 +sg25275 +S'\n' +p182490 +sg25268 +S'Amphora' +p182491 +sg25270 +S'Jacques Androuet du Cerceau' +p182492 +sa(dp182493 +g25268 +S'Desgracias acaecidas en el tendido de la plaza de Madrid, y muerte del alcalde de Tor rejon (Dreadful events in the Front Rows of the Ring at Madrid and Death of the Mayor of Torrejon)' +p182494 +sg25270 +S'Francisco de Goya' +p182495 +sg25273 +S'etching, burnished aquatint, lavis, drypoint and burin [first edition impression]' +p182496 +sg25275 +S'in or before 1816' +p182497 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed85.jpg' +p182498 +sg25267 +g27 +sa(dp182499 +g25273 +S', c. 1531/1533' +p182500 +sg25267 +g27 +sg25275 +S'\n' +p182501 +sg25268 +S'Amphora' +p182502 +sg25270 +S'Jacques Androuet du Cerceau' +p182503 +sa(dp182504 +g25273 +S', c. 1531/1533' +p182505 +sg25267 +g27 +sg25275 +S'\n' +p182506 +sg25268 +S'Amphora' +p182507 +sg25270 +S'Jacques Androuet du Cerceau' +p182508 +sa(dp182509 +g25273 +S', c. 1531/1533' +p182510 +sg25267 +g27 +sg25275 +S'\n' +p182511 +sg25268 +S'Amphora' +p182512 +sg25270 +S'Jacques Androuet du Cerceau' +p182513 +sa(dp182514 +g25273 +S', c. 1531/1533' +p182515 +sg25267 +g27 +sg25275 +S'\n' +p182516 +sg25268 +S'Amphora' +p182517 +sg25270 +S'Jacques Androuet du Cerceau' +p182518 +sa(dp182519 +g25273 +S', c. 1531/1533' +p182520 +sg25267 +g27 +sg25275 +S'\n' +p182521 +sg25268 +S'Amphora' +p182522 +sg25270 +S'Jacques Androuet du Cerceau' +p182523 +sa(dp182524 +g25273 +S', c. 1531/1533' +p182525 +sg25267 +g27 +sg25275 +S'\n' +p182526 +sg25268 +S'Three Beakers' +p182527 +sg25270 +S'Jacques Androuet du Cerceau' +p182528 +sa(dp182529 +g25273 +S', c. 1531/1533' +p182530 +sg25267 +g27 +sg25275 +S'\n' +p182531 +sg25268 +S'Chalice' +p182532 +sg25270 +S'Jacques Androuet du Cerceau' +p182533 +sa(dp182534 +g25273 +S', c. 1531/1533' +p182535 +sg25267 +g27 +sg25275 +S'\n' +p182536 +sg25268 +S'Chalice' +p182537 +sg25270 +S'Jacques Androuet du Cerceau' +p182538 +sa(dp182539 +g25273 +S', c. 1531/1533' +p182540 +sg25267 +g27 +sg25275 +S'\n' +p182541 +sg25268 +S'Chalice' +p182542 +sg25270 +S'Jacques Androuet du Cerceau' +p182543 +sa(dp182544 +g25273 +S', c. 1531/1533' +p182545 +sg25267 +g27 +sg25275 +S'\n' +p182546 +sg25268 +S'Chalice' +p182547 +sg25270 +S'Jacques Androuet du Cerceau' +p182548 +sa(dp182549 +g25268 +S'Valor varonil de la celebre Pajuelera en la de Zaragoza (Manly Courage of the Celebrated Pajuelera in the Ring at Saragossa)' +p182550 +sg25270 +S'Francisco de Goya' +p182551 +sg25273 +S'etching, burnished aquatint, drypoint and burin [first edition impression]' +p182552 +sg25275 +S'in or before 1816' +p182553 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed86.jpg' +p182554 +sg25267 +g27 +sa(dp182555 +g25273 +S', c. 1531/1533' +p182556 +sg25267 +g27 +sg25275 +S'\n' +p182557 +sg25268 +S'Chalice' +p182558 +sg25270 +S'Jacques Androuet du Cerceau' +p182559 +sa(dp182560 +g25273 +S', c. 1531/1533' +p182561 +sg25267 +g27 +sg25275 +S'\n' +p182562 +sg25268 +S'Chalice' +p182563 +sg25270 +S'Jacques Androuet du Cerceau' +p182564 +sa(dp182565 +g25273 +S', c. 1531/1533' +p182566 +sg25267 +g27 +sg25275 +S'\n' +p182567 +sg25268 +S'Chalice' +p182568 +sg25270 +S'Jacques Androuet du Cerceau' +p182569 +sa(dp182570 +g25273 +S', c. 1531/1533' +p182571 +sg25267 +g27 +sg25275 +S'\n' +p182572 +sg25268 +S'Chalice' +p182573 +sg25270 +S'Jacques Androuet du Cerceau' +p182574 +sa(dp182575 +g25273 +S', c. 1531/1533' +p182576 +sg25267 +g27 +sg25275 +S'\n' +p182577 +sg25268 +S'Chalice' +p182578 +sg25270 +S'Jacques Androuet du Cerceau' +p182579 +sa(dp182580 +g25273 +S', c. 1531/1533' +p182581 +sg25267 +g27 +sg25275 +S'\n' +p182582 +sg25268 +S'Chalice' +p182583 +sg25270 +S'Jacques Androuet du Cerceau' +p182584 +sa(dp182585 +g25273 +S'graphite on paperboard' +p182586 +sg25267 +g27 +sg25275 +S'1929/1930' +p182587 +sg25268 +S'Eug\xc3\xa8ne Montfort' +p182588 +sg25270 +S'Raoul Dufy' +p182589 +sa(dp182590 +g25268 +S'Sappho' +p182591 +sg25270 +S'Maurice Dumont' +p182592 +sg25273 +S'metal foil plate for glyptograph' +p182593 +sg25275 +S'unknown date\n' +p182594 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095cc.jpg' +p182595 +sg25267 +g27 +sa(dp182596 +g25268 +S'Sappho' +p182597 +sg25270 +S'Maurice Dumont' +p182598 +sg25273 +S'glyptograph' +p182599 +sg25275 +S'unknown date\n' +p182600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095ca.jpg' +p182601 +sg25267 +g27 +sa(dp182602 +g25268 +S'The Betrothal of Philip the Fair with Joan of Castile' +p182603 +sg25270 +S'Albrecht D\xc3\xbcrer' +p182604 +sg25273 +S'woodcut' +p182605 +sg25275 +S'1515' +p182606 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066d9.jpg' +p182607 +sg25267 +g27 +sa(dp182608 +g25268 +S'Mariano Ceballos, alias el Indio, mata el toro desde su caballo (Mariano Ceballos, Alias the Indian, Kills the Bull from His Horse)' +p182609 +sg25270 +S'Francisco de Goya' +p182610 +sg25273 +S'etching and burnished aquatint [first edition impression]' +p182611 +sg25275 +S'in or before 1816' +p182612 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed87.jpg' +p182613 +sg25267 +g27 +sa(dp182614 +g25268 +S'Printed text for "The Betrothal of Philip the Fair with Joan of Castile"' +p182615 +sg25270 +S'Albrecht D\xc3\xbcrer' +p182616 +sg25273 +S'woodcut' +p182617 +sg25275 +S'1515' +p182618 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066da.jpg' +p182619 +sg25267 +g27 +sa(dp182620 +g25268 +S'The Betrothal of Maximilian with Mary of Burgundy' +p182621 +sg25270 +S'Albrecht D\xc3\xbcrer' +p182622 +sg25273 +S'woodcut' +p182623 +sg25275 +S'1511' +p182624 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00062/a0006205.jpg' +p182625 +sg25267 +g27 +sa(dp182626 +g25268 +S'Printed text for "The Betrothal of Maximilian with Mary of Burgundy"' +p182627 +sg25270 +S'Albrecht D\xc3\xbcrer' +p182628 +sg25273 +S'woodcut' +p182629 +sg25275 +S'1515' +p182630 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac57.jpg' +p182631 +sg25267 +g27 +sa(dp182632 +g25268 +S'The Rhinoceros' +p182633 +sg25270 +S'Albrecht D\xc3\xbcrer' +p182634 +sg25273 +S'woodcut' +p182635 +sg25275 +S'1515' +p182636 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00016/a0001639.jpg' +p182637 +sg25267 +g27 +sa(dp182638 +g25273 +S'cliche-verre in shades of brown and red' +p182639 +sg25267 +g27 +sg25275 +S'probably 1961' +p182640 +sg25268 +S'Dinosaur Egg' +p182641 +sg25270 +S'Caroline Wogan Durieux' +p182642 +sa(dp182643 +g25273 +S'lithograph in black and pink' +p182644 +sg25267 +g27 +sg25275 +S'probably 1961' +p182645 +sg25268 +S'Frightened Witches' +p182646 +sg25270 +S'Caroline Wogan Durieux' +p182647 +sa(dp182648 +g25273 +S'lithograph in green and brown' +p182649 +sg25267 +g27 +sg25275 +S'possibly c. 1960' +p182650 +sg25268 +S'Insomnia' +p182651 +sg25270 +S'Caroline Wogan Durieux' +p182652 +sa(dp182653 +g25273 +S'electron print' +p182654 +sg25267 +g27 +sg25275 +S'possibly 1961' +p182655 +sg25268 +S"Lot's Wife" +p182656 +sg25270 +S'Caroline Wogan Durieux' +p182657 +sa(dp182658 +g25273 +S'etching, aquatint and drypoint' +p182659 +sg25267 +g27 +sg25275 +S'1946' +p182660 +sg25268 +S'Cow Shed' +p182661 +sg25270 +S'Kerr Eby' +p182662 +sa(dp182663 +g25273 +S'five-color etching and aquatint' +p182664 +sg25267 +g27 +sg25275 +S'1960' +p182665 +sg25268 +S'Tidal Patterns' +p182666 +sg25270 +S'Otto Eglau' +p182667 +sa(dp182668 +g25268 +S'El mismo Ceballos montado sobre otro toro quiebra rejones en la plaza de Madrid (The Same Ceballos Mounted on Another Bull Breaks Short Spears in the Ring at Madrid)' +p182669 +sg25270 +S'Francisco de Goya' +p182670 +sg25273 +S'etching, burnished aquatint, drypoint and burin [first edition impression]' +p182671 +sg25275 +S'in or before 1816' +p182672 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed88.jpg' +p182673 +sg25267 +g27 +sa(dp182674 +g25273 +S'etching and aquatint' +p182675 +sg25267 +g27 +sg25275 +S'unknown date\n' +p182676 +sg25268 +S'Shadows' +p182677 +sg25270 +S'Van Elliott' +p182678 +sa(dp182679 +g25273 +S'etching and aquatint' +p182680 +sg25267 +g27 +sg25275 +S'unknown date\n' +p182681 +sg25268 +S'Sit In Sit Down' +p182682 +sg25270 +S'Van Elliott' +p182683 +sa(dp182684 +g25273 +S'etching and aquatint' +p182685 +sg25267 +g27 +sg25275 +S'unknown date\n' +p182686 +sg25268 +S'Spirituals' +p182687 +sg25270 +S'Van Elliott' +p182688 +sa(dp182689 +g25273 +S'(artist after)' +p182690 +sg25267 +g27 +sg25275 +S'\n' +p182691 +sg25268 +S"Recueil d'essais lithographique" +p182692 +sg25270 +S'Artist Information (' +p182693 +sa(dp182694 +g25273 +S'lithograph in four colors' +p182695 +sg25267 +g27 +sg25275 +S'unknown date\n' +p182696 +sg25268 +S'Man of Jomon Age' +p182697 +sg25270 +S'Shoe Enokido' +p182698 +sa(dp182699 +g25273 +S'drypoint' +p182700 +sg25267 +g27 +sg25275 +S'1888' +p182701 +sg25268 +S"The Acacia (L'acacia)" +p182702 +sg25270 +S'James Ensor' +p182703 +sa(dp182704 +g25273 +S'etching and (aquatint?)' +p182705 +sg25267 +g27 +sg25275 +S'1889' +p182706 +sg25268 +S'The Bridge in the Woods, Ostend (Le pont du bois a Ostende)' +p182707 +sg25270 +S'James Ensor' +p182708 +sa(dp182709 +g25273 +S'etching' +p182710 +sg25267 +g27 +sg25275 +S'1895' +p182711 +sg25268 +S'Christ and the Beggars (Le Christ aux mendiants)' +p182712 +sg25270 +S'James Ensor' +p182713 +sa(dp182714 +g25273 +S'etching' +p182715 +sg25267 +g27 +sg25275 +S'1888' +p182716 +sg25268 +S"Stand of Trees (Bouquet d'arbres)" +p182717 +sg25270 +S'James Ensor' +p182718 +sa(dp182719 +g25273 +S'1 vol: ill: frontispiece, 13 color lithographs and text by Ensor and others, including Ensor\'s "Discours en noble languaige le chevalerie"' +p182720 +sg25267 +g27 +sg25275 +S'published 1904' +p182721 +sg25268 +S'Les Ecus' +p182722 +sg25270 +S'James Ensor' +p182723 +sa(dp182724 +g25268 +S'Echan perros al toro (They Loose Dogs on the Bull)' +p182725 +sg25270 +S'Francisco de Goya' +p182726 +sg25273 +S'etching, burnished aquatint and drypoint [first edition impression]' +p182727 +sg25275 +S'in or before 1816' +p182728 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed89.jpg' +p182729 +sg25267 +g27 +sa(dp182730 +g25273 +S'lithograph on Nacre paper' +p182731 +sg25267 +g27 +sg25275 +S'1962' +p182732 +sg25268 +S'Untitled' +p182733 +sg25270 +S'John Paul Jones' +p182734 +sa(dp182735 +g25273 +S'etching' +p182736 +sg25267 +g27 +sg25275 +S'1889' +p182737 +sg25268 +S"The Exterminating Angel (L'ange exterminateur)" +p182738 +sg25270 +S'James Ensor' +p182739 +sa(dp182740 +g25273 +S'etching' +p182741 +sg25267 +g27 +sg25275 +S'1887' +p182742 +sg25268 +S'Edge of the Forest in Ostend (La lisiere du petit bois, Ostende)' +p182743 +sg25270 +S'James Ensor' +p182744 +sa(dp182745 +g25273 +S'etching with drypoint' +p182746 +sg25267 +g27 +sg25275 +S'1898' +p182747 +sg25268 +S"The Entry of Christ into Brussels (L'entree du Christ a Bruxelles)" +p182748 +sg25270 +S'James Ensor' +p182749 +sa(dp182750 +g25273 +S'etching' +p182751 +sg25267 +g27 +sg25275 +S'1888' +p182752 +sg25268 +S'A Gust of Wind at the Edge of the Forest (Coup de vent a la lisiere)' +p182753 +sg25270 +S'James Ensor' +p182754 +sa(dp182755 +g25273 +S'etching' +p182756 +sg25267 +g27 +sg25275 +S'1891' +p182757 +sg25268 +S'Feeding of the Five Thousand (La multiplication des poissons)' +p182758 +sg25270 +S'James Ensor' +p182759 +sa(dp182760 +g25273 +S'etching' +p182761 +sg25267 +g27 +sg25275 +S'1886' +p182762 +sg25268 +S'Orchard (Le Verger)' +p182763 +sg25270 +S'James Ensor' +p182764 +sa(dp182765 +g25273 +S'color lithograph' +p182766 +sg25267 +g27 +sg25275 +S'1958' +p182767 +sg25268 +S'Flowers in a Vase' +p182768 +sg25270 +S'Boris Nicolaevich Ermolaev' +p182769 +sa(dp182770 +g25273 +S'color lithograph' +p182771 +sg25267 +g27 +sg25275 +S'1956' +p182772 +sg25268 +S'Seaside' +p182773 +sg25270 +S'Boris Nicolaevich Ermolaev' +p182774 +sa(dp182775 +g25273 +S'color lithograph' +p182776 +sg25267 +g27 +sg25275 +S'1956' +p182777 +sg25268 +S'Stadium' +p182778 +sg25270 +S'Boris Nicolaevich Ermolaev' +p182779 +sa(dp182780 +g25268 +S'Caida de un picador de su caballo debajo del toro (A Picador is Unhorsed and Falls under the Bull)' +p182781 +sg25270 +S'Francisco de Goya' +p182782 +sg25273 +S'etching, burnished aquatint and drypoint [first edition impression]' +p182783 +sg25275 +S'in or before 1816' +p182784 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005787.jpg' +p182785 +sg25267 +g27 +sa(dp182786 +g25273 +S'color lithograph' +p182787 +sg25267 +g27 +sg25275 +S'1958' +p182788 +sg25268 +S'Windows and Plants' +p182789 +sg25270 +S'Boris Nicolaevich Ermolaev' +p182790 +sa(dp182791 +g25273 +S'etching and aquatint in blue-gray and pale pink' +p182792 +sg25267 +g27 +sg25275 +S'1961' +p182793 +sg25268 +S'Homage to Rimbaud (Hommage a Rimbaud)' +p182794 +sg25270 +S'Max Ernst' +p182795 +sa(dp182796 +g25273 +S'etching in black and yellow-green' +p182797 +sg25267 +g27 +sg25275 +S'1955' +p182798 +sg25268 +S'Jacket cover for Antonin Artaud\'s "Galapagos-Les Iles du bout du monde", Paris, 1955' +p182799 +sg25270 +S'Max Ernst' +p182800 +sa(dp182801 +g25268 +S'Belvedere' +p182802 +sg25270 +S'M.C. Escher' +p182803 +sg25273 +S'lithograph' +p182804 +sg25275 +S'1958' +p182805 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b46.jpg' +p182806 +sg25267 +g27 +sa(dp182807 +g25273 +S'wood engraving on white calendered paper' +p182808 +sg25267 +g27 +sg25275 +S'1953' +p182809 +sg25268 +S'Concentric Rinds' +p182810 +sg25270 +S'M.C. Escher' +p182811 +sa(dp182812 +g25268 +S'El celebre Fernando del Toro, barilarguero, obligando a la fiera con su garrocha (The celebrated Picador, Fernando del Toro, Draws the Fierce Beast on with His Pique)' +p182813 +sg25270 +S'Francisco de Goya' +p182814 +sg25273 +S'etching, burnished aquatint, drypoint and burin [first edition impression]' +p182815 +sg25275 +S'in or before 1816' +p182816 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed8a.jpg' +p182817 +sg25267 +g27 +sa(dp182818 +g25273 +S'lithograph' +p182819 +sg25267 +g27 +sg25275 +S'1951' +p182820 +sg25268 +S'Curl-up' +p182821 +sg25270 +S'M.C. Escher' +p182822 +sa(dp182823 +g25273 +S'mezzotint' +p182824 +sg25267 +g27 +sg25275 +S'1948' +p182825 +sg25268 +S'Plane Filling I' +p182826 +sg25270 +S'M.C. Escher' +p182827 +sa(dp182828 +g25273 +S'wood engraving and woodcut in brown-red, olive an d black, printed from three blocks' +p182829 +sg25267 +g27 +sg25275 +S'1955' +p182830 +sg25268 +S'Depth' +p182831 +sg25270 +S'M.C. Escher' +p182832 +sa(dp182833 +g25273 +S'mezzotint on beige Japan paper' +p182834 +sg25267 +g27 +sg25275 +S'1948' +p182835 +sg25268 +S'Drop' +p182836 +sg25270 +S'M.C. Escher' +p182837 +sa(dp182838 +g25268 +S'Double Planetoid' +p182839 +sg25270 +S'M.C. Escher' +p182840 +sg25273 +S'wood engraving in dark blue, black and brown, printed from three blocks' +p182841 +sg25275 +S'1949' +p182842 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b47.jpg' +p182843 +sg25267 +g27 +sa(dp182844 +g25273 +S'mezzotint and drypoint' +p182845 +sg25267 +g27 +sg25275 +S'1946' +p182846 +sg25268 +S'Eye' +p182847 +sg25270 +S'M.C. Escher' +p182848 +sa(dp182849 +g25268 +S'Hand with Reflecting Sphere' +p182850 +sg25270 +S'M.C. Escher' +p182851 +sg25273 +S'lithograph' +p182852 +sg25275 +S'1935' +p182853 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00015/a0001555.jpg' +p182854 +sg25267 +S"Escher and the interior of his studio in Rome are reflected in the mirrored sphere that he holds in his hand. Escher's preoccupation with mirrored reflections and visual illusion belongs to a tradition of northern European art established in the fifteenth century.\n " +p182855 +sa(dp182856 +g25268 +S'El esforzado Rendon picando un toro, de cuya suerte murio en plaza de Madrid (The Forceful Rendon Stabs a Bull with the Pique, from Which Pass He Died in the Ring at Madrid)' +p182857 +sg25270 +S'Francisco de Goya' +p182858 +sg25273 +S'etching, burnished aquatint, and burin [first edition impression]' +p182859 +sg25275 +S'in or before 1816' +p182860 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed8b.jpg' +p182861 +sg25267 +g27 +sa(dp182862 +g25268 +S'Up and Down' +p182863 +sg25270 +S'M.C. Escher' +p182864 +sg25273 +S'lithograph' +p182865 +sg25275 +S'1947' +p182866 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000108.jpg' +p182867 +sg25267 +g27 +sa(dp182868 +g25273 +S'mezzotint' +p182869 +sg25267 +g27 +sg25275 +S'1946' +p182870 +sg25268 +S'Mummified Frog' +p182871 +sg25270 +S'M.C. Escher' +p182872 +sa(dp182873 +g25268 +S'Contrast (Order and Chaos)' +p182874 +sg25270 +S'M.C. Escher' +p182875 +sg25273 +S'lithograph' +p182876 +sg25275 +S'1950' +p182877 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b9f.jpg' +p182878 +sg25267 +g27 +sa(dp182879 +g25268 +S'Print Gallery' +p182880 +sg25270 +S'M.C. Escher' +p182881 +sg25273 +S'lithograph' +p182882 +sg25275 +S'1956' +p182883 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000012a.jpg' +p182884 +sg25267 +g27 +sa(dp182885 +g25268 +S'Puddle' +p182886 +sg25270 +S'M.C. Escher' +p182887 +sg25273 +S'woodcut in black, olive and brown, printed from three blocks' +p182888 +sg25275 +S'1952' +p182889 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00022/a0002237.jpg' +p182890 +sg25267 +g27 +sa(dp182891 +g25268 +S'Reptiles' +p182892 +sg25270 +S'M.C. Escher' +p182893 +sg25273 +S'lithograph' +p182894 +sg25275 +S'1943' +p182895 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037b6.jpg' +p182896 +sg25267 +S'One of Escher\'s fascinations was the animation of an abstract concept. Here, the reptiles come to life as they crawl out of the artist\'s depiction of a drawing, only to return to it. Escher wrote of this print, "evidently one of the reptiles has tired of lying flat and rigid amongst his fellows, so he puts one plastic-looking leg over the edge [and] wrenches himself free...." The name "JOB" on the booklet at lower left does not indicate the biblical character but refers to a brand of Belgian cigarette papers. \n ' +p182897 +sa(dp182898 +g25268 +S'Pepe Illo haciendo el recorte al toro (Pepe Illo Making the Pass of the "Recorte")' +p182899 +sg25270 +S'Francisco de Goya' +p182900 +sg25273 +S'etching, burnished aquatint, drypoint and burin [first edition impression]' +p182901 +sg25275 +S'in or before 1816' +p182902 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed8c.jpg' +p182903 +sg25267 +g27 +sa(dp182904 +g25273 +S'wood engraving' +p182905 +sg25267 +g27 +sg25275 +S'1935' +p182906 +sg25268 +S"Inside Saint Peter's, Rome" +p182907 +sg25270 +S'M.C. Escher' +p182908 +sa(dp182909 +g25273 +S'woodcut in gold, black, and dark rust, printed from three blocks' +p182910 +sg25267 +g27 +sg25275 +S'1958' +p182911 +sg25268 +S'Sphere Surface with Fish' +p182912 +sg25270 +S'M.C. Escher' +p182913 +sa(dp182914 +g25268 +S'Three Intersecting Planes' +p182915 +sg25270 +S'M.C. Escher' +p182916 +sg25273 +S'woodcut in olive-gold and black, printed from two blocks' +p182917 +sg25275 +S'1954' +p182918 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b48.jpg' +p182919 +sg25267 +g27 +sa(dp182920 +g25273 +S'wood engraving' +p182921 +sg25267 +g27 +sg25275 +S'1945' +p182922 +sg25268 +S'Three Spheres I' +p182923 +sg25270 +S'M.C. Escher' +p182924 +sa(dp182925 +g25268 +S'Two Intersecting Planes' +p182926 +sg25270 +S'M.C. Escher' +p182927 +sg25273 +S'woodcut in green, red-brown and black, printed from three blocks' +p182928 +sg25275 +S'1952' +p182929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037b7.jpg' +p182930 +sg25267 +g27 +sa(dp182931 +g25268 +S'Pedro Romero matando a toro parado (Pedro Romero Killing the Halted Bull)' +p182932 +sg25270 +S'Francisco de Goya' +p182933 +sg25273 +S'etching, aquatint, drypoint and burin [first edition impression]' +p182934 +sg25275 +S'in or before 1816' +p182935 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed8d.jpg' +p182936 +sg25267 +g27 +sa(dp182937 +g25273 +S'wood engraving and woodcut in red, gray and black,printed from two (three?) blocks' +p182938 +sg25267 +g27 +sg25275 +S'1957' +p182939 +sg25268 +S'Whirlpools' +p182940 +sg25270 +S'M.C. Escher' +p182941 +sa(dp182942 +g25273 +S'woodcut on Japanese laid paper [proof]' +p182943 +sg25267 +g27 +sg25275 +S'1919' +p182944 +sg25268 +S'Troistedt (Lehnstedt)' +p182945 +sg25270 +S'Lyonel Feininger' +p182946 +sa(dp182947 +g25273 +S'engraving' +p182948 +sg25267 +g27 +sg25275 +S'1960' +p182949 +sg25268 +S'Title Page' +p182950 +sg25270 +S'Albert Flocon' +p182951 +sa(dp182952 +g25273 +S'portfolio with 32 engravings' +p182953 +sg25267 +g27 +sg25275 +S'published 1961' +p182954 +sg25268 +S'Topo-graphies' +p182955 +sg25270 +S'Albert Flocon' +p182956 +sa(dp182957 +g25273 +S'engraving' +p182958 +sg25267 +g27 +sg25275 +S'1960' +p182959 +sg25268 +S"Essai sur l'Espace de Graveur" +p182960 +sg25270 +S'Albert Flocon' +p182961 +sa(dp182962 +g25273 +S'engraving' +p182963 +sg25267 +g27 +sg25275 +S'1960' +p182964 +sg25268 +S'Balcony with Umbrellas' +p182965 +sg25270 +S'Albert Flocon' +p182966 +sa(dp182967 +g25273 +S'engraving' +p182968 +sg25267 +g27 +sg25275 +S'1961' +p182969 +sg25268 +S'"Cette Ligne" (Interior)' +p182970 +sg25270 +S'Albert Flocon' +p182971 +sa(dp182972 +g25273 +S'engraving' +p182973 +sg25267 +g27 +sg25275 +S'published 1961' +p182974 +sg25268 +S'Hand with Block' +p182975 +sg25270 +S'Albert Flocon' +p182976 +sa(dp182977 +g25273 +S'engraving' +p182978 +sg25267 +g27 +sg25275 +S'1952' +p182979 +sg25268 +S'Calligraphic Figure with Plant' +p182980 +sg25270 +S'Albert Flocon' +p182981 +sa(dp182982 +g25273 +S'engraving' +p182983 +sg25267 +g27 +sg25275 +S'published 1961' +p182984 +sg25268 +S'Construction and Perspective' +p182985 +sg25270 +S'Albert Flocon' +p182986 +sa(dp182987 +g25268 +S'Banderillas de fuego (Banderillas with Firecrackers)' +p182988 +sg25270 +S'Francisco de Goya' +p182989 +sg25273 +S'etching, burnished aquatint, lavis, drypoint and burin [first edition impression]' +p182990 +sg25275 +S'in or before 1816' +p182991 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed8e.jpg' +p182992 +sg25267 +g27 +sa(dp182993 +g25273 +S'engraving' +p182994 +sg25267 +g27 +sg25275 +S'1952' +p182995 +sg25268 +S'Figures and Perspective Construct' +p182996 +sg25270 +S'Albert Flocon' +p182997 +sa(dp182998 +g25273 +S'engraving' +p182999 +sg25267 +g27 +sg25275 +S'published 1961' +p183000 +sg25268 +S'Hands, Drawing, and Space' +p183001 +sg25270 +S'Albert Flocon' +p183002 +sa(dp183003 +g25273 +S'engraving' +p183004 +sg25267 +g27 +sg25275 +S'published 1961' +p183005 +sg25268 +S'Spiral and Folded Space Drawings' +p183006 +sg25270 +S'Albert Flocon' +p183007 +sa(dp183008 +g25273 +S'engraving' +p183009 +sg25267 +g27 +sg25275 +S'published 1961' +p183010 +sg25268 +S'Man in Motion' +p183011 +sg25270 +S'Albert Flocon' +p183012 +sa(dp183013 +g25273 +S'engraving' +p183014 +sg25267 +g27 +sg25275 +S'published 1961' +p183015 +sg25268 +S'Linear Trees [left half]' +p183016 +sg25270 +S'Albert Flocon' +p183017 +sa(dp183018 +g25273 +S'engraving' +p183019 +sg25267 +g27 +sg25275 +S'published 1961' +p183020 +sg25268 +S'Gnarled Trees [right half]' +p183021 +sg25270 +S'Albert Flocon' +p183022 +sa(dp183023 +g25273 +S'engraving' +p183024 +sg25267 +g27 +sg25275 +S'published 1961' +p183025 +sg25268 +S'Woodsman and Downed Tree' +p183026 +sg25270 +S'Albert Flocon' +p183027 +sa(dp183028 +g25273 +S'engraving' +p183029 +sg25267 +g27 +sg25275 +S'published 1961' +p183030 +sg25268 +S'Steps' +p183031 +sg25270 +S'Albert Flocon' +p183032 +sa(dp183033 +g25273 +S'engraving' +p183034 +sg25267 +g27 +sg25275 +S'published 1961' +p183035 +sg25268 +S'Landscape with Reclining Figure' +p183036 +sg25270 +S'Albert Flocon' +p183037 +sa(dp183038 +g25273 +S'engraving' +p183039 +sg25267 +g27 +sg25275 +S'published 1961' +p183040 +sg25268 +S'Curved vs. Rectilinear Space' +p183041 +sg25270 +S'Albert Flocon' +p183042 +sa(dp183043 +g25268 +S'Dos grupos de picadores arrollados de seguida por un solo toro (Two Teams of Picadors Thrown One after the Other by a Single Bull)' +p183044 +sg25270 +S'Francisco de Goya' +p183045 +sg25273 +S'etching, burnished aquatint, drypoint and burin [first edition impression]' +p183046 +sg25275 +S'in or before 1816' +p183047 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed8f.jpg' +p183048 +sg25267 +g27 +sa(dp183049 +g25273 +S'engraving' +p183050 +sg25267 +g27 +sg25275 +S'published 1961' +p183051 +sg25268 +S'Circular (Concentric) Space' +p183052 +sg25270 +S'Albert Flocon' +p183053 +sa(dp183054 +g25273 +S'engraving' +p183055 +sg25267 +g27 +sg25275 +S'published 1961' +p183056 +sg25268 +S'Classical Space Stage' +p183057 +sg25270 +S'Albert Flocon' +p183058 +sa(dp183059 +g25273 +S'engraving' +p183060 +sg25267 +g27 +sg25275 +S'1961' +p183061 +sg25268 +S'Ionic' +p183062 +sg25270 +S'Albert Flocon' +p183063 +sa(dp183064 +g25273 +S'engraving' +p183065 +sg25267 +g27 +sg25275 +S'1961' +p183066 +sg25268 +S'Head [left half]' +p183067 +sg25270 +S'Albert Flocon' +p183068 +sa(dp183069 +g25273 +S'engraving' +p183070 +sg25267 +g27 +sg25275 +S'1961' +p183071 +sg25268 +S'Head [right half]' +p183072 +sg25270 +S'Albert Flocon' +p183073 +sa(dp183074 +g25273 +S'engraving' +p183075 +sg25267 +g27 +sg25275 +S'published 1961' +p183076 +sg25268 +S'Head on Crumpled Paper' +p183077 +sg25270 +S'Albert Flocon' +p183078 +sa(dp183079 +g25273 +S'engraving' +p183080 +sg25267 +g27 +sg25275 +S'published 1961' +p183081 +sg25268 +S'Head' +p183082 +sg25270 +S'Albert Flocon' +p183083 +sa(dp183084 +g25273 +S'engraving' +p183085 +sg25267 +g27 +sg25275 +S'published 1961' +p183086 +sg25268 +S'Head, Webbing, and Figures' +p183087 +sg25270 +S'Albert Flocon' +p183088 +sa(dp183089 +g25273 +S'engraving' +p183090 +sg25267 +g27 +sg25275 +S'published 1961' +p183091 +sg25268 +S'Head and Wave Form' +p183092 +sg25270 +S'Albert Flocon' +p183093 +sa(dp183094 +g25273 +S'engraving' +p183095 +sg25267 +g27 +sg25275 +S'published 1961' +p183096 +sg25268 +S'Classical and Fantastic Landscape with Portrait of the Artist' +p183097 +sg25270 +S'Albert Flocon' +p183098 +sa(dp183099 +g25268 +S'Madonna and Child with Angels' +p183100 +sg25270 +S'Hans Memling' +p183101 +sg25273 +S'oil on panel' +p183102 +sg25275 +S'after 1479' +p183103 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005b9.jpg' +p183104 +sg25267 +S"In the tradition of his Flemish predecessors, Memling's painting contains\na wealth of religious meaning; it is filled with symbols which explain the importance\nof Christ's mission on earth. Jesus reaches out for an apple, emblem of Original\nSin; his attitude of acceptance foreshadows his future sacrifice on the cross. The\nangel who offers the fruit of redemption is in fact dressed in a dalmatic, the liturgical\nvestment worn by a deacon during the solemn High Mass. Around the arch is a carved\nvine of grapes referring to the wine of the eucharistic rite. On the crystal and\nporphyry columns stand David, as an ancestor of Christ, and Isaiah, one of the prophets\nwho foretold the Virgin Birth.\n Memling adhered closely to the northern tradition in art; the format and details\nof the enthroned Madonna theme recall Jan van Eyck. It is believed that Memling\nworked in the studio of Rogier van der Weyden at Brussels before settling in Bruges;\nhere, he adopted Rogier's angular figural types clothed in heavy, crisp drapery,\nbut transformed the older artist's dramatic intensity into a calm and graceful elegance.\nThe framing archway was a device used by a number of Flemish painters including\nRogier. While combining various influences, Hans Memling's own tender and pious\nsentiment made him the most popular artist of his day in Bruges.\n " +p183105 +sa(dp183106 +g25268 +S'La desgraciada muerte de Pepe Illo en la plaza de Madrid (The Unlucky Death of Pepe Illo in the Ring at Madrid)' +p183107 +sg25270 +S'Francisco de Goya' +p183108 +sg25273 +S'etching, burnished aquatint, drypoint and burin [first edition impression]' +p183109 +sg25275 +S'in or before 1816' +p183110 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed91.jpg' +p183111 +sg25267 +g27 +sa(dp183112 +g25273 +S'engraving' +p183113 +sg25267 +g27 +sg25275 +S'published 1961' +p183114 +sg25268 +S'Tall Figure [left half]' +p183115 +sg25270 +S'Albert Flocon' +p183116 +sa(dp183117 +g25273 +S'engraving' +p183118 +sg25267 +g27 +sg25275 +S'published 1961' +p183119 +sg25268 +S'Tall Figure [right half]' +p183120 +sg25270 +S'Albert Flocon' +p183121 +sa(dp183122 +g25273 +S'engraving' +p183123 +sg25267 +g27 +sg25275 +S'published 1961' +p183124 +sg25268 +S'Figures and Geometrical Forms [left half]' +p183125 +sg25270 +S'Albert Flocon' +p183126 +sa(dp183127 +g25273 +S'engraving' +p183128 +sg25267 +g27 +sg25275 +S'published 1961' +p183129 +sg25268 +S'Bulbs [right half]' +p183130 +sg25270 +S'Albert Flocon' +p183131 +sa(dp183132 +g25273 +S'engraving' +p183133 +sg25267 +g27 +sg25275 +S'published 1961' +p183134 +sg25268 +S'Figures as Architectural Elements' +p183135 +sg25270 +S'Albert Flocon' +p183136 +sa(dp183137 +g25273 +S'engraving' +p183138 +sg25267 +g27 +sg25275 +S'published 1961' +p183139 +sg25268 +S'Flying Patterns and Insect' +p183140 +sg25270 +S'Albert Flocon' +p183141 +sa(dp183142 +g25273 +S'engraving' +p183143 +sg25267 +g27 +sg25275 +S'published 1961' +p183144 +sg25268 +S'Four Forest Subjects' +p183145 +sg25270 +S'Albert Flocon' +p183146 +sa(dp183147 +g25273 +S'engraving' +p183148 +sg25267 +g27 +sg25275 +S'1961' +p183149 +sg25268 +S'Knots' +p183150 +sg25270 +S'Albert Flocon' +p183151 +sa(dp183152 +g25273 +S'engraving' +p183153 +sg25267 +g27 +sg25275 +S'1960' +p183154 +sg25268 +S'Fin' +p183155 +sg25270 +S'Albert Flocon' +p183156 +sa(dp183157 +g25273 +S'lithograph' +p183158 +sg25267 +g27 +sg25275 +S'unknown date\n' +p183159 +sg25268 +S'Airport' +p183160 +sg25270 +S'Richard A. Florsheim' +p183161 +sa(dp183162 +g25273 +S'engraving on thick paper' +p183163 +sg25267 +g27 +sg25275 +S'1825' +p183164 +sg25268 +S'Job and His Family' +p183165 +sg25270 +S'William Blake' +p183166 +sa(dp183167 +g25273 +S'lithograph' +p183168 +sg25267 +g27 +sg25275 +S'1959' +p183169 +sg25268 +S'Beach Grass' +p183170 +sg25270 +S'Arthur L. Flory' +p183171 +sa(dp183172 +g25268 +S'Blossoms' +p183173 +sg25270 +S'Arthur L. Flory' +p183174 +sg25273 +S'color lithograph' +p183175 +sg25275 +S'1962' +p183176 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a91.jpg' +p183177 +sg25267 +g27 +sa(dp183178 +g25273 +S'lithograph on Rives BFK' +p183179 +sg25267 +g27 +sg25275 +S'1962' +p183180 +sg25268 +S'Blossoms and Snow' +p183181 +sg25270 +S'Arthur L. Flory' +p183182 +sa(dp183183 +g25273 +S'lithograph' +p183184 +sg25267 +g27 +sg25275 +S'1959' +p183185 +sg25268 +S'Crabs' +p183186 +sg25270 +S'Arthur L. Flory' +p183187 +sa(dp183188 +g25273 +S'lithograph' +p183189 +sg25267 +g27 +sg25275 +S'1963/1964' +p183190 +sg25268 +S'Title Page' +p183191 +sg25270 +S'Arthur L. Flory' +p183192 +sa(dp183193 +g25273 +S'portfolio with title page, twenty sheets with haiku verses and twenty corresponding prints' +p183194 +sg25267 +g27 +sg25275 +S'1963/1964' +p183195 +sg25268 +S'The Four Seasons Expressed in Haiku' +p183196 +sg25270 +S'Arthur L. Flory' +p183197 +sa(dp183198 +g25273 +S'lithograph' +p183199 +sg25267 +g27 +sg25275 +S'1963/1964' +p183200 +sg25268 +S'Haiku by Buson' +p183201 +sg25270 +S'Arthur L. Flory' +p183202 +sa(dp183203 +g25273 +S'lithograph' +p183204 +sg25267 +g27 +sg25275 +S'1963/1964' +p183205 +sg25268 +S'Image (Buson)' +p183206 +sg25270 +S'Arthur L. Flory' +p183207 +sa(dp183208 +g25273 +S'lithograph' +p183209 +sg25267 +g27 +sg25275 +S'1963/1964' +p183210 +sg25268 +S'Haiku by Zora' +p183211 +sg25270 +S'Arthur L. Flory' +p183212 +sa(dp183213 +g25273 +S'lithograph' +p183214 +sg25267 +g27 +sg25275 +S'1963/1964' +p183215 +sg25268 +S'Image (Zora)' +p183216 +sg25270 +S'Arthur L. Flory' +p183217 +sa(dp183218 +g25273 +S'portfolio with 66 engravings on various papers and vellum including proofs drawn into by Blake' +p183219 +sg25267 +g27 +sg25275 +S'1825' +p183220 +sg25268 +S'Illustrations of the Book of Job: The Linnell Collection of Trial States of the Plates' +p183221 +sg25270 +S'William Blake' +p183222 +sa(dp183223 +g25273 +S'lithograph' +p183224 +sg25267 +g27 +sg25275 +S'1963/1964' +p183225 +sg25268 +S'Haiku by Kito' +p183226 +sg25270 +S'Arthur L. Flory' +p183227 +sa(dp183228 +g25273 +S'lithograph' +p183229 +sg25267 +g27 +sg25275 +S'1963/1964' +p183230 +sg25268 +S'Image (Kito)' +p183231 +sg25270 +S'Arthur L. Flory' +p183232 +sa(dp183233 +g25273 +S'lithograph' +p183234 +sg25267 +g27 +sg25275 +S'1963/1964' +p183235 +sg25268 +S'Haiku by Chora' +p183236 +sg25270 +S'Arthur L. Flory' +p183237 +sa(dp183238 +g25273 +S'lithograph' +p183239 +sg25267 +g27 +sg25275 +S'1963/1964' +p183240 +sg25268 +S'Image (Chora)' +p183241 +sg25270 +S'Arthur L. Flory' +p183242 +sa(dp183243 +g25273 +S'lithograph' +p183244 +sg25267 +g27 +sg25275 +S'1963/1964' +p183245 +sg25268 +S'Haiku by Issa' +p183246 +sg25270 +S'Arthur L. Flory' +p183247 +sa(dp183248 +g25273 +S'lithograph' +p183249 +sg25267 +g27 +sg25275 +S'1963/1964' +p183250 +sg25268 +S'Image (Issa)' +p183251 +sg25270 +S'Arthur L. Flory' +p183252 +sa(dp183253 +g25273 +S'lithograph' +p183254 +sg25267 +g27 +sg25275 +S'1963/1964' +p183255 +sg25268 +S'Haiku by Shiki' +p183256 +sg25270 +S'Arthur L. Flory' +p183257 +sa(dp183258 +g25273 +S'lithograph' +p183259 +sg25267 +g27 +sg25275 +S'1963/1964' +p183260 +sg25268 +S'Image (Shiki)' +p183261 +sg25270 +S'Arthur L. Flory' +p183262 +sa(dp183263 +g25273 +S'lithograph' +p183264 +sg25267 +g27 +sg25275 +S'1963/1964' +p183265 +sg25268 +S'Haiku by Sampu' +p183266 +sg25270 +S'Arthur L. Flory' +p183267 +sa(dp183268 +g25273 +S'lithograph' +p183269 +sg25267 +g27 +sg25275 +S'1963/1964' +p183270 +sg25268 +S'Image (Sampu)' +p183271 +sg25270 +S'Arthur L. Flory' +p183272 +sa(dp183273 +g25273 +S'engraving on thick paper' +p183274 +sg25267 +g27 +sg25275 +S'1825' +p183275 +sg25268 +S'Job and His Family' +p183276 +sg25270 +S'William Blake' +p183277 +sa(dp183278 +g25273 +S'lithograph' +p183279 +sg25267 +g27 +sg25275 +S'1963/1964' +p183280 +sg25268 +S'Haiku by Onitsura' +p183281 +sg25270 +S'Arthur L. Flory' +p183282 +sa(dp183283 +g25273 +S'lithograph' +p183284 +sg25267 +g27 +sg25275 +S'1963/1964' +p183285 +sg25268 +S'Image (Onitsura)' +p183286 +sg25270 +S'Arthur L. Flory' +p183287 +sa(dp183288 +g25273 +S'lithograph' +p183289 +sg25267 +g27 +sg25275 +S'1963/1964' +p183290 +sg25268 +S'Haiku by Soseki' +p183291 +sg25270 +S'Arthur L. Flory' +p183292 +sa(dp183293 +g25273 +S'lithograph' +p183294 +sg25267 +g27 +sg25275 +S'1963/1964' +p183295 +sg25268 +S'Image (Soseki)' +p183296 +sg25270 +S'Arthur L. Flory' +p183297 +sa(dp183298 +g25273 +S'lithograph' +p183299 +sg25267 +g27 +sg25275 +S'1963/1964' +p183300 +sg25268 +S'Haiku by Basho' +p183301 +sg25270 +S'Arthur L. Flory' +p183302 +sa(dp183303 +g25273 +S'lithograph' +p183304 +sg25267 +g27 +sg25275 +S'1963/1964' +p183305 +sg25268 +S'Image (Basho)' +p183306 +sg25270 +S'Arthur L. Flory' +p183307 +sa(dp183308 +g25273 +S'lithograph' +p183309 +sg25267 +g27 +sg25275 +S'1963/1964' +p183310 +sg25268 +S'Haiku by an Unknown Poet' +p183311 +sg25270 +S'Arthur L. Flory' +p183312 +sa(dp183313 +g25273 +S'lithograph' +p183314 +sg25267 +g27 +sg25275 +S'1963/1964' +p183315 +sg25268 +S'Image (Unknown Poet)' +p183316 +sg25270 +S'Arthur L. Flory' +p183317 +sa(dp183318 +g25273 +S'lithograph' +p183319 +sg25267 +g27 +sg25275 +S'1963/1964' +p183320 +sg25268 +S'Haiku by Basho' +p183321 +sg25270 +S'Arthur L. Flory' +p183322 +sa(dp183323 +g25273 +S'lithograph' +p183324 +sg25267 +g27 +sg25275 +S'1963/1964' +p183325 +sg25268 +S'Image (Basho)' +p183326 +sg25270 +S'Arthur L. Flory' +p183327 +sa(dp183328 +g25273 +S'engraving on thin paper' +p183329 +sg25267 +g27 +sg25275 +S'1825' +p183330 +sg25268 +S'Job and His Family' +p183331 +sg25270 +S'William Blake' +p183332 +sa(dp183333 +g25273 +S'lithograph' +p183334 +sg25267 +g27 +sg25275 +S'1963/1964' +p183335 +sg25268 +S'Haiku by Issa' +p183336 +sg25270 +S'Arthur L. Flory' +p183337 +sa(dp183338 +g25273 +S'lithograph' +p183339 +sg25267 +g27 +sg25275 +S'1963/1964' +p183340 +sg25268 +S'Image (Issa)' +p183341 +sg25270 +S'Arthur L. Flory' +p183342 +sa(dp183343 +g25273 +S'lithograph' +p183344 +sg25267 +g27 +sg25275 +S'1963/1964' +p183345 +sg25268 +S'Haiku by Shiki' +p183346 +sg25270 +S'Arthur L. Flory' +p183347 +sa(dp183348 +g25273 +S'lithograph' +p183349 +sg25267 +g27 +sg25275 +S'1963/1964' +p183350 +sg25268 +S'Image (Shiki)' +p183351 +sg25270 +S'Arthur L. Flory' +p183352 +sa(dp183353 +g25273 +S'lithograph' +p183354 +sg25267 +g27 +sg25275 +S'1963/1964' +p183355 +sg25268 +S'Haiku by Basho' +p183356 +sg25270 +S'Arthur L. Flory' +p183357 +sa(dp183358 +g25273 +S'lithograph' +p183359 +sg25267 +g27 +sg25275 +S'1963/1964' +p183360 +sg25268 +S'Image (Basho)' +p183361 +sg25270 +S'Arthur L. Flory' +p183362 +sa(dp183363 +g25273 +S'lithograph' +p183364 +sg25267 +g27 +sg25275 +S'1963/1964' +p183365 +sg25268 +S'Haiku by Joso' +p183366 +sg25270 +S'Arthur L. Flory' +p183367 +sa(dp183368 +g25273 +S'lithograph' +p183369 +sg25267 +g27 +sg25275 +S'1963/1964' +p183370 +sg25268 +S'Image (Joso)' +p183371 +sg25270 +S'Arthur L. Flory' +p183372 +sa(dp183373 +g25273 +S'lithograph' +p183374 +sg25267 +g27 +sg25275 +S'1963/1964' +p183375 +sg25268 +S'Haiku by Shiki' +p183376 +sg25270 +S'Arthur L. Flory' +p183377 +sa(dp183378 +g25273 +S'lithograph' +p183379 +sg25267 +g27 +sg25275 +S'1963/1964' +p183380 +sg25268 +S'Image (Shiki)' +p183381 +sg25270 +S'Arthur L. Flory' +p183382 +sa(dp183383 +g25268 +S'Job and His Family' +p183384 +sg25270 +S'William Blake' +p183385 +sg25273 +S'engraving with border in graphite on thick paper' +p183386 +sg25275 +S'1825' +p183387 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a000765b.jpg' +p183388 +sg25267 +g27 +sa(dp183389 +g25273 +S'lithograph' +p183390 +sg25267 +g27 +sg25275 +S'1963/1964' +p183391 +sg25268 +S'Haiku by Kyokusi' +p183392 +sg25270 +S'Arthur L. Flory' +p183393 +sa(dp183394 +g25273 +S'lithograph' +p183395 +sg25267 +g27 +sg25275 +S'1963/1964' +p183396 +sg25268 +S'Image (Kyokusi)' +p183397 +sg25270 +S'Arthur L. Flory' +p183398 +sa(dp183399 +g25273 +S'lithograph' +p183400 +sg25267 +g27 +sg25275 +S'1963/1964' +p183401 +sg25268 +S'Haiku by Hashin' +p183402 +sg25270 +S'Arthur L. Flory' +p183403 +sa(dp183404 +g25273 +S'lithograph' +p183405 +sg25267 +g27 +sg25275 +S'1963/1964' +p183406 +sg25268 +S'Image (Hashin)' +p183407 +sg25270 +S'Arthur L. Flory' +p183408 +sa(dp183409 +g25273 +S'lithograph' +p183410 +sg25267 +g27 +sg25275 +S'1963/1964' +p183411 +sg25268 +S'Haiku by Kikaku' +p183412 +sg25270 +S'Arthur L. Flory' +p183413 +sa(dp183414 +g25273 +S'lithograph' +p183415 +sg25267 +g27 +sg25275 +S'1963/1964' +p183416 +sg25268 +S'Image (Kikaku)' +p183417 +sg25270 +S'Arthur L. Flory' +p183418 +sa(dp183419 +g25273 +S'color lithograph' +p183420 +sg25267 +g27 +sg25275 +S'1962' +p183421 +sg25268 +S'In the river alone, darkness is flowing - The fireflies!' +p183422 +sg25270 +S'Arthur L. Flory' +p183423 +sa(dp183424 +g25273 +S'lithograph' +p183425 +sg25267 +g27 +sg25275 +S'1962' +p183426 +sg25268 +S'Morning Mist' +p183427 +sg25270 +S'Arthur L. Flory' +p183428 +sa(dp183429 +g25273 +S'lithograph' +p183430 +sg25267 +g27 +sg25275 +S'1962' +p183431 +sg25268 +S'Spring Rain' +p183432 +sg25270 +S'Arthur L. Flory' +p183433 +sa(dp183434 +g25273 +S'color lithograph' +p183435 +sg25267 +g27 +sg25275 +S'1961' +p183436 +sg25268 +S'Stone Garden: Autumn' +p183437 +sg25270 +S'Arthur L. Flory' +p183438 +sa(dp183439 +g25273 +S'engraving on thick paper' +p183440 +sg25267 +g27 +sg25275 +S'1825' +p183441 +sg25268 +S'Job and His Family' +p183442 +sg25270 +S'William Blake' +p183443 +sa(dp183444 +g25273 +S'color lithograph' +p183445 +sg25267 +g27 +sg25275 +S'1961' +p183446 +sg25268 +S'Stone Garden: Spring' +p183447 +sg25270 +S'Arthur L. Flory' +p183448 +sa(dp183449 +g25273 +S'color lithograph' +p183450 +sg25267 +g27 +sg25275 +S'1961' +p183451 +sg25268 +S'Stone Garden: Summer' +p183452 +sg25270 +S'Arthur L. Flory' +p183453 +sa(dp183454 +g25273 +S'color lithograph' +p183455 +sg25267 +g27 +sg25275 +S'1961' +p183456 +sg25268 +S'Stone Garden: Winter' +p183457 +sg25270 +S'Arthur L. Flory' +p183458 +sa(dp183459 +g25273 +S'color lithograph' +p183460 +sg25267 +g27 +sg25275 +S'1962' +p183461 +sg25268 +S'Temple Entrance' +p183462 +sg25270 +S'Arthur L. Flory' +p183463 +sa(dp183464 +g25268 +S'Winter Stream' +p183465 +sg25270 +S'Arthur L. Flory' +p183466 +sg25273 +S'color lithograph' +p183467 +sg25275 +S'1962' +p183468 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a92.jpg' +p183469 +sg25267 +g27 +sa(dp183470 +g25268 +S'Woman Carrying a Basket on Her Head' +p183471 +sg25270 +S'Jean Mignon' +p183472 +sg25273 +S'etching' +p183473 +sg25275 +S'unknown date\n' +p183474 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000843b.jpg' +p183475 +sg25267 +g27 +sa(dp183476 +g25268 +S'Satyr Bending Towards the Right' +p183477 +sg25270 +S'Jean Mignon' +p183478 +sg25273 +S'etching' +p183479 +sg25275 +S'unknown date\n' +p183480 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000845f.jpg' +p183481 +sg25267 +g27 +sa(dp183482 +g25268 +S'Woman with Musical Instrument' +p183483 +sg25270 +S'Jean Mignon' +p183484 +sg25273 +S'etching' +p183485 +sg25275 +S'unknown date\n' +p183486 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000841e.jpg' +p183487 +sg25267 +g27 +sa(dp183488 +g25268 +S'Man in a Niche' +p183489 +sg25270 +S'Jean Mignon' +p183490 +sg25273 +S'etching' +p183491 +sg25275 +S'unknown date\n' +p183492 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008428.jpg' +p183493 +sg25267 +g27 +sa(dp183494 +g25268 +S'Horned Genius' +p183495 +sg25270 +S'Jean Mignon' +p183496 +sg25273 +S'etching' +p183497 +sg25275 +S'unknown date\n' +p183498 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008414.jpg' +p183499 +sg25267 +g27 +sa(dp183500 +g25268 +S'Satan Before the Throne of God' +p183501 +sg25270 +S'William Blake' +p183502 +sg25273 +S'engraving with border in graphite on thick paper' +p183503 +sg25275 +S'1825' +p183504 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007659.jpg' +p183505 +sg25267 +g27 +sa(dp183506 +g25268 +S"Woman's Head on a Pedestal" +p183507 +sg25270 +S'Jean Mignon' +p183508 +sg25273 +S'etching' +p183509 +sg25275 +S'unknown date\n' +p183510 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008432.jpg' +p183511 +sg25267 +g27 +sa(dp183512 +g25268 +S'Hercules with His Club' +p183513 +sg25270 +S'Jean Mignon' +p183514 +sg25273 +S'etching' +p183515 +sg25275 +S'unknown date\n' +p183516 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008400.jpg' +p183517 +sg25267 +g27 +sa(dp183518 +g25268 +S'Sphinx Wearing a Crescent on Her Head' +p183519 +sg25270 +S'Jean Mignon' +p183520 +sg25273 +S'etching' +p183521 +sg25275 +S'unknown date\n' +p183522 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083f6.jpg' +p183523 +sg25267 +g27 +sa(dp183524 +g25268 +S'Bearded Head on a Pedestal' +p183525 +sg25270 +S'Jean Mignon' +p183526 +sg25273 +S'etching' +p183527 +sg25275 +S'unknown date\n' +p183528 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083ed.jpg' +p183529 +sg25267 +g27 +sa(dp183530 +g25268 +S'Diana of Ephesus' +p183531 +sg25270 +S'Jean Mignon' +p183532 +sg25273 +S'etching' +p183533 +sg25275 +S'unknown date\n' +p183534 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000840a.jpg' +p183535 +sg25267 +g27 +sa(dp183536 +g25268 +S'Woman with Left Profile' +p183537 +sg25270 +S'Jean Mignon' +p183538 +sg25273 +S'etching' +p183539 +sg25275 +S'unknown date\n' +p183540 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008446.jpg' +p183541 +sg25267 +g27 +sa(dp183542 +g25268 +S'Satyr with Twisted Legs' +p183543 +sg25270 +S'Jean Mignon' +p183544 +sg25273 +S'etching' +p183545 +sg25275 +S'unknown date\n' +p183546 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008453.jpg' +p183547 +sg25267 +g27 +sa(dp183548 +g25268 +S'Pan' +p183549 +sg25270 +S'Jean Mignon' +p183550 +sg25273 +S'etching' +p183551 +sg25275 +S'unknown date\n' +p183552 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083e4.jpg' +p183553 +sg25267 +g27 +sa(dp183554 +g25268 +S'Old Man Warming His Hands' +p183555 +sg25270 +S'Jean Mignon' +p183556 +sg25273 +S'etching' +p183557 +sg25275 +S'unknown date\n' +p183558 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083da.jpg' +p183559 +sg25267 +g27 +sa(dp183560 +g25268 +S'To the Genius of Franklin (Au genie de Franklin)' +p183561 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p183562 +sg25273 +S'etching' +p183563 +sg25275 +S'1779' +p183564 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a000970a.jpg' +p183565 +sg25267 +g27 +sa(dp183566 +g25273 +S'engraving on thick paper' +p183567 +sg25267 +g27 +sg25275 +S'1825' +p183568 +sg25268 +S'Satan Before the Throne of God' +p183569 +sg25270 +S'William Blake' +p183570 +sa(dp183571 +g25268 +S'Oval Design from the Church of San Michele de Bosco, Bologna' +p183572 +sg25270 +S'Artist Information (' +p183573 +sg25273 +S'(artist after)' +p183574 +sg25275 +S'\n' +p183575 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d8c.jpg' +p183576 +sg25267 +g27 +sa(dp183577 +g25273 +S'1920 - 2003' +p183578 +sg25267 +g27 +sg25275 +S'(printer)' +p183579 +sg25268 +S'First Stone' +p183580 +sg25270 +S'Artist Information (' +p183581 +sa(dp183582 +g25273 +S'6-color woodcut' +p183583 +sg25267 +g27 +sg25275 +S'1962' +p183584 +sg25268 +S'Alhambra III' +p183585 +sg25270 +S'Antonio Frasconi' +p183586 +sa(dp183587 +g25273 +S'color woodcut' +p183588 +sg25267 +g27 +sg25275 +S'1959' +p183589 +sg25268 +S'Bertolt Brecht' +p183590 +sg25270 +S'Antonio Frasconi' +p183591 +sa(dp183592 +g25273 +S'portfolio containing 13 folded sheets in 3 sections with woodcuts printed by the artist and lithographic text by George Miller and Son, New York' +p183593 +sg25267 +g27 +sg25275 +S'1961' +p183594 +sg25268 +S'Song of the Storm Trooper' +p183595 +sg25270 +S'Antonio Frasconi' +p183596 +sa(dp183597 +g25273 +S'(author)' +p183598 +sg25267 +g27 +sg25275 +S'\n' +p183599 +sg25268 +S'Birds from My Homeland' +p183600 +sg25270 +S'Artist Information (' +p183601 +sa(dp183602 +g25273 +S'portfolio with woodcuts in black & red plus text; consists of 3 sections, each composed of several single sheets folded over, & laid inside each other' +p183603 +sg25267 +g27 +sg25275 +S'published 1953' +p183604 +sg25268 +S'Dos Poemas de Garcia' +p183605 +sg25270 +S'Antonio Frasconi' +p183606 +sa(dp183607 +g25273 +S'color woodcut' +p183608 +sg25267 +g27 +sg25275 +S'1957' +p183609 +sg25268 +S'Fourteenth Street Meat Market #2' +p183610 +sg25270 +S'Antonio Frasconi' +p183611 +sa(dp183612 +g25273 +S'color woodcut' +p183613 +sg25267 +g27 +sg25275 +S'1958' +p183614 +sg25268 +S'Migration I' +p183615 +sg25270 +S'Antonio Frasconi' +p183616 +sa(dp183617 +g25273 +S'color woodcut' +p183618 +sg25267 +g27 +sg25275 +S'1959' +p183619 +sg25268 +S'The Raven' +p183620 +sg25270 +S'Antonio Frasconi' +p183621 +sa(dp183622 +g25273 +S'engraving on thick paper' +p183623 +sg25267 +g27 +sg25275 +S'1825' +p183624 +sg25268 +S'Satan Before the Throne of God' +p183625 +sg25270 +S'William Blake' +p183626 +sa(dp183627 +g25273 +S'color woodcut' +p183628 +sg25267 +g27 +sg25275 +S'1959' +p183629 +sg25268 +S'Sanctuary' +p183630 +sg25270 +S'Antonio Frasconi' +p183631 +sa(dp183632 +g25273 +S'woodcut' +p183633 +sg25267 +g27 +sg25275 +S'1952' +p183634 +sg25268 +S'Self-Portrait' +p183635 +sg25270 +S'Antonio Frasconi' +p183636 +sa(dp183637 +g25273 +S'portfolio with 64 color and black and white lithographs' +p183638 +sg25267 +g27 +sg25275 +S'published 1954' +p183639 +sg25268 +S'Monstruario' +p183640 +sg25270 +S'Jose Luis Galicia' +p183641 +sa(dp183642 +g25268 +S'John the Baptist Beheaded' +p183643 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183644 +sg25273 +S'engraving' +p183645 +sg25275 +S'probably c. 1576/1580' +p183646 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000849b.jpg' +p183647 +sg25267 +g27 +sa(dp183648 +g25268 +S'Parable of Weeds in the Wheat' +p183649 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183650 +sg25273 +S'engraving' +p183651 +sg25275 +S'probably c. 1576/1580' +p183652 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008345.jpg' +p183653 +sg25267 +g27 +sa(dp183654 +g25268 +S'Christ Admonishes His Disciples' +p183655 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183656 +sg25273 +S'engraving' +p183657 +sg25275 +S'probably c. 1576/1580' +p183658 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008445.jpg' +p183659 +sg25267 +g27 +sa(dp183660 +g25268 +S'The Transfiguration' +p183661 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183662 +sg25273 +S'engraving' +p183663 +sg25275 +S'probably c. 1576/1580' +p183664 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000848d.jpg' +p183665 +sg25267 +g27 +sa(dp183666 +g25268 +S'The Servant Begging for Mercy from His King' +p183667 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183668 +sg25273 +S'engraving' +p183669 +sg25275 +S'probably c. 1576/1580' +p183670 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000847f.jpg' +p183671 +sg25267 +g27 +sa(dp183672 +g25268 +S'The Birth of John the Baptist' +p183673 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183674 +sg25273 +S'engraving' +p183675 +sg25275 +S'1576' +p183676 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000843f.jpg' +p183677 +sg25267 +g27 +sa(dp183678 +g25268 +S'The Annunciation' +p183679 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183680 +sg25273 +S'engraving' +p183681 +sg25275 +S'probably c. 1576/1580' +p183682 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008472.jpg' +p183683 +sg25267 +g27 +sa(dp183684 +g25273 +S'engraving on thick paper' +p183685 +sg25267 +g27 +sg25275 +S'1825' +p183686 +sg25268 +S'Satan Before the Throne of God' +p183687 +sg25270 +S'William Blake' +p183688 +sa(dp183689 +g25268 +S'The Marriage of the Virgin' +p183690 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183691 +sg25273 +S'engraving' +p183692 +sg25275 +S'probably c. 1576/1580' +p183693 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008459.jpg' +p183694 +sg25267 +g27 +sa(dp183695 +g25268 +S'Mary and Joseph Find the Boy Jesus in the Temple with the Doctors' +p183696 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183697 +sg25273 +S'engraving' +p183698 +sg25275 +S'probably c. 1576/1580' +p183699 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a00058fa.jpg' +p183700 +sg25267 +g27 +sa(dp183701 +g25268 +S'The Annunciation' +p183702 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183703 +sg25273 +S'engraving' +p183704 +sg25275 +S'probably c. 1576/1580' +p183705 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008436.jpg' +p183706 +sg25267 +g27 +sa(dp183707 +g25268 +S'The Adoration of the Shepherds' +p183708 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183709 +sg25273 +S'engraving' +p183710 +sg25275 +S'probably c. 1576/1580' +p183711 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008465.jpg' +p183712 +sg25267 +g27 +sa(dp183713 +g25268 +S'Joseph, Mary and Jesus Returning to Nazareth' +p183714 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183715 +sg25273 +S'engraving' +p183716 +sg25275 +S'probably c. 1576/1580' +p183717 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000844c.jpg' +p183718 +sg25267 +g27 +sa(dp183719 +g25268 +S'Christ Healing a Deaf Man' +p183720 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183721 +sg25273 +S'engraving' +p183722 +sg25275 +S'1579' +p183723 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083ab.jpg' +p183724 +sg25267 +g27 +sa(dp183725 +g25268 +S'Christ Telling His Disciples of the Parable of the Dragnet' +p183726 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183727 +sg25273 +S'engraving' +p183728 +sg25275 +S'probably c. 1576/1580' +p183729 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000840e.jpg' +p183730 +sg25267 +g27 +sa(dp183731 +g25268 +S'Christ Denounces the Scribes and Pharisees' +p183732 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183733 +sg25273 +S'engraving' +p183734 +sg25275 +S'probably c. 1576/1580' +p183735 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008422.jpg' +p183736 +sg25267 +g27 +sa(dp183737 +g25268 +S'James and John Seek Honor' +p183738 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183739 +sg25273 +S'engraving' +p183740 +sg25275 +S'probably c. 1576/1580' +p183741 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083de.jpg' +p183742 +sg25267 +g27 +sa(dp183743 +g25268 +S'Christ Rebukes the Scribes and Pharisees' +p183744 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183745 +sg25273 +S'engraving' +p183746 +sg25275 +S'probably c. 1576/1580' +p183747 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083a0.jpg' +p183748 +sg25267 +g27 +sa(dp183749 +g25273 +S'engraving on thick paper' +p183750 +sg25267 +g27 +sg25275 +S'1825' +p183751 +sg25268 +S'Satan Before the Throne of God' +p183752 +sg25270 +S'William Blake' +p183753 +sa(dp183754 +g25268 +S'The Canaanite Woman' +p183755 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183756 +sg25273 +S'engraving' +p183757 +sg25275 +S'probably c. 1576/1580' +p183758 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008418.jpg' +p183759 +sg25267 +g27 +sa(dp183760 +g25268 +S'The Greatest in the Kingdom of Heaven will be Humble like a Child' +p183761 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183762 +sg25273 +S'engraving' +p183763 +sg25275 +S'probably c. 1576/1580' +p183764 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083fa.jpg' +p183765 +sg25267 +g27 +sa(dp183766 +g25268 +S'Teachings on the Coming of the Judgment' +p183767 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183768 +sg25273 +S'engraving' +p183769 +sg25275 +S'1580' +p183770 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083e8.jpg' +p183771 +sg25267 +g27 +sa(dp183772 +g25268 +S'Parable of the Talents (The Worthless Servant Cast into the Outer Darkness)' +p183773 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183774 +sg25273 +S'engraving' +p183775 +sg25275 +S'probably c. 1576/1580' +p183776 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083d4.jpg' +p183777 +sg25267 +g27 +sa(dp183778 +g25268 +S'The Entry into Jerusalem' +p183779 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183780 +sg25273 +S'engraving' +p183781 +sg25275 +S'probably c. 1576/1580' +p183782 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083cb.jpg' +p183783 +sg25267 +g27 +sa(dp183784 +g25268 +S'Christ Praying while His Disciples are in a Boat on a Windy Sea' +p183785 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183786 +sg25273 +S'engraving' +p183787 +sg25275 +S'probably c. 1576/1580' +p183788 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083c1.jpg' +p183789 +sg25267 +g27 +sa(dp183790 +g25268 +S'Christ Admonishes His Disciples' +p183791 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183792 +sg25273 +S'engraving' +p183793 +sg25275 +S'probably c. 1576/1580' +p183794 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083b6.jpg' +p183795 +sg25267 +g27 +sa(dp183796 +g25268 +S'The Baptism of Christ' +p183797 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183798 +sg25273 +S'engraving' +p183799 +sg25275 +S'probably c. 1576/1580' +p183800 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008404.jpg' +p183801 +sg25267 +g27 +sa(dp183802 +g25268 +S'Nicodemus Comes to Christ by Night' +p183803 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183804 +sg25273 +S'engraving' +p183805 +sg25275 +S'1576' +p183806 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000842c.jpg' +p183807 +sg25267 +g27 +sa(dp183808 +g25268 +S'Follow Me and I will Make You Fishers of Men' +p183809 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183810 +sg25273 +S'engraving' +p183811 +sg25275 +S'probably c. 1576/1580' +p183812 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008476.jpg' +p183813 +sg25267 +g27 +sa(dp183814 +g25273 +S'engraving on vellum' +p183815 +sg25267 +g27 +sg25275 +S'1825' +p183816 +sg25268 +S'Satan Before the Throne of God' +p183817 +sg25270 +S'William Blake' +p183818 +sa(dp183819 +g25268 +S'Christ Bids Two Disciples of John the Baptist to Follow Him' +p183820 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183821 +sg25273 +S'engraving' +p183822 +sg25275 +S'probably c. 1576/1580' +p183823 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008483.jpg' +p183824 +sg25267 +g27 +sa(dp183825 +g25268 +S'If I only Touch His Garments, I shall be Made Well' +p183826 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183827 +sg25273 +S'engraving' +p183828 +sg25275 +S'1578' +p183829 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008374.jpg' +p183830 +sg25267 +g27 +sa(dp183831 +g25268 +S'The Temptation of Christ' +p183832 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183833 +sg25273 +S'engraving' +p183834 +sg25275 +S'probably c. 1576/1580' +p183835 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008491.jpg' +p183836 +sg25267 +g27 +sa(dp183837 +g25268 +S'Christ Driving the Money Changers from the Temple' +p183838 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183839 +sg25273 +S'engraving' +p183840 +sg25275 +S'probably c. 1576/1580' +p183841 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000833b.jpg' +p183842 +sg25267 +g27 +sa(dp183843 +g25268 +S'The Calling of Matthew' +p183844 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183845 +sg25273 +S'engraving' +p183846 +sg25275 +S'probably c. 1576/1580' +p183847 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000837f.jpg' +p183848 +sg25267 +g27 +sa(dp183849 +g25268 +S'Christ Healing the Sick' +p183850 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183851 +sg25273 +S'engraving' +p183852 +sg25275 +S'probably c. 1576/1580' +p183853 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008369.jpg' +p183854 +sg25267 +g27 +sa(dp183855 +g25268 +S'The Gadarene Demoniacs' +p183856 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183857 +sg25273 +S'engraving' +p183858 +sg25275 +S'probably c. 1576/1580' +p183859 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008349.jpg' +p183860 +sg25267 +g27 +sa(dp183861 +g25268 +S'The Parables of the Lost Sheep, the Woman with Pieces of Silver and the Prodigal Son' +p183862 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183863 +sg25273 +S'engraving' +p183864 +sg25275 +S'probably c. 1576/1580' +p183865 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008395.jpg' +p183866 +sg25267 +g27 +sa(dp183867 +g25268 +S'Christ and the Centurion' +p183868 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183869 +sg25273 +S'engraving' +p183870 +sg25275 +S'probably c. 1576/1580' +p183871 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000838a.jpg' +p183872 +sg25267 +g27 +sa(dp183873 +g25268 +S'The Massacre of the Innocents' +p183874 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183875 +sg25273 +S'engraving' +p183876 +sg25275 +S'probably c. 1576/1580' +p183877 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008353.jpg' +p183878 +sg25267 +g27 +sa(dp183879 +g25273 +S'engraving on vellum' +p183880 +sg25267 +g27 +sg25275 +S'1825' +p183881 +sg25268 +S'Satan Before the Throne of God' +p183882 +sg25270 +S'William Blake' +p183883 +sa(dp183884 +g25268 +S'The Parable of the Blind Man' +p183885 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183886 +sg25273 +S'engraving' +p183887 +sg25275 +S'probably c. 1576/1580' +p183888 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000835e.jpg' +p183889 +sg25267 +g27 +sa(dp183890 +g25268 +S'The Parable of the Good Shepherd' +p183891 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183892 +sg25273 +S'engraving' +p183893 +sg25275 +S'probably c. 1576/1580' +p183894 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008469.jpg' +p183895 +sg25267 +g27 +sa(dp183896 +g25268 +S'The Good Samaritan' +p183897 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183898 +sg25273 +S'engraving' +p183899 +sg25275 +S'probably c. 1576/1580' +p183900 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000845c.jpg' +p183901 +sg25267 +g27 +sa(dp183902 +g25268 +S'The Miracle of the Loaves and the Fishes' +p183903 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183904 +sg25273 +S'engraving' +p183905 +sg25275 +S'probably c. 1572/1580' +p183906 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083d8.jpg' +p183907 +sg25267 +g27 +sa(dp183908 +g25268 +S'Christ and the Sabbath Laws' +p183909 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183910 +sg25273 +S'engraving' +p183911 +sg25275 +S'probably c. 1572/1580' +p183912 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008450.jpg' +p183913 +sg25267 +g27 +sa(dp183914 +g25268 +S'The Dishonest Steward' +p183915 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183916 +sg25273 +S'engraving' +p183917 +sg25275 +S'probably c. 1576/1580' +p183918 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008430.jpg' +p183919 +sg25267 +g27 +sa(dp183920 +g25268 +S'John the Baptist Testifies for Christ' +p183921 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183922 +sg25273 +S'engraving' +p183923 +sg25275 +S'probably c. 1576/1580' +p183924 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008426.jpg' +p183925 +sg25267 +g27 +sa(dp183926 +g25268 +S'The Man Healed of the Withered Hand' +p183927 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183928 +sg25273 +S'engraving' +p183929 +sg25275 +S'probably c. 1576/1580' +p183930 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008439.jpg' +p183931 +sg25267 +g27 +sa(dp183932 +g25268 +S'The Parable of the Marriage Feast' +p183933 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183934 +sg25273 +S'engraving' +p183935 +sg25275 +S'probably c. 1576/1580' +p183936 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083e2.jpg' +p183937 +sg25267 +g27 +sa(dp183938 +g25268 +S'Christ in the Temple' +p183939 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183940 +sg25273 +S'engraving' +p183941 +sg25275 +S'probably c. 1576/1580' +p183942 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083f4.jpg' +p183943 +sg25267 +g27 +sa(dp183944 +g25273 +S'engraving on thick paper' +p183945 +sg25267 +g27 +sg25275 +S'1825' +p183946 +sg25268 +S'Satan Before the Throne of God' +p183947 +sg25270 +S'William Blake' +p183948 +sa(dp183949 +g25268 +S'The Parable of the Laborers in the Vineyard' +p183950 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183951 +sg25273 +S'engraving' +p183952 +sg25275 +S'probably c. 1576/1580' +p183953 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083fe.jpg' +p183954 +sg25267 +g27 +sa(dp183955 +g25268 +S'Christ Teaching in the Synagogue' +p183956 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183957 +sg25273 +S'engraving' +p183958 +sg25275 +S'probably c. 1576/1580' +p183959 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083eb.jpg' +p183960 +sg25267 +g27 +sa(dp183961 +g25268 +S'Christ and the Woman of Samaria' +p183962 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183963 +sg25273 +S'engraving' +p183964 +sg25275 +S'probably c. 1576/1580' +p183965 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000841c.jpg' +p183966 +sg25267 +g27 +sa(dp183967 +g25268 +S'Christ Praying' +p183968 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183969 +sg25273 +S'engraving' +p183970 +sg25275 +S'probably c. 1576/1580' +p183971 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008412.jpg' +p183972 +sg25267 +g27 +sa(dp183973 +g25268 +S'Christ Heals a Dumb Man' +p183974 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183975 +sg25273 +S'engraving' +p183976 +sg25275 +S'probably c. 1576/1580' +p183977 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008408.jpg' +p183978 +sg25267 +g27 +sa(dp183979 +g25268 +S'The Miraculous Draught of Fishes' +p183980 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183981 +sg25273 +S'engraving' +p183982 +sg25275 +S'1577' +p183983 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008443.jpg' +p183984 +sg25267 +g27 +sa(dp183985 +g25268 +S'The Epileptic Child Healed' +p183986 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183987 +sg25273 +S'engraving' +p183988 +sg25275 +S'probably c. 1576/1580' +p183989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083cf.jpg' +p183990 +sg25267 +g27 +sa(dp183991 +g25268 +S'Christ Heals a Sick Woman' +p183992 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183993 +sg25273 +S'engraving' +p183994 +sg25275 +S'probably c. 1576/1580' +p183995 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008363.jpg' +p183996 +sg25267 +g27 +sa(dp183997 +g25268 +S'Christ Journeying to the House of a Pharisee' +p183998 +sg25270 +S'L\xc3\xa9onard Gaultier' +p183999 +sg25273 +S'engraving' +p184000 +sg25275 +S'probably c. 1576/1580' +p184001 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000839a.jpg' +p184002 +sg25267 +g27 +sa(dp184003 +g25268 +S'Christ Teaching the Multitude' +p184004 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184005 +sg25273 +S'engraving' +p184006 +sg25275 +S'probably c. 1576/1580' +p184007 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000838f.jpg' +p184008 +sg25267 +g27 +sa(dp184009 +g25273 +S'engraving on thick paper' +p184010 +sg25267 +g27 +sg25275 +S'1825' +p184011 +sg25268 +S"Job's Sons and Daughters Overwhelmed by Satan" +p184012 +sg25270 +S'William Blake' +p184013 +sa(dp184014 +g25268 +S'A Man Born Blind Receives Sight' +p184015 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184016 +sg25273 +S'engraving' +p184017 +sg25275 +S'probably c. 1576/1580' +p184018 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008384.jpg' +p184019 +sg25267 +g27 +sa(dp184020 +g25268 +S'Christ Teaching' +p184021 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184022 +sg25273 +S'engraving' +p184023 +sg25275 +S'probably c. 1576/1580' +p184024 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008358.jpg' +p184025 +sg25267 +g27 +sa(dp184026 +g25268 +S'Christ on the Lake' +p184027 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184028 +sg25273 +S'engraving' +p184029 +sg25275 +S'probably c. 1576/1580' +p184030 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008379.jpg' +p184031 +sg25267 +g27 +sa(dp184032 +g25268 +S'Christ the Teacher' +p184033 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184034 +sg25273 +S'engraving' +p184035 +sg25275 +S'probably c. 1576/1580' +p184036 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083c5.jpg' +p184037 +sg25267 +g27 +sa(dp184038 +g25268 +S'Christ Raises the Daughter of Jairus' +p184039 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184040 +sg25273 +S'engraving' +p184041 +sg25275 +S'probably c. 1576/1580' +p184042 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083b0.jpg' +p184043 +sg25267 +g27 +sa(dp184044 +g25268 +S'Christ Teaching' +p184045 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184046 +sg25273 +S'engraving' +p184047 +sg25275 +S'probably c. 1576/1580' +p184048 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083a5.jpg' +p184049 +sg25267 +g27 +sa(dp184050 +g25268 +S'Christ Heals the Two Blind Men' +p184051 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184052 +sg25273 +S'engraving' +p184053 +sg25275 +S'probably c. 1576/1580' +p184054 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008340.jpg' +p184055 +sg25267 +g27 +sa(dp184056 +g25268 +S'Christ Teaching the Multitude' +p184057 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184058 +sg25273 +S'engraving' +p184059 +sg25275 +S'probably c. 1576/1580' +p184060 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000834e.jpg' +p184061 +sg25267 +g27 +sa(dp184062 +g25268 +S'Christ Heals the Epileptic Boy' +p184063 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184064 +sg25273 +S'engraving' +p184065 +sg25275 +S'probably c. 1576/1580' +p184066 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083bb.jpg' +p184067 +sg25267 +g27 +sa(dp184068 +g25268 +S'The Ten Lepers are Cleansed' +p184069 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184070 +sg25273 +S'engraving' +p184071 +sg25275 +S'probably c. 1576/1580' +p184072 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000836e.jpg' +p184073 +sg25267 +g27 +sa(dp184074 +g25273 +S'engraving on thin paper' +p184075 +sg25267 +g27 +sg25275 +S'1825' +p184076 +sg25268 +S"Job's Sons and Daughters Overwhelmed by Satan" +p184077 +sg25270 +S'William Blake' +p184078 +sa(dp184079 +g25268 +S'The Mission of the Seventy' +p184080 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184081 +sg25273 +S'engraving' +p184082 +sg25275 +S'probably c. 1576/1580' +p184083 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008488.jpg' +p184084 +sg25267 +g27 +sa(dp184085 +g25268 +S'Christ at the Feast of Tabernacles' +p184086 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184087 +sg25273 +S'engraving' +p184088 +sg25275 +S'probably c. 1576/1580' +p184089 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008416.jpg' +p184090 +sg25267 +g27 +sa(dp184091 +g25268 +S'Christ the Teacher' +p184092 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184093 +sg25273 +S'engraving' +p184094 +sg25275 +S'probably c. 1576/1580' +p184095 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008420.jpg' +p184096 +sg25267 +g27 +sa(dp184097 +g25268 +S'The Raising of Lazarus' +p184098 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184099 +sg25273 +S'engraving' +p184100 +sg25275 +S'probably c. 1576/1580' +p184101 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083f8.jpg' +p184102 +sg25267 +g27 +sa(dp184103 +g25268 +S'Christ Heals the Sick' +p184104 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184105 +sg25273 +S'engraving' +p184106 +sg25275 +S'probably c. 1576/1580' +p184107 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008496.jpg' +p184108 +sg25267 +g27 +sa(dp184109 +g25268 +S'The Chief Priests and Pharisees' +p184110 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184111 +sg25273 +S'engraving' +p184112 +sg25275 +S'probably c. 1576/1580' +p184113 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000842a.jpg' +p184114 +sg25267 +g27 +sa(dp184115 +g25268 +S'Christ Blesses the Children' +p184116 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184117 +sg25273 +S'engraving' +p184118 +sg25275 +S'probably c. 1576/1580' +p184119 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008434.jpg' +p184120 +sg25267 +g27 +sa(dp184121 +g25268 +S'Jesus the Obedient Son' +p184122 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184123 +sg25273 +S'engraving' +p184124 +sg25275 +S'probably c. 1576/1580' +p184125 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000843d.jpg' +p184126 +sg25267 +g27 +sa(dp184127 +g25268 +S'Zacharias and the Angel of the Lord' +p184128 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184129 +sg25273 +S'engraving' +p184130 +sg25275 +S'probably c. 1576/1580' +p184131 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008448.jpg' +p184132 +sg25267 +g27 +sa(dp184133 +g25268 +S'The Preaching of John the Baptist in the Wilderness' +p184134 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184135 +sg25273 +S'engraving' +p184136 +sg25275 +S'probably c. 1576/1580' +p184137 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008455.jpg' +p184138 +sg25267 +g27 +sa(dp184139 +g25273 +S'engraving on thick paper' +p184140 +sg25267 +g27 +sg25275 +S'1825' +p184141 +sg25268 +S"Job's Sons and Daughters Overwhelmed by Satan" +p184142 +sg25270 +S'William Blake' +p184143 +sa(dp184144 +g25268 +S'Christ Heals the Paralyzed Man' +p184145 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184146 +sg25273 +S'engraving' +p184147 +sg25275 +S'probably c. 1576/1580' +p184148 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008402.jpg' +p184149 +sg25267 +g27 +sa(dp184150 +g25268 +S'Christ in the House of Mary and Martha' +p184151 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184152 +sg25273 +S'engraving' +p184153 +sg25275 +S'probably c. 1576/1580' +p184154 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008461.jpg' +p184155 +sg25267 +g27 +sa(dp184156 +g25268 +S'The Wedding at Cana (Christ Changes Water to Wine)' +p184157 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184158 +sg25273 +S'engraving' +p184159 +sg25275 +S'probably c. 1576/1580' +p184160 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000840c.jpg' +p184161 +sg25267 +g27 +sa(dp184162 +g25268 +S'The Testimony of John' +p184163 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184164 +sg25273 +S'engraving' +p184165 +sg25275 +S'probably c. 1576/1580' +p184166 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000846e.jpg' +p184167 +sg25267 +g27 +sa(dp184168 +g25268 +S'The Annunciation to the Shepherds' +p184169 +sg25270 +S'L\xc3\xa9onard Gaultier' +p184170 +sg25273 +S'engraving' +p184171 +sg25275 +S'probably c. 1576/1580' +p184172 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a000847b.jpg' +p184173 +sg25267 +g27 +sa(dp184174 +g25273 +S'(artist after)' +p184175 +sg25267 +g27 +sg25275 +S'\n' +p184176 +sg25268 +S'Galerie francaise ...' +p184177 +sg25270 +S'Artist Information (' +p184178 +sa(dp184179 +g25273 +S'aquatint and etching' +p184180 +sg25267 +g27 +sg25275 +S'1963' +p184181 +sg25268 +S'Approaching Taurus B' +p184182 +sg25270 +S'Jan Gelb' +p184183 +sa(dp184184 +g25273 +S'aquatint and etching with embossment' +p184185 +sg25267 +g27 +sg25275 +S'1961' +p184186 +sg25268 +S'Of Grunewald\'s "Saint Anthony"' +p184187 +sg25270 +S'Jan Gelb' +p184188 +sa(dp184189 +g25273 +S'color etching and aquatint' +p184190 +sg25267 +g27 +sg25275 +S'1958' +p184191 +sg25268 +S'Two Women' +p184192 +sg25270 +S'Franco Gentilini' +p184193 +sa(dp184194 +g25268 +S'Michelangelo Buonarroti' +p184195 +sg25270 +S'Giorgio Ghisi' +p184196 +sg25273 +S', after 1564' +p184197 +sg25275 +S'\n' +p184198 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbc0.jpg' +p184199 +sg25267 +g27 +sa(dp184200 +g25273 +S'engraving on thin paper' +p184201 +sg25267 +g27 +sg25275 +S'1825' +p184202 +sg25268 +S'The Messengers Tell Job of His Misfortunes' +p184203 +sg25270 +S'William Blake' +p184204 +sa(dp184205 +g25268 +S'The Rest on the Flight into Egypt' +p184206 +sg25270 +S'Artist Information (' +p184207 +sg25273 +S'(artist after)' +p184208 +sg25275 +S'\n' +p184209 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8c0.jpg' +p184210 +sg25267 +g27 +sa(dp184211 +g25268 +S'The Three Fates' +p184212 +sg25270 +S'Artist Information (' +p184213 +sg25273 +S'(artist after)' +p184214 +sg25275 +S'\n' +p184215 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c741.jpg' +p184216 +sg25267 +g27 +sa(dp184217 +g25268 +S'Allegorical Figure Holding a Sphere' +p184218 +sg25270 +S'Artist Information (' +p184219 +sg25273 +S'(artist after)' +p184220 +sg25275 +S'\n' +p184221 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c743.jpg' +p184222 +sg25267 +g27 +sa(dp184223 +g25273 +S'lithograph' +p184224 +sg25267 +g27 +sg25275 +S'1961' +p184225 +sg25268 +S'Seated Nude (Nu assis)' +p184226 +sg25270 +S'Alberto Giacometti' +p184227 +sa(dp184228 +g25273 +S'lithograph' +p184229 +sg25267 +g27 +sg25275 +S'1961' +p184230 +sg25268 +S'Standing Nude I (Nu debout I)' +p184231 +sg25270 +S'Alberto Giacometti' +p184232 +sa(dp184233 +g25268 +S'Jupiter' +p184234 +sg25270 +S"Gabriele Giolito de' Ferrara" +p184235 +sg25273 +S'woodcut' +p184236 +sg25275 +S'1534' +p184237 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbc6.jpg' +p184238 +sg25267 +g27 +sa(dp184239 +g25268 +S'Mars' +p184240 +sg25270 +S"Gabriele Giolito de' Ferrara" +p184241 +sg25273 +S'woodcut' +p184242 +sg25275 +S'1534' +p184243 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbc5.jpg' +p184244 +sg25267 +g27 +sa(dp184245 +g25268 +S'Mercury' +p184246 +sg25270 +S"Gabriele Giolito de' Ferrara" +p184247 +sg25273 +S'woodcut' +p184248 +sg25275 +S'1534' +p184249 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbc4.jpg' +p184250 +sg25267 +g27 +sa(dp184251 +g25268 +S'Moon' +p184252 +sg25270 +S"Gabriele Giolito de' Ferrara" +p184253 +sg25273 +S'woodcut' +p184254 +sg25275 +S'1534' +p184255 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbc3.jpg' +p184256 +sg25267 +g27 +sa(dp184257 +g25268 +S'Saturn' +p184258 +sg25270 +S"Gabriele Giolito de' Ferrara" +p184259 +sg25273 +S'woodcut' +p184260 +sg25275 +S'1534' +p184261 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbc2.jpg' +p184262 +sg25267 +g27 +sa(dp184263 +g25273 +S'engraving on thick paper' +p184264 +sg25267 +g27 +sg25275 +S'1825' +p184265 +sg25268 +S'Satan Smiting Job with Boils' +p184266 +sg25270 +S'William Blake' +p184267 +sa(dp184268 +g25268 +S'Venus' +p184269 +sg25270 +S"Gabriele Giolito de' Ferrara" +p184270 +sg25273 +S'woodcut' +p184271 +sg25275 +S'1534' +p184272 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbc1.jpg' +p184273 +sg25267 +g27 +sa(dp184274 +g25268 +S'Coupin de La Couperie' +p184275 +sg25270 +S'Anne-Louis Girodet de Roussy-Trioson' +p184276 +sg25273 +S'lithograph' +p184277 +sg25275 +S'1816' +p184278 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a62.jpg' +p184279 +sg25267 +g27 +sa(dp184280 +g25273 +S'lithograph in black on wove paper' +p184281 +sg25267 +g27 +sg25275 +S'1959' +p184282 +sg25268 +S'Tondo' +p184283 +sg25270 +S'Fritz Glarner' +p184284 +sa(dp184285 +g25268 +S'The Agony in the Garden' +p184286 +sg25270 +S'Master AG' +p184287 +sg25273 +S'engraving on vellum' +p184288 +sg25275 +S'c. 1480/1490' +p184289 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3d9.jpg' +p184290 +sg25267 +g27 +sa(dp184291 +g25273 +S'etching and aquatint' +p184292 +sg25267 +g27 +sg25275 +S'1961' +p184293 +sg25268 +S'Man with a Fish (Portrait of Ben Shahn)' +p184294 +sg25270 +S'Domenico Gnoli' +p184295 +sa(dp184296 +g25273 +S'aquatint' +p184297 +sg25267 +g27 +sg25275 +S'1961' +p184298 +sg25268 +S'Playing Child' +p184299 +sg25270 +S'Domenico Gnoli' +p184300 +sa(dp184301 +g25273 +S'color aquatint (with stencil?)' +p184302 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184303 +sg25268 +S'On the Beach' +p184304 +sg25270 +S'Milton Goldstein' +p184305 +sa(dp184306 +g25268 +S'Pride' +p184307 +sg25270 +S'Conrad Goltzius' +p184308 +sg25273 +S'engraving' +p184309 +sg25275 +S'unknown date\n' +p184310 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfc2.jpg' +p184311 +sg25267 +g27 +sa(dp184312 +g25268 +S'Fiero monstruo! (Fierce Monster!)' +p184313 +sg25270 +S'Francisco de Goya' +p184314 +sg25273 +S'etching, drypoint and burin on Arches laid paper [trial proof printed posthumously in the Calcografia in 1957-58]' +p184315 +sg25275 +S'1810/1820' +p184316 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed6f.jpg' +p184317 +sg25267 +g27 +sa(dp184318 +g25268 +S'Esto es lo verdadero (This Is the Truth)' +p184319 +sg25270 +S'Francisco de Goya' +p184320 +sg25273 +S'etching, aquatint, drypoint, burin and burnisher on Arches laid paper [trial proof printed posthumously in the Calcografia in 1957-58]' +p184321 +sg25275 +S'1810/1820' +p184322 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed70.jpg' +p184323 +sg25267 +g27 +sa(dp184324 +g25273 +S'engraving on thin paper' +p184325 +sg25267 +g27 +sg25275 +S'1825' +p184326 +sg25268 +S'Satan Smiting Job with Boils' +p184327 +sg25270 +S'William Blake' +p184328 +sa(dp184329 +g25268 +S'The Landing of the Dutch Expedition Party in New York' +p184330 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p184331 +sg25273 +S'pen and brown and black ink with brown wash on laid paper' +p184332 +sg25275 +S'unknown date\n' +p184333 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a000724d.jpg' +p184334 +sg25267 +g27 +sa(dp184335 +g25273 +S'color lithograph' +p184336 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184337 +sg25268 +S'Untitled' +p184338 +sg25270 +S'Cleve Gray' +p184339 +sa(dp184340 +g25268 +S'The Chief of the Mamelukes on Horseback' +p184341 +sg25270 +S'Antoine-Jean Gros' +p184342 +sg25273 +S'lithograph' +p184343 +sg25275 +S'1817' +p184344 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a68.jpg' +p184345 +sg25267 +g27 +sa(dp184346 +g25268 +S'Landscape' +p184347 +sg25270 +S'Jean-Baptiste-Armand Guillaumin' +p184348 +sg25273 +S'color lithograph' +p184349 +sg25275 +S'1882' +p184350 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a6b.jpg' +p184351 +sg25267 +g27 +sa(dp184352 +g25273 +S'graphite with watercolor' +p184353 +sg25267 +g27 +sg25275 +S'1947' +p184354 +sg25268 +S'Washerwomen' +p184355 +sg25270 +S'Renato Guttuso' +p184356 +sa(dp184357 +g25273 +S'etching, engraving and color aquatint' +p184358 +sg25267 +g27 +sg25275 +S'1961' +p184359 +sg25268 +S'Composition' +p184360 +sg25270 +S'Terry Haass' +p184361 +sa(dp184362 +g25273 +S'color etching, engraving and aquatint' +p184363 +sg25267 +g27 +sg25275 +S'1961' +p184364 +sg25268 +S'Composition' +p184365 +sg25270 +S'Terry Haass' +p184366 +sa(dp184367 +g25273 +S'color etching, engraving, aquatint and sugar-lift' +p184368 +sg25267 +g27 +sg25275 +S'1961' +p184369 +sg25268 +S'Composition' +p184370 +sg25270 +S'Terry Haass' +p184371 +sa(dp184372 +g25273 +S'etching, engraving, and color aquatint' +p184373 +sg25267 +g27 +sg25275 +S'1961' +p184374 +sg25268 +S'Composition' +p184375 +sg25270 +S'Terry Haass' +p184376 +sa(dp184377 +g25273 +S'color etching, engraving, aquatint, sugar-lift, and scraping' +p184378 +sg25267 +g27 +sg25275 +S'1961' +p184379 +sg25268 +S'Composition' +p184380 +sg25270 +S'Terry Haass' +p184381 +sa(dp184382 +g25273 +S'engraving on thick paper' +p184383 +sg25267 +g27 +sg25275 +S'1825' +p184384 +sg25268 +S'Satan Smiting Job with Boils' +p184385 +sg25270 +S'William Blake' +p184386 +sa(dp184387 +g25273 +S'color etching, engraving, aquatint, and scraping' +p184388 +sg25267 +g27 +sg25275 +S'1961' +p184389 +sg25268 +S'Composition' +p184390 +sg25270 +S'Terry Haass' +p184391 +sa(dp184392 +g25273 +S'etching, engraving, and aquatint in blue' +p184393 +sg25267 +g27 +sg25275 +S'1961' +p184394 +sg25268 +S'Composition' +p184395 +sg25270 +S'Terry Haass' +p184396 +sa(dp184397 +g25273 +S'color etching, engraving, aquatint, and sugar-lift' +p184398 +sg25267 +g27 +sg25275 +S'1961' +p184399 +sg25268 +S'Composition' +p184400 +sg25270 +S'Terry Haass' +p184401 +sa(dp184402 +g25273 +S'color etching, engraving, aquatint, and sugar-lift' +p184403 +sg25267 +g27 +sg25275 +S'1961' +p184404 +sg25268 +S'Composition' +p184405 +sg25270 +S'Terry Haass' +p184406 +sa(dp184407 +g25273 +S'color etching, engraving, and aquatint' +p184408 +sg25267 +g27 +sg25275 +S'1961' +p184409 +sg25268 +S'Composition' +p184410 +sg25270 +S'Terry Haass' +p184411 +sa(dp184412 +g25273 +S'color etching, engraving, and aquatint' +p184413 +sg25267 +g27 +sg25275 +S'1961' +p184414 +sg25268 +S'Composition' +p184415 +sg25270 +S'Terry Haass' +p184416 +sa(dp184417 +g25273 +S'lithograph' +p184418 +sg25267 +g27 +sg25275 +S'1961' +p184419 +sg25268 +S'Circus' +p184420 +sg25270 +S'Hideo Hagiwara' +p184421 +sa(dp184422 +g25273 +S'6-color woodcut' +p184423 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184424 +sg25268 +S'Composition' +p184425 +sg25270 +S'Hideo Hagiwara' +p184426 +sa(dp184427 +g25273 +S'4-color woodcut' +p184428 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184429 +sg25268 +S'Hail' +p184430 +sg25270 +S'Hideo Hagiwara' +p184431 +sa(dp184432 +g25273 +S'4-color lithograph' +p184433 +sg25267 +g27 +sg25275 +S'1960' +p184434 +sg25268 +S'Leaves' +p184435 +sg25270 +S'Hideo Hagiwara' +p184436 +sa(dp184437 +g25273 +S'engraving on thick paper' +p184438 +sg25267 +g27 +sg25275 +S'1825' +p184439 +sg25268 +S'Satan Smiting Job with Boils' +p184440 +sg25270 +S'William Blake' +p184441 +sa(dp184442 +g25273 +S'thermo-intaglio' +p184443 +sg25267 +g27 +sg25275 +S'1961' +p184444 +sg25268 +S'Apocalypse' +p184445 +sg25270 +S'Sid Hammer' +p184446 +sa(dp184447 +g25273 +S'portfolio with eleven thermo-intaglio prints, including one as title on cover' +p184448 +sg25267 +g27 +sg25275 +S'1961' +p184449 +sg25268 +S'Apocalypse' +p184450 +sg25270 +S'Sid Hammer' +p184451 +sa(dp184452 +g25273 +S'thermo-intaglio' +p184453 +sg25267 +g27 +sg25275 +S'1961' +p184454 +sg25268 +S'Dies Irae' +p184455 +sg25270 +S'Sid Hammer' +p184456 +sa(dp184457 +g25273 +S'thermo-intaglio' +p184458 +sg25267 +g27 +sg25275 +S'1961' +p184459 +sg25268 +S'Manna' +p184460 +sg25270 +S'Sid Hammer' +p184461 +sa(dp184462 +g25273 +S'thermo-intaglio' +p184463 +sg25267 +g27 +sg25275 +S'1961' +p184464 +sg25268 +S'The Maw' +p184465 +sg25270 +S'Sid Hammer' +p184466 +sa(dp184467 +g25273 +S'thermo-intaglio' +p184468 +sg25267 +g27 +sg25275 +S'1961' +p184469 +sg25268 +S'The Altar' +p184470 +sg25270 +S'Sid Hammer' +p184471 +sa(dp184472 +g25273 +S'thermo-intaglio' +p184473 +sg25267 +g27 +sg25275 +S'1961' +p184474 +sg25268 +S'Chariots' +p184475 +sg25270 +S'Sid Hammer' +p184476 +sa(dp184477 +g25273 +S'thermo-intaglio' +p184478 +sg25267 +g27 +sg25275 +S'1961' +p184479 +sg25268 +S'The Message' +p184480 +sg25270 +S'Sid Hammer' +p184481 +sa(dp184482 +g25273 +S'thermo-intaglio' +p184483 +sg25267 +g27 +sg25275 +S'1961' +p184484 +sg25268 +S'Babylon' +p184485 +sg25270 +S'Sid Hammer' +p184486 +sa(dp184487 +g25273 +S'thermo-intaglio' +p184488 +sg25267 +g27 +sg25275 +S'1961' +p184489 +sg25268 +S'Trumpets' +p184490 +sg25270 +S'Sid Hammer' +p184491 +sa(dp184492 +g25273 +S'engraving on thick paper' +p184493 +sg25267 +g27 +sg25275 +S'1825' +p184494 +sg25268 +S'Satan Smiting Job with Boils' +p184495 +sg25270 +S'William Blake' +p184496 +sa(dp184497 +g25273 +S'thermo-intaglio' +p184498 +sg25267 +g27 +sg25275 +S'1961' +p184499 +sg25268 +S'The Road' +p184500 +sg25270 +S'Sid Hammer' +p184501 +sa(dp184502 +g25273 +S'thermo-intaglio' +p184503 +sg25267 +g27 +sg25275 +S'1961' +p184504 +sg25268 +S'The Street' +p184505 +sg25270 +S'Sid Hammer' +p184506 +sa(dp184507 +g25273 +S'5-color lithograph' +p184508 +sg25267 +g27 +sg25275 +S'1961' +p184509 +sg25268 +S'Pallas Athene' +p184510 +sg25270 +S'Grace Hartigan' +p184511 +sa(dp184512 +g25273 +S'color woodcut' +p184513 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184514 +sg25268 +S'Fishing Boats in the Morning' +p184515 +sg25270 +S'Okiie Hashimoto' +p184516 +sa(dp184517 +g25273 +S'color lithograph' +p184518 +sg25267 +g27 +sg25275 +S'1960' +p184519 +sg25268 +S'Garden' +p184520 +sg25270 +S'Okiie Hashimoto' +p184521 +sa(dp184522 +g25268 +S'The White House' +p184523 +sg25270 +S'Childe Hassam' +p184524 +sg25273 +S'etching' +p184525 +sg25275 +S'1925' +p184526 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a00104e4.jpg' +p184527 +sg25267 +g27 +sa(dp184528 +g25273 +S'hand-colored monotype' +p184529 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184530 +sg25268 +S'Woman Poking the Fire' +p184531 +sg25270 +S'Eugene Higgins' +p184532 +sa(dp184533 +g25273 +S'(artist after)' +p184534 +sg25267 +g27 +sg25275 +S'\n' +p184535 +sg25268 +S"View near Jessup's Landing" +p184536 +sg25270 +S'Artist Information (' +p184537 +sa(dp184538 +g25268 +S'The Raising of Lazarus' +p184539 +sg25270 +S'Augustin Hirschvogel' +p184540 +sg25273 +S'etching' +p184541 +sg25275 +S'1545' +p184542 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac26.jpg' +p184543 +sg25267 +g27 +sa(dp184544 +g25268 +S'Count' +p184545 +sg25270 +S'Hans Holbein the Younger' +p184546 +sg25273 +S'woodcut' +p184547 +sg25275 +S'unknown date\n' +p184548 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac7d.jpg' +p184549 +sg25267 +g27 +sa(dp184550 +g25273 +S'engraving on thick paper' +p184551 +sg25267 +g27 +sg25275 +S'1825' +p184552 +sg25268 +S"Job's Comforters" +p184553 +sg25270 +S'William Blake' +p184554 +sa(dp184555 +g25268 +S'King' +p184556 +sg25270 +S'Hans Holbein the Younger' +p184557 +sg25273 +S'woodcut' +p184558 +sg25275 +S'unknown date\n' +p184559 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac92.jpg' +p184560 +sg25267 +g27 +sa(dp184561 +g25268 +S'Knight' +p184562 +sg25270 +S'Hans Holbein the Younger' +p184563 +sg25273 +S'woodcut' +p184564 +sg25275 +S'unknown date\n' +p184565 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac7c.jpg' +p184566 +sg25267 +g27 +sa(dp184567 +g25268 +S'Noblewoman' +p184568 +sg25270 +S'Hans Holbein the Younger' +p184569 +sg25273 +S'woodcut' +p184570 +sg25275 +S'unknown date\n' +p184571 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac80.jpg' +p184572 +sg25267 +g27 +sa(dp184573 +g25268 +S'Physician' +p184574 +sg25270 +S'Hans Holbein the Younger' +p184575 +sg25273 +S'woodcut' +p184576 +sg25275 +S'unknown date\n' +p184577 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac7a.jpg' +p184578 +sg25267 +g27 +sa(dp184579 +g25268 +S'Peasant Brawl' +p184580 +sg25270 +S'Artist Information (' +p184581 +sg25273 +S'(artist after)' +p184582 +sg25275 +S'\n' +p184583 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db28.jpg' +p184584 +sg25267 +g27 +sa(dp184585 +g25268 +S'Rustic Wedding Dance' +p184586 +sg25270 +S'Artist Information (' +p184587 +sg25273 +S'(artist after)' +p184588 +sg25275 +S'\n' +p184589 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db2a.jpg' +p184590 +sg25267 +g27 +sa(dp184591 +g25268 +S'Voltaire' +p184592 +sg25270 +S'Jean Huber' +p184593 +sg25273 +S'stipple engraving in red' +p184594 +sg25275 +S'1790' +p184595 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef92.jpg' +p184596 +sg25267 +g27 +sa(dp184597 +g25268 +S'Terrace of St. Cloud (Terrasse de St. Cloud)' +p184598 +sg25270 +S'Paul Huet' +p184599 +sg25273 +S'lithograph' +p184600 +sg25275 +S'1833' +p184601 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098bd.jpg' +p184602 +sg25267 +g27 +sa(dp184603 +g25273 +S'color woodcut and lithograph' +p184604 +sg25267 +g27 +sg25275 +S'1961' +p184605 +sg25268 +S'Eclipse' +p184606 +sg25270 +S'Blair Rowlands Hughes-Stanton' +p184607 +sa(dp184608 +g25273 +S'color woodcut and lithograph' +p184609 +sg25267 +g27 +sg25275 +S'1961' +p184610 +sg25268 +S'Moonshine' +p184611 +sg25270 +S'Blair Rowlands Hughes-Stanton' +p184612 +sa(dp184613 +g25273 +S'engraving on thick paper' +p184614 +sg25267 +g27 +sg25275 +S'1825' +p184615 +sg25268 +S"Job's Comforters" +p184616 +sg25270 +S'William Blake' +p184617 +sa(dp184618 +g25273 +S'(artist after)' +p184619 +sg25267 +g27 +sg25275 +S'\n' +p184620 +sg25268 +S'Falls of Niagra' +p184621 +sg25270 +S'Artist Information (' +p184622 +sa(dp184623 +g25273 +S'etching' +p184624 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184625 +sg25268 +S'The Creative Process' +p184626 +sg25270 +S'Harry L. Hurwitz' +p184627 +sa(dp184628 +g25273 +S'etching and drypoint' +p184629 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184630 +sg25268 +S'The Thirty Stage Rocket' +p184631 +sg25270 +S'Harry L. Hurwitz' +p184632 +sa(dp184633 +g25273 +S'lithograph' +p184634 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184635 +sg25268 +S"Youth's Head" +p184636 +sg25270 +S'Harry L. Hurwitz' +p184637 +sa(dp184638 +g25273 +S'lithograph' +p184639 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184640 +sg25268 +S'Tower' +p184641 +sg25270 +S'Shuzo Ikeda' +p184642 +sa(dp184643 +g25273 +S'lithograph' +p184644 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184645 +sg25268 +S'Untitled' +p184646 +sg25270 +S'Tatsuo Ikeda' +p184647 +sa(dp184648 +g25273 +S'hand-colored woodcut' +p184649 +sg25267 +g27 +sg25275 +S'c. 1710' +p184650 +sg25268 +S'Edozu (Map of Edo)' +p184651 +sg25270 +S'Ryusen Ishikawa' +p184652 +sa(dp184653 +g25273 +S'lithograph' +p184654 +sg25267 +g27 +sg25275 +S'1960' +p184655 +sg25268 +S'Owl' +p184656 +sg25270 +S'Gregory Alexandrovich Israelovich' +p184657 +sa(dp184658 +g25273 +S'color Lithograph' +p184659 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184660 +sg25268 +S'Roosters' +p184661 +sg25270 +S'Shigeru Izumi' +p184662 +sa(dp184663 +g25268 +S'Mona Lisa Bela' +p184664 +sg25270 +S'Italian 15th Century' +p184665 +sg25273 +S'sheet: 29.6 x 24.1 cm (11 5/8 x 9 1/2 in.)' +p184666 +sg25275 +S'\nwoodcut' +p184667 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c70c.jpg' +p184668 +sg25267 +g27 +sa(dp184669 +g25273 +S'engraving on thick paper' +p184670 +sg25267 +g27 +sg25275 +S'1825' +p184671 +sg25268 +S"Job's Comforters" +p184672 +sg25270 +S'William Blake' +p184673 +sa(dp184674 +g25268 +S'The Adoration of the Shepherds' +p184675 +sg25270 +S'Antoine Jacquard' +p184676 +sg25273 +S'engraving' +p184677 +sg25275 +S'unknown date\n' +p184678 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008927.jpg' +p184679 +sg25267 +g27 +sa(dp184680 +g25268 +S'Apollo and Daphne' +p184681 +sg25270 +S'Antoine Jacquard' +p184682 +sg25273 +S'engraving' +p184683 +sg25275 +S'unknown date\n' +p184684 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008922.jpg' +p184685 +sg25267 +g27 +sa(dp184686 +g25268 +S'The Capture of Troy' +p184687 +sg25270 +S'Antoine Jacquard' +p184688 +sg25273 +S'engraving' +p184689 +sg25275 +S'unknown date\n' +p184690 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008928.jpg' +p184691 +sg25267 +g27 +sa(dp184692 +g25268 +S'The Crucifixion' +p184693 +sg25270 +S'Antoine Jacquard' +p184694 +sg25273 +S'engraving' +p184695 +sg25275 +S'unknown date\n' +p184696 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008929.jpg' +p184697 +sg25267 +g27 +sa(dp184698 +g25268 +S'Execution' +p184699 +sg25270 +S'Antoine Jacquard' +p184700 +sg25273 +S'engraving' +p184701 +sg25275 +S'unknown date\n' +p184702 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008926.jpg' +p184703 +sg25267 +g27 +sa(dp184704 +g25268 +S'General' +p184705 +sg25270 +S'Antoine Jacquard' +p184706 +sg25273 +S'engraving' +p184707 +sg25275 +S'unknown date\n' +p184708 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008923.jpg' +p184709 +sg25267 +g27 +sa(dp184710 +g25268 +S'Landscape' +p184711 +sg25270 +S'Antoine Jacquard' +p184712 +sg25273 +S'engraving' +p184713 +sg25275 +S'unknown date\n' +p184714 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008921.jpg' +p184715 +sg25267 +g27 +sa(dp184716 +g25268 +S'Landscape' +p184717 +sg25270 +S'Antoine Jacquard' +p184718 +sg25273 +S'engraving' +p184719 +sg25275 +S'unknown date\n' +p184720 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008924.jpg' +p184721 +sg25267 +g27 +sa(dp184722 +g25268 +S'Landscape with an Obelisk' +p184723 +sg25270 +S'Antoine Jacquard' +p184724 +sg25273 +S'engraving' +p184725 +sg25275 +S'unknown date\n' +p184726 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008925.jpg' +p184727 +sg25267 +g27 +sa(dp184728 +g25268 +S'Lovers' +p184729 +sg25270 +S'Antoine Jacquard' +p184730 +sg25273 +S'engraving' +p184731 +sg25275 +S'unknown date\n' +p184732 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008932.jpg' +p184733 +sg25267 +g27 +sa(dp184734 +g25273 +S'engraving on thick paper' +p184735 +sg25267 +g27 +sg25275 +S'1825' +p184736 +sg25268 +S'Satan Smiting Job with Boils' +p184737 +sg25270 +S'William Blake' +p184738 +sa(dp184739 +g25268 +S'Lovers' +p184740 +sg25270 +S'Antoine Jacquard' +p184741 +sg25273 +S'engraving' +p184742 +sg25275 +S'unknown date\n' +p184743 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008931.jpg' +p184744 +sg25267 +g27 +sa(dp184745 +g25268 +S'Lucretia?' +p184746 +sg25270 +S'Antoine Jacquard' +p184747 +sg25273 +S'engraving' +p184748 +sg25275 +S'unknown date\n' +p184749 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a000892e.jpg' +p184750 +sg25267 +g27 +sa(dp184751 +g25268 +S'Man on Horseback' +p184752 +sg25270 +S'Antoine Jacquard' +p184753 +sg25273 +S'engraving' +p184754 +sg25275 +S'unknown date\n' +p184755 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a000892f.jpg' +p184756 +sg25267 +g27 +sa(dp184757 +g25268 +S'The Resurrection' +p184758 +sg25270 +S'Antoine Jacquard' +p184759 +sg25273 +S'engraving' +p184760 +sg25275 +S'unknown date\n' +p184761 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a000892c.jpg' +p184762 +sg25267 +g27 +sa(dp184763 +g25268 +S'Seige of Troy' +p184764 +sg25270 +S'Antoine Jacquard' +p184765 +sg25273 +S'engraving' +p184766 +sg25275 +S'unknown date\n' +p184767 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a000892b.jpg' +p184768 +sg25267 +g27 +sa(dp184769 +g25268 +S'The Three Horatii' +p184770 +sg25270 +S'Antoine Jacquard' +p184771 +sg25273 +S'engraving' +p184772 +sg25275 +S'unknown date\n' +p184773 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a000892d.jpg' +p184774 +sg25267 +g27 +sa(dp184775 +g25268 +S'Time' +p184776 +sg25270 +S'Antoine Jacquard' +p184777 +sg25273 +S'engraving' +p184778 +sg25275 +S'unknown date\n' +p184779 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008930.jpg' +p184780 +sg25267 +g27 +sa(dp184781 +g25273 +S'etching' +p184782 +sg25267 +g27 +sg25275 +S'1958' +p184783 +sg25268 +S'Don Quixote' +p184784 +sg25270 +S'Horst Janssen' +p184785 +sa(dp184786 +g25273 +S'lithograph (stone) in black on Arches paper' +p184787 +sg25267 +g27 +sg25275 +S'1960' +p184788 +sg25268 +S'Flag I' +p184789 +sg25270 +S'Jasper Johns' +p184790 +sa(dp184791 +g25268 +S'0 through 9' +p184792 +sg25270 +S'Jasper Johns' +p184793 +sg25273 +S'lithograph (stone) in black on Arches paper' +p184794 +sg25275 +S'1960' +p184795 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b34.jpg' +p184796 +sg25267 +g27 +sa(dp184797 +g25273 +S'engraving on thick paper' +p184798 +sg25267 +g27 +sg25275 +S'1825' +p184799 +sg25268 +S'Satan Going Forth from the Presence of the Lord' +p184800 +sg25270 +S'William Blake' +p184801 +sa(dp184802 +g25273 +S'color woodcut on Torinoko paper' +p184803 +sg25267 +g27 +sg25275 +S'1963' +p184804 +sg25268 +S'Dark Bird' +p184805 +sg25270 +S'Max Kahn' +p184806 +sa(dp184807 +g25273 +S'color woodcut on Rives paper' +p184808 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184809 +sg25268 +S'Swift in the Moonlight' +p184810 +sg25270 +S'Max Kahn' +p184811 +sa(dp184812 +g25273 +S'lithograph' +p184813 +sg25267 +g27 +sg25275 +S'1961' +p184814 +sg25268 +S'Man Facing Right' +p184815 +sg25270 +S'Anatoli Lvovich Kaplan' +p184816 +sa(dp184817 +g25273 +S'lithograph' +p184818 +sg25267 +g27 +sg25275 +S'1961' +p184819 +sg25268 +S'Man Facing Right' +p184820 +sg25270 +S'Anatoli Lvovich Kaplan' +p184821 +sa(dp184822 +g25273 +S'lithograph' +p184823 +sg25267 +g27 +sg25275 +S'1959' +p184824 +sg25268 +S'Old Man Facing Left' +p184825 +sg25270 +S'Anatoli Lvovich Kaplan' +p184826 +sa(dp184827 +g25273 +S'lithograph' +p184828 +sg25267 +g27 +sg25275 +S'1961' +p184829 +sg25268 +S'Peasants and Geese' +p184830 +sg25270 +S'Anatoli Lvovich Kaplan' +p184831 +sa(dp184832 +g25273 +S'etched copper plate for color etching' +p184833 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184834 +sg25268 +S'The Duck Pond (green plate)' +p184835 +sg25270 +S'Keiko Minami' +p184836 +sa(dp184837 +g25273 +S'color etching' +p184838 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184839 +sg25268 +S'The Duck Pond' +p184840 +sg25270 +S'Keiko Minami' +p184841 +sa(dp184842 +g25273 +S'lithograph' +p184843 +sg25267 +g27 +sg25275 +S'1957/1961' +p184844 +sg25268 +S'Shprinze by the River' +p184845 +sg25270 +S'Anatoli Lvovich Kaplan' +p184846 +sa(dp184847 +g25273 +S'lithograph' +p184848 +sg25267 +g27 +sg25275 +S'1957/1961' +p184849 +sg25268 +S'Tevia Praying' +p184850 +sg25270 +S'Anatoli Lvovich Kaplan' +p184851 +sa(dp184852 +g25273 +S'engraving on thin paper' +p184853 +sg25267 +g27 +sg25275 +S'1825' +p184854 +sg25268 +S"Job's Despair" +p184855 +sg25270 +S'William Blake' +p184856 +sa(dp184857 +g25273 +S'relief etching' +p184858 +sg25267 +g27 +sg25275 +S'1963' +p184859 +sg25268 +S'Capuchin Polyptych' +p184860 +sg25270 +S'Jerome Kaplan' +p184861 +sa(dp184862 +g25273 +S'color etching' +p184863 +sg25267 +g27 +sg25275 +S'1963' +p184864 +sg25268 +S'Fiesole' +p184865 +sg25270 +S'Jerome Kaplan' +p184866 +sa(dp184867 +g25273 +S'etching and aquatint (sugarlift)' +p184868 +sg25267 +g27 +sg25275 +S'published 1960' +p184869 +sg25268 +S'Carnival' +p184870 +sg25270 +S'Leon Karp' +p184871 +sa(dp184872 +g25273 +S'portfolio with 5 etchings and aquatints plus title page and introduction [printed posthumously]' +p184873 +sg25267 +g27 +sg25275 +S'published 1960' +p184874 +sg25268 +S'Karp' +p184875 +sg25270 +S'Leon Karp' +p184876 +sa(dp184877 +g25273 +S'etching' +p184878 +sg25267 +g27 +sg25275 +S'published 1960' +p184879 +sg25268 +S'Head of Gory' +p184880 +sg25270 +S'Leon Karp' +p184881 +sa(dp184882 +g25273 +S'aquatint' +p184883 +sg25267 +g27 +sg25275 +S'published 1960' +p184884 +sg25268 +S'Head of a Mummer' +p184885 +sg25270 +S'Leon Karp' +p184886 +sa(dp184887 +g25273 +S'etching' +p184888 +sg25267 +g27 +sg25275 +S'published 1960' +p184889 +sg25268 +S'Mummer and Harlequin' +p184890 +sg25270 +S'Leon Karp' +p184891 +sa(dp184892 +g25273 +S'aquatint' +p184893 +sg25267 +g27 +sg25275 +S'published 1960' +p184894 +sg25268 +S'Spanish Lady' +p184895 +sg25270 +S'Leon Karp' +p184896 +sa(dp184897 +g25273 +S'lithograph' +p184898 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184899 +sg25268 +S'Man and Woman' +p184900 +sg25270 +S'Yasu Kato' +p184901 +sa(dp184902 +g25273 +S'color woodcut' +p184903 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184904 +sg25268 +S'Dancing Figure (Camellia)' +p184905 +sg25270 +S'Kaori Kawano' +p184906 +sa(dp184907 +g25273 +S'engraving on thick paper' +p184908 +sg25267 +g27 +sg25275 +S'1825' +p184909 +sg25268 +S"Job's Despair" +p184910 +sg25270 +S'William Blake' +p184911 +sa(dp184912 +g25273 +S'color woodcut' +p184913 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184914 +sg25268 +S'Dancing Figure (Kamuro)' +p184915 +sg25270 +S'Kaori Kawano' +p184916 +sa(dp184917 +g25273 +S'color woodcut' +p184918 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184919 +sg25268 +S'Dancing Figure (Taki)' +p184920 +sg25270 +S'Kaori Kawano' +p184921 +sa(dp184922 +g25268 +S'Portrait of a Woman' +p184923 +sg25270 +S'Gustav Klimt' +p184924 +sg25273 +S'graphite' +p184925 +sg25275 +S'c. 1910' +p184926 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00069/a00069bf.jpg' +p184927 +sg25267 +g27 +sa(dp184928 +g25273 +S'lift-ground aquatint' +p184929 +sg25267 +g27 +sg25275 +S'1963' +p184930 +sg25268 +S'Hawk' +p184931 +sg25270 +S'Misch Kohn' +p184932 +sa(dp184933 +g25268 +S'Prometheus' +p184934 +sg25270 +S'Misch Kohn' +p184935 +sg25273 +S'sugar-lift aquatint on Chine applique' +p184936 +sg25275 +S'1959' +p184937 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000af3.jpg' +p184938 +sg25267 +g27 +sa(dp184939 +g25273 +S'lift-ground aquatint on inlaid India paper mountedon 1948 Whatman paper' +p184940 +sg25267 +g27 +sg25275 +S'1963' +p184941 +sg25268 +S'Requiem' +p184942 +sg25270 +S'Misch Kohn' +p184943 +sa(dp184944 +g25273 +S'deep etching and liftground' +p184945 +sg25267 +g27 +sg25275 +S'1958' +p184946 +sg25268 +S'Sigmund Freud' +p184947 +sg25270 +S'Misch Kohn' +p184948 +sa(dp184949 +g25273 +S'color lift-ground aquatint printed over a collage base' +p184950 +sg25267 +g27 +sg25275 +S'1962' +p184951 +sg25268 +S'Three Generals' +p184952 +sg25270 +S'Misch Kohn' +p184953 +sa(dp184954 +g25273 +S'lift-ground aquatint printed over a collage in color on inlaid India paper mounted on 1948 Whatman paper' +p184955 +sg25267 +g27 +sg25275 +S'1963' +p184956 +sg25268 +S'Tiger' +p184957 +sg25270 +S'Misch Kohn' +p184958 +sa(dp184959 +g25273 +S'lithograph in green, blue, and orange' +p184960 +sg25267 +g27 +sg25275 +S'1956' +p184961 +sg25268 +S'Self-Portrait' +p184962 +sg25270 +S'Oskar Kokoschka' +p184963 +sa(dp184964 +g25268 +S'The Vision of Eliphaz' +p184965 +sg25270 +S'William Blake' +p184966 +sg25273 +S'engraving with border in graphite on thick paper' +p184967 +sg25275 +S'1825' +p184968 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a000766a.jpg' +p184969 +sg25267 +g27 +sa(dp184970 +g25273 +S'woodcut' +p184971 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184972 +sg25268 +S'Inland Sea' +p184973 +sg25270 +S'Gajin Kosaka' +p184974 +sa(dp184975 +g25273 +S'color woodcut' +p184976 +sg25267 +g27 +sg25275 +S'1959' +p184977 +sg25268 +S'Nesting' +p184978 +sg25270 +S'Glen Adolph Krause' +p184979 +sa(dp184980 +g25273 +S'5-color etching' +p184981 +sg25267 +g27 +sg25275 +S'1958' +p184982 +sg25268 +S'Marble Quarry' +p184983 +sg25270 +S'Rudolf K\xc3\xbcgler' +p184984 +sa(dp184985 +g25273 +S'5-color etching' +p184986 +sg25267 +g27 +sg25275 +S'1960' +p184987 +sg25268 +S'Roma' +p184988 +sg25270 +S'Rudolf K\xc3\xbcgler' +p184989 +sa(dp184990 +g25273 +S'color lithograph' +p184991 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184992 +sg25268 +S'Allegory' +p184993 +sg25270 +S'Goro Kumagai' +p184994 +sa(dp184995 +g25273 +S'lithograph' +p184996 +sg25267 +g27 +sg25275 +S'unknown date\n' +p184997 +sg25268 +S'Symphony #2' +p184998 +sg25270 +S'Goro Kumagai' +p184999 +sa(dp185000 +g25273 +S'color woodcut' +p185001 +sg25267 +g27 +sg25275 +S'1959' +p185002 +sg25268 +S'White Seeds' +p185003 +sg25270 +S'Ninon Lacey' +p185004 +sa(dp185005 +g25268 +S'Antonio Vassilacchi' +p185006 +sg25270 +S'Carlo Lasinio' +p185007 +sg25273 +S'color mezzotint' +p185008 +sg25275 +S'unknown date\n' +p185009 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cadb.jpg' +p185010 +sg25267 +g27 +sa(dp185011 +g25268 +S'Carlo Maratta' +p185012 +sg25270 +S'Carlo Lasinio' +p185013 +sg25273 +S'color mezzotint' +p185014 +sg25275 +S'unknown date\n' +p185015 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cadc.jpg' +p185016 +sg25267 +g27 +sa(dp185017 +g25268 +S'Cesare Nebbla' +p185018 +sg25270 +S'Carlo Lasinio' +p185019 +sg25273 +S'color mezzotint' +p185020 +sg25275 +S'unknown date\n' +p185021 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cadd.jpg' +p185022 +sg25267 +g27 +sa(dp185023 +g25273 +S'engraving on thick paper' +p185024 +sg25267 +g27 +sg25275 +S'1825' +p185025 +sg25268 +S'Job Rebuked by His Friends' +p185026 +sg25270 +S'William Blake' +p185027 +sa(dp185028 +g25268 +S'Ciro Ferri' +p185029 +sg25270 +S'Carlo Lasinio' +p185030 +sg25273 +S'color mezzotint' +p185031 +sg25275 +S'unknown date\n' +p185032 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cadf.jpg' +p185033 +sg25267 +g27 +sa(dp185034 +g25268 +S'Claudio Ridolfi' +p185035 +sg25270 +S'Carlo Lasinio' +p185036 +sg25273 +S'color mezzotint' +p185037 +sg25275 +S'unknown date\n' +p185038 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cade.jpg' +p185039 +sg25267 +g27 +sa(dp185040 +g25268 +S"Filippo d'Angeli" +p185041 +sg25270 +S'Carlo Lasinio' +p185042 +sg25273 +S'color mezzotint' +p185043 +sg25275 +S'unknown date\n' +p185044 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cae1.jpg' +p185045 +sg25267 +g27 +sa(dp185046 +g25268 +S'Giovanni Battista Salvi (Il Sassoferrato)' +p185047 +sg25270 +S'Carlo Lasinio' +p185048 +sg25273 +S'color mezzotint' +p185049 +sg25275 +S'unknown date\n' +p185050 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cae0.jpg' +p185051 +sg25267 +g27 +sa(dp185052 +g25268 +S'Giovanni Mazzanti' +p185053 +sg25270 +S'Carlo Lasinio' +p185054 +sg25273 +S'color mezzotint' +p185055 +sg25275 +S'unknown date\n' +p185056 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cae8.jpg' +p185057 +sg25267 +g27 +sa(dp185058 +g25268 +S'Marco Benefial' +p185059 +sg25270 +S'Carlo Lasinio' +p185060 +sg25273 +S'color mezzotint' +p185061 +sg25275 +S'unknown date\n' +p185062 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cae7.jpg' +p185063 +sg25267 +g27 +sa(dp185064 +g25268 +S'Mario Nuzzi' +p185065 +sg25270 +S'Carlo Lasinio' +p185066 +sg25273 +S'color mezzotint' +p185067 +sg25275 +S'unknown date\n' +p185068 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cae6.jpg' +p185069 +sg25267 +g27 +sa(dp185070 +g25268 +S'Michelangelo Ricciolini' +p185071 +sg25270 +S'Carlo Lasinio' +p185072 +sg25273 +S'color mezzotint' +p185073 +sg25275 +S'unknown date\n' +p185074 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cae5.jpg' +p185075 +sg25267 +g27 +sa(dp185076 +g25268 +S'Morto da Feltre' +p185077 +sg25270 +S'Carlo Lasinio' +p185078 +sg25273 +S'color mezzotint' +p185079 +sg25275 +S'unknown date\n' +p185080 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cae4.jpg' +p185081 +sg25267 +g27 +sa(dp185082 +g25268 +S'Niccolo Ricciolini' +p185083 +sg25270 +S'Carlo Lasinio' +p185084 +sg25273 +S'color mezzotint' +p185085 +sg25275 +S'unknown date\n' +p185086 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cae3.jpg' +p185087 +sg25267 +g27 +sa(dp185088 +g25273 +S'engraving with border in graphite on thick paper' +p185089 +sg25267 +g27 +sg25275 +S'1825' +p185090 +sg25268 +S'The Messengers Tell Job of His Misfortunes' +p185091 +sg25270 +S'William Blake' +p185092 +sa(dp185093 +g25268 +S'Pierino del Vaga' +p185094 +sg25270 +S'Carlo Lasinio' +p185095 +sg25273 +S'color mezzotint' +p185096 +sg25275 +S'unknown date\n' +p185097 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cae2.jpg' +p185098 +sg25267 +g27 +sa(dp185099 +g25268 +S'Huntsman Visiting a Lady' +p185100 +sg25270 +S'Artist Information (' +p185101 +sg25273 +S'(artist after)' +p185102 +sg25275 +S'\n' +p185103 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc0c.jpg' +p185104 +sg25267 +g27 +sa(dp185105 +g25268 +S'View of Nuremberg from the West [center section]' +p185106 +sg25270 +S'Hans Sebald Lautensack' +p185107 +sg25273 +S'etching' +p185108 +sg25275 +S'1552' +p185109 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000af/a000af18.jpg' +p185110 +sg25267 +g27 +sa(dp185111 +g25268 +S'View of Nuremberg from the West [left section]' +p185112 +sg25270 +S'Hans Sebald Lautensack' +p185113 +sg25273 +S'etching' +p185114 +sg25275 +S'1552' +p185115 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000ae34.jpg' +p185116 +sg25267 +g27 +sa(dp185117 +g25268 +S'View of Nuremberg from the West [right section]' +p185118 +sg25270 +S'Hans Sebald Lautensack' +p185119 +sg25273 +S'etching' +p185120 +sg25275 +S'1552' +p185121 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000aead.jpg' +p185122 +sg25267 +g27 +sa(dp185123 +g25273 +S'lithograph in gray-brown and black' +p185124 +sg25267 +g27 +sg25275 +S'1963' +p185125 +sg25268 +S'Single Figure Stooping' +p185126 +sg25270 +S'Rico Lebrun' +p185127 +sa(dp185128 +g25273 +S'portfolio with 7 lithographs (1964.8.1184-1190) plus text, 36 collotype reproductions of drawings, and colophon' +p185129 +sg25267 +g27 +sg25275 +S'published 1963' +p185130 +sg25268 +S"Drawings for Dante's Inferno" +p185131 +sg25270 +S'Rico Lebrun' +p185132 +sa(dp185133 +g25273 +S'lithograph in gray-brown and black' +p185134 +sg25267 +g27 +sg25275 +S'1963' +p185135 +sg25268 +S'Figures' +p185136 +sg25270 +S'Rico Lebrun' +p185137 +sa(dp185138 +g25273 +S'lithograph' +p185139 +sg25267 +g27 +sg25275 +S'1963' +p185140 +sg25268 +S'Three Figures Set in an Oval' +p185141 +sg25270 +S'Rico Lebrun' +p185142 +sa(dp185143 +g25273 +S'lithograph' +p185144 +sg25267 +g27 +sg25275 +S'1963' +p185145 +sg25268 +S'Two Figures' +p185146 +sg25270 +S'Rico Lebrun' +p185147 +sa(dp185148 +g25273 +S'engraving on thick paper' +p185149 +sg25267 +g27 +sg25275 +S'1825' +p185150 +sg25268 +S"Job's Comforters" +p185151 +sg25270 +S'William Blake' +p185152 +sa(dp185153 +g25273 +S'lithograph' +p185154 +sg25267 +g27 +sg25275 +S'1963' +p185155 +sg25268 +S'Figure and Serpent' +p185156 +sg25270 +S'Rico Lebrun' +p185157 +sa(dp185158 +g25273 +S'lithograph' +p185159 +sg25267 +g27 +sg25275 +S'1963' +p185160 +sg25268 +S'Figure and Monster' +p185161 +sg25270 +S'Rico Lebrun' +p185162 +sa(dp185163 +g25273 +S'lithograph' +p185164 +sg25267 +g27 +sg25275 +S'1963' +p185165 +sg25268 +S'Two Figures, One Holding the Other' +p185166 +sg25270 +S'Rico Lebrun' +p185167 +sa(dp185168 +g25273 +S'French, 1895 - 1988' +p185169 +sg25267 +g27 +sg25275 +S'(printer)' +p185170 +sg25268 +S'Still Life' +p185171 +sg25270 +S'Artist Information (' +p185172 +sa(dp185173 +g25273 +S'etching' +p185174 +sg25267 +g27 +sg25275 +S'1961' +p185175 +sg25268 +S'The Baths of Caracalla' +p185176 +sg25270 +S'Anton Lehmden' +p185177 +sa(dp185178 +g25273 +S'etching' +p185179 +sg25267 +g27 +sg25275 +S'1961' +p185180 +sg25268 +S"The Castel Sant'Angelo" +p185181 +sg25270 +S'Anton Lehmden' +p185182 +sa(dp185183 +g25273 +S'etching' +p185184 +sg25267 +g27 +sg25275 +S'1961' +p185185 +sg25268 +S'A House' +p185186 +sg25270 +S'Anton Lehmden' +p185187 +sa(dp185188 +g25273 +S'etching' +p185189 +sg25267 +g27 +sg25275 +S'1961' +p185190 +sg25268 +S'The Theater of Marcellus' +p185191 +sg25270 +S'Anton Lehmden' +p185192 +sa(dp185193 +g25273 +S'etching' +p185194 +sg25267 +g27 +sg25275 +S'1960/1961' +p185195 +sg25268 +S'Tiber Island' +p185196 +sg25270 +S'Anton Lehmden' +p185197 +sa(dp185198 +g25273 +S'wood engraving' +p185199 +sg25267 +g27 +sg25275 +S'unknown date\n' +p185200 +sg25268 +S'Scything' +p185201 +sg25270 +S'Clare Leighton' +p185202 +sa(dp185203 +g25273 +S'engraving on thick paper' +p185204 +sg25267 +g27 +sg25275 +S'1825' +p185205 +sg25268 +S'Job Rebuked by His Friends' +p185206 +sg25270 +S'William Blake' +p185207 +sa(dp185208 +g25268 +S'Self-Portrait and Other Heads' +p185209 +sg25270 +S'Jacques Antoine Marie Lemoine' +p185210 +sg25273 +S'lithograph' +p185211 +sg25275 +S'1819' +p185212 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008efa.jpg' +p185213 +sg25267 +g27 +sa(dp185214 +g25268 +S'Shadow Dance' +p185215 +sg25270 +S'Martin Lewis' +p185216 +sg25273 +S'drypoint and sandpaper ground on laid paper' +p185217 +sg25275 +S'1930' +p185218 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b06.jpg' +p185219 +sg25267 +g27 +sa(dp185220 +g25273 +S'woodcut' +p185221 +sg25267 +g27 +sg25275 +S'1957' +p185222 +sg25268 +S'Curved Equations' +p185223 +sg25270 +S'Vincent John Longo' +p185224 +sa(dp185225 +g25273 +S'(artist)' +p185226 +sg25267 +g27 +sg25275 +S'\n' +p185227 +sg25268 +S'Het Menselyk Bedryf ...' +p185228 +sg25270 +S'Artist Information (' +p185229 +sa(dp185230 +g25273 +S'color woodcut' +p185231 +sg25267 +g27 +sg25275 +S'1961' +p185232 +sg25268 +S'The Gable and Gargoyle' +p185233 +sg25270 +S'Peter Lipman-Wulf' +p185234 +sa(dp185235 +g25273 +S'color woodcut' +p185236 +sg25267 +g27 +sg25275 +S'1961' +p185237 +sg25268 +S'The Steeple' +p185238 +sg25270 +S'Peter Lipman-Wulf' +p185239 +sa(dp185240 +g25273 +S'color woodcut' +p185241 +sg25267 +g27 +sg25275 +S'1961' +p185242 +sg25268 +S'The Arch(?)' +p185243 +sg25270 +S'Peter Lipman-Wulf' +p185244 +sa(dp185245 +g25273 +S'color woodcut' +p185246 +sg25267 +g27 +sg25275 +S'1961' +p185247 +sg25268 +S'The Grand Rose Window' +p185248 +sg25270 +S'Peter Lipman-Wulf' +p185249 +sa(dp185250 +g25273 +S'color woodcut' +p185251 +sg25267 +g27 +sg25275 +S'1961' +p185252 +sg25268 +S'The Pillar of Angels' +p185253 +sg25270 +S'Peter Lipman-Wulf' +p185254 +sa(dp185255 +g25273 +S'color lithograph' +p185256 +sg25267 +g27 +sg25275 +S'unknown date\n' +p185257 +sg25268 +S'Untitled' +p185258 +sg25270 +S'Loren MacIver' +p185259 +sa(dp185260 +g25273 +S'engraving on thin paper' +p185261 +sg25267 +g27 +sg25275 +S'1825' +p185262 +sg25268 +S'Job Rebuked by His Friends' +p185263 +sg25270 +S'William Blake' +p185264 +sa(dp185265 +g25273 +S'lithograph' +p185266 +sg25267 +g27 +sg25275 +S'unknown date\n' +p185267 +sg25268 +S'Indian Trapper' +p185268 +sg25270 +S'Fred Mackstauer' +p185269 +sa(dp185270 +g25273 +S'etching and aquatint' +p185271 +sg25267 +g27 +sg25275 +S'unknown date\n' +p185272 +sg25268 +S'Look Close into the Garden' +p185273 +sg25270 +S'Samuel Calman Maitin' +p185274 +sa(dp185275 +g25273 +S'4-color etching' +p185276 +sg25267 +g27 +sg25275 +S'unknown date\n' +p185277 +sg25268 +S'"Mines de Rien" I' +p185278 +sg25270 +S'Andr\xc3\xa9 Masson' +p185279 +sa(dp185280 +g25273 +S'5-color etching' +p185281 +sg25267 +g27 +sg25275 +S'unknown date\n' +p185282 +sg25268 +S'"Mines de Rien" II' +p185283 +sg25270 +S'Andr\xc3\xa9 Masson' +p185284 +sa(dp185285 +g25273 +S'4-color etching' +p185286 +sg25267 +g27 +sg25275 +S'unknown date\n' +p185287 +sg25268 +S'"Mines de Rien" III' +p185288 +sg25270 +S'Andr\xc3\xa9 Masson' +p185289 +sa(dp185290 +g25273 +S'4-color etching' +p185291 +sg25267 +g27 +sg25275 +S'unknown date\n' +p185292 +sg25268 +S'"Mines de Rien" IV' +p185293 +sg25270 +S'Andr\xc3\xa9 Masson' +p185294 +sa(dp185295 +g25273 +S'color lithograph on Arches wove paper' +p185296 +sg25267 +g27 +sg25275 +S'1963' +p185297 +sg25268 +S'Metamorphose (Metamorphosis)' +p185298 +sg25270 +S'Andr\xc3\xa9 Masson' +p185299 +sa(dp185300 +g25268 +S'Gothic Ornament with a Lady and a Parrot' +p185301 +sg25270 +S'Master LCz' +p185302 +sg25273 +S'pen and brown ink over black chalk' +p185303 +sg25275 +S'c. 1495' +p185304 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007940.jpg' +p185305 +sg25267 +g27 +sa(dp185306 +g25268 +S'Diana Resting' +p185307 +sg25270 +S'Artist Information (' +p185308 +sg25273 +S'(artist after)' +p185309 +sg25275 +S'\n' +p185310 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a0008410.jpg' +p185311 +sg25267 +g27 +sa(dp185312 +g25268 +S'Saint Paul' +p185313 +sg25270 +S'Master WZ' +p185314 +sg25273 +S'hand-colored engraving' +p185315 +sg25275 +S'early 16th century' +p185316 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cea8.jpg' +p185317 +sg25267 +g27 +sa(dp185318 +g25273 +S'engraving on thick paper' +p185319 +sg25267 +g27 +sg25275 +S'1825' +p185320 +sg25268 +S'Job Rebuked by His Friends' +p185321 +sg25270 +S'William Blake' +p185322 +sa(dp185323 +g25268 +S'Initial S with King David as Scribe' +p185324 +sg25270 +S'Master of the Cypresses' +p185325 +sg25273 +S'miniature on vellum' +p185326 +sg25275 +S'1430s' +p185327 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037c0.jpg' +p185328 +sg25267 +g27 +sa(dp185329 +g25273 +S'miniature on vellum' +p185330 +sg25267 +g27 +sg25275 +S'1430s' +p185331 +sg25268 +S'Initial T with a group of Benedictine monks singing before an altar from which issues water' +p185332 +sg25270 +S'Master of the Cypresses' +p185333 +sa(dp185334 +g25273 +S'miniature on vellum' +p185335 +sg25267 +g27 +sg25275 +S'1430s' +p185336 +sg25268 +S'Initial A' +p185337 +sg25270 +S'Master of the Cypresses' +p185338 +sa(dp185339 +g25268 +S'Initial D' +p185340 +sg25270 +S'Master of the Cypresses' +p185341 +sg25273 +S'miniature on vellum' +p185342 +sg25275 +S'1430s' +p185343 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00025/a00025fb.jpg' +p185344 +sg25267 +g27 +sa(dp185345 +g25273 +S'miniature on vellum' +p185346 +sg25267 +g27 +sg25275 +S'1430s' +p185347 +sg25268 +S'Initial L' +p185348 +sg25270 +S'Master of the Cypresses' +p185349 +sa(dp185350 +g25273 +S'miniature on vellum' +p185351 +sg25267 +g27 +sg25275 +S'1430s' +p185352 +sg25268 +S'Initial D' +p185353 +sg25270 +S'Master of the Cypresses' +p185354 +sa(dp185355 +g25273 +S'miniature on vellum' +p185356 +sg25267 +g27 +sg25275 +S'1430s' +p185357 +sg25268 +S'Initial U (?)' +p185358 +sg25270 +S'Master of the Cypresses' +p185359 +sa(dp185360 +g25273 +S'miniature on vellum' +p185361 +sg25267 +g27 +sg25275 +S'1430s' +p185362 +sg25268 +S'Initial N (?) with David in Prayer' +p185363 +sg25270 +S'Master of the Cypresses' +p185364 +sa(dp185365 +g25273 +S'miniature on vellum' +p185366 +sg25267 +g27 +sg25275 +S'1430s' +p185367 +sg25268 +S'Initial I with David' +p185368 +sg25270 +S'Master of the Cypresses' +p185369 +sa(dp185370 +g25273 +S'miniature on vellum' +p185371 +sg25267 +g27 +sg25275 +S'1430s' +p185372 +sg25268 +S'Initial I with David' +p185373 +sg25270 +S'Master of the Cypresses' +p185374 +sa(dp185375 +g25273 +S'engraving on thick paper' +p185376 +sg25267 +g27 +sg25275 +S'1825' +p185377 +sg25268 +S"Job's Evil Dreams" +p185378 +sg25270 +S'William Blake' +p185379 +sa(dp185380 +g25273 +S'miniature on vellum' +p185381 +sg25267 +g27 +sg25275 +S'1430s' +p185382 +sg25268 +S'Initial C with David (King Saul?)' +p185383 +sg25270 +S'Master of the Cypresses' +p185384 +sa(dp185385 +g25273 +S'miniature on vellum' +p185386 +sg25267 +g27 +sg25275 +S'1430s' +p185387 +sg25268 +S'Initial L with Old Testament Prophet' +p185388 +sg25270 +S'Master of the Cypresses' +p185389 +sa(dp185390 +g25273 +S'miniature on vellum' +p185391 +sg25267 +g27 +sg25275 +S'1430s' +p185392 +sg25268 +S'Initial D with David' +p185393 +sg25270 +S'Master of the Cypresses' +p185394 +sa(dp185395 +g25268 +S'Khunig Ludwig ...' +p185396 +sg25270 +S'Master of the Miracles of Mariazell' +p185397 +sg25273 +S'woodcut' +p185398 +sg25275 +S'c. 1503' +p185399 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acea.jpg' +p185400 +sg25267 +g27 +sa(dp185401 +g25268 +S'Marggraff Hainrich in Marhern ...' +p185402 +sg25270 +S'Master of the Miracles of Mariazell' +p185403 +sg25273 +S'woodcut' +p185404 +sg25275 +S'c. 1503' +p185405 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000aceb.jpg' +p185406 +sg25267 +g27 +sa(dp185407 +g25268 +S'Ain Man Schloss seinen nagsten ...' +p185408 +sg25270 +S'Master of the Miracles of Mariazell' +p185409 +sg25273 +S'woodcut' +p185410 +sg25275 +S'c. 1503' +p185411 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ace9.jpg' +p185412 +sg25267 +g27 +sa(dp185413 +g25268 +S'Ein frau aus Marhern ...' +p185414 +sg25270 +S'Master of the Miracles of Mariazell' +p185415 +sg25273 +S'woodcut' +p185416 +sg25275 +S'c. 1503' +p185417 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000aced.jpg' +p185418 +sg25267 +g27 +sa(dp185419 +g25268 +S'Ain Man ward mit ainer Puren ...' +p185420 +sg25270 +S'Master of the Miracles of Mariazell' +p185421 +sg25273 +S'woodcut' +p185422 +sg25275 +S'c. 1503' +p185423 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ace8.jpg' +p185424 +sg25267 +g27 +sa(dp185425 +g25268 +S"Hanns Krumbel von Ewsitz... d'organdie" +p185426 +sg25270 +S'Master of the Miracles of Mariazell' +p185427 +sg25273 +S'woodcut' +p185428 +sg25275 +S'c. 1503' +p185429 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acee.jpg' +p185430 +sg25267 +g27 +sa(dp185431 +g25268 +S'Ein Man mit seine eelicheu gemachel ...' +p185432 +sg25270 +S'Master of the Miracles of Mariazell' +p185433 +sg25273 +S'woodcut' +p185434 +sg25275 +S'c. 1503' +p185435 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acef.jpg' +p185436 +sg25267 +g27 +sa(dp185437 +g25273 +S'engraving on thin paper' +p185438 +sg25267 +g27 +sg25275 +S'1825' +p185439 +sg25268 +S"Job's Evil Dreams" +p185440 +sg25270 +S'William Blake' +p185441 +sa(dp185442 +g25268 +S'Aines armen man khind fiel ...' +p185443 +sg25270 +S'Master of the Miracles of Mariazell' +p185444 +sg25273 +S'woodcut' +p185445 +sg25275 +S'c. 1503' +p185446 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acf0.jpg' +p185447 +sg25267 +g27 +sa(dp185448 +g25268 +S'Ain khnab von Mansee wardt ..' +p185449 +sg25270 +S'Master of the Miracles of Mariazell' +p185450 +sg25273 +S'woodcut' +p185451 +sg25275 +S'c. 1503' +p185452 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acf2.jpg' +p185453 +sg25267 +g27 +sa(dp185454 +g25268 +S'Ain erber man von Lanshuet ...' +p185455 +sg25270 +S'Master of the Miracles of Mariazell' +p185456 +sg25273 +S'woodcut' +p185457 +sg25275 +S'c. 1503' +p185458 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acf1.jpg' +p185459 +sg25267 +g27 +sa(dp185460 +g25268 +S'Zway khindt aus Windischlanndt ...' +p185461 +sg25270 +S'Master of the Miracles of Mariazell' +p185462 +sg25273 +S'woodcut' +p185463 +sg25275 +S'c. 1503' +p185464 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acec.jpg' +p185465 +sg25267 +g27 +sa(dp185466 +g25268 +S'Ein Briester wardt gefanngen ...' +p185467 +sg25270 +S'Master of the Miracles of Mariazell' +p185468 +sg25273 +S'woodcut' +p185469 +sg25275 +S'c. 1503' +p185470 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad48.jpg' +p185471 +sg25267 +g27 +sa(dp185472 +g25268 +S'Ain iunger Khnacht von Znaym ...' +p185473 +sg25270 +S'Master of the Miracles of Mariazell' +p185474 +sg25273 +S'woodcut' +p185475 +sg25275 +S'c. 1503' +p185476 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad49.jpg' +p185477 +sg25267 +g27 +sa(dp185478 +g25268 +S'Ein man wardt auff ain Rad ...' +p185479 +sg25270 +S'Master of the Miracles of Mariazell' +p185480 +sg25273 +S'woodcut' +p185481 +sg25275 +S'c. 1503' +p185482 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad4a.jpg' +p185483 +sg25267 +g27 +sa(dp185484 +g25268 +S'Ainer frawen von Stainerkirchen ...' +p185485 +sg25270 +S'Master of the Miracles of Mariazell' +p185486 +sg25273 +S'woodcut' +p185487 +sg25275 +S'c. 1503' +p185488 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad4b.jpg' +p185489 +sg25267 +g27 +sa(dp185490 +g25268 +S'Ein Khindt was gestorben ...' +p185491 +sg25270 +S'Master of the Miracles of Mariazell' +p185492 +sg25273 +S'woodcut' +p185493 +sg25275 +S'c. 1503' +p185494 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad51.jpg' +p185495 +sg25267 +g27 +sa(dp185496 +g25268 +S'Ain Pehamss verheiss sich gen Zell ...' +p185497 +sg25270 +S'Master of the Miracles of Mariazell' +p185498 +sg25273 +S'woodcut' +p185499 +sg25275 +S'c. 1503' +p185500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad50.jpg' +p185501 +sg25267 +g27 +sa(dp185502 +g25273 +S'engraving on thick paper' +p185503 +sg25267 +g27 +sg25275 +S'1825' +p185504 +sg25268 +S'The Wrath of Elihu' +p185505 +sg25270 +S'William Blake' +p185506 +sa(dp185507 +g25268 +S'Ein fraw zu Peham Kirchen ...' +p185508 +sg25270 +S'Master of the Miracles of Mariazell' +p185509 +sg25273 +S'woodcut' +p185510 +sg25275 +S'c. 1503' +p185511 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad4e.jpg' +p185512 +sg25267 +g27 +sa(dp185513 +g25268 +S'Zwo ersam person auf dem Lannd ...' +p185514 +sg25270 +S'Master of the Miracles of Mariazell' +p185515 +sg25273 +S'woodcut' +p185516 +sg25275 +S'1503' +p185517 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad47.jpg' +p185518 +sg25267 +g27 +sa(dp185519 +g25268 +S'Ein Frau war lannge Zeit ...' +p185520 +sg25270 +S'Master of the Miracles of Mariazell' +p185521 +sg25273 +S'woodcut' +p185522 +sg25275 +S'c. 1503' +p185523 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad4d.jpg' +p185524 +sg25267 +g27 +sa(dp185525 +g25268 +S'Ein Jungling von Friderschpach ...' +p185526 +sg25270 +S'Master of the Miracles of Mariazell' +p185527 +sg25273 +S'woodcut' +p185528 +sg25275 +S'c. 1503' +p185529 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad4f.jpg' +p185530 +sg25267 +g27 +sa(dp185531 +g25268 +S'Ain Briester von Neunhe ...' +p185532 +sg25270 +S'Master of the Miracles of Mariazell' +p185533 +sg25273 +S'woodcut' +p185534 +sg25275 +S'c. 1503' +p185535 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad4c.jpg' +p185536 +sg25267 +g27 +sa(dp185537 +g25268 +S'Two Putti...Striking Another Who Is Squeezing a Child' +p185538 +sg25270 +S'Artist Information (' +p185539 +sg25273 +S'(artist after)' +p185540 +sg25275 +S'\n' +p185541 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c835.jpg' +p185542 +sg25267 +g27 +sa(dp185543 +g25268 +S'The Victory of Scipio over Syphax' +p185544 +sg25270 +S'Master of the Die' +p185545 +sg25273 +S'engraving' +p185546 +sg25275 +S'unknown date\n' +p185547 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c838.jpg' +p185548 +sg25267 +g27 +sa(dp185549 +g25273 +S'woodcut' +p185550 +sg25267 +g27 +sg25275 +S'1906' +p185551 +sg25268 +S'Seated Nude, Light Version (Petit Bois clair)' +p185552 +sg25270 +S'Henri Matisse' +p185553 +sa(dp185554 +g25273 +S'lithograph' +p185555 +sg25267 +g27 +sg25275 +S'1923' +p185556 +sg25268 +S"Young Girl in Flowered Dress with Organdy Collar (Jeune fille en robe fleurie au col d'organdi)" +p185557 +sg25270 +S'Henri Matisse' +p185558 +sa(dp185559 +g25273 +S'aquatint' +p185560 +sg25267 +g27 +sg25275 +S'1948' +p185561 +sg25268 +S'Nadia - Face with Slanted Eyes (Nadia - Visage aux yeux obliques)' +p185562 +sg25270 +S'Henri Matisse' +p185563 +sa(dp185564 +g25273 +S'engraving on thin paper' +p185565 +sg25267 +g27 +sg25275 +S'1825' +p185566 +sg25268 +S'The Wrath of Elihu' +p185567 +sg25270 +S'William Blake' +p185568 +sa(dp185569 +g25273 +S'color etching, soft-ground, and aquatint on Japan paper' +p185570 +sg25267 +g27 +sg25275 +S'1962' +p185571 +sg25268 +S'Compostion I' +p185572 +sg25270 +S'Matta' +p185573 +sa(dp185574 +g25273 +S'color etching, soft-ground, and aquatint' +p185575 +sg25267 +g27 +sg25275 +S'1962' +p185576 +sg25268 +S'Compostion II' +p185577 +sg25270 +S'Matta' +p185578 +sa(dp185579 +g25273 +S'color soft-ground etching and aquatint' +p185580 +sg25267 +g27 +sg25275 +S'1962' +p185581 +sg25268 +S'Compostion III' +p185582 +sg25270 +S'Matta' +p185583 +sa(dp185584 +g25273 +S'color etching, soft-ground, and aquatint' +p185585 +sg25267 +g27 +sg25275 +S'1962' +p185586 +sg25268 +S'Compostion IV' +p185587 +sg25270 +S'Matta' +p185588 +sa(dp185589 +g25273 +S'color etching, soft-ground, and aquatint' +p185590 +sg25267 +g27 +sg25275 +S'1962' +p185591 +sg25268 +S'Compostion V' +p185592 +sg25270 +S'Matta' +p185593 +sa(dp185594 +g25273 +S'color etching, soft-ground, and aquatint' +p185595 +sg25267 +g27 +sg25275 +S'1962' +p185596 +sg25268 +S'Compostion VI' +p185597 +sg25270 +S'Matta' +p185598 +sa(dp185599 +g25273 +S'color etching, soft-ground, and aquatint' +p185600 +sg25267 +g27 +sg25275 +S'1962' +p185601 +sg25268 +S'Compostion VII' +p185602 +sg25270 +S'Matta' +p185603 +sa(dp185604 +g25273 +S'color etching, soft-ground, and aquatint' +p185605 +sg25267 +g27 +sg25275 +S'1962' +p185606 +sg25268 +S'Compostion VIII' +p185607 +sg25270 +S'Matta' +p185608 +sa(dp185609 +g25273 +S'color soft-ground etching and aquatint' +p185610 +sg25267 +g27 +sg25275 +S'1962' +p185611 +sg25268 +S'Compostion IX' +p185612 +sg25270 +S'Matta' +p185613 +sa(dp185614 +g25273 +S'color etching, soft-ground, and aquatint' +p185615 +sg25267 +g27 +sg25275 +S'1962' +p185616 +sg25268 +S'Compostion X' +p185617 +sg25270 +S'Matta' +p185618 +sa(dp185619 +g25273 +S'engraving on thin paper' +p185620 +sg25267 +g27 +sg25275 +S'1825' +p185621 +sg25268 +S'The Lord Answering Job out of the Whirlwind' +p185622 +sg25270 +S'William Blake' +p185623 +sa(dp185624 +g25273 +S'color etching, soft-ground, and aquatint' +p185625 +sg25267 +g27 +sg25275 +S'1962' +p185626 +sg25268 +S'Compostion XI' +p185627 +sg25270 +S'Matta' +p185628 +sa(dp185629 +g25273 +S'color soft-ground etching and aquatint' +p185630 +sg25267 +g27 +sg25275 +S'1962' +p185631 +sg25268 +S'Compostion XII' +p185632 +sg25270 +S'Matta' +p185633 +sa(dp185634 +g25273 +S'color etching, soft-ground, and aquatint' +p185635 +sg25267 +g27 +sg25275 +S'1962' +p185636 +sg25268 +S'Compostion XIII' +p185637 +sg25270 +S'Matta' +p185638 +sa(dp185639 +g25273 +S'color soft-ground and aquatint' +p185640 +sg25267 +g27 +sg25275 +S'1962' +p185641 +sg25268 +S'Compostion XIV' +p185642 +sg25270 +S'Matta' +p185643 +sa(dp185644 +g25273 +S'color etching, soft-ground, and aquatint with embossing' +p185645 +sg25267 +g27 +sg25275 +S'1962' +p185646 +sg25268 +S'Compostion XV' +p185647 +sg25270 +S'Matta' +p185648 +sa(dp185649 +g25273 +S'color etching, soft-ground, and aquatint with embossing' +p185650 +sg25267 +g27 +sg25275 +S'1962' +p185651 +sg25268 +S'Compostion XVI' +p185652 +sg25270 +S'Matta' +p185653 +sa(dp185654 +g25268 +S'The Adoration of the Magi' +p185655 +sg25270 +S'Artist Information (' +p185656 +sg25273 +S'(artist after)' +p185657 +sg25275 +S'\n' +p185658 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a43a.jpg' +p185659 +sg25267 +g27 +sa(dp185660 +g25268 +S'The Coronation of the Virgin' +p185661 +sg25270 +S'Artist Information (' +p185662 +sg25273 +S'(artist after)' +p185663 +sg25275 +S'\n' +p185664 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a438.jpg' +p185665 +sg25267 +g27 +sa(dp185666 +g25268 +S"Joachim's Sacrifice" +p185667 +sg25270 +S'Artist Information (' +p185668 +sg25273 +S'(artist after)' +p185669 +sg25275 +S'\n' +p185670 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a440.jpg' +p185671 +sg25267 +g27 +sa(dp185672 +g25268 +S'The Presentation of the Virgin' +p185673 +sg25270 +S'Artist Information (' +p185674 +sg25273 +S'(artist after)' +p185675 +sg25275 +S'\n' +p185676 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a43e.jpg' +p185677 +sg25267 +g27 +sa(dp185678 +g25273 +S'engraving on thick paper' +p185679 +sg25267 +g27 +sg25275 +S'1825' +p185680 +sg25268 +S'The Lord Answering Job out of the Whirlwind' +p185681 +sg25270 +S'William Blake' +p185682 +sa(dp185683 +g25268 +S'Saint Catherine' +p185684 +sg25270 +S'Israhel van Meckenem' +p185685 +sg25273 +S'engraving' +p185686 +sg25275 +S'c. 1480/1490' +p185687 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a403.jpg' +p185688 +sg25267 +g27 +sa(dp185689 +g25273 +S'color aquatint?' +p185690 +sg25267 +g27 +sg25275 +S'1961' +p185691 +sg25268 +S'Cathedrale V (Cathedral V)' +p185692 +sg25270 +S'Lucjan Mianowski' +p185693 +sa(dp185694 +g25273 +S'relief etching' +p185695 +sg25267 +g27 +sg25275 +S'1963' +p185696 +sg25268 +S'Citta Laziale, Italia Centrale' +p185697 +sg25270 +S'Mario Micossi' +p185698 +sa(dp185699 +g25273 +S'4-color lithograph' +p185700 +sg25267 +g27 +sg25275 +S'unknown date\n' +p185701 +sg25268 +S'Stone Bird' +p185702 +sg25270 +S'Rokushu Mizufune' +p185703 +sa(dp185704 +g25273 +S'6-color lithograph' +p185705 +sg25267 +g27 +sg25275 +S'1963' +p185706 +sg25268 +S'Seventeen Reclining Figures with Architectural Background' +p185707 +sg25270 +S'Henry Moore' +p185708 +sa(dp185709 +g25273 +S'lithograph in yellow-gray, blue-gray, and black' +p185710 +sg25267 +g27 +sg25275 +S'1950' +p185711 +sg25268 +S'Trees' +p185712 +sg25270 +S'Henry Moore' +p185713 +sa(dp185714 +g25273 +S'4-color lithograph' +p185715 +sg25267 +g27 +sg25275 +S'1950' +p185716 +sg25268 +S'Book Jacket' +p185717 +sg25270 +S'Henry Moore' +p185718 +sa(dp185719 +g25273 +S'6-color lithograph [trial proof]' +p185720 +sg25267 +g27 +sg25275 +S'1950' +p185721 +sg25268 +S'Minerva, Prometheus, and Pandora' +p185722 +sg25270 +S'Henry Moore' +p185723 +sa(dp185724 +g25273 +S'6-color lithograph [trial proof]' +p185725 +sg25267 +g27 +sg25275 +S'1950' +p185726 +sg25268 +S'Twilight Landscape' +p185727 +sg25270 +S'Henry Moore' +p185728 +sa(dp185729 +g25273 +S'lithograph in black and buff' +p185730 +sg25267 +g27 +sg25275 +S'1963' +p185731 +sg25268 +S'Six Reclining Figures with Buff Background' +p185732 +sg25270 +S'Henry Moore' +p185733 +sa(dp185734 +g25273 +S'engraving on thick paper' +p185735 +sg25267 +g27 +sg25275 +S'1825' +p185736 +sg25268 +S"Job's Comforters" +p185737 +sg25270 +S'William Blake' +p185738 +sa(dp185739 +g25273 +S'etching' +p185740 +sg25267 +g27 +sg25275 +S'1951' +p185741 +sg25268 +S'Standing Leaf Figures' +p185742 +sg25270 +S'Henry Moore' +p185743 +sa(dp185744 +g25268 +S'The Baptism of Christ' +p185745 +sg25270 +S'Balthasar Moncornet' +p185746 +sg25273 +S'engraving' +p185747 +sg25275 +S'unknown date\n' +p185748 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a16.jpg' +p185749 +sg25267 +g27 +sa(dp185750 +g25268 +S'The Flight of Saint Elizabeth with the Infant Saint John' +p185751 +sg25270 +S'Balthasar Moncornet' +p185752 +sg25273 +S'engraving' +p185753 +sg25275 +S'unknown date\n' +p185754 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a1e.jpg' +p185755 +sg25267 +g27 +sa(dp185756 +g25268 +S'The Penitence of Mary Magdalen' +p185757 +sg25270 +S'Balthasar Moncornet' +p185758 +sg25273 +S'engraving' +p185759 +sg25275 +S'unknown date\n' +p185760 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a1d.jpg' +p185761 +sg25267 +g27 +sa(dp185762 +g25268 +S'Saint Anthony' +p185763 +sg25270 +S'Balthasar Moncornet' +p185764 +sg25273 +S'engraving' +p185765 +sg25275 +S'unknown date\n' +p185766 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a19.jpg' +p185767 +sg25267 +g27 +sa(dp185768 +g25268 +S'Saint Cecilia in a Landscape' +p185769 +sg25270 +S'Balthasar Moncornet' +p185770 +sg25273 +S'engraving' +p185771 +sg25275 +S'unknown date\n' +p185772 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a1c.jpg' +p185773 +sg25267 +g27 +sa(dp185774 +g25268 +S'Saint Egidius and a Doe' +p185775 +sg25270 +S'Balthasar Moncornet' +p185776 +sg25273 +S'engraving' +p185777 +sg25275 +S'unknown date\n' +p185778 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a13.jpg' +p185779 +sg25267 +g27 +sa(dp185780 +g25268 +S'Saint George and the Dragon' +p185781 +sg25270 +S'Balthasar Moncornet' +p185782 +sg25273 +S'engraving' +p185783 +sg25275 +S'unknown date\n' +p185784 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a15.jpg' +p185785 +sg25267 +g27 +sa(dp185786 +g25268 +S'Saint John the Baptist' +p185787 +sg25270 +S'Balthasar Moncornet' +p185788 +sg25273 +S'engraving' +p185789 +sg25275 +S'unknown date\n' +p185790 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a18.jpg' +p185791 +sg25267 +g27 +sa(dp185792 +g25268 +S'Saint Martin and the Beggar' +p185793 +sg25270 +S'Balthasar Moncornet' +p185794 +sg25273 +S'engraving' +p185795 +sg25275 +S'unknown date\n' +p185796 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a1a.jpg' +p185797 +sg25267 +g27 +sa(dp185798 +g25268 +S'Job Rebuked by His Friends' +p185799 +sg25270 +S'William Blake' +p185800 +sg25273 +S'engraving with border and lettering in graphite onthick paper' +p185801 +sg25275 +S'1825' +p185802 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007669.jpg' +p185803 +sg25267 +g27 +sa(dp185804 +g25268 +S'Saint William the Hermit' +p185805 +sg25270 +S'Balthasar Moncornet' +p185806 +sg25273 +S'engraving' +p185807 +sg25275 +S'unknown date\n' +p185808 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a17.jpg' +p185809 +sg25267 +g27 +sa(dp185810 +g25268 +S'The Vision of Saint Hubert' +p185811 +sg25270 +S'Balthasar Moncornet' +p185812 +sg25273 +S'engraving' +p185813 +sg25275 +S'unknown date\n' +p185814 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a1b.jpg' +p185815 +sg25267 +g27 +sa(dp185816 +g25268 +S'Ruined Buildings near a River Bank' +p185817 +sg25270 +S'Louis Gabriel Moreau the Elder' +p185818 +sg25273 +S', unknown date' +p185819 +sg25275 +S'\n' +p185820 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c62.jpg' +p185821 +sg25267 +g27 +sa(dp185822 +g25268 +S'Two Barns' +p185823 +sg25270 +S'Louis Gabriel Moreau the Elder' +p185824 +sg25273 +S', unknown date' +p185825 +sg25275 +S'\n' +p185826 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c65.jpg' +p185827 +sg25267 +g27 +sa(dp185828 +g25268 +S'Monumental Entry' +p185829 +sg25270 +S'Louis Gabriel Moreau the Elder' +p185830 +sg25273 +S', unknown date' +p185831 +sg25275 +S'\n' +p185832 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c63.jpg' +p185833 +sg25267 +g27 +sa(dp185834 +g25268 +S'Hovel at the Bridge' +p185835 +sg25270 +S'Louis Gabriel Moreau the Elder' +p185836 +sg25273 +S', unknown date' +p185837 +sg25275 +S'\n' +p185838 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c64.jpg' +p185839 +sg25267 +g27 +sa(dp185840 +g25268 +S'Park with Terrace and a Balustrade with Statues' +p185841 +sg25270 +S'Louis Gabriel Moreau the Elder' +p185842 +sg25273 +S', unknown date' +p185843 +sg25275 +S'\n' +p185844 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c67.jpg' +p185845 +sg25267 +g27 +sa(dp185846 +g25273 +S'hand-printed wood engraving' +p185847 +sg25267 +g27 +sg25275 +S'1959' +p185848 +sg25268 +S'La Grande Ruotta (The Ferris Wheel)' +p185849 +sg25270 +S'Alberico Morena' +p185850 +sa(dp185851 +g25273 +S'hand-printed wood engraving' +p185852 +sg25267 +g27 +sg25275 +S'1963' +p185853 +sg25268 +S'Sunflowers' +p185854 +sg25270 +S'Alberico Morena' +p185855 +sa(dp185856 +g25273 +S'engraving in black on wove paper' +p185857 +sg25267 +g27 +sg25275 +S'1962' +p185858 +sg25268 +S'A Glen in Badenoch, Scotland' +p185859 +sg25270 +S'Norma Gloria Morgan' +p185860 +sa(dp185861 +g25273 +S'engraving on thick paper' +p185862 +sg25267 +g27 +sg25275 +S'1825' +p185863 +sg25268 +S'The Lord Answering Job out of the Whirlwind' +p185864 +sg25270 +S'William Blake' +p185865 +sa(dp185866 +g25273 +S'gouache' +p185867 +sg25267 +g27 +sg25275 +S'1956' +p185868 +sg25268 +S'Umbrian Town' +p185869 +sg25270 +S'Angelo Moriconi' +p185870 +sa(dp185871 +g25273 +S'color aquatint' +p185872 +sg25267 +g27 +sg25275 +S'unknown date\n' +p185873 +sg25268 +S'Mosquito' +p185874 +sg25270 +S'Ivan Mosca' +p185875 +sa(dp185876 +g25273 +S'1920 - 2003' +p185877 +sg25267 +g27 +sg25275 +S'(printer)' +p185878 +sg25268 +S'Poet II' +p185879 +sg25270 +S'Artist Information (' +p185880 +sa(dp185881 +g25273 +S'1920 - 2003' +p185882 +sg25267 +g27 +sg25275 +S'(printer)' +p185883 +sg25268 +S'Poet I' +p185884 +sg25270 +S'Artist Information (' +p185885 +sa(dp185886 +g25273 +S'mixed intaglio' +p185887 +sg25267 +g27 +sg25275 +S'1962' +p185888 +sg25268 +S'Antelopes' +p185889 +sg25270 +S'Kaikobad Motiwalla' +p185890 +sa(dp185891 +g25268 +S'New York et Brooklyn - Vue prise au dessus dela batterie' +p185892 +sg25270 +S'Artist Information (' +p185893 +sg25273 +S'(artist after)' +p185894 +sg25275 +S'\n' +p185895 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fea.jpg' +p185896 +sg25267 +g27 +sa(dp185897 +g25273 +S'monotype' +p185898 +sg25267 +g27 +sg25275 +S'unknown date\n' +p185899 +sg25268 +S'Composition I' +p185900 +sg25270 +S'Walter Rudolf Mumprecht' +p185901 +sa(dp185902 +g25273 +S'woodcut' +p185903 +sg25267 +g27 +sg25275 +S'1939' +p185904 +sg25268 +S'Anaritsu' +p185905 +sg25270 +S'Shiko Munakata' +p185906 +sa(dp185907 +g25273 +S'woodcut' +p185908 +sg25267 +g27 +sg25275 +S'unknown date\n' +p185909 +sg25268 +S'Boddhisattva Trinity' +p185910 +sg25270 +S'Shiko Munakata' +p185911 +sa(dp185912 +g25273 +S'woodcut' +p185913 +sg25267 +g27 +sg25275 +S'unknown date\n' +p185914 +sg25268 +S'Buddhist Quotation' +p185915 +sg25270 +S'Shiko Munakata' +p185916 +sa(dp185917 +g25273 +S'engraving on thick paper' +p185918 +sg25267 +g27 +sg25275 +S'1825' +p185919 +sg25268 +S'When the Morning Stars Sang Together' +p185920 +sg25270 +S'William Blake' +p185921 +sa(dp185922 +g25273 +S'color woodcut' +p185923 +sg25267 +g27 +sg25275 +S'unknown date\n' +p185924 +sg25268 +S'The Caged Bird' +p185925 +sg25270 +S'Shiko Munakata' +p185926 +sa(dp185927 +g25273 +S'woodcut' +p185928 +sg25267 +g27 +sg25275 +S'1958' +p185929 +sg25268 +S'Fudo Myoo' +p185930 +sg25270 +S'Shiko Munakata' +p185931 +sa(dp185932 +g25273 +S'color woodcut' +p185933 +sg25267 +g27 +sg25275 +S'1957' +p185934 +sg25268 +S'Girl and Fireflies' +p185935 +sg25270 +S'Shiko Munakata' +p185936 +sa(dp185937 +g25273 +S'woodcut' +p185938 +sg25267 +g27 +sg25275 +S'1958' +p185939 +sg25268 +S'The Hawk Woman' +p185940 +sg25270 +S'Shiko Munakata' +p185941 +sa(dp185942 +g25273 +S'color woodcut' +p185943 +sg25267 +g27 +sg25275 +S'1953' +p185944 +sg25268 +S'Hiroshige' +p185945 +sg25270 +S'Shiko Munakata' +p185946 +sa(dp185947 +g25273 +S'woodcut' +p185948 +sg25267 +g27 +sg25275 +S'unknown date\n' +p185949 +sg25268 +S'Mountain Scene' +p185950 +sg25270 +S'Shiko Munakata' +p185951 +sa(dp185952 +g25273 +S'lithograph' +p185953 +sg25267 +g27 +sg25275 +S'unknown date\n' +p185954 +sg25268 +S'Nude Praying' +p185955 +sg25270 +S'Shiko Munakata' +p185956 +sa(dp185957 +g25273 +S'woodcut' +p185958 +sg25267 +g27 +sg25275 +S'1959' +p185959 +sg25268 +S'Poem to Her Dead Mother' +p185960 +sg25270 +S'Shiko Munakata' +p185961 +sa(dp185962 +g25273 +S'lithograph' +p185963 +sg25267 +g27 +sg25275 +S'unknown date\n' +p185964 +sg25268 +S'Self-Portrait' +p185965 +sg25270 +S'Shiko Munakata' +p185966 +sa(dp185967 +g25273 +S'woodcut' +p185968 +sg25267 +g27 +sg25275 +S'unknown date\n' +p185969 +sg25268 +S'Spring in Full Bloom' +p185970 +sg25270 +S'Shiko Munakata' +p185971 +sa(dp185972 +g25273 +S'engraving on thick paper' +p185973 +sg25267 +g27 +sg25275 +S'1825' +p185974 +sg25268 +S'When the Morning Stars Sang Together' +p185975 +sg25270 +S'William Blake' +p185976 +sa(dp185977 +g25273 +S'lithograph' +p185978 +sg25267 +g27 +sg25275 +S'unknown date\n' +p185979 +sg25268 +S'Two Nudes' +p185980 +sg25270 +S'Shiko Munakata' +p185981 +sa(dp185982 +g25273 +S'woodcut' +p185983 +sg25267 +g27 +sg25275 +S'1938' +p185984 +sg25268 +S'The Visit' +p185985 +sg25270 +S'Shiko Munakata' +p185986 +sa(dp185987 +g25268 +S"Cosimo II de' Medici" +p185988 +sg25270 +S'Albert Muret' +p185989 +sg25273 +S'engraving' +p185990 +sg25275 +S'probably 1609/1621' +p185991 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b523.jpg' +p185992 +sg25267 +g27 +sa(dp185993 +g25273 +S'color lithograph' +p185994 +sg25267 +g27 +sg25275 +S'unknown date\n' +p185995 +sg25268 +S'Ethereal Flowers' +p185996 +sg25270 +S'Yoshiro Nagase' +p185997 +sa(dp185998 +g25273 +S'color lithograph' +p185999 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186000 +sg25268 +S'Sisters' +p186001 +sg25270 +S'Yoshitaka Nakao' +p186002 +sa(dp186003 +g25273 +S'color woodcut' +p186004 +sg25267 +g27 +sg25275 +S'1957' +p186005 +sg25268 +S'Butterfly' +p186006 +sg25270 +S'Tadashi Nakayama' +p186007 +sa(dp186008 +g25273 +S'color woodcut' +p186009 +sg25267 +g27 +sg25275 +S'1954' +p186010 +sg25268 +S'Crane in Agony' +p186011 +sg25270 +S'Tadashi Nakayama' +p186012 +sa(dp186013 +g25273 +S'color woodcut' +p186014 +sg25267 +g27 +sg25275 +S'1957' +p186015 +sg25268 +S'Crane in Flight' +p186016 +sg25270 +S'Tadashi Nakayama' +p186017 +sa(dp186018 +g25273 +S'color woodcut with metal-leaf' +p186019 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186020 +sg25268 +S'East' +p186021 +sg25270 +S'Tadashi Nakayama' +p186022 +sa(dp186023 +g25273 +S'color woodcut' +p186024 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186025 +sg25268 +S'Eastern Wind (Moon Wind)' +p186026 +sg25270 +S'Tadashi Nakayama' +p186027 +sa(dp186028 +g25273 +S'engraving with border in graphite on thick paper' +p186029 +sg25267 +g27 +sg25275 +S'1825' +p186030 +sg25268 +S'When the Morning Stars Sang Together' +p186031 +sg25270 +S'William Blake' +p186032 +sa(dp186033 +g25273 +S'color woodcut' +p186034 +sg25267 +g27 +sg25275 +S'1957' +p186035 +sg25268 +S'Flying Crane' +p186036 +sg25270 +S'Tadashi Nakayama' +p186037 +sa(dp186038 +g25273 +S'color woodcut with metal-leaf' +p186039 +sg25267 +g27 +sg25275 +S'1959' +p186040 +sg25268 +S'Guidepost to the East' +p186041 +sg25270 +S'Tadashi Nakayama' +p186042 +sa(dp186043 +g25273 +S'color woodcut with metal-leaf' +p186044 +sg25267 +g27 +sg25275 +S'1958' +p186045 +sg25268 +S'Horses' +p186046 +sg25270 +S'Tadashi Nakayama' +p186047 +sa(dp186048 +g25273 +S'lithograph on Arches paper' +p186049 +sg25267 +g27 +sg25275 +S'1962' +p186050 +sg25268 +S'Untitled' +p186051 +sg25270 +S'John Paul Jones' +p186052 +sa(dp186053 +g25273 +S'color woodcut' +p186054 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186055 +sg25268 +S'Relics - Shadow' +p186056 +sg25270 +S'Tadashi Nakayama' +p186057 +sa(dp186058 +g25273 +S'color woodcut' +p186059 +sg25267 +g27 +sg25275 +S'1962' +p186060 +sg25268 +S'Running Horses' +p186061 +sg25270 +S'Tadashi Nakayama' +p186062 +sa(dp186063 +g25273 +S'color woodcut' +p186064 +sg25267 +g27 +sg25275 +S'1958' +p186065 +sg25268 +S'Western Wind' +p186066 +sg25270 +S'Tadashi Nakayama' +p186067 +sa(dp186068 +g25273 +S'color woodcut with metallic bits added' +p186069 +sg25267 +g27 +sg25275 +S'1959' +p186070 +sg25268 +S'Wind of Hoof' +p186071 +sg25270 +S'Tadashi Nakayama' +p186072 +sa(dp186073 +g25273 +S'color lithograph' +p186074 +sg25267 +g27 +sg25275 +S'1957' +p186075 +sg25268 +S'Windy' +p186076 +sg25270 +S'Tadashi Nakayama' +p186077 +sa(dp186078 +g25273 +S'color woodcut' +p186079 +sg25267 +g27 +sg25275 +S'1957' +p186080 +sg25268 +S'Windy' +p186081 +sg25270 +S'Tadashi Nakayama' +p186082 +sa(dp186083 +g25273 +S'engraving on thick paper' +p186084 +sg25267 +g27 +sg25275 +S'1825' +p186085 +sg25268 +S'The Fall of Satan' +p186086 +sg25270 +S'William Blake' +p186087 +sa(dp186088 +g25273 +S'color lithograph' +p186089 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186090 +sg25268 +S'Poem of Nippon' +p186091 +sg25270 +S'Tatsuoki Nambata' +p186092 +sa(dp186093 +g25268 +S'The Land of Cockaigne' +p186094 +sg25270 +S'Niccol\xc3\xb2 Nelli' +p186095 +sg25273 +S'etching' +p186096 +sg25275 +S'1564' +p186097 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8bb.jpg' +p186098 +sg25267 +g27 +sa(dp186099 +g25273 +S'lithograph' +p186100 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186101 +sg25268 +S'Korean Dancer' +p186102 +sg25270 +S'Gerda Mikhailova Nemenova' +p186103 +sa(dp186104 +g25273 +S'color lithograph' +p186105 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186106 +sg25268 +S'Korean Dancer' +p186107 +sg25270 +S'Gerda Mikhailova Nemenova' +p186108 +sa(dp186109 +g25273 +S'color woodcut' +p186110 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186111 +sg25268 +S'Butterfly' +p186112 +sg25270 +S'Koshiro Onchi' +p186113 +sa(dp186114 +g25273 +S'color woodcut' +p186115 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186116 +sg25268 +S'Violinist' +p186117 +sg25270 +S'Koshiro Onchi' +p186118 +sa(dp186119 +g25268 +S"Self-Portrait and the Artist's Brother" +p186120 +sg25270 +S"Antoine Marie Philippe Louis d' Orl\xc3\xa9ans, duc de Montpensier" +p186121 +sg25273 +S'lithograph' +p186122 +sg25275 +S'1805' +p186123 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d9c.jpg' +p186124 +sg25267 +g27 +sa(dp186125 +g25273 +S'color lithograph' +p186126 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186127 +sg25268 +S'Journals' +p186128 +sg25270 +S'George Earl Ortman' +p186129 +sa(dp186130 +g25273 +S'etching and aquatint in brown' +p186131 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186132 +sg25268 +S'Wasteland' +p186133 +sg25270 +S'Peter Paone' +p186134 +sa(dp186135 +g25273 +S'color lithograph' +p186136 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186137 +sg25268 +S'Woodcock' +p186138 +sg25270 +S'Robert Andrew Parker' +p186139 +sa(dp186140 +g25273 +S'engraving on thick paper' +p186141 +sg25267 +g27 +sg25275 +S'1825' +p186142 +sg25268 +S'The Fall of Satan' +p186143 +sg25270 +S'William Blake' +p186144 +sa(dp186145 +g25268 +S'Hudson River Portfolio: Looking South from Battery Knox, West Point' +p186146 +sg25270 +S'Artist Information (' +p186147 +sg25273 +S'(artist after)' +p186148 +sg25275 +S'\n' +p186149 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00111/a0011185.jpg' +p186150 +sg25267 +g27 +sa(dp186151 +g25268 +S'Voltaire' +p186152 +sg25270 +S'P. Periaux' +p186153 +sg25273 +S'hand-colored lithograph' +p186154 +sg25275 +S'1821' +p186155 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009993.jpg' +p186156 +sg25267 +g27 +sa(dp186157 +g25268 +S'Angry Sky' +p186158 +sg25270 +S'Gabor Peterdi' +p186159 +sg25273 +S'etching' +p186160 +sg25275 +S'1959' +p186161 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b60.jpg' +p186162 +sg25267 +g27 +sa(dp186163 +g25273 +S'color etching' +p186164 +sg25267 +g27 +sg25275 +S'1959' +p186165 +sg25268 +S'Angry Wave' +p186166 +sg25270 +S'Gabor Peterdi' +p186167 +sa(dp186168 +g25273 +S'mixed intaglio' +p186169 +sg25267 +g27 +sg25275 +S'1961' +p186170 +sg25268 +S'Cliffs' +p186171 +sg25270 +S'Gabor Peterdi' +p186172 +sa(dp186173 +g25273 +S'etching' +p186174 +sg25267 +g27 +sg25275 +S'1959' +p186175 +sg25268 +S'Self-Portrait' +p186176 +sg25270 +S'Gabor Peterdi' +p186177 +sa(dp186178 +g25273 +S'color etching' +p186179 +sg25267 +g27 +sg25275 +S'1958' +p186180 +sg25268 +S'Studio' +p186181 +sg25270 +S'Gabor Peterdi' +p186182 +sa(dp186183 +g25268 +S'The Farmyard' +p186184 +sg25270 +S'Emmanuel Ph\xc3\xa9lippes-Beaulieu' +p186185 +sg25273 +S'etching and roulette on Chine applique paper' +p186186 +sg25275 +S'1859' +p186187 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099a0.jpg' +p186188 +sg25267 +g27 +sa(dp186189 +g25268 +S'The Big Shower' +p186190 +sg25270 +S'Emmanuel Ph\xc3\xa9lippes-Beaulieu' +p186191 +sg25273 +S'etching, roulette, and (drypoint?) on Chine applique paper' +p186192 +sg25275 +S'1859' +p186193 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000999d.jpg' +p186194 +sg25267 +g27 +sa(dp186195 +g25268 +S'The Shed with Children Fighting' +p186196 +sg25270 +S'Emmanuel Ph\xc3\xa9lippes-Beaulieu' +p186197 +sg25273 +S'etching and roulette on Chine applique paper' +p186198 +sg25275 +S'1862' +p186199 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000999e.jpg' +p186200 +sg25267 +g27 +sa(dp186201 +g25273 +S'engraving on thin paper' +p186202 +sg25267 +g27 +sg25275 +S'1825' +p186203 +sg25268 +S'The Fall of Satan' +p186204 +sg25270 +S'William Blake' +p186205 +sa(dp186206 +g25268 +S'The Young Peasant Woman' +p186207 +sg25270 +S'Emmanuel Ph\xc3\xa9lippes-Beaulieu' +p186208 +sg25273 +S'etching' +p186209 +sg25275 +S'1863' +p186210 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099a1.jpg' +p186211 +sg25267 +g27 +sa(dp186212 +g25268 +S'A Heath' +p186213 +sg25270 +S'Emmanuel Ph\xc3\xa9lippes-Beaulieu' +p186214 +sg25273 +S'etching' +p186215 +sg25275 +S'1860' +p186216 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a0006019.jpg' +p186217 +sg25267 +g27 +sa(dp186218 +g25268 +S'The Small Shepherd Seated' +p186219 +sg25270 +S'Emmanuel Ph\xc3\xa9lippes-Beaulieu' +p186220 +sg25273 +S'etching on Chine applique paper' +p186221 +sg25275 +S'1856' +p186222 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000999f.jpg' +p186223 +sg25267 +g27 +sa(dp186224 +g25268 +S'The Tourist' +p186225 +sg25270 +S'Emmanuel Ph\xc3\xa9lippes-Beaulieu' +p186226 +sg25273 +S'etching and roulette' +p186227 +sg25275 +S'1858' +p186228 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f091.jpg' +p186229 +sg25267 +g27 +sa(dp186230 +g25268 +S'View of Santron' +p186231 +sg25270 +S'Emmanuel Ph\xc3\xa9lippes-Beaulieu' +p186232 +sg25273 +S'etching' +p186233 +sg25275 +S'1854' +p186234 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dd6.jpg' +p186235 +sg25267 +g27 +sa(dp186236 +g25273 +S'monotype' +p186237 +sg25267 +g27 +sg25275 +S'1961' +p186238 +sg25268 +S'His Daughter' +p186239 +sg25270 +S'Matt Phillips' +p186240 +sa(dp186241 +g25273 +S'monotype' +p186242 +sg25267 +g27 +sg25275 +S'1961' +p186243 +sg25268 +S'The Orchard: Apple Tree' +p186244 +sg25270 +S'Matt Phillips' +p186245 +sa(dp186246 +g25268 +S'Woman on Balcony (Femme au balcon)' +p186247 +sg25270 +S'Pablo Picasso' +p186248 +sg25273 +S'lithograph [poster]' +p186249 +sg25275 +S'1960' +p186250 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eed0.jpg' +p186251 +sg25267 +g27 +sa(dp186252 +g25268 +S'Mademoiselle Leonie, First Plate' +p186253 +sg25270 +S'Pablo Picasso' +p186254 +sg25273 +S'etching' +p186255 +sg25275 +S'1910' +p186256 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005781.jpg' +p186257 +sg25267 +g27 +sa(dp186258 +g25268 +S'Pike (Pique)' +p186259 +sg25270 +S'Pablo Picasso' +p186260 +sg25273 +S'linocut in gray and black on Arches wove paper' +p186261 +sg25275 +S'1959' +p186262 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057fb.jpg' +p186263 +sg25267 +g27 +sa(dp186264 +g25273 +S'engraving on thick paper' +p186265 +sg25267 +g27 +sg25275 +S'1825' +p186266 +sg25268 +S'The Fall of Satan' +p186267 +sg25270 +S'William Blake' +p186268 +sa(dp186269 +g25268 +S'Composition' +p186270 +sg25270 +S'Pablo Picasso' +p186271 +sg25273 +S'color lithograph' +p186272 +sg25275 +S'1946' +p186273 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eeab.jpg' +p186274 +sg25267 +g27 +sa(dp186275 +g25268 +S'Jaime Sabartes\' "Dans l\'Atelier de Picasso"' +p186276 +sg25270 +S'Pablo Picasso' +p186277 +sg25273 +S'portfolio with thirteen black and white and color lithographs, plus table of contents' +p186278 +sg25275 +S'published 1957' +p186279 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eeaa.jpg' +p186280 +sg25267 +g27 +sa(dp186281 +g25268 +S'Compostion au verre et a la pomme (Composition with Glass and Apple)' +p186282 +sg25270 +S'Pablo Picasso' +p186283 +sg25273 +S'color lithograph' +p186284 +sg25275 +S'1946' +p186285 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eeac.jpg' +p186286 +sg25267 +g27 +sa(dp186287 +g25268 +S'Composition en trois couleurs (Composition in Three Colors)' +p186288 +sg25270 +S'Pablo Picasso' +p186289 +sg25273 +S'color lithograph' +p186290 +sg25275 +S'1947' +p186291 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eead.jpg' +p186292 +sg25267 +g27 +sa(dp186293 +g25268 +S'Pommes, verre et couteau (Apples, Glass, and Knife)' +p186294 +sg25270 +S'Pablo Picasso' +p186295 +sg25273 +S'lithograph' +p186296 +sg25275 +S'1947' +p186297 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eeae.jpg' +p186298 +sg25267 +g27 +sa(dp186299 +g25268 +S'Composition au verre a pied (Composition with Footed Glass)' +p186300 +sg25270 +S'Pablo Picasso' +p186301 +sg25273 +S'lithograph' +p186302 +sg25275 +S'1947' +p186303 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eeaf.jpg' +p186304 +sg25267 +g27 +sa(dp186305 +g25268 +S'Le couteau et la pomme (Knife and Apple)' +p186306 +sg25270 +S'Pablo Picasso' +p186307 +sg25273 +S'lithograph' +p186308 +sg25275 +S'1947' +p186309 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eeb0.jpg' +p186310 +sg25267 +g27 +sa(dp186311 +g25268 +S'La grappe de raisin (Bunch of Grapes)' +p186312 +sg25270 +S'Pablo Picasso' +p186313 +sg25273 +S'lithograph' +p186314 +sg25275 +S'1947' +p186315 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eeb1.jpg' +p186316 +sg25267 +g27 +sa(dp186317 +g25268 +S'La Tasse et la pomme (Cup and Apple)' +p186318 +sg25270 +S'Pablo Picasso' +p186319 +sg25273 +S'lithograph' +p186320 +sg25275 +S'1947' +p186321 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eeb2.jpg' +p186322 +sg25267 +g27 +sa(dp186323 +g25268 +S'Le petit pot de fleurs (Small Pot of Flowers)' +p186324 +sg25270 +S'Pablo Picasso' +p186325 +sg25273 +S'lithograph' +p186326 +sg25275 +S'1947' +p186327 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eeb3.jpg' +p186328 +sg25267 +g27 +sa(dp186329 +g25273 +S'engraving on thick paper' +p186330 +sg25267 +g27 +sg25275 +S'1825' +p186331 +sg25268 +S'The Fall of Satan' +p186332 +sg25270 +S'William Blake' +p186333 +sa(dp186334 +g25268 +S'Fleurs dans un verre (Flowers in a Glass)' +p186335 +sg25270 +S'Pablo Picasso' +p186336 +sg25273 +S'lithograph' +p186337 +sg25275 +S'1947' +p186338 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eeb4.jpg' +p186339 +sg25267 +g27 +sa(dp186340 +g25268 +S"L'atelier de Cannes (The Studio in Cannes)" +p186341 +sg25270 +S'Pablo Picasso' +p186342 +sg25273 +S'color lithograph' +p186343 +sg25275 +S'1955' +p186344 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eeb5.jpg' +p186345 +sg25267 +g27 +sa(dp186346 +g25268 +S'Tete de faune (Head of a Faun)' +p186347 +sg25270 +S'Pablo Picasso' +p186348 +sg25273 +S'color lithograph' +p186349 +sg25275 +S'1956' +p186350 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eeb6.jpg' +p186351 +sg25267 +g27 +sa(dp186352 +g25268 +S"L'atelier de Cannes (The Studio in Cannes)" +p186353 +sg25270 +S'Pablo Picasso' +p186354 +sg25273 +S'color lithograph' +p186355 +sg25275 +S'1956' +p186356 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eeb7.jpg' +p186357 +sg25267 +g27 +sa(dp186358 +g25268 +S'Three Bathers I (Les trois baigneuses I)' +p186359 +sg25270 +S'Pablo Picasso' +p186360 +sg25273 +S'drypoint (zinc)' +p186361 +sg25275 +S'1922/1923' +p186362 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eec5.jpg' +p186363 +sg25267 +g27 +sa(dp186364 +g25268 +S'Three Women (Les trois femmes)' +p186365 +sg25270 +S'Pablo Picasso' +p186366 +sg25273 +S'etching (zinc)' +p186367 +sg25275 +S'1922' +p186368 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eec1.jpg' +p186369 +sg25267 +g27 +sa(dp186370 +g25273 +S'drypoint' +p186371 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186372 +sg25268 +S'Judge M.C. Sloss' +p186373 +sg25270 +S'Max Pollak' +p186374 +sa(dp186375 +g25273 +S'drypoint' +p186376 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186377 +sg25268 +S'Mrs. M.C. Sloss' +p186378 +sg25270 +S'Max Pollak' +p186379 +sa(dp186380 +g25273 +S'soft-ground etching and aquatint' +p186381 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186382 +sg25268 +S'New York: Allen Street' +p186383 +sg25270 +S'Max Pollak' +p186384 +sa(dp186385 +g25273 +S'pen and black ink with gray wash and white gouache?' +p186386 +sg25267 +g27 +sg25275 +S'1957' +p186387 +sg25268 +S'The Cigarette' +p186388 +sg25270 +S'Giacomo Porzano' +p186389 +sa(dp186390 +g25273 +S'engraving on thick paper' +p186391 +sg25267 +g27 +sg25275 +S'1825' +p186392 +sg25268 +S'Job Rebuked by His Friends' +p186393 +sg25270 +S'William Blake' +p186394 +sa(dp186395 +g25273 +S'pen and black ink with gray and black wash' +p186396 +sg25267 +g27 +sg25275 +S'1958' +p186397 +sg25268 +S'Man with a Cane' +p186398 +sg25270 +S'Giacomo Porzano' +p186399 +sa(dp186400 +g25273 +S'pen and black ink' +p186401 +sg25267 +g27 +sg25275 +S'1956' +p186402 +sg25268 +S'Portrait of a Man' +p186403 +sg25270 +S'Giacomo Porzano' +p186404 +sa(dp186405 +g25273 +S'pen and black ink with black and gray wash' +p186406 +sg25267 +g27 +sg25275 +S'1955' +p186407 +sg25268 +S'Prelate' +p186408 +sg25270 +S'Giacomo Porzano' +p186409 +sa(dp186410 +g25273 +S'pen and black ink with brown-gray wash' +p186411 +sg25267 +g27 +sg25275 +S'1957' +p186412 +sg25268 +S'Riot' +p186413 +sg25270 +S'Giacomo Porzano' +p186414 +sa(dp186415 +g25273 +S'color etching-soft ground, aquatint, and engraving(copper) in dark umber and Prussian blue' +p186416 +sg25267 +g27 +sg25275 +S'1959' +p186417 +sg25268 +S'Trees in Autumn Light' +p186418 +sg25270 +S'Rudy Pozzatti' +p186419 +sa(dp186420 +g25273 +S'color etching and aquatint' +p186421 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186422 +sg25268 +S'Landscape against the Light' +p186423 +sg25270 +S'Mario Prassinos' +p186424 +sa(dp186425 +g25268 +S'Outdoor Cafe Scene' +p186426 +sg25270 +S'Maurice Brazil Prendergast' +p186427 +sg25273 +S'monotype' +p186428 +sg25275 +S'1900/1905' +p186429 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b61.jpg' +p186430 +sg25267 +g27 +sa(dp186431 +g25273 +S'mixed technique' +p186432 +sg25267 +g27 +sg25275 +S'mid-20th century' +p186433 +sg25268 +S'Stone - Homage to Monte Alban' +p186434 +sg25270 +S'Omar Rayo' +p186435 +sa(dp186436 +g25273 +S'color viscosity intaglio on wove paper' +p186437 +sg25267 +g27 +sg25275 +S'1955' +p186438 +sg25268 +S'Insect' +p186439 +sg25270 +S'Krishna N. Reddy' +p186440 +sa(dp186441 +g25273 +S'color etching' +p186442 +sg25267 +g27 +sg25275 +S'1957' +p186443 +sg25268 +S'Musician' +p186444 +sg25270 +S'Krishna N. Reddy' +p186445 +sa(dp186446 +g25273 +S'engraving on thick paper' +p186447 +sg25267 +g27 +sg25275 +S'1825' +p186448 +sg25268 +S'The Lord Answering Job out of the Whirlwind' +p186449 +sg25270 +S'William Blake' +p186450 +sa(dp186451 +g25273 +S'color etching' +p186452 +sg25267 +g27 +sg25275 +S'1957' +p186453 +sg25268 +S'Opaque Space' +p186454 +sg25270 +S'Krishna N. Reddy' +p186455 +sa(dp186456 +g25273 +S'color intaglio' +p186457 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186458 +sg25268 +S'Spider Web' +p186459 +sg25270 +S'Krishna N. Reddy' +p186460 +sa(dp186461 +g25268 +S'Femme a la torque ornee (Woman with a plumed hat)' +p186462 +sg25270 +S'Odilon Redon' +p186463 +sg25273 +S'lithograph' +p186464 +sg25275 +S'c. 1900' +p186465 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c97.jpg' +p186466 +sg25267 +g27 +sa(dp186467 +g25273 +S'etching and aquatint on wove paper' +p186468 +sg25267 +g27 +sg25275 +S'1955' +p186469 +sg25268 +S'Pastorale' +p186470 +sg25270 +S'Doel Reed' +p186471 +sa(dp186472 +g25273 +S'gouache' +p186473 +sg25267 +g27 +sg25275 +S'1962' +p186474 +sg25268 +S'Der Flugel des Seltenen Erdbraun-Falters' +p186475 +sg25270 +S'Imre Reiner' +p186476 +sa(dp186477 +g25273 +S'gouache on laid paper' +p186478 +sg25267 +g27 +sg25275 +S'1962' +p186479 +sg25268 +S'Die Schminkstuber der Falter' +p186480 +sg25270 +S'Imre Reiner' +p186481 +sa(dp186482 +g25273 +S'etching' +p186483 +sg25267 +g27 +sg25275 +S'1958' +p186484 +sg25268 +S'Die reife Frucht' +p186485 +sg25270 +S'Imre Reiner' +p186486 +sa(dp186487 +g25273 +S'portfolio with 10 etchings' +p186488 +sg25267 +g27 +sg25275 +S'published 1964' +p186489 +sg25268 +S'Imre Reiner Zehn Stilleben: Radierungen aus den Jahren 1950-1958' +p186490 +sg25270 +S'Imre Reiner' +p186491 +sa(dp186492 +g25273 +S'etching' +p186493 +sg25267 +g27 +sg25275 +S'1958' +p186494 +sg25268 +S'Kuchenstilleben' +p186495 +sg25270 +S'Imre Reiner' +p186496 +sa(dp186497 +g25273 +S'etching' +p186498 +sg25267 +g27 +sg25275 +S'1958' +p186499 +sg25268 +S'Bluten und Fruchte' +p186500 +sg25270 +S'Imre Reiner' +p186501 +sa(dp186502 +g25273 +S'engraving on thin paper' +p186503 +sg25267 +g27 +sg25275 +S'1825' +p186504 +sg25268 +S'The Vision of Christ' +p186505 +sg25270 +S'William Blake' +p186506 +sa(dp186507 +g25273 +S'etching' +p186508 +sg25267 +g27 +sg25275 +S'1958' +p186509 +sg25268 +S'Dreigeteilig Stilleben' +p186510 +sg25270 +S'Imre Reiner' +p186511 +sa(dp186512 +g25273 +S'etching' +p186513 +sg25267 +g27 +sg25275 +S'1958' +p186514 +sg25268 +S'Treibpflanzen' +p186515 +sg25270 +S'Imre Reiner' +p186516 +sa(dp186517 +g25273 +S'etching' +p186518 +sg25267 +g27 +sg25275 +S'1958' +p186519 +sg25268 +S'Die drei Vasen' +p186520 +sg25270 +S'Imre Reiner' +p186521 +sa(dp186522 +g25273 +S'etching' +p186523 +sg25267 +g27 +sg25275 +S'1958' +p186524 +sg25268 +S'Das Empire-Blatt' +p186525 +sg25270 +S'Imre Reiner' +p186526 +sa(dp186527 +g25273 +S'etching' +p186528 +sg25267 +g27 +sg25275 +S'1958' +p186529 +sg25268 +S'Fur Chopin' +p186530 +sg25270 +S'Imre Reiner' +p186531 +sa(dp186532 +g25273 +S'etching' +p186533 +sg25267 +g27 +sg25275 +S'1958' +p186534 +sg25268 +S'Fur die Liebe Schwester' +p186535 +sg25270 +S'Imre Reiner' +p186536 +sa(dp186537 +g25273 +S'etching' +p186538 +sg25267 +g27 +sg25275 +S'1958' +p186539 +sg25268 +S'Windbluten' +p186540 +sg25270 +S'Imre Reiner' +p186541 +sa(dp186542 +g25273 +S'gouache' +p186543 +sg25267 +g27 +sg25275 +S'1963' +p186544 +sg25268 +S'Zwischen den Klippen' +p186545 +sg25270 +S'Imre Reiner' +p186546 +sa(dp186547 +g25268 +S'The Tournament Place in the City of Zwickau' +p186548 +sg25270 +S'Paulus Reinhart' +p186549 +sg25273 +S'etching' +p186550 +sg25275 +S'1573' +p186551 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000ae44.jpg' +p186552 +sg25267 +g27 +sa(dp186553 +g25268 +S'Clement de Jonghe' +p186554 +sg25270 +S'Rembrandt van Rijn' +p186555 +sg25273 +S'etching, drypoint and burin' +p186556 +sg25275 +S'1651' +p186557 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d35f.jpg' +p186558 +sg25267 +g27 +sa(dp186559 +g25273 +S'engraving on thick paper' +p186560 +sg25267 +g27 +sg25275 +S'1825' +p186561 +sg25268 +S'The Vision of Christ' +p186562 +sg25270 +S'William Blake' +p186563 +sa(dp186564 +g25268 +S'Sick Woman with a Large White Headdress (Saskia)' +p186565 +sg25270 +S'Rembrandt van Rijn' +p186566 +sg25273 +S'etching, with touches of drypoint' +p186567 +sg25275 +S'c. 1641/1642' +p186568 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d393.jpg' +p186569 +sg25267 +g27 +sa(dp186570 +g25273 +S'lithograph' +p186571 +sg25267 +g27 +sg25275 +S'1957' +p186572 +sg25268 +S'Bird and the Circle' +p186573 +sg25270 +S'Larry Rivers' +p186574 +sa(dp186575 +g25273 +S'lithograph' +p186576 +sg25267 +g27 +sg25275 +S'1958' +p186577 +sg25268 +S'Dark Plant' +p186578 +sg25270 +S'Larry Rivers' +p186579 +sa(dp186580 +g25273 +S'lithograph' +p186581 +sg25267 +g27 +sg25275 +S'1961' +p186582 +sg25268 +S'Head of an English Girl' +p186583 +sg25270 +S'Larry Rivers' +p186584 +sa(dp186585 +g25273 +S'color lithograph on wove paper' +p186586 +sg25267 +g27 +sg25275 +S'1960' +p186587 +sg25268 +S'Jack of Spades' +p186588 +sg25270 +S'Larry Rivers' +p186589 +sa(dp186590 +g25273 +S'color lithograph' +p186591 +sg25267 +g27 +sg25275 +S'1961' +p186592 +sg25268 +S'Wounded Civil War Soldier' +p186593 +sg25270 +S'Larry Rivers' +p186594 +sa(dp186595 +g25268 +S'Allegory of Carnal Love' +p186596 +sg25270 +S'Christofano Robetta' +p186597 +sg25273 +S'engraving on vellum' +p186598 +sg25275 +S'unknown date\n' +p186599 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7b3.jpg' +p186600 +sg25267 +g27 +sa(dp186601 +g25268 +S'Cover Design' +p186602 +sg25270 +S'Pierre Roche' +p186603 +sg25273 +S'gypsograph' +p186604 +sg25275 +S'unknown date\n' +p186605 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098a5.jpg' +p186606 +sg25267 +g27 +sa(dp186607 +g25268 +S'Aphrodite' +p186608 +sg25270 +S'Pierre Roche' +p186609 +sg25273 +S'gypsograph' +p186610 +sg25275 +S'1914' +p186611 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098a8.jpg' +p186612 +sg25267 +g27 +sa(dp186613 +g25268 +S'Colosses de Memnon (Thebes)' +p186614 +sg25270 +S'Pierre Roche' +p186615 +sg25273 +S'gypsograph' +p186616 +sg25275 +S'1911' +p186617 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098a6.jpg' +p186618 +sg25267 +g27 +sa(dp186619 +g25273 +S'engraving on thick paper' +p186620 +sg25267 +g27 +sg25275 +S'1825' +p186621 +sg25268 +S'Every Man Also Gave Him a Piece of Money' +p186622 +sg25270 +S'William Blake' +p186623 +sa(dp186624 +g25268 +S'Danseuse Cobodgienne (Cambodian Dancer)' +p186625 +sg25270 +S'Pierre Roche' +p186626 +sg25273 +S'gypsograph' +p186627 +sg25275 +S'1897' +p186628 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098b9.jpg' +p186629 +sg25267 +g27 +sa(dp186630 +g25268 +S'Diane au levrier (Diana and a Greyhound)' +p186631 +sg25270 +S'Pierre Roche' +p186632 +sg25273 +S'gypsograph' +p186633 +sg25275 +S'1912' +p186634 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098b5.jpg' +p186635 +sg25267 +g27 +sa(dp186636 +g25268 +S'Femme et Cygne, 22 fevrier 1912, Diner Japonaise (Woman and Bird, 22 February 1912, J' +p186637 +sg25270 +S'Pierre Roche' +p186638 +sg25273 +S'gypsograph' +p186639 +sg25275 +S'1912' +p186640 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098a7.jpg' +p186641 +sg25267 +g27 +sa(dp186642 +g25268 +S'Notre Dame du Folgoet (Our Lady of Folgoet)' +p186643 +sg25270 +S'Pierre Roche' +p186644 +sg25273 +S'gypsograph' +p186645 +sg25275 +S'unknown date\n' +p186646 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098ad.jpg' +p186647 +sg25267 +g27 +sa(dp186648 +g25268 +S'Saint Agathe (Saint Agatha)' +p186649 +sg25270 +S'Pierre Roche' +p186650 +sg25273 +S'gypsograph' +p186651 +sg25275 +S'1921' +p186652 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098b3.jpg' +p186653 +sg25267 +g27 +sa(dp186654 +g25268 +S'Sainte Azenor de Goelo' +p186655 +sg25270 +S'Pierre Roche' +p186656 +sg25273 +S'gypsograph' +p186657 +sg25275 +S'unknown date\n' +p186658 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098b4.jpg' +p186659 +sg25267 +g27 +sa(dp186660 +g25268 +S'Saint Brieuc' +p186661 +sg25270 +S'Pierre Roche' +p186662 +sg25273 +S'gypsograph' +p186663 +sg25275 +S'unknown date\n' +p186664 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098aa.jpg' +p186665 +sg25267 +g27 +sa(dp186666 +g25268 +S'Saint Euson' +p186667 +sg25270 +S'Pierre Roche' +p186668 +sg25273 +S'gypsograph' +p186669 +sg25275 +S'unknown date\n' +p186670 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098af.jpg' +p186671 +sg25267 +g27 +sa(dp186672 +g25268 +S'Saint Geldas' +p186673 +sg25270 +S'Pierre Roche' +p186674 +sg25273 +S'gypsograph' +p186675 +sg25275 +S'unknown date\n' +p186676 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098b0.jpg' +p186677 +sg25267 +g27 +sa(dp186678 +g25268 +S'Saint Guenole' +p186679 +sg25270 +S'Pierre Roche' +p186680 +sg25273 +S'gypsograph' +p186681 +sg25275 +S'unknown date\n' +p186682 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098ae.jpg' +p186683 +sg25267 +g27 +sa(dp186684 +g25268 +S'Scenes from a Legend' +p186685 +sg25270 +S'Giovanni Larciani (Master of the Kress Landscapes)' +p186686 +sg25273 +S'oil on canvas' +p186687 +sg25275 +S'probably c. 1515/1520' +p186688 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002afc.jpg' +p186689 +sg25267 +g27 +sa(dp186690 +g25273 +S'engraving on thin paper' +p186691 +sg25267 +g27 +sg25275 +S'1825' +p186692 +sg25268 +S'Every Man Also Gave Him a Piece of Money' +p186693 +sg25270 +S'William Blake' +p186694 +sa(dp186695 +g25268 +S'Saint Guenole' +p186696 +sg25270 +S'Pierre Roche' +p186697 +sg25273 +S'gypsograph' +p186698 +sg25275 +S'unknown date\n' +p186699 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098b8.jpg' +p186700 +sg25267 +g27 +sa(dp186701 +g25268 +S'Saint Herve' +p186702 +sg25270 +S'Pierre Roche' +p186703 +sg25273 +S'gypsograph' +p186704 +sg25275 +S'unknown date\n' +p186705 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098ac.jpg' +p186706 +sg25267 +g27 +sa(dp186707 +g25268 +S'Saint Iltud' +p186708 +sg25270 +S'Pierre Roche' +p186709 +sg25273 +S'gypsograph' +p186710 +sg25275 +S'unknown date\n' +p186711 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098b1.jpg' +p186712 +sg25267 +g27 +sa(dp186713 +g25268 +S'Saint Patrice' +p186714 +sg25270 +S'Pierre Roche' +p186715 +sg25273 +S'gypsograph' +p186716 +sg25275 +S'unknown date\n' +p186717 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098ab.jpg' +p186718 +sg25267 +g27 +sa(dp186719 +g25268 +S'Saint Tugdual' +p186720 +sg25270 +S'Pierre Roche' +p186721 +sg25273 +S'gypsograph' +p186722 +sg25275 +S'unknown date\n' +p186723 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098b6.jpg' +p186724 +sg25267 +g27 +sa(dp186725 +g25268 +S'Sirene (Hippocampe)' +p186726 +sg25270 +S'Pierre Roche' +p186727 +sg25273 +S'gypsograph' +p186728 +sg25275 +S'1896' +p186729 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098a9.jpg' +p186730 +sg25267 +g27 +sa(dp186731 +g25268 +S'Souhaits (Aspirations)' +p186732 +sg25270 +S'Pierre Roche' +p186733 +sg25273 +S'gypsograph' +p186734 +sg25275 +S'1906' +p186735 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098b2.jpg' +p186736 +sg25267 +g27 +sa(dp186737 +g25273 +S'hand-colored woodcut' +p186738 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186739 +sg25268 +S'Ace of Hearts' +p186740 +sg25270 +S'Antoine Louis Romanet' +p186741 +sa(dp186742 +g25273 +S'hand-colored woodcut' +p186743 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186744 +sg25268 +S'King of Hearts' +p186745 +sg25270 +S'Antoine Louis Romanet' +p186746 +sa(dp186747 +g25273 +S'hand-colored woodcut' +p186748 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186749 +sg25268 +S'Queen of Hearts' +p186750 +sg25270 +S'Antoine Louis Romanet' +p186751 +sa(dp186752 +g25273 +S'engraving on thick paper' +p186753 +sg25267 +g27 +sg25275 +S'1825' +p186754 +sg25268 +S'Job and His Daughters' +p186755 +sg25270 +S'William Blake' +p186756 +sa(dp186757 +g25273 +S'hand-colored woodcut' +p186758 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186759 +sg25268 +S'Knave of Hearts' +p186760 +sg25270 +S'Antoine Louis Romanet' +p186761 +sa(dp186762 +g25273 +S'hand-colored woodcut' +p186763 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186764 +sg25268 +S'Ten of Hearts' +p186765 +sg25270 +S'Antoine Louis Romanet' +p186766 +sa(dp186767 +g25273 +S'hand-colored woodcut' +p186768 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186769 +sg25268 +S'Nine of Hearts' +p186770 +sg25270 +S'Antoine Louis Romanet' +p186771 +sa(dp186772 +g25273 +S'hand-colored woodcut' +p186773 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186774 +sg25268 +S'Eight of Hearts' +p186775 +sg25270 +S'Antoine Louis Romanet' +p186776 +sa(dp186777 +g25273 +S'hand-colored woodcut' +p186778 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186779 +sg25268 +S'Seven of Hearts' +p186780 +sg25270 +S'Antoine Louis Romanet' +p186781 +sa(dp186782 +g25273 +S'hand-colored woodcut' +p186783 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186784 +sg25268 +S'Six of Hearts' +p186785 +sg25270 +S'Antoine Louis Romanet' +p186786 +sa(dp186787 +g25273 +S'hand-colored woodcut' +p186788 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186789 +sg25268 +S'Ace of Spades' +p186790 +sg25270 +S'Antoine Louis Romanet' +p186791 +sa(dp186792 +g25273 +S'hand-colored woodcut' +p186793 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186794 +sg25268 +S'Knave of Spades' +p186795 +sg25270 +S'Antoine Louis Romanet' +p186796 +sa(dp186797 +g25273 +S'hand-colored woodcut' +p186798 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186799 +sg25268 +S'Queen of Spades' +p186800 +sg25270 +S'Antoine Louis Romanet' +p186801 +sa(dp186802 +g25273 +S'hand-colored woodcut' +p186803 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186804 +sg25268 +S'Six of Spades' +p186805 +sg25270 +S'Antoine Louis Romanet' +p186806 +sa(dp186807 +g25273 +S'engraving on thin paper' +p186808 +sg25267 +g27 +sg25275 +S'1825' +p186809 +sg25268 +S'Job and His Daughters' +p186810 +sg25270 +S'William Blake' +p186811 +sa(dp186812 +g25273 +S'hand-colored woodcut' +p186813 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186814 +sg25268 +S'Seven of Spades' +p186815 +sg25270 +S'Antoine Louis Romanet' +p186816 +sa(dp186817 +g25273 +S'hand-colored woodcut' +p186818 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186819 +sg25268 +S'Eight of Spades' +p186820 +sg25270 +S'Antoine Louis Romanet' +p186821 +sa(dp186822 +g25273 +S'hand-colored woodcut' +p186823 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186824 +sg25268 +S'Nine of Spades' +p186825 +sg25270 +S'Antoine Louis Romanet' +p186826 +sa(dp186827 +g25273 +S'hand-colored woodcut' +p186828 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186829 +sg25268 +S'Nine of Spades' +p186830 +sg25270 +S'Antoine Louis Romanet' +p186831 +sa(dp186832 +g25273 +S'hand-colored woodcut' +p186833 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186834 +sg25268 +S'Knave of Clubs' +p186835 +sg25270 +S'Antoine Louis Romanet' +p186836 +sa(dp186837 +g25273 +S'hand-colored woodcut' +p186838 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186839 +sg25268 +S'Queen of Clubs' +p186840 +sg25270 +S'Antoine Louis Romanet' +p186841 +sa(dp186842 +g25273 +S'hand-colored woodcut' +p186843 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186844 +sg25268 +S'King of Clubs' +p186845 +sg25270 +S'Antoine Louis Romanet' +p186846 +sa(dp186847 +g25273 +S'hand-colored woodcut' +p186848 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186849 +sg25268 +S'Six of Clubs' +p186850 +sg25270 +S'Antoine Louis Romanet' +p186851 +sa(dp186852 +g25273 +S'hand-colored woodcut' +p186853 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186854 +sg25268 +S'Seven of Clubs' +p186855 +sg25270 +S'Antoine Louis Romanet' +p186856 +sa(dp186857 +g25273 +S'hand-colored woodcut' +p186858 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186859 +sg25268 +S'Eight of Clubs' +p186860 +sg25270 +S'Antoine Louis Romanet' +p186861 +sa(dp186862 +g25268 +S'Job and His Family Restored to Prosperity' +p186863 +sg25270 +S'William Blake' +p186864 +sg25273 +S'engraving on thick paper' +p186865 +sg25275 +S'1825' +p186866 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a000766d.jpg' +p186867 +sg25267 +g27 +sa(dp186868 +g25273 +S'hand-colored woodcut' +p186869 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186870 +sg25268 +S'Nine of Clubs' +p186871 +sg25270 +S'Antoine Louis Romanet' +p186872 +sa(dp186873 +g25273 +S'hand-colored woodcut' +p186874 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186875 +sg25268 +S'Ten of Clubs' +p186876 +sg25270 +S'Antoine Louis Romanet' +p186877 +sa(dp186878 +g25273 +S'hand-colored woodcut' +p186879 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186880 +sg25268 +S'Ace of Diamonds' +p186881 +sg25270 +S'Antoine Louis Romanet' +p186882 +sa(dp186883 +g25273 +S'hand-colored woodcut' +p186884 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186885 +sg25268 +S'Knave of Diamonds' +p186886 +sg25270 +S'Antoine Louis Romanet' +p186887 +sa(dp186888 +g25273 +S'hand-colored woodcut' +p186889 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186890 +sg25268 +S'Knave of Diamonds' +p186891 +sg25270 +S'Antoine Louis Romanet' +p186892 +sa(dp186893 +g25273 +S'hand-colored woodcut' +p186894 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186895 +sg25268 +S'Seven of Diamonds' +p186896 +sg25270 +S'Antoine Louis Romanet' +p186897 +sa(dp186898 +g25273 +S'hand-colored woodcut' +p186899 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186900 +sg25268 +S'Eight of Diamonds' +p186901 +sg25270 +S'Antoine Louis Romanet' +p186902 +sa(dp186903 +g25273 +S'hand-colored woodcut' +p186904 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186905 +sg25268 +S'Nine of Diamonds' +p186906 +sg25270 +S'Antoine Louis Romanet' +p186907 +sa(dp186908 +g25273 +S'hand-colored woodcut' +p186909 +sg25267 +g27 +sg25275 +S'unknown date\n' +p186910 +sg25268 +S'Ten of Diamonds' +p186911 +sg25270 +S'Antoine Louis Romanet' +p186912 +sa(dp186913 +g25268 +S'Benjamin Franklin' +p186914 +sg25270 +S'Artist Information (' +p186915 +sg25273 +S'(artist after)' +p186916 +sg25275 +S'\n' +p186917 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00111/a0011188.jpg' +p186918 +sg25267 +g27 +sa(dp186919 +g25273 +S'engraving on thin paper' +p186920 +sg25267 +g27 +sg25275 +S'1825' +p186921 +sg25268 +S'Job and His Family Restored to Prosperity' +p186922 +sg25270 +S'William Blake' +p186923 +sa(dp186924 +g25273 +S'5-color etching' +p186925 +sg25267 +g27 +sg25275 +S'1962' +p186926 +sg25268 +S'Destroyed City II' +p186927 +sg25270 +S'Ru van Rossem' +p186928 +sa(dp186929 +g25273 +S'color woodcut' +p186930 +sg25267 +g27 +sg25275 +S'1961' +p186931 +sg25268 +S'Blue Circle' +p186932 +sg25270 +S'Michael Rothenstein' +p186933 +sa(dp186934 +g25273 +S'color aquatint with mixed intaglio processes' +p186935 +sg25267 +g27 +sg25275 +S'1936/1938' +p186936 +sg25268 +S'Les Trois Croix' +p186937 +sg25270 +S'Georges Rouault' +p186938 +sa(dp186939 +g25273 +S'color aquatint with mixed intaglio processes' +p186940 +sg25267 +g27 +sg25275 +S'1936/1938' +p186941 +sg25268 +S'Laquais (Footman)' +p186942 +sg25270 +S'Georges Rouault' +p186943 +sa(dp186944 +g25273 +S'color aquatint with mixed intaglio processes' +p186945 +sg25267 +g27 +sg25275 +S'1936/1938' +p186946 +sg25268 +S'Christ de Face' +p186947 +sg25270 +S'Georges Rouault' +p186948 +sa(dp186949 +g25273 +S'color aquatint with mixed intaglio processes' +p186950 +sg25267 +g27 +sg25275 +S'1936/1938' +p186951 +sg25268 +S'Passion' +p186952 +sg25270 +S'Georges Rouault' +p186953 +sa(dp186954 +g25273 +S'color aquatint with mixed intaglio processes' +p186955 +sg25267 +g27 +sg25275 +S'1936/1938' +p186956 +sg25268 +S'Femme Fiere' +p186957 +sg25270 +S'Georges Rouault' +p186958 +sa(dp186959 +g25273 +S'color aquatint with mixed intaglio processes' +p186960 +sg25267 +g27 +sg25275 +S'1936/1938' +p186961 +sg25268 +S'Courtisane aux Yeux Baisses' +p186962 +sg25270 +S'Georges Rouault' +p186963 +sa(dp186964 +g25273 +S'color aquatint with mixed intaglio processes' +p186965 +sg25267 +g27 +sg25275 +S'1936/1938' +p186966 +sg25268 +S'Juges' +p186967 +sg25270 +S'Georges Rouault' +p186968 +sa(dp186969 +g25273 +S'color aquatint with mixed intaglio processes' +p186970 +sg25267 +g27 +sg25275 +S'1936/1938' +p186971 +sg25268 +S'Nu de Profil' +p186972 +sg25270 +S'Georges Rouault' +p186973 +sa(dp186974 +g25268 +S'Canto IV, Verse 328' +p186975 +sg25270 +S'Artist Information (' +p186976 +sg25273 +S'(artist after)' +p186977 +sg25275 +S'\n' +p186978 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007688.jpg' +p186979 +sg25267 +g27 +sa(dp186980 +g25273 +S'color aquatint with mixed intaglio processes' +p186981 +sg25267 +g27 +sg25275 +S'1936/1938' +p186982 +sg25268 +S'Paysage a la Tour' +p186983 +sg25270 +S'Georges Rouault' +p186984 +sa(dp186985 +g25273 +S'color aquatint with mixed intaglio processes' +p186986 +sg25267 +g27 +sg25275 +S'1936/1938' +p186987 +sg25268 +S'Tombeau' +p186988 +sg25270 +S'Georges Rouault' +p186989 +sa(dp186990 +g25273 +S'color aquatint with mixed intaglio processes' +p186991 +sg25267 +g27 +sg25275 +S'1936/1938' +p186992 +sg25268 +S'Trio' +p186993 +sg25270 +S'Georges Rouault' +p186994 +sa(dp186995 +g25273 +S'color aquatint with mixed intaglio processes' +p186996 +sg25267 +g27 +sg25275 +S'1936/1938' +p186997 +sg25268 +S'"Fiere autant qu\'un vivant, de sa noble stature ..."' +p186998 +sg25270 +S'Georges Rouault' +p186999 +sa(dp187000 +g25273 +S'lithograph' +p187001 +sg25267 +g27 +sg25275 +S'c. 1924/1927' +p187002 +sg25268 +S'Trio' +p187003 +sg25270 +S'Georges Rouault' +p187004 +sa(dp187005 +g25268 +S'Chenes de Roche (Rock Oaks)' +p187006 +sg25270 +S'Th\xc3\xa9odore Rousseau' +p187007 +sg25273 +S'etching on Japan pelure' +p187008 +sg25275 +S'1861' +p187009 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d59.jpg' +p187010 +sg25267 +g27 +sa(dp187011 +g25268 +S'La Guerre (The War)' +p187012 +sg25270 +S'Henri Rousseau' +p187013 +sg25273 +S'lithograph on orange paper' +p187014 +sg25275 +S'c. 1895' +p187015 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e3d.jpg' +p187016 +sg25267 +g27 +sa(dp187017 +g25268 +S'Corner of a Drawing Room' +p187018 +sg25270 +S'Gabriel de Saint-Aubin' +p187019 +sg25273 +S', unknown date' +p187020 +sg25275 +S'\n' +p187021 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e05.jpg' +p187022 +sg25267 +g27 +sa(dp187023 +g25268 +S'Laban cherchant ses dieux' +p187024 +sg25270 +S'Gabriel de Saint-Aubin' +p187025 +sg25273 +S', 1753' +p187026 +sg25275 +S'\n' +p187027 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008be8.jpg' +p187028 +sg25267 +g27 +sa(dp187029 +g25268 +S'Merope' +p187030 +sg25270 +S'Gabriel de Saint-Aubin' +p187031 +sg25273 +S', 1750' +p187032 +sg25275 +S'\n' +p187033 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008be2.jpg' +p187034 +sg25267 +g27 +sa(dp187035 +g25268 +S"On Homer's Poetry (and) On Virgil" +p187036 +sg25270 +S'William Blake' +p187037 +sg25273 +S'relief etching' +p187038 +sg25275 +S'1822' +p187039 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007656.jpg' +p187040 +sg25267 +g27 +sa(dp187041 +g25268 +S'La mort de Germanicus' +p187042 +sg25270 +S'Gabriel de Saint-Aubin' +p187043 +sg25273 +S', unknown date' +p187044 +sg25275 +S'\n' +p187045 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009690.jpg' +p187046 +sg25267 +g27 +sa(dp187047 +g25268 +S'The Death of Tancred' +p187048 +sg25270 +S'Gabriel de Saint-Aubin' +p187049 +sg25273 +S', 1760' +p187050 +sg25275 +S'\n' +p187051 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f61.jpg' +p187052 +sg25267 +g27 +sa(dp187053 +g25268 +S'Triomphe de Pompee dans Rome' +p187054 +sg25270 +S'Gabriel de Saint-Aubin' +p187055 +sg25273 +S', 1775' +p187056 +sg25275 +S'\n' +p187057 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a000968d.jpg' +p187058 +sg25267 +g27 +sa(dp187059 +g25268 +S'Oval Design' +p187060 +sg25270 +S'Artist Information (' +p187061 +sg25273 +S'(artist after)' +p187062 +sg25275 +S'\n' +p187063 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d8b.jpg' +p187064 +sg25267 +g27 +sa(dp187065 +g25273 +S'color woodcut' +p187066 +sg25267 +g27 +sg25275 +S'1955' +p187067 +sg25268 +S'Buddhist, Nara' +p187068 +sg25270 +S'Kiyoshi Saito' +p187069 +sa(dp187070 +g25273 +S'collagraph' +p187071 +sg25267 +g27 +sg25275 +S'1963' +p187072 +sg25268 +S'Cat' +p187073 +sg25270 +S'Kiyoshi Saito' +p187074 +sa(dp187075 +g25273 +S'color woodcut' +p187076 +sg25267 +g27 +sg25275 +S'1957' +p187077 +sg25268 +S'Daitokuji, Kyoto' +p187078 +sg25270 +S'Kiyoshi Saito' +p187079 +sa(dp187080 +g25273 +S'color woodcut' +p187081 +sg25267 +g27 +sg25275 +S'1957' +p187082 +sg25268 +S'Doll Awaji' +p187083 +sg25270 +S'Kiyoshi Saito' +p187084 +sa(dp187085 +g25273 +S'woodcut' +p187086 +sg25267 +g27 +sg25275 +S'1955' +p187087 +sg25268 +S'Gioji, Kyoto' +p187088 +sg25270 +S'Kiyoshi Saito' +p187089 +sa(dp187090 +g25268 +S'Moses Staying the Plague (?) [recto]' +p187091 +sg25270 +S'William Blake' +p187092 +sg25273 +S'pen and ink with wash on two joined sheets' +p187093 +sg25275 +S'c. 1780/1785' +p187094 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00069/a0006956.jpg' +p187095 +sg25267 +g27 +sa(dp187096 +g25273 +S'collagraph' +p187097 +sg25267 +g27 +sg25275 +S'1963' +p187098 +sg25268 +S'Haniwa' +p187099 +sg25270 +S'Kiyoshi Saito' +p187100 +sa(dp187101 +g25273 +S'color woodcut' +p187102 +sg25267 +g27 +sg25275 +S'1961' +p187103 +sg25268 +S'Maiko, Kyoto' +p187104 +sg25270 +S'Kiyoshi Saito' +p187105 +sa(dp187106 +g25273 +S'color woodcut' +p187107 +sg25267 +g27 +sg25275 +S'1962' +p187108 +sg25268 +S'Signal' +p187109 +sg25270 +S'Kiyoshi Saito' +p187110 +sa(dp187111 +g25273 +S'color woodcut' +p187112 +sg25267 +g27 +sg25275 +S'1955' +p187113 +sg25268 +S'Solitude, Kyoto' +p187114 +sg25270 +S'Kiyoshi Saito' +p187115 +sa(dp187116 +g25273 +S'color lithograph' +p187117 +sg25267 +g27 +sg25275 +S'1960' +p187118 +sg25268 +S'Steady Gaze' +p187119 +sg25270 +S'Kiyoshi Saito' +p187120 +sa(dp187121 +g25273 +S'color woodcut' +p187122 +sg25267 +g27 +sg25275 +S'1955' +p187123 +sg25268 +S'Stone Garden, Kyoto' +p187124 +sg25270 +S'Kiyoshi Saito' +p187125 +sa(dp187126 +g25273 +S'color woodcut' +p187127 +sg25267 +g27 +sg25275 +S'1957' +p187128 +sg25268 +S'White Porcelain' +p187129 +sg25270 +S'Kiyoshi Saito' +p187130 +sa(dp187131 +g25273 +S'etching and aquatint' +p187132 +sg25267 +g27 +sg25275 +S'1959' +p187133 +sg25268 +S'Arbuste (Shrubs)' +p187134 +sg25270 +S'Juvenal Sans\xc3\xb2' +p187135 +sa(dp187136 +g25273 +S'etching and aquatint' +p187137 +sg25267 +g27 +sg25275 +S'1961/1962' +p187138 +sg25268 +S'Feu Nocturne' +p187139 +sg25270 +S'Juvenal Sans\xc3\xb2' +p187140 +sa(dp187141 +g25273 +S'etching and soft-ground' +p187142 +sg25267 +g27 +sg25275 +S'1959' +p187143 +sg25268 +S'Fleur et Racines (Flower and Roots)' +p187144 +sg25270 +S'Juvenal Sans\xc3\xb2' +p187145 +sa(dp187146 +g25273 +S'graphite on two joined sheets' +p187147 +sg25267 +g27 +sg25275 +S'probably c. 1779/1780' +p187148 +sg25268 +S'The Belvedere Torso [verso]' +p187149 +sg25270 +S'William Blake' +p187150 +sa(dp187151 +g25273 +S'etching' +p187152 +sg25267 +g27 +sg25275 +S'1960/1961' +p187153 +sg25268 +S'Stifling Vines' +p187154 +sg25270 +S'Juvenal Sans\xc3\xb2' +p187155 +sa(dp187156 +g25273 +S'aquatint and soft-ground etching' +p187157 +sg25267 +g27 +sg25275 +S'1963' +p187158 +sg25268 +S'Vegetation' +p187159 +sg25270 +S'Juvenal Sans\xc3\xb2' +p187160 +sa(dp187161 +g25273 +S'etching' +p187162 +sg25267 +g27 +sg25275 +S'1957' +p187163 +sg25268 +S'Walled City' +p187164 +sg25270 +S'Juvenal Sans\xc3\xb2' +p187165 +sa(dp187166 +g25273 +S'color engraving' +p187167 +sg25267 +g27 +sg25275 +S'1963' +p187168 +sg25268 +S'A la Carga' +p187169 +sg25270 +S'Guillermo Silva Santamar\xc3\xada' +p187170 +sa(dp187171 +g25273 +S'color engraving' +p187172 +sg25267 +g27 +sg25275 +S'1963' +p187173 +sg25268 +S'Vendedor del Carrito' +p187174 +sg25270 +S'Guillermo Silva Santamar\xc3\xada' +p187175 +sa(dp187176 +g25273 +S'etching' +p187177 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187178 +sg25268 +S'Mountainous Landscape with Lovers' +p187179 +sg25270 +S'Roelandt Savery' +p187180 +sa(dp187181 +g25268 +S'Dr. Koller' +p187182 +sg25270 +S'Egon Schiele' +p187183 +sg25273 +S'charcoal on japan paper' +p187184 +sg25275 +S'c. 1918' +p187185 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00029/a0002969.jpg' +p187186 +sg25267 +g27 +sa(dp187187 +g25273 +S'etching and stencil in blue, magenta, and red on wove paper' +p187188 +sg25267 +g27 +sg25275 +S'1955' +p187189 +sg25268 +S'Lonely Heights' +p187190 +sg25270 +S'Karl Schrag' +p187191 +sa(dp187192 +g25273 +S'lithograph (stone and zinc) in black, blue, and brown on Arches paper' +p187193 +sg25267 +g27 +sg25275 +S'1962' +p187194 +sg25268 +S'Untitled' +p187195 +sg25270 +S'John Paul Jones' +p187196 +sa(dp187197 +g25273 +S'drypoint' +p187198 +sg25267 +g27 +sg25275 +S'1953' +p187199 +sg25268 +S"Notre Dame (Notre-Dame de Paris vue de la Tour d'Argent)" +p187200 +sg25270 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p187201 +sa(dp187202 +g25268 +S'"And Saul Said unto David, Go, and the Lord be with Thee" [recto]' +p187203 +sg25270 +S'William Blake' +p187204 +sg25273 +S'pen and ink over graphite on laid paper' +p187205 +sg25275 +S'c. 1780/1785' +p187206 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007013.jpg' +p187207 +sg25267 +g27 +sa(dp187208 +g25273 +S'color woodcut' +p187209 +sg25267 +g27 +sg25275 +S'1958' +p187210 +sg25268 +S'A Couple of Roosters' +p187211 +sg25270 +S"Jun'ichiro Sekino" +p187212 +sa(dp187213 +g25273 +S'color woodcut' +p187214 +sg25267 +g27 +sg25275 +S'1957' +p187215 +sg25268 +S'Lovesick Cat' +p187216 +sg25270 +S"Jun'ichiro Sekino" +p187217 +sa(dp187218 +g25273 +S'color woodcut' +p187219 +sg25267 +g27 +sg25275 +S'1957' +p187220 +sg25268 +S'Nest of the Small Birds' +p187221 +sg25270 +S"Jun'ichiro Sekino" +p187222 +sa(dp187223 +g25273 +S'color woodcut' +p187224 +sg25267 +g27 +sg25275 +S'1955' +p187225 +sg25268 +S'Owls' +p187226 +sg25270 +S"Jun'ichiro Sekino" +p187227 +sa(dp187228 +g25273 +S'color woodcut' +p187229 +sg25267 +g27 +sg25275 +S'1957' +p187230 +sg25268 +S'Pond of Night' +p187231 +sg25270 +S"Jun'ichiro Sekino" +p187232 +sa(dp187233 +g25273 +S'color woodcut' +p187234 +sg25267 +g27 +sg25275 +S'1957' +p187235 +sg25268 +S'Railroad Yard' +p187236 +sg25270 +S"Jun'ichiro Sekino" +p187237 +sa(dp187238 +g25273 +S'color woodcut' +p187239 +sg25267 +g27 +sg25275 +S'1956' +p187240 +sg25268 +S"Rooster's Family" +p187241 +sg25270 +S"Jun'ichiro Sekino" +p187242 +sa(dp187243 +g25273 +S'screenprint in black and brown' +p187244 +sg25267 +g27 +sg25275 +S'1958' +p187245 +sg25268 +S'Passion of Sacco and Vanzetti' +p187246 +sg25270 +S'Ben Shahn' +p187247 +sa(dp187248 +g25273 +S'screenprint' +p187249 +sg25267 +g27 +sg25275 +S'1950' +p187250 +sg25268 +S'Silent Music' +p187251 +sg25270 +S'Ben Shahn' +p187252 +sa(dp187253 +g25273 +S'screenprint' +p187254 +sg25267 +g27 +sg25275 +S'1950' +p187255 +sg25268 +S'Where There is a Book There is No Sword' +p187256 +sg25270 +S'Ben Shahn' +p187257 +sa(dp187258 +g25268 +S'Scenes from a Legend' +p187259 +sg25270 +S'Giovanni Larciani (Master of the Kress Landscapes)' +p187260 +sg25273 +S'oil on canvas' +p187261 +sg25275 +S'probably c. 1515/1520' +p187262 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002afd.jpg' +p187263 +sg25267 +g27 +sa(dp187264 +g25273 +S'graphite on laid paper' +p187265 +sg25267 +g27 +sg25275 +S'probably c. 1810/1820' +p187266 +sg25268 +S'A Large Man Seated, Arms Resting on Knees [verso]' +p187267 +sg25270 +S'William Blake' +p187268 +sa(dp187269 +g25273 +S'color woodcut' +p187270 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187271 +sg25268 +S'Return' +p187272 +sg25270 +S'Paul Shaub' +p187273 +sa(dp187274 +g25273 +S'lithograph' +p187275 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187276 +sg25268 +S'Ballerina Standing, Back Turned' +p187277 +sg25270 +S'Alexander Semenovich Shenderov' +p187278 +sa(dp187279 +g25273 +S'lithograph' +p187280 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187281 +sg25268 +S'Ballerina Sitting in front of a Mirror' +p187282 +sg25270 +S'Alexander Semenovich Shenderov' +p187283 +sa(dp187284 +g25273 +S'lithograph' +p187285 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187286 +sg25268 +S'Bamboo Trunk' +p187287 +sg25270 +S'Toko Shinoda' +p187288 +sa(dp187289 +g25273 +S'lithograph' +p187290 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187291 +sg25268 +S'Leaves' +p187292 +sg25270 +S'Toko Shinoda' +p187293 +sa(dp187294 +g25273 +S'lithograph on Arches paper' +p187295 +sg25267 +g27 +sg25275 +S'1962' +p187296 +sg25268 +S'Untitled' +p187297 +sg25270 +S'John Paul Jones' +p187298 +sa(dp187299 +g25273 +S'color etching' +p187300 +sg25267 +g27 +sg25275 +S'1960' +p187301 +sg25268 +S'Bees Swarming' +p187302 +sg25270 +S'Joyce Sills' +p187303 +sa(dp187304 +g25273 +S'1 vol: 12 etchings plus title page' +p187305 +sg25267 +g27 +sg25275 +S'published 1961' +p187306 +sg25268 +S'Some Arachnids' +p187307 +sg25270 +S'Joyce Sills' +p187308 +sa(dp187309 +g25273 +S'etching' +p187310 +sg25267 +g27 +sg25275 +S'1961' +p187311 +sg25268 +S'Title Page' +p187312 +sg25270 +S'Joyce Sills' +p187313 +sa(dp187314 +g25273 +S'etching' +p187315 +sg25267 +g27 +sg25275 +S'1961' +p187316 +sg25268 +S'Two Tarantulas Fighting' +p187317 +sg25270 +S'Joyce Sills' +p187318 +sa(dp187319 +g25268 +S'Group of Men Seated in a Circle [recto]' +p187320 +sg25270 +S'William Blake' +p187321 +sg25273 +S'pen and black ink with wash over black chalk on laid paper' +p187322 +sg25275 +S'c. 1780/1785' +p187323 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e14.jpg' +p187324 +sg25267 +g27 +sa(dp187325 +g25273 +S'etching' +p187326 +sg25267 +g27 +sg25275 +S'1961' +p187327 +sg25268 +S'Spider Moulting' +p187328 +sg25270 +S'Joyce Sills' +p187329 +sa(dp187330 +g25273 +S'etching' +p187331 +sg25267 +g27 +sg25275 +S'1961' +p187332 +sg25268 +S'Tarantula in Profile' +p187333 +sg25270 +S'Joyce Sills' +p187334 +sa(dp187335 +g25273 +S'etching' +p187336 +sg25267 +g27 +sg25275 +S'1961' +p187337 +sg25268 +S'Black Widows, Female and Male' +p187338 +sg25270 +S'Joyce Sills' +p187339 +sa(dp187340 +g25273 +S'etching' +p187341 +sg25267 +g27 +sg25275 +S'1961' +p187342 +sg25268 +S'Mite' +p187343 +sg25270 +S'Joyce Sills' +p187344 +sa(dp187345 +g25273 +S'etching' +p187346 +sg25267 +g27 +sg25275 +S'1961' +p187347 +sg25268 +S'Scorpion' +p187348 +sg25270 +S'Joyce Sills' +p187349 +sa(dp187350 +g25273 +S'etching' +p187351 +sg25267 +g27 +sg25275 +S'1961' +p187352 +sg25268 +S'Tarantula on the Defensive' +p187353 +sg25270 +S'Joyce Sills' +p187354 +sa(dp187355 +g25273 +S'etching in green' +p187356 +sg25267 +g27 +sg25275 +S'1961' +p187357 +sg25268 +S'Limulus' +p187358 +sg25270 +S'Joyce Sills' +p187359 +sa(dp187360 +g25273 +S'etching' +p187361 +sg25267 +g27 +sg25275 +S'1961' +p187362 +sg25268 +S'Tarantula' +p187363 +sg25270 +S'Joyce Sills' +p187364 +sa(dp187365 +g25273 +S'etching' +p187366 +sg25267 +g27 +sg25275 +S'1961' +p187367 +sg25268 +S'Spider on its Back' +p187368 +sg25270 +S'Joyce Sills' +p187369 +sa(dp187370 +g25273 +S'etching' +p187371 +sg25267 +g27 +sg25275 +S'1961' +p187372 +sg25268 +S'Colophon' +p187373 +sg25270 +S'Joyce Sills' +p187374 +sa(dp187375 +g25273 +S'graphite on laid paper' +p187376 +sg25267 +g27 +sg25275 +S'c. 1780/1785' +p187377 +sg25268 +S'Sketch of Three Figures [verso]' +p187378 +sg25270 +S'William Blake' +p187379 +sa(dp187380 +g25273 +S'etching and soft-ground on wove paper' +p187381 +sg25267 +g27 +sg25275 +S'1960' +p187382 +sg25268 +S'Firenze' +p187383 +sg25270 +S'Moishe Smith' +p187384 +sa(dp187385 +g25273 +S'etching, drypoint, and aquatint on wove paper' +p187386 +sg25267 +g27 +sg25275 +S'1957' +p187387 +sg25268 +S'Autumn' +p187388 +sg25270 +S'Moishe Smith' +p187389 +sa(dp187390 +g25273 +S'etching and drypoint on wove paper' +p187391 +sg25267 +g27 +sg25275 +S'1957' +p187392 +sg25268 +S'Spring' +p187393 +sg25270 +S'Moishe Smith' +p187394 +sa(dp187395 +g25273 +S'etching and soft-ground on wove paper' +p187396 +sg25267 +g27 +sg25275 +S'1963' +p187397 +sg25268 +S'Genova' +p187398 +sg25270 +S'Moishe Smith' +p187399 +sa(dp187400 +g25273 +S'etching, soft-ground, roulette on wove paper' +p187401 +sg25267 +g27 +sg25275 +S'1963' +p187402 +sg25268 +S'Liguria' +p187403 +sg25270 +S'Moishe Smith' +p187404 +sa(dp187405 +g25273 +S'etching and soft-ground on wove paper' +p187406 +sg25267 +g27 +sg25275 +S'1962' +p187407 +sg25268 +S'Umbria' +p187408 +sg25270 +S'Moishe Smith' +p187409 +sa(dp187410 +g25273 +S'etching, soft-ground, and roulette on wove paper' +p187411 +sg25267 +g27 +sg25275 +S'1963' +p187412 +sg25268 +S'View of Portofino' +p187413 +sg25270 +S'Moishe Smith' +p187414 +sa(dp187415 +g25273 +S'lift-ground aquatint' +p187416 +sg25267 +g27 +sg25275 +S'1958' +p187417 +sg25268 +S'Serie I' +p187418 +sg25270 +S'Kurt R. Hoffmann Sonderborg' +p187419 +sa(dp187420 +g25273 +S'lift-ground aquatint' +p187421 +sg25267 +g27 +sg25275 +S'1958' +p187422 +sg25268 +S'Serie I' +p187423 +sg25270 +S'Kurt R. Hoffmann Sonderborg' +p187424 +sa(dp187425 +g25273 +S'6-color lithograph (stone)' +p187426 +sg25267 +g27 +sg25275 +S'1961' +p187427 +sg25268 +S'Angel with Freed Bird' +p187428 +sg25270 +S'Benton Murdoch Spruance' +p187429 +sa(dp187430 +g25268 +S'A Resurrection Scene [recto]' +p187431 +sg25270 +S'William Blake' +p187432 +sg25273 +S'graphite' +p187433 +sg25275 +S'c. 1805' +p187434 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a000715c.jpg' +p187435 +sg25267 +g27 +sa(dp187436 +g25273 +S'5-color lithograph on Rives BFK paper' +p187437 +sg25267 +g27 +sg25275 +S'1963' +p187438 +sg25268 +S'Living Rocks' +p187439 +sg25270 +S'Benton Murdoch Spruance' +p187440 +sa(dp187441 +g25273 +S'5-color lithograph on Rives BFK paper' +p187442 +sg25267 +g27 +sg25275 +S'1963' +p187443 +sg25268 +S'Minotaur with Bronze Horns' +p187444 +sg25270 +S'Benton Murdoch Spruance' +p187445 +sa(dp187446 +g25273 +S'lithograph in black' +p187447 +sg25267 +g27 +sg25275 +S'1959' +p187448 +sg25268 +S'Master of Stars' +p187449 +sg25270 +S'Benton Murdoch Spruance' +p187450 +sa(dp187451 +g25273 +S'lithograph (stone) in black' +p187452 +sg25267 +g27 +sg25275 +S'1960' +p187453 +sg25268 +S'O Sea Which Swells in Our Dreams [recto]' +p187454 +sg25270 +S'Benton Murdoch Spruance' +p187455 +sa(dp187456 +g25273 +S'lithograph in black' +p187457 +sg25267 +g27 +sg25275 +S'1956' +p187458 +sg25268 +S'Dr. Edwin Williams [verso]' +p187459 +sg25270 +S'Benton Murdoch Spruance' +p187460 +sa(dp187461 +g25273 +S'lithograph (stone) in black' +p187462 +sg25267 +g27 +sg25275 +S'1960' +p187463 +sg25268 +S'The Patrician Women on Their Terraces' +p187464 +sg25270 +S'Benton Murdoch Spruance' +p187465 +sa(dp187466 +g25273 +S'lithograph in black' +p187467 +sg25267 +g27 +sg25275 +S'1959' +p187468 +sg25268 +S'Stranger Whose Sail' +p187469 +sg25270 +S'Benton Murdoch Spruance' +p187470 +sa(dp187471 +g25273 +S'lithograph (stone) in black' +p187472 +sg25267 +g27 +sg25275 +S'1959' +p187473 +sg25268 +S'The Tragediennes Come to the Ocean' +p187474 +sg25270 +S'Benton Murdoch Spruance' +p187475 +sa(dp187476 +g25273 +S'7-color lithograph on Rives BFK paper' +p187477 +sg25267 +g27 +sg25275 +S'1963' +p187478 +sg25268 +S'Spectre of Moby Dick' +p187479 +sg25270 +S'Benton Murdoch Spruance' +p187480 +sa(dp187481 +g25273 +S'charcoal' +p187482 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187483 +sg25268 +S'Tulpehocken' +p187484 +sg25270 +S'Benton Murdoch Spruance' +p187485 +sa(dp187486 +g25273 +S'graphite' +p187487 +sg25267 +g27 +sg25275 +S'c. 1805' +p187488 +sg25268 +S'The Devil Outside a Church [verso]' +p187489 +sg25270 +S'William Blake' +p187490 +sa(dp187491 +g25273 +S'color lithograph' +p187492 +sg25267 +g27 +sg25275 +S'1960' +p187493 +sg25268 +S'Leningrad' +p187494 +sg25270 +S'Sergei Maximilianovich Sternberg' +p187495 +sa(dp187496 +g25268 +S'Title Page for "New Discoveries"' +p187497 +sg25270 +S'Artist Information (' +p187498 +sg25273 +S'(artist after)' +p187499 +sg25275 +S'\n' +p187500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf9a.jpg' +p187501 +sg25267 +g27 +sa(dp187502 +g25268 +S'America: pl.1' +p187503 +sg25270 +S'Artist Information (' +p187504 +sg25273 +S'(artist after)' +p187505 +sg25275 +S'\n' +p187506 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005be9.jpg' +p187507 +sg25267 +g27 +sa(dp187508 +g25268 +S'The Magnetic Pole: pl.2' +p187509 +sg25270 +S'Artist Information (' +p187510 +sg25273 +S'(artist after)' +p187511 +sg25275 +S'\n' +p187512 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf9b.jpg' +p187513 +sg25267 +g27 +sa(dp187514 +g25268 +S'Casting of Cannons: pl.3' +p187515 +sg25270 +S'Artist Information (' +p187516 +sg25273 +S'(artist after)' +p187517 +sg25275 +S'\n' +p187518 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf99.jpg' +p187519 +sg25267 +g27 +sa(dp187520 +g25268 +S'Printers at Work: pl.4' +p187521 +sg25270 +S'Artist Information (' +p187522 +sg25273 +S'(artist after)' +p187523 +sg25275 +S'\n' +p187524 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf9c.jpg' +p187525 +sg25267 +g27 +sa(dp187526 +g25268 +S'Clockmaking: pl.5' +p187527 +sg25270 +S'Artist Information (' +p187528 +sg25273 +S'(artist after)' +p187529 +sg25275 +S'\n' +p187530 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf9d.jpg' +p187531 +sg25267 +g27 +sa(dp187532 +g25268 +S'Medicine: pl.6' +p187533 +sg25270 +S'Artist Information (' +p187534 +sg25273 +S'(artist after)' +p187535 +sg25275 +S'\n' +p187536 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf9e.jpg' +p187537 +sg25267 +g27 +sa(dp187538 +g25268 +S'Distillation: pl.7' +p187539 +sg25270 +S'Artist Information (' +p187540 +sg25273 +S'(artist after)' +p187541 +sg25275 +S'\n' +p187542 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf9f.jpg' +p187543 +sg25267 +g27 +sa(dp187544 +g25268 +S'Silk Manufacture: pl.8' +p187545 +sg25270 +S'Artist Information (' +p187546 +sg25273 +S'(artist after)' +p187547 +sg25275 +S'\n' +p187548 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfa0.jpg' +p187549 +sg25267 +g27 +sa(dp187550 +g25273 +S'(artist after)' +p187551 +sg25267 +g27 +sg25275 +S'\n' +p187552 +sg25268 +S'The Holy Family' +p187553 +sg25270 +S'Artist Information (' +p187554 +sa(dp187555 +g25268 +S'Equestrian Harnesses: pl.9' +p187556 +sg25270 +S'Artist Information (' +p187557 +sg25273 +S'(artist after)' +p187558 +sg25275 +S'\n' +p187559 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf98.jpg' +p187560 +sg25267 +g27 +sa(dp187561 +g25268 +S'Arab Tent' +p187562 +sg25270 +S'Carol Summers' +p187563 +sg25273 +S'color woodcut' +p187564 +sg25275 +S'1963' +p187565 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bab.jpg' +p187566 +sg25267 +g27 +sa(dp187567 +g25273 +S'color woodcut' +p187568 +sg25267 +g27 +sg25275 +S'1961' +p187569 +sg25268 +S'Sitting without Seat' +p187570 +sg25270 +S'Lee Hang Sung' +p187571 +sa(dp187572 +g25273 +S'aquatint' +p187573 +sg25267 +g27 +sg25275 +S'1959' +p187574 +sg25268 +S'Dawn' +p187575 +sg25270 +S'Peter Takal' +p187576 +sa(dp187577 +g25273 +S'lithograph in buff and black' +p187578 +sg25267 +g27 +sg25275 +S'1963/1964' +p187579 +sg25268 +S'Title Page' +p187580 +sg25270 +S'Peter Takal' +p187581 +sa(dp187582 +g25273 +S'20 lithographs (stone and zinc) on Rives BFK paperand Arches cover' +p187583 +sg25267 +g27 +sg25275 +S'1963/1964' +p187584 +sg25268 +S'Of Nature, Of Man' +p187585 +sg25270 +S'Peter Takal' +p187586 +sa(dp187587 +g25273 +S'lithograph in black and white' +p187588 +sg25267 +g27 +sg25275 +S'1963/1964' +p187589 +sg25268 +S'City Window' +p187590 +sg25270 +S'Peter Takal' +p187591 +sa(dp187592 +g25273 +S'lithograph in black and white on buff paper' +p187593 +sg25267 +g27 +sg25275 +S'1963/1964' +p187594 +sg25268 +S'Flowers in Barn' +p187595 +sg25270 +S'Peter Takal' +p187596 +sa(dp187597 +g25273 +S'lithograph in sepia and black' +p187598 +sg25267 +g27 +sg25275 +S'1963/1964' +p187599 +sg25268 +S'Head of a Woman' +p187600 +sg25270 +S'Peter Takal' +p187601 +sa(dp187602 +g25273 +S'lithograph in brown and black' +p187603 +sg25267 +g27 +sg25275 +S'1963/1964' +p187604 +sg25268 +S'Autumn Lake' +p187605 +sg25270 +S'Peter Takal' +p187606 +sa(dp187607 +g25268 +S'Mahana Atua (The Food of the Gods) [recto]' +p187608 +sg25270 +S'Paul Gauguin' +p187609 +sg25273 +S'woodcut block' +p187610 +sg25275 +S'1894/1895' +p187611 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f60.jpg' +p187612 +sg25267 +g27 +sa(dp187613 +g25273 +S'lithograph in brown and black' +p187614 +sg25267 +g27 +sg25275 +S'1963/1964' +p187615 +sg25268 +S'Landscape' +p187616 +sg25270 +S'Peter Takal' +p187617 +sa(dp187618 +g25273 +S'lithograph in black' +p187619 +sg25267 +g27 +sg25275 +S'1963/1964' +p187620 +sg25268 +S'Eclipse' +p187621 +sg25270 +S'Peter Takal' +p187622 +sa(dp187623 +g25273 +S'lithograph in black and white' +p187624 +sg25267 +g27 +sg25275 +S'1963/1964' +p187625 +sg25268 +S'Snow Fields' +p187626 +sg25270 +S'Peter Takal' +p187627 +sa(dp187628 +g25273 +S'lithograph in gray and black' +p187629 +sg25267 +g27 +sg25275 +S'1963/1964' +p187630 +sg25268 +S'Birds' +p187631 +sg25270 +S'Peter Takal' +p187632 +sa(dp187633 +g25273 +S'lithograph in black and white on buff paper' +p187634 +sg25267 +g27 +sg25275 +S'1963/1964' +p187635 +sg25268 +S'Winter Weeds' +p187636 +sg25270 +S'Peter Takal' +p187637 +sa(dp187638 +g25273 +S'lithograph in tan and black' +p187639 +sg25267 +g27 +sg25275 +S'1963/1964' +p187640 +sg25268 +S'Weed' +p187641 +sg25270 +S'Peter Takal' +p187642 +sa(dp187643 +g25273 +S'lithograph in black and white' +p187644 +sg25267 +g27 +sg25275 +S'1963/1964' +p187645 +sg25268 +S'Bougainvillea' +p187646 +sg25270 +S'Peter Takal' +p187647 +sa(dp187648 +g25273 +S'lithograph in black and white' +p187649 +sg25267 +g27 +sg25275 +S'1963/1964' +p187650 +sg25268 +S'Kneeling Nude' +p187651 +sg25270 +S'Peter Takal' +p187652 +sa(dp187653 +g25273 +S'lithograph in black and white' +p187654 +sg25267 +g27 +sg25275 +S'1963/1964' +p187655 +sg25268 +S'Open Barn Door' +p187656 +sg25270 +S'Peter Takal' +p187657 +sa(dp187658 +g25273 +S'lithograph in black and white' +p187659 +sg25267 +g27 +sg25275 +S'1963/1964' +p187660 +sg25268 +S'Tree Opening' +p187661 +sg25270 +S'Peter Takal' +p187662 +sa(dp187663 +g25268 +S'Two Title Pages for "Le Sourire" (Les deux titres du Sourire) [verso]' +p187664 +sg25270 +S'Paul Gauguin' +p187665 +sg25273 +S'woodcut block' +p187666 +sg25275 +S'in or after 1895' +p187667 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f61.jpg' +p187668 +sg25267 +g27 +sa(dp187669 +g25273 +S'lithograph in cream and red on green paper' +p187670 +sg25267 +g27 +sg25275 +S'1963/1964' +p187671 +sg25268 +S'Winter Vine' +p187672 +sg25270 +S'Peter Takal' +p187673 +sa(dp187674 +g25273 +S'lithograph in sepia on buff paper' +p187675 +sg25267 +g27 +sg25275 +S'1963/1964' +p187676 +sg25268 +S'Wave' +p187677 +sg25270 +S'Peter Takal' +p187678 +sa(dp187679 +g25273 +S'lithograph in black and white on buff paper' +p187680 +sg25267 +g27 +sg25275 +S'1963/1964' +p187681 +sg25268 +S'Reclining Nude' +p187682 +sg25270 +S'Peter Takal' +p187683 +sa(dp187684 +g25273 +S'lithograph in black and white on buff paper' +p187685 +sg25267 +g27 +sg25275 +S'1963/1964' +p187686 +sg25268 +S"Queen Anne's Lace" +p187687 +sg25270 +S'Peter Takal' +p187688 +sa(dp187689 +g25273 +S'lithograph in tan and black' +p187690 +sg25267 +g27 +sg25275 +S'1963/1964' +p187691 +sg25268 +S'Colophon' +p187692 +sg25270 +S'Peter Takal' +p187693 +sa(dp187694 +g25273 +S'etching' +p187695 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187696 +sg25268 +S'Reclining Girl' +p187697 +sg25270 +S'Peter Takal' +p187698 +sa(dp187699 +g25273 +S'etching' +p187700 +sg25267 +g27 +sg25275 +S'1963' +p187701 +sg25268 +S'Winter' +p187702 +sg25270 +S'Peter Takal' +p187703 +sa(dp187704 +g25273 +S'etching' +p187705 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187706 +sg25268 +S'Winter Tree' +p187707 +sg25270 +S'Peter Takal' +p187708 +sa(dp187709 +g25273 +S'2-color lithograph' +p187710 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187711 +sg25268 +S"Cow's Skull" +p187712 +sg25270 +S'Tsuneo Tamagami' +p187713 +sa(dp187714 +g25273 +S'2-color lithograph' +p187715 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187716 +sg25268 +S'Tanned Hide' +p187717 +sg25270 +S'Tsuneo Tamagami' +p187718 +sa(dp187719 +g25273 +S'wood engraving block [cancelled]' +p187720 +sg25267 +g27 +sg25275 +S'1926' +p187721 +sg25268 +S'Twilight of Man' +p187722 +sg25270 +S'Rockwell Kent' +p187723 +sa(dp187724 +g25268 +S'The Crucifixion' +p187725 +sg25270 +S'Antonio Tempesta' +p187726 +sg25273 +S'etching' +p187727 +sg25275 +S'1612' +p187728 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a00067ca.jpg' +p187729 +sg25267 +g27 +sa(dp187730 +g25273 +S'color mixed intaglio on handmade paper' +p187731 +sg25267 +g27 +sg25275 +S'1963' +p187732 +sg25268 +S'Auxerre' +p187733 +sg25270 +S'Valerie Thornton' +p187734 +sa(dp187735 +g25273 +S'relief etching' +p187736 +sg25267 +g27 +sg25275 +S'1956' +p187737 +sg25268 +S'Canterbury Tower' +p187738 +sg25270 +S'Valerie Thornton' +p187739 +sa(dp187740 +g25273 +S'color intaglio' +p187741 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187742 +sg25268 +S'Books' +p187743 +sg25270 +S'Valerie Thornton' +p187744 +sa(dp187745 +g25273 +S'color relief etching' +p187746 +sg25267 +g27 +sg25275 +S'1959' +p187747 +sg25268 +S'Divinity Schools, Oxford' +p187748 +sg25270 +S'Valerie Thornton' +p187749 +sa(dp187750 +g25273 +S'color intaglio on F.J. Head handmade paper' +p187751 +sg25267 +g27 +sg25275 +S'1955' +p187752 +sg25268 +S'Golden Grasses' +p187753 +sg25270 +S'Valerie Thornton' +p187754 +sa(dp187755 +g25273 +S'relief etching' +p187756 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187757 +sg25268 +S'Standing Form' +p187758 +sg25270 +S'Valerie Thornton' +p187759 +sa(dp187760 +g25273 +S'color intaglio' +p187761 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187762 +sg25268 +S'New York City' +p187763 +sg25270 +S'Valerie Thornton' +p187764 +sa(dp187765 +g25273 +S'relief etching' +p187766 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187767 +sg25268 +S'Mycenae' +p187768 +sg25270 +S'Valerie Thornton' +p187769 +sa(dp187770 +g25273 +S'color intaglio' +p187771 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187772 +sg25268 +S'Snowdrops' +p187773 +sg25270 +S'Valerie Thornton' +p187774 +sa(dp187775 +g25273 +S'drypoint copper plate' +p187776 +sg25267 +g27 +sg25275 +S'c. 1873' +p187777 +sg25268 +S'Florence Leyland' +p187778 +sg25270 +S'James McNeill Whistler' +p187779 +sa(dp187780 +g25273 +S'color intaglio' +p187781 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187782 +sg25268 +S'Valley (Dordogne)' +p187783 +sg25270 +S'Valerie Thornton' +p187784 +sa(dp187785 +g25273 +S'color etching, aquatint and roulette' +p187786 +sg25267 +g27 +sg25275 +S'c. 1962' +p187787 +sg25268 +S'Document' +p187788 +sg25270 +S'Arthur Thrall' +p187789 +sa(dp187790 +g25268 +S'The Last Supper' +p187791 +sg25270 +S'Artist Information (' +p187792 +sg25273 +S'(artist after)' +p187793 +sg25275 +S'\n' +p187794 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a0006654.jpg' +p187795 +sg25267 +g27 +sa(dp187796 +g25268 +S'The Martyrdom of Two Saints' +p187797 +sg25270 +S'Artist Information (' +p187798 +sg25273 +S'(artist after)' +p187799 +sg25275 +S'\n' +p187800 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c897.jpg' +p187801 +sg25267 +g27 +sa(dp187802 +g25273 +S'lithograph' +p187803 +sg25267 +g27 +sg25275 +S'1960' +p187804 +sg25268 +S'Contrast' +p187805 +sg25270 +S'Waichi Tsukata' +p187806 +sa(dp187807 +g25273 +S'color woodcut' +p187808 +sg25267 +g27 +sg25275 +S'1960' +p187809 +sg25268 +S'In Memoriam' +p187810 +sg25270 +S'Ansei Uchima' +p187811 +sa(dp187812 +g25273 +S'color woodcut' +p187813 +sg25267 +g27 +sg25275 +S'1960' +p187814 +sg25268 +S"Insects' Concert" +p187815 +sg25270 +S'Ansei Uchima' +p187816 +sa(dp187817 +g25273 +S'color woodcut' +p187818 +sg25267 +g27 +sg25275 +S'1957' +p187819 +sg25268 +S'Lion Dance' +p187820 +sg25270 +S'Ansei Uchima' +p187821 +sa(dp187822 +g25273 +S'color woodcut' +p187823 +sg25267 +g27 +sg25275 +S'1959' +p187824 +sg25268 +S'Mirage' +p187825 +sg25270 +S'Ansei Uchima' +p187826 +sa(dp187827 +g25273 +S'color woodcut' +p187828 +sg25267 +g27 +sg25275 +S'1957' +p187829 +sg25268 +S'Night Lights' +p187830 +sg25270 +S'Ansei Uchima' +p187831 +sa(dp187832 +g25268 +S'Scenes from a Legend' +p187833 +sg25270 +S'Giovanni Larciani (Master of the Kress Landscapes)' +p187834 +sg25273 +S'oil on canvas' +p187835 +sg25275 +S'probably c. 1515/1520' +p187836 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002afe.jpg' +p187837 +sg25267 +g27 +sa(dp187838 +g25268 +S'Florence Leyland' +p187839 +sg25270 +S'James McNeill Whistler' +p187840 +sg25273 +S'etching' +p187841 +sg25275 +S'c. 1873' +p187842 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9d7.jpg' +p187843 +sg25267 +g27 +sa(dp187844 +g25273 +S'color woodcut on japanesse paper' +p187845 +sg25267 +g27 +sg25275 +S'1958' +p187846 +sg25268 +S'Nostalgia in Black' +p187847 +sg25270 +S'Ansei Uchima' +p187848 +sa(dp187849 +g25273 +S'color woodcut' +p187850 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187851 +sg25268 +S'Rondo' +p187852 +sg25270 +S'Ansei Uchima' +p187853 +sa(dp187854 +g25273 +S'color woodcut' +p187855 +sg25267 +g27 +sg25275 +S'1959' +p187856 +sg25268 +S'Song of the Earth' +p187857 +sg25270 +S'Ansei Uchima' +p187858 +sa(dp187859 +g25273 +S'color woodcut' +p187860 +sg25267 +g27 +sg25275 +S'1959' +p187861 +sg25268 +S'Song of the Seashore' +p187862 +sg25270 +S'Ansei Uchima' +p187863 +sa(dp187864 +g25273 +S'color woodcut with embossing' +p187865 +sg25267 +g27 +sg25275 +S'1957' +p187866 +sg25268 +S'Square Room' +p187867 +sg25270 +S'Ansei Uchima' +p187868 +sa(dp187869 +g25273 +S'color woodcut' +p187870 +sg25267 +g27 +sg25275 +S'1957' +p187871 +sg25268 +S'Waltz of the Wind' +p187872 +sg25270 +S'Ansei Uchima' +p187873 +sa(dp187874 +g25273 +S'color woodcut' +p187875 +sg25267 +g27 +sg25275 +S'1959' +p187876 +sg25268 +S'Wind and Butterfly' +p187877 +sg25270 +S'Ansei Uchima' +p187878 +sa(dp187879 +g25273 +S'color woodcut' +p187880 +sg25267 +g27 +sg25275 +S'1959' +p187881 +sg25268 +S'Winter' +p187882 +sg25270 +S'Ansei Uchima' +p187883 +sa(dp187884 +g25273 +S'color woodcut' +p187885 +sg25267 +g27 +sg25275 +S'1957' +p187886 +sg25268 +S'Xylophone' +p187887 +sg25270 +S'Ansei Uchima' +p187888 +sa(dp187889 +g25273 +S'color woodcut' +p187890 +sg25267 +g27 +sg25275 +S'1958' +p187891 +sg25268 +S'Yuku' +p187892 +sg25270 +S'Ansei Uchima' +p187893 +sa(dp187894 +g25273 +S'etched copper plate [cancelled]' +p187895 +sg25267 +g27 +sg25275 +S'1878' +p187896 +sg25268 +S'Saint James Street' +p187897 +sg25270 +S'James McNeill Whistler' +p187898 +sa(dp187899 +g25273 +S'lithograph' +p187900 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187901 +sg25268 +S'Cows and Sheep Going Home' +p187902 +sg25270 +S'Ukai Uchiyama' +p187903 +sa(dp187904 +g25273 +S'lithograph' +p187905 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187906 +sg25268 +S'Fresh Beauty' +p187907 +sg25270 +S'Ukai Uchiyama' +p187908 +sa(dp187909 +g25273 +S'lithograph' +p187910 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187911 +sg25268 +S'Hokkaido' +p187912 +sg25270 +S'Ukai Uchiyama' +p187913 +sa(dp187914 +g25273 +S'lithograph' +p187915 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187916 +sg25268 +S'Kyushu' +p187917 +sg25270 +S'Ukai Uchiyama' +p187918 +sa(dp187919 +g25273 +S'lithograph' +p187920 +sg25267 +g27 +sg25275 +S'unknown date\n' +p187921 +sg25268 +S'Grass' +p187922 +sg25270 +S'Sokyu Ueda' +p187923 +sa(dp187924 +g25268 +S'Landscape with the Rest on the Flight into Egypt' +p187925 +sg25270 +S'Sebastiano de Valentinis' +p187926 +sg25273 +S'etching' +p187927 +sg25275 +S'unknown date\n' +p187928 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c77c.jpg' +p187929 +sg25267 +g27 +sa(dp187930 +g25273 +S'relief etching' +p187931 +sg25267 +g27 +sg25275 +S'1962' +p187932 +sg25268 +S'"A Country Doctor" I' +p187933 +sg25270 +S'Claire Van Vliet' +p187934 +sa(dp187935 +g25273 +S'portfolio with fourteen relief etchings plus titlepage and colophon' +p187936 +sg25267 +g27 +sg25275 +S'published 1962' +p187937 +sg25268 +S'Franz Kafka\'s "A Country Doctor"' +p187938 +sg25270 +S'Claire Van Vliet' +p187939 +sa(dp187940 +g25273 +S'relief etching' +p187941 +sg25267 +g27 +sg25275 +S'1962' +p187942 +sg25268 +S'"A Country Doctor" II' +p187943 +sg25270 +S'Claire Van Vliet' +p187944 +sa(dp187945 +g25273 +S'relief etching' +p187946 +sg25267 +g27 +sg25275 +S'1962' +p187947 +sg25268 +S'"A Country Doctor" III' +p187948 +sg25270 +S'Claire Van Vliet' +p187949 +sa(dp187950 +g25268 +S'St. James Street' +p187951 +sg25270 +S'James McNeill Whistler' +p187952 +sg25273 +S'etching and drypoint' +p187953 +sg25275 +S'1878' +p187954 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab37.jpg' +p187955 +sg25267 +g27 +sa(dp187956 +g25273 +S'relief etching' +p187957 +sg25267 +g27 +sg25275 +S'1962' +p187958 +sg25268 +S'"A Country Doctor" IV' +p187959 +sg25270 +S'Claire Van Vliet' +p187960 +sa(dp187961 +g25273 +S'relief etching' +p187962 +sg25267 +g27 +sg25275 +S'1962' +p187963 +sg25268 +S'"A Country Doctor" V' +p187964 +sg25270 +S'Claire Van Vliet' +p187965 +sa(dp187966 +g25273 +S'relief etching' +p187967 +sg25267 +g27 +sg25275 +S'1962' +p187968 +sg25268 +S'"A Country Doctor" VI' +p187969 +sg25270 +S'Claire Van Vliet' +p187970 +sa(dp187971 +g25273 +S'relief etching' +p187972 +sg25267 +g27 +sg25275 +S'1962' +p187973 +sg25268 +S'"A Country Doctor" VII' +p187974 +sg25270 +S'Claire Van Vliet' +p187975 +sa(dp187976 +g25273 +S'relief etching' +p187977 +sg25267 +g27 +sg25275 +S'1962' +p187978 +sg25268 +S'"A Country Doctor" VIII' +p187979 +sg25270 +S'Claire Van Vliet' +p187980 +sa(dp187981 +g25273 +S'relief etching' +p187982 +sg25267 +g27 +sg25275 +S'1962' +p187983 +sg25268 +S'"A Country Doctor" IX' +p187984 +sg25270 +S'Claire Van Vliet' +p187985 +sa(dp187986 +g25273 +S'relief etching' +p187987 +sg25267 +g27 +sg25275 +S'1962' +p187988 +sg25268 +S'"A Country Doctor" X' +p187989 +sg25270 +S'Claire Van Vliet' +p187990 +sa(dp187991 +g25273 +S'relief etching' +p187992 +sg25267 +g27 +sg25275 +S'1962' +p187993 +sg25268 +S'"A Country Doctor" XI' +p187994 +sg25270 +S'Claire Van Vliet' +p187995 +sa(dp187996 +g25273 +S'relief etching' +p187997 +sg25267 +g27 +sg25275 +S'1962' +p187998 +sg25268 +S'"A Country Doctor" XII' +p187999 +sg25270 +S'Claire Van Vliet' +p188000 +sa(dp188001 +g25273 +S'relief etching' +p188002 +sg25267 +g27 +sg25275 +S'1962' +p188003 +sg25268 +S'"A Country Doctor" XIII' +p188004 +sg25270 +S'Claire Van Vliet' +p188005 +sa(dp188006 +g25273 +S'woodcut block' +p188007 +sg25267 +g27 +sg25275 +S'unknown date\n' +p188008 +sg25268 +S'How to Make a Woodcut' +p188009 +sg25270 +S'Hans Alexander Mueller' +p188010 +sa(dp188011 +g25273 +S'relief etching' +p188012 +sg25267 +g27 +sg25275 +S'1962' +p188013 +sg25268 +S'"A Country Doctor" XIV' +p188014 +sg25270 +S'Claire Van Vliet' +p188015 +sa(dp188016 +g25273 +S'lithograph' +p188017 +sg25267 +g27 +sg25275 +S'1963' +p188018 +sg25268 +S'The Truth about Sancho Panza' +p188019 +sg25270 +S'Claire Van Vliet' +p188020 +sa(dp188021 +g25273 +S'portfolio with ten lithographs with text, plus title page and colophon' +p188022 +sg25267 +g27 +sg25275 +S'published 1963' +p188023 +sg25268 +S'Franz Kafka\'s "Parables and Paradoxes"' +p188024 +sg25270 +S'Claire Van Vliet' +p188025 +sa(dp188026 +g25273 +S'lithograph' +p188027 +sg25267 +g27 +sg25275 +S'1963' +p188028 +sg25268 +S'Mount Sinai' +p188029 +sg25270 +S'Claire Van Vliet' +p188030 +sa(dp188031 +g25273 +S'lithograph' +p188032 +sg25267 +g27 +sg25275 +S'1963' +p188033 +sg25268 +S'The Building of the Temple' +p188034 +sg25270 +S'Claire Van Vliet' +p188035 +sa(dp188036 +g25273 +S'lithograph' +p188037 +sg25267 +g27 +sg25275 +S'1963' +p188038 +sg25268 +S'The Watchman' +p188039 +sg25270 +S'Claire Van Vliet' +p188040 +sa(dp188041 +g25273 +S'lithograph' +p188042 +sg25267 +g27 +sg25275 +S'1963' +p188043 +sg25268 +S'The New Attorney' +p188044 +sg25270 +S'Claire Van Vliet' +p188045 +sa(dp188046 +g25273 +S'lithograph' +p188047 +sg25267 +g27 +sg25275 +S'1963' +p188048 +sg25268 +S'The Green Dragon' +p188049 +sg25270 +S'Claire Van Vliet' +p188050 +sa(dp188051 +g25273 +S'lithograph' +p188052 +sg25267 +g27 +sg25275 +S'1963' +p188053 +sg25268 +S'The Sirens' +p188054 +sg25270 +S'Claire Van Vliet' +p188055 +sa(dp188056 +g25273 +S'lithograph' +p188057 +sg25267 +g27 +sg25275 +S'1963' +p188058 +sg25268 +S'Couriers' +p188059 +sg25270 +S'Claire Van Vliet' +p188060 +sa(dp188061 +g25273 +S'woodcut block' +p188062 +sg25267 +g27 +sg25275 +S'unknown date\n' +p188063 +sg25268 +S'How to Make a Woodcut' +p188064 +sg25270 +S'Hans Alexander Mueller' +p188065 +sa(dp188066 +g25273 +S'lithograph' +p188067 +sg25267 +g27 +sg25275 +S'1963' +p188068 +sg25268 +S'The Imperial Colonel' +p188069 +sg25270 +S'Claire Van Vliet' +p188070 +sa(dp188071 +g25273 +S'lithograph' +p188072 +sg25267 +g27 +sg25275 +S'1963' +p188073 +sg25268 +S'Prometheus' +p188074 +sg25270 +S'Claire Van Vliet' +p188075 +sa(dp188076 +g25273 +S'hand-colored etching and aquatint' +p188077 +sg25267 +g27 +sg25275 +S'1931' +p188078 +sg25268 +S'Broadway and the City Hall, New York, 1819' +p188079 +sg25270 +S'R. Varin' +p188080 +sa(dp188081 +g25273 +S'hand-colored etching and aquatint' +p188082 +sg25267 +g27 +sg25275 +S'1930' +p188083 +sg25268 +S'New York from Brooklyn Heights' +p188084 +sg25270 +S'R. Varin' +p188085 +sa(dp188086 +g25273 +S'Rosenwald Collection' +p188087 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: 16 engravings by De Launay, Aliamet, A. de Saint-Aubin, Masquelier, Le Bas, Choffard, Prevost, and Nee after Castiglione and Sichelbart' +p188088 +sg25268 +S"Les conquetes de l'empereur de Chine" +p188089 +sg25270 +S'Various Artists' +p188090 +sa(dp188091 +g25273 +S'Rosenwald Collection' +p188092 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: engravings by A. Benoist, Blondel, Flipart, Lattre, Le Lorrain, Le Mire, Marvie, Slodtz, and Tardieu' +p188093 +sg25268 +S"Fete publique donnee par ... Paris a l'occasion du mariage de Monseigneur le Dauphin" +p188094 +sg25270 +S'Various Artists' +p188095 +sa(dp188096 +g25273 +S'French, 1838 - 1927' +p188097 +sg25267 +g27 +sg25275 +S'(author)' +p188098 +sg25268 +S'Histoire des peintres impressionistes' +p188099 +sg25270 +S'Artist Information (' +p188100 +sa(dp188101 +g25273 +S'Rosenwald Collection' +p188102 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: 20 etchings by various artists' +p188103 +sg25268 +S'The International Avant-Garde (volume I)' +p188104 +sg25270 +S'Various Artists' +p188105 +sa(dp188106 +g25273 +S'etching' +p188107 +sg25267 +g27 +sg25275 +S'published 1962' +p188108 +sg25268 +S'The International Avant-Garde, No.1' +p188109 +sg25270 +S'Enrico Baj' +p188110 +sa(dp188111 +g25273 +S'etching' +p188112 +sg25267 +g27 +sg25275 +S'published 1962' +p188113 +sg25268 +S'The International Avant-Garde, No.2' +p188114 +sg25270 +S'Gianni Bertini' +p188115 +sa(dp188116 +g25273 +S'woodcut block' +p188117 +sg25267 +g27 +sg25275 +S'unknown date\n' +p188118 +sg25268 +S'How to Make a Woodcut' +p188119 +sg25270 +S'Hans Alexander Mueller' +p188120 +sa(dp188121 +g25273 +S'etching' +p188122 +sg25267 +g27 +sg25275 +S'published 1962' +p188123 +sg25268 +S'The International Avant-Garde, No.3' +p188124 +sg25270 +S'Camille Bryen' +p188125 +sa(dp188126 +g25273 +S'etching' +p188127 +sg25267 +g27 +sg25275 +S'published 1962' +p188128 +sg25268 +S'The International Avant-Garde, No.4' +p188129 +sg25270 +S'Marie Carlier' +p188130 +sa(dp188131 +g25273 +S'etching' +p188132 +sg25267 +g27 +sg25275 +S'published 1962' +p188133 +sg25268 +S'The International Avant-Garde, No.5' +p188134 +sg25270 +S'William Nelson Copley' +p188135 +sa(dp188136 +g25273 +S'etching' +p188137 +sg25267 +g27 +sg25275 +S'published 1962' +p188138 +sg25268 +S'The International Avant-Garde, No.6' +p188139 +sg25270 +S'Corneille' +p188140 +sa(dp188141 +g25273 +S'etching' +p188142 +sg25267 +g27 +sg25275 +S'published 1962' +p188143 +sg25268 +S'The International Avant-Garde, No.7' +p188144 +sg25270 +S'Roberto Crippa' +p188145 +sa(dp188146 +g25273 +S'etching' +p188147 +sg25267 +g27 +sg25275 +S'published 1962' +p188148 +sg25268 +S'The International Avant-Garde, No.8' +p188149 +sg25270 +S'Lucio Del Pezzo' +p188150 +sa(dp188151 +g25273 +S'etching' +p188152 +sg25267 +g27 +sg25275 +S'published 1962' +p188153 +sg25268 +S'The International Avant-Garde, No.9' +p188154 +sg25270 +S'Hisao Domoto' +p188155 +sa(dp188156 +g25273 +S'etching' +p188157 +sg25267 +g27 +sg25275 +S'published 1962' +p188158 +sg25268 +S'The International Avant-Garde, No.10' +p188159 +sg25270 +S'Gudmundur Gudmundsson' +p188160 +sa(dp188161 +g25273 +S'etching' +p188162 +sg25267 +g27 +sg25275 +S'published 1962' +p188163 +sg25268 +S'The International Avant-Garde, No.11' +p188164 +sg25270 +S'Lucio Fontana' +p188165 +sa(dp188166 +g25273 +S'etching' +p188167 +sg25267 +g27 +sg25275 +S'published 1962' +p188168 +sg25268 +S'The International Avant-Garde, No.12' +p188169 +sg25270 +S'Roland Giguere' +p188170 +sa(dp188171 +g25273 +S'woodcut block' +p188172 +sg25267 +g27 +sg25275 +S'unknown date\n' +p188173 +sg25268 +S'How to Make a Woodcut' +p188174 +sg25270 +S'Hans Alexander Mueller' +p188175 +sa(dp188176 +g25273 +S'etching' +p188177 +sg25267 +g27 +sg25275 +S'published 1962' +p188178 +sg25268 +S'The International Avant-Garde, No.13' +p188179 +sg25270 +S'Henri Ginet' +p188180 +sa(dp188181 +g25273 +S'etching' +p188182 +sg25267 +g27 +sg25275 +S'published 1962' +p188183 +sg25268 +S'The International Avant-Garde, No.14' +p188184 +sg25270 +S'Yozo Hamaguchi' +p188185 +sa(dp188186 +g25273 +S'etching' +p188187 +sg25267 +g27 +sg25275 +S'published 1962' +p188188 +sg25268 +S'The International Avant-Garde, No.15' +p188189 +sg25270 +S'Stanley William Hayter' +p188190 +sa(dp188191 +g25273 +S'etching' +p188192 +sg25267 +g27 +sg25275 +S'published 1962' +p188193 +sg25268 +S'The International Avant-Garde, No.16' +p188194 +sg25270 +S'Horst Egon Kalinowski' +p188195 +sa(dp188196 +g25273 +S'etching' +p188197 +sg25267 +g27 +sg25275 +S'published 1962' +p188198 +sg25268 +S'The International Avant-Garde, No.17' +p188199 +sg25270 +S'Jacques Lacomblez' +p188200 +sa(dp188201 +g25273 +S'etching' +p188202 +sg25267 +g27 +sg25275 +S'published 1962' +p188203 +sg25268 +S'The International Avant-Garde, No.18' +p188204 +sg25270 +S'Josaku Maeda' +p188205 +sa(dp188206 +g25273 +S'etching' +p188207 +sg25267 +g27 +sg25275 +S'published 1962' +p188208 +sg25268 +S'The International Avant-Garde, No.19' +p188209 +sg25270 +S'Hans Meyer-Petersen' +p188210 +sa(dp188211 +g25273 +S'etching' +p188212 +sg25267 +g27 +sg25275 +S'published 1962' +p188213 +sg25268 +S'The International Avant-Garde, No.20' +p188214 +sg25270 +S'Jean Tinguely' +p188215 +sa(dp188216 +g25273 +S'Rosenwald Collection' +p188217 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: 20 etchings by various artists' +p188218 +sg25268 +S'The International Avant-Garde (volume II)' +p188219 +sg25270 +S'Various Artists' +p188220 +sa(dp188221 +g25273 +S'etching' +p188222 +sg25267 +g27 +sg25275 +S'published 1962' +p188223 +sg25268 +S'The International Avant-Garde, No.1' +p188224 +sg25270 +S'Pierre Alechinsky' +p188225 +sa(dp188226 +g25273 +S'woodcut [proof state]' +p188227 +sg25267 +g27 +sg25275 +S'unknown date\n' +p188228 +sg25268 +S'How to Make a Woodcut [left]' +p188229 +sg25270 +S'Hans Alexander Mueller' +p188230 +sa(dp188231 +g25273 +S'etching' +p188232 +sg25267 +g27 +sg25275 +S'published 1962' +p188233 +sg25268 +S'The International Avant-Garde, No.2' +p188234 +sg25270 +S'Miriam Bat-Yosef' +p188235 +sa(dp188236 +g25273 +S'etching' +p188237 +sg25267 +g27 +sg25275 +S'published 1962' +p188238 +sg25268 +S'The International Avant-Garde, No.3' +p188239 +sg25270 +S'Gianni Dova' +p188240 +sa(dp188241 +g25273 +S'etching' +p188242 +sg25267 +g27 +sg25275 +S'published 1962' +p188243 +sg25268 +S'The International Avant-Garde, No.4' +p188244 +sg25270 +S'Farfa' +p188245 +sa(dp188246 +g25273 +S'etching' +p188247 +sg25267 +g27 +sg25275 +S'published 1962' +p188248 +sg25268 +S'The International Avant-Garde, No.5' +p188249 +sg25270 +S'Guy Harloff' +p188250 +sa(dp188251 +g25273 +S'etching' +p188252 +sg25267 +g27 +sg25275 +S'published 1962' +p188253 +sg25268 +S'The International Avant-Garde, No.6' +p188254 +sg25270 +S'Philippe Hiquily' +p188255 +sa(dp188256 +g25273 +S'etching' +p188257 +sg25267 +g27 +sg25275 +S'published 1962' +p188258 +sg25268 +S'The International Avant-Garde, No.7' +p188259 +sg25270 +S'Toshimitsu Imai' +p188260 +sa(dp188261 +g25273 +S'etching' +p188262 +sg25267 +g27 +sg25275 +S'published 1962' +p188263 +sg25268 +S'The International Avant-Garde, No.8' +p188264 +sg25270 +S'Jean-Jacques Lebel' +p188265 +sa(dp188266 +g25273 +S'etching' +p188267 +sg25267 +g27 +sg25275 +S'published 1962' +p188268 +sg25268 +S'The International Avant-Garde, No.9' +p188269 +sg25270 +S'Philip Marin' +p188270 +sa(dp188271 +g25273 +S'etching' +p188272 +sg25267 +g27 +sg25275 +S'published 1962' +p188273 +sg25268 +S'The International Avant-Garde, No.10' +p188274 +sg25270 +S'Matta' +p188275 +sa(dp188276 +g25273 +S'etching' +p188277 +sg25267 +g27 +sg25275 +S'published 1962' +p188278 +sg25268 +S'The International Avant-Garde, No.11' +p188279 +sg25270 +S'Bruno Munari' +p188280 +sa(dp188281 +g25273 +S'woodcut [proof state]' +p188282 +sg25267 +g27 +sg25275 +S'unknown date\n' +p188283 +sg25268 +S'How to Make a Woodcut [left]' +p188284 +sg25270 +S'Hans Alexander Mueller' +p188285 +sa(dp188286 +g25273 +S'etching' +p188287 +sg25267 +g27 +sg25275 +S'published 1962' +p188288 +sg25268 +S'The International Avant-Garde, No.12' +p188289 +sg25270 +S'Mimi Parent' +p188290 +sa(dp188291 +g25273 +S'etching' +p188292 +sg25267 +g27 +sg25275 +S'published 1962' +p188293 +sg25268 +S'The International Avant-Garde, No.13' +p188294 +sg25270 +S'Mario Persico' +p188295 +sa(dp188296 +g25273 +S'etching' +p188297 +sg25267 +g27 +sg25275 +S'published 1962' +p188298 +sg25268 +S'The International Avant-Garde, No.14' +p188299 +sg25270 +S'Cesare Peverelli' +p188300 +sa(dp188301 +g25273 +S'etching' +p188302 +sg25267 +g27 +sg25275 +S'published 1962' +p188303 +sg25268 +S'The International Avant-Garde, No.15' +p188304 +sg25270 +S'Carl Fredrik Reutersward' +p188305 +sa(dp188306 +g25273 +S'etching' +p188307 +sg25267 +g27 +sg25275 +S'published 1962' +p188308 +sg25268 +S'The International Avant-Garde, No.16' +p188309 +sg25270 +S'Key Sato' +p188310 +sa(dp188311 +g25273 +S'etching' +p188312 +sg25267 +g27 +sg25275 +S'published 1962' +p188313 +sg25268 +S'The International Avant-Garde, No.17' +p188314 +sg25270 +S'Max Walter Svanberg' +p188315 +sa(dp188316 +g25273 +S'etching' +p188317 +sg25267 +g27 +sg25275 +S'published 1962' +p188318 +sg25268 +S'The International Avant-Garde, No.18' +p188319 +sg25270 +S'Toyen (pseudonym)' +p188320 +sa(dp188321 +g25273 +S'etching' +p188322 +sg25267 +g27 +sg25275 +S'published 1962' +p188323 +sg25268 +S'The International Avant-Garde, No.19' +p188324 +sg25270 +S'Jean-Pierre Vielfaure' +p188325 +sa(dp188326 +g25273 +S'etching' +p188327 +sg25267 +g27 +sg25275 +S'published 1962' +p188328 +sg25268 +S'The International Avant-Garde, No.20' +p188329 +sg25270 +S'Jacques Zimmermann' +p188330 +sa(dp188331 +g25273 +S'Rosenwald Collection' +p188332 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: 20 etchings by various artists' +p188333 +sg25268 +S'The International Avant-Garde (volume III)' +p188334 +sg25270 +S'Various Artists' +p188335 +sa(dp188336 +g25273 +S'engraving on thick paper' +p188337 +sg25267 +g27 +sg25275 +S'1825' +p188338 +sg25268 +S'The Lord Answering Job out of the Whirlwind' +p188339 +sg25270 +S'William Blake' +p188340 +sa(dp188341 +g25273 +S'etching' +p188342 +sg25267 +g27 +sg25275 +S'published 1962' +p188343 +sg25268 +S'The International Avant-Garde, No.1' +p188344 +sg25270 +S'Nobuya Abe' +p188345 +sa(dp188346 +g25273 +S'etching' +p188347 +sg25267 +g27 +sg25275 +S'published 1962' +p188348 +sg25268 +S'The International Avant-Garde, No.2' +p188349 +sg25270 +S'Guido Biasi' +p188350 +sa(dp188351 +g25273 +S'etching' +p188352 +sg25267 +g27 +sg25275 +S'published 1962' +p188353 +sg25268 +S'The International Avant-Garde, No.3' +p188354 +sg25270 +S'Bona' +p188355 +sa(dp188356 +g25273 +S'etching' +p188357 +sg25267 +g27 +sg25275 +S'published 1962' +p188358 +sg25268 +S'The International Avant-Garde, No.4' +p188359 +sg25270 +S'Agustin Cardenas' +p188360 +sa(dp188361 +g25273 +S'etching' +p188362 +sg25267 +g27 +sg25275 +S'published 1962' +p188363 +sg25268 +S'The International Avant-Garde, No.5' +p188364 +sg25270 +S'Chinn Yuen-Yuei' +p188365 +sa(dp188366 +g25273 +S'etching' +p188367 +sg25267 +g27 +sg25275 +S'published 1962' +p188368 +sg25268 +S'The International Avant-Garde, No.6' +p188369 +sg25270 +S'Sergio Dangelo' +p188370 +sa(dp188371 +g25273 +S'etching' +p188372 +sg25267 +g27 +sg25275 +S'published 1962' +p188373 +sg25268 +S'The International Avant-Garde, No.7' +p188374 +sg25270 +S'Oyvind Fahlstrom' +p188375 +sa(dp188376 +g25273 +S'etching' +p188377 +sg25267 +g27 +sg25275 +S'published 1962' +p188378 +sg25268 +S'The International Avant-Garde, No.8' +p188379 +sg25270 +S'Jacques Herold' +p188380 +sa(dp188381 +g25273 +S'etching' +p188382 +sg25267 +g27 +sg25275 +S'published 1962' +p188383 +sg25268 +S'The International Avant-Garde, No.9' +p188384 +sg25270 +S'Juan Carlos Langlois' +p188385 +sa(dp188386 +g25273 +S'etching' +p188387 +sg25267 +g27 +sg25275 +S'published 1962' +p188388 +sg25268 +S'The International Avant-Garde, No.10' +p188389 +sg25270 +S'Edouard Leon Theodore Mesens' +p188390 +sa(dp188391 +g25273 +S'engraving on thick paper' +p188392 +sg25267 +g27 +sg25275 +S'1825' +p188393 +sg25268 +S'The Fall of Satan' +p188394 +sg25270 +S'William Blake' +p188395 +sa(dp188396 +g25273 +S'etching' +p188397 +sg25267 +g27 +sg25275 +S'published 1962' +p188398 +sg25268 +S'The International Avant-Garde, No.11' +p188399 +sg25270 +S'Aleksei Fedorovich Pakhamov' +p188400 +sa(dp188401 +g25273 +S'etching' +p188402 +sg25267 +g27 +sg25275 +S'published 1962' +p188403 +sg25268 +S'The International Avant-Garde, No.12' +p188404 +sg25270 +S'Arnaldo Pomodoro' +p188405 +sa(dp188406 +g25273 +S'etching' +p188407 +sg25267 +g27 +sg25275 +S'published 1962' +p188408 +sg25268 +S'The International Avant-Garde, No.13' +p188409 +sg25270 +S'Bernard Maurice Quentin' +p188410 +sa(dp188411 +g25273 +S'etching' +p188412 +sg25267 +g27 +sg25275 +S'published 1962' +p188413 +sg25268 +S'The International Avant-Garde, No.14' +p188414 +sg25270 +S'Krishna N. Reddy' +p188415 +sa(dp188416 +g25273 +S'etching' +p188417 +sg25267 +g27 +sg25275 +S'published 1962' +p188418 +sg25268 +S'The International Avant-Garde, No.15' +p188419 +sg25270 +S'Paul Jean Revel' +p188420 +sa(dp188421 +g25273 +S'etching' +p188422 +sg25267 +g27 +sg25275 +S'published 1962' +p188423 +sg25268 +S'The International Avant-Garde, No.16' +p188424 +sg25270 +S'Mimmo Rotella' +p188425 +sa(dp188426 +g25273 +S'etching' +p188427 +sg25267 +g27 +sg25275 +S'published 1962' +p188428 +sg25268 +S'The International Avant-Garde, No.17' +p188429 +sg25270 +S'Yasse Tabuchi' +p188430 +sa(dp188431 +g25273 +S'etching' +p188432 +sg25267 +g27 +sg25275 +S'published 1962' +p188433 +sg25268 +S'The International Avant-Garde, No.18' +p188434 +sg25270 +S'Takis' +p188435 +sa(dp188436 +g25273 +S'etching' +p188437 +sg25267 +g27 +sg25275 +S'published 1962' +p188438 +sg25268 +S'The International Avant-Garde, No.19' +p188439 +sg25270 +S'Tancredi' +p188440 +sa(dp188441 +g25273 +S'etching' +p188442 +sg25267 +g27 +sg25275 +S'published 1962' +p188443 +sg25268 +S'The International Avant-Garde, No.20' +p188444 +sg25270 +S'Claude Viseux' +p188445 +sa(dp188446 +g25273 +S'engraving on thick paper' +p188447 +sg25267 +g27 +sg25275 +S'1825' +p188448 +sg25268 +S'The Vision of Christ' +p188449 +sg25270 +S'William Blake' +p188450 +sa(dp188451 +g25273 +S'Rosenwald Collection' +p188452 +sg25267 +g27 +sg25275 +S'\n1 vol: ill: 20 etchings by various artists' +p188453 +sg25268 +S'The International Avant-Garde (volume IV)' +p188454 +sg25270 +S'Various Artists' +p188455 +sa(dp188456 +g25273 +S'etching' +p188457 +sg25267 +g27 +sg25275 +S'published 1962' +p188458 +sg25268 +S'The International Avant-Garde, No.1' +p188459 +sg25270 +S'Tadeusz Alexander Brzozowski' +p188460 +sa(dp188461 +g25273 +S'etching' +p188462 +sg25267 +g27 +sg25275 +S'published 1962' +p188463 +sg25268 +S'The International Avant-Garde, No.2' +p188464 +sg25270 +S'Marcelle Cahn' +p188465 +sa(dp188466 +g25273 +S'etching' +p188467 +sg25267 +g27 +sg25275 +S'published 1962' +p188468 +sg25268 +S'The International Avant-Garde, No.3' +p188469 +sg25270 +S'Giuseppe Capogrossi' +p188470 +sa(dp188471 +g25273 +S'etching' +p188472 +sg25267 +g27 +sg25275 +S'published 1962' +p188473 +sg25268 +S'The International Avant-Garde, No.4' +p188474 +sg25270 +S'Jun Dobashi' +p188475 +sa(dp188476 +g25273 +S'etching' +p188477 +sg25267 +g27 +sg25275 +S'published 1962' +p188478 +sg25268 +S'The International Avant-Garde, No.5' +p188479 +sg25270 +S'Cesar Domela' +p188480 +sa(dp188481 +g25273 +S'etching' +p188482 +sg25267 +g27 +sg25275 +S'published 1962' +p188483 +sg25268 +S'The International Avant-Garde, No.6' +p188484 +sg25270 +S'Leon Ferrari' +p188485 +sa(dp188486 +g25273 +S'etching' +p188487 +sg25267 +g27 +sg25275 +S'published 1962' +p188488 +sg25268 +S'The International Avant-Garde, No.7' +p188489 +sg25270 +S'Johnny Friedlaender' +p188490 +sa(dp188491 +g25273 +S'etching' +p188492 +sg25267 +g27 +sg25275 +S'published 1962' +p188493 +sg25268 +S'The International Avant-Garde, No.8' +p188494 +sg25270 +S'Alberto Gironella' +p188495 +sa(dp188496 +g25273 +S'etching in black on wove paper' +p188497 +sg25267 +g27 +sg25275 +S'published 1962' +p188498 +sg25268 +S'The House Looks at a Burning Man' +p188499 +sg25270 +S'Friedensreich Hundertwasser' +p188500 +sa(dp188501 +g25273 +S'woodcut [proof state]' +p188502 +sg25267 +g27 +sg25275 +S'unknown date\n' +p188503 +sg25268 +S'How to Make a Woodcut [left]' +p188504 +sg25270 +S'Hans Alexander Mueller' +p188505 +sa(dp188506 +g25273 +S'etching' +p188507 +sg25267 +g27 +sg25275 +S'published 1962' +p188508 +sg25268 +S'The International Avant-Garde, No.10' +p188509 +sg25270 +S'Paul Mansourov' +p188510 +sa(dp188511 +g25273 +S'etching' +p188512 +sg25267 +g27 +sg25275 +S'published 1962' +p188513 +sg25268 +S'The International Avant-Garde, No.11' +p188514 +sg25270 +S'Rodolfo Nieto' +p188515 +sa(dp188516 +g25273 +S'etching' +p188517 +sg25267 +g27 +sg25275 +S'published 1962' +p188518 +sg25268 +S'The International Avant-Garde, No.12' +p188519 +sg25270 +S'Gastone Novelli' +p188520 +sa(dp188521 +g25273 +S'etching' +p188522 +sg25267 +g27 +sg25275 +S'published 1962' +p188523 +sg25268 +S'The International Avant-Garde, No.13' +p188524 +sg25270 +S'Achille Perilli' +p188525 +sa(dp188526 +g25273 +S'etching' +p188527 +sg25267 +g27 +sg25275 +S'published 1962' +p188528 +sg25268 +S'The International Avant-Garde, No.14' +p188529 +sg25270 +S'Gio Pomodoro' +p188530 +sa(dp188531 +g25273 +S'etching' +p188532 +sg25267 +g27 +sg25275 +S'published 1962' +p188533 +sg25268 +S'The International Avant-Garde, No.15' +p188534 +sg25270 +S'Emilio Scanavino' +p188535 +sa(dp188536 +g25273 +S'etching' +p188537 +sg25267 +g27 +sg25275 +S'published 1962' +p188538 +sg25268 +S'The International Avant-Garde, No.16' +p188539 +sg25270 +S'Leopold Survage' +p188540 +sa(dp188541 +g25273 +S'etching' +p188542 +sg25267 +g27 +sg25275 +S'published 1962' +p188543 +sg25268 +S'The International Avant-Garde, No.17' +p188544 +sg25270 +S'Jerzy Tchorzewski' +p188545 +sa(dp188546 +g25273 +S'etching' +p188547 +sg25267 +g27 +sg25275 +S'published 1962' +p188548 +sg25268 +S'The International Avant-Garde, No.18' +p188549 +sg25270 +S'Giulio Turcato' +p188550 +sa(dp188551 +g25273 +S'etching' +p188552 +sg25267 +g27 +sg25275 +S'published 1962' +p188553 +sg25268 +S'The International Avant-Garde, No.19' +p188554 +sg25270 +S'Andr\xc3\xa9 Verlon' +p188555 +sa(dp188556 +g25273 +S'woodcut [proof state]' +p188557 +sg25267 +g27 +sg25275 +S'unknown date\n' +p188558 +sg25268 +S'How to Make a Woodcut [left]' +p188559 +sg25270 +S'Hans Alexander Mueller' +p188560 +sa(dp188561 +g25273 +S'etching' +p188562 +sg25267 +g27 +sg25275 +S'published 1962' +p188563 +sg25268 +S'The International Avant-Garde, No.20' +p188564 +sg25270 +S'Enrique Antunez Zanart\xc3\xba' +p188565 +sa(dp188566 +g25273 +S'Rosenwald Collection' +p188567 +sg25267 +g27 +sg25275 +S'\n1 vol: preface by Billy Kluver; 20 etchings, printed in black, some with photoengraving, aquatint, roulette or pencil additions, on Rives BFK paper' +p188568 +sg25268 +S'The International Avant-Garde: America Discovered (volume V)' +p188569 +sg25270 +S'Various Artists' +p188570 +sa(dp188571 +g25273 +S'etching from cut plates, printed in black on wove Rives BFK paper' +p188572 +sg25267 +g27 +sg25275 +S'published 1964' +p188573 +sg25268 +S'Untitled' +p188574 +sg25270 +S'George Brecht' +p188575 +sa(dp188576 +g25273 +S'etching in black on wove Rives BFK paper' +p188577 +sg25267 +g27 +sg25275 +S'1962' +p188578 +sg25268 +S'Untitled' +p188579 +sg25270 +S"Allan D'Arcangelo" +p188580 +sa(dp188581 +g25273 +S'etching in black on wove Rives BFK paper' +p188582 +sg25267 +g27 +sg25275 +S'1962' +p188583 +sg25268 +S'Corner Brace' +p188584 +sg25270 +S'Jim Dine' +p188585 +sa(dp188586 +g25273 +S'photoengraving in black on wove Rives BFK paper' +p188587 +sg25267 +g27 +sg25275 +S'1963' +p188588 +sg25268 +S'Untitled' +p188589 +sg25270 +S'Stephen Durkee' +p188590 +sa(dp188591 +g25273 +S'etching in black with additions in graphite on wove Rives BFK paper' +p188592 +sg25267 +g27 +sg25275 +S'published 1964' +p188593 +sg25268 +S'Untitled' +p188594 +sg25270 +S'Lette Eisenhauer' +p188595 +sa(dp188596 +g25273 +S'etching in black on wove Rives BFK paper' +p188597 +sg25267 +g27 +sg25275 +S'published 1964' +p188598 +sg25268 +S'Untitled' +p188599 +sg25270 +S'Stanley Fisher' +p188600 +sa(dp188601 +g25273 +S'etching' +p188602 +sg25267 +g27 +sg25275 +S'published 1964' +p188603 +sg25268 +S'Untitled' +p188604 +sg25270 +S'Sam Goodman' +p188605 +sa(dp188606 +g25273 +S'etching in black on wove Rives BFK paper' +p188607 +sg25267 +g27 +sg25275 +S'1962' +p188608 +sg25268 +S'Untitled' +p188609 +sg25270 +S'Red Grooms' +p188610 +sa(dp188611 +g25273 +S'woodcut [final state]' +p188612 +sg25267 +g27 +sg25275 +S'unknown date\n' +p188613 +sg25268 +S'How to Make a Woodcut [right]' +p188614 +sg25270 +S'Hans Alexander Mueller' +p188615 +sa(dp188616 +g25273 +S'photoengraving and etching in black on wove Rives BFK paper' +p188617 +sg25267 +g27 +sg25275 +S'1963' +p188618 +sg25268 +S'Err' +p188619 +sg25270 +S'Robert Indiana' +p188620 +sa(dp188621 +g25273 +S'etching in black on wove Rives BFK paper' +p188622 +sg25267 +g27 +sg25275 +S'published 1964' +p188623 +sg25268 +S'Untitled' +p188624 +sg25270 +S'Allan Kaprow' +p188625 +sa(dp188626 +g25273 +S'etching on Rives BFK paper' +p188627 +sg25267 +g27 +sg25275 +S'1962 (published 1964)' +p188628 +sg25268 +S'On' +p188629 +sg25270 +S'Roy Lichtenstein' +p188630 +sa(dp188631 +g25273 +S'etching in black on wove Rives BFK paper' +p188632 +sg25267 +g27 +sg25275 +S'1962' +p188633 +sg25268 +S'Untitled' +p188634 +sg25270 +S'Boris Lurie' +p188635 +sa(dp188636 +g25273 +S'etching and aquatint in black on wove Rives BFK paper' +p188637 +sg25267 +g27 +sg25275 +S'1962' +p188638 +sg25268 +S'Orpheum Sign' +p188639 +sg25270 +S'Claes Oldenburg' +p188640 +sa(dp188641 +g25273 +S'photoengraving and etching in black on wove Rives BFK paper' +p188642 +sg25267 +g27 +sg25275 +S'1962' +p188643 +sg25268 +S'Untitled' +p188644 +sg25270 +S'James Rosenquist' +p188645 +sa(dp188646 +g25273 +S'etching and aquatint in black on wove Rives BFK paper' +p188647 +sg25267 +g27 +sg25275 +S'1962' +p188648 +sg25268 +S'Untitled' +p188649 +sg25270 +S'George Segal' +p188650 +sa(dp188651 +g25273 +S'aquatint and roulette in black on wove Rives BFK paper' +p188652 +sg25267 +g27 +sg25275 +S'published 1964' +p188653 +sg25268 +S'Untitled' +p188654 +sg25270 +S'Richard Peter Stankiewicz' +p188655 +sa(dp188656 +g25273 +S'etching in black on wove Rives BFK paper' +p188657 +sg25267 +g27 +sg25275 +S'published 1964' +p188658 +sg25268 +S'Untitled' +p188659 +sg25270 +S'Wayne Thiebaud' +p188660 +sa(dp188661 +g25273 +S'photoengraved newspaper mat, printed in black on wove Rives BFK paper' +p188662 +sg25267 +g27 +sg25275 +S'1962' +p188663 +sg25268 +S'Cooking Pot' +p188664 +sg25270 +S'Andy Warhol' +p188665 +sa(dp188666 +g25273 +S'engraved copper plate' +p188667 +sg25267 +g27 +sg25275 +S'1827' +p188668 +sg25268 +S"The Circle of the Traitors; Dante's Foot Striking Bocca degli Abbate" +p188669 +sg25270 +S'William Blake' +p188670 +sa(dp188671 +g25273 +S'etching in black on wove Rives BFK paper' +p188672 +sg25267 +g27 +sg25275 +S'1962' +p188673 +sg25268 +S'Untitled' +p188674 +sg25270 +S'Robert Marshall Watts' +p188675 +sa(dp188676 +g25273 +S'etching in black on wove Rives BFK paper' +p188677 +sg25267 +g27 +sg25275 +S'published 1964' +p188678 +sg25268 +S'Untitled' +p188679 +sg25270 +S'Robert Whitman' +p188680 +sa(dp188681 +g25273 +S'color lithograph' +p188682 +sg25267 +g27 +sg25275 +S'1958' +p188683 +sg25268 +S'Interior with Green Plants' +p188684 +sg25270 +S'Alexander Semenovich Verdernikov' +p188685 +sa(dp188686 +g25273 +S'color lithograph' +p188687 +sg25267 +g27 +sg25275 +S'1960' +p188688 +sg25268 +S'Interior with Still-Life' +p188689 +sg25270 +S'Alexander Semenovich Verdernikov' +p188690 +sa(dp188691 +g25273 +S'color lithograph' +p188692 +sg25267 +g27 +sg25275 +S'1960' +p188693 +sg25268 +S'Jug with Flowers' +p188694 +sg25270 +S'Alexander Semenovich Verdernikov' +p188695 +sa(dp188696 +g25273 +S'color lithograph' +p188697 +sg25267 +g27 +sg25275 +S'unknown date\n' +p188698 +sg25268 +S'Still Life with Cactus' +p188699 +sg25270 +S'Alexander Semenovich Verdernikov' +p188700 +sa(dp188701 +g25273 +S'color lithograph' +p188702 +sg25267 +g27 +sg25275 +S'1960' +p188703 +sg25268 +S'Yellow Flowers' +p188704 +sg25270 +S'Alexander Semenovich Verdernikov' +p188705 +sa(dp188706 +g25268 +S'Lithographic Printing House of F. Delpech' +p188707 +sg25270 +S'Carle Vernet' +p188708 +sg25273 +S'lithograph' +p188709 +sg25275 +S'unknown date\n' +p188710 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00065/a000651c.jpg' +p188711 +sg25267 +g27 +sa(dp188712 +g25268 +S'Artilleryman Lighting a Mine' +p188713 +sg25270 +S'Horace Vernet' +p188714 +sg25273 +S'lithograph' +p188715 +sg25275 +S'unknown date\n' +p188716 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091c6.jpg' +p188717 +sg25267 +g27 +sa(dp188718 +g25268 +S'Artist Carrying Easel with a Lithographic Stone' +p188719 +sg25270 +S'Horace Vernet' +p188720 +sg25273 +S'lithograph [trial proof]' +p188721 +sg25275 +S'1818' +p188722 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ea5.jpg' +p188723 +sg25267 +g27 +sa(dp188724 +g25273 +S'engraved copper plate' +p188725 +sg25267 +g27 +sg25275 +S'1827' +p188726 +sg25268 +S'The Circle of the Falsifiers: Dante and Virgil Covering their Noses because of the st' +p188727 +sg25270 +S'William Blake' +p188728 +sa(dp188729 +g25268 +S'Artist Carrying Easel with a Lithographic Stone' +p188730 +sg25270 +S'Horace Vernet' +p188731 +sg25273 +S'lithograph hand-colored with watercolor' +p188732 +sg25275 +S'1818' +p188733 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ea3.jpg' +p188734 +sg25267 +g27 +sa(dp188735 +g25268 +S'Infantry Ambush against the Cosacks' +p188736 +sg25270 +S'Horace Vernet' +p188737 +sg25273 +S'lithograph' +p188738 +sg25275 +S'1818' +p188739 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091c4.jpg' +p188740 +sg25267 +g27 +sa(dp188741 +g25268 +S'Les forcats (The Convicts)' +p188742 +sg25270 +S'Horace Vernet' +p188743 +sg25273 +S'lithograph' +p188744 +sg25275 +S'unknown date\n' +p188745 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e9b.jpg' +p188746 +sg25267 +g27 +sa(dp188747 +g25268 +S"Giovanni de' Medici" +p188748 +sg25270 +S'Enea Vico' +p188749 +sg25273 +S'engraving' +p188750 +sg25275 +S'1550' +p188751 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8c8.jpg' +p188752 +sg25267 +g27 +sa(dp188753 +g25273 +S'drypoint in black on Rives laid paper' +p188754 +sg25267 +g27 +sg25275 +S'1913' +p188755 +sg25268 +S'Portrait E.D. (Eug\xc3\xa8ne Duchamp)' +p188756 +sg25270 +S'Jacques Villon' +p188757 +sa(dp188758 +g25273 +S'etching on Rives BFK paper' +p188759 +sg25267 +g27 +sg25275 +S'1947' +p188760 +sg25268 +S'Portrait of Madame R.' +p188761 +sg25270 +S'Jacques Villon' +p188762 +sa(dp188763 +g25273 +S'woodcut' +p188764 +sg25267 +g27 +sg25275 +S'1914' +p188765 +sg25268 +S'Saint-Adrien' +p188766 +sg25270 +S'Maurice de Vlaminck' +p188767 +sa(dp188768 +g25268 +S'Two Nude Figure Studies' +p188769 +sg25270 +S'Edouard Vuillard' +p188770 +sg25273 +S'charcoal' +p188771 +sg25275 +S'possibly 1900/1905' +p188772 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a0005506.jpg' +p188773 +sg25267 +g27 +sa(dp188774 +g25273 +S'4-Color lithograph' +p188775 +sg25267 +g27 +sg25275 +S'unknown date\n' +p188776 +sg25268 +S'Boy and Bird' +p188777 +sg25270 +S'Kazu Wakita' +p188778 +sa(dp188779 +g25273 +S'woodcut' +p188780 +sg25267 +g27 +sg25275 +S'unknown date\n' +p188781 +sg25268 +S'And Into the Deep, Blue Sea' +p188782 +sg25270 +S'Franklin Chenault Watkins' +p188783 +sa(dp188784 +g25273 +S'engraved copper plate' +p188785 +sg25267 +g27 +sg25275 +S'1827' +p188786 +sg25268 +S'The Circle of the Corrupt Officials; the Devils Tormenting Ciampolo' +p188787 +sg25270 +S'William Blake' +p188788 +sa(dp188789 +g25273 +S'lithograph' +p188790 +sg25267 +g27 +sg25275 +S'1959' +p188791 +sg25268 +S'Hexastichon Bibliopolae' +p188792 +sg25270 +S'June Wayne' +p188793 +sa(dp188794 +g25273 +S'(author)' +p188795 +sg25267 +g27 +sg25275 +S'\n' +p188796 +sg25268 +S'Songs and Sonets' +p188797 +sg25270 +S'Artist Information (' +p188798 +sa(dp188799 +g25273 +S'lithograph' +p188800 +sg25267 +g27 +sg25275 +S'1959' +p188801 +sg25268 +S'The Good-Marrow' +p188802 +sg25270 +S'June Wayne' +p188803 +sa(dp188804 +g25273 +S'lithograph' +p188805 +sg25267 +g27 +sg25275 +S'1959' +p188806 +sg25268 +S'Song' +p188807 +sg25270 +S'June Wayne' +p188808 +sa(dp188809 +g25273 +S'lithograph in black on wove paper' +p188810 +sg25267 +g27 +sg25275 +S'1959' +p188811 +sg25268 +S'The Sunne Rising' +p188812 +sg25270 +S'June Wayne' +p188813 +sa(dp188814 +g25273 +S'lithograph' +p188815 +sg25267 +g27 +sg25275 +S'1959' +p188816 +sg25268 +S'The Canonization' +p188817 +sg25270 +S'June Wayne' +p188818 +sa(dp188819 +g25273 +S'lithograph' +p188820 +sg25267 +g27 +sg25275 +S'1959' +p188821 +sg25268 +S'Breake of Day' +p188822 +sg25270 +S'June Wayne' +p188823 +sa(dp188824 +g25273 +S'lithograph' +p188825 +sg25267 +g27 +sg25275 +S'1959' +p188826 +sg25268 +S'The Anniversarie' +p188827 +sg25270 +S'June Wayne' +p188828 +sa(dp188829 +g25273 +S'lithograph' +p188830 +sg25267 +g27 +sg25275 +S'1959' +p188831 +sg25268 +S'Twicknam Garden' +p188832 +sg25270 +S'June Wayne' +p188833 +sa(dp188834 +g25273 +S'lithograph' +p188835 +sg25267 +g27 +sg25275 +S'1959' +p188836 +sg25268 +S'A Valediction: Of Weeping' +p188837 +sg25270 +S'June Wayne' +p188838 +sa(dp188839 +g25273 +S'engraved copper plate' +p188840 +sg25267 +g27 +sg25275 +S'1827' +p188841 +sg25268 +S'The Circle of the Thieves; Buoso Donati Attacked by the Serpent' +p188842 +sg25270 +S'William Blake' +p188843 +sa(dp188844 +g25273 +S'lithograph' +p188845 +sg25267 +g27 +sg25275 +S'1959' +p188846 +sg25268 +S'The Baite' +p188847 +sg25270 +S'June Wayne' +p188848 +sa(dp188849 +g25273 +S'lithograph' +p188850 +sg25267 +g27 +sg25275 +S'1959' +p188851 +sg25268 +S'The Apparition' +p188852 +sg25270 +S'June Wayne' +p188853 +sa(dp188854 +g25273 +S'lithograph in black on wove paper' +p188855 +sg25267 +g27 +sg25275 +S'1959' +p188856 +sg25268 +S'A Valediction: Forbidding Mourning' +p188857 +sg25270 +S'June Wayne' +p188858 +sa(dp188859 +g25273 +S'lithograph' +p188860 +sg25267 +g27 +sg25275 +S'1959' +p188861 +sg25268 +S'The Funerall' +p188862 +sg25270 +S'June Wayne' +p188863 +sa(dp188864 +g25273 +S'lithograph' +p188865 +sg25267 +g27 +sg25275 +S'1959' +p188866 +sg25268 +S'The Extasie' +p188867 +sg25270 +S'June Wayne' +p188868 +sa(dp188869 +g25273 +S'lithograph' +p188870 +sg25267 +g27 +sg25275 +S'1959' +p188871 +sg25268 +S'The Relique' +p188872 +sg25270 +S'June Wayne' +p188873 +sa(dp188874 +g25273 +S'lithograph' +p188875 +sg25267 +g27 +sg25275 +S'1959' +p188876 +sg25268 +S'The Apparition' +p188877 +sg25270 +S'June Wayne' +p188878 +sa(dp188879 +g25273 +S'lithograph' +p188880 +sg25267 +g27 +sg25275 +S'1959' +p188881 +sg25268 +S'A Valediction: Forbidding Mourning' +p188882 +sg25270 +S'June Wayne' +p188883 +sa(dp188884 +g25273 +S'lithograph' +p188885 +sg25267 +g27 +sg25275 +S'1958' +p188886 +sg25268 +S'The Sunne Rising II' +p188887 +sg25270 +S'June Wayne' +p188888 +sa(dp188889 +g25273 +S'lithograph' +p188890 +sg25267 +g27 +sg25275 +S'1959' +p188891 +sg25268 +S'The Apparition' +p188892 +sg25270 +S'June Wayne' +p188893 +sa(dp188894 +g25273 +S'engraved copper plate' +p188895 +sg25267 +g27 +sg25275 +S'1827' +p188896 +sg25268 +S'The Circle of the Thieves; Agnolo Brunelleschi Attacked by a Six-Footed Serpent' +p188897 +sg25270 +S'William Blake' +p188898 +sa(dp188899 +g25273 +S'lithograph' +p188900 +sg25267 +g27 +sg25275 +S'1959' +p188901 +sg25268 +S'The Apparition' +p188902 +sg25270 +S'June Wayne' +p188903 +sa(dp188904 +g25273 +S'lithograph' +p188905 +sg25267 +g27 +sg25275 +S'1959' +p188906 +sg25268 +S'A Valediction: Forbidding Mourning' +p188907 +sg25270 +S'June Wayne' +p188908 +sa(dp188909 +g25268 +S'Mirror' +p188910 +sg25270 +S'Max Weber' +p188911 +sg25273 +S'lithograph (zinc) on Rives paper [1957 impression]' +p188912 +sg25275 +S'1928' +p188913 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bd0.jpg' +p188914 +sg25267 +g27 +sa(dp188915 +g25273 +S'etching and (aquatint?) on Rives paper' +p188916 +sg25267 +g27 +sg25275 +S'1963' +p188917 +sg25268 +S'Copper Beech' +p188918 +sg25270 +S'Charles Arthur Wells, Jr.' +p188919 +sa(dp188920 +g25273 +S'etching and aquatint on Rives paper' +p188921 +sg25267 +g27 +sg25275 +S'unknown date\n' +p188922 +sg25268 +S'Family Group' +p188923 +sg25270 +S'Charles Arthur Wells, Jr.' +p188924 +sa(dp188925 +g25273 +S'1 vol: 13 etchings including colophon plus title page' +p188926 +sg25267 +g27 +sg25275 +S'published 1962' +p188927 +sg25268 +S'Shells' +p188928 +sg25270 +S'Charles Arthur Wells, Jr.' +p188929 +sa(dp188930 +g25273 +S'etching in dark brown' +p188931 +sg25267 +g27 +sg25275 +S'published 1962' +p188932 +sg25268 +S'Murex tenuispina' +p188933 +sg25270 +S'Charles Arthur Wells, Jr.' +p188934 +sa(dp188935 +g25273 +S'etching in olive green' +p188936 +sg25267 +g27 +sg25275 +S'published 1962' +p188937 +sg25268 +S'Spondylus dominicensis' +p188938 +sg25270 +S'Charles Arthur Wells, Jr.' +p188939 +sa(dp188940 +g25273 +S'etching' +p188941 +sg25267 +g27 +sg25275 +S'published 1962' +p188942 +sg25268 +S'Voluta nauseum' +p188943 +sg25270 +S'Charles Arthur Wells, Jr.' +p188944 +sa(dp188945 +g25273 +S'etching' +p188946 +sg25267 +g27 +sg25275 +S'published 1962' +p188947 +sg25268 +S'Murex brassica' +p188948 +sg25270 +S'Charles Arthur Wells, Jr.' +p188949 +sa(dp188950 +g25268 +S'Portrait of a Man with an Arrow' +p188951 +sg25270 +S'Hans Memling' +p188952 +sg25273 +S'oil on panel' +p188953 +sg25275 +S'c. 1470/1475' +p188954 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000058a.jpg' +p188955 +sg25267 +g27 +sa(dp188956 +g25273 +S'engraved copper plate' +p188957 +sg25267 +g27 +sg25275 +S'1827' +p188958 +sg25268 +S'The Circle of the Corrupt Officials; the Devils Mauling Each Other' +p188959 +sg25270 +S'William Blake' +p188960 +sa(dp188961 +g25273 +S'etching' +p188962 +sg25267 +g27 +sg25275 +S'published 1962' +p188963 +sg25268 +S'Pterocera rugosa' +p188964 +sg25270 +S'Charles Arthur Wells, Jr.' +p188965 +sa(dp188966 +g25273 +S'etching' +p188967 +sg25267 +g27 +sg25275 +S'published 1962' +p188968 +sg25268 +S'Murex denudatus' +p188969 +sg25270 +S'Charles Arthur Wells, Jr.' +p188970 +sa(dp188971 +g25273 +S'etching' +p188972 +sg25267 +g27 +sg25275 +S'published 1962' +p188973 +sg25268 +S'Lambis elongata' +p188974 +sg25270 +S'Charles Arthur Wells, Jr.' +p188975 +sa(dp188976 +g25273 +S'etching in olive green' +p188977 +sg25267 +g27 +sg25275 +S'published 1962' +p188978 +sg25268 +S'Murex tenuispina' +p188979 +sg25270 +S'Charles Arthur Wells, Jr.' +p188980 +sa(dp188981 +g25273 +S'etching' +p188982 +sg25267 +g27 +sg25275 +S'published 1962' +p188983 +sg25268 +S'Lambis elongata' +p188984 +sg25270 +S'Charles Arthur Wells, Jr.' +p188985 +sa(dp188986 +g25273 +S'etching' +p188987 +sg25267 +g27 +sg25275 +S'published 1962' +p188988 +sg25268 +S'Murex denudatus' +p188989 +sg25270 +S'Charles Arthur Wells, Jr.' +p188990 +sa(dp188991 +g25273 +S'etching in olive green' +p188992 +sg25267 +g27 +sg25275 +S'published 1962' +p188993 +sg25268 +S'Pterocera rugosa' +p188994 +sg25270 +S'Charles Arthur Wells, Jr.' +p188995 +sa(dp188996 +g25273 +S'etching' +p188997 +sg25267 +g27 +sg25275 +S'published 1962' +p188998 +sg25268 +S'Volutilithes spinosus' +p188999 +sg25270 +S'Charles Arthur Wells, Jr.' +p189000 +sa(dp189001 +g25273 +S'etching' +p189002 +sg25267 +g27 +sg25275 +S'published 1962' +p189003 +sg25268 +S'Colophon: Bee' +p189004 +sg25270 +S'Charles Arthur Wells, Jr.' +p189005 +sa(dp189006 +g25273 +S'lithograph' +p189007 +sg25267 +g27 +sg25275 +S'1958' +p189008 +sg25268 +S'Down East' +p189009 +sg25270 +S'Stow Wengenroth' +p189010 +sa(dp189011 +g25273 +S'engraved copper plate' +p189012 +sg25267 +g27 +sg25275 +S'1827' +p189013 +sg25268 +S'The Circle of the Lustful: Paolo and Francesca' +p189014 +sg25270 +S'William Blake' +p189015 +sa(dp189016 +g25273 +S'lithograph' +p189017 +sg25267 +g27 +sg25275 +S'1959' +p189018 +sg25268 +S'Lower Fifth Avenue' +p189019 +sg25270 +S'Stow Wengenroth' +p189020 +sa(dp189021 +g25273 +S'color lithograph' +p189022 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189023 +sg25268 +S'Untitled' +p189024 +sg25270 +S'Hiram Williams' +p189025 +sa(dp189026 +g25273 +S'screenprint' +p189027 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189028 +sg25268 +S'Self-Portrait' +p189029 +sg25270 +S'Ben Wolf' +p189030 +sa(dp189031 +g25273 +S'color lithograph' +p189032 +sg25267 +g27 +sg25275 +S'1957' +p189033 +sg25268 +S'Dahlias' +p189034 +sg25270 +S'Alexandra Nikolaevna Yacobson' +p189035 +sa(dp189036 +g25273 +S'4-Color lithograph' +p189037 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189038 +sg25268 +S'Uta' +p189039 +sg25270 +S'Gen Yamaguchi' +p189040 +sa(dp189041 +g25273 +S'4-color lithograph' +p189042 +sg25267 +g27 +sg25275 +S'1960' +p189043 +sg25268 +S'Impression from India' +p189044 +sg25270 +S'Chizuko Yoshida' +p189045 +sa(dp189046 +g25273 +S'lithograph' +p189047 +sg25267 +g27 +sg25275 +S'1960' +p189048 +sg25268 +S'Earth' +p189049 +sg25270 +S'Hodaka Yoshida' +p189050 +sa(dp189051 +g25273 +S'4-color lithograph' +p189052 +sg25267 +g27 +sg25275 +S'1960' +p189053 +sg25268 +S'Kizashi' +p189054 +sg25270 +S'Hodaka Yoshida' +p189055 +sa(dp189056 +g25273 +S'lithograph' +p189057 +sg25267 +g27 +sg25275 +S'1960' +p189058 +sg25268 +S'Infinity' +p189059 +sg25270 +S'Masaji Yoshida' +p189060 +sa(dp189061 +g25273 +S'lithograph' +p189062 +sg25267 +g27 +sg25275 +S'1960' +p189063 +sg25268 +S'Nebulae' +p189064 +sg25270 +S'Toshi Yoshida' +p189065 +sa(dp189066 +g25273 +S'(artist after)' +p189067 +sg25267 +g27 +sg25275 +S'\n' +p189068 +sg25268 +S'William Blake' +p189069 +sg25270 +S'Artist Information (' +p189070 +sa(dp189071 +g25273 +S'lithograph' +p189072 +sg25267 +g27 +sg25275 +S'1961' +p189073 +sg25268 +S'Somewhere' +p189074 +sg25270 +S'Toshi Yoshida' +p189075 +sa(dp189076 +g25273 +S'2-color lithograph' +p189077 +sg25267 +g27 +sg25275 +S'1960' +p189078 +sg25268 +S'Flowing Flags' +p189079 +sg25270 +S'Rei Yuki' +p189080 +sa(dp189081 +g25268 +S'The Annunciation' +p189082 +sg25270 +S'Heinrich Aldegrever' +p189083 +sg25273 +S'engraving' +p189084 +sg25275 +S'1553' +p189085 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a691.jpg' +p189086 +sg25267 +g27 +sa(dp189087 +g25268 +S'The Nativity' +p189088 +sg25270 +S'Heinrich Aldegrever' +p189089 +sg25273 +S'pen and black ink with gray wash' +p189090 +sg25275 +S'1552' +p189091 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007944.jpg' +p189092 +sg25267 +g27 +sa(dp189093 +g25268 +S'The Nativity' +p189094 +sg25270 +S'Heinrich Aldegrever' +p189095 +sg25273 +S'engraving' +p189096 +sg25275 +S'1553' +p189097 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a690.jpg' +p189098 +sg25267 +g27 +sa(dp189099 +g25273 +S'Rosenwald Collection' +p189100 +sg25267 +g27 +sg25275 +S'\nwood engraving block' +p189101 +sg25268 +S'A Confederate Officer and His Aides Fired Upon by Union Pickets' +p189102 +sg25270 +S'American 19th Century' +p189103 +sa(dp189104 +g25273 +S'Rosenwald Collection' +p189105 +sg25267 +g27 +sg25275 +S'\nwood engraving block' +p189106 +sg25268 +S'Union Soldiers Cutting Down the Woods at Arlington Heights' +p189107 +sg25270 +S'American 19th Century' +p189108 +sa(dp189109 +g25268 +S"A View from an East Window in the Old Sugar House, No.3 Norris' Alley, Philadelphia" +p189110 +sg25270 +S'American 19th Century' +p189111 +sg25273 +S'sheet: 8 ? 12.2 cm (3 1/8 ? 4 13/16 in.)' +p189112 +sg25275 +S'\npen and ink with watercolor on paperboard' +p189113 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0a3.jpg' +p189114 +sg25267 +g27 +sa(dp189115 +g25268 +S'Parading Knights in Oriental Costume' +p189116 +sg25270 +S'German 16th Century' +p189117 +sg25273 +S'image: 23.5 x 23.5 cm (9 1/4 x 9 1/4 in.)\r\nsheet: 33.8 x 26.3 cm (13 5/16 x 10 3/8 in.)' +p189118 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p189119 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00033/a00033d8.jpg' +p189120 +sg25267 +g27 +sa(dp189121 +g25268 +S'Court Amusements with Two Monkeys' +p189122 +sg25270 +S'German 16th Century' +p189123 +sg25273 +S'image: 23 x 23.3 cm (9 1/16 x 9 3/16 in.)\r\nsheet: 33.7 x 26.3 cm (13 1/4 x 10 3/8 in.)' +p189124 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p189125 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00033/a00033d9.jpg' +p189126 +sg25267 +g27 +sa(dp189127 +g25273 +S'(artist after)' +p189128 +sg25267 +g27 +sg25275 +S'\n' +p189129 +sg25268 +S'The Skeleton Re-animated' +p189130 +sg25270 +S'Artist Information (' +p189131 +sa(dp189132 +g25268 +S'Outdoor Games' +p189133 +sg25270 +S'German 16th Century' +p189134 +sg25273 +S'image: 23.3 x 23.7 cm (9 3/16 x 9 5/16 in.)\r\nsheet: 33.7 x 27 cm (13 1/4 x 10 5/8 in.)' +p189135 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p189136 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00033/a00033da.jpg' +p189137 +sg25267 +g27 +sa(dp189138 +g25268 +S'Three Men in Red Capes Dancing with Their Partners' +p189139 +sg25270 +S'German 16th Century' +p189140 +sg25273 +S'image: 23.3 cm (9 3/16 in.)\r\nsheet: 33.7 x 27 cm (13 1/4 x 10 5/8 in.)' +p189141 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p189142 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007987.jpg' +p189143 +sg25267 +g27 +sa(dp189144 +g25268 +S'Procession of Knights Viewed by Ladies on a Balcony' +p189145 +sg25270 +S'German 16th Century' +p189146 +sg25273 +S'image: 23.2 cm (9 1/8 in.)\r\nsheet: 33.6 x 27 cm (13 1/4 x 10 5/8 in.)' +p189147 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p189148 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007988.jpg' +p189149 +sg25267 +g27 +sa(dp189150 +g25268 +S'Two Dancing Couples Led by Torch-bearing Knights' +p189151 +sg25270 +S'German 16th Century' +p189152 +sg25273 +S'image: 23.2 x 23.7 cm (9 1/8 x 9 5/16 in.)\r\nsheet: 33 x 26.1 cm (13 x 10 1/4 in.)' +p189153 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p189154 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00033/a00033db.jpg' +p189155 +sg25267 +g27 +sa(dp189156 +g25268 +S'Three Dancing Couples Led by Two Knights in Room with Column' +p189157 +sg25270 +S'German 16th Century' +p189158 +sg25273 +S'image: 23.3 cm (9 3/16 in.)\r\nsheet: 34 x 26.4 cm (13 3/8 x 10 3/8 in.)' +p189159 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p189160 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007985.jpg' +p189161 +sg25267 +g27 +sa(dp189162 +g25268 +S'Three Couples in a Circle Dance' +p189163 +sg25270 +S'German 16th Century' +p189164 +sg25273 +S'image: 23.2 x 23.8 cm (9 1/8 x 9 3/8 in.)\r\nsheet: 33.7 x 26.4 cm (13 1/4 x 10 3/8 in.)' +p189165 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p189166 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00033/a00033dc.jpg' +p189167 +sg25267 +g27 +sa(dp189168 +g25268 +S'Seven Men in Red Gathered in a Circle' +p189169 +sg25270 +S'German 16th Century' +p189170 +sg25273 +S'image: 23 cm (9 1/16 in.)\r\nsheet: 34 x 26.3 cm (13 3/8 x 10 3/8 in.)' +p189171 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p189172 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007984.jpg' +p189173 +sg25267 +g27 +sa(dp189174 +g25268 +S'Men in Red, White and Blue Dancing with Their Partners' +p189175 +sg25270 +S'German 16th Century' +p189176 +sg25273 +S'image: 23.4 cm (9 3/16 in.)\r\nsheet: 33 x 26.4 cm (13 x 10 3/8 in.)' +p189177 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p189178 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007986.jpg' +p189179 +sg25267 +g27 +sa(dp189180 +g25273 +S'color lithograph' +p189181 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189182 +sg25268 +S'Pitcher of Flowers' +p189183 +sg25270 +S'Guy Bardone' +p189184 +sa(dp189185 +g25273 +S'woodcut' +p189186 +sg25267 +g27 +sg25275 +S'1956' +p189187 +sg25268 +S'Children and Still Life' +p189188 +sg25270 +S'Leonard Baskin' +p189189 +sa(dp189190 +g25273 +S'(artist after)' +p189191 +sg25267 +g27 +sg25275 +S'\n' +p189192 +sg25268 +S'Christ descending into the Grave' +p189193 +sg25270 +S'Artist Information (' +p189194 +sa(dp189195 +g25273 +S'woodcut' +p189196 +sg25267 +g27 +sg25275 +S'1956' +p189197 +sg25268 +S'Children and Still Life' +p189198 +sg25270 +S'Leonard Baskin' +p189199 +sa(dp189200 +g25273 +S'wood engraving' +p189201 +sg25267 +g27 +sg25275 +S'1958' +p189202 +sg25268 +S'Tobias and the Angel' +p189203 +sg25270 +S'Leonard Baskin' +p189204 +sa(dp189205 +g25273 +S'color aquatint' +p189206 +sg25267 +g27 +sg25275 +S'1953' +p189207 +sg25268 +S'Black Swans' +p189208 +sg25270 +S'Maurice R. Bebb' +p189209 +sa(dp189210 +g25268 +S'The Cigarette' +p189211 +sg25270 +S'George Bellows' +p189212 +sg25273 +S'lithograph on Japanese vellum' +p189213 +sg25275 +S'1918' +p189214 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000bd/a000bdce.jpg' +p189215 +sg25267 +g27 +sa(dp189216 +g25273 +S'watercolor on wove paper' +p189217 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189218 +sg25268 +S'Circus' +p189219 +sg25270 +S'Alfred Bendiner' +p189220 +sa(dp189221 +g25268 +S'Unknown subject (Let Him look up into the Heaven and laugh in the bright air)' +p189222 +sg25270 +S'William Blake' +p189223 +sg25273 +S'engraving and relief-etching (with some aquatint?)//printed in reverse of 1943.3.8974' +p189224 +sg25275 +S'possibly c. 1805' +p189225 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076df.jpg' +p189226 +sg25267 +g27 +sa(dp189227 +g25273 +S'color woodcut' +p189228 +sg25267 +g27 +sg25275 +S'1959' +p189229 +sg25268 +S'Southward' +p189230 +sg25270 +S'Mortimer Borne' +p189231 +sa(dp189232 +g25273 +S'etching' +p189233 +sg25267 +g27 +sg25275 +S'1953' +p189234 +sg25268 +S'Road to Bodega' +p189235 +sg25270 +S'Cornelis Botke' +p189236 +sa(dp189237 +g25273 +S'lithograph' +p189238 +sg25267 +g27 +sg25275 +S'1953' +p189239 +sg25268 +S'Summer Benediction' +p189240 +sg25270 +S'Charles Burchfield' +p189241 +sa(dp189242 +g25273 +S'drypoint' +p189243 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189244 +sg25268 +S'The Hunter' +p189245 +sg25270 +S'Charles William Cain' +p189246 +sa(dp189247 +g25273 +S'(artist after)' +p189248 +sg25267 +g27 +sg25275 +S'\n' +p189249 +sg25268 +S'The meeting of a Family in Heaven' +p189250 +sg25270 +S'Artist Information (' +p189251 +sa(dp189252 +g25268 +S'The Ballet Master (Le ma\xc3\xaetre de ballet)' +p189253 +sg25270 +S'Artist Information (' +p189254 +sg25273 +S'(artist)' +p189255 +sg25275 +S'\n' +p189256 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f18.jpg' +p189257 +sg25267 +g27 +sa(dp189258 +g25268 +S"L'heureuse f\xc3\xa9condit\xc3\xa9" +p189259 +sg25270 +S'Artist Information (' +p189260 +sg25273 +S'(artist after)' +p189261 +sg25275 +S'\n' +p189262 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e78.jpg' +p189263 +sg25267 +g27 +sa(dp189264 +g25273 +S'wood engraving' +p189265 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189266 +sg25268 +S'Railway Station, Northern Ireland' +p189267 +sg25270 +S'John H. De Pol' +p189268 +sa(dp189269 +g25273 +S'etching' +p189270 +sg25267 +g27 +sg25275 +S'1950' +p189271 +sg25268 +S'Saint Paul' +p189272 +sg25270 +S'Frederick Arnold Dirnfeld' +p189273 +sa(dp189274 +g25273 +S'wood engraving block' +p189275 +sg25267 +g27 +sg25275 +S'1955' +p189276 +sg25268 +S'The First Seven Days' +p189277 +sg25270 +S'Fritz Eichenberg' +p189278 +sa(dp189279 +g25268 +S'Bath House' +p189280 +sg25270 +S'Albrecht D\xc3\xbcrer' +p189281 +sg25273 +S'woodcut' +p189282 +sg25275 +S'c. 1496/1497' +p189283 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b24e.jpg' +p189284 +sg25267 +g27 +sa(dp189285 +g25268 +S'Samson Fighting with the Lion' +p189286 +sg25270 +S'Albrecht D\xc3\xbcrer' +p189287 +sg25273 +S'woodcut' +p189288 +sg25275 +S'c. 1497/1498' +p189289 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0cb.jpg' +p189290 +sg25267 +g27 +sa(dp189291 +g25273 +S'wood engraving' +p189292 +sg25267 +g27 +sg25275 +S'1955' +p189293 +sg25268 +S'The First Seven Days' +p189294 +sg25270 +S'Fritz Eichenberg' +p189295 +sa(dp189296 +g25268 +S'The Martyrdom of Saint Catherine' +p189297 +sg25270 +S'Albrecht D\xc3\xbcrer' +p189298 +sg25273 +S'woodcut' +p189299 +sg25275 +S'c. 1497/1499' +p189300 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005c/a0005cc8.jpg' +p189301 +sg25267 +g27 +sa(dp189302 +g25273 +S'(artist after)' +p189303 +sg25267 +g27 +sg25275 +S'\n' +p189304 +sg25268 +S'The Counseller [sic], King, Warrior, Mother &Child;, in the Tomb' +p189305 +sg25270 +S'Artist Information (' +p189306 +sa(dp189307 +g25273 +S'brush and black ink with black and gray wash' +p189308 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189309 +sg25268 +S'Woman with a Broom' +p189310 +sg25270 +S'Charlotte Erickson' +p189311 +sa(dp189312 +g25273 +S'lithograph' +p189313 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189314 +sg25268 +S'Night Scene' +p189315 +sg25270 +S'Richard A. Florsheim' +p189316 +sa(dp189317 +g25268 +S'Animal Studies' +p189318 +sg25270 +S'Paul Gauguin' +p189319 +sg25273 +S'traced monotype in black on thin laid paper' +p189320 +sg25275 +S'1901/1902' +p189321 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a86.jpg' +p189322 +sg25267 +g27 +sa(dp189323 +g25268 +S'Tahitian Shore [recto]' +p189324 +sg25270 +S'Paul Gauguin' +p189325 +sg25273 +S'traced monotype in warm black and brown on off-white wove paper' +p189326 +sg25275 +S'c. 1900' +p189327 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00015/a000155e.jpg' +p189328 +sg25267 +g27 +sa(dp189329 +g25268 +S'Tahitian Shore [verso]' +p189330 +sg25270 +S'Paul Gauguin' +p189331 +sg25273 +S'pencil, blue pencil and (brown wash?)' +p189332 +sg25275 +S'c. 1900' +p189333 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00022/a0002239.jpg' +p189334 +sg25267 +g27 +sa(dp189335 +g25268 +S'Three Tahitians (Study for "La soeur de charite")' +p189336 +sg25270 +S'Paul Gauguin' +p189337 +sg25273 +S'traced monotype in black, squared in pencil on wove paper' +p189338 +sg25275 +S'1899/1902' +p189339 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000997f.jpg' +p189340 +sg25267 +g27 +sa(dp189341 +g25268 +S'Two Marquesans [recto]' +p189342 +sg25270 +S'Paul Gauguin' +p189343 +sg25273 +S'traced monotype in warm black retouched slightly with an olive pigment' +p189344 +sg25275 +S'c. 1902' +p189345 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00022/a0002241.jpg' +p189346 +sg25267 +g27 +sa(dp189347 +g25268 +S'Two Marquesans [verso]' +p189348 +sg25270 +S'Paul Gauguin' +p189349 +sg25273 +S'pencil and crayon' +p189350 +sg25275 +S'c. 1902' +p189351 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00022/a0002242.jpg' +p189352 +sg25267 +g27 +sa(dp189353 +g25273 +S'color lithograph' +p189354 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189355 +sg25268 +S'Still Life' +p189356 +sg25270 +S'Ren\xc3\xa9 Genis' +p189357 +sa(dp189358 +g25268 +S'Two Figures' +p189359 +sg25270 +S'Girolamo da Carpi' +p189360 +sg25273 +S'pen and brown ink on laid paper' +p189361 +sg25275 +S'unknown date\n' +p189362 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00075/a0007502.jpg' +p189363 +sg25267 +g27 +sa(dp189364 +g25273 +S'(artist after)' +p189365 +sg25267 +g27 +sg25275 +S'\n' +p189366 +sg25268 +S'Death of the Strong Wicked Man' +p189367 +sg25270 +S'Artist Information (' +p189368 +sa(dp189369 +g25268 +S'Self-Portrait' +p189370 +sg25270 +S'Hubert Fran\xc3\xa7ois Gravelot' +p189371 +sg25273 +S'graphite on laid paper' +p189372 +sg25275 +S'1730/1750' +p189373 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ede.jpg' +p189374 +sg25267 +g27 +sa(dp189375 +g25273 +S'wood engraving' +p189376 +sg25267 +g27 +sg25275 +S'1949' +p189377 +sg25268 +S'Old Marblehead' +p189378 +sg25270 +S'Shirley Thomson Hadley' +p189379 +sa(dp189380 +g25273 +S'ink, gouache, pastel, and varnish? on paper mounted on a poster for Galerie 8, rue St. Julien, Le Pauvre' +p189381 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189382 +sg25268 +S'Composition II, Dark' +p189383 +sg25270 +S'Simon Hanta\xc3\xaf' +p189384 +sa(dp189385 +g25273 +S'gouache and ink?' +p189386 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189387 +sg25268 +S'Composition III, Dark' +p189388 +sg25270 +S'Simon Hanta\xc3\xaf' +p189389 +sa(dp189390 +g25273 +S'ink and gouache over a reproduction?' +p189391 +sg25267 +g27 +sg25275 +S'1950' +p189392 +sg25268 +S'Composition, Green' +p189393 +sg25270 +S'Simon Hanta\xc3\xaf' +p189394 +sa(dp189395 +g25268 +S'The Blenheim, Leaving the Star Hotel, Oxford' +p189396 +sg25270 +S'Artist Information (' +p189397 +sg25273 +S'(artist after)' +p189398 +sg25275 +S'\n' +p189399 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007aa1.jpg' +p189400 +sg25267 +g27 +sa(dp189401 +g25273 +S'etching' +p189402 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189403 +sg25268 +S'Suwannee River' +p189404 +sg25270 +S'Polly Knipp Hill' +p189405 +sa(dp189406 +g25273 +S'pen and brown ink with watercolor over graphite' +p189407 +sg25267 +g27 +sg25275 +S'1942' +p189408 +sg25268 +S'On the Thames, above Richmond' +p189409 +sg25270 +S'Arthur Mayger Hind' +p189410 +sa(dp189411 +g25268 +S'Bird on a Tree' +p189412 +sg25270 +S'Hiroshige' +p189413 +sg25273 +S'color woodcut' +p189414 +sg25275 +S'unknown date\n' +p189415 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00050/a00050e0.jpg' +p189416 +sg25267 +g27 +sa(dp189417 +g25268 +S'Ye Olde Curiosity Shop' +p189418 +sg25270 +S'Earl Horter' +p189419 +sg25273 +S'etching' +p189420 +sg25275 +S'unknown date\n' +p189421 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00105/a0010569.jpg' +p189422 +sg25267 +g27 +sa(dp189423 +g25273 +S'(artist after)' +p189424 +sg25267 +g27 +sg25275 +S'\n' +p189425 +sg25268 +S'The Soul hovering over the Body reluctantly parting with Life' +p189426 +sg25270 +S'Artist Information (' +p189427 +sa(dp189428 +g25273 +S'lithograph' +p189429 +sg25267 +g27 +sg25275 +S'1962' +p189430 +sg25268 +S'Untitled' +p189431 +sg25270 +S'Shigeru Izumi' +p189432 +sa(dp189433 +g25273 +S'color lithograph' +p189434 +sg25267 +g27 +sg25275 +S'1959' +p189435 +sg25268 +S'Sea Bird' +p189436 +sg25270 +S'Max Kahn' +p189437 +sa(dp189438 +g25273 +S'color woodcut with embossing' +p189439 +sg25267 +g27 +sg25275 +S'1959' +p189440 +sg25268 +S'The Stone Garden' +p189441 +sg25270 +S'Hide Kawanishi' +p189442 +sa(dp189443 +g25273 +S'drypoint' +p189444 +sg25267 +g27 +sg25275 +S'1961' +p189445 +sg25268 +S"St. Botolph's Church, The Stump, Boston, England" +p189446 +sg25270 +S'Harold Field Kellogg' +p189447 +sa(dp189448 +g25273 +S'etching, aquatint, and drypoint' +p189449 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189450 +sg25268 +S'Clouds at Sunset' +p189451 +sg25270 +S'Gene Kloss' +p189452 +sa(dp189453 +g25273 +S'drypoint' +p189454 +sg25267 +g27 +sg25275 +S'1954' +p189455 +sg25268 +S'Indian Friendship Dance' +p189456 +sg25270 +S'Gene Kloss' +p189457 +sa(dp189458 +g25273 +S'woodcut kit' +p189459 +sg25267 +g27 +sg25275 +S'1959' +p189460 +sg25268 +S'Nesting' +p189461 +sg25270 +S'Glen Adolph Krause' +p189462 +sa(dp189463 +g25268 +S'Smoke Tree' +p189464 +sg25270 +S'Paul Hambelton Landacre' +p189465 +sg25273 +S'wood engraving' +p189466 +sg25275 +S'1953' +p189467 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000afb.jpg' +p189468 +sg25267 +g27 +sa(dp189469 +g25268 +S'Some Ingredients' +p189470 +sg25270 +S'Paul Hambelton Landacre' +p189471 +sg25273 +S'wood engraving' +p189472 +sg25275 +S'1954' +p189473 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000afc.jpg' +p189474 +sg25267 +g27 +sa(dp189475 +g25273 +S'engraving in black on wove paper' +p189476 +sg25267 +g27 +sg25275 +S'1951' +p189477 +sg25268 +S'Moonlight in the Country' +p189478 +sg25270 +S'Armin Landeck' +p189479 +sa(dp189480 +g25273 +S'(artist after)' +p189481 +sg25267 +g27 +sg25275 +S'\n' +p189482 +sg25268 +S'The descent of Man into the Vale of Death' +p189483 +sg25270 +S'Artist Information (' +p189484 +sa(dp189485 +g25273 +S'wood engraving' +p189486 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189487 +sg25268 +S'Tower of Donanworth' +p189488 +sg25270 +S'Julius J. Lankes' +p189489 +sa(dp189490 +g25268 +S'Woman Gathering Flowers' +p189491 +sg25270 +S'Pierre Laprade' +p189492 +sg25273 +S'etching' +p189493 +sg25275 +S'unknown date\n' +p189494 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a0e1.jpg' +p189495 +sg25267 +g27 +sa(dp189496 +g25268 +S'Grapevine' +p189497 +sg25270 +S'Pierre Laprade' +p189498 +sg25273 +S'etching' +p189499 +sg25275 +S'unknown date\n' +p189500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a0ea.jpg' +p189501 +sg25267 +g27 +sa(dp189502 +g25268 +S'Two Figures between Trees' +p189503 +sg25270 +S'Pierre Laprade' +p189504 +sg25273 +S'etching' +p189505 +sg25275 +S'unknown date\n' +p189506 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a0dc.jpg' +p189507 +sg25267 +g27 +sa(dp189508 +g25268 +S'Four Figures in a Landscape' +p189509 +sg25270 +S'Pierre Laprade' +p189510 +sg25273 +S'etching' +p189511 +sg25275 +S'unknown date\n' +p189512 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a0e0.jpg' +p189513 +sg25267 +g27 +sa(dp189514 +g25268 +S'Vase of Flowers on Two Books' +p189515 +sg25270 +S'Pierre Laprade' +p189516 +sg25273 +S'etching' +p189517 +sg25275 +S'unknown date\n' +p189518 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a0de.jpg' +p189519 +sg25267 +g27 +sa(dp189520 +g25268 +S'Six Figures in a Landscape' +p189521 +sg25270 +S'Pierre Laprade' +p189522 +sg25273 +S'etching' +p189523 +sg25275 +S'unknown date\n' +p189524 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a0e2.jpg' +p189525 +sg25267 +g27 +sa(dp189526 +g25268 +S'Woman Holding a Basket of Flowers' +p189527 +sg25270 +S'Pierre Laprade' +p189528 +sg25273 +S'etching' +p189529 +sg25275 +S'unknown date\n' +p189530 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a0e8.jpg' +p189531 +sg25267 +g27 +sa(dp189532 +g25268 +S'Woman Standing by an Open Window' +p189533 +sg25270 +S'Pierre Laprade' +p189534 +sg25273 +S'etching' +p189535 +sg25275 +S'unknown date\n' +p189536 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a0e9.jpg' +p189537 +sg25267 +g27 +sa(dp189538 +g25268 +S'Three Figures' +p189539 +sg25270 +S'Pierre Laprade' +p189540 +sg25273 +S'etching' +p189541 +sg25275 +S'unknown date\n' +p189542 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a0e4.jpg' +p189543 +sg25267 +g27 +sa(dp189544 +g25273 +S'(artist after)' +p189545 +sg25267 +g27 +sg25275 +S'\n' +p189546 +sg25268 +S'The Day of Judgment' +p189547 +sg25270 +S'Artist Information (' +p189548 +sa(dp189549 +g25268 +S'Woman Sitting on a Balustrade with Another Figure' +p189550 +sg25270 +S'Pierre Laprade' +p189551 +sg25273 +S'etching' +p189552 +sg25275 +S'unknown date\n' +p189553 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a0e5.jpg' +p189554 +sg25267 +g27 +sa(dp189555 +g25268 +S'Two Figures Seated on a Hillock' +p189556 +sg25270 +S'Pierre Laprade' +p189557 +sg25273 +S'etching' +p189558 +sg25275 +S'unknown date\n' +p189559 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a0e3.jpg' +p189560 +sg25267 +g27 +sa(dp189561 +g25268 +S'Woman Standing beside a Rosebush' +p189562 +sg25270 +S'Pierre Laprade' +p189563 +sg25273 +S'etching' +p189564 +sg25275 +S'unknown date\n' +p189565 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a0e6.jpg' +p189566 +sg25267 +g27 +sa(dp189567 +g25268 +S'Two Women with Flowers in Their Hands' +p189568 +sg25270 +S'Pierre Laprade' +p189569 +sg25273 +S'etching' +p189570 +sg25275 +S'unknown date\n' +p189571 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a0dd.jpg' +p189572 +sg25267 +g27 +sa(dp189573 +g25268 +S'Woman with Flowers in Her Hands' +p189574 +sg25270 +S'Pierre Laprade' +p189575 +sg25273 +S'etching' +p189576 +sg25275 +S'unknown date\n' +p189577 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a0e7.jpg' +p189578 +sg25267 +g27 +sa(dp189579 +g25268 +S'Figure Seated at a Desk with Globe and Books' +p189580 +sg25270 +S'Pierre Laprade' +p189581 +sg25273 +S'etching' +p189582 +sg25275 +S'unknown date\n' +p189583 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a0df.jpg' +p189584 +sg25267 +g27 +sa(dp189585 +g25268 +S'Vase of Flowers on Books with Two Figures Seen Through a Window' +p189586 +sg25270 +S'Pierre Laprade' +p189587 +sg25273 +S'etching' +p189588 +sg25275 +S'unknown date\n' +p189589 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a0eb.jpg' +p189590 +sg25267 +g27 +sa(dp189591 +g25268 +S'C. Aureolus' +p189592 +sg25270 +S'Charles Alexandre Lesueur' +p189593 +sg25273 +S'etching' +p189594 +sg25275 +S'1817' +p189595 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098cb.jpg' +p189596 +sg25267 +g27 +sa(dp189597 +g25268 +S'Exocetus' +p189598 +sg25270 +S'Charles Alexandre Lesueur' +p189599 +sg25273 +S'etching' +p189600 +sg25275 +S'1817/1821' +p189601 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098cc.jpg' +p189602 +sg25267 +g27 +sa(dp189603 +g25268 +S"Lebia (L'Ellipsoidea)" +p189604 +sg25270 +S'Charles Alexandre Lesueur' +p189605 +sg25273 +S'etching' +p189606 +sg25275 +S'1817/1821' +p189607 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098c9.jpg' +p189608 +sg25267 +g27 +sa(dp189609 +g25273 +S'(artist after)' +p189610 +sg25267 +g27 +sg25275 +S'\n' +p189611 +sg25268 +S'The Soul exploring the recesses of the Grave' +p189612 +sg25270 +S'Artist Information (' +p189613 +sa(dp189614 +g25268 +S'C. Macrolepidotus' +p189615 +sg25270 +S'Charles Alexandre Lesueur' +p189616 +sg25273 +S'etching' +p189617 +sg25275 +S'1817/1821' +p189618 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098ca.jpg' +p189619 +sg25267 +g27 +sa(dp189620 +g25273 +S'color lithograph' +p189621 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189622 +sg25268 +S'Small Fish Becoming Large (Petit poisson deviendra grand)' +p189623 +sg25270 +S'Jean Lur\xc3\xa7at' +p189624 +sa(dp189625 +g25273 +S'3-color lithograph on wove paper' +p189626 +sg25267 +g27 +sg25275 +S'1953' +p189627 +sg25268 +S'Juggler and Two Horses, Blue, Yellow, and Black' +p189628 +sg25270 +S'Marino Marini' +p189629 +sa(dp189630 +g25273 +S'transfer lithograph' +p189631 +sg25267 +g27 +sg25275 +S'1925' +p189632 +sg25268 +S'Odalisque with Striped Pantaloons (Grande odalisque \xc3\xa0 la culotte bayad\xc3\xa8re)' +p189633 +sg25270 +S'Henri Matisse' +p189634 +sa(dp189635 +g25273 +S'screenprint' +p189636 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189637 +sg25268 +S'Organic Variant' +p189638 +sg25270 +S'Dean Jackson Meeker' +p189639 +sa(dp189640 +g25273 +S'color etching' +p189641 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189642 +sg25268 +S'The Duck Pond (black plate)' +p189643 +sg25270 +S'Keiko Minami' +p189644 +sa(dp189645 +g25273 +S'etched copper plate' +p189646 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189647 +sg25268 +S'The Duck Pond (black plate) [recto]' +p189648 +sg25270 +S'Keiko Minami' +p189649 +sa(dp189650 +g25273 +S'etched copper plate' +p189651 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189652 +sg25268 +S'Two Fish [verso]' +p189653 +sg25270 +S'Keiko Minami' +p189654 +sa(dp189655 +g25273 +S'color lithograph' +p189656 +sg25267 +g27 +sg25275 +S'1958' +p189657 +sg25268 +S'Two Horses' +p189658 +sg25270 +S'Tadashi Nakayama' +p189659 +sa(dp189660 +g25273 +S'(artist after)' +p189661 +sg25267 +g27 +sg25275 +S'\n' +p189662 +sg25268 +S'The Death of The Good Old Man' +p189663 +sg25270 +S'Artist Information (' +p189664 +sa(dp189665 +g25273 +S'engraving' +p189666 +sg25267 +g27 +sg25275 +S'1954' +p189667 +sg25268 +S'Roaring Rocks, Erwinna, Bucks County, PA' +p189668 +sg25270 +S'Thomas Willoughby Nason' +p189669 +sa(dp189670 +g25273 +S'lithograph' +p189671 +sg25267 +g27 +sg25275 +S'1953/1954' +p189672 +sg25268 +S'Card-Playing Fishermen' +p189673 +sg25270 +S'Robert von Neumann' +p189674 +sa(dp189675 +g25268 +S'Lepus Palustris' +p189676 +sg25270 +S'Titian Ramsay Peale' +p189677 +sg25273 +S'lithograph' +p189678 +sg25275 +S'1836' +p189679 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f2/a000f2b8.jpg' +p189680 +sg25267 +g27 +sa(dp189681 +g25273 +S'etching' +p189682 +sg25267 +g27 +sg25275 +S'1954' +p189683 +sg25268 +S'Dome and Spire: View of Frederica, Wilmington' +p189684 +sg25270 +S'Orville Houghton Peets' +p189685 +sa(dp189686 +g25273 +S'engraved zinc plate' +p189687 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189688 +sg25268 +S'In the Forest' +p189689 +sg25270 +S'Gabor Peterdi' +p189690 +sa(dp189691 +g25273 +S'color etching' +p189692 +sg25267 +g27 +sg25275 +S'1960' +p189693 +sg25268 +S'Wisteria' +p189694 +sg25270 +S'Gabor Peterdi' +p189695 +sa(dp189696 +g25273 +S'hand-colored aquatint' +p189697 +sg25267 +g27 +sg25275 +S'published 1832' +p189698 +sg25268 +S'Doncaster Races: The Horses Starting for the Great St. Ledger Stakes' +p189699 +sg25270 +S'James Pollard' +p189700 +sa(dp189701 +g25273 +S'hand-colored aquatint' +p189702 +sg25267 +g27 +sg25275 +S'published 1839' +p189703 +sg25268 +S'Doncaster Race for the Great St. Legder Stakes' +p189704 +sg25270 +S'James Pollard' +p189705 +sa(dp189706 +g25273 +S'(artist after)' +p189707 +sg25267 +g27 +sg25275 +S'\n' +p189708 +sg25268 +S'The Royal Mails Departure from the General Post Office, London' +p189709 +sg25270 +S'Artist Information (' +p189710 +sa(dp189711 +g25273 +S'lithograph' +p189712 +sg25267 +g27 +sg25275 +S'1952' +p189713 +sg25268 +S'The Cock' +p189714 +sg25270 +S'Bernard Reder' +p189715 +sa(dp189716 +g25273 +S'(artist after)' +p189717 +sg25267 +g27 +sg25275 +S'\n' +p189718 +sg25268 +S'The Reunion of the Soul & the Body' +p189719 +sg25270 +S'Artist Information (' +p189720 +sa(dp189721 +g25273 +S'lithograph' +p189722 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189723 +sg25268 +S'Woman and Owl' +p189724 +sg25270 +S'Bernard Reder' +p189725 +sa(dp189726 +g25273 +S'etching and aquatint on wove paper' +p189727 +sg25267 +g27 +sg25275 +S'1953' +p189728 +sg25268 +S'Figure in a Landscape' +p189729 +sg25270 +S'Doel Reed' +p189730 +sa(dp189731 +g25273 +S'wood engraving' +p189732 +sg25267 +g27 +sg25275 +S'1940' +p189733 +sg25268 +S'Dar Beschutzer' +p189734 +sg25270 +S'Imre Reiner' +p189735 +sa(dp189736 +g25268 +S'Christ Presented to the People: Oblong Plate' +p189737 +sg25270 +S'Rembrandt van Rijn' +p189738 +sg25273 +S'drypoint' +p189739 +sg25275 +S'1655' +p189740 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a000565b.jpg' +p189741 +sg25267 +g27 +sa(dp189742 +g25268 +S'Faust' +p189743 +sg25270 +S'Rembrandt van Rijn' +p189744 +sg25273 +S'etching' +p189745 +sg25275 +S'c. 1652' +p189746 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d35e.jpg' +p189747 +sg25267 +g27 +sa(dp189748 +g25268 +S'Jan Asselyn' +p189749 +sg25270 +S'Rembrandt van Rijn' +p189750 +sg25273 +S'etching, drypoint and burin' +p189751 +sg25275 +S'c. 1647' +p189752 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d371.jpg' +p189753 +sg25267 +g27 +sa(dp189754 +g25268 +S'Jan Lutma' +p189755 +sg25270 +S'Rembrandt van Rijn' +p189756 +sg25273 +S'etching and drypoint' +p189757 +sg25275 +S'1656' +p189758 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d369.jpg' +p189759 +sg25267 +g27 +sa(dp189760 +g25268 +S'Bust of a Young Woman (Jeune femme en buste)' +p189761 +sg25270 +S'Auguste Renoir' +p189762 +sg25273 +S'lithograph' +p189763 +sg25275 +S'1892' +p189764 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009ff8.jpg' +p189765 +sg25267 +g27 +sa(dp189766 +g25273 +S'lithograph' +p189767 +sg25267 +g27 +sg25275 +S'1919' +p189768 +sg25268 +S'Adirondacks' +p189769 +sg25270 +S'James N. Rosenberg' +p189770 +sa(dp189771 +g25273 +S'lithograph' +p189772 +sg25267 +g27 +sg25275 +S'1919' +p189773 +sg25268 +S'Landscape with Lake and Mountains' +p189774 +sg25270 +S'James N. Rosenberg' +p189775 +sa(dp189776 +g25273 +S'(artist after)' +p189777 +sg25267 +g27 +sg25275 +S'\n' +p189778 +sg25268 +S"Death's Door" +p189779 +sg25270 +S'Artist Information (' +p189780 +sa(dp189781 +g25273 +S'lithograph' +p189782 +sg25267 +g27 +sg25275 +S'1919' +p189783 +sg25268 +S'Return of the 27th Division' +p189784 +sg25270 +S'James N. Rosenberg' +p189785 +sa(dp189786 +g25273 +S'lithograph' +p189787 +sg25267 +g27 +sg25275 +S'1919' +p189788 +sg25268 +S'Walking Rain' +p189789 +sg25270 +S'James N. Rosenberg' +p189790 +sa(dp189791 +g25273 +S'lithograph' +p189792 +sg25267 +g27 +sg25275 +S'1919' +p189793 +sg25268 +S'Winter Landscape' +p189794 +sg25270 +S'James N. Rosenberg' +p189795 +sa(dp189796 +g25273 +S'pen and black ink, pastel and watercolor on laid paper' +p189797 +sg25267 +g27 +sg25275 +S'unknown date\n' +p189798 +sg25268 +S'Camel Driver' +p189799 +sg25270 +S'Reuven Rubin' +p189800 +sa(dp189801 +g25268 +S'Anshutz on Anatomy' +p189802 +sg25270 +S'John Sloan' +p189803 +sg25273 +S'etching in black on wove paper' +p189804 +sg25275 +S'1912' +p189805 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b8f.jpg' +p189806 +sg25267 +g27 +sa(dp189807 +g25273 +S'etching and engraving' +p189808 +sg25267 +g27 +sg25275 +S'1933' +p189809 +sg25268 +S'Brunette Head and Shoulders' +p189810 +sg25270 +S'John Sloan' +p189811 +sa(dp189812 +g25273 +S'American, 1879 - 1964' +p189813 +sg25267 +g27 +sg25275 +S'(printer)' +p189814 +sg25268 +S'Connoisseurs of Prints' +p189815 +sg25270 +S'Artist Information (' +p189816 +sa(dp189817 +g25273 +S'etching on applied paper' +p189818 +sg25267 +g27 +sg25275 +S'1906' +p189819 +sg25268 +S'Memory' +p189820 +sg25270 +S'John Sloan' +p189821 +sa(dp189822 +g25273 +S'etching' +p189823 +sg25267 +g27 +sg25275 +S'1910' +p189824 +sg25268 +S'Night Windows' +p189825 +sg25270 +S'John Sloan' +p189826 +sa(dp189827 +g25273 +S'etching and engraving' +p189828 +sg25267 +g27 +sg25275 +S'1933' +p189829 +sg25268 +S'Nude and Arch' +p189830 +sg25270 +S'John Sloan' +p189831 +sa(dp189832 +g25268 +S'Sailing Ships in the Bassin Neuf at La Rochelle (Les Voiliers du Bassin Neuf, a La Rochelle)' +p189833 +sg25270 +S'Gustave Leheutre' +p189834 +sg25273 +S'etching' +p189835 +sg25275 +S'unknown date\n' +p189836 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b14.jpg' +p189837 +sg25267 +g27 +sa(dp189838 +g25273 +S'etching' +p189839 +sg25267 +g27 +sg25275 +S'1930' +p189840 +sg25268 +S'Nude on Stairs' +p189841 +sg25270 +S'John Sloan' +p189842 +sa(dp189843 +g25273 +S'etching' +p189844 +sg25267 +g27 +sg25275 +S'1917' +p189845 +sg25268 +S'Nude Sketches' +p189846 +sg25270 +S'John Sloan' +p189847 +sa(dp189848 +g25273 +S'etching' +p189849 +sg25267 +g27 +sg25275 +S'1911' +p189850 +sg25268 +S'The Picture Buyer' +p189851 +sg25270 +S'John Sloan' +p189852 +sa(dp189853 +g25273 +S'lithograph' +p189854 +sg25267 +g27 +sg25275 +S'1919' +p189855 +sg25268 +S'Saturday Afternoon on the Roof' +p189856 +sg25270 +S'John Sloan' +p189857 +sa(dp189858 +g25268 +S'Turning Out the Light' +p189859 +sg25270 +S'John Sloan' +p189860 +sg25273 +S'etching' +p189861 +sg25275 +S'1905' +p189862 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b90.jpg' +p189863 +sg25267 +g27 +sa(dp189864 +g25273 +S'lithograph in green, red, and brown' +p189865 +sg25267 +g27 +sg25275 +S'1952' +p189866 +sg25268 +S'Shark and Sonar' +p189867 +sg25270 +S'Benton Murdoch Spruance' +p189868 +sa(dp189869 +g25273 +S'etching' +p189870 +sg25267 +g27 +sg25275 +S'1919' +p189871 +sg25268 +S'Pont Saint-Benezet, Avignon' +p189872 +sg25270 +S'Ian Strang' +p189873 +sa(dp189874 +g25273 +S'French, 1858 - 1936' +p189875 +sg25267 +g27 +sg25275 +S'(printer)' +p189876 +sg25268 +S'Frontispiece' +p189877 +sg25270 +S'Artist Information (' +p189878 +sa(dp189879 +g25268 +S'Frontispiece' +p189880 +sg25270 +S'Artist Information (' +p189881 +sg25273 +S'French, 1858 - 1936' +p189882 +sg25275 +S'(printer)' +p189883 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a02b.jpg' +p189884 +sg25267 +g27 +sa(dp189885 +g25268 +S'Woman with a Tray (Femme au plateau)' +p189886 +sg25270 +S'Artist Information (' +p189887 +sg25273 +S'French, 1858 - 1936' +p189888 +sg25275 +S'(printer)' +p189889 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a000567e.jpg' +p189890 +sg25267 +g27 +sa(dp189891 +g25268 +S'Coast (La cote)' +p189892 +sg25270 +S'Gustave Leheutre' +p189893 +sg25273 +S'etching' +p189894 +sg25275 +S'unknown date\n' +p189895 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b13.jpg' +p189896 +sg25267 +g27 +sa(dp189897 +g25268 +S'Woman Asleep (Femme couch\xc3\xa9e)' +p189898 +sg25270 +S'Artist Information (' +p189899 +sg25273 +S'French, 1858 - 1936' +p189900 +sg25275 +S'(printer)' +p189901 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005680.jpg' +p189902 +sg25267 +g27 +sa(dp189903 +g25268 +S'Woman Washing Herself (Femme qui se lave)' +p189904 +sg25270 +S'Artist Information (' +p189905 +sg25273 +S'French, 1858 - 1936' +p189906 +sg25275 +S'(printer)' +p189907 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a00055ec.jpg' +p189908 +sg25267 +g27 +sa(dp189909 +g25268 +S'Woman at the Mirror (Femme \xc3\xa0 glace)' +p189910 +sg25270 +S'Artist Information (' +p189911 +sg25273 +S'French, 1858 - 1936' +p189912 +sg25275 +S'(printer)' +p189913 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005681.jpg' +p189914 +sg25267 +g27 +sa(dp189915 +g25268 +S'Woman in Bed, Profile (Femme au lit, profil)' +p189916 +sg25270 +S'Artist Information (' +p189917 +sg25273 +S'French, 1858 - 1936' +p189918 +sg25275 +S'(printer)' +p189919 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a00055ee.jpg' +p189920 +sg25267 +g27 +sa(dp189921 +g25268 +S'At the Renaissance: Sarah Bernhardt in "Phedre" (A la Renaissance: Sarah Bernhardt dans "Ph\xc3\xa8dre")' +p189922 +sg25270 +S'Henri de Toulouse-Lautrec' +p189923 +sg25273 +S'lithograph in black on velin paper' +p189924 +sg25275 +S'1893' +p189925 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cc6.jpg' +p189926 +sg25267 +g27 +sa(dp189927 +g25268 +S'Ducarre at the Ambassadeurs (Ducarre aux ambassadeurs)' +p189928 +sg25270 +S'Henri de Toulouse-Lautrec' +p189929 +sg25273 +S'lithograph in black on velin paper' +p189930 +sg25275 +S'1893' +p189931 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009edf.jpg' +p189932 +sg25267 +g27 +sa(dp189933 +g25268 +S'American Singer (Chanteur am\xc3\xa9ricain)' +p189934 +sg25270 +S'Henri de Toulouse-Lautrec' +p189935 +sg25273 +S'lithograph in black on velin paper' +p189936 +sg25275 +S'1893' +p189937 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ede.jpg' +p189938 +sg25267 +g27 +sa(dp189939 +g25268 +S'A Spectator (Une spectatrice)' +p189940 +sg25270 +S'Henri de Toulouse-Lautrec' +p189941 +sg25273 +S'lithograph in black on velin' +p189942 +sg25275 +S'1893' +p189943 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009edd.jpg' +p189944 +sg25267 +g27 +sa(dp189945 +g25268 +S'Drunkard (Soularde)' +p189946 +sg25270 +S'Henri de Toulouse-Lautrec' +p189947 +sg25273 +S'lithograph in black and beige' +p189948 +sg25275 +S'1898' +p189949 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e76.jpg' +p189950 +sg25267 +g27 +sa(dp189951 +g25268 +S'To Menilmontant from Bruant (A M\xc3\xa9nilmontant, de Bruant)' +p189952 +sg25270 +S'Henri de Toulouse-Lautrec' +p189953 +sg25273 +S'lithograph in black and beige' +p189954 +sg25275 +S'1898' +p189955 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e73.jpg' +p189956 +sg25267 +g27 +sa(dp189957 +g25268 +S'Playing Card' +p189958 +sg25270 +S'German 15th Century' +p189959 +sg25273 +S'Rosenwald Collection' +p189960 +sg25275 +S'\nhand-colored woodcut' +p189961 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005788.jpg' +p189962 +sg25267 +g27 +sa(dp189963 +g25268 +S'Bowing to the Audience (Saluant le public)' +p189964 +sg25270 +S'Henri de Toulouse-Lautrec' +p189965 +sg25273 +S'lithograph in black and beige' +p189966 +sg25275 +S'1898' +p189967 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e71.jpg' +p189968 +sg25267 +g27 +sa(dp189969 +g25268 +S'In "La glu" (Dans "La glu")' +p189970 +sg25270 +S'Henri de Toulouse-Lautrec' +p189971 +sg25273 +S'lithograph in black and beige' +p189972 +sg25275 +S'1898' +p189973 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e75.jpg' +p189974 +sg25267 +g27 +sa(dp189975 +g25268 +S'Pessima' +p189976 +sg25270 +S'Henri de Toulouse-Lautrec' +p189977 +sg25273 +S'lithograph in black and beige' +p189978 +sg25275 +S'1898' +p189979 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e74.jpg' +p189980 +sg25267 +g27 +sa(dp189981 +g25268 +S'Old Song (Chanson ancienne)' +p189982 +sg25270 +S'Henri de Toulouse-Lautrec' +p189983 +sg25273 +S'lithograph in black and beige' +p189984 +sg25275 +S'1898' +p189985 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e72.jpg' +p189986 +sg25267 +g27 +sa(dp189987 +g25268 +S'Woman at the Tub (Femme au tub)' +p189988 +sg25270 +S'Artist Information (' +p189989 +sg25273 +S'French, 1858 - 1936' +p189990 +sg25275 +S'(printer)' +p189991 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a02a.jpg' +p189992 +sg25267 +g27 +sa(dp189993 +g25268 +S'Paula Br\xc3\xa9bion' +p189994 +sg25270 +S'Henri de Toulouse-Lautrec' +p189995 +sg25273 +S'lithograph in olive green on velin paper' +p189996 +sg25275 +S'1893' +p189997 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ee0.jpg' +p189998 +sg25267 +g27 +sa(dp189999 +g25273 +S'engraving' +p190000 +sg25267 +g27 +sg25275 +S'unknown date\n' +p190001 +sg25268 +S'Corte' +p190002 +sg25270 +S'S. Vrain' +p190003 +sa(dp190004 +g25273 +S'wood engraving' +p190005 +sg25267 +g27 +sg25275 +S'1953/1954' +p190006 +sg25268 +S'Corral - Tres Cumbres' +p190007 +sg25270 +S'Lynd Kendall Ward' +p190008 +sa(dp190009 +g25268 +S'The Annunciation' +p190010 +sg25270 +S'Heinrich Aldegrever' +p190011 +sg25273 +S'pen and black ink with gray wash' +p190012 +sg25275 +S'1552' +p190013 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007945.jpg' +p190014 +sg25267 +g27 +sa(dp190015 +g25273 +S'Rosenwald Collection' +p190016 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p190017 +sg25268 +S'Playing Card' +p190018 +sg25270 +S'German 15th Century' +p190019 +sa(dp190020 +g25273 +S'hand-colored woodcut' +p190021 +sg25267 +g27 +sg25275 +S'1950' +p190022 +sg25268 +S'Barbus Tetrazona' +p190023 +sg25270 +S'Joseph Weisz' +p190024 +sa(dp190025 +g25273 +S'portfolio with 8 hand-colored woodcuts' +p190026 +sg25267 +g27 +sg25275 +S'1950' +p190027 +sg25268 +S'Kleines Aquarium' +p190028 +sg25270 +S'Joseph Weisz' +p190029 +sa(dp190030 +g25273 +S'hand-colored woodcut' +p190031 +sg25267 +g27 +sg25275 +S'1950' +p190032 +sg25268 +S'Hyphessobrycon' +p190033 +sg25270 +S'Joseph Weisz' +p190034 +sa(dp190035 +g25273 +S'hand-colored woodcut' +p190036 +sg25267 +g27 +sg25275 +S'1950' +p190037 +sg25268 +S'Carnegiella Strigata' +p190038 +sg25270 +S'Joseph Weisz' +p190039 +sa(dp190040 +g25273 +S'hand-colored woodcut' +p190041 +sg25267 +g27 +sg25275 +S'1950' +p190042 +sg25268 +S'Callichrous Pabda' +p190043 +sg25270 +S'Joseph Weisz' +p190044 +sa(dp190045 +g25273 +S'hand-colored woodcut' +p190046 +sg25267 +g27 +sg25275 +S'1950' +p190047 +sg25268 +S'Trichogaster' +p190048 +sg25270 +S'Joseph Weisz' +p190049 +sa(dp190050 +g25273 +S'hand-colored woodcut' +p190051 +sg25267 +g27 +sg25275 +S'1950' +p190052 +sg25268 +S'Monodactylus Argenteus' +p190053 +sg25270 +S'Joseph Weisz' +p190054 +sa(dp190055 +g25273 +S'hand-colored woodcut' +p190056 +sg25267 +g27 +sg25275 +S'1950' +p190057 +sg25268 +S'Pantodon Bucholzi' +p190058 +sg25270 +S'Joseph Weisz' +p190059 +sa(dp190060 +g25273 +S'hand-colored woodcut' +p190061 +sg25267 +g27 +sg25275 +S'1950' +p190062 +sg25268 +S'Pterophyllum Scalare' +p190063 +sg25270 +S'Joseph Weisz' +p190064 +sa(dp190065 +g25273 +S'lithograph' +p190066 +sg25267 +g27 +sg25275 +S'1949' +p190067 +sg25268 +S'Along the Canal' +p190068 +sg25270 +S'Stow Wengenroth' +p190069 +sa(dp190070 +g25273 +S'Rosenwald Collection' +p190071 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p190072 +sg25268 +S'Playing Card' +p190073 +sg25270 +S'German 15th Century' +p190074 +sa(dp190075 +g25273 +S'lithograph' +p190076 +sg25267 +g27 +sg25275 +S'1957' +p190077 +sg25268 +S'Trees and Fields' +p190078 +sg25270 +S'Peter Takal' +p190079 +sa(dp190080 +g25273 +S'1 vol: ill: 32 engravings including title page' +p190081 +sg25267 +g27 +sg25275 +S'unknown date\n' +p190082 +sg25268 +S"Divers desseins de figures dedies a Monsieur Colbert d'Ormoy" +p190083 +sg25270 +S'S\xc3\xa9bastien Le Clerc I' +p190084 +sa(dp190085 +g25273 +S'1 vol: ill: 107 hand-colored aquatints plus title page' +p190086 +sg25267 +g27 +sg25275 +S'c. 1815' +p190087 +sg25268 +S'Collection de Vues des principaux Palais, Eglises, Batimens ... de Vienne / Ansichten Sammlung der beruhmtesten Pallaste, Gebaude, und der Schonsten Gegenden von und un Wien' +p190088 +sg25270 +S'Marie Geissler' +p190089 +sa(dp190090 +g25273 +S'(artist)' +p190091 +sg25267 +g27 +sg25275 +S'\n' +p190092 +sg25268 +S'Sammlung von 36 Aussichten der Residenzstadt Wien ...' +p190093 +sg25270 +S'Artist Information (' +p190094 +sa(dp190095 +g25273 +S'1 vol: ill: 40 etchings including title page and epilogue' +p190096 +sg25267 +g27 +sg25275 +S'probably 1532' +p190097 +sg25268 +S'The Coronation Procession of the Emperor Charles V at Bologna' +p190098 +sg25270 +S'Nikolaus Hogenberg' +p190099 +sa(dp190100 +g25273 +S'Italian, 1711 - 1767' +p190101 +sg25267 +g27 +sg25275 +S'(artist after)' +p190102 +sg25268 +S"Vedute delle ville e d'altri luoghi della Toscana" +p190103 +sg25270 +S'Artist Information (' +p190104 +sa(dp190105 +g25273 +S'(artist after)' +p190106 +sg25267 +g27 +sg25275 +S'\n' +p190107 +sg25268 +S'Title Page' +p190108 +sg25270 +S'Artist Information (' +p190109 +sa(dp190110 +g25273 +S'(artist after)' +p190111 +sg25267 +g27 +sg25275 +S'\n' +p190112 +sg25268 +S'Veduta della Villa di Lamporecchio di S Eze il Sr. Duca Rospigliosi' +p190113 +sg25270 +S'Artist Information (' +p190114 +sa(dp190115 +g25273 +S'etching and engraving' +p190116 +sg25267 +g27 +sg25275 +S'published 1757' +p190117 +sg25268 +S'La Real Villa detta Poggio Imperiale' +p190118 +sg25270 +S'Giuseppe Zocchi' +p190119 +sa(dp190120 +g25273 +S'(artist after)' +p190121 +sg25267 +g27 +sg25275 +S'\n' +p190122 +sg25268 +S'Villa di Bella Vista del S. Mar Francesco Ferroni' +p190123 +sg25270 +S'Artist Information (' +p190124 +sa(dp190125 +g25273 +S'Rosenwald Collection' +p190126 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p190127 +sg25268 +S'Playing Card' +p190128 +sg25270 +S'German 15th Century' +p190129 +sa(dp190130 +g25273 +S'(artist after)' +p190131 +sg25267 +g27 +sg25275 +S'\n' +p190132 +sg25268 +S'La Pace' +p190133 +sg25270 +S'Artist Information (' +p190134 +sa(dp190135 +g25273 +S'(artist after)' +p190136 +sg25267 +g27 +sg25275 +S'\n' +p190137 +sg25268 +S'Salita alla Chiesa e Convento de PP Cappuccini di Montughi' +p190138 +sg25270 +S'Artist Information (' +p190139 +sa(dp190140 +g25273 +S'(artist after)' +p190141 +sg25267 +g27 +sg25275 +S'\n' +p190142 +sg25268 +S'Pozzolatico Villa del Sigr. Senatre Ricci' +p190143 +sg25270 +S'Artist Information (' +p190144 +sa(dp190145 +g25273 +S'(artist after)' +p190146 +sg25267 +g27 +sg25275 +S'\n' +p190147 +sg25268 +S'Villa di Montughi delli SSri Marchsi Gerini' +p190148 +sg25270 +S'Artist Information (' +p190149 +sa(dp190150 +g25273 +S'(artist after)' +p190151 +sg25267 +g27 +sg25275 +S'\n' +p190152 +sg25268 +S'Villa de Collazi de SSri. Dini' +p190153 +sg25270 +S'Artist Information (' +p190154 +sa(dp190155 +g25273 +S'(artist after)' +p190156 +sg25267 +g27 +sg25275 +S'\n' +p190157 +sg25268 +S'Villa di Castello di S.E. il Sigr Principe Corsini' +p190158 +sg25270 +S'Artist Information (' +p190159 +sa(dp190160 +g25273 +S'(artist after)' +p190161 +sg25267 +g27 +sg25275 +S'\n' +p190162 +sg25268 +S'Villa di Monte Gusoni delli SSri. Marchesi Acciaioli' +p190163 +sg25270 +S'Artist Information (' +p190164 +sa(dp190165 +g25273 +S'(artist after)' +p190166 +sg25267 +g27 +sg25275 +S'\n' +p190167 +sg25268 +S'La Real Ville di Careggi' +p190168 +sg25270 +S'Artist Information (' +p190169 +sa(dp190170 +g25273 +S'(artist after)' +p190171 +sg25267 +g27 +sg25275 +S'\n' +p190172 +sg25268 +S'Veduta di Montoliveto' +p190173 +sg25270 +S'Artist Information (' +p190174 +sa(dp190175 +g25273 +S'(artist after)' +p190176 +sg25267 +g27 +sg25275 +S'\n' +p190177 +sg25268 +S'La Real Ville di Castello' +p190178 +sg25270 +S'Artist Information (' +p190179 +sa(dp190180 +g25273 +S'Rosenwald Collection' +p190181 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p190182 +sg25268 +S'Playing Card' +p190183 +sg25270 +S'German 15th Century' +p190184 +sa(dp190185 +g25273 +S'(artist after)' +p190186 +sg25267 +g27 +sg25275 +S'\n' +p190187 +sg25268 +S"Veduta della Pescaia d'Arno fuori della Porta a San Frediano" +p190188 +sg25270 +S'Artist Information (' +p190189 +sa(dp190190 +g25273 +S'(artist after)' +p190191 +sg25267 +g27 +sg25275 +S'\n' +p190192 +sg25268 +S'La Real Ville della Petraia' +p190193 +sg25270 +S'Artist Information (' +p190194 +sa(dp190195 +g25273 +S'(artist after)' +p190196 +sg25267 +g27 +sg25275 +S'\n' +p190197 +sg25268 +S'Villa di Castel Pulci del Sigr. Marchse Riccardi' +p190198 +sg25270 +S'Artist Information (' +p190199 +sa(dp190200 +g25273 +S'(artist after)' +p190201 +sg25267 +g27 +sg25275 +S'\n' +p190202 +sg25268 +S'La Reale Villa di Pratolino' +p190203 +sg25270 +S'Artist Information (' +p190204 +sa(dp190205 +g25273 +S'(artist after)' +p190206 +sg25267 +g27 +sg25275 +S'\n' +p190207 +sg25268 +S'Il Ponte a Signa dalla parte di Levante' +p190208 +sg25270 +S'Artist Information (' +p190209 +sa(dp190210 +g25273 +S'(artist after)' +p190211 +sg25267 +g27 +sg25275 +S'\n' +p190212 +sg25268 +S'Veduta del Ponte a S. Piero a Sieve' +p190213 +sg25270 +S'Artist Information (' +p190214 +sa(dp190215 +g25273 +S'(artist after)' +p190216 +sg25267 +g27 +sg25275 +S'\n' +p190217 +sg25268 +S'Il Ponte a Signa dalla parte di Ponente' +p190218 +sg25270 +S'Artist Information (' +p190219 +sa(dp190220 +g25273 +S'(artist after)' +p190221 +sg25267 +g27 +sg25275 +S'\n' +p190222 +sg25268 +S'La Real Villa di Casaggiolo' +p190223 +sg25270 +S'Artist Information (' +p190224 +sa(dp190225 +g25273 +S'(artist after)' +p190226 +sg25267 +g27 +sg25275 +S'\n' +p190227 +sg25268 +S'Villa de SSri Mancini vicino a Signa detta Castelletti' +p190228 +sg25270 +S'Artist Information (' +p190229 +sa(dp190230 +g25273 +S'(artist after)' +p190231 +sg25267 +g27 +sg25275 +S'\n' +p190232 +sg25268 +S'Villa delli SSri Marchesi Gerini detta le Maschere' +p190233 +sg25270 +S'Artist Information (' +p190234 +sa(dp190235 +g25273 +S'Rosenwald Collection' +p190236 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p190237 +sg25268 +S'Playing Card' +p190238 +sg25270 +S'German 15th Century' +p190239 +sa(dp190240 +g25273 +S'(artist after)' +p190241 +sg25267 +g27 +sg25275 +S'\n' +p190242 +sg25268 +S'Veduta del Porto di mezzo vicino al Ponte a Signa' +p190243 +sg25270 +S'Artist Information (' +p190244 +sa(dp190245 +g25273 +S'(artist after)' +p190246 +sg25267 +g27 +sg25275 +S'\n' +p190247 +sg25268 +S'Villa de SSri Marchesi Gerini a Ronta' +p190248 +sg25270 +S'Artist Information (' +p190249 +sa(dp190250 +g25273 +S'(artist after)' +p190251 +sg25267 +g27 +sg25275 +S'\n' +p190252 +sg25268 +S'Portp di sotto nella Polsolina all Imboccatura dell Ombrone' +p190253 +sg25270 +S'Artist Information (' +p190254 +sa(dp190255 +g25273 +S'(artist after)' +p190256 +sg25267 +g27 +sg25275 +S'\n' +p190257 +sg25268 +S'Tre Visi, Villa de SSri Palmieri al principie della salita di Fiesole' +p190258 +sg25270 +S'Artist Information (' +p190259 +sa(dp190260 +g25273 +S'(artist after)' +p190261 +sg25267 +g27 +sg25275 +S'\n' +p190262 +sg25268 +S'Veduta di Paese sul corso del Fiume Arno ...' +p190263 +sg25270 +S'Artist Information (' +p190264 +sa(dp190265 +g25273 +S'(artist after)' +p190266 +sg25267 +g27 +sg25275 +S'\n' +p190267 +sg25268 +S'Veduta del Ponte alla Badia' +p190268 +sg25270 +S'Artist Information (' +p190269 +sa(dp190270 +g25273 +S'(artist after)' +p190271 +sg25267 +g27 +sg25275 +S'\n' +p190272 +sg25268 +S'Veduta sul Fiume Arno dalla parte di Grumaggio' +p190273 +sg25270 +S'Artist Information (' +p190274 +sa(dp190275 +g25273 +S'(artist after)' +p190276 +sg25267 +g27 +sg25275 +S'\n' +p190277 +sg25268 +S'Villa del Ponte all Badia di S Eza il Sigr Duca Salviati' +p190278 +sg25270 +S'Artist Information (' +p190279 +sa(dp190280 +g25273 +S'(artist after)' +p190281 +sg25267 +g27 +sg25275 +S'\n' +p190282 +sg25268 +S'Veduta di Paese sul Fiume Arno nella Polsolina' +p190283 +sg25270 +S'Artist Information (' +p190284 +sa(dp190285 +g25273 +S'(artist after)' +p190286 +sg25267 +g27 +sg25275 +S'\n' +p190287 +sg25268 +S'Villa della Luna delli SSri Marsi Guadagni' +p190288 +sg25270 +S'Artist Information (' +p190289 +sa(dp190290 +g25273 +S'Rosenwald Collection' +p190291 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p190292 +sg25268 +S'Playing Card' +p190293 +sg25270 +S'German 15th Century' +p190294 +sa(dp190295 +g25273 +S'(artist after)' +p190296 +sg25267 +g27 +sg25275 +S'\n' +p190297 +sg25268 +S"La Real Villa dell'Ambrogiana" +p190298 +sg25270 +S'Artist Information (' +p190299 +sa(dp190300 +g25273 +S'(artist after)' +p190301 +sg25267 +g27 +sg25275 +S'\n' +p190302 +sg25268 +S'Villa del Sigre Marchese Bartolini a Rovezzano' +p190303 +sg25270 +S'Artist Information (' +p190304 +sa(dp190305 +g25273 +S'etching and engraving' +p190306 +sg25267 +g27 +sg25275 +S'published 1757' +p190307 +sg25268 +S'Veduta di Castel Fiorentino' +p190308 +sg25270 +S'Giuseppe Zocchi' +p190309 +sa(dp190310 +g25273 +S'(artist after)' +p190311 +sg25267 +g27 +sg25275 +S'\n' +p190312 +sg25268 +S'Veduta di paese della Villa di Loretino' +p190313 +sg25270 +S'Artist Information (' +p190314 +sa(dp190315 +g25273 +S'(artist after)' +p190316 +sg25267 +g27 +sg25275 +S'\n' +p190317 +sg25268 +S'La Cecina di S E il Sigr Senre Marcha Carlo Ginori' +p190318 +sg25270 +S'Artist Information (' +p190319 +sa(dp190320 +g25273 +S'(artist after)' +p190321 +sg25267 +g27 +sg25275 +S'\n' +p190322 +sg25268 +S'Veduta dell ingresso alla Villa di Gamberaia del Sr. Marchese Capponi' +p190323 +sg25270 +S'Artist Information (' +p190324 +sa(dp190325 +g25273 +S'(artist after)' +p190326 +sg25267 +g27 +sg25275 +S'\n' +p190327 +sg25268 +S'Ville di Sesto delli SSri Marchesi Corsi' +p190328 +sg25270 +S'Artist Information (' +p190329 +sa(dp190330 +g25273 +S'(artist after)' +p190331 +sg25267 +g27 +sg25275 +S'\n' +p190332 +sg25268 +S'Veduta di Campagna vicino a Gamberaia' +p190333 +sg25270 +S'Artist Information (' +p190334 +sa(dp190335 +g25273 +S'(artist after)' +p190336 +sg25267 +g27 +sg25275 +S'\n' +p190337 +sg25268 +S'La Real Villa del Poggio a Caiano' +p190338 +sg25270 +S'Artist Information (' +p190339 +sa(dp190340 +g25273 +S'(artist after)' +p190341 +sg25267 +g27 +sg25275 +S'\n' +p190342 +sg25268 +S'Villa di Gamberaia del Sigr Marchese Scipione Capponi' +p190343 +sg25270 +S'Artist Information (' +p190344 +sa(dp190345 +g25273 +S'Rosenwald Collection' +p190346 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p190347 +sg25268 +S'Playing Card' +p190348 +sg25270 +S'German 15th Century' +p190349 +sa(dp190350 +g25273 +S'(artist after)' +p190351 +sg25267 +g27 +sg25275 +S'\n' +p190352 +sg25268 +S"La Reale Villa d'Artinino" +p190353 +sg25270 +S'Artist Information (' +p190354 +sa(dp190355 +g25273 +S'(artist after)' +p190356 +sg25267 +g27 +sg25275 +S'\n' +p190357 +sg25268 +S'Villa delle Falle de SSri Guadagni dall Opera' +p190358 +sg25270 +S'Artist Information (' +p190359 +sa(dp190360 +g25273 +S'(artist after)' +p190361 +sg25267 +g27 +sg25275 +S'\n' +p190362 +sg25268 +S'Villa della Magia del Sigre Pandolfo' +p190363 +sg25270 +S'Artist Information (' +p190364 +sa(dp190365 +g25273 +S'(artist after)' +p190366 +sg25267 +g27 +sg25275 +S'\n' +p190367 +sg25268 +S'La Tana Villa de SSri Baroni Ricasoli' +p190368 +sg25270 +S'Artist Information (' +p190369 +sa(dp190370 +g25273 +S'(artist after)' +p190371 +sg25267 +g27 +sg25275 +S'\n' +p190372 +sg25268 +S'Villa del Barone delli SSri Marsi Tempi' +p190373 +sg25270 +S'Artist Information (' +p190374 +sa(dp190375 +g25273 +S'(artist after)' +p190376 +sg25267 +g27 +sg25275 +S'\n' +p190377 +sg25268 +S'La Reale Villa di Lappeggi' +p190378 +sg25270 +S'Artist Information (' +p190379 +sa(dp190380 +g25273 +S'(artist after)' +p190381 +sg25267 +g27 +sg25275 +S'\n' +p190382 +sg25268 +S'La Real Ville di Cerreto' +p190383 +sg25270 +S'Artist Information (' +p190384 +sa(dp190385 +g25273 +S'(artist)' +p190386 +sg25267 +g27 +sg25275 +S'\n' +p190387 +sg25268 +S'Li Giardini di Roma' +p190388 +sg25270 +S'Artist Information (' +p190389 +sa(dp190390 +g25273 +S'(artist)' +p190391 +sg25267 +g27 +sg25275 +S'\n' +p190392 +sg25268 +S'Sammlung von Aussichten der Residenzstadt Wien ...' +p190393 +sg25270 +S'Artist Information (' +p190394 +sa(dp190395 +g25273 +S'Rosenwald Collection' +p190396 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p190397 +sg25268 +S'Playing Card' +p190398 +sg25270 +S'German 15th Century' +p190399 +sa(dp190400 +g25273 +S'woodcut; print inset on portfolio cover' +p190401 +sg25267 +g27 +sg25275 +S'1942' +p190402 +sg25268 +S'Rabelais' +p190403 +sg25270 +S'Bernard Reder' +p190404 +sa(dp190405 +g25273 +S'portfolio with 36 woodcuts including woodcut on cover' +p190406 +sg25267 +g27 +sg25275 +S'c. 1942' +p190407 +sg25268 +S'Rabelais: Gargantua-Pantagruel' +p190408 +sg25270 +S'Bernard Reder' +p190409 +sa(dp190410 +g25273 +S'woodcut' +p190411 +sg25267 +g27 +sg25275 +S'1942' +p190412 +sg25268 +S'Gargantua en deuil de Badebec' +p190413 +sg25270 +S'Bernard Reder' +p190414 +sa(dp190415 +g25273 +S'woodcut' +p190416 +sg25267 +g27 +sg25275 +S'1942' +p190417 +sg25268 +S'Gargantua et Badebec' +p190418 +sg25270 +S'Bernard Reder' +p190419 +sa(dp190420 +g25273 +S'woodcut' +p190421 +sg25267 +g27 +sg25275 +S'1942' +p190422 +sg25268 +S'Gargantua: Chapter VIII - Ses bijoux' +p190423 +sg25270 +S'Bernard Reder' +p190424 +sa(dp190425 +g25273 +S'woodcut' +p190426 +sg25267 +g27 +sg25275 +S'1942' +p190427 +sg25268 +S'Gargantua: Chapter VIII - Son collier' +p190428 +sg25270 +S'Bernard Reder' +p190429 +sa(dp190430 +g25273 +S'woodcut' +p190431 +sg25267 +g27 +sg25275 +S'1942' +p190432 +sg25268 +S'Gargantua en colore' +p190433 +sg25270 +S'Bernard Reder' +p190434 +sa(dp190435 +g25273 +S'woodcut' +p190436 +sg25267 +g27 +sg25275 +S'1942' +p190437 +sg25268 +S'Gargantua: Chapter XIII' +p190438 +sg25270 +S'Bernard Reder' +p190439 +sa(dp190440 +g25273 +S'woodcut' +p190441 +sg25267 +g27 +sg25275 +S'1942' +p190442 +sg25268 +S'Gargantua: Chapter XVII' +p190443 +sg25270 +S'Bernard Reder' +p190444 +sa(dp190445 +g25273 +S'woodcut' +p190446 +sg25267 +g27 +sg25275 +S'1942' +p190447 +sg25268 +S'Gargantua: Chapter XVII' +p190448 +sg25270 +S'Bernard Reder' +p190449 +sa(dp190450 +g25273 +S'Rosenwald Collection' +p190451 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p190452 +sg25268 +S'Playing Card' +p190453 +sg25270 +S'German 15th Century' +p190454 +sa(dp190455 +g25273 +S'woodcut' +p190456 +sg25267 +g27 +sg25275 +S'1942' +p190457 +sg25268 +S'Gargantua: Chapter XXII' +p190458 +sg25270 +S'Bernard Reder' +p190459 +sa(dp190460 +g25273 +S'woodcut' +p190461 +sg25267 +g27 +sg25275 +S'1942' +p190462 +sg25268 +S'Gargantua: Chapter XXII - Les jeux' +p190463 +sg25270 +S'Bernard Reder' +p190464 +sa(dp190465 +g25273 +S'woodcut' +p190466 +sg25267 +g27 +sg25275 +S'1942' +p190467 +sg25268 +S'Gargantua: Chapter XXII - Les jeux - ses toupis' +p190468 +sg25270 +S'Bernard Reder' +p190469 +sa(dp190470 +g25273 +S'woodcut' +p190471 +sg25267 +g27 +sg25275 +S'1942' +p190472 +sg25268 +S'Gargantua: Chapter XXII - Les jeux' +p190473 +sg25270 +S'Bernard Reder' +p190474 +sa(dp190475 +g25273 +S'woodcut' +p190476 +sg25267 +g27 +sg25275 +S'1942' +p190477 +sg25268 +S'Gargantua: Chapter XXII - Les jeux' +p190478 +sg25270 +S'Bernard Reder' +p190479 +sa(dp190480 +g25273 +S'woodcut' +p190481 +sg25267 +g27 +sg25275 +S'1942' +p190482 +sg25268 +S'Gargantua: Chapter XXII - "Les balancoirs"' +p190483 +sg25270 +S'Bernard Reder' +p190484 +sa(dp190485 +g25273 +S'woodcut' +p190486 +sg25267 +g27 +sg25275 +S'1942' +p190487 +sg25268 +S'Gargantua: Chapter XXV' +p190488 +sg25270 +S'Bernard Reder' +p190489 +sa(dp190490 +g25273 +S'woodcut' +p190491 +sg25267 +g27 +sg25275 +S'1942' +p190492 +sg25268 +S'Gargantua: Chapter XXV' +p190493 +sg25270 +S'Bernard Reder' +p190494 +sa(dp190495 +g25273 +S'woodcut' +p190496 +sg25267 +g27 +sg25275 +S'probably 1942' +p190497 +sg25268 +S'Gargantua: Chapter XXV' +p190498 +sg25270 +S'Bernard Reder' +p190499 +sa(dp190500 +g25273 +S'woodcut' +p190501 +sg25267 +g27 +sg25275 +S'1942' +p190502 +sg25268 +S'Gargantua: Chapter XXIX' +p190503 +sg25270 +S'Bernard Reder' +p190504 +sa(dp190505 +g25273 +S'Rosenwald Collection' +p190506 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p190507 +sg25268 +S'Playing Card' +p190508 +sg25270 +S'German 15th Century' +p190509 +sa(dp190510 +g25273 +S'woodcut' +p190511 +sg25267 +g27 +sg25275 +S'probably 1942' +p190512 +sg25268 +S'Gargantua: Chapter XVII' +p190513 +sg25270 +S'Bernard Reder' +p190514 +sa(dp190515 +g25273 +S'woodcut' +p190516 +sg25267 +g27 +sg25275 +S'1942' +p190517 +sg25268 +S'Gargantua: Chapter XXXVI' +p190518 +sg25270 +S'Bernard Reder' +p190519 +sa(dp190520 +g25273 +S'woodcut' +p190521 +sg25267 +g27 +sg25275 +S'1942' +p190522 +sg25268 +S'Pantagruel: Le Quatraine sur le probleme de gravitation par Villon' +p190523 +sg25270 +S'Bernard Reder' +p190524 +sa(dp190525 +g25273 +S'woodcut' +p190526 +sg25267 +g27 +sg25275 +S'1942' +p190527 +sg25268 +S'Pantagruel: Chapter LXVII' +p190528 +sg25270 +S'Bernard Reder' +p190529 +sa(dp190530 +g25273 +S'woodcut' +p190531 +sg25267 +g27 +sg25275 +S'1942' +p190532 +sg25268 +S'Pantagruel: Livre II, Chapter XXV' +p190533 +sg25270 +S'Bernard Reder' +p190534 +sa(dp190535 +g25273 +S'woodcut' +p190536 +sg25267 +g27 +sg25275 +S'1942' +p190537 +sg25268 +S'Pantagruel: Livre V, Chapter II' +p190538 +sg25270 +S'Bernard Reder' +p190539 +sa(dp190540 +g25273 +S'woodcut' +p190541 +sg25267 +g27 +sg25275 +S'probably 1942' +p190542 +sg25268 +S'Pantagruel: Livre V, Chapter XXXVI - "Les Fresques"' +p190543 +sg25270 +S'Bernard Reder' +p190544 +sa(dp190545 +g25273 +S'woodcut' +p190546 +sg25267 +g27 +sg25275 +S'1942' +p190547 +sg25268 +S'Pantagruel: Livre V, Chapter XXXVI - "Les Freques"' +p190548 +sg25270 +S'Bernard Reder' +p190549 +sa(dp190550 +g25273 +S'woodcut' +p190551 +sg25267 +g27 +sg25275 +S'1942' +p190552 +sg25268 +S'Pantagruel: Livre V, Chapter XXXVI - "Les Fresques"' +p190553 +sg25270 +S'Bernard Reder' +p190554 +sa(dp190555 +g25273 +S'woodcut' +p190556 +sg25267 +g27 +sg25275 +S'1942' +p190557 +sg25268 +S'Pantagruel: Livre V, Chapter XXXVI' +p190558 +sg25270 +S'Bernard Reder' +p190559 +sa(dp190560 +g25273 +S'Rosenwald Collection' +p190561 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p190562 +sg25268 +S'Playing Card' +p190563 +sg25270 +S'German 15th Century' +p190564 +sa(dp190565 +g25273 +S'woodcut' +p190566 +sg25267 +g27 +sg25275 +S'probably 1942' +p190567 +sg25268 +S'Sa guitare (a la Rabelaisienne)' +p190568 +sg25270 +S'Bernard Reder' +p190569 +sa(dp190570 +g25273 +S'woodcut' +p190571 +sg25267 +g27 +sg25275 +S'probably 1942' +p190572 +sg25268 +S'Gargantua au Puy, recu par M. Verdier (a la R...)' +p190573 +sg25270 +S'Bernard Reder' +p190574 +sa(dp190575 +g25273 +S'woodcut' +p190576 +sg25267 +g27 +sg25275 +S'1942' +p190577 +sg25268 +S'Gargantua avec les 3 graces mais - a "chacune" une pomme (a la R.)' +p190578 +sg25270 +S'Bernard Reder' +p190579 +sa(dp190580 +g25273 +S'woodcut' +p190581 +sg25267 +g27 +sg25275 +S'probably 1942' +p190582 +sg25268 +S'Gargantua avec les trois graces - mais a "chacune" une pomme (a la R.)' +p190583 +sg25270 +S'Bernard Reder' +p190584 +sa(dp190585 +g25273 +S'woodcut' +p190586 +sg25267 +g27 +sg25275 +S'1942' +p190587 +sg25268 +S'Gargantua: Je me reveille (a la R.)' +p190588 +sg25270 +S'Bernard Reder' +p190589 +sa(dp190590 +g25273 +S'woodcut' +p190591 +sg25267 +g27 +sg25275 +S'probably 1942' +p190592 +sg25268 +S'Gargantua: Le peintre du Roi (a la R.)' +p190593 +sg25270 +S'Bernard Reder' +p190594 +sa(dp190595 +g25273 +S'woodcut' +p190596 +sg25267 +g27 +sg25275 +S'probably 1942' +p190597 +sg25268 +S'Entre les Tournesols a la R.' +p190598 +sg25270 +S'Bernard Reder' +p190599 +sa(dp190600 +g25273 +S'1 vol: ill: 33 engravings including title page and dedication' +p190601 +sg25267 +g27 +sg25275 +S'unknown date\n' +p190602 +sg25268 +S'Le Fontane di Roma (Libro Primo)' +p190603 +sg25270 +S'Giovanni Battista Falda' +p190604 +sa(dp190605 +g25273 +S'1 vol: ill: 18 engravings including title page and dedication' +p190606 +sg25267 +g27 +sg25275 +S'unknown date\n' +p190607 +sg25268 +S'Le Fontane delle Ville di Frascati, nel Tusculano (Parte Seconda)' +p190608 +sg25270 +S'Giovanni Battista Falda' +p190609 +sa(dp190610 +g25273 +S'(artist)' +p190611 +sg25267 +g27 +sg25275 +S'\n' +p190612 +sg25268 +S"Le Fontane ne' Palazzi e ne' Giardini di Roma (Parte Terza)" +p190613 +sg25270 +S'Artist Information (' +p190614 +sa(dp190615 +g25273 +S'Rosenwald Collection' +p190616 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p190617 +sg25268 +S'Playing Card' +p190618 +sg25270 +S'German 15th Century' +p190619 +sa(dp190620 +g25273 +S'1 vol: ill: 30 engravings including title page and dedication' +p190621 +sg25267 +g27 +sg25275 +S'unknown date\n' +p190622 +sg25268 +S'Le Fontane del Giardino Estense in Tivoli (Parte Quarta)' +p190623 +sg25270 +S'Giovanni Francesco Venturini' +p190624 +sa(dp190625 +g25273 +S'Italian, 1711 - 1767' +p190626 +sg25267 +g27 +sg25275 +S'(artist after)' +p190627 +sg25268 +S'Scelta di XXIV Vedute delle principale ... Palazzi della Citta di Firenze' +p190628 +sg25270 +S'Artist Information (' +p190629 +sa(dp190630 +g25268 +S'Le Duc de Guise, Roy Ameriquain' +p190631 +sg25270 +S'Fran\xc3\xa7ois Chauveau' +p190632 +sg25273 +S'engraving' +p190633 +sg25275 +S'unknown date\n' +p190634 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008afb.jpg' +p190635 +sg25267 +g27 +sa(dp190636 +g25268 +S'Cheval de Main et Palfreniers Romains' +p190637 +sg25270 +S'Fran\xc3\xa7ois Chauveau' +p190638 +sg25273 +S'engraving' +p190639 +sg25275 +S'unknown date\n' +p190640 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008af9.jpg' +p190641 +sg25267 +g27 +sa(dp190642 +g25273 +S'lithograph on Rives BFK' +p190643 +sg25267 +g27 +sg25275 +S'1961' +p190644 +sg25268 +S'Above and Below' +p190645 +sg25270 +S'Clinton Adams' +p190646 +sa(dp190647 +g25273 +S'lithograph on Rives BFK' +p190648 +sg25267 +g27 +sg25275 +S'1960' +p190649 +sg25268 +S'Broken Land, I' +p190650 +sg25270 +S'Clinton Adams' +p190651 +sa(dp190652 +g25273 +S'color lithograph on Nacre' +p190653 +sg25267 +g27 +sg25275 +S'1961' +p190654 +sg25268 +S'Broken Land, II' +p190655 +sg25270 +S'Clinton Adams' +p190656 +sa(dp190657 +g25273 +S'color lithograph on Arches' +p190658 +sg25267 +g27 +sg25275 +S'1961' +p190659 +sg25268 +S'Broken Land, III' +p190660 +sg25270 +S'Clinton Adams' +p190661 +sa(dp190662 +g25273 +S'lithograph on Nacre' +p190663 +sg25267 +g27 +sg25275 +S'1960' +p190664 +sg25268 +S'Dark Window' +p190665 +sg25270 +S'Clinton Adams' +p190666 +sa(dp190667 +g25273 +S'color lithograph on Nacre' +p190668 +sg25267 +g27 +sg25275 +S'1961' +p190669 +sg25268 +S'Desert Landscape' +p190670 +sg25270 +S'Clinton Adams' +p190671 +sa(dp190672 +g25273 +S'Rosenwald Collection' +p190673 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p190674 +sg25268 +S'Playing Card' +p190675 +sg25270 +S'German 15th Century' +p190676 +sa(dp190677 +g25273 +S'color lithograph on Nacre' +p190678 +sg25267 +g27 +sg25275 +S'1961' +p190679 +sg25268 +S'Golden Tablet' +p190680 +sg25270 +S'Clinton Adams' +p190681 +sa(dp190682 +g25273 +S'color lithograph on Arches' +p190683 +sg25267 +g27 +sg25275 +S'1961' +p190684 +sg25268 +S'Grey Tablet' +p190685 +sg25270 +S'Clinton Adams' +p190686 +sa(dp190687 +g25273 +S'lithograph on Arches' +p190688 +sg25267 +g27 +sg25275 +S'1961' +p190689 +sg25268 +S'Tablets I' +p190690 +sg25270 +S'Clinton Adams' +p190691 +sa(dp190692 +g25273 +S'portfolio with 10 lithographs plus title page and colophon' +p190693 +sg25267 +g27 +sg25275 +S'published 1961' +p190694 +sg25268 +S'Tablets' +p190695 +sg25270 +S'Clinton Adams' +p190696 +sa(dp190697 +g25273 +S'lithograph on Arches' +p190698 +sg25267 +g27 +sg25275 +S'1961' +p190699 +sg25268 +S'Tablets II' +p190700 +sg25270 +S'Clinton Adams' +p190701 +sa(dp190702 +g25273 +S'lithograph on Arches' +p190703 +sg25267 +g27 +sg25275 +S'1961' +p190704 +sg25268 +S'Tablets III' +p190705 +sg25270 +S'Clinton Adams' +p190706 +sa(dp190707 +g25273 +S'lithograph on Arches' +p190708 +sg25267 +g27 +sg25275 +S'1961' +p190709 +sg25268 +S'Tablets IV' +p190710 +sg25270 +S'Clinton Adams' +p190711 +sa(dp190712 +g25273 +S'lithograph on Arches' +p190713 +sg25267 +g27 +sg25275 +S'1961' +p190714 +sg25268 +S'Tablets V' +p190715 +sg25270 +S'Clinton Adams' +p190716 +sa(dp190717 +g25273 +S'lithograph on Arches' +p190718 +sg25267 +g27 +sg25275 +S'1961' +p190719 +sg25268 +S'Tablets VI' +p190720 +sg25270 +S'Clinton Adams' +p190721 +sa(dp190722 +g25273 +S'color lithograph on Arches' +p190723 +sg25267 +g27 +sg25275 +S'1961' +p190724 +sg25268 +S'Tablets VII' +p190725 +sg25270 +S'Clinton Adams' +p190726 +sa(dp190727 +g25273 +S'Rosenwald Collection' +p190728 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p190729 +sg25268 +S'Playing Card' +p190730 +sg25270 +S'German 15th Century' +p190731 +sa(dp190732 +g25273 +S'lithograph on Arches' +p190733 +sg25267 +g27 +sg25275 +S'1961' +p190734 +sg25268 +S'Tablets VIII' +p190735 +sg25270 +S'Clinton Adams' +p190736 +sa(dp190737 +g25273 +S'lithograph on Arches' +p190738 +sg25267 +g27 +sg25275 +S'1961' +p190739 +sg25268 +S'Tablets IX' +p190740 +sg25270 +S'Clinton Adams' +p190741 +sa(dp190742 +g25273 +S'color lithograph on Arches' +p190743 +sg25267 +g27 +sg25275 +S'1961' +p190744 +sg25268 +S'Tablets X' +p190745 +sg25270 +S'Clinton Adams' +p190746 +sa(dp190747 +g25273 +S'lithograph on Rives BFK' +p190748 +sg25267 +g27 +sg25275 +S'1960' +p190749 +sg25268 +S'Window Series I' +p190750 +sg25270 +S'Clinton Adams' +p190751 +sa(dp190752 +g25273 +S'portfolio with 10 lithographs plus title page and colophon' +p190753 +sg25267 +g27 +sg25275 +S'published 1961' +p190754 +sg25268 +S'The Window Series' +p190755 +sg25270 +S'Clinton Adams' +p190756 +sa(dp190757 +g25273 +S'lithograph on Rives BFK' +p190758 +sg25267 +g27 +sg25275 +S'1960' +p190759 +sg25268 +S'Window Series II' +p190760 +sg25270 +S'Clinton Adams' +p190761 +sa(dp190762 +g25273 +S'lithograph on Rives BFK' +p190763 +sg25267 +g27 +sg25275 +S'1960' +p190764 +sg25268 +S'Window Series IV' +p190765 +sg25270 +S'Clinton Adams' +p190766 +sa(dp190767 +g25273 +S'color lithograph on Rives BFK paper' +p190768 +sg25267 +g27 +sg25275 +S'1960' +p190769 +sg25268 +S'Window Series V' +p190770 +sg25270 +S'Clinton Adams' +p190771 +sa(dp190772 +g25273 +S'lithograph on Rives BFK' +p190773 +sg25267 +g27 +sg25275 +S'1960' +p190774 +sg25268 +S'Window Series VI' +p190775 +sg25270 +S'Clinton Adams' +p190776 +sa(dp190777 +g25273 +S'color lithograph on Rives BFK' +p190778 +sg25267 +g27 +sg25275 +S'1960' +p190779 +sg25268 +S'Window Series VII' +p190780 +sg25270 +S'Clinton Adams' +p190781 +sa(dp190782 +g25273 +S'Rosenwald Collection' +p190783 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p190784 +sg25268 +S'Playing Card' +p190785 +sg25270 +S'German 15th Century' +p190786 +sa(dp190787 +g25273 +S'lithograph on Rives BFK' +p190788 +sg25267 +g27 +sg25275 +S'1960' +p190789 +sg25268 +S'Window Series VIII' +p190790 +sg25270 +S'Clinton Adams' +p190791 +sa(dp190792 +g25273 +S'color lithograph on Rives BFK' +p190793 +sg25267 +g27 +sg25275 +S'1960' +p190794 +sg25268 +S'Window Series IX' +p190795 +sg25270 +S'Clinton Adams' +p190796 +sa(dp190797 +g25273 +S'color lithograph on Rives BFK' +p190798 +sg25267 +g27 +sg25275 +S'1960' +p190799 +sg25268 +S'Window Series X' +p190800 +sg25270 +S'Clinton Adams' +p190801 +sa(dp190802 +g25273 +S'lithograph on Rives BFK' +p190803 +sg25267 +g27 +sg25275 +S'1960' +p190804 +sg25268 +S'Reflection I' +p190805 +sg25270 +S'Clinton Adams' +p190806 +sa(dp190807 +g25273 +S'lithograph on Rives BFK paper' +p190808 +sg25267 +g27 +sg25275 +S'1962' +p190809 +sg25268 +S'Interlinear K 50' +p190810 +sg25270 +S'Josef Albers' +p190811 +sa(dp190812 +g25273 +S'lithograph on Rives BFK paper' +p190813 +sg25267 +g27 +sg25275 +S'1962' +p190814 +sg25268 +S'Interlinear N 32 bl' +p190815 +sg25270 +S'Josef Albers' +p190816 +sa(dp190817 +g25273 +S'lithograph on Rives BFK paper' +p190818 +sg25267 +g27 +sg25275 +S'1962' +p190819 +sg25268 +S'Interlinear N 32 gr' +p190820 +sg25270 +S'Josef Albers' +p190821 +sa(dp190822 +g25273 +S'lithograph on Rives BFK paper' +p190823 +sg25267 +g27 +sg25275 +S'1962' +p190824 +sg25268 +S'Interlinear N 65' +p190825 +sg25270 +S'Josef Albers' +p190826 +sa(dp190827 +g25273 +S'lithograph on Nacre paper' +p190828 +sg25267 +g27 +sg25275 +S'1961' +p190829 +sg25268 +S'Untitled' +p190830 +sg25270 +S'Glen Earl Alps' +p190831 +sa(dp190832 +g25273 +S'lithograph on Nacre paper' +p190833 +sg25267 +g27 +sg25275 +S'1961' +p190834 +sg25268 +S'Untitled' +p190835 +sg25270 +S'Glen Earl Alps' +p190836 +sa(dp190837 +g25273 +S'Rosenwald Collection' +p190838 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p190839 +sg25268 +S'Playing Card' +p190840 +sg25270 +S'German 15th Century' +p190841 +sa(dp190842 +g25273 +S'lithograph on Nacre paper' +p190843 +sg25267 +g27 +sg25275 +S'1961' +p190844 +sg25268 +S'Untitled' +p190845 +sg25270 +S'Glen Earl Alps' +p190846 +sa(dp190847 +g25273 +S'lithograph on Nacre paper' +p190848 +sg25267 +g27 +sg25275 +S'1961' +p190849 +sg25268 +S'Untitled' +p190850 +sg25270 +S'Glen Earl Alps' +p190851 +sa(dp190852 +g25273 +S'color lithograph on Nacre paper' +p190853 +sg25267 +g27 +sg25275 +S'1961' +p190854 +sg25268 +S'Untitled' +p190855 +sg25270 +S'Glen Earl Alps' +p190856 +sa(dp190857 +g25273 +S'lithograph on Nacre paper' +p190858 +sg25267 +g27 +sg25275 +S'1961' +p190859 +sg25268 +S'Untitled' +p190860 +sg25270 +S'Glen Earl Alps' +p190861 +sa(dp190862 +g25273 +S'lithograph on Nacre paper' +p190863 +sg25267 +g27 +sg25275 +S'1961' +p190864 +sg25268 +S'Untitled' +p190865 +sg25270 +S'Glen Earl Alps' +p190866 +sa(dp190867 +g25273 +S'lithograph on Nacre paper' +p190868 +sg25267 +g27 +sg25275 +S'1961' +p190869 +sg25268 +S'Untitled' +p190870 +sg25270 +S'Glen Earl Alps' +p190871 +sa(dp190872 +g25273 +S'lithograph on Nacre paper' +p190873 +sg25267 +g27 +sg25275 +S'1961' +p190874 +sg25268 +S'Untitled' +p190875 +sg25270 +S'Glen Earl Alps' +p190876 +sa(dp190877 +g25273 +S'color lithograph on Nacre paper' +p190878 +sg25267 +g27 +sg25275 +S'1961' +p190879 +sg25268 +S'Untitled' +p190880 +sg25270 +S'Glen Earl Alps' +p190881 +sa(dp190882 +g25273 +S'color lithograph on Nacre paper' +p190883 +sg25267 +g27 +sg25275 +S'1961' +p190884 +sg25268 +S'Untitled' +p190885 +sg25270 +S'Glen Earl Alps' +p190886 +sa(dp190887 +g25273 +S'color lithograph on Nacre paper' +p190888 +sg25267 +g27 +sg25275 +S'1961' +p190889 +sg25268 +S'Untitled' +p190890 +sg25270 +S'Glen Earl Alps' +p190891 +sa(dp190892 +g25273 +S'Rosenwald Collection' +p190893 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p190894 +sg25268 +S'Playing Card' +p190895 +sg25270 +S'German 15th Century' +p190896 +sa(dp190897 +g25273 +S'color lithograph on Nacre paper' +p190898 +sg25267 +g27 +sg25275 +S'1961' +p190899 +sg25268 +S'Untitled' +p190900 +sg25270 +S'Glen Earl Alps' +p190901 +sa(dp190902 +g25273 +S'color lithograph on Nacre paper' +p190903 +sg25267 +g27 +sg25275 +S'1961' +p190904 +sg25268 +S'Untitled' +p190905 +sg25270 +S'Glen Earl Alps' +p190906 +sa(dp190907 +g25273 +S'color lithograph on Nacre paper' +p190908 +sg25267 +g27 +sg25275 +S'1961' +p190909 +sg25268 +S'Untitled' +p190910 +sg25270 +S'Glen Earl Alps' +p190911 +sa(dp190912 +g25273 +S'color lithograph on Nacre paper' +p190913 +sg25267 +g27 +sg25275 +S'1961' +p190914 +sg25268 +S'Untitled' +p190915 +sg25270 +S'Glen Earl Alps' +p190916 +sa(dp190917 +g25273 +S'color lithograph on Arches paper' +p190918 +sg25267 +g27 +sg25275 +S'1961' +p190919 +sg25268 +S'Figure and Foliage' +p190920 +sg25270 +S'Harold Altman' +p190921 +sa(dp190922 +g25273 +S'color lithograph on Arches paper' +p190923 +sg25267 +g27 +sg25275 +S'1961' +p190924 +sg25268 +S'Reader' +p190925 +sg25270 +S'Harold Altman' +p190926 +sa(dp190927 +g25273 +S'color lithograph on Arches paper' +p190928 +sg25267 +g27 +sg25275 +S'1961' +p190929 +sg25268 +S'Man II' +p190930 +sg25270 +S'Harold Altman' +p190931 +sa(dp190932 +g25273 +S'color lithograph on Arches paper' +p190933 +sg25267 +g27 +sg25275 +S'1961' +p190934 +sg25268 +S'Park Conversation' +p190935 +sg25270 +S'Harold Altman' +p190936 +sa(dp190937 +g25273 +S'color lithograph on Arches paper' +p190938 +sg25267 +g27 +sg25275 +S'1961' +p190939 +sg25268 +S'Approaching Figure' +p190940 +sg25270 +S'Harold Altman' +p190941 +sa(dp190942 +g25273 +S'color lithograph on Arches paper' +p190943 +sg25267 +g27 +sg25275 +S'1961' +p190944 +sg25268 +S'Yellow Dress' +p190945 +sg25270 +S'Harold Altman' +p190946 +sa(dp190947 +g25273 +S'Rosenwald Collection' +p190948 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p190949 +sg25268 +S'Playing Card' +p190950 +sg25270 +S'German 15th Century' +p190951 +sa(dp190952 +g25273 +S'color lithograph on Arches paper' +p190953 +sg25267 +g27 +sg25275 +S'1961' +p190954 +sg25268 +S'Figure and Foliage II' +p190955 +sg25270 +S'Harold Altman' +p190956 +sa(dp190957 +g25273 +S'color lithograph on Arches paper' +p190958 +sg25267 +g27 +sg25275 +S'1961' +p190959 +sg25268 +S'Street with Figures' +p190960 +sg25270 +S'Harold Altman' +p190961 +sa(dp190962 +g25273 +S'color lithograph on Arches paper' +p190963 +sg25267 +g27 +sg25275 +S'1961' +p190964 +sg25268 +S'Profile' +p190965 +sg25270 +S'Harold Altman' +p190966 +sa(dp190967 +g25273 +S'color lithograph on Arches paper' +p190968 +sg25267 +g27 +sg25275 +S'1961' +p190969 +sg25268 +S'Market Street' +p190970 +sg25270 +S'Harold Altman' +p190971 +sa(dp190972 +g25273 +S'color lithograph on Arches paper' +p190973 +sg25267 +g27 +sg25275 +S'1961' +p190974 +sg25268 +S'Park Figure' +p190975 +sg25270 +S'Harold Altman' +p190976 +sa(dp190977 +g25273 +S'color lithograph on Arches paper' +p190978 +sg25267 +g27 +sg25275 +S'1961' +p190979 +sg25268 +S'Conversation II' +p190980 +sg25270 +S'Harold Altman' +p190981 +sa(dp190982 +g25273 +S'color lithograph on Arches paper' +p190983 +sg25267 +g27 +sg25275 +S'1961' +p190984 +sg25268 +S'Face to Face' +p190985 +sg25270 +S'Harold Altman' +p190986 +sa(dp190987 +g25273 +S'lithograph on Rives BFK paper' +p190988 +sg25267 +g27 +sg25275 +S'1961' +p190989 +sg25268 +S'Figure in Foliage' +p190990 +sg25270 +S'Harold Altman' +p190991 +sa(dp190992 +g25273 +S'lithograph in brown and white on Nacre paper' +p190993 +sg25267 +g27 +sg25275 +S'1961' +p190994 +sg25268 +S'Figures' +p190995 +sg25270 +S'Harold Altman' +p190996 +sa(dp190997 +g25273 +S'lithograph in brown and white on Arches paper' +p190998 +sg25267 +g27 +sg25275 +S'1961' +p190999 +sg25268 +S'Man' +p191000 +sg25270 +S'Harold Altman' +p191001 +sa(dp191002 +g25273 +S'Rosenwald Collection' +p191003 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p191004 +sg25268 +S'Playing Card' +p191005 +sg25270 +S'German 15th Century' +p191006 +sa(dp191007 +g25273 +S'lithograph on Rives BFK paper' +p191008 +sg25267 +g27 +sg25275 +S'1961' +p191009 +sg25268 +S'Matriarch I' +p191010 +sg25270 +S'Harold Altman' +p191011 +sa(dp191012 +g25273 +S'lithograph on Rives BFK paper' +p191013 +sg25267 +g27 +sg25275 +S'1961' +p191014 +sg25268 +S'Matriarch II' +p191015 +sg25270 +S'Harold Altman' +p191016 +sa(dp191017 +g25273 +S'lithograph on Barcham Green Crisbrook waterleaf paper' +p191018 +sg25267 +g27 +sg25275 +S'1961' +p191019 +sg25268 +S'Mother and Child' +p191020 +sg25270 +S'Harold Altman' +p191021 +sa(dp191022 +g25273 +S'color lithograph on Arches paper' +p191023 +sg25267 +g27 +sg25275 +S'1961' +p191024 +sg25268 +S'Park Bench' +p191025 +sg25270 +S'Harold Altman' +p191026 +sa(dp191027 +g25273 +S'lithograph in brown and white on Barcham Green Crisbrook waterleaf paper' +p191028 +sg25267 +g27 +sg25275 +S'1961' +p191029 +sg25268 +S'Seated Woman' +p191030 +sg25270 +S'Harold Altman' +p191031 +sa(dp191032 +g25273 +S'color lithograph on Arches paper' +p191033 +sg25267 +g27 +sg25275 +S'1961' +p191034 +sg25268 +S'Standing Mother and Child' +p191035 +sg25270 +S'Harold Altman' +p191036 +sa(dp191037 +g25273 +S'lithograph on Nacre paper' +p191038 +sg25267 +g27 +sg25275 +S'1961' +p191039 +sg25268 +S'Woman' +p191040 +sg25270 +S'Harold Altman' +p191041 +sa(dp191042 +g25273 +S'color lithograph on Rives BFK paper' +p191043 +sg25267 +g27 +sg25275 +S'1960' +p191044 +sg25268 +S'Breakwater' +p191045 +sg25270 +S'Garo Zareh Antreasian' +p191046 +sa(dp191047 +g25273 +S'4-color lithograph on Rives BFK paper' +p191048 +sg25267 +g27 +sg25275 +S'1961' +p191049 +sg25268 +S'Fragments (Title Page)' +p191050 +sg25270 +S'Garo Zareh Antreasian' +p191051 +sa(dp191052 +g25273 +S'portfolio with 14 lithographs including title page and colophon' +p191053 +sg25267 +g27 +sg25275 +S'1961' +p191054 +sg25268 +S'Fragments' +p191055 +sg25270 +S'Garo Zareh Antreasian' +p191056 +sa(dp191057 +g25273 +S'Rosenwald Collection' +p191058 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p191059 +sg25268 +S'Playing Card' +p191060 +sg25270 +S'German 15th Century' +p191061 +sa(dp191062 +g25273 +S'lithograph on Rives BFK paper' +p191063 +sg25267 +g27 +sg25275 +S'1961' +p191064 +sg25268 +S'Fragments I' +p191065 +sg25270 +S'Garo Zareh Antreasian' +p191066 +sa(dp191067 +g25273 +S'lithograph in two greens on Rives BFK paper' +p191068 +sg25267 +g27 +sg25275 +S'1961' +p191069 +sg25268 +S'Fragments II' +p191070 +sg25270 +S'Garo Zareh Antreasian' +p191071 +sa(dp191072 +g25273 +S'lithograph in yellow-brown on Rives BFK paper' +p191073 +sg25267 +g27 +sg25275 +S'1961' +p191074 +sg25268 +S'Fragments III' +p191075 +sg25270 +S'Garo Zareh Antreasian' +p191076 +sa(dp191077 +g25273 +S'lithograph in dark blue on Rives BFK paper' +p191078 +sg25267 +g27 +sg25275 +S'1961' +p191079 +sg25268 +S'Fragments IV' +p191080 +sg25270 +S'Garo Zareh Antreasian' +p191081 +sa(dp191082 +g25273 +S'lithograph in red-brown on Rives BFK paper' +p191083 +sg25267 +g27 +sg25275 +S'1961' +p191084 +sg25268 +S'Fragments V' +p191085 +sg25270 +S'Garo Zareh Antreasian' +p191086 +sa(dp191087 +g25273 +S'lithograph in blue-black on Rives BFK paper' +p191088 +sg25267 +g27 +sg25275 +S'1961' +p191089 +sg25268 +S'Fragments VI' +p191090 +sg25270 +S'Garo Zareh Antreasian' +p191091 +sa(dp191092 +g25273 +S'lithograph (zinc) in black on Rives BFK paper' +p191093 +sg25267 +g27 +sg25275 +S'1961' +p191094 +sg25268 +S'Fragments VII' +p191095 +sg25270 +S'Garo Zareh Antreasian' +p191096 +sa(dp191097 +g25273 +S'lithograph in yellow and sand on Rives BFK paper' +p191098 +sg25267 +g27 +sg25275 +S'1961' +p191099 +sg25268 +S'Fragments VIII' +p191100 +sg25270 +S'Garo Zareh Antreasian' +p191101 +sa(dp191102 +g25273 +S'lithograph two blacks and olive green on Rives BFKpaper' +p191103 +sg25267 +g27 +sg25275 +S'1961' +p191104 +sg25268 +S'Fragments IX' +p191105 +sg25270 +S'Garo Zareh Antreasian' +p191106 +sa(dp191107 +g25273 +S'lithograph in brown on Rives BFKpaper' +p191108 +sg25267 +g27 +sg25275 +S'1961' +p191109 +sg25268 +S'Fragments X' +p191110 +sg25270 +S'Garo Zareh Antreasian' +p191111 +sa(dp191112 +g25273 +S'Rosenwald Collection' +p191113 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p191114 +sg25268 +S'Playing Card' +p191115 +sg25270 +S'German 15th Century' +p191116 +sa(dp191117 +g25273 +S'color lithograph on Rives BFK paper' +p191118 +sg25267 +g27 +sg25275 +S'1961' +p191119 +sg25268 +S'Fragments XI' +p191120 +sg25270 +S'Garo Zareh Antreasian' +p191121 +sa(dp191122 +g25273 +S'lithograph in four colors on Rives BFK paper' +p191123 +sg25267 +g27 +sg25275 +S'1961' +p191124 +sg25268 +S'Fragments XII' +p191125 +sg25270 +S'Garo Zareh Antreasian' +p191126 +sa(dp191127 +g25273 +S'lithograph in red-brown on Rives BFK paper' +p191128 +sg25267 +g27 +sg25275 +S'1961' +p191129 +sg25268 +S'Fragments (Colophon)' +p191130 +sg25270 +S'Garo Zareh Antreasian' +p191131 +sa(dp191132 +g25273 +S'lithograph in ten colors on Rives BFK paper' +p191133 +sg25267 +g27 +sg25275 +S'1960' +p191134 +sg25268 +S'The Land' +p191135 +sg25270 +S'Garo Zareh Antreasian' +p191136 +sa(dp191137 +g25273 +S'lithograph in blackish-green on Rives BFK paper' +p191138 +sg25267 +g27 +sg25275 +S'1960' +p191139 +sg25268 +S'Sea Wake' +p191140 +sg25270 +S'Garo Zareh Antreasian' +p191141 +sa(dp191142 +g25273 +S'lithograph in five colors on Rives BFK paper' +p191143 +sg25267 +g27 +sg25275 +S'1960' +p191144 +sg25268 +S'Specimen' +p191145 +sg25270 +S'Garo Zareh Antreasian' +p191146 +sa(dp191147 +g25273 +S'lithograph in black and two blues on Nacre paper' +p191148 +sg25267 +g27 +sg25275 +S'1961' +p191149 +sg25268 +S'Tokens (Title Page)' +p191150 +sg25270 +S'Garo Zareh Antreasian' +p191151 +sa(dp191152 +g25273 +S'portfolio with 10 lithographs including title page and colophon' +p191153 +sg25267 +g27 +sg25275 +S'1961' +p191154 +sg25268 +S'Tokens' +p191155 +sg25270 +S'Garo Zareh Antreasian' +p191156 +sa(dp191157 +g25273 +S'lithograph in olive-black on Nacre paper' +p191158 +sg25267 +g27 +sg25275 +S'1961' +p191159 +sg25268 +S'Tokens I' +p191160 +sg25270 +S'Garo Zareh Antreasian' +p191161 +sa(dp191162 +g25273 +S'6-color lithograph on Nacre paper' +p191163 +sg25267 +g27 +sg25275 +S'1961' +p191164 +sg25268 +S'Tokens II' +p191165 +sg25270 +S'Garo Zareh Antreasian' +p191166 +sa(dp191167 +g25273 +S'Rosenwald Collection' +p191168 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p191169 +sg25268 +S'Playing Card' +p191170 +sg25270 +S'German 15th Century' +p191171 +sa(dp191172 +g25273 +S'lithograph in yellow and black on Rives BFK paper' +p191173 +sg25267 +g27 +sg25275 +S'1961' +p191174 +sg25268 +S'Tokens III' +p191175 +sg25270 +S'Garo Zareh Antreasian' +p191176 +sa(dp191177 +g25273 +S'lithograph violet-black on Arches paper' +p191178 +sg25267 +g27 +sg25275 +S'1961' +p191179 +sg25268 +S'Tokens IV' +p191180 +sg25270 +S'Garo Zareh Antreasian' +p191181 +sa(dp191182 +g25273 +S'lithograph in olive-black on Nacre paper' +p191183 +sg25267 +g27 +sg25275 +S'1961' +p191184 +sg25268 +S'Tokens V' +p191185 +sg25270 +S'Garo Zareh Antreasian' +p191186 +sa(dp191187 +g25273 +S'5-color lithograph on Nacre paper' +p191188 +sg25267 +g27 +sg25275 +S'1961' +p191189 +sg25268 +S'Tokens VI' +p191190 +sg25270 +S'Garo Zareh Antreasian' +p191191 +sa(dp191192 +g25273 +S'lithograph in olive-green, olive-brown and gray onNacre paper' +p191193 +sg25267 +g27 +sg25275 +S'1961' +p191194 +sg25268 +S'Tokens VII' +p191195 +sg25270 +S'Garo Zareh Antreasian' +p191196 +sa(dp191197 +g25273 +S'7-color lithograph on Nacre paper' +p191198 +sg25267 +g27 +sg25275 +S'1961' +p191199 +sg25268 +S'Tokens VIII' +p191200 +sg25270 +S'Garo Zareh Antreasian' +p191201 +sa(dp191202 +g25273 +S'lithograph in black and gray on Rives BFK paper' +p191203 +sg25267 +g27 +sg25275 +S'1961' +p191204 +sg25268 +S'Tokens (Colophon)' +p191205 +sg25270 +S'Garo Zareh Antreasian' +p191206 +sa(dp191207 +g25273 +S'lithograph (zinc) on Nacre paper' +p191208 +sg25267 +g27 +sg25275 +S'1961' +p191209 +sg25268 +S'Untitled' +p191210 +sg25270 +S'Garo Zareh Antreasian' +p191211 +sa(dp191212 +g25273 +S'embossed lithograph in violet and black on Rives BFK' +p191213 +sg25267 +g27 +sg25275 +S'1961' +p191214 +sg25268 +S'Untitled' +p191215 +sg25270 +S'Garo Zareh Antreasian' +p191216 +sa(dp191217 +g25273 +S'lithograph (zinc) in red and black on Arches paper' +p191218 +sg25267 +g27 +sg25275 +S'1962' +p191219 +sg25268 +S'Tales of the Meep' +p191220 +sg25270 +S'Fran\xc3\xa7ois Arnal' +p191221 +sa(dp191222 +g25268 +S'Apollo and Marsyas' +p191223 +sg25270 +S'Michelangelo Anselmi' +p191224 +sg25273 +S'oil on panel' +p191225 +sg25275 +S'c. 1540' +p191226 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000806.jpg' +p191227 +sg25267 +g27 +sa(dp191228 +g25273 +S'Rosenwald Collection' +p191229 +sg25267 +g27 +sg25275 +S'\nhand-colored woodcut' +p191230 +sg25268 +S'Playing Card' +p191231 +sg25270 +S'German 15th Century' +p191232 +sa(dp191233 +g25273 +S'lithograph (zinc)in two colors on Arches paper' +p191234 +sg25267 +g27 +sg25275 +S'1962' +p191235 +sg25268 +S'Targets' +p191236 +sg25270 +S'Fran\xc3\xa7ois Arnal' +p191237 +sa(dp191238 +g25273 +S'lithgoraph (zinc) on Rives BFK paper' +p191239 +sg25267 +g27 +sg25275 +S'1961' +p191240 +sg25268 +S'Untitled' +p191241 +sg25270 +S'Fran\xc3\xa7ois Arnal' +p191242 +sa(dp191243 +g25273 +S'lithograph (zinc) in two colors on Arches paper' +p191244 +sg25267 +g27 +sg25275 +S'1962' +p191245 +sg25268 +S'Circus' +p191246 +sg25270 +S'William Brice' +p191247 +sa(dp191248 +g25273 +S'lithograph (zinc) on Nacre paper' +p191249 +sg25267 +g27 +sg25275 +S'1962' +p191250 +sg25268 +S'Ensenada Windows' +p191251 +sg25270 +S'William Brice' +p191252 +sa(dp191253 +g25273 +S'lithograph (zinc) on Arches paper' +p191254 +sg25267 +g27 +sg25275 +S'1962' +p191255 +sg25268 +S'Female Figure' +p191256 +sg25270 +S'William Brice' +p191257 +sa(dp191258 +g25273 +S'lithograph on Arches paper' +p191259 +sg25267 +g27 +sg25275 +S'1962' +p191260 +sg25268 +S'Female Torso I' +p191261 +sg25270 +S'William Brice' +p191262 +sa(dp191263 +g25273 +S'lithograph on Arches paper' +p191264 +sg25267 +g27 +sg25275 +S'1962' +p191265 +sg25268 +S'Female Torso II' +p191266 +sg25270 +S'William Brice' +p191267 +sa(dp191268 +g25273 +S'lithograph (zinc) on Arches paper' +p191269 +sg25267 +g27 +sg25275 +S'1962' +p191270 +sg25268 +S'Figures and Sea' +p191271 +sg25270 +S'William Brice' +p191272 +sa(dp191273 +g25273 +S'lithograph in gray and black on Rives BFK' +p191274 +sg25267 +g27 +sg25275 +S'1962' +p191275 +sg25268 +S'Figures and Storm' +p191276 +sg25270 +S'William Brice' +p191277 +sa(dp191278 +g25273 +S'lithograph (zinc) on Crisbrook Waterleaf paper' +p191279 +sg25267 +g27 +sg25275 +S'1962' +p191280 +sg25268 +S'Figures in Landscape' +p191281 +sg25270 +S'William Brice' +p191282 +sa(dp191283 +g25273 +S'Rosenwald Collection' +p191284 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p191285 +sg25268 +S'Playing Card' +p191286 +sg25270 +S'German 15th Century' +p191287 +sa(dp191288 +g25273 +S'lithograph (zinc) on Rives BFK paper' +p191289 +sg25267 +g27 +sg25275 +S'1961' +p191290 +sg25268 +S'Interior I' +p191291 +sg25270 +S'William Brice' +p191292 +sa(dp191293 +g25273 +S'lithograph (zinc) on Rives BFK paper' +p191294 +sg25267 +g27 +sg25275 +S'1961' +p191295 +sg25268 +S'Interior II' +p191296 +sg25270 +S'William Brice' +p191297 +sa(dp191298 +g25273 +S'lithograph (zinc) on Nacre paper' +p191299 +sg25267 +g27 +sg25275 +S'1961' +p191300 +sg25268 +S'Interior III' +p191301 +sg25270 +S'William Brice' +p191302 +sa(dp191303 +g25273 +S'lithograph (zinc) on Arches paper' +p191304 +sg25267 +g27 +sg25275 +S'1961' +p191305 +sg25268 +S'Interior IV' +p191306 +sg25270 +S'William Brice' +p191307 +sa(dp191308 +g25273 +S'lithograph (zinc) on Arches paper' +p191309 +sg25267 +g27 +sg25275 +S'1961' +p191310 +sg25268 +S'Interior V' +p191311 +sg25270 +S'William Brice' +p191312 +sa(dp191313 +g25273 +S'color lithograph on Rives BFK paper' +p191314 +sg25267 +g27 +sg25275 +S'1960' +p191315 +sg25268 +S'Window Series III' +p191316 +sg25270 +S'Clinton Adams' +p191317 +sa(dp191318 +g25273 +S'lithograph (zinc) on Rives BFK paper' +p191319 +sg25267 +g27 +sg25275 +S'1962' +p191320 +sg25268 +S'Landscape with Figures' +p191321 +sg25270 +S'William Brice' +p191322 +sa(dp191323 +g25273 +S'lithograph (zinc) on Nacre paper' +p191324 +sg25267 +g27 +sg25275 +S'1962' +p191325 +sg25268 +S'Reclining Figure' +p191326 +sg25270 +S'William Brice' +p191327 +sa(dp191328 +g25273 +S'lithograph (zinc) on Arches paper' +p191329 +sg25267 +g27 +sg25275 +S'1962' +p191330 +sg25268 +S'Reclining Figure II' +p191331 +sg25270 +S'William Brice' +p191332 +sa(dp191333 +g25273 +S'lithograph on Arches paper' +p191334 +sg25267 +g27 +sg25275 +S'1962' +p191335 +sg25268 +S'Sitting Figure' +p191336 +sg25270 +S'William Brice' +p191337 +sa(dp191338 +g25273 +S'Rosenwald Collection' +p191339 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p191340 +sg25268 +S'Playing Card' +p191341 +sg25270 +S'German 15th Century' +p191342 +sa(dp191343 +g25273 +S'lithograph (zinc) on Rives BFK paper' +p191344 +sg25267 +g27 +sg25275 +S'1962' +p191345 +sg25268 +S'Standing Figure' +p191346 +sg25270 +S'William Brice' +p191347 +sa(dp191348 +g25273 +S'lithograph (zinc) on Nacre paper' +p191349 +sg25267 +g27 +sg25275 +S'unknown date\n' +p191350 +sg25268 +S'Striped Robe' +p191351 +sg25270 +S'William Brice' +p191352 +sa(dp191353 +g25273 +S'lithograph on Arches paper' +p191354 +sg25267 +g27 +sg25275 +S'1962' +p191355 +sg25268 +S'Two Figures' +p191356 +sg25270 +S'William Brice' +p191357 +sa(dp191358 +g25273 +S'lithograph (zinc) on Nacre paper' +p191359 +sg25267 +g27 +sg25275 +S'1962' +p191360 +sg25268 +S'Two Figures and Sea' +p191361 +sg25270 +S'William Brice' +p191362 +sa(dp191363 +g25273 +S'lithograph on Nacre paper' +p191364 +sg25267 +g27 +sg25275 +S'1962' +p191365 +sg25268 +S'Winter Orchard' +p191366 +sg25270 +S'William Brice' +p191367 +sa(dp191368 +g25273 +S'lithograph (zinc) on Arches paper' +p191369 +sg25267 +g27 +sg25275 +S'1962' +p191370 +sg25268 +S'Woman in a Flowered Blouse' +p191371 +sg25270 +S'William Brice' +p191372 +sa(dp191373 +g25273 +S'lithograph (zinc) in gray on Arches paper' +p191374 +sg25267 +g27 +sg25275 +S'1962' +p191375 +sg25268 +S'Young Woman' +p191376 +sg25270 +S'William Brice' +p191377 +sa(dp191378 +g25273 +S'lithograph in green-black on Nacre paper' +p191379 +sg25267 +g27 +sg25275 +S'1960' +p191380 +sg25268 +S'The Room' +p191381 +sg25270 +S'William Brown' +p191382 +sa(dp191383 +g25273 +S'lithograph on Arches paper' +p191384 +sg25267 +g27 +sg25275 +S'1962' +p191385 +sg25268 +S'Monica Variety' +p191386 +sg25270 +S'David Budd' +p191387 +sa(dp191388 +g25273 +S'lithograph in olive-black on Nacre paper' +p191389 +sg25267 +g27 +sg25275 +S'1961' +p191390 +sg25268 +S'Untitled' +p191391 +sg25270 +S'Louis Bunce' +p191392 +sa(dp191393 +g25273 +S'Rosenwald Collection' +p191394 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p191395 +sg25268 +S'Playing Card' +p191396 +sg25270 +S'German 15th Century' +p191397 +sa(dp191398 +g25273 +S'lithograph in yellow, green and red-black on Nacrepaper' +p191399 +sg25267 +g27 +sg25275 +S'1961' +p191400 +sg25268 +S'Untitled' +p191401 +sg25270 +S'Louis Bunce' +p191402 +sa(dp191403 +g25273 +S'lithograph in tan, blue and brown-black on Nacre paper' +p191404 +sg25267 +g27 +sg25275 +S'1961' +p191405 +sg25268 +S'Untitled' +p191406 +sg25270 +S'Louis Bunce' +p191407 +sa(dp191408 +g25273 +S'lithograph on Nacre paper' +p191409 +sg25267 +g27 +sg25275 +S'1961' +p191410 +sg25268 +S'Untitled' +p191411 +sg25270 +S'Louis Bunce' +p191412 +sa(dp191413 +g25273 +S'lithograph in gray-black on Nacre paper' +p191414 +sg25267 +g27 +sg25275 +S'1961' +p191415 +sg25268 +S'Untitled' +p191416 +sg25270 +S'Louis Bunce' +p191417 +sa(dp191418 +g25273 +S'lithograph in blue and black' +p191419 +sg25267 +g27 +sg25275 +S'1961' +p191420 +sg25268 +S'Untitled' +p191421 +sg25270 +S'Louis Bunce' +p191422 +sa(dp191423 +g25273 +S'lithograph on Nacre paper' +p191424 +sg25267 +g27 +sg25275 +S'1961' +p191425 +sg25268 +S'Untitled' +p191426 +sg25270 +S'Louis Bunce' +p191427 +sa(dp191428 +g25273 +S'lithograph in ochre, gray and brown on Nacre paper' +p191429 +sg25267 +g27 +sg25275 +S'1961' +p191430 +sg25268 +S'Untitled' +p191431 +sg25270 +S'Louis Bunce' +p191432 +sa(dp191433 +g25273 +S'lithograph in two oranges, violet and olive-brown on Nacre paper' +p191434 +sg25267 +g27 +sg25275 +S'1961' +p191435 +sg25268 +S'Untitled' +p191436 +sg25270 +S'Louis Bunce' +p191437 +sa(dp191438 +g25273 +S'lithograph in two colors on Nacre paper' +p191439 +sg25267 +g27 +sg25275 +S'1961' +p191440 +sg25268 +S'Untitled' +p191441 +sg25270 +S'Louis Bunce' +p191442 +sa(dp191443 +g25273 +S'lithograph in tan, gray, orange and black on Nacrepaper' +p191444 +sg25267 +g27 +sg25275 +S'1961' +p191445 +sg25268 +S'Untitled' +p191446 +sg25270 +S'Louis Bunce' +p191447 +sa(dp191448 +g25273 +S'Rosenwald Collection' +p191449 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p191450 +sg25268 +S'Playing Card' +p191451 +sg25270 +S'German 15th Century' +p191452 +sa(dp191453 +g25273 +S'lithograph in pale gray and black on Nacre paper' +p191454 +sg25267 +g27 +sg25275 +S'1961' +p191455 +sg25268 +S'Untitled' +p191456 +sg25270 +S'Louis Bunce' +p191457 +sa(dp191458 +g25273 +S'lithograph in blue, brown and blue-green on Nacre paper' +p191459 +sg25267 +g27 +sg25275 +S'1961' +p191460 +sg25268 +S'Untitled' +p191461 +sg25270 +S'Louis Bunce' +p191462 +sa(dp191463 +g25273 +S'lithograph in beige-pink and black on Nacre paper' +p191464 +sg25267 +g27 +sg25275 +S'1961' +p191465 +sg25268 +S'Untitled' +p191466 +sg25270 +S'Louis Bunce' +p191467 +sa(dp191468 +g25273 +S'lithograph in two colors on Nacre paper' +p191469 +sg25267 +g27 +sg25275 +S'1961' +p191470 +sg25268 +S'Untitled' +p191471 +sg25270 +S'Louis Bunce' +p191472 +sa(dp191473 +g25273 +S'lithograph on Nacre paper' +p191474 +sg25267 +g27 +sg25275 +S'1961' +p191475 +sg25268 +S'Untitled' +p191476 +sg25270 +S'Louis Bunce' +p191477 +sa(dp191478 +g25273 +S'lithograph in two colors on Nacre paper' +p191479 +sg25267 +g27 +sg25275 +S'1961' +p191480 +sg25268 +S'Untitled' +p191481 +sg25270 +S'Louis Bunce' +p191482 +sa(dp191483 +g25273 +S'lithograph on Rives BFK paper' +p191484 +sg25267 +g27 +sg25275 +S'1962' +p191485 +sg25268 +S'After the Hunt' +p191486 +sg25270 +S'Wesley Chamberlin' +p191487 +sa(dp191488 +g25273 +S'lithograph (zinc) on Rives BFK' +p191489 +sg25267 +g27 +sg25275 +S'1962' +p191490 +sg25268 +S'Household Table with Priest' +p191491 +sg25270 +S'Wesley Chamberlin' +p191492 +sa(dp191493 +g25273 +S'lithograph (zinc) on Rives BFK' +p191494 +sg25267 +g27 +sg25275 +S'1962' +p191495 +sg25268 +S'Red Queen and Samuel' +p191496 +sg25270 +S'Wesley Chamberlin' +p191497 +sa(dp191498 +g25273 +S'lithograph (zinc) on Rives BFK' +p191499 +sg25267 +g27 +sg25275 +S'1962' +p191500 +sg25268 +S'Still Life for a Catholic Vinter' +p191501 +sg25270 +S'Wesley Chamberlin' +p191502 +sa(dp191503 +g25273 +S'Rosenwald Collection' +p191504 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p191505 +sg25268 +S'Playing Card' +p191506 +sg25270 +S'German 15th Century' +p191507 +sa(dp191508 +g25273 +S'lithograph (zinc) on Rives BFK' +p191509 +sg25267 +g27 +sg25275 +S'1962' +p191510 +sg25268 +S"Sunday's Ladles" +p191511 +sg25270 +S'Wesley Chamberlin' +p191512 +sa(dp191513 +g25273 +S'lithograph on Nacre paper' +p191514 +sg25267 +g27 +sg25275 +S'unknown date\n' +p191515 +sg25268 +S'Untitled' +p191516 +sg25270 +S'Jos\xc3\xa9 Luis Cuevas' +p191517 +sa(dp191518 +g25273 +S'lithograph on Arches paper' +p191519 +sg25267 +g27 +sg25275 +S'1962' +p191520 +sg25268 +S'L.A. Landscape' +p191521 +sg25270 +S'Richard Diebenkorn' +p191522 +sa(dp191523 +g25273 +S'lithograph (zinc) on Arches paper' +p191524 +sg25267 +g27 +sg25275 +S'1962' +p191525 +sg25268 +S'Landscape with Awning' +p191526 +sg25270 +S'Richard Diebenkorn' +p191527 +sa(dp191528 +g25273 +S'lithograph (zinc) on Hosho Pure paper' +p191529 +sg25267 +g27 +sg25275 +S'1962' +p191530 +sg25268 +S'M.W.' +p191531 +sg25270 +S'Richard Diebenkorn' +p191532 +sa(dp191533 +g25273 +S'lithograph on buff Arches paper' +p191534 +sg25267 +g27 +sg25275 +S'1962' +p191535 +sg25268 +S'Nude' +p191536 +sg25270 +S'Richard Diebenkorn' +p191537 +sa(dp191538 +g25268 +S'Reclining Figure I' +p191539 +sg25270 +S'Richard Diebenkorn' +p191540 +sg25273 +S'lithograph on Arches paper' +p191541 +sg25275 +S'1962' +p191542 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a72.jpg' +p191543 +sg25267 +g27 +sa(dp191544 +g25273 +S'color lithograph on Arches paper' +p191545 +sg25267 +g27 +sg25275 +S'1962' +p191546 +sg25268 +S'Reclining Figure II' +p191547 +sg25270 +S'Richard Diebenkorn' +p191548 +sa(dp191549 +g25273 +S'lithograph on Arches paper' +p191550 +sg25267 +g27 +sg25275 +S'1962' +p191551 +sg25268 +S'Reclining Woman' +p191552 +sg25270 +S'Richard Diebenkorn' +p191553 +sa(dp191554 +g25273 +S'lithograph (zinc) on buff Arches paper' +p191555 +sg25267 +g27 +sg25275 +S'1962' +p191556 +sg25268 +S'Seascape' +p191557 +sg25270 +S'Richard Diebenkorn' +p191558 +sa(dp191559 +g25273 +S'Rosenwald Collection' +p191560 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p191561 +sg25268 +S'Playing Card' +p191562 +sg25270 +S'German 15th Century' +p191563 +sa(dp191564 +g25273 +S'lithograph (zinc) on Arches paper' +p191565 +sg25267 +g27 +sg25275 +S'1962' +p191566 +sg25268 +S'Sleeping Girl' +p191567 +sg25270 +S'Richard Diebenkorn' +p191568 +sa(dp191569 +g25273 +S'lithograph on Nacre paper' +p191570 +sg25267 +g27 +sg25275 +S'1961' +p191571 +sg25268 +S'Untitled' +p191572 +sg25270 +S'Richard Diebenkorn' +p191573 +sa(dp191574 +g25273 +S'lithograph on Arches paper' +p191575 +sg25267 +g27 +sg25275 +S'1961' +p191576 +sg25268 +S'Untitled' +p191577 +sg25270 +S'Richard Diebenkorn' +p191578 +sa(dp191579 +g25273 +S'lithograph (zinc) on Barcham Greene Crispbook Waterleaf paper' +p191580 +sg25267 +g27 +sg25275 +S'1961' +p191581 +sg25268 +S'Untitled' +p191582 +sg25270 +S'Richard Diebenkorn' +p191583 +sa(dp191584 +g25273 +S'lithograph (zinc) on Barcham Greene Crispbook Waterleaf paper' +p191585 +sg25267 +g27 +sg25275 +S'1961' +p191586 +sg25268 +S'Untitled' +p191587 +sg25270 +S'Richard Diebenkorn' +p191588 +sa(dp191589 +g25273 +S'lithograph on Arches paper' +p191590 +sg25267 +g27 +sg25275 +S'1962' +p191591 +sg25268 +S'Untitled' +p191592 +sg25270 +S'Tadeusz Dominik' +p191593 +sa(dp191594 +g25273 +S'lithograph on Nacre paper' +p191595 +sg25267 +g27 +sg25275 +S'1962' +p191596 +sg25268 +S'Untitled' +p191597 +sg25270 +S'Tadeusz Dominik' +p191598 +sa(dp191599 +g25273 +S'lithograph in maroon on Arches paper' +p191600 +sg25267 +g27 +sg25275 +S'1963' +p191601 +sg25268 +S'Valley' +p191602 +sg25270 +S'Lynne Drexler' +p191603 +sa(dp191604 +g25273 +S'lithograph (zinc) on Arches paper' +p191605 +sg25267 +g27 +sg25275 +S'1963' +p191606 +sg25268 +S'Flight IV' +p191607 +sg25270 +S'John E. Dowell, Jr.' +p191608 +sa(dp191609 +g25273 +S'lithograph (zinc) on Arches paper' +p191610 +sg25267 +g27 +sg25275 +S'1963' +p191611 +sg25268 +S'Icarus' +p191612 +sg25270 +S'John E. Dowell, Jr.' +p191613 +sa(dp191614 +g25273 +S'Rosenwald Collection' +p191615 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p191616 +sg25268 +S'Playing Card' +p191617 +sg25270 +S'German 15th Century' +p191618 +sa(dp191619 +g25273 +S'lithograph in green, violet, and blue on Nacre paper' +p191620 +sg25267 +g27 +sg25275 +S'1963' +p191621 +sg25268 +S'Window onto Valley' +p191622 +sg25270 +S'Lynne Drexler' +p191623 +sa(dp191624 +g25273 +S'lithograph in blue, yellow and red-brown' +p191625 +sg25267 +g27 +sg25275 +S'1962' +p191626 +sg25268 +S'Young Sarai' +p191627 +sg25270 +S'Caroline Wogan Durieux' +p191628 +sa(dp191629 +g25273 +S'lithograph in gray and black on Nacre paper' +p191630 +sg25267 +g27 +sg25275 +S'1960' +p191631 +sg25268 +S'Alamogordo' +p191632 +sg25270 +S'Jules Engel' +p191633 +sa(dp191634 +g25273 +S'lithograph on Nacre paper' +p191635 +sg25267 +g27 +sg25275 +S'1960' +p191636 +sg25268 +S'Ambush' +p191637 +sg25270 +S'Jules Engel' +p191638 +sa(dp191639 +g25273 +S'lithograph (zinc) on Nacre paper' +p191640 +sg25267 +g27 +sg25275 +S'1960/1961' +p191641 +sg25268 +S'Constant Image' +p191642 +sg25270 +S'Jules Engel' +p191643 +sa(dp191644 +g25273 +S'lithograph (zinc) on Nacre paper' +p191645 +sg25267 +g27 +sg25275 +S'1960' +p191646 +sg25268 +S'Curfew' +p191647 +sg25270 +S'Jules Engel' +p191648 +sa(dp191649 +g25273 +S'lithograph (zinc) on Nacre paper' +p191650 +sg25267 +g27 +sg25275 +S'1961' +p191651 +sg25268 +S'Landscape' +p191652 +sg25270 +S'Jules Engel' +p191653 +sa(dp191654 +g25273 +S'lithograph (zinc) in green and black on Nacre paper' +p191655 +sg25267 +g27 +sg25275 +S'1961' +p191656 +sg25268 +S'Meadow' +p191657 +sg25270 +S'Jules Engel' +p191658 +sa(dp191659 +g25273 +S'lithograph (zinc) in red and black on Nacre paper' +p191660 +sg25267 +g27 +sg25275 +S'1961' +p191661 +sg25268 +S'Red Poppies' +p191662 +sg25270 +S'Jules Engel' +p191663 +sa(dp191664 +g25273 +S'lithograph (zinc) on Nacre paper' +p191665 +sg25267 +g27 +sg25275 +S'1960/1961' +p191666 +sg25268 +S'Winter Landscape' +p191667 +sg25270 +S'Jules Engel' +p191668 +sa(dp191669 +g25273 +S'Rosenwald Collection' +p191670 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p191671 +sg25268 +S'Playing Card' +p191672 +sg25270 +S'German 15th Century' +p191673 +sa(dp191674 +g25273 +S'lithograph on Nacre paper' +p191675 +sg25267 +g27 +sg25275 +S'1960' +p191676 +sg25268 +S'Execution' +p191677 +sg25270 +S'Connor Everts' +p191678 +sa(dp191679 +g25273 +S'lithograph on Nacre paper' +p191680 +sg25267 +g27 +sg25275 +S'1960' +p191681 +sg25268 +S'Two Faces of Fear' +p191682 +sg25270 +S'Connor Everts' +p191683 +sa(dp191684 +g25273 +S'5-color lithograph (stone and zinc) on Arches paper' +p191685 +sg25267 +g27 +sg25275 +S'1963' +p191686 +sg25268 +S'Light Violet' +p191687 +sg25270 +S'Sam Francis' +p191688 +sa(dp191689 +g25273 +S'4-color lithograph (stone and zinc)' +p191690 +sg25267 +g27 +sg25275 +S'1963' +p191691 +sg25268 +S'Untitled' +p191692 +sg25270 +S'Sam Francis' +p191693 +sa(dp191694 +g25273 +S'lithograph in black on Arches paper' +p191695 +sg25267 +g27 +sg25275 +S'1963' +p191696 +sg25268 +S'Dark Egg' +p191697 +sg25270 +S'Sam Francis' +p191698 +sa(dp191699 +g25273 +S'color lithograph (zinc and stone) on Arches paper' +p191700 +sg25267 +g27 +sg25275 +S'1963' +p191701 +sg25268 +S'Bright Nothing' +p191702 +sg25270 +S'Sam Francis' +p191703 +sa(dp191704 +g25273 +S'lithograph (zinc) in red and blue on Arches paper' +p191705 +sg25267 +g27 +sg25275 +S'1963' +p191706 +sg25268 +S'Chinese Planet' +p191707 +sg25270 +S'Sam Francis' +p191708 +sa(dp191709 +g25273 +S'lithograph (zinc) in yellow, violet and red on Arches paper' +p191710 +sg25267 +g27 +sg25275 +S'1963' +p191711 +sg25268 +S'Yellow Speck' +p191712 +sg25270 +S'Sam Francis' +p191713 +sa(dp191714 +g25273 +S'lithograph (zinc) in blue, yellow and red on Arches paper' +p191715 +sg25267 +g27 +sg25275 +S'1963' +p191716 +sg25268 +S'Another Disappearance' +p191717 +sg25270 +S'Sam Francis' +p191718 +sa(dp191719 +g25273 +S'lithograph (stone) in black on Arches paper' +p191720 +sg25267 +g27 +sg25275 +S'1963' +p191721 +sg25268 +S'Stone Cloud' +p191722 +sg25270 +S'Sam Francis' +p191723 +sa(dp191724 +g25273 +S'Rosenwald Collection' +p191725 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p191726 +sg25268 +S'Playing Card' +p191727 +sg25270 +S'German 15th Century' +p191728 +sa(dp191729 +g25273 +S'lithograph (zinc) in yellow and blue on Arches paper' +p191730 +sg25267 +g27 +sg25275 +S'1963' +p191731 +sg25268 +S'Mercury' +p191732 +sg25270 +S'Sam Francis' +p191733 +sa(dp191734 +g25273 +S'lithograph (zinc) in black on Arches paper' +p191735 +sg25267 +g27 +sg25275 +S'1963' +p191736 +sg25268 +S'Essai' +p191737 +sg25270 +S'Sam Francis' +p191738 +sa(dp191739 +g25273 +S'lithograph (zinc) in yellow, orange and blue on Rives BFK paper' +p191740 +sg25267 +g27 +sg25275 +S'1963' +p191741 +sg25268 +S'Flying Love' +p191742 +sg25270 +S'Sam Francis' +p191743 +sa(dp191744 +g25273 +S'lithograph on Nacre paper' +p191745 +sg25267 +g27 +sg25275 +S'unknown date\n' +p191746 +sg25268 +S'Death of a Poet I' +p191747 +sg25270 +S'Antonio Frasconi' +p191748 +sa(dp191749 +g25273 +S'lithograph on Rives BFK paper' +p191750 +sg25267 +g27 +sg25275 +S'1962' +p191751 +sg25268 +S'Death of a Poet II' +p191752 +sg25270 +S'Antonio Frasconi' +p191753 +sa(dp191754 +g25273 +S'lithograph (stone) on Nacre paper' +p191755 +sg25267 +g27 +sg25275 +S'1962' +p191756 +sg25268 +S'Oda a Lorca (Colophon)' +p191757 +sg25270 +S'Antonio Frasconi' +p191758 +sa(dp191759 +g25273 +S'portfolio with 16 lithographs including title page and colophon' +p191760 +sg25267 +g27 +sg25275 +S'published 1962' +p191761 +sg25268 +S'Oda a Lorca' +p191762 +sg25270 +S'Antonio Frasconi' +p191763 +sa(dp191764 +g25273 +S'lithograph (stone) on Nacre paper' +p191765 +sg25267 +g27 +sg25275 +S'1962' +p191766 +sg25268 +S'Oda a Lorca (Title Page)' +p191767 +sg25270 +S'Antonio Frasconi' +p191768 +sa(dp191769 +g25273 +S'lithograph (zinc) on Nacre paper' +p191770 +sg25267 +g27 +sg25275 +S'1962' +p191771 +sg25268 +S'El poeta y la Muerta' +p191772 +sg25270 +S'Antonio Frasconi' +p191773 +sa(dp191774 +g25273 +S'Rosenwald Collection' +p191775 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p191776 +sg25268 +S'Playing Card' +p191777 +sg25270 +S'German 15th Century' +p191778 +sa(dp191779 +g25273 +S'lithograph in rose and brown on Nacre paper' +p191780 +sg25267 +g27 +sg25275 +S'1962' +p191781 +sg25268 +S'Garcia Lorca' +p191782 +sg25270 +S'Antonio Frasconi' +p191783 +sa(dp191784 +g25273 +S'lithograph on Nacre paper' +p191785 +sg25267 +g27 +sg25275 +S'1962' +p191786 +sg25268 +S'Guns' +p191787 +sg25270 +S'Antonio Frasconi' +p191788 +sa(dp191789 +g25273 +S'lithograph on Nacre paper' +p191790 +sg25267 +g27 +sg25275 +S'1962' +p191791 +sg25268 +S'Stake' +p191792 +sg25270 +S'Antonio Frasconi' +p191793 +sa(dp191794 +g25273 +S'lithograph (zinc and stone) in gray and black on Nacre paper' +p191795 +sg25267 +g27 +sg25275 +S'1962' +p191796 +sg25268 +S'Falling' +p191797 +sg25270 +S'Antonio Frasconi' +p191798 +sa(dp191799 +g25273 +S'lithograph on Nacre Paper' +p191800 +sg25267 +g27 +sg25275 +S'1962' +p191801 +sg25268 +S'Dead Poet' +p191802 +sg25270 +S'Antonio Frasconi' +p191803 +sa(dp191804 +g25273 +S'lithograph (stone) on Nacre paper' +p191805 +sg25267 +g27 +sg25275 +S'1962' +p191806 +sg25268 +S'Marching' +p191807 +sg25270 +S'Antonio Frasconi' +p191808 +sa(dp191809 +g25273 +S'lithograph (stone) on Nacre paper' +p191810 +sg25267 +g27 +sg25275 +S'1962' +p191811 +sg25268 +S'Franco I' +p191812 +sg25270 +S'Antonio Frasconi' +p191813 +sa(dp191814 +g25273 +S'lithograph on Nacre paper' +p191815 +sg25267 +g27 +sg25275 +S'1962' +p191816 +sg25268 +S'Franco II' +p191817 +sg25270 +S'Antonio Frasconi' +p191818 +sa(dp191819 +g25273 +S'lithograph (zinc) on Nacre paper' +p191820 +sg25267 +g27 +sg25275 +S'1962' +p191821 +sg25268 +S'Franco III' +p191822 +sg25270 +S'Antonio Frasconi' +p191823 +sa(dp191824 +g25273 +S'lithograph on Nacre paper' +p191825 +sg25267 +g27 +sg25275 +S'1962' +p191826 +sg25268 +S'Dead and Bats' +p191827 +sg25270 +S'Antonio Frasconi' +p191828 +sa(dp191829 +g25273 +S'Rosenwald Collection' +p191830 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p191831 +sg25268 +S'Playing Card' +p191832 +sg25270 +S'German 15th Century' +p191833 +sa(dp191834 +g25273 +S'lithograph (stone) in red-brown and black' +p191835 +sg25267 +g27 +sg25275 +S'1962' +p191836 +sg25268 +S'Monster' +p191837 +sg25270 +S'Antonio Frasconi' +p191838 +sa(dp191839 +g25273 +S'lithograph (stone and zinc) in green and black on Nacre paper' +p191840 +sg25267 +g27 +sg25275 +S'1962' +p191841 +sg25268 +S'Moon' +p191842 +sg25270 +S'Antonio Frasconi' +p191843 +sa(dp191844 +g25273 +S'lithograph (stone) in brown and black' +p191845 +sg25267 +g27 +sg25275 +S'1962' +p191846 +sg25268 +S'Memento' +p191847 +sg25270 +S'Antonio Frasconi' +p191848 +sa(dp191849 +g25273 +S'lithograph on Rives BFK paper' +p191850 +sg25267 +g27 +sg25275 +S'1962' +p191851 +sg25268 +S'One' +p191852 +sg25270 +S'Elias Friedensohn' +p191853 +sa(dp191854 +g25273 +S'lithograph on Nacre paper' +p191855 +sg25267 +g27 +sg25275 +S'1962' +p191856 +sg25268 +S'Three' +p191857 +sg25270 +S'Elias Friedensohn' +p191858 +sa(dp191859 +g25273 +S'lithograph in black on Arches paper' +p191860 +sg25267 +g27 +sg25275 +S'1962' +p191861 +sg25268 +S'Homage to Los Angeles' +p191862 +sg25270 +S'Winfred Gaul' +p191863 +sa(dp191864 +g25273 +S'lithograph (stone) on Nacre paper' +p191865 +sg25267 +g27 +sg25275 +S'1963' +p191866 +sg25268 +S'Untitled' +p191867 +sg25270 +S'Philip Guston' +p191868 +sa(dp191869 +g25273 +S'lithograph (zinc) on Nacre paper' +p191870 +sg25267 +g27 +sg25275 +S'1963' +p191871 +sg25268 +S'Untitled' +p191872 +sg25270 +S'Philip Guston' +p191873 +sa(dp191874 +g25273 +S'lithograph (zinc) in black on Arches paper' +p191875 +sg25267 +g27 +sg25275 +S'1962' +p191876 +sg25268 +S'Vesta' +p191877 +sg25270 +S'Irwin Hollander' +p191878 +sa(dp191879 +g25273 +S'5-color lithograph (stone and zinc) on Nacre paper' +p191880 +sg25267 +g27 +sg25275 +S'1962' +p191881 +sg25268 +S'Concerto' +p191882 +sg25270 +S'Bohuslav Horak' +p191883 +sa(dp191884 +g25273 +S'Rosenwald Collection' +p191885 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p191886 +sg25268 +S'Playing Card' +p191887 +sg25270 +S'German 15th Century' +p191888 +sa(dp191889 +g25273 +S'4-color lithograph (stone and zinc) on Barcham Green paper' +p191890 +sg25267 +g27 +sg25275 +S'1962' +p191891 +sg25268 +S'Couple with Red Flower' +p191892 +sg25270 +S'Bohuslav Horak' +p191893 +sa(dp191894 +g25273 +S'6-color lithograph (stone and zinc) on Nacre' +p191895 +sg25267 +g27 +sg25275 +S'1961' +p191896 +sg25268 +S'Flowers' +p191897 +sg25270 +S'Bohuslav Horak' +p191898 +sa(dp191899 +g25273 +S'lithograph in red and ochre (stone and zinc) on Arches paper' +p191900 +sg25267 +g27 +sg25275 +S'1961' +p191901 +sg25268 +S'Untitled' +p191902 +sg25270 +S'Bohuslav Horak' +p191903 +sa(dp191904 +g25273 +S'lithograph in black and red-purple (stone and zinc) on Rives BFK paper' +p191905 +sg25267 +g27 +sg25275 +S'1962' +p191906 +sg25268 +S'Untitled' +p191907 +sg25270 +S'Bohuslav Horak' +p191908 +sa(dp191909 +g25273 +S'lithograph in black and white (zinc) on Rives BFK paper' +p191910 +sg25267 +g27 +sg25275 +S'1962' +p191911 +sg25268 +S'Untitled' +p191912 +sg25270 +S'Bohuslav Horak' +p191913 +sa(dp191914 +g25273 +S'lithograph in black and white (zinc) on Rives BFK paper' +p191915 +sg25267 +g27 +sg25275 +S'1962' +p191916 +sg25268 +S'Untitled' +p191917 +sg25270 +S'Bohuslav Horak' +p191918 +sa(dp191919 +g25273 +S'4-color lithograph (stone and zinc) on Barcham Green paper' +p191920 +sg25267 +g27 +sg25275 +S'1962' +p191921 +sg25268 +S'Untitled' +p191922 +sg25270 +S'Bohuslav Horak' +p191923 +sa(dp191924 +g25273 +S'4-color lithograph (stone and zinc) on Nacre paper' +p191925 +sg25267 +g27 +sg25275 +S'1963' +p191926 +sg25268 +S'Untitled' +p191927 +sg25270 +S'Bohuslav Horak' +p191928 +sa(dp191929 +g25273 +S'6-color lithograph (stone and zinc) on Nacre paper' +p191930 +sg25267 +g27 +sg25275 +S'1963' +p191931 +sg25268 +S'Untitled' +p191932 +sg25270 +S'Bohuslav Horak' +p191933 +sa(dp191934 +g25273 +S'5-color lithograph (zinc) on Barcham Green paper' +p191935 +sg25267 +g27 +sg25275 +S'1963' +p191936 +sg25268 +S'Untitled' +p191937 +sg25270 +S'Bohuslav Horak' +p191938 +sa(dp191939 +g25273 +S'Rosenwald Collection' +p191940 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p191941 +sg25268 +S'Playing Card' +p191942 +sg25270 +S'German 15th Century' +p191943 +sa(dp191944 +g25273 +S'lithograph' +p191945 +sg25267 +g27 +sg25275 +S'1963' +p191946 +sg25268 +S'Incredible Speed' +p191947 +sg25270 +S'John Hultberg' +p191948 +sa(dp191949 +g25273 +S'lithograph' +p191950 +sg25267 +g27 +sg25275 +S'1963' +p191951 +sg25268 +S'Storm Driver' +p191952 +sg25270 +S'John Hultberg' +p191953 +sa(dp191954 +g25273 +S'lithograph in gray and black on Arches paper' +p191955 +sg25267 +g27 +sg25275 +S'1963' +p191956 +sg25268 +S'Tractor Demon' +p191957 +sg25270 +S'John Hultberg' +p191958 +sa(dp191959 +g25273 +S'lithograph' +p191960 +sg25267 +g27 +sg25275 +S'1963' +p191961 +sg25268 +S'Escape in Anguish' +p191962 +sg25270 +S'John Hultberg' +p191963 +sa(dp191964 +g25273 +S'lithograph' +p191965 +sg25267 +g27 +sg25275 +S'1963' +p191966 +sg25268 +S'Green Earthquake' +p191967 +sg25270 +S'John Hultberg' +p191968 +sa(dp191969 +g25273 +S'lithograph' +p191970 +sg25267 +g27 +sg25275 +S'1963' +p191971 +sg25268 +S'Great Broken Wing' +p191972 +sg25270 +S'John Hultberg' +p191973 +sa(dp191974 +g25273 +S'lithograph' +p191975 +sg25267 +g27 +sg25275 +S'1963' +p191976 +sg25268 +S'Take-Off in Storm' +p191977 +sg25270 +S'John Hultberg' +p191978 +sa(dp191979 +g25273 +S'lithograph' +p191980 +sg25267 +g27 +sg25275 +S'1963' +p191981 +sg25268 +S'Hurricane' +p191982 +sg25270 +S'John Hultberg' +p191983 +sa(dp191984 +g25273 +S'lithograph' +p191985 +sg25267 +g27 +sg25275 +S'1963' +p191986 +sg25268 +S'In Prison' +p191987 +sg25270 +S'John Hultberg' +p191988 +sa(dp191989 +g25273 +S'lithograph' +p191990 +sg25267 +g27 +sg25275 +S'1963' +p191991 +sg25268 +S'Garage' +p191992 +sg25270 +S'John Hultberg' +p191993 +sa(dp191994 +g25273 +S'Rosenwald Collection' +p191995 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p191996 +sg25268 +S'Playing Card' +p191997 +sg25270 +S'German 15th Century' +p191998 +sa(dp191999 +g25273 +S'lithograph' +p192000 +sg25267 +g27 +sg25275 +S'1963' +p192001 +sg25268 +S'My Roof of Cloud' +p192002 +sg25270 +S'John Hultberg' +p192003 +sa(dp192004 +g25273 +S'lithograph' +p192005 +sg25267 +g27 +sg25275 +S'1963' +p192006 +sg25268 +S'Dreamer and Dreams' +p192007 +sg25270 +S'John Hultberg' +p192008 +sa(dp192009 +g25273 +S'lithograph' +p192010 +sg25267 +g27 +sg25275 +S'1963' +p192011 +sg25268 +S'Loft Explosion' +p192012 +sg25270 +S'John Hultberg' +p192013 +sa(dp192014 +g25273 +S'lithograph' +p192015 +sg25267 +g27 +sg25275 +S'1963' +p192016 +sg25268 +S'Porch Serenity' +p192017 +sg25270 +S'John Hultberg' +p192018 +sa(dp192019 +g25273 +S'lithograph' +p192020 +sg25267 +g27 +sg25275 +S'1963' +p192021 +sg25268 +S'Phosphorescence' +p192022 +sg25270 +S'John Hultberg' +p192023 +sa(dp192024 +g25273 +S'lithograph' +p192025 +sg25267 +g27 +sg25275 +S'1963' +p192026 +sg25268 +S'Sleep-Walk Forest' +p192027 +sg25270 +S'John Hultberg' +p192028 +sa(dp192029 +g25273 +S'lithograph' +p192030 +sg25267 +g27 +sg25275 +S'1963' +p192031 +sg25268 +S'Red Cloud Wing' +p192032 +sg25270 +S'John Hultberg' +p192033 +sa(dp192034 +g25273 +S'lithograph' +p192035 +sg25267 +g27 +sg25275 +S'1963' +p192036 +sg25268 +S'The Plague' +p192037 +sg25270 +S'John Hultberg' +p192038 +sa(dp192039 +g25273 +S'lithograph' +p192040 +sg25267 +g27 +sg25275 +S'1963' +p192041 +sg25268 +S'Haunted Tent' +p192042 +sg25270 +S'John Hultberg' +p192043 +sa(dp192044 +g25273 +S'lithograph' +p192045 +sg25267 +g27 +sg25275 +S'1963' +p192046 +sg25268 +S'Head in Landscape' +p192047 +sg25270 +S'John Hultberg' +p192048 +sa(dp192049 +g25273 +S'Rosenwald Collection' +p192050 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p192051 +sg25268 +S'Playing Card' +p192052 +sg25270 +S'German 15th Century' +p192053 +sa(dp192054 +g25273 +S'lithograph' +p192055 +sg25267 +g27 +sg25275 +S'1963' +p192056 +sg25268 +S'Bovitch in Egypt' +p192057 +sg25270 +S'John Paul Jones' +p192058 +sa(dp192059 +g25273 +S'lithograph on Arches paper' +p192060 +sg25267 +g27 +sg25275 +S'unknown date\n' +p192061 +sg25268 +S'Bovitch in Italy' +p192062 +sg25270 +S'John Paul Jones' +p192063 +sa(dp192064 +g25273 +S'lithograph on Nacre paper' +p192065 +sg25267 +g27 +sg25275 +S'1962' +p192066 +sg25268 +S"Friday's Lesson" +p192067 +sg25270 +S'John Paul Jones' +p192068 +sa(dp192069 +g25273 +S'lithograph on Arches paper' +p192070 +sg25267 +g27 +sg25275 +S'1963' +p192071 +sg25268 +S'Girl for Goya' +p192072 +sg25270 +S'John Paul Jones' +p192073 +sa(dp192074 +g25273 +S'lithograph on Arches paper' +p192075 +sg25267 +g27 +sg25275 +S'1963' +p192076 +sg25268 +S'Girl with Fat Legs' +p192077 +sg25270 +S'John Paul Jones' +p192078 +sa(dp192079 +g25273 +S'lithograph on Arches paper' +p192080 +sg25267 +g27 +sg25275 +S'1963' +p192081 +sg25268 +S'Night Lady' +p192082 +sg25270 +S'John Paul Jones' +p192083 +sa(dp192084 +g25273 +S'lithograph on Buff Arches paper' +p192085 +sg25267 +g27 +sg25275 +S'1963' +p192086 +sg25268 +S'Spanish Woman' +p192087 +sg25270 +S'John Paul Jones' +p192088 +sa(dp192089 +g25273 +S'lithograph on Arches paper' +p192090 +sg25267 +g27 +sg25275 +S'1962' +p192091 +sg25268 +S'Untitled' +p192092 +sg25270 +S'John Paul Jones' +p192093 +sa(dp192094 +g25273 +S'lithograph on Arches paper' +p192095 +sg25267 +g27 +sg25275 +S'1962' +p192096 +sg25268 +S'Untitled' +p192097 +sg25270 +S'John Paul Jones' +p192098 +sa(dp192099 +g25273 +S'lithograph on Arches paper' +p192100 +sg25267 +g27 +sg25275 +S'1962' +p192101 +sg25268 +S'Untitled [left half]' +p192102 +sg25270 +S'John Paul Jones' +p192103 +sa(dp192104 +g25273 +S'Rosenwald Collection' +p192105 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p192106 +sg25268 +S'Playing Card' +p192107 +sg25270 +S'German 15th Century' +p192108 +sa(dp192109 +g25273 +S'lithograph on Arches paper' +p192110 +sg25267 +g27 +sg25275 +S'1962' +p192111 +sg25268 +S'Untitled [right half]' +p192112 +sg25270 +S'John Paul Jones' +p192113 +sa(dp192114 +g25273 +S'lithograph on Arches paper' +p192115 +sg25267 +g27 +sg25275 +S'1962' +p192116 +sg25268 +S'Untitled [left half]' +p192117 +sg25270 +S'John Paul Jones' +p192118 +sa(dp192119 +g25273 +S'lithograph on Arches paper' +p192120 +sg25267 +g27 +sg25275 +S'1962' +p192121 +sg25268 +S'Untitled [right half]' +p192122 +sg25270 +S'John Paul Jones' +p192123 +sa(dp192124 +g25273 +S'lithograph on Nacre paper' +p192125 +sg25267 +g27 +sg25275 +S'1962' +p192126 +sg25268 +S'Untitled' +p192127 +sg25270 +S'John Paul Jones' +p192128 +sa(dp192129 +g25273 +S'lithograph on Nacre paper' +p192130 +sg25267 +g27 +sg25275 +S'1962' +p192131 +sg25268 +S'Untitled' +p192132 +sg25270 +S'John Paul Jones' +p192133 +sa(dp192134 +g25273 +S'lithograph on Nacre paper' +p192135 +sg25267 +g27 +sg25275 +S'1962' +p192136 +sg25268 +S'Untitled' +p192137 +sg25270 +S'John Paul Jones' +p192138 +sa(dp192139 +g25273 +S'lithograph on Nacre paper' +p192140 +sg25267 +g27 +sg25275 +S'1962' +p192141 +sg25268 +S'Untitled' +p192142 +sg25270 +S'John Paul Jones' +p192143 +sa(dp192144 +g25273 +S'lithograph on Arches paper' +p192145 +sg25267 +g27 +sg25275 +S'1962' +p192146 +sg25268 +S'Untitled' +p192147 +sg25270 +S'John Paul Jones' +p192148 +sa(dp192149 +g25273 +S'lithograph on Arches paper' +p192150 +sg25267 +g27 +sg25275 +S'1962' +p192151 +sg25268 +S'Untitled' +p192152 +sg25270 +S'John Paul Jones' +p192153 +sa(dp192154 +g25273 +S'lithograph on Arches paper' +p192155 +sg25267 +g27 +sg25275 +S'1962' +p192156 +sg25268 +S'Untitled' +p192157 +sg25270 +S'John Paul Jones' +p192158 +sa(dp192159 +g25273 +S'Rosenwald Collection' +p192160 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p192161 +sg25268 +S'Playing Card' +p192162 +sg25270 +S'German 15th Century' +p192163 +sa(dp192164 +g25273 +S'lithograph on Buff Arches paper' +p192165 +sg25267 +g27 +sg25275 +S'1962' +p192166 +sg25268 +S'Untitled' +p192167 +sg25270 +S'John Paul Jones' +p192168 +sa(dp192169 +g25273 +S'lithograph on Rives BFK' +p192170 +sg25267 +g27 +sg25275 +S'1962' +p192171 +sg25268 +S'Woman in the Wind' +p192172 +sg25270 +S'John Paul Jones' +p192173 +sa(dp192174 +g25273 +S'lithograph on Arches paper' +p192175 +sg25267 +g27 +sg25275 +S'1963' +p192176 +sg25268 +S'Young Girl' +p192177 +sg25270 +S'John Paul Jones' +p192178 +sa(dp192179 +g25273 +S'lithograph on Arches paper' +p192180 +sg25267 +g27 +sg25275 +S'1961' +p192181 +sg25268 +S'Untitled' +p192182 +sg25270 +S'Reuben Kadish' +p192183 +sa(dp192184 +g25273 +S'lithograph on Nacre paper' +p192185 +sg25267 +g27 +sg25275 +S'1961' +p192186 +sg25268 +S'Untitled' +p192187 +sg25270 +S'Reuben Kadish' +p192188 +sa(dp192189 +g25273 +S'lithograph on Rives BFK' +p192190 +sg25267 +g27 +sg25275 +S'1961' +p192191 +sg25268 +S'Untitled' +p192192 +sg25270 +S'Reuben Kadish' +p192193 +sa(dp192194 +g25273 +S'lithograph on Arches paper' +p192195 +sg25267 +g27 +sg25275 +S'1961' +p192196 +sg25268 +S'Untitled' +p192197 +sg25270 +S'Reuben Kadish' +p192198 +sa(dp192199 +g25273 +S'lithograph on Rives BFK paper' +p192200 +sg25267 +g27 +sg25275 +S'1961' +p192201 +sg25268 +S'Untitled' +p192202 +sg25270 +S'Reuben Kadish' +p192203 +sa(dp192204 +g25273 +S'lithograph on Arches paper' +p192205 +sg25267 +g27 +sg25275 +S'1961' +p192206 +sg25268 +S'Untitled' +p192207 +sg25270 +S'Reuben Kadish' +p192208 +sa(dp192209 +g25273 +S'lithograph on Arches paper' +p192210 +sg25267 +g27 +sg25275 +S'1961' +p192211 +sg25268 +S'Untitled' +p192212 +sg25270 +S'Reuben Kadish' +p192213 +sa(dp192214 +g25273 +S'Rosenwald Collection' +p192215 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p192216 +sg25268 +S'Playing Card' +p192217 +sg25270 +S'German 15th Century' +p192218 +sa(dp192219 +g25273 +S'lithograph on Rives BFK paper' +p192220 +sg25267 +g27 +sg25275 +S'1961' +p192221 +sg25268 +S'Untitled' +p192222 +sg25270 +S'Reuben Kadish' +p192223 +sa(dp192224 +g25273 +S'lithograph on Nacre paper' +p192225 +sg25267 +g27 +sg25275 +S'1961' +p192226 +sg25268 +S'Untitled' +p192227 +sg25270 +S'Reuben Kadish' +p192228 +sa(dp192229 +g25273 +S'lithograph on Nacre paper' +p192230 +sg25267 +g27 +sg25275 +S'1961' +p192231 +sg25268 +S'Untitled' +p192232 +sg25270 +S'Reuben Kadish' +p192233 +sa(dp192234 +g25273 +S'lithograph on Nacre paper' +p192235 +sg25267 +g27 +sg25275 +S'1961' +p192236 +sg25268 +S'Untitled' +p192237 +sg25270 +S'Matsumi Kanemitsu' +p192238 +sa(dp192239 +g25273 +S'lithograph on Rives BFK paper' +p192240 +sg25267 +g27 +sg25275 +S'1961' +p192241 +sg25268 +S'Spring' +p192242 +sg25270 +S'Matsumi Kanemitsu' +p192243 +sa(dp192244 +g25273 +S'lithograph on Nacre paper' +p192245 +sg25267 +g27 +sg25275 +S'1961' +p192246 +sg25268 +S'Spectre' +p192247 +sg25270 +S'Matsumi Kanemitsu' +p192248 +sa(dp192249 +g25273 +S'lithograph on Nacre paper' +p192250 +sg25267 +g27 +sg25275 +S'1961' +p192251 +sg25268 +S'Still Life' +p192252 +sg25270 +S'Matsumi Kanemitsu' +p192253 +sa(dp192254 +g25273 +S'lithograph on Nacre paper' +p192255 +sg25267 +g27 +sg25275 +S'1961' +p192256 +sg25268 +S'Sunday' +p192257 +sg25270 +S'Matsumi Kanemitsu' +p192258 +sa(dp192259 +g25273 +S'lithograph on Nacre paper' +p192260 +sg25267 +g27 +sg25275 +S'1961' +p192261 +sg25268 +S'Wind II' +p192262 +sg25270 +S'Matsumi Kanemitsu' +p192263 +sa(dp192264 +g25273 +S'lithograph on Rives BFK paper' +p192265 +sg25267 +g27 +sg25275 +S'1961' +p192266 +sg25268 +S'Erection' +p192267 +sg25270 +S'Matsumi Kanemitsu' +p192268 +sa(dp192269 +g25273 +S'Rosenwald Collection' +p192270 +sg25267 +g27 +sg25275 +S'\nwoodcut' +p192271 +sg25268 +S'Playing Card' +p192272 +sg25270 +S'German 15th Century' +p192273 +sa(dp192274 +g25273 +S'lithograph on Arches paper' +p192275 +sg25267 +g27 +sg25275 +S'1961' +p192276 +sg25268 +S'Wind I' +p192277 +sg25270 +S'Matsumi Kanemitsu' +p192278 +sa(dp192279 +g25273 +S'lithograph on Nacre paper' +p192280 +sg25267 +g27 +sg25275 +S'1961' +p192281 +sg25268 +S'Winter' +p192282 +sg25270 +S'Matsumi Kanemitsu' +p192283 +sa(dp192284 +g25273 +S'lithograph on buff Arches paper' +p192285 +sg25267 +g27 +sg25275 +S'1961' +p192286 +sg25268 +S'Brigitte Bardot' +p192287 +sg25270 +S'Matsumi Kanemitsu' +p192288 +sa(dp192289 +g25273 +S'lithograph on Nacre paper' +p192290 +sg25267 +g27 +sg25275 +S'1961' +p192291 +sg25268 +S'Color Formation II' +p192292 +sg25270 +S'Matsumi Kanemitsu' +p192293 +sa(dp192294 +g25273 +S'lithograph on Rives BFK paper' +p192295 +sg25267 +g27 +sg25275 +S'1961' +p192296 +sg25268 +S'Color Formation I' +p192297 +sg25270 +S'Matsumi Kanemitsu' +p192298 +sa(dp192299 +g25273 +S'lithograph on Rives paper' +p192300 +sg25267 +g27 +sg25275 +S'1961' +p192301 +sg25268 +S'Night' +p192302 +sg25270 +S'Matsumi Kanemitsu' +p192303 +sa(dp192304 +g25273 +S'lithograph on Nacre paper' +p192305 +sg25267 +g27 +sg25275 +S'1961' +p192306 +sg25268 +S'Zen Blue' +p192307 +sg25270 +S'Matsumi Kanemitsu' +p192308 +sa(dp192309 +g25273 +S'color lithograph on Arches paper' +p192310 +sg25267 +g27 +sg25275 +S'1961' +p192311 +sg25268 +S'Oxnard Madame' +p192312 +sg25270 +S'Matsumi Kanemitsu' +p192313 +sa(dp192314 +g25273 +S'color lithograph on Nacre paper' +p192315 +sg25267 +g27 +sg25275 +S'1961' +p192316 +sg25268 +S'Lovers' +p192317 +sg25270 +S'Matsumi Kanemitsu' +p192318 +sa(dp192319 +g25273 +S'lithograph on Arches paper' +p192320 +sg25267 +g27 +sg25275 +S'1961' +p192321 +sg25268 +S'Kapparah' +p192322 +sg25270 +S'Jerome Kaplan' +p192323 +sa(dp192324 +g25268 +S'Madonna and Child' +p192325 +sg25270 +S'Giovanni Bellini' +p192326 +sg25273 +S'oil on panel' +p192327 +sg25275 +S'c. 1480/1485' +p192328 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007d1.jpg' +p192329 +sg25267 +S"Giovanni Bellini painted half-length images of the Virgin and Child \n throughout his long career. This one, with its somber color and avoidance \n of decoration, resembles the focused intensity of an icon. The austerity of \n this image, which markedly contrasts with the city's celebrated luxury, is \n a legacy of Byzantine art, a tradition that was reinforced when displaced \n Greek artists immigrated to Venice following the fall of Constantinople to \n the Ottoman Turks in 1453.\n The Virgin possesses the ethereal geometry of a Byzantine madonna. \n Compare her delicate, oval face and arched brows, long nose and small chin, \n with the more robust features of\n \n " +p192330 +sa(dp192331 +g25268 +S'Title Page' +p192332 +sg25270 +S'William Blake' +p192333 +sg25273 +S'engraving' +p192334 +sg25275 +S'1825' +p192335 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007660.jpg' +p192336 +sg25267 +g27 +sa(dp192337 +g25273 +S'lithograph on Arches paper' +p192338 +sg25267 +g27 +sg25275 +S'1962' +p192339 +sg25268 +S'Hatchery' +p192340 +sg25270 +S'Jerome Kaplan' +p192341 +sa(dp192342 +g25273 +S'lithograph on Arches paper' +p192343 +sg25267 +g27 +sg25275 +S'1962' +p192344 +sg25268 +S'Apes' +p192345 +sg25270 +S'Jerome Kaplan' +p192346 +sa(dp192347 +g25273 +S'lithograph on Arches paper' +p192348 +sg25267 +g27 +sg25275 +S'1962' +p192349 +sg25268 +S'Portraits' +p192350 +sg25270 +S'Jerome Kaplan' +p192351 +sa(dp192352 +g25273 +S'lithograph on Arches paper' +p192353 +sg25267 +g27 +sg25275 +S'1962' +p192354 +sg25268 +S'La Gattina Rossa' +p192355 +sg25270 +S'Jerome Kaplan' +p192356 +sa(dp192357 +g25273 +S'lithograph in red, green, and blue on Nacre paper' +p192358 +sg25267 +g27 +sg25275 +S'1962' +p192359 +sg25268 +S'Ritual' +p192360 +sg25270 +S'Jerome Kaplan' +p192361 +sa(dp192362 +g25273 +S'lithograph on Arches paper' +p192363 +sg25267 +g27 +sg25275 +S'unknown date\n' +p192364 +sg25268 +S'Hommage a J.D.' +p192365 +sg25270 +S'Jerome Kaplan' +p192366 +sa(dp192367 +g25273 +S'4-color lithograph (aluminum and stone) on Arches paper' +p192368 +sg25267 +g27 +sg25275 +S'unknown date\n' +p192369 +sg25268 +S'Ti Queen' +p192370 +sg25270 +S'Jerome Kaplan' +p192371 +sa(dp192372 +g25273 +S'lithograph on Rives BFK paper' +p192373 +sg25267 +g27 +sg25275 +S'1962' +p192374 +sg25268 +S'Quarry' +p192375 +sg25270 +S'Jerome Kaplan' +p192376 +sa(dp192377 +g25273 +S'lithograph on Arches paper' +p192378 +sg25267 +g27 +sg25275 +S'1962' +p192379 +sg25268 +S'Burnt Quarry' +p192380 +sg25270 +S'Jerome Kaplan' +p192381 +sa(dp192382 +g25273 +S'lithograph on Nacre paper' +p192383 +sg25267 +g27 +sg25275 +S'1962' +p192384 +sg25268 +S'Cocoons' +p192385 +sg25270 +S'Jerome Kaplan' +p192386 +sa(dp192387 +g25268 +S'Job and His Family' +p192388 +sg25270 +S'William Blake' +p192389 +sg25273 +S'engraving' +p192390 +sg25275 +S'1825' +p192391 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a000765f.jpg' +p192392 +sg25267 +g27 +sa(dp192393 +g25273 +S'lithograph on Nacre paper' +p192394 +sg25267 +g27 +sg25275 +S'1962' +p192395 +sg25268 +S'Figurative Landscape' +p192396 +sg25270 +S'Jerome Kaplan' +p192397 +sa(dp192398 +g25273 +S'lithograph on Arches paper' +p192399 +sg25267 +g27 +sg25275 +S'1962' +p192400 +sg25268 +S'Birds' +p192401 +sg25270 +S'Jerome Kaplan' +p192402 +sa(dp192403 +g25273 +S', 1961' +p192404 +sg25267 +g27 +sg25275 +S'\n' +p192405 +sg25268 +S'Genesis 1:4' +p192406 +sg25270 +S'Harold Emerson Keeler' +p192407 +sa(dp192408 +g25273 +S'lithograph (stone and zinc) in red, blue, and black, on Arches paper' +p192409 +sg25267 +g27 +sg25275 +S'1962' +p192410 +sg25268 +S'Genesis 1:5' +p192411 +sg25270 +S'Harold Emerson Keeler' +p192412 +sa(dp192413 +g25273 +S'lithograph in green, gold, and black on Nacre paper' +p192414 +sg25267 +g27 +sg25275 +S'1961' +p192415 +sg25268 +S'Kings of the Earth' +p192416 +sg25270 +S'Harold Emerson Keeler' +p192417 +sa(dp192418 +g25273 +S'lithograph on Arches paper' +p192419 +sg25267 +g27 +sg25275 +S'1961' +p192420 +sg25268 +S'Sky, Clouds and Trees' +p192421 +sg25270 +S'Harold Emerson Keeler' +p192422 +sa(dp192423 +g25273 +S'lithograph on Arches paper' +p192424 +sg25267 +g27 +sg25275 +S'1961' +p192425 +sg25268 +S'Spring Mountains' +p192426 +sg25270 +S'Harold Emerson Keeler' +p192427 +sa(dp192428 +g25273 +S'lithograph on natural Nacre paper' +p192429 +sg25267 +g27 +sg25275 +S'unknown date\n' +p192430 +sg25268 +S'Beast' +p192431 +sg25270 +S'Misch Kohn' +p192432 +sa(dp192433 +g25273 +S'lithograph (zinc) on Nacre paper' +p192434 +sg25267 +g27 +sg25275 +S'unknown date\n' +p192435 +sg25268 +S'Black Beast' +p192436 +sg25270 +S'Misch Kohn' +p192437 +sa(dp192438 +g25273 +S'lithograph (zinc) in blue, gray, and red' +p192439 +sg25267 +g27 +sg25275 +S'1961' +p192440 +sg25268 +S'Figure' +p192441 +sg25270 +S'Misch Kohn' +p192442 +sa(dp192443 +g25268 +S'Satan Before the Throne of God' +p192444 +sg25270 +S'William Blake' +p192445 +sg25273 +S'engraving' +p192446 +sg25275 +S'1825' +p192447 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a000765a.jpg' +p192448 +sg25267 +g27 +sa(dp192449 +g25273 +S'lithograph on Nacre paper' +p192450 +sg25267 +g27 +sg25275 +S'1961' +p192451 +sg25268 +S'Figure' +p192452 +sg25270 +S'Misch Kohn' +p192453 +sa(dp192454 +g25273 +S'lithograph on Nacre paper' +p192455 +sg25267 +g27 +sg25275 +S'1961' +p192456 +sg25268 +S'Giant' +p192457 +sg25270 +S'Misch Kohn' +p192458 +sa(dp192459 +g25273 +S'lithograph on Barcham Green Crispbrook Waterleaf paper' +p192460 +sg25267 +g27 +sg25275 +S'1961' +p192461 +sg25268 +S'Grand Canyon' +p192462 +sg25270 +S'Misch Kohn' +p192463 +sa(dp192464 +g25273 +S'lithograph on Arches paper' +p192465 +sg25267 +g27 +sg25275 +S'1961' +p192466 +sg25268 +S'Head' +p192467 +sg25270 +S'Misch Kohn' +p192468 +sa(dp192469 +g25273 +S'lithograph (stone) in orange and green on Barcham Green Crispbrook Waterleaf paper' +p192470 +sg25267 +g27 +sg25275 +S'1961' +p192471 +sg25268 +S'Landscape' +p192472 +sg25270 +S'Misch Kohn' +p192473 +sa(dp192474 +g25273 +S'lithograph on Arches paper' +p192475 +sg25267 +g27 +sg25275 +S'1961' +p192476 +sg25268 +S'Patriarch' +p192477 +sg25270 +S'Misch Kohn' +p192478 +sa(dp192479 +g25273 +S'lithograph on Arches paper' +p192480 +sg25267 +g27 +sg25275 +S'1961' +p192481 +sg25268 +S'Patriarch II' +p192482 +sg25270 +S'Misch Kohn' +p192483 +sa(dp192484 +g25273 +S'lithograph (zinc and stone) in gray, red, and black' +p192485 +sg25267 +g27 +sg25275 +S'1961' +p192486 +sg25268 +S'Procession' +p192487 +sg25270 +S'Misch Kohn' +p192488 +sa(dp192489 +g25273 +S'lithograph in red and ochre on Nacre paper' +p192490 +sg25267 +g27 +sg25275 +S'unknown date\n' +p192491 +sg25268 +S'Red Beast' +p192492 +sg25270 +S'Misch Kohn' +p192493 +sa(dp192494 +g25273 +S'lithograph (stone and zinc) in red, black, and ochre on Nacre paper' +p192495 +sg25267 +g27 +sg25275 +S'1961' +p192496 +sg25268 +S'Soldiers' +p192497 +sg25270 +S'Misch Kohn' +p192498 +sa(dp192499 +g25268 +S"The Destruction of Job's Sons" +p192500 +sg25270 +S'William Blake' +p192501 +sg25273 +S'engraving' +p192502 +sg25275 +S'1825' +p192503 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a000765c.jpg' +p192504 +sg25267 +g27 +sa(dp192505 +g25273 +S'lithograph (zinc) yellow ochre, rose, and black onArches paper' +p192506 +sg25267 +g27 +sg25275 +S'1961' +p192507 +sg25268 +S'Spotted Beast' +p192508 +sg25270 +S'Misch Kohn' +p192509 +sa(dp192510 +g25273 +S'lithograph (stone) in red, blue, and umber on Nacre paper' +p192511 +sg25267 +g27 +sg25275 +S'1961' +p192512 +sg25268 +S'Stranger' +p192513 +sg25270 +S'Misch Kohn' +p192514 +sa(dp192515 +g25273 +S'lithograph (stone) in red and blue on Rives BFK paper' +p192516 +sg25267 +g27 +sg25275 +S'1961' +p192517 +sg25268 +S'Stranger II' +p192518 +sg25270 +S'Misch Kohn' +p192519 +sa(dp192520 +g25273 +S'lithograph (stone and zinc) in red, yellow, and violet on Nacre paper' +p192521 +sg25267 +g27 +sg25275 +S'1961' +p192522 +sg25268 +S'Swim' +p192523 +sg25270 +S'Misch Kohn' +p192524 +sa(dp192525 +g25273 +S'6-color lithograph (stone and zinc) on Nacre paper' +p192526 +sg25267 +g27 +sg25275 +S'1961' +p192527 +sg25268 +S'Three Generals' +p192528 +sg25270 +S'Misch Kohn' +p192529 +sa(dp192530 +g25273 +S'lithograph on Nacre paper' +p192531 +sg25267 +g27 +sg25275 +S'1961' +p192532 +sg25268 +S'Woman' +p192533 +sg25270 +S'Misch Kohn' +p192534 +sa(dp192535 +g25273 +S'lithograph (zinc) on Arches paper' +p192536 +sg25267 +g27 +sg25275 +S'1961' +p192537 +sg25268 +S"Brecht's Three-Penny Novel - A" +p192538 +sg25270 +S'Rico Lebrun' +p192539 +sa(dp192540 +g25273 +S'lithograph on Arches paper' +p192541 +sg25267 +g27 +sg25275 +S'1961' +p192542 +sg25268 +S"Brecht's Three-Penny Novel - A" +p192543 +sg25270 +S'Rico Lebrun' +p192544 +sa(dp192545 +g25273 +S'lithograph (zinc) in black on Nacre paper' +p192546 +sg25267 +g27 +sg25275 +S'1962' +p192547 +sg25268 +S'C' +p192548 +sg25270 +S'Rico Lebrun' +p192549 +sa(dp192550 +g25273 +S'lithograph' +p192551 +sg25267 +g27 +sg25275 +S'1961' +p192552 +sg25268 +S'Centaur and Woman' +p192553 +sg25270 +S'Rico Lebrun' +p192554 +sa(dp192555 +g25268 +S'The Messengers Tell Job of His Misfortunes' +p192556 +sg25270 +S'William Blake' +p192557 +sg25273 +S'engraving' +p192558 +sg25275 +S'1825' +p192559 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a000765d.jpg' +p192560 +sg25267 +g27 +sa(dp192561 +g25273 +S'lithograph (zinc) in black on Rives BFK paper' +p192562 +sg25267 +g27 +sg25275 +S'1961' +p192563 +sg25268 +S'Dark Figures' +p192564 +sg25270 +S'Rico Lebrun' +p192565 +sa(dp192566 +g25273 +S'lithograph (zinc) in black on Rives BFK paper' +p192567 +sg25267 +g27 +sg25275 +S'1961' +p192568 +sg25268 +S'Grunewald Study' +p192569 +sg25270 +S'Rico Lebrun' +p192570 +sa(dp192571 +g25273 +S'lithograph (zinc and stone) in gray and black on Rives BFK paper' +p192572 +sg25267 +g27 +sg25275 +S'1961' +p192573 +sg25268 +S'Grunewald Study II' +p192574 +sg25270 +S'Rico Lebrun' +p192575 +sa(dp192576 +g25273 +S'lithograph (stone) in black on Rives BFK paper' +p192577 +sg25267 +g27 +sg25275 +S'1961' +p192578 +sg25268 +S'Inferno Series - B' +p192579 +sg25270 +S'Rico Lebrun' +p192580 +sa(dp192581 +g25273 +S'lithograph (stone) in gray and black on Arches paper' +p192582 +sg25267 +g27 +sg25275 +S'1961' +p192583 +sg25268 +S'Inferno Series - C' +p192584 +sg25270 +S'Rico Lebrun' +p192585 +sa(dp192586 +g25273 +S'lithograph (stone) in black on Arches paper' +p192587 +sg25267 +g27 +sg25275 +S'1961' +p192588 +sg25268 +S'Inferno Series - D' +p192589 +sg25270 +S'Rico Lebrun' +p192590 +sa(dp192591 +g25273 +S'lithograph (stone) in black and gray on Barcham Green paper' +p192592 +sg25267 +g27 +sg25275 +S'1961' +p192593 +sg25268 +S'Inferno Series - E' +p192594 +sg25270 +S'Rico Lebrun' +p192595 +sa(dp192596 +g25273 +S'lithograph (zinc) in black on Arches paper' +p192597 +sg25267 +g27 +sg25275 +S'1961' +p192598 +sg25268 +S'Inferno Series - F' +p192599 +sg25270 +S'Rico Lebrun' +p192600 +sa(dp192601 +g25273 +S'lithograph (zinc) in black on Nacre paper' +p192602 +sg25267 +g27 +sg25275 +S'1961' +p192603 +sg25268 +S'Inferno Series - G' +p192604 +sg25270 +S'Rico Lebrun' +p192605 +sa(dp192606 +g25273 +S'lithograph (zinc) in black on Nacre paper' +p192607 +sg25267 +g27 +sg25275 +S'1961' +p192608 +sg25268 +S'Poster for Marionette Theatre' +p192609 +sg25270 +S'Rico Lebrun' +p192610 +sa(dp192611 +g25268 +S'Satan Going Forth from the Presence of the Lord' +p192612 +sg25270 +S'William Blake' +p192613 +sg25273 +S'engraving' +p192614 +sg25275 +S'1825' +p192615 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a000765e.jpg' +p192616 +sg25267 +g27 +sa(dp192617 +g25273 +S'lithograph (zinc) in black on Rives BFK paper' +p192618 +sg25267 +g27 +sg25275 +S'1961' +p192619 +sg25268 +S'Study for Figures in Flood' +p192620 +sg25270 +S'Rico Lebrun' +p192621 +sa(dp192622 +g25273 +S'lithograph in black on Rives BFK paper' +p192623 +sg25267 +g27 +sg25275 +S'1961' +p192624 +sg25268 +S'Untitled' +p192625 +sg25270 +S'Rico Lebrun' +p192626 +sa(dp192627 +g25273 +S'lithograph (stone) in black on Arches paper' +p192628 +sg25267 +g27 +sg25275 +S'1963' +p192629 +sg25268 +S'Depot des batignolles' +p192630 +sg25270 +S'Jason Leese' +p192631 +sa(dp192632 +g25273 +S'lithograph (stone) in gray and black on Arches paper' +p192633 +sg25267 +g27 +sg25275 +S'1963' +p192634 +sg25268 +S'Title Page' +p192635 +sg25270 +S'Jason Leese' +p192636 +sa(dp192637 +g25273 +S'lithograph and pencil' +p192638 +sg25267 +g27 +sg25275 +S'1963' +p192639 +sg25268 +S'Dedication Page' +p192640 +sg25270 +S'Jason Leese' +p192641 +sa(dp192642 +g25273 +S'lithograph on Arches paper' +p192643 +sg25267 +g27 +sg25275 +S'1963' +p192644 +sg25268 +S'The Bridge at Neuilly' +p192645 +sg25270 +S'Jason Leese' +p192646 +sa(dp192647 +g25273 +S'lithograph on Arches paper' +p192648 +sg25267 +g27 +sg25275 +S'1963' +p192649 +sg25268 +S'The Bridge at Sevres, Early Morning' +p192650 +sg25270 +S'Jason Leese' +p192651 +sa(dp192652 +g25273 +S'lithograph on Arches paper' +p192653 +sg25267 +g27 +sg25275 +S'1963' +p192654 +sg25268 +S'The Bridge at Sevres' +p192655 +sg25270 +S'Jason Leese' +p192656 +sa(dp192657 +g25273 +S'lithograph in brown and white on Arches paper' +p192658 +sg25267 +g27 +sg25275 +S'1963' +p192659 +sg25268 +S'Near the Luxembourg Gardens' +p192660 +sg25270 +S'Jason Leese' +p192661 +sa(dp192662 +g25273 +S'lithograph in blue-black and white on Arches paper' +p192663 +sg25267 +g27 +sg25275 +S'1963' +p192664 +sg25268 +S'Factories along the Seine' +p192665 +sg25270 +S'Jason Leese' +p192666 +sa(dp192667 +g25268 +S'Satan Smiting Job with Boils' +p192668 +sg25270 +S'William Blake' +p192669 +sg25273 +S'engraving' +p192670 +sg25275 +S'1825' +p192671 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007664.jpg' +p192672 +sg25267 +g27 +sa(dp192673 +g25273 +S'lithograph in maroon and white on Arches paper' +p192674 +sg25267 +g27 +sg25275 +S'1963' +p192675 +sg25268 +S'Viaduct at Arcueil-Cachan' +p192676 +sg25270 +S'Jason Leese' +p192677 +sa(dp192678 +g25273 +S'lithograph in sanguine and white on Arches paper' +p192679 +sg25267 +g27 +sg25275 +S'1963' +p192680 +sg25268 +S'Barrels in the Wine Market' +p192681 +sg25270 +S'Jason Leese' +p192682 +sa(dp192683 +g25273 +S'lithograph in black and buff on Arches paper' +p192684 +sg25267 +g27 +sg25275 +S'1963' +p192685 +sg25268 +S'House in the Wine Market' +p192686 +sg25270 +S'Jason Leese' +p192687 +sa(dp192688 +g25273 +S'lithograph in blue and black on Arches paper' +p192689 +sg25267 +g27 +sg25275 +S'1963' +p192690 +sg25268 +S'Citroen Factory' +p192691 +sg25270 +S'Jason Leese' +p192692 +sa(dp192693 +g25273 +S'lithograph in yellow and black on Arches paper' +p192694 +sg25267 +g27 +sg25275 +S'1963' +p192695 +sg25268 +S'House, 14e arrondissement' +p192696 +sg25270 +S'Jason Leese' +p192697 +sa(dp192698 +g25273 +S'lithograph on Arches paper' +p192699 +sg25267 +g27 +sg25275 +S'1963' +p192700 +sg25268 +S'Colophon' +p192701 +sg25270 +S'Jason Leese' +p192702 +sa(dp192703 +g25273 +S'lithograph (stone) in sanguine and black on Nacre paper' +p192704 +sg25267 +g27 +sg25275 +S'1962' +p192705 +sg25268 +S'The Bull and the Condor' +p192706 +sg25270 +S'Jacques Lipchitz' +p192707 +sa(dp192708 +g25273 +S'lithograph (stone) in sanguine and black on Nacre paper' +p192709 +sg25267 +g27 +sg25275 +S'1963' +p192710 +sg25268 +S'Untitled' +p192711 +sg25270 +S'Jacques Lipchitz' +p192712 +sa(dp192713 +g25273 +S'lithograph on Rives BFK paper' +p192714 +sg25267 +g27 +sg25275 +S'1962' +p192715 +sg25268 +S'Abstraction' +p192716 +sg25270 +S'Robert Mallary' +p192717 +sa(dp192718 +g25273 +S'lithograph (zinc) on Nacre paper' +p192719 +sg25267 +g27 +sg25275 +S'1962' +p192720 +sg25268 +S'Blasted Figure' +p192721 +sg25270 +S'Robert Mallary' +p192722 +sa(dp192723 +g25268 +S"Job's Comforters" +p192724 +sg25270 +S'William Blake' +p192725 +sg25273 +S'engraving' +p192726 +sg25275 +S'1825' +p192727 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007668.jpg' +p192728 +sg25267 +g27 +sa(dp192729 +g25273 +S'lithograph on Nacre paper' +p192730 +sg25267 +g27 +sg25275 +S'1962' +p192731 +sg25268 +S'Calligraphic Drawing' +p192732 +sg25270 +S'Robert Mallary' +p192733 +sa(dp192734 +g25273 +S'lithograph on Nacre paper in gray-brown and white' +p192735 +sg25267 +g27 +sg25275 +S'1962' +p192736 +sg25268 +S'Debris' +p192737 +sg25270 +S'Robert Mallary' +p192738 +sa(dp192739 +g25273 +S'lithograph (stone and zinc) in black and brown' +p192740 +sg25267 +g27 +sg25275 +S'1962' +p192741 +sg25268 +S'Duo' +p192742 +sg25270 +S'Robert Mallary' +p192743 +sa(dp192744 +g25273 +S'lithograph on Nacre paper' +p192745 +sg25267 +g27 +sg25275 +S'1962' +p192746 +sg25268 +S'Encounter' +p192747 +sg25270 +S'Robert Mallary' +p192748 +sa(dp192749 +g25273 +S'lithograph (stone and zinc) in red and black on Nacre paper' +p192750 +sg25267 +g27 +sg25275 +S'1962' +p192751 +sg25268 +S'Flower' +p192752 +sg25270 +S'Robert Mallary' +p192753 +sa(dp192754 +g25273 +S'lithograph in red and black on Barcham Green Crisbrook waterleaf paper' +p192755 +sg25267 +g27 +sg25275 +S'1962' +p192756 +sg25268 +S'Germinal' +p192757 +sg25270 +S'Robert Mallary' +p192758 +sa(dp192759 +g25273 +S'4-color lithograph (zinc) on Arches paper' +p192760 +sg25267 +g27 +sg25275 +S'1962' +p192761 +sg25268 +S'Gray Sky' +p192762 +sg25270 +S'Robert Mallary' +p192763 +sa(dp192764 +g25273 +S'lithograph on Arches paper' +p192765 +sg25267 +g27 +sg25275 +S'1962' +p192766 +sg25268 +S'Incubus' +p192767 +sg25270 +S'Robert Mallary' +p192768 +sa(dp192769 +g25273 +S'lithograph (zinc) on Arches paper' +p192770 +sg25267 +g27 +sg25275 +S'1962' +p192771 +sg25268 +S'Masked Figure' +p192772 +sg25270 +S'Robert Mallary' +p192773 +sa(dp192774 +g25273 +S'lithograph on Rives BFK paper' +p192775 +sg25267 +g27 +sg25275 +S'1962' +p192776 +sg25268 +S'Playa' +p192777 +sg25270 +S'Robert Mallary' +p192778 +sa(dp192779 +g25268 +S"Job's Despair" +p192780 +sg25270 +S'William Blake' +p192781 +sg25273 +S'engraving' +p192782 +sg25275 +S'1825' +p192783 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007661.jpg' +p192784 +sg25267 +g27 +sa(dp192785 +g25273 +S'lithograph on Barcham Green Crisbrook waterleaf paper' +p192786 +sg25267 +g27 +sg25275 +S'1962' +p192787 +sg25268 +S'Sprawled Figure' +p192788 +sg25270 +S'Robert Mallary' +p192789 +sa(dp192790 +g25273 +S'5-color lithograph (zinc) on Arches paper' +p192791 +sg25267 +g27 +sg25275 +S'1962' +p192792 +sg25268 +S'Summer Haze' +p192793 +sg25270 +S'Robert Mallary' +p192794 +sa(dp192795 +g25273 +S'lithograph in red and black on Arches paper' +p192796 +sg25267 +g27 +sg25275 +S'1962' +p192797 +sg25268 +S'Suspended Figure' +p192798 +sg25270 +S'Robert Mallary' +p192799 +sa(dp192800 +g25273 +S'lithograph on Rives BFK paper' +p192801 +sg25267 +g27 +sg25275 +S'1962' +p192802 +sg25268 +S'Tablet' +p192803 +sg25270 +S'Robert Mallary' +p192804 +sa(dp192805 +g25273 +S'lithograph (zinc and stone) on Rives BFK paper' +p192806 +sg25267 +g27 +sg25275 +S'1962' +p192807 +sg25268 +S'Vixen I' +p192808 +sg25270 +S'Robert Mallary' +p192809 +sa(dp192810 +g25273 +S'lithograph (stone) on Rives BFK paper' +p192811 +sg25267 +g27 +sg25275 +S'1962' +p192812 +sg25268 +S'Vixen II' +p192813 +sg25270 +S'Robert Mallary' +p192814 +sa(dp192815 +g25273 +S'lithograph (zinc) in yellow and black on Arches paper' +p192816 +sg25267 +g27 +sg25275 +S'1962' +p192817 +sg25268 +S'Wall' +p192818 +sg25270 +S'Robert Mallary' +p192819 +sa(dp192820 +g25273 +S'lithograph in brown on Arches paper' +p192821 +sg25267 +g27 +sg25275 +S'1962' +p192822 +sg25268 +S'Back' +p192823 +sg25270 +S'James McGarrell' +p192824 +sa(dp192825 +g25273 +S'lithograph on Arches paper' +p192826 +sg25267 +g27 +sg25275 +S'1962' +p192827 +sg25268 +S'Bathers - 1st State' +p192828 +sg25270 +S'James McGarrell' +p192829 +sa(dp192830 +g25273 +S'lithograph on Arches paper' +p192831 +sg25267 +g27 +sg25275 +S'1962' +p192832 +sg25268 +S'Bathers - 2nd State' +p192833 +sg25270 +S'James McGarrell' +p192834 +sa(dp192835 +g25268 +S'The Vision of Eliphaz' +p192836 +sg25270 +S'William Blake' +p192837 +sg25273 +S'engraving' +p192838 +sg25275 +S'1825' +p192839 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007662.jpg' +p192840 +sg25267 +g27 +sa(dp192841 +g25273 +S'lithograph on Barcham Green paper' +p192842 +sg25267 +g27 +sg25275 +S'1963' +p192843 +sg25268 +S'Cup' +p192844 +sg25270 +S'James McGarrell' +p192845 +sa(dp192846 +g25273 +S'lithograph on Arches paper' +p192847 +sg25267 +g27 +sg25275 +S'1962' +p192848 +sg25268 +S'Elephant Bathers I' +p192849 +sg25270 +S'James McGarrell' +p192850 +sa(dp192851 +g25273 +S'lithograph on Nacre paper' +p192852 +sg25267 +g27 +sg25275 +S'1962' +p192853 +sg25268 +S'Elephant Bathers II' +p192854 +sg25270 +S'James McGarrell' +p192855 +sa(dp192856 +g25273 +S'lithograph on Nacre paper' +p192857 +sg25267 +g27 +sg25275 +S'1963' +p192858 +sg25268 +S'Four Models' +p192859 +sg25270 +S'James McGarrell' +p192860 +sa(dp192861 +g25273 +S'lithograph on Arches paper' +p192862 +sg25267 +g27 +sg25275 +S'1963' +p192863 +sg25268 +S'Four Models II' +p192864 +sg25270 +S'James McGarrell' +p192865 +sa(dp192866 +g25273 +S'lithograph on Arches paper' +p192867 +sg25267 +g27 +sg25275 +S'1962' +p192868 +sg25268 +S'Fragments' +p192869 +sg25270 +S'James McGarrell' +p192870 +sa(dp192871 +g25273 +S'lithograph (zinc) in brown ink on Arches paper' +p192872 +sg25267 +g27 +sg25275 +S'1963' +p192873 +sg25268 +S'Girl in Fur' +p192874 +sg25270 +S'James McGarrell' +p192875 +sa(dp192876 +g25273 +S'lithograph (zinc) on Arches paper' +p192877 +sg25267 +g27 +sg25275 +S'1962' +p192878 +sg25268 +S'Head' +p192879 +sg25270 +S'James McGarrell' +p192880 +sa(dp192881 +g25273 +S'lithograph on Arches paper' +p192882 +sg25267 +g27 +sg25275 +S'1962' +p192883 +sg25268 +S'Piano Bathers I' +p192884 +sg25270 +S'James McGarrell' +p192885 +sa(dp192886 +g25273 +S'lithograph on Arches paper' +p192887 +sg25267 +g27 +sg25275 +S'1962' +p192888 +sg25268 +S'Piano Bathers II' +p192889 +sg25270 +S'James McGarrell' +p192890 +sa(dp192891 +g25268 +S'Portrait of a Young Woman' +p192892 +sg25270 +S'Girolamo di Benvenuto' +p192893 +sg25273 +S'oil on panel' +p192894 +sg25275 +S'c. 1508' +p192895 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000789.jpg' +p192896 +sg25267 +S"Girolamo was the son of artist \n The young woman's crisp silhouette, which creates \r\na decorative, almost abstract play against the flat background, would have been familiar to patrons of Benvenuto. But other aspects of Girolamo's picture depart from his father's style—and from long-standing Sienese tradition. Compare, for example, its warm palette and dark colors with the brighter tones of other paintings here.\n Girolamo's pursuit of his father's trade was not unusual. Artists' sons were encouraged to enter their fathers' shops, as were the sons of all craftsmen. It eliminated the need to pay apprentice wages and, in many cities, saved on guild fees, as sons were assessed lower admission. Sons might be expected to display some \r\ntalent—but this was not necessarily a requirement. Long training produced skilled artisans perfectly capable of meeting clients' demands. Most Renaissance painters and sculptors were from tradesmen's families of one kind or another, if not artists, then related occupations like dyers or masons. A few came from noble families, \n " +p192897 +sa(dp192898 +g25268 +S'Job Rebuked by His Friends' +p192899 +sg25270 +S'William Blake' +p192900 +sg25273 +S'engraving' +p192901 +sg25275 +S'1825' +p192902 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007666.jpg' +p192903 +sg25267 +g27 +sa(dp192904 +g25273 +S'lithograph on Rives BFK' +p192905 +sg25267 +g27 +sg25275 +S'1962' +p192906 +sg25268 +S'Portland I' +p192907 +sg25270 +S'James McGarrell' +p192908 +sa(dp192909 +g25273 +S'lithograph on Nacre paper' +p192910 +sg25267 +g27 +sg25275 +S'1963' +p192911 +sg25268 +S'Portland II' +p192912 +sg25270 +S'James McGarrell' +p192913 +sa(dp192914 +g25273 +S'lithograph on Nacre paper' +p192915 +sg25267 +g27 +sg25275 +S'1962' +p192916 +sg25268 +S'Tondo' +p192917 +sg25270 +S'James McGarrell' +p192918 +sa(dp192919 +g25273 +S'lithograph in ochre on Nacre paper' +p192920 +sg25267 +g27 +sg25275 +S'1963' +p192921 +sg25268 +S'Two Models' +p192922 +sg25270 +S'James McGarrell' +p192923 +sa(dp192924 +g25273 +S'lithograph on Arches paper' +p192925 +sg25267 +g27 +sg25275 +S'1962' +p192926 +sg25268 +S'Untitled' +p192927 +sg25270 +S'James McGarrell' +p192928 +sa(dp192929 +g25273 +S'lithograph (zinc and stone) in ochre, blue, and green on Arches paper' +p192930 +sg25267 +g27 +sg25275 +S'1962' +p192931 +sg25268 +S'Untitled' +p192932 +sg25270 +S'James McGarrell' +p192933 +sa(dp192934 +g25273 +S'lithograph on Arches paper' +p192935 +sg25267 +g27 +sg25275 +S'1962' +p192936 +sg25268 +S'Untitled' +p192937 +sg25270 +S'James McGarrell' +p192938 +sa(dp192939 +g25273 +S'lithograph in brown on Arches paper' +p192940 +sg25267 +g27 +sg25275 +S'1962' +p192941 +sg25268 +S'Untitled' +p192942 +sg25270 +S'James McGarrell' +p192943 +sa(dp192944 +g25273 +S'lithograph (zinc) on Arches paper' +p192945 +sg25267 +g27 +sg25275 +S'1962' +p192946 +sg25268 +S'Venus' +p192947 +sg25270 +S'James McGarrell' +p192948 +sa(dp192949 +g25273 +S'lithograph on Rives BFK paper' +p192950 +sg25267 +g27 +sg25275 +S'1962' +p192951 +sg25268 +S'Wings I' +p192952 +sg25270 +S'James McGarrell' +p192953 +sa(dp192954 +g25268 +S"Job's Evil Dreams" +p192955 +sg25270 +S'William Blake' +p192956 +sg25273 +S'engraving' +p192957 +sg25275 +S'1825' +p192958 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007663.jpg' +p192959 +sg25267 +g27 +sa(dp192960 +g25273 +S'lithograph on Nacre paper' +p192961 +sg25267 +g27 +sg25275 +S'1962' +p192962 +sg25268 +S'Wings II' +p192963 +sg25270 +S'James McGarrell' +p192964 +sa(dp192965 +g25273 +S'lithograph (zinc) in yellow and orange on Arches paper' +p192966 +sg25267 +g27 +sg25275 +S'1962' +p192967 +sg25268 +S'Untitled' +p192968 +sg25270 +S'John D. McLaughlin' +p192969 +sa(dp192970 +g25273 +S'lithograph on Rives BFK paper' +p192971 +sg25267 +g27 +sg25275 +S'1962' +p192972 +sg25268 +S'Untitled' +p192973 +sg25270 +S'John D. McLaughlin' +p192974 +sa(dp192975 +g25273 +S'lithograph (stone and zinc) in gray and yellow on Arches paper' +p192976 +sg25267 +g27 +sg25275 +S'1963' +p192977 +sg25268 +S'Untitled' +p192978 +sg25270 +S'John D. McLaughlin' +p192979 +sa(dp192980 +g25273 +S'lithograph on Rives BFK paper' +p192981 +sg25267 +g27 +sg25275 +S'1963' +p192982 +sg25268 +S'Untitled' +p192983 +sg25270 +S'John D. McLaughlin' +p192984 +sa(dp192985 +g25273 +S'lithograph (stone) in green and black on Rives BFKpaper' +p192986 +sg25267 +g27 +sg25275 +S'1963' +p192987 +sg25268 +S'Untitled' +p192988 +sg25270 +S'John D. McLaughlin' +p192989 +sa(dp192990 +g25273 +S'lithograph (zinc)' +p192991 +sg25267 +g27 +sg25275 +S'1963' +p192992 +sg25268 +S'Untitled' +p192993 +sg25270 +S'John D. McLaughlin' +p192994 +sa(dp192995 +g25273 +S'lithograph (zinc) on Rives BFK paper' +p192996 +sg25267 +g27 +sg25275 +S'1963' +p192997 +sg25268 +S'Untitled' +p192998 +sg25270 +S'John D. McLaughlin' +p192999 +sa(dp193000 +g25273 +S'lithograph (stone) on Rives BFK paper' +p193001 +sg25267 +g27 +sg25275 +S'1963' +p193002 +sg25268 +S'Untitled' +p193003 +sg25270 +S'John D. McLaughlin' +p193004 +sa(dp193005 +g25273 +S'lithograph (stone) in red and blue on Rives BFK paper' +p193006 +sg25267 +g27 +sg25275 +S'1963' +p193007 +sg25268 +S'Untitled' +p193008 +sg25270 +S'John D. McLaughlin' +p193009 +sa(dp193010 +g25268 +S'The Wrath of Elihu' +p193011 +sg25270 +S'William Blake' +p193012 +sg25273 +S'engraving' +p193013 +sg25275 +S'1825' +p193014 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007665.jpg' +p193015 +sg25267 +g27 +sa(dp193016 +g25273 +S'lithograph on Rives BFK paper' +p193017 +sg25267 +g27 +sg25275 +S'1963' +p193018 +sg25268 +S'Untitled' +p193019 +sg25270 +S'John D. McLaughlin' +p193020 +sa(dp193021 +g25273 +S'lithograph (stone and zinc) in yellow and gray on Rives BFK paper' +p193022 +sg25267 +g27 +sg25275 +S'1963' +p193023 +sg25268 +S'Untitled' +p193024 +sg25270 +S'John D. McLaughlin' +p193025 +sa(dp193026 +g25273 +S'lithograph (stone) in black and gray on Rives BFK paper' +p193027 +sg25267 +g27 +sg25275 +S'1963' +p193028 +sg25268 +S'Untitled' +p193029 +sg25270 +S'John D. McLaughlin' +p193030 +sa(dp193031 +g25273 +S'lithograph on Rives BFK paper' +p193032 +sg25267 +g27 +sg25275 +S'1963' +p193033 +sg25268 +S'Untitled' +p193034 +sg25270 +S'John D. McLaughlin' +p193035 +sa(dp193036 +g25273 +S'lithograph (stone) in gray and white on Rives BFK paper' +p193037 +sg25267 +g27 +sg25275 +S'1963' +p193038 +sg25268 +S'Untitled' +p193039 +sg25270 +S'John D. McLaughlin' +p193040 +sa(dp193041 +g25273 +S'lithograph (stone) in yellow and white on Rives BFK paper' +p193042 +sg25267 +g27 +sg25275 +S'1963' +p193043 +sg25268 +S'Untitled' +p193044 +sg25270 +S'John D. McLaughlin' +p193045 +sa(dp193046 +g25273 +S'lithograph (stone and zinc) in blue and black on Rives BFK paper' +p193047 +sg25267 +g27 +sg25275 +S'1963' +p193048 +sg25268 +S'Untitled' +p193049 +sg25270 +S'John D. McLaughlin' +p193050 +sa(dp193051 +g25273 +S'lithograph (stone and zinc) in black and gray on Rives BFK paper' +p193052 +sg25267 +g27 +sg25275 +S'1963' +p193053 +sg25268 +S'Untitled' +p193054 +sg25270 +S'John D. McLaughlin' +p193055 +sa(dp193056 +g25273 +S'lithograph (stone and zinc) in black and gray on Nacre paper' +p193057 +sg25267 +g27 +sg25275 +S'1961' +p193058 +sg25268 +S'Flight into September' +p193059 +sg25270 +S'George Joji Miyasaki' +p193060 +sa(dp193061 +g25273 +S'5-color lithograph (stone) on Nacre paper' +p193062 +sg25267 +g27 +sg25275 +S'1961' +p193063 +sg25268 +S'The Flying Machine' +p193064 +sg25270 +S'George Joji Miyasaki' +p193065 +sa(dp193066 +g25268 +S'The Lord Answering Job out of the Whirlwind' +p193067 +sg25270 +S'William Blake' +p193068 +sg25273 +S'engraving' +p193069 +sg25275 +S'1825' +p193070 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007667.jpg' +p193071 +sg25267 +g27 +sa(dp193072 +g25273 +S'4-color lithograph (stone) on Nacre paper' +p193073 +sg25267 +g27 +sg25275 +S'1961' +p193074 +sg25268 +S'Hillside, No.2' +p193075 +sg25270 +S'George Joji Miyasaki' +p193076 +sa(dp193077 +g25273 +S'lithograph on Nacre paper' +p193078 +sg25267 +g27 +sg25275 +S'1961' +p193079 +sg25268 +S'Into Autumn' +p193080 +sg25270 +S'George Joji Miyasaki' +p193081 +sa(dp193082 +g25273 +S'lithograph (zinc) in yellow and black on Nacre paper' +p193083 +sg25267 +g27 +sg25275 +S'1961' +p193084 +sg25268 +S'Moon in August' +p193085 +sg25270 +S'George Joji Miyasaki' +p193086 +sa(dp193087 +g25273 +S'4-color lithograph on Arches paper' +p193088 +sg25267 +g27 +sg25275 +S'1961' +p193089 +sg25268 +S'Nocturnal Forms' +p193090 +sg25270 +S'George Joji Miyasaki' +p193091 +sa(dp193092 +g25273 +S'lithograph (zinc) on Nacre paper' +p193093 +sg25267 +g27 +sg25275 +S'1962' +p193094 +sg25268 +S'Black Floe' +p193095 +sg25270 +S'Carl Morris' +p193096 +sa(dp193097 +g25273 +S'6-color lithograph (stone and zinc) on Rives BFK paper' +p193098 +sg25267 +g27 +sg25275 +S'1962' +p193099 +sg25268 +S'Flight' +p193100 +sg25270 +S'Carl Morris' +p193101 +sa(dp193102 +g25273 +S'lithograph (zinc) in red, gray, and black on Arches paper' +p193103 +sg25267 +g27 +sg25275 +S'1962' +p193104 +sg25268 +S'Floe' +p193105 +sg25270 +S'Carl Morris' +p193106 +sa(dp193107 +g25273 +S'8-color lithoraph (zinc) on Nacre paper' +p193108 +sg25267 +g27 +sg25275 +S'1962' +p193109 +sg25268 +S'Panel I' +p193110 +sg25270 +S'Carl Morris' +p193111 +sa(dp193112 +g25273 +S'7-color lithoraph (zinc) on Nacre paper' +p193113 +sg25267 +g27 +sg25275 +S'1962' +p193114 +sg25268 +S'Panel II' +p193115 +sg25270 +S'Carl Morris' +p193116 +sa(dp193117 +g25273 +S'7-color lithoraph (zinc) on Nacre paper' +p193118 +sg25267 +g27 +sg25275 +S'1962' +p193119 +sg25268 +S'Span' +p193120 +sg25270 +S'Carl Morris' +p193121 +sa(dp193122 +g25268 +S'The Creation' +p193123 +sg25270 +S'William Blake' +p193124 +sg25273 +S'engraving' +p193125 +sg25275 +S'1825' +p193126 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a000766f.jpg' +p193127 +sg25267 +g27 +sa(dp193128 +g25273 +S'lithograph on Nacre paper' +p193129 +sg25267 +g27 +sg25275 +S'1962' +p193130 +sg25268 +S'First Encounter' +p193131 +sg25270 +S'Hilda Morris' +p193132 +sa(dp193133 +g25273 +S'lithograph (zinc) on Nacre paper' +p193134 +sg25267 +g27 +sg25275 +S'1962' +p193135 +sg25268 +S"Tuesday's Guest" +p193136 +sg25270 +S'Hilda Morris' +p193137 +sa(dp193138 +g25273 +S'5-color lithograph on Nacre paper' +p193139 +sg25267 +g27 +sg25275 +S'1961' +p193140 +sg25268 +S'Lode' +p193141 +sg25270 +S'John Muench' +p193142 +sa(dp193143 +g25273 +S'6-color lithograph on Nacre paper' +p193144 +sg25267 +g27 +sg25275 +S'1961' +p193145 +sg25268 +S'Voyage de Nuit' +p193146 +sg25270 +S'John Muench' +p193147 +sa(dp193148 +g25273 +S'(artist)' +p193149 +sg25267 +g27 +sg25275 +S'\n' +p193150 +sg25268 +S'Untitled' +p193151 +sg25270 +S'Artist Information (' +p193152 +sa(dp193153 +g25273 +S'lithograph on Nacre paper' +p193154 +sg25267 +g27 +sg25275 +S'1962' +p193155 +sg25268 +S'Ancient Fragment' +p193156 +sg25270 +S'Reginald H. Neal' +p193157 +sa(dp193158 +g25273 +S'lithograph on Nacre paper' +p193159 +sg25267 +g27 +sg25275 +S'1962' +p193160 +sg25268 +S'Old Flag' +p193161 +sg25270 +S'Reginald H. Neal' +p193162 +sa(dp193163 +g25273 +S'lithograph (stone and zinc) in black and red on Arches paper' +p193164 +sg25267 +g27 +sg25275 +S'1963' +p193165 +sg25268 +S'Untitled' +p193166 +sg25270 +S'Louise Nevelson' +p193167 +sa(dp193168 +g25273 +S'lithograph on Rives BFK paper' +p193169 +sg25267 +g27 +sg25275 +S'1963' +p193170 +sg25268 +S'Untitled' +p193171 +sg25270 +S'Louise Nevelson' +p193172 +sa(dp193173 +g25273 +S'lithograph (stone and zinc) in black and brown on Rives BFK paper' +p193174 +sg25267 +g27 +sg25275 +S'1963' +p193175 +sg25268 +S'Untitled' +p193176 +sg25270 +S'Louise Nevelson' +p193177 +sa(dp193178 +g25268 +S'Behemoth and Leviathan' +p193179 +sg25270 +S'William Blake' +p193180 +sg25273 +S'engraving' +p193181 +sg25275 +S'1825' +p193182 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a000766b.jpg' +p193183 +sg25267 +g27 +sa(dp193184 +g25273 +S'lithograph on Rives BFK paper' +p193185 +sg25267 +g27 +sg25275 +S'1963' +p193186 +sg25268 +S'Untitled' +p193187 +sg25270 +S'Louise Nevelson' +p193188 +sa(dp193189 +g25273 +S'lithograph (zinc) on Rives BFK paper' +p193190 +sg25267 +g27 +sg25275 +S'1963' +p193191 +sg25268 +S'Untitled' +p193192 +sg25270 +S'Louise Nevelson' +p193193 +sa(dp193194 +g25273 +S'lithograph on Rives BFK paper' +p193195 +sg25267 +g27 +sg25275 +S'1963' +p193196 +sg25268 +S'Untitled' +p193197 +sg25270 +S'Louise Nevelson' +p193198 +sa(dp193199 +g25273 +S'lithograph (zinc) on Rives BFK paper' +p193200 +sg25267 +g27 +sg25275 +S'1963' +p193201 +sg25268 +S'Untitled' +p193202 +sg25270 +S'Louise Nevelson' +p193203 +sa(dp193204 +g25273 +S'lithograph on Rives BFK paper' +p193205 +sg25267 +g27 +sg25275 +S'1963' +p193206 +sg25268 +S'Untitled' +p193207 +sg25270 +S'Louise Nevelson' +p193208 +sa(dp193209 +g25273 +S'lithograph on Rives BFK paper' +p193210 +sg25267 +g27 +sg25275 +S'1963' +p193211 +sg25268 +S'Untitled' +p193212 +sg25270 +S'Louise Nevelson' +p193213 +sa(dp193214 +g25273 +S'lithograph (stone and zinc) in black and brown on Rives BFK paper' +p193215 +sg25267 +g27 +sg25275 +S'1963' +p193216 +sg25268 +S'Untitled' +p193217 +sg25270 +S'Louise Nevelson' +p193218 +sa(dp193219 +g25268 +S'Untitled' +p193220 +sg25270 +S'Louise Nevelson' +p193221 +sg25273 +S'lithograph on Rives BFK paper' +p193222 +sg25275 +S'1963' +p193223 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b4b.jpg' +p193224 +sg25267 +g27 +sa(dp193225 +g25273 +S'lithograph (zinc) on Arches paper' +p193226 +sg25267 +g27 +sg25275 +S'1963' +p193227 +sg25268 +S'Untitled' +p193228 +sg25270 +S'Louise Nevelson' +p193229 +sa(dp193230 +g25273 +S'transfer lithograph on Rives BFK paper' +p193231 +sg25267 +g27 +sg25275 +S'1963' +p193232 +sg25268 +S'Untitled' +p193233 +sg25270 +S'Louise Nevelson' +p193234 +sa(dp193235 +g25268 +S'The Fall of Satan' +p193236 +sg25270 +S'William Blake' +p193237 +sg25273 +S'engraving' +p193238 +sg25275 +S'1825' +p193239 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007672.jpg' +p193240 +sg25267 +g27 +sa(dp193241 +g25273 +S'lithograph on Rives BFK paper' +p193242 +sg25267 +g27 +sg25275 +S'1963' +p193243 +sg25268 +S'Untitled' +p193244 +sg25270 +S'Louise Nevelson' +p193245 +sa(dp193246 +g25273 +S'lithograph on Rives BFK paper' +p193247 +sg25267 +g27 +sg25275 +S'1963' +p193248 +sg25268 +S'Untitled' +p193249 +sg25270 +S'Louise Nevelson' +p193250 +sa(dp193251 +g25273 +S'lithograph (stone and zinc) in black and blue on Rives BFK paper' +p193252 +sg25267 +g27 +sg25275 +S'1963' +p193253 +sg25268 +S'Untitled' +p193254 +sg25270 +S'Louise Nevelson' +p193255 +sa(dp193256 +g25273 +S'lithograph on Rives BFK paper' +p193257 +sg25267 +g27 +sg25275 +S'1963' +p193258 +sg25268 +S'Untitled' +p193259 +sg25270 +S'Louise Nevelson' +p193260 +sa(dp193261 +g25273 +S'transfer lithograph on Nacre paper' +p193262 +sg25267 +g27 +sg25275 +S'1963' +p193263 +sg25268 +S'Untitled' +p193264 +sg25270 +S'Louise Nevelson' +p193265 +sa(dp193266 +g25273 +S'lithograph on Nacre paper' +p193267 +sg25267 +g27 +sg25275 +S'1963' +p193268 +sg25268 +S'Untitled' +p193269 +sg25270 +S'Louise Nevelson' +p193270 +sa(dp193271 +g25273 +S'transfer lithograph on Rives BFK paper' +p193272 +sg25267 +g27 +sg25275 +S'1963' +p193273 +sg25268 +S'Untitled' +p193274 +sg25270 +S'Louise Nevelson' +p193275 +sa(dp193276 +g25273 +S'lithograph on Rives BFK paper' +p193277 +sg25267 +g27 +sg25275 +S'1963' +p193278 +sg25268 +S'Untitled' +p193279 +sg25270 +S'Louise Nevelson' +p193280 +sa(dp193281 +g25273 +S'lithograph in black and gray on Rives BFK paper' +p193282 +sg25267 +g27 +sg25275 +S'1963' +p193283 +sg25268 +S'Untitled' +p193284 +sg25270 +S'Louise Nevelson' +p193285 +sa(dp193286 +g25273 +S'lithograph (stone and zinc) in black and orange onRives BFK paper' +p193287 +sg25267 +g27 +sg25275 +S'1963' +p193288 +sg25268 +S'Untitled' +p193289 +sg25270 +S'Louise Nevelson' +p193290 +sa(dp193291 +g25268 +S'The Vision of God' +p193292 +sg25270 +S'William Blake' +p193293 +sg25273 +S'engraving' +p193294 +sg25275 +S'1825' +p193295 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a000766c.jpg' +p193296 +sg25267 +g27 +sa(dp193297 +g25273 +S'lithograph on Nacre paper' +p193298 +sg25267 +g27 +sg25275 +S'1963' +p193299 +sg25268 +S'Untitled' +p193300 +sg25270 +S'Louise Nevelson' +p193301 +sa(dp193302 +g25273 +S'lithograph (stone and zinc) in black and brown on Arches paper' +p193303 +sg25267 +g27 +sg25275 +S'1963' +p193304 +sg25268 +S'Untitled' +p193305 +sg25270 +S'Louise Nevelson' +p193306 +sa(dp193307 +g25273 +S'lithograph on Rives BFK paper' +p193308 +sg25267 +g27 +sg25275 +S'1963' +p193309 +sg25268 +S'Untitled' +p193310 +sg25270 +S'Louise Nevelson' +p193311 +sa(dp193312 +g25273 +S'lithograph in two blues and black on Rives BFK paper' +p193313 +sg25267 +g27 +sg25275 +S'1961' +p193314 +sg25268 +S'Untitled I' +p193315 +sg25270 +S'Tetsuo Ochikubo' +p193316 +sa(dp193317 +g25273 +S'5-color lithograph on Nacre paper' +p193318 +sg25267 +g27 +sg25275 +S'1961' +p193319 +sg25268 +S'Untitled II' +p193320 +sg25270 +S'Tetsuo Ochikubo' +p193321 +sa(dp193322 +g25273 +S'5-color lithograph (zinc) on Nacre paper' +p193323 +sg25267 +g27 +sg25275 +S'1961' +p193324 +sg25268 +S'Untitled III' +p193325 +sg25270 +S'Tetsuo Ochikubo' +p193326 +sa(dp193327 +g25273 +S'5-color lithograph (stone and zinc) on Nacre paper' +p193328 +sg25267 +g27 +sg25275 +S'1961' +p193329 +sg25268 +S'Untitled IV' +p193330 +sg25270 +S'Tetsuo Ochikubo' +p193331 +sa(dp193332 +g25273 +S'5-color lithograph (stone and zinc) on Nacre paper' +p193333 +sg25267 +g27 +sg25275 +S'1961' +p193334 +sg25268 +S'Untitled V' +p193335 +sg25270 +S'Tetsuo Ochikubo' +p193336 +sa(dp193337 +g25273 +S'6-color lithograph (zinc) on Nacre paper' +p193338 +sg25267 +g27 +sg25275 +S'1961' +p193339 +sg25268 +S'Untitled VI' +p193340 +sg25270 +S'Tetsuo Ochikubo' +p193341 +sa(dp193342 +g25273 +S'lithograph in violet and two blacks on Nacre paper' +p193343 +sg25267 +g27 +sg25275 +S'1961' +p193344 +sg25268 +S'Untitled VII' +p193345 +sg25270 +S'Tetsuo Ochikubo' +p193346 +sa(dp193347 +g25268 +S"Job's Sacrifice" +p193348 +sg25270 +S'William Blake' +p193349 +sg25273 +S'engraving' +p193350 +sg25275 +S'1825' +p193351 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007671.jpg' +p193352 +sg25267 +g27 +sa(dp193353 +g25273 +S'lithograph (zinc) in tan, blue-violet, and gray-tan on Nacre paper' +p193354 +sg25267 +g27 +sg25275 +S'1961' +p193355 +sg25268 +S'Untitled VIII' +p193356 +sg25270 +S'Tetsuo Ochikubo' +p193357 +sa(dp193358 +g25273 +S'lithograph (stone and zinc) in ochre, brown, and gray on Nacre paper' +p193359 +sg25267 +g27 +sg25275 +S'1961' +p193360 +sg25268 +S'Untitled IX' +p193361 +sg25270 +S'Tetsuo Ochikubo' +p193362 +sa(dp193363 +g25273 +S'lithograph (zinc) in two yellow ochres and black' +p193364 +sg25267 +g27 +sg25275 +S'1961' +p193365 +sg25268 +S'Untitled X' +p193366 +sg25270 +S'Tetsuo Ochikubo' +p193367 +sa(dp193368 +g25273 +S'4-color lithograph on Nacre paper' +p193369 +sg25267 +g27 +sg25275 +S'1961' +p193370 +sg25268 +S'Antelope Priest' +p193371 +sg25270 +S"Frederick O'Hara" +p193372 +sa(dp193373 +g25273 +S'lithograph in red and green on Arches paper' +p193374 +sg25267 +g27 +sg25275 +S'1962' +p193375 +sg25268 +S'The Canyon' +p193376 +sg25270 +S"Frederick O'Hara" +p193377 +sa(dp193378 +g25273 +S'lithograph (zinc) in orange, brown, and black on Arches paper' +p193379 +sg25267 +g27 +sg25275 +S'1962' +p193380 +sg25268 +S'Hunter' +p193381 +sg25270 +S"Frederick O'Hara" +p193382 +sa(dp193383 +g25273 +S'6-color lithograph (stone and zinc) on Rives BFK paper' +p193384 +sg25267 +g27 +sg25275 +S'1962' +p193385 +sg25268 +S'Morning Hunter' +p193386 +sg25270 +S"Frederick O'Hara" +p193387 +sa(dp193388 +g25273 +S'7-color lithograph (stone and zinc) on Arches paper' +p193389 +sg25267 +g27 +sg25275 +S'1962' +p193390 +sg25268 +S'Riders' +p193391 +sg25270 +S"Frederick O'Hara" +p193392 +sa(dp193393 +g25273 +S'5-color lithograph (stone and zinc) on Nacre paper' +p193394 +sg25267 +g27 +sg25275 +S'1962' +p193395 +sg25268 +S'War Bonnet' +p193396 +sg25270 +S"Frederick O'Hara" +p193397 +sa(dp193398 +g25273 +S'lithograph on Arches paper' +p193399 +sg25267 +g27 +sg25275 +S'1961' +p193400 +sg25268 +S'December' +p193401 +sg25270 +S'Harold Persico Paris' +p193402 +sa(dp193403 +g25268 +S'Job Accepting Charity' +p193404 +sg25270 +S'William Blake' +p193405 +sg25273 +S'engraving' +p193406 +sg25275 +S'1825' +p193407 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007670.jpg' +p193408 +sg25267 +g27 +sa(dp193409 +g25273 +S'lithograph (zinc) in violet, brown, and blue on Nacre paper' +p193410 +sg25267 +g27 +sg25275 +S'1961' +p193411 +sg25268 +S'Untitled' +p193412 +sg25270 +S'Raymond Parker' +p193413 +sa(dp193414 +g25273 +S'lithograph in green-black on Nacre paper' +p193415 +sg25267 +g27 +sg25275 +S'1963' +p193416 +sg25268 +S'Tiny but Mighty' +p193417 +sg25270 +S'Rudy Pozzatti' +p193418 +sa(dp193419 +g25273 +S'portfolio with ten color lithographs including title page, dedication page, and colophon on Nacre paper' +p193420 +sg25267 +g27 +sg25275 +S'1963' +p193421 +sg25268 +S'Bugs' +p193422 +sg25270 +S'Rudy Pozzatti' +p193423 +sa(dp193424 +g25273 +S'lithograph in green-black on Nacre paper' +p193425 +sg25267 +g27 +sg25275 +S'1963' +p193426 +sg25268 +S'Mummies' +p193427 +sg25270 +S'Rudy Pozzatti' +p193428 +sa(dp193429 +g25273 +S'lithograph in green-black on Nacre paper' +p193430 +sg25267 +g27 +sg25275 +S'1963' +p193431 +sg25268 +S'Ants Aplenty' +p193432 +sg25270 +S'Rudy Pozzatti' +p193433 +sa(dp193434 +g25273 +S'lithograph in green-black on Nacre paper' +p193435 +sg25267 +g27 +sg25275 +S'1963' +p193436 +sg25268 +S'Four Gnats - One Fossil' +p193437 +sg25270 +S'Rudy Pozzatti' +p193438 +sa(dp193439 +g25273 +S'lithograph in green-black on Nacre paper' +p193440 +sg25267 +g27 +sg25275 +S'1963' +p193441 +sg25268 +S'Beetles' +p193442 +sg25270 +S'Rudy Pozzatti' +p193443 +sa(dp193444 +g25273 +S'lithograph in green-black on Nacre paper' +p193445 +sg25267 +g27 +sg25275 +S'1963' +p193446 +sg25268 +S'Five Wooly Bears' +p193447 +sg25270 +S'Rudy Pozzatti' +p193448 +sa(dp193449 +g25273 +S'lithograph in green-black on Nacre paper' +p193450 +sg25267 +g27 +sg25275 +S'1963' +p193451 +sg25268 +S'Dedication Page' +p193452 +sg25270 +S'Rudy Pozzatti' +p193453 +sa(dp193454 +g25273 +S'lithograph in green-black on Nacre paper' +p193455 +sg25267 +g27 +sg25275 +S'1963' +p193456 +sg25268 +S'Title Page' +p193457 +sg25270 +S'Rudy Pozzatti' +p193458 +sa(dp193459 +g25268 +S'The Virgin Reading' +p193460 +sg25270 +S'Vittore Carpaccio' +p193461 +sg25273 +S'oil on panel transferred to canvas' +p193462 +sg25275 +S'c. 1505' +p193463 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007d3.jpg' +p193464 +sg25267 +g27 +sa(dp193465 +g25268 +S'Job and His Daughters' +p193466 +sg25270 +S'William Blake' +p193467 +sg25273 +S'engraving' +p193468 +sg25275 +S'1825' +p193469 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a000766e.jpg' +p193470 +sg25267 +g27 +sa(dp193471 +g25273 +S'lithograph in green-black on Nacre paper' +p193472 +sg25267 +g27 +sg25275 +S'1963' +p193473 +sg25268 +S'Moth' +p193474 +sg25270 +S'Rudy Pozzatti' +p193475 +sa(dp193476 +g25273 +S'transfer lithograph in green-black on Nacre paper' +p193477 +sg25267 +g27 +sg25275 +S'1963' +p193478 +sg25268 +S'Colophon' +p193479 +sg25270 +S'Rudy Pozzatti' +p193480 +sa(dp193481 +g25273 +S'lithograph in maroon-black on Nacre paper' +p193482 +sg25267 +g27 +sg25275 +S'1963' +p193483 +sg25268 +S'Caracalla' +p193484 +sg25270 +S'Rudy Pozzatti' +p193485 +sa(dp193486 +g25273 +S'lithograph on Nacre paper' +p193487 +sg25267 +g27 +sg25275 +S'1963' +p193488 +sg25268 +S'Classic Ruins I' +p193489 +sg25270 +S'Rudy Pozzatti' +p193490 +sa(dp193491 +g25273 +S'lithograph on Barcham Green paper' +p193492 +sg25267 +g27 +sg25275 +S'1963' +p193493 +sg25268 +S'Classic Ruins II' +p193494 +sg25270 +S'Rudy Pozzatti' +p193495 +sa(dp193496 +g25273 +S'lithograph in ochre and dark maroon on Nacre paper' +p193497 +sg25267 +g27 +sg25275 +S'1963' +p193498 +sg25268 +S'Classic Ruins III' +p193499 +sg25270 +S'Rudy Pozzatti' +p193500 +sa(dp193501 +g25273 +S'lithograph in umber on Arches paper' +p193502 +sg25267 +g27 +sg25275 +S'1963' +p193503 +sg25268 +S'Classic Ruins IV' +p193504 +sg25270 +S'Rudy Pozzatti' +p193505 +sa(dp193506 +g25273 +S'lithograph in brown on Arches paper' +p193507 +sg25267 +g27 +sg25275 +S'1963' +p193508 +sg25268 +S'Classic Ruins V' +p193509 +sg25270 +S'Rudy Pozzatti' +p193510 +sa(dp193511 +g25273 +S'lithograph on Arches paper' +p193512 +sg25267 +g27 +sg25275 +S'1963' +p193513 +sg25268 +S'Colosseum' +p193514 +sg25270 +S'Rudy Pozzatti' +p193515 +sa(dp193516 +g25273 +S'lithograph' +p193517 +sg25267 +g27 +sg25275 +S'1963' +p193518 +sg25268 +S'Council' +p193519 +sg25270 +S'Rudy Pozzatti' +p193520 +sa(dp193521 +g25268 +S'Job and His Wife Restored to Prosperity' +p193522 +sg25270 +S'William Blake' +p193523 +sg25273 +S'engraving' +p193524 +sg25275 +S'1825' +p193525 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007673.jpg' +p193526 +sg25267 +g27 +sa(dp193527 +g25273 +S'lithograph in dark sienna on Arches paper' +p193528 +sg25267 +g27 +sg25275 +S'1963' +p193529 +sg25268 +S'Etruscan Lady' +p193530 +sg25270 +S'Rudy Pozzatti' +p193531 +sa(dp193532 +g25273 +S'lithograph with tusche, crayon, and scraping' +p193533 +sg25267 +g27 +sg25275 +S'1963' +p193534 +sg25268 +S'Forum' +p193535 +sg25270 +S'Rudy Pozzatti' +p193536 +sa(dp193537 +g25273 +S'lithograph in dark brown and blue-green' +p193538 +sg25267 +g27 +sg25275 +S'1963' +p193539 +sg25268 +S'Janus' +p193540 +sg25270 +S'Rudy Pozzatti' +p193541 +sa(dp193542 +g25273 +S'lithograph in dark green black on Arches paper' +p193543 +sg25267 +g27 +sg25275 +S'1963' +p193544 +sg25268 +S'Janus II' +p193545 +sg25270 +S'Rudy Pozzatti' +p193546 +sa(dp193547 +g25273 +S'lithograph (stone and zinc) in ochre and blue on Nacre paper' +p193548 +sg25267 +g27 +sg25275 +S'1963' +p193549 +sg25268 +S'Mother and Child' +p193550 +sg25270 +S'Rudy Pozzatti' +p193551 +sa(dp193552 +g25273 +S'lithograph' +p193553 +sg25267 +g27 +sg25275 +S'1963' +p193554 +sg25268 +S'Portraits on Stone I' +p193555 +sg25270 +S'Rudy Pozzatti' +p193556 +sa(dp193557 +g25273 +S'lithograph in black and umber' +p193558 +sg25267 +g27 +sg25275 +S'1963' +p193559 +sg25268 +S'Portraits on Stone II' +p193560 +sg25270 +S'Rudy Pozzatti' +p193561 +sa(dp193562 +g25273 +S'lithograph on Arches paper' +p193563 +sg25267 +g27 +sg25275 +S'1963' +p193564 +sg25268 +S'Ruins at Night' +p193565 +sg25270 +S'Rudy Pozzatti' +p193566 +sa(dp193567 +g25273 +S'lithograph on Arches paper' +p193568 +sg25267 +g27 +sg25275 +S'1963' +p193569 +sg25268 +S'Stone Portraits' +p193570 +sg25270 +S'Rudy Pozzatti' +p193571 +sa(dp193572 +g25273 +S'portfolio with fourteen color lithographs including title page and colophon; brown wrapper with title printed in stencil for each print' +p193573 +sg25267 +g27 +sg25275 +S'1963' +p193574 +sg25268 +S'XII Romans' +p193575 +sg25270 +S'Rudy Pozzatti' +p193576 +sa(dp193577 +g25268 +S'May-Day in London' +p193578 +sg25270 +S'Artist Information (' +p193579 +sg25273 +S'(artist after)' +p193580 +sg25275 +S'\n' +p193581 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077b8.jpg' +p193582 +sg25267 +g27 +sa(dp193583 +g25273 +S'lithograph (stone and zinc) in black and maroon on Nacre paper' +p193584 +sg25267 +g27 +sg25275 +S'1963' +p193585 +sg25268 +S'Title Page [verso]' +p193586 +sg25270 +S'Rudy Pozzatti' +p193587 +sa(dp193588 +g25273 +S'lithograph in maroon and black on Nacre paper' +p193589 +sg25267 +g27 +sg25275 +S'1963' +p193590 +sg25268 +S'Title Page [recto]' +p193591 +sg25270 +S'Rudy Pozzatti' +p193592 +sa(dp193593 +g25273 +S'lithograph in black and maroon on Nacre paper' +p193594 +sg25267 +g27 +sg25275 +S'1963' +p193595 +sg25268 +S'Marcus Aurelius' +p193596 +sg25270 +S'Rudy Pozzatti' +p193597 +sa(dp193598 +g25273 +S'lithograph in black and maroon on Nacre paper' +p193599 +sg25267 +g27 +sg25275 +S'1963' +p193600 +sg25268 +S'Numa Pompilius' +p193601 +sg25270 +S'Rudy Pozzatti' +p193602 +sa(dp193603 +g25273 +S'lithograph in black and maroon on Nacre paper' +p193604 +sg25267 +g27 +sg25275 +S'1963' +p193605 +sg25268 +S'Agrippa' +p193606 +sg25270 +S'Rudy Pozzatti' +p193607 +sa(dp193608 +g25273 +S'lithograph in black and maroon on Nacre paper' +p193609 +sg25267 +g27 +sg25275 +S'1963' +p193610 +sg25268 +S'Scipio Africanus' +p193611 +sg25270 +S'Rudy Pozzatti' +p193612 +sa(dp193613 +g25273 +S'lithograph in black and maroon on Nacre paper' +p193614 +sg25267 +g27 +sg25275 +S'1963' +p193615 +sg25268 +S'Julius Caesar' +p193616 +sg25270 +S'Rudy Pozzatti' +p193617 +sa(dp193618 +g25273 +S'lithograph in black and maroon on Nacre paper' +p193619 +sg25267 +g27 +sg25275 +S'1963' +p193620 +sg25268 +S'Caligula' +p193621 +sg25270 +S'Rudy Pozzatti' +p193622 +sa(dp193623 +g25273 +S'lithograph in black and maroon on Nacre paper' +p193624 +sg25267 +g27 +sg25275 +S'1963' +p193625 +sg25268 +S'Hadrian' +p193626 +sg25270 +S'Rudy Pozzatti' +p193627 +sa(dp193628 +g25273 +S'lithograph in black and maroon on Nacre paper' +p193629 +sg25267 +g27 +sg25275 +S'1963' +p193630 +sg25268 +S'Titus' +p193631 +sg25270 +S'Rudy Pozzatti' +p193632 +sa(dp193633 +g25268 +S'The Discomfited Duellists' +p193634 +sg25270 +S'Artist Information (' +p193635 +sg25273 +S'(artist after)' +p193636 +sg25275 +S'\n' +p193637 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077b6.jpg' +p193638 +sg25267 +g27 +sa(dp193639 +g25273 +S'lithograph in black and maroon on Nacre paper' +p193640 +sg25267 +g27 +sg25275 +S'1963' +p193641 +sg25268 +S'Cicero' +p193642 +sg25270 +S'Rudy Pozzatti' +p193643 +sa(dp193644 +g25273 +S'lithograph in black and maroon on Nacre paper' +p193645 +sg25267 +g27 +sg25275 +S'1963' +p193646 +sg25268 +S'Trajan' +p193647 +sg25270 +S'Rudy Pozzatti' +p193648 +sa(dp193649 +g25273 +S'lithograph in black and maroon on Nacre paper' +p193650 +sg25267 +g27 +sg25275 +S'1963' +p193651 +sg25268 +S'Vespasian' +p193652 +sg25270 +S'Rudy Pozzatti' +p193653 +sa(dp193654 +g25273 +S'lithograph in black and maroon on Nacre paper' +p193655 +sg25267 +g27 +sg25275 +S'1963' +p193656 +sg25268 +S'Octavius' +p193657 +sg25270 +S'Rudy Pozzatti' +p193658 +sa(dp193659 +g25273 +S'lithograph in black and maroon on Nacre paper' +p193660 +sg25267 +g27 +sg25275 +S'1963' +p193661 +sg25268 +S'Colophon' +p193662 +sg25270 +S'Rudy Pozzatti' +p193663 +sa(dp193664 +g25273 +S'lithograph (zinc) on Arches paper' +p193665 +sg25267 +g27 +sg25275 +S'1962' +p193666 +sg25268 +S'Gyroscope - December 1' +p193667 +sg25270 +S'Donald Roberts' +p193668 +sa(dp193669 +g25273 +S'lithograph on Arches paper' +p193670 +sg25267 +g27 +sg25275 +S'1962' +p193671 +sg25268 +S'Gyroscope - Santa Monica' +p193672 +sg25270 +S'Donald Roberts' +p193673 +sa(dp193674 +g25273 +S'color lithograph on Rives BFK paper' +p193675 +sg25267 +g27 +sg25275 +S'1962' +p193676 +sg25268 +S'Lamp - Norton Cove' +p193677 +sg25270 +S'Donald Roberts' +p193678 +sa(dp193679 +g25273 +S'lithograph on Arches paper' +p193680 +sg25267 +g27 +sg25275 +S'1962' +p193681 +sg25268 +S'Motivity - October 62' +p193682 +sg25270 +S'Donald Roberts' +p193683 +sa(dp193684 +g25273 +S'lithograph on Rives BFK paper' +p193685 +sg25267 +g27 +sg25275 +S'1962' +p193686 +sg25268 +S'Figure' +p193687 +sg25270 +S'John Henry Rock' +p193688 +sa(dp193689 +g25268 +S'Fertilization of Egypt' +p193690 +sg25270 +S'Artist Information (' +p193691 +sg25273 +S'(artist after)' +p193692 +sg25275 +S'\n' +p193693 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077be.jpg' +p193694 +sg25267 +g27 +sa(dp193695 +g25273 +S'lithograph on Arches paper' +p193696 +sg25267 +g27 +sg25275 +S'1963' +p193697 +sg25268 +S'Gently a Summer Breeze' +p193698 +sg25270 +S'John Henry Rock' +p193699 +sa(dp193700 +g25273 +S'lithograph on Rives BFK paper' +p193701 +sg25267 +g27 +sg25275 +S'1962' +p193702 +sg25268 +S'Glacial Strata' +p193703 +sg25270 +S'John Henry Rock' +p193704 +sa(dp193705 +g25273 +S'color lithograph on Arches paper' +p193706 +sg25267 +g27 +sg25275 +S'1963' +p193707 +sg25268 +S'Interior' +p193708 +sg25270 +S'John Henry Rock' +p193709 +sa(dp193710 +g25273 +S'color lithograph on Nacre paper' +p193711 +sg25267 +g27 +sg25275 +S'1963' +p193712 +sg25268 +S'Landscape' +p193713 +sg25270 +S'John Henry Rock' +p193714 +sa(dp193715 +g25273 +S'color lithograph on Rives BFK paper' +p193716 +sg25267 +g27 +sg25275 +S'1963' +p193717 +sg25268 +S'Landscape with Rain' +p193718 +sg25270 +S'John Henry Rock' +p193719 +sa(dp193720 +g25273 +S'lithograph on Nacre paper' +p193721 +sg25267 +g27 +sg25275 +S'1963' +p193722 +sg25268 +S'Models' +p193723 +sg25270 +S'John Henry Rock' +p193724 +sa(dp193725 +g25273 +S'lithograph on Arches paper' +p193726 +sg25267 +g27 +sg25275 +S'1962' +p193727 +sg25268 +S'Reclining Figure' +p193728 +sg25270 +S'John Henry Rock' +p193729 +sa(dp193730 +g25273 +S'lithograph on Nacre paper' +p193731 +sg25267 +g27 +sg25275 +S'1963' +p193732 +sg25268 +S'Reclining Figure No.2' +p193733 +sg25270 +S'John Henry Rock' +p193734 +sa(dp193735 +g25273 +S'lithograph on Nacre paper' +p193736 +sg25267 +g27 +sg25275 +S'1963' +p193737 +sg25268 +S'The Shawl' +p193738 +sg25270 +S'John Henry Rock' +p193739 +sa(dp193740 +g25273 +S'lithograph on Rives BFK paper' +p193741 +sg25267 +g27 +sg25275 +S'1962' +p193742 +sg25268 +S'The Vase' +p193743 +sg25270 +S'John Henry Rock' +p193744 +sa(dp193745 +g25268 +S'A Coromantyn Free Negro, or Ranger, armed' +p193746 +sg25270 +S'Artist Information (' +p193747 +sg25273 +S'(artist after)' +p193748 +sg25275 +S'\n' +p193749 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007680.jpg' +p193750 +sg25267 +g27 +sa(dp193751 +g25273 +S'American, born 1922' +p193752 +sg25267 +g27 +sg25275 +S'(printer)' +p193753 +sg25268 +S'Untitled' +p193754 +sg25270 +S'Artist Information (' +p193755 +sa(dp193756 +g25273 +S'American, born 1922' +p193757 +sg25267 +g27 +sg25275 +S'(printer)' +p193758 +sg25268 +S'Untitled' +p193759 +sg25270 +S'Artist Information (' +p193760 +sa(dp193761 +g25273 +S'American, born 1922' +p193762 +sg25267 +g27 +sg25275 +S'(printer)' +p193763 +sg25268 +S'Things Invisible to See' +p193764 +sg25270 +S'Artist Information (' +p193765 +sa(dp193766 +g25273 +S'American, born 1922' +p193767 +sg25267 +g27 +sg25275 +S'(printer)' +p193768 +sg25268 +S'Untitled' +p193769 +sg25270 +S'Artist Information (' +p193770 +sa(dp193771 +g25273 +S'American, born 1922' +p193772 +sg25267 +g27 +sg25275 +S'(printer)' +p193773 +sg25268 +S'Sanctuary' +p193774 +sg25270 +S'Artist Information (' +p193775 +sa(dp193776 +g25273 +S'American, born 1922' +p193777 +sg25267 +g27 +sg25275 +S'(printer)' +p193778 +sg25268 +S'Untitled' +p193779 +sg25270 +S'Artist Information (' +p193780 +sa(dp193781 +g25273 +S'lithograph on Nacre paper' +p193782 +sg25267 +g27 +sg25275 +S'1961' +p193783 +sg25268 +S'I' +p193784 +sg25270 +S'Richards Ruben' +p193785 +sa(dp193786 +g25273 +S'lithograph on Rives BFK paper' +p193787 +sg25267 +g27 +sg25275 +S'1961' +p193788 +sg25268 +S'II' +p193789 +sg25270 +S'Richards Ruben' +p193790 +sa(dp193791 +g25273 +S'lithograph on Rives BFK paper' +p193792 +sg25267 +g27 +sg25275 +S'1961' +p193793 +sg25268 +S'III' +p193794 +sg25270 +S'Richards Ruben' +p193795 +sa(dp193796 +g25273 +S'color lithograph on Arches' +p193797 +sg25267 +g27 +sg25275 +S'1961' +p193798 +sg25268 +S'Untitled' +p193799 +sg25270 +S'Richards Ruben' +p193800 +sa(dp193801 +g25268 +S'A Negro hung alive by the Ribs to a Gallows' +p193802 +sg25270 +S'Artist Information (' +p193803 +sg25273 +S'(artist after)' +p193804 +sg25275 +S'\n' +p193805 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a000767c.jpg' +p193806 +sg25267 +g27 +sa(dp193807 +g25273 +S'American, born 1924' +p193808 +sg25267 +g27 +sg25275 +S'(printer)' +p193809 +sg25268 +S'End of the Island' +p193810 +sg25270 +S'Artist Information (' +p193811 +sa(dp193812 +g25273 +S'lithograph in black on Nacre paper' +p193813 +sg25267 +g27 +sg25275 +S'1962' +p193814 +sg25268 +S'Overgrown Path' +p193815 +sg25270 +S'Karl Schrag' +p193816 +sa(dp193817 +g25273 +S'American, born 1924' +p193818 +sg25267 +g27 +sg25275 +S'(printer)' +p193819 +sg25268 +S'Overgrown Path' +p193820 +sg25270 +S'Artist Information (' +p193821 +sa(dp193822 +g25273 +S'American, born 1927' +p193823 +sg25267 +g27 +sg25275 +S'(printer)' +p193824 +sg25268 +S'Path of the Sun' +p193825 +sg25270 +S'Artist Information (' +p193826 +sa(dp193827 +g25273 +S'American, born 1927' +p193828 +sg25267 +g27 +sg25275 +S'(printer)' +p193829 +sg25268 +S'Pond in a Forest' +p193830 +sg25270 +S'Artist Information (' +p193831 +sa(dp193832 +g25273 +S'American, born 1907' +p193833 +sg25267 +g27 +sg25275 +S'(printer)' +p193834 +sg25268 +S'Road to the Shore' +p193835 +sg25270 +S'Artist Information (' +p193836 +sa(dp193837 +g25273 +S'American, born 1907' +p193838 +sg25267 +g27 +sg25275 +S'(printer)' +p193839 +sg25268 +S'Rocks Below the Sea' +p193840 +sg25270 +S'Artist Information (' +p193841 +sa(dp193842 +g25273 +S'American, born 1924' +p193843 +sg25267 +g27 +sg25275 +S'(printer)' +p193844 +sg25268 +S'Rocks, Trees and Clouds' +p193845 +sg25270 +S'Artist Information (' +p193846 +sa(dp193847 +g25273 +S'American, born 1924' +p193848 +sg25267 +g27 +sg25275 +S'(printer)' +p193849 +sg25268 +S'Rocky Landscape' +p193850 +sg25270 +S'Artist Information (' +p193851 +sa(dp193852 +g25273 +S'American, born 1927' +p193853 +sg25267 +g27 +sg25275 +S'(printer)' +p193854 +sg25268 +S'Storm cloud' +p193855 +sg25270 +S'Artist Information (' +p193856 +sa(dp193857 +g25268 +S"A private Marine of Col. Fourgeoud's Corps" +p193858 +sg25270 +S'Artist Information (' +p193859 +sg25273 +S'(artist after)' +p193860 +sg25275 +S'\n' +p193861 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a000767f.jpg' +p193862 +sg25267 +g27 +sa(dp193863 +g25273 +S'American, born 1924' +p193864 +sg25267 +g27 +sg25275 +S'(printer)' +p193865 +sg25268 +S'Woods and Open Sea' +p193866 +sg25270 +S'Artist Information (' +p193867 +sa(dp193868 +g25273 +S'lithograph on Nacre paper' +p193869 +sg25267 +g27 +sg25275 +S'1960' +p193870 +sg25268 +S'Flowers' +p193871 +sg25270 +S'Aubrey Schwartz' +p193872 +sa(dp193873 +g25273 +S'lithograph on Nacre paper' +p193874 +sg25267 +g27 +sg25275 +S'1960' +p193875 +sg25268 +S'Garden' +p193876 +sg25270 +S'Aubrey Schwartz' +p193877 +sa(dp193878 +g25273 +S'lithograph in black and gray on Rives BFK paper' +p193879 +sg25267 +g27 +sg25275 +S'1960' +p193880 +sg25268 +S"Clown's Head" +p193881 +sg25270 +S'Aubrey Schwartz' +p193882 +sa(dp193883 +g25273 +S'portfolio with ten lithographs plus title page andcolophon' +p193884 +sg25267 +g27 +sg25275 +S'1960' +p193885 +sg25268 +S'The Midget and the Dwarf' +p193886 +sg25270 +S'Aubrey Schwartz' +p193887 +sa(dp193888 +g25273 +S'lithograph in black and gray on Rives BFK paper' +p193889 +sg25267 +g27 +sg25275 +S'1960' +p193890 +sg25268 +S'Woman' +p193891 +sg25270 +S'Aubrey Schwartz' +p193892 +sa(dp193893 +g25273 +S'lithograph in black and gray on Rives BFK paper' +p193894 +sg25267 +g27 +sg25275 +S'1960' +p193895 +sg25268 +S'Confidence Man' +p193896 +sg25270 +S'Aubrey Schwartz' +p193897 +sa(dp193898 +g25273 +S'lithograph in brown-black on Rives BFK paper' +p193899 +sg25267 +g27 +sg25275 +S'1960' +p193900 +sg25268 +S'Jolly Dwarf' +p193901 +sg25270 +S'Aubrey Schwartz' +p193902 +sa(dp193903 +g25273 +S'lithograph in light and dark olive-gray on Rives BFK paper' +p193904 +sg25267 +g27 +sg25275 +S'1960' +p193905 +sg25268 +S'The Face of the Midget' +p193906 +sg25270 +S'Aubrey Schwartz' +p193907 +sa(dp193908 +g25273 +S'lithograph on Rives BFK paper' +p193909 +sg25267 +g27 +sg25275 +S'1960' +p193910 +sg25268 +S'Nude Dwarfs' +p193911 +sg25270 +S'Aubrey Schwartz' +p193912 +sa(dp193913 +g25268 +S'The Mecoo & Kisbee Kishee Monkeys' +p193914 +sg25270 +S'Artist Information (' +p193915 +sg25273 +S'(artist after)' +p193916 +sg25275 +S'\n' +p193917 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a000767e.jpg' +p193918 +sg25267 +g27 +sa(dp193919 +g25273 +S'lithograph in black and light gray on Rives BFK paper' +p193920 +sg25267 +g27 +sg25275 +S'1960' +p193921 +sg25268 +S'Nude Man' +p193922 +sg25270 +S'Aubrey Schwartz' +p193923 +sa(dp193924 +g25273 +S'lithograph in black and olive gray on Rives BFK paper' +p193925 +sg25267 +g27 +sg25275 +S'1960' +p193926 +sg25268 +S'The Dwarf Clown' +p193927 +sg25270 +S'Aubrey Schwartz' +p193928 +sa(dp193929 +g25273 +S'lithograph on Rives BFK papaer' +p193930 +sg25267 +g27 +sg25275 +S'1960' +p193931 +sg25268 +S'Man with Cigar' +p193932 +sg25270 +S'Aubrey Schwartz' +p193933 +sa(dp193934 +g25273 +S'lithograph in black and olive gray on Rives BFK paper' +p193935 +sg25267 +g27 +sg25275 +S'1960' +p193936 +sg25268 +S'The Dwarf' +p193937 +sg25270 +S'Aubrey Schwartz' +p193938 +sa(dp193939 +g25273 +S'lithograph on Nacre paper' +p193940 +sg25267 +g27 +sg25275 +S'1962' +p193941 +sg25268 +S'Untitled' +p193942 +sg25270 +S'Aubrey Schwartz' +p193943 +sa(dp193944 +g25273 +S'American, born 1922' +p193945 +sg25267 +g27 +sg25275 +S'(printer)' +p193946 +sg25268 +S'Untitled' +p193947 +sg25270 +S'Artist Information (' +p193948 +sa(dp193949 +g25273 +S'lithograph on Arches paper' +p193950 +sg25267 +g27 +sg25275 +S'1961' +p193951 +sg25268 +S'Untitled' +p193952 +sg25270 +S'Frederick Sommer' +p193953 +sa(dp193954 +g25273 +S'lithograph on Arches paper' +p193955 +sg25267 +g27 +sg25275 +S'1961' +p193956 +sg25268 +S'Untitled' +p193957 +sg25270 +S'Frederick Sommer' +p193958 +sa(dp193959 +g25273 +S'lithograph (zinc) in brown-rose, black, and purple-brown on Arches paper' +p193960 +sg25267 +g27 +sg25275 +S'unknown date\n' +p193961 +sg25268 +S'Fossil I' +p193962 +sg25270 +S'Emiliano Sorini' +p193963 +sa(dp193964 +g25273 +S'lithograph (zinc) in black, dark blue, and yellow-blue on Arches paper' +p193965 +sg25267 +g27 +sg25275 +S'unknown date\n' +p193966 +sg25268 +S'Fossil II' +p193967 +sg25270 +S'Emiliano Sorini' +p193968 +sa(dp193969 +g25268 +S'Group of Negros, as imported to be sold for Slaves' +p193970 +sg25270 +S'Artist Information (' +p193971 +sg25273 +S'(artist after)' +p193972 +sg25275 +S'\n' +p193973 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007678.jpg' +p193974 +sg25267 +g27 +sa(dp193975 +g25273 +S'4-color lithograph on Arches paper' +p193976 +sg25267 +g27 +sg25275 +S'unknown date\n' +p193977 +sg25268 +S'Modern Death' +p193978 +sg25270 +S'Emiliano Sorini' +p193979 +sa(dp193980 +g25273 +S'lithograph (zinc) in olive green, transparent yellow, and transparent blue-black' +p193981 +sg25267 +g27 +sg25275 +S'unknown date\n' +p193982 +sg25268 +S'Untitled' +p193983 +sg25270 +S'Emiliano Sorini' +p193984 +sa(dp193985 +g25273 +S'lithograph (zinc) in dark black, light black, and dark purple on Arches paper' +p193986 +sg25267 +g27 +sg25275 +S'1961' +p193987 +sg25268 +S'Untitled' +p193988 +sg25270 +S'Emiliano Sorini' +p193989 +sa(dp193990 +g25273 +S'lithograph (stone) in black on Arches paper' +p193991 +sg25267 +g27 +sg25275 +S'1967' +p193992 +sg25268 +S'The Sea - Galilee' +p193993 +sg25270 +S'Benton Murdoch Spruance' +p193994 +sa(dp193995 +g25273 +S'lithograph on Arches paper' +p193996 +sg25267 +g27 +sg25275 +S'1961' +p193997 +sg25268 +S'White House - Canyon de Chelly' +p193998 +sg25270 +S'Prentiss Taylor' +p193999 +sa(dp194000 +g25273 +S'lithograph on Nacre paper' +p194001 +sg25267 +g27 +sg25275 +S'1961' +p194002 +sg25268 +S'Title Page' +p194003 +sg25270 +S'Joyce Wahl Treiman' +p194004 +sa(dp194005 +g25273 +S'portfolio with 15 lithographs including title page and colophon plus first state impression of plate no.9' +p194006 +sg25267 +g27 +sg25275 +S'1961' +p194007 +sg25268 +S'Mirrored Couple' +p194008 +sg25270 +S'Joyce Wahl Treiman' +p194009 +sa(dp194010 +g25273 +S'lithograph (stone/zinc) in black and red on Nacre paper' +p194011 +sg25267 +g27 +sg25275 +S'1961' +p194012 +sg25268 +S'Quotation Page' +p194013 +sg25270 +S'Joyce Wahl Treiman' +p194014 +sa(dp194015 +g25273 +S'lithograph on Nacre paper' +p194016 +sg25267 +g27 +sg25275 +S'1961' +p194017 +sg25268 +S'Untitled' +p194018 +sg25270 +S'Joyce Wahl Treiman' +p194019 +sa(dp194020 +g25273 +S'lithograph on Nacre paper' +p194021 +sg25267 +g27 +sg25275 +S'1961' +p194022 +sg25268 +S'Untitled' +p194023 +sg25270 +S'Joyce Wahl Treiman' +p194024 +sa(dp194025 +g25268 +S'Portrait of a Man' +p194026 +sg25270 +S'Alvise Vivarini' +p194027 +sg25273 +S'oil on panel' +p194028 +sg25275 +S'c. 1495' +p194029 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000881.jpg' +p194030 +sg25267 +g27 +sa(dp194031 +g25268 +S'The Sculls of Lieut Leppar, & Six of his Men' +p194032 +sg25270 +S'Artist Information (' +p194033 +sg25273 +S'(artist after)' +p194034 +sg25275 +S'\n' +p194035 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007677.jpg' +p194036 +sg25267 +g27 +sa(dp194037 +g25273 +S'lithograph on Nacre paper' +p194038 +sg25267 +g27 +sg25275 +S'1961' +p194039 +sg25268 +S'Untitled' +p194040 +sg25270 +S'Joyce Wahl Treiman' +p194041 +sa(dp194042 +g25273 +S'lithograph on Nacre paper' +p194043 +sg25267 +g27 +sg25275 +S'1961' +p194044 +sg25268 +S'Untitled' +p194045 +sg25270 +S'Joyce Wahl Treiman' +p194046 +sa(dp194047 +g25273 +S'lithograph (stone) in green-black and yellow-green on Nacre paper' +p194048 +sg25267 +g27 +sg25275 +S'1961' +p194049 +sg25268 +S'Untitled' +p194050 +sg25270 +S'Joyce Wahl Treiman' +p194051 +sa(dp194052 +g25273 +S'lithograph (stone) in red and white on Nacre paper' +p194053 +sg25267 +g27 +sg25275 +S'1961' +p194054 +sg25268 +S'Untitled' +p194055 +sg25270 +S'Joyce Wahl Treiman' +p194056 +sa(dp194057 +g25273 +S'lithograph on Nacre paper' +p194058 +sg25267 +g27 +sg25275 +S'1961' +p194059 +sg25268 +S'Untitled' +p194060 +sg25270 +S'Joyce Wahl Treiman' +p194061 +sa(dp194062 +g25273 +S'lithograph on Nacre paper' +p194063 +sg25267 +g27 +sg25275 +S'1961' +p194064 +sg25268 +S'Untitled' +p194065 +sg25270 +S'Joyce Wahl Treiman' +p194066 +sa(dp194067 +g25273 +S'lithograph on Nacre paper' +p194068 +sg25267 +g27 +sg25275 +S'1961' +p194069 +sg25268 +S'Untitled' +p194070 +sg25270 +S'Joyce Wahl Treiman' +p194071 +sa(dp194072 +g25273 +S'lithograph on Nacre paper' +p194073 +sg25267 +g27 +sg25275 +S'1961' +p194074 +sg25268 +S'Untitled' +p194075 +sg25270 +S'Joyce Wahl Treiman' +p194076 +sa(dp194077 +g25273 +S'lithograph on Nacre paper' +p194078 +sg25267 +g27 +sg25275 +S'1961' +p194079 +sg25268 +S'Untitled' +p194080 +sg25270 +S'Joyce Wahl Treiman' +p194081 +sa(dp194082 +g25273 +S'lithograph on Nacre paper' +p194083 +sg25267 +g27 +sg25275 +S'1961' +p194084 +sg25268 +S'Untitled' +p194085 +sg25270 +S'Joyce Wahl Treiman' +p194086 +sa(dp194087 +g25268 +S'Flagellation of a Female Samboe Slave' +p194088 +sg25270 +S'Artist Information (' +p194089 +sg25273 +S'(artist after)' +p194090 +sg25275 +S'\n' +p194091 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a000767d.jpg' +p194092 +sg25267 +g27 +sa(dp194093 +g25273 +S'lithograph on Nacre paper' +p194094 +sg25267 +g27 +sg25275 +S'1961' +p194095 +sg25268 +S'Colophon' +p194096 +sg25270 +S'Joyce Wahl Treiman' +p194097 +sa(dp194098 +g25273 +S'lithograph on Rives BFK paper [first state]' +p194099 +sg25267 +g27 +sg25275 +S'1961' +p194100 +sg25268 +S'Untitled' +p194101 +sg25270 +S'Joyce Wahl Treiman' +p194102 +sa(dp194103 +g25273 +S'lithograph on Arches paper' +p194104 +sg25267 +g27 +sg25275 +S'1961' +p194105 +sg25268 +S'Untitled' +p194106 +sg25270 +S'William Turnbull' +p194107 +sa(dp194108 +g25273 +S'lithograph on Arches paper' +p194109 +sg25267 +g27 +sg25275 +S'1961' +p194110 +sg25268 +S'Untitled' +p194111 +sg25270 +S'William Turnbull' +p194112 +sa(dp194113 +g25273 +S'lithograph (zinc) in orange and maroon-pink on Rives BFK paper' +p194114 +sg25267 +g27 +sg25275 +S'1962' +p194115 +sg25268 +S'Title Page' +p194116 +sg25270 +S'Reva Urban' +p194117 +sa(dp194118 +g25273 +S'lithograph (zinc) in gray and white on Rives BFK paper' +p194119 +sg25267 +g27 +sg25275 +S'1962' +p194120 +sg25268 +S'Poetry Page' +p194121 +sg25270 +S'Reva Urban' +p194122 +sa(dp194123 +g25273 +S'lithograph (zinc) in gray and white on Rives BFK paper' +p194124 +sg25267 +g27 +sg25275 +S'1962' +p194125 +sg25268 +S'Poetry Page' +p194126 +sg25270 +S'Reva Urban' +p194127 +sa(dp194128 +g25273 +S'lithograph (zinc) in gray and white on Rives BFK paper' +p194129 +sg25267 +g27 +sg25275 +S'1962' +p194130 +sg25268 +S'Poetry Page' +p194131 +sg25270 +S'Reva Urban' +p194132 +sa(dp194133 +g25273 +S'lithograph (zinc) in gray and white on Rives BFK paper' +p194134 +sg25267 +g27 +sg25275 +S'1962' +p194135 +sg25268 +S'Poetry Page' +p194136 +sg25270 +S'Reva Urban' +p194137 +sa(dp194138 +g25273 +S'lithograph (zinc) in red-orange and violet on Rives BFK paper' +p194139 +sg25267 +g27 +sg25275 +S'1962' +p194140 +sg25268 +S'Dawn is the Morning' +p194141 +sg25270 +S'Reva Urban' +p194142 +sa(dp194143 +g25268 +S'A Surinam Planter in his Morning Dress' +p194144 +sg25270 +S'Artist Information (' +p194145 +sg25273 +S'(artist after)' +p194146 +sg25275 +S'\n' +p194147 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007676.jpg' +p194148 +sg25267 +g27 +sa(dp194149 +g25273 +S'lithograph (zinc) in purple and white on Rives BFKpaper' +p194150 +sg25267 +g27 +sg25275 +S'1962' +p194151 +sg25268 +S'Purple - Concrete' +p194152 +sg25270 +S'Reva Urban' +p194153 +sa(dp194154 +g25273 +S'lithograph (zinc) in brown and white on Rives BFK paper' +p194155 +sg25267 +g27 +sg25275 +S'1962' +p194156 +sg25268 +S'Returned to Ancient Islands' +p194157 +sg25270 +S'Reva Urban' +p194158 +sa(dp194159 +g25273 +S'lithograph (zinc) in yellow, gray, and black, on Rives BFK paper' +p194160 +sg25267 +g27 +sg25275 +S'1962' +p194161 +sg25268 +S'Those Walls of Stone' +p194162 +sg25270 +S'Reva Urban' +p194163 +sa(dp194164 +g25273 +S'lithograph (zinc) on Rives BFK paper' +p194165 +sg25267 +g27 +sg25275 +S'1962' +p194166 +sg25268 +S'With Heart of Stethoscope' +p194167 +sg25270 +S'Reva Urban' +p194168 +sa(dp194169 +g25273 +S'lithograph (zinc) in orange, green, and black on Rives BFK paper' +p194170 +sg25267 +g27 +sg25275 +S'1962' +p194171 +sg25268 +S'Descending Helix' +p194172 +sg25270 +S'Reva Urban' +p194173 +sa(dp194174 +g25273 +S'lithograph (zinc) in orange, green, and black on Rives BFK paper' +p194175 +sg25267 +g27 +sg25275 +S'1962' +p194176 +sg25268 +S"Red City - A Child's World" +p194177 +sg25270 +S'Reva Urban' +p194178 +sa(dp194179 +g25273 +S'lithograph (zinc) on Rives BFK paper' +p194180 +sg25267 +g27 +sg25275 +S'1962' +p194181 +sg25268 +S'Tic-Tac-Toe' +p194182 +sg25270 +S'Reva Urban' +p194183 +sa(dp194184 +g25273 +S'lithograph (zinc) on Rives BFK paper' +p194185 +sg25267 +g27 +sg25275 +S'1962' +p194186 +sg25268 +S'Colophon' +p194187 +sg25270 +S'Reva Urban' +p194188 +sa(dp194189 +g25273 +S'lithograph in brown and white on Arches paper' +p194190 +sg25267 +g27 +sg25275 +S'1962' +p194191 +sg25268 +S'Title Page' +p194192 +sg25270 +S'Esteban Vicente' +p194193 +sa(dp194194 +g25273 +S'lithograph (stone and zinc) in gray, red, and black on Arches paper' +p194195 +sg25267 +g27 +sg25275 +S'1962' +p194196 +sg25268 +S'Untitled I' +p194197 +sg25270 +S'Esteban Vicente' +p194198 +sa(dp194199 +g25268 +S"March thro' a swamp or Marsh in Terra-firma" +p194200 +sg25270 +S'Artist Information (' +p194201 +sg25273 +S'(artist after)' +p194202 +sg25275 +S'\n' +p194203 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a000767a.jpg' +p194204 +sg25267 +g27 +sa(dp194205 +g25273 +S'lithograph (stone and zinc) in blue and black on Nacre paper' +p194206 +sg25267 +g27 +sg25275 +S'1962' +p194207 +sg25268 +S'Untitled II' +p194208 +sg25270 +S'Esteban Vicente' +p194209 +sa(dp194210 +g25273 +S'lithograph (stone and zinc) in ochre and black on Nacre paper' +p194211 +sg25267 +g27 +sg25275 +S'1962' +p194212 +sg25268 +S'Untitled III' +p194213 +sg25270 +S'Esteban Vicente' +p194214 +sa(dp194215 +g25273 +S'lithograph (stone and zinc) in orange, blue, and black on Nacre paper' +p194216 +sg25267 +g27 +sg25275 +S'1962' +p194217 +sg25268 +S'Untitled IV' +p194218 +sg25270 +S'Esteban Vicente' +p194219 +sa(dp194220 +g25273 +S'lithograph (stone and zinc) in red, brown, and black on Nacre paper' +p194221 +sg25267 +g27 +sg25275 +S'1962' +p194222 +sg25268 +S'Untitled V' +p194223 +sg25270 +S'Esteban Vicente' +p194224 +sa(dp194225 +g25273 +S'lithograph on Nacre paper' +p194226 +sg25267 +g27 +sg25275 +S'1961' +p194227 +sg25268 +S'Untitled' +p194228 +sg25270 +S'Esteban Vicente' +p194229 +sa(dp194230 +g25273 +S'lithograph (zinc) in light red, dark red, and green' +p194231 +sg25267 +g27 +sg25275 +S'1962' +p194232 +sg25268 +S'Untitled' +p194233 +sg25270 +S'Esteban Vicente' +p194234 +sa(dp194235 +g25273 +S'lithograph on Arches paper' +p194236 +sg25267 +g27 +sg25275 +S'1962' +p194237 +sg25268 +S'Untitled' +p194238 +sg25270 +S'Esteban Vicente' +p194239 +sa(dp194240 +g25273 +S'lithograph (zinc and stone) in gray-ochre and black on Arches paper' +p194241 +sg25267 +g27 +sg25275 +S'1962' +p194242 +sg25268 +S'Untitled' +p194243 +sg25270 +S'Esteban Vicente' +p194244 +sa(dp194245 +g25273 +S'lithograph (zinc and stone) in red and black on Arches paper' +p194246 +sg25267 +g27 +sg25275 +S'1962' +p194247 +sg25268 +S'Untitled' +p194248 +sg25270 +S'Esteban Vicente' +p194249 +sa(dp194250 +g25273 +S'lithograph on Nacre paper' +p194251 +sg25267 +g27 +sg25275 +S'1962' +p194252 +sg25268 +S'Untitled' +p194253 +sg25270 +S'Esteban Vicente' +p194254 +sa(dp194255 +g25268 +S'Family of Negro Slaves from Loango' +p194256 +sg25270 +S'Artist Information (' +p194257 +sg25273 +S'(artist after)' +p194258 +sg25275 +S'\n' +p194259 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a000767b.jpg' +p194260 +sg25267 +g27 +sa(dp194261 +g25273 +S'lithograph on Nacre paper' +p194262 +sg25267 +g27 +sg25275 +S'1962' +p194263 +sg25268 +S'Untitled' +p194264 +sg25270 +S'Esteban Vicente' +p194265 +sa(dp194266 +g25273 +S'lithograph on Arches paper' +p194267 +sg25267 +g27 +sg25275 +S'1962' +p194268 +sg25268 +S'Untitled' +p194269 +sg25270 +S'Esteban Vicente' +p194270 +sa(dp194271 +g25273 +S'lithograph on Arches paper' +p194272 +sg25267 +g27 +sg25275 +S'1962' +p194273 +sg25268 +S'Untitled' +p194274 +sg25270 +S'Esteban Vicente' +p194275 +sa(dp194276 +g25273 +S'lithograph on Rives BFK paper' +p194277 +sg25267 +g27 +sg25275 +S'1960' +p194278 +sg25268 +S'Picadores' +p194279 +sg25270 +S'Romas Viesulas' +p194280 +sa(dp194281 +g25273 +S'lithograph in buff and black on Rives BFK paper' +p194282 +sg25267 +g27 +sg25275 +S'1960' +p194283 +sg25268 +S'Title Page' +p194284 +sg25270 +S'Romas Viesulas' +p194285 +sa(dp194286 +g25273 +S'portfolio with eleven color lithographs including title page and colophon' +p194287 +sg25267 +g27 +sg25275 +S'1960' +p194288 +sg25268 +S'Toro Desconocito' +p194289 +sg25270 +S'Romas Viesulas' +p194290 +sa(dp194291 +g25273 +S'lithograph' +p194292 +sg25267 +g27 +sg25275 +S'1960' +p194293 +sg25268 +S'To Unknown Bulls Facing Unknown Swords' +p194294 +sg25270 +S'Romas Viesulas' +p194295 +sa(dp194296 +g25273 +S'lithograph on Arches paper' +p194297 +sg25267 +g27 +sg25275 +S'1960' +p194298 +sg25268 +S'Poem' +p194299 +sg25270 +S'Romas Viesulas' +p194300 +sa(dp194301 +g25273 +S'lithograph on India Rives' +p194302 +sg25267 +g27 +sg25275 +S'1960' +p194303 +sg25268 +S'Toro! Toro!' +p194304 +sg25270 +S'Romas Viesulas' +p194305 +sa(dp194306 +g25273 +S'7-color lithograph on Rives BFK paper' +p194307 +sg25267 +g27 +sg25275 +S'1960' +p194308 +sg25268 +S'Paso Doble' +p194309 +sg25270 +S'Romas Viesulas' +p194310 +sa(dp194311 +g25268 +S'The Execution of Breaking on the Rack' +p194312 +sg25270 +S'Artist Information (' +p194313 +sg25273 +S'(artist after)' +p194314 +sg25275 +S'\n' +p194315 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007679.jpg' +p194316 +sg25267 +g27 +sa(dp194317 +g25273 +S'6-color lithograph on Rives BFK paper' +p194318 +sg25267 +g27 +sg25275 +S'1960' +p194319 +sg25268 +S'My Neck Flares' +p194320 +sg25270 +S'Romas Viesulas' +p194321 +sa(dp194322 +g25273 +S'lithograph on Rives BFK paper' +p194323 +sg25267 +g27 +sg25275 +S'1960' +p194324 +sg25268 +S'With Trumpet of Shadow' +p194325 +sg25270 +S'Romas Viesulas' +p194326 +sa(dp194327 +g25273 +S'7-color lithograph on Rives BFK paper' +p194328 +sg25267 +g27 +sg25275 +S'1960' +p194329 +sg25268 +S'Is Grass Yellow Today?' +p194330 +sg25270 +S'Romas Viesulas' +p194331 +sa(dp194332 +g25273 +S'lithograph in mauve and black' +p194333 +sg25267 +g27 +sg25275 +S'1960' +p194334 +sg25268 +S'Traje de Luces' +p194335 +sg25270 +S'Romas Viesulas' +p194336 +sa(dp194337 +g25273 +S'7-color lithograph on Rives BFK paper' +p194338 +sg25267 +g27 +sg25275 +S'1960' +p194339 +sg25268 +S'In the Sun, in the Sand' +p194340 +sg25270 +S'Romas Viesulas' +p194341 +sa(dp194342 +g25273 +S'lithograph on Rives BFK paper' +p194343 +sg25267 +g27 +sg25275 +S'1960' +p194344 +sg25268 +S'Colophon' +p194345 +sg25270 +S'Romas Viesulas' +p194346 +sa(dp194347 +g25273 +S'lithograph on Nacre paper' +p194348 +sg25267 +g27 +sg25275 +S'1964' +p194349 +sg25268 +S"Cornelia's Bird" +p194350 +sg25270 +S'June Wayne' +p194351 +sa(dp194352 +g25273 +S'lithograph on Nacre paper' +p194353 +sg25267 +g27 +sg25275 +S'1960' +p194354 +sg25268 +S'Dorothy the Last Day' +p194355 +sg25270 +S'June Wayne' +p194356 +sa(dp194357 +g25273 +S'5-color lithograph on Nacre paper' +p194358 +sg25267 +g27 +sg25275 +S'1961' +p194359 +sg25268 +S'Nine Memories' +p194360 +sg25270 +S'June Wayne' +p194361 +sa(dp194362 +g25273 +S'lithograph on Nacre paper' +p194363 +sg25267 +g27 +sg25275 +S'1961' +p194364 +sg25268 +S'The Orator' +p194365 +sg25270 +S'June Wayne' +p194366 +sa(dp194367 +g25268 +S'John Caspar Lavater' +p194368 +sg25270 +S'William Blake' +p194369 +sg25273 +S'etching and engraving' +p194370 +sg25275 +S'1787/1801' +p194371 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077c1.jpg' +p194372 +sg25267 +g27 +sa(dp194373 +g25273 +S'lithograph on Rives BFK paper' +p194374 +sg25267 +g27 +sg25275 +S'1962' +p194375 +sg25268 +S'Second Hero' +p194376 +sg25270 +S'June Wayne' +p194377 +sa(dp194378 +g25273 +S'lithograph on Arches paper' +p194379 +sg25267 +g27 +sg25275 +S'1961' +p194380 +sg25268 +S'Tenth Memory' +p194381 +sg25270 +S'June Wayne' +p194382 +sa(dp194383 +g25273 +S'lithograph on Nacre paper' +p194384 +sg25267 +g27 +sg25275 +S'1961' +p194385 +sg25268 +S'Twelfth Memory' +p194386 +sg25270 +S'June Wayne' +p194387 +sa(dp194388 +g25273 +S'3-color lithograph on Arches paper' +p194389 +sg25267 +g27 +sg25275 +S'1962' +p194390 +sg25268 +S"Sierra Nevada's" +p194391 +sg25270 +S'Emil Weddige' +p194392 +sa(dp194393 +g25273 +S'lithograph on Arches paper' +p194394 +sg25267 +g27 +sg25275 +S'1961' +p194395 +sg25268 +S'Arrow' +p194396 +sg25270 +S'Ulfert Wilke' +p194397 +sa(dp194398 +g25273 +S'lithograph on Nacre paper' +p194399 +sg25267 +g27 +sg25275 +S'1961' +p194400 +sg25268 +S'Glyphs' +p194401 +sg25270 +S'Ulfert Wilke' +p194402 +sa(dp194403 +g25273 +S'color lithograph on Arches paper' +p194404 +sg25267 +g27 +sg25275 +S'1961' +p194405 +sg25268 +S'Wall' +p194406 +sg25270 +S'Ulfert Wilke' +p194407 +sa(dp194408 +g25273 +S'lithograph on Nacre paper' +p194409 +sg25267 +g27 +sg25275 +S'1961' +p194410 +sg25268 +S'Homage to Dina (Hommage a Dina)' +p194411 +sg25270 +S'Emerson Woelffer' +p194412 +sa(dp194413 +g25273 +S'lithograph on Nacre paper' +p194414 +sg25267 +g27 +sg25275 +S'1961' +p194415 +sg25268 +S'Untitled' +p194416 +sg25270 +S'Emerson Woelffer' +p194417 +sa(dp194418 +g25273 +S'lithograph in ochre and black on Nacre paper' +p194419 +sg25267 +g27 +sg25275 +S'1961' +p194420 +sg25268 +S'Untitled' +p194421 +sg25270 +S'Emerson Woelffer' +p194422 +sa(dp194423 +g25268 +S'Canto I, Verse 29' +p194424 +sg25270 +S'Artist Information (' +p194425 +sg25273 +S'(artist after)' +p194426 +sg25275 +S'\n' +p194427 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007687.jpg' +p194428 +sg25267 +g27 +sa(dp194429 +g25273 +S'5-color lithograph on Nacre paper' +p194430 +sg25267 +g27 +sg25275 +S'1961' +p194431 +sg25268 +S'Untitled' +p194432 +sg25270 +S'Emerson Woelffer' +p194433 +sa(dp194434 +g25273 +S'lithograph on Nacre paper' +p194435 +sg25267 +g27 +sg25275 +S'1961' +p194436 +sg25268 +S'Untitled' +p194437 +sg25270 +S'Emerson Woelffer' +p194438 +sa(dp194439 +g25273 +S'color lithograph on Nacre paper' +p194440 +sg25267 +g27 +sg25275 +S'1961' +p194441 +sg25268 +S'Untitled' +p194442 +sg25270 +S'Emerson Woelffer' +p194443 +sa(dp194444 +g25273 +S'lithograph on Arches paper' +p194445 +sg25267 +g27 +sg25275 +S'1961' +p194446 +sg25268 +S'Untitled' +p194447 +sg25270 +S'Emerson Woelffer' +p194448 +sa(dp194449 +g25273 +S'color lithograph on Nacre paper' +p194450 +sg25267 +g27 +sg25275 +S'1961' +p194451 +sg25268 +S'Untitled' +p194452 +sg25270 +S'Emerson Woelffer' +p194453 +sa(dp194454 +g25273 +S'lithograph on Nacre paper' +p194455 +sg25267 +g27 +sg25275 +S'1961' +p194456 +sg25268 +S'Untitled' +p194457 +sg25270 +S'Emerson Woelffer' +p194458 +sa(dp194459 +g25273 +S'color lithograph on Nacre paper' +p194460 +sg25267 +g27 +sg25275 +S'1961' +p194461 +sg25268 +S'Untitled' +p194462 +sg25270 +S'Emerson Woelffer' +p194463 +sa(dp194464 +g25273 +S'lithograph on Nacre paper' +p194465 +sg25267 +g27 +sg25275 +S'1961' +p194466 +sg25268 +S'Untitled' +p194467 +sg25270 +S'Emerson Woelffer' +p194468 +sa(dp194469 +g25273 +S'lithograph in blue, brown, and black on Arches paper' +p194470 +sg25267 +g27 +sg25275 +S'1961' +p194471 +sg25268 +S'Untitled' +p194472 +sg25270 +S'Emerson Woelffer' +p194473 +sa(dp194474 +g25273 +S'lithograph in red, blue, and black on Arches paper' +p194475 +sg25267 +g27 +sg25275 +S'1961' +p194476 +sg25268 +S'Untitled' +p194477 +sg25270 +S'Emerson Woelffer' +p194478 +sa(dp194479 +g25268 +S'Canto II, Verse 471' +p194480 +sg25270 +S'Artist Information (' +p194481 +sg25273 +S'(artist after)' +p194482 +sg25275 +S'\n' +p194483 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007684.jpg' +p194484 +sg25267 +g27 +sa(dp194485 +g25273 +S'lithograph in brown and black on Nacre paper' +p194486 +sg25267 +g27 +sg25275 +S'1961' +p194487 +sg25268 +S'Untitled' +p194488 +sg25270 +S'Emerson Woelffer' +p194489 +sa(dp194490 +g25273 +S'lithograph in blue, brown and black on Arches paper' +p194491 +sg25267 +g27 +sg25275 +S'1961' +p194492 +sg25268 +S'Untitled' +p194493 +sg25270 +S'Emerson Woelffer' +p194494 +sa(dp194495 +g25273 +S'lithograph on Arches paper' +p194496 +sg25267 +g27 +sg25275 +S'1961' +p194497 +sg25268 +S'Untitled' +p194498 +sg25270 +S'Emerson Woelffer' +p194499 +sa(dp194500 +g25273 +S'lithograph on Nacre paper' +p194501 +sg25267 +g27 +sg25275 +S'1961' +p194502 +sg25268 +S'Untitled' +p194503 +sg25270 +S'Emerson Woelffer' +p194504 +sa(dp194505 +g25273 +S'lithograph on Nacre paper' +p194506 +sg25267 +g27 +sg25275 +S'1961' +p194507 +sg25268 +S'Untitled' +p194508 +sg25270 +S'Emerson Woelffer' +p194509 +sa(dp194510 +g25273 +S'American, active 1961/1963' +p194511 +sg25267 +g27 +sg25275 +S'(printer)' +p194512 +sg25268 +S'Calligraphy' +p194513 +sg25270 +S'Artist Information (' +p194514 +sa(dp194515 +g25273 +S'American, born 1922' +p194516 +sg25267 +g27 +sg25275 +S'(printer)' +p194517 +sg25268 +S'Composition I' +p194518 +sg25270 +S'Artist Information (' +p194519 +sa(dp194520 +g25273 +S'American, born 1922' +p194521 +sg25267 +g27 +sg25275 +S'(printer)' +p194522 +sg25268 +S'Composition II' +p194523 +sg25270 +S'Artist Information (' +p194524 +sa(dp194525 +g25273 +S'American, active 1961/1963' +p194526 +sg25267 +g27 +sg25275 +S'(printer)' +p194527 +sg25268 +S'Little Landscape' +p194528 +sg25270 +S'Artist Information (' +p194529 +sa(dp194530 +g25273 +S'American, active 1961/1963' +p194531 +sg25267 +g27 +sg25275 +S'(printer)' +p194532 +sg25268 +S'Moonface' +p194533 +sg25270 +S'Artist Information (' +p194534 +sa(dp194535 +g25268 +S'Canto III, Verse 201' +p194536 +sg25270 +S'Artist Information (' +p194537 +sg25273 +S'(artist after)' +p194538 +sg25275 +S'\n' +p194539 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007683.jpg' +p194540 +sg25267 +g27 +sa(dp194541 +g25273 +S'American, active 1961/1963' +p194542 +sg25267 +g27 +sg25275 +S'(printer)' +p194543 +sg25268 +S'Salt I' +p194544 +sg25270 +S'Artist Information (' +p194545 +sa(dp194546 +g25273 +S'American, active 1961/1963' +p194547 +sg25267 +g27 +sg25275 +S'(printer)' +p194548 +sg25268 +S'Salt II' +p194549 +sg25270 +S'Artist Information (' +p194550 +sa(dp194551 +g25273 +S'American, active 1961/1963' +p194552 +sg25267 +g27 +sg25275 +S'(printer)' +p194553 +sg25268 +S'Salt III' +p194554 +sg25270 +S'Artist Information (' +p194555 +sa(dp194556 +g25273 +S'American, active 1961/1963' +p194557 +sg25267 +g27 +sg25275 +S'(printer)' +p194558 +sg25268 +S'Salt IV' +p194559 +sg25270 +S'Artist Information (' +p194560 +sa(dp194561 +g25273 +S'American, active 1961/1963' +p194562 +sg25267 +g27 +sg25275 +S'(printer)' +p194563 +sg25268 +S'Salt V' +p194564 +sg25270 +S'Artist Information (' +p194565 +sa(dp194566 +g25273 +S'American, active 1961/1963' +p194567 +sg25267 +g27 +sg25275 +S'(printer)' +p194568 +sg25268 +S'Title Page' +p194569 +sg25270 +S'Artist Information (' +p194570 +sa(dp194571 +g25273 +S'American, active 1961/1963' +p194572 +sg25267 +g27 +sg25275 +S'(printer)' +p194573 +sg25268 +S'Skies of Venice I' +p194574 +sg25270 +S'Artist Information (' +p194575 +sa(dp194576 +g25273 +S'American, active 1961/1963' +p194577 +sg25267 +g27 +sg25275 +S'(printer)' +p194578 +sg25268 +S'Skies of Venice II' +p194579 +sg25270 +S'Artist Information (' +p194580 +sa(dp194581 +g25273 +S'American, active 1961/1963' +p194582 +sg25267 +g27 +sg25275 +S'(printer)' +p194583 +sg25268 +S'Skies of Venice III' +p194584 +sg25270 +S'Artist Information (' +p194585 +sa(dp194586 +g25273 +S'American, active 1961/1963' +p194587 +sg25267 +g27 +sg25275 +S'(printer)' +p194588 +sg25268 +S'Skies of Venice IV' +p194589 +sg25270 +S'Artist Information (' +p194590 +sa(dp194591 +g25268 +S'The Madonna of Humility' +p194592 +sg25270 +S'Fra Angelico' +p194593 +sg25273 +S'tempera on panel' +p194594 +sg25275 +S'c. 1430' +p194595 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000080b.jpg' +p194596 +sg25267 +g27 +sa(dp194597 +g25268 +S'The Rest on the Flight into Egypt' +p194598 +sg25270 +S'Gerard David' +p194599 +sg25273 +S'oil on panel' +p194600 +sg25275 +S'c. 1510' +p194601 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005c2.jpg' +p194602 +sg25267 +S"The short biblical account of the Flight into Egypt (Matt. 2:13–14) was elaborated upon by Early Christian and medieval theologians. In one of these apocryphal legends, the weary family paused during their journey after three days of travel. The Virgin longed for food, but the date–palm branches were too high for Joseph to pick any fruit. Thereupon Jesus commanded the tree to lower its branches. David deemphasized this miracle by giving Joseph a sturdy stick and by replacing the date palm with a Flemish chestnut tree, but a sixteenth–century audience would have remembered the apocryphal story. There are also indications of the special significance of\r\nthe family: the Madonna wears robes in her symbolic colors of red and blue; fine\r\nrays of golden light emanate from the mother's head and that of the child; and the bunch of grapes held by the Madonna is a well–known symbol of the Eucharist.\n David created a mood of calm equilibrium. The Madonna and Child are centrally placed, while receding diagonals and alternating bands of light and dark skillfully lead back into the landscape and harmoniously relate the figures to their surroundings. The predominance of the restful color blue throughout the composition unifies the work. All in all, \n " +p194603 +sa(dp194604 +g25268 +S'Canto V, Verse 43' +p194605 +sg25270 +S'Artist Information (' +p194606 +sg25273 +S'(artist after)' +p194607 +sg25275 +S'\n' +p194608 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007685.jpg' +p194609 +sg25267 +g27 +sa(dp194610 +g25273 +S'American, active 1961/1963' +p194611 +sg25267 +g27 +sg25275 +S'(printer)' +p194612 +sg25268 +S'Skies of Venice V' +p194613 +sg25270 +S'Artist Information (' +p194614 +sa(dp194615 +g25273 +S'American, active 1961/1963' +p194616 +sg25267 +g27 +sg25275 +S'(printer)' +p194617 +sg25268 +S'Skies of Venice VI' +p194618 +sg25270 +S'Artist Information (' +p194619 +sa(dp194620 +g25273 +S'American, active 1961/1963' +p194621 +sg25267 +g27 +sg25275 +S'(printer)' +p194622 +sg25268 +S'Skies of Venice VII' +p194623 +sg25270 +S'Artist Information (' +p194624 +sa(dp194625 +g25273 +S'American, active 1961/1963' +p194626 +sg25267 +g27 +sg25275 +S'(printer)' +p194627 +sg25268 +S'Skies of Venice VIII' +p194628 +sg25270 +S'Artist Information (' +p194629 +sa(dp194630 +g25273 +S'American, active 1961/1963' +p194631 +sg25267 +g27 +sg25275 +S'(printer)' +p194632 +sg25268 +S'Skies of Venice IX' +p194633 +sg25270 +S'Artist Information (' +p194634 +sa(dp194635 +g25273 +S'lithograph on Arches paper' +p194636 +sg25267 +g27 +sg25275 +S'1962' +p194637 +sg25268 +S'Seated Figure' +p194638 +sg25270 +S'Joseph Zirker' +p194639 +sa(dp194640 +g25273 +S'lithograph on Arches paper' +p194641 +sg25267 +g27 +sg25275 +S'1962' +p194642 +sg25268 +S'Torso' +p194643 +sg25270 +S'Joseph Zirker' +p194644 +sa(dp194645 +g25273 +S'color lithograph on Arches paper' +p194646 +sg25267 +g27 +sg25275 +S'1962' +p194647 +sg25268 +S'Untitled' +p194648 +sg25270 +S'Joseph Zirker' +p194649 +sa(dp194650 +g25268 +S'The Mermaid and the Monkey' +p194651 +sg25270 +S'Paul Gauguin' +p194652 +sg25273 +S'color woodcut on japan paper' +p194653 +sg25275 +S'unknown date\n' +p194654 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a87.jpg' +p194655 +sg25267 +g27 +sa(dp194656 +g25268 +S'Hunters at the Edge of the Woods' +p194657 +sg25270 +S'Jacobus Theodorus Abels' +p194658 +sg25273 +S', 1833' +p194659 +sg25275 +S'\n' +p194660 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a0007275.jpg' +p194661 +sg25267 +g27 +sa(dp194662 +g25268 +S'Canto VI, Verse 294' +p194663 +sg25270 +S'Artist Information (' +p194664 +sg25273 +S'(artist after)' +p194665 +sg25275 +S'\n' +p194666 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007686.jpg' +p194667 +sg25267 +g27 +sa(dp194668 +g25273 +S'etching (engraving?)' +p194669 +sg25267 +g27 +sg25275 +S'1957' +p194670 +sg25268 +S'Dalles, sable et eau' +p194671 +sg25270 +S'Henri-Georges Adam' +p194672 +sa(dp194673 +g25273 +S'color lithograph' +p194674 +sg25267 +g27 +sg25275 +S'unknown date\n' +p194675 +sg25268 +S'Composition' +p194676 +sg25270 +S'Afro' +p194677 +sa(dp194678 +g25273 +S'color lithograph' +p194679 +sg25267 +g27 +sg25275 +S'1960' +p194680 +sg25268 +S'Ruins' +p194681 +sg25270 +S'Hiroshi Akana' +p194682 +sa(dp194683 +g25273 +S'pen and black ink' +p194684 +sg25267 +g27 +sg25275 +S'1960' +p194685 +sg25268 +S'Conversation' +p194686 +sg25270 +S'Harold Altman' +p194687 +sa(dp194688 +g25273 +S'lithograph' +p194689 +sg25267 +g27 +sg25275 +S'unknown date\n' +p194690 +sg25268 +S'Tori' +p194691 +sg25270 +S'Chieko Ando' +p194692 +sa(dp194693 +g25268 +S'Madonna and Child Accompanied by Saints' +p194694 +sg25270 +S'Artist Information (' +p194695 +sg25273 +S'(artist after)' +p194696 +sg25275 +S'\n' +p194697 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c89e.jpg' +p194698 +sg25267 +g27 +sa(dp194699 +g25268 +S'Lithographer' +p194700 +sg25270 +S'American 19th Century' +p194701 +sg25273 +S'Rosenwald Collection' +p194702 +sg25275 +S'\ncolor lithograph' +p194703 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00111/a001111d.jpg' +p194704 +sg25267 +g27 +sa(dp194705 +g25268 +S'Thirty Archers and Pages' +p194706 +sg25270 +S'Stefano Della Bella' +p194707 +sg25273 +S'etching' +p194708 +sg25275 +S'1633' +p194709 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9b6.jpg' +p194710 +sg25267 +g27 +sa(dp194711 +g25268 +S'Twenty Pages and Five Turkish Horses' +p194712 +sg25270 +S'Stefano Della Bella' +p194713 +sg25273 +S'etching' +p194714 +sg25275 +S'1633' +p194715 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9b7.jpg' +p194716 +sg25267 +g27 +sa(dp194717 +g25268 +S"Master of His Excellency's Stables and Twenty Servants" +p194718 +sg25270 +S'Stefano Della Bella' +p194719 +sg25273 +S'etching' +p194720 +sg25275 +S'1633' +p194721 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9b8.jpg' +p194722 +sg25267 +g27 +sa(dp194723 +g25268 +S'Sketch of a Shipwreck' +p194724 +sg25270 +S'Artist Information (' +p194725 +sg25273 +S'(artist after)' +p194726 +sg25275 +S'\n' +p194727 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077c4.jpg' +p194728 +sg25267 +g27 +sa(dp194729 +g25268 +S'Spanish Gentlemen, Polish and French Horsemen' +p194730 +sg25270 +S'Stefano Della Bella' +p194731 +sg25273 +S'etching' +p194732 +sg25275 +S'1633' +p194733 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9b9.jpg' +p194734 +sg25267 +g27 +sa(dp194735 +g25268 +S'Polish Nobles, His Excellency the Ambassador, and His Carriage' +p194736 +sg25270 +S'Stefano Della Bella' +p194737 +sg25273 +S'etching' +p194738 +sg25275 +S'1633' +p194739 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9ba.jpg' +p194740 +sg25267 +g27 +sa(dp194741 +g25273 +S'portfolio with 36 engravings' +p194742 +sg25267 +g27 +sg25275 +S'1934' +p194743 +sg25268 +S'Engraved Suite from T. Petronius Arbiter\'s "Le Satyricon"' +p194744 +sg25270 +S'Andr\xc3\xa9 Derain' +p194745 +sa(dp194746 +g25273 +S'portfolio with 43 woodcuts on 22 sheets' +p194747 +sg25267 +g27 +sg25275 +S'published 1951' +p194748 +sg25268 +S'Woodcut Suite from T. Petronius Arbiter\'s "Le Satyricon"' +p194749 +sg25270 +S'Andr\xc3\xa9 Derain' +p194750 +sa(dp194751 +g25273 +S'portfolio with seven color woodcuts (including title page) on Japanese paper' +p194752 +sg25267 +g27 +sg25275 +S'probably 1963' +p194753 +sg25268 +S'Woodcuts by Grisha Dotzenko' +p194754 +sg25270 +S'Grisha Dotzenko' +p194755 +sa(dp194756 +g25273 +S'etching' +p194757 +sg25267 +g27 +sg25275 +S'1888' +p194758 +sg25268 +S'Lust (La luxure)' +p194759 +sg25270 +S'James Ensor' +p194760 +sa(dp194761 +g25273 +S'portfolio w/ seven prints and frontispiece with preface by Eugene Demolder' +p194762 +sg25267 +g27 +sg25275 +S'published 1904' +p194763 +sg25268 +S'The Deadly Sins (Les Peches Capitaux)' +p194764 +sg25270 +S'James Ensor' +p194765 +sa(dp194766 +g25273 +S'etching' +p194767 +sg25267 +g27 +sg25275 +S'1902' +p194768 +sg25268 +S'Sloth (La paresse)' +p194769 +sg25270 +S'James Ensor' +p194770 +sa(dp194771 +g25273 +S'etching' +p194772 +sg25267 +g27 +sg25275 +S'1904' +p194773 +sg25268 +S'Anger (La colere)' +p194774 +sg25270 +S'James Ensor' +p194775 +sa(dp194776 +g25273 +S'etching' +p194777 +sg25267 +g27 +sg25275 +S'1904' +p194778 +sg25268 +S"Pride (L'orgueil)" +p194779 +sg25270 +S'James Ensor' +p194780 +sa(dp194781 +g25268 +S'Reverend Robert Hawker, D.D.' +p194782 +sg25270 +S'Artist Information (' +p194783 +sg25273 +S'(artist after)' +p194784 +sg25275 +S'\n' +p194785 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077ca.jpg' +p194786 +sg25267 +g27 +sa(dp194787 +g25273 +S'etching' +p194788 +sg25267 +g27 +sg25275 +S'1904' +p194789 +sg25268 +S"Avarice (L'avarice)" +p194790 +sg25270 +S'James Ensor' +p194791 +sa(dp194792 +g25273 +S'etching' +p194793 +sg25267 +g27 +sg25275 +S'1904' +p194794 +sg25268 +S'Gluttony (La gourmandise)' +p194795 +sg25270 +S'James Ensor' +p194796 +sa(dp194797 +g25273 +S'etching' +p194798 +sg25267 +g27 +sg25275 +S'1904' +p194799 +sg25268 +S"Envy (L'envie)" +p194800 +sg25270 +S'James Ensor' +p194801 +sa(dp194802 +g25273 +S'etching' +p194803 +sg25267 +g27 +sg25275 +S'1904' +p194804 +sg25268 +S'Death Dominating the Deadly Sins (Les Peches capitaux domines par la mort): front.' +p194805 +sg25270 +S'James Ensor' +p194806 +sa(dp194807 +g25273 +S'lithograph' +p194808 +sg25267 +g27 +sg25275 +S'1961' +p194809 +sg25268 +S'Title Page' +p194810 +sg25270 +S'Anatoli Lvovich Kaplan' +p194811 +sa(dp194812 +g25273 +S'portfolio with introduction and twenty-eight lithographs including table of contents and colophon' +p194813 +sg25267 +g27 +sg25275 +S'1957/1961' +p194814 +sg25268 +S'Tevia the Milkman (volume 1)' +p194815 +sg25270 +S'Anatoli Lvovich Kaplan' +p194816 +sa(dp194817 +g25273 +S'lithograph' +p194818 +sg25267 +g27 +sg25275 +S'1961' +p194819 +sg25268 +S'Table of Contents' +p194820 +sg25270 +S'Anatoli Lvovich Kaplan' +p194821 +sa(dp194822 +g25273 +S'lithograph' +p194823 +sg25267 +g27 +sg25275 +S'1957/1961' +p194824 +sg25268 +S'Frontispiece' +p194825 +sg25270 +S'Anatoli Lvovich Kaplan' +p194826 +sa(dp194827 +g25273 +S'lithograph' +p194828 +sg25267 +g27 +sg25275 +S'1957/1961' +p194829 +sg25268 +S'Tevia the Milkman' +p194830 +sg25270 +S'Anatoli Lvovich Kaplan' +p194831 +sa(dp194832 +g25273 +S'lithograph' +p194833 +sg25267 +g27 +sg25275 +S'1957/1961' +p194834 +sg25268 +S"Golde, Tevia's Wife" +p194835 +sg25270 +S'Anatoli Lvovich Kaplan' +p194836 +sa(dp194837 +g25268 +S'Wilson Lowry' +p194838 +sg25270 +S'Artist Information (' +p194839 +sg25273 +S'(artist after)' +p194840 +sg25275 +S'\n' +p194841 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077bb.jpg' +p194842 +sg25267 +g27 +sa(dp194843 +g25273 +S'lithograph' +p194844 +sg25267 +g27 +sg25275 +S'1957/1961' +p194845 +sg25268 +S"Evening - Tevia's House" +p194846 +sg25270 +S'Anatoli Lvovich Kaplan' +p194847 +sa(dp194848 +g25273 +S'lithograph' +p194849 +sg25267 +g27 +sg25275 +S'1957/1961' +p194850 +sg25268 +S'The Carter' +p194851 +sg25270 +S'Anatoli Lvovich Kaplan' +p194852 +sa(dp194853 +g25273 +S'lithograph' +p194854 +sg25267 +g27 +sg25275 +S'1957/1961' +p194855 +sg25268 +S'Holiday Makers' +p194856 +sg25270 +S'Anatoli Lvovich Kaplan' +p194857 +sa(dp194858 +g25273 +S'lithograph' +p194859 +sg25267 +g27 +sg25275 +S'1957/1961' +p194860 +sg25268 +S'In the House of the Rich' +p194861 +sg25270 +S'Anatoli Lvovich Kaplan' +p194862 +sa(dp194863 +g25273 +S'lithograph' +p194864 +sg25267 +g27 +sg25275 +S'1957/1961' +p194865 +sg25268 +S'Going Home' +p194866 +sg25270 +S'Anatoli Lvovich Kaplan' +p194867 +sa(dp194868 +g25273 +S'lithograph' +p194869 +sg25267 +g27 +sg25275 +S'1957/1961' +p194870 +sg25268 +S'The Family of Tevia' +p194871 +sg25270 +S'Anatoli Lvovich Kaplan' +p194872 +sa(dp194873 +g25273 +S'lithograph' +p194874 +sg25267 +g27 +sg25275 +S'1957/1961' +p194875 +sg25268 +S'In the Morning' +p194876 +sg25270 +S'Anatoli Lvovich Kaplan' +p194877 +sa(dp194878 +g25273 +S'lithograph' +p194879 +sg25267 +g27 +sg25275 +S'1957/1961' +p194880 +sg25268 +S"Tevia's Household" +p194881 +sg25270 +S'Anatoli Lvovich Kaplan' +p194882 +sa(dp194883 +g25273 +S'lithograph' +p194884 +sg25267 +g27 +sg25275 +S'1957/1961' +p194885 +sg25268 +S'Menachem Mendi' +p194886 +sg25270 +S'Anatoli Lvovich Kaplan' +p194887 +sa(dp194888 +g25273 +S'lithograph' +p194889 +sg25267 +g27 +sg25275 +S'1957/1961' +p194890 +sg25268 +S'At the Stock Exchange' +p194891 +sg25270 +S'Anatoli Lvovich Kaplan' +p194892 +sa(dp194893 +g25268 +S'Bookplate of Dominicus Frauenfelder' +p194894 +sg25270 +S'German 15th Century' +p194895 +sg25273 +S'Schreiber, no. 2039, State c' +p194896 +sg25275 +S'\nwoodcut, hand-colored in yellow, green, black, and brown' +p194897 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5bf.jpg' +p194898 +sg25267 +g27 +sa(dp194899 +g25273 +S'lithograph' +p194900 +sg25267 +g27 +sg25275 +S'1957/1961' +p194901 +sg25268 +S'A Stockbroker' +p194902 +sg25270 +S'Anatoli Lvovich Kaplan' +p194903 +sa(dp194904 +g25273 +S'lithograph' +p194905 +sg25267 +g27 +sg25275 +S'1957/1961' +p194906 +sg25268 +S"The Merchant's Family" +p194907 +sg25270 +S'Anatoli Lvovich Kaplan' +p194908 +sa(dp194909 +g25273 +S'lithograph' +p194910 +sg25267 +g27 +sg25275 +S'1957/1961' +p194911 +sg25268 +S'"Luftmensch"' +p194912 +sg25270 +S'Anatoli Lvovich Kaplan' +p194913 +sa(dp194914 +g25273 +S'lithograph' +p194915 +sg25267 +g27 +sg25275 +S'1957/1961' +p194916 +sg25268 +S'Zeitl' +p194917 +sg25270 +S'Anatoli Lvovich Kaplan' +p194918 +sa(dp194919 +g25273 +S'lithograph' +p194920 +sg25267 +g27 +sg25275 +S'1957/1961' +p194921 +sg25268 +S"In the Butcher's Shop of Lazar Wolf" +p194922 +sg25270 +S'Anatoli Lvovich Kaplan' +p194923 +sa(dp194924 +g25273 +S'lithograph' +p194925 +sg25267 +g27 +sg25275 +S'1957/1961' +p194926 +sg25268 +S'Lazar Wolf, the Butcher' +p194927 +sg25270 +S'Anatoli Lvovich Kaplan' +p194928 +sa(dp194929 +g25273 +S'lithograph' +p194930 +sg25267 +g27 +sg25275 +S'1957/1961' +p194931 +sg25268 +S'In the Little Town of Anatovka' +p194932 +sg25270 +S'Anatoli Lvovich Kaplan' +p194933 +sa(dp194934 +g25273 +S'lithograph' +p194935 +sg25267 +g27 +sg25275 +S'1957/1961' +p194936 +sg25268 +S'Motel' +p194937 +sg25270 +S'Anatoli Lvovich Kaplan' +p194938 +sa(dp194939 +g25273 +S'lithograph' +p194940 +sg25267 +g27 +sg25275 +S'1957/1961' +p194941 +sg25268 +S'The Betrothal of Zeitl' +p194942 +sg25270 +S'Anatoli Lvovich Kaplan' +p194943 +sa(dp194944 +g25273 +S'lithograph' +p194945 +sg25267 +g27 +sg25275 +S'1957/1961' +p194946 +sg25268 +S"By the Tailor's House" +p194947 +sg25270 +S'Anatoli Lvovich Kaplan' +p194948 +sa(dp194949 +g25273 +S'relief etched copper plate' +p194950 +sg25267 +g27 +sg25275 +S'1793' +p194951 +sg25268 +S'Fragment of cancelled plate for "A Prophecy" [recto]' +p194952 +sg25270 +S'William Blake' +p194953 +sa(dp194954 +g25273 +S'lithograph' +p194955 +sg25267 +g27 +sg25275 +S'1957/1961' +p194956 +sg25268 +S'Supper' +p194957 +sg25270 +S'Anatoli Lvovich Kaplan' +p194958 +sa(dp194959 +g25273 +S'lithograph' +p194960 +sg25267 +g27 +sg25275 +S'1957/1961' +p194961 +sg25268 +S"The Tailor's Family" +p194962 +sg25270 +S'Anatoli Lvovich Kaplan' +p194963 +sa(dp194964 +g25273 +S'lithograph' +p194965 +sg25267 +g27 +sg25275 +S'1957/1961' +p194966 +sg25268 +S'Colophon' +p194967 +sg25270 +S'Anatoli Lvovich Kaplan' +p194968 +sa(dp194969 +g25273 +S'lithograph' +p194970 +sg25267 +g27 +sg25275 +S'1957/1961' +p194971 +sg25268 +S'Title Page' +p194972 +sg25270 +S'Anatoli Lvovich Kaplan' +p194973 +sa(dp194974 +g25273 +S'portfolio with introduction and twenty-eight lithographs including title page, table of contents, and colophon' +p194975 +sg25267 +g27 +sg25275 +S'1957/1961' +p194976 +sg25268 +S'Tevia the Milkman (volume 2)' +p194977 +sg25270 +S'Anatoli Lvovich Kaplan' +p194978 +sa(dp194979 +g25273 +S'lithograph' +p194980 +sg25267 +g27 +sg25275 +S'1957/1961' +p194981 +sg25268 +S'Table of Contents' +p194982 +sg25270 +S'Anatoli Lvovich Kaplan' +p194983 +sa(dp194984 +g25273 +S'lithograph' +p194985 +sg25267 +g27 +sg25275 +S'1957/1961' +p194986 +sg25268 +S'Frontispiece' +p194987 +sg25270 +S'Anatoli Lvovich Kaplan' +p194988 +sa(dp194989 +g25273 +S'lithograph' +p194990 +sg25267 +g27 +sg25275 +S'1957/1961' +p194991 +sg25268 +S'The Tailor' +p194992 +sg25270 +S'Anatoli Lvovich Kaplan' +p194993 +sa(dp194994 +g25273 +S'lithograph' +p194995 +sg25267 +g27 +sg25275 +S'1957/1961' +p194996 +sg25268 +S'By the River' +p194997 +sg25270 +S'Anatoli Lvovich Kaplan' +p194998 +sa(dp194999 +g25273 +S'lithograph' +p195000 +sg25267 +g27 +sg25275 +S'1957/1961' +p195001 +sg25268 +S'Interior' +p195002 +sg25270 +S'Anatoli Lvovich Kaplan' +p195003 +sa(dp195004 +g25273 +S'etched copper plate' +p195005 +sg25267 +g27 +sg25275 +S'unknown date\n' +p195006 +sg25268 +S'Head of Saint John the Baptist [verso]' +p195007 +sg25270 +S'Thomas Butts, Jr.' +p195008 +sa(dp195009 +g25273 +S'lithograph' +p195010 +sg25267 +g27 +sg25275 +S'1957/1961' +p195011 +sg25268 +S'A Child by a Cradle' +p195012 +sg25270 +S'Anatoli Lvovich Kaplan' +p195013 +sa(dp195014 +g25273 +S'lithograph' +p195015 +sg25267 +g27 +sg25275 +S'1957/1961' +p195016 +sg25268 +S'Tevia and His Wife Golde' +p195017 +sg25270 +S'Anatoli Lvovich Kaplan' +p195018 +sa(dp195019 +g25273 +S'lithograph' +p195020 +sg25267 +g27 +sg25275 +S'1957/1961' +p195021 +sg25268 +S'In the Kitchen' +p195022 +sg25270 +S'Anatoli Lvovich Kaplan' +p195023 +sa(dp195024 +g25273 +S'lithograph' +p195025 +sg25267 +g27 +sg25275 +S'1957/1961' +p195026 +sg25268 +S'On the Eve of the Sabbath' +p195027 +sg25270 +S'Anatoli Lvovich Kaplan' +p195028 +sa(dp195029 +g25273 +S'lithograph' +p195030 +sg25267 +g27 +sg25275 +S'1957/1961' +p195031 +sg25268 +S'In Boiberik' +p195032 +sg25270 +S'Anatoli Lvovich Kaplan' +p195033 +sa(dp195034 +g25273 +S'lithograph' +p195035 +sg25267 +g27 +sg25275 +S'1957/1961' +p195036 +sg25268 +S'Holiday Makers' +p195037 +sg25270 +S'Anatoli Lvovich Kaplan' +p195038 +sa(dp195039 +g25273 +S'lithograph' +p195040 +sg25267 +g27 +sg25275 +S'1957/1961' +p195041 +sg25268 +S'Praying before Breakfast' +p195042 +sg25270 +S'Anatoli Lvovich Kaplan' +p195043 +sa(dp195044 +g25273 +S'lithograph' +p195045 +sg25267 +g27 +sg25275 +S'1957/1961' +p195046 +sg25268 +S'The Breadwinner' +p195047 +sg25270 +S'Anatoli Lvovich Kaplan' +p195048 +sa(dp195049 +g25273 +S'lithograph' +p195050 +sg25267 +g27 +sg25275 +S'1957/1961' +p195051 +sg25268 +S'Portrait of Godl' +p195052 +sg25270 +S'Anatoli Lvovich Kaplan' +p195053 +sa(dp195054 +g25273 +S'lithograph' +p195055 +sg25267 +g27 +sg25275 +S'1957/1961' +p195056 +sg25268 +S'Portrait of Pertchik' +p195057 +sg25270 +S'Anatoli Lvovich Kaplan' +p195058 +sa(dp195059 +g25268 +S'The Morning Amusements of her Royal Highness' +p195060 +sg25270 +S'Artist Information (' +p195061 +sg25273 +S'(artist after)' +p195062 +sg25275 +S'\n' +p195063 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007681.jpg' +p195064 +sg25267 +g27 +sa(dp195065 +g25273 +S'lithograph' +p195066 +sg25267 +g27 +sg25275 +S'1957/1961' +p195067 +sg25268 +S'Dreaming of the Future' +p195068 +sg25270 +S'Anatoli Lvovich Kaplan' +p195069 +sa(dp195070 +g25273 +S'lithograph' +p195071 +sg25267 +g27 +sg25275 +S'1957/1961' +p195072 +sg25268 +S'The Rich People of Yehupetz' +p195073 +sg25270 +S'Anatoli Lvovich Kaplan' +p195074 +sa(dp195075 +g25273 +S'lithograph' +p195076 +sg25267 +g27 +sg25275 +S'1957/1961' +p195077 +sg25268 +S'Portrait of Feferi' +p195078 +sg25270 +S'Anatoli Lvovich Kaplan' +p195079 +sa(dp195080 +g25273 +S'lithograph' +p195081 +sg25267 +g27 +sg25275 +S'1957/1961' +p195082 +sg25268 +S'Portrait of Svat' +p195083 +sg25270 +S'Anatoli Lvovich Kaplan' +p195084 +sa(dp195085 +g25273 +S'lithograph' +p195086 +sg25267 +g27 +sg25275 +S'1957/1961' +p195087 +sg25268 +S'Awaiting Sentence' +p195088 +sg25270 +S'Anatoli Lvovich Kaplan' +p195089 +sa(dp195090 +g25273 +S'lithograph' +p195091 +sg25267 +g27 +sg25275 +S'1957/1961' +p195092 +sg25268 +S'Road to Exile' +p195093 +sg25270 +S'Anatoli Lvovich Kaplan' +p195094 +sa(dp195095 +g25273 +S'lithograph' +p195096 +sg25267 +g27 +sg25275 +S'1957/1961' +p195097 +sg25268 +S'Waiting' +p195098 +sg25270 +S'Anatoli Lvovich Kaplan' +p195099 +sa(dp195100 +g25273 +S'lithograph' +p195101 +sg25267 +g27 +sg25275 +S'1957/1961' +p195102 +sg25268 +S'In Exile' +p195103 +sg25270 +S'Anatoli Lvovich Kaplan' +p195104 +sa(dp195105 +g25273 +S'lithograph' +p195106 +sg25267 +g27 +sg25275 +S'1957/1961' +p195107 +sg25268 +S'Chave' +p195108 +sg25270 +S'Anatoli Lvovich Kaplan' +p195109 +sa(dp195110 +g25273 +S'lithograph' +p195111 +sg25267 +g27 +sg25275 +S'1957/1961' +p195112 +sg25268 +S'Fedor' +p195113 +sg25270 +S'Anatoli Lvovich Kaplan' +p195114 +sa(dp195115 +g25273 +S'wood engraving' +p195116 +sg25267 +g27 +sg25275 +S'1821' +p195117 +sg25268 +S'Thenot and Colinet' +p195118 +sg25270 +S'William Blake' +p195119 +sa(dp195120 +g25273 +S'lithograph' +p195121 +sg25267 +g27 +sg25275 +S'1957/1961' +p195122 +sg25268 +S'The Children of the Town of Anatovka' +p195123 +sg25270 +S'Anatoli Lvovich Kaplan' +p195124 +sa(dp195125 +g25273 +S'lithograph' +p195126 +sg25267 +g27 +sg25275 +S'1957/1961' +p195127 +sg25268 +S'Colophon' +p195128 +sg25270 +S'Anatoli Lvovich Kaplan' +p195129 +sa(dp195130 +g25273 +S'4-color lithograph' +p195131 +sg25267 +g27 +sg25275 +S'1959' +p195132 +sg25268 +S'Rappa-Shu (Trumpeter) I' +p195133 +sg25270 +S'Tadashi Nakayama' +p195134 +sa(dp195135 +g25273 +S'4-color lithograph' +p195136 +sg25267 +g27 +sg25275 +S'1959' +p195137 +sg25268 +S'Rappa-Shu (Trumpeter) II' +p195138 +sg25270 +S'Tadashi Nakayama' +p195139 +sa(dp195140 +g25273 +S'lithograph in gray, black, and red' +p195141 +sg25267 +g27 +sg25275 +S'1959' +p195142 +sg25268 +S'Rappa-Shu (Trumpeter) III' +p195143 +sg25270 +S'Tadashi Nakayama' +p195144 +sa(dp195145 +g25273 +S'lithograph in yellow, black, and orange' +p195146 +sg25267 +g27 +sg25275 +S'1959' +p195147 +sg25268 +S'Rappa-Shu (Trumpeter) IV' +p195148 +sg25270 +S'Tadashi Nakayama' +p195149 +sa(dp195150 +g25273 +S'4-color lithograph' +p195151 +sg25267 +g27 +sg25275 +S'1959' +p195152 +sg25268 +S'Rappa-Shu (Trumpeter) V' +p195153 +sg25270 +S'Tadashi Nakayama' +p195154 +sa(dp195155 +g25273 +S'lithograph in rust, black, and, gray' +p195156 +sg25267 +g27 +sg25275 +S'1959' +p195157 +sg25268 +S'Rappa-Shu (Trumpeter) VI' +p195158 +sg25270 +S'Tadashi Nakayama' +p195159 +sa(dp195160 +g25273 +S'lithograph in red and black' +p195161 +sg25267 +g27 +sg25275 +S'1959' +p195162 +sg25268 +S'Rappa-Shu (Trumpeter) VII' +p195163 +sg25270 +S'Tadashi Nakayama' +p195164 +sa(dp195165 +g25273 +S'4-color lithograph' +p195166 +sg25267 +g27 +sg25275 +S'1959' +p195167 +sg25268 +S'Rappa-Shu (Trumpeter) VIII' +p195168 +sg25270 +S'Tadashi Nakayama' +p195169 +sa(dp195170 +g25268 +S'Portrait of a Man' +p195171 +sg25270 +S'North Italian 15th Century' +p195172 +sg25273 +S'overall: 37 x 27 cm (14 9/16 x 10 5/8 in.)\r\nframed: 63.5 x 52.7 x 7.5 cm (25 x 20 3/4 x 2 15/16 in.)' +p195173 +sg25275 +S'\ntempera on panel' +p195174 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007c7.jpg' +p195175 +sg25267 +g27 +sa(dp195176 +g25273 +S'bound volume with 17 wood engravings' +p195177 +sg25267 +g27 +sg25275 +S'1821' +p195178 +sg25268 +S'The Pastorals of Virgil' +p195179 +sg25270 +S'William Blake' +p195180 +sa(dp195181 +g25273 +S'6-color lithograph' +p195182 +sg25267 +g27 +sg25275 +S'1959' +p195183 +sg25268 +S'Rappa-Shu (Trumpeter) IX' +p195184 +sg25270 +S'Tadashi Nakayama' +p195185 +sa(dp195186 +g25273 +S'4-color lithograph' +p195187 +sg25267 +g27 +sg25275 +S'1959' +p195188 +sg25268 +S'Rappa-Shu (Trumpeter) X' +p195189 +sg25270 +S'Tadashi Nakayama' +p195190 +sa(dp195191 +g25273 +S'4-color lithograph' +p195192 +sg25267 +g27 +sg25275 +S'1959' +p195193 +sg25268 +S'Rappa-Shu (Trumpeter) XI' +p195194 +sg25270 +S'Tadashi Nakayama' +p195195 +sa(dp195196 +g25273 +S'lithograph in green, black, and orange' +p195197 +sg25267 +g27 +sg25275 +S'1959' +p195198 +sg25268 +S'Rappa-Shu (Trumpeter) XII' +p195199 +sg25270 +S'Tadashi Nakayama' +p195200 +sa(dp195201 +g25273 +S'lithograph in yellow, red, and black' +p195202 +sg25267 +g27 +sg25275 +S'1959' +p195203 +sg25268 +S'Rappa-Shu (Trumpeter) XIII' +p195204 +sg25270 +S'Tadashi Nakayama' +p195205 +sa(dp195206 +g25273 +S'4-color lithograph' +p195207 +sg25267 +g27 +sg25275 +S'1959' +p195208 +sg25268 +S'Rappa-Shu (Trumpeter) XIV' +p195209 +sg25270 +S'Tadashi Nakayama' +p195210 +sa(dp195211 +g25273 +S'4-color lithograph' +p195212 +sg25267 +g27 +sg25275 +S'1959' +p195213 +sg25268 +S'Rappa-Shu (Trumpeter) XV' +p195214 +sg25270 +S'Tadashi Nakayama' +p195215 +sa(dp195216 +g25273 +S'woodcut in orange-yellow' +p195217 +sg25267 +g27 +sg25275 +S'1953' +p195218 +sg25268 +S'First State' +p195219 +sg25270 +S"Frederick O'Hara" +p195220 +sa(dp195221 +g25273 +S'portfolio with five color woodcuts' +p195222 +sg25267 +g27 +sg25275 +S'1953' +p195223 +sg25268 +S'Taurina' +p195224 +sg25270 +S"Frederick O'Hara" +p195225 +sa(dp195226 +g25273 +S'woodcut in orange-yellow and two tans' +p195227 +sg25267 +g27 +sg25275 +S'1953' +p195228 +sg25268 +S'Fifth State' +p195229 +sg25270 +S"Frederick O'Hara" +p195230 +sa(dp195231 +g25273 +S'wood engraving' +p195232 +sg25267 +g27 +sg25275 +S'1821' +p195233 +sg25268 +S'Thenot Remonstrates with Colinet' +p195234 +sg25270 +S'William Blake' +p195235 +sa(dp195236 +g25273 +S'6-color woodcut' +p195237 +sg25267 +g27 +sg25275 +S'1953' +p195238 +sg25268 +S'Tenth State' +p195239 +sg25270 +S"Frederick O'Hara" +p195240 +sa(dp195241 +g25273 +S'8-color woodcut' +p195242 +sg25267 +g27 +sg25275 +S'1953' +p195243 +sg25268 +S'Fifteenth State' +p195244 +sg25270 +S"Frederick O'Hara" +p195245 +sa(dp195246 +g25273 +S'8-color woodcut' +p195247 +sg25267 +g27 +sg25275 +S'1953' +p195248 +sg25268 +S'Sixteenth State' +p195249 +sg25270 +S"Frederick O'Hara" +p195250 +sa(dp195251 +g25273 +S'lithograph on Arches paper' +p195252 +sg25267 +g27 +sg25275 +S'1962' +p195253 +sg25268 +S'Ground Hog' +p195254 +sg25270 +S'Aubrey Schwartz' +p195255 +sa(dp195256 +g25273 +S'portfolio with twenty lithographs on Arches paper with title page and six pages of text' +p195257 +sg25267 +g27 +sg25275 +S'published 1962' +p195258 +sg25268 +S'A Bestiary' +p195259 +sg25270 +S'Aubrey Schwartz' +p195260 +sa(dp195261 +g25273 +S'lithograph on Arches paper' +p195262 +sg25267 +g27 +sg25275 +S'1962' +p195263 +sg25268 +S'Fish' +p195264 +sg25270 +S'Aubrey Schwartz' +p195265 +sa(dp195266 +g25273 +S'lithograph on Arches paper' +p195267 +sg25267 +g27 +sg25275 +S'1962' +p195268 +sg25268 +S'Animal Face' +p195269 +sg25270 +S'Aubrey Schwartz' +p195270 +sa(dp195271 +g25273 +S'lithograph on Arches paper' +p195272 +sg25267 +g27 +sg25275 +S'1962' +p195273 +sg25268 +S'Hippopptamus' +p195274 +sg25270 +S'Aubrey Schwartz' +p195275 +sa(dp195276 +g25273 +S'lithograph on Arches paper' +p195277 +sg25267 +g27 +sg25275 +S'1962' +p195278 +sg25268 +S'Three Insects' +p195279 +sg25270 +S'Aubrey Schwartz' +p195280 +sa(dp195281 +g25273 +S'lithograph on Arches paper' +p195282 +sg25267 +g27 +sg25275 +S'1962' +p195283 +sg25268 +S'Monkey' +p195284 +sg25270 +S'Aubrey Schwartz' +p195285 +sa(dp195286 +g25273 +S'wood engraving' +p195287 +sg25267 +g27 +sg25275 +S'1821' +p195288 +sg25268 +S'Thenot under Fruit Tree' +p195289 +sg25270 +S'William Blake' +p195290 +sa(dp195291 +g25273 +S'lithograph on Arches paper' +p195292 +sg25267 +g27 +sg25275 +S'1962' +p195293 +sg25268 +S'Porcupine' +p195294 +sg25270 +S'Aubrey Schwartz' +p195295 +sa(dp195296 +g25273 +S'lithograph on Arches paper' +p195297 +sg25267 +g27 +sg25275 +S'1962' +p195298 +sg25268 +S'Tortoise Head' +p195299 +sg25270 +S'Aubrey Schwartz' +p195300 +sa(dp195301 +g25273 +S'lithograph on Arches paper' +p195302 +sg25267 +g27 +sg25275 +S'1962' +p195303 +sg25268 +S'Lizards and Snakes' +p195304 +sg25270 +S'Aubrey Schwartz' +p195305 +sa(dp195306 +g25273 +S'lithograph on Arches paper' +p195307 +sg25267 +g27 +sg25275 +S'1962' +p195308 +sg25268 +S'Gorilla' +p195309 +sg25270 +S'Aubrey Schwartz' +p195310 +sa(dp195311 +g25273 +S'lithograph on Arches paper' +p195312 +sg25267 +g27 +sg25275 +S'1962' +p195313 +sg25268 +S'Guinea Pig' +p195314 +sg25270 +S'Aubrey Schwartz' +p195315 +sa(dp195316 +g25273 +S'lithograph on Arches paper' +p195317 +sg25267 +g27 +sg25275 +S'1962' +p195318 +sg25268 +S'Rhinoceros' +p195319 +sg25270 +S'Aubrey Schwartz' +p195320 +sa(dp195321 +g25273 +S'lithograph on Arches paper' +p195322 +sg25267 +g27 +sg25275 +S'1962' +p195323 +sg25268 +S'Three Sea Horses' +p195324 +sg25270 +S'Aubrey Schwartz' +p195325 +sa(dp195326 +g25273 +S'lithograph on Arches paper' +p195327 +sg25267 +g27 +sg25275 +S'1962' +p195328 +sg25268 +S'Flies and Bees' +p195329 +sg25270 +S'Aubrey Schwartz' +p195330 +sa(dp195331 +g25273 +S'lithograph on Arches paper' +p195332 +sg25267 +g27 +sg25275 +S'1962' +p195333 +sg25268 +S'Armadillo' +p195334 +sg25270 +S'Aubrey Schwartz' +p195335 +sa(dp195336 +g25273 +S'lithograph on Arches paper' +p195337 +sg25267 +g27 +sg25275 +S'1962' +p195338 +sg25268 +S'Crab, Lobster and ?' +p195339 +sg25270 +S'Aubrey Schwartz' +p195340 +sa(dp195341 +g25273 +S'wood engraving' +p195342 +sg25267 +g27 +sg25275 +S'1821' +p195343 +sg25268 +S'Thenot Remonstrates with Colinet, Lightfoot in Background' +p195344 +sg25270 +S'William Blake' +p195345 +sa(dp195346 +g25273 +S'lithograph on Arches paper' +p195347 +sg25267 +g27 +sg25275 +S'1962' +p195348 +sg25268 +S'Crocodile' +p195349 +sg25270 +S'Aubrey Schwartz' +p195350 +sa(dp195351 +g25273 +S'lithograph on Arches paper' +p195352 +sg25267 +g27 +sg25275 +S'1962' +p195353 +sg25268 +S'Three Mice' +p195354 +sg25270 +S'Aubrey Schwartz' +p195355 +sa(dp195356 +g25273 +S'lithograph on Arches paper' +p195357 +sg25267 +g27 +sg25275 +S'1962' +p195358 +sg25268 +S'Pig' +p195359 +sg25270 +S'Aubrey Schwartz' +p195360 +sa(dp195361 +g25273 +S'lithograph on Arches paper' +p195362 +sg25267 +g27 +sg25275 +S'1962' +p195363 +sg25268 +S'Two Tarantulas' +p195364 +sg25270 +S'Aubrey Schwartz' +p195365 +sa(dp195366 +g25273 +S'woodcut' +p195367 +sg25267 +g27 +sg25275 +S'1961' +p195368 +sg25268 +S'Title Page: Beast' +p195369 +sg25270 +S'Helen Siegl' +p195370 +sa(dp195371 +g25273 +S'portfolio with nine woodcuts, including title page, and colophon' +p195372 +sg25267 +g27 +sg25275 +S'1961' +p195373 +sg25268 +S'A Little Bestiary' +p195374 +sg25270 +S'Helen Siegl' +p195375 +sa(dp195376 +g25273 +S'woodcut' +p195377 +sg25267 +g27 +sg25275 +S'1961' +p195378 +sg25268 +S'Lion' +p195379 +sg25270 +S'Helen Siegl' +p195380 +sa(dp195381 +g25273 +S'woodcut' +p195382 +sg25267 +g27 +sg25275 +S'1961' +p195383 +sg25268 +S'Nereides' +p195384 +sg25270 +S'Helen Siegl' +p195385 +sa(dp195386 +g25273 +S'woodcut' +p195387 +sg25267 +g27 +sg25275 +S'1961' +p195388 +sg25268 +S'Rhinoceros' +p195389 +sg25270 +S'Helen Siegl' +p195390 +sa(dp195391 +g25273 +S'woodcut' +p195392 +sg25267 +g27 +sg25275 +S'1961' +p195393 +sg25268 +S'Camel' +p195394 +sg25270 +S'Helen Siegl' +p195395 +sa(dp195396 +g25273 +S'wood engraving' +p195397 +sg25267 +g27 +sg25275 +S'1821' +p195398 +sg25268 +S'Colinet Departs in Sorrow' +p195399 +sg25270 +S'William Blake' +p195400 +sa(dp195401 +g25273 +S'woodcut' +p195402 +sg25267 +g27 +sg25275 +S'1961' +p195403 +sg25268 +S'Crocodile' +p195404 +sg25270 +S'Helen Siegl' +p195405 +sa(dp195406 +g25273 +S'woodcut' +p195407 +sg25267 +g27 +sg25275 +S'1961' +p195408 +sg25268 +S'Cat' +p195409 +sg25270 +S'Helen Siegl' +p195410 +sa(dp195411 +g25273 +S'woodcut' +p195412 +sg25267 +g27 +sg25275 +S'1961' +p195413 +sg25268 +S'Elephant' +p195414 +sg25270 +S'Helen Siegl' +p195415 +sa(dp195416 +g25273 +S'woodcut' +p195417 +sg25267 +g27 +sg25275 +S'1961' +p195418 +sg25268 +S'Dragon' +p195419 +sg25270 +S'Helen Siegl' +p195420 +sa(dp195421 +g25273 +S'color lithograph' +p195422 +sg25267 +g27 +sg25275 +S'published 1962' +p195423 +sg25268 +S'Frontispiece' +p195424 +sg25270 +S'Zao Wou-Ki' +p195425 +sa(dp195426 +g25273 +S'portfolio with 10 color lithographs' +p195427 +sg25267 +g27 +sg25275 +S'published 1962' +p195428 +sg25268 +S"The Temptation of the Occident (La Tentation de l'Occident)" +p195429 +sg25270 +S'Zao Wou-Ki' +p195430 +sa(dp195431 +g25273 +S'color lithograph' +p195432 +sg25267 +g27 +sg25275 +S'published 1962' +p195433 +sg25268 +S'Untitled' +p195434 +sg25270 +S'Zao Wou-Ki' +p195435 +sa(dp195436 +g25273 +S'color lithograph' +p195437 +sg25267 +g27 +sg25275 +S'published 1962' +p195438 +sg25268 +S'Untitled' +p195439 +sg25270 +S'Zao Wou-Ki' +p195440 +sa(dp195441 +g25273 +S'color lithograph' +p195442 +sg25267 +g27 +sg25275 +S'published 1962' +p195443 +sg25268 +S'Untitled' +p195444 +sg25270 +S'Zao Wou-Ki' +p195445 +sa(dp195446 +g25273 +S'color lithograph' +p195447 +sg25267 +g27 +sg25275 +S'published 1962' +p195448 +sg25268 +S'Untitled' +p195449 +sg25270 +S'Zao Wou-Ki' +p195450 +sa(dp195451 +g25273 +S'wood engraving' +p195452 +sg25267 +g27 +sg25275 +S'1821' +p195453 +sg25268 +S'Blasted Tree and Flattened Crops' +p195454 +sg25270 +S'William Blake' +p195455 +sa(dp195456 +g25273 +S'color lithograph' +p195457 +sg25267 +g27 +sg25275 +S'published 1962' +p195458 +sg25268 +S'Untitled' +p195459 +sg25270 +S'Zao Wou-Ki' +p195460 +sa(dp195461 +g25273 +S'color lithograph' +p195462 +sg25267 +g27 +sg25275 +S'published 1962' +p195463 +sg25268 +S'Untitled' +p195464 +sg25270 +S'Zao Wou-Ki' +p195465 +sa(dp195466 +g25273 +S'color lithograph' +p195467 +sg25267 +g27 +sg25275 +S'published 1962' +p195468 +sg25268 +S'Untitled' +p195469 +sg25270 +S'Zao Wou-Ki' +p195470 +sa(dp195471 +g25273 +S'color lithograph' +p195472 +sg25267 +g27 +sg25275 +S'published 1962' +p195473 +sg25268 +S'Untitled' +p195474 +sg25270 +S'Zao Wou-Ki' +p195475 +sa(dp195476 +g25273 +S'color lithograph' +p195477 +sg25267 +g27 +sg25275 +S'published 1962' +p195478 +sg25268 +S'Untitled' +p195479 +sg25270 +S'Zao Wou-Ki' +p195480 +sa(dp195481 +g25273 +S'woodcut in white on brown japan paper (outer wrapper for suite)' +p195482 +sg25267 +g27 +sg25275 +S'published 1960' +p195483 +sg25268 +S'From "Le tir \xc3\xa0 l\'arc"' +p195484 +sg25270 +S'Georges Braque' +p195485 +sa(dp195486 +g25273 +S'suite of 9 prints including 2 wrappers on japan nacre paper;1 of 2 suites apart from copy V of the book given by LJR to LC(other suite 1964.8.2888-92)' +p195487 +sg25267 +g27 +sg25275 +S'published 1960' +p195488 +sg25268 +S"Le tir \xc3\xa0 l'arc" +p195489 +sg25270 +S'Georges Braque' +p195490 +sa(dp195491 +g25273 +S'lithograph in pink on japan nacre paper (inside wrapper for suite)' +p195492 +sg25267 +g27 +sg25275 +S'published 1960' +p195493 +sg25268 +S'From "Le tir \xc3\xa0 l\'arc"' +p195494 +sg25270 +S'Georges Braque' +p195495 +sa(dp195496 +g25273 +S'color lithograph on japan nacre paper' +p195497 +sg25267 +g27 +sg25275 +S'published 1960' +p195498 +sg25268 +S'From "Le tir \xc3\xa0 l\'arc"' +p195499 +sg25270 +S'Georges Braque' +p195500 +sa(dp195501 +g25273 +S'color lithograph on japan nacre paper' +p195502 +sg25267 +g27 +sg25275 +S'published 1960' +p195503 +sg25268 +S'From "Le tir \xc3\xa0 l\'arc"' +p195504 +sg25270 +S'Georges Braque' +p195505 +sa(dp195506 +g25273 +S'wood engraving' +p195507 +sg25267 +g27 +sg25275 +S'1821' +p195508 +sg25268 +S'Shepherd Chases away Wolf' +p195509 +sg25270 +S'William Blake' +p195510 +sa(dp195511 +g25273 +S'color lithograph on japan nacre paper' +p195512 +sg25267 +g27 +sg25275 +S'published 1960' +p195513 +sg25268 +S'From "Le tir \xc3\xa0 l\'arc"' +p195514 +sg25270 +S'Georges Braque' +p195515 +sa(dp195516 +g25273 +S'color lithograph on japan nacre paper' +p195517 +sg25267 +g27 +sg25275 +S'published 1960' +p195518 +sg25268 +S'From "Le tir \xc3\xa0 l\'arc"' +p195519 +sg25270 +S'Georges Braque' +p195520 +sa(dp195521 +g25273 +S'lithograph in black on japan nacre paper' +p195522 +sg25267 +g27 +sg25275 +S'published 1960' +p195523 +sg25268 +S'From "Le tir \xc3\xa0 l\'arc"' +p195524 +sg25270 +S'Georges Braque' +p195525 +sa(dp195526 +g25273 +S'color lithograph on japan nacre paper' +p195527 +sg25267 +g27 +sg25275 +S'published 1960' +p195528 +sg25268 +S'From "Le tir \xc3\xa0 l\'arc"' +p195529 +sg25270 +S'Georges Braque' +p195530 +sa(dp195531 +g25273 +S'color lithograph on japan nacre paper' +p195532 +sg25267 +g27 +sg25275 +S'published 1960' +p195533 +sg25268 +S'From "Le tir \xc3\xa0 l\'arc"' +p195534 +sg25270 +S'Georges Braque' +p195535 +sa(dp195536 +g25273 +S'woodcut in white on brown japan paper (wrapper for suite)' +p195537 +sg25267 +g27 +sg25275 +S'published 1960' +p195538 +sg25268 +S'From "Le tir \xc3\xa0 l\'arc"' +p195539 +sg25270 +S'Georges Braque' +p195540 +sa(dp195541 +g25273 +S'suite of 5 woodcuts including wrapper on japan nacre paper; 1 of 2 suites apart from copy V of the book given by LJR to LC(other suite 1964.8.2879-87)' +p195542 +sg25267 +g27 +sg25275 +S'published 1960' +p195543 +sg25268 +S"Le tir \xc3\xa0 l'arc" +p195544 +sg25270 +S'Georges Braque' +p195545 +sa(dp195546 +g25273 +S'woodcut in burgundy on japan nacre paper' +p195547 +sg25267 +g27 +sg25275 +S'published 1960' +p195548 +sg25268 +S'From "Le tir a l\'arc"' +p195549 +sg25270 +S'Georges Braque' +p195550 +sa(dp195551 +g25273 +S'woodcut in black and white on japan nacre paper' +p195552 +sg25267 +g27 +sg25275 +S'published 1960' +p195553 +sg25268 +S'From "Le tir \xc3\xa0 l\'arc"' +p195554 +sg25270 +S'Georges Braque' +p195555 +sa(dp195556 +g25273 +S'woodcut in white and blue on japan nacre paper' +p195557 +sg25267 +g27 +sg25275 +S'published 1960' +p195558 +sg25268 +S'From "Le tir \xc3\xa0 l\'arc"' +p195559 +sg25270 +S'Georges Braque' +p195560 +sa(dp195561 +g25273 +S'wood engraving' +p195562 +sg25267 +g27 +sg25275 +S'1821' +p195563 +sg25268 +S"'Sabrina's silvery flood'" +p195564 +sg25270 +S'William Blake' +p195565 +sa(dp195566 +g25273 +S'woodcut in black on japan nacre paper' +p195567 +sg25267 +g27 +sg25275 +S'published 1960' +p195568 +sg25268 +S'From "Le tir \xc3\xa0 l\'arc"' +p195569 +sg25270 +S'Georges Braque' +p195570 +sa(dp195571 +g25273 +S'portfolio in 2 parts (Part I: Trees and Shrubs, Part II: Herbs and Other Small Plants) with 50 wood engravings on Japan paper' +p195572 +sg25267 +g27 +sg25275 +S'published 1962' +p195573 +sg25268 +S"Plants of Virgil's Georgics" +p195574 +sg25270 +S'Elfriede Martha Abbe' +p195575 +sa(dp195576 +g25273 +S'lithograph in olive-gray on japan paper' +p195577 +sg25267 +g27 +sg25275 +S'published 1959' +p195578 +sg25268 +S'Frontispiece from "La redemption par les betes"' +p195579 +sg25270 +S'Pierre Bonnard' +p195580 +sa(dp195581 +g25273 +S'suite of 39 lithographs in olive-gray on japan paper of which 17 (1964.8.2965-2981) were completed by the firm of Mourlot Freres' +p195582 +sg25267 +g27 +sg25275 +S'published 1959' +p195583 +sg25268 +S'La redemption par les betes' +p195584 +sg25270 +S'Pierre Bonnard' +p195585 +sa(dp195586 +g25273 +S'lithograph in olive-gray on japan paper' +p195587 +sg25267 +g27 +sg25275 +S'published 1959' +p195588 +sg25268 +S'From "La redemption par les betes"' +p195589 +sg25270 +S'Pierre Bonnard' +p195590 +sa(dp195591 +g25273 +S'lithograph in olive-gray on japan paper' +p195592 +sg25267 +g27 +sg25275 +S'published 1959' +p195593 +sg25268 +S'From "La redemption par les betes"' +p195594 +sg25270 +S'Pierre Bonnard' +p195595 +sa(dp195596 +g25273 +S'lithograph in olive-gray on japan paper' +p195597 +sg25267 +g27 +sg25275 +S'published 1959' +p195598 +sg25268 +S'From "La redemption par les betes"' +p195599 +sg25270 +S'Pierre Bonnard' +p195600 +sa(dp195601 +g25273 +S'lithograph in olive-gray on japan paper' +p195602 +sg25267 +g27 +sg25275 +S'published 1959' +p195603 +sg25268 +S'From "La redemption par les betes"' +p195604 +sg25270 +S'Pierre Bonnard' +p195605 +sa(dp195606 +g25273 +S'lithograph in olive-gray on japan paper' +p195607 +sg25267 +g27 +sg25275 +S'published 1959' +p195608 +sg25268 +S'From "La redemption par les betes"' +p195609 +sg25270 +S'Pierre Bonnard' +p195610 +sa(dp195611 +g25273 +S'lithograph in olive-gray on japan paper' +p195612 +sg25267 +g27 +sg25275 +S'published 1959' +p195613 +sg25268 +S'From "La redemption par les betes"' +p195614 +sg25270 +S'Pierre Bonnard' +p195615 +sa(dp195616 +g25273 +S'wood engraving' +p195617 +sg25267 +g27 +sg25275 +S'1821' +p195618 +sg25268 +S"Colinet's Journey" +p195619 +sg25270 +S'William Blake' +p195620 +sa(dp195621 +g25273 +S'lithograph in olive-gray on japan paper' +p195622 +sg25267 +g27 +sg25275 +S'published 1959' +p195623 +sg25268 +S'From "La redemption par les betes"' +p195624 +sg25270 +S'Pierre Bonnard' +p195625 +sa(dp195626 +g25273 +S'lithograph in olive-gray on japan paper' +p195627 +sg25267 +g27 +sg25275 +S'published 1959' +p195628 +sg25268 +S'From "La redemption par les betes"' +p195629 +sg25270 +S'Pierre Bonnard' +p195630 +sa(dp195631 +g25273 +S'lithograph in olive-gray on japan paper' +p195632 +sg25267 +g27 +sg25275 +S'published 1959' +p195633 +sg25268 +S'From "La redemption par les betes"' +p195634 +sg25270 +S'Pierre Bonnard' +p195635 +sa(dp195636 +g25273 +S'lithograph in olive-gray on japan paper' +p195637 +sg25267 +g27 +sg25275 +S'published 1959' +p195638 +sg25268 +S'From "La redemption par les betes"' +p195639 +sg25270 +S'Pierre Bonnard' +p195640 +sa(dp195641 +g25273 +S'lithograph in olive-gray on japan paper' +p195642 +sg25267 +g27 +sg25275 +S'published 1959' +p195643 +sg25268 +S'From "La redemption par les betes"' +p195644 +sg25270 +S'Pierre Bonnard' +p195645 +sa(dp195646 +g25273 +S'lithograph in olive-gray on japan paper' +p195647 +sg25267 +g27 +sg25275 +S'published 1959' +p195648 +sg25268 +S'From "La redemption par les betes"' +p195649 +sg25270 +S'Pierre Bonnard' +p195650 +sa(dp195651 +g25273 +S'lithograph in olive-gray on japan paper' +p195652 +sg25267 +g27 +sg25275 +S'published 1959' +p195653 +sg25268 +S'From "La redemption par les betes"' +p195654 +sg25270 +S'Pierre Bonnard' +p195655 +sa(dp195656 +g25273 +S'lithograph in olive gray on japan paper' +p195657 +sg25267 +g27 +sg25275 +S'published 1959' +p195658 +sg25268 +S'From "La redemption par les betes"' +p195659 +sg25270 +S'Pierre Bonnard' +p195660 +sa(dp195661 +g25273 +S'lithograph in olive-gray on japan paper' +p195662 +sg25267 +g27 +sg25275 +S'published 1959' +p195663 +sg25268 +S'From "La redemption par les betes"' +p195664 +sg25270 +S'Pierre Bonnard' +p195665 +sa(dp195666 +g25273 +S'lithograph in olive gray on japan paper' +p195667 +sg25267 +g27 +sg25275 +S'published 1959' +p195668 +sg25268 +S'From "La redemption par les betes"' +p195669 +sg25270 +S'Pierre Bonnard' +p195670 +sa(dp195671 +g25273 +S'wood engraving' +p195672 +sg25267 +g27 +sg25275 +S'1821' +p195673 +sg25268 +S"'A rolling stone is ever bare of moss'" +p195674 +sg25270 +S'William Blake' +p195675 +sa(dp195676 +g25273 +S'lithograph in olive-gray on japan paper' +p195677 +sg25267 +g27 +sg25275 +S'published 1959' +p195678 +sg25268 +S'From "La redemption par les betes"' +p195679 +sg25270 +S'Pierre Bonnard' +p195680 +sa(dp195681 +g25273 +S'lithograph in olive-gray on japan paper' +p195682 +sg25267 +g27 +sg25275 +S'published 1959' +p195683 +sg25268 +S'From "La redemption par les betes"' +p195684 +sg25270 +S'Pierre Bonnard' +p195685 +sa(dp195686 +g25273 +S'lithograph in olive-gray on japan paper' +p195687 +sg25267 +g27 +sg25275 +S'published 1959' +p195688 +sg25268 +S'From "La redemption par les betes"' +p195689 +sg25270 +S'Pierre Bonnard' +p195690 +sa(dp195691 +g25273 +S'lithograph in olive gray on japan paper' +p195692 +sg25267 +g27 +sg25275 +S'published 1959' +p195693 +sg25268 +S'From "La redemption par les betes"' +p195694 +sg25270 +S'Pierre Bonnard' +p195695 +sa(dp195696 +g25273 +S'lithograph in olive gray on japan paper' +p195697 +sg25267 +g27 +sg25275 +S'published 1959' +p195698 +sg25268 +S'From "La redemption par les betes"' +p195699 +sg25270 +S'Pierre Bonnard' +p195700 +sa(dp195701 +g25273 +S'lithograph in olive-gray on japan paper' +p195702 +sg25267 +g27 +sg25275 +S'published 1959' +p195703 +sg25268 +S'From "La redemption par les betes"' +p195704 +sg25270 +S'Pierre Bonnard' +p195705 +sa(dp195706 +g25273 +S'lithograph in olive-gray on japan paper' +p195707 +sg25267 +g27 +sg25275 +S'published 1959' +p195708 +sg25268 +S'From "La redemption par les betes"' +p195709 +sg25270 +S'Pierre Bonnard' +p195710 +sa(dp195711 +g25273 +S'lithograph in olive-gray on japan paper' +p195712 +sg25267 +g27 +sg25275 +S'published 1959' +p195713 +sg25268 +S'From "La redemption par les betes"' +p195714 +sg25270 +S'Pierre Bonnard' +p195715 +sa(dp195716 +g25273 +S'lithograph in olive-gray on japan paper' +p195717 +sg25267 +g27 +sg25275 +S'published 1959' +p195718 +sg25268 +S'From "La redemption par les betes"' +p195719 +sg25270 +S'Pierre Bonnard' +p195720 +sa(dp195721 +g25273 +S'lithograph in olive-gray on japan paper' +p195722 +sg25267 +g27 +sg25275 +S'published 1959' +p195723 +sg25268 +S'From "La redemption par les betes"' +p195724 +sg25270 +S'Pierre Bonnard' +p195725 +sa(dp195726 +g25273 +S'wood engraving' +p195727 +sg25267 +g27 +sg25275 +S'1821' +p195728 +sg25268 +S'Colinet Resting by Night' +p195729 +sg25270 +S'William Blake' +p195730 +sa(dp195731 +g25273 +S'lithograph in olive-gray on japan paper' +p195732 +sg25267 +g27 +sg25275 +S'published 1959' +p195733 +sg25268 +S'From "La redemption par les betes"' +p195734 +sg25270 +S'Pierre Bonnard' +p195735 +sa(dp195736 +g25273 +S'lithograph in olive-gray on japan paper' +p195737 +sg25267 +g27 +sg25275 +S'published 1959' +p195738 +sg25268 +S'From "La redemption par les betes"' +p195739 +sg25270 +S'Pierre Bonnard' +p195740 +sa(dp195741 +g25273 +S'lithograph in olive-gray on japan paper' +p195742 +sg25267 +g27 +sg25275 +S'published 1959' +p195743 +sg25268 +S'From "La redemption par les betes"' +p195744 +sg25270 +S'Pierre Bonnard' +p195745 +sa(dp195746 +g25273 +S'lithograph in olive-gray on japan paper' +p195747 +sg25267 +g27 +sg25275 +S'published 1959' +p195748 +sg25268 +S'From "La redemption par les betes"' +p195749 +sg25270 +S'Pierre Bonnard' +p195750 +sa(dp195751 +g25273 +S'lithograph in olive-gray on japan paper' +p195752 +sg25267 +g27 +sg25275 +S'published 1959' +p195753 +sg25268 +S'From "La redemption par les betes"' +p195754 +sg25270 +S'Pierre Bonnard' +p195755 +sa(dp195756 +g25273 +S'lithograph in olive-gray on japan paper' +p195757 +sg25267 +g27 +sg25275 +S'published 1959' +p195758 +sg25268 +S'From "La redemption par les betes"' +p195759 +sg25270 +S'Pierre Bonnard' +p195760 +sa(dp195761 +g25273 +S'lithograph in olive-gray on japan paper' +p195762 +sg25267 +g27 +sg25275 +S'published 1959' +p195763 +sg25268 +S'From "La redemption par les betes"' +p195764 +sg25270 +S'Pierre Bonnard' +p195765 +sa(dp195766 +g25273 +S'lithograph in olive-gray on japan paper' +p195767 +sg25267 +g27 +sg25275 +S'published 1959' +p195768 +sg25268 +S'From "La redemption par les betes"' +p195769 +sg25270 +S'Pierre Bonnard' +p195770 +sa(dp195771 +g25273 +S'lithograph in olive-gray on japan paper' +p195772 +sg25267 +g27 +sg25275 +S'published 1959' +p195773 +sg25268 +S'From "La redemption par les betes"' +p195774 +sg25270 +S'Pierre Bonnard' +p195775 +sa(dp195776 +g25273 +S'lithograph in olive-gray on japan paper' +p195777 +sg25267 +g27 +sg25275 +S'published 1959' +p195778 +sg25268 +S'From "La redemption par les betes"' +p195779 +sg25270 +S'Pierre Bonnard' +p195780 +sa(dp195781 +g25273 +S'wood engraving' +p195782 +sg25267 +g27 +sg25275 +S'1821' +p195783 +sg25268 +S'Colinet Mocked by Two Boys' +p195784 +sg25270 +S'William Blake' +p195785 +sa(dp195786 +g25273 +S'lithograph in olive-gray on japan paper' +p195787 +sg25267 +g27 +sg25275 +S'published 1959' +p195788 +sg25268 +S'From "La redemption par les betes"' +p195789 +sg25270 +S'Pierre Bonnard' +p195790 +sa(dp195791 +g25273 +S'lithograph in olive-gray on japan paper' +p195792 +sg25267 +g27 +sg25275 +S'published 1959' +p195793 +sg25268 +S'From "La redemption par les betes"' +p195794 +sg25270 +S'Pierre Bonnard' +p195795 +sa(dp195796 +g25268 +S'The Artist\'s Son Claude or "Coco"' +p195797 +sg25270 +S'Auguste Renoir' +p195798 +sg25273 +S'red and white chalk on laid paper' +p195799 +sg25275 +S'c. 1906' +p195800 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a0006743.jpg' +p195801 +sg25267 +g27 +sa(dp195802 +g25273 +S'pen and black ink with brown and yellow wash on laid paper' +p195803 +sg25267 +g27 +sg25275 +S'1944' +p195804 +sg25268 +S'Spire of Gelmeroda' +p195805 +sg25270 +S'Lyonel Feininger' +p195806 +sa(dp195807 +g25273 +S'pen and black ink with pink and brown pastel on laid paper' +p195808 +sg25267 +g27 +sg25275 +S'1934' +p195809 +sg25268 +S'Three Women' +p195810 +sg25270 +S'Joan Mir\xc3\xb3' +p195811 +sa(dp195812 +g25268 +S'The Marquise de Pezay, and the Marquise de Roug\xc3\xa9 with Her Sons Alexis and Adrien' +p195813 +sg25270 +S'\xc3\x89lisabeth Louise Vig\xc3\xa9e Le Brun' +p195814 +sg25273 +S', 1787' +p195815 +sg25275 +S'\n' +p195816 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d7e.jpg' +p195817 +sg25267 +S"Madame Vigée Le Brun was part of the world she painted and, like her aristocratic patrons, was under threat of the guillotine after the revolution. She was forced to flee Paris in disguise in 1789. She had been first painter to Queen Marie–Antoinette and her personal confidant. The queen had intervened to ensure her election to the Royal Academy of Painting and Sculpture, an honor accorded few women.\n More than two–thirds of Vigée Le Brun's surviving paintings are portraits. Most, like this one, are of women and children who are idealized \r\n—flattered—into a kind of family resemblance. These unrelated young women, for example, could easily be mistaken for sisters. Their garments, airy silks and iridescent taffetas, are almost more individual than their faces, although both women were friends of the artist. The picture was hailed as a tribute to friendship and maternal love when it was shown at the Salon of 1787.\n " +p195818 +sa(dp195819 +g25268 +S'Luther as an Augustinian Friar' +p195820 +sg25270 +S'Lucas Cranach the Elder' +p195821 +sg25273 +S'engraving' +p195822 +sg25275 +S'1520' +p195823 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a0006737.jpg' +p195824 +sg25267 +g27 +sa(dp195825 +g25268 +S"Eleanora O'Donnell Iselin (Mrs. Adrian Iselin)" +p195826 +sg25270 +S'John Singer Sargent' +p195827 +sg25273 +S'oil on canvas' +p195828 +sg25275 +S'1888' +p195829 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000207.jpg' +p195830 +sg25267 +S'Eleanora Iselin, a banker’s wife, was portrayed in New\r\n York City during one of Sargent’s many transatlantic\r\n trips. Arriving for her first sitting, the sixty-six-year-old\r\n matron was appalled when Sargent insisted that she pose\r\n in the street clothes she wore rather than in one of the\r\n sumptuous French gowns carried by her maid.\n Her severe black dress transforms Mrs. Iselin’s\r\n image into a pillar of austerity, glinting with black beads\r\n of jet gemstones. Such superb imitations of surface textures\r\n once prompted a critic to remark that Sargent’s\r\n brushwork could distinguish “paste from diamonds.”\r\n Seldom bothering to flatter his sitters, the painter did\r\n nothing to disguise Mrs. Iselin’s large ear or to conceal\r\n her contempt as she tapped impatiently on the table.\r\n Thirty years after painting \n Sargent’s phenomenal success as a portraitist was\r\n due in part to his prominent New England colonial\r\n ancestry, which made him the social equal to or better\r\n of many of his patrons. Rebelling against his popularity,\r\n he continually raised his prices to discourage potential\r\n clients, but the higher costs had the opposite effect of\r\n placing his portraits in even greater demand.\n ' +p195831 +sa(dp195832 +g25268 +S'Portrait of a Man' +p195833 +sg25270 +S'Artist Information (' +p195834 +sg25273 +S'(artist after)' +p195835 +sg25275 +S'\n' +p195836 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d24.jpg' +p195837 +sg25267 +g27 +sa(dp195838 +g25268 +S'Patrick Tracy' +p195839 +sg25270 +S'John Trumbull' +p195840 +sg25273 +S'oil on canvas' +p195841 +sg25275 +S'1784/1786' +p195842 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000dacf.jpg' +p195843 +sg25267 +S'Patrick Tracy\n Trumbull\'s account book for 1784 resolves the dilemma: "Whole length of Mr. P. Tracy\n(father of Nat) leaning on an anchor -- head copied." Nat Tracy, the subject\'s son,\napparently commissioned the portrait while in London on business. Since Patrick\nwas still in America, Trumbull adapted his face from a likeness which Nat must have\nlent him, but did the rest in his new style.\n While working on this life-size portrait, Trumbull received an unprecedented honor\nfrom Benjamin West. West, who had intended to paint a vast series of scenes illustrating\nthe characters and events of the War of Independence, decided he was too busy and\npassed the idea along to his pupil. The resulting history paintings culminated in\nTrumbull\'s world-famous murals in the Capitol\'s Rotunda.\n ' +p195844 +sa(dp195845 +g25273 +S'wood engraving' +p195846 +sg25267 +g27 +sg25275 +S'1821' +p195847 +sg25268 +S'Menalcas Watching Women Dance' +p195848 +sg25270 +S'William Blake' +p195849 +sa(dp195850 +g25268 +S'A Knight of the Golden Fleece' +p195851 +sg25270 +S'French 15th Century' +p195852 +sg25273 +S'overall: 68 x 53.7 cm (26 3/4 x 21 1/8 in.)\r\nframed: 74.9 x 61.6 x 6 cm (29 1/2 x 24 1/4 x 2 3/8 in.)' +p195853 +sg25275 +S'\noil on European walnut' +p195854 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005ab0.jpg' +p195855 +sg25267 +g27 +sa(dp195856 +g25273 +S'lithograph' +p195857 +sg25267 +g27 +sg25275 +S'unknown date\n' +p195858 +sg25268 +S'The Beam Trawler' +p195859 +sg25270 +S'Ella Fillmore Lillie' +p195860 +sa(dp195861 +g25273 +S'lithograph' +p195862 +sg25267 +g27 +sg25275 +S'unknown date\n' +p195863 +sg25268 +S'Coon in the Corn Patch' +p195864 +sg25270 +S'Ella Fillmore Lillie' +p195865 +sa(dp195866 +g25273 +S'lithograph' +p195867 +sg25267 +g27 +sg25275 +S'unknown date\n' +p195868 +sg25268 +S'Guanajuato, Mexico' +p195869 +sg25270 +S'Ella Fillmore Lillie' +p195870 +sa(dp195871 +g25273 +S'lithograph' +p195872 +sg25267 +g27 +sg25275 +S'unknown date\n' +p195873 +sg25268 +S'Marblehead' +p195874 +sg25270 +S'Ella Fillmore Lillie' +p195875 +sa(dp195876 +g25273 +S'lithograph' +p195877 +sg25267 +g27 +sg25275 +S'unknown date\n' +p195878 +sg25268 +S'Night (Eads Bridge, St. Louis, Missouri)' +p195879 +sg25270 +S'Ella Fillmore Lillie' +p195880 +sa(dp195881 +g25273 +S'lithograph' +p195882 +sg25267 +g27 +sg25275 +S'unknown date\n' +p195883 +sg25268 +S'Old Wood' +p195884 +sg25270 +S'Ella Fillmore Lillie' +p195885 +sa(dp195886 +g25273 +S'lithograph' +p195887 +sg25267 +g27 +sg25275 +S'unknown date\n' +p195888 +sg25268 +S'Siamese Oak, Sea Island' +p195889 +sg25270 +S'Ella Fillmore Lillie' +p195890 +sa(dp195891 +g25273 +S'lithograph' +p195892 +sg25267 +g27 +sg25275 +S'unknown date\n' +p195893 +sg25268 +S'Tabby Ruins, Retreat Plantation' +p195894 +sg25270 +S'Ella Fillmore Lillie' +p195895 +sa(dp195896 +g25273 +S'lithograph' +p195897 +sg25267 +g27 +sg25275 +S'unknown date\n' +p195898 +sg25268 +S'The Trespasser' +p195899 +sg25270 +S'Ella Fillmore Lillie' +p195900 +sa(dp195901 +g25273 +S'wood engraving' +p195902 +sg25267 +g27 +sg25275 +S'1821' +p195903 +sg25268 +S'Thenot and Colinet Lead their Flocks Together' +p195904 +sg25270 +S'William Blake' +p195905 +sa(dp195906 +g25273 +S'lithograph' +p195907 +sg25267 +g27 +sg25275 +S'unknown date\n' +p195908 +sg25268 +S'Vermont' +p195909 +sg25270 +S'Ella Fillmore Lillie' +p195910 +sa(dp195911 +g25268 +S'Artist Drawing a Man in Turkish Dress' +p195912 +sg25270 +S'Pierre-Nolasque Bergeret' +p195913 +sg25273 +S'etching' +p195914 +sg25275 +S'1819' +p195915 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00090/a0009042.jpg' +p195916 +sg25267 +g27 +sa(dp195917 +g25268 +S'Cardinal de Polignac' +p195918 +sg25270 +S'Artist Information (' +p195919 +sg25273 +S'(artist after)' +p195920 +sg25275 +S'\n' +p195921 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096b3.jpg' +p195922 +sg25267 +g27 +sa(dp195923 +g25268 +S'Saint Bartholomew' +p195924 +sg25270 +S'Albrecht D\xc3\xbcrer' +p195925 +sg25273 +S'engraving' +p195926 +sg25275 +S'1523' +p195927 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a90b.jpg' +p195928 +sg25267 +g27 +sa(dp195929 +g25268 +S'Love Scene from Act III of "Lohengrin"' +p195930 +sg25270 +S'Henri Fantin-Latour' +p195931 +sg25273 +S'lithograph' +p195932 +sg25275 +S'1886' +p195933 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095cf.jpg' +p195934 +sg25267 +g27 +sa(dp195935 +g25268 +S'Sieglinde and Siegmund from Act I of "The Valkyrie"' +p195936 +sg25270 +S'Henri Fantin-Latour' +p195937 +sg25273 +S'lithograph' +p195938 +sg25275 +S'unknown date\n' +p195939 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095d0.jpg' +p195940 +sg25267 +g27 +sa(dp195941 +g25268 +S'Maria Cecilia Louisa Cosway' +p195942 +sg25270 +S'Artist Information (' +p195943 +sg25273 +S'(artist after)' +p195944 +sg25275 +S'\n' +p195945 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078b8.jpg' +p195946 +sg25267 +g27 +sa(dp195947 +g25268 +S'Old Chelsea (Old Chelsea Church)' +p195948 +sg25270 +S'Francis Seymour Haden' +p195949 +sg25273 +S'etching and drypoint' +p195950 +sg25275 +S'1865' +p195951 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007ddf.jpg' +p195952 +sg25267 +g27 +sa(dp195953 +g25268 +S'Breaking Up of the Agamemnon' +p195954 +sg25270 +S'Francis Seymour Haden' +p195955 +sg25273 +S'etching (copper) in dark brown' +p195956 +sg25275 +S'1870' +p195957 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c4d.jpg' +p195958 +sg25267 +g27 +sa(dp195959 +g25268 +S'Kensington Gardens (The Small Plate)' +p195960 +sg25270 +S'Francis Seymour Haden' +p195961 +sg25273 +S'etching with drypoint' +p195962 +sg25275 +S'1859' +p195963 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d2f.jpg' +p195964 +sg25267 +g27 +sa(dp195965 +g25273 +S'wood engraving' +p195966 +sg25267 +g27 +sg25275 +S'1821' +p195967 +sg25268 +S'Thenot and Colinet Eat their Evening Meal' +p195968 +sg25270 +S'William Blake' +p195969 +sa(dp195970 +g25268 +S'The Large Shepherdess (La grande bergere)' +p195971 +sg25270 +S'Jean-Fran\xc3\xa7ois Millet' +p195972 +sg25273 +S'etching' +p195973 +sg25275 +S'1862' +p195974 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d94.jpg' +p195975 +sg25267 +g27 +sa(dp195976 +g25268 +S'Union Square, Rainy Day' +p195977 +sg25270 +S'Joseph Pennell' +p195978 +sg25273 +S'etching' +p195979 +sg25275 +S'1904' +p195980 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b5b.jpg' +p195981 +sg25267 +g27 +sa(dp195982 +g25268 +S'The Persian' +p195983 +sg25270 +S'Artist Information (' +p195984 +sg25273 +S'(artist after)' +p195985 +sg25275 +S'\n' +p195986 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b331.jpg' +p195987 +sg25267 +g27 +sa(dp195988 +g25268 +S'Masouba' +p195989 +sg25270 +S'George Baer' +p195990 +sg25273 +S'oil on canvas' +p195991 +sg25275 +S'1927' +p195992 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000000e.jpg' +p195993 +sg25267 +g27 +sa(dp195994 +g25273 +S'oil on canvas' +p195995 +sg25267 +g27 +sg25275 +S'unknown date\n' +p195996 +sg25268 +S'Head of a Woman' +p195997 +sg25270 +S'Th\xc3\xa9r\xc3\xa8se Debains' +p195998 +sa(dp195999 +g25273 +S'oil on paper on canvas' +p196000 +sg25267 +g27 +sg25275 +S'unknown date\n' +p196001 +sg25268 +S'Moroccan Landscape' +p196002 +sg25270 +S'Edouard-Jacques Dufeu' +p196003 +sa(dp196004 +g25268 +S'Marina delle Torri' +p196005 +sg25270 +S'Artist Information (' +p196006 +sg25273 +S'Italian, 1615 - 1673' +p196007 +sg25275 +S'(artist after)' +p196008 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00051/a000517a.jpg' +p196009 +sg25267 +g27 +sa(dp196010 +g25273 +S'oil on canvas' +p196011 +sg25267 +g27 +sg25275 +S'unknown date\n' +p196012 +sg25268 +S'Jean Pierre, du Pre Clos' +p196013 +sg25270 +S'Madeleine Luka' +p196014 +sa(dp196015 +g25273 +S'oil on canvas' +p196016 +sg25267 +g27 +sg25275 +S'unknown date\n' +p196017 +sg25268 +S'Still Life: Flowers' +p196018 +sg25270 +S'Henri de Saint-Jean' +p196019 +sa(dp196020 +g25268 +S'Study of a Model' +p196021 +sg25270 +S'Alfred Stevens' +p196022 +sg25273 +S'oil on wood' +p196023 +sg25275 +S'unknown date\n' +p196024 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005c/a0005cd1.jpg' +p196025 +sg25267 +g27 +sa(dp196026 +g25273 +S'wood engraving' +p196027 +sg25267 +g27 +sg25275 +S'1821' +p196028 +sg25268 +S'Boy Returning Joyfully with Plough and Oxen' +p196029 +sg25270 +S'William Blake' +p196030 +sa(dp196031 +g25273 +S'oil on canvas' +p196032 +sg25267 +g27 +sg25275 +S'unknown date\n' +p196033 +sg25268 +S'Portrait of an Old Woman' +p196034 +sg25270 +S'L. de Vuillemin' +p196035 +sa(dp196036 +g25273 +S'oil on canvas' +p196037 +sg25267 +g27 +sg25275 +S'1849' +p196038 +sg25268 +S'Portrait of a Young Woman' +p196039 +sg25270 +S'L. de Vuillemin' +p196040 +sa(dp196041 +g25268 +S'The Nun' +p196042 +sg25270 +S'Eug\xc3\xa8ne Zak' +p196043 +sg25273 +S'oil on canvas' +p196044 +sg25275 +S'unknown date\n' +p196045 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000eed.jpg' +p196046 +sg25267 +g27 +sa(dp196047 +g25273 +S'watercolor over graphite and black chalk on paperboard' +p196048 +sg25267 +g27 +sg25275 +S'unknown date\n' +p196049 +sg25268 +S'Young Girl Praying' +p196050 +sg25270 +S'Eug\xc3\xa8ne Zak' +p196051 +sa(dp196052 +g25268 +S'Elizabeth Throckmorton, Canoness of the Order of the Dames Augustines Anglaises' +p196053 +sg25270 +S'Nicolas de Largillierre' +p196054 +sg25273 +S'oil on canvas' +p196055 +sg25275 +S'1729' +p196056 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d86.jpg' +p196057 +sg25267 +S"During Largillière's long life portraiture evolved to satisfy new \r\n patrons from the wealthy bourgeoisie. Elizabeth Throckmorton was an English \r\n Catholic whose family left England rather than acknowledge its Protestant \r\n church. She entered an Augustinian house in Paris and served twice as \r\n Mother Superior before her death in 1760. Largillière's great facility \r\n with color shows in the complex pleats of her robe, the transparency of her \r\n dark veil, and the delicacy of her complexion. The fragile hues and soft \r\n atmosphere complement her calm beauty.\n " +p196058 +sa(dp196059 +g25268 +S"Carlo and Ubaldo Resisting the Enchantments of Armida's Nymphs" +p196060 +sg25270 +S'Artist Information (' +p196061 +sg25273 +S'(artist)' +p196062 +sg25275 +S'\n' +p196063 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000060e.jpg' +p196064 +sg25267 +g27 +sa(dp196065 +g25268 +S'Erminia and the Shepherds' +p196066 +sg25270 +S'Artist Information (' +p196067 +sg25273 +S'(artist)' +p196068 +sg25275 +S'\n' +p196069 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a000060f.jpg' +p196070 +sg25267 +g27 +sa(dp196071 +g25268 +S'Winter Harmony' +p196072 +sg25270 +S'John Henry Twachtman' +p196073 +sg25273 +S'oil on canvas' +p196074 +sg25275 +S'c. 1890/1900' +p196075 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000280.jpg' +p196076 +sg25267 +S'A native of Cincinnati who had studied in Munich and Venice, John\r\n Twachtman moved his family to a farm near Greenwich, Connecticut, within\r\n commuting distance of his teaching job in Manhattan. In two purchases of\r\n March 1890 and December 1891, he acquired more than sixteen acres,\r\n including the rocky bed of Horseneck Brook that opens into a quiet pond\r\n surrounded by a grove of hemlock trees. Shortly after signing the mortgage,\r\n he wrote to a fellow artist, "I can see now how necessary it is to live\r\n always in the country—at all seasons of the year. We must have snow and lots\r\n of it. Never is nature more lovely than when it is snowing. . . . That\r\n feeling of quiet and all nature is hushed to silence."\n Winter Harmony\n ' +p196077 +sa(dp196078 +g25268 +S'Captain Samuel Chandler' +p196079 +sg25270 +S'Winthrop Chandler' +p196080 +sg25273 +S'oil on canvas' +p196081 +sg25275 +S'c. 1780' +p196082 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000049.jpg' +p196083 +sg25267 +S'Although most colonial artists traveled to find patrons, Winthrop Chandler centered\nhis career around his native Woodstock, Connecticut. At first, he called himself\na "painter," and several of his surviving works are decorative landscapes to adorn\nthe paneling over mantelpieces. By the later 1780s, though, Winthrop Chandler referred\nto his profession as that of "limner," implying that he now primarily made portraits.\n Captain Samuel Chandler\n The careful delineation of these objects gives them an importance almost equal to\nthe forthright portrayal of the captain\'s stern countenance. As with many essentially\nself-taught artists, Winthrop Chandler compensated for his lack of expertise in\nanatomy and perspective by creating superbly integrated designs. The repeated ranks\nof horsemen in the landscape, for instance, form patterns that effectively reiterate\nthe uniform\'s rows of buttons; and the rippling curves of cuffs, cravat, and tricorn\nhat play against the straight lines of sword, furniture legs, and window frame.\n ' +p196084 +sa(dp196085 +g25268 +S'Mrs. Samuel Chandler' +p196086 +sg25270 +S'Winthrop Chandler' +p196087 +sg25273 +S'oil on canvas' +p196088 +sg25275 +S'c. 1780' +p196089 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000004a.jpg' +p196090 +sg25267 +g27 +sa(dp196091 +g25273 +S'wood engraving' +p196092 +sg25267 +g27 +sg25275 +S'1821' +p196093 +sg25268 +S'Return of the Shepherd' +p196094 +sg25270 +S'William Blake' +p196095 +sa(dp196096 +g25268 +S'"He Turned Their Waters into Blood"' +p196097 +sg25270 +S'Erastus Salisbury Field' +p196098 +sg25273 +S'oil on canvas' +p196099 +sg25275 +S'c. 1865/1880' +p196100 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000b6.jpg' +p196101 +sg25267 +g27 +sa(dp196102 +g25268 +S'The Cornell Farm' +p196103 +sg25270 +S'Edward Hicks' +p196104 +sg25273 +S'oil on canvas' +p196105 +sg25275 +S'1848' +p196106 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000f7.jpg' +p196107 +sg25267 +S'Edward Hicks, having apprenticed to a Pennsylvania coachmaker at thirteen, became\na minister in 1811. He was torn between his calling as a Quaker minister and his\nlove of painting, worrying that his art kept him from "the Lord\'s work."\n Hicks precisely identified this subject with a long inscription along the bottom\nof the canvas: "An Indian summer view of the Farm & Stock OF JAMES C. CORNELL of\nNorthampton Bucks county Pennsylvania. That took the Premium in the Agricultural\nsociety, October the 12, 1848 Painted by E. Hicks in the 69th year of his age."\nThough the punctuation and capitalization are inconsistent, the quality of the lettering\nproves that Edward Hicks was schooled in sign painting.\n Having no background in academic art, Hicks employed the direct approach of a primitive\nor folk painter. The horizontal band of livestock across the foreground, although\nchildlike in its simplicity, clearly presents each prize-winning animal as an individual\nportrait. Hicks\' delight in creating ornamental pattern is evident in the arrangement\nof fences, while the rich red and bright white of the house and barn symmetrically\nflank this central landscape. Although the stark silhouettes of figures and buildings\nseem naive, Hicks softly blended his paints over the orchard to give the impression\nof space existing well beyond what the eye can see.\n ' +p196108 +sa(dp196109 +g25273 +S'overall: 58 x 43 cm (22 13/16 x 16 15/16 in.)\r\nframed: 71.1 x 55.8 x 3.4 cm (28 x 21 15/16 x 1 5/16 in.)' +p196110 +sg25267 +g27 +sg25275 +S'\ntinsel painting on glass' +p196111 +sg25268 +S'Vase of Lilies' +p196112 +sg25270 +S'American 20th Century' +p196113 +sa(dp196114 +g25268 +S'Watermelon' +p196115 +sg25270 +S'American 19th Century' +p196116 +sg25273 +S'overall: 35.5 x 45.7 cm (14 x 18 in.)\r\nframed: 39 x 49.5 cm (15 3/8 x 19 1/2 in.)' +p196117 +sg25275 +S'\nreverse painting on glass' +p196118 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000460.jpg' +p196119 +sg25267 +g27 +sa(dp196120 +g25268 +S'Dr. Samuel Boude' +p196121 +sg25270 +S'Benjamin West' +p196122 +sg25273 +S'oil on canvas' +p196123 +sg25275 +S'1755/1756' +p196124 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000296.jpg' +p196125 +sg25267 +g27 +sa(dp196126 +g25268 +S'Mary Bethel Boude (Mrs. Samuel Boude)' +p196127 +sg25270 +S'Benjamin West' +p196128 +sg25273 +S'oil on canvas' +p196129 +sg25275 +S'1755/1756' +p196130 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000297.jpg' +p196131 +sg25267 +g27 +sa(dp196132 +g25273 +S'American, 1783 - 1872' +p196133 +sg25267 +g27 +sg25275 +S'(related artist)' +p196134 +sg25268 +S'"Sarah Jane Mellon"' +p196135 +sg25270 +S'Artist Information (' +p196136 +sa(dp196137 +g25273 +S'American, 1783 - 1872' +p196138 +sg25267 +g27 +sg25275 +S'(related artist)' +p196139 +sg25268 +S'"Thomas Mellon"' +p196140 +sg25270 +S'Artist Information (' +p196141 +sa(dp196142 +g25268 +S'Andrew W. Mellon' +p196143 +sg25270 +S'Artist Information (' +p196144 +sg25273 +S'American, 1783 - 1872' +p196145 +sg25275 +S'(related artist)' +p196146 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4ca.jpg' +p196147 +sg25267 +g27 +sa(dp196148 +g25268 +S'Sarah Jane Mellon' +p196149 +sg25270 +S'Artist Information (' +p196150 +sg25273 +S'American, 1783 - 1872' +p196151 +sg25275 +S'(related artist)' +p196152 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4ce.jpg' +p196153 +sg25267 +g27 +sa(dp196154 +g25268 +S'The Pastorals of Virgil' +p196155 +sg25270 +S'William Blake' +p196156 +sg25273 +S'wood engraving (4 proofs on uncut sheet)' +p196157 +sg25275 +S'1821' +p196158 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076e1.jpg' +p196159 +sg25267 +g27 +sa(dp196160 +g25268 +S'Son of Thomas Mellon' +p196161 +sg25270 +S'Artist Information (' +p196162 +sg25273 +S'American, 1783 - 1872' +p196163 +sg25275 +S'(related artist)' +p196164 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4cb.jpg' +p196165 +sg25267 +g27 +sa(dp196166 +g25268 +S'Thomas Mellon' +p196167 +sg25270 +S'Artist Information (' +p196168 +sg25273 +S'American, 1783 - 1872' +p196169 +sg25275 +S'(related artist)' +p196170 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4cf.jpg' +p196171 +sg25267 +g27 +sa(dp196172 +g25273 +S'overall: 22.5 x 49.9 x 20 cm (8 7/8 x 19 5/8 x 7 7/8 in.)' +p196173 +sg25267 +g27 +sg25275 +S'\nmarble and gilt bronze' +p196174 +sg25268 +S'Marble and Gilt Bronze Pen and Ink Stand with Eagle Decoration' +p196175 +sg25270 +S'French 19th Century' +p196176 +sa(dp196177 +g25268 +S'The Pastorals of Virgil' +p196178 +sg25270 +S'William Blake' +p196179 +sg25273 +S'wood engraving (4 proofs on uncut sheet)' +p196180 +sg25275 +S'1821' +p196181 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076e0.jpg' +p196182 +sg25267 +g27 +sa(dp196183 +g25268 +S'The Assumption of the Virgin' +p196184 +sg25270 +S'Michel Sittow' +p196185 +sg25273 +S'oil on panel' +p196186 +sg25275 +S'c. 1500' +p196187 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005a2.jpg' +p196188 +sg25267 +g27 +sa(dp196189 +g25268 +S'Rio de Janeiro Bay' +p196190 +sg25270 +S'Martin Johnson Heade' +p196191 +sg25273 +S'oil on canvas' +p196192 +sg25275 +S'1864' +p196193 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000e9.jpg' +p196194 +sg25267 +g27 +sa(dp196195 +g25273 +S'color etching and mixed techniques' +p196196 +sg25267 +g27 +sg25275 +S'1963' +p196197 +sg25268 +S'Wind' +p196198 +sg25270 +S'Mikhail Gordeevich Deregus' +p196199 +sa(dp196200 +g25273 +S'color linoleum cut' +p196201 +sg25267 +g27 +sg25275 +S'1960' +p196202 +sg25268 +S'A Silent Ukrainian Night' +p196203 +sg25270 +S'Ivan Mykhailovych Selivanov' +p196204 +sa(dp196205 +g25273 +S'wood engraving' +p196206 +sg25267 +g27 +sg25275 +S'1959' +p196207 +sg25268 +S'High Water' +p196208 +sg25270 +S'B. Masik' +p196209 +sa(dp196210 +g25273 +S'color linoleum cut' +p196211 +sg25267 +g27 +sg25275 +S'unknown date\n' +p196212 +sg25268 +S"Chekov's Spirit" +p196213 +sg25270 +S'A. Nimenko' +p196214 +sa(dp196215 +g25273 +S'Gift of the Ukrainian Art Academy' +p196216 +sg25267 +g27 +sg25275 +S'\ncolor etching and aquatint in dark green' +p196217 +sg25268 +S'Twilight Rain in Red Square' +p196218 +sg25270 +S'Russian 20th Century' +p196219 +sa(dp196220 +g25273 +S'color linoleum cut' +p196221 +sg25267 +g27 +sg25275 +S'1963' +p196222 +sg25268 +S'Kiev Festival' +p196223 +sg25270 +S'Ivan Vasilevich Batechko' +p196224 +sa(dp196225 +g25273 +S'color linoleum cut' +p196226 +sg25267 +g27 +sg25275 +S'1962' +p196227 +sg25268 +S'Cottage in the Winter Sun' +p196228 +sg25270 +S'Ivan Vasilevich Batechko' +p196229 +sa(dp196230 +g25273 +S'bronze' +p196231 +sg25267 +g27 +sg25275 +S'1918/1928' +p196232 +sg25268 +S'Venus' +p196233 +sg25270 +S'Aristide Maillol' +p196234 +sa(dp196235 +g25268 +S'Restrike from fragment of cancelled plate for"A Prophecy"' +p196236 +sg25270 +S'William Blake' +p196237 +sg25273 +S'relief etching//restrike' +p196238 +sg25275 +S'1793' +p196239 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007650.jpg' +p196240 +sg25267 +g27 +sa(dp196241 +g25268 +S'Standing Woman' +p196242 +sg25270 +S'Wilhelm Lehmbruck' +p196243 +sg25273 +S'bronze' +p196244 +sg25275 +S'1910' +p196245 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000555d.jpg' +p196246 +sg25267 +g27 +sa(dp196247 +g25268 +S'Eleazer Tyng' +p196248 +sg25270 +S'John Singleton Copley' +p196249 +sg25273 +S'oil on canvas' +p196250 +sg25275 +S'1772' +p196251 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000061.jpg' +p196252 +sg25267 +S'Copley excelled at portraying elderly men, as with this penetrating \r\n likeness of an eighty-two-year-old legislator and former frontier soldier \r\n from Tyngsborough, Massachusetts. Eleazer Tyng (1690-1782), sitting \r\n comfortably in a Windsor armchair, turns to greet the viewer. His \r\n appraising face and rugged hands are highlighted by a golden glow.\n ' +p196253 +sa(dp196254 +g25268 +S'The Wife of Hasdrubal and Her Children' +p196255 +sg25270 +S"Ercole de' Roberti" +p196256 +sg25273 +S'tempera on panel' +p196257 +sg25275 +S'c. 1490/1493' +p196258 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007c6.jpg' +p196259 +sg25267 +g27 +sa(dp196260 +g25268 +S'Portrait of a Man' +p196261 +sg25270 +S'Corneille de Lyon' +p196262 +sg25273 +S'oil on walnut' +p196263 +sg25275 +S'c. 1536/1540' +p196264 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d64.jpg' +p196265 +sg25267 +S'Corneille was born in the Netherlands and possibly received his training in Antwerp, but by the 1530s he was in Lyons, where he became the dominant court portraitist of the French Renaissance. He was made a French citizen by Henry II and converted to Catholicism in 1546, presumably to preserve favor with his royal patrons.\n In Lyons artists were free of many guild restrictions that controlled trade elsewhere. There were, for example, art sellers who acted independently of any master’s workshop—true commercial galleries. Corneille himself seems to have had a studio where the public could buy workshop copies of his royal portraits. He also accepted commissions from families engaged in the city’s busy printing and silk industries. Inventories show that even people of modest means owned paintings.\n This man wears the dress of an academic or a Franciscan monk, but his identity is otherwise unknown. The vivid blue-green of the plain background and its contrast with the careful detail in the face lend intensity and presence to his portrait despite its small size. The minute brushstrokes that pick out individual hairs in the man’s beard and the smooth finish of the surface are evidence of Corneille’s training in the north. The rare frame, which is contemporary with the painting, on the other hand, reflects Italian Renaissance architecture. It is the blending of such northern and southern elements that characterizes French art in the mid-1500s.\n ' +p196266 +sa(dp196267 +g25273 +S'lithograph in black' +p196268 +sg25267 +g27 +sg25275 +S'1832' +p196269 +sg25268 +S'Salt Water Marsh Hen' +p196270 +sg25270 +S'John James Audubon' +p196271 +sa(dp196272 +g25268 +S'Peaceful Valley' +p196273 +sg25270 +S'Alexander Helwig Wyant' +p196274 +sg25273 +S'oil on canvas' +p196275 +sg25275 +S'c. 1872' +p196276 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000012c.jpg' +p196277 +sg25267 +g27 +sa(dp196278 +g25268 +S'Merry-Go-Round' +p196279 +sg25270 +S'Reginald Marsh' +p196280 +sg25273 +S'watercolor and black crayon on wove paper' +p196281 +sg25275 +S'1940' +p196282 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000974.jpg' +p196283 +sg25267 +g27 +sa(dp196284 +g25268 +S'The Veil of Cupids' +p196285 +sg25270 +S'French 18th Century' +p196286 +sg25273 +S'Overall: 37.7 x 51 cm (14 13/16 x 20 1/16 in.)\r\nsupport: 39.5 x 55 cm (15 9/16 x 21 5/8 in.)' +p196287 +sg25275 +S'\nred-brown chalk' +p196288 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f61.jpg' +p196289 +sg25267 +g27 +sa(dp196290 +g25268 +S"Daniel in the Lions' Den" +p196291 +sg25270 +S'Sir Peter Paul Rubens' +p196292 +sg25273 +S'oil on canvas' +p196293 +sg25275 +S'c. 1614/1616' +p196294 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e46.jpg' +p196295 +sg25267 +S"The Old Testament Book of Daniel recounts how the biblical hero was condemned to spend the night in the lions' den for worshipping God rather than the Persian king Darius. Depicted here is the following morning when, after the stone sealing the entrance was rolled away, Daniel gives to God for having survived the night safely. For theologians, the image of Daniel being freed from the cave symbolized the resurrection of Christ from the sepulcher.\n Rubens masterfully combined realism and theatricality in order to produce a strong emotional impact. Several of the lions, for instance, stare directly at the viewer, creating a suggestion that the spectator shares the same space as the lions, and thus, like Daniel, experiences the same menace of the savage predators. This immediacy is heightened by the fact that the beasts are portrayed full size on the huge canvas and depicted with convincing realism. The lifelike movement of the lions and their superbly rendered fur results from Rubens' direct observation and sketches made in the royal menagerie in Brussels. Complementing this veracity is the dramatic lighting and the exaggerated emotionalism of Daniel's prayerful pose.\n " +p196296 +sa(dp196297 +g25268 +S'El Rio de Luz (The River of Light)' +p196298 +sg25270 +S'Frederic Edwin Church' +p196299 +sg25273 +S'oil on canvas' +p196300 +sg25275 +S'1877' +p196301 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000004e.jpg' +p196302 +sg25267 +S'Like his teacher, Thomas Cole, Church conveyed a sense of awesome sublimity in his landscapes by celebrating the seemingly infinite wonders of the natural world. The artist devoted a great deal of time to scientific study, believing that a knowledge of optics, meteorology, botany, and ecology would greatly enhance his work. After reading the journalistic accounts of the German naturalist, Alexander von Humboldt, Church explored wilderness regions from the arctic to the equator.\n El Rio de Luz (The River of Light)\n ' +p196303 +sa(dp196304 +g25273 +S'(artist after)' +p196305 +sg25267 +g27 +sg25275 +S'\n' +p196306 +sg25268 +S'Liber de picturae genere' +p196307 +sg25270 +S'Artist Information (' +p196308 +sa(dp196309 +g25268 +S'Mr. Pease' +p196310 +sg25270 +S'Erastus Salisbury Field' +p196311 +sg25273 +S'oil on canvas' +p196312 +sg25275 +S'c. 1837' +p196313 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000b7.jpg' +p196314 +sg25267 +g27 +sa(dp196315 +g25268 +S'Mrs. Harlow A. Pease' +p196316 +sg25270 +S'Erastus Salisbury Field' +p196317 +sg25273 +S'oil on canvas' +p196318 +sg25275 +S'c. 1837' +p196319 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000b8.jpg' +p196320 +sg25267 +g27 +sa(dp196321 +g25268 +S"Ralph Wheelock's Farm" +p196322 +sg25270 +S'Francis Alexander' +p196323 +sg25273 +S'oil on canvas' +p196324 +sg25275 +S'c. 1822' +p196325 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000003.jpg' +p196326 +sg25267 +g27 +sa(dp196327 +g25268 +S'Connecticut Sea Captain' +p196328 +sg25270 +S'Isaac Sheffield' +p196329 +sg25273 +S'oil on wood' +p196330 +sg25275 +S'1833' +p196331 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000212.jpg' +p196332 +sg25267 +g27 +sa(dp196333 +g25268 +S"Connecticut Sea Captain's Wife" +p196334 +sg25270 +S'Isaac Sheffield' +p196335 +sg25273 +S'oil on wood' +p196336 +sg25275 +S'1833' +p196337 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000213.jpg' +p196338 +sg25267 +g27 +sa(dp196339 +g25268 +S'James Cuthbert (?)' +p196340 +sg25270 +S'Jeremiah Theus' +p196341 +sg25273 +S'oil on canvas' +p196342 +sg25275 +S'c. 1765' +p196343 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000272.jpg' +p196344 +sg25267 +g27 +sa(dp196345 +g25268 +S'Mary Cuthbert (Mrs. James Cuthbert) (?)' +p196346 +sg25270 +S'Jeremiah Theus' +p196347 +sg25273 +S'oil on canvas' +p196348 +sg25275 +S'c. 1765' +p196349 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000273.jpg' +p196350 +sg25267 +g27 +sa(dp196351 +g25268 +S'Dr. David Rogers' +p196352 +sg25270 +S'Ralph Earl' +p196353 +sg25273 +S'oil on canvas' +p196354 +sg25275 +S'1788' +p196355 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000009a.jpg' +p196356 +sg25267 +g27 +sa(dp196357 +g25268 +S'Martha Tennent Rogers (Mrs. David Rogers) and Her Son, probably Samuel Henry Rogers' +p196358 +sg25270 +S'Ralph Earl' +p196359 +sg25273 +S'oil on canvas' +p196360 +sg25275 +S'1788' +p196361 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000009b.jpg' +p196362 +sg25267 +g27 +sa(dp196363 +g25273 +S'oil on card mounted on paperboard' +p196364 +sg25267 +g27 +sg25275 +S'1861' +p196365 +sg25268 +S'Three Distinguished Warriors of the Sioux Tribe' +p196366 +sg25270 +S'George Catlin' +p196367 +sa(dp196368 +g25273 +S'(artist after)' +p196369 +sg25267 +g27 +sg25275 +S'\n' +p196370 +sg25268 +S'Christ in the Press' +p196371 +sg25270 +S'Artist Information (' +p196372 +sa(dp196373 +g25273 +S'oil on card mounted on paperboard' +p196374 +sg25267 +g27 +sg25275 +S'1861/1869' +p196375 +sg25268 +S'A Sioux Chief, His Daughter, and a Warrior' +p196376 +sg25270 +S'George Catlin' +p196377 +sa(dp196378 +g25273 +S'oil on card mounted on paperboard' +p196379 +sg25267 +g27 +sg25275 +S'1861/1869' +p196380 +sg25268 +S'The Sioux Chief with Several Indians' +p196381 +sg25270 +S'George Catlin' +p196382 +sa(dp196383 +g25268 +S'A Little Sioux Village' +p196384 +sg25270 +S'George Catlin' +p196385 +sg25273 +S'oil on card mounted on paperboard' +p196386 +sg25275 +S'1861/1869' +p196387 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c9f.jpg' +p196388 +sg25267 +g27 +sa(dp196389 +g25268 +S'Scalp Dance - Sioux' +p196390 +sg25270 +S'George Catlin' +p196391 +sg25273 +S'oil on card mounted on paperboard' +p196392 +sg25275 +S'1861' +p196393 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c1d.jpg' +p196394 +sg25267 +g27 +sa(dp196395 +g25268 +S'Dog Dance - Sioux' +p196396 +sg25270 +S'George Catlin' +p196397 +sg25273 +S'oil on card mounted on paperboard' +p196398 +sg25275 +S'1861' +p196399 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000ca9.jpg' +p196400 +sg25267 +g27 +sa(dp196401 +g25268 +S'Ball-Play of the Women - Sioux' +p196402 +sg25270 +S'George Catlin' +p196403 +sg25273 +S'oil on card mounted on paperboard' +p196404 +sg25275 +S'1861/1869' +p196405 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c23.jpg' +p196406 +sg25267 +g27 +sa(dp196407 +g25268 +S'A Dog Feast - Sioux' +p196408 +sg25270 +S'George Catlin' +p196409 +sg25273 +S'oil on card mounted on paperboard' +p196410 +sg25275 +S'1861/1869' +p196411 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c26.jpg' +p196412 +sg25267 +g27 +sa(dp196413 +g25273 +S'oil on card mounted on paperboard' +p196414 +sg25267 +g27 +sg25275 +S'1861/1869' +p196415 +sg25268 +S'Facsimile of a Sioux Robe with Porcupine Quills' +p196416 +sg25270 +S'George Catlin' +p196417 +sa(dp196418 +g25268 +S'Buffalo Chase, Sioux Indians, Upper Missouri' +p196419 +sg25270 +S'George Catlin' +p196420 +sg25273 +S'oil on card mounted on paperboard' +p196421 +sg25275 +S'1861/1869' +p196422 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000be8.jpg' +p196423 +sg25267 +g27 +sa(dp196424 +g25268 +S'After the Buffalo Chase - Sioux' +p196425 +sg25270 +S'George Catlin' +p196426 +sg25273 +S'oil on card mounted on paperboard' +p196427 +sg25275 +S'1861/1869' +p196428 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c37.jpg' +p196429 +sg25267 +g27 +sa(dp196430 +g25273 +S'(artist)' +p196431 +sg25267 +g27 +sg25275 +S'\n' +p196432 +sg25268 +S'The Passion' +p196433 +sg25270 +S'Artist Information (' +p196434 +sa(dp196435 +g25273 +S'oil on card mounted on paperboard' +p196436 +sg25267 +g27 +sg25275 +S'1861/1869' +p196437 +sg25268 +S'A Sioux Village' +p196438 +sg25270 +S'George Catlin' +p196439 +sa(dp196440 +g25268 +S"Halsey's Bluff - Sioux Indians on the March" +p196441 +sg25270 +S'George Catlin' +p196442 +sg25273 +S'oil on card mounted on paperboard' +p196443 +sg25275 +S'1861/1869' +p196444 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c46.jpg' +p196445 +sg25267 +g27 +sa(dp196446 +g25273 +S'oil on card mounted on paperboard' +p196447 +sg25267 +g27 +sg25275 +S'1861/1869' +p196448 +sg25268 +S'Sioux Village - Lac du Cygne' +p196449 +sg25270 +S'George Catlin' +p196450 +sa(dp196451 +g25268 +S'A Sioux War Party' +p196452 +sg25270 +S'George Catlin' +p196453 +sg25273 +S'oil on card mounted on paperboard' +p196454 +sg25275 +S'1861/1869' +p196455 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c4f.jpg' +p196456 +sg25267 +g27 +sa(dp196457 +g25268 +S'Bivouac of a Sioux War Party' +p196458 +sg25270 +S'George Catlin' +p196459 +sg25273 +S'oil on card mounted on paperboard' +p196460 +sg25275 +S'1861/1869' +p196461 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c56.jpg' +p196462 +sg25267 +g27 +sa(dp196463 +g25268 +S'Amusing Dance - Sioux' +p196464 +sg25270 +S'George Catlin' +p196465 +sg25273 +S'oil on card mounted on paperboard' +p196466 +sg25275 +S'1861/1869' +p196467 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c61.jpg' +p196468 +sg25267 +g27 +sa(dp196469 +g25273 +S'oil on card mounted on paperboard' +p196470 +sg25267 +g27 +sg25275 +S'1861/1869' +p196471 +sg25268 +S'Bivouac of a Sioux War Party at Sunrise' +p196472 +sg25270 +S'George Catlin' +p196473 +sa(dp196474 +g25268 +S'Crow Chief, His Wife, and a Warrior' +p196475 +sg25270 +S'George Catlin' +p196476 +sg25273 +S'oil on card mounted on paperboard' +p196477 +sg25275 +S'1861/1869' +p196478 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c6a.jpg' +p196479 +sg25267 +g27 +sa(dp196480 +g25268 +S'Distinguished Crow Indians' +p196481 +sg25270 +S'George Catlin' +p196482 +sg25273 +S'oil on card mounted on paperboard' +p196483 +sg25275 +S'1861/1869' +p196484 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c71.jpg' +p196485 +sg25267 +g27 +sa(dp196486 +g25273 +S'oil on card mounted on paperboard' +p196487 +sg25267 +g27 +sg25275 +S'1855/1869' +p196488 +sg25268 +S'A Crow Chief, a Warrior, and His Wife' +p196489 +sg25270 +S'George Catlin' +p196490 +sa(dp196491 +g25273 +S'(artist after)' +p196492 +sg25267 +g27 +sg25275 +S'\n' +p196493 +sg25268 +S'The Last Supper' +p196494 +sg25270 +S'Artist Information (' +p196495 +sa(dp196496 +g25268 +S'A Crow Chief at His Toilette' +p196497 +sg25270 +S'George Catlin' +p196498 +sg25273 +S'oil on card mounted on paperboard' +p196499 +sg25275 +S'1861/1869' +p196500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c05.jpg' +p196501 +sg25267 +g27 +sa(dp196502 +g25268 +S'Crow Warriors Bathing' +p196503 +sg25270 +S'George Catlin' +p196504 +sg25273 +S'oil on card mounted on paperboard' +p196505 +sg25275 +S'1861/1869' +p196506 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c7f.jpg' +p196507 +sg25267 +g27 +sa(dp196508 +g25268 +S'A Crow Village on the Salmon River' +p196509 +sg25270 +S'George Catlin' +p196510 +sg25273 +S'oil on card mounted on paperboard' +p196511 +sg25275 +S'1855/1869' +p196512 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c0b.jpg' +p196513 +sg25267 +g27 +sa(dp196514 +g25268 +S'A Crow Village and the Salmon River Mountains' +p196515 +sg25270 +S'George Catlin' +p196516 +sg25273 +S'oil on card mounted on paperboard' +p196517 +sg25275 +S'1855/1869' +p196518 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c0c.jpg' +p196519 +sg25267 +g27 +sa(dp196520 +g25268 +S'A Small Crow Village' +p196521 +sg25270 +S'George Catlin' +p196522 +sg25273 +S'oil on card mounted on paperboard' +p196523 +sg25275 +S'1855/1869' +p196524 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f64.jpg' +p196525 +sg25267 +g27 +sa(dp196526 +g25268 +S'Two Blackfoot Warriors and a Woman' +p196527 +sg25270 +S'George Catlin' +p196528 +sg25273 +S'oil on card mounted on paperboard' +p196529 +sg25275 +S'1861/1869' +p196530 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c8c.jpg' +p196531 +sg25267 +g27 +sa(dp196532 +g25273 +S'oil on card mounted on paperboard' +p196533 +sg25267 +g27 +sg25275 +S'1861/1869' +p196534 +sg25268 +S'A Blackfoot Chief, His Wife, and a Medicine Man' +p196535 +sg25270 +S'George Catlin' +p196536 +sa(dp196537 +g25268 +S'Three Blackfoot Men' +p196538 +sg25270 +S'George Catlin' +p196539 +sg25273 +S'oil on card mounted on paperboard' +p196540 +sg25275 +S'1855/1869' +p196541 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c8f.jpg' +p196542 +sg25267 +g27 +sa(dp196543 +g25268 +S'Arapaho Chief, His Wife, and a Warrior' +p196544 +sg25270 +S'George Catlin' +p196545 +sg25273 +S'oil on card mounted on paperboard' +p196546 +sg25275 +S'1861/1869' +p196547 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c92.jpg' +p196548 +sg25267 +g27 +sa(dp196549 +g25268 +S'Two Arapaho Warriors and a Woman' +p196550 +sg25270 +S'George Catlin' +p196551 +sg25273 +S'oil on card mounted on paperboard' +p196552 +sg25275 +S'1861/1869' +p196553 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c94.jpg' +p196554 +sg25267 +g27 +sa(dp196555 +g25273 +S'(artist after)' +p196556 +sg25267 +g27 +sg25275 +S'\n' +p196557 +sg25268 +S'Christ on the Mount of Olives' +p196558 +sg25270 +S'Artist Information (' +p196559 +sa(dp196560 +g25268 +S'Assinneboine Warrior and His Family' +p196561 +sg25270 +S'George Catlin' +p196562 +sg25273 +S'oil on card mounted on paperboard' +p196563 +sg25275 +S'1861/1869' +p196564 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c97.jpg' +p196565 +sg25267 +g27 +sa(dp196566 +g25268 +S'Assinneboine Chief before and after Civilization' +p196567 +sg25270 +S'George Catlin' +p196568 +sg25273 +S'oil on card mounted on paperboard' +p196569 +sg25275 +S'1861/1869' +p196570 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c98.jpg' +p196571 +sg25267 +g27 +sa(dp196572 +g25273 +S'oil on card mounted on paperboard' +p196573 +sg25267 +g27 +sg25275 +S'1855/1869' +p196574 +sg25268 +S'Two Nezperce Warriors and a Boy' +p196575 +sg25270 +S'George Catlin' +p196576 +sa(dp196577 +g25268 +S'Antelope Shooting - Assinneboine' +p196578 +sg25270 +S'George Catlin' +p196579 +sg25273 +S'oil on canvas' +p196580 +sg25275 +S'1861/1869' +p196581 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c1a.jpg' +p196582 +sg25267 +g27 +sa(dp196583 +g25273 +S'oil on card mounted on paperboard' +p196584 +sg25267 +g27 +sg25275 +S'1861/1869' +p196585 +sg25268 +S'A Cheyenne Chief, His Wife, and a Medicine Man' +p196586 +sg25270 +S'George Catlin' +p196587 +sa(dp196588 +g25273 +S'oil on card mounted on paperboard' +p196589 +sg25267 +g27 +sg25275 +S'1861/1869' +p196590 +sg25268 +S'Three Cheyenne Warriors' +p196591 +sg25270 +S'George Catlin' +p196592 +sa(dp196593 +g25268 +S'Cheyenne Village' +p196594 +sg25270 +S'George Catlin' +p196595 +sg25273 +S'oil on card mounted on paperboard' +p196596 +sg25275 +S'1861/1869' +p196597 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c9e.jpg' +p196598 +sg25267 +g27 +sa(dp196599 +g25273 +S'oil on card mounted on paperboard' +p196600 +sg25267 +g27 +sg25275 +S'1861/1869' +p196601 +sg25268 +S'A Cheyenne Warrior Resting His Horse' +p196602 +sg25270 +S'George Catlin' +p196603 +sa(dp196604 +g25268 +S'Facsimile of a Cheyenne Robe' +p196605 +sg25270 +S'George Catlin' +p196606 +sg25273 +S'oil on card mounted on paperboard' +p196607 +sg25275 +S'1861/1869' +p196608 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000ca0.jpg' +p196609 +sg25267 +g27 +sa(dp196610 +g25268 +S'A Small Cheyenne Village' +p196611 +sg25270 +S'George Catlin' +p196612 +sg25273 +S'oil on card mounted on paperboard' +p196613 +sg25275 +S'1861/1869' +p196614 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c1b.jpg' +p196615 +sg25267 +g27 +sa(dp196616 +g25273 +S'(artist after)' +p196617 +sg25267 +g27 +sg25275 +S'\n' +p196618 +sg25268 +S'The Treason of Judas' +p196619 +sg25270 +S'Artist Information (' +p196620 +sa(dp196621 +g25268 +S'The Cheyenne Brothers Starting on Their Fall Hunt' +p196622 +sg25270 +S'George Catlin' +p196623 +sg25273 +S'oil on card mounted on paperboard' +p196624 +sg25275 +S'1861/1869' +p196625 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c1c.jpg' +p196626 +sg25267 +g27 +sa(dp196627 +g25268 +S'The Cheyenne Brothers Returning from Their Fall Hunt' +p196628 +sg25270 +S'George Catlin' +p196629 +sg25273 +S'oil on card mounted on paperboard' +p196630 +sg25275 +S'1861/1869' +p196631 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000ca1.jpg' +p196632 +sg25267 +g27 +sa(dp196633 +g25268 +S'Four Kiowa Indians' +p196634 +sg25270 +S'George Catlin' +p196635 +sg25273 +S'oil on card mounted on paperboard' +p196636 +sg25275 +S'1861/1869' +p196637 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000ca2.jpg' +p196638 +sg25267 +g27 +sa(dp196639 +g25268 +S'Kiowa Chief, His Wife, and Two Warriors' +p196640 +sg25270 +S'George Catlin' +p196641 +sg25273 +S'oil on card mounted on paperboard' +p196642 +sg25275 +S'1861/1869' +p196643 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000ca3.jpg' +p196644 +sg25267 +g27 +sa(dp196645 +g25268 +S'Kiowa Indians Gathering Wild Grapes' +p196646 +sg25270 +S'George Catlin' +p196647 +sg25273 +S'oil on card mounted on paperboard' +p196648 +sg25275 +S'1861/1869' +p196649 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000ca4.jpg' +p196650 +sg25267 +g27 +sa(dp196651 +g25273 +S'oil on card mounted on paperboard' +p196652 +sg25267 +g27 +sg25275 +S'1861' +p196653 +sg25268 +S'Camanchee Chief, His Wife, and a Warrior' +p196654 +sg25270 +S'George Catlin' +p196655 +sa(dp196656 +g25273 +S'oil on card mounted on paperboard' +p196657 +sg25267 +g27 +sg25275 +S'1861/1869' +p196658 +sg25268 +S'Camanchee Chief with Three Warriors' +p196659 +sg25270 +S'George Catlin' +p196660 +sa(dp196661 +g25273 +S'oil on card mounted on paperboard' +p196662 +sg25267 +g27 +sg25275 +S'1861/1869' +p196663 +sg25268 +S"Camanchee Chief's Children and Wigwam" +p196664 +sg25270 +S'George Catlin' +p196665 +sa(dp196666 +g25268 +S'Sham Fight of the Camanchees' +p196667 +sg25270 +S'George Catlin' +p196668 +sg25273 +S'oil on card mounted on paperboard' +p196669 +sg25275 +S'1861/1869' +p196670 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000ca5.jpg' +p196671 +sg25267 +g27 +sa(dp196672 +g25268 +S'Camanchee Horsemanship' +p196673 +sg25270 +S'George Catlin' +p196674 +sg25273 +S'oil on card mounted on paperboard' +p196675 +sg25275 +S'1861/1869' +p196676 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c1e.jpg' +p196677 +sg25267 +g27 +sa(dp196678 +g25273 +S'(artist after)' +p196679 +sg25267 +g27 +sg25275 +S'\n' +p196680 +sg25268 +S'Christ before Herod' +p196681 +sg25270 +S'Artist Information (' +p196682 +sa(dp196683 +g25273 +S'oil on card mounted on paperboard' +p196684 +sg25267 +g27 +sg25275 +S'1861/1869' +p196685 +sg25268 +S'Battle between the Jiccarilla Apachees and Camanchees' +p196686 +sg25270 +S'George Catlin' +p196687 +sa(dp196688 +g25268 +S'Camanchees Moving' +p196689 +sg25270 +S'George Catlin' +p196690 +sg25273 +S'oil on card mounted on paperboard' +p196691 +sg25275 +S'1861/1869' +p196692 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c1f.jpg' +p196693 +sg25267 +g27 +sa(dp196694 +g25273 +S'oil on card mounted on paperboard' +p196695 +sg25267 +g27 +sg25275 +S'1861/1869' +p196696 +sg25268 +S'Defile of a Camanchee War Party' +p196697 +sg25270 +S'George Catlin' +p196698 +sa(dp196699 +g25268 +S'Tawahquena Village' +p196700 +sg25270 +S'George Catlin' +p196701 +sg25273 +S'oil on card mounted on paperboard' +p196702 +sg25275 +S'1861/1869' +p196703 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000ca7.jpg' +p196704 +sg25267 +g27 +sa(dp196705 +g25273 +S'oil on card mounted on paperboard' +p196706 +sg25267 +g27 +sg25275 +S'1861/1869' +p196707 +sg25268 +S'Pawneepict Chief, Two Daughters, and a Warrior' +p196708 +sg25270 +S'George Catlin' +p196709 +sa(dp196710 +g25268 +S'Three Shoshonee Warriors' +p196711 +sg25270 +S'George Catlin' +p196712 +sg25273 +S'oil on card mounted on paperboard' +p196713 +sg25275 +S'1861' +p196714 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c20.jpg' +p196715 +sg25267 +g27 +sa(dp196716 +g25273 +S'oil on card mounted on paperboard' +p196717 +sg25267 +g27 +sg25275 +S'1861/1869' +p196718 +sg25268 +S'Three Shoshonee Warriors Armed for War' +p196719 +sg25270 +S'George Catlin' +p196720 +sa(dp196721 +g25268 +S'Two Unidentified North American Indians' +p196722 +sg25270 +S'George Catlin' +p196723 +sg25273 +S'oil on card mounted on paperboard' +p196724 +sg25275 +S'1861/1869' +p196725 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000ca8.jpg' +p196726 +sg25267 +g27 +sa(dp196727 +g25268 +S'Pawnee Indians' +p196728 +sg25270 +S'George Catlin' +p196729 +sg25273 +S'oil on card mounted on paperboard' +p196730 +sg25275 +S'1861/1869' +p196731 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000caa.jpg' +p196732 +sg25267 +g27 +sa(dp196733 +g25273 +S'oil on card mounted on paperboard' +p196734 +sg25267 +g27 +sg25275 +S'1861/1869' +p196735 +sg25268 +S'A Pawnee Chief with Two Warriors' +p196736 +sg25270 +S'George Catlin' +p196737 +sa(dp196738 +g25273 +S'(artist after)' +p196739 +sg25267 +g27 +sg25275 +S'\n' +p196740 +sg25268 +S'Christ before Pilate' +p196741 +sg25270 +S'Artist Information (' +p196742 +sa(dp196743 +g25268 +S"Facsimile of a Pawnee Doctor's Robe with Fantastic Professional Designs" +p196744 +sg25270 +S'George Catlin' +p196745 +sg25273 +S'oil on card mounted on paperboard' +p196746 +sg25275 +S'1861/1869' +p196747 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cab.jpg' +p196748 +sg25267 +g27 +sa(dp196749 +g25268 +S"Facsimile of a Pawnee Doctor's Robe" +p196750 +sg25270 +S'George Catlin' +p196751 +sg25273 +S'oil on card mounted on paperboard' +p196752 +sg25275 +S'1861/1869' +p196753 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cac.jpg' +p196754 +sg25267 +g27 +sa(dp196755 +g25268 +S'Pawnee Indians Approaching Buffalo' +p196756 +sg25270 +S'George Catlin' +p196757 +sg25273 +S'oil on card mounted on paperboard' +p196758 +sg25275 +S'1861/1869' +p196759 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c21.jpg' +p196760 +sg25267 +g27 +sa(dp196761 +g25268 +S'Encampment of Pawnee Indians at Sunset' +p196762 +sg25270 +S'George Catlin' +p196763 +sg25273 +S'oil on card mounted on paperboard' +p196764 +sg25275 +S'1861/1869' +p196765 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c22.jpg' +p196766 +sg25267 +g27 +sa(dp196767 +g25273 +S'oil on card mounted on paperboard' +p196768 +sg25267 +g27 +sg25275 +S'1861/1869' +p196769 +sg25268 +S'Catching Wild Horses - Pawnee' +p196770 +sg25270 +S'George Catlin' +p196771 +sa(dp196772 +g25268 +S'A Pawnee Warrior Sacrificing His Favorite Horse' +p196773 +sg25270 +S'George Catlin' +p196774 +sg25273 +S'oil on card mounted on paperboard' +p196775 +sg25275 +S'1861/1869' +p196776 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cad.jpg' +p196777 +sg25267 +g27 +sa(dp196778 +g25268 +S'Osage Chief with Two Warriors' +p196779 +sg25270 +S'George Catlin' +p196780 +sg25273 +S'oil on card mounted on paperboard' +p196781 +sg25275 +S'1861/1869' +p196782 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cae.jpg' +p196783 +sg25267 +g27 +sa(dp196784 +g25268 +S'Osage Indians' +p196785 +sg25270 +S'George Catlin' +p196786 +sg25273 +S'oil on card mounted on paperboard' +p196787 +sg25275 +S'1861/1869' +p196788 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000caf.jpg' +p196789 +sg25267 +g27 +sa(dp196790 +g25268 +S'Facsimile of an Omaha Robe' +p196791 +sg25270 +S'George Catlin' +p196792 +sg25273 +S'oil on card mounted on paperboard' +p196793 +sg25275 +S'1861/1869' +p196794 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cb0.jpg' +p196795 +sg25267 +g27 +sa(dp196796 +g25268 +S'An Osage Indian Pursuing a Camanchee' +p196797 +sg25270 +S'George Catlin' +p196798 +sg25273 +S'oil on card mounted on paperboard' +p196799 +sg25275 +S'1861/1869' +p196800 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c24.jpg' +p196801 +sg25267 +g27 +sa(dp196802 +g25273 +S'(artist after)' +p196803 +sg25267 +g27 +sg25275 +S'\n' +p196804 +sg25268 +S'Flagellation of Christ' +p196805 +sg25270 +S'Artist Information (' +p196806 +sa(dp196807 +g25268 +S'Mandan War Chief with His Favorite Wife' +p196808 +sg25270 +S'George Catlin' +p196809 +sg25273 +S'oil on card mounted on paperboard' +p196810 +sg25275 +S'1861/1869' +p196811 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c25.jpg' +p196812 +sg25267 +g27 +sa(dp196813 +g25268 +S'Three Mandan Warriors Armed for War' +p196814 +sg25270 +S'George Catlin' +p196815 +sg25273 +S'oil on card mounted on paperboard' +p196816 +sg25275 +S'1861/1869' +p196817 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cb1.jpg' +p196818 +sg25267 +g27 +sa(dp196819 +g25268 +S'Four Mandan Warriors, a Girl, and a Boy' +p196820 +sg25270 +S'George Catlin' +p196821 +sg25273 +S'oil on card mounted on paperboard' +p196822 +sg25275 +S'1861/1869' +p196823 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cb2.jpg' +p196824 +sg25267 +g27 +sa(dp196825 +g25268 +S'Mandan Civil Chief, His Wife, and Child' +p196826 +sg25270 +S'George Catlin' +p196827 +sg25273 +S'oil on card mounted on paperboard' +p196828 +sg25275 +S'1861/1869' +p196829 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cb3.jpg' +p196830 +sg25267 +g27 +sa(dp196831 +g25268 +S'An Aged Minatarree Chief and His Family' +p196832 +sg25270 +S'George Catlin' +p196833 +sg25273 +S'oil on card mounted on paperboard' +p196834 +sg25275 +S'1861/1869' +p196835 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cb4.jpg' +p196836 +sg25267 +g27 +sa(dp196837 +g25268 +S'Three Minatarree Indians' +p196838 +sg25270 +S'George Catlin' +p196839 +sg25273 +S'oil on card mounted on paperboard' +p196840 +sg25275 +S'1861' +p196841 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cb5.jpg' +p196842 +sg25267 +g27 +sa(dp196843 +g25273 +S'oil on card mounted on paperboard' +p196844 +sg25267 +g27 +sg25275 +S'1861/1869' +p196845 +sg25268 +S'Riccarree Chief and His Wife' +p196846 +sg25270 +S'George Catlin' +p196847 +sa(dp196848 +g25268 +S'Mandan Village - A Distant View' +p196849 +sg25270 +S'George Catlin' +p196850 +sg25273 +S'oil on card mounted on paperboard' +p196851 +sg25275 +S'1861/1869' +p196852 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cb6.jpg' +p196853 +sg25267 +g27 +sa(dp196854 +g25268 +S'Catlin Feasted by the Mandan Chief' +p196855 +sg25270 +S'George Catlin' +p196856 +sg25273 +S'oil on card mounted on paperboard' +p196857 +sg25275 +S'1861/1869' +p196858 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c27.jpg' +p196859 +sg25267 +g27 +sa(dp196860 +g25268 +S'Green Corn Dance - Minatarrees' +p196861 +sg25270 +S'George Catlin' +p196862 +sg25273 +S'oil on card mounted on paperboard' +p196863 +sg25275 +S'1861' +p196864 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c28.jpg' +p196865 +sg25267 +g27 +sa(dp196866 +g25273 +S'(artist after)' +p196867 +sg25267 +g27 +sg25275 +S'\n' +p196868 +sg25268 +S'Christ Crowned with Thorns' +p196869 +sg25270 +S'Artist Information (' +p196870 +sa(dp196871 +g25268 +S'Buffalo Dance - Mandan' +p196872 +sg25270 +S'George Catlin' +p196873 +sg25273 +S'oil on card mounted on paperboard' +p196874 +sg25275 +S'1861' +p196875 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cb7.jpg' +p196876 +sg25267 +g27 +sa(dp196877 +g25268 +S'Game of the Arrow - Mandan' +p196878 +sg25270 +S'George Catlin' +p196879 +sg25273 +S'oil on card mounted on paperboard' +p196880 +sg25275 +S'1861/1869' +p196881 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c29.jpg' +p196882 +sg25267 +g27 +sa(dp196883 +g25268 +S'A Foot War Party in Council - Mandan' +p196884 +sg25270 +S'George Catlin' +p196885 +sg25273 +S'oil on card mounted on paperboard' +p196886 +sg25275 +S'1861/1869' +p196887 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c2a.jpg' +p196888 +sg25267 +g27 +sa(dp196889 +g25268 +S'A Mandan Medicine Man' +p196890 +sg25270 +S'George Catlin' +p196891 +sg25273 +S'oil on card mounted on paperboard' +p196892 +sg25275 +S'1861/1869' +p196893 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cb8.jpg' +p196894 +sg25267 +g27 +sa(dp196895 +g25268 +S'Facsimile of the Robe of Mah-to-toh-pa - Mandan' +p196896 +sg25270 +S'George Catlin' +p196897 +sg25273 +S'oil on card mounted on paperboard' +p196898 +sg25275 +S'1861/1869' +p196899 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c2b.jpg' +p196900 +sg25267 +g27 +sa(dp196901 +g25268 +S'Mandan Ceremony - The Water Sinks Down' +p196902 +sg25270 +S'George Catlin' +p196903 +sg25273 +S'oil on card mounted on paperboard' +p196904 +sg25275 +S'1861/1869' +p196905 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c2c.jpg' +p196906 +sg25267 +g27 +sa(dp196907 +g25268 +S'Three Iowa Indians' +p196908 +sg25270 +S'George Catlin' +p196909 +sg25273 +S'oil on card mounted on paperboard' +p196910 +sg25275 +S'1861/1869' +p196911 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cb9.jpg' +p196912 +sg25267 +g27 +sa(dp196913 +g25268 +S'Three Iroquois Indians' +p196914 +sg25270 +S'George Catlin' +p196915 +sg25273 +S'oil on card mounted on paperboard' +p196916 +sg25275 +S'1861/1869' +p196917 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c2d.jpg' +p196918 +sg25267 +g27 +sa(dp196919 +g25268 +S'Three Riccarree Indians' +p196920 +sg25270 +S'George Catlin' +p196921 +sg25273 +S'oil on card mounted on paperboard' +p196922 +sg25275 +S'1861' +p196923 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cba.jpg' +p196924 +sg25267 +g27 +sa(dp196925 +g25273 +S'oil on card mounted on paperboard' +p196926 +sg25267 +g27 +sg25275 +S'1861/1869' +p196927 +sg25268 +S'An Aged Ojibbeway Chief and Three Warriors' +p196928 +sg25270 +S'George Catlin' +p196929 +sa(dp196930 +g25273 +S'(artist after)' +p196931 +sg25267 +g27 +sg25275 +S'\n' +p196932 +sg25268 +S'Ecce Homo' +p196933 +sg25270 +S'Artist Information (' +p196934 +sa(dp196935 +g25268 +S'Two Ojibbeway Warriors and a Woman' +p196936 +sg25270 +S'George Catlin' +p196937 +sg25273 +S'oil on card mounted on paperboard' +p196938 +sg25275 +S'1861/1869' +p196939 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cbb.jpg' +p196940 +sg25267 +g27 +sa(dp196941 +g25273 +S'oil on card mounted on paperboard' +p196942 +sg25267 +g27 +sg25275 +S'1861/1869' +p196943 +sg25268 +S'Ojibbeway Indians' +p196944 +sg25270 +S'George Catlin' +p196945 +sa(dp196946 +g25268 +S'Saukie Warrior, His Wife, and a Boy' +p196947 +sg25270 +S'George Catlin' +p196948 +sg25273 +S'oil on card mounted on paperboard' +p196949 +sg25275 +S'1861/1869' +p196950 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c2e.jpg' +p196951 +sg25267 +g27 +sa(dp196952 +g25268 +S'Black Hawk and Five Other Saukie Prisoners' +p196953 +sg25270 +S'George Catlin' +p196954 +sg25273 +S'oil on card mounted on paperboard' +p196955 +sg25275 +S'1861/1869' +p196956 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cbc.jpg' +p196957 +sg25267 +g27 +sa(dp196958 +g25268 +S'Two Saukie Chiefs and a Woman' +p196959 +sg25270 +S'George Catlin' +p196960 +sg25273 +S'oil on card mounted on paperboard' +p196961 +sg25275 +S'1861/1869' +p196962 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cbd.jpg' +p196963 +sg25267 +g27 +sa(dp196964 +g25268 +S'The Running Fox on a Fine Horse - Saukie' +p196965 +sg25270 +S'George Catlin' +p196966 +sg25273 +S'oil on card mounted on paperboard' +p196967 +sg25275 +S'1861/1869' +p196968 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c2f.jpg' +p196969 +sg25267 +g27 +sa(dp196970 +g25268 +S'Menomonie Chief, His Wife, and Son' +p196971 +sg25270 +S'George Catlin' +p196972 +sg25273 +S'oil on card mounted on paperboard' +p196973 +sg25275 +S'1861/1869' +p196974 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cbe.jpg' +p196975 +sg25267 +g27 +sa(dp196976 +g25268 +S'Old Menomonie Chief with Two Young Beaux' +p196977 +sg25270 +S'George Catlin' +p196978 +sg25273 +S'oil on card mounted on paperboard' +p196979 +sg25275 +S'1861/1869' +p196980 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cbf.jpg' +p196981 +sg25267 +g27 +sa(dp196982 +g25268 +S'Two Ottoe Chiefs and a Woman' +p196983 +sg25270 +S'George Catlin' +p196984 +sg25273 +S'oil on card mounted on paperboard' +p196985 +sg25275 +S'1861/1869' +p196986 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c30.jpg' +p196987 +sg25267 +g27 +sa(dp196988 +g25268 +S'Weeco Chief, His Wife, and a Warrior' +p196989 +sg25270 +S'George Catlin' +p196990 +sg25273 +S'oil on card mounted on paperboard' +p196991 +sg25275 +S'1861/1869' +p196992 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c31.jpg' +p196993 +sg25267 +g27 +sa(dp196994 +g25273 +S'(artist after)' +p196995 +sg25267 +g27 +sg25275 +S'\n' +p196996 +sg25268 +S'Christ Carrying the Cross' +p196997 +sg25270 +S'Artist Information (' +p196998 +sa(dp196999 +g25268 +S'Three Piankeshaw Indians' +p197000 +sg25270 +S'George Catlin' +p197001 +sg25273 +S'oil on card mounted on paperboard' +p197002 +sg25275 +S'1861/1869' +p197003 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c32.jpg' +p197004 +sg25267 +g27 +sa(dp197005 +g25268 +S'Kaskaskia Chief, His Mother, and Son' +p197006 +sg25270 +S'George Catlin' +p197007 +sg25273 +S'oil on card mounted on paperboard' +p197008 +sg25275 +S'1861/1869' +p197009 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000be9.jpg' +p197010 +sg25267 +g27 +sa(dp197011 +g25268 +S'Seneca Chief, Red Jacket, with Two Warriors' +p197012 +sg25270 +S'George Catlin' +p197013 +sg25273 +S'oil on card mounted on paperboard' +p197014 +sg25275 +S'1861/1869' +p197015 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c33.jpg' +p197016 +sg25267 +g27 +sa(dp197017 +g25268 +S'Puncah Indians' +p197018 +sg25270 +S'George Catlin' +p197019 +sg25273 +S'oil on card mounted on paperboard' +p197020 +sg25275 +S'1861' +p197021 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c34.jpg' +p197022 +sg25267 +g27 +sa(dp197023 +g25273 +S'oil on card mounted on paperboard' +p197024 +sg25267 +g27 +sg25275 +S'1861/1869' +p197025 +sg25268 +S'Puncah Chief Surrounded by His Family' +p197026 +sg25270 +S'George Catlin' +p197027 +sa(dp197028 +g25268 +S'Ottowa Chief, His Wife, and a Warrior' +p197029 +sg25270 +S'George Catlin' +p197030 +sg25273 +S'oil on card mounted on paperboard' +p197031 +sg25275 +S'1861/1869' +p197032 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c35.jpg' +p197033 +sg25267 +g27 +sa(dp197034 +g25268 +S'Mohigan Chief and a Missionary' +p197035 +sg25270 +S'George Catlin' +p197036 +sg25273 +S'oil on card mounted on paperboard' +p197037 +sg25275 +S'1861/1869' +p197038 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c36.jpg' +p197039 +sg25267 +g27 +sa(dp197040 +g25273 +S'oil on card mounted on paperboard' +p197041 +sg25267 +g27 +sg25275 +S'1861/1869' +p197042 +sg25268 +S'Three Peoria Indians' +p197043 +sg25270 +S'George Catlin' +p197044 +sa(dp197045 +g25268 +S'Nine Ojibbeway Indians in London' +p197046 +sg25270 +S'George Catlin' +p197047 +sg25273 +S'oil on card mounted on paperboard' +p197048 +sg25275 +S'1861/1869' +p197049 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c38.jpg' +p197050 +sg25267 +g27 +sa(dp197051 +g25268 +S'Iowa Indians Who Visited London and Paris' +p197052 +sg25270 +S'George Catlin' +p197053 +sg25273 +S'oil on card mounted on paperboard' +p197054 +sg25275 +S'1861/1869' +p197055 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c39.jpg' +p197056 +sg25267 +g27 +sa(dp197057 +g25273 +S'(artist after)' +p197058 +sg25267 +g27 +sg25275 +S'\n' +p197059 +sg25268 +S'The Crucifixion' +p197060 +sg25270 +S'Artist Information (' +p197061 +sa(dp197062 +g25268 +S'Ojibbeway Indians in Paris' +p197063 +sg25270 +S'George Catlin' +p197064 +sg25273 +S'oil on card mounted on paperboard' +p197065 +sg25275 +S'1861/1869' +p197066 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c3a.jpg' +p197067 +sg25267 +g27 +sa(dp197068 +g25268 +S'Oneida Chief, His Sister, and a Missionary' +p197069 +sg25270 +S'George Catlin' +p197070 +sg25273 +S'oil on card mounted on paperboard' +p197071 +sg25275 +S'1861/1869' +p197072 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c3b.jpg' +p197073 +sg25267 +g27 +sa(dp197074 +g25268 +S'Three Delaware Indians' +p197075 +sg25270 +S'George Catlin' +p197076 +sg25273 +S'oil on card mounted on paperboard' +p197077 +sg25275 +S'1861/1869' +p197078 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bea.jpg' +p197079 +sg25267 +g27 +sa(dp197080 +g25268 +S'Three Creek Indians' +p197081 +sg25270 +S'George Catlin' +p197082 +sg25273 +S'oil on card mounted on paperboard' +p197083 +sg25275 +S'1861/1869' +p197084 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c3c.jpg' +p197085 +sg25267 +g27 +sa(dp197086 +g25268 +S'Two Choctaw Indians' +p197087 +sg25270 +S'George Catlin' +p197088 +sg25273 +S'oil on card mounted on paperboard' +p197089 +sg25275 +S'1861/1869' +p197090 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c3d.jpg' +p197091 +sg25267 +g27 +sa(dp197092 +g25268 +S'Two Weeah Warriors and a Woman' +p197093 +sg25270 +S'George Catlin' +p197094 +sg25273 +S'oil on card mounted on paperboard' +p197095 +sg25275 +S'1861/1869' +p197096 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c3e.jpg' +p197097 +sg25267 +g27 +sa(dp197098 +g25268 +S'Seminolee Indians, Prisoners at Fort Moultrie' +p197099 +sg25270 +S'George Catlin' +p197100 +sg25273 +S'oil on card mounted on paperboard' +p197101 +sg25275 +S'1861/1869' +p197102 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000beb.jpg' +p197103 +sg25267 +g27 +sa(dp197104 +g25268 +S'Osceola and Four Seminolee Indians' +p197105 +sg25270 +S'George Catlin' +p197106 +sg25273 +S'oil on card mounted on paperboard' +p197107 +sg25275 +S'1861/1869' +p197108 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bec.jpg' +p197109 +sg25267 +g27 +sa(dp197110 +g25273 +S'oil on card mounted on paperboard' +p197111 +sg25267 +g27 +sg25275 +S'1861/1869' +p197112 +sg25268 +S'Two Cherokee Chiefs' +p197113 +sg25270 +S'George Catlin' +p197114 +sa(dp197115 +g25268 +S'Kickapoo Indians Preaching and Praying' +p197116 +sg25270 +S'George Catlin' +p197117 +sg25273 +S'oil on card mounted on paperboard' +p197118 +sg25275 +S'1861/1869' +p197119 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c3f.jpg' +p197120 +sg25267 +g27 +sa(dp197121 +g25273 +S'(artist after)' +p197122 +sg25267 +g27 +sg25275 +S'\n' +p197123 +sg25268 +S'Descent from the Cross' +p197124 +sg25270 +S'Artist Information (' +p197125 +sa(dp197126 +g25268 +S'Three Potowotomie Indians' +p197127 +sg25270 +S'George Catlin' +p197128 +sg25273 +S'oil on card mounted on paperboard' +p197129 +sg25275 +S'1861/1869' +p197130 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c40.jpg' +p197131 +sg25267 +g27 +sa(dp197132 +g25268 +S'Shawano Indians' +p197133 +sg25270 +S'George Catlin' +p197134 +sg25273 +S'oil on card mounted on paperboard' +p197135 +sg25275 +S'1861/1869' +p197136 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c41.jpg' +p197137 +sg25267 +g27 +sa(dp197138 +g25273 +S'oil on card mounted on paperboard' +p197139 +sg25267 +g27 +sg25275 +S'1861/1869' +p197140 +sg25268 +S"A K'nisteneux Warrior and Family" +p197141 +sg25270 +S'George Catlin' +p197142 +sa(dp197143 +g25268 +S'Three Micmac Indians' +p197144 +sg25270 +S'George Catlin' +p197145 +sg25273 +S'oil on card mounted on paperboard' +p197146 +sg25275 +S'1861/1869' +p197147 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c42.jpg' +p197148 +sg25267 +g27 +sa(dp197149 +g25273 +S'oil on card mounted on paperboard' +p197150 +sg25267 +g27 +sg25275 +S'1855/1869' +p197151 +sg25268 +S'Yntah Medicine Man, a Warrior, and a Woman' +p197152 +sg25270 +S'George Catlin' +p197153 +sa(dp197154 +g25268 +S'Three Celebrated Ball Players - Choctaw, Sioux and Ojibbeway' +p197155 +sg25270 +S'George Catlin' +p197156 +sg25273 +S'oil on card mounted on paperboard' +p197157 +sg25275 +S'1861' +p197158 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c43.jpg' +p197159 +sg25267 +g27 +sa(dp197160 +g25268 +S'An Ojibbeway Village of Skin Tents' +p197161 +sg25270 +S'George Catlin' +p197162 +sg25273 +S'oil on card mounted on paperboard' +p197163 +sg25275 +S'1861/1869' +p197164 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c44.jpg' +p197165 +sg25267 +g27 +sa(dp197166 +g25268 +S'Buffalo Chase in the Snow Drifts - Ojibbeway' +p197167 +sg25270 +S'George Catlin' +p197168 +sg25273 +S'oil on card mounted on paperboard' +p197169 +sg25275 +S'1861/1869' +p197170 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c45.jpg' +p197171 +sg25267 +g27 +sa(dp197172 +g25268 +S'Amusing Dance - Saukie' +p197173 +sg25270 +S'George Catlin' +p197174 +sg25273 +S'oil on card mounted on paperboard' +p197175 +sg25275 +S'1861/1869' +p197176 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c47.jpg' +p197177 +sg25267 +g27 +sa(dp197178 +g25268 +S"Slaves' Dance - Saukie" +p197179 +sg25270 +S'George Catlin' +p197180 +sg25273 +S'oil on card mounted on paperboard' +p197181 +sg25275 +S'1861' +p197182 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c48.jpg' +p197183 +sg25267 +g27 +sa(dp197184 +g25273 +S'(artist after)' +p197185 +sg25267 +g27 +sg25275 +S'\n' +p197186 +sg25268 +S'Burial of Christ' +p197187 +sg25270 +S'Artist Information (' +p197188 +sa(dp197189 +g25273 +S'oil on card mounted on paperboard' +p197190 +sg25267 +g27 +sg25275 +S'1861/1869' +p197191 +sg25268 +S'Eagle Dance - Choctaw' +p197192 +sg25270 +S'George Catlin' +p197193 +sa(dp197194 +g25268 +S'Dance to the Berdache - Saukie' +p197195 +sg25270 +S'George Catlin' +p197196 +sg25273 +S'oil on card mounted on paperboard' +p197197 +sg25275 +S'1861/1869' +p197198 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c49.jpg' +p197199 +sg25267 +g27 +sa(dp197200 +g25268 +S"Bear Dance - K'nisteneux" +p197201 +sg25270 +S'George Catlin' +p197202 +sg25273 +S'oil on card mounted on paperboard' +p197203 +sg25275 +S'1861' +p197204 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c4a.jpg' +p197205 +sg25267 +g27 +sa(dp197206 +g25268 +S'Discovery Dance - Saukie' +p197207 +sg25270 +S'George Catlin' +p197208 +sg25273 +S'oil on card mounted on paperboard' +p197209 +sg25275 +S'1861' +p197210 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bed.jpg' +p197211 +sg25267 +g27 +sa(dp197212 +g25268 +S'Snow Shoe Dance - Ojibbeway' +p197213 +sg25270 +S'George Catlin' +p197214 +sg25273 +S'oil on card mounted on paperboard' +p197215 +sg25275 +S'1861/1869' +p197216 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bee.jpg' +p197217 +sg25267 +g27 +sa(dp197218 +g25268 +S'Ball-Play Dance - Choctaw' +p197219 +sg25270 +S'George Catlin' +p197220 +sg25273 +S'oil on card mounted on paperboard' +p197221 +sg25275 +S'1861/1869' +p197222 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bef.jpg' +p197223 +sg25267 +g27 +sa(dp197224 +g25273 +S'oil on card mounted on paperboard' +p197225 +sg25267 +g27 +sg25275 +S'1861/1869' +p197226 +sg25268 +S'Gathering Wild Rice - Winnebago' +p197227 +sg25270 +S'George Catlin' +p197228 +sa(dp197229 +g25268 +S'Fort Pierre' +p197230 +sg25270 +S'George Catlin' +p197231 +sg25273 +S'oil on card mounted on paperboard' +p197232 +sg25275 +S'1861/1869' +p197233 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bf0.jpg' +p197234 +sg25267 +g27 +sa(dp197235 +g25273 +S'oil on card mounted on paperboard' +p197236 +sg25267 +g27 +sg25275 +S'1861/1869' +p197237 +sg25268 +S'Facsimile of an Ojibbeway Robe' +p197238 +sg25270 +S'George Catlin' +p197239 +sa(dp197240 +g25268 +S'Salmon Spearing - Ottowas' +p197241 +sg25270 +S'George Catlin' +p197242 +sg25273 +S'oil on card mounted on paperboard' +p197243 +sg25275 +S'1861/1869' +p197244 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c4b.jpg' +p197245 +sg25267 +g27 +sa(dp197246 +g25273 +S'(artist after)' +p197247 +sg25267 +g27 +sg25275 +S'\n' +p197248 +sg25268 +S'The Resurrection' +p197249 +sg25270 +S'Artist Information (' +p197250 +sa(dp197251 +g25268 +S'Funeral of Black Hawk - Saukie' +p197252 +sg25270 +S'George Catlin' +p197253 +sg25273 +S'oil on card mounted on paperboard' +p197254 +sg25275 +S'1861/1869' +p197255 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c4c.jpg' +p197256 +sg25267 +g27 +sa(dp197257 +g25273 +S'oil on card mounted on paperboard' +p197258 +sg25267 +g27 +sg25275 +S'1861/1869' +p197259 +sg25268 +S'War Dance of the Saukies' +p197260 +sg25270 +S'George Catlin' +p197261 +sa(dp197262 +g25273 +S'oil on card mounted on paperboard' +p197263 +sg25267 +g27 +sg25275 +S'1861/1869' +p197264 +sg25268 +S'Three Navaho Indians' +p197265 +sg25270 +S'George Catlin' +p197266 +sa(dp197267 +g25268 +S'Apachee Chief and Three Warriors' +p197268 +sg25270 +S'George Catlin' +p197269 +sg25273 +S'oil on card mounted on paperboard' +p197270 +sg25275 +S'1855/1869' +p197271 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bf1.jpg' +p197272 +sg25267 +g27 +sa(dp197273 +g25268 +S'Four Apachee Indians' +p197274 +sg25270 +S'George Catlin' +p197275 +sg25273 +S'oil on card mounted on paperboard' +p197276 +sg25275 +S'1855/1869' +p197277 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c4d.jpg' +p197278 +sg25267 +g27 +sa(dp197279 +g25268 +S'Two Apachee Warriors and a Woman' +p197280 +sg25270 +S'George Catlin' +p197281 +sg25273 +S'oil on card mounted on paperboard' +p197282 +sg25275 +S'1855/1869' +p197283 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bf2.jpg' +p197284 +sg25267 +g27 +sa(dp197285 +g25273 +S'oil on card mounted on paperboard' +p197286 +sg25267 +g27 +sg25275 +S'1861/1869' +p197287 +sg25268 +S'Four Navaho Warriors' +p197288 +sg25270 +S'George Catlin' +p197289 +sa(dp197290 +g25268 +S'Flathead Indians' +p197291 +sg25270 +S'George Catlin' +p197292 +sg25273 +S'oil on card mounted on paperboard' +p197293 +sg25275 +S'1861' +p197294 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c4e.jpg' +p197295 +sg25267 +g27 +sa(dp197296 +g25268 +S'Four Flathead Indians' +p197297 +sg25270 +S'George Catlin' +p197298 +sg25273 +S'oil on card mounted on paperboard' +p197299 +sg25275 +S'1855/1869' +p197300 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bf3.jpg' +p197301 +sg25267 +g27 +sa(dp197302 +g25268 +S'A Flathead Chief with His Family' +p197303 +sg25270 +S'George Catlin' +p197304 +sg25273 +S'oil on card mounted on paperboard' +p197305 +sg25275 +S'1855/1869' +p197306 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c50.jpg' +p197307 +sg25267 +g27 +sa(dp197308 +g25268 +S'The Old Cock' +p197309 +sg25270 +S'F\xc3\xa9lix Bracquemond' +p197310 +sg25273 +S'etching' +p197311 +sg25275 +S'1882' +p197312 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009147.jpg' +p197313 +sg25267 +g27 +sa(dp197314 +g25268 +S'Nayas Indian Chief, His Wife, and a Warrior' +p197315 +sg25270 +S'George Catlin' +p197316 +sg25273 +S'oil on card mounted on paperboard' +p197317 +sg25275 +S'1855/1869' +p197318 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c51.jpg' +p197319 +sg25267 +g27 +sa(dp197320 +g25268 +S'Nayas Indians' +p197321 +sg25270 +S'George Catlin' +p197322 +sg25273 +S'oil on card mounted on paperboard' +p197323 +sg25275 +S'186[2?]' +p197324 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bf4.jpg' +p197325 +sg25267 +g27 +sa(dp197326 +g25268 +S'An Old Nayas Indian, His Granddaughter, and a Boy' +p197327 +sg25270 +S'George Catlin' +p197328 +sg25273 +S'oil on card mounted on paperboard' +p197329 +sg25275 +S'1855/1869' +p197330 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c52.jpg' +p197331 +sg25267 +g27 +sa(dp197332 +g25268 +S'Two Young Hyda Men' +p197333 +sg25270 +S'George Catlin' +p197334 +sg25273 +S'oil on card mounted on paperboard' +p197335 +sg25275 +S'1855/1869' +p197336 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c53.jpg' +p197337 +sg25267 +g27 +sa(dp197338 +g25268 +S'Three Young Chinook Men' +p197339 +sg25270 +S'George Catlin' +p197340 +sg25273 +S'oil on card mounted on paperboard' +p197341 +sg25275 +S'1855/1869' +p197342 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c54.jpg' +p197343 +sg25267 +g27 +sa(dp197344 +g25273 +S'oil on card mounted on paperboard' +p197345 +sg25267 +g27 +sg25275 +S'1855/1869' +p197346 +sg25268 +S'Klahoquaht Chief, His Wife, and Son' +p197347 +sg25270 +S'George Catlin' +p197348 +sa(dp197349 +g25273 +S'oil on card mounted on paperboard' +p197350 +sg25267 +g27 +sg25275 +S'1855/1869' +p197351 +sg25268 +S'Klatsop Indians' +p197352 +sg25270 +S'George Catlin' +p197353 +sa(dp197354 +g25268 +S'Three Walla Walla Indians' +p197355 +sg25270 +S'George Catlin' +p197356 +sg25273 +S'oil on card mounted on paperboard' +p197357 +sg25275 +S'1855/1869' +p197358 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c55.jpg' +p197359 +sg25267 +g27 +sa(dp197360 +g25268 +S'Facsimile of a Sioux Robe' +p197361 +sg25270 +S'George Catlin' +p197362 +sg25273 +S'oil on card mounted on paperboard' +p197363 +sg25275 +S'1861/1869' +p197364 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c57.jpg' +p197365 +sg25267 +g27 +sa(dp197366 +g25268 +S'A Stone Warrior, His Wife, and a Boy' +p197367 +sg25270 +S'George Catlin' +p197368 +sg25273 +S'oil on card mounted on paperboard' +p197369 +sg25275 +S'1855/1869' +p197370 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c58.jpg' +p197371 +sg25267 +g27 +sa(dp197372 +g25268 +S'The Doorway' +p197373 +sg25270 +S'James McNeill Whistler' +p197374 +sg25273 +S'etching' +p197375 +sg25275 +S'1880' +p197376 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab42.jpg' +p197377 +sg25267 +g27 +sa(dp197378 +g25268 +S'Copper Chief, His Wife, and Children' +p197379 +sg25270 +S'George Catlin' +p197380 +sg25273 +S'oil on card mounted on paperboard' +p197381 +sg25275 +S'1855/1869' +p197382 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c59.jpg' +p197383 +sg25267 +g27 +sa(dp197384 +g25268 +S'Spokan Chief, Two Warriors, and a Boy' +p197385 +sg25270 +S'George Catlin' +p197386 +sg25273 +S'oil on card mounted on paperboard' +p197387 +sg25275 +S'1855/1869' +p197388 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c5a.jpg' +p197389 +sg25267 +g27 +sa(dp197390 +g25268 +S'Athapasca Chief, His Wife, and a Warrior' +p197391 +sg25270 +S'George Catlin' +p197392 +sg25273 +S'oil on card mounted on paperboard' +p197393 +sg25275 +S'1855/1869' +p197394 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c5b.jpg' +p197395 +sg25267 +g27 +sa(dp197396 +g25268 +S'Four Dogrib Indians' +p197397 +sg25270 +S'George Catlin' +p197398 +sg25273 +S'oil on card mounted on paperboard' +p197399 +sg25275 +S'1855/1869' +p197400 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c5c.jpg' +p197401 +sg25267 +g27 +sa(dp197402 +g25268 +S'Three Selish Indians' +p197403 +sg25270 +S'George Catlin' +p197404 +sg25273 +S'oil on card mounted on paperboard' +p197405 +sg25275 +S'1855/1869' +p197406 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c5d.jpg' +p197407 +sg25267 +g27 +sa(dp197408 +g25268 +S'Two Chippewyan Warriors and a Woman' +p197409 +sg25270 +S'George Catlin' +p197410 +sg25273 +S'oil on card mounted on paperboard' +p197411 +sg25275 +S'1855/1869' +p197412 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c5e.jpg' +p197413 +sg25267 +g27 +sa(dp197414 +g25268 +S'Three Esquimaux' +p197415 +sg25270 +S'George Catlin' +p197416 +sg25273 +S'oil on card mounted on paperboard' +p197417 +sg25275 +S'1855/1869' +p197418 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c5f.jpg' +p197419 +sg25267 +g27 +sa(dp197420 +g25268 +S'Alaeutian Chief and Two Warriors' +p197421 +sg25270 +S'George Catlin' +p197422 +sg25273 +S'oil on card mounted on paperboard' +p197423 +sg25275 +S'1855/1869' +p197424 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c60.jpg' +p197425 +sg25267 +g27 +sa(dp197426 +g25268 +S'Cochimtee Chief, His Wife, and a Warrior' +p197427 +sg25270 +S'George Catlin' +p197428 +sg25273 +S'oil on card mounted on paperboard' +p197429 +sg25275 +S'1855/1869' +p197430 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c62.jpg' +p197431 +sg25267 +g27 +sa(dp197432 +g25268 +S'Mohave Chief, a Warrior, and His Wife' +p197433 +sg25270 +S'George Catlin' +p197434 +sg25273 +S'oil on card mounted on paperboard' +p197435 +sg25275 +S'1855/1869' +p197436 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c63.jpg' +p197437 +sg25267 +g27 +sa(dp197438 +g25268 +S'Ornament' +p197439 +sg25270 +S'Master B.H.M.' +p197440 +sg25273 +S'engraving' +p197441 +sg25275 +S'unknown date\n' +p197442 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083bf.jpg' +p197443 +sg25267 +g27 +sa(dp197444 +g25268 +S'A Yuma Chief, His Daughter, and a Warrior' +p197445 +sg25270 +S'George Catlin' +p197446 +sg25273 +S'oil on card mounted on paperboard' +p197447 +sg25275 +S'1855/1869' +p197448 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c64.jpg' +p197449 +sg25267 +g27 +sa(dp197450 +g25268 +S'Three Yumaya Indians' +p197451 +sg25270 +S'George Catlin' +p197452 +sg25273 +S'oil on card mounted on paperboard' +p197453 +sg25275 +S'1855/1869' +p197454 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c65.jpg' +p197455 +sg25267 +g27 +sa(dp197456 +g25268 +S'Five Maya Indians' +p197457 +sg25270 +S'George Catlin' +p197458 +sg25273 +S'oil on card mounted on paperboard' +p197459 +sg25275 +S'1855/1869' +p197460 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c66.jpg' +p197461 +sg25267 +g27 +sa(dp197462 +g25268 +S'Buffalo Chase' +p197463 +sg25270 +S'George Catlin' +p197464 +sg25273 +S'oil on card mounted on paperboard' +p197465 +sg25275 +S'1861/1869' +p197466 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bf5.jpg' +p197467 +sg25267 +g27 +sa(dp197468 +g25268 +S'Buffalo Chase, with Accidents' +p197469 +sg25270 +S'George Catlin' +p197470 +sg25273 +S'oil on card mounted on paperboard' +p197471 +sg25275 +S'1861/1869' +p197472 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bf6.jpg' +p197473 +sg25267 +g27 +sa(dp197474 +g25268 +S'Catlin and Indian Attacking Buffalo' +p197475 +sg25270 +S'George Catlin' +p197476 +sg25273 +S'oil on card mounted on paperboard' +p197477 +sg25275 +S'1861/1869' +p197478 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bf7.jpg' +p197479 +sg25267 +g27 +sa(dp197480 +g25268 +S'A Buffalo Wallow' +p197481 +sg25270 +S'George Catlin' +p197482 +sg25273 +S'oil on card mounted on paperboard' +p197483 +sg25275 +S'1861/1869' +p197484 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bf8.jpg' +p197485 +sg25267 +g27 +sa(dp197486 +g25268 +S'Buffalo Chase - Bulls Protecting the Calves' +p197487 +sg25270 +S'George Catlin' +p197488 +sg25273 +S'oil on card mounted on paperboard' +p197489 +sg25275 +S'1861/1869' +p197490 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bf9.jpg' +p197491 +sg25267 +g27 +sa(dp197492 +g25273 +S'oil on card mounted on paperboard' +p197493 +sg25267 +g27 +sg25275 +S'1861/1869' +p197494 +sg25268 +S'Bulls Fighting' +p197495 +sg25270 +S'George Catlin' +p197496 +sa(dp197497 +g25268 +S"K'nisteneux Indians Attacking Two Grizzly Bears" +p197498 +sg25270 +S'George Catlin' +p197499 +sg25273 +S'oil on card mounted on paperboard' +p197500 +sg25275 +S'1861/1869' +p197501 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a00059a9.jpg' +p197502 +sg25267 +g27 +sa(dp197503 +g25268 +S'Ornament' +p197504 +sg25270 +S'Master B.H.M.' +p197505 +sg25273 +S'engraving' +p197506 +sg25275 +S'unknown date\n' +p197507 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083c9.jpg' +p197508 +sg25267 +g27 +sa(dp197509 +g25268 +S'Pipe Dance - Assinneboine' +p197510 +sg25270 +S'George Catlin' +p197511 +sg25273 +S'oil on card mounted on paperboard' +p197512 +sg25275 +S'1861/1869' +p197513 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bfa.jpg' +p197514 +sg25267 +g27 +sa(dp197515 +g25268 +S'Horse Racing - Minatarrees' +p197516 +sg25270 +S'George Catlin' +p197517 +sg25273 +S'oil on card mounted on paperboard' +p197518 +sg25275 +S'1861/1869' +p197519 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bfb.jpg' +p197520 +sg25267 +g27 +sa(dp197521 +g25268 +S'Catlin Painting the Portrait of Mah-to-toh-pa - Mandan' +p197522 +sg25270 +S'George Catlin' +p197523 +sg25273 +S'oil on card mounted on paperboard' +p197524 +sg25275 +S'1861/1869' +p197525 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bfc.jpg' +p197526 +sg25267 +g27 +sa(dp197527 +g25268 +S'Prairie Dog Village' +p197528 +sg25270 +S'George Catlin' +p197529 +sg25273 +S'oil on card mounted on paperboard' +p197530 +sg25275 +S'1861/1869' +p197531 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c67.jpg' +p197532 +sg25267 +g27 +sa(dp197533 +g25268 +S'Fort Union' +p197534 +sg25270 +S'George Catlin' +p197535 +sg25273 +S'oil on card mounted on paperboard' +p197536 +sg25275 +S'1861/1869' +p197537 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c68.jpg' +p197538 +sg25267 +g27 +sa(dp197539 +g25268 +S'Making Flint Arrowheads - Apachees' +p197540 +sg25270 +S'George Catlin' +p197541 +sg25273 +S'oil on card mounted on paperboard' +p197542 +sg25275 +S'1855/1869' +p197543 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bfd.jpg' +p197544 +sg25267 +g27 +sa(dp197545 +g25268 +S"Facsimile of Chief Four Men's Robe - Mandan" +p197546 +sg25270 +S'George Catlin' +p197547 +sg25273 +S'oil on card mounted on paperboard' +p197548 +sg25275 +S'1861/1869' +p197549 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c69.jpg' +p197550 +sg25267 +g27 +sa(dp197551 +g25268 +S'An Indian Encampment at Sunset' +p197552 +sg25270 +S'George Catlin' +p197553 +sg25273 +S'oil on card mounted on paperboard' +p197554 +sg25275 +S'1861/1869' +p197555 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a00058eb.jpg' +p197556 +sg25267 +g27 +sa(dp197557 +g25268 +S"Curious Grassy Bluffs, St. Peter's River" +p197558 +sg25270 +S'George Catlin' +p197559 +sg25273 +S'oil on canvas' +p197560 +sg25275 +S'1861/1869' +p197561 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bfe.jpg' +p197562 +sg25267 +g27 +sa(dp197563 +g25273 +S'oil on card mounted on paperboard' +p197564 +sg25267 +g27 +sg25275 +S'1861/1869' +p197565 +sg25268 +S'View in the "Grand Detour," Upper Missouri' +p197566 +sg25270 +S'George Catlin' +p197567 +sa(dp197568 +g25268 +S'The Visitation with Saint Nicholas and Saint Anthony Abbot' +p197569 +sg25270 +S'Piero di Cosimo' +p197570 +sg25273 +S'oil on panel' +p197571 +sg25275 +S'c. 1490' +p197572 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000080a.jpg' +p197573 +sg25267 +S"The central scene of the eccentric Florentine artist Piero di Cosimo's \n Piero's \n " +p197574 +sa(dp197575 +g25273 +S'graphite with gray wash' +p197576 +sg25267 +g27 +sg25275 +S'unknown date\n' +p197577 +sg25268 +S'Dogana, Venice' +p197578 +sg25270 +S'Sir Muirhead Bone' +p197579 +sa(dp197580 +g25268 +S'Falls of the Snake River' +p197581 +sg25270 +S'George Catlin' +p197582 +sg25273 +S'oil on card mounted on paperboard' +p197583 +sg25275 +S'1855/1869' +p197584 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c6b.jpg' +p197585 +sg25267 +g27 +sa(dp197586 +g25268 +S'Grassy Bluffs, Upper Missouri' +p197587 +sg25270 +S'George Catlin' +p197588 +sg25273 +S'oil on card mounted on paperboard' +p197589 +sg25275 +S'1861/1869' +p197590 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c6c.jpg' +p197591 +sg25267 +g27 +sa(dp197592 +g25268 +S'Prairie Meadows Burning' +p197593 +sg25270 +S'George Catlin' +p197594 +sg25273 +S'oil on card mounted on paperboard' +p197595 +sg25275 +S'1861/1869' +p197596 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c6d.jpg' +p197597 +sg25267 +g27 +sa(dp197598 +g25273 +S'oil on card mounted on paperboard' +p197599 +sg25267 +g27 +sg25275 +S'1861/1869' +p197600 +sg25268 +S'View of "Pike\'s Tent"' +p197601 +sg25270 +S'George Catlin' +p197602 +sa(dp197603 +g25268 +S'Scene from the Lower Mississippi' +p197604 +sg25270 +S'George Catlin' +p197605 +sg25273 +S'oil on card mounted on paperboard' +p197606 +sg25275 +S'1861/1869' +p197607 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c6e.jpg' +p197608 +sg25267 +g27 +sa(dp197609 +g25268 +S'Catlin and Two Companions Shooting Buffalo' +p197610 +sg25270 +S'George Catlin' +p197611 +sg25273 +S'oil on card mounted on paperboard' +p197612 +sg25275 +S'1861/1869' +p197613 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c6f.jpg' +p197614 +sg25267 +g27 +sa(dp197615 +g25273 +S'oil on card mounted on paperboard' +p197616 +sg25267 +g27 +sg25275 +S'1855/1869' +p197617 +sg25268 +S'Nayas Village - Indians Bathing' +p197618 +sg25270 +S'George Catlin' +p197619 +sa(dp197620 +g25268 +S'The Scalper Scalped - Pawnees and Cheyennes' +p197621 +sg25270 +S'George Catlin' +p197622 +sg25273 +S'oil on card mounted on paperboard' +p197623 +sg25275 +S'1861/1869' +p197624 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c70.jpg' +p197625 +sg25267 +g27 +sa(dp197626 +g25273 +S'oil on card mounted on paperboard' +p197627 +sg25267 +g27 +sg25275 +S'1855/1869' +p197628 +sg25268 +S'An Apachee Village' +p197629 +sg25270 +S'George Catlin' +p197630 +sa(dp197631 +g25268 +S'Salmon River Mountains' +p197632 +sg25270 +S'George Catlin' +p197633 +sg25273 +S'oil on card mounted on paperboard' +p197634 +sg25275 +S'1855/1869' +p197635 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c72.jpg' +p197636 +sg25267 +g27 +sa(dp197637 +g25273 +S'watercolor and graphite' +p197638 +sg25267 +g27 +sg25275 +S'unknown date\n' +p197639 +sg25268 +S'Cromer, Norfolk, England' +p197640 +sg25270 +S'Sir Muirhead Bone' +p197641 +sa(dp197642 +g25268 +S'"Paint Me" - Apachee' +p197643 +sg25270 +S'George Catlin' +p197644 +sg25273 +S'oil on card mounted on paperboard' +p197645 +sg25275 +S'1855/1869' +p197646 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c73.jpg' +p197647 +sg25267 +g27 +sa(dp197648 +g25268 +S'Nishnabotana Bluffs, Upper Missouri' +p197649 +sg25270 +S'George Catlin' +p197650 +sg25273 +S'oil on card mounted on paperboard' +p197651 +sg25275 +S'1861/1869' +p197652 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bff.jpg' +p197653 +sg25267 +g27 +sa(dp197654 +g25268 +S'Camanchees Lancing a Buffalo Bull' +p197655 +sg25270 +S'George Catlin' +p197656 +sg25273 +S'oil on card mounted on paperboard' +p197657 +sg25275 +S'1861/1869' +p197658 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c74.jpg' +p197659 +sg25267 +g27 +sa(dp197660 +g25268 +S'Wounded Buffalo Bull' +p197661 +sg25270 +S'George Catlin' +p197662 +sg25273 +S'oil on card mounted on paperboard' +p197663 +sg25275 +S'1861/1869' +p197664 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c00.jpg' +p197665 +sg25267 +g27 +sa(dp197666 +g25268 +S'Dying Buffalo Bull' +p197667 +sg25270 +S'George Catlin' +p197668 +sg25273 +S'oil on card mounted on paperboard' +p197669 +sg25275 +S'1861/1869' +p197670 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c01.jpg' +p197671 +sg25267 +g27 +sa(dp197672 +g25268 +S'View of Chicago in 1837' +p197673 +sg25270 +S'George Catlin' +p197674 +sg25273 +S'oil on card mounted on paperboard' +p197675 +sg25275 +S'1861/1869' +p197676 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c02.jpg' +p197677 +sg25267 +g27 +sa(dp197678 +g25268 +S'American Pasturage - Prairies of the Platte' +p197679 +sg25270 +S'George Catlin' +p197680 +sg25273 +S'oil on card mounted on paperboard' +p197681 +sg25275 +S'1861/1869' +p197682 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c75.jpg' +p197683 +sg25267 +g27 +sa(dp197684 +g25273 +S'oil on card mounted on paperboard' +p197685 +sg25267 +g27 +sg25275 +S'1861/1869' +p197686 +sg25268 +S'View of the Lower Mississippi' +p197687 +sg25270 +S'George Catlin' +p197688 +sa(dp197689 +g25273 +S'oil on card mounted on paperboard' +p197690 +sg25267 +g27 +sg25275 +S'1861/1869' +p197691 +sg25268 +S'Cedar Bluffs' +p197692 +sg25270 +S'George Catlin' +p197693 +sa(dp197694 +g25268 +S'Caddoe Indians Gathering Wild Strawberries' +p197695 +sg25270 +S'George Catlin' +p197696 +sg25273 +S'oil on card mounted on paperboard' +p197697 +sg25275 +S'1861/1869' +p197698 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c76.jpg' +p197699 +sg25267 +g27 +sa(dp197700 +g25273 +S'graphite with gray and brown wash' +p197701 +sg25267 +g27 +sg25275 +S'1912' +p197702 +sg25268 +S'Regatta on the Grand Canal' +p197703 +sg25270 +S'Sir Muirhead Bone' +p197704 +sa(dp197705 +g25268 +S'Indian File - Iowa' +p197706 +sg25270 +S'George Catlin' +p197707 +sg25273 +S'oil on card mounted on paperboard' +p197708 +sg25275 +S'1861/1869' +p197709 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c77.jpg' +p197710 +sg25267 +g27 +sa(dp197711 +g25268 +S'Mired Buffalo and Wolves' +p197712 +sg25270 +S'George Catlin' +p197713 +sg25273 +S'oil on card mounted on paperboard' +p197714 +sg25275 +S'1861/1869' +p197715 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c78.jpg' +p197716 +sg25267 +g27 +sa(dp197717 +g25268 +S'A Whale Ashore - Klahoquat' +p197718 +sg25270 +S'George Catlin' +p197719 +sg25273 +S'oil on card mounted on paperboard' +p197720 +sg25275 +S'1855/1869' +p197721 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c03.jpg' +p197722 +sg25267 +g27 +sa(dp197723 +g25273 +S'oil on card mounted on paperboard' +p197724 +sg25267 +g27 +sg25275 +S'1855/1869' +p197725 +sg25268 +S'Excavating a Canoe - Nayas Indians' +p197726 +sg25270 +S'George Catlin' +p197727 +sa(dp197728 +g25268 +S'Launching a Canoe - Nayas Indians' +p197729 +sg25270 +S'George Catlin' +p197730 +sg25273 +S'oil on card mounted on paperboard' +p197731 +sg25275 +S'1855/1869' +p197732 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c79.jpg' +p197733 +sg25267 +g27 +sa(dp197734 +g25268 +S'An Indian Council - Sioux' +p197735 +sg25270 +S'George Catlin' +p197736 +sg25273 +S'oil on card mounted on paperboard' +p197737 +sg25275 +S'1861/1869' +p197738 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c7a.jpg' +p197739 +sg25267 +g27 +sa(dp197740 +g25268 +S'Grizzly Bears Attacking Buffalo' +p197741 +sg25270 +S'George Catlin' +p197742 +sg25273 +S'oil on card mounted on paperboard' +p197743 +sg25275 +S'1861/1869' +p197744 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c04.jpg' +p197745 +sg25267 +g27 +sa(dp197746 +g25268 +S'Nayas Village at Sunset' +p197747 +sg25270 +S'George Catlin' +p197748 +sg25273 +S'oil on card mounted on paperboard' +p197749 +sg25275 +S'1855/1869' +p197750 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c7b.jpg' +p197751 +sg25267 +g27 +sa(dp197752 +g25268 +S'Nayas Village at Night' +p197753 +sg25270 +S'George Catlin' +p197754 +sg25273 +S'oil on card mounted on paperboard' +p197755 +sg25275 +S'1855/1869' +p197756 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c7c.jpg' +p197757 +sg25267 +g27 +sa(dp197758 +g25268 +S'An Indian Ladder - Nayas Indians' +p197759 +sg25270 +S'George Catlin' +p197760 +sg25273 +S'oil on card mounted on paperboard' +p197761 +sg25275 +S'1855/1869' +p197762 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c7d.jpg' +p197763 +sg25267 +g27 +sa(dp197764 +g25273 +S'graphite and pen and ink with wash' +p197765 +sg25267 +g27 +sg25275 +S'probably c. 1911' +p197766 +sg25268 +S'Road in the Marches' +p197767 +sg25270 +S'Sir Muirhead Bone' +p197768 +sa(dp197769 +g25268 +S'Five Caribbe Indians' +p197770 +sg25270 +S'George Catlin' +p197771 +sg25273 +S'oil on card mounted on paperboard' +p197772 +sg25275 +S'1854/1869' +p197773 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c06.jpg' +p197774 +sg25267 +g27 +sa(dp197775 +g25268 +S'Three Woyaway Indians' +p197776 +sg25270 +S'George Catlin' +p197777 +sg25273 +S'oil on card mounted on paperboard' +p197778 +sg25275 +S'1854/1869' +p197779 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cdf.jpg' +p197780 +sg25267 +g27 +sa(dp197781 +g25268 +S'Three Taruma Indians' +p197782 +sg25270 +S'George Catlin' +p197783 +sg25273 +S'oil on card mounted on paperboard' +p197784 +sg25275 +S'1854/1869' +p197785 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d06.jpg' +p197786 +sg25267 +g27 +sa(dp197787 +g25268 +S'Four Goo-a-give Indians' +p197788 +sg25270 +S'George Catlin' +p197789 +sg25273 +S'oil on card mounted on paperboard' +p197790 +sg25275 +S'1854/1869' +p197791 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c07.jpg' +p197792 +sg25267 +g27 +sa(dp197793 +g25268 +S'Four Arowak Indians' +p197794 +sg25270 +S'George Catlin' +p197795 +sg25273 +S'oil on card mounted on paperboard' +p197796 +sg25275 +S'1854/1869' +p197797 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c08.jpg' +p197798 +sg25267 +g27 +sa(dp197799 +g25268 +S'Zurumati Indians' +p197800 +sg25270 +S'George Catlin' +p197801 +sg25273 +S'oil on card mounted on paperboard' +p197802 +sg25275 +S'1854/1869' +p197803 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000ce0.jpg' +p197804 +sg25267 +g27 +sa(dp197805 +g25268 +S'Three Zurumati Indians' +p197806 +sg25270 +S'George Catlin' +p197807 +sg25273 +S'oil on card mounted on paperboard' +p197808 +sg25275 +S'1854/1869' +p197809 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d07.jpg' +p197810 +sg25267 +g27 +sa(dp197811 +g25268 +S'Four Zurumati Children' +p197812 +sg25270 +S'George Catlin' +p197813 +sg25273 +S'oil on card mounted on paperboard' +p197814 +sg25275 +S'1854/1869' +p197815 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c7e.jpg' +p197816 +sg25267 +g27 +sa(dp197817 +g25268 +S'Four Macouchi Indians' +p197818 +sg25270 +S'George Catlin' +p197819 +sg25273 +S'oil on card mounted on paperboard' +p197820 +sg25275 +S'1854/1869' +p197821 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c80.jpg' +p197822 +sg25267 +g27 +sa(dp197823 +g25268 +S'A Connibo Indian Family' +p197824 +sg25270 +S'George Catlin' +p197825 +sg25273 +S'oil on card mounted on paperboard' +p197826 +sg25275 +S'1854/1869' +p197827 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c81.jpg' +p197828 +sg25267 +g27 +sa(dp197829 +g25273 +S'watercolor and graphite' +p197830 +sg25267 +g27 +sg25275 +S'unknown date\n' +p197831 +sg25268 +S'Roofs of Florence' +p197832 +sg25270 +S'Sir Muirhead Bone' +p197833 +sa(dp197834 +g25268 +S'Bride and Groom on Horseback - Connibo' +p197835 +sg25270 +S'George Catlin' +p197836 +sg25273 +S'oil on card mounted on paperboard' +p197837 +sg25275 +S'1854/1869' +p197838 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c09.jpg' +p197839 +sg25267 +g27 +sa(dp197840 +g25268 +S'A Chetibo Family' +p197841 +sg25270 +S'George Catlin' +p197842 +sg25273 +S'oil on card mounted on paperboard' +p197843 +sg25275 +S'1854/1869' +p197844 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c0a.jpg' +p197845 +sg25267 +g27 +sa(dp197846 +g25268 +S'Four Sepibo Indians' +p197847 +sg25270 +S'George Catlin' +p197848 +sg25273 +S'oil on card mounted on paperboard' +p197849 +sg25275 +S'1854/1869' +p197850 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c82.jpg' +p197851 +sg25267 +g27 +sa(dp197852 +g25268 +S'Five Iquito Indians' +p197853 +sg25270 +S'George Catlin' +p197854 +sg25273 +S'oil on card mounted on paperboard' +p197855 +sg25275 +S'1854/1869' +p197856 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c83.jpg' +p197857 +sg25267 +g27 +sa(dp197858 +g25268 +S'Three Omagua Men' +p197859 +sg25270 +S'George Catlin' +p197860 +sg25273 +S'oil on card mounted on paperboard' +p197861 +sg25275 +S'1854/1869' +p197862 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000ce1.jpg' +p197863 +sg25267 +g27 +sa(dp197864 +g25268 +S'Four Xingu Indians' +p197865 +sg25270 +S'George Catlin' +p197866 +sg25273 +S'oil on card mounted on paperboard' +p197867 +sg25275 +S'1854/1869' +p197868 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c84.jpg' +p197869 +sg25267 +g27 +sa(dp197870 +g25268 +S'Four Angustura Indians' +p197871 +sg25270 +S'George Catlin' +p197872 +sg25273 +S'oil on card mounted on paperboard' +p197873 +sg25275 +S'1854/1869' +p197874 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c85.jpg' +p197875 +sg25267 +g27 +sa(dp197876 +g25268 +S'Four Mura Indians' +p197877 +sg25270 +S'George Catlin' +p197878 +sg25273 +S'oil on card mounted on paperboard' +p197879 +sg25275 +S'1854/1869' +p197880 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c86.jpg' +p197881 +sg25267 +g27 +sa(dp197882 +g25268 +S'Marahua Indians' +p197883 +sg25270 +S'George Catlin' +p197884 +sg25273 +S'oil on card mounted on paperboard' +p197885 +sg25275 +S'1854/1869' +p197886 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d08.jpg' +p197887 +sg25267 +g27 +sa(dp197888 +g25268 +S'Orejona Chief and Family' +p197889 +sg25270 +S'George Catlin' +p197890 +sg25273 +S'oil on card mounted on paperboard' +p197891 +sg25275 +S'1854/1869' +p197892 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000ce2.jpg' +p197893 +sg25267 +g27 +sa(dp197894 +g25273 +S'watercolor and gouache' +p197895 +sg25267 +g27 +sg25275 +S'unknown date\n' +p197896 +sg25268 +S'Old Asturian Houses, Oviedo' +p197897 +sg25270 +S'Sir Muirhead Bone' +p197898 +sa(dp197899 +g25268 +S'Orejona Indians' +p197900 +sg25270 +S'George Catlin' +p197901 +sg25273 +S'oil on card mounted on paperboard' +p197902 +sg25275 +S'1854/1869' +p197903 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000ce3.jpg' +p197904 +sg25267 +g27 +sa(dp197905 +g25268 +S'Three Chaymas Men' +p197906 +sg25270 +S'George Catlin' +p197907 +sg25273 +S'oil on card mounted on paperboard' +p197908 +sg25275 +S'1854/1869' +p197909 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000ce4.jpg' +p197910 +sg25267 +g27 +sa(dp197911 +g25268 +S'Chaco Chief, His Wife, and a Warrior' +p197912 +sg25270 +S'George Catlin' +p197913 +sg25273 +S'oil on card mounted on paperboard' +p197914 +sg25275 +S'1854/1869' +p197915 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c87.jpg' +p197916 +sg25267 +g27 +sa(dp197917 +g25268 +S'Members of the Payaguas Tribe' +p197918 +sg25270 +S'George Catlin' +p197919 +sg25273 +S'oil on card mounted on paperboard' +p197920 +sg25275 +S'1854/1869' +p197921 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d09.jpg' +p197922 +sg25267 +g27 +sa(dp197923 +g25268 +S'Lengua Chief, His Two Wives, and Four Children' +p197924 +sg25270 +S'George Catlin' +p197925 +sg25273 +S'oil on card mounted on paperboard' +p197926 +sg25275 +S'1854/1869' +p197927 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d0a.jpg' +p197928 +sg25267 +g27 +sa(dp197929 +g25268 +S'Lengua Medicine Man with Two Warriors' +p197930 +sg25270 +S'George Catlin' +p197931 +sg25273 +S'oil on card mounted on paperboard' +p197932 +sg25275 +S'1854/1869' +p197933 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000ce5.jpg' +p197934 +sg25267 +g27 +sa(dp197935 +g25268 +S'Members of the Botocudo Tribe' +p197936 +sg25270 +S'George Catlin' +p197937 +sg25273 +S'oil on card mounted on paperboard' +p197938 +sg25275 +S'1854/1869' +p197939 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000ce6.jpg' +p197940 +sg25267 +g27 +sa(dp197941 +g25268 +S'Botocudo Chief, His Wife, and a Young Man' +p197942 +sg25270 +S'George Catlin' +p197943 +sg25273 +S'oil on card mounted on paperboard' +p197944 +sg25275 +S'1854/1869' +p197945 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c88.jpg' +p197946 +sg25267 +g27 +sa(dp197947 +g25268 +S'Three Auca Children' +p197948 +sg25270 +S'George Catlin' +p197949 +sg25273 +S'oil on card mounted on paperboard' +p197950 +sg25275 +S'1854/1869' +p197951 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d0b.jpg' +p197952 +sg25267 +g27 +sa(dp197953 +g25268 +S'A Puelchee Chief and Two Young Warriors' +p197954 +sg25270 +S'George Catlin' +p197955 +sg25273 +S'oil on card mounted on paperboard' +p197956 +sg25275 +S'1854/1869' +p197957 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d0c.jpg' +p197958 +sg25267 +g27 +sa(dp197959 +g25273 +S'watercolor' +p197960 +sg25267 +g27 +sg25275 +S'unknown date\n' +p197961 +sg25268 +S'Old and New Oviedo' +p197962 +sg25270 +S'Sir Muirhead Bone' +p197963 +sa(dp197964 +g25268 +S'Patagon Chief, His Brother, and Daughter' +p197965 +sg25270 +S'George Catlin' +p197966 +sg25273 +S'oil on card mounted on paperboard' +p197967 +sg25275 +S'1856/1869' +p197968 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d0d.jpg' +p197969 +sg25267 +g27 +sa(dp197970 +g25268 +S'Three Young Tobos Men' +p197971 +sg25270 +S'George Catlin' +p197972 +sg25273 +S'oil on card mounted on paperboard' +p197973 +sg25275 +S'1854/1869' +p197974 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d0e.jpg' +p197975 +sg25267 +g27 +sa(dp197976 +g25268 +S'Four Fuegian Indians' +p197977 +sg25270 +S'George Catlin' +p197978 +sg25273 +S'oil on card mounted on paperboard' +p197979 +sg25275 +S'1856/1869' +p197980 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c0d.jpg' +p197981 +sg25267 +g27 +sa(dp197982 +g25268 +S'The Great Ant-Eater' +p197983 +sg25270 +S'George Catlin' +p197984 +sg25273 +S'oil on card mounted on paperboard' +p197985 +sg25275 +S'1854/1869' +p197986 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c0e.jpg' +p197987 +sg25267 +g27 +sa(dp197988 +g25268 +S'The Handsome Dance - Goo-a-give' +p197989 +sg25270 +S'George Catlin' +p197990 +sg25273 +S'oil on card mounted on paperboard' +p197991 +sg25275 +S'1854/1869' +p197992 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c89.jpg' +p197993 +sg25267 +g27 +sa(dp197994 +g25268 +S'Ostrich Chase, Buenos Aires - Auca' +p197995 +sg25270 +S'George Catlin' +p197996 +sg25273 +S'oil on card mounted on paperboard' +p197997 +sg25275 +S'1854/1869' +p197998 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000ce7.jpg' +p197999 +sg25267 +g27 +sa(dp198000 +g25268 +S'Pont de Palmiers and Tiger Shooting' +p198001 +sg25270 +S'George Catlin' +p198002 +sg25273 +S'oil on card mounted on paperboard' +p198003 +sg25275 +S'1854/1869' +p198004 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d0f.jpg' +p198005 +sg25267 +g27 +sa(dp198006 +g25268 +S'Turtle Hunt' +p198007 +sg25270 +S'George Catlin' +p198008 +sg25273 +S'oil on canvas' +p198009 +sg25275 +S'1854/1869' +p198010 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d10.jpg' +p198011 +sg25267 +g27 +sa(dp198012 +g25268 +S'A Fight with Peccaries - Caribbe' +p198013 +sg25270 +S'George Catlin' +p198014 +sg25273 +S'oil on canvas' +p198015 +sg25275 +S'1854/1869' +p198016 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c0f.jpg' +p198017 +sg25267 +g27 +sa(dp198018 +g25268 +S'Ignis Fatuus - Zurumati' +p198019 +sg25270 +S'George Catlin' +p198020 +sg25273 +S'oil on canvas' +p198021 +sg25275 +S'1854/1869' +p198022 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c8a.jpg' +p198023 +sg25267 +g27 +sa(dp198024 +g25273 +S'charcoal with graphite and blue wash on blue paper' +p198025 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198026 +sg25268 +S'San Frediano' +p198027 +sg25270 +S'Sir Muirhead Bone' +p198028 +sa(dp198029 +g25268 +S'View of the Pampa del Sacramento' +p198030 +sg25270 +S'George Catlin' +p198031 +sg25273 +S'oil on card mounted on paperboard' +p198032 +sg25275 +S'1854/1869' +p198033 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000ce8.jpg' +p198034 +sg25267 +g27 +sa(dp198035 +g25268 +S'Shore of the Essequibo' +p198036 +sg25270 +S'George Catlin' +p198037 +sg25273 +S'oil on card mounted on paperboard' +p198038 +sg25275 +S'1854/1869' +p198039 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000ce9.jpg' +p198040 +sg25267 +g27 +sa(dp198041 +g25268 +S'Luxuriant Forest on the Bank of the Amazon' +p198042 +sg25270 +S'George Catlin' +p198043 +sg25273 +S'oil on card mounted on paperboard' +p198044 +sg25275 +S'1854/1869' +p198045 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cea.jpg' +p198046 +sg25267 +g27 +sa(dp198047 +g25268 +S'A Caribbe Village in Dutch Guiana' +p198048 +sg25270 +S'George Catlin' +p198049 +sg25273 +S'oil on card mounted on paperboard' +p198050 +sg25275 +S'1854/1869' +p198051 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c8b.jpg' +p198052 +sg25267 +g27 +sa(dp198053 +g25268 +S'View in the Crystal Mountains' +p198054 +sg25270 +S'George Catlin' +p198055 +sg25273 +S'oil on card mounted on paperboard' +p198056 +sg25275 +S'1854/1869' +p198057 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d11.jpg' +p198058 +sg25267 +g27 +sa(dp198059 +g25268 +S'Arowak Village' +p198060 +sg25270 +S'George Catlin' +p198061 +sg25273 +S'oil on card mounted on paperboard' +p198062 +sg25275 +S'1854/1869' +p198063 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c10.jpg' +p198064 +sg25267 +g27 +sa(dp198065 +g25268 +S'The Beetle Crevice' +p198066 +sg25270 +S'George Catlin' +p198067 +sg25273 +S'oil on card mounted on paperboard' +p198068 +sg25275 +S'1854/1869' +p198069 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c11.jpg' +p198070 +sg25267 +g27 +sa(dp198071 +g25268 +S'Shore of the Trombetas' +p198072 +sg25270 +S'George Catlin' +p198073 +sg25273 +S'oil on card mounted on paperboard' +p198074 +sg25275 +S'1854/1869' +p198075 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000ceb.jpg' +p198076 +sg25267 +g27 +sa(dp198077 +g25268 +S'An Indian Village - Shore of the Amazon' +p198078 +sg25270 +S'George Catlin' +p198079 +sg25273 +S'oil on card mounted on paperboard' +p198080 +sg25275 +S'1854/1869' +p198081 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c12.jpg' +p198082 +sg25267 +g27 +sa(dp198083 +g25268 +S'Interior of an Amazon Forest - Zurumati' +p198084 +sg25270 +S'George Catlin' +p198085 +sg25273 +S'oil on card mounted on paperboard' +p198086 +sg25275 +S'1854/1869' +p198087 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cec.jpg' +p198088 +sg25267 +g27 +sa(dp198089 +g25273 +S'graphite' +p198090 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198091 +sg25268 +S'Santa Maria Novella, Florence' +p198092 +sg25270 +S'Sir Muirhead Bone' +p198093 +sa(dp198094 +g25273 +S'oil on card mounted on paperboard' +p198095 +sg25267 +g27 +sg25275 +S'1854/1869' +p198096 +sg25268 +S'An Amazon Forest - Looking Ashore' +p198097 +sg25270 +S'George Catlin' +p198098 +sa(dp198099 +g25268 +S'Rhododendron Mountain' +p198100 +sg25270 +S'George Catlin' +p198101 +sg25273 +S'oil on card mounted on paperboard' +p198102 +sg25275 +S'1854/1869' +p198103 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000ced.jpg' +p198104 +sg25267 +g27 +sa(dp198105 +g25268 +S'View of the Crystal Mountains, Brazil' +p198106 +sg25270 +S'George Catlin' +p198107 +sg25273 +S'oil on card mounted on paperboard' +p198108 +sg25275 +S'1854/1869' +p198109 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d12.jpg' +p198110 +sg25267 +g27 +sa(dp198111 +g25268 +S'Return from a Turtle Hunt - Connibo' +p198112 +sg25270 +S'George Catlin' +p198113 +sg25273 +S'oil on card mounted on paperboard' +p198114 +sg25275 +S'1854/1869' +p198115 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cee.jpg' +p198116 +sg25267 +g27 +sa(dp198117 +g25268 +S'Wild Cattle Grazing on the Pampa del Sacramento' +p198118 +sg25270 +S'George Catlin' +p198119 +sg25273 +S'oil on card mounted on paperboard' +p198120 +sg25275 +S'1854/1869' +p198121 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d13.jpg' +p198122 +sg25267 +g27 +sa(dp198123 +g25268 +S'Spearing by Moonlight - Chaco' +p198124 +sg25270 +S'George Catlin' +p198125 +sg25273 +S'oil on card mounted on paperboard' +p198126 +sg25275 +S'1854/1869' +p198127 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cef.jpg' +p198128 +sg25267 +g27 +sa(dp198129 +g25268 +S'Driving the Pampas for Wild Cattle - Connibo' +p198130 +sg25270 +S'George Catlin' +p198131 +sg25273 +S'oil on card mounted on paperboard' +p198132 +sg25275 +S'1854/1869' +p198133 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c8d.jpg' +p198134 +sg25267 +g27 +sa(dp198135 +g25268 +S'A Small Orejona Village' +p198136 +sg25270 +S'George Catlin' +p198137 +sg25273 +S'oil on card mounted on paperboard' +p198138 +sg25275 +S'1854/1869' +p198139 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cf0.jpg' +p198140 +sg25267 +g27 +sa(dp198141 +g25268 +S'An Omagua Village - Boat Sketch' +p198142 +sg25270 +S'George Catlin' +p198143 +sg25273 +S'oil on card mounted on paperboard' +p198144 +sg25275 +S'1854/1869' +p198145 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d14.jpg' +p198146 +sg25267 +g27 +sa(dp198147 +g25268 +S'A Mura Encampment - Boat Sketch' +p198148 +sg25270 +S'George Catlin' +p198149 +sg25273 +S'oil on card mounted on paperboard' +p198150 +sg25275 +S'1854/1869' +p198151 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d15.jpg' +p198152 +sg25267 +g27 +sa(dp198153 +g25273 +S'watercolor and graphite' +p198154 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198155 +sg25268 +S'Strait of Bonifacio, Sardinian Shore' +p198156 +sg25270 +S'Sir Muirhead Bone' +p198157 +sa(dp198158 +g25268 +S'A Mayoruna Village' +p198159 +sg25270 +S'George Catlin' +p198160 +sg25273 +S'oil on card mounted on paperboard' +p198161 +sg25275 +S'1854/1869' +p198162 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cf1.jpg' +p198163 +sg25267 +g27 +sa(dp198164 +g25268 +S'A Yahua Village' +p198165 +sg25270 +S'George Catlin' +p198166 +sg25273 +S'oil on card mounted on paperboard' +p198167 +sg25275 +S'1854/1869' +p198168 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cf2.jpg' +p198169 +sg25267 +g27 +sa(dp198170 +g25268 +S'View of the Shore of the Amazon - Boat Sketch' +p198171 +sg25270 +S'George Catlin' +p198172 +sg25273 +S'oil on card mounted on paperboard' +p198173 +sg25275 +S'1854/1869' +p198174 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d16.jpg' +p198175 +sg25267 +g27 +sa(dp198176 +g25268 +S'Encampment of Cocomas - Looking Ashore' +p198177 +sg25270 +S'George Catlin' +p198178 +sg25273 +S'oil on card mounted on paperboard' +p198179 +sg25275 +S'1854/1869' +p198180 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c8e.jpg' +p198181 +sg25267 +g27 +sa(dp198182 +g25268 +S'Tapuya Encampment' +p198183 +sg25270 +S'George Catlin' +p198184 +sg25273 +S'oil on card mounted on paperboard' +p198185 +sg25275 +S'1854/1869' +p198186 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cf3.jpg' +p198187 +sg25267 +g27 +sa(dp198188 +g25268 +S'Mauhees Encampment' +p198189 +sg25270 +S'George Catlin' +p198190 +sg25273 +S'oil on card mounted on paperboard' +p198191 +sg25275 +S'1854/1869' +p198192 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d17.jpg' +p198193 +sg25267 +g27 +sa(dp198194 +g25268 +S'A Lagoon of the Upper Amazon' +p198195 +sg25270 +S'George Catlin' +p198196 +sg25273 +S'oil on canvas' +p198197 +sg25275 +S'1854/1869' +p198198 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d18.jpg' +p198199 +sg25267 +g27 +sa(dp198200 +g25273 +S'oil on card mounted on paperboard' +p198201 +sg25267 +g27 +sg25275 +S'1854/1869' +p198202 +sg25268 +S'Indian Camp in the Forest' +p198203 +sg25270 +S'George Catlin' +p198204 +sa(dp198205 +g25268 +S'Painting the Tobos Chief' +p198206 +sg25270 +S'George Catlin' +p198207 +sg25273 +S'oil on card mounted on paperboard' +p198208 +sg25275 +S'1854/1869' +p198209 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d19.jpg' +p198210 +sg25267 +g27 +sa(dp198211 +g25268 +S'A Small Tobos Village' +p198212 +sg25270 +S'George Catlin' +p198213 +sg25273 +S'oil on card mounted on paperboard' +p198214 +sg25275 +S'1854/1869' +p198215 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d1a.jpg' +p198216 +sg25267 +g27 +sa(dp198217 +g25273 +S'watercolor and graphite on laid paper' +p198218 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198219 +sg25268 +S'Near Tearro, Campania' +p198220 +sg25270 +S'Sir Muirhead Bone' +p198221 +sa(dp198222 +g25268 +S'Ignis Fatuus, Rio Uruguay' +p198223 +sg25270 +S'George Catlin' +p198224 +sg25273 +S'oil on card mounted on paperboard' +p198225 +sg25275 +S'1854/1869' +p198226 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c13.jpg' +p198227 +sg25267 +g27 +sa(dp198228 +g25268 +S"An Alligator's Nest" +p198229 +sg25270 +S'George Catlin' +p198230 +sg25273 +S'oil on card mounted on paperboard' +p198231 +sg25275 +S'1854/1869' +p198232 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c14.jpg' +p198233 +sg25267 +g27 +sa(dp198234 +g25268 +S'Entrance to a Lagoon, Shore of the Amazon' +p198235 +sg25270 +S'George Catlin' +p198236 +sg25273 +S'oil on card mounted on paperboard' +p198237 +sg25275 +S'1854/1869' +p198238 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c90.jpg' +p198239 +sg25267 +g27 +sa(dp198240 +g25268 +S'A Connibo Village' +p198241 +sg25270 +S'George Catlin' +p198242 +sg25273 +S'oil on card mounted on paperboard' +p198243 +sg25275 +S'1854/1869' +p198244 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c91.jpg' +p198245 +sg25267 +g27 +sa(dp198246 +g25268 +S'Connibos Starting for Wild Horses' +p198247 +sg25270 +S'George Catlin' +p198248 +sg25273 +S'oil on card mounted on paperboard' +p198249 +sg25275 +S'1854/1869' +p198250 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c15.jpg' +p198251 +sg25267 +g27 +sa(dp198252 +g25273 +S'oil on card mounted on paperboard' +p198253 +sg25267 +g27 +sg25275 +S'1854/1869' +p198254 +sg25268 +S'Grand Lavoir, Pampa del Sacramento' +p198255 +sg25270 +S'George Catlin' +p198256 +sa(dp198257 +g25268 +S'Painting the Lengua Chief' +p198258 +sg25270 +S'George Catlin' +p198259 +sg25273 +S'oil on card mounted on paperboard' +p198260 +sg25275 +S'1854/1869' +p198261 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d1b.jpg' +p198262 +sg25267 +g27 +sa(dp198263 +g25268 +S'Shore of the Uruguay - Making a Sketch' +p198264 +sg25270 +S'George Catlin' +p198265 +sg25273 +S'oil on card mounted on paperboard' +p198266 +sg25275 +S'1854/1869' +p198267 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d1c.jpg' +p198268 +sg25267 +g27 +sa(dp198269 +g25273 +S'oil on card mounted on paperboard' +p198270 +sg25267 +g27 +sg25275 +S'1854/1869' +p198271 +sg25268 +S'Lengua Indians Ascending the Rapids of the Rio Uruguay' +p198272 +sg25270 +S'George Catlin' +p198273 +sa(dp198274 +g25273 +S'oil on card mounted on paperboard' +p198275 +sg25267 +g27 +sg25275 +S'1854/1869' +p198276 +sg25268 +S'A Small Lengua Village' +p198277 +sg25270 +S'George Catlin' +p198278 +sa(dp198279 +g25273 +S'watercolor and charcoal' +p198280 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198281 +sg25268 +S'Villa of Tiberius, Capri' +p198282 +sg25270 +S'Sir Muirhead Bone' +p198283 +sa(dp198284 +g25268 +S'A Small Lengua Village, Uruguay' +p198285 +sg25270 +S'George Catlin' +p198286 +sg25273 +S'oil on card mounted on paperboard' +p198287 +sg25275 +S'1854/1869' +p198288 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d1d.jpg' +p198289 +sg25267 +g27 +sa(dp198290 +g25268 +S'A Small Village - Payaguas Indians' +p198291 +sg25270 +S'George Catlin' +p198292 +sg25273 +S'oil on card mounted on paperboard' +p198293 +sg25275 +S'1854/1869' +p198294 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d1e.jpg' +p198295 +sg25267 +g27 +sa(dp198296 +g25268 +S'A Small Village of Remos Indians' +p198297 +sg25270 +S'George Catlin' +p198298 +sg25273 +S'oil on card mounted on paperboard' +p198299 +sg25275 +S'1854/1869' +p198300 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d1f.jpg' +p198301 +sg25267 +g27 +sa(dp198302 +g25268 +S'A Sepibo Village' +p198303 +sg25270 +S'George Catlin' +p198304 +sg25273 +S'oil on card mounted on paperboard' +p198305 +sg25275 +S'1854/1869' +p198306 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d20.jpg' +p198307 +sg25267 +g27 +sa(dp198308 +g25268 +S'Mouth of the Rio Purus' +p198309 +sg25270 +S'George Catlin' +p198310 +sg25273 +S'oil on card mounted on paperboard' +p198311 +sg25275 +S'1854/1869' +p198312 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cf4.jpg' +p198313 +sg25267 +g27 +sa(dp198314 +g25268 +S'Halting to Make a Sketch' +p198315 +sg25270 +S'George Catlin' +p198316 +sg25273 +S'oil on card mounted on paperboard' +p198317 +sg25275 +S'1854/1869' +p198318 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c16.jpg' +p198319 +sg25267 +g27 +sa(dp198320 +g25268 +S'A Connibo Wigwam' +p198321 +sg25270 +S'George Catlin' +p198322 +sg25273 +S'oil on card mounted on paperboard' +p198323 +sg25275 +S'1854/1869' +p198324 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c93.jpg' +p198325 +sg25267 +g27 +sa(dp198326 +g25268 +S'Pacapacurus Village' +p198327 +sg25270 +S'George Catlin' +p198328 +sg25273 +S'oil on card mounted on paperboard' +p198329 +sg25275 +S'1854/1869' +p198330 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d21.jpg' +p198331 +sg25267 +g27 +sa(dp198332 +g25268 +S'Spearing by Torchlight' +p198333 +sg25270 +S'George Catlin' +p198334 +sg25273 +S'oil on card mounted on paperboard' +p198335 +sg25275 +S'1854/1869' +p198336 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d22.jpg' +p198337 +sg25267 +g27 +sa(dp198338 +g25273 +S'oil on card mounted on paperboard' +p198339 +sg25267 +g27 +sg25275 +S'1861/1869' +p198340 +sg25268 +S'Chief and Members of the Konza Tribe' +p198341 +sg25270 +S'George Catlin' +p198342 +sa(dp198343 +g25273 +S'graphite' +p198344 +sg25267 +g27 +sg25275 +S'1912' +p198345 +sg25268 +S'View of Porta del Popolo, Rome' +p198346 +sg25270 +S'Sir Muirhead Bone' +p198347 +sa(dp198348 +g25268 +S'Indians and Horses in the Forest' +p198349 +sg25270 +S'George Catlin' +p198350 +sg25273 +S'oil on card mounted on paperboard' +p198351 +sg25275 +S'1854/1869' +p198352 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d23.jpg' +p198353 +sg25267 +g27 +sa(dp198354 +g25268 +S'Omaha Chief, His Wife, and a Warrior' +p198355 +sg25270 +S'George Catlin' +p198356 +sg25273 +S'oil on card mounted on paperboard' +p198357 +sg25275 +S'1861' +p198358 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c95.jpg' +p198359 +sg25267 +g27 +sa(dp198360 +g25268 +S'Black Hawk and the Prophet - Saukie' +p198361 +sg25270 +S'George Catlin' +p198362 +sg25273 +S'oil on card mounted on paperboard' +p198363 +sg25275 +S'1861/1869' +p198364 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00065/a00065f9.jpg' +p198365 +sg25267 +g27 +sa(dp198366 +g25268 +S'War Dance of the Apachees' +p198367 +sg25270 +S'George Catlin' +p198368 +sg25273 +S'oil on card mounted on paperboard' +p198369 +sg25275 +S'1855/1869' +p198370 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c96.jpg' +p198371 +sg25267 +g27 +sa(dp198372 +g25268 +S'The Expedition Leaving Fort Frontenac on Lake Ontario. November 18, 1678' +p198373 +sg25270 +S'George Catlin' +p198374 +sg25273 +S'oil on canvas' +p198375 +sg25275 +S'1847/1848' +p198376 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cf5.jpg' +p198377 +sg25267 +g27 +sa(dp198378 +g25268 +S'The Expedition Encamped below the Falls of Niagara. January 20, 1679' +p198379 +sg25270 +S'George Catlin' +p198380 +sg25273 +S'oil on canvas' +p198381 +sg25275 +S'1847/1848' +p198382 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cf6.jpg' +p198383 +sg25267 +g27 +sa(dp198384 +g25268 +S'Portage Around the Falls of Niagara at Table Rock' +p198385 +sg25270 +S'George Catlin' +p198386 +sg25273 +S'oil on canvas' +p198387 +sg25275 +S'1847/1848' +p198388 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cf7.jpg' +p198389 +sg25267 +g27 +sa(dp198390 +g25268 +S'La Salle Driving the First Bolt for the Griffin. January 26, 1679' +p198391 +sg25270 +S'George Catlin' +p198392 +sg25273 +S'oil on canvas' +p198393 +sg25275 +S'1847/1848' +p198394 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cf8.jpg' +p198395 +sg25267 +g27 +sa(dp198396 +g25268 +S'Returning to Fort Frontenac by Sled. February 1679' +p198397 +sg25270 +S'George Catlin' +p198398 +sg25273 +S'oil on canvas' +p198399 +sg25275 +S'1847/1848' +p198400 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d24.jpg' +p198401 +sg25267 +g27 +sa(dp198402 +g25268 +S'Launching of the Griffin. July 1679' +p198403 +sg25270 +S'George Catlin' +p198404 +sg25273 +S'oil on canvas' +p198405 +sg25275 +S'1847/1848' +p198406 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cf9.jpg' +p198407 +sg25267 +g27 +sa(dp198408 +g25273 +S'watercolor and graphite' +p198409 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198410 +sg25268 +S'Gulf of Naples' +p198411 +sg25270 +S'Sir Muirhead Bone' +p198412 +sa(dp198413 +g25268 +S'First Sailing of the Griffin on Lake Erie. August 7, 1679' +p198414 +sg25270 +S'George Catlin' +p198415 +sg25273 +S'oil on canvas' +p198416 +sg25275 +S'1847/1848' +p198417 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d25.jpg' +p198418 +sg25267 +g27 +sa(dp198419 +g25268 +S'The Griffin Entering the Harbor at Mackinaw. August 27, 1679' +p198420 +sg25270 +S'George Catlin' +p198421 +sg25273 +S'oil on canvas' +p198422 +sg25275 +S'1847/1848' +p198423 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d26.jpg' +p198424 +sg25267 +g27 +sa(dp198425 +g25268 +S'La Salle and Party Arrive at the Village of the Illinois. January 1, 1680' +p198426 +sg25270 +S'George Catlin' +p198427 +sg25273 +S'oil on canvas' +p198428 +sg25275 +S'1847/1848' +p198429 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cfa.jpg' +p198430 +sg25267 +g27 +sa(dp198431 +g25268 +S"La Salle's Party Feasted in the Illinois Village. January 2, 1680" +p198432 +sg25270 +S'George Catlin' +p198433 +sg25273 +S'oil on canvas' +p198434 +sg25275 +S'1847/1848' +p198435 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cfb.jpg' +p198436 +sg25267 +S"Abandoning his career as a barrister, George Catlin moved to Philadelphia and\nset up shop as a portrait painter. A visiting delegation of Indians rekindled his\nlifelong interest in native Americans, and shortly thereafter, he began making plans\nto travel west.\n Inspired by the examples of Charles Willson Peale's art, work on natural history,\nand ethnographic museum, the explorer-artist set out with easel and paints strapped\nto his back on a mission to record the vanishing tribes. After exhibiting his work\nin several East Coast cities, Catlin set sail for Europe in 1839 with eight tons\nof Indian artifacts as well as his own pictures. His spirited lectures and his collections\ncaptivated audiences in London and Paris.\n In 1847, King Louis Philippe commissioned him to do a series of paintings illustrating\nthe voyages of La Salle, the seventeenth-century French explorer of the Great Lakes\nand Mississippi River. \n " +p198437 +sa(dp198438 +g25268 +S'De Tonty Suing for Peace in the Iroquois Village. January 2, 1680' +p198439 +sg25270 +S'George Catlin' +p198440 +sg25273 +S'oil on canvas' +p198441 +sg25275 +S'1847/1848' +p198442 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d27.jpg' +p198443 +sg25267 +g27 +sa(dp198444 +g25268 +S'Father Hennepin and Two Companions Made Prisoners by the Sioux. April 1680' +p198445 +sg25270 +S'George Catlin' +p198446 +sg25273 +S'oil on canvas' +p198447 +sg25275 +S'1847/1848' +p198448 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d28.jpg' +p198449 +sg25267 +g27 +sa(dp198450 +g25268 +S"Father Hennepin and Companions Passing Lover's Leap. April 1680" +p198451 +sg25270 +S'George Catlin' +p198452 +sg25273 +S'oil on canvas' +p198453 +sg25275 +S'1847/1848' +p198454 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d29.jpg' +p198455 +sg25267 +g27 +sa(dp198456 +g25268 +S'Father Hennepin and Companions at the Falls of St. Anthony. May 1, 1680' +p198457 +sg25270 +S'George Catlin' +p198458 +sg25273 +S'oil on canvas' +p198459 +sg25275 +S'1847/1848' +p198460 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d2a.jpg' +p198461 +sg25267 +g27 +sa(dp198462 +g25268 +S'Father Hennepin Leaving the Mississippi to Join La Salle. May 8, 1680' +p198463 +sg25270 +S'George Catlin' +p198464 +sg25273 +S'oil on canvas' +p198465 +sg25275 +S'1847/1848' +p198466 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d2b.jpg' +p198467 +sg25267 +g27 +sa(dp198468 +g25268 +S'La Salle Crossing Lake Michigan on the Ice. December 8, 1681' +p198469 +sg25270 +S'George Catlin' +p198470 +sg25273 +S'oil on canvas' +p198471 +sg25275 +S'1847/1848' +p198472 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cfc.jpg' +p198473 +sg25267 +g27 +sa(dp198474 +g25273 +S'watercolor and graphite' +p198475 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198476 +sg25268 +S'Lido, Venice' +p198477 +sg25270 +S'Sir Muirhead Bone' +p198478 +sa(dp198479 +g25268 +S"La Salle's Party Entering the Mississippi in Canoes. February 6, 1682" +p198480 +sg25270 +S'George Catlin' +p198481 +sg25273 +S'oil on canvas' +p198482 +sg25275 +S'1847/1848' +p198483 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cfd.jpg' +p198484 +sg25267 +g27 +sa(dp198485 +g25268 +S'La Salle Taking Possession of the Land at the Mouth of the Arkansas. March 10, 1682' +p198486 +sg25270 +S'George Catlin' +p198487 +sg25273 +S'oil on canvas' +p198488 +sg25275 +S'1847/1848' +p198489 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cfe.jpg' +p198490 +sg25267 +g27 +sa(dp198491 +g25268 +S'Chief of the Taensa Indians Receiving La Salle. March 20, 1682' +p198492 +sg25270 +S'George Catlin' +p198493 +sg25273 +S'oil on canvas' +p198494 +sg25275 +S'1847/1848' +p198495 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000cff.jpg' +p198496 +sg25267 +g27 +sa(dp198497 +g25268 +S'La Salle Erecting a Cross and Taking Possession of the Land. March 25, 1682' +p198498 +sg25270 +S'George Catlin' +p198499 +sg25273 +S'oil on canvas' +p198500 +sg25275 +S'1847/1848' +p198501 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d00.jpg' +p198502 +sg25267 +g27 +sa(dp198503 +g25268 +S'La Salle Claiming Louisiana for France. April 9, 1682' +p198504 +sg25270 +S'George Catlin' +p198505 +sg25273 +S'oil on canvas' +p198506 +sg25275 +S'1847/1848' +p198507 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d01.jpg' +p198508 +sg25267 +g27 +sa(dp198509 +g25268 +S'Wreck of the Aimable, on the Coast of Texas. 1685' +p198510 +sg25270 +S'George Catlin' +p198511 +sg25273 +S'oil on canvas' +p198512 +sg25275 +S'1847/1848' +p198513 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d2c.jpg' +p198514 +sg25267 +g27 +sa(dp198515 +g25268 +S'La Salle Meets a War Party of Cenis Indians on a Texas Prairie. April 25, 1686' +p198516 +sg25270 +S'George Catlin' +p198517 +sg25273 +S'oil on canvas' +p198518 +sg25275 +S'1847/1848' +p198519 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d02.jpg' +p198520 +sg25267 +g27 +sa(dp198521 +g25268 +S'Expedition Encamped on a Texas Prairie. April 1686' +p198522 +sg25270 +S'George Catlin' +p198523 +sg25273 +S'oil on canvas' +p198524 +sg25275 +S'1847/1848' +p198525 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d2d.jpg' +p198526 +sg25267 +g27 +sa(dp198527 +g25268 +S'La Salle Received in the Village of the Cenis Indians. May 6, 1686' +p198528 +sg25270 +S'George Catlin' +p198529 +sg25273 +S'oil on canvas' +p198530 +sg25275 +S'1847/1848' +p198531 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d03.jpg' +p198532 +sg25267 +g27 +sa(dp198533 +g25268 +S'La Salle Assassinated by Duhaut. May 19, 1686' +p198534 +sg25270 +S'George Catlin' +p198535 +sg25273 +S'oil on canvas' +p198536 +sg25275 +S'1847/1848' +p198537 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d04.jpg' +p198538 +sg25267 +g27 +sa(dp198539 +g25273 +S'charcoal and graphite' +p198540 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198541 +sg25268 +S'The Riding School, Karlsruhe' +p198542 +sg25270 +S'Sir Muirhead Bone' +p198543 +sa(dp198544 +g25268 +S'Vapor Bath - Minatarree' +p198545 +sg25270 +S'George Catlin' +p198546 +sg25273 +S'oil on card mounted on paperboard' +p198547 +sg25275 +S'1861/1869' +p198548 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c99.jpg' +p198549 +sg25267 +g27 +sa(dp198550 +g25273 +S'oil on card mounted on paperboard' +p198551 +sg25267 +g27 +sg25275 +S'1861/1869' +p198552 +sg25268 +S'Two Sioux Chiefs, a Medicine Man, and a Woman with a Child' +p198553 +sg25270 +S'George Catlin' +p198554 +sa(dp198555 +g25268 +S'Facsimile of a Mandan Robe' +p198556 +sg25270 +S'George Catlin' +p198557 +sg25273 +S'oil on card mounted on paperboard' +p198558 +sg25275 +S'1861/1869' +p198559 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c9a.jpg' +p198560 +sg25267 +g27 +sa(dp198561 +g25268 +S'Buffalo Lancing in the Snow Drifts - Sioux' +p198562 +sg25270 +S'George Catlin' +p198563 +sg25273 +S'oil on canvas mounted on paperboard' +p198564 +sg25275 +S'1861/1869' +p198565 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c17.jpg' +p198566 +sg25267 +g27 +sa(dp198567 +g25268 +S'See-non-ty-a, an Iowa Medicine Man' +p198568 +sg25270 +S'George Catlin' +p198569 +sg25273 +S'oil on canvas' +p198570 +sg25275 +S'1844/1845' +p198571 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c18.jpg' +p198572 +sg25267 +g27 +sa(dp198573 +g25268 +S'The White Cloud, Head Chief of the Iowas' +p198574 +sg25270 +S'George Catlin' +p198575 +sg25273 +S'oil on canvas' +p198576 +sg25275 +S'1844/1845' +p198577 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c19.jpg' +p198578 +sg25267 +g27 +sa(dp198579 +g25268 +S'The Female Eagle - Shawano' +p198580 +sg25270 +S'George Catlin' +p198581 +sg25273 +S'oil on canvas' +p198582 +sg25275 +S'1830' +p198583 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c9b.jpg' +p198584 +sg25267 +g27 +sa(dp198585 +g25268 +S'Boy Chief - Ojibbeway' +p198586 +sg25270 +S'George Catlin' +p198587 +sg25273 +S'oil on canvas' +p198588 +sg25275 +S'1843' +p198589 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c9c.jpg' +p198590 +sg25267 +g27 +sa(dp198591 +g25268 +S'A Crow Village of Skin Tents on the Salmon River' +p198592 +sg25270 +S'George Catlin' +p198593 +sg25273 +S'oil on card mounted on paperboard' +p198594 +sg25275 +S'1855/1869' +p198595 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000c/a0000c9d.jpg' +p198596 +sg25267 +g27 +sa(dp198597 +g25268 +S'Spearing by Torchlight on the Amazon' +p198598 +sg25270 +S'George Catlin' +p198599 +sg25273 +S'oil on card mounted on paperboard' +p198600 +sg25275 +S'1854/1869' +p198601 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d05.jpg' +p198602 +sg25267 +g27 +sa(dp198603 +g25273 +S'charcoal and graphite' +p198604 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198605 +sg25268 +S'Tingstade Church, Gotland' +p198606 +sg25270 +S'Sir Muirhead Bone' +p198607 +sa(dp198608 +g25273 +S'oil on canvas' +p198609 +sg25267 +g27 +sg25275 +S'1965' +p198610 +sg25268 +S'David E. Finley' +p198611 +sg25270 +S'Bernard Hailstone' +p198612 +sa(dp198613 +g25273 +S'oil on canvas' +p198614 +sg25267 +g27 +sg25275 +S'1965' +p198615 +sg25268 +S'John Walker' +p198616 +sg25270 +S'Bernard Hailstone' +p198617 +sa(dp198618 +g25268 +S'Saint George and the Dragon' +p198619 +sg25270 +S'Rogier van der Weyden' +p198620 +sg25273 +S'oil on panel' +p198621 +sg25275 +S'c. 1432/1435' +p198622 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005a5.jpg' +p198623 +sg25267 +S"The special mixture of reality, fantasy, and virtuosity that is particular\nto early Netherlandish painting is nowhere more apparent than in this exquisite\npanel. In an episode from the popular legend, Saint George in black Gothic armor\npins the dragon to the ground with his lance; at the left kneels the fashionably\nattired Princess Cleodolinda who was to have been sacrificed to the dragon. George\nwas a Roman soldier living in third-century Cappadocia, but the setting has here\nbeen transformed from ancient Asia Minor to the contemporary Belgian countryside.\n Passing through a series of overlapping hills, we come upon a walled city surrounded\nby water and dominated by a castle perched atop a fantastic mountain. This scene\nis almost certainly imaginary and yet is rendered with the greatest clarity and\nrealism. The attention to specific detail has led to the suggestion that the artist\nmade use of a magnifying glass.\n The artist's interest in the depiction of light -- reflecting on George's armor and\nthe dragon's scales -- and atmospheric effects shows the influence of Jan van Eyck.\nThe painting is also stylistically related to manuscript illumination that would\nsuggest this is an early work. The panel may originally have been part of a larger\nensemble, perhaps a diptych, and was most likely used for private devotion.\n " +p198624 +sa(dp198625 +g25268 +S'Saskia Lying in Bed' +p198626 +sg25270 +S'Rembrandt van Rijn' +p198627 +sg25273 +S'pen and ink, brush with brown wash on laid paper' +p198628 +sg25275 +S'c. 1638' +p198629 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037e1.jpg' +p198630 +sg25267 +g27 +sa(dp198631 +g25268 +S'Zirchow VII' +p198632 +sg25270 +S'Lyonel Feininger' +p198633 +sg25273 +S'oil on canvas' +p198634 +sg25275 +S'1918' +p198635 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000ae.jpg' +p198636 +sg25267 +g27 +sa(dp198637 +g25273 +S'pen and black ink over graphite on beige paper' +p198638 +sg25267 +g27 +sg25275 +S'1933' +p198639 +sg25268 +S'Hands and Foot' +p198640 +sg25270 +S'Fernand L\xc3\xa9ger' +p198641 +sa(dp198642 +g25268 +S'Caricature of Adam and Eve and Two Female Portrait Sketches' +p198643 +sg25270 +S'George Bellows' +p198644 +sg25273 +S'graphite on wove paper' +p198645 +sg25275 +S'unknown date\n' +p198646 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e5/a000e55f.jpg' +p198647 +sg25267 +g27 +sa(dp198648 +g25268 +S'Sketches of Heads, Including One of Chester Dale' +p198649 +sg25270 +S'George Bellows' +p198650 +sg25273 +S'graphite on wove paper' +p198651 +sg25275 +S'unknown date\n' +p198652 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e5/a000e55e.jpg' +p198653 +sg25267 +g27 +sa(dp198654 +g25268 +S'Sketches of Three Female Heads [recto]' +p198655 +sg25270 +S'George Bellows' +p198656 +sg25273 +S'graphite on wove paper' +p198657 +sg25275 +S'unknown date\n' +p198658 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e5/a000e55c.jpg' +p198659 +sg25267 +g27 +sa(dp198660 +g25268 +S'Elsie Speicher [verso]' +p198661 +sg25270 +S'George Bellows' +p198662 +sg25273 +S'graphite on wove paper' +p198663 +sg25275 +S'1920' +p198664 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000e5/a000e55d.jpg' +p198665 +sg25267 +g27 +sa(dp198666 +g25273 +S'watercolor and charcoal' +p198667 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198668 +sg25268 +S'In the Gota Canal' +p198669 +sg25270 +S'Sir Muirhead Bone' +p198670 +sa(dp198671 +g25273 +S'graphite' +p198672 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198673 +sg25268 +S'Maud Dale' +p198674 +sg25270 +S'Jean Lur\xc3\xa7at' +p198675 +sa(dp198676 +g25273 +S'drypoint' +p198677 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198678 +sg25268 +S'Maud Dale' +p198679 +sg25270 +S'A. Drian' +p198680 +sa(dp198681 +g25268 +S'Bacchanalian Scene with Satyrs and a Maenad' +p198682 +sg25270 +S'Master of 1515' +p198683 +sg25273 +S'engraving' +p198684 +sg25275 +S'c. 1515' +p198685 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c74b.jpg' +p198686 +sg25267 +g27 +sa(dp198687 +g25268 +S'The Entrance to the Tautira River, Tahiti. Fisherman Spearing a Fish' +p198688 +sg25270 +S'John La Farge' +p198689 +sg25273 +S'oil on canvas' +p198690 +sg25275 +S'c. 1895' +p198691 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000142.jpg' +p198692 +sg25267 +g27 +sa(dp198693 +g25268 +S'The Hundred Guilder Print' +p198694 +sg25270 +S'Artist Information (' +p198695 +sg25273 +S'(artist after)' +p198696 +sg25275 +S'\n' +p198697 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095d7.jpg' +p198698 +sg25267 +g27 +sa(dp198699 +g25268 +S'Landscape No. 162 from "Liber Veritatis"' +p198700 +sg25270 +S'Artist Information (' +p198701 +sg25273 +S'(artist after)' +p198702 +sg25275 +S'\n' +p198703 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077d6.jpg' +p198704 +sg25267 +g27 +sa(dp198705 +g25273 +S'etching' +p198706 +sg25267 +g27 +sg25275 +S'1963' +p198707 +sg25268 +S'Vase of Flowers' +p198708 +sg25270 +S'Stuart Egnal' +p198709 +sa(dp198710 +g25273 +S'etching' +p198711 +sg25267 +g27 +sg25275 +S'1964' +p198712 +sg25268 +S'Geometric Designs with Facades' +p198713 +sg25270 +S'Stuart Egnal' +p198714 +sa(dp198715 +g25273 +S'etching' +p198716 +sg25267 +g27 +sg25275 +S'1965' +p198717 +sg25268 +S'City View with Houses and Trees' +p198718 +sg25270 +S'Stuart Egnal' +p198719 +sa(dp198720 +g25273 +S'etching' +p198721 +sg25267 +g27 +sg25275 +S'1965' +p198722 +sg25268 +S'Shelves with Bottles and Jars' +p198723 +sg25270 +S'Stuart Egnal' +p198724 +sa(dp198725 +g25273 +S'watercolor and graphite' +p198726 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198727 +sg25268 +S'Cloister, San Culgat, near Barcelona' +p198728 +sg25270 +S'Sir Muirhead Bone' +p198729 +sa(dp198730 +g25273 +S'etching' +p198731 +sg25267 +g27 +sg25275 +S'1964' +p198732 +sg25268 +S'Circular Design with View of Country Store' +p198733 +sg25270 +S'Stuart Egnal' +p198734 +sa(dp198735 +g25273 +S'etching' +p198736 +sg25267 +g27 +sg25275 +S'1964' +p198737 +sg25268 +S'Geometric Abstraction' +p198738 +sg25270 +S'Stuart Egnal' +p198739 +sa(dp198740 +g25268 +S'Cupid Riding a Snail over Fungus Vegetation' +p198741 +sg25270 +S'Master H.L.' +p198742 +sg25273 +S'engraving' +p198743 +sg25275 +S'probably c. 1533' +p198744 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acb8.jpg' +p198745 +sg25267 +g27 +sa(dp198746 +g25268 +S'Vegetable Market at Pontoise (Marche aux legumes a Pontoise)' +p198747 +sg25270 +S'Camille Pissarro' +p198748 +sg25273 +S'etching and aquatint (zinc)[posthumous impression ]' +p198749 +sg25275 +S'1891' +p198750 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a000673d.jpg' +p198751 +sg25267 +g27 +sa(dp198752 +g25268 +S'Benjamin and Eleanor Ridgely Laming' +p198753 +sg25270 +S'Charles Willson Peale' +p198754 +sg25273 +S'oil on canvas' +p198755 +sg25275 +S'1788' +p198756 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a00001a3.jpg' +p198757 +sg25267 +S'Charles Willson Peale was a major figure in American science and art during the\nrevolutionary period. His faith in the educational value of art led him to establish\na painting academy in Philadelphia as early as 1795. When that venture failed, Peale\ncombined his scientific and artistic interests in a museum.\n In 1788, the Lamings had asked him to do this double portrait. Peale\'s diary records\nhis activity from 18 September, when he "sketched out the design" after dinner,\nto 5 October, when he added the final touches. Besides working on the picture, Peale\nstudied natural history at the family\'s estate outside Baltimore.\n Peale cleverly devised a leaning posture for the husband so that his bulk would\nnot overshadow his petite wife. Moreover, this unusual, reclining attitude binds\nthe couple closer together, telling of their love.\n The setting, "view of part of Baltimore Town," is appropriate for a wealthy Maryland\nmerchant. The spyglass indicates Laming\'s interest in shippage by sea, and the green\nparrot perched behind his leg may recall his birth in the West Indies. Mrs. Laming\'s\nfruit and flowers, although traditional emblems of innocence and fertility, could\nalso refer to her own gardening. The detailed attention paid to the bird, plants,\nscenery, and telescope attests to Peale\'s encyclopedic knowledge.\n ' +p198758 +sa(dp198759 +g25268 +S'The Vanderkemp Children' +p198760 +sg25270 +S'Thomas Sully' +p198761 +sg25273 +S'oil on canvas' +p198762 +sg25275 +S'1832' +p198763 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000026a.jpg' +p198764 +sg25267 +g27 +sa(dp198765 +g25268 +S'Arabs Skirmishing in the Mountains' +p198766 +sg25270 +S'Eug\xc3\xa8ne Delacroix' +p198767 +sg25273 +S'oil on canvas' +p198768 +sg25275 +S'1863' +p198769 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dce.jpg' +p198770 +sg25267 +S"Eugène Delacroix, France\xe2\x80\x99s leading romantic painter of the first half of the 19th century, advocated the opposite aesthetic of his contemporary, Jean–Auguste–Dominique Ingres. In contrast to Ingres' controlled images that are characterized by his interests in linear purity and a finished surface, Delacroix championed the primacy of color and quick execution as expressive of the artist's imagination.\n The Arabs Skirmishing in the Mountains\n The fluidity of Delacroix's brushstroke animates the composition, heightening the violence of the scene and the moment when the rider is thrown off his horse. The brilliant use of red, blue, and white forces the eye to stop at each grouping, accenting the rhythm of the battle itself. Delacroix has created a fictive battle, his work not only recalling an earlier personal experience but also stimulating the imagination of his viewers.\n " +p198771 +sa(dp198772 +g25268 +S'Lake George and the Village of Caldwell' +p198773 +sg25270 +S'Thomas Chambers' +p198774 +sg25273 +S'oil on canvas' +p198775 +sg25275 +S'mid 19th century' +p198776 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000143.jpg' +p198777 +sg25267 +g27 +sa(dp198778 +g25268 +S'Captain Alexander Graydon' +p198779 +sg25270 +S'Robert Feke' +p198780 +sg25273 +S'oil on canvas' +p198781 +sg25275 +S'c. 1746' +p198782 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000b2.jpg' +p198783 +sg25267 +g27 +sa(dp198784 +g25268 +S'First Landing of Christopher Columbus' +p198785 +sg25270 +S'Frederick Kemmelmeyer' +p198786 +sg25273 +S'oil on canvas' +p198787 +sg25275 +S'1800/1805' +p198788 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a0000132.jpg' +p198789 +sg25267 +g27 +sa(dp198790 +g25273 +S'graphite with gray wash' +p198791 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198792 +sg25268 +S'Distant Stockholm' +p198793 +sg25270 +S'Sir Muirhead Bone' +p198794 +sa(dp198795 +g25268 +S'Blacksmith Shop' +p198796 +sg25270 +S'Francis A. Beckett' +p198797 +sg25273 +S'oil on canvas' +p198798 +sg25275 +S'c. 1880' +p198799 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000017.jpg' +p198800 +sg25267 +g27 +sa(dp198801 +g25268 +S'The Younger Generation' +p198802 +sg25270 +S'Sturtevant J. Hamblin' +p198803 +sg25273 +S'oil on canvas' +p198804 +sg25275 +S'c. 1850' +p198805 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000d6.jpg' +p198806 +sg25267 +g27 +sa(dp198807 +g25268 +S'Christ on the Road to Emmaus' +p198808 +sg25270 +S'American 18th Century' +p198809 +sg25273 +S'overall: 64.2 x 77.1 cm (25 1/4 x 30 3/8 in.)\r\nframed: 75.5 x 88.9 x 4.4 cm (29 3/4 x 35 x 1 3/4 in.)' +p198810 +sg25275 +S'\noil on canvas' +p198811 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000401.jpg' +p198812 +sg25267 +g27 +sa(dp198813 +g25268 +S'Fruit and Flowers' +p198814 +sg25270 +S'American 19th Century' +p198815 +sg25273 +S'overall: 67 x 105 cm (26 3/8 x 41 5/16 in.)\r\nframed: 81.3 x 118.7 x 4.1 cm (32 x 46 3/4 x 1 5/8 in.)' +p198816 +sg25275 +S'\noil on canvas' +p198817 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a0000416.jpg' +p198818 +sg25267 +g27 +sa(dp198819 +g25273 +S'pastel' +p198820 +sg25267 +g27 +sg25275 +S'1817' +p198821 +sg25268 +S'Miss Sarah Mershon' +p198822 +sg25270 +S'Micah Williams' +p198823 +sa(dp198824 +g25273 +S'pastel' +p198825 +sg25267 +g27 +sg25275 +S'1823' +p198826 +sg25268 +S'Daniel R. Schenck' +p198827 +sg25270 +S'Micah Williams' +p198828 +sa(dp198829 +g25273 +S'pen and ink and watercolor' +p198830 +sg25267 +g27 +sg25275 +S'1830' +p198831 +sg25268 +S'Miesse Family Record' +p198832 +sg25270 +S'Ludwig Crecelius' +p198833 +sa(dp198834 +g25273 +S'pen and black ink and watercolor over graphite' +p198835 +sg25267 +g27 +sg25275 +S'1832' +p198836 +sg25268 +S'Family of Four' +p198837 +sg25270 +S'J. Evans' +p198838 +sa(dp198839 +g25268 +S'The Temptation' +p198840 +sg25270 +S'John Landis' +p198841 +sg25273 +S', c. 1828' +p198842 +sg25275 +S'\n' +p198843 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a000095b.jpg' +p198844 +sg25267 +g27 +sa(dp198845 +g25273 +S'watercolor and gold leaf' +p198846 +sg25267 +g27 +sg25275 +S'c. 1804' +p198847 +sg25268 +S'Jephthah Laments His Rash Vow' +p198848 +sg25270 +S'Emily Pelton' +p198849 +sa(dp198850 +g25273 +S'charcoal with blue and gray wash' +p198851 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198852 +sg25268 +S'Approach to Stockholm' +p198853 +sg25270 +S'Sir Muirhead Bone' +p198854 +sa(dp198855 +g25268 +S'Lolotte and Werther' +p198856 +sg25270 +S'Eunice Pinney' +p198857 +sg25273 +S'watercolor; the picture on the wall is an original engraving entitled "Winter," pasted in a simulated frame' +p198858 +sg25275 +S'1810' +p198859 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000980.jpg' +p198860 +sg25267 +g27 +sa(dp198861 +g25273 +S'sight size: 15.8 x 19.6 cm (6 1/4 x 7 11/16 in.)' +p198862 +sg25267 +g27 +sg25275 +S'\npen and ink with watercolor' +p198863 +sg25268 +S'Baptismal Wish for Catarina Titzlir' +p198864 +sg25270 +S'American 18th Century' +p198865 +sa(dp198866 +g25273 +S'overall: 40.3 x 50.4 cm (15 7/8 x 19 13/16 in.)' +p198867 +sg25267 +g27 +sg25275 +S'\nstencil and watercolor' +p198868 +sg25268 +S'Fruit in Fluted Bowl' +p198869 +sg25270 +S'American 19th Century' +p198870 +sa(dp198871 +g25273 +S'Overall: 51.3 x 40.8 cm (20 3/16 x 16 1/16 in.)\r\nframed: 57.1 x 46.3 cm (22 1/2 x 18 1/4 in.)' +p198872 +sg25267 +g27 +sg25275 +S'\nwatercolor over graphite with pinpricked contours on wove paper' +p198873 +sg25268 +S'"George Washington is my name"' +p198874 +sg25270 +S'American 19th Century' +p198875 +sa(dp198876 +g25268 +S'Reward of Merit for Anna Gerhard' +p198877 +sg25270 +S'John Conrad Gilbert' +p198878 +sg25273 +S'pen and iron gall ink with red, green, and yellow wash and pricking around the flower' +p198879 +sg25275 +S'1787' +p198880 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a00008e1.jpg' +p198881 +sg25267 +g27 +sa(dp198882 +g25268 +S'The Prodigal Son Taking Leave of His Father' +p198883 +sg25270 +S'Mary Ann Willson' +p198884 +sg25273 +S'pen and black ink and watercolor' +p198885 +sg25275 +S'c. 1815' +p198886 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a00009fe.jpg' +p198887 +sg25267 +g27 +sa(dp198888 +g25268 +S'The Prodigal Son Wasted His Substance' +p198889 +sg25270 +S'Mary Ann Willson' +p198890 +sg25273 +S'pen and black ink and watercolor' +p198891 +sg25275 +S'c. 1815' +p198892 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a00009ff.jpg' +p198893 +sg25267 +g27 +sa(dp198894 +g25268 +S'The Prodigal Son in Misery' +p198895 +sg25270 +S'Mary Ann Willson' +p198896 +sg25273 +S'pen and black ink and watercolor' +p198897 +sg25275 +S'c. 1815' +p198898 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a00.jpg' +p198899 +sg25267 +g27 +sa(dp198900 +g25268 +S'The Prodigal Son Reclaimed' +p198901 +sg25270 +S'Mary Ann Willson' +p198902 +sg25273 +S'pen and black ink and watercolor' +p198903 +sg25275 +S'c. 1815' +p198904 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a01.jpg' +p198905 +sg25267 +g27 +sa(dp198906 +g25273 +S'watercolor and graphite' +p198907 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198908 +sg25268 +S'Fiord near Bergen, Norway' +p198909 +sg25270 +S'Sir Muirhead Bone' +p198910 +sa(dp198911 +g25273 +S'linoleum cut' +p198912 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198913 +sg25268 +S'Crossing the Red Sea' +p198914 +sg25270 +S'Hilda Katz' +p198915 +sa(dp198916 +g25273 +S'color linoleum cut' +p198917 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198918 +sg25268 +S'Sea Wings and Shells' +p198919 +sg25270 +S'Hilda Katz' +p198920 +sa(dp198921 +g25273 +S'linoleum cut' +p198922 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198923 +sg25268 +S'The Expulsion' +p198924 +sg25270 +S'Hilda Katz' +p198925 +sa(dp198926 +g25268 +S'Mother and Mary' +p198927 +sg25270 +S'Edmund Charles Tarbell' +p198928 +sg25273 +S'oil on canvas' +p198929 +sg25275 +S'1922' +p198930 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000270.jpg' +p198931 +sg25267 +S'A feisty, aggressive man, Edmund Charles Tarbell had such control over a\r\n group of followers at the Boston Museum school that critics nicknamed them\r\n "the Tarbellite gang." Tarbell also commanded respect later in Washington,\r\n D.C., when he served as principal at the Corcoran Gallery\'s School of Art\r\n from 1918 to 1925. His insistence upon precise draftsmanship resulted from\r\n his teenaged apprenticeship to a lithographic company and his academic\r\n studies in Boston and Paris.\n Unlike the bravura sketchiness and vivid colors preferred by his friend\r\n Frank Benson, Tarbell emphasized solid, three-dimensional forms. To\r\n challenge himself by painting interior and exterior light in the same\r\n composition, Tarbell often depicted the tall French windows at his summer\r\n home in New Castle, New Hampshire. \n The Colonial Revival decor mixes furniture styles by using both antiques\r\n and reproductions. Criss-crossed over the polished floor, long brushstrokes\r\n imitate the luster of reflected sunlight and reveal the marks of hand\r\n buffing on the freshly waxed wood.\n ' +p198932 +sa(dp198933 +g25273 +S'graphite on laid paper' +p198934 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198935 +sg25268 +S'Dr. Ben-Gurion' +p198936 +sg25270 +S'Arthur William Heintzelman' +p198937 +sa(dp198938 +g25273 +S'etching and drypoint' +p198939 +sg25267 +g27 +sg25275 +S'1962' +p198940 +sg25268 +S'Dr. Ben-Gurion' +p198941 +sg25270 +S'Arthur William Heintzelman' +p198942 +sa(dp198943 +g25273 +S'etching and drypoint' +p198944 +sg25267 +g27 +sg25275 +S'1930' +p198945 +sg25268 +S"The Horses of St. Mark's, Venice" +p198946 +sg25270 +S'Arthur William Heintzelman' +p198947 +sa(dp198948 +g25273 +S'etching' +p198949 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198950 +sg25268 +S'In the Twilight' +p198951 +sg25270 +S'Arthur William Heintzelman' +p198952 +sa(dp198953 +g25273 +S'etching and drypoint' +p198954 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198955 +sg25268 +S'Michelangelo before the Medici Tombs' +p198956 +sg25270 +S'Arthur William Heintzelman' +p198957 +sa(dp198958 +g25273 +S'etching and drypoint in green' +p198959 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198960 +sg25268 +S'Dr. Charles Munch' +p198961 +sg25270 +S'Arthur William Heintzelman' +p198962 +sa(dp198963 +g25273 +S'watercolor and graphite' +p198964 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198965 +sg25268 +S'Bath Houses near Saltsjobaden, Sweden' +p198966 +sg25270 +S'Sir Muirhead Bone' +p198967 +sa(dp198968 +g25273 +S'drypoint' +p198969 +sg25267 +g27 +sg25275 +S'unknown date\n' +p198970 +sg25268 +S'Dr. Albert Schweitzer' +p198971 +sg25270 +S'Arthur William Heintzelman' +p198972 +sa(dp198973 +g25268 +S'A Scene on the Ice' +p198974 +sg25270 +S'Hendrick Avercamp' +p198975 +sg25273 +S'oil on panel' +p198976 +sg25275 +S'c. 1625' +p198977 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e7c.jpg' +p198978 +sg25267 +S'All classes of Dutch society mingle while enjoying winter\r\n sports. From \r\n the lower left corner, a poor fisherman surveys the many skaters.\r\n At the \r\n center, well-dressed ladies ride in an elegant sleigh driven by a\r\n groom; \r\n the horse’s shoes are spiked for traction on the slippery surface.\r\n Two \r\n little boys in the right corner play a game of \n Avercamp, who combined the Dutch love of landscape with scenes\r\n of daily \r\n life called genre, was among the first European artists to\r\n specialize in \r\n depicting winter. The pearly gray tonality here becomes ever paler\r\n and the \r\n forms less distinct as they move into the distance, subtly\r\n conveying a \r\n sense of deep space on a frosty day.\n The setting may be the quiet village of Kampen northeast of\r\n Amsterdam. \r\n Very successful financially, Avercamp was called \n ' +p198979 +sa(dp198980 +g25268 +S'Portrait of a Merchant' +p198981 +sg25270 +S'Jan Gossaert' +p198982 +sg25273 +S'oil on panel' +p198983 +sg25275 +S'c. 1530' +p198984 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a000049a.jpg' +p198985 +sg25267 +S"Gossaert's portrait shows a merchant seated in a cramped yet cozy space,\r\nsurrounded by the tools of his trade. Scattered over the table are such useful items as a talc shaker used to dry ink, an ink pot, a pair of scales for testing the weight (and hence the quality) of coins, and a metal receptacle for sealing wax, quill pens, and paper. Attached to the wall are balls of twine and batches of papers labeled "miscellaneous letters" and "miscellaneous drafts." The monogram on the sitter's\r\nhat pin and index finger ring have led to his tentative identification as Jerome\r\nSandelin, who was a tax collector in Zeeland. This region, on the southern coast\r\nof present–day Holland, was also the home of Jan Gossaert for approximately the last ten years of his life.\n The artist's Netherlandish love of detail and texture combine with his admiration for the massiveness of Italian High Renaissance art to achieve here what might be termed a monumentality of the particular. At the same time, the sitter's furtive glance and prim mouth are enough to inform us of the insecurity and apprehension that haunted bankers in the 1530s, when the prevailing moral attitude was summed up by the Dutch humanist Erasmus, who asked, "When did avarice reign more largely and less punished?"\n " +p198986 +sa(dp198987 +g25273 +S'bronze' +p198988 +sg25267 +g27 +sg25275 +S'1910' +p198989 +sg25268 +S'Summer' +p198990 +sg25270 +S'Aristide Maillol' +p198991 +sa(dp198992 +g25268 +S"Ginevra de' Benci [obverse]" +p198993 +sg25270 +S'Leonardo da Vinci' +p198994 +sg25273 +S'oil on panel' +p198995 +sg25275 +S'c. 1474/1478' +p198996 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000637.jpg' +p198997 +sg25267 +S"She was the daughter of a wealthy Florentine banker, and her portrait—the only painting by Leonardo da Vinci in the Americas—was probably commissioned about the time of her marriage at age 16. Leonardo himself was only about six years older. The portrait is among his earliest experiments with the new medium of oil paint; some wrinkling of the surface shows he was still learning to control it. Still, the careful observation of nature and subtle three–dimensionality of Ginevra's face point unmistakably to the new naturalism with which Leonardo would transform Renaissance painting. Ginevra is modeled with gradually deepening veils of smoky shadow—not by line, not by abrupt transitions of color or light.\n Other features of Ginevra's portrait reveal young Leonardo as an innovator. He placed her in an open setting at a time when women were still shown carefully sheltered within the walls of their family homes, with landscapes glimpsed only through open windows. The three–quarter pose, which shows her steady reserve, is among the first in Italian portraiture, for either sex.\n At some time in the past, probably because of damage, the panel was cut down by a few inches along the bottom, removing Ginevra's hands. A drawing by Leonardo survives that suggests their appearance—lightly cradled at her waist and holding a small sprig, perhaps a pink, a flower commonly used in Renaissance portraits to symbolize devotion or virtue. Ginevra's face is framed by the spiky, evergreen leaves of a juniper bush, the once–brighter green turned brown with age. Juniper refers to her chastity, the greatest virtue of a Renaissance woman, and puns her name. The Italian for juniper is \n The vast majority of female portraits were commissioned on one of two occasions: betrothal or marriage. Wedding portraits tend to be made in pairs, with the woman on the right side. Since Ginevra faces right, this portrait is more likely to have commemorated her engagement. Her lack of obvious finery, however, is somewhat surprising. Jewels, luxurious brocades, and elaborate dresses were part of dowry exchanges and displayed a family's wealth.\n " +p198998 +sa(dp198999 +g25268 +S'Wreath of Laurel, Palm, and Juniper with a Scroll inscribed Virtutem Forma Decorat [reverse]' +p199000 +sg25270 +S'Leonardo da Vinci' +p199001 +sg25273 +S'tempera on panel' +p199002 +sg25275 +S'c. 1474/1478' +p199003 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005ce.jpg' +p199004 +sg25267 +S"Ginevra de' Benci's portrait is \n " +p199005 +sa(dp199006 +g25268 +S'The Temptation of Christ' +p199007 +sg25270 +S'Juan de Flandes' +p199008 +sg25273 +S'oil on panel' +p199009 +sg25275 +S'c. 1500/1504' +p199010 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005aa.jpg' +p199011 +sg25267 +S"This small panel, along with \n Here the three temptations of Christ, described in the Gospels of \n Matthew and Luke, are illustrated with great narrative delight. In the \n foreground, the devil, horned and with demon's feet though clad in a monk's \n robe, tempts the hungry Christ to turn stones into bread. In the distance \n at left he offers the kingdoms of the world from a mountain top; and on the \n right, from the pinnacle of the temple in Jerusalem, the devil challenges \n Christ to hurl himself down without injury.\n The dramatic encounter is set in a landscape typical, not of the \n biblical wilderness described in the Gospels, but of a northern town. The \n soft air fades to blue in the distance, helping the eye to see the \n recession of space. The composition may have been based on models from \n manuscript illumination. While in Spain, Juan de Flandes's style became \n broader and less delicate; though he later painted larger works, he continued to delight in narrative detail.\n " +p199012 +sa(dp199013 +g25268 +S'A View of the Mountain Pass Called the Notch of the White Mountains (Crawford Notch)' +p199014 +sg25270 +S'Thomas Cole' +p199015 +sg25273 +S'oil on canvas' +p199016 +sg25275 +S'1839' +p199017 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a0000052.jpg' +p199018 +sg25267 +S"Crawford Notch gained notoriety in 1826 when a catastrophic avalanche took\nnine lives. Nathaniel Hawthorne wrote a short story commemorating the tragedy, which\nmay have piqued Cole's interest in the New Hampshire site. Rather than concentrating\non the human drama, the artist minimized figurative elements to underscore man's\ninsignificance and vulnerability in the face of nature's unleashed fury. Amid a\nseemingly idyllic autumnal setting, the barely discernible settlers, a lone rider,\nand the stagecoach passengers all seem oblivious to the impending cataclysm. Only\nthe brooding storm clouds gathering at the upper left offer a portentous hint of\nthe disaster to come.\n In addition to its oblique reference to a specific historical event, \n " +p199019 +sa(dp199020 +g25268 +S'Sketch for Ohio State Capitol Design' +p199021 +sg25270 +S'Thomas Cole' +p199022 +sg25273 +S'drawing on panel' +p199023 +sg25275 +S'c. 1838' +p199024 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d34.jpg' +p199025 +sg25267 +g27 +sa(dp199026 +g25268 +S'The Much Resounding Sea' +p199027 +sg25270 +S'Thomas Moran' +p199028 +sg25273 +S'oil on canvas' +p199029 +sg25275 +S'1884' +p199030 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00001/a000016b.jpg' +p199031 +sg25267 +g27 +sa(dp199032 +g25273 +S'watercolor and graphite' +p199033 +sg25267 +g27 +sg25275 +S'unknown date\n' +p199034 +sg25268 +S'Motala; Sweden' +p199035 +sg25270 +S'Sir Muirhead Bone' +p199036 +sa(dp199037 +g25268 +S'The Purple Jack Daw (Gracula Quiscula)' +p199038 +sg25270 +S'Mark Catesby' +p199039 +sg25273 +S'hand-colored etching on laid paper' +p199040 +sg25275 +S'published 1731-1743' +p199041 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077ec.jpg' +p199042 +sg25267 +g27 +sa(dp199043 +g25268 +S'The Ground Dove (Columba passerina)' +p199044 +sg25270 +S'Mark Catesby' +p199045 +sg25273 +S'hand-colored etching' +p199046 +sg25275 +S'published 1731-1743' +p199047 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077f6.jpg' +p199048 +sg25267 +g27 +sa(dp199049 +g25268 +S'The Pied-billed Dobchick (Colymbus podiceps)' +p199050 +sg25270 +S'Mark Catesby' +p199051 +sg25273 +S'hand-colored etching on laid paper' +p199052 +sg25275 +S'published 1731-1743' +p199053 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a000781b.jpg' +p199054 +sg25267 +g27 +sa(dp199055 +g25268 +S'The Black Muray (Muraenae helenae varietas)' +p199056 +sg25270 +S'Mark Catesby' +p199057 +sg25273 +S'hand-colored etching on laid paper' +p199058 +sg25275 +S'published 1731-1743' +p199059 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a0007835.jpg' +p199060 +sg25267 +g27 +sa(dp199061 +g25268 +S'The Sucking Fish (Echeneis Naucratis)' +p199062 +sg25270 +S'Mark Catesby' +p199063 +sg25273 +S'hand-colored etching' +p199064 +sg25275 +S'published 1731-1743' +p199065 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a0007833.jpg' +p199066 +sg25267 +g27 +sa(dp199067 +g25268 +S'The Red Mottled Rock-crab (Cancer grapsus)' +p199068 +sg25270 +S'Mark Catesby' +p199069 +sg25273 +S'hand-colored etching on laid paper' +p199070 +sg25275 +S'published 1731-1743' +p199071 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a0007865.jpg' +p199072 +sg25267 +g27 +sa(dp199073 +g25268 +S'The Logger-head Turtle (Testudo Cavanna)' +p199074 +sg25270 +S'Mark Catesby' +p199075 +sg25273 +S'hand-colored etching' +p199076 +sg25275 +S'published 1731-1743' +p199077 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a0007869.jpg' +p199078 +sg25267 +g27 +sa(dp199079 +g25268 +S'The Coach-Whip Snake (Coluber flagellum)' +p199080 +sg25270 +S'Mark Catesby' +p199081 +sg25273 +S'hand-colored etching' +p199082 +sg25275 +S'published 1731-1743' +p199083 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a0007871.jpg' +p199084 +sg25267 +g27 +sa(dp199085 +g25268 +S'The Corn Snake (Coluber fulvius?)' +p199086 +sg25270 +S'Mark Catesby' +p199087 +sg25273 +S'hand-colored etching' +p199088 +sg25275 +S'published 1731-1743' +p199089 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a000786f.jpg' +p199090 +sg25267 +g27 +sa(dp199091 +g25268 +S'The Guana (Lacerta Iguana)' +p199092 +sg25270 +S'Mark Catesby' +p199093 +sg25273 +S'hand-colored etching on laid paper' +p199094 +sg25275 +S'published 1731-1743' +p199095 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a000786b.jpg' +p199096 +sg25267 +g27 +sa(dp199097 +g25273 +S'charcoal and watercolor over graphite' +p199098 +sg25267 +g27 +sg25275 +S'1923' +p199099 +sg25268 +S'Night in Stockholm' +p199100 +sg25270 +S'Sir Muirhead Bone' +p199101 +sa(dp199102 +g25268 +S'The Lyon Lizard (Lacerta 6-lineata)' +p199103 +sg25270 +S'Mark Catesby' +p199104 +sg25273 +S'hand-colored etching on laid paper' +p199105 +sg25275 +S'published 1731-1743' +p199106 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a0007876.jpg' +p199107 +sg25267 +g27 +sa(dp199108 +g25268 +S'The Grey Fox Squirrel (Sciurus cinereus)' +p199109 +sg25270 +S'Mark Catesby' +p199110 +sg25273 +S'hand-colored etching on laid paper' +p199111 +sg25275 +S'published 1731-1743' +p199112 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a0007888.jpg' +p199113 +sg25267 +g27 +sa(dp199114 +g25273 +S'drypoint' +p199115 +sg25267 +g27 +sg25275 +S'1921' +p199116 +sg25268 +S'The Negro (Der Neger)' +p199117 +sg25270 +S'Max Beckmann' +p199118 +sa(dp199119 +g25273 +S'drypoint' +p199120 +sg25267 +g27 +sg25275 +S'1921' +p199121 +sg25268 +S'The Tight Rope Walkers (Die Seilt\xc3\xa4nzer)' +p199122 +sg25270 +S'Max Beckmann' +p199123 +sa(dp199124 +g25273 +S'drypoint' +p199125 +sg25267 +g27 +sg25275 +S'1921' +p199126 +sg25268 +S'Dressing Room (Garderobe)' +p199127 +sg25270 +S'Max Beckmann' +p199128 +sa(dp199129 +g25273 +S'drypoint' +p199130 +sg25267 +g27 +sg25275 +S'1921' +p199131 +sg25268 +S'Wrestlers (Die Ringer)' +p199132 +sg25270 +S'Max Beckmann' +p199133 +sa(dp199134 +g25273 +S'drypoint' +p199135 +sg25267 +g27 +sg25275 +S'1921' +p199136 +sg25268 +S'The Barker (Der Ausrufer)' +p199137 +sg25270 +S'Max Beckmann' +p199138 +sa(dp199139 +g25268 +S'Storm Brewing' +p199140 +sg25270 +S'Lyonel Feininger' +p199141 +sg25273 +S'oil on canvas' +p199142 +sg25275 +S'1939' +p199143 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000af.jpg' +p199144 +sg25267 +g27 +sa(dp199145 +g25268 +S'Nude' +p199146 +sg25270 +S'Auguste Renoir' +p199147 +sg25273 +S'oil on canvas' +p199148 +sg25275 +S'c. 1895' +p199149 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d2f.jpg' +p199150 +sg25267 +g27 +sa(dp199151 +g25268 +S'Tiger Surprising an Antelope' +p199152 +sg25270 +S'Antoine-Louis Barye' +p199153 +sg25273 +S'bronze' +p199154 +sg25275 +S'model c. 1831, cast after 1855' +p199155 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ef6.jpg' +p199156 +sg25267 +S"Barye challenged tradition when he submitted his savage animal sculptures to the Paris Salon in the 1830s. At the time, the human figure was considered the noblest subject for high art, while animals—particularly violent animals—ranked at the bottom. Despite the lowly status of animals in the artistic hierarchy, Barye's predatory tiger received a Salon medal in 1831. Commissions for both tabletop and monumental animal works followed. In the end, the sculptor would become renowned as an \n Tiger Surprising an Antelope\n Although hunting subjects had been favored for ornamental sculpture in the eighteenth century (as in the Gallery's \n " +p199157 +sa(dp199158 +g25273 +S'watercolor' +p199159 +sg25267 +g27 +sg25275 +S'unknown date\n' +p199160 +sg25268 +S'The North Sea' +p199161 +sg25270 +S'Sir Muirhead Bone' +p199162 +sa(dp199163 +g25268 +S'Bird in Space' +p199164 +sg25270 +S'Constantin Brancusi' +p199165 +sg25273 +S'marble, stone, and wood' +p199166 +sg25275 +S'1925' +p199167 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d32.jpg' +p199168 +sg25267 +g27 +sa(dp199169 +g25273 +S'marble' +p199170 +sg25267 +g27 +sg25275 +S'1929' +p199171 +sg25268 +S'Agnes E. Meyer' +p199172 +sg25270 +S'Constantin Brancusi' +p199173 +sa(dp199174 +g25273 +S'plaster' +p199175 +sg25267 +g27 +sg25275 +S'1929' +p199176 +sg25268 +S'Agnes E. Meyer' +p199177 +sg25270 +S'Charles Despiau' +p199178 +sa(dp199179 +g25268 +S'Figure of a Woman "The Sphinx"' +p199180 +sg25270 +S'Auguste Rodin' +p199181 +sg25273 +S'marble' +p199182 +sg25275 +S'model early 1880s, carved 1909' +p199183 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00024/a0002445.jpg' +p199184 +sg25267 +g27 +sa(dp199185 +g25273 +S'watercolor over graphite' +p199186 +sg25267 +g27 +sg25275 +S'1912' +p199187 +sg25268 +S'Broadway, Singer Building' +p199188 +sg25270 +S'John Marin' +p199189 +sa(dp199190 +g25268 +S'Woolworth Building, No. 28' +p199191 +sg25270 +S'John Marin' +p199192 +sg25273 +S'watercolor over graphite' +p199193 +sg25275 +S'1912' +p199194 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000960.jpg' +p199195 +sg25267 +g27 +sa(dp199196 +g25268 +S'Woolworth Building, No. 31' +p199197 +sg25270 +S'John Marin' +p199198 +sg25273 +S'watercolor over graphite' +p199199 +sg25275 +S'1912' +p199200 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00009/a0000961.jpg' +p199201 +sg25267 +g27 +sa(dp199202 +g25273 +S'watercolor' +p199203 +sg25267 +g27 +sg25275 +S'1912' +p199204 +sg25268 +S'Woolworth Building, No. 29' +p199205 +sg25270 +S'John Marin' +p199206 +sa(dp199207 +g25273 +S'watercolor over graphite' +p199208 +sg25267 +g27 +sg25275 +S'1913' +p199209 +sg25268 +S'Woolworth Building, No. 32 [recto]' +p199210 +sg25270 +S'John Marin' +p199211 +sa(dp199212 +g25273 +S'watercolor over graphite' +p199213 +sg25267 +g27 +sg25275 +S'1913' +p199214 +sg25268 +S'Woolworth Building [verso]' +p199215 +sg25270 +S'John Marin' +p199216 +sa(dp199217 +g25273 +S'pen and blue ink with blue wash' +p199218 +sg25267 +g27 +sg25275 +S'unknown date\n' +p199219 +sg25268 +S'Near Stockholm' +p199220 +sg25270 +S'Sir Muirhead Bone' +p199221 +sa(dp199222 +g25273 +S'marble' +p199223 +sg25267 +g27 +sg25275 +S'unknown date\n' +p199224 +sg25268 +S'Charles, Duc de Berry' +p199225 +sg25270 +S'Jacques Prou II' +p199226 +sa(dp199227 +g25273 +S'bronze' +p199228 +sg25267 +g27 +sg25275 +S'model c. 1890/1899, cast 1930' +p199229 +sg25268 +S'Bather with Raised Arms' +p199230 +sg25270 +S'Aristide Maillol' +p199231 +sa(dp199232 +g25273 +S'1 vol:ill: 15 lithographs' +p199233 +sg25267 +g27 +sg25275 +S'published 1823' +p199234 +sg25268 +S'Lithographic Sketchbook (Croquis lithographiques)' +p199235 +sg25270 +S'Th\xc3\xa9odore Gericault' +p199236 +sa(dp199237 +g25273 +S'lithograph' +p199238 +sg25267 +g27 +sg25275 +S'c. 1823' +p199239 +sg25268 +S'Wounded Lara (Lara blesse)' +p199240 +sg25270 +S'Th\xc3\xa9odore Gericault' +p199241 +sa(dp199242 +g25273 +S'lithograph' +p199243 +sg25267 +g27 +sg25275 +S'1822' +p199244 +sg25268 +S'Mare and Foal (Le jument et son poulain): frontispiece' +p199245 +sg25270 +S'Th\xc3\xa9odore Gericault' +p199246 +sa(dp199247 +g25273 +S'lithograph' +p199248 +sg25267 +g27 +sg25275 +S'1822' +p199249 +sg25268 +S'Mecklenburg Horse (Cheval de Mecklembourg)' +p199250 +sg25270 +S'Th\xc3\xa9odore Gericault' +p199251 +sa(dp199252 +g25273 +S'lithograph' +p199253 +sg25267 +g27 +sg25275 +S'1822' +p199254 +sg25268 +S"Auvergne Horse (Chevaux d'Auvergne)" +p199255 +sg25270 +S'Th\xc3\xa9odore Gericault' +p199256 +sa(dp199257 +g25273 +S'lithograph' +p199258 +sg25267 +g27 +sg25275 +S'1822' +p199259 +sg25268 +S'Caux Horse (Cheval Cauchois)' +p199260 +sg25270 +S'Th\xc3\xa9odore Gericault' +p199261 +sa(dp199262 +g25273 +S'lithograph' +p199263 +sg25267 +g27 +sg25275 +S'1822' +p199264 +sg25268 +S'Spanish Horse (Cheval Espagnol)' +p199265 +sg25270 +S'Th\xc3\xa9odore Gericault' +p199266 +sa(dp199267 +g25273 +S'lithograph' +p199268 +sg25267 +g27 +sg25275 +S'1822' +p199269 +sg25268 +S'Ardennes Horses (Chevaux des Ardennes)' +p199270 +sg25270 +S'Th\xc3\xa9odore Gericault' +p199271 +sa(dp199272 +g25273 +S'watercolor and graphite' +p199273 +sg25267 +g27 +sg25275 +S'unknown date\n' +p199274 +sg25268 +S'In the Gota Canal' +p199275 +sg25270 +S'Sir Muirhead Bone' +p199276 +sa(dp199277 +g25273 +S'lithograph' +p199278 +sg25267 +g27 +sg25275 +S'1822' +p199279 +sg25268 +S'Planes of Caen Horse (Cheval de la plaine de Cain)' +p199280 +sg25270 +S'Th\xc3\xa9odore Gericault' +p199281 +sa(dp199282 +g25273 +S'lithograph' +p199283 +sg25267 +g27 +sg25275 +S'1822' +p199284 +sg25268 +S"Hanover Horse (Cheval d'Hanovre)" +p199285 +sg25270 +S'Th\xc3\xa9odore Gericault' +p199286 +sa(dp199287 +g25273 +S'lithograph' +p199288 +sg25267 +g27 +sg25275 +S'1822' +p199289 +sg25268 +S'Flemish Horses (Chevaux Flamands)' +p199290 +sg25270 +S'Th\xc3\xa9odore Gericault' +p199291 +sa(dp199292 +g25273 +S'lithograph' +p199293 +sg25267 +g27 +sg25275 +S'1822' +p199294 +sg25268 +S'Arabian Horse (Cheval Arabe)' +p199295 +sg25270 +S'Th\xc3\xa9odore Gericault' +p199296 +sa(dp199297 +g25273 +S'lithograph' +p199298 +sg25267 +g27 +sg25275 +S'1822' +p199299 +sg25268 +S'Egyptian Mare (Jument Egyptienne)' +p199300 +sg25270 +S'Th\xc3\xa9odore Gericault' +p199301 +sa(dp199302 +g25273 +S'lithograph' +p199303 +sg25267 +g27 +sg25275 +S'1822' +p199304 +sg25268 +S'The Race (La course)' +p199305 +sg25270 +S'Th\xc3\xa9odore Gericault' +p199306 +sa(dp199307 +g25273 +S'lithograph' +p199308 +sg25267 +g27 +sg25275 +S'1823' +p199309 +sg25268 +S'Cart-Horse Leaving the Thill (Cheval de charrette sorti des limons)' +p199310 +sg25270 +S'Th\xc3\xa9odore Gericault' +p199311 +sa(dp199312 +g25273 +S'lithograph' +p199313 +sg25267 +g27 +sg25275 +S'1823' +p199314 +sg25268 +S"Cuirassiers Charging with Artillery (Cuirassiers chargeant une batterie d'artillerie)" +p199315 +sg25270 +S'Th\xc3\xa9odore Gericault' +p199316 +sa(dp199317 +g25268 +S'The Herd Returning in Stormy Weather (Le troupeau en marche par un temps orageux)' +p199318 +sg25270 +S'Claude Lorrain' +p199319 +sg25273 +S'etching' +p199320 +sg25275 +S'c/ 1650/1651' +p199321 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008911.jpg' +p199322 +sg25267 +g27 +sa(dp199323 +g25268 +S'The Woodcutter of Rembrandt (Le Bucheron de Rembrandt)' +p199324 +sg25270 +S'Jean-Baptiste-Camille Corot' +p199325 +sg25273 +S'cliche-verre' +p199326 +sg25275 +S'1853' +p199327 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009823.jpg' +p199328 +sg25267 +g27 +sa(dp199329 +g25273 +S'graphite and watercolor' +p199330 +sg25267 +g27 +sg25275 +S'unknown date\n' +p199331 +sg25268 +S'Lannerda' +p199332 +sg25270 +S'Sir Muirhead Bone' +p199333 +sa(dp199334 +g25268 +S'Farm Children (Les Enfants de la ferme)' +p199335 +sg25270 +S'Jean-Baptiste-Camille Corot' +p199336 +sg25273 +S'cliche-verre' +p199337 +sg25275 +S'1853' +p199338 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009821.jpg' +p199339 +sg25267 +g27 +sa(dp199340 +g25268 +S'Carte-de-viste with Horseman (La Carte de visite au cavalier)' +p199341 +sg25270 +S'Jean-Baptiste-Camille Corot' +p199342 +sg25273 +S'cliche-verre' +p199343 +sg25275 +S'1853' +p199344 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009824.jpg' +p199345 +sg25267 +g27 +sa(dp199346 +g25268 +S"Shepherd's Bath (Le Bain du berger)" +p199347 +sg25270 +S'Jean-Baptiste-Camille Corot' +p199348 +sg25273 +S'cliche-verre' +p199349 +sg25275 +S'1853' +p199350 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009820.jpg' +p199351 +sg25267 +g27 +sa(dp199352 +g25268 +S'Souvenir of Fampoux (Souvenir de Fampoux)' +p199353 +sg25270 +S'Jean-Baptiste-Camille Corot' +p199354 +sg25273 +S'cliche-verre' +p199355 +sg25275 +S'1854' +p199356 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009822.jpg' +p199357 +sg25267 +g27 +sa(dp199358 +g25273 +S'pen and black ink with gray wash on gray paper' +p199359 +sg25267 +g27 +sg25275 +S'unknown date\n' +p199360 +sg25268 +S'Gartnavel' +p199361 +sg25270 +S'Sir Muirhead Bone' +p199362 +sa(dp199363 +g25273 +S'graphite' +p199364 +sg25267 +g27 +sg25275 +S'unknown date\n' +p199365 +sg25268 +S'The Walls of Wisby, Gotland' +p199366 +sg25270 +S'Sir Muirhead Bone' +p199367 +sa(dp199368 +g25273 +S'graphite and watercolor' +p199369 +sg25267 +g27 +sg25275 +S'unknown date\n' +p199370 +sg25268 +S'Stockholm' +p199371 +sg25270 +S'Sir Muirhead Bone' +p199372 +sa(dp199373 +g25273 +S'watercolor and graphite' +p199374 +sg25267 +g27 +sg25275 +S'unknown date\n' +p199375 +sg25268 +S'Swedish Afternoon' +p199376 +sg25270 +S'Sir Muirhead Bone' +p199377 +sa(dp199378 +g25273 +S'watercolor and graphite' +p199379 +sg25267 +g27 +sg25275 +S'unknown date\n' +p199380 +sg25268 +S'In the Kattegat' +p199381 +sg25270 +S'Sir Muirhead Bone' +p199382 +sa(dp199383 +g25273 +S'watercolor and graphite' +p199384 +sg25267 +g27 +sg25275 +S'unknown date\n' +p199385 +sg25268 +S'Near Cannes' +p199386 +sg25270 +S'Sir Muirhead Bone' +p199387 +sa(dp199388 +g25273 +S'watercolor and graphite' +p199389 +sg25267 +g27 +sg25275 +S'unknown date\n' +p199390 +sg25268 +S'Nordfijord' +p199391 +sg25270 +S'Sir Muirhead Bone' +p199392 +sa(dp199393 +g25273 +S'watercolor and graphite' +p199394 +sg25267 +g27 +sg25275 +S'unknown date\n' +p199395 +sg25268 +S'Carrara Mountains' +p199396 +sg25270 +S'Sir Muirhead Bone' +p199397 +sa(dp199398 +g25273 +S'watercolor and graphite' +p199399 +sg25267 +g27 +sg25275 +S'unknown date\n' +p199400 +sg25268 +S'Lake Trasimene' +p199401 +sg25270 +S'Sir Muirhead Bone' +p199402 +sa(dp199403 +g25273 +S'drypoint' +p199404 +sg25267 +g27 +sg25275 +S'1915' +p199405 +sg25268 +S'Falmouth' +p199406 +sg25270 +S'Sir Muirhead Bone' +p199407 +sa(dp199408 +g25273 +S'etching and drypoint' +p199409 +sg25267 +g27 +sg25275 +S'1899' +p199410 +sg25268 +S'Alterations in the Briggate, Glasgow' +p199411 +sg25270 +S'Sir Muirhead Bone' +p199412 +sa(dp199413 +g25268 +S'Scene from Ancient History' +p199414 +sg25270 +S'Giovanni Battista Tiepolo' +p199415 +sg25273 +S'oil on canvas' +p199416 +sg25275 +S'c. 1750' +p199417 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000625.jpg' +p199418 +sg25267 +g27 +sa(dp199419 +g25273 +S'etching and drypoint' +p199420 +sg25267 +g27 +sg25275 +S'1899' +p199421 +sg25268 +S'The Old Jail' +p199422 +sg25270 +S'Sir Muirhead Bone' +p199423 +sa(dp199424 +g25273 +S'etching and drypoint' +p199425 +sg25267 +g27 +sg25275 +S'1899' +p199426 +sg25268 +S'Tontine Gates' +p199427 +sg25270 +S'Sir Muirhead Bone' +p199428 +sa(dp199429 +g25273 +S'etching and drypoint' +p199430 +sg25267 +g27 +sg25275 +S'1899' +p199431 +sg25268 +S'Tontine Gates' +p199432 +sg25270 +S'Sir Muirhead Bone' +p199433 +sa(dp199434 +g25273 +S'etching and drypoint' +p199435 +sg25267 +g27 +sg25275 +S'1899' +p199436 +sg25268 +S'Shipbuilders, Whiteinch' +p199437 +sg25270 +S'Sir Muirhead Bone' +p199438 +sa(dp199439 +g25273 +S'etching and drypoint' +p199440 +sg25267 +g27 +sg25275 +S'1899' +p199441 +sg25268 +S'The Dry Dock' +p199442 +sg25270 +S'Sir Muirhead Bone' +p199443 +sa(dp199444 +g25273 +S'drypoint (zinc)' +p199445 +sg25267 +g27 +sg25275 +S'1899' +p199446 +sg25268 +S'Old Birch Hall, Manchester' +p199447 +sg25270 +S'Sir Muirhead Bone' +p199448 +sa(dp199449 +g25273 +S'etching (copper)' +p199450 +sg25267 +g27 +sg25275 +S'1899' +p199451 +sg25268 +S'Rothesay Pier, No. 1' +p199452 +sg25270 +S'Sir Muirhead Bone' +p199453 +sa(dp199454 +g25273 +S'drypoint' +p199455 +sg25267 +g27 +sg25275 +S'1899' +p199456 +sg25268 +S'Mrs. Drummond, in a Shawl, to the Right' +p199457 +sg25270 +S'Sir Muirhead Bone' +p199458 +sa(dp199459 +g25273 +S'drypoint' +p199460 +sg25267 +g27 +sg25275 +S'1900' +p199461 +sg25268 +S'Spring at Cardross' +p199462 +sg25270 +S'Sir Muirhead Bone' +p199463 +sa(dp199464 +g25273 +S'etching' +p199465 +sg25267 +g27 +sg25275 +S'1901' +p199466 +sg25268 +S'Restoration House, Rochester' +p199467 +sg25270 +S'Sir Muirhead Bone' +p199468 +sa(dp199469 +g25268 +S'Portrait of a Lady' +p199470 +sg25270 +S'Rogier van der Weyden' +p199471 +sg25273 +S'oil on panel' +p199472 +sg25275 +S'c. 1460' +p199473 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00038/a0003856.jpg' +p199474 +sg25267 +S"This painting is an outstanding example of the abstract elegance characteristic of Rogier's late portraits. Although the identity of the sitter is unknown, her air of self–conscious dignity suggests that she is a member of the nobility. Her costume and severly plucked eyebrows and hairline are typical of those favored by highly placed ladies of the Burgundian court.\n The stylish costume does not distract attention from the sitter. The dress, with its dark bands of fur, almost merges with the background. The spreading headdress frames and focuses attention upon her face. Light falls with exquisite beauty along the creases of the sheer veiling over her head, and gentle shadows mark her fine bone structure. In contrast to the spareness of execution in most of the painting, the gold filigree of her belt buckle is rendered with meticulous precision. The scarlet belt serves as a foil to set off her delicately clasped hands.\n Rogier excelled as a portrait painter because he so vividly presented the character of the persons he portrayed. The downcast eyes, the firmly set lips, and the tense fingers reflect this woman's mental concentration. Rogier juxtaposed the strong sensation of the sitter's acute mental activity to his rigid control of the composition and the formality of her costume and pose, presenting the viewer with an image of passionate austerity.\n " +p199475 +sa(dp199476 +g25273 +S'etching' +p199477 +sg25267 +g27 +sg25275 +S'1901' +p199478 +sg25268 +S'Seven Small Figures' +p199479 +sg25270 +S'Sir Muirhead Bone' +p199480 +sa(dp199481 +g25273 +S'etching' +p199482 +sg25267 +g27 +sg25275 +S'1901' +p199483 +sg25268 +S'The Piazza' +p199484 +sg25270 +S'Sir Muirhead Bone' +p199485 +sa(dp199486 +g25273 +S'drypoint' +p199487 +sg25267 +g27 +sg25275 +S'1901' +p199488 +sg25268 +S'In Camera' +p199489 +sg25270 +S'Sir Muirhead Bone' +p199490 +sa(dp199491 +g25273 +S'drypoint' +p199492 +sg25267 +g27 +sg25275 +S'1927' +p199493 +sg25268 +S'Leonard Gow' +p199494 +sg25270 +S'Sir Muirhead Bone' +p199495 +sa(dp199496 +g25273 +S'etching' +p199497 +sg25267 +g27 +sg25275 +S'1901' +p199498 +sg25268 +S'Ireland and Russia' +p199499 +sg25270 +S'Sir Muirhead Bone' +p199500 +sa(dp199501 +g25273 +S'drypoint' +p199502 +sg25267 +g27 +sg25275 +S'1903' +p199503 +sg25268 +S'Surrey Moor, Elstead' +p199504 +sg25270 +S'Sir Muirhead Bone' +p199505 +sa(dp199506 +g25273 +S'etching' +p199507 +sg25267 +g27 +sg25275 +S'1901' +p199508 +sg25268 +S'The Indian Theater' +p199509 +sg25270 +S'Sir Muirhead Bone' +p199510 +sa(dp199511 +g25273 +S'etching' +p199512 +sg25267 +g27 +sg25275 +S'1901' +p199513 +sg25268 +S'Tea and Music' +p199514 +sg25270 +S'Sir Muirhead Bone' +p199515 +sa(dp199516 +g25273 +S'etching' +p199517 +sg25267 +g27 +sg25275 +S'1901' +p199518 +sg25268 +S'Evening in Little Russia' +p199519 +sg25270 +S'Sir Muirhead Bone' +p199520 +sa(dp199521 +g25273 +S'etching' +p199522 +sg25267 +g27 +sg25275 +S'1901' +p199523 +sg25268 +S'Design for a Letter of Thanks for the Loan of Works to the Glasgow International Exhibition' +p199524 +sg25270 +S'Sir Muirhead Bone' +p199525 +sa(dp199526 +g25273 +S'drypoint (zinc)' +p199527 +sg25267 +g27 +sg25275 +S'1901' +p199528 +sg25268 +S'The Colonnade, Glasgow Exhibition' +p199529 +sg25270 +S'Sir Muirhead Bone' +p199530 +sa(dp199531 +g25273 +S'drypoint' +p199532 +sg25267 +g27 +sg25275 +S'1901' +p199533 +sg25268 +S'Rhenish Evangeliarium' +p199534 +sg25270 +S'Sir Muirhead Bone' +p199535 +sa(dp199536 +g25273 +S'drypoint' +p199537 +sg25267 +g27 +sg25275 +S'1903' +p199538 +sg25268 +S'The Weirs, Winchester' +p199539 +sg25270 +S'Sir Muirhead Bone' +p199540 +sa(dp199541 +g25273 +S'drypoint' +p199542 +sg25267 +g27 +sg25275 +S'1903' +p199543 +sg25268 +S"Moore's Yard, Cambridge" +p199544 +sg25270 +S'Sir Muirhead Bone' +p199545 +sa(dp199546 +g25273 +S'drypoint' +p199547 +sg25267 +g27 +sg25275 +S'1903' +p199548 +sg25268 +S"Coulton's Doorway, King's Lynn" +p199549 +sg25270 +S'Sir Muirhead Bone' +p199550 +sa(dp199551 +g25273 +S'drypoint' +p199552 +sg25267 +g27 +sg25275 +S'1903' +p199553 +sg25268 +S'Wilmington, Sussex' +p199554 +sg25270 +S'Sir Muirhead Bone' +p199555 +sa(dp199556 +g25273 +S'drypoint' +p199557 +sg25267 +g27 +sg25275 +S'1903' +p199558 +sg25268 +S'Godalming' +p199559 +sg25270 +S'Sir Muirhead Bone' +p199560 +sa(dp199561 +g25273 +S'drypoint' +p199562 +sg25267 +g27 +sg25275 +S'1903' +p199563 +sg25268 +S'Southampton, from Eling' +p199564 +sg25270 +S'Sir Muirhead Bone' +p199565 +sa(dp199566 +g25273 +S'drypoint' +p199567 +sg25267 +g27 +sg25275 +S'1904' +p199568 +sg25268 +S'Old & New Gaiety Theaters' +p199569 +sg25270 +S'Sir Muirhead Bone' +p199570 +sa(dp199571 +g25273 +S'drypoint' +p199572 +sg25267 +g27 +sg25275 +S'1904' +p199573 +sg25268 +S'Chiswick' +p199574 +sg25270 +S'Sir Muirhead Bone' +p199575 +sa(dp199576 +g25273 +S'drypoint' +p199577 +sg25267 +g27 +sg25275 +S'1904' +p199578 +sg25268 +S'Brewhouses, Southampton' +p199579 +sg25270 +S'Sir Muirhead Bone' +p199580 +sa(dp199581 +g25273 +S'drypoint' +p199582 +sg25267 +g27 +sg25275 +S'1904' +p199583 +sg25268 +S'Cambridge Midsummer Fair' +p199584 +sg25270 +S'Sir Muirhead Bone' +p199585 +sa(dp199586 +g25273 +S'drypoint' +p199587 +sg25267 +g27 +sg25275 +S'1903' +p199588 +sg25268 +S'The Haystack' +p199589 +sg25270 +S'Sir Muirhead Bone' +p199590 +sa(dp199591 +g25273 +S'drypoint' +p199592 +sg25267 +g27 +sg25275 +S'1904' +p199593 +sg25268 +S'Bookplate of Lincoln College, Oxford' +p199594 +sg25270 +S'Sir Muirhead Bone' +p199595 +sa(dp199596 +g25273 +S'drypoint' +p199597 +sg25267 +g27 +sg25275 +S'1904' +p199598 +sg25268 +S'The Shot Tower' +p199599 +sg25270 +S'Sir Muirhead Bone' +p199600 +sa(dp199601 +g25273 +S'drypoint' +p199602 +sg25267 +g27 +sg25275 +S'1904' +p199603 +sg25268 +S'Building' +p199604 +sg25270 +S'Sir Muirhead Bone' +p199605 +sa(dp199606 +g25273 +S'drypoint' +p199607 +sg25267 +g27 +sg25275 +S'1905' +p199608 +sg25268 +S'Mrs. Gutbier, in a Hat' +p199609 +sg25270 +S'Sir Muirhead Bone' +p199610 +sa(dp199611 +g25273 +S'drypoint' +p199612 +sg25267 +g27 +sg25275 +S'1905' +p199613 +sg25268 +S'Gertrude and Steven' +p199614 +sg25270 +S'Sir Muirhead Bone' +p199615 +sa(dp199616 +g25273 +S'drypoint' +p199617 +sg25267 +g27 +sg25275 +S'1905' +p199618 +sg25268 +S'Ayr Prison' +p199619 +sg25270 +S'Sir Muirhead Bone' +p199620 +sa(dp199621 +g25273 +S'drypoint' +p199622 +sg25267 +g27 +sg25275 +S'1905' +p199623 +sg25268 +S'Yorkshire Smithy' +p199624 +sg25270 +S'Sir Muirhead Bone' +p199625 +sa(dp199626 +g25273 +S'drypoint' +p199627 +sg25267 +g27 +sg25275 +S'1905 and 1907' +p199628 +sg25268 +S'Leeds' +p199629 +sg25270 +S'Sir Muirhead Bone' +p199630 +sa(dp199631 +g25273 +S'drypoint' +p199632 +sg25267 +g27 +sg25275 +S'1905' +p199633 +sg25268 +S'Leeds Warehouses' +p199634 +sg25270 +S'Sir Muirhead Bone' +p199635 +sa(dp199636 +g25273 +S'drypoint' +p199637 +sg25267 +g27 +sg25275 +S'1905' +p199638 +sg25268 +S'The Fosse, Lincoln' +p199639 +sg25270 +S'Sir Muirhead Bone' +p199640 +sa(dp199641 +g25273 +S'drypoint' +p199642 +sg25267 +g27 +sg25275 +S'1905' +p199643 +sg25268 +S'Somerset House' +p199644 +sg25270 +S'Sir Muirhead Bone' +p199645 +sa(dp199646 +g25273 +S'drypoint' +p199647 +sg25267 +g27 +sg25275 +S'1905' +p199648 +sg25268 +S'The Auld Brig, Ayr' +p199649 +sg25270 +S'Sir Muirhead Bone' +p199650 +sa(dp199651 +g25273 +S'drypoint' +p199652 +sg25267 +g27 +sg25275 +S'1905' +p199653 +sg25268 +S'Ossett, Yorkshire' +p199654 +sg25270 +S'Sir Muirhead Bone' +p199655 +sa(dp199656 +g25273 +S'drypoint' +p199657 +sg25267 +g27 +sg25275 +S'1905' +p199658 +sg25268 +S'Distant Oxford' +p199659 +sg25270 +S'Sir Muirhead Bone' +p199660 +sa(dp199661 +g25273 +S'drypoint' +p199662 +sg25267 +g27 +sg25275 +S'1906' +p199663 +sg25268 +S"Demolition of St. James's Hall, Interior" +p199664 +sg25270 +S'Sir Muirhead Bone' +p199665 +sa(dp199666 +g25273 +S'drypoint' +p199667 +sg25267 +g27 +sg25275 +S'1906' +p199668 +sg25268 +S'Hove' +p199669 +sg25270 +S'Sir Muirhead Bone' +p199670 +sa(dp199671 +g25273 +S'drypoint' +p199672 +sg25267 +g27 +sg25275 +S'1906' +p199673 +sg25268 +S'Oxfordshire' +p199674 +sg25270 +S'Sir Muirhead Bone' +p199675 +sa(dp199676 +g25273 +S'drypoint' +p199677 +sg25267 +g27 +sg25275 +S'1906' +p199678 +sg25268 +S'Hampstead Heath' +p199679 +sg25270 +S'Sir Muirhead Bone' +p199680 +sa(dp199681 +g25273 +S'drypoint' +p199682 +sg25267 +g27 +sg25275 +S'1906' +p199683 +sg25268 +S'Heath Brow, Hampstead' +p199684 +sg25270 +S'Sir Muirhead Bone' +p199685 +sa(dp199686 +g25273 +S'drypoint' +p199687 +sg25267 +g27 +sg25275 +S'1906' +p199688 +sg25268 +S'The Great Gantry, Charing Cross Station' +p199689 +sg25270 +S'Sir Muirhead Bone' +p199690 +sa(dp199691 +g25273 +S'drypoint' +p199692 +sg25267 +g27 +sg25275 +S'1907' +p199693 +sg25268 +S'Rye, from Camber' +p199694 +sg25270 +S'Sir Muirhead Bone' +p199695 +sa(dp199696 +g25273 +S'drypoint' +p199697 +sg25267 +g27 +sg25275 +S'1907' +p199698 +sg25268 +S"Demolition of St. James's Hall, Exterior" +p199699 +sg25270 +S'Sir Muirhead Bone' +p199700 +sa(dp199701 +g25273 +S'drypoint' +p199702 +sg25267 +g27 +sg25275 +S'1907' +p199703 +sg25268 +S'First Study for the Ballantrae Road' +p199704 +sg25270 +S'Sir Muirhead Bone' +p199705 +sa(dp199706 +g25273 +S'etching' +p199707 +sg25267 +g27 +sg25275 +S'1900' +p199708 +sg25268 +S'Glasgow Harbor' +p199709 +sg25270 +S'Sir Muirhead Bone' +p199710 +sa(dp199711 +g25273 +S'drypoint' +p199712 +sg25267 +g27 +sg25275 +S'1909' +p199713 +sg25268 +S"Liberty's Clock" +p199714 +sg25270 +S'Sir Muirhead Bone' +p199715 +sa(dp199716 +g25273 +S'drypoint' +p199717 +sg25267 +g27 +sg25275 +S'1909' +p199718 +sg25268 +S'The Old Palace, Culross (Fife)' +p199719 +sg25270 +S'Sir Muirhead Bone' +p199720 +sa(dp199721 +g25273 +S'drypoint' +p199722 +sg25267 +g27 +sg25275 +S'1909' +p199723 +sg25268 +S'Stirling Castle, No.1' +p199724 +sg25270 +S'Sir Muirhead Bone' +p199725 +sa(dp199726 +g25268 +S'The Nativity with the Infant Saint John' +p199727 +sg25270 +S'Piero di Cosimo' +p199728 +sg25273 +S'oil on canvas' +p199729 +sg25275 +S'c. 1500' +p199730 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a0000804.jpg' +p199731 +sg25267 +g27 +sa(dp199732 +g25273 +S'drypoint' +p199733 +sg25267 +g27 +sg25275 +S'1909' +p199734 +sg25268 +S'Stirling Castle, No. 2' +p199735 +sg25270 +S'Sir Muirhead Bone' +p199736 +sa(dp199737 +g25273 +S'drypoint' +p199738 +sg25267 +g27 +sg25275 +S'1909' +p199739 +sg25268 +S'The Ypres Tower, Rye' +p199740 +sg25270 +S'Sir Muirhead Bone' +p199741 +sa(dp199742 +g25273 +S'drypoint' +p199743 +sg25267 +g27 +sg25275 +S'1909' +p199744 +sg25268 +S'Near Chichester (Sussex)' +p199745 +sg25270 +S'Sir Muirhead Bone' +p199746 +sa(dp199747 +g25273 +S'drypoint' +p199748 +sg25267 +g27 +sg25275 +S'1909' +p199749 +sg25268 +S"The Provost's Boathouse, Culross - No. 2" +p199750 +sg25270 +S'Sir Muirhead Bone' +p199751 +sa(dp199752 +g25273 +S'drypoint' +p199753 +sg25267 +g27 +sg25275 +S'1909' +p199754 +sg25268 +S'Repairing the Auld Brig, Ayr - No. 1' +p199755 +sg25270 +S'Sir Muirhead Bone' +p199756 +sa(dp199757 +g25273 +S'drypoint' +p199758 +sg25267 +g27 +sg25275 +S'1909' +p199759 +sg25268 +S'Dunimarle' +p199760 +sg25270 +S'Sir Muirhead Bone' +p199761 +sa(dp199762 +g25273 +S'drypoint' +p199763 +sg25267 +g27 +sg25275 +S'1909' +p199764 +sg25268 +S'Ely Yard' +p199765 +sg25270 +S'Sir Muirhead Bone' +p199766 +sa(dp199767 +g25273 +S'drypoint' +p199768 +sg25267 +g27 +sg25275 +S'1909' +p199769 +sg25268 +S'Ayr, from the River' +p199770 +sg25270 +S'Sir Muirhead Bone' +p199771 +sa(dp199772 +g25273 +S'drypoint' +p199773 +sg25267 +g27 +sg25275 +S'1909' +p199774 +sg25268 +S'Ayr Beach' +p199775 +sg25270 +S'Sir Muirhead Bone' +p199776 +sa(dp199777 +g25273 +S'drypoint' +p199778 +sg25267 +g27 +sg25275 +S'1909' +p199779 +sg25268 +S'Culross Roofs' +p199780 +sg25270 +S'Sir Muirhead Bone' +p199781 +sa(dp199782 +g25273 +S'drypoint' +p199783 +sg25267 +g27 +sg25275 +S'1908 and 1921' +p199784 +sg25268 +S"The Jews' Quarter, Leeds" +p199785 +sg25270 +S'Sir Muirhead Bone' +p199786 +sa(dp199787 +g25273 +S'drypoint' +p199788 +sg25267 +g27 +sg25275 +S'1908' +p199789 +sg25268 +S'The New Strand' +p199790 +sg25270 +S'Sir Muirhead Bone' +p199791 +sa(dp199792 +g25273 +S'drypoint' +p199793 +sg25267 +g27 +sg25275 +S'1908' +p199794 +sg25268 +S'Arundel, Sussex' +p199795 +sg25270 +S'Sir Muirhead Bone' +p199796 +sa(dp199797 +g25273 +S'drypoint' +p199798 +sg25267 +g27 +sg25275 +S'1908' +p199799 +sg25268 +S'Cheshire Farm' +p199800 +sg25270 +S'Sir Muirhead Bone' +p199801 +sa(dp199802 +g25273 +S'drypoint' +p199803 +sg25267 +g27 +sg25275 +S'1908' +p199804 +sg25268 +S'Bookplate of Dr. Sidney Vere Pearson' +p199805 +sg25270 +S'Sir Muirhead Bone' +p199806 +sa(dp199807 +g25273 +S'drypoint' +p199808 +sg25267 +g27 +sg25275 +S'1908' +p199809 +sg25268 +S'Bookplate of Dr. Sidney Vere Pearson' +p199810 +sg25270 +S'Sir Muirhead Bone' +p199811 +sa(dp199812 +g25273 +S'drypoint' +p199813 +sg25267 +g27 +sg25275 +S'1912' +p199814 +sg25268 +S'Orvieto (Italy)' +p199815 +sg25270 +S'Sir Muirhead Bone' +p199816 +sa(dp199817 +g25273 +S'drypoint' +p199818 +sg25267 +g27 +sg25275 +S'1912' +p199819 +sg25268 +S'Sestri Levante' +p199820 +sg25270 +S'Sir Muirhead Bone' +p199821 +sa(dp199822 +g25273 +S'drypoint' +p199823 +sg25267 +g27 +sg25275 +S'1912' +p199824 +sg25268 +S'A Tuscan Farm' +p199825 +sg25270 +S'Sir Muirhead Bone' +p199826 +sa(dp199827 +g25273 +S'drypoint' +p199828 +sg25267 +g27 +sg25275 +S'1912' +p199829 +sg25268 +S'The Lanterna, Genoa' +p199830 +sg25270 +S'Sir Muirhead Bone' +p199831 +sa(dp199832 +g25273 +S'drypoint' +p199833 +sg25267 +g27 +sg25275 +S'1912' +p199834 +sg25268 +S'Ponte Vecchio, Florence' +p199835 +sg25270 +S'Sir Muirhead Bone' +p199836 +sa(dp199837 +g25273 +S'drypoint' +p199838 +sg25267 +g27 +sg25275 +S'1912' +p199839 +sg25268 +S"Biasutti's Farm, Querceto" +p199840 +sg25270 +S'Sir Muirhead Bone' +p199841 +sa(dp199842 +g25273 +S'drypoint' +p199843 +sg25267 +g27 +sg25275 +S'1911' +p199844 +sg25268 +S'A Road in the Marche' +p199845 +sg25270 +S'Sir Muirhead Bone' +p199846 +sa(dp199847 +g25273 +S'drypoint' +p199848 +sg25267 +g27 +sg25275 +S'1911' +p199849 +sg25268 +S'Under the Pincian Trees, Rome' +p199850 +sg25270 +S'Sir Muirhead Bone' +p199851 +sa(dp199852 +g25273 +S'drypoint and etching' +p199853 +sg25267 +g27 +sg25275 +S'1911' +p199854 +sg25268 +S'The Old Justiciary Courthouse, Glasgow' +p199855 +sg25270 +S'Sir Muirhead Bone' +p199856 +sa(dp199857 +g25273 +S'drypoint' +p199858 +sg25267 +g27 +sg25275 +S'1911' +p199859 +sg25268 +S'Distant Fermo (Italy) - No. 1' +p199860 +sg25270 +S'Sir Muirhead Bone' +p199861 +sa(dp199862 +g25273 +S'drypoint' +p199863 +sg25267 +g27 +sg25275 +S'1913' +p199864 +sg25268 +S'Walberswick Ferry' +p199865 +sg25270 +S'Sir Muirhead Bone' +p199866 +sa(dp199867 +g25273 +S'drypoint' +p199868 +sg25267 +g27 +sg25275 +S'1914' +p199869 +sg25268 +S'Gypsy Vans, Petersfield Fair, Hampshire' +p199870 +sg25270 +S'Sir Muirhead Bone' +p199871 +sa(dp199872 +g25273 +S'drypoint' +p199873 +sg25267 +g27 +sg25275 +S'1914' +p199874 +sg25268 +S'Week Green Farm, Hampshire' +p199875 +sg25270 +S'Sir Muirhead Bone' +p199876 +sa(dp199877 +g25273 +S'etching and drypoint' +p199878 +sg25267 +g27 +sg25275 +S'1914' +p199879 +sg25268 +S'Canal Boats, Near Amsterdam' +p199880 +sg25270 +S'Sir Muirhead Bone' +p199881 +sa(dp199882 +g25273 +S'drypoint' +p199883 +sg25267 +g27 +sg25275 +S'1913' +p199884 +sg25268 +S'On the Y, Amsterdam' +p199885 +sg25270 +S'Sir Muirhead Bone' +p199886 +sa(dp199887 +g25273 +S'drypoint' +p199888 +sg25267 +g27 +sg25275 +S'1913' +p199889 +sg25268 +S'On the Y, Amsterdam' +p199890 +sg25270 +S'Sir Muirhead Bone' +p199891 +sa(dp199892 +g25273 +S'drypoint' +p199893 +sg25267 +g27 +sg25275 +S'1914' +p199894 +sg25268 +S'Ashford Manor, Steep, Hants' +p199895 +sg25270 +S'Sir Muirhead Bone' +p199896 +sa(dp199897 +g25273 +S'drypoint' +p199898 +sg25267 +g27 +sg25275 +S'1914' +p199899 +sg25268 +S'Calle Pescheria, Venice' +p199900 +sg25270 +S'Sir Muirhead Bone' +p199901 +sa(dp199902 +g25273 +S'drypoint' +p199903 +sg25267 +g27 +sg25275 +S'1913' +p199904 +sg25268 +S'Rainy Night in Rome' +p199905 +sg25270 +S'Sir Muirhead Bone' +p199906 +sa(dp199907 +g25273 +S'drypoint' +p199908 +sg25267 +g27 +sg25275 +S'1913 and 1928' +p199909 +sg25268 +S'The Trevi Fountain, Rome' +p199910 +sg25270 +S'Sir Muirhead Bone' +p199911 +sa(dp199912 +g25273 +S'drypoint' +p199913 +sg25267 +g27 +sg25275 +S'1920' +p199914 +sg25268 +S'Yarmouth, Isle of Wight' +p199915 +sg25270 +S'Sir Muirhead Bone' +p199916 +sa(dp199917 +g25273 +S'drypoint' +p199918 +sg25267 +g27 +sg25275 +S'1913' +p199919 +sg25268 +S'Leyden' +p199920 +sg25270 +S'Sir Muirhead Bone' +p199921 +sa(dp199922 +g25273 +S'drypoint' +p199923 +sg25267 +g27 +sg25275 +S'1913' +p199924 +sg25268 +S'Moy' +p199925 +sg25270 +S'Sir Muirhead Bone' +p199926 +sa(dp199927 +g25273 +S'drypoint' +p199928 +sg25267 +g27 +sg25275 +S'1913' +p199929 +sg25268 +S'The Montalban Tower, Amsterdam' +p199930 +sg25270 +S'Sir Muirhead Bone' +p199931 +sa(dp199932 +g25273 +S'drypoint' +p199933 +sg25267 +g27 +sg25275 +S'1914' +p199934 +sg25268 +S'The Dogana, Venice' +p199935 +sg25270 +S'Sir Muirhead Bone' +p199936 +sa(dp199937 +g25273 +S'drypoint' +p199938 +sg25267 +g27 +sg25275 +S'1915' +p199939 +sg25268 +S'Evening, Port of Genoa' +p199940 +sg25270 +S'Sir Muirhead Bone' +p199941 +sa(dp199942 +g25273 +S'drypoint' +p199943 +sg25267 +g27 +sg25275 +S'1913' +p199944 +sg25268 +S'Great Yarmouth' +p199945 +sg25270 +S'Sir Muirhead Bone' +p199946 +sa(dp199947 +g25273 +S'drypoint' +p199948 +sg25267 +g27 +sg25275 +S'1916' +p199949 +sg25268 +S'From the Adelphi, London' +p199950 +sg25270 +S'Sir Muirhead Bone' +p199951 +sa(dp199952 +g25273 +S'drypoint' +p199953 +sg25267 +g27 +sg25275 +S'1915' +p199954 +sg25268 +S'Piccadilly Circus, 1915' +p199955 +sg25270 +S'Sir Muirhead Bone' +p199956 +sa(dp199957 +g25273 +S'drypoint' +p199958 +sg25267 +g27 +sg25275 +S'1915' +p199959 +sg25268 +S'The Fish Market, Venice - No. 2' +p199960 +sg25270 +S'Sir Muirhead Bone' +p199961 +sa(dp199962 +g25273 +S'drypoint' +p199963 +sg25267 +g27 +sg25275 +S'1915' +p199964 +sg25268 +S'Chioggia (or, An Archway, Chioggia)' +p199965 +sg25270 +S'Sir Muirhead Bone' +p199966 +sa(dp199967 +g25273 +S'drypoint' +p199968 +sg25267 +g27 +sg25275 +S'1916' +p199969 +sg25268 +S'Waterloo Place, London' +p199970 +sg25270 +S'Sir Muirhead Bone' +p199971 +sa(dp199972 +g25273 +S'drypoint' +p199973 +sg25267 +g27 +sg25275 +S'1916 and 1928' +p199974 +sg25268 +S'Canal and Bridge of S.S. Apostoli, Venice' +p199975 +sg25270 +S'Sir Muirhead Bone' +p199976 +sa(dp199977 +g25273 +S'drypoint' +p199978 +sg25267 +g27 +sg25275 +S'1915' +p199979 +sg25268 +S'San Frediano in Cestello, Florence' +p199980 +sg25270 +S'Sir Muirhead Bone' +p199981 +sa(dp199982 +g25268 +S'Christ Appearing to the Virgin' +p199983 +sg25270 +S'Artist Information (' +p199984 +sg25273 +S'Netherlandish, 1399/1400 - 1464' +p199985 +sg25275 +S'(related artist)' +p199986 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000596.jpg' +p199987 +sg25267 +g27 +sa(dp199988 +g25273 +S'drypoint' +p199989 +sg25267 +g27 +sg25275 +S'1915' +p199990 +sg25268 +S'Demolition of the Sardinian Chapel, Kinsway, London - No. 1' +p199991 +sg25270 +S'Sir Muirhead Bone' +p199992 +sa(dp199993 +g25273 +S'drypoint' +p199994 +sg25267 +g27 +sg25275 +S'1912' +p199995 +sg25268 +S'The Alps from the Lido - No. 1' +p199996 +sg25270 +S'Sir Muirhead Bone' +p199997 +sa(dp199998 +g25273 +S'etching and drypoint' +p199999 +sg25267 +g27 +sg25275 +S'1915' +p200000 +sg25268 +S'Construction of an Underground' +p200001 +sg25270 +S'Sir Muirhead Bone' +p200002 +sa(dp200003 +g25273 +S'drypoint' +p200004 +sg25267 +g27 +sg25275 +S'1925' +p200005 +sg25268 +S'A Spanish Good Friday (Ronda)' +p200006 +sg25270 +S'Sir Muirhead Bone' +p200007 +sa(dp200008 +g25273 +S'drypoint' +p200009 +sg25267 +g27 +sg25275 +S'1923/1925' +p200010 +sg25268 +S'Stockholm' +p200011 +sg25270 +S'Sir Muirhead Bone' +p200012 +sa(dp200013 +g25273 +S'drypoint' +p200014 +sg25267 +g27 +sg25275 +S'1921' +p200015 +sg25268 +S"St. Cuthbert's Wells, Somerset - No. 2" +p200016 +sg25270 +S'Sir Muirhead Bone' +p200017 +sa(dp200018 +g25273 +S'drypoint' +p200019 +sg25267 +g27 +sg25275 +S'1918' +p200020 +sg25268 +S'Salvage Men Approaching a Torpedoed Ship' +p200021 +sg25270 +S'Sir Muirhead Bone' +p200022 +sa(dp200023 +g25273 +S'drypoint' +p200024 +sg25267 +g27 +sg25275 +S'1923/1928' +p200025 +sg25268 +S'A Manhattan Excavation' +p200026 +sg25270 +S'Sir Muirhead Bone' +p200027 +sa(dp200028 +g25273 +S'drypoint' +p200029 +sg25267 +g27 +sg25275 +S'1923 and 1925' +p200030 +sg25268 +S'Joseph Conrad Listening to Music' +p200031 +sg25270 +S'Sir Muirhead Bone' +p200032 +sa(dp200033 +g25273 +S'drypoint' +p200034 +sg25267 +g27 +sg25275 +S'1934' +p200035 +sg25268 +S'Autumn Evening, Lowestoft' +p200036 +sg25270 +S'Sir Muirhead Bone' +p200037 +sa(dp200038 +g25273 +S'drypoint' +p200039 +sg25267 +g27 +sg25275 +S'1937' +p200040 +sg25268 +S'Railway Sheds, Marseilles' +p200041 +sg25270 +S'Sir Muirhead Bone' +p200042 +sa(dp200043 +g25273 +S'drypoint' +p200044 +sg25267 +g27 +sg25275 +S'1929' +p200045 +sg25268 +S'Convent of San Payo, Santiago de Compostela, Spain' +p200046 +sg25270 +S'Sir Muirhead Bone' +p200047 +sa(dp200048 +g25273 +S'drypoint' +p200049 +sg25267 +g27 +sg25275 +S'1898' +p200050 +sg25268 +S'Mrs. Drummond and Another Head' +p200051 +sg25270 +S'Sir Muirhead Bone' +p200052 +sa(dp200053 +g25273 +S'drypoint' +p200054 +sg25267 +g27 +sg25275 +S'1935' +p200055 +sg25268 +S'Shrimp Boats, Great Yarmouth' +p200056 +sg25270 +S'Sir Muirhead Bone' +p200057 +sa(dp200058 +g25273 +S'drypoint' +p200059 +sg25267 +g27 +sg25275 +S'unknown date\n' +p200060 +sg25268 +S'Salisbury' +p200061 +sg25270 +S'Sir Muirhead Bone' +p200062 +sa(dp200063 +g25273 +S'drypoint' +p200064 +sg25267 +g27 +sg25275 +S'1923' +p200065 +sg25268 +S'Frank Weitenkampf' +p200066 +sg25270 +S'Sir Muirhead Bone' +p200067 +sa(dp200068 +g25273 +S'drypoint' +p200069 +sg25267 +g27 +sg25275 +S'1911' +p200070 +sg25268 +S'Sunset, from the Pincio, Rome' +p200071 +sg25270 +S'Sir Muirhead Bone' +p200072 +sa(dp200073 +g25273 +S'drypoint' +p200074 +sg25267 +g27 +sg25275 +S'1905' +p200075 +sg25268 +S'The Masts, Lincoln' +p200076 +sg25270 +S'Sir Muirhead Bone' +p200077 +sa(dp200078 +g25273 +S'drypoint' +p200079 +sg25267 +g27 +sg25275 +S'probably 1904' +p200080 +sg25268 +S'Midnight Soup' +p200081 +sg25270 +S'Sir Muirhead Bone' +p200082 +sa(dp200083 +g25273 +S'drypoint' +p200084 +sg25267 +g27 +sg25275 +S'1923' +p200085 +sg25268 +S'Dr. Eugene Noble' +p200086 +sg25270 +S'Sir Muirhead Bone' +p200087 +sa(dp200088 +g25273 +S'etching and drypoint' +p200089 +sg25267 +g27 +sg25275 +S'1911' +p200090 +sg25268 +S'Glasgow: East End' +p200091 +sg25270 +S'Sir Muirhead Bone' +p200092 +sa(dp200093 +g25273 +S'drypoint' +p200094 +sg25267 +g27 +sg25275 +S'1927' +p200095 +sg25268 +S'Leonard Gow' +p200096 +sg25270 +S'Sir Muirhead Bone' +p200097 +sa(dp200098 +g25273 +S'drypoint' +p200099 +sg25267 +g27 +sg25275 +S'1920/1921' +p200100 +sg25268 +S'Rouen' +p200101 +sg25270 +S'Sir Muirhead Bone' +p200102 +sa(dp200103 +g25273 +S'drypoint' +p200104 +sg25267 +g27 +sg25275 +S'1920' +p200105 +sg25268 +S'The Solent' +p200106 +sg25270 +S'Sir Muirhead Bone' +p200107 +sa(dp200108 +g25273 +S'drypoint' +p200109 +sg25267 +g27 +sg25275 +S'1923/1925' +p200110 +sg25268 +S'Strandvagen, Stockholm' +p200111 +sg25270 +S'Sir Muirhead Bone' +p200112 +sa(dp200113 +g25273 +S'etching and drypoint' +p200114 +sg25267 +g27 +sg25275 +S'1915' +p200115 +sg25268 +S'Porch of the Pantheon, Rome' +p200116 +sg25270 +S'Sir Muirhead Bone' +p200117 +sa(dp200118 +g25273 +S'drypoint' +p200119 +sg25267 +g27 +sg25275 +S'1920' +p200120 +sg25268 +S'Rabindranath Tagore' +p200121 +sg25270 +S'Sir Muirhead Bone' +p200122 +sa(dp200123 +g25273 +S'etching and drypoint' +p200124 +sg25267 +g27 +sg25275 +S'1899' +p200125 +sg25268 +S'Gorbals' +p200126 +sg25270 +S'Sir Muirhead Bone' +p200127 +sa(dp200128 +g25273 +S'drypoint' +p200129 +sg25267 +g27 +sg25275 +S'1915' +p200130 +sg25268 +S'Falmouth' +p200131 +sg25270 +S'Sir Muirhead Bone' +p200132 +sa(dp200133 +g25273 +S'drypoint' +p200134 +sg25267 +g27 +sg25275 +S'1903' +p200135 +sg25268 +S"Foster's Boathouse, Cambridge" +p200136 +sg25270 +S'Sir Muirhead Bone' +p200137 +sa(dp200138 +g25273 +S'drypoint' +p200139 +sg25267 +g27 +sg25275 +S'1923/1925' +p200140 +sg25268 +S'Joseph Conrad' +p200141 +sg25270 +S'Sir Muirhead Bone' +p200142 +sa(dp200143 +g25273 +S'graphite' +p200144 +sg25267 +g27 +sg25275 +S'unknown date\n' +p200145 +sg25268 +S'Lighthouse, Genoa' +p200146 +sg25270 +S'Sir Muirhead Bone' +p200147 +sa(dp200148 +g25273 +S'drypoint' +p200149 +sg25267 +g27 +sg25275 +S'1923' +p200150 +sg25268 +S'George W. Davison - No. 1' +p200151 +sg25270 +S'Sir Muirhead Bone' +p200152 +sa(dp200153 +g25273 +S'etching' +p200154 +sg25267 +g27 +sg25275 +S'1936' +p200155 +sg25268 +S'Waterfront' +p200156 +sg25270 +S'Albert Bloch' +p200157 +sa(dp200158 +g25273 +S'aquatint' +p200159 +sg25267 +g27 +sg25275 +S'1934' +p200160 +sg25268 +S'Southern Exposure' +p200161 +sg25270 +S'Albert Bloch' +p200162 +sa(dp200163 +g25268 +S'Eglise de Saint-Taurin, Evreux' +p200164 +sg25270 +S'Richard Parkes Bonington' +p200165 +sg25273 +S'lithograph' +p200166 +sg25275 +S'1824' +p200167 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007df6.jpg' +p200168 +sg25267 +g27 +sa(dp200169 +g25268 +S'Bologna' +p200170 +sg25270 +S'Richard Parkes Bonington' +p200171 +sg25273 +S'etching' +p200172 +sg25275 +S'1826/1827' +p200173 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cf2.jpg' +p200174 +sg25267 +g27 +sa(dp200175 +g25268 +S'Tour du gros-horloge, Evreux' +p200176 +sg25270 +S'Richard Parkes Bonington' +p200177 +sg25273 +S'lithograph' +p200178 +sg25275 +S'1824' +p200179 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d90.jpg' +p200180 +sg25267 +g27 +sa(dp200181 +g25268 +S'Rue du gros-horloge, Rouen' +p200182 +sg25270 +S'Richard Parkes Bonington' +p200183 +sg25273 +S'lithograph' +p200184 +sg25275 +S'1824' +p200185 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dd2.jpg' +p200186 +sg25267 +g27 +sa(dp200187 +g25273 +S'lithograph in gray-green, gray-black, yellow and orange' +p200188 +sg25267 +g27 +sg25275 +S'c. 1895/1896 (published 1899)' +p200189 +sg25268 +S'Boulevard' +p200190 +sg25270 +S'Pierre Bonnard' +p200191 +sa(dp200192 +g25273 +S'lithograph in beige, brown, greenish-gray, blue and yellow' +p200193 +sg25267 +g27 +sg25275 +S'1897/1898 (published 1899)' +p200194 +sg25268 +S'The Street at Night in the Rain' +p200195 +sg25270 +S'Pierre Bonnard' +p200196 +sa(dp200197 +g25273 +S'lithograph in two browns, beige and yellow' +p200198 +sg25267 +g27 +sg25275 +S'1897/1898 (published 1899)' +p200199 +sg25268 +S'The Bridge (Le Pont)' +p200200 +sg25270 +S'Pierre Bonnard' +p200201 +sa(dp200202 +g25273 +S'lithograph in yellow, beige and two greens' +p200203 +sg25267 +g27 +sg25275 +S'1899' +p200204 +sg25268 +S'Street Seen from Above' +p200205 +sg25270 +S'Pierre Bonnard' +p200206 +sa(dp200207 +g25273 +S'lithograph in brown, yellow, pink, black and blue' +p200208 +sg25267 +g27 +sg25275 +S'c. 1897 (published 1899)' +p200209 +sg25268 +S'Costermonger (Le marchand des quatres-saisons)' +p200210 +sg25270 +S'Pierre Bonnard' +p200211 +sa(dp200212 +g25273 +S'lithograph in ochre-red, beige, yellow, brown-violet and black' +p200213 +sg25267 +g27 +sg25275 +S'1897/1898 (published 1899)' +p200214 +sg25268 +S'Avenue du Bois' +p200215 +sg25270 +S'Pierre Bonnard' +p200216 +sa(dp200217 +g25273 +S'lithograph in two greens, gray, brown and red' +p200218 +sg25267 +g27 +sg25275 +S'1897/1898 (published 1899)' +p200219 +sg25268 +S"L'Arc de Triomphe" +p200220 +sg25270 +S'Pierre Bonnard' +p200221 +sa(dp200222 +g25273 +S'lithograph in pink, yellow, blue and red' +p200223 +sg25267 +g27 +sg25275 +S'1899' +p200224 +sg25268 +S'At the Theater' +p200225 +sg25270 +S'Pierre Bonnard' +p200226 +sa(dp200227 +g25273 +S'lithograph in gray-green, brown, yellow and blue' +p200228 +sg25267 +g27 +sg25275 +S'1899' +p200229 +sg25268 +S'Street Corner' +p200230 +sg25270 +S'Pierre Bonnard' +p200231 +sa(dp200232 +g25273 +S'lithograph in beige, gray, black and green' +p200233 +sg25267 +g27 +sg25275 +S'1899' +p200234 +sg25268 +S'House in the Courtyard (Maison dans la cour)' +p200235 +sg25270 +S'Pierre Bonnard' +p200236 +sa(dp200237 +g25273 +S'lithograph in yellow, red, violet and gray' +p200238 +sg25267 +g27 +sg25275 +S'1899' +p200239 +sg25268 +S'The Square at Night' +p200240 +sg25270 +S'Pierre Bonnard' +p200241 +sa(dp200242 +g25273 +S'lithograph in brown, gray, pink and blue' +p200243 +sg25267 +g27 +sg25275 +S'1899' +p200244 +sg25268 +S'Street Corner Seen from Above' +p200245 +sg25270 +S'Pierre Bonnard' +p200246 +sa(dp200247 +g25273 +S'lithograph in brown and orange' +p200248 +sg25267 +g27 +sg25275 +S'1898 (published 1899)' +p200249 +sg25268 +S'Quelques Aspects de la Vie de Paris (Album Cover)' +p200250 +sg25270 +S'Pierre Bonnard' +p200251 +sa(dp200252 +g25273 +S'etching' +p200253 +sg25267 +g27 +sg25275 +S'unknown date\n' +p200254 +sg25268 +S'Bucking Bronco' +p200255 +sg25270 +S'Edward Borein' +p200256 +sa(dp200257 +g25268 +S'Manhood' +p200258 +sg25270 +S'Abraham Bosse' +p200259 +sg25273 +S'engraving and etching' +p200260 +sg25275 +S'1636' +p200261 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a6d.jpg' +p200262 +sg25267 +g27 +sa(dp200263 +g25268 +S'Death' +p200264 +sg25270 +S'Abraham Bosse' +p200265 +sg25273 +S'engraving and etching' +p200266 +sg25275 +S'1636' +p200267 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a6e.jpg' +p200268 +sg25267 +g27 +sa(dp200269 +g25268 +S'Adolescence' +p200270 +sg25270 +S'Abraham Bosse' +p200271 +sg25273 +S'engraving and etching' +p200272 +sg25275 +S'1636' +p200273 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a6f.jpg' +p200274 +sg25267 +g27 +sa(dp200275 +g25268 +S'Childhood' +p200276 +sg25270 +S'Abraham Bosse' +p200277 +sg25273 +S'engraving and etching' +p200278 +sg25275 +S'1636' +p200279 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a70.jpg' +p200280 +sg25267 +g27 +sa(dp200281 +g25273 +S'etching' +p200282 +sg25267 +g27 +sg25275 +S'1942' +p200283 +sg25268 +S'Beside a Valley Road' +p200284 +sg25270 +S'Cornelis Botke' +p200285 +sa(dp200286 +g25273 +S'color lithograph' +p200287 +sg25267 +g27 +sg25275 +S'1932' +p200288 +sg25268 +S'Athena' +p200289 +sg25270 +S'Georges Braque' +p200290 +sa(dp200291 +g25273 +S'etching on Arches paper' +p200292 +sg25267 +g27 +sg25275 +S'1911' +p200293 +sg25268 +S'Fox' +p200294 +sg25270 +S'Georges Braque' +p200295 +sa(dp200296 +g25268 +S'The Apparition of the Virgin' +p200297 +sg25270 +S'Girolamo da Carpi' +p200298 +sg25273 +S'oil on panel' +p200299 +sg25275 +S'1530/1540' +p200300 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037b8.jpg' +p200301 +sg25267 +g27 +sa(dp200302 +g25268 +S'Charles Meryon' +p200303 +sg25270 +S'F\xc3\xa9lix Bracquemond' +p200304 +sg25273 +S'etching' +p200305 +sg25275 +S'1853' +p200306 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a000913e.jpg' +p200307 +sg25267 +g27 +sa(dp200308 +g25268 +S'Hiver (Winter)' +p200309 +sg25270 +S'F\xc3\xa9lix Bracquemond' +p200310 +sg25273 +S'etching' +p200311 +sg25275 +S'unknown date\n' +p200312 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d76.jpg' +p200313 +sg25267 +g27 +sa(dp200314 +g25268 +S'Charles Meryon' +p200315 +sg25270 +S'F\xc3\xa9lix Bracquemond' +p200316 +sg25273 +S'etching in brown-black and red on laid paper' +p200317 +sg25275 +S'1854' +p200318 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a000913b.jpg' +p200319 +sg25267 +g27 +sa(dp200320 +g25268 +S'The Old Cock' +p200321 +sg25270 +S'F\xc3\xa9lix Bracquemond' +p200322 +sg25273 +S'etching' +p200323 +sg25275 +S'1882' +p200324 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009146.jpg' +p200325 +sg25267 +g27 +sa(dp200326 +g25268 +S'The Old Cock' +p200327 +sg25270 +S'F\xc3\xa9lix Bracquemond' +p200328 +sg25273 +S'graphite' +p200329 +sg25275 +S'unknown date\n' +p200330 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fd5.jpg' +p200331 +sg25267 +g27 +sa(dp200332 +g25268 +S'The Haunted House' +p200333 +sg25270 +S'Rodolphe Bresdin' +p200334 +sg25273 +S'lithograph' +p200335 +sg25275 +S'1871' +p200336 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009153.jpg' +p200337 +sg25267 +g27 +sa(dp200338 +g25268 +S'The Haunted House' +p200339 +sg25270 +S'Rodolphe Bresdin' +p200340 +sg25273 +S'etching' +p200341 +sg25275 +S'1871' +p200342 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009152.jpg' +p200343 +sg25267 +g27 +sa(dp200344 +g25268 +S'Branches' +p200345 +sg25270 +S'Rodolphe Bresdin' +p200346 +sg25273 +S'etching' +p200347 +sg25275 +S'unknown date\n' +p200348 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009815.jpg' +p200349 +sg25267 +g27 +sa(dp200350 +g25273 +S'graphite' +p200351 +sg25267 +g27 +sg25275 +S'unknown date\n' +p200352 +sg25268 +S'Cypriano' +p200353 +sg25270 +S'Gerald Leslie Brockhurst' +p200354 +sa(dp200355 +g25273 +S'etching' +p200356 +sg25267 +g27 +sg25275 +S'1927' +p200357 +sg25268 +S'Cypriano' +p200358 +sg25270 +S'Gerald Leslie Brockhurst' +p200359 +sa(dp200360 +g25268 +S'Hans Brosamer' +p200361 +sg25270 +S'Thomas Hirschmann' +p200362 +sg25273 +S'engraving' +p200363 +sg25275 +S'unknown date\n' +p200364 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2bc.jpg' +p200365 +sg25267 +g27 +sa(dp200366 +g25268 +S'Solomon Worshipping Idols' +p200367 +sg25270 +S'Hans Brosamer' +p200368 +sg25273 +S'engraving' +p200369 +sg25275 +S'1545' +p200370 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8f6.jpg' +p200371 +sg25267 +g27 +sa(dp200372 +g25268 +S'Samson and Delilah' +p200373 +sg25270 +S'Hans Brosamer' +p200374 +sg25273 +S'engraving' +p200375 +sg25275 +S'1545' +p200376 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8f5.jpg' +p200377 +sg25267 +g27 +sa(dp200378 +g25268 +S'Exempel und Lehr Jetziger Welt Lauf' +p200379 +sg25270 +S'Andreas Bretschneider III' +p200380 +sg25273 +S'etching' +p200381 +sg25275 +S'published 1622' +p200382 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2ba.jpg' +p200383 +sg25267 +g27 +sa(dp200384 +g25268 +S'Prudence' +p200385 +sg25270 +S'Artist Information (' +p200386 +sg25273 +S'(artist after)' +p200387 +sg25275 +S'\n' +p200388 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf06.jpg' +p200389 +sg25267 +g27 +sa(dp200390 +g25268 +S'Temperance' +p200391 +sg25270 +S'Artist Information (' +p200392 +sg25273 +S'(artist after)' +p200393 +sg25275 +S'\n' +p200394 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf09.jpg' +p200395 +sg25267 +g27 +sa(dp200396 +g25268 +S'Faith' +p200397 +sg25270 +S'Artist Information (' +p200398 +sg25273 +S'(artist after)' +p200399 +sg25275 +S'\n' +p200400 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ceff.jpg' +p200401 +sg25267 +g27 +sa(dp200402 +g25268 +S'Fortitude' +p200403 +sg25270 +S'Artist Information (' +p200404 +sg25273 +S'(artist after)' +p200405 +sg25275 +S'\n' +p200406 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cefc.jpg' +p200407 +sg25267 +g27 +sa(dp200408 +g25268 +S'Justice' +p200409 +sg25270 +S'Artist Information (' +p200410 +sg25273 +S'(artist after)' +p200411 +sg25275 +S'\n' +p200412 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf05.jpg' +p200413 +sg25267 +g27 +sa(dp200414 +g25268 +S'Hope' +p200415 +sg25270 +S'Artist Information (' +p200416 +sg25273 +S'(artist after)' +p200417 +sg25275 +S'\n' +p200418 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf01.jpg' +p200419 +sg25267 +g27 +sa(dp200420 +g25268 +S'Charity' +p200421 +sg25270 +S'Artist Information (' +p200422 +sg25273 +S'(artist after)' +p200423 +sg25275 +S'\n' +p200424 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf03.jpg' +p200425 +sg25267 +g27 +sa(dp200426 +g25268 +S'Magdalena Poenitens (The Penitent Magdalene)' +p200427 +sg25270 +S'Artist Information (' +p200428 +sg25273 +S'(artist)' +p200429 +sg25275 +S'\n' +p200430 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ceda.jpg' +p200431 +sg25267 +g27 +sa(dp200432 +g25268 +S'Milites Requiescentes (Soldiers at Rest)' +p200433 +sg25270 +S'Artist Information (' +p200434 +sg25273 +S'(artist)' +p200435 +sg25275 +S'\n' +p200436 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d064.jpg' +p200437 +sg25267 +g27 +sa(dp200438 +g25268 +S'Euntes in Emaus (The Pilgrims to Emmaus)' +p200439 +sg25270 +S'Artist Information (' +p200440 +sg25273 +S'(artist)' +p200441 +sg25275 +S'\n' +p200442 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d05e.jpg' +p200443 +sg25267 +g27 +sa(dp200444 +g25268 +S'Woman and Death' +p200445 +sg25270 +S'Franz Brun' +p200446 +sg25273 +S'engraving' +p200447 +sg25275 +S'unknown date\n' +p200448 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8f7.jpg' +p200449 +sg25267 +g27 +sa(dp200450 +g25268 +S'Venus' +p200451 +sg25270 +S'Abraham de Bruyn' +p200452 +sg25273 +S'engraving' +p200453 +sg25275 +S'1569' +p200454 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf22.jpg' +p200455 +sg25267 +g27 +sa(dp200456 +g25268 +S'Samson and Delilah' +p200457 +sg25270 +S'Hans Burgkmair I' +p200458 +sg25273 +S'woodcut' +p200459 +sg25275 +S'unknown date\n' +p200460 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8df.jpg' +p200461 +sg25267 +g27 +sa(dp200462 +g25268 +S'Saint Luke Painting the Portrait of the Virgin' +p200463 +sg25270 +S'Hans Burgkmair I' +p200464 +sg25273 +S'woodcut' +p200465 +sg25275 +S'1507' +p200466 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8d4.jpg' +p200467 +sg25267 +g27 +sa(dp200468 +g25268 +S'The Old White King Sending His Messengers to Portugal' +p200469 +sg25270 +S'Leonhard Beck' +p200470 +sg25273 +S'woodcut' +p200471 +sg25275 +S'1514/1516' +p200472 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000ae0c.jpg' +p200473 +sg25267 +g27 +sa(dp200474 +g25268 +S'Three Men and a Boy in the Court of a Castle, to the Right Three Men on a Staircase' +p200475 +sg25270 +S'Leonhard Beck' +p200476 +sg25273 +S'woodcut' +p200477 +sg25275 +S'1514/1516' +p200478 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b09e.jpg' +p200479 +sg25267 +g27 +sa(dp200480 +g25268 +S'A Legation before a King, near Him Two Women Standing' +p200481 +sg25270 +S'Leonhard Beck' +p200482 +sg25273 +S'woodcut' +p200483 +sg25275 +S'1514/1516' +p200484 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0a1.jpg' +p200485 +sg25267 +g27 +sa(dp200486 +g25268 +S'The Swiss Embassy against the Blue King' +p200487 +sg25270 +S'Hans Burgkmair I' +p200488 +sg25273 +S'woodcut' +p200489 +sg25275 +S'unknown date\n' +p200490 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000af/a000af57.jpg' +p200491 +sg25267 +g27 +sa(dp200492 +g25268 +S'Saint Remigius' +p200493 +sg25270 +S'Leonhard Beck' +p200494 +sg25273 +S'woodcut' +p200495 +sg25275 +S'1510' +p200496 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0ac.jpg' +p200497 +sg25267 +g27 +sa(dp200498 +g25268 +S'Assembly of Four Kings, in the foreground Four Men' +p200499 +sg25270 +S'Leonhard Beck' +p200500 +sg25273 +S'woodcut' +p200501 +sg25275 +S'1514/1516' +p200502 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b09d.jpg' +p200503 +sg25267 +g27 +sa(dp200504 +g25268 +S'Sketch of a Woman in Half-Length' +p200505 +sg25270 +S'Jean-Louis Forain' +p200506 +sg25273 +S'lithograph' +p200507 +sg25275 +S'unknown date\n' +p200508 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a4e.jpg' +p200509 +sg25267 +g27 +sa(dp200510 +g25273 +S'etched copper plate [cancelled]' +p200511 +sg25267 +g27 +sg25275 +S'1929' +p200512 +sg25268 +S'The Station Agent' +p200513 +sg25270 +S'Dwight Case Sturges' +p200514 +sa(dp200515 +g25273 +S'(artist after)' +p200516 +sg25267 +g27 +sg25275 +S'\n' +p200517 +sg25268 +S"Un Realiste trouve toujours un plus realiste qui l'admire" +p200518 +sg25270 +S'Artist Information (' +p200519 +sa(dp200520 +g25273 +S'linecut block' +p200521 +sg25267 +g27 +sg25275 +S'unknown date\n' +p200522 +sg25268 +S'Man Reading' +p200523 +sg25270 +S'Rockwell Kent' +p200524 +sa(dp200525 +g25268 +S'Portrait of Diego de Guevara (?)' +p200526 +sg25270 +S'Michel Sittow' +p200527 +sg25273 +S'oil on panel' +p200528 +sg25275 +S'c. 1515/1518' +p200529 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004a6.jpg' +p200530 +sg25267 +S"Michel Sittow, a northern painter who was born in Estonia on the Baltic Sea but\napprenticed in Bruges, was an acclaimed portraitist at the Spanish court. After\nQueen Isabella's death in 1504, his peripatetic career took him to several northern\nEuropean centers, including Burgundy, where he probably painted this portrait.\n The sitter gazes with serious mien, not at the viewer, but at an unseen point beyond\nthe picture's frame. The ornate carpet covering the stone parapet on which his hand\nrests provided scholars with an important clue that led to the discovery of the\nobject of his concentration -- a painting of the Madonna and Child, of similar dimensions,\nin the Gemäldegalerie in Berlin. In that panel a larger portion of the parapet,\ncovered by the same carpet, appears as a support for the Christ Child. It seems\ncertain that the Berlin and Washington panels were originally hinged together to\nform a devotional diptych.\n Circumstantial evidence suggests that the National Gallery's portrait represents\nDiego de Guevara, a nobleman whose family came from Santander in northern Spain.\nFor forty years Don Diego was a valued member of the Habsburg court in Burgundy.\nSupporting this identity is the embroidered cross of the Spanish Order of Calatrava\non his golden doublet; after serving in numerous positions of trust in the households\nof Philip the Fair and Charles V, Don Diego was appointed to the wardenship of that\norder.\n " +p200531 +sa(dp200532 +g25273 +S'drypoint' +p200533 +sg25267 +g27 +sg25275 +S'unknown date\n' +p200534 +sg25268 +S'Harbour Scene' +p200535 +sg25270 +S'Franklin Townsend Morgan' +p200536 +sa(dp200537 +g25273 +S'lithograph' +p200538 +sg25267 +g27 +sg25275 +S'1935' +p200539 +sg25268 +S'Coal Town' +p200540 +sg25270 +S'Barbara Burrage' +p200541 +sa(dp200542 +g25273 +S'etching' +p200543 +sg25267 +g27 +sg25275 +S'1939' +p200544 +sg25268 +S'Two Boys on a Beach #2' +p200545 +sg25270 +S'Paul Cadmus' +p200546 +sa(dp200547 +g25273 +S'drypoint' +p200548 +sg25267 +g27 +sg25275 +S'unknown date\n' +p200549 +sg25268 +S'Whispering Steps - Baghdad' +p200550 +sg25270 +S'Charles William Cain' +p200551 +sa(dp200552 +g25273 +S'drypoint' +p200553 +sg25267 +g27 +sg25275 +S'unknown date\n' +p200554 +sg25268 +S'120 Degrees - Tigris' +p200555 +sg25270 +S'Charles William Cain' +p200556 +sa(dp200557 +g25273 +S'drypoint' +p200558 +sg25267 +g27 +sg25275 +S'unknown date\n' +p200559 +sg25268 +S'Daughters of Israel' +p200560 +sg25270 +S'Charles William Cain' +p200561 +sa(dp200562 +g25273 +S'drypoint' +p200563 +sg25267 +g27 +sg25275 +S'unknown date\n' +p200564 +sg25268 +S'Castle Elizabeth' +p200565 +sg25270 +S'Charles William Cain' +p200566 +sa(dp200567 +g25268 +S'Saint John on the Isle of Patmos' +p200568 +sg25270 +S'Jacques Callot' +p200569 +sg25273 +S'etching and engraving' +p200570 +sg25275 +S'1625' +p200571 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086ab.jpg' +p200572 +sg25267 +g27 +sa(dp200573 +g25268 +S'The Holy Family' +p200574 +sg25270 +S'Agnolo Bronzino' +p200575 +sg25273 +S'oil on panel' +p200576 +sg25275 +S'c. 1527/1528' +p200577 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005d1.jpg' +p200578 +sg25267 +S'Once thought to be the work of Pontormo, most scholars now agree this is\r\n an early painting by Bronzino, who apprenticed in Pontormo’s workshop. The\r\n Virgin’s symmetrically oval face resembles Pontormo’s madonnas, but other\r\n elements point to Bronzino’s own emerging style, particularly his use of\r\n large areas of color and his isolation of the figures. Although they are\r\n linked through gesture and gaze, each seems to be framed within an\r\n individual space. The Holy Family almost forms a human still life: the\r\n figures are frozen on the surface, their masklike faces lacking humanity.\r\n Little emotion shows below the hard, smooth paint surface.\n From a distance, we first see a strong linear pattern emerging from the\r\n almost abstract interplay of bright figure shapes and the dark background.\r\n Yet up close, the work’s precision and particularity dominate. Such tension\r\n between abstract composition and intense realism in detail accounts for\r\n much of the “strangeness” detected in mannerist paintings.\n ' +p200579 +sa(dp200580 +g25268 +S'The Annunciation' +p200581 +sg25270 +S'Jacques Callot' +p200582 +sg25273 +S'etching' +p200583 +sg25275 +S'unknown date\n' +p200584 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a0008732.jpg' +p200585 +sg25267 +g27 +sa(dp200586 +g25268 +S'The Fan' +p200587 +sg25270 +S'Jacques Callot' +p200588 +sg25273 +S'etching and engraving' +p200589 +sg25275 +S'1619' +p200590 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ac2.jpg' +p200591 +sg25267 +g27 +sa(dp200592 +g25268 +S'Frontispiece for "The Life of the Virgin"' +p200593 +sg25270 +S'Jacques Callot' +p200594 +sg25273 +S'etching' +p200595 +sg25275 +S'in or after 1630' +p200596 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a000883b.jpg' +p200597 +sg25267 +g27 +sa(dp200598 +g25268 +S'The Birth of the Virgin' +p200599 +sg25270 +S'Jacques Callot' +p200600 +sg25273 +S'etching' +p200601 +sg25275 +S'in or after 1630' +p200602 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a000883c.jpg' +p200603 +sg25267 +g27 +sa(dp200604 +g25268 +S'The Presentation of the Virgin' +p200605 +sg25270 +S'Jacques Callot' +p200606 +sg25273 +S'etching' +p200607 +sg25275 +S'in or after 1630' +p200608 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008835.jpg' +p200609 +sg25267 +g27 +sa(dp200610 +g25268 +S'The Marriage of the Virgin' +p200611 +sg25270 +S'Jacques Callot' +p200612 +sg25273 +S'etching' +p200613 +sg25275 +S'in or after 1630' +p200614 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008836.jpg' +p200615 +sg25267 +g27 +sa(dp200616 +g25268 +S'The Annunciation' +p200617 +sg25270 +S'Jacques Callot' +p200618 +sg25273 +S'etching' +p200619 +sg25275 +S'in or after 1630' +p200620 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008841.jpg' +p200621 +sg25267 +g27 +sa(dp200622 +g25268 +S'The Visitation' +p200623 +sg25270 +S'Jacques Callot' +p200624 +sg25273 +S'etching' +p200625 +sg25275 +S'in or after 1630' +p200626 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008842.jpg' +p200627 +sg25267 +g27 +sa(dp200628 +g25268 +S'The Nativity' +p200629 +sg25270 +S'Jacques Callot' +p200630 +sg25273 +S'etching' +p200631 +sg25275 +S'in or after 1630' +p200632 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008843.jpg' +p200633 +sg25267 +g27 +sa(dp200634 +g25268 +S'The Adoration of the Magi' +p200635 +sg25270 +S'Jacques Callot' +p200636 +sg25273 +S'etching' +p200637 +sg25275 +S'in or after 1630' +p200638 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008833.jpg' +p200639 +sg25267 +g27 +sa(dp200640 +g25268 +S'Saint Lucretia' +p200641 +sg25270 +S'Dosso Dossi' +p200642 +sg25273 +S'oil on panel' +p200643 +sg25275 +S'c. 1520' +p200644 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a00007f7.jpg' +p200645 +sg25267 +g27 +sa(dp200646 +g25268 +S'The Virgin Presents Jesus at the Temple' +p200647 +sg25270 +S'Jacques Callot' +p200648 +sg25273 +S'etching' +p200649 +sg25275 +S'in or after 1630' +p200650 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008844.jpg' +p200651 +sg25267 +g27 +sa(dp200652 +g25268 +S'The Flight into Egypt' +p200653 +sg25270 +S'Jacques Callot' +p200654 +sg25273 +S'etching' +p200655 +sg25275 +S'in or after 1630' +p200656 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008834.jpg' +p200657 +sg25267 +g27 +sa(dp200658 +g25268 +S'The Death of the Virgin' +p200659 +sg25270 +S'Jacques Callot' +p200660 +sg25273 +S'etching' +p200661 +sg25275 +S'in or after 1630' +p200662 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008831.jpg' +p200663 +sg25267 +g27 +sa(dp200664 +g25268 +S'The Burial of the Virgin' +p200665 +sg25270 +S'Jacques Callot' +p200666 +sg25273 +S'etching' +p200667 +sg25275 +S'in or after 1630' +p200668 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008832.jpg' +p200669 +sg25267 +g27 +sa(dp200670 +g25268 +S'The Assumption of the Virgin' +p200671 +sg25270 +S'Jacques Callot' +p200672 +sg25273 +S'etching' +p200673 +sg25275 +S'in or after 1630' +p200674 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a000882f.jpg' +p200675 +sg25267 +g27 +sa(dp200676 +g25268 +S'Attributes of the Virgin' +p200677 +sg25270 +S'Jacques Callot' +p200678 +sg25273 +S'etching' +p200679 +sg25275 +S'in or after 1630' +p200680 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a0008830.jpg' +p200681 +sg25267 +g27 +sa(dp200682 +g25268 +S'Title Page for "The Military Exercises"' +p200683 +sg25270 +S'Jacques Callot' +p200684 +sg25273 +S'etching' +p200685 +sg25275 +S'1634/1635' +p200686 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087e7.jpg' +p200687 +sg25267 +g27 +sa(dp200688 +g25268 +S'Unarmed Drill' +p200689 +sg25270 +S'Jacques Callot' +p200690 +sg25273 +S'etching' +p200691 +sg25275 +S'1634/1635' +p200692 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a000879f.jpg' +p200693 +sg25267 +g27 +sa(dp200694 +g25268 +S'Drill with Drums' +p200695 +sg25270 +S'Jacques Callot' +p200696 +sg25273 +S'etching' +p200697 +sg25275 +S'1634/1635' +p200698 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087a0.jpg' +p200699 +sg25267 +g27 +sa(dp200700 +g25268 +S'Drill with Halberds' +p200701 +sg25270 +S'Jacques Callot' +p200702 +sg25273 +S'etching' +p200703 +sg25275 +S'1634/1635' +p200704 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a000879b.jpg' +p200705 +sg25267 +g27 +sa(dp200706 +g25268 +S'Drill with the Musket' +p200707 +sg25270 +S'Jacques Callot' +p200708 +sg25273 +S'etching' +p200709 +sg25275 +S'1634/1635' +p200710 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087b2.jpg' +p200711 +sg25267 +g27 +sa(dp200712 +g25268 +S'Drill with the Musket' +p200713 +sg25270 +S'Jacques Callot' +p200714 +sg25273 +S'etching' +p200715 +sg25275 +S'1634/1635' +p200716 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087ab.jpg' +p200717 +sg25267 +g27 +sa(dp200718 +g25268 +S'Drill with Raised Pikes' +p200719 +sg25270 +S'Jacques Callot' +p200720 +sg25273 +S'etching' +p200721 +sg25275 +S'1634/1635' +p200722 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a000879c.jpg' +p200723 +sg25267 +g27 +sa(dp200724 +g25268 +S'Drill with Tilted Pikes' +p200725 +sg25270 +S'Jacques Callot' +p200726 +sg25273 +S'etching' +p200727 +sg25275 +S'1634/1635' +p200728 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087b1.jpg' +p200729 +sg25267 +g27 +sa(dp200730 +g25268 +S'Taking the Firing Position with the Musket' +p200731 +sg25270 +S'Jacques Callot' +p200732 +sg25273 +S'etching' +p200733 +sg25275 +S'1634/1635' +p200734 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087ac.jpg' +p200735 +sg25267 +g27 +sa(dp200736 +g25268 +S'Firing the Musket' +p200737 +sg25270 +S'Jacques Callot' +p200738 +sg25273 +S'etching' +p200739 +sg25275 +S'1634/1635' +p200740 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087a9.jpg' +p200741 +sg25267 +g27 +sa(dp200742 +g25268 +S'Preparing to Fire the Cannon' +p200743 +sg25270 +S'Jacques Callot' +p200744 +sg25273 +S'etching' +p200745 +sg25275 +S'1634/1635' +p200746 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087aa.jpg' +p200747 +sg25267 +g27 +sa(dp200748 +g25268 +S'Loading the Cannon' +p200749 +sg25270 +S'Jacques Callot' +p200750 +sg25273 +S'etching' +p200751 +sg25275 +S'1634/1635' +p200752 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087ad.jpg' +p200753 +sg25267 +g27 +sa(dp200754 +g25268 +S'Firing the Cannon' +p200755 +sg25270 +S'Jacques Callot' +p200756 +sg25273 +S'etching' +p200757 +sg25275 +S'1634/1635' +p200758 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087ae.jpg' +p200759 +sg25267 +g27 +sa(dp200760 +g25268 +S'The Stopping Place' +p200761 +sg25270 +S'Jacques Callot' +p200762 +sg25273 +S'etching and engraving' +p200763 +sg25275 +S'1621' +p200764 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008551.jpg' +p200765 +sg25267 +g27 +sa(dp200766 +g25268 +S'The Bohemians Marching: The Vanguard' +p200767 +sg25270 +S'Jacques Callot' +p200768 +sg25273 +S'etching and engraving' +p200769 +sg25275 +S'1621' +p200770 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000854b.jpg' +p200771 +sg25267 +g27 +sa(dp200772 +g25268 +S'The Bohemians Marching: The Rear Guard' +p200773 +sg25270 +S'Jacques Callot' +p200774 +sg25273 +S'etching and engraving' +p200775 +sg25275 +S'1621' +p200776 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a000854a.jpg' +p200777 +sg25267 +g27 +sa(dp200778 +g25268 +S'The Feast of the Bohemians' +p200779 +sg25270 +S'Jacques Callot' +p200780 +sg25273 +S'etching and engraving' +p200781 +sg25275 +S'1621' +p200782 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008554.jpg' +p200783 +sg25267 +g27 +sa(dp200784 +g25268 +S'Pasquariello Truonno and Meo Squaquara' +p200785 +sg25270 +S'Artist Information (' +p200786 +sg25273 +S'French, 1592 - 1635' +p200787 +sg25275 +S'(artist after)' +p200788 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087c3.jpg' +p200789 +sg25267 +g27 +sa(dp200790 +g25268 +S'Fracischina and Gian Farina' +p200791 +sg25270 +S'Artist Information (' +p200792 +sg25273 +S'French, 1592 - 1635' +p200793 +sg25275 +S'(artist after)' +p200794 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087c2.jpg' +p200795 +sg25267 +g27 +sa(dp200796 +g25268 +S'Franca Trippa and Fritellino' +p200797 +sg25270 +S'Artist Information (' +p200798 +sg25273 +S'French, 1592 - 1635' +p200799 +sg25275 +S'(artist after)' +p200800 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087d5.jpg' +p200801 +sg25267 +g27 +sa(dp200802 +g25268 +S'Taglia Cantoni and Fracasso' +p200803 +sg25270 +S'Artist Information (' +p200804 +sg25273 +S'French, 1592 - 1635' +p200805 +sg25275 +S'(artist after)' +p200806 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087d6.jpg' +p200807 +sg25267 +g27 +sa(dp200808 +g25268 +S'Signa. Lucia and Trastullo' +p200809 +sg25270 +S'Artist Information (' +p200810 +sg25273 +S'French, 1592 - 1635' +p200811 +sg25275 +S'(artist after)' +p200812 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087d7.jpg' +p200813 +sg25267 +g27 +sa(dp200814 +g25268 +S'Cap. Cardoni and Maramao' +p200815 +sg25270 +S'Artist Information (' +p200816 +sg25273 +S'French, 1592 - 1635' +p200817 +sg25275 +S'(artist after)' +p200818 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087d4.jpg' +p200819 +sg25267 +g27 +sa(dp200820 +g25268 +S'Cap. Mala Gamba and Cap. Bellavita' +p200821 +sg25270 +S'Artist Information (' +p200822 +sg25273 +S'French, 1592 - 1635' +p200823 +sg25275 +S'(artist after)' +p200824 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087c7.jpg' +p200825 +sg25267 +g27 +sa(dp200826 +g25268 +S'Cap. Babeo and Cucuba' +p200827 +sg25270 +S'Artist Information (' +p200828 +sg25273 +S'French, 1592 - 1635' +p200829 +sg25275 +S'(artist after)' +p200830 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087c1.jpg' +p200831 +sg25267 +g27 +sa(dp200832 +g25268 +S'Cap. Esgangarato and Cap. Cocodrillo' +p200833 +sg25270 +S'Artist Information (' +p200834 +sg25273 +S'French, 1592 - 1635' +p200835 +sg25275 +S'(artist after)' +p200836 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087c4.jpg' +p200837 +sg25267 +g27 +sa(dp200838 +g25268 +S'Smaralo Cornuto and Ratsa di Boio' +p200839 +sg25270 +S'Artist Information (' +p200840 +sg25273 +S'French, 1592 - 1635' +p200841 +sg25275 +S'(artist after)' +p200842 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087ca.jpg' +p200843 +sg25267 +g27 +sa(dp200844 +g25268 +S'Cap. Spessa Monti and Bagattino' +p200845 +sg25270 +S'Artist Information (' +p200846 +sg25273 +S'French, 1592 - 1635' +p200847 +sg25275 +S'(artist after)' +p200848 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087cc.jpg' +p200849 +sg25267 +g27 +sa(dp200850 +g25268 +S'Scapino and Cap. Zerbino' +p200851 +sg25270 +S'Artist Information (' +p200852 +sg25273 +S'French, 1592 - 1635' +p200853 +sg25275 +S'(artist after)' +p200854 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087c8.jpg' +p200855 +sg25267 +g27 +sa(dp200856 +g25268 +S'Cap. Cerimonia and Siga. Lavinia' +p200857 +sg25270 +S'Artist Information (' +p200858 +sg25273 +S'French, 1592 - 1635' +p200859 +sg25275 +S'(artist after)' +p200860 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087cd.jpg' +p200861 +sg25267 +g27 +sa(dp200862 +g25268 +S'Cap. Bonbardon and Cap. Grillo' +p200863 +sg25270 +S'Artist Information (' +p200864 +sg25273 +S'French, 1592 - 1635' +p200865 +sg25275 +S'(artist after)' +p200866 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087c5.jpg' +p200867 +sg25267 +g27 +sa(dp200868 +g25268 +S'Scaramucia and Fricasso' +p200869 +sg25270 +S'Artist Information (' +p200870 +sg25273 +S'French, 1592 - 1635' +p200871 +sg25275 +S'(artist after)' +p200872 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087cb.jpg' +p200873 +sg25267 +g27 +sa(dp200874 +g25268 +S'Cucorongna and Pernoualla' +p200875 +sg25270 +S'Artist Information (' +p200876 +sg25273 +S'French, 1592 - 1635' +p200877 +sg25275 +S'(artist after)' +p200878 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087c9.jpg' +p200879 +sg25267 +g27 +sa(dp200880 +g25268 +S'Guatsetto and Mestolino' +p200881 +sg25270 +S'Artist Information (' +p200882 +sg25273 +S'French, 1592 - 1635' +p200883 +sg25275 +S'(artist after)' +p200884 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087c6.jpg' +p200885 +sg25267 +g27 +sa(dp200886 +g25268 +S'Pride (Vanity)' +p200887 +sg25270 +S'Jacques Callot' +p200888 +sg25273 +S'etching and engraving' +p200889 +sg25275 +S'probably after 1621' +p200890 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008534.jpg' +p200891 +sg25267 +g27 +sa(dp200892 +g25268 +S'Sloth' +p200893 +sg25270 +S'Jacques Callot' +p200894 +sg25273 +S'etching and engraving' +p200895 +sg25275 +S'probably after 1621' +p200896 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008535.jpg' +p200897 +sg25267 +g27 +sa(dp200898 +g25268 +S'Lust' +p200899 +sg25270 +S'Jacques Callot' +p200900 +sg25273 +S'etching and engraving' +p200901 +sg25275 +S'probably after 1621' +p200902 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008533.jpg' +p200903 +sg25267 +g27 +sa(dp200904 +g25268 +S'Anger' +p200905 +sg25270 +S'Jacques Callot' +p200906 +sg25273 +S'etching and engraving' +p200907 +sg25275 +S'probably after 1621' +p200908 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008531.jpg' +p200909 +sg25267 +g27 +sa(dp200910 +g25268 +S'Gluttony' +p200911 +sg25270 +S'Jacques Callot' +p200912 +sg25273 +S'etching and engraving' +p200913 +sg25275 +S'probably after 1621' +p200914 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008532.jpg' +p200915 +sg25267 +g27 +sa(dp200916 +g25268 +S'Envy' +p200917 +sg25270 +S'Jacques Callot' +p200918 +sg25273 +S'etching and engraving' +p200919 +sg25275 +S'probably after 1621' +p200920 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008530.jpg' +p200921 +sg25267 +g27 +sa(dp200922 +g25268 +S'Greed' +p200923 +sg25270 +S'Jacques Callot' +p200924 +sg25273 +S'etching and engraving' +p200925 +sg25275 +S'probably after 1621' +p200926 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00085/a0008536.jpg' +p200927 +sg25267 +g27 +sa(dp200928 +g25268 +S'Claude Deruet and his Son, Jean' +p200929 +sg25270 +S'Jacques Callot' +p200930 +sg25273 +S'etching and engraving' +p200931 +sg25275 +S'1632' +p200932 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ae6.jpg' +p200933 +sg25267 +g27 +sa(dp200934 +g25268 +S'The Martyrs of Japan' +p200935 +sg25270 +S'Jacques Callot' +p200936 +sg25273 +S'etching' +p200937 +sg25275 +S'c. 1627/1628' +p200938 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00086/a00086ba.jpg' +p200939 +sg25267 +g27 +sa(dp200940 +g25268 +S'The Camp' +p200941 +sg25270 +S'Jacques Callot' +p200942 +sg25273 +S'etching' +p200943 +sg25275 +S'c. 1633' +p200944 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00087/a00087e4.jpg' +p200945 +sg25267 +g27 +sa(dp200946 +g25268 +S'Attacking Travelers on the Highway' +p200947 +sg25270 +S'Jacques Callot' +p200948 +sg25273 +S'etching' +p200949 +sg25275 +S'c. 1633' +p200950 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008981.jpg' +p200951 +sg25267 +g27 +sa(dp200952 +g25268 +S'Pillaging a Monastery' +p200953 +sg25270 +S'Jacques Callot' +p200954 +sg25273 +S'etching' +p200955 +sg25275 +S'c. 1633' +p200956 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a000897c.jpg' +p200957 +sg25267 +g27 +sa(dp200958 +g25268 +S'Ravaging and Burning a Village' +p200959 +sg25270 +S'Jacques Callot' +p200960 +sg25273 +S'etching' +p200961 +sg25275 +S'c. 1633' +p200962 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008982.jpg' +p200963 +sg25267 +g27 +sa(dp200964 +g25268 +S"The Peasants' Revenge" +p200965 +sg25270 +S'Jacques Callot' +p200966 +sg25273 +S'etching' +p200967 +sg25275 +S'c. 1633' +p200968 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008980.jpg' +p200969 +sg25267 +g27 +sa(dp200970 +g25268 +S'The Hospital' +p200971 +sg25270 +S'Jacques Callot' +p200972 +sg25273 +S'etching' +p200973 +sg25275 +S'c. 1633' +p200974 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a000897f.jpg' +p200975 +sg25267 +g27 +sa(dp200976 +g25268 +S'Title Page for "The Large Miseries of War"' +p200977 +sg25270 +S'Jacques Callot' +p200978 +sg25273 +S'etching' +p200979 +sg25275 +S'c. 1633' +p200980 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088de.jpg' +p200981 +sg25267 +g27 +sa(dp200982 +g25268 +S'Recruitment of Troops' +p200983 +sg25270 +S'Jacques Callot' +p200984 +sg25273 +S'etching' +p200985 +sg25275 +S'c. 1633' +p200986 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088e9.jpg' +p200987 +sg25267 +g27 +sa(dp200988 +g25268 +S'The Battle' +p200989 +sg25270 +S'Jacques Callot' +p200990 +sg25273 +S'etching' +p200991 +sg25275 +S'c. 1633' +p200992 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088e4.jpg' +p200993 +sg25267 +g27 +sa(dp200994 +g25268 +S'Scene of Pillage' +p200995 +sg25270 +S'Jacques Callot' +p200996 +sg25273 +S'etching' +p200997 +sg25275 +S'c. 1633' +p200998 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088ea.jpg' +p200999 +sg25267 +g27 +sa(dp201000 +g25268 +S'Plundering a Large Farmhouse' +p201001 +sg25270 +S'Jacques Callot' +p201002 +sg25273 +S'etching' +p201003 +sg25275 +S'c. 1633' +p201004 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088e7.jpg' +p201005 +sg25267 +g27 +sa(dp201006 +g25268 +S'Destruction of a Convent' +p201007 +sg25270 +S'Jacques Callot' +p201008 +sg25273 +S'etching' +p201009 +sg25275 +S'c. 1633' +p201010 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088e6.jpg' +p201011 +sg25267 +g27 +sa(dp201012 +g25268 +S'Plundering and Burning a Village' +p201013 +sg25270 +S'Jacques Callot' +p201014 +sg25273 +S'etching' +p201015 +sg25275 +S'c. 1633' +p201016 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088ef.jpg' +p201017 +sg25267 +g27 +sa(dp201018 +g25268 +S'Attack on a Coach' +p201019 +sg25270 +S'Jacques Callot' +p201020 +sg25273 +S'etching' +p201021 +sg25275 +S'c. 1633' +p201022 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088f1.jpg' +p201023 +sg25267 +g27 +sa(dp201024 +g25268 +S'Discovery of the Criminal Soldiers' +p201025 +sg25270 +S'Jacques Callot' +p201026 +sg25273 +S'etching' +p201027 +sg25275 +S'c. 1633' +p201028 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088f2.jpg' +p201029 +sg25267 +g27 +sa(dp201030 +g25268 +S'The Strappado' +p201031 +sg25270 +S'Jacques Callot' +p201032 +sg25273 +S'etching' +p201033 +sg25275 +S'c. 1633' +p201034 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088f4.jpg' +p201035 +sg25267 +g27 +sa(dp201036 +g25268 +S'The Hanging' +p201037 +sg25270 +S'Jacques Callot' +p201038 +sg25273 +S'etching' +p201039 +sg25275 +S'c. 1633' +p201040 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088f3.jpg' +p201041 +sg25267 +g27 +sa(dp201042 +g25268 +S'The Firing Squad' +p201043 +sg25270 +S'Jacques Callot' +p201044 +sg25273 +S'etching' +p201045 +sg25275 +S'c. 1633' +p201046 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00088/a00088eb.jpg' +p201047 +sg25267 +g27 +sa(dp201048 +g25268 +S'The Stake' +p201049 +sg25270 +S'Jacques Callot' +p201050 +sg25273 +S'etching' +p201051 +sg25275 +S'c. 1633' +p201052 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008983.jpg' +p201053 +sg25267 +g27 +sa(dp201054 +g25268 +S'The Wheel' +p201055 +sg25270 +S'Jacques Callot' +p201056 +sg25273 +S'etching' +p201057 +sg25275 +S'c. 1633' +p201058 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a000898e.jpg' +p201059 +sg25267 +g27 +sa(dp201060 +g25268 +S'The Hospital' +p201061 +sg25270 +S'Jacques Callot' +p201062 +sg25273 +S'etching' +p201063 +sg25275 +S'c. 1633' +p201064 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a000898a.jpg' +p201065 +sg25267 +g27 +sa(dp201066 +g25268 +S'Dying Soldiers by the Roadside' +p201067 +sg25270 +S'Jacques Callot' +p201068 +sg25273 +S'etching' +p201069 +sg25275 +S'c. 1633' +p201070 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008989.jpg' +p201071 +sg25267 +g27 +sa(dp201072 +g25268 +S'The Peasants Avenge Themselves' +p201073 +sg25270 +S'Jacques Callot' +p201074 +sg25273 +S'etching' +p201075 +sg25275 +S'c. 1633' +p201076 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008985.jpg' +p201077 +sg25267 +g27 +sa(dp201078 +g25268 +S'Distribution of Rewards' +p201079 +sg25270 +S'Jacques Callot' +p201080 +sg25273 +S'etching' +p201081 +sg25275 +S'c. 1633' +p201082 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a0008988.jpg' +p201083 +sg25267 +g27 +sa(dp201084 +g25273 +S'French, 1592 - 1635' +p201085 +sg25267 +g27 +sg25275 +S'(related artist)' +p201086 +sg25268 +S"Artist's Pocket Book" +p201087 +sg25270 +S'Artist Information (' +p201088 +sa(dp201089 +g25273 +S'etching' +p201090 +sg25267 +g27 +sg25275 +S'1891' +p201091 +sg25268 +S'The Veteran' +p201092 +sg25270 +S'David Young Cameron' +p201093 +sa(dp201094 +g25273 +S'etching' +p201095 +sg25267 +g27 +sg25275 +S'1891' +p201096 +sg25268 +S'Dear Aunt Dorothy' +p201097 +sg25270 +S'David Young Cameron' +p201098 +sa(dp201099 +g25273 +S'etching' +p201100 +sg25267 +g27 +sg25275 +S'1891' +p201101 +sg25268 +S'Sunset' +p201102 +sg25270 +S'David Young Cameron' +p201103 +sa(dp201104 +g25273 +S'etching' +p201105 +sg25267 +g27 +sg25275 +S'1891' +p201106 +sg25268 +S'Stirling Town' +p201107 +sg25270 +S'David Young Cameron' +p201108 +sa(dp201109 +g25273 +S'etching' +p201110 +sg25267 +g27 +sg25275 +S'1891' +p201111 +sg25268 +S'The Unicorn, Stirling' +p201112 +sg25270 +S'David Young Cameron' +p201113 +sa(dp201114 +g25273 +S'etching and drypoint' +p201115 +sg25267 +g27 +sg25275 +S'1891' +p201116 +sg25268 +S'Greendyke Street' +p201117 +sg25270 +S'David Young Cameron' +p201118 +sa(dp201119 +g25268 +S'Isabella Brant' +p201120 +sg25270 +S'Sir Anthony van Dyck' +p201121 +sg25273 +S'oil on canvas' +p201122 +sg25275 +S'1621' +p201123 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e1d.jpg' +p201124 +sg25267 +S'Isabella Brant\n ' +p201125 +sa(dp201126 +g25268 +S"Perugino's Udienza del Cambio in the Collegio del Cambio, Perugia" +p201127 +sg25270 +S'John Russell Pope' +p201128 +sg25273 +S'graphite' +p201129 +sg25275 +S'1896' +p201130 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1da.jpg' +p201131 +sg25267 +g27 +sa(dp201132 +g25273 +S'etching' +p201133 +sg25267 +g27 +sg25275 +S'1891' +p201134 +sg25268 +S'Highland Kitchen' +p201135 +sg25270 +S'David Young Cameron' +p201136 +sa(dp201137 +g25273 +S'etching and drypoint' +p201138 +sg25267 +g27 +sg25275 +S'1891' +p201139 +sg25268 +S'White Horse Close' +p201140 +sg25270 +S'David Young Cameron' +p201141 +sa(dp201142 +g25273 +S'etching' +p201143 +sg25267 +g27 +sg25275 +S'1891' +p201144 +sg25268 +S'Old Age' +p201145 +sg25270 +S'David Young Cameron' +p201146 +sa(dp201147 +g25273 +S'etching and drypoint' +p201148 +sg25267 +g27 +sg25275 +S'1891' +p201149 +sg25268 +S'Westport' +p201150 +sg25270 +S'David Young Cameron' +p201151 +sa(dp201152 +g25273 +S'etching' +p201153 +sg25267 +g27 +sg25275 +S'1891' +p201154 +sg25268 +S'The Three Barrows' +p201155 +sg25270 +S'David Young Cameron' +p201156 +sa(dp201157 +g25273 +S'etching' +p201158 +sg25267 +g27 +sg25275 +S'1891' +p201159 +sg25268 +S'A Fisher Lass' +p201160 +sg25270 +S'David Young Cameron' +p201161 +sa(dp201162 +g25273 +S'etching' +p201163 +sg25267 +g27 +sg25275 +S'1891' +p201164 +sg25268 +S'The Village Store' +p201165 +sg25270 +S'David Young Cameron' +p201166 +sa(dp201167 +g25273 +S'etching' +p201168 +sg25267 +g27 +sg25275 +S'1891' +p201169 +sg25268 +S'Across the Sands' +p201170 +sg25270 +S'David Young Cameron' +p201171 +sa(dp201172 +g25273 +S'etching' +p201173 +sg25267 +g27 +sg25275 +S'1891' +p201174 +sg25268 +S'Messages' +p201175 +sg25270 +S'David Young Cameron' +p201176 +sa(dp201177 +g25273 +S'etching' +p201178 +sg25267 +g27 +sg25275 +S'1890' +p201179 +sg25268 +S'Shopping' +p201180 +sg25270 +S'David Young Cameron' +p201181 +sa(dp201182 +g25268 +S'Study of an Altarpiece and Ceiling Panels' +p201183 +sg25270 +S'John Russell Pope' +p201184 +sg25273 +S'graphite' +p201185 +sg25275 +S'd. 1896' +p201186 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1d9.jpg' +p201187 +sg25267 +g27 +sa(dp201188 +g25273 +S'etching' +p201189 +sg25267 +g27 +sg25275 +S'1890' +p201190 +sg25268 +S'Tayside' +p201191 +sg25270 +S'David Young Cameron' +p201192 +sa(dp201193 +g25273 +S'etching' +p201194 +sg25267 +g27 +sg25275 +S'1890' +p201195 +sg25268 +S'Perth' +p201196 +sg25270 +S'David Young Cameron' +p201197 +sa(dp201198 +g25273 +S'etching' +p201199 +sg25267 +g27 +sg25275 +S'1890' +p201200 +sg25268 +S'Bennan' +p201201 +sg25270 +S'David Young Cameron' +p201202 +sa(dp201203 +g25273 +S'etching' +p201204 +sg25267 +g27 +sg25275 +S'1890' +p201205 +sg25268 +S'Tweedside' +p201206 +sg25270 +S'David Young Cameron' +p201207 +sa(dp201208 +g25273 +S'etching' +p201209 +sg25267 +g27 +sg25275 +S'1890' +p201210 +sg25268 +S'Spittal' +p201211 +sg25270 +S'David Young Cameron' +p201212 +sa(dp201213 +g25273 +S'drypoint' +p201214 +sg25267 +g27 +sg25275 +S'1890' +p201215 +sg25268 +S'The Beggar' +p201216 +sg25270 +S'David Young Cameron' +p201217 +sa(dp201218 +g25273 +S'etching' +p201219 +sg25267 +g27 +sg25275 +S'1890' +p201220 +sg25268 +S'Thames Barges' +p201221 +sg25270 +S'David Young Cameron' +p201222 +sa(dp201223 +g25273 +S'etching' +p201224 +sg25267 +g27 +sg25275 +S'1890' +p201225 +sg25268 +S'Thames Warehouses' +p201226 +sg25270 +S'David Young Cameron' +p201227 +sa(dp201228 +g25273 +S'etching' +p201229 +sg25267 +g27 +sg25275 +S'1890' +p201230 +sg25268 +S'Thames Wharf' +p201231 +sg25270 +S'David Young Cameron' +p201232 +sa(dp201233 +g25273 +S'etching' +p201234 +sg25267 +g27 +sg25275 +S'1890' +p201235 +sg25268 +S'Houses of Parliament' +p201236 +sg25270 +S'David Young Cameron' +p201237 +sa(dp201238 +g25268 +S'Siena Brickwork' +p201239 +sg25270 +S'John Russell Pope' +p201240 +sg25273 +S'graphite' +p201241 +sg25275 +S'c. 1896' +p201242 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1e0.jpg' +p201243 +sg25267 +g27 +sa(dp201244 +g25273 +S'etching (zinc)' +p201245 +sg25267 +g27 +sg25275 +S'1890' +p201246 +sg25268 +S'Loafers' +p201247 +sg25270 +S'David Young Cameron' +p201248 +sa(dp201249 +g25273 +S'etching' +p201250 +sg25267 +g27 +sg25275 +S'1890' +p201251 +sg25268 +S'Old Houses, Greenock' +p201252 +sg25270 +S'David Young Cameron' +p201253 +sa(dp201254 +g25273 +S'etching' +p201255 +sg25267 +g27 +sg25275 +S'1890' +p201256 +sg25268 +S'Greenock, No. 2' +p201257 +sg25270 +S'David Young Cameron' +p201258 +sa(dp201259 +g25273 +S'etching' +p201260 +sg25267 +g27 +sg25275 +S'1890' +p201261 +sg25268 +S'Dundee' +p201262 +sg25270 +S'David Young Cameron' +p201263 +sa(dp201264 +g25273 +S'etching' +p201265 +sg25267 +g27 +sg25275 +S'1889' +p201266 +sg25268 +S'The Old Revenge' +p201267 +sg25270 +S'David Young Cameron' +p201268 +sa(dp201269 +g25273 +S'etching' +p201270 +sg25267 +g27 +sg25275 +S'1889' +p201271 +sg25268 +S'Bothwell' +p201272 +sg25270 +S'David Young Cameron' +p201273 +sa(dp201274 +g25273 +S'etching' +p201275 +sg25267 +g27 +sg25275 +S'1889' +p201276 +sg25268 +S'Upper Clyde Valley' +p201277 +sg25270 +S'David Young Cameron' +p201278 +sa(dp201279 +g25273 +S'etching' +p201280 +sg25267 +g27 +sg25275 +S'1889' +p201281 +sg25268 +S'The Clyde near Carmyle' +p201282 +sg25270 +S'David Young Cameron' +p201283 +sa(dp201284 +g25273 +S'etching' +p201285 +sg25267 +g27 +sg25275 +S'1889' +p201286 +sg25268 +S'The Cliffs of Aberdeenshire' +p201287 +sg25270 +S'David Young Cameron' +p201288 +sa(dp201289 +g25273 +S'etching' +p201290 +sg25267 +g27 +sg25275 +S'1889' +p201291 +sg25268 +S'Aberdeen Bay' +p201292 +sg25270 +S'David Young Cameron' +p201293 +sa(dp201294 +g25268 +S'Palazzo Pollini, Siena, Attributed to Peruzzi' +p201295 +sg25270 +S'John Russell Pope' +p201296 +sg25273 +S'graphite' +p201297 +sg25275 +S'1896' +p201298 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1df.jpg' +p201299 +sg25267 +g27 +sa(dp201300 +g25273 +S'etching' +p201301 +sg25267 +g27 +sg25275 +S'1889' +p201302 +sg25268 +S'Traquair' +p201303 +sg25270 +S'David Young Cameron' +p201304 +sa(dp201305 +g25273 +S'etching' +p201306 +sg25267 +g27 +sg25275 +S'1888' +p201307 +sg25268 +S'Ailsa Craig from Arran' +p201308 +sg25270 +S'David Young Cameron' +p201309 +sa(dp201310 +g25273 +S'etching' +p201311 +sg25267 +g27 +sg25275 +S'1888' +p201312 +sg25268 +S'The Sound of Kilbrannan' +p201313 +sg25270 +S'David Young Cameron' +p201314 +sa(dp201315 +g25273 +S'etching' +p201316 +sg25267 +g27 +sg25275 +S'1888' +p201317 +sg25268 +S'A Perthshire Village' +p201318 +sg25270 +S'David Young Cameron' +p201319 +sa(dp201320 +g25273 +S'etching and drypoint' +p201321 +sg25267 +g27 +sg25275 +S'1888' +p201322 +sg25268 +S'Speyside' +p201323 +sg25270 +S'David Young Cameron' +p201324 +sa(dp201325 +g25273 +S'etching' +p201326 +sg25267 +g27 +sg25275 +S'1888' +p201327 +sg25268 +S'The Walls of Tillietudlem' +p201328 +sg25270 +S'David Young Cameron' +p201329 +sa(dp201330 +g25273 +S'etching' +p201331 +sg25267 +g27 +sg25275 +S'1888' +p201332 +sg25268 +S'Cadzow Castle' +p201333 +sg25270 +S'David Young Cameron' +p201334 +sa(dp201335 +g25273 +S'etching' +p201336 +sg25267 +g27 +sg25275 +S'1888' +p201337 +sg25268 +S'Cottage, Arran: Sunset' +p201338 +sg25270 +S'David Young Cameron' +p201339 +sa(dp201340 +g25273 +S'etching' +p201341 +sg25267 +g27 +sg25275 +S'1888' +p201342 +sg25268 +S"St. Mary's Loch" +p201343 +sg25270 +S'David Young Cameron' +p201344 +sa(dp201345 +g25273 +S'etching and drypoint' +p201346 +sg25267 +g27 +sg25275 +S'1915' +p201347 +sg25268 +S'Tewkesbury Abbey' +p201348 +sg25270 +S'David Young Cameron' +p201349 +sa(dp201350 +g25268 +S'Siena Cathedral, Entrance to Library' +p201351 +sg25270 +S'John Russell Pope' +p201352 +sg25273 +S'graphite' +p201353 +sg25275 +S'c. 1896' +p201354 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1de.jpg' +p201355 +sg25267 +g27 +sa(dp201356 +g25273 +S'etching' +p201357 +sg25267 +g27 +sg25275 +S'1888' +p201358 +sg25268 +S'Bowden' +p201359 +sg25270 +S'David Young Cameron' +p201360 +sa(dp201361 +g25273 +S'etching' +p201362 +sg25267 +g27 +sg25275 +S'1888' +p201363 +sg25268 +S'Smailholm Tower' +p201364 +sg25270 +S'David Young Cameron' +p201365 +sa(dp201366 +g25273 +S'drypoint' +p201367 +sg25267 +g27 +sg25275 +S'1892' +p201368 +sg25268 +S'Begging' +p201369 +sg25270 +S'David Young Cameron' +p201370 +sa(dp201371 +g25273 +S'etching' +p201372 +sg25267 +g27 +sg25275 +S'1892' +p201373 +sg25268 +S'Broomielaw' +p201374 +sg25270 +S'David Young Cameron' +p201375 +sa(dp201376 +g25273 +S'etching' +p201377 +sg25267 +g27 +sg25275 +S'1892' +p201378 +sg25268 +S'The Steps' +p201379 +sg25270 +S'David Young Cameron' +p201380 +sa(dp201381 +g25273 +S'etching' +p201382 +sg25267 +g27 +sg25275 +S'1892' +p201383 +sg25268 +S'Rowallan Castle' +p201384 +sg25270 +S'David Young Cameron' +p201385 +sa(dp201386 +g25273 +S'etching' +p201387 +sg25267 +g27 +sg25275 +S'1892' +p201388 +sg25268 +S"Van Og's Houtkoperij" +p201389 +sg25270 +S'David Young Cameron' +p201390 +sa(dp201391 +g25273 +S'etching' +p201392 +sg25267 +g27 +sg25275 +S'1892' +p201393 +sg25268 +S'Corner in Amsterdam' +p201394 +sg25270 +S'David Young Cameron' +p201395 +sa(dp201396 +g25273 +S'etching' +p201397 +sg25267 +g27 +sg25275 +S'1892' +p201398 +sg25268 +S'Utrecht' +p201399 +sg25270 +S'David Young Cameron' +p201400 +sa(dp201401 +g25273 +S'etching' +p201402 +sg25267 +g27 +sg25275 +S'1892' +p201403 +sg25268 +S'A Rembrandt Farm' +p201404 +sg25270 +S'David Young Cameron' +p201405 +sa(dp201406 +g25268 +S'An Interesting Romanesque Treatment, San Giovanni, Pistoia' +p201407 +sg25270 +S'John Russell Pope' +p201408 +sg25273 +S'graphite' +p201409 +sg25275 +S'c. 1896' +p201410 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1db.jpg' +p201411 +sg25267 +g27 +sa(dp201412 +g25273 +S'etching' +p201413 +sg25267 +g27 +sg25275 +S'1892' +p201414 +sg25268 +S'Amsterdam' +p201415 +sg25270 +S'David Young Cameron' +p201416 +sa(dp201417 +g25273 +S'etching' +p201418 +sg25267 +g27 +sg25275 +S'1892' +p201419 +sg25268 +S'Night' +p201420 +sg25270 +S'David Young Cameron' +p201421 +sa(dp201422 +g25273 +S'etching' +p201423 +sg25267 +g27 +sg25275 +S'1892' +p201424 +sg25268 +S'Old Houses, Stirling' +p201425 +sg25270 +S'David Young Cameron' +p201426 +sa(dp201427 +g25273 +S'etching' +p201428 +sg25267 +g27 +sg25275 +S'1895' +p201429 +sg25268 +S'Old Houses, Stirling' +p201430 +sg25270 +S'David Young Cameron' +p201431 +sa(dp201432 +g25273 +S'etching' +p201433 +sg25267 +g27 +sg25275 +S'1892' +p201434 +sg25268 +S'Three Vagrants' +p201435 +sg25270 +S'David Young Cameron' +p201436 +sa(dp201437 +g25273 +S'drypoint' +p201438 +sg25267 +g27 +sg25275 +S'1892' +p201439 +sg25268 +S'A Lowland River: A Dry-Point' +p201440 +sg25270 +S'David Young Cameron' +p201441 +sa(dp201442 +g25273 +S'drypoint' +p201443 +sg25267 +g27 +sg25275 +S'1892' +p201444 +sg25268 +S'Landscape with Trees: A Dry-Point' +p201445 +sg25270 +S'David Young Cameron' +p201446 +sa(dp201447 +g25273 +S'etching' +p201448 +sg25267 +g27 +sg25275 +S'1892' +p201449 +sg25268 +S'Barochan' +p201450 +sg25270 +S'David Young Cameron' +p201451 +sa(dp201452 +g25273 +S'etching' +p201453 +sg25267 +g27 +sg25275 +S'1892' +p201454 +sg25268 +S'Bookplate of J. Craig Annan' +p201455 +sg25270 +S'David Young Cameron' +p201456 +sa(dp201457 +g25273 +S'etching' +p201458 +sg25267 +g27 +sg25275 +S'1892' +p201459 +sg25268 +S'Bookplate of W.B. Paterson' +p201460 +sg25270 +S'David Young Cameron' +p201461 +sa(dp201462 +g25268 +S'St. Andrea, Pistoia' +p201463 +sg25270 +S'John Russell Pope' +p201464 +sg25273 +S'graphite' +p201465 +sg25275 +S'c. 1896' +p201466 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1dd.jpg' +p201467 +sg25267 +g27 +sa(dp201468 +g25273 +S'etching' +p201469 +sg25267 +g27 +sg25275 +S'1893' +p201470 +sg25268 +S'Haarlem' +p201471 +sg25270 +S'David Young Cameron' +p201472 +sa(dp201473 +g25273 +S'etching' +p201474 +sg25267 +g27 +sg25275 +S'1893' +p201475 +sg25268 +S"Rowallan's Towers" +p201476 +sg25270 +S'David Young Cameron' +p201477 +sa(dp201478 +g25273 +S'etching' +p201479 +sg25267 +g27 +sg25275 +S'1893' +p201480 +sg25268 +S'A Dutch Village' +p201481 +sg25270 +S'David Young Cameron' +p201482 +sa(dp201483 +g25273 +S'etching' +p201484 +sg25267 +g27 +sg25275 +S'1893' +p201485 +sg25268 +S'The Stairs, Rowallan' +p201486 +sg25270 +S'David Young Cameron' +p201487 +sa(dp201488 +g25273 +S'etching' +p201489 +sg25267 +g27 +sg25275 +S'1893' +p201490 +sg25268 +S'The Palace, Stirling Castle' +p201491 +sg25270 +S'David Young Cameron' +p201492 +sa(dp201493 +g25273 +S'etching' +p201494 +sg25267 +g27 +sg25275 +S'1893' +p201495 +sg25268 +S'Interior: Perthshire' +p201496 +sg25270 +S'David Young Cameron' +p201497 +sa(dp201498 +g25273 +S'etching' +p201499 +sg25267 +g27 +sg25275 +S'1893' +p201500 +sg25268 +S'River in Flood' +p201501 +sg25270 +S'David Young Cameron' +p201502 +sa(dp201503 +g25273 +S'etching' +p201504 +sg25267 +g27 +sg25275 +S'1893' +p201505 +sg25268 +S'Lecropt' +p201506 +sg25270 +S'David Young Cameron' +p201507 +sa(dp201508 +g25273 +S'etching' +p201509 +sg25267 +g27 +sg25275 +S'1893' +p201510 +sg25268 +S'The Building of the Ship' +p201511 +sg25270 +S'David Young Cameron' +p201512 +sa(dp201513 +g25273 +S'etching' +p201514 +sg25267 +g27 +sg25275 +S'1893' +p201515 +sg25268 +S'Father Ambrose' +p201516 +sg25270 +S'David Young Cameron' +p201517 +sa(dp201518 +g25268 +S'Library, San Lorenzo' +p201519 +sg25270 +S'John Russell Pope' +p201520 +sg25273 +S'graphite' +p201521 +sg25275 +S'c. 1896' +p201522 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1e2.jpg' +p201523 +sg25267 +g27 +sa(dp201524 +g25273 +S'etching' +p201525 +sg25267 +g27 +sg25275 +S'1893' +p201526 +sg25268 +S'The Devil and the Fairy' +p201527 +sg25270 +S'David Young Cameron' +p201528 +sa(dp201529 +g25273 +S'(artist after)' +p201530 +sg25267 +g27 +sg25275 +S'\n' +p201531 +sg25268 +S'The Leaf Cart' +p201532 +sg25270 +S'Artist Information (' +p201533 +sa(dp201534 +g25273 +S'etching' +p201535 +sg25267 +g27 +sg25275 +S'1894' +p201536 +sg25268 +S'A Border Tower' +p201537 +sg25270 +S'David Young Cameron' +p201538 +sa(dp201539 +g25273 +S'etching' +p201540 +sg25267 +g27 +sg25275 +S'1894' +p201541 +sg25268 +S'Porta del Molo, Genoa, No. I' +p201542 +sg25270 +S'David Young Cameron' +p201543 +sa(dp201544 +g25273 +S'etching and drypoint' +p201545 +sg25267 +g27 +sg25275 +S'1899' +p201546 +sg25268 +S'Waterloo Bridge, No. 1' +p201547 +sg25270 +S'David Young Cameron' +p201548 +sa(dp201549 +g25273 +S'etching' +p201550 +sg25267 +g27 +sg25275 +S'1899' +p201551 +sg25268 +S'Jean: A Portrait' +p201552 +sg25270 +S'David Young Cameron' +p201553 +sa(dp201554 +g25273 +S'etching' +p201555 +sg25267 +g27 +sg25275 +S'1899' +p201556 +sg25268 +S'Boquhapple' +p201557 +sg25270 +S'David Young Cameron' +p201558 +sa(dp201559 +g25273 +S'etching and drypoint' +p201560 +sg25267 +g27 +sg25275 +S'1899' +p201561 +sg25268 +S'Broad Street, Stirling' +p201562 +sg25270 +S'David Young Cameron' +p201563 +sa(dp201564 +g25273 +S'etching' +p201565 +sg25267 +g27 +sg25275 +S'1898' +p201566 +sg25268 +S'The Palace of the Stuarts' +p201567 +sg25270 +S'David Young Cameron' +p201568 +sa(dp201569 +g25273 +S'etching' +p201570 +sg25267 +g27 +sg25275 +S'1898' +p201571 +sg25268 +S'The Gargoyles, Stirling Castle' +p201572 +sg25270 +S'David Young Cameron' +p201573 +sa(dp201574 +g25268 +S'The Duomo, Florence' +p201575 +sg25270 +S'John Russell Pope' +p201576 +sg25273 +S'graphite' +p201577 +sg25275 +S'1897' +p201578 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1e1.jpg' +p201579 +sg25267 +g27 +sa(dp201580 +g25273 +S'etching' +p201581 +sg25267 +g27 +sg25275 +S'1898' +p201582 +sg25268 +S'The Gargoyles, Stirling Castle' +p201583 +sg25270 +S'David Young Cameron' +p201584 +sa(dp201585 +g25273 +S'etching' +p201586 +sg25267 +g27 +sg25275 +S'1898' +p201587 +sg25268 +S'The Vale of Clyde' +p201588 +sg25270 +S'David Young Cameron' +p201589 +sa(dp201590 +g25273 +S'etching' +p201591 +sg25267 +g27 +sg25275 +S'1898' +p201592 +sg25268 +S'A Venetian Palace' +p201593 +sg25270 +S'David Young Cameron' +p201594 +sa(dp201595 +g25273 +S'etching' +p201596 +sg25267 +g27 +sg25275 +S'1898' +p201597 +sg25268 +S'The Crucifix' +p201598 +sg25270 +S'David Young Cameron' +p201599 +sa(dp201600 +g25273 +S'etching' +p201601 +sg25267 +g27 +sg25275 +S'1897' +p201602 +sg25268 +S'Glasgow Cathedral Screen' +p201603 +sg25270 +S'David Young Cameron' +p201604 +sa(dp201605 +g25273 +S'etching and drypoint' +p201606 +sg25267 +g27 +sg25275 +S'1897' +p201607 +sg25268 +S'"Ye Banks and Braes"' +p201608 +sg25270 +S'David Young Cameron' +p201609 +sa(dp201610 +g25273 +S'etching' +p201611 +sg25267 +g27 +sg25275 +S'1897' +p201612 +sg25268 +S'Ledaig' +p201613 +sg25270 +S'David Young Cameron' +p201614 +sa(dp201615 +g25273 +S'etching' +p201616 +sg25267 +g27 +sg25275 +S'1897' +p201617 +sg25268 +S'Ledaig' +p201618 +sg25270 +S'David Young Cameron' +p201619 +sa(dp201620 +g25273 +S'etching' +p201621 +sg25267 +g27 +sg25275 +S'1897' +p201622 +sg25268 +S'Cour des Bons Enfants, Rouen' +p201623 +sg25270 +S'David Young Cameron' +p201624 +sa(dp201625 +g25273 +S'etching' +p201626 +sg25267 +g27 +sg25275 +S'1897' +p201627 +sg25268 +S'Cour, Rue Ampere, Rouen' +p201628 +sg25270 +S'David Young Cameron' +p201629 +sa(dp201630 +g25268 +S'Il Marzocco, Donatello' +p201631 +sg25270 +S'John Russell Pope' +p201632 +sg25273 +S'graphite' +p201633 +sg25275 +S'c. 1896' +p201634 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1dc.jpg' +p201635 +sg25267 +g27 +sa(dp201636 +g25273 +S'etching' +p201637 +sg25267 +g27 +sg25275 +S'1897' +p201638 +sg25268 +S'Cour, Rue Ampere, Rouen' +p201639 +sg25270 +S'David Young Cameron' +p201640 +sa(dp201641 +g25273 +S'etching' +p201642 +sg25267 +g27 +sg25275 +S'1897' +p201643 +sg25268 +S'Old Houses, Rouen' +p201644 +sg25270 +S'David Young Cameron' +p201645 +sa(dp201646 +g25273 +S'etching' +p201647 +sg25267 +g27 +sg25275 +S'1897' +p201648 +sg25268 +S'Dieppe Castle' +p201649 +sg25270 +S'David Young Cameron' +p201650 +sa(dp201651 +g25273 +S'etching' +p201652 +sg25267 +g27 +sg25275 +S'1897' +p201653 +sg25268 +S'Le Puits' +p201654 +sg25270 +S'David Young Cameron' +p201655 +sa(dp201656 +g25273 +S'etching' +p201657 +sg25267 +g27 +sg25275 +S'1897' +p201658 +sg25268 +S'Le Puits' +p201659 +sg25270 +S'David Young Cameron' +p201660 +sa(dp201661 +g25273 +S'etching' +p201662 +sg25267 +g27 +sg25275 +S'1895' +p201663 +sg25268 +S'Title Page' +p201664 +sg25270 +S'David Young Cameron' +p201665 +sa(dp201666 +g25273 +S'etching' +p201667 +sg25267 +g27 +sg25275 +S'1897' +p201668 +sg25268 +S'Bookplate of James Arthur' +p201669 +sg25270 +S'David Young Cameron' +p201670 +sa(dp201671 +g25273 +S'etching' +p201672 +sg25267 +g27 +sg25275 +S'1897' +p201673 +sg25268 +S'Bookplate of John Maclaren' +p201674 +sg25270 +S'David Young Cameron' +p201675 +sa(dp201676 +g25273 +S'etching' +p201677 +sg25267 +g27 +sg25275 +S'1895' +p201678 +sg25268 +S'Bookplate of Robert M. Mann' +p201679 +sg25270 +S'David Young Cameron' +p201680 +sa(dp201681 +g25273 +S'etching' +p201682 +sg25267 +g27 +sg25275 +S'1895' +p201683 +sg25268 +S'Bookplate of R.Y. Pickering, No. 1' +p201684 +sg25270 +S'David Young Cameron' +p201685 +sa(dp201686 +g25268 +S'Susanna Fourment and Her Daughter' +p201687 +sg25270 +S'Sir Anthony van Dyck' +p201688 +sg25273 +S'oil on canvas' +p201689 +sg25275 +S'1621' +p201690 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e2a.jpg' +p201691 +sg25267 +S'\n\n ' +p201692 +sa(dp201693 +g25268 +S'Bologna Brick Wall' +p201694 +sg25270 +S'John Russell Pope' +p201695 +sg25273 +S'graphite' +p201696 +sg25275 +S'c. 1896' +p201697 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1e7.jpg' +p201698 +sg25267 +g27 +sa(dp201699 +g25273 +S'etching' +p201700 +sg25267 +g27 +sg25275 +S'1894/1910' +p201701 +sg25268 +S'Upper Green, Charterhouse' +p201702 +sg25270 +S'David Young Cameron' +p201703 +sa(dp201704 +g25273 +S'etching and drypoint' +p201705 +sg25267 +g27 +sg25275 +S'1896' +p201706 +sg25268 +S'The Smithy' +p201707 +sg25270 +S'David Young Cameron' +p201708 +sa(dp201709 +g25273 +S'etching and drypoint' +p201710 +sg25267 +g27 +sg25275 +S'1896' +p201711 +sg25268 +S'Dryburgh' +p201712 +sg25270 +S'David Young Cameron' +p201713 +sa(dp201714 +g25273 +S'etching' +p201715 +sg25267 +g27 +sg25275 +S'1896' +p201716 +sg25268 +S'Church Interior, Venice' +p201717 +sg25270 +S'David Young Cameron' +p201718 +sa(dp201719 +g25273 +S'etching' +p201720 +sg25267 +g27 +sg25275 +S'1896' +p201721 +sg25268 +S'The Butterfly' +p201722 +sg25270 +S'David Young Cameron' +p201723 +sa(dp201724 +g25273 +S'etching' +p201725 +sg25267 +g27 +sg25275 +S'1895' +p201726 +sg25268 +S'The Monastery' +p201727 +sg25270 +S'David Young Cameron' +p201728 +sa(dp201729 +g25273 +S'etching' +p201730 +sg25267 +g27 +sg25275 +S'1899' +p201731 +sg25268 +S'In Stirling Castle' +p201732 +sg25270 +S'David Young Cameron' +p201733 +sa(dp201734 +g25273 +S'etching' +p201735 +sg25267 +g27 +sg25275 +S'1899' +p201736 +sg25268 +S'Rosslyn' +p201737 +sg25270 +S'David Young Cameron' +p201738 +sa(dp201739 +g25273 +S'etching and drypoint' +p201740 +sg25267 +g27 +sg25275 +S'1899' +p201741 +sg25268 +S'Siena' +p201742 +sg25270 +S'David Young Cameron' +p201743 +sa(dp201744 +g25273 +S'etching and drypoint' +p201745 +sg25267 +g27 +sg25275 +S'1900' +p201746 +sg25268 +S'The Rialto' +p201747 +sg25270 +S'David Young Cameron' +p201748 +sa(dp201749 +g25268 +S'Study of Moldings' +p201750 +sg25270 +S'John Russell Pope' +p201751 +sg25273 +S'graphite' +p201752 +sg25275 +S'c. 1896' +p201753 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1e9.jpg' +p201754 +sg25267 +g27 +sa(dp201755 +g25273 +S'etching and drypoint' +p201756 +sg25267 +g27 +sg25275 +S'1900' +p201757 +sg25268 +S'The Abbazia, Venice' +p201758 +sg25270 +S'David Young Cameron' +p201759 +sa(dp201760 +g25273 +S'etching' +p201761 +sg25267 +g27 +sg25275 +S'1900' +p201762 +sg25268 +S"Saint Mark's, No. 2" +p201763 +sg25270 +S'David Young Cameron' +p201764 +sa(dp201765 +g25273 +S'etching and drypoint' +p201766 +sg25267 +g27 +sg25275 +S'1900' +p201767 +sg25268 +S'Venetian Street' +p201768 +sg25270 +S'David Young Cameron' +p201769 +sa(dp201770 +g25273 +S'etching and drypoint' +p201771 +sg25267 +g27 +sg25275 +S'1900' +p201772 +sg25268 +S'Venetian Street' +p201773 +sg25270 +S'David Young Cameron' +p201774 +sa(dp201775 +g25273 +S'etching and drypoint' +p201776 +sg25267 +g27 +sg25275 +S'1900' +p201777 +sg25268 +S'Joannis Darius' +p201778 +sg25270 +S'David Young Cameron' +p201779 +sa(dp201780 +g25273 +S'etching and drypoint' +p201781 +sg25267 +g27 +sg25275 +S'1900' +p201782 +sg25268 +S"Ca d'Oro" +p201783 +sg25270 +S'David Young Cameron' +p201784 +sa(dp201785 +g25273 +S'etching and drypoint' +p201786 +sg25267 +g27 +sg25275 +S'1900' +p201787 +sg25268 +S"Saint Mark's, No. 3" +p201788 +sg25270 +S'David Young Cameron' +p201789 +sa(dp201790 +g25273 +S'etching' +p201791 +sg25267 +g27 +sg25275 +S'1900' +p201792 +sg25268 +S'Elcho on the Tay' +p201793 +sg25270 +S'David Young Cameron' +p201794 +sa(dp201795 +g25273 +S'etching and drypoint' +p201796 +sg25267 +g27 +sg25275 +S'1901' +p201797 +sg25268 +S'Laleham' +p201798 +sg25270 +S'David Young Cameron' +p201799 +sa(dp201800 +g25273 +S'etching and drypoint' +p201801 +sg25267 +g27 +sg25275 +S'1901' +p201802 +sg25268 +S'Rosslyn Chapel' +p201803 +sg25270 +S'David Young Cameron' +p201804 +sa(dp201805 +g25268 +S'Palazzo Communale, Bologna' +p201806 +sg25270 +S'John Russell Pope' +p201807 +sg25273 +S'graphite' +p201808 +sg25275 +S'1898' +p201809 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1e6.jpg' +p201810 +sg25267 +g27 +sa(dp201811 +g25273 +S'etching' +p201812 +sg25267 +g27 +sg25275 +S'1902' +p201813 +sg25268 +S'Bookplate of Sir James Bell, Bart' +p201814 +sg25270 +S'David Young Cameron' +p201815 +sa(dp201816 +g25273 +S'etching and drypoint' +p201817 +sg25267 +g27 +sg25275 +S'1902/1907' +p201818 +sg25268 +S'Ponte della Trinita' +p201819 +sg25270 +S'David Young Cameron' +p201820 +sa(dp201821 +g25273 +S'etching and drypoint' +p201822 +sg25267 +g27 +sg25275 +S'1902/1907' +p201823 +sg25268 +S'Ponte della Trinita' +p201824 +sg25270 +S'David Young Cameron' +p201825 +sa(dp201826 +g25273 +S'etching and drypoint' +p201827 +sg25267 +g27 +sg25275 +S'1902' +p201828 +sg25268 +S"Doge's Palace" +p201829 +sg25270 +S'David Young Cameron' +p201830 +sa(dp201831 +g25273 +S'etching and drypoint' +p201832 +sg25267 +g27 +sg25275 +S'1902' +p201833 +sg25268 +S'Chartres' +p201834 +sg25270 +S'David Young Cameron' +p201835 +sa(dp201836 +g25273 +S'etching' +p201837 +sg25267 +g27 +sg25275 +S'1902' +p201838 +sg25268 +S'Loches' +p201839 +sg25270 +S'David Young Cameron' +p201840 +sa(dp201841 +g25273 +S'etching' +p201842 +sg25267 +g27 +sg25275 +S'1902' +p201843 +sg25268 +S'Loches' +p201844 +sg25270 +S'David Young Cameron' +p201845 +sa(dp201846 +g25273 +S'etching' +p201847 +sg25267 +g27 +sg25275 +S'1902' +p201848 +sg25268 +S'Angers: Rue des Filles Dieu' +p201849 +sg25270 +S'David Young Cameron' +p201850 +sa(dp201851 +g25273 +S'etching and drypoint' +p201852 +sg25267 +g27 +sg25275 +S'1902' +p201853 +sg25268 +S'Chinon' +p201854 +sg25270 +S'David Young Cameron' +p201855 +sa(dp201856 +g25273 +S'graphite' +p201857 +sg25267 +g27 +sg25275 +S'unknown date\n' +p201858 +sg25268 +S'Chinon' +p201859 +sg25270 +S'David Young Cameron' +p201860 +sa(dp201861 +g25273 +S'graphite' +p201862 +sg25267 +g27 +sg25275 +S'c. 1898' +p201863 +sg25268 +S'The Erectheum, West Elevation [left half]' +p201864 +sg25270 +S'John Russell Pope' +p201865 +sa(dp201866 +g25273 +S'etching and drypoint' +p201867 +sg25267 +g27 +sg25275 +S'1902' +p201868 +sg25268 +S'Chinon' +p201869 +sg25270 +S'David Young Cameron' +p201870 +sa(dp201871 +g25273 +S'etching' +p201872 +sg25267 +g27 +sg25275 +S'1902' +p201873 +sg25268 +S'Old Farm, Norington' +p201874 +sg25270 +S'David Young Cameron' +p201875 +sa(dp201876 +g25273 +S'etching' +p201877 +sg25267 +g27 +sg25275 +S'1902' +p201878 +sg25268 +S'Near Droxford' +p201879 +sg25270 +S'David Young Cameron' +p201880 +sa(dp201881 +g25273 +S'etching' +p201882 +sg25267 +g27 +sg25275 +S'1902' +p201883 +sg25268 +S'Winchester Cathedral' +p201884 +sg25270 +S'David Young Cameron' +p201885 +sa(dp201886 +g25273 +S'etching' +p201887 +sg25267 +g27 +sg25275 +S'1902' +p201888 +sg25268 +S'The Lea, near Ryehouse' +p201889 +sg25270 +S'David Young Cameron' +p201890 +sa(dp201891 +g25273 +S'etching' +p201892 +sg25267 +g27 +sg25275 +S'1902' +p201893 +sg25268 +S'The Lea, near Ware' +p201894 +sg25270 +S'David Young Cameron' +p201895 +sa(dp201896 +g25273 +S'etching' +p201897 +sg25267 +g27 +sg25275 +S'1902' +p201898 +sg25268 +S'Distant View of Winchester and St. Cross' +p201899 +sg25270 +S'David Young Cameron' +p201900 +sa(dp201901 +g25273 +S'etching' +p201902 +sg25267 +g27 +sg25275 +S'1902' +p201903 +sg25268 +S'On the Test' +p201904 +sg25270 +S'David Young Cameron' +p201905 +sa(dp201906 +g25273 +S'etching' +p201907 +sg25267 +g27 +sg25275 +S'1902' +p201908 +sg25268 +S'Almshouses, St. Cross' +p201909 +sg25270 +S'David Young Cameron' +p201910 +sa(dp201911 +g25273 +S'etching' +p201912 +sg25267 +g27 +sg25275 +S'1902' +p201913 +sg25268 +S'Kingsgate, Winchester' +p201914 +sg25270 +S'David Young Cameron' +p201915 +sa(dp201916 +g25273 +S'graphite' +p201917 +sg25267 +g27 +sg25275 +S'c. 1898' +p201918 +sg25268 +S'The Erectheum, West Elevation [right half]' +p201919 +sg25270 +S'John Russell Pope' +p201920 +sa(dp201921 +g25273 +S'etching' +p201922 +sg25267 +g27 +sg25275 +S'1902' +p201923 +sg25268 +S"Beaufort's Tower, St. Cross" +p201924 +sg25270 +S'David Young Cameron' +p201925 +sa(dp201926 +g25273 +S'etching' +p201927 +sg25267 +g27 +sg25275 +S'1902' +p201928 +sg25268 +S'The Deanery, Winchester' +p201929 +sg25270 +S'David Young Cameron' +p201930 +sa(dp201931 +g25273 +S'etching' +p201932 +sg25267 +g27 +sg25275 +S'1902' +p201933 +sg25268 +S'The Lea, above Ware' +p201934 +sg25270 +S'David Young Cameron' +p201935 +sa(dp201936 +g25273 +S'etching' +p201937 +sg25267 +g27 +sg25275 +S'1902' +p201938 +sg25268 +S'The Chapel, Haddon Hall' +p201939 +sg25270 +S'David Young Cameron' +p201940 +sa(dp201941 +g25273 +S'etching' +p201942 +sg25267 +g27 +sg25275 +S'1902' +p201943 +sg25268 +S'The Windings of the Wye, near Bakewell' +p201944 +sg25270 +S'David Young Cameron' +p201945 +sa(dp201946 +g25273 +S'etching' +p201947 +sg25267 +g27 +sg25275 +S'1902' +p201948 +sg25268 +S'The Windings of the Wye, near Bakewell' +p201949 +sg25270 +S'David Young Cameron' +p201950 +sa(dp201951 +g25273 +S'etching' +p201952 +sg25267 +g27 +sg25275 +S'1902' +p201953 +sg25268 +S'Dovedale' +p201954 +sg25270 +S'David Young Cameron' +p201955 +sa(dp201956 +g25273 +S'etching' +p201957 +sg25267 +g27 +sg25275 +S'1902' +p201958 +sg25268 +S'The Valley of the Lathkill' +p201959 +sg25270 +S'David Young Cameron' +p201960 +sa(dp201961 +g25273 +S'etching' +p201962 +sg25267 +g27 +sg25275 +S'1902' +p201963 +sg25268 +S'On the Wye at Haddon' +p201964 +sg25270 +S'David Young Cameron' +p201965 +sa(dp201966 +g25273 +S'etching and drypoint' +p201967 +sg25267 +g27 +sg25275 +S'1903' +p201968 +sg25268 +S'St. Laumer, Blois' +p201969 +sg25270 +S'David Young Cameron' +p201970 +sa(dp201971 +g25268 +S'Tomb of Dante, Ravenna' +p201972 +sg25270 +S'John Russell Pope' +p201973 +sg25273 +S'graphite' +p201974 +sg25275 +S'c. 1898' +p201975 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1e5.jpg' +p201976 +sg25267 +g27 +sa(dp201977 +g25273 +S'etching' +p201978 +sg25267 +g27 +sg25275 +S'1903' +p201979 +sg25268 +S'Amboise' +p201980 +sg25270 +S'David Young Cameron' +p201981 +sa(dp201982 +g25273 +S'etching and drypoint' +p201983 +sg25267 +g27 +sg25275 +S'1903' +p201984 +sg25268 +S'Place Plumereau, Tours' +p201985 +sg25270 +S'David Young Cameron' +p201986 +sa(dp201987 +g25273 +S'etching and drypoint' +p201988 +sg25267 +g27 +sg25275 +S'1903' +p201989 +sg25268 +S'Cluny' +p201990 +sg25270 +S'David Young Cameron' +p201991 +sa(dp201992 +g25273 +S'etching and drypoint' +p201993 +sg25267 +g27 +sg25275 +S'1903' +p201994 +sg25268 +S'Haddington' +p201995 +sg25270 +S'David Young Cameron' +p201996 +sa(dp201997 +g25273 +S'etching and drypoint' +p201998 +sg25267 +g27 +sg25275 +S'1904' +p201999 +sg25268 +S'The Forth' +p202000 +sg25270 +S'David Young Cameron' +p202001 +sa(dp202002 +g25273 +S'etching' +p202003 +sg25267 +g27 +sg25275 +S'1904' +p202004 +sg25268 +S'A Norman Village' +p202005 +sg25270 +S'David Young Cameron' +p202006 +sa(dp202007 +g25273 +S'etching and drypoint' +p202008 +sg25267 +g27 +sg25275 +S'1904' +p202009 +sg25268 +S'The North Porch, Harfleur' +p202010 +sg25270 +S'David Young Cameron' +p202011 +sa(dp202012 +g25273 +S'etching and drypoint' +p202013 +sg25267 +g27 +sg25275 +S'1904' +p202014 +sg25268 +S"Saint Germain l'Auxerrois" +p202015 +sg25270 +S'David Young Cameron' +p202016 +sa(dp202017 +g25273 +S'etching and drypoint' +p202018 +sg25267 +g27 +sg25275 +S'1904' +p202019 +sg25268 +S'Hotel de Sens' +p202020 +sg25270 +S'David Young Cameron' +p202021 +sa(dp202022 +g25273 +S'etching' +p202023 +sg25267 +g27 +sg25275 +S'1904' +p202024 +sg25268 +S'Saint Gervais, Rue des Barres' +p202025 +sg25270 +S'David Young Cameron' +p202026 +sa(dp202027 +g25268 +S'Brickwork in Rimini' +p202028 +sg25270 +S'John Russell Pope' +p202029 +sg25273 +S'graphite' +p202030 +sg25275 +S'c. 1898' +p202031 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1e8.jpg' +p202032 +sg25267 +g27 +sa(dp202033 +g25273 +S'etching and drypoint' +p202034 +sg25267 +g27 +sg25275 +S'1904' +p202035 +sg25268 +S'Restaurant Cavalier' +p202036 +sg25270 +S'David Young Cameron' +p202037 +sa(dp202038 +g25273 +S'etching and drypoint' +p202039 +sg25267 +g27 +sg25275 +S'1904' +p202040 +sg25268 +S'Rue St. Julien le Pauvre' +p202041 +sg25270 +S'David Young Cameron' +p202042 +sa(dp202043 +g25273 +S'etching and drypoint' +p202044 +sg25267 +g27 +sg25275 +S'1904' +p202045 +sg25268 +S'Cambuskenneth' +p202046 +sg25270 +S'David Young Cameron' +p202047 +sa(dp202048 +g25273 +S'etching and drypoint' +p202049 +sg25267 +g27 +sg25275 +S'1905' +p202050 +sg25268 +S"John Knox's House" +p202051 +sg25270 +S'David Young Cameron' +p202052 +sa(dp202053 +g25273 +S'etching and drypoint' +p202054 +sg25267 +g27 +sg25275 +S'1905' +p202055 +sg25268 +S'The Workshop' +p202056 +sg25270 +S'David Young Cameron' +p202057 +sa(dp202058 +g25273 +S'etching and drypoint' +p202059 +sg25267 +g27 +sg25275 +S'1905' +p202060 +sg25268 +S'The Workshop' +p202061 +sg25270 +S'David Young Cameron' +p202062 +sa(dp202063 +g25273 +S'etching and drypoint' +p202064 +sg25267 +g27 +sg25275 +S'1905' +p202065 +sg25268 +S'Sketch in La Roche' +p202066 +sg25270 +S'David Young Cameron' +p202067 +sa(dp202068 +g25273 +S'etching and drypoint' +p202069 +sg25267 +g27 +sg25275 +S'1905' +p202070 +sg25268 +S'Old Saumur' +p202071 +sg25270 +S'David Young Cameron' +p202072 +sa(dp202073 +g25273 +S'etching and drypoint' +p202074 +sg25267 +g27 +sg25275 +S'1905' +p202075 +sg25268 +S'Old Saumur' +p202076 +sg25270 +S'David Young Cameron' +p202077 +sa(dp202078 +g25273 +S'etching and drypoint' +p202079 +sg25267 +g27 +sg25275 +S'1905' +p202080 +sg25268 +S'The Sycamore' +p202081 +sg25270 +S'David Young Cameron' +p202082 +sa(dp202083 +g25268 +S'Byzantine Doorway with Duomo, Rimini' +p202084 +sg25270 +S'John Russell Pope' +p202085 +sg25273 +S'graphite' +p202086 +sg25275 +S'c. 1898' +p202087 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1e4.jpg' +p202088 +sg25267 +g27 +sa(dp202089 +g25273 +S'etching and drypoint' +p202090 +sg25267 +g27 +sg25275 +S'1905' +p202091 +sg25268 +S'The Avenue' +p202092 +sg25270 +S'David Young Cameron' +p202093 +sa(dp202094 +g25273 +S'etching and drypoint' +p202095 +sg25267 +g27 +sg25275 +S'1905' +p202096 +sg25268 +S'The Tweed at Coldstream' +p202097 +sg25270 +S'David Young Cameron' +p202098 +sa(dp202099 +g25273 +S'etching and drypoint' +p202100 +sg25267 +g27 +sg25275 +S'1903' +p202101 +sg25268 +S'Montivilliers' +p202102 +sg25270 +S'David Young Cameron' +p202103 +sa(dp202104 +g25273 +S'etching and drypoint' +p202105 +sg25267 +g27 +sg25275 +S'1903' +p202106 +sg25268 +S'Montivilliers' +p202107 +sg25270 +S'David Young Cameron' +p202108 +sa(dp202109 +g25273 +S'etching and drypoint' +p202110 +sg25267 +g27 +sg25275 +S'1905' +p202111 +sg25268 +S"Robert Lee's Workshop" +p202112 +sg25270 +S'David Young Cameron' +p202113 +sa(dp202114 +g25273 +S'etching and drypoint' +p202115 +sg25267 +g27 +sg25275 +S'1905' +p202116 +sg25268 +S'Murthly on the Tay' +p202117 +sg25270 +S'David Young Cameron' +p202118 +sa(dp202119 +g25273 +S'etching and drypoint' +p202120 +sg25267 +g27 +sg25275 +S'1905' +p202121 +sg25268 +S'Moray Firth' +p202122 +sg25270 +S'David Young Cameron' +p202123 +sa(dp202124 +g25273 +S'etching and drypoint' +p202125 +sg25267 +g27 +sg25275 +S'1906' +p202126 +sg25268 +S'The Canongate Tolbooth' +p202127 +sg25270 +S'David Young Cameron' +p202128 +sa(dp202129 +g25273 +S'etching and drypoint' +p202130 +sg25267 +g27 +sg25275 +S'1906' +p202131 +sg25268 +S'St. Merri' +p202132 +sg25270 +S'David Young Cameron' +p202133 +sa(dp202134 +g25273 +S'etching and drypoint' +p202135 +sg25267 +g27 +sg25275 +S'1906' +p202136 +sg25268 +S'Pluscarden' +p202137 +sg25270 +S'David Young Cameron' +p202138 +sa(dp202139 +g25268 +S'Sta. Maria della Salute, Venice' +p202140 +sg25270 +S'John Russell Pope' +p202141 +sg25273 +S'graphite' +p202142 +sg25275 +S'c. 1898' +p202143 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1e3.jpg' +p202144 +sg25267 +g27 +sa(dp202145 +g25273 +S'etching and drypoint' +p202146 +sg25267 +g27 +sg25275 +S'1906' +p202147 +sg25268 +S'Still Waters' +p202148 +sg25270 +S'David Young Cameron' +p202149 +sa(dp202150 +g25273 +S'etching and drypoint' +p202151 +sg25267 +g27 +sg25275 +S'1906' +p202152 +sg25268 +S'Berwick-on-Tweed' +p202153 +sg25270 +S'David Young Cameron' +p202154 +sa(dp202155 +g25273 +S'etching and drypoint' +p202156 +sg25267 +g27 +sg25275 +S'1906' +p202157 +sg25268 +S'Evening on the Garry' +p202158 +sg25270 +S'David Young Cameron' +p202159 +sa(dp202160 +g25273 +S'etching and drypoint' +p202161 +sg25267 +g27 +sg25275 +S'1907' +p202162 +sg25268 +S"Robin Hood's Bay" +p202163 +sg25270 +S'David Young Cameron' +p202164 +sa(dp202165 +g25273 +S'etching and drypoint' +p202166 +sg25267 +g27 +sg25275 +S'1907' +p202167 +sg25268 +S"Robin's Court" +p202168 +sg25270 +S'David Young Cameron' +p202169 +sa(dp202170 +g25273 +S'etching and drypoint' +p202171 +sg25267 +g27 +sg25275 +S'1907' +p202172 +sg25268 +S"Mar's Work, Stirling, No. 2" +p202173 +sg25270 +S'David Young Cameron' +p202174 +sa(dp202175 +g25273 +S'etching and drypoint' +p202176 +sg25267 +g27 +sg25275 +S'1907' +p202177 +sg25268 +S'Old La Roche' +p202178 +sg25270 +S'David Young Cameron' +p202179 +sa(dp202180 +g25273 +S'etching and drypoint' +p202181 +sg25267 +g27 +sg25275 +S'1907' +p202182 +sg25268 +S'A Valley of the Ardennes' +p202183 +sg25270 +S'David Young Cameron' +p202184 +sa(dp202185 +g25273 +S'drypoint' +p202186 +sg25267 +g27 +sg25275 +S'1930' +p202187 +sg25268 +S'House Front, Ypres' +p202188 +sg25270 +S'David Young Cameron' +p202189 +sa(dp202190 +g25273 +S'etching and drypoint' +p202191 +sg25267 +g27 +sg25275 +S'1907' +p202192 +sg25268 +S'On the Ourthe' +p202193 +sg25270 +S'David Young Cameron' +p202194 +sa(dp202195 +g25268 +S'Loggia del Consiglio, Padua' +p202196 +sg25270 +S'John Russell Pope' +p202197 +sg25273 +S'graphite' +p202198 +sg25275 +S'c. 1898' +p202199 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1ea.jpg' +p202200 +sg25267 +g27 +sa(dp202201 +g25273 +S'etching and drypoint' +p202202 +sg25267 +g27 +sg25275 +S'1907' +p202203 +sg25268 +S'Afterglow (or Evening) on the Findhorn' +p202204 +sg25270 +S'David Young Cameron' +p202205 +sa(dp202206 +g25273 +S'etching' +p202207 +sg25267 +g27 +sg25275 +S'1904' +p202208 +sg25268 +S'Pont Neuf' +p202209 +sg25270 +S'David Young Cameron' +p202210 +sa(dp202211 +g25273 +S'etching and drypoint' +p202212 +sg25267 +g27 +sg25275 +S'1907' +p202213 +sg25268 +S'The Five Sisters, York Minster' +p202214 +sg25270 +S'David Young Cameron' +p202215 +sa(dp202216 +g25273 +S'etching and drypoint' +p202217 +sg25267 +g27 +sg25275 +S'1923' +p202218 +sg25268 +S'Ben Lomond' +p202219 +sg25270 +S'David Young Cameron' +p202220 +sa(dp202221 +g25273 +S'etching' +p202222 +sg25267 +g27 +sg25275 +S'1896' +p202223 +sg25268 +S'Lowland River: An Etching' +p202224 +sg25270 +S'David Young Cameron' +p202225 +sa(dp202226 +g25273 +S'etching' +p202227 +sg25267 +g27 +sg25275 +S'1896' +p202228 +sg25268 +S'Holyrood in 1745' +p202229 +sg25270 +S'David Young Cameron' +p202230 +sa(dp202231 +g25273 +S'etching' +p202232 +sg25267 +g27 +sg25275 +S'1896' +p202233 +sg25268 +S'Holyrood in 1745' +p202234 +sg25270 +S'David Young Cameron' +p202235 +sa(dp202236 +g25273 +S'etching and drypoint' +p202237 +sg25267 +g27 +sg25275 +S'1907' +p202238 +sg25268 +S'Old St. Etienne' +p202239 +sg25270 +S'David Young Cameron' +p202240 +sa(dp202241 +g25273 +S'etching and drypoint' +p202242 +sg25267 +g27 +sg25275 +S'1929' +p202243 +sg25268 +S'Castle Urquhart' +p202244 +sg25270 +S'David Young Cameron' +p202245 +sa(dp202246 +g25273 +S'etching and drypoint' +p202247 +sg25267 +g27 +sg25275 +S'1923' +p202248 +sg25268 +S'Thermae of Caracalla' +p202249 +sg25270 +S'David Young Cameron' +p202250 +sa(dp202251 +g25268 +S'Marchesa Balbi' +p202252 +sg25270 +S'Sir Anthony van Dyck' +p202253 +sg25273 +S'oil on canvas' +p202254 +sg25275 +S'c. 1623' +p202255 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e2b.jpg' +p202256 +sg25267 +S'Marchesa Balbi\n ' +p202257 +sa(dp202258 +g25268 +S'William Vans Murray' +p202259 +sg25270 +S'Mather Brown' +p202260 +sg25273 +S'oil on canvas' +p202261 +sg25275 +S'1787' +p202262 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a000002c.jpg' +p202263 +sg25267 +S'Descended from the Mathers, a family of famous clergymen in colonial \r\n Massachusetts, Mather Brown moved permanently to England in 1781 at the age \r\n of twenty. Under the tutelage of \n Murray studied law in London from 1784 to 1787 before returning to his \r\n farm near Cambridge, Maryland, on the Chesapeake Bay\'s Eastern Shore. He \r\n later served in Congress and as minister to France. In addition to other \r\n prominent Americans abroad, such as Thomas Jefferson, Brown\'s clientele \r\n included members of the royal family.\n This patronage sparked sarcasm from an exasperated, anonymous English \r\n painter: "Mr. West paints for the Court and Mr. Copley for the City. Thus \r\n the artists of America are fostered in England, and to complete the wonder, \r\n a third American, Mr. Brown of the humblest pretences, is chosen portrait \r\n painter to the Duke of York. So much for the Thirteen Stripes—so much for \r\n the Duke of York\'s taste."\n ' +p202264 +sa(dp202265 +g25273 +S'etching and drypoint' +p202266 +sg25267 +g27 +sg25275 +S'1917' +p202267 +sg25268 +S'Old Museum, Beauvais' +p202268 +sg25270 +S'David Young Cameron' +p202269 +sa(dp202270 +g25273 +S'etching' +p202271 +sg25267 +g27 +sg25275 +S'1899' +p202272 +sg25268 +S'Bookplate of Roberta Elliot S. Paterson' +p202273 +sg25270 +S'David Young Cameron' +p202274 +sa(dp202275 +g25273 +S'etching' +p202276 +sg25267 +g27 +sg25275 +S'1895' +p202277 +sg25268 +S'Two Monks' +p202278 +sg25270 +S'David Young Cameron' +p202279 +sa(dp202280 +g25273 +S'drypoint' +p202281 +sg25267 +g27 +sg25275 +S'1917' +p202282 +sg25268 +S'Strathearn' +p202283 +sg25270 +S'David Young Cameron' +p202284 +sa(dp202285 +g25273 +S'etching' +p202286 +sg25267 +g27 +sg25275 +S'1917' +p202287 +sg25268 +S'Maut' +p202288 +sg25270 +S'David Young Cameron' +p202289 +sa(dp202290 +g25273 +S'etching and drypoint' +p202291 +sg25267 +g27 +sg25275 +S'1916' +p202292 +sg25268 +S'Royal Scottish Academy' +p202293 +sg25270 +S'David Young Cameron' +p202294 +sa(dp202295 +g25273 +S'etching and drypoint' +p202296 +sg25267 +g27 +sg25275 +S'1916' +p202297 +sg25268 +S'Royal Scottish Academy' +p202298 +sg25270 +S'David Young Cameron' +p202299 +sa(dp202300 +g25273 +S'drypoint and etching' +p202301 +sg25267 +g27 +sg25275 +S'1915/1929' +p202302 +sg25268 +S'Pap of Glencoe' +p202303 +sg25270 +S'David Young Cameron' +p202304 +sa(dp202305 +g25273 +S'etching and drypoint' +p202306 +sg25267 +g27 +sg25275 +S'1915/1917' +p202307 +sg25268 +S'The Frews' +p202308 +sg25270 +S'David Young Cameron' +p202309 +sa(dp202310 +g25273 +S'etching and drypoint' +p202311 +sg25267 +g27 +sg25275 +S'1915/1930' +p202312 +sg25268 +S"Souvenir d'Amsterdam" +p202313 +sg25270 +S'David Young Cameron' +p202314 +sa(dp202315 +g25268 +S'The Washington Family' +p202316 +sg25270 +S'Edward Savage' +p202317 +sg25273 +S'oil on canvas' +p202318 +sg25275 +S'1789-1796' +p202319 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000209.jpg' +p202320 +sg25267 +S"Edward Savage's \n Savage's catalogue states that Washington's uniform and the papers beneath his hand allude to his "Military Character" and "Presidentship" respectively. With a map before her, Martha Washington is "pointing with her fan to the grand avenue," now\r\nknown as Pennsylvania Avenue. A servant overdressed in livery and a supposed vista down the Potomac complete the imaginary scene.\n Savage's self–taught ability to distinguish between satins, gauzes, and laces is nothing short of astonishing. However, the anatomy alternates between wooden and rubbery, and the family strangely avoids eye contact. Despite Savage's lack of experience, his huge \n " +p202321 +sa(dp202322 +g25273 +S'drypoint' +p202323 +sg25267 +g27 +sg25275 +S'1915' +p202324 +sg25268 +S'Dunstaffnage' +p202325 +sg25270 +S'David Young Cameron' +p202326 +sa(dp202327 +g25273 +S'etching and drypoint' +p202328 +sg25267 +g27 +sg25275 +S'1915' +p202329 +sg25268 +S'Hills of Tulloch' +p202330 +sg25270 +S'David Young Cameron' +p202331 +sa(dp202332 +g25273 +S'drypoint and etching' +p202333 +sg25267 +g27 +sg25275 +S'1914' +p202334 +sg25268 +S'Inverlochy' +p202335 +sg25270 +S'David Young Cameron' +p202336 +sa(dp202337 +g25273 +S'drypoint' +p202338 +sg25267 +g27 +sg25275 +S'1914' +p202339 +sg25268 +S'The Cairngorms' +p202340 +sg25270 +S'David Young Cameron' +p202341 +sa(dp202342 +g25273 +S'etching and drypoint' +p202343 +sg25267 +g27 +sg25275 +S'1914' +p202344 +sg25268 +S'Kincardine' +p202345 +sg25270 +S'David Young Cameron' +p202346 +sa(dp202347 +g25273 +S'drypoint' +p202348 +sg25267 +g27 +sg25275 +S'1914' +p202349 +sg25268 +S'The Valley (or "Glencrutten")' +p202350 +sg25270 +S'David Young Cameron' +p202351 +sa(dp202352 +g25273 +S'drypoint' +p202353 +sg25267 +g27 +sg25275 +S'1914' +p202354 +sg25268 +S'Loch-an-Dorb' +p202355 +sg25270 +S'David Young Cameron' +p202356 +sa(dp202357 +g25273 +S'drypoint' +p202358 +sg25267 +g27 +sg25275 +S'1914' +p202359 +sg25268 +S'Shuna' +p202360 +sg25270 +S'David Young Cameron' +p202361 +sa(dp202362 +g25273 +S'etching and drypoint' +p202363 +sg25267 +g27 +sg25275 +S'1914' +p202364 +sg25268 +S'Carselands (or "The Carse")' +p202365 +sg25270 +S'David Young Cameron' +p202366 +sa(dp202367 +g25273 +S'etching and drypoint' +p202368 +sg25267 +g27 +sg25275 +S'1914' +p202369 +sg25268 +S'The Lochan' +p202370 +sg25270 +S'David Young Cameron' +p202371 +sa(dp202372 +g25268 +S'Joseph Coolidge' +p202373 +sg25270 +S'Gilbert Stuart' +p202374 +sg25273 +S'oil on wood' +p202375 +sg25275 +S'1820' +p202376 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000230.jpg' +p202377 +sg25267 +g27 +sa(dp202378 +g25273 +S'drypoint' +p202379 +sg25267 +g27 +sg25275 +S'1913' +p202380 +sg25268 +S'Appin Rocks' +p202381 +sg25270 +S'David Young Cameron' +p202382 +sa(dp202383 +g25273 +S'drypoint' +p202384 +sg25267 +g27 +sg25275 +S'1913' +p202385 +sg25268 +S'Appin Rocks' +p202386 +sg25270 +S'David Young Cameron' +p202387 +sa(dp202388 +g25273 +S'etching and drypoint' +p202389 +sg25267 +g27 +sg25275 +S'1913' +p202390 +sg25268 +S'Aquamanile' +p202391 +sg25270 +S'David Young Cameron' +p202392 +sa(dp202393 +g25273 +S'drypoint' +p202394 +sg25267 +g27 +sg25275 +S'1912' +p202395 +sg25268 +S'The Esk' +p202396 +sg25270 +S'David Young Cameron' +p202397 +sa(dp202398 +g25273 +S'drypoint' +p202399 +sg25267 +g27 +sg25275 +S'1912' +p202400 +sg25268 +S'Kerrera, No. II' +p202401 +sg25270 +S'David Young Cameron' +p202402 +sa(dp202403 +g25273 +S'drypoint' +p202404 +sg25267 +g27 +sg25275 +S'1912' +p202405 +sg25268 +S'Kerrera, No. I' +p202406 +sg25270 +S'David Young Cameron' +p202407 +sa(dp202408 +g25273 +S'etching and drypoint' +p202409 +sg25267 +g27 +sg25275 +S'1912' +p202410 +sg25268 +S'The Tay' +p202411 +sg25270 +S'David Young Cameron' +p202412 +sa(dp202413 +g25273 +S'etching and drypoint' +p202414 +sg25267 +g27 +sg25275 +S'1912' +p202415 +sg25268 +S'The Tay' +p202416 +sg25270 +S'David Young Cameron' +p202417 +sa(dp202418 +g25273 +S'drypoint and etching' +p202419 +sg25267 +g27 +sg25275 +S'1912' +p202420 +sg25268 +S'Arran Peaks' +p202421 +sg25270 +S'David Young Cameron' +p202422 +sa(dp202423 +g25273 +S'drypoint' +p202424 +sg25267 +g27 +sg25275 +S'1911' +p202425 +sg25268 +S'Nithsdale' +p202426 +sg25270 +S'David Young Cameron' +p202427 +sa(dp202428 +g25268 +S'Catherine Brass Yates (Mrs. Richard Yates)' +p202429 +sg25270 +S'Gilbert Stuart' +p202430 +sg25273 +S'oil on canvas' +p202431 +sg25275 +S'1793/1794' +p202432 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000231.jpg' +p202433 +sg25267 +S"Gilbert Stuart achieved fame as a portrait painter in both England and America. When he returned to America from England in 1793, he found himself in a homeland that was foreign to him. Politically, there was now a United States instead of thirteen separate colonies. Artistically, the fashionable style he had adopted for British and Irish sitters was highly inappropriate for Yankee merchants' forthright tastes.\n Complaining about the literalness required of him in America, Stuart quipped, "In England my efforts were compared with those of Van Dyck, Titian, and other great painters—here they are compared with the works of the Almighty!" The Almighty had given Catherine Yates a bony face and an appraising character, and that is exactly what Stuart had to portray. Not wishing to waste time posing for an artist, this wife of a New York importer industriously attends to her sewing.\n Yet Stuart's brilliant paint manipulation generates a verve few other artists on either side of the Atlantic could have matched. Every passage contains some technical tour de force, employing a variety of thick or thin, opaque or translucent oil paints for the fabrics, needle, thimble, wedding band, flesh, and fingernails. It is little wonder that \n " +p202434 +sa(dp202435 +g25273 +S'drypoint' +p202436 +sg25267 +g27 +sg25275 +S'1912/1930' +p202437 +sg25268 +S'A Queen of Chartres' +p202438 +sg25270 +S'David Young Cameron' +p202439 +sa(dp202440 +g25273 +S'drypoint' +p202441 +sg25267 +g27 +sg25275 +S'1910' +p202442 +sg25268 +S'Ralia' +p202443 +sg25270 +S'David Young Cameron' +p202444 +sa(dp202445 +g25273 +S'etching and drypoint' +p202446 +sg25267 +g27 +sg25275 +S'1910' +p202447 +sg25268 +S'Dunvalanree' +p202448 +sg25270 +S'David Young Cameron' +p202449 +sa(dp202450 +g25273 +S'drypoint' +p202451 +sg25267 +g27 +sg25275 +S'1912' +p202452 +sg25268 +S'Dinnet Moor' +p202453 +sg25270 +S'David Young Cameron' +p202454 +sa(dp202455 +g25273 +S'drypoint' +p202456 +sg25267 +g27 +sg25275 +S'1911' +p202457 +sg25268 +S'Drumadoon' +p202458 +sg25270 +S'David Young Cameron' +p202459 +sa(dp202460 +g25273 +S'etching and drypoint' +p202461 +sg25267 +g27 +sg25275 +S'1911' +p202462 +sg25268 +S'Lunan Bay' +p202463 +sg25270 +S'David Young Cameron' +p202464 +sa(dp202465 +g25273 +S'drypoint' +p202466 +sg25267 +g27 +sg25275 +S'1911' +p202467 +sg25268 +S'The Boddin' +p202468 +sg25270 +S'David Young Cameron' +p202469 +sa(dp202470 +g25273 +S'etching and drypoint' +p202471 +sg25267 +g27 +sg25275 +S'1911' +p202472 +sg25268 +S'Ben Ledi' +p202473 +sg25270 +S'David Young Cameron' +p202474 +sa(dp202475 +g25273 +S'etching' +p202476 +sg25267 +g27 +sg25275 +S'1911' +p202477 +sg25268 +S'Bookplate of Anna Gordon Blair' +p202478 +sg25270 +S'David Young Cameron' +p202479 +sa(dp202480 +g25273 +S'etching' +p202481 +sg25267 +g27 +sg25275 +S'1911' +p202482 +sg25268 +S'Bookplate of Anna Gordon Blair' +p202483 +sg25270 +S'David Young Cameron' +p202484 +sa(dp202485 +g25268 +S'Lawrence Reid Yates' +p202486 +sg25270 +S'Gilbert Stuart' +p202487 +sg25273 +S'oil on canvas' +p202488 +sg25275 +S'1793/1794' +p202489 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000232.jpg' +p202490 +sg25267 +g27 +sa(dp202491 +g25273 +S'etching and drypoint' +p202492 +sg25267 +g27 +sg25275 +S'1911' +p202493 +sg25268 +S'The Wingless Chimera' +p202494 +sg25270 +S'David Young Cameron' +p202495 +sa(dp202496 +g25273 +S'etching' +p202497 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202498 +sg25268 +S'Mull (?)' +p202499 +sg25270 +S'David Young Cameron' +p202500 +sa(dp202501 +g25273 +S'etching and drypoint' +p202502 +sg25267 +g27 +sg25275 +S'1911' +p202503 +sg25268 +S'The Wingless Chimera' +p202504 +sg25270 +S'David Young Cameron' +p202505 +sa(dp202506 +g25273 +S'etching and drypoint' +p202507 +sg25267 +g27 +sg25275 +S'1910' +p202508 +sg25268 +S'The Chimera of Amiens' +p202509 +sg25270 +S'David Young Cameron' +p202510 +sa(dp202511 +g25273 +S'etching and drypoint' +p202512 +sg25267 +g27 +sg25275 +S'1910' +p202513 +sg25268 +S'The Chimera of Amiens' +p202514 +sg25270 +S'David Young Cameron' +p202515 +sa(dp202516 +g25273 +S'etching and drypoint' +p202517 +sg25267 +g27 +sg25275 +S'1910' +p202518 +sg25268 +S'Street in Cairo' +p202519 +sg25270 +S'David Young Cameron' +p202520 +sa(dp202521 +g25273 +S'etching and drypoint' +p202522 +sg25267 +g27 +sg25275 +S'1910' +p202523 +sg25268 +S'The Mosque Doorway' +p202524 +sg25270 +S'David Young Cameron' +p202525 +sa(dp202526 +g25273 +S'etching and drypoint' +p202527 +sg25267 +g27 +sg25275 +S'1910' +p202528 +sg25268 +S'Beauvais' +p202529 +sg25270 +S'David Young Cameron' +p202530 +sa(dp202531 +g25273 +S'etching and drypoint' +p202532 +sg25267 +g27 +sg25275 +S'1910' +p202533 +sg25268 +S"The Fisher's Hut" +p202534 +sg25270 +S'David Young Cameron' +p202535 +sa(dp202536 +g25273 +S'etching and drypoint' +p202537 +sg25267 +g27 +sg25275 +S'1909' +p202538 +sg25268 +S'The Desert' +p202539 +sg25270 +S'David Young Cameron' +p202540 +sa(dp202541 +g25268 +S'George Washington (Vaughan-Sinclair portrait)' +p202542 +sg25270 +S'Gilbert Stuart' +p202543 +sg25273 +S'oil on canvas' +p202544 +sg25275 +S'1795' +p202545 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000233.jpg' +p202546 +sg25267 +g27 +sa(dp202547 +g25273 +S'etching and drypoint' +p202548 +sg25267 +g27 +sg25275 +S'1909' +p202549 +sg25268 +S'The Turkish Fort' +p202550 +sg25270 +S'David Young Cameron' +p202551 +sa(dp202552 +g25273 +S'etching' +p202553 +sg25267 +g27 +sg25275 +S'1909' +p202554 +sg25268 +S'An Egyptian Mirror' +p202555 +sg25270 +S'David Young Cameron' +p202556 +sa(dp202557 +g25273 +S'etching and drypoint' +p202558 +sg25267 +g27 +sg25275 +S'1909' +p202559 +sg25268 +S'My Little Lady of Luxor' +p202560 +sg25270 +S'David Young Cameron' +p202561 +sa(dp202562 +g25273 +S'etching and drypoint' +p202563 +sg25267 +g27 +sg25275 +S'1909' +p202564 +sg25268 +S'Rameses II' +p202565 +sg25270 +S'David Young Cameron' +p202566 +sa(dp202567 +g25273 +S'etching and drypoint' +p202568 +sg25267 +g27 +sg25275 +S'1908' +p202569 +sg25268 +S"King's Chapel (Boston, Mass.)" +p202570 +sg25270 +S'David Young Cameron' +p202571 +sa(dp202572 +g25273 +S'etching and drypoint' +p202573 +sg25267 +g27 +sg25275 +S'1908' +p202574 +sg25268 +S'Sketch on the Tay' +p202575 +sg25270 +S'David Young Cameron' +p202576 +sa(dp202577 +g25273 +S'drypoint' +p202578 +sg25267 +g27 +sg25275 +S'1908' +p202579 +sg25268 +S'Old Bridge, Whitby' +p202580 +sg25270 +S'David Young Cameron' +p202581 +sa(dp202582 +g25273 +S'etching and drypoint' +p202583 +sg25267 +g27 +sg25275 +S'1908' +p202584 +sg25268 +S'Craigievar' +p202585 +sg25270 +S'David Young Cameron' +p202586 +sa(dp202587 +g25273 +S'etching and drypoint' +p202588 +sg25267 +g27 +sg25275 +S'1907' +p202589 +sg25268 +S'The Little Devil of Florence' +p202590 +sg25270 +S'David Young Cameron' +p202591 +sa(dp202592 +g25273 +S'drypoint' +p202593 +sg25267 +g27 +sg25275 +S'1925' +p202594 +sg25268 +S'Lake of Menteith, No. I' +p202595 +sg25270 +S'David Young Cameron' +p202596 +sa(dp202597 +g25268 +S'John Randolph' +p202598 +sg25270 +S'Chester Harding' +p202599 +sg25273 +S'oil on canvas' +p202600 +sg25275 +S'1829' +p202601 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00000/a00000da.jpg' +p202602 +sg25267 +g27 +sa(dp202603 +g25273 +S'etching and drypoint' +p202604 +sg25267 +g27 +sg25275 +S'1914' +p202605 +sg25268 +S'Royal Arms of Scotland' +p202606 +sg25270 +S'David Young Cameron' +p202607 +sa(dp202608 +g25273 +S'etching' +p202609 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202610 +sg25268 +S'Bookplate of Donald Grace (Cameron Swan)' +p202611 +sg25270 +S'David Young Cameron' +p202612 +sa(dp202613 +g25273 +S'etching' +p202614 +sg25267 +g27 +sg25275 +S'1896' +p202615 +sg25268 +S'Une Cour, Rue du Petit Salut, Rouen' +p202616 +sg25270 +S'David Young Cameron' +p202617 +sa(dp202618 +g25273 +S'etching and drypoint' +p202619 +sg25267 +g27 +sg25275 +S'1916' +p202620 +sg25268 +S'St. Aignan, Chartres' +p202621 +sg25270 +S'David Young Cameron' +p202622 +sa(dp202623 +g25273 +S'etching and drypoint' +p202624 +sg25267 +g27 +sg25275 +S'1930' +p202625 +sg25268 +S'Bookplate of Lessing and Edith Rosenwald' +p202626 +sg25270 +S'David Young Cameron' +p202627 +sa(dp202628 +g25273 +S'drypoint and etching' +p202629 +sg25267 +g27 +sg25275 +S'1929/1930' +p202630 +sg25268 +S'Mountain Tarn' +p202631 +sg25270 +S'David Young Cameron' +p202632 +sa(dp202633 +g25273 +S'drypoint' +p202634 +sg25267 +g27 +sg25275 +S'1929/1930' +p202635 +sg25268 +S'Loch Eil' +p202636 +sg25270 +S'David Young Cameron' +p202637 +sa(dp202638 +g25273 +S'etching and drypoint' +p202639 +sg25267 +g27 +sg25275 +S'1929' +p202640 +sg25268 +S'Killundine' +p202641 +sg25270 +S'David Young Cameron' +p202642 +sa(dp202643 +g25273 +S'etching and drypoint' +p202644 +sg25267 +g27 +sg25275 +S'1929' +p202645 +sg25268 +S'Lake of Menteith, No. II' +p202646 +sg25270 +S'David Young Cameron' +p202647 +sa(dp202648 +g25273 +S'etching and drypoint' +p202649 +sg25267 +g27 +sg25275 +S'1928' +p202650 +sg25268 +S'Santa Maria' +p202651 +sg25270 +S'David Young Cameron' +p202652 +sa(dp202653 +g25268 +S'Alexander Hamilton' +p202654 +sg25270 +S'John Trumbull' +p202655 +sg25273 +S'oil on canvas' +p202656 +sg25275 +S'c. 1806' +p202657 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a000027a.jpg' +p202658 +sg25267 +g27 +sa(dp202659 +g25273 +S'etching and drypoint' +p202660 +sg25267 +g27 +sg25275 +S'1928' +p202661 +sg25268 +S'Stonehenge' +p202662 +sg25270 +S'David Young Cameron' +p202663 +sa(dp202664 +g25273 +S'drypoint' +p202665 +sg25267 +g27 +sg25275 +S'1925' +p202666 +sg25268 +S'Tepidarium: Thermae of Caracalla' +p202667 +sg25270 +S'David Young Cameron' +p202668 +sa(dp202669 +g25273 +S'drypoint' +p202670 +sg25267 +g27 +sg25275 +S'1927' +p202671 +sg25268 +S'Glen Strae' +p202672 +sg25270 +S'David Young Cameron' +p202673 +sa(dp202674 +g25273 +S'drypoint' +p202675 +sg25267 +g27 +sg25275 +S'1926' +p202676 +sg25268 +S'Loch Aline' +p202677 +sg25270 +S'David Young Cameron' +p202678 +sa(dp202679 +g25273 +S'drypoint' +p202680 +sg25267 +g27 +sg25275 +S'1926' +p202681 +sg25268 +S'The Ferry' +p202682 +sg25270 +S'David Young Cameron' +p202683 +sa(dp202684 +g25273 +S'drypoint' +p202685 +sg25267 +g27 +sg25275 +S'1925' +p202686 +sg25268 +S'Sound of Kerrera' +p202687 +sg25270 +S'David Young Cameron' +p202688 +sa(dp202689 +g25273 +S'drypoint' +p202690 +sg25267 +g27 +sg25275 +S'1924' +p202691 +sg25268 +S'Loch Ard' +p202692 +sg25270 +S'David Young Cameron' +p202693 +sa(dp202694 +g25273 +S'etching' +p202695 +sg25267 +g27 +sg25275 +S'1925' +p202696 +sg25268 +S'Winchester Cathedral (Interior)' +p202697 +sg25270 +S'David Young Cameron' +p202698 +sa(dp202699 +g25273 +S'pen and black ink with gray wash' +p202700 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202701 +sg25268 +S'Badenoch' +p202702 +sg25270 +S'David Young Cameron' +p202703 +sa(dp202704 +g25273 +S'pen and brown ink with brown wash' +p202705 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202706 +sg25268 +S'A Lowland River' +p202707 +sg25270 +S'David Young Cameron' +p202708 +sa(dp202709 +g25268 +S'John Randolph' +p202710 +sg25270 +S'Gilbert Stuart' +p202711 +sg25273 +S'oil on canvas' +p202712 +sg25275 +S'1804/1805' +p202713 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00002/a0000234.jpg' +p202714 +sg25267 +g27 +sa(dp202715 +g25273 +S'watercolor and graphite' +p202716 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202717 +sg25268 +S'Finnart' +p202718 +sg25270 +S'David Young Cameron' +p202719 +sa(dp202720 +g25273 +S'watercolor and graphite' +p202721 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202722 +sg25268 +S'Falicon' +p202723 +sg25270 +S'David Young Cameron' +p202724 +sa(dp202725 +g25273 +S'watercolor and graphite' +p202726 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202727 +sg25268 +S'Morning in Albyn' +p202728 +sg25270 +S'David Young Cameron' +p202729 +sa(dp202730 +g25273 +S'watercolor and graphite' +p202731 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202732 +sg25268 +S'Glen Lyon - Evening Mist' +p202733 +sg25270 +S'David Young Cameron' +p202734 +sa(dp202735 +g25273 +S'watercolor and pen and brown ink' +p202736 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202737 +sg25268 +S'Floods in Menteith' +p202738 +sg25270 +S'David Young Cameron' +p202739 +sa(dp202740 +g25273 +S'watercolor and graphite' +p202741 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202742 +sg25268 +S'Ben Ledi' +p202743 +sg25270 +S'David Young Cameron' +p202744 +sa(dp202745 +g25273 +S'watercolor and graphite' +p202746 +sg25267 +g27 +sg25275 +S'1926' +p202747 +sg25268 +S'Hills of Ardgour' +p202748 +sg25270 +S'David Young Cameron' +p202749 +sa(dp202750 +g25273 +S'watercolor and graphite' +p202751 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202752 +sg25268 +S'Vale of Forth' +p202753 +sg25270 +S'David Young Cameron' +p202754 +sa(dp202755 +g25273 +S'watercolor, graphite, and pen and black ink' +p202756 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202757 +sg25268 +S'Loch Marie' +p202758 +sg25270 +S'David Young Cameron' +p202759 +sa(dp202760 +g25273 +S'watercolor and graphite on brown paper' +p202761 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202762 +sg25268 +S'Bridge' +p202763 +sg25270 +S'David Young Cameron' +p202764 +sa(dp202765 +g25268 +S'Colonel Guy Johnson and Karonghyontye (Captain David Hill)' +p202766 +sg25270 +S'Benjamin West' +p202767 +sg25273 +S'oil on canvas' +p202768 +sg25275 +S'1776' +p202769 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d45.jpg' +p202770 +sg25267 +S"The British superintendent of northeastern America's six Indian nations, \r\n Guy Johnson commissioned this impressive portrait in 1776 while in London \r\n to secure that royal appointment. Sailing from Canada, Johnson must have \r\n been accompanied by his close friend Karonghyontye, a Mohawk chief who also \r\n went by the English name of David Hill. The alliance between British forces \r\n and several Indian tribes seriously threatened the rebel colonists' chances \r\n of victory during the Revolutionary War.\n For this likeness, Benjamin West devised a complex allegory. To signify \r\n Johnson's role as ambassador to the Indians, his red-coated uniform is \r\n equipped with moccasins, wampum belt, Indian blanket, and Mohawk cap. \r\n Karonghyontye points to a peace pipe, while Johnson grasps a musket. This \r\n suggests that harmony between Europeans and Indians will be maintained at \r\n all costs. The concept of cooperation extends to the background, where an \r\n Indian family gathers peacefully before a British military tent.\n West claimed that Pennsylvania Indians had taught him to mix paints \r\n from berries and clays when he was a child. A notably diplomatic man, he \r\n served George III as a court painter while urging the king to grant \r\n independence to the colonists!\n " +p202771 +sa(dp202772 +g25273 +S'watercolor and graphite' +p202773 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202774 +sg25268 +S'Perthshire Heights' +p202775 +sg25270 +S'David Young Cameron' +p202776 +sa(dp202777 +g25273 +S'watercolor and graphite on tracing paper' +p202778 +sg25267 +g27 +sg25275 +S'1913' +p202779 +sg25268 +S'Loch Ness' +p202780 +sg25270 +S'David Young Cameron' +p202781 +sa(dp202782 +g25273 +S'watercolor and graphite on laid paper' +p202783 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202784 +sg25268 +S'Hills of Ardgour' +p202785 +sg25270 +S'David Young Cameron' +p202786 +sa(dp202787 +g25273 +S'watercolor on laid paper' +p202788 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202789 +sg25268 +S'Loch Syre' +p202790 +sg25270 +S'David Young Cameron' +p202791 +sa(dp202792 +g25273 +S'watercolor and graphite on laid paper' +p202793 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202794 +sg25268 +S'Loch Ard' +p202795 +sg25270 +S'David Young Cameron' +p202796 +sa(dp202797 +g25273 +S'watercolor' +p202798 +sg25267 +g27 +sg25275 +S'probably 1918' +p202799 +sg25268 +S'Seas of Argyll' +p202800 +sg25270 +S'David Young Cameron' +p202801 +sa(dp202802 +g25273 +S'watercolor and black chalk' +p202803 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202804 +sg25268 +S'Balquhidder' +p202805 +sg25270 +S'David Young Cameron' +p202806 +sa(dp202807 +g25273 +S'graphite on laid paper' +p202808 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202809 +sg25268 +S'The Gargoyles, Stirling' +p202810 +sg25270 +S'David Young Cameron' +p202811 +sa(dp202812 +g25273 +S'watercolor and graphite' +p202813 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202814 +sg25268 +S'Nithsdale' +p202815 +sg25270 +S'David Young Cameron' +p202816 +sa(dp202817 +g25273 +S'watercolor and black chalk on laid paper' +p202818 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202819 +sg25268 +S'Castle Urquhart' +p202820 +sg25270 +S'David Young Cameron' +p202821 +sa(dp202822 +g25268 +S'Philip, Lord Wharton' +p202823 +sg25270 +S'Sir Anthony van Dyck' +p202824 +sg25273 +S'oil on canvas' +p202825 +sg25275 +S'1632' +p202826 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002aef.jpg' +p202827 +sg25267 +S'Philip, Lord Wharton\n ' +p202828 +sa(dp202829 +g25268 +S'Portrait of a Gentleman' +p202830 +sg25270 +S'Joseph Wright' +p202831 +sg25273 +S'oil on canvas' +p202832 +sg25275 +S'c. 1770-1773' +p202833 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000561.jpg' +p202834 +sg25267 +S'This striking portrait is somewhat unorthodox by\r\n eighteenth-century \r\n British standards. Important men seldom were shown with their arms\r\n crossed \r\n over their chests, because that gesture denoted casual nonchalance.\r\n Here, \r\n the informal pose is linked to a setting of the most formal\r\n pretensions—a \r\n massive boulder and stormy sky—normally used to signify a\r\n military \r\n commander in the midst of battle. This extraordinary combination of\r\n relaxation amid grandeur may someday help identify the sitter.\n The painting\'s earliest record dates only to 1916, when it was\r\n sold from \r\n an aristocratic Derbyshire estate as the likeness of an ancestor\r\n "who was a famous admiral." This claim may be inaccurate as this \r\n man is not \r\n wearing a naval uniform. His elegant tailoring is that of a\r\n civilian, and \r\n he toys with a walking stick.\n The detailed attention to realistic texture, such as the felt\r\n tricorn \r\n hat, plush velvet lapels, and soft leather gloves, characterize the\r\n style \r\n and meticulous technique of Joseph Wright of Derby. \r\n Wright\'s \n ' +p202835 +sa(dp202836 +g25273 +S'watercolor and graphite' +p202837 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202838 +sg25268 +S'Ben Grian' +p202839 +sg25270 +S'David Young Cameron' +p202840 +sa(dp202841 +g25273 +S'watercolor and graphite on laid paper' +p202842 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202843 +sg25268 +S'Loch Chon' +p202844 +sg25270 +S'David Young Cameron' +p202845 +sa(dp202846 +g25273 +S'watercolor and graphite on laid paper' +p202847 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202848 +sg25268 +S'Cassel' +p202849 +sg25270 +S'David Young Cameron' +p202850 +sa(dp202851 +g25273 +S'watercolor and graphite on laid paper' +p202852 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202853 +sg25268 +S'The Road to Lens' +p202854 +sg25270 +S'David Young Cameron' +p202855 +sa(dp202856 +g25273 +S'watercolor and graphite on laid paper' +p202857 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202858 +sg25268 +S'Near Cassel' +p202859 +sg25270 +S'David Young Cameron' +p202860 +sa(dp202861 +g25273 +S'watercolor and graphite on laid paper' +p202862 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202863 +sg25268 +S'Berthonval Farm, Vimy' +p202864 +sg25270 +S'David Young Cameron' +p202865 +sa(dp202866 +g25273 +S'watercolor' +p202867 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202868 +sg25268 +S'Under Kemmel Hill' +p202869 +sg25270 +S'David Young Cameron' +p202870 +sa(dp202871 +g25273 +S'watercolor on laid paper' +p202872 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202873 +sg25268 +S'Bapaume' +p202874 +sg25270 +S'David Young Cameron' +p202875 +sa(dp202876 +g25273 +S'watercolor and graphite' +p202877 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202878 +sg25268 +S'On the Vimy to Lens Road' +p202879 +sg25270 +S'David Young Cameron' +p202880 +sa(dp202881 +g25273 +S'watercolor and graphite on laid paper' +p202882 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202883 +sg25268 +S"L'Ablaine, Saint-Nazaire" +p202884 +sg25270 +S'David Young Cameron' +p202885 +sa(dp202886 +g25268 +S'A Young Man in a Large Hat' +p202887 +sg25270 +S'Frans Hals' +p202888 +sg25273 +S'oil on panel' +p202889 +sg25275 +S'1626/1629' +p202890 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e5d.jpg' +p202891 +sg25267 +g27 +sa(dp202892 +g25273 +S'watercolor and graphite on laid paper' +p202893 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202894 +sg25268 +S'Lorette Spur, Winter' +p202895 +sg25270 +S'David Young Cameron' +p202896 +sa(dp202897 +g25273 +S'watercolor and graphite on laid paper' +p202898 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202899 +sg25268 +S'Lens' +p202900 +sg25270 +S'David Young Cameron' +p202901 +sa(dp202902 +g25273 +S'graphite on brown paper' +p202903 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202904 +sg25268 +S'Venetian Palace' +p202905 +sg25270 +S'David Young Cameron' +p202906 +sa(dp202907 +g25273 +S'graphite' +p202908 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202909 +sg25268 +S'On the Tay' +p202910 +sg25270 +S'David Young Cameron' +p202911 +sa(dp202912 +g25273 +S'pen and ink' +p202913 +sg25267 +g27 +sg25275 +S'1888' +p202914 +sg25268 +S'Glasgow Cathedral and Barony Church' +p202915 +sg25270 +S'David Young Cameron' +p202916 +sa(dp202917 +g25273 +S'pen and black ink' +p202918 +sg25267 +g27 +sg25275 +S'1896' +p202919 +sg25268 +S'Vanity' +p202920 +sg25270 +S'David Young Cameron' +p202921 +sa(dp202922 +g25273 +S'pen and black ink' +p202923 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202924 +sg25268 +S'The Butterflies' +p202925 +sg25270 +S'David Young Cameron' +p202926 +sa(dp202927 +g25273 +S'pen and black ink' +p202928 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202929 +sg25268 +S'Bothwell Castle' +p202930 +sg25270 +S'David Young Cameron' +p202931 +sa(dp202932 +g25273 +S'pen and ink with gray wash' +p202933 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202934 +sg25268 +S'Broomielaw, Glasgow' +p202935 +sg25270 +S'David Young Cameron' +p202936 +sa(dp202937 +g25273 +S'pen and black ink' +p202938 +sg25267 +g27 +sg25275 +S'1889' +p202939 +sg25268 +S'Back Court, Trongate' +p202940 +sg25270 +S'David Young Cameron' +p202941 +sa(dp202942 +g25268 +S'Man in Oriental Costume' +p202943 +sg25270 +S'Artist Information (' +p202944 +sg25273 +S'(painter)' +p202945 +sg25275 +S'\n' +p202946 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ea1.jpg' +p202947 +sg25267 +g27 +sa(dp202948 +g25273 +S'red chalk and graphite' +p202949 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202950 +sg25268 +S'In Kensington Garden' +p202951 +sg25270 +S'David Young Cameron' +p202952 +sa(dp202953 +g25273 +S'charcoal' +p202954 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202955 +sg25268 +S'Mountain Scene' +p202956 +sg25270 +S'David Young Cameron' +p202957 +sa(dp202958 +g25273 +S'black chalk on laid paper' +p202959 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202960 +sg25268 +S'Tuscany Valley' +p202961 +sg25270 +S'David Young Cameron' +p202962 +sa(dp202963 +g25273 +S'watercolor and graphite' +p202964 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202965 +sg25268 +S'Lorn' +p202966 +sg25270 +S'David Young Cameron' +p202967 +sa(dp202968 +g25273 +S'graphite on brown paper' +p202969 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202970 +sg25268 +S'Cliffs' +p202971 +sg25270 +S'David Young Cameron' +p202972 +sa(dp202973 +g25273 +S'watercolor and graphite' +p202974 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202975 +sg25268 +S'Schichallion' +p202976 +sg25270 +S'David Young Cameron' +p202977 +sa(dp202978 +g25273 +S'watercolor and black crayon' +p202979 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202980 +sg25268 +S'Menteith' +p202981 +sg25270 +S'David Young Cameron' +p202982 +sa(dp202983 +g25273 +S'watercolor and graphite' +p202984 +sg25267 +g27 +sg25275 +S'unknown date\n' +p202985 +sg25268 +S'Kemmel' +p202986 +sg25270 +S'David Young Cameron' +p202987 +sa(dp202988 +g25273 +S'graphite, pen and black ink and watercolor' +p202989 +sg25267 +g27 +sg25275 +S'probably c. 1905' +p202990 +sg25268 +S"Robert Lee's Workshop" +p202991 +sg25270 +S'David Young Cameron' +p202992 +sa(dp202993 +g25273 +S'pen and black ink on gray paper' +p202994 +sg25267 +g27 +sg25275 +S'1906' +p202995 +sg25268 +S'Canongate, Tolbooth' +p202996 +sg25270 +S'David Young Cameron' +p202997 +sa(dp202998 +g25268 +S'Portrait of a Flemish Lady' +p202999 +sg25270 +S'Sir Anthony van Dyck' +p203000 +sg25273 +S'oil on canvas' +p203001 +sg25275 +S'probably 1618' +p203002 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e2c.jpg' +p203003 +sg25267 +S'Portrait of a Flemish Lady\n ' +p203004 +sa(dp203005 +g25273 +S'watercolor over graphite' +p203006 +sg25267 +g27 +sg25275 +S'probably 1925/1930' +p203007 +sg25268 +S'The Hills' +p203008 +sg25270 +S'David Young Cameron' +p203009 +sa(dp203010 +g25273 +S'watercolor and graphite' +p203011 +sg25267 +g27 +sg25275 +S'unknown date\n' +p203012 +sg25268 +S'Uplands in Menteith' +p203013 +sg25270 +S'David Young Cameron' +p203014 +sa(dp203015 +g25273 +S'watercolor and graphite' +p203016 +sg25267 +g27 +sg25275 +S'unknown date\n' +p203017 +sg25268 +S'Bens of Mull' +p203018 +sg25270 +S'David Young Cameron' +p203019 +sa(dp203020 +g25273 +S'watercolor and graphite' +p203021 +sg25267 +g27 +sg25275 +S'unknown date\n' +p203022 +sg25268 +S'Winter in Menteith' +p203023 +sg25270 +S'David Young Cameron' +p203024 +sa(dp203025 +g25273 +S'etching' +p203026 +sg25267 +g27 +sg25275 +S'1895' +p203027 +sg25268 +S'Title Page' +p203028 +sg25270 +S'David Young Cameron' +p203029 +sa(dp203030 +g25273 +S'etching' +p203031 +sg25267 +g27 +sg25275 +S'1895' +p203032 +sg25268 +S"Saint Mark's Venice, No. 1" +p203033 +sg25270 +S'David Young Cameron' +p203034 +sa(dp203035 +g25273 +S'etching' +p203036 +sg25267 +g27 +sg25275 +S'1895' +p203037 +sg25268 +S'Veronica' +p203038 +sg25270 +S'David Young Cameron' +p203039 +sa(dp203040 +g25273 +S'etching' +p203041 +sg25267 +g27 +sg25275 +S'1895' +p203042 +sg25268 +S'The Monastery' +p203043 +sg25270 +S'David Young Cameron' +p203044 +sa(dp203045 +g25273 +S'etching' +p203046 +sg25267 +g27 +sg25275 +S'1895' +p203047 +sg25268 +S'A Venetian Convent' +p203048 +sg25270 +S'David Young Cameron' +p203049 +sa(dp203050 +g25273 +S'etching' +p203051 +sg25267 +g27 +sg25275 +S'1895' +p203052 +sg25268 +S'Paolo Salviati' +p203053 +sg25270 +S'David Young Cameron' +p203054 +sa(dp203055 +g25268 +S'Cherubs Playing with a Swan' +p203056 +sg25270 +S'Jean-Baptiste Tuby I' +p203057 +sg25273 +S'lead, traces of gilding' +p203058 +sg25275 +S'1672-1673' +p203059 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00034/a000341b.jpg' +p203060 +sg25267 +S"The fountains in the Garden Courts on the Main Floor of the West Building were originally made for the vast garden laid out for King Louis XIV of France (1638–1715) at his château of Versailles. The one in the East Garden Court, by Pierre Legros I, consists of two cherubs sitting in a shell and together holding a lyre, an attribute of the sun god Apollo, whom Louis XIV took as a symbol. In the West Garden Court sculpture by Jean-Baptist Tuby I, the cherubs wrestle playfully with a swan, another emblem of Apollo. The quiver of arrows in each fountain is an attribute of Cupid, the infant god of love. \n These sculptures were created between 1672 and 1674 for a secluded grove on the grounds of Versailles called the Théâtre d'Eau, shaped as a theater with jets and streams of water as the performers. Four fountains, including the two now in Washington, stood in niches carved into a curving wall of greenery that formed a theater backdrop against a low hill. (The other two, Cherubs with a Griffin by Benoît Massou and Cherubs with a Crayfish by Jacques Houzeau, are lost; the only other sculpture known to survive from the Théâtre d'Eau is the bronze Cupid Drawing an Arrow by Gaspard Marsy, now in the gardens of the Grand Trianon at Versailles). Between these fountains, water cascaded down channels from the top of the hill to spill into pools on the "stage." Lead was the preferred medium for fountain figures because it resists corrosion, takes gilding easily, and can be cast relatively quickly. This was an advantage for a patron like Louis XIV, who wanted many fine sculptures produced in a short time. \n The king and his powerful artistic director, the painter and art theorist Charles Le Brun (1619–1690), intended all the sculptures at Versailles to resemble one another in style. For this reason it may be difficult to distinguish the work of one sculptor from another, except in rare cases where the sculptor managed to maintain an individual style. The names of the Versailles artists are known through old descriptions, prints, guidebooks, and archival documents. In the case of the National Gallery's two fountains, preliminary design drawings by Le Brun have survived. While the sculptures generally follow these, differences suggest the artists were allowed to exert some independence.\n After the death of Louis XIV the Théâtre d'Eau, expensive to maintain, fell into disrepair. The sculptures must have been removed by 1756, when the Théâtre was described as "completely destroyed," with nothing left but the surrounding pathways. The sculptures by Tuby and Legros passed through various private collections—in the twentieth century, reportedly including that of the Grand Duchess Anastasia (cousin of the more famous Anastasia, daughter of Nicholas II, the last czar of Russia), before their acquisition by the A. W. Mellon Educational and Charitable Trust in 1940. Placed in the Garden Courts, the fountains enliven the settings where Gallery visitors can rest and relax, providing the same enjoyment as they did for Louis XIV and his courtiers.\n The sculptor Pierre Legros I, father of another important sculptor also called Pierre, came from the French town of Chartres, renowned for its cathedral. Jean-Baptiste Tuby I, born in Rome but with a French father, was a leading sculptor on the team of artists at Versailles. He became close to the artistic director Le Brun, acquiring some of his paintings and marrying his niece. Tuby's son also became a sculptor.\n " +p203061 +sa(dp203062 +g25273 +S'etching' +p203063 +sg25267 +g27 +sg25275 +S'1894' +p203064 +sg25268 +S"Tintoret's House" +p203065 +sg25270 +S'David Young Cameron' +p203066 +sa(dp203067 +g25273 +S'etching' +p203068 +sg25267 +g27 +sg25275 +S'1894' +p203069 +sg25268 +S'A Venetian Fountain' +p203070 +sg25270 +S'David Young Cameron' +p203071 +sa(dp203072 +g25273 +S'etching' +p203073 +sg25267 +g27 +sg25275 +S'1896' +p203074 +sg25268 +S'Via ai Prati, Genoa' +p203075 +sg25270 +S'David Young Cameron' +p203076 +sa(dp203077 +g25273 +S'etching' +p203078 +sg25267 +g27 +sg25275 +S'1896' +p203079 +sg25268 +S'The Confessional' +p203080 +sg25270 +S'David Young Cameron' +p203081 +sa(dp203082 +g25273 +S'etching' +p203083 +sg25267 +g27 +sg25275 +S'1895' +p203084 +sg25268 +S'San Giorgio Maggiore' +p203085 +sg25270 +S'David Young Cameron' +p203086 +sa(dp203087 +g25273 +S'etching' +p203088 +sg25267 +g27 +sg25275 +S'1896' +p203089 +sg25268 +S'Two Bridges' +p203090 +sg25270 +S'David Young Cameron' +p203091 +sa(dp203092 +g25273 +S'etching' +p203093 +sg25267 +g27 +sg25275 +S'1896' +p203094 +sg25268 +S'The Butterfly' +p203095 +sg25270 +S'David Young Cameron' +p203096 +sa(dp203097 +g25273 +S'etching' +p203098 +sg25267 +g27 +sg25275 +S'1895' +p203099 +sg25268 +S'A Soldier of Italy' +p203100 +sg25270 +S'David Young Cameron' +p203101 +sa(dp203102 +g25273 +S'etching' +p203103 +sg25267 +g27 +sg25275 +S'1896' +p203104 +sg25268 +S'A Lady of Genoa' +p203105 +sg25270 +S'David Young Cameron' +p203106 +sa(dp203107 +g25273 +S'etching' +p203108 +sg25267 +g27 +sg25275 +S'1895' +p203109 +sg25268 +S'Two Monks' +p203110 +sg25270 +S'David Young Cameron' +p203111 +sa(dp203112 +g25268 +S'Cherubs Playing with a Lyre' +p203113 +sg25270 +S'Pierre Legros I' +p203114 +sg25273 +S'lead, traces of gilding' +p203115 +sg25275 +S'1672-1673' +p203116 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c12.jpg' +p203117 +sg25267 +S"The fountains in the Garden Courts on the Main Floor of the West Building were originally made for the vast garden laid out for King Louis XIV of France (1638–1715) at his château of Versailles. The one in the East Garden Court, by Pierre Legros I, consists of two cherubs sitting in a shell and together holding a lyre, an attribute of the sun god Apollo, whom Louis XIV took as a symbol. In the West Garden Court sculpture by Jean-Baptist Tuby I, the cherubs wrestle playfully with a swan, another emblem of Apollo. The quiver of arrows in each fountain is an attribute of Cupid, the infant god of love. \n These sculptures were created between 1672 and 1674 for a secluded grove on the grounds of Versailles called the Théâtre d'Eau, shaped as a theater with jets and streams of water as the performers. Four fountains, including the two now in Washington, stood in niches carved into a curving wall of greenery that formed a theater backdrop against a low hill. (The other two, Cherubs with a Griffin by Benoît Massou and Cherubs with a Crayfish by Jacques Houzeau, are lost; the only other sculpture known to survive from the Théâtre d'Eau is the bronze Cupid Drawing an Arrow by Gaspard Marsy, now in the gardens of the Grand Trianon at Versailles). Between these fountains, water cascaded down channels from the top of the hill to spill into pools on the "stage." Lead was the preferred medium for fountain figures because it resists corrosion, takes gilding easily, and can be cast relatively quickly. This was an advantage for a patron like Louis XIV, who wanted many fine sculptures produced in a short time. \n The king and his powerful artistic director, the painter and art theorist Charles Le Brun (1619–1690), intended all the sculptures at Versailles to resemble one another in style. For this reason it may be difficult to distinguish the work of one sculptor from another, except in rare cases where the sculptor managed to maintain an individual style. The names of the Versailles artists are known through old descriptions, prints, guidebooks, and archival documents. In the case of the National Gallery's two fountains, preliminary design drawings by Le Brun have survived. While the sculptures generally follow these, differences suggest the artists were allowed to exert some independence.\n After the death of Louis XIV the Théâtre d'Eau, expensive to maintain, fell into disrepair. The sculptures must have been removed by 1756, when the Théâtre was described as "completely destroyed," with nothing left but the surrounding pathways. The sculptures by Tuby and Legros passed through various private collections—in the twentieth century, reportedly including that of the Grand Duchess Anastasia (cousin of the more famous Anastasia, daughter of Nicholas II, the last czar of Russia), before their acquisition by the A. W. Mellon Educational and Charitable Trust in 1940. Placed in the Garden Courts, the fountains enliven the settings where Gallery visitors can rest and relax, providing the same enjoyment as they did for Louis XIV and his courtiers.\n The sculptor Pierre Legros I, father of another important sculptor also called Pierre, came from the French town of Chartres, renowned for its cathedral. Jean-Baptiste Tuby I, born in Rome but with a French father, was a leading sculptor on the team of artists at Versailles. He became close to the artistic director Le Brun, acquiring some of his paintings and marrying his niece. Tuby's son also became a sculptor.\n " +p203118 +sa(dp203119 +g25273 +S'etching' +p203120 +sg25267 +g27 +sg25275 +S'1896' +p203121 +sg25268 +S'Church Interior, Venice' +p203122 +sg25270 +S'David Young Cameron' +p203123 +sa(dp203124 +g25273 +S'etching' +p203125 +sg25267 +g27 +sg25275 +S'1896' +p203126 +sg25268 +S'Venice from the Lido' +p203127 +sg25270 +S'David Young Cameron' +p203128 +sa(dp203129 +g25273 +S'etching' +p203130 +sg25267 +g27 +sg25275 +S'1896' +p203131 +sg25268 +S'Sketch of Venice' +p203132 +sg25270 +S'David Young Cameron' +p203133 +sa(dp203134 +g25273 +S'etching' +p203135 +sg25267 +g27 +sg25275 +S'1896' +p203136 +sg25268 +S'Farm Gateway, Campagnetta' +p203137 +sg25270 +S'David Young Cameron' +p203138 +sa(dp203139 +g25273 +S'etching' +p203140 +sg25267 +g27 +sg25275 +S'1894' +p203141 +sg25268 +S'The Bridge of Sighs' +p203142 +sg25270 +S'David Young Cameron' +p203143 +sa(dp203144 +g25273 +S'etching' +p203145 +sg25267 +g27 +sg25275 +S'1895' +p203146 +sg25268 +S'Ponte Vecchio' +p203147 +sg25270 +S'David Young Cameron' +p203148 +sa(dp203149 +g25273 +S'etching' +p203150 +sg25267 +g27 +sg25275 +S'1895' +p203151 +sg25268 +S'The Palace Doorway' +p203152 +sg25270 +S'David Young Cameron' +p203153 +sa(dp203154 +g25273 +S'etching' +p203155 +sg25267 +g27 +sg25275 +S'1896' +p203156 +sg25268 +S'Porta del Molo, Genoa, No. 2' +p203157 +sg25270 +S'David Young Cameron' +p203158 +sa(dp203159 +g25273 +S'etching' +p203160 +sg25267 +g27 +sg25275 +S'1896' +p203161 +sg25268 +S'The Wine Farm' +p203162 +sg25270 +S'David Young Cameron' +p203163 +sa(dp203164 +g25273 +S'etching' +p203165 +sg25267 +g27 +sg25275 +S'1896' +p203166 +sg25268 +S'Pastoral' +p203167 +sg25270 +S'David Young Cameron' +p203168 +sa(dp203169 +g25268 +S'The Maas at Dordrecht' +p203170 +sg25270 +S'Aelbert Cuyp' +p203171 +sg25273 +S'oil on canvas' +p203172 +sg25275 +S'c. 1650' +p203173 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e4c.jpg' +p203174 +sg25267 +S"Cuyp's masterful depiction of Dordrecht differs extensively from Jan van Goyen's \n Cuyp was probably commissioned to represent an event that occurred during the summer of 1646. At that time an enormous fleet of ships carrying thirty thousand soldiers was anchored at Dordrecht; presumably for symbolic purposes rather than for specific military ones as peace was finally at hand. The Treaty of Münster, which ended all hostilities with Spain and created an independent Dutch nation, was signed only two years later.\n " +p203175 +sa(dp203176 +g25273 +S'etching' +p203177 +sg25267 +g27 +sg25275 +S'1896' +p203178 +sg25268 +S'Landscape with Trees' +p203179 +sg25270 +S'David Young Cameron' +p203180 +sa(dp203181 +g25273 +S'etching' +p203182 +sg25267 +g27 +sg25275 +S'1895' +p203183 +sg25268 +S'Portfolio Label-Design' +p203184 +sg25270 +S'David Young Cameron' +p203185 +sa(dp203186 +g25273 +S'etching' +p203187 +sg25267 +g27 +sg25275 +S'1892' +p203188 +sg25268 +S'The Dolphins' +p203189 +sg25270 +S'David Young Cameron' +p203190 +sa(dp203191 +g25273 +S'etching' +p203192 +sg25267 +g27 +sg25275 +S'1892' +p203193 +sg25268 +S'Zaandam Windmills' +p203194 +sg25270 +S'David Young Cameron' +p203195 +sa(dp203196 +g25273 +S'etching' +p203197 +sg25267 +g27 +sg25275 +S'1892' +p203198 +sg25268 +S'Oude Kerk, Amsterdam' +p203199 +sg25270 +S'David Young Cameron' +p203200 +sa(dp203201 +g25273 +S'etching' +p203202 +sg25267 +g27 +sg25275 +S'1892' +p203203 +sg25268 +S'Storm: Sundown' +p203204 +sg25270 +S'David Young Cameron' +p203205 +sa(dp203206 +g25273 +S'etching' +p203207 +sg25267 +g27 +sg25275 +S'1892' +p203208 +sg25268 +S'The Rokin' +p203209 +sg25270 +S'David Young Cameron' +p203210 +sa(dp203211 +g25273 +S'etching' +p203212 +sg25267 +g27 +sg25275 +S'1892' +p203213 +sg25268 +S'Van der Deevilij' +p203214 +sg25270 +S'David Young Cameron' +p203215 +sa(dp203216 +g25273 +S'etching' +p203217 +sg25267 +g27 +sg25275 +S'c. 1634' +p203218 +sg25268 +S'Self-Portrait Wearing a Soft Cap: Full Face, Head Only' +p203219 +sg25270 +S'Rembrandt van Rijn' +p203220 +sa(dp203221 +g25273 +S'etching' +p203222 +sg25267 +g27 +sg25275 +S'1892' +p203223 +sg25268 +S'The Arch' +p203224 +sg25270 +S'David Young Cameron' +p203225 +sa(dp203226 +g25268 +S'Monumental Urn' +p203227 +sg25270 +S'Clodion' +p203228 +sg25273 +S'marble' +p203229 +sg25275 +S'1782' +p203230 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000558c.jpg' +p203231 +sg25267 +S"Clodion is best known today and was most celebrated in the eighteenth \r\n century for works of vivacity and charm. The relief panels decorating these \r\n urns, one of which is illustrated here, are typical of his engaging \r\n subjects: satyr families tussle and frolic in bucolic settings, playing \r\n music, and riding seesaws. The scenes on the urns include some of Clodion's \r\n most popular vignettes, which he copied many times in terracotta \r\n (including a plaque often on view in the downstairs sculpture galleries) \r\n and other media, and which are even found as gilded decorations on \r\n furniture. Clodion had an active workshop and was so busy that he failed \r\n even to complete the masterpiece for his admission to the French Academy. \r\n Probably the urns were carved not by Clodion himself, but by workshop \r\n assistants following terracotta models provided by the master, a common \r\n procedure in the eighteenth and nineteenth centuries.\n One of Clodion's most beautiful carvings, a Vestal Virgin made for the \r\n Russian empress Catherine the Great, can be seen in the ground-floor \r\n galleries. This solemn and heavily draped figure contrasts with the \r\n playfully sensuous figure style on these urns.\n " +p203232 +sa(dp203233 +g25273 +S'etching' +p203234 +sg25267 +g27 +sg25275 +S'1892' +p203235 +sg25268 +S"Van Og's Houtkoperij" +p203236 +sg25270 +S'David Young Cameron' +p203237 +sa(dp203238 +g25273 +S'etching' +p203239 +sg25267 +g27 +sg25275 +S'1892' +p203240 +sg25268 +S'Alkmaar' +p203241 +sg25270 +S'David Young Cameron' +p203242 +sa(dp203243 +g25273 +S'etching' +p203244 +sg25267 +g27 +sg25275 +S'1892' +p203245 +sg25268 +S'A Dutch Damsel' +p203246 +sg25270 +S'David Young Cameron' +p203247 +sa(dp203248 +g25273 +S'etching' +p203249 +sg25267 +g27 +sg25275 +S'1892' +p203250 +sg25268 +S'The Market Boat' +p203251 +sg25270 +S'David Young Cameron' +p203252 +sa(dp203253 +g25273 +S'etching' +p203254 +sg25267 +g27 +sg25275 +S'1892' +p203255 +sg25268 +S'A Canal: Amsterdam' +p203256 +sg25270 +S'David Young Cameron' +p203257 +sa(dp203258 +g25273 +S'etching' +p203259 +sg25267 +g27 +sg25275 +S'1892' +p203260 +sg25268 +S'Jan' +p203261 +sg25270 +S'David Young Cameron' +p203262 +sa(dp203263 +g25273 +S'etching' +p203264 +sg25267 +g27 +sg25275 +S'1892' +p203265 +sg25268 +S'A Dutch Farm' +p203266 +sg25270 +S'David Young Cameron' +p203267 +sa(dp203268 +g25273 +S'etching' +p203269 +sg25267 +g27 +sg25275 +S'1892' +p203270 +sg25268 +S'The Flower Market' +p203271 +sg25270 +S'David Young Cameron' +p203272 +sa(dp203273 +g25273 +S'etching' +p203274 +sg25267 +g27 +sg25275 +S'1892' +p203275 +sg25268 +S'The Windmill' +p203276 +sg25270 +S'David Young Cameron' +p203277 +sa(dp203278 +g25273 +S'etching' +p203279 +sg25267 +g27 +sg25275 +S'1892' +p203280 +sg25268 +S'Fisher Folk' +p203281 +sg25270 +S'David Young Cameron' +p203282 +sa(dp203283 +g25268 +S'Monumental Urn' +p203284 +sg25270 +S'Clodion' +p203285 +sg25273 +S'marble' +p203286 +sg25275 +S'1782' +p203287 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00055/a000558b.jpg' +p203288 +sg25267 +g27 +sa(dp203289 +g25273 +S'etching' +p203290 +sg25267 +g27 +sg25275 +S'1892' +p203291 +sg25268 +S'Dutch Interior' +p203292 +sg25270 +S'David Young Cameron' +p203293 +sa(dp203294 +g25273 +S'etching' +p203295 +sg25267 +g27 +sg25275 +S'1892' +p203296 +sg25268 +S'A Lady of Holland' +p203297 +sg25270 +S'David Young Cameron' +p203298 +sa(dp203299 +g25273 +S'etching' +p203300 +sg25267 +g27 +sg25275 +S'1892' +p203301 +sg25268 +S'Tabak en Sigaren' +p203302 +sg25270 +S'David Young Cameron' +p203303 +sa(dp203304 +g25273 +S'etching' +p203305 +sg25267 +g27 +sg25275 +S'1892' +p203306 +sg25268 +S'Waves' +p203307 +sg25270 +S'David Young Cameron' +p203308 +sa(dp203309 +g25273 +S'etching and drypoint' +p203310 +sg25267 +g27 +sg25275 +S'1907' +p203311 +sg25268 +S'The Gateway of Bruges' +p203312 +sg25270 +S'David Young Cameron' +p203313 +sa(dp203314 +g25273 +S'etching and drypoint' +p203315 +sg25267 +g27 +sg25275 +S'1907' +p203316 +sg25268 +S'336 La Roche' +p203317 +sg25270 +S'David Young Cameron' +p203318 +sa(dp203319 +g25273 +S'etching and drypoint' +p203320 +sg25267 +g27 +sg25275 +S'1907' +p203321 +sg25268 +S'La Maison Noire, Bruges' +p203322 +sg25270 +S'David Young Cameron' +p203323 +sa(dp203324 +g25273 +S'etching and drypoint' +p203325 +sg25267 +g27 +sg25275 +S'1907' +p203326 +sg25268 +S'The Meuse' +p203327 +sg25270 +S'David Young Cameron' +p203328 +sa(dp203329 +g25273 +S'etching and drypoint' +p203330 +sg25267 +g27 +sg25275 +S'1907' +p203331 +sg25268 +S'Damme' +p203332 +sg25270 +S'David Young Cameron' +p203333 +sa(dp203334 +g25273 +S'etching and drypoint' +p203335 +sg25267 +g27 +sg25275 +S'1907' +p203336 +sg25268 +S'The Belfry of Bruges' +p203337 +sg25270 +S'David Young Cameron' +p203338 +sa(dp203339 +g25268 +S'Virtus Combusta: An Allegory of Virtue' +p203340 +sg25270 +S'Artist Information (' +p203341 +sg25273 +S'Italian, c. 1431 - 1506' +p203342 +sg25275 +S'(related artist)' +p203343 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7a9.jpg' +p203344 +sg25267 +g27 +sa(dp203345 +g25273 +S'etching and drypoint' +p203346 +sg25267 +g27 +sg25275 +S'1907' +p203347 +sg25268 +S'Old La Roche' +p203348 +sg25270 +S'David Young Cameron' +p203349 +sa(dp203350 +g25273 +S'etching and drypoint' +p203351 +sg25267 +g27 +sg25275 +S'1907' +p203352 +sg25268 +S'Notre Dame, Dinant' +p203353 +sg25270 +S'David Young Cameron' +p203354 +sa(dp203355 +g25273 +S'etching and drypoint' +p203356 +sg25267 +g27 +sg25275 +S'1907' +p203357 +sg25268 +S'Dinant' +p203358 +sg25270 +S'David Young Cameron' +p203359 +sa(dp203360 +g25273 +S'etching and drypoint' +p203361 +sg25267 +g27 +sg25275 +S'1907' +p203362 +sg25268 +S'A Valley of the Ardennes' +p203363 +sg25270 +S'David Young Cameron' +p203364 +sa(dp203365 +g25273 +S'etching and drypoint' +p203366 +sg25267 +g27 +sg25275 +S'1899' +p203367 +sg25268 +S'Custom House' +p203368 +sg25270 +S'David Young Cameron' +p203369 +sa(dp203370 +g25273 +S'etching and drypoint' +p203371 +sg25267 +g27 +sg25275 +S'1899' +p203372 +sg25268 +S'Waterloo Place' +p203373 +sg25270 +S'David Young Cameron' +p203374 +sa(dp203375 +g25273 +S'etching and drypoint' +p203376 +sg25267 +g27 +sg25275 +S'1899' +p203377 +sg25268 +S'The Tower' +p203378 +sg25270 +S'David Young Cameron' +p203379 +sa(dp203380 +g25273 +S'etching' +p203381 +sg25267 +g27 +sg25275 +S'1899' +p203382 +sg25268 +S'The Horse Guards' +p203383 +sg25270 +S'David Young Cameron' +p203384 +sa(dp203385 +g25273 +S'etching' +p203386 +sg25267 +g27 +sg25275 +S'1899' +p203387 +sg25268 +S'The Admiralty' +p203388 +sg25270 +S'David Young Cameron' +p203389 +sa(dp203390 +g25273 +S'etching' +p203391 +sg25267 +g27 +sg25275 +S'1899' +p203392 +sg25268 +S'Downing Street' +p203393 +sg25270 +S'David Young Cameron' +p203394 +sa(dp203395 +g25268 +S'Henry, Duke of Gloucester' +p203396 +sg25270 +S'Adriaen Hanneman' +p203397 +sg25273 +S'oil on canvas' +p203398 +sg25275 +S'c. 1653' +p203399 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002af7.jpg' +p203400 +sg25267 +g27 +sa(dp203401 +g25268 +S'Talia (Thalia)' +p203402 +sg25270 +S'Master of the E-Series Tarocchi' +p203403 +sg25273 +S'engraving with traces of gilding' +p203404 +sg25275 +S'c. 1465' +p203405 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6de.jpg' +p203406 +sg25267 +g27 +sa(dp203407 +g25273 +S'etching' +p203408 +sg25267 +g27 +sg25275 +S'1899' +p203409 +sg25268 +S'Waterloo Bridge, No. 2' +p203410 +sg25270 +S'David Young Cameron' +p203411 +sa(dp203412 +g25273 +S'etching' +p203413 +sg25267 +g27 +sg25275 +S'1899' +p203414 +sg25268 +S"Queen Anne's Gate" +p203415 +sg25270 +S'David Young Cameron' +p203416 +sa(dp203417 +g25273 +S'etching and drypoint' +p203418 +sg25267 +g27 +sg25275 +S'1899' +p203419 +sg25268 +S"Henry the Seventh's Chapel" +p203420 +sg25270 +S'David Young Cameron' +p203421 +sa(dp203422 +g25273 +S'etching and drypoint' +p203423 +sg25267 +g27 +sg25275 +S'1899' +p203424 +sg25268 +S"St. Paul's from the Thames" +p203425 +sg25270 +S'David Young Cameron' +p203426 +sa(dp203427 +g25273 +S'etching' +p203428 +sg25267 +g27 +sg25275 +S'1899' +p203429 +sg25268 +S'Newgate' +p203430 +sg25270 +S'David Young Cameron' +p203431 +sa(dp203432 +g25273 +S'etching' +p203433 +sg25267 +g27 +sg25275 +S'1899' +p203434 +sg25268 +S"St. George's, Hanover Square" +p203435 +sg25270 +S'David Young Cameron' +p203436 +sa(dp203437 +g25273 +S'etching' +p203438 +sg25267 +g27 +sg25275 +S'1889' +p203439 +sg25268 +S'The Source of the Clyde' +p203440 +sg25270 +S'David Young Cameron' +p203441 +sa(dp203442 +g25273 +S'etching' +p203443 +sg25267 +g27 +sg25275 +S'1889' +p203444 +sg25268 +S'Upper Clyde Valley' +p203445 +sg25270 +S'David Young Cameron' +p203446 +sa(dp203447 +g25273 +S'etching' +p203448 +sg25267 +g27 +sg25275 +S'1889' +p203449 +sg25268 +S'The Clyde at Symington' +p203450 +sg25270 +S'David Young Cameron' +p203451 +sa(dp203452 +g25273 +S'etching' +p203453 +sg25267 +g27 +sg25275 +S'1889' +p203454 +sg25268 +S'Tillietudlem' +p203455 +sg25270 +S'David Young Cameron' +p203456 +sa(dp203457 +g25268 +S'Apollo' +p203458 +sg25270 +S'Master of the E-Series Tarocchi' +p203459 +sg25273 +S'engraving with gilding' +p203460 +sg25275 +S'c. 1465' +p203461 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6e4.jpg' +p203462 +sg25267 +g27 +sa(dp203463 +g25273 +S'etching' +p203464 +sg25267 +g27 +sg25275 +S'1889' +p203465 +sg25268 +S'Bothwell' +p203466 +sg25270 +S'David Young Cameron' +p203467 +sa(dp203468 +g25273 +S'etching' +p203469 +sg25267 +g27 +sg25275 +S'1889' +p203470 +sg25268 +S'Albert, Railway, and Victoria Bridges' +p203471 +sg25270 +S'David Young Cameron' +p203472 +sa(dp203473 +g25273 +S'etching' +p203474 +sg25267 +g27 +sg25275 +S'1889' +p203475 +sg25268 +S'Glasgow Cathedral' +p203476 +sg25270 +S'David Young Cameron' +p203477 +sa(dp203478 +g25273 +S'etching' +p203479 +sg25267 +g27 +sg25275 +S'1889' +p203480 +sg25268 +S'Glasgow Harbor' +p203481 +sg25270 +S'David Young Cameron' +p203482 +sa(dp203483 +g25273 +S'etching' +p203484 +sg25267 +g27 +sg25275 +S'1889' +p203485 +sg25268 +S'Broomielaw and Railway Bridges' +p203486 +sg25270 +S'David Young Cameron' +p203487 +sa(dp203488 +g25273 +S'etching' +p203489 +sg25267 +g27 +sg25275 +S'1889' +p203490 +sg25268 +S'The Clyde at Govan' +p203491 +sg25270 +S'David Young Cameron' +p203492 +sa(dp203493 +g25273 +S'etching' +p203494 +sg25267 +g27 +sg25275 +S'1889' +p203495 +sg25268 +S'Dumbarton' +p203496 +sg25270 +S'David Young Cameron' +p203497 +sa(dp203498 +g25273 +S'etching' +p203499 +sg25267 +g27 +sg25275 +S'1889' +p203500 +sg25268 +S'Clyde at Cardross' +p203501 +sg25270 +S'David Young Cameron' +p203502 +sa(dp203503 +g25273 +S'etching' +p203504 +sg25267 +g27 +sg25275 +S'1889' +p203505 +sg25268 +S'Greenock, No. I' +p203506 +sg25270 +S'David Young Cameron' +p203507 +sa(dp203508 +g25273 +S'etching' +p203509 +sg25267 +g27 +sg25275 +S'1889' +p203510 +sg25268 +S'Arran' +p203511 +sg25270 +S'David Young Cameron' +p203512 +sa(dp203513 +g25268 +S'Apollo and Diana' +p203514 +sg25270 +S"Jacopo de' Barbari" +p203515 +sg25273 +S'engraving' +p203516 +sg25275 +S'c. 1503' +p203517 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c79c.jpg' +p203518 +sg25267 +g27 +sa(dp203519 +g25273 +S'etching' +p203520 +sg25267 +g27 +sg25275 +S'1889' +p203521 +sg25268 +S'Loch Ranza' +p203522 +sg25270 +S'David Young Cameron' +p203523 +sa(dp203524 +g25273 +S'etching' +p203525 +sg25267 +g27 +sg25275 +S'1889' +p203526 +sg25268 +S'Sound of Kilbrannan and Entrance to Loch Fyne' +p203527 +sg25270 +S'David Young Cameron' +p203528 +sa(dp203529 +g25273 +S'etching' +p203530 +sg25267 +g27 +sg25275 +S'1889' +p203531 +sg25268 +S'Ardrossan' +p203532 +sg25270 +S'David Young Cameron' +p203533 +sa(dp203534 +g25273 +S'etching' +p203535 +sg25267 +g27 +sg25275 +S'1889' +p203536 +sg25268 +S'Ayr' +p203537 +sg25270 +S'David Young Cameron' +p203538 +sa(dp203539 +g25273 +S'etching' +p203540 +sg25267 +g27 +sg25275 +S'1889' +p203541 +sg25268 +S'Culzean Castle' +p203542 +sg25270 +S'David Young Cameron' +p203543 +sa(dp203544 +g25273 +S'etching' +p203545 +sg25267 +g27 +sg25275 +S'1889' +p203546 +sg25268 +S'Ailsa' +p203547 +sg25270 +S'David Young Cameron' +p203548 +sa(dp203549 +g25273 +S'etching' +p203550 +sg25267 +g27 +sg25275 +S'1894/1910' +p203551 +sg25268 +S'Upper Green, Charterhouse' +p203552 +sg25270 +S'David Young Cameron' +p203553 +sa(dp203554 +g25273 +S'portfolio with four etchings and text by E.P. Eardley Wilmot and E.C. Streatfield' +p203555 +sg25267 +g27 +sg25275 +S'published 1910' +p203556 +sg25268 +S'Wilmot and Streatfield\'s "Charterhouse Old and New"' +p203557 +sg25270 +S'David Young Cameron' +p203558 +sa(dp203559 +g25273 +S'etching' +p203560 +sg25267 +g27 +sg25275 +S'1894/1910' +p203561 +sg25268 +S"The Chapel and Founder's Tomb, Charterhouse" +p203562 +sg25270 +S'David Young Cameron' +p203563 +sa(dp203564 +g25273 +S'etching' +p203565 +sg25267 +g27 +sg25275 +S'1894/1910' +p203566 +sg25268 +S'Charterhouse Schools, Godalming' +p203567 +sg25270 +S'David Young Cameron' +p203568 +sa(dp203569 +g25268 +S'Bacchanal with a Wine Vat' +p203570 +sg25270 +S'Andrea Mantegna' +p203571 +sg25273 +S'engraving' +p203572 +sg25275 +S'c. 1475' +p203573 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7c9.jpg' +p203574 +sg25267 +g27 +sa(dp203575 +g25273 +S'etching' +p203576 +sg25267 +g27 +sg25275 +S'1894/1910' +p203577 +sg25268 +S'The Towers of Charterhouse, Godalming' +p203578 +sg25270 +S'David Young Cameron' +p203579 +sa(dp203580 +g25273 +S'etching' +p203581 +sg25267 +g27 +sg25275 +S'1889' +p203582 +sg25268 +S'Bishop Street, Anderston' +p203583 +sg25270 +S'David Young Cameron' +p203584 +sa(dp203585 +g25273 +S'etching' +p203586 +sg25267 +g27 +sg25275 +S'1889' +p203587 +sg25268 +S'Trongate (Glasgow), Nos. 23-29' +p203588 +sg25270 +S'David Young Cameron' +p203589 +sa(dp203590 +g25273 +S'etching' +p203591 +sg25267 +g27 +sg25275 +S'1890' +p203592 +sg25268 +S'Old Bridge Inn, Partick, No.2' +p203593 +sg25270 +S'David Young Cameron' +p203594 +sa(dp203595 +g25273 +S'etching' +p203596 +sg25267 +g27 +sg25275 +S'1891' +p203597 +sg25268 +S'Tontine Building (Glasgow)' +p203598 +sg25270 +S'David Young Cameron' +p203599 +sa(dp203600 +g25273 +S'etching' +p203601 +sg25267 +g27 +sg25275 +S'1891' +p203602 +sg25268 +S'Sugar Sample Room (Glasgow)' +p203603 +sg25270 +S'David Young Cameron' +p203604 +sa(dp203605 +g25273 +S'etching' +p203606 +sg25267 +g27 +sg25275 +S'1891' +p203607 +sg25268 +S"Granny Gibb's Cottage, Partick, No.2" +p203608 +sg25270 +S'David Young Cameron' +p203609 +sa(dp203610 +g25273 +S'etching' +p203611 +sg25267 +g27 +sg25275 +S'1891' +p203612 +sg25268 +S'Old Balshagray' +p203613 +sg25270 +S'David Young Cameron' +p203614 +sa(dp203615 +g25273 +S'etching' +p203616 +sg25267 +g27 +sg25275 +S'1891' +p203617 +sg25268 +S"St. Enoch's Square, No.22 (Glasgow)" +p203618 +sg25270 +S'David Young Cameron' +p203619 +sa(dp203620 +g25273 +S'etching' +p203621 +sg25267 +g27 +sg25275 +S'1891' +p203622 +sg25268 +S'Dunlop Mansion, Argyll Street (Glasgow)' +p203623 +sg25270 +S'David Young Cameron' +p203624 +sa(dp203625 +g25268 +S'Battle of the Sea Gods [left half]' +p203626 +sg25270 +S'Andrea Mantegna' +p203627 +sg25273 +S'engraving' +p203628 +sg25275 +S'c. 1485/1488' +p203629 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7a5.jpg' +p203630 +sg25267 +g27 +sa(dp203631 +g25273 +S'etching' +p203632 +sg25267 +g27 +sg25275 +S'1891' +p203633 +sg25268 +S'Wellfield House, Anderston' +p203634 +sg25270 +S'David Young Cameron' +p203635 +sa(dp203636 +g25273 +S'etching' +p203637 +sg25267 +g27 +sg25275 +S'1891' +p203638 +sg25268 +S'Old Houses on South-Side of Rottenrow (Glasgow)' +p203639 +sg25270 +S'David Young Cameron' +p203640 +sa(dp203641 +g25273 +S'etching' +p203642 +sg25267 +g27 +sg25275 +S'1891' +p203643 +sg25268 +S'Corner of Rotten Row and Taylor Street (Glascow)' +p203644 +sg25270 +S'David Young Cameron' +p203645 +sa(dp203646 +g25273 +S'etching' +p203647 +sg25267 +g27 +sg25275 +S'1894' +p203648 +sg25268 +S'Holmfauldhead House, Govan' +p203649 +sg25270 +S'David Young Cameron' +p203650 +sa(dp203651 +g25273 +S'etching' +p203652 +sg25267 +g27 +sg25275 +S'1894' +p203653 +sg25268 +S'Old Houses, Byres Road, Partick' +p203654 +sg25270 +S'David Young Cameron' +p203655 +sa(dp203656 +g25273 +S'etching' +p203657 +sg25267 +g27 +sg25275 +S'1895' +p203658 +sg25268 +S'North Woodside, Flint Mills' +p203659 +sg25270 +S'David Young Cameron' +p203660 +sa(dp203661 +g25273 +S'etching' +p203662 +sg25267 +g27 +sg25275 +S'1895' +p203663 +sg25268 +S'Old Houses, Govan Ferry' +p203664 +sg25270 +S'David Young Cameron' +p203665 +sa(dp203666 +g25273 +S'etching' +p203667 +sg25267 +g27 +sg25275 +S'1895' +p203668 +sg25268 +S"St. Enoch's Church, Glasgow" +p203669 +sg25270 +S'David Young Cameron' +p203670 +sa(dp203671 +g25273 +S'etching' +p203672 +sg25267 +g27 +sg25275 +S'1895' +p203673 +sg25268 +S"The Apse, St. Enoch's Church, Glasgow" +p203674 +sg25270 +S'David Young Cameron' +p203675 +sa(dp203676 +g25273 +S'etching' +p203677 +sg25267 +g27 +sg25275 +S'1895' +p203678 +sg25268 +S'House, Nos.26-32 Buchanan Street, Glasgow' +p203679 +sg25270 +S'David Young Cameron' +p203680 +sa(dp203681 +g25268 +S'Battle of the Sea Gods [right half]' +p203682 +sg25270 +S'Andrea Mantegna' +p203683 +sg25273 +S'engraving' +p203684 +sg25275 +S'c. 1485/1488' +p203685 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004a/a0004a47.jpg' +p203686 +sg25267 +g27 +sa(dp203687 +g25273 +S'etching' +p203688 +sg25267 +g27 +sg25275 +S'1900' +p203689 +sg25268 +S'Elphinstone Tower and Chapel (Glasgow)' +p203690 +sg25270 +S'David Young Cameron' +p203691 +sa(dp203692 +g25273 +S'etching' +p203693 +sg25267 +g27 +sg25275 +S'1900' +p203694 +sg25268 +S'Old House, Nos.174-6-8 Main Street, Gorbals' +p203695 +sg25270 +S'David Young Cameron' +p203696 +sa(dp203697 +g25273 +S'etching' +p203698 +sg25267 +g27 +sg25275 +S'1901' +p203699 +sg25268 +S"David Dale's House, Charlotte Street (Glasgow)" +p203700 +sg25270 +S'David Young Cameron' +p203701 +sa(dp203702 +g25273 +S'etching' +p203703 +sg25267 +g27 +sg25275 +S'1893' +p203704 +sg25268 +S'Provanhall' +p203705 +sg25270 +S'David Young Cameron' +p203706 +sa(dp203707 +g25268 +S'The Assumption of the Virgin' +p203708 +sg25270 +S'Domenico Campagnola' +p203709 +sg25273 +S'engraving' +p203710 +sg25275 +S'1517' +p203711 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caa6.jpg' +p203712 +sg25267 +g27 +sa(dp203713 +g25268 +S'The Descent of the Holy Spirit' +p203714 +sg25270 +S'Domenico Campagnola' +p203715 +sg25273 +S'engraving' +p203716 +sg25275 +S'1518' +p203717 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c88a.jpg' +p203718 +sg25267 +g27 +sa(dp203719 +g25268 +S'The Descent of the Holy Spirit' +p203720 +sg25270 +S'Domenico Campagnola' +p203721 +sg25273 +S'engraving' +p203722 +sg25275 +S'1518' +p203723 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c889.jpg' +p203724 +sg25267 +g27 +sa(dp203725 +g25268 +S'Beheading of Saint Catherine' +p203726 +sg25270 +S'Domenico Campagnola' +p203727 +sg25273 +S'engraving' +p203728 +sg25275 +S'1517' +p203729 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c888.jpg' +p203730 +sg25267 +g27 +sa(dp203731 +g25268 +S'Battle of Nude Men' +p203732 +sg25270 +S'Domenico Campagnola' +p203733 +sg25273 +S'engraving' +p203734 +sg25275 +S'1517' +p203735 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caa5.jpg' +p203736 +sg25267 +g27 +sa(dp203737 +g25268 +S'Shepherds in a Landscape' +p203738 +sg25270 +S'Artist Information (' +p203739 +sg25273 +S'(artist)' +p203740 +sg25275 +S'\n' +p203741 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c88b.jpg' +p203742 +sg25267 +g27 +sa(dp203743 +g25268 +S'Descent into Limbo' +p203744 +sg25270 +S'Artist Information (' +p203745 +sg25273 +S'(artist)' +p203746 +sg25275 +S'\n' +p203747 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7c6.jpg' +p203748 +sg25267 +g27 +sa(dp203749 +g25268 +S'The Virgin and Child with Saints' +p203750 +sg25270 +S'Domenico Campagnola' +p203751 +sg25273 +S'engraving' +p203752 +sg25275 +S'1517' +p203753 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c884.jpg' +p203754 +sg25267 +g27 +sa(dp203755 +g25268 +S'The Shepherd and the Old Warrior' +p203756 +sg25270 +S'Domenico Campagnola' +p203757 +sg25273 +S'engraving in red-brown ink' +p203758 +sg25275 +S'1517' +p203759 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c883.jpg' +p203760 +sg25267 +g27 +sa(dp203761 +g25268 +S'Venus Reclining in a Landscape' +p203762 +sg25270 +S'Domenico Campagnola' +p203763 +sg25273 +S'engraving' +p203764 +sg25275 +S'1517' +p203765 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c886.jpg' +p203766 +sg25267 +g27 +sa(dp203767 +g25268 +S'Lamentation of Christ' +p203768 +sg25270 +S'Domenico Campagnola' +p203769 +sg25273 +S'woodcut' +p203770 +sg25275 +S'1517' +p203771 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caa4.jpg' +p203772 +sg25267 +g27 +sa(dp203773 +g25273 +S'etching on laid paper' +p203774 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203775 +sg25268 +S'Title Plate' +p203776 +sg25270 +S'Canaletto' +p203777 +sa(dp203778 +g25273 +S'1 vol: original contents: 30 prints on 18 sheets; as of 9/3/86 one print (1943.3.2718) removed from volume and matted' +p203779 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203780 +sg25268 +S'Vedute di Venezia' +p203781 +sg25270 +S'Canaletto' +p203782 +sa(dp203783 +g25273 +S'etching on laid paper' +p203784 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203785 +sg25268 +S'La Torre di Malghera' +p203786 +sg25270 +S'Canaletto' +p203787 +sa(dp203788 +g25273 +S'etching on laid paper' +p203789 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203790 +sg25268 +S'S. Giustina in pra della Vale' +p203791 +sg25270 +S'Canaletto' +p203792 +sa(dp203793 +g25273 +S'etching on laid paper' +p203794 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203795 +sg25268 +S'Pra della Valle' +p203796 +sg25270 +S'Canaletto' +p203797 +sa(dp203798 +g25273 +S'etching on laid paper' +p203799 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203800 +sg25268 +S"The Bishop's Tomb [left]" +p203801 +sg25270 +S'Canaletto' +p203802 +sa(dp203803 +g25268 +S'Hercules and Antaeus' +p203804 +sg25270 +S'Artist Information (' +p203805 +sg25273 +S'Italian, c. 1431 - 1506' +p203806 +sg25275 +S'(related artist)' +p203807 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a00067f4.jpg' +p203808 +sg25267 +g27 +sa(dp203809 +g25273 +S'etching on laid paper' +p203810 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203811 +sg25268 +S'The Little Monument [upper right]' +p203812 +sg25270 +S'Canaletto' +p203813 +sa(dp203814 +g25273 +S'etching on laid paper' +p203815 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203816 +sg25268 +S'The Wagon Passing Over a Bridge [lower right]' +p203817 +sg25270 +S'Canaletto' +p203818 +sa(dp203819 +g25273 +S'etching on laid paper' +p203820 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203821 +sg25268 +S'Ale Porte del Dolo' +p203822 +sg25270 +S'Canaletto' +p203823 +sa(dp203824 +g25273 +S'etching on laid paper' +p203825 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203826 +sg25268 +S'View of a Town on a River Bank' +p203827 +sg25270 +S'Canaletto' +p203828 +sa(dp203829 +g25273 +S'etching on laid paper' +p203830 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203831 +sg25268 +S'Mestre' +p203832 +sg25270 +S'Canaletto' +p203833 +sa(dp203834 +g25273 +S'etching on laid paper' +p203835 +sg25267 +g27 +sg25275 +S'in or before 1742' +p203836 +sg25268 +S'La libreria. V. [upper left]' +p203837 +sg25270 +S'Canaletto' +p203838 +sa(dp203839 +g25273 +S'etching on laid paper' +p203840 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203841 +sg25268 +S'The Market on the Molo [upper right]' +p203842 +sg25270 +S'Canaletto' +p203843 +sa(dp203844 +g25273 +S'etching on laid paper' +p203845 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203846 +sg25268 +S'La Piera del Bando. V. [lower left]' +p203847 +sg25270 +S'Canaletto' +p203848 +sa(dp203849 +g25273 +S'etching on laid paper' +p203850 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203851 +sg25268 +S'Le Preson. V. [lower right]' +p203852 +sg25270 +S'Canaletto' +p203853 +sa(dp203854 +g25273 +S'etching on laid paper' +p203855 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203856 +sg25268 +S'Mountain Landscape with Five Bridges [upper left]' +p203857 +sg25270 +S'Canaletto' +p203858 +sa(dp203859 +g25268 +S'Four Women Dancing' +p203860 +sg25270 +S'Artist Information (' +p203861 +sg25273 +S'(artist)' +p203862 +sg25275 +S'\n' +p203863 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7ac.jpg' +p203864 +sg25267 +g27 +sa(dp203865 +g25273 +S'etching on laid paper' +p203866 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203867 +sg25268 +S'The Terrace [upper right]' +p203868 +sg25270 +S'Canaletto' +p203869 +sa(dp203870 +g25273 +S'etching on laid paper' +p203871 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203872 +sg25268 +S'The Equestrian Monument [lower left]' +p203873 +sg25270 +S'Canaletto' +p203874 +sa(dp203875 +g25273 +S'etching on laid paper' +p203876 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203877 +sg25268 +S'Le Procuratie niove e S. Ziminian V. [lower right]' +p203878 +sg25270 +S'Canaletto' +p203879 +sa(dp203880 +g25273 +S'etching on laid paper' +p203881 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203882 +sg25268 +S'Imaginary View of Padua' +p203883 +sg25270 +S'Canaletto' +p203884 +sa(dp203885 +g25273 +S'etching on laid paper' +p203886 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203887 +sg25268 +S'Imaginary View of S. Giacomo di Rialto [left]' +p203888 +sg25270 +S'Canaletto' +p203889 +sa(dp203890 +g25273 +S'etching on laid paper' +p203891 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203892 +sg25268 +S'Landscape with Ruined Monuments [right]' +p203893 +sg25270 +S'Canaletto' +p203894 +sa(dp203895 +g25273 +S'etching (2 prints on separate sheets joined to appear as one composition)' +p203896 +sg25267 +g27 +sg25275 +S'1741' +p203897 +sg25268 +S'The House with the Inscription; The House with the Peristyle' +p203898 +sg25270 +S'Canaletto' +p203899 +sa(dp203900 +g25273 +S'etching on laid paper' +p203901 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203902 +sg25268 +S"View of a Town with a Bishop's Tomb" +p203903 +sg25270 +S'Canaletto' +p203904 +sa(dp203905 +g25273 +S'etching on laid paper' +p203906 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203907 +sg25268 +S'Al Dolo' +p203908 +sg25270 +S'Canaletto' +p203909 +sa(dp203910 +g25273 +S'etching on laid paper' +p203911 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203912 +sg25268 +S'The Portico with the Lantern' +p203913 +sg25270 +S'Canaletto' +p203914 +sa(dp203915 +g25268 +S'Allegorical Theme: Combat of Animals' +p203916 +sg25270 +S'Master of the Beheading of St. John the Baptist' +p203917 +sg25273 +S'engraving' +p203918 +sg25275 +S'c. 1515/1520' +p203919 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c830.jpg' +p203920 +sg25267 +g27 +sa(dp203921 +g25273 +S'etching on laid paper' +p203922 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203923 +sg25268 +S'Le Porte Del Dolo' +p203924 +sg25270 +S'Canaletto' +p203925 +sa(dp203926 +g25273 +S'etching on laid paper' +p203927 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203928 +sg25268 +S'The Market at Dolo [upper left]' +p203929 +sg25270 +S'Canaletto' +p203930 +sa(dp203931 +g25273 +S'etching on laid paper' +p203932 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203933 +sg25268 +S'Landscape with Tower and Two Ruined Pillars [upper right]' +p203934 +sg25270 +S'Canaletto' +p203935 +sa(dp203936 +g25273 +S'etching on laid paper' +p203937 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203938 +sg25268 +S'Landscape with the Pilgrim at Prayer [lower left]' +p203939 +sg25270 +S'Canaletto' +p203940 +sa(dp203941 +g25273 +S'etching on laid paper' +p203942 +sg25267 +g27 +sg25275 +S'c. 1735/1746' +p203943 +sg25268 +S'Landscape with a Woman at a Well [lower right]' +p203944 +sg25270 +S'Canaletto' +p203945 +sa(dp203946 +g25268 +S'The Circumcision' +p203947 +sg25270 +S'Artist Information (' +p203948 +sg25273 +S'German, active c. 1523/1530' +p203949 +sg25275 +S'(artist after)' +p203950 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acf7.jpg' +p203951 +sg25267 +g27 +sa(dp203952 +g25268 +S'Christ Stilling the Storm' +p203953 +sg25270 +S'Artist Information (' +p203954 +sg25273 +S'German, active c. 1523/1530' +p203955 +sg25275 +S'(artist after)' +p203956 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acf8.jpg' +p203957 +sg25267 +g27 +sa(dp203958 +g25268 +S'Christ Consoling the Centurion' +p203959 +sg25270 +S'Artist Information (' +p203960 +sg25273 +S'German, active c. 1523/1530' +p203961 +sg25275 +S'(artist after)' +p203962 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acf9.jpg' +p203963 +sg25267 +g27 +sa(dp203964 +g25268 +S'The Adoration of the Magi' +p203965 +sg25270 +S'Artist Information (' +p203966 +sg25273 +S'German, active c. 1523/1530' +p203967 +sg25275 +S'(artist after)' +p203968 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acfa.jpg' +p203969 +sg25267 +g27 +sa(dp203970 +g25268 +S'Christ with Three of His Apostles' +p203971 +sg25270 +S'Artist Information (' +p203972 +sg25273 +S'German, active c. 1523/1530' +p203973 +sg25275 +S'(artist after)' +p203974 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acfc.jpg' +p203975 +sg25267 +g27 +sa(dp203976 +g25268 +S'Portrait of a Gentleman' +p203977 +sg25270 +S'Antonis Mor' +p203978 +sg25273 +S'oil on canvas' +p203979 +sg25275 +S'1569' +p203980 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005ba.jpg' +p203981 +sg25267 +S'Although the identity of the sitter is unknown his elegant dress and bearing\nsuggest that he was an individual of wealth and distinction. The inclusion of a\nhunting dog was quite common in portraits of aristocrats, and the gold chains are\na usual sign of honor. The suggestion of a military identification is enhanced\nby the gesture of his hand fisted at his waist, and the standing, three-quarter-length\npose was generally used by Mor in his paintings of aristocrats as opposed to the\nmore informal poses he used in his likenesses of middle-class subjects.\n The most likely precedent for this painting is the \n The deft handling of paint and the astute psychological presentation clearly demonstrate\nwhy Mor was such a sought-after portraitist during the sixteenth century, anticipating\nthe achievements of the great portraitist of the aristocracy in the following century,\nAnthony van Dyck.\n ' +p203982 +sa(dp203983 +g25268 +S'Two Children Wearing Helmets' +p203984 +sg25270 +S'Artist Information (' +p203985 +sg25273 +S'(artist)' +p203986 +sg25275 +S'\n' +p203987 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7c2.jpg' +p203988 +sg25267 +g27 +sa(dp203989 +g25268 +S'Jesus Preaching in the Temple' +p203990 +sg25270 +S'Artist Information (' +p203991 +sg25273 +S'German, active c. 1523/1530' +p203992 +sg25275 +S'(artist after)' +p203993 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acfb.jpg' +p203994 +sg25267 +g27 +sa(dp203995 +g25268 +S'The Triumph of Love' +p203996 +sg25270 +S'Georg Pencz' +p203997 +sg25273 +S'engraving' +p203998 +sg25275 +S'unknown date\n' +p203999 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad67.jpg' +p204000 +sg25267 +g27 +sa(dp204001 +g25268 +S'The Triumph of Chastity' +p204002 +sg25270 +S'Georg Pencz' +p204003 +sg25273 +S'engraving' +p204004 +sg25275 +S'unknown date\n' +p204005 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad6c.jpg' +p204006 +sg25267 +g27 +sa(dp204007 +g25268 +S'The Triumph of Fame' +p204008 +sg25270 +S'Georg Pencz' +p204009 +sg25273 +S'engraving' +p204010 +sg25275 +S'unknown date\n' +p204011 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad6b.jpg' +p204012 +sg25267 +g27 +sa(dp204013 +g25268 +S'The Triumph of Time' +p204014 +sg25270 +S'Georg Pencz' +p204015 +sg25273 +S'engraving' +p204016 +sg25275 +S'unknown date\n' +p204017 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad6a.jpg' +p204018 +sg25267 +g27 +sa(dp204019 +g25268 +S'The Triumph of Death' +p204020 +sg25270 +S'Georg Pencz' +p204021 +sg25273 +S'engraving' +p204022 +sg25275 +S'unknown date\n' +p204023 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad69.jpg' +p204024 +sg25267 +g27 +sa(dp204025 +g25268 +S'The Triumph of Eternity' +p204026 +sg25270 +S'Georg Pencz' +p204027 +sg25273 +S'engraving' +p204028 +sg25275 +S'unknown date\n' +p204029 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad68.jpg' +p204030 +sg25267 +g27 +sa(dp204031 +g25268 +S'Saint Jerome' +p204032 +sg25270 +S'Giulio Carpioni' +p204033 +sg25273 +S'etching' +p204034 +sg25275 +S'unknown date\n' +p204035 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c960.jpg' +p204036 +sg25267 +g27 +sa(dp204037 +g25268 +S'Sleep' +p204038 +sg25270 +S'Eug\xc3\xa8ne Carri\xc3\xa8re' +p204039 +sg25273 +S'lithograph' +p204040 +sg25275 +S'1897' +p204041 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f97.jpg' +p204042 +sg25267 +g27 +sa(dp204043 +g25268 +S'Paul Verlaine' +p204044 +sg25270 +S'Eug\xc3\xa8ne Carri\xc3\xa8re' +p204045 +sg25273 +S'lithograph' +p204046 +sg25275 +S'unknown date\n' +p204047 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f12.jpg' +p204048 +sg25267 +g27 +sa(dp204049 +g25268 +S'Nereid Ridden by Two Children' +p204050 +sg25270 +S'Artist Information (' +p204051 +sg25273 +S'(artist)' +p204052 +sg25275 +S'\n' +p204053 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7c1.jpg' +p204054 +sg25267 +g27 +sa(dp204055 +g25268 +S'The Bath' +p204056 +sg25270 +S'Mary Cassatt' +p204057 +sg25273 +S'drypoint and soft-ground etching in black, yellow, and blue' +p204058 +sg25275 +S'c. 1891' +p204059 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a39.jpg' +p204060 +sg25267 +g27 +sa(dp204061 +g25268 +S'The Bath' +p204062 +sg25270 +S'Mary Cassatt' +p204063 +sg25273 +S'drypoint and soft-ground etching' +p204064 +sg25275 +S'c. 1891' +p204065 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa3d.jpg' +p204066 +sg25267 +g27 +sa(dp204067 +g25268 +S'The Bath' +p204068 +sg25270 +S'Mary Cassatt' +p204069 +sg25273 +S'drypoint and soft-ground etching' +p204070 +sg25275 +S'c. 1891' +p204071 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa3e.jpg' +p204072 +sg25267 +g27 +sa(dp204073 +g25268 +S'The Bath' +p204074 +sg25270 +S'Mary Cassatt' +p204075 +sg25273 +S'drypoint and soft-ground etching in black and yellow' +p204076 +sg25275 +S'c. 1891' +p204077 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa3c.jpg' +p204078 +sg25267 +g27 +sa(dp204079 +g25268 +S'The Bath' +p204080 +sg25270 +S'Mary Cassatt' +p204081 +sg25273 +S'drypoint and soft-ground etching in yellow, black, and sanguine' +p204082 +sg25275 +S'c. 1891' +p204083 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa3b.jpg' +p204084 +sg25267 +g27 +sa(dp204085 +g25268 +S'The Bath' +p204086 +sg25270 +S'Mary Cassatt' +p204087 +sg25273 +S'drypoint and soft-ground etching in yellow, black, and sanguine' +p204088 +sg25275 +S'c. 1891' +p204089 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a3a.jpg' +p204090 +sg25267 +g27 +sa(dp204091 +g25268 +S'The Bath' +p204092 +sg25270 +S'Mary Cassatt' +p204093 +sg25273 +S'drypoint and soft-ground etching in yellow, blue, black, and sanguine' +p204094 +sg25275 +S'c. 1891' +p204095 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a3b.jpg' +p204096 +sg25267 +g27 +sa(dp204097 +g25268 +S'Afternoon Tea Party' +p204098 +sg25270 +S'Mary Cassatt' +p204099 +sg25273 +S'drypoint and aquatint in black, gray, and yellow (flesh tones) on wove paper' +p204100 +sg25275 +S'1890/1891' +p204101 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a3c.jpg' +p204102 +sg25267 +g27 +sa(dp204103 +g25268 +S'Afternoon Tea Party' +p204104 +sg25270 +S'Mary Cassatt' +p204105 +sg25273 +S'color drypoint and aquatint on laid paper' +p204106 +sg25275 +S'1890/1891' +p204107 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a3d.jpg' +p204108 +sg25267 +g27 +sa(dp204109 +g25268 +S'Afternoon Tea Party' +p204110 +sg25270 +S'Mary Cassatt' +p204111 +sg25273 +S'color drypoint and aquatint' +p204112 +sg25275 +S'1890/1891' +p204113 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa4a.jpg' +p204114 +sg25267 +g27 +sa(dp204115 +g25268 +S'Virgin and Child Enthroned with Saint Anne' +p204116 +sg25270 +S'Master NA.DAT with the Mousetrap' +p204117 +sg25273 +S'engraving' +p204118 +sg25275 +S'c. 1512/1513' +p204119 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c752.jpg' +p204120 +sg25267 +g27 +sa(dp204121 +g25268 +S'The Coiffure' +p204122 +sg25270 +S'Mary Cassatt' +p204123 +sg25273 +S'drypoint and soft-ground etching in color' +p204124 +sg25275 +S'c. 1891' +p204125 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a3e.jpg' +p204126 +sg25267 +g27 +sa(dp204127 +g25268 +S'Peasant Mother and Child' +p204128 +sg25270 +S'Mary Cassatt' +p204129 +sg25273 +S'drypoint (with color applied by monotype?)' +p204130 +sg25275 +S'c. 1894' +p204131 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a41.jpg' +p204132 +sg25267 +g27 +sa(dp204133 +g25268 +S'Peasant Mother and Child' +p204134 +sg25270 +S'Mary Cassatt' +p204135 +sg25273 +S'drypoint and aquatint in color' +p204136 +sg25275 +S'c. 1894' +p204137 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a42.jpg' +p204138 +sg25267 +g27 +sa(dp204139 +g25268 +S'Peasant Mother and Child' +p204140 +sg25270 +S'Mary Cassatt' +p204141 +sg25273 +S'drypoint and aquatint in color' +p204142 +sg25275 +S'c. 1894' +p204143 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a43.jpg' +p204144 +sg25267 +g27 +sa(dp204145 +g25268 +S'Peasant Mother and Child' +p204146 +sg25270 +S'Mary Cassatt' +p204147 +sg25273 +S'color drypoint and aquatint' +p204148 +sg25275 +S'c. 1894' +p204149 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa92.jpg' +p204150 +sg25267 +g27 +sa(dp204151 +g25268 +S'Peasant Mother and Child' +p204152 +sg25270 +S'Mary Cassatt' +p204153 +sg25273 +S'drypoint and aquatint in color' +p204154 +sg25275 +S'c. 1894' +p204155 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a44.jpg' +p204156 +sg25267 +g27 +sa(dp204157 +g25268 +S"Mother's Kiss" +p204158 +sg25270 +S'Mary Cassatt' +p204159 +sg25273 +S'drypoint' +p204160 +sg25275 +S'c. 1891' +p204161 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa42.jpg' +p204162 +sg25267 +g27 +sa(dp204163 +g25268 +S'In the Omnibus' +p204164 +sg25270 +S'Mary Cassatt' +p204165 +sg25273 +S'soft-ground etching, drypoint, and aquatint in black' +p204166 +sg25275 +S'c. 1891' +p204167 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a45.jpg' +p204168 +sg25267 +g27 +sa(dp204169 +g25268 +S'In the Omnibus' +p204170 +sg25270 +S'Mary Cassatt' +p204171 +sg25273 +S'soft-ground etching, drypoint, and aquatint in blue, brown, tan, light orange, yellow-green, red, and black' +p204172 +sg25275 +S'c. 1891' +p204173 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a46.jpg' +p204174 +sg25267 +g27 +sa(dp204175 +g25268 +S'Gathering Fruit' +p204176 +sg25270 +S'Mary Cassatt' +p204177 +sg25273 +S'drypoint' +p204178 +sg25275 +S'c. 1893' +p204179 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa4c.jpg' +p204180 +sg25267 +g27 +sa(dp204181 +g25268 +S"Satyr's Family" +p204182 +sg25270 +S'Benedetto Montagna' +p204183 +sg25273 +S'engraving' +p204184 +sg25275 +S'c. 1512/1520' +p204185 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c75c.jpg' +p204186 +sg25267 +g27 +sa(dp204187 +g25268 +S'Gathering Fruit' +p204188 +sg25270 +S'Mary Cassatt' +p204189 +sg25273 +S'drypoint' +p204190 +sg25275 +S'c. 1893' +p204191 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa4d.jpg' +p204192 +sg25267 +g27 +sa(dp204193 +g25268 +S'Gathering Fruit' +p204194 +sg25270 +S'Mary Cassatt' +p204195 +sg25273 +S'color drypoint and aquatint on laid paper' +p204196 +sg25275 +S'c. 1893' +p204197 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a47.jpg' +p204198 +sg25267 +g27 +sa(dp204199 +g25268 +S'Gathering Fruit' +p204200 +sg25270 +S'Mary Cassatt' +p204201 +sg25273 +S'drypoint and aquatint in color' +p204202 +sg25275 +S'c. 1893' +p204203 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a48.jpg' +p204204 +sg25267 +S"In 1888 Mary Cassatt was commissioned to create a \n The act of plucking the fruit suggests women's opportunities in the modern world to harvest \n from the tree of knowledge. This was an important element in depicting the role of modern women, \n who, in the late nineteenth century, were able to enjoy for the first time many new opportunities \n for formal education. In sharing the fruit with the baby, the woman symbolically passes knowledge \n from one generation to another.\n " +p204205 +sa(dp204206 +g25268 +S'The Coiffure' +p204207 +sg25270 +S'Mary Cassatt' +p204208 +sg25273 +S'color drypoint and soft-ground etching on cream laid paper' +p204209 +sg25275 +S'c. 1891' +p204210 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a49.jpg' +p204211 +sg25267 +g27 +sa(dp204212 +g25268 +S"Mother's Kiss" +p204213 +sg25270 +S'Mary Cassatt' +p204214 +sg25273 +S'drypoint and soft-ground etching in color' +p204215 +sg25275 +S'c. 1891' +p204216 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a4a.jpg' +p204217 +sg25267 +g27 +sa(dp204218 +g25268 +S'The Bath' +p204219 +sg25270 +S'Mary Cassatt' +p204220 +sg25273 +S'color drypoint, aquatint and soft-ground etching on Japanese vellum' +p204221 +sg25275 +S'1890-1891' +p204222 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a4b.jpg' +p204223 +sg25267 +g27 +sa(dp204224 +g25268 +S'Maternal Caress' +p204225 +sg25270 +S'Mary Cassatt' +p204226 +sg25273 +S'color drypoint, aquatint, and soft-ground etching' +p204227 +sg25275 +S'c. 1891' +p204228 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa44.jpg' +p204229 +sg25267 +g27 +sa(dp204230 +g25268 +S'The Lamp' +p204231 +sg25270 +S'Mary Cassatt' +p204232 +sg25273 +S'color drypoint, aquatint, and soft-ground etching' +p204233 +sg25275 +S'c. 1891' +p204234 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a4c.jpg' +p204235 +sg25267 +S"Mary Cassatt developed this composition without reference to her other works, intending it \n to be executed specifically in the print \n By the third \n Here Cassatt's treatment of a domestic scene showing a single figure is unusual in that \n emphasis is placed on the nape of the neck, a symbol of beauty in Oriental art. Other Japanesque \n elements are the lamp table and the ceramic ornaments, as well as the echoing curves of the \n lampshade, fan, and sofa.\n " +p204236 +sa(dp204237 +g25268 +S'The Letter' +p204238 +sg25270 +S'Mary Cassatt' +p204239 +sg25273 +S'drypoint, soft-ground etching, and aquatint in color' +p204240 +sg25275 +S'c. 1891' +p204241 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a4d.jpg' +p204242 +sg25267 +g27 +sa(dp204243 +g25268 +S'In the Omnibus' +p204244 +sg25270 +S'Mary Cassatt' +p204245 +sg25273 +S'soft-ground etching, drypoint, and aquatint in blue, brown, tan, light orange, green, yellow-green, red, and black' +p204246 +sg25275 +S'c. 1891' +p204247 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a4e.jpg' +p204248 +sg25267 +g27 +sa(dp204249 +g25268 +S'Battle of the Nudes' +p204250 +sg25270 +S'Antonio del Pollaiuolo' +p204251 +sg25273 +S'engraving' +p204252 +sg25275 +S'1470/1475' +p204253 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e31.jpg' +p204254 +sg25267 +g27 +sa(dp204255 +g25268 +S'Quietude' +p204256 +sg25270 +S'Mary Cassatt' +p204257 +sg25273 +S'drypoint' +p204258 +sg25275 +S'c. 1891' +p204259 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa36.jpg' +p204260 +sg25267 +g27 +sa(dp204261 +g25268 +S'Reine and Margot Seated on a Sofa (No. 2)' +p204262 +sg25270 +S'Mary Cassatt' +p204263 +sg25273 +S'drypoint' +p204264 +sg25275 +S'c. 1902' +p204265 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa90.jpg' +p204266 +sg25267 +g27 +sa(dp204267 +g25268 +S'The Crocheting Lesson' +p204268 +sg25270 +S'Mary Cassatt' +p204269 +sg25273 +S'drypoint' +p204270 +sg25275 +S'c. 1902' +p204271 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa91.jpg' +p204272 +sg25267 +g27 +sa(dp204273 +g25268 +S'Repose' +p204274 +sg25270 +S'Mary Cassatt' +p204275 +sg25273 +S'drypoint' +p204276 +sg25275 +S'c. 1890' +p204277 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa37.jpg' +p204278 +sg25267 +g27 +sa(dp204279 +g25268 +S'Margot in a Floppy Bonnet Leaning against a Chair' +p204280 +sg25270 +S'Mary Cassatt' +p204281 +sg25273 +S'drypoint' +p204282 +sg25275 +S'c. 1902' +p204283 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa97.jpg' +p204284 +sg25267 +g27 +sa(dp204285 +g25273 +S'lithograph' +p204286 +sg25267 +g27 +sg25275 +S'unknown date\n' +p204287 +sg25268 +S'By the Arks' +p204288 +sg25270 +S'Federico Castell\xc3\xb3n' +p204289 +sa(dp204290 +g25268 +S'The Bathers (Large Plate)' +p204291 +sg25270 +S'Paul C\xc3\xa9zanne' +p204292 +sg25273 +S'lithograph' +p204293 +sg25275 +S'unknown date\n' +p204294 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f13.jpg' +p204295 +sg25267 +g27 +sa(dp204296 +g25268 +S'The Bathers (Small Plate)' +p204297 +sg25270 +S'Paul C\xc3\xa9zanne' +p204298 +sg25273 +S'colored lithograph' +p204299 +sg25275 +S'1897' +p204300 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a000917d.jpg' +p204301 +sg25267 +g27 +sa(dp204302 +g25273 +S'drypoint on wove paper' +p204303 +sg25267 +g27 +sg25275 +S'1935' +p204304 +sg25268 +S'Quimper' +p204305 +sg25270 +S'Samuel Chamberlain' +p204306 +sa(dp204307 +g25273 +S'drypoint in dark brown on yellow laid paper' +p204308 +sg25267 +g27 +sg25275 +S'1930' +p204309 +sg25268 +S'Early Morning Market, Senlis' +p204310 +sg25270 +S'Samuel Chamberlain' +p204311 +sa(dp204312 +g25268 +S'Fate of an Evil Tongue' +p204313 +sg25270 +S'Nicoletto da Modena' +p204314 +sg25273 +S'engraving' +p204315 +sg25275 +S'c. 1507' +p204316 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c84f.jpg' +p204317 +sg25267 +g27 +sa(dp204318 +g25273 +S'lithograph' +p204319 +sg25267 +g27 +sg25275 +S'unknown date\n' +p204320 +sg25268 +S'Christmas Print' +p204321 +sg25270 +S'Francis Chapin' +p204322 +sa(dp204323 +g25268 +S'Jean Baptiste Simeon Chardin' +p204324 +sg25270 +S'Artist Information (' +p204325 +sg25273 +S'(artist after)' +p204326 +sg25275 +S'\n' +p204327 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f56.jpg' +p204328 +sg25267 +g27 +sa(dp204329 +g25268 +S'The Blind Beggar' +p204330 +sg25270 +S'Artist Information (' +p204331 +sg25273 +S'(artist after)' +p204332 +sg25275 +S'\n' +p204333 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a0009643.jpg' +p204334 +sg25267 +g27 +sa(dp204335 +g25268 +S'Ecole du balayeur' +p204336 +sg25270 +S'Nicolas-Toussaint Charlet' +p204337 +sg25273 +S'lithograph' +p204338 +sg25275 +S'1822' +p204339 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009185.jpg' +p204340 +sg25267 +g27 +sa(dp204341 +g25268 +S'Infanterie leg\xc3\xa8re fran\xc3\xa7aise, Voltigeur' +p204342 +sg25270 +S'Nicolas-Toussaint Charlet' +p204343 +sg25273 +S'lithograph' +p204344 +sg25275 +S'1822' +p204345 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009182.jpg' +p204346 +sg25267 +g27 +sa(dp204347 +g25268 +S'Infanterie leg\xc3\xa8re fran\xc3\xa7aise, Carabinier' +p204348 +sg25270 +S'Nicolas-Toussaint Charlet' +p204349 +sg25273 +S'lithograph' +p204350 +sg25275 +S'1822' +p204351 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009181.jpg' +p204352 +sg25267 +g27 +sa(dp204353 +g25268 +S"L'Aum\xc3\xb4ne" +p204354 +sg25270 +S'Nicolas-Toussaint Charlet' +p204355 +sg25273 +S'lithograph' +p204356 +sg25275 +S'unknown date\n' +p204357 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a0009184.jpg' +p204358 +sg25267 +g27 +sa(dp204359 +g25273 +S'color lithograph' +p204360 +sg25267 +g27 +sg25275 +S'1941' +p204361 +sg25268 +S'Work and Rest' +p204362 +sg25270 +S'Jean Charlot' +p204363 +sa(dp204364 +g25268 +S'Femmes Mauresques de Constantine' +p204365 +sg25270 +S'Th\xc3\xa9odore Chass\xc3\xa9riau' +p204366 +sg25273 +S'soft-ground and hard-ground etching' +p204367 +sg25275 +S'1851' +p204368 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009835.jpg' +p204369 +sg25267 +g27 +sa(dp204370 +g25268 +S'Venus Anadyomene' +p204371 +sg25270 +S'Th\xc3\xa9odore Chass\xc3\xa9riau' +p204372 +sg25273 +S'lithograph on gray-tinted chine colle' +p204373 +sg25275 +S'c. 1841/1842' +p204374 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091a1.jpg' +p204375 +sg25267 +g27 +sa(dp204376 +g25268 +S'Saint George' +p204377 +sg25270 +S'Nicoletto da Modena' +p204378 +sg25273 +S'engraving' +p204379 +sg25275 +S'c. 1510' +p204380 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c764.jpg' +p204381 +sg25267 +g27 +sa(dp204382 +g25268 +S'Apollon et Daphne' +p204383 +sg25270 +S'Th\xc3\xa9odore Chass\xc3\xa9riau' +p204384 +sg25273 +S'lithograph' +p204385 +sg25275 +S'1844' +p204386 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009834.jpg' +p204387 +sg25267 +g27 +sa(dp204388 +g25273 +S'wood engraving' +p204389 +sg25267 +g27 +sg25275 +S'1936' +p204390 +sg25268 +S'Midsummer Vermont' +p204391 +sg25270 +S'Asa Cheffetz' +p204392 +sa(dp204393 +g25268 +S'Down Montgomery Way' +p204394 +sg25270 +S'Asa Cheffetz' +p204395 +sg25273 +S'wood engraving' +p204396 +sg25275 +S'1940' +p204397 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a60.jpg' +p204398 +sg25267 +g27 +sa(dp204399 +g25273 +S'lithograph' +p204400 +sg25267 +g27 +sg25275 +S'unknown date\n' +p204401 +sg25268 +S'Abandoned Mine at Blackhawk' +p204402 +sg25270 +S'Philip Cheney' +p204403 +sa(dp204404 +g25273 +S'lithograph' +p204405 +sg25267 +g27 +sg25275 +S'unknown date\n' +p204406 +sg25268 +S'Railroad along the Hudson, Bayside, New York' +p204407 +sg25270 +S'Philip Cheney' +p204408 +sa(dp204409 +g25268 +S"Goldsmith's Ornament in Square" +p204410 +sg25270 +S'M. Christollien' +p204411 +sg25273 +S'engraving' +p204412 +sg25275 +S'unknown date\n' +p204413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008308.jpg' +p204414 +sg25267 +g27 +sa(dp204415 +g25273 +S'wood engraving' +p204416 +sg25267 +g27 +sg25275 +S'unknown date\n' +p204417 +sg25268 +S'Chanctonbury Ring, Sussex' +p204418 +sg25270 +S'Beatrice Christy' +p204419 +sa(dp204420 +g25268 +S'The Mill' +p204421 +sg25270 +S'Artist Information (' +p204422 +sg25273 +S'(artist after)' +p204423 +sg25275 +S'\n' +p204424 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a66.jpg' +p204425 +sg25267 +g27 +sa(dp204426 +g25268 +S'Abraham Lincoln' +p204427 +sg25270 +S'Timothy Cole' +p204428 +sg25273 +S'wood engraving' +p204429 +sg25275 +S'1919' +p204430 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe33.jpg' +p204431 +sg25267 +g27 +sa(dp204432 +g25268 +S'Abraham Lincoln' +p204433 +sg25270 +S'Timothy Cole' +p204434 +sg25273 +S'wood engraving' +p204435 +sg25275 +S'1928' +p204436 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe34.jpg' +p204437 +sg25267 +g27 +sa(dp204438 +g25268 +S'Old Woman with a Distaff' +p204439 +sg25270 +S'Artist Information (' +p204440 +sg25273 +S'(artist after)' +p204441 +sg25275 +S'\n' +p204442 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c77a.jpg' +p204443 +sg25267 +g27 +sa(dp204444 +g25268 +S'Alexander Hamilton' +p204445 +sg25270 +S'Timothy Cole' +p204446 +sg25273 +S'wood engraving' +p204447 +sg25275 +S'1922' +p204448 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe31.jpg' +p204449 +sg25267 +g27 +sa(dp204450 +g25268 +S'Woodrow Wilson' +p204451 +sg25270 +S'Artist Information (' +p204452 +sg25273 +S'(artist after)' +p204453 +sg25275 +S'\n' +p204454 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe32.jpg' +p204455 +sg25267 +g27 +sa(dp204456 +g25268 +S'Thomas Jefferson' +p204457 +sg25270 +S'Artist Information (' +p204458 +sg25273 +S'(artist after)' +p204459 +sg25275 +S'\n' +p204460 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe36.jpg' +p204461 +sg25267 +g27 +sa(dp204462 +g25268 +S'Lowlands' +p204463 +sg25270 +S'Artist Information (' +p204464 +sg25273 +S'(artist after)' +p204465 +sg25275 +S'\n' +p204466 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe2f.jpg' +p204467 +sg25267 +g27 +sa(dp204468 +g25268 +S'Rodin' +p204469 +sg25270 +S'Artist Information (' +p204470 +sg25273 +S'(artist after)' +p204471 +sg25275 +S'\n' +p204472 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe30.jpg' +p204473 +sg25267 +g27 +sa(dp204474 +g25268 +S'Theodore Roosevelt' +p204475 +sg25270 +S'Timothy Cole' +p204476 +sg25273 +S'wood engraving' +p204477 +sg25275 +S'1928' +p204478 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe35.jpg' +p204479 +sg25267 +g27 +sa(dp204480 +g25268 +S'Dr. Pasteur' +p204481 +sg25270 +S'Artist Information (' +p204482 +sg25273 +S'(artist after)' +p204483 +sg25275 +S'\n' +p204484 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe39.jpg' +p204485 +sg25267 +g27 +sa(dp204486 +g25268 +S'The Haywain' +p204487 +sg25270 +S'Artist Information (' +p204488 +sg25273 +S'(artist after)' +p204489 +sg25275 +S'\n' +p204490 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a67.jpg' +p204491 +sg25267 +g27 +sa(dp204492 +g25268 +S'Jewelry Design' +p204493 +sg25270 +S'Hans Collaert' +p204494 +sg25273 +S'engraving' +p204495 +sg25275 +S'1582' +p204496 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd4e.jpg' +p204497 +sg25267 +g27 +sa(dp204498 +g25268 +S'Knight, Death and Devil' +p204499 +sg25270 +S'Albrecht D\xc3\xbcrer' +p204500 +sg25273 +S'engraving on laid paper' +p204501 +sg25275 +S'1513' +p204502 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00016/a0001635.jpg' +p204503 +sg25267 +g27 +sa(dp204504 +g25268 +S'Jewelry Design' +p204505 +sg25270 +S'Hans Collaert' +p204506 +sg25273 +S'engraving' +p204507 +sg25275 +S'1582' +p204508 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd4f.jpg' +p204509 +sg25267 +g27 +sa(dp204510 +g25268 +S'Jewelry Design' +p204511 +sg25270 +S'Hans Collaert' +p204512 +sg25273 +S'engraving' +p204513 +sg25275 +S'1582' +p204514 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd50.jpg' +p204515 +sg25267 +g27 +sa(dp204516 +g25268 +S'Jewelry Design' +p204517 +sg25270 +S'Hans Collaert' +p204518 +sg25273 +S'engraving' +p204519 +sg25275 +S'1582' +p204520 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd51.jpg' +p204521 +sg25267 +g27 +sa(dp204522 +g25268 +S'Jewelry Design' +p204523 +sg25270 +S'Hans Collaert' +p204524 +sg25273 +S'engraving' +p204525 +sg25275 +S'1582' +p204526 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd52.jpg' +p204527 +sg25267 +g27 +sa(dp204528 +g25268 +S'Jewelry Design' +p204529 +sg25270 +S'Hans Collaert' +p204530 +sg25273 +S'engraving' +p204531 +sg25275 +S'1582' +p204532 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd53.jpg' +p204533 +sg25267 +g27 +sa(dp204534 +g25268 +S'Jewelry Design' +p204535 +sg25270 +S'Hans Collaert' +p204536 +sg25273 +S'engraving' +p204537 +sg25275 +S'1582' +p204538 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd54.jpg' +p204539 +sg25267 +g27 +sa(dp204540 +g25268 +S'Jewelry Design' +p204541 +sg25270 +S'Hans Collaert' +p204542 +sg25273 +S'engraving' +p204543 +sg25275 +S'1582' +p204544 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd55.jpg' +p204545 +sg25267 +g27 +sa(dp204546 +g25268 +S'Jewelry Design' +p204547 +sg25270 +S'Hans Collaert' +p204548 +sg25273 +S'engraving' +p204549 +sg25275 +S'1582' +p204550 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd56.jpg' +p204551 +sg25267 +g27 +sa(dp204552 +g25268 +S'Jewelry Design' +p204553 +sg25270 +S'Hans Collaert' +p204554 +sg25273 +S'engraving' +p204555 +sg25275 +S'1582' +p204556 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd57.jpg' +p204557 +sg25267 +g27 +sa(dp204558 +g25273 +S'wood engraving on wove paper' +p204559 +sg25267 +g27 +sg25275 +S'1942' +p204560 +sg25268 +S'Eagle Dance' +p204561 +sg25270 +S'Howard Norton Cook' +p204562 +sa(dp204563 +g25268 +S'Landscape with the Cannon' +p204564 +sg25270 +S'Albrecht D\xc3\xbcrer' +p204565 +sg25273 +S'etching (iron)' +p204566 +sg25275 +S'1518' +p204567 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b105.jpg' +p204568 +sg25267 +g27 +sa(dp204569 +g25273 +S'lithograph' +p204570 +sg25267 +g27 +sg25275 +S'unknown date\n' +p204571 +sg25268 +S'Escaped Bull' +p204572 +sg25270 +S'Jon Corbino' +p204573 +sa(dp204574 +g25268 +S'Virgin and Child' +p204575 +sg25270 +S'Artist Information (' +p204576 +sg25273 +S'(artist after)' +p204577 +sg25275 +S'\n' +p204578 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c95c.jpg' +p204579 +sg25267 +g27 +sa(dp204580 +g25268 +S'Sibyl' +p204581 +sg25270 +S'Artist Information (' +p204582 +sg25273 +S'(artist)' +p204583 +sg25275 +S'\n' +p204584 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca08.jpg' +p204585 +sg25267 +g27 +sa(dp204586 +g25268 +S'The Adoration of the Shepherds' +p204587 +sg25270 +S'Frans Crabbe van Espleghem' +p204588 +sg25273 +S'engraving' +p204589 +sg25275 +S'unknown date\n' +p204590 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf6a.jpg' +p204591 +sg25267 +g27 +sa(dp204592 +g25273 +S'etching' +p204593 +sg25267 +g27 +sg25275 +S'c. 1932' +p204594 +sg25268 +S'On the Farm' +p204595 +sg25270 +S'John Edward Costigan' +p204596 +sa(dp204597 +g25273 +S'lithograph' +p204598 +sg25267 +g27 +sg25275 +S'unknown date\n' +p204599 +sg25268 +S'Child with Goats' +p204600 +sg25270 +S'John Edward Costigan' +p204601 +sa(dp204602 +g25273 +S'etching' +p204603 +sg25267 +g27 +sg25275 +S'1938' +p204604 +sg25268 +S'Cutting Fodder' +p204605 +sg25270 +S'John Edward Costigan' +p204606 +sa(dp204607 +g25273 +S'etching' +p204608 +sg25267 +g27 +sg25275 +S'1935' +p204609 +sg25268 +S'Cloudy Sky' +p204610 +sg25270 +S'John Edward Costigan' +p204611 +sa(dp204612 +g25268 +S'The Isolated Fort (Le Fort detache)' +p204613 +sg25270 +S'Jean-Baptiste-Camille Corot' +p204614 +sg25273 +S'lithograph' +p204615 +sg25275 +S'1874' +p204616 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091b5.jpg' +p204617 +sg25267 +g27 +sa(dp204618 +g25268 +S"Souvenir of Italy (Souvenir d'Italie)" +p204619 +sg25270 +S'Jean-Baptiste-Camille Corot' +p204620 +sg25273 +S'etching' +p204621 +sg25275 +S'1866' +p204622 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091a6.jpg' +p204623 +sg25267 +g27 +sa(dp204624 +g25268 +S'Madonna Enthroned with Saints [left panel]' +p204625 +sg25270 +S'Artist Information (' +p204626 +sg25273 +S'(painter)' +p204627 +sg25275 +S'\n' +p204628 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000085f.jpg' +p204629 +sg25267 +g27 +sa(dp204630 +g25268 +S'Girl with the Red Hat' +p204631 +sg25270 +S'Johannes Vermeer' +p204632 +sg25273 +S'oil on panel' +p204633 +sg25275 +S'c. 1665/1666' +p204634 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e1e.jpg' +p204635 +sg25267 +S'Girl with the Red Hat\n Vermeer also owned an art dealership. No documentation of his artistic training or apprenticeship exists, but in 1653 he became a master in the Saint Luke\xe2\x80\x99s Guild, a professional artists\xe2\x80\x99 trade organization. In the 1660s and 1670s he served four terms as head of the guild. In his lifetime, Vermeer\xe2\x80\x99s small oeuvre was well regarded by connoisseurs, but only in the late nineteenth century did his intimate genre scenes and quiet cityscapes become world renowned.\n ' +p204636 +sa(dp204637 +g25268 +S'The Man of Sorrows Mocked by a Soldier' +p204638 +sg25270 +S'Albrecht D\xc3\xbcrer' +p204639 +sg25273 +S'woodcut' +p204640 +sg25275 +S'probably 1511' +p204641 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00068/a0006821.jpg' +p204642 +sg25267 +g27 +sa(dp204643 +g25268 +S'Little Shepherd, 1st Plate (Le Petit Berger)' +p204644 +sg25270 +S'Jean-Baptiste-Camille Corot' +p204645 +sg25273 +S'cliche-verre' +p204646 +sg25275 +S'1855' +p204647 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091b9.jpg' +p204648 +sg25267 +g27 +sa(dp204649 +g25268 +S"The Gardens of Horace (Les Jardins d'Horace)" +p204650 +sg25270 +S'Jean-Baptiste-Camille Corot' +p204651 +sg25273 +S'cliche-verre' +p204652 +sg25275 +S'1855' +p204653 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091bd.jpg' +p204654 +sg25267 +g27 +sa(dp204655 +g25268 +S'The Bell Tower of St. Nicolas-Lez-Arras (Le Clocher de St. Nicolas-Lez-Arras)' +p204656 +sg25270 +S'Jean-Baptiste-Camille Corot' +p204657 +sg25273 +S'lithograph' +p204658 +sg25275 +S'1871' +p204659 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091ab.jpg' +p204660 +sg25267 +g27 +sa(dp204661 +g25268 +S'The Lonely Tower (La Tour isolee)' +p204662 +sg25270 +S'Jean-Baptiste-Camille Corot' +p204663 +sg25273 +S'lithograph' +p204664 +sg25275 +S'1871' +p204665 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091ac.jpg' +p204666 +sg25267 +g27 +sa(dp204667 +g25268 +S'The Meeting in the Woods (La Rencontre du bosquet)' +p204668 +sg25270 +S'Jean-Baptiste-Camille Corot' +p204669 +sg25273 +S'lithograph' +p204670 +sg25275 +S'1871' +p204671 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091a7.jpg' +p204672 +sg25267 +g27 +sa(dp204673 +g25268 +S'The Rider in the Reeds (Le Cavalier dans les roseaux)' +p204674 +sg25270 +S'Jean-Baptiste-Camille Corot' +p204675 +sg25273 +S'lithograph' +p204676 +sg25275 +S'1871' +p204677 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091aa.jpg' +p204678 +sg25267 +g27 +sa(dp204679 +g25268 +S'The Gust of Wind (Le Coup de vent)' +p204680 +sg25270 +S'Jean-Baptiste-Camille Corot' +p204681 +sg25273 +S'lithograph' +p204682 +sg25275 +S'1871' +p204683 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091a8.jpg' +p204684 +sg25267 +g27 +sa(dp204685 +g25268 +S"The Philosophers' Retreat (Le Repos des Philosophes)" +p204686 +sg25270 +S'Jean-Baptiste-Camille Corot' +p204687 +sg25273 +S'lithograph' +p204688 +sg25275 +S'1871' +p204689 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091b1.jpg' +p204690 +sg25267 +g27 +sa(dp204691 +g25268 +S'Sappho (Sapho)' +p204692 +sg25270 +S'Jean-Baptiste-Camille Corot' +p204693 +sg25273 +S'lithograph' +p204694 +sg25275 +S'1871' +p204695 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091ae.jpg' +p204696 +sg25267 +g27 +sa(dp204697 +g25268 +S'Drowsing Cattle (Le Dormoir des vaches)' +p204698 +sg25270 +S'Jean-Baptiste-Camille Corot' +p204699 +sg25273 +S'lithograph' +p204700 +sg25275 +S'1871' +p204701 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091b3.jpg' +p204702 +sg25267 +g27 +sa(dp204703 +g25268 +S'The Last Supper' +p204704 +sg25270 +S'Albrecht D\xc3\xbcrer' +p204705 +sg25273 +S'woodcut' +p204706 +sg25275 +S'1510' +p204707 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0ca.jpg' +p204708 +sg25267 +g27 +sa(dp204709 +g25268 +S"Souvenir of Italy (Souvenir d'Italie)" +p204710 +sg25270 +S'Jean-Baptiste-Camille Corot' +p204711 +sg25273 +S'lithograph' +p204712 +sg25275 +S'1871' +p204713 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091b2.jpg' +p204714 +sg25267 +g27 +sa(dp204715 +g25268 +S'The Mill of Cuincy, near Douai (Le Moulin de Cuincy, pres Douai)' +p204716 +sg25270 +S'Jean-Baptiste-Camille Corot' +p204717 +sg25273 +S'lithograph' +p204718 +sg25275 +S'1871' +p204719 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091b7.jpg' +p204720 +sg25267 +g27 +sa(dp204721 +g25268 +S'Family at Terracina (Une famille a terracine)' +p204722 +sg25270 +S'Jean-Baptiste-Camille Corot' +p204723 +sg25273 +S'lithograph' +p204724 +sg25275 +S'1871' +p204725 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091bb.jpg' +p204726 +sg25267 +g27 +sa(dp204727 +g25268 +S'Willows and White Poplars (Saules et peupliers blancs)' +p204728 +sg25270 +S'Jean-Baptiste-Camille Corot' +p204729 +sg25273 +S'lithograph' +p204730 +sg25275 +S'1871' +p204731 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f2f.jpg' +p204732 +sg25267 +g27 +sa(dp204733 +g25268 +S'John Frederic the Magnanimous, in Electoral Robes [left]' +p204734 +sg25270 +S'Artist Information (' +p204735 +sg25273 +S'German, 1515 - 1586' +p204736 +sg25275 +S'(artist after)' +p204737 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8f8.jpg' +p204738 +sg25267 +g27 +sa(dp204739 +g25268 +S'John Frederic the Magnanimous, in Electoral Robes [right]' +p204740 +sg25270 +S'Artist Information (' +p204741 +sg25273 +S'German, 1515 - 1586' +p204742 +sg25275 +S'(artist after)' +p204743 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8f9.jpg' +p204744 +sg25267 +g27 +sa(dp204745 +g25268 +S'John Frederic the Magnanimous, in Electoral Robes' +p204746 +sg25270 +S'Artist Information (' +p204747 +sg25273 +S'German, 1515 - 1586' +p204748 +sg25275 +S'(artist after)' +p204749 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8fd.jpg' +p204750 +sg25267 +g27 +sa(dp204751 +g25268 +S'John Frederic the Magnanimous, in Electoral Robes' +p204752 +sg25270 +S'Artist Information (' +p204753 +sg25273 +S'German, 1515 - 1586' +p204754 +sg25275 +S'(artist after)' +p204755 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8fb.jpg' +p204756 +sg25267 +g27 +sa(dp204757 +g25268 +S'David and Abigail' +p204758 +sg25270 +S'Lucas Cranach the Elder' +p204759 +sg25273 +S'woodcut' +p204760 +sg25275 +S'1509' +p204761 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0a2.jpg' +p204762 +sg25267 +g27 +sa(dp204763 +g25268 +S'The Betrayal of Christ' +p204764 +sg25270 +S'Albrecht D\xc3\xbcrer' +p204765 +sg25273 +S'woodcut' +p204766 +sg25275 +S'1510' +p204767 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0c9.jpg' +p204768 +sg25267 +g27 +sa(dp204769 +g25268 +S'Marcus Curtius Plunging into the Chasm' +p204770 +sg25270 +S'Lucas Cranach the Elder' +p204771 +sg25273 +S'woodcut' +p204772 +sg25275 +S'unknown date\n' +p204773 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0f2.jpg' +p204774 +sg25267 +g27 +sa(dp204775 +g25268 +S'The Martyrdom of Saint Barbara' +p204776 +sg25270 +S'Lucas Cranach the Elder' +p204777 +sg25273 +S'woodcut' +p204778 +sg25275 +S'unknown date\n' +p204779 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0e5.jpg' +p204780 +sg25267 +g27 +sa(dp204781 +g25268 +S'John William, Duke of Saxe-Coburg' +p204782 +sg25270 +S'Lucas Cranach the Younger' +p204783 +sg25273 +S'woodcut' +p204784 +sg25275 +S'unknown date\n' +p204785 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0f3.jpg' +p204786 +sg25267 +g27 +sa(dp204787 +g25268 +S'Saint Anne and the Virgin with the Child' +p204788 +sg25270 +S'Lucas Cranach the Elder' +p204789 +sg25273 +S'woodcut' +p204790 +sg25275 +S'unknown date\n' +p204791 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0e3.jpg' +p204792 +sg25267 +g27 +sa(dp204793 +g25268 +S'The Second Tournament with the Tapestry of Samson and the Lion' +p204794 +sg25270 +S'Lucas Cranach the Elder' +p204795 +sg25273 +S'woodcut' +p204796 +sg25275 +S'1509' +p204797 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0f0.jpg' +p204798 +sg25267 +g27 +sa(dp204799 +g25268 +S'The Third Tournament' +p204800 +sg25270 +S'Lucas Cranach the Elder' +p204801 +sg25273 +S'woodcut' +p204802 +sg25275 +S'1509' +p204803 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0ef.jpg' +p204804 +sg25267 +g27 +sa(dp204805 +g25268 +S'Hunter on Horseback Hunting a Wild Boar' +p204806 +sg25270 +S'Lucas Cranach the Elder' +p204807 +sg25273 +S'woodcut' +p204808 +sg25275 +S'c. 1506' +p204809 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8fe.jpg' +p204810 +sg25267 +g27 +sa(dp204811 +g25268 +S'The Ecstasy of Saint Mary Magdalene' +p204812 +sg25270 +S'Lucas Cranach the Elder' +p204813 +sg25273 +S'woodcut' +p204814 +sg25275 +S'1506' +p204815 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0e4.jpg' +p204816 +sg25267 +g27 +sa(dp204817 +g25268 +S'The Last Supper' +p204818 +sg25270 +S'Albrecht D\xc3\xbcrer' +p204819 +sg25273 +S'woodcut' +p204820 +sg25275 +S'1523' +p204821 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b11f.jpg' +p204822 +sg25267 +g27 +sa(dp204823 +g25268 +S'Saint Luke' +p204824 +sg25270 +S'Lucas Cranach the Younger' +p204825 +sg25273 +S'woodcut' +p204826 +sg25275 +S'unknown date\n' +p204827 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0f9.jpg' +p204828 +sg25267 +g27 +sa(dp204829 +g25268 +S'The Penitence of Saint Jerome' +p204830 +sg25270 +S'Lucas Cranach the Elder' +p204831 +sg25273 +S'woodcut' +p204832 +sg25275 +S'1509' +p204833 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0e9.jpg' +p204834 +sg25267 +g27 +sa(dp204835 +g25268 +S'Saint George Standing, with Two Angels' +p204836 +sg25270 +S'Lucas Cranach the Elder' +p204837 +sg25273 +S'woodcut' +p204838 +sg25275 +S'1506' +p204839 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0ec.jpg' +p204840 +sg25267 +g27 +sa(dp204841 +g25268 +S'Saint George and the Dragon' +p204842 +sg25270 +S'Lucas Cranach the Elder' +p204843 +sg25273 +S'woodcut' +p204844 +sg25275 +S'unknown date\n' +p204845 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a912.jpg' +p204846 +sg25267 +g27 +sa(dp204847 +g25268 +S'Saint Christopher' +p204848 +sg25270 +S'Lucas Cranach the Elder' +p204849 +sg25273 +S'chiaroscuro woodcut printed in brown-orange and black' +p204850 +sg25275 +S'1506' +p204851 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0e7.jpg' +p204852 +sg25267 +g27 +sa(dp204853 +g25268 +S'Saint Bernard Adoring the Man of Sorrows' +p204854 +sg25270 +S'Lucas Cranach the Elder' +p204855 +sg25273 +S'woodcut' +p204856 +sg25275 +S'unknown date\n' +p204857 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a91c.jpg' +p204858 +sg25267 +g27 +sa(dp204859 +g25268 +S'Saint Barbara' +p204860 +sg25270 +S'Lucas Cranach the Elder' +p204861 +sg25273 +S'woodcut' +p204862 +sg25275 +S'unknown date\n' +p204863 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8fc.jpg' +p204864 +sg25267 +g27 +sa(dp204865 +g25268 +S'The Temptation of Saint Anthony' +p204866 +sg25270 +S'Lucas Cranach the Elder' +p204867 +sg25273 +S'woodcut' +p204868 +sg25275 +S'1506' +p204869 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0ed.jpg' +p204870 +sg25267 +g27 +sa(dp204871 +g25268 +S'Saint Philip' +p204872 +sg25270 +S'Lucas Cranach the Elder' +p204873 +sg25273 +S'woodcut' +p204874 +sg25275 +S'unknown date\n' +p204875 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8b3.jpg' +p204876 +sg25267 +g27 +sa(dp204877 +g25268 +S'Saint Matthew' +p204878 +sg25270 +S'Lucas Cranach the Elder' +p204879 +sg25273 +S'woodcut' +p204880 +sg25275 +S'unknown date\n' +p204881 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a918.jpg' +p204882 +sg25267 +g27 +sa(dp204883 +g25268 +S'The Beast with Two Horns like a Lamb' +p204884 +sg25270 +S'Albrecht D\xc3\xbcrer' +p204885 +sg25273 +S'woodcut' +p204886 +sg25275 +S'probably c. 1496/1498' +p204887 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b11c.jpg' +p204888 +sg25267 +g27 +sa(dp204889 +g25268 +S'Saint Simon' +p204890 +sg25270 +S'Lucas Cranach the Elder' +p204891 +sg25273 +S'woodcut' +p204892 +sg25275 +S'unknown date\n' +p204893 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a91a.jpg' +p204894 +sg25267 +g27 +sa(dp204895 +g25268 +S'Saint Jude' +p204896 +sg25270 +S'Lucas Cranach the Elder' +p204897 +sg25273 +S'woodcut' +p204898 +sg25275 +S'unknown date\n' +p204899 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a915.jpg' +p204900 +sg25267 +g27 +sa(dp204901 +g25268 +S'Saint Matthias' +p204902 +sg25270 +S'Lucas Cranach the Elder' +p204903 +sg25273 +S'woodcut' +p204904 +sg25275 +S'unknown date\n' +p204905 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a914.jpg' +p204906 +sg25267 +g27 +sa(dp204907 +g25268 +S'Saint James the Greater' +p204908 +sg25270 +S'Lucas Cranach the Elder' +p204909 +sg25273 +S'woodcut' +p204910 +sg25275 +S'unknown date\n' +p204911 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8b4.jpg' +p204912 +sg25267 +g27 +sa(dp204913 +g25268 +S'Saint Bartholomew' +p204914 +sg25270 +S'Lucas Cranach the Elder' +p204915 +sg25273 +S'woodcut' +p204916 +sg25275 +S'unknown date\n' +p204917 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a913.jpg' +p204918 +sg25267 +g27 +sa(dp204919 +g25268 +S'Saint John the Evangelist' +p204920 +sg25270 +S'Lucas Cranach the Elder' +p204921 +sg25273 +S'woodcut' +p204922 +sg25275 +S'unknown date\n' +p204923 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8b0.jpg' +p204924 +sg25267 +g27 +sa(dp204925 +g25268 +S'Saint Thomas' +p204926 +sg25270 +S'Lucas Cranach the Elder' +p204927 +sg25273 +S'woodcut' +p204928 +sg25275 +S'unknown date\n' +p204929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a916.jpg' +p204930 +sg25267 +g27 +sa(dp204931 +g25268 +S'Saint Peter' +p204932 +sg25270 +S'Lucas Cranach the Elder' +p204933 +sg25273 +S'woodcut' +p204934 +sg25275 +S'unknown date\n' +p204935 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8b7.jpg' +p204936 +sg25267 +g27 +sa(dp204937 +g25268 +S'Saint Andrew' +p204938 +sg25270 +S'Lucas Cranach the Elder' +p204939 +sg25273 +S'woodcut' +p204940 +sg25275 +S'unknown date\n' +p204941 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8b5.jpg' +p204942 +sg25267 +g27 +sa(dp204943 +g25268 +S'The Rest on the Flight into Egypt' +p204944 +sg25270 +S'Lucas Cranach the Elder' +p204945 +sg25273 +S'woodcut' +p204946 +sg25275 +S'1509' +p204947 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0aa.jpg' +p204948 +sg25267 +g27 +sa(dp204949 +g25268 +S'The Madonna on the Crescent' +p204950 +sg25270 +S'Albrecht D\xc3\xbcrer' +p204951 +sg25273 +S'woodcut' +p204952 +sg25275 +S'1510/1511' +p204953 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b12b.jpg' +p204954 +sg25267 +g27 +sa(dp204955 +g25268 +S'Martin Luther, Half-Length to the Left with a Book in his Hands' +p204956 +sg25270 +S'Artist Information (' +p204957 +sg25273 +S'German, 1515 - 1586' +p204958 +sg25275 +S'(artist after)' +p204959 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a902.jpg' +p204960 +sg25267 +g27 +sa(dp204961 +g25268 +S"Luther as 'Junker Jorg'" +p204962 +sg25270 +S'Lucas Cranach the Elder' +p204963 +sg25273 +S'woodcut' +p204964 +sg25275 +S'1522' +p204965 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0f7.jpg' +p204966 +sg25267 +g27 +sa(dp204967 +g25268 +S'The Celestial Ladder of Saint Bonaventura' +p204968 +sg25270 +S'Lucas Cranach the Elder' +p204969 +sg25273 +S'woodcut' +p204970 +sg25275 +S'unknown date\n' +p204971 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0ee.jpg' +p204972 +sg25267 +g27 +sa(dp204973 +g25268 +S'The Judgment of Paris' +p204974 +sg25270 +S'Lucas Cranach the Elder' +p204975 +sg25273 +S'woodcut' +p204976 +sg25275 +S'1508' +p204977 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0f1.jpg' +p204978 +sg25267 +g27 +sa(dp204979 +g25268 +S'The Holy Kinship' +p204980 +sg25270 +S'Lucas Cranach the Elder' +p204981 +sg25273 +S'woodcut' +p204982 +sg25275 +S'unknown date\n' +p204983 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0ea.jpg' +p204984 +sg25267 +g27 +sa(dp204985 +g25268 +S'Bookplate of Scheurl and Tucher' +p204986 +sg25270 +S'Lucas Cranach the Elder' +p204987 +sg25273 +S'woodcut' +p204988 +sg25275 +S'unknown date\n' +p204989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8ff.jpg' +p204990 +sg25267 +g27 +sa(dp204991 +g25268 +S'Christ Crowned with Thorns' +p204992 +sg25270 +S'Lucas Cranach the Elder' +p204993 +sg25273 +S'woodcut' +p204994 +sg25275 +S'unknown date\n' +p204995 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0c2.jpg' +p204996 +sg25267 +g27 +sa(dp204997 +g25268 +S'Christ on the Cross Between the Virgin and Saint John' +p204998 +sg25270 +S'Lucas Cranach the Elder' +p204999 +sg25273 +S'woodcut' +p205000 +sg25275 +S'c. 1502' +p205001 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8b8.jpg' +p205002 +sg25267 +g27 +sa(dp205003 +g25268 +S'Christ and the Woman of Samaria' +p205004 +sg25270 +S'Lucas Cranach the Elder' +p205005 +sg25273 +S'woodcut' +p205006 +sg25275 +S'unknown date\n' +p205007 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8ba.jpg' +p205008 +sg25267 +g27 +sa(dp205009 +g25268 +S"Joachim's Offering Rejected" +p205010 +sg25270 +S'Albrecht D\xc3\xbcrer' +p205011 +sg25273 +S'woodcut' +p205012 +sg25275 +S'c. 1504/1505' +p205013 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b129.jpg' +p205014 +sg25267 +g27 +sa(dp205015 +g25268 +S'Adam and Eve in Paradise' +p205016 +sg25270 +S'Lucas Cranach the Elder' +p205017 +sg25273 +S'woodcut' +p205018 +sg25275 +S'1509' +p205019 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000ae22.jpg' +p205020 +sg25267 +g27 +sa(dp205021 +g25268 +S'Frederick the Wise and John the Constant of Saxony' +p205022 +sg25270 +S'Lucas Cranach the Elder' +p205023 +sg25273 +S'engraving' +p205024 +sg25275 +S'1509' +p205025 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8af.jpg' +p205026 +sg25267 +g27 +sa(dp205027 +g25268 +S'The Penance of Saint John Chrysostom' +p205028 +sg25270 +S'Lucas Cranach the Elder' +p205029 +sg25273 +S'engraving' +p205030 +sg25275 +S'unknown date\n' +p205031 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000af/a000af69.jpg' +p205032 +sg25267 +g27 +sa(dp205033 +g25268 +S'Saint James the Less' +p205034 +sg25270 +S'Lucas Cranach the Elder' +p205035 +sg25273 +S'woodcut' +p205036 +sg25275 +S'unknown date\n' +p205037 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a91b.jpg' +p205038 +sg25267 +g27 +sa(dp205039 +g25268 +S'Saint John in a Landscape' +p205040 +sg25270 +S'Lucas Cranach the Younger' +p205041 +sg25273 +S'woodcut' +p205042 +sg25275 +S'1540' +p205043 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0f8.jpg' +p205044 +sg25267 +g27 +sa(dp205045 +g25268 +S'A River in Ireland' +p205046 +sg25270 +S'Francis Seymour Haden' +p205047 +sg25273 +S'etching with drypoint' +p205048 +sg25275 +S'1864' +p205049 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c99.jpg' +p205050 +sg25267 +g27 +sa(dp205051 +g25273 +S'etching' +p205052 +sg25267 +g27 +sg25275 +S'1935' +p205053 +sg25268 +S'Baousset' +p205054 +sg25270 +S'Earl Stetson Crawford' +p205055 +sa(dp205056 +g25273 +S'etching' +p205057 +sg25267 +g27 +sg25275 +S'1933' +p205058 +sg25268 +S'Bridge at Badalucco, Italy' +p205059 +sg25270 +S'Earl Stetson Crawford' +p205060 +sa(dp205061 +g25273 +S'etching' +p205062 +sg25267 +g27 +sg25275 +S'1932' +p205063 +sg25268 +S'Green Umbrellas, Orvieto, Italy' +p205064 +sg25270 +S'Earl Stetson Crawford' +p205065 +sa(dp205066 +g25273 +S'drypoint' +p205067 +sg25267 +g27 +sg25275 +S'1933' +p205068 +sg25268 +S'Little Virgin of Chioggia' +p205069 +sg25270 +S'Earl Stetson Crawford' +p205070 +sa(dp205071 +g25268 +S'Joachim and the Angel' +p205072 +sg25270 +S'Albrecht D\xc3\xbcrer' +p205073 +sg25273 +S'woodcut' +p205074 +sg25275 +S'c. 1504' +p205075 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b126.jpg' +p205076 +sg25267 +g27 +sa(dp205077 +g25273 +S'etching' +p205078 +sg25267 +g27 +sg25275 +S'1931' +p205079 +sg25268 +S'Returning from the Fields' +p205080 +sg25270 +S'Earl Stetson Crawford' +p205081 +sa(dp205082 +g25273 +S'drypoint' +p205083 +sg25267 +g27 +sg25275 +S'1933' +p205084 +sg25268 +S'Saorqe' +p205085 +sg25270 +S'Earl Stetson Crawford' +p205086 +sa(dp205087 +g25273 +S'etching' +p205088 +sg25267 +g27 +sg25275 +S'unknown date\n' +p205089 +sg25268 +S'House of the Witch' +p205090 +sg25270 +S'Earl Stetson Crawford' +p205091 +sa(dp205092 +g25273 +S'etching' +p205093 +sg25267 +g27 +sg25275 +S'1928' +p205094 +sg25268 +S'Place du Peyra' +p205095 +sg25270 +S'Earl Stetson Crawford' +p205096 +sa(dp205097 +g25273 +S'etching' +p205098 +sg25267 +g27 +sg25275 +S'1929' +p205099 +sg25268 +S'Back Waters, Martigues' +p205100 +sg25270 +S'Earl Stetson Crawford' +p205101 +sa(dp205102 +g25273 +S'etching' +p205103 +sg25267 +g27 +sg25275 +S'1928' +p205104 +sg25268 +S'Port of Tunis, Twilight' +p205105 +sg25270 +S'Earl Stetson Crawford' +p205106 +sa(dp205107 +g25273 +S'etching' +p205108 +sg25267 +g27 +sg25275 +S'1928' +p205109 +sg25268 +S'Carnival Time, Nice' +p205110 +sg25270 +S'Earl Stetson Crawford' +p205111 +sa(dp205112 +g25273 +S'etching' +p205113 +sg25267 +g27 +sg25275 +S'1925' +p205114 +sg25268 +S'The Norwegian, Concarneau' +p205115 +sg25270 +S'Earl Stetson Crawford' +p205116 +sa(dp205117 +g25273 +S'etching' +p205118 +sg25267 +g27 +sg25275 +S'unknown date\n' +p205119 +sg25268 +S'Chicago Tribune' +p205120 +sg25270 +S'Rose Crosman' +p205121 +sa(dp205122 +g25268 +S'Holy Family with Saint Elizabeth and the Infant Saint John' +p205123 +sg25270 +S'Giovanni Antonio da Brescia' +p205124 +sg25273 +S'engraving' +p205125 +sg25275 +S'c. 1495/1505' +p205126 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c82b.jpg' +p205127 +sg25267 +g27 +sa(dp205128 +g25268 +S'The Birth of the Virgin' +p205129 +sg25270 +S'Albrecht D\xc3\xbcrer' +p205130 +sg25273 +S'woodcut' +p205131 +sg25275 +S'c. 1503/1504' +p205132 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b134.jpg' +p205133 +sg25267 +g27 +sa(dp205134 +g25268 +S'Hercules and Antaeus' +p205135 +sg25270 +S'Giovanni Antonio da Brescia' +p205136 +sg25273 +S'engraving' +p205137 +sg25275 +S'c. 1490/1500' +p205138 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00068/a000681c.jpg' +p205139 +sg25267 +g27 +sa(dp205140 +g25268 +S'Flagellation' +p205141 +sg25270 +S'Giovanni Antonio da Brescia' +p205142 +sg25273 +S'engraving' +p205143 +sg25275 +S'1509' +p205144 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c828.jpg' +p205145 +sg25267 +g27 +sa(dp205146 +g25268 +S'Man Seated Holding a Forked Staff' +p205147 +sg25270 +S'Giovanni Antonio da Brescia' +p205148 +sg25273 +S'engraving' +p205149 +sg25275 +S'c. 1514/1515' +p205150 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c73d.jpg' +p205151 +sg25267 +g27 +sa(dp205152 +g25268 +S"Discovery of Joseph's Cup" +p205153 +sg25270 +S'Artist Information (' +p205154 +sg25273 +S'(artist after)' +p205155 +sg25275 +S'\n' +p205156 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c82c.jpg' +p205157 +sg25267 +g27 +sa(dp205158 +g25268 +S'Ornamental Panel Inscribed "Victoria Augusta"' +p205159 +sg25270 +S'Artist Information (' +p205160 +sg25273 +S'(artist after)' +p205161 +sg25275 +S'\n' +p205162 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c82e.jpg' +p205163 +sg25267 +g27 +sa(dp205164 +g25273 +S'heliogravure reworked in drypoint on wove paper' +p205165 +sg25267 +g27 +sg25275 +S'1934 (signed 1936)' +p205166 +sg25268 +S'Les Chants de Maldoror' +p205167 +sg25270 +S'Salvador Dal\xc3\xad' +p205168 +sa(dp205169 +g25273 +S'etching' +p205170 +sg25267 +g27 +sg25275 +S'unknown date\n' +p205171 +sg25268 +S'Allegretto' +p205172 +sg25270 +S'Cleo Damianakes' +p205173 +sa(dp205174 +g25273 +S'etching' +p205175 +sg25267 +g27 +sg25275 +S'unknown date\n' +p205176 +sg25268 +S'Pastoral' +p205177 +sg25270 +S'Cleo Damianakes' +p205178 +sa(dp205179 +g25273 +S'etching in green-black' +p205180 +sg25267 +g27 +sg25275 +S'unknown date\n' +p205181 +sg25268 +S'Fruit Bearers' +p205182 +sg25270 +S'Cleo Damianakes' +p205183 +sa(dp205184 +g25273 +S'etching in brown-black' +p205185 +sg25267 +g27 +sg25275 +S'unknown date\n' +p205186 +sg25268 +S'Fruit Bearers' +p205187 +sg25270 +S'Cleo Damianakes' +p205188 +sa(dp205189 +g25268 +S'The Presentation of the Virgin in the Temple' +p205190 +sg25270 +S'Albrecht D\xc3\xbcrer' +p205191 +sg25273 +S'woodcut' +p205192 +sg25275 +S'c. 1502/1503' +p205193 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b12f.jpg' +p205194 +sg25267 +g27 +sa(dp205195 +g25273 +S'etching' +p205196 +sg25267 +g27 +sg25275 +S'unknown date\n' +p205197 +sg25268 +S'The Fountain' +p205198 +sg25270 +S'Cleo Damianakes' +p205199 +sa(dp205200 +g25273 +S'etching' +p205201 +sg25267 +g27 +sg25275 +S'unknown date\n' +p205202 +sg25268 +S'Impromptu' +p205203 +sg25270 +S'Cleo Damianakes' +p205204 +sa(dp205205 +g25268 +S'Pool with Deer (La Mare aux cerfs)' +p205206 +sg25270 +S'Charles-Fran\xc3\xa7ois Daubigny' +p205207 +sg25273 +S'etching' +p205208 +sg25275 +S'1845' +p205209 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a000982a.jpg' +p205210 +sg25267 +g27 +sa(dp205211 +g25268 +S'Sunrise (Le Lever du soleil)' +p205212 +sg25270 +S'Charles-Fran\xc3\xa7ois Daubigny' +p205213 +sg25273 +S'etching' +p205214 +sg25275 +S'1850' +p205215 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a000982b.jpg' +p205216 +sg25267 +g27 +sa(dp205217 +g25268 +S'Passe ton chemin, cochon' +p205218 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205219 +sg25273 +S'lithograph' +p205220 +sg25275 +S'1830' +p205221 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a00097f1.jpg' +p205222 +sg25267 +g27 +sa(dp205223 +g25268 +S'Dieu ai-je aim\xc3\xa9 cet \xc3\xaatre la' +p205224 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205225 +sg25273 +S'lithograph' +p205226 +sg25275 +S'1831' +p205227 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091ee.jpg' +p205228 +sg25267 +g27 +sa(dp205229 +g25268 +S'Dupin ain\xc3\xa9' +p205230 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205231 +sg25273 +S'lithograph' +p205232 +sg25275 +S'1832' +p205233 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091f5.jpg' +p205234 +sg25267 +g27 +sa(dp205235 +g25268 +S'Soult (Mar\xc3\xa9chal)' +p205236 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205237 +sg25273 +S'lithograph' +p205238 +sg25275 +S'1832' +p205239 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005789.jpg' +p205240 +sg25267 +g27 +sa(dp205241 +g25268 +S"Comte d'Argout" +p205242 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205243 +sg25273 +S'lithograph' +p205244 +sg25275 +S'1832' +p205245 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a000578a.jpg' +p205246 +sg25267 +g27 +sa(dp205247 +g25268 +S'J. Claude Fulchiron' +p205248 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205249 +sg25273 +S'lithograph' +p205250 +sg25275 +S'1833' +p205251 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091f1.jpg' +p205252 +sg25267 +g27 +sa(dp205253 +g25268 +S'The Lacemaker' +p205254 +sg25270 +S'Artist Information (' +p205255 +sg25273 +S'Dutch, 1632 - 1675' +p205256 +sg25275 +S'(related artist)' +p205257 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00052/a0005208.jpg' +p205258 +sg25267 +g27 +sa(dp205259 +g25268 +S'The Betrothal of the Virgin' +p205260 +sg25270 +S'Albrecht D\xc3\xbcrer' +p205261 +sg25273 +S'woodcut' +p205262 +sg25275 +S'c. 1504/1505' +p205263 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b136.jpg' +p205264 +sg25267 +g27 +sa(dp205265 +g25268 +S'Harl\xc3\xa9 p\xc3\xa8re' +p205266 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205267 +sg25273 +S'lithograph' +p205268 +sg25275 +S'1833' +p205269 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091f0.jpg' +p205270 +sg25267 +g27 +sa(dp205271 +g25268 +S'Comte Horace S\xc3\xa9bastiani' +p205272 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205273 +sg25273 +S'lithograph' +p205274 +sg25275 +S'1833' +p205275 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091f3.jpg' +p205276 +sg25267 +g27 +sa(dp205277 +g25268 +S'Charles Guillaume \xc3\x89tienne' +p205278 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205279 +sg25273 +S'lithograph' +p205280 +sg25275 +S'1833' +p205281 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091f2.jpg' +p205282 +sg25267 +g27 +sa(dp205283 +g25268 +S'Antoine Odier' +p205284 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205285 +sg25273 +S'lithograph' +p205286 +sg25275 +S'1833' +p205287 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091f4.jpg' +p205288 +sg25267 +g27 +sa(dp205289 +g25268 +S'Docteur Prunelle' +p205290 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205291 +sg25273 +S'lithograph' +p205292 +sg25275 +S'1833' +p205293 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a000578b.jpg' +p205294 +sg25267 +g27 +sa(dp205295 +g25268 +S'F\xc3\xa9lix Barthe' +p205296 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205297 +sg25273 +S'lithograph' +p205298 +sg25275 +S'1833' +p205299 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a000578c.jpg' +p205300 +sg25267 +g27 +sa(dp205301 +g25268 +S'Baillot' +p205302 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205303 +sg25273 +S'lithograph' +p205304 +sg25275 +S'1833' +p205305 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091ef.jpg' +p205306 +sg25267 +g27 +sa(dp205307 +g25268 +S'Comte de K\xc3\xa9ratry' +p205308 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205309 +sg25273 +S'lithograph' +p205310 +sg25275 +S'1833' +p205311 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009202.jpg' +p205312 +sg25267 +g27 +sa(dp205313 +g25268 +S'Amiral de Rigny' +p205314 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205315 +sg25273 +S'lithograph' +p205316 +sg25275 +S'1833' +p205317 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a000578d.jpg' +p205318 +sg25267 +g27 +sa(dp205319 +g25268 +S"Le pass\xc3\xa9 - Le pr\xc3\xa9sent - l'Avenir" +p205320 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205321 +sg25273 +S'lithograph' +p205322 +sg25275 +S'1834' +p205323 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a000578e.jpg' +p205324 +sg25267 +g27 +sa(dp205325 +g25268 +S'The Annunciation' +p205326 +sg25270 +S'Albrecht D\xc3\xbcrer' +p205327 +sg25273 +S'woodcut' +p205328 +sg25275 +S'c. 1502/1504' +p205329 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b131.jpg' +p205330 +sg25267 +g27 +sa(dp205331 +g25268 +S'Gros Cupide, va!' +p205332 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205333 +sg25273 +S'lithograph' +p205334 +sg25275 +S'1834' +p205335 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091fc.jpg' +p205336 +sg25267 +g27 +sa(dp205337 +g25268 +S'Voyage a travers les populations empress\xc3\xa9es' +p205338 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205339 +sg25273 +S'lithograph' +p205340 +sg25275 +S'1834' +p205341 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091fe.jpg' +p205342 +sg25267 +g27 +sa(dp205343 +g25268 +S'Repos de la France' +p205344 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205345 +sg25273 +S'lithograph' +p205346 +sg25275 +S'1834' +p205347 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091fa.jpg' +p205348 +sg25267 +g27 +sa(dp205349 +g25268 +S'Baissez le rideau, la farce est jou\xc3\xa9e' +p205350 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205351 +sg25273 +S'lithograph' +p205352 +sg25275 +S'1834' +p205353 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a000578f.jpg' +p205354 +sg25267 +g27 +sa(dp205355 +g25268 +S'La t\xc3\xaate branlante' +p205356 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205357 +sg25273 +S'lithograph' +p205358 +sg25275 +S'1834' +p205359 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009201.jpg' +p205360 +sg25267 +g27 +sa(dp205361 +g25268 +S'Les honneurs du Panth\xc3\xa9on' +p205362 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205363 +sg25273 +S'lithograph' +p205364 +sg25275 +S'1834' +p205365 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091f6.jpg' +p205366 +sg25267 +g27 +sa(dp205367 +g25268 +S'Marie-Louise-Charlotte-Philippinepairie' +p205368 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205369 +sg25273 +S'lithograph' +p205370 +sg25275 +S'1834' +p205371 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091fb.jpg' +p205372 +sg25267 +g27 +sa(dp205373 +g25268 +S"La Tentation, parodie d'une toile de T\xc3\xa9niers" +p205374 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205375 +sg25273 +S'lithograph' +p205376 +sg25275 +S'1834' +p205377 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091fd.jpg' +p205378 +sg25267 +g27 +sa(dp205379 +g25268 +S'La premi\xc3\xa8re blessure' +p205380 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205381 +sg25273 +S'lithograph' +p205382 +sg25275 +S'1835' +p205383 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00091/a00091f7.jpg' +p205384 +sg25267 +g27 +sa(dp205385 +g25268 +S"L'Apoplexie allant remplacer a Londres la paralysie" +p205386 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205387 +sg25273 +S'lithograph' +p205388 +sg25275 +S'1835' +p205389 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009205.jpg' +p205390 +sg25267 +g27 +sa(dp205391 +g25268 +S'The Circumcision' +p205392 +sg25270 +S'Albrecht D\xc3\xbcrer' +p205393 +sg25273 +S'woodcut' +p205394 +sg25275 +S'c. 1504/1505' +p205395 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f20.jpg' +p205396 +sg25267 +g27 +sa(dp205397 +g25268 +S'Le Fantome' +p205398 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205399 +sg25273 +S'lithograph' +p205400 +sg25275 +S'1835' +p205401 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009208.jpg' +p205402 +sg25267 +g27 +sa(dp205403 +g25268 +S'Barb\xc3\xa9-Marbois' +p205404 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205405 +sg25273 +S'lithograph' +p205406 +sg25275 +S'1835' +p205407 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009206.jpg' +p205408 +sg25267 +g27 +sa(dp205409 +g25268 +S'Barb\xc3\xa9-Marbois' +p205410 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205411 +sg25273 +S'lithograph' +p205412 +sg25275 +S'1835' +p205413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009207.jpg' +p205414 +sg25267 +g27 +sa(dp205415 +g25268 +S'Comte Portalis - Duc de Bassano - Comte de Montlosier' +p205416 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205417 +sg25273 +S'lithograph' +p205418 +sg25275 +S'1835' +p205419 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f32.jpg' +p205420 +sg25267 +g27 +sa(dp205421 +g25268 +S"Girod de l'Ain - J.-Joseph Rousseau - Amiral Verhuel" +p205422 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205423 +sg25273 +S'lithograph' +p205424 +sg25275 +S'1835' +p205425 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f33.jpg' +p205426 +sg25267 +g27 +sa(dp205427 +g25268 +S'Huguet de S\xc3\xa9monville - Robert Macaire (Thiers) - Comte Roederer' +p205428 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205429 +sg25273 +S'lithograph' +p205430 +sg25275 +S'1835' +p205431 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005790.jpg' +p205432 +sg25267 +g27 +sa(dp205433 +g25268 +S'C.-A. Gabriel, duc de Choiseul' +p205434 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205435 +sg25273 +S'lithograph' +p205436 +sg25275 +S'1835' +p205437 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000920a.jpg' +p205438 +sg25267 +g27 +sa(dp205439 +g25268 +S'Gazan' +p205440 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205441 +sg25273 +S'lithograph' +p205442 +sg25275 +S'1835' +p205443 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009204.jpg' +p205444 +sg25267 +g27 +sa(dp205445 +g25268 +S'Napol\xc3\xa9on Lannes' +p205446 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205447 +sg25273 +S'lithograph' +p205448 +sg25275 +S'1835' +p205449 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009209.jpg' +p205450 +sg25267 +g27 +sa(dp205451 +g25268 +S'Le Ventre L\xc3\xa9gislatif' +p205452 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205453 +sg25273 +S'lithograph' +p205454 +sg25275 +S'1834' +p205455 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f10.jpg' +p205456 +sg25267 +g27 +sa(dp205457 +g25268 +S'The Adoration of the Magi' +p205458 +sg25270 +S'Albrecht D\xc3\xbcrer' +p205459 +sg25273 +S'woodcut' +p205460 +sg25275 +S'c. 1501/1503' +p205461 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b13e.jpg' +p205462 +sg25267 +g27 +sa(dp205463 +g25268 +S'Tr\xc3\xa8s hauts et tr\xc3\xa8s puissans moutards et moutardes l\xc3\xa9gitimes' +p205464 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205465 +sg25273 +S'lithograph' +p205466 +sg25275 +S'1834' +p205467 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a00c.jpg' +p205468 +sg25267 +g27 +sa(dp205469 +g25268 +S'Ne vous y frottez pas!!' +p205470 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205471 +sg25273 +S'lithograph' +p205472 +sg25275 +S'1834' +p205473 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f36.jpg' +p205474 +sg25267 +g27 +sa(dp205475 +g25268 +S'Enfonc\xc3\xa9 Lafayette!... Attrappe mon vieux!' +p205476 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205477 +sg25273 +S'lithograph' +p205478 +sg25275 +S'1834' +p205479 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f35.jpg' +p205480 +sg25267 +g27 +sa(dp205481 +g25268 +S'Rue Transnonain, le 15 avril 1834' +p205482 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205483 +sg25273 +S'lithograph' +p205484 +sg25275 +S'1834' +p205485 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057d1.jpg' +p205486 +sg25267 +g27 +sa(dp205487 +g25268 +S'Amiral Verhuel' +p205488 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205489 +sg25273 +S'lithograph' +p205490 +sg25275 +S'1835' +p205491 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009203.jpg' +p205492 +sg25267 +g27 +sa(dp205493 +g25268 +S'Comte J.-J\xc3\xa9rome Sim\xc3\xa9on' +p205494 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205495 +sg25273 +S'lithograph' +p205496 +sg25275 +S'1835' +p205497 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000920b.jpg' +p205498 +sg25267 +g27 +sa(dp205499 +g25268 +S'Baron de Lascours' +p205500 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205501 +sg25273 +S'lithograph' +p205502 +sg25275 +S'1835' +p205503 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000920c.jpg' +p205504 +sg25267 +g27 +sa(dp205505 +g25268 +S'Viennet a la Tribune' +p205506 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205507 +sg25273 +S'lithograph' +p205508 +sg25275 +S'1832' +p205509 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000920e.jpg' +p205510 +sg25267 +g27 +sa(dp205511 +g25268 +S'Les r\xc3\xa9jouissances de Juillet... vues de Ste. P\xc3\xa9lagie' +p205512 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205513 +sg25273 +S'lithograph' +p205514 +sg25275 +S'1834' +p205515 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000920f.jpg' +p205516 +sg25267 +g27 +sa(dp205517 +g25268 +S"Le Chevalier des Adrets est l'amant..." +p205518 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205519 +sg25273 +S'lithograph' +p205520 +sg25275 +S'1838' +p205521 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009227.jpg' +p205522 +sg25267 +g27 +sa(dp205523 +g25268 +S'Christ Taking Leave from His Mother' +p205524 +sg25270 +S'Albrecht D\xc3\xbcrer' +p205525 +sg25273 +S'woodcut' +p205526 +sg25275 +S'c. 1504/1505' +p205527 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b13c.jpg' +p205528 +sg25267 +g27 +sa(dp205529 +g25268 +S"C'est tout de m\xc3\xaame flatteur d'avoir fait tant d'\xc3\xa9l\xc3\xa8ves!..." +p205530 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205531 +sg25273 +S'lithograph' +p205532 +sg25275 +S'1838' +p205533 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000921b.jpg' +p205534 +sg25267 +g27 +sa(dp205535 +g25268 +S"L'\xc3\x89ducation au biberon" +p205536 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205537 +sg25273 +S'lithograph' +p205538 +sg25275 +S'1838' +p205539 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000923d.jpg' +p205540 +sg25267 +g27 +sa(dp205541 +g25268 +S"Oui Monsieur vous n'\xc3\xaates pas de Paris..." +p205542 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205543 +sg25273 +S'lithograph' +p205544 +sg25275 +S'1840' +p205545 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000923f.jpg' +p205546 +sg25267 +g27 +sa(dp205547 +g25268 +S'\xc3\x89picier citoyen, guerrier pur et sans tache...' +p205548 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205549 +sg25273 +S'lithograph' +p205550 +sg25275 +S'1841' +p205551 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009245.jpg' +p205552 +sg25267 +g27 +sa(dp205553 +g25268 +S"L'Oeil du maitre" +p205554 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205555 +sg25273 +S'lithograph' +p205556 +sg25275 +S'1842' +p205557 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092f1.jpg' +p205558 +sg25267 +g27 +sa(dp205559 +g25268 +S'Vol\xc3\xa9!... Rue vide-gousset...' +p205560 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205561 +sg25273 +S'lithograph' +p205562 +sg25275 +S'1839' +p205563 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092ee.jpg' +p205564 +sg25267 +g27 +sa(dp205565 +g25268 +S"C'est unique! j'ai pris quatre tailles..." +p205566 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205567 +sg25273 +S'lithograph' +p205568 +sg25275 +S'1840' +p205569 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093a8.jpg' +p205570 +sg25267 +g27 +sa(dp205571 +g25268 +S'Le Barbillon entraine...' +p205572 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205573 +sg25273 +S'lithograph' +p205574 +sg25275 +S'1840' +p205575 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009262.jpg' +p205576 +sg25267 +g27 +sa(dp205577 +g25268 +S'Le Barbillon entraine...' +p205578 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205579 +sg25273 +S'lithograph' +p205580 +sg25275 +S'1840' +p205581 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009261.jpg' +p205582 +sg25267 +g27 +sa(dp205583 +g25268 +S'Le Mendiant a domicile' +p205584 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205585 +sg25273 +S'lithograph' +p205586 +sg25275 +S'1841' +p205587 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000925f.jpg' +p205588 +sg25267 +g27 +sa(dp205589 +g25268 +S'The Holy Family with Two Music-Making Angels' +p205590 +sg25270 +S'Albrecht D\xc3\xbcrer' +p205591 +sg25273 +S'woodcut' +p205592 +sg25275 +S'1511' +p205593 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b232.jpg' +p205594 +sg25267 +g27 +sa(dp205595 +g25268 +S"L'Ami de coll\xc3\xa8ge" +p205596 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205597 +sg25273 +S'lithograph' +p205598 +sg25275 +S'1841' +p205599 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009263.jpg' +p205600 +sg25267 +g27 +sa(dp205601 +g25268 +S'Pique-Assiette' +p205602 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205603 +sg25273 +S'lithograph' +p205604 +sg25275 +S'1841' +p205605 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009279.jpg' +p205606 +sg25267 +g27 +sa(dp205607 +g25268 +S'Le Placeur' +p205608 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205609 +sg25273 +S'lithograph' +p205610 +sg25275 +S'1842' +p205611 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000927b.jpg' +p205612 +sg25267 +g27 +sa(dp205613 +g25268 +S'Le Claqueur' +p205614 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205615 +sg25273 +S'lithograph' +p205616 +sg25275 +S'1842' +p205617 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009276.jpg' +p205618 +sg25267 +g27 +sa(dp205619 +g25268 +S"L'Acteur des Funambules" +p205620 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205621 +sg25273 +S'lithograph' +p205622 +sg25275 +S'1842' +p205623 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000927c.jpg' +p205624 +sg25267 +g27 +sa(dp205625 +g25268 +S'Le Portier en tourn\xc3\xa9es de visites...' +p205626 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205627 +sg25273 +S'lithograph' +p205628 +sg25275 +S'1841' +p205629 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009272.jpg' +p205630 +sg25267 +g27 +sa(dp205631 +g25268 +S'Pour qui sont ces Serpents...' +p205632 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205633 +sg25273 +S'lithograph' +p205634 +sg25275 +S'1841' +p205635 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009292.jpg' +p205636 +sg25267 +g27 +sa(dp205637 +g25268 +S"J'ai vu Seigneur... votre malheureux fils..." +p205638 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205639 +sg25273 +S'lithograph' +p205640 +sg25275 +S'1841' +p205641 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009290.jpg' +p205642 +sg25267 +g27 +sa(dp205643 +g25268 +S'Je pars plus amoureux que... jamais...' +p205644 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205645 +sg25273 +S'lithograph' +p205646 +sg25275 +S'1841' +p205647 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009293.jpg' +p205648 +sg25267 +g27 +sa(dp205649 +g25268 +S'Ulysse et P\xc3\xa9n\xc3\xa9lope' +p205650 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205651 +sg25273 +S'lithograph' +p205652 +sg25275 +S'1842' +p205653 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a000929f.jpg' +p205654 +sg25267 +g27 +sa(dp205655 +g25268 +S'The Virgin Surrounded by Many Angels' +p205656 +sg25270 +S'Albrecht D\xc3\xbcrer' +p205657 +sg25273 +S'woodcut' +p205658 +sg25275 +S'1518' +p205659 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b22f.jpg' +p205660 +sg25267 +g27 +sa(dp205661 +g25268 +S'Le Supplice de Tantale' +p205662 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205663 +sg25273 +S'lithograph' +p205664 +sg25275 +S'1842' +p205665 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092a1.jpg' +p205666 +sg25267 +g27 +sa(dp205667 +g25268 +S'T\xc3\xa9l\xc3\xa9maque interrog\xc3\xa9 par les sages' +p205668 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205669 +sg25273 +S'lithograph' +p205670 +sg25275 +S'1842' +p205671 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092a5.jpg' +p205672 +sg25267 +g27 +sa(dp205673 +g25268 +S'Pygmalion' +p205674 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205675 +sg25273 +S'lithograph' +p205676 +sg25275 +S'1842' +p205677 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092a0.jpg' +p205678 +sg25267 +g27 +sa(dp205679 +g25268 +S'Le Futur monument de Napol\xc3\xa9on aux Invalides' +p205680 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205681 +sg25273 +S'hand-colored lithograph' +p205682 +sg25275 +S'1842' +p205683 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092a9.jpg' +p205684 +sg25267 +g27 +sa(dp205685 +g25268 +S"Impressions de voyage d'un grand poete" +p205686 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205687 +sg25273 +S'lithograph' +p205688 +sg25275 +S'1842' +p205689 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092a4.jpg' +p205690 +sg25267 +g27 +sa(dp205691 +g25268 +S'Les Journaux bienfaisans' +p205692 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205693 +sg25273 +S'hand-colored lithograph' +p205694 +sg25275 +S'1842' +p205695 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092a8.jpg' +p205696 +sg25267 +g27 +sa(dp205697 +g25268 +S'Dites donc, mame Giboulard...' +p205698 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205699 +sg25273 +S'lithograph' +p205700 +sg25275 +S'1843' +p205701 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092a2.jpg' +p205702 +sg25267 +g27 +sa(dp205703 +g25268 +S"L'Entr\xc3\xa9e dans la vie" +p205704 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205705 +sg25273 +S'lithograph' +p205706 +sg25275 +S'1843' +p205707 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092b6.jpg' +p205708 +sg25267 +g27 +sa(dp205709 +g25268 +S"Un Voyage d'agr\xc3\xa9ment a Paris" +p205710 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205711 +sg25273 +S'lithograph' +p205712 +sg25275 +S'1843' +p205713 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092af.jpg' +p205714 +sg25267 +g27 +sa(dp205715 +g25268 +S"Vois-tu, mon ami... il n'y a que deux \xc3\xa9lemens... du bonheur..." +p205716 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205717 +sg25273 +S'lithograph' +p205718 +sg25275 +S'1843' +p205719 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092b7.jpg' +p205720 +sg25267 +g27 +sa(dp205721 +g25268 +S'The Holy Family with the Three Hares' +p205722 +sg25270 +S'Albrecht D\xc3\xbcrer' +p205723 +sg25273 +S'woodcut' +p205724 +sg25275 +S'c. 1497/1498' +p205725 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b22a.jpg' +p205726 +sg25267 +g27 +sa(dp205727 +g25268 +S'Une R\xc3\xa9volte a bord' +p205728 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205729 +sg25273 +S'lithograph' +p205730 +sg25275 +S'1843' +p205731 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092ba.jpg' +p205732 +sg25267 +g27 +sa(dp205733 +g25268 +S"Ah! ben... le convoi... peut se flatter de l'\xc3\xa9chapper..." +p205734 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205735 +sg25273 +S'lithograph' +p205736 +sg25275 +S'1843' +p205737 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092bd.jpg' +p205738 +sg25267 +g27 +sa(dp205739 +g25268 +S'Allons donc... que diable cocher...' +p205740 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205741 +sg25273 +S'lithograph' +p205742 +sg25275 +S'1843' +p205743 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092b8.jpg' +p205744 +sg25267 +g27 +sa(dp205745 +g25268 +S'La Rencontre sous bois' +p205746 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205747 +sg25273 +S'lithograph' +p205748 +sg25275 +S'1844' +p205749 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092c4.jpg' +p205750 +sg25267 +g27 +sa(dp205751 +g25268 +S'Un Amant trop heureux' +p205752 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205753 +sg25273 +S'lithograph' +p205754 +sg25275 +S'1844' +p205755 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092c6.jpg' +p205756 +sg25267 +g27 +sa(dp205757 +g25268 +S'Une Demande en s\xc3\xa9paration' +p205758 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205759 +sg25273 +S'lithograph' +p205760 +sg25275 +S'1845' +p205761 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092de.jpg' +p205762 +sg25267 +g27 +sa(dp205763 +g25268 +S'Devant M. le Maire' +p205764 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205765 +sg25273 +S'lithograph' +p205766 +sg25275 +S'1845' +p205767 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092dd.jpg' +p205768 +sg25267 +g27 +sa(dp205769 +g25268 +S"Une Maitresse a l'Op\xc3\xa9ra" +p205770 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205771 +sg25273 +S'lithograph' +p205772 +sg25275 +S'1845' +p205773 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092e0.jpg' +p205774 +sg25267 +g27 +sa(dp205775 +g25268 +S'Les Fumeurs de Hadchids' +p205776 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205777 +sg25273 +S'lithograph' +p205778 +sg25275 +S'1845' +p205779 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092df.jpg' +p205780 +sg25267 +g27 +sa(dp205781 +g25268 +S'Un Vainqueur de Steeple-chase' +p205782 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205783 +sg25273 +S'lithograph' +p205784 +sg25275 +S'1845' +p205785 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092eb.jpg' +p205786 +sg25267 +g27 +sa(dp205787 +g25268 +S'Bath House' +p205788 +sg25270 +S'Albrecht D\xc3\xbcrer' +p205789 +sg25273 +S'woodcut' +p205790 +sg25275 +S'c. 1496/1497' +p205791 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b24d.jpg' +p205792 +sg25267 +g27 +sa(dp205793 +g25268 +S'Le Format de plus en plus monstre' +p205794 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205795 +sg25273 +S'lithograph' +p205796 +sg25275 +S'1845' +p205797 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092e8.jpg' +p205798 +sg25267 +g27 +sa(dp205799 +g25268 +S'Un Chapeau Pam\xc3\xa8la' +p205800 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205801 +sg25273 +S'lithograph' +p205802 +sg25275 +S'1845' +p205803 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092ea.jpg' +p205804 +sg25267 +g27 +sa(dp205805 +g25268 +S'Les Cr\xc3\xaapes' +p205806 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205807 +sg25273 +S'lithograph' +p205808 +sg25275 +S'1845' +p205809 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092e7.jpg' +p205810 +sg25267 +g27 +sa(dp205811 +g25268 +S'Une Visite du 1er Janvier' +p205812 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205813 +sg25273 +S'lithograph' +p205814 +sg25275 +S'1846' +p205815 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092ff.jpg' +p205816 +sg25267 +g27 +sa(dp205817 +g25268 +S"R\xc3\xa9ception d'un franc-ma\xc3\xa7on" +p205818 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205819 +sg25273 +S'lithograph' +p205820 +sg25275 +S'1846' +p205821 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009301.jpg' +p205822 +sg25267 +g27 +sa(dp205823 +g25268 +S'Un P\xc3\xa8re heureux' +p205824 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205825 +sg25273 +S'lithograph' +p205826 +sg25275 +S'1846' +p205827 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009305.jpg' +p205828 +sg25267 +g27 +sa(dp205829 +g25268 +S'Une Nouvelle connaissance' +p205830 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205831 +sg25273 +S'lithograph' +p205832 +sg25275 +S'1846' +p205833 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009300.jpg' +p205834 +sg25267 +g27 +sa(dp205835 +g25268 +S'Un Retour de jeunesse' +p205836 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205837 +sg25273 +S'lithograph' +p205838 +sg25275 +S'1846' +p205839 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009307.jpg' +p205840 +sg25267 +g27 +sa(dp205841 +g25268 +S'Un Monsieur qui veut se donner la satisfaction...' +p205842 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205843 +sg25273 +S'lithograph' +p205844 +sg25275 +S'1846' +p205845 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009303.jpg' +p205846 +sg25267 +g27 +sa(dp205847 +g25268 +S'Adieu, mon cher, je vais chez mes \xc3\xa9diteurs...' +p205848 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205849 +sg25273 +S'lithograph' +p205850 +sg25275 +S'1844' +p205851 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a0005901.jpg' +p205852 +sg25267 +g27 +sa(dp205853 +g25268 +S'The Knight on Horseback and the Lansquenet' +p205854 +sg25270 +S'Albrecht D\xc3\xbcrer' +p205855 +sg25273 +S'woodcut' +p205856 +sg25275 +S'c. 1496/1497' +p205857 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b24c.jpg' +p205858 +sg25267 +g27 +sa(dp205859 +g25268 +S'Carotte du restaurant' +p205860 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205861 +sg25273 +S'lithograph' +p205862 +sg25275 +S'1844' +p205863 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000932b.jpg' +p205864 +sg25267 +g27 +sa(dp205865 +g25268 +S'Oui, mon cher monsieur Badoulard, je vais...' +p205866 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205867 +sg25273 +S'lithograph' +p205868 +sg25275 +S'1845' +p205869 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009327.jpg' +p205870 +sg25267 +g27 +sa(dp205871 +g25268 +S'Abonn\xc3\xa9s recevant leur journal...' +p205872 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205873 +sg25273 +S'lithograph' +p205874 +sg25275 +S'1845' +p205875 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009330.jpg' +p205876 +sg25267 +g27 +sa(dp205877 +g25268 +S'Gibier qui peut \xc3\xaatre chass\xc3\xa9 en toutes les saisons' +p205878 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205879 +sg25273 +S'lithograph' +p205880 +sg25275 +S'1845' +p205881 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009332.jpg' +p205882 +sg25267 +g27 +sa(dp205883 +g25268 +S'La Cour, vidant le d\xc3\xa9lib\xc3\xa9r\xc3\xa9...' +p205884 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205885 +sg25273 +S'lithograph' +p205886 +sg25275 +S'1845' +p205887 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000932d.jpg' +p205888 +sg25267 +g27 +sa(dp205889 +g25268 +S'Et parlant a sa porti\xc3\xa8re ainsi d\xc3\xa9clar\xc3\xa9e...' +p205890 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205891 +sg25273 +S'lithograph' +p205892 +sg25275 +S'1845' +p205893 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000933c.jpg' +p205894 +sg25267 +g27 +sa(dp205895 +g25268 +S'Mr. le Juge de paix a rendu sa d\xc3\xa9cision...' +p205896 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205897 +sg25273 +S'lithograph' +p205898 +sg25275 +S'1846' +p205899 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000934c.jpg' +p205900 +sg25267 +g27 +sa(dp205901 +g25268 +S'Voila le minist\xc3\xa8re public qui vous dit des choses... d\xc3\xa9sagr\xc3\xa9ables...' +p205902 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205903 +sg25273 +S'lithograph' +p205904 +sg25275 +S'1846' +p205905 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009344.jpg' +p205906 +sg25267 +g27 +sa(dp205907 +g25268 +S"Il d\xc3\xa9fend l'orphelin et la veuve, a moins..." +p205908 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205909 +sg25273 +S'lithograph' +p205910 +sg25275 +S'1846' +p205911 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000933f.jpg' +p205912 +sg25267 +g27 +sa(dp205913 +g25268 +S"Au Caf\xc3\xa9 d'Aguesseau" +p205914 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205915 +sg25273 +S'lithograph' +p205916 +sg25275 +S'1846' +p205917 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000933d.jpg' +p205918 +sg25267 +g27 +sa(dp205919 +g25268 +S'The Smiling Girl' +p205920 +sg25270 +S'Artist Information (' +p205921 +sg25273 +S'Dutch, 1632 - 1675' +p205922 +sg25275 +S'(related artist)' +p205923 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00052/a0005209.jpg' +p205924 +sg25267 +g27 +sa(dp205925 +g25268 +S'The Nativity' +p205926 +sg25270 +S'Martin Schongauer' +p205927 +sg25273 +S'engraving' +p205928 +sg25275 +S'c. 1470/1475' +p205929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f9f.jpg' +p205930 +sg25267 +g27 +sa(dp205931 +g25268 +S'Un D\xc3\xa9fenseur... causant... dans son cabinet habituel' +p205932 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205933 +sg25273 +S'lithograph' +p205934 +sg25275 +S'1846' +p205935 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009345.jpg' +p205936 +sg25267 +g27 +sa(dp205937 +g25268 +S"Nous avons grande repr\xc3\xa9sentation aujourd'hui" +p205938 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205939 +sg25273 +S'lithograph' +p205940 +sg25275 +S'1847' +p205941 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000934d.jpg' +p205942 +sg25267 +g27 +sa(dp205943 +g25268 +S'Encore perdu en Cour Royale... et il se lamente...' +p205944 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205945 +sg25273 +S'lithograph' +p205946 +sg25275 +S'1848' +p205947 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009357.jpg' +p205948 +sg25267 +g27 +sa(dp205949 +g25268 +S"Vous avez perdu votre proc\xc3\xa8s c'est vrai..." +p205950 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205951 +sg25273 +S'lithograph' +p205952 +sg25275 +S'1848' +p205953 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009359.jpg' +p205954 +sg25267 +g27 +sa(dp205955 +g25268 +S"Ton habit me convient, je te l'emprunte..." +p205956 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205957 +sg25273 +S'lithograph' +p205958 +sg25275 +S'1845' +p205959 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009365.jpg' +p205960 +sg25267 +g27 +sa(dp205961 +g25268 +S'Un Ami est un crocrodile...' +p205962 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205963 +sg25273 +S'lithograph' +p205964 +sg25275 +S'1845' +p205965 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009362.jpg' +p205966 +sg25267 +g27 +sa(dp205967 +g25268 +S"Mon cher je t'assure que je te..." +p205968 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205969 +sg25273 +S'lithograph' +p205970 +sg25275 +S'1845' +p205971 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009364.jpg' +p205972 +sg25267 +g27 +sa(dp205973 +g25268 +S'Est-ce que votre mari serait jaloux...' +p205974 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205975 +sg25273 +S'lithograph' +p205976 +sg25275 +S'1845' +p205977 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000935b.jpg' +p205978 +sg25267 +g27 +sa(dp205979 +g25268 +S'Comment!... tous mes moutons sont morts...' +p205980 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205981 +sg25273 +S'lithograph' +p205982 +sg25275 +S'1845' +p205983 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000936e.jpg' +p205984 +sg25267 +g27 +sa(dp205985 +g25268 +S'The Agony in the Garden' +p205986 +sg25270 +S'Martin Schongauer' +p205987 +sg25273 +S'engraving' +p205988 +sg25275 +S'c. 1480' +p205989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4c2.jpg' +p205990 +sg25267 +g27 +sa(dp205991 +g25268 +S'Comment trouvez-vous ce petit vin-la...' +p205992 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205993 +sg25273 +S'lithograph' +p205994 +sg25275 +S'1845' +p205995 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000936b.jpg' +p205996 +sg25267 +g27 +sa(dp205997 +g25268 +S'Dis donc ma femme... je ne vois rien!' +p205998 +sg25270 +S'Honor\xc3\xa9 Daumier' +p205999 +sg25273 +S'lithograph' +p206000 +sg25275 +S'1845' +p206001 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000936c.jpg' +p206002 +sg25267 +g27 +sa(dp206003 +g25268 +S"Ah! Gringalet d'Paris... tu viendras faire danser..." +p206004 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206005 +sg25273 +S'lithograph' +p206006 +sg25275 +S'1845' +p206007 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000936a.jpg' +p206008 +sg25267 +g27 +sa(dp206009 +g25268 +S"J'ai vu un li\xc3\xa8vre... il y a huit jours!" +p206010 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206011 +sg25273 +S'lithograph' +p206012 +sg25275 +S'1846' +p206013 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009377.jpg' +p206014 +sg25267 +g27 +sa(dp206015 +g25268 +S"Ah! il est frais... mais t'nez donc gar\xc3\xa7on..." +p206016 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206017 +sg25273 +S'lithograph' +p206018 +sg25275 +S'1846' +p206019 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000939d.jpg' +p206020 +sg25267 +g27 +sa(dp206021 +g25268 +S"Qu'il est gentil comme \xc3\xa7a, Dodore..." +p206022 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206023 +sg25273 +S'lithograph' +p206024 +sg25275 +S'1847' +p206025 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009396.jpg' +p206026 +sg25267 +g27 +sa(dp206027 +g25268 +S'Ah! vous \xc3\xaates fort en vers latins, jeune homme...' +p206028 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206029 +sg25273 +S'lithograph' +p206030 +sg25275 +S'1847' +p206031 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009394.jpg' +p206032 +sg25267 +g27 +sa(dp206033 +g25268 +S"Papa contemplant l'image de son image" +p206034 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206035 +sg25273 +S'lithograph' +p206036 +sg25275 +S'1847' +p206037 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000939b.jpg' +p206038 +sg25267 +g27 +sa(dp206039 +g25268 +S"Je crois que j'ai entendu chanter un hibou..." +p206040 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206041 +sg25273 +S'lithograph' +p206042 +sg25275 +S'1847' +p206043 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093ac.jpg' +p206044 +sg25267 +g27 +sa(dp206045 +g25268 +S'Au novel an, visite... a la tante Rabourdin' +p206046 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206047 +sg25273 +S'lithograph' +p206048 +sg25275 +S'1847' +p206049 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093ae.jpg' +p206050 +sg25267 +g27 +sa(dp206051 +g25268 +S'The Betrayal and Capture of Christ' +p206052 +sg25270 +S'Martin Schongauer' +p206053 +sg25273 +S'engraving on laid paper' +p206054 +sg25275 +S'c. 1480' +p206055 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4c6.jpg' +p206056 +sg25267 +g27 +sa(dp206057 +g25268 +S'Bourgeois se fesant lire, apr\xc3\xa8s diner, quelques chapitres...' +p206058 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206059 +sg25273 +S'lithograph' +p206060 +sg25275 +S'1847' +p206061 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093b5.jpg' +p206062 +sg25267 +g27 +sa(dp206063 +g25268 +S"Le Jour ou il s'agit de faire une conqu\xc3\xaate" +p206064 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206065 +sg25273 +S'lithograph' +p206066 +sg25275 +S'1847' +p206067 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093ba.jpg' +p206068 +sg25267 +g27 +sa(dp206069 +g25268 +S"Doux loisir d'un quincailler retir\xc3\xa9 di commerce..." +p206070 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206071 +sg25273 +S'lithograph' +p206072 +sg25275 +S'1848' +p206073 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093b7.jpg' +p206074 +sg25267 +g27 +sa(dp206075 +g25268 +S'Est-il dieu permis... fendre du bois...' +p206076 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206077 +sg25273 +S'lithograph' +p206078 +sg25275 +S'1847' +p206079 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093d9.jpg' +p206080 +sg25267 +g27 +sa(dp206081 +g25268 +S'Inconv\xc3\xa9nient de visiter sans pr\xc3\xa9caution un entresol...' +p206082 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206083 +sg25273 +S'lithograph' +p206084 +sg25275 +S'1847' +p206085 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093d6.jpg' +p206086 +sg25267 +g27 +sa(dp206087 +g25268 +S'Brigand de propri\xc3\xa9taire...' +p206088 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206089 +sg25273 +S'lithograph' +p206090 +sg25275 +S'1847' +p206091 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093d1.jpg' +p206092 +sg25267 +g27 +sa(dp206093 +g25268 +S'Un Locataire qui a eu un oubli le 1er janvier' +p206094 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206095 +sg25273 +S'lithograph' +p206096 +sg25275 +S'1847' +p206097 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093e5.jpg' +p206098 +sg25267 +g27 +sa(dp206099 +g25268 +S'Guide, allons-nous-en... au nom du ciel...' +p206100 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206101 +sg25273 +S'lithograph' +p206102 +sg25275 +S'1846' +p206103 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009387.jpg' +p206104 +sg25267 +g27 +sa(dp206105 +g25268 +S"Attends... j'te vas en donner... du maitre d'\xc3\xa9cole" +p206106 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206107 +sg25273 +S'lithograph' +p206108 +sg25275 +S'1846' +p206109 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000937d.jpg' +p206110 +sg25267 +g27 +sa(dp206111 +g25268 +S'Mission p\xc3\xa9nible et d\xc3\xa9licate du professeur de dessin...' +p206112 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206113 +sg25273 +S'lithograph' +p206114 +sg25275 +S'1846' +p206115 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a000937c.jpg' +p206116 +sg25267 +g27 +sa(dp206117 +g25268 +S'Christ before Annas' +p206118 +sg25270 +S'Martin Schongauer' +p206119 +sg25273 +S'engraving' +p206120 +sg25275 +S'c. 1480' +p206121 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4c3.jpg' +p206122 +sg25267 +g27 +sa(dp206123 +g25268 +S'Une Position difficile' +p206124 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206125 +sg25273 +S'lithograph' +p206126 +sg25275 +S'1847' +p206127 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093b6.jpg' +p206128 +sg25267 +g27 +sa(dp206129 +g25268 +S'Entrez donc, monsieur... ne vous g\xc3\xaanez pas...' +p206130 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206131 +sg25273 +S'lithograph' +p206132 +sg25275 +S'1847' +p206133 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093b1.jpg' +p206134 +sg25267 +g27 +sa(dp206135 +g25268 +S"Diable!... il parait que le rasoir n'est gu\xc3\xa8re bon..." +p206136 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206137 +sg25273 +S'lithograph' +p206138 +sg25275 +S'1847' +p206139 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093ab.jpg' +p206140 +sg25267 +g27 +sa(dp206141 +g25268 +S'\xc3\x89quitation boutiqui\xc3\xa8re' +p206142 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206143 +sg25273 +S'lithograph' +p206144 +sg25275 +S'1839' +p206145 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009256.jpg' +p206146 +sg25267 +g27 +sa(dp206147 +g25268 +S'Et on appelle \xc3\xa7a descendre le fleuve de la vie...' +p206148 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206149 +sg25273 +S'lithograph' +p206150 +sg25275 +S'1842' +p206151 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092fa.jpg' +p206152 +sg25267 +g27 +sa(dp206153 +g25268 +S'Le Puits de Grenelle' +p206154 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206155 +sg25273 +S'lithograph' +p206156 +sg25275 +S'1841' +p206157 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092f8.jpg' +p206158 +sg25267 +g27 +sa(dp206159 +g25268 +S'Les Badauds' +p206160 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206161 +sg25273 +S'lithograph' +p206162 +sg25275 +S'1839' +p206163 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009257.jpg' +p206164 +sg25267 +g27 +sa(dp206165 +g25268 +S"Pr\xc3\xa9sentation d'Ulysse a Nausica" +p206166 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206167 +sg25273 +S'lithograph' +p206168 +sg25275 +S'1842' +p206169 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009296.jpg' +p206170 +sg25267 +g27 +sa(dp206171 +g25268 +S'Une Rencontre en pleine eau' +p206172 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206173 +sg25273 +S'lithograph' +p206174 +sg25275 +S'1843' +p206175 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092b5.jpg' +p206176 +sg25267 +g27 +sa(dp206177 +g25268 +S'Trente secondes de station' +p206178 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206179 +sg25273 +S'lithograph' +p206180 +sg25275 +S'1843' +p206181 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092be.jpg' +p206182 +sg25267 +g27 +sa(dp206183 +g25268 +S'The Flagellation' +p206184 +sg25270 +S'Martin Schongauer' +p206185 +sg25273 +S'engraving' +p206186 +sg25275 +S'c. 1480' +p206187 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4c5.jpg' +p206188 +sg25267 +g27 +sa(dp206189 +g25268 +S'Si ma machine est bonne? je crois bien...' +p206190 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206191 +sg25273 +S'lithograph' +p206192 +sg25275 +S'1843' +p206193 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092bb.jpg' +p206194 +sg25267 +g27 +sa(dp206195 +g25268 +S'Si ma machine est bonne? je crois bien...' +p206196 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206197 +sg25273 +S'lithograph' +p206198 +sg25275 +S'1843' +p206199 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092b9.jpg' +p206200 +sg25267 +g27 +sa(dp206201 +g25268 +S'Un Pauvre p\xc3\xa8re de famille qui...' +p206202 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206203 +sg25273 +S'lithograph' +p206204 +sg25275 +S'1843' +p206205 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a00092ca.jpg' +p206206 +sg25267 +g27 +sa(dp206207 +g25268 +S'On rend des comptes aux actionnaires' +p206208 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206209 +sg25273 +S'lithograph' +p206210 +sg25275 +S'1846' +p206211 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a0009309.jpg' +p206212 +sg25267 +g27 +sa(dp206213 +g25268 +S"Mais puisque j'vous dis que c'est son ballon..." +p206214 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206215 +sg25273 +S'lithograph' +p206216 +sg25275 +S'1847' +p206217 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093b9.jpg' +p206218 +sg25267 +g27 +sa(dp206219 +g25268 +S"Le\xc3\xa7on d'\xc3\xa9quitation, haute \xc3\xa9cole" +p206220 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206221 +sg25273 +S'lithograph' +p206222 +sg25275 +S'1846' +p206223 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093be.jpg' +p206224 +sg25267 +g27 +sa(dp206225 +g25268 +S'Comment on donne... le go\xc3\xbbt de la navigation' +p206226 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206227 +sg25273 +S'lithograph' +p206228 +sg25275 +S'1846' +p206229 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093bf.jpg' +p206230 +sg25267 +g27 +sa(dp206231 +g25268 +S'Un P\xc3\xa8re qui fait sucer \xc3\xa0 son fils...' +p206232 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206233 +sg25273 +S'lithograph' +p206234 +sg25275 +S'1847' +p206235 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093c3.jpg' +p206236 +sg25267 +g27 +sa(dp206237 +g25268 +S"Une Famille chez qui r\xc3\xa9side l'instinct guerrier" +p206238 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206239 +sg25273 +S'lithograph' +p206240 +sg25275 +S'1847' +p206241 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093c8.jpg' +p206242 +sg25267 +g27 +sa(dp206243 +g25268 +S'Allons, papa... encore... trente-deux tours!...' +p206244 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206245 +sg25273 +S'lithograph' +p206246 +sg25275 +S'1847' +p206247 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093cb.jpg' +p206248 +sg25267 +g27 +sa(dp206249 +g25268 +S'Christ Crowned with Thorns' +p206250 +sg25270 +S'Martin Schongauer' +p206251 +sg25273 +S'engraving on laid paper' +p206252 +sg25275 +S'c. 1480' +p206253 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4bc.jpg' +p206254 +sg25267 +g27 +sa(dp206255 +g25268 +S"Un Enfant qui s'amuse de peu..." +p206256 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206257 +sg25273 +S'lithograph' +p206258 +sg25275 +S'1847' +p206259 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093ca.jpg' +p206260 +sg25267 +g27 +sa(dp206261 +g25268 +S'Une Nuit agit\xc3\xa9e' +p206262 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206263 +sg25273 +S'lithograph' +p206264 +sg25275 +S'1847' +p206265 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093d0.jpg' +p206266 +sg25267 +g27 +sa(dp206267 +g25268 +S'La Premi\xc3\xa8re le\xc3\xa7on de natation' +p206268 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206269 +sg25273 +S'lithograph' +p206270 +sg25275 +S'1847' +p206271 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093cf.jpg' +p206272 +sg25267 +g27 +sa(dp206273 +g25268 +S'Plaisirs de la paternit\xc3\xa9' +p206274 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206275 +sg25273 +S'lithograph' +p206276 +sg25275 +S'1847' +p206277 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093c9.jpg' +p206278 +sg25267 +g27 +sa(dp206279 +g25268 +S'Un Fils mod\xc3\xa8le' +p206280 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206281 +sg25273 +S'lithograph' +p206282 +sg25275 +S'1847' +p206283 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093c7.jpg' +p206284 +sg25267 +g27 +sa(dp206285 +g25268 +S'Ornamentation for a Dagger and Scabbard' +p206286 +sg25270 +S'Artist Information (' +p206287 +sg25273 +S'(artist after)' +p206288 +sg25275 +S'\n' +p206289 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db1d.jpg' +p206290 +sg25267 +g27 +sa(dp206291 +g25268 +S'Ah! monsieur... faut pas lui rire comme \xc3\xa7a...' +p206292 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206293 +sg25273 +S'lithograph' +p206294 +sg25275 +S'1848' +p206295 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093ce.jpg' +p206296 +sg25267 +g27 +sa(dp206297 +g25268 +S'Le Jour de sortie' +p206298 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206299 +sg25273 +S'lithograph' +p206300 +sg25275 +S'unknown date\n' +p206301 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093cc.jpg' +p206302 +sg25267 +g27 +sa(dp206303 +g25268 +S'Inconv\xc3\xa9nient de mettre son logement...' +p206304 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206305 +sg25273 +S'lithograph' +p206306 +sg25275 +S'1847' +p206307 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093d2.jpg' +p206308 +sg25267 +g27 +sa(dp206309 +g25268 +S'Mais monsieur le propri\xc3\xa9taire, voyez...' +p206310 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206311 +sg25273 +S'lithograph' +p206312 +sg25275 +S'1847' +p206313 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093d4.jpg' +p206314 +sg25267 +g27 +sa(dp206315 +g25268 +S'Christ before Pilate' +p206316 +sg25270 +S'Martin Schongauer' +p206317 +sg25273 +S'engraving' +p206318 +sg25275 +S'c. 1480' +p206319 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4c0.jpg' +p206320 +sg25267 +g27 +sa(dp206321 +g25268 +S'D\xc3\xa9m\xc3\xa9nag\xc3\xa9!...' +p206322 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206323 +sg25273 +S'lithograph' +p206324 +sg25275 +S'1847' +p206325 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093da.jpg' +p206326 +sg25267 +g27 +sa(dp206327 +g25268 +S"Vue d'une antichambre minist\xc3\xa9rielle..." +p206328 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206329 +sg25273 +S'lithograph' +p206330 +sg25275 +S'1849' +p206331 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009403.jpg' +p206332 +sg25267 +g27 +sa(dp206333 +g25268 +S"Oui, monsieur Gimblet, l'ordre ne sera... r\xc3\xa9tabli..." +p206334 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206335 +sg25273 +S'lithograph' +p206336 +sg25275 +S'1851' +p206337 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009401.jpg' +p206338 +sg25267 +g27 +sa(dp206339 +g25268 +S"Madame, j'ai bien l'honneur!" +p206340 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206341 +sg25273 +S'lithograph' +p206342 +sg25275 +S'1848' +p206343 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009418.jpg' +p206344 +sg25267 +g27 +sa(dp206345 +g25268 +S'Comment, Saint-Gervais a pris cette...' +p206346 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206347 +sg25273 +S'lithograph' +p206348 +sg25275 +S'1850' +p206349 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009412.jpg' +p206350 +sg25267 +g27 +sa(dp206351 +g25268 +S'Aper\xc3\xa7ois-tu un lieu civilis\xc3\xa9...' +p206352 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206353 +sg25273 +S'lithograph' +p206354 +sg25275 +S'1849' +p206355 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009415.jpg' +p206356 +sg25267 +g27 +sa(dp206357 +g25268 +S"Inconv\xc3\xa9nient d'envoyer un mauvais tableau..." +p206358 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206359 +sg25273 +S'lithograph' +p206360 +sg25275 +S'1848' +p206361 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009419.jpg' +p206362 +sg25267 +g27 +sa(dp206363 +g25268 +S"Tu m'reprendras encore... a aller souhaiter..." +p206364 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206365 +sg25273 +S'lithograph' +p206366 +sg25275 +S'1848' +p206367 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009416.jpg' +p206368 +sg25267 +g27 +sa(dp206369 +g25268 +S'Est-il bon, au moins, votre vin!...' +p206370 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206371 +sg25273 +S'lithograph' +p206372 +sg25275 +S'1848' +p206373 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009417.jpg' +p206374 +sg25267 +g27 +sa(dp206375 +g25268 +S"Une Gloire \xc3\xa9teint l'autre" +p206376 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206377 +sg25273 +S'lithograph' +p206378 +sg25275 +S'probably 1849' +p206379 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009413.jpg' +p206380 +sg25267 +g27 +sa(dp206381 +g25268 +S'Ecce Homo' +p206382 +sg25270 +S'Martin Schongauer' +p206383 +sg25273 +S'engraving' +p206384 +sg25275 +S'c. 1480' +p206385 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a49f.jpg' +p206386 +sg25267 +g27 +sa(dp206387 +g25268 +S'Tiens... je ne te reconnaissais pas...' +p206388 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206389 +sg25273 +S'lithograph' +p206390 +sg25275 +S'1848' +p206391 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000940d.jpg' +p206392 +sg25267 +g27 +sa(dp206393 +g25268 +S'Ce satan\xc3\xa9 Pigochard...' +p206394 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206395 +sg25273 +S'lithograph' +p206396 +sg25275 +S'1848' +p206397 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009414.jpg' +p206398 +sg25267 +g27 +sa(dp206399 +g25268 +S"L'Interdiction du port des d\xc3\xa9corations" +p206400 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206401 +sg25273 +S'lithograph' +p206402 +sg25275 +S'1848' +p206403 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009411.jpg' +p206404 +sg25267 +g27 +sa(dp206405 +g25268 +S'Le Voyage en chemin de fer...' +p206406 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206407 +sg25273 +S'lithograph' +p206408 +sg25275 +S'1848' +p206409 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000941f.jpg' +p206410 +sg25267 +g27 +sa(dp206411 +g25268 +S'Rifolard est plus charm\xc3\xa9 que jamais...' +p206412 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206413 +sg25273 +S'lithograph' +p206414 +sg25275 +S'1848' +p206415 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009420.jpg' +p206416 +sg25267 +g27 +sa(dp206417 +g25268 +S"Plusieurs gardes nationaux qui n'avaient pas song\xc3\xa9..." +p206418 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206419 +sg25273 +S'lithograph' +p206420 +sg25275 +S'1848' +p206421 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000941e.jpg' +p206422 +sg25267 +g27 +sa(dp206423 +g25268 +S'D\xc3\xa9cid\xc3\xa9ment nous nous amusons trop, Guillochard!...' +p206424 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206425 +sg25273 +S'lithograph' +p206426 +sg25275 +S'1849' +p206427 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000941c.jpg' +p206428 +sg25267 +g27 +sa(dp206429 +g25268 +S'Les Deux banqueteurs en joie' +p206430 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206431 +sg25273 +S'lithograph' +p206432 +sg25275 +S'1849' +p206433 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000941d.jpg' +p206434 +sg25267 +g27 +sa(dp206435 +g25268 +S"Les Journaux Napol\xc3\xa9oniens sortant de l'Assembl\xc3\xa9e Nationale..." +p206436 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206437 +sg25273 +S'lithograph' +p206438 +sg25275 +S'1848' +p206439 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000941b.jpg' +p206440 +sg25267 +g27 +sa(dp206441 +g25268 +S'Un D\xc3\xa9m\xc3\xa9nagement furtif' +p206442 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206443 +sg25273 +S'lithograph' +p206444 +sg25275 +S'1847' +p206445 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093dc.jpg' +p206446 +sg25267 +g27 +sa(dp206447 +g25268 +S'The Bearing of the Cross with Saint Veronica' +p206448 +sg25270 +S'Martin Schongauer' +p206449 +sg25273 +S'engraving' +p206450 +sg25275 +S'c. 1480' +p206451 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a49e.jpg' +p206452 +sg25267 +g27 +sa(dp206453 +g25268 +S'Comment on comprend le balcon Espagnol a Paris' +p206454 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206455 +sg25273 +S'lithograph' +p206456 +sg25275 +S'1847' +p206457 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093e7.jpg' +p206458 +sg25267 +g27 +sa(dp206459 +g25268 +S'Un Locataire qui paie exactement son terme' +p206460 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206461 +sg25273 +S'lithograph' +p206462 +sg25275 +S'1847' +p206463 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093e9.jpg' +p206464 +sg25267 +g27 +sa(dp206465 +g25268 +S'Le Compte est-il bien exact?...' +p206466 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206467 +sg25273 +S'lithograph' +p206468 +sg25275 +S'1847' +p206469 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093e4.jpg' +p206470 +sg25267 +g27 +sa(dp206471 +g25268 +S'Eh! bien monsieur et mes trois termes...' +p206472 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206473 +sg25273 +S'lithograph' +p206474 +sg25275 +S'1848' +p206475 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093e3.jpg' +p206476 +sg25267 +g27 +sa(dp206477 +g25268 +S'Tiens, voil\xc3\xa0 un \xc3\xa9criteau que ma femme a pass\xc3\xa9...' +p206478 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206479 +sg25273 +S'lithograph' +p206480 +sg25275 +S'1848' +p206481 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093e8.jpg' +p206482 +sg25267 +g27 +sa(dp206483 +g25268 +S'Madame Rabourdeau a sa premi\xc3\xa8re le\xc3\xa7on' +p206484 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206485 +sg25273 +S'lithograph' +p206486 +sg25275 +S'1847' +p206487 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093ec.jpg' +p206488 +sg25267 +g27 +sa(dp206489 +g25268 +S'Les Barbotteuses' +p206490 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206491 +sg25273 +S'lithograph' +p206492 +sg25275 +S'1847' +p206493 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093ed.jpg' +p206494 +sg25267 +g27 +sa(dp206495 +g25268 +S'A la buvette' +p206496 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206497 +sg25273 +S'lithograph' +p206498 +sg25275 +S'1847' +p206499 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093f4.jpg' +p206500 +sg25267 +g27 +sa(dp206501 +g25268 +S'Fesant toutes partie de la plus belle moiti\xc3\xa9...' +p206502 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206503 +sg25273 +S'lithograph' +p206504 +sg25275 +S'1847' +p206505 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093f2.jpg' +p206506 +sg25267 +g27 +sa(dp206507 +g25268 +S'En Famille' +p206508 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206509 +sg25273 +S'lithograph' +p206510 +sg25275 +S'1847' +p206511 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093f0.jpg' +p206512 +sg25267 +g27 +sa(dp206513 +g25268 +S'The Crucifixion' +p206514 +sg25270 +S'Martin Schongauer' +p206515 +sg25273 +S'engraving' +p206516 +sg25275 +S'c. 1480' +p206517 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a49d.jpg' +p206518 +sg25267 +g27 +sa(dp206519 +g25268 +S'Le Chiffonnier philosophe' +p206520 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206521 +sg25273 +S'lithograph' +p206522 +sg25275 +S'1847' +p206523 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093f8.jpg' +p206524 +sg25267 +g27 +sa(dp206525 +g25268 +S"Il y a trois mois, m'sieu l'vicomte posait... comme \xc3\xa7a..." +p206526 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206527 +sg25273 +S'lithograph' +p206528 +sg25275 +S'1848' +p206529 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009407.jpg' +p206530 +sg25267 +g27 +sa(dp206531 +g25268 +S"Des charg\xc3\xa9s d'affaires" +p206532 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206533 +sg25273 +S'lithograph' +p206534 +sg25275 +S'1848' +p206535 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000940a.jpg' +p206536 +sg25267 +g27 +sa(dp206537 +g25268 +S'D\xc3\xa9sol\xc3\xa9, citoyenne... je ne re\xc3\xa7ois pas de chiens...' +p206538 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206539 +sg25273 +S'lithograph' +p206540 +sg25275 +S'1848' +p206541 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009402.jpg' +p206542 +sg25267 +g27 +sa(dp206543 +g25268 +S'Confr\xc3\xa8re, m\xc3\xa9fiez-vous du petit baron...' +p206544 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206545 +sg25273 +S'lithograph' +p206546 +sg25275 +S'1848' +p206547 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009408.jpg' +p206548 +sg25267 +g27 +sa(dp206549 +g25273 +S'etching' +p206550 +sg25267 +g27 +sg25275 +S'c. 1908' +p206551 +sg25268 +S'Charles McEvoy' +p206552 +sg25270 +S'Augustus John' +p206553 +sa(dp206554 +g25268 +S'Albrecht Altdorfer' +p206555 +sg25270 +S'Philipp Andreas Kilian' +p206556 +sg25273 +S'engraving' +p206557 +sg25275 +S'unknown date\n' +p206558 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b324.jpg' +p206559 +sg25267 +g27 +sa(dp206560 +g25268 +S'Large Spaniard (Le grand Espagnol)' +p206561 +sg25270 +S'Alphonse Legros' +p206562 +sg25273 +S'etching' +p206563 +sg25275 +S'unknown date\n' +p206564 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b19.jpg' +p206565 +sg25267 +g27 +sa(dp206566 +g25268 +S'Coll\xc3\xa8ge Henri IV, Paris, ou Lyc\xc3\xa9e Napol\xc3\xa9on (Henry IV College or Napoleon School, Paris)' +p206567 +sg25270 +S'Charles Meryon' +p206568 +sg25273 +S'etching' +p206569 +sg25275 +S'1864' +p206570 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d89.jpg' +p206571 +sg25267 +g27 +sa(dp206572 +g25268 +S"Les trois cochons couch\xc3\xa9s devant l'\xc3\xa9table (Three Swine Lying In Front of a Sty)" +p206573 +sg25270 +S'Artist Information (' +p206574 +sg25273 +S'(artist after)' +p206575 +sg25275 +S'\n' +p206576 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000995d.jpg' +p206577 +sg25267 +g27 +sa(dp206578 +g25268 +S'A Dutch Courtyard' +p206579 +sg25270 +S'Pieter de Hooch' +p206580 +sg25273 +S'oil on canvas' +p206581 +sg25275 +S'1658/1660' +p206582 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e68.jpg' +p206583 +sg25267 +S"The serenity and self-confidence characteristic of Dutch art of the mid-seventeenth\ncentury are admirably expressed in this representation of a middle-class courtyard\nin Delft. The woman takes time from her round of chores to share a drink with two\nmen relaxing in the pale sunlight; the little girl brings coals for their pipes.\n De Hooch worked in Delft from 1652 to about 1660 when he moved to Amsterdam. In\nthe 1650s, together with other artists active in that small and relatively quiet\ncity, notably Carel Fabritius and Johannes Vermeer, he painted everyday scenes remarkable\nfor their clarity of perspective and harmony of light. De Hooch gave order to his\ncompositions by carefully determining how his architectural elements should be placed.\nThe position of doors, windows and their shutters, floor tiles, or bricks were all\ncarefully calculated and painted. As in this example, he often suggested a sequence\nof ordered spaces by showing distant views through windows or doors.\n Despite the realistic appearance of the scene, this courtyard view is a distillation\nof typical elements found in many of De Hooch's courtyard paintings. Thus, even though\nthe tower of the Nieuwe Kerk appears in the left background, it is unlikely that\nthis view ever existed or that the exact location of the courtyard could be found.\n " +p206584 +sa(dp206585 +g25268 +S'The Entombment' +p206586 +sg25270 +S'Martin Schongauer' +p206587 +sg25273 +S'engraving' +p206588 +sg25275 +S'c. 1480' +p206589 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4a3.jpg' +p206590 +sg25267 +g27 +sa(dp206591 +g25273 +S'black cutout' +p206592 +sg25267 +g27 +sg25275 +S'unknown date\n' +p206593 +sg25268 +S'Porcelain Factory, Cleveland' +p206594 +sg25270 +S'Ugo Mochi' +p206595 +sa(dp206596 +g25268 +S'The Little Jewish Bride (Saskia as Saint Catherine)' +p206597 +sg25270 +S'Rembrandt van Rijn' +p206598 +sg25273 +S'etching, with touches of drypoint' +p206599 +sg25275 +S'1638' +p206600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d385.jpg' +p206601 +sg25267 +g27 +sa(dp206602 +g25273 +S'graphite and watercolor' +p206603 +sg25267 +g27 +sg25275 +S'1928' +p206604 +sg25268 +S'From the Appian Way' +p206605 +sg25270 +S'Sir Henry Rushbury' +p206606 +sa(dp206607 +g25268 +S'The Fore Chains' +p206608 +sg25270 +S'George Canning Wales' +p206609 +sg25273 +S'etching' +p206610 +sg25275 +S'1922' +p206611 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f9/a000f94a.jpg' +p206612 +sg25267 +g27 +sa(dp206613 +g25268 +S"The Manager's Window, Gaiety Theatre" +p206614 +sg25270 +S'James McNeill Whistler' +p206615 +sg25273 +S'lithograph in black on cream Japanese paper' +p206616 +sg25275 +S'1896' +p206617 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab00.jpg' +p206618 +sg25267 +g27 +sa(dp206619 +g25268 +S'Prudencia' +p206620 +sg25270 +S'Sebald Beham' +p206621 +sg25273 +S'engraving' +p206622 +sg25275 +S'unknown date\n' +p206623 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a854.jpg' +p206624 +sg25267 +g27 +sa(dp206625 +g25268 +S'Charitas' +p206626 +sg25270 +S'Sebald Beham' +p206627 +sg25273 +S'engraving' +p206628 +sg25275 +S'unknown date\n' +p206629 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a855.jpg' +p206630 +sg25267 +g27 +sa(dp206631 +g25268 +S'Justicia' +p206632 +sg25270 +S'Sebald Beham' +p206633 +sg25273 +S'engraving' +p206634 +sg25275 +S'unknown date\n' +p206635 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a856.jpg' +p206636 +sg25267 +g27 +sa(dp206637 +g25268 +S'Spes' +p206638 +sg25270 +S'Sebald Beham' +p206639 +sg25273 +S'engraving' +p206640 +sg25275 +S'unknown date\n' +p206641 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a858.jpg' +p206642 +sg25267 +g27 +sa(dp206643 +g25268 +S'Fortitudo' +p206644 +sg25270 +S'Sebald Beham' +p206645 +sg25273 +S'engraving' +p206646 +sg25275 +S'unknown date\n' +p206647 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a859.jpg' +p206648 +sg25267 +g27 +sa(dp206649 +g25268 +S'Christ Appearing to Mary Magdalene' +p206650 +sg25270 +S'Martin Schongauer' +p206651 +sg25273 +S'engraving' +p206652 +sg25275 +S'c. 1480/1490' +p206653 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a47e.jpg' +p206654 +sg25267 +g27 +sa(dp206655 +g25268 +S'Temperancia' +p206656 +sg25270 +S'Sebald Beham' +p206657 +sg25273 +S'engraving' +p206658 +sg25275 +S'unknown date\n' +p206659 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a85a.jpg' +p206660 +sg25267 +g27 +sa(dp206661 +g25268 +S'Ornament with Tritons Blowing Horns' +p206662 +sg25270 +S'Sebald Beham' +p206663 +sg25273 +S'engraving' +p206664 +sg25275 +S'1544' +p206665 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a87c.jpg' +p206666 +sg25267 +g27 +sa(dp206667 +g25268 +S'Ornament with Armour and Two Genii' +p206668 +sg25270 +S'Sebald Beham' +p206669 +sg25273 +S'engraving' +p206670 +sg25275 +S'1544' +p206671 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a87e.jpg' +p206672 +sg25267 +g27 +sa(dp206673 +g25268 +S'Capital and Base of a Column' +p206674 +sg25270 +S'Sebald Beham' +p206675 +sg25273 +S'engraving' +p206676 +sg25275 +S'1543' +p206677 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8a9.jpg' +p206678 +sg25267 +g27 +sa(dp206679 +g25268 +S'Capital and Base of a Column' +p206680 +sg25270 +S'Sebald Beham' +p206681 +sg25273 +S'engraving' +p206682 +sg25275 +S'1545' +p206683 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8a7.jpg' +p206684 +sg25267 +g27 +sa(dp206685 +g25268 +S'Antony Thouret' +p206686 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206687 +sg25273 +S'lithograph' +p206688 +sg25275 +S'1849' +p206689 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009429.jpg' +p206690 +sg25267 +g27 +sa(dp206691 +g25268 +S'Jean Charles Besnard' +p206692 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206693 +sg25273 +S'lithograph' +p206694 +sg25275 +S'1849' +p206695 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009426.jpg' +p206696 +sg25267 +g27 +sa(dp206697 +g25268 +S'A. Fr\xc3\xa9d. Pierre comte de Falloux' +p206698 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206699 +sg25273 +S'lithograph' +p206700 +sg25275 +S'1849' +p206701 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000942f.jpg' +p206702 +sg25267 +g27 +sa(dp206703 +g25268 +S'Eus. Isidore Buvignier' +p206704 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206705 +sg25273 +S'lithograph' +p206706 +sg25275 +S'1849' +p206707 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009425.jpg' +p206708 +sg25267 +g27 +sa(dp206709 +g25268 +S'F.J. Ducoux' +p206710 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206711 +sg25273 +S'lithograph' +p206712 +sg25275 +S'1849' +p206713 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000942a.jpg' +p206714 +sg25267 +g27 +sa(dp206715 +g25268 +S'Death of the Virgin' +p206716 +sg25270 +S'Martin Schongauer' +p206717 +sg25273 +S'engraving on laid paper' +p206718 +sg25275 +S'c. 1470/1475' +p206719 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a447.jpg' +p206720 +sg25267 +g27 +sa(dp206721 +g25268 +S'Jean-Louis Greppo' +p206722 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206723 +sg25273 +S'lithograph' +p206724 +sg25275 +S'1849' +p206725 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000942d.jpg' +p206726 +sg25267 +g27 +sa(dp206727 +g25268 +S'L.F. Raymond Wolowski' +p206728 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206729 +sg25273 +S'lithograph' +p206730 +sg25275 +S'1849' +p206731 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009427.jpg' +p206732 +sg25267 +g27 +sa(dp206733 +g25268 +S'Adolphe Thiers' +p206734 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206735 +sg25273 +S'lithograph' +p206736 +sg25275 +S'1848' +p206737 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057d2.jpg' +p206738 +sg25267 +g27 +sa(dp206739 +g25268 +S'J. Antoine Taschereau' +p206740 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206741 +sg25273 +S'lithograph' +p206742 +sg25275 +S'1848' +p206743 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009424.jpg' +p206744 +sg25267 +g27 +sa(dp206745 +g25268 +S'P.J. Proudhon' +p206746 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206747 +sg25273 +S'lithograph' +p206748 +sg25275 +S'1849' +p206749 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009422.jpg' +p206750 +sg25267 +g27 +sa(dp206751 +g25268 +S'Jules Bastide' +p206752 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206753 +sg25273 +S'lithograph' +p206754 +sg25275 +S'1849' +p206755 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009423.jpg' +p206756 +sg25267 +g27 +sa(dp206757 +g25268 +S'J. Alexandre Bixio' +p206758 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206759 +sg25273 +S'lithograph' +p206760 +sg25275 +S'1849' +p206761 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009421.jpg' +p206762 +sg25267 +g27 +sa(dp206763 +g25268 +S'C.H. Odilon Barrot' +p206764 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206765 +sg25273 +S'lithograph' +p206766 +sg25275 +S'1849' +p206767 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009428.jpg' +p206768 +sg25267 +g27 +sa(dp206769 +g25268 +S'Une Alliance' +p206770 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206771 +sg25273 +S'lithograph' +p206772 +sg25275 +S'unknown date\n' +p206773 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009458.jpg' +p206774 +sg25267 +g27 +sa(dp206775 +g25268 +S"Vois-tu petit, t'as tort..." +p206776 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206777 +sg25273 +S'lithograph' +p206778 +sg25275 +S'1849' +p206779 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009456.jpg' +p206780 +sg25267 +g27 +sa(dp206781 +g25268 +S'Saint John the Evangelist' +p206782 +sg25270 +S'Martin Schongauer' +p206783 +sg25273 +S'engraving' +p206784 +sg25275 +S'c. 1480' +p206785 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4a9.jpg' +p206786 +sg25267 +g27 +sa(dp206787 +g25268 +S"Ils pr\xc3\xa9tendent qu'ils la soutiennent" +p206788 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206789 +sg25273 +S'lithograph' +p206790 +sg25275 +S'1849' +p206791 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000945a.jpg' +p206792 +sg25267 +g27 +sa(dp206793 +g25268 +S"Dites donc, pr\xc3\xa9sident, impossible d'attraper un li\xc3\xa8vre..." +p206794 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206795 +sg25273 +S'lithograph' +p206796 +sg25275 +S'1849' +p206797 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009469.jpg' +p206798 +sg25267 +g27 +sa(dp206799 +g25268 +S'Clytemnestre pouss\xc3\xa9e par mimi V\xc3\xa9ron...' +p206800 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206801 +sg25273 +S'lithograph' +p206802 +sg25275 +S'1850' +p206803 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009463.jpg' +p206804 +sg25267 +g27 +sa(dp206805 +g25268 +S'A.P.F. Deslongrais' +p206806 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206807 +sg25273 +S'lithograph' +p206808 +sg25275 +S'1849' +p206809 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000944c.jpg' +p206810 +sg25267 +g27 +sa(dp206811 +g25268 +S'J. Marie-Anne Degous\xc3\xa9e' +p206812 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206813 +sg25273 +S'lithograph' +p206814 +sg25275 +S'1849' +p206815 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000942c.jpg' +p206816 +sg25267 +g27 +sa(dp206817 +g25268 +S'Ferdinand Flocon' +p206818 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206819 +sg25273 +S'lithograph' +p206820 +sg25275 +S'1849' +p206821 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000942b.jpg' +p206822 +sg25267 +g27 +sa(dp206823 +g25268 +S'Ma femme est-elle a la maison?' +p206824 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206825 +sg25273 +S'lithograph' +p206826 +sg25275 +S'1847' +p206827 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093f9.jpg' +p206828 +sg25267 +g27 +sa(dp206829 +g25268 +S'Mais quand je vous dis que je ne peux pas remuer les pieds...' +p206830 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206831 +sg25273 +S'lithograph' +p206832 +sg25275 +S'1847' +p206833 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093fa.jpg' +p206834 +sg25267 +g27 +sa(dp206835 +g25268 +S"Inconv\xc3\xa9nient d'un parapluie a ressorts trop compliqu\xc3\xa9s" +p206836 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206837 +sg25273 +S'lithograph' +p206838 +sg25275 +S'1847' +p206839 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093f7.jpg' +p206840 +sg25267 +g27 +sa(dp206841 +g25268 +S"Ah! docteur... je crois... que j'suis poitrinaire!" +p206842 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206843 +sg25273 +S'lithograph' +p206844 +sg25275 +S'1847' +p206845 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093fb.jpg' +p206846 +sg25267 +g27 +sa(dp206847 +g25268 +S'Saint Michael Slaying the Dragon' +p206848 +sg25270 +S'Martin Schongauer' +p206849 +sg25273 +S'engraving' +p206850 +sg25275 +S'c. 1480/1490' +p206851 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4b0.jpg' +p206852 +sg25267 +g27 +sa(dp206853 +g25268 +S'Un Mari br\xc3\xbbl\xc3\xa9 du feu de la jalousie' +p206854 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206855 +sg25273 +S'lithograph' +p206856 +sg25275 +S'1847' +p206857 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093ff.jpg' +p206858 +sg25267 +g27 +sa(dp206859 +g25268 +S"C'est t'y a vous c'hien la?" +p206860 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206861 +sg25273 +S'lithograph' +p206862 +sg25275 +S'1847' +p206863 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093fe.jpg' +p206864 +sg25267 +g27 +sa(dp206865 +g25268 +S'Les Temps sont durs...' +p206866 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206867 +sg25273 +S'lithograph' +p206868 +sg25275 +S'1847' +p206869 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093fc.jpg' +p206870 +sg25267 +g27 +sa(dp206871 +g25268 +S'Le Plus farceur de la soci\xc3\xa9t\xc3\xa9' +p206872 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206873 +sg25273 +S'lithograph' +p206874 +sg25275 +S'1847' +p206875 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093fd.jpg' +p206876 +sg25267 +g27 +sa(dp206877 +g25268 +S"Moi aussi j'ai \xc3\xa9t\xc3\xa9 jeune..." +p206878 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206879 +sg25273 +S'lithograph' +p206880 +sg25275 +S'1847' +p206881 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00093/a00093f6.jpg' +p206882 +sg25267 +g27 +sa(dp206883 +g25268 +S'Les Trois petits saints' +p206884 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206885 +sg25273 +S'lithograph' +p206886 +sg25275 +S'unknown date\n' +p206887 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009455.jpg' +p206888 +sg25267 +g27 +sa(dp206889 +g25268 +S'Les Trois petits saints' +p206890 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206891 +sg25273 +S'lithograph' +p206892 +sg25275 +S'unknown date\n' +p206893 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009454.jpg' +p206894 +sg25267 +g27 +sa(dp206895 +g25268 +S'(Le Domestique) - Monsieur ferait bien...' +p206896 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206897 +sg25273 +S'lithograph' +p206898 +sg25275 +S'1852' +p206899 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009485.jpg' +p206900 +sg25267 +g27 +sa(dp206901 +g25268 +S'Une Le\xc3\xa7on de botanique' +p206902 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206903 +sg25273 +S'lithograph' +p206904 +sg25275 +S'1852' +p206905 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009494.jpg' +p206906 +sg25267 +g27 +sa(dp206907 +g25268 +S'A Naples - Le meilleur des rois... (1st plate)' +p206908 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206909 +sg25273 +S'lithograph' +p206910 +sg25275 +S'1851' +p206911 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000947f.jpg' +p206912 +sg25267 +g27 +sa(dp206913 +g25268 +S'Christ Blessing the Virgin' +p206914 +sg25270 +S'Martin Schongauer' +p206915 +sg25273 +S'engraving' +p206916 +sg25275 +S'c. 1480/1490' +p206917 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a47c.jpg' +p206918 +sg25267 +g27 +sa(dp206919 +g25268 +S"Le Commerce un jour d'\xc3\xa9ch\xc3\xa9ance" +p206920 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206921 +sg25273 +S'lithograph' +p206922 +sg25275 +S'1851' +p206923 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000948d.jpg' +p206924 +sg25267 +g27 +sa(dp206925 +g25268 +S'Actionnaires Californiens' +p206926 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206927 +sg25273 +S'lithograph' +p206928 +sg25275 +S'1850' +p206929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009465.jpg' +p206930 +sg25267 +g27 +sa(dp206931 +g25268 +S'Membre... du dix D\xc3\xa9cembre prenant le la...' +p206932 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206933 +sg25273 +S'lithograph' +p206934 +sg25275 +S'1850' +p206935 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009473.jpg' +p206936 +sg25267 +g27 +sa(dp206937 +g25268 +S'Oui, madame Chaboulard... vingt-quatre \xc3\xa9piciers... [recto]' +p206938 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206939 +sg25273 +S'lithograph' +p206940 +sg25275 +S'1850' +p206941 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000946f.jpg' +p206942 +sg25267 +g27 +sa(dp206943 +g25273 +S'Rosenwald Collection' +p206944 +sg25267 +g27 +sg25275 +S'\nlithograph' +p206945 +sg25268 +S'Provost [verso]' +p206946 +sg25270 +S'French 19th Century' +p206947 +sa(dp206948 +g25268 +S"L'Esprit frappeur" +p206949 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206950 +sg25273 +S'lithograph' +p206951 +sg25275 +S'probably 1851' +p206952 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000946e.jpg' +p206953 +sg25267 +g27 +sa(dp206954 +g25268 +S"(1er Bas Bleu) - Profitons de l'occasion..." +p206955 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206956 +sg25273 +S'lithograph' +p206957 +sg25275 +S'1852' +p206958 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094b0.jpg' +p206959 +sg25267 +g27 +sa(dp206960 +g25268 +S"L'Inconv\xc3\xa9nient d'avoir un ami m\xc3\xa9lomane" +p206961 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206962 +sg25273 +S'lithograph' +p206963 +sg25275 +S'1851' +p206964 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009487.jpg' +p206965 +sg25267 +g27 +sa(dp206966 +g25268 +S"Le Jour de l'an" +p206967 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206968 +sg25273 +S'lithograph' +p206969 +sg25275 +S'1852' +p206970 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009486.jpg' +p206971 +sg25267 +g27 +sa(dp206972 +g25268 +S"C'est b\xc3\xaate d'avoir en hiver, des..." +p206973 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206974 +sg25273 +S'lithograph' +p206975 +sg25275 +S'1851/1852' +p206976 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000948c.jpg' +p206977 +sg25267 +g27 +sa(dp206978 +g25268 +S'God Appearing to Noah' +p206979 +sg25270 +S'Artist Information (' +p206980 +sg25273 +S'(artist after)' +p206981 +sg25275 +S'\n' +p206982 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c856.jpg' +p206983 +sg25267 +g27 +sa(dp206984 +g25268 +S'Une Promenade conjugale' +p206985 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206986 +sg25273 +S'lithograph' +p206987 +sg25275 +S'1852' +p206988 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000948b.jpg' +p206989 +sg25267 +g27 +sa(dp206990 +g25268 +S"A l'instar d'Henri IV" +p206991 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206992 +sg25273 +S'lithograph' +p206993 +sg25275 +S'1852' +p206994 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000948a.jpg' +p206995 +sg25267 +g27 +sa(dp206996 +g25268 +S'Se r\xc3\xa9jouissant... de la fin de la Canicule' +p206997 +sg25270 +S'Honor\xc3\xa9 Daumier' +p206998 +sg25273 +S'lithograph' +p206999 +sg25275 +S'1852' +p207000 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009488.jpg' +p207001 +sg25267 +g27 +sa(dp207002 +g25268 +S"Il me semble que j'aper\xc3\xa7ois... un... chien... pas musel\xc3\xa9!..." +p207003 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207004 +sg25273 +S'lithograph' +p207005 +sg25275 +S'1852' +p207006 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000949a.jpg' +p207007 +sg25267 +g27 +sa(dp207008 +g25268 +S'Je vous arr\xc3\xaate, mauvais sujet...' +p207009 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207010 +sg25273 +S'lithograph' +p207011 +sg25275 +S'1852' +p207012 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009491.jpg' +p207013 +sg25267 +g27 +sa(dp207014 +g25268 +S"Le Beau sexe a l'\xc3\xa9cole de natation" +p207015 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207016 +sg25273 +S'lithograph' +p207017 +sg25275 +S'1852' +p207018 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000949c.jpg' +p207019 +sg25267 +g27 +sa(dp207020 +g25268 +S'Madame Chapotard se disposant a faire ses confitures' +p207021 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207022 +sg25273 +S'lithograph' +p207023 +sg25275 +S'1852' +p207024 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000949b.jpg' +p207025 +sg25267 +g27 +sa(dp207026 +g25268 +S"Le Jour ou l'on dine chez Monsieur le Directeur..." +p207027 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207028 +sg25273 +S'lithograph' +p207029 +sg25275 +S'1852' +p207030 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009497.jpg' +p207031 +sg25267 +g27 +sa(dp207032 +g25268 +S"Mais, monsieur, je vous assure que c'est du... veau!..." +p207033 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207034 +sg25273 +S'lithograph' +p207035 +sg25275 +S'1852' +p207036 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009495.jpg' +p207037 +sg25267 +g27 +sa(dp207038 +g25268 +S'Oui, monsieur Chapuzot...' +p207039 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207040 +sg25273 +S'lithograph' +p207041 +sg25275 +S'1852' +p207042 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009499.jpg' +p207043 +sg25267 +g27 +sa(dp207044 +g25268 +S'The Lamentation of the Virgin' +p207045 +sg25270 +S'Artist Information (' +p207046 +sg25273 +S'(artist after)' +p207047 +sg25275 +S'\n' +p207048 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c859.jpg' +p207049 +sg25267 +g27 +sa(dp207050 +g25268 +S'Un Jour de repr\xc3\xa9sentation a b\xc3\xa9n\xc3\xa9fice...' +p207051 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207052 +sg25273 +S'lithograph' +p207053 +sg25275 +S'1852' +p207054 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009490.jpg' +p207055 +sg25267 +g27 +sa(dp207056 +g25268 +S'A. Granier de Cassagnac' +p207057 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207058 +sg25273 +S'lithograph' +p207059 +sg25275 +S'1849' +p207060 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009446.jpg' +p207061 +sg25267 +g27 +sa(dp207062 +g25268 +S'Pierre-Napol\xc3\xa9on Bonaparte' +p207063 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207064 +sg25273 +S'lithograph' +p207065 +sg25275 +S'1849' +p207066 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000944a.jpg' +p207067 +sg25267 +g27 +sa(dp207068 +g25268 +S'Ovide Remilly' +p207069 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207070 +sg25273 +S'lithograph' +p207071 +sg25275 +S'1850' +p207072 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009449.jpg' +p207073 +sg25267 +g27 +sa(dp207074 +g25268 +S'Lannes, duc de Montebello' +p207075 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207076 +sg25273 +S'lithograph' +p207077 +sg25275 +S'1850' +p207078 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000943f.jpg' +p207079 +sg25267 +g27 +sa(dp207080 +g25268 +S'Pierre Louis Parisis' +p207081 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207082 +sg25273 +S'lithograph' +p207083 +sg25275 +S'1849' +p207084 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009448.jpg' +p207085 +sg25267 +g27 +sa(dp207086 +g25268 +S"Le Constitutionnel contemplant l'horizon politique" +p207087 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207088 +sg25273 +S'lithograph' +p207089 +sg25275 +S'1849' +p207090 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009453.jpg' +p207091 +sg25267 +g27 +sa(dp207092 +g25268 +S"L'Artiste - Voila qui est termin\xc3\xa9!..." +p207093 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207094 +sg25273 +S'lithograph' +p207095 +sg25275 +S'1852' +p207096 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009492.jpg' +p207097 +sg25267 +g27 +sa(dp207098 +g25268 +S'Suffrage universel' +p207099 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207100 +sg25273 +S'lithograph' +p207101 +sg25275 +S'probably 1850' +p207102 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000945e.jpg' +p207103 +sg25267 +g27 +sa(dp207104 +g25268 +S"Faut pas s'plaindre de c'temps-la..." +p207105 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207106 +sg25273 +S'lithograph (gillotype?)' +p207107 +sg25275 +S'1864' +p207108 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094df.jpg' +p207109 +sg25267 +g27 +sa(dp207110 +g25268 +S'Dido' +p207111 +sg25270 +S'Artist Information (' +p207112 +sg25273 +S'(artist after)' +p207113 +sg25275 +S'\n' +p207114 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c785.jpg' +p207115 +sg25267 +g27 +sa(dp207116 +g25268 +S'Un Criminel!' +p207117 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207118 +sg25273 +S'lithograph (gillotype?)' +p207119 +sg25275 +S'1864' +p207120 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000949f.jpg' +p207121 +sg25267 +g27 +sa(dp207122 +g25268 +S'Allons bon!... il parait... chasse r\xc3\xa9serv\xc3\xa9e' +p207123 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207124 +sg25273 +S'lithograph' +p207125 +sg25275 +S'1864' +p207126 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000949e.jpg' +p207127 +sg25267 +g27 +sa(dp207128 +g25268 +S'Les Tritons de la Seine' +p207129 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207130 +sg25273 +S'lithograph' +p207131 +sg25275 +S'1864' +p207132 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a000949d.jpg' +p207133 +sg25267 +g27 +sa(dp207134 +g25268 +S"Histoire d'un r\xc3\xa8gne" +p207135 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207136 +sg25273 +S'lithograph' +p207137 +sg25275 +S'1870' +p207138 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000952f.jpg' +p207139 +sg25267 +g27 +sa(dp207140 +g25268 +S'Ce que certains journaux appeleraient...' +p207141 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207142 +sg25273 +S'lithograph' +p207143 +sg25275 +S'1870' +p207144 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a8b.jpg' +p207145 +sg25267 +g27 +sa(dp207146 +g25268 +S"L'Ane et les deux voleurs" +p207147 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207148 +sg25273 +S'lithograph' +p207149 +sg25275 +S'1862' +p207150 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00010/a0001066.jpg' +p207151 +sg25267 +g27 +sa(dp207152 +g25268 +S'Ce char marchera toujours...' +p207153 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207154 +sg25273 +S'lithograph' +p207155 +sg25275 +S'1849' +p207156 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009459.jpg' +p207157 +sg25267 +g27 +sa(dp207158 +g25268 +S"Le Constitutionnel contemplant l'horizon politique" +p207159 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207160 +sg25273 +S'lithograph' +p207161 +sg25275 +S'1849' +p207162 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009452.jpg' +p207163 +sg25267 +g27 +sa(dp207164 +g25268 +S'Un Chemin dangereux' +p207165 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207166 +sg25273 +S'lithograph' +p207167 +sg25275 +S'1851' +p207168 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a0009477.jpg' +p207169 +sg25267 +g27 +sa(dp207170 +g25268 +S"C'est dangereux, la p\xc3\xaache \xc3\xa0 l'\xc3\xa9pervier" +p207171 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207172 +sg25273 +S'lithograph' +p207173 +sg25275 +S'1872' +p207174 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009561.jpg' +p207175 +sg25267 +g27 +sa(dp207176 +g25268 +S'Dance of Cupids' +p207177 +sg25270 +S'Artist Information (' +p207178 +sg25273 +S'(artist after)' +p207179 +sg25275 +S'\n' +p207180 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c786.jpg' +p207181 +sg25267 +g27 +sa(dp207182 +g25268 +S'Nous ne nous serions jamais dout\xc3\xa9 tout de m\xc3\xaame...' +p207183 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207184 +sg25273 +S'lithograph' +p207185 +sg25275 +S'1870' +p207186 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000953f.jpg' +p207187 +sg25267 +g27 +sa(dp207188 +g25268 +S'D\xc3\xa9cid\xc3\xa9ment on ne peut pas...' +p207189 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207190 +sg25273 +S'lithograph' +p207191 +sg25275 +S'1870' +p207192 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a89.jpg' +p207193 +sg25267 +g27 +sa(dp207194 +g25268 +S'Square Napol\xc3\xa9on' +p207195 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207196 +sg25273 +S'lithograph' +p207197 +sg25275 +S'1870' +p207198 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a8e.jpg' +p207199 +sg25267 +g27 +sa(dp207200 +g25268 +S'La paix a tout prix' +p207201 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207202 +sg25273 +S'lithograph' +p207203 +sg25275 +S'1870' +p207204 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000953b.jpg' +p207205 +sg25267 +g27 +sa(dp207206 +g25268 +S'A qui le tour?' +p207207 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207208 +sg25273 +S'lithograph' +p207209 +sg25275 +S'1870' +p207210 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000953c.jpg' +p207211 +sg25267 +g27 +sa(dp207212 +g25268 +S'\xc3\x89quilibre Europ\xc3\xa9en' +p207213 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207214 +sg25273 +S'lithograph' +p207215 +sg25275 +S'1867' +p207216 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000950d.jpg' +p207217 +sg25267 +g27 +sa(dp207218 +g25268 +S'Le couronnement de son \xc3\xa9difice' +p207219 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207220 +sg25273 +S'lithograph' +p207221 +sg25275 +S'1870' +p207222 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009533.jpg' +p207223 +sg25267 +g27 +sa(dp207224 +g25268 +S'Monsieur sera tr\xc3\xa8s bien ici...' +p207225 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207226 +sg25273 +S'lithograph' +p207227 +sg25275 +S'1870' +p207228 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009534.jpg' +p207229 +sg25267 +g27 +sa(dp207230 +g25268 +S'Trop \xc3\xa9troit pour deux' +p207231 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207232 +sg25273 +S'lithograph' +p207233 +sg25275 +S'1870' +p207234 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009536.jpg' +p207235 +sg25267 +g27 +sa(dp207236 +g25268 +S'Two Men Amid Ruins' +p207237 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207238 +sg25273 +S'lithograph' +p207239 +sg25275 +S'unknown date\n' +p207240 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000955b.jpg' +p207241 +sg25267 +g27 +sa(dp207242 +g25268 +S'The Intruder' +p207243 +sg25270 +S'Gabriel Metsu' +p207244 +sg25273 +S'oil on panel' +p207245 +sg25275 +S'c. 1660' +p207246 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dbc.jpg' +p207247 +sg25267 +S'\r\n\tThe Protestant Dutch had a reputation for strict social conduct. Demonstrations of emotion were encouraged only on rare occasions such as betrothal, when a suitor must prove his passion. This painting chronicles such a prearranged “transgression” among the wealthy classes of Amsterdam. A cavalier bursts into his beloved’s bedroom, much to the amusement of an older woman, perhaps her mother. A housekeeper, identified by keys dangling from her apron, playfully pretends to restrain him.\r\n\n \r\n\tThe sumptuous bedroom contains a number of objects serving as symbols that would be immediately understood in Metsu’s society. The dog is surely an emblem of fidelity, while the unlit candle implies virginity.\r\n\n \r\n\tTo maintain order in this complex pantomime, which is Metsu’s most elaborate composition, the figures are arranged along a diagonal axis. Metsu’s style was influenced by Gerard Ter Borch, whose \n ' +p207248 +sa(dp207249 +g25268 +S'Two Fauns Carrying a Child' +p207250 +sg25270 +S'Marcantonio Raimondi' +p207251 +sg25273 +S'engraving' +p207252 +sg25275 +S'unknown date\n' +p207253 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c780.jpg' +p207254 +sg25267 +g27 +sa(dp207255 +g25268 +S'La veuve' +p207256 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207257 +sg25273 +S'lithograph' +p207258 +sg25275 +S'c. 1846' +p207259 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009565.jpg' +p207260 +sg25267 +g27 +sa(dp207261 +g25268 +S'En Chemin de fer... un voisin agr\xc3\xa9able' +p207262 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207263 +sg25273 +S'lithograph' +p207264 +sg25275 +S'1862' +p207265 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094de.jpg' +p207266 +sg25267 +g27 +sa(dp207267 +g25268 +S'Le Dimanche au Jardin des Plantes' +p207268 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207269 +sg25273 +S'lithograph' +p207270 +sg25275 +S'1862' +p207271 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094dc.jpg' +p207272 +sg25267 +g27 +sa(dp207273 +g25268 +S'Il y a la guerre... les loyers vont... diminuer...' +p207274 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207275 +sg25273 +S'lithograph' +p207276 +sg25275 +S'1859' +p207277 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094c8.jpg' +p207278 +sg25267 +g27 +sa(dp207279 +g25268 +S"Pourriez-vous me dire...? J'ai la grippe!..." +p207280 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207281 +sg25273 +S'lithograph' +p207282 +sg25275 +S'1858' +p207283 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094c9.jpg' +p207284 +sg25267 +g27 +sa(dp207285 +g25268 +S"Qu'on dise encore que la chasse..." +p207286 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207287 +sg25273 +S'lithograph' +p207288 +sg25275 +S'1864' +p207289 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00094/a00094e0.jpg' +p207290 +sg25267 +g27 +sa(dp207291 +g25268 +S'Figure of a Man' +p207292 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207293 +sg25273 +S'black chalk with traces of gray wash on laid paper' +p207294 +sg25275 +S'unknown date\n' +p207295 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d1f.jpg' +p207296 +sg25267 +g27 +sa(dp207297 +g25268 +S'Rest in the Country (Sancho Panza)' +p207298 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207299 +sg25273 +S'crayon and brown, blue, and green watercolor on laid paper' +p207300 +sg25275 +S'unknown date\n' +p207301 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f7b.jpg' +p207302 +sg25267 +g27 +sa(dp207303 +g25268 +S'Old Woman Seated' +p207304 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207305 +sg25273 +S'watercolor and black crayon on laid paper' +p207306 +sg25275 +S'unknown date\n' +p207307 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a000711f.jpg' +p207308 +sg25267 +g27 +sa(dp207309 +g25268 +S'The Judgment of Paris' +p207310 +sg25270 +S'Artist Information (' +p207311 +sg25273 +S'(artist after)' +p207312 +sg25275 +S'\n' +p207313 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00051/a00051d7.jpg' +p207314 +sg25267 +g27 +sa(dp207315 +g25268 +S'Bathers' +p207316 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207317 +sg25273 +S'black chalk on green laid paper' +p207318 +sg25275 +S'unknown date\n' +p207319 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006da9.jpg' +p207320 +sg25267 +g27 +sa(dp207321 +g25268 +S'Study of a Man' +p207322 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207323 +sg25273 +S'black chalk with black crayon and traces of graphite on laid paper' +p207324 +sg25275 +S'unknown date\n' +p207325 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d79.jpg' +p207326 +sg25267 +g27 +sa(dp207327 +g25268 +S'Scene of the Tribunal (The Verdict)' +p207328 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207329 +sg25273 +S'pen and ink on laid paper' +p207330 +sg25275 +S'unknown date\n' +p207331 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000731f.jpg' +p207332 +sg25267 +g27 +sa(dp207333 +g25268 +S'The Smoker' +p207334 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207335 +sg25273 +S'pen and black ink and charcoal on laid paper' +p207336 +sg25275 +S'unknown date\n' +p207337 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007034.jpg' +p207338 +sg25267 +g27 +sa(dp207339 +g25268 +S'Sheet of Studies with Two Large Men on the Ground' +p207340 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207341 +sg25273 +S'black chalk and graphite on laid paper' +p207342 +sg25275 +S'unknown date\n' +p207343 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070d3.jpg' +p207344 +sg25267 +g27 +sa(dp207345 +g25268 +S'The Prodigal Son' +p207346 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207347 +sg25273 +S'pen and black ink with black wash on laid paper' +p207348 +sg25275 +S'unknown date\n' +p207349 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007002.jpg' +p207350 +sg25267 +g27 +sa(dp207351 +g25268 +S'The Prodigal Son' +p207352 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207353 +sg25273 +S'pen and black ink on laid paper' +p207354 +sg25275 +S'unknown date\n' +p207355 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a000715b.jpg' +p207356 +sg25267 +g27 +sa(dp207357 +g25268 +S'Centaur Carrying Off a Woman' +p207358 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207359 +sg25273 +S'pen and black ink with wash over crayon on laid paper' +p207360 +sg25275 +S'unknown date\n' +p207361 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006faa.jpg' +p207362 +sg25267 +g27 +sa(dp207363 +g25268 +S'Don Quixote' +p207364 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207365 +sg25273 +S'crayon on laid paper' +p207366 +sg25275 +S'unknown date\n' +p207367 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070c0.jpg' +p207368 +sg25267 +g27 +sa(dp207369 +g25268 +S'Actor Posing in Front of a Mirror' +p207370 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207371 +sg25273 +S'pen and black ink with crayon and watercolor on heavy laid paper' +p207372 +sg25275 +S'unknown date\n' +p207373 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a000712f.jpg' +p207374 +sg25267 +g27 +sa(dp207375 +g25268 +S'Venus Appearing to Aeneas' +p207376 +sg25270 +S'Marcantonio Raimondi' +p207377 +sg25273 +S'engraving' +p207378 +sg25275 +S'c. 1505' +p207379 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c781.jpg' +p207380 +sg25267 +g27 +sa(dp207381 +g25268 +S'Lawyer' +p207382 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207383 +sg25273 +S'black chalk on laid paper' +p207384 +sg25275 +S'unknown date\n' +p207385 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070a6.jpg' +p207386 +sg25267 +g27 +sa(dp207387 +g25268 +S'Dancer' +p207388 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207389 +sg25273 +S'crayon over charcoal on laid paper' +p207390 +sg25275 +S'unknown date\n' +p207391 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072a4.jpg' +p207392 +sg25267 +g27 +sa(dp207393 +g25268 +S'The Grandmother' +p207394 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207395 +sg25273 +S'pen and black ink with gray wash on laid paper' +p207396 +sg25275 +S'unknown date\n' +p207397 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070f2.jpg' +p207398 +sg25267 +g27 +sa(dp207399 +g25268 +S'Scene in a Palace of Justice' +p207400 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207401 +sg25273 +S'black chalk with wash marks on brown paper' +p207402 +sg25275 +S'unknown date\n' +p207403 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a0007102.jpg' +p207404 +sg25267 +g27 +sa(dp207405 +g25268 +S'The Reading' +p207406 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207407 +sg25273 +S'charcoal and crayon on laid paper' +p207408 +sg25275 +S'unknown date\n' +p207409 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a0007190.jpg' +p207410 +sg25267 +g27 +sa(dp207411 +g25268 +S'Woman with Veil' +p207412 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207413 +sg25273 +S'pen and black ink over black chalk on laid paper' +p207414 +sg25275 +S'unknown date\n' +p207415 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d4b.jpg' +p207416 +sg25267 +g27 +sa(dp207417 +g25268 +S'Head of a Man' +p207418 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207419 +sg25273 +S'black chalk with brown, orange, and blue wash on laid paper' +p207420 +sg25275 +S'unknown date\n' +p207421 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ebe.jpg' +p207422 +sg25267 +g27 +sa(dp207423 +g25268 +S'Head of a Man' +p207424 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207425 +sg25273 +S'black and red chalk on gray paper' +p207426 +sg25275 +S'unknown date\n' +p207427 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e65.jpg' +p207428 +sg25267 +g27 +sa(dp207429 +g25268 +S'Head of a Man' +p207430 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207431 +sg25273 +S'black, brown, and white crayon on gray paper' +p207432 +sg25275 +S'unknown date\n' +p207433 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e94.jpg' +p207434 +sg25267 +g27 +sa(dp207435 +g25268 +S'Head of a Man' +p207436 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207437 +sg25273 +S'watercolor over black chalk on laid paper' +p207438 +sg25275 +S'unknown date\n' +p207439 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e04.jpg' +p207440 +sg25267 +g27 +sa(dp207441 +g25268 +S'Orpheus and Eurydice' +p207442 +sg25270 +S'Marcantonio Raimondi' +p207443 +sg25273 +S'engraving' +p207444 +sg25275 +S'unknown date\n' +p207445 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c783.jpg' +p207446 +sg25267 +g27 +sa(dp207447 +g25268 +S'Head of a Man' +p207448 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207449 +sg25273 +S'watercolor over graphite, pen and black ink, and black chalk' +p207450 +sg25275 +S'unknown date\n' +p207451 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dd7.jpg' +p207452 +sg25267 +g27 +sa(dp207453 +g25268 +S'Head of a Man' +p207454 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207455 +sg25273 +S'watercolor' +p207456 +sg25275 +S'unknown date\n' +p207457 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e35.jpg' +p207458 +sg25267 +g27 +sa(dp207459 +g25268 +S'The Prodigal Son' +p207460 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207461 +sg25273 +S'pen and black ink with wash on laid paper' +p207462 +sg25275 +S'unknown date\n' +p207463 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f1d.jpg' +p207464 +sg25267 +g27 +sa(dp207465 +g25268 +S'The Prodigal Son' +p207466 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207467 +sg25273 +S'pen and black ink with wash on laid paper' +p207468 +sg25275 +S'unknown date\n' +p207469 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f4c.jpg' +p207470 +sg25267 +g27 +sa(dp207471 +g25268 +S'The Prodigal Son' +p207472 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207473 +sg25273 +S'pen and black ink with wash on laid paper' +p207474 +sg25275 +S'unknown date\n' +p207475 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006eed.jpg' +p207476 +sg25267 +g27 +sa(dp207477 +g25268 +S'The Prodigal Son' +p207478 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207479 +sg25273 +S'charcoal heightened with white on green-gray paper' +p207480 +sg25275 +S'unknown date\n' +p207481 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007074.jpg' +p207482 +sg25267 +g27 +sa(dp207483 +g25268 +S"Exposition universelle: L'Etranger trouve toutes les facilites desirables..." +p207484 +sg25270 +S'Artist Information (' +p207485 +sg25273 +S'(artist after)' +p207486 +sg25275 +S'\n' +p207487 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009aa1.jpg' +p207488 +sg25267 +g27 +sa(dp207489 +g25268 +S'Bordeaux-Laffite' +p207490 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207491 +sg25273 +S'hand-colored lithograph' +p207492 +sg25275 +S'1836' +p207493 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009216.jpg' +p207494 +sg25267 +g27 +sa(dp207495 +g25273 +S'bound volume with 18 lithographs' +p207496 +sg25267 +g27 +sg25275 +S'1839/1840' +p207497 +sg25268 +S'Les baigneurs' +p207498 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207499 +sa(dp207500 +g25268 +S"O qu'ils sont laids!" +p207501 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207502 +sg25273 +S'hand-colored lithograph' +p207503 +sg25275 +S'1836' +p207504 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00092/a0009211.jpg' +p207505 +sg25267 +g27 +sa(dp207506 +g25268 +S'The Birth of Venus' +p207507 +sg25270 +S'Marcantonio Raimondi' +p207508 +sg25273 +S'engraving' +p207509 +sg25275 +S'unknown date\n' +p207510 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c77e.jpg' +p207511 +sg25267 +g27 +sa(dp207512 +g25273 +S'bound volume with 60 lithographs (complete set of the series "Moeurs conjugales")' +p207513 +sg25267 +g27 +sg25275 +S'1839/1842' +p207514 +sg25268 +S'Moeurs conjugales' +p207515 +sg25270 +S'Honor\xc3\xa9 Daumier' +p207516 +sa(dp207517 +g25268 +S'Ornament for Knife Handle' +p207518 +sg25270 +S'Theodor de Bry' +p207519 +sg25273 +S'engraving' +p207520 +sg25275 +S'unknown date\n' +p207521 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd1e.jpg' +p207522 +sg25267 +g27 +sa(dp207523 +g25268 +S'Ornament for Knife Handle' +p207524 +sg25270 +S'Theodor de Bry' +p207525 +sg25273 +S'engraving' +p207526 +sg25275 +S'unknown date\n' +p207527 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd1f.jpg' +p207528 +sg25267 +g27 +sa(dp207529 +g25268 +S'Ornament for Knife Handle' +p207530 +sg25270 +S'Theodor de Bry' +p207531 +sg25273 +S'engraving' +p207532 +sg25275 +S'unknown date\n' +p207533 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd20.jpg' +p207534 +sg25267 +g27 +sa(dp207535 +g25268 +S'Ornament for Knife Handle' +p207536 +sg25270 +S'Theodor de Bry' +p207537 +sg25273 +S'engraving' +p207538 +sg25275 +S'unknown date\n' +p207539 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd21.jpg' +p207540 +sg25267 +g27 +sa(dp207541 +g25268 +S'Ornament for Knife Handle' +p207542 +sg25270 +S'Theodor de Bry' +p207543 +sg25273 +S'engraving' +p207544 +sg25275 +S'unknown date\n' +p207545 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd24.jpg' +p207546 +sg25267 +g27 +sa(dp207547 +g25268 +S'Ornament for Knife Handle' +p207548 +sg25270 +S'Theodor de Bry' +p207549 +sg25273 +S'engraving' +p207550 +sg25275 +S'unknown date\n' +p207551 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd25.jpg' +p207552 +sg25267 +g27 +sa(dp207553 +g25268 +S'Ornament for Knife Handle' +p207554 +sg25270 +S'Theodor de Bry' +p207555 +sg25273 +S'engraving' +p207556 +sg25275 +S'unknown date\n' +p207557 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd22.jpg' +p207558 +sg25267 +g27 +sa(dp207559 +g25268 +S'Ornament for Knife Handle' +p207560 +sg25270 +S'Theodor de Bry' +p207561 +sg25273 +S'engraving' +p207562 +sg25275 +S'unknown date\n' +p207563 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd23.jpg' +p207564 +sg25267 +g27 +sa(dp207565 +g25268 +S'Ornament' +p207566 +sg25270 +S'Theodor de Bry' +p207567 +sg25273 +S'engraving' +p207568 +sg25275 +S'unknown date\n' +p207569 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd19.jpg' +p207570 +sg25267 +g27 +sa(dp207571 +g25268 +S'Vulcan, Venus, and Eros' +p207572 +sg25270 +S'Marcantonio Raimondi' +p207573 +sg25273 +S'engraving' +p207574 +sg25275 +S'1508' +p207575 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c860.jpg' +p207576 +sg25267 +g27 +sa(dp207577 +g25268 +S'Ornament' +p207578 +sg25270 +S'Theodor de Bry' +p207579 +sg25273 +S'engraving' +p207580 +sg25275 +S'unknown date\n' +p207581 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd1b.jpg' +p207582 +sg25267 +g27 +sa(dp207583 +g25268 +S'Ornament' +p207584 +sg25270 +S'Theodor de Bry' +p207585 +sg25273 +S'engraving' +p207586 +sg25275 +S'unknown date\n' +p207587 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd1a.jpg' +p207588 +sg25267 +g27 +sa(dp207589 +g25268 +S'Ornament for Knife Handle' +p207590 +sg25270 +S'Theodor de Bry' +p207591 +sg25273 +S'engraving' +p207592 +sg25275 +S'unknown date\n' +p207593 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd1d.jpg' +p207594 +sg25267 +g27 +sa(dp207595 +g25268 +S'Ornament for Knife Handle' +p207596 +sg25270 +S'Theodor de Bry' +p207597 +sg25273 +S'engraving' +p207598 +sg25275 +S'unknown date\n' +p207599 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd1c.jpg' +p207600 +sg25267 +g27 +sa(dp207601 +g25268 +S'Ornament for Knife Handle' +p207602 +sg25270 +S'Theodor de Bry' +p207603 +sg25273 +S'engraving' +p207604 +sg25275 +S'unknown date\n' +p207605 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd28.jpg' +p207606 +sg25267 +g27 +sa(dp207607 +g25268 +S'Ornament for Knife Handle' +p207608 +sg25270 +S'Theodor de Bry' +p207609 +sg25273 +S'engraving' +p207610 +sg25275 +S'unknown date\n' +p207611 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd2d.jpg' +p207612 +sg25267 +g27 +sa(dp207613 +g25268 +S'Ornament for Knife Handle' +p207614 +sg25270 +S'Theodor de Bry' +p207615 +sg25273 +S'engraving' +p207616 +sg25275 +S'unknown date\n' +p207617 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd2e.jpg' +p207618 +sg25267 +g27 +sa(dp207619 +g25268 +S'Ornament for Knife Handle' +p207620 +sg25270 +S'Theodor de Bry' +p207621 +sg25273 +S'engraving' +p207622 +sg25275 +S'unknown date\n' +p207623 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd29.jpg' +p207624 +sg25267 +g27 +sa(dp207625 +g25268 +S'Ornament' +p207626 +sg25270 +S'Theodor de Bry' +p207627 +sg25273 +S'engraving' +p207628 +sg25275 +S'unknown date\n' +p207629 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd2c.jpg' +p207630 +sg25267 +g27 +sa(dp207631 +g25268 +S'Ornament' +p207632 +sg25270 +S'Theodor de Bry' +p207633 +sg25273 +S'engraving' +p207634 +sg25275 +S'unknown date\n' +p207635 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd2b.jpg' +p207636 +sg25267 +g27 +sa(dp207637 +g25268 +S'Mars, Venus, and Eros' +p207638 +sg25270 +S'Artist Information (' +p207639 +sg25273 +S'(artist after)' +p207640 +sg25275 +S'\n' +p207641 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c861.jpg' +p207642 +sg25267 +g27 +sa(dp207643 +g25268 +S'Ornament' +p207644 +sg25270 +S'Theodor de Bry' +p207645 +sg25273 +S'engraving' +p207646 +sg25275 +S'unknown date\n' +p207647 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd26.jpg' +p207648 +sg25267 +g27 +sa(dp207649 +g25268 +S'Ornament' +p207650 +sg25270 +S'Theodor de Bry' +p207651 +sg25273 +S'engraving' +p207652 +sg25275 +S'unknown date\n' +p207653 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd2a.jpg' +p207654 +sg25267 +g27 +sa(dp207655 +g25268 +S'Ornament' +p207656 +sg25270 +S'Theodor de Bry' +p207657 +sg25273 +S'engraving' +p207658 +sg25275 +S'unknown date\n' +p207659 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd27.jpg' +p207660 +sg25267 +g27 +sa(dp207661 +g25268 +S'Ornament' +p207662 +sg25270 +S'Theodor de Bry' +p207663 +sg25273 +S'engraving' +p207664 +sg25275 +S'unknown date\n' +p207665 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd2f.jpg' +p207666 +sg25267 +g27 +sa(dp207667 +g25268 +S'Ornament' +p207668 +sg25270 +S'Theodor de Bry' +p207669 +sg25273 +S'engraving' +p207670 +sg25275 +S'unknown date\n' +p207671 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd33.jpg' +p207672 +sg25267 +g27 +sa(dp207673 +g25268 +S'Ornament' +p207674 +sg25270 +S'Theodor de Bry' +p207675 +sg25273 +S'engraving' +p207676 +sg25275 +S'unknown date\n' +p207677 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd32.jpg' +p207678 +sg25267 +g27 +sa(dp207679 +g25268 +S'Ornament' +p207680 +sg25270 +S'Theodor de Bry' +p207681 +sg25273 +S'engraving' +p207682 +sg25275 +S'unknown date\n' +p207683 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd31.jpg' +p207684 +sg25267 +g27 +sa(dp207685 +g25268 +S'Jewelry Ornament' +p207686 +sg25270 +S'Theodor de Bry' +p207687 +sg25273 +S'engraving' +p207688 +sg25275 +S'unknown date\n' +p207689 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd30.jpg' +p207690 +sg25267 +g27 +sa(dp207691 +g25268 +S'Bow Embellished with Flowers' +p207692 +sg25270 +S'Johannes Hanias' +p207693 +sg25273 +S'engraving' +p207694 +sg25275 +S'unknown date\n' +p207695 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2cd.jpg' +p207696 +sg25267 +g27 +sa(dp207697 +g25268 +S'Star Embellished with Flowers' +p207698 +sg25270 +S'Johannes Hanias' +p207699 +sg25273 +S'engraving' +p207700 +sg25275 +S'unknown date\n' +p207701 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2ce.jpg' +p207702 +sg25267 +g27 +sa(dp207703 +g25268 +S'Hercules and Antaeus' +p207704 +sg25270 +S'Artist Information (' +p207705 +sg25273 +S'(artist after)' +p207706 +sg25275 +S'\n' +p207707 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c862.jpg' +p207708 +sg25267 +g27 +sa(dp207709 +g25268 +S'Pendant Embellished with Flowers' +p207710 +sg25270 +S'Johannes Hanias' +p207711 +sg25273 +S'engraving' +p207712 +sg25275 +S'unknown date\n' +p207713 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2cf.jpg' +p207714 +sg25267 +g27 +sa(dp207715 +g25268 +S'Cross Embellished with Flowers' +p207716 +sg25270 +S'Johannes Hanias' +p207717 +sg25273 +S'engraving' +p207718 +sg25275 +S'unknown date\n' +p207719 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c8b.jpg' +p207720 +sg25267 +g27 +sa(dp207721 +g25268 +S'Fountain of Youth' +p207722 +sg25270 +S'Artist Information (' +p207723 +sg25273 +S'(artist after)' +p207724 +sg25275 +S'\n' +p207725 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd16.jpg' +p207726 +sg25267 +g27 +sa(dp207727 +g25268 +S'Country Fair' +p207728 +sg25270 +S'Artist Information (' +p207729 +sg25273 +S'(artist after)' +p207730 +sg25275 +S'\n' +p207731 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd14.jpg' +p207732 +sg25267 +g27 +sa(dp207733 +g25268 +S'The Golden Age' +p207734 +sg25270 +S'Artist Information (' +p207735 +sg25273 +S'(artist after)' +p207736 +sg25275 +S'\n' +p207737 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd18.jpg' +p207738 +sg25267 +g27 +sa(dp207739 +g25268 +S'Marching Soldiers, with an Armory Car in the Center' +p207740 +sg25270 +S'Artist Information (' +p207741 +sg25273 +S'(artist after)' +p207742 +sg25275 +S'\n' +p207743 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd15.jpg' +p207744 +sg25267 +g27 +sa(dp207745 +g25268 +S'The Baggage Train with the Sergeant-Major' +p207746 +sg25270 +S'Artist Information (' +p207747 +sg25273 +S'(artist after)' +p207748 +sg25275 +S'\n' +p207749 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd17.jpg' +p207750 +sg25267 +g27 +sa(dp207751 +g25268 +S'Solomon de Bray' +p207752 +sg25270 +S'Dirck de Bray' +p207753 +sg25273 +S'woodcut' +p207754 +sg25275 +S'unknown date\n' +p207755 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000be/a000be50.jpg' +p207756 +sg25267 +g27 +sa(dp207757 +g25268 +S'Self-Portrait (Edgar Degas, par lui-m\xc3\xaame)' +p207758 +sg25270 +S'Edgar Degas' +p207759 +sg25273 +S'etching' +p207760 +sg25275 +S'probably 1857' +p207761 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f12.jpg' +p207762 +sg25267 +g27 +sa(dp207763 +g25268 +S'The Engraver Joseph Tourny (Le graveur Joseph Tourny)' +p207764 +sg25270 +S'Edgar Degas' +p207765 +sg25273 +S'etching' +p207766 +sg25275 +S'1857' +p207767 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a000958d.jpg' +p207768 +sg25267 +g27 +sa(dp207769 +g25268 +S'The Man with Two Trumpets' +p207770 +sg25270 +S'Artist Information (' +p207771 +sg25273 +S'(artist after)' +p207772 +sg25275 +S'\n' +p207773 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c788.jpg' +p207774 +sg25267 +g27 +sa(dp207775 +g25268 +S'The Actress Ellen Andr\xc3\xa9e' +p207776 +sg25270 +S'Edgar Degas' +p207777 +sg25273 +S'drypoint (electric crayon)' +p207778 +sg25275 +S'1879' +p207779 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009800.jpg' +p207780 +sg25267 +g27 +sa(dp207781 +g25268 +S'Dancers in the Wings (Danseuses dans la coulisse)' +p207782 +sg25270 +S'Edgar Degas' +p207783 +sg25273 +S'etching, aquatint, and drypoint' +p207784 +sg25275 +S'c. 1877' +p207785 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a00097fd.jpg' +p207786 +sg25267 +g27 +sa(dp207787 +g25268 +S'On Stage (Sur la sc\xc3\xa8ne (3e planche))' +p207788 +sg25270 +S'Edgar Degas' +p207789 +sg25273 +S'soft-ground etching' +p207790 +sg25275 +S'1877' +p207791 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009805.jpg' +p207792 +sg25267 +g27 +sa(dp207793 +g25268 +S'Dancers in the Wings (Danseuses dans la coulisse)' +p207794 +sg25270 +S'Edgar Degas' +p207795 +sg25273 +S'etching, aquatint, and drypoint' +p207796 +sg25275 +S'c. 1877' +p207797 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00097/a00097fe.jpg' +p207798 +sg25267 +g27 +sa(dp207799 +g25268 +S'Mary Cassatt at the Louvre: The Etruscan Gallery (Au Louvre: Mus\xc3\xa9e des antiques)' +p207800 +sg25270 +S'Edgar Degas' +p207801 +sg25273 +S'etching, aquatint, and electric crayon' +p207802 +sg25275 +S'c. 1879/1880' +p207803 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a0009593.jpg' +p207804 +sg25267 +g27 +sa(dp207805 +g25268 +S'Nude Woman Standing, Drying Herself (Femme nue debout, a sa toilette)' +p207806 +sg25270 +S'Edgar Degas' +p207807 +sg25273 +S'lithograph' +p207808 +sg25275 +S'c. 1890' +p207809 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a00063e9.jpg' +p207810 +sg25267 +g27 +sa(dp207811 +g25273 +S'color lithograph' +p207812 +sg25267 +g27 +sg25275 +S'1929' +p207813 +sg25268 +S'Gladiator' +p207814 +sg25270 +S'Giorgio De Chirico' +p207815 +sa(dp207816 +g25273 +S'American' +p207817 +sg25267 +g27 +sg25275 +S'(printer)' +p207818 +sg25268 +S'Lake Tarryall' +p207819 +sg25270 +S'Artist Information (' +p207820 +sa(dp207821 +g25273 +S'American, active 1930s' +p207822 +sg25267 +g27 +sg25275 +S'(printer)' +p207823 +sg25268 +S'Menemsha Village' +p207824 +sg25270 +S'Artist Information (' +p207825 +sa(dp207826 +g25273 +S'American' +p207827 +sg25267 +g27 +sg25275 +S'(printer)' +p207828 +sg25268 +S'Great God Pan' +p207829 +sg25270 +S'Artist Information (' +p207830 +sa(dp207831 +g25268 +S"Raphael's Dream" +p207832 +sg25270 +S'Artist Information (' +p207833 +sg25273 +S'(artist after)' +p207834 +sg25275 +S'\n' +p207835 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c865.jpg' +p207836 +sg25267 +g27 +sa(dp207837 +g25273 +S'lithograph in black on wove paper' +p207838 +sg25267 +g27 +sg25275 +S'1938' +p207839 +sg25268 +S'Stony Mill, Virginia' +p207840 +sg25270 +S'Carson Sutherlin Davenport' +p207841 +sa(dp207842 +g25268 +S'Women of Algiers' +p207843 +sg25270 +S'Eug\xc3\xa8ne Delacroix' +p207844 +sg25273 +S'graphite' +p207845 +sg25275 +S'1833' +p207846 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00024/a0002434.jpg' +p207847 +sg25267 +g27 +sa(dp207848 +g25268 +S'Portrait of a Child' +p207849 +sg25270 +S'Eug\xc3\xa8ne Delacroix' +p207850 +sg25273 +S'graphite' +p207851 +sg25275 +S'unknown date\n' +p207852 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a0007203.jpg' +p207853 +sg25267 +g27 +sa(dp207854 +g25268 +S'Tiger' +p207855 +sg25270 +S'Eug\xc3\xa8ne Delacroix' +p207856 +sg25273 +S'watercolor' +p207857 +sg25275 +S'c. 1830' +p207858 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00031/a00031b4.jpg' +p207859 +sg25267 +g27 +sa(dp207860 +g25268 +S'Young Tiger Playing with its Mother (Jeune tigre jouant avec sa m\xc3\xa8re)' +p207861 +sg25270 +S'Eug\xc3\xa8ne Delacroix' +p207862 +sg25273 +S'lithograph' +p207863 +sg25275 +S'1831' +p207864 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009887.jpg' +p207865 +sg25267 +g27 +sa(dp207866 +g25268 +S'Young Tiger Playing with its Mother (Jeune tigre jouant avec sa m\xc3\xa8re)' +p207867 +sg25270 +S'Eug\xc3\xa8ne Delacroix' +p207868 +sg25273 +S'lithograph' +p207869 +sg25275 +S'1831' +p207870 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009886.jpg' +p207871 +sg25267 +g27 +sa(dp207872 +g25268 +S"Tiger Sleeping at the Entrance to its Lair (Tigre couch\xc3\xa9 \xc3\xa0 l'entr\xc3\xa9e de son antre)" +p207873 +sg25270 +S'Eug\xc3\xa8ne Delacroix' +p207874 +sg25273 +S'etching' +p207875 +sg25275 +S'c. 1828/1833' +p207876 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a0009889.jpg' +p207877 +sg25267 +g27 +sa(dp207878 +g25268 +S"The Suitor's Visit" +p207879 +sg25270 +S'Gerard ter Borch the Younger' +p207880 +sg25273 +S'oil on canvas' +p207881 +sg25275 +S'c. 1658' +p207882 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e53.jpg' +p207883 +sg25267 +S"Dutch seventeenth–century artists drew their subject matter from all elements of society. The artist who best captured the refinement of the wealthy bourgeoisie in the second half of the century was Gerard ter Borch. In this example, an elegant gentleman bows gracefully as he enters the room. A young woman wearing a beautiful satin dress with an orange–red jacket stands to greet him while another woman sits at a table playing a theorbo, a musical instrument. Behind this group a man warms his hands at a fireplace. The costumes, instruments, imposing mantelpiece, and gilded wallpaper all attest to the high social status of the figures.\n Ter Borch's exquisite painting technique, which consisted of delicate touches with the brush and the use of thin glazes to suggest transparencies, allowed him to create realistic textural effects, whether of lace, satin, or the pile of a wool tablecloth. His main focus was the psychological interaction of the two protagonists, the suitor and the standing woman. These two figures are clearly communicating through their glances and gestures. Seen in the context of the musical instruments and dog, both of which have associations of love, their meeting has strong sexual overtones.\n " +p207884 +sa(dp207885 +g25268 +S'Poetry' +p207886 +sg25270 +S'Artist Information (' +p207887 +sg25273 +S'(artist after)' +p207888 +sg25275 +S'\n' +p207889 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c78b.jpg' +p207890 +sg25267 +g27 +sa(dp207891 +g25268 +S'Two Horsemen Fighting' +p207892 +sg25270 +S'Pieter van Laer' +p207893 +sg25273 +S'etching' +p207894 +sg25275 +S'unknown date\n' +p207895 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d275.jpg' +p207896 +sg25267 +g27 +sa(dp207897 +g25268 +S'Horseman' +p207898 +sg25270 +S'Pieter van Laer' +p207899 +sg25273 +S'etching' +p207900 +sg25275 +S'unknown date\n' +p207901 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d278.jpg' +p207902 +sg25267 +g27 +sa(dp207903 +g25268 +S'The Fall of Man' +p207904 +sg25270 +S'Etienne Delaune' +p207905 +sg25273 +S'engraving' +p207906 +sg25275 +S'unknown date\n' +p207907 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008332.jpg' +p207908 +sg25267 +g27 +sa(dp207909 +g25268 +S'Essau Selling his Birthright' +p207910 +sg25270 +S'Etienne Delaune' +p207911 +sg25273 +S'engraving' +p207912 +sg25275 +S'unknown date\n' +p207913 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000832d.jpg' +p207914 +sg25267 +g27 +sa(dp207915 +g25268 +S'The Deluge' +p207916 +sg25270 +S'Etienne Delaune' +p207917 +sg25273 +S'engraving' +p207918 +sg25275 +S'unknown date\n' +p207919 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008330.jpg' +p207920 +sg25267 +g27 +sa(dp207921 +g25268 +S'Incest of Loth' +p207922 +sg25270 +S'Etienne Delaune' +p207923 +sg25273 +S'engraving' +p207924 +sg25275 +S'unknown date\n' +p207925 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000832f.jpg' +p207926 +sg25267 +g27 +sa(dp207927 +g25268 +S'Sacrifice of Abraham' +p207928 +sg25270 +S'Etienne Delaune' +p207929 +sg25273 +S'engraving' +p207930 +sg25275 +S'unknown date\n' +p207931 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000832e.jpg' +p207932 +sg25267 +g27 +sa(dp207933 +g25268 +S'Death of Abel' +p207934 +sg25270 +S'Etienne Delaune' +p207935 +sg25273 +S'engraving' +p207936 +sg25275 +S'unknown date\n' +p207937 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008331.jpg' +p207938 +sg25267 +g27 +sa(dp207939 +g25268 +S'Title Page' +p207940 +sg25270 +S'Etienne Delaune' +p207941 +sg25273 +S'engraving' +p207942 +sg25275 +S'unknown date\n' +p207943 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000831f.jpg' +p207944 +sg25267 +g27 +sa(dp207945 +g25268 +S'Serpent Speaking to a Young Man' +p207946 +sg25270 +S'Marcantonio Raimondi' +p207947 +sg25273 +S'engraving' +p207948 +sg25275 +S'unknown date\n' +p207949 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c86a.jpg' +p207950 +sg25267 +g27 +sa(dp207951 +g25268 +S'Judith with the Head of Holofernes' +p207952 +sg25270 +S'Etienne Delaune' +p207953 +sg25273 +S'engraving' +p207954 +sg25275 +S'unknown date\n' +p207955 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008327.jpg' +p207956 +sg25267 +g27 +sa(dp207957 +g25268 +S'Mercury with the Head of Argus' +p207958 +sg25270 +S'Etienne Delaune' +p207959 +sg25273 +S'engraving' +p207960 +sg25275 +S'unknown date\n' +p207961 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008324.jpg' +p207962 +sg25267 +g27 +sa(dp207963 +g25268 +S'Minerva Standing' +p207964 +sg25270 +S'Etienne Delaune' +p207965 +sg25273 +S'engraving' +p207966 +sg25275 +S'unknown date\n' +p207967 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008329.jpg' +p207968 +sg25267 +g27 +sa(dp207969 +g25268 +S'Diana Standing' +p207970 +sg25270 +S'Etienne Delaune' +p207971 +sg25273 +S'engraving' +p207972 +sg25275 +S'unknown date\n' +p207973 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008322.jpg' +p207974 +sg25267 +g27 +sa(dp207975 +g25268 +S'Mars' +p207976 +sg25270 +S'Etienne Delaune' +p207977 +sg25273 +S'engraving' +p207978 +sg25275 +S'unknown date\n' +p207979 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008321.jpg' +p207980 +sg25267 +g27 +sa(dp207981 +g25268 +S'Hercules' +p207982 +sg25270 +S'Etienne Delaune' +p207983 +sg25273 +S'engraving' +p207984 +sg25275 +S'unknown date\n' +p207985 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000832b.jpg' +p207986 +sg25267 +g27 +sa(dp207987 +g25268 +S'Title Page' +p207988 +sg25270 +S'Etienne Delaune' +p207989 +sg25273 +S'engraving' +p207990 +sg25275 +S'unknown date\n' +p207991 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008320.jpg' +p207992 +sg25267 +g27 +sa(dp207993 +g25268 +S'Head of Medusa' +p207994 +sg25270 +S'Etienne Delaune' +p207995 +sg25273 +S'engraving' +p207996 +sg25275 +S'unknown date\n' +p207997 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008326.jpg' +p207998 +sg25267 +g27 +sa(dp207999 +g25268 +S'Arabesque Designs' +p208000 +sg25270 +S'Etienne Delaune' +p208001 +sg25273 +S'engraving' +p208002 +sg25275 +S'unknown date\n' +p208003 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000832c.jpg' +p208004 +sg25267 +g27 +sa(dp208005 +g25268 +S'Mars' +p208006 +sg25270 +S'Etienne Delaune' +p208007 +sg25273 +S'engraving' +p208008 +sg25275 +S'unknown date\n' +p208009 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000832a.jpg' +p208010 +sg25267 +g27 +sa(dp208011 +g25268 +S'Two Women with the Zodiac' +p208012 +sg25270 +S'Artist Information (' +p208013 +sg25273 +S'(artist after)' +p208014 +sg25275 +S'\n' +p208015 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c869.jpg' +p208016 +sg25267 +g27 +sa(dp208017 +g25268 +S'Neptune' +p208018 +sg25270 +S'Etienne Delaune' +p208019 +sg25273 +S'engraving' +p208020 +sg25275 +S'unknown date\n' +p208021 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008323.jpg' +p208022 +sg25267 +g27 +sa(dp208023 +g25268 +S'Orlando in a Fury Tearing up Trees' +p208024 +sg25270 +S'Artist Information (' +p208025 +sg25273 +S'(artist after)' +p208026 +sg25275 +S'\n' +p208027 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a0007682.jpg' +p208028 +sg25267 +g27 +sa(dp208029 +g25268 +S'Cherub' +p208030 +sg25270 +S'Etienne Delaune' +p208031 +sg25273 +S'engraving' +p208032 +sg25275 +S'unknown date\n' +p208033 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008328.jpg' +p208034 +sg25267 +g27 +sa(dp208035 +g25268 +S'Female Figure' +p208036 +sg25270 +S'Etienne Delaune' +p208037 +sg25273 +S'engraving' +p208038 +sg25275 +S'unknown date\n' +p208039 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008325.jpg' +p208040 +sg25267 +g27 +sa(dp208041 +g25268 +S'Griff' +p208042 +sg25270 +S'Francis Seymour Haden' +p208043 +sg25273 +S'graphite on wove paper' +p208044 +sg25275 +S'probably c. 1864' +p208045 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c16.jpg' +p208046 +sg25267 +g27 +sa(dp208047 +g25273 +S'1 vol: ill: 30 engravings' +p208048 +sg25267 +g27 +sg25275 +S'unknown date\n' +p208049 +sg25268 +S'Ornament Engravings' +p208050 +sg25270 +S'Etienne Delaune' +p208051 +sa(dp208052 +g25268 +S'Ernest Casimir, Count of Nassau-Dietz' +p208053 +sg25270 +S'Artist Information (' +p208054 +sg25273 +S'(artist after)' +p208055 +sg25275 +S'\n' +p208056 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4f0.jpg' +p208057 +sg25267 +g27 +sa(dp208058 +g25273 +S'French, 1867 - 1939' +p208059 +sg25267 +g27 +sg25275 +S'(artist)' +p208060 +sg25268 +S'Title Page to "L\'Amour"' +p208061 +sg25270 +S'Artist Information (' +p208062 +sa(dp208063 +g25273 +S'French, 1867 - 1939' +p208064 +sg25267 +g27 +sg25275 +S'(artist)' +p208065 +sg25268 +S'Nos ames, en des gestes lents' +p208066 +sg25270 +S'Artist Information (' +p208067 +sa(dp208068 +g25273 +S'(artist)' +p208069 +sg25267 +g27 +sg25275 +S'\n' +p208070 +sg25268 +S"Et c'est la caresse de ses mains" +p208071 +sg25270 +S'Artist Information (' +p208072 +sa(dp208073 +g25268 +S'The Three Doctors' +p208074 +sg25270 +S'Marcantonio Raimondi' +p208075 +sg25273 +S'engraving' +p208076 +sg25275 +S'unknown date\n' +p208077 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00050/a0005037.jpg' +p208078 +sg25267 +g27 +sa(dp208079 +g25273 +S'French, 1867 - 1939' +p208080 +sg25267 +g27 +sg25275 +S'(artist)' +p208081 +sg25268 +S'Elle \xc3\xa9tait plus belle que les r\xc3\xaaves' +p208082 +sg25270 +S'Artist Information (' +p208083 +sa(dp208084 +g25273 +S'(artist)' +p208085 +sg25267 +g27 +sg25275 +S'\n' +p208086 +sg25268 +S'Les attitudes sont faciles et chastes' +p208087 +sg25270 +S'Artist Information (' +p208088 +sa(dp208089 +g25273 +S'French, 1867 - 1939' +p208090 +sg25267 +g27 +sg25275 +S'(artist)' +p208091 +sg25268 +S'All\xc3\xa9gorie' +p208092 +sg25270 +S'Artist Information (' +p208093 +sa(dp208094 +g25273 +S'French, 1867 - 1939' +p208095 +sg25267 +g27 +sg25275 +S'(artist)' +p208096 +sg25268 +S'La vie devient pr\xc3\xa9cieuse, discr\xc3\xa8te' +p208097 +sg25270 +S'Artist Information (' +p208098 +sa(dp208099 +g25273 +S'French, 1867 - 1939' +p208100 +sg25267 +g27 +sg25275 +S'(artist)' +p208101 +sg25268 +S"Mais c'est le coeur qui bat trop vite" +p208102 +sg25270 +S'Artist Information (' +p208103 +sa(dp208104 +g25273 +S'French, 1867 - 1939' +p208105 +sg25267 +g27 +sg25275 +S'(artist)' +p208106 +sg25268 +S"Sur le canap\xc3\xa9 d'argent pale" +p208107 +sg25270 +S'Artist Information (' +p208108 +sa(dp208109 +g25273 +S'(artist)' +p208110 +sg25267 +g27 +sg25275 +S'\n' +p208111 +sg25268 +S'Le bouquet matinal, les larmes' +p208112 +sg25270 +S'Artist Information (' +p208113 +sa(dp208114 +g25273 +S'(artist)' +p208115 +sg25267 +g27 +sg25275 +S'\n' +p208116 +sg25268 +S"Les cr\xc3\xa9puscules ont une douceur d'ancienne peinture" +p208117 +sg25270 +S'Artist Information (' +p208118 +sa(dp208119 +g25273 +S'(artist)' +p208120 +sg25267 +g27 +sg25275 +S'\n' +p208121 +sg25268 +S"Le chevalier n'est pas mort \xc3\xa0 la croisade" +p208122 +sg25270 +S'Artist Information (' +p208123 +sa(dp208124 +g25273 +S'French, 1867 - 1939' +p208125 +sg25267 +g27 +sg25275 +S'(artist)' +p208126 +sg25268 +S'Ce fut un religieux myst\xc3\xa8re' +p208127 +sg25270 +S'Artist Information (' +p208128 +sa(dp208129 +g25268 +S'The Plague' +p208130 +sg25270 +S'Artist Information (' +p208131 +sg25273 +S'(artist after)' +p208132 +sg25275 +S'\n' +p208133 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c86b.jpg' +p208134 +sg25267 +g27 +sa(dp208135 +g25268 +S"La facade de l'abbaye de S. Nicaise de Reims" +p208136 +sg25270 +S'Nicolas de Son' +p208137 +sg25273 +S'etching' +p208138 +sg25275 +S'1625' +p208139 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c2d.jpg' +p208140 +sg25267 +g27 +sa(dp208141 +g25273 +S'drypoint' +p208142 +sg25267 +g27 +sg25275 +S'unknown date\n' +p208143 +sg25268 +S'Anchor Inn Greenwich' +p208144 +sg25270 +S'Francis Dodd' +p208145 +sa(dp208146 +g25273 +S'drypoint' +p208147 +sg25267 +g27 +sg25275 +S'1910' +p208148 +sg25268 +S'Aldo Antonietti' +p208149 +sg25270 +S'Francis Dodd' +p208150 +sa(dp208151 +g25273 +S'drypoint' +p208152 +sg25267 +g27 +sg25275 +S'unknown date\n' +p208153 +sg25268 +S'Auxere' +p208154 +sg25270 +S'Francis Dodd' +p208155 +sa(dp208156 +g25273 +S'drypoint' +p208157 +sg25267 +g27 +sg25275 +S'1908' +p208158 +sg25268 +S'Bone at the Press' +p208159 +sg25270 +S'Francis Dodd' +p208160 +sa(dp208161 +g25273 +S'drypoint' +p208162 +sg25267 +g27 +sg25275 +S'1907' +p208163 +sg25268 +S'Returned Emigrant' +p208164 +sg25270 +S'Francis Dodd' +p208165 +sa(dp208166 +g25273 +S'black chalk on brown paper' +p208167 +sg25267 +g27 +sg25275 +S'unknown date\n' +p208168 +sg25268 +S'Epstein' +p208169 +sg25270 +S'Francis Dodd' +p208170 +sa(dp208171 +g25273 +S'drypoint' +p208172 +sg25267 +g27 +sg25275 +S'1914' +p208173 +sg25268 +S'Henry Rushbury' +p208174 +sg25270 +S'Francis Dodd' +p208175 +sa(dp208176 +g25273 +S'drypoint' +p208177 +sg25267 +g27 +sg25275 +S'unknown date\n' +p208178 +sg25268 +S'Leon' +p208179 +sg25270 +S'Francis Dodd' +p208180 +sa(dp208181 +g25273 +S'drypoint' +p208182 +sg25267 +g27 +sg25275 +S'1920' +p208183 +sg25268 +S'Old Postillion' +p208184 +sg25270 +S'Francis Dodd' +p208185 +sa(dp208186 +g25268 +S'Pensive Woman' +p208187 +sg25270 +S'Artist Information (' +p208188 +sg25273 +S'(artist after)' +p208189 +sg25275 +S'\n' +p208190 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c81c.jpg' +p208191 +sg25267 +g27 +sa(dp208192 +g25273 +S'drypoint' +p208193 +sg25267 +g27 +sg25275 +S'1928' +p208194 +sg25268 +S'Pamplona' +p208195 +sg25270 +S'Francis Dodd' +p208196 +sa(dp208197 +g25273 +S'drypoint' +p208198 +sg25267 +g27 +sg25275 +S'1915' +p208199 +sg25268 +S'Quayside' +p208200 +sg25270 +S'Francis Dodd' +p208201 +sa(dp208202 +g25273 +S'drypoint' +p208203 +sg25267 +g27 +sg25275 +S'1915' +p208204 +sg25268 +S'Susan Resting' +p208205 +sg25270 +S'Francis Dodd' +p208206 +sa(dp208207 +g25273 +S'drypoint' +p208208 +sg25267 +g27 +sg25275 +S'1910' +p208209 +sg25268 +S'Auntie Susie Reading' +p208210 +sg25270 +S'Francis Dodd' +p208211 +sa(dp208212 +g25273 +S'drypoint' +p208213 +sg25267 +g27 +sg25275 +S'1911' +p208214 +sg25268 +S'Mother and Child' +p208215 +sg25270 +S'Francis Dodd' +p208216 +sa(dp208217 +g25273 +S'drypoint' +p208218 +sg25267 +g27 +sg25275 +S'1911' +p208219 +sg25268 +S'A.J. Donkin' +p208220 +sg25270 +S'Francis Dodd' +p208221 +sa(dp208222 +g25273 +S'drypoint' +p208223 +sg25267 +g27 +sg25275 +S'1927' +p208224 +sg25268 +S'Porta della Carta' +p208225 +sg25270 +S'Francis Dodd' +p208226 +sa(dp208227 +g25273 +S'drypoint' +p208228 +sg25267 +g27 +sg25275 +S'1916' +p208229 +sg25268 +S'Strand with Sky' +p208230 +sg25270 +S'Francis Dodd' +p208231 +sa(dp208232 +g25273 +S'etching' +p208233 +sg25267 +g27 +sg25275 +S'unknown date\n' +p208234 +sg25268 +S'Chair' +p208235 +sg25270 +S'Nal Bal Dian' +p208236 +sa(dp208237 +g25273 +S'monotype' +p208238 +sg25267 +g27 +sg25275 +S'1943' +p208239 +sg25268 +S'Sarabande (Portrait of Adrian Segal?)' +p208240 +sg25270 +S'Stella Drabkin' +p208241 +sa(dp208242 +g25268 +S'Christ before Caiaphas' +p208243 +sg25270 +S'Lucas Cranach the Elder' +p208244 +sg25273 +S'woodcut' +p208245 +sg25275 +S'unknown date\n' +p208246 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0a6.jpg' +p208247 +sg25267 +g27 +sa(dp208248 +g25268 +S'Samuel Johnson' +p208249 +sg25270 +S'Artist Information (' +p208250 +sg25273 +S'(artist after)' +p208251 +sg25275 +S'\n' +p208252 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a0007868.jpg' +p208253 +sg25267 +g27 +sa(dp208254 +g25268 +S'Jacques-Benigne Bossuet' +p208255 +sg25270 +S'Artist Information (' +p208256 +sg25273 +S'(artist after)' +p208257 +sg25275 +S'\n' +p208258 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096ff.jpg' +p208259 +sg25267 +g27 +sa(dp208260 +g25268 +S'Louis-Alexandre de Bourdon, comte de Toulouse' +p208261 +sg25270 +S'Artist Information (' +p208262 +sg25273 +S'(artist after)' +p208263 +sg25275 +S'\n' +p208264 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096f3.jpg' +p208265 +sg25267 +g27 +sa(dp208266 +g25268 +S'Marie de Laubespine' +p208267 +sg25270 +S'Artist Information (' +p208268 +sg25273 +S'(artist after)' +p208269 +sg25275 +S'\n' +p208270 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096f4.jpg' +p208271 +sg25267 +g27 +sa(dp208272 +g25273 +S'(artist after)' +p208273 +sg25267 +g27 +sg25275 +S'\n' +p208274 +sg25268 +S'Samuel Bernard' +p208275 +sg25270 +S'Artist Information (' +p208276 +sa(dp208277 +g25268 +S'Cardinal de Fleury' +p208278 +sg25270 +S'Artist Information (' +p208279 +sg25273 +S'(artist after)' +p208280 +sg25275 +S'\n' +p208281 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00096/a00096f0.jpg' +p208282 +sg25267 +g27 +sa(dp208283 +g25268 +S'Riding School' +p208284 +sg25270 +S'Jacob Duck' +p208285 +sg25273 +S'etching' +p208286 +sg25275 +S'unknown date\n' +p208287 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0c3.jpg' +p208288 +sg25267 +g27 +sa(dp208289 +g25268 +S'River Landscape with Horseman' +p208290 +sg25270 +S'Jacob Duck' +p208291 +sg25273 +S'etching' +p208292 +sg25275 +S'unknown date\n' +p208293 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0c2.jpg' +p208294 +sg25267 +g27 +sa(dp208295 +g25268 +S'View in England (Vue prise en Angleterre)' +p208296 +sg25270 +S'Jules Dupr\xc3\xa9' +p208297 +sg25273 +S'lithograph' +p208298 +sg25275 +S'1836' +p208299 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a000988d.jpg' +p208300 +sg25267 +g27 +sa(dp208301 +g25268 +S'Three Pigs' +p208302 +sg25270 +S'Karel Dujardin' +p208303 +sg25273 +S'etching' +p208304 +sg25275 +S'1652' +p208305 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0d4.jpg' +p208306 +sg25267 +g27 +sa(dp208307 +g25268 +S'Christ and the Woman of Samaria' +p208308 +sg25270 +S'Lucas Cranach the Elder' +p208309 +sg25273 +S'woodcut' +p208310 +sg25275 +S'unknown date\n' +p208311 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8b9.jpg' +p208312 +sg25267 +g27 +sa(dp208313 +g25268 +S'The Ravisher' +p208314 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208315 +sg25273 +S'engraving' +p208316 +sg25275 +S'c. 1495' +p208317 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a98e.jpg' +p208318 +sg25267 +g27 +sa(dp208319 +g25268 +S'The Holy Family with the Mayfly' +p208320 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208321 +sg25273 +S'engraving on laid paper' +p208322 +sg25275 +S'1495/1496' +p208323 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0fb.jpg' +p208324 +sg25267 +g27 +sa(dp208325 +g25268 +S'The Ill-Assorted Couple' +p208326 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208327 +sg25273 +S'engraving' +p208328 +sg25275 +S'1495/1496' +p208329 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a98d.jpg' +p208330 +sg25267 +g27 +sa(dp208331 +g25268 +S'Five Soldiers and a Turk on Horseback' +p208332 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208333 +sg25273 +S'engraving' +p208334 +sg25275 +S'1495/1496' +p208335 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a988.jpg' +p208336 +sg25267 +g27 +sa(dp208337 +g25268 +S'The Little Courier' +p208338 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208339 +sg25273 +S'engraving' +p208340 +sg25275 +S'c. 1496' +p208341 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a98f.jpg' +p208342 +sg25267 +g27 +sa(dp208343 +g25268 +S'The Monstrous Pig of Landser' +p208344 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208345 +sg25273 +S'engraving on laid paper' +p208346 +sg25275 +S'probably 1496' +p208347 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a987.jpg' +p208348 +sg25267 +g27 +sa(dp208349 +g25268 +S'Promenade' +p208350 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208351 +sg25273 +S'engraving' +p208352 +sg25275 +S'c. 1497' +p208353 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00059/a0005944.jpg' +p208354 +sg25267 +g27 +sa(dp208355 +g25268 +S'The Prodigal Son' +p208356 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208357 +sg25273 +S'engraving' +p208358 +sg25275 +S'c. 1496' +p208359 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0fe.jpg' +p208360 +sg25267 +g27 +sa(dp208361 +g25268 +S'The Penance of Saint John Chrysostom' +p208362 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208363 +sg25273 +S'engraving' +p208364 +sg25275 +S'c. 1497' +p208365 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a93b.jpg' +p208366 +sg25267 +g27 +sa(dp208367 +g25268 +S'Little Fortune' +p208368 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208369 +sg25273 +S'engraving' +p208370 +sg25275 +S'c. 1496' +p208371 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a993.jpg' +p208372 +sg25267 +g27 +sa(dp208373 +g25268 +S'Saint Andrew' +p208374 +sg25270 +S'Lucas Cranach the Elder' +p208375 +sg25273 +S'woodcut' +p208376 +sg25275 +S'unknown date\n' +p208377 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8b6.jpg' +p208378 +sg25267 +g27 +sa(dp208379 +g25268 +S'Four Naked Women' +p208380 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208381 +sg25273 +S'engraving' +p208382 +sg25275 +S'1497' +p208383 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a98a.jpg' +p208384 +sg25267 +g27 +sa(dp208385 +g25268 +S'Lady on Horseback and the Lansquenet' +p208386 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208387 +sg25273 +S'engraving' +p208388 +sg25275 +S'c. 1497' +p208389 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a986.jpg' +p208390 +sg25267 +g27 +sa(dp208391 +g25268 +S'Peasant and His Wife' +p208392 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208393 +sg25273 +S'engraving' +p208394 +sg25275 +S'c. 1497/1498' +p208395 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a983.jpg' +p208396 +sg25267 +g27 +sa(dp208397 +g25268 +S'Incest of Loth' +p208398 +sg25270 +S'Etienne Delaune' +p208399 +sg25273 +S'engraving' +p208400 +sg25275 +S'unknown date\n' +p208401 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008337.jpg' +p208402 +sg25267 +g27 +sa(dp208403 +g25268 +S'Death of Abel' +p208404 +sg25270 +S'Etienne Delaune' +p208405 +sg25273 +S'engraving' +p208406 +sg25275 +S'unknown date\n' +p208407 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008334.jpg' +p208408 +sg25267 +g27 +sa(dp208409 +g25268 +S'Essau Selling his Birthright' +p208410 +sg25270 +S'Etienne Delaune' +p208411 +sg25273 +S'engraving' +p208412 +sg25275 +S'unknown date\n' +p208413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008339.jpg' +p208414 +sg25267 +g27 +sa(dp208415 +g25268 +S'Sacrifice of Abraham' +p208416 +sg25270 +S'Etienne Delaune' +p208417 +sg25273 +S'engraving' +p208418 +sg25275 +S'unknown date\n' +p208419 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008338.jpg' +p208420 +sg25267 +g27 +sa(dp208421 +g25268 +S'The Deluge' +p208422 +sg25270 +S'Etienne Delaune' +p208423 +sg25273 +S'engraving' +p208424 +sg25275 +S'unknown date\n' +p208425 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008336.jpg' +p208426 +sg25267 +g27 +sa(dp208427 +g25268 +S'Saint John the Evangelist' +p208428 +sg25270 +S'Lucas Cranach the Elder' +p208429 +sg25273 +S'woodcut' +p208430 +sg25275 +S'unknown date\n' +p208431 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8b1.jpg' +p208432 +sg25267 +g27 +sa(dp208433 +g25268 +S'The Fall of Man' +p208434 +sg25270 +S'Etienne Delaune' +p208435 +sg25273 +S'engraving' +p208436 +sg25275 +S'unknown date\n' +p208437 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008335.jpg' +p208438 +sg25267 +g27 +sa(dp208439 +g25268 +S'Three Peasants in Conversation' +p208440 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208441 +sg25273 +S'engraving on laid paper' +p208442 +sg25275 +S'c. 1497' +p208443 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a985.jpg' +p208444 +sg25267 +g27 +sa(dp208445 +g25268 +S'The Virgin on the Crescent' +p208446 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208447 +sg25273 +S'engraving' +p208448 +sg25275 +S'c. 1498/1499' +p208449 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a935.jpg' +p208450 +sg25267 +g27 +sa(dp208451 +g25268 +S'Saint Sebastian Bound to the Column' +p208452 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208453 +sg25273 +S'engraving' +p208454 +sg25275 +S'probably 1498/1499' +p208455 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a93f.jpg' +p208456 +sg25267 +g27 +sa(dp208457 +g25268 +S'Saint Sebastian Bound to the Tree' +p208458 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208459 +sg25273 +S'engraving' +p208460 +sg25275 +S'1500/1501' +p208461 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a942.jpg' +p208462 +sg25267 +g27 +sa(dp208463 +g25268 +S'The Man of Sorrows with Arms Outstretched' +p208464 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208465 +sg25273 +S'engraving' +p208466 +sg25275 +S'c. 1500' +p208467 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a0006713.jpg' +p208468 +sg25267 +g27 +sa(dp208469 +g25268 +S'The Virgin and Child with Saint Anne' +p208470 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208471 +sg25273 +S'engraving' +p208472 +sg25275 +S'c. 1500' +p208473 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a904.jpg' +p208474 +sg25267 +g27 +sa(dp208475 +g25268 +S'Standard Bearer' +p208476 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208477 +sg25273 +S'engraving' +p208478 +sg25275 +S'c. 1502/1503' +p208479 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a97e.jpg' +p208480 +sg25267 +g27 +sa(dp208481 +g25268 +S'The Dream of the Doctor (Temptation of the Idler)' +p208482 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208483 +sg25273 +S'engraving' +p208484 +sg25275 +S'1498/1499' +p208485 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a98c.jpg' +p208486 +sg25267 +g27 +sa(dp208487 +g25268 +S'Herdsmen Tending Cattle' +p208488 +sg25270 +S'Aelbert Cuyp' +p208489 +sg25273 +S'oil on canvas' +p208490 +sg25275 +S'1655/1660' +p208491 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e54.jpg' +p208492 +sg25267 +g27 +sa(dp208493 +g25268 +S'Saint Philip' +p208494 +sg25270 +S'Lucas Cranach the Elder' +p208495 +sg25273 +S'woodcut' +p208496 +sg25275 +S'unknown date\n' +p208497 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8b2.jpg' +p208498 +sg25267 +g27 +sa(dp208499 +g25268 +S'Hercules' +p208500 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208501 +sg25273 +S'engraving' +p208502 +sg25275 +S'1498/1499' +p208503 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b103.jpg' +p208504 +sg25267 +g27 +sa(dp208505 +g25268 +S'Sea Monster ("Das Meerwunder")' +p208506 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208507 +sg25273 +S'engraving' +p208508 +sg25275 +S'c. 1498' +p208509 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b107.jpg' +p208510 +sg25267 +g27 +sa(dp208511 +g25268 +S'Sol Iustitiae ("Sun of Righteousness")' +p208512 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208513 +sg25273 +S'engraving' +p208514 +sg25275 +S'c. 1499/1500' +p208515 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a991.jpg' +p208516 +sg25267 +g27 +sa(dp208517 +g25268 +S'Nemesis (The Great Fortune)' +p208518 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208519 +sg25273 +S'engraving on laid paper' +p208520 +sg25275 +S'c. 1501/1502' +p208521 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b102.jpg' +p208522 +sg25267 +g27 +sa(dp208523 +g25268 +S'Apollo and Diana' +p208524 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208525 +sg25273 +S'engraving' +p208526 +sg25275 +S'1504/1505' +p208527 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a943.jpg' +p208528 +sg25267 +g27 +sa(dp208529 +g25268 +S'The Virgin and Child on a Grassy Bench' +p208530 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208531 +sg25273 +S'engraving' +p208532 +sg25275 +S'1503' +p208533 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a933.jpg' +p208534 +sg25267 +g27 +sa(dp208535 +g25268 +S'Coat of Arms with a Skull' +p208536 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208537 +sg25273 +S'engraving' +p208538 +sg25275 +S'1503' +p208539 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a975.jpg' +p208540 +sg25267 +g27 +sa(dp208541 +g25268 +S'Coat of Arms with a Lion and a Cock' +p208542 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208543 +sg25273 +S'engraving' +p208544 +sg25275 +S'1502/1503' +p208545 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a978.jpg' +p208546 +sg25267 +g27 +sa(dp208547 +g25268 +S'Adam and Eve' +p208548 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208549 +sg25273 +S'engraving' +p208550 +sg25275 +S'1504' +p208551 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0fc.jpg' +p208552 +sg25267 +g27 +sa(dp208553 +g25268 +S'Saint Bartholomew' +p208554 +sg25270 +S'Lucas Cranach the Elder' +p208555 +sg25273 +S'woodcut' +p208556 +sg25275 +S'unknown date\n' +p208557 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a919.jpg' +p208558 +sg25267 +g27 +sa(dp208559 +g25268 +S'Adam and Eve' +p208560 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208561 +sg25273 +S'engraving' +p208562 +sg25275 +S'1504' +p208563 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0fd.jpg' +p208564 +sg25267 +g27 +sa(dp208565 +g25268 +S'Three Genii' +p208566 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208567 +sg25273 +S'engraving' +p208568 +sg25275 +S'c. 1505' +p208569 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a97d.jpg' +p208570 +sg25267 +g27 +sa(dp208571 +g25268 +S"Pop's Tavern" +p208572 +sg25270 +S'Artist Information (' +p208573 +sg25273 +S'American, 1879 - 1964' +p208574 +sg25275 +S'(printer)' +p208575 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000afd.jpg' +p208576 +sg25267 +g27 +sa(dp208577 +g25268 +S'Saint George Standing' +p208578 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208579 +sg25273 +S'engraving' +p208580 +sg25275 +S'c. 1507/1508' +p208581 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a944.jpg' +p208582 +sg25267 +g27 +sa(dp208583 +g25268 +S'The Crucifixion' +p208584 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208585 +sg25273 +S'engraving' +p208586 +sg25275 +S'1508' +p208587 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a937.jpg' +p208588 +sg25267 +g27 +sa(dp208589 +g25268 +S'The Virgin and Child on a Crescent with a Starry Crown' +p208590 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208591 +sg25273 +S'engraving' +p208592 +sg25275 +S'1508' +p208593 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a934.jpg' +p208594 +sg25267 +g27 +sa(dp208595 +g25268 +S'Saint George on Horseback' +p208596 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208597 +sg25273 +S'engraving' +p208598 +sg25275 +S'1508' +p208599 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a93e.jpg' +p208600 +sg25267 +g27 +sa(dp208601 +g25268 +S'Christ on the Mount of Olives' +p208602 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208603 +sg25273 +S'engraving' +p208604 +sg25275 +S'1508' +p208605 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a91d.jpg' +p208606 +sg25267 +g27 +sa(dp208607 +g25268 +S'The Betrayal of Christ' +p208608 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208609 +sg25273 +S'engraving' +p208610 +sg25275 +S'1508' +p208611 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a91e.jpg' +p208612 +sg25267 +g27 +sa(dp208613 +g25268 +S'The Man of Sorrows Standing by the Column' +p208614 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208615 +sg25273 +S'engraving' +p208616 +sg25275 +S'1509' +p208617 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a925.jpg' +p208618 +sg25267 +g27 +sa(dp208619 +g25268 +S'Saint Matthew' +p208620 +sg25270 +S'Lucas Cranach the Elder' +p208621 +sg25273 +S'woodcut' +p208622 +sg25275 +S'unknown date\n' +p208623 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a917.jpg' +p208624 +sg25267 +g27 +sa(dp208625 +g25268 +S'The Crucifixion' +p208626 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208627 +sg25273 +S'engraving' +p208628 +sg25275 +S'1511' +p208629 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a92b.jpg' +p208630 +sg25267 +g27 +sa(dp208631 +g25268 +S'Christ before Caiaphas' +p208632 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208633 +sg25273 +S'engraving' +p208634 +sg25275 +S'1512' +p208635 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a91f.jpg' +p208636 +sg25267 +g27 +sa(dp208637 +g25268 +S'Christ before Pilate' +p208638 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208639 +sg25273 +S'engraving' +p208640 +sg25275 +S'1512' +p208641 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a924.jpg' +p208642 +sg25267 +g27 +sa(dp208643 +g25268 +S'The Flagellation' +p208644 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208645 +sg25273 +S'engraving' +p208646 +sg25275 +S'1512' +p208647 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a920.jpg' +p208648 +sg25267 +g27 +sa(dp208649 +g25268 +S'Christ Crowned with Thorns' +p208650 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208651 +sg25273 +S'engraving' +p208652 +sg25275 +S'1512' +p208653 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a923.jpg' +p208654 +sg25267 +g27 +sa(dp208655 +g25268 +S'Ecce Homo' +p208656 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208657 +sg25273 +S'engraving on laid paper' +p208658 +sg25275 +S'1512' +p208659 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a921.jpg' +p208660 +sg25267 +g27 +sa(dp208661 +g25268 +S'Pilate Washing His Hands' +p208662 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208663 +sg25273 +S'engraving on laid paper' +p208664 +sg25275 +S'1512' +p208665 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a922.jpg' +p208666 +sg25267 +g27 +sa(dp208667 +g25268 +S'Christ Carrying the Cross' +p208668 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208669 +sg25273 +S'engraving' +p208670 +sg25275 +S'1512' +p208671 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a92a.jpg' +p208672 +sg25267 +g27 +sa(dp208673 +g25268 +S'The Entombment' +p208674 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208675 +sg25273 +S'engraving' +p208676 +sg25275 +S'1512' +p208677 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a92e.jpg' +p208678 +sg25267 +g27 +sa(dp208679 +g25268 +S'Christ in Limbo' +p208680 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208681 +sg25273 +S'engraving' +p208682 +sg25275 +S'1512' +p208683 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a92c.jpg' +p208684 +sg25267 +g27 +sa(dp208685 +g25268 +S'The Martyrdom of Saint Barbara' +p208686 +sg25270 +S'Lucas Cranach the Elder' +p208687 +sg25273 +S'woodcut' +p208688 +sg25275 +S'unknown date\n' +p208689 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0e6.jpg' +p208690 +sg25267 +g27 +sa(dp208691 +g25268 +S'The Resurrection' +p208692 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208693 +sg25273 +S'engraving' +p208694 +sg25275 +S'1512' +p208695 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a92d.jpg' +p208696 +sg25267 +g27 +sa(dp208697 +g25268 +S'Saint Peter and Saint John Healing a Cripple at the Gate of the Temple' +p208698 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208699 +sg25273 +S'engraving' +p208700 +sg25275 +S'1513' +p208701 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a92f.jpg' +p208702 +sg25267 +g27 +sa(dp208703 +g25268 +S'The Lamentation' +p208704 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208705 +sg25273 +S'engraving' +p208706 +sg25275 +S'1507' +p208707 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a930.jpg' +p208708 +sg25267 +g27 +sa(dp208709 +g25268 +S'Saint Jerome by the Pollard Willow' +p208710 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208711 +sg25273 +S'drypoint' +p208712 +sg25275 +S'1512' +p208713 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005ef6.jpg' +p208714 +sg25267 +g27 +sa(dp208715 +g25268 +S'The Holy Family' +p208716 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208717 +sg25273 +S'drypoint' +p208718 +sg25275 +S'1512/1513' +p208719 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005efc.jpg' +p208720 +sg25267 +g27 +sa(dp208721 +g25268 +S'The Virgin and Child Seated by a Tree' +p208722 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208723 +sg25273 +S'engraving' +p208724 +sg25275 +S'1513' +p208725 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a936.jpg' +p208726 +sg25267 +g27 +sa(dp208727 +g25268 +S'Knight, Death and Devil' +p208728 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208729 +sg25273 +S'engraving' +p208730 +sg25275 +S'1513' +p208731 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005ad5.jpg' +p208732 +sg25267 +g27 +sa(dp208733 +g25268 +S'The Sudarium Held by Two Angels' +p208734 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208735 +sg25273 +S'engraving' +p208736 +sg25275 +S'1513' +p208737 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a938.jpg' +p208738 +sg25267 +g27 +sa(dp208739 +g25268 +S'The Virgin and Child Seated by the Wall' +p208740 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208741 +sg25273 +S'engraving' +p208742 +sg25275 +S'1514' +p208743 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a910.jpg' +p208744 +sg25267 +g27 +sa(dp208745 +g25268 +S'The Ecstasy of Saint Mary Magdalene' +p208746 +sg25270 +S'Lucas Cranach the Elder' +p208747 +sg25273 +S'woodcut' +p208748 +sg25275 +S'1506' +p208749 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8fa.jpg' +p208750 +sg25267 +g27 +sa(dp208751 +g25268 +S'Melencolia I' +p208752 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208753 +sg25273 +S'engraving on laid paper' +p208754 +sg25275 +S'1514' +p208755 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00016/a0001636.jpg' +p208756 +sg25267 +g27 +sa(dp208757 +g25268 +S'Melencolia I' +p208758 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208759 +sg25273 +S'engraving' +p208760 +sg25275 +S'1514' +p208761 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00065/a0006521.jpg' +p208762 +sg25267 +g27 +sa(dp208763 +g25268 +S'Saint Jerome in His Study' +p208764 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208765 +sg25273 +S'engraving' +p208766 +sg25275 +S'1514' +p208767 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0ff.jpg' +p208768 +sg25267 +g27 +sa(dp208769 +g25268 +S'Saint Thomas' +p208770 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208771 +sg25273 +S'engraving' +p208772 +sg25275 +S'1514' +p208773 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a908.jpg' +p208774 +sg25267 +g27 +sa(dp208775 +g25268 +S'Saint Paul' +p208776 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208777 +sg25273 +S'engraving' +p208778 +sg25275 +S'1514' +p208779 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a906.jpg' +p208780 +sg25267 +g27 +sa(dp208781 +g25268 +S'Bagpiper' +p208782 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208783 +sg25273 +S'engraving' +p208784 +sg25275 +S'1514' +p208785 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a97f.jpg' +p208786 +sg25267 +g27 +sa(dp208787 +g25268 +S'Peasant Couple Dancing' +p208788 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208789 +sg25273 +S'engraving' +p208790 +sg25275 +S'1514' +p208791 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a980.jpg' +p208792 +sg25267 +g27 +sa(dp208793 +g25268 +S'Desperate Man' +p208794 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208795 +sg25273 +S'etching' +p208796 +sg25275 +S'probably 1514/1515' +p208797 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005727.jpg' +p208798 +sg25267 +g27 +sa(dp208799 +g25268 +S'Bookplate of Scheurl and Tucher' +p208800 +sg25270 +S'Lucas Cranach the Elder' +p208801 +sg25273 +S'woodcut' +p208802 +sg25275 +S'unknown date\n' +p208803 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a900.jpg' +p208804 +sg25267 +g27 +sa(dp208805 +g25268 +S'The Man of Sorrows Seated' +p208806 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208807 +sg25273 +S'etching (iron)' +p208808 +sg25275 +S'1515' +p208809 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a932.jpg' +p208810 +sg25267 +g27 +sa(dp208811 +g25268 +S'Christ on the Mount of Olives' +p208812 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208813 +sg25273 +S'etching (iron)' +p208814 +sg25275 +S'1515' +p208815 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a928.jpg' +p208816 +sg25267 +g27 +sa(dp208817 +g25268 +S'Abduction on a Unicorn' +p208818 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208819 +sg25273 +S'etching (iron)' +p208820 +sg25275 +S'1516' +p208821 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b106.jpg' +p208822 +sg25267 +g27 +sa(dp208823 +g25268 +S'The Sudarium Held by One Angel' +p208824 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208825 +sg25273 +S'etching (iron)' +p208826 +sg25275 +S'1516' +p208827 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a93a.jpg' +p208828 +sg25267 +g27 +sa(dp208829 +g25268 +S'The Virgin and Child on a Crescent with a Sceptre and a Starry Crown' +p208830 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208831 +sg25273 +S'engraving' +p208832 +sg25275 +S'1516' +p208833 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a90c.jpg' +p208834 +sg25267 +g27 +sa(dp208835 +g25268 +S'The Virgin and Child Crowned by Two Angels' +p208836 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208837 +sg25273 +S'engraving' +p208838 +sg25275 +S'1518' +p208839 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a90f.jpg' +p208840 +sg25267 +g27 +sa(dp208841 +g25268 +S'The Crucifixion called the Sword Pommel of Maximilian' +p208842 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208843 +sg25273 +S'engraving' +p208844 +sg25275 +S'c. 1518' +p208845 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a931.jpg' +p208846 +sg25267 +g27 +sa(dp208847 +g25268 +S'The Crucifixion called the Sword Pommel of Maxmilian' +p208848 +sg25270 +S'Artist Information (' +p208849 +sg25273 +S'(artist)' +p208850 +sg25275 +S'\n' +p208851 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cec5.jpg' +p208852 +sg25267 +g27 +sa(dp208853 +g25268 +S'The Virgin Nursing the Child' +p208854 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208855 +sg25273 +S'engraving' +p208856 +sg25275 +S'1519' +p208857 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a905.jpg' +p208858 +sg25267 +g27 +sa(dp208859 +g25268 +S'Saint Bartholomew' +p208860 +sg25270 +S'Lucas Cranach the Elder' +p208861 +sg25273 +S'woodcut' +p208862 +sg25275 +S'unknown date\n' +p208863 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0c3.jpg' +p208864 +sg25267 +g27 +sa(dp208865 +g25268 +S'Peasant Couple at Market' +p208866 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208867 +sg25273 +S'engraving' +p208868 +sg25275 +S'1519' +p208869 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a981.jpg' +p208870 +sg25267 +g27 +sa(dp208871 +g25268 +S'Saint Anthony Reading' +p208872 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208873 +sg25273 +S'engraving' +p208874 +sg25275 +S'1519' +p208875 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a93c.jpg' +p208876 +sg25267 +g27 +sa(dp208877 +g25268 +S'Cardinal Albrecht of Brandenburg ("Small Cardinal")' +p208878 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208879 +sg25273 +S'engraving' +p208880 +sg25275 +S'1519' +p208881 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a97c.jpg' +p208882 +sg25267 +g27 +sa(dp208883 +g25268 +S'The Virgin with the Swaddled Child' +p208884 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208885 +sg25273 +S'engraving' +p208886 +sg25275 +S'1520' +p208887 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a90d.jpg' +p208888 +sg25267 +g27 +sa(dp208889 +g25268 +S'The Virgin and Child Crowned by One Angel' +p208890 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208891 +sg25273 +S'engraving' +p208892 +sg25275 +S'1520' +p208893 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a90e.jpg' +p208894 +sg25267 +g27 +sa(dp208895 +g25268 +S'Saint Christopher Facing Left' +p208896 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208897 +sg25273 +S'engraving' +p208898 +sg25275 +S'1521' +p208899 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a940.jpg' +p208900 +sg25267 +g27 +sa(dp208901 +g25268 +S'Saint Simon' +p208902 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208903 +sg25273 +S'engraving' +p208904 +sg25275 +S'1523' +p208905 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a907.jpg' +p208906 +sg25267 +g27 +sa(dp208907 +g25268 +S'Cardinal Albrecht of Brandenburg ("Large Cardinal")' +p208908 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208909 +sg25273 +S'engraving' +p208910 +sg25275 +S'1523' +p208911 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a979.jpg' +p208912 +sg25267 +g27 +sa(dp208913 +g25268 +S'Frederick the Wise, Elector of Saxony' +p208914 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208915 +sg25273 +S'engraving' +p208916 +sg25275 +S'1524' +p208917 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a976.jpg' +p208918 +sg25267 +g27 +sa(dp208919 +g25268 +S'Christ Nailed to the Cross' +p208920 +sg25270 +S'Hans Baldung Grien' +p208921 +sg25273 +S'woodcut' +p208922 +sg25275 +S'1507' +p208923 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7e8.jpg' +p208924 +sg25267 +g27 +sa(dp208925 +g25268 +S'Philip Melanchthon' +p208926 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208927 +sg25273 +S'engraving' +p208928 +sg25275 +S'1526' +p208929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a946.jpg' +p208930 +sg25267 +g27 +sa(dp208931 +g25268 +S'Saint Philip' +p208932 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208933 +sg25273 +S'engraving' +p208934 +sg25275 +S'1526' +p208935 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a90a.jpg' +p208936 +sg25267 +g27 +sa(dp208937 +g25268 +S'Erasmus of Rotterdam' +p208938 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208939 +sg25273 +S'engraving' +p208940 +sg25275 +S'1526' +p208941 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005c/a0005cd0.jpg' +p208942 +sg25267 +g27 +sa(dp208943 +g25268 +S'Witch Riding on a Goat' +p208944 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208945 +sg25273 +S'engraving' +p208946 +sg25275 +S'c. 1500/1501' +p208947 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a992.jpg' +p208948 +sg25267 +g27 +sa(dp208949 +g25268 +S'The Nativity' +p208950 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208951 +sg25273 +S'engraving' +p208952 +sg25275 +S'1504' +p208953 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a926.jpg' +p208954 +sg25267 +g27 +sa(dp208955 +g25268 +S'Small Horse' +p208956 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208957 +sg25273 +S'engraving' +p208958 +sg25275 +S'1505' +p208959 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a97b.jpg' +p208960 +sg25267 +g27 +sa(dp208961 +g25268 +S'The Virgin and Child on a Crescent with a Diadem' +p208962 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208963 +sg25273 +S'engraving' +p208964 +sg25275 +S'1514' +p208965 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a909.jpg' +p208966 +sg25267 +g27 +sa(dp208967 +g25268 +S'Saint Christopher Facing Right' +p208968 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208969 +sg25273 +S'engraving' +p208970 +sg25275 +S'1521' +p208971 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a941.jpg' +p208972 +sg25267 +g27 +sa(dp208973 +g25268 +S'Large Horse' +p208974 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208975 +sg25273 +S'engraving on laid paper' +p208976 +sg25275 +S'1505' +p208977 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a97a.jpg' +p208978 +sg25267 +g27 +sa(dp208979 +g25268 +S'Christ Raised on the Cross' +p208980 +sg25270 +S'Hans Baldung Grien' +p208981 +sg25273 +S'woodcut' +p208982 +sg25275 +S'1507' +p208983 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7e7.jpg' +p208984 +sg25267 +g27 +sa(dp208985 +g25268 +S"Satyr's Family" +p208986 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208987 +sg25273 +S'engraving on laid paper' +p208988 +sg25275 +S'1505' +p208989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f21.jpg' +p208990 +sg25267 +g27 +sa(dp208991 +g25268 +S'The Martyrdom of the Ten Thousand' +p208992 +sg25270 +S'Albrecht D\xc3\xbcrer' +p208993 +sg25273 +S'woodcut' +p208994 +sg25275 +S'c. 1496/1497' +p208995 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b23b.jpg' +p208996 +sg25267 +g27 +sa(dp208997 +g25273 +S'woodcut on laid paper' +p208998 +sg25267 +g27 +sg25275 +S'probably c. 1496/1498' +p208999 +sg25268 +S'The Martyrdom of Saint John' +p209000 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209001 +sa(dp209002 +g25268 +S'The Beast with Two Horns like a Lamb' +p209003 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209004 +sg25273 +S'woodcut on laid paper' +p209005 +sg25275 +S'probably c. 1496/1498' +p209006 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b11d.jpg' +p209007 +sg25267 +g27 +sa(dp209008 +g25268 +S'The Babylonian Whore' +p209009 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209010 +sg25273 +S'woodcut' +p209011 +sg25275 +S'probably c. 1496/1498' +p209012 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b11a.jpg' +p209013 +sg25267 +g27 +sa(dp209014 +g25268 +S'The Angel with the Key to the Bottomless Pit' +p209015 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209016 +sg25273 +S'woodcut' +p209017 +sg25275 +S'probably c. 1496/1498' +p209018 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b11b.jpg' +p209019 +sg25267 +g27 +sa(dp209020 +g25268 +S'Christ on the Mount of Olives' +p209021 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209022 +sg25273 +S'woodcut' +p209023 +sg25275 +S'c. 1497/1499' +p209024 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000af/a000aff1.jpg' +p209025 +sg25267 +g27 +sa(dp209026 +g25268 +S'The Resurrection' +p209027 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209028 +sg25273 +S'woodcut' +p209029 +sg25275 +S'1510' +p209030 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b109.jpg' +p209031 +sg25267 +g27 +sa(dp209032 +g25268 +S'The Deposition' +p209033 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209034 +sg25273 +S'woodcut' +p209035 +sg25275 +S'c. 1497' +p209036 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b108.jpg' +p209037 +sg25267 +g27 +sa(dp209038 +g25268 +S'Saint Sebaldus Standing on a Column' +p209039 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209040 +sg25273 +S'woodcut' +p209041 +sg25275 +S'c. 1501' +p209042 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b23c.jpg' +p209043 +sg25267 +g27 +sa(dp209044 +g25268 +S'Lamentation for Christ' +p209045 +sg25270 +S'Hans Baldung Grien' +p209046 +sg25273 +S'woodcut' +p209047 +sg25275 +S'1510' +p209048 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7dc.jpg' +p209049 +sg25267 +g27 +sa(dp209050 +g25268 +S"Joachim's Offering Rejected" +p209051 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209052 +sg25273 +S'woodcut' +p209053 +sg25275 +S'c. 1504/1505' +p209054 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b127.jpg' +p209055 +sg25267 +g27 +sa(dp209056 +g25268 +S'Joachim and the Angel' +p209057 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209058 +sg25273 +S'woodcut' +p209059 +sg25275 +S'c. 1504' +p209060 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b125.jpg' +p209061 +sg25267 +g27 +sa(dp209062 +g25268 +S'Joachim and the Angel' +p209063 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209064 +sg25273 +S'woodcut' +p209065 +sg25275 +S'c. 1504' +p209066 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b124.jpg' +p209067 +sg25267 +g27 +sa(dp209068 +g25268 +S'Joachim and Anna at the Golden Gate' +p209069 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209070 +sg25273 +S'woodcut' +p209071 +sg25275 +S'1504' +p209072 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b122.jpg' +p209073 +sg25267 +g27 +sa(dp209074 +g25268 +S'Joachim and Anna at the Golden Gate' +p209075 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209076 +sg25273 +S'woodcut' +p209077 +sg25275 +S'1504' +p209078 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b123.jpg' +p209079 +sg25267 +g27 +sa(dp209080 +g25268 +S'The Birth of the Virgin' +p209081 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209082 +sg25273 +S'woodcut' +p209083 +sg25275 +S'c. 1503/1504' +p209084 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b9e.jpg' +p209085 +sg25267 +g27 +sa(dp209086 +g25268 +S'The Presentation of the Virgin in the Temple' +p209087 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209088 +sg25273 +S'woodcut' +p209089 +sg25275 +S'c. 1502/1503' +p209090 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b12e.jpg' +p209091 +sg25267 +g27 +sa(dp209092 +g25268 +S'The Betrothal of the Virgin' +p209093 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209094 +sg25273 +S'woodcut' +p209095 +sg25275 +S'c. 1504/1505' +p209096 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b130.jpg' +p209097 +sg25267 +g27 +sa(dp209098 +g25268 +S'The Annunciation' +p209099 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209100 +sg25273 +S'woodcut' +p209101 +sg25275 +S'c. 1502/1504' +p209102 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b12d.jpg' +p209103 +sg25267 +g27 +sa(dp209104 +g25268 +S'The Annunciation' +p209105 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209106 +sg25273 +S'woodcut' +p209107 +sg25275 +S'c. 1502/1504' +p209108 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b132.jpg' +p209109 +sg25267 +g27 +sa(dp209110 +g25268 +S'A Farm in the Sunlight' +p209111 +sg25270 +S'Meindert Hobbema' +p209112 +sg25273 +S'oil on canvas' +p209113 +sg25275 +S'1668' +p209114 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e63.jpg' +p209115 +sg25267 +g27 +sa(dp209116 +g25268 +S'Christ on the Cross' +p209117 +sg25270 +S'Hans Baldung Grien' +p209118 +sg25273 +S'woodcut' +p209119 +sg25275 +S'1505' +p209120 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7df.jpg' +p209121 +sg25267 +g27 +sa(dp209122 +g25268 +S'The Visitation' +p209123 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209124 +sg25273 +S'woodcut' +p209125 +sg25275 +S'c. 1504' +p209126 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b133.jpg' +p209127 +sg25267 +g27 +sa(dp209128 +g25268 +S'The Nativity' +p209129 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209130 +sg25273 +S'woodcut on laid paper' +p209131 +sg25275 +S'c. 1502/1504' +p209132 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b135.jpg' +p209133 +sg25267 +g27 +sa(dp209134 +g25268 +S'The Circumcision' +p209135 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209136 +sg25273 +S'woodcut' +p209137 +sg25275 +S'c. 1504/1505' +p209138 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b137.jpg' +p209139 +sg25267 +g27 +sa(dp209140 +g25268 +S'The Circumcision' +p209141 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209142 +sg25273 +S'woodcut' +p209143 +sg25275 +S'c. 1504/1505' +p209144 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b140.jpg' +p209145 +sg25267 +g27 +sa(dp209146 +g25268 +S'The Adoration of the Magi' +p209147 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209148 +sg25273 +S'woodcut' +p209149 +sg25275 +S'c. 1501/1503' +p209150 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b138.jpg' +p209151 +sg25267 +g27 +sa(dp209152 +g25268 +S'The Presentation of Christ in the Temple' +p209153 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209154 +sg25273 +S'woodcut' +p209155 +sg25275 +S'c. 1504/1505' +p209156 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b139.jpg' +p209157 +sg25267 +g27 +sa(dp209158 +g25268 +S'The Flight into Egypt' +p209159 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209160 +sg25273 +S'woodcut' +p209161 +sg25275 +S'c. 1504' +p209162 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b13a.jpg' +p209163 +sg25267 +g27 +sa(dp209164 +g25268 +S'Sojourn of the Holy Family in Egypt' +p209165 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209166 +sg25273 +S'woodcut' +p209167 +sg25275 +S'c. 1504' +p209168 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b13b.jpg' +p209169 +sg25267 +g27 +sa(dp209170 +g25268 +S'Christ among the Doctors' +p209171 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209172 +sg25273 +S'woodcut' +p209173 +sg25275 +S'c. 1503/1504' +p209174 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b13d.jpg' +p209175 +sg25267 +g27 +sa(dp209176 +g25268 +S'Christ Taking Leave from His Mother' +p209177 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209178 +sg25273 +S'woodcut' +p209179 +sg25275 +S'c. 1504/1505' +p209180 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b13f.jpg' +p209181 +sg25267 +g27 +sa(dp209182 +g25268 +S'The Martyrdom of Saint Sebastian' +p209183 +sg25270 +S'Hans Baldung Grien' +p209184 +sg25273 +S'woodcut' +p209185 +sg25275 +S'unknown date\n' +p209186 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7e3.jpg' +p209187 +sg25267 +g27 +sa(dp209188 +g25268 +S'The Glorification of the Virgin' +p209189 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209190 +sg25273 +S'woodcut' +p209191 +sg25275 +S'c. 1504' +p209192 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b22e.jpg' +p209193 +sg25267 +g27 +sa(dp209194 +g25268 +S'The Glorification of the Virgin' +p209195 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209196 +sg25273 +S'woodcut' +p209197 +sg25275 +S'c. 1504' +p209198 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b22d.jpg' +p209199 +sg25267 +g27 +sa(dp209200 +g25268 +S'Calvary with the Three Crosses' +p209201 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209202 +sg25273 +S'woodcut' +p209203 +sg25275 +S'c. 1504/1505' +p209204 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a971.jpg' +p209205 +sg25267 +g27 +sa(dp209206 +g25268 +S'The Holy Family with Two Angels in a Vaulted Hall' +p209207 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209208 +sg25273 +S'woodcut' +p209209 +sg25275 +S'c. 1504' +p209210 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a974.jpg' +p209211 +sg25267 +g27 +sa(dp209212 +g25268 +S'Saint Anthony and Saint Paul in the Wilderness' +p209213 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209214 +sg25273 +S'woodcut' +p209215 +sg25275 +S'c. 1504' +p209216 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac46.jpg' +p209217 +sg25267 +g27 +sa(dp209218 +g25268 +S'Saint George Killing the Dragon' +p209219 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209220 +sg25273 +S'woodcut' +p209221 +sg25275 +S'1501/1504' +p209222 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac41.jpg' +p209223 +sg25267 +g27 +sa(dp209224 +g25268 +S'The Elevation of Saint Mary Magdalene' +p209225 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209226 +sg25273 +S'woodcut' +p209227 +sg25275 +S'c. 1504/1505' +p209228 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac43.jpg' +p209229 +sg25267 +g27 +sa(dp209230 +g25268 +S'The Holy Family with Five Angels' +p209231 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209232 +sg25273 +S'woodcut' +p209233 +sg25275 +S'in or before 1505' +p209234 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac42.jpg' +p209235 +sg25267 +g27 +sa(dp209236 +g25268 +S'The First Knot (with a heart-shaped shield)' +p209237 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209238 +sg25273 +S'woodcut' +p209239 +sg25275 +S'probably 1506/1507' +p209240 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b15a.jpg' +p209241 +sg25267 +g27 +sa(dp209242 +g25268 +S'The Fourth Knot (combining seven circular groups of knots with black centers)' +p209243 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209244 +sg25273 +S'woodcut' +p209245 +sg25275 +S'probably 1506/1507' +p209246 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b223.jpg' +p209247 +sg25267 +g27 +sa(dp209248 +g25268 +S'The Stoning of Saint Stephen' +p209249 +sg25270 +S'Hans Baldung Grien' +p209250 +sg25273 +S'woodcut' +p209251 +sg25275 +S'unknown date\n' +p209252 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7e2.jpg' +p209253 +sg25267 +g27 +sa(dp209254 +g25268 +S'The Fourth Knot (combining seven circular groups of knots with black centers)' +p209255 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209256 +sg25273 +S'woodcut' +p209257 +sg25275 +S'probably 1506/1507' +p209258 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b156.jpg' +p209259 +sg25267 +g27 +sa(dp209260 +g25268 +S'The Fifth Knot (with a six-pointed white shield)' +p209261 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209262 +sg25273 +S'woodcut' +p209263 +sg25275 +S'probably 1506/1507' +p209264 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b228.jpg' +p209265 +sg25267 +g27 +sa(dp209266 +g25268 +S'The Sixth Knot (combining seven small systems of knots with black centers)' +p209267 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209268 +sg25273 +S'woodcut' +p209269 +sg25275 +S'probably 1506/1507' +p209270 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b226.jpg' +p209271 +sg25267 +g27 +sa(dp209272 +g25268 +S'The Sixth Knot (combining seven small systems of knots with black centers)' +p209273 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209274 +sg25273 +S'woodcut' +p209275 +sg25275 +S'probably 1506/1507' +p209276 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b225.jpg' +p209277 +sg25267 +g27 +sa(dp209278 +g25268 +S'The Third Knot (with a black circle on a white medallion)' +p209279 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209280 +sg25273 +S'woodcut' +p209281 +sg25275 +S'probably 1506/1507' +p209282 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b227.jpg' +p209283 +sg25267 +g27 +sa(dp209284 +g25268 +S'The Second Knot (with an oblong tablet)' +p209285 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209286 +sg25273 +S'woodcut' +p209287 +sg25275 +S'probably 1506/1507' +p209288 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b224.jpg' +p209289 +sg25267 +g27 +sa(dp209290 +g25268 +S'Coat of Arms of Michael Behaim' +p209291 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209292 +sg25273 +S'woodcut' +p209293 +sg25275 +S'probably c. 1520' +p209294 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b15e.jpg' +p209295 +sg25267 +g27 +sa(dp209296 +g25268 +S'The School Teacher' +p209297 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209298 +sg25273 +S'woodcut' +p209299 +sg25275 +S'1510' +p209300 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b221.jpg' +p209301 +sg25267 +g27 +sa(dp209302 +g25268 +S'Christ on the Cross with Mary and Saint John' +p209303 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209304 +sg25273 +S'woodcut' +p209305 +sg25275 +S'1510' +p209306 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a96e.jpg' +p209307 +sg25267 +g27 +sa(dp209308 +g25268 +S'Death and the Lansquenet' +p209309 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209310 +sg25273 +S'woodcut' +p209311 +sg25275 +S'1510' +p209312 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac4a.jpg' +p209313 +sg25267 +g27 +sa(dp209314 +g25268 +S'Martyrdom of Saint Lawrence' +p209315 +sg25270 +S'Hans Baldung Grien' +p209316 +sg25273 +S'woodcut' +p209317 +sg25275 +S'1505' +p209318 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7e4.jpg' +p209319 +sg25267 +g27 +sa(dp209320 +g25268 +S'Death and the Lansquenet' +p209321 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209322 +sg25273 +S'woodcut' +p209323 +sg25275 +S'1510' +p209324 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac49.jpg' +p209325 +sg25267 +g27 +sa(dp209326 +g25268 +S'King David Doing Penance' +p209327 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209328 +sg25273 +S'woodcut' +p209329 +sg25275 +S'1510' +p209330 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a945.jpg' +p209331 +sg25267 +g27 +sa(dp209332 +g25268 +S'The Man of Sorrows Mocked by a Soldier' +p209333 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209334 +sg25273 +S'woodcut' +p209335 +sg25275 +S'probably 1511' +p209336 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0cc.jpg' +p209337 +sg25267 +g27 +sa(dp209338 +g25268 +S'The Last Supper' +p209339 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209340 +sg25273 +S'woodcut' +p209341 +sg25275 +S'1510' +p209342 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0c7.jpg' +p209343 +sg25267 +g27 +sa(dp209344 +g25268 +S'Christ on the Mount of Olives' +p209345 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209346 +sg25273 +S'woodcut' +p209347 +sg25275 +S'c. 1497/1499' +p209348 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0c8.jpg' +p209349 +sg25267 +g27 +sa(dp209350 +g25268 +S'The Betrayal of Christ' +p209351 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209352 +sg25273 +S'woodcut' +p209353 +sg25275 +S'1510' +p209354 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000af/a000aff0.jpg' +p209355 +sg25267 +g27 +sa(dp209356 +g25268 +S'The Flagellation' +p209357 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209358 +sg25273 +S'woodcut' +p209359 +sg25275 +S'c. 1497' +p209360 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b10d.jpg' +p209361 +sg25267 +g27 +sa(dp209362 +g25268 +S'Ecce Homo' +p209363 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209364 +sg25273 +S'woodcut' +p209365 +sg25275 +S'c. 1498/1499' +p209366 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b110.jpg' +p209367 +sg25267 +g27 +sa(dp209368 +g25268 +S'Christ Carrying the Cross' +p209369 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209370 +sg25273 +S'woodcut' +p209371 +sg25275 +S'c. 1498/1499' +p209372 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b111.jpg' +p209373 +sg25267 +g27 +sa(dp209374 +g25268 +S'The Crucifixion' +p209375 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209376 +sg25273 +S'woodcut' +p209377 +sg25275 +S'c. 1497/1498' +p209378 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b10f.jpg' +p209379 +sg25267 +g27 +sa(dp209380 +g25268 +S'The Conversion of Saint Paul' +p209381 +sg25270 +S'Hans Baldung Grien' +p209382 +sg25273 +S'woodcut' +p209383 +sg25275 +S'1508' +p209384 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7e5.jpg' +p209385 +sg25267 +g27 +sa(dp209386 +g25268 +S'The Lamentation' +p209387 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209388 +sg25273 +S'woodcut' +p209389 +sg25275 +S'c. 1498/1499' +p209390 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b10e.jpg' +p209391 +sg25267 +g27 +sa(dp209392 +g25268 +S'The Deposition' +p209393 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209394 +sg25273 +S'woodcut' +p209395 +sg25275 +S'c. 1497' +p209396 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b10c.jpg' +p209397 +sg25267 +g27 +sa(dp209398 +g25268 +S'Christ in Limbo' +p209399 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209400 +sg25273 +S'woodcut' +p209401 +sg25275 +S'1510' +p209402 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac15.jpg' +p209403 +sg25267 +g27 +sa(dp209404 +g25268 +S'The Resurrection' +p209405 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209406 +sg25273 +S'woodcut' +p209407 +sg25275 +S'1510' +p209408 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b10b.jpg' +p209409 +sg25267 +g27 +sa(dp209410 +g25268 +S'The Betrayal of Christ' +p209411 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209412 +sg25273 +S'woodcut' +p209413 +sg25275 +S'1510' +p209414 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005c/a0005cc9.jpg' +p209415 +sg25267 +g27 +sa(dp209416 +g25268 +S'Christ in Limbo' +p209417 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209418 +sg25273 +S'woodcut' +p209419 +sg25275 +S'1510' +p209420 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b10a.jpg' +p209421 +sg25267 +g27 +sa(dp209422 +g25268 +S'The Madonna on the Crescent' +p209423 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209424 +sg25273 +S'woodcut' +p209425 +sg25275 +S'1510/1511' +p209426 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b121.jpg' +p209427 +sg25267 +g27 +sa(dp209428 +g25268 +S'The Death of the Virgin' +p209429 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209430 +sg25273 +S'woodcut' +p209431 +sg25275 +S'1510' +p209432 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f22.jpg' +p209433 +sg25267 +g27 +sa(dp209434 +g25268 +S'The Assumption and Coronation of the Virgin' +p209435 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209436 +sg25273 +S'woodcut' +p209437 +sg25275 +S'1510' +p209438 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f23.jpg' +p209439 +sg25267 +g27 +sa(dp209440 +g25268 +S'The Assumption and Coronation of the Virgin' +p209441 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209442 +sg25273 +S'woodcut' +p209443 +sg25275 +S'1510' +p209444 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b230.jpg' +p209445 +sg25267 +g27 +sa(dp209446 +g25268 +S'The Last Judgment' +p209447 +sg25270 +S'Hans Baldung Grien' +p209448 +sg25273 +S'woodcut' +p209449 +sg25275 +S'1505' +p209450 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7e1.jpg' +p209451 +sg25267 +g27 +sa(dp209452 +g25268 +S'The Fall of Man' +p209453 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209454 +sg25273 +S'woodcut' +p209455 +sg25275 +S'probably c. 1509/1510' +p209456 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a949.jpg' +p209457 +sg25267 +g27 +sa(dp209458 +g25268 +S'The Expulsion from Paradise' +p209459 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209460 +sg25273 +S'woodcut' +p209461 +sg25275 +S'1510' +p209462 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a94c.jpg' +p209463 +sg25267 +g27 +sa(dp209464 +g25268 +S'The Annunciation' +p209465 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209466 +sg25273 +S'woodcut' +p209467 +sg25275 +S'probably c. 1509/1510' +p209468 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a94b.jpg' +p209469 +sg25267 +g27 +sa(dp209470 +g25268 +S'The Nativity' +p209471 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209472 +sg25273 +S'woodcut' +p209473 +sg25275 +S'probably c. 1509/1510' +p209474 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f24.jpg' +p209475 +sg25267 +g27 +sa(dp209476 +g25268 +S'Christ Taking Leave from His Mother' +p209477 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209478 +sg25273 +S'woodcut' +p209479 +sg25275 +S'probably c. 1509/1510' +p209480 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a94e.jpg' +p209481 +sg25267 +g27 +sa(dp209482 +g25268 +S"Christ's Entry into Jerusalem" +p209483 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209484 +sg25273 +S'woodcut' +p209485 +sg25275 +S'probably c. 1509/1510' +p209486 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a94a.jpg' +p209487 +sg25267 +g27 +sa(dp209488 +g25268 +S'Christ Expelling the Moneylenders from the Temple' +p209489 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209490 +sg25273 +S'woodcut' +p209491 +sg25275 +S'probably c. 1509/1510' +p209492 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a94f.jpg' +p209493 +sg25267 +g27 +sa(dp209494 +g25268 +S'The Last Supper' +p209495 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209496 +sg25273 +S'woodcut' +p209497 +sg25275 +S'probably c. 1509/1510' +p209498 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a94d.jpg' +p209499 +sg25267 +g27 +sa(dp209500 +g25268 +S'Christ Washing the Feet of the Disciples' +p209501 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209502 +sg25273 +S'woodcut' +p209503 +sg25275 +S'probably c. 1509/1510' +p209504 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a955.jpg' +p209505 +sg25267 +g27 +sa(dp209506 +g25268 +S'Apostle Judas Thaddeus' +p209507 +sg25270 +S'Hans Baldung Grien' +p209508 +sg25273 +S'woodcut' +p209509 +sg25275 +S'1519' +p209510 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7d4.jpg' +p209511 +sg25267 +g27 +sa(dp209512 +g25268 +S'Christ on the Mount of Olives' +p209513 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209514 +sg25273 +S'woodcut' +p209515 +sg25275 +S'probably c. 1509/1510' +p209516 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a951.jpg' +p209517 +sg25267 +g27 +sa(dp209518 +g25268 +S'The Betrayal of Christ' +p209519 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209520 +sg25273 +S'woodcut' +p209521 +sg25275 +S'probably c. 1509/1510' +p209522 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a952.jpg' +p209523 +sg25267 +g27 +sa(dp209524 +g25268 +S'Christ before Annas' +p209525 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209526 +sg25273 +S'woodcut' +p209527 +sg25275 +S'probably c. 1509/1510' +p209528 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a953.jpg' +p209529 +sg25267 +g27 +sa(dp209530 +g25268 +S'Christ before Caiaphas' +p209531 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209532 +sg25273 +S'woodcut' +p209533 +sg25275 +S'probably c. 1509/1510' +p209534 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a954.jpg' +p209535 +sg25267 +g27 +sa(dp209536 +g25268 +S'The Mocking of Christ' +p209537 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209538 +sg25273 +S'woodcut' +p209539 +sg25275 +S'probably c. 1509/1510' +p209540 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a956.jpg' +p209541 +sg25267 +g27 +sa(dp209542 +g25268 +S'Christ before Pilate' +p209543 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209544 +sg25273 +S'woodcut' +p209545 +sg25275 +S'probably c. 1509/1510' +p209546 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a957.jpg' +p209547 +sg25267 +g27 +sa(dp209548 +g25268 +S'Christ before Herod' +p209549 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209550 +sg25273 +S'woodcut' +p209551 +sg25275 +S'1509' +p209552 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a95c.jpg' +p209553 +sg25267 +g27 +sa(dp209554 +g25268 +S'The Flagellation' +p209555 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209556 +sg25273 +S'woodcut' +p209557 +sg25275 +S'probably c. 1509/1510' +p209558 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a958.jpg' +p209559 +sg25267 +g27 +sa(dp209560 +g25268 +S'Christ Crowned with Thorns' +p209561 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209562 +sg25273 +S'woodcut' +p209563 +sg25275 +S'probably c. 1509/1510' +p209564 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a959.jpg' +p209565 +sg25267 +g27 +sa(dp209566 +g25268 +S'Ecce Homo' +p209567 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209568 +sg25273 +S'woodcut' +p209569 +sg25275 +S'probably c. 1509/1510' +p209570 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a95b.jpg' +p209571 +sg25267 +g27 +sa(dp209572 +g25268 +S'Group of Seven Horses' +p209573 +sg25270 +S'Hans Baldung Grien' +p209574 +sg25273 +S'woodcut' +p209575 +sg25275 +S'1534' +p209576 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000ae7c.jpg' +p209577 +sg25267 +g27 +sa(dp209578 +g25268 +S'Pilate Washing His Hands' +p209579 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209580 +sg25273 +S'woodcut' +p209581 +sg25275 +S'probably c. 1509/1510' +p209582 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a95a.jpg' +p209583 +sg25267 +g27 +sa(dp209584 +g25268 +S'Christ Carrying the Cross' +p209585 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209586 +sg25273 +S'woodcut' +p209587 +sg25275 +S'1509' +p209588 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a95e.jpg' +p209589 +sg25267 +g27 +sa(dp209590 +g25268 +S'Saint Veronica between Saints Peter and Paul' +p209591 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209592 +sg25273 +S'woodcut' +p209593 +sg25275 +S'1509' +p209594 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a962.jpg' +p209595 +sg25267 +g27 +sa(dp209596 +g25268 +S'Christ Nailed to the Cross' +p209597 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209598 +sg25273 +S'woodcut' +p209599 +sg25275 +S'probably c. 1509/1510' +p209600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a960.jpg' +p209601 +sg25267 +g27 +sa(dp209602 +g25268 +S'The Crucifixion' +p209603 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209604 +sg25273 +S'woodcut' +p209605 +sg25275 +S'probably c. 1509/1510' +p209606 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a963.jpg' +p209607 +sg25267 +g27 +sa(dp209608 +g25268 +S'Christ in Limbo' +p209609 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209610 +sg25273 +S'woodcut' +p209611 +sg25275 +S'probably c. 1509/1510' +p209612 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a964.jpg' +p209613 +sg25267 +g27 +sa(dp209614 +g25268 +S'The Descent from the Cross' +p209615 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209616 +sg25273 +S'woodcut' +p209617 +sg25275 +S'probably c. 1509/1510' +p209618 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a95f.jpg' +p209619 +sg25267 +g27 +sa(dp209620 +g25268 +S'The Lamentation' +p209621 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209622 +sg25273 +S'woodcut' +p209623 +sg25275 +S'probably c. 1509/1510' +p209624 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a961.jpg' +p209625 +sg25267 +g27 +sa(dp209626 +g25268 +S'The Deposition' +p209627 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209628 +sg25273 +S'woodcut' +p209629 +sg25275 +S'probably c. 1509/1510' +p209630 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a965.jpg' +p209631 +sg25267 +g27 +sa(dp209632 +g25268 +S'The Resurrection' +p209633 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209634 +sg25273 +S'woodcut' +p209635 +sg25275 +S'probably c. 1509/1510' +p209636 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a969.jpg' +p209637 +sg25267 +g27 +sa(dp209638 +g25268 +S'The Bewitched Groom' +p209639 +sg25270 +S'Hans Baldung Grien' +p209640 +sg25273 +S'woodcut' +p209641 +sg25275 +S'1544' +p209642 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ef4.jpg' +p209643 +sg25267 +g27 +sa(dp209644 +g25268 +S'Christ Appearing to His Mother' +p209645 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209646 +sg25273 +S'woodcut' +p209647 +sg25275 +S'probably c. 1509/1510' +p209648 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a968.jpg' +p209649 +sg25267 +g27 +sa(dp209650 +g25268 +S'Noli Me Tangere' +p209651 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209652 +sg25273 +S'woodcut' +p209653 +sg25275 +S'probably c. 1509/1510' +p209654 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a966.jpg' +p209655 +sg25267 +g27 +sa(dp209656 +g25268 +S'Christ in Emmaus' +p209657 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209658 +sg25273 +S'woodcut' +p209659 +sg25275 +S'probably c. 1509/1510' +p209660 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a967.jpg' +p209661 +sg25267 +g27 +sa(dp209662 +g25268 +S'Doubting Thomas' +p209663 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209664 +sg25273 +S'woodcut' +p209665 +sg25275 +S'probably c. 1509/1510' +p209666 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00050/a0005030.jpg' +p209667 +sg25267 +g27 +sa(dp209668 +g25268 +S'The Ascension' +p209669 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209670 +sg25273 +S'woodcut' +p209671 +sg25275 +S'probably c. 1509/1510' +p209672 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a96b.jpg' +p209673 +sg25267 +g27 +sa(dp209674 +g25268 +S'Pentecost' +p209675 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209676 +sg25273 +S'woodcut' +p209677 +sg25275 +S'probably c. 1509/1510' +p209678 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a96a.jpg' +p209679 +sg25267 +g27 +sa(dp209680 +g25268 +S'The Last Judgment' +p209681 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209682 +sg25273 +S'woodcut' +p209683 +sg25275 +S'probably c. 1509/1510' +p209684 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a96c.jpg' +p209685 +sg25267 +g27 +sa(dp209686 +g25268 +S'The Fall of Man' +p209687 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209688 +sg25273 +S'woodcut' +p209689 +sg25275 +S'probably c. 1509/1510' +p209690 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a948.jpg' +p209691 +sg25267 +g27 +sa(dp209692 +g25268 +S'Christ on the Mount of Olives' +p209693 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209694 +sg25273 +S'woodcut' +p209695 +sg25275 +S'probably c. 1509/1510' +p209696 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a96d.jpg' +p209697 +sg25267 +g27 +sa(dp209698 +g25268 +S'Cain Killing Abel' +p209699 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209700 +sg25273 +S'woodcut' +p209701 +sg25275 +S'1511' +p209702 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a950.jpg' +p209703 +sg25267 +g27 +sa(dp209704 +g25268 +S"Abraham's Sacrifice" +p209705 +sg25270 +S'Albrecht Altdorfer' +p209706 +sg25273 +S'woodcut' +p209707 +sg25275 +S'in or after 1520' +p209708 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a77f.jpg' +p209709 +sg25267 +g27 +sa(dp209710 +g25268 +S'The Adoration of the Magi' +p209711 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209712 +sg25273 +S'woodcut' +p209713 +sg25275 +S'1511' +p209714 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b166.jpg' +p209715 +sg25267 +g27 +sa(dp209716 +g25268 +S'The Mass of Saint Gregory' +p209717 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209718 +sg25273 +S'woodcut' +p209719 +sg25275 +S'1511' +p209720 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b238.jpg' +p209721 +sg25267 +g27 +sa(dp209722 +g25268 +S'The Trinity' +p209723 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209724 +sg25273 +S'woodcut' +p209725 +sg25275 +S'1511' +p209726 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00016/a0001637.jpg' +p209727 +sg25267 +g27 +sa(dp209728 +g25268 +S'Saint Christopher' +p209729 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209730 +sg25273 +S'woodcut' +p209731 +sg25275 +S'1511' +p209732 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b235.jpg' +p209733 +sg25267 +g27 +sa(dp209734 +g25268 +S'Saint Jerome in His Cell' +p209735 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209736 +sg25273 +S'woodcut' +p209737 +sg25275 +S'1511' +p209738 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac40.jpg' +p209739 +sg25267 +g27 +sa(dp209740 +g25268 +S'The Holy Family with Joachim and Anne under a Tree' +p209741 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209742 +sg25273 +S'woodcut' +p209743 +sg25275 +S'1511' +p209744 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac1c.jpg' +p209745 +sg25267 +g27 +sa(dp209746 +g25268 +S'The Holy Family with Two Music-Making Angels' +p209747 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209748 +sg25273 +S'woodcut' +p209749 +sg25275 +S'1511' +p209750 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b231.jpg' +p209751 +sg25267 +g27 +sa(dp209752 +g25268 +S'The Virgin Crowned by Two Angels above a Landscape' +p209753 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209754 +sg25273 +S'woodcut' +p209755 +sg25275 +S'in or before 1515' +p209756 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a96f.jpg' +p209757 +sg25267 +g27 +sa(dp209758 +g25268 +S'The War at Hainault' +p209759 +sg25270 +S'Hans Springinklee' +p209760 +sg25273 +S'woodcut' +p209761 +sg25275 +S'unknown date\n' +p209762 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad60.jpg' +p209763 +sg25267 +g27 +sa(dp209764 +g25268 +S'Christ on the Cross' +p209765 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209766 +sg25273 +S'woodcut' +p209767 +sg25275 +S'1516' +p209768 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b120.jpg' +p209769 +sg25267 +g27 +sa(dp209770 +g25268 +S'A Wooded Landscape' +p209771 +sg25270 +S'Meindert Hobbema' +p209772 +sg25273 +S'oil on canvas' +p209773 +sg25275 +S'1663' +p209774 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e64.jpg' +p209775 +sg25267 +g27 +sa(dp209776 +g25268 +S'Joshua and Caleb' +p209777 +sg25270 +S'Albrecht Altdorfer' +p209778 +sg25273 +S'woodcut' +p209779 +sg25275 +S'in or after 1520' +p209780 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a780.jpg' +p209781 +sg25267 +g27 +sa(dp209782 +g25268 +S'Italian Joust' +p209783 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209784 +sg25273 +S'woodcut' +p209785 +sg25275 +S'probably 1526' +p209786 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b250.jpg' +p209787 +sg25267 +g27 +sa(dp209788 +g25268 +S'Masquerade Dance with Torches' +p209789 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209790 +sg25273 +S'woodcut' +p209791 +sg25275 +S'probably 1516' +p209792 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b251.jpg' +p209793 +sg25267 +g27 +sa(dp209794 +g25268 +S'The Virgin Surrounded by Many Angels' +p209795 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209796 +sg25273 +S'woodcut' +p209797 +sg25275 +S'1518' +p209798 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b22c.jpg' +p209799 +sg25267 +g27 +sa(dp209800 +g25268 +S'Coat of Arms of the German Empire and Nuremberg City' +p209801 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209802 +sg25273 +S'woodcut' +p209803 +sg25275 +S'1521' +p209804 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac58.jpg' +p209805 +sg25267 +g27 +sa(dp209806 +g25268 +S'Ulrich Varnbuler' +p209807 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209808 +sg25273 +S'woodcut' +p209809 +sg25275 +S'1522' +p209810 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000adb9.jpg' +p209811 +sg25267 +g27 +sa(dp209812 +g25268 +S'Ulrich Varnbuler' +p209813 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209814 +sg25273 +S'chiaroscuro woodcut on laid paper' +p209815 +sg25275 +S'1522' +p209816 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000ae40.jpg' +p209817 +sg25267 +g27 +sa(dp209818 +g25268 +S'The Last Supper' +p209819 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209820 +sg25273 +S'woodcut' +p209821 +sg25275 +S'1523' +p209822 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b11e.jpg' +p209823 +sg25267 +g27 +sa(dp209824 +g25268 +S'Justice, Truth and Reason in the Stocks with the Seated Judge and Sleeping Piety' +p209825 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209826 +sg25273 +S'woodcut' +p209827 +sg25275 +S'probably 1526' +p209828 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b237.jpg' +p209829 +sg25267 +g27 +sa(dp209830 +g25268 +S'Eobanus Hess' +p209831 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209832 +sg25273 +S'woodcut' +p209833 +sg25275 +S'1526' +p209834 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b24f.jpg' +p209835 +sg25267 +g27 +sa(dp209836 +g25273 +S'woodcut' +p209837 +sg25267 +g27 +sg25275 +S'1527' +p209838 +sg25268 +S'Siege of a Fortress' +p209839 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209840 +sa(dp209841 +g25268 +S'Jael and Sisera' +p209842 +sg25270 +S'Albrecht Altdorfer' +p209843 +sg25273 +S'woodcut' +p209844 +sg25275 +S'c. 1523' +p209845 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a706.jpg' +p209846 +sg25267 +g27 +sa(dp209847 +g25268 +S'The Triumphal Chariot of Maximilian I (The Great Triumphal Car)' +p209848 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209849 +sg25273 +S'woodcut//Eight joined plates' +p209850 +sg25275 +S'1522' +p209851 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8e9.jpg' +p209852 +sg25267 +g27 +sa(dp209853 +g25268 +S'Judgment of Paris' +p209854 +sg25270 +S'Hans Springinklee' +p209855 +sg25273 +S', unknown date' +p209856 +sg25275 +S'\n' +p209857 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad58.jpg' +p209858 +sg25267 +g27 +sa(dp209859 +g25268 +S'Coat of Arms of Lazarus Spengler' +p209860 +sg25270 +S'Sebald Beham' +p209861 +sg25273 +S'woodcut' +p209862 +sg25275 +S'unknown date\n' +p209863 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8e8.jpg' +p209864 +sg25267 +g27 +sa(dp209865 +g25268 +S'Coat of Arms of the Family Kress von Kressenstein' +p209866 +sg25270 +S'Sebald Beham' +p209867 +sg25273 +S'woodcut' +p209868 +sg25275 +S'unknown date\n' +p209869 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b095.jpg' +p209870 +sg25267 +g27 +sa(dp209871 +g25268 +S'Saint Jerome in Penitence' +p209872 +sg25270 +S'Hans Springinklee' +p209873 +sg25273 +S', unknown date' +p209874 +sg25275 +S'\n' +p209875 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad59.jpg' +p209876 +sg25267 +g27 +sa(dp209877 +g25268 +S'Saints Maximilian, Stephen and Valentine' +p209878 +sg25270 +S'Wolf Traut' +p209879 +sg25273 +S', unknown date' +p209880 +sg25275 +S'\n' +p209881 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b287.jpg' +p209882 +sg25267 +g27 +sa(dp209883 +g25268 +S'Coat of Arms of Hector Pomer' +p209884 +sg25270 +S'Sebald Beham' +p209885 +sg25273 +S'woodcut' +p209886 +sg25275 +S'1525' +p209887 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000aee9.jpg' +p209888 +sg25267 +g27 +sa(dp209889 +g25268 +S'Hanns D\xc3\xbcrer, Brother of Albrecht D\xc3\xbcrer' +p209890 +sg25270 +S'Albrecht D\xc3\xbcrer' +p209891 +sg25273 +S'silverpoint heightened with white on brown prepared paper' +p209892 +sg25275 +S'probably 1510' +p209893 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a000795c.jpg' +p209894 +sg25267 +g27 +sa(dp209895 +g25268 +S'The Embrace (A Couple of Lovers by a Tree)' +p209896 +sg25270 +S'Hans Springinklee' +p209897 +sg25273 +S', unknown date' +p209898 +sg25275 +S'\n' +p209899 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad57.jpg' +p209900 +sg25267 +g27 +sa(dp209901 +g25268 +S'Riva degli Schiavoni (1)' +p209902 +sg25270 +S'Frank Duveneck' +p209903 +sg25273 +S'drypoint on chine applique paper' +p209904 +sg25275 +S'1880' +p209905 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a8c.jpg' +p209906 +sg25267 +g27 +sa(dp209907 +g25268 +S'The Adoration of the Shepherds' +p209908 +sg25270 +S'Albrecht Altdorfer' +p209909 +sg25273 +S'woodcut' +p209910 +sg25275 +S'in or after 1520' +p209911 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a77e.jpg' +p209912 +sg25267 +g27 +sa(dp209913 +g25268 +S'Riva degli Schiavoni (2)' +p209914 +sg25270 +S'Frank Duveneck' +p209915 +sg25273 +S'drypoint on chine applique paper' +p209916 +sg25275 +S'c. 1880' +p209917 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a8d.jpg' +p209918 +sg25267 +g27 +sa(dp209919 +g25268 +S'Village Festival' +p209920 +sg25270 +S'Cornelis Dusart' +p209921 +sg25273 +S'etching' +p209922 +sg25275 +S'1685' +p209923 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4fe.jpg' +p209924 +sg25267 +g27 +sa(dp209925 +g25268 +S'Violin Player Seated in a Tavern' +p209926 +sg25270 +S'Cornelis Dusart' +p209927 +sg25273 +S'etching and roulette' +p209928 +sg25275 +S'1685' +p209929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4fb.jpg' +p209930 +sg25267 +g27 +sa(dp209931 +g25268 +S'A King and Diana Receiving Huntsmen' +p209932 +sg25270 +S'Jean Duvet' +p209933 +sg25273 +S'engraving' +p209934 +sg25275 +S'probably c. 1547/1555' +p209935 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083a3.jpg' +p209936 +sg25267 +g27 +sa(dp209937 +g25268 +S'The Angel in the Sun Calling the Birds of Prey' +p209938 +sg25270 +S'Jean Duvet' +p209939 +sg25273 +S'engraving' +p209940 +sg25275 +S'1546/1556' +p209941 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084d5.jpg' +p209942 +sg25267 +g27 +sa(dp209943 +g25268 +S'A King Pursued by a Unicorn' +p209944 +sg25270 +S'Jean Duvet' +p209945 +sg25273 +S'engraving' +p209946 +sg25275 +S'c. 1555' +p209947 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084cf.jpg' +p209948 +sg25267 +g27 +sa(dp209949 +g25268 +S'Evil Tidings in B Flat' +p209950 +sg25270 +S'Will Dyson' +p209951 +sg25273 +S'drypoint' +p209952 +sg25275 +S'unknown date\n' +p209953 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d76a.jpg' +p209954 +sg25267 +g27 +sa(dp209955 +g25268 +S'"Can you forgive me Father?" - "Can you forgive me daughter?"' +p209956 +sg25270 +S'Will Dyson' +p209957 +sg25273 +S'drypoint' +p209958 +sg25275 +S'unknown date\n' +p209959 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d770.jpg' +p209960 +sg25267 +g27 +sa(dp209961 +g25268 +S'"And grant, oh Lord, a little temptation be yet it is too late-"' +p209962 +sg25270 +S'Will Dyson' +p209963 +sg25273 +S'drypoint' +p209964 +sg25275 +S'unknown date\n' +p209965 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d769.jpg' +p209966 +sg25267 +g27 +sa(dp209967 +g25268 +S'"Ah Mr. Hardy, Mr. Hardy, if you only knew all the circumstances..."' +p209968 +sg25270 +S'Will Dyson' +p209969 +sg25273 +S'drypoint' +p209970 +sg25275 +S'unknown date\n' +p209971 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d768.jpg' +p209972 +sg25267 +g27 +sa(dp209973 +g25268 +S'Suppliant Kneeling before the Virgin and Child' +p209974 +sg25270 +S'Albrecht Altdorfer' +p209975 +sg25273 +S'woodcut' +p209976 +sg25275 +S'c. 1519' +p209977 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a784.jpg' +p209978 +sg25267 +g27 +sa(dp209979 +g25268 +S'"Why Did I Do It?"' +p209980 +sg25270 +S'Will Dyson' +p209981 +sg25273 +S'drypoint' +p209982 +sg25275 +S'unknown date\n' +p209983 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d76e.jpg' +p209984 +sg25267 +g27 +sa(dp209985 +g25268 +S"Rembrandt's Wife" +p209986 +sg25270 +S'Artist Information (' +p209987 +sg25273 +S'(artist after)' +p209988 +sg25275 +S'\n' +p209989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a0007866.jpg' +p209990 +sg25267 +g27 +sa(dp209991 +g25273 +S'etching' +p209992 +sg25267 +g27 +sg25275 +S'1936' +p209993 +sg25268 +S'Still Hollow' +p209994 +sg25270 +S'Kerr Eby' +p209995 +sa(dp209996 +g25273 +S'drypoint' +p209997 +sg25267 +g27 +sg25275 +S'1919' +p209998 +sg25268 +S'Rough Going' +p209999 +sg25270 +S'Kerr Eby' +p210000 +sa(dp210001 +g25273 +S'etching' +p210002 +sg25267 +g27 +sg25275 +S'1934' +p210003 +sg25268 +S'September 13, 1918, St. Michiel' +p210004 +sg25270 +S'Kerr Eby' +p210005 +sa(dp210006 +g25268 +S'Nicolas de Blampignon' +p210007 +sg25270 +S'Artist Information (' +p210008 +sg25273 +S'(artist after)' +p210009 +sg25275 +S'\n' +p210010 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d500.jpg' +p210011 +sg25267 +g27 +sa(dp210012 +g25268 +S'Remi Du Laury' +p210013 +sg25270 +S'Artist Information (' +p210014 +sg25273 +S'(artist after)' +p210015 +sg25275 +S'\n' +p210016 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d508.jpg' +p210017 +sg25267 +g27 +sa(dp210018 +g25268 +S'Philippe de Champaigne' +p210019 +sg25270 +S'Artist Information (' +p210020 +sg25273 +S'(artist after)' +p210021 +sg25275 +S'\n' +p210022 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d60b.jpg' +p210023 +sg25267 +g27 +sa(dp210024 +g25268 +S'Charles-Maurice Le Tellier' +p210025 +sg25270 +S'Artist Information (' +p210026 +sg25273 +S'(artist after)' +p210027 +sg25275 +S'\n' +p210028 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d509.jpg' +p210029 +sg25267 +g27 +sa(dp210030 +g25268 +S'Tobias and the Angel' +p210031 +sg25270 +S'Adam Elsheimer' +p210032 +sg25273 +S'etching' +p210033 +sg25275 +S'unknown date\n' +p210034 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2c0.jpg' +p210035 +sg25267 +g27 +sa(dp210036 +g25268 +S'Saint Christopher' +p210037 +sg25270 +S'Albrecht Altdorfer' +p210038 +sg25273 +S'woodcut' +p210039 +sg25275 +S'1513' +p210040 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a702.jpg' +p210041 +sg25267 +g27 +sa(dp210042 +g25268 +S'Knud Rasmussen' +p210043 +sg25270 +S'Albert Engstrom' +p210044 +sg25273 +S'etching' +p210045 +sg25275 +S'unknown date\n' +p210046 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed31.jpg' +p210047 +sg25267 +g27 +sa(dp210048 +g25273 +S'engraving' +p210049 +sg25267 +g27 +sg25275 +S'1936' +p210050 +sg25268 +S'Spanish Mule' +p210051 +sg25270 +S'Wilfred Fairclough' +p210052 +sa(dp210053 +g25268 +S'Manfred and Astarte (1st plate)' +p210054 +sg25270 +S'Henri Fantin-Latour' +p210055 +sg25273 +S'lithograph' +p210056 +sg25275 +S'1879' +p210057 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095d5.jpg' +p210058 +sg25267 +g27 +sa(dp210059 +g25268 +S'Manfred and Astarte (2nd plate)' +p210060 +sg25270 +S'Henri Fantin-Latour' +p210061 +sg25273 +S'lithograph' +p210062 +sg25275 +S'1881' +p210063 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095d6.jpg' +p210064 +sg25267 +g27 +sa(dp210065 +g25268 +S'Weeper: Study of a Nude Woman, Seated with Profile to Right' +p210066 +sg25270 +S'Henri Fantin-Latour' +p210067 +sg25273 +S'lithograph' +p210068 +sg25275 +S'1899' +p210069 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009976.jpg' +p210070 +sg25267 +g27 +sa(dp210071 +g25268 +S'Duet from "The Trojans" (6th plate)' +p210072 +sg25270 +S'Henri Fantin-Latour' +p210073 +sg25273 +S'lithograph' +p210074 +sg25275 +S'1894' +p210075 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095d4.jpg' +p210076 +sg25267 +g27 +sa(dp210077 +g25268 +S'Debut from "Paradise and the Peri" (2nd plate)' +p210078 +sg25270 +S'Henri Fantin-Latour' +p210079 +sg25273 +S'lithograph' +p210080 +sg25275 +S'1894' +p210081 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f44.jpg' +p210082 +sg25267 +g27 +sa(dp210083 +g25268 +S'Siegfried and the Rhine Maidens' +p210084 +sg25270 +S'Henri Fantin-Latour' +p210085 +sg25273 +S'black crayon on paperboard' +p210086 +sg25275 +S'unknown date\n' +p210087 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007324.jpg' +p210088 +sg25267 +g27 +sa(dp210089 +g25268 +S'Pastoral' +p210090 +sg25270 +S'Henri Fantin-Latour' +p210091 +sg25273 +S'lithograph' +p210092 +sg25275 +S'1896' +p210093 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f42.jpg' +p210094 +sg25267 +g27 +sa(dp210095 +g25273 +S'lithograph' +p210096 +sg25267 +g27 +sg25275 +S'1893' +p210097 +sg25268 +S'Ballet from "The Trojans"' +p210098 +sg25270 +S'Henri Fantin-Latour' +p210099 +sa(dp210100 +g25268 +S'Saint Christopher Seated by a River Bank' +p210101 +sg25270 +S'Albrecht Altdorfer' +p210102 +sg25273 +S'woodcut' +p210103 +sg25275 +S'c. 1515/1517' +p210104 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a77c.jpg' +p210105 +sg25267 +g27 +sa(dp210106 +g25268 +S'Evocation of Kundry (2nd plate)' +p210107 +sg25270 +S'Henri Fantin-Latour' +p210108 +sg25273 +S'lithograph' +p210109 +sg25275 +S'1883' +p210110 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f43.jpg' +p210111 +sg25267 +g27 +sa(dp210112 +g25268 +S'Charles Meryon' +p210113 +sg25270 +S'Leopold Flameng' +p210114 +sg25273 +S'heliogravure (?)' +p210115 +sg25275 +S'1858' +p210116 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095d3.jpg' +p210117 +sg25267 +g27 +sa(dp210118 +g25273 +S'bound volume with 78 drawings in pen and ink and graphite' +p210119 +sg25267 +g27 +sg25275 +S'unknown date\n' +p210120 +sg25268 +S'Album of Drawings for Dante\'s "Divine Comedy"' +p210121 +sg25270 +S'John Flaxman' +p210122 +sa(dp210123 +g25268 +S'Ornamented Vase' +p210124 +sg25270 +S'Paul Flindt II' +p210125 +sg25273 +S'stipple etching' +p210126 +sg25275 +S'unknown date\n' +p210127 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2c6.jpg' +p210128 +sg25267 +g27 +sa(dp210129 +g25268 +S'The Bouquet' +p210130 +sg25270 +S'Jean-Louis Forain' +p210131 +sg25273 +S'etching' +p210132 +sg25275 +S'c. 1876' +p210133 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099db.jpg' +p210134 +sg25267 +g27 +sa(dp210135 +g25268 +S'Dancers in Their Dressing Room' +p210136 +sg25270 +S'Jean-Louis Forain' +p210137 +sg25273 +S'etching' +p210138 +sg25275 +S'c. 1876' +p210139 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099d8.jpg' +p210140 +sg25267 +g27 +sa(dp210141 +g25268 +S'The Cafe of the New Athens' +p210142 +sg25270 +S'Jean-Louis Forain' +p210143 +sg25273 +S'etching' +p210144 +sg25275 +S'c. 1876' +p210145 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099d7.jpg' +p210146 +sg25267 +g27 +sa(dp210147 +g25268 +S'The Bar at the Folies Bergere' +p210148 +sg25270 +S'Jean-Louis Forain' +p210149 +sg25273 +S'etching' +p210150 +sg25275 +S'unknown date\n' +p210151 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099dd.jpg' +p210152 +sg25267 +g27 +sa(dp210153 +g25268 +S"To Bullier's" +p210154 +sg25270 +S'Jean-Louis Forain' +p210155 +sg25273 +S'color etching' +p210156 +sg25275 +S'c. 1876' +p210157 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099da.jpg' +p210158 +sg25267 +g27 +sa(dp210159 +g25268 +S"To Bullier's" +p210160 +sg25270 +S'Jean-Louis Forain' +p210161 +sg25273 +S'etching' +p210162 +sg25275 +S'c. 1876' +p210163 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099d9.jpg' +p210164 +sg25267 +g27 +sa(dp210165 +g25268 +S'The Judgment of Paris' +p210166 +sg25270 +S'Albrecht Altdorfer' +p210167 +sg25273 +S'woodcut' +p210168 +sg25275 +S'1511' +p210169 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6fe.jpg' +p210170 +sg25267 +g27 +sa(dp210171 +g25268 +S'The Folies Bergere (refused plate, second plate)' +p210172 +sg25270 +S'Jean-Louis Forain' +p210173 +sg25273 +S'etching' +p210174 +sg25275 +S'1880 and 1886' +p210175 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009977.jpg' +p210176 +sg25267 +g27 +sa(dp210177 +g25268 +S'Woman Walking with an Umbrella' +p210178 +sg25270 +S'Jean-Louis Forain' +p210179 +sg25273 +S'etching' +p210180 +sg25275 +S'unknown date\n' +p210181 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000997b.jpg' +p210182 +sg25267 +g27 +sa(dp210183 +g25268 +S'The White Slave Trade' +p210184 +sg25270 +S'Jean-Louis Forain' +p210185 +sg25273 +S'etching' +p210186 +sg25275 +S'1886' +p210187 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099dc.jpg' +p210188 +sg25267 +g27 +sa(dp210189 +g25268 +S'The Corridors of the Palace of Justice' +p210190 +sg25270 +S'Jean-Louis Forain' +p210191 +sg25273 +S'etching' +p210192 +sg25275 +S'1908' +p210193 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000997a.jpg' +p210194 +sg25267 +g27 +sa(dp210195 +g25268 +S'Evidence at the Hearing (first plate)' +p210196 +sg25270 +S'Jean-Louis Forain' +p210197 +sg25273 +S'soft-ground etching (zinc)' +p210198 +sg25275 +S'1908' +p210199 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099df.jpg' +p210200 +sg25267 +g27 +sa(dp210201 +g25268 +S'Evidence at the Hearing (second plate)' +p210202 +sg25270 +S'Jean-Louis Forain' +p210203 +sg25273 +S'etching and soft-ground' +p210204 +sg25275 +S'1908' +p210205 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099e0.jpg' +p210206 +sg25267 +g27 +sa(dp210207 +g25268 +S'Evidence at the Hearing (second plate)' +p210208 +sg25270 +S'Jean-Louis Forain' +p210209 +sg25273 +S'etching and soft-ground' +p210210 +sg25275 +S'1908' +p210211 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099de.jpg' +p210212 +sg25267 +g27 +sa(dp210213 +g25268 +S'Dancer and Headwaiter' +p210214 +sg25270 +S'Jean-Louis Forain' +p210215 +sg25273 +S'soft-ground etching, drypoint, and aquatint' +p210216 +sg25275 +S'1908' +p210217 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099e1.jpg' +p210218 +sg25267 +g27 +sa(dp210219 +g25268 +S'After the Seizure' +p210220 +sg25270 +S'Jean-Louis Forain' +p210221 +sg25273 +S'etching (zinc)' +p210222 +sg25275 +S'1908' +p210223 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099e2.jpg' +p210224 +sg25267 +g27 +sa(dp210225 +g25268 +S'After the Seizure' +p210226 +sg25270 +S'Jean-Louis Forain' +p210227 +sg25273 +S'etching (zinc)' +p210228 +sg25275 +S'1908' +p210229 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f4a.jpg' +p210230 +sg25267 +g27 +sa(dp210231 +g25268 +S'The Fall of Man' +p210232 +sg25270 +S'Albrecht Altdorfer' +p210233 +sg25273 +S'woodcut' +p210234 +sg25275 +S'c. 1513' +p210235 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a709.jpg' +p210236 +sg25267 +g27 +sa(dp210237 +g25268 +S'Unwed Mother (first plate)' +p210238 +sg25270 +S'Jean-Louis Forain' +p210239 +sg25273 +S'etching' +p210240 +sg25275 +S'1909' +p210241 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f45.jpg' +p210242 +sg25267 +g27 +sa(dp210243 +g25268 +S'The Big Cigar' +p210244 +sg25270 +S'Jean-Louis Forain' +p210245 +sg25273 +S'soft-ground etching and drypoint (zinc)' +p210246 +sg25275 +S'1909' +p210247 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099ec.jpg' +p210248 +sg25267 +g27 +sa(dp210249 +g25268 +S'Lower Box at the Theater' +p210250 +sg25270 +S'Jean-Louis Forain' +p210251 +sg25273 +S'etching (zinc)' +p210252 +sg25275 +S'1909' +p210253 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099eb.jpg' +p210254 +sg25267 +g27 +sa(dp210255 +g25268 +S'Nude Woman, Seated on Her Bed, Front View' +p210256 +sg25270 +S'Jean-Louis Forain' +p210257 +sg25273 +S'etching (zinc)' +p210258 +sg25275 +S'1909' +p210259 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099e9.jpg' +p210260 +sg25267 +g27 +sa(dp210261 +g25268 +S'The Return of the Prodigal Son (third plate)' +p210262 +sg25270 +S'Jean-Louis Forain' +p210263 +sg25273 +S'etching' +p210264 +sg25275 +S'1909' +p210265 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099e8.jpg' +p210266 +sg25267 +g27 +sa(dp210267 +g25268 +S'The Good Samaritan' +p210268 +sg25270 +S'Jean-Louis Forain' +p210269 +sg25273 +S'etching' +p210270 +sg25275 +S'1909' +p210271 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f51.jpg' +p210272 +sg25267 +g27 +sa(dp210273 +g25268 +S'Coming Out of the Hearing (first plate)' +p210274 +sg25270 +S'Jean-Louis Forain' +p210275 +sg25273 +S'etching' +p210276 +sg25275 +S'1909' +p210277 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099e4.jpg' +p210278 +sg25267 +g27 +sa(dp210279 +g25268 +S'Coming Out of the Hearing (first plate)' +p210280 +sg25270 +S'Jean-Louis Forain' +p210281 +sg25273 +S'etching' +p210282 +sg25275 +S'1909' +p210283 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f4f.jpg' +p210284 +sg25267 +g27 +sa(dp210285 +g25268 +S'Coming Out of the Hearing (first plate)' +p210286 +sg25270 +S'Jean-Louis Forain' +p210287 +sg25273 +S'etching' +p210288 +sg25275 +S'1909' +p210289 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f4e.jpg' +p210290 +sg25267 +g27 +sa(dp210291 +g25268 +S'Coming Out of the Hearing (first plate)' +p210292 +sg25270 +S'Jean-Louis Forain' +p210293 +sg25273 +S'etching' +p210294 +sg25275 +S'1909' +p210295 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f4d.jpg' +p210296 +sg25267 +g27 +sa(dp210297 +g25268 +S'Expulsion from Paradise' +p210298 +sg25270 +S'Albrecht Altdorfer' +p210299 +sg25273 +S'woodcut' +p210300 +sg25275 +S'c. 1513' +p210301 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a70a.jpg' +p210302 +sg25267 +g27 +sa(dp210303 +g25268 +S'The Prisoner and the Child' +p210304 +sg25270 +S'Jean-Louis Forain' +p210305 +sg25273 +S'etching' +p210306 +sg25275 +S'1909' +p210307 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099e3.jpg' +p210308 +sg25267 +g27 +sa(dp210309 +g25268 +S'The Prisoner and the Child' +p210310 +sg25270 +S'Jean-Louis Forain' +p210311 +sg25273 +S'etching' +p210312 +sg25275 +S'1909' +p210313 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f50.jpg' +p210314 +sg25267 +g27 +sa(dp210315 +g25268 +S'The Lawyer Talking to the Prisoner (first plate)' +p210316 +sg25270 +S'Jean-Louis Forain' +p210317 +sg25273 +S'drypoint in brown on wove paper' +p210318 +sg25275 +S'1909' +p210319 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099e6.jpg' +p210320 +sg25267 +g27 +sa(dp210321 +g25268 +S'The Lawyer Talking to the Prisoner (second plate)' +p210322 +sg25270 +S'Jean-Louis Forain' +p210323 +sg25273 +S'etching' +p210324 +sg25275 +S'1909' +p210325 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099e7.jpg' +p210326 +sg25267 +g27 +sa(dp210327 +g25268 +S"The Model's Rest (first plate)" +p210328 +sg25270 +S'Jean-Louis Forain' +p210329 +sg25273 +S'etching' +p210330 +sg25275 +S'1909' +p210331 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099ea.jpg' +p210332 +sg25267 +g27 +sa(dp210333 +g25268 +S"The Model's Rest (second plate)" +p210334 +sg25270 +S'Jean-Louis Forain' +p210335 +sg25273 +S'etching' +p210336 +sg25275 +S'1909' +p210337 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099f7.jpg' +p210338 +sg25267 +g27 +sa(dp210339 +g25268 +S'Calvary (first plate)' +p210340 +sg25270 +S'Jean-Louis Forain' +p210341 +sg25273 +S'etching' +p210342 +sg25275 +S'1902' +p210343 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f48.jpg' +p210344 +sg25267 +g27 +sa(dp210345 +g25268 +S'Calvary (first plate)' +p210346 +sg25270 +S'Jean-Louis Forain' +p210347 +sg25273 +S'etching' +p210348 +sg25275 +S'1902' +p210349 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f46.jpg' +p210350 +sg25267 +g27 +sa(dp210351 +g25268 +S'Calvary (second plate)' +p210352 +sg25270 +S'Jean-Louis Forain' +p210353 +sg25273 +S'etching' +p210354 +sg25275 +S'1902' +p210355 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f49.jpg' +p210356 +sg25267 +g27 +sa(dp210357 +g25268 +S'Calvary (second plate)' +p210358 +sg25270 +S'Jean-Louis Forain' +p210359 +sg25273 +S'etching' +p210360 +sg25275 +S'1902' +p210361 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f47.jpg' +p210362 +sg25267 +g27 +sa(dp210363 +g25268 +S"Joachim's Offering Refused" +p210364 +sg25270 +S'Albrecht Altdorfer' +p210365 +sg25273 +S'woodcut' +p210366 +sg25275 +S'c. 1513' +p210367 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a737.jpg' +p210368 +sg25267 +g27 +sa(dp210369 +g25268 +S'The Road to Emmaus (first plate)' +p210370 +sg25270 +S'Jean-Louis Forain' +p210371 +sg25273 +S'etching' +p210372 +sg25275 +S'1902/1907' +p210373 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099ef.jpg' +p210374 +sg25267 +g27 +sa(dp210375 +g25268 +S'Woman Putting On Her Stockings' +p210376 +sg25270 +S'Jean-Louis Forain' +p210377 +sg25273 +S'etching and aquatint' +p210378 +sg25275 +S'unknown date\n' +p210379 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005da7.jpg' +p210380 +sg25267 +g27 +sa(dp210381 +g25268 +S'In a Private Room (first plate)' +p210382 +sg25270 +S'Jean-Louis Forain' +p210383 +sg25273 +S'etching' +p210384 +sg25275 +S'1909' +p210385 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099f4.jpg' +p210386 +sg25267 +g27 +sa(dp210387 +g25268 +S'In a Private Room (first plate)' +p210388 +sg25270 +S'Jean-Louis Forain' +p210389 +sg25273 +S'etching' +p210390 +sg25275 +S'1909' +p210391 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099f2.jpg' +p210392 +sg25267 +g27 +sa(dp210393 +g25268 +S'On the Bed' +p210394 +sg25270 +S'Jean-Louis Forain' +p210395 +sg25273 +S'etching' +p210396 +sg25275 +S'unknown date\n' +p210397 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f4b.jpg' +p210398 +sg25267 +g27 +sa(dp210399 +g25268 +S'On the Bed' +p210400 +sg25270 +S'Jean-Louis Forain' +p210401 +sg25273 +S'etching' +p210402 +sg25275 +S'unknown date\n' +p210403 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f4c.jpg' +p210404 +sg25267 +g27 +sa(dp210405 +g25268 +S'Study of a Nude Woman, Hands Crossed behind Her Head' +p210406 +sg25270 +S'Jean-Louis Forain' +p210407 +sg25273 +S'transfer lithograph' +p210408 +sg25275 +S'unknown date\n' +p210409 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f57.jpg' +p210410 +sg25267 +g27 +sa(dp210411 +g25268 +S'At the Gambling Table (first plate)' +p210412 +sg25270 +S'Jean-Louis Forain' +p210413 +sg25273 +S'etching' +p210414 +sg25275 +S'1909' +p210415 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099f1.jpg' +p210416 +sg25267 +g27 +sa(dp210417 +g25268 +S'At the Gambling Table (first plate)' +p210418 +sg25270 +S'Jean-Louis Forain' +p210419 +sg25273 +S'etching' +p210420 +sg25275 +S'1909' +p210421 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099f5.jpg' +p210422 +sg25267 +g27 +sa(dp210423 +g25268 +S'At the Gambling Table (second plate)' +p210424 +sg25270 +S'Jean-Louis Forain' +p210425 +sg25273 +S'etching' +p210426 +sg25275 +S'1909' +p210427 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099f3.jpg' +p210428 +sg25267 +g27 +sa(dp210429 +g25268 +S'A View on a High Road' +p210430 +sg25270 +S'Meindert Hobbema' +p210431 +sg25273 +S'oil on canvas' +p210432 +sg25275 +S'1665' +p210433 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a1e.jpg' +p210434 +sg25267 +S'Hobbema often painted rural scenes where a road meanders past houses and farms\nnestled among trees. One senses the soft winds of a summer day as clouds billow\nin the sky. Pools of sunlight accent buildings and fields as well as the leaves\nand branches of distant trees. Figures strolling along the road or resting beside\nit are integrated harmoniously into this peaceful and idyllic setting.\n Hobbema, who studied for a short while in Amsterdam with Jacob van Ruisdael, was\na prolific painter, particularly during the 1660s when this work was done. He frequently\npainted variants of his scenes by slightly changing the position of buildings,\ntrees, and figures. In this instance the elegant foreground couple may have been\npainted by a specialist in depicting such figures. Hobbema often collaborated with\nother artists in this manner when completing his works.\n The idyllic qualities of his scenes, combined with the realistic effects of light\nand atmosphere, appealed tremendously to English collectors. This painting, along\nwith another that Hobbema may have painted as its pendant, belonged to the collection\nof the Duke of Westminster in the nineteenth century.\n ' +p210435 +sa(dp210436 +g25268 +S'Annunciation to Joachim' +p210437 +sg25270 +S'Albrecht Altdorfer' +p210438 +sg25273 +S'woodcut' +p210439 +sg25275 +S'c. 1513' +p210440 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a738.jpg' +p210441 +sg25267 +g27 +sa(dp210442 +g25268 +S'The Madonna and the Children' +p210443 +sg25270 +S'Jean-Louis Forain' +p210444 +sg25273 +S'etching' +p210445 +sg25275 +S'1909' +p210446 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099f8.jpg' +p210447 +sg25267 +g27 +sa(dp210448 +g25268 +S'Landscape in the Environs of Versailles' +p210449 +sg25270 +S'Jean-Louis Forain' +p210450 +sg25273 +S'etching' +p210451 +sg25275 +S'1909' +p210452 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099ed.jpg' +p210453 +sg25267 +g27 +sa(dp210454 +g25268 +S'The Road to Rocquencourt' +p210455 +sg25270 +S'Jean-Louis Forain' +p210456 +sg25273 +S'drypoint' +p210457 +sg25275 +S'1909' +p210458 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099f0.jpg' +p210459 +sg25267 +g27 +sa(dp210460 +g25268 +S'Lawyer Going through a Brief' +p210461 +sg25270 +S'Jean-Louis Forain' +p210462 +sg25273 +S'etching' +p210463 +sg25275 +S'1909' +p210464 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099f6.jpg' +p210465 +sg25267 +g27 +sa(dp210466 +g25268 +S'Lawyer Going through a Brief' +p210467 +sg25270 +S'Jean-Louis Forain' +p210468 +sg25273 +S'etching' +p210469 +sg25275 +S'1909' +p210470 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099ff.jpg' +p210471 +sg25267 +g27 +sa(dp210472 +g25268 +S'A Dive at Montmartre' +p210473 +sg25270 +S'Jean-Louis Forain' +p210474 +sg25273 +S'etching' +p210475 +sg25275 +S'1909' +p210476 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a02.jpg' +p210477 +sg25267 +g27 +sa(dp210478 +g25268 +S'Christ Stripped of His Clothes' +p210479 +sg25270 +S'Jean-Louis Forain' +p210480 +sg25273 +S'drypoint' +p210481 +sg25275 +S'1909' +p210482 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a00.jpg' +p210483 +sg25267 +g27 +sa(dp210484 +g25268 +S'Christ Stripped of His Clothes' +p210485 +sg25270 +S'Jean-Louis Forain' +p210486 +sg25273 +S'drypoint and etching' +p210487 +sg25275 +S'1909' +p210488 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a03.jpg' +p210489 +sg25267 +g27 +sa(dp210490 +g25268 +S'The Mocking of Christ' +p210491 +sg25270 +S'Jean-Louis Forain' +p210492 +sg25273 +S'drypoint' +p210493 +sg25275 +S'1909' +p210494 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a05.jpg' +p210495 +sg25267 +g27 +sa(dp210496 +g25268 +S'After the Vision (second plate)' +p210497 +sg25270 +S'Jean-Louis Forain' +p210498 +sg25273 +S'etching and drypoint' +p210499 +sg25275 +S'1902/1907' +p210500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099fb.jpg' +p210501 +sg25267 +g27 +sa(dp210502 +g25268 +S'Joachim Embracing Anna' +p210503 +sg25270 +S'Albrecht Altdorfer' +p210504 +sg25273 +S'woodcut' +p210505 +sg25275 +S'c. 1513' +p210506 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a739.jpg' +p210507 +sg25267 +g27 +sa(dp210508 +g25268 +S'After the Vision (second plate)' +p210509 +sg25270 +S'Jean-Louis Forain' +p210510 +sg25273 +S'etching and drypoint' +p210511 +sg25275 +S'1902/1907' +p210512 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099fc.jpg' +p210513 +sg25267 +g27 +sa(dp210514 +g25268 +S"The Model's Rest (fourth plate)" +p210515 +sg25270 +S'Jean-Louis Forain' +p210516 +sg25273 +S'etching' +p210517 +sg25275 +S'1909' +p210518 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099fe.jpg' +p210519 +sg25267 +g27 +sa(dp210520 +g25268 +S'In the Park at Versailles (first plate)' +p210521 +sg25270 +S'Jean-Louis Forain' +p210522 +sg25273 +S'drypoint' +p210523 +sg25275 +S'1909' +p210524 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a06.jpg' +p210525 +sg25267 +g27 +sa(dp210526 +g25268 +S'Woman Seated in Profile' +p210527 +sg25270 +S'Jean-Louis Forain' +p210528 +sg25273 +S'etching (zinc)' +p210529 +sg25275 +S'1909' +p210530 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a07.jpg' +p210531 +sg25267 +g27 +sa(dp210532 +g25268 +S'The Breaking of the Bread' +p210533 +sg25270 +S'Jean-Louis Forain' +p210534 +sg25273 +S'etching' +p210535 +sg25275 +S'1902/1907' +p210536 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099fd.jpg' +p210537 +sg25267 +g27 +sa(dp210538 +g25268 +S'Before the Supper at Emmaus (first plate)' +p210539 +sg25270 +S'Jean-Louis Forain' +p210540 +sg25273 +S'etching' +p210541 +sg25275 +S'1910' +p210542 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099fa.jpg' +p210543 +sg25267 +g27 +sa(dp210544 +g25268 +S'The Supper at Emmaus (second plate)' +p210545 +sg25270 +S'Jean-Louis Forain' +p210546 +sg25273 +S'drypoint' +p210547 +sg25275 +S'1910' +p210548 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a01.jpg' +p210549 +sg25267 +g27 +sa(dp210550 +g25268 +S'The Supper at Emmaus (third plate)' +p210551 +sg25270 +S'Jean-Louis Forain' +p210552 +sg25273 +S'etching' +p210553 +sg25275 +S'1910' +p210554 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a04.jpg' +p210555 +sg25267 +g27 +sa(dp210556 +g25268 +S'The Meeting under the Arch (first plate)' +p210557 +sg25270 +S'Jean-Louis Forain' +p210558 +sg25273 +S'etching' +p210559 +sg25275 +S'1910' +p210560 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099f9.jpg' +p210561 +sg25267 +g27 +sa(dp210562 +g25268 +S'The Meeting under the Arch (second plate)' +p210563 +sg25270 +S'Jean-Louis Forain' +p210564 +sg25273 +S'drypoint' +p210565 +sg25275 +S'1910' +p210566 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a0e.jpg' +p210567 +sg25267 +g27 +sa(dp210568 +g25268 +S'Presentation of the Virgin' +p210569 +sg25270 +S'Albrecht Altdorfer' +p210570 +sg25273 +S'woodcut' +p210571 +sg25275 +S'c. 1513' +p210572 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a73a.jpg' +p210573 +sg25267 +g27 +sa(dp210574 +g25268 +S'The Meeting under the Arch (third plate)' +p210575 +sg25270 +S'Jean-Louis Forain' +p210576 +sg25273 +S'etching' +p210577 +sg25275 +S'1910' +p210578 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a0f.jpg' +p210579 +sg25267 +g27 +sa(dp210580 +g25268 +S'Woman Taking Off Her Chemise' +p210581 +sg25270 +S'Jean-Louis Forain' +p210582 +sg25273 +S'drypoint' +p210583 +sg25275 +S'c. 1910' +p210584 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a09.jpg' +p210585 +sg25267 +g27 +sa(dp210586 +g25268 +S'Nude Woman Seen from the Back' +p210587 +sg25270 +S'Jean-Louis Forain' +p210588 +sg25273 +S'drypoint' +p210589 +sg25275 +S'1910' +p210590 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a08.jpg' +p210591 +sg25267 +g27 +sa(dp210592 +g25268 +S'In a Private Room (third plate)' +p210593 +sg25270 +S'Jean-Louis Forain' +p210594 +sg25273 +S'drypoint' +p210595 +sg25275 +S'1910' +p210596 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a0c.jpg' +p210597 +sg25267 +g27 +sa(dp210598 +g25268 +S'Fainting at the Hearing' +p210599 +sg25270 +S'Jean-Louis Forain' +p210600 +sg25273 +S'etching' +p210601 +sg25275 +S'1910' +p210602 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a0b.jpg' +p210603 +sg25267 +g27 +sa(dp210604 +g25268 +S'Christ Carrying the Cross (fourth plate)' +p210605 +sg25270 +S'Jean-Louis Forain' +p210606 +sg25273 +S'etching' +p210607 +sg25275 +S'1910' +p210608 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a12.jpg' +p210609 +sg25267 +g27 +sa(dp210610 +g25268 +S"It's Over! (large plate)" +p210611 +sg25270 +S'Jean-Louis Forain' +p210612 +sg25273 +S'drypoint' +p210613 +sg25275 +S'1910' +p210614 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a0d.jpg' +p210615 +sg25267 +g27 +sa(dp210616 +g25268 +S'Piet\xc3\xa0 (first plate)' +p210617 +sg25270 +S'Jean-Louis Forain' +p210618 +sg25273 +S'etching and drypoint' +p210619 +sg25275 +S'1910' +p210620 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a0a.jpg' +p210621 +sg25267 +g27 +sa(dp210622 +g25268 +S'Piet\xc3\xa0 (third plate)' +p210623 +sg25270 +S'Jean-Louis Forain' +p210624 +sg25273 +S'etching' +p210625 +sg25275 +S'1910' +p210626 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a11.jpg' +p210627 +sg25267 +g27 +sa(dp210628 +g25268 +S'Piet\xc3\xa0 (third plate)' +p210629 +sg25270 +S'Jean-Louis Forain' +p210630 +sg25273 +S'etching' +p210631 +sg25275 +S'1910' +p210632 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a10.jpg' +p210633 +sg25267 +g27 +sa(dp210634 +g25268 +S'The Annunciation' +p210635 +sg25270 +S'Albrecht Altdorfer' +p210636 +sg25273 +S'woodcut' +p210637 +sg25275 +S'c. 1513' +p210638 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a736.jpg' +p210639 +sg25267 +g27 +sa(dp210640 +g25268 +S'The Adulteress (third plate' +p210641 +sg25270 +S'Jean-Louis Forain' +p210642 +sg25273 +S'drypoint' +p210643 +sg25275 +S'1910' +p210644 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a13.jpg' +p210645 +sg25267 +g27 +sa(dp210646 +g25268 +S'The Rest on the Flight into Egypt' +p210647 +sg25270 +S'Jean-Louis Forain' +p210648 +sg25273 +S'etching' +p210649 +sg25275 +S'unknown date\n' +p210650 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a23.jpg' +p210651 +sg25267 +g27 +sa(dp210652 +g25268 +S'Lourdes, the Miracle (second plate)' +p210653 +sg25270 +S'Jean-Louis Forain' +p210654 +sg25273 +S'etching and drypoint' +p210655 +sg25275 +S'1912/1913' +p210656 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a57.jpg' +p210657 +sg25267 +g27 +sa(dp210658 +g25268 +S'Lourdes, the Paralytic (second plate)' +p210659 +sg25270 +S'Jean-Louis Forain' +p210660 +sg25273 +S'etching and drypoint' +p210661 +sg25275 +S'1912/1913' +p210662 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a52.jpg' +p210663 +sg25267 +g27 +sa(dp210664 +g25268 +S'The Departure of the Prodigal Son (first plate, vertical)' +p210665 +sg25270 +S'Jean-Louis Forain' +p210666 +sg25273 +S'etching and drypoint' +p210667 +sg25275 +S'probably 1912/1913' +p210668 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a4d.jpg' +p210669 +sg25267 +g27 +sa(dp210670 +g25268 +S'Christ Carrying the Cross (fifth plate)' +p210671 +sg25270 +S'Jean-Louis Forain' +p210672 +sg25273 +S'etching' +p210673 +sg25275 +S'c. 1910' +p210674 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a21.jpg' +p210675 +sg25267 +g27 +sa(dp210676 +g25268 +S'Lourdes, Transport of the Paralyzed' +p210677 +sg25270 +S'Jean-Louis Forain' +p210678 +sg25273 +S'etching' +p210679 +sg25275 +S'1912/1913' +p210680 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a50.jpg' +p210681 +sg25267 +g27 +sa(dp210682 +g25268 +S'The Notables (small plate)' +p210683 +sg25270 +S'Jean-Louis Forain' +p210684 +sg25273 +S'etching' +p210685 +sg25275 +S'1915' +p210686 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a4f.jpg' +p210687 +sg25267 +g27 +sa(dp210688 +g25268 +S'The Notables (large plate)' +p210689 +sg25270 +S'Jean-Louis Forain' +p210690 +sg25273 +S'etching and drypoint' +p210691 +sg25275 +S'c. 1915' +p210692 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a1b.jpg' +p210693 +sg25267 +g27 +sa(dp210694 +g25268 +S'The Road to Emmaus (second plate)' +p210695 +sg25270 +S'Jean-Louis Forain' +p210696 +sg25273 +S'etching' +p210697 +sg25275 +S'1902/1907' +p210698 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a1e.jpg' +p210699 +sg25267 +g27 +sa(dp210700 +g25268 +S'The Visitation' +p210701 +sg25270 +S'Albrecht Altdorfer' +p210702 +sg25273 +S'woodcut' +p210703 +sg25275 +S'c. 1513' +p210704 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a735.jpg' +p210705 +sg25267 +g27 +sa(dp210706 +g25268 +S'The Miracle before the Blessed Sacrament (fourth plate)' +p210707 +sg25270 +S'Jean-Louis Forain' +p210708 +sg25273 +S'etching' +p210709 +sg25275 +S'1912/1913' +p210710 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a1d.jpg' +p210711 +sg25267 +g27 +sa(dp210712 +g25268 +S'The Rest on the Flight into Egypt' +p210713 +sg25270 +S'Jean-Louis Forain' +p210714 +sg25273 +S'etching' +p210715 +sg25275 +S'1909' +p210716 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a22.jpg' +p210717 +sg25267 +g27 +sa(dp210718 +g25268 +S'The Return Home' +p210719 +sg25270 +S'Jean-Louis Forain' +p210720 +sg25273 +S'etching and drypoint' +p210721 +sg25275 +S'c. 1915' +p210722 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a16.jpg' +p210723 +sg25267 +g27 +sa(dp210724 +g25268 +S'Self-Portrait' +p210725 +sg25270 +S'Jean-Louis Forain' +p210726 +sg25273 +S'etching' +p210727 +sg25275 +S'1912' +p210728 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a24.jpg' +p210729 +sg25267 +g27 +sa(dp210730 +g25268 +S'Forain Etching (first plate)' +p210731 +sg25270 +S'Jean-Louis Forain' +p210732 +sg25273 +S'drypoint' +p210733 +sg25275 +S'1912' +p210734 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000997c.jpg' +p210735 +sg25267 +g27 +sa(dp210736 +g25268 +S'J.L. Forain' +p210737 +sg25270 +S'Jean-Louis Forain' +p210738 +sg25273 +S'etching' +p210739 +sg25275 +S'unknown date\n' +p210740 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000997d.jpg' +p210741 +sg25267 +g27 +sa(dp210742 +g25268 +S'Lourdes, Transport of the Paralyzed' +p210743 +sg25270 +S'Jean-Louis Forain' +p210744 +sg25273 +S'etching' +p210745 +sg25275 +S'1912/1913' +p210746 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a51.jpg' +p210747 +sg25267 +g27 +sa(dp210748 +g25268 +S'Declaration of Love' +p210749 +sg25270 +S'Jean-Louis Forain' +p210750 +sg25273 +S'drypoint' +p210751 +sg25275 +S'unknown date\n' +p210752 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a1f.jpg' +p210753 +sg25267 +g27 +sa(dp210754 +g25268 +S'Mlle B\xc3\xa9cat' +p210755 +sg25270 +S'Edgar Degas' +p210756 +sg25273 +S'monotype on laid paper' +p210757 +sg25275 +S'c. 1877/1878' +p210758 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f13.jpg' +p210759 +sg25267 +g27 +sa(dp210760 +g25268 +S'Christ Carrying the Cross (seventh plate)' +p210761 +sg25270 +S'Jean-Louis Forain' +p210762 +sg25273 +S'etching and drypoint' +p210763 +sg25275 +S'c. 1910' +p210764 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a20.jpg' +p210765 +sg25267 +g27 +sa(dp210766 +g25268 +S'The Nativity' +p210767 +sg25270 +S'Albrecht Altdorfer' +p210768 +sg25273 +S'woodcut' +p210769 +sg25275 +S'c. 1513' +p210770 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a734.jpg' +p210771 +sg25267 +g27 +sa(dp210772 +g25268 +S'Lourdes, the Miracle (first plate)' +p210773 +sg25270 +S'Jean-Louis Forain' +p210774 +sg25273 +S'etching in dark brown ink' +p210775 +sg25275 +S'1912/1913' +p210776 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a17.jpg' +p210777 +sg25267 +g27 +sa(dp210778 +g25268 +S'The Miracle before the Blessed Sacrament (fourth plate)' +p210779 +sg25270 +S'Jean-Louis Forain' +p210780 +sg25273 +S'etching' +p210781 +sg25275 +S'1912/1913' +p210782 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a1c.jpg' +p210783 +sg25267 +g27 +sa(dp210784 +g25268 +S'Pilgrims at Emmaus' +p210785 +sg25270 +S'Jean-Louis Forain' +p210786 +sg25273 +S'etching and drypoint touched with pencil and hand-colored with white and brown wash' +p210787 +sg25275 +S'1912/1913' +p210788 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a19.jpg' +p210789 +sg25267 +g27 +sa(dp210790 +g25268 +S'At the Restaurant' +p210791 +sg25270 +S'Jean-Louis Forain' +p210792 +sg25273 +S'lithograph' +p210793 +sg25275 +S'1890' +p210794 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a32.jpg' +p210795 +sg25267 +g27 +sa(dp210796 +g25268 +S'Dancer Tying Her Slipper' +p210797 +sg25270 +S'Jean-Louis Forain' +p210798 +sg25273 +S'lithograph' +p210799 +sg25275 +S'c. 1891' +p210800 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d18.jpg' +p210801 +sg25267 +g27 +sa(dp210802 +g25268 +S'A Seizure' +p210803 +sg25270 +S'Jean-Louis Forain' +p210804 +sg25273 +S'lithograph' +p210805 +sg25275 +S'c. 1891' +p210806 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a2e.jpg' +p210807 +sg25267 +g27 +sa(dp210808 +g25268 +S'Laffitte Street' +p210809 +sg25270 +S'Jean-Louis Forain' +p210810 +sg25273 +S'lithograph' +p210811 +sg25275 +S'c. 1892' +p210812 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a31.jpg' +p210813 +sg25267 +g27 +sa(dp210814 +g25268 +S'"I don\'t dare take them down...it would hurt him too much."' +p210815 +sg25270 +S'Jean-Louis Forain' +p210816 +sg25273 +S'lithograph' +p210817 +sg25275 +S'c. 1892' +p210818 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a2f.jpg' +p210819 +sg25267 +g27 +sa(dp210820 +g25268 +S'At the Theatre' +p210821 +sg25270 +S'Jean-Louis Forain' +p210822 +sg25273 +S'lithograph' +p210823 +sg25275 +S'c. 1892' +p210824 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a30.jpg' +p210825 +sg25267 +g27 +sa(dp210826 +g25268 +S"At the Bailiff's" +p210827 +sg25270 +S'Jean-Louis Forain' +p210828 +sg25273 +S'lithograph' +p210829 +sg25275 +S'c. 1891' +p210830 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a33.jpg' +p210831 +sg25267 +g27 +sa(dp210832 +g25268 +S'The Adoration of the Magi' +p210833 +sg25270 +S'Albrecht Altdorfer' +p210834 +sg25273 +S'woodcut' +p210835 +sg25275 +S'c. 1513' +p210836 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a70e.jpg' +p210837 +sg25267 +g27 +sa(dp210838 +g25268 +S'The Private Room (first plate)' +p210839 +sg25270 +S'Jean-Louis Forain' +p210840 +sg25273 +S'lithograph' +p210841 +sg25275 +S'unknown date\n' +p210842 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a28.jpg' +p210843 +sg25267 +g27 +sa(dp210844 +g25268 +S'The Private Room (third plate)' +p210845 +sg25270 +S'Jean-Louis Forain' +p210846 +sg25273 +S'lithograph' +p210847 +sg25275 +S'unknown date\n' +p210848 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a2a.jpg' +p210849 +sg25267 +g27 +sa(dp210850 +g25268 +S'The Private Room (fourth plate)' +p210851 +sg25270 +S'Jean-Louis Forain' +p210852 +sg25273 +S'lithograph' +p210853 +sg25275 +S'unknown date\n' +p210854 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f54.jpg' +p210855 +sg25267 +g27 +sa(dp210856 +g25268 +S'The Private Room (fifth plate)' +p210857 +sg25270 +S'Jean-Louis Forain' +p210858 +sg25273 +S'lithograph' +p210859 +sg25275 +S'unknown date\n' +p210860 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a27.jpg' +p210861 +sg25267 +g27 +sa(dp210862 +g25268 +S'Love in Paris' +p210863 +sg25270 +S'Jean-Louis Forain' +p210864 +sg25273 +S'lithograph' +p210865 +sg25275 +S'unknown date\n' +p210866 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a2d.jpg' +p210867 +sg25267 +g27 +sa(dp210868 +g25268 +S"The Dancer's Dressing Room (second plate)" +p210869 +sg25270 +S'Jean-Louis Forain' +p210870 +sg25273 +S'lithograph' +p210871 +sg25275 +S'1894' +p210872 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a2b.jpg' +p210873 +sg25267 +g27 +sa(dp210874 +g25268 +S'The Massage with Coarse Hair Glove' +p210875 +sg25270 +S'Jean-Louis Forain' +p210876 +sg25273 +S'lithograph' +p210877 +sg25275 +S'1895' +p210878 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a2c.jpg' +p210879 +sg25267 +g27 +sa(dp210880 +g25268 +S'Breakfast (horizontal plate)' +p210881 +sg25270 +S'Jean-Louis Forain' +p210882 +sg25273 +S'lithograph' +p210883 +sg25275 +S'1895' +p210884 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a29.jpg' +p210885 +sg25267 +g27 +sa(dp210886 +g25268 +S'Three Drawings on a Sheet' +p210887 +sg25270 +S'Jean-Louis Forain' +p210888 +sg25273 +S'lithograph' +p210889 +sg25275 +S'unknown date\n' +p210890 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a39.jpg' +p210891 +sg25267 +g27 +sa(dp210892 +g25268 +S'Nude Woman Drying Her Feet (vertical plate)' +p210893 +sg25270 +S'Jean-Louis Forain' +p210894 +sg25273 +S'lithograph, touched with crayon' +p210895 +sg25275 +S'unknown date\n' +p210896 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a3f.jpg' +p210897 +sg25267 +g27 +sa(dp210898 +g25268 +S'The Circumcision' +p210899 +sg25270 +S'Albrecht Altdorfer' +p210900 +sg25273 +S'woodcut' +p210901 +sg25275 +S'c. 1513' +p210902 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a71a.jpg' +p210903 +sg25267 +g27 +sa(dp210904 +g25268 +S'Woman at Her Toilette with Her Maid (second horizontal plate)' +p210905 +sg25270 +S'Jean-Louis Forain' +p210906 +sg25273 +S'lithograph' +p210907 +sg25275 +S'unknown date\n' +p210908 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a3b.jpg' +p210909 +sg25267 +g27 +sa(dp210910 +g25268 +S'In the Bathroom' +p210911 +sg25270 +S'Jean-Louis Forain' +p210912 +sg25273 +S'lithograph' +p210913 +sg25275 +S'unknown date\n' +p210914 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a36.jpg' +p210915 +sg25267 +g27 +sa(dp210916 +g25268 +S'At an Evening Party' +p210917 +sg25270 +S'Jean-Louis Forain' +p210918 +sg25273 +S'lithograph' +p210919 +sg25275 +S'c. 1896' +p210920 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a35.jpg' +p210921 +sg25267 +g27 +sa(dp210922 +g25268 +S'Scene in a Private Room (horizontal plate)' +p210923 +sg25270 +S'Jean-Louis Forain' +p210924 +sg25273 +S'lithograph' +p210925 +sg25275 +S'unknown date\n' +p210926 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a00099e5.jpg' +p210927 +sg25267 +g27 +sa(dp210928 +g25268 +S'The Hearing (third plate)' +p210929 +sg25270 +S'Jean-Louis Forain' +p210930 +sg25273 +S'lithograph' +p210931 +sg25275 +S'unknown date\n' +p210932 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a40.jpg' +p210933 +sg25267 +g27 +sa(dp210934 +g25268 +S'Scene in a Private Room (horizontal plate)' +p210935 +sg25270 +S'Jean-Louis Forain' +p210936 +sg25273 +S'lithograph' +p210937 +sg25275 +S'unknown date\n' +p210938 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a42.jpg' +p210939 +sg25267 +g27 +sa(dp210940 +g25268 +S'The Bath (vertical plate)' +p210941 +sg25270 +S'Jean-Louis Forain' +p210942 +sg25273 +S'lithograph' +p210943 +sg25275 +S'c. 1896' +p210944 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a3e.jpg' +p210945 +sg25267 +g27 +sa(dp210946 +g25268 +S'In Greece' +p210947 +sg25270 +S'Jean-Louis Forain' +p210948 +sg25273 +S'lithograph' +p210949 +sg25275 +S'1897' +p210950 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a3a.jpg' +p210951 +sg25267 +g27 +sa(dp210952 +g25268 +S'Scene of a Strike (third plate)' +p210953 +sg25270 +S'Jean-Louis Forain' +p210954 +sg25273 +S'lithograph' +p210955 +sg25275 +S'c. 1897' +p210956 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a41.jpg' +p210957 +sg25267 +g27 +sa(dp210958 +g25268 +S'Seated Woman with Her Head Resting on Her Right Hand' +p210959 +sg25270 +S'Jean-Louis Forain' +p210960 +sg25273 +S'lithograph' +p210961 +sg25275 +S'1897' +p210962 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a38.jpg' +p210963 +sg25267 +g27 +sa(dp210964 +g25268 +S'The Presentation of Christ in the Temple' +p210965 +sg25270 +S'Albrecht Altdorfer' +p210966 +sg25273 +S'woodcut' +p210967 +sg25275 +S'c. 1513' +p210968 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a717.jpg' +p210969 +sg25267 +g27 +sa(dp210970 +g25268 +S'The Instructions for the Day' +p210971 +sg25270 +S'Jean-Louis Forain' +p210972 +sg25273 +S'transfer lithograph' +p210973 +sg25275 +S'unknown date\n' +p210974 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a3c.jpg' +p210975 +sg25267 +g27 +sa(dp210976 +g25268 +S'The Instructions for the Day' +p210977 +sg25270 +S'Jean-Louis Forain' +p210978 +sg25273 +S'transfer lithograph' +p210979 +sg25275 +S'unknown date\n' +p210980 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a3d.jpg' +p210981 +sg25267 +g27 +sa(dp210982 +g25268 +S'Dancer Leaning against a Wall' +p210983 +sg25270 +S'Jean-Louis Forain' +p210984 +sg25273 +S'transfer lithograph' +p210985 +sg25275 +S'unknown date\n' +p210986 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a34.jpg' +p210987 +sg25267 +g27 +sa(dp210988 +g25268 +S'Renoir (first plate)' +p210989 +sg25270 +S'Jean-Louis Forain' +p210990 +sg25273 +S'transfer lithograph' +p210991 +sg25275 +S'1905' +p210992 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a4b.jpg' +p210993 +sg25267 +g27 +sa(dp210994 +g25268 +S'Renoir (second plate)' +p210995 +sg25270 +S'Jean-Louis Forain' +p210996 +sg25273 +S'transfer lithograph' +p210997 +sg25275 +S'1905' +p210998 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a46.jpg' +p210999 +sg25267 +g27 +sa(dp211000 +g25268 +S'Renoir (third plate)' +p211001 +sg25270 +S'Jean-Louis Forain' +p211002 +sg25273 +S'transfer lithograph' +p211003 +sg25275 +S'1905' +p211004 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a49.jpg' +p211005 +sg25267 +g27 +sa(dp211006 +g25268 +S'Renoir (fourth plate)' +p211007 +sg25270 +S'Jean-Louis Forain' +p211008 +sg25273 +S'transfer lithograph' +p211009 +sg25275 +S'1905' +p211010 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a4a.jpg' +p211011 +sg25267 +g27 +sa(dp211012 +g25268 +S'The Jewish Peddler' +p211013 +sg25270 +S'Jean-Louis Forain' +p211014 +sg25273 +S'transfer lithograph' +p211015 +sg25275 +S'unknown date\n' +p211016 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a43.jpg' +p211017 +sg25267 +g27 +sa(dp211018 +g25268 +S'Fan' +p211019 +sg25270 +S'Jean-Louis Forain' +p211020 +sg25273 +S'transfer lithograph' +p211021 +sg25275 +S'1903' +p211022 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a47.jpg' +p211023 +sg25267 +g27 +sa(dp211024 +g25268 +S'Lourdes, Imploring before the Grotto (fourth plate)' +p211025 +sg25270 +S'Jean-Louis Forain' +p211026 +sg25273 +S'etching on blue laid paper' +p211027 +sg25275 +S'1912/1913' +p211028 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a1a.jpg' +p211029 +sg25267 +g27 +sa(dp211030 +g25268 +S'The Flight into Egypt' +p211031 +sg25270 +S'Albrecht Altdorfer' +p211032 +sg25273 +S'woodcut' +p211033 +sg25275 +S'c. 1513' +p211034 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a70f.jpg' +p211035 +sg25267 +g27 +sa(dp211036 +g25268 +S'Lourdes, the Paralytic (second plate)' +p211037 +sg25270 +S'Jean-Louis Forain' +p211038 +sg25273 +S'etching' +p211039 +sg25275 +S'1912/1913' +p211040 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a56.jpg' +p211041 +sg25267 +g27 +sa(dp211042 +g25268 +S"A Painting of Daddy's! (second plate)" +p211043 +sg25270 +S'Jean-Louis Forain' +p211044 +sg25273 +S'transfer lithograph' +p211045 +sg25275 +S'unknown date\n' +p211046 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a37.jpg' +p211047 +sg25267 +g27 +sa(dp211048 +g25268 +S'Scene of a Hearing' +p211049 +sg25270 +S'Jean-Louis Forain' +p211050 +sg25273 +S'lithograph' +p211051 +sg25275 +S'unknown date\n' +p211052 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a54.jpg' +p211053 +sg25267 +g27 +sa(dp211054 +g25268 +S'The German Expelled' +p211055 +sg25270 +S'Jean-Louis Forain' +p211056 +sg25273 +S'lithograph' +p211057 +sg25275 +S'1919' +p211058 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a4c.jpg' +p211059 +sg25267 +g27 +sa(dp211060 +g25268 +S'At the Gambling Table' +p211061 +sg25270 +S'Jean-Louis Forain' +p211062 +sg25273 +S'lithograph' +p211063 +sg25275 +S'unknown date\n' +p211064 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a55.jpg' +p211065 +sg25267 +g27 +sa(dp211066 +g25268 +S'Cleaned Out' +p211067 +sg25270 +S'Jean-Louis Forain' +p211068 +sg25273 +S'lithograph' +p211069 +sg25275 +S'1914' +p211070 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a53.jpg' +p211071 +sg25267 +g27 +sa(dp211072 +g25268 +S'Study of a Nude Woman with Lowered Arms' +p211073 +sg25270 +S'Jean-Louis Forain' +p211074 +sg25273 +S'transfer lithograph' +p211075 +sg25275 +S'unknown date\n' +p211076 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a45.jpg' +p211077 +sg25267 +g27 +sa(dp211078 +g25268 +S'Study of a Nude Woman, Hands Crossed behind Her Head' +p211079 +sg25270 +S'Jean-Louis Forain' +p211080 +sg25273 +S'transfer lithograph' +p211081 +sg25275 +S'unknown date\n' +p211082 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a44.jpg' +p211083 +sg25267 +g27 +sa(dp211084 +g25268 +S'Study of a Seated Woman, Half-Length in Profile' +p211085 +sg25270 +S'Jean-Louis Forain' +p211086 +sg25273 +S'transfer lithograph' +p211087 +sg25275 +S'unknown date\n' +p211088 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a48.jpg' +p211089 +sg25267 +g27 +sa(dp211090 +g25268 +S'Study of a Woman, Half-Length Facing Front' +p211091 +sg25270 +S'Jean-Louis Forain' +p211092 +sg25273 +S'transfer lithograph' +p211093 +sg25275 +S'unknown date\n' +p211094 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f58.jpg' +p211095 +sg25267 +g27 +sa(dp211096 +g25268 +S'Madonna Enthroned with Saints [middle panel]' +p211097 +sg25270 +S'Artist Information (' +p211098 +sg25273 +S'(painter)' +p211099 +sg25275 +S'\n' +p211100 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000085f.jpg' +p211101 +sg25267 +g27 +sa(dp211102 +g25268 +S'An Old Woman Dozing over a Book' +p211103 +sg25270 +S'Nicolaes Maes' +p211104 +sg25273 +S'oil on canvas' +p211105 +sg25275 +S'c. 1655' +p211106 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e6f.jpg' +p211107 +sg25267 +g27 +sa(dp211108 +g25268 +S'Christ Disputing with the Doctors' +p211109 +sg25270 +S'Albrecht Altdorfer' +p211110 +sg25273 +S'woodcut' +p211111 +sg25275 +S'c. 1513' +p211112 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a00058f8.jpg' +p211113 +sg25267 +g27 +sa(dp211114 +g25268 +S'Study of a Seated Woman' +p211115 +sg25270 +S'Jean-Louis Forain' +p211116 +sg25273 +S'transfer lithograph' +p211117 +sg25275 +S'unknown date\n' +p211118 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f59.jpg' +p211119 +sg25267 +g27 +sa(dp211120 +g25268 +S'Study of a Seated Woman' +p211121 +sg25270 +S'Jean-Louis Forain' +p211122 +sg25273 +S'transfer lithograph' +p211123 +sg25275 +S'unknown date\n' +p211124 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f55.jpg' +p211125 +sg25267 +g27 +sa(dp211126 +g25268 +S'Scene in a Private Room (vertical plate)' +p211127 +sg25270 +S'Jean-Louis Forain' +p211128 +sg25273 +S'transfer lithograph' +p211129 +sg25275 +S'c. 1905' +p211130 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f56.jpg' +p211131 +sg25267 +g27 +sa(dp211132 +g25268 +S'Gambling Room' +p211133 +sg25270 +S'Jean-Louis Forain' +p211134 +sg25273 +S'lithograph' +p211135 +sg25275 +S'1914' +p211136 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a5b.jpg' +p211137 +sg25267 +g27 +sa(dp211138 +g25268 +S'Gambling Room' +p211139 +sg25270 +S'Jean-Louis Forain' +p211140 +sg25273 +S'lithograph' +p211141 +sg25275 +S'1914' +p211142 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a5a.jpg' +p211143 +sg25267 +g27 +sa(dp211144 +g25268 +S'Ambroise Vollard' +p211145 +sg25270 +S'Jean-Louis Forain' +p211146 +sg25273 +S'lithograph' +p211147 +sg25275 +S'c. 1910' +p211148 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a5c.jpg' +p211149 +sg25267 +g27 +sa(dp211150 +g25268 +S'Lawyer Talking to His Client' +p211151 +sg25270 +S'Jean-Louis Forain' +p211152 +sg25273 +S'lithograph' +p211153 +sg25275 +S'1915' +p211154 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a58.jpg' +p211155 +sg25267 +g27 +sa(dp211156 +g25268 +S'Recess of the Hearing' +p211157 +sg25270 +S'Jean-Louis Forain' +p211158 +sg25273 +S'lithograph' +p211159 +sg25275 +S'1914' +p211160 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a59.jpg' +p211161 +sg25267 +g27 +sa(dp211162 +g25268 +S'The Lawyer Abused' +p211163 +sg25270 +S'Jean-Louis Forain' +p211164 +sg25273 +S'lithograph' +p211165 +sg25275 +S'1914' +p211166 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a15.jpg' +p211167 +sg25267 +g27 +sa(dp211168 +g25268 +S'Scene in a Private Room (horizontal plate)' +p211169 +sg25270 +S'Jean-Louis Forain' +p211170 +sg25273 +S'transfer lithograph' +p211171 +sg25275 +S'c. 1905' +p211172 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a18.jpg' +p211173 +sg25267 +g27 +sa(dp211174 +g25268 +S'The Transfiguration' +p211175 +sg25270 +S'Albrecht Altdorfer' +p211176 +sg25273 +S'woodcut' +p211177 +sg25275 +S'c. 1513' +p211178 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a710.jpg' +p211179 +sg25267 +g27 +sa(dp211180 +g25268 +S'Christ Stripped of His Clothes' +p211181 +sg25270 +S'Jean-Louis Forain' +p211182 +sg25273 +S'transfer lithograph' +p211183 +sg25275 +S'1909' +p211184 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f61.jpg' +p211185 +sg25267 +g27 +sa(dp211186 +g25268 +S'Four Sketches of Ambroise Vollard' +p211187 +sg25270 +S'Jean-Louis Forain' +p211188 +sg25273 +S'lithograph' +p211189 +sg25275 +S'c. 1910' +p211190 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f62.jpg' +p211191 +sg25267 +g27 +sa(dp211192 +g25268 +S'Lawyer Talking to His Client' +p211193 +sg25270 +S'Jean-Louis Forain' +p211194 +sg25273 +S'lithograph' +p211195 +sg25275 +S'1915' +p211196 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f5e.jpg' +p211197 +sg25267 +g27 +sa(dp211198 +g25268 +S'The Lawyer Pursued' +p211199 +sg25270 +S'Jean-Louis Forain' +p211200 +sg25273 +S'lithograph' +p211201 +sg25275 +S'1915' +p211202 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a14.jpg' +p211203 +sg25267 +g27 +sa(dp211204 +g25268 +S'Recess of the Hearing' +p211205 +sg25270 +S'Jean-Louis Forain' +p211206 +sg25273 +S'lithograph' +p211207 +sg25275 +S'1914' +p211208 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f5c.jpg' +p211209 +sg25267 +g27 +sa(dp211210 +g25268 +S'Waiter and Customer' +p211211 +sg25270 +S'Jean-Louis Forain' +p211212 +sg25273 +S'brush and black ink over graphite' +p211213 +sg25275 +S'unknown date\n' +p211214 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070e7.jpg' +p211215 +sg25267 +g27 +sa(dp211216 +g25268 +S'Chimney Corner' +p211217 +sg25270 +S'Jean-Louis Forain' +p211218 +sg25273 +S'pen and brown ink with brown wash' +p211219 +sg25275 +S'unknown date\n' +p211220 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007057.jpg' +p211221 +sg25267 +g27 +sa(dp211222 +g25268 +S"On sonne! Si c'est l'Anglais d'hier maman tu t'en iras!" +p211223 +sg25270 +S'Jean-Louis Forain' +p211224 +sg25273 +S'graphite' +p211225 +sg25275 +S'unknown date\n' +p211226 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fcb.jpg' +p211227 +sg25267 +g27 +sa(dp211228 +g25268 +S'Nurse and Child' +p211229 +sg25270 +S'Jean-Louis Forain' +p211230 +sg25273 +S'pen and brown ink' +p211231 +sg25275 +S'unknown date\n' +p211232 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f8f.jpg' +p211233 +sg25267 +g27 +sa(dp211234 +g25268 +S'Benediction a Lourdes' +p211235 +sg25270 +S'Jean-Louis Forain' +p211236 +sg25273 +S'pen and brown ink with brown wash over graphite onlaid paper' +p211237 +sg25275 +S'c. 1912' +p211238 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070b7.jpg' +p211239 +sg25267 +g27 +sa(dp211240 +g25268 +S'Christ Taking Leave of Mary before the Passion' +p211241 +sg25270 +S'Albrecht Altdorfer' +p211242 +sg25273 +S'woodcut' +p211243 +sg25275 +S'c. 1513' +p211244 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a716.jpg' +p211245 +sg25267 +g27 +sa(dp211246 +g25268 +S'Comedie Parisienne' +p211247 +sg25270 +S'Jean-Louis Forain' +p211248 +sg25273 +S'brush and black ink over graphite' +p211249 +sg25275 +S'unknown date\n' +p211250 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007088.jpg' +p211251 +sg25267 +g27 +sa(dp211252 +g25268 +S'Print Connoisseur' +p211253 +sg25270 +S'Jean-Louis Forain' +p211254 +sg25273 +S'brush and brown ink and black chalk with brown wash and white heightening on laid paper' +p211255 +sg25275 +S'unknown date\n' +p211256 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a000713f.jpg' +p211257 +sg25267 +g27 +sa(dp211258 +g25268 +S'Children Looking over the Edge of a Crib' +p211259 +sg25270 +S'Jean-Louis Forain' +p211260 +sg25273 +S'black crayon' +p211261 +sg25275 +S'unknown date\n' +p211262 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006ff9.jpg' +p211263 +sg25267 +g27 +sa(dp211264 +g25268 +S'Le cafe concert des reservistes' +p211265 +sg25270 +S'Jean-Louis Forain' +p211266 +sg25273 +S'watercolor' +p211267 +sg25275 +S'unknown date\n' +p211268 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fa0.jpg' +p211269 +sg25267 +g27 +sa(dp211270 +g25268 +S"Peur de Bourreau! Qu'est-ce que tu attends?..." +p211271 +sg25270 +S'Jean-Louis Forain' +p211272 +sg25273 +S'black crayon' +p211273 +sg25275 +S'unknown date\n' +p211274 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a0007114.jpg' +p211275 +sg25267 +g27 +sa(dp211276 +g25268 +S'Lady and Gentleman in Evening Dress' +p211277 +sg25270 +S'Jean-Louis Forain' +p211278 +sg25273 +S'pen and brown ink' +p211279 +sg25275 +S'unknown date\n' +p211280 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f71.jpg' +p211281 +sg25267 +g27 +sa(dp211282 +g25268 +S'Farniente' +p211283 +sg25270 +S'Jean-Louis Forain' +p211284 +sg25273 +S'watercolor' +p211285 +sg25275 +S'unknown date\n' +p211286 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fe8.jpg' +p211287 +sg25267 +g27 +sa(dp211288 +g25268 +S'Nude on Rocks' +p211289 +sg25270 +S'Jean-Louis Forain' +p211290 +sg25273 +S'brown and gray wash on wove paper' +p211291 +sg25275 +S'unknown date\n' +p211292 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007029.jpg' +p211293 +sg25267 +g27 +sa(dp211294 +g25268 +S'Chauffeur and Procession' +p211295 +sg25270 +S'Jean-Louis Forain' +p211296 +sg25273 +S'black crayon' +p211297 +sg25275 +S'unknown date\n' +p211298 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a000716f.jpg' +p211299 +sg25267 +g27 +sa(dp211300 +g25268 +S'Marshal Petain' +p211301 +sg25270 +S'Jean-Louis Forain' +p211302 +sg25273 +S'pen and black ink and watercolor' +p211303 +sg25275 +S'c. 1914/1919' +p211304 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e58.jpg' +p211305 +sg25267 +g27 +sa(dp211306 +g25268 +S'The Entry into Jerusalem' +p211307 +sg25270 +S'Albrecht Altdorfer' +p211308 +sg25273 +S'woodcut' +p211309 +sg25275 +S'c. 1513' +p211310 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a715.jpg' +p211311 +sg25267 +g27 +sa(dp211312 +g25268 +S'Ludus pro Populo' +p211313 +sg25270 +S'Jean-Louis Forain' +p211314 +sg25273 +S'black crayon' +p211315 +sg25275 +S'unknown date\n' +p211316 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d3f.jpg' +p211317 +sg25267 +g27 +sa(dp211318 +g25268 +S'At an Evening Party' +p211319 +sg25270 +S'Jean-Louis Forain' +p211320 +sg25273 +S'pen and gray ink' +p211321 +sg25275 +S'unknown date\n' +p211322 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e89.jpg' +p211323 +sg25267 +g27 +sa(dp211324 +g25268 +S'To Each His Own' +p211325 +sg25270 +S'Jean-Louis Forain' +p211326 +sg25273 +S'brush and black ink' +p211327 +sg25275 +S'unknown date\n' +p211328 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e28.jpg' +p211329 +sg25267 +g27 +sa(dp211330 +g25268 +S'Sur le canape' +p211331 +sg25270 +S'Jean-Louis Forain' +p211332 +sg25273 +S'brush and black and brown ink on laid paper' +p211333 +sg25275 +S'unknown date\n' +p211334 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ee2.jpg' +p211335 +sg25267 +g27 +sa(dp211336 +g25268 +S'Consolation' +p211337 +sg25270 +S'Jean-Louis Forain' +p211338 +sg25273 +S'brush and black ink and black crayon' +p211339 +sg25275 +S'unknown date\n' +p211340 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f13.jpg' +p211341 +sg25267 +g27 +sa(dp211342 +g25268 +S'Self-Portrait' +p211343 +sg25270 +S'Jean-Louis Forain' +p211344 +sg25273 +S'pen and brown ink and watercolor over graphite' +p211345 +sg25275 +S'unknown date\n' +p211346 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f42.jpg' +p211347 +sg25267 +g27 +sa(dp211348 +g25268 +S'Butler and Maid Resting' +p211349 +sg25270 +S'Jean-Louis Forain' +p211350 +sg25273 +S'black crayon' +p211351 +sg25275 +S'unknown date\n' +p211352 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d9d.jpg' +p211353 +sg25267 +g27 +sa(dp211354 +g25268 +S'In the Village' +p211355 +sg25270 +S'Jean-Louis Forain' +p211356 +sg25273 +S'black crayon' +p211357 +sg25275 +S'unknown date\n' +p211358 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d70.jpg' +p211359 +sg25267 +g27 +sa(dp211360 +g25268 +S'Standing Male Figure' +p211361 +sg25270 +S'Jean-Louis Forain' +p211362 +sg25273 +S'brush and brown-black ink' +p211363 +sg25275 +S'unknown date\n' +p211364 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dcc.jpg' +p211365 +sg25267 +g27 +sa(dp211366 +g25268 +S'Woman and Servant' +p211367 +sg25270 +S'Jean-Louis Forain' +p211368 +sg25273 +S'pen and black ink with brown-gray wash' +p211369 +sg25275 +S'unknown date\n' +p211370 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007016.jpg' +p211371 +sg25267 +g27 +sa(dp211372 +g25268 +S'The Last Supper' +p211373 +sg25270 +S'Albrecht Altdorfer' +p211374 +sg25273 +S'woodcut' +p211375 +sg25275 +S'c. 1513' +p211376 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a747.jpg' +p211377 +sg25267 +g27 +sa(dp211378 +g25268 +S'Avant la fete persane' +p211379 +sg25270 +S'Jean-Louis Forain' +p211380 +sg25273 +S'brush and brown-black ink and black crayon' +p211381 +sg25275 +S'1912' +p211382 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006eb5.jpg' +p211383 +sg25267 +g27 +sa(dp211384 +g25268 +S'At the Club' +p211385 +sg25270 +S'Jean-Louis Forain' +p211386 +sg25273 +S'black crayon' +p211387 +sg25275 +S'unknown date\n' +p211388 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dfa.jpg' +p211389 +sg25267 +g27 +sa(dp211390 +g25268 +S'Politician' +p211391 +sg25270 +S'Jean-Louis Forain' +p211392 +sg25273 +S'red chalk on laid paper' +p211393 +sg25275 +S'unknown date\n' +p211394 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a0007251.jpg' +p211395 +sg25267 +g27 +sa(dp211396 +g25268 +S'Woman Getting Out of Bed' +p211397 +sg25270 +S'Jean-Louis Forain' +p211398 +sg25273 +S'brush and black ink and black and blue crayon' +p211399 +sg25275 +S'unknown date\n' +p211400 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a0007286.jpg' +p211401 +sg25267 +g27 +sa(dp211402 +g25268 +S'Man and Woman' +p211403 +sg25270 +S'Jean-Louis Forain' +p211404 +sg25273 +S'brush and black ink' +p211405 +sg25275 +S'unknown date\n' +p211406 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007046.jpg' +p211407 +sg25267 +g27 +sa(dp211408 +g25268 +S'Two Ladies in a Loge' +p211409 +sg25270 +S'Jean-Louis Forain' +p211410 +sg25273 +S'pen and black ink' +p211411 +sg25275 +S'1886' +p211412 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fba.jpg' +p211413 +sg25267 +g27 +sa(dp211414 +g25268 +S'Elections Municipales' +p211415 +sg25270 +S'Jean-Louis Forain' +p211416 +sg25273 +S'brush and black ink with brown and gray wash' +p211417 +sg25275 +S'c. 1897' +p211418 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a0007258.jpg' +p211419 +sg25267 +g27 +sa(dp211420 +g25268 +S"Si tu n'est pas trop rosse avec la petit femme ..." +p211421 +sg25270 +S'Jean-Louis Forain' +p211422 +sg25273 +S'brush and black ink and black and blue chalk with watercolor and brown wash' +p211423 +sg25275 +S'unknown date\n' +p211424 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ce4.jpg' +p211425 +sg25267 +g27 +sa(dp211426 +g25268 +S'Nude' +p211427 +sg25270 +S'Jean-Louis Forain' +p211428 +sg25273 +S'red, black, and white chalk on tan paper' +p211429 +sg25275 +S'unknown date\n' +p211430 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071ee.jpg' +p211431 +sg25267 +g27 +sa(dp211432 +g25268 +S'Conversation' +p211433 +sg25270 +S'Jean-Louis Forain' +p211434 +sg25273 +S'brush and black ink with gray wash on bristol board' +p211435 +sg25275 +S'unknown date\n' +p211436 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072ce.jpg' +p211437 +sg25267 +g27 +sa(dp211438 +g25268 +S'Christ on the Mount of Olives' +p211439 +sg25270 +S'Albrecht Altdorfer' +p211440 +sg25273 +S'woodcut' +p211441 +sg25275 +S'c. 1513' +p211442 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a746.jpg' +p211443 +sg25267 +g27 +sa(dp211444 +g25268 +S'The Bouquet' +p211445 +sg25270 +S'Jean-Louis Forain' +p211446 +sg25273 +S'black and blue crayon with brush and black ink' +p211447 +sg25275 +S'unknown date\n' +p211448 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a000717d.jpg' +p211449 +sg25267 +g27 +sa(dp211450 +g25268 +S'Robed Figure Leaning against a Chair' +p211451 +sg25270 +S'Jean-Louis Forain' +p211452 +sg25273 +S'black crayon' +p211453 +sg25275 +S'unknown date\n' +p211454 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a0007290.jpg' +p211455 +sg25267 +g27 +sa(dp211456 +g25268 +S"Chez les satisfaits - La concierge m'a dit ..." +p211457 +sg25270 +S'Jean-Louis Forain' +p211458 +sg25273 +S'brush and black ink over black and blue crayon, touched with yellow crayon' +p211459 +sg25275 +S'unknown date\n' +p211460 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a0007226.jpg' +p211461 +sg25267 +g27 +sa(dp211462 +g25268 +S'Woman on a Beach with Sketch of Standing Figure in Background' +p211463 +sg25270 +S'Jean-Louis Forain' +p211464 +sg25273 +S'brown wash and graphite' +p211465 +sg25275 +S'unknown date\n' +p211466 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071b6.jpg' +p211467 +sg25267 +g27 +sa(dp211468 +g25268 +S'Robed Figure behind a Pulpit; Head of a Man' +p211469 +sg25270 +S'Jean-Louis Forain' +p211470 +sg25273 +S'brush and black ink' +p211471 +sg25275 +S'unknown date\n' +p211472 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072c6.jpg' +p211473 +sg25267 +g27 +sa(dp211474 +g25268 +S'Woman with Bustle' +p211475 +sg25270 +S'Jean-Louis Forain' +p211476 +sg25273 +S'pen and brown ink' +p211477 +sg25275 +S'unknown date\n' +p211478 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007076.jpg' +p211479 +sg25267 +g27 +sa(dp211480 +g25268 +S'Morning' +p211481 +sg25270 +S'Jean-Louis Forain' +p211482 +sg25273 +S'red-brown crayon' +p211483 +sg25275 +S'unknown date\n' +p211484 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a0007298.jpg' +p211485 +sg25267 +g27 +sa(dp211486 +g25268 +S'Docteur, que dit-il?' +p211487 +sg25270 +S'Jean-Louis Forain' +p211488 +sg25273 +S'brush and black ink with watercolor' +p211489 +sg25275 +S'unknown date\n' +p211490 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d13.jpg' +p211491 +sg25267 +g27 +sa(dp211492 +g25268 +S'Cab, Sir?' +p211493 +sg25270 +S'Jean-Louis Forain' +p211494 +sg25273 +S'pen and black ink' +p211495 +sg25275 +S'unknown date\n' +p211496 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070a7.jpg' +p211497 +sg25267 +g27 +sa(dp211498 +g25268 +S'Two Sketches' +p211499 +sg25270 +S'Jean-Louis Forain' +p211500 +sg25273 +S'pen and black ink' +p211501 +sg25275 +S'unknown date\n' +p211502 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a0007260.jpg' +p211503 +sg25267 +g27 +sa(dp211504 +g25268 +S'The Betrayal of Christ' +p211505 +sg25270 +S'Albrecht Altdorfer' +p211506 +sg25273 +S'woodcut' +p211507 +sg25275 +S'c. 1513' +p211508 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a743.jpg' +p211509 +sg25267 +g27 +sa(dp211510 +g25268 +S'A Duellist' +p211511 +sg25270 +S'Jean-Louis Forain' +p211512 +sg25273 +S'watercolor' +p211513 +sg25275 +S'unknown date\n' +p211514 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d09.jpg' +p211515 +sg25267 +g27 +sa(dp211516 +g25268 +S'Bien tout de meme, Rostchild vient de souscrire ...' +p211517 +sg25270 +S'Jean-Louis Forain' +p211518 +sg25273 +S'brush and black ink with black and blue crayon andwatercolor' +p211519 +sg25275 +S'unknown date\n' +p211520 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000703c.jpg' +p211521 +sg25267 +g27 +sa(dp211522 +g25268 +S'Le Peril Anarchiste' +p211523 +sg25270 +S'Jean-Louis Forain' +p211524 +sg25273 +S'pen and black ink with watercolor on wove paper' +p211525 +sg25275 +S'c. 1897' +p211526 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000700a.jpg' +p211527 +sg25267 +g27 +sa(dp211528 +g25268 +S"Les v'la qui montent en fiacre avec Monsieur!" +p211529 +sg25270 +S'Jean-Louis Forain' +p211530 +sg25273 +S'brush and black ink with blue and brown crayon andwatercolor' +p211531 +sg25275 +S'unknown date\n' +p211532 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a0007125.jpg' +p211533 +sg25267 +g27 +sa(dp211534 +g25268 +S'Chez les Satisfaits' +p211535 +sg25270 +S'Jean-Louis Forain' +p211536 +sg25273 +S'brush and black ink and graphite touched with orange crayon' +p211537 +sg25275 +S'unknown date\n' +p211538 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000709b.jpg' +p211539 +sg25267 +g27 +sa(dp211540 +g25268 +S'Comme on fait son lit on se couche' +p211541 +sg25270 +S'Jean-Louis Forain' +p211542 +sg25273 +S'brush and black ink with red chalk on wove paper' +p211543 +sg25275 +S'unknown date\n' +p211544 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a0007150.jpg' +p211545 +sg25267 +g27 +sa(dp211546 +g25268 +S'Project de Voyage' +p211547 +sg25270 +S'Jean-Louis Forain' +p211548 +sg25273 +S'brush and black ink with watercolor on wove paper' +p211549 +sg25275 +S'c. 1897' +p211550 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070fa.jpg' +p211551 +sg25267 +g27 +sa(dp211552 +g25268 +S'Ici... Pressez vous poete!' +p211553 +sg25270 +S'Jean-Louis Forain' +p211554 +sg25273 +S'brush and black ink with blue, orange, and black crayon on wove paper' +p211555 +sg25275 +S'unknown date\n' +p211556 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a0007185.jpg' +p211557 +sg25267 +g27 +sa(dp211558 +g25268 +S'Le retour du bal' +p211559 +sg25270 +S'Jean-Louis Forain' +p211560 +sg25273 +S'pen and brown-black ink on wove paper' +p211561 +sg25275 +S'unknown date\n' +p211562 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070d5.jpg' +p211563 +sg25267 +g27 +sa(dp211564 +g25268 +S'On the Park Bench' +p211565 +sg25270 +S'Jean-Louis Forain' +p211566 +sg25273 +S'pen and brown-black ink on wove paper' +p211567 +sg25275 +S'unknown date\n' +p211568 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dea.jpg' +p211569 +sg25267 +g27 +sa(dp211570 +g25268 +S'Christ before Caiaphas' +p211571 +sg25270 +S'Albrecht Altdorfer' +p211572 +sg25273 +S'woodcut' +p211573 +sg25275 +S'c. 1513' +p211574 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a73b.jpg' +p211575 +sg25267 +g27 +sa(dp211576 +g25268 +S'Promenade' +p211577 +sg25270 +S'Jean-Louis Forain' +p211578 +sg25273 +S'pen and brown-black ink on wove paper' +p211579 +sg25275 +S'unknown date\n' +p211580 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e79.jpg' +p211581 +sg25267 +g27 +sa(dp211582 +g25268 +S'Woman Bathing' +p211583 +sg25270 +S'Jean-Louis Forain' +p211584 +sg25273 +S'pen and brown ink on wove paper' +p211585 +sg25275 +S'unknown date\n' +p211586 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ea4.jpg' +p211587 +sg25267 +g27 +sa(dp211588 +g25268 +S'Woman and Child in the Park' +p211589 +sg25270 +S'Jean-Louis Forain' +p211590 +sg25273 +S'pen and brown-black ink on wove paper' +p211591 +sg25275 +S'unknown date\n' +p211592 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e47.jpg' +p211593 +sg25267 +g27 +sa(dp211594 +g25268 +S'The Footman' +p211595 +sg25270 +S'Jean-Louis Forain' +p211596 +sg25273 +S'pen and brown-black ink on wove paper' +p211597 +sg25275 +S'unknown date\n' +p211598 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ed0.jpg' +p211599 +sg25267 +g27 +sa(dp211600 +g25268 +S'Three Sketches: Dancer and Two Women' +p211601 +sg25270 +S'Jean-Louis Forain' +p211602 +sg25273 +S'pen and brown ink on wove paper' +p211603 +sg25275 +S'unknown date\n' +p211604 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f01.jpg' +p211605 +sg25267 +g27 +sa(dp211606 +g25268 +S'Three Sketches of Women and Children' +p211607 +sg25270 +S'Jean-Louis Forain' +p211608 +sg25273 +S'pen and brown ink on wove paper' +p211609 +sg25275 +S'unknown date\n' +p211610 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e17.jpg' +p211611 +sg25267 +g27 +sa(dp211612 +g25268 +S'Dancer with a Mirror' +p211613 +sg25270 +S'Jean-Louis Forain' +p211614 +sg25273 +S'red chalk' +p211615 +sg25275 +S'unknown date\n' +p211616 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fde.jpg' +p211617 +sg25267 +g27 +sa(dp211618 +g25268 +S'At the Piano (Studio Party)' +p211619 +sg25270 +S'Jean-Louis Forain' +p211620 +sg25273 +S'brush and black ink with black crayon on wove paper' +p211621 +sg25275 +S'unknown date\n' +p211622 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006ddf.jpg' +p211623 +sg25267 +g27 +sa(dp211624 +g25268 +S'Behind the Scenes' +p211625 +sg25270 +S'Jean-Louis Forain' +p211626 +sg25273 +S'watercolor' +p211627 +sg25275 +S'unknown date\n' +p211628 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f83.jpg' +p211629 +sg25267 +g27 +sa(dp211630 +g25268 +S'In the Reading Room' +p211631 +sg25270 +S'Jean-Louis Forain' +p211632 +sg25273 +S'brush and black ink with yellow, brown, and black crayon on paperboard' +p211633 +sg25275 +S'unknown date\n' +p211634 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e3d.jpg' +p211635 +sg25267 +g27 +sa(dp211636 +g25268 +S'Christ before Pilate' +p211637 +sg25270 +S'Albrecht Altdorfer' +p211638 +sg25273 +S'woodcut' +p211639 +sg25275 +S'c. 1513' +p211640 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a73c.jpg' +p211641 +sg25267 +g27 +sa(dp211642 +g25268 +S'Two Figures' +p211643 +sg25270 +S'Jean-Louis Forain' +p211644 +sg25273 +S'black crayon on wove paper' +p211645 +sg25275 +S'unknown date\n' +p211646 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fb1.jpg' +p211647 +sg25267 +g27 +sa(dp211648 +g25268 +S'Le chene et le roseau' +p211649 +sg25270 +S'Jean-Louis Forain' +p211650 +sg25273 +S'brush and brown ink with brown wash' +p211651 +sg25275 +S'unknown date\n' +p211652 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f54.jpg' +p211653 +sg25267 +g27 +sa(dp211654 +g25268 +S'In School' +p211655 +sg25270 +S'Jean-Louis Forain' +p211656 +sg25273 +S'brush and black ink on wove paper' +p211657 +sg25275 +S'unknown date\n' +p211658 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ef5.jpg' +p211659 +sg25267 +g27 +sa(dp211660 +g25268 +S'After the Bath' +p211661 +sg25270 +S'Jean-Louis Forain' +p211662 +sg25273 +S'watercolor and black crayon on wove paper' +p211663 +sg25275 +S'unknown date\n' +p211664 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f25.jpg' +p211665 +sg25267 +g27 +sa(dp211666 +g25268 +S'Conversation at the Salon' +p211667 +sg25270 +S'Jean-Louis Forain' +p211668 +sg25273 +S'black chalk on wove paper' +p211669 +sg25275 +S'unknown date\n' +p211670 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e0b.jpg' +p211671 +sg25267 +g27 +sa(dp211672 +g25268 +S'Nude' +p211673 +sg25270 +S'Jean-Louis Forain' +p211674 +sg25273 +S'red, black, and white chalk on blue laid paper' +p211675 +sg25275 +S'unknown date\n' +p211676 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e9b.jpg' +p211677 +sg25267 +g27 +sa(dp211678 +g25268 +S'Gendarme and Two Lawyers' +p211679 +sg25270 +S'Jean-Louis Forain' +p211680 +sg25273 +S'brush and black ink with black crayon on wove paper' +p211681 +sg25275 +S'unknown date\n' +p211682 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e6d.jpg' +p211683 +sg25267 +g27 +sa(dp211684 +g25268 +S'The Paddock' +p211685 +sg25270 +S'Jean-Louis Forain' +p211686 +sg25273 +S'pen and black ink' +p211687 +sg25275 +S'unknown date\n' +p211688 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ec5.jpg' +p211689 +sg25267 +g27 +sa(dp211690 +g25268 +S'Court Scene' +p211691 +sg25270 +S'Jean-Louis Forain' +p211692 +sg25273 +S'black crayon on wove paper' +p211693 +sg25275 +S'unknown date\n' +p211694 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071f7.jpg' +p211695 +sg25267 +g27 +sa(dp211696 +g25268 +S'Proposition' +p211697 +sg25270 +S'Jean-Louis Forain' +p211698 +sg25273 +S'brush and black ink on wove paper' +p211699 +sg25275 +S'unknown date\n' +p211700 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000706b.jpg' +p211701 +sg25267 +g27 +sa(dp211702 +g25268 +S'Christ Scourged' +p211703 +sg25270 +S'Albrecht Altdorfer' +p211704 +sg25273 +S'woodcut' +p211705 +sg25275 +S'c. 1513' +p211706 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a73d.jpg' +p211707 +sg25267 +g27 +sa(dp211708 +g25268 +S'Woman Leaving Court' +p211709 +sg25270 +S'Jean-Louis Forain' +p211710 +sg25273 +S'black crayon with gray and black wash on wove paper' +p211711 +sg25275 +S'unknown date\n' +p211712 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d53.jpg' +p211713 +sg25267 +g27 +sa(dp211714 +g25268 +S'In the Studio' +p211715 +sg25270 +S'Jean-Louis Forain' +p211716 +sg25273 +S'graphite and pen and black ink on wove paper' +p211717 +sg25275 +S'unknown date\n' +p211718 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a0007274.jpg' +p211719 +sg25267 +g27 +sa(dp211720 +g25268 +S'Waiting' +p211721 +sg25270 +S'Jean-Louis Forain' +p211722 +sg25273 +S'black crayon with gray wash on wove paper' +p211723 +sg25275 +S'unknown date\n' +p211724 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071d1.jpg' +p211725 +sg25267 +g27 +sa(dp211726 +g25268 +S'Woman Weeping' +p211727 +sg25270 +S'Jean-Louis Forain' +p211728 +sg25273 +S'black crayon' +p211729 +sg25275 +S'unknown date\n' +p211730 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a000720b.jpg' +p211731 +sg25267 +g27 +sa(dp211732 +g25268 +S'Ou donc met-il ses cigares?' +p211733 +sg25270 +S'Jean-Louis Forain' +p211734 +sg25273 +S'black crayon on wove paper' +p211735 +sg25275 +S'unknown date\n' +p211736 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072e1.jpg' +p211737 +sg25267 +g27 +sa(dp211738 +g25268 +S'Before the Repast at Emmaus' +p211739 +sg25270 +S'Jean-Louis Forain' +p211740 +sg25273 +S'brush and gray ink with brown and gray wash on wove paper' +p211741 +sg25275 +S'c. 1910' +p211742 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a0007240.jpg' +p211743 +sg25267 +g27 +sa(dp211744 +g25268 +S'Sheet of Sketches [recto and verso]' +p211745 +sg25270 +S'Jean-Louis Forain' +p211746 +sg25273 +S'red chalk on wove paper' +p211747 +sg25275 +S'unknown date\n' +p211748 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006db1.jpg' +p211749 +sg25267 +g27 +sa(dp211750 +g25268 +S"Gentleman's Toilette" +p211751 +sg25270 +S'Jean-Louis Forain' +p211752 +sg25273 +S'black crayon on wove paper' +p211753 +sg25275 +S'unknown date\n' +p211754 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d80.jpg' +p211755 +sg25267 +g27 +sa(dp211756 +g25268 +S'The Connoisseur and the Artist' +p211757 +sg25270 +S'Jean-Louis Forain' +p211758 +sg25273 +S'watercolor on laid paper' +p211759 +sg25275 +S'unknown date\n' +p211760 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cf7.jpg' +p211761 +sg25267 +g27 +sa(dp211762 +g25268 +S'Man and Woman Conversing' +p211763 +sg25270 +S'Jean-Louis Forain' +p211764 +sg25273 +S'brush with black and gray ink on wove paper' +p211765 +sg25275 +S'unknown date\n' +p211766 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a000719a.jpg' +p211767 +sg25267 +g27 +sa(dp211768 +g25268 +S'Edward VI as a Child' +p211769 +sg25270 +S'Hans Holbein the Younger' +p211770 +sg25273 +S'oil on panel' +p211771 +sg25275 +S'probably 1538' +p211772 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a00005b2.jpg' +p211773 +sg25267 +S"After the Reformation had brought social and political upheaval to Germany, creating\nan unfavorable climate for artists, Holbein moved to England in 1526. He first painted\nfor Sir Thomas More's circle of high servants of the crown and then became painter\nto the King himself, Henry VIII. As court painter Holbein produced portraits, festival\nsets and other decorations intended to exalt the King and the Tudor dynasty, and\nalso designs for jewelry and metalwork.\n In his portraits Holbein endowed his sitters with a powerful physical presence which\nwas increasingly held in check by the psychological reserve and elegance of surface\nappropriate to a court setting. This portrait of Henry VIII's only legitimate son\nand much desired male heir exemplifies these qualities. Edward was born on 12 October\n1537 to Henry's third wife, Jane Seymour, and this portrait appears to be the one\ngiven to the King on the New Year of 1539. The form of the portrait and the long\nLatin verse provided by the poet Richard Morison flatter the royal father and emphasize\nthe succession.\n Holbein depicted the baby prince as erect and self-possessed, one hand holding a\nscepter and the other open in a gesture of blessing. His frontal pose before a parapet\nis a type reserved for royalty or for images of holy figures.\n " +p211774 +sa(dp211775 +g25268 +S'Christ Crowned with Thorns' +p211776 +sg25270 +S'Albrecht Altdorfer' +p211777 +sg25273 +S'woodcut' +p211778 +sg25275 +S'c. 1513' +p211779 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a73e.jpg' +p211780 +sg25267 +g27 +sa(dp211781 +g25268 +S'Ballet Dancer' +p211782 +sg25270 +S'Jean-Louis Forain' +p211783 +sg25273 +S'charcoal and white chalk on blue laid paper' +p211784 +sg25275 +S'unknown date\n' +p211785 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d24.jpg' +p211786 +sg25267 +g27 +sa(dp211787 +g25268 +S'After the Riot' +p211788 +sg25270 +S'Jean-Louis Forain' +p211789 +sg25273 +S'brush with black and gray ink and black crayon on laid paper' +p211790 +sg25275 +S'unknown date\n' +p211791 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072ac.jpg' +p211792 +sg25267 +g27 +sa(dp211793 +g25268 +S'Interior' +p211794 +sg25270 +S'Jean-Louis Forain' +p211795 +sg25273 +S'black crayon with black and gray wash touched withwhite on wove paper' +p211796 +sg25275 +S'unknown date\n' +p211797 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a000722f.jpg' +p211798 +sg25267 +g27 +sa(dp211799 +g25268 +S'Confidences a un vieil ami' +p211800 +sg25270 +S'Jean-Louis Forain' +p211801 +sg25273 +S'black crayon on wove paper' +p211802 +sg25275 +S'unknown date\n' +p211803 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071be.jpg' +p211804 +sg25267 +g27 +sa(dp211805 +g25268 +S'Les Mamans' +p211806 +sg25270 +S'Jean-Louis Forain' +p211807 +sg25273 +S'black crayon with black wash on wove paper' +p211808 +sg25275 +S'unknown date\n' +p211809 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070c8.jpg' +p211810 +sg25267 +g27 +sa(dp211811 +g25268 +S'La Dreyfusine' +p211812 +sg25270 +S'Jean-Louis Forain' +p211813 +sg25273 +S'black crayon and brush with brown and gray ink on wove paper' +p211814 +sg25275 +S'unknown date\n' +p211815 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a0007164.jpg' +p211816 +sg25267 +g27 +sa(dp211817 +g25268 +S"La fin d'un marriage" +p211818 +sg25270 +S'Jean-Louis Forain' +p211819 +sg25273 +S'brush and black ink and black crayon on wove paper' +p211820 +sg25275 +S'unknown date\n' +p211821 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f67.jpg' +p211822 +sg25267 +g27 +sa(dp211823 +g25268 +S'Artist and His Model' +p211824 +sg25270 +S'Jean-Louis Forain' +p211825 +sg25273 +S'black crayon on wove paper' +p211826 +sg25275 +S'unknown date\n' +p211827 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fef.jpg' +p211828 +sg25267 +g27 +sa(dp211829 +g25268 +S'Sheet of Sketches [recto and verso]' +p211830 +sg25270 +S'Jean-Louis Forain' +p211831 +sg25273 +S'black crayon on wove paper' +p211832 +sg25275 +S'unknown date\n' +p211833 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070ae.jpg' +p211834 +sg25267 +g27 +sa(dp211835 +g25268 +S'La France Juive' +p211836 +sg25270 +S'Jean-Louis Forain' +p211837 +sg25273 +S'brush and black ink on wove paper' +p211838 +sg25275 +S'unknown date\n' +p211839 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f96.jpg' +p211840 +sg25267 +g27 +sa(dp211841 +g25268 +S'Christ Shown to the People' +p211842 +sg25270 +S'Albrecht Altdorfer' +p211843 +sg25273 +S'woodcut' +p211844 +sg25275 +S'c. 1513' +p211845 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a750.jpg' +p211846 +sg25267 +g27 +sa(dp211847 +g25268 +S'Conversation' +p211848 +sg25270 +S'Jean-Louis Forain' +p211849 +sg25273 +S'brush and black ink and black crayon on wove paper' +p211850 +sg25275 +S'unknown date\n' +p211851 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fc1.jpg' +p211852 +sg25267 +g27 +sa(dp211853 +g25268 +S'The Adulteress' +p211854 +sg25270 +S'Jean-Louis Forain' +p211855 +sg25273 +S'pen and brown ink over graphite on green-brown paper' +p211856 +sg25275 +S'c. 1910' +p211857 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000704e.jpg' +p211858 +sg25267 +g27 +sa(dp211859 +g25268 +S'The Connoisseur and the Artist' +p211860 +sg25270 +S'Jean-Louis Forain' +p211861 +sg25273 +S'brush and black ink with watercolor over black crayon on wove paper' +p211862 +sg25275 +S'unknown date\n' +p211863 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a0007136.jpg' +p211864 +sg25267 +g27 +sa(dp211865 +g25268 +S'Two Men in an Attic' +p211866 +sg25270 +S'Jean-Louis Forain' +p211867 +sg25273 +S'brush and black ink and black crayon on brown paper' +p211868 +sg25275 +S'unknown date\n' +p211869 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000701e.jpg' +p211870 +sg25267 +g27 +sa(dp211871 +g25268 +S'Waiter and Customer' +p211872 +sg25270 +S'Jean-Louis Forain' +p211873 +sg25273 +S'pen and black ink and black crayon on wove paper' +p211874 +sg25275 +S'unknown date\n' +p211875 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070dd.jpg' +p211876 +sg25267 +g27 +sa(dp211877 +g25268 +S'Conversation in the Wings' +p211878 +sg25270 +S'Jean-Louis Forain' +p211879 +sg25273 +S'brown and black chalk heightened with white chalk on laid paper' +p211880 +sg25275 +S'unknown date\n' +p211881 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000707e.jpg' +p211882 +sg25267 +g27 +sa(dp211883 +g25268 +S'Recite de conquetes' +p211884 +sg25270 +S'Jean-Louis Forain' +p211885 +sg25273 +S'watercolor over graphite on wove paper' +p211886 +sg25275 +S'unknown date\n' +p211887 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000732a.jpg' +p211888 +sg25267 +g27 +sa(dp211889 +g25268 +S'Figure' +p211890 +sg25270 +S'Jean-Louis Forain' +p211891 +sg25273 +S'black, red, and white chalk on blue laid paper' +p211892 +sg25275 +S'unknown date\n' +p211893 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a000710c.jpg' +p211894 +sg25267 +g27 +sa(dp211895 +g25268 +S'Study of a Seated Girl' +p211896 +sg25270 +S'Jean-Louis Forain' +p211897 +sg25273 +S'black chalk and watercolor on wove paper' +p211898 +sg25275 +S'unknown date\n' +p211899 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071ad.jpg' +p211900 +sg25267 +g27 +sa(dp211901 +g25268 +S'Men of Justice' +p211902 +sg25270 +S'Jean-Louis Forain' +p211903 +sg25273 +S'brush and brown ink with brown wash on light blue laid paper' +p211904 +sg25275 +S'1921' +p211905 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071e6.jpg' +p211906 +sg25267 +g27 +sa(dp211907 +g25268 +S'Pilate Washing His Hands' +p211908 +sg25270 +S'Albrecht Altdorfer' +p211909 +sg25273 +S'woodcut' +p211910 +sg25275 +S'c. 1513' +p211911 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a74e.jpg' +p211912 +sg25267 +g27 +sa(dp211913 +g25268 +S'Head of a Lawyer' +p211914 +sg25270 +S'Jean-Louis Forain' +p211915 +sg25273 +S'black crayon on laid paper' +p211916 +sg25275 +S'unknown date\n' +p211917 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e7e.jpg' +p211918 +sg25267 +g27 +sa(dp211919 +g25268 +S'Defenseur et Accuse' +p211920 +sg25270 +S'Jean-Louis Forain' +p211921 +sg25273 +S'black and brown crayon? over graphite on brown paper' +p211922 +sg25275 +S'c. 1908' +p211923 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d93.jpg' +p211924 +sg25267 +g27 +sa(dp211925 +g25268 +S"Qu'est-ce que tu veux?" +p211926 +sg25270 +S'Jean-Louis Forain' +p211927 +sg25273 +S'brush and black ink with watercolor' +p211928 +sg25275 +S'unknown date\n' +p211929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006df1.jpg' +p211930 +sg25267 +g27 +sa(dp211931 +g25268 +S'Seated Woman, Chin on Hands' +p211932 +sg25270 +S'Jean-Louis Forain' +p211933 +sg25273 +S'black crayon on wove paper' +p211934 +sg25275 +S'unknown date\n' +p211935 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d66.jpg' +p211936 +sg25267 +g27 +sa(dp211937 +g25268 +S'The Judges' +p211938 +sg25270 +S'Jean-Louis Forain' +p211939 +sg25273 +S'black and brown chalk on wove paper' +p211940 +sg25275 +S'unknown date\n' +p211941 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d37.jpg' +p211942 +sg25267 +g27 +sa(dp211943 +g25268 +S'Invective' +p211944 +sg25270 +S'Jean-Louis Forain' +p211945 +sg25273 +S'brush and black ink over black crayon on wove paper' +p211946 +sg25275 +S'unknown date\n' +p211947 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a0007178.jpg' +p211948 +sg25267 +g27 +sa(dp211949 +g25268 +S"L'Addition" +p211950 +sg25270 +S'Jean-Louis Forain' +p211951 +sg25273 +S'brush and black ink and black crayon on wove paper' +p211952 +sg25275 +S'unknown date\n' +p211953 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007031.jpg' +p211954 +sg25267 +g27 +sa(dp211955 +g25268 +S'Le monde des affaires' +p211956 +sg25270 +S'Jean-Louis Forain' +p211957 +sg25273 +S'black, yellow, and orange crayon' +p211958 +sg25275 +S'unknown date\n' +p211959 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dc4.jpg' +p211960 +sg25267 +g27 +sa(dp211961 +g25268 +S'The Supper at Emmaus' +p211962 +sg25270 +S'Jean-Louis Forain' +p211963 +sg25273 +S'watercolor and black (chalk?) on laid paper' +p211964 +sg25275 +S'possibly c. 1912/1913' +p211965 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00025/a000252f.jpg' +p211966 +sg25267 +g27 +sa(dp211967 +g25268 +S'Court Scene' +p211968 +sg25270 +S'Jean-Louis Forain' +p211969 +sg25273 +S'watercolor and black (chalk?)' +p211970 +sg25275 +S'1927' +p211971 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007325.jpg' +p211972 +sg25267 +g27 +sa(dp211973 +g25268 +S'Christ Bearing the Cross' +p211974 +sg25270 +S'Albrecht Altdorfer' +p211975 +sg25273 +S'woodcut' +p211976 +sg25275 +S'c. 1513' +p211977 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a753.jpg' +p211978 +sg25267 +g27 +sa(dp211979 +g25268 +S'Elles etaient a lacets' +p211980 +sg25270 +S'Jean-Louis Forain' +p211981 +sg25273 +S'watercolor and black crayon on wove paper' +p211982 +sg25275 +S'c. 1914/1919' +p211983 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007326.jpg' +p211984 +sg25267 +g27 +sa(dp211985 +g25268 +S'Ballet Dancer' +p211986 +sg25270 +S'Jean-Louis Forain' +p211987 +sg25273 +S'colored chalks on blue laid paper faded brown' +p211988 +sg25275 +S'unknown date\n' +p211989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007327.jpg' +p211990 +sg25267 +g27 +sa(dp211991 +g25268 +S'Celui qui tira sur Clemenceau' +p211992 +sg25270 +S'Jean-Louis Forain' +p211993 +sg25273 +S'brush and black ink with black crayon on laid paper' +p211994 +sg25275 +S'in or after 1919' +p211995 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007329.jpg' +p211996 +sg25267 +g27 +sa(dp211997 +g25268 +S'After Douai' +p211998 +sg25270 +S'Jean-Louis Forain' +p211999 +sg25273 +S'brush and black ink and black (crayon?) with watercolor on laid paper' +p212000 +sg25275 +S'probably 1918' +p212001 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007328.jpg' +p212002 +sg25267 +g27 +sa(dp212003 +g25268 +S'Toward Peace' +p212004 +sg25270 +S'Jean-Louis Forain' +p212005 +sg25273 +S'brush and brown ink and (graphite?) on wove paper' +p212006 +sg25275 +S'c. 1914/1919' +p212007 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000732e.jpg' +p212008 +sg25267 +g27 +sa(dp212009 +g25268 +S"C'est trop dangereux pres de votre ambulance" +p212010 +sg25270 +S'Jean-Louis Forain' +p212011 +sg25273 +S'brush and black ink and black crayon with watercolor on wove paper' +p212012 +sg25275 +S'c. 1914/1919' +p212013 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007330.jpg' +p212014 +sg25267 +g27 +sa(dp212015 +g25268 +S'The End - Verdun' +p212016 +sg25270 +S'Jean-Louis Forain' +p212017 +sg25273 +S'drypoint' +p212018 +sg25275 +S'c. 1916' +p212019 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f52.jpg' +p212020 +sg25267 +g27 +sa(dp212021 +g25268 +S"L'union sous le drapeau" +p212022 +sg25270 +S'Jean-Louis Forain' +p212023 +sg25273 +S'brush and black ink with black crayon and white (gouache?) on wove paper' +p212024 +sg25275 +S'c. 1914/1919' +p212025 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000732c.jpg' +p212026 +sg25267 +g27 +sa(dp212027 +g25268 +S"C'etait notre maison" +p212028 +sg25270 +S'Jean-Louis Forain' +p212029 +sg25273 +S'black crayon with watercolor and white (gouache?) on wove paper' +p212030 +sg25275 +S'c. 1914/1919' +p212031 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007331.jpg' +p212032 +sg25267 +g27 +sa(dp212033 +g25268 +S'Debout, les Morts!' +p212034 +sg25270 +S'Jean-Louis Forain' +p212035 +sg25273 +S'watercolor on (tracing paper?)' +p212036 +sg25275 +S'1917' +p212037 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000732d.jpg' +p212038 +sg25267 +g27 +sa(dp212039 +g25268 +S'Christ Nailed to the Cross' +p212040 +sg25270 +S'Albrecht Altdorfer' +p212041 +sg25273 +S'woodcut' +p212042 +sg25275 +S'c. 1513' +p212043 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a752.jpg' +p212044 +sg25267 +g27 +sa(dp212045 +g25268 +S'The Train for Berne' +p212046 +sg25270 +S'Jean-Louis Forain' +p212047 +sg25273 +S'brush with brown and black ink and black crayon onlaid paper' +p212048 +sg25275 +S'c. 1914/1919' +p212049 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006eeb.jpg' +p212050 +sg25267 +g27 +sa(dp212051 +g25268 +S'Le replis boche' +p212052 +sg25270 +S'Jean-Louis Forain' +p212053 +sg25273 +S'brush with black, brown, and gray ink and black crayon on wove paper' +p212054 +sg25275 +S'c. 1914/1919' +p212055 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000732f.jpg' +p212056 +sg25267 +g27 +sa(dp212057 +g25268 +S"L'Englise de leurs peres" +p212058 +sg25270 +S'Jean-Louis Forain' +p212059 +sg25273 +S'brush and black ink and black crayon on wove paper' +p212060 +sg25275 +S'c. 1914/1919' +p212061 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000732b.jpg' +p212062 +sg25267 +g27 +sa(dp212063 +g25268 +S'Le demobilise' +p212064 +sg25270 +S'Jean-Louis Forain' +p212065 +sg25273 +S'brush and black ink and black crayon on laid paper' +p212066 +sg25275 +S'c. 1914/1919' +p212067 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007335.jpg' +p212068 +sg25267 +g27 +sa(dp212069 +g25268 +S'En esclavage dans le Nord' +p212070 +sg25270 +S'Jean-Louis Forain' +p212071 +sg25273 +S'black crayon and watercolor on wove paper' +p212072 +sg25275 +S'c. 1914/1919' +p212073 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e4e.jpg' +p212074 +sg25267 +g27 +sa(dp212075 +g25268 +S'German Raid on a Village' +p212076 +sg25270 +S'Jean-Louis Forain' +p212077 +sg25273 +S'brush and black ink and black crayon with watercolor on wove paper' +p212078 +sg25275 +S'c. 1914/1919' +p212079 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007333.jpg' +p212080 +sg25267 +g27 +sa(dp212081 +g25268 +S"La Guerre sous-Marine. L'ecole des Neutres" +p212082 +sg25270 +S'Jean-Louis Forain' +p212083 +sg25273 +S'brush and black ink and black crayon with watercolor on wove paper' +p212084 +sg25275 +S'c. 1914/1919' +p212085 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007334.jpg' +p212086 +sg25267 +g27 +sa(dp212087 +g25268 +S'Dead German Soldier' +p212088 +sg25270 +S'Jean-Louis Forain' +p212089 +sg25273 +S'brush and black ink and black crayon with watercolor on laid paper' +p212090 +sg25275 +S'c. 1914/1919' +p212091 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007332.jpg' +p212092 +sg25267 +g27 +sa(dp212093 +g25268 +S'Customs Inspection' +p212094 +sg25270 +S'Jean-Louis Forain' +p212095 +sg25273 +S'brush and brown ink and graphite on laid paper' +p212096 +sg25275 +S'unknown date\n' +p212097 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007337.jpg' +p212098 +sg25267 +g27 +sa(dp212099 +g25268 +S'Slavery in the North' +p212100 +sg25270 +S'Jean-Louis Forain' +p212101 +sg25273 +S'pen and brown ink with brown wash over red chalk on wove paper' +p212102 +sg25275 +S'c. 1914/1919' +p212103 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ebb.jpg' +p212104 +sg25267 +g27 +sa(dp212105 +g25268 +S'Raising of the Cross' +p212106 +sg25270 +S'Albrecht Altdorfer' +p212107 +sg25273 +S'woodcut' +p212108 +sg25275 +S'c. 1513' +p212109 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a756.jpg' +p212110 +sg25267 +g27 +sa(dp212111 +g25268 +S'The Funeral of Berteaux' +p212112 +sg25270 +S'Jean-Louis Forain' +p212113 +sg25273 +S'brush and black ink and black crayon on wove paper' +p212114 +sg25275 +S'unknown date\n' +p212115 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007338.jpg' +p212116 +sg25267 +g27 +sa(dp212117 +g25268 +S'Nurse and Child' +p212118 +sg25270 +S'Jean-Louis Forain' +p212119 +sg25273 +S'brush and black ink on laid paper' +p212120 +sg25275 +S'unknown date\n' +p212121 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007336.jpg' +p212122 +sg25267 +g27 +sa(dp212123 +g25268 +S'Bolo pacha' +p212124 +sg25270 +S'Jean-Louis Forain' +p212125 +sg25273 +S'brush and black ink and black crayon corrected with white gouache on wove paper' +p212126 +sg25275 +S'c. 1914/1919' +p212127 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000733d.jpg' +p212128 +sg25267 +g27 +sa(dp212129 +g25268 +S'The Chefs' +p212130 +sg25270 +S'Jean-Louis Forain' +p212131 +sg25273 +S'brush and black ink and black crayon on laid paper' +p212132 +sg25275 +S'c. 1914/1919' +p212133 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000733c.jpg' +p212134 +sg25267 +g27 +sa(dp212135 +g25268 +S'Mother and Child Visited by Soldier in Hospital' +p212136 +sg25270 +S'Jean-Louis Forain' +p212137 +sg25273 +S'brush and black ink and black crayon on laid paper' +p212138 +sg25275 +S'c. 1914/1919' +p212139 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f78.jpg' +p212140 +sg25267 +g27 +sa(dp212141 +g25268 +S'The End - Verdun' +p212142 +sg25270 +S'Jean-Louis Forain' +p212143 +sg25273 +S'drypoint' +p212144 +sg25275 +S'c. 1916' +p212145 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f53.jpg' +p212146 +sg25267 +g27 +sa(dp212147 +g25268 +S'The Accused' +p212148 +sg25270 +S'Jean-Louis Forain' +p212149 +sg25273 +S'charcoal heightened with white chalk on gray-brownpaper' +p212150 +sg25275 +S'unknown date\n' +p212151 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000733e.jpg' +p212152 +sg25267 +g27 +sa(dp212153 +g25268 +S'Les Allemandes sont partis' +p212154 +sg25270 +S'Jean-Louis Forain' +p212155 +sg25273 +S'black crayon and watercolor on laid paper' +p212156 +sg25275 +S'c. 1914/1919' +p212157 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006eac.jpg' +p212158 +sg25267 +g27 +sa(dp212159 +g25268 +S'Hiding the "louis"' +p212160 +sg25270 +S'Jean-Louis Forain' +p212161 +sg25273 +S'brush and black ink and black crayon on laid paper' +p212162 +sg25275 +S'c. 1914/1919' +p212163 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007339.jpg' +p212164 +sg25267 +g27 +sa(dp212165 +g25268 +S'Sur la ligne de feu' +p212166 +sg25270 +S'Jean-Louis Forain' +p212167 +sg25273 +S'black crayon with brush and black ink on wove paper' +p212168 +sg25275 +S'c. 1914/1919' +p212169 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f08.jpg' +p212170 +sg25267 +g27 +sa(dp212171 +g25268 +S'Christ on the Cross' +p212172 +sg25270 +S'Albrecht Altdorfer' +p212173 +sg25273 +S'woodcut' +p212174 +sg25275 +S'c. 1513' +p212175 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a755.jpg' +p212176 +sg25267 +g27 +sa(dp212177 +g25268 +S'La Borne, Verdun' +p212178 +sg25270 +S'Jean-Louis Forain' +p212179 +sg25273 +S'black crayon and brush with black and gray ink over graphite on wove paper' +p212180 +sg25275 +S'c. 1916' +p212181 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ed7.jpg' +p212182 +sg25267 +g27 +sa(dp212183 +g25268 +S'Poilu Acknowledging German Soldier' +p212184 +sg25270 +S'Jean-Louis Forain' +p212185 +sg25273 +S'black crayon on laid paper' +p212186 +sg25275 +S'probably 1918' +p212187 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000733b.jpg' +p212188 +sg25267 +g27 +sa(dp212189 +g25268 +S'Le Baiser du Drapeau' +p212190 +sg25270 +S'Jean-Louis Forain' +p212191 +sg25273 +S'black crayon on laid paper' +p212192 +sg25275 +S'1918' +p212193 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000733a.jpg' +p212194 +sg25267 +g27 +sa(dp212195 +g25268 +S'Refugees' +p212196 +sg25270 +S'Jean-Louis Forain' +p212197 +sg25273 +S'brush and black ink and blue crayon on wove paper' +p212198 +sg25275 +S'c. 1914/1919' +p212199 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007000.jpg' +p212200 +sg25267 +g27 +sa(dp212201 +g25268 +S'Poilu and German Prisoners' +p212202 +sg25270 +S'Jean-Louis Forain' +p212203 +sg25273 +S'black crayon on laid paper' +p212204 +sg25275 +S'c. 1914/1919' +p212205 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007341.jpg' +p212206 +sg25267 +g27 +sa(dp212207 +g25268 +S'Discharged from Military Service' +p212208 +sg25270 +S'Jean-Louis Forain' +p212209 +sg25273 +S'brush and black ink and black crayon on laid paper' +p212210 +sg25275 +S'c. 1914/1919' +p212211 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fa7.jpg' +p212212 +sg25267 +g27 +sa(dp212213 +g25268 +S'Reims 9bre 1918' +p212214 +sg25270 +S'Jean-Louis Forain' +p212215 +sg25273 +S'brush and brown ink with brown wash over black crayon on wove paper' +p212216 +sg25275 +S'probably 1918' +p212217 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f49.jpg' +p212218 +sg25267 +g27 +sa(dp212219 +g25268 +S'Sur le Rhin' +p212220 +sg25270 +S'Jean-Louis Forain' +p212221 +sg25273 +S'brush and black ink and black crayon on laid paper' +p212222 +sg25275 +S'c. 1914/1919' +p212223 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007340.jpg' +p212224 +sg25267 +g27 +sa(dp212225 +g25268 +S'Au front de Vincennes. Bolo pacha' +p212226 +sg25270 +S'Jean-Louis Forain' +p212227 +sg25273 +S'brush and black ink and black crayon on wove paper' +p212228 +sg25275 +S'c. 1914/1919' +p212229 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f1a.jpg' +p212230 +sg25267 +g27 +sa(dp212231 +g25268 +S'Soldiers Preparing a Meal' +p212232 +sg25270 +S'Jean-Louis Forain' +p212233 +sg25273 +S'brush and black ink and black crayon on laid paper' +p212234 +sg25275 +S'c. 1914/1919' +p212235 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000733f.jpg' +p212236 +sg25267 +g27 +sa(dp212237 +g25268 +S'Christ Taken Down from the Cross' +p212238 +sg25270 +S'Albrecht Altdorfer' +p212239 +sg25273 +S'woodcut' +p212240 +sg25275 +S'c. 1513' +p212241 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a754.jpg' +p212242 +sg25267 +g27 +sa(dp212243 +g25268 +S'Refugees' +p212244 +sg25270 +S'Jean-Louis Forain' +p212245 +sg25273 +S'black crayon on wove paper' +p212246 +sg25275 +S'c. 1914/1919' +p212247 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fd3.jpg' +p212248 +sg25267 +g27 +sa(dp212249 +g25268 +S'Le demobilise' +p212250 +sg25270 +S'Jean-Louis Forain' +p212251 +sg25273 +S'brush and black ink and black crayon on wove paper' +p212252 +sg25275 +S'c. 1914/1919' +p212253 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070f0.jpg' +p212254 +sg25267 +g27 +sa(dp212255 +g25268 +S'Poilu and Nurse' +p212256 +sg25270 +S'Jean-Louis Forain' +p212257 +sg25273 +S'brush and brown ink on wove paper' +p212258 +sg25275 +S'c. 1914/1919' +p212259 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007342.jpg' +p212260 +sg25267 +g27 +sa(dp212261 +g25268 +S'The Taking of Fort Douaumont' +p212262 +sg25270 +S'Jean-Louis Forain' +p212263 +sg25273 +S'brush and black ink with black and color crayons on wove paper' +p212264 +sg25275 +S'probably 1916' +p212265 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007345.jpg' +p212266 +sg25267 +g27 +sa(dp212267 +g25268 +S'Two Soldiers Looking at a Placard' +p212268 +sg25270 +S'Jean-Louis Forain' +p212269 +sg25273 +S'black crayon on laid paper' +p212270 +sg25275 +S'probably 1918' +p212271 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007343.jpg' +p212272 +sg25267 +g27 +sa(dp212273 +g25268 +S'German Advance' +p212274 +sg25270 +S'Jean-Louis Forain' +p212275 +sg25273 +S'brush with brown and black ink and black crayon onwove paper' +p212276 +sg25275 +S'c. 1914/1919' +p212277 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007346.jpg' +p212278 +sg25267 +g27 +sa(dp212279 +g25268 +S'The National Holiday' +p212280 +sg25270 +S'Jean-Louis Forain' +p212281 +sg25273 +S'brush and gray-brown and black ink over black crayon on wove paper' +p212282 +sg25275 +S'1918' +p212283 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007347.jpg' +p212284 +sg25267 +g27 +sa(dp212285 +g25268 +S"Sur le Rhin. -maintenant c'est l'arriere." +p212286 +sg25270 +S'Jean-Louis Forain' +p212287 +sg25273 +S'black crayon and (graphite?) with black and gray wash on laid paper' +p212288 +sg25275 +S'probably 1918' +p212289 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007344.jpg' +p212290 +sg25267 +g27 +sa(dp212291 +g25268 +S'Two Men in Top Hats' +p212292 +sg25270 +S'Jean-Louis Forain' +p212293 +sg25273 +S'brush and black ink on wove paper' +p212294 +sg25275 +S'unknown date\n' +p212295 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070bf.jpg' +p212296 +sg25267 +g27 +sa(dp212297 +g25268 +S'Kammerade. Porquoi cette froideur?' +p212298 +sg25270 +S'Jean-Louis Forain' +p212299 +sg25273 +S'black crayon on wove paper' +p212300 +sg25275 +S'c. 1914/1919' +p212301 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007349.jpg' +p212302 +sg25267 +g27 +sa(dp212303 +g25268 +S'The Lamentation beneath the Cross' +p212304 +sg25270 +S'Albrecht Altdorfer' +p212305 +sg25273 +S'woodcut' +p212306 +sg25275 +S'c. 1513' +p212307 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a724.jpg' +p212308 +sg25267 +g27 +sa(dp212309 +g25268 +S"Le pas de l'oie - dans le sang" +p212310 +sg25270 +S'Jean-Louis Forain' +p212311 +sg25273 +S'black crayon and brush and brown ink on wove paper' +p212312 +sg25275 +S'c. 1914/1919' +p212313 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007348.jpg' +p212314 +sg25267 +g27 +sa(dp212315 +g25268 +S"Contre les Apaches. l'ecole anglaise" +p212316 +sg25270 +S'Jean-Louis Forain' +p212317 +sg25273 +S'black crayon and brush and black ink corrected with white gouache' +p212318 +sg25275 +S'unknown date\n' +p212319 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000734a.jpg' +p212320 +sg25267 +g27 +sa(dp212321 +g25268 +S"A Versailles. L'envoye des boches" +p212322 +sg25270 +S'Jean-Louis Forain' +p212323 +sg25273 +S'black crayon and brush and black ink over graphiteon wove paper' +p212324 +sg25275 +S'c. 1914/1919' +p212325 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000734b.jpg' +p212326 +sg25267 +g27 +sa(dp212327 +g25268 +S'The Hats of the Allies [recto]' +p212328 +sg25270 +S'Jean-Louis Forain' +p212329 +sg25273 +S'black crayon and brush and brown ink on laid paper' +p212330 +sg25275 +S'c. 1914/1919' +p212331 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000734c.jpg' +p212332 +sg25267 +g27 +sa(dp212333 +g25268 +S'Hiding the "louis" [verso]' +p212334 +sg25270 +S'Jean-Louis Forain' +p212335 +sg25273 +S'black crayon and brush and black ink on laid paper' +p212336 +sg25275 +S'c. 1914/1919' +p212337 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000734d.jpg' +p212338 +sg25267 +g27 +sa(dp212339 +g25268 +S'Man Pointing to an Island' +p212340 +sg25270 +S'Jean-Louis Forain' +p212341 +sg25273 +S'brush with black and gray-brown ink on wove paper' +p212342 +sg25275 +S'unknown date\n' +p212343 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007061.jpg' +p212344 +sg25267 +g27 +sa(dp212345 +g25268 +S'Ceux de la priemiere heure. "Sire! ou en somme-nous de la guerre fraiche et joyeuse!"' +p212346 +sg25270 +S'Jean-Louis Forain' +p212347 +sg25273 +S'black crayon on wove paper' +p212348 +sg25275 +S'c. 1914/1919' +p212349 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000734e.jpg' +p212350 +sg25267 +g27 +sa(dp212351 +g25268 +S'Les notables' +p212352 +sg25270 +S'Jean-Louis Forain' +p212353 +sg25273 +S'black crayon corrected with white gouache on wove paper' +p212354 +sg25275 +S'c. 1914/1919' +p212355 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a0007158.jpg' +p212356 +sg25267 +g27 +sa(dp212357 +g25268 +S"Sur le Front. -C'est sa theorie? -Non, c'est son breviaire." +p212358 +sg25270 +S'Jean-Louis Forain' +p212359 +sg25273 +S'black crayon and brush and black ink corrected with white gouache on wove paper' +p212360 +sg25275 +S'c. 1914/1919' +p212361 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000734f.jpg' +p212362 +sg25267 +g27 +sa(dp212363 +g25268 +S'Au Piree. -Le depart des boches.' +p212364 +sg25270 +S'Jean-Louis Forain' +p212365 +sg25273 +S'black crayon and brush and black ink corrected with white gouache on wove paper' +p212366 +sg25275 +S'c. 1914/1919' +p212367 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007352.jpg' +p212368 +sg25267 +g27 +sa(dp212369 +g25268 +S'The Entombment' +p212370 +sg25270 +S'Albrecht Altdorfer' +p212371 +sg25273 +S'woodcut' +p212372 +sg25275 +S'c. 1513' +p212373 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a723.jpg' +p212374 +sg25267 +g27 +sa(dp212375 +g25268 +S'Quand le boche se retire...' +p212376 +sg25270 +S'Jean-Louis Forain' +p212377 +sg25273 +S'black crayon and brush and black ink on wove paper' +p212378 +sg25275 +S'probably 1917' +p212379 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007351.jpg' +p212380 +sg25267 +g27 +sa(dp212381 +g25268 +S'En 1871' +p212382 +sg25270 +S'Jean-Louis Forain' +p212383 +sg25273 +S'black crayon and brush and black ink on wove paper' +p212384 +sg25275 +S'c. 1914/1919' +p212385 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007350.jpg' +p212386 +sg25267 +g27 +sa(dp212387 +g25268 +S'Au fil de la marne' +p212388 +sg25270 +S'Jean-Louis Forain' +p212389 +sg25273 +S'red chalk, black crayon, and graphite on wove paper' +p212390 +sg25275 +S'1918' +p212391 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a0007267.jpg' +p212392 +sg25267 +g27 +sa(dp212393 +g25268 +S'Au Front de Vincennes. Bolo pacha' +p212394 +sg25270 +S'Jean-Louis Forain' +p212395 +sg25273 +S'black crayon and brush and black ink on wove paper' +p212396 +sg25275 +S'c. 1914/1919' +p212397 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a0007235.jpg' +p212398 +sg25267 +g27 +sa(dp212399 +g25268 +S'Two Soldiers' +p212400 +sg25270 +S'Jean-Louis Forain' +p212401 +sg25273 +S'black crayon and brush and brown ink on wove paper' +p212402 +sg25275 +S'c. 1914/1919' +p212403 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007357.jpg' +p212404 +sg25267 +g27 +sa(dp212405 +g25268 +S'The Hat of Marshall Foch' +p212406 +sg25270 +S'Jean-Louis Forain' +p212407 +sg25273 +S'brush and black-brown ink on wove paper' +p212408 +sg25275 +S'c. 1914/1919' +p212409 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072d7.jpg' +p212410 +sg25267 +g27 +sa(dp212411 +g25268 +S'Two French Soldiers near a Notice Board' +p212412 +sg25270 +S'Jean-Louis Forain' +p212413 +sg25273 +S'brush and black ink with brown wash on wove paper' +p212414 +sg25275 +S'c. 1914/1919' +p212415 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007353.jpg' +p212416 +sg25267 +g27 +sa(dp212417 +g25268 +S'Nach Paris. -moi aussi, chai des enfants' +p212418 +sg25270 +S'Jean-Louis Forain' +p212419 +sg25273 +S'brush and black ink over black crayon on wove paper' +p212420 +sg25275 +S'c. 1914/1919' +p212421 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007356.jpg' +p212422 +sg25267 +g27 +sa(dp212423 +g25268 +S'En somme ca n\'est que du "materiel humain."' +p212424 +sg25270 +S'Jean-Louis Forain' +p212425 +sg25273 +S'brush and black ink and black crayon on wove paper' +p212426 +sg25275 +S'c. 1914/1919' +p212427 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007354.jpg' +p212428 +sg25267 +g27 +sa(dp212429 +g25268 +S'Noyon' +p212430 +sg25270 +S'Jean-Louis Forain' +p212431 +sg25273 +S'brush and black ink and black crayon on laid paper' +p212432 +sg25275 +S'c. 1914/1919' +p212433 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007355.jpg' +p212434 +sg25267 +g27 +sa(dp212435 +g25268 +S'Sir Brian Tuke' +p212436 +sg25270 +S'Hans Holbein the Younger' +p212437 +sg25273 +S'oil on panel' +p212438 +sg25275 +S'c. 1527/1528 or c. 1532/1534' +p212439 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004cb.jpg' +p212440 +sg25267 +S"The political strength of Henry VIII's regime lay in his ability to choose advisors who were both wise and learned. One of these men was Sir Brian Tuke. As Master of the Posts, he organized and established England's postal service. In 1528 Sir Brian was appointed treasurer and secretary of the royal household, a position he held until his death in 1545. He was also admired as an eloquent speaker and literary figure who authored a preface to an edition of Chaucer.\n The portrait, which shows Tuke at the age of 57, exemplifies the qualities most praised in Holbein's work: precise observation of detail and impartial, accurate portrayal of the face. Yet the image is also tinged with gentle sorrow. On the table beneath Tuke's left hand is a folded paper bearing a quotation from the Book of Job (10:20) which begins, "Are not my days few?" The gravity of the sentiment is echoed in Tuke's countenance; his faint smile is pained and his eyes, fixed but not focused, seem melancholy.\n " +p212441 +sa(dp212442 +g25268 +S'Christ Descending into Hell' +p212443 +sg25270 +S'Albrecht Altdorfer' +p212444 +sg25273 +S'woodcut' +p212445 +sg25275 +S'c. 1513' +p212446 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a722.jpg' +p212447 +sg25267 +g27 +sa(dp212448 +g25268 +S"Bredouilles. l'Equipage d'un Zeppelin" +p212449 +sg25270 +S'Jean-Louis Forain' +p212450 +sg25273 +S'brush and black ink and black crayon on wove paper' +p212451 +sg25275 +S'probably 1915' +p212452 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071c6.jpg' +p212453 +sg25267 +g27 +sa(dp212454 +g25268 +S'Ceux de la priemiere heure. "Sire! ou en somme-nous de "la guerre fraiche et joyeuse"?..."' +p212455 +sg25270 +S'Jean-Louis Forain' +p212456 +sg25273 +S'black crayon on wove paper' +p212457 +sg25275 +S'c. 1914/1919' +p212458 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072a1.jpg' +p212459 +sg25267 +g27 +sa(dp212460 +g25268 +S'At the Conference' +p212461 +sg25270 +S'Jean-Louis Forain' +p212462 +sg25273 +S'black crayon on laid paper' +p212463 +sg25275 +S'c. 1919' +p212464 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007358.jpg' +p212465 +sg25267 +g27 +sa(dp212466 +g25268 +S'Looking for the Enemy' +p212467 +sg25270 +S'Jean-Louis Forain' +p212468 +sg25273 +S'brush and black ink on wove paper' +p212469 +sg25275 +S'c. 1914/1919' +p212470 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070ff.jpg' +p212471 +sg25267 +g27 +sa(dp212472 +g25268 +S'Fetters' +p212473 +sg25270 +S'Jean-Louis Forain' +p212474 +sg25273 +S'black, yellow, and brown crayon on wove paper' +p212475 +sg25275 +S'1919' +p212476 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007359.jpg' +p212477 +sg25267 +g27 +sa(dp212478 +g25268 +S'Discharged from Military Service' +p212479 +sg25270 +S'Jean-Louis Forain' +p212480 +sg25273 +S'brush and black-brown ink and black crayon on laid paper' +p212481 +sg25275 +S'c. 1914/1919' +p212482 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a000712c.jpg' +p212483 +sg25267 +g27 +sa(dp212484 +g25268 +S'German Soldiers and French Child' +p212485 +sg25270 +S'Jean-Louis Forain' +p212486 +sg25273 +S'black crayon with watercolor on wove paper' +p212487 +sg25275 +S'c. 1914/1919' +p212488 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000735a.jpg' +p212489 +sg25267 +g27 +sa(dp212490 +g25268 +S'Woman and Two Children with German Soldiers' +p212491 +sg25270 +S'Jean-Louis Forain' +p212492 +sg25273 +S'brush and black ink on laid paper' +p212493 +sg25275 +S'c. 1914/1919' +p212494 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a000718d.jpg' +p212495 +sg25267 +g27 +sa(dp212496 +g25268 +S'-Am Rhien? -Ya.' +p212497 +sg25270 +S'Jean-Louis Forain' +p212498 +sg25273 +S'brush and black ink and black crayon on laid paper' +p212499 +sg25275 +S'c. 1918' +p212500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000735f.jpg' +p212501 +sg25267 +g27 +sa(dp212502 +g25268 +S'Fetters' +p212503 +sg25270 +S'Jean-Louis Forain' +p212504 +sg25273 +S'brush and black ink and black crayon on wove paper' +p212505 +sg25275 +S'probably 1919' +p212506 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007361.jpg' +p212507 +sg25267 +g27 +sa(dp212508 +g25268 +S'The Resurrection' +p212509 +sg25270 +S'Albrecht Altdorfer' +p212510 +sg25273 +S'woodcut' +p212511 +sg25275 +S'c. 1513' +p212512 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a721.jpg' +p212513 +sg25267 +g27 +sa(dp212514 +g25268 +S'The Return' +p212515 +sg25270 +S'Jean-Louis Forain' +p212516 +sg25273 +S'black crayon and brush and black ink on laid paper' +p212517 +sg25275 +S'c. 1914/1919' +p212518 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071ff.jpg' +p212519 +sg25267 +g27 +sa(dp212520 +g25268 +S'Au front de Champagne - Les dernieres prieres' +p212521 +sg25270 +S'Jean-Louis Forain' +p212522 +sg25273 +S'black crayon and brush and black ink on wove paper' +p212523 +sg25275 +S'c. 1914/1919' +p212524 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000735e.jpg' +p212525 +sg25267 +g27 +sa(dp212526 +g25268 +S'Choisissez vos chambres' +p212527 +sg25270 +S'Jean-Louis Forain' +p212528 +sg25273 +S'black crayon and brush with black and gray ink on wove paper' +p212529 +sg25275 +S'c. 1914/1919' +p212530 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000735b.jpg' +p212531 +sg25267 +g27 +sa(dp212532 +g25268 +S'Le depart pour Versailles' +p212533 +sg25270 +S'Jean-Louis Forain' +p212534 +sg25273 +S'brush and brown ink over (graphite?) on laid paper' +p212535 +sg25275 +S'c. 1919' +p212536 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007360.jpg' +p212537 +sg25267 +g27 +sa(dp212538 +g25268 +S'Rassurez vous; je suis gauche.' +p212539 +sg25270 +S'Jean-Louis Forain' +p212540 +sg25273 +S'black crayon and brush and black ink on wove paper' +p212541 +sg25275 +S'c. 1914/1919' +p212542 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000735d.jpg' +p212543 +sg25267 +g27 +sa(dp212544 +g25268 +S'L\'attaque d\'une "place forte" anglaise' +p212545 +sg25270 +S'Jean-Louis Forain' +p212546 +sg25273 +S'brush and black ink and black crayon on wove paper' +p212547 +sg25275 +S'probably 1917' +p212548 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a000735c.jpg' +p212549 +sg25267 +g27 +sa(dp212550 +g25268 +S'French Soldier Addressing Germania' +p212551 +sg25270 +S'Jean-Louis Forain' +p212552 +sg25273 +S'brush and brown ink and black crayon on laid paper' +p212553 +sg25275 +S'c. 1914/1919' +p212554 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f5a.jpg' +p212555 +sg25267 +g27 +sa(dp212556 +g25268 +S'German Advance' +p212557 +sg25270 +S'Jean-Louis Forain' +p212558 +sg25273 +S'brush and brown ink and blue and black crayon on wove paper' +p212559 +sg25275 +S'c. 1914/1919' +p212560 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007041.jpg' +p212561 +sg25267 +g27 +sa(dp212562 +g25268 +S'During the Armistice' +p212563 +sg25270 +S'Jean-Louis Forain' +p212564 +sg25273 +S'black crayon and brush and black ink on laid paper' +p212565 +sg25275 +S'c. 1914/1919' +p212566 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007071.jpg' +p212567 +sg25267 +g27 +sa(dp212568 +g25268 +S'-Qu\'est-ce vous voulez? -Les "louis" de 1871' +p212569 +sg25270 +S'Jean-Louis Forain' +p212570 +sg25273 +S'brush and black ink and black crayon on laid paper' +p212571 +sg25275 +S'c. 1914/1919' +p212572 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007362.jpg' +p212573 +sg25267 +g27 +sa(dp212574 +g25268 +S'Christ Appearing to the Magdalene' +p212575 +sg25270 +S'Albrecht Altdorfer' +p212576 +sg25273 +S'woodcut' +p212577 +sg25275 +S'c. 1513' +p212578 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a720.jpg' +p212579 +sg25267 +g27 +sa(dp212580 +g25268 +S'Poilu Acknowledging German Soldier' +p212581 +sg25270 +S'Jean-Louis Forain' +p212582 +sg25273 +S'black crayon on laid paper' +p212583 +sg25275 +S'probably 1918' +p212584 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f8a.jpg' +p212585 +sg25267 +g27 +sa(dp212586 +g25268 +S"L'heure des gothas" +p212587 +sg25270 +S'Jean-Louis Forain' +p212588 +sg25273 +S'black crayon and brush and black ink corrected with white gouache on wove paper' +p212589 +sg25275 +S'c. 1914/1919' +p212590 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070d0.jpg' +p212591 +sg25267 +g27 +sa(dp212592 +g25268 +S'Grace!' +p212593 +sg25270 +S'Jean-Louis Forain' +p212594 +sg25273 +S'brush and brown ink and black crayon on laid paper' +p212595 +sg25275 +S'c. 1914/1919' +p212596 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007363.jpg' +p212597 +sg25267 +g27 +sa(dp212598 +g25268 +S'News in the Trenches' +p212599 +sg25270 +S'Jean-Louis Forain' +p212600 +sg25273 +S'black crayon and brush and black ink on wove paper' +p212601 +sg25275 +S'c. 1914/1919' +p212602 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000703a.jpg' +p212603 +sg25267 +g27 +sa(dp212604 +g25268 +S'Versailles juillet. La Germania signe...' +p212605 +sg25270 +S'Jean-Louis Forain' +p212606 +sg25273 +S'black crayon and brown wash on wove paper' +p212607 +sg25275 +S'probably 1919' +p212608 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007099.jpg' +p212609 +sg25267 +g27 +sa(dp212610 +g25268 +S'Ceux de la premiere heure. "Sire! ou en somme-nous de "la guerre fraiche et joyeuse"? ..."' +p212611 +sg25270 +S'Jean-Louis Forain' +p212612 +sg25273 +S'black crayon on wove paper' +p212613 +sg25275 +S'c. 1914/1919' +p212614 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fb5.jpg' +p212615 +sg25267 +g27 +sa(dp212616 +g25268 +S'A Versailles juillet 1919' +p212617 +sg25270 +S'Jean-Louis Forain' +p212618 +sg25273 +S'brush and black ink and black crayon on wove paper' +p212619 +sg25275 +S'probably 1919' +p212620 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070c6.jpg' +p212621 +sg25267 +g27 +sa(dp212622 +g25268 +S'Prussian Soldier and Civilians' +p212623 +sg25270 +S'Jean-Louis Forain' +p212624 +sg25273 +S'black crayon and brush and black ink on laid paper' +p212625 +sg25275 +S'c. 1919' +p212626 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007069.jpg' +p212627 +sg25267 +g27 +sa(dp212628 +g25268 +S'After Douai' +p212629 +sg25270 +S'Jean-Louis Forain' +p212630 +sg25273 +S'brush with brown and black ink and black crayon onlaid paper' +p212631 +sg25275 +S'probably 1918' +p212632 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007011.jpg' +p212633 +sg25267 +g27 +sa(dp212634 +g25268 +S'Lost Illusions' +p212635 +sg25270 +S'Jean-Louis Forain' +p212636 +sg25273 +S'black crayon and brush and gray ink on wove paper' +p212637 +sg25275 +S'probably 1918' +p212638 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070a3.jpg' +p212639 +sg25267 +g27 +sa(dp212640 +g25268 +S'The Ascension' +p212641 +sg25270 +S'Albrecht Altdorfer' +p212642 +sg25273 +S'woodcut' +p212643 +sg25275 +S'c. 1513' +p212644 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a71f.jpg' +p212645 +sg25267 +g27 +sa(dp212646 +g25268 +S'After Douai' +p212647 +sg25270 +S'Jean-Louis Forain' +p212648 +sg25273 +S'brush and black ink on laid paper' +p212649 +sg25275 +S'probably 1918' +p212650 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fe3.jpg' +p212651 +sg25267 +g27 +sa(dp212652 +g25268 +S'The Departure for Versailles' +p212653 +sg25270 +S'Jean-Louis Forain' +p212654 +sg25273 +S'brush and brown ink and graphite on laid paper' +p212655 +sg25275 +S'c. 1919' +p212656 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006efc.jpg' +p212657 +sg25267 +g27 +sa(dp212658 +g25268 +S'Le retour du permissionnaire. -Tu Tombes a pie!' +p212659 +sg25270 +S'Jean-Louis Forain' +p212660 +sg25273 +S'black and orange crayon and brush and black ink onwove paper' +p212661 +sg25275 +S'c. 1914/1919' +p212662 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fdc.jpg' +p212663 +sg25267 +g27 +sa(dp212664 +g25268 +S'Si ils avaient vaincu' +p212665 +sg25270 +S'Jean-Louis Forain' +p212666 +sg25273 +S'brush and black ink on laid paper' +p212667 +sg25275 +S'c. 1919' +p212668 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006faf.jpg' +p212669 +sg25267 +g27 +sa(dp212670 +g25268 +S'Along the Marne' +p212671 +sg25270 +S'Jean-Louis Forain' +p212672 +sg25273 +S'black crayon and graphite touched with red and yellow crayon on wove paper' +p212673 +sg25275 +S'probably 1918' +p212674 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a0007008.jpg' +p212675 +sg25267 +g27 +sa(dp212676 +g25268 +S'Germania before the Judges' +p212677 +sg25270 +S'Jean-Louis Forain' +p212678 +sg25273 +S'black crayon and brush and black ink on laid paper' +p212679 +sg25275 +S'c. 1914/1919' +p212680 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d59.jpg' +p212681 +sg25267 +g27 +sa(dp212682 +g25268 +S'The Empire Destroys, The Republic Pays' +p212683 +sg25270 +S'Jean-Louis Forain' +p212684 +sg25273 +S'black crayon and brush and black ink on laid paper' +p212685 +sg25275 +S'probably 1918' +p212686 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d87.jpg' +p212687 +sg25267 +g27 +sa(dp212688 +g25268 +S'Toward Peace' +p212689 +sg25270 +S'Jean-Louis Forain' +p212690 +sg25273 +S'black crayon and brush with black and brown ink onwove paper' +p212691 +sg25275 +S'c. 1914/1919' +p212692 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f81.jpg' +p212693 +sg25267 +g27 +sa(dp212694 +g25268 +S"C'est la, que j'ai fini le cure" +p212695 +sg25270 +S'Jean-Louis Forain' +p212696 +sg25273 +S'pen and brown ink with brown wash over black crayon on wove paper' +p212697 +sg25275 +S'c. 1914/1919' +p212698 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f52.jpg' +p212699 +sg25267 +g27 +sa(dp212700 +g25268 +S'In the Trenches' +p212701 +sg25270 +S'Jean-Louis Forain' +p212702 +sg25273 +S'black crayon with gray wash on wove paper' +p212703 +sg25275 +S'c. 1914/1919' +p212704 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ef3.jpg' +p212705 +sg25267 +g27 +sa(dp212706 +g25268 +S'The Death of the Virgin' +p212707 +sg25270 +S'Albrecht Altdorfer' +p212708 +sg25273 +S'woodcut' +p212709 +sg25275 +S'c. 1513' +p212710 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a71e.jpg' +p212711 +sg25267 +g27 +sa(dp212712 +g25268 +S'Poilu and Tommy Conversing' +p212713 +sg25270 +S'Jean-Louis Forain' +p212714 +sg25273 +S'brush and black ink with watercolor over (graphite?) on laid paper' +p212715 +sg25275 +S'c. 1914/1919' +p212716 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d2b.jpg' +p212717 +sg25267 +g27 +sa(dp212718 +g25268 +S'Hospital Scene' +p212719 +sg25270 +S'Jean-Louis Forain' +p212720 +sg25273 +S'brush and black ink on wove paper' +p212721 +sg25275 +S'c. 1914/1919' +p212722 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f23.jpg' +p212723 +sg25267 +g27 +sa(dp212724 +g25268 +S'7me 1914' +p212725 +sg25270 +S'Jean-Louis Forain' +p212726 +sg25273 +S'brush and black ink and black crayon on wove paper' +p212727 +sg25275 +S'c. 1914/1919' +p212728 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ec4.jpg' +p212729 +sg25267 +g27 +sa(dp212730 +g25268 +S'The Story Teller' +p212731 +sg25270 +S'Jean-Louis Forain' +p212732 +sg25273 +S'brush and black ink and black crayon corrected with white gouache on wove paper' +p212733 +sg25275 +S'unknown date\n' +p212734 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006de7.jpg' +p212735 +sg25267 +g27 +sa(dp212736 +g25268 +S'Two Soldiers in a Trench' +p212737 +sg25270 +S'Jean-Louis Forain' +p212738 +sg25273 +S'black crayon and brush and black ink on wove paper' +p212739 +sg25275 +S'c. 1914/1919' +p212740 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e9a.jpg' +p212741 +sg25267 +g27 +sa(dp212742 +g25268 +S"-Un farman? -non, c'est un boche." +p212743 +sg25270 +S'Jean-Louis Forain' +p212744 +sg25273 +S'black crayon and brush and black ink on laid paper' +p212745 +sg25275 +S'c. 1914/1919' +p212746 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ea1.jpg' +p212747 +sg25267 +g27 +sa(dp212748 +g25268 +S'Toward Justice' +p212749 +sg25270 +S'Jean-Louis Forain' +p212750 +sg25273 +S'black crayon on laid paper' +p212751 +sg25275 +S'c. 1914/1919' +p212752 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e43.jpg' +p212753 +sg25267 +g27 +sa(dp212754 +g25268 +S'Lost Illusions' +p212755 +sg25270 +S'Jean-Louis Forain' +p212756 +sg25273 +S'black crayon on wove paper' +p212757 +sg25275 +S'probably 1918' +p212758 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e3b.jpg' +p212759 +sg25267 +g27 +sa(dp212760 +g25268 +S'The Economic Withdrawal' +p212761 +sg25270 +S'Jean-Louis Forain' +p212762 +sg25273 +S'black crayon and brush and black ink on wove paper' +p212763 +sg25275 +S'c. 1914/1919' +p212764 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006db8.jpg' +p212765 +sg25267 +g27 +sa(dp212766 +g25268 +S'The People Deliberate' +p212767 +sg25270 +S'Jean-Louis Forain' +p212768 +sg25273 +S'black crayon and brush and black ink on wove paper' +p212769 +sg25275 +S'unknown date\n' +p212770 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e74.jpg' +p212771 +sg25267 +g27 +sa(dp212772 +g25268 +S'The Last Judgment' +p212773 +sg25270 +S'Albrecht Altdorfer' +p212774 +sg25273 +S'woodcut' +p212775 +sg25275 +S'c. 1513' +p212776 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a71d.jpg' +p212777 +sg25267 +g27 +sa(dp212778 +g25268 +S'Toward Peace' +p212779 +sg25270 +S'Jean-Louis Forain' +p212780 +sg25273 +S'brush with black and brown ink and black crayon onwove paper' +p212781 +sg25275 +S'c. 1914/1919' +p212782 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e09.jpg' +p212783 +sg25267 +g27 +sa(dp212784 +g25268 +S'Hiding the "louis"' +p212785 +sg25270 +S'Jean-Louis Forain' +p212786 +sg25273 +S'brush and black ink and black crayon on laid paper' +p212787 +sg25275 +S'c. 1914/1919' +p212788 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006ddd.jpg' +p212789 +sg25267 +g27 +sa(dp212790 +g25268 +S'The Objective of War' +p212791 +sg25270 +S'Jean-Louis Forain' +p212792 +sg25273 +S'black crayon and brush and gray ink with color crayons on wove paper' +p212793 +sg25275 +S'c. 1914/1919' +p212794 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e6b.jpg' +p212795 +sg25267 +g27 +sa(dp212796 +g25268 +S'Court Scene' +p212797 +sg25270 +S'Jean-Louis Forain' +p212798 +sg25273 +S'watercolor and color (chalk?) on laid paper' +p212799 +sg25275 +S'unknown date\n' +p212800 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006daf.jpg' +p212801 +sg25267 +g27 +sa(dp212802 +g25268 +S'Leur "pot de vin"' +p212803 +sg25270 +S'Jean-Louis Forain' +p212804 +sg25273 +S'brush and black ink with black crayon on wove paper' +p212805 +sg25275 +S'unknown date\n' +p212806 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f37.jpg' +p212807 +sg25267 +g27 +sa(dp212808 +g25268 +S'Poilu and Prisoner' +p212809 +sg25270 +S'Jean-Louis Forain' +p212810 +sg25273 +S'watercolor and black crayon on wove paper' +p212811 +sg25275 +S'c. 1914/1919' +p212812 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d7e.jpg' +p212813 +sg25267 +g27 +sa(dp212814 +g25273 +S'color mezzotint with etching' +p212815 +sg25267 +g27 +sg25275 +S'unknown date\n' +p212816 +sg25268 +S'Court Scene' +p212817 +sg25270 +S'Jean-Louis Forain' +p212818 +sa(dp212819 +g25268 +S'Voila le Moment de te Chantes "Wacht am Rhein"' +p212820 +sg25270 +S'Jean-Louis Forain' +p212821 +sg25273 +S'collotype' +p212822 +sg25275 +S'1914/1919' +p212823 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f5d.jpg' +p212824 +sg25267 +g27 +sa(dp212825 +g25268 +S'Le Front de Vincennes' +p212826 +sg25270 +S'Jean-Louis Forain' +p212827 +sg25273 +S'collotype' +p212828 +sg25275 +S'1914/1919' +p212829 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f5f.jpg' +p212830 +sg25267 +g27 +sa(dp212831 +g25268 +S'Versailles, 28 Juin' +p212832 +sg25270 +S'Jean-Louis Forain' +p212833 +sg25273 +S'collotype' +p212834 +sg25275 +S'1914/1919' +p212835 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f5a.jpg' +p212836 +sg25267 +g27 +sa(dp212837 +g25268 +S'The Virgin as Queen of Heaven' +p212838 +sg25270 +S'Albrecht Altdorfer' +p212839 +sg25273 +S'woodcut' +p212840 +sg25275 +S'c. 1513' +p212841 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a708.jpg' +p212842 +sg25267 +g27 +sa(dp212843 +g25268 +S"Pour l'homme de demain" +p212844 +sg25270 +S'Jean-Louis Forain' +p212845 +sg25273 +S'collotype' +p212846 +sg25275 +S'1914/1919' +p212847 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a25.jpg' +p212848 +sg25267 +g27 +sa(dp212849 +g25268 +S'Les Nuits de Paris' +p212850 +sg25270 +S'Jean-Louis Forain' +p212851 +sg25273 +S'collotype' +p212852 +sg25275 +S'1914/1919' +p212853 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a26.jpg' +p212854 +sg25267 +g27 +sa(dp212855 +g25268 +S'La Defaillance Russe' +p212856 +sg25270 +S'Jean-Louis Forain' +p212857 +sg25273 +S'collotype' +p212858 +sg25275 +S'1914/1919' +p212859 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f5b.jpg' +p212860 +sg25267 +g27 +sa(dp212861 +g25268 +S'A la Conference de la Paix' +p212862 +sg25270 +S'Jean-Louis Forain' +p212863 +sg25273 +S'collotype' +p212864 +sg25275 +S'1914/1919' +p212865 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f60.jpg' +p212866 +sg25267 +g27 +sa(dp212867 +g25273 +S"portfolio with 200 reproductive prints, all photomechanically produced from the artist's drawings" +p212868 +sg25267 +g27 +sg25275 +S'1914/1919' +p212869 +sg25268 +S'De la Marne au Rhin' +p212870 +sg25270 +S'Jean-Louis Forain' +p212871 +sa(dp212872 +g25273 +S'lithograph [poster]' +p212873 +sg25267 +g27 +sg25275 +S'1914' +p212874 +sg25268 +S'Lourdes, 1914, 25th International Eucharistic Congress' +p212875 +sg25270 +S'Jean-Louis Forain' +p212876 +sa(dp212877 +g25273 +S'lithograph in green and black [poster]' +p212878 +sg25267 +g27 +sg25275 +S'1914' +p212879 +sg25268 +S'Lourdes, 1914, 25th International Eucharistic Congress' +p212880 +sg25270 +S'Jean-Louis Forain' +p212881 +sa(dp212882 +g25268 +S'Nundinae Rusticorum (Rustic Market)' +p212883 +sg25270 +S'Artist Information (' +p212884 +sg25273 +S'(artist)' +p212885 +sg25275 +S'\n' +p212886 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d05b.jpg' +p212887 +sg25267 +g27 +sa(dp212888 +g25273 +S'lithograph in blue and black [poster]' +p212889 +sg25267 +g27 +sg25275 +S'1914' +p212890 +sg25268 +S'Lourdes, 1914, 25th International Eucharistic Congress' +p212891 +sg25270 +S'Jean-Louis Forain' +p212892 +sa(dp212893 +g25273 +S'lithograph in blue and black [poster]' +p212894 +sg25267 +g27 +sg25275 +S'1914' +p212895 +sg25268 +S'Lourdes, 1914, 25th International Eucharistic Congress' +p212896 +sg25270 +S'Jean-Louis Forain' +p212897 +sa(dp212898 +g25273 +S'lithograph [poster]' +p212899 +sg25267 +g27 +sg25275 +S'1911' +p212900 +sg25268 +S'First Exhibition of the Humorists, Palace of Style' +p212901 +sg25270 +S'Jean-Louis Forain' +p212902 +sa(dp212903 +g25273 +S'lithograph [poster]' +p212904 +sg25267 +g27 +sg25275 +S'1911' +p212905 +sg25268 +S'First Exhibition of the Humorists, Palace of Style' +p212906 +sg25270 +S'Jean-Louis Forain' +p212907 +sa(dp212908 +g25273 +S'lithograph [poster]' +p212909 +sg25267 +g27 +sg25275 +S'1911' +p212910 +sg25268 +S'First Exhibition of the Humorists, Palace of Style' +p212911 +sg25270 +S'Jean-Louis Forain' +p212912 +sa(dp212913 +g25273 +S'lithograph [poster]' +p212914 +sg25267 +g27 +sg25275 +S'1911' +p212915 +sg25268 +S'First Exhibition of the Humorists, Palace of Style' +p212916 +sg25270 +S'Jean-Louis Forain' +p212917 +sa(dp212918 +g25273 +S'lithograph [poster]' +p212919 +sg25267 +g27 +sg25275 +S'1913' +p212920 +sg25268 +S'To Serve' +p212921 +sg25270 +S'Jean-Louis Forain' +p212922 +sa(dp212923 +g25273 +S'lithograph [poster]' +p212924 +sg25267 +g27 +sg25275 +S'1913' +p212925 +sg25268 +S'To Serve' +p212926 +sg25270 +S'Jean-Louis Forain' +p212927 +sa(dp212928 +g25273 +S'lithograph [poster]' +p212929 +sg25267 +g27 +sg25275 +S'c. 1916' +p212930 +sg25268 +S'The Good Fire' +p212931 +sg25270 +S'Jean-Louis Forain' +p212932 +sa(dp212933 +g25273 +S'pastel on brown paper' +p212934 +sg25267 +g27 +sg25275 +S'unknown date\n' +p212935 +sg25268 +S'Woman Undressing' +p212936 +sg25270 +S'Jean-Louis Forain' +p212937 +sa(dp212938 +g25268 +S'Euntes in Emaus (The Pilgrims to Emmaus)' +p212939 +sg25270 +S'Artist Information (' +p212940 +sg25273 +S'(artist)' +p212941 +sg25275 +S'\n' +p212942 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d05a.jpg' +p212943 +sg25267 +g27 +sa(dp212944 +g25268 +S'Discussion among Lawyers' +p212945 +sg25270 +S'Jean-Louis Forain' +p212946 +sg25273 +S'pen and black ink with brown wash on laid paper' +p212947 +sg25275 +S'unknown date\n' +p212948 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e1f.jpg' +p212949 +sg25267 +g27 +sa(dp212950 +g25268 +S'Behind the Scenes' +p212951 +sg25270 +S'Jean-Louis Forain' +p212952 +sg25273 +S'pen and brown ink with watercolor' +p212953 +sg25275 +S'unknown date\n' +p212954 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072f2.jpg' +p212955 +sg25267 +g27 +sa(dp212956 +g25268 +S"Nymph Supported by Two Satyrs (Nymphe s'asseyant sur les mains de deux satyres)" +p212957 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p212958 +sg25273 +S'etching' +p212959 +sg25275 +S'1763' +p212960 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d29.jpg' +p212961 +sg25267 +g27 +sa(dp212962 +g25268 +S"The Satyrs' Dance (Danse de satyres)" +p212963 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p212964 +sg25273 +S'etching' +p212965 +sg25275 +S'1763' +p212966 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d2c.jpg' +p212967 +sg25267 +g27 +sa(dp212968 +g25268 +S'Nymph Astride a Satyr (Jeune fille a califourchon sur un satyre)' +p212969 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p212970 +sg25273 +S'etching' +p212971 +sg25275 +S'1763' +p212972 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d2b.jpg' +p212973 +sg25267 +g27 +sa(dp212974 +g25268 +S"The Satyr's Family (La famille du satyre)" +p212975 +sg25270 +S'Jean-Honor\xc3\xa9 Fragonard' +p212976 +sg25273 +S'etching' +p212977 +sg25275 +S'1763' +p212978 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d2a.jpg' +p212979 +sg25267 +g27 +sa(dp212980 +g25268 +S'Holy Family with Saint Elizabeth and the Infant Saint John the Baptist' +p212981 +sg25270 +S'Jacopo Francia' +p212982 +sg25273 +S'engraving' +p212983 +sg25275 +S'c. 1513' +p212984 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbb3.jpg' +p212985 +sg25267 +g27 +sa(dp212986 +g25268 +S'Lucretia' +p212987 +sg25270 +S'Jacopo Francia' +p212988 +sg25273 +S'engraving' +p212989 +sg25275 +S'c. 1510' +p212990 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbb0.jpg' +p212991 +sg25267 +g27 +sa(dp212992 +g25268 +S'Bacchus and His Attendants' +p212993 +sg25270 +S'Jacopo Francia' +p212994 +sg25273 +S'engraving' +p212995 +sg25275 +S'c. 1506' +p212996 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbb8.jpg' +p212997 +sg25267 +g27 +sa(dp212998 +g25268 +S'La promenade du soir' +p212999 +sg25270 +S'Artist Information (' +p213000 +sg25273 +S'(artist after)' +p213001 +sg25275 +S'\n' +p213002 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f72.jpg' +p213003 +sg25267 +g27 +sa(dp213004 +g25268 +S'Two Bagpipe Players' +p213005 +sg25270 +S'Artist Information (' +p213006 +sg25273 +S'(artist after)' +p213007 +sg25275 +S'\n' +p213008 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd05.jpg' +p213009 +sg25267 +g27 +sa(dp213010 +g25268 +S"L'evenement au bal" +p213011 +sg25270 +S'Artist Information (' +p213012 +sg25273 +S'(artist)' +p213013 +sg25275 +S'\n' +p213014 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f6f.jpg' +p213015 +sg25267 +g27 +sa(dp213016 +g25268 +S"L'occupation" +p213017 +sg25270 +S'Artist Information (' +p213018 +sg25273 +S'(artist after)' +p213019 +sg25275 +S'\n' +p213020 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f74.jpg' +p213021 +sg25267 +g27 +sa(dp213022 +g25268 +S'Le boudoir' +p213023 +sg25270 +S'Artist Information (' +p213024 +sg25273 +S'(artist after)' +p213025 +sg25275 +S'\n' +p213026 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f76.jpg' +p213027 +sg25267 +g27 +sa(dp213028 +g25268 +S'La toilette' +p213029 +sg25270 +S'Artist Information (' +p213030 +sg25273 +S'(artist after)' +p213031 +sg25275 +S'\n' +p213032 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f6d.jpg' +p213033 +sg25267 +g27 +sa(dp213034 +g25268 +S'Le lever' +p213035 +sg25270 +S'Artist Information (' +p213036 +sg25273 +S'(artist after)' +p213037 +sg25275 +S'\n' +p213038 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f6c.jpg' +p213039 +sg25267 +g27 +sa(dp213040 +g25268 +S'Le bain' +p213041 +sg25270 +S'Artist Information (' +p213042 +sg25273 +S'(artist after)' +p213043 +sg25275 +S'\n' +p213044 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f6b.jpg' +p213045 +sg25267 +g27 +sa(dp213046 +g25268 +S'La visite inattendue' +p213047 +sg25270 +S'Artist Information (' +p213048 +sg25273 +S'(artist after)' +p213049 +sg25275 +S'\n' +p213050 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f6e.jpg' +p213051 +sg25267 +g27 +sa(dp213052 +g25268 +S"La soiree d'hyver" +p213053 +sg25270 +S'Artist Information (' +p213054 +sg25273 +S'(artist after)' +p213055 +sg25275 +S'\n' +p213056 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f73.jpg' +p213057 +sg25267 +g27 +sa(dp213058 +g25268 +S'La promenade du matin' +p213059 +sg25270 +S'Artist Information (' +p213060 +sg25273 +S'(artist after)' +p213061 +sg25275 +S'\n' +p213062 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f75.jpg' +p213063 +sg25267 +g27 +sa(dp213064 +g25268 +S'Le coucher' +p213065 +sg25270 +S'Artist Information (' +p213066 +sg25273 +S'(artist after)' +p213067 +sg25275 +S'\n' +p213068 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f71.jpg' +p213069 +sg25267 +g27 +sa(dp213070 +g25268 +S'Portrait of a Man' +p213071 +sg25270 +S'Hans Leonard Sch\xc3\xa4ufelein' +p213072 +sg25273 +S'oil on panel' +p213073 +sg25275 +S'c. 1507' +p213074 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a000057d.jpg' +p213075 +sg25267 +S'Schäufelein worked in \n ' +p213076 +sa(dp213077 +g25268 +S'The Masquerade of Ourson and Valentin' +p213078 +sg25270 +S'Artist Information (' +p213079 +sg25273 +S'Flemish, c. 1525/1530 - 1569' +p213080 +sg25275 +S'(artist after)' +p213081 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf18.jpg' +p213082 +sg25267 +g27 +sa(dp213083 +g25268 +S'Les confidences' +p213084 +sg25270 +S'Artist Information (' +p213085 +sg25273 +S'(artist after)' +p213086 +sg25275 +S'\n' +p213087 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f70.jpg' +p213088 +sg25267 +g27 +sa(dp213089 +g25268 +S'Abstraction' +p213090 +sg25270 +S'Roger de La Fresnaye' +p213091 +sg25273 +S'lithograph' +p213092 +sg25275 +S'unknown date\n' +p213093 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a0a0.jpg' +p213094 +sg25267 +g27 +sa(dp213095 +g25268 +S'Masquerade' +p213096 +sg25270 +S'German 16th Century' +p213097 +sg25273 +S'image: 23.3 x 23.7 cm (9 3/16 x 9 5/16 in.)\r\nsheet: 33.7 x 26.5 cm (13 1/4 x 10 7/16 in.)' +p213098 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p213099 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007973.jpg' +p213100 +sg25267 +g27 +sa(dp213101 +g25268 +S'Masquerade' +p213102 +sg25270 +S'German 16th Century' +p213103 +sg25273 +S'image: 23.3 x 23.8 cm (9 3/16 x 9 3/8 in.)\r\nsheet: 33 x 26.4 cm (13 x 10 3/8 in.)' +p213104 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p213105 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007977.jpg' +p213106 +sg25267 +g27 +sa(dp213107 +g25268 +S'Masquerade' +p213108 +sg25270 +S'German 16th Century' +p213109 +sg25273 +S'image: 23.3 x 23.7 cm (9 3/16 x 9 5/16 in.)\r\nsheet: 33.7 x 26.4 cm (13 1/4 x 10 3/8 in.)' +p213110 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p213111 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007972.jpg' +p213112 +sg25267 +g27 +sa(dp213113 +g25268 +S'Masquerade' +p213114 +sg25270 +S'German 16th Century' +p213115 +sg25273 +S'image: 23.3 x 23.7 cm (9 3/16 x 9 5/16 in.)\r\nsheet: 34 x 26.4 cm (13 3/8 x 10 3/8 in.)' +p213116 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p213117 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007974.jpg' +p213118 +sg25267 +g27 +sa(dp213119 +g25268 +S'Masquerade' +p213120 +sg25270 +S'German 16th Century' +p213121 +sg25273 +S'image: 23 cm (9 1/16 in.)\r\nsheet: 33.7 x 26.5 cm (13 1/4 x 10 7/16 in.)' +p213122 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p213123 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007975.jpg' +p213124 +sg25267 +g27 +sa(dp213125 +g25268 +S'Masquerade' +p213126 +sg25270 +S'German 16th Century' +p213127 +sg25273 +S'image: 23.4 x 23.7 cm (9 3/16 x 9 5/16 in.)\r\nsheet: 33 x 26.3 cm (13 x 10 3/8 in.)' +p213128 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p213129 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007976.jpg' +p213130 +sg25267 +g27 +sa(dp213131 +g25268 +S'Masquerade' +p213132 +sg25270 +S'German 16th Century' +p213133 +sg25273 +S'image: 23.3 cm (9 3/16 in.)\r\nsheet: 33.7 x 26.8 cm (13 1/4 x 10 9/16 in.)' +p213134 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p213135 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007978.jpg' +p213136 +sg25267 +g27 +sa(dp213137 +g25268 +S'Masquerade' +p213138 +sg25270 +S'German 16th Century' +p213139 +sg25273 +S'image: 23.3 cm (9 3/16 in.)\r\nsheet: 33.7 x 26.9 cm (13 1/4 x 10 9/16 in.)' +p213140 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p213141 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007979.jpg' +p213142 +sg25267 +g27 +sa(dp213143 +g25268 +S'Saint John Summoned to Heaven' +p213144 +sg25270 +S'Jean Duvet' +p213145 +sg25273 +S'engraving' +p213146 +sg25275 +S'1546/1556' +p213147 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083cd.jpg' +p213148 +sg25267 +g27 +sa(dp213149 +g25268 +S'Masquerade' +p213150 +sg25270 +S'German 16th Century' +p213151 +sg25273 +S'image: 23.2 x 23.9 cm (9 1/8 x 9 7/16 in.)\r\nsheet: 34.1 x 26.4 cm (13 7/16 x 10 3/8 in.)' +p213152 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p213153 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a000797f.jpg' +p213154 +sg25267 +g27 +sa(dp213155 +g25268 +S'Masquerade' +p213156 +sg25270 +S'German 16th Century' +p213157 +sg25273 +S'image: 23.3 cm (9 3/16 in.)\r\nsheet: 33.6 x 26.9 cm (13 1/4 x 10 9/16 in.)' +p213158 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p213159 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007980.jpg' +p213160 +sg25267 +g27 +sa(dp213161 +g25268 +S'Masquerade' +p213162 +sg25270 +S'German 16th Century' +p213163 +sg25273 +S'image: 23.2 cm (9 1/8 in.)\r\nsheet: 33.7 x 26.4 cm (13 1/4 x 10 3/8 in.)' +p213164 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p213165 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a000797e.jpg' +p213166 +sg25267 +g27 +sa(dp213167 +g25268 +S'Masquerade' +p213168 +sg25270 +S'German 16th Century' +p213169 +sg25273 +S'image: 23.2 x 23 cm (9 1/8 x 9 1/16 in.)\r\nsheet: 33 x 26.2 cm (13 x 10 5/16 in.)' +p213170 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p213171 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a000797d.jpg' +p213172 +sg25267 +g27 +sa(dp213173 +g25268 +S'Masquerade' +p213174 +sg25270 +S'German 16th Century' +p213175 +sg25273 +S'image: 23.5 cm (9 1/4 in.)\r\nsheet: 34.1 x 26.5 cm (13 7/16 x 10 7/16 in.)' +p213176 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p213177 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a000797b.jpg' +p213178 +sg25267 +g27 +sa(dp213179 +g25268 +S'Masquerade' +p213180 +sg25270 +S'German 16th Century' +p213181 +sg25273 +S'image: 23.3 cm (9 3/16 in.)\r\nsheet: 34.1 x 26.2 cm (13 7/16 x 10 5/16 in.)' +p213182 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p213183 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a000797c.jpg' +p213184 +sg25267 +g27 +sa(dp213185 +g25268 +S'Masquerade' +p213186 +sg25270 +S'German 16th Century' +p213187 +sg25273 +S'image: 23.2 cm (9 1/8 in.)\r\nsheet: 33.6 x 26.9 cm (13 1/4 x 10 9/16 in.)' +p213188 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p213189 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a000797a.jpg' +p213190 +sg25267 +g27 +sa(dp213191 +g25268 +S'Masquerade' +p213192 +sg25270 +S'German 16th Century' +p213193 +sg25273 +S'image: 23.2 cm (9 1/8 in.)\r\nsheet: 32.8 x 26.4 cm (12 15/16 x 10 3/8 in.)' +p213194 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p213195 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007981.jpg' +p213196 +sg25267 +g27 +sa(dp213197 +g25268 +S'Masquerade' +p213198 +sg25270 +S'German 16th Century' +p213199 +sg25273 +S'image: 23.3 cm (9 3/16 in.)\r\nsheet: 33.7 x 26.4 cm (13 1/4 x 10 3/8 in.)' +p213200 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p213201 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007982.jpg' +p213202 +sg25267 +g27 +sa(dp213203 +g25273 +S'etching' +p213204 +sg25267 +g27 +sg25275 +S'1934' +p213205 +sg25268 +S'3 A.M.' +p213206 +sg25270 +S'Isac Friedlander' +p213207 +sa(dp213208 +g25268 +S'Four Angels Holding Back the Winds' +p213209 +sg25270 +S'Jean Duvet' +p213210 +sg25273 +S'engraving' +p213211 +sg25275 +S'1546/1556' +p213212 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084c5.jpg' +p213213 +sg25267 +g27 +sa(dp213214 +g25273 +S'woodcut' +p213215 +sg25267 +g27 +sg25275 +S'1933' +p213216 +sg25268 +S'Revival' +p213217 +sg25270 +S'Isac Friedlander' +p213218 +sa(dp213219 +g25273 +S'woodcut' +p213220 +sg25267 +g27 +sg25275 +S'1935' +p213221 +sg25268 +S'Self-Portrait' +p213222 +sg25270 +S'Isac Friedlander' +p213223 +sa(dp213224 +g25268 +S"Macy's Stairway" +p213225 +sg25270 +S'Wanda G\xc3\xa1g' +p213226 +sg25273 +S'lithograph in black on wove paper' +p213227 +sg25275 +S'1940-1941' +p213228 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000aa2.jpg' +p213229 +sg25267 +g27 +sa(dp213230 +g25273 +S'wood engraving in black on wove paper' +p213231 +sg25267 +g27 +sg25275 +S'1933' +p213232 +sg25268 +S'Airtight Stove' +p213233 +sg25270 +S'Wanda G\xc3\xa1g' +p213234 +sa(dp213235 +g25268 +S'Sister Rosalie (Soeur Rosalie)' +p213236 +sg25270 +S'Ferdinand Gaillard' +p213237 +sg25273 +S'engraving and (photo process?)' +p213238 +sg25275 +S'unknown date\n' +p213239 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095db.jpg' +p213240 +sg25267 +g27 +sa(dp213241 +g25268 +S'Leo XIII' +p213242 +sg25270 +S'Ferdinand Gaillard' +p213243 +sg25273 +S'engraving and (photo process?)' +p213244 +sg25275 +S'unknown date\n' +p213245 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095d8.jpg' +p213246 +sg25267 +g27 +sa(dp213247 +g25268 +S'Pius IX' +p213248 +sg25270 +S'Ferdinand Gaillard' +p213249 +sg25273 +S'engraving' +p213250 +sg25275 +S'1873' +p213251 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f7d.jpg' +p213252 +sg25267 +g27 +sa(dp213253 +g25268 +S'Masquerade' +p213254 +sg25270 +S'German 16th Century' +p213255 +sg25273 +S'image: 23.3 x 23.7 cm (9 3/16 x 9 5/16 in.)\r\nsheet: 34.1 x 26.3 cm (13 7/16 x 10 3/8 in.)' +p213256 +sg25275 +S'\npen and brown ink with watercolor on laid paper' +p213257 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007983.jpg' +p213258 +sg25267 +g27 +sa(dp213259 +g25273 +S'Rosenwald Collection' +p213260 +sg25267 +g27 +sg25275 +S'\nbound volume with 55 watercolors' +p213261 +sg25268 +S'Freydal: Combats on Foot (Jousts), volume III' +p213262 +sg25270 +S'German 16th Century' +p213263 +sa(dp213264 +g25273 +S'Rosenwald Collection' +p213265 +sg25267 +g27 +sg25275 +S'\nbound volume with 76 watercolors' +p213266 +sg25268 +S'Freydal: Combats on Horseback (Jousts), volume I' +p213267 +sg25270 +S'German 16th Century' +p213268 +sa(dp213269 +g25268 +S'A King and Diana Receiving Huntsmen' +p213270 +sg25270 +S'Jean Duvet' +p213271 +sg25273 +S'engraving' +p213272 +sg25275 +S'probably c. 1547/1555' +p213273 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083ae.jpg' +p213274 +sg25267 +g27 +sa(dp213275 +g25273 +S'Rosenwald Collection' +p213276 +sg25267 +g27 +sg25275 +S'\nbound volume with 44 watercolors' +p213277 +sg25268 +S'Freydal: Combats on Horseback (Jousts), volume II' +p213278 +sg25270 +S'German 16th Century' +p213279 +sa(dp213280 +g25268 +S'The Poor Family (Une famille pauvre)' +p213281 +sg25270 +S'Paul Gavarni' +p213282 +sg25273 +S'lithograph' +p213283 +sg25275 +S'1843/1848' +p213284 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009aad.jpg' +p213285 +sg25267 +g27 +sa(dp213286 +g25268 +S'The Model and the Figure (La sculpture monumentale)' +p213287 +sg25270 +S'Paul Gavarni' +p213288 +sg25273 +S'lithograph' +p213289 +sg25275 +S'1847/1856' +p213290 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009aa7.jpg' +p213291 +sg25267 +g27 +sa(dp213292 +g25268 +S"After the Pardon (Il lui sera beaucoup pardonne parce qu'elle a beaucoup danse)" +p213293 +sg25270 +S'Paul Gavarni' +p213294 +sg25273 +S'lithograph' +p213295 +sg25275 +S'1847/1856' +p213296 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009aa5.jpg' +p213297 +sg25267 +g27 +sa(dp213298 +g25268 +S'Discussion of Budget' +p213299 +sg25270 +S'Paul Gavarni' +p213300 +sg25273 +S'lithograph' +p213301 +sg25275 +S'unknown date\n' +p213302 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009aa3.jpg' +p213303 +sg25267 +g27 +sa(dp213304 +g25268 +S'The Masked Ball' +p213305 +sg25270 +S'Paul Gavarni' +p213306 +sg25273 +S'lithograph' +p213307 +sg25275 +S'unknown date\n' +p213308 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f7c.jpg' +p213309 +sg25267 +g27 +sa(dp213310 +g25268 +S'Alexander Gabriel Descamps' +p213311 +sg25270 +S'Paul Gavarni' +p213312 +sg25273 +S'lithograph' +p213313 +sg25275 +S'1853' +p213314 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009aae.jpg' +p213315 +sg25267 +g27 +sa(dp213316 +g25268 +S'Reverie' +p213317 +sg25270 +S'Paul Gavarni' +p213318 +sg25273 +S'pen and gray and red ink, heightened with white, on darkened paper' +p213319 +sg25275 +S'unknown date\n' +p213320 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007368.jpg' +p213321 +sg25267 +g27 +sa(dp213322 +g25268 +S'Head of a Woman' +p213323 +sg25270 +S'Paul Gavarni' +p213324 +sg25273 +S'pen and brown ink on laid paper' +p213325 +sg25275 +S'unknown date\n' +p213326 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a0007141.jpg' +p213327 +sg25267 +g27 +sa(dp213328 +g25268 +S'C\'etais "pour se donner des forces"' +p213329 +sg25270 +S'Paul Gavarni' +p213330 +sg25273 +S'pen and brown, blue and red ink, heightened with white, on brown prepared paper' +p213331 +sg25275 +S'c. 1884' +p213332 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007366.jpg' +p213333 +sg25267 +g27 +sa(dp213334 +g25268 +S'The Unicorn Purifies the Water with Its Horn' +p213335 +sg25270 +S'Jean Duvet' +p213336 +sg25273 +S'engraving' +p213337 +sg25275 +S'probably c. 1555/1561' +p213338 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00084/a00084d2.jpg' +p213339 +sg25267 +g27 +sa(dp213340 +g25268 +S'Sketch of a Man' +p213341 +sg25270 +S'Paul Gavarni' +p213342 +sg25273 +S'pen and brown and red ink on laid paper' +p213343 +sg25275 +S'unknown date\n' +p213344 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071a6.jpg' +p213345 +sg25267 +g27 +sa(dp213346 +g25268 +S'Et pas le Sou pour Souper' +p213347 +sg25270 +S'Paul Gavarni' +p213348 +sg25273 +S'pen and red and brown ink with watercolor, heightened with white' +p213349 +sg25275 +S'unknown date\n' +p213350 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007367.jpg' +p213351 +sg25267 +g27 +sa(dp213352 +g25268 +S'English Beggar' +p213353 +sg25270 +S'Paul Gavarni' +p213354 +sg25273 +S'graphite and watercolor, heightened with white' +p213355 +sg25275 +S'unknown date\n' +p213356 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a0007369.jpg' +p213357 +sg25267 +g27 +sa(dp213358 +g25268 +S'Wayside Shrine in Brittany (Le calvaire Breton)' +p213359 +sg25270 +S'Paul Gauguin' +p213360 +sg25273 +S'woodcut on very thin japan paper' +p213361 +sg25275 +S'in or after 1895' +p213362 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a000669a.jpg' +p213363 +sg25267 +g27 +sa(dp213364 +g25268 +S'Mahana Atua (The Food of the Gods)' +p213365 +sg25270 +S'Paul Gauguin' +p213366 +sg25273 +S'woodcut printed in black and gray by Pola Gauguin in 1921' +p213367 +sg25275 +S'1894/1895' +p213368 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a84.jpg' +p213369 +sg25267 +g27 +sa(dp213370 +g25268 +S'Tahitian Carrying Bananas (Le porteur de fei)' +p213371 +sg25270 +S'Paul Gauguin' +p213372 +sg25273 +S'woodcut' +p213373 +sg25275 +S'in or after 1895' +p213374 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a000671a.jpg' +p213375 +sg25267 +g27 +sa(dp213376 +g25268 +S'Te Atua (The Gods) Small Plate [recto]' +p213377 +sg25270 +S'Paul Gauguin' +p213378 +sg25273 +S'woodcut in black on very thin japan paper, mounted face down' +p213379 +sg25275 +S'in or after 1895' +p213380 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00016/a000163c.jpg' +p213381 +sg25267 +g27 +sa(dp213382 +g25268 +S'Te Atua (The Gods) Small Plate [verso]' +p213383 +sg25270 +S'Paul Gauguin' +p213384 +sg25273 +S'woodcut in black on wove paper [unique proof]' +p213385 +sg25275 +S'in or after 1895' +p213386 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00016/a000163d.jpg' +p213387 +sg25267 +g27 +sa(dp213388 +g25268 +S'Te Atua (The Gods) Small Plate' +p213389 +sg25270 +S'Paul Gauguin' +p213390 +sg25273 +S'woodcut in black on thin japan paper (Guerin 61) laid down on woodcut in black on wove paper (Guerin 60)' +p213391 +sg25275 +S'in or after 1895' +p213392 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a0006749.jpg' +p213393 +sg25267 +g27 +sa(dp213394 +g25268 +S'Human Sorrow (Miseres humaines)' +p213395 +sg25270 +S'Paul Gauguin' +p213396 +sg25273 +S'woodcut on japan paper, perimeter mounted' +p213397 +sg25275 +S'in or after 1895' +p213398 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066bb.jpg' +p213399 +sg25267 +g27 +sa(dp213400 +g25268 +S'Tobias and the Angel (The Little Tobias)' +p213401 +sg25270 +S'Artist Information (' +p213402 +sg25273 +S'(artist after)' +p213403 +sg25275 +S'\n' +p213404 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d24b.jpg' +p213405 +sg25267 +g27 +sa(dp213406 +g25268 +S'Title Page for "Le Sourire" (Titre du Sourire)' +p213407 +sg25270 +S'Paul Gauguin' +p213408 +sg25273 +S'woodcut on japan paper' +p213409 +sg25275 +S'in or after 1895' +p213410 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066bc.jpg' +p213411 +sg25267 +g27 +sa(dp213412 +g25268 +S'Title Page for "Le Sourire" (Titre du Sourire)' +p213413 +sg25270 +S'Paul Gauguin' +p213414 +sg25273 +S'woodcut on japan paper' +p213415 +sg25275 +S'in or after 1895' +p213416 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00066/a00066df.jpg' +p213417 +sg25267 +g27 +sa(dp213418 +g25268 +S'Maruru (Thank You)' +p213419 +sg25270 +S'Paul Gauguin' +p213420 +sg25273 +S'woodcut in black on coated paper [modern impression issued by the Print and Drawing Club, Art Institute of Chicago]' +p213421 +sg25275 +S'1894/1895' +p213422 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a7b.jpg' +p213423 +sg25267 +g27 +sa(dp213424 +g25268 +S'Shepherd and Shepherdess Conversing in a Landscape (Berger et berg\xc3\xa8re conversant)' +p213425 +sg25270 +S'Claude Lorrain' +p213426 +sg25273 +S'etching' +p213427 +sg25275 +S'c. 1651' +p213428 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008af4.jpg' +p213429 +sg25267 +g27 +sa(dp213430 +g25268 +S'The Cowherd (Le bouvier)' +p213431 +sg25270 +S'Claude Lorrain' +p213432 +sg25273 +S'etching' +p213433 +sg25275 +S'1636' +p213434 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00063/a0006391.jpg' +p213435 +sg25267 +g27 +sa(dp213436 +g25268 +S'The Flemish Farrier' +p213437 +sg25270 +S'Th\xc3\xa9odore Gericault' +p213438 +sg25273 +S'lithograph' +p213439 +sg25275 +S'1821' +p213440 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f95.jpg' +p213441 +sg25267 +g27 +sa(dp213442 +g25268 +S'A French Farrier' +p213443 +sg25270 +S'Th\xc3\xa9odore Gericault' +p213444 +sg25273 +S'lithograph' +p213445 +sg25275 +S'1821' +p213446 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009ac2.jpg' +p213447 +sg25267 +g27 +sa(dp213448 +g25268 +S'Christ Making Saint Peter Head of the Church' +p213449 +sg25270 +S'Artist Information (' +p213450 +sg25273 +S'(artist after)' +p213451 +sg25275 +S'\n' +p213452 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b3f.jpg' +p213453 +sg25267 +g27 +sa(dp213454 +g25268 +S'Latona Giving Birth to Apollo and Diana on the Island of Delos' +p213455 +sg25270 +S'Artist Information (' +p213456 +sg25273 +S'(artist after)' +p213457 +sg25275 +S'\n' +p213458 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b40.jpg' +p213459 +sg25267 +g27 +sa(dp213460 +g25273 +S'woodcut' +p213461 +sg25267 +g27 +sg25275 +S'1936' +p213462 +sg25268 +S'Lost Anchor' +p213463 +sg25270 +S'Robert Gibbings' +p213464 +sa(dp213465 +g25268 +S'Tobias and the Angel (The Large Tobias)' +p213466 +sg25270 +S'Artist Information (' +p213467 +sg25273 +S'(artist after)' +p213468 +sg25275 +S'\n' +p213469 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f34.jpg' +p213470 +sg25267 +g27 +sa(dp213471 +g25273 +S'drypoint' +p213472 +sg25267 +g27 +sg25275 +S'c. 1918' +p213473 +sg25268 +S'Self-Portrait' +p213474 +sg25270 +S'Anne Goldthwaite' +p213475 +sa(dp213476 +g25268 +S'Calliope' +p213477 +sg25270 +S'Hendrick Goltzius' +p213478 +sg25273 +S', 1592' +p213479 +sg25275 +S'\n' +p213480 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce22.jpg' +p213481 +sg25267 +g27 +sa(dp213482 +g25268 +S'Thalia' +p213483 +sg25270 +S'Hendrick Goltzius' +p213484 +sg25273 +S', probably 1592' +p213485 +sg25275 +S'\n' +p213486 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce21.jpg' +p213487 +sg25267 +g27 +sa(dp213488 +g25268 +S'Melpomene' +p213489 +sg25270 +S'Hendrick Goltzius' +p213490 +sg25273 +S', probably 1592' +p213491 +sg25275 +S'\n' +p213492 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce20.jpg' +p213493 +sg25267 +g27 +sa(dp213494 +g25268 +S'Clio' +p213495 +sg25270 +S'Hendrick Goltzius' +p213496 +sg25273 +S', probably 1592' +p213497 +sg25275 +S'\n' +p213498 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce1f.jpg' +p213499 +sg25267 +g27 +sa(dp213500 +g25268 +S'Terpsichore' +p213501 +sg25270 +S'Hendrick Goltzius' +p213502 +sg25273 +S', probably 1592' +p213503 +sg25275 +S'\n' +p213504 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce1e.jpg' +p213505 +sg25267 +g27 +sa(dp213506 +g25268 +S'Frederik de Vries' +p213507 +sg25270 +S'Hendrick Goltzius' +p213508 +sg25273 +S', 1597' +p213509 +sg25275 +S'\n' +p213510 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfc5.jpg' +p213511 +sg25267 +g27 +sa(dp213512 +g25268 +S'Cliff on the Seashore' +p213513 +sg25270 +S'Hendrick Goltzius' +p213514 +sg25273 +S', probably 1592/1595' +p213515 +sg25275 +S'\n' +p213516 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce3f.jpg' +p213517 +sg25267 +g27 +sa(dp213518 +g25268 +S'Landscape with a Waterfall' +p213519 +sg25270 +S'Hendrick Goltzius' +p213520 +sg25273 +S', probably 1592/1595' +p213521 +sg25275 +S'\n' +p213522 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce43.jpg' +p213523 +sg25267 +g27 +sa(dp213524 +g25268 +S'Landscape with a Farmhouse' +p213525 +sg25270 +S'Hendrick Goltzius' +p213526 +sg25273 +S', probably 1592/1595' +p213527 +sg25275 +S'\n' +p213528 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce41.jpg' +p213529 +sg25267 +g27 +sa(dp213530 +g25268 +S'The Flight into Egypt' +p213531 +sg25270 +S'Artist Information (' +p213532 +sg25273 +S'(artist after)' +p213533 +sg25275 +S'\n' +p213534 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d60c.jpg' +p213535 +sg25267 +g27 +sa(dp213536 +g25268 +S'Galatea' +p213537 +sg25270 +S'Hendrick Goltzius' +p213538 +sg25273 +S', 1588/1590' +p213539 +sg25275 +S'\n' +p213540 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d10.jpg' +p213541 +sg25267 +g27 +sa(dp213542 +g25268 +S'Pluto' +p213543 +sg25270 +S'Hendrick Goltzius' +p213544 +sg25273 +S', 1588/1590' +p213545 +sg25275 +S'\n' +p213546 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfd6.jpg' +p213547 +sg25267 +g27 +sa(dp213548 +g25268 +S'Neptune' +p213549 +sg25270 +S'Hendrick Goltzius' +p213550 +sg25273 +S', 1588/1590' +p213551 +sg25275 +S'\n' +p213552 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfd7.jpg' +p213553 +sg25267 +g27 +sa(dp213554 +g25268 +S'Hercules Killing Cacus' +p213555 +sg25270 +S'Hendrick Goltzius' +p213556 +sg25273 +S', 1588' +p213557 +sg25275 +S'\n' +p213558 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d066.jpg' +p213559 +sg25267 +g27 +sa(dp213560 +g25268 +S'Helios' +p213561 +sg25270 +S'Hendrick Goltzius' +p213562 +sg25273 +S', 1588/1590' +p213563 +sg25275 +S'\n' +p213564 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfd4.jpg' +p213565 +sg25267 +g27 +sa(dp213566 +g25268 +S'Nox (Goddess of Night)' +p213567 +sg25270 +S'Hendrick Goltzius' +p213568 +sg25273 +S', 1588/1590' +p213569 +sg25275 +S'\n' +p213570 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004ba7.jpg' +p213571 +sg25267 +g27 +sa(dp213572 +g25268 +S'Allegory with a Woman with Two Serpents and Two Pigeons' +p213573 +sg25270 +S'Hendrick Goltzius' +p213574 +sg25273 +S', c. 1586' +p213575 +sg25275 +S'\n' +p213576 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce18.jpg' +p213577 +sg25267 +g27 +sa(dp213578 +g25268 +S'Sight' +p213579 +sg25270 +S'Artist Information (' +p213580 +sg25273 +S'(artist after)' +p213581 +sg25275 +S'\n' +p213582 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ceaf.jpg' +p213583 +sg25267 +g27 +sa(dp213584 +g25268 +S'Hearing' +p213585 +sg25270 +S'Artist Information (' +p213586 +sg25273 +S'(artist after)' +p213587 +sg25275 +S'\n' +p213588 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ceb0.jpg' +p213589 +sg25267 +g27 +sa(dp213590 +g25268 +S'Smell' +p213591 +sg25270 +S'Artist Information (' +p213592 +sg25273 +S'(artist after)' +p213593 +sg25275 +S'\n' +p213594 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ceb1.jpg' +p213595 +sg25267 +g27 +sa(dp213596 +g25268 +S'Beheading of Saint John the Baptist' +p213597 +sg25270 +S'Artist Information (' +p213598 +sg25273 +S'(artist after)' +p213599 +sg25275 +S'\n' +p213600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d253.jpg' +p213601 +sg25267 +g27 +sa(dp213602 +g25268 +S'Taste' +p213603 +sg25270 +S'Artist Information (' +p213604 +sg25273 +S'(artist after)' +p213605 +sg25275 +S'\n' +p213606 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ceb2.jpg' +p213607 +sg25267 +g27 +sa(dp213608 +g25268 +S'Touch' +p213609 +sg25270 +S'Artist Information (' +p213610 +sg25273 +S'(artist after)' +p213611 +sg25275 +S'\n' +p213612 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00050/a0005039.jpg' +p213613 +sg25267 +g27 +sa(dp213614 +g25268 +S'Frederick II' +p213615 +sg25270 +S'Hendrick Goltzius' +p213616 +sg25273 +S', 1590' +p213617 +sg25275 +S'\n' +p213618 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce2f.jpg' +p213619 +sg25267 +g27 +sa(dp213620 +g25268 +S'Jan Nicquet' +p213621 +sg25270 +S'Hendrick Goltzius' +p213622 +sg25273 +S', 1595' +p213623 +sg25275 +S'\n' +p213624 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce2c.jpg' +p213625 +sg25267 +g27 +sa(dp213626 +g25268 +S'Johannes Zurenus (Jan van Suren)' +p213627 +sg25270 +S'Artist Information (' +p213628 +sg25273 +S'(artist after)' +p213629 +sg25275 +S'\n' +p213630 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce37.jpg' +p213631 +sg25267 +g27 +sa(dp213632 +g25268 +S'Nicolaus Petri van Deventer' +p213633 +sg25270 +S'Hendrick Goltzius' +p213634 +sg25273 +S', 1595' +p213635 +sg25275 +S'\n' +p213636 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce35.jpg' +p213637 +sg25267 +g27 +sa(dp213638 +g25268 +S'Hieronymus Scholiers' +p213639 +sg25270 +S'Hendrick Goltzius' +p213640 +sg25273 +S', 1583' +p213641 +sg25275 +S'\n' +p213642 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce36.jpg' +p213643 +sg25267 +g27 +sa(dp213644 +g25268 +S'Ascending Ornament' +p213645 +sg25270 +S'Lambert Hopfer' +p213646 +sg25273 +S'etching' +p213647 +sg25275 +S'unknown date\n' +p213648 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b270.jpg' +p213649 +sg25267 +g27 +sa(dp213650 +g25268 +S'Ascending Ornament' +p213651 +sg25270 +S'Lambert Hopfer' +p213652 +sg25273 +S'etching' +p213653 +sg25275 +S'unknown date\n' +p213654 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b1ab.jpg' +p213655 +sg25267 +g27 +sa(dp213656 +g25268 +S'Autumn' +p213657 +sg25270 +S'Artist Information (' +p213658 +sg25273 +S'(artist after)' +p213659 +sg25275 +S'\n' +p213660 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cead.jpg' +p213661 +sg25267 +g27 +sa(dp213662 +g25268 +S'The Mocking of Ceres' +p213663 +sg25270 +S'Artist Information (' +p213664 +sg25273 +S'(artist after)' +p213665 +sg25275 +S'\n' +p213666 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d510.jpg' +p213667 +sg25267 +g27 +sa(dp213668 +g25268 +S'Winter' +p213669 +sg25270 +S'Artist Information (' +p213670 +sg25273 +S'(artist after)' +p213671 +sg25275 +S'\n' +p213672 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ceae.jpg' +p213673 +sg25267 +g27 +sa(dp213674 +g25268 +S'Self-Portrait at the Easel' +p213675 +sg25270 +S'Francis Seymour Haden' +p213676 +sg25273 +S'etching [cancellation proof]' +p213677 +sg25275 +S'1880/1886' +p213678 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c30.jpg' +p213679 +sg25267 +g27 +sa(dp213680 +g25268 +S'Marcus Valerius Corvus' +p213681 +sg25270 +S'Hendrick Goltzius' +p213682 +sg25273 +S', probably 1586' +p213683 +sg25275 +S'\n' +p213684 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfc3.jpg' +p213685 +sg25267 +g27 +sa(dp213686 +g25268 +S'Mucius Scaevola' +p213687 +sg25270 +S'Hendrick Goltzius' +p213688 +sg25273 +S', probably 1586' +p213689 +sg25275 +S'\n' +p213690 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfc4.jpg' +p213691 +sg25267 +g27 +sa(dp213692 +g25268 +S'Spring' +p213693 +sg25270 +S'Artist Information (' +p213694 +sg25273 +S'(artist after)' +p213695 +sg25275 +S'\n' +p213696 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ceab.jpg' +p213697 +sg25267 +g27 +sa(dp213698 +g25268 +S'Summer' +p213699 +sg25270 +S'Artist Information (' +p213700 +sg25273 +S'(artist after)' +p213701 +sg25275 +S'\n' +p213702 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ceac.jpg' +p213703 +sg25267 +g27 +sa(dp213704 +g25268 +S'The Captain of the Infantry, Marching to the Left' +p213705 +sg25270 +S'Hendrick Goltzius' +p213706 +sg25273 +S', 1587' +p213707 +sg25275 +S'\n' +p213708 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfce.jpg' +p213709 +sg25267 +g27 +sa(dp213710 +g25268 +S"Countess Francoise D'Egmond" +p213711 +sg25270 +S'Hendrick Goltzius' +p213712 +sg25273 +S', 1580' +p213713 +sg25275 +S'\n' +p213714 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce25.jpg' +p213715 +sg25267 +g27 +sa(dp213716 +g25268 +S'Presentation' +p213717 +sg25270 +S'German 15th Century' +p213718 +sg25273 +S'Schreiber Manuel, no. 3448' +p213719 +sg25275 +S'\nhand-colored woodcut' +p213720 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5ea.jpg' +p213721 +sg25267 +g27 +sa(dp213722 +g25268 +S'Christoph Plantin' +p213723 +sg25270 +S'Hendrick Goltzius' +p213724 +sg25273 +S', probably c. 1583' +p213725 +sg25275 +S'\n' +p213726 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce3a.jpg' +p213727 +sg25267 +g27 +sa(dp213728 +g25268 +S'Portrait of an Elderly Lady' +p213729 +sg25270 +S'Frans Hals' +p213730 +sg25273 +S'oil on canvas' +p213731 +sg25275 +S'1633' +p213732 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e59.jpg' +p213733 +sg25267 +S"The strength and vitality of the people who helped establish the new Dutch Republic\nare nowhere better captured than in paintings by Frans Hals. Hals was the preeminent\nportrait painter in Haarlem, the most important Dutch city in the early part of\nthe seventeenth century. This mercantile, intellectual, and artistic center attracted\nmany immigrants from Flanders, including Hals' parents.\n Although the name of this sitter is not known, Hals inscribed her age, sixty, and\nthe date of the painting, 1633, in the background on the left. The prayer book she\nholds in her right hand and her conservative black costume with its white ruff clearly indicate\nher pious nature, yet Hals tells us far more about her through her face and hands\nthan through her costume and book. With firm yet broad strokes of his brush he conveys\nher lively, robust personality. Her self-confidence is felt in the twinkle of her\neyes, in the firm grasp of her hand on the arm of the chair, and by the strong silhouette\nof her form against the gray background.\n " +p213734 +sa(dp213735 +g25268 +S'Jupiter and Mercury in the House of Philemon and Baucis' +p213736 +sg25270 +S'Artist Information (' +p213737 +sg25273 +S'(artist after)' +p213738 +sg25275 +S'\n' +p213739 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00068/a0006823.jpg' +p213740 +sg25267 +g27 +sa(dp213741 +g25268 +S'Pike Bearer Standing' +p213742 +sg25270 +S'Hendrick Goltzius' +p213743 +sg25273 +S', 1583' +p213744 +sg25275 +S'\n' +p213745 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfcf.jpg' +p213746 +sg25267 +g27 +sa(dp213747 +g25268 +S'The Adoration of the Magi' +p213748 +sg25270 +S'Hendrick Goltzius' +p213749 +sg25273 +S', c. 1586' +p213750 +sg25275 +S'\n' +p213751 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce09.jpg' +p213752 +sg25267 +g27 +sa(dp213753 +g25268 +S'Piet\xc3\xa0 (The Sorrowing Virgin with the Dead Christ in Her Lap)' +p213754 +sg25270 +S'Hendrick Goltzius' +p213755 +sg25273 +S', 1596' +p213756 +sg25275 +S'\n' +p213757 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce0a.jpg' +p213758 +sg25267 +g27 +sa(dp213759 +g25273 +S'drypoint on wove paper' +p213760 +sg25267 +g27 +sg25275 +S'1931' +p213761 +sg25268 +S'Head of Man with Beard' +p213762 +sg25270 +S'Elias M. Grossman' +p213763 +sa(dp213764 +g25273 +S'drypoint' +p213765 +sg25267 +g27 +sg25275 +S'1934' +p213766 +sg25268 +S'Man with Pipe' +p213767 +sg25270 +S'Elias M. Grossman' +p213768 +sa(dp213769 +g25273 +S'drypoint' +p213770 +sg25267 +g27 +sg25275 +S'unknown date\n' +p213771 +sg25268 +S'Justice S.G.' +p213772 +sg25270 +S'Elias M. Grossman' +p213773 +sa(dp213774 +g25273 +S'drypoint' +p213775 +sg25267 +g27 +sg25275 +S'unknown date\n' +p213776 +sg25268 +S'Professor Ferdinand Brunot' +p213777 +sg25270 +S'Elias M. Grossman' +p213778 +sa(dp213779 +g25273 +S'drypoint' +p213780 +sg25267 +g27 +sg25275 +S'unknown date\n' +p213781 +sg25268 +S'Russian Peasant' +p213782 +sg25270 +S'Elias M. Grossman' +p213783 +sa(dp213784 +g25273 +S'drypoint' +p213785 +sg25267 +g27 +sg25275 +S'unknown date\n' +p213786 +sg25268 +S'Man with Prayer Shawl' +p213787 +sg25270 +S'Elias M. Grossman' +p213788 +sa(dp213789 +g25273 +S'(artist after)' +p213790 +sg25267 +g27 +sg25275 +S'\n' +p213791 +sg25268 +S'Georgiana (Spencer), Duchess of Devonshire' +p213792 +sg25270 +S'Artist Information (' +p213793 +sa(dp213794 +g25268 +S'Landscape at Dawn: Aurora' +p213795 +sg25270 +S'Artist Information (' +p213796 +sg25273 +S'(artist after)' +p213797 +sg25275 +S'\n' +p213798 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d24a.jpg' +p213799 +sg25267 +g27 +sa(dp213800 +g25273 +S'(artist after)' +p213801 +sg25267 +g27 +sg25275 +S'\n' +p213802 +sg25268 +S'William Innes' +p213803 +sg25270 +S'Artist Information (' +p213804 +sa(dp213805 +g25273 +S'(artist after)' +p213806 +sg25267 +g27 +sg25275 +S'\n' +p213807 +sg25268 +S'Henry Laurens' +p213808 +sg25270 +S'Artist Information (' +p213809 +sa(dp213810 +g25268 +S'The Wright Family (The Bradshaw Children)' +p213811 +sg25270 +S'Artist Information (' +p213812 +sg25273 +S'(artist after)' +p213813 +sg25275 +S'\n' +p213814 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078af.jpg' +p213815 +sg25267 +g27 +sa(dp213816 +g25268 +S'George Washington' +p213817 +sg25270 +S'Artist Information (' +p213818 +sg25273 +S'(artist after)' +p213819 +sg25275 +S'\n' +p213820 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a00078ad.jpg' +p213821 +sg25267 +g27 +sa(dp213822 +g25268 +S'Lone-End' +p213823 +sg25270 +S'F.L. Griggs' +p213824 +sg25273 +S'etching' +p213825 +sg25275 +S'1930' +p213826 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00080/a0008080.jpg' +p213827 +sg25267 +g27 +sa(dp213828 +g25268 +S'Anglia Perdita' +p213829 +sg25270 +S'F.L. Griggs' +p213830 +sg25273 +S'etching' +p213831 +sg25275 +S'1921/1925' +p213832 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00080/a0008083.jpg' +p213833 +sg25267 +g27 +sa(dp213834 +g25268 +S'The Almonry' +p213835 +sg25270 +S'F.L. Griggs' +p213836 +sg25273 +S'graphite' +p213837 +sg25275 +S'1925' +p213838 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006ade.jpg' +p213839 +sg25267 +g27 +sa(dp213840 +g25268 +S'The Almonry' +p213841 +sg25270 +S'F.L. Griggs' +p213842 +sg25273 +S'etching' +p213843 +sg25275 +S'1925' +p213844 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00080/a0008084.jpg' +p213845 +sg25267 +g27 +sa(dp213846 +g25268 +S'The George Inn, Beaconsfield' +p213847 +sg25270 +S'F.L. Griggs' +p213848 +sg25273 +S'pen and black ink' +p213849 +sg25275 +S'1908' +p213850 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006ae1.jpg' +p213851 +sg25267 +g27 +sa(dp213852 +g25268 +S'Tattershall' +p213853 +sg25270 +S'F.L. Griggs' +p213854 +sg25273 +S'etching' +p213855 +sg25275 +S'1930' +p213856 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00080/a0008081.jpg' +p213857 +sg25267 +g27 +sa(dp213858 +g25268 +S'Baco (Bacchus)' +p213859 +sg25270 +S'Artist Information (' +p213860 +sg25273 +S'(artist after)' +p213861 +sg25275 +S'\n' +p213862 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000edb0.jpg' +p213863 +sg25267 +g27 +sa(dp213864 +g25268 +S"St. Mary's College, St. David's" +p213865 +sg25270 +S'F.L. Griggs' +p213866 +sg25273 +S'pen and black ink' +p213867 +sg25275 +S'1902' +p213868 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bc3.jpg' +p213869 +sg25267 +g27 +sa(dp213870 +g25268 +S'The Maypole Inn' +p213871 +sg25270 +S'F.L. Griggs' +p213872 +sg25273 +S'etching' +p213873 +sg25275 +S'1929' +p213874 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00080/a0008085.jpg' +p213875 +sg25267 +g27 +sa(dp213876 +g25268 +S'St. Ippolyts (no.2)' +p213877 +sg25270 +S'F.L. Griggs' +p213878 +sg25273 +S'etching' +p213879 +sg25275 +S'1903' +p213880 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007b/a0007bfb.jpg' +p213881 +sg25267 +g27 +sa(dp213882 +g25268 +S'Stevenage' +p213883 +sg25270 +S'F.L. Griggs' +p213884 +sg25273 +S'etching' +p213885 +sg25275 +S'1902' +p213886 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007b/a0007bfc.jpg' +p213887 +sg25267 +g27 +sa(dp213888 +g25268 +S"St. Mary's, Nottingham" +p213889 +sg25270 +S'F.L. Griggs' +p213890 +sg25273 +S'etching' +p213891 +sg25275 +S'1928/1929' +p213892 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00080/a000807d.jpg' +p213893 +sg25267 +g27 +sa(dp213894 +g25268 +S"St. Botolph's, Boston" +p213895 +sg25270 +S'F.L. Griggs' +p213896 +sg25273 +S'etching' +p213897 +sg25275 +S'1924/1925' +p213898 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00080/a000807a.jpg' +p213899 +sg25267 +g27 +sa(dp213900 +g25268 +S"Potter's Bow" +p213901 +sg25270 +S'F.L. Griggs' +p213902 +sg25273 +S'etching' +p213903 +sg25275 +S'1924' +p213904 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00080/a000807c.jpg' +p213905 +sg25267 +g27 +sa(dp213906 +g25268 +S'Garden House' +p213907 +sg25270 +S'F.L. Griggs' +p213908 +sg25273 +S'graphite' +p213909 +sg25275 +S'1909' +p213910 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006ae0.jpg' +p213911 +sg25267 +g27 +sa(dp213912 +g25268 +S'Apse of St.-Didier, Avignon' +p213913 +sg25270 +S'F.L. Griggs' +p213914 +sg25273 +S'graphite on laid paper' +p213915 +sg25275 +S'1922' +p213916 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006adb.jpg' +p213917 +sg25267 +g27 +sa(dp213918 +g25268 +S'North Marston Church' +p213919 +sg25270 +S'F.L. Griggs' +p213920 +sg25273 +S'pen and black ink on paperboard prepared with brown wash' +p213921 +sg25275 +S'1909' +p213922 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bc5.jpg' +p213923 +sg25267 +g27 +sa(dp213924 +g25268 +S'El famoso Americano, Mariano Ceballos (The Famous American, Mariano Ceballos)' +p213925 +sg25270 +S'Francisco de Goya' +p213926 +sg25273 +S'lithograph on wove paper [edition impression printed by Gaulon in Bordeaux in 1825]' +p213927 +sg25275 +S'1825' +p213928 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000edaf.jpg' +p213929 +sg25267 +g27 +sa(dp213930 +g25268 +S'Cloitre St. Pierre, Avignon' +p213931 +sg25270 +S'F.L. Griggs' +p213932 +sg25273 +S'red and black crayon on laid paper' +p213933 +sg25275 +S'1922' +p213934 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006add.jpg' +p213935 +sg25267 +g27 +sa(dp213936 +g25268 +S'Landscape with Castle' +p213937 +sg25270 +S'F.L. Griggs' +p213938 +sg25273 +S'graphite' +p213939 +sg25275 +S'1921' +p213940 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bc1.jpg' +p213941 +sg25267 +g27 +sa(dp213942 +g25268 +S'Topiary Archway' +p213943 +sg25270 +S'F.L. Griggs' +p213944 +sg25273 +S'charcoal and graphite' +p213945 +sg25275 +S'1910' +p213946 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006adf.jpg' +p213947 +sg25267 +g27 +sa(dp213948 +g25268 +S"St. Anne's Church from Southover" +p213949 +sg25270 +S'F.L. Griggs' +p213950 +sg25273 +S'pen and black ink' +p213951 +sg25275 +S'1903' +p213952 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bc4.jpg' +p213953 +sg25267 +g27 +sa(dp213954 +g25268 +S'Netherton Chapel' +p213955 +sg25270 +S'F.L. Griggs' +p213956 +sg25273 +S'etching' +p213957 +sg25275 +S'1935' +p213958 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007b/a0007bff.jpg' +p213959 +sg25267 +g27 +sa(dp213960 +g25268 +S'Launds' +p213961 +sg25270 +S'F.L. Griggs' +p213962 +sg25273 +S'etching' +p213963 +sg25275 +S'1928' +p213964 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007b/a0007bf8.jpg' +p213965 +sg25267 +g27 +sa(dp213966 +g25268 +S'Sunset and Moonrise at Cilian-Aeron' +p213967 +sg25270 +S'F.L. Griggs' +p213968 +sg25273 +S'pen and black ink with black chalk' +p213969 +sg25275 +S'1902' +p213970 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bc2.jpg' +p213971 +sg25267 +g27 +sa(dp213972 +g25273 +S'lithograph' +p213973 +sg25267 +g27 +sg25275 +S'unknown date\n' +p213974 +sg25268 +S'Summer Lunch' +p213975 +sg25270 +S'Minnetta Good' +p213976 +sa(dp213977 +g25273 +S'engraving' +p213978 +sg25267 +g27 +sg25275 +S'1929' +p213979 +sg25268 +S'Title Page' +p213980 +sg25270 +S'Stephen Gooden' +p213981 +sa(dp213982 +g25273 +S'engraving' +p213983 +sg25267 +g27 +sg25275 +S'1925' +p213984 +sg25268 +S'Title Page' +p213985 +sg25270 +S'Stephen Gooden' +p213986 +sa(dp213987 +g25268 +S'Picador Caught by a Bull' +p213988 +sg25270 +S'Francisco de Goya' +p213989 +sg25273 +S'lithograph on wove paper [edition impression printed by Gaulon in Bordeaux in 1825]' +p213990 +sg25275 +S'1825' +p213991 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000edb2.jpg' +p213992 +sg25267 +g27 +sa(dp213993 +g25273 +S'engraving' +p213994 +sg25267 +g27 +sg25275 +S'1936' +p213995 +sg25268 +S'A City and a Country Mouse' +p213996 +sg25270 +S'Stephen Gooden' +p213997 +sa(dp213998 +g25273 +S'engraving' +p213999 +sg25267 +g27 +sg25275 +S'1935' +p214000 +sg25268 +S'A Wolf and a Kid' +p214001 +sg25270 +S'Stephen Gooden' +p214002 +sa(dp214003 +g25273 +S'engraving' +p214004 +sg25267 +g27 +sg25275 +S'1932' +p214005 +sg25268 +S'Bookplate of Imperial Defence College Library' +p214006 +sg25270 +S'Stephen Gooden' +p214007 +sa(dp214008 +g25268 +S'Cain Killing Abel' +p214009 +sg25270 +S'Jan Gossaert' +p214010 +sg25273 +S'woodcut' +p214011 +sg25275 +S'unknown date\n' +p214012 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfed.jpg' +p214013 +sg25267 +g27 +sa(dp214014 +g25268 +S'Two Apprentices Fighting' +p214015 +sg25270 +S'Jean de Gourmont I' +p214016 +sg25273 +S'engraving' +p214017 +sg25275 +S'unknown date\n' +p214018 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008397.jpg' +p214019 +sg25267 +g27 +sa(dp214020 +g25268 +S'Isabel de Borbon' +p214021 +sg25270 +S'Artist Information (' +p214022 +sg25273 +S'(artist after)' +p214023 +sg25275 +S'\n' +p214024 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000edae.jpg' +p214025 +sg25267 +g27 +sa(dp214026 +g25268 +S'Isabel de Borbon' +p214027 +sg25270 +S'Artist Information (' +p214028 +sg25273 +S'(artist after)' +p214029 +sg25275 +S'\n' +p214030 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000edab.jpg' +p214031 +sg25267 +g27 +sa(dp214032 +g25268 +S'Dios se lo pague a vsted (May God Repay You)' +p214033 +sg25270 +S'Francisco de Goya' +p214034 +sg25273 +S'etching, aquatint and drypoint [trial proof printed posthumously before 1867]' +p214035 +sg25275 +S'probably c. 1804' +p214036 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed68.jpg' +p214037 +sg25267 +g27 +sa(dp214038 +g25268 +S'The Garroted Man' +p214039 +sg25270 +S'Francisco de Goya' +p214040 +sg25273 +S'etching and (burin?) on smooth wove paper [second edition impression printed about 1830]' +p214041 +sg25275 +S'in or before 1780' +p214042 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed6d.jpg' +p214043 +sg25267 +g27 +sa(dp214044 +g25268 +S'Christ in the Garden of Gethsemane' +p214045 +sg25270 +S'German 16th Century' +p214046 +sg25273 +S'overall: 19 x 16 cm (7 1/2 x 6 5/16 in.)' +p214047 +sg25275 +S'\npen and brush and black ink with gray wash heightened with white on gray prepared paper' +p214048 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c69b.jpg' +p214049 +sg25267 +g27 +sa(dp214050 +g25268 +S'Dibersion de Espa\xc3\xb1a (Spanish Entertainment)' +p214051 +sg25270 +S'Francisco de Goya' +p214052 +sg25273 +S'lithograph on wove paper [edition impression printed by Gaulon in Bordeaux in 1825]' +p214053 +sg25275 +S'1825' +p214054 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00016/a0001640.jpg' +p214055 +sg25267 +g27 +sa(dp214056 +g25273 +S'1 vol: 80 etchings, aquatints, drypoints, and burins' +p214057 +sg25267 +g27 +sg25275 +S'published 1799' +p214058 +sg25268 +S'Los caprichos (first edition)' +p214059 +sg25270 +S'Francisco de Goya' +p214060 +sa(dp214061 +g25268 +S'Francesco Goya y Lucientes, Pintor' +p214062 +sg25270 +S'Francisco de Goya' +p214063 +sg25273 +S'etching, aquatint, drypoint, and burin' +p214064 +sg25275 +S'published 1799' +p214065 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057d3.jpg' +p214066 +sg25267 +g27 +sa(dp214067 +g25268 +S'Quien mas rendido? (Which of Them Is the More Overcome?)' +p214068 +sg25270 +S'Francisco de Goya' +p214069 +sg25273 +S'etching, aquatint, and drypoint' +p214070 +sg25275 +S'published 1799' +p214071 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057d4.jpg' +p214072 +sg25267 +g27 +sa(dp214073 +g25273 +S'etching, burnished aquatint, and burin' +p214074 +sg25267 +g27 +sg25275 +S'published 1799' +p214075 +sg25268 +S'Que pico de oro! (What a Golden Beak!)' +p214076 +sg25270 +S'Francisco de Goya' +p214077 +sa(dp214078 +g25268 +S'Nadie nos ha visto (No One Has Seen Us)' +p214079 +sg25270 +S'Francisco de Goya' +p214080 +sg25273 +S'etching, burnished aquatint, and burin' +p214081 +sg25275 +S'published 1799' +p214082 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057d5.jpg' +p214083 +sg25267 +g27 +sa(dp214084 +g25273 +S'etching and burnished aquatint' +p214085 +sg25267 +g27 +sg25275 +S'published 1799' +p214086 +sg25268 +S'El si pronuncian y la mano alargan al primero que llega (They Say Yes and Give Their Hand to the First Comer)' +p214087 +sg25270 +S'Francisco de Goya' +p214088 +sa(dp214089 +g25273 +S'etching, aquatint, and burin' +p214090 +sg25267 +g27 +sg25275 +S'published 1799' +p214091 +sg25268 +S'Chiton (Hush)' +p214092 +sg25270 +S'Francisco de Goya' +p214093 +sa(dp214094 +g25273 +S'etching and aquatint' +p214095 +sg25267 +g27 +sg25275 +S'published 1799' +p214096 +sg25268 +S'El vergonzoso (The Shamefaced One)' +p214097 +sg25270 +S'Francisco de Goya' +p214098 +sa(dp214099 +g25273 +S'etching, burnished aquatint, drypoint, and burin' +p214100 +sg25267 +g27 +sg25275 +S'published 1799' +p214101 +sg25268 +S'Ya es hora (It Is Time)' +p214102 +sg25270 +S'Francisco de Goya' +p214103 +sa(dp214104 +g25268 +S'Que viene el coco (Here Comes the Bogey-Man)' +p214105 +sg25270 +S'Francisco de Goya' +p214106 +sg25273 +S'etching and burnished aquatint' +p214107 +sg25275 +S'published 1799' +p214108 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057d6.jpg' +p214109 +sg25267 +g27 +sa(dp214110 +g25268 +S'Bullfight in a Divided Ring' +p214111 +sg25270 +S'Francisco de Goya' +p214112 +sg25273 +S'lithograph on wove paper [edition impression printed by Gaulon in Bordeaux in 1825]' +p214113 +sg25275 +S'1825' +p214114 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a0005782.jpg' +p214115 +sg25267 +g27 +sa(dp214116 +g25273 +S'etching, burnished aquatint, and drypoint' +p214117 +sg25267 +g27 +sg25275 +S'published 1799' +p214118 +sg25268 +S'Esto si que es leer (That Certainly Is Being Able To Read)' +p214119 +sg25270 +S'Francisco de Goya' +p214120 +sa(dp214121 +g25273 +S'etching, burnished aquatint, and drypoint' +p214122 +sg25267 +g27 +sg25275 +S'published 1799' +p214123 +sg25268 +S'Hasta la muerte (Until Death)' +p214124 +sg25270 +S'Francisco de Goya' +p214125 +sa(dp214126 +g25273 +S'etching and burnished aquatint' +p214127 +sg25267 +g27 +sg25275 +S'published 1799' +p214128 +sg25268 +S"El de la rollona (Nanny's Boy)" +p214129 +sg25270 +S'Francisco de Goya' +p214130 +sa(dp214131 +g25273 +S'etching, burnished aquatint, and drypoint' +p214132 +sg25267 +g27 +sg25275 +S'published 1799' +p214133 +sg25268 +S'Porque esconderlos? (Why Hide Them?)' +p214134 +sg25270 +S'Francisco de Goya' +p214135 +sa(dp214136 +g25273 +S'etching and burnished aquatint' +p214137 +sg25267 +g27 +sg25275 +S'published 1799' +p214138 +sg25268 +S'Subir y bajar (To Rise and To Fall)' +p214139 +sg25270 +S'Francisco de Goya' +p214140 +sa(dp214141 +g25273 +S'etching, aquatint, and drypoint' +p214142 +sg25267 +g27 +sg25275 +S'published 1799' +p214143 +sg25268 +S'Tal para qual (Two of a Kind)' +p214144 +sg25270 +S'Francisco de Goya' +p214145 +sa(dp214146 +g25273 +S'etching, burnished aquatint, drypoint, burin' +p214147 +sg25267 +g27 +sg25275 +S'published 1799' +p214148 +sg25268 +S'Ruega por ella (She Prays for Her)' +p214149 +sg25270 +S'Francisco de Goya' +p214150 +sa(dp214151 +g25273 +S'etching and aquatint' +p214152 +sg25267 +g27 +sg25275 +S'published 1799' +p214153 +sg25268 +S'La filiacion (The Filiation)' +p214154 +sg25270 +S'Francisco de Goya' +p214155 +sa(dp214156 +g25273 +S'etching and burnished aquatint' +p214157 +sg25267 +g27 +sg25275 +S'published 1799' +p214158 +sg25268 +S'Nadie se conoce (Nobody Knows Himself)' +p214159 +sg25270 +S'Francisco de Goya' +p214160 +sa(dp214161 +g25268 +S'Por que fue sensible (Because She Was Susceptible)' +p214162 +sg25270 +S'Francisco de Goya' +p214163 +sg25273 +S'aquatint' +p214164 +sg25275 +S'published 1799' +p214165 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a0005804.jpg' +p214166 +sg25267 +g27 +sa(dp214167 +g25268 +S'Sylvester (Douglas) Lord Glenbervie; Katherine Anne (North) Glenbervie; Frederic (North) Earl of Guilford; Frederic Sylvester Douglas' +p214168 +sg25270 +S'Jean-Auguste-Dominique Ingres' +p214169 +sg25273 +S'lithograph, four portraits printed on one sheet' +p214170 +sg25275 +S'1815' +p214171 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004fbc.jpg' +p214172 +sg25267 +g27 +sa(dp214173 +g25273 +S'etching, burnished aquatint, and drypoint' +p214174 +sg25267 +g27 +sg25275 +S'published 1799' +p214175 +sg25268 +S'Tragala perro (Swallow It, Dog)' +p214176 +sg25270 +S'Francisco de Goya' +p214177 +sa(dp214178 +g25273 +S'etching, aquatint, and drypoint' +p214179 +sg25267 +g27 +sg25275 +S'published 1799' +p214180 +sg25268 +S'Ni asi la distingue (Even Thus He Cannot Make Her Out)' +p214181 +sg25270 +S'Francisco de Goya' +p214182 +sa(dp214183 +g25273 +S'etching, aquatint, drypoint, and burin' +p214184 +sg25267 +g27 +sg25275 +S'published 1799' +p214185 +sg25268 +S'Al Conde Palatino (To the Count Palatine)' +p214186 +sg25270 +S'Francisco de Goya' +p214187 +sa(dp214188 +g25273 +S'etching, burnished aquatint, and burin' +p214189 +sg25267 +g27 +sg25275 +S'published 1799' +p214190 +sg25268 +S"Y aun no se van! (And Still They Don't Go!)" +p214191 +sg25270 +S'Francisco de Goya' +p214192 +sa(dp214193 +g25273 +S'etching and aquatint' +p214194 +sg25267 +g27 +sg25275 +S'published 1799' +p214195 +sg25268 +S'Que se la llevaron (They Carried Her Off)' +p214196 +sg25270 +S'Francisco de Goya' +p214197 +sa(dp214198 +g25273 +S'etching and burnished aquatint' +p214199 +sg25267 +g27 +sg25275 +S'published 1799' +p214200 +sg25268 +S'Las rinde el sueno (Sleep Overcomes Them)' +p214201 +sg25270 +S'Francisco de Goya' +p214202 +sa(dp214203 +g25273 +S'etching, aquatint, and burin' +p214204 +sg25267 +g27 +sg25275 +S'published 1799' +p214205 +sg25268 +S'Ensayos (Trials)' +p214206 +sg25270 +S'Francisco de Goya' +p214207 +sa(dp214208 +g25273 +S'etching and burnished aquatint' +p214209 +sg25267 +g27 +sg25275 +S'published 1799' +p214210 +sg25268 +S'Tantalo (Tantalus)' +p214211 +sg25270 +S'Francisco de Goya' +p214212 +sa(dp214213 +g25273 +S'etching and burnished aquatint' +p214214 +sg25267 +g27 +sg25275 +S'published 1799' +p214215 +sg25268 +S'Le descanona (She Fleeces Him)' +p214216 +sg25270 +S'Francisco de Goya' +p214217 +sa(dp214218 +g25268 +S'Volaverunt (They Have Flown)' +p214219 +sg25270 +S'Francisco de Goya' +p214220 +sg25273 +S'etching, aquatint, and drypoint' +p214221 +sg25275 +S'published 1799' +p214222 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057d7.jpg' +p214223 +sg25267 +g27 +sa(dp214224 +g25268 +S'The Poet Virgil Suspended in a Basket' +p214225 +sg25270 +S'Lucas van Leyden' +p214226 +sg25273 +S'woodcut' +p214227 +sg25275 +S'c. 1512' +p214228 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f48.jpg' +p214229 +sg25267 +g27 +sa(dp214230 +g25268 +S'El amour y la muerte (Love and Death)' +p214231 +sg25270 +S'Francisco de Goya' +p214232 +sg25273 +S'etching, burnished aquatint, and burin' +p214233 +sg25275 +S'published 1799' +p214234 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057d8.jpg' +p214235 +sg25267 +g27 +sa(dp214236 +g25273 +S'etching and burnished aquatint' +p214237 +sg25267 +g27 +sg25275 +S'published 1799' +p214238 +sg25268 +S'Mala noche (A Bad Night)' +p214239 +sg25270 +S'Francisco de Goya' +p214240 +sa(dp214241 +g25268 +S'Quien lo creyera! (Who Would Have Thought It!)' +p214242 +sg25270 +S'Francisco de Goya' +p214243 +sg25273 +S'etching, burnished aquatint, and burin' +p214244 +sg25275 +S'published 1799' +p214245 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a000613a.jpg' +p214246 +sg25267 +g27 +sa(dp214247 +g25273 +S'etching, burnished aquatint, and burin' +p214248 +sg25267 +g27 +sg25275 +S'published 1799' +p214249 +sg25268 +S'Muchachos al avio (Lads Making Ready)' +p214250 +sg25270 +S'Francisco de Goya' +p214251 +sa(dp214252 +g25273 +S'etching, aquatint, and burin' +p214253 +sg25267 +g27 +sg25275 +S'published 1799' +p214254 +sg25268 +S'Si sabra mas el discipulo? (Might Not the Pupil Know More?)' +p214255 +sg25270 +S'Francisco de Goya' +p214256 +sa(dp214257 +g25273 +S'etching, aquatint, and drypoint' +p214258 +sg25267 +g27 +sg25275 +S'published 1799' +p214259 +sg25268 +S'Miren que grabes! (Look How Solemn They Are!)' +p214260 +sg25270 +S'Francisco de Goya' +p214261 +sa(dp214262 +g25268 +S'A caza de dientes (Out Hunting for Teeth)' +p214263 +sg25270 +S'Francisco de Goya' +p214264 +sg25273 +S'etching, burnished aquatint, and burin' +p214265 +sg25275 +S'published 1799' +p214266 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057d9.jpg' +p214267 +sg25267 +g27 +sa(dp214268 +g25273 +S'etching, burnished aquatint, and drypoint' +p214269 +sg25267 +g27 +sg25275 +S'published 1799' +p214270 +sg25268 +S'Brabisimo! (Bravo!)' +p214271 +sg25270 +S'Francisco de Goya' +p214272 +sa(dp214273 +g25273 +S'etching, burnished aquatint, and engraving on laid paper' +p214274 +sg25267 +g27 +sg25275 +S'published 1799' +p214275 +sg25268 +S'Buen Viage (Bon Voyage)' +p214276 +sg25270 +S'Francisco de Goya' +p214277 +sa(dp214278 +g25273 +S'etching and burnished aquatint' +p214279 +sg25267 +g27 +sg25275 +S'published 1799' +p214280 +sg25268 +S'Estan calientes (They Are Hot)' +p214281 +sg25270 +S'Francisco de Goya' +p214282 +sa(dp214283 +g25268 +S'Title Plate' +p214284 +sg25270 +S'Canaletto' +p214285 +sg25273 +S'etching' +p214286 +sg25275 +S'c. 1735/1746' +p214287 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb3f.jpg' +p214288 +sg25267 +g27 +sa(dp214289 +g25268 +S'Asta su abuelo (And So Was His Grandfather)' +p214290 +sg25270 +S'Francisco de Goya' +p214291 +sg25273 +S'aquatint' +p214292 +sg25275 +S'published 1799' +p214293 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00054/a0005488.jpg' +p214294 +sg25267 +g27 +sa(dp214295 +g25273 +S'etching, aquatint, and drypoint' +p214296 +sg25267 +g27 +sg25275 +S'published 1799' +p214297 +sg25268 +S'Donde va mama? (Where Is Mother Going?)' +p214298 +sg25270 +S'Francisco de Goya' +p214299 +sa(dp214300 +g25273 +S'etching, burnished aquatint, and drypoint' +p214301 +sg25267 +g27 +sg25275 +S'published 1799' +p214302 +sg25268 +S'Que sacrificio! (What a Sacrifice!)' +p214303 +sg25270 +S'Francisco de Goya' +p214304 +sa(dp214305 +g25273 +S'etching and aquatint' +p214306 +sg25267 +g27 +sg25275 +S'published 1799' +p214307 +sg25268 +S'De que mal morira? (Of What Ill Will He Die?)' +p214308 +sg25270 +S'Francisco de Goya' +p214309 +sa(dp214310 +g25273 +S'etching, aquatint, and drypoint' +p214311 +sg25267 +g27 +sg25275 +S'published 1799' +p214312 +sg25268 +S'Alla va eso (There It Goes)' +p214313 +sg25270 +S'Francisco de Goya' +p214314 +sa(dp214315 +g25273 +S'etching, burnished aquatint, and burin' +p214316 +sg25267 +g27 +sg25275 +S'published 1799' +p214317 +sg25268 +S'Bellos consejos (Pretty Teachings)' +p214318 +sg25270 +S'Francisco de Goya' +p214319 +sa(dp214320 +g25268 +S'Ni mas ni menos (Neither More nor Less)' +p214321 +sg25270 +S'Francisco de Goya' +p214322 +sg25273 +S'etching, burnished aquatint, drypoint, and burin' +p214323 +sg25275 +S'published 1799' +p214324 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057da.jpg' +p214325 +sg25267 +g27 +sa(dp214326 +g25273 +S'etching, burnished aquatint, and drypoint' +p214327 +sg25267 +g27 +sg25275 +S'published 1799' +p214328 +sg25268 +S"Aguarda que te unten (Wait Till You've Been Annointed)" +p214329 +sg25270 +S'Francisco de Goya' +p214330 +sa(dp214331 +g25273 +S'etching, aquatint, and drypoint' +p214332 +sg25267 +g27 +sg25275 +S'published 1799' +p214333 +sg25268 +S"Dios la perdone: y era su madre (For Heaven's Sake: And It Was Her Mother)" +p214334 +sg25270 +S'Francisco de Goya' +p214335 +sa(dp214336 +g25273 +S'etching and burnished aquatint' +p214337 +sg25267 +g27 +sg25275 +S'published 1799' +p214338 +sg25268 +S'Tu que no puedes (Thou Who Canst Not)' +p214339 +sg25270 +S'Francisco de Goya' +p214340 +sa(dp214341 +g25268 +S'Portrait of a Member of the Haarlem Civic Guard' +p214342 +sg25270 +S'Frans Hals' +p214343 +sg25273 +S'oil on canvas' +p214344 +sg25275 +S'c. 1636/1638' +p214345 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e4e.jpg' +p214346 +sg25267 +S"The steel breastplate identifies this sitter as a soldier, but his broad-brimmed hat and lace collar and cuffs reveal that he is dressed to pose for an artist, not to engage in military maneuvers. Hals painted six gigantic group portraits of Dutch civic guards, but this is his only known portrait of an individual soldier.\n As the Netherlands fractured into north and south along political and religious lines in the late 1500s, the civic guards battled heroically to win the north's independence from Spain. By Hals' time, though, these numerous militias had become social fraternities. Named for a patron saint, each guard group was divided into three companies based on the colors of the Dutch flag: orange, white, and blue. His sash marks this soldier as a member of an orange company.\n With great bravura, the smiling man stands before a window overlooking a distant plain or sea. Only two of Hals' other portraits of single figures include such landscape vistas.\n " +p214347 +sa(dp214348 +g25268 +S'La Torre di Malghera' +p214349 +sg25270 +S'Canaletto' +p214350 +sg25273 +S'etching' +p214351 +sg25275 +S'c. 1735/1746' +p214352 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbdb.jpg' +p214353 +sg25267 +g27 +sa(dp214354 +g25273 +S'etching, burnished aquatint, and drypoint' +p214355 +sg25267 +g27 +sg25275 +S'published 1799' +p214356 +sg25268 +S'Linda maestra! (Pretty Teacher!)' +p214357 +sg25270 +S'Francisco de Goya' +p214358 +sa(dp214359 +g25273 +S'etching, burnished aquatint, and burin' +p214360 +sg25267 +g27 +sg25275 +S'published 1799' +p214361 +sg25268 +S'Bien tirada esta (It is Nicely Stretched)' +p214362 +sg25270 +S'Francisco de Goya' +p214363 +sa(dp214364 +g25268 +S'El sueno de la razon produce monstruos (The Sleep of Reason Produces Monsters)' +p214365 +sg25270 +S'Francisco de Goya' +p214366 +sg25273 +S'etching and aquatint' +p214367 +sg25275 +S'published 1799' +p214368 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f35.jpg' +p214369 +sg25267 +g27 +sa(dp214370 +g25273 +S'etching, aquatint, drypoint, and burin' +p214371 +sg25267 +g27 +sg25275 +S'published 1799' +p214372 +sg25268 +S'Sopla (Blow)' +p214373 +sg25270 +S'Francisco de Goya' +p214374 +sa(dp214375 +g25273 +S'etching and burnished aquatint' +p214376 +sg25267 +g27 +sg25275 +S'published 1799' +p214377 +sg25268 +S'Ysele quema la casa (And His House is on Fire)' +p214378 +sg25270 +S'Francisco de Goya' +p214379 +sa(dp214380 +g25273 +S'etching, aquatint, drypoint, and burin' +p214381 +sg25267 +g27 +sg25275 +S'published 1799' +p214382 +sg25268 +S'Hilan delgado (They Spin Finely)' +p214383 +sg25270 +S'Francisco de Goya' +p214384 +sa(dp214385 +g25273 +S'etching, aquatint, and drypoint' +p214386 +sg25267 +g27 +sg25275 +S'published 1799' +p214387 +sg25268 +S'Devota profesion (Devout Profession)' +p214388 +sg25270 +S'Francisco de Goya' +p214389 +sa(dp214390 +g25273 +S'etching and burnished aquatint' +p214391 +sg25267 +g27 +sg25275 +S'published 1799' +p214392 +sg25268 +S'Todos caeran (All Will Fall)' +p214393 +sg25270 +S'Francisco de Goya' +p214394 +sa(dp214395 +g25273 +S'etching and burnished aquatint' +p214396 +sg25267 +g27 +sg25275 +S'published 1799' +p214397 +sg25268 +S'Mucho hay que chupar (There Is Plenty To Suck)' +p214398 +sg25270 +S'Francisco de Goya' +p214399 +sa(dp214400 +g25273 +S'etching, burnished aquatint, and burin' +p214401 +sg25267 +g27 +sg25275 +S'published 1799' +p214402 +sg25268 +S'Si amanece; nos vamos (When Day Breaks We Will Be Off)' +p214403 +sg25270 +S'Francisco de Goya' +p214404 +sa(dp214405 +g25268 +S'Mestre' +p214406 +sg25270 +S'Canaletto' +p214407 +sg25273 +S'etching' +p214408 +sg25275 +S'c. 1735/1746' +p214409 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f0a.jpg' +p214410 +sg25267 +g27 +sa(dp214411 +g25273 +S'etching, burnished aquatint, and drypoint' +p214412 +sg25267 +g27 +sg25275 +S'published 1799' +p214413 +sg25268 +S'Ya van desplumados (There They Go Plucked)' +p214414 +sg25270 +S'Francisco de Goya' +p214415 +sa(dp214416 +g25273 +S'etching and burnished aquatint' +p214417 +sg25267 +g27 +sg25275 +S'published 1799' +p214418 +sg25268 +S'Correccion (Correction)' +p214419 +sg25270 +S'Francisco de Goya' +p214420 +sa(dp214421 +g25268 +S'No te escaparas (You Will Not Escape)' +p214422 +sg25270 +S'Francisco de Goya' +p214423 +sg25273 +S'etching and burnished aquatint' +p214424 +sg25275 +S'published 1799' +p214425 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057db.jpg' +p214426 +sg25267 +g27 +sa(dp214427 +g25273 +S'etching and burnished aquatint' +p214428 +sg25267 +g27 +sg25275 +S'published 1799' +p214429 +sg25268 +S'Qual la descanonan! (How They Pluck Her!)' +p214430 +sg25270 +S'Francisco de Goya' +p214431 +sa(dp214432 +g25273 +S'etching, burnished aquatint, and burin' +p214433 +sg25267 +g27 +sg25275 +S'published 1799' +p214434 +sg25268 +S'Obsequio a el maestro (A Gift for the Master)' +p214435 +sg25270 +S'Francisco de Goya' +p214436 +sa(dp214437 +g25273 +S'etching, burnished aquatint, and burin' +p214438 +sg25267 +g27 +sg25275 +S'published 1799' +p214439 +sg25268 +S'Mejor es holgar (It Is Better To Be Lazy)' +p214440 +sg25270 +S'Francisco de Goya' +p214441 +sa(dp214442 +g25273 +S'etching and burnished aquatint' +p214443 +sg25267 +g27 +sg25275 +S'published 1799' +p214444 +sg25268 +S'Pobrecitas! (Poor Little Girls!)' +p214445 +sg25270 +S'Francisco de Goya' +p214446 +sa(dp214447 +g25273 +S'etching and burnished aquatint' +p214448 +sg25267 +g27 +sg25275 +S'published 1799' +p214449 +sg25268 +S'Soplones (Tale-Bearers -- Blasts of Wind)' +p214450 +sg25270 +S'Francisco de Goya' +p214451 +sa(dp214452 +g25273 +S'etching and burnished aquatint' +p214453 +sg25267 +g27 +sg25275 +S'published 1799' +p214454 +sg25268 +S"No grites, tonta (Don't Scream, Stupid)" +p214455 +sg25270 +S'Francisco de Goya' +p214456 +sa(dp214457 +g25273 +S'etching, burnished aquatint, drypoint, and burin' +p214458 +sg25267 +g27 +sg25275 +S'published 1799' +p214459 +sg25268 +S'Aquellos polbos (Those Specks of Dust)' +p214460 +sg25270 +S'Francisco de Goya' +p214461 +sa(dp214462 +g25268 +S'Al Dolo' +p214463 +sg25270 +S'Canaletto' +p214464 +sg25273 +S'etching' +p214465 +sg25275 +S'c. 1735/1746' +p214466 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbde.jpg' +p214467 +sg25267 +g27 +sa(dp214468 +g25268 +S'Duendecitos (Hobgoblins)' +p214469 +sg25270 +S'Francisco de Goya' +p214470 +sg25273 +S'etching and burnished aquatint' +p214471 +sg25275 +S'published 1799' +p214472 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057dc.jpg' +p214473 +sg25267 +g27 +sa(dp214474 +g25273 +S'etching and burnished aquatint' +p214475 +sg25267 +g27 +sg25275 +S'published 1799' +p214476 +sg25268 +S"No hay quien nos desate? (Can't Anyone Untie Us?)" +p214477 +sg25270 +S'Francisco de Goya' +p214478 +sa(dp214479 +g25273 +S'etching and burnished aquatint' +p214480 +sg25267 +g27 +sg25275 +S'published 1799' +p214481 +sg25268 +S'Nohubo remedio (Nothing Could Be Done about It)' +p214482 +sg25270 +S'Francisco de Goya' +p214483 +sa(dp214484 +g25273 +S'etching, burnished aquatint, and burin' +p214485 +sg25267 +g27 +sg25275 +S'published 1799' +p214486 +sg25268 +S'Los chinchillas (The Chinchillas)' +p214487 +sg25270 +S'Francisco de Goya' +p214488 +sa(dp214489 +g25273 +S'etching and burnished aquatint' +p214490 +sg25267 +g27 +sg25275 +S'published 1799' +p214491 +sg25268 +S'Esta umd. ... pues, como digo ... Eh! Cuidado! Si no! ... (You Understand? ... Well, as I Say ... eh! Look Out! Otherwise ...)' +p214492 +sg25270 +S'Francisco de Goya' +p214493 +sa(dp214494 +g25273 +S'etching, aquatint, and drypoint' +p214495 +sg25267 +g27 +sg25275 +S'published 1799' +p214496 +sg25268 +S'Si quebro el cantaro (Yes He Broke the Pot)' +p214497 +sg25270 +S'Francisco de Goya' +p214498 +sa(dp214499 +g25273 +S'etching, burnished aquatint, and burin' +p214500 +sg25267 +g27 +sg25275 +S'published 1799' +p214501 +sg25268 +S'Se Repulen (They Spruce Themselves Up)' +p214502 +sg25270 +S'Francisco de Goya' +p214503 +sa(dp214504 +g25273 +S'etching, burnished aquatint, drypoint, and burin' +p214505 +sg25267 +g27 +sg25275 +S'published 1799' +p214506 +sg25268 +S'Unos a otros (What One Does to Another)' +p214507 +sg25270 +S'Francisco de Goya' +p214508 +sa(dp214509 +g25273 +S'etching and burnished aquatint' +p214510 +sg25267 +g27 +sg25275 +S'published 1799' +p214511 +sg25268 +S"Ya tienen asiento (They've Already Got a Seat)" +p214512 +sg25270 +S'Francisco de Goya' +p214513 +sa(dp214514 +g25273 +S'etching, burnished aquatint, and burin' +p214515 +sg25267 +g27 +sg25275 +S'published 1799' +p214516 +sg25268 +S'Lo que puede un sastre! (What a Tailor Can Do!)' +p214517 +sg25270 +S'Francisco de Goya' +p214518 +sa(dp214519 +g25268 +S'Ale Porte del Dolo' +p214520 +sg25270 +S'Canaletto' +p214521 +sg25273 +S'etching' +p214522 +sg25275 +S'c. 1735/1746' +p214523 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbe3.jpg' +p214524 +sg25267 +g27 +sa(dp214525 +g25273 +S'etching, burnished aquatint, and burin' +p214526 +sg25267 +g27 +sg25275 +S'published 1799' +p214527 +sg25268 +S'Despacha, que dispiertan (Be Quick, They Are Waking Up)' +p214528 +sg25270 +S'Francisco de Goya' +p214529 +sa(dp214530 +g25273 +S'1 vol: ill: 80 etchings, lavis, drypoints, and burins' +p214531 +sg25267 +g27 +sg25275 +S'published 1863' +p214532 +sg25268 +S'Los desastres de la guerra (first edition)' +p214533 +sg25270 +S'Francisco de Goya' +p214534 +sa(dp214535 +g25273 +S'etching, burin, drypoint, and burnisher' +p214536 +sg25267 +g27 +sg25275 +S'published 1863' +p214537 +sg25268 +S'Tristes presentimientos de lo que ha acontecer (Sad Forebodings of What Is Going to Happen)' +p214538 +sg25270 +S'Francisco de Goya' +p214539 +sa(dp214540 +g25273 +S'etching, lavis, drypoint, burin, and burnisher' +p214541 +sg25267 +g27 +sg25275 +S'published 1863' +p214542 +sg25268 +S'Caridad (Charity)' +p214543 +sg25270 +S'Francisco de Goya' +p214544 +sa(dp214545 +g25273 +S'etching, burnished aquatint, lavis, burin, and burnisher' +p214546 +sg25267 +g27 +sg25275 +S'published 1863' +p214547 +sg25268 +S'Espiro sin remedio (There Was Nothing To Be Done and He Died)' +p214548 +sg25270 +S'Francisco de Goya' +p214549 +sa(dp214550 +g25273 +S'etching and burnisher' +p214551 +sg25267 +g27 +sg25275 +S'published 1863' +p214552 +sg25268 +S'Murio la verdad (Truth Has Died)' +p214553 +sg25270 +S'Francisco de Goya' +p214554 +sa(dp214555 +g25268 +S'Le Porte Del Dolo' +p214556 +sg25270 +S'Canaletto' +p214557 +sg25273 +S'etching' +p214558 +sg25275 +S'c. 1735/1746' +p214559 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbe0.jpg' +p214560 +sg25267 +g27 +sa(dp214561 +g25273 +S'etching, lavis, drypoint, burin, and burnisher' +p214562 +sg25267 +g27 +sg25275 +S'published 1863' +p214563 +sg25268 +S'Con razon o sin ella (Rightly or Wrongly)' +p214564 +sg25270 +S'Francisco de Goya' +p214565 +sa(dp214566 +g25273 +S'etching, lavis, drypoint, burin, and burnisher' +p214567 +sg25267 +g27 +sg25275 +S'published 1863' +p214568 +sg25268 +S'Populacho (Rabble)' +p214569 +sg25270 +S'Francisco de Goya' +p214570 +sa(dp214571 +g25273 +S'etching, lavis, burin, and burnisher' +p214572 +sg25267 +g27 +sg25275 +S'published 1863' +p214573 +sg25268 +S'Clamores en vano (Appeals Are In Vain)' +p214574 +sg25270 +S'Francisco de Goya' +p214575 +sa(dp214576 +g25273 +S'etching and burnisher' +p214577 +sg25267 +g27 +sg25275 +S'published 1863' +p214578 +sg25268 +S'Si resucitara? (Will She Rise Again?)' +p214579 +sg25270 +S'Francisco de Goya' +p214580 +sa(dp214581 +g25273 +S'etching, lavis, drypoint, burin, and burnisher' +p214582 +sg25267 +g27 +sg25275 +S'published 1863' +p214583 +sg25268 +S'Lo mismo (The Same)' +p214584 +sg25270 +S'Francisco de Goya' +p214585 +sa(dp214586 +g25273 +S'etching, drypoint, burin, and burnisher' +p214587 +sg25267 +g27 +sg25275 +S'published 1863' +p214588 +sg25268 +S'Lo merecia (He Deserved It)' +p214589 +sg25270 +S'Francisco de Goya' +p214590 +sa(dp214591 +g25273 +S'etching, lavis, and burnisher' +p214592 +sg25267 +g27 +sg25275 +S'published 1863' +p214593 +sg25268 +S'Lo peor es pedir (The Worst Is To Beg)' +p214594 +sg25270 +S'Francisco de Goya' +p214595 +sa(dp214596 +g25273 +S'etching, burnished aquatint, lavis, drypoint, and burnisher' +p214597 +sg25267 +g27 +sg25275 +S'published 1863' +p214598 +sg25268 +S'Las mugeres dan valor (The Women Give Courage)' +p214599 +sg25270 +S'Francisco de Goya' +p214600 +sa(dp214601 +g25273 +S'etching, drypoint, burin, and burnisher' +p214602 +sg25267 +g27 +sg25275 +S'published 1863' +p214603 +sg25268 +S'Estragos de la guerra (Ravages of War)' +p214604 +sg25270 +S'Francisco de Goya' +p214605 +sa(dp214606 +g25273 +S'etching, lavis, and drypoint' +p214607 +sg25267 +g27 +sg25275 +S'published 1863' +p214608 +sg25268 +S'Al cementerio (To the Cemetery)' +p214609 +sg25270 +S'Francisco de Goya' +p214610 +sa(dp214611 +g25268 +S'Pra della Valle' +p214612 +sg25270 +S'Canaletto' +p214613 +sg25273 +S'etching' +p214614 +sg25275 +S'c. 1735/1746' +p214615 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbf0.jpg' +p214616 +sg25267 +g27 +sa(dp214617 +g25268 +S'Y son fieras (And They Are Like Wild Beasts)' +p214618 +sg25270 +S'Francisco de Goya' +p214619 +sg25273 +S'etching, burnished aquatint, and drypoint' +p214620 +sg25275 +S'published 1863' +p214621 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057dd.jpg' +p214622 +sg25267 +g27 +sa(dp214623 +g25273 +S'etching, burnished aquatint, and drypoint' +p214624 +sg25267 +g27 +sg25275 +S'published 1863' +p214625 +sg25268 +S"Fuerte cosa es! (That's Tough!)" +p214626 +sg25270 +S'Francisco de Goya' +p214627 +sa(dp214628 +g25273 +S'etching, burnished aquatint, burin, and burnisher' +p214629 +sg25267 +g27 +sg25275 +S'published 1863' +p214630 +sg25268 +S'Sanos y enfermos (The Healthy and the Sick)' +p214631 +sg25270 +S'Francisco de Goya' +p214632 +sa(dp214633 +g25273 +S'etching, lavis, and burin' +p214634 +sg25267 +g27 +sg25275 +S'published 1863' +p214635 +sg25268 +S'Bien te se esta (It Serves You Right)' +p214636 +sg25270 +S'Francisco de Goya' +p214637 +sa(dp214638 +g25268 +S'Por que? (Why?)' +p214639 +sg25270 +S'Francisco de Goya' +p214640 +sg25273 +S'etching, lavis, drypoint, burin, and burnisher' +p214641 +sg25275 +S'published 1863' +p214642 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057de.jpg' +p214643 +sg25267 +g27 +sa(dp214644 +g25273 +S'etching, burnished aquatint, burin, and burnisher' +p214645 +sg25267 +g27 +sg25275 +S'published 1863' +p214646 +sg25268 +S"No hay que dar voces (It's No Use Crying Out)" +p214647 +sg25270 +S'Francisco de Goya' +p214648 +sa(dp214649 +g25268 +S'Que valor! (What Courage!)' +p214650 +sg25270 +S'Francisco de Goya' +p214651 +sg25273 +S'etching, aquatint, drypoint, burin, and burnisher' +p214652 +sg25275 +S'published 1863' +p214653 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057df.jpg' +p214654 +sg25267 +g27 +sa(dp214655 +g25273 +S'etching, lavis, drypoint, burin, and burnisher' +p214656 +sg25267 +g27 +sg25275 +S'published 1863' +p214657 +sg25268 +S'Que hai que hacer mas? (What More Can Be Done?)' +p214658 +sg25270 +S'Francisco de Goya' +p214659 +sa(dp214660 +g25273 +S'etching, burnished aquatint, and lavis' +p214661 +sg25267 +g27 +sg25275 +S'published 1863' +p214662 +sg25268 +S'De que sirve una taza? (What Is the Use of a Cup?)' +p214663 +sg25270 +S'Francisco de Goya' +p214664 +sa(dp214665 +g25273 +S'etching and drypoint' +p214666 +sg25267 +g27 +sg25275 +S'published 1863' +p214667 +sg25268 +S'Siempre sucede (It Always Happens)' +p214668 +sg25270 +S'Francisco de Goya' +p214669 +sa(dp214670 +g25268 +S'S. Giustina in pra della Vale' +p214671 +sg25270 +S'Canaletto' +p214672 +sg25273 +S'etching' +p214673 +sg25275 +S'c. 1735/1746' +p214674 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbe4.jpg' +p214675 +sg25267 +g27 +sa(dp214676 +g25273 +S'etching, drypoint, burin, and burnisher' +p214677 +sg25267 +g27 +sg25275 +S'published 1863' +p214678 +sg25268 +S'Por una navaja (On Account of a Knife)' +p214679 +sg25270 +S'Francisco de Goya' +p214680 +sa(dp214681 +g25273 +S'etching, burnished aquatint, burin, and burnisher' +p214682 +sg25267 +g27 +sg25275 +S'published 1863' +p214683 +sg25268 +S'No hay quien los socorra (There Is No One To Help Them)' +p214684 +sg25270 +S'Francisco de Goya' +p214685 +sa(dp214686 +g25273 +S'etching, burnished aquatint, drypoint, burin, and burnisher' +p214687 +sg25267 +g27 +sg25275 +S'published 1863' +p214688 +sg25268 +S"No Quieren (They Don't Like It)" +p214689 +sg25270 +S'Francisco de Goya' +p214690 +sa(dp214691 +g25268 +S"No se puede saber por que (One Can't Tell Why)" +p214692 +sg25270 +S'Francisco de Goya' +p214693 +sg25273 +S'etching, burnished lavis, drypoint, and burin' +p214694 +sg25275 +S'published 1863' +p214695 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057e0.jpg' +p214696 +sg25267 +g27 +sa(dp214697 +g25273 +S'etching, lavis, drypoint, burin, and burnisher' +p214698 +sg25267 +g27 +sg25275 +S'published 1863' +p214699 +sg25268 +S'Si son de otro linage (Perhaps They Are of Another Breed)' +p214700 +sg25270 +S'Francisco de Goya' +p214701 +sa(dp214702 +g25273 +S'etching and burin' +p214703 +sg25267 +g27 +sg25275 +S'published 1863' +p214704 +sg25268 +S'Tampoco (Nor [Do These] Either)' +p214705 +sg25270 +S'Francisco de Goya' +p214706 +sa(dp214707 +g25273 +S'etching, burnished aquatint, drypoint, burin, and burnisher' +p214708 +sg25267 +g27 +sg25275 +S'published 1863' +p214709 +sg25268 +S'Tampoco (Not [in this Case] Either)' +p214710 +sg25270 +S'Francisco de Goya' +p214711 +sa(dp214712 +g25273 +S'etching, lavis, drypoint, burin, and burnisher' +p214713 +sg25267 +g27 +sg25275 +S'published 1863' +p214714 +sg25268 +S'Las camas de la muerte (The Beds of Death)' +p214715 +sg25270 +S'Francisco de Goya' +p214716 +sa(dp214717 +g25268 +S'Ni por esas (Neither Do These)' +p214718 +sg25270 +S'Francisco de Goya' +p214719 +sg25273 +S'etching, lavis, drypoint, and burin' +p214720 +sg25275 +S'published 1863' +p214721 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c69d.jpg' +p214722 +sg25267 +g27 +sa(dp214723 +g25273 +S'etching, lavis, and drypoint' +p214724 +sg25267 +g27 +sg25275 +S'published 1863' +p214725 +sg25268 +S'Esto es peor (This is Worse)' +p214726 +sg25270 +S'Francisco de Goya' +p214727 +sa(dp214728 +g25268 +S'View of a Town on a River Bank' +p214729 +sg25270 +S'Canaletto' +p214730 +sg25273 +S'etching' +p214731 +sg25275 +S'c. 1735/1746' +p214732 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb3e.jpg' +p214733 +sg25267 +g27 +sa(dp214734 +g25273 +S'etching and burnished aquatint' +p214735 +sg25267 +g27 +sg25275 +S'published 1863' +p214736 +sg25268 +S'Muertos recogidos (Harvest of the Dead)' +p214737 +sg25270 +S'Francisco de Goya' +p214738 +sa(dp214739 +g25273 +S'etching, lavis, drypoint, and burin' +p214740 +sg25267 +g27 +sg25275 +S'published 1863' +p214741 +sg25268 +S'Para eso habeis nacido (This Is What You Were Born For)' +p214742 +sg25270 +S'Francisco de Goya' +p214743 +sa(dp214744 +g25273 +S'etching, burnished aquatint, burin, and burnisher' +p214745 +sg25267 +g27 +sg25275 +S'published 1863' +p214746 +sg25268 +S'Barbaros (Barbarians!)' +p214747 +sg25270 +S'Francisco de Goya' +p214748 +sa(dp214749 +g25273 +S'etching, aquatint, drypoint, burin, and burnisher' +p214750 +sg25267 +g27 +sg25275 +S'published 1863' +p214751 +sg25268 +S'Carretadas al cementerio (Cartloads to the Cemetery)' +p214752 +sg25270 +S'Francisco de Goya' +p214753 +sa(dp214754 +g25273 +S'etching, lavis, drypoint, burin, and burnisher' +p214755 +sg25267 +g27 +sg25275 +S'published 1863' +p214756 +sg25268 +S'Amarga presencia (Bitter To Be Present)' +p214757 +sg25270 +S'Francisco de Goya' +p214758 +sa(dp214759 +g25273 +S'etching, lavis, and drypoint' +p214760 +sg25267 +g27 +sg25275 +S'published 1863' +p214761 +sg25268 +S'Grande hazana! Con muertos! (An Heroic Feat! With Dead Men!' +p214762 +sg25270 +S'Francisco de Goya' +p214763 +sa(dp214764 +g25273 +S'etching, burnished aquatint, and/or lavis, burin, and burnisher' +p214765 +sg25267 +g27 +sg25275 +S'published 1863' +p214766 +sg25268 +S'Que alboroto es este? (What Is this Hubbub?)' +p214767 +sg25270 +S'Francisco de Goya' +p214768 +sa(dp214769 +g25273 +S'etching, burnished lavis, drypoint, and burin' +p214770 +sg25267 +g27 +sg25275 +S'published 1863' +p214771 +sg25268 +S"Duro es el paso! (It's a Hard Step!)" +p214772 +sg25270 +S'Francisco de Goya' +p214773 +sa(dp214774 +g25273 +S'etching, drypoint, and burin' +p214775 +sg25267 +g27 +sg25275 +S'published 1863' +p214776 +sg25268 +S'Algun partido saca (He Gets Something Out of It)' +p214777 +sg25270 +S'Francisco de Goya' +p214778 +sa(dp214779 +g25273 +S'etching, burnished aquatint or lavis, and burnisher' +p214780 +sg25267 +g27 +sg25275 +S'published 1863' +p214781 +sg25268 +S'Extrana devocion! (Strange Devotion!)' +p214782 +sg25270 +S'Francisco de Goya' +p214783 +sa(dp214784 +g25268 +S'The Portico with the Lantern' +p214785 +sg25270 +S'Canaletto' +p214786 +sg25273 +S'etching' +p214787 +sg25275 +S'c. 1735/1746' +p214788 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb3d.jpg' +p214789 +sg25267 +g27 +sa(dp214790 +g25268 +S"Y no hai remedio (And There's No Help for It)" +p214791 +sg25270 +S'Francisco de Goya' +p214792 +sg25273 +S'etching, drypoint, burin, and burnisher' +p214793 +sg25275 +S'published 1863' +p214794 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057e1.jpg' +p214795 +sg25267 +g27 +sa(dp214796 +g25273 +S'etching and burin' +p214797 +sg25267 +g27 +sg25275 +S'published 1863' +p214798 +sg25268 +S'Escapan entre las llamas (They Escape through the Flames)' +p214799 +sg25270 +S'Francisco de Goya' +p214800 +sa(dp214801 +g25273 +S'etching, burnished aquatint, drypoint, burin, and burnisher' +p214802 +sg25267 +g27 +sg25275 +S'published 1863' +p214803 +sg25268 +S'Esta no lo es menos (This Is Not Less So)' +p214804 +sg25270 +S'Francisco de Goya' +p214805 +sa(dp214806 +g25273 +S'etching, lavis, drypoint, burin, and burnisher' +p214807 +sg25267 +g27 +sg25275 +S'published 1863' +p214808 +sg25268 +S'Se aprovechan (They Make Use of Them)' +p214809 +sg25270 +S'Francisco de Goya' +p214810 +sa(dp214811 +g25273 +S'etching and burin' +p214812 +sg25267 +g27 +sg25275 +S'published 1863' +p214813 +sg25268 +S'Todo va revuelto (Everything Is Topsey-turvey)' +p214814 +sg25270 +S'Francisco de Goya' +p214815 +sa(dp214816 +g25273 +S'etching, lavis, and burin' +p214817 +sg25267 +g27 +sg25275 +S'published 1863' +p214818 +sg25268 +S'Que locura! (What Madness!)' +p214819 +sg25270 +S'Francisco de Goya' +p214820 +sa(dp214821 +g25268 +S'No se convienen (They Do Not Agree)' +p214822 +sg25270 +S'Francisco de Goya' +p214823 +sg25273 +S'etching, drypoint, burin, and burnisher' +p214824 +sg25275 +S'published 1863' +p214825 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057e2.jpg' +p214826 +sg25267 +g27 +sa(dp214827 +g25273 +S'etching, burnished aquatint, and burnisher' +p214828 +sg25267 +g27 +sg25275 +S'published 1863' +p214829 +sg25268 +S'Tambien esto (This Too)' +p214830 +sg25270 +S'Francisco de Goya' +p214831 +sa(dp214832 +g25273 +S'etching, burnished aquatint, lavis, drypoint, and burin' +p214833 +sg25267 +g27 +sg25275 +S'published 1863' +p214834 +sg25268 +S'Nada (Nothing)' +p214835 +sg25270 +S'Francisco de Goya' +p214836 +sa(dp214837 +g25273 +S'etching, burnished lavis, drypoint, and burin' +p214838 +sg25267 +g27 +sg25275 +S'published 1863' +p214839 +sg25268 +S'Enterrar y callar (Bury Them and Keep Quiet)' +p214840 +sg25270 +S'Francisco de Goya' +p214841 +sa(dp214842 +g25268 +S'Imaginary View of Padua' +p214843 +sg25270 +S'Canaletto' +p214844 +sg25273 +S'etching' +p214845 +sg25275 +S'c. 1735/1746' +p214846 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ffad.jpg' +p214847 +sg25267 +g27 +sa(dp214848 +g25268 +S'Yo lo vi (I Saw It)' +p214849 +sg25270 +S'Francisco de Goya' +p214850 +sg25273 +S'etching, drypoint, and burin' +p214851 +sg25275 +S'published 1863' +p214852 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057e3.jpg' +p214853 +sg25267 +g27 +sa(dp214854 +g25273 +S'etching, drypoint, burin, and burnisher' +p214855 +sg25267 +g27 +sg25275 +S'published 1863' +p214856 +sg25268 +S'No Saben el camino (They Do Not Know the Way)' +p214857 +sg25270 +S'Francisco de Goya' +p214858 +sa(dp214859 +g25273 +S'etching, lavis, drypoint, burin, and burnisher' +p214860 +sg25267 +g27 +sg25275 +S'published 1863' +p214861 +sg25268 +S"Ya no hay tiempo (There Isn't Time Now)" +p214862 +sg25270 +S'Francisco de Goya' +p214863 +sa(dp214864 +g25268 +S'Y esto tambien (And This Too)' +p214865 +sg25270 +S'Francisco de Goya' +p214866 +sg25273 +S'etching, aquatint or lavis, drypoint, and burin' +p214867 +sg25275 +S'published 1863' +p214868 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057e4.jpg' +p214869 +sg25267 +g27 +sa(dp214870 +g25273 +S'etching and burnisher' +p214871 +sg25267 +g27 +sg25275 +S'published 1863' +p214872 +sg25268 +S'Contra el bien general (Against the Commom Good)' +p214873 +sg25270 +S'Francisco de Goya' +p214874 +sa(dp214875 +g25273 +S'etching, lavis, burin, and burnisher' +p214876 +sg25267 +g27 +sg25275 +S'published 1863' +p214877 +sg25268 +S'Curarlos, y a otra (Get Them Well, and onto the Next)' +p214878 +sg25270 +S'Francisco de Goya' +p214879 +sa(dp214880 +g25273 +S'etching, burnished aquatint, lavis, drypoint, burin, and burnisher' +p214881 +sg25267 +g27 +sg25275 +S'published 1863' +p214882 +sg25268 +S'Esto es malo (This Is Bad)' +p214883 +sg25270 +S'Francisco de Goya' +p214884 +sa(dp214885 +g25273 +S'etching' +p214886 +sg25267 +g27 +sg25275 +S'published 1863' +p214887 +sg25268 +S'Las resultas (The Consequences)' +p214888 +sg25270 +S'Francisco de Goya' +p214889 +sa(dp214890 +g25273 +S'etching and burnished lavis' +p214891 +sg25267 +g27 +sg25275 +S'published 1863' +p214892 +sg25268 +S'Sera lo mismo (It Will Be the Same)' +p214893 +sg25270 +S'Francisco de Goya' +p214894 +sa(dp214895 +g25273 +S'etching, burnished lavis, drypoint, burin, and burnisher' +p214896 +sg25267 +g27 +sg25275 +S'published 1863' +p214897 +sg25268 +S'Asi sucedio (This Is How It Happened)' +p214898 +sg25270 +S'Francisco de Goya' +p214899 +sa(dp214900 +g25268 +S'Willem Coymans' +p214901 +sg25270 +S'Frans Hals' +p214902 +sg25273 +S'oil on canvas' +p214903 +sg25275 +S'1645' +p214904 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e5a.jpg' +p214905 +sg25267 +S"Willem Coymans (1623–1678) was a member of one of Holland's wealthiest merchant families. Their crest of oxen heads hangs on the wall; the Dutch name Coymans literally translates as "cow men." Below the shield, a Latin inscription states that Willem was 22 years old in 1645. Hals rarely dated his pictures. Since his few datings normally also provide the subjects' ages, the inscriptions must have been requested by the patrons to serve as genealogies.\n Hals was the first portraitist who consistently depicted his subjects seated sideways, with their arms hooked casually over the backs of their chairs. Coymans, an elegant dandy proud of his expensive clothes, wears an embroidered jacket and sports a pom–pom on his hat, which is pushed forward rakishly. Hals' dazzling brushwork is especially evident in the gold embroidery and the crisply pleated shirt–sleeve.\n " +p214906 +sa(dp214907 +g25268 +S'The House with the Inscription [left]' +p214908 +sg25270 +S'Canaletto' +p214909 +sg25273 +S'etching' +p214910 +sg25275 +S'1741' +p214911 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbe9.jpg' +p214912 +sg25267 +g27 +sa(dp214913 +g25273 +S'etching, burin, and burnisher' +p214914 +sg25267 +g27 +sg25275 +S'published 1863' +p214915 +sg25268 +S'Gatesca pantomima (Feline Pantomime)' +p214916 +sg25270 +S'Francisco de Goya' +p214917 +sa(dp214918 +g25268 +S'Tanto y mas (Even Worse)' +p214919 +sg25270 +S'Francisco de Goya' +p214920 +sg25273 +S'etching, lavis, and burin' +p214921 +sg25275 +S'published 1863' +p214922 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057e5.jpg' +p214923 +sg25267 +g27 +sa(dp214924 +g25273 +S'etching, burnished lavis, burin, and burnisher' +p214925 +sg25267 +g27 +sg25275 +S'published 1863' +p214926 +sg25268 +S'Cruel lastima! (Cruel Tale of Woe!)' +p214927 +sg25270 +S'Francisco de Goya' +p214928 +sa(dp214929 +g25273 +S'etching and burnisher' +p214930 +sg25267 +g27 +sg25275 +S'published 1863' +p214931 +sg25268 +S'Esto es lo peor! (That Is the Worst of It!)' +p214932 +sg25270 +S'Francisco de Goya' +p214933 +sa(dp214934 +g25273 +S'etching, lavis, drypoint, and burin' +p214935 +sg25267 +g27 +sg25275 +S'published 1863' +p214936 +sg25268 +S'Lo mismo en otras partes (The Same Elsewhere)' +p214937 +sg25270 +S'Francisco de Goya' +p214938 +sa(dp214939 +g25273 +S'etching, lavis, burin, and burnisher' +p214940 +sg25267 +g27 +sg25275 +S'published 1863' +p214941 +sg25268 +S"Caridad de una muger (A Woman's Charity)" +p214942 +sg25270 +S'Francisco de Goya' +p214943 +sa(dp214944 +g25273 +S'etching, aquatint or lavis, drypoint, and burin' +p214945 +sg25267 +g27 +sg25275 +S'published 1863' +p214946 +sg25268 +S"Farandula de charlatanes (Charlatan's Show)" +p214947 +sg25270 +S'Francisco de Goya' +p214948 +sa(dp214949 +g25273 +S'etching and burnisher' +p214950 +sg25267 +g27 +sg25275 +S'published 1863' +p214951 +sg25268 +S'Aun podran servir (They Can Still Be of Use)' +p214952 +sg25270 +S'Francisco de Goya' +p214953 +sa(dp214954 +g25273 +S'etching, burnished aquatint, and drypoint' +p214955 +sg25267 +g27 +sg25275 +S'published 1863' +p214956 +sg25268 +S'Madre infeliz! (Unhappy Mother!)' +p214957 +sg25270 +S'Francisco de Goya' +p214958 +sa(dp214959 +g25273 +S'etching, (drypoint?), burin, and burnisher' +p214960 +sg25267 +g27 +sg25275 +S'published 1863' +p214961 +sg25268 +S'El buitre carnivoro (The Carnivorous Vulture)' +p214962 +sg25270 +S'Francisco de Goya' +p214963 +sa(dp214964 +g25268 +S'The House with the Peristyle' +p214965 +sg25270 +S'Canaletto' +p214966 +sg25273 +S'etching' +p214967 +sg25275 +S'1741' +p214968 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbea.jpg' +p214969 +sg25267 +g27 +sa(dp214970 +g25273 +S'etching, drypoint, and burin' +p214971 +sg25267 +g27 +sg25275 +S'published 1863' +p214972 +sg25268 +S'Tambien estos (These Too)' +p214973 +sg25270 +S'Francisco de Goya' +p214974 +sa(dp214975 +g25273 +S'etching and burnished aquatint' +p214976 +sg25267 +g27 +sg25275 +S'published 1863' +p214977 +sg25268 +S'Cracias a la almorta (Thanks to the Millet)' +p214978 +sg25270 +S'Francisco de Goya' +p214979 +sa(dp214980 +g25273 +S'etching, burnished aquatint or lavis, drypoint, and burnisher' +p214981 +sg25267 +g27 +sg25275 +S'published 1863' +p214982 +sg25268 +S'Que se rompe la cuerda (May the Card Break)' +p214983 +sg25270 +S'Francisco de Goya' +p214984 +sa(dp214985 +g25268 +S"No se puede mirar (One Can't Look)" +p214986 +sg25270 +S'Francisco de Goya' +p214987 +sg25273 +S'etching, burnished lavis, drypoint, and burin' +p214988 +sg25275 +S'published 1863' +p214989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057e6.jpg' +p214990 +sg25267 +g27 +sa(dp214991 +g25273 +S'etching, lavis, drypoint, and burin' +p214992 +sg25267 +g27 +sg25275 +S'published 1863' +p214993 +sg25268 +S'No llegan a tiempo (They Do Not Arrive in Time)' +p214994 +sg25270 +S'Francisco de Goya' +p214995 +sa(dp214996 +g25273 +S'etching, drypoint, burin, and burnisher' +p214997 +sg25267 +g27 +sg25275 +S'published 1863' +p214998 +sg25268 +S'Se defiende bien (He Defends Himself Well)' +p214999 +sg25270 +S'Francisco de Goya' +p215000 +sa(dp215001 +g25273 +S'1 vol: 18 etchings, aquatints, and drypoints plus title page' +p215002 +sg25267 +g27 +sg25275 +S'published 1864' +p215003 +sg25268 +S'Los proverbios (first edition)' +p215004 +sg25270 +S'Francisco de Goya' +p215005 +sa(dp215006 +g25273 +S'etching, aquatint, and (drypoint?)' +p215007 +sg25267 +g27 +sg25275 +S'published 1864' +p215008 +sg25268 +S'Disparate femenino (Feminine Folly)' +p215009 +sg25270 +S'Francisco de Goya' +p215010 +sa(dp215011 +g25273 +S'etching, burnished aquatint, and (drypoint?)' +p215012 +sg25267 +g27 +sg25275 +S'published 1864' +p215013 +sg25268 +S'Disparate de miedo (Folly of Fear)' +p215014 +sg25270 +S'Francisco de Goya' +p215015 +sa(dp215016 +g25273 +S'etching, aquatint, and drypoint' +p215017 +sg25267 +g27 +sg25275 +S'published 1864' +p215018 +sg25268 +S'Disparate ridiculo (Ridiculous Folly)' +p215019 +sg25270 +S'Francisco de Goya' +p215020 +sa(dp215021 +g25268 +S'Jezebel and Ahab' +p215022 +sg25270 +S'Lucas van Leyden' +p215023 +sg25273 +S'woodcut' +p215024 +sg25275 +S'1517/1518' +p215025 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d00c.jpg' +p215026 +sg25267 +g27 +sa(dp215027 +g25273 +S'etching, burnished aquatint, burin, and drypoint' +p215028 +sg25267 +g27 +sg25275 +S'published 1864' +p215029 +sg25268 +S'Bobalicon (Simpleton)' +p215030 +sg25270 +S'Francisco de Goya' +p215031 +sa(dp215032 +g25273 +S'etching and aquatint' +p215033 +sg25267 +g27 +sg25275 +S'published 1864' +p215034 +sg25268 +S'Disparate volante (Flying Folly)' +p215035 +sg25270 +S'Francisco de Goya' +p215036 +sa(dp215037 +g25273 +S'etching and burnished aquatint' +p215038 +sg25267 +g27 +sg25275 +S'published 1864' +p215039 +sg25268 +S'Disparate furioso (Furious Folly)' +p215040 +sg25270 +S'Francisco de Goya' +p215041 +sa(dp215042 +g25273 +S'etching, aquatint, and drypoint' +p215043 +sg25267 +g27 +sg25275 +S'published 1864' +p215044 +sg25268 +S'Disparate desordenado (Disorderly Folly)' +p215045 +sg25270 +S'Francisco de Goya' +p215046 +sa(dp215047 +g25273 +S'etching and burnished aquatint' +p215048 +sg25267 +g27 +sg25275 +S'published 1864' +p215049 +sg25268 +S'Los ensacados (The Men in Sacks)' +p215050 +sg25270 +S'Francisco de Goya' +p215051 +sa(dp215052 +g25273 +S'etching and burnished aquatint' +p215053 +sg25267 +g27 +sg25275 +S'published 1864' +p215054 +sg25268 +S'Disparate general (General Folly)' +p215055 +sg25270 +S'Francisco de Goya' +p215056 +sa(dp215057 +g25273 +S'etching, burnished aquatint, and dryoint' +p215058 +sg25267 +g27 +sg25275 +S'published 1864' +p215059 +sg25268 +S'El caballo raptor (The Horse-Abductor)' +p215060 +sg25270 +S'Francisco de Goya' +p215061 +sa(dp215062 +g25273 +S'etching, burnished aquatint, dryoint, and burin' +p215063 +sg25267 +g27 +sg25275 +S'published 1864' +p215064 +sg25268 +S'Disparate pobre (Poor Folly)' +p215065 +sg25270 +S'Francisco de Goya' +p215066 +sa(dp215067 +g25273 +S'etching, burnished aquatint, and drypoint' +p215068 +sg25267 +g27 +sg25275 +S'published 1864' +p215069 +sg25268 +S'Si Marina baylo, tome lo que hallo (If Marion Will Dance Then She Has To Take the Consequences)' +p215070 +sg25270 +S'Francisco de Goya' +p215071 +sa(dp215072 +g25268 +S'Modo de volar (A Way of Flying)' +p215073 +sg25270 +S'Francisco de Goya' +p215074 +sg25273 +S'etching, aquatint, and drypoint' +p215075 +sg25275 +S'published 1864' +p215076 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057c7.jpg' +p215077 +sg25267 +g27 +sa(dp215078 +g25268 +S"View of a Town with a Bishop's Tomb" +p215079 +sg25270 +S'Canaletto' +p215080 +sg25273 +S'etching' +p215081 +sg25275 +S'c. 1735/1746' +p215082 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbf1.jpg' +p215083 +sg25267 +g27 +sa(dp215084 +g25273 +S'etching and aquatint' +p215085 +sg25267 +g27 +sg25275 +S'published 1864' +p215086 +sg25268 +S'Disparate de carnabal (Carnival Folly)' +p215087 +sg25270 +S'Francisco de Goya' +p215088 +sa(dp215089 +g25273 +S'etching, burnished aquatint, and lavis' +p215090 +sg25267 +g27 +sg25275 +S'published 1864' +p215091 +sg25268 +S'Disparate claro (Clear Folly)' +p215092 +sg25270 +S'Francisco de Goya' +p215093 +sa(dp215094 +g25273 +S'etching and burnished aquatint' +p215095 +sg25267 +g27 +sg25275 +S'published 1864' +p215096 +sg25268 +S'Sanan cuchilladas mas no malas palabras (Wounds Heal Quicker Than Hasty Words)' +p215097 +sg25270 +S'Francisco de Goya' +p215098 +sa(dp215099 +g25273 +S'etching and burnished aquatint' +p215100 +sg25267 +g27 +sg25275 +S'published 1864' +p215101 +sg25268 +S'La lealtad (Loyalty)' +p215102 +sg25270 +S'Francisco de Goya' +p215103 +sa(dp215104 +g25273 +S'etching, burnished aquatint, and burin' +p215105 +sg25267 +g27 +sg25275 +S'published 1864' +p215106 +sg25268 +S'Dios los cria y ellos se juntan (God Creates Them and They Join Up Together)' +p215107 +sg25270 +S'Francisco de Goya' +p215108 +sa(dp215109 +g25268 +S'Nada (Nothing)' +p215110 +sg25270 +S'Francisco de Goya' +p215111 +sg25273 +S'etching, burnished aquatint and lavis [working proof]' +p215112 +sg25275 +S'1810/1820' +p215113 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed60.jpg' +p215114 +sg25267 +g27 +sa(dp215115 +g25268 +S'Si quebro el cantaro (Yes He Broke the Pot)' +p215116 +sg25270 +S'Francisco de Goya' +p215117 +sg25273 +S'etching, aquatint and drypoint [first edition impression]' +p215118 +sg25275 +S'in or before 1799' +p215119 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed66.jpg' +p215120 +sg25267 +g27 +sa(dp215121 +g25268 +S'Tal para qual (Two of a Kind)' +p215122 +sg25270 +S'Francisco de Goya' +p215123 +sg25273 +S'etching retouched with black chalk, rubbed or stumped [working proof]' +p215124 +sg25275 +S'in or before 1799' +p215125 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed5a.jpg' +p215126 +sg25267 +g27 +sa(dp215127 +g25268 +S'Margarita de Austria' +p215128 +sg25270 +S'Artist Information (' +p215129 +sg25273 +S'(artist after)' +p215130 +sg25275 +S'\n' +p215131 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed6e.jpg' +p215132 +sg25267 +g27 +sa(dp215133 +g25273 +S'etching' +p215134 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215135 +sg25268 +S'Concarneau' +p215136 +sg25270 +S'Gordon Hope Grant' +p215137 +sa(dp215138 +g25268 +S'La libreria. V.' +p215139 +sg25270 +S'Canaletto' +p215140 +sg25273 +S'etching' +p215141 +sg25275 +S'in or before 1742' +p215142 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cab2.jpg' +p215143 +sg25267 +g27 +sa(dp215144 +g25273 +S'drypoint' +p215145 +sg25267 +g27 +sg25275 +S'1941' +p215146 +sg25268 +S'Men of Gloucester' +p215147 +sg25270 +S'Gordon Hope Grant' +p215148 +sa(dp215149 +g25273 +S'drypoint' +p215150 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215151 +sg25268 +S'Marketplace, Bruges' +p215152 +sg25270 +S'Joseph Gray' +p215153 +sa(dp215154 +g25273 +S'drypoint' +p215155 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215156 +sg25268 +S'Sunset - Isle of Aaran' +p215157 +sg25270 +S'Joseph Gray' +p215158 +sa(dp215159 +g25268 +S'A New Bill' +p215160 +sg25270 +S'William Gropper' +p215161 +sg25273 +S'lithograph' +p215162 +sg25275 +S'1942' +p215163 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000aac.jpg' +p215164 +sg25267 +g27 +sa(dp215165 +g25273 +S'etching' +p215166 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215167 +sg25268 +S'Hexham Priory' +p215168 +sg25270 +S'R. Neville Hadcock' +p215169 +sa(dp215170 +g25268 +S'Self-Portrait at the Easel' +p215171 +sg25270 +S'Francis Seymour Haden' +p215172 +sg25273 +S'etching [cancellation proof]' +p215173 +sg25275 +S'1880/1886' +p215174 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007e/a0007e04.jpg' +p215175 +sg25267 +g27 +sa(dp215176 +g25268 +S'Thames Fishermen' +p215177 +sg25270 +S'Francis Seymour Haden' +p215178 +sg25273 +S'drypoint with etching in dark brown on chine colle' +p215179 +sg25275 +S'1859' +p215180 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d3a.jpg' +p215181 +sg25267 +g27 +sa(dp215182 +g25268 +S'Amalfi' +p215183 +sg25270 +S'Francis Seymour Haden' +p215184 +sg25273 +S'etching and drypoint' +p215185 +sg25275 +S'in or before 1858' +p215186 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d6a.jpg' +p215187 +sg25267 +g27 +sa(dp215188 +g25268 +S'Breaking Up of the Agamemnon' +p215189 +sg25270 +S'Francis Seymour Haden' +p215190 +sg25273 +S'etching (copper) in dark brown' +p215191 +sg25275 +S'1870' +p215192 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c3d.jpg' +p215193 +sg25267 +g27 +sa(dp215194 +g25268 +S'Breaking Up of the Agamemnon' +p215195 +sg25270 +S'Francis Seymour Haden' +p215196 +sg25273 +S'etching (copper) in dark brown' +p215197 +sg25275 +S'1870' +p215198 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c7d.jpg' +p215199 +sg25267 +g27 +sa(dp215200 +g25268 +S'La Piera del Bando. V.' +p215201 +sg25270 +S'Canaletto' +p215202 +sg25273 +S'etching' +p215203 +sg25275 +S'c. 1735/1746' +p215204 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cab0.jpg' +p215205 +sg25267 +g27 +sa(dp215206 +g25268 +S'Breaking Up of the Agamemnon' +p215207 +sg25270 +S'Francis Seymour Haden' +p215208 +sg25273 +S'etching (copper) in dark brown' +p215209 +sg25275 +S'1870' +p215210 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c6d.jpg' +p215211 +sg25267 +g27 +sa(dp215212 +g25268 +S'Breaking Up of the Agamemnon' +p215213 +sg25270 +S'Francis Seymour Haden' +p215214 +sg25273 +S'etching (copper) in dark brown' +p215215 +sg25275 +S'1870' +p215216 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c5d.jpg' +p215217 +sg25267 +g27 +sa(dp215218 +g25268 +S'Breaking Up of the Agamemnon (The Second Plate)' +p215219 +sg25270 +S'Francis Seymour Haden' +p215220 +sg25273 +S'etching' +p215221 +sg25275 +S'1886' +p215222 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a9f.jpg' +p215223 +sg25267 +g27 +sa(dp215224 +g25268 +S'A Lancashire River' +p215225 +sg25270 +S'Francis Seymour Haden' +p215226 +sg25273 +S'etching and drypoint' +p215227 +sg25275 +S'1881' +p215228 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a9d.jpg' +p215229 +sg25267 +g27 +sa(dp215230 +g25268 +S'Thames Fishermen' +p215231 +sg25270 +S'Francis Seymour Haden' +p215232 +sg25273 +S'drypoint with etching' +p215233 +sg25275 +S'1859' +p215234 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cd0.jpg' +p215235 +sg25267 +g27 +sa(dp215236 +g25268 +S'Thames Fishermen' +p215237 +sg25270 +S'Francis Seymour Haden' +p215238 +sg25273 +S'drypoint with etching' +p215239 +sg25275 +S'1859' +p215240 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cf7.jpg' +p215241 +sg25267 +g27 +sa(dp215242 +g25268 +S'The Test at Longparish' +p215243 +sg25270 +S'Francis Seymour Haden' +p215244 +sg25273 +S'etching with drypoint in dark brown' +p215245 +sg25275 +S'1882' +p215246 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007da8.jpg' +p215247 +sg25267 +g27 +sa(dp215248 +g25268 +S'Encombe Woods (No.1)' +p215249 +sg25270 +S'Francis Seymour Haden' +p215250 +sg25273 +S'etching, retouched with pencil (crayon?)' +p215251 +sg25275 +S'1881' +p215252 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c2c.jpg' +p215253 +sg25267 +g27 +sa(dp215254 +g25268 +S'Harlech (No.2)' +p215255 +sg25270 +S'Francis Seymour Haden' +p215256 +sg25273 +S'mezzotint with etching and drypoint (copper) in brown-black' +p215257 +sg25275 +S'1880' +p215258 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dee.jpg' +p215259 +sg25267 +g27 +sa(dp215260 +g25268 +S"Mount's Bay" +p215261 +sg25270 +S'Francis Seymour Haden' +p215262 +sg25273 +S'etching and drypoint (copper)' +p215263 +sg25275 +S'in or after 1868' +p215264 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c71.jpg' +p215265 +sg25267 +g27 +sa(dp215266 +g25268 +S'The Market on the Molo' +p215267 +sg25270 +S'Canaletto' +p215268 +sg25273 +S'etching' +p215269 +sg25275 +S'c. 1735/1746' +p215270 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caaf.jpg' +p215271 +sg25267 +g27 +sa(dp215272 +g25268 +S"Old Chelsea, Out of Whistler's Window (Battersea Reach)" +p215273 +sg25270 +S'Francis Seymour Haden' +p215274 +sg25273 +S'etching with drypoint' +p215275 +sg25275 +S'1863' +p215276 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cea.jpg' +p215277 +sg25267 +g27 +sa(dp215278 +g25268 +S'Isleworth' +p215279 +sg25270 +S'Francis Seymour Haden' +p215280 +sg25273 +S'etching with drypoint' +p215281 +sg25275 +S'1864' +p215282 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dcd.jpg' +p215283 +sg25267 +g27 +sa(dp215284 +g25268 +S'Ulrich Schwaiger (?)' +p215285 +sg25270 +S'Hans Sebald Lautensack' +p215286 +sg25273 +S'etching' +p215287 +sg25275 +S'1554' +p215288 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acc0.jpg' +p215289 +sg25267 +g27 +sa(dp215290 +g25268 +S'Yacht Tavern, Erith' +p215291 +sg25270 +S'Francis Seymour Haden' +p215292 +sg25273 +S'etching (zinc)' +p215293 +sg25275 +S'1865' +p215294 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c8b.jpg' +p215295 +sg25267 +g27 +sa(dp215296 +g25268 +S'Opposite the Inn, Purfleet' +p215297 +sg25270 +S'Francis Seymour Haden' +p215298 +sg25273 +S'etching with drypoint (zinc) in brown' +p215299 +sg25275 +S'in or after 1869' +p215300 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007ca7.jpg' +p215301 +sg25267 +g27 +sa(dp215302 +g25268 +S'Early Morning - Richmond' +p215303 +sg25270 +S'Francis Seymour Haden' +p215304 +sg25273 +S'etching and drypoint' +p215305 +sg25275 +S'1859' +p215306 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007ccc.jpg' +p215307 +sg25267 +g27 +sa(dp215308 +g25268 +S'Sunset on the Thames' +p215309 +sg25270 +S'Francis Seymour Haden' +p215310 +sg25273 +S'etching and drypoint' +p215311 +sg25275 +S'in or after 1865' +p215312 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c41.jpg' +p215313 +sg25267 +g27 +sa(dp215314 +g25268 +S'Mytton Hall' +p215315 +sg25270 +S'Francis Seymour Haden' +p215316 +sg25273 +S'drypoint in brown' +p215317 +sg25275 +S'1859' +p215318 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d58.jpg' +p215319 +sg25267 +g27 +sa(dp215320 +g25268 +S'A By-Road in Tipperary' +p215321 +sg25270 +S'Francis Seymour Haden' +p215322 +sg25273 +S'etching and drypoint' +p215323 +sg25275 +S'1860' +p215324 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007ce6.jpg' +p215325 +sg25267 +g27 +sa(dp215326 +g25268 +S'An Early Riser' +p215327 +sg25270 +S'Francis Seymour Haden' +p215328 +sg25273 +S'mezzotint (with etching?) in green' +p215329 +sg25275 +S'1897' +p215330 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007ddb.jpg' +p215331 +sg25267 +g27 +sa(dp215332 +g25268 +S'Le Preson. V.' +p215333 +sg25270 +S'Canaletto' +p215334 +sg25273 +S'etching' +p215335 +sg25275 +S'c. 1735/1746' +p215336 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caae.jpg' +p215337 +sg25267 +g27 +sa(dp215338 +g25273 +S'pen and black ink and black chalk with gray wash' +p215339 +sg25267 +g27 +sg25275 +S'1883' +p215340 +sg25268 +S'Madeira' +p215341 +sg25270 +S'Francis Seymour Haden' +p215342 +sa(dp215343 +g25273 +S'bound volume with 27 drawings on 24 sheets in various media' +p215344 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215345 +sg25268 +S'Album of Drawings' +p215346 +sg25270 +S'Francis Seymour Haden' +p215347 +sa(dp215348 +g25273 +S'black chalk with gray wash' +p215349 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215350 +sg25268 +S'Boat in Marshy Inlet' +p215351 +sg25270 +S'Francis Seymour Haden' +p215352 +sa(dp215353 +g25273 +S'black chalk on gray-blue paper' +p215354 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215355 +sg25268 +S'Farm along a River with Boat in Foreground' +p215356 +sg25270 +S'Francis Seymour Haden' +p215357 +sa(dp215358 +g25273 +S'black chalk with gray wash' +p215359 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215360 +sg25268 +S'Cow' +p215361 +sg25270 +S'Francis Seymour Haden' +p215362 +sa(dp215363 +g25273 +S'black chalk with gray wash and white gouache on blue paper' +p215364 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215365 +sg25268 +S'Italian Ruins' +p215366 +sg25270 +S'Francis Seymour Haden' +p215367 +sa(dp215368 +g25273 +S'graphite' +p215369 +sg25267 +g27 +sg25275 +S'1844' +p215370 +sg25268 +S'Tivoli' +p215371 +sg25270 +S'Francis Seymour Haden' +p215372 +sa(dp215373 +g25273 +S'graphite with gray wash' +p215374 +sg25267 +g27 +sg25275 +S'1844' +p215375 +sg25268 +S'Tivoli' +p215376 +sg25270 +S'Francis Seymour Haden' +p215377 +sa(dp215378 +g25273 +S'graphite and black chalk' +p215379 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215380 +sg25268 +S'Mytton Hall' +p215381 +sg25270 +S'Francis Seymour Haden' +p215382 +sa(dp215383 +g25273 +S'black chalk with brown wash' +p215384 +sg25267 +g27 +sg25275 +S'1882' +p215385 +sg25268 +S'Newcastle in Emlyn' +p215386 +sg25270 +S'Francis Seymour Haden' +p215387 +sa(dp215388 +g25268 +S'Mountain Landscape with Five Bridges' +p215389 +sg25270 +S'Canaletto' +p215390 +sg25273 +S'etching' +p215391 +sg25275 +S'c. 1735/1746' +p215392 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caad.jpg' +p215393 +sg25267 +g27 +sa(dp215394 +g25273 +S'graphite' +p215395 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215396 +sg25268 +S'Old Mytton Hall [recto]' +p215397 +sg25270 +S'Francis Seymour Haden' +p215398 +sa(dp215399 +g25273 +S'watercolor' +p215400 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215401 +sg25268 +S'Landscape [verso]' +p215402 +sg25270 +S'Francis Seymour Haden' +p215403 +sa(dp215404 +g25273 +S'graphite' +p215405 +sg25267 +g27 +sg25275 +S'1858' +p215406 +sg25268 +S'Mytton Wood End' +p215407 +sg25270 +S'Francis Seymour Haden' +p215408 +sa(dp215409 +g25273 +S'graphite' +p215410 +sg25267 +g27 +sg25275 +S'1858' +p215411 +sg25268 +S'The Ribble at Mytton' +p215412 +sg25270 +S'Francis Seymour Haden' +p215413 +sa(dp215414 +g25273 +S'graphite' +p215415 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215416 +sg25268 +S"House along Water's Edge" +p215417 +sg25270 +S'Francis Seymour Haden' +p215418 +sa(dp215419 +g25273 +S'graphite with brown wash' +p215420 +sg25267 +g27 +sg25275 +S'1858' +p215421 +sg25268 +S'Old Rectory, Cranbrook' +p215422 +sg25270 +S'Francis Seymour Haden' +p215423 +sa(dp215424 +g25273 +S'graphite with brown wash' +p215425 +sg25267 +g27 +sg25275 +S'1858' +p215426 +sg25268 +S'Old Rectory, Cranbrook' +p215427 +sg25270 +S'Francis Seymour Haden' +p215428 +sa(dp215429 +g25273 +S'graphite with brown wash' +p215430 +sg25267 +g27 +sg25275 +S'1858' +p215431 +sg25268 +S'Old Rectory, Cranbrook' +p215432 +sg25270 +S'Francis Seymour Haden' +p215433 +sa(dp215434 +g25273 +S'pen and brown ink and graphite' +p215435 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215436 +sg25268 +S'Sheet of Figure Studies and the Grey Hound Inn' +p215437 +sg25270 +S'Francis Seymour Haden' +p215438 +sa(dp215439 +g25273 +S'pen and black ink over graphite' +p215440 +sg25267 +g27 +sg25275 +S'1883' +p215441 +sg25268 +S'Steeple of the Convent of Santa Clara, Madeira' +p215442 +sg25270 +S'Francis Seymour Haden' +p215443 +sa(dp215444 +g25268 +S'The Equestrian Monument' +p215445 +sg25270 +S'Canaletto' +p215446 +sg25273 +S'etching' +p215447 +sg25275 +S'c. 1735/1746' +p215448 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caac.jpg' +p215449 +sg25267 +g27 +sa(dp215450 +g25273 +S'graphite' +p215451 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215452 +sg25268 +S'Interior of a House' +p215453 +sg25270 +S'Francis Seymour Haden' +p215454 +sa(dp215455 +g25273 +S'graphite' +p215456 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215457 +sg25268 +S'Harbor with Fortress [recto]' +p215458 +sg25270 +S'Francis Seymour Haden' +p215459 +sa(dp215460 +g25273 +S'graphite' +p215461 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215462 +sg25268 +S'Stairway Leading to a Castle [verso]' +p215463 +sg25270 +S'Francis Seymour Haden' +p215464 +sa(dp215465 +g25273 +S'pen and brown ink and pen and black ink over graphite' +p215466 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215467 +sg25268 +S'Village Landscape' +p215468 +sg25270 +S'Francis Seymour Haden' +p215469 +sa(dp215470 +g25273 +S'graphite on gray-green paper' +p215471 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215472 +sg25268 +S'Sailboats' +p215473 +sg25270 +S'Francis Seymour Haden' +p215474 +sa(dp215475 +g25273 +S'black chalk and graphite' +p215476 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215477 +sg25268 +S'Landscape with Castle in Background [recto]' +p215478 +sg25270 +S'Francis Seymour Haden' +p215479 +sa(dp215480 +g25273 +S'graphite' +p215481 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215482 +sg25268 +S'Landscape with Castle in Background [verso]' +p215483 +sg25270 +S'Francis Seymour Haden' +p215484 +sa(dp215485 +g25273 +S'graphite' +p215486 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215487 +sg25268 +S'Martells Tower' +p215488 +sg25270 +S'Francis Seymour Haden' +p215489 +sa(dp215490 +g25273 +S'etching and drypoint (copper)' +p215491 +sg25267 +g27 +sg25275 +S'1865' +p215492 +sg25268 +S'Hands Etching - O Laborum' +p215493 +sg25270 +S'Francis Seymour Haden' +p215494 +sa(dp215495 +g25273 +S'portfolio w/ 31 prints total: 4 pages of preliminary text (including title page w/ 1 print); 11 pages of Introductory text written by Phillipe Burty w/ 6 prints intersperced; 23 pages of Catalogue text also written by Burty; and 25 prints (corresponding to Catalogue entries), each w/ an accompanying cover page' +p215496 +sg25267 +g27 +sg25275 +S'published 1866' +p215497 +sg25268 +S"Etudes a l'eau-forte" +p215498 +sg25270 +S'Francis Seymour Haden' +p215499 +sa(dp215500 +g25268 +S'Adriaen van Ostade' +p215501 +sg25270 +S'Frans Hals' +p215502 +sg25273 +S'oil on canvas' +p215503 +sg25275 +S'1646/1648' +p215504 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e5b.jpg' +p215505 +sg25267 +S'Adriaen van Ostade\n Hals depicted his fellow artist as a refined gentleman wearing \r\n fashionable apparel denoting professional success. Gloves, for\r\n example, \r\n were an essential feature of seventeenth-century social decorum.\r\n Ostade has \r\n removed the glove from his right hand, the one used in greeting.\r\n His bare \r\n right palm, open to the viewer, reinforces his forthrightness.\n ' +p215506 +sa(dp215507 +g25268 +S'The Terrace' +p215508 +sg25270 +S'Canaletto' +p215509 +sg25273 +S'etching' +p215510 +sg25275 +S'c. 1735/1746' +p215511 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caab.jpg' +p215512 +sg25267 +g27 +sa(dp215513 +g25273 +S'etching and drypoint' +p215514 +sg25267 +g27 +sg25275 +S'1859' +p215515 +sg25268 +S'Kidwelly Castle' +p215516 +sg25270 +S'Francis Seymour Haden' +p215517 +sa(dp215518 +g25273 +S'etching and drypoint' +p215519 +sg25267 +g27 +sg25275 +S'1860' +p215520 +sg25268 +S'Combe Bottom' +p215521 +sg25270 +S'Francis Seymour Haden' +p215522 +sa(dp215523 +g25273 +S'etching with drypoint' +p215524 +sg25267 +g27 +sg25275 +S'1860' +p215525 +sg25268 +S'The Holly Field' +p215526 +sg25270 +S'Francis Seymour Haden' +p215527 +sa(dp215528 +g25273 +S'etching with drypoint (copper)' +p215529 +sg25267 +g27 +sg25275 +S'1865' +p215530 +sg25268 +S'Little Calais Pier' +p215531 +sg25270 +S'Francis Seymour Haden' +p215532 +sa(dp215533 +g25273 +S'etching (with drypoint?) printed a la poupee in red-brown and black' +p215534 +sg25267 +g27 +sg25275 +S'1863' +p215535 +sg25268 +S'Amstelodamum' +p215536 +sg25270 +S'Francis Seymour Haden' +p215537 +sa(dp215538 +g25273 +S'etching with drypoint' +p215539 +sg25267 +g27 +sg25275 +S'1859' +p215540 +sg25268 +S'Out of Study Window' +p215541 +sg25270 +S'Francis Seymour Haden' +p215542 +sa(dp215543 +g25273 +S'etching with drypoint' +p215544 +sg25267 +g27 +sg25275 +S'1863' +p215545 +sg25268 +S'Battersea Reach' +p215546 +sg25270 +S'Francis Seymour Haden' +p215547 +sa(dp215548 +g25273 +S'etching' +p215549 +sg25267 +g27 +sg25275 +S'1859' +p215550 +sg25268 +S"Lord Harrington's House from Kensington Gardens [see REMARKS]" +p215551 +sg25270 +S'Francis Seymour Haden' +p215552 +sa(dp215553 +g25273 +S'etching and drypoint (copper)' +p215554 +sg25267 +g27 +sg25275 +S'1864' +p215555 +sg25268 +S'The Towing Path' +p215556 +sg25270 +S'Francis Seymour Haden' +p215557 +sa(dp215558 +g25273 +S'etching and drypoint' +p215559 +sg25267 +g27 +sg25275 +S'in or after 1865' +p215560 +sg25268 +S'Sunset on the Thames' +p215561 +sg25270 +S'Francis Seymour Haden' +p215562 +sa(dp215563 +g25268 +S'Le Procuratie niove e S. Ziminian V.' +p215564 +sg25270 +S'Canaletto' +p215565 +sg25273 +S'etching' +p215566 +sg25275 +S'c. 1735/1746' +p215567 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cabd.jpg' +p215568 +sg25267 +g27 +sa(dp215569 +g25273 +S'etching and drypoint' +p215570 +sg25267 +g27 +sg25275 +S'in or after 1859' +p215571 +sg25268 +S'Fulham' +p215572 +sg25270 +S'Francis Seymour Haden' +p215573 +sa(dp215574 +g25273 +S'etching' +p215575 +sg25267 +g27 +sg25275 +S'1864' +p215576 +sg25268 +S'Shepperton' +p215577 +sg25270 +S'Francis Seymour Haden' +p215578 +sa(dp215579 +g25268 +S'Old Chelsea [see COMMENTARY]' +p215580 +sg25270 +S'Francis Seymour Haden' +p215581 +sg25273 +S'etching with drypoint' +p215582 +sg25275 +S'1863' +p215583 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cf4.jpg' +p215584 +sg25267 +g27 +sa(dp215585 +g25273 +S'etching' +p215586 +sg25267 +g27 +sg25275 +S'1864' +p215587 +sg25268 +S'Kew Railway Extension [see REMARKS]' +p215588 +sg25270 +S'Francis Seymour Haden' +p215589 +sa(dp215590 +g25273 +S'etching and drypoint' +p215591 +sg25267 +g27 +sg25275 +S'1859' +p215592 +sg25268 +S'Early Morning in Richmond Park [see REMARKS]' +p215593 +sg25270 +S'Francis Seymour Haden' +p215594 +sa(dp215595 +g25273 +S'etching' +p215596 +sg25267 +g27 +sg25275 +S'1864' +p215597 +sg25268 +S'Thames Side at Kew [see REMARKS]' +p215598 +sg25270 +S'Francis Seymour Haden' +p215599 +sa(dp215600 +g25273 +S'etching and drypoint' +p215601 +sg25267 +g27 +sg25275 +S'1859' +p215602 +sg25268 +S'Egham' +p215603 +sg25270 +S'Francis Seymour Haden' +p215604 +sa(dp215605 +g25273 +S'etching' +p215606 +sg25267 +g27 +sg25275 +S'in or after 1859' +p215607 +sg25268 +S'Egham Lock' +p215608 +sg25270 +S'Francis Seymour Haden' +p215609 +sa(dp215610 +g25273 +S'etching with drypoint' +p215611 +sg25267 +g27 +sg25275 +S'1864' +p215612 +sg25268 +S'Brentford Ferry' +p215613 +sg25270 +S'Francis Seymour Haden' +p215614 +sa(dp215615 +g25268 +S'A Sunset in Ireland [see REMARKS]' +p215616 +sg25270 +S'Francis Seymour Haden' +p215617 +sg25273 +S'etching and drypoint' +p215618 +sg25275 +S'1863' +p215619 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d21.jpg' +p215620 +sg25267 +g27 +sa(dp215621 +g25268 +S'The Market at Dolo' +p215622 +sg25270 +S'Canaletto' +p215623 +sg25273 +S'etching' +p215624 +sg25275 +S'c. 1735/1746' +p215625 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cab8.jpg' +p215626 +sg25267 +g27 +sa(dp215627 +g25273 +S'etching (with drypoint?)' +p215628 +sg25267 +g27 +sg25275 +S'1864' +p215629 +sg25268 +S'The Teivy at Cardigan (South Wales) [see REMARKS]' +p215630 +sg25270 +S'Francis Seymour Haden' +p215631 +sa(dp215632 +g25268 +S'Kilgaren Castle' +p215633 +sg25270 +S'Francis Seymour Haden' +p215634 +sg25273 +S'etching' +p215635 +sg25275 +S'1864' +p215636 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d5c.jpg' +p215637 +sg25267 +g27 +sa(dp215638 +g25273 +S'etching' +p215639 +sg25267 +g27 +sg25275 +S'1864' +p215640 +sg25268 +S'House of Benjamin Davis, Smith (Newcastle in Emlyn, South Wales) [see REMARKS]' +p215641 +sg25270 +S'Francis Seymour Haden' +p215642 +sa(dp215643 +g25273 +S'etching' +p215644 +sg25267 +g27 +sg25275 +S'1864' +p215645 +sg25268 +S'Kenarth (South Wales)' +p215646 +sg25270 +S'Francis Seymour Haden' +p215647 +sa(dp215648 +g25273 +S'etching with drypoint' +p215649 +sg25267 +g27 +sg25275 +S'1864' +p215650 +sg25268 +S'Newcastle in Emlyn (South Wales)' +p215651 +sg25270 +S'Francis Seymour Haden' +p215652 +sa(dp215653 +g25273 +S'etching with drypoint' +p215654 +sg25267 +g27 +sg25275 +S'in or after 1860' +p215655 +sg25268 +S'Shere Mill Pond (Surrey) [see REMARKS]' +p215656 +sg25270 +S'Francis Seymour Haden' +p215657 +sa(dp215658 +g25273 +S'etching with drypoint and foul-biting' +p215659 +sg25267 +g27 +sg25275 +S'1864' +p215660 +sg25268 +S'Evening' +p215661 +sg25270 +S'Francis Seymour Haden' +p215662 +sa(dp215663 +g25273 +S'etching' +p215664 +sg25267 +g27 +sg25275 +S'1859' +p215665 +sg25268 +S'Kidwelly (South Wales) [see REMARKS]' +p215666 +sg25270 +S'Francis Seymour Haden' +p215667 +sa(dp215668 +g25268 +S'Mytton Hall (Lancashire)' +p215669 +sg25270 +S'Francis Seymour Haden' +p215670 +sg25273 +S'drypoint' +p215671 +sg25275 +S'1859' +p215672 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004baa.jpg' +p215673 +sg25267 +g27 +sa(dp215674 +g25273 +S'etching and drypoint' +p215675 +sg25267 +g27 +sg25275 +S'1864' +p215676 +sg25268 +S'Thomas Haden after Wright of Derby [see REMARKS]' +p215677 +sg25270 +S'Francis Seymour Haden' +p215678 +sa(dp215679 +g25268 +S'Landscape with the Pilgrim at Prayer' +p215680 +sg25270 +S'Canaletto' +p215681 +sg25273 +S'etching' +p215682 +sg25275 +S'c. 1735/1746' +p215683 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cab9.jpg' +p215684 +sg25267 +g27 +sa(dp215685 +g25273 +S'drypoint' +p215686 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215687 +sg25268 +S'Dawning Intelligence' +p215688 +sg25270 +S'William Lee-Hankey' +p215689 +sa(dp215690 +g25273 +S'drypoint' +p215691 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215692 +sg25268 +S'On the Quay' +p215693 +sg25270 +S'William Lee-Hankey' +p215694 +sa(dp215695 +g25273 +S'drypoint' +p215696 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215697 +sg25268 +S'Sunset at Heybridge Baisin' +p215698 +sg25270 +S'Martin Hardie' +p215699 +sa(dp215700 +g25268 +S'Old Nan' +p215701 +sg25270 +S'Herbert Johnson Harvey' +p215702 +sg25273 +S'drypoint' +p215703 +sg25275 +S'unknown date\n' +p215704 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00080/a000809b.jpg' +p215705 +sg25267 +g27 +sa(dp215706 +g25268 +S'A Gentleman of Fortune' +p215707 +sg25270 +S'Herbert Johnson Harvey' +p215708 +sg25273 +S'drypoint' +p215709 +sg25275 +S'unknown date\n' +p215710 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c10.jpg' +p215711 +sg25267 +g27 +sa(dp215712 +g25268 +S'Luck' +p215713 +sg25270 +S'Herbert Johnson Harvey' +p215714 +sg25273 +S'drypoint' +p215715 +sg25275 +S'unknown date\n' +p215716 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c0f.jpg' +p215717 +sg25267 +g27 +sa(dp215718 +g25268 +S'Jolly Vagabonds' +p215719 +sg25270 +S'Herbert Johnson Harvey' +p215720 +sg25273 +S'drypoint' +p215721 +sg25275 +S'unknown date\n' +p215722 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00080/a0008099.jpg' +p215723 +sg25267 +g27 +sa(dp215724 +g25268 +S'Lone Tree' +p215725 +sg25270 +S'Ernest Haskell' +p215726 +sg25273 +S'etching' +p215727 +sg25275 +S'unknown date\n' +p215728 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a00104c6.jpg' +p215729 +sg25267 +g27 +sa(dp215730 +g25268 +S'The Chase House' +p215731 +sg25270 +S'Childe Hassam' +p215732 +sg25273 +S'etching' +p215733 +sg25275 +S'1929' +p215734 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00104/a00104e6.jpg' +p215735 +sg25267 +g27 +sa(dp215736 +g25273 +S'image: 28.5 x 20.5 cm (11 1/4 x 8 1/16 in.)\r\nsheet: 32.7 x 24.3 cm (12 7/8 x 9 9/16 in.)' +p215737 +sg25267 +g27 +sg25275 +S'\nwatercolor on wove paper' +p215738 +sg25268 +S'The Dance' +p215739 +sg25270 +S'German 20th Century' +p215740 +sa(dp215741 +g25268 +S'Landscape with Tower and Two Ruined Pillars' +p215742 +sg25270 +S'Canaletto' +p215743 +sg25273 +S'etching' +p215744 +sg25275 +S'c. 1735/1746' +p215745 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caba.jpg' +p215746 +sg25267 +g27 +sa(dp215747 +g25273 +S'hand-colored woodcut' +p215748 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215749 +sg25268 +S'Dance' +p215750 +sg25270 +S'Erich Heckel' +p215751 +sa(dp215752 +g25273 +S'woodcut' +p215753 +sg25267 +g27 +sg25275 +S'1923' +p215754 +sg25268 +S'On the Beach (Am Strand)' +p215755 +sg25270 +S'Erich Heckel' +p215756 +sa(dp215757 +g25273 +S'woodcut' +p215758 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215759 +sg25268 +S'Vermont Farm' +p215760 +sg25270 +S'Louis Heckenbleikner' +p215761 +sa(dp215762 +g25273 +S'etching' +p215763 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215764 +sg25268 +S'Study of Mother and Child' +p215765 +sg25270 +S'Arthur William Heintzelman' +p215766 +sa(dp215767 +g25273 +S'etching' +p215768 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215769 +sg25268 +S'Three Score and Ten' +p215770 +sg25270 +S'Arthur William Heintzelman' +p215771 +sa(dp215772 +g25273 +S'etching and drypoint' +p215773 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215774 +sg25268 +S'A Donkey Cart in Montmartre' +p215775 +sg25270 +S'Arthur William Heintzelman' +p215776 +sa(dp215777 +g25273 +S'etching' +p215778 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215779 +sg25268 +S'The Rehearsal' +p215780 +sg25270 +S'Arthur William Heintzelman' +p215781 +sa(dp215782 +g25273 +S'etching' +p215783 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215784 +sg25268 +S'Strolling Musician of Gloucester' +p215785 +sg25270 +S'Arthur William Heintzelman' +p215786 +sa(dp215787 +g25273 +S'etching and drypoint' +p215788 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215789 +sg25268 +S'Portrait of a Little Girl' +p215790 +sg25270 +S'Arthur William Heintzelman' +p215791 +sa(dp215792 +g25273 +S'etching' +p215793 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215794 +sg25268 +S'Merci' +p215795 +sg25270 +S'Arthur William Heintzelman' +p215796 +sa(dp215797 +g25268 +S'Landscape with a Woman at a Well' +p215798 +sg25270 +S'Canaletto' +p215799 +sg25273 +S'etching' +p215800 +sg25275 +S'c. 1735/1746' +p215801 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cab6.jpg' +p215802 +sg25267 +g27 +sa(dp215803 +g25273 +S'etching and drypoint' +p215804 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215805 +sg25268 +S'Study of an Old Man' +p215806 +sg25270 +S'Arthur William Heintzelman' +p215807 +sa(dp215808 +g25273 +S'etching' +p215809 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215810 +sg25268 +S"Fisherman's Family" +p215811 +sg25270 +S'Eugene Higgins' +p215812 +sa(dp215813 +g25268 +S'The Opening of the Seventh Seal' +p215814 +sg25270 +S'Augustin Hirschvogel' +p215815 +sg25273 +S'etching' +p215816 +sg25275 +S'1549' +p215817 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac5d.jpg' +p215818 +sg25267 +g27 +sa(dp215819 +g25268 +S'Landscape with a Lake' +p215820 +sg25270 +S'Augustin Hirschvogel' +p215821 +sg25273 +S'etching' +p215822 +sg25275 +S'unknown date\n' +p215823 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abc7.jpg' +p215824 +sg25267 +g27 +sa(dp215825 +g25268 +S'Conrad Schall' +p215826 +sg25270 +S'Augustin Hirschvogel' +p215827 +sg25273 +S'etching' +p215828 +sg25275 +S'1547' +p215829 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac24.jpg' +p215830 +sg25267 +g27 +sa(dp215831 +g25268 +S'Coat of Arms of Unknown Man' +p215832 +sg25270 +S'Augustin Hirschvogel' +p215833 +sg25273 +S'etching' +p215834 +sg25275 +S'unknown date\n' +p215835 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b246.jpg' +p215836 +sg25267 +g27 +sa(dp215837 +g25268 +S"Herberstein's Journey to Denmark" +p215838 +sg25270 +S'Augustin Hirschvogel' +p215839 +sg25273 +S'etching' +p215840 +sg25275 +S'1546' +p215841 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b24a.jpg' +p215842 +sg25267 +g27 +sa(dp215843 +g25268 +S'Christian II of Denmark' +p215844 +sg25270 +S'Augustin Hirschvogel' +p215845 +sg25273 +S'etching' +p215846 +sg25275 +S'1546' +p215847 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac28.jpg' +p215848 +sg25267 +g27 +sa(dp215849 +g25273 +S'drypoint' +p215850 +sg25267 +g27 +sg25275 +S'c. 1927' +p215851 +sg25268 +S'Two Heads (Zwei Madchenkopfe)' +p215852 +sg25270 +S'Karl Hofer' +p215853 +sa(dp215854 +g25268 +S'Nobleman' +p215855 +sg25270 +S'Hans Holbein the Younger' +p215856 +sg25273 +S'woodcut' +p215857 +sg25275 +S'unknown date\n' +p215858 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac90.jpg' +p215859 +sg25267 +g27 +sa(dp215860 +g25268 +S'Imaginary View of S. Giacomo di Rialto' +p215861 +sg25270 +S'Canaletto' +p215862 +sg25273 +S'etching' +p215863 +sg25275 +S'c. 1735/1746' +p215864 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cabc.jpg' +p215865 +sg25267 +g27 +sa(dp215866 +g25268 +S'Arms of Death' +p215867 +sg25270 +S'Hans Holbein the Younger' +p215868 +sg25273 +S'woodcut' +p215869 +sg25275 +S'unknown date\n' +p215870 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac86.jpg' +p215871 +sg25267 +g27 +sa(dp215872 +g25268 +S'The Last Judgment' +p215873 +sg25270 +S'Hans Holbein the Younger' +p215874 +sg25273 +S'woodcut' +p215875 +sg25275 +S'unknown date\n' +p215876 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac87.jpg' +p215877 +sg25267 +g27 +sa(dp215878 +g25268 +S'Countess' +p215879 +sg25270 +S'Hans Holbein the Younger' +p215880 +sg25273 +S'woodcut' +p215881 +sg25275 +S'unknown date\n' +p215882 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac18.jpg' +p215883 +sg25267 +g27 +sa(dp215884 +g25268 +S'Old Man' +p215885 +sg25270 +S'Hans Holbein the Younger' +p215886 +sg25273 +S'woodcut' +p215887 +sg25275 +S'unknown date\n' +p215888 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac7e.jpg' +p215889 +sg25267 +g27 +sa(dp215890 +g25268 +S'Sailor' +p215891 +sg25270 +S'Hans Holbein the Younger' +p215892 +sg25273 +S'woodcut' +p215893 +sg25275 +S'unknown date\n' +p215894 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac7b.jpg' +p215895 +sg25267 +g27 +sa(dp215896 +g25268 +S'Lawyer' +p215897 +sg25270 +S'Hans Holbein the Younger' +p215898 +sg25273 +S'woodcut' +p215899 +sg25275 +S'unknown date\n' +p215900 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac7f.jpg' +p215901 +sg25267 +g27 +sa(dp215902 +g25268 +S'Judge' +p215903 +sg25270 +S'Hans Holbein the Younger' +p215904 +sg25273 +S'woodcut' +p215905 +sg25275 +S'unknown date\n' +p215906 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac8f.jpg' +p215907 +sg25267 +g27 +sa(dp215908 +g25268 +S'The Pope' +p215909 +sg25270 +S'Hans Holbein the Younger' +p215910 +sg25273 +S'woodcut' +p215911 +sg25275 +S'unknown date\n' +p215912 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac93.jpg' +p215913 +sg25267 +g27 +sa(dp215914 +g25268 +S'End of Mankind' +p215915 +sg25270 +S'Hans Holbein the Younger' +p215916 +sg25273 +S'woodcut' +p215917 +sg25275 +S'unknown date\n' +p215918 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac8d.jpg' +p215919 +sg25267 +g27 +sa(dp215920 +g25268 +S'Landscape with Ruined Monuments' +p215921 +sg25270 +S'Canaletto' +p215922 +sg25273 +S'etching' +p215923 +sg25275 +S'c. 1735/1746' +p215924 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cabb.jpg' +p215925 +sg25267 +g27 +sa(dp215926 +g25268 +S'Adam and Eve Driven from Paradise' +p215927 +sg25270 +S'Hans Holbein the Younger' +p215928 +sg25273 +S'woodcut' +p215929 +sg25275 +S'unknown date\n' +p215930 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac94.jpg' +p215931 +sg25267 +g27 +sa(dp215932 +g25268 +S'Adam Cultivating' +p215933 +sg25270 +S'Hans Holbein the Younger' +p215934 +sg25273 +S'woodcut' +p215935 +sg25275 +S'unknown date\n' +p215936 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac95.jpg' +p215937 +sg25267 +g27 +sa(dp215938 +g25268 +S'Duchess' +p215939 +sg25270 +S'Hans Holbein the Younger' +p215940 +sg25273 +S'woodcut' +p215941 +sg25275 +S'unknown date\n' +p215942 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac81.jpg' +p215943 +sg25267 +g27 +sa(dp215944 +g25268 +S'Erasmus of Rotterdam' +p215945 +sg25270 +S'Hans Holbein the Younger' +p215946 +sg25273 +S'woodcut' +p215947 +sg25275 +S'unknown date\n' +p215948 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b275.jpg' +p215949 +sg25267 +g27 +sa(dp215950 +g25268 +S'Saint Paul with Book and Sword' +p215951 +sg25270 +S'Hans Holbein the Younger' +p215952 +sg25273 +S'woodcut' +p215953 +sg25275 +S'unknown date\n' +p215954 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acbb.jpg' +p215955 +sg25267 +g27 +sa(dp215956 +g25268 +S'Traffic in Indulgences' +p215957 +sg25270 +S'Hans Holbein the Younger' +p215958 +sg25273 +S'woodcut' +p215959 +sg25275 +S'unknown date\n' +p215960 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acbc.jpg' +p215961 +sg25267 +g27 +sa(dp215962 +g25268 +S'The Flight into Egypt' +p215963 +sg25270 +S'German 15th Century' +p215964 +sg25273 +S'Schreiber Manuel, no. 3448' +p215965 +sg25275 +S'\nhand-colored woodcut' +p215966 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5eb.jpg' +p215967 +sg25267 +g27 +sa(dp215968 +g25273 +S'woodcut' +p215969 +sg25267 +g27 +sg25275 +S'unknown date\n' +p215970 +sg25268 +S'Stairway' +p215971 +sg25270 +S'Edwin Headley Holgate' +p215972 +sa(dp215973 +g25268 +S'Evening Wind' +p215974 +sg25270 +S'Edward Hopper' +p215975 +sg25273 +S'etching' +p215976 +sg25275 +S'1921' +p215977 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ac6.jpg' +p215978 +sg25267 +g27 +sa(dp215979 +g25268 +S"The Bishop's Tomb" +p215980 +sg25270 +S'Canaletto' +p215981 +sg25273 +S'etching' +p215982 +sg25275 +S'c. 1735/1746' +p215983 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cab3.jpg' +p215984 +sg25267 +g27 +sa(dp215985 +g25268 +S'Albrecht Durer' +p215986 +sg25270 +S'Artist Information (' +p215987 +sg25273 +S'(artist after)' +p215988 +sg25275 +S'\n' +p215989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8a2.jpg' +p215990 +sg25267 +g27 +sa(dp215991 +g25268 +S'Title Page to "Philosophia Universia"' +p215992 +sg25270 +S'Artist Information (' +p215993 +sg25273 +S'(artist after)' +p215994 +sg25275 +S'\n' +p215995 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db2c.jpg' +p215996 +sg25267 +g27 +sa(dp215997 +g25268 +S'Jesus Confronting His Detractors' +p215998 +sg25270 +S'Wenceslaus Hollar' +p215999 +sg25273 +S'etching' +p216000 +sg25275 +S'unknown date\n' +p216001 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d845.jpg' +p216002 +sg25267 +g27 +sa(dp216003 +g25268 +S'Jesus on the Mount of Olives' +p216004 +sg25270 +S'Wenceslaus Hollar' +p216005 +sg25273 +S'etching' +p216006 +sg25275 +S'unknown date\n' +p216007 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d844.jpg' +p216008 +sg25267 +g27 +sa(dp216009 +g25268 +S'Jesus Taken' +p216010 +sg25270 +S'Wenceslaus Hollar' +p216011 +sg25273 +S'etching' +p216012 +sg25275 +S'unknown date\n' +p216013 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d846.jpg' +p216014 +sg25267 +g27 +sa(dp216015 +g25268 +S'Jesus before Pilate' +p216016 +sg25270 +S'Wenceslaus Hollar' +p216017 +sg25273 +S'etching' +p216018 +sg25275 +S'unknown date\n' +p216019 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d849.jpg' +p216020 +sg25267 +g27 +sa(dp216021 +g25268 +S'Jesus again before Caiaphas' +p216022 +sg25270 +S'Wenceslaus Hollar' +p216023 +sg25273 +S'etching' +p216024 +sg25275 +S'unknown date\n' +p216025 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d84a.jpg' +p216026 +sg25267 +g27 +sa(dp216027 +g25268 +S'Jesus before Caiaphas' +p216028 +sg25270 +S'Wenceslaus Hollar' +p216029 +sg25273 +S'etching' +p216030 +sg25275 +S'unknown date\n' +p216031 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d848.jpg' +p216032 +sg25267 +g27 +sa(dp216033 +g25268 +S'Jesus before Annas' +p216034 +sg25270 +S'Wenceslaus Hollar' +p216035 +sg25273 +S'etching' +p216036 +sg25275 +S'unknown date\n' +p216037 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d847.jpg' +p216038 +sg25267 +g27 +sa(dp216039 +g25268 +S'The Washing of Hands' +p216040 +sg25270 +S'Wenceslaus Hollar' +p216041 +sg25273 +S'etching' +p216042 +sg25275 +S'unknown date\n' +p216043 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d84e.jpg' +p216044 +sg25267 +g27 +sa(dp216045 +g25268 +S'The Little Monument' +p216046 +sg25270 +S'Canaletto' +p216047 +sg25273 +S'etching' +p216048 +sg25275 +S'c. 1735/1746' +p216049 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cab4.jpg' +p216050 +sg25267 +g27 +sa(dp216051 +g25268 +S'The Scourging' +p216052 +sg25270 +S'Wenceslaus Hollar' +p216053 +sg25273 +S'etching' +p216054 +sg25275 +S'unknown date\n' +p216055 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d84b.jpg' +p216056 +sg25267 +g27 +sa(dp216057 +g25268 +S'The Mocking' +p216058 +sg25270 +S'Wenceslaus Hollar' +p216059 +sg25273 +S'etching' +p216060 +sg25275 +S'unknown date\n' +p216061 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d84c.jpg' +p216062 +sg25267 +g27 +sa(dp216063 +g25268 +S'Ecce Homo' +p216064 +sg25270 +S'Wenceslaus Hollar' +p216065 +sg25273 +S'etching' +p216066 +sg25275 +S'unknown date\n' +p216067 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d84d.jpg' +p216068 +sg25267 +g27 +sa(dp216069 +g25268 +S'Carrying the Cross' +p216070 +sg25270 +S'Wenceslaus Hollar' +p216071 +sg25273 +S'etching' +p216072 +sg25275 +S'unknown date\n' +p216073 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d84f.jpg' +p216074 +sg25267 +g27 +sa(dp216075 +g25268 +S'The Crucifixion' +p216076 +sg25270 +S'Wenceslaus Hollar' +p216077 +sg25273 +S'etching' +p216078 +sg25275 +S'unknown date\n' +p216079 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d876.jpg' +p216080 +sg25267 +g27 +sa(dp216081 +g25268 +S'The Entombment' +p216082 +sg25270 +S'Wenceslaus Hollar' +p216083 +sg25273 +S'etching' +p216084 +sg25275 +S'unknown date\n' +p216085 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d875.jpg' +p216086 +sg25267 +g27 +sa(dp216087 +g25268 +S'The Resurrection' +p216088 +sg25270 +S'Wenceslaus Hollar' +p216089 +sg25273 +S'etching' +p216090 +sg25275 +S'unknown date\n' +p216091 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d873.jpg' +p216092 +sg25267 +g27 +sa(dp216093 +g25268 +S'Descent into Hell' +p216094 +sg25270 +S'Wenceslaus Hollar' +p216095 +sg25273 +S'etching' +p216096 +sg25275 +S'unknown date\n' +p216097 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d874.jpg' +p216098 +sg25267 +g27 +sa(dp216099 +g25268 +S'Garden of Eden' +p216100 +sg25270 +S'Artist Information (' +p216101 +sg25273 +S'(artist after)' +p216102 +sg25275 +S'\n' +p216103 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d851.jpg' +p216104 +sg25267 +g27 +sa(dp216105 +g25268 +S'Paradise Lost' +p216106 +sg25270 +S'Artist Information (' +p216107 +sg25273 +S'(artist after)' +p216108 +sg25275 +S'\n' +p216109 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d852.jpg' +p216110 +sg25267 +g27 +sa(dp216111 +g25268 +S'Portrait of a Young Man' +p216112 +sg25270 +S'Frans Hals' +p216113 +sg25273 +S'oil on canvas' +p216114 +sg25275 +S'1646/1648' +p216115 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e5c.jpg' +p216116 +sg25267 +S"With an alert glance at the viewer, this portly youth rests his elbow on the back of his chair. Hals' earliest known use and possible invention of a model turned sideways in a chair dates to 1626, but he employed this lively pose often during the 1640s.\n The National Gallery's \n Just above the sitter's hand, Frans Hals signed the work with \r\n his \r\n initials doubled: \n " +p216117 +sa(dp216118 +g25268 +S'The Wagon Passing Over a Bridge' +p216119 +sg25270 +S'Canaletto' +p216120 +sg25273 +S'etching' +p216121 +sg25275 +S'c. 1735/1746' +p216122 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cab5.jpg' +p216123 +sg25267 +g27 +sa(dp216124 +g25268 +S'When Adam Delved' +p216125 +sg25270 +S'Artist Information (' +p216126 +sg25273 +S'(artist after)' +p216127 +sg25275 +S'\n' +p216128 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d853.jpg' +p216129 +sg25267 +g27 +sa(dp216130 +g25268 +S'The Pope' +p216131 +sg25270 +S'Artist Information (' +p216132 +sg25273 +S'(artist after)' +p216133 +sg25275 +S'\n' +p216134 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d854.jpg' +p216135 +sg25267 +g27 +sa(dp216136 +g25268 +S'Emperor' +p216137 +sg25270 +S'Artist Information (' +p216138 +sg25273 +S'(artist after)' +p216139 +sg25275 +S'\n' +p216140 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d855.jpg' +p216141 +sg25267 +g27 +sa(dp216142 +g25268 +S'Empress' +p216143 +sg25270 +S'Artist Information (' +p216144 +sg25273 +S'(artist after)' +p216145 +sg25275 +S'\n' +p216146 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d856.jpg' +p216147 +sg25267 +g27 +sa(dp216148 +g25268 +S'Queen' +p216149 +sg25270 +S'Artist Information (' +p216150 +sg25273 +S'(artist after)' +p216151 +sg25275 +S'\n' +p216152 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d857.jpg' +p216153 +sg25267 +g27 +sa(dp216154 +g25268 +S'Cardinal' +p216155 +sg25270 +S'Artist Information (' +p216156 +sg25273 +S'(artist after)' +p216157 +sg25275 +S'\n' +p216158 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d858.jpg' +p216159 +sg25267 +g27 +sa(dp216160 +g25268 +S'Duke' +p216161 +sg25270 +S'Artist Information (' +p216162 +sg25273 +S'(artist after)' +p216163 +sg25275 +S'\n' +p216164 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d859.jpg' +p216165 +sg25267 +g27 +sa(dp216166 +g25268 +S'Bishop' +p216167 +sg25270 +S'Artist Information (' +p216168 +sg25273 +S'(artist after)' +p216169 +sg25275 +S'\n' +p216170 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d85a.jpg' +p216171 +sg25267 +g27 +sa(dp216172 +g25268 +S'Count' +p216173 +sg25270 +S'Artist Information (' +p216174 +sg25273 +S'(artist after)' +p216175 +sg25275 +S'\n' +p216176 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d85b.jpg' +p216177 +sg25267 +g27 +sa(dp216178 +g25268 +S'Abbot' +p216179 +sg25270 +S'Artist Information (' +p216180 +sg25273 +S'(artist after)' +p216181 +sg25275 +S'\n' +p216182 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d85c.jpg' +p216183 +sg25267 +g27 +sa(dp216184 +g25268 +S'The Madonna del Carmelo Appearing to Saint Simon Stock' +p216185 +sg25270 +S'Artist Information (' +p216186 +sg25273 +S'(artist after)' +p216187 +sg25275 +S'\n' +p216188 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc48.jpg' +p216189 +sg25267 +g27 +sa(dp216190 +g25268 +S'Abbess' +p216191 +sg25270 +S'Artist Information (' +p216192 +sg25273 +S'(artist after)' +p216193 +sg25275 +S'\n' +p216194 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d85d.jpg' +p216195 +sg25267 +g27 +sa(dp216196 +g25268 +S'Monk' +p216197 +sg25270 +S'Artist Information (' +p216198 +sg25273 +S'(artist after)' +p216199 +sg25275 +S'\n' +p216200 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d85e.jpg' +p216201 +sg25267 +g27 +sa(dp216202 +g25268 +S'Nun' +p216203 +sg25270 +S'Artist Information (' +p216204 +sg25273 +S'(artist after)' +p216205 +sg25275 +S'\n' +p216206 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d85f.jpg' +p216207 +sg25267 +g27 +sa(dp216208 +g25268 +S'Preacher' +p216209 +sg25270 +S'Artist Information (' +p216210 +sg25273 +S'(artist after)' +p216211 +sg25275 +S'\n' +p216212 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d860.jpg' +p216213 +sg25267 +g27 +sa(dp216214 +g25268 +S'Doctor' +p216215 +sg25270 +S'Artist Information (' +p216216 +sg25273 +S'(artist after)' +p216217 +sg25275 +S'\n' +p216218 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d861.jpg' +p216219 +sg25267 +g27 +sa(dp216220 +g25268 +S'Knight' +p216221 +sg25270 +S'Artist Information (' +p216222 +sg25273 +S'(artist after)' +p216223 +sg25275 +S'\n' +p216224 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d862.jpg' +p216225 +sg25267 +g27 +sa(dp216226 +g25268 +S'Advocate' +p216227 +sg25270 +S'Artist Information (' +p216228 +sg25273 +S'(artist after)' +p216229 +sg25275 +S'\n' +p216230 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d863.jpg' +p216231 +sg25267 +g27 +sa(dp216232 +g25268 +S'Bridal Pair' +p216233 +sg25270 +S'Artist Information (' +p216234 +sg25273 +S'(artist after)' +p216235 +sg25275 +S'\n' +p216236 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d864.jpg' +p216237 +sg25267 +g27 +sa(dp216238 +g25268 +S'Bride' +p216239 +sg25270 +S'Artist Information (' +p216240 +sg25273 +S'(artist after)' +p216241 +sg25275 +S'\n' +p216242 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d865.jpg' +p216243 +sg25267 +g27 +sa(dp216244 +g25268 +S'Merchant' +p216245 +sg25270 +S'Artist Information (' +p216246 +sg25273 +S'(artist after)' +p216247 +sg25275 +S'\n' +p216248 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d866.jpg' +p216249 +sg25267 +g27 +sa(dp216250 +g25268 +S'Title Plate' +p216251 +sg25270 +S'Giovanni Battista Piranesi' +p216252 +sg25273 +S'etching, engraving, sulphur tint or open bite' +p216253 +sg25275 +S'published 1749/1750' +p216254 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc1c.jpg' +p216255 +sg25267 +g27 +sa(dp216256 +g25268 +S'Peddler' +p216257 +sg25270 +S'Artist Information (' +p216258 +sg25273 +S'(artist after)' +p216259 +sg25275 +S'\n' +p216260 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d867.jpg' +p216261 +sg25267 +g27 +sa(dp216262 +g25268 +S'Miser' +p216263 +sg25270 +S'Artist Information (' +p216264 +sg25273 +S'(artist after)' +p216265 +sg25275 +S'\n' +p216266 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d868.jpg' +p216267 +sg25267 +g27 +sa(dp216268 +g25268 +S'Waggoner' +p216269 +sg25270 +S'Artist Information (' +p216270 +sg25273 +S'(artist after)' +p216271 +sg25275 +S'\n' +p216272 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d869.jpg' +p216273 +sg25267 +g27 +sa(dp216274 +g25268 +S'Gamesters' +p216275 +sg25270 +S'Artist Information (' +p216276 +sg25273 +S'(artist after)' +p216277 +sg25275 +S'\n' +p216278 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d86a.jpg' +p216279 +sg25267 +g27 +sa(dp216280 +g25268 +S'Old Man' +p216281 +sg25270 +S'Artist Information (' +p216282 +sg25273 +S'(artist after)' +p216283 +sg25275 +S'\n' +p216284 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d86b.jpg' +p216285 +sg25267 +g27 +sa(dp216286 +g25268 +S'Old Woman' +p216287 +sg25270 +S'Artist Information (' +p216288 +sg25273 +S'(artist after)' +p216289 +sg25275 +S'\n' +p216290 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d86c.jpg' +p216291 +sg25267 +g27 +sa(dp216292 +g25268 +S'Child' +p216293 +sg25270 +S'Artist Information (' +p216294 +sg25273 +S'(artist after)' +p216295 +sg25275 +S'\n' +p216296 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d86d.jpg' +p216297 +sg25267 +g27 +sa(dp216298 +g25268 +S"Death's Coat of Arms" +p216299 +sg25270 +S'Artist Information (' +p216300 +sg25273 +S'(artist after)' +p216301 +sg25275 +S'\n' +p216302 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d86e.jpg' +p216303 +sg25267 +g27 +sa(dp216304 +g25268 +S'Katharine Furlegerin' +p216305 +sg25270 +S'Artist Information (' +p216306 +sg25273 +S'(artist after)' +p216307 +sg25275 +S'\n' +p216308 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db2f.jpg' +p216309 +sg25267 +g27 +sa(dp216310 +g25268 +S'Title Page' +p216311 +sg25270 +S'Wenceslaus Hollar' +p216312 +sg25273 +S'etching' +p216313 +sg25275 +S'1635' +p216314 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d86f.jpg' +p216315 +sg25267 +g27 +sa(dp216316 +g25268 +S'Near Prague' +p216317 +sg25270 +S'Wenceslaus Hollar' +p216318 +sg25273 +S'etching' +p216319 +sg25275 +S'1635' +p216320 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d872.jpg' +p216321 +sg25267 +g27 +sa(dp216322 +g25268 +S'Prague' +p216323 +sg25270 +S'Wenceslaus Hollar' +p216324 +sg25273 +S'etching' +p216325 +sg25275 +S'1635' +p216326 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d871.jpg' +p216327 +sg25267 +g27 +sa(dp216328 +g25268 +S'Nuremberg' +p216329 +sg25270 +S'Wenceslaus Hollar' +p216330 +sg25273 +S'etching' +p216331 +sg25275 +S'1635' +p216332 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d870.jpg' +p216333 +sg25267 +g27 +sa(dp216334 +g25268 +S'Augsburg' +p216335 +sg25270 +S'Wenceslaus Hollar' +p216336 +sg25273 +S'etching' +p216337 +sg25275 +S'1635' +p216338 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d877.jpg' +p216339 +sg25267 +g27 +sa(dp216340 +g25268 +S'On the Neckar' +p216341 +sg25270 +S'Wenceslaus Hollar' +p216342 +sg25273 +S'etching' +p216343 +sg25275 +S'1635' +p216344 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d878.jpg' +p216345 +sg25267 +g27 +sa(dp216346 +g25268 +S'Strasbourg: The Toll House' +p216347 +sg25270 +S'Wenceslaus Hollar' +p216348 +sg25273 +S'etching' +p216349 +sg25275 +S'1635' +p216350 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d879.jpg' +p216351 +sg25267 +g27 +sa(dp216352 +g25268 +S'Strasbourg: The Toll House' +p216353 +sg25270 +S'Wenceslaus Hollar' +p216354 +sg25273 +S'etching' +p216355 +sg25275 +S'1635' +p216356 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d87a.jpg' +p216357 +sg25267 +g27 +sa(dp216358 +g25268 +S'Strasbourg' +p216359 +sg25270 +S'Wenceslaus Hollar' +p216360 +sg25273 +S'etching' +p216361 +sg25275 +S'1635' +p216362 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d87b.jpg' +p216363 +sg25267 +g27 +sa(dp216364 +g25268 +S'Strasbourg' +p216365 +sg25270 +S'Wenceslaus Hollar' +p216366 +sg25273 +S'etching' +p216367 +sg25275 +S'1635' +p216368 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d87c.jpg' +p216369 +sg25267 +g27 +sa(dp216370 +g25268 +S'Speyer' +p216371 +sg25270 +S'Wenceslaus Hollar' +p216372 +sg25273 +S'etching' +p216373 +sg25275 +S'1635' +p216374 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d87d.jpg' +p216375 +sg25267 +g27 +sa(dp216376 +g25268 +S'Hanau' +p216377 +sg25270 +S'Wenceslaus Hollar' +p216378 +sg25273 +S'etching' +p216379 +sg25275 +S'1635' +p216380 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d87e.jpg' +p216381 +sg25267 +g27 +sa(dp216382 +g25268 +S'Frankfort' +p216383 +sg25270 +S'Wenceslaus Hollar' +p216384 +sg25273 +S'etching' +p216385 +sg25275 +S'1635' +p216386 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d87f.jpg' +p216387 +sg25267 +g27 +sa(dp216388 +g25268 +S'Rudesheim' +p216389 +sg25270 +S'Wenceslaus Hollar' +p216390 +sg25273 +S'etching' +p216391 +sg25275 +S'1635' +p216392 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d880.jpg' +p216393 +sg25267 +g27 +sa(dp216394 +g25268 +S'Coblentz' +p216395 +sg25270 +S'Wenceslaus Hollar' +p216396 +sg25273 +S'etching' +p216397 +sg25275 +S'1635' +p216398 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d881.jpg' +p216399 +sg25267 +g27 +sa(dp216400 +g25268 +S'Drachenfels' +p216401 +sg25270 +S'Wenceslaus Hollar' +p216402 +sg25273 +S'etching' +p216403 +sg25275 +S'1635' +p216404 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d882.jpg' +p216405 +sg25267 +g27 +sa(dp216406 +g25268 +S'Cologne' +p216407 +sg25270 +S'Wenceslaus Hollar' +p216408 +sg25273 +S'etching' +p216409 +sg25275 +S'1635' +p216410 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d883.jpg' +p216411 +sg25267 +g27 +sa(dp216412 +g25268 +S'Cologne' +p216413 +sg25270 +S'Wenceslaus Hollar' +p216414 +sg25273 +S'etching' +p216415 +sg25275 +S'1635' +p216416 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d884.jpg' +p216417 +sg25267 +g27 +sa(dp216418 +g25268 +S'Duren' +p216419 +sg25270 +S'Wenceslaus Hollar' +p216420 +sg25273 +S'etching' +p216421 +sg25275 +S'1635' +p216422 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d890.jpg' +p216423 +sg25267 +g27 +sa(dp216424 +g25268 +S'Wesel' +p216425 +sg25270 +S'Wenceslaus Hollar' +p216426 +sg25273 +S'etching' +p216427 +sg25275 +S'1635' +p216428 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d893.jpg' +p216429 +sg25267 +g27 +sa(dp216430 +g25268 +S'Delfshaven' +p216431 +sg25270 +S'Wenceslaus Hollar' +p216432 +sg25273 +S'etching' +p216433 +sg25275 +S'1635' +p216434 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d892.jpg' +p216435 +sg25267 +g27 +sa(dp216436 +g25268 +S'Sea Scene' +p216437 +sg25270 +S'Wenceslaus Hollar' +p216438 +sg25273 +S'etching' +p216439 +sg25275 +S'1635' +p216440 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d891.jpg' +p216441 +sg25267 +g27 +sa(dp216442 +g25268 +S'Near Albury' +p216443 +sg25270 +S'Wenceslaus Hollar' +p216444 +sg25273 +S'etching' +p216445 +sg25275 +S'1645' +p216446 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d89b.jpg' +p216447 +sg25267 +g27 +sa(dp216448 +g25268 +S'Albury' +p216449 +sg25270 +S'Wenceslaus Hollar' +p216450 +sg25273 +S'etching' +p216451 +sg25275 +S'1645' +p216452 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d89c.jpg' +p216453 +sg25267 +g27 +sa(dp216454 +g25268 +S'Albury' +p216455 +sg25270 +S'Wenceslaus Hollar' +p216456 +sg25273 +S'etching' +p216457 +sg25275 +S'1645' +p216458 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d89d.jpg' +p216459 +sg25267 +g27 +sa(dp216460 +g25268 +S'Albury' +p216461 +sg25270 +S'Wenceslaus Hollar' +p216462 +sg25273 +S'etching' +p216463 +sg25275 +S'1645' +p216464 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d89e.jpg' +p216465 +sg25267 +g27 +sa(dp216466 +g25268 +S'Albury' +p216467 +sg25270 +S'Wenceslaus Hollar' +p216468 +sg25273 +S'etching' +p216469 +sg25275 +S'1645' +p216470 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d89f.jpg' +p216471 +sg25267 +g27 +sa(dp216472 +g25268 +S'Albury' +p216473 +sg25270 +S'Wenceslaus Hollar' +p216474 +sg25273 +S'etching' +p216475 +sg25275 +S'1645' +p216476 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8a0.jpg' +p216477 +sg25267 +g27 +sa(dp216478 +g25268 +S'The Mineral Spring' +p216479 +sg25270 +S'Wenceslaus Hollar' +p216480 +sg25273 +S'etching' +p216481 +sg25275 +S'unknown date\n' +p216482 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db31.jpg' +p216483 +sg25267 +g27 +sa(dp216484 +g25268 +S'Prospect of Oxford' +p216485 +sg25270 +S'Artist Information (' +p216486 +sg25273 +S'(artist after)' +p216487 +sg25275 +S'\n' +p216488 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db2b.jpg' +p216489 +sg25267 +g27 +sa(dp216490 +g25268 +S'The Peace of Munster' +p216491 +sg25270 +S'Wenceslaus Hollar' +p216492 +sg25273 +S'etching' +p216493 +sg25275 +S'1641' +p216494 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db29.jpg' +p216495 +sg25267 +g27 +sa(dp216496 +g25268 +S"Albrecht Durer's Father" +p216497 +sg25270 +S'Artist Information (' +p216498 +sg25273 +S'(artist after)' +p216499 +sg25275 +S'\n' +p216500 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db2d.jpg' +p216501 +sg25267 +g27 +sa(dp216502 +g25268 +S'Title Page' +p216503 +sg25270 +S'Wenceslaus Hollar' +p216504 +sg25273 +S'etching' +p216505 +sg25275 +S'1646' +p216506 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db0f.jpg' +p216507 +sg25267 +g27 +sa(dp216508 +g25268 +S'Six Insects' +p216509 +sg25270 +S'Wenceslaus Hollar' +p216510 +sg25273 +S'etching' +p216511 +sg25275 +S'1646' +p216512 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db10.jpg' +p216513 +sg25267 +g27 +sa(dp216514 +g25268 +S'Moth and Three Butterflies' +p216515 +sg25270 +S'Wenceslaus Hollar' +p216516 +sg25273 +S'etching' +p216517 +sg25275 +S'1646' +p216518 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db0d.jpg' +p216519 +sg25267 +g27 +sa(dp216520 +g25268 +S'Four Caterpillars and a Snail' +p216521 +sg25270 +S'Wenceslaus Hollar' +p216522 +sg25273 +S'etching' +p216523 +sg25275 +S'1646' +p216524 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db0e.jpg' +p216525 +sg25267 +g27 +sa(dp216526 +g25268 +S'Moth, Three Butterflies, and Two Beetles' +p216527 +sg25270 +S'Wenceslaus Hollar' +p216528 +sg25273 +S'etching' +p216529 +sg25275 +S'1646' +p216530 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db0b.jpg' +p216531 +sg25267 +g27 +sa(dp216532 +g25268 +S'Dragonflies and a Bumble Bee' +p216533 +sg25270 +S'Wenceslaus Hollar' +p216534 +sg25273 +S'etching' +p216535 +sg25275 +S'1646' +p216536 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db0c.jpg' +p216537 +sg25267 +g27 +sa(dp216538 +g25268 +S'Three Butterflies and a Wasp' +p216539 +sg25270 +S'Wenceslaus Hollar' +p216540 +sg25273 +S'etching' +p216541 +sg25275 +S'1646' +p216542 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db09.jpg' +p216543 +sg25267 +g27 +sa(dp216544 +g25268 +S'Two Moths and Six Insects' +p216545 +sg25270 +S'Wenceslaus Hollar' +p216546 +sg25273 +S'etching' +p216547 +sg25275 +S'1646' +p216548 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db0a.jpg' +p216549 +sg25267 +g27 +sa(dp216550 +g25268 +S'Three Moths, Two Butterflies, and a Bumble Bee' +p216551 +sg25270 +S'Wenceslaus Hollar' +p216552 +sg25273 +S'etching' +p216553 +sg25275 +S'1646' +p216554 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db07.jpg' +p216555 +sg25267 +g27 +sa(dp216556 +g25268 +S'Four Butterflies' +p216557 +sg25270 +S'Wenceslaus Hollar' +p216558 +sg25273 +S'etching' +p216559 +sg25275 +S'1646' +p216560 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db08.jpg' +p216561 +sg25267 +g27 +sa(dp216562 +g25268 +S'Five Butterflies, a Moth, and Two Beetles' +p216563 +sg25270 +S'Wenceslaus Hollar' +p216564 +sg25273 +S'etching' +p216565 +sg25275 +S'1646' +p216566 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db05.jpg' +p216567 +sg25267 +g27 +sa(dp216568 +g25268 +S'Five Butterflies' +p216569 +sg25270 +S'Wenceslaus Hollar' +p216570 +sg25273 +S'etching' +p216571 +sg25275 +S'1646' +p216572 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db06.jpg' +p216573 +sg25267 +g27 +sa(dp216574 +g25268 +S'Title Page' +p216575 +sg25270 +S'Wenceslaus Hollar' +p216576 +sg25273 +S'etching' +p216577 +sg25275 +S'unknown date\n' +p216578 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db1b.jpg' +p216579 +sg25267 +g27 +sa(dp216580 +g25268 +S'Two Dragonflies and Five Butterflies' +p216581 +sg25270 +S'Wenceslaus Hollar' +p216582 +sg25273 +S'etching' +p216583 +sg25275 +S'unknown date\n' +p216584 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db1a.jpg' +p216585 +sg25267 +g27 +sa(dp216586 +g25268 +S'Swallow-tailed Butterfly and Twelve Other Insects' +p216587 +sg25270 +S'Wenceslaus Hollar' +p216588 +sg25273 +S'etching' +p216589 +sg25275 +S'unknown date\n' +p216590 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db19.jpg' +p216591 +sg25267 +g27 +sa(dp216592 +g25268 +S'Three Caterpillars, a Moth, and Four Butterflies' +p216593 +sg25270 +S'Wenceslaus Hollar' +p216594 +sg25273 +S'etching' +p216595 +sg25275 +S'unknown date\n' +p216596 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db18.jpg' +p216597 +sg25267 +g27 +sa(dp216598 +g25268 +S'Moth, Butterflies, and Bees' +p216599 +sg25270 +S'Wenceslaus Hollar' +p216600 +sg25273 +S'etching' +p216601 +sg25275 +S'unknown date\n' +p216602 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db17.jpg' +p216603 +sg25267 +g27 +sa(dp216604 +g25268 +S'Six Insects, a Caterpillar, and a Snail' +p216605 +sg25270 +S'Wenceslaus Hollar' +p216606 +sg25273 +S'etching' +p216607 +sg25275 +S'unknown date\n' +p216608 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db16.jpg' +p216609 +sg25267 +g27 +sa(dp216610 +g25268 +S'Five Butterflies and a Moth' +p216611 +sg25270 +S'Wenceslaus Hollar' +p216612 +sg25273 +S'etching' +p216613 +sg25275 +S'unknown date\n' +p216614 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db15.jpg' +p216615 +sg25267 +g27 +sa(dp216616 +g25268 +S'Dragonfly, Ladybirds, and Butterflies' +p216617 +sg25270 +S'Wenceslaus Hollar' +p216618 +sg25273 +S'etching' +p216619 +sg25275 +S'unknown date\n' +p216620 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db14.jpg' +p216621 +sg25267 +g27 +sa(dp216622 +g25268 +S'Theatrum mulierum: Title Page' +p216623 +sg25270 +S'Wenceslaus Hollar' +p216624 +sg25273 +S'etching' +p216625 +sg25275 +S'1643' +p216626 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8ae.jpg' +p216627 +sg25267 +g27 +sa(dp216628 +g25268 +S'Aula Veneris: Title Page' +p216629 +sg25270 +S'Wenceslaus Hollar' +p216630 +sg25273 +S'etching' +p216631 +sg25275 +S'1644' +p216632 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8af.jpg' +p216633 +sg25267 +g27 +sa(dp216634 +g25268 +S'Nobilis Mulier Bohemica' +p216635 +sg25270 +S'Wenceslaus Hollar' +p216636 +sg25273 +S'etching' +p216637 +sg25275 +S'1649' +p216638 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8b0.jpg' +p216639 +sg25267 +g27 +sa(dp216640 +g25268 +S'Rustica Bohemica' +p216641 +sg25270 +S'Wenceslaus Hollar' +p216642 +sg25273 +S'etching' +p216643 +sg25275 +S'1643' +p216644 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8b1.jpg' +p216645 +sg25267 +g27 +sa(dp216646 +g25268 +S'Mercatoris Pragensis Vxor' +p216647 +sg25270 +S'Wenceslaus Hollar' +p216648 +sg25273 +S'etching' +p216649 +sg25275 +S'1642' +p216650 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8b2.jpg' +p216651 +sg25267 +g27 +sa(dp216652 +g25268 +S'Mulier Pragensis' +p216653 +sg25270 +S'Wenceslaus Hollar' +p216654 +sg25273 +S'etching' +p216655 +sg25275 +S'1643' +p216656 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8b3.jpg' +p216657 +sg25267 +g27 +sa(dp216658 +g25268 +S'Ciuis Pragensis Filia' +p216659 +sg25270 +S'Wenceslaus Hollar' +p216660 +sg25273 +S'etching' +p216661 +sg25275 +S'1643' +p216662 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8b4.jpg' +p216663 +sg25267 +g27 +sa(dp216664 +g25268 +S'Mulier Austriae Superioris' +p216665 +sg25270 +S'Wenceslaus Hollar' +p216666 +sg25273 +S'etching' +p216667 +sg25275 +S'1643' +p216668 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8b5.jpg' +p216669 +sg25267 +g27 +sa(dp216670 +g25268 +S'Mulier Generosa Viennensis Austri' +p216671 +sg25270 +S'Wenceslaus Hollar' +p216672 +sg25273 +S'etching' +p216673 +sg25275 +S'1642' +p216674 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8b6.jpg' +p216675 +sg25267 +g27 +sa(dp216676 +g25268 +S'Mulier Wiennensis Austri' +p216677 +sg25270 +S'Wenceslaus Hollar' +p216678 +sg25273 +S'etching' +p216679 +sg25275 +S'1643' +p216680 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8b7.jpg' +p216681 +sg25267 +g27 +sa(dp216682 +g25268 +S'Mulier Wiennensis in Domo' +p216683 +sg25270 +S'Wenceslaus Hollar' +p216684 +sg25273 +S'etching' +p216685 +sg25275 +S'1649' +p216686 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8b8.jpg' +p216687 +sg25267 +g27 +sa(dp216688 +g25268 +S'Mulier Westphalica ex Archiep Monasteri' +p216689 +sg25270 +S'Wenceslaus Hollar' +p216690 +sg25273 +S'etching' +p216691 +sg25275 +S'1643' +p216692 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8b9.jpg' +p216693 +sg25267 +g27 +sa(dp216694 +g25268 +S'Mulier Franconiensis' +p216695 +sg25270 +S'Wenceslaus Hollar' +p216696 +sg25273 +S'etching' +p216697 +sg25275 +S'1643' +p216698 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8ba.jpg' +p216699 +sg25267 +g27 +sa(dp216700 +g25268 +S'Ciuis Norimbergensis Vxor' +p216701 +sg25270 +S'Wenceslaus Hollar' +p216702 +sg25273 +S'etching' +p216703 +sg25275 +S'1643' +p216704 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8bb.jpg' +p216705 +sg25267 +g27 +sa(dp216706 +g25268 +S'Mercatoris Norimbergensis Vxor' +p216707 +sg25270 +S'Wenceslaus Hollar' +p216708 +sg25273 +S'etching' +p216709 +sg25275 +S'1643' +p216710 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8bc.jpg' +p216711 +sg25267 +g27 +sa(dp216712 +g25268 +S'Mulier Augustae Vindelicorum' +p216713 +sg25270 +S'Wenceslaus Hollar' +p216714 +sg25273 +S'etching' +p216715 +sg25275 +S'unknown date\n' +p216716 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8bd.jpg' +p216717 +sg25267 +g27 +sa(dp216718 +g25268 +S'Mulier Augustana' +p216719 +sg25270 +S'Wenceslaus Hollar' +p216720 +sg25273 +S'etching' +p216721 +sg25275 +S'1643' +p216722 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8be.jpg' +p216723 +sg25267 +g27 +sa(dp216724 +g25268 +S'Mulier Svevica vel Augustana' +p216725 +sg25270 +S'Wenceslaus Hollar' +p216726 +sg25273 +S'etching' +p216727 +sg25275 +S'1643' +p216728 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8bf.jpg' +p216729 +sg25267 +g27 +sa(dp216730 +g25268 +S'Mulier Svevica Inferioris Conditionis' +p216731 +sg25270 +S'Wenceslaus Hollar' +p216732 +sg25273 +S'etching' +p216733 +sg25275 +S'1642' +p216734 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8c0.jpg' +p216735 +sg25267 +g27 +sa(dp216736 +g25268 +S'Self-Portrait' +p216737 +sg25270 +S'Rembrandt van Rijn' +p216738 +sg25273 +S'oil on canvas' +p216739 +sg25275 +S'1659' +p216740 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e7e.jpg' +p216741 +sg25267 +S'Rembrandt van Rijn painted, drew, and etched so many self–portraits in his lifetime that changes in his appearance tempt us to gauge his mental state by comparing one image to another. Rembrandt painted this self–portrait in 1659, after he had suffered financial bankruptcy that forced him to sell his home and other possessions to satisfy his creditors. Early descriptions of the painting therefore mentioned an aura of melancholy surrounding the artist, yet the removal of dark, discolored varnish in 1992 proved that interpreting paintings on the basis of an artist\xe2\x80\x99s chronological life story is dangerous: the cleaned portrait revealed a rich range of pinks and bright flesh tones, forcing a reassessment of Rembrandt\xe2\x80\x99s "mood." Instead of sadness, the deep–set eyes that bore into those of the viewer seem to express inner strength and dignity.\n The light that so effectively illuminates the head also accents Rembrandt\xe2\x80\x99s left shoulder and, to a lesser extent, his broadly executed clasped hands. Rembrandt\xe2\x80\x99s pose was inspired by Raphael\xe2\x80\x99s famous \n ' +p216742 +sa(dp216743 +g25268 +S'Mulier ex Ducatu Wirttembergensi' +p216744 +sg25270 +S'Wenceslaus Hollar' +p216745 +sg25273 +S'etching' +p216746 +sg25275 +S'1643' +p216747 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8c1.jpg' +p216748 +sg25267 +g27 +sa(dp216749 +g25268 +S'Cives Hollandica' +p216750 +sg25270 +S'Wenceslaus Hollar' +p216751 +sg25273 +S'etching' +p216752 +sg25275 +S'1643' +p216753 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8c2.jpg' +p216754 +sg25267 +g27 +sa(dp216755 +g25268 +S'Mercatoris Hollandici Vxor' +p216756 +sg25270 +S'Wenceslaus Hollar' +p216757 +sg25273 +S'etching' +p216758 +sg25275 +S'1644' +p216759 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8c3.jpg' +p216760 +sg25267 +g27 +sa(dp216761 +g25268 +S'Navigatoris Hollandici Vxor' +p216762 +sg25270 +S'Wenceslaus Hollar' +p216763 +sg25273 +S'etching' +p216764 +sg25275 +S'unknown date\n' +p216765 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8c4.jpg' +p216766 +sg25267 +g27 +sa(dp216767 +g25268 +S'Mulier Belgica in Vestitu Domestico' +p216768 +sg25270 +S'Wenceslaus Hollar' +p216769 +sg25273 +S'etching' +p216770 +sg25275 +S'unknown date\n' +p216771 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8c5.jpg' +p216772 +sg25267 +g27 +sa(dp216773 +g25268 +S'Nobilis Mulier Brabantica' +p216774 +sg25270 +S'Wenceslaus Hollar' +p216775 +sg25273 +S'etching' +p216776 +sg25275 +S'1649' +p216777 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8c6.jpg' +p216778 +sg25267 +g27 +sa(dp216779 +g25268 +S'Mulier Generosa Brabantica' +p216780 +sg25270 +S'Wenceslaus Hollar' +p216781 +sg25273 +S'etching' +p216782 +sg25275 +S'1643' +p216783 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8c7.jpg' +p216784 +sg25267 +g27 +sa(dp216785 +g25268 +S'Mulier Primaria Antuerpiensis, in Ornatu Domestico' +p216786 +sg25270 +S'Wenceslaus Hollar' +p216787 +sg25273 +S'etching' +p216788 +sg25275 +S'unknown date\n' +p216789 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8c8.jpg' +p216790 +sg25267 +g27 +sa(dp216791 +g25268 +S'Mulier Antuerpiensis' +p216792 +sg25270 +S'Wenceslaus Hollar' +p216793 +sg25273 +S'etching' +p216794 +sg25275 +S'1643' +p216795 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8ab.jpg' +p216796 +sg25267 +g27 +sa(dp216797 +g25268 +S'Ciuis aut Mercatoris Antuerpiensis Vxor' +p216798 +sg25270 +S'Wenceslaus Hollar' +p216799 +sg25273 +S'etching' +p216800 +sg25275 +S'1650' +p216801 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8ac.jpg' +p216802 +sg25267 +g27 +sa(dp216803 +g25268 +S'Mulier Religiosa Antuerpiensis' +p216804 +sg25270 +S'Wenceslaus Hollar' +p216805 +sg25273 +S'etching' +p216806 +sg25275 +S'unknown date\n' +p216807 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8a9.jpg' +p216808 +sg25267 +g27 +sa(dp216809 +g25268 +S'Mulier Generosa Coloniensis' +p216810 +sg25270 +S'Wenceslaus Hollar' +p216811 +sg25273 +S'etching' +p216812 +sg25275 +S'1643' +p216813 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8aa.jpg' +p216814 +sg25267 +g27 +sa(dp216815 +g25268 +S'Ciuis Coloniesis Vxor' +p216816 +sg25270 +S'Wenceslaus Hollar' +p216817 +sg25273 +S'etching' +p216818 +sg25275 +S'1643' +p216819 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8a7.jpg' +p216820 +sg25267 +g27 +sa(dp216821 +g25268 +S'Civis Coloniensis Filia' +p216822 +sg25270 +S'Wenceslaus Hollar' +p216823 +sg25273 +S'etching' +p216824 +sg25275 +S'1643' +p216825 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8a8.jpg' +p216826 +sg25267 +g27 +sa(dp216827 +g25268 +S'Mulier Coloniensis' +p216828 +sg25270 +S'Wenceslaus Hollar' +p216829 +sg25273 +S'etching' +p216830 +sg25275 +S'unknown date\n' +p216831 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8cb.jpg' +p216832 +sg25267 +g27 +sa(dp216833 +g25268 +S'Mulier Coloniensis Exspatians' +p216834 +sg25270 +S'Wenceslaus Hollar' +p216835 +sg25273 +S'etching' +p216836 +sg25275 +S'1643' +p216837 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8cc.jpg' +p216838 +sg25267 +g27 +sa(dp216839 +g25268 +S'Ancilla Coloniensis' +p216840 +sg25270 +S'Wenceslaus Hollar' +p216841 +sg25273 +S'etching' +p216842 +sg25275 +S'1643' +p216843 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8cd.jpg' +p216844 +sg25267 +g27 +sa(dp216845 +g25268 +S'Mulier Moguntiana' +p216846 +sg25270 +S'Wenceslaus Hollar' +p216847 +sg25273 +S'etching' +p216848 +sg25275 +S'unknown date\n' +p216849 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8ce.jpg' +p216850 +sg25267 +g27 +sa(dp216851 +g25268 +S'Mercatoris Francofurtensis Vxor' +p216852 +sg25270 +S'Wenceslaus Hollar' +p216853 +sg25273 +S'etching' +p216854 +sg25275 +S'17th century' +p216855 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8cf.jpg' +p216856 +sg25267 +g27 +sa(dp216857 +g25268 +S'Mercantoris Hanauiensis Vxor' +p216858 +sg25270 +S'Wenceslaus Hollar' +p216859 +sg25273 +S'etching' +p216860 +sg25275 +S'unknown date\n' +p216861 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8d0.jpg' +p216862 +sg25267 +g27 +sa(dp216863 +g25268 +S'Mulier ex inferiori Palainatu' +p216864 +sg25270 +S'Wenceslaus Hollar' +p216865 +sg25273 +S'etching' +p216866 +sg25275 +S'1643' +p216867 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8d1.jpg' +p216868 +sg25267 +g27 +sa(dp216869 +g25268 +S'Matrona Argentinensis' +p216870 +sg25270 +S'Wenceslaus Hollar' +p216871 +sg25273 +S'etching' +p216872 +sg25275 +S'1642' +p216873 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8d2.jpg' +p216874 +sg25267 +g27 +sa(dp216875 +g25268 +S'Matrona Argentinensis Caenam Dni Accedens e des Nymphs)' +p216876 +sg25270 +S'Wenceslaus Hollar' +p216877 +sg25273 +S'etching' +p216878 +sg25275 +S'unknown date\n' +p216879 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8d3.jpg' +p216880 +sg25267 +g27 +sa(dp216881 +g25268 +S'Mulier Argentinensis' +p216882 +sg25270 +S'Wenceslaus Hollar' +p216883 +sg25273 +S'etching' +p216884 +sg25275 +S'unknown date\n' +p216885 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8d4.jpg' +p216886 +sg25267 +g27 +sa(dp216887 +g25268 +S'Mulier Argentinensis' +p216888 +sg25270 +S'Wenceslaus Hollar' +p216889 +sg25273 +S'etching' +p216890 +sg25275 +S'1642' +p216891 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8d5.jpg' +p216892 +sg25267 +g27 +sa(dp216893 +g25268 +S'Virgo Nuptialis Argentinensis' +p216894 +sg25270 +S'Wenceslaus Hollar' +p216895 +sg25273 +S'etching' +p216896 +sg25275 +S'unknown date\n' +p216897 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8d6.jpg' +p216898 +sg25267 +g27 +sa(dp216899 +g25268 +S'Virgo Argentinensis' +p216900 +sg25270 +S'Wenceslaus Hollar' +p216901 +sg25273 +S'etching' +p216902 +sg25275 +S'unknown date\n' +p216903 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8d7.jpg' +p216904 +sg25267 +g27 +sa(dp216905 +g25268 +S'Virgo Argentinensis' +p216906 +sg25270 +S'Wenceslaus Hollar' +p216907 +sg25273 +S'etching' +p216908 +sg25275 +S'unknown date\n' +p216909 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8d8.jpg' +p216910 +sg25267 +g27 +sa(dp216911 +g25268 +S'Ancilla Argentinensis' +p216912 +sg25270 +S'Wenceslaus Hollar' +p216913 +sg25273 +S'etching' +p216914 +sg25275 +S'1643' +p216915 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8d9.jpg' +p216916 +sg25267 +g27 +sa(dp216917 +g25268 +S'Matrona Bernensis' +p216918 +sg25270 +S'Wenceslaus Hollar' +p216919 +sg25273 +S'etching' +p216920 +sg25275 +S'unknown date\n' +p216921 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8da.jpg' +p216922 +sg25267 +g27 +sa(dp216923 +g25268 +S'Mulier Bernensis' +p216924 +sg25270 +S'Wenceslaus Hollar' +p216925 +sg25273 +S'etching' +p216926 +sg25275 +S'1649' +p216927 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8db.jpg' +p216928 +sg25267 +g27 +sa(dp216929 +g25268 +S'Mulier Basiliensis' +p216930 +sg25270 +S'Wenceslaus Hollar' +p216931 +sg25273 +S'etching' +p216932 +sg25275 +S'1644' +p216933 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8dc.jpg' +p216934 +sg25267 +g27 +sa(dp216935 +g25268 +S'Mulier Basiliensis' +p216936 +sg25270 +S'Wenceslaus Hollar' +p216937 +sg25273 +S'etching' +p216938 +sg25275 +S'1644' +p216939 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8dd.jpg' +p216940 +sg25267 +g27 +sa(dp216941 +g25268 +S'Virgo Basiliensis' +p216942 +sg25270 +S'Wenceslaus Hollar' +p216943 +sg25273 +S'etching' +p216944 +sg25275 +S'1644' +p216945 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8de.jpg' +p216946 +sg25267 +g27 +sa(dp216947 +g25268 +S'Matrona Tiguriensis' +p216948 +sg25270 +S'Wenceslaus Hollar' +p216949 +sg25273 +S'etching' +p216950 +sg25275 +S'1649' +p216951 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d894.jpg' +p216952 +sg25267 +g27 +sa(dp216953 +g25268 +S'Virgo Nuptialis Tiguriensis' +p216954 +sg25270 +S'Wenceslaus Hollar' +p216955 +sg25273 +S'etching' +p216956 +sg25275 +S'1649' +p216957 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8df.jpg' +p216958 +sg25267 +g27 +sa(dp216959 +g25268 +S'Virgo Tiguriensis' +p216960 +sg25270 +S'Wenceslaus Hollar' +p216961 +sg25273 +S'etching' +p216962 +sg25275 +S'1649' +p216963 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8e0.jpg' +p216964 +sg25267 +g27 +sa(dp216965 +g25268 +S'Mulier Danica' +p216966 +sg25270 +S'Artist Information (' +p216967 +sg25273 +S'(artist after)' +p216968 +sg25275 +S'\n' +p216969 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8e1.jpg' +p216970 +sg25267 +g27 +sa(dp216971 +g25268 +S'Nobilis Mulier Gallica' +p216972 +sg25270 +S'Wenceslaus Hollar' +p216973 +sg25273 +S'etching' +p216974 +sg25275 +S'unknown date\n' +p216975 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8e2.jpg' +p216976 +sg25267 +g27 +sa(dp216977 +g25268 +S'Mulier Generosa Gallica' +p216978 +sg25270 +S'Wenceslaus Hollar' +p216979 +sg25273 +S'etching' +p216980 +sg25275 +S'1643' +p216981 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8e3.jpg' +p216982 +sg25267 +g27 +sa(dp216983 +g25268 +S'Mulier Nobilis aut Generosa Gallica' +p216984 +sg25270 +S'Wenceslaus Hollar' +p216985 +sg25273 +S'etching' +p216986 +sg25275 +S'1644' +p216987 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000dadd.jpg' +p216988 +sg25267 +g27 +sa(dp216989 +g25268 +S'Rustica Gallica' +p216990 +sg25270 +S'Wenceslaus Hollar' +p216991 +sg25273 +S'etching' +p216992 +sg25275 +S'1643' +p216993 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000dade.jpg' +p216994 +sg25267 +g27 +sa(dp216995 +g25268 +S'Matrona Parisiensis' +p216996 +sg25270 +S'Wenceslaus Hollar' +p216997 +sg25273 +S'etching' +p216998 +sg25275 +S'1643' +p216999 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000dadf.jpg' +p217000 +sg25267 +g27 +sa(dp217001 +g25268 +S'Mercatoris Parisiensis Vxor' +p217002 +sg25270 +S'Wenceslaus Hollar' +p217003 +sg25273 +S'etching' +p217004 +sg25275 +S'1643' +p217005 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000dae0.jpg' +p217006 +sg25267 +g27 +sa(dp217007 +g25268 +S'Opificis Parisiensis Vxor' +p217008 +sg25270 +S'Wenceslaus Hollar' +p217009 +sg25273 +S'etching' +p217010 +sg25275 +S'1643' +p217011 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000dae1.jpg' +p217012 +sg25267 +g27 +sa(dp217013 +g25268 +S'Mulier Diepana' +p217014 +sg25270 +S'Wenceslaus Hollar' +p217015 +sg25273 +S'etching' +p217016 +sg25275 +S'1649' +p217017 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000dae2.jpg' +p217018 +sg25267 +g27 +sa(dp217019 +g25268 +S'Mulier Diepana' +p217020 +sg25270 +S'Wenceslaus Hollar' +p217021 +sg25273 +S'etching' +p217022 +sg25275 +S'1649' +p217023 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000dae3.jpg' +p217024 +sg25267 +g27 +sa(dp217025 +g25268 +S'Mulier Generosa Italica' +p217026 +sg25270 +S'Wenceslaus Hollar' +p217027 +sg25273 +S'etching' +p217028 +sg25275 +S'unknown date\n' +p217029 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000dae4.jpg' +p217030 +sg25267 +g27 +sa(dp217031 +g25268 +S'Mulier Calabra, Vulgo, Foretana di Napoli' +p217032 +sg25270 +S'Wenceslaus Hollar' +p217033 +sg25273 +S'etching' +p217034 +sg25275 +S'unknown date\n' +p217035 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000dae5.jpg' +p217036 +sg25267 +g27 +sa(dp217037 +g25268 +S'Mulier Nobilis Hispanica' +p217038 +sg25270 +S'Wenceslaus Hollar' +p217039 +sg25273 +S'etching' +p217040 +sg25275 +S'probably 1649' +p217041 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000dae6.jpg' +p217042 +sg25267 +g27 +sa(dp217043 +g25268 +S'Mulier Generosa Hispanica' +p217044 +sg25270 +S'Wenceslaus Hollar' +p217045 +sg25273 +S'etching' +p217046 +sg25275 +S'1644' +p217047 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000dae7.jpg' +p217048 +sg25267 +g27 +sa(dp217049 +g25268 +S'Matrisana M.' +p217050 +sg25270 +S'Wenceslaus Hollar' +p217051 +sg25273 +S'etching' +p217052 +sg25275 +S'1648' +p217053 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000dae8.jpg' +p217054 +sg25267 +g27 +sa(dp217055 +g25268 +S'Mulier Matrisana' +p217056 +sg25270 +S'Wenceslaus Hollar' +p217057 +sg25273 +S'etching' +p217058 +sg25275 +S'1649' +p217059 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000dae9.jpg' +p217060 +sg25267 +g27 +sa(dp217061 +g25268 +S'Nobilis Mulier Aulica Anglicana' +p217062 +sg25270 +S'Wenceslaus Hollar' +p217063 +sg25273 +S'etching' +p217064 +sg25275 +S'1643' +p217065 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000daea.jpg' +p217066 +sg25267 +g27 +sa(dp217067 +g25268 +S'Nobilis Mulier Anglica' +p217068 +sg25270 +S'Artist Information (' +p217069 +sg25273 +S'(artist after)' +p217070 +sg25275 +S'\n' +p217071 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000daeb.jpg' +p217072 +sg25267 +g27 +sa(dp217073 +g25268 +S'Nobilis Mulier Anglica, in Vestitu Hiemali' +p217074 +sg25270 +S'Wenceslaus Hollar' +p217075 +sg25273 +S'etching' +p217076 +sg25275 +S'1643' +p217077 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000daec.jpg' +p217078 +sg25267 +g27 +sa(dp217079 +g25268 +S'Nobilis Mulier Anglicana' +p217080 +sg25270 +S'Wenceslaus Hollar' +p217081 +sg25273 +S'etching' +p217082 +sg25275 +S'unknown date\n' +p217083 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000daed.jpg' +p217084 +sg25267 +g27 +sa(dp217085 +g25268 +S'Mulier Nobilis aut Generosa Anglica' +p217086 +sg25270 +S'Wenceslaus Hollar' +p217087 +sg25273 +S'etching' +p217088 +sg25275 +S'1643' +p217089 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000daee.jpg' +p217090 +sg25267 +g27 +sa(dp217091 +g25268 +S'Mulier Generosa Anglica' +p217092 +sg25270 +S'Wenceslaus Hollar' +p217093 +sg25273 +S'etching' +p217094 +sg25275 +S'1643' +p217095 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000daef.jpg' +p217096 +sg25267 +g27 +sa(dp217097 +g25268 +S'Mulier Generosa Anglica' +p217098 +sg25270 +S'Wenceslaus Hollar' +p217099 +sg25273 +S'etching' +p217100 +sg25275 +S'1642' +p217101 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000daf0.jpg' +p217102 +sg25267 +g27 +sa(dp217103 +g25268 +S'Mulier Generosa Anglica' +p217104 +sg25270 +S'Wenceslaus Hollar' +p217105 +sg25273 +S'etching' +p217106 +sg25275 +S'1644' +p217107 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000daf1.jpg' +p217108 +sg25267 +g27 +sa(dp217109 +g25268 +S'Mulier Anglica Habitans in Pago' +p217110 +sg25270 +S'Wenceslaus Hollar' +p217111 +sg25273 +S'etching' +p217112 +sg25275 +S'1643' +p217113 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000daf2.jpg' +p217114 +sg25267 +g27 +sa(dp217115 +g25268 +S'Dni Maioris sive Praetoris Londinensis Vxoris Hab:' +p217116 +sg25270 +S'Wenceslaus Hollar' +p217117 +sg25273 +S'etching' +p217118 +sg25275 +S'1649' +p217119 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000daf3.jpg' +p217120 +sg25267 +g27 +sa(dp217121 +g25268 +S'Ciuis Londinensis Melioris Qualitatis Vxor' +p217122 +sg25270 +S'Wenceslaus Hollar' +p217123 +sg25273 +S'etching' +p217124 +sg25275 +S'1643' +p217125 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000daf4.jpg' +p217126 +sg25267 +g27 +sa(dp217127 +g25268 +S'Civis Londinensis Vxor' +p217128 +sg25270 +S'Wenceslaus Hollar' +p217129 +sg25273 +S'etching' +p217130 +sg25275 +S'1643' +p217131 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000daf5.jpg' +p217132 +sg25267 +g27 +sa(dp217133 +g25268 +S'Civis Londinensis Filia' +p217134 +sg25270 +S'Wenceslaus Hollar' +p217135 +sg25273 +S'etching' +p217136 +sg25275 +S'1643' +p217137 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000daf6.jpg' +p217138 +sg25267 +g27 +sa(dp217139 +g25268 +S'Ciuis vel Artificis Londinensis Vxor' +p217140 +sg25270 +S'Wenceslaus Hollar' +p217141 +sg25273 +S'etching' +p217142 +sg25275 +S'1643' +p217143 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000daf7.jpg' +p217144 +sg25267 +g27 +sa(dp217145 +g25268 +S'Mercatoris Londinensis Filia' +p217146 +sg25270 +S'Wenceslaus Hollar' +p217147 +sg25273 +S'etching' +p217148 +sg25275 +S'1643' +p217149 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000daf8.jpg' +p217150 +sg25267 +g27 +sa(dp217151 +g25268 +S'Mulier Scotica' +p217152 +sg25270 +S'Wenceslaus Hollar' +p217153 +sg25273 +S'etching' +p217154 +sg25275 +S'unknown date\n' +p217155 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000daf9.jpg' +p217156 +sg25267 +g27 +sa(dp217157 +g25268 +S'Mulier Hibernica vel Irlandica' +p217158 +sg25270 +S'Wenceslaus Hollar' +p217159 +sg25273 +S'etching' +p217160 +sg25275 +S'1649' +p217161 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000dafa.jpg' +p217162 +sg25267 +g27 +sa(dp217163 +g25268 +S'The Circle of the Lustful: Paolo and Francesca' +p217164 +sg25270 +S'William Blake' +p217165 +sg25273 +S'engraving' +p217166 +sg25275 +S'1827' +p217167 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007705.jpg' +p217168 +sg25267 +g27 +sa(dp217169 +g25268 +S'Mulier Aulica Turca' +p217170 +sg25270 +S'Wenceslaus Hollar' +p217171 +sg25273 +S'etching' +p217172 +sg25275 +S'1644' +p217173 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000dafb.jpg' +p217174 +sg25267 +g27 +sa(dp217175 +g25268 +S'Mulier Generosa Graeca in Civitate Pera' +p217176 +sg25270 +S'Wenceslaus Hollar' +p217177 +sg25273 +S'etching' +p217178 +sg25275 +S'1644' +p217179 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000dafc.jpg' +p217180 +sg25267 +g27 +sa(dp217181 +g25268 +S'Mulier Hebrea in Tracia' +p217182 +sg25270 +S'Wenceslaus Hollar' +p217183 +sg25273 +S'etching' +p217184 +sg25275 +S'1644' +p217185 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000dafd.jpg' +p217186 +sg25267 +g27 +sa(dp217187 +g25268 +S'Mulier Habitans Algieri' +p217188 +sg25270 +S'Wenceslaus Hollar' +p217189 +sg25273 +S'etching' +p217190 +sg25275 +S'1644' +p217191 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000dafe.jpg' +p217192 +sg25267 +g27 +sa(dp217193 +g25268 +S'Mulier Moresca' +p217194 +sg25270 +S'Wenceslaus Hollar' +p217195 +sg25273 +S'etching' +p217196 +sg25275 +S'unknown date\n' +p217197 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000da/a000daff.jpg' +p217198 +sg25267 +g27 +sa(dp217199 +g25268 +S'Mulier Persiana' +p217200 +sg25270 +S'Wenceslaus Hollar' +p217201 +sg25273 +S'etching' +p217202 +sg25275 +S'unknown date\n' +p217203 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db00.jpg' +p217204 +sg25267 +g27 +sa(dp217205 +g25268 +S'Mulier ex Virginia' +p217206 +sg25270 +S'Wenceslaus Hollar' +p217207 +sg25273 +S'etching' +p217208 +sg25275 +S'unknown date\n' +p217209 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db01.jpg' +p217210 +sg25267 +g27 +sa(dp217211 +g25268 +S'Spring' +p217212 +sg25270 +S'Wenceslaus Hollar' +p217213 +sg25273 +S'etching' +p217214 +sg25275 +S'1641' +p217215 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db25.jpg' +p217216 +sg25267 +g27 +sa(dp217217 +g25268 +S'Summer' +p217218 +sg25270 +S'Wenceslaus Hollar' +p217219 +sg25273 +S'etching' +p217220 +sg25275 +S'1641' +p217221 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db26.jpg' +p217222 +sg25267 +g27 +sa(dp217223 +g25268 +S'Autumn' +p217224 +sg25270 +S'Wenceslaus Hollar' +p217225 +sg25273 +S'etching' +p217226 +sg25275 +S'1641' +p217227 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db23.jpg' +p217228 +sg25267 +g27 +sa(dp217229 +g25268 +S'The Circle of the Corrupt Officials; the Devils Tormenting Ciampolo' +p217230 +sg25270 +S'William Blake' +p217231 +sg25273 +S'engraving' +p217232 +sg25275 +S'1827' +p217233 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007704.jpg' +p217234 +sg25267 +g27 +sa(dp217235 +g25268 +S'Winter' +p217236 +sg25270 +S'Wenceslaus Hollar' +p217237 +sg25273 +S'etching' +p217238 +sg25275 +S'1641' +p217239 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db24.jpg' +p217240 +sg25267 +g27 +sa(dp217241 +g25268 +S'View of Lewenberg' +p217242 +sg25270 +S'Wenceslaus Hollar' +p217243 +sg25273 +S'etching' +p217244 +sg25275 +S'unknown date\n' +p217245 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d885.jpg' +p217246 +sg25267 +g27 +sa(dp217247 +g25268 +S'View of Lewenberg' +p217248 +sg25270 +S'Artist Information (' +p217249 +sg25273 +S'Bohemian, 1607 - 1677' +p217250 +sg25275 +S'(artist after)' +p217251 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d886.jpg' +p217252 +sg25267 +g27 +sa(dp217253 +g25268 +S'Ornate Goblet' +p217254 +sg25270 +S'Artist Information (' +p217255 +sg25273 +S'(artist after)' +p217256 +sg25275 +S'\n' +p217257 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db1c.jpg' +p217258 +sg25267 +g27 +sa(dp217259 +g25268 +S'Woman of Antwerp' +p217260 +sg25270 +S'Wenceslaus Hollar' +p217261 +sg25273 +S'etching' +p217262 +sg25275 +S'1643' +p217263 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db03.jpg' +p217264 +sg25267 +g27 +sa(dp217265 +g25268 +S'Lady with Ribbons on Curls' +p217266 +sg25270 +S'Wenceslaus Hollar' +p217267 +sg25273 +S'etching' +p217268 +sg25275 +S'1646' +p217269 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db04.jpg' +p217270 +sg25267 +g27 +sa(dp217271 +g25268 +S'Woman with White Veil and Black Hat (Mary Stuart?)' +p217272 +sg25270 +S'Wenceslaus Hollar' +p217273 +sg25273 +S'etching' +p217274 +sg25275 +S'1645' +p217275 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8c9.jpg' +p217276 +sg25267 +g27 +sa(dp217277 +g25268 +S'Duchess of Lennox' +p217278 +sg25270 +S'Artist Information (' +p217279 +sg25273 +S'(artist after)' +p217280 +sg25275 +S'\n' +p217281 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8ca.jpg' +p217282 +sg25267 +g27 +sa(dp217283 +g25268 +S'Man with Beard Looking Right (Hans Holbein?)' +p217284 +sg25270 +S'Artist Information (' +p217285 +sg25273 +S'(artist after)' +p217286 +sg25275 +S'\n' +p217287 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8ad.jpg' +p217288 +sg25267 +g27 +sa(dp217289 +g25268 +S'Head of Woman Looking Right' +p217290 +sg25270 +S'Artist Information (' +p217291 +sg25273 +S'(artist after)' +p217292 +sg25275 +S'\n' +p217293 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d896.jpg' +p217294 +sg25267 +g27 +sa(dp217295 +g25268 +S'The Circle of the Corrupt Officials; the Devils Mauling Each Other' +p217296 +sg25270 +S'William Blake' +p217297 +sg25273 +S'engraving' +p217298 +sg25275 +S'1827' +p217299 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007702.jpg' +p217300 +sg25267 +g27 +sa(dp217301 +g25268 +S'Self-Portrait' +p217302 +sg25270 +S'Wenceslaus Hollar' +p217303 +sg25273 +S'etching' +p217304 +sg25275 +S'1647' +p217305 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d89a.jpg' +p217306 +sg25267 +g27 +sa(dp217307 +g25268 +S'Summer: The Bathing Place' +p217308 +sg25270 +S'Wenceslaus Hollar' +p217309 +sg25273 +S'etching' +p217310 +sg25275 +S'c. 1628/1629' +p217311 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db20.jpg' +p217312 +sg25267 +g27 +sa(dp217313 +g25268 +S'Johann Banfi Huniades' +p217314 +sg25270 +S'Artist Information (' +p217315 +sg25273 +S'(artist after)' +p217316 +sg25275 +S'\n' +p217317 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d895.jpg' +p217318 +sg25267 +g27 +sa(dp217319 +g25268 +S'Standing Figure' +p217320 +sg25270 +S'Artist Information (' +p217321 +sg25273 +S'(artist after)' +p217322 +sg25275 +S'\n' +p217323 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d850.jpg' +p217324 +sg25267 +g27 +sa(dp217325 +g25268 +S'Self-Portrait' +p217326 +sg25270 +S'Wenceslaus Hollar' +p217327 +sg25273 +S'etching' +p217328 +sg25275 +S'1647' +p217329 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d897.jpg' +p217330 +sg25267 +g27 +sa(dp217331 +g25268 +S'View of Shenckenschantz' +p217332 +sg25270 +S'Wenceslaus Hollar' +p217333 +sg25273 +S'etching' +p217334 +sg25275 +S'1647' +p217335 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d88f.jpg' +p217336 +sg25267 +g27 +sa(dp217337 +g25268 +S'Execution of Thomas Wentworth' +p217338 +sg25270 +S'Wenceslaus Hollar' +p217339 +sg25273 +S'etching' +p217340 +sg25275 +S'1641' +p217341 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000db/a000db27.jpg' +p217342 +sg25267 +g27 +sa(dp217343 +g25273 +S'drypoint' +p217344 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217345 +sg25268 +S'Town Hall Steps' +p217346 +sg25270 +S'Kenneth Holmes' +p217347 +sa(dp217348 +g25273 +S'etching and aquatint' +p217349 +sg25267 +g27 +sg25275 +S'1929' +p217350 +sg25268 +S'Just Monkeys' +p217351 +sg25270 +S'Edward Timothy Hurley' +p217352 +sa(dp217353 +g25273 +S'etching' +p217354 +sg25267 +g27 +sg25275 +S'1922/1931' +p217355 +sg25268 +S'Kentucky Woods' +p217356 +sg25270 +S'Edward Timothy Hurley' +p217357 +sa(dp217358 +g25268 +S'Madonna Enthroned with Saints [right panel]' +p217359 +sg25270 +S'Artist Information (' +p217360 +sg25273 +S'(painter)' +p217361 +sg25275 +S'\n' +p217362 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000085f.jpg' +p217363 +sg25267 +g27 +sa(dp217364 +g25268 +S'An Old Lady with a Book' +p217365 +sg25270 +S'Artist Information (' +p217366 +sg25273 +S'(painter)' +p217367 +sg25275 +S'\n' +p217368 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e7f.jpg' +p217369 +sg25267 +g27 +sa(dp217370 +g25268 +S'The Circle of the Thieves; Agnolo Brunelleschi Attacked by a Six-Footed Serpent' +p217371 +sg25270 +S'William Blake' +p217372 +sg25273 +S'engraving' +p217373 +sg25275 +S'1827' +p217374 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007700.jpg' +p217375 +sg25267 +g27 +sa(dp217376 +g25273 +S'etching' +p217377 +sg25267 +g27 +sg25275 +S'1927/1928' +p217378 +sg25268 +S'The Call' +p217379 +sg25270 +S'Edward Timothy Hurley' +p217380 +sa(dp217381 +g25268 +S'Interior of the Church of Saint Katherine with Parable of the Pharisee and the Publican' +p217382 +sg25270 +S'Daniel Hopfer' +p217383 +sg25273 +S'etching (iron) with open biting' +p217384 +sg25275 +S'c. 1530' +p217385 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b273.jpg' +p217386 +sg25267 +g27 +sa(dp217387 +g25268 +S'The Great Cannon' +p217388 +sg25270 +S'Artist Information (' +p217389 +sg25273 +S'(artist after)' +p217390 +sg25275 +S'\n' +p217391 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b1af.jpg' +p217392 +sg25267 +g27 +sa(dp217393 +g25268 +S'Emperor Charles V' +p217394 +sg25270 +S'Artist Information (' +p217395 +sg25273 +S'German, c. 1470 - 1536' +p217396 +sg25275 +S'(artist)' +p217397 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac70.jpg' +p217398 +sg25267 +g27 +sa(dp217399 +g25268 +S'Erasmus of Rotterdam' +p217400 +sg25270 +S'Hieronymus Hopfer' +p217401 +sg25273 +S'etching' +p217402 +sg25275 +S'unknown date\n' +p217403 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac6e.jpg' +p217404 +sg25267 +g27 +sa(dp217405 +g25268 +S'Baptism' +p217406 +sg25270 +S'German 15th Century' +p217407 +sg25273 +S'Schreiber Manuel, no. 3448' +p217408 +sg25275 +S'\nhand-colored woodcut' +p217409 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5ec.jpg' +p217410 +sg25267 +g27 +sa(dp217411 +g25268 +S'Antique Shop' +p217412 +sg25270 +S'Earl Horter' +p217413 +sg25273 +S'etching' +p217414 +sg25275 +S'unknown date\n' +p217415 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00105/a001057c.jpg' +p217416 +sg25267 +g27 +sa(dp217417 +g25273 +S'etching' +p217418 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217419 +sg25268 +S'Old Moffat' +p217420 +sg25270 +S'Edward Bouverie-Hoyton' +p217421 +sa(dp217422 +g25268 +S'Adriaen van Ostade' +p217423 +sg25270 +S'Jacobus Houbraken' +p217424 +sg25273 +S'etching and engraving' +p217425 +sg25275 +S'unknown date\n' +p217426 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d63a.jpg' +p217427 +sg25267 +g27 +sa(dp217428 +g25273 +S'lithograph' +p217429 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217430 +sg25268 +S'Charleston Christmas' +p217431 +sg25270 +S'Cynthia Willard Iliff' +p217432 +sa(dp217433 +g25268 +S'The Circle of the Thieves; Buoso Donati Attacked by the Serpent' +p217434 +sg25270 +S'William Blake' +p217435 +sg25273 +S'engraving' +p217436 +sg25275 +S'1827' +p217437 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076fe.jpg' +p217438 +sg25267 +g27 +sa(dp217439 +g25268 +S'Sylvester (Douglas) Lord Glenbervie; Katherine Anne (North) Glenbervie; Frederic (North) Earl of Guilford; Frederic Sylvester Douglas' +p217440 +sg25270 +S'Jean-Auguste-Dominique Ingres' +p217441 +sg25273 +S'lithograph, four portraits printed on one sheet' +p217442 +sg25275 +S'1815' +p217443 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004fbd.jpg' +p217444 +sg25267 +g27 +sa(dp217445 +g25268 +S'Four Magistrates of Besan\xc3\xa7on (Quatre magistrats de Besan\xc3\xa7on)' +p217446 +sg25270 +S'Jean-Auguste-Dominique Ingres' +p217447 +sg25273 +S'lithograph' +p217448 +sg25275 +S'1825' +p217449 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004fbe.jpg' +p217450 +sg25267 +g27 +sa(dp217451 +g25268 +S'Courthouse Portal, Rothenburgh' +p217452 +sg25270 +S'Adeline S. Illingworth' +p217453 +sg25273 +S'etching' +p217454 +sg25275 +S'unknown date\n' +p217455 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d6c.jpg' +p217456 +sg25267 +g27 +sa(dp217457 +g25268 +S"Abside de l'\xc3\xa9glise de Saint-Nectaire" +p217458 +sg25270 +S'Eug\xc3\xa8ne Isabey' +p217459 +sg25273 +S'lithograph' +p217460 +sg25275 +S'1831' +p217461 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009adb.jpg' +p217462 +sg25267 +g27 +sa(dp217463 +g25268 +S'Souvenir de St. Val\xc3\xa9ry sur Somme' +p217464 +sg25270 +S'Eug\xc3\xa8ne Isabey' +p217465 +sg25273 +S'lithograph' +p217466 +sg25275 +S'1833' +p217467 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009ae2.jpg' +p217468 +sg25267 +g27 +sa(dp217469 +g25268 +S'Ornament with Foliage and Birds' +p217470 +sg25270 +S'Artist Information (' +p217471 +sg25273 +S'(artist after)' +p217472 +sg25275 +S'\n' +p217473 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d274.jpg' +p217474 +sg25267 +g27 +sa(dp217475 +g25268 +S'Handle for Knife or Fork, Ornamented with Figures' +p217476 +sg25270 +S'Hans Janssen' +p217477 +sg25273 +S'engraving' +p217478 +sg25275 +S'unknown date\n' +p217479 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d252.jpg' +p217480 +sg25267 +g27 +sa(dp217481 +g25268 +S'Handle for Knife or Fork, Ornamented with Figures' +p217482 +sg25270 +S'Hans Janssen' +p217483 +sg25273 +S'engraving' +p217484 +sg25275 +S'unknown date\n' +p217485 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d251.jpg' +p217486 +sg25267 +g27 +sa(dp217487 +g25268 +S'William Hayley' +p217488 +sg25270 +S'Artist Information (' +p217489 +sg25273 +S'(artist after)' +p217490 +sg25275 +S'\n' +p217491 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d79a.jpg' +p217492 +sg25267 +g27 +sa(dp217493 +g25273 +S'etching and drypoint' +p217494 +sg25267 +g27 +sg25275 +S'published 1919' +p217495 +sg25268 +S'Portrait of the Artist' +p217496 +sg25270 +S'Augustus John' +p217497 +sa(dp217498 +g25268 +S'The Circle of the Falsifiers: Dante and Virgil Covering their Noses because of the st' +p217499 +sg25270 +S'William Blake' +p217500 +sg25273 +S'engraving' +p217501 +sg25275 +S'1827' +p217502 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076fd.jpg' +p217503 +sg25267 +g27 +sa(dp217504 +g25273 +S'etching and drypoint' +p217505 +sg25267 +g27 +sg25275 +S'published 1919' +p217506 +sg25268 +S'Portrait of the Artist' +p217507 +sg25270 +S'Augustus John' +p217508 +sa(dp217509 +g25273 +S'etching and drypoint' +p217510 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217511 +sg25268 +S'Portrait of the Artist' +p217512 +sg25270 +S'Augustus John' +p217513 +sa(dp217514 +g25273 +S'etching' +p217515 +sg25267 +g27 +sg25275 +S'published 1919' +p217516 +sg25268 +S'Mr. Beard' +p217517 +sg25270 +S'Augustus John' +p217518 +sa(dp217519 +g25273 +S'etching' +p217520 +sg25267 +g27 +sg25275 +S'c. 1906' +p217521 +sg25268 +S'Jacob Epstein, No. 2' +p217522 +sg25270 +S'Augustus John' +p217523 +sa(dp217524 +g25273 +S'etching' +p217525 +sg25267 +g27 +sg25275 +S'1906' +p217526 +sg25268 +S'Bust of Stephen Granger' +p217527 +sg25270 +S'Augustus John' +p217528 +sa(dp217529 +g25273 +S'etching' +p217530 +sg25267 +g27 +sg25275 +S'published 1906' +p217531 +sg25268 +S'Head of Stephen Granger' +p217532 +sg25270 +S'Augustus John' +p217533 +sa(dp217534 +g25273 +S'etching' +p217535 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217536 +sg25268 +S'Percy Wyndam Lewis: small plate' +p217537 +sg25270 +S'Augustus John' +p217538 +sa(dp217539 +g25273 +S'etching' +p217540 +sg25267 +g27 +sg25275 +S'c. 1903' +p217541 +sg25268 +S'Percy Wyndam Lewis: large plate' +p217542 +sg25270 +S'Augustus John' +p217543 +sa(dp217544 +g25273 +S'etching' +p217545 +sg25267 +g27 +sg25275 +S'c. 1910' +p217546 +sg25268 +S'Charles Felix Slade' +p217547 +sg25270 +S'Augustus John' +p217548 +sa(dp217549 +g25273 +S'etching' +p217550 +sg25267 +g27 +sg25275 +S'published 1906' +p217551 +sg25268 +S'Benjamin Waugh' +p217552 +sg25270 +S'Augustus John' +p217553 +sa(dp217554 +g25268 +S"The Circle of the Traitors; Dante's Foot Striking Bocca degli Abbate" +p217555 +sg25270 +S'William Blake' +p217556 +sg25273 +S'engraving' +p217557 +sg25275 +S'1827' +p217558 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076fb.jpg' +p217559 +sg25267 +g27 +sa(dp217560 +g25273 +S'etching' +p217561 +sg25267 +g27 +sg25275 +S'published 1919' +p217562 +sg25268 +S'William Butler Yeats: fourth plate' +p217563 +sg25270 +S'Augustus John' +p217564 +sa(dp217565 +g25273 +S'etching and drypoint' +p217566 +sg25267 +g27 +sg25275 +S'1907' +p217567 +sg25268 +S'William Butler Yeats: fifth plate' +p217568 +sg25270 +S'Augustus John' +p217569 +sa(dp217570 +g25273 +S'etching' +p217571 +sg25267 +g27 +sg25275 +S'c. 1902' +p217572 +sg25268 +S'The Mulatto' +p217573 +sg25270 +S'Augustus John' +p217574 +sa(dp217575 +g25273 +S'etching' +p217576 +sg25267 +g27 +sg25275 +S'1903' +p217577 +sg25268 +S'Head of Old Underwood' +p217578 +sg25270 +S'Augustus John' +p217579 +sa(dp217580 +g25273 +S'etching' +p217581 +sg25267 +g27 +sg25275 +S'1901' +p217582 +sg25268 +S'Young Woman Musing' +p217583 +sg25270 +S'Augustus John' +p217584 +sa(dp217585 +g25273 +S'etching' +p217586 +sg25267 +g27 +sg25275 +S'published 1991' +p217587 +sg25268 +S'The Serving Maid' +p217588 +sg25270 +S'Augustus John' +p217589 +sa(dp217590 +g25273 +S'etching and drypoint' +p217591 +sg25267 +g27 +sg25275 +S'1903' +p217592 +sg25268 +S'Esther' +p217593 +sg25270 +S'Augustus John' +p217594 +sa(dp217595 +g25273 +S'etching and drypoint' +p217596 +sg25267 +g27 +sg25275 +S'published 1906' +p217597 +sg25268 +S'Quincy, no.1' +p217598 +sg25270 +S'Augustus John' +p217599 +sa(dp217600 +g25273 +S'etching and drypoint' +p217601 +sg25267 +g27 +sg25275 +S'1906' +p217602 +sg25268 +S'Anne with a Lace Shawl' +p217603 +sg25270 +S'Augustus John' +p217604 +sa(dp217605 +g25273 +S'etching' +p217606 +sg25267 +g27 +sg25275 +S'published 1906' +p217607 +sg25268 +S'Profile of Bella' +p217608 +sg25270 +S'Augustus John' +p217609 +sa(dp217610 +g25268 +S'Title Page' +p217611 +sg25270 +S'William Blake' +p217612 +sg25273 +S'engraving on India paper' +p217613 +sg25275 +S'1825' +p217614 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076e4.jpg' +p217615 +sg25267 +g27 +sa(dp217616 +g25273 +S'etching and drypoint' +p217617 +sg25267 +g27 +sg25275 +S'published 1906' +p217618 +sg25268 +S'Girl with a Curl' +p217619 +sg25270 +S'Augustus John' +p217620 +sa(dp217621 +g25273 +S'etching and drypoint' +p217622 +sg25267 +g27 +sg25275 +S'published 1919' +p217623 +sg25268 +S"A Girl's Head - E" +p217624 +sg25270 +S'Augustus John' +p217625 +sa(dp217626 +g25273 +S'etching' +p217627 +sg25267 +g27 +sg25275 +S'published 1919' +p217628 +sg25268 +S"A Girl's Head - F" +p217629 +sg25270 +S'Augustus John' +p217630 +sa(dp217631 +g25273 +S'etching' +p217632 +sg25267 +g27 +sg25275 +S'published 1919' +p217633 +sg25268 +S"A Girl's Head - G" +p217634 +sg25270 +S'Augustus John' +p217635 +sa(dp217636 +g25273 +S'etching and drypoint' +p217637 +sg25267 +g27 +sg25275 +S'c. 1904' +p217638 +sg25268 +S'Maggie, A Village Child' +p217639 +sg25270 +S'Augustus John' +p217640 +sa(dp217641 +g25273 +S'(artist after)' +p217642 +sg25267 +g27 +sg25275 +S'\n' +p217643 +sg25268 +S'A Rabbi Studying' +p217644 +sg25270 +S'Artist Information (' +p217645 +sa(dp217646 +g25273 +S'etching and drypoint' +p217647 +sg25267 +g27 +sg25275 +S'c. 1906' +p217648 +sg25268 +S'The Charwoman' +p217649 +sg25270 +S'Augustus John' +p217650 +sa(dp217651 +g25273 +S'etching and drypoint' +p217652 +sg25267 +g27 +sg25275 +S'1906' +p217653 +sg25268 +S'Woman Gathering Sticks' +p217654 +sg25270 +S'Augustus John' +p217655 +sa(dp217656 +g25273 +S'etching' +p217657 +sg25267 +g27 +sg25275 +S'published 1906' +p217658 +sg25268 +S'The Little Shepherdess' +p217659 +sg25270 +S'Augustus John' +p217660 +sa(dp217661 +g25273 +S'etching' +p217662 +sg25267 +g27 +sg25275 +S'published 1906' +p217663 +sg25268 +S'Philosopher and Courtesan' +p217664 +sg25270 +S'Augustus John' +p217665 +sa(dp217666 +g25268 +S'Job and His Family' +p217667 +sg25270 +S'William Blake' +p217668 +sg25273 +S'engraving on India paper' +p217669 +sg25275 +S'1825' +p217670 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076e3.jpg' +p217671 +sg25267 +g27 +sa(dp217672 +g25273 +S'etching' +p217673 +sg25267 +g27 +sg25275 +S'published 1906' +p217674 +sg25268 +S'Fruit Sellers - B' +p217675 +sg25270 +S'Augustus John' +p217676 +sa(dp217677 +g25273 +S'etching and drypoint' +p217678 +sg25267 +g27 +sg25275 +S'published 1906' +p217679 +sg25268 +S'Fruit Sellers - C' +p217680 +sg25270 +S'Augustus John' +p217681 +sa(dp217682 +g25273 +S'etching' +p217683 +sg25267 +g27 +sg25275 +S'1906' +p217684 +sg25268 +S'Fruit Sellers - E' +p217685 +sg25270 +S'Augustus John' +p217686 +sa(dp217687 +g25273 +S'etching' +p217688 +sg25267 +g27 +sg25275 +S'published 1906' +p217689 +sg25268 +S'Pyramus and Thisbe' +p217690 +sg25270 +S'Augustus John' +p217691 +sa(dp217692 +g25273 +S'etching' +p217693 +sg25267 +g27 +sg25275 +S'c. 1919' +p217694 +sg25268 +S'Nude Girl Standing, Looking Up' +p217695 +sg25270 +S'Augustus John' +p217696 +sa(dp217697 +g25273 +S'etching' +p217698 +sg25267 +g27 +sg25275 +S'published 1919' +p217699 +sg25268 +S'Nude Girl Seated, with One Knee Raised' +p217700 +sg25270 +S'Augustus John' +p217701 +sa(dp217702 +g25273 +S'etching' +p217703 +sg25267 +g27 +sg25275 +S'published 1906' +p217704 +sg25268 +S'The Woman in the Arbour' +p217705 +sg25270 +S'Augustus John' +p217706 +sa(dp217707 +g25273 +S'etching and drypoint' +p217708 +sg25267 +g27 +sg25275 +S'published 1906' +p217709 +sg25268 +S'Nude Seated: Interior' +p217710 +sg25270 +S'Augustus John' +p217711 +sa(dp217712 +g25273 +S'etching' +p217713 +sg25267 +g27 +sg25275 +S'published 1906' +p217714 +sg25268 +S'Summer Night' +p217715 +sg25270 +S'Augustus John' +p217716 +sa(dp217717 +g25273 +S'etching' +p217718 +sg25267 +g27 +sg25275 +S'published 1906' +p217719 +sg25268 +S'The Everglades' +p217720 +sg25270 +S'Augustus John' +p217721 +sa(dp217722 +g25268 +S'Satan Before the Throne of God' +p217723 +sg25270 +S'William Blake' +p217724 +sg25273 +S'engraving on India paper' +p217725 +sg25275 +S'1825' +p217726 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076e5.jpg' +p217727 +sg25267 +g27 +sa(dp217728 +g25273 +S'etching' +p217729 +sg25267 +g27 +sg25275 +S'published 1906' +p217730 +sg25268 +S'Various Studies' +p217731 +sg25270 +S'Augustus John' +p217732 +sa(dp217733 +g25273 +S'etching' +p217734 +sg25267 +g27 +sg25275 +S'1919' +p217735 +sg25268 +S"A Girl's Head - K" +p217736 +sg25270 +S'Augustus John' +p217737 +sa(dp217738 +g25273 +S'etching' +p217739 +sg25267 +g27 +sg25275 +S'1919' +p217740 +sg25268 +S"A Girl's Head - J" +p217741 +sg25270 +S'Augustus John' +p217742 +sa(dp217743 +g25273 +S'etching' +p217744 +sg25267 +g27 +sg25275 +S'1917' +p217745 +sg25268 +S'A Man Etching - Self-Portrait' +p217746 +sg25270 +S'Augustus John' +p217747 +sa(dp217748 +g25273 +S'etching' +p217749 +sg25267 +g27 +sg25275 +S'1919' +p217750 +sg25268 +S'J. Hope Johnson' +p217751 +sg25270 +S'Augustus John' +p217752 +sa(dp217753 +g25273 +S'etching' +p217754 +sg25267 +g27 +sg25275 +S'1921' +p217755 +sg25268 +S'Self-Portrait' +p217756 +sg25270 +S'Augustus John' +p217757 +sa(dp217758 +g25273 +S'lithograph' +p217759 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217760 +sg25268 +S'Nude' +p217761 +sg25270 +S'Augustus John' +p217762 +sa(dp217763 +g25273 +S'lithograph' +p217764 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217765 +sg25268 +S'Head of a Woman' +p217766 +sg25270 +S'Augustus John' +p217767 +sa(dp217768 +g25268 +S'Edmund Burke' +p217769 +sg25270 +S'Artist Information (' +p217770 +sg25273 +S'(artist after)' +p217771 +sg25275 +S'\n' +p217772 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a00077a1.jpg' +p217773 +sg25267 +g27 +sa(dp217774 +g25268 +S'Susannah Crouching' +p217775 +sg25270 +S'Jacob Jordaens' +p217776 +sg25273 +S'black and red chalk with watercolor, heightened with white' +p217777 +sg25275 +S'c. 1640/1645' +p217778 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00025/a000255f.jpg' +p217779 +sg25267 +g27 +sa(dp217780 +g25268 +S"The Destruction of Job's Sons" +p217781 +sg25270 +S'William Blake' +p217782 +sg25273 +S'engraving on India paper' +p217783 +sg25275 +S'1825' +p217784 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076e6.jpg' +p217785 +sg25267 +g27 +sa(dp217786 +g25268 +S'Miss Kemble in a White Dress' +p217787 +sg25270 +S'Artist Information (' +p217788 +sg25273 +S'(artist after)' +p217789 +sg25275 +S'\n' +p217790 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007906.jpg' +p217791 +sg25267 +g27 +sa(dp217792 +g25273 +S'color lithograph' +p217793 +sg25267 +g27 +sg25275 +S'1939' +p217794 +sg25268 +S'Roan Stallion' +p217795 +sg25270 +S'Max Kahn' +p217796 +sa(dp217797 +g25273 +S'color lithograph' +p217798 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217799 +sg25268 +S'Esperanza' +p217800 +sg25270 +S'Max Kahn' +p217801 +sa(dp217802 +g25273 +S'drypoint' +p217803 +sg25267 +g27 +sg25275 +S'1927' +p217804 +sg25268 +S'Sail and Steam' +p217805 +sg25270 +S'Philip Kappel' +p217806 +sa(dp217807 +g25273 +S'etching' +p217808 +sg25267 +g27 +sg25275 +S'1925' +p217809 +sg25268 +S'Rockport Quarry I' +p217810 +sg25270 +S'Philip Kappel' +p217811 +sa(dp217812 +g25273 +S'chiaroscuro wood engraving (two blocks) in black, white, and olive green' +p217813 +sg25267 +g27 +sg25275 +S'1924' +p217814 +sg25268 +S'Voyaging' +p217815 +sg25270 +S'Rockwell Kent' +p217816 +sa(dp217817 +g25268 +S'Foreboding' +p217818 +sg25270 +S'Rockwell Kent' +p217819 +sg25273 +S'transfer lithograph on zinc' +p217820 +sg25275 +S'1926' +p217821 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000af0.jpg' +p217822 +sg25267 +g27 +sa(dp217823 +g25268 +S'Almost' +p217824 +sg25270 +S'Rockwell Kent' +p217825 +sg25273 +S'wood engraving on maple' +p217826 +sg25275 +S'1929' +p217827 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000af1.jpg' +p217828 +sg25267 +g27 +sa(dp217829 +g25273 +S'wood engraving on maple' +p217830 +sg25267 +g27 +sg25275 +S'1927' +p217831 +sg25268 +S'The End' +p217832 +sg25270 +S'Rockwell Kent' +p217833 +sa(dp217834 +g25273 +S'lithograph' +p217835 +sg25267 +g27 +sg25275 +S'1936' +p217836 +sg25268 +S'And Now Where?' +p217837 +sg25270 +S'Rockwell Kent' +p217838 +sa(dp217839 +g25268 +S'The Messengers Tell Job of His Misfortunes' +p217840 +sg25270 +S'William Blake' +p217841 +sg25273 +S'engraving on India paper' +p217842 +sg25275 +S'1825' +p217843 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076e7.jpg' +p217844 +sg25267 +g27 +sa(dp217845 +g25273 +S'drypoint' +p217846 +sg25267 +g27 +sg25275 +S'1936' +p217847 +sg25268 +S'Kanani, Hawaii' +p217848 +sg25270 +S'John Melville Kelly' +p217849 +sa(dp217850 +g25273 +S'etching, (drypoint?), and aquatint in brown [progressive proof, 4th printing]' +p217851 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217852 +sg25268 +S'Polynesia' +p217853 +sg25270 +S'John Melville Kelly' +p217854 +sa(dp217855 +g25273 +S'color etching and aquatint' +p217856 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217857 +sg25268 +S'Polynesia' +p217858 +sg25270 +S'John Melville Kelly' +p217859 +sa(dp217860 +g25273 +S'color etching and aquatint' +p217861 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217862 +sg25268 +S'Hawaii' +p217863 +sg25270 +S'John Melville Kelly' +p217864 +sa(dp217865 +g25273 +S'aquatint in brown [progressive proof, 2nd printing]' +p217866 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217867 +sg25268 +S'Polynesia' +p217868 +sg25270 +S'John Melville Kelly' +p217869 +sa(dp217870 +g25273 +S'aquatint in brown [progressive proof, 3rd printing]' +p217871 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217872 +sg25268 +S'Polynesia' +p217873 +sg25270 +S'John Melville Kelly' +p217874 +sa(dp217875 +g25273 +S'aquatint in green [progressive proof, 1st printing]' +p217876 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217877 +sg25268 +S'Polynesia' +p217878 +sg25270 +S'John Melville Kelly' +p217879 +sa(dp217880 +g25273 +S'etching and aquatint [1st trial proof]' +p217881 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217882 +sg25268 +S'Mr. Hayward' +p217883 +sg25270 +S'John Melville Kelly' +p217884 +sa(dp217885 +g25273 +S'aquatint and engraving' +p217886 +sg25267 +g27 +sg25275 +S'1935' +p217887 +sg25268 +S'Bread Fruit, Hawaii' +p217888 +sg25270 +S'John Melville Kelly' +p217889 +sa(dp217890 +g25273 +S'etching and aquatint' +p217891 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217892 +sg25268 +S'Japanese Girl' +p217893 +sg25270 +S'John Melville Kelly' +p217894 +sa(dp217895 +g25268 +S'Satan Going Forth from the Presence of the Lord' +p217896 +sg25270 +S'William Blake' +p217897 +sg25273 +S'engraving on India paper' +p217898 +sg25275 +S'1825' +p217899 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076e8.jpg' +p217900 +sg25267 +g27 +sa(dp217901 +g25273 +S'etching and aquatint' +p217902 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217903 +sg25268 +S'California Redwoods' +p217904 +sg25270 +S'John Melville Kelly' +p217905 +sa(dp217906 +g25273 +S'etching' +p217907 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217908 +sg25268 +S'Lani - Hawaii' +p217909 +sg25270 +S'John Melville Kelly' +p217910 +sa(dp217911 +g25273 +S'etching' +p217912 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217913 +sg25268 +S'Study of Nude - Hawaii' +p217914 +sg25270 +S'John Melville Kelly' +p217915 +sa(dp217916 +g25273 +S'etching and aquatint' +p217917 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217918 +sg25268 +S'Kamani' +p217919 +sg25270 +S'John Melville Kelly' +p217920 +sa(dp217921 +g25273 +S'etching and aquatint' +p217922 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217923 +sg25268 +S'Kaonohi' +p217924 +sg25270 +S'John Melville Kelly' +p217925 +sa(dp217926 +g25273 +S'etching' +p217927 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217928 +sg25268 +S'Sampan Fisherman' +p217929 +sg25270 +S'John Melville Kelly' +p217930 +sa(dp217931 +g25273 +S'aquatint and etching' +p217932 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217933 +sg25268 +S'Marjorie T' +p217934 +sg25270 +S'John Melville Kelly' +p217935 +sa(dp217936 +g25273 +S'etching and drypointt' +p217937 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217938 +sg25268 +S'Mokihana - Hawaii' +p217939 +sg25270 +S'John Melville Kelly' +p217940 +sa(dp217941 +g25273 +S'etching and drypoint' +p217942 +sg25267 +g27 +sg25275 +S'unknown date\n' +p217943 +sg25268 +S'Mokihana - Hawaii' +p217944 +sg25270 +S'John Melville Kelly' +p217945 +sa(dp217946 +g25268 +S'Zephyr' +p217947 +sg25270 +S'Troy Kinney' +p217948 +sg25273 +S'etching (drypoint?)' +p217949 +sg25275 +S'unknown date\n' +p217950 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00106/a00106d6.jpg' +p217951 +sg25267 +g27 +sa(dp217952 +g25268 +S'A Girl with a Broom' +p217953 +sg25270 +S'Artist Information (' +p217954 +sg25273 +S'Dutch, 1606 - 1669' +p217955 +sg25275 +S'(related artist)' +p217956 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e80.jpg' +p217957 +sg25267 +g27 +sa(dp217958 +g25268 +S'Satan Smiting Job with Boils' +p217959 +sg25270 +S'William Blake' +p217960 +sg25273 +S'engraving on India paper' +p217961 +sg25275 +S'1825' +p217962 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076e9.jpg' +p217963 +sg25267 +g27 +sa(dp217964 +g25268 +S'Viva Andalucia' +p217965 +sg25270 +S'Troy Kinney' +p217966 +sg25273 +S'drypoint' +p217967 +sg25275 +S'unknown date\n' +p217968 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f6/a000f646.jpg' +p217969 +sg25267 +g27 +sa(dp217970 +g25268 +S'Swallows' +p217971 +sg25270 +S'Troy Kinney' +p217972 +sg25273 +S'drypoint' +p217973 +sg25275 +S'1919' +p217974 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00106/a00106d7.jpg' +p217975 +sg25267 +g27 +sa(dp217976 +g25273 +S'woodcut' +p217977 +sg25267 +g27 +sg25275 +S'1923' +p217978 +sg25268 +S'Work at a Round Table (Arbeit am runden Tisch)' +p217979 +sg25270 +S'Ernst Ludwig Kirchner' +p217980 +sa(dp217981 +g25268 +S'Port Scene (Hafenbild)' +p217982 +sg25270 +S'Ernst Ludwig Kirchner' +p217983 +sg25273 +S'woodcut' +p217984 +sg25275 +S'1908' +p217985 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c43e.jpg' +p217986 +sg25267 +g27 +sa(dp217987 +g25268 +S'Cover of the Fourth Yearbook of the Artist Group the Brucke' +p217988 +sg25270 +S'Ernst Ludwig Kirchner' +p217989 +sg25273 +S'woodcut in red' +p217990 +sg25275 +S'1909' +p217991 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c445.jpg' +p217992 +sg25267 +g27 +sa(dp217993 +g25268 +S'Head of van de Velde, Bright (Kopf van de Velde, Hell)' +p217994 +sg25270 +S'Ernst Ludwig Kirchner' +p217995 +sg25273 +S'woodcut' +p217996 +sg25275 +S'1917' +p217997 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c44c.jpg' +p217998 +sg25267 +g27 +sa(dp217999 +g25268 +S'The Tight Rope Walker (Seilt\xc3\xa4nzer)' +p218000 +sg25270 +S'Paul Klee' +p218001 +sg25273 +S'lithograph in black and pink' +p218002 +sg25275 +S'1923' +p218003 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00022/a00022b0.jpg' +p218004 +sg25267 +g27 +sa(dp218005 +g25268 +S'Der Verliebte (The Loved One)' +p218006 +sg25270 +S'Paul Klee' +p218007 +sg25273 +S'lithograph' +p218008 +sg25275 +S'1923' +p218009 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000efff.jpg' +p218010 +sg25267 +g27 +sa(dp218011 +g25268 +S'A Genius Serves a Small Breakfast (Ein Genius serviert ein kleines Fr\xc3\xbchst\xc3\xbcck)' +p218012 +sg25270 +S'Paul Klee' +p218013 +sg25273 +S'lithograph' +p218014 +sg25275 +S'1920' +p218015 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef9e.jpg' +p218016 +sg25267 +g27 +sa(dp218017 +g25268 +S'Perseus (Der Witz hat \xc3\xbcber das Leid gesiegt) [Perseus-The Triumph of Brain over Body]' +p218018 +sg25270 +S'Paul Klee' +p218019 +sg25273 +S'etching on zinc' +p218020 +sg25275 +S'1904' +p218021 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000eff5.jpg' +p218022 +sg25267 +g27 +sa(dp218023 +g25268 +S"Job's Comforters" +p218024 +sg25270 +S'William Blake' +p218025 +sg25273 +S'engraving on India paper' +p218026 +sg25275 +S'1825' +p218027 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076ea.jpg' +p218028 +sg25267 +g27 +sa(dp218029 +g25268 +S'Small World (Kleinwelt)' +p218030 +sg25270 +S'Paul Klee' +p218031 +sg25273 +S'etching on zinc' +p218032 +sg25275 +S'1914' +p218033 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f000.jpg' +p218034 +sg25267 +g27 +sa(dp218035 +g25268 +S'Garden of Passion (Garten der Leidenschaft)' +p218036 +sg25270 +S'Paul Klee' +p218037 +sg25273 +S'etching in black on ivory wove paper' +p218038 +sg25275 +S'1913' +p218039 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000eff4.jpg' +p218040 +sg25267 +g27 +sa(dp218041 +g25268 +S'Blick auf einen Fluss (View on a River)' +p218042 +sg25270 +S'Paul Klee' +p218043 +sg25273 +S'lithograph' +p218044 +sg25275 +S'1912' +p218045 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ef/a000eff8.jpg' +p218046 +sg25267 +g27 +sa(dp218047 +g25268 +S'Hope and Destruction (Zerst\xc3\xb6rung und Hoffnung)' +p218048 +sg25270 +S'Paul Klee' +p218049 +sg25273 +S'lithograph with watercolor' +p218050 +sg25275 +S'1916' +p218051 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f072.jpg' +p218052 +sg25267 +g27 +sa(dp218053 +g25273 +S'aquatint' +p218054 +sg25267 +g27 +sg25275 +S'1926' +p218055 +sg25268 +S'Lady with Shawl' +p218056 +sg25270 +S'Dame Laura Johnson Knight' +p218057 +sa(dp218058 +g25273 +S'aquatint and etching' +p218059 +sg25267 +g27 +sg25275 +S'1925' +p218060 +sg25268 +S'Powder and Paint' +p218061 +sg25270 +S'Dame Laura Johnson Knight' +p218062 +sa(dp218063 +g25273 +S'aquatint and etching' +p218064 +sg25267 +g27 +sg25275 +S'1925' +p218065 +sg25268 +S'Circus Dressing Room' +p218066 +sg25270 +S'Dame Laura Johnson Knight' +p218067 +sa(dp218068 +g25273 +S'etching' +p218069 +sg25267 +g27 +sg25275 +S'1928' +p218070 +sg25268 +S'A Cornish Maid' +p218071 +sg25270 +S'Dame Laura Johnson Knight' +p218072 +sa(dp218073 +g25273 +S'etching' +p218074 +sg25267 +g27 +sg25275 +S'1923' +p218075 +sg25268 +S'Madonna' +p218076 +sg25270 +S'Dame Laura Johnson Knight' +p218077 +sa(dp218078 +g25273 +S'drypoint' +p218079 +sg25267 +g27 +sg25275 +S'1928' +p218080 +sg25268 +S'Girl Bathing' +p218081 +sg25270 +S'Dame Laura Johnson Knight' +p218082 +sa(dp218083 +g25268 +S"Job's Despair" +p218084 +sg25270 +S'William Blake' +p218085 +sg25273 +S'engraving on India paper' +p218086 +sg25275 +S'1825' +p218087 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076ec.jpg' +p218088 +sg25267 +g27 +sa(dp218089 +g25273 +S'drypoint' +p218090 +sg25267 +g27 +sg25275 +S'1930' +p218091 +sg25268 +S'Lilian' +p218092 +sg25270 +S'Dame Laura Johnson Knight' +p218093 +sa(dp218094 +g25273 +S'mezzotint' +p218095 +sg25267 +g27 +sg25275 +S'1928' +p218096 +sg25268 +S'Southern Blonde' +p218097 +sg25270 +S'Dame Laura Johnson Knight' +p218098 +sa(dp218099 +g25273 +S'etching' +p218100 +sg25267 +g27 +sg25275 +S'1926' +p218101 +sg25268 +S'Putting on Tights' +p218102 +sg25270 +S'Dame Laura Johnson Knight' +p218103 +sa(dp218104 +g25273 +S'drypoint' +p218105 +sg25267 +g27 +sg25275 +S'1928' +p218106 +sg25268 +S'Susie' +p218107 +sg25270 +S'Dame Laura Johnson Knight' +p218108 +sa(dp218109 +g25273 +S'drypoint' +p218110 +sg25267 +g27 +sg25275 +S'1929/1930' +p218111 +sg25268 +S'Zebras' +p218112 +sg25270 +S'Dame Laura Johnson Knight' +p218113 +sa(dp218114 +g25273 +S'etching and engraving' +p218115 +sg25267 +g27 +sg25275 +S'1925' +p218116 +sg25268 +S'The Lipstick' +p218117 +sg25270 +S'Dame Laura Johnson Knight' +p218118 +sa(dp218119 +g25273 +S'drypoint' +p218120 +sg25267 +g27 +sg25275 +S'1930' +p218121 +sg25268 +S'Some Clowns' +p218122 +sg25270 +S'Dame Laura Johnson Knight' +p218123 +sa(dp218124 +g25273 +S'drypoint' +p218125 +sg25267 +g27 +sg25275 +S'1926' +p218126 +sg25268 +S'Daughter of Israel' +p218127 +sg25270 +S'Dame Laura Johnson Knight' +p218128 +sa(dp218129 +g25273 +S'drypoint' +p218130 +sg25267 +g27 +sg25275 +S'1928' +p218131 +sg25268 +S'Juanita' +p218132 +sg25270 +S'Dame Laura Johnson Knight' +p218133 +sa(dp218134 +g25273 +S'lithograph' +p218135 +sg25267 +g27 +sg25275 +S'1918' +p218136 +sg25268 +S'Corona I' +p218137 +sg25270 +S'Oskar Kokoschka' +p218138 +sa(dp218139 +g25268 +S'The Vision of Eliphaz' +p218140 +sg25270 +S'William Blake' +p218141 +sg25273 +S'engraving on India paper' +p218142 +sg25275 +S'1825' +p218143 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076ed.jpg' +p218144 +sg25267 +g27 +sa(dp218145 +g25273 +S'lithograph' +p218146 +sg25267 +g27 +sg25275 +S'1918' +p218147 +sg25268 +S'Corona I' +p218148 +sg25270 +S'Oskar Kokoschka' +p218149 +sa(dp218150 +g25268 +S'Shield with Mascaron' +p218151 +sg25270 +S'Ludwig Krug' +p218152 +sg25273 +S'engraving' +p218153 +sg25275 +S'unknown date\n' +p218154 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000aca3.jpg' +p218155 +sg25267 +g27 +sa(dp218156 +g25268 +S'The Adoration of the Magi' +p218157 +sg25270 +S'Ludwig Krug' +p218158 +sg25273 +S'engraving' +p218159 +sg25275 +S'unknown date\n' +p218160 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac9b.jpg' +p218161 +sg25267 +g27 +sa(dp218162 +g25268 +S'Saint John' +p218163 +sg25270 +S'Ludwig Krug' +p218164 +sg25273 +S'engraving' +p218165 +sg25275 +S'unknown date\n' +p218166 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac9c.jpg' +p218167 +sg25267 +g27 +sa(dp218168 +g25273 +S'lithograph crayon and charcoal on two sheets of joined transfer paper' +p218169 +sg25267 +g27 +sg25275 +S'1924' +p218170 +sg25268 +S'Never Again War (Nie Wieder Krieg)' +p218171 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218172 +sa(dp218173 +g25273 +S'black chalk with splatters of gray wash on light brown laid paper' +p218174 +sg25267 +g27 +sg25275 +S'c. 1927' +p218175 +sg25268 +S'Sleeping Child' +p218176 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218177 +sa(dp218178 +g25273 +S'charcoal on gray paper' +p218179 +sg25267 +g27 +sg25275 +S'1921' +p218180 +sg25268 +S'Head and Hands of a Working Man' +p218181 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218182 +sa(dp218183 +g25273 +S'charcoal on laid paper' +p218184 +sg25267 +g27 +sg25275 +S'1910' +p218185 +sg25268 +S'Woman and Death' +p218186 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218187 +sa(dp218188 +g25273 +S'charcoal on brown laid Ingres paper' +p218189 +sg25267 +g27 +sg25275 +S'1933' +p218190 +sg25268 +S'Self-Portrait, Drawing' +p218191 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218192 +sa(dp218193 +g25268 +S'Job Rebuked by His Friends' +p218194 +sg25270 +S'William Blake' +p218195 +sg25273 +S'engraving' +p218196 +sg25275 +S'1825' +p218197 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076ee.jpg' +p218198 +sg25267 +g27 +sa(dp218199 +g25273 +S'charcoal and white wash over graphite on dark brown wove paper' +p218200 +sg25267 +g27 +sg25275 +S'1909' +p218201 +sg25268 +S'Out of Work' +p218202 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218203 +sa(dp218204 +g25273 +S'charcoal' +p218205 +sg25267 +g27 +sg25275 +S'1924' +p218206 +sg25268 +S'Beggars' +p218207 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218208 +sa(dp218209 +g25273 +S'black lithographic crayon' +p218210 +sg25267 +g27 +sg25275 +S'1925' +p218211 +sg25268 +S"Child's Head" +p218212 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218213 +sa(dp218214 +g25273 +S'charcoal on gray-blue laid paper' +p218215 +sg25267 +g27 +sg25275 +S'1918' +p218216 +sg25268 +S'Weinende Frau' +p218217 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218218 +sa(dp218219 +g25273 +S'black crayon on laid paper' +p218220 +sg25267 +g27 +sg25275 +S'1918/1919' +p218221 +sg25268 +S'The Mothers' +p218222 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218223 +sa(dp218224 +g25273 +S'black crayon on laid paper' +p218225 +sg25267 +g27 +sg25275 +S'1933' +p218226 +sg25268 +S'Wilhelmine Mohr' +p218227 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218228 +sa(dp218229 +g25273 +S'graphite on laid paper' +p218230 +sg25267 +g27 +sg25275 +S'1905' +p218231 +sg25268 +S'Study of a Standing Woman' +p218232 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218233 +sa(dp218234 +g25273 +S'lithograph' +p218235 +sg25267 +g27 +sg25275 +S'1923' +p218236 +sg25268 +S'The Survivors (Die Uberlebenden)' +p218237 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218238 +sa(dp218239 +g25273 +S'etching and aquatint' +p218240 +sg25267 +g27 +sg25275 +S'1900' +p218241 +sg25268 +S'The Downtrodden (Zertretene)' +p218242 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218243 +sa(dp218244 +g25273 +S'woodcut' +p218245 +sg25267 +g27 +sg25275 +S'1925' +p218246 +sg25268 +S'Unemployment (Erwerbslos)' +p218247 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218248 +sa(dp218249 +g25268 +S"Job's Evil Dreams" +p218250 +sg25270 +S'William Blake' +p218251 +sg25273 +S'engraving on India paper' +p218252 +sg25275 +S'1825' +p218253 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076ef.jpg' +p218254 +sg25267 +g27 +sa(dp218255 +g25273 +S'lithograph' +p218256 +sg25267 +g27 +sg25275 +S'1924' +p218257 +sg25268 +S'Bettelnde (Begging)' +p218258 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218259 +sa(dp218260 +g25273 +S'woodcut, touched with white gouache, on japan paper [trial proof]' +p218261 +sg25267 +g27 +sg25275 +S'1922/1923' +p218262 +sg25268 +S'The People (Das Volk)' +p218263 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218264 +sa(dp218265 +g25273 +S'woodcut' +p218266 +sg25267 +g27 +sg25275 +S'1922/1923' +p218267 +sg25268 +S'The Widow II (Die Witwe II)' +p218268 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218269 +sa(dp218270 +g25273 +S'woodcut' +p218271 +sg25267 +g27 +sg25275 +S'1922/1923' +p218272 +sg25268 +S'The Widow II (Die Witwe II)' +p218273 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218274 +sa(dp218275 +g25273 +S'lithograph' +p218276 +sg25267 +g27 +sg25275 +S'1921' +p218277 +sg25268 +S'"Help Russia" ("Helft Russland")' +p218278 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218279 +sa(dp218280 +g25273 +S'lithograph' +p218281 +sg25267 +g27 +sg25275 +S'1913' +p218282 +sg25268 +S'Cemetery for the Victims of the 1848 Revolution (Marzfriedhof II)' +p218283 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218284 +sa(dp218285 +g25273 +S'etching in green and black' +p218286 +sg25267 +g27 +sg25275 +S'1921' +p218287 +sg25268 +S'The Battle Field (Schlachtfeld)' +p218288 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218289 +sa(dp218290 +g25273 +S'lithograph' +p218291 +sg25267 +g27 +sg25275 +S'1920' +p218292 +sg25268 +S'Woman Meditating II (Nachdenkende Frau II)' +p218293 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218294 +sa(dp218295 +g25273 +S'etching and aquatint' +p218296 +sg25267 +g27 +sg25275 +S'1921' +p218297 +sg25268 +S'The Ploughmen (Die Pfluger)' +p218298 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218299 +sa(dp218300 +g25273 +S'lithograph' +p218301 +sg25267 +g27 +sg25275 +S'1919' +p218302 +sg25268 +S"The Artist's Parents (Die Eltern der Kunstlerin)" +p218303 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218304 +sa(dp218305 +g25268 +S'The Wrath of Elihu' +p218306 +sg25270 +S'William Blake' +p218307 +sg25273 +S'engraving on India paper' +p218308 +sg25275 +S'1825' +p218309 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076f0.jpg' +p218310 +sg25267 +g27 +sa(dp218311 +g25273 +S'woodcut' +p218312 +sg25267 +g27 +sg25275 +S'1924' +p218313 +sg25268 +S'Woman and Children Going to Their Death (Fraumit Kindern in den Tod Gehend)' +p218314 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218315 +sa(dp218316 +g25273 +S'etching' +p218317 +sg25267 +g27 +sg25275 +S'1909' +p218318 +sg25268 +S'Unemployment (Arbeitslosigkeit)' +p218319 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218320 +sa(dp218321 +g25273 +S'lithograph' +p218322 +sg25267 +g27 +sg25275 +S'1924' +p218323 +sg25268 +S'Self-Portrait (Selbstbildnis)' +p218324 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218325 +sa(dp218326 +g25273 +S'lithograph' +p218327 +sg25267 +g27 +sg25275 +S'1934' +p218328 +sg25268 +S'Woman Entrusting Herself to Death (Frau vertraut sich dem Tode an)' +p218329 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218330 +sa(dp218331 +g25273 +S'etching' +p218332 +sg25267 +g27 +sg25275 +S'1921' +p218333 +sg25268 +S'Armament in a Vault (Bewaffnung in einer Gewolbe)' +p218334 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218335 +sa(dp218336 +g25273 +S'woodcut' +p218337 +sg25267 +g27 +sg25275 +S'1919' +p218338 +sg25268 +S'Memorial to Karl Liebknecht (Gedenkblatt fur Karl Liebknecht)' +p218339 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218340 +sa(dp218341 +g25273 +S'lithograph' +p218342 +sg25267 +g27 +sg25275 +S'1919' +p218343 +sg25268 +S'Memorial to Karl Liebknecht (Gedenkblatt fur Karl Liebknecht)' +p218344 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218345 +sa(dp218346 +g25273 +S'lithograph' +p218347 +sg25267 +g27 +sg25275 +S'1934' +p218348 +sg25268 +S'Death by the Roadside (Tod auf der Landstrasse)' +p218349 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218350 +sa(dp218351 +g25273 +S'lithograph' +p218352 +sg25267 +g27 +sg25275 +S'1934' +p218353 +sg25268 +S'Woman Entrusting Herself to Death (Frau vertraut sich dem Tode an)' +p218354 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218355 +sa(dp218356 +g25273 +S'lithograph' +p218357 +sg25267 +g27 +sg25275 +S'1934/1935' +p218358 +sg25268 +S'Death in the Water (Tod im Wasser)' +p218359 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218360 +sa(dp218361 +g25268 +S'The Lord Answering Job out of the Whirlwind' +p218362 +sg25270 +S'William Blake' +p218363 +sg25273 +S'engraving on India paper' +p218364 +sg25275 +S'1825' +p218365 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076eb.jpg' +p218366 +sg25267 +g27 +sa(dp218367 +g25273 +S'lithograph' +p218368 +sg25267 +g27 +sg25275 +S'1934' +p218369 +sg25268 +S'Death Reaches into a Band of Children (Tod greift in Kinderschar)' +p218370 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218371 +sa(dp218372 +g25273 +S'lithograph' +p218373 +sg25267 +g27 +sg25275 +S'1934/1935' +p218374 +sg25268 +S'Death Recognized as a Friend (Tod wird als Freund erkannt)' +p218375 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218376 +sa(dp218377 +g25273 +S'lithograph' +p218378 +sg25267 +g27 +sg25275 +S'1934' +p218379 +sg25268 +S'Death Holding a Girl in His Lap (Tod halt Madchen im Schoss)' +p218380 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218381 +sa(dp218382 +g25273 +S'lithograph' +p218383 +sg25267 +g27 +sg25275 +S'1934/1935' +p218384 +sg25268 +S'The Call of Death (Ruf des Todes)' +p218385 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218386 +sa(dp218387 +g25273 +S'woodcut' +p218388 +sg25267 +g27 +sg25275 +S'1925' +p218389 +sg25268 +S'Hunger (Hungar)' +p218390 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218391 +sa(dp218392 +g25273 +S'lithograph' +p218393 +sg25267 +g27 +sg25275 +S'1925' +p218394 +sg25268 +S'Mother Pressing Infant to Her Face III (Mutter, Saugling an ihr Gesicht Druckend III)' +p218395 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218396 +sa(dp218397 +g25273 +S'etching' +p218398 +sg25267 +g27 +sg25275 +S'1910' +p218399 +sg25268 +S'Woman and Death (Tod und Frau)' +p218400 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218401 +sa(dp218402 +g25273 +S'etching and aquatint' +p218403 +sg25267 +g27 +sg25275 +S'1901' +p218404 +sg25268 +S'The Carmagnole' +p218405 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218406 +sa(dp218407 +g25273 +S'etching' +p218408 +sg25267 +g27 +sg25275 +S'1910' +p218409 +sg25268 +S'Working-Class Woman with Earring (Arbeiterfrau mit dem Ohrring)' +p218410 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218411 +sa(dp218412 +g25273 +S'lithograph' +p218413 +sg25267 +g27 +sg25275 +S'1923/1924' +p218414 +sg25268 +S'Departure and Death (Abschied und Tod)' +p218415 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218416 +sa(dp218417 +g25268 +S'The Creation' +p218418 +sg25270 +S'William Blake' +p218419 +sg25273 +S'engraving on India paper' +p218420 +sg25275 +S'1825' +p218421 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076f1.jpg' +p218422 +sg25267 +g27 +sa(dp218423 +g25273 +S'etching' +p218424 +sg25267 +g27 +sg25275 +S'1893' +p218425 +sg25268 +S'Scene from Germinal (Szene aus Germinal)' +p218426 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218427 +sa(dp218428 +g25273 +S'lithograph' +p218429 +sg25267 +g27 +sg25275 +S'1923' +p218430 +sg25268 +S'Sitting Worker (Sitzender Arbeiter)' +p218431 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218432 +sa(dp218433 +g25273 +S'etching and aquatint' +p218434 +sg25267 +g27 +sg25275 +S'probably 1893' +p218435 +sg25268 +S'Self-Portrait at the Table (Selbstbildnis am Tisch)' +p218436 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218437 +sa(dp218438 +g25273 +S'soft-ground etching' +p218439 +sg25267 +g27 +sg25275 +S'1910' +p218440 +sg25268 +S'Run-over (Uberfahren)' +p218441 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218442 +sa(dp218443 +g25273 +S'etching and aquatint' +p218444 +sg25267 +g27 +sg25275 +S'1911' +p218445 +sg25268 +S'Death and Woman Struggle for the Child (Tod und Frau um das Kind Ringend)' +p218446 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218447 +sa(dp218448 +g25273 +S'lithograph' +p218449 +sg25267 +g27 +sg25275 +S'1927' +p218450 +sg25268 +S'Working-Class Woman with Sleeping Child (Arbeiter Frau mit Schlafendem Jungen)' +p218451 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218452 +sa(dp218453 +g25273 +S'lithograph' +p218454 +sg25267 +g27 +sg25275 +S'c. 1915' +p218455 +sg25268 +S'The Widow I (Die Witwe I)' +p218456 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218457 +sa(dp218458 +g25273 +S'woodcut' +p218459 +sg25267 +g27 +sg25275 +S'1922/1923' +p218460 +sg25268 +S'The Volunteers (Die Freiwilligen)' +p218461 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218462 +sa(dp218463 +g25273 +S'etching' +p218464 +sg25267 +g27 +sg25275 +S'1910' +p218465 +sg25268 +S'Young Couple (Junges Paar)' +p218466 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218467 +sa(dp218468 +g25268 +S'Treason of Judas' +p218469 +sg25270 +S'German 15th Century' +p218470 +sg25273 +S'Schreiber Manuel, no. 3448' +p218471 +sg25275 +S'\nhand-colored woodcut' +p218472 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5ee.jpg' +p218473 +sg25267 +g27 +sa(dp218474 +g25268 +S'Behemoth and Leviathan' +p218475 +sg25270 +S'William Blake' +p218476 +sg25273 +S'engraving on India paper' +p218477 +sg25275 +S'1825' +p218478 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076f8.jpg' +p218479 +sg25267 +g27 +sa(dp218480 +g25273 +S'woodcut' +p218481 +sg25267 +g27 +sg25275 +S'1922/1923' +p218482 +sg25268 +S'The Sacrifice (Das Opfer)' +p218483 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218484 +sa(dp218485 +g25273 +S'lithograph' +p218486 +sg25267 +g27 +sg25275 +S'1926' +p218487 +sg25268 +S'Municipal Shelter (Stadisches Obdach)' +p218488 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218489 +sa(dp218490 +g25273 +S'lithograph' +p218491 +sg25267 +g27 +sg25275 +S'1919' +p218492 +sg25268 +S'Mothers II (Mutter II)' +p218493 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218494 +sa(dp218495 +g25273 +S'woodcut in black on japan paper' +p218496 +sg25267 +g27 +sg25275 +S'1923' +p218497 +sg25268 +S'The Parents II (Die Eltern II)' +p218498 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218499 +sa(dp218500 +g25273 +S'woodcut' +p218501 +sg25267 +g27 +sg25275 +S'1922/1923' +p218502 +sg25268 +S'The Volunteers (Die Freiwilligen)' +p218503 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218504 +sa(dp218505 +g25273 +S'lithograph in brown and black on gray-green paper' +p218506 +sg25267 +g27 +sg25275 +S'1903' +p218507 +sg25268 +S'Piet\xc3\xa0' +p218508 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218509 +sa(dp218510 +g25273 +S'soft-ground etching' +p218511 +sg25267 +g27 +sg25275 +S'1905' +p218512 +sg25268 +S'Woman with Bowed Head (Gesenkter Frauenkopf)' +p218513 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218514 +sa(dp218515 +g25273 +S'lithograph' +p218516 +sg25267 +g27 +sg25275 +S'1924' +p218517 +sg25268 +S'Bread (Brot)' +p218518 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218519 +sa(dp218520 +g25273 +S'lithograph' +p218521 +sg25267 +g27 +sg25275 +S'1915' +p218522 +sg25268 +S'Self-Portrait (Selbstbildnis)' +p218523 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218524 +sa(dp218525 +g25273 +S'lithograph' +p218526 +sg25267 +g27 +sg25275 +S'1924' +p218527 +sg25268 +S"Germany's Children are Hungry! (Deutschlands Kinder Hungern!)" +p218528 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218529 +sa(dp218530 +g25268 +S'A Woman Holding a Pink' +p218531 +sg25270 +S'Artist Information (' +p218532 +sg25273 +S'Dutch, 1606 - 1669' +p218533 +sg25275 +S'(related artist)' +p218534 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e81.jpg' +p218535 +sg25267 +g27 +sa(dp218536 +g25268 +S'The Fall of Satan' +p218537 +sg25270 +S'William Blake' +p218538 +sg25273 +S'engraving on India paper' +p218539 +sg25275 +S'1825' +p218540 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076f7.jpg' +p218541 +sg25267 +g27 +sa(dp218542 +g25273 +S'woodcut touched with white paint' +p218543 +sg25267 +g27 +sg25275 +S'1922/1923' +p218544 +sg25268 +S'The People (Das Volk)' +p218545 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218546 +sa(dp218547 +g25273 +S'lithograph' +p218548 +sg25267 +g27 +sg25275 +S'1903' +p218549 +sg25268 +S'Working Class Woman, Left in Profile (Arbeiterfrau in Profil nach Links)' +p218550 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218551 +sa(dp218552 +g25273 +S'lithograph' +p218553 +sg25267 +g27 +sg25275 +S'1934' +p218554 +sg25268 +S'Self-Portrait (Selbstbildnis)' +p218555 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218556 +sa(dp218557 +g25273 +S'woodcut' +p218558 +sg25267 +g27 +sg25275 +S'1929' +p218559 +sg25268 +S'Visit to the Hospital (Besuch im Krankenhaus)' +p218560 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218561 +sa(dp218562 +g25273 +S'woodcut' +p218563 +sg25267 +g27 +sg25275 +S'1925' +p218564 +sg25268 +S'The End - Old Man with a Rope II (Das Letzte - Alter Mann mit Strick II)' +p218565 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218566 +sa(dp218567 +g25273 +S'woodcut' +p218568 +sg25267 +g27 +sg25275 +S'1924' +p218569 +sg25268 +S'Self-Portrait (Selbstbildnis)' +p218570 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218571 +sa(dp218572 +g25273 +S'woodcut in black touched with gray ink on japan paper [trial proof]' +p218573 +sg25267 +g27 +sg25275 +S'1923' +p218574 +sg25268 +S'Self-Portrait from the Front' +p218575 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218576 +sa(dp218577 +g25273 +S'lithograph' +p218578 +sg25267 +g27 +sg25275 +S'1922' +p218579 +sg25268 +S'Small Self-Portrait Facing Left (Kleines Selbstbildnis nach Links)' +p218580 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218581 +sa(dp218582 +g25273 +S'lithograph' +p218583 +sg25267 +g27 +sg25275 +S'1929/1930' +p218584 +sg25268 +S'Self-Portrait in Profile (Selbstbildnis im Profil)' +p218585 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218586 +sa(dp218587 +g25273 +S'woodcut' +p218588 +sg25267 +g27 +sg25275 +S'1921' +p218589 +sg25268 +S'Death with Woman (Tod mit Frau im Schoss)' +p218590 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218591 +sa(dp218592 +g25268 +S'The Vision of God' +p218593 +sg25270 +S'William Blake' +p218594 +sg25273 +S'engraving on India paper' +p218595 +sg25275 +S'1825' +p218596 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076f6.jpg' +p218597 +sg25267 +g27 +sa(dp218598 +g25273 +S'etching' +p218599 +sg25267 +g27 +sg25275 +S'1921' +p218600 +sg25268 +S'Self-Portrait (Selbstbildnis)' +p218601 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218602 +sa(dp218603 +g25273 +S'lithograph' +p218604 +sg25267 +g27 +sg25275 +S'1920' +p218605 +sg25268 +S'Sick Woman and Her Children (Die Kranke und ihre Kinder)' +p218606 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218607 +sa(dp218608 +g25273 +S'lithograph' +p218609 +sg25267 +g27 +sg25275 +S'1920' +p218610 +sg25268 +S"At the Doctor's (Beim Arzt)" +p218611 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218612 +sa(dp218613 +g25273 +S'lithograph' +p218614 +sg25267 +g27 +sg25275 +S'1920' +p218615 +sg25268 +S"In the Waiting Room of the Children's Doctor (In der Sprechstunde des Kinderartztes)" +p218616 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218617 +sa(dp218618 +g25273 +S'lithograph' +p218619 +sg25267 +g27 +sg25275 +S'1920' +p218620 +sg25268 +S'Woman Meditating I (Nachdenkende Frau I)' +p218621 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218622 +sa(dp218623 +g25273 +S'lithograph' +p218624 +sg25267 +g27 +sg25275 +S'1920' +p218625 +sg25268 +S'Selbstbildnis (Self-Portrait)' +p218626 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218627 +sa(dp218628 +g25273 +S'etching' +p218629 +sg25267 +g27 +sg25275 +S'1912' +p218630 +sg25268 +S'Self-Portrait (Selbstbildnis)' +p218631 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218632 +sa(dp218633 +g25273 +S'etching' +p218634 +sg25267 +g27 +sg25275 +S'1910' +p218635 +sg25268 +S'Mother and Child in Her Arms (Mutter mit Kindauf dem Arm)' +p218636 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218637 +sa(dp218638 +g25273 +S'etching and engraving in black-brown on wove paper' +p218639 +sg25267 +g27 +sg25275 +S'1910' +p218640 +sg25268 +S'Self-Portrait with Hand on Forehead (Selbstbildnis mit der Hand an der Stirn)' +p218641 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218642 +sa(dp218643 +g25273 +S'transfer lithograph in deep brown on dark gray-green paper' +p218644 +sg25267 +g27 +sg25275 +S'1905' +p218645 +sg25268 +S'Woman Covering Her Mouth with Right Hand (Halbfigur einer Frau mit der rechten Hand den Mund Bedeckend)' +p218646 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218647 +sa(dp218648 +g25268 +S"Job's Sacrifice" +p218649 +sg25270 +S'William Blake' +p218650 +sg25273 +S'engraving on India paper' +p218651 +sg25275 +S'1825' +p218652 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076f5.jpg' +p218653 +sg25267 +g27 +sa(dp218654 +g25273 +S'transfer lithograph in brown on light brown paper' +p218655 +sg25267 +g27 +sg25275 +S'1905' +p218656 +sg25268 +S'Woman Resting Her Chin on Her Right Hand (Frau, das Kinn in die rechte Hand Gestutszt' +p218657 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218658 +sa(dp218659 +g25273 +S'lithograph in green' +p218660 +sg25267 +g27 +sg25275 +S'1905' +p218661 +sg25268 +S'Head of a Working Class Woman in Three Quarter Profile to the Right (Kopf einer Arbeiterfrau im dreivertelprofil nach Rechts)' +p218662 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218663 +sa(dp218664 +g25273 +S'lithograph' +p218665 +sg25267 +g27 +sg25275 +S'1905' +p218666 +sg25268 +S'Self-Portrait, Three quarters Right (Selbstbildnis, dreiviertel nach Rechts)' +p218667 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218668 +sa(dp218669 +g25273 +S'soft-ground etching' +p218670 +sg25267 +g27 +sg25275 +S'1901' +p218671 +sg25268 +S'Hamburg Pub (Hamburger Kneipe)' +p218672 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218673 +sa(dp218674 +g25273 +S'soft-ground etching' +p218675 +sg25267 +g27 +sg25275 +S'1901' +p218676 +sg25268 +S'Hamburg Pub (Hamburger Kneipe)' +p218677 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218678 +sa(dp218679 +g25273 +S'print from an aluminum and copper plate' +p218680 +sg25267 +g27 +sg25275 +S'1901' +p218681 +sg25268 +S'Suburb (Vorstadt)' +p218682 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218683 +sa(dp218684 +g25273 +S'etching and aquatint' +p218685 +sg25267 +g27 +sg25275 +S'1900' +p218686 +sg25268 +S'The Downtrodden (Zertretene)' +p218687 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218688 +sa(dp218689 +g25273 +S'lithograph in black on japan paper' +p218690 +sg25267 +g27 +sg25275 +S'1897' +p218691 +sg25268 +S'Death (Tod)' +p218692 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218693 +sa(dp218694 +g25273 +S'etching' +p218695 +sg25267 +g27 +sg25275 +S'1897' +p218696 +sg25268 +S'Woman at the Cradle (Frau an der Wiege)' +p218697 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218698 +sa(dp218699 +g25273 +S'aquatint, etching, and emery stone pencil' +p218700 +sg25267 +g27 +sg25275 +S'1897' +p218701 +sg25268 +S'The End (Ende)' +p218702 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218703 +sa(dp218704 +g25268 +S'Job Accepting Charity' +p218705 +sg25270 +S'William Blake' +p218706 +sg25273 +S'engraving on India paper' +p218707 +sg25275 +S'1825' +p218708 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076f4.jpg' +p218709 +sg25267 +g27 +sa(dp218710 +g25273 +S'etching and emery stone pencil' +p218711 +sg25267 +g27 +sg25275 +S'1897' +p218712 +sg25268 +S'The Storm (Sturm)' +p218713 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218714 +sa(dp218715 +g25273 +S'lithograph' +p218716 +sg25267 +g27 +sg25275 +S'1898' +p218717 +sg25268 +S'Conspiracy (Beratung)' +p218718 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218719 +sa(dp218720 +g25273 +S'photomechanical reproduction' +p218721 +sg25267 +g27 +sg25275 +S'1897' +p218722 +sg25268 +S'Despair (Not)' +p218723 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218724 +sa(dp218725 +g25273 +S'lithograph' +p218726 +sg25267 +g27 +sg25275 +S'1897' +p218727 +sg25268 +S'Despair (Not)' +p218728 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218729 +sa(dp218730 +g25273 +S'etching' +p218731 +sg25267 +g27 +sg25275 +S'1895' +p218732 +sg25268 +S'Conspiracy (Beratung)' +p218733 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218734 +sa(dp218735 +g25273 +S'etching' +p218736 +sg25267 +g27 +sg25275 +S'1892' +p218737 +sg25268 +S'The Greeting (Begrussung)' +p218738 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218739 +sa(dp218740 +g25273 +S'etching' +p218741 +sg25267 +g27 +sg25275 +S'1892/1893' +p218742 +sg25268 +S'Four Men in a Pub (Vier Manner in der Kneipe)' +p218743 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218744 +sa(dp218745 +g25273 +S'etching and aquatint' +p218746 +sg25267 +g27 +sg25275 +S'1931' +p218747 +sg25268 +S'Return from Market (Stehende Mutter, ihr Bublein futternd)' +p218748 +sg25270 +S'K\xc3\xa4the Kollwitz' +p218749 +sa(dp218750 +g25273 +S'etching' +p218751 +sg25267 +g27 +sg25275 +S'unknown date\n' +p218752 +sg25268 +S'Cargo Carriers' +p218753 +sg25270 +S'Otto August K\xc3\xbchler' +p218754 +sa(dp218755 +g25273 +S'etching and drypoint' +p218756 +sg25267 +g27 +sg25275 +S'unknown date\n' +p218757 +sg25268 +S'The Welder' +p218758 +sg25270 +S'Otto August K\xc3\xbchler' +p218759 +sa(dp218760 +g25268 +S'Job and His Daughters' +p218761 +sg25270 +S'William Blake' +p218762 +sg25273 +S'engraving on India paper' +p218763 +sg25275 +S'1825' +p218764 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076f3.jpg' +p218765 +sg25267 +g27 +sa(dp218766 +g25273 +S'etching' +p218767 +sg25267 +g27 +sg25275 +S'unknown date\n' +p218768 +sg25268 +S'Three Sisters' +p218769 +sg25270 +S'Otto August K\xc3\xbchler' +p218770 +sa(dp218771 +g25273 +S'drypoint' +p218772 +sg25267 +g27 +sg25275 +S'unknown date\n' +p218773 +sg25268 +S'Fantasia Americana, 1880' +p218774 +sg25270 +S'Lawrence Edward Kupferman' +p218775 +sa(dp218776 +g25268 +S'The Holy Trinity' +p218777 +sg25270 +S'Johann Ladenspelder' +p218778 +sg25273 +S'engraving' +p218779 +sg25275 +S'1542' +p218780 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b062.jpg' +p218781 +sg25267 +g27 +sa(dp218782 +g25268 +S'The Agony in the Garden' +p218783 +sg25270 +S'German 15th Century' +p218784 +sg25273 +S'Schreiber Manuel, no. 3448' +p218785 +sg25275 +S'\nhand-colored woodcut' +p218786 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5ef.jpg' +p218787 +sg25267 +g27 +sa(dp218788 +g25273 +S'lithograph' +p218789 +sg25267 +g27 +sg25275 +S'unknown date\n' +p218790 +sg25268 +S'Waterfront at Philadelphia' +p218791 +sg25270 +S'Vincent La Badessa' +p218792 +sa(dp218793 +g25273 +S'wood engraving' +p218794 +sg25267 +g27 +sg25275 +S'1940' +p218795 +sg25268 +S'Black Stallion' +p218796 +sg25270 +S'Paul Hambelton Landacre' +p218797 +sa(dp218798 +g25273 +S'wood engraving' +p218799 +sg25267 +g27 +sg25275 +S'1935' +p218800 +sg25268 +S'Laguna Cove' +p218801 +sg25270 +S'Paul Hambelton Landacre' +p218802 +sa(dp218803 +g25268 +S'Rade de Bordeaux' +p218804 +sg25270 +S'Maxime Lalanne' +p218805 +sg25273 +S'etching' +p218806 +sg25275 +S'1868' +p218807 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098d1.jpg' +p218808 +sg25267 +g27 +sa(dp218809 +g25268 +S'Landscape with a Vineyard' +p218810 +sg25270 +S'Hans Sebald Lautensack' +p218811 +sg25273 +S'etching' +p218812 +sg25275 +S'1559' +p218813 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b242.jpg' +p218814 +sg25267 +g27 +sa(dp218815 +g25268 +S'View of a Town near a River with a Church on the Right' +p218816 +sg25270 +S'Hans Sebald Lautensack' +p218817 +sg25273 +S'etching' +p218818 +sg25275 +S'1553' +p218819 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000accc.jpg' +p218820 +sg25267 +g27 +sa(dp218821 +g25268 +S'Job and His Wife Restored to Prosperity' +p218822 +sg25270 +S'William Blake' +p218823 +sg25273 +S'engraving on India paper' +p218824 +sg25275 +S'1825' +p218825 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076f2.jpg' +p218826 +sg25267 +g27 +sa(dp218827 +g25268 +S'Georg Roggenbach' +p218828 +sg25270 +S'Hans Sebald Lautensack' +p218829 +sg25273 +S'etching' +p218830 +sg25275 +S'1554' +p218831 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b23d.jpg' +p218832 +sg25267 +g27 +sa(dp218833 +g25268 +S'Landscape with Three Men' +p218834 +sg25270 +S'Hans Sebald Lautensack' +p218835 +sg25273 +S'etching' +p218836 +sg25275 +S'c. 1558/1559' +p218837 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b245.jpg' +p218838 +sg25267 +g27 +sa(dp218839 +g25268 +S'Johann Aventinus (Johann Turmair)' +p218840 +sg25270 +S'Hans Sebald Lautensack' +p218841 +sg25273 +S'woodcut' +p218842 +sg25275 +S'1554' +p218843 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00057/a00057e7.jpg' +p218844 +sg25267 +g27 +sa(dp218845 +g25268 +S'View of a City near a River' +p218846 +sg25270 +S'Hans Sebald Lautensack' +p218847 +sg25273 +S'etching' +p218848 +sg25275 +S'1553' +p218849 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acc2.jpg' +p218850 +sg25267 +g27 +sa(dp218851 +g25268 +S'View of Nuremberg from the East [left section]' +p218852 +sg25270 +S'Hans Sebald Lautensack' +p218853 +sg25273 +S'etching' +p218854 +sg25275 +S'1552' +p218855 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000af/a000aff5.jpg' +p218856 +sg25267 +g27 +sa(dp218857 +g25268 +S'View of Nuremberg from the East [center section]' +p218858 +sg25270 +S'Hans Sebald Lautensack' +p218859 +sg25273 +S'etching' +p218860 +sg25275 +S'1552' +p218861 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000ae38.jpg' +p218862 +sg25267 +g27 +sa(dp218863 +g25268 +S'View of Nuremberg from the East [right section]' +p218864 +sg25270 +S'Hans Sebald Lautensack' +p218865 +sg25273 +S'etching' +p218866 +sg25275 +S'1552' +p218867 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ada9.jpg' +p218868 +sg25267 +g27 +sa(dp218869 +g25273 +S'etching and drypoint' +p218870 +sg25267 +g27 +sg25275 +S'unknown date\n' +p218871 +sg25268 +S'The Print Collector' +p218872 +sg25270 +S'Percy Lancaster' +p218873 +sa(dp218874 +g25268 +S'Meditation (La meditation)' +p218875 +sg25270 +S'Alphonse Legros' +p218876 +sg25273 +S'etching? and drypoint' +p218877 +sg25275 +S'unknown date\n' +p218878 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009be6.jpg' +p218879 +sg25267 +g27 +sa(dp218880 +g25268 +S'Meadow in Sunshine (Le pre ensoleille)' +p218881 +sg25270 +S'Alphonse Legros' +p218882 +sg25273 +S'drypoint and etching?' +p218883 +sg25275 +S'unknown date\n' +p218884 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bdb.jpg' +p218885 +sg25267 +g27 +sa(dp218886 +g25268 +S'Dancing Children' +p218887 +sg25270 +S'Heinrich Aldegrever' +p218888 +sg25273 +S'engraving' +p218889 +sg25275 +S'1535' +p218890 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6e7.jpg' +p218891 +sg25267 +g27 +sa(dp218892 +g25268 +S'English Peasant (Paysan anglais)' +p218893 +sg25270 +S'Alphonse Legros' +p218894 +sg25273 +S'etching and drypoint?' +p218895 +sg25275 +S'unknown date\n' +p218896 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bcb.jpg' +p218897 +sg25267 +g27 +sa(dp218898 +g25268 +S"Distributor of the Holy Water (Le donneur d'eau benite)" +p218899 +sg25270 +S'Alphonse Legros' +p218900 +sg25273 +S'etching and drypoint?' +p218901 +sg25275 +S'unknown date\n' +p218902 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009ba1.jpg' +p218903 +sg25267 +g27 +sa(dp218904 +g25268 +S'Fagot-cutter (Le coupeur de fagots)' +p218905 +sg25270 +S'Alphonse Legros' +p218906 +sg25273 +S'etching and drypoint' +p218907 +sg25275 +S'unknown date\n' +p218908 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b9f.jpg' +p218909 +sg25267 +g27 +sa(dp218910 +g25268 +S'Thatched Cottage (Chaumiere)' +p218911 +sg25270 +S'Alphonse Legros' +p218912 +sg25273 +S'etching and drypoint retouched with ink' +p218913 +sg25275 +S'unknown date\n' +p218914 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b91.jpg' +p218915 +sg25267 +g27 +sa(dp218916 +g25268 +S"The Gate (L'entree du champ)" +p218917 +sg25270 +S'Alphonse Legros' +p218918 +sg25273 +S'drypoint and etching?' +p218919 +sg25275 +S'unknown date\n' +p218920 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009929.jpg' +p218921 +sg25267 +g27 +sa(dp218922 +g25268 +S'Philosopher (Le philosophe)' +p218923 +sg25270 +S'Alphonse Legros' +p218924 +sg25273 +S'drypoint and etching?' +p218925 +sg25275 +S'unknown date\n' +p218926 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000991f.jpg' +p218927 +sg25267 +g27 +sa(dp218928 +g25268 +S'Head of a Beggar (Tete de mendiant)' +p218929 +sg25270 +S'Alphonse Legros' +p218930 +sg25273 +S'etching, drypoint and aquatint' +p218931 +sg25275 +S'unknown date\n' +p218932 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d79.jpg' +p218933 +sg25267 +g27 +sa(dp218934 +g25268 +S"Writer (L'ecrivain)" +p218935 +sg25270 +S'Alphonse Legros' +p218936 +sg25273 +S'drypoint' +p218937 +sg25275 +S'unknown date\n' +p218938 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000991b.jpg' +p218939 +sg25267 +g27 +sa(dp218940 +g25268 +S'Banks of the Marne (Bord de la Marne)' +p218941 +sg25270 +S'Alphonse Legros' +p218942 +sg25273 +S'drypoint and etching? on light green paper' +p218943 +sg25275 +S'unknown date\n' +p218944 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000990d.jpg' +p218945 +sg25267 +g27 +sa(dp218946 +g25268 +S'Head of a Satyr (Tete de satyre)' +p218947 +sg25270 +S'Alphonse Legros' +p218948 +sg25273 +S'etching' +p218949 +sg25275 +S'unknown date\n' +p218950 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bbe.jpg' +p218951 +sg25267 +g27 +sa(dp218952 +g25268 +S'The Virgin and Child Enthroned, with Angels and Saints' +p218953 +sg25270 +S'Artist Information (' +p218954 +sg25273 +S'Italian, 1426 - 1464' +p218955 +sg25275 +S'(artist after)' +p218956 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c71c.jpg' +p218957 +sg25267 +g27 +sa(dp218958 +g25268 +S'Little Angler (Le petit pecheur a la ligne)' +p218959 +sg25270 +S'Alphonse Legros' +p218960 +sg25273 +S'drypoint' +p218961 +sg25275 +S'unknown date\n' +p218962 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bbd.jpg' +p218963 +sg25267 +g27 +sa(dp218964 +g25268 +S"Peasant Woman Seated near a Hedge (Paysanne assise pres d'une haie)" +p218965 +sg25270 +S'Alphonse Legros' +p218966 +sg25273 +S'etching and drypoint' +p218967 +sg25275 +S'unknown date\n' +p218968 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009912.jpg' +p218969 +sg25267 +g27 +sa(dp218970 +g25268 +S'Auguste Rodin' +p218971 +sg25270 +S'Alphonse Legros' +p218972 +sg25273 +S'etching in brown ink' +p218973 +sg25275 +S'unknown date\n' +p218974 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b89.jpg' +p218975 +sg25267 +g27 +sa(dp218976 +g25268 +S'Thunder (Un coup de foudre)' +p218977 +sg25270 +S'Alphonse Legros' +p218978 +sg25273 +S'etching' +p218979 +sg25275 +S'unknown date\n' +p218980 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098e9.jpg' +p218981 +sg25267 +g27 +sa(dp218982 +g25268 +S"Head of a Man (Tete d'homme)" +p218983 +sg25270 +S'Alphonse Legros' +p218984 +sg25273 +S'etching' +p218985 +sg25275 +S'unknown date\n' +p218986 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b90.jpg' +p218987 +sg25267 +g27 +sa(dp218988 +g25268 +S'Study of an Old Man (Etude de vieillard)' +p218989 +sg25270 +S'Alphonse Legros' +p218990 +sg25273 +S'etching' +p218991 +sg25275 +S'unknown date\n' +p218992 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fa4.jpg' +p218993 +sg25267 +g27 +sa(dp218994 +g25268 +S'Poet (Le poete)' +p218995 +sg25270 +S'Alphonse Legros' +p218996 +sg25273 +S'etching and aquatint' +p218997 +sg25275 +S'unknown date\n' +p218998 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b88.jpg' +p218999 +sg25267 +g27 +sa(dp219000 +g25268 +S'Salmon Fisher (Le pecheur du saumon)' +p219001 +sg25270 +S'Alphonse Legros' +p219002 +sg25273 +S'etching' +p219003 +sg25275 +S'unknown date\n' +p219004 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b7f.jpg' +p219005 +sg25267 +g27 +sa(dp219006 +g25268 +S'Salmon Fisher (Le pecheur du saumon)' +p219007 +sg25270 +S'Alphonse Legros' +p219008 +sg25273 +S'etching' +p219009 +sg25275 +S'unknown date\n' +p219010 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b81.jpg' +p219011 +sg25267 +g27 +sa(dp219012 +g25268 +S'Village of Wimille, near Boulogne (Village de Wimille, pres Boulogne)' +p219013 +sg25270 +S'Alphonse Legros' +p219014 +sg25273 +S'etching' +p219015 +sg25275 +S'unknown date\n' +p219016 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098e5.jpg' +p219017 +sg25267 +g27 +sa(dp219018 +g25268 +S'Hercules and Iole' +p219019 +sg25270 +S'Sebald Beham' +p219020 +sg25273 +S'engraving' +p219021 +sg25275 +S'1544' +p219022 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a821.jpg' +p219023 +sg25267 +g27 +sa(dp219024 +g25268 +S'Milkmaid of Boulogne, 3rd plate (Laitiere a Boulogne)' +p219025 +sg25270 +S'Alphonse Legros' +p219026 +sg25273 +S'etching and drypoint' +p219027 +sg25275 +S'unknown date\n' +p219028 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098db.jpg' +p219029 +sg25267 +g27 +sa(dp219030 +g25268 +S'Self-Portrait, 3rd plate' +p219031 +sg25270 +S'Alphonse Legros' +p219032 +sg25273 +S'etching? and drypoint' +p219033 +sg25275 +S'1880' +p219034 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b7b.jpg' +p219035 +sg25267 +g27 +sa(dp219036 +g25268 +S'Self-Portrait, 3rd plate' +p219037 +sg25270 +S'Alphonse Legros' +p219038 +sg25273 +S'etching? and drypoint' +p219039 +sg25275 +S'1880' +p219040 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b7c.jpg' +p219041 +sg25267 +g27 +sa(dp219042 +g25268 +S'Landscape with Birch Trees (Le paysage aux bouleaux)' +p219043 +sg25270 +S'Alphonse Legros' +p219044 +sg25273 +S'lithograph' +p219045 +sg25275 +S'unknown date\n' +p219046 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fa5.jpg' +p219047 +sg25267 +g27 +sa(dp219048 +g25268 +S'Angler (Le pecheur a la ligne)' +p219049 +sg25270 +S'Alphonse Legros' +p219050 +sg25273 +S'etching and drypoint?' +p219051 +sg25275 +S'unknown date\n' +p219052 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b6a.jpg' +p219053 +sg25267 +g27 +sa(dp219054 +g25268 +S'Head of Souliote (Tete de Souliote)' +p219055 +sg25270 +S'Alphonse Legros' +p219056 +sg25273 +S'etching and drypoint?' +p219057 +sg25275 +S'unknown date\n' +p219058 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b6c.jpg' +p219059 +sg25267 +g27 +sa(dp219060 +g25268 +S'Fagot-makers (Les faiseurs de fagots)' +p219061 +sg25270 +S'Alphonse Legros' +p219062 +sg25273 +S'etching' +p219063 +sg25275 +S'unknown date\n' +p219064 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b70.jpg' +p219065 +sg25267 +g27 +sa(dp219066 +g25268 +S'Leon Gambetta, 2nd plate' +p219067 +sg25270 +S'Alphonse Legros' +p219068 +sg25273 +S'etching' +p219069 +sg25275 +S'unknown date\n' +p219070 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b68.jpg' +p219071 +sg25267 +g27 +sa(dp219072 +g25268 +S"Head of a Man (Tete d'homme)" +p219073 +sg25270 +S'Alphonse Legros' +p219074 +sg25273 +S'drypoint' +p219075 +sg25275 +S'1877' +p219076 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b5e.jpg' +p219077 +sg25267 +g27 +sa(dp219078 +g25268 +S'Berenice, 2nd plate' +p219079 +sg25270 +S'Alphonse Legros' +p219080 +sg25273 +S'etching' +p219081 +sg25275 +S'unknown date\n' +p219082 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b5f.jpg' +p219083 +sg25267 +g27 +sa(dp219084 +g25268 +S'Foot Soldier Standing by a Tree' +p219085 +sg25270 +S'Sebald Beham' +p219086 +sg25273 +S'etching' +p219087 +sg25275 +S'1520' +p219088 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a860.jpg' +p219089 +sg25267 +g27 +sa(dp219090 +g25268 +S'Shadow (Ombre)' +p219091 +sg25270 +S'Alphonse Legros' +p219092 +sg25273 +S'etching' +p219093 +sg25275 +S'unknown date\n' +p219094 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b60.jpg' +p219095 +sg25267 +g27 +sa(dp219096 +g25268 +S"The Fire, 2nd plate (L'incendie)" +p219097 +sg25270 +S'Alphonse Legros' +p219098 +sg25273 +S'etching' +p219099 +sg25275 +S'unknown date\n' +p219100 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b2d.jpg' +p219101 +sg25267 +g27 +sa(dp219102 +g25268 +S'Death and the Woodcutter' +p219103 +sg25270 +S'Alphonse Legros' +p219104 +sg25273 +S'pen and brown ink over graphite on ground wood paper' +p219105 +sg25275 +S'unknown date\n' +p219106 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073b8.jpg' +p219107 +sg25267 +g27 +sa(dp219108 +g25268 +S"Field Hospital (L'ambulance)" +p219109 +sg25270 +S'Alphonse Legros' +p219110 +sg25273 +S'etching' +p219111 +sg25275 +S'unknown date\n' +p219112 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b31.jpg' +p219113 +sg25267 +g27 +sa(dp219114 +g25268 +S'Sunset (Le soir (Coucher de soleil))' +p219115 +sg25270 +S'Alphonse Legros' +p219116 +sg25273 +S'drypoint and etching?' +p219117 +sg25275 +S'unknown date\n' +p219118 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098e0.jpg' +p219119 +sg25267 +g27 +sa(dp219120 +g25268 +S'Phrenology Course, 2nd plate (Le cours de phrenologie)' +p219121 +sg25270 +S'Alphonse Legros' +p219122 +sg25273 +S'etching' +p219123 +sg25275 +S'1906' +p219124 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b30.jpg' +p219125 +sg25267 +g27 +sa(dp219126 +g25268 +S'Old Woman Seated (La vieille femme assise)' +p219127 +sg25270 +S'Alphonse Legros' +p219128 +sg25273 +S'etching and drypoint' +p219129 +sg25275 +S'unknown date\n' +p219130 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00098/a00098fa.jpg' +p219131 +sg25267 +g27 +sa(dp219132 +g25268 +S'Peasant Woman of Boulogne (Paysanne des environs de Boulogne dite La femme au panier)' +p219133 +sg25270 +S'Alphonse Legros' +p219134 +sg25273 +S'etching' +p219135 +sg25275 +S'unknown date\n' +p219136 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b4f.jpg' +p219137 +sg25267 +g27 +sa(dp219138 +g25268 +S'Peasants (Paysannes)' +p219139 +sg25270 +S'Alphonse Legros' +p219140 +sg25273 +S'etching? and drypoint' +p219141 +sg25275 +S'unknown date\n' +p219142 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d75.jpg' +p219143 +sg25267 +g27 +sa(dp219144 +g25268 +S'Peasants (Paysannes)' +p219145 +sg25270 +S'Alphonse Legros' +p219146 +sg25273 +S'etching and drypoint' +p219147 +sg25275 +S'unknown date\n' +p219148 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d72.jpg' +p219149 +sg25267 +g27 +sa(dp219150 +g25268 +S'Lucretia' +p219151 +sg25270 +S'Rembrandt van Rijn' +p219152 +sg25273 +S'oil on canvas' +p219153 +sg25275 +S'1664' +p219154 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00007/a0000704.jpg' +p219155 +sg25267 +S"The tragic story of Lucretia, recounted by Livy (59 BC–17 AD), took place in Rome in the sixth century BC during the reign of the tyrannical ruler Tarquinius Superbus. Rembrandt, who specialized in history paintings, portrays Lucretia in utter anguish, right before her act of suicide. The tension surrounding that awful moment poignantly captures the moral dilemma of a woman forced to choose between life and honor.\n Lucretia's husband, Collatinus, had boasted to his fellow soldiers that her loyalty and virtue were greater than that of their wives. Taking him up on the challenge, the men immediately rode to Rome, where they found Lucretia and her handmaidens spinning wool. Lucretia's very virtue enflamed the desire of Sextus Tarquinius, son of the tyrant, and he secretly returned to her house a few days later. Lucretia received him as an honored guest, but he later betrayed that hospitality by entering her chamber and threatening to kill her if she did not yield to his advances. The next day Lucretia summoned her father and husband, disclosed what had happened, and told them that, even though they deemed her an innocent victim, she was determined to end her life in order to reclaim her honor. She then drew a knife from her robe, drove it into her heart, and died. Overwhelmed by grief and anger, Lucretia's father, her husband, and two friends swore to avenge her death. Lucretia's rape and suicide triggered a revolt that led to the overthrow of monarchical tyranny and the creation of the Roman Republic.\n " +p219156 +sa(dp219157 +g25268 +S'The Penance of Saint John Chrysostom' +p219158 +sg25270 +S'Sebald Beham' +p219159 +sg25273 +S'engraving' +p219160 +sg25275 +S'c. 1541/1545' +p219161 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7f7.jpg' +p219162 +sg25267 +g27 +sa(dp219163 +g25268 +S"Traveler taking Shelter (Le voyageur a l'abri)" +p219164 +sg25270 +S'Alphonse Legros' +p219165 +sg25273 +S'etching and drypoint' +p219166 +sg25275 +S'unknown date\n' +p219167 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b4c.jpg' +p219168 +sg25267 +g27 +sa(dp219169 +g25268 +S'English Beggars (Les mendiants anglais)' +p219170 +sg25270 +S'Alphonse Legros' +p219171 +sg25273 +S'etching and drypoint' +p219172 +sg25275 +S'1875' +p219173 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b4e.jpg' +p219174 +sg25267 +g27 +sa(dp219175 +g25268 +S'Finding the Sheep (Le mouton retrouve)' +p219176 +sg25270 +S'Alphonse Legros' +p219177 +sg25273 +S'etching' +p219178 +sg25275 +S'unknown date\n' +p219179 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b43.jpg' +p219180 +sg25267 +g27 +sa(dp219181 +g25268 +S'Fisherman with a Hoop-net (La peche a la truble)' +p219182 +sg25270 +S'Alphonse Legros' +p219183 +sg25273 +S'etching and aquatint?' +p219184 +sg25275 +S'unknown date\n' +p219185 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b57.jpg' +p219186 +sg25267 +g27 +sa(dp219187 +g25268 +S'Horse-driven Mill (Le manege)' +p219188 +sg25270 +S'Alphonse Legros' +p219189 +sg25273 +S'etching' +p219190 +sg25275 +S'probably 1869' +p219191 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b45.jpg' +p219192 +sg25267 +g27 +sa(dp219193 +g25268 +S'Vagabonds of Montrouge (Les vagabonds de Montrouge)' +p219194 +sg25270 +S'Alphonse Legros' +p219195 +sg25273 +S'etching' +p219196 +sg25275 +S'unknown date\n' +p219197 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b3c.jpg' +p219198 +sg25267 +g27 +sa(dp219199 +g25268 +S'Plague Victims of Rome (Les pestiferes de Rome)' +p219200 +sg25270 +S'Alphonse Legros' +p219201 +sg25273 +S'etching' +p219202 +sg25275 +S'unknown date\n' +p219203 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b37.jpg' +p219204 +sg25267 +g27 +sa(dp219205 +g25268 +S"Choir in a Spanish Church (La choeur d'une eglise espagnole)" +p219206 +sg25270 +S'Alphonse Legros' +p219207 +sg25273 +S'etching and drypoint' +p219208 +sg25275 +S'1860' +p219209 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b1c.jpg' +p219210 +sg25267 +g27 +sa(dp219211 +g25268 +S'The Refectory (Le refectoire)' +p219212 +sg25270 +S'Alphonse Legros' +p219213 +sg25273 +S'etching' +p219214 +sg25275 +S'unknown date\n' +p219215 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b22.jpg' +p219216 +sg25267 +g27 +sa(dp219217 +g25268 +S'Procession in the Sepulchre of Saint Medard(Procession dans le caveaux de St.-Medard)' +p219218 +sg25270 +S'Alphonse Legros' +p219219 +sg25273 +S'etching' +p219220 +sg25275 +S'1859' +p219221 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b20.jpg' +p219222 +sg25267 +g27 +sa(dp219223 +g25268 +S'Ornament with a Mask' +p219224 +sg25270 +S'Sebald Beham' +p219225 +sg25273 +S'engraving' +p219226 +sg25275 +S'1543' +p219227 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a898.jpg' +p219228 +sg25267 +g27 +sa(dp219229 +g25268 +S'Breton Peasant (Paysan breton)' +p219230 +sg25270 +S'Alphonse Legros' +p219231 +sg25273 +S'drypoint' +p219232 +sg25275 +S'unknown date\n' +p219233 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b24.jpg' +p219234 +sg25267 +g27 +sa(dp219235 +g25268 +S'Head of a Model (Tete de modele)' +p219236 +sg25270 +S'Alphonse Legros' +p219237 +sg25273 +S'drypoint' +p219238 +sg25275 +S'unknown date\n' +p219239 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000990a.jpg' +p219240 +sg25267 +g27 +sa(dp219241 +g25268 +S'Frederic Regamey' +p219242 +sg25270 +S'Alphonse Legros' +p219243 +sg25273 +S'drypoint' +p219244 +sg25275 +S'unknown date\n' +p219245 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009909.jpg' +p219246 +sg25267 +g27 +sa(dp219247 +g25268 +S'Death of the Vagabond (La mort du vagabond)' +p219248 +sg25270 +S'Alphonse Legros' +p219249 +sg25273 +S'etching, aquatint and drypoint' +p219250 +sg25275 +S'unknown date\n' +p219251 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f99.jpg' +p219252 +sg25267 +g27 +sa(dp219253 +g25268 +S'Gust of Wind (Le coup de vent)' +p219254 +sg25270 +S'Alphonse Legros' +p219255 +sg25273 +S'etching' +p219256 +sg25275 +S'unknown date\n' +p219257 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f97.jpg' +p219258 +sg25267 +g27 +sa(dp219259 +g25268 +S'Solitude (Solitude (Paysage))' +p219260 +sg25270 +S'Alphonse Legros' +p219261 +sg25273 +S'drypoint' +p219262 +sg25275 +S'unknown date\n' +p219263 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fb1.jpg' +p219264 +sg25267 +g27 +sa(dp219265 +g25268 +S'The Crucifixion' +p219266 +sg25270 +S'Artist Information (' +p219267 +sg25273 +S'(artist)' +p219268 +sg25275 +S'\n' +p219269 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005624.jpg' +p219270 +sg25267 +g27 +sa(dp219271 +g25268 +S'The Circle of the Lustful: Paolo and Francesca' +p219272 +sg25270 +S'William Blake' +p219273 +sg25273 +S'engraving' +p219274 +sg25275 +S'1827' +p219275 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a000789b.jpg' +p219276 +sg25267 +g27 +sa(dp219277 +g25268 +S'The Circle of the Corrupt Officials; the Devils Tormenting Ciampolo' +p219278 +sg25270 +S'William Blake' +p219279 +sg25273 +S'engraving' +p219280 +sg25275 +S'1827' +p219281 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007703.jpg' +p219282 +sg25267 +g27 +sa(dp219283 +g25268 +S'The Circle of the Corrupt Officials; the Devils Tormenting Ciampolo' +p219284 +sg25270 +S'William Blake' +p219285 +sg25273 +S'engraving' +p219286 +sg25275 +S'1827' +p219287 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a000789f.jpg' +p219288 +sg25267 +g27 +sa(dp219289 +g25268 +S'Ornament with Two Grotesque Dolphins' +p219290 +sg25270 +S'Sebald Beham' +p219291 +sg25273 +S'engraving' +p219292 +sg25275 +S'in or before 1531' +p219293 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a89b.jpg' +p219294 +sg25267 +g27 +sa(dp219295 +g25268 +S'The Circle of the Corrupt Officials; the Devils Mauling Each Other' +p219296 +sg25270 +S'William Blake' +p219297 +sg25273 +S'engraving' +p219298 +sg25275 +S'1827' +p219299 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00077/a0007701.jpg' +p219300 +sg25267 +g27 +sa(dp219301 +g25268 +S'The Circle of the Thieves; Agnolo Brunelleschi Attacked by a Six-Footed Serpent' +p219302 +sg25270 +S'William Blake' +p219303 +sg25273 +S'engraving' +p219304 +sg25275 +S'1827' +p219305 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a0007899.jpg' +p219306 +sg25267 +g27 +sa(dp219307 +g25268 +S'The Circle of the Thieves; Agnolo Brunelleschi Attacked by a Six-Footed Serpent' +p219308 +sg25270 +S'William Blake' +p219309 +sg25273 +S'engraving' +p219310 +sg25275 +S'1827' +p219311 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076ff.jpg' +p219312 +sg25267 +g27 +sa(dp219313 +g25268 +S"The Circle of the Traitors; Dante's Foot Striking Bocca degli Abbate" +p219314 +sg25270 +S'William Blake' +p219315 +sg25273 +S'engraving' +p219316 +sg25275 +S'1827' +p219317 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076fa.jpg' +p219318 +sg25267 +g27 +sa(dp219319 +g25268 +S'The Triumph of Death: Proclamation (Le triomphe de la mort: La proclamation)' +p219320 +sg25270 +S'Alphonse Legros' +p219321 +sg25273 +S'etching' +p219322 +sg25275 +S'unknown date\n' +p219323 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fb4.jpg' +p219324 +sg25267 +g27 +sa(dp219325 +g25268 +S'The Triumph of Death: Departure (Le triomphe de la mort: Le depart)' +p219326 +sg25270 +S'Alphonse Legros' +p219327 +sg25273 +S'etching' +p219328 +sg25275 +S'unknown date\n' +p219329 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fa6.jpg' +p219330 +sg25267 +g27 +sa(dp219331 +g25268 +S'Victims of the Lightning (Victimes de la foudre)' +p219332 +sg25270 +S'Alphonse Legros' +p219333 +sg25273 +S'etching and drypoint' +p219334 +sg25275 +S'unknown date\n' +p219335 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fad.jpg' +p219336 +sg25267 +g27 +sa(dp219337 +g25268 +S'Sunrise (Un lever de soleil)' +p219338 +sg25270 +S'Alphonse Legros' +p219339 +sg25273 +S'etching and drypoint' +p219340 +sg25275 +S'unknown date\n' +p219341 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009faf.jpg' +p219342 +sg25267 +g27 +sa(dp219343 +g25268 +S"Fishing for Crayfish (Les pecheurs d'ecrevisses)" +p219344 +sg25270 +S'Alphonse Legros' +p219345 +sg25273 +S'drypoint' +p219346 +sg25275 +S'unknown date\n' +p219347 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f9b.jpg' +p219348 +sg25267 +g27 +sa(dp219349 +g25268 +S'Sir Seymour Haden' +p219350 +sg25270 +S'Alphonse Legros' +p219351 +sg25273 +S'mezzotint' +p219352 +sg25275 +S'unknown date\n' +p219353 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b8e.jpg' +p219354 +sg25267 +g27 +sa(dp219355 +g25268 +S'Execution of a Man at a Market-Place of a Town' +p219356 +sg25270 +S'Leonhard Beck' +p219357 +sg25273 +S'woodcut' +p219358 +sg25275 +S'1514/1516' +p219359 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000aefc.jpg' +p219360 +sg25267 +g27 +sa(dp219361 +g25268 +S'Storm (Un orage)' +p219362 +sg25270 +S'Alphonse Legros' +p219363 +sg25273 +S'etching? and drypoint' +p219364 +sg25275 +S'unknown date\n' +p219365 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bc1.jpg' +p219366 +sg25267 +g27 +sa(dp219367 +g25268 +S'Fagot-gatherer (Le fagotier)' +p219368 +sg25270 +S'Alphonse Legros' +p219369 +sg25273 +S'etching and drypoint?' +p219370 +sg25275 +S'unknown date\n' +p219371 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d6f.jpg' +p219372 +sg25267 +g27 +sa(dp219373 +g25268 +S"Study for the Prodigal Son (Etude pour L'enfant prodigue)" +p219374 +sg25270 +S'Alphonse Legros' +p219375 +sg25273 +S'etching and drypoint?' +p219376 +sg25275 +S'unknown date\n' +p219377 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d78.jpg' +p219378 +sg25267 +g27 +sa(dp219379 +g25268 +S'Man in Punt' +p219380 +sg25270 +S'Alphonse Legros' +p219381 +sg25273 +S'etching' +p219382 +sg25275 +S'unknown date\n' +p219383 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d6c.jpg' +p219384 +sg25267 +g27 +sa(dp219385 +g25268 +S'View of Reeds (Coin de roseau)' +p219386 +sg25270 +S'Alphonse Legros' +p219387 +sg25273 +S'drypoint' +p219388 +sg25275 +S'unknown date\n' +p219389 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d71.jpg' +p219390 +sg25267 +g27 +sa(dp219391 +g25268 +S'Landscape with Two Trees (Paysage aux deux arbres)' +p219392 +sg25270 +S'Alphonse Legros' +p219393 +sg25273 +S'etching and drypoint' +p219394 +sg25275 +S'unknown date\n' +p219395 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d73.jpg' +p219396 +sg25267 +g27 +sa(dp219397 +g25268 +S'Curious Man (Un curieux)' +p219398 +sg25270 +S'Alphonse Legros' +p219399 +sg25273 +S'etching and drypoint' +p219400 +sg25275 +S'unknown date\n' +p219401 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d69.jpg' +p219402 +sg25267 +g27 +sa(dp219403 +g25268 +S'Last Rays (Les derniers rayons)' +p219404 +sg25270 +S'Alphonse Legros' +p219405 +sg25273 +S'etching and drypoint' +p219406 +sg25275 +S'unknown date\n' +p219407 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d6a.jpg' +p219408 +sg25267 +g27 +sa(dp219409 +g25268 +S'At the Home of the Woodcutters (Chez les bocherons)' +p219410 +sg25270 +S'Alphonse Legros' +p219411 +sg25273 +S'etching and drypoint?' +p219412 +sg25275 +S'unknown date\n' +p219413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d5c.jpg' +p219414 +sg25267 +g27 +sa(dp219415 +g25268 +S'Landscape (Paysage)' +p219416 +sg25270 +S'Alphonse Legros' +p219417 +sg25273 +S'etching and drypoint' +p219418 +sg25275 +S'unknown date\n' +p219419 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d60.jpg' +p219420 +sg25267 +g27 +sa(dp219421 +g25268 +S'Various Men Kneeling on a Bridge in front of a Town' +p219422 +sg25270 +S'Leonhard Beck' +p219423 +sg25273 +S'woodcut' +p219424 +sg25275 +S'1514/1516' +p219425 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0a0.jpg' +p219426 +sg25267 +g27 +sa(dp219427 +g25268 +S'Dr. Louis Vintras' +p219428 +sg25270 +S'Alphonse Legros' +p219429 +sg25273 +S'lithograph in red' +p219430 +sg25275 +S'1904' +p219431 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d58.jpg' +p219432 +sg25267 +g27 +sa(dp219433 +g25268 +S'Footbridge (La passerelle)' +p219434 +sg25270 +S'Alphonse Legros' +p219435 +sg25273 +S'etching' +p219436 +sg25275 +S'unknown date\n' +p219437 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d52.jpg' +p219438 +sg25267 +g27 +sa(dp219439 +g25268 +S"Shepherd's Hut on a Hillside (Bergerie sur le coteau)" +p219440 +sg25270 +S'Alphonse Legros' +p219441 +sg25273 +S'etching and drypoint' +p219442 +sg25275 +S'unknown date\n' +p219443 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d45.jpg' +p219444 +sg25267 +g27 +sa(dp219445 +g25268 +S'Return to the Farm (Le retour a la ferme)' +p219446 +sg25270 +S'Alphonse Legros' +p219447 +sg25273 +S'etching' +p219448 +sg25275 +S'unknown date\n' +p219449 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d3f.jpg' +p219450 +sg25267 +g27 +sa(dp219451 +g25268 +S'Valley in Bourgogne (Une vallee en Bourgogne)' +p219452 +sg25270 +S'Alphonse Legros' +p219453 +sg25273 +S'etching' +p219454 +sg25275 +S'unknown date\n' +p219455 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d43.jpg' +p219456 +sg25267 +g27 +sa(dp219457 +g25268 +S'Valley in Bourgogne (Une vallee en Bourgogne)' +p219458 +sg25270 +S'Alphonse Legros' +p219459 +sg25273 +S'drypoint and etching' +p219460 +sg25275 +S'unknown date\n' +p219461 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d35.jpg' +p219462 +sg25267 +g27 +sa(dp219463 +g25268 +S"Little Burner of Grass (Le petit bruleur d'herbe)" +p219464 +sg25270 +S'Alphonse Legros' +p219465 +sg25273 +S'etching and drypoint on buff paper' +p219466 +sg25275 +S'unknown date\n' +p219467 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d33.jpg' +p219468 +sg25267 +g27 +sa(dp219469 +g25268 +S"The Tree of Salvation (L'arbe de salut)" +p219470 +sg25270 +S'Alphonse Legros' +p219471 +sg25273 +S'drypoint and etching? on buff paper' +p219472 +sg25275 +S'unknown date\n' +p219473 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d3b.jpg' +p219474 +sg25267 +g27 +sa(dp219475 +g25268 +S"Avalanche: Frontispiece for Triumph of Death (L'avalanche: Frontispice du Triomphe dela mort" +p219476 +sg25270 +S'Alphonse Legros' +p219477 +sg25273 +S'etching' +p219478 +sg25275 +S'unknown date\n' +p219479 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d3d.jpg' +p219480 +sg25267 +g27 +sa(dp219481 +g25268 +S'Peasant in a Round Hat (Paysan avec chapeau rond)' +p219482 +sg25270 +S'Alphonse Legros' +p219483 +sg25273 +S'etching' +p219484 +sg25275 +S'unknown date\n' +p219485 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e13.jpg' +p219486 +sg25267 +g27 +sa(dp219487 +g25268 +S'Assembly of Four Kings, in the foreground Four Men' +p219488 +sg25270 +S'Leonhard Beck' +p219489 +sg25273 +S'woodcut' +p219490 +sg25275 +S'1514/1516' +p219491 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ae/a000ae10.jpg' +p219492 +sg25267 +g27 +sa(dp219493 +g25268 +S"Winter, 1st plate (L'hiver)" +p219494 +sg25270 +S'Alphonse Legros' +p219495 +sg25273 +S'drypoint' +p219496 +sg25275 +S'unknown date\n' +p219497 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e19.jpg' +p219498 +sg25267 +g27 +sa(dp219499 +g25268 +S'Siesta in the Country (Sieste dans la capagne)' +p219500 +sg25270 +S'Alphonse Legros' +p219501 +sg25273 +S'drypoint and etching?' +p219502 +sg25275 +S'unknown date\n' +p219503 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e17.jpg' +p219504 +sg25267 +g27 +sa(dp219505 +g25268 +S'Allegory of the Peasant and Fortune (Le paysan et la fortune: Sujet allegorique)' +p219506 +sg25270 +S'Alphonse Legros' +p219507 +sg25273 +S'etching and drypoint' +p219508 +sg25275 +S'unknown date\n' +p219509 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e1e.jpg' +p219510 +sg25267 +g27 +sa(dp219511 +g25268 +S'Fountain: Grotesque, Children and Basin (Une fountaine: Masque, enfants et bassin)' +p219512 +sg25270 +S'Alphonse Legros' +p219513 +sg25273 +S'etching and drypoint?' +p219514 +sg25275 +S'unknown date\n' +p219515 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e20.jpg' +p219516 +sg25267 +g27 +sa(dp219517 +g25268 +S'Landscape with a Boy in a Tree (Paysage avec un garcon gimpe sur un arbre dite "Le denicher d\'oiseaux)' +p219518 +sg25270 +S'Alphonse Legros' +p219519 +sg25273 +S'etching and drypoint on light green paper' +p219520 +sg25275 +S'unknown date\n' +p219521 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e0c.jpg' +p219522 +sg25267 +g27 +sa(dp219523 +g25268 +S'Along the Top of the Hill (Sur le haut de la colline)' +p219524 +sg25270 +S'Alphonse Legros' +p219525 +sg25273 +S'etching' +p219526 +sg25275 +S'unknown date\n' +p219527 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e0e.jpg' +p219528 +sg25267 +g27 +sa(dp219529 +g25268 +S'The Gardener (Le jardinier)' +p219530 +sg25270 +S'Alphonse Legros' +p219531 +sg25273 +S'etching' +p219532 +sg25275 +S'unknown date\n' +p219533 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e12.jpg' +p219534 +sg25267 +g27 +sa(dp219535 +g25268 +S'Saint Jerome, 2nd plate' +p219536 +sg25270 +S'Alphonse Legros' +p219537 +sg25273 +S'etching' +p219538 +sg25275 +S'unknown date\n' +p219539 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e03.jpg' +p219540 +sg25267 +g27 +sa(dp219541 +g25268 +S'Beggars of Brussels (Les mendiants de Bruges)' +p219542 +sg25270 +S'Alphonse Legros' +p219543 +sg25273 +S'etching on buff paper' +p219544 +sg25275 +S'unknown date\n' +p219545 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dff.jpg' +p219546 +sg25267 +g27 +sa(dp219547 +g25268 +S'View of a Chateau (Chateau de Poillet)' +p219548 +sg25270 +S'Alphonse Legros' +p219549 +sg25273 +S'etching and drypoint?' +p219550 +sg25275 +S'unknown date\n' +p219551 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009df9.jpg' +p219552 +sg25267 +g27 +sa(dp219553 +g25268 +S"A Message Concerning the White King's Marriage" +p219554 +sg25270 +S'Hans Burgkmair I' +p219555 +sg25273 +S'woodcut' +p219556 +sg25275 +S'unknown date\n' +p219557 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b09a.jpg' +p219558 +sg25267 +g27 +sa(dp219559 +g25268 +S"The Adoration of the Shepherds (L'adoration des bergers)" +p219560 +sg25270 +S'Alphonse Legros' +p219561 +sg25273 +S'etching and drypoint' +p219562 +sg25275 +S'unknown date\n' +p219563 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e02.jpg' +p219564 +sg25267 +g27 +sa(dp219565 +g25268 +S'The Triumph of Death: Battle (Le triomphe de la mort: Le combat)' +p219566 +sg25270 +S'Alphonse Legros' +p219567 +sg25273 +S'etching' +p219568 +sg25275 +S'unknown date\n' +p219569 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009de6.jpg' +p219570 +sg25267 +g27 +sa(dp219571 +g25268 +S'Sleeper (Un dormeur)' +p219572 +sg25270 +S'Alphonse Legros' +p219573 +sg25273 +S'etching' +p219574 +sg25275 +S'unknown date\n' +p219575 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009df2.jpg' +p219576 +sg25267 +g27 +sa(dp219577 +g25268 +S'Little Beggar (Le petit mendiant)' +p219578 +sg25270 +S'Alphonse Legros' +p219579 +sg25273 +S'etching' +p219580 +sg25275 +S'unknown date\n' +p219581 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009df4.jpg' +p219582 +sg25267 +g27 +sa(dp219583 +g25268 +S'Woman at the Foot of the Cross (Femme au calvaire)' +p219584 +sg25270 +S'Alphonse Legros' +p219585 +sg25273 +S'etching and drypoint' +p219586 +sg25275 +S'unknown date\n' +p219587 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009df1.jpg' +p219588 +sg25267 +g27 +sa(dp219589 +g25268 +S'Ruins of a Chateau (Les ruins du chateau)' +p219590 +sg25270 +S'Alphonse Legros' +p219591 +sg25273 +S'etching' +p219592 +sg25275 +S'unknown date\n' +p219593 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009deb.jpg' +p219594 +sg25267 +g27 +sa(dp219595 +g25268 +S'Cottage on a Hillside (Chaumiere sur le coteau)' +p219596 +sg25270 +S'Alphonse Legros' +p219597 +sg25273 +S'etching' +p219598 +sg25275 +S'unknown date\n' +p219599 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dd9.jpg' +p219600 +sg25267 +g27 +sa(dp219601 +g25268 +S'In the Forest (Lisiere de foret)' +p219602 +sg25270 +S'Alphonse Legros' +p219603 +sg25273 +S'etching' +p219604 +sg25275 +S'unknown date\n' +p219605 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009de0.jpg' +p219606 +sg25267 +g27 +sa(dp219607 +g25268 +S"Farm at the Monastery (La ferme de l'abbaye)" +p219608 +sg25270 +S'Alphonse Legros' +p219609 +sg25273 +S'etching and drypoint' +p219610 +sg25275 +S'unknown date\n' +p219611 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009ddb.jpg' +p219612 +sg25267 +g27 +sa(dp219613 +g25268 +S"Farm at the Monastery (La ferme de l'abbaye)" +p219614 +sg25270 +S'Alphonse Legros' +p219615 +sg25273 +S'etching' +p219616 +sg25275 +S'unknown date\n' +p219617 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dda.jpg' +p219618 +sg25267 +g27 +sa(dp219619 +g25268 +S'Lucretia' +p219620 +sg25270 +S'Jacopo Francia' +p219621 +sg25273 +S'engraving' +p219622 +sg25275 +S'c. 1510' +p219623 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbb1.jpg' +p219624 +sg25267 +g27 +sa(dp219625 +g25268 +S"Farm at the Monastery (La ferme de l'abbaye)" +p219626 +sg25270 +S'Alphonse Legros' +p219627 +sg25273 +S'etching' +p219628 +sg25275 +S'unknown date\n' +p219629 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009de3.jpg' +p219630 +sg25267 +g27 +sa(dp219631 +g25268 +S"View of a Farm Seen in a Storm (La ferme de Brieux (Effet d'orage))" +p219632 +sg25270 +S'Alphonse Legros' +p219633 +sg25273 +S'drypoint and etching?' +p219634 +sg25275 +S'unknown date\n' +p219635 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c72.jpg' +p219636 +sg25267 +g27 +sa(dp219637 +g25268 +S'Woodcutters, 3rd plate (Les bucherons)' +p219638 +sg25270 +S'Alphonse Legros' +p219639 +sg25273 +S'etching' +p219640 +sg25275 +S'unknown date\n' +p219641 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c58.jpg' +p219642 +sg25267 +g27 +sa(dp219643 +g25268 +S'Woodcutters, 3rd plate (Les bucherons)' +p219644 +sg25270 +S'Alphonse Legros' +p219645 +sg25273 +S'etching' +p219646 +sg25275 +S'unknown date\n' +p219647 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c59.jpg' +p219648 +sg25267 +g27 +sa(dp219649 +g25268 +S'Harvesters (Les moissoneurs)' +p219650 +sg25270 +S'Alphonse Legros' +p219651 +sg25273 +S'etching' +p219652 +sg25275 +S'unknown date\n' +p219653 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c65.jpg' +p219654 +sg25267 +g27 +sa(dp219655 +g25268 +S'Professor W. Cawthorne Unwin' +p219656 +sg25270 +S'Alphonse Legros' +p219657 +sg25273 +S'etching' +p219658 +sg25275 +S'unknown date\n' +p219659 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c64.jpg' +p219660 +sg25267 +g27 +sa(dp219661 +g25268 +S"Study for the Head of a Man (Etude de tete d'homme)" +p219662 +sg25270 +S'Alphonse Legros' +p219663 +sg25273 +S'drypoint and etching? on light green paper' +p219664 +sg25275 +S'unknown date\n' +p219665 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c5e.jpg' +p219666 +sg25267 +g27 +sa(dp219667 +g25268 +S'Study of an Old Man (Etude de vieillard)' +p219668 +sg25270 +S'Alphonse Legros' +p219669 +sg25273 +S'etching' +p219670 +sg25275 +S'unknown date\n' +p219671 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c4a.jpg' +p219672 +sg25267 +g27 +sa(dp219673 +g25268 +S"Study for Head of a Man (Etude de tete d'homme)" +p219674 +sg25270 +S'Alphonse Legros' +p219675 +sg25273 +S'etching and drypoint?' +p219676 +sg25275 +S'unknown date\n' +p219677 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c56.jpg' +p219678 +sg25267 +g27 +sa(dp219679 +g25268 +S'Cardinal Manning, 3rd plate' +p219680 +sg25270 +S'Alphonse Legros' +p219681 +sg25273 +S'drypoint' +p219682 +sg25275 +S'unknown date\n' +p219683 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c4d.jpg' +p219684 +sg25267 +g27 +sa(dp219685 +g25268 +S'Christ Carrying the Cross' +p219686 +sg25270 +S'Master AG' +p219687 +sg25273 +S'engraving' +p219688 +sg25275 +S'unknown date\n' +p219689 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3da.jpg' +p219690 +sg25267 +g27 +sa(dp219691 +g25268 +S'W.H. Longfellow, 1st plate' +p219692 +sg25270 +S'Alphonse Legros' +p219693 +sg25273 +S'drypoint' +p219694 +sg25275 +S'unknown date\n' +p219695 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c39.jpg' +p219696 +sg25267 +g27 +sa(dp219697 +g25268 +S'Choirmaster (Le maitre de chapelle)' +p219698 +sg25270 +S'Alphonse Legros' +p219699 +sg25273 +S'etching' +p219700 +sg25275 +S'unknown date\n' +p219701 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c2c.jpg' +p219702 +sg25267 +g27 +sa(dp219703 +g25268 +S'Self-Portrait, 4th plate' +p219704 +sg25270 +S'Alphonse Legros' +p219705 +sg25273 +S'etching and drypoint' +p219706 +sg25275 +S'unknown date\n' +p219707 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c2d.jpg' +p219708 +sg25267 +g27 +sa(dp219709 +g25268 +S'Alfred, Lord Tennyson' +p219710 +sg25270 +S'Alphonse Legros' +p219711 +sg25273 +S'lithograph' +p219712 +sg25275 +S'unknown date\n' +p219713 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c31.jpg' +p219714 +sg25267 +g27 +sa(dp219715 +g25268 +S'Cardinal Manning, 2nd plate' +p219716 +sg25270 +S'Alphonse Legros' +p219717 +sg25273 +S'lithograph' +p219718 +sg25275 +S'unknown date\n' +p219719 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c36.jpg' +p219720 +sg25267 +g27 +sa(dp219721 +g25268 +S'Beggar with Hat in Hand (Mendiant avec son chapeau a la main)' +p219722 +sg25270 +S'Alphonse Legros' +p219723 +sg25273 +S'etching and drypoint' +p219724 +sg25275 +S'unknown date\n' +p219725 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c28.jpg' +p219726 +sg25267 +g27 +sa(dp219727 +g25268 +S"The Prodigal Son, 4th plate (L'enfant prodigue)" +p219728 +sg25270 +S'Alphonse Legros' +p219729 +sg25273 +S'etching and drypoint printed in bistre' +p219730 +sg25275 +S'unknown date\n' +p219731 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c30.jpg' +p219732 +sg25267 +g27 +sa(dp219733 +g25268 +S'Old Chateau (Un vieux chateau)' +p219734 +sg25270 +S'Alphonse Legros' +p219735 +sg25273 +S'etching' +p219736 +sg25275 +S'unknown date\n' +p219737 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c26.jpg' +p219738 +sg25267 +g27 +sa(dp219739 +g25268 +S'Near the Mill (Pres du moulin)' +p219740 +sg25270 +S'Alphonse Legros' +p219741 +sg25273 +S'etching and drypoint' +p219742 +sg25275 +S'unknown date\n' +p219743 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c11.jpg' +p219744 +sg25267 +g27 +sa(dp219745 +g25268 +S'Landscape (Paysage)' +p219746 +sg25270 +S'Alphonse Legros' +p219747 +sg25273 +S'drypoint and etching' +p219748 +sg25275 +S'unknown date\n' +p219749 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c0b.jpg' +p219750 +sg25267 +g27 +sa(dp219751 +g25268 +S'The Nativity' +p219752 +sg25270 +S'Ludwig Krug' +p219753 +sg25273 +S'engraving' +p219754 +sg25275 +S'1516' +p219755 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac9a.jpg' +p219756 +sg25267 +g27 +sa(dp219757 +g25268 +S'Sleeping Beggar (Mendiant endormi)' +p219758 +sg25270 +S'Alphonse Legros' +p219759 +sg25273 +S'etching and drypoint' +p219760 +sg25275 +S'unknown date\n' +p219761 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bf8.jpg' +p219762 +sg25267 +g27 +sa(dp219763 +g25268 +S'Sleeping Beggar (Mendiant endormi)' +p219764 +sg25270 +S'Alphonse Legros' +p219765 +sg25273 +S'etching and drypoint' +p219766 +sg25275 +S'unknown date\n' +p219767 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c08.jpg' +p219768 +sg25267 +g27 +sa(dp219769 +g25268 +S'Sleeping Beggar (Mendiant endormi)' +p219770 +sg25270 +S'Alphonse Legros' +p219771 +sg25273 +S'etching and drypoint' +p219772 +sg25275 +S'unknown date\n' +p219773 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bf7.jpg' +p219774 +sg25267 +g27 +sa(dp219775 +g25268 +S'Sleeping Beggar (Mendiant endormi)' +p219776 +sg25270 +S'Alphonse Legros' +p219777 +sg25273 +S'etching and drypoint' +p219778 +sg25275 +S'unknown date\n' +p219779 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bf9.jpg' +p219780 +sg25267 +g27 +sa(dp219781 +g25268 +S'Desperate Man (Le desespere)' +p219782 +sg25270 +S'Alphonse Legros' +p219783 +sg25273 +S'drypoint and etching' +p219784 +sg25275 +S'unknown date\n' +p219785 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bfe.jpg' +p219786 +sg25267 +g27 +sa(dp219787 +g25268 +S"Poplars near Amiens (Pres d'Amiens, les tourbieres)" +p219788 +sg25270 +S'Alphonse Legros' +p219789 +sg25273 +S'drypoint and etching' +p219790 +sg25275 +S'unknown date\n' +p219791 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bf2.jpg' +p219792 +sg25267 +g27 +sa(dp219793 +g25268 +S'Old Village (Ville vieille)' +p219794 +sg25270 +S'Alphonse Legros' +p219795 +sg25273 +S'etching and drypoint?' +p219796 +sg25275 +S'unknown date\n' +p219797 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bf3.jpg' +p219798 +sg25267 +g27 +sa(dp219799 +g25268 +S'Old Village (Ville vieille)' +p219800 +sg25270 +S'Alphonse Legros' +p219801 +sg25273 +S'etching and drypoint' +p219802 +sg25275 +S'unknown date\n' +p219803 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bf4.jpg' +p219804 +sg25267 +g27 +sa(dp219805 +g25268 +S'In the Forest of Conteville (Dans la foret de Conteville)' +p219806 +sg25270 +S'Alphonse Legros' +p219807 +sg25273 +S'etching' +p219808 +sg25275 +S'unknown date\n' +p219809 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bd9.jpg' +p219810 +sg25267 +g27 +sa(dp219811 +g25268 +S'Arrivee au Marche' +p219812 +sg25270 +S'Auguste Lep\xc3\xa8re' +p219813 +sg25273 +S'black chalk on two sheets of laid paper' +p219814 +sg25275 +S'unknown date\n' +p219815 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073b5.jpg' +p219816 +sg25267 +g27 +sa(dp219817 +g25268 +S'A Young Man Seated at a Table (possibly Govaert Flinck)' +p219818 +sg25270 +S'Rembrandt van Rijn' +p219819 +sg25273 +S'oil on canvas' +p219820 +sg25275 +S'c. 1660' +p219821 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a14.jpg' +p219822 +sg25267 +g27 +sa(dp219823 +g25268 +S'Tarquin and Lucretia' +p219824 +sg25270 +S'Georg Pencz' +p219825 +sg25273 +S'engraving' +p219826 +sg25275 +S'unknown date\n' +p219827 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b08f.jpg' +p219828 +sg25267 +g27 +sa(dp219829 +g25268 +S'Spring' +p219830 +sg25270 +S'Auguste Lep\xc3\xa8re' +p219831 +sg25273 +S'charcoal and colored chalk on laid blue-gray paper' +p219832 +sg25275 +S'probably 1909' +p219833 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073b6.jpg' +p219834 +sg25267 +g27 +sa(dp219835 +g25268 +S'Saint Servan' +p219836 +sg25270 +S'Auguste Lep\xc3\xa8re' +p219837 +sg25273 +S'graphite' +p219838 +sg25275 +S'1917' +p219839 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073b4.jpg' +p219840 +sg25267 +g27 +sa(dp219841 +g25268 +S'The House of the King of Poland (Angers)' +p219842 +sg25270 +S'Auguste Lep\xc3\xa8re' +p219843 +sg25273 +S'pen and brown ink with brown wash' +p219844 +sg25275 +S'unknown date\n' +p219845 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e5a.jpg' +p219846 +sg25267 +g27 +sa(dp219847 +g25268 +S'The Departure' +p219848 +sg25270 +S'Alphonse Legros' +p219849 +sg25273 +S'pen and brown ink with brown wash over graphite on wove paper' +p219850 +sg25275 +S'1905' +p219851 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073bf.jpg' +p219852 +sg25267 +g27 +sa(dp219853 +g25268 +S'Boat in Trouble' +p219854 +sg25270 +S'Alphonse Legros' +p219855 +sg25273 +S'oil, casein coating, charcoal, and ink' +p219856 +sg25275 +S'unknown date\n' +p219857 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073c0.jpg' +p219858 +sg25267 +g27 +sa(dp219859 +g25268 +S'Study of Woman Praying' +p219860 +sg25270 +S'Alphonse Legros' +p219861 +sg25273 +S'pen and brown ink over graphite on laid paper' +p219862 +sg25275 +S'unknown date\n' +p219863 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073be.jpg' +p219864 +sg25267 +g27 +sa(dp219865 +g25268 +S'Two Monks Seated in a Church' +p219866 +sg25270 +S'Alphonse Legros' +p219867 +sg25273 +S'pen and brown ink over graphite on laid paper' +p219868 +sg25275 +S'unknown date\n' +p219869 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073ba.jpg' +p219870 +sg25267 +g27 +sa(dp219871 +g25268 +S'Peasant and Ass' +p219872 +sg25270 +S'Alphonse Legros' +p219873 +sg25273 +S'red chalk' +p219874 +sg25275 +S'unknown date\n' +p219875 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073b9.jpg' +p219876 +sg25267 +g27 +sa(dp219877 +g25268 +S'The Reapers' +p219878 +sg25270 +S'Alphonse Legros' +p219879 +sg25273 +S'graphite on white prepared paper' +p219880 +sg25275 +S'1907' +p219881 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073c1.jpg' +p219882 +sg25267 +g27 +sa(dp219883 +g25268 +S'Head of a Horse from the Antique' +p219884 +sg25270 +S'Alphonse Legros' +p219885 +sg25273 +S'goldpoint on bristol board' +p219886 +sg25275 +S'1898' +p219887 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073bc.jpg' +p219888 +sg25267 +g27 +sa(dp219889 +g25268 +S'Allegory of Envy' +p219890 +sg25270 +S'Christofano Robetta' +p219891 +sg25273 +S'engraving' +p219892 +sg25275 +S'unknown date\n' +p219893 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7b1.jpg' +p219894 +sg25267 +g27 +sa(dp219895 +g25268 +S'Study of a Workman' +p219896 +sg25270 +S'Alphonse Legros' +p219897 +sg25273 +S'graphite on brown paper' +p219898 +sg25275 +S'unknown date\n' +p219899 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073c2.jpg' +p219900 +sg25267 +g27 +sa(dp219901 +g25268 +S'Study of a Greek' +p219902 +sg25270 +S'Alphonse Legros' +p219903 +sg25273 +S'red chalk on laid paper' +p219904 +sg25275 +S'unknown date\n' +p219905 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073bd.jpg' +p219906 +sg25267 +g27 +sa(dp219907 +g25268 +S"Study of a Man's Figure, Holding Rod behind Back" +p219908 +sg25270 +S'Alphonse Legros' +p219909 +sg25273 +S'red chalk on laid paper' +p219910 +sg25275 +S'unknown date\n' +p219911 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073b7.jpg' +p219912 +sg25267 +g27 +sa(dp219913 +g25268 +S'Head of a Child' +p219914 +sg25270 +S'Alphonse Legros' +p219915 +sg25273 +S'red chalk on wove paper' +p219916 +sg25275 +S'unknown date\n' +p219917 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073bb.jpg' +p219918 +sg25267 +g27 +sa(dp219919 +g25268 +S'Head of a Man with a Skullcap' +p219920 +sg25270 +S'Alphonse Legros' +p219921 +sg25273 +S'wash over charcoal, heightened with white, on laid paper' +p219922 +sg25275 +S'unknown date\n' +p219923 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073c6.jpg' +p219924 +sg25267 +g27 +sa(dp219925 +g25268 +S'Head of a Young Man' +p219926 +sg25270 +S'Alphonse Legros' +p219927 +sg25273 +S'charcoal' +p219928 +sg25275 +S'unknown date\n' +p219929 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073c4.jpg' +p219930 +sg25267 +g27 +sa(dp219931 +g25268 +S'Study from the Antique' +p219932 +sg25270 +S'Alphonse Legros' +p219933 +sg25273 +S'graphite on blue prepared paper' +p219934 +sg25275 +S'unknown date\n' +p219935 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073cb.jpg' +p219936 +sg25267 +g27 +sa(dp219937 +g25268 +S'Woman in a Cloak' +p219938 +sg25270 +S'Alphonse Legros' +p219939 +sg25273 +S'metalpoint on blue-gray bristol board' +p219940 +sg25275 +S'unknown date\n' +p219941 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073c3.jpg' +p219942 +sg25267 +g27 +sa(dp219943 +g25268 +S'Centaur Carrying a Tree Trunk' +p219944 +sg25270 +S'Alphonse Legros' +p219945 +sg25273 +S'brown and green ink over graphite' +p219946 +sg25275 +S'unknown date\n' +p219947 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073cc.jpg' +p219948 +sg25267 +g27 +sa(dp219949 +g25268 +S'Storm' +p219950 +sg25270 +S'Alphonse Legros' +p219951 +sg25273 +S'watercolor over pen and brown ink' +p219952 +sg25275 +S'unknown date\n' +p219953 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f65.jpg' +p219954 +sg25267 +g27 +sa(dp219955 +g25268 +S'Battle of Cividale' +p219956 +sg25270 +S'Hans Leonard Sch\xc3\xa4ufelein' +p219957 +sg25273 +S'woodcut' +p219958 +sg25275 +S'unknown date\n' +p219959 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b27c.jpg' +p219960 +sg25267 +g27 +sa(dp219961 +g25268 +S'Death and the Woodcutter, 2nd plate (La mort et le bucheron)' +p219962 +sg25270 +S'Alphonse Legros' +p219963 +sg25273 +S'etching? and drypoint' +p219964 +sg25275 +S'unknown date\n' +p219965 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b2f.jpg' +p219966 +sg25267 +g27 +sa(dp219967 +g25268 +S'The Milkmaid of Boulogne' +p219968 +sg25270 +S'Alphonse Legros' +p219969 +sg25273 +S'pen and brown ink' +p219970 +sg25275 +S'unknown date\n' +p219971 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073c9.jpg' +p219972 +sg25267 +g27 +sa(dp219973 +g25268 +S'Torso' +p219974 +sg25270 +S'Alphonse Legros' +p219975 +sg25273 +S'graphite on laid paper' +p219976 +sg25275 +S'unknown date\n' +p219977 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d9f.jpg' +p219978 +sg25267 +g27 +sa(dp219979 +g25268 +S'Rest' +p219980 +sg25270 +S'Alphonse Legros' +p219981 +sg25273 +S'red chalk' +p219982 +sg25275 +S'unknown date\n' +p219983 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f94.jpg' +p219984 +sg25267 +g27 +sa(dp219985 +g25268 +S"Claude's Farm" +p219986 +sg25270 +S'Alphonse Legros' +p219987 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p219988 +sg25275 +S'unknown date\n' +p219989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073cd.jpg' +p219990 +sg25267 +g27 +sa(dp219991 +g25268 +S'Death and Its Horse' +p219992 +sg25270 +S'Alphonse Legros' +p219993 +sg25273 +S'brush and brown ink over graphite on laid paper' +p219994 +sg25275 +S'unknown date\n' +p219995 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073c8.jpg' +p219996 +sg25267 +g27 +sa(dp219997 +g25268 +S'Study of Two Figures Seated Side by Side' +p219998 +sg25270 +S'Alphonse Legros' +p219999 +sg25273 +S'red chalk' +p220000 +sg25275 +S'unknown date\n' +p220001 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073c7.jpg' +p220002 +sg25267 +g27 +sa(dp220003 +g25268 +S'Bust of Nude Man' +p220004 +sg25270 +S'Alphonse Legros' +p220005 +sg25273 +S'graphite on blue hand-prepared paper' +p220006 +sg25275 +S'unknown date\n' +p220007 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dce.jpg' +p220008 +sg25267 +g27 +sa(dp220009 +g25268 +S'After the Battle' +p220010 +sg25270 +S'Alphonse Legros' +p220011 +sg25273 +S'pen and brown ink with brown wash over graphite on brown paper' +p220012 +sg25275 +S'unknown date\n' +p220013 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073ca.jpg' +p220014 +sg25267 +g27 +sa(dp220015 +g25268 +S'The Big Tree' +p220016 +sg25270 +S'Alphonse Legros' +p220017 +sg25273 +S'pen and brown ink with brown wash over graphite on laid paper' +p220018 +sg25275 +S'unknown date\n' +p220019 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000701c.jpg' +p220020 +sg25267 +g27 +sa(dp220021 +g25268 +S'The Rest on the Flight into Egypt at a Fountain' +p220022 +sg25270 +S'Albrecht Altdorfer' +p220023 +sg25273 +S'woodcut' +p220024 +sg25275 +S'c. 1512/1515' +p220025 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b07d.jpg' +p220026 +sg25267 +g27 +sa(dp220027 +g25268 +S'Footpath in Burgundy' +p220028 +sg25270 +S'Alphonse Legros' +p220029 +sg25273 +S'pen and brown ink with brown wash over graphite on laid paper' +p220030 +sg25275 +S'unknown date\n' +p220031 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073c5.jpg' +p220032 +sg25267 +g27 +sa(dp220033 +g25268 +S'Centaur Woman' +p220034 +sg25270 +S'Alphonse Legros' +p220035 +sg25273 +S'pen and brown ink over graphite on wove paper' +p220036 +sg25275 +S'unknown date\n' +p220037 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fbf.jpg' +p220038 +sg25267 +g27 +sa(dp220039 +g25268 +S'Clap of Thunder' +p220040 +sg25270 +S'Alphonse Legros' +p220041 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p220042 +sg25275 +S'unknown date\n' +p220043 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073ef.jpg' +p220044 +sg25267 +g27 +sa(dp220045 +g25268 +S'Centaur with Branches' +p220046 +sg25270 +S'Alphonse Legros' +p220047 +sg25273 +S'pen and brown ink on wove paper' +p220048 +sg25275 +S'unknown date\n' +p220049 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000707c.jpg' +p220050 +sg25267 +g27 +sa(dp220051 +g25268 +S'Peasant at the Source' +p220052 +sg25270 +S'Alphonse Legros' +p220053 +sg25273 +S'pen and brown ink over touches of graphite on laid paper' +p220054 +sg25275 +S'unknown date\n' +p220055 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073d7.jpg' +p220056 +sg25267 +g27 +sa(dp220057 +g25268 +S'Head of a Man with Curly Hair and Beard' +p220058 +sg25270 +S'Alphonse Legros' +p220059 +sg25273 +S'graphite on laid paper' +p220060 +sg25275 +S'unknown date\n' +p220061 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073cf.jpg' +p220062 +sg25267 +g27 +sa(dp220063 +g25268 +S'Study of a Philosopher' +p220064 +sg25270 +S'Alphonse Legros' +p220065 +sg25273 +S'red chalk' +p220066 +sg25275 +S'unknown date\n' +p220067 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073d0.jpg' +p220068 +sg25267 +g27 +sa(dp220069 +g25268 +S'Head of a Man' +p220070 +sg25270 +S'Alphonse Legros' +p220071 +sg25273 +S'red chalk on laid paper' +p220072 +sg25275 +S'unknown date\n' +p220073 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073d8.jpg' +p220074 +sg25267 +g27 +sa(dp220075 +g25268 +S"Study of Woman's Head, Turned Right" +p220076 +sg25270 +S'Alphonse Legros' +p220077 +sg25273 +S'metalpoint on prepared paperboard' +p220078 +sg25275 +S'unknown date\n' +p220079 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073d6.jpg' +p220080 +sg25267 +g27 +sa(dp220081 +g25268 +S"Study of a Man's Head [recto]" +p220082 +sg25270 +S'Alphonse Legros' +p220083 +sg25273 +S'red chalk' +p220084 +sg25275 +S'unknown date\n' +p220085 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073d4.jpg' +p220086 +sg25267 +g27 +sa(dp220087 +g25268 +S'Rebecca and Eliezer (Le pont de bois)' +p220088 +sg25270 +S'Claude Lorrain' +p220089 +sg25273 +S'etching (with drypoint?)' +p220090 +sg25275 +S'c. 1638/1641' +p220091 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00089/a000890d.jpg' +p220092 +sg25267 +g27 +sa(dp220093 +g25273 +S'pen and black ink' +p220094 +sg25267 +g27 +sg25275 +S'unknown date\n' +p220095 +sg25268 +S'Male Torso [verso]' +p220096 +sg25270 +S'Alphonse Legros' +p220097 +sa(dp220098 +g25268 +S'Head of a Priest' +p220099 +sg25270 +S'Alphonse Legros' +p220100 +sg25273 +S'red chalk on laid paper' +p220101 +sg25275 +S'unknown date\n' +p220102 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000704c.jpg' +p220103 +sg25267 +g27 +sa(dp220104 +g25268 +S'Study of a Head' +p220105 +sg25270 +S'Alphonse Legros' +p220106 +sg25273 +S'red chalk' +p220107 +sg25275 +S'unknown date\n' +p220108 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073ce.jpg' +p220109 +sg25267 +g27 +sa(dp220110 +g25268 +S'Study of a Beggar' +p220111 +sg25270 +S'Alphonse Legros' +p220112 +sg25273 +S'red chalk on laid paper' +p220113 +sg25275 +S'unknown date\n' +p220114 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073d3.jpg' +p220115 +sg25267 +g27 +sa(dp220116 +g25268 +S'Head of a Man Facing Left' +p220117 +sg25270 +S'Alphonse Legros' +p220118 +sg25273 +S'graphite on laid paper' +p220119 +sg25275 +S'unknown date\n' +p220120 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d41.jpg' +p220121 +sg25267 +g27 +sa(dp220122 +g25268 +S'Study of a Head' +p220123 +sg25270 +S'Alphonse Legros' +p220124 +sg25273 +S'graphite on laid paper' +p220125 +sg25275 +S'unknown date\n' +p220126 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073d1.jpg' +p220127 +sg25267 +g27 +sa(dp220128 +g25268 +S'Head of an Old Man' +p220129 +sg25270 +S'Alphonse Legros' +p220130 +sg25273 +S'black chalk' +p220131 +sg25275 +S'unknown date\n' +p220132 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073d9.jpg' +p220133 +sg25267 +g27 +sa(dp220134 +g25268 +S'Head of a Man Facing Left [recto]' +p220135 +sg25270 +S'Alphonse Legros' +p220136 +sg25273 +S'black chalk on heavy laid paper' +p220137 +sg25275 +S'unknown date\n' +p220138 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073d2.jpg' +p220139 +sg25267 +g27 +sa(dp220140 +g25273 +S'graphite on heavy laid paper' +p220141 +sg25267 +g27 +sg25275 +S'unknown date\n' +p220142 +sg25268 +S'Jacob Wrestling the Angel (?) [verso]' +p220143 +sg25270 +S'Alphonse Legros' +p220144 +sa(dp220145 +g25268 +S'Study of a Mask' +p220146 +sg25270 +S'Alphonse Legros' +p220147 +sg25273 +S'brown and green wash, heightened with white' +p220148 +sg25275 +S'unknown date\n' +p220149 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073d5.jpg' +p220150 +sg25267 +g27 +sa(dp220151 +g25268 +S'Christ Carrying the Cross' +p220152 +sg25270 +S'Albrecht D\xc3\xbcrer' +p220153 +sg25273 +S'engraving' +p220154 +sg25275 +S'1512' +p220155 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a929.jpg' +p220156 +sg25267 +g27 +sa(dp220157 +g25268 +S'Head of a Man' +p220158 +sg25270 +S'Alphonse Legros' +p220159 +sg25273 +S'pen and brown ink on laid paper' +p220160 +sg25275 +S'unknown date\n' +p220161 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fee.jpg' +p220162 +sg25267 +g27 +sa(dp220163 +g25268 +S'Head' +p220164 +sg25270 +S'Alphonse Legros' +p220165 +sg25273 +S'black chalk on laid paper' +p220166 +sg25275 +S'1879' +p220167 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072fe.jpg' +p220168 +sg25267 +g27 +sa(dp220169 +g25268 +S'Two Studies of Hands' +p220170 +sg25270 +S'Alphonse Legros' +p220171 +sg25273 +S'graphite' +p220172 +sg25275 +S'unknown date\n' +p220173 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073e0.jpg' +p220174 +sg25267 +g27 +sa(dp220175 +g25268 +S'Head of an Old Man with a Wide-Brimmed Hat' +p220176 +sg25270 +S'Alphonse Legros' +p220177 +sg25273 +S'pen and brown ink on laid paper' +p220178 +sg25275 +S'unknown date\n' +p220179 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073de.jpg' +p220180 +sg25267 +g27 +sa(dp220181 +g25268 +S'Head of a Man Facing Left' +p220182 +sg25270 +S'Alphonse Legros' +p220183 +sg25273 +S'black crayon' +p220184 +sg25275 +S'unknown date\n' +p220185 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073e2.jpg' +p220186 +sg25267 +g27 +sa(dp220187 +g25268 +S'Head of a Bald Man with a Beard' +p220188 +sg25270 +S'Alphonse Legros' +p220189 +sg25273 +S'pen and brown ink with yellow and brown wash over graphite on laid paper' +p220190 +sg25275 +S'1906' +p220191 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073dd.jpg' +p220192 +sg25267 +g27 +sa(dp220193 +g25268 +S'At the Foot of the Hill' +p220194 +sg25270 +S'Alphonse Legros' +p220195 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p220196 +sg25275 +S'unknown date\n' +p220197 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f07.jpg' +p220198 +sg25267 +g27 +sa(dp220199 +g25268 +S'In the Marshes' +p220200 +sg25270 +S'Alphonse Legros' +p220201 +sg25273 +S'pen and brown ink with brown wash on laid paper' +p220202 +sg25275 +S'unknown date\n' +p220203 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072ff.jpg' +p220204 +sg25267 +g27 +sa(dp220205 +g25268 +S'Head of a Man' +p220206 +sg25270 +S'Alphonse Legros' +p220207 +sg25273 +S'black chalk on laid paper' +p220208 +sg25275 +S'unknown date\n' +p220209 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072fb.jpg' +p220210 +sg25267 +g27 +sa(dp220211 +g25268 +S'The Circle of the Falsifiers: Dante and Virgil Covering their Noses because of the st' +p220212 +sg25270 +S'William Blake' +p220213 +sg25273 +S'engraving' +p220214 +sg25275 +S'1827' +p220215 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076fc.jpg' +p220216 +sg25267 +g27 +sa(dp220217 +g25268 +S'The Virgin Appearing to Saint John' +p220218 +sg25270 +S'Albrecht D\xc3\xbcrer' +p220219 +sg25273 +S'woodcut' +p220220 +sg25275 +S'1510/1511' +p220221 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b141.jpg' +p220222 +sg25267 +g27 +sa(dp220223 +g25268 +S"The Circle of the Traitors; Dante's Foot Striking Bocca degli Abbate" +p220224 +sg25270 +S'William Blake' +p220225 +sg25273 +S'engraving' +p220226 +sg25275 +S'1827' +p220227 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00076/a00076f9.jpg' +p220228 +sg25267 +g27 +sa(dp220229 +g25268 +S'Monks in a Cathedral' +p220230 +sg25270 +S'Jean-Baptiste-Pierre Le Brun' +p220231 +sg25273 +S'pen and brown ink with brown wash and white heightening over graphite' +p220232 +sg25275 +S'unknown date\n' +p220233 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a000713c.jpg' +p220234 +sg25267 +g27 +sa(dp220235 +g25268 +S'Betrayal' +p220236 +sg25270 +S'German 15th Century' +p220237 +sg25273 +S'Schreiber Manuel, no. 3448' +p220238 +sg25275 +S'\nhand-colored woodcut' +p220239 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5f0.jpg' +p220240 +sg25267 +g27 +sa(dp220241 +g25268 +S'Kneeling, Small (Kniende, klein)' +p220242 +sg25270 +S'Wilhelm Lehmbruck' +p220243 +sg25273 +S'drypoint' +p220244 +sg25275 +S'1910' +p220245 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b7cb.jpg' +p220246 +sg25267 +g27 +sa(dp220247 +g25268 +S'Four Women; Three Standing, One Sitting (VierFrauen; drei stehend, eine sitzend)' +p220248 +sg25270 +S'Wilhelm Lehmbruck' +p220249 +sg25273 +S'drypoint' +p220250 +sg25275 +S'1913' +p220251 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b7cf.jpg' +p220252 +sg25267 +g27 +sa(dp220253 +g25268 +S"Woman's Dream (Der Traum des Weibes)" +p220254 +sg25270 +S'Wilhelm Lehmbruck' +p220255 +sg25273 +S'drypoint [proof]' +p220256 +sg25275 +S'1914' +p220257 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b7d2.jpg' +p220258 +sg25267 +g27 +sa(dp220259 +g25268 +S'Three Kneeling Women (Drei Frauen knied)' +p220260 +sg25270 +S'Wilhelm Lehmbruck' +p220261 +sg25273 +S'drypoint' +p220262 +sg25275 +S'1913' +p220263 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b7cc.jpg' +p220264 +sg25267 +g27 +sa(dp220265 +g25268 +S'Passion II (Leidenschaft II)' +p220266 +sg25270 +S'Wilhelm Lehmbruck' +p220267 +sg25273 +S'drypoint' +p220268 +sg25275 +S'1914' +p220269 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b7ce.jpg' +p220270 +sg25267 +g27 +sa(dp220271 +g25268 +S'Large Resurrection (Grosse Auferstehung)' +p220272 +sg25270 +S'Wilhelm Lehmbruck' +p220273 +sg25273 +S'drypoint [proof]' +p220274 +sg25275 +S'1913' +p220275 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c45d.jpg' +p220276 +sg25267 +g27 +sa(dp220277 +g25268 +S'In the Deluged Marsh - The Shepherd (Au marais inonde - Le berger)' +p220278 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220279 +sg25273 +S'etching' +p220280 +sg25275 +S'1911' +p220281 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ce6.jpg' +p220282 +sg25267 +g27 +sa(dp220283 +g25268 +S'The Martyrdom of Saint John' +p220284 +sg25270 +S'Albrecht D\xc3\xbcrer' +p220285 +sg25273 +S'woodcut' +p220286 +sg25275 +S'probably c. 1496/1498' +p220287 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b142.jpg' +p220288 +sg25267 +g27 +sa(dp220289 +g25268 +S'Rue de la Montagne-Sainte-Genevieve, Paris' +p220290 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220291 +sg25273 +S'etching, aquatint, and (drypoint?)' +p220292 +sg25275 +S'1906' +p220293 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ccf.jpg' +p220294 +sg25267 +g27 +sa(dp220295 +g25268 +S'The House of the Woodcutter, Vendee (La maison du bucheron, Vendee)' +p220296 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220297 +sg25273 +S'etching' +p220298 +sg25275 +S'1915' +p220299 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ce7.jpg' +p220300 +sg25267 +g27 +sa(dp220301 +g25268 +S'Le Christ au matin de rameaux' +p220302 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220303 +sg25273 +S'etching' +p220304 +sg25275 +S'1918' +p220305 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ce4.jpg' +p220306 +sg25267 +g27 +sa(dp220307 +g25268 +S'Jewish Quarters in Amsterdam' +p220308 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220309 +sg25273 +S'wood engraving' +p220310 +sg25275 +S'unknown date\n' +p220311 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009944.jpg' +p220312 +sg25267 +g27 +sa(dp220313 +g25268 +S'Reims Cathedral (Cathedrale de Reims)' +p220314 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220315 +sg25273 +S'etching' +p220316 +sg25275 +S'1911' +p220317 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fb5.jpg' +p220318 +sg25267 +g27 +sa(dp220319 +g25268 +S'Summer in Saint-Martin, the Past Nuptials (Ete de la Saint-Martin, la noce qui passe)' +p220320 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220321 +sg25273 +S'etching' +p220322 +sg25275 +S'1908' +p220323 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cdd.jpg' +p220324 +sg25267 +g27 +sa(dp220325 +g25268 +S'Angers - The House of the King of Poland (Angers - La maison du roi de Pologne)' +p220326 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220327 +sg25273 +S'etching' +p220328 +sg25275 +S'1912' +p220329 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009946.jpg' +p220330 +sg25267 +g27 +sa(dp220331 +g25268 +S'Path from St.-Gilles, St.-Jean-de-Monts (La route de St.-Gilles, St.-Jean-de-Monts)' +p220332 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220333 +sg25273 +S'etching' +p220334 +sg25275 +S'1911' +p220335 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ce8.jpg' +p220336 +sg25267 +g27 +sa(dp220337 +g25268 +S"Storm on the Dune, Vendee (L'orage sur la dune, Vendee)" +p220338 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220339 +sg25273 +S'etching' +p220340 +sg25275 +S'unknown date\n' +p220341 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cd7.jpg' +p220342 +sg25267 +g27 +sa(dp220343 +g25268 +S"Storm on the Dune, Vendee (L'orage sur la dune, Vendee)" +p220344 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220345 +sg25273 +S'etching' +p220346 +sg25275 +S'unknown date\n' +p220347 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cd4.jpg' +p220348 +sg25267 +g27 +sa(dp220349 +g25268 +S'The Vision of the Seven Candlesticks' +p220350 +sg25270 +S'Albrecht D\xc3\xbcrer' +p220351 +sg25273 +S'woodcut' +p220352 +sg25275 +S'probably c. 1496/1498' +p220353 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b144.jpg' +p220354 +sg25267 +g27 +sa(dp220355 +g25268 +S'Spring Tide, Rocks of Zion (Grande maree, rochers de Sion, Vendee)' +p220356 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220357 +sg25273 +S'etching' +p220358 +sg25275 +S'1907' +p220359 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cdb.jpg' +p220360 +sg25267 +g27 +sa(dp220361 +g25268 +S'The Poulterer, Vendee (Le Poulailler, Vendee)' +p220362 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220363 +sg25273 +S'etching' +p220364 +sg25275 +S'1908' +p220365 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000993e.jpg' +p220366 +sg25267 +g27 +sa(dp220367 +g25268 +S'Shelter for the Poor, Vendee (Le nid de pauvres, Vendee)' +p220368 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220369 +sg25273 +S'etching' +p220370 +sg25275 +S'1909' +p220371 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cde.jpg' +p220372 +sg25267 +g27 +sa(dp220373 +g25268 +S'Provins (Seine et Marne)' +p220374 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220375 +sg25273 +S'etching' +p220376 +sg25275 +S'1910' +p220377 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ce3.jpg' +p220378 +sg25267 +g27 +sa(dp220379 +g25268 +S'Provins (Seine et Marne)' +p220380 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220381 +sg25273 +S'etching' +p220382 +sg25275 +S'1910' +p220383 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ce2.jpg' +p220384 +sg25267 +g27 +sa(dp220385 +g25268 +S'Old Houses at Amiens (Vieilles maisons a Amiens)' +p220386 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220387 +sg25273 +S'etching on light green paper' +p220388 +sg25275 +S'1907' +p220389 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009942.jpg' +p220390 +sg25267 +g27 +sa(dp220391 +g25268 +S'The Falling Balloon, in Pre-Saint-Gervais (Lebaloon qui tombe, au Pre-Saint-Gervais)' +p220392 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220393 +sg25273 +S'etching' +p220394 +sg25275 +S'1910' +p220395 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009940.jpg' +p220396 +sg25267 +g27 +sa(dp220397 +g25268 +S'Route from La Houssoye, Crevecoeur-le-Grand (Route de La Houssoye, Crevecoeur)' +p220398 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220399 +sg25273 +S'etching' +p220400 +sg25275 +S'1913' +p220401 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ce0.jpg' +p220402 +sg25267 +g27 +sa(dp220403 +g25268 +S"Wreckers, Saint-Jean-de-Monts (Pilleurs d'epaves, Saint-Jean-de-Monts)" +p220404 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220405 +sg25273 +S'etching' +p220406 +sg25275 +S'1915' +p220407 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cdf.jpg' +p220408 +sg25267 +g27 +sa(dp220409 +g25268 +S'Pastime of Rest, Vendee (Le jeu du reposoir, Vendee)' +p220410 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220411 +sg25273 +S'etching' +p220412 +sg25275 +S'unknown date\n' +p220413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ce1.jpg' +p220414 +sg25267 +g27 +sa(dp220415 +g25268 +S'The Adoration of the Lamb' +p220416 +sg25270 +S'Albrecht D\xc3\xbcrer' +p220417 +sg25273 +S'woodcut' +p220418 +sg25275 +S'probably c. 1496/1498' +p220419 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b118.jpg' +p220420 +sg25267 +g27 +sa(dp220421 +g25268 +S'Old Foot-bridge, Banks of the Small Morin (Vieille passerelle, bords du petit morin)' +p220422 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220423 +sg25273 +S'etching' +p220424 +sg25275 +S'1915' +p220425 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ce5.jpg' +p220426 +sg25267 +g27 +sa(dp220427 +g25268 +S'Souvenir of St. Denis (Souvenir de Saint-Denis)' +p220428 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220429 +sg25273 +S'etching' +p220430 +sg25275 +S'unknown date\n' +p220431 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000993f.jpg' +p220432 +sg25267 +g27 +sa(dp220433 +g25268 +S"Amiens Cathedral (Cathedrale d'Amiens - Jour d'inventaire)" +p220434 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220435 +sg25273 +S'etching' +p220436 +sg25275 +S'1907' +p220437 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cdc.jpg' +p220438 +sg25267 +g27 +sa(dp220439 +g25268 +S'The Great Apple Market (Le grand marche aux pommes)' +p220440 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220441 +sg25273 +S'etching' +p220442 +sg25275 +S'1917' +p220443 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fb8.jpg' +p220444 +sg25267 +g27 +sa(dp220445 +g25268 +S'Angers - Panoramic View (Angers - Vue panoramique)' +p220446 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220447 +sg25273 +S'etching' +p220448 +sg25275 +S'1912' +p220449 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fbe.jpg' +p220450 +sg25267 +g27 +sa(dp220451 +g25268 +S'Clisson (Lower Loire)' +p220452 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220453 +sg25273 +S'etching' +p220454 +sg25275 +S'1909' +p220455 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cd0.jpg' +p220456 +sg25267 +g27 +sa(dp220457 +g25268 +S'Banks of the Somme at Amiens (Bords de la Somme a Amiens)' +p220458 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220459 +sg25273 +S'etching and aquatint' +p220460 +sg25275 +S'1907' +p220461 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009943.jpg' +p220462 +sg25267 +g27 +sa(dp220463 +g25268 +S"Watering-place behind Notre-Dame (L'abreuvoirderriere Notre-Dame)" +p220464 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220465 +sg25273 +S'wood engraving' +p220466 +sg25275 +S'1897' +p220467 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000993d.jpg' +p220468 +sg25267 +g27 +sa(dp220469 +g25268 +S'Unloading, Canal St. Martin (Les dechargeurs de platre, Canal Saint-Martin)' +p220470 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220471 +sg25273 +S'wood engraving' +p220472 +sg25275 +S'1890' +p220473 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000993b.jpg' +p220474 +sg25267 +g27 +sa(dp220475 +g25268 +S"Les Fauteuils d'orchestre" +p220476 +sg25270 +S'Artist Information (' +p220477 +sg25273 +S'(artist after)' +p220478 +sg25275 +S'\n' +p220479 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a97.jpg' +p220480 +sg25267 +g27 +sa(dp220481 +g25268 +S'A Polish Nobleman' +p220482 +sg25270 +S'Rembrandt van Rijn' +p220483 +sg25273 +S'oil on panel' +p220484 +sg25275 +S'1637' +p220485 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f39.jpg' +p220486 +sg25267 +S"Rembrandt van Rijn began his career in his native city of Leiden, but moved\nto Amsterdam around 1631. He immediately established himself as the foremost artist\nin the city and was sought after as a portrait painter as well as for his depictions\nof biblical and mythological subjects.\n A Polish Nobleman\n These paintings allowed Rembrandt to expand the limits of portraiture because he\nwas not constrained by traditional conventions. He often used these fanciful portraits\nas a means of evoking aspects of human psychology. Through his dramatic accents\nof light and dark on the sitter's face, his bold brushwork, and dense application\nof paint, he created a powerful, almost sculptural presence; but by emphasizing\nthe sitter's furrowed brow and by shading his heavy, forlorn eyes, Rembrandt suggested\na deeply pensive personality.\n " +p220487 +sa(dp220488 +g25268 +S'The Seven Angels with the Trumpets' +p220489 +sg25270 +S'Albrecht D\xc3\xbcrer' +p220490 +sg25273 +S'woodcut' +p220491 +sg25275 +S'probably c. 1496/1498' +p220492 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b149.jpg' +p220493 +sg25267 +g27 +sa(dp220494 +g25268 +S'Pont Neuf' +p220495 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220496 +sg25273 +S'etching' +p220497 +sg25275 +S'1901' +p220498 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cda.jpg' +p220499 +sg25267 +g27 +sa(dp220500 +g25268 +S'Return of the Procession to Nante Cathedral (Rentree de la Procession a la Cathedral de Nantes)' +p220501 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220502 +sg25273 +S'etching with drypoint' +p220503 +sg25275 +S'1901' +p220504 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cd9.jpg' +p220505 +sg25267 +g27 +sa(dp220506 +g25268 +S'Amsterdam Seen from Victoria Hotel (Amsterdamvue de Victoria Hotel)' +p220507 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220508 +sg25273 +S'etching with drypoint' +p220509 +sg25275 +S'1901' +p220510 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cd5.jpg' +p220511 +sg25267 +g27 +sa(dp220512 +g25268 +S"American Quarries, near Paris (Carrieres d'Amerique, pres Paris)" +p220513 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220514 +sg25273 +S'etching' +p220515 +sg25275 +S'1898' +p220516 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cd1.jpg' +p220517 +sg25267 +g27 +sa(dp220518 +g25268 +S'Bridge of Arts (Le pont des Arts)' +p220519 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220520 +sg25273 +S'etching' +p220521 +sg25275 +S'1890' +p220522 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cd8.jpg' +p220523 +sg25267 +g27 +sa(dp220524 +g25268 +S'Gobelins Quarter (Le quartier des Gobelins)' +p220525 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220526 +sg25273 +S'etching with aquatint' +p220527 +sg25275 +S'1893' +p220528 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cd2.jpg' +p220529 +sg25267 +g27 +sa(dp220530 +g25268 +S'Gobelins Quarter (Le quartier des Gobelins)' +p220531 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220532 +sg25273 +S'etching with aquatint' +p220533 +sg25275 +S'1893' +p220534 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cd3.jpg' +p220535 +sg25267 +g27 +sa(dp220536 +g25268 +S'Dockman, Pier at La Gare (Le debardeur, quai de La Gare)' +p220537 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220538 +sg25273 +S'etching with aquatint and drypoint' +p220539 +sg25275 +S'1894' +p220540 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d82.jpg' +p220541 +sg25267 +g27 +sa(dp220542 +g25268 +S'Under the Bridge of Bercy (Sous le pont de Bercy)' +p220543 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220544 +sg25273 +S'etching and aquatint' +p220545 +sg25275 +S'1894' +p220546 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000992c.jpg' +p220547 +sg25267 +g27 +sa(dp220548 +g25268 +S'Reclined Woman Sleeping (Femme couchee sommeillant)' +p220549 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220550 +sg25273 +S'etching with drypoint' +p220551 +sg25275 +S'1892' +p220552 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000992e.jpg' +p220553 +sg25267 +g27 +sa(dp220554 +g25268 +S'Saint John Devouring the Book' +p220555 +sg25270 +S'Albrecht D\xc3\xbcrer' +p220556 +sg25273 +S'woodcut' +p220557 +sg25275 +S'probably c. 1496/1498' +p220558 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b117.jpg' +p220559 +sg25267 +g27 +sa(dp220560 +g25268 +S'View of St.-Jean-de-Mont, Vendee (Vue de St.-Jean-de-Mont, Vendee)' +p220561 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220562 +sg25273 +S'etching and aquatint' +p220563 +sg25275 +S'1892' +p220564 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d7d.jpg' +p220565 +sg25267 +g27 +sa(dp220566 +g25268 +S'Departure for Greenwich (Depart pour Greenwich)' +p220567 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220568 +sg25273 +S'etching' +p220569 +sg25275 +S'1891' +p220570 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000992f.jpg' +p220571 +sg25267 +g27 +sa(dp220572 +g25268 +S'Departure for Greenwich (Depart pour Greenwich)' +p220573 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220574 +sg25273 +S'etching retouched with graphite' +p220575 +sg25275 +S'1891' +p220576 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009930.jpg' +p220577 +sg25267 +g27 +sa(dp220578 +g25268 +S'Departure for Greenwich (Depart pour Greenwich)' +p220579 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220580 +sg25273 +S'etching and aquatint' +p220581 +sg25275 +S'1891' +p220582 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009931.jpg' +p220583 +sg25267 +g27 +sa(dp220584 +g25268 +S'Departure for Greenwich (Depart pour Greenwich)' +p220585 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220586 +sg25273 +S'etching, aquatint, and drypoint' +p220587 +sg25275 +S'1891' +p220588 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009932.jpg' +p220589 +sg25267 +g27 +sa(dp220590 +g25268 +S'Pier of Bercy (Embarcadere, quai de Bercy)' +p220591 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220592 +sg25273 +S'etching and drypoint in brown' +p220593 +sg25275 +S'1891' +p220594 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d81.jpg' +p220595 +sg25267 +g27 +sa(dp220596 +g25268 +S'The Wash-house (Le lavoir)' +p220597 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220598 +sg25273 +S'etching in brown on buff paper' +p220599 +sg25275 +S'1891' +p220600 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000992d.jpg' +p220601 +sg25267 +g27 +sa(dp220602 +g25268 +S'The Wash-house (Le lavoir)' +p220603 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220604 +sg25273 +S'etching [touched proof]' +p220605 +sg25275 +S'1891' +p220606 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d80.jpg' +p220607 +sg25267 +g27 +sa(dp220608 +g25268 +S'Les toits de Saint-Severin' +p220609 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220610 +sg25273 +S'etching' +p220611 +sg25275 +S'1889' +p220612 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d7f.jpg' +p220613 +sg25267 +g27 +sa(dp220614 +g25268 +S'Images (Les images)' +p220615 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220616 +sg25273 +S'drypoint' +p220617 +sg25275 +S'1889' +p220618 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d7e.jpg' +p220619 +sg25267 +g27 +sa(dp220620 +g25268 +S'The Babylonian Whore' +p220621 +sg25270 +S'Albrecht D\xc3\xbcrer' +p220622 +sg25273 +S'woodcut' +p220623 +sg25275 +S'probably c. 1496/1498' +p220624 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b119.jpg' +p220625 +sg25267 +g27 +sa(dp220626 +g25268 +S'Images (Les images)' +p220627 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220628 +sg25273 +S'drypoint' +p220629 +sg25275 +S'1889' +p220630 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d83.jpg' +p220631 +sg25267 +g27 +sa(dp220632 +g25268 +S'Sur la Seine, la nuit' +p220633 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220634 +sg25273 +S'etching and drypoint' +p220635 +sg25275 +S'1888' +p220636 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d7c.jpg' +p220637 +sg25267 +g27 +sa(dp220638 +g25268 +S'The Great Apple Market (Le grand marche aux pommes)' +p220639 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220640 +sg25273 +S'etching' +p220641 +sg25275 +S'1891' +p220642 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fb6.jpg' +p220643 +sg25267 +g27 +sa(dp220644 +g25268 +S'Paris under Snow, View from St.-Gervais (Paris sous la neige, vu du haut de St.-Gervaais)' +p220645 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220646 +sg25273 +S'wood engraving' +p220647 +sg25275 +S'1890' +p220648 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fb7.jpg' +p220649 +sg25267 +g27 +sa(dp220650 +g25268 +S'Corpus Christi Procession at Nantes (Procession de la Fete Dieu a Nantes)' +p220651 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220652 +sg25273 +S'woodcut' +p220653 +sg25275 +S'1901' +p220654 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fbf.jpg' +p220655 +sg25267 +g27 +sa(dp220656 +g25268 +S"Parliament at 9 o'Clock in the Evening - London (Le parlement a 9 heures du soir - Londres)" +p220657 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220658 +sg25273 +S'wood engraving' +p220659 +sg25275 +S'1890' +p220660 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fbb.jpg' +p220661 +sg25267 +g27 +sa(dp220662 +g25268 +S'Rouen Cathedral (La Cathedral de Rouen)' +p220663 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220664 +sg25273 +S'wood engraving' +p220665 +sg25275 +S'1888' +p220666 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fb9.jpg' +p220667 +sg25267 +g27 +sa(dp220668 +g25268 +S'Burial in the Vendeen Marsh (Un enterrement dans le marais Vendeen)' +p220669 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220670 +sg25273 +S'etching' +p220671 +sg25275 +S'1901' +p220672 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fbd.jpg' +p220673 +sg25267 +g27 +sa(dp220674 +g25268 +S'Burial in the Vendeen Marsh (Un enterrement dans le marais Vendeen)' +p220675 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220676 +sg25273 +S'etching' +p220677 +sg25275 +S'1901' +p220678 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fba.jpg' +p220679 +sg25267 +g27 +sa(dp220680 +g25268 +S'Poultry Market at St.-Jean-de-Mont (Marche a la volaille, a St.-Jean-de-Mont)' +p220681 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220682 +sg25273 +S'etching, with aquatint and drypoint' +p220683 +sg25275 +S'1892' +p220684 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d7b.jpg' +p220685 +sg25267 +g27 +sa(dp220686 +g25268 +S'The Holy Family with Two Angels in a Vaulted Hall' +p220687 +sg25270 +S'Albrecht D\xc3\xbcrer' +p220688 +sg25273 +S'woodcut' +p220689 +sg25275 +S'c. 1504' +p220690 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a973.jpg' +p220691 +sg25267 +g27 +sa(dp220692 +g25268 +S'Rue de Jouy le Comte' +p220693 +sg25270 +S'Auguste Lep\xc3\xa8re' +p220694 +sg25273 +S'watercolor' +p220695 +sg25275 +S'probably 1880' +p220696 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e8b.jpg' +p220697 +sg25267 +g27 +sa(dp220698 +g25268 +S'David Playing the Harp before Saul' +p220699 +sg25270 +S'Lucas van Leyden' +p220700 +sg25273 +S'engraving' +p220701 +sg25275 +S'c. 1508' +p220702 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfff.jpg' +p220703 +sg25267 +g27 +sa(dp220704 +g25268 +S'Lot and His Daughters' +p220705 +sg25270 +S'Lucas van Leyden' +p220706 +sg25273 +S'engraving' +p220707 +sg25275 +S'1530' +p220708 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d000.jpg' +p220709 +sg25267 +g27 +sa(dp220710 +g25268 +S'Abraham and the Three Angels' +p220711 +sg25270 +S'Lucas van Leyden' +p220712 +sg25273 +S'engraving' +p220713 +sg25275 +S'c. 1513' +p220714 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce51.jpg' +p220715 +sg25267 +g27 +sa(dp220716 +g25268 +S'The Fall of Man' +p220717 +sg25270 +S'Lucas van Leyden' +p220718 +sg25273 +S'engraving' +p220719 +sg25275 +S'c. 1530' +p220720 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d001.jpg' +p220721 +sg25267 +g27 +sa(dp220722 +g25268 +S'The Fall of Man' +p220723 +sg25270 +S'Lucas van Leyden' +p220724 +sg25273 +S'engraving' +p220725 +sg25275 +S'c. 1530' +p220726 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d002.jpg' +p220727 +sg25267 +g27 +sa(dp220728 +g25268 +S'Christ Crowned with Thorns' +p220729 +sg25270 +S'Lucas van Leyden' +p220730 +sg25273 +S'engraving' +p220731 +sg25275 +S'1509' +p220732 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d004.jpg' +p220733 +sg25267 +g27 +sa(dp220734 +g25268 +S'The Flagellation' +p220735 +sg25270 +S'Lucas van Leyden' +p220736 +sg25273 +S'engraving' +p220737 +sg25275 +S'1509' +p220738 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d005.jpg' +p220739 +sg25267 +g27 +sa(dp220740 +g25268 +S'The Scoffing of Christ' +p220741 +sg25270 +S'Lucas van Leyden' +p220742 +sg25273 +S'engraving' +p220743 +sg25275 +S'1509' +p220744 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d006.jpg' +p220745 +sg25267 +g27 +sa(dp220746 +g25268 +S'Shere Mill Pond (The Larger Plate)' +p220747 +sg25270 +S'Francis Seymour Haden' +p220748 +sg25273 +S'etching with drypoint' +p220749 +sg25275 +S'in or after 1860' +p220750 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d1d.jpg' +p220751 +sg25267 +g27 +sa(dp220752 +g25268 +S'Christ before Annas' +p220753 +sg25270 +S'Lucas van Leyden' +p220754 +sg25273 +S'engraving' +p220755 +sg25275 +S'1509' +p220756 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d007.jpg' +p220757 +sg25267 +g27 +sa(dp220758 +g25268 +S'The Captivity' +p220759 +sg25270 +S'Lucas van Leyden' +p220760 +sg25273 +S'engraving' +p220761 +sg25275 +S'1509' +p220762 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d008.jpg' +p220763 +sg25267 +g27 +sa(dp220764 +g25268 +S'Christ in Gethsemane (Agony in the Garden)' +p220765 +sg25270 +S'Lucas van Leyden' +p220766 +sg25273 +S'engraving' +p220767 +sg25275 +S'1509' +p220768 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d009.jpg' +p220769 +sg25267 +g27 +sa(dp220770 +g25268 +S'The Baptism of Christ in the Jordan' +p220771 +sg25270 +S'Lucas van Leyden' +p220772 +sg25273 +S'engraving' +p220773 +sg25275 +S'c. 1510' +p220774 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce56.jpg' +p220775 +sg25267 +g27 +sa(dp220776 +g25268 +S'The Adoration of the Magi' +p220777 +sg25270 +S'Lucas van Leyden' +p220778 +sg25273 +S'engraving' +p220779 +sg25275 +S'1513' +p220780 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001d/a0001dec.jpg' +p220781 +sg25267 +g27 +sa(dp220782 +g25268 +S'The Triumph of Mordecai' +p220783 +sg25270 +S'Lucas van Leyden' +p220784 +sg25273 +S'engraving' +p220785 +sg25275 +S'1515' +p220786 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cffb.jpg' +p220787 +sg25267 +g27 +sa(dp220788 +g25268 +S'Esther before Ahasuerus' +p220789 +sg25270 +S'Lucas van Leyden' +p220790 +sg25273 +S'engraving' +p220791 +sg25275 +S'1518' +p220792 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cffa.jpg' +p220793 +sg25267 +g27 +sa(dp220794 +g25268 +S"Solomon's Idolatry" +p220795 +sg25270 +S'Lucas van Leyden' +p220796 +sg25273 +S'engraving' +p220797 +sg25275 +S'1514' +p220798 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce55.jpg' +p220799 +sg25267 +g27 +sa(dp220800 +g25268 +S'Spes (Hope)' +p220801 +sg25270 +S'Lucas van Leyden' +p220802 +sg25273 +S'engraving' +p220803 +sg25275 +S'1530' +p220804 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce7f.jpg' +p220805 +sg25267 +g27 +sa(dp220806 +g25268 +S'Fides (Faith)' +p220807 +sg25270 +S'Lucas van Leyden' +p220808 +sg25273 +S'engraving' +p220809 +sg25275 +S'1530' +p220810 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce81.jpg' +p220811 +sg25267 +g27 +sa(dp220812 +g25268 +S'The Virgin and Child with the Cat and Snake' +p220813 +sg25270 +S'Rembrandt van Rijn' +p220814 +sg25273 +S'etching' +p220815 +sg25275 +S'1654' +p220816 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005656.jpg' +p220817 +sg25267 +g27 +sa(dp220818 +g25268 +S'Mahomet and the Monk Sergius' +p220819 +sg25270 +S'Lucas van Leyden' +p220820 +sg25273 +S'engraving' +p220821 +sg25275 +S'1508' +p220822 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f3e.jpg' +p220823 +sg25267 +g27 +sa(dp220824 +g25268 +S'The Dance of Saint Mary Magdalene' +p220825 +sg25270 +S'Lucas van Leyden' +p220826 +sg25273 +S'engraving' +p220827 +sg25275 +S'1519' +p220828 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d043.jpg' +p220829 +sg25267 +g27 +sa(dp220830 +g25268 +S'The Temptation of Saint Anthony' +p220831 +sg25270 +S'Lucas van Leyden' +p220832 +sg25273 +S'engraving' +p220833 +sg25275 +S'1509' +p220834 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce82.jpg' +p220835 +sg25267 +g27 +sa(dp220836 +g25268 +S'Golgotha' +p220837 +sg25270 +S'Lucas van Leyden' +p220838 +sg25273 +S'engraving' +p220839 +sg25275 +S'1517' +p220840 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f49.jpg' +p220841 +sg25267 +g27 +sa(dp220842 +g25268 +S'Christ Crowned with Thorns' +p220843 +sg25270 +S'Lucas van Leyden' +p220844 +sg25273 +S'engraving' +p220845 +sg25275 +S'1519' +p220846 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce6a.jpg' +p220847 +sg25267 +g27 +sa(dp220848 +g25268 +S'Christ at the Mount of Olives' +p220849 +sg25270 +S'Lucas van Leyden' +p220850 +sg25273 +S', 1520' +p220851 +sg25275 +S'\n' +p220852 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d047.jpg' +p220853 +sg25267 +g27 +sa(dp220854 +g25268 +S'The Crucifixion' +p220855 +sg25270 +S'Lucas van Leyden' +p220856 +sg25273 +S'engraving' +p220857 +sg25275 +S'1509' +p220858 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d00a.jpg' +p220859 +sg25267 +g27 +sa(dp220860 +g25268 +S'Christ Carrying the Cross' +p220861 +sg25270 +S'Lucas van Leyden' +p220862 +sg25273 +S'engraving' +p220863 +sg25275 +S'1509' +p220864 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d00b.jpg' +p220865 +sg25267 +g27 +sa(dp220866 +g25268 +S'Ecce Homo' +p220867 +sg25270 +S'Lucas van Leyden' +p220868 +sg25273 +S'engraving' +p220869 +sg25275 +S'1509' +p220870 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d003.jpg' +p220871 +sg25267 +g27 +sa(dp220872 +g25268 +S'Christ and the Woman of Samaria: an Arched Print' +p220873 +sg25270 +S'Rembrandt van Rijn' +p220874 +sg25273 +S'etching and drypoint' +p220875 +sg25275 +S'1658' +p220876 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00056/a0005661.jpg' +p220877 +sg25267 +g27 +sa(dp220878 +g25268 +S'The Savior and the Virgin' +p220879 +sg25270 +S'Artist Information (' +p220880 +sg25273 +S'(artist after)' +p220881 +sg25275 +S'\n' +p220882 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d207.jpg' +p220883 +sg25267 +g27 +sa(dp220884 +g25268 +S'Self-Portrait' +p220885 +sg25270 +S'Artist Information (' +p220886 +sg25273 +S'Netherlandish, 1489/1494 - 1533' +p220887 +sg25275 +S'(related artist)' +p220888 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce99.jpg' +p220889 +sg25267 +g27 +sa(dp220890 +g25268 +S'Emperor Maximilian I' +p220891 +sg25270 +S'Lucas van Leyden' +p220892 +sg25273 +S'engraving and etching' +p220893 +sg25275 +S'1520' +p220894 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d044.jpg' +p220895 +sg25267 +g27 +sa(dp220896 +g25268 +S'Venus and Cupid' +p220897 +sg25270 +S'Lucas van Leyden' +p220898 +sg25273 +S'engraving' +p220899 +sg25275 +S'1528' +p220900 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce84.jpg' +p220901 +sg25267 +g27 +sa(dp220902 +g25268 +S'Mars, Venus, and Cupid' +p220903 +sg25270 +S'Lucas van Leyden' +p220904 +sg25273 +S'engraving' +p220905 +sg25275 +S'1530' +p220906 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d046.jpg' +p220907 +sg25267 +g27 +sa(dp220908 +g25268 +S'Temperancia (Temperance)' +p220909 +sg25270 +S'Lucas van Leyden' +p220910 +sg25273 +S'engraving' +p220911 +sg25275 +S'1530' +p220912 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce7b.jpg' +p220913 +sg25267 +g27 +sa(dp220914 +g25268 +S'Justicia (Justice)' +p220915 +sg25270 +S'Lucas van Leyden' +p220916 +sg25273 +S'engraving' +p220917 +sg25275 +S'1530' +p220918 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce7c.jpg' +p220919 +sg25267 +g27 +sa(dp220920 +g25268 +S'Prudencia (Prudence)' +p220921 +sg25270 +S'Lucas van Leyden' +p220922 +sg25273 +S'engraving' +p220923 +sg25275 +S'1530' +p220924 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce7d.jpg' +p220925 +sg25267 +g27 +sa(dp220926 +g25268 +S'Caritas (Charity)' +p220927 +sg25270 +S'Lucas van Leyden' +p220928 +sg25273 +S'engraving' +p220929 +sg25275 +S'1530' +p220930 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce7e.jpg' +p220931 +sg25267 +g27 +sa(dp220932 +g25268 +S'Return of the Prodigal Son' +p220933 +sg25270 +S'Rembrandt van Rijn' +p220934 +sg25273 +S'etching' +p220935 +sg25275 +S'1636' +p220936 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2f8.jpg' +p220937 +sg25267 +g27 +sa(dp220938 +g25268 +S'Saint John' +p220939 +sg25270 +S'Lucas van Leyden' +p220940 +sg25273 +S'engraving' +p220941 +sg25275 +S'1518' +p220942 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce6d.jpg' +p220943 +sg25267 +g27 +sa(dp220944 +g25268 +S'Saint Luke' +p220945 +sg25270 +S'Lucas van Leyden' +p220946 +sg25273 +S'engraving' +p220947 +sg25275 +S'1518' +p220948 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce6e.jpg' +p220949 +sg25267 +g27 +sa(dp220950 +g25268 +S'The Virgin and Child with Two Angels' +p220951 +sg25270 +S'Lucas van Leyden' +p220952 +sg25273 +S'engraving' +p220953 +sg25275 +S'1523' +p220954 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce69.jpg' +p220955 +sg25267 +g27 +sa(dp220956 +g25268 +S'The Virgin and Child on the Crescent' +p220957 +sg25270 +S'Lucas van Leyden' +p220958 +sg25273 +S'engraving' +p220959 +sg25275 +S'1523' +p220960 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce65.jpg' +p220961 +sg25267 +g27 +sa(dp220962 +g25268 +S'The Virgin in the Niche' +p220963 +sg25270 +S'Lucas van Leyden' +p220964 +sg25273 +S'engraving' +p220965 +sg25275 +S'c. 1518' +p220966 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce64.jpg' +p220967 +sg25267 +g27 +sa(dp220968 +g25268 +S'The Virgin and Saint Anna' +p220969 +sg25270 +S'Lucas van Leyden' +p220970 +sg25273 +S'engraving' +p220971 +sg25275 +S'1516' +p220972 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce61.jpg' +p220973 +sg25267 +g27 +sa(dp220974 +g25268 +S'Ecce Homo' +p220975 +sg25270 +S'Lucas van Leyden' +p220976 +sg25273 +S'engraving' +p220977 +sg25275 +S'c. 1513' +p220978 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce62.jpg' +p220979 +sg25267 +g27 +sa(dp220980 +g25268 +S'Ecce Homo' +p220981 +sg25270 +S'Lucas van Leyden' +p220982 +sg25273 +S'engraving' +p220983 +sg25275 +S'1521' +p220984 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce5f.jpg' +p220985 +sg25267 +g27 +sa(dp220986 +g25268 +S'The Last Supper' +p220987 +sg25270 +S'Lucas van Leyden' +p220988 +sg25273 +S'engraving' +p220989 +sg25275 +S'1521' +p220990 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce5e.jpg' +p220991 +sg25267 +g27 +sa(dp220992 +g25268 +S'Saint Joachim Embracing Saint Anna' +p220993 +sg25270 +S'Lucas van Leyden' +p220994 +sg25273 +S'engraving' +p220995 +sg25275 +S'1520' +p220996 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce5b.jpg' +p220997 +sg25267 +g27 +sa(dp220998 +g25268 +S'The Artist Drawing from the Model' +p220999 +sg25270 +S'Rembrandt van Rijn' +p221000 +sg25273 +S'etching, drypoint and burin' +p221001 +sg25275 +S'c. 1639' +p221002 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d549.jpg' +p221003 +sg25267 +g27 +sa(dp221004 +g25268 +S'David Praying' +p221005 +sg25270 +S'Lucas van Leyden' +p221006 +sg25273 +S'engraving' +p221007 +sg25275 +S'c. 1508' +p221008 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce59.jpg' +p221009 +sg25267 +g27 +sa(dp221010 +g25268 +S'Joseph Interprets the Dreams in Prison' +p221011 +sg25270 +S'Lucas van Leyden' +p221012 +sg25273 +S'engraving' +p221013 +sg25275 +S'1512' +p221014 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce58.jpg' +p221015 +sg25267 +g27 +sa(dp221016 +g25268 +S"Potiphar's Wife Accusing Joseph" +p221017 +sg25270 +S'Lucas van Leyden' +p221018 +sg25273 +S'engraving' +p221019 +sg25275 +S'1512' +p221020 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce57.jpg' +p221021 +sg25267 +g27 +sa(dp221022 +g25268 +S"Joseph Escaping Potiphar's Wife" +p221023 +sg25270 +S'Lucas van Leyden' +p221024 +sg25273 +S'engraving' +p221025 +sg25275 +S'1512' +p221026 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce53.jpg' +p221027 +sg25267 +g27 +sa(dp221028 +g25268 +S'Joseph Interprets His Dream to Jacob' +p221029 +sg25270 +S'Lucas van Leyden' +p221030 +sg25273 +S'engraving' +p221031 +sg25275 +S'1512' +p221032 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce54.jpg' +p221033 +sg25267 +g27 +sa(dp221034 +g25268 +S'Abraham Repudiating Hagar' +p221035 +sg25270 +S'Lucas van Leyden' +p221036 +sg25273 +S'engraving' +p221037 +sg25275 +S'1516' +p221038 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce4a.jpg' +p221039 +sg25267 +g27 +sa(dp221040 +g25268 +S'The Fall of Man' +p221041 +sg25270 +S'Lucas van Leyden' +p221042 +sg25273 +S'engraving' +p221043 +sg25275 +S'1529' +p221044 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce49.jpg' +p221045 +sg25267 +g27 +sa(dp221046 +g25268 +S'Adam and Eve Lamenting the Death of Abel' +p221047 +sg25270 +S'Lucas van Leyden' +p221048 +sg25273 +S'engraving' +p221049 +sg25275 +S'1529' +p221050 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce4f.jpg' +p221051 +sg25267 +g27 +sa(dp221052 +g25268 +S'Cain Killing Abel' +p221053 +sg25270 +S'Lucas van Leyden' +p221054 +sg25273 +S'engraving' +p221055 +sg25275 +S'1529' +p221056 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce4e.jpg' +p221057 +sg25267 +g27 +sa(dp221058 +g25268 +S'Landscape with a Cottage and a Large Tree' +p221059 +sg25270 +S'Rembrandt van Rijn' +p221060 +sg25273 +S'etching' +p221061 +sg25275 +S'1641' +p221062 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d552.jpg' +p221063 +sg25267 +g27 +sa(dp221064 +g25268 +S'The Explusion from Paradise' +p221065 +sg25270 +S'Lucas van Leyden' +p221066 +sg25273 +S'engraving' +p221067 +sg25275 +S'1529' +p221068 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce4d.jpg' +p221069 +sg25267 +g27 +sa(dp221070 +g25268 +S'The Fall of Man' +p221071 +sg25270 +S'Lucas van Leyden' +p221072 +sg25273 +S'engraving' +p221073 +sg25275 +S'1529' +p221074 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce4c.jpg' +p221075 +sg25267 +g27 +sa(dp221076 +g25268 +S'The First Prohibition' +p221077 +sg25270 +S'Lucas van Leyden' +p221078 +sg25273 +S'engraving' +p221079 +sg25275 +S'1529' +p221080 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce4b.jpg' +p221081 +sg25267 +g27 +sa(dp221082 +g25268 +S'The Pilgrims' +p221083 +sg25270 +S'Lucas van Leyden' +p221084 +sg25273 +S'engraving' +p221085 +sg25275 +S'in or before 1508' +p221086 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce83.jpg' +p221087 +sg25267 +g27 +sa(dp221088 +g25268 +S'The Fool and the Woman' +p221089 +sg25270 +S'Lucas van Leyden' +p221090 +sg25273 +S'etching and engraving' +p221091 +sg25275 +S'1520' +p221092 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce8d.jpg' +p221093 +sg25267 +g27 +sa(dp221094 +g25268 +S'The Two Couples in the Forest' +p221095 +sg25270 +S'Lucas van Leyden' +p221096 +sg25273 +S'engraving' +p221097 +sg25275 +S'c. 1509' +p221098 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce87.jpg' +p221099 +sg25267 +g27 +sa(dp221100 +g25268 +S'The Promenade' +p221101 +sg25270 +S'Lucas van Leyden' +p221102 +sg25273 +S'engraving' +p221103 +sg25275 +S'1520' +p221104 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce88.jpg' +p221105 +sg25267 +g27 +sa(dp221106 +g25268 +S'A Young Man with Eight Armed Men' +p221107 +sg25270 +S'Lucas van Leyden' +p221108 +sg25273 +S'engraving' +p221109 +sg25275 +S'c. 1510' +p221110 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce8b.jpg' +p221111 +sg25267 +g27 +sa(dp221112 +g25268 +S'The Savior Standing with the Globe and Cross in His Left Hand' +p221113 +sg25270 +S'Lucas van Leyden' +p221114 +sg25273 +S'engraving' +p221115 +sg25275 +S'c. 1510' +p221116 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce63.jpg' +p221117 +sg25267 +g27 +sa(dp221118 +g25268 +S'Two Cupids in Two Circles' +p221119 +sg25270 +S'Lucas van Leyden' +p221120 +sg25273 +S'engraving' +p221121 +sg25275 +S'c. 1517' +p221122 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce8e.jpg' +p221123 +sg25267 +g27 +sa(dp221124 +g25268 +S"Joseph Accused by Potiphar's Wife" +p221125 +sg25270 +S'Artist Information (' +p221126 +sg25273 +S'Dutch, 1606 - 1669' +p221127 +sg25275 +S'(related artist)' +p221128 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e82.jpg' +p221129 +sg25267 +S"Rembrandt's primary aspiration as an artist was to become a great history painter.\nIn the seventeenth century, history painting, which meant the depiction of biblical,\nmythological, and allegorical scenes, stood at the highest echelon of art. Theorists\nplaced it before other subjects like landscape, portraiture, or still life because\nthe role of the artist's imagination was so crucial to the successful interpretation\nof the story and its moral.\n Rembrandt drew his interpretations of his subjects from three basic sources: written\ntexts, earlier pictorial images of the scenes, and careful study of human emotions\nas he saw them in daily life. He then gave his scenes special meaning through a\nsuggestive use of light and dark accents, rich colors, and bold application of paint.\n Rembrandt was particularly fond of the story of Joseph. This scene, drawn from the\nBook of Genesis, chapter 39, depicts the moment when Potiphar's wife falsely accused\nJoseph of trying to violate her. While speaking to her husband, Potiphar's wife\nhere points to Joseph's red robe to support her accusation. In the biblical account, Joseph,\nwho stands quietly on the far side of the bed in Rembrandt's painting, was not present\nat the moment of the accusation. Rembrandt, however, included him to give added\npoignance to the scene.\n " +p221130 +sa(dp221131 +g25268 +S'Old Man with Beard, Fur Cap, and Velvet Cloak' +p221132 +sg25270 +S'Rembrandt van Rijn' +p221133 +sg25273 +S'etching' +p221134 +sg25275 +S'c. 1632' +p221135 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d34f.jpg' +p221136 +sg25267 +g27 +sa(dp221137 +g25268 +S'Two Cupids Seated on Clouds in Two Circles' +p221138 +sg25270 +S'Lucas van Leyden' +p221139 +sg25273 +S'engraving' +p221140 +sg25275 +S'1517' +p221141 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce9b.jpg' +p221142 +sg25267 +g27 +sa(dp221143 +g25268 +S'Triton and Siren in Tendrils' +p221144 +sg25270 +S'Lucas van Leyden' +p221145 +sg25273 +S'engraving' +p221146 +sg25275 +S'c. 1510' +p221147 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce8f.jpg' +p221148 +sg25267 +g27 +sa(dp221149 +g25268 +S'Two Naked Children Supporting a Blank Shield' +p221150 +sg25270 +S'Lucas van Leyden' +p221151 +sg25273 +S'engraving' +p221152 +sg25275 +S'c. 1519' +p221153 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce90.jpg' +p221154 +sg25267 +g27 +sa(dp221155 +g25268 +S'Two Boys with a Helmet and a Standard' +p221156 +sg25270 +S'Lucas van Leyden' +p221157 +sg25273 +S'engraving' +p221158 +sg25275 +S'1527' +p221159 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce94.jpg' +p221160 +sg25267 +g27 +sa(dp221161 +g25268 +S'Ornament with Two Sphinxes and a Winged Man' +p221162 +sg25270 +S'Lucas van Leyden' +p221163 +sg25273 +S'engraving' +p221164 +sg25275 +S'1528' +p221165 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce93.jpg' +p221166 +sg25267 +g27 +sa(dp221167 +g25268 +S'The Dentist' +p221168 +sg25270 +S'Lucas van Leyden' +p221169 +sg25273 +S'engraving' +p221170 +sg25275 +S'1523' +p221171 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00050/a0005033.jpg' +p221172 +sg25267 +g27 +sa(dp221173 +g25268 +S'The Surgeon' +p221174 +sg25270 +S'Lucas van Leyden' +p221175 +sg25273 +S'engraving' +p221176 +sg25275 +S'1524' +p221177 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce92.jpg' +p221178 +sg25267 +g27 +sa(dp221179 +g25268 +S'The Musicians' +p221180 +sg25270 +S'Lucas van Leyden' +p221181 +sg25273 +S'engraving' +p221182 +sg25275 +S'1524' +p221183 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce91.jpg' +p221184 +sg25267 +g27 +sa(dp221185 +g25268 +S'The Old Woman with Grapes' +p221186 +sg25270 +S'Lucas van Leyden' +p221187 +sg25273 +S'engraving' +p221188 +sg25275 +S'c. 1523' +p221189 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce95.jpg' +p221190 +sg25267 +g27 +sa(dp221191 +g25268 +S'A Nobleman and a Lady Seated in a Landscape' +p221192 +sg25270 +S'Lucas van Leyden' +p221193 +sg25273 +S'engraving' +p221194 +sg25275 +S'1520' +p221195 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce89.jpg' +p221196 +sg25267 +g27 +sa(dp221197 +g25268 +S'The Ponte Molle' +p221198 +sg25270 +S'Jan Both' +p221199 +sg25273 +S'etching' +p221200 +sg25275 +S'unknown date\n' +p221201 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4e0.jpg' +p221202 +sg25267 +g27 +sa(dp221203 +g25268 +S'Pallas Athene' +p221204 +sg25270 +S'Lucas van Leyden' +p221205 +sg25273 +S'engraving' +p221206 +sg25275 +S'c. 1530' +p221207 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce8c.jpg' +p221208 +sg25267 +g27 +sa(dp221209 +g25268 +S'Pyramus and Thisbe' +p221210 +sg25270 +S'Lucas van Leyden' +p221211 +sg25273 +S'engraving' +p221212 +sg25275 +S'1514' +p221213 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce85.jpg' +p221214 +sg25267 +g27 +sa(dp221215 +g25268 +S'Saint Catherine' +p221216 +sg25270 +S'Lucas van Leyden' +p221217 +sg25273 +S'engraving' +p221218 +sg25275 +S'1520' +p221219 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce78.jpg' +p221220 +sg25267 +g27 +sa(dp221221 +g25268 +S'Saint Mary Magdalene in the Desert' +p221222 +sg25270 +S'Lucas van Leyden' +p221223 +sg25273 +S'engraving' +p221224 +sg25275 +S'c. 1508' +p221225 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce77.jpg' +p221226 +sg25267 +g27 +sa(dp221227 +g25268 +S'Saint Francis of Assisi Receiving the Stigmata' +p221228 +sg25270 +S'Lucas van Leyden' +p221229 +sg25273 +S'engraving' +p221230 +sg25275 +S'c. 1514' +p221231 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce79.jpg' +p221232 +sg25267 +g27 +sa(dp221233 +g25268 +S'Saint Anthony' +p221234 +sg25270 +S'Lucas van Leyden' +p221235 +sg25273 +S'engraving' +p221236 +sg25275 +S'c. 1521' +p221237 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce7a.jpg' +p221238 +sg25267 +g27 +sa(dp221239 +g25268 +S'Saint Sebastian' +p221240 +sg25270 +S'Lucas van Leyden' +p221241 +sg25273 +S'engraving' +p221242 +sg25275 +S'c. 1510' +p221243 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce76.jpg' +p221244 +sg25267 +g27 +sa(dp221245 +g25268 +S'Saint Jerome in a Landscape' +p221246 +sg25270 +S'Lucas van Leyden' +p221247 +sg25273 +S'engraving' +p221248 +sg25275 +S'1513' +p221249 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce75.jpg' +p221250 +sg25267 +g27 +sa(dp221251 +g25268 +S'Saint John the Baptist in the Desert' +p221252 +sg25270 +S'Lucas van Leyden' +p221253 +sg25273 +S'engraving' +p221254 +sg25275 +S'1513' +p221255 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce72.jpg' +p221256 +sg25267 +g27 +sa(dp221257 +g25268 +S'Saint Christopher at the Border of a River' +p221258 +sg25270 +S'Lucas van Leyden' +p221259 +sg25273 +S'engraving' +p221260 +sg25275 +S'c. 1505/1506' +p221261 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce73.jpg' +p221262 +sg25267 +g27 +sa(dp221263 +g25268 +S'The Palace Gardens at Nancy' +p221264 +sg25270 +S'Jacques Callot' +p221265 +sg25273 +S'etching' +p221266 +sg25275 +S'1625' +p221267 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ade.jpg' +p221268 +sg25267 +g27 +sa(dp221269 +g25268 +S'Saints Peter and Paul with the Vernicle' +p221270 +sg25270 +S'Lucas van Leyden' +p221271 +sg25273 +S'engraving' +p221272 +sg25275 +S'1517' +p221273 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce71.jpg' +p221274 +sg25267 +g27 +sa(dp221275 +g25268 +S'Saint Luke' +p221276 +sg25270 +S'Lucas van Leyden' +p221277 +sg25273 +S'engraving' +p221278 +sg25275 +S'c. 1508' +p221279 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce74.jpg' +p221280 +sg25267 +g27 +sa(dp221281 +g25268 +S'Christ and the Woman of Samaria' +p221282 +sg25270 +S'Lucas van Leyden' +p221283 +sg25273 +S'woodcut' +p221284 +sg25275 +S'1521/1523' +p221285 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce9c.jpg' +p221286 +sg25267 +g27 +sa(dp221287 +g25268 +S'Adam and Eve' +p221288 +sg25270 +S'Lucas van Leyden' +p221289 +sg25273 +S'woodcut' +p221290 +sg25275 +S'1516/1519' +p221291 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce97.jpg' +p221292 +sg25267 +g27 +sa(dp221293 +g25268 +S'Jael Killing Sisera' +p221294 +sg25270 +S'Lucas van Leyden' +p221295 +sg25273 +S'woodcut' +p221296 +sg25275 +S'1516/1519' +p221297 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d00e.jpg' +p221298 +sg25267 +g27 +sa(dp221299 +g25268 +S"Solomon's Idolatry" +p221300 +sg25270 +S'Lucas van Leyden' +p221301 +sg25273 +S'woodcut' +p221302 +sg25275 +S'1517/1518' +p221303 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d00d.jpg' +p221304 +sg25267 +g27 +sa(dp221305 +g25268 +S'The Mouth of Truth' +p221306 +sg25270 +S'Lucas van Leyden' +p221307 +sg25273 +S'woodcut' +p221308 +sg25275 +S'c. 1512' +p221309 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d012.jpg' +p221310 +sg25267 +g27 +sa(dp221311 +g25268 +S'The Stragglers' +p221312 +sg25270 +S'Jan Wellens de Cock' +p221313 +sg25273 +S'woodcut' +p221314 +sg25275 +S'unknown date\n' +p221315 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf1b.jpg' +p221316 +sg25267 +g27 +sa(dp221317 +g25268 +S'Abraham Going to Sacrifice Isaac' +p221318 +sg25270 +S'Lucas van Leyden' +p221319 +sg25273 +S'woodcut' +p221320 +sg25275 +S'1517/1519' +p221321 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d00f.jpg' +p221322 +sg25267 +g27 +sa(dp221323 +g25268 +S'Arthur, Charles the Great (Charlemagne), Godfry of Bouillon' +p221324 +sg25270 +S'Lucas van Leyden' +p221325 +sg25273 +S'woodcut' +p221326 +sg25275 +S'1515/1517' +p221327 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d070.jpg' +p221328 +sg25267 +g27 +sa(dp221329 +g25268 +S'Gattamelata' +p221330 +sg25270 +S'Artist Information (' +p221331 +sg25273 +S'(artist after)' +p221332 +sg25275 +S'\n' +p221333 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00095/a00095dd.jpg' +p221334 +sg25267 +g27 +sa(dp221335 +g25268 +S'Joshua, David, Judas Maccabees' +p221336 +sg25270 +S'Lucas van Leyden' +p221337 +sg25273 +S'woodcut' +p221338 +sg25275 +S'1515/1517' +p221339 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005c/a0005cc1.jpg' +p221340 +sg25267 +g27 +sa(dp221341 +g25268 +S'Hector of Troy, Alexander of Macedon, Julius Caesar' +p221342 +sg25270 +S'Lucas van Leyden' +p221343 +sg25273 +S'woodcut' +p221344 +sg25275 +S'1515/1517' +p221345 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d071.jpg' +p221346 +sg25267 +g27 +sa(dp221347 +g25273 +S'color woodcut' +p221348 +sg25267 +g27 +sg25275 +S'unknown date\n' +p221349 +sg25268 +S'Twilight Toil' +p221350 +sg25270 +S'Allen Lewis' +p221351 +sa(dp221352 +g25273 +S'(artist after)' +p221353 +sg25267 +g27 +sg25275 +S'\n' +p221354 +sg25268 +S'Various Subjects of Landscape ... from Pictures Painted by John Constable, R.A.' +p221355 +sg25270 +S'Artist Information (' +p221356 +sa(dp221357 +g25268 +S'Glow of the City' +p221358 +sg25270 +S'Martin Lewis' +p221359 +sg25273 +S'drypoint on wove paper' +p221360 +sg25275 +S'1929' +p221361 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b03.jpg' +p221362 +sg25267 +g27 +sa(dp221363 +g25268 +S'Chance Meeting' +p221364 +sg25270 +S'Martin Lewis' +p221365 +sg25273 +S'drypoint on laid paper' +p221366 +sg25275 +S'1940-1941' +p221367 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b04.jpg' +p221368 +sg25267 +g27 +sa(dp221369 +g25273 +S'aquatint' +p221370 +sg25267 +g27 +sg25275 +S'unknown date\n' +p221371 +sg25268 +S'West Entrance of the Field Museum' +p221372 +sg25270 +S'Beatrice S. Levy' +p221373 +sa(dp221374 +g25268 +S'Self-Portrait' +p221375 +sg25270 +S'Max Liebermann' +p221376 +sg25273 +S'drypoint in black on wove paper' +p221377 +sg25275 +S'unknown date\n' +p221378 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a00058e5.jpg' +p221379 +sg25267 +g27 +sa(dp221380 +g25273 +S'wood engraving' +p221381 +sg25267 +g27 +sg25275 +S'unknown date\n' +p221382 +sg25268 +S'Pheasant and Wisteria' +p221383 +sg25270 +S'Sir Lionel Arthur Lindsay' +p221384 +sa(dp221385 +g25268 +S"Palazzo d'Oro" +p221386 +sg25270 +S'Sidney Mackenzie Litten' +p221387 +sg25273 +S'etching on light green paper' +p221388 +sg25275 +S'unknown date\n' +p221389 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00080/a00080c2.jpg' +p221390 +sg25267 +g27 +sa(dp221391 +g25268 +S'Rue des Marmousets (Quartier de la cite, vieux Paris)' +p221392 +sg25270 +S'Maxime Lalanne' +p221393 +sg25273 +S'etching' +p221394 +sg25275 +S'1862' +p221395 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b06.jpg' +p221396 +sg25267 +g27 +sa(dp221397 +g25268 +S'Guidecca Canal' +p221398 +sg25270 +S'Sidney Mackenzie Litten' +p221399 +sg25273 +S'etching' +p221400 +sg25275 +S'unknown date\n' +p221401 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00080/a00080c3.jpg' +p221402 +sg25267 +g27 +sa(dp221403 +g25268 +S'Ponte Conarreggio' +p221404 +sg25270 +S'Sidney Mackenzie Litten' +p221405 +sg25273 +S'etching' +p221406 +sg25275 +S'unknown date\n' +p221407 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00080/a00080c4.jpg' +p221408 +sg25267 +g27 +sa(dp221409 +g25268 +S'Gondoliers' +p221410 +sg25270 +S'Sidney Mackenzie Litten' +p221411 +sg25273 +S'etching' +p221412 +sg25275 +S'unknown date\n' +p221413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00080/a00080c5.jpg' +p221414 +sg25267 +g27 +sa(dp221415 +g25268 +S'Christ and the Adulteress [recto]' +p221416 +sg25270 +S'German 16th Century' +p221417 +sg25273 +S'overall: 16.3 x 20.6 cm (6 7/16 x 8 1/8 in.)' +p221418 +sg25275 +S'\npen and brush and black ink with brush and gray ink and gray wash heightened with white on gray prepared paper' +p221419 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a000794e.jpg' +p221420 +sg25267 +g27 +sa(dp221421 +g25268 +S'Abraham Entertaining the Angels [verso]' +p221422 +sg25270 +S'German 16th Century' +p221423 +sg25273 +S'overall: 16.3 x 20.6 cm (6 7/16 x 8 1/8 in.)' +p221424 +sg25275 +S'\npen and brush and black ink with brush and gray ink and gray wash heightened with white on gray prepared paper' +p221425 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a000794f.jpg' +p221426 +sg25267 +g27 +sa(dp221427 +g25273 +S'lithograph' +p221428 +sg25267 +g27 +sg25275 +S'1942' +p221429 +sg25268 +S'McCosh Walk' +p221430 +sg25270 +S'Charles Wheeler Locke' +p221431 +sa(dp221432 +g25273 +S'etching' +p221433 +sg25267 +g27 +sg25275 +S'unknown date\n' +p221434 +sg25268 +S'Ponte Marie, Paris' +p221435 +sg25270 +S'Robert Fulton Logan' +p221436 +sa(dp221437 +g25268 +S'Albrecht Durer' +p221438 +sg25270 +S'Melchior Lorch' +p221439 +sg25273 +S'engraving' +p221440 +sg25275 +S'1550' +p221441 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000dc/a000dc48.jpg' +p221442 +sg25267 +g27 +sa(dp221443 +g25268 +S'Martin Luther' +p221444 +sg25270 +S'Melchior Lorch' +p221445 +sg25273 +S'engraving' +p221446 +sg25275 +S'1548' +p221447 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000dc/a000dc4f.jpg' +p221448 +sg25267 +g27 +sa(dp221449 +g25273 +S'graphite' +p221450 +sg25267 +g27 +sg25275 +S'unknown date\n' +p221451 +sg25268 +S'G.K. Chesterton' +p221452 +sg25270 +S'David Low' +p221453 +sa(dp221454 +g25268 +S'Mahomet and the Monk Sergius' +p221455 +sg25270 +S'Lucas van Leyden' +p221456 +sg25273 +S'engraving' +p221457 +sg25275 +S'1508' +p221458 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f3d.jpg' +p221459 +sg25267 +g27 +sa(dp221460 +g25273 +S'graphite' +p221461 +sg25267 +g27 +sg25275 +S'unknown date\n' +p221462 +sg25268 +S'Aldous Huxley' +p221463 +sg25270 +S'David Low' +p221464 +sa(dp221465 +g25273 +S'graphite' +p221466 +sg25267 +g27 +sg25275 +S'unknown date\n' +p221467 +sg25268 +S'Sir "Bill" Orpen' +p221468 +sg25270 +S'David Low' +p221469 +sa(dp221470 +g25273 +S'brush and black ink with blue chalk over graphite' +p221471 +sg25267 +g27 +sg25275 +S'probably 1934' +p221472 +sg25268 +S'The "Open Door" Policy in China' +p221473 +sg25270 +S'David Low' +p221474 +sa(dp221475 +g25273 +S'brush and black ink with blue chalk heightened with white over graphite' +p221476 +sg25267 +g27 +sg25275 +S'probably 1933' +p221477 +sg25268 +S'Pleasant Evenings Round the Fireside' +p221478 +sg25270 +S'David Low' +p221479 +sa(dp221480 +g25273 +S'graphite' +p221481 +sg25267 +g27 +sg25275 +S'unknown date\n' +p221482 +sg25268 +S'J.M. Keynes' +p221483 +sg25270 +S'David Low' +p221484 +sa(dp221485 +g25273 +S'graphite' +p221486 +sg25267 +g27 +sg25275 +S'unknown date\n' +p221487 +sg25268 +S'P.G. Wodehouse' +p221488 +sg25270 +S'David Low' +p221489 +sa(dp221490 +g25273 +S'brush and black ink heightened with white over black chalk and graphite' +p221491 +sg25267 +g27 +sg25275 +S'1938' +p221492 +sg25268 +S'The Old Man of Doorn' +p221493 +sg25270 +S'David Low' +p221494 +sa(dp221495 +g25273 +S'brush and black ink heightened with white over black chalk and graphite' +p221496 +sg25267 +g27 +sg25275 +S'1938' +p221497 +sg25268 +S'Hand of Friendship' +p221498 +sg25270 +S'David Low' +p221499 +sa(dp221500 +g25268 +S'Granaries to Babylon' +p221501 +sg25270 +S'Louis Lozowick' +p221502 +sg25273 +S'lithograph' +p221503 +sg25275 +S'1933' +p221504 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b1b.jpg' +p221505 +sg25267 +g27 +sa(dp221506 +g25273 +S'etching' +p221507 +sg25267 +g27 +sg25275 +S'1942' +p221508 +sg25268 +S'Pillars of Vermont' +p221509 +sg25270 +S'Luigi Lucioni' +p221510 +sa(dp221511 +g25268 +S'La galerie Notre-Dame, Paris (The Gallery of Notre Dame, Paris)' +p221512 +sg25270 +S'Charles Meryon' +p221513 +sg25273 +S'etching on green paper' +p221514 +sg25275 +S'1853' +p221515 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d16.jpg' +p221516 +sg25267 +g27 +sa(dp221517 +g25273 +S'etching' +p221518 +sg25267 +g27 +sg25275 +S'1936' +p221519 +sg25268 +S'Clouds on Equinox' +p221520 +sg25270 +S'Luigi Lucioni' +p221521 +sa(dp221522 +g25273 +S'drypoint' +p221523 +sg25267 +g27 +sg25275 +S'1920' +p221524 +sg25268 +S'Head' +p221525 +sg25270 +S'Luigi Lucioni' +p221526 +sa(dp221527 +g25273 +S'drypoint and etching' +p221528 +sg25267 +g27 +sg25275 +S'1920' +p221529 +sg25268 +S'The Acolyte' +p221530 +sg25270 +S'Ernest Stephen Lumsden' +p221531 +sa(dp221532 +g25273 +S'drypoint' +p221533 +sg25267 +g27 +sg25275 +S'1922' +p221534 +sg25268 +S'"The Name of God is Truth"' +p221535 +sg25270 +S'Ernest Stephen Lumsden' +p221536 +sa(dp221537 +g25273 +S'etching' +p221538 +sg25267 +g27 +sg25275 +S'1909' +p221539 +sg25268 +S'Menzies and Co.' +p221540 +sg25270 +S'Ernest Stephen Lumsden' +p221541 +sa(dp221542 +g25273 +S'etching' +p221543 +sg25267 +g27 +sg25275 +S'1925' +p221544 +sg25268 +S'Ragged Sails' +p221545 +sg25270 +S'Ernest Stephen Lumsden' +p221546 +sa(dp221547 +g25273 +S'etching' +p221548 +sg25267 +g27 +sg25275 +S'1934' +p221549 +sg25268 +S'Canongate Washing' +p221550 +sg25270 +S'Ernest Stephen Lumsden' +p221551 +sa(dp221552 +g25273 +S'drypoint' +p221553 +sg25267 +g27 +sg25275 +S'1926' +p221554 +sg25268 +S'The Saut-Buckets' +p221555 +sg25270 +S'Ernest Stephen Lumsden' +p221556 +sa(dp221557 +g25268 +S'Janus Lutma, the Elder' +p221558 +sg25270 +S'Jan Lutma II' +p221559 +sg25273 +S'etching, strengthened with some punch' +p221560 +sg25275 +S'1656' +p221561 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d52f.jpg' +p221562 +sg25267 +g27 +sa(dp221563 +g25268 +S'Christ lead to Prison' +p221564 +sg25270 +S'German 15th Century' +p221565 +sg25273 +S'Schreiber Manuel, no. 3448' +p221566 +sg25275 +S'\nhand-colored woodcut' +p221567 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5ff.jpg' +p221568 +sg25267 +g27 +sa(dp221569 +g25268 +S'Marechal de Guebriant' +p221570 +sg25270 +S'Robert Nanteuil' +p221571 +sg25273 +S'engraving' +p221572 +sg25275 +S'1655' +p221573 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b4d.jpg' +p221574 +sg25267 +g27 +sa(dp221575 +g25273 +S'wash lithograph' +p221576 +sg25267 +g27 +sg25275 +S'1927' +p221577 +sg25268 +S'Half-Length Seated Female (Femme assise vue ami-corps)' +p221578 +sg25270 +S'Aristide Maillol' +p221579 +sa(dp221580 +g25273 +S'charcoal on laid paper' +p221581 +sg25267 +g27 +sg25275 +S'unknown date\n' +p221582 +sg25268 +S'Nude, Back' +p221583 +sg25270 +S'Aristide Maillol' +p221584 +sa(dp221585 +g25273 +S'graphite on brown paper' +p221586 +sg25267 +g27 +sg25275 +S'unknown date\n' +p221587 +sg25268 +S'Nude Seated' +p221588 +sg25270 +S'Aristide Maillol' +p221589 +sa(dp221590 +g25273 +S'etching' +p221591 +sg25267 +g27 +sg25275 +S'unknown date\n' +p221592 +sg25268 +S'Marina di Pisa' +p221593 +sg25270 +S'William Douglas MacLeod' +p221594 +sa(dp221595 +g25273 +S'woodcut' +p221596 +sg25267 +g27 +sg25275 +S'1922' +p221597 +sg25268 +S'After Work' +p221598 +sg25270 +S'Gerhard Marcks' +p221599 +sa(dp221600 +g25273 +S'graphite on wove paper' +p221601 +sg25267 +g27 +sg25275 +S'1934' +p221602 +sg25268 +S'Nude Figure Standing and Holding Her Ankle' +p221603 +sg25270 +S'Gerhard Marcks' +p221604 +sa(dp221605 +g25273 +S'aquatint and soft-ground etching' +p221606 +sg25267 +g27 +sg25275 +S'unknown date\n' +p221607 +sg25268 +S'Light and Shadow' +p221608 +sg25270 +S'Joseph Margulies' +p221609 +sa(dp221610 +g25268 +S'Animal Legend (Tierlegende)' +p221611 +sg25270 +S'Franz Marc' +p221612 +sg25273 +S'woodcut on Japan paper' +p221613 +sg25275 +S'1912' +p221614 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b72c.jpg' +p221615 +sg25267 +g27 +sa(dp221616 +g25268 +S'The Man in the Tall Hat' +p221617 +sg25270 +S'Edouard Manet' +p221618 +sg25273 +S'watercolor and graphite' +p221619 +sg25275 +S'1858/1859' +p221620 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00025/a00025f8.jpg' +p221621 +sg25267 +g27 +sa(dp221622 +g25268 +S"The Absinthe Drinker (Le buveur d'absinthe)" +p221623 +sg25270 +S'Edouard Manet' +p221624 +sg25273 +S'etching' +p221625 +sg25275 +S'1862' +p221626 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f55.jpg' +p221627 +sg25267 +g27 +sa(dp221628 +g25268 +S'Louis XIV' +p221629 +sg25270 +S'Robert Nanteuil' +p221630 +sg25273 +S'engraving' +p221631 +sg25275 +S'1664' +p221632 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008ddc.jpg' +p221633 +sg25267 +g27 +sa(dp221634 +g25268 +S'Dead Christ with Angels (Christ aux anges)' +p221635 +sg25270 +S'Edouard Manet' +p221636 +sg25273 +S'etching and aquatint' +p221637 +sg25275 +S'1866/1867' +p221638 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00067/a0006712.jpg' +p221639 +sg25267 +g27 +sa(dp221640 +g25268 +S'The Toilette (La toilette)' +p221641 +sg25270 +S'Edouard Manet' +p221642 +sg25273 +S'etching' +p221643 +sg25275 +S'1862' +p221644 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cf9.jpg' +p221645 +sg25267 +g27 +sa(dp221646 +g25268 +S'The Smoker (Le fumeur)' +p221647 +sg25270 +S'Edouard Manet' +p221648 +sg25273 +S'etching and drypoint' +p221649 +sg25275 +S'1866' +p221650 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cff.jpg' +p221651 +sg25267 +g27 +sa(dp221652 +g25268 +S'Civil War (Guerre civile)' +p221653 +sg25270 +S'Edouard Manet' +p221654 +sg25273 +S'lithograph' +p221655 +sg25275 +S'1871' +p221656 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00017/a000178c.jpg' +p221657 +sg25267 +g27 +sa(dp221658 +g25268 +S'At the Prado (Au Prado)' +p221659 +sg25270 +S'Edouard Manet' +p221660 +sg25273 +S'etching and aquatint' +p221661 +sg25275 +S'1865/1868' +p221662 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009955.jpg' +p221663 +sg25267 +g27 +sa(dp221664 +g25268 +S'The Reader (Le liseur)' +p221665 +sg25270 +S'Edouard Manet' +p221666 +sg25273 +S'etching' +p221667 +sg25275 +S'1861' +p221668 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009952.jpg' +p221669 +sg25267 +g27 +sa(dp221670 +g25268 +S'Lola de Valence' +p221671 +sg25270 +S'Edouard Manet' +p221672 +sg25273 +S'etching and aquatint' +p221673 +sg25275 +S'1862' +p221674 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d58.jpg' +p221675 +sg25267 +g27 +sa(dp221676 +g25268 +S'Edgar Poe' +p221677 +sg25270 +S'Edouard Manet' +p221678 +sg25273 +S'etching' +p221679 +sg25275 +S'1860' +p221680 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009953.jpg' +p221681 +sg25267 +g27 +sa(dp221682 +g25268 +S'Dead Toreador (Torero mort)' +p221683 +sg25270 +S'Edouard Manet' +p221684 +sg25273 +S'etching and aquatint' +p221685 +sg25275 +S'1868' +p221686 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f08d.jpg' +p221687 +sg25267 +g27 +sa(dp221688 +g25268 +S'Au Paradis (In the Balcony)' +p221689 +sg25270 +S'Edouard Manet' +p221690 +sg25273 +S'transfer lithograph' +p221691 +sg25275 +S'unknown date\n' +p221692 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d08.jpg' +p221693 +sg25267 +g27 +sa(dp221694 +g25268 +S'Sion' +p221695 +sg25270 +S'Samuel Prout' +p221696 +sg25273 +S'graphite with white heigtening on gray paper' +p221697 +sg25275 +S'c. 1830' +p221698 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00037/a00037dc.jpg' +p221699 +sg25267 +g27 +sa(dp221700 +g25268 +S'A mapp of ye improved part of Pensilvania in America, divided into countyes, townships and lotts' +p221701 +sg25270 +S'Thomas Holme' +p221702 +sg25273 +S'engraving' +p221703 +sg25275 +S'c. 1687' +p221704 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00078/a0007862.jpg' +p221705 +sg25267 +g27 +sa(dp221706 +g25268 +S'The Triumph of Julius Caesar: Title Page' +p221707 +sg25270 +S'Artist Information (' +p221708 +sg25273 +S'(artist after)' +p221709 +sg25275 +S'\n' +p221710 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e26.jpg' +p221711 +sg25267 +g27 +sa(dp221712 +g25268 +S'The Triumph of Julius Caesar [no.1 and 2 plus 2 columns]' +p221713 +sg25270 +S'Artist Information (' +p221714 +sg25273 +S'(artist after)' +p221715 +sg25275 +S'\n' +p221716 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e27.jpg' +p221717 +sg25267 +g27 +sa(dp221718 +g25268 +S'The Triumph of Julius Caesar [no.3 and 4 plus 2 columns]' +p221719 +sg25270 +S'Artist Information (' +p221720 +sg25273 +S'(artist after)' +p221721 +sg25275 +S'\n' +p221722 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e28.jpg' +p221723 +sg25267 +g27 +sa(dp221724 +g25268 +S'The Triumph of Julius Caesar [no.5 and 6 plus 2 columns]' +p221725 +sg25270 +S'Artist Information (' +p221726 +sg25273 +S'(artist after)' +p221727 +sg25275 +S'\n' +p221728 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e29.jpg' +p221729 +sg25267 +g27 +sa(dp221730 +g25268 +S'The Triumph of Julius Caesar [no.7 and 8 plus 2 columns]' +p221731 +sg25270 +S'Artist Information (' +p221732 +sg25273 +S'(artist after)' +p221733 +sg25275 +S'\n' +p221734 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e2a.jpg' +p221735 +sg25267 +g27 +sa(dp221736 +g25268 +S'The Triumph of Julius Caesar [no.9 plus 2 columns]' +p221737 +sg25270 +S'Artist Information (' +p221738 +sg25273 +S'(artist after)' +p221739 +sg25275 +S'\n' +p221740 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e25.jpg' +p221741 +sg25267 +g27 +sa(dp221742 +g25268 +S'Descent into Limbo' +p221743 +sg25270 +S'Artist Information (' +p221744 +sg25273 +S'(artist)' +p221745 +sg25275 +S'\n' +p221746 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005a9c.jpg' +p221747 +sg25267 +g27 +sa(dp221748 +g25268 +S'Flagellation of Christ, with the Pavement' +p221749 +sg25270 +S'Artist Information (' +p221750 +sg25273 +S'(artist)' +p221751 +sg25275 +S'\n' +p221752 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7a8.jpg' +p221753 +sg25267 +g27 +sa(dp221754 +g25268 +S'Four Women Dancing' +p221755 +sg25270 +S'Artist Information (' +p221756 +sg25273 +S'(artist)' +p221757 +sg25275 +S'\n' +p221758 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00068/a0006818.jpg' +p221759 +sg25267 +g27 +sa(dp221760 +g25268 +S'Pope Innocent X' +p221761 +sg25270 +S'Artist Information (' +p221762 +sg25273 +S'Spanish, 1599 - 1660' +p221763 +sg25275 +S'(related artist)' +p221764 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000587.jpg' +p221765 +sg25267 +g27 +sa(dp221766 +g25268 +S'Jason' +p221767 +sg25270 +S'Joseph Mallord William Turner' +p221768 +sg25273 +S'etching' +p221769 +sg25275 +S'1807' +p221770 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a41.jpg' +p221771 +sg25267 +g27 +sa(dp221772 +g25268 +S'The Entombment with Three Birds' +p221773 +sg25270 +S'Artist Information (' +p221774 +sg25273 +S'(artist)' +p221775 +sg25275 +S'\n' +p221776 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7c5.jpg' +p221777 +sg25267 +g27 +sa(dp221778 +g25268 +S'The Triumph of Caesar: Soldiers Carrying Trophies' +p221779 +sg25270 +S'Artist Information (' +p221780 +sg25273 +S'Italian, active c. 1475/1519' +p221781 +sg25275 +S'(artist)' +p221782 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00068/a0006819.jpg' +p221783 +sg25267 +g27 +sa(dp221784 +g25268 +S'The Virgin and Child' +p221785 +sg25270 +S'Andrea Mantegna' +p221786 +sg25273 +S'engraving on laid paper' +p221787 +sg25275 +S'1470s (?)' +p221788 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7a4.jpg' +p221789 +sg25267 +g27 +sa(dp221790 +g25268 +S'Bacchanal with Silenus' +p221791 +sg25270 +S'Andrea Mantegna' +p221792 +sg25273 +S'engraving' +p221793 +sg25275 +S'c. 1475/1480' +p221794 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7c7.jpg' +p221795 +sg25267 +g27 +sa(dp221796 +g25268 +S'Oliver Goldsmith' +p221797 +sg25270 +S'Artist Information (' +p221798 +sg25273 +S'(artist after)' +p221799 +sg25275 +S'\n' +p221800 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc11.jpg' +p221801 +sg25267 +g27 +sa(dp221802 +g25268 +S'Before Caiaphas' +p221803 +sg25270 +S'German 15th Century' +p221804 +sg25273 +S'Schreiber Manuel, no. 3448' +p221805 +sg25275 +S'\nhand-colored woodcut' +p221806 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a600.jpg' +p221807 +sg25267 +g27 +sa(dp221808 +g25268 +S'Guillaume de Brisacier' +p221809 +sg25270 +S'Artist Information (' +p221810 +sg25273 +S'(artist after)' +p221811 +sg25275 +S'\n' +p221812 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b47.jpg' +p221813 +sg25267 +g27 +sa(dp221814 +g25268 +S'Henri de Lorraine' +p221815 +sg25270 +S'Artist Information (' +p221816 +sg25273 +S'(artist after)' +p221817 +sg25275 +S'\n' +p221818 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dc1.jpg' +p221819 +sg25267 +g27 +sa(dp221820 +g25268 +S'Jason' +p221821 +sg25270 +S'Artist Information (' +p221822 +sg25273 +S'(artist)' +p221823 +sg25275 +S'\n' +p221824 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a37.jpg' +p221825 +sg25267 +g27 +sa(dp221826 +g25268 +S'Two Men in Armour' +p221827 +sg25270 +S'Master BM' +p221828 +sg25273 +S'engraving' +p221829 +sg25275 +S'c. 1480/1490' +p221830 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3d0.jpg' +p221831 +sg25267 +g27 +sa(dp221832 +g25268 +S'Saint Jerome' +p221833 +sg25270 +S'Master C' +p221834 +sg25273 +S'pen and brown ink' +p221835 +sg25275 +S'unknown date\n' +p221836 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007961.jpg' +p221837 +sg25267 +g27 +sa(dp221838 +g25268 +S'Madonna and Child' +p221839 +sg25270 +S'Master of the Dutuit Mount of Olives' +p221840 +sg25273 +S'engraving' +p221841 +sg25275 +S'c. 1460' +p221842 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3d4.jpg' +p221843 +sg25267 +g27 +sa(dp221844 +g25268 +S'The Crucifixion' +p221845 +sg25270 +S'Master of the Dutuit Mount of Olives' +p221846 +sg25273 +S'hand-colored engraving' +p221847 +sg25275 +S'c. 1460' +p221848 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3d1.jpg' +p221849 +sg25267 +g27 +sa(dp221850 +g25268 +S'Saint John the Evangelist' +p221851 +sg25270 +S'Artist Information (' +p221852 +sg25273 +S'(artist after)' +p221853 +sg25275 +S'\n' +p221854 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3d3.jpg' +p221855 +sg25267 +g27 +sa(dp221856 +g25268 +S'Faun Battling a Snake' +p221857 +sg25270 +S'Artist Information (' +p221858 +sg25273 +S'Italian, c. 1431 - 1506' +p221859 +sg25275 +S'(related artist)' +p221860 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7ad.jpg' +p221861 +sg25267 +g27 +sa(dp221862 +g25268 +S'Mutius Scaevola' +p221863 +sg25270 +S'Master FG' +p221864 +sg25273 +S'engraving' +p221865 +sg25275 +S'1537' +p221866 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acb3.jpg' +p221867 +sg25267 +g27 +sa(dp221868 +g25268 +S'Ornament' +p221869 +sg25270 +S'Master FG' +p221870 +sg25273 +S'engraving' +p221871 +sg25275 +S'unknown date\n' +p221872 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acb4.jpg' +p221873 +sg25267 +g27 +sa(dp221874 +g25268 +S'Children Harvesting Grapes' +p221875 +sg25270 +S'Artist Information (' +p221876 +sg25273 +S'(artist after)' +p221877 +sg25275 +S'\n' +p221878 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b254.jpg' +p221879 +sg25267 +g27 +sa(dp221880 +g25268 +S'The Triumph of Bacchus' +p221881 +sg25270 +S'Master IB' +p221882 +sg25273 +S'engraving' +p221883 +sg25275 +S'1528' +p221884 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b252.jpg' +p221885 +sg25267 +g27 +sa(dp221886 +g25268 +S'The Bridge in Middle Distance' +p221887 +sg25270 +S'Joseph Mallord William Turner' +p221888 +sg25273 +S'etching' +p221889 +sg25275 +S'published 1808' +p221890 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a47.jpg' +p221891 +sg25267 +g27 +sa(dp221892 +g25268 +S'Christ Stripped' +p221893 +sg25270 +S'German 15th Century' +p221894 +sg25273 +S'Schreiber Manuel, no. 3448' +p221895 +sg25275 +S'\nhand-colored woodcut' +p221896 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a604.jpg' +p221897 +sg25267 +g27 +sa(dp221898 +g25268 +S'Sheath with Warrior' +p221899 +sg25270 +S'Master IB' +p221900 +sg25273 +S'engraving' +p221901 +sg25275 +S'1528' +p221902 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acd3.jpg' +p221903 +sg25267 +g27 +sa(dp221904 +g25268 +S'Ornament with Fantastic Satyr and Dolphins' +p221905 +sg25270 +S'Master IB' +p221906 +sg25273 +S'engraving' +p221907 +sg25275 +S'unknown date\n' +p221908 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acda.jpg' +p221909 +sg25267 +g27 +sa(dp221910 +g25268 +S'Bagpipe Player with His Lover' +p221911 +sg25270 +S'Master IB' +p221912 +sg25273 +S'engraving' +p221913 +sg25275 +S'unknown date\n' +p221914 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acd1.jpg' +p221915 +sg25267 +g27 +sa(dp221916 +g25268 +S'Emblem with Hope, Tribulation, Envy, and Tolerance' +p221917 +sg25270 +S'Master IB' +p221918 +sg25273 +S'engraving' +p221919 +sg25275 +S'1529' +p221920 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acdb.jpg' +p221921 +sg25267 +g27 +sa(dp221922 +g25268 +S'Temperantia (Temperance)' +p221923 +sg25270 +S'Master IB' +p221924 +sg25273 +S'engraving' +p221925 +sg25275 +S'unknown date\n' +p221926 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acd6.jpg' +p221927 +sg25267 +g27 +sa(dp221928 +g25268 +S'Iusticia (Justice)' +p221929 +sg25270 +S'Master IB' +p221930 +sg25273 +S'engraving' +p221931 +sg25275 +S'unknown date\n' +p221932 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acd5.jpg' +p221933 +sg25267 +g27 +sa(dp221934 +g25268 +S'Spes (Hope)' +p221935 +sg25270 +S'Master IB' +p221936 +sg25273 +S'engraving' +p221937 +sg25275 +S'unknown date\n' +p221938 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acd4.jpg' +p221939 +sg25267 +g27 +sa(dp221940 +g25268 +S'Fortitudo' +p221941 +sg25270 +S'Master IB' +p221942 +sg25273 +S'engraving' +p221943 +sg25275 +S'unknown date\n' +p221944 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acd9.jpg' +p221945 +sg25267 +g27 +sa(dp221946 +g25268 +S'Sol (The Sun)' +p221947 +sg25270 +S'Master IB' +p221948 +sg25273 +S'engraving' +p221949 +sg25275 +S'1528' +p221950 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acd7.jpg' +p221951 +sg25267 +g27 +sa(dp221952 +g25268 +S'The Bridge in Middle Distance' +p221953 +sg25270 +S'Artist Information (' +p221954 +sg25273 +S'(artist)' +p221955 +sg25275 +S'\n' +p221956 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a49.jpg' +p221957 +sg25267 +g27 +sa(dp221958 +g25268 +S'Marcus Curtius' +p221959 +sg25270 +S'Master IB' +p221960 +sg25273 +S'engraving' +p221961 +sg25275 +S'1529' +p221962 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acd0.jpg' +p221963 +sg25267 +g27 +sa(dp221964 +g25268 +S'Martin Luther' +p221965 +sg25270 +S'Master IB' +p221966 +sg25273 +S'engraving' +p221967 +sg25275 +S'1530' +p221968 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acd8.jpg' +p221969 +sg25267 +g27 +sa(dp221970 +g25268 +S'Saint George and the Dragon' +p221971 +sg25270 +S'Giovanni Battista Palumba' +p221972 +sg25273 +S'engraving' +p221973 +sg25275 +S'c. 1500' +p221974 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c770.jpg' +p221975 +sg25267 +g27 +sa(dp221976 +g25268 +S'The Rape of Europa' +p221977 +sg25270 +S'Giovanni Battista Palumba' +p221978 +sg25273 +S'engraving' +p221979 +sg25275 +S'unknown date\n' +p221980 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c76d.jpg' +p221981 +sg25267 +g27 +sa(dp221982 +g25268 +S'Bacchus on a Donkey' +p221983 +sg25270 +S'Master IS.' +p221984 +sg25273 +S'punch engraving' +p221985 +sg25275 +S'unknown date\n' +p221986 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad05.jpg' +p221987 +sg25267 +g27 +sa(dp221988 +g25268 +S'Bacchus Seated in a Landscape' +p221989 +sg25270 +S'Master IS.' +p221990 +sg25273 +S'punch engraving' +p221991 +sg25275 +S'1582' +p221992 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad04.jpg' +p221993 +sg25267 +g27 +sa(dp221994 +g25268 +S'Saturn' +p221995 +sg25270 +S'Master IS.' +p221996 +sg25273 +S'punch engraving' +p221997 +sg25275 +S'1582' +p221998 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acf5.jpg' +p221999 +sg25267 +g27 +sa(dp222000 +g25268 +S'The Resurrection' +p222001 +sg25270 +S'Master of the Boccaccio Illustrations' +p222002 +sg25273 +S'engraving' +p222003 +sg25275 +S'c. 1470/1475' +p222004 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccda.jpg' +p222005 +sg25267 +g27 +sa(dp222006 +g25268 +S'The Two Armies at the Battle of Ravenna' +p222007 +sg25270 +S'Master NA.DAT with the Mousetrap' +p222008 +sg25273 +S'engraving' +p222009 +sg25275 +S'probably c. 1512/1513' +p222010 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c83b.jpg' +p222011 +sg25267 +g27 +sa(dp222012 +g25268 +S'Junction of Severn and Wye' +p222013 +sg25270 +S'Joseph Mallord William Turner' +p222014 +sg25273 +S'etching' +p222015 +sg25275 +S'published 1811' +p222016 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a63.jpg' +p222017 +sg25267 +g27 +sa(dp222018 +g25268 +S'Virgin and Child Enthroned with Saint Anne' +p222019 +sg25270 +S'Master NA.DAT with the Mousetrap' +p222020 +sg25273 +S'engraving' +p222021 +sg25275 +S'c. 1512/1513' +p222022 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c751.jpg' +p222023 +sg25267 +g27 +sa(dp222024 +g25268 +S'Design for a Beaker and a Pax' +p222025 +sg25270 +S'Master of St. Sebastian' +p222026 +sg25273 +S'engraving' +p222027 +sg25275 +S'c. 1480' +p222028 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a408.jpg' +p222029 +sg25267 +g27 +sa(dp222030 +g25268 +S'The Madonna and Child with Saint Anne' +p222031 +sg25270 +S'Master of St. Sebastian' +p222032 +sg25273 +S'engraving' +p222033 +sg25275 +S'c. 1460' +p222034 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a407.jpg' +p222035 +sg25267 +g27 +sa(dp222036 +g25268 +S'The Last Judgment [right]' +p222037 +sg25270 +S'Master of St. Erasmus' +p222038 +sg25273 +S'engraving' +p222039 +sg25275 +S'c. 1450/1460' +p222040 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a40a.jpg' +p222041 +sg25267 +g27 +sa(dp222042 +g25268 +S"Christ's Entry into Jerusalem [left]" +p222043 +sg25270 +S'Master of St. Erasmus' +p222044 +sg25273 +S'engraving' +p222045 +sg25275 +S'c. 1450/1460' +p222046 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a409.jpg' +p222047 +sg25267 +g27 +sa(dp222048 +g25268 +S'Christ before Pilate' +p222049 +sg25270 +S'German 15th Century' +p222050 +sg25273 +S'Schreiber Manuel, no. 3448' +p222051 +sg25275 +S'\nhand-colored woodcut' +p222052 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a603.jpg' +p222053 +sg25267 +g27 +sa(dp222054 +g25268 +S'Saint James the Greater' +p222055 +sg25270 +S'Master of the Berlin Passion' +p222056 +sg25273 +S'engraving' +p222057 +sg25275 +S'c. 1465' +p222058 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a430.jpg' +p222059 +sg25267 +g27 +sa(dp222060 +g25268 +S'Saint Peter' +p222061 +sg25270 +S'Master of the Berlin Passion' +p222062 +sg25273 +S'engraving' +p222063 +sg25275 +S'c. 1465' +p222064 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a431.jpg' +p222065 +sg25267 +g27 +sa(dp222066 +g25268 +S'Ornament with Wild Folk' +p222067 +sg25270 +S'Artist Information (' +p222068 +sg25273 +S'German, active c. 1450 - active 1467' +p222069 +sg25275 +S'(related artist)' +p222070 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3c0.jpg' +p222071 +sg25267 +g27 +sa(dp222072 +g25268 +S'Saint Augustine' +p222073 +sg25270 +S'Master with the Banderoles' +p222074 +sg25273 +S'engraving' +p222075 +sg25275 +S'c. 1450/1460' +p222076 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3d6.jpg' +p222077 +sg25267 +g27 +sa(dp222078 +g25268 +S'Junction of Severn and Wye' +p222079 +sg25270 +S'Joseph Mallord William Turner' +p222080 +sg25273 +S'etching, mezzotint, and aquatint' +p222081 +sg25275 +S'published 1811' +p222082 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a60.jpg' +p222083 +sg25267 +g27 +sa(dp222084 +g25268 +S'Saint Benedict and the Monk Romanus' +p222085 +sg25270 +S'Master of St. Wolfgang' +p222086 +sg25273 +S'hand-colored engraving on (vellum?)' +p222087 +sg25275 +S'c. 1440/1450' +p222088 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a40f.jpg' +p222089 +sg25267 +g27 +sa(dp222090 +g25268 +S'Richly Embellished Goblet' +p222091 +sg25270 +S'Mathis Zundt' +p222092 +sg25273 +S'etching' +p222093 +sg25275 +S'unknown date\n' +p222094 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad5e.jpg' +p222095 +sg25267 +g27 +sa(dp222096 +g25268 +S'Pilate Washing His Hands' +p222097 +sg25270 +S'Master S' +p222098 +sg25273 +S'engraving' +p222099 +sg25275 +S'unknown date\n' +p222100 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce9f.jpg' +p222101 +sg25267 +g27 +sa(dp222102 +g25268 +S'The Entombment' +p222103 +sg25270 +S'Master S' +p222104 +sg25273 +S'engraving' +p222105 +sg25275 +S'unknown date\n' +p222106 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cea0.jpg' +p222107 +sg25267 +g27 +sa(dp222108 +g25268 +S'Lot and His Daughters' +p222109 +sg25270 +S'Master S' +p222110 +sg25273 +S'engraving' +p222111 +sg25275 +S'unknown date\n' +p222112 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce9e.jpg' +p222113 +sg25267 +g27 +sa(dp222114 +g25268 +S'Lucretia' +p222115 +sg25270 +S'Master S' +p222116 +sg25273 +S'engraving' +p222117 +sg25275 +S'unknown date\n' +p222118 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cea1.jpg' +p222119 +sg25267 +g27 +sa(dp222120 +g25268 +S'Saint Mary Magdalene and Saint John the Evangelist' +p222121 +sg25270 +S'Master S' +p222122 +sg25273 +S'engraving' +p222123 +sg25275 +S'unknown date\n' +p222124 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cea5.jpg' +p222125 +sg25267 +g27 +sa(dp222126 +g25268 +S'Saint Barbara' +p222127 +sg25270 +S'Master S' +p222128 +sg25273 +S'engraving' +p222129 +sg25275 +S'unknown date\n' +p222130 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cea4.jpg' +p222131 +sg25267 +g27 +sa(dp222132 +g25268 +S'Ornament with a Cupid, a Satyr, and Grotesque Figures' +p222133 +sg25270 +S'Master of the Horse Heads' +p222134 +sg25273 +S'etching' +p222135 +sg25275 +S'unknown date\n' +p222136 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cea9.jpg' +p222137 +sg25267 +g27 +sa(dp222138 +g25268 +S'Upright Ornament with Two Sirens' +p222139 +sg25270 +S'Master of the Horse Heads' +p222140 +sg25273 +S'etching' +p222141 +sg25275 +S'unknown date\n' +p222142 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cea2.jpg' +p222143 +sg25267 +g27 +sa(dp222144 +g25268 +S'Scene in the Campagna' +p222145 +sg25270 +S'Joseph Mallord William Turner' +p222146 +sg25273 +S'etching' +p222147 +sg25275 +S'published 1812' +p222148 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a65.jpg' +p222149 +sg25267 +g27 +sa(dp222150 +g25268 +S'The Magdalen' +p222151 +sg25270 +S'Artist Information (' +p222152 +sg25273 +S'(artist after)' +p222153 +sg25275 +S'\n' +p222154 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c745.jpg' +p222155 +sg25267 +g27 +sa(dp222156 +g25268 +S'Envy Driven from the Temple of the Muses' +p222157 +sg25270 +S'Artist Information (' +p222158 +sg25273 +S'(artist after)' +p222159 +sg25275 +S'\n' +p222160 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c83a.jpg' +p222161 +sg25267 +g27 +sa(dp222162 +g25268 +S'Naval Battle' +p222163 +sg25270 +S'Artist Information (' +p222164 +sg25273 +S'(artist after)' +p222165 +sg25275 +S'\n' +p222166 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c834.jpg' +p222167 +sg25267 +g27 +sa(dp222168 +g25268 +S'The Triumph of Scipio' +p222169 +sg25270 +S'Master of the Die' +p222170 +sg25273 +S'engraving' +p222171 +sg25275 +S'unknown date\n' +p222172 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c839.jpg' +p222173 +sg25267 +g27 +sa(dp222174 +g25268 +S'Hercules and Cacus' +p222175 +sg25270 +S'Master of 1515' +p222176 +sg25273 +S'engraving' +p222177 +sg25275 +S'c. 1515/1520' +p222178 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c747.jpg' +p222179 +sg25267 +g27 +sa(dp222180 +g25268 +S'The Holy Family in a Landscape' +p222181 +sg25270 +S'Master NAR' +p222182 +sg25273 +S'engraving' +p222183 +sg25275 +S'16th century' +p222184 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ceaa.jpg' +p222185 +sg25267 +g27 +sa(dp222186 +g25268 +S'The Crowning with Thorns' +p222187 +sg25270 +S'Artist Information (' +p222188 +sg25273 +S'German, active c. 1430/1455' +p222189 +sg25275 +S'(related artist)' +p222190 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a40e.jpg' +p222191 +sg25267 +g27 +sa(dp222192 +g25268 +S'The Betrayal of Christ' +p222193 +sg25270 +S'Master I.A.M. of Zwolle' +p222194 +sg25273 +S'engraving' +p222195 +sg25275 +S'c. 1485' +p222196 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccf9.jpg' +p222197 +sg25267 +g27 +sa(dp222198 +g25268 +S'The Mount of Calvary' +p222199 +sg25270 +S'Master I.A.M. of Zwolle' +p222200 +sg25273 +S'engraving' +p222201 +sg25275 +S'c. 1480' +p222202 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccfa.jpg' +p222203 +sg25267 +g27 +sa(dp222204 +g25268 +S'The Apostle Simon' +p222205 +sg25270 +S'Artist Information (' +p222206 +sg25273 +S'(artist after)' +p222207 +sg25275 +S'\n' +p222208 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a410.jpg' +p222209 +sg25267 +g27 +sa(dp222210 +g25268 +S'Scene in the Campagna' +p222211 +sg25270 +S'Artist Information (' +p222212 +sg25273 +S'(artist)' +p222213 +sg25275 +S'\n' +p222214 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a67.jpg' +p222215 +sg25267 +g27 +sa(dp222216 +g25268 +S'Man and Woman Embracing' +p222217 +sg25270 +S'Master NW' +p222218 +sg25273 +S'stipple' +p222219 +sg25275 +S'unknown date\n' +p222220 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b28f.jpg' +p222221 +sg25267 +g27 +sa(dp222222 +g25268 +S'Ornament' +p222223 +sg25270 +S'Master T.F.' +p222224 +sg25273 +S'engraving' +p222225 +sg25275 +S'unknown date\n' +p222226 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083b4.jpg' +p222227 +sg25267 +g27 +sa(dp222228 +g25268 +S'Ornament' +p222229 +sg25270 +S'Master T.F.' +p222230 +sg25273 +S'engraving' +p222231 +sg25275 +S'unknown date\n' +p222232 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a00083a9.jpg' +p222233 +sg25267 +g27 +sa(dp222234 +g25268 +S'Ornament' +p222235 +sg25270 +S'Master T.F.' +p222236 +sg25273 +S'engraving' +p222237 +sg25275 +S'unknown date\n' +p222238 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a000839e.jpg' +p222239 +sg25267 +g27 +sa(dp222240 +g25268 +S'Ornament' +p222241 +sg25270 +S'Master T.F.' +p222242 +sg25273 +S'engraving' +p222243 +sg25275 +S'unknown date\n' +p222244 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00083/a0008393.jpg' +p222245 +sg25267 +g27 +sa(dp222246 +g25268 +S'Hercules and Antaeus' +p222247 +sg25270 +S'Artist Information (' +p222248 +sg25273 +S'(artist after)' +p222249 +sg25275 +S'\n' +p222250 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cea7.jpg' +p222251 +sg25267 +g27 +sa(dp222252 +g25268 +S'The Flight into Egypt' +p222253 +sg25270 +S'Artist Information (' +p222254 +sg25273 +S'(artist after)' +p222255 +sg25275 +S'\n' +p222256 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acff.jpg' +p222257 +sg25267 +g27 +sa(dp222258 +g25268 +S'Judgment of Paris' +p222259 +sg25270 +S'Master IS' +p222260 +sg25273 +S'engraving' +p222261 +sg25275 +S'1534' +p222262 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acf6.jpg' +p222263 +sg25267 +g27 +sa(dp222264 +g25268 +S'The Nativity' +p222265 +sg25270 +S'Master I.I.CA' +p222266 +sg25273 +S'engraving' +p222267 +sg25275 +S'c. 1500/1510' +p222268 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c83d.jpg' +p222269 +sg25267 +g27 +sa(dp222270 +g25268 +S'Hercules Killing the Lion' +p222271 +sg25270 +S'Master HVE' +p222272 +sg25273 +S'engraving' +p222273 +sg25275 +S'unknown date\n' +p222274 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acb6.jpg' +p222275 +sg25267 +g27 +sa(dp222276 +g25268 +S'Hedging and Ditching' +p222277 +sg25270 +S'Joseph Mallord William Turner' +p222278 +sg25273 +S'etching' +p222279 +sg25275 +S'published 1812' +p222280 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a73.jpg' +p222281 +sg25267 +g27 +sa(dp222282 +g25268 +S'Mutius Scaevola' +p222283 +sg25270 +S'Master FG' +p222284 +sg25273 +S'engraving' +p222285 +sg25275 +S'1537' +p222286 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acb2.jpg' +p222287 +sg25267 +g27 +sa(dp222288 +g25268 +S'Ornament with Grotesque' +p222289 +sg25270 +S'Master CR' +p222290 +sg25273 +S'engraving' +p222291 +sg25275 +S'1616' +p222292 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d27e.jpg' +p222293 +sg25267 +g27 +sa(dp222294 +g25268 +S'Ornament with Grotesque' +p222295 +sg25270 +S'Master CR' +p222296 +sg25273 +S'engraving' +p222297 +sg25275 +S'1616' +p222298 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d27d.jpg' +p222299 +sg25267 +g27 +sa(dp222300 +g25268 +S'Ornament with Grotesque' +p222301 +sg25270 +S'Master CR' +p222302 +sg25273 +S'engraving' +p222303 +sg25275 +S'1616' +p222304 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d27c.jpg' +p222305 +sg25267 +g27 +sa(dp222306 +g25268 +S'Ornament with Grotesque' +p222307 +sg25270 +S'Master CR' +p222308 +sg25273 +S'engraving' +p222309 +sg25275 +S'1616' +p222310 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d27b.jpg' +p222311 +sg25267 +g27 +sa(dp222312 +g25268 +S'Ornament with Grotesque' +p222313 +sg25270 +S'Master CR' +p222314 +sg25273 +S'engraving' +p222315 +sg25275 +S'1616' +p222316 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d27a.jpg' +p222317 +sg25267 +g27 +sa(dp222318 +g25268 +S'Ornament with Grotesque' +p222319 +sg25270 +S'Master CR' +p222320 +sg25273 +S'engraving' +p222321 +sg25275 +S'1616' +p222322 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d279.jpg' +p222323 +sg25267 +g27 +sa(dp222324 +g25268 +S'Ornament' +p222325 +sg25270 +S'Master AD' +p222326 +sg25273 +S'engraving' +p222327 +sg25275 +S'unknown date\n' +p222328 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac1b.jpg' +p222329 +sg25267 +g27 +sa(dp222330 +g25268 +S'Ornament' +p222331 +sg25270 +S'Master AD' +p222332 +sg25273 +S'engraving' +p222333 +sg25275 +S'unknown date\n' +p222334 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ace7.jpg' +p222335 +sg25267 +g27 +sa(dp222336 +g25268 +S'Ornament' +p222337 +sg25270 +S'Master AD' +p222338 +sg25273 +S'engraving' +p222339 +sg25275 +S'unknown date\n' +p222340 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ace6.jpg' +p222341 +sg25267 +g27 +sa(dp222342 +g25268 +S'Hedging and Ditching' +p222343 +sg25270 +S'Artist Information (' +p222344 +sg25273 +S'(artist)' +p222345 +sg25275 +S'\n' +p222346 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a78.jpg' +p222347 +sg25267 +g27 +sa(dp222348 +g25268 +S'Ornament' +p222349 +sg25270 +S'Master AD' +p222350 +sg25273 +S'engraving' +p222351 +sg25275 +S'unknown date\n' +p222352 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acdd.jpg' +p222353 +sg25267 +g27 +sa(dp222354 +g25268 +S'Ornament' +p222355 +sg25270 +S'Master AD' +p222356 +sg25273 +S'engraving' +p222357 +sg25275 +S'unknown date\n' +p222358 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acde.jpg' +p222359 +sg25267 +g27 +sa(dp222360 +g25268 +S'Scourging of Christ' +p222361 +sg25270 +S'German 15th Century' +p222362 +sg25273 +S'Schreiber Manuel, no. 3448' +p222363 +sg25275 +S'\nhand-colored woodcut' +p222364 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a605.jpg' +p222365 +sg25267 +g27 +sa(dp222366 +g25268 +S'Martyr with an Angel' +p222367 +sg25270 +S'Jacob Matham' +p222368 +sg25273 +S'pen and brown ink with brown-gray wash over black chalk' +p222369 +sg25275 +S'unknown date\n' +p222370 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dec.jpg' +p222371 +sg25267 +g27 +sa(dp222372 +g25273 +S'lithograph' +p222373 +sg25267 +g27 +sg25275 +S'1922' +p222374 +sg25268 +S'Yellow Dress with Black Ribbon (La robe jaune au ruban noir)' +p222375 +sg25270 +S'Henri Matisse' +p222376 +sa(dp222377 +g25273 +S'lithograph' +p222378 +sg25267 +g27 +sg25275 +S'1929' +p222379 +sg25268 +S'The Persian (La Persane)' +p222380 +sg25270 +S'Henri Matisse' +p222381 +sa(dp222382 +g25273 +S'lithograph' +p222383 +sg25267 +g27 +sg25275 +S'1929' +p222384 +sg25268 +S'Nude in a Turban (Nu au turban)' +p222385 +sg25270 +S'Henri Matisse' +p222386 +sa(dp222387 +g25273 +S'graphite on wove paper' +p222388 +sg25267 +g27 +sg25275 +S'c. 1921' +p222389 +sg25268 +S'Odalisque' +p222390 +sg25270 +S'Henri Matisse' +p222391 +sa(dp222392 +g25273 +S'lithograph' +p222393 +sg25267 +g27 +sg25275 +S'1925' +p222394 +sg25268 +S'Seated Nude with Tulle Blouse (Nu assis \xc3\xa0 la chemise de tulle)' +p222395 +sg25270 +S'Henri Matisse' +p222396 +sa(dp222397 +g25273 +S'lithograph' +p222398 +sg25267 +g27 +sg25275 +S'1925' +p222399 +sg25268 +S'Bust of a Young Girl, Arms Crossed (Buste de jeune fille, les bras crois\xc3\xa9s)' +p222400 +sg25270 +S'Henri Matisse' +p222401 +sa(dp222402 +g25268 +S'The Needlewoman' +p222403 +sg25270 +S'Diego Vel\xc3\xa1zquez' +p222404 +sg25273 +S'oil on canvas' +p222405 +sg25275 +S'c. 1640/1650' +p222406 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004b1.jpg' +p222407 +sg25267 +S"Diego Velázquez ranks among the greatest masters of seventeenth-century Europe.\nBy 1623, the twenty-four-year-old artist was established as court painter to Philip\nIV in Madrid. For nearly forty years, he was primarily occupied with painting remarkably\ninnovative portraits of the monarch and the royal family. But in his spare hours,\nVelázquez turned to subjects that interested him personally; \n His observation of the optical effects of light on the forms he painted caused\nVelázquez\nto abandon the tenebrism -- or extreme contrast of lights and darks -- that characterized\nhis earlier works in favor of a softer style. Here, no area is obscured by darkness.\nThe artist used a gentle light and deep, but translucent, shadow to reveal each\nplane of the face, to sculpt the swelling bosom, and to suggest the repetitive motion\nof the hand.\n Because the painting remains unfinished, the steps in the artist's process are visible.\nHe began by priming the canvas with a gray-green base. Next, he indicated the main\nforms of the composition, sketching them in with darker paint, then brushing them\nin with broad areas of opaque color, and finally, building up the face -- the only\narea that appears to be finished -- with transparent layers of glaze, giving it the\neffect of flesh seen through softly diffused light.\n " +p222408 +sa(dp222409 +g25268 +S'Mill near the Grand Chartreuse' +p222410 +sg25270 +S'Joseph Mallord William Turner' +p222411 +sg25273 +S'etching' +p222412 +sg25275 +S'published 1816' +p222413 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a7c.jpg' +p222414 +sg25267 +g27 +sa(dp222415 +g25273 +S'etching' +p222416 +sg25267 +g27 +sg25275 +S'1914' +p222417 +sg25268 +S"Head of a Child - Apollon (T\xc3\xaate d'enfant - Apollon)" +p222418 +sg25270 +S'Henri Matisse' +p222419 +sa(dp222420 +g25273 +S'lithograph' +p222421 +sg25267 +g27 +sg25275 +S'1923' +p222422 +sg25268 +S'Odalisque with Necklace (Odalisque au collier)' +p222423 +sg25270 +S'Henri Matisse' +p222424 +sa(dp222425 +g25273 +S'lithograph' +p222426 +sg25267 +g27 +sg25275 +S'unknown date\n' +p222427 +sg25268 +S'Neighbors' +p222428 +sg25270 +S'Merritt Mauzey' +p222429 +sa(dp222430 +g25273 +S'etching' +p222431 +sg25267 +g27 +sg25275 +S'1911' +p222432 +sg25268 +S'Benicarlo' +p222433 +sg25270 +S'James McBey' +p222434 +sa(dp222435 +g25273 +S'etching and drypoint' +p222436 +sg25267 +g27 +sg25275 +S'1911' +p222437 +sg25268 +S'Bridge of San Martin, Toledo' +p222438 +sg25270 +S'James McBey' +p222439 +sa(dp222440 +g25273 +S'drypoint' +p222441 +sg25267 +g27 +sg25275 +S'1911' +p222442 +sg25268 +S'Valencia Beach' +p222443 +sg25270 +S'James McBey' +p222444 +sa(dp222445 +g25273 +S'etching' +p222446 +sg25267 +g27 +sg25275 +S'1911' +p222447 +sg25268 +S'Benicasim' +p222448 +sg25270 +S'James McBey' +p222449 +sa(dp222450 +g25273 +S'etching and drypoint' +p222451 +sg25267 +g27 +sg25275 +S'1911' +p222452 +sg25268 +S'Alcantara Bridge, Toledo' +p222453 +sg25270 +S'James McBey' +p222454 +sa(dp222455 +g25273 +S'etching' +p222456 +sg25267 +g27 +sg25275 +S'1911' +p222457 +sg25268 +S'Avila' +p222458 +sg25270 +S'James McBey' +p222459 +sa(dp222460 +g25273 +S'etching and drypoint' +p222461 +sg25267 +g27 +sg25275 +S'1911' +p222462 +sg25268 +S'Burgos' +p222463 +sg25270 +S'James McBey' +p222464 +sa(dp222465 +g25268 +S'Mill near the Grand Chartreuse' +p222466 +sg25270 +S'Artist Information (' +p222467 +sg25273 +S'(artist)' +p222468 +sg25275 +S'\n' +p222469 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a7d.jpg' +p222470 +sg25267 +g27 +sa(dp222471 +g25273 +S'etching and drypoint' +p222472 +sg25267 +g27 +sg25275 +S'1911' +p222473 +sg25268 +S'Old Castile' +p222474 +sg25270 +S'James McBey' +p222475 +sa(dp222476 +g25273 +S'etching' +p222477 +sg25267 +g27 +sg25275 +S'1911' +p222478 +sg25268 +S'Poitiers' +p222479 +sg25270 +S'James McBey' +p222480 +sa(dp222481 +g25273 +S'etching' +p222482 +sg25267 +g27 +sg25275 +S'1911' +p222483 +sg25268 +S'Benachie' +p222484 +sg25270 +S'James McBey' +p222485 +sa(dp222486 +g25273 +S'etching' +p222487 +sg25267 +g27 +sg25275 +S'1911' +p222488 +sg25268 +S'Early Morning, Fintray' +p222489 +sg25270 +S'James McBey' +p222490 +sa(dp222491 +g25273 +S'etching' +p222492 +sg25267 +g27 +sg25275 +S'1911' +p222493 +sg25268 +S'Fintray, No.1' +p222494 +sg25270 +S'James McBey' +p222495 +sa(dp222496 +g25273 +S'etching and drypoint' +p222497 +sg25267 +g27 +sg25275 +S'1911' +p222498 +sg25268 +S'Old Machar Towers, No.2' +p222499 +sg25270 +S'James McBey' +p222500 +sa(dp222501 +g25273 +S'etching' +p222502 +sg25267 +g27 +sg25275 +S'1911' +p222503 +sg25268 +S'Old Machar Towers, No.1' +p222504 +sg25270 +S'James McBey' +p222505 +sa(dp222506 +g25273 +S'etching' +p222507 +sg25267 +g27 +sg25275 +S'1910' +p222508 +sg25268 +S'The Amstel' +p222509 +sg25270 +S'James McBey' +p222510 +sa(dp222511 +g25273 +S'etching' +p222512 +sg25267 +g27 +sg25275 +S'1910' +p222513 +sg25268 +S'Durgerdam' +p222514 +sg25270 +S'James McBey' +p222515 +sa(dp222516 +g25273 +S'etching' +p222517 +sg25267 +g27 +sg25275 +S'1910' +p222518 +sg25268 +S'Omval' +p222519 +sg25270 +S'James McBey' +p222520 +sa(dp222521 +g25268 +S'Isleworth' +p222522 +sg25270 +S'Joseph Mallord William Turner' +p222523 +sg25273 +S'etching' +p222524 +sg25275 +S'published 1819' +p222525 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a8e.jpg' +p222526 +sg25267 +g27 +sa(dp222527 +g25273 +S'etching' +p222528 +sg25267 +g27 +sg25275 +S'1910' +p222529 +sg25268 +S'Monnickendam Sawmill' +p222530 +sg25270 +S'James McBey' +p222531 +sa(dp222532 +g25273 +S'etching' +p222533 +sg25267 +g27 +sg25275 +S'1910' +p222534 +sg25268 +S'Monnickendam' +p222535 +sg25270 +S'James McBey' +p222536 +sa(dp222537 +g25273 +S'etching' +p222538 +sg25267 +g27 +sg25275 +S'1910' +p222539 +sg25268 +S'Ransdorp' +p222540 +sg25270 +S'James McBey' +p222541 +sa(dp222542 +g25273 +S'etching' +p222543 +sg25267 +g27 +sg25275 +S'1910' +p222544 +sg25268 +S'Amsterdam from Ransdorp' +p222545 +sg25270 +S'James McBey' +p222546 +sa(dp222547 +g25273 +S'etching' +p222548 +sg25267 +g27 +sg25275 +S'1910' +p222549 +sg25268 +S'Zaandijk' +p222550 +sg25270 +S'James McBey' +p222551 +sa(dp222552 +g25273 +S'etching' +p222553 +sg25267 +g27 +sg25275 +S'1910' +p222554 +sg25268 +S'The Mill, Zaandijk' +p222555 +sg25270 +S'James McBey' +p222556 +sa(dp222557 +g25273 +S'etching' +p222558 +sg25267 +g27 +sg25275 +S'1910' +p222559 +sg25268 +S'A Volendam Girl' +p222560 +sg25270 +S'James McBey' +p222561 +sa(dp222562 +g25273 +S'etching' +p222563 +sg25267 +g27 +sg25275 +S'1910' +p222564 +sg25268 +S'Hoorn Cheesemarket' +p222565 +sg25270 +S'James McBey' +p222566 +sa(dp222567 +g25273 +S'etching' +p222568 +sg25267 +g27 +sg25275 +S'1910' +p222569 +sg25268 +S'Enkhuisen' +p222570 +sg25270 +S'James McBey' +p222571 +sa(dp222572 +g25273 +S'etching' +p222573 +sg25267 +g27 +sg25275 +S'1910' +p222574 +sg25268 +S'Enkhuisen Harbour' +p222575 +sg25270 +S'James McBey' +p222576 +sa(dp222577 +g25268 +S'Isleworth' +p222578 +sg25270 +S'Artist Information (' +p222579 +sg25273 +S'(artist)' +p222580 +sg25275 +S'\n' +p222581 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a8d.jpg' +p222582 +sg25267 +g27 +sa(dp222583 +g25273 +S'etching' +p222584 +sg25267 +g27 +sg25275 +S'1910' +p222585 +sg25268 +S'Enkhuisen Harbour' +p222586 +sg25270 +S'James McBey' +p222587 +sa(dp222588 +g25273 +S'etching' +p222589 +sg25267 +g27 +sg25275 +S'1910' +p222590 +sg25268 +S'Ransdorp Church' +p222591 +sg25270 +S'James McBey' +p222592 +sa(dp222593 +g25273 +S'etching' +p222594 +sg25267 +g27 +sg25275 +S'1910' +p222595 +sg25268 +S'Haarlem' +p222596 +sg25270 +S'James McBey' +p222597 +sa(dp222598 +g25273 +S'etching' +p222599 +sg25267 +g27 +sg25275 +S'1910' +p222600 +sg25268 +S'Nigg Church, No.2' +p222601 +sg25270 +S'James McBey' +p222602 +sa(dp222603 +g25273 +S'etching' +p222604 +sg25267 +g27 +sg25275 +S'1910' +p222605 +sg25268 +S'The Cheese-Press' +p222606 +sg25270 +S'James McBey' +p222607 +sa(dp222608 +g25273 +S'etching' +p222609 +sg25267 +g27 +sg25275 +S'1909' +p222610 +sg25268 +S'Cleaning Fish, Portlethen' +p222611 +sg25270 +S'James McBey' +p222612 +sa(dp222613 +g25273 +S'etching' +p222614 +sg25267 +g27 +sg25275 +S'1909' +p222615 +sg25268 +S'Morning, Catterline' +p222616 +sg25270 +S'James McBey' +p222617 +sa(dp222618 +g25273 +S'etching' +p222619 +sg25267 +g27 +sg25275 +S'1908' +p222620 +sg25268 +S'Herring Fleet, Aberdeen' +p222621 +sg25270 +S'James McBey' +p222622 +sa(dp222623 +g25273 +S'etching' +p222624 +sg25267 +g27 +sg25275 +S'1905' +p222625 +sg25268 +S'Albert Basin, Aberdeen' +p222626 +sg25270 +S'James McBey' +p222627 +sa(dp222628 +g25273 +S'etching' +p222629 +sg25267 +g27 +sg25275 +S'1905' +p222630 +sg25268 +S'Logie Buchan Ferry' +p222631 +sg25270 +S'James McBey' +p222632 +sa(dp222633 +g25268 +S'Aesacus and Hesperie' +p222634 +sg25270 +S'Joseph Mallord William Turner' +p222635 +sg25273 +S'etching' +p222636 +sg25275 +S'published 1816' +p222637 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a91.jpg' +p222638 +sg25267 +g27 +sa(dp222639 +g25273 +S'etching' +p222640 +sg25267 +g27 +sg25275 +S'1905' +p222641 +sg25268 +S'Waterton Ferry, Ellon' +p222642 +sg25270 +S'James McBey' +p222643 +sa(dp222644 +g25273 +S'etching' +p222645 +sg25267 +g27 +sg25275 +S'1905' +p222646 +sg25268 +S'Moonlight in the Wood' +p222647 +sg25270 +S'James McBey' +p222648 +sa(dp222649 +g25273 +S'etching' +p222650 +sg25267 +g27 +sg25275 +S'1905' +p222651 +sg25268 +S'Bridge near Leith' +p222652 +sg25270 +S'James McBey' +p222653 +sa(dp222654 +g25273 +S'etching' +p222655 +sg25267 +g27 +sg25275 +S'1905' +p222656 +sg25268 +S"Heron's Close" +p222657 +sg25270 +S'James McBey' +p222658 +sa(dp222659 +g25273 +S'etching' +p222660 +sg25267 +g27 +sg25275 +S'1905' +p222661 +sg25268 +S'Edinburgh Castle' +p222662 +sg25270 +S'James McBey' +p222663 +sa(dp222664 +g25273 +S'etching' +p222665 +sg25267 +g27 +sg25275 +S'1905' +p222666 +sg25268 +S'The Grassmarket' +p222667 +sg25270 +S'James McBey' +p222668 +sa(dp222669 +g25273 +S'etching' +p222670 +sg25267 +g27 +sg25275 +S'1905' +p222671 +sg25268 +S'Warriston Close' +p222672 +sg25270 +S'James McBey' +p222673 +sa(dp222674 +g25273 +S'etching' +p222675 +sg25267 +g27 +sg25275 +S'1904/1905' +p222676 +sg25268 +S'The Cowgate, Edinburgh' +p222677 +sg25270 +S'James McBey' +p222678 +sa(dp222679 +g25273 +S'etching' +p222680 +sg25267 +g27 +sg25275 +S'1904/1905' +p222681 +sg25268 +S'Calton Hill' +p222682 +sg25270 +S'James McBey' +p222683 +sa(dp222684 +g25273 +S'etching' +p222685 +sg25267 +g27 +sg25275 +S'1904/1905' +p222686 +sg25268 +S"Princes' Street" +p222687 +sg25270 +S'James McBey' +p222688 +sa(dp222689 +g25268 +S'Aesacus and Hesperie' +p222690 +sg25270 +S'Joseph Mallord William Turner' +p222691 +sg25273 +S'etching' +p222692 +sg25275 +S'published 1816' +p222693 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a90.jpg' +p222694 +sg25267 +g27 +sa(dp222695 +g25273 +S'etching' +p222696 +sg25267 +g27 +sg25275 +S'1904/1905' +p222697 +sg25268 +S'The Fountain, Holyrood' +p222698 +sg25270 +S'James McBey' +p222699 +sa(dp222700 +g25273 +S'etching' +p222701 +sg25267 +g27 +sg25275 +S'1904/1905' +p222702 +sg25268 +S'Inverleith' +p222703 +sg25270 +S'James McBey' +p222704 +sa(dp222705 +g25273 +S'etching' +p222706 +sg25267 +g27 +sg25275 +S'1904/1905' +p222707 +sg25268 +S"John Knox's House" +p222708 +sg25270 +S'James McBey' +p222709 +sa(dp222710 +g25273 +S'etching on blue-green paper' +p222711 +sg25267 +g27 +sg25275 +S'1904/1905' +p222712 +sg25268 +S'Plumstone Close' +p222713 +sg25270 +S'James McBey' +p222714 +sa(dp222715 +g25273 +S'etching' +p222716 +sg25267 +g27 +sg25275 +S'1904' +p222717 +sg25268 +S'Calton Jail, Edinburgh' +p222718 +sg25270 +S'James McBey' +p222719 +sa(dp222720 +g25273 +S'etching' +p222721 +sg25267 +g27 +sg25275 +S'1904' +p222722 +sg25268 +S'North Bridge, Edinburgh' +p222723 +sg25270 +S'James McBey' +p222724 +sa(dp222725 +g25273 +S'etching' +p222726 +sg25267 +g27 +sg25275 +S'1904' +p222727 +sg25268 +S'The Dean Bridge, Edinburgh' +p222728 +sg25270 +S'James McBey' +p222729 +sa(dp222730 +g25273 +S'etching' +p222731 +sg25267 +g27 +sg25275 +S'1904' +p222732 +sg25268 +S'Shipbuilding Yards' +p222733 +sg25270 +S'James McBey' +p222734 +sa(dp222735 +g25273 +S'etching' +p222736 +sg25267 +g27 +sg25275 +S'1903' +p222737 +sg25268 +S"Hole I' the Wa', Aberdeen" +p222738 +sg25270 +S'James McBey' +p222739 +sa(dp222740 +g25273 +S'etching' +p222741 +sg25267 +g27 +sg25275 +S'1903' +p222742 +sg25268 +S'Portsoy Harbour' +p222743 +sg25270 +S'James McBey' +p222744 +sa(dp222745 +g25268 +S'Isis' +p222746 +sg25270 +S'Joseph Mallord William Turner' +p222747 +sg25273 +S'etching' +p222748 +sg25275 +S'published 1819' +p222749 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a94.jpg' +p222750 +sg25267 +g27 +sa(dp222751 +g25273 +S'etching' +p222752 +sg25267 +g27 +sg25275 +S'1902' +p222753 +sg25268 +S'Boys Fishing' +p222754 +sg25270 +S'James McBey' +p222755 +sa(dp222756 +g25273 +S'etching and drypoint' +p222757 +sg25267 +g27 +sg25275 +S'1915' +p222758 +sg25268 +S'The Isle of Ely' +p222759 +sg25270 +S'James McBey' +p222760 +sa(dp222761 +g25273 +S'etching' +p222762 +sg25267 +g27 +sg25275 +S'1911' +p222763 +sg25268 +S'Vinaroz' +p222764 +sg25270 +S'James McBey' +p222765 +sa(dp222766 +g25273 +S'etching' +p222767 +sg25267 +g27 +sg25275 +S'1911' +p222768 +sg25268 +S'Vinaroz - Boat Building' +p222769 +sg25270 +S'James McBey' +p222770 +sa(dp222771 +g25273 +S'etching and drypoint' +p222772 +sg25267 +g27 +sg25275 +S'1911' +p222773 +sg25268 +S'Sunrise at Tarragona' +p222774 +sg25270 +S'James McBey' +p222775 +sa(dp222776 +g25273 +S'drypoint' +p222777 +sg25267 +g27 +sg25275 +S'1911' +p222778 +sg25268 +S'The Picador Incites the Bull' +p222779 +sg25270 +S'James McBey' +p222780 +sa(dp222781 +g25273 +S'drypoint' +p222782 +sg25267 +g27 +sg25275 +S'1911' +p222783 +sg25268 +S'The Picador Unhorsed' +p222784 +sg25270 +S'James McBey' +p222785 +sa(dp222786 +g25273 +S'drypoint' +p222787 +sg25267 +g27 +sg25275 +S'1911' +p222788 +sg25268 +S'The Banderillas' +p222789 +sg25270 +S'James McBey' +p222790 +sa(dp222791 +g25273 +S'drypoint' +p222792 +sg25267 +g27 +sg25275 +S'1911' +p222793 +sg25268 +S'The Matador' +p222794 +sg25270 +S'James McBey' +p222795 +sa(dp222796 +g25273 +S'drypoint' +p222797 +sg25267 +g27 +sg25275 +S'1911' +p222798 +sg25268 +S'The Ovation to the Matador' +p222799 +sg25270 +S'James McBey' +p222800 +sa(dp222801 +g25268 +S'Isis' +p222802 +sg25270 +S'Artist Information (' +p222803 +sg25273 +S'(artist)' +p222804 +sg25275 +S'\n' +p222805 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a97.jpg' +p222806 +sg25267 +g27 +sa(dp222807 +g25273 +S'etching and drypoint' +p222808 +sg25267 +g27 +sg25275 +S'1911' +p222809 +sg25268 +S'The Towy at Carmarthen' +p222810 +sg25270 +S'James McBey' +p222811 +sa(dp222812 +g25273 +S'drypoint' +p222813 +sg25267 +g27 +sg25275 +S'1911' +p222814 +sg25268 +S'Carmarthen' +p222815 +sg25270 +S'James McBey' +p222816 +sa(dp222817 +g25273 +S'etching and drypoint' +p222818 +sg25267 +g27 +sg25275 +S'1911' +p222819 +sg25268 +S'A View in Wales' +p222820 +sg25270 +S'James McBey' +p222821 +sa(dp222822 +g25273 +S'etching and drypoint' +p222823 +sg25267 +g27 +sg25275 +S'1912' +p222824 +sg25268 +S'April in Kent' +p222825 +sg25270 +S'James McBey' +p222826 +sa(dp222827 +g25273 +S'etching and drypoint' +p222828 +sg25267 +g27 +sg25275 +S'1912' +p222829 +sg25268 +S'Ebbesfleet' +p222830 +sg25270 +S'James McBey' +p222831 +sa(dp222832 +g25273 +S'drypoint' +p222833 +sg25267 +g27 +sg25275 +S'1912' +p222834 +sg25268 +S'Richborough Castle' +p222835 +sg25270 +S'James McBey' +p222836 +sa(dp222837 +g25273 +S'etching touched with drypoint' +p222838 +sg25267 +g27 +sg25275 +S'1912' +p222839 +sg25268 +S'The Skylark' +p222840 +sg25270 +S'James McBey' +p222841 +sa(dp222842 +g25273 +S'etching and drypoint' +p222843 +sg25267 +g27 +sg25275 +S'1912' +p222844 +sg25268 +S'The Shower' +p222845 +sg25270 +S'James McBey' +p222846 +sa(dp222847 +g25273 +S'drypoint' +p222848 +sg25267 +g27 +sg25275 +S'1912' +p222849 +sg25268 +S'Thanet from Richborough' +p222850 +sg25270 +S'James McBey' +p222851 +sa(dp222852 +g25273 +S'etching and drypoint' +p222853 +sg25267 +g27 +sg25275 +S'1912' +p222854 +sg25268 +S'A Lock at Sandwich, No.2' +p222855 +sg25270 +S'James McBey' +p222856 +sa(dp222857 +g25268 +S'The Woman of Samaria' +p222858 +sg25270 +S'Joseph Mallord William Turner' +p222859 +sg25273 +S'etching' +p222860 +sg25275 +S'published 1819' +p222861 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a99.jpg' +p222862 +sg25267 +g27 +sa(dp222863 +g25273 +S'etching' +p222864 +sg25267 +g27 +sg25275 +S'1912' +p222865 +sg25268 +S'The Foveran' +p222866 +sg25270 +S'James McBey' +p222867 +sa(dp222868 +g25273 +S'etching' +p222869 +sg25267 +g27 +sg25275 +S'1912' +p222870 +sg25268 +S'"1588"' +p222871 +sg25270 +S'James McBey' +p222872 +sa(dp222873 +g25273 +S'etching' +p222874 +sg25267 +g27 +sg25275 +S'1912' +p222875 +sg25268 +S'"1588"' +p222876 +sg25270 +S'James McBey' +p222877 +sa(dp222878 +g25273 +S'etching' +p222879 +sg25267 +g27 +sg25275 +S'1912' +p222880 +sg25268 +S'The Bread Market, Tetuan' +p222881 +sg25270 +S'James McBey' +p222882 +sa(dp222883 +g25273 +S'etching' +p222884 +sg25267 +g27 +sg25275 +S'1912' +p222885 +sg25268 +S'The Orange Seller' +p222886 +sg25270 +S'James McBey' +p222887 +sa(dp222888 +g25273 +S'etching' +p222889 +sg25267 +g27 +sg25275 +S'1912' +p222890 +sg25268 +S'The Jewish Quarter, Tetuan' +p222891 +sg25270 +S'James McBey' +p222892 +sa(dp222893 +g25273 +S'etching' +p222894 +sg25267 +g27 +sg25275 +S'1912' +p222895 +sg25268 +S'The Story-Teller' +p222896 +sg25270 +S'James McBey' +p222897 +sa(dp222898 +g25273 +S'etching' +p222899 +sg25267 +g27 +sg25275 +S'1912' +p222900 +sg25268 +S'View from the Gate, Tetuan' +p222901 +sg25270 +S'James McBey' +p222902 +sa(dp222903 +g25273 +S'etching' +p222904 +sg25267 +g27 +sg25275 +S'1912' +p222905 +sg25268 +S'Gunsmiths, Tetuan' +p222906 +sg25270 +S'James McBey' +p222907 +sa(dp222908 +g25273 +S'etching' +p222909 +sg25267 +g27 +sg25275 +S'1912' +p222910 +sg25268 +S'Beggars, Tetuan, No.2' +p222911 +sg25270 +S'James McBey' +p222912 +sa(dp222913 +g25268 +S'The Woman of Samaria' +p222914 +sg25270 +S'Artist Information (' +p222915 +sg25273 +S'(artist)' +p222916 +sg25275 +S'\n' +p222917 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a95.jpg' +p222918 +sg25267 +g27 +sa(dp222919 +g25273 +S'etching' +p222920 +sg25267 +g27 +sg25275 +S'1912' +p222921 +sg25268 +S'El Soko' +p222922 +sg25270 +S'James McBey' +p222923 +sa(dp222924 +g25273 +S'etching' +p222925 +sg25267 +g27 +sg25275 +S'1912' +p222926 +sg25268 +S'A Moroccan Market' +p222927 +sg25270 +S'James McBey' +p222928 +sa(dp222929 +g25273 +S'etching and drypoint' +p222930 +sg25267 +g27 +sg25275 +S'1913' +p222931 +sg25268 +S'The Approach to Tetuan' +p222932 +sg25270 +S'James McBey' +p222933 +sa(dp222934 +g25273 +S'etching and drypoint' +p222935 +sg25267 +g27 +sg25275 +S'1913' +p222936 +sg25268 +S'Tetuan' +p222937 +sg25270 +S'James McBey' +p222938 +sa(dp222939 +g25273 +S'etching and drypoint touched with pencil' +p222940 +sg25267 +g27 +sg25275 +S'1913' +p222941 +sg25268 +S'Road-Menders, Tetuan' +p222942 +sg25270 +S'James McBey' +p222943 +sa(dp222944 +g25273 +S'etching' +p222945 +sg25267 +g27 +sg25275 +S'1913' +p222946 +sg25268 +S'The Ford' +p222947 +sg25270 +S'James McBey' +p222948 +sa(dp222949 +g25273 +S'etching' +p222950 +sg25267 +g27 +sg25275 +S'1913' +p222951 +sg25268 +S'Tangier' +p222952 +sg25270 +S'James McBey' +p222953 +sa(dp222954 +g25273 +S'etching and drypoint' +p222955 +sg25267 +g27 +sg25275 +S'1913' +p222956 +sg25268 +S'The Timber Mill' +p222957 +sg25270 +S'James McBey' +p222958 +sa(dp222959 +g25273 +S'etching touched with drypoint' +p222960 +sg25267 +g27 +sg25275 +S'1913' +p222961 +sg25268 +S'Grimnessesluis' +p222962 +sg25270 +S'James McBey' +p222963 +sa(dp222964 +g25273 +S'etching and drypoint' +p222965 +sg25267 +g27 +sg25275 +S'1913' +p222966 +sg25268 +S'Penzance' +p222967 +sg25270 +S'James McBey' +p222968 +sa(dp222969 +g25268 +S'Portrait of a Young Man' +p222970 +sg25270 +S'Artist Information (' +p222971 +sg25273 +S'Spanish, 1599 - 1660' +p222972 +sg25275 +S'(related artist)' +p222973 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00006/a0000619.jpg' +p222974 +sg25267 +g27 +sa(dp222975 +g25268 +S'The Long Gallery, Louvre' +p222976 +sg25270 +S'James McNeill Whistler' +p222977 +sg25273 +S'lithograph in black on cream wove paper' +p222978 +sg25275 +S'1894' +p222979 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aada.jpg' +p222980 +sg25267 +g27 +sa(dp222981 +g25273 +S'etching' +p222982 +sg25267 +g27 +sg25275 +S'1913' +p222983 +sg25268 +S'A Fishing Harbour' +p222984 +sg25270 +S'James McBey' +p222985 +sa(dp222986 +g25273 +S'drypoint' +p222987 +sg25267 +g27 +sg25275 +S'1913' +p222988 +sg25268 +S'Christmas Card' +p222989 +sg25270 +S'James McBey' +p222990 +sa(dp222991 +g25273 +S'etching and drypoint on light green paper' +p222992 +sg25267 +g27 +sg25275 +S'1914' +p222993 +sg25268 +S'Repairing a Barge' +p222994 +sg25270 +S'James McBey' +p222995 +sa(dp222996 +g25273 +S'etching' +p222997 +sg25267 +g27 +sg25275 +S'1914' +p222998 +sg25268 +S'The Lion Brewery' +p222999 +sg25270 +S'James McBey' +p223000 +sa(dp223001 +g25273 +S'etching and drypoint' +p223002 +sg25267 +g27 +sg25275 +S'1914' +p223003 +sg25268 +S'The Pool' +p223004 +sg25270 +S'James McBey' +p223005 +sa(dp223006 +g25273 +S'etching' +p223007 +sg25267 +g27 +sg25275 +S'1914' +p223008 +sg25268 +S'Gamrie' +p223009 +sg25270 +S'James McBey' +p223010 +sa(dp223011 +g25273 +S'etching' +p223012 +sg25267 +g27 +sg25275 +S'1914' +p223013 +sg25268 +S'Sea and Rain' +p223014 +sg25270 +S'James McBey' +p223015 +sa(dp223016 +g25273 +S'etching' +p223017 +sg25267 +g27 +sg25275 +S'1914' +p223018 +sg25268 +S'Buchan' +p223019 +sg25270 +S'James McBey' +p223020 +sa(dp223021 +g25273 +S'etching' +p223022 +sg25267 +g27 +sg25275 +S'1914' +p223023 +sg25268 +S'Newburgh' +p223024 +sg25270 +S'James McBey' +p223025 +sa(dp223026 +g25273 +S'drypoint' +p223027 +sg25267 +g27 +sg25275 +S'1914' +p223028 +sg25268 +S'Disquietude (Portrait of Mrs. Martin Hardie)' +p223029 +sg25270 +S'James McBey' +p223030 +sa(dp223031 +g25268 +S'Madonna and Child with Saint Mary Magdalene and Saint Catherine [left panel]' +p223032 +sg25270 +S'Pietro Lorenzetti' +p223033 +sg25273 +S'tempera on panel transferred to canvas' +p223034 +sg25275 +S'c. 1330/1340' +p223035 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00029/a000296d.jpg' +p223036 +sg25267 +g27 +sa(dp223037 +g25273 +S'etching' +p223038 +sg25267 +g27 +sg25275 +S'1913/1915' +p223039 +sg25268 +S'The Fishmarket, Stonehaven' +p223040 +sg25270 +S'James McBey' +p223041 +sa(dp223042 +g25273 +S'etching and drypoint' +p223043 +sg25267 +g27 +sg25275 +S'1915' +p223044 +sg25268 +S'A Norfolk Village' +p223045 +sg25270 +S'James McBey' +p223046 +sa(dp223047 +g25273 +S'etching' +p223048 +sg25267 +g27 +sg25275 +S'1905' +p223049 +sg25268 +S'The New Town, Edinburgh' +p223050 +sg25270 +S'James McBey' +p223051 +sa(dp223052 +g25273 +S'etching' +p223053 +sg25267 +g27 +sg25275 +S'1915' +p223054 +sg25268 +S'Surrey Downs' +p223055 +sg25270 +S'James McBey' +p223056 +sa(dp223057 +g25273 +S'etching and drypoint on light green paper' +p223058 +sg25267 +g27 +sg25275 +S'1915' +p223059 +sg25268 +S'Night in Ely Cathedral' +p223060 +sg25270 +S'James McBey' +p223061 +sa(dp223062 +g25273 +S'etching' +p223063 +sg25267 +g27 +sg25275 +S'1916' +p223064 +sg25268 +S'The Crucifix, Boulogne' +p223065 +sg25270 +S'James McBey' +p223066 +sa(dp223067 +g25273 +S'etching' +p223068 +sg25267 +g27 +sg25275 +S'1916/1919' +p223069 +sg25268 +S'Martin Hardie, No.2' +p223070 +sg25270 +S'James McBey' +p223071 +sa(dp223072 +g25273 +S'drypoint' +p223073 +sg25267 +g27 +sg25275 +S'1915' +p223074 +sg25268 +S'Frank Gibson' +p223075 +sg25270 +S'James McBey' +p223076 +sa(dp223077 +g25273 +S'etching and drypoint' +p223078 +sg25267 +g27 +sg25275 +S'1915' +p223079 +sg25268 +S'Malcolm Salaman, No.2' +p223080 +sg25270 +S'James McBey' +p223081 +sa(dp223082 +g25273 +S'drypoint' +p223083 +sg25267 +g27 +sg25275 +S'1915' +p223084 +sg25268 +S'Martin Hardie, No.1' +p223085 +sg25270 +S'James McBey' +p223086 +sa(dp223087 +g25268 +S'Madonna and Child with Saint Mary Magdalene and Saint Catherine [middle panel]' +p223088 +sg25270 +S'Pietro Lorenzetti' +p223089 +sg25273 +S'tempera on panel transferred to canvas' +p223090 +sg25275 +S'c. 1330/1340' +p223091 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00029/a000296e.jpg' +p223092 +sg25267 +g27 +sa(dp223093 +g25273 +S'drypoint' +p223094 +sg25267 +g27 +sg25275 +S'1916' +p223095 +sg25268 +S'A Norman Port' +p223096 +sg25270 +S'James McBey' +p223097 +sa(dp223098 +g25273 +S'etching and drypoint' +p223099 +sg25267 +g27 +sg25275 +S'1916' +p223100 +sg25268 +S'The Quai Gambetta, Boulogne' +p223101 +sg25270 +S'James McBey' +p223102 +sa(dp223103 +g25273 +S'etching and drypoint' +p223104 +sg25267 +g27 +sg25275 +S'1916' +p223105 +sg25268 +S'The Sussex' +p223106 +sg25270 +S'James McBey' +p223107 +sa(dp223108 +g25273 +S'etching and drypoint' +p223109 +sg25267 +g27 +sg25275 +S'1916' +p223110 +sg25268 +S'Rouen' +p223111 +sg25270 +S'James McBey' +p223112 +sa(dp223113 +g25273 +S'drypoint' +p223114 +sg25267 +g27 +sg25275 +S'1917' +p223115 +sg25268 +S'The Somme Front' +p223116 +sg25270 +S'James McBey' +p223117 +sa(dp223118 +g25273 +S'drypoint' +p223119 +sg25267 +g27 +sg25275 +S'1917' +p223120 +sg25268 +S'The Carpenter of Hesdin' +p223121 +sg25270 +S'James McBey' +p223122 +sa(dp223123 +g25273 +S'etching and drypoint' +p223124 +sg25267 +g27 +sg25275 +S'1917' +p223125 +sg25268 +S'Albert' +p223126 +sg25270 +S'James McBey' +p223127 +sa(dp223128 +g25273 +S'etching' +p223129 +sg25267 +g27 +sg25275 +S'1916' +p223130 +sg25268 +S'The Seine at Rouen' +p223131 +sg25270 +S'James McBey' +p223132 +sa(dp223133 +g25273 +S'etching and drypoint' +p223134 +sg25267 +g27 +sg25275 +S'1914' +p223135 +sg25268 +S'A Studio' +p223136 +sg25270 +S'James McBey' +p223137 +sa(dp223138 +g25273 +S'drypoint' +p223139 +sg25267 +g27 +sg25275 +S'1917' +p223140 +sg25268 +S'France at Her Furnaces' +p223141 +sg25270 +S'James McBey' +p223142 +sa(dp223143 +g25268 +S'Madonna and Child with Saint Mary Magdalene and Saint Catherine [right panel]' +p223144 +sg25270 +S'Pietro Lorenzetti' +p223145 +sg25273 +S'tempera on panel transferred to canvas' +p223146 +sg25275 +S'c. 1330/1340' +p223147 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00029/a000296f.jpg' +p223148 +sg25267 +g27 +sa(dp223149 +g25273 +S'drypoint' +p223150 +sg25267 +g27 +sg25275 +S'1917' +p223151 +sg25268 +S'Francais inconnus' +p223152 +sg25270 +S'James McBey' +p223153 +sa(dp223154 +g25273 +S'drypoint' +p223155 +sg25267 +g27 +sg25275 +S'1917' +p223156 +sg25268 +S'Spring' +p223157 +sg25270 +S'James McBey' +p223158 +sa(dp223159 +g25273 +S'etching and drypoint' +p223160 +sg25267 +g27 +sg25275 +S'1918/1919' +p223161 +sg25268 +S'Ras-El-Ain' +p223162 +sg25270 +S'James McBey' +p223163 +sa(dp223164 +g25273 +S'etching and drypoint' +p223165 +sg25267 +g27 +sg25275 +S'1919' +p223166 +sg25268 +S'Dawn - The Camel Patrol Setting Out' +p223167 +sg25270 +S'James McBey' +p223168 +sa(dp223169 +g25273 +S'etching' +p223170 +sg25267 +g27 +sg25275 +S'1917/1919' +p223171 +sg25268 +S'The Desert of Sinai, No.2' +p223172 +sg25270 +S'James McBey' +p223173 +sa(dp223174 +g25273 +S'etching' +p223175 +sg25267 +g27 +sg25275 +S'1917/1919' +p223176 +sg25268 +S'Sunset: Wadi-um-Mukhsheib' +p223177 +sg25270 +S'James McBey' +p223178 +sa(dp223179 +g25273 +S'etching and drypoint' +p223180 +sg25267 +g27 +sg25275 +S'1917/1919' +p223181 +sg25268 +S'Strange Signals' +p223182 +sg25270 +S'James McBey' +p223183 +sa(dp223184 +g25273 +S'etching and drypoint' +p223185 +sg25267 +g27 +sg25275 +S'1917/1919' +p223186 +sg25268 +S'A Deserted Oasis' +p223187 +sg25270 +S'James McBey' +p223188 +sa(dp223189 +g25273 +S'drypoint' +p223190 +sg25267 +g27 +sg25275 +S'1919' +p223191 +sg25268 +S'The Silk Dress' +p223192 +sg25270 +S'James McBey' +p223193 +sa(dp223194 +g25273 +S'drypoint' +p223195 +sg25267 +g27 +sg25275 +S'1920' +p223196 +sg25268 +S'Margot as Lopokova' +p223197 +sg25270 +S'James McBey' +p223198 +sa(dp223199 +g25268 +S'A Dominican Preaching' +p223200 +sg25270 +S'Agnolo degli Erri' +p223201 +sg25273 +S'tempera on panel' +p223202 +sg25275 +S'c. 1470' +p223203 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00008/a000087d.jpg' +p223204 +sg25267 +g27 +sa(dp223205 +g25273 +S'drypoint' +p223206 +sg25267 +g27 +sg25275 +S'1920' +p223207 +sg25268 +S'The Pianist' +p223208 +sg25270 +S'James McBey' +p223209 +sa(dp223210 +g25273 +S'drypoint' +p223211 +sg25267 +g27 +sg25275 +S'1920' +p223212 +sg25268 +S'Margot' +p223213 +sg25270 +S'James McBey' +p223214 +sa(dp223215 +g25273 +S'etching' +p223216 +sg25267 +g27 +sg25275 +S'1920' +p223217 +sg25268 +S'Palestine ("Blue Bonnets o\'er the Border")' +p223218 +sg25270 +S'James McBey' +p223219 +sa(dp223220 +g25273 +S'etching' +p223221 +sg25267 +g27 +sg25275 +S'1920' +p223222 +sg25268 +S'Dust, Beersheba' +p223223 +sg25270 +S'James McBey' +p223224 +sa(dp223225 +g25273 +S'drypoint' +p223226 +sg25267 +g27 +sg25275 +S'1920' +p223227 +sg25268 +S'The Sniper, No.2' +p223228 +sg25270 +S'James McBey' +p223229 +sa(dp223230 +g25273 +S'etching' +p223231 +sg25267 +g27 +sg25275 +S'1920' +p223232 +sg25268 +S'The First Sight of Jerusalem - Nebi Samwil, No.2' +p223233 +sg25270 +S'James McBey' +p223234 +sa(dp223235 +g25273 +S'etching' +p223236 +sg25267 +g27 +sg25275 +S'1920' +p223237 +sg25268 +S'The Surrender of Jerusalem' +p223238 +sg25270 +S'James McBey' +p223239 +sa(dp223240 +g25273 +S'etching on blue paper' +p223241 +sg25267 +g27 +sg25275 +S'1920' +p223242 +sg25268 +S'The Moonlight Attack, Jelil' +p223243 +sg25270 +S'James McBey' +p223244 +sa(dp223245 +g25273 +S'etching and drypoint' +p223246 +sg25267 +g27 +sg25275 +S'1924' +p223247 +sg25268 +S'Mersea: Sunset' +p223248 +sg25270 +S'James McBey' +p223249 +sa(dp223250 +g25268 +S'The Adoration of the Kings [recto]' +p223251 +sg25270 +S'German 16th Century' +p223252 +sg25273 +S'overall: 20.3 x 15.7 cm (8 x 6 3/16 in.)' +p223253 +sg25275 +S'\npen and black ink with brush and gray ink and gray wash heightened with white on gray prepared paper' +p223254 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007950.jpg' +p223255 +sg25267 +g27 +sa(dp223256 +g25268 +S'Advice to a Young Artist' +p223257 +sg25270 +S'Honor\xc3\xa9 Daumier' +p223258 +sg25273 +S'oil on canvas' +p223259 +sg25275 +S'1865/1868' +p223260 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000da0.jpg' +p223261 +sg25267 +g27 +sa(dp223262 +g25268 +S'The Birth of Christ [verso]' +p223263 +sg25270 +S'German 16th Century' +p223264 +sg25273 +S'overall: 20.3 x 15.7 cm (8 x 6 3/16 in.)' +p223265 +sg25275 +S'\npen and black ink with brush and gray ink and gray wash heightened with white on gray prepared paper' +p223266 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a0007951.jpg' +p223267 +sg25267 +g27 +sa(dp223268 +g25273 +S'drypoint' +p223269 +sg25267 +g27 +sg25275 +S'1923/1924' +p223270 +sg25268 +S'The Zuider Zee' +p223271 +sg25270 +S'James McBey' +p223272 +sa(dp223273 +g25273 +S'etching' +p223274 +sg25267 +g27 +sg25275 +S'1923/1924' +p223275 +sg25268 +S'Veere' +p223276 +sg25270 +S'James McBey' +p223277 +sa(dp223278 +g25273 +S'etching' +p223279 +sg25267 +g27 +sg25275 +S'1922/1923' +p223280 +sg25268 +S'Sunset at Cattawade' +p223281 +sg25270 +S'James McBey' +p223282 +sa(dp223283 +g25273 +S'etching' +p223284 +sg25267 +g27 +sg25275 +S'1923/1924' +p223285 +sg25268 +S'The Squall, Kampen' +p223286 +sg25270 +S'James McBey' +p223287 +sa(dp223288 +g25273 +S'etching' +p223289 +sg25267 +g27 +sg25275 +S'1922/1923' +p223290 +sg25268 +S'The Ebb Tide' +p223291 +sg25270 +S'James McBey' +p223292 +sa(dp223293 +g25273 +S'etching and drypoint' +p223294 +sg25267 +g27 +sg25275 +S'1922/1923' +p223295 +sg25268 +S'Gale at Port Erroll' +p223296 +sg25270 +S'James McBey' +p223297 +sa(dp223298 +g25273 +S'etching' +p223299 +sg25267 +g27 +sg25275 +S'1922/1923' +p223300 +sg25268 +S'Antwerp' +p223301 +sg25270 +S'James McBey' +p223302 +sa(dp223303 +g25273 +S'etching and drypoint' +p223304 +sg25267 +g27 +sg25275 +S'1921/1923' +p223305 +sg25268 +S'Gerona' +p223306 +sg25270 +S'James McBey' +p223307 +sa(dp223308 +g25273 +S'etching' +p223309 +sg25267 +g27 +sg25275 +S'1922' +p223310 +sg25268 +S'Brightlingsea, No.2' +p223311 +sg25270 +S'James McBey' +p223312 +sa(dp223313 +g25273 +S'etching' +p223314 +sg25267 +g27 +sg25275 +S'1922' +p223315 +sg25268 +S'Brightlingsea, No.2' +p223316 +sg25270 +S'James McBey' +p223317 +sa(dp223318 +g25273 +S'etching' +p223319 +sg25267 +g27 +sg25275 +S'1921' +p223320 +sg25268 +S'Macduff' +p223321 +sg25270 +S'James McBey' +p223322 +sa(dp223323 +g25273 +S'drypoint' +p223324 +sg25267 +g27 +sg25275 +S'1922' +p223325 +sg25268 +S'A Flood in the Fens' +p223326 +sg25270 +S'James McBey' +p223327 +sa(dp223328 +g25273 +S'etching and drypoint' +p223329 +sg25267 +g27 +sg25275 +S'1918/1921' +p223330 +sg25268 +S'Hermon: Cavalry Moving on Damascus' +p223331 +sg25270 +S'James McBey' +p223332 +sa(dp223333 +g25273 +S'drypoint on green paper' +p223334 +sg25267 +g27 +sg25275 +S'1921' +p223335 +sg25268 +S'The Dead Sea' +p223336 +sg25270 +S'James McBey' +p223337 +sa(dp223338 +g25273 +S'drypoint' +p223339 +sg25267 +g27 +sg25275 +S'1921' +p223340 +sg25268 +S'Jerusalem from Olivet' +p223341 +sg25270 +S'James McBey' +p223342 +sa(dp223343 +g25273 +S'drypoint' +p223344 +sg25267 +g27 +sg25275 +S'1921' +p223345 +sg25268 +S'Gun Fire, Mount of Olives' +p223346 +sg25270 +S'James McBey' +p223347 +sa(dp223348 +g25273 +S'etching' +p223349 +sg25267 +g27 +sg25275 +S'1920' +p223350 +sg25268 +S'Gaza - Prisoners of War' +p223351 +sg25270 +S'James McBey' +p223352 +sa(dp223353 +g25273 +S'drypoint' +p223354 +sg25267 +g27 +sg25275 +S'1920' +p223355 +sg25268 +S'Zero - A Sixty-five Pounder Opening Fire' +p223356 +sg25270 +S'James McBey' +p223357 +sa(dp223358 +g25273 +S'etching' +p223359 +sg25267 +g27 +sg25275 +S'1920' +p223360 +sg25268 +S'The Advance on Jerusalem - Wadi Ali' +p223361 +sg25270 +S'James McBey' +p223362 +sa(dp223363 +g25273 +S'etching' +p223364 +sg25267 +g27 +sg25275 +S'1932' +p223365 +sg25268 +S'Palos - Departure of Columbus, 1492' +p223366 +sg25270 +S'James McBey' +p223367 +sa(dp223368 +g25273 +S'etching' +p223369 +sg25267 +g27 +sg25275 +S'1925' +p223370 +sg25268 +S'Mirage' +p223371 +sg25270 +S'James McBey' +p223372 +sa(dp223373 +g25273 +S'etching on blue paper' +p223374 +sg25267 +g27 +sg25275 +S'1925' +p223375 +sg25268 +S'Venetian Night' +p223376 +sg25270 +S'James McBey' +p223377 +sa(dp223378 +g25273 +S'drypoint' +p223379 +sg25267 +g27 +sg25275 +S'1924' +p223380 +sg25268 +S'The Critic (Portrait of Duncan MacDonald)' +p223381 +sg25270 +S'James McBey' +p223382 +sa(dp223383 +g25273 +S'etching' +p223384 +sg25267 +g27 +sg25275 +S'1925' +p223385 +sg25268 +S'Bosham' +p223386 +sg25270 +S'James McBey' +p223387 +sa(dp223388 +g25273 +S'etching on blue paper' +p223389 +sg25267 +g27 +sg25275 +S'1925' +p223390 +sg25268 +S'The Deserted Palace' +p223391 +sg25270 +S'James McBey' +p223392 +sa(dp223393 +g25273 +S'drypoint' +p223394 +sg25267 +g27 +sg25275 +S'1925' +p223395 +sg25268 +S'Glass Blowers, Murano' +p223396 +sg25270 +S'James McBey' +p223397 +sa(dp223398 +g25273 +S'drypoint' +p223399 +sg25267 +g27 +sg25275 +S'1925' +p223400 +sg25268 +S'The Gondolier' +p223401 +sg25270 +S'James McBey' +p223402 +sa(dp223403 +g25273 +S'etching on pale green paper' +p223404 +sg25267 +g27 +sg25275 +S'1925' +p223405 +sg25268 +S'Sotto Portico, Venice' +p223406 +sg25270 +S'James McBey' +p223407 +sa(dp223408 +g25273 +S'etching on blue paper' +p223409 +sg25267 +g27 +sg25275 +S'1925' +p223410 +sg25268 +S'The Passing Gondola' +p223411 +sg25270 +S'James McBey' +p223412 +sa(dp223413 +g25273 +S'etching' +p223414 +sg25267 +g27 +sg25275 +S'1925' +p223415 +sg25268 +S'Farewell to Venice' +p223416 +sg25270 +S'James McBey' +p223417 +sa(dp223418 +g25273 +S'etching' +p223419 +sg25267 +g27 +sg25275 +S'1925' +p223420 +sg25268 +S'Distant Salute' +p223421 +sg25270 +S'James McBey' +p223422 +sa(dp223423 +g25273 +S'drypoint on blue paper' +p223424 +sg25267 +g27 +sg25275 +S'1925' +p223425 +sg25268 +S'The Bridge by Night' +p223426 +sg25270 +S'James McBey' +p223427 +sa(dp223428 +g25273 +S'etching' +p223429 +sg25267 +g27 +sg25275 +S'1925' +p223430 +sg25268 +S'Rio dei Greci' +p223431 +sg25270 +S'James McBey' +p223432 +sa(dp223433 +g25273 +S'etching' +p223434 +sg25267 +g27 +sg25275 +S'1925' +p223435 +sg25268 +S'The Doorway' +p223436 +sg25270 +S'James McBey' +p223437 +sa(dp223438 +g25273 +S'etching' +p223439 +sg25267 +g27 +sg25275 +S'1925' +p223440 +sg25268 +S'The White Palace' +p223441 +sg25270 +S'James McBey' +p223442 +sa(dp223443 +g25268 +S'Barcarole' +p223444 +sg25270 +S'James McBey' +p223445 +sg25273 +S'etching' +p223446 +sg25275 +S'1925' +p223447 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001d/a0001dee.jpg' +p223448 +sg25267 +g27 +sa(dp223449 +g25268 +S'Palazzo dei Cammerlenghi' +p223450 +sg25270 +S'James McBey' +p223451 +sg25273 +S'etching' +p223452 +sg25275 +S'1925' +p223453 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0001d/a0001def.jpg' +p223454 +sg25267 +g27 +sa(dp223455 +g25273 +S'etching' +p223456 +sg25267 +g27 +sg25275 +S'1925' +p223457 +sg25268 +S'September Sunset' +p223458 +sg25270 +S'James McBey' +p223459 +sa(dp223460 +g25273 +S'etching' +p223461 +sg25267 +g27 +sg25275 +S'1925' +p223462 +sg25268 +S'La Giudecca' +p223463 +sg25270 +S'James McBey' +p223464 +sa(dp223465 +g25273 +S'etching' +p223466 +sg25267 +g27 +sg25275 +S'1925' +p223467 +sg25268 +S'A Regatta on the Grand Canal' +p223468 +sg25270 +S'James McBey' +p223469 +sa(dp223470 +g25273 +S'etching and drypoint' +p223471 +sg25267 +g27 +sg25275 +S'1925' +p223472 +sg25268 +S'Santa Maria della Fava' +p223473 +sg25270 +S'James McBey' +p223474 +sa(dp223475 +g25273 +S'etching' +p223476 +sg25267 +g27 +sg25275 +S'1925' +p223477 +sg25268 +S'Hastings' +p223478 +sg25270 +S'James McBey' +p223479 +sa(dp223480 +g25273 +S'etching' +p223481 +sg25267 +g27 +sg25275 +S'1925' +p223482 +sg25268 +S'The Riva at Dusk' +p223483 +sg25270 +S'James McBey' +p223484 +sa(dp223485 +g25273 +S'etching' +p223486 +sg25267 +g27 +sg25275 +S'1925' +p223487 +sg25268 +S'Molo' +p223488 +sg25270 +S'James McBey' +p223489 +sa(dp223490 +g25273 +S'etching' +p223491 +sg25267 +g27 +sg25275 +S'1924' +p223492 +sg25268 +S'Laguna Veneta' +p223493 +sg25270 +S'James McBey' +p223494 +sa(dp223495 +g25273 +S'etching' +p223496 +sg25267 +g27 +sg25275 +S'1925' +p223497 +sg25268 +S'Shipping in the Giudecca Canal' +p223498 +sg25270 +S'James McBey' +p223499 +sa(dp223500 +g25273 +S'etching' +p223501 +sg25267 +g27 +sg25275 +S'1930' +p223502 +sg25268 +S'Lessing J. Rosenwald' +p223503 +sg25270 +S'James McBey' +p223504 +sa(dp223505 +g25273 +S'pen and black ink and watercolor' +p223506 +sg25267 +g27 +sg25275 +S'1919' +p223507 +sg25268 +S'Kingsgate' +p223508 +sg25270 +S'James McBey' +p223509 +sa(dp223510 +g25273 +S'pen and brown ink and watercolor' +p223511 +sg25267 +g27 +sg25275 +S'1924' +p223512 +sg25268 +S'Kingsgate' +p223513 +sg25270 +S'James McBey' +p223514 +sa(dp223515 +g25268 +S'The Madonna of Humility' +p223516 +sg25270 +S'Masaccio' +p223517 +sg25273 +S'tempera (?) on panel' +p223518 +sg25275 +S'c. 1423/1424' +p223519 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e9f.jpg' +p223520 +sg25267 +g27 +sa(dp223521 +g25268 +S'Saint Ildefonso' +p223522 +sg25270 +S'El Greco' +p223523 +sg25273 +S', c. 1603/1614' +p223524 +sg25275 +S'\n' +p223525 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a00004a3.jpg' +p223526 +sg25267 +S" Ildefonso, whose name is more familiar in its Castilian form, Alfonso, was appointed\r\narchbishop of Toledo in 657 and later became that city's patron saint. He was especially\r\nfamed for his book defending the purity of the Virgin, which he was said to have\r\nwritten at her dictation.\n El Greco represented the saint in a richly decorated room, seated at a writing table\r\nfurnished with costly silver desk ornaments consistent with the style of the artist's\r\nown time. The contemporary setting notwithstanding, an otherworldly aura pervades\r\nthe room as the saint pauses in his writing and, as though awaiting the next word,\r\ngazes attentively at the source of his inspiration, a statuette of the Madonna.\r\nThe combination of strangely compacted space, the chalky highlights that play over\r\nthe saint's sleeves and the velvet tablecover, and, not least, Ildefonso's fervent\r\nexpression, remove the scene to a spiritual realm.\n El Greco's image of the Virgin resembles an actual wooden figure that Ildefonso\r\nis said to have kept in his oratory until it was given by him to the church of the\r\nHospital of Charity in the small Spanish town of Illescas, near Toledo. The statuette\r\nis preserved there today together with El Greco's larger version of \n " +p223527 +sa(dp223528 +g25273 +S'watercolor' +p223529 +sg25267 +g27 +sg25275 +S'1920' +p223530 +sg25268 +S'Ludham' +p223531 +sg25270 +S'James McBey' +p223532 +sa(dp223533 +g25273 +S'pen and black ink and watercolor on heavy laid paper' +p223534 +sg25267 +g27 +sg25275 +S'probably 1928' +p223535 +sg25268 +S'MacDonald' +p223536 +sg25270 +S'James McBey' +p223537 +sa(dp223538 +g25273 +S'brush and black ink, pen and black ink and watercolor on laid paper' +p223539 +sg25267 +g27 +sg25275 +S'1914' +p223540 +sg25268 +S'A Tinker Child, Macduff' +p223541 +sg25270 +S'James McBey' +p223542 +sa(dp223543 +g25273 +S'pen and black ink with green, blue and yellow washon laid paper' +p223544 +sg25267 +g27 +sg25275 +S'1910' +p223545 +sg25268 +S'Monnickendam' +p223546 +sg25270 +S'James McBey' +p223547 +sa(dp223548 +g25273 +S'watercolor on laid paper' +p223549 +sg25267 +g27 +sg25275 +S'1928' +p223550 +sg25268 +S'Lower Pool' +p223551 +sg25270 +S'James McBey' +p223552 +sa(dp223553 +g25273 +S'pen and brown ink and watercolor' +p223554 +sg25267 +g27 +sg25275 +S'1928' +p223555 +sg25268 +S'On the South Coast' +p223556 +sg25270 +S'James McBey' +p223557 +sa(dp223558 +g25273 +S'pen and brown ink and watercolor on laid paper' +p223559 +sg25267 +g27 +sg25275 +S'1924' +p223560 +sg25268 +S'Palaces, Venice' +p223561 +sg25270 +S'James McBey' +p223562 +sa(dp223563 +g25273 +S'watercolor' +p223564 +sg25267 +g27 +sg25275 +S'1928' +p223565 +sg25268 +S'Rainham' +p223566 +sg25270 +S'James McBey' +p223567 +sa(dp223568 +g25273 +S'pen and black ink with black wash on laid paper' +p223569 +sg25267 +g27 +sg25275 +S'1913' +p223570 +sg25268 +S'Tetovan' +p223571 +sg25270 +S'James McBey' +p223572 +sa(dp223573 +g25273 +S'watercolor with graphite' +p223574 +sg25267 +g27 +sg25275 +S'1929' +p223575 +sg25268 +S'Rowallon' +p223576 +sg25270 +S'James McBey' +p223577 +sa(dp223578 +g25273 +S'etching and drypoint' +p223579 +sg25267 +g27 +sg25275 +S'1923/1924' +p223580 +sg25268 +S'Zaanstreek' +p223581 +sg25270 +S'James McBey' +p223582 +sa(dp223583 +g25273 +S'watercolor on laid paper' +p223584 +sg25267 +g27 +sg25275 +S'1928' +p223585 +sg25268 +S'St. Cyrus' +p223586 +sg25270 +S'James McBey' +p223587 +sa(dp223588 +g25273 +S'pen and black ink and watercolor' +p223589 +sg25267 +g27 +sg25275 +S'1914' +p223590 +sg25268 +S'Sea Lavender' +p223591 +sg25270 +S'James McBey' +p223592 +sa(dp223593 +g25273 +S'pen and black ink on laid paper' +p223594 +sg25267 +g27 +sg25275 +S'1913' +p223595 +sg25268 +S'Shower in Tetouan' +p223596 +sg25270 +S'James McBey' +p223597 +sa(dp223598 +g25273 +S'pen and black ink and watercolor on laid paper' +p223599 +sg25267 +g27 +sg25275 +S'1914' +p223600 +sg25268 +S'Sick Child' +p223601 +sg25270 +S'James McBey' +p223602 +sa(dp223603 +g25273 +S'pen and brown ink and watercolor on laid paper' +p223604 +sg25267 +g27 +sg25275 +S'1919' +p223605 +sg25268 +S'Snape' +p223606 +sg25270 +S'James McBey' +p223607 +sa(dp223608 +g25273 +S'brush and black ink and watercolor' +p223609 +sg25267 +g27 +sg25275 +S'1917' +p223610 +sg25268 +S'The Somme Front' +p223611 +sg25270 +S'James McBey' +p223612 +sa(dp223613 +g25273 +S'pen and brown ink and watercolor on laid paper' +p223614 +sg25267 +g27 +sg25275 +S'1923' +p223615 +sg25268 +S'Stormy Evening, West Mersea' +p223616 +sg25270 +S'James McBey' +p223617 +sa(dp223618 +g25273 +S'watercolor on laid paper' +p223619 +sg25267 +g27 +sg25275 +S'1928' +p223620 +sg25268 +S'Strathtay' +p223621 +sg25270 +S'James McBey' +p223622 +sa(dp223623 +g25273 +S'pen and black ink and watercolor' +p223624 +sg25267 +g27 +sg25275 +S'1928' +p223625 +sg25268 +S'Strood' +p223626 +sg25270 +S'James McBey' +p223627 +sa(dp223628 +g25273 +S'pen and black ink and watercolor on laid paper' +p223629 +sg25267 +g27 +sg25275 +S'1916' +p223630 +sg25268 +S'Stretcher Bearers, Somme' +p223631 +sg25270 +S'James McBey' +p223632 +sa(dp223633 +g25273 +S'pen and brown ink and watercolor' +p223634 +sg25267 +g27 +sg25275 +S'1930' +p223635 +sg25268 +S'Sunset, Oxford' +p223636 +sg25270 +S'James McBey' +p223637 +sa(dp223638 +g25273 +S'pen and black ink and watercolor' +p223639 +sg25267 +g27 +sg25275 +S'1929' +p223640 +sg25268 +S'Sunset from Kilmacolm' +p223641 +sg25270 +S'James McBey' +p223642 +sa(dp223643 +g25273 +S'pen and brown ink and watercolor on laid paper' +p223644 +sg25267 +g27 +sg25275 +S'1922' +p223645 +sg25268 +S'Sunset at Maldon, Essex' +p223646 +sg25270 +S'James McBey' +p223647 +sa(dp223648 +g25273 +S'etching' +p223649 +sg25267 +g27 +sg25275 +S'1925' +p223650 +sg25268 +S'A Tartane Leaving Venice' +p223651 +sg25270 +S'James McBey' +p223652 +sa(dp223653 +g25273 +S'etching' +p223654 +sg25267 +g27 +sg25275 +S'1914' +p223655 +sg25268 +S'The Moray Firth' +p223656 +sg25270 +S'James McBey' +p223657 +sa(dp223658 +g25273 +S'pen and brown ink and watercolor' +p223659 +sg25267 +g27 +sg25275 +S'1927' +p223660 +sg25268 +S'Argylleshire' +p223661 +sg25270 +S'James McBey' +p223662 +sa(dp223663 +g25273 +S'pen and brown ink and watercolor' +p223664 +sg25267 +g27 +sg25275 +S'1924' +p223665 +sg25268 +S'At the Gate' +p223666 +sg25270 +S'James McBey' +p223667 +sa(dp223668 +g25273 +S'pen and black ink and watercolor on gray paper' +p223669 +sg25267 +g27 +sg25275 +S'1919' +p223670 +sg25268 +S'Banffshire' +p223671 +sg25270 +S'James McBey' +p223672 +sa(dp223673 +g25273 +S'pen and brown ink and watercolor' +p223674 +sg25267 +g27 +sg25275 +S'1927' +p223675 +sg25268 +S'Bridge at Avignon' +p223676 +sg25270 +S'James McBey' +p223677 +sa(dp223678 +g25273 +S'pen and brown ink and watercolor on heavy laid paper' +p223679 +sg25267 +g27 +sg25275 +S'1923' +p223680 +sg25268 +S'Belfry, Bruges' +p223681 +sg25270 +S'James McBey' +p223682 +sa(dp223683 +g25273 +S'pen and black ink and watercolor on laid paper' +p223684 +sg25267 +g27 +sg25275 +S'1930' +p223685 +sg25268 +S'Black Boy Inn, Nettlebed' +p223686 +sg25270 +S'James McBey' +p223687 +sa(dp223688 +g25273 +S'pen and black ink and watercolor' +p223689 +sg25267 +g27 +sg25275 +S'1921' +p223690 +sg25268 +S'Birkenhead Ironworks' +p223691 +sg25270 +S'James McBey' +p223692 +sa(dp223693 +g25273 +S'pen and black ink and watercolor' +p223694 +sg25267 +g27 +sg25275 +S'1927' +p223695 +sg25268 +S'Bishopston' +p223696 +sg25270 +S'James McBey' +p223697 +sa(dp223698 +g25273 +S'watercolor' +p223699 +sg25267 +g27 +sg25275 +S'1928' +p223700 +sg25268 +S'The Brechin Road' +p223701 +sg25270 +S'James McBey' +p223702 +sa(dp223703 +g25273 +S'pen and black ink and watercolor on laid paper' +p223704 +sg25267 +g27 +sg25275 +S'1928' +p223705 +sg25268 +S"Bugsby's Reach" +p223706 +sg25270 +S'James McBey' +p223707 +sa(dp223708 +g25273 +S'pen and brown ink and watercolor' +p223709 +sg25267 +g27 +sg25275 +S'1925' +p223710 +sg25268 +S'Calle della Madonna (?)' +p223711 +sg25270 +S'James McBey' +p223712 +sa(dp223713 +g25273 +S'watercolor' +p223714 +sg25267 +g27 +sg25275 +S'1925' +p223715 +sg25268 +S'Canal at Noon' +p223716 +sg25270 +S'James McBey' +p223717 +sa(dp223718 +g25273 +S'pen and brown ink' +p223719 +sg25267 +g27 +sg25275 +S'1917' +p223720 +sg25268 +S'Combles' +p223721 +sg25270 +S'James McBey' +p223722 +sa(dp223723 +g25273 +S'brush and brown ink and watercolor on laid paper' +p223724 +sg25267 +g27 +sg25275 +S'1916' +p223725 +sg25268 +S'Carpenter of Hesdin' +p223726 +sg25270 +S'James McBey' +p223727 +sa(dp223728 +g25273 +S'watercolor on laid paper' +p223729 +sg25267 +g27 +sg25275 +S'1928' +p223730 +sg25268 +S'Dave' +p223731 +sg25270 +S'James McBey' +p223732 +sa(dp223733 +g25273 +S'watercolor on heavy laid paper' +p223734 +sg25267 +g27 +sg25275 +S'1924' +p223735 +sg25268 +S'Dieppe' +p223736 +sg25270 +S'James McBey' +p223737 +sa(dp223738 +g25273 +S'pen and black ink with gray wash on laid paper' +p223739 +sg25267 +g27 +sg25275 +S'probably 1913' +p223740 +sg25268 +S'Fishmarket' +p223741 +sg25270 +S'James McBey' +p223742 +sa(dp223743 +g25273 +S'watercolor on laid paper' +p223744 +sg25267 +g27 +sg25275 +S'1928' +p223745 +sg25268 +S'Forfarshire' +p223746 +sg25270 +S'James McBey' +p223747 +sa(dp223748 +g25273 +S'pen and black ink and watercolor' +p223749 +sg25267 +g27 +sg25275 +S'1917' +p223750 +sg25268 +S'France at Her Furnaces' +p223751 +sg25270 +S'James McBey' +p223752 +sa(dp223753 +g25273 +S'watercolor on laid paper' +p223754 +sg25267 +g27 +sg25275 +S'1928' +p223755 +sg25268 +S'Gallions Reach' +p223756 +sg25270 +S'James McBey' +p223757 +sa(dp223758 +g25273 +S'pen and brown ink and watercolor on laid paper' +p223759 +sg25267 +g27 +sg25275 +S'1927' +p223760 +sg25268 +S'Glen Douglas' +p223761 +sg25270 +S'James McBey' +p223762 +sa(dp223763 +g25273 +S'watercolor' +p223764 +sg25267 +g27 +sg25275 +S'1928' +p223765 +sg25268 +S'Glen Lethnot' +p223766 +sg25270 +S'James McBey' +p223767 +sa(dp223768 +g25273 +S'pen and black ink on laid paper' +p223769 +sg25267 +g27 +sg25275 +S'1913' +p223770 +sg25268 +S'Grain Market, Tetouan' +p223771 +sg25270 +S'James McBey' +p223772 +sa(dp223773 +g25273 +S'watercolor' +p223774 +sg25267 +g27 +sg25275 +S'1924' +p223775 +sg25268 +S'Grand Canal, Rialto, Venice' +p223776 +sg25270 +S'James McBey' +p223777 +sa(dp223778 +g25273 +S'pen and black ink and watercolor on laid paper' +p223779 +sg25267 +g27 +sg25275 +S'1928' +p223780 +sg25268 +S'Gravesend' +p223781 +sg25270 +S'James McBey' +p223782 +sa(dp223783 +g25273 +S'pen and black ink and watercolor on laid paper' +p223784 +sg25267 +g27 +sg25275 +S'1928' +p223785 +sg25268 +S'Greenwich Reach' +p223786 +sg25270 +S'James McBey' +p223787 +sa(dp223788 +g25273 +S'pen and brush with brown ink and watercolor on laid paper' +p223789 +sg25267 +g27 +sg25275 +S'1927' +p223790 +sg25268 +S'Harvesting in Fyfeshire' +p223791 +sg25270 +S'James McBey' +p223792 +sa(dp223793 +g25273 +S'watercolor on laid paper' +p223794 +sg25267 +g27 +sg25275 +S'1923' +p223795 +sg25268 +S'Hascalte' +p223796 +sg25270 +S'James McBey' +p223797 +sa(dp223798 +g25273 +S'pen and brown ink and watercolor' +p223799 +sg25267 +g27 +sg25275 +S'1917' +p223800 +sg25268 +S'Hesdin' +p223801 +sg25270 +S'James McBey' +p223802 +sa(dp223803 +g25273 +S'watercolor on heavy laid paper' +p223804 +sg25267 +g27 +sg25275 +S'1923' +p223805 +sg25268 +S'Heybridge' +p223806 +sg25270 +S'James McBey' +p223807 +sa(dp223808 +g25273 +S'pen and brown ink and watercolor' +p223809 +sg25267 +g27 +sg25275 +S'1930' +p223810 +sg25268 +S'Icknield Way' +p223811 +sg25270 +S'James McBey' +p223812 +sa(dp223813 +g25273 +S'brush and black ink and watercolor on laid paper' +p223814 +sg25267 +g27 +sg25275 +S'1928' +p223815 +sg25268 +S'Isleworth' +p223816 +sg25270 +S'James McBey' +p223817 +sa(dp223818 +g25273 +S'pen and black ink on laid paper' +p223819 +sg25267 +g27 +sg25275 +S'unknown date\n' +p223820 +sg25268 +S'Sunset, Fen Country' +p223821 +sg25270 +S'James McBey' +p223822 +sa(dp223823 +g25273 +S'pen and brown ink with brown wash' +p223824 +sg25267 +g27 +sg25275 +S'probably 1915' +p223825 +sg25268 +S'Surrey Downs' +p223826 +sg25270 +S'James McBey' +p223827 +sa(dp223828 +g25273 +S'watercolor' +p223829 +sg25267 +g27 +sg25275 +S'1917' +p223830 +sg25268 +S'Tank' +p223831 +sg25270 +S'James McBey' +p223832 +sa(dp223833 +g25273 +S'watercolor on laid paper' +p223834 +sg25267 +g27 +sg25275 +S'1928' +p223835 +sg25268 +S'Thames Side' +p223836 +sg25270 +S'James McBey' +p223837 +sa(dp223838 +g25273 +S'pen and black ink on laid paper' +p223839 +sg25267 +g27 +sg25275 +S'1916' +p223840 +sg25268 +S'The Torpedoed Sussex' +p223841 +sg25270 +S'James McBey' +p223842 +sa(dp223843 +g25273 +S'watercolor' +p223844 +sg25267 +g27 +sg25275 +S'1926' +p223845 +sg25268 +S'Veere' +p223846 +sg25270 +S'James McBey' +p223847 +sa(dp223848 +g25273 +S'watercolor on laid paper' +p223849 +sg25267 +g27 +sg25275 +S'1924' +p223850 +sg25268 +S'Ships on the Giudecca, Venice' +p223851 +sg25270 +S'James McBey' +p223852 +sa(dp223853 +g25273 +S'watercolor' +p223854 +sg25267 +g27 +sg25275 +S'1925' +p223855 +sg25268 +S'Venice' +p223856 +sg25270 +S'James McBey' +p223857 +sa(dp223858 +g25273 +S'watercolor' +p223859 +sg25267 +g27 +sg25275 +S'1925' +p223860 +sg25268 +S'Venice' +p223861 +sg25270 +S'James McBey' +p223862 +sa(dp223863 +g25273 +S'watercolor' +p223864 +sg25267 +g27 +sg25275 +S'1926' +p223865 +sg25268 +S'A Tartane Leaving Venice' +p223866 +sg25270 +S'James McBey' +p223867 +sa(dp223868 +g25273 +S'pen and black ink and watercolor on heavy laid paper' +p223869 +sg25267 +g27 +sg25275 +S'1924' +p223870 +sg25268 +S'Redentore' +p223871 +sg25270 +S'James McBey' +p223872 +sa(dp223873 +g25273 +S'pen and brown ink and watercolor on heavy laid paper' +p223874 +sg25267 +g27 +sg25275 +S'1925' +p223875 +sg25268 +S'Laguna' +p223876 +sg25270 +S'James McBey' +p223877 +sa(dp223878 +g25273 +S'pen and brown ink and watercolor on heavy laid paper' +p223879 +sg25267 +g27 +sg25275 +S'1925' +p223880 +sg25268 +S'Laguna Veneta' +p223881 +sg25270 +S'James McBey' +p223882 +sa(dp223883 +g25273 +S'watercolor' +p223884 +sg25267 +g27 +sg25275 +S'1925' +p223885 +sg25268 +S'Passing Gondola' +p223886 +sg25270 +S'James McBey' +p223887 +sa(dp223888 +g25273 +S'watercolor' +p223889 +sg25267 +g27 +sg25275 +S'1911' +p223890 +sg25268 +S'Vinaroz' +p223891 +sg25270 +S'James McBey' +p223892 +sa(dp223893 +g25273 +S'pen and black ink and watercolor' +p223894 +sg25267 +g27 +sg25275 +S'1913' +p223895 +sg25268 +S'Well in the Sands, Tangier' +p223896 +sg25270 +S'James McBey' +p223897 +sa(dp223898 +g25273 +S'pen and brown ink and watercolor on heavy laid paper' +p223899 +sg25267 +g27 +sg25275 +S'1924' +p223900 +sg25268 +S'West Mersa' +p223901 +sg25270 +S'James McBey' +p223902 +sa(dp223903 +g25268 +S'Bear Pit in Zoo' +p223904 +sg25270 +S'Adolph Menzel' +p223905 +sg25273 +S'lithograph' +p223906 +sg25275 +S'unknown date\n' +p223907 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005dc6.jpg' +p223908 +sg25267 +g27 +sa(dp223909 +g25268 +S'The Sudarium of Saint Veronica' +p223910 +sg25270 +S'Claude Mellan' +p223911 +sg25273 +S'engraving' +p223912 +sg25275 +S'1649' +p223913 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004bac.jpg' +p223914 +sg25267 +g27 +sa(dp223915 +g25273 +S'etching' +p223916 +sg25267 +g27 +sg25275 +S'1856' +p223917 +sg25268 +S'San Francisco' +p223918 +sg25270 +S'Charles Meryon' +p223919 +sa(dp223920 +g25268 +S'Coll\xc3\xa8ge Henri IV, Paris, ou Lyc\xc3\xa9e Napol\xc3\xa9on (Henry IV College or Napoleon School, Paris)' +p223921 +sg25270 +S'Charles Meryon' +p223922 +sg25273 +S'etching' +p223923 +sg25275 +S'1864' +p223924 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00060/a0006017.jpg' +p223925 +sg25267 +g27 +sa(dp223926 +g25268 +S'Coll\xc3\xa8ge Henri IV, Paris, ou Lyc\xc3\xa9e Napol\xc3\xa9on (Henry IV College or Napoleon School, Paris)' +p223927 +sg25270 +S'Charles Meryon' +p223928 +sg25273 +S'etching' +p223929 +sg25275 +S'1864' +p223930 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d87.jpg' +p223931 +sg25267 +g27 +sa(dp223932 +g25268 +S'La Rue des Mauvais Gar\xc3\xa7ons, Paris (The Street of the Bad Boys)' +p223933 +sg25270 +S'Charles Meryon' +p223934 +sg25273 +S'etching' +p223935 +sg25275 +S'1854' +p223936 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009968.jpg' +p223937 +sg25267 +g27 +sa(dp223938 +g25268 +S'La petite pompe, Paris (The Notre Dame Pump, small plate)' +p223939 +sg25270 +S'Charles Meryon' +p223940 +sg25273 +S'etching' +p223941 +sg25275 +S'1854' +p223942 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009966.jpg' +p223943 +sg25267 +g27 +sa(dp223944 +g25268 +S"Le tombeau de Moli\xc3\xa8re, au P\xc3\xa8re-Lachaise, Paris (Moliere's Tomb, in P\xc3\xa8re-Lachaise Cemetary, Paris)" +p223945 +sg25270 +S'Charles Meryon' +p223946 +sg25273 +S'etching' +p223947 +sg25275 +S'1854' +p223948 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009964.jpg' +p223949 +sg25267 +g27 +sa(dp223950 +g25268 +S'Le malingre cryptogame (The Sickly Cryptogam)' +p223951 +sg25270 +S'Charles Meryon' +p223952 +sg25273 +S'etching' +p223953 +sg25275 +S'1860' +p223954 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009965.jpg' +p223955 +sg25267 +g27 +sa(dp223956 +g25268 +S"Evariste Boulay-Paty; A Poet (From a Bronze by David d'Angers)" +p223957 +sg25270 +S'Charles Meryon' +p223958 +sg25273 +S'etching' +p223959 +sg25275 +S'1861' +p223960 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009984.jpg' +p223961 +sg25267 +g27 +sa(dp223962 +g25268 +S"Adresse de Rochoux, Marchand d'estampes (The Address-Card of Rochoux, a Printseller)" +p223963 +sg25270 +S'Charles Meryon' +p223964 +sg25273 +S'etching in red and black' +p223965 +sg25275 +S'probably 1856' +p223966 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009967.jpg' +p223967 +sg25267 +g27 +sa(dp223968 +g25268 +S'Titre des eaux-fortes sur Paris (Title Page to the Set of Etchings of Paris)' +p223969 +sg25270 +S'Charles Meryon' +p223970 +sg25273 +S'etching' +p223971 +sg25275 +S'1852' +p223972 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d13.jpg' +p223973 +sg25267 +g27 +sa(dp223974 +g25268 +S'Ancienne porte du Palais de Justice, Paris (Old Gate of the Palace of Justice, Paris)' +p223975 +sg25270 +S'Charles Meryon' +p223976 +sg25273 +S'etching' +p223977 +sg25275 +S'1854' +p223978 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d22.jpg' +p223979 +sg25267 +g27 +sa(dp223980 +g25273 +S'engraving' +p223981 +sg25267 +g27 +sg25275 +S'1495/1496' +p223982 +sg25268 +S'The Holy Family with the Butterfly' +p223983 +sg25270 +S'Albrecht D\xc3\xbcrer' +p223984 +sa(dp223985 +g25268 +S'Armes symboliques de la ville de Paris (Symbolical Arms of the City of Paris)' +p223986 +sg25270 +S'Charles Meryon' +p223987 +sg25273 +S'etching' +p223988 +sg25275 +S'1854' +p223989 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000995c.jpg' +p223990 +sg25267 +g27 +sa(dp223991 +g25268 +S'Armes symboliques de la ville de Paris (Symbolical Arms of the City of Paris)' +p223992 +sg25270 +S'Charles Meryon' +p223993 +sg25273 +S'etching' +p223994 +sg25275 +S'1854' +p223995 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009962.jpg' +p223996 +sg25267 +g27 +sa(dp223997 +g25268 +S'Le stryge (The Vampire)' +p223998 +sg25270 +S'Charles Meryon' +p223999 +sg25273 +S'etching on Japanese paper' +p224000 +sg25275 +S'1853' +p224001 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d57.jpg' +p224002 +sg25267 +g27 +sa(dp224003 +g25268 +S'Le Petit Pont, Paris' +p224004 +sg25270 +S'Charles Meryon' +p224005 +sg25273 +S'etching' +p224006 +sg25275 +S'1850' +p224007 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d0a.jpg' +p224008 +sg25267 +g27 +sa(dp224009 +g25268 +S"L'arche du Pont Notre-Dame, Paris (An Arch ofthe Notre-Dame Bridge, Paris)" +p224010 +sg25270 +S'Charles Meryon' +p224011 +sg25273 +S'etching with drypoint on green paper' +p224012 +sg25275 +S'1853' +p224013 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009959.jpg' +p224014 +sg25267 +g27 +sa(dp224015 +g25268 +S'La galerie Notre-Dame, Paris (The Gallery of Notre Dame, Paris)' +p224016 +sg25270 +S'Charles Meryon' +p224017 +sg25273 +S'etching' +p224018 +sg25275 +S'1853' +p224019 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d17.jpg' +p224020 +sg25267 +g27 +sa(dp224021 +g25268 +S"La Tour de l'Horloge, Paris (The Clock Tower, Paris)" +p224022 +sg25270 +S'Charles Meryon' +p224023 +sg25273 +S'etching on Japanese paper' +p224024 +sg25275 +S'1852' +p224025 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d09.jpg' +p224026 +sg25267 +g27 +sa(dp224027 +g25268 +S"La Tour de l'Horloge, Paris (The Clock Tower, Paris)" +p224028 +sg25270 +S'Charles Meryon' +p224029 +sg25273 +S'etching' +p224030 +sg25275 +S'1852' +p224031 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d0b.jpg' +p224032 +sg25267 +g27 +sa(dp224033 +g25268 +S'Saint-Etienne-du-Mont, Paris (Church of St. Stephen of the Mount, Paris)' +p224034 +sg25270 +S'Charles Meryon' +p224035 +sg25273 +S'etching on green paper' +p224036 +sg25275 +S'1852' +p224037 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d11.jpg' +p224038 +sg25267 +g27 +sa(dp224039 +g25268 +S'La Pompe Notre-Dame, Paris (The Notre-Dame Pump)' +p224040 +sg25270 +S'Charles Meryon' +p224041 +sg25273 +S'etching with drypoint on green paper' +p224042 +sg25275 +S'1852' +p224043 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d1a.jpg' +p224044 +sg25267 +g27 +sa(dp224045 +g25268 +S'Saint Martin and the Beggar' +p224046 +sg25270 +S'Artist Information (' +p224047 +sg25273 +S'Greek, 1541 - 1614' +p224048 +sg25275 +S'(related artist)' +p224049 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00005/a0000549.jpg' +p224050 +sg25267 +g27 +sa(dp224051 +g25268 +S'La Pompe Notre-Dame, Paris (The Notre-Dame Pump)' +p224052 +sg25270 +S'Charles Meryon' +p224053 +sg25273 +S'etching on India paper' +p224054 +sg25275 +S'1852' +p224055 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d19.jpg' +p224056 +sg25267 +g27 +sa(dp224057 +g25268 +S'Le Pont Neuf, Paris' +p224058 +sg25270 +S'Charles Meryon' +p224059 +sg25273 +S'etching on green paper' +p224060 +sg25275 +S'1853' +p224061 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009957.jpg' +p224062 +sg25267 +g27 +sa(dp224063 +g25268 +S'Le Pont-au-Change, Paris' +p224064 +sg25270 +S'Charles Meryon' +p224065 +sg25273 +S'etching on green paper' +p224066 +sg25275 +S'1854' +p224067 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d1f.jpg' +p224068 +sg25267 +g27 +sa(dp224069 +g25268 +S"L'abside de Notre-Dame de Paris (The Apsis ofthe Cathedral of Notre-Dame, Paris)" +p224070 +sg25270 +S'Charles Meryon' +p224071 +sg25273 +S'etching' +p224072 +sg25275 +S'1854' +p224073 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d29.jpg' +p224074 +sg25267 +g27 +sa(dp224075 +g25268 +S'La morgue, Paris (The Mortuary)' +p224076 +sg25270 +S'Charles Meryon' +p224077 +sg25273 +S'etching' +p224078 +sg25275 +S'1854' +p224079 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d7c.jpg' +p224080 +sg25267 +g27 +sa(dp224081 +g25268 +S"Le tombeau de Moli\xc3\xa8re, au P\xc3\xa8re-Lachaise, Paris (Moliere's Tomb, in P\xc3\xa8re-Lachaise Cemetary, Paris)" +p224082 +sg25270 +S'Charles Meryon' +p224083 +sg25273 +S'etching' +p224084 +sg25275 +S'1854' +p224085 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d23.jpg' +p224086 +sg25267 +g27 +sa(dp224087 +g25268 +S"Tourelle, Rue de l'\xc3\x89cole de M\xc3\xa9decine, 22, Paris (House with a Turret, No. 22, Street of the School of Medecine, Paris)" +p224088 +sg25270 +S'Charles Meryon' +p224089 +sg25273 +S'etching' +p224090 +sg25275 +S'1861' +p224091 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000996b.jpg' +p224092 +sg25267 +g27 +sa(dp224093 +g25268 +S'La Rue des Chantres, Paris (Chantrey Street, Paris)' +p224094 +sg25270 +S'Charles Meryon' +p224095 +sg25273 +S'etching' +p224096 +sg25275 +S'1862' +p224097 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d2e.jpg' +p224098 +sg25267 +g27 +sa(dp224099 +g25268 +S'Bain-froid chevrier, dit "de l\'\xc3\x89cole" (Chevrier\'s Cold-Bath Establishment, Sometimes called the "School-Baths")' +p224100 +sg25270 +S'Charles Meryon' +p224101 +sg25273 +S'etching' +p224102 +sg25275 +S'1864' +p224103 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009988.jpg' +p224104 +sg25267 +g27 +sa(dp224105 +g25268 +S'Bain-froid chevrier, dit "de l\'\xc3\x89cole" (Chevrier\'s Cold-Bath Establishment, Sometimes called the "School-Baths")' +p224106 +sg25270 +S'Charles Meryon' +p224107 +sg25273 +S'etching' +p224108 +sg25275 +S'1864' +p224109 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d84.jpg' +p224110 +sg25267 +g27 +sa(dp224111 +g25268 +S'Bain-froid chevrier, dit "de l\'\xc3\x89cole" (Chevrier\'s Cold-Bath Establishment, Sometimes called the "School-Baths")' +p224112 +sg25270 +S'Charles Meryon' +p224113 +sg25273 +S'etching' +p224114 +sg25275 +S'1864' +p224115 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d85.jpg' +p224116 +sg25267 +g27 +sa(dp224117 +g25268 +S'Bain-froid chevrier, dit "de l\'\xc3\x89cole" (Chevrier\'s Cold-Bath Establishment, Sometimes called the "School-Baths")' +p224118 +sg25270 +S'Charles Meryon' +p224119 +sg25273 +S'etching' +p224120 +sg25275 +S'1864' +p224121 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009987.jpg' +p224122 +sg25267 +g27 +sa(dp224123 +g25268 +S'La Loi lunaire, 1er planche ("Lunar" Law, 1st plate)' +p224124 +sg25270 +S'Charles Meryon' +p224125 +sg25273 +S'etching' +p224126 +sg25275 +S'1856' +p224127 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000996f.jpg' +p224128 +sg25267 +g27 +sa(dp224129 +g25268 +S'L.J.-Marie Bizeul, a Breton Archaeologist' +p224130 +sg25270 +S'Charles Meryon' +p224131 +sg25273 +S'etching' +p224132 +sg25275 +S'1861' +p224133 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009986.jpg' +p224134 +sg25267 +g27 +sa(dp224135 +g25268 +S'Jean Besly' +p224136 +sg25270 +S'Artist Information (' +p224137 +sg25273 +S'(artist after)' +p224138 +sg25275 +S'\n' +p224139 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009985.jpg' +p224140 +sg25267 +g27 +sa(dp224141 +g25268 +S'Ren\xc3\xa9 Laudonni\xc3\xa8re Sablais (De Burdigale)' +p224142 +sg25270 +S'Artist Information (' +p224143 +sg25273 +S'(artist after)' +p224144 +sg25275 +S'\n' +p224145 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009983.jpg' +p224146 +sg25267 +g27 +sa(dp224147 +g25268 +S'Fran\xc3\xa7ois Vi\xc3\xa8te' +p224148 +sg25270 +S'Artist Information (' +p224149 +sg25273 +S'(artist after)' +p224150 +sg25275 +S'\n' +p224151 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009982.jpg' +p224152 +sg25267 +g27 +sa(dp224153 +g25268 +S'Oc\xc3\xa9anie, ilots \xc3\xa0 Uvea (Wallis); Peche aux palmes, 1845 (Oceania: Fishing, Near Islands with Palms in the Uea or Wallis Group)' +p224154 +sg25270 +S'Charles Meryon' +p224155 +sg25273 +S'etching' +p224156 +sg25275 +S'1863' +p224157 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d2d.jpg' +p224158 +sg25267 +g27 +sa(dp224159 +g25268 +S'Nouvelle-Cal\xc3\xa9donie: Grande case indig\xc3\xa8ne sur le chemin de Ballade \xc3\xa0 Poepo, 1845 (New Caledonia: Large Native Hut on the Road from Balade to Puebo, 1845)' +p224160 +sg25270 +S'Charles Meryon' +p224161 +sg25273 +S'etching with drypoint' +p224162 +sg25275 +S'1863' +p224163 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000998c.jpg' +p224164 +sg25267 +g27 +sa(dp224165 +g25268 +S'Pr\xc3\xa9sentation du Val\xc3\xa8re Maxime au Rois Louis XI (The Printer Valerius Maximus Being Presented to King Louis XI)' +p224166 +sg25270 +S'Charles Meryon' +p224167 +sg25273 +S'etching' +p224168 +sg25275 +S'1860' +p224169 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009972.jpg' +p224170 +sg25267 +g27 +sa(dp224171 +g25268 +S'R\xc3\xa9bus: "Ci-g\xc3\xaet la vendetta surann\xc3\xa9e" (Rebus: "Here Lies the Ancient Vendetta")' +p224172 +sg25270 +S'Charles Meryon' +p224173 +sg25273 +S'etching' +p224174 +sg25275 +S'1863' +p224175 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009981.jpg' +p224176 +sg25267 +g27 +sa(dp224177 +g25268 +S'R\xc3\xa9bus: "B\xc3\xa9ranger ne fut v\xc3\xa9ritablement fort, car il n\'eut jamais la clef des champs" (Rebus: "Beranger was not really strong, for he never had the key of the fields")' +p224178 +sg25270 +S'Charles Meryon' +p224179 +sg25273 +S'etching' +p224180 +sg25275 +S'1864' +p224181 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d86.jpg' +p224182 +sg25267 +g27 +sa(dp224183 +g25268 +S'Study for "Le Petit Pont"' +p224184 +sg25270 +S'Charles Meryon' +p224185 +sg25273 +S'graphite on laid paper' +p224186 +sg25275 +S'probably c. 1850' +p224187 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a000709e.jpg' +p224188 +sg25267 +g27 +sa(dp224189 +g25268 +S'Study for "Le Petit Pont"' +p224190 +sg25270 +S'Charles Meryon' +p224191 +sg25273 +S'graphite on laid paper' +p224192 +sg25275 +S'probably c. 1850' +p224193 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a0007128.jpg' +p224194 +sg25267 +g27 +sa(dp224195 +g25268 +S'Study for "Le Petit Pont"' +p224196 +sg25270 +S'Charles Meryon' +p224197 +sg25273 +S'graphite on laid paper' +p224198 +sg25275 +S'probably c. 1850' +p224199 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070cb.jpg' +p224200 +sg25267 +g27 +sa(dp224201 +g25268 +S'Chasse-maree au plus pres' +p224202 +sg25270 +S'Charles Meryon' +p224203 +sg25273 +S'graphite' +p224204 +sg25275 +S'unknown date\n' +p224205 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071c2.jpg' +p224206 +sg25267 +g27 +sa(dp224207 +g25268 +S"Tikao, naturel d'Akaroa" +p224208 +sg25270 +S'Charles Meryon' +p224209 +sg25273 +S'pen and black ink over graphite' +p224210 +sg25275 +S'unknown date\n' +p224211 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071fa.jpg' +p224212 +sg25267 +g27 +sa(dp224213 +g25268 +S"Moliere's Tomb" +p224214 +sg25270 +S'Charles Meryon' +p224215 +sg25273 +S'graphite with touches of red chalk on laid paper' +p224216 +sg25275 +S'probably c. 1854' +p224217 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a0007188.jpg' +p224218 +sg25267 +g27 +sa(dp224219 +g25268 +S'River Dredges and Lighters' +p224220 +sg25270 +S'Charles Meryon' +p224221 +sg25273 +S'graphite on laid paper' +p224222 +sg25275 +S'probably c. 1850' +p224223 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073f5.jpg' +p224224 +sg25267 +g27 +sa(dp224225 +g25268 +S'Seine Boat for "Le Pont-au-Change"' +p224226 +sg25270 +S'Charles Meryon' +p224227 +sg25273 +S'graphite on laid paper' +p224228 +sg25275 +S'probably c. 1854' +p224229 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00070/a00070fc.jpg' +p224230 +sg25267 +g27 +sa(dp224231 +g25268 +S'College Henri IV' +p224232 +sg25270 +S'Charles Meryon' +p224233 +sg25273 +S'graphite with touches of red chalk on laid paper' +p224234 +sg25275 +S'1863' +p224235 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a000729c.jpg' +p224236 +sg25267 +g27 +sa(dp224237 +g25268 +S'College Henri IV' +p224238 +sg25270 +S'Charles Meryon' +p224239 +sg25273 +S'graphite with touches of red chalk on laid paper' +p224240 +sg25275 +S'1863' +p224241 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a0007231.jpg' +p224242 +sg25267 +g27 +sa(dp224243 +g25268 +S'Boats on River with Masts' +p224244 +sg25270 +S'Charles Meryon' +p224245 +sg25273 +S'graphite on laid paper' +p224246 +sg25275 +S'unknown date\n' +p224247 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073f4.jpg' +p224248 +sg25267 +g27 +sa(dp224249 +g25268 +S'La Panne' +p224250 +sg25270 +S'Charles Meryon' +p224251 +sg25273 +S'graphite' +p224252 +sg25275 +S'1839' +p224253 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a0007263.jpg' +p224254 +sg25267 +g27 +sa(dp224255 +g25268 +S'Seated Female Figure for "San Francisco"' +p224256 +sg25270 +S'Charles Meryon' +p224257 +sg25273 +S'graphite' +p224258 +sg25275 +S'probably c. 1856' +p224259 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a00071b9.jpg' +p224260 +sg25267 +g27 +sa(dp224261 +g25268 +S'Seated Male Figure for "San Francisco"' +p224262 +sg25270 +S'Charles Meryon' +p224263 +sg25273 +S'graphite' +p224264 +sg25275 +S'probably c. 1856' +p224265 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00071/a0007180.jpg' +p224266 +sg25267 +g27 +sa(dp224267 +g25268 +S"Moliere's Tomb" +p224268 +sg25270 +S'Charles Meryon' +p224269 +sg25273 +S'graphite on laid paper' +p224270 +sg25275 +S'probably c. 1854' +p224271 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00072/a00072d2.jpg' +p224272 +sg25267 +g27 +sa(dp224273 +g25268 +S'Couverture du "Voyage \xc3\xa0 la nouvelle Z\xc3\xa9lande" (Cover for the Set of Etchings Entitled "A Voyage to New Zealand")' +p224274 +sg25270 +S'Charles Meryon' +p224275 +sg25273 +S'etching on brown paper' +p224276 +sg25275 +S'1866' +p224277 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d8e.jpg' +p224278 +sg25267 +g27 +sa(dp224279 +g25268 +S'Couverture du "Voyage \xc3\xa0 la nouvelle Z\xc3\xa9lande" (Cover for the Set of Etchings Entitled "A Voyage to New Zealand")' +p224280 +sg25270 +S'Charles Meryon' +p224281 +sg25273 +S'etching' +p224282 +sg25275 +S'1866' +p224283 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d8f.jpg' +p224284 +sg25267 +g27 +sa(dp224285 +g25268 +S'Plan du Combat de Sinope (Plan of the Battle of Sinope)' +p224286 +sg25270 +S'Charles Meryon' +p224287 +sg25273 +S'etching touched with watercolor' +p224288 +sg25275 +S'1853' +p224289 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d1c.jpg' +p224290 +sg25267 +g27 +sa(dp224291 +g25268 +S'Entr\xc3\xa9e du Couvent des Capucins fran\xc3\xa7ais \xc3\xa0 Athenes (Entrance to the French Capuchin Convent at Athens)' +p224292 +sg25270 +S'Charles Meryon' +p224293 +sg25273 +S'etching with drypoint' +p224294 +sg25275 +S'1854' +p224295 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a000996a.jpg' +p224296 +sg25267 +g27 +sa(dp224297 +g25268 +S'Chevet de St. Martin-sur-Renelle (The Apsis of the Church of St. Martin-sur-Renelle)' +p224298 +sg25270 +S'Artist Information (' +p224299 +sg25273 +S'(artist after)' +p224300 +sg25275 +S'\n' +p224301 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d25.jpg' +p224302 +sg25267 +g27 +sa(dp224303 +g25268 +S"Porte d'un ancien couvent, Rue Mirabeau, \xc3\xa0 Bourges (Doorway of an Ancient Convent, in the Rue Mirabeau, Bourges)" +p224304 +sg25270 +S'Charles Meryon' +p224305 +sg25273 +S'etching and drypoint on Japanese paper' +p224306 +sg25275 +S'1851' +p224307 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009961.jpg' +p224308 +sg25267 +g27 +sa(dp224309 +g25268 +S'Chateau de Chenonceau, 2e planche (The Chateau of Chenonceau, 2nd plate)' +p224310 +sg25270 +S'Artist Information (' +p224311 +sg25273 +S'(artist after)' +p224312 +sg25275 +S'\n' +p224313 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d26.jpg' +p224314 +sg25267 +g27 +sa(dp224315 +g25268 +S'Ancienne habitation \xc3\xa0 Bourges, dite "La Maison du Musicien" (An Old House at Bourges, Sometimes Called the "Musician\'s House")' +p224316 +sg25270 +S'Charles Meryon' +p224317 +sg25273 +S'etching touched with pencil on Japanese paper' +p224318 +sg25275 +S'1860' +p224319 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009970.jpg' +p224320 +sg25267 +g27 +sa(dp224321 +g25268 +S'La Rue des Toiles, \xc3\xa0 Bourges' +p224322 +sg25270 +S'Charles Meryon' +p224323 +sg25273 +S'etching with drypoint on green paper' +p224324 +sg25275 +S'1853' +p224325 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d21.jpg' +p224326 +sg25267 +g27 +sa(dp224327 +g25273 +S'color aquatint' +p224328 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224329 +sg25268 +S'Sunday Morning' +p224330 +sg25270 +S'William Meyerowitz' +p224331 +sa(dp224332 +g25273 +S'color etching' +p224333 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224334 +sg25268 +S'Turkey Pond' +p224335 +sg25270 +S'William Meyerowitz' +p224336 +sa(dp224337 +g25273 +S'drypoint' +p224338 +sg25267 +g27 +sg25275 +S'1924' +p224339 +sg25268 +S'Along the Delaware' +p224340 +sg25270 +S'Franklin Townsend Morgan' +p224341 +sa(dp224342 +g25273 +S'drypoint' +p224343 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224344 +sg25268 +S'Harbour Scene' +p224345 +sg25270 +S'Franklin Townsend Morgan' +p224346 +sa(dp224347 +g25268 +S'Samson and Delilah' +p224348 +sg25270 +S'Hans Burgkmair I' +p224349 +sg25273 +S'woodcut' +p224350 +sg25275 +S'unknown date\n' +p224351 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8dd.jpg' +p224352 +sg25267 +g27 +sa(dp224353 +g25268 +S'The Barc' +p224354 +sg25270 +S'Artist Information (' +p224355 +sg25273 +S'(artist after)' +p224356 +sg25275 +S'\n' +p224357 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c769.jpg' +p224358 +sg25267 +g27 +sa(dp224359 +g25268 +S'Hieronymus Alexander, Archbishop of Brindisi' +p224360 +sg25270 +S'Agostino dei Musi' +p224361 +sg25273 +S'engraving' +p224362 +sg25275 +S'1536' +p224363 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c846.jpg' +p224364 +sg25267 +g27 +sa(dp224365 +g25268 +S'Pope Paul III' +p224366 +sg25270 +S'Agostino dei Musi' +p224367 +sg25273 +S'engraving' +p224368 +sg25275 +S'1534' +p224369 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c76a.jpg' +p224370 +sg25267 +g27 +sa(dp224371 +g25273 +S'wood engraving' +p224372 +sg25267 +g27 +sg25275 +S'1939' +p224373 +sg25268 +S'Self-Portrait' +p224374 +sg25270 +S'Hans Alexander Mueller' +p224375 +sa(dp224376 +g25273 +S'linoleum cut' +p224377 +sg25267 +g27 +sg25275 +S'1939' +p224378 +sg25268 +S'Cover Proof' +p224379 +sg25270 +S'Hans Alexander Mueller' +p224380 +sa(dp224381 +g25273 +S'woodcut' +p224382 +sg25267 +g27 +sg25275 +S'probably 1939' +p224383 +sg25268 +S'Don Quixote' +p224384 +sg25270 +S'Hans Alexander Mueller' +p224385 +sa(dp224386 +g25268 +S'Lucas Cranach' +p224387 +sg25270 +S'Moritz Steinla' +p224388 +sg25273 +S'engraving' +p224389 +sg25275 +S'unknown date\n' +p224390 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3e4.jpg' +p224391 +sg25267 +g27 +sa(dp224392 +g25268 +S'Couple at a Table (Paar am Tisch)' +p224393 +sg25270 +S'Otto M\xc3\xbcller' +p224394 +sg25273 +S'lithograph in black and gold' +p224395 +sg25275 +S'1922/1925' +p224396 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c475.jpg' +p224397 +sg25267 +g27 +sa(dp224398 +g25268 +S'Cardinal Guido Bentivoglio' +p224399 +sg25270 +S'Jean Morin' +p224400 +sg25273 +S'engraving and etching' +p224401 +sg25275 +S'unknown date\n' +p224402 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bc2.jpg' +p224403 +sg25267 +g27 +sa(dp224404 +g25268 +S'Dom Jean Gregoire Tarrisse' +p224405 +sg25270 +S'Jean Morin' +p224406 +sg25273 +S'engraving' +p224407 +sg25275 +S'1648' +p224408 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b54b.jpg' +p224409 +sg25267 +g27 +sa(dp224410 +g25268 +S'Jerome Franck' +p224411 +sg25270 +S'Jean Morin' +p224412 +sg25273 +S'engraving' +p224413 +sg25275 +S'unknown date\n' +p224414 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bce.jpg' +p224415 +sg25267 +g27 +sa(dp224416 +g25268 +S'Nicolas Chrystin' +p224417 +sg25270 +S'Jean Morin' +p224418 +sg25273 +S'engraving' +p224419 +sg25275 +S'unknown date\n' +p224420 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bcb.jpg' +p224421 +sg25267 +g27 +sa(dp224422 +g25273 +S'engraving' +p224423 +sg25267 +g27 +sg25275 +S'1928' +p224424 +sg25268 +S'The Water Carriers' +p224425 +sg25270 +S'William Evan Charles Morgan' +p224426 +sa(dp224427 +g25273 +S'engraving' +p224428 +sg25267 +g27 +sg25275 +S'1927' +p224429 +sg25268 +S'Anticoli' +p224430 +sg25270 +S'William Evan Charles Morgan' +p224431 +sa(dp224432 +g25273 +S'engraving' +p224433 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224434 +sg25268 +S'Perseus' +p224435 +sg25270 +S'William Evan Charles Morgan' +p224436 +sa(dp224437 +g25273 +S'engraving' +p224438 +sg25267 +g27 +sg25275 +S'1926' +p224439 +sg25268 +S'Orvieto Roofs' +p224440 +sg25270 +S'William Evan Charles Morgan' +p224441 +sa(dp224442 +g25273 +S'engraving' +p224443 +sg25267 +g27 +sg25275 +S'1926' +p224444 +sg25268 +S'Orvieto' +p224445 +sg25270 +S'William Evan Charles Morgan' +p224446 +sa(dp224447 +g25273 +S'engraving' +p224448 +sg25267 +g27 +sg25275 +S'1927' +p224449 +sg25268 +S'Antonio' +p224450 +sg25270 +S'William Evan Charles Morgan' +p224451 +sa(dp224452 +g25273 +S'engraving' +p224453 +sg25267 +g27 +sg25275 +S'1927' +p224454 +sg25268 +S'Saracinesco' +p224455 +sg25270 +S'William Evan Charles Morgan' +p224456 +sa(dp224457 +g25273 +S'engraving' +p224458 +sg25267 +g27 +sg25275 +S'1927' +p224459 +sg25268 +S'The Bells of Alba' +p224460 +sg25270 +S'William Evan Charles Morgan' +p224461 +sa(dp224462 +g25273 +S'engraving' +p224463 +sg25267 +g27 +sg25275 +S'1927' +p224464 +sg25268 +S'The Source' +p224465 +sg25270 +S'William Evan Charles Morgan' +p224466 +sa(dp224467 +g25268 +S'Birth of Adonis' +p224468 +sg25270 +S'Benedetto Montagna' +p224469 +sg25273 +S'engraving' +p224470 +sg25275 +S'c. 1515/1520' +p224471 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c759.jpg' +p224472 +sg25267 +g27 +sa(dp224473 +g25268 +S'Woman and Satyr with Two Cupids' +p224474 +sg25270 +S'Benedetto Montagna' +p224475 +sg25273 +S'engraving' +p224476 +sg25275 +S'c. 1506/1512' +p224477 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c75d.jpg' +p224478 +sg25267 +g27 +sa(dp224479 +g25268 +S'The Nativity' +p224480 +sg25270 +S'Benedetto Montagna' +p224481 +sg25273 +S'engraving' +p224482 +sg25275 +S'c. 1507' +p224483 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c758.jpg' +p224484 +sg25267 +g27 +sa(dp224485 +g25268 +S"Satyr's Family" +p224486 +sg25270 +S'Benedetto Montagna' +p224487 +sg25273 +S'engraving' +p224488 +sg25275 +S'c. 1512/1520' +p224489 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c75b.jpg' +p224490 +sg25267 +g27 +sa(dp224491 +g25268 +S'Man Seated by a Palm Tree' +p224492 +sg25270 +S'Benedetto Montagna' +p224493 +sg25273 +S'engraving' +p224494 +sg25275 +S'c. 1510/1515' +p224495 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c75e.jpg' +p224496 +sg25267 +g27 +sa(dp224497 +g25268 +S'The Virgin and Child' +p224498 +sg25270 +S'Benedetto Montagna' +p224499 +sg25273 +S'engraving' +p224500 +sg25275 +S'c. 1502' +p224501 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c755.jpg' +p224502 +sg25267 +g27 +sa(dp224503 +g25268 +S'The Virgin and Child' +p224504 +sg25270 +S'Benedetto Montagna' +p224505 +sg25273 +S'engraving' +p224506 +sg25275 +S'c. 1502' +p224507 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c754.jpg' +p224508 +sg25267 +g27 +sa(dp224509 +g25268 +S'The Agony in the Garden' +p224510 +sg25270 +S'Benedetto Montagna' +p224511 +sg25273 +S'engraving' +p224512 +sg25275 +S'c. 1506/1507' +p224513 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c756.jpg' +p224514 +sg25267 +g27 +sa(dp224515 +g25268 +S'Shepherd with a Platerspiel' +p224516 +sg25270 +S'Benedetto Montagna' +p224517 +sg25273 +S'engraving' +p224518 +sg25275 +S'c. 1500/1515' +p224519 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c75f.jpg' +p224520 +sg25267 +g27 +sa(dp224521 +g25268 +S'Flagellation of Christ, with the Pavement' +p224522 +sg25270 +S'Artist Information (' +p224523 +sg25273 +S'(artist)' +p224524 +sg25275 +S'\n' +p224525 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7ab.jpg' +p224526 +sg25267 +g27 +sa(dp224527 +g25273 +S'lithograph' +p224528 +sg25267 +g27 +sg25275 +S'1940' +p224529 +sg25268 +S'Pro Denda Publica' +p224530 +sg25270 +S'Jos\xc3\xa9 Chavez Morado' +p224531 +sa(dp224532 +g25273 +S'bound volume with 14 drawings in mixed media' +p224533 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224534 +sg25268 +S'Album of Caricatures' +p224535 +sg25270 +S'Henry Bonaventure Monnier' +p224536 +sa(dp224537 +g25268 +S'Artois' +p224538 +sg25270 +S'Henry Bonaventure Monnier' +p224539 +sg25273 +S'pen and red ink and watercolor over graphite' +p224540 +sg25275 +S'1869' +p224541 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073fa.jpg' +p224542 +sg25267 +g27 +sa(dp224543 +g25268 +S'La Journee du 10 aout 1792' +p224544 +sg25270 +S'Artist Information (' +p224545 +sg25273 +S'(artist after)' +p224546 +sg25275 +S'\n' +p224547 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ead.jpg' +p224548 +sg25267 +g27 +sa(dp224549 +g25268 +S'La Fontaine de la Regeneration sur les debris de la Bastille, le 10 avril 1793' +p224550 +sg25270 +S'Artist Information (' +p224551 +sg25273 +S'(artist after)' +p224552 +sg25275 +S'\n' +p224553 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008eb1.jpg' +p224554 +sg25267 +g27 +sa(dp224555 +g25268 +S"L'Ouverture des Etats-Generaux a Versailles, le 5 mars 1789" +p224556 +sg25270 +S'Artist Information (' +p224557 +sg25273 +S'(artist after)' +p224558 +sg25275 +S'\n' +p224559 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008eae.jpg' +p224560 +sg25267 +g27 +sa(dp224561 +g25268 +S"La Pompe funebre en l'honneur des martyrs de la Journee du 10 dans le jardin national" +p224562 +sg25270 +S'Artist Information (' +p224563 +sg25273 +S'(artist after)' +p224564 +sg25275 +S'\n' +p224565 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008eb0.jpg' +p224566 +sg25267 +g27 +sa(dp224567 +g25268 +S'Journee du 16 octobre 1793, la morte de Marie-Antoinette' +p224568 +sg25270 +S'Artist Information (' +p224569 +sg25273 +S'(artist after)' +p224570 +sg25275 +S'\n' +p224571 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008eb3.jpg' +p224572 +sg25267 +g27 +sa(dp224573 +g25268 +S'Federation Generale de Francais au Champ de Mars le 14 juillet 1790' +p224574 +sg25270 +S'Artist Information (' +p224575 +sg25273 +S'(artist after)' +p224576 +sg25275 +S'\n' +p224577 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008eb2.jpg' +p224578 +sg25267 +g27 +sa(dp224579 +g25268 +S'The Sower' +p224580 +sg25270 +S'Jean-Fran\xc3\xa7ois Millet' +p224581 +sg25273 +S'chalk on blue laid paper' +p224582 +sg25275 +S'unknown date\n' +p224583 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00058/a0005880.jpg' +p224584 +sg25267 +g27 +sa(dp224585 +g25268 +S'The Newborn' +p224586 +sg25270 +S'Jean-Fran\xc3\xa7ois Millet' +p224587 +sg25273 +S'charcoal on blue laid paper' +p224588 +sg25275 +S'unknown date\n' +p224589 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00073/a00073f6.jpg' +p224590 +sg25267 +g27 +sa(dp224591 +g25268 +S'The Large Shepherdess (La grande bergere)' +p224592 +sg25270 +S'Jean-Fran\xc3\xa7ois Millet' +p224593 +sg25273 +S'etching' +p224594 +sg25275 +S'1862' +p224595 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d92.jpg' +p224596 +sg25267 +g27 +sa(dp224597 +g25268 +S'The Diggers (Les becheurs)' +p224598 +sg25270 +S'Jean-Fran\xc3\xa7ois Millet' +p224599 +sg25273 +S'etching' +p224600 +sg25275 +S'unknown date\n' +p224601 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d93.jpg' +p224602 +sg25267 +g27 +sa(dp224603 +g25268 +S'Man with Wheelbarrow (Le paysan rentrant du fumier)' +p224604 +sg25270 +S'Jean-Fran\xc3\xa7ois Millet' +p224605 +sg25273 +S'etching' +p224606 +sg25275 +S'1855' +p224607 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00099/a0009948.jpg' +p224608 +sg25267 +g27 +sa(dp224609 +g25268 +S'Departure for Work (Le depart pour le travail)' +p224610 +sg25270 +S'Jean-Fran\xc3\xa7ois Millet' +p224611 +sg25273 +S'etching' +p224612 +sg25275 +S'1863' +p224613 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fe5.jpg' +p224614 +sg25267 +g27 +sa(dp224615 +g25268 +S'Earl Spencer' +p224616 +sg25270 +S'Artist Information (' +p224617 +sg25273 +S'(artist after)' +p224618 +sg25275 +S'\n' +p224619 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00079/a00079f1.jpg' +p224620 +sg25267 +g27 +sa(dp224621 +g25273 +S'Rosenwald Collection' +p224622 +sg25267 +g27 +sg25275 +S'\nportfolio with 140 etch. & engr. by various artists after Boucher, Gravelot, Le Prince, Moreau and Monnet for 1767/71 ed. "Les Metamorphoses d\'Ovide"' +p224623 +sg25268 +S'Prints from "Les Metamorphoses d\'Ovide"' +p224624 +sg25270 +S'Various Artists' +p224625 +sa(dp224626 +g25273 +S'color etching' +p224627 +sg25267 +g27 +sg25275 +S'1936' +p224628 +sg25268 +S'Yewtwig' +p224629 +sg25270 +S'Ludwig Mestler' +p224630 +sa(dp224631 +g25273 +S'color etching' +p224632 +sg25267 +g27 +sg25275 +S'1936' +p224633 +sg25268 +S'Schone Wienerin' +p224634 +sg25270 +S'Ludwig Mestler' +p224635 +sa(dp224636 +g25273 +S'color etching' +p224637 +sg25267 +g27 +sg25275 +S'1936' +p224638 +sg25268 +S'Pine Twig' +p224639 +sg25270 +S'Ludwig Mestler' +p224640 +sa(dp224641 +g25268 +S'The Marquesa de Pontejos' +p224642 +sg25270 +S'Francisco de Goya' +p224643 +sg25273 +S'oil on canvas' +p224644 +sg25275 +S'c. 1786' +p224645 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00004/a000049b.jpg' +p224646 +sg25267 +S"Trees, grass, and shrubbery, simplified almost to abstraction, set off the fragile, wasp–waisted figure of María Ana de Pontejos y Sandoval, the Marquesa de Pontejos. Splendidly attired, she typifies those ladies of the Spanish aristocracy who affected the "shepherdess" style of Marie Antoinette, so popular in pre–revolutionary France.\n The 18th century's sentimental fondness for nature, influenced by the writings of Jean–Jacques Rousseau, is alluded to in the parklike setting, the roses arranged around the bodice of the gown and tucked into the folds of the voluminous overskirt, and in the carnation that the marquesa holds with self–conscious elegance. Framing her artfully arranged coiffure, the broad–brimmed picture hat again bespeaks high fashion, perhaps imported from England; such hats were often seen in contemporary portraits by Gainsborough and other British painters. While the painting's pale tones reflect the last stages of the rococo in Spanish art, the overall silvery gray–green tonality is equally reminiscent of the earlier Spanish master, Velázquez, whose paintings Goya had studied and copied.\n Goya probably painted this portrait on the occasion of the marquesa's first marriage, to Francisco de Monino y Redondo, brother of the all–powerful Count of Floridablanca, another of Goya's noble patrons.\n " +p224647 +sa(dp224648 +g25268 +S'Francois Guenault' +p224649 +sg25270 +S'Robert Nanteuil' +p224650 +sg25273 +S'engraving' +p224651 +sg25275 +S'1664' +p224652 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b53.jpg' +p224653 +sg25267 +g27 +sa(dp224654 +g25273 +S'etching' +p224655 +sg25267 +g27 +sg25275 +S'1936' +p224656 +sg25268 +S'Bookplate Ricka Deutsch' +p224657 +sg25270 +S'Ludwig Mestler' +p224658 +sa(dp224659 +g25273 +S'color etching' +p224660 +sg25267 +g27 +sg25275 +S'1934' +p224661 +sg25268 +S'Daisy' +p224662 +sg25270 +S'Ludwig Mestler' +p224663 +sa(dp224664 +g25273 +S'etching' +p224665 +sg25267 +g27 +sg25275 +S'1940' +p224666 +sg25268 +S'Grasshopper' +p224667 +sg25270 +S'Ludwig Mestler' +p224668 +sa(dp224669 +g25273 +S'etching' +p224670 +sg25267 +g27 +sg25275 +S'1935' +p224671 +sg25268 +S'Open Window' +p224672 +sg25270 +S'Ludwig Mestler' +p224673 +sa(dp224674 +g25273 +S'lithograph' +p224675 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224676 +sg25268 +S'The Annunciation' +p224677 +sg25270 +S'Ivan Mestrovic' +p224678 +sa(dp224679 +g25273 +S'lithograph' +p224680 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224681 +sg25268 +S'Christ and the Woman Taken in Adultery' +p224682 +sg25270 +S'Ivan Mestrovic' +p224683 +sa(dp224684 +g25273 +S'lithograph' +p224685 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224686 +sg25268 +S'Girl with Flower' +p224687 +sg25270 +S'Ivan Mestrovic' +p224688 +sa(dp224689 +g25273 +S'lithograph' +p224690 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224691 +sg25268 +S'Girl with Mandolin' +p224692 +sg25270 +S'Ivan Mestrovic' +p224693 +sa(dp224694 +g25273 +S'lithograph' +p224695 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224696 +sg25268 +S'Girl with Mandolin' +p224697 +sg25270 +S'Ivan Mestrovic' +p224698 +sa(dp224699 +g25273 +S'lithograph' +p224700 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224701 +sg25268 +S'Lament' +p224702 +sg25270 +S'Ivan Mestrovic' +p224703 +sa(dp224704 +g25268 +S"Simon Dreux d'Aubray" +p224705 +sg25270 +S'Robert Nanteuil' +p224706 +sg25273 +S'engraving' +p224707 +sg25275 +S'1658' +p224708 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b564.jpg' +p224709 +sg25267 +g27 +sa(dp224710 +g25273 +S'lithograph' +p224711 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224712 +sg25268 +S'Love' +p224713 +sg25270 +S'Ivan Mestrovic' +p224714 +sa(dp224715 +g25273 +S'lithograph' +p224716 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224717 +sg25268 +S'Mater Dolorosa' +p224718 +sg25270 +S'Ivan Mestrovic' +p224719 +sa(dp224720 +g25273 +S'lithograph' +p224721 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224722 +sg25268 +S'Moses' +p224723 +sg25270 +S'Ivan Mestrovic' +p224724 +sa(dp224725 +g25273 +S'lithograph' +p224726 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224727 +sg25268 +S'Moses Kneeling' +p224728 +sg25270 +S'Ivan Mestrovic' +p224729 +sa(dp224730 +g25273 +S'lithograph' +p224731 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224732 +sg25268 +S'Jesus Praying' +p224733 +sg25270 +S'Ivan Mestrovic' +p224734 +sa(dp224735 +g25273 +S'lithograph' +p224736 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224737 +sg25268 +S'Saint George' +p224738 +sg25270 +S'Ivan Mestrovic' +p224739 +sa(dp224740 +g25273 +S'lithograph' +p224741 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224742 +sg25268 +S'Three Women' +p224743 +sg25270 +S'Ivan Mestrovic' +p224744 +sa(dp224745 +g25273 +S'lithograph' +p224746 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224747 +sg25268 +S'Two Widows' +p224748 +sg25270 +S'Ivan Mestrovic' +p224749 +sa(dp224750 +g25273 +S'lithograph' +p224751 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224752 +sg25268 +S'Two Women' +p224753 +sg25270 +S'Ivan Mestrovic' +p224754 +sa(dp224755 +g25273 +S'lithograph' +p224756 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224757 +sg25268 +S'Warriors' +p224758 +sg25270 +S'Ivan Mestrovic' +p224759 +sa(dp224760 +g25268 +S'Antoine Barillon' +p224761 +sg25270 +S'Robert Nanteuil' +p224762 +sg25273 +S'engraving' +p224763 +sg25275 +S'1661' +p224764 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b567.jpg' +p224765 +sg25267 +g27 +sa(dp224766 +g25273 +S'lithograph in brown' +p224767 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224768 +sg25268 +S'Woman' +p224769 +sg25270 +S'Ivan Mestrovic' +p224770 +sa(dp224771 +g25273 +S'brown crayon on brown paper' +p224772 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224773 +sg25268 +S'Christ in Prayer' +p224774 +sg25270 +S'Ivan Mestrovic' +p224775 +sa(dp224776 +g25273 +S'brown crayon on brown paper' +p224777 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224778 +sg25268 +S'Madonna and Child' +p224779 +sg25270 +S'Ivan Mestrovic' +p224780 +sa(dp224781 +g25273 +S'pink crayon' +p224782 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224783 +sg25268 +S'Woman [recto]' +p224784 +sg25270 +S'Ivan Mestrovic' +p224785 +sa(dp224786 +g25273 +S'blue crayon' +p224787 +sg25267 +g27 +sg25275 +S'unknown date\n' +p224788 +sg25268 +S'The Deposition [verso]' +p224789 +sg25270 +S'Ivan Mestrovic' +p224790 +sa(dp224791 +g25268 +S'Pendant' +p224792 +sg25270 +S'Robert Nanteuil' +p224793 +sg25273 +S'engraving' +p224794 +sg25275 +S'unknown date\n' +p224795 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c1f.jpg' +p224796 +sg25267 +g27 +sa(dp224797 +g25268 +S'Arms of Charles II, Duc de Mantoue' +p224798 +sg25270 +S'Robert Nanteuil' +p224799 +sg25273 +S'engraving' +p224800 +sg25275 +S'unknown date\n' +p224801 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a2e.jpg' +p224802 +sg25267 +g27 +sa(dp224803 +g25268 +S'The Four Evangelists' +p224804 +sg25270 +S'Robert Nanteuil' +p224805 +sg25273 +S'engraving' +p224806 +sg25275 +S'unknown date\n' +p224807 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a2a.jpg' +p224808 +sg25267 +g27 +sa(dp224809 +g25268 +S'Mater Dolorosa' +p224810 +sg25270 +S'Robert Nanteuil' +p224811 +sg25273 +S'engraving' +p224812 +sg25275 +S'1654' +p224813 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c18.jpg' +p224814 +sg25267 +g27 +sa(dp224815 +g25268 +S'Ecce Homo' +p224816 +sg25270 +S'Robert Nanteuil' +p224817 +sg25273 +S'engraving' +p224818 +sg25275 +S'1653' +p224819 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c17.jpg' +p224820 +sg25267 +g27 +sa(dp224821 +g25268 +S'Christ Full-Length' +p224822 +sg25270 +S'Robert Nanteuil' +p224823 +sg25273 +S'engraving' +p224824 +sg25275 +S'1643' +p224825 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c20.jpg' +p224826 +sg25267 +g27 +sa(dp224827 +g25268 +S'The Holy Family' +p224828 +sg25270 +S'Robert Nanteuil' +p224829 +sg25273 +S'engraving' +p224830 +sg25275 +S'1645' +p224831 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c1c.jpg' +p224832 +sg25267 +g27 +sa(dp224833 +g25268 +S'Vincent Voiture' +p224834 +sg25270 +S'Artist Information (' +p224835 +sg25273 +S'(artist after)' +p224836 +sg25275 +S'\n' +p224837 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a2d.jpg' +p224838 +sg25267 +g27 +sa(dp224839 +g25268 +S'Marechal de Turenne' +p224840 +sg25270 +S'Robert Nanteuil' +p224841 +sg25273 +S'engraving' +p224842 +sg25275 +S'1665' +p224843 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cb7.jpg' +p224844 +sg25267 +g27 +sa(dp224845 +g25268 +S'Claude Thevenin' +p224846 +sg25270 +S'Robert Nanteuil' +p224847 +sg25273 +S'engraving' +p224848 +sg25275 +S'1657' +p224849 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c1a.jpg' +p224850 +sg25267 +g27 +sa(dp224851 +g25268 +S'Claude Thevenin' +p224852 +sg25270 +S'Robert Nanteuil' +p224853 +sg25273 +S'engraving' +p224854 +sg25275 +S'1653' +p224855 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dd3.jpg' +p224856 +sg25267 +g27 +sa(dp224857 +g25268 +S'Denis Talon' +p224858 +sg25270 +S'Robert Nanteuil' +p224859 +sg25273 +S'engraving' +p224860 +sg25275 +S'1656' +p224861 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c1b.jpg' +p224862 +sg25267 +g27 +sa(dp224863 +g25268 +S'Louis-Francois de La Baume de Suze' +p224864 +sg25270 +S'Robert Nanteuil' +p224865 +sg25273 +S'engraving' +p224866 +sg25275 +S'unknown date\n' +p224867 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c1e.jpg' +p224868 +sg25267 +g27 +sa(dp224869 +g25268 +S'Christina, Queen of Sweden' +p224870 +sg25270 +S'Artist Information (' +p224871 +sg25273 +S'(artist after)' +p224872 +sg25275 +S'\n' +p224873 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c0f.jpg' +p224874 +sg25267 +g27 +sa(dp224875 +g25268 +S'Alexander de Seve' +p224876 +sg25270 +S'Robert Nanteuil' +p224877 +sg25273 +S'engraving' +p224878 +sg25275 +S'1662' +p224879 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c13.jpg' +p224880 +sg25267 +g27 +sa(dp224881 +g25268 +S'Francois de la Mothe Le Vayer' +p224882 +sg25270 +S'Robert Nanteuil' +p224883 +sg25273 +S'engraving' +p224884 +sg25275 +S'1661' +p224885 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b77.jpg' +p224886 +sg25267 +g27 +sa(dp224887 +g25268 +S'Marechal de Turenne' +p224888 +sg25270 +S'Artist Information (' +p224889 +sg25273 +S'(artist after)' +p224890 +sg25275 +S'\n' +p224891 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c19.jpg' +p224892 +sg25267 +g27 +sa(dp224893 +g25268 +S'Anne of Austria, Queen of France and Navarre' +p224894 +sg25270 +S'Robert Nanteuil' +p224895 +sg25273 +S'engraving' +p224896 +sg25275 +S'1666' +p224897 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dd0.jpg' +p224898 +sg25267 +g27 +sa(dp224899 +g25268 +S'Rene, Marquis de Maisons' +p224900 +sg25270 +S'Robert Nanteuil' +p224901 +sg25273 +S'engraving' +p224902 +sg25275 +S'1653' +p224903 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b80.jpg' +p224904 +sg25267 +g27 +sa(dp224905 +g25268 +S'Rene, Marquis de Maisons' +p224906 +sg25270 +S'Robert Nanteuil' +p224907 +sg25273 +S'engraving' +p224908 +sg25275 +S'1661' +p224909 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b7d.jpg' +p224910 +sg25267 +g27 +sa(dp224911 +g25268 +S'Rene, Marquis de Maisons' +p224912 +sg25270 +S'Robert Nanteuil' +p224913 +sg25273 +S'engraving' +p224914 +sg25275 +S'1661' +p224915 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b7e.jpg' +p224916 +sg25267 +g27 +sa(dp224917 +g25268 +S'Francois Mallier du Houssay' +p224918 +sg25270 +S'Artist Information (' +p224919 +sg25273 +S'(artist after)' +p224920 +sg25275 +S'\n' +p224921 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b84.jpg' +p224922 +sg25267 +g27 +sa(dp224923 +g25268 +S'Charles II, Duc de Mantoue' +p224924 +sg25270 +S'Robert Nanteuil' +p224925 +sg25273 +S'engraving' +p224926 +sg25275 +S'1652' +p224927 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b8c.jpg' +p224928 +sg25267 +g27 +sa(dp224929 +g25268 +S'Pierre de Maridat' +p224930 +sg25270 +S'Robert Nanteuil' +p224931 +sg25273 +S'engraving' +p224932 +sg25275 +S'1653' +p224933 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a28.jpg' +p224934 +sg25267 +g27 +sa(dp224935 +g25268 +S'Denis Marin' +p224936 +sg25270 +S'Artist Information (' +p224937 +sg25273 +S'(artist after)' +p224938 +sg25275 +S'\n' +p224939 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b89.jpg' +p224940 +sg25267 +g27 +sa(dp224941 +g25268 +S"L'Abbe Michel de Marolles" +p224942 +sg25270 +S'Robert Nanteuil' +p224943 +sg25273 +S'engraving' +p224944 +sg25275 +S'1657' +p224945 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a27.jpg' +p224946 +sg25267 +g27 +sa(dp224947 +g25268 +S'Leonor Goyon de Matignon' +p224948 +sg25270 +S'Robert Nanteuil' +p224949 +sg25273 +S'engraving' +p224950 +sg25275 +S'1657' +p224951 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b8a.jpg' +p224952 +sg25267 +g27 +sa(dp224953 +g25268 +S'Jean de Maupeou' +p224954 +sg25270 +S'Robert Nanteuil' +p224955 +sg25273 +S'engraving' +p224956 +sg25275 +S'1671' +p224957 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b82.jpg' +p224958 +sg25267 +g27 +sa(dp224959 +g25268 +S'Cardinal Jules Mazarin' +p224960 +sg25270 +S'Robert Nanteuil' +p224961 +sg25273 +S'engraving' +p224962 +sg25275 +S'1652' +p224963 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b87.jpg' +p224964 +sg25267 +g27 +sa(dp224965 +g25268 +S'Cardinal Jules Mazarin' +p224966 +sg25270 +S'Robert Nanteuil' +p224967 +sg25273 +S'engraving' +p224968 +sg25275 +S'1655' +p224969 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b8b.jpg' +p224970 +sg25267 +g27 +sa(dp224971 +g25268 +S'Cardinal Jules Mazarin' +p224972 +sg25270 +S'Robert Nanteuil' +p224973 +sg25273 +S'engraving' +p224974 +sg25275 +S'1656' +p224975 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b88.jpg' +p224976 +sg25267 +g27 +sa(dp224977 +g25268 +S'Cardinal Jules Mazarin' +p224978 +sg25270 +S'Robert Nanteuil' +p224979 +sg25273 +S'engraving' +p224980 +sg25275 +S'1656' +p224981 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b86.jpg' +p224982 +sg25267 +g27 +sa(dp224983 +g25268 +S'Cardinal Jules Mazarin' +p224984 +sg25270 +S'Artist Information (' +p224985 +sg25273 +S'(artist)' +p224986 +sg25275 +S'\n' +p224987 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b85.jpg' +p224988 +sg25267 +g27 +sa(dp224989 +g25268 +S'Cardinal Jules Mazarin' +p224990 +sg25270 +S'Robert Nanteuil' +p224991 +sg25273 +S'engraving' +p224992 +sg25275 +S'1656' +p224993 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b90.jpg' +p224994 +sg25267 +g27 +sa(dp224995 +g25268 +S'Cardinal Jules Mazarin' +p224996 +sg25270 +S'Artist Information (' +p224997 +sg25273 +S'(artist after)' +p224998 +sg25275 +S'\n' +p224999 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b93.jpg' +p225000 +sg25267 +g27 +sa(dp225001 +g25268 +S'Christ in Limbo' +p225002 +sg25270 +S'Martin Schongauer' +p225003 +sg25273 +S'engraving' +p225004 +sg25275 +S'c. 1480' +p225005 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4a5.jpg' +p225006 +sg25267 +g27 +sa(dp225007 +g25268 +S'Cardinal Jules Mazarin' +p225008 +sg25270 +S'Robert Nanteuil' +p225009 +sg25273 +S'engraving' +p225010 +sg25275 +S'1658' +p225011 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b96.jpg' +p225012 +sg25267 +g27 +sa(dp225013 +g25268 +S'Cardinal Jules Mazarin' +p225014 +sg25270 +S'Robert Nanteuil' +p225015 +sg25273 +S'engraving' +p225016 +sg25275 +S'1659' +p225017 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b8f.jpg' +p225018 +sg25267 +g27 +sa(dp225019 +g25268 +S'Cardinal Jules Mazarin' +p225020 +sg25270 +S'Robert Nanteuil' +p225021 +sg25273 +S'engraving' +p225022 +sg25275 +S'1659' +p225023 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b97.jpg' +p225024 +sg25267 +g27 +sa(dp225025 +g25268 +S'Chancellor Michel Le Tellier' +p225026 +sg25270 +S'Robert Nanteuil' +p225027 +sg25273 +S'engraving' +p225028 +sg25275 +S'1659' +p225029 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b68.jpg' +p225030 +sg25267 +g27 +sa(dp225031 +g25268 +S'Chancellor Michel Le Tellier' +p225032 +sg25270 +S'Robert Nanteuil' +p225033 +sg25273 +S'engraving' +p225034 +sg25275 +S'1658' +p225035 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b65.jpg' +p225036 +sg25267 +g27 +sa(dp225037 +g25268 +S'Chancellor Michel Le Tellier' +p225038 +sg25270 +S'Robert Nanteuil' +p225039 +sg25273 +S'engraving' +p225040 +sg25275 +S'1658' +p225041 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b64.jpg' +p225042 +sg25267 +g27 +sa(dp225043 +g25268 +S'Chancellor Michel Le Tellier' +p225044 +sg25270 +S'Artist Information (' +p225045 +sg25273 +S'(artist after)' +p225046 +sg25275 +S'\n' +p225047 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b62.jpg' +p225048 +sg25267 +g27 +sa(dp225049 +g25268 +S'Antoine Le Paultre' +p225050 +sg25270 +S'Artist Information (' +p225051 +sg25273 +S'(artist)' +p225052 +sg25275 +S'\n' +p225053 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b69.jpg' +p225054 +sg25267 +g27 +sa(dp225055 +g25268 +S'Michel Le Masle' +p225056 +sg25270 +S'Robert Nanteuil' +p225057 +sg25273 +S'engraving' +p225058 +sg25275 +S'1658' +p225059 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b66.jpg' +p225060 +sg25267 +g27 +sa(dp225061 +g25268 +S'Jacques Le Coigneux' +p225062 +sg25270 +S'Artist Information (' +p225063 +sg25273 +S'(artist after)' +p225064 +sg25275 +S'\n' +p225065 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b5f.jpg' +p225066 +sg25267 +g27 +sa(dp225067 +g25268 +S'The Resurrection' +p225068 +sg25270 +S'Martin Schongauer' +p225069 +sg25273 +S'engraving' +p225070 +sg25275 +S'c. 1480' +p225071 +sg25314 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a4a4.jpg' +p225072 +sg25267 +g27 +sa(dp225073 +g25268 +S'Jean Le Camus' +p225074 +sg25270 +S'Robert Nanteuil' +p225075 +sg25273 +S'engraving' +p225076 +sg25275 +S'1674' +p225077 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dde.jpg' +p225078 +sg25267 +g27 +sa(dp225079 +g25268 +S'Noel Le Boultz' +p225080 +sg25270 +S'Robert Nanteuil' +p225081 +sg25273 +S'engraving' +p225082 +sg25275 +S'1671' +p225083 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b6b.jpg' +p225084 +sg25267 +g27 +sa(dp225085 +g25268 +S'Louis-Phelypeaux de La Vrilliere' +p225086 +sg25270 +S'Robert Nanteuil' +p225087 +sg25273 +S'engraving' +p225088 +sg25275 +S'1662' +p225089 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b67.jpg' +p225090 +sg25267 +g27 +sa(dp225091 +g25268 +S'Philibert-Emmanuel de Beaumanoir Lavardin' +p225092 +sg25270 +S'Robert Nanteuil' +p225093 +sg25273 +S'engraving' +p225094 +sg25275 +S'1660' +p225095 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b6a.jpg' +p225096 +sg25267 +g27 +sa(dp225097 +g25268 +S'Philibert-Emmanuel de Beaumanoir Lavardin' +p225098 +sg25270 +S'Artist Information (' +p225099 +sg25273 +S'(artist after)' +p225100 +sg25275 +S'\n' +p225101 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b61.jpg' +p225102 +sg25267 +g27 +sa(dp225103 +g25268 +S'Michel Larcher' +p225104 +sg25270 +S'Robert Nanteuil' +p225105 +sg25273 +S'engraving' +p225106 +sg25275 +S'1649' +p225107 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b60.jpg' +p225108 +sg25267 +g27 +sa(dp225109 +g25268 +S'Guillaume de Lamoignon' +p225110 +sg25270 +S'Robert Nanteuil' +p225111 +sg25273 +S'engraving' +p225112 +sg25275 +S'1676' +p225113 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dd7.jpg' +p225114 +sg25267 +g27 +sa(dp225115 +g25268 +S'Guillaume de Lamoignon' +p225116 +sg25270 +S'Robert Nanteuil' +p225117 +sg25273 +S'engraving' +p225118 +sg25275 +S'1663' +p225119 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b58.jpg' +p225120 +sg25267 +g27 +sa(dp225121 +g25268 +S'Guillaume de Lamoignon' +p225122 +sg25270 +S'Robert Nanteuil' +p225123 +sg25273 +S'engraving' +p225124 +sg25275 +S'1659' +p225125 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b5a.jpg' +p225126 +sg25267 +g27 +sa(dp225127 +g25268 +S'Marechal de La Meilleraye' +p225128 +sg25270 +S'Artist Information (' +p225129 +sg25273 +S'(artist after)' +p225130 +sg25275 +S'\n' +p225131 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b56.jpg' +p225132 +sg25267 +g27 +sa(dp225133 +g25268 +S'Giacomo Antonio Mannini' +p225134 +sg25270 +S'Ottavio Leoni' +p225135 +sg25273 +S'engraving' +p225136 +sg25275 +S'unknown date\n' +p225137 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a0006120.jpg' +p225138 +sg25267 +g27 +sa(dp225139 +g25268 +S'Pierre Lallemant' +p225140 +sg25270 +S'Robert Nanteuil' +p225141 +sg25273 +S'engraving' +p225142 +sg25275 +S'1678' +p225143 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b5d.jpg' +p225144 +sg25267 +g27 +sa(dp225145 +g25268 +S'Denis de La Barde' +p225146 +sg25270 +S'Robert Nanteuil' +p225147 +sg25273 +S'engraving' +p225148 +sg25275 +S'1657' +p225149 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b57.jpg' +p225150 +sg25267 +g27 +sa(dp225151 +g25268 +S'Don Juan of Austria' +p225152 +sg25270 +S'Robert Nanteuil' +p225153 +sg25273 +S'engraving' +p225154 +sg25275 +S'1673' +p225155 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b5e.jpg' +p225156 +sg25267 +g27 +sa(dp225157 +g25268 +S'Claude Joly' +p225158 +sg25270 +S'Robert Nanteuil' +p225159 +sg25273 +S'engraving' +p225160 +sg25275 +S'1673' +p225161 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b55.jpg' +p225162 +sg25267 +g27 +sa(dp225163 +g25268 +S'Pierre Jeannin' +p225164 +sg25270 +S'Robert Nanteuil' +p225165 +sg25273 +S'engraving' +p225166 +sg25275 +S'1656' +p225167 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b5c.jpg' +p225168 +sg25267 +g27 +sa(dp225169 +g25268 +S'Louis Hesselin' +p225170 +sg25270 +S'Robert Nanteuil' +p225171 +sg25273 +S'engraving' +p225172 +sg25275 +S'1658' +p225173 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b59.jpg' +p225174 +sg25267 +g27 +sa(dp225175 +g25268 +S'Louis Hesselin' +p225176 +sg25270 +S'Robert Nanteuil' +p225177 +sg25273 +S'engraving' +p225178 +sg25275 +S'1650' +p225179 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a24.jpg' +p225180 +sg25267 +g27 +sa(dp225181 +g25268 +S'Francois de Harlay' +p225182 +sg25270 +S'Robert Nanteuil' +p225183 +sg25273 +S'engraving' +p225184 +sg25275 +S'1673' +p225185 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dd8.jpg' +p225186 +sg25267 +g27 +sa(dp225187 +g25268 +S'Francois de Harlay' +p225188 +sg25270 +S'Robert Nanteuil' +p225189 +sg25273 +S'engraving' +p225190 +sg25275 +S'1671' +p225191 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b54.jpg' +p225192 +sg25267 +g27 +sa(dp225193 +g25268 +S'Henri de Guenegaud' +p225194 +sg25270 +S'Artist Information (' +p225195 +sg25273 +S'(artist after)' +p225196 +sg25275 +S'\n' +p225197 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b4f.jpg' +p225198 +sg25267 +g27 +sa(dp225199 +g25268 +S'Self-Portrait' +p225200 +sg25270 +S'Ottavio Leoni' +p225201 +sg25273 +S'engraving' +p225202 +sg25275 +S'unknown date\n' +p225203 +sg25314 +S'http://www.nga.gov:80/thumb-l/a00061/a0006122.jpg' +p225204 +sg25267 +g27 +sa(dp225205 +g25268 +S'Francois Guenault' +p225206 +sg25270 +S'Robert Nanteuil' +p225207 +sg25273 +S'engraving' +p225208 +sg25275 +S'1664' +p225209 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b51.jpg' +p225210 +sg25267 +g27 +sa(dp225211 +g25268 +S'Marechal de Guebriant' +p225212 +sg25270 +S'Robert Nanteuil' +p225213 +sg25273 +S'engraving' +p225214 +sg25275 +S'1655' +p225215 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b4c.jpg' +p225216 +sg25267 +g27 +sa(dp225217 +g25268 +S'Madame de Gillier' +p225218 +sg25270 +S'Robert Nanteuil' +p225219 +sg25273 +S'engraving' +p225220 +sg25275 +S'1652' +p225221 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b4e.jpg' +p225222 +sg25267 +g27 +sa(dp225223 +g25268 +S'Melchior de Gillier' +p225224 +sg25270 +S'Robert Nanteuil' +p225225 +sg25273 +S'engraving' +p225226 +sg25275 +S'1652' +p225227 +sg25314 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b50.jpg' +p225228 +sg25267 +g27 +sa(dp225229 +S'name' +p225230 +S'The Little Sister (La Petite Soeur)' +p225231 +sS'artist' +p225232 +S'Jean-Baptiste-Camille Corot' +p225233 +sS'material' +p225234 +S'cliche-verre' +p225235 +sS'year' +p225236 +S'1854' +p225237 +sS'thumbnail' +p225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000981c.jpg' +p225239 +sS'desc' +p225240 +g27 +sa(dp225241 +g225230 +S'The Dreamer (Le Songeur)' +p225242 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225243 +sg225234 +S'cliche-verre (salted paper print)' +p225244 +sg225236 +S'1854' +p225245 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f0e.jpg' +p225246 +sg225240 +g27 +sa(dp225247 +g225230 +S'Young Woman and Death (La Jeune Fille et la Mort)' +p225248 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225249 +sg225234 +S'cliche-verre (salted paper print)' +p225250 +sg225236 +S'1854' +p225251 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f08e.jpg' +p225252 +sg225240 +g27 +sa(dp225253 +g225230 +S'Horseman in the Woods, Large Plate (Le Grand Cavalier sous bois)' +p225254 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225255 +sg225234 +S'cliche-verre (salt print)' +p225256 +sg225236 +S'c. 1854' +p225257 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091b6.jpg' +p225258 +sg225240 +g27 +sa(dp225259 +g225230 +S"The Gardens of Horace (Les Jardins d'Horace)" +p225260 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225261 +sg225234 +S'cliche-verre' +p225262 +sg225236 +S'1855' +p225263 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091bc.jpg' +p225264 +sg225240 +g27 +sa(dp225265 +g225230 +S"Souvenir of Ostia (Souvenir d'Ostie)" +p225266 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225267 +sg225234 +S'cliche-verre (varnished salt print); countertype impression' +p225268 +sg225236 +S'1855' +p225269 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091ba.jpg' +p225270 +sg225240 +g27 +sa(dp225271 +g225230 +S'Luncheon in a Clearing (Un Dejeuner dans la clairiere)' +p225272 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225273 +sg225234 +S'cliche-verre' +p225274 +sg225236 +S'1857' +p225275 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000981a.jpg' +p225276 +sg225240 +g27 +sa(dp225277 +g225230 +S'Mary Magdalene Kneeling (Madeleine a genoux)' +p225278 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225279 +sg225234 +S'cliche-verre' +p225280 +sg225236 +S'1858' +p225281 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000981e.jpg' +p225282 +sg225240 +g27 +sa(dp225283 +g225230 +S'Mary Magdalene in Meditation (Madeleine en meditation)' +p225284 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225285 +sg225234 +S'cliche-verre' +p225286 +sg225236 +S'1858' +p225287 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000981f.jpg' +p225288 +sg225240 +g27 +sa(dp225289 +g225230 +S'Self-Portrait (Corot par lui-meme)' +p225290 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225291 +sg225234 +S'cliche-verre' +p225292 +sg225236 +S'1858' +p225293 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00058/a0005882.jpg' +p225294 +sg225240 +g27 +sa(dp225295 +g225230 +S'Hide-and-Seek (Cache-cache)' +p225296 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225297 +sg225234 +S'cliche-verre' +p225298 +sg225236 +S'1858' +p225299 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009838.jpg' +p225300 +sg225240 +g27 +sa(dp225301 +g225230 +S"Hermit's Woods (Le Bois de l'ermite)" +p225302 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225303 +sg225234 +S'cliche-verre' +p225304 +sg225236 +S'1858' +p225305 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000983c.jpg' +p225306 +sg225240 +g27 +sa(dp225307 +g225230 +S'Souvenir of Bas-Breau (Souvenir du Bas-Breau)' +p225308 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225309 +sg225234 +S'cliche-verre' +p225310 +sg225236 +S'1858' +p225311 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000983d.jpg' +p225312 +sg225240 +g27 +sa(dp225313 +g225230 +S'Saltarello (Saltarelle)' +p225314 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225315 +sg225234 +S'cliche-verre' +p225316 +sg225236 +S'1858' +p225317 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000983a.jpg' +p225318 +sg225240 +g27 +sa(dp225319 +g225230 +S'Dante and Virgil (Dante et Virgile)' +p225320 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225321 +sg225234 +S'cliche-verre (varnished salt print)' +p225322 +sg225236 +S'1858' +p225323 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009839.jpg' +p225324 +sg225240 +g27 +sa(dp225325 +g225230 +S'Orpheus Leading Eurydice (Orphee entrainant Eurydice)' +p225326 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225327 +sg225234 +S'cliche-verre' +p225328 +sg225236 +S'1860' +p225329 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009841.jpg' +p225330 +sg225240 +g27 +sa(dp225331 +g225230 +S'Feast of Pan (La Fete de Pan)' +p225332 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225333 +sg225234 +S'cliche-verre' +p225334 +sg225236 +S'1860' +p225335 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000983f.jpg' +p225336 +sg225240 +g27 +sa(dp225337 +g225230 +S'Environs of Genoa (Environs de Genes)' +p225338 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225339 +sg225234 +S'cliche-verre' +p225340 +sg225236 +S'1860' +p225341 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000983e.jpg' +p225342 +sg225240 +g27 +sa(dp225343 +g225230 +S'Souvenir of the Environs of Monaco (Souvenir des environs de Monaco)' +p225344 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225345 +sg225234 +S'cliche-verre' +p225346 +sg225236 +S'1860' +p225347 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009843.jpg' +p225348 +sg225240 +g27 +sa(dp225349 +g225230 +S'Wagon Going to Town (Le Charriot allant a la ville)' +p225350 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225351 +sg225234 +S'cliche-verre' +p225352 +sg225236 +S'1860' +p225353 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009842.jpg' +p225354 +sg225240 +g27 +sa(dp225355 +g225230 +S'Souvenir of Lake Maggiore (Souvenir du Lac Majeur)' +p225356 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225357 +sg225234 +S'cliche-verre' +p225358 +sg225236 +S'1871' +p225359 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000983b.jpg' +p225360 +sg225240 +g27 +sa(dp225361 +g225230 +S'Cow and Its Keeper (La Vache et sa gardienne)' +p225362 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225363 +sg225234 +S'cliche-verre' +p225364 +sg225236 +S'1860' +p225365 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009840.jpg' +p225366 +sg225240 +g27 +sa(dp225367 +g225230 +S"Hagar and the Angel (Agar et l'ange)" +p225368 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225369 +sg225234 +S'cliche-verre' +p225370 +sg225236 +S'1871' +p225371 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000984e.jpg' +p225372 +sg225240 +g27 +sa(dp225373 +g225230 +S'Souvenir of Salerno (Souvenir de Salerne)' +p225374 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225375 +sg225234 +S'cliche-verre (varnished or toned salt print)' +p225376 +sg225236 +S'1871' +p225377 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009849.jpg' +p225378 +sg225240 +g27 +sa(dp225379 +g225230 +S"Poet's Dwelling (La Demeure du poete)" +p225380 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225381 +sg225234 +S'cliche-verre' +p225382 +sg225236 +S'1871' +p225383 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000984d.jpg' +p225384 +sg225240 +g27 +sa(dp225385 +g225230 +S'Souvenir of the Sole Valley (Souvenir de la Vallee de la Sole)' +p225386 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225387 +sg225234 +S'cliche-verre' +p225388 +sg225236 +S'1871' +p225389 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009847.jpg' +p225390 +sg225240 +g27 +sa(dp225391 +g225230 +S'The Paladins (Les Paladins)' +p225392 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225393 +sg225234 +S'cliche-verre' +p225394 +sg225236 +S'1871' +p225395 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009844.jpg' +p225396 +sg225240 +g27 +sa(dp225397 +g225230 +S"Tower on the Horizon of a Lake (Tour a l'horizon d'un lac)" +p225398 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225399 +sg225234 +S'cliche-verre' +p225400 +sg225236 +S'1871' +p225401 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009845.jpg' +p225402 +sg225240 +g27 +sa(dp225403 +g225230 +S"Tower on the Horizon of a Lake (Tour a l'horizon d'un lac)" +p225404 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225405 +sg225234 +S'cliche-verre' +p225406 +sg225236 +S'1871' +p225407 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009848.jpg' +p225408 +sg225240 +g27 +sa(dp225409 +g225230 +S'The Poet and His Muse (Le Poete et la muse)' +p225410 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225411 +sg225234 +S'cliche-verre' +p225412 +sg225236 +S'1871' +p225413 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009850.jpg' +p225414 +sg225240 +g27 +sa(dp225415 +g225230 +S'Shepherd Struggling with a Goat (Berger luttant avec sa chevre)' +p225416 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225417 +sg225234 +S'cliche-verre' +p225418 +sg225236 +S'1874' +p225419 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000984b.jpg' +p225420 +sg225240 +g27 +sa(dp225421 +g225230 +S'Dreamer under Tall Trees (Le Reveur sous les grands arbres)' +p225422 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225423 +sg225234 +S'cliche-verre' +p225424 +sg225236 +S'1874' +p225425 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000984f.jpg' +p225426 +sg225240 +g27 +sa(dp225427 +g225230 +S"Souvenir of Antibes (Souvenir d'Antibes)" +p225428 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225429 +sg225234 +S'cliche-verre' +p225430 +sg225236 +S'1874' +p225431 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009846.jpg' +p225432 +sg225240 +g27 +sa(dp225433 +g225230 +S'Horseman Halted in the Countryside (Cavalier arrete dans la campagna)' +p225434 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225435 +sg225234 +S'cliche-verre' +p225436 +sg225236 +S'1874' +p225437 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000984a.jpg' +p225438 +sg225240 +g27 +sa(dp225439 +g225230 +S'Boatman (Le Batelier)' +p225440 +sg225232 +S'Jean-Baptiste-Camille Corot' +p225441 +sg225234 +S'cliche-verre' +p225442 +sg225236 +S'1874' +p225443 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000984c.jpg' +p225444 +sg225240 +g27 +sa(dp225445 +g225230 +S'Herding the Cows at Dusk (Vach\xc3\xa8re le soir)' +p225446 +sg225232 +S'Camille Pissarro' +p225447 +sg225234 +S'monotype' +p225448 +sg225236 +S'c. 1890' +p225449 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e2e.jpg' +p225450 +sg225240 +g27 +sa(dp225451 +g225230 +S'Marion Feasting the British Officer on Sweet Potatoes' +p225452 +sg225232 +S'George Washington Mark' +p225453 +sg225234 +S'oil on canvas' +p225454 +sg225236 +S'1848' +p225455 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000162.jpg' +p225456 +sg225240 +g27 +sa(dp225457 +g225230 +S'Capture of the "Savannah" by the "U.S.S. Perry"' +p225458 +sg225232 +S'Fritz M\xc3\xbcller' +p225459 +sg225234 +S'oil on canvas' +p225460 +sg225236 +S'1861' +p225461 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000193.jpg' +p225462 +sg225240 +g27 +sa(dp225463 +g225230 +S'A City of Fantasy' +p225464 +sg225232 +S'American 19th Century' +p225465 +sg225234 +S'overall: 73 x 103.2 cm (28 3/4 x 40 5/8 in.)\r\nframed: 114.3 x 85.7 x 5 cm (45 x 33 3/4 x 1 15/16 in.)' +p225466 +sg225236 +S'\noil on canvas' +p225467 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000462.jpg' +p225468 +sg225240 +g27 +sa(dp225469 +g225230 +S'Portrait of a Man' +p225470 +sg225232 +S'Thomas Skynner' +p225471 +sg225234 +S'oil on canvas' +p225472 +sg225236 +S'c. 1845' +p225473 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000216.jpg' +p225474 +sg225240 +g27 +sa(dp225475 +g225230 +S'Portrait of a Woman' +p225476 +sg225232 +S'Thomas Skynner' +p225477 +sg225234 +S'oil on canvas' +p225478 +sg225236 +S'c. 1845' +p225479 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000217.jpg' +p225480 +sg225240 +g27 +sa(dp225481 +g225230 +S'Still Life of Fruit' +p225482 +sg225232 +S'American 19th Century' +p225483 +sg225234 +S'overall: 30.5 x 40.5 cm (12 x 15 15/16 in.)\r\nframed: 40 x 50.1 cm (15 3/4 x 19 3/4 in.)' +p225484 +sg225236 +S'\noil on wood' +p225485 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000459.jpg' +p225486 +sg225240 +g27 +sa(dp225487 +g225230 +S'Stylized Landscape' +p225488 +sg225232 +S'American 19th Century' +p225489 +sg225234 +S'overall: 70.5 x 105.4 cm (27 3/4 x 41 1/2 in.)\r\nframed: 88.6 x 124.4 x 3.8 cm (34 7/8 x 49 x 1 1/2 in.)' +p225490 +sg225236 +S'\noil on canvas' +p225491 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a000044d.jpg' +p225492 +sg225240 +g27 +sa(dp225493 +g225230 +S'John and Abigail Montgomery' +p225494 +sg225232 +S'Joseph H. Davis' +p225495 +sg225234 +S'pen and black ink and watercolor' +p225496 +sg225236 +S'1836' +p225497 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008d1.jpg' +p225498 +sg225240 +g27 +sa(dp225499 +g225232 +S'Martin J. Meyer' +p225500 +sg225240 +g27 +sg225234 +S'pen and brown ink and watercolor' +p225501 +sg225230 +S'Vorschrift of Lea Landes' +p225502 +sg225236 +S'1835' +p225503 +sa(dp225504 +g225232 +S'Charles Edward M\xc3\xbcnch' +p225505 +sg225240 +g27 +sg225234 +S'pen and colored ink and watercolor' +p225506 +sg225230 +S'Birth and Baptismal Certificate of Margareta Munch' +p225507 +sg225236 +S'c. 1826' +p225508 +sa(dp225509 +g225230 +S'Birth and Baptismal Certificate of Anne Andres' +p225510 +sg225232 +S'John Spangenberg' +p225511 +sg225234 +S'pen and iron gall ink with watercolor on laid paper' +p225512 +sg225236 +S'c. 1783' +p225513 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a000089a.jpg' +p225514 +sg225240 +g27 +sa(dp225515 +g225232 +S'American 18th Century' +p225516 +sg225240 +g27 +sg225234 +S'Overall (approximate): 33.3 x 42.7 cm (13 1/8 x 16 13/16 in.)\r\nframed: 52 x 60.1 x 9.5 cm (20 1/2 x 23 11/16 x 3 3/4 in.)' +p225517 +sg225230 +S'Birth and Baptismal Certificate of Frederich Schaeffer' +p225518 +sg225236 +S'\npen and iron gall ink with red, yellow, and green wash on laid paper' +p225519 +sa(dp225520 +g225232 +S'American 18th Century' +p225521 +sg225240 +g27 +sg225234 +S'sight size: 16.2 x 10 cm (6 3/8 x 3 15/16 in.)' +p225522 +sg225230 +S'Fraktur of a Lady' +p225523 +sg225236 +S'\npen and ink with watercolor' +p225524 +sa(dp225525 +g225230 +S'Cutout of Animals' +p225526 +sg225232 +S'American 19th Century' +p225527 +sg225234 +S'overall: 47.7 x 60.4 cm (18 3/4 x 23 3/4 in.)' +p225528 +sg225236 +S'\ncut paper and watercolor' +p225529 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008a0.jpg' +p225530 +sg225240 +g27 +sa(dp225531 +g225232 +S'Yasuo Kuniyoshi' +p225532 +sg225240 +g27 +sg225234 +S'graphite' +p225533 +sg225230 +S'Bombed Out' +p225534 +sg225236 +S'1943' +p225535 +sa(dp225536 +g225232 +S'John Marin' +p225537 +sg225240 +g27 +sg225234 +S'black crayon and graphite' +p225538 +sg225230 +S'The Sea, No. 3' +p225539 +sg225236 +S'1940' +p225540 +sa(dp225541 +g225232 +S'Ruth Perkins Safford' +p225542 +sg225240 +g27 +sg225234 +S'watercolor' +p225543 +sg225230 +S'Rotunda, National Gallery of Art' +p225544 +sg225236 +S'1950' +p225545 +sa(dp225546 +g225232 +S'Ruth Perkins Safford' +p225547 +sg225240 +g27 +sg225234 +S'watercolor' +p225548 +sg225230 +S'West Court, National Gallery of Art' +p225549 +sg225236 +S'unknown date\n' +p225550 +sa(dp225551 +g225230 +S'Anne Fairchild Bowler (Mrs. Metcalf Bowler)' +p225552 +sg225232 +S'John Singleton Copley' +p225553 +sg225234 +S'oil on canvas' +p225554 +sg225236 +S'c. 1763' +p225555 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000062.jpg' +p225556 +sg225240 +S'The deep blue of the sitter’s silk dress befited the restrained tastes \r\n of colonial America; British women preferred brighter colors. Anne \r\n Fairchild (1730-1803) wed the owner of a country estate in Portsmouth, \r\n Rhode Island. The floral garland in Mrs. Bowler’s hands, besides being a \r\n standard symbol of beauty, may refer to her husband’s wealth; he possessed \r\n one of the very few greenhouses in the colonies.\n ' +p225557 +sa(dp225558 +g225232 +S'James Sharples' +p225559 +sg225240 +g27 +sg225234 +S', c. 1793/1799' +p225560 +sg225230 +S'Dr. John Bard' +p225561 +sg225236 +S'\n' +p225562 +sa(dp225563 +g225230 +S'Commodore Tingey' +p225564 +sg225232 +S'Charles-Balthazar-Julien-F\xc3\xa9vret de Saint-M\xc3\xa9min' +p225565 +sg225234 +S'engraving in black on wove paper' +p225566 +sg225236 +S'1806' +p225567 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f2/a000f28f.jpg' +p225568 +sg225240 +g27 +sa(dp225569 +g225230 +S'Head of a Woman Wearing a Striped Bonnet' +p225570 +sg225232 +S'Augustin de Saint-Aubin' +p225571 +sg225234 +S'engraving' +p225572 +sg225236 +S'unknown date\n' +p225573 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bf1.jpg' +p225574 +sg225240 +g27 +sa(dp225575 +g225230 +S'John Bard' +p225576 +sg225232 +S'Ellen Sharples' +p225577 +sg225234 +S', c. 1793/1801' +p225578 +sg225236 +S'\n' +p225579 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a0007073.jpg' +p225580 +sg225240 +g27 +sa(dp225581 +g225230 +S'Mrs. John Bard' +p225582 +sg225232 +S'Ellen Sharples' +p225583 +sg225234 +S', unknown date' +p225584 +sg225236 +S'\n' +p225585 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a00070a5.jpg' +p225586 +sg225240 +g27 +sa(dp225587 +g225230 +S'Dying Centaur' +p225588 +sg225232 +S'Artist Information (' +p225589 +sg225234 +g27 +sg225236 +S'(caster)' +p225590 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00017/a00017b4.jpg' +p225591 +sg225240 +g27 +sa(dp225592 +g225230 +S'Pumpkins' +p225593 +sg225232 +S'Walt Kuhn' +p225594 +sg225234 +S'oil on canvas' +p225595 +sg225236 +S'1941' +p225596 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a000013c.jpg' +p225597 +sg225240 +g27 +sa(dp225598 +g225230 +S'The Artist Drawing from the Model' +p225599 +sg225232 +S'Rembrandt van Rijn' +p225600 +sg225234 +S'etching, drypoint and burin' +p225601 +sg225236 +S'c. 1639' +p225602 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00054/a0005462.jpg' +p225603 +sg225240 +g27 +sa(dp225604 +g225230 +S'Woman Reading' +p225605 +sg225232 +S'Rembrandt van Rijn' +p225606 +sg225234 +S'etching' +p225607 +sg225236 +S'1634' +p225608 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00057/a00057fc.jpg' +p225609 +sg225240 +g27 +sa(dp225610 +g225230 +S"Landscape with a View Toward Haarlem (The Goldweigher's Field)" +p225611 +sg225232 +S'Rembrandt van Rijn' +p225612 +sg225234 +S'etching and drypoint (counter-proof)' +p225613 +sg225236 +S'1651' +p225614 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d554.jpg' +p225615 +sg225240 +g27 +sa(dp225616 +g225230 +S'The Holy Family with Saint Elizabeth and Saint John the Baptist' +p225617 +sg225232 +S'Elisabetta Sirani' +p225618 +sg225234 +S'etching' +p225619 +sg225236 +S'c. 1650/1660' +p225620 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca1a.jpg' +p225621 +sg225240 +g27 +sa(dp225622 +g225232 +S'Thomas Phillips' +p225623 +sg225240 +g27 +sg225234 +S', c. 1830' +p225624 +sg225230 +S'Portrait of a Lady' +p225625 +sg225236 +S'\n' +p225626 +sa(dp225627 +g225232 +S'Sir Thomas Lawrence' +p225628 +sg225240 +g27 +sg225234 +S'oil on canvas' +p225629 +sg225230 +S'Francis Charles Seymour-Conway, 3rd Marquess of Hertford' +p225630 +sg225236 +S'c. 1825' +p225631 +sa(dp225632 +g225230 +S'Landing at Sabbath Day Point' +p225633 +sg225232 +S'John Frederick Kensett' +p225634 +sg225234 +S'oil on canvas' +p225635 +sg225236 +S'c. 1853' +p225636 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000134.jpg' +p225637 +sg225240 +g27 +sa(dp225638 +g225230 +S'The Green Lizard of Jamaica (Lacerta bullaris)' +p225639 +sg225232 +S'Mark Catesby' +p225640 +sg225234 +S'hand-colored etching' +p225641 +sg225236 +S'published 1731-1743' +p225642 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a0007878.jpg' +p225643 +sg225240 +g27 +sa(dp225644 +g225230 +S'Ancienne porte du Palais de Justice, Paris (Old Gate of the Palace of Justice, Paris)' +p225645 +sg225232 +S'Charles Meryon' +p225646 +sg225234 +S'etching' +p225647 +sg225236 +S'1854' +p225648 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a0009963.jpg' +p225649 +sg225240 +g27 +sa(dp225650 +g225230 +S'Le Minist\xc3\xa8re de la Marine, Paris (The Admiralty, Paris)' +p225651 +sg225232 +S'Charles Meryon' +p225652 +sg225234 +S'etching' +p225653 +sg225236 +S'1865' +p225654 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005da0.jpg' +p225655 +sg225240 +g27 +sa(dp225656 +g225232 +S'John Marin' +p225657 +sg225240 +g27 +sg225234 +S'etching on japan paper' +p225658 +sg225230 +S"Near Quai d'Ivry" +p225659 +sg225236 +S'1906' +p225660 +sa(dp225661 +g225232 +S'Edmund Blampied' +p225662 +sg225240 +g27 +sg225234 +S'drypoint' +p225663 +sg225230 +S'Fetch It' +p225664 +sg225236 +S'1920' +p225665 +sa(dp225666 +g225232 +S'Edmund Blampied' +p225667 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p225668 +sg225230 +S'Ostend Horse' +p225669 +sg225236 +S'1926' +p225670 +sa(dp225671 +g225232 +S'Edmund Blampied' +p225672 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p225673 +sg225230 +S'Loading Vraic' +p225674 +sg225236 +S'1926' +p225675 +sa(dp225676 +g225232 +S'Edmund Blampied' +p225677 +sg225240 +g27 +sg225234 +S'drypoint' +p225678 +sg225230 +S'Night Time, Dieppe' +p225679 +sg225236 +S'1926' +p225680 +sa(dp225681 +g225232 +S'Edmund Blampied' +p225682 +sg225240 +g27 +sg225234 +S'drypoint' +p225683 +sg225230 +S'San Sebastian - Lunch Hour' +p225684 +sg225236 +S'1924' +p225685 +sa(dp225686 +g225230 +S'The Bather' +p225687 +sg225232 +S'Warren B. Davis' +p225688 +sg225234 +S'etching and drypoint' +p225689 +sg225236 +S'unknown date\n' +p225690 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00102/a0010226.jpg' +p225691 +sg225240 +g27 +sa(dp225692 +g225232 +S'Kerr Eby' +p225693 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p225694 +sg225230 +S'Spring Freshets' +p225695 +sg225236 +S'c. 1929' +p225696 +sa(dp225697 +g225232 +S'Kerr Eby' +p225698 +sg225240 +g27 +sg225234 +S'etching' +p225699 +sg225230 +S'Polperro, No. 2' +p225700 +sg225236 +S'1923' +p225701 +sa(dp225702 +g225232 +S'Kerr Eby' +p225703 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p225704 +sg225230 +S'No. 1 Wall Street' +p225705 +sg225236 +S'1930' +p225706 +sa(dp225707 +g225232 +S'Kerr Eby' +p225708 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p225709 +sg225230 +S'In the Open' +p225710 +sg225236 +S'c. 1927' +p225711 +sa(dp225712 +g225232 +S'Kerr Eby' +p225713 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p225714 +sg225230 +S'Sardine Fleet' +p225715 +sg225236 +S'1928' +p225716 +sa(dp225717 +g225232 +S'Kerr Eby' +p225718 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p225719 +sg225230 +S'Polo, Plate B' +p225720 +sg225236 +S'1927' +p225721 +sa(dp225722 +g225232 +S'Kerr Eby' +p225723 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p225724 +sg225230 +S'Portage' +p225725 +sg225236 +S'1930' +p225726 +sa(dp225727 +g225232 +S'Kerr Eby' +p225728 +sg225240 +g27 +sg225234 +S'etching' +p225729 +sg225230 +S'White Water' +p225730 +sg225236 +S'c. 1929' +p225731 +sa(dp225732 +g225232 +S'Kerr Eby' +p225733 +sg225240 +g27 +sg225234 +S'etching and drypoint in dark brown on cream laid paper' +p225734 +sg225230 +S'Boston Stump' +p225735 +sg225236 +S'1925' +p225736 +sa(dp225737 +g225230 +S'The "Home Sweet Home" Cottage, No. 3, Easthampton' +p225738 +sg225232 +S'Childe Hassam' +p225739 +sg225234 +S'etching' +p225740 +sg225236 +S'1928' +p225741 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00104/a00104df.jpg' +p225742 +sg225240 +g27 +sa(dp225743 +g225230 +S'A Long Island Windmill' +p225744 +sg225232 +S'Childe Hassam' +p225745 +sg225234 +S'etching on wove paper' +p225746 +sg225236 +S'1929' +p225747 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00104/a00104e3.jpg' +p225748 +sg225240 +g27 +sa(dp225749 +g225230 +S'The Old Mulford House' +p225750 +sg225232 +S'Childe Hassam' +p225751 +sg225234 +S'etching (with drypoint?)' +p225752 +sg225236 +S'1926' +p225753 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ab8.jpg' +p225754 +sg225240 +g27 +sa(dp225755 +g225230 +S'The Church Tower, Portsmouth' +p225756 +sg225232 +S'Childe Hassam' +p225757 +sg225234 +S'etching' +p225758 +sg225236 +S'1921' +p225759 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f5bb.jpg' +p225760 +sg225240 +g27 +sa(dp225761 +g225230 +S'The "Home Sweet Home" Cottage, Easthampton' +p225762 +sg225232 +S'Childe Hassam' +p225763 +sg225234 +S'etching' +p225764 +sg225236 +S'1921' +p225765 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00104/a00104dd.jpg' +p225766 +sg225240 +g27 +sa(dp225767 +g225232 +S'Marguerite ? Liseuse' +p225768 +sg225240 +g27 +sg225234 +S'etching' +p225769 +sg225230 +S'Entente cordiale' +p225770 +sg225236 +S'unknown date\n' +p225771 +sa(dp225772 +g225232 +S'Robert Sargent Austin' +p225773 +sg225240 +g27 +sg225234 +S'etching' +p225774 +sg225230 +S'Palm Sunday' +p225775 +sg225236 +S'1925' +p225776 +sa(dp225777 +g225230 +S'Shipping Along the Molo in Venice' +p225778 +sg225232 +S'William Stanley Haseltine' +p225779 +sg225234 +S'watercolor and gouache over graphite on brown paper' +p225780 +sg225236 +S'unknown date\n' +p225781 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008f4.jpg' +p225782 +sg225240 +g27 +sa(dp225783 +g225230 +S'Mount Tacoma' +p225784 +sg225232 +S'William Stanley Haseltine' +p225785 +sg225234 +S'watercolor and gouache over graphite on blue paper' +p225786 +sg225236 +S'1899' +p225787 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000eb/a000eb9e.jpg' +p225788 +sg225240 +g27 +sa(dp225789 +g225230 +S'A Venetian Lagoon' +p225790 +sg225232 +S'William Stanley Haseltine' +p225791 +sg225234 +S'watercolor on green paper' +p225792 +sg225236 +S'c. 1875' +p225793 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000df/a000dfb8.jpg' +p225794 +sg225240 +g27 +sa(dp225795 +g225230 +S'An Architectural Fantasy' +p225796 +sg225232 +S'Jan van der Heyden' +p225797 +sg225234 +S'oil on oak panel' +p225798 +sg225236 +S'c. 1670' +p225799 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002af8.jpg' +p225800 +sg225240 +S'The Dutch Republic differed in both its political structure and religious orientation\nfrom the Catholic monarchies that ruled most other seventeenth-century European\nnations. Dutch culture was, however, open to many influences; one of the most pervasive\nof these was the introduction of classical ideals, specifically in architecture.\n A number of Dutch architects designed and built large homes, palaces, and town halls\nin classical styles similar to that of the chateau in this painting. Although this\nparticular château and the formal gardens surrounding it are fanciful creations\nof the artist, the image of refined elegance and wealth that the scene conveys reflects\nthe social aspirations of the Dutch landed gentry at that time.\n Van der Heyden was an inventor as well as an artist. In 1669 he devised a plan for\nlighting the city streets of Amsterdam. He later developed a vacuum pump that permitted\nthe use of hoses for firefighting. As a painter he specialized in depicting views\nof cities and country estates. He worked in such a precise style that it seems he\ndelineated every brick and course of mortar on his buildings. Surprisingly, despite\nsuch a devotion to detail, most of his views are imaginary creations.\n ' +p225801 +sa(dp225802 +g225230 +S"Interior of Saint Peter's, Rome" +p225803 +sg225232 +S'Giovanni Paolo Panini' +p225804 +sg225234 +S'oil on canvas' +p225805 +sg225236 +S'c. 1754' +p225806 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a000061a.jpg' +p225807 +sg225240 +g27 +sa(dp225808 +g225230 +S'Judith with the Head of Holofernes' +p225809 +sg225232 +S'Artist Information (' +p225810 +sg225234 +S'(artist after)' +p225811 +sg225236 +S'\n' +p225812 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7b2.jpg' +p225813 +sg225240 +g27 +sa(dp225814 +g225230 +S"L'ancien Louvre d'apr\xc3\xa8s une peinture de Zeeman, 1651 (The Old Louvre, from a Painting by Zeeman, l651)" +p225815 +sg225232 +S'Charles Meryon' +p225816 +sg225234 +S'etching with penciled sky and border' +p225817 +sg225236 +S'1866' +p225818 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d8b.jpg' +p225819 +sg225240 +g27 +sa(dp225820 +g225230 +S'The Death of Tancred [left]' +p225821 +sg225232 +S'Gabriel de Saint-Aubin' +p225822 +sg225234 +S', 1760' +p225823 +sg225236 +S'\n' +p225824 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f5f.jpg' +p225825 +sg225240 +g27 +sa(dp225826 +g225230 +S'The Challenge [right]' +p225827 +sg225232 +S'Gabriel de Saint-Aubin' +p225828 +sg225234 +S', 1760' +p225829 +sg225236 +S'\n' +p225830 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f60.jpg' +p225831 +sg225240 +g27 +sa(dp225832 +g225230 +S'Christ Carrying the Cross' +p225833 +sg225232 +S'Martin Schongauer' +p225834 +sg225234 +S'engraving on laid paper' +p225835 +sg225236 +S'unknown date\n' +p225836 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a443.jpg' +p225837 +sg225240 +g27 +sa(dp225838 +g225230 +S'The Agony in the Garden' +p225839 +sg225232 +S'Ludwig of Ulm' +p225840 +sg225234 +S'hand-colored woodcut (blockbook page)' +p225841 +sg225236 +S'unknown date\n' +p225842 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00055/a00055fc.jpg' +p225843 +sg225240 +g27 +sa(dp225844 +g225230 +S'The Flagellation' +p225845 +sg225232 +S'Ludwig of Ulm' +p225846 +sg225234 +S'hand-colored woodcut (blockbook page)' +p225847 +sg225236 +S'unknown date\n' +p225848 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00055/a00055fd.jpg' +p225849 +sg225240 +g27 +sa(dp225850 +g225230 +S'The Carrying of the Cross' +p225851 +sg225232 +S'Ludwig of Ulm' +p225852 +sg225234 +S'hand-colored woodcut (blockbook page)' +p225853 +sg225236 +S'unknown date\n' +p225854 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00055/a00055fe.jpg' +p225855 +sg225240 +g27 +sa(dp225856 +g225230 +S'Christ Stripped of His Garment' +p225857 +sg225232 +S'Ludwig of Ulm' +p225858 +sg225234 +S'hand-colored woodcut (blockbook page)' +p225859 +sg225236 +S'unknown date\n' +p225860 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00055/a00055ff.jpg' +p225861 +sg225240 +g27 +sa(dp225862 +g225230 +S'The Crucifixion' +p225863 +sg225232 +S'Ludwig of Ulm' +p225864 +sg225234 +S'hand-colored woodcut (blockbook page)' +p225865 +sg225236 +S'unknown date\n' +p225866 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00056/a0005601.jpg' +p225867 +sg225240 +g27 +sa(dp225868 +g225230 +S'The Descent from the Cross' +p225869 +sg225232 +S'Ludwig of Ulm' +p225870 +sg225234 +S'hand-colored woodcut (blockbook page)' +p225871 +sg225236 +S'unknown date\n' +p225872 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00056/a0005600.jpg' +p225873 +sg225240 +g27 +sa(dp225874 +g225230 +S'The Entombment' +p225875 +sg225232 +S'Ludwig of Ulm' +p225876 +sg225234 +S'hand-colored woodcut (blockbook page)' +p225877 +sg225236 +S'unknown date\n' +p225878 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00056/a0005605.jpg' +p225879 +sg225240 +g27 +sa(dp225880 +g225230 +S'Christ in Limbo' +p225881 +sg225232 +S'Ludwig of Ulm' +p225882 +sg225234 +S'hand-colored woodcut (blockbook page)' +p225883 +sg225236 +S'unknown date\n' +p225884 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00056/a0005604.jpg' +p225885 +sg225240 +g27 +sa(dp225886 +g225230 +S'The Resurrection' +p225887 +sg225232 +S'Ludwig of Ulm' +p225888 +sg225234 +S'hand-colored woodcut (blockbook page)' +p225889 +sg225236 +S'unknown date\n' +p225890 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00056/a0005602.jpg' +p225891 +sg225240 +g27 +sa(dp225892 +g225230 +S'Noli me tangere' +p225893 +sg225232 +S'Ludwig of Ulm' +p225894 +sg225234 +S'hand-colored woodcut (blockbook page)' +p225895 +sg225236 +S'unknown date\n' +p225896 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00056/a0005607.jpg' +p225897 +sg225240 +g27 +sa(dp225898 +g225230 +S'The Last Judgment' +p225899 +sg225232 +S'Ludwig of Ulm' +p225900 +sg225234 +S'hand-colored woodcut (blockbook page)' +p225901 +sg225236 +S'unknown date\n' +p225902 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00056/a0005606.jpg' +p225903 +sg225240 +g27 +sa(dp225904 +g225230 +S'Christ on the Cross Between the Virgin and Saint John' +p225905 +sg225232 +S'Lucas Cranach the Elder' +p225906 +sg225234 +S'hand-colored woodcut on vellum' +p225907 +sg225236 +S'c. 1502' +p225908 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0bb.jpg' +p225909 +sg225240 +g27 +sa(dp225910 +g225230 +S'The Holy Family' +p225911 +sg225232 +S'Lucas van Leyden' +p225912 +sg225234 +S'engraving' +p225913 +sg225236 +S'c. 1508' +p225914 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce6b.jpg' +p225915 +sg225240 +g27 +sa(dp225916 +g225230 +S'Emperor Maximilian I in the Guise of Saint George' +p225917 +sg225232 +S'Daniel Hopfer' +p225918 +sg225234 +S'etching (iron) with open biting, plate bitten twice' +p225919 +sg225236 +S'c. 1509/1510' +p225920 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac73.jpg' +p225921 +sg225240 +g27 +sa(dp225922 +g225230 +S'Portrait of the Artist with His Younger Brother, Augustin Saint-Aubin' +p225923 +sg225232 +S'Artist Information (' +p225924 +sg225234 +S'French, 1724 - 1780' +p225925 +sg225236 +S'(related artist)' +p225926 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a00070a0.jpg' +p225927 +sg225240 +g27 +sa(dp225928 +g225230 +S'The Holy Trinity in the Tree of Life Adored by Franciscans' +p225929 +sg225232 +S'Jacques Callot' +p225930 +sg225234 +S'black chalk on laid paper with later framing line in brown ink' +p225931 +sg225236 +S'c. 1625' +p225932 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f9d.jpg' +p225933 +sg225240 +g27 +sa(dp225934 +g225230 +S'The Holy Trinity in the Tree of Life, Adored by Franciscans' +p225935 +sg225232 +S'Jacques Callot' +p225936 +sg225234 +S'etching' +p225937 +sg225236 +S'in or after 1621' +p225938 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061f6.jpg' +p225939 +sg225240 +g27 +sa(dp225940 +g225230 +S'Battle of the Foot Soldiers with Lances' +p225941 +sg225232 +S'Hans Burgkmair I' +p225942 +sg225234 +S'woodcut' +p225943 +sg225236 +S'unknown date\n' +p225944 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ae/a000ae04.jpg' +p225945 +sg225240 +g27 +sa(dp225946 +g225230 +S'Tournament on the Occasion of the Festivity of the Marriage' +p225947 +sg225232 +S'Leonhard Beck' +p225948 +sg225234 +S'woodcut' +p225949 +sg225236 +S'1514/1516' +p225950 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000af/a000af5b.jpg' +p225951 +sg225240 +g27 +sa(dp225952 +g225230 +S'Alexander and the High Priest of Jerusalem' +p225953 +sg225232 +S'Master IRs' +p225954 +sg225234 +S'engraving' +p225955 +sg225236 +S'unknown date\n' +p225956 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c83c.jpg' +p225957 +sg225240 +g27 +sa(dp225958 +g225230 +S'The Vision of Saint Bernard' +p225959 +sg225232 +S'Dirk Jacobsz Vellert' +p225960 +sg225234 +S'engraving' +p225961 +sg225236 +S'1524' +p225962 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cebd.jpg' +p225963 +sg225240 +g27 +sa(dp225964 +g225230 +S'Venus Lamenting Adonis' +p225965 +sg225232 +S'Sir Peter Paul Rubens' +p225966 +sg225234 +S'pen and brown ink' +p225967 +sg225236 +S'c. 1608-1612' +p225968 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c407.jpg' +p225969 +sg225240 +g27 +sa(dp225970 +g225232 +S'Artist Information (' +p225971 +sg225240 +g27 +sg225234 +S'(artist after)' +p225972 +sg225230 +S'The Right Honorable William Pitt, M.P., Prime Minister' +p225973 +sg225236 +S'\n' +p225974 +sa(dp225975 +g225232 +S'Gy Szabo Bela' +p225976 +sg225240 +g27 +sg225234 +S'hand printed wood engraving on Japanese paper' +p225977 +sg225230 +S'Avril (April)' +p225978 +sg225236 +S'1951' +p225979 +sa(dp225980 +g225232 +S'Gy Szabo Bela' +p225981 +sg225240 +g27 +sg225234 +S'hand printed wood engraving on Japanese paper' +p225982 +sg225230 +S'Juin (June)' +p225983 +sg225236 +S'1963' +p225984 +sa(dp225985 +g225232 +S'Gy Szabo Bela' +p225986 +sg225240 +g27 +sg225234 +S'hand printed wood engraving on Japanese paper' +p225987 +sg225230 +S'Decembre (December)' +p225988 +sg225236 +S'1962' +p225989 +sa(dp225990 +g225232 +S'Gy Szabo Bela' +p225991 +sg225240 +g27 +sg225234 +S'hand printed wood engraving on Japanese paper' +p225992 +sg225230 +S'Papillons (Butterflies)' +p225993 +sg225236 +S'1960' +p225994 +sa(dp225995 +g225232 +S'Gy Szabo Bela' +p225996 +sg225240 +g27 +sg225234 +S'hand printed wood engraving on Japanese paper' +p225997 +sg225230 +S"Bord du lac (Lake's Edge)" +p225998 +sg225236 +S'1966' +p225999 +sa(dp226000 +g225232 +S'Gy Szabo Bela' +p226001 +sg225240 +g27 +sg225234 +S'hand printed wood engraving on Japanese paper' +p226002 +sg225230 +S"Dante: L'enfer, Chant XXI, Ongles sales (Dante's Inferno, Canto XXI, Nasty Claws)" +p226003 +sg225236 +S'1963' +p226004 +sa(dp226005 +g225232 +S'Gustave Pimienta' +p226006 +sg225240 +g27 +sg225234 +S'bronze' +p226007 +sg225230 +S'Eagle' +p226008 +sg225236 +S'model 1962, cast 1966' +p226009 +sa(dp226010 +g225232 +S'Gustave Pimienta' +p226011 +sg225240 +g27 +sg225234 +S'bronze' +p226012 +sg225230 +S'Orpheus' +p226013 +sg225236 +S'model 1937-1938, cast 1966' +p226014 +sa(dp226015 +g225232 +S'Benton Murdoch Spruance' +p226016 +sg225240 +g27 +sg225234 +S'black and gray wash' +p226017 +sg225230 +S'Ahab Aloft' +p226018 +sg225236 +S'unknown date\n' +p226019 +sa(dp226020 +g225232 +S'Benton Murdoch Spruance' +p226021 +sg225240 +g27 +sg225234 +S'black and gray wash' +p226022 +sg225230 +S'Strike through the Mask' +p226023 +sg225236 +S'unknown date\n' +p226024 +sa(dp226025 +g225230 +S'The Whiteness of the Whale' +p226026 +sg225232 +S'Benton Murdoch Spruance' +p226027 +sg225234 +S'gouache' +p226028 +sg225236 +S'c. 1967' +p226029 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a00009d9.jpg' +p226030 +sg225240 +g27 +sa(dp226031 +g225230 +S'Michelangelo' +p226032 +sg225232 +S'Giulio Bonasone' +p226033 +sg225234 +S'engraving' +p226034 +sg225236 +S'1546' +p226035 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c876.jpg' +p226036 +sg225240 +g27 +sa(dp226037 +g225230 +S'Saint Martin with His Horse in a Ship' +p226038 +sg225232 +S'Artist Information (' +p226039 +sg225234 +S'(artist)' +p226040 +sg225236 +S'\n' +p226041 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d054.jpg' +p226042 +sg225240 +g27 +sa(dp226043 +g225230 +S'The Stag Hunt' +p226044 +sg225232 +S'Lucas Cranach the Elder' +p226045 +sg225234 +S'woodcut' +p226046 +sg225236 +S'unknown date\n' +p226047 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b069.jpg' +p226048 +sg225240 +g27 +sa(dp226049 +g225232 +S'Lyonel Feininger' +p226050 +sg225240 +g27 +sg225234 +S'woodcut on yellow Japanese laid (Kozo?) paper [proof]' +p226051 +sg225230 +S'Ships and Sun, 1 (Schiffe und Sonne, 1)' +p226052 +sg225236 +S'1918' +p226053 +sa(dp226054 +g225232 +S'Lyonel Feininger' +p226055 +sg225240 +g27 +sg225234 +S'woodcut on red tissue paper [proof]' +p226056 +sg225230 +S'Ships and Sun, 2 (Schiffe und Sonne, 2)' +p226057 +sg225236 +S'1918' +p226058 +sa(dp226059 +g225232 +S'Lyonel Feininger' +p226060 +sg225240 +g27 +sg225234 +S'woodcut on pink tissue paper [proof]' +p226061 +sg225230 +S'Ships and Sun, 3 (Schiffe und Sonne, 3)' +p226062 +sg225236 +S'1918' +p226063 +sa(dp226064 +g225232 +S'Lyonel Feininger' +p226065 +sg225240 +g27 +sg225234 +S'woodcut on white tissue paper [proof]' +p226066 +sg225230 +S'Ships and Sun, 4 (Schiffe und Sonne, 4)' +p226067 +sg225236 +S'1918' +p226068 +sa(dp226069 +g225232 +S'Lyonel Feininger' +p226070 +sg225240 +g27 +sg225234 +S'woodcut on yellow tissue paper [proof]' +p226071 +sg225230 +S'Ships and Sun, 5 (Schiffe und Sonne, 5)' +p226072 +sg225236 +S'1918' +p226073 +sa(dp226074 +g225232 +S'Lyonel Feininger' +p226075 +sg225240 +g27 +sg225234 +S'woodcut on yellow tissue paper [proof]' +p226076 +sg225230 +S'Old Brigantine (Alte Brigantine)' +p226077 +sg225236 +S'1919' +p226078 +sa(dp226079 +g225232 +S'Lyonel Feininger' +p226080 +sg225240 +g27 +sg225234 +S'woodcut on oatmeal-tan carbon-copy paper [proof]' +p226081 +sg225230 +S'Fishing Boats (Fischerboote)' +p226082 +sg225236 +S'1918' +p226083 +sa(dp226084 +g225232 +S'Lyonel Feininger' +p226085 +sg225240 +g27 +sg225234 +S'woodcut on Japanese laid paper [proof]' +p226086 +sg225230 +S'Hansaflotte (Fleet of 17th Century Galleons)' +p226087 +sg225236 +S'1918' +p226088 +sa(dp226089 +g225232 +S'Lyonel Feininger' +p226090 +sg225240 +g27 +sg225234 +S'woodcut on magenta tissue paper [proof]' +p226091 +sg225230 +S'Harbor Pier with Lighthouse (Hafenmole mit Leuchtbake)' +p226092 +sg225236 +S'1918' +p226093 +sa(dp226094 +g225232 +S'Peter Lipman-Wulf' +p226095 +sg225240 +g27 +sg225234 +S'engraving in black (on outer lid of portfolio)' +p226096 +sg225230 +S'Cover Plate' +p226097 +sg225236 +S'1966' +p226098 +sa(dp226099 +g225232 +S'Peter Lipman-Wulf' +p226100 +sg225240 +g27 +sg225234 +S'portfolio with twenty-three color engravings, including title page and engraving on cover, on mouldmade copperplate paper' +p226101 +sg225230 +S'The Ring of Dreams: Joseph and His Brothers' +p226102 +sg225236 +S'1966' +p226103 +sa(dp226104 +g225232 +S'Peter Lipman-Wulf' +p226105 +sg225240 +g27 +sg225234 +S'engraving in green' +p226106 +sg225230 +S'Title Page' +p226107 +sg225236 +S'1966' +p226108 +sa(dp226109 +g225232 +S'Peter Lipman-Wulf' +p226110 +sg225240 +g27 +sg225234 +S'6-color engraving' +p226111 +sg225230 +S'Joseph and His Brothers I' +p226112 +sg225236 +S'1966' +p226113 +sa(dp226114 +g225232 +S'Peter Lipman-Wulf' +p226115 +sg225240 +g27 +sg225234 +S'6-color engraving' +p226116 +sg225230 +S'Joseph and His Brothers II' +p226117 +sg225236 +S'1966' +p226118 +sa(dp226119 +g225232 +S'Peter Lipman-Wulf' +p226120 +sg225240 +g27 +sg225234 +S'engraving in blue' +p226121 +sg225230 +S'Joseph and His Brothers III' +p226122 +sg225236 +S'1966' +p226123 +sa(dp226124 +g225232 +S'Peter Lipman-Wulf' +p226125 +sg225240 +g27 +sg225234 +S'6-color engraving' +p226126 +sg225230 +S'Joseph and His Brothers IV' +p226127 +sg225236 +S'1966' +p226128 +sa(dp226129 +g225232 +S'Peter Lipman-Wulf' +p226130 +sg225240 +g27 +sg225234 +S'engraving in brown' +p226131 +sg225230 +S'Joseph and His Brothers V' +p226132 +sg225236 +S'1966' +p226133 +sa(dp226134 +g225232 +S'Peter Lipman-Wulf' +p226135 +sg225240 +g27 +sg225234 +S'engraving in orange' +p226136 +sg225230 +S'Joseph and His Brothers VI' +p226137 +sg225236 +S'1966' +p226138 +sa(dp226139 +g225232 +S'Peter Lipman-Wulf' +p226140 +sg225240 +g27 +sg225234 +S'6-color engraving' +p226141 +sg225230 +S'Joseph and His Brothers VII' +p226142 +sg225236 +S'1966' +p226143 +sa(dp226144 +g225232 +S'Peter Lipman-Wulf' +p226145 +sg225240 +g27 +sg225234 +S'engraving in red-brown' +p226146 +sg225230 +S'Joseph and His Brothers VIII' +p226147 +sg225236 +S'1966' +p226148 +sa(dp226149 +g225232 +S'Peter Lipman-Wulf' +p226150 +sg225240 +g27 +sg225234 +S'engraving in pink' +p226151 +sg225230 +S'Joseph and His Brothers IX' +p226152 +sg225236 +S'1966' +p226153 +sa(dp226154 +g225232 +S'Peter Lipman-Wulf' +p226155 +sg225240 +g27 +sg225234 +S'engraving in purple' +p226156 +sg225230 +S'Joseph and His Brothers X' +p226157 +sg225236 +S'1966' +p226158 +sa(dp226159 +g225232 +S'Peter Lipman-Wulf' +p226160 +sg225240 +g27 +sg225234 +S'engraving in blue' +p226161 +sg225230 +S'Joseph and His Brothers XI' +p226162 +sg225236 +S'1966' +p226163 +sa(dp226164 +g225232 +S'Peter Lipman-Wulf' +p226165 +sg225240 +g27 +sg225234 +S'engraving in green' +p226166 +sg225230 +S'Joseph and His Brothers XII' +p226167 +sg225236 +S'1966' +p226168 +sa(dp226169 +g225232 +S'Peter Lipman-Wulf' +p226170 +sg225240 +g27 +sg225234 +S'engraving in blue-black' +p226171 +sg225230 +S'Joseph and His Brothers XIII' +p226172 +sg225236 +S'1966' +p226173 +sa(dp226174 +g225232 +S'Peter Lipman-Wulf' +p226175 +sg225240 +g27 +sg225234 +S'engraving in purple' +p226176 +sg225230 +S'Joseph and His Brothers XIV' +p226177 +sg225236 +S'1966' +p226178 +sa(dp226179 +g225232 +S'Peter Lipman-Wulf' +p226180 +sg225240 +g27 +sg225234 +S'engraving in green and yellow' +p226181 +sg225230 +S'Joseph and His Brothers XV' +p226182 +sg225236 +S'1966' +p226183 +sa(dp226184 +g225232 +S'Peter Lipman-Wulf' +p226185 +sg225240 +g27 +sg225234 +S'engraving in purple and yellow' +p226186 +sg225230 +S'Joseph and His Brothers XVI' +p226187 +sg225236 +S'1966' +p226188 +sa(dp226189 +g225232 +S'Peter Lipman-Wulf' +p226190 +sg225240 +g27 +sg225234 +S'engraving in green and yellow' +p226191 +sg225230 +S'Joseph and His Brothers XVII' +p226192 +sg225236 +S'1966' +p226193 +sa(dp226194 +g225232 +S'Peter Lipman-Wulf' +p226195 +sg225240 +g27 +sg225234 +S'engraving in purple' +p226196 +sg225230 +S'Joseph and His Brothers XVIII' +p226197 +sg225236 +S'1966' +p226198 +sa(dp226199 +g225232 +S'Peter Lipman-Wulf' +p226200 +sg225240 +g27 +sg225234 +S'engraving in orange' +p226201 +sg225230 +S'Joseph and His Brothers XIX' +p226202 +sg225236 +S'1966' +p226203 +sa(dp226204 +g225232 +S'Peter Lipman-Wulf' +p226205 +sg225240 +g27 +sg225234 +S'engraving in pink' +p226206 +sg225230 +S'Joseph and His Brothers XX' +p226207 +sg225236 +S'1966' +p226208 +sa(dp226209 +g225232 +S'Peter Lipman-Wulf' +p226210 +sg225240 +g27 +sg225234 +S'engraving in green' +p226211 +sg225230 +S'Joseph and His Brothers XXI' +p226212 +sg225236 +S'1966' +p226213 +sa(dp226214 +g225232 +S'Lyonel Feininger' +p226215 +sg225240 +g27 +sg225234 +S'woodcut on pink tissue paper [proof]' +p226216 +sg225230 +S'Lighthouse (Leuchtturm)' +p226217 +sg225236 +S'1919' +p226218 +sa(dp226219 +g225232 +S'Lyonel Feininger' +p226220 +sg225240 +g27 +sg225234 +S'woodcut on yellow-gold tissue paper [proof]' +p226221 +sg225230 +S'Marine' +p226222 +sg225236 +S'1918' +p226223 +sa(dp226224 +g225232 +S'Lyonel Feininger' +p226225 +sg225240 +g27 +sg225234 +S'woodcut on yellow tissue paper [proof]' +p226226 +sg225230 +S'Marine with Sun (Marine mit Sonne)' +p226227 +sg225236 +S'1918' +p226228 +sa(dp226229 +g225232 +S'Lyonel Feininger' +p226230 +sg225240 +g27 +sg225234 +S'etching and drypoint (zinc) on simulated laid cream paper [proof]' +p226231 +sg225230 +S'Marine, 1' +p226232 +sg225236 +S'1910/1911' +p226233 +sa(dp226234 +g225232 +S'Lyonel Feininger' +p226235 +sg225240 +g27 +sg225234 +S'woodcut on blue tissue paper [proof]' +p226236 +sg225230 +S'Sailboats with Moon (Segelboote mit Mond)' +p226237 +sg225236 +S'1919' +p226238 +sa(dp226239 +g225232 +S'Lyonel Feininger' +p226240 +sg225240 +g27 +sg225234 +S'woodcut on deep yellow tissue paper [proof]' +p226241 +sg225230 +S'Ships at Sea (Schiffe auf See)' +p226242 +sg225236 +S'1918' +p226243 +sa(dp226244 +g225232 +S'Lyonel Feininger' +p226245 +sg225240 +g27 +sg225234 +S'woodcut on orange-red tissue paper [proof]' +p226246 +sg225230 +S'Ships (Schiffe)' +p226247 +sg225236 +S'1919' +p226248 +sa(dp226249 +g225232 +S'Lyonel Feininger' +p226250 +sg225240 +g27 +sg225234 +S'woodcut on oatmeal-tan carbon-copy paper [proof]' +p226251 +sg225230 +S'Yacht Racing (Jacht Wettsegeln)' +p226252 +sg225236 +S'1918' +p226253 +sa(dp226254 +g225232 +S'Henry Moore' +p226255 +sg225240 +g27 +sg225234 +S'etching' +p226256 +sg225230 +S'Ideas for Sculpture' +p226257 +sg225236 +S'1966' +p226258 +sa(dp226259 +g225232 +S'Henry Moore' +p226260 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p226261 +sg225230 +S'Two Seated Figures II' +p226262 +sg225236 +S'1966' +p226263 +sa(dp226264 +g225232 +S'Artist Information (' +p226265 +sg225240 +g27 +sg225234 +S'(artist)' +p226266 +sg225230 +S'The Bellows Infants' +p226267 +sg225236 +S'\n' +p226268 +sa(dp226269 +g225232 +S'Artist Information (' +p226270 +sg225240 +g27 +sg225234 +S'(artist)' +p226271 +sg225230 +S'A Portfolio of Rubbings from Early American Sculpture...' +p226272 +sg225236 +S'\n' +p226273 +sa(dp226274 +g225232 +S'Artist Information (' +p226275 +sg225240 +g27 +sg225234 +S'(artist)' +p226276 +sg225230 +S'William Sinclair' +p226277 +sg225236 +S'\n' +p226278 +sa(dp226279 +g225232 +S'Artist Information (' +p226280 +sg225240 +g27 +sg225234 +S'(artist)' +p226281 +sg225230 +S'Sarah Allen' +p226282 +sg225236 +S'\n' +p226283 +sa(dp226284 +g225232 +S'Artist Information (' +p226285 +sg225240 +g27 +sg225234 +S'(artist)' +p226286 +sg225230 +S'Levi Godfrey' +p226287 +sg225236 +S'\n' +p226288 +sa(dp226289 +g225232 +S'Artist Information (' +p226290 +sg225240 +g27 +sg225234 +S'(artist)' +p226291 +sg225230 +S'Hannah Pecker' +p226292 +sg225236 +S'\n' +p226293 +sa(dp226294 +g225232 +S'Artist Information (' +p226295 +sg225240 +g27 +sg225234 +S'(artist)' +p226296 +sg225230 +S'The Lane Infant' +p226297 +sg225236 +S'\n' +p226298 +sa(dp226299 +g225232 +S'Artist Information (' +p226300 +sg225240 +g27 +sg225234 +S'(artist)' +p226301 +sg225230 +S'Hannah Woodcock' +p226302 +sg225236 +S'\n' +p226303 +sa(dp226304 +g225232 +S'Artist Information (' +p226305 +sg225240 +g27 +sg225234 +S'(artist)' +p226306 +sg225230 +S'Mary Harvey' +p226307 +sg225236 +S'\n' +p226308 +sa(dp226309 +g225232 +S'Artist Information (' +p226310 +sg225240 +g27 +sg225234 +S'(artist)' +p226311 +sg225230 +S'Martha Clark' +p226312 +sg225236 +S'\n' +p226313 +sa(dp226314 +g225232 +S'Artist Information (' +p226315 +sg225240 +g27 +sg225234 +S'(artist)' +p226316 +sg225230 +S'Lucinda Day' +p226317 +sg225236 +S'\n' +p226318 +sa(dp226319 +g225232 +S'Artist Information (' +p226320 +sg225240 +g27 +sg225234 +S'(artist)' +p226321 +sg225230 +S'Polly Coombs' +p226322 +sg225236 +S'\n' +p226323 +sa(dp226324 +g225232 +S'Artist Information (' +p226325 +sg225240 +g27 +sg225234 +S'(artist)' +p226326 +sg225230 +S'Joshua Whitney' +p226327 +sg225236 +S'\n' +p226328 +sa(dp226329 +g225232 +S'Artist Information (' +p226330 +sg225240 +g27 +sg225234 +S'(artist)' +p226331 +sg225230 +S'Christiana Cook' +p226332 +sg225236 +S'\n' +p226333 +sa(dp226334 +g225232 +S'Artist Information (' +p226335 +sg225240 +g27 +sg225234 +S'(artist)' +p226336 +sg225230 +S'Jessa Griswould and Two Other Infants' +p226337 +sg225236 +S'\n' +p226338 +sa(dp226339 +g225232 +S'Artist Information (' +p226340 +sg225240 +g27 +sg225234 +S'(artist)' +p226341 +sg225230 +S'Thomas Nichols' +p226342 +sg225236 +S'\n' +p226343 +sa(dp226344 +g225232 +S'Artist Information (' +p226345 +sg225240 +g27 +sg225234 +S'(artist)' +p226346 +sg225230 +S'A Portfolio of Rubbings from Early American Sculpture...' +p226347 +sg225236 +S'\n' +p226348 +sa(dp226349 +g225232 +S'Artist Information (' +p226350 +sg225240 +g27 +sg225234 +S'(artist)' +p226351 +sg225230 +S'Elizabeth Tillson' +p226352 +sg225236 +S'\n' +p226353 +sa(dp226354 +g225232 +S'Artist Information (' +p226355 +sg225240 +g27 +sg225234 +S'(artist)' +p226356 +sg225230 +S'Sally Morrison and Her Two Children' +p226357 +sg225236 +S'\n' +p226358 +sa(dp226359 +g225232 +S'Artist Information (' +p226360 +sg225240 +g27 +sg225234 +S'(artist)' +p226361 +sg225230 +S'Mary Mervin' +p226362 +sg225236 +S'\n' +p226363 +sa(dp226364 +g225232 +S'Artist Information (' +p226365 +sg225240 +g27 +sg225234 +S'(artist)' +p226366 +sg225230 +S'Deacon Abner Stow and His Wife Mary' +p226367 +sg225236 +S'\n' +p226368 +sa(dp226369 +g225232 +S'Artist Information (' +p226370 +sg225240 +g27 +sg225234 +S'(artist)' +p226371 +sg225230 +S'Elizabeth Smith' +p226372 +sg225236 +S'\n' +p226373 +sa(dp226374 +g225232 +S'Artist Information (' +p226375 +sg225240 +g27 +sg225234 +S'(artist)' +p226376 +sg225230 +S'Abigail Davis' +p226377 +sg225236 +S'\n' +p226378 +sa(dp226379 +g225232 +S'Artist Information (' +p226380 +sg225240 +g27 +sg225234 +S'(artist)' +p226381 +sg225230 +S'Atherton Chaffee' +p226382 +sg225236 +S'\n' +p226383 +sa(dp226384 +g225232 +S'Artist Information (' +p226385 +sg225240 +g27 +sg225234 +S'(artist)' +p226386 +sg225230 +S'Noah Andruss' +p226387 +sg225236 +S'\n' +p226388 +sa(dp226389 +g225232 +S'Artist Information (' +p226390 +sg225240 +g27 +sg225234 +S'(artist)' +p226391 +sg225230 +S'Abigail Muzzy' +p226392 +sg225236 +S'\n' +p226393 +sa(dp226394 +g225232 +S'Artist Information (' +p226395 +sg225240 +g27 +sg225234 +S'(artist)' +p226396 +sg225230 +S'Abigail Huntington' +p226397 +sg225236 +S'\n' +p226398 +sa(dp226399 +g225232 +S'Artist Information (' +p226400 +sg225240 +g27 +sg225234 +S'(artist)' +p226401 +sg225230 +S'Mercy Buloid and Her Son Peter' +p226402 +sg225236 +S'\n' +p226403 +sa(dp226404 +g225232 +S'Artist Information (' +p226405 +sg225240 +g27 +sg225234 +S'(artist)' +p226406 +sg225230 +S'Mary Hinckley' +p226407 +sg225236 +S'\n' +p226408 +sa(dp226409 +g225232 +S'Artist Information (' +p226410 +sg225240 +g27 +sg225234 +S'(artist)' +p226411 +sg225230 +S'Charles Stuart' +p226412 +sg225236 +S'\n' +p226413 +sa(dp226414 +g225232 +S'Artist Information (' +p226415 +sg225240 +g27 +sg225234 +S'(artist)' +p226416 +sg225230 +S'Timothy Lindall' +p226417 +sg225236 +S'\n' +p226418 +sa(dp226419 +g225232 +S'Artist Information (' +p226420 +sg225240 +g27 +sg225234 +S'(artist)' +p226421 +sg225230 +S'A Portfolio of Rubbings from Early American Sculpture...' +p226422 +sg225236 +S'\n' +p226423 +sa(dp226424 +g225232 +S'Artist Information (' +p226425 +sg225240 +g27 +sg225234 +S'(artist)' +p226426 +sg225230 +S'Lieut. Moses Willard and His Wife Susannah' +p226427 +sg225236 +S'\n' +p226428 +sa(dp226429 +g225232 +S'Artist Information (' +p226430 +sg225240 +g27 +sg225234 +S'(artist)' +p226431 +sg225230 +S'Katharine Bartlet' +p226432 +sg225236 +S'\n' +p226433 +sa(dp226434 +g225232 +S'Artist Information (' +p226435 +sg225240 +g27 +sg225234 +S'(artist)' +p226436 +sg225230 +S'Major Lemuel Hide' +p226437 +sg225236 +S'\n' +p226438 +sa(dp226439 +g225232 +S'Artist Information (' +p226440 +sg225240 +g27 +sg225234 +S'(artist)' +p226441 +sg225230 +S'Rebecca Parks and Fourteen Infants' +p226442 +sg225236 +S'\n' +p226443 +sa(dp226444 +g225232 +S'Artist Information (' +p226445 +sg225240 +g27 +sg225234 +S'(artist)' +p226446 +sg225230 +S'Deacon Robert Waterman' +p226447 +sg225236 +S'\n' +p226448 +sa(dp226449 +g225232 +S'Artist Information (' +p226450 +sg225240 +g27 +sg225234 +S'(artist)' +p226451 +sg225230 +S'Capt. Moses Porter and Elizabeth, His Wife' +p226452 +sg225236 +S'\n' +p226453 +sa(dp226454 +g225232 +S'Artist Information (' +p226455 +sg225240 +g27 +sg225234 +S'(artist)' +p226456 +sg225230 +S'Ens. David Keyes' +p226457 +sg225236 +S'\n' +p226458 +sa(dp226459 +g225232 +S'Artist Information (' +p226460 +sg225240 +g27 +sg225234 +S'(artist)' +p226461 +sg225230 +S'The Three Manning Children' +p226462 +sg225236 +S'\n' +p226463 +sa(dp226464 +g225232 +S'Artist Information (' +p226465 +sg225240 +g27 +sg225234 +S'(artist)' +p226466 +sg225230 +S'Mary Simpson and Her Babe' +p226467 +sg225236 +S'\n' +p226468 +sa(dp226469 +g225232 +S'Artist Information (' +p226470 +sg225240 +g27 +sg225234 +S'(artist)' +p226471 +sg225230 +S'Jedediah Aylesworth' +p226472 +sg225236 +S'\n' +p226473 +sa(dp226474 +g225232 +S'Artist Information (' +p226475 +sg225240 +g27 +sg225234 +S'(artist)' +p226476 +sg225230 +S'Jonathon Bull' +p226477 +sg225236 +S'\n' +p226478 +sa(dp226479 +g225232 +S'Artist Information (' +p226480 +sg225240 +g27 +sg225234 +S'(artist)' +p226481 +sg225230 +S'Laura and Marianne Swift' +p226482 +sg225236 +S'\n' +p226483 +sa(dp226484 +g225232 +S'Artist Information (' +p226485 +sg225240 +g27 +sg225234 +S'(artist)' +p226486 +sg225230 +S'Anne Phelps' +p226487 +sg225236 +S'\n' +p226488 +sa(dp226489 +g225232 +S'Karl Schrag' +p226490 +sg225240 +g27 +sg225234 +S'etched, engraved and aquatinted copper plate [cancelled]' +p226491 +sg225230 +S'Dark Wave and Island' +p226492 +sg225236 +S'1965/1966' +p226493 +sa(dp226494 +g225230 +S'The Adoration of the Magi' +p226495 +sg225232 +S'Artist Information (' +p226496 +sg225234 +S'(artist after)' +p226497 +sg225236 +S'\n' +p226498 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c873.jpg' +p226499 +sg225240 +g27 +sa(dp226500 +g225230 +S'Title Page for "Jeu des Mythologie"' +p226501 +sg225232 +S'Stefano Della Bella' +p226502 +sg225234 +S'etching' +p226503 +sg225236 +S'1644' +p226504 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c904.jpg' +p226505 +sg225240 +g27 +sa(dp226506 +g225230 +S'Vulcan and Thetis' +p226507 +sg225232 +S'Stefano Della Bella' +p226508 +sg225234 +S'etching' +p226509 +sg225236 +S'1644' +p226510 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c905.jpg' +p226511 +sg225240 +g27 +sa(dp226512 +g225230 +S'Perseus and Andromeda; Cephalus and Procris; Hippomene and Atalantus' +p226513 +sg225232 +S'Stefano Della Bella' +p226514 +sg225234 +S'three etchings on one sheet' +p226515 +sg225236 +S'1644' +p226516 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c912.jpg' +p226517 +sg225240 +g27 +sa(dp226518 +g225230 +S'Mythological Playing Cards' +p226519 +sg225232 +S'Stefano Della Bella' +p226520 +sg225234 +S'12 etchings on one sheet' +p226521 +sg225236 +S'1644' +p226522 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9cb.jpg' +p226523 +sg225240 +g27 +sa(dp226524 +g225230 +S'Mythological Playing Cards' +p226525 +sg225232 +S'Stefano Della Bella' +p226526 +sg225234 +S'12 etchings on one sheet' +p226527 +sg225236 +S'1644' +p226528 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9c8.jpg' +p226529 +sg225240 +g27 +sa(dp226530 +g225230 +S'Mythological Playing Cards' +p226531 +sg225232 +S'Stefano Della Bella' +p226532 +sg225234 +S'12 etchings on one sheet' +p226533 +sg225236 +S'1644' +p226534 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9ca.jpg' +p226535 +sg225240 +g27 +sa(dp226536 +g225230 +S'Mythological Playing Cards' +p226537 +sg225232 +S'Stefano Della Bella' +p226538 +sg225234 +S'12 etchings on one sheet' +p226539 +sg225236 +S'1644' +p226540 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9c9.jpg' +p226541 +sg225240 +g27 +sa(dp226542 +g225232 +S'Karl Schrag' +p226543 +sg225240 +g27 +sg225234 +S'etching and engraving in black on Arches paper' +p226544 +sg225230 +S'Noonsun and Sails' +p226545 +sg225236 +S'1965/1966' +p226546 +sa(dp226547 +g225232 +S'Karl Schrag' +p226548 +sg225240 +g27 +sg225234 +S'portfolio with eighteen etchings, aquatints, and drypoints, plus 1 original metal plate (1968.24.91), title page, table of contents, and colophon' +p226549 +sg225230 +S'By the Sea' +p226550 +sg225236 +S'1965/1966' +p226551 +sa(dp226552 +g225232 +S'Karl Schrag' +p226553 +sg225240 +g27 +sg225234 +S'etching, aquatint and stencil in blue, brownish-red and red on Arches paper' +p226554 +sg225230 +S'Red Sky and Sea' +p226555 +sg225236 +S'1965/1966' +p226556 +sa(dp226557 +g225232 +S'Karl Schrag' +p226558 +sg225240 +g27 +sg225234 +S'etching and engraving in black on Arches paper' +p226559 +sg225230 +S'Sandbar and Clouds' +p226560 +sg225236 +S'1965/1966' +p226561 +sa(dp226562 +g225232 +S'Karl Schrag' +p226563 +sg225240 +g27 +sg225234 +S'etching, engraving and aquatint in black on Arches paper' +p226564 +sg225230 +S'Seawind' +p226565 +sg225236 +S'1965/1966' +p226566 +sa(dp226567 +g225232 +S'Karl Schrag' +p226568 +sg225240 +g27 +sg225234 +S'etching and aquatint in orange on Arches paper' +p226569 +sg225230 +S'Sound of Waves' +p226570 +sg225236 +S'1965/1966' +p226571 +sa(dp226572 +g225232 +S'Karl Schrag' +p226573 +sg225240 +g27 +sg225234 +S'etching, engraving and aquatint in black on Arches paper' +p226574 +sg225230 +S'Beach and Rising Moon' +p226575 +sg225236 +S'1965/1966' +p226576 +sa(dp226577 +g225232 +S'Karl Schrag' +p226578 +sg225240 +g27 +sg225234 +S'etching and aquatint in black on Arches paper' +p226579 +sg225230 +S'Dreams by the Sea' +p226580 +sg225236 +S'1965/1966' +p226581 +sa(dp226582 +g225232 +S'Karl Schrag' +p226583 +sg225240 +g27 +sg225234 +S'etching, engraving and aquatint in black on Arches paper' +p226584 +sg225230 +S'Dark Wave and Island' +p226585 +sg225236 +S'1965/1966' +p226586 +sa(dp226587 +g225232 +S'Karl Schrag' +p226588 +sg225240 +g27 +sg225234 +S'etching in black on Arches paper' +p226589 +sg225230 +S'Rainstorm' +p226590 +sg225236 +S'1965/1966' +p226591 +sa(dp226592 +g225232 +S'Karl Schrag' +p226593 +sg225240 +g27 +sg225234 +S'etching and aquatint in black on Arches paper' +p226594 +sg225230 +S'Big Rock and Surf' +p226595 +sg225236 +S'1965/1966' +p226596 +sa(dp226597 +g225232 +S'Karl Schrag' +p226598 +sg225240 +g27 +sg225234 +S'etching and aquatint in black on Arches paper' +p226599 +sg225230 +S'White Cloud behind Trees' +p226600 +sg225236 +S'1965/1966' +p226601 +sa(dp226602 +g225232 +S'Karl Schrag' +p226603 +sg225240 +g27 +sg225234 +S'etching, engraving and aquatint in blue-green and black on Arches paper' +p226604 +sg225230 +S'Nightshore' +p226605 +sg225236 +S'1965/1966' +p226606 +sa(dp226607 +g225232 +S'Karl Schrag' +p226608 +sg225240 +g27 +sg225234 +S'etching and aquatint in black on Arches paper' +p226609 +sg225230 +S'Moon and Appletree' +p226610 +sg225236 +S'1965/1966' +p226611 +sa(dp226612 +g225232 +S'Karl Schrag' +p226613 +sg225240 +g27 +sg225234 +S'etching in black on Arches paper' +p226614 +sg225230 +S'Sand and Gray Sea' +p226615 +sg225236 +S'1965/1966' +p226616 +sa(dp226617 +g225232 +S'Karl Schrag' +p226618 +sg225240 +g27 +sg225234 +S'etching in black on Arches paper' +p226619 +sg225230 +S'Sunny Woods' +p226620 +sg225236 +S'1965/1966' +p226621 +sa(dp226622 +g225232 +S'Karl Schrag' +p226623 +sg225240 +g27 +sg225234 +S'engraving in black on Arches paper' +p226624 +sg225230 +S'Wateringcan' +p226625 +sg225236 +S'1965/1966' +p226626 +sa(dp226627 +g225232 +S'Karl Schrag' +p226628 +sg225240 +g27 +sg225234 +S'etching and aquatint in black on Arches paper' +p226629 +sg225230 +S'Quiet Cove' +p226630 +sg225236 +S'1965/1966' +p226631 +sa(dp226632 +g225232 +S'Karl Schrag' +p226633 +sg225240 +g27 +sg225234 +S'etching in black on Arches paper' +p226634 +sg225230 +S'The Artist' +p226635 +sg225236 +S'1965/1966' +p226636 +sa(dp226637 +g225232 +S'Benton Murdoch Spruance' +p226638 +sg225240 +g27 +sg225234 +S'lithograph in blue-black' +p226639 +sg225230 +S'Tobias and the Angel' +p226640 +sg225236 +S'1967' +p226641 +sa(dp226642 +g225232 +S'Samuel Calman Maitin' +p226643 +sg225240 +g27 +sg225234 +S'lithograph in blue' +p226644 +sg225230 +S'After a Time, Another Comment Concerning the Garden' +p226645 +sg225236 +S'1967' +p226646 +sa(dp226647 +g225232 +S'Benton Murdoch Spruance' +p226648 +sg225240 +g27 +sg225234 +S'6-color lithograph in three greens, tan, light brown, and yellow-ochre' +p226649 +sg225230 +S'Master of the Pequod' +p226650 +sg225236 +S'1967' +p226651 +sa(dp226652 +g225232 +S'Benton Murdoch Spruance' +p226653 +sg225240 +g27 +sg225234 +S'lithograph in green [separation proof]' +p226654 +sg225230 +S'Master of the Pequod' +p226655 +sg225236 +S'1967' +p226656 +sa(dp226657 +g225232 +S'Benton Murdoch Spruance' +p226658 +sg225240 +g27 +sg225234 +S'lithograph in green-gray [separation proof]' +p226659 +sg225230 +S'Master of the Pequod' +p226660 +sg225236 +S'1967' +p226661 +sa(dp226662 +g225232 +S'Benton Murdoch Spruance' +p226663 +sg225240 +g27 +sg225234 +S'lithograph in brown and green [trial proof]' +p226664 +sg225230 +S'Master of the Pequod' +p226665 +sg225236 +S'1967' +p226666 +sa(dp226667 +g225232 +S'Benton Murdoch Spruance' +p226668 +sg225240 +g27 +sg225234 +S'lithograph in three greens [trial proof]' +p226669 +sg225230 +S'Master of the Pequod' +p226670 +sg225236 +S'1967' +p226671 +sa(dp226672 +g225232 +S'Benton Murdoch Spruance' +p226673 +sg225240 +g27 +sg225234 +S'lithograph in two greens and brown [trial proof]' +p226674 +sg225230 +S'Master of the Pequod' +p226675 +sg225236 +S'1967' +p226676 +sa(dp226677 +g225232 +S'Benton Murdoch Spruance' +p226678 +sg225240 +g27 +sg225234 +S'lithograph in two greens, brown, and blue [trial proof]' +p226679 +sg225230 +S'Master of the Pequod' +p226680 +sg225236 +S'1967' +p226681 +sa(dp226682 +g225232 +S'Benton Murdoch Spruance' +p226683 +sg225240 +g27 +sg225234 +S'lithograph in two greens, blue and tan [trial proof]' +p226684 +sg225230 +S'Master of the Pequod' +p226685 +sg225236 +S'1967' +p226686 +sa(dp226687 +g225232 +S'Benton Murdoch Spruance' +p226688 +sg225240 +g27 +sg225234 +S'6-color lithograph [proof]' +p226689 +sg225230 +S'Master of the Pequod' +p226690 +sg225236 +S'1967' +p226691 +sa(dp226692 +g225232 +S'Benton Murdoch Spruance' +p226693 +sg225240 +g27 +sg225234 +S'6-color lithograph (stone)' +p226694 +sg225230 +S'Call Me Ishmael' +p226695 +sg225236 +S'1966' +p226696 +sa(dp226697 +g225232 +S'Benton Murdoch Spruance' +p226698 +sg225240 +g27 +sg225234 +S'portfolio with thirty lithographs [trial proofs]' +p226699 +sg225230 +S'Moby Dick: The Passion of Ahab' +p226700 +sg225236 +S'unknown date\n' +p226701 +sa(dp226702 +g225232 +S'Benton Murdoch Spruance' +p226703 +sg225240 +g27 +sg225234 +S'4-color lithograph (stone)' +p226704 +sg225230 +S'The Blue Whale' +p226705 +sg225236 +S'1966' +p226706 +sa(dp226707 +g225232 +S'Benton Murdoch Spruance' +p226708 +sg225240 +g27 +sg225234 +S'4-color lithograph (stone)' +p226709 +sg225230 +S'The First Encounter' +p226710 +sg225236 +S'1966' +p226711 +sa(dp226712 +g225232 +S'Benton Murdoch Spruance' +p226713 +sg225240 +g27 +sg225234 +S'lithograph in gray and blue-green' +p226714 +sg225230 +S'The Whiteness of the Whale' +p226715 +sg225236 +S'1966' +p226716 +sa(dp226717 +g225232 +S'Benton Murdoch Spruance' +p226718 +sg225240 +g27 +sg225234 +S'5-color lithograph (stone)' +p226719 +sg225230 +S'Strike through the Mask' +p226720 +sg225236 +S'1966' +p226721 +sa(dp226722 +g225232 +S'Benton Murdoch Spruance' +p226723 +sg225240 +g27 +sg225234 +S'lithograph in gray and blue-green' +p226724 +sg225230 +S'The Whiteness of the Whale' +p226725 +sg225236 +S'1965/1966' +p226726 +sa(dp226727 +g225232 +S'Benton Murdoch Spruance' +p226728 +sg225240 +g27 +sg225234 +S'7-color lithograph (stone)' +p226729 +sg225230 +S'The Albatross' +p226730 +sg225236 +S'1966' +p226731 +sa(dp226732 +g225232 +S'Benton Murdoch Spruance' +p226733 +sg225240 +g27 +sg225234 +S'4-color lithograph (stone)' +p226734 +sg225230 +S'The Town-Ho' +p226735 +sg225236 +S'1966' +p226736 +sa(dp226737 +g225232 +S'Benton Murdoch Spruance' +p226738 +sg225240 +g27 +sg225234 +S'9-color lithograph (stone)' +p226739 +sg225230 +S'The Jeroboam' +p226740 +sg225236 +S'1966' +p226741 +sa(dp226742 +g225232 +S'Benton Murdoch Spruance' +p226743 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown, green, and dark gray' +p226744 +sg225230 +S'The Jungfrau' +p226745 +sg225236 +S'1965' +p226746 +sa(dp226747 +g225232 +S'Benton Murdoch Spruance' +p226748 +sg225240 +g27 +sg225234 +S'lithograph in yellow, green, and dark gray' +p226749 +sg225230 +S'The Rosebud' +p226750 +sg225236 +S'1965/1966' +p226751 +sa(dp226752 +g225232 +S'Benton Murdoch Spruance' +p226753 +sg225240 +g27 +sg225234 +S'4-color lithograph (stone)' +p226754 +sg225230 +S'The Samuel Enderby' +p226755 +sg225236 +S'1966' +p226756 +sa(dp226757 +g225232 +S'Benton Murdoch Spruance' +p226758 +sg225240 +g27 +sg225234 +S'6-color lithograph (stone)' +p226759 +sg225230 +S'The Bachelor' +p226760 +sg225236 +S'1966' +p226761 +sa(dp226762 +g225232 +S'Benton Murdoch Spruance' +p226763 +sg225240 +g27 +sg225234 +S'5-color lithograph (stone)' +p226764 +sg225230 +S'The Rachel' +p226765 +sg225236 +S'1966' +p226766 +sa(dp226767 +g225232 +S'Benton Murdoch Spruance' +p226768 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light brown, blue-green, and black' +p226769 +sg225230 +S'The Delight' +p226770 +sg225236 +S'1966' +p226771 +sa(dp226772 +g225232 +S'Benton Murdoch Spruance' +p226773 +sg225240 +g27 +sg225234 +S'lithograph in gray, gray-green, and orange' +p226774 +sg225230 +S'First Version of Call Me Ishmael' +p226775 +sg225236 +S'1965/1966' +p226776 +sa(dp226777 +g225232 +S'Benton Murdoch Spruance' +p226778 +sg225240 +g27 +sg225234 +S'lithograph (stone) in two greens and red' +p226779 +sg225230 +S'The Harpooner' +p226780 +sg225236 +S'1966' +p226781 +sa(dp226782 +g225232 +S'Benton Murdoch Spruance' +p226783 +sg225240 +g27 +sg225234 +S'lithograph (stone) in green and black' +p226784 +sg225230 +S'The Harpooner' +p226785 +sg225236 +S'1966' +p226786 +sa(dp226787 +g225232 +S'Benton Murdoch Spruance' +p226788 +sg225240 +g27 +sg225234 +S'5-color lithograph (stone)' +p226789 +sg225230 +S'The Sphinx and Ahab' +p226790 +sg225236 +S'1966' +p226791 +sa(dp226792 +g225232 +S'Benton Murdoch Spruance' +p226793 +sg225240 +g27 +sg225234 +S'6-color lithograph (stone)' +p226794 +sg225230 +S'The Spirit Spout' +p226795 +sg225236 +S'1966' +p226796 +sa(dp226797 +g225232 +S'Benton Murdoch Spruance' +p226798 +sg225240 +g27 +sg225234 +S'lithograph in green-blue, gray-green, and black' +p226799 +sg225230 +S'The Burning Harpoon' +p226800 +sg225236 +S'1966' +p226801 +sa(dp226802 +g225232 +S'Benton Murdoch Spruance' +p226803 +sg225240 +g27 +sg225234 +S'5-color lithograph' +p226804 +sg225230 +S"Ahab Aloft - The First Day's Chase" +p226805 +sg225236 +S'1966' +p226806 +sa(dp226807 +g225232 +S'Benton Murdoch Spruance' +p226808 +sg225240 +g27 +sg225234 +S'5-color lithograph' +p226809 +sg225230 +S"Ahab Aloft - The First Day's Chase" +p226810 +sg225236 +S'1967' +p226811 +sa(dp226812 +g225232 +S'Benton Murdoch Spruance' +p226813 +sg225240 +g27 +sg225234 +S'7-color lithograph (stone)' +p226814 +sg225230 +S"The Prophecy - Fedallah's Death" +p226815 +sg225236 +S'1966' +p226816 +sa(dp226817 +g225232 +S'Benton Murdoch Spruance' +p226818 +sg225240 +g27 +sg225234 +S'4-color lithograph (stone)' +p226819 +sg225230 +S'Ahab with Starbuck' +p226820 +sg225236 +S'1966' +p226821 +sa(dp226822 +g225232 +S'Benton Murdoch Spruance' +p226823 +sg225240 +g27 +sg225234 +S'5-color lithograph (stone)' +p226824 +sg225230 +S'The Death of the Pequod' +p226825 +sg225236 +S'1966' +p226826 +sa(dp226827 +g225232 +S'Benton Murdoch Spruance' +p226828 +sg225240 +g27 +sg225234 +S'6-color lithograph (stone)' +p226829 +sg225230 +S"The Last Thrust - Ahab's Death" +p226830 +sg225236 +S'1966' +p226831 +sa(dp226832 +g225232 +S'Benton Murdoch Spruance' +p226833 +sg225240 +g27 +sg225234 +S'6-color lithograph (stone)' +p226834 +sg225230 +S'The Vortex' +p226835 +sg225236 +S'1966' +p226836 +sa(dp226837 +g225232 +S'Benton Murdoch Spruance' +p226838 +sg225240 +g27 +sg225234 +S'4-color lithograph (stone)' +p226839 +sg225230 +S'The Skyhawk' +p226840 +sg225236 +S'1966' +p226841 +sa(dp226842 +g225232 +S'Benton Murdoch Spruance' +p226843 +sg225240 +g27 +sg225234 +S'5-color lithograph (stone)' +p226844 +sg225230 +S'Ishmael, The Epilogue' +p226845 +sg225236 +S'1966' +p226846 +sa(dp226847 +g225230 +S'Wisconsin' +p226848 +sg225232 +S'Walt Kuhn' +p226849 +sg225234 +S'oil on canvas' +p226850 +sg225236 +S'1936' +p226851 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a000013b.jpg' +p226852 +sg225240 +g27 +sa(dp226853 +g225230 +S'Plains Indian' +p226854 +sg225232 +S'J.W. Bradshaw' +p226855 +sg225234 +S'oil on canvas' +p226856 +sg225236 +S'fourth quarter 19th century' +p226857 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a000002b.jpg' +p226858 +sg225240 +g27 +sa(dp226859 +g225230 +S'Felucca off Gibraltar' +p226860 +sg225232 +S'Thomas Chambers' +p226861 +sg225234 +S'oil on canvas' +p226862 +sg225236 +S'mid 19th century' +p226863 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001ac.jpg' +p226864 +sg225240 +g27 +sa(dp226865 +g225230 +S'View of Aberdeen, Washington' +p226866 +sg225232 +S'American 20th Century' +p226867 +sg225234 +S'overall: 70.7 x 106.4 cm (27 13/16 x 41 7/8 in.)\r\nframed: 84.4 x 120 x 6.3 cm (33 1/4 x 47 1/4 x 2 1/2 in.)' +p226868 +sg225236 +S'\noil on canvas' +p226869 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000461.jpg' +p226870 +sg225240 +g27 +sa(dp226871 +g225232 +S'Christian Strenge' +p226872 +sg225240 +g27 +sg225234 +S'brown, red, yellow, and blue ink on laid paper' +p226873 +sg225230 +S'Fraktur Vorschrift' +p226874 +sg225236 +S'1794' +p226875 +sa(dp226876 +g225232 +S'Christian Tester' +p226877 +sg225240 +g27 +sg225234 +S'pen and brown ink and watercolor' +p226878 +sg225230 +S'Nicht so Traurig' +p226879 +sg225236 +S'1773' +p226880 +sa(dp226881 +g225232 +S'American 18th Century' +p226882 +sg225240 +g27 +sg225234 +S'overall: 67.3 x 55 cm (26 1/2 x 21 5/8 in.)\r\nframed: 81.3 x 68.6 cm (32 x 27 in.)' +p226883 +sg225230 +S'Needlework Picture' +p226884 +sg225236 +S'\nembroidery: undyed cotton, dyed wool and silk, spun silver thread, and glass beads on unbleached linen canvas' +p226885 +sa(dp226886 +g225230 +S'The Judgment of Paris' +p226887 +sg225232 +S'Claude Lorrain' +p226888 +sg225234 +S'oil on canvas' +p226889 +sg225236 +S'1645/1646' +p226890 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d62.jpg' +p226891 +sg225240 +S'Like his compatriot Nicolas Poussin, Claude Lorrain forged his career in Rome.\nClaude\'s vision of the Roman countryside is grounded in a careful observation of\nnature, but he transformed the landscape into a timeless, idealized world through\nhis masterful rendering of sunlight and strict structuring of space.\n The Judgment of Paris is one of the best known Greek myths. The goddess Strife\nthrew a golden apple marked "to the fairest" amidst the gods and Jupiter selected\nParis, a Trojan shepherd, to award it. Each goddess tried to influence Paris with\na special gift. Minerva, depicted here with a spear at her side, offered him victory\nin war. Juno, attended by her regal peacock, offered to make him ruler of the world,\nwhile Venus, accompanied by Cupid, proposed the most beautiful woman in the world.\nParis chose Venus who then led him to Helen of Sparta, which precipitated the Trojan\nWar.\n Although the subject is suitable to history painting, the figures are relegated\nto the left-hand corner of the composition, making it clear that Claude\'s real interest\nwas the landscape. The viewer\'s eye slowly moves from the tree in the extreme right\nforeground to the massive green trees in the middle ground. A winding river leads\nthrough the background until the mountains disappear in an atmospheric haze. Like\nPoussin, Claude has ordered nature -- here through parallel interlocked planes of\nspace.\n ' +p226892 +sa(dp226893 +g225230 +S'Portrait of a Man in a Wide-Brimmed Hat' +p226894 +sg225232 +S'Artist Information (' +p226895 +sg225234 +S'Flemish, 1600 - 1671' +p226896 +sg225236 +S'(painter)' +p226897 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e32.jpg' +p226898 +sg225240 +g27 +sa(dp226899 +g225230 +S'The Lamentation' +p226900 +sg225232 +S'Albrecht D\xc3\xbcrer' +p226901 +sg225234 +S'woodcut' +p226902 +sg225236 +S'c. 1500' +p226903 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b218.jpg' +p226904 +sg225240 +g27 +sa(dp226905 +g225230 +S'The Virgin Nursing the Christ Child with Four Angels' +p226906 +sg225232 +S'Albrecht D\xc3\xbcrer' +p226907 +sg225234 +S'woodcut' +p226908 +sg225236 +S'c. 1500' +p226909 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b219.jpg' +p226910 +sg225240 +g27 +sa(dp226911 +g225230 +S'Saint Matthias' +p226912 +sg225232 +S'Albrecht D\xc3\xbcrer' +p226913 +sg225234 +S'woodcut' +p226914 +sg225236 +S'c. 1500' +p226915 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b21a.jpg' +p226916 +sg225240 +g27 +sa(dp226917 +g225230 +S'Saint Erasmus' +p226918 +sg225232 +S'Albrecht D\xc3\xbcrer' +p226919 +sg225234 +S'woodcut' +p226920 +sg225236 +S'c. 1500' +p226921 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b21b.jpg' +p226922 +sg225240 +g27 +sa(dp226923 +g225230 +S'Saint Leonard' +p226924 +sg225232 +S'Albrecht D\xc3\xbcrer' +p226925 +sg225234 +S'woodcut' +p226926 +sg225236 +S'c. 1500' +p226927 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b21c.jpg' +p226928 +sg225240 +g27 +sa(dp226929 +g225230 +S'Saint Roch' +p226930 +sg225232 +S'Albrecht D\xc3\xbcrer' +p226931 +sg225234 +S'woodcut' +p226932 +sg225236 +S'c. 1500' +p226933 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b21d.jpg' +p226934 +sg225240 +g27 +sa(dp226935 +g225230 +S'Saint Wolfgang' +p226936 +sg225232 +S'Albrecht D\xc3\xbcrer' +p226937 +sg225234 +S'woodcut' +p226938 +sg225236 +S'c. 1500' +p226939 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b21e.jpg' +p226940 +sg225240 +g27 +sa(dp226941 +g225230 +S'Saint Apollonia' +p226942 +sg225232 +S'Albrecht D\xc3\xbcrer' +p226943 +sg225234 +S'woodcut' +p226944 +sg225236 +S'c. 1500' +p226945 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b21f.jpg' +p226946 +sg225240 +g27 +sa(dp226947 +g225230 +S'Saint Odilia' +p226948 +sg225232 +S'Albrecht D\xc3\xbcrer' +p226949 +sg225234 +S'woodcut' +p226950 +sg225236 +S'c. 1500' +p226951 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b220.jpg' +p226952 +sg225240 +g27 +sa(dp226953 +g225230 +S'The Great View of Prague' +p226954 +sg225232 +S'Wenceslaus Hollar' +p226955 +sg225234 +S'etching' +p226956 +sg225236 +S'1649' +p226957 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00057/a00057ce.jpg' +p226958 +sg225240 +g27 +sa(dp226959 +g225232 +S'Artist Information (' +p226960 +sg225240 +g27 +sg225234 +S'(artist after)' +p226961 +sg225230 +S'Explication du dessein du Louvre' +p226962 +sg225236 +S'\n' +p226963 +sa(dp226964 +g225230 +S'Sitting Figure' +p226965 +sg225232 +S'Maurice Sterne' +p226966 +sg225234 +S'marble' +p226967 +sg225236 +S'1932' +p226968 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a00016b2.jpg' +p226969 +sg225240 +S"Inspired by a block of Greek marble pulled from the Tiber River near his Italian summer home, American Maurice Sterne allowed the marble's size and shape to determine the pose and gestures of \n Sterne sought, in both painting and sculpture, to combine the lessons of tradition with the contemporary artistic environment that surrounded him. With his choice of subject and material, and by refining and reducing the image to its most concentrated, expressive form, Sterne refers to archaic Greek sculpture. But rather than polish the stone to imitate skin or use a drill to fashion locks of hair (as tradition may have dictated), Sterne preferred the texture of the natural marble. He used few finishing tools and, with the exception of the roughly finished base, achieved a consistent texture for the figure.\n Sterne began his career as a draftsman and painter. From the beginning, critics recognized his deft use of line to describe the weight and volume of objects in his two-dimensional work. "[Sterne's] pictures convey something of the mass and weight which sculpture conveys," wrote one scholar. In Greece in 1908, he studied archaic Greek statues and was inspired to carve his first sculpture in stone. Several years later, he traveled to Bali to paint and sketch; it is thought he based \n " +p226970 +sa(dp226971 +g225230 +S'Memories' +p226972 +sg225232 +S'Frederick Carl Frieseke' +p226973 +sg225234 +S'oil on canvas' +p226974 +sg225236 +S'1915' +p226975 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d82.jpg' +p226976 +sg225240 +g27 +sa(dp226977 +g225230 +S'Imperator (Emperor)' +p226978 +sg225232 +S'Master of the E-Series Tarocchi' +p226979 +sg225234 +S'engraving with gilding' +p226980 +sg225236 +S'c. 1465' +p226981 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6d3.jpg' +p226982 +sg225240 +g27 +sa(dp226983 +g225230 +S'Caliope (Calliope)' +p226984 +sg225232 +S'Master of the E-Series Tarocchi' +p226985 +sg225234 +S'engraving with gilding' +p226986 +sg225236 +S'c. 1465' +p226987 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6d0.jpg' +p226988 +sg225240 +g27 +sa(dp226989 +g225230 +S'Urania' +p226990 +sg225232 +S'Master of the E-Series Tarocchi' +p226991 +sg225234 +S'engraving with gilding' +p226992 +sg225236 +S'c. 1465' +p226993 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6cf.jpg' +p226994 +sg225240 +g27 +sa(dp226995 +g225230 +S'Terpsicore (Terpsichore)' +p226996 +sg225232 +S'Master of the E-Series Tarocchi' +p226997 +sg225234 +S'engraving with gilding' +p226998 +sg225236 +S'c. 1465' +p226999 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6ce.jpg' +p227000 +sg225240 +g27 +sa(dp227001 +g225230 +S'Erato' +p227002 +sg225232 +S'Master of the E-Series Tarocchi' +p227003 +sg225234 +S'engraving with traces of gilding' +p227004 +sg225236 +S'c. 1465' +p227005 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6db.jpg' +p227006 +sg225240 +g27 +sa(dp227007 +g225230 +S'Polimnia (Polyhymnia)' +p227008 +sg225232 +S'Master of the E-Series Tarocchi' +p227009 +sg225234 +S'engraving with gilding' +p227010 +sg225236 +S'c. 1465' +p227011 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6dd.jpg' +p227012 +sg225240 +g27 +sa(dp227013 +g225230 +S'Talia (Thalia)' +p227014 +sg225232 +S'Master of the E-Series Tarocchi' +p227015 +sg225234 +S'engraving with traces of gilding' +p227016 +sg225236 +S'c. 1465' +p227017 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6df.jpg' +p227018 +sg225240 +g27 +sa(dp227019 +g225230 +S'Melpomene' +p227020 +sg225232 +S'Master of the E-Series Tarocchi' +p227021 +sg225234 +S'engraving with traces of gilding' +p227022 +sg225236 +S'c. 1465' +p227023 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6e1.jpg' +p227024 +sg225240 +g27 +sa(dp227025 +g225230 +S'Euterpe' +p227026 +sg225232 +S'Master of the E-Series Tarocchi' +p227027 +sg225234 +S'engraving with gilding' +p227028 +sg225236 +S'c. 1465' +p227029 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6e2.jpg' +p227030 +sg225240 +g27 +sa(dp227031 +g225230 +S'Clio' +p227032 +sg225232 +S'Master of the E-Series Tarocchi' +p227033 +sg225234 +S'engraving with traces of gilding' +p227034 +sg225236 +S'c. 1465' +p227035 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6e3.jpg' +p227036 +sg225240 +g27 +sa(dp227037 +g225230 +S'Cosmico (Genius of the World)' +p227038 +sg225232 +S'Master of the E-Series Tarocchi' +p227039 +sg225234 +S'engraving with traces of gilding' +p227040 +sg225236 +S'c. 1465' +p227041 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6ec.jpg' +p227042 +sg225240 +g27 +sa(dp227043 +g225230 +S'Charita (Charity)' +p227044 +sg225232 +S'Master of the E-Series Tarocchi' +p227045 +sg225234 +S'engraving with traces of gilding' +p227046 +sg225236 +S'c. 1465' +p227047 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6e7.jpg' +p227048 +sg225240 +g27 +sa(dp227049 +g225230 +S'Speranza (Hope)' +p227050 +sg225232 +S'Master of the E-Series Tarocchi' +p227051 +sg225234 +S'engraving with traces of gilding' +p227052 +sg225236 +S'c. 1465' +p227053 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6f5.jpg' +p227054 +sg225240 +g27 +sa(dp227055 +g225230 +S'Fede (Faith)' +p227056 +sg225232 +S'Master of the E-Series Tarocchi' +p227057 +sg225234 +S'engraving with gilding' +p227058 +sg225236 +S'c. 1465' +p227059 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6f6.jpg' +p227060 +sg225240 +g27 +sa(dp227061 +g225230 +S'Luna (Moon)' +p227062 +sg225232 +S'Master of the E-Series Tarocchi' +p227063 +sg225234 +S'engraving with gilding' +p227064 +sg225236 +S'c. 1465' +p227065 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6f7.jpg' +p227066 +sg225240 +g27 +sa(dp227067 +g225230 +S'Mercurio (Mercury)' +p227068 +sg225232 +S'Master of the E-Series Tarocchi' +p227069 +sg225234 +S'engraving with gilding' +p227070 +sg225236 +S'c. 1465' +p227071 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6f9.jpg' +p227072 +sg225240 +g27 +sa(dp227073 +g225230 +S'Sol (Sun)' +p227074 +sg225232 +S'Master of the E-Series Tarocchi' +p227075 +sg225234 +S'engraving with gilding' +p227076 +sg225236 +S'c. 1465' +p227077 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6fa.jpg' +p227078 +sg225240 +g27 +sa(dp227079 +g225230 +S'Marte (Mars)' +p227080 +sg225232 +S'Master of the E-Series Tarocchi' +p227081 +sg225234 +S'engraving with gilding' +p227082 +sg225236 +S'c. 1465' +p227083 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6fb.jpg' +p227084 +sg225240 +g27 +sa(dp227085 +g225230 +S'Iupiter (Jupiter)' +p227086 +sg225232 +S'Master of the E-Series Tarocchi' +p227087 +sg225234 +S'engraving with gilding' +p227088 +sg225236 +S'c. 1465' +p227089 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6fc.jpg' +p227090 +sg225240 +g27 +sa(dp227091 +g225230 +S'Saturno (Saturn)' +p227092 +sg225232 +S'Master of the E-Series Tarocchi' +p227093 +sg225234 +S'engraving with traces of gilding' +p227094 +sg225236 +S'c. 1465' +p227095 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6fd.jpg' +p227096 +sg225240 +g27 +sa(dp227097 +g225230 +S'Octava Spera (Eighth Sphere)' +p227098 +sg225232 +S'Master of the E-Series Tarocchi' +p227099 +sg225234 +S'engraving with gilding' +p227100 +sg225236 +S'c. 1465' +p227101 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6fe.jpg' +p227102 +sg225240 +g27 +sa(dp227103 +g225230 +S'Primo Mobile (Prime Mover)' +p227104 +sg225232 +S'Master of the E-Series Tarocchi' +p227105 +sg225234 +S'engraving with traces of gilding' +p227106 +sg225236 +S'c. 1465' +p227107 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6ff.jpg' +p227108 +sg225240 +g27 +sa(dp227109 +g225230 +S'Prima Causa (First Cause)' +p227110 +sg225232 +S'Master of the E-Series Tarocchi' +p227111 +sg225234 +S'engraving with light gilding' +p227112 +sg225236 +S'c. 1465' +p227113 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c700.jpg' +p227114 +sg225240 +g27 +sa(dp227115 +g225230 +S'Lion' +p227116 +sg225232 +S'Sir Peter Paul Rubens' +p227117 +sg225234 +S'black chalk, heightened with white, yellow chalk in the background' +p227118 +sg225236 +S'c. 1612-1613' +p227119 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e3e.jpg' +p227120 +sg225240 +g27 +sa(dp227121 +g225232 +S'Kathleen Spagnolo' +p227122 +sg225230 +S"Saddler's Work Bench" +p227123 +sg225240 +g27 +sa(dp227124 +g225232 +S'Artist Information (' +p227125 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Torso of Aphrodite' +p227126 +sg225236 +S'(sculptor)' +p227127 +sa(dp227128 +g225230 +S'Mlle Charlotte Berthier' +p227129 +sg225232 +S'Auguste Renoir' +p227130 +sg225234 +S'oil on canvas' +p227131 +sg225236 +S'1883' +p227132 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a000070d.jpg' +p227133 +sg225240 +g27 +sa(dp227134 +g225232 +S'Charles Despiau' +p227135 +sg225240 +g27 +sg225234 +S'terracotta' +p227136 +sg225230 +S'Mlle Dominique Jean\xc3\xa8s' +p227137 +sg225236 +S'1925' +p227138 +sa(dp227139 +g225230 +S'Storm-Tossed Frigate' +p227140 +sg225232 +S'Thomas Chambers' +p227141 +sg225234 +S'oil on canvas' +p227142 +sg225236 +S'mid 19th century' +p227143 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001ad.jpg' +p227144 +sg225240 +g27 +sa(dp227145 +g225230 +S'Composite Harbor Scene with Castle' +p227146 +sg225232 +S'Jurgan Frederick Huge' +p227147 +sg225234 +S'oil on canvas' +p227148 +sg225236 +S'c. 1875' +p227149 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000109.jpg' +p227150 +sg225240 +g27 +sa(dp227151 +g225230 +S'Archery Contest' +p227152 +sg225232 +S'Chinese Qing Dynasty' +p227153 +sg225234 +S'overall: 77.8 x 110.8 cm (30 5/8 x 43 5/8 in.)\r\nframed: 94 x 128.6 x 5.1 cm (37 x 50 5/8 x 2 in.)' +p227154 +sg225236 +S'\noil on cotton' +p227155 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004e41.jpg' +p227156 +sg225240 +g27 +sa(dp227157 +g225230 +S'Procession by a Lake' +p227158 +sg225232 +S'Chinese Qing Dynasty' +p227159 +sg225234 +S'overall: 76.2 x 111.8 cm (30 x 44 in.)\r\nframed: 92.7 x 128.3 x 5.1 cm (36 1/2 x 50 1/2 x 2 in.)' +p227160 +sg225236 +S'\noil on fabric' +p227161 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00021/a0002100.jpg' +p227162 +sg225240 +g27 +sa(dp227163 +g225232 +S'Enrico Baj' +p227164 +sg225240 +g27 +sg225234 +S'collage on tapestry' +p227165 +sg225230 +S'Furniture Style' +p227166 +sg225236 +S'1961' +p227167 +sa(dp227168 +g225232 +S'Enrico Baj' +p227169 +sg225240 +g27 +sg225234 +S'collage on tapestry' +p227170 +sg225230 +S'When I Was Young' +p227171 +sg225236 +S'1951' +p227172 +sa(dp227173 +g225230 +S'Landscape' +p227174 +sg225232 +S'Artist Information (' +p227175 +sg225234 +S'Dutch, 1853 - 1890' +p227176 +sg225236 +S'(related artist)' +p227177 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00055/a000554f.jpg' +p227178 +sg225240 +g27 +sa(dp227179 +g225230 +S'Jacques Callot' +p227180 +sg225232 +S'Abraham Bosse' +p227181 +sg225234 +S'etching' +p227182 +sg225236 +S'in or after 1635' +p227183 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a6a.jpg' +p227184 +sg225240 +g27 +sa(dp227185 +g225230 +S'Noble Woman with a Small Hat' +p227186 +sg225232 +S'Artist Information (' +p227187 +sg225234 +S'French, 1592 - 1635' +p227188 +sg225236 +S'(artist after)' +p227189 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008959.jpg' +p227190 +sg225240 +g27 +sa(dp227191 +g225230 +S'Noble Man with Felt Hat, Bowing' +p227192 +sg225232 +S'Artist Information (' +p227193 +sg225234 +S'French, 1592 - 1635' +p227194 +sg225236 +S'(artist after)' +p227195 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000895a.jpg' +p227196 +sg225240 +g27 +sa(dp227197 +g225230 +S'Six Men and Women Beggars' +p227198 +sg225232 +S'Artist Information (' +p227199 +sg225234 +S'(artist after)' +p227200 +sg225236 +S'\n' +p227201 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000db/a000db11.jpg' +p227202 +sg225240 +g27 +sa(dp227203 +g225230 +S'Eight Beggars' +p227204 +sg225232 +S'Artist Information (' +p227205 +sg225234 +S'(artist after)' +p227206 +sg225236 +S'\n' +p227207 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000db/a000db12.jpg' +p227208 +sg225240 +g27 +sa(dp227209 +g225230 +S'Men and Women Beggars' +p227210 +sg225232 +S'Artist Information (' +p227211 +sg225234 +S'(artist after)' +p227212 +sg225236 +S'\n' +p227213 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000db/a000db13.jpg' +p227214 +sg225240 +g27 +sa(dp227215 +g225230 +S"Catherine Kuttinger, Callot's Wife" +p227216 +sg225232 +S'Israel Henriet' +p227217 +sg225234 +S'etching' +p227218 +sg225236 +S'unknown date\n' +p227219 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088fb.jpg' +p227220 +sg225240 +g27 +sa(dp227221 +g225230 +S'Title Page for "Various Landscapes"' +p227222 +sg225232 +S'Artist Information (' +p227223 +sg225234 +S'French, 1592 - 1635' +p227224 +sg225236 +S'(artist after)' +p227225 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008974.jpg' +p227226 +sg225240 +g27 +sa(dp227227 +g225230 +S'River Bank' +p227228 +sg225232 +S'Artist Information (' +p227229 +sg225234 +S'French, 1592 - 1635' +p227230 +sg225236 +S'(artist after)' +p227231 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008971.jpg' +p227232 +sg225240 +g27 +sa(dp227233 +g225230 +S'Subtitle for "Various Landscapes"' +p227234 +sg225232 +S'Artist Information (' +p227235 +sg225234 +S'French, 1592 - 1635' +p227236 +sg225236 +S'(artist after)' +p227237 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000896e.jpg' +p227238 +sg225240 +g27 +sa(dp227239 +g225230 +S'View of Nancy' +p227240 +sg225232 +S'Artist Information (' +p227241 +sg225234 +S'French, 1592 - 1635' +p227242 +sg225236 +S'(artist after)' +p227243 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008999.jpg' +p227244 +sg225240 +g27 +sa(dp227245 +g225230 +S'Village Church' +p227246 +sg225232 +S'Artist Information (' +p227247 +sg225234 +S'French, 1592 - 1635' +p227248 +sg225236 +S'(artist after)' +p227249 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000899a.jpg' +p227250 +sg225240 +g27 +sa(dp227251 +g225230 +S'A Church' +p227252 +sg225232 +S'Artist Information (' +p227253 +sg225234 +S'French, 1592 - 1635' +p227254 +sg225236 +S'(artist after)' +p227255 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008975.jpg' +p227256 +sg225240 +g27 +sa(dp227257 +g225230 +S'The Grain Weighers' +p227258 +sg225232 +S'Jacques Callot' +p227259 +sg225234 +S'engraving' +p227260 +sg225236 +S'1608/1611' +p227261 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a93.jpg' +p227262 +sg225240 +g27 +sa(dp227263 +g225230 +S"Francesco de' Medici" +p227264 +sg225232 +S'Jacques Callot' +p227265 +sg225234 +S'engraving' +p227266 +sg225236 +S'probably 1614' +p227267 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000845a.jpg' +p227268 +sg225240 +g27 +sa(dp227269 +g225230 +S'The Possessed' +p227270 +sg225232 +S'Artist Information (' +p227271 +sg225234 +S'(artist after)' +p227272 +sg225236 +S'\n' +p227273 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a89.jpg' +p227274 +sg225240 +g27 +sa(dp227275 +g225230 +S'The Marriage of Ferdinando and Christine of Lorraine' +p227276 +sg225232 +S'Jacques Callot' +p227277 +sg225234 +S'engraving' +p227278 +sg225236 +S'c. 1614' +p227279 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a8c.jpg' +p227280 +sg225240 +g27 +sa(dp227281 +g225230 +S'The Defeat of the Turkish Cavalry' +p227282 +sg225232 +S'Jacques Callot' +p227283 +sg225234 +S'engraving' +p227284 +sg225236 +S'c. 1614' +p227285 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a98.jpg' +p227286 +sg225240 +g27 +sa(dp227287 +g225230 +S'The First Naval Battle' +p227288 +sg225232 +S'Jacques Callot' +p227289 +sg225234 +S'engraving' +p227290 +sg225236 +S'c. 1614' +p227291 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aa0.jpg' +p227292 +sg225240 +g27 +sa(dp227293 +g225230 +S'Floats and Participants' +p227294 +sg225232 +S'Jacques Callot' +p227295 +sg225234 +S'etching' +p227296 +sg225236 +S'1616' +p227297 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aad.jpg' +p227298 +sg225240 +g27 +sa(dp227299 +g225230 +S'Parade in the Amphitheater' +p227300 +sg225232 +S'Jacques Callot' +p227301 +sg225234 +S'etching' +p227302 +sg225236 +S'1616' +p227303 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aaa.jpg' +p227304 +sg225240 +g27 +sa(dp227305 +g225230 +S'One of the Infantry Combats' +p227306 +sg225232 +S'Jacques Callot' +p227307 +sg225234 +S'etching' +p227308 +sg225236 +S'1616' +p227309 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aab.jpg' +p227310 +sg225240 +g27 +sa(dp227311 +g225230 +S'Two Zanni' +p227312 +sg225232 +S'Jacques Callot' +p227313 +sg225234 +S'etching' +p227314 +sg225236 +S'c. 1616' +p227315 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000840f.jpg' +p227316 +sg225240 +g27 +sa(dp227317 +g225230 +S'The Float of Mount Parnassus' +p227318 +sg225232 +S'Jacques Callot' +p227319 +sg225234 +S'etching' +p227320 +sg225236 +S'1616' +p227321 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aa4.jpg' +p227322 +sg225240 +g27 +sa(dp227323 +g225230 +S'The Float of Thetis' +p227324 +sg225232 +S'Jacques Callot' +p227325 +sg225234 +S'etching' +p227326 +sg225236 +S'1616' +p227327 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aa5.jpg' +p227328 +sg225240 +g27 +sa(dp227329 +g225230 +S'The Float of the Sun' +p227330 +sg225232 +S'Jacques Callot' +p227331 +sg225234 +S'etching' +p227332 +sg225236 +S'1616' +p227333 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aa6.jpg' +p227334 +sg225240 +g27 +sa(dp227335 +g225230 +S'The Float of Love' +p227336 +sg225232 +S'Jacques Callot' +p227337 +sg225234 +S'etching' +p227338 +sg225236 +S'1616' +p227339 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ab4.jpg' +p227340 +sg225240 +g27 +sa(dp227341 +g225230 +S'View of the Festival' +p227342 +sg225232 +S'Jacques Callot' +p227343 +sg225234 +S'etching' +p227344 +sg225236 +S'1616' +p227345 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ab0.jpg' +p227346 +sg225240 +g27 +sa(dp227347 +g225230 +S'First Intermezzo' +p227348 +sg225232 +S'Jacques Callot' +p227349 +sg225234 +S'etching' +p227350 +sg225236 +S'1617' +p227351 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ab1.jpg' +p227352 +sg225240 +g27 +sa(dp227353 +g225230 +S'Second Intermezzo' +p227354 +sg225232 +S'Jacques Callot' +p227355 +sg225234 +S'etching' +p227356 +sg225236 +S'1617' +p227357 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ab2.jpg' +p227358 +sg225240 +g27 +sa(dp227359 +g225230 +S'Third Intermezzo' +p227360 +sg225232 +S'Jacques Callot' +p227361 +sg225234 +S'etching' +p227362 +sg225236 +S'1617' +p227363 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ab3.jpg' +p227364 +sg225240 +g27 +sa(dp227365 +g225230 +S'The Garden' +p227366 +sg225232 +S'Artist Information (' +p227367 +sg225234 +S'French, 1592 - 1635' +p227368 +sg225236 +S'(related artist)' +p227369 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a00084fd.jpg' +p227370 +sg225240 +g27 +sa(dp227371 +g225230 +S'The Dovecot' +p227372 +sg225232 +S'Artist Information (' +p227373 +sg225234 +S'French, 1592 - 1635' +p227374 +sg225236 +S'(related artist)' +p227375 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a00084f7.jpg' +p227376 +sg225240 +g27 +sa(dp227377 +g225230 +S'The Watermill' +p227378 +sg225232 +S'Artist Information (' +p227379 +sg225234 +S'French, 1592 - 1635' +p227380 +sg225236 +S'(related artist)' +p227381 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a00084fc.jpg' +p227382 +sg225240 +g27 +sa(dp227383 +g225230 +S'The Small Port' +p227384 +sg225232 +S'Artist Information (' +p227385 +sg225234 +S'French, 1592 - 1635' +p227386 +sg225236 +S'(related artist)' +p227387 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a00084fe.jpg' +p227388 +sg225240 +g27 +sa(dp227389 +g225230 +S'The Walk by the Water' +p227390 +sg225232 +S'Jacques Callot' +p227391 +sg225234 +S'etching' +p227392 +sg225236 +S'probably c. 1630' +p227393 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a00084ef.jpg' +p227394 +sg225240 +g27 +sa(dp227395 +g225230 +S'Loading Merchandise' +p227396 +sg225232 +S'Jacques Callot' +p227397 +sg225234 +S'etching' +p227398 +sg225236 +S'probably c. 1630' +p227399 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a00084f3.jpg' +p227400 +sg225240 +g27 +sa(dp227401 +g225230 +S'The Bathers' +p227402 +sg225232 +S'Jacques Callot' +p227403 +sg225234 +S'etching' +p227404 +sg225236 +S'probably c. 1630' +p227405 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a00084ee.jpg' +p227406 +sg225240 +g27 +sa(dp227407 +g225230 +S'The Stag Hunt' +p227408 +sg225232 +S'Jacques Callot' +p227409 +sg225234 +S'etching' +p227410 +sg225236 +S'probably c. 1630' +p227411 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a00084f2.jpg' +p227412 +sg225240 +g27 +sa(dp227413 +g225230 +S'Hunting Birds' +p227414 +sg225232 +S'Jacques Callot' +p227415 +sg225234 +S'etching' +p227416 +sg225236 +S'probably c. 1630' +p227417 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a00084f5.jpg' +p227418 +sg225240 +g27 +sa(dp227419 +g225230 +S'Returning Home from the Hunt' +p227420 +sg225232 +S'Jacques Callot' +p227421 +sg225234 +S'etching' +p227422 +sg225236 +S'probably c. 1630' +p227423 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a00084f4.jpg' +p227424 +sg225240 +g27 +sa(dp227425 +g225230 +S'The Watermill' +p227426 +sg225232 +S'Jacques Callot' +p227427 +sg225234 +S'etching' +p227428 +sg225236 +S'probably c. 1630' +p227429 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a00084f6.jpg' +p227430 +sg225240 +g27 +sa(dp227431 +g225230 +S'The Small Port' +p227432 +sg225232 +S'Jacques Callot' +p227433 +sg225234 +S'etching' +p227434 +sg225236 +S'probably c. 1630' +p227435 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000850e.jpg' +p227436 +sg225240 +g27 +sa(dp227437 +g225230 +S'The Large Rock' +p227438 +sg225232 +S'Jacques Callot' +p227439 +sg225234 +S'etching' +p227440 +sg225236 +S'probably c. 1630' +p227441 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000850d.jpg' +p227442 +sg225240 +g27 +sa(dp227443 +g225230 +S'The Naval Battle' +p227444 +sg225232 +S'Jacques Callot' +p227445 +sg225234 +S'etching' +p227446 +sg225236 +S'probably c. 1630' +p227447 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000850c.jpg' +p227448 +sg225240 +g27 +sa(dp227449 +g225230 +S'The Massacre of the Innocents' +p227450 +sg225232 +S'Jacques Callot' +p227451 +sg225234 +S'etching' +p227452 +sg225236 +S'c. 1618/1620' +p227453 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008500.jpg' +p227454 +sg225240 +g27 +sa(dp227455 +g225230 +S'The Little Farm' +p227456 +sg225232 +S'Jacques Callot' +p227457 +sg225234 +S'etching' +p227458 +sg225236 +S'possibly c. 1617' +p227459 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a00084ff.jpg' +p227460 +sg225240 +g27 +sa(dp227461 +g225230 +S"Christ Washing the Apostles' Feet" +p227462 +sg225232 +S'Jacques Callot' +p227463 +sg225234 +S'etching and engraving' +p227464 +sg225236 +S'c. 1618' +p227465 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008506.jpg' +p227466 +sg225240 +g27 +sa(dp227467 +g225230 +S'The Last Supper' +p227468 +sg225232 +S'Jacques Callot' +p227469 +sg225234 +S'etching and engraving' +p227470 +sg225236 +S'c. 1618' +p227471 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008508.jpg' +p227472 +sg225240 +g27 +sa(dp227473 +g225230 +S'The Condemnation to Death' +p227474 +sg225232 +S'Jacques Callot' +p227475 +sg225234 +S'etching and engraving' +p227476 +sg225236 +S'c. 1618' +p227477 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008507.jpg' +p227478 +sg225240 +g27 +sa(dp227479 +g225230 +S'The Crowning with Thorns' +p227480 +sg225232 +S'Jacques Callot' +p227481 +sg225234 +S'etching and engraving' +p227482 +sg225236 +S'c. 1618' +p227483 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008504.jpg' +p227484 +sg225240 +g27 +sa(dp227485 +g225230 +S'The Ecce Homo' +p227486 +sg225232 +S'Jacques Callot' +p227487 +sg225234 +S'etching and engraving' +p227488 +sg225236 +S'c. 1618' +p227489 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000851a.jpg' +p227490 +sg225240 +g27 +sa(dp227491 +g225230 +S'The Carrying of the Cross' +p227492 +sg225232 +S'Jacques Callot' +p227493 +sg225234 +S'etching and engraving' +p227494 +sg225236 +S'c. 1618' +p227495 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008519.jpg' +p227496 +sg225240 +g27 +sa(dp227497 +g225230 +S'The Nailing to the Cross' +p227498 +sg225232 +S'Jacques Callot' +p227499 +sg225234 +S'etching and engraving' +p227500 +sg225236 +S'c. 1618' +p227501 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000851b.jpg' +p227502 +sg225240 +g27 +sa(dp227503 +g225230 +S'Pantalone' +p227504 +sg225232 +S'Jacques Callot' +p227505 +sg225234 +S'etching and engraving' +p227506 +sg225236 +S'1618/1620' +p227507 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008513.jpg' +p227508 +sg225240 +g27 +sa(dp227509 +g225230 +S"Il Capitano, or L'Innamorato" +p227510 +sg225232 +S'Jacques Callot' +p227511 +sg225234 +S'etching and engraving' +p227512 +sg225236 +S'1618/1620' +p227513 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008514.jpg' +p227514 +sg225240 +g27 +sa(dp227515 +g225230 +S'Zanni' +p227516 +sg225232 +S'Jacques Callot' +p227517 +sg225234 +S'etching and engraving' +p227518 +sg225236 +S'1618/1620' +p227519 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008515.jpg' +p227520 +sg225240 +g27 +sa(dp227521 +g225230 +S"Donato Dell' Antella" +p227522 +sg225232 +S'Jacques Callot' +p227523 +sg225234 +S'etching' +p227524 +sg225236 +S'1619' +p227525 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ab6.jpg' +p227526 +sg225240 +g27 +sa(dp227527 +g225230 +S'The Catafalque of the Emperor Mathias' +p227528 +sg225232 +S'Jacques Callot' +p227529 +sg225234 +S'etching and engraving' +p227530 +sg225236 +S'1619' +p227531 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008abd.jpg' +p227532 +sg225240 +g27 +sa(dp227533 +g225230 +S'The Fair at Impruneta' +p227534 +sg225232 +S'Jacques Callot' +p227535 +sg225234 +S'etching' +p227536 +sg225236 +S'1620' +p227537 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b9d.jpg' +p227538 +sg225240 +g27 +sa(dp227539 +g225230 +S'Solimano, Act I' +p227540 +sg225232 +S'Jacques Callot' +p227541 +sg225234 +S'etching and engraving' +p227542 +sg225236 +S'1620' +p227543 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008acc.jpg' +p227544 +sg225240 +g27 +sa(dp227545 +g225230 +S'Solimano, Act II' +p227546 +sg225232 +S'Jacques Callot' +p227547 +sg225234 +S'etching and engraving' +p227548 +sg225236 +S'1620' +p227549 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ac8.jpg' +p227550 +sg225240 +g27 +sa(dp227551 +g225230 +S'Solimano, Act III' +p227552 +sg225232 +S'Jacques Callot' +p227553 +sg225234 +S'etching and engraving' +p227554 +sg225236 +S'1620' +p227555 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008acb.jpg' +p227556 +sg225240 +g27 +sa(dp227557 +g225230 +S'Solimano, Act IV' +p227558 +sg225232 +S'Jacques Callot' +p227559 +sg225234 +S'etching and engraving' +p227560 +sg225236 +S'1620' +p227561 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ad2.jpg' +p227562 +sg225240 +g27 +sa(dp227563 +g225230 +S"Cosimo II de' Medici, Grand Duke of Tuscany" +p227564 +sg225232 +S'Jacques Callot' +p227565 +sg225234 +S'etching and engraving' +p227566 +sg225236 +S'1621' +p227567 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008548.jpg' +p227568 +sg225240 +g27 +sa(dp227569 +g225230 +S'Smaralo Cornuto and Ratsa di Boio' +p227570 +sg225232 +S'Jacques Callot' +p227571 +sg225234 +S'etching' +p227572 +sg225236 +S'c. 1622' +p227573 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000855d.jpg' +p227574 +sg225240 +g27 +sa(dp227575 +g225230 +S'Scaramucia and Fricasso' +p227576 +sg225232 +S'Jacques Callot' +p227577 +sg225234 +S'etching' +p227578 +sg225236 +S'c. 1622' +p227579 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008572.jpg' +p227580 +sg225240 +g27 +sa(dp227581 +g225230 +S'Scapino and Cap. Zerbino' +p227582 +sg225232 +S'Jacques Callot' +p227583 +sg225234 +S'etching' +p227584 +sg225236 +S'c. 1622' +p227585 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008573.jpg' +p227586 +sg225240 +g27 +sa(dp227587 +g225230 +S'Bello Sguardo and Coviello' +p227588 +sg225232 +S'Jacques Callot' +p227589 +sg225234 +S'etching' +p227590 +sg225236 +S'c. 1622' +p227591 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008498.jpg' +p227592 +sg225240 +g27 +sa(dp227593 +g225230 +S'Solimano, Act V' +p227594 +sg225232 +S'Jacques Callot' +p227595 +sg225234 +S'etching and engraving' +p227596 +sg225236 +S'1620' +p227597 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ad5.jpg' +p227598 +sg225240 +g27 +sa(dp227599 +g225230 +S'Franca Trippa and Fritellino' +p227600 +sg225232 +S'Jacques Callot' +p227601 +sg225234 +S'etching' +p227602 +sg225236 +S'c. 1622' +p227603 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000844b.jpg' +p227604 +sg225240 +g27 +sa(dp227605 +g225230 +S'The Massacre of the Innocents' +p227606 +sg225232 +S'Jacques Callot' +p227607 +sg225234 +S'etching' +p227608 +sg225236 +S'c. 1622' +p227609 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085b0.jpg' +p227610 +sg225240 +g27 +sa(dp227611 +g225230 +S'Piazza SS. Annunziata, Florence' +p227612 +sg225232 +S'Jacques Callot' +p227613 +sg225234 +S'etching' +p227614 +sg225236 +S'c. 1622' +p227615 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085e0.jpg' +p227616 +sg225240 +g27 +sa(dp227617 +g225230 +S'Fireworks on the Arno, Florence' +p227618 +sg225232 +S'Jacques Callot' +p227619 +sg225234 +S'etching' +p227620 +sg225236 +S'c. 1622' +p227621 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085e1.jpg' +p227622 +sg225240 +g27 +sa(dp227623 +g225230 +S'Piazza Santa Maria Novella, Florence' +p227624 +sg225232 +S'Jacques Callot' +p227625 +sg225234 +S'etching' +p227626 +sg225236 +S'c. 1622' +p227627 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085e8.jpg' +p227628 +sg225240 +g27 +sa(dp227629 +g225230 +S'Piazza Presso alla Porta al Prato' +p227630 +sg225232 +S'Jacques Callot' +p227631 +sg225234 +S'etching' +p227632 +sg225236 +S'c. 1622' +p227633 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085e3.jpg' +p227634 +sg225240 +g27 +sa(dp227635 +g225230 +S'Captain of the Barons' +p227636 +sg225232 +S'Jacques Callot' +p227637 +sg225234 +S'etching' +p227638 +sg225236 +S'c. 1622' +p227639 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008653.jpg' +p227640 +sg225240 +g27 +sa(dp227641 +g225230 +S'Louis de Lorraine, Prince of Phalsbourg' +p227642 +sg225232 +S'Jacques Callot' +p227643 +sg225234 +S'etching and engraving' +p227644 +sg225236 +S'c. 1621/1623' +p227645 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008adc.jpg' +p227646 +sg225240 +g27 +sa(dp227647 +g225230 +S'Noble Woman with a Small Hat' +p227648 +sg225232 +S'Jacques Callot' +p227649 +sg225234 +S'etching' +p227650 +sg225236 +S'c. 1620/1623' +p227651 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000868c.jpg' +p227652 +sg225240 +g27 +sa(dp227653 +g225230 +S'Noble Man with Felt Hat, Bowing' +p227654 +sg225232 +S'Jacques Callot' +p227655 +sg225234 +S'etching' +p227656 +sg225236 +S'c. 1620/1623' +p227657 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008690.jpg' +p227658 +sg225240 +g27 +sa(dp227659 +g225230 +S'Soldier with Feathered Hat' +p227660 +sg225232 +S'Jacques Callot' +p227661 +sg225234 +S'etching' +p227662 +sg225236 +S'c. 1620/1623' +p227663 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008691.jpg' +p227664 +sg225240 +g27 +sa(dp227665 +g225230 +S'Masked Noble Woman' +p227666 +sg225232 +S'Jacques Callot' +p227667 +sg225234 +S'etching' +p227668 +sg225236 +S'c. 1620/1623' +p227669 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000869e.jpg' +p227670 +sg225240 +g27 +sa(dp227671 +g225230 +S'The Fair at Xeuilley' +p227672 +sg225232 +S'Jacques Callot' +p227673 +sg225234 +S'etching' +p227674 +sg225236 +S'unknown date\n' +p227675 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008adb.jpg' +p227676 +sg225240 +g27 +sa(dp227677 +g225230 +S'The Palace Gardens at Nancy' +p227678 +sg225232 +S'Jacques Callot' +p227679 +sg225234 +S'etching' +p227680 +sg225236 +S'1625' +p227681 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008add.jpg' +p227682 +sg225240 +g27 +sa(dp227683 +g225230 +S'Frontispiece for "The Combat at the Barrier"' +p227684 +sg225232 +S'Jacques Callot' +p227685 +sg225234 +S'etching and engraving' +p227686 +sg225236 +S'1627' +p227687 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086ae.jpg' +p227688 +sg225240 +g27 +sa(dp227689 +g225230 +S'Entry of the Prince of Pfaltzbourg' +p227690 +sg225232 +S'Jacques Callot' +p227691 +sg225234 +S'etching' +p227692 +sg225236 +S'1627' +p227693 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086b1.jpg' +p227694 +sg225240 +g27 +sa(dp227695 +g225230 +S'Entry of M. de Macey' +p227696 +sg225232 +S'Jacques Callot' +p227697 +sg225234 +S'etching' +p227698 +sg225236 +S'1627' +p227699 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085fb.jpg' +p227700 +sg225240 +g27 +sa(dp227701 +g225230 +S'Entry of Mm. de Vroncourt, Tyllon, and Marimont' +p227702 +sg225232 +S'Jacques Callot' +p227703 +sg225234 +S'etching' +p227704 +sg225236 +S'1627' +p227705 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085fa.jpg' +p227706 +sg225240 +g27 +sa(dp227707 +g225230 +S'Entry of M. de Couvonge and M. de Chalabre' +p227708 +sg225232 +S'Jacques Callot' +p227709 +sg225234 +S'etching' +p227710 +sg225236 +S'1627' +p227711 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085ff.jpg' +p227712 +sg225240 +g27 +sa(dp227713 +g225230 +S'Entry of M. le Comte de Brionne, Grand Chamberlain of His Highness,Representing Jason' +p227714 +sg225232 +S'Jacques Callot' +p227715 +sg225234 +S'etching' +p227716 +sg225236 +S'1627' +p227717 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085fe.jpg' +p227718 +sg225240 +g27 +sa(dp227719 +g225230 +S'Entry of Monseigneur Henry de Lorraine, Marquis de Moy, under the Name of Pirandre' +p227720 +sg225232 +S'Jacques Callot' +p227721 +sg225234 +S'etching' +p227722 +sg225236 +S'1627' +p227723 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085fc.jpg' +p227724 +sg225240 +g27 +sa(dp227725 +g225230 +S'Entry of His Highness, Representing the Sun' +p227726 +sg225232 +S'Jacques Callot' +p227727 +sg225234 +S'etching' +p227728 +sg225236 +S'1627' +p227729 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085fd.jpg' +p227730 +sg225240 +g27 +sa(dp227731 +g225230 +S'Entry of His Highness on Foot' +p227732 +sg225232 +S'Jacques Callot' +p227733 +sg225234 +S'etching' +p227734 +sg225236 +S'1627' +p227735 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086b4.jpg' +p227736 +sg225240 +g27 +sa(dp227737 +g225230 +S'Combat at the Barrier' +p227738 +sg225232 +S'Jacques Callot' +p227739 +sg225234 +S'etching' +p227740 +sg225236 +S'1627' +p227741 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086b5.jpg' +p227742 +sg225240 +g27 +sa(dp227743 +g225230 +S'Entry of M. de Couvonge and M. de Chalabre [extra plate]' +p227744 +sg225232 +S'Jacques Callot' +p227745 +sg225234 +S'etching' +p227746 +sg225236 +S'1627' +p227747 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086b6.jpg' +p227748 +sg225240 +g27 +sa(dp227749 +g225230 +S'Entry of Monseigneur Henry de Lorraine, Marquis de Moy, under the Name of Pirandre' +p227750 +sg225232 +S'Jacques Callot' +p227751 +sg225234 +S'etching//plate cut into six pieces (1969.15.96-101): this piece is part 1 of 6' +p227752 +sg225236 +S'1627' +p227753 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086be.jpg' +p227754 +sg225240 +g27 +sa(dp227755 +g225230 +S'Entry of Monseigneur Henry de Lorraine, Marquis de Moy, under the Name of Pirandre' +p227756 +sg225232 +S'Jacques Callot' +p227757 +sg225234 +S'etching//plate cut into six pieces (1969.15.96-101): this piece is part 2 of 6' +p227758 +sg225236 +S'1627' +p227759 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086bc.jpg' +p227760 +sg225240 +g27 +sa(dp227761 +g225230 +S'Entry of Monseigneur Henry de Lorraine, Marquis de Moy, under the Name of Pirandre' +p227762 +sg225232 +S'Jacques Callot' +p227763 +sg225234 +S'etching//plate cut into six pieces (1969.15.96-101): this piece is part 3 of 6' +p227764 +sg225236 +S'1627' +p227765 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086bd.jpg' +p227766 +sg225240 +g27 +sa(dp227767 +g225230 +S'Entry of Monseigneur Henry de Lorraine, Marquis de Moy, under the Name of Pirandre' +p227768 +sg225232 +S'Jacques Callot' +p227769 +sg225234 +S'etching//plate cut into six pieces (1969.15.96-101): this piece is part 4 of 6' +p227770 +sg225236 +S'1627' +p227771 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086bf.jpg' +p227772 +sg225240 +g27 +sa(dp227773 +g225230 +S'Entry of Monseigneur Henry de Lorraine, Marquis de Moy, under the Name of Pirandre' +p227774 +sg225232 +S'Jacques Callot' +p227775 +sg225234 +S'etching//plate cut into six pieces (1969.15.96-101): this piece is part 5 of 6' +p227776 +sg225236 +S'1627' +p227777 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086c1.jpg' +p227778 +sg225240 +g27 +sa(dp227779 +g225230 +S'Entry of Monseigneur Henry de Lorraine, Marquis de Moy, under the Name of Pirandre' +p227780 +sg225232 +S'Jacques Callot' +p227781 +sg225234 +S'etching//plate cut into six pieces (1969.15.96-101): this piece is part 6 of 6' +p227782 +sg225236 +S'1627' +p227783 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086c0.jpg' +p227784 +sg225240 +g27 +sa(dp227785 +g225230 +S'The Carriere at Nancy' +p227786 +sg225232 +S'Jacques Callot' +p227787 +sg225234 +S'etching' +p227788 +sg225236 +S'in or after 1621' +p227789 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008da2.jpg' +p227790 +sg225240 +g27 +sa(dp227791 +g225230 +S'The Review' +p227792 +sg225232 +S'Jacques Callot' +p227793 +sg225234 +S'etching' +p227794 +sg225236 +S'c. 1627/1628' +p227795 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086b9.jpg' +p227796 +sg225240 +g27 +sa(dp227797 +g225230 +S'The Martyrs of Japan' +p227798 +sg225232 +S'Jacques Callot' +p227799 +sg225234 +S'etching' +p227800 +sg225236 +S'c. 1627/1628' +p227801 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086bb.jpg' +p227802 +sg225240 +g27 +sa(dp227803 +g225230 +S'The Holy Family at Table' +p227804 +sg225232 +S'Jacques Callot' +p227805 +sg225234 +S'etching and engraving' +p227806 +sg225236 +S'c. 1628' +p227807 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086b0.jpg' +p227808 +sg225240 +g27 +sa(dp227809 +g225232 +S'Artist Information (' +p227810 +sg225240 +g27 +sg225234 +S'(artist)' +p227811 +sg225230 +S'Siege Prints and Portrait of Louis XIII' +p227812 +sg225236 +S'\n' +p227813 +sa(dp227814 +g225230 +S'The Combat of Avigliana' +p227815 +sg225232 +S'Jacques Callot' +p227816 +sg225234 +S'etching' +p227817 +sg225236 +S'in or after 1631' +p227818 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008db9.jpg' +p227819 +sg225240 +g27 +sa(dp227820 +g225230 +S'View of the Louvre' +p227821 +sg225232 +S'Jacques Callot' +p227822 +sg225234 +S'etching' +p227823 +sg225236 +S'1629' +p227824 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ae2.jpg' +p227825 +sg225240 +g27 +sa(dp227826 +g225230 +S'View of the Pont Neuf' +p227827 +sg225232 +S'Jacques Callot' +p227828 +sg225234 +S'etching' +p227829 +sg225236 +S'1629' +p227830 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ae1.jpg' +p227831 +sg225240 +g27 +sa(dp227832 +g225230 +S'The Ordeal by Arrows (Saint Sebastian)' +p227833 +sg225232 +S'Jacques Callot' +p227834 +sg225234 +S'etching and engraving' +p227835 +sg225236 +S'c. 1632/1633' +p227836 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ae3.jpg' +p227837 +sg225240 +g27 +sa(dp227838 +g225230 +S'Judith with the Head of Holofernes' +p227839 +sg225232 +S'Jacques Callot' +p227840 +sg225234 +S'etching' +p227841 +sg225236 +S'unknown date\n' +p227842 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086fa.jpg' +p227843 +sg225240 +g27 +sa(dp227844 +g225230 +S'The Cavalry Combat with Pistols' +p227845 +sg225232 +S'Jacques Callot' +p227846 +sg225234 +S'etching' +p227847 +sg225236 +S'c. 1632/1634' +p227848 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088ac.jpg' +p227849 +sg225240 +g27 +sa(dp227850 +g225230 +S'The Cavalry Combat with Swords' +p227851 +sg225232 +S'Jacques Callot' +p227852 +sg225234 +S'etching' +p227853 +sg225236 +S'c. 1632/1634' +p227854 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088a9.jpg' +p227855 +sg225240 +g27 +sa(dp227856 +g225230 +S'Title Page for "The Military Exercises"' +p227857 +sg225232 +S'Jacques Callot' +p227858 +sg225234 +S'etching' +p227859 +sg225236 +S'1634/1635' +p227860 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087e8.jpg' +p227861 +sg225240 +g27 +sa(dp227862 +g225230 +S'Unarmed Drill' +p227863 +sg225232 +S'Jacques Callot' +p227864 +sg225234 +S'etching' +p227865 +sg225236 +S'1634/1635' +p227866 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000879d.jpg' +p227867 +sg225240 +g27 +sa(dp227868 +g225230 +S'Drill with Drums' +p227869 +sg225232 +S'Jacques Callot' +p227870 +sg225234 +S'etching' +p227871 +sg225236 +S'1634/1635' +p227872 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000879e.jpg' +p227873 +sg225240 +g27 +sa(dp227874 +g225230 +S'Drill with Halberds' +p227875 +sg225232 +S'Jacques Callot' +p227876 +sg225234 +S'etching' +p227877 +sg225236 +S'1634/1635' +p227878 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008799.jpg' +p227879 +sg225240 +g27 +sa(dp227880 +g225230 +S'Drill with Raised Pikes' +p227881 +sg225232 +S'Jacques Callot' +p227882 +sg225234 +S'etching' +p227883 +sg225236 +S'1634/1635' +p227884 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000879a.jpg' +p227885 +sg225240 +g27 +sa(dp227886 +g225230 +S'Drill with Tilted Pikes' +p227887 +sg225232 +S'Jacques Callot' +p227888 +sg225234 +S'etching' +p227889 +sg225236 +S'1634/1635' +p227890 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087b7.jpg' +p227891 +sg225240 +g27 +sa(dp227892 +g225230 +S'Drill with the Musket' +p227893 +sg225232 +S'Jacques Callot' +p227894 +sg225234 +S'etching' +p227895 +sg225236 +S'1634/1635' +p227896 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087b8.jpg' +p227897 +sg225240 +g27 +sa(dp227898 +g225230 +S'Drill with the Musket' +p227899 +sg225232 +S'Jacques Callot' +p227900 +sg225234 +S'etching' +p227901 +sg225236 +S'1634/1635' +p227902 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087af.jpg' +p227903 +sg225240 +g27 +sa(dp227904 +g225230 +S'Taking the Firing Position with the Musket' +p227905 +sg225232 +S'Jacques Callot' +p227906 +sg225234 +S'etching' +p227907 +sg225236 +S'1634/1635' +p227908 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087b0.jpg' +p227909 +sg225240 +g27 +sa(dp227910 +g225230 +S'Firing the Musket' +p227911 +sg225232 +S'Jacques Callot' +p227912 +sg225234 +S'etching' +p227913 +sg225236 +S'1634/1635' +p227914 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087b5.jpg' +p227915 +sg225240 +g27 +sa(dp227916 +g225230 +S'Preparing to Fire the Cannon' +p227917 +sg225232 +S'Jacques Callot' +p227918 +sg225234 +S'etching' +p227919 +sg225236 +S'1634/1635' +p227920 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087b6.jpg' +p227921 +sg225240 +g27 +sa(dp227922 +g225230 +S'Loading the Cannon' +p227923 +sg225232 +S'Jacques Callot' +p227924 +sg225234 +S'etching' +p227925 +sg225236 +S'1634/1635' +p227926 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087b3.jpg' +p227927 +sg225240 +g27 +sa(dp227928 +g225230 +S'Firing the Cannon' +p227929 +sg225232 +S'Jacques Callot' +p227930 +sg225234 +S'etching' +p227931 +sg225236 +S'1634/1635' +p227932 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087b4.jpg' +p227933 +sg225240 +g27 +sa(dp227934 +g225230 +S'The Punishments' +p227935 +sg225232 +S'Jacques Callot' +p227936 +sg225234 +S'etching' +p227937 +sg225236 +S'unknown date\n' +p227938 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b4ec.jpg' +p227939 +sg225240 +g27 +sa(dp227940 +g225230 +S'The Temptation of Saint Anthony [second version]' +p227941 +sg225232 +S'Jacques Callot' +p227942 +sg225234 +S'etching' +p227943 +sg225236 +S'1635' +p227944 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dbb.jpg' +p227945 +sg225240 +g27 +sa(dp227946 +g225230 +S'The Little Trellis' +p227947 +sg225232 +S'Jacques Callot' +p227948 +sg225234 +S'etching' +p227949 +sg225236 +S'1635' +p227950 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088db.jpg' +p227951 +sg225240 +g27 +sa(dp227952 +g225232 +S'Jacques Callot' +p227953 +sg225240 +g27 +sg225234 +S'1 vol: ill: 46 etchings and engravings plus title page, executed on 39 plates' +p227954 +sg225230 +S'Guide Book to Buildings in the Holy Land' +p227955 +sg225236 +S'published 1620' +p227956 +sa(dp227957 +g225230 +S'The Bohemians Marching: The Rear Guard' +p227958 +sg225232 +S'Jacques Callot' +p227959 +sg225234 +S'etching and engraving' +p227960 +sg225236 +S'1621' +p227961 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008549.jpg' +p227962 +sg225240 +g27 +sa(dp227963 +g225230 +S'The Bohemians Marching: The Vanguard' +p227964 +sg225232 +S'Jacques Callot' +p227965 +sg225234 +S'etching and engraving' +p227966 +sg225236 +S'1621' +p227967 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008552.jpg' +p227968 +sg225240 +g27 +sa(dp227969 +g225230 +S'The Stopping Place' +p227970 +sg225232 +S'Jacques Callot' +p227971 +sg225234 +S'etching and engraving' +p227972 +sg225236 +S'1621' +p227973 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008550.jpg' +p227974 +sg225240 +g27 +sa(dp227975 +g225230 +S'The Feast of the Bohemians' +p227976 +sg225232 +S'Jacques Callot' +p227977 +sg225234 +S'etching and engraving' +p227978 +sg225236 +S'1621' +p227979 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008555.jpg' +p227980 +sg225240 +g27 +sa(dp227981 +g225230 +S'Charles De Lorme' +p227982 +sg225232 +S'Jacques Callot' +p227983 +sg225234 +S'etching' +p227984 +sg225236 +S'1630' +p227985 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086ea.jpg' +p227986 +sg225240 +g27 +sa(dp227987 +g225230 +S'Chateau with a Drawbridge' +p227988 +sg225232 +S'Artist Information (' +p227989 +sg225234 +S'French, 1592 - 1635' +p227990 +sg225236 +S'(artist after)' +p227991 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008998.jpg' +p227992 +sg225240 +g27 +sa(dp227993 +g225230 +S'Title Page for Callot\'s "Various Italian Landscapes"' +p227994 +sg225232 +S'Fran\xc3\xa7ois Collignon' +p227995 +sg225234 +S', probably c. 1630' +p227996 +sg225236 +S'\n' +p227997 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a00084f0.jpg' +p227998 +sg225240 +g27 +sa(dp227999 +g225230 +S'Title Page for Callot\'s "Various Italian Landscapes"' +p228000 +sg225232 +S'Fran\xc3\xa7ois Collignon' +p228001 +sg225234 +S', probably c. 1630' +p228002 +sg225236 +S'\n' +p228003 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a00084f1.jpg' +p228004 +sg225240 +g27 +sa(dp228005 +g225230 +S'Landscape' +p228006 +sg225232 +S'Artist Information (' +p228007 +sg225234 +S'French, 1592 - 1635' +p228008 +sg225236 +S'(artist after)' +p228009 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008976.jpg' +p228010 +sg225240 +g27 +sa(dp228011 +g225230 +S'Landscape' +p228012 +sg225232 +S'Artist Information (' +p228013 +sg225234 +S'French, 1592 - 1635' +p228014 +sg225236 +S'(artist after)' +p228015 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008973.jpg' +p228016 +sg225240 +g27 +sa(dp228017 +g225230 +S'Landscape' +p228018 +sg225232 +S'Artist Information (' +p228019 +sg225234 +S'French, 1592 - 1635' +p228020 +sg225236 +S'(artist after)' +p228021 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008972.jpg' +p228022 +sg225240 +g27 +sa(dp228023 +g225230 +S'Landscape' +p228024 +sg225232 +S'Artist Information (' +p228025 +sg225234 +S'French, 1592 - 1635' +p228026 +sg225236 +S'(artist after)' +p228027 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008978.jpg' +p228028 +sg225240 +g27 +sa(dp228029 +g225230 +S'Landscape' +p228030 +sg225232 +S'Artist Information (' +p228031 +sg225234 +S'French, 1592 - 1635' +p228032 +sg225236 +S'(artist after)' +p228033 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008977.jpg' +p228034 +sg225240 +g27 +sa(dp228035 +g225230 +S'Landscape' +p228036 +sg225232 +S'Artist Information (' +p228037 +sg225234 +S'French, 1592 - 1635' +p228038 +sg225236 +S'(artist after)' +p228039 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000896f.jpg' +p228040 +sg225240 +g27 +sa(dp228041 +g225230 +S'Landscape' +p228042 +sg225232 +S'Artist Information (' +p228043 +sg225234 +S'French, 1592 - 1635' +p228044 +sg225236 +S'(artist after)' +p228045 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008970.jpg' +p228046 +sg225240 +g27 +sa(dp228047 +g225230 +S'Landscape' +p228048 +sg225232 +S'Artist Information (' +p228049 +sg225234 +S'French, 1592 - 1635' +p228050 +sg225236 +S'(artist after)' +p228051 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008992.jpg' +p228052 +sg225240 +g27 +sa(dp228053 +g225230 +S'Landscape' +p228054 +sg225232 +S'Artist Information (' +p228055 +sg225234 +S'French, 1592 - 1635' +p228056 +sg225236 +S'(artist after)' +p228057 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008996.jpg' +p228058 +sg225240 +g27 +sa(dp228059 +g225230 +S'Landscape' +p228060 +sg225232 +S'Artist Information (' +p228061 +sg225234 +S'French, 1592 - 1635' +p228062 +sg225236 +S'(artist after)' +p228063 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008991.jpg' +p228064 +sg225240 +g27 +sa(dp228065 +g225230 +S'Landscape' +p228066 +sg225232 +S'Artist Information (' +p228067 +sg225234 +S'French, 1592 - 1635' +p228068 +sg225236 +S'(artist after)' +p228069 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008995.jpg' +p228070 +sg225240 +g27 +sa(dp228071 +g225230 +S'Landscape' +p228072 +sg225232 +S'Artist Information (' +p228073 +sg225234 +S'French, 1592 - 1635' +p228074 +sg225236 +S'(artist after)' +p228075 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008997.jpg' +p228076 +sg225240 +g27 +sa(dp228077 +g225230 +S'Landscape' +p228078 +sg225232 +S'Artist Information (' +p228079 +sg225234 +S'French, 1592 - 1635' +p228080 +sg225236 +S'(artist after)' +p228081 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008993.jpg' +p228082 +sg225240 +g27 +sa(dp228083 +g225230 +S'Landscape' +p228084 +sg225232 +S'Artist Information (' +p228085 +sg225234 +S'French, 1592 - 1635' +p228086 +sg225236 +S'(artist after)' +p228087 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008990.jpg' +p228088 +sg225240 +g27 +sa(dp228089 +g225230 +S'Landscape' +p228090 +sg225232 +S'Artist Information (' +p228091 +sg225234 +S'French, 1592 - 1635' +p228092 +sg225236 +S'(artist after)' +p228093 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008994.jpg' +p228094 +sg225240 +g27 +sa(dp228095 +g225230 +S'Entry of M. de Macey' +p228096 +sg225232 +S'Artist Information (' +p228097 +sg225234 +S'French, 1592 - 1635' +p228098 +sg225236 +S'(artist after)' +p228099 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008964.jpg' +p228100 +sg225240 +g27 +sa(dp228101 +g225230 +S'The Small Carrying of the Cross' +p228102 +sg225232 +S'Artist Information (' +p228103 +sg225234 +S'French, 1592 - 1635' +p228104 +sg225236 +S'(artist after)' +p228105 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083df.jpg' +p228106 +sg225240 +g27 +sa(dp228107 +g225230 +S'Noble Woman in Profile with her Hands in a Muff' +p228108 +sg225232 +S'Artist Information (' +p228109 +sg225234 +S'French, 1592 - 1635' +p228110 +sg225236 +S'(artist after)' +p228111 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000895c.jpg' +p228112 +sg225240 +g27 +sa(dp228113 +g225230 +S'Soldier with Feathered Cap' +p228114 +sg225232 +S'Artist Information (' +p228115 +sg225234 +S'French, 1592 - 1635' +p228116 +sg225236 +S'(artist after)' +p228117 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000895b.jpg' +p228118 +sg225240 +g27 +sa(dp228119 +g225230 +S'Beggar Couple' +p228120 +sg225232 +S'Artist Information (' +p228121 +sg225234 +S'French, 1592 - 1635' +p228122 +sg225236 +S'(artist after)' +p228123 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087ba.jpg' +p228124 +sg225240 +g27 +sa(dp228125 +g225230 +S'Beggar Couple, with Landscape in Background' +p228126 +sg225232 +S'Artist Information (' +p228127 +sg225234 +S'French, 1592 - 1635' +p228128 +sg225236 +S'(artist after)' +p228129 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087b9.jpg' +p228130 +sg225240 +g27 +sa(dp228131 +g225230 +S'Beggar Woman' +p228132 +sg225232 +S'Artist Information (' +p228133 +sg225234 +S'French, 1592 - 1635' +p228134 +sg225236 +S'(artist after)' +p228135 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087bb.jpg' +p228136 +sg225240 +g27 +sa(dp228137 +g225230 +S'Beggar Woman and Child' +p228138 +sg225232 +S'Artist Information (' +p228139 +sg225234 +S'French, 1592 - 1635' +p228140 +sg225236 +S'(artist after)' +p228141 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087bc.jpg' +p228142 +sg225240 +g27 +sa(dp228143 +g225230 +S'The Card Players' +p228144 +sg225232 +S'Artist Information (' +p228145 +sg225234 +S'French, 1592 - 1635' +p228146 +sg225236 +S'(artist after)' +p228147 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008af2.jpg' +p228148 +sg225240 +g27 +sa(dp228149 +g225230 +S'Noble Woman Wearing a Veil and a Dress Trimmed in Fur' +p228150 +sg225232 +S'Artist Information (' +p228151 +sg225234 +S'French, 1592 - 1635' +p228152 +sg225236 +S'(artist after)' +p228153 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000896b.jpg' +p228154 +sg225240 +g27 +sa(dp228155 +g225230 +S'Noble Man with Fur Plastron' +p228156 +sg225232 +S'Artist Information (' +p228157 +sg225234 +S'French, 1592 - 1635' +p228158 +sg225236 +S'(artist after)' +p228159 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000896a.jpg' +p228160 +sg225240 +g27 +sa(dp228161 +g225230 +S'Noble Man with Mantle Trimmed in Fur, Holding his Hands Behind his Back' +p228162 +sg225232 +S'Artist Information (' +p228163 +sg225234 +S'French, 1592 - 1635' +p228164 +sg225236 +S'(artist after)' +p228165 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000896c.jpg' +p228166 +sg225240 +g27 +sa(dp228167 +g225230 +S'Noble Woman with Large Collar' +p228168 +sg225232 +S'Artist Information (' +p228169 +sg225234 +S'French, 1592 - 1635' +p228170 +sg225236 +S'(artist after)' +p228171 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008969.jpg' +p228172 +sg225240 +g27 +sa(dp228173 +g225230 +S'Noble Woman with Fan' +p228174 +sg225232 +S'Artist Information (' +p228175 +sg225234 +S'French, 1592 - 1635' +p228176 +sg225236 +S'(artist after)' +p228177 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008965.jpg' +p228178 +sg225240 +g27 +sa(dp228179 +g225230 +S'Noble Man Wrapped in a Mantle Trimmed with Fur' +p228180 +sg225232 +S'Artist Information (' +p228181 +sg225234 +S'French, 1592 - 1635' +p228182 +sg225236 +S'(artist after)' +p228183 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008968.jpg' +p228184 +sg225240 +g27 +sa(dp228185 +g225230 +S'Noble Man with Folded Hands' +p228186 +sg225232 +S'Artist Information (' +p228187 +sg225234 +S'French, 1592 - 1635' +p228188 +sg225236 +S'(artist after)' +p228189 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008966.jpg' +p228190 +sg225240 +g27 +sa(dp228191 +g225230 +S'Masked Noble Woman' +p228192 +sg225232 +S'Artist Information (' +p228193 +sg225234 +S'French, 1592 - 1635' +p228194 +sg225236 +S'(artist after)' +p228195 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008967.jpg' +p228196 +sg225240 +g27 +sa(dp228197 +g225230 +S'Landscape with Battle Scene' +p228198 +sg225232 +S'Artist Information (' +p228199 +sg225234 +S'French, 1592 - 1635' +p228200 +sg225236 +S'(artist after)' +p228201 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087be.jpg' +p228202 +sg225240 +g27 +sa(dp228203 +g225230 +S'Landscape with Two Pilgrims' +p228204 +sg225232 +S'Artist Information (' +p228205 +sg225234 +S'French, 1592 - 1635' +p228206 +sg225236 +S'(artist after)' +p228207 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087bf.jpg' +p228208 +sg225240 +g27 +sa(dp228209 +g225230 +S'Landscape with a Well' +p228210 +sg225232 +S'Artist Information (' +p228211 +sg225234 +S'French, 1592 - 1635' +p228212 +sg225236 +S'(artist after)' +p228213 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087bd.jpg' +p228214 +sg225240 +g27 +sa(dp228215 +g225230 +S'Landscape with Figure and Boat' +p228216 +sg225232 +S'Artist Information (' +p228217 +sg225234 +S'French, 1592 - 1635' +p228218 +sg225236 +S'(artist after)' +p228219 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087c0.jpg' +p228220 +sg225240 +g27 +sa(dp228221 +g225230 +S'Young Woman with Hands Folded, Facing Right' +p228222 +sg225232 +S'Artist Information (' +p228223 +sg225234 +S'(artist after)' +p228224 +sg225236 +S'\n' +p228225 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089a2.jpg' +p228226 +sg225240 +g27 +sa(dp228227 +g225230 +S'Young Woman with Hands on Hips, Front View' +p228228 +sg225232 +S'Artist Information (' +p228229 +sg225234 +S'(artist after)' +p228230 +sg225236 +S'\n' +p228231 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089a1.jpg' +p228232 +sg225240 +g27 +sa(dp228233 +g225230 +S'Young Woman with Distaff, Facing Right' +p228234 +sg225232 +S'Artist Information (' +p228235 +sg225234 +S'(artist after)' +p228236 +sg225236 +S'\n' +p228237 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000899f.jpg' +p228238 +sg225240 +g27 +sa(dp228239 +g225230 +S'Peasant Woman with Basket, Facing Left' +p228240 +sg225232 +S'Artist Information (' +p228241 +sg225234 +S'(artist after)' +p228242 +sg225236 +S'\n' +p228243 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089a0.jpg' +p228244 +sg225240 +g27 +sa(dp228245 +g225230 +S'Peasant Woman with Basket, Seen from Behind' +p228246 +sg225232 +S'Artist Information (' +p228247 +sg225234 +S'(artist after)' +p228248 +sg225236 +S'\n' +p228249 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000899c.jpg' +p228250 +sg225240 +g27 +sa(dp228251 +g225230 +S'Peasant Woman with Basket, in Profile, Facing Left' +p228252 +sg225232 +S'Artist Information (' +p228253 +sg225234 +S'(artist after)' +p228254 +sg225236 +S'\n' +p228255 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000899e.jpg' +p228256 +sg225240 +g27 +sa(dp228257 +g225230 +S'Bourgeoise with Muff, Facing Right' +p228258 +sg225232 +S'Artist Information (' +p228259 +sg225234 +S'(artist after)' +p228260 +sg225236 +S'\n' +p228261 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000899d.jpg' +p228262 +sg225240 +g27 +sa(dp228263 +g225230 +S'Young Woman, in Profile, Facing Right' +p228264 +sg225232 +S'Artist Information (' +p228265 +sg225234 +S'(artist after)' +p228266 +sg225236 +S'\n' +p228267 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000899b.jpg' +p228268 +sg225240 +g27 +sa(dp228269 +g225230 +S'Margaret of Austria on Horseback' +p228270 +sg225232 +S'Raffaello Schiaminossi' +p228271 +sg225234 +S'etching' +p228272 +sg225236 +S'1612' +p228273 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9ab.jpg' +p228274 +sg225240 +g27 +sa(dp228275 +g225230 +S'Margaret of Austria Being Carried in a Chaise' +p228276 +sg225232 +S'Raffaello Schiaminossi' +p228277 +sg225234 +S'etching' +p228278 +sg225236 +S'1612' +p228279 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9a8.jpg' +p228280 +sg225240 +g27 +sa(dp228281 +g225230 +S'Margaret of Austria Receiving the Homage of Cardinals and Prelates' +p228282 +sg225232 +S'Raffaello Schiaminossi' +p228283 +sg225234 +S'etching' +p228284 +sg225236 +S'1612' +p228285 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9aa.jpg' +p228286 +sg225240 +g27 +sa(dp228287 +g225230 +S'The Betrothal of Margaret of Austria to Philip III, King of Spain' +p228288 +sg225232 +S'Raffaello Schiaminossi' +p228289 +sg225234 +S'etching' +p228290 +sg225236 +S'1612' +p228291 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9a9.jpg' +p228292 +sg225240 +g27 +sa(dp228293 +g225230 +S'Margaret of Austria Giving Audience to a Nobleman' +p228294 +sg225232 +S'Raffaello Schiaminossi' +p228295 +sg225234 +S'etching' +p228296 +sg225236 +S'1612' +p228297 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9ac.jpg' +p228298 +sg225240 +g27 +sa(dp228299 +g225230 +S'Philip II of Spain on His Throne' +p228300 +sg225232 +S'Antonio Tempesta' +p228301 +sg225234 +S'etching' +p228302 +sg225236 +S'1612' +p228303 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006766.jpg' +p228304 +sg225240 +g27 +sa(dp228305 +g225230 +S'Philip of Spain before Margaret of Austria' +p228306 +sg225232 +S'Antonio Tempesta' +p228307 +sg225234 +S'etching' +p228308 +sg225236 +S'1612' +p228309 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006769.jpg' +p228310 +sg225240 +g27 +sa(dp228311 +g225230 +S'Triumphal Entry of Margaret of Austria' +p228312 +sg225232 +S'Antonio Tempesta' +p228313 +sg225234 +S'etching' +p228314 +sg225236 +S'1612' +p228315 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a000676b.jpg' +p228316 +sg225240 +g27 +sa(dp228317 +g225230 +S'Italian Prince before Margaret of Austria' +p228318 +sg225232 +S'Antonio Tempesta' +p228319 +sg225234 +S'etching' +p228320 +sg225236 +S'1612' +p228321 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006768.jpg' +p228322 +sg225240 +g27 +sa(dp228323 +g225230 +S'Spanish Duke before Margaret of Austria' +p228324 +sg225232 +S'Antonio Tempesta' +p228325 +sg225234 +S'etching' +p228326 +sg225236 +S'1612' +p228327 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a000676a.jpg' +p228328 +sg225240 +g27 +sa(dp228329 +g225230 +S'Philip as a Boy before Margaret of Austria' +p228330 +sg225232 +S'Antonio Tempesta' +p228331 +sg225234 +S'etching' +p228332 +sg225236 +S'1612' +p228333 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a000676c.jpg' +p228334 +sg225240 +g27 +sa(dp228335 +g225230 +S'Title Page for "The Capricci"' +p228336 +sg225232 +S'Artist Information (' +p228337 +sg225234 +S'(artist after)' +p228338 +sg225236 +S'\n' +p228339 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d214.jpg' +p228340 +sg225240 +g27 +sa(dp228341 +g225230 +S'Standing Woman in a Great Coat' +p228342 +sg225232 +S'Artist Information (' +p228343 +sg225234 +S'(artist after)' +p228344 +sg225236 +S'\n' +p228345 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d229.jpg' +p228346 +sg225240 +g27 +sa(dp228347 +g225230 +S'Gentleman and His Page' +p228348 +sg225232 +S'Artist Information (' +p228349 +sg225234 +S'(artist after)' +p228350 +sg225236 +S'\n' +p228351 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d21c.jpg' +p228352 +sg225240 +g27 +sa(dp228353 +g225230 +S'Two Seated Figures' +p228354 +sg225232 +S'Artist Information (' +p228355 +sg225234 +S'(artist after)' +p228356 +sg225236 +S'\n' +p228357 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d21d.jpg' +p228358 +sg225240 +g27 +sa(dp228359 +g225230 +S'Shepherd and Ruins' +p228360 +sg225232 +S'Artist Information (' +p228361 +sg225234 +S'(artist after)' +p228362 +sg225236 +S'\n' +p228363 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d21e.jpg' +p228364 +sg225240 +g27 +sa(dp228365 +g225230 +S'Courtyard of a Farm' +p228366 +sg225232 +S'Artist Information (' +p228367 +sg225234 +S'(artist after)' +p228368 +sg225236 +S'\n' +p228369 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d219.jpg' +p228370 +sg225240 +g27 +sa(dp228371 +g225230 +S'Ponte Vecchio, Florence' +p228372 +sg225232 +S'Artist Information (' +p228373 +sg225234 +S'(artist after)' +p228374 +sg225236 +S'\n' +p228375 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d21a.jpg' +p228376 +sg225240 +g27 +sa(dp228377 +g225230 +S'Soldiers Attacking Robbers' +p228378 +sg225232 +S'Artist Information (' +p228379 +sg225234 +S'(artist after)' +p228380 +sg225236 +S'\n' +p228381 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d21b.jpg' +p228382 +sg225240 +g27 +sa(dp228383 +g225230 +S'The Promenade' +p228384 +sg225232 +S'Artist Information (' +p228385 +sg225234 +S'(artist after)' +p228386 +sg225236 +S'\n' +p228387 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d21f.jpg' +p228388 +sg225240 +g27 +sa(dp228389 +g225230 +S'The Dance' +p228390 +sg225232 +S'Artist Information (' +p228391 +sg225234 +S'(artist after)' +p228392 +sg225236 +S'\n' +p228393 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d217.jpg' +p228394 +sg225240 +g27 +sa(dp228395 +g225230 +S'Horses Running' +p228396 +sg225232 +S'Artist Information (' +p228397 +sg225234 +S'(artist after)' +p228398 +sg225236 +S'\n' +p228399 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d218.jpg' +p228400 +sg225240 +g27 +sa(dp228401 +g225230 +S'Man Moving Abruptly' +p228402 +sg225232 +S'Artist Information (' +p228403 +sg225234 +S'(artist after)' +p228404 +sg225236 +S'\n' +p228405 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d215.jpg' +p228406 +sg225240 +g27 +sa(dp228407 +g225230 +S'Violinist' +p228408 +sg225232 +S'Artist Information (' +p228409 +sg225234 +S'(artist after)' +p228410 +sg225236 +S'\n' +p228411 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d216.jpg' +p228412 +sg225240 +g27 +sa(dp228413 +g225230 +S'Peasant with Hat in Hand' +p228414 +sg225232 +S'Artist Information (' +p228415 +sg225234 +S'(artist after)' +p228416 +sg225236 +S'\n' +p228417 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d225.jpg' +p228418 +sg225240 +g27 +sa(dp228419 +g225230 +S'Gentleman Viewed from the Front with Hand on Hips' +p228420 +sg225232 +S'Artist Information (' +p228421 +sg225234 +S'(artist after)' +p228422 +sg225236 +S'\n' +p228423 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d22b.jpg' +p228424 +sg225240 +g27 +sa(dp228425 +g225230 +S'Gentleman with Cane' +p228426 +sg225232 +S'Artist Information (' +p228427 +sg225234 +S'(artist after)' +p228428 +sg225236 +S'\n' +p228429 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d227.jpg' +p228430 +sg225240 +g27 +sa(dp228431 +g225230 +S'Man with Sword' +p228432 +sg225232 +S'Artist Information (' +p228433 +sg225234 +S'(artist after)' +p228434 +sg225236 +S'\n' +p228435 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d228.jpg' +p228436 +sg225240 +g27 +sa(dp228437 +g225230 +S'Man Seen from Behind with His Right Arm Extended' +p228438 +sg225232 +S'Artist Information (' +p228439 +sg225234 +S'(artist after)' +p228440 +sg225236 +S'\n' +p228441 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d224.jpg' +p228442 +sg225240 +g27 +sa(dp228443 +g225230 +S'Two Women in Profile' +p228444 +sg225232 +S'Artist Information (' +p228445 +sg225234 +S'(artist after)' +p228446 +sg225236 +S'\n' +p228447 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d220.jpg' +p228448 +sg225240 +g27 +sa(dp228449 +g225230 +S'Lady in a Large Coat' +p228450 +sg225232 +S'Artist Information (' +p228451 +sg225234 +S'(artist after)' +p228452 +sg225236 +S'\n' +p228453 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d245.jpg' +p228454 +sg225240 +g27 +sa(dp228455 +g225230 +S'Gentleman Wrapped in his Mantle' +p228456 +sg225232 +S'Artist Information (' +p228457 +sg225234 +S'(artist after)' +p228458 +sg225236 +S'\n' +p228459 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d226.jpg' +p228460 +sg225240 +g27 +sa(dp228461 +g225230 +S'Gentleman in Large Mantle, Seen from Behind' +p228462 +sg225232 +S'Artist Information (' +p228463 +sg225234 +S'(artist after)' +p228464 +sg225236 +S'\n' +p228465 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d221.jpg' +p228466 +sg225240 +g27 +sa(dp228467 +g225230 +S'Gentleman in a Large Mantle, Front View' +p228468 +sg225232 +S'Artist Information (' +p228469 +sg225234 +S'(artist after)' +p228470 +sg225236 +S'\n' +p228471 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d22a.jpg' +p228472 +sg225240 +g27 +sa(dp228473 +g225230 +S'Peasant with a Cup' +p228474 +sg225232 +S'Artist Information (' +p228475 +sg225234 +S'(artist after)' +p228476 +sg225236 +S'\n' +p228477 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d222.jpg' +p228478 +sg225240 +g27 +sa(dp228479 +g225230 +S'Gentleman Viewed from the Side' +p228480 +sg225232 +S'Artist Information (' +p228481 +sg225234 +S'(artist after)' +p228482 +sg225236 +S'\n' +p228483 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d22c.jpg' +p228484 +sg225240 +g27 +sa(dp228485 +g225230 +S'Peasant with Shovel on His Shoulder' +p228486 +sg225232 +S'Artist Information (' +p228487 +sg225234 +S'(artist after)' +p228488 +sg225236 +S'\n' +p228489 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d223.jpg' +p228490 +sg225240 +g27 +sa(dp228491 +g225230 +S'Duel with Swords' +p228492 +sg225232 +S'Artist Information (' +p228493 +sg225234 +S'(artist after)' +p228494 +sg225236 +S'\n' +p228495 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d233.jpg' +p228496 +sg225240 +g27 +sa(dp228497 +g225230 +S'Duel with Swords and Daggers' +p228498 +sg225232 +S'Artist Information (' +p228499 +sg225234 +S'(artist after)' +p228500 +sg225236 +S'\n' +p228501 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d232.jpg' +p228502 +sg225240 +g27 +sa(dp228503 +g225230 +S'Peasant Attacked by Bees' +p228504 +sg225232 +S'Artist Information (' +p228505 +sg225234 +S'(artist after)' +p228506 +sg225236 +S'\n' +p228507 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d231.jpg' +p228508 +sg225240 +g27 +sa(dp228509 +g225230 +S'Peasant Removing His Shoe' +p228510 +sg225232 +S'Artist Information (' +p228511 +sg225234 +S'(artist after)' +p228512 +sg225236 +S'\n' +p228513 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d230.jpg' +p228514 +sg225240 +g27 +sa(dp228515 +g225230 +S'Peasant with Sack' +p228516 +sg225232 +S'Artist Information (' +p228517 +sg225234 +S'(artist after)' +p228518 +sg225236 +S'\n' +p228519 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d22f.jpg' +p228520 +sg225240 +g27 +sa(dp228521 +g225230 +S'Peasant Defecating' +p228522 +sg225232 +S'Artist Information (' +p228523 +sg225234 +S'(artist after)' +p228524 +sg225236 +S'\n' +p228525 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d238.jpg' +p228526 +sg225240 +g27 +sa(dp228527 +g225230 +S'Dancers with Flute and Tambourine' +p228528 +sg225232 +S'Artist Information (' +p228529 +sg225234 +S'(artist after)' +p228530 +sg225236 +S'\n' +p228531 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d237.jpg' +p228532 +sg225240 +g27 +sa(dp228533 +g225230 +S'Dancers with Lute' +p228534 +sg225232 +S'Artist Information (' +p228535 +sg225234 +S'(artist after)' +p228536 +sg225236 +S'\n' +p228537 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d236.jpg' +p228538 +sg225240 +g27 +sa(dp228539 +g225230 +S'Two Pantaloons Dancing' +p228540 +sg225232 +S'Artist Information (' +p228541 +sg225234 +S'(artist after)' +p228542 +sg225236 +S'\n' +p228543 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d235.jpg' +p228544 +sg225240 +g27 +sa(dp228545 +g225230 +S'Two Pantaloons Dancing' +p228546 +sg225232 +S'Artist Information (' +p228547 +sg225234 +S'(artist after)' +p228548 +sg225236 +S'\n' +p228549 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d234.jpg' +p228550 +sg225240 +g27 +sa(dp228551 +g225230 +S'Shepherd Playing Flute' +p228552 +sg225232 +S'Artist Information (' +p228553 +sg225234 +S'(artist after)' +p228554 +sg225236 +S'\n' +p228555 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d22e.jpg' +p228556 +sg225240 +g27 +sa(dp228557 +g225230 +S'Almshouse' +p228558 +sg225232 +S'Artist Information (' +p228559 +sg225234 +S'(artist after)' +p228560 +sg225236 +S'\n' +p228561 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d22d.jpg' +p228562 +sg225240 +g27 +sa(dp228563 +g225230 +S'Tavern' +p228564 +sg225232 +S'Artist Information (' +p228565 +sg225234 +S'(artist after)' +p228566 +sg225236 +S'\n' +p228567 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d239.jpg' +p228568 +sg225240 +g27 +sa(dp228569 +g225230 +S'Military Commander on Foot' +p228570 +sg225232 +S'Artist Information (' +p228571 +sg225234 +S'(artist after)' +p228572 +sg225236 +S'\n' +p228573 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d243.jpg' +p228574 +sg225240 +g27 +sa(dp228575 +g225230 +S'Military Commander on Horseback' +p228576 +sg225232 +S'Artist Information (' +p228577 +sg225234 +S'(artist after)' +p228578 +sg225236 +S'\n' +p228579 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d23a.jpg' +p228580 +sg225240 +g27 +sa(dp228581 +g225230 +S'Standard Bearer' +p228582 +sg225232 +S'Artist Information (' +p228583 +sg225234 +S'(artist after)' +p228584 +sg225236 +S'\n' +p228585 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d23b.jpg' +p228586 +sg225240 +g27 +sa(dp228587 +g225230 +S'Skirmish in a Roman Circus' +p228588 +sg225232 +S'Artist Information (' +p228589 +sg225234 +S'(artist after)' +p228590 +sg225236 +S'\n' +p228591 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d23c.jpg' +p228592 +sg225240 +g27 +sa(dp228593 +g225230 +S'Piazza SS. Annunziata, Florence' +p228594 +sg225232 +S'Artist Information (' +p228595 +sg225234 +S'(artist after)' +p228596 +sg225236 +S'\n' +p228597 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d23d.jpg' +p228598 +sg225240 +g27 +sa(dp228599 +g225230 +S'Fireworks on the Arno, Florence' +p228600 +sg225232 +S'Artist Information (' +p228601 +sg225234 +S'(artist after)' +p228602 +sg225236 +S'\n' +p228603 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d23e.jpg' +p228604 +sg225240 +g27 +sa(dp228605 +g225230 +S'Piazza della Signoria, Florence' +p228606 +sg225232 +S'Artist Information (' +p228607 +sg225234 +S'(artist after)' +p228608 +sg225236 +S'\n' +p228609 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d244.jpg' +p228610 +sg225240 +g27 +sa(dp228611 +g225230 +S'Piazza del Duomo, Florence' +p228612 +sg225232 +S'Artist Information (' +p228613 +sg225234 +S'(artist after)' +p228614 +sg225236 +S'\n' +p228615 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d23f.jpg' +p228616 +sg225240 +g27 +sa(dp228617 +g225230 +S'Piazza Santa Maria Novella, Florence' +p228618 +sg225232 +S'Artist Information (' +p228619 +sg225234 +S'(artist after)' +p228620 +sg225236 +S'\n' +p228621 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d240.jpg' +p228622 +sg225240 +g27 +sa(dp228623 +g225230 +S'Piazza Presso alla Porta al Prato' +p228624 +sg225232 +S'Artist Information (' +p228625 +sg225234 +S'(artist after)' +p228626 +sg225236 +S'\n' +p228627 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d241.jpg' +p228628 +sg225240 +g27 +sa(dp228629 +g225230 +S'Piazza Santa Croce, Florence' +p228630 +sg225232 +S'Artist Information (' +p228631 +sg225234 +S'(artist after)' +p228632 +sg225236 +S'\n' +p228633 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d242.jpg' +p228634 +sg225240 +g27 +sa(dp228635 +g225230 +S'Frontispiece for Callot\'s "The Penitents"' +p228636 +sg225232 +S'Abraham Bosse' +p228637 +sg225234 +S'etching and engraving' +p228638 +sg225236 +S'unknown date\n' +p228639 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087eb.jpg' +p228640 +sg225240 +g27 +sa(dp228641 +g225230 +S'Jacques Callot' +p228642 +sg225232 +S'Michel Lasne' +p228643 +sg225234 +S'engraving' +p228644 +sg225236 +S'unknown date\n' +p228645 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008941.jpg' +p228646 +sg225240 +g27 +sa(dp228647 +g225230 +S'Jacques Callot' +p228648 +sg225232 +S'Artist Information (' +p228649 +sg225234 +S'(artist after)' +p228650 +sg225236 +S'\n' +p228651 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d45a.jpg' +p228652 +sg225240 +g27 +sa(dp228653 +g225230 +S'Bohemians' +p228654 +sg225232 +S'French 17th Century' +p228655 +sg225234 +S'R.L. Baumfeld Collection' +p228656 +sg225236 +S'\netching' +p228657 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008521.jpg' +p228658 +sg225240 +g27 +sa(dp228659 +g225230 +S'Pantaloons' +p228660 +sg225232 +S'Stefano Della Bella' +p228661 +sg225234 +S'etching' +p228662 +sg225236 +S'1632' +p228663 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c902.jpg' +p228664 +sg225240 +g27 +sa(dp228665 +g225230 +S'The Virgin at the Column (La Vierge \xc3\xa0 la colonne)' +p228666 +sg225232 +S'Jacques Callot' +p228667 +sg225234 +S'engraving' +p228668 +sg225236 +S'1608/1611' +p228669 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000857d.jpg' +p228670 +sg225240 +g27 +sa(dp228671 +g225230 +S'Salvator Mundi' +p228672 +sg225232 +S'Jacques Callot' +p228673 +sg225234 +S'engraving' +p228674 +sg225236 +S'1608/1611' +p228675 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000857f.jpg' +p228676 +sg225240 +g27 +sa(dp228677 +g225230 +S'Boniface VIII with Saints Francis and CrispinAdoring the Virgin and Child' +p228678 +sg225232 +S'Jacques Callot' +p228679 +sg225234 +S'engraving' +p228680 +sg225236 +S'1608/1611' +p228681 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000857b.jpg' +p228682 +sg225240 +g27 +sa(dp228683 +g225230 +S'The Adoration of the Virgin and Child' +p228684 +sg225232 +S'Jacques Callot' +p228685 +sg225234 +S'engraving' +p228686 +sg225236 +S'1608/1611' +p228687 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000857c.jpg' +p228688 +sg225240 +g27 +sa(dp228689 +g225230 +S'Virgin and Saint John at the Foot of the Cross' +p228690 +sg225232 +S'Jacques Callot' +p228691 +sg225234 +S'engraving' +p228692 +sg225236 +S'1608/1611' +p228693 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000857e.jpg' +p228694 +sg225240 +g27 +sa(dp228695 +g225230 +S'Lamentation' +p228696 +sg225232 +S'Jacques Callot' +p228697 +sg225234 +S'engraving' +p228698 +sg225236 +S'1608/1611' +p228699 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008580.jpg' +p228700 +sg225240 +g27 +sa(dp228701 +g225230 +S'Piet\xc3\xa0' +p228702 +sg225232 +S'Artist Information (' +p228703 +sg225234 +S'(artist after)' +p228704 +sg225236 +S'\n' +p228705 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000857a.jpg' +p228706 +sg225240 +g27 +sa(dp228707 +g225230 +S'Immaculate Conception' +p228708 +sg225232 +S'Jacques Callot' +p228709 +sg225234 +S'engraving' +p228710 +sg225236 +S'1608/1611' +p228711 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008578.jpg' +p228712 +sg225240 +g27 +sa(dp228713 +g225230 +S'The Crucifixion' +p228714 +sg225232 +S'Jacques Callot' +p228715 +sg225234 +S'engraving' +p228716 +sg225236 +S'1608/1611' +p228717 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008577.jpg' +p228718 +sg225240 +g27 +sa(dp228719 +g225230 +S'Saints Peter and Paul' +p228720 +sg225232 +S'Jacques Callot' +p228721 +sg225234 +S'engraving' +p228722 +sg225236 +S'1608/1611' +p228723 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008575.jpg' +p228724 +sg225240 +g27 +sa(dp228725 +g225230 +S'Saint Helen' +p228726 +sg225232 +S'Jacques Callot' +p228727 +sg225234 +S'engraving' +p228728 +sg225236 +S'1608/1611' +p228729 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008576.jpg' +p228730 +sg225240 +g27 +sa(dp228731 +g225230 +S'Martyrdom of Saint Erasmus' +p228732 +sg225232 +S'Jacques Callot' +p228733 +sg225234 +S'engraving' +p228734 +sg225236 +S'1608/1611' +p228735 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008574.jpg' +p228736 +sg225240 +g27 +sa(dp228737 +g225230 +S'Saint Paul' +p228738 +sg225232 +S'Jacques Callot' +p228739 +sg225234 +S'engraving' +p228740 +sg225236 +S'1608/1611' +p228741 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008581.jpg' +p228742 +sg225240 +g27 +sa(dp228743 +g225230 +S'The Ascension' +p228744 +sg225232 +S'Jacques Callot' +p228745 +sg225234 +S'engraving' +p228746 +sg225236 +S'1608/1611' +p228747 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008579.jpg' +p228748 +sg225240 +g27 +sa(dp228749 +g225230 +S'Paradise' +p228750 +sg225232 +S'Jacques Callot' +p228751 +sg225234 +S'engraving' +p228752 +sg225236 +S'1608/1611' +p228753 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083b5.jpg' +p228754 +sg225240 +g27 +sa(dp228755 +g225230 +S'Virgin and Child with Saints James and Jerome' +p228756 +sg225232 +S'Jacques Callot' +p228757 +sg225234 +S'engraving' +p228758 +sg225236 +S'1608/1611' +p228759 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083aa.jpg' +p228760 +sg225240 +g27 +sa(dp228761 +g225230 +S'Martyrdom of Saint Stephen' +p228762 +sg225232 +S'Jacques Callot' +p228763 +sg225234 +S'engraving' +p228764 +sg225236 +S'1608/1611' +p228765 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083ca.jpg' +p228766 +sg225240 +g27 +sa(dp228767 +g225230 +S'The Conversion of Saint Paul' +p228768 +sg225232 +S'Jacques Callot' +p228769 +sg225234 +S'engraving' +p228770 +sg225236 +S'1608/1611' +p228771 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083f9.jpg' +p228772 +sg225240 +g27 +sa(dp228773 +g225230 +S'Sapphira Punished by Death' +p228774 +sg225232 +S'Jacques Callot' +p228775 +sg225234 +S'engraving' +p228776 +sg225236 +S'1608/1611' +p228777 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083f0.jpg' +p228778 +sg225240 +g27 +sa(dp228779 +g225230 +S'Fall of Simon the Magician' +p228780 +sg225232 +S'Jacques Callot' +p228781 +sg225234 +S'engraving' +p228782 +sg225236 +S'1608/1611' +p228783 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083e7.jpg' +p228784 +sg225240 +g27 +sa(dp228785 +g225230 +S'Peter Raising Tabitha' +p228786 +sg225232 +S'Jacques Callot' +p228787 +sg225234 +S'engraving' +p228788 +sg225236 +S'1608/1611' +p228789 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000842b.jpg' +p228790 +sg225240 +g27 +sa(dp228791 +g225230 +S'Peter and John Healing the Lame' +p228792 +sg225232 +S'Jacques Callot' +p228793 +sg225234 +S'engraving' +p228794 +sg225236 +S'1608/1611' +p228795 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008403.jpg' +p228796 +sg225240 +g27 +sa(dp228797 +g225230 +S'Martyrdom of Saint Peter' +p228798 +sg225232 +S'Jacques Callot' +p228799 +sg225234 +S'engraving' +p228800 +sg225236 +S'1608/1611' +p228801 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008421.jpg' +p228802 +sg225240 +g27 +sa(dp228803 +g225230 +S'Christ Walking on the Water [first plate]' +p228804 +sg225232 +S'Jacques Callot' +p228805 +sg225234 +S'engraving' +p228806 +sg225236 +S'1608/1611' +p228807 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000840d.jpg' +p228808 +sg225240 +g27 +sa(dp228809 +g225230 +S'Christ Walking on the Water [second plate]' +p228810 +sg225232 +S'Jacques Callot' +p228811 +sg225234 +S'engraving' +p228812 +sg225236 +S'1608/1611' +p228813 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008435.jpg' +p228814 +sg225240 +g27 +sa(dp228815 +g225230 +S'The Assumption' +p228816 +sg225232 +S'Jacques Callot' +p228817 +sg225234 +S'engraving' +p228818 +sg225236 +S'1608/1611' +p228819 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008417.jpg' +p228820 +sg225240 +g27 +sa(dp228821 +g225230 +S'Saint Jerome Instructing his Disciples in the Desert' +p228822 +sg225232 +S'Jacques Callot' +p228823 +sg225234 +S'engraving' +p228824 +sg225236 +S'1608/1611' +p228825 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083dd.jpg' +p228826 +sg225240 +g27 +sa(dp228827 +g225230 +S'Saint Basil Celebrating the Mass' +p228828 +sg225232 +S'Jacques Callot' +p228829 +sg225234 +S'engraving' +p228830 +sg225236 +S'1608/1611' +p228831 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000843e.jpg' +p228832 +sg225240 +g27 +sa(dp228833 +g225230 +S'Death of Saint Benedict' +p228834 +sg225232 +S'Jacques Callot' +p228835 +sg225234 +S'engraving' +p228836 +sg225236 +S'1608/1611' +p228837 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083c0.jpg' +p228838 +sg225240 +g27 +sa(dp228839 +g225230 +S'The Entombment' +p228840 +sg225232 +S'Artist Information (' +p228841 +sg225234 +S'(artist after)' +p228842 +sg225236 +S'\n' +p228843 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000839f.jpg' +p228844 +sg225240 +g27 +sa(dp228845 +g225230 +S'Side Aisle of San Lorenzo, Florence' +p228846 +sg225232 +S'Jacques Callot' +p228847 +sg225234 +S'etching' +p228848 +sg225236 +S'1612' +p228849 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000844f.jpg' +p228850 +sg225240 +g27 +sa(dp228851 +g225230 +S'Facade of San Lorenzo, Florence' +p228852 +sg225232 +S'Jacques Callot' +p228853 +sg225234 +S'etching' +p228854 +sg225236 +S'1612' +p228855 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000845b.jpg' +p228856 +sg225240 +g27 +sa(dp228857 +g225230 +S'The Catafalque' +p228858 +sg225232 +S'Jacques Callot' +p228859 +sg225234 +S'etching' +p228860 +sg225236 +S'1612' +p228861 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008468.jpg' +p228862 +sg225240 +g27 +sa(dp228863 +g225230 +S'Entry into Ferrara [recto]' +p228864 +sg225232 +S'Jacques Callot' +p228865 +sg225234 +S'etching' +p228866 +sg225236 +S'1612' +p228867 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000837e.jpg' +p228868 +sg225240 +g27 +sa(dp228869 +g225230 +S'Papal Audience [verso]' +p228870 +sg225232 +S'Jacques Callot' +p228871 +sg225234 +S'etching' +p228872 +sg225236 +S'1612' +p228873 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008373.jpg' +p228874 +sg225240 +g27 +sa(dp228875 +g225230 +S'Reception at Mantua [recto]' +p228876 +sg225232 +S'Jacques Callot' +p228877 +sg225234 +S'etching' +p228878 +sg225236 +S'1612' +p228879 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008394.jpg' +p228880 +sg225240 +g27 +sa(dp228881 +g225230 +S'The Betrothal of Margaret of Austria to Philip III, King of Spain [verso]' +p228882 +sg225232 +S'Raffaello Schiaminossi' +p228883 +sg225234 +S'etching' +p228884 +sg225236 +S'1612' +p228885 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008389.jpg' +p228886 +sg225240 +g27 +sa(dp228887 +g225230 +S'Embarkation at Genoa [recto]' +p228888 +sg225232 +S'Jacques Callot' +p228889 +sg225234 +S'etching' +p228890 +sg225236 +S'1612' +p228891 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008368.jpg' +p228892 +sg225240 +g27 +sa(dp228893 +g225230 +S'Spanish Duke Before Margaret of Austria [verso]' +p228894 +sg225232 +S'Antonio Tempesta' +p228895 +sg225234 +S'etching' +p228896 +sg225236 +S'1612' +p228897 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006788.jpg' +p228898 +sg225240 +g27 +sa(dp228899 +g225230 +S'Arrival at Valencia [recto]' +p228900 +sg225232 +S'Jacques Callot' +p228901 +sg225234 +S'etching' +p228902 +sg225236 +S'1612' +p228903 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000835d.jpg' +p228904 +sg225240 +g27 +sa(dp228905 +g225230 +S'Margaret of Austria Giving Audience to a Nobleman [verso]' +p228906 +sg225232 +S'Raffaello Schiaminossi' +p228907 +sg225234 +S'etching' +p228908 +sg225236 +S'1612' +p228909 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008352.jpg' +p228910 +sg225240 +g27 +sa(dp228911 +g225230 +S'Meeting of Margaret of Austria and Philip III [recto]' +p228912 +sg225232 +S'Jacques Callot' +p228913 +sg225234 +S'etching' +p228914 +sg225236 +S'1612' +p228915 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008442.jpg' +p228916 +sg225240 +g27 +sa(dp228917 +g225230 +S'Marriage of Margaret of Austria and Philip III [verso]' +p228918 +sg225232 +S'Jacques Callot' +p228919 +sg225234 +S'etching' +p228920 +sg225236 +S'1612' +p228921 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008438.jpg' +p228922 +sg225240 +g27 +sa(dp228923 +g225230 +S'Storm off the Coast of Barcelona [recto]' +p228924 +sg225232 +S'Jacques Callot' +p228925 +sg225234 +S'etching' +p228926 +sg225236 +S'1612' +p228927 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083af.jpg' +p228928 +sg225240 +g27 +sa(dp228929 +g225230 +S'Baptism of the Prince of Spain [verso]' +p228930 +sg225232 +S'Jacques Callot' +p228931 +sg225234 +S'etching' +p228932 +sg225236 +S'1612' +p228933 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083a4.jpg' +p228934 +sg225240 +g27 +sa(dp228935 +g225230 +S'King and Queen in Consultation about the Turks [recto]' +p228936 +sg225232 +S'Jacques Callot' +p228937 +sg225234 +S'etching' +p228938 +sg225236 +S'1612' +p228939 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008399.jpg' +p228940 +sg225240 +g27 +sa(dp228941 +g225230 +S'Philip as a Boy Before Margaret of Austria [verso]' +p228942 +sg225232 +S'Antonio Tempesta' +p228943 +sg225234 +S'etching' +p228944 +sg225236 +S'1612' +p228945 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000838e.jpg' +p228946 +sg225240 +g27 +sa(dp228947 +g225230 +S'A Capucin bringing the thanks of the King of Bavaria [recto]' +p228948 +sg225232 +S'Jacques Callot' +p228949 +sg225234 +S'etching' +p228950 +sg225236 +S'1612' +p228951 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083c4.jpg' +p228952 +sg225240 +g27 +sa(dp228953 +g225230 +S'The Queen Laying the First Stone for the Church of the Poor Clares in Spain [verso]' +p228954 +sg225232 +S'Jacques Callot' +p228955 +sg225234 +S'etching' +p228956 +sg225236 +S'1612' +p228957 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083ba.jpg' +p228958 +sg225240 +g27 +sa(dp228959 +g225230 +S'Reception of the Envoy of Poland [recto]' +p228960 +sg225232 +S'Jacques Callot' +p228961 +sg225234 +S'etching' +p228962 +sg225236 +S'1612' +p228963 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083d7.jpg' +p228964 +sg225240 +g27 +sa(dp228965 +g225230 +S'The Envoy of Tuscany thanking the Queen [verso]' +p228966 +sg225232 +S'Jacques Callot' +p228967 +sg225234 +S'etching' +p228968 +sg225236 +S'1612' +p228969 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083ce.jpg' +p228970 +sg225240 +g27 +sa(dp228971 +g225230 +S'Death of the Queen' +p228972 +sg225232 +S'Jacques Callot' +p228973 +sg225234 +S'etching' +p228974 +sg225236 +S'1612' +p228975 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008383.jpg' +p228976 +sg225240 +g27 +sa(dp228977 +g225230 +S'The Holy Family' +p228978 +sg225232 +S'Artist Information (' +p228979 +sg225234 +S'(artist after)' +p228980 +sg225236 +S'\n' +p228981 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a8b.jpg' +p228982 +sg225240 +g27 +sa(dp228983 +g225230 +S'The Holy Family' +p228984 +sg225232 +S'Artist Information (' +p228985 +sg225234 +S'(artist after)' +p228986 +sg225236 +S'\n' +p228987 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a8a.jpg' +p228988 +sg225240 +g27 +sa(dp228989 +g225230 +S'The Holy Family with Two Angels' +p228990 +sg225232 +S'Jacques Callot' +p228991 +sg225234 +S'etching' +p228992 +sg225236 +S'unknown date\n' +p228993 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008429.jpg' +p228994 +sg225240 +g27 +sa(dp228995 +g225230 +S'Ecce Homo' +p228996 +sg225232 +S'Jacques Callot' +p228997 +sg225234 +S'engraving' +p228998 +sg225236 +S'1613' +p228999 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a88.jpg' +p229000 +sg225240 +g27 +sa(dp229001 +g225230 +S'Painting of the Annunciation' +p229002 +sg225232 +S'Jacques Callot' +p229003 +sg225234 +S'engraving' +p229004 +sg225236 +S'1619' +p229005 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000843c.jpg' +p229006 +sg225240 +g27 +sa(dp229007 +g225230 +S'The Child' +p229008 +sg225232 +S'Artist Information (' +p229009 +sg225234 +S'(artist after)' +p229010 +sg225236 +S'\n' +p229011 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008357.jpg' +p229012 +sg225240 +g27 +sa(dp229013 +g225230 +S'The Decapitated' +p229014 +sg225232 +S'Artist Information (' +p229015 +sg225234 +S'(artist after)' +p229016 +sg225236 +S'\n' +p229017 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008362.jpg' +p229018 +sg225240 +g27 +sa(dp229019 +g225230 +S'The Hangman' +p229020 +sg225232 +S'Artist Information (' +p229021 +sg225234 +S'(artist after)' +p229022 +sg225236 +S'\n' +p229023 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008447.jpg' +p229024 +sg225240 +g27 +sa(dp229025 +g225230 +S'Knight of Malta' +p229026 +sg225232 +S'Artist Information (' +p229027 +sg225234 +S'(artist after)' +p229028 +sg225236 +S'\n' +p229029 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008454.jpg' +p229030 +sg225240 +g27 +sa(dp229031 +g225230 +S'Giovanni Fieschi' +p229032 +sg225232 +S'Artist Information (' +p229033 +sg225234 +S'(artist after)' +p229034 +sg225236 +S'\n' +p229035 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008460.jpg' +p229036 +sg225240 +g27 +sa(dp229037 +g225230 +S"Hercule d'Este" +p229038 +sg225232 +S'Artist Information (' +p229039 +sg225234 +S'(artist after)' +p229040 +sg225236 +S'\n' +p229041 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000846d.jpg' +p229042 +sg225240 +g27 +sa(dp229043 +g225230 +S'Queen of Cyprus' +p229044 +sg225232 +S'Artist Information (' +p229045 +sg225234 +S'(artist after)' +p229046 +sg225236 +S'\n' +p229047 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000836d.jpg' +p229048 +sg225240 +g27 +sa(dp229049 +g225230 +S'Innocent VIII' +p229050 +sg225232 +S'Jacques Callot' +p229051 +sg225234 +S'engraving' +p229052 +sg225236 +S'1619' +p229053 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000847a.jpg' +p229054 +sg225240 +g27 +sa(dp229055 +g225230 +S'Bartolomeo, Farrier' +p229056 +sg225232 +S'Artist Information (' +p229057 +sg225234 +S'(artist after)' +p229058 +sg225236 +S'\n' +p229059 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008487.jpg' +p229060 +sg225240 +g27 +sa(dp229061 +g225230 +S'The Delivered Servant' +p229062 +sg225232 +S'Artist Information (' +p229063 +sg225234 +S'(artist after)' +p229064 +sg225236 +S'\n' +p229065 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008378.jpg' +p229066 +sg225240 +g27 +sa(dp229067 +g225230 +S'The Cured Sick Person' +p229068 +sg225232 +S'Artist Information (' +p229069 +sg225234 +S'(artist after)' +p229070 +sg225236 +S'\n' +p229071 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008495.jpg' +p229072 +sg225240 +g27 +sa(dp229073 +g225230 +S'Antonio Zingano' +p229074 +sg225232 +S'Artist Information (' +p229075 +sg225234 +S'(artist after)' +p229076 +sg225236 +S'\n' +p229077 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000833f.jpg' +p229078 +sg225240 +g27 +sa(dp229079 +g225230 +S'Niccolo' +p229080 +sg225232 +S'Artist Information (' +p229081 +sg225234 +S'(artist after)' +p229082 +sg225236 +S'\n' +p229083 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000834d.jpg' +p229084 +sg225240 +g27 +sa(dp229085 +g225230 +S'Bartolomeo' +p229086 +sg225232 +S'Artist Information (' +p229087 +sg225234 +S'(artist after)' +p229088 +sg225236 +S'\n' +p229089 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083c8.jpg' +p229090 +sg225240 +g27 +sa(dp229091 +g225230 +S'Pietro Soderini' +p229092 +sg225232 +S'Artist Information (' +p229093 +sg225234 +S'(artist after)' +p229094 +sg225236 +S'\n' +p229095 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000840b.jpg' +p229096 +sg225240 +g27 +sa(dp229097 +g225230 +S'Pietro dal Monte' +p229098 +sg225232 +S'Artist Information (' +p229099 +sg225234 +S'(artist after)' +p229100 +sg225236 +S'\n' +p229101 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083db.jpg' +p229102 +sg225240 +g27 +sa(dp229103 +g225230 +S'Spadino' +p229104 +sg225232 +S'Jacques Callot' +p229105 +sg225234 +S'engraving' +p229106 +sg225236 +S'1619' +p229107 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083d2.jpg' +p229108 +sg225240 +g27 +sa(dp229109 +g225230 +S'Accursio' +p229110 +sg225232 +S'Jacques Callot' +p229111 +sg225234 +S'engraving' +p229112 +sg225236 +S'1619' +p229113 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083e5.jpg' +p229114 +sg225240 +g27 +sa(dp229115 +g225230 +S'Rocco' +p229116 +sg225232 +S'Artist Information (' +p229117 +sg225234 +S'(artist after)' +p229118 +sg225236 +S'\n' +p229119 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083b3.jpg' +p229120 +sg225240 +g27 +sa(dp229121 +g225230 +S'Domenico di Giusto' +p229122 +sg225232 +S'Artist Information (' +p229123 +sg225234 +S'(artist after)' +p229124 +sg225236 +S'\n' +p229125 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008415.jpg' +p229126 +sg225240 +g27 +sa(dp229127 +g225230 +S'Margherita' +p229128 +sg225232 +S'Artist Information (' +p229129 +sg225234 +S'(artist after)' +p229130 +sg225236 +S'\n' +p229131 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083f7.jpg' +p229132 +sg225240 +g27 +sa(dp229133 +g225230 +S'Gioanni' +p229134 +sg225232 +S'Jacques Callot' +p229135 +sg225234 +S'engraving' +p229136 +sg225236 +S'1619' +p229137 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000841f.jpg' +p229138 +sg225240 +g27 +sa(dp229139 +g225230 +S'Antonia' +p229140 +sg225232 +S'Artist Information (' +p229141 +sg225234 +S'(artist after)' +p229142 +sg225236 +S'\n' +p229143 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083be.jpg' +p229144 +sg225240 +g27 +sa(dp229145 +g225230 +S'Lionardo' +p229146 +sg225232 +S'Artist Information (' +p229147 +sg225234 +S'(artist after)' +p229148 +sg225236 +S'\n' +p229149 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083a8.jpg' +p229150 +sg225240 +g27 +sa(dp229151 +g225230 +S'Mariotto di Martino' +p229152 +sg225232 +S'Jacques Callot' +p229153 +sg225234 +S'engraving' +p229154 +sg225236 +S'1619' +p229155 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083ee.jpg' +p229156 +sg225240 +g27 +sa(dp229157 +g225230 +S'Domenico' +p229158 +sg225232 +S'Artist Information (' +p229159 +sg225234 +S'(artist after)' +p229160 +sg225236 +S'\n' +p229161 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008401.jpg' +p229162 +sg225240 +g27 +sa(dp229163 +g225230 +S'Maddalena' +p229164 +sg225232 +S'Artist Information (' +p229165 +sg225234 +S'(artist after)' +p229166 +sg225236 +S'\n' +p229167 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000839d.jpg' +p229168 +sg225240 +g27 +sa(dp229169 +g225230 +S'Bernardo' +p229170 +sg225232 +S'Jacques Callot' +p229171 +sg225234 +S'engraving' +p229172 +sg225236 +S'1619' +p229173 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000849c.jpg' +p229174 +sg225240 +g27 +sa(dp229175 +g225230 +S'The Captain' +p229176 +sg225232 +S'Artist Information (' +p229177 +sg225234 +S'(artist after)' +p229178 +sg225236 +S'\n' +p229179 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00082/a00082c2.jpg' +p229180 +sg225240 +g27 +sa(dp229181 +g225230 +S'Mariotto' +p229182 +sg225232 +S'Jacques Callot' +p229183 +sg225234 +S'engraving' +p229184 +sg225236 +S'1619' +p229185 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008392.jpg' +p229186 +sg225240 +g27 +sa(dp229187 +g225230 +S'Sino' +p229188 +sg225232 +S'Artist Information (' +p229189 +sg225234 +S'(artist after)' +p229190 +sg225236 +S'\n' +p229191 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008346.jpg' +p229192 +sg225240 +g27 +sa(dp229193 +g225230 +S'Marco Cambini' +p229194 +sg225232 +S'Artist Information (' +p229195 +sg225234 +S'(artist after)' +p229196 +sg225236 +S'\n' +p229197 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000835b.jpg' +p229198 +sg225240 +g27 +sa(dp229199 +g225230 +S'Francesco' +p229200 +sg225232 +S'Artist Information (' +p229201 +sg225234 +S'(artist after)' +p229202 +sg225236 +S'\n' +p229203 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008366.jpg' +p229204 +sg225240 +g27 +sa(dp229205 +g225230 +S'Gherardo' +p229206 +sg225232 +S'Artist Information (' +p229207 +sg225234 +S'(artist after)' +p229208 +sg225236 +S'\n' +p229209 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008371.jpg' +p229210 +sg225240 +g27 +sa(dp229211 +g225230 +S'Bastiano' +p229212 +sg225232 +S'Artist Information (' +p229213 +sg225234 +S'(artist after)' +p229214 +sg225236 +S'\n' +p229215 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008473.jpg' +p229216 +sg225240 +g27 +sa(dp229217 +g225230 +S'Martino' +p229218 +sg225232 +S'Artist Information (' +p229219 +sg225234 +S'(artist after)' +p229220 +sg225236 +S'\n' +p229221 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000837c.jpg' +p229222 +sg225240 +g27 +sa(dp229223 +g225230 +S'Bernardino' +p229224 +sg225232 +S'Artist Information (' +p229225 +sg225234 +S'(artist after)' +p229226 +sg225236 +S'\n' +p229227 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008387.jpg' +p229228 +sg225240 +g27 +sa(dp229229 +g225230 +S'The Oppressed Woman' +p229230 +sg225232 +S'Artist Information (' +p229231 +sg225234 +S'(artist after)' +p229232 +sg225236 +S'\n' +p229233 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000848e.jpg' +p229234 +sg225240 +g27 +sa(dp229235 +g225230 +S'Four Women' +p229236 +sg225232 +S'Artist Information (' +p229237 +sg225234 +S'(artist after)' +p229238 +sg225236 +S'\n' +p229239 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008480.jpg' +p229240 +sg225240 +g27 +sa(dp229241 +g225230 +S'Grand Duchess at the Procession of the Young Girls' +p229242 +sg225232 +S'Jacques Callot' +p229243 +sg225234 +S'engraving' +p229244 +sg225236 +S'c. 1614' +p229245 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a8d.jpg' +p229246 +sg225240 +g27 +sa(dp229247 +g225230 +S'Restoration of the Duomo, Florence' +p229248 +sg225232 +S'Jacques Callot' +p229249 +sg225234 +S'engraving' +p229250 +sg225236 +S'c. 1614' +p229251 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a92.jpg' +p229252 +sg225240 +g27 +sa(dp229253 +g225230 +S'Construction and Fortification of the Port of Livorno' +p229254 +sg225232 +S'Jacques Callot' +p229255 +sg225234 +S'engraving' +p229256 +sg225236 +S'c. 1614' +p229257 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a91.jpg' +p229258 +sg225240 +g27 +sa(dp229259 +g225230 +S'Construction and Fortification of the Port of Livorno' +p229260 +sg225232 +S'Jacques Callot' +p229261 +sg225234 +S'engraving' +p229262 +sg225236 +S'c. 1614' +p229263 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a8e.jpg' +p229264 +sg225240 +g27 +sa(dp229265 +g225230 +S'Restoration of the Aqueduct at Pisa' +p229266 +sg225232 +S'Jacques Callot' +p229267 +sg225234 +S'engraving' +p229268 +sg225236 +S'c. 1614' +p229269 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a8f.jpg' +p229270 +sg225240 +g27 +sa(dp229271 +g225230 +S'Restoration of the Aqueduct at Pisa' +p229272 +sg225232 +S'Jacques Callot' +p229273 +sg225234 +S'engraving' +p229274 +sg225236 +S'c. 1614' +p229275 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a90.jpg' +p229276 +sg225240 +g27 +sa(dp229277 +g225230 +S'The Hiring of the Troops' +p229278 +sg225232 +S'Jacques Callot' +p229279 +sg225234 +S'engraving' +p229280 +sg225236 +S'c. 1614' +p229281 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a9d.jpg' +p229282 +sg225240 +g27 +sa(dp229283 +g225230 +S'The Troops on the March' +p229284 +sg225232 +S'Jacques Callot' +p229285 +sg225234 +S'engraving' +p229286 +sg225236 +S'c. 1614' +p229287 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a96.jpg' +p229288 +sg225240 +g27 +sa(dp229289 +g225230 +S'The Re-embarkation of the Troops' +p229290 +sg225232 +S'Jacques Callot' +p229291 +sg225234 +S'engraving' +p229292 +sg225236 +S'c. 1614' +p229293 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a9a.jpg' +p229294 +sg225240 +g27 +sa(dp229295 +g225230 +S'The Re-embarkation of the Troops' +p229296 +sg225232 +S'Jacques Callot' +p229297 +sg225234 +S'engraving' +p229298 +sg225236 +S'c. 1614' +p229299 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a97.jpg' +p229300 +sg225240 +g27 +sa(dp229301 +g225230 +S'The Troops Forcing the Gate of a Town' +p229302 +sg225232 +S'Jacques Callot' +p229303 +sg225234 +S'engraving' +p229304 +sg225236 +S'c. 1614' +p229305 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a9c.jpg' +p229306 +sg225240 +g27 +sa(dp229307 +g225230 +S'The Second Naval Battle' +p229308 +sg225232 +S'Jacques Callot' +p229309 +sg225234 +S'engraving' +p229310 +sg225236 +S'c. 1614' +p229311 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aa1.jpg' +p229312 +sg225240 +g27 +sa(dp229313 +g225230 +S'Assault on the Outer Forts of Bone' +p229314 +sg225232 +S'Jacques Callot' +p229315 +sg225234 +S'engraving' +p229316 +sg225236 +S'c. 1614' +p229317 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a9f.jpg' +p229318 +sg225240 +g27 +sa(dp229319 +g225230 +S'Taking of Bone' +p229320 +sg225232 +S'Jacques Callot' +p229321 +sg225234 +S'engraving' +p229322 +sg225236 +S'c. 1614' +p229323 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a99.jpg' +p229324 +sg225240 +g27 +sa(dp229325 +g225230 +S'Assault on Two Fortresses' +p229326 +sg225232 +S'Jacques Callot' +p229327 +sg225234 +S'engraving' +p229328 +sg225236 +S'c. 1614' +p229329 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a9b.jpg' +p229330 +sg225240 +g27 +sa(dp229331 +g225230 +S'Crowning of the Grand Duchess' +p229332 +sg225232 +S'Jacques Callot' +p229333 +sg225234 +S'engraving' +p229334 +sg225236 +S'c. 1614' +p229335 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a95.jpg' +p229336 +sg225240 +g27 +sa(dp229337 +g225230 +S'Saint Paul, Seated' +p229338 +sg225232 +S'Jacques Callot' +p229339 +sg225234 +S'engraving' +p229340 +sg225236 +S'unknown date\n' +p229341 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ab9.jpg' +p229342 +sg225240 +g27 +sa(dp229343 +g225230 +S'The Assumption with the Cherubin' +p229344 +sg225232 +S'Jacques Callot' +p229345 +sg225234 +S'etching' +p229346 +sg225236 +S'unknown date\n' +p229347 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083d5.jpg' +p229348 +sg225240 +g27 +sa(dp229349 +g225230 +S'The Small Carrying of the Cross' +p229350 +sg225232 +S'Jacques Callot' +p229351 +sg225234 +S'etching' +p229352 +sg225236 +S'unknown date\n' +p229353 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083e9.jpg' +p229354 +sg225240 +g27 +sa(dp229355 +g225230 +S'Piazza Publicca, Siena' +p229356 +sg225232 +S'Jacques Callot' +p229357 +sg225234 +S'etching' +p229358 +sg225236 +S'unknown date\n' +p229359 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083c2.jpg' +p229360 +sg225240 +g27 +sa(dp229361 +g225230 +S'The Attack' +p229362 +sg225232 +S'Jacques Callot' +p229363 +sg225234 +S'etching' +p229364 +sg225236 +S'1617' +p229365 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000844d.jpg' +p229366 +sg225240 +g27 +sa(dp229367 +g225230 +S'Boarding of the Bertone' +p229368 +sg225232 +S'Jacques Callot' +p229369 +sg225234 +S'etching' +p229370 +sg225236 +S'1617' +p229371 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008466.jpg' +p229372 +sg225240 +g27 +sa(dp229373 +g225230 +S'Boarding of the Petaccio' +p229374 +sg225232 +S'Jacques Callot' +p229375 +sg225234 +S'etching' +p229376 +sg225236 +S'1617' +p229377 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008419.jpg' +p229378 +sg225240 +g27 +sa(dp229379 +g225230 +S'The Prize' +p229380 +sg225232 +S'Jacques Callot' +p229381 +sg225234 +S'etching' +p229382 +sg225236 +S'1617' +p229383 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008423.jpg' +p229384 +sg225240 +g27 +sa(dp229385 +g225230 +S'Frontispiece for "Varie Figure"' +p229386 +sg225232 +S'Jacques Callot' +p229387 +sg225234 +S'etching' +p229388 +sg225236 +S'c. 1621' +p229389 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008585.jpg' +p229390 +sg225240 +g27 +sa(dp229391 +g225230 +S'Peasant Couple at Rest' +p229392 +sg225232 +S'Jacques Callot' +p229393 +sg225234 +S'etching' +p229394 +sg225236 +S'c. 1621' +p229395 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008587.jpg' +p229396 +sg225240 +g27 +sa(dp229397 +g225230 +S'Peasant Couple with Cow' +p229398 +sg225232 +S'Jacques Callot' +p229399 +sg225234 +S'etching' +p229400 +sg225236 +S'c. 1621' +p229401 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008586.jpg' +p229402 +sg225240 +g27 +sa(dp229403 +g225230 +S'Peasant Woman with Basket, Seen from Behind' +p229404 +sg225232 +S'Jacques Callot' +p229405 +sg225234 +S'etching' +p229406 +sg225236 +S'1617 and 1621' +p229407 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000834a.jpg' +p229408 +sg225240 +g27 +sa(dp229409 +g225230 +S'Peasant Woman with Basket, in Profile, Facing Right' +p229410 +sg225232 +S'Jacques Callot' +p229411 +sg225234 +S'etching' +p229412 +sg225236 +S'1617 and 1621' +p229413 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000833c.jpg' +p229414 +sg225240 +g27 +sa(dp229415 +g225230 +S'Peasant Woman with Basket on Head, Front View' +p229416 +sg225232 +S'Jacques Callot' +p229417 +sg225234 +S'etching' +p229418 +sg225236 +S'1617 and 1621' +p229419 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000838b.jpg' +p229420 +sg225240 +g27 +sa(dp229421 +g225230 +S'Peasant Woman with Basket, in Profile, Facing Left' +p229422 +sg225232 +S'Jacques Callot' +p229423 +sg225234 +S'etching' +p229424 +sg225236 +S'1617 and 1621' +p229425 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008380.jpg' +p229426 +sg225240 +g27 +sa(dp229427 +g225230 +S'Peasant Woman, in Profile, Facing Right, with Arm Extended' +p229428 +sg225232 +S'Jacques Callot' +p229429 +sg225234 +S'etching' +p229430 +sg225236 +S'1617 and 1621' +p229431 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000835f.jpg' +p229432 +sg225240 +g27 +sa(dp229433 +g225230 +S'Peasant Woman, in Profile, Facing Left' +p229434 +sg225232 +S'Jacques Callot' +p229435 +sg225234 +S'etching' +p229436 +sg225236 +S'1617 and 1621' +p229437 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008354.jpg' +p229438 +sg225240 +g27 +sa(dp229439 +g225230 +S'Officer, with Arm Extended, Front View' +p229440 +sg225232 +S'Jacques Callot' +p229441 +sg225234 +S'etching' +p229442 +sg225236 +S'1617 and 1621' +p229443 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008492.jpg' +p229444 +sg225240 +g27 +sa(dp229445 +g225230 +S'Officer, Front View' +p229446 +sg225232 +S'Jacques Callot' +p229447 +sg225234 +S'etching' +p229448 +sg225236 +S'1617 and 1621' +p229449 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008484.jpg' +p229450 +sg225240 +g27 +sa(dp229451 +g225230 +S'Man in Cloak, Seen from Behind' +p229452 +sg225232 +S'Jacques Callot' +p229453 +sg225234 +S'etching' +p229454 +sg225236 +S'1617 and 1621' +p229455 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008431.jpg' +p229456 +sg225240 +g27 +sa(dp229457 +g225230 +S'Officer with Large Plume, Front View' +p229458 +sg225232 +S'Jacques Callot' +p229459 +sg225234 +S'etching' +p229460 +sg225236 +S'1617 and 1621' +p229461 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008427.jpg' +p229462 +sg225240 +g27 +sa(dp229463 +g225230 +S'Officer with Feathers in Cap, Seen from Behind' +p229464 +sg225232 +S'Jacques Callot' +p229465 +sg225234 +S'etching' +p229466 +sg225236 +S'1617 and 1621' +p229467 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000845d.jpg' +p229468 +sg225240 +g27 +sa(dp229469 +g225230 +S'Officer with Plume, Seen from Behind' +p229470 +sg225232 +S'Jacques Callot' +p229471 +sg225234 +S'etching' +p229472 +sg225236 +S'1617 and 1621' +p229473 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008451.jpg' +p229474 +sg225240 +g27 +sa(dp229475 +g225230 +S'Two Turks' +p229476 +sg225232 +S'Jacques Callot' +p229477 +sg225234 +S'etching' +p229478 +sg225236 +S'1617 and 1621' +p229479 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083ff.jpg' +p229480 +sg225240 +g27 +sa(dp229481 +g225230 +S'The Young Jesus' +p229482 +sg225232 +S'Jacques Callot' +p229483 +sg225234 +S'etching' +p229484 +sg225236 +S'unknown date\n' +p229485 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000851e.jpg' +p229486 +sg225240 +g27 +sa(dp229487 +g225230 +S'The Supper at Emmaus' +p229488 +sg225232 +S'Jacques Callot' +p229489 +sg225234 +S'etching' +p229490 +sg225236 +S'1618' +p229491 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008545.jpg' +p229492 +sg225240 +g27 +sa(dp229493 +g225230 +S'The Marriage at Cana' +p229494 +sg225232 +S'Jacques Callot' +p229495 +sg225234 +S'etching' +p229496 +sg225236 +S'1618' +p229497 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008542.jpg' +p229498 +sg225240 +g27 +sa(dp229499 +g225230 +S'The Feast of the Pharisees' +p229500 +sg225232 +S'Jacques Callot' +p229501 +sg225234 +S'etching' +p229502 +sg225236 +S'1618' +p229503 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008543.jpg' +p229504 +sg225240 +g27 +sa(dp229505 +g225230 +S'The Last Supper' +p229506 +sg225232 +S'Jacques Callot' +p229507 +sg225234 +S'etching' +p229508 +sg225236 +S'1618' +p229509 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008544.jpg' +p229510 +sg225240 +g27 +sa(dp229511 +g225230 +S'The Fan' +p229512 +sg225232 +S'Jacques Callot' +p229513 +sg225234 +S'etching and engraving' +p229514 +sg225236 +S'1619' +p229515 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ac1.jpg' +p229516 +sg225240 +g27 +sa(dp229517 +g225230 +S'The Holy Trinity in the Tree of Life, Adored by Franciscans' +p229518 +sg225232 +S'Jacques Callot' +p229519 +sg225234 +S'etching' +p229520 +sg225236 +S'in or after 1621' +p229521 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ab8.jpg' +p229522 +sg225240 +g27 +sa(dp229523 +g225230 +S'La belle jardiniere' +p229524 +sg225232 +S'Jacques Callot' +p229525 +sg225234 +S'etching' +p229526 +sg225236 +S'1619' +p229527 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000852e.jpg' +p229528 +sg225240 +g27 +sa(dp229529 +g225230 +S'Giovanni Domenico Peri' +p229530 +sg225232 +S'Jacques Callot' +p229531 +sg225234 +S'etching' +p229532 +sg225236 +S'1619' +p229533 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000852b.jpg' +p229534 +sg225240 +g27 +sa(dp229535 +g225232 +S'Artist Information (' +p229536 +sg225240 +g27 +sg225234 +S'(author)' +p229537 +sg225230 +S'Fiesole distrutta' +p229538 +sg225236 +S'\n' +p229539 +sa(dp229540 +g225232 +S'Jacques Callot' +p229541 +sg225240 +g27 +sg225234 +S'etching' +p229542 +sg225230 +S'La belle jardiniere' +p229543 +sg225236 +S'1619' +p229544 +sa(dp229545 +g225232 +S'Jacques Callot' +p229546 +sg225240 +g27 +sg225234 +S'etching' +p229547 +sg225230 +S'Giovanni Domenico Peri' +p229548 +sg225236 +S'1619' +p229549 +sa(dp229550 +g225230 +S'The Stag Hunt' +p229551 +sg225232 +S'Jacques Callot' +p229552 +sg225234 +S'etching' +p229553 +sg225236 +S'probably 1619' +p229554 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00033/a00033c9.jpg' +p229555 +sg225240 +g27 +sa(dp229556 +g225230 +S'The Stag Hunt' +p229557 +sg225232 +S'Jacques Callot' +p229558 +sg225234 +S'etching' +p229559 +sg225236 +S'probably 1619' +p229560 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008da1.jpg' +p229561 +sg225240 +g27 +sa(dp229562 +g225230 +S'Pride (Vanity)' +p229563 +sg225232 +S'Jacques Callot' +p229564 +sg225234 +S'etching and engraving' +p229565 +sg225236 +S'probably after 1621' +p229566 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000853b.jpg' +p229567 +sg225240 +g27 +sa(dp229568 +g225230 +S'Sloth' +p229569 +sg225232 +S'Jacques Callot' +p229570 +sg225234 +S'etching and engraving' +p229571 +sg225236 +S'probably after 1621' +p229572 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000853c.jpg' +p229573 +sg225240 +g27 +sa(dp229574 +g225230 +S'Gluttony' +p229575 +sg225232 +S'Jacques Callot' +p229576 +sg225234 +S'etching and engraving' +p229577 +sg225236 +S'probably after 1621' +p229578 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008540.jpg' +p229579 +sg225240 +g27 +sa(dp229580 +g225230 +S'Lust' +p229581 +sg225232 +S'Jacques Callot' +p229582 +sg225234 +S'etching and engraving' +p229583 +sg225236 +S'probably after 1621' +p229584 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008541.jpg' +p229585 +sg225240 +g27 +sa(dp229586 +g225230 +S'Envy' +p229587 +sg225232 +S'Jacques Callot' +p229588 +sg225234 +S'etching and engraving' +p229589 +sg225236 +S'probably after 1621' +p229590 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000853e.jpg' +p229591 +sg225240 +g27 +sa(dp229592 +g225230 +S'Anger' +p229593 +sg225232 +S'Jacques Callot' +p229594 +sg225234 +S'etching and engraving' +p229595 +sg225236 +S'probably after 1621' +p229596 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000853f.jpg' +p229597 +sg225240 +g27 +sa(dp229598 +g225230 +S'Greed' +p229599 +sg225232 +S'Jacques Callot' +p229600 +sg225234 +S'etching and engraving' +p229601 +sg225236 +S'probably after 1621' +p229602 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000853d.jpg' +p229603 +sg225240 +g27 +sa(dp229604 +g225230 +S'Title Page for "Il Solimano"' +p229605 +sg225232 +S'Jacques Callot' +p229606 +sg225234 +S'etching and engraving' +p229607 +sg225236 +S'1620' +p229608 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000852d.jpg' +p229609 +sg225240 +g27 +sa(dp229610 +g225232 +S'Artist Information (' +p229611 +sg225240 +g27 +sg225234 +S'(author)' +p229612 +sg225230 +S'Il Solimano' +p229613 +sg225236 +S'\n' +p229614 +sa(dp229615 +g225230 +S'The Slave Market' +p229616 +sg225232 +S'Jacques Callot' +p229617 +sg225234 +S'etching' +p229618 +sg225236 +S'1620' +p229619 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000854e.jpg' +p229620 +sg225240 +g27 +sa(dp229621 +g225230 +S'The Slave Market' +p229622 +sg225232 +S'Jacques Callot' +p229623 +sg225234 +S'etching' +p229624 +sg225236 +S'1629' +p229625 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000854d.jpg' +p229626 +sg225240 +g27 +sa(dp229627 +g225230 +S'The True Effigy of Saint Francis' +p229628 +sg225232 +S'Jacques Callot' +p229629 +sg225234 +S'etching' +p229630 +sg225236 +S'unknown date\n' +p229631 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008546.jpg' +p229632 +sg225240 +g27 +sa(dp229633 +g225230 +S'The Miracle of Saint Mansuy' +p229634 +sg225232 +S'Jacques Callot' +p229635 +sg225234 +S'etching' +p229636 +sg225236 +S'unknown date\n' +p229637 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ada.jpg' +p229638 +sg225240 +g27 +sa(dp229639 +g225230 +S'Frontispiece for the "Statutes of the Order of the Knights of Saint Stephen"' +p229640 +sg225232 +S'Jacques Callot' +p229641 +sg225234 +S'etching' +p229642 +sg225236 +S'unknown date\n' +p229643 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008547.jpg' +p229644 +sg225240 +g27 +sa(dp229645 +g225230 +S'Frontispiece for "Balli di Sfessania"' +p229646 +sg225232 +S'Jacques Callot' +p229647 +sg225234 +S'etching and engraving' +p229648 +sg225236 +S'c. 1622' +p229649 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008556.jpg' +p229650 +sg225240 +g27 +sa(dp229651 +g225230 +S'Cucorongna and Pernoualla' +p229652 +sg225232 +S'Jacques Callot' +p229653 +sg225234 +S'etching' +p229654 +sg225236 +S'c. 1622' +p229655 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008557.jpg' +p229656 +sg225240 +g27 +sa(dp229657 +g225230 +S'Cap. Cerimonia and Siga. Lavinia' +p229658 +sg225232 +S'Jacques Callot' +p229659 +sg225234 +S'etching' +p229660 +sg225236 +S'c. 1622' +p229661 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008558.jpg' +p229662 +sg225240 +g27 +sa(dp229663 +g225230 +S'Cicho Sgarra and Collo Francisco' +p229664 +sg225232 +S'Jacques Callot' +p229665 +sg225234 +S'etching' +p229666 +sg225236 +S'c. 1622' +p229667 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008567.jpg' +p229668 +sg225240 +g27 +sa(dp229669 +g225230 +S'Gian Fritello and Ciurlo' +p229670 +sg225232 +S'Jacques Callot' +p229671 +sg225234 +S'etching' +p229672 +sg225236 +S'c. 1622' +p229673 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008568.jpg' +p229674 +sg225240 +g27 +sa(dp229675 +g225230 +S'Guatsetto and Mestolino' +p229676 +sg225232 +S'Jacques Callot' +p229677 +sg225234 +S'etching' +p229678 +sg225236 +S'c. 1622' +p229679 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008566.jpg' +p229680 +sg225240 +g27 +sa(dp229681 +g225230 +S'Riciulina and Metzetin' +p229682 +sg225232 +S'Jacques Callot' +p229683 +sg225234 +S'etching' +p229684 +sg225236 +S'c. 1622' +p229685 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008565.jpg' +p229686 +sg225240 +g27 +sa(dp229687 +g225230 +S'Pulliciniello and Siga. Lucretia' +p229688 +sg225232 +S'Jacques Callot' +p229689 +sg225234 +S'etching' +p229690 +sg225236 +S'c. 1622' +p229691 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008564.jpg' +p229692 +sg225240 +g27 +sa(dp229693 +g225230 +S'Cap. Spessa Monti and Bagattino' +p229694 +sg225232 +S'Jacques Callot' +p229695 +sg225234 +S'etching' +p229696 +sg225236 +S'c. 1622' +p229697 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008569.jpg' +p229698 +sg225240 +g27 +sa(dp229699 +g225230 +S'Cap. Bonbardon and Cap. Grillo' +p229700 +sg225232 +S'Jacques Callot' +p229701 +sg225234 +S'etching' +p229702 +sg225236 +S'c. 1622' +p229703 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000856c.jpg' +p229704 +sg225240 +g27 +sa(dp229705 +g225230 +S'Cap. Esgangarato and Cap. Cocodrillo' +p229706 +sg225232 +S'Jacques Callot' +p229707 +sg225234 +S'etching' +p229708 +sg225236 +S'c. 1622' +p229709 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000856b.jpg' +p229710 +sg225240 +g27 +sa(dp229711 +g225230 +S'Cap. Mala Gamba amd Cap. Bellavita' +p229712 +sg225232 +S'Jacques Callot' +p229713 +sg225234 +S'etching' +p229714 +sg225236 +S'c. 1622' +p229715 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000856a.jpg' +p229716 +sg225240 +g27 +sa(dp229717 +g225230 +S'Cap. Babeo and Cucuba' +p229718 +sg225232 +S'Jacques Callot' +p229719 +sg225234 +S'etching' +p229720 +sg225236 +S'c. 1622' +p229721 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008463.jpg' +p229722 +sg225240 +g27 +sa(dp229723 +g225230 +S'Fracischina and Gian Farina' +p229724 +sg225232 +S'Jacques Callot' +p229725 +sg225234 +S'etching' +p229726 +sg225236 +S'c. 1622' +p229727 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008457.jpg' +p229728 +sg225240 +g27 +sa(dp229729 +g225230 +S'Razullo and Cucurucu' +p229730 +sg225232 +S'Jacques Callot' +p229731 +sg225234 +S'etching' +p229732 +sg225236 +S'c. 1622' +p229733 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008470.jpg' +p229734 +sg225240 +g27 +sa(dp229735 +g225230 +S'Pasquariello Truonno and Meo Squaquara' +p229736 +sg225232 +S'Jacques Callot' +p229737 +sg225234 +S'etching' +p229738 +sg225236 +S'c. 1622' +p229739 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000844a.jpg' +p229740 +sg225240 +g27 +sa(dp229741 +g225230 +S'Signa. Lucia and Trastullo' +p229742 +sg225232 +S'Jacques Callot' +p229743 +sg225234 +S'etching' +p229744 +sg225236 +S'c. 1622' +p229745 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008344.jpg' +p229746 +sg225240 +g27 +sa(dp229747 +g225230 +S'Cap. Cardoni and Maramao' +p229748 +sg225232 +S'Jacques Callot' +p229749 +sg225234 +S'etching' +p229750 +sg225236 +S'c. 1622' +p229751 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000848c.jpg' +p229752 +sg225240 +g27 +sa(dp229753 +g225230 +S'Taglia Cantoni and Fracasso' +p229754 +sg225232 +S'Jacques Callot' +p229755 +sg225234 +S'etching' +p229756 +sg225236 +S'c. 1622' +p229757 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000849a.jpg' +p229758 +sg225240 +g27 +sa(dp229759 +g225230 +S'Saint Amond' +p229760 +sg225232 +S'Jacques Callot' +p229761 +sg225234 +S'etching' +p229762 +sg225236 +S'1621' +p229763 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008acf.jpg' +p229764 +sg225240 +g27 +sa(dp229765 +g225230 +S'Frontispiece for "Varie Figure Gobbi"' +p229766 +sg225232 +S'Jacques Callot' +p229767 +sg225234 +S'etching and engraving' +p229768 +sg225236 +S'c. 1622' +p229769 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008590.jpg' +p229770 +sg225240 +g27 +sa(dp229771 +g225230 +S'Man Preparing to Draw his Sword' +p229772 +sg225232 +S'Jacques Callot' +p229773 +sg225234 +S'etching and engraving' +p229774 +sg225236 +S'c. 1622' +p229775 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008591.jpg' +p229776 +sg225240 +g27 +sa(dp229777 +g225230 +S'The Hooded Cripple' +p229778 +sg225232 +S'Jacques Callot' +p229779 +sg225234 +S'etching and engraving' +p229780 +sg225236 +S'c. 1622' +p229781 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000858e.jpg' +p229782 +sg225240 +g27 +sa(dp229783 +g225230 +S'The Hunchback with a Cane' +p229784 +sg225232 +S'Jacques Callot' +p229785 +sg225234 +S'etching and engraving' +p229786 +sg225236 +S'c. 1622' +p229787 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000858f.jpg' +p229788 +sg225240 +g27 +sa(dp229789 +g225230 +S'Cripple with Crutch and Wooden Leg' +p229790 +sg225232 +S'Jacques Callot' +p229791 +sg225234 +S'etching and engraving' +p229792 +sg225236 +S'c. 1622' +p229793 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000858c.jpg' +p229794 +sg225240 +g27 +sa(dp229795 +g225230 +S'The Drinker, Front View' +p229796 +sg225232 +S'Jacques Callot' +p229797 +sg225234 +S'etching and engraving' +p229798 +sg225236 +S'c. 1622' +p229799 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000858d.jpg' +p229800 +sg225240 +g27 +sa(dp229801 +g225230 +S'The Drinker, Back View' +p229802 +sg225232 +S'Jacques Callot' +p229803 +sg225234 +S'etching and engraving' +p229804 +sg225236 +S'c. 1622' +p229805 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000858a.jpg' +p229806 +sg225240 +g27 +sa(dp229807 +g225230 +S'Duellist with Two Sabers' +p229808 +sg225232 +S'Jacques Callot' +p229809 +sg225234 +S'etching and engraving' +p229810 +sg225236 +S'c. 1622' +p229811 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000858b.jpg' +p229812 +sg225240 +g27 +sa(dp229813 +g225230 +S'Duellist with Sword and Dagger' +p229814 +sg225232 +S'Jacques Callot' +p229815 +sg225234 +S'etching and engraving' +p229816 +sg225236 +S'c. 1622' +p229817 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008588.jpg' +p229818 +sg225240 +g27 +sa(dp229819 +g225230 +S'Man with Big Belly' +p229820 +sg225232 +S'Jacques Callot' +p229821 +sg225234 +S'etching and engraving' +p229822 +sg225236 +S'c. 1622' +p229823 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008589.jpg' +p229824 +sg225240 +g27 +sa(dp229825 +g225230 +S'The Hunchback with the Feathered Cap' +p229826 +sg225232 +S'Jacques Callot' +p229827 +sg225234 +S'etching and engraving' +p229828 +sg225236 +S'c. 1622' +p229829 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085ac.jpg' +p229830 +sg225240 +g27 +sa(dp229831 +g225230 +S'The Potbellied Man with the Tall Hat' +p229832 +sg225232 +S'Jacques Callot' +p229833 +sg225234 +S'etching and engraving' +p229834 +sg225236 +S'c. 1622' +p229835 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085ad.jpg' +p229836 +sg225240 +g27 +sa(dp229837 +g225230 +S'The Violin Player' +p229838 +sg225232 +S'Jacques Callot' +p229839 +sg225234 +S'etching and engraving' +p229840 +sg225236 +S'c. 1622' +p229841 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085a8.jpg' +p229842 +sg225240 +g27 +sa(dp229843 +g225230 +S'Masked Man with Twisted Feet' +p229844 +sg225232 +S'Jacques Callot' +p229845 +sg225234 +S'etching and engraving' +p229846 +sg225236 +S'c. 1622' +p229847 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085a9.jpg' +p229848 +sg225240 +g27 +sa(dp229849 +g225230 +S'The Lute Player' +p229850 +sg225232 +S'Jacques Callot' +p229851 +sg225234 +S'etching and engraving' +p229852 +sg225236 +S'c. 1622' +p229853 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085aa.jpg' +p229854 +sg225240 +g27 +sa(dp229855 +g225230 +S'The Hurdy-Gurdy Player' +p229856 +sg225232 +S'Jacques Callot' +p229857 +sg225234 +S'etching and engraving' +p229858 +sg225236 +S'c. 1622' +p229859 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085ab.jpg' +p229860 +sg225240 +g27 +sa(dp229861 +g225230 +S'The Flageolet Player' +p229862 +sg225232 +S'Jacques Callot' +p229863 +sg225234 +S'etching and engraving' +p229864 +sg225236 +S'c. 1622' +p229865 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085ae.jpg' +p229866 +sg225240 +g27 +sa(dp229867 +g225230 +S'Man Scraping a Grill' +p229868 +sg225232 +S'Jacques Callot' +p229869 +sg225234 +S'etching and engraving' +p229870 +sg225236 +S'c. 1622' +p229871 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085af.jpg' +p229872 +sg225240 +g27 +sa(dp229873 +g225230 +S'The Bagpipe Player' +p229874 +sg225232 +S'Jacques Callot' +p229875 +sg225234 +S'etching and engraving' +p229876 +sg225236 +S'c. 1622' +p229877 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085a6.jpg' +p229878 +sg225240 +g27 +sa(dp229879 +g225230 +S'The Masked Comedian Playing a Guitar' +p229880 +sg225232 +S'Jacques Callot' +p229881 +sg225234 +S'etching and engraving' +p229882 +sg225236 +S'c. 1622' +p229883 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085a7.jpg' +p229884 +sg225240 +g27 +sa(dp229885 +g225230 +S'The Guitar Player' +p229886 +sg225232 +S'Jacques Callot' +p229887 +sg225234 +S'etching and engraving' +p229888 +sg225236 +S'c. 1622' +p229889 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085b4.jpg' +p229890 +sg225240 +g27 +sa(dp229891 +g225230 +S'Title Page for "The Capricci"' +p229892 +sg225232 +S'Jacques Callot' +p229893 +sg225234 +S'etching' +p229894 +sg225236 +S'c. 1622' +p229895 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000862c.jpg' +p229896 +sg225240 +g27 +sa(dp229897 +g225230 +S"Dedication to Don Lorenzo de' Medici" +p229898 +sg225232 +S'Jacques Callot' +p229899 +sg225234 +S'etching' +p229900 +sg225236 +S'c. 1622' +p229901 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000862d.jpg' +p229902 +sg225240 +g27 +sa(dp229903 +g225230 +S'Gentleman and His Page' +p229904 +sg225232 +S'Jacques Callot' +p229905 +sg225234 +S'etching' +p229906 +sg225236 +S'c. 1622' +p229907 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000862a.jpg' +p229908 +sg225240 +g27 +sa(dp229909 +g225230 +S'Two Seated Figures' +p229910 +sg225232 +S'Jacques Callot' +p229911 +sg225234 +S'etching' +p229912 +sg225236 +S'c. 1622' +p229913 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000862b.jpg' +p229914 +sg225240 +g27 +sa(dp229915 +g225230 +S'Shepherd and Ruins' +p229916 +sg225232 +S'Jacques Callot' +p229917 +sg225234 +S'etching' +p229918 +sg225236 +S'c. 1622' +p229919 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008634.jpg' +p229920 +sg225240 +g27 +sa(dp229921 +g225230 +S'Courtyard of a Farm' +p229922 +sg225232 +S'Jacques Callot' +p229923 +sg225234 +S'etching' +p229924 +sg225236 +S'c. 1622' +p229925 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008635.jpg' +p229926 +sg225240 +g27 +sa(dp229927 +g225230 +S'Ponte Vecchio, Florence' +p229928 +sg225232 +S'Jacques Callot' +p229929 +sg225234 +S'etching' +p229930 +sg225236 +S'c. 1622' +p229931 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000862e.jpg' +p229932 +sg225240 +g27 +sa(dp229933 +g225230 +S'Soldiers Attacking Robbers' +p229934 +sg225232 +S'Jacques Callot' +p229935 +sg225234 +S'etching' +p229936 +sg225236 +S'c. 1622' +p229937 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000862f.jpg' +p229938 +sg225240 +g27 +sa(dp229939 +g225230 +S'The Promenade' +p229940 +sg225232 +S'Jacques Callot' +p229941 +sg225234 +S'etching' +p229942 +sg225236 +S'c. 1622' +p229943 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008630.jpg' +p229944 +sg225240 +g27 +sa(dp229945 +g225230 +S'The Dance' +p229946 +sg225232 +S'Jacques Callot' +p229947 +sg225234 +S'etching' +p229948 +sg225236 +S'c. 1622' +p229949 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008631.jpg' +p229950 +sg225240 +g27 +sa(dp229951 +g225230 +S'Horses Running' +p229952 +sg225232 +S'Jacques Callot' +p229953 +sg225234 +S'etching' +p229954 +sg225236 +S'c. 1622' +p229955 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008626.jpg' +p229956 +sg225240 +g27 +sa(dp229957 +g225230 +S'Man Moving Abruptly' +p229958 +sg225232 +S'Jacques Callot' +p229959 +sg225234 +S'etching' +p229960 +sg225236 +S'c. 1622' +p229961 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008627.jpg' +p229962 +sg225240 +g27 +sa(dp229963 +g225230 +S'Violinist' +p229964 +sg225232 +S'Jacques Callot' +p229965 +sg225234 +S'etching' +p229966 +sg225236 +S'c. 1622' +p229967 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008624.jpg' +p229968 +sg225240 +g27 +sa(dp229969 +g225230 +S'Peasant with Hat in Hand' +p229970 +sg225232 +S'Jacques Callot' +p229971 +sg225234 +S'etching' +p229972 +sg225236 +S'c. 1622' +p229973 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008625.jpg' +p229974 +sg225240 +g27 +sa(dp229975 +g225230 +S'Man Wrapped in His Mantle' +p229976 +sg225232 +S'Jacques Callot' +p229977 +sg225234 +S'etching' +p229978 +sg225236 +S'c. 1622' +p229979 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008617.jpg' +p229980 +sg225240 +g27 +sa(dp229981 +g225230 +S'Gentleman with Cane' +p229982 +sg225232 +S'Jacques Callot' +p229983 +sg225234 +S'etching' +p229984 +sg225236 +S'c. 1622' +p229985 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008618.jpg' +p229986 +sg225240 +g27 +sa(dp229987 +g225230 +S'Man with Sword' +p229988 +sg225232 +S'Jacques Callot' +p229989 +sg225234 +S'etching' +p229990 +sg225236 +S'c. 1622' +p229991 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008611.jpg' +p229992 +sg225240 +g27 +sa(dp229993 +g225230 +S'Man seen from Behind with His Right Arm Extended' +p229994 +sg225232 +S'Jacques Callot' +p229995 +sg225234 +S'etching' +p229996 +sg225236 +S'c. 1622' +p229997 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008612.jpg' +p229998 +sg225240 +g27 +sa(dp229999 +g225230 +S'Two Women in Profile' +p230000 +sg225232 +S'Jacques Callot' +p230001 +sg225234 +S'etching' +p230002 +sg225236 +S'c. 1622' +p230003 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008613.jpg' +p230004 +sg225240 +g27 +sa(dp230005 +g225230 +S'Lady in a Large Coat' +p230006 +sg225232 +S'Jacques Callot' +p230007 +sg225234 +S'etching' +p230008 +sg225236 +S'c. 1622' +p230009 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008614.jpg' +p230010 +sg225240 +g27 +sa(dp230011 +g225230 +S'Gentleman in Large Mantle, Front View' +p230012 +sg225232 +S'Jacques Callot' +p230013 +sg225234 +S'etching' +p230014 +sg225236 +S'c. 1622' +p230015 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008615.jpg' +p230016 +sg225240 +g27 +sa(dp230017 +g225230 +S'Gentleman in Large Mantle, Seen from Behind' +p230018 +sg225232 +S'Jacques Callot' +p230019 +sg225234 +S'etching' +p230020 +sg225236 +S'c. 1622' +p230021 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008616.jpg' +p230022 +sg225240 +g27 +sa(dp230023 +g225230 +S'Gentleman Viewed from the Front with Hand on Hip' +p230024 +sg225232 +S'Jacques Callot' +p230025 +sg225234 +S'etching' +p230026 +sg225236 +S'c. 1622' +p230027 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000860d.jpg' +p230028 +sg225240 +g27 +sa(dp230029 +g225230 +S'Peasant with a Cup' +p230030 +sg225232 +S'Jacques Callot' +p230031 +sg225234 +S'etching' +p230032 +sg225236 +S'c. 1622' +p230033 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000860e.jpg' +p230034 +sg225240 +g27 +sa(dp230035 +g225230 +S'Gentleman Viewed from the Side' +p230036 +sg225232 +S'Jacques Callot' +p230037 +sg225234 +S'etching' +p230038 +sg225236 +S'c. 1622' +p230039 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008601.jpg' +p230040 +sg225240 +g27 +sa(dp230041 +g225230 +S'Peasant with Shovel on His Shoulder' +p230042 +sg225232 +S'Jacques Callot' +p230043 +sg225234 +S'etching' +p230044 +sg225236 +S'c. 1622' +p230045 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008602.jpg' +p230046 +sg225240 +g27 +sa(dp230047 +g225230 +S'Duel with Swords' +p230048 +sg225232 +S'Jacques Callot' +p230049 +sg225234 +S'etching' +p230050 +sg225236 +S'c. 1622' +p230051 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085d9.jpg' +p230052 +sg225240 +g27 +sa(dp230053 +g225230 +S'Duel with Swords and Daggers' +p230054 +sg225232 +S'Jacques Callot' +p230055 +sg225234 +S'etching' +p230056 +sg225236 +S'c. 1622' +p230057 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085da.jpg' +p230058 +sg225240 +g27 +sa(dp230059 +g225230 +S'Peasant Attacked by Bees' +p230060 +sg225232 +S'Jacques Callot' +p230061 +sg225234 +S'etching' +p230062 +sg225236 +S'c. 1622' +p230063 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085d7.jpg' +p230064 +sg225240 +g27 +sa(dp230065 +g225230 +S'Peasant Removing His Shoe' +p230066 +sg225232 +S'Jacques Callot' +p230067 +sg225234 +S'etching' +p230068 +sg225236 +S'c. 1622' +p230069 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085d8.jpg' +p230070 +sg225240 +g27 +sa(dp230071 +g225230 +S'Peasant with Sack' +p230072 +sg225232 +S'Jacques Callot' +p230073 +sg225234 +S'etching' +p230074 +sg225236 +S'c. 1622' +p230075 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085d5.jpg' +p230076 +sg225240 +g27 +sa(dp230077 +g225230 +S'Peasant Defecating' +p230078 +sg225232 +S'Jacques Callot' +p230079 +sg225234 +S'etching' +p230080 +sg225236 +S'c. 1622' +p230081 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085d6.jpg' +p230082 +sg225240 +g27 +sa(dp230083 +g225230 +S'Dancers with Flute and Tambourine' +p230084 +sg225232 +S'Jacques Callot' +p230085 +sg225234 +S'etching' +p230086 +sg225236 +S'c. 1622' +p230087 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085d1.jpg' +p230088 +sg225240 +g27 +sa(dp230089 +g225230 +S'Dancers with Lute' +p230090 +sg225232 +S'Jacques Callot' +p230091 +sg225234 +S'etching' +p230092 +sg225236 +S'c. 1622' +p230093 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085d2.jpg' +p230094 +sg225240 +g27 +sa(dp230095 +g225230 +S'Two Pantaloons Dancing' +p230096 +sg225232 +S'Jacques Callot' +p230097 +sg225234 +S'etching' +p230098 +sg225236 +S'c. 1622' +p230099 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085db.jpg' +p230100 +sg225240 +g27 +sa(dp230101 +g225230 +S'Two Pantaloons Dancing' +p230102 +sg225232 +S'Jacques Callot' +p230103 +sg225234 +S'etching' +p230104 +sg225236 +S'c. 1622' +p230105 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085dc.jpg' +p230106 +sg225240 +g27 +sa(dp230107 +g225230 +S'Shepherd Playing Flute' +p230108 +sg225232 +S'Jacques Callot' +p230109 +sg225234 +S'etching' +p230110 +sg225236 +S'c. 1622' +p230111 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085d3.jpg' +p230112 +sg225240 +g27 +sa(dp230113 +g225230 +S'Almshouse' +p230114 +sg225232 +S'Jacques Callot' +p230115 +sg225234 +S'etching' +p230116 +sg225236 +S'c. 1622' +p230117 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085d4.jpg' +p230118 +sg225240 +g27 +sa(dp230119 +g225230 +S'Tavern' +p230120 +sg225232 +S'Jacques Callot' +p230121 +sg225234 +S'etching' +p230122 +sg225236 +S'c. 1622' +p230123 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085dd.jpg' +p230124 +sg225240 +g27 +sa(dp230125 +g225230 +S'Military Commander on Foot' +p230126 +sg225232 +S'Jacques Callot' +p230127 +sg225234 +S'etching' +p230128 +sg225236 +S'c. 1622' +p230129 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085de.jpg' +p230130 +sg225240 +g27 +sa(dp230131 +g225230 +S'Military Commander on Horseback' +p230132 +sg225232 +S'Jacques Callot' +p230133 +sg225234 +S'etching' +p230134 +sg225236 +S'c. 1622' +p230135 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085eb.jpg' +p230136 +sg225240 +g27 +sa(dp230137 +g225230 +S'Standard Bearer' +p230138 +sg225232 +S'Jacques Callot' +p230139 +sg225234 +S'etching' +p230140 +sg225236 +S'c. 1622' +p230141 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085ec.jpg' +p230142 +sg225240 +g27 +sa(dp230143 +g225230 +S'Skirmish in a Roman Circus' +p230144 +sg225232 +S'Jacques Callot' +p230145 +sg225234 +S'etching' +p230146 +sg225236 +S'c. 1622' +p230147 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085df.jpg' +p230148 +sg225240 +g27 +sa(dp230149 +g225230 +S'Piazza della Signoria, Florence' +p230150 +sg225232 +S'Jacques Callot' +p230151 +sg225234 +S'etching' +p230152 +sg225236 +S'c. 1622' +p230153 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085e2.jpg' +p230154 +sg225240 +g27 +sa(dp230155 +g225230 +S'Piazza del Duomo, Florence' +p230156 +sg225232 +S'Jacques Callot' +p230157 +sg225234 +S'etching' +p230158 +sg225236 +S'c. 1622' +p230159 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085e7.jpg' +p230160 +sg225240 +g27 +sa(dp230161 +g225230 +S'Piazza Santa Croce, Florence' +p230162 +sg225232 +S'Jacques Callot' +p230163 +sg225234 +S'etching' +p230164 +sg225236 +S'c. 1622' +p230165 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085e4.jpg' +p230166 +sg225240 +g27 +sa(dp230167 +g225230 +S'The Hurdy-Gurdy Player' +p230168 +sg225232 +S'Jacques Callot' +p230169 +sg225234 +S'etching' +p230170 +sg225236 +S'c. 1622' +p230171 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008650.jpg' +p230172 +sg225240 +g27 +sa(dp230173 +g225230 +S'The Two Pilgrims' +p230174 +sg225232 +S'Jacques Callot' +p230175 +sg225234 +S'etching' +p230176 +sg225236 +S'c. 1622' +p230177 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000865b.jpg' +p230178 +sg225240 +g27 +sa(dp230179 +g225230 +S'Beggar with Crutches and Cap' +p230180 +sg225232 +S'Jacques Callot' +p230181 +sg225234 +S'etching' +p230182 +sg225236 +S'c. 1622' +p230183 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008652.jpg' +p230184 +sg225240 +g27 +sa(dp230185 +g225230 +S'Beggar with Crutches and Hat, Back View' +p230186 +sg225232 +S'Jacques Callot' +p230187 +sg225234 +S'etching' +p230188 +sg225236 +S'c. 1622' +p230189 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008651.jpg' +p230190 +sg225240 +g27 +sa(dp230191 +g225230 +S'Beggar with Pot' +p230192 +sg225232 +S'Jacques Callot' +p230193 +sg225234 +S'etching' +p230194 +sg225236 +S'c. 1622' +p230195 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000864f.jpg' +p230196 +sg225240 +g27 +sa(dp230197 +g225230 +S'Beggar Woman with Rosary' +p230198 +sg225232 +S'Jacques Callot' +p230199 +sg225234 +S'etching' +p230200 +sg225236 +S'c. 1622' +p230201 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000864e.jpg' +p230202 +sg225240 +g27 +sa(dp230203 +g225230 +S'Two Beggar Women' +p230204 +sg225232 +S'Jacques Callot' +p230205 +sg225234 +S'etching' +p230206 +sg225236 +S'c. 1622' +p230207 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008666.jpg' +p230208 +sg225240 +g27 +sa(dp230209 +g225230 +S'Blind Beggar and Companion' +p230210 +sg225232 +S'Jacques Callot' +p230211 +sg225234 +S'etching' +p230212 +sg225236 +S'c. 1622' +p230213 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008667.jpg' +p230214 +sg225240 +g27 +sa(dp230215 +g225230 +S'Beggar with Crutches and Sack' +p230216 +sg225232 +S'Jacques Callot' +p230217 +sg225234 +S'etching' +p230218 +sg225236 +S'c. 1622' +p230219 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008665.jpg' +p230220 +sg225240 +g27 +sa(dp230221 +g225230 +S'Beggar with Rosary' +p230222 +sg225232 +S'Jacques Callot' +p230223 +sg225234 +S'etching' +p230224 +sg225236 +S'c. 1622' +p230225 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008668.jpg' +p230226 +sg225240 +g27 +sa(dp230227 +g225230 +S'Beggar with Bare Head and Feet' +p230228 +sg225232 +S'Jacques Callot' +p230229 +sg225234 +S'etching' +p230230 +sg225236 +S'c. 1622' +p230231 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008663.jpg' +p230232 +sg225240 +g27 +sa(dp230233 +g225230 +S'The Sick Man' +p230234 +sg225232 +S'Jacques Callot' +p230235 +sg225234 +S'etching' +p230236 +sg225236 +S'c. 1622' +p230237 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008664.jpg' +p230238 +sg225240 +g27 +sa(dp230239 +g225230 +S'One-Eyed Woman' +p230240 +sg225232 +S'Jacques Callot' +p230241 +sg225234 +S'etching' +p230242 +sg225236 +S'c. 1622' +p230243 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008669.jpg' +p230244 +sg225240 +g27 +sa(dp230245 +g225230 +S'Beggar with Wooden Leg' +p230246 +sg225232 +S'Jacques Callot' +p230247 +sg225234 +S'etching' +p230248 +sg225236 +S'c. 1622' +p230249 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008676.jpg' +p230250 +sg225240 +g27 +sa(dp230251 +g225230 +S'Beggar Woman with Crutches' +p230252 +sg225232 +S'Jacques Callot' +p230253 +sg225234 +S'etching' +p230254 +sg225236 +S'c. 1622' +p230255 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008675.jpg' +p230256 +sg225240 +g27 +sa(dp230257 +g225230 +S'Old Beggar with One Crutch' +p230258 +sg225232 +S'Jacques Callot' +p230259 +sg225234 +S'etching' +p230260 +sg225236 +S'c. 1622' +p230261 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008674.jpg' +p230262 +sg225240 +g27 +sa(dp230263 +g225230 +S'Mother and Three Children' +p230264 +sg225232 +S'Jacques Callot' +p230265 +sg225234 +S'etching' +p230266 +sg225236 +S'c. 1622' +p230267 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008673.jpg' +p230268 +sg225240 +g27 +sa(dp230269 +g225230 +S'Beggar with a Stick' +p230270 +sg225232 +S'Jacques Callot' +p230271 +sg225234 +S'etching' +p230272 +sg225236 +S'c. 1622' +p230273 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008672.jpg' +p230274 +sg225240 +g27 +sa(dp230275 +g225230 +S'Beggar Woman with Pan' +p230276 +sg225232 +S'Jacques Callot' +p230277 +sg225234 +S'etching' +p230278 +sg225236 +S'c. 1622' +p230279 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000866b.jpg' +p230280 +sg225240 +g27 +sa(dp230281 +g225230 +S'Fat Beggar with Eyes Cast Down' +p230282 +sg225232 +S'Jacques Callot' +p230283 +sg225234 +S'etching' +p230284 +sg225236 +S'c. 1622' +p230285 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008671.jpg' +p230286 +sg225240 +g27 +sa(dp230287 +g225230 +S'Beggar with Dog' +p230288 +sg225232 +S'Jacques Callot' +p230289 +sg225234 +S'etching' +p230290 +sg225236 +S'c. 1622' +p230291 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085c1.jpg' +p230292 +sg225240 +g27 +sa(dp230293 +g225230 +S'Beggar Woman Receiving Charity' +p230294 +sg225232 +S'Jacques Callot' +p230295 +sg225234 +S'etching' +p230296 +sg225236 +S'c. 1622' +p230297 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085c0.jpg' +p230298 +sg225240 +g27 +sa(dp230299 +g225230 +S'Beggar Eating' +p230300 +sg225232 +S'Jacques Callot' +p230301 +sg225234 +S'etching' +p230302 +sg225236 +S'c. 1622' +p230303 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085bf.jpg' +p230304 +sg225240 +g27 +sa(dp230305 +g225230 +S'Old Woman with Cats' +p230306 +sg225232 +S'Jacques Callot' +p230307 +sg225234 +S'etching' +p230308 +sg225236 +S'c. 1622' +p230309 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085bd.jpg' +p230310 +sg225240 +g27 +sa(dp230311 +g225230 +S'Frontispiece for "Gloriosissimae"' +p230312 +sg225232 +S'Jacques Callot' +p230313 +sg225234 +S'etching' +p230314 +sg225236 +S'unknown date\n' +p230315 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085c4.jpg' +p230316 +sg225240 +g27 +sa(dp230317 +g225230 +S'Saint Livier' +p230318 +sg225232 +S'Jacques Callot' +p230319 +sg225234 +S'etching' +p230320 +sg225236 +S'unknown date\n' +p230321 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085c2.jpg' +p230322 +sg225240 +g27 +sa(dp230323 +g225230 +S'Frontispiece of the Holy Apocatastase' +p230324 +sg225232 +S'Jacques Callot' +p230325 +sg225234 +S'etching' +p230326 +sg225236 +S'unknown date\n' +p230327 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085b9.jpg' +p230328 +sg225240 +g27 +sa(dp230329 +g225230 +S'The Great Rock' +p230330 +sg225232 +S'Jacques Callot' +p230331 +sg225234 +S'etching' +p230332 +sg225236 +S'1623' +p230333 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ad1.jpg' +p230334 +sg225240 +g27 +sa(dp230335 +g225230 +S'Two Society Women' +p230336 +sg225232 +S'Jacques Callot' +p230337 +sg225234 +S'etching' +p230338 +sg225236 +S'c. 1623' +p230339 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085b5.jpg' +p230340 +sg225240 +g27 +sa(dp230341 +g225230 +S'The Winder and the Spinner' +p230342 +sg225232 +S'Jacques Callot' +p230343 +sg225234 +S'etching' +p230344 +sg225236 +S'c. 1623' +p230345 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a00085b6.jpg' +p230346 +sg225240 +g27 +sa(dp230347 +g225230 +S'Christ Washing the Feet of the Apostles' +p230348 +sg225232 +S'Jacques Callot' +p230349 +sg225234 +S'etching' +p230350 +sg225236 +S'c. 1624/1625' +p230351 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008642.jpg' +p230352 +sg225240 +g27 +sa(dp230353 +g225230 +S'The Last Supper' +p230354 +sg225232 +S'Jacques Callot' +p230355 +sg225234 +S'etching' +p230356 +sg225236 +S'c. 1624/1625' +p230357 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008643.jpg' +p230358 +sg225240 +g27 +sa(dp230359 +g225230 +S'The Agony in the Garden' +p230360 +sg225232 +S'Jacques Callot' +p230361 +sg225234 +S'etching' +p230362 +sg225236 +S'c. 1624/1625' +p230363 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008636.jpg' +p230364 +sg225240 +g27 +sa(dp230365 +g225230 +S'The Betrayal' +p230366 +sg225232 +S'Jacques Callot' +p230367 +sg225234 +S'etching' +p230368 +sg225236 +S'c. 1624/1625' +p230369 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008637.jpg' +p230370 +sg225240 +g27 +sa(dp230371 +g225230 +S'Christ Condemned to Death by Pilate' +p230372 +sg225232 +S'Jacques Callot' +p230373 +sg225234 +S'etching' +p230374 +sg225236 +S'c. 1624/1625' +p230375 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008640.jpg' +p230376 +sg225240 +g27 +sa(dp230377 +g225230 +S'The Flagellation' +p230378 +sg225232 +S'Jacques Callot' +p230379 +sg225234 +S'etching' +p230380 +sg225236 +S'c. 1624/1625' +p230381 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008641.jpg' +p230382 +sg225240 +g27 +sa(dp230383 +g225230 +S'Christ before Caiaphas' +p230384 +sg225232 +S'Jacques Callot' +p230385 +sg225234 +S'etching' +p230386 +sg225236 +S'c. 1624/1625' +p230387 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000863c.jpg' +p230388 +sg225240 +g27 +sa(dp230389 +g225230 +S'The Crowning with Thorns' +p230390 +sg225232 +S'Jacques Callot' +p230391 +sg225234 +S'etching' +p230392 +sg225236 +S'c. 1624/1625' +p230393 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000863d.jpg' +p230394 +sg225240 +g27 +sa(dp230395 +g225230 +S'Ecce Homo' +p230396 +sg225232 +S'Jacques Callot' +p230397 +sg225234 +S'etching' +p230398 +sg225236 +S'c. 1624/1625' +p230399 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008638.jpg' +p230400 +sg225240 +g27 +sa(dp230401 +g225230 +S'Christ Carrying the Cross' +p230402 +sg225232 +S'Jacques Callot' +p230403 +sg225234 +S'etching' +p230404 +sg225236 +S'c. 1624/1625' +p230405 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008639.jpg' +p230406 +sg225240 +g27 +sa(dp230407 +g225230 +S'Raising of the Cross' +p230408 +sg225232 +S'Jacques Callot' +p230409 +sg225234 +S'etching' +p230410 +sg225236 +S'c. 1624/1625' +p230411 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000863e.jpg' +p230412 +sg225240 +g27 +sa(dp230413 +g225230 +S'The Crucifixion' +p230414 +sg225232 +S'Jacques Callot' +p230415 +sg225234 +S'etching' +p230416 +sg225236 +S'c. 1624/1625' +p230417 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000863f.jpg' +p230418 +sg225240 +g27 +sa(dp230419 +g225230 +S'Noble Woman in Profile with her Hands in a Muff' +p230420 +sg225232 +S'Jacques Callot' +p230421 +sg225234 +S'etching' +p230422 +sg225236 +S'c. 1620/1623' +p230423 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000868f.jpg' +p230424 +sg225240 +g27 +sa(dp230425 +g225230 +S'Noble Woman with Fan' +p230426 +sg225232 +S'Jacques Callot' +p230427 +sg225234 +S'etching' +p230428 +sg225236 +S'c. 1620/1623' +p230429 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086a3.jpg' +p230430 +sg225240 +g27 +sa(dp230431 +g225230 +S'Noble Man Wrapped in a Mantle Trimmed with Fur' +p230432 +sg225232 +S'Jacques Callot' +p230433 +sg225234 +S'etching' +p230434 +sg225236 +S'c. 1620/1623' +p230435 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086a0.jpg' +p230436 +sg225240 +g27 +sa(dp230437 +g225230 +S'Noble Man with Folded Hands' +p230438 +sg225232 +S'Jacques Callot' +p230439 +sg225234 +S'etching' +p230440 +sg225236 +S'c. 1620/1623' +p230441 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000869f.jpg' +p230442 +sg225240 +g27 +sa(dp230443 +g225230 +S'Noble Woman Wearing a Veil and a Dress Trimmed in Fur' +p230444 +sg225232 +S'Jacques Callot' +p230445 +sg225234 +S'etching' +p230446 +sg225236 +S'c. 1620/1623' +p230447 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000868e.jpg' +p230448 +sg225240 +g27 +sa(dp230449 +g225230 +S'Noble Man with Fur Plastron' +p230450 +sg225232 +S'Jacques Callot' +p230451 +sg225234 +S'etching' +p230452 +sg225236 +S'c. 1620/1623' +p230453 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000868d.jpg' +p230454 +sg225240 +g27 +sa(dp230455 +g225230 +S'Noble Man with Mantle Trimmed in Fur, Holding his Hands Behind his Back' +p230456 +sg225232 +S'Jacques Callot' +p230457 +sg225234 +S'etching' +p230458 +sg225236 +S'c. 1620/1623' +p230459 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086a1.jpg' +p230460 +sg225240 +g27 +sa(dp230461 +g225230 +S'Noble Woman with Large Collar' +p230462 +sg225232 +S'Jacques Callot' +p230463 +sg225234 +S'etching' +p230464 +sg225236 +S'c. 1620/1623' +p230465 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086a2.jpg' +p230466 +sg225240 +g27 +sa(dp230467 +g225230 +S'The Triumph of the Virgin' +p230468 +sg225232 +S'Jacques Callot' +p230469 +sg225234 +S'etching and engraving' +p230470 +sg225236 +S'1625' +p230471 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dac.jpg' +p230472 +sg225240 +g27 +sa(dp230473 +g225230 +S'Saint John on the Isle of Patmos' +p230474 +sg225232 +S'Jacques Callot' +p230475 +sg225234 +S'etching and engraving' +p230476 +sg225236 +S'1625' +p230477 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086a9.jpg' +p230478 +sg225240 +g27 +sa(dp230479 +g225230 +S'Pandora' +p230480 +sg225232 +S'Jacques Callot' +p230481 +sg225234 +S'etching' +p230482 +sg225236 +S'1625' +p230483 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086ad.jpg' +p230484 +sg225240 +g27 +sa(dp230485 +g225232 +S'Jacques Callot' +p230486 +sg225240 +g27 +sg225234 +S'etching and engraving' +p230487 +sg225230 +S'The Large Thesis' +p230488 +sg225236 +S'1625' +p230489 +sa(dp230490 +g225230 +S'The Cult of God' +p230491 +sg225232 +S'Jacques Callot' +p230492 +sg225234 +S'etching' +p230493 +sg225236 +S'probably 1627' +p230494 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000868a.jpg' +p230495 +sg225240 +g27 +sa(dp230496 +g225230 +S'The Cult of the Demon' +p230497 +sg225232 +S'Jacques Callot' +p230498 +sg225234 +S'etching' +p230499 +sg225236 +S'probably 1627' +p230500 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000868b.jpg' +p230501 +sg225240 +g27 +sa(dp230502 +g225230 +S'The Cult of Men' +p230503 +sg225232 +S'Jacques Callot' +p230504 +sg225234 +S'etching' +p230505 +sg225236 +S'probably 1627' +p230506 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086a4.jpg' +p230507 +sg225240 +g27 +sa(dp230508 +g225230 +S'The Martyrdom of Saint Lawrence' +p230509 +sg225232 +S'Jacques Callot' +p230510 +sg225234 +S'etching' +p230511 +sg225236 +S'unknown date\n' +p230512 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086a8.jpg' +p230513 +sg225240 +g27 +sa(dp230514 +g225230 +S'The Apostle Peter' +p230515 +sg225232 +S'Jacques Callot' +p230516 +sg225234 +S'etching' +p230517 +sg225236 +S'unknown date\n' +p230518 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086c2.jpg' +p230519 +sg225240 +g27 +sa(dp230520 +g225230 +S'The Card Players' +p230521 +sg225232 +S'Jacques Callot' +p230522 +sg225234 +S'etching and engraving' +p230523 +sg225236 +S'c. 1628' +p230524 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00053/a00053bc.jpg' +p230525 +sg225240 +g27 +sa(dp230526 +g225230 +S'Coat of Arms of Nicolas Francis of Lorraine' +p230527 +sg225232 +S'Jacques Callot' +p230528 +sg225234 +S'etching' +p230529 +sg225236 +S'unknown date\n' +p230530 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086aa.jpg' +p230531 +sg225240 +g27 +sa(dp230532 +g225230 +S'Frontispiece for "The Light of the Cloister"' +p230533 +sg225232 +S'Jacques Callot' +p230534 +sg225234 +S'etching' +p230535 +sg225236 +S'1628' +p230536 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086a6.jpg' +p230537 +sg225240 +g27 +sa(dp230538 +g225230 +S'The Vigilant Eye' +p230539 +sg225232 +S'Jacques Callot' +p230540 +sg225234 +S'etching' +p230541 +sg225236 +S'1628' +p230542 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000867a.jpg' +p230543 +sg225240 +g27 +sa(dp230544 +g225230 +S'Candle Stick' +p230545 +sg225232 +S'Jacques Callot' +p230546 +sg225234 +S'etching' +p230547 +sg225236 +S'1628' +p230548 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000867b.jpg' +p230549 +sg225240 +g27 +sa(dp230550 +g225230 +S'Shepherds Defending their Herds' +p230551 +sg225232 +S'Jacques Callot' +p230552 +sg225234 +S'etching' +p230553 +sg225236 +S'1628' +p230554 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008684.jpg' +p230555 +sg225240 +g27 +sa(dp230556 +g225230 +S'The Crow and her Young' +p230557 +sg225232 +S'Jacques Callot' +p230558 +sg225234 +S'etching' +p230559 +sg225236 +S'1628' +p230560 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008685.jpg' +p230561 +sg225240 +g27 +sa(dp230562 +g225230 +S'The Tulips and the Sun' +p230563 +sg225232 +S'Jacques Callot' +p230564 +sg225234 +S'etching' +p230565 +sg225236 +S'1628' +p230566 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008680.jpg' +p230567 +sg225240 +g27 +sa(dp230568 +g225230 +S'Burning Phoenix' +p230569 +sg225232 +S'Jacques Callot' +p230570 +sg225234 +S'etching' +p230571 +sg225236 +S'1628' +p230572 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a0008681.jpg' +p230573 +sg225240 +g27 +sa(dp230574 +g225230 +S'Crow and Snail' +p230575 +sg225232 +S'Jacques Callot' +p230576 +sg225234 +S'etching' +p230577 +sg225236 +S'1628' +p230578 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000867e.jpg' +p230579 +sg225240 +g27 +sa(dp230580 +g225230 +S'Serpent' +p230581 +sg225232 +S'Jacques Callot' +p230582 +sg225234 +S'etching' +p230583 +sg225236 +S'1628' +p230584 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a000867f.jpg' +p230585 +sg225240 +g27 +sa(dp230586 +g225230 +S'Cat Watching Caged Bird' +p230587 +sg225232 +S'Jacques Callot' +p230588 +sg225234 +S'etching' +p230589 +sg225236 +S'1628' +p230590 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086d5.jpg' +p230591 +sg225240 +g27 +sa(dp230592 +g225230 +S'Two Knights' +p230593 +sg225232 +S'Jacques Callot' +p230594 +sg225234 +S'etching' +p230595 +sg225236 +S'1628' +p230596 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086d6.jpg' +p230597 +sg225240 +g27 +sa(dp230598 +g225230 +S'Stag in the Water' +p230599 +sg225232 +S'Jacques Callot' +p230600 +sg225234 +S'etching' +p230601 +sg225236 +S'1628' +p230602 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086c5.jpg' +p230603 +sg225240 +g27 +sa(dp230604 +g225230 +S'Bird Perched on a Thistle' +p230605 +sg225232 +S'Jacques Callot' +p230606 +sg225234 +S'etching' +p230607 +sg225236 +S'1628' +p230608 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086c6.jpg' +p230609 +sg225240 +g27 +sa(dp230610 +g225230 +S'Nightingale in a Bush' +p230611 +sg225232 +S'Jacques Callot' +p230612 +sg225234 +S'etching' +p230613 +sg225236 +S'1628' +p230614 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086c7.jpg' +p230615 +sg225240 +g27 +sa(dp230616 +g225230 +S'Eagle Losing an Old Feather' +p230617 +sg225232 +S'Jacques Callot' +p230618 +sg225234 +S'etching' +p230619 +sg225236 +S'1628' +p230620 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086c8.jpg' +p230621 +sg225240 +g27 +sa(dp230622 +g225230 +S'Crane Flying' +p230623 +sg225232 +S'Jacques Callot' +p230624 +sg225234 +S'etching' +p230625 +sg225236 +S'1628' +p230626 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086df.jpg' +p230627 +sg225240 +g27 +sa(dp230628 +g225230 +S'Siren between Two Ships' +p230629 +sg225232 +S'Jacques Callot' +p230630 +sg225234 +S'etching' +p230631 +sg225236 +S'1628' +p230632 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086e0.jpg' +p230633 +sg225240 +g27 +sa(dp230634 +g225230 +S'Crayfish Looking at the Sun' +p230635 +sg225232 +S'Jacques Callot' +p230636 +sg225234 +S'etching' +p230637 +sg225236 +S'1628' +p230638 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086dd.jpg' +p230639 +sg225240 +g27 +sa(dp230640 +g225230 +S'Sun Rising' +p230641 +sg225232 +S'Jacques Callot' +p230642 +sg225234 +S'etching' +p230643 +sg225236 +S'1628' +p230644 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086de.jpg' +p230645 +sg225240 +g27 +sa(dp230646 +g225230 +S'The Tomb' +p230647 +sg225232 +S'Jacques Callot' +p230648 +sg225234 +S'etching' +p230649 +sg225236 +S'1628' +p230650 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086cf.jpg' +p230651 +sg225240 +g27 +sa(dp230652 +g225230 +S'Nun Embracing the Holy Cross' +p230653 +sg225232 +S'Jacques Callot' +p230654 +sg225234 +S'etching' +p230655 +sg225236 +S'1628' +p230656 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086d0.jpg' +p230657 +sg225240 +g27 +sa(dp230658 +g225230 +S'Narcissus Looking in the Water' +p230659 +sg225232 +S'Jacques Callot' +p230660 +sg225234 +S'etching' +p230661 +sg225236 +S'1628' +p230662 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086e5.jpg' +p230663 +sg225240 +g27 +sa(dp230664 +g225230 +S"Willows by the Water's Edge" +p230665 +sg225232 +S'Jacques Callot' +p230666 +sg225234 +S'etching' +p230667 +sg225236 +S'1628' +p230668 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086e6.jpg' +p230669 +sg225240 +g27 +sa(dp230670 +g225230 +S'Two Hearts' +p230671 +sg225232 +S'Jacques Callot' +p230672 +sg225234 +S'etching' +p230673 +sg225236 +S'1628' +p230674 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000872e.jpg' +p230675 +sg225240 +g27 +sa(dp230676 +g225230 +S'Peasant Whipping his Donkey' +p230677 +sg225232 +S'Jacques Callot' +p230678 +sg225234 +S'etching' +p230679 +sg225236 +S'1628' +p230680 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000872f.jpg' +p230681 +sg225240 +g27 +sa(dp230682 +g225230 +S'Gardener Pruning a Tree' +p230683 +sg225232 +S'Jacques Callot' +p230684 +sg225234 +S'etching' +p230685 +sg225236 +S'1628' +p230686 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008733.jpg' +p230687 +sg225240 +g27 +sa(dp230688 +g225230 +S'The Reeds and the Wind' +p230689 +sg225232 +S'Jacques Callot' +p230690 +sg225234 +S'etching' +p230691 +sg225236 +S'1628' +p230692 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008734.jpg' +p230693 +sg225240 +g27 +sa(dp230694 +g225230 +S'Title Page for "The Life of the Virgin in Emblems"' +p230695 +sg225232 +S'Jacques Callot' +p230696 +sg225234 +S'etching' +p230697 +sg225236 +S'unknown date\n' +p230698 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008735.jpg' +p230699 +sg225240 +g27 +sa(dp230700 +g225230 +S'Salamander Surrounded by Flames' +p230701 +sg225232 +S'Jacques Callot' +p230702 +sg225234 +S'etching' +p230703 +sg225236 +S'unknown date\n' +p230704 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000872a.jpg' +p230705 +sg225240 +g27 +sa(dp230706 +g225230 +S'Ship Navigating Near Rocks' +p230707 +sg225232 +S'Jacques Callot' +p230708 +sg225234 +S'etching' +p230709 +sg225236 +S'unknown date\n' +p230710 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000872b.jpg' +p230711 +sg225240 +g27 +sa(dp230712 +g225230 +S'Dawn' +p230713 +sg225232 +S'Jacques Callot' +p230714 +sg225234 +S'etching' +p230715 +sg225236 +S'unknown date\n' +p230716 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008726.jpg' +p230717 +sg225240 +g27 +sa(dp230718 +g225230 +S'Eagle and Young' +p230719 +sg225232 +S'Jacques Callot' +p230720 +sg225234 +S'etching' +p230721 +sg225236 +S'unknown date\n' +p230722 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008727.jpg' +p230723 +sg225240 +g27 +sa(dp230724 +g225230 +S'Bird of Paradise' +p230725 +sg225232 +S'Jacques Callot' +p230726 +sg225234 +S'etching' +p230727 +sg225236 +S'unknown date\n' +p230728 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008720.jpg' +p230729 +sg225240 +g27 +sa(dp230730 +g225230 +S'Bunch of Grapes' +p230731 +sg225232 +S'Jacques Callot' +p230732 +sg225234 +S'etching' +p230733 +sg225236 +S'unknown date\n' +p230734 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008721.jpg' +p230735 +sg225240 +g27 +sa(dp230736 +g225230 +S'The Vulture' +p230737 +sg225232 +S'Jacques Callot' +p230738 +sg225234 +S'etching' +p230739 +sg225236 +S'unknown date\n' +p230740 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008728.jpg' +p230741 +sg225240 +g27 +sa(dp230742 +g225230 +S'Two Palm Trees' +p230743 +sg225232 +S'Jacques Callot' +p230744 +sg225234 +S'etching' +p230745 +sg225236 +S'unknown date\n' +p230746 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008729.jpg' +p230747 +sg225240 +g27 +sa(dp230748 +g225230 +S'The Gardener' +p230749 +sg225232 +S'Jacques Callot' +p230750 +sg225234 +S'etching' +p230751 +sg225236 +S'unknown date\n' +p230752 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008757.jpg' +p230753 +sg225240 +g27 +sa(dp230754 +g225230 +S'The Doe' +p230755 +sg225232 +S'Jacques Callot' +p230756 +sg225234 +S'etching' +p230757 +sg225236 +S'unknown date\n' +p230758 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008758.jpg' +p230759 +sg225240 +g27 +sa(dp230760 +g225230 +S'Oyster with Pearl' +p230761 +sg225232 +S'Jacques Callot' +p230762 +sg225234 +S'etching' +p230763 +sg225236 +S'unknown date\n' +p230764 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008755.jpg' +p230765 +sg225240 +g27 +sa(dp230766 +g225230 +S'Rays of the Sun' +p230767 +sg225232 +S'Jacques Callot' +p230768 +sg225234 +S'etching' +p230769 +sg225236 +S'unknown date\n' +p230770 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008756.jpg' +p230771 +sg225240 +g27 +sa(dp230772 +g225230 +S'Man Washing a Pearl' +p230773 +sg225232 +S'Jacques Callot' +p230774 +sg225234 +S'etching' +p230775 +sg225236 +S'unknown date\n' +p230776 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000874d.jpg' +p230777 +sg225240 +g27 +sa(dp230778 +g225230 +S'Lioness and Cub Pursued by Hunters' +p230779 +sg225232 +S'Jacques Callot' +p230780 +sg225234 +S'etching' +p230781 +sg225236 +S'unknown date\n' +p230782 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000874e.jpg' +p230783 +sg225240 +g27 +sa(dp230784 +g225230 +S'Dolphins and Crocodile' +p230785 +sg225232 +S'Jacques Callot' +p230786 +sg225234 +S'etching' +p230787 +sg225236 +S'unknown date\n' +p230788 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008751.jpg' +p230789 +sg225240 +g27 +sa(dp230790 +g225230 +S'Sheep Calling Lamb' +p230791 +sg225232 +S'Jacques Callot' +p230792 +sg225234 +S'etching' +p230793 +sg225236 +S'unknown date\n' +p230794 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008752.jpg' +p230795 +sg225240 +g27 +sa(dp230796 +g225230 +S'The Huntress' +p230797 +sg225232 +S'Jacques Callot' +p230798 +sg225234 +S'etching' +p230799 +sg225236 +S'unknown date\n' +p230800 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000875f.jpg' +p230801 +sg225240 +g27 +sa(dp230802 +g225230 +S'Doe Mourning her Foal' +p230803 +sg225232 +S'Jacques Callot' +p230804 +sg225234 +S'etching' +p230805 +sg225236 +S'unknown date\n' +p230806 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008760.jpg' +p230807 +sg225240 +g27 +sa(dp230808 +g225230 +S'Lioness Mourning her Cub' +p230809 +sg225232 +S'Jacques Callot' +p230810 +sg225234 +S'etching' +p230811 +sg225236 +S'unknown date\n' +p230812 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008763.jpg' +p230813 +sg225240 +g27 +sa(dp230814 +g225230 +S'Turtle Dove Flying in the Desert' +p230815 +sg225232 +S'Jacques Callot' +p230816 +sg225234 +S'etching' +p230817 +sg225236 +S'unknown date\n' +p230818 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008764.jpg' +p230819 +sg225240 +g27 +sa(dp230820 +g225230 +S"Noah's Ark" +p230821 +sg225232 +S'Jacques Callot' +p230822 +sg225234 +S'etching' +p230823 +sg225236 +S'unknown date\n' +p230824 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008759.jpg' +p230825 +sg225240 +g27 +sa(dp230826 +g225230 +S'Man Cutting a Balm-Tree' +p230827 +sg225232 +S'Jacques Callot' +p230828 +sg225234 +S'etching' +p230829 +sg225236 +S'unknown date\n' +p230830 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000875a.jpg' +p230831 +sg225240 +g27 +sa(dp230832 +g225230 +S'Man Attending a Fire' +p230833 +sg225232 +S'Jacques Callot' +p230834 +sg225234 +S'etching' +p230835 +sg225236 +S'unknown date\n' +p230836 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086c9.jpg' +p230837 +sg225240 +g27 +sa(dp230838 +g225230 +S'Sun and Rain' +p230839 +sg225232 +S'Jacques Callot' +p230840 +sg225234 +S'etching' +p230841 +sg225236 +S'unknown date\n' +p230842 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086ca.jpg' +p230843 +sg225240 +g27 +sa(dp230844 +g225230 +S'The Two Crowns' +p230845 +sg225232 +S'Jacques Callot' +p230846 +sg225234 +S'etching' +p230847 +sg225236 +S'unknown date\n' +p230848 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086cb.jpg' +p230849 +sg225240 +g27 +sa(dp230850 +g225230 +S'The Nile Flooding' +p230851 +sg225232 +S'Jacques Callot' +p230852 +sg225234 +S'etching' +p230853 +sg225236 +S'unknown date\n' +p230854 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086cc.jpg' +p230855 +sg225240 +g27 +sa(dp230856 +g225230 +S'The Landing of the Troops' +p230857 +sg225232 +S'Jacques Callot' +p230858 +sg225234 +S'etching and engraving' +p230859 +sg225236 +S'probably 1628/1631' +p230860 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ae0.jpg' +p230861 +sg225240 +g27 +sa(dp230862 +g225230 +S'The Crossing of the Red Sea' +p230863 +sg225232 +S'Jacques Callot' +p230864 +sg225234 +S'etching' +p230865 +sg225236 +S'1629' +p230866 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086ed.jpg' +p230867 +sg225240 +g27 +sa(dp230868 +g225230 +S'Frontispiece for the Sacred Cosmologia (Title with Astrologers)' +p230869 +sg225232 +S'Jacques Callot' +p230870 +sg225234 +S'etching' +p230871 +sg225236 +S'unknown date\n' +p230872 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086e9.jpg' +p230873 +sg225240 +g27 +sa(dp230874 +g225230 +S'Frontispiece for the Miracles and Graces of Our Lady of "Bon-Secours-les-Nancy"' +p230875 +sg225232 +S'Jacques Callot' +p230876 +sg225234 +S'etching' +p230877 +sg225236 +S'unknown date\n' +p230878 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086ef.jpg' +p230879 +sg225240 +g27 +sa(dp230880 +g225230 +S'The Adoration of the Magi' +p230881 +sg225232 +S'Jacques Callot' +p230882 +sg225234 +S'etching' +p230883 +sg225236 +S'1623/1628' +p230884 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086f6.jpg' +p230885 +sg225240 +g27 +sa(dp230886 +g225230 +S'The Homages of the Infant Saint John' +p230887 +sg225232 +S'Jacques Callot' +p230888 +sg225234 +S'etching and engraving' +p230889 +sg225236 +S'unknown date\n' +p230890 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086f3.jpg' +p230891 +sg225240 +g27 +sa(dp230892 +g225230 +S'The Resurrection' +p230893 +sg225232 +S'Jacques Callot' +p230894 +sg225234 +S'etching and engraving' +p230895 +sg225236 +S'unknown date\n' +p230896 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086f1.jpg' +p230897 +sg225240 +g27 +sa(dp230898 +g225230 +S'The Resurrection' +p230899 +sg225232 +S'Jacques Callot' +p230900 +sg225234 +S'etching and engraving' +p230901 +sg225236 +S'unknown date\n' +p230902 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086f8.jpg' +p230903 +sg225240 +g27 +sa(dp230904 +g225230 +S'The Conversion of Saint Paul' +p230905 +sg225232 +S'Jacques Callot' +p230906 +sg225234 +S'etching' +p230907 +sg225236 +S'unknown date\n' +p230908 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086f2.jpg' +p230909 +sg225240 +g27 +sa(dp230910 +g225230 +S'The Conversion of Saint Paul' +p230911 +sg225232 +S'Jacques Callot' +p230912 +sg225234 +S'etching' +p230913 +sg225236 +S'unknown date\n' +p230914 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086f9.jpg' +p230915 +sg225240 +g27 +sa(dp230916 +g225230 +S'The Assumption of the Virgin' +p230917 +sg225232 +S'Jacques Callot' +p230918 +sg225234 +S'etching' +p230919 +sg225236 +S'unknown date\n' +p230920 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086f5.jpg' +p230921 +sg225240 +g27 +sa(dp230922 +g225230 +S'Christ on the Cross' +p230923 +sg225232 +S'Jacques Callot' +p230924 +sg225234 +S'etching' +p230925 +sg225236 +S'unknown date\n' +p230926 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086fb.jpg' +p230927 +sg225240 +g27 +sa(dp230928 +g225230 +S'Mysteries of the Passion' +p230929 +sg225232 +S'Jacques Callot' +p230930 +sg225234 +S'etching' +p230931 +sg225236 +S'c. 1631' +p230932 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000873f.jpg' +p230933 +sg225240 +g27 +sa(dp230934 +g225230 +S'Mysteries of the Passion' +p230935 +sg225232 +S'Jacques Callot' +p230936 +sg225234 +S'etching' +p230937 +sg225236 +S'c. 1631' +p230938 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000873c.jpg' +p230939 +sg225240 +g27 +sa(dp230940 +g225230 +S'Mysteries of the Passion' +p230941 +sg225232 +S'Jacques Callot' +p230942 +sg225234 +S'etching' +p230943 +sg225236 +S'c. 1631' +p230944 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000873e.jpg' +p230945 +sg225240 +g27 +sa(dp230946 +g225230 +S'Claude Deruet and his Son, Jean' +p230947 +sg225232 +S'Jacques Callot' +p230948 +sg225234 +S'etching and engraving' +p230949 +sg225236 +S'1632' +p230950 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ae7.jpg' +p230951 +sg225240 +g27 +sa(dp230952 +g225230 +S'Frontispiece for "The Large Apostles"' +p230953 +sg225232 +S'Jacques Callot' +p230954 +sg225234 +S'etching' +p230955 +sg225236 +S'published 1631' +p230956 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008896.jpg' +p230957 +sg225240 +g27 +sa(dp230958 +g225230 +S'Christ' +p230959 +sg225232 +S'Jacques Callot' +p230960 +sg225234 +S'etching' +p230961 +sg225236 +S'published 1631' +p230962 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008894.jpg' +p230963 +sg225240 +g27 +sa(dp230964 +g225230 +S'The Virgin' +p230965 +sg225232 +S'Jacques Callot' +p230966 +sg225234 +S'etching' +p230967 +sg225236 +S'published 1631' +p230968 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008893.jpg' +p230969 +sg225240 +g27 +sa(dp230970 +g225230 +S'Saint Peter' +p230971 +sg225232 +S'Jacques Callot' +p230972 +sg225234 +S'etching' +p230973 +sg225236 +S'published 1631' +p230974 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008892.jpg' +p230975 +sg225240 +g27 +sa(dp230976 +g225230 +S'Saint Paul' +p230977 +sg225232 +S'Jacques Callot' +p230978 +sg225234 +S'etching' +p230979 +sg225236 +S'published 1631' +p230980 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008891.jpg' +p230981 +sg225240 +g27 +sa(dp230982 +g225230 +S'Saint Andrew' +p230983 +sg225232 +S'Jacques Callot' +p230984 +sg225234 +S'etching' +p230985 +sg225236 +S'published 1631' +p230986 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008895.jpg' +p230987 +sg225240 +g27 +sa(dp230988 +g225230 +S'Saint James the Great' +p230989 +sg225232 +S'Jacques Callot' +p230990 +sg225234 +S'etching' +p230991 +sg225236 +S'published 1631' +p230992 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088a1.jpg' +p230993 +sg225240 +g27 +sa(dp230994 +g225230 +S'Saint John the Evangelist' +p230995 +sg225232 +S'Jacques Callot' +p230996 +sg225234 +S'etching' +p230997 +sg225236 +S'published 1631' +p230998 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088a8.jpg' +p230999 +sg225240 +g27 +sa(dp231000 +g225230 +S'Saint James the Less' +p231001 +sg225232 +S'Jacques Callot' +p231002 +sg225234 +S'etching' +p231003 +sg225236 +S'published 1631' +p231004 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088a4.jpg' +p231005 +sg225240 +g27 +sa(dp231006 +g225230 +S'Saint Thomas' +p231007 +sg225232 +S'Jacques Callot' +p231008 +sg225234 +S'etching' +p231009 +sg225236 +S'published 1631' +p231010 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088a5.jpg' +p231011 +sg225240 +g27 +sa(dp231012 +g225230 +S'Saint Philip' +p231013 +sg225232 +S'Jacques Callot' +p231014 +sg225234 +S'etching' +p231015 +sg225236 +S'published 1631' +p231016 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088a7.jpg' +p231017 +sg225240 +g27 +sa(dp231018 +g225230 +S'Saint Bartholomew' +p231019 +sg225232 +S'Jacques Callot' +p231020 +sg225234 +S'etching' +p231021 +sg225236 +S'published 1631' +p231022 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088a6.jpg' +p231023 +sg225240 +g27 +sa(dp231024 +g225230 +S'Saint Matthias' +p231025 +sg225232 +S'Jacques Callot' +p231026 +sg225234 +S'etching' +p231027 +sg225236 +S'published 1631' +p231028 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088af.jpg' +p231029 +sg225240 +g27 +sa(dp231030 +g225230 +S'Saint Simon' +p231031 +sg225232 +S'Jacques Callot' +p231032 +sg225234 +S'etching' +p231033 +sg225236 +S'published 1631' +p231034 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088ad.jpg' +p231035 +sg225240 +g27 +sa(dp231036 +g225230 +S'Saint Matthew' +p231037 +sg225232 +S'Jacques Callot' +p231038 +sg225234 +S'etching' +p231039 +sg225236 +S'published 1631' +p231040 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088ae.jpg' +p231041 +sg225240 +g27 +sa(dp231042 +g225230 +S'Saint Thaddeus' +p231043 +sg225232 +S'Jacques Callot' +p231044 +sg225234 +S'etching' +p231045 +sg225236 +S'published 1631' +p231046 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088b0.jpg' +p231047 +sg225240 +g27 +sa(dp231048 +g225230 +S'Frontispiece for "The Customs of Lorraine"' +p231049 +sg225232 +S'Jacques Callot' +p231050 +sg225234 +S'etching' +p231051 +sg225236 +S'unknown date\n' +p231052 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000873b.jpg' +p231053 +sg225240 +g27 +sa(dp231054 +g225230 +S'Frontispiece for "The Calendar of Saints"' +p231055 +sg225232 +S'Jacques Callot' +p231056 +sg225234 +S'etching' +p231057 +sg225236 +S'unknown date\n' +p231058 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008741.jpg' +p231059 +sg225240 +g27 +sa(dp231060 +g225230 +S'Circumcision; Festival of Name of Christ; St. Odilo; St. Euphrosyna' +p231061 +sg225232 +S'Jacques Callot' +p231062 +sg225234 +S'etching' +p231063 +sg225236 +S'unknown date\n' +p231064 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000874c.jpg' +p231065 +sg225240 +g27 +sa(dp231066 +g225230 +S'St. Genevieve; St. Titus; St. Simeon Stylites; Epiphany' +p231067 +sg225232 +S'Jacques Callot' +p231068 +sg225234 +S'etching' +p231069 +sg225236 +S'unknown date\n' +p231070 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000874b.jpg' +p231071 +sg225240 +g27 +sa(dp231072 +g225230 +S'Return from Egypt; St. Apollinaire; St. Julian and Basilissa; St. Paul Hermit' +p231073 +sg225232 +S'Artist Information (' +p231074 +sg225234 +S'French, 1592 - 1635' +p231075 +sg225236 +S'(related artist)' +p231076 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000874a.jpg' +p231077 +sg225240 +g27 +sa(dp231078 +g225230 +S'St. Theodosius; St. Tatiana; St. Hilary; St. Felix' +p231079 +sg225232 +S'Jacques Callot' +p231080 +sg225234 +S'etching' +p231081 +sg225236 +S'unknown date\n' +p231082 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008743.jpg' +p231083 +sg225240 +g27 +sa(dp231084 +g225230 +S'St. Maurus; St. John Calybite; St. Marcellus; St. Honoratus' +p231085 +sg225232 +S'Jacques Callot' +p231086 +sg225234 +S'etching' +p231087 +sg225236 +S'unknown date\n' +p231088 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008744.jpg' +p231089 +sg225240 +g27 +sa(dp231090 +g225230 +S'St. Anthony; St. Prisca; St. Germanicus; Sts. Fabian and Sebastian' +p231091 +sg225232 +S'Jacques Callot' +p231092 +sg225234 +S'etching' +p231093 +sg225236 +S'unknown date\n' +p231094 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008747.jpg' +p231095 +sg225240 +g27 +sa(dp231096 +g225230 +S'St. Agnes; The Marriage of the Virgin; St. Ildefonsus; St. Timothy' +p231097 +sg225232 +S'Jacques Callot' +p231098 +sg225234 +S'etching' +p231099 +sg225236 +S'unknown date\n' +p231100 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008746.jpg' +p231101 +sg225240 +g27 +sa(dp231102 +g225230 +S'The Conversion of Saul; St. Paul; St. John Chrysostom; St. Cyril of Alexandria' +p231103 +sg225232 +S'Jacques Callot' +p231104 +sg225234 +S'etching' +p231105 +sg225236 +S'unknown date\n' +p231106 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008740.jpg' +p231107 +sg225240 +g27 +sa(dp231108 +g225230 +S'St. Sulpicius; St. Aldegondes; St. Sabina; The Calling of St. Mark' +p231109 +sg225232 +S'Jacques Callot' +p231110 +sg225234 +S'etching' +p231111 +sg225236 +S'unknown date\n' +p231112 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008745.jpg' +p231113 +sg225240 +g27 +sa(dp231114 +g225230 +S'St. Ignatius; Purification of the Virgin; St. Blaise; St. Isidore' +p231115 +sg225232 +S'Jacques Callot' +p231116 +sg225234 +S'etching' +p231117 +sg225236 +S'unknown date\n' +p231118 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008748.jpg' +p231119 +sg225240 +g27 +sa(dp231120 +g225230 +S'St. Agatha; St. Dorothy; St. Romuald of Ravenna; St. Paul, Bishop of Verdun' +p231121 +sg225232 +S'Jacques Callot' +p231122 +sg225234 +S'etching' +p231123 +sg225236 +S'unknown date\n' +p231124 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008749.jpg' +p231125 +sg225240 +g27 +sa(dp231126 +g225230 +S'St. Apollonia; St. Guillaume; St. Scholastica; St. Saturnin' +p231127 +sg225232 +S'Jacques Callot' +p231128 +sg225234 +S'etching' +p231129 +sg225236 +S'unknown date\n' +p231130 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008705.jpg' +p231131 +sg225240 +g27 +sa(dp231132 +g225230 +S'St. Eulalia; St. Fusca and Maura; St. Valentine; St. Anthony' +p231133 +sg225232 +S'Jacques Callot' +p231134 +sg225234 +S'etching' +p231135 +sg225236 +S'unknown date\n' +p231136 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008702.jpg' +p231137 +sg225240 +g27 +sa(dp231138 +g225230 +S'Sts. Faustinus and Jovita; St. Juliana; St. Onesimus; St. Policronius' +p231139 +sg225232 +S'Jacques Callot' +p231140 +sg225234 +S'etching' +p231141 +sg225236 +S'unknown date\n' +p231142 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086fd.jpg' +p231143 +sg225240 +g27 +sa(dp231144 +g225230 +S'St. Simeon; St. Gabinius; St. Eucharius; St. Silvanus' +p231145 +sg225232 +S'Jacques Callot' +p231146 +sg225234 +S'etching' +p231147 +sg225236 +S'unknown date\n' +p231148 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086ff.jpg' +p231149 +sg225240 +g27 +sa(dp231150 +g225230 +S'St. Felix; St. Joseph of Arimathea; St. Polycarpe; St. Matthias, Apostle' +p231151 +sg225232 +S'Jacques Callot' +p231152 +sg225234 +S'etching' +p231153 +sg225236 +S'unknown date\n' +p231154 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008703.jpg' +p231155 +sg225240 +g27 +sa(dp231156 +g225230 +S'St. Nicephorus; St. Nestor; St. Julian; Translation of St. Augustin' +p231157 +sg225232 +S'Jacques Callot' +p231158 +sg225234 +S'etching' +p231159 +sg225236 +S'unknown date\n' +p231160 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008706.jpg' +p231161 +sg225240 +g27 +sa(dp231162 +g225230 +S'The Guardian Angel; St. Simplici; St. Cunegundes; St. Luci' +p231163 +sg225232 +S'Jacques Callot' +p231164 +sg225234 +S'etching' +p231165 +sg225236 +S'unknown date\n' +p231166 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008704.jpg' +p231167 +sg225240 +g27 +sa(dp231168 +g225230 +S'St. Phocas; St. Theophilus; St. Conon; Sts. Perpetua and Felicitas' +p231169 +sg225232 +S'Jacques Callot' +p231170 +sg225234 +S'etching' +p231171 +sg225236 +S'unknown date\n' +p231172 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086fe.jpg' +p231173 +sg225240 +g27 +sa(dp231174 +g225230 +S'St. Thomas Aquin; St. Adrian and Companions; St. Frances; St. Macari' +p231175 +sg225232 +S'Jacques Callot' +p231176 +sg225234 +S'etching' +p231177 +sg225236 +S'unknown date\n' +p231178 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008707.jpg' +p231179 +sg225240 +g27 +sa(dp231180 +g225230 +S'St. Meliton; St. Firminus; St. Gregory the Great; St. Euphrasia' +p231181 +sg225232 +S'Jacques Callot' +p231182 +sg225234 +S'etching' +p231183 +sg225236 +S'unknown date\n' +p231184 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008701.jpg' +p231185 +sg225240 +g27 +sa(dp231186 +g225230 +S'St. Matilda; St. Longinus; St. Cyriacus; St. Heribert' +p231187 +sg225232 +S'Jacques Callot' +p231188 +sg225234 +S'etching' +p231189 +sg225236 +S'unknown date\n' +p231190 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008700.jpg' +p231191 +sg225240 +g27 +sa(dp231192 +g225230 +S'St. Patrick; St. Gertrude; St. Gabriel, Archangel; St. Edward' +p231193 +sg225232 +S'Jacques Callot' +p231194 +sg225234 +S'etching' +p231195 +sg225236 +S'unknown date\n' +p231196 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086fc.jpg' +p231197 +sg225240 +g27 +sa(dp231198 +g225230 +S'St. Joseph; St. Joachim; St. Benedict, Abbot; St. Catharine of Sweden' +p231199 +sg225232 +S'Jacques Callot' +p231200 +sg225234 +S'etching' +p231201 +sg225236 +S'unknown date\n' +p231202 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000876e.jpg' +p231203 +sg225240 +g27 +sa(dp231204 +g225230 +S'St. Fidelis; St. Agapetus; St. Dula; St. Latro Dimas' +p231205 +sg225232 +S'Jacques Callot' +p231206 +sg225234 +S'etching' +p231207 +sg225236 +S'unknown date\n' +p231208 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008769.jpg' +p231209 +sg225240 +g27 +sa(dp231210 +g225230 +S'The Annunciation; St. Castulus; St. Rupert; St. Gontran' +p231211 +sg225232 +S'Jacques Callot' +p231212 +sg225234 +S'etching' +p231213 +sg225236 +S'unknown date\n' +p231214 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008773.jpg' +p231215 +sg225240 +g27 +sa(dp231216 +g225230 +S'Sts. Jonas & Barachisius; St. John Climacus, Abbot; St. Benjamin; Sts. Quirinus & Bal' +p231217 +sg225232 +S'Jacques Callot' +p231218 +sg225234 +S'etching' +p231219 +sg225236 +S'unknown date\n' +p231220 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000876a.jpg' +p231221 +sg225240 +g27 +sa(dp231222 +g225230 +S'St. Hugo; St. Francis of Paula; St. Mary of Egypt; St. Richard' +p231223 +sg225232 +S'Jacques Callot' +p231224 +sg225234 +S'etching' +p231225 +sg225236 +S'unknown date\n' +p231226 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008774.jpg' +p231227 +sg225240 +g27 +sa(dp231228 +g225230 +S'St. Ambrose; St. Vincent Ferrer; St. Celestin; St. Lazarus' +p231229 +sg225232 +S'Jacques Callot' +p231230 +sg225234 +S'etching' +p231231 +sg225236 +S'unknown date\n' +p231232 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000876f.jpg' +p231233 +sg225240 +g27 +sa(dp231234 +g225230 +S'St. Perpetuus; St. Mary of Cleophas; St. Ezechiel; St. Leo the Great' +p231235 +sg225232 +S'Jacques Callot' +p231236 +sg225234 +S'etching' +p231237 +sg225236 +S'unknown date\n' +p231238 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008770.jpg' +p231239 +sg225240 +g27 +sa(dp231240 +g225230 +S'St. Victor; St. Justinus; Sts. Tiburtius and Valerianus; Sts. Basilissa and Anastasia' +p231241 +sg225232 +S'Jacques Callot' +p231242 +sg225234 +S'etching' +p231243 +sg225236 +S'unknown date\n' +p231244 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000876d.jpg' +p231245 +sg225240 +g27 +sa(dp231246 +g225230 +S'St. Maria Doloru; St. Stephen, Abbot; St. Apoloni; St. Timon' +p231247 +sg225232 +S'Jacques Callot' +p231248 +sg225234 +S'etching' +p231249 +sg225236 +S'unknown date\n' +p231250 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008771.jpg' +p231251 +sg225240 +g27 +sa(dp231252 +g225230 +S'St. Theodorus; St. Agnes of Monte Pulciano; St. Anselme, Archbishop of Canterbury; St' +p231253 +sg225232 +S'Jacques Callot' +p231254 +sg225234 +S'etching' +p231255 +sg225236 +S'unknown date\n' +p231256 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000876b.jpg' +p231257 +sg225240 +g27 +sa(dp231258 +g225230 +S'St. George; St. Sabas; St. Mark, Evangelist; St. Marcellin' +p231259 +sg225232 +S'Jacques Callot' +p231260 +sg225234 +S'etching' +p231261 +sg225236 +S'unknown date\n' +p231262 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000876c.jpg' +p231263 +sg225240 +g27 +sa(dp231264 +g225230 +S'St. Anastasius; St. Theodora; Sts. Vitalis and Valeria; St. Peter Martyr' +p231265 +sg225232 +S'Jacques Callot' +p231266 +sg225234 +S'etching' +p231267 +sg225236 +S'unknown date\n' +p231268 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008772.jpg' +p231269 +sg225240 +g27 +sa(dp231270 +g225230 +S'St. Catharine of Siena; St. Marian; St. Eutropius; St. Sophia' +p231271 +sg225232 +S'Jacques Callot' +p231272 +sg225234 +S'etching' +p231273 +sg225236 +S'unknown date\n' +p231274 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008776.jpg' +p231275 +sg225240 +g27 +sa(dp231276 +g225230 +S'St. Philip and James the Less, Apostles; St. Anthanasius; The Invention of the Cross;' +p231277 +sg225232 +S'Jacques Callot' +p231278 +sg225234 +S'etching' +p231279 +sg225236 +S'unknown date\n' +p231280 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008775.jpg' +p231281 +sg225240 +g27 +sa(dp231282 +g225230 +S'Conversion of St. Augustine; St. Hilary; St. John in front of the Latin Portal; St. J' +p231283 +sg225232 +S'Jacques Callot' +p231284 +sg225234 +S'etching' +p231285 +sg225236 +S'unknown date\n' +p231286 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000877d.jpg' +p231287 +sg225240 +g27 +sa(dp231288 +g225230 +S'St. Stanislaus; The Apparition of St. Michael; The Translation of St. Nicholas; St. G' +p231289 +sg225232 +S'Jacques Callot' +p231290 +sg225234 +S'etching' +p231291 +sg225236 +S'unknown date\n' +p231292 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000877c.jpg' +p231293 +sg225240 +g27 +sa(dp231294 +g225230 +S'St. Job, Prophet; St. Gangulphus; St. Epiphanius; St. Mary of Martyrs' +p231295 +sg225232 +S'Jacques Callot' +p231296 +sg225234 +S'etching' +p231297 +sg225236 +S'unknown date\n' +p231298 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000877b.jpg' +p231299 +sg225240 +g27 +sa(dp231300 +g225230 +S'St. Servatius; St. Boniface; St. Pachomius; St. Corona' +p231301 +sg225232 +S'Jacques Callot' +p231302 +sg225234 +S'etching' +p231303 +sg225236 +S'unknown date\n' +p231304 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000877a.jpg' +p231305 +sg225240 +g27 +sa(dp231306 +g225230 +S'St. Dympna; St. Peregrinus; St. Restituta; St. Dioscorus' +p231307 +sg225232 +S'Jacques Callot' +p231308 +sg225234 +S'etching' +p231309 +sg225236 +S'unknown date\n' +p231310 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008780.jpg' +p231311 +sg225240 +g27 +sa(dp231312 +g225230 +S'St. Potentiana; St. Dunstan; St. Yvo; St. Bernardinus of Siena' +p231313 +sg225232 +S'Jacques Callot' +p231314 +sg225234 +S'etching' +p231315 +sg225236 +S'unknown date\n' +p231316 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008779.jpg' +p231317 +sg225240 +g27 +sa(dp231318 +g225230 +S'Sts. Nicostratus and Anthiocus; St. Julia; St. Desiderius; Sts. Susanna, Palladia, an' +p231319 +sg225232 +S'Jacques Callot' +p231320 +sg225234 +S'etching' +p231321 +sg225236 +S'unknown date\n' +p231322 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008778.jpg' +p231323 +sg225240 +g27 +sa(dp231324 +g225230 +S'St. Urban; The Translation of St. Mary of James; St. Quadrat; St. Julius' +p231325 +sg225232 +S'Jacques Callot' +p231326 +sg225234 +S'etching' +p231327 +sg225236 +S'unknown date\n' +p231328 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008777.jpg' +p231329 +sg225240 +g27 +sa(dp231330 +g225230 +S'St. Germanus of Paris; St. Maximinus; St. Emmelia; St. Petronilla' +p231331 +sg225232 +S'Jacques Callot' +p231332 +sg225234 +S'etching' +p231333 +sg225236 +S'unknown date\n' +p231334 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000877f.jpg' +p231335 +sg225240 +g27 +sa(dp231336 +g225230 +S'Sts. Pamphilius and Porphyrius; St. Blandina and Companions; St. Erasmus; St. Optatus' +p231337 +sg225232 +S'Jacques Callot' +p231338 +sg225234 +S'etching' +p231339 +sg225236 +S'unknown date\n' +p231340 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000877e.jpg' +p231341 +sg225240 +g27 +sa(dp231342 +g225230 +S'St. Maria Gaudioru; St. Cladius; St. Norbert; St. Robert' +p231343 +sg225232 +S'Jacques Callot' +p231344 +sg225234 +S'etching' +p231345 +sg225236 +S'unknown date\n' +p231346 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008782.jpg' +p231347 +sg225240 +g27 +sa(dp231348 +g225230 +S'St. Medard; St. Calliopa; Sts. Primus and Felician; St. Margaret of Scotland' +p231349 +sg225232 +S'Jacques Callot' +p231350 +sg225234 +S'etching' +p231351 +sg225236 +S'unknown date\n' +p231352 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008783.jpg' +p231353 +sg225240 +g27 +sa(dp231354 +g225230 +S'St. Barnabas, Apostle; St. Honofrius; St. Anthony of Padua; St. Basil the Great' +p231355 +sg225232 +S'Jacques Callot' +p231356 +sg225234 +S'etching' +p231357 +sg225236 +S'unknown date\n' +p231358 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008784.jpg' +p231359 +sg225240 +g27 +sa(dp231360 +g225230 +S'Sts. Vitus, Modestus, & Crescentia; Sts. Julitta & Quiricus; St. Avitus, Abbot; St. E' +p231361 +sg225232 +S'Jacques Callot' +p231362 +sg225234 +S'etching' +p231363 +sg225236 +S'unknown date\n' +p231364 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008785.jpg' +p231365 +sg225240 +g27 +sa(dp231366 +g225230 +S'Sts. Gervase & Protase; St. Silverius; St. Eusebius of Samosata; St. Paulinus of Nola' +p231367 +sg225232 +S'Jacques Callot' +p231368 +sg225234 +S'etching' +p231369 +sg225236 +S'unknown date\n' +p231370 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008789.jpg' +p231371 +sg225240 +g27 +sa(dp231372 +g225230 +S'St. Zenon and Companions; St. John the Baptist; St. Gallicanus; St. Pelagius' +p231373 +sg225232 +S'Jacques Callot' +p231374 +sg225234 +S'etching' +p231375 +sg225236 +S'unknown date\n' +p231376 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000878b.jpg' +p231377 +sg225240 +g27 +sa(dp231378 +g225230 +S'St. Ladislas; Sts. Potamiana and Marcella; Sts. Peter and Paul, Apostles; St. Martial' +p231379 +sg225232 +S'Jacques Callot' +p231380 +sg225234 +S'etching' +p231381 +sg225236 +S'unknown date\n' +p231382 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008786.jpg' +p231383 +sg225240 +g27 +sa(dp231384 +g225230 +S"St. Simeon Salus; The Visitation; Deposition of the Virgin's Clothes; St. Hiacintus" +p231385 +sg225232 +S'Jacques Callot' +p231386 +sg225234 +S'etching' +p231387 +sg225236 +S'unknown date\n' +p231388 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000878a.jpg' +p231389 +sg225240 +g27 +sa(dp231390 +g225230 +S'St. Elizabeth of Portugal; St. Zoe; St. Isaiah, Prophet; St. Edelburge' +p231391 +sg225232 +S'Jacques Callot' +p231392 +sg225234 +S'etching' +p231393 +sg225236 +S'unknown date\n' +p231394 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008787.jpg' +p231395 +sg225240 +g27 +sa(dp231396 +g225230 +S'St. Procopius; Sts. Aquila and Prisca; St. Anatolia; Sts. Rufina and Secunda' +p231397 +sg225232 +S'Jacques Callot' +p231398 +sg225234 +S'etching' +p231399 +sg225236 +S'unknown date\n' +p231400 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000878c.jpg' +p231401 +sg225240 +g27 +sa(dp231402 +g225230 +S'St. Abundius; St. Galbertus; St. Marciana; St. Anacletus' +p231403 +sg225232 +S'Jacques Callot' +p231404 +sg225234 +S'etching' +p231405 +sg225236 +S'unknown date\n' +p231406 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008788.jpg' +p231407 +sg225240 +g27 +sa(dp231408 +g225230 +S'St. Bonaventura; St. Justus; St. Henry, Emperor; St. Antiochus' +p231409 +sg225232 +S'Jacques Callot' +p231410 +sg225234 +S'etching' +p231411 +sg225236 +S'unknown date\n' +p231412 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008781.jpg' +p231413 +sg225240 +g27 +sa(dp231414 +g225230 +S'St. Mary of Mont Carmel; St. Raineldis; St. Alexis; St. Arnold of Metz' +p231415 +sg225232 +S'Jacques Callot' +p231416 +sg225234 +S'etching' +p231417 +sg225236 +S'unknown date\n' +p231418 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008798.jpg' +p231419 +sg225240 +g27 +sa(dp231420 +g225230 +S'St. Frederick; St. Arsenius, Hermit; St. Elias, Prophet; St. Joseph the Just' +p231421 +sg225232 +S'Jacques Callot' +p231422 +sg225234 +S'etching' +p231423 +sg225236 +S'unknown date\n' +p231424 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008796.jpg' +p231425 +sg225240 +g27 +sa(dp231426 +g225230 +S'St. Margaret of Antioch; St. Praxedes; St. Mary Magdalene; St. Bridget of Sweden' +p231427 +sg225232 +S'Jacques Callot' +p231428 +sg225234 +S'etching' +p231429 +sg225236 +S'unknown date\n' +p231430 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008795.jpg' +p231431 +sg225240 +g27 +sa(dp231432 +g225230 +S'St. Christina; St. James, Apostle, and St. Christopher; St. Anne; Seven Sleepers of E' +p231433 +sg225232 +S'Jacques Callot' +p231434 +sg225234 +S'etching' +p231435 +sg225236 +S'unknown date\n' +p231436 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008794.jpg' +p231437 +sg225240 +g27 +sa(dp231438 +g225230 +S'St. Pantaleon; Sts. Nazarius and Celsus; St. Martha; St. Beatrice' +p231439 +sg225232 +S'Jacques Callot' +p231440 +sg225234 +S'etching' +p231441 +sg225236 +S'unknown date\n' +p231442 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008793.jpg' +p231443 +sg225240 +g27 +sa(dp231444 +g225230 +S'Sts. Donatilla, Maxima & Secunda; St. Fabius;St. John Colombini; St. Ignatius Loyola' +p231445 +sg225232 +S'Jacques Callot' +p231446 +sg225234 +S'etching' +p231447 +sg225236 +S'unknown date\n' +p231448 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000878f.jpg' +p231449 +sg225240 +g27 +sa(dp231450 +g225230 +S'St. Peter, Apostle; St. Mary of Angels; Discovery of the Body of St. Stephen; St. Dom' +p231451 +sg225232 +S'Jacques Callot' +p231452 +sg225234 +S'etching' +p231453 +sg225236 +S'unknown date\n' +p231454 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008792.jpg' +p231455 +sg225240 +g27 +sa(dp231456 +g225230 +S'St. Mary of Snow; St. Memmius, Bishop; The Transfiguration; Sts. Justus and Pastor' +p231457 +sg225232 +S'Jacques Callot' +p231458 +sg225234 +S'etching' +p231459 +sg225236 +S'unknown date\n' +p231460 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000878e.jpg' +p231461 +sg225240 +g27 +sa(dp231462 +g225230 +S'St. Albert of Sicliy, Carmelite; St. Marinus;St. Demetrius and Companions; St. Lauren' +p231463 +sg225232 +S'Jacques Callot' +p231464 +sg225234 +S'etching' +p231465 +sg225236 +S'unknown date\n' +p231466 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008791.jpg' +p231467 +sg225240 +g27 +sa(dp231468 +g225230 +S'St. Alexander Carbonarius; St. Clare; St. Digna and Companions; St. Concordia' +p231469 +sg225232 +S'Jacques Callot' +p231470 +sg225234 +S'etching' +p231471 +sg225236 +S'unknown date\n' +p231472 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008797.jpg' +p231473 +sg225240 +g27 +sa(dp231474 +g225230 +S'St. Hippolytus; St. Radegund, Queen; St. Cassian; St. Athanasia' +p231475 +sg225232 +S'Jacques Callot' +p231476 +sg225234 +S'etching' +p231477 +sg225236 +S'unknown date\n' +p231478 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008790.jpg' +p231479 +sg225240 +g27 +sa(dp231480 +g225230 +S'The Assumption; St. Roch; Salvator Mundi; St. Clare of Monte Falco' +p231481 +sg225232 +S'Jacques Callot' +p231482 +sg225234 +S'etching' +p231483 +sg225236 +S'unknown date\n' +p231484 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000878d.jpg' +p231485 +sg225240 +g27 +sa(dp231486 +g225230 +S'St. Helen; St. Donatus; St. Ludovicus, Bishop; St. Bernard' +p231487 +sg225232 +S'Jacques Callot' +p231488 +sg225234 +S'etching' +p231489 +sg225236 +S'unknown date\n' +p231490 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008857.jpg' +p231491 +sg225240 +g27 +sa(dp231492 +g225230 +S'St. Philibert, Abbot; St. Privatus; St. Symphorian; St. Philip' +p231493 +sg225232 +S'Jacques Callot' +p231494 +sg225234 +S'etching' +p231495 +sg225236 +S'unknown date\n' +p231496 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008856.jpg' +p231497 +sg225240 +g27 +sa(dp231498 +g225230 +S'St. Aurea; St. Bartholomew; St. Louis; St. Genesius' +p231499 +sg225232 +S'Jacques Callot' +p231500 +sg225234 +S'etching' +p231501 +sg225236 +S'unknown date\n' +p231502 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008855.jpg' +p231503 +sg225240 +g27 +sa(dp231504 +g225230 +S'St. Patricia; Sts. Secundus and Alexander; St. Cesarius; St. Augustin' +p231505 +sg225232 +S'Jacques Callot' +p231506 +sg225234 +S'etching' +p231507 +sg225236 +S'unknown date\n' +p231508 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008851.jpg' +p231509 +sg225240 +g27 +sa(dp231510 +g225230 +S'St. Mederic, Abbot; Beheading of John the Baptist; St. Fiacre; Festival of the Virgin' +p231511 +sg225232 +S'Jacques Callot' +p231512 +sg225234 +S'etching' +p231513 +sg225236 +S'unknown date\n' +p231514 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008853.jpg' +p231515 +sg225240 +g27 +sa(dp231516 +g225230 +S'St. Giles; St. Lupus; St. Anne; St. Nonnosus' +p231517 +sg225232 +S'Jacques Callot' +p231518 +sg225234 +S'etching' +p231519 +sg225236 +S'unknown date\n' +p231520 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008854.jpg' +p231521 +sg225240 +g27 +sa(dp231522 +g225230 +S'St. Mansuetus; Sts. Serapia and Erasma; Moses; St. Bertin, Abbot' +p231523 +sg225232 +S'Jacques Callot' +p231524 +sg225234 +S'etching' +p231525 +sg225236 +S'unknown date\n' +p231526 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000884d.jpg' +p231527 +sg225240 +g27 +sa(dp231528 +g225230 +S'St. Eleutherius, Abbot; St. Regina; St. John; The Nativity of the Virgin' +p231529 +sg225232 +S'Jacques Callot' +p231530 +sg225234 +S'etching' +p231531 +sg225236 +S'unknown date\n' +p231532 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008852.jpg' +p231533 +sg225240 +g27 +sa(dp231534 +g225230 +S'Sts. Gorgonius & Dorothy; St. Nicholas of Tolentino; St. Polianus & Nemesian; St. Pul' +p231535 +sg225232 +S'Jacques Callot' +p231536 +sg225234 +S'etching' +p231537 +sg225236 +S'unknown date\n' +p231538 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008850.jpg' +p231539 +sg225240 +g27 +sa(dp231540 +g225230 +S'St. Paphnutius; Sts. Macedonius and Theodulus; St. Amatus; St. Cornelias' +p231541 +sg225232 +S'Jacques Callot' +p231542 +sg225234 +S'etching' +p231543 +sg225236 +S'unknown date\n' +p231544 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000884f.jpg' +p231545 +sg225240 +g27 +sa(dp231546 +g225230 +S'Exaltation of the Holy Cross; St. Aper; St. Euphemia; St. Lambert' +p231547 +sg225232 +S'Jacques Callot' +p231548 +sg225234 +S'etching' +p231549 +sg225236 +S'unknown date\n' +p231550 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008858.jpg' +p231551 +sg225240 +g27 +sa(dp231552 +g225230 +S'St. Ferreolus; St. Januarius; St. Eustachius & his Children; Sts. Fausta & Evelasius' +p231553 +sg225232 +S'Jacques Callot' +p231554 +sg225234 +S'etching' +p231555 +sg225236 +S'unknown date\n' +p231556 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000884e.jpg' +p231557 +sg225240 +g27 +sa(dp231558 +g225230 +S'St. Canida; St. Matthew; St. Ipigenia; St. Maurice and Companions' +p231559 +sg225232 +S'Jacques Callot' +p231560 +sg225234 +S'etching' +p231561 +sg225236 +S'unknown date\n' +p231562 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008864.jpg' +p231563 +sg225240 +g27 +sa(dp231564 +g225230 +S'St. Thecla; St. Linus; Sts. Andochius and Thyrsus; St. Cleophas' +p231565 +sg225232 +S'Jacques Callot' +p231566 +sg225234 +S'etching' +p231567 +sg225236 +S'unknown date\n' +p231568 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000885a.jpg' +p231569 +sg225240 +g27 +sa(dp231570 +g225230 +S'St. Calistratus; Sts. Cyprian and Justina; Sts. Comus and Damian; St. Elzear, Count' +p231571 +sg225232 +S'Jacques Callot' +p231572 +sg225234 +S'etching' +p231573 +sg225236 +S'unknown date\n' +p231574 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008861.jpg' +p231575 +sg225240 +g27 +sa(dp231576 +g225230 +S'St. Wenceslas; St. Michael, Archangel; The Guardian Angel; St. Jerome' +p231577 +sg225232 +S'Jacques Callot' +p231578 +sg225234 +S'etching' +p231579 +sg225236 +S'unknown date\n' +p231580 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008860.jpg' +p231581 +sg225240 +g27 +sa(dp231582 +g225230 +S'St. Remigius; St. Leodegarius; St. Gerard, Abbot; St. Francis of Assisi' +p231583 +sg225232 +S'Jacques Callot' +p231584 +sg225234 +S'etching' +p231585 +sg225236 +S'unknown date\n' +p231586 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000885b.jpg' +p231587 +sg225240 +g27 +sa(dp231588 +g225230 +S'St. Theresa; St. Placidus and Flavia; St. Bruno; St. Faith' +p231589 +sg225232 +S'Jacques Callot' +p231590 +sg225234 +S'etching' +p231591 +sg225236 +S'unknown date\n' +p231592 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000885d.jpg' +p231593 +sg225240 +g27 +sa(dp231594 +g225230 +S'St. Mary of Victory; St. Simeon, Prophet; St. Pelagia; Sts. Reparata and Benedicta' +p231595 +sg225232 +S'Jacques Callot' +p231596 +sg225234 +S'etching' +p231597 +sg225236 +S'unknown date\n' +p231598 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000885c.jpg' +p231599 +sg225240 +g27 +sa(dp231600 +g225230 +S'St. Dionysius, Rusticus & Eleutherius; St. Abraham; St. Gereon & Companions; Sts. Pro' +p231601 +sg225232 +S'Jacques Callot' +p231602 +sg225234 +S'etching' +p231603 +sg225236 +S'unknown date\n' +p231604 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000885e.jpg' +p231605 +sg225240 +g27 +sa(dp231606 +g225230 +S'St. Maximilian; St. Carpus; St. Daniel and Angelus; St. Fortunatus' +p231607 +sg225232 +S'Jacques Callot' +p231608 +sg225234 +S'etching' +p231609 +sg225236 +S'unknown date\n' +p231610 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000885f.jpg' +p231611 +sg225240 +g27 +sa(dp231612 +g225230 +S'St. Calixtus; St. Hedwiges; Sts. Martinian and Saturian; St. Florentinus' +p231613 +sg225232 +S'Jacques Callot' +p231614 +sg225234 +S'etching' +p231615 +sg225236 +S'unknown date\n' +p231616 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008859.jpg' +p231617 +sg225240 +g27 +sa(dp231618 +g225230 +S'St. Luke; St. Lucian; St. Irene; St. Hilarion' +p231619 +sg225232 +S'Jacques Callot' +p231620 +sg225234 +S'etching' +p231621 +sg225236 +S'unknown date\n' +p231622 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008862.jpg' +p231623 +sg225240 +g27 +sa(dp231624 +g225230 +S'St. Ursula and Companions; St. Mary Salome; St. Severinus; St. Maglorius' +p231625 +sg225232 +S'Jacques Callot' +p231626 +sg225234 +S'etching' +p231627 +sg225236 +S'unknown date\n' +p231628 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008863.jpg' +p231629 +sg225240 +g27 +sa(dp231630 +g225230 +S'Sts. Chrysanthus & Daria; Sts. Crispin & Crispinian; St. Evaristus; St. Frumentius' +p231631 +sg225232 +S'Jacques Callot' +p231632 +sg225234 +S'etching' +p231633 +sg225236 +S'unknown date\n' +p231634 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008866.jpg' +p231635 +sg225240 +g27 +sa(dp231636 +g225230 +S'Sts. Simon and Jude, Apostles; St. Narcissus; St. Marcellus; St. Quintin' +p231637 +sg225232 +S'Jacques Callot' +p231638 +sg225234 +S'etching' +p231639 +sg225236 +S'unknown date\n' +p231640 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008865.jpg' +p231641 +sg225240 +g27 +sa(dp231642 +g225230 +S'St. Benignus; Festival of All Saints; Commemoration of the Dead; St. Hubert' +p231643 +sg225232 +S'Jacques Callot' +p231644 +sg225234 +S'etching' +p231645 +sg225236 +S'unknown date\n' +p231646 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008867.jpg' +p231647 +sg225240 +g27 +sa(dp231648 +g225230 +S'St. Emeric; St. Charles Borromeo; St. Vitalis & Agricola; Sts. Zachary & Elizabeth' +p231649 +sg225232 +S'Jacques Callot' +p231650 +sg225234 +S'etching' +p231651 +sg225236 +S'unknown date\n' +p231652 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000886d.jpg' +p231653 +sg225240 +g27 +sa(dp231654 +g225230 +S'Sts. Philoteus and Theotimus; St. Leonard; St. Florentinus; St. Godfrey' +p231655 +sg225232 +S'Jacques Callot' +p231656 +sg225234 +S'etching' +p231657 +sg225236 +S'unknown date\n' +p231658 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000886b.jpg' +p231659 +sg225240 +g27 +sa(dp231660 +g225230 +S'St. Castorius; St. Carpophorus & The Four Crowned Martyrs; Commemoration of the Image' +p231661 +sg225232 +S'Jacques Callot' +p231662 +sg225234 +S'etching' +p231663 +sg225236 +S'unknown date\n' +p231664 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000886c.jpg' +p231665 +sg225240 +g27 +sa(dp231666 +g225230 +S'St. Martin; St. Tryphon and Companions; St. Renatus; St. Didacus' +p231667 +sg225232 +S'Jacques Callot' +p231668 +sg225234 +S'etching' +p231669 +sg225236 +S'unknown date\n' +p231670 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000886a.jpg' +p231671 +sg225240 +g27 +sa(dp231672 +g225230 +S'St. Brice; St. Serapion; St. Eugenius; St. Edmund' +p231673 +sg225232 +S'Jacques Callot' +p231674 +sg225234 +S'etching' +p231675 +sg225236 +S'unknown date\n' +p231676 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000886e.jpg' +p231677 +sg225240 +g27 +sa(dp231678 +g225230 +S'St. Gregory; Sts. Romanus & Barulla; Dedication of the Basilicas of SS. Peter & Paul;' +p231679 +sg225232 +S'Jacques Callot' +p231680 +sg225234 +S'etching' +p231681 +sg225236 +S'unknown date\n' +p231682 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008868.jpg' +p231683 +sg225240 +g27 +sa(dp231684 +g225230 +S'Edmund, King of England, Martyr; Presentation of the Virgin; St. Columban; St. Cecil' +p231685 +sg225232 +S'Jacques Callot' +p231686 +sg225234 +S'etching' +p231687 +sg225236 +S'unknown date\n' +p231688 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000886f.jpg' +p231689 +sg225240 +g27 +sa(dp231690 +g225230 +S'St. Clement; St. Lucretia; St. Chrysogonus; St. Catharine' +p231691 +sg225232 +S'Jacques Callot' +p231692 +sg225234 +S'etching' +p231693 +sg225236 +S'unknown date\n' +p231694 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008869.jpg' +p231695 +sg225240 +g27 +sa(dp231696 +g225230 +S'St. Mercury; St. Peter of Alexandria; St. Conrad; Sts. Barlaam and Josaphat' +p231697 +sg225232 +S'Jacques Callot' +p231698 +sg225234 +S'etching' +p231699 +sg225236 +S'unknown date\n' +p231700 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008870.jpg' +p231701 +sg225240 +g27 +sa(dp231702 +g225230 +S'St. Liverius; St. Saturninus; St. T(I?)oscion; St. Andrew' +p231703 +sg225232 +S'Jacques Callot' +p231704 +sg225234 +S'etching' +p231705 +sg225236 +S'unknown date\n' +p231706 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008820.jpg' +p231707 +sg225240 +g27 +sa(dp231708 +g225230 +S'St. Eligius; St. Agericus; St. Francis Xavier; St. Peter Chrysologus' +p231709 +sg225232 +S'Jacques Callot' +p231710 +sg225234 +S'etching' +p231711 +sg225236 +S'unknown date\n' +p231712 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008823.jpg' +p231713 +sg225240 +g27 +sa(dp231714 +g225230 +S'St. Bibiana; St. Birinus; St. Barbara; St. Sabbas' +p231715 +sg225232 +S'Jacques Callot' +p231716 +sg225234 +S'etching' +p231717 +sg225236 +S'unknown date\n' +p231718 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008821.jpg' +p231719 +sg225240 +g27 +sa(dp231720 +g225230 +S'St. Nicholas; St. Dionisia and Son; St. Agatha; Conception of the Virgin' +p231721 +sg225232 +S'Jacques Callot' +p231722 +sg225234 +S'etching' +p231723 +sg225236 +S'unknown date\n' +p231724 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008827.jpg' +p231725 +sg225240 +g27 +sa(dp231726 +g225230 +S'St. Romaricus; St. Leocadia; Sts. Mennas and Hermogenes; St. Damasus' +p231727 +sg225232 +S'Jacques Callot' +p231728 +sg225234 +S'etching' +p231729 +sg225236 +S'unknown date\n' +p231730 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008826.jpg' +p231731 +sg225240 +g27 +sa(dp231732 +g225230 +S'Sts. Maxentius & Leander; Sts. Sergius & Paul; Sts. Eustratius & Orestes; St. Lucy' +p231733 +sg225232 +S'Jacques Callot' +p231734 +sg225234 +S'etching' +p231735 +sg225236 +S'unknown date\n' +p231736 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008824.jpg' +p231737 +sg225240 +g27 +sa(dp231738 +g225230 +S"St. Othilia; Sts. Nicasius & Eutropia; St. Agnelus; Sts. Thyrs' & Callinicus" +p231739 +sg225232 +S'Jacques Callot' +p231740 +sg225234 +S'etching' +p231741 +sg225236 +S'unknown date\n' +p231742 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008825.jpg' +p231743 +sg225240 +g27 +sa(dp231744 +g225230 +S'St. Irene & Companions; St. Christiana; Sts. Anania, Azaria & Misael; St. Florianus &' +p231745 +sg225232 +S'Jacques Callot' +p231746 +sg225234 +S'etching' +p231747 +sg225236 +S'unknown date\n' +p231748 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008822.jpg' +p231749 +sg225240 +g27 +sa(dp231750 +g225230 +S'Waiting for the Virgin to Give Birth; St. Nemesius; St. Philogonius; St. Thomas' +p231751 +sg225232 +S'Jacques Callot' +p231752 +sg225234 +S'etching' +p231753 +sg225236 +S'unknown date\n' +p231754 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008828.jpg' +p231755 +sg225240 +g27 +sa(dp231756 +g225230 +S'St. Flavian; St. Victoria; St. Servulus; St. Tharsilla' +p231757 +sg225232 +S'Jacques Callot' +p231758 +sg225234 +S'etching' +p231759 +sg225236 +S'unknown date\n' +p231760 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000882c.jpg' +p231761 +sg225240 +g27 +sa(dp231762 +g225230 +S'The Nativity; St. Stephen; St. John; Holy Innocents' +p231763 +sg225232 +S'Jacques Callot' +p231764 +sg225234 +S'etching' +p231765 +sg225236 +S'unknown date\n' +p231766 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000882d.jpg' +p231767 +sg225240 +g27 +sa(dp231768 +g225230 +S'St. David, King and Prophet; Sts. Sabinus and Venustianus; St. Sylvester; St. Colomba' +p231769 +sg225232 +S'Jacques Callot' +p231770 +sg225234 +S'etching' +p231771 +sg225236 +S'unknown date\n' +p231772 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000882a.jpg' +p231773 +sg225240 +g27 +sa(dp231774 +g225230 +S'Saint John the Baptist' +p231775 +sg225232 +S'Jacques Callot' +p231776 +sg225234 +S'etching' +p231777 +sg225236 +S'unknown date\n' +p231778 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087a3.jpg' +p231779 +sg225240 +g27 +sa(dp231780 +g225230 +S'Saint Mary Magdalene' +p231781 +sg225232 +S'Jacques Callot' +p231782 +sg225234 +S'etching' +p231783 +sg225236 +S'unknown date\n' +p231784 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087a4.jpg' +p231785 +sg225240 +g27 +sa(dp231786 +g225230 +S'Death of the Magdalene' +p231787 +sg225232 +S'Jacques Callot' +p231788 +sg225234 +S'etching' +p231789 +sg225236 +S'unknown date\n' +p231790 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087a7.jpg' +p231791 +sg225240 +g27 +sa(dp231792 +g225230 +S'Saint Jerome' +p231793 +sg225232 +S'Jacques Callot' +p231794 +sg225234 +S'etching' +p231795 +sg225236 +S'unknown date\n' +p231796 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087a8.jpg' +p231797 +sg225240 +g27 +sa(dp231798 +g225230 +S'Saint Francis' +p231799 +sg225232 +S'Jacques Callot' +p231800 +sg225234 +S'etching' +p231801 +sg225236 +S'unknown date\n' +p231802 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087ec.jpg' +p231803 +sg225240 +g27 +sa(dp231804 +g225230 +S'Title Page for "The Large Miseries of War"' +p231805 +sg225232 +S'Jacques Callot' +p231806 +sg225234 +S'etching' +p231807 +sg225236 +S'c. 1633' +p231808 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088dd.jpg' +p231809 +sg225240 +g27 +sa(dp231810 +g225230 +S'Recruitment of Troops' +p231811 +sg225232 +S'Jacques Callot' +p231812 +sg225234 +S'etching' +p231813 +sg225236 +S'c. 1633' +p231814 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088e0.jpg' +p231815 +sg225240 +g27 +sa(dp231816 +g225230 +S'The Battle' +p231817 +sg225232 +S'Jacques Callot' +p231818 +sg225234 +S'etching' +p231819 +sg225236 +S'c. 1633' +p231820 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088e1.jpg' +p231821 +sg225240 +g27 +sa(dp231822 +g225230 +S'Scene of Pillage' +p231823 +sg225232 +S'Jacques Callot' +p231824 +sg225234 +S'etching' +p231825 +sg225236 +S'c. 1633' +p231826 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088e8.jpg' +p231827 +sg225240 +g27 +sa(dp231828 +g225230 +S'Plundering a Large Farmhouse' +p231829 +sg225232 +S'Jacques Callot' +p231830 +sg225234 +S'etching' +p231831 +sg225236 +S'c. 1633' +p231832 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088e2.jpg' +p231833 +sg225240 +g27 +sa(dp231834 +g225230 +S'Destruction of a Convent' +p231835 +sg225232 +S'Jacques Callot' +p231836 +sg225234 +S'etching' +p231837 +sg225236 +S'c. 1633' +p231838 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088e3.jpg' +p231839 +sg225240 +g27 +sa(dp231840 +g225230 +S'Plundering and Burning a Village' +p231841 +sg225232 +S'Jacques Callot' +p231842 +sg225234 +S'etching' +p231843 +sg225236 +S'c. 1633' +p231844 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088f0.jpg' +p231845 +sg225240 +g27 +sa(dp231846 +g225230 +S'Attack on a Coach' +p231847 +sg225232 +S'Jacques Callot' +p231848 +sg225234 +S'etching' +p231849 +sg225236 +S'c. 1633' +p231850 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088ec.jpg' +p231851 +sg225240 +g27 +sa(dp231852 +g225230 +S'Discovery of the Criminal Soldiers' +p231853 +sg225232 +S'Jacques Callot' +p231854 +sg225234 +S'etching' +p231855 +sg225236 +S'c. 1633' +p231856 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088f6.jpg' +p231857 +sg225240 +g27 +sa(dp231858 +g225230 +S'The Strappado' +p231859 +sg225232 +S'Jacques Callot' +p231860 +sg225234 +S'etching' +p231861 +sg225236 +S'c. 1633' +p231862 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088f5.jpg' +p231863 +sg225240 +g27 +sa(dp231864 +g225230 +S'The Hanging' +p231865 +sg225232 +S'Jacques Callot' +p231866 +sg225234 +S'etching' +p231867 +sg225236 +S'c. 1633' +p231868 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088ee.jpg' +p231869 +sg225240 +g27 +sa(dp231870 +g225230 +S'The Firing Squad' +p231871 +sg225232 +S'Jacques Callot' +p231872 +sg225234 +S'etching' +p231873 +sg225236 +S'c. 1633' +p231874 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088ed.jpg' +p231875 +sg225240 +g27 +sa(dp231876 +g225230 +S'The Stake' +p231877 +sg225232 +S'Jacques Callot' +p231878 +sg225234 +S'etching' +p231879 +sg225236 +S'c. 1633' +p231880 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000898f.jpg' +p231881 +sg225240 +g27 +sa(dp231882 +g225230 +S'The Wheel' +p231883 +sg225232 +S'Jacques Callot' +p231884 +sg225234 +S'etching' +p231885 +sg225236 +S'c. 1633' +p231886 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000898d.jpg' +p231887 +sg225240 +g27 +sa(dp231888 +g225230 +S'The Hospital' +p231889 +sg225232 +S'Jacques Callot' +p231890 +sg225234 +S'etching' +p231891 +sg225236 +S'c. 1633' +p231892 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000898c.jpg' +p231893 +sg225240 +g27 +sa(dp231894 +g225230 +S'Dying Soldiers by the Roadside' +p231895 +sg225232 +S'Jacques Callot' +p231896 +sg225234 +S'etching' +p231897 +sg225236 +S'c. 1633' +p231898 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000898b.jpg' +p231899 +sg225240 +g27 +sa(dp231900 +g225230 +S'The Peasants Avenge Themselves' +p231901 +sg225232 +S'Jacques Callot' +p231902 +sg225234 +S'etching' +p231903 +sg225236 +S'c. 1633' +p231904 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008987.jpg' +p231905 +sg225240 +g27 +sa(dp231906 +g225230 +S'Distribution of Rewards' +p231907 +sg225232 +S'Jacques Callot' +p231908 +sg225234 +S'etching' +p231909 +sg225236 +S'c. 1633' +p231910 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008986.jpg' +p231911 +sg225240 +g27 +sa(dp231912 +g225230 +S'Frontispiece for "The Life of the Virgin"' +p231913 +sg225232 +S'Jacques Callot' +p231914 +sg225234 +S'etching' +p231915 +sg225236 +S'in or after 1630' +p231916 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000883d.jpg' +p231917 +sg225240 +g27 +sa(dp231918 +g225230 +S'The Birth of the Virgin' +p231919 +sg225232 +S'Jacques Callot' +p231920 +sg225234 +S'etching' +p231921 +sg225236 +S'in or after 1630' +p231922 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000883e.jpg' +p231923 +sg225240 +g27 +sa(dp231924 +g225230 +S'The Presentation of the Virgin' +p231925 +sg225232 +S'Jacques Callot' +p231926 +sg225234 +S'etching' +p231927 +sg225236 +S'in or after 1630' +p231928 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008849.jpg' +p231929 +sg225240 +g27 +sa(dp231930 +g225230 +S'The Marriage of the Virgin' +p231931 +sg225232 +S'Jacques Callot' +p231932 +sg225234 +S'etching' +p231933 +sg225236 +S'in or after 1630' +p231934 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000884a.jpg' +p231935 +sg225240 +g27 +sa(dp231936 +g225230 +S'The Annunciation' +p231937 +sg225232 +S'Jacques Callot' +p231938 +sg225234 +S'etching' +p231939 +sg225236 +S'in or after 1630' +p231940 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000883f.jpg' +p231941 +sg225240 +g27 +sa(dp231942 +g225230 +S'The Visitation' +p231943 +sg225232 +S'Jacques Callot' +p231944 +sg225234 +S'etching' +p231945 +sg225236 +S'in or after 1630' +p231946 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008840.jpg' +p231947 +sg225240 +g27 +sa(dp231948 +g225230 +S'The Nativity' +p231949 +sg225232 +S'Jacques Callot' +p231950 +sg225234 +S'etching' +p231951 +sg225236 +S'in or after 1630' +p231952 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008845.jpg' +p231953 +sg225240 +g27 +sa(dp231954 +g225230 +S'The Virgin Presents Jesus at the Temple' +p231955 +sg225232 +S'Jacques Callot' +p231956 +sg225234 +S'etching' +p231957 +sg225236 +S'in or after 1630' +p231958 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008846.jpg' +p231959 +sg225240 +g27 +sa(dp231960 +g225230 +S'The Adoration of the Magi' +p231961 +sg225232 +S'Jacques Callot' +p231962 +sg225234 +S'etching' +p231963 +sg225236 +S'in or after 1630' +p231964 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008839.jpg' +p231965 +sg225240 +g27 +sa(dp231966 +g225230 +S'The Flight into Egypt' +p231967 +sg225232 +S'Jacques Callot' +p231968 +sg225234 +S'etching' +p231969 +sg225236 +S'in or after 1630' +p231970 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000883a.jpg' +p231971 +sg225240 +g27 +sa(dp231972 +g225230 +S'The Death of the Virgin' +p231973 +sg225232 +S'Jacques Callot' +p231974 +sg225234 +S'etching' +p231975 +sg225236 +S'in or after 1630' +p231976 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008837.jpg' +p231977 +sg225240 +g27 +sa(dp231978 +g225230 +S'The Burial of the Virgin' +p231979 +sg225232 +S'Jacques Callot' +p231980 +sg225234 +S'etching' +p231981 +sg225236 +S'in or after 1630' +p231982 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008838.jpg' +p231983 +sg225240 +g27 +sa(dp231984 +g225230 +S'The Assumption of the Virgin' +p231985 +sg225232 +S'Jacques Callot' +p231986 +sg225234 +S'etching' +p231987 +sg225236 +S'in or after 1630' +p231988 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008847.jpg' +p231989 +sg225240 +g27 +sa(dp231990 +g225230 +S'Attributes of the Virgin' +p231991 +sg225232 +S'Jacques Callot' +p231992 +sg225234 +S'etching' +p231993 +sg225236 +S'in or after 1630' +p231994 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008848.jpg' +p231995 +sg225240 +g27 +sa(dp231996 +g225230 +S'The Annunciation' +p231997 +sg225232 +S'Jacques Callot' +p231998 +sg225234 +S'etching' +p231999 +sg225236 +S'unknown date\n' +p232000 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000884b.jpg' +p232001 +sg225240 +g27 +sa(dp232002 +g225230 +S'Title Page for "The Fantasies"' +p232003 +sg225232 +S'Jacques Callot' +p232004 +sg225234 +S'etching' +p232005 +sg225236 +S'probably 1634' +p232006 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087f5.jpg' +p232007 +sg225240 +g27 +sa(dp232008 +g225230 +S'Lady with Dress Gathered Up, and Two Gentlemen' +p232009 +sg225232 +S'Jacques Callot' +p232010 +sg225234 +S'etching' +p232011 +sg225236 +S'probably 1634' +p232012 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087f6.jpg' +p232013 +sg225240 +g27 +sa(dp232014 +g225230 +S'Lady with Plumed Hat, and Two Gentlemen' +p232015 +sg225232 +S'Jacques Callot' +p232016 +sg225234 +S'etching' +p232017 +sg225236 +S'probably 1634' +p232018 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087f9.jpg' +p232019 +sg225240 +g27 +sa(dp232020 +g225230 +S'Lady with String Instrument, and Two Gentlemen' +p232021 +sg225232 +S'Jacques Callot' +p232022 +sg225234 +S'etching' +p232023 +sg225236 +S'probably 1634' +p232024 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087fa.jpg' +p232025 +sg225240 +g27 +sa(dp232026 +g225230 +S'Lady with Outstretched Arm, and Two Gentlemen' +p232027 +sg225232 +S'Jacques Callot' +p232028 +sg225234 +S'etching' +p232029 +sg225236 +S'probably 1634' +p232030 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087f1.jpg' +p232031 +sg225240 +g27 +sa(dp232032 +g225230 +S'Three Gentlemen' +p232033 +sg225232 +S'Jacques Callot' +p232034 +sg225234 +S'etching' +p232035 +sg225236 +S'probably 1634' +p232036 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087f2.jpg' +p232037 +sg225240 +g27 +sa(dp232038 +g225230 +S'Lady with Large Plumes, and Two Gentlemen' +p232039 +sg225232 +S'Jacques Callot' +p232040 +sg225234 +S'etching' +p232041 +sg225236 +S'probably 1634' +p232042 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087ef.jpg' +p232043 +sg225240 +g27 +sa(dp232044 +g225230 +S'Lady Seen from Behind, and Two Gentlemen' +p232045 +sg225232 +S'Jacques Callot' +p232046 +sg225234 +S'etching' +p232047 +sg225236 +S'probably 1634' +p232048 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087f0.jpg' +p232049 +sg225240 +g27 +sa(dp232050 +g225230 +S'Lady with Outstretched Arm, Seen from Behind, and Two Gentlemen' +p232051 +sg225232 +S'Jacques Callot' +p232052 +sg225234 +S'etching' +p232053 +sg225236 +S'probably 1634' +p232054 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087ed.jpg' +p232055 +sg225240 +g27 +sa(dp232056 +g225230 +S'Lady with Arms Folded, and Two Gentlemen' +p232057 +sg225232 +S'Jacques Callot' +p232058 +sg225234 +S'etching' +p232059 +sg225236 +S'probably 1634' +p232060 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087ee.jpg' +p232061 +sg225240 +g27 +sa(dp232062 +g225230 +S'Lady with Wine Bottle, and Two Gentlemen' +p232063 +sg225232 +S'Jacques Callot' +p232064 +sg225234 +S'etching' +p232065 +sg225236 +S'probably 1634' +p232066 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087f7.jpg' +p232067 +sg225240 +g27 +sa(dp232068 +g225230 +S'Lady in Long Cloak, and Two Gentlemen' +p232069 +sg225232 +S'Jacques Callot' +p232070 +sg225234 +S'etching' +p232071 +sg225236 +S'probably 1634' +p232072 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087f8.jpg' +p232073 +sg225240 +g27 +sa(dp232074 +g225230 +S'Lady with Plumes, and Two Gentlemen' +p232075 +sg225232 +S'Jacques Callot' +p232076 +sg225234 +S'etching' +p232077 +sg225236 +S'probably 1634' +p232078 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087f3.jpg' +p232079 +sg225240 +g27 +sa(dp232080 +g225230 +S'Three Women, One Holding a Child' +p232081 +sg225232 +S'Jacques Callot' +p232082 +sg225234 +S'etching' +p232083 +sg225236 +S'probably 1634' +p232084 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087f4.jpg' +p232085 +sg225240 +g27 +sa(dp232086 +g225230 +S'Title Page for "The Martyrdoms of the Apostles"' +p232087 +sg225232 +S'Jacques Callot' +p232088 +sg225234 +S'etching' +p232089 +sg225236 +S'c. 1634/1635' +p232090 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008879.jpg' +p232091 +sg225240 +g27 +sa(dp232092 +g225230 +S'The Martyrdom of Saint Peter' +p232093 +sg225232 +S'Jacques Callot' +p232094 +sg225234 +S'etching' +p232095 +sg225236 +S'c. 1634/1635' +p232096 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000887a.jpg' +p232097 +sg225240 +g27 +sa(dp232098 +g225230 +S'The Martyrdom of Saint Paul' +p232099 +sg225232 +S'Jacques Callot' +p232100 +sg225234 +S'etching' +p232101 +sg225236 +S'c. 1634/1635' +p232102 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008871.jpg' +p232103 +sg225240 +g27 +sa(dp232104 +g225230 +S'The Martyrdom of Saint Andrew' +p232105 +sg225232 +S'Jacques Callot' +p232106 +sg225234 +S'etching' +p232107 +sg225236 +S'c. 1634/1635' +p232108 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008872.jpg' +p232109 +sg225240 +g27 +sa(dp232110 +g225230 +S'The Martyrdom of Saint James Major' +p232111 +sg225232 +S'Jacques Callot' +p232112 +sg225234 +S'etching' +p232113 +sg225236 +S'c. 1634/1635' +p232114 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008877.jpg' +p232115 +sg225240 +g27 +sa(dp232116 +g225230 +S'The Martyrdom of Saint John the Evangelist' +p232117 +sg225232 +S'Jacques Callot' +p232118 +sg225234 +S'etching' +p232119 +sg225236 +S'c. 1634/1635' +p232120 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008878.jpg' +p232121 +sg225240 +g27 +sa(dp232122 +g225230 +S'The Martyrdom of Saint Thomas' +p232123 +sg225232 +S'Jacques Callot' +p232124 +sg225234 +S'etching' +p232125 +sg225236 +S'c. 1634/1635' +p232126 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000887d.jpg' +p232127 +sg225240 +g27 +sa(dp232128 +g225230 +S'The Martyrdom of Saint James Minor' +p232129 +sg225232 +S'Jacques Callot' +p232130 +sg225234 +S'etching' +p232131 +sg225236 +S'c. 1634/1635' +p232132 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000887e.jpg' +p232133 +sg225240 +g27 +sa(dp232134 +g225230 +S'The Martyrdom of Saint Philip' +p232135 +sg225232 +S'Jacques Callot' +p232136 +sg225234 +S'etching' +p232137 +sg225236 +S'c. 1634/1635' +p232138 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000887b.jpg' +p232139 +sg225240 +g27 +sa(dp232140 +g225230 +S'The Martyrdom of Saint Bartholomew' +p232141 +sg225232 +S'Jacques Callot' +p232142 +sg225234 +S'etching' +p232143 +sg225236 +S'c. 1634/1635' +p232144 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000887c.jpg' +p232145 +sg225240 +g27 +sa(dp232146 +g225230 +S'The Martyrdom of Saint Simon' +p232147 +sg225232 +S'Jacques Callot' +p232148 +sg225234 +S'etching' +p232149 +sg225236 +S'c. 1634/1635' +p232150 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008875.jpg' +p232151 +sg225240 +g27 +sa(dp232152 +g225230 +S'The Martyrdom of Saint Matthias' +p232153 +sg225232 +S'Jacques Callot' +p232154 +sg225234 +S'etching' +p232155 +sg225236 +S'c. 1634/1635' +p232156 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008876.jpg' +p232157 +sg225240 +g27 +sa(dp232158 +g225230 +S'The Martyrdom of Saint Thaddeus' +p232159 +sg225232 +S'Jacques Callot' +p232160 +sg225234 +S'etching' +p232161 +sg225236 +S'c. 1634/1635' +p232162 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008873.jpg' +p232163 +sg225240 +g27 +sa(dp232164 +g225230 +S'The Martyrdom of Saint Matthew' +p232165 +sg225232 +S'Jacques Callot' +p232166 +sg225234 +S'etching' +p232167 +sg225236 +S'c. 1634/1635' +p232168 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008874.jpg' +p232169 +sg225240 +g27 +sa(dp232170 +g225230 +S'The Death of Judas' +p232171 +sg225232 +S'Jacques Callot' +p232172 +sg225234 +S'etching' +p232173 +sg225236 +S'c. 1634/1635' +p232174 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008887.jpg' +p232175 +sg225240 +g27 +sa(dp232176 +g225230 +S'The Martyrdom of Saint Barnabas' +p232177 +sg225232 +S'Jacques Callot' +p232178 +sg225234 +S'etching' +p232179 +sg225236 +S'c. 1634/1635' +p232180 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008888.jpg' +p232181 +sg225240 +g27 +sa(dp232182 +g225230 +S'Frontispiece for The Rules of the Order of Our Lady' +p232183 +sg225232 +S'Jacques Callot' +p232184 +sg225234 +S'etching' +p232185 +sg225236 +S'unknown date\n' +p232186 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088ce.jpg' +p232187 +sg225240 +g27 +sa(dp232188 +g225230 +S'Frontispiece for "The Prodigal Son"' +p232189 +sg225232 +S'Jacques Callot' +p232190 +sg225234 +S'etching' +p232191 +sg225236 +S'unknown date\n' +p232192 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088cf.jpg' +p232193 +sg225240 +g27 +sa(dp232194 +g225230 +S'The Inheritance' +p232195 +sg225232 +S'Jacques Callot' +p232196 +sg225234 +S'etching' +p232197 +sg225236 +S'unknown date\n' +p232198 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088d3.jpg' +p232199 +sg225240 +g27 +sa(dp232200 +g225230 +S'The Departure' +p232201 +sg225232 +S'Jacques Callot' +p232202 +sg225234 +S'etching' +p232203 +sg225236 +S'unknown date\n' +p232204 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088d0.jpg' +p232205 +sg225240 +g27 +sa(dp232206 +g225230 +S'The Dissipation' +p232207 +sg225232 +S'Jacques Callot' +p232208 +sg225234 +S'etching' +p232209 +sg225236 +S'unknown date\n' +p232210 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088d1.jpg' +p232211 +sg225240 +g27 +sa(dp232212 +g225230 +S'The Ruin' +p232213 +sg225232 +S'Jacques Callot' +p232214 +sg225234 +S'etching' +p232215 +sg225236 +S'unknown date\n' +p232216 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088d4.jpg' +p232217 +sg225240 +g27 +sa(dp232218 +g225230 +S'The Swineherd' +p232219 +sg225232 +S'Jacques Callot' +p232220 +sg225234 +S'etching' +p232221 +sg225236 +S'unknown date\n' +p232222 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088d2.jpg' +p232223 +sg225240 +g27 +sa(dp232224 +g225230 +S'Praying for Divine Help' +p232225 +sg225232 +S'Jacques Callot' +p232226 +sg225234 +S'etching' +p232227 +sg225236 +S'unknown date\n' +p232228 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088d9.jpg' +p232229 +sg225240 +g27 +sa(dp232230 +g225230 +S'Return of the Prodigal Son' +p232231 +sg225232 +S'Jacques Callot' +p232232 +sg225234 +S'etching' +p232233 +sg225236 +S'unknown date\n' +p232234 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088d5.jpg' +p232235 +sg225240 +g27 +sa(dp232236 +g225230 +S'Killing the Fatted Calf' +p232237 +sg225232 +S'Jacques Callot' +p232238 +sg225234 +S'etching' +p232239 +sg225236 +S'unknown date\n' +p232240 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088d6.jpg' +p232241 +sg225240 +g27 +sa(dp232242 +g225230 +S'The Parents Bestow Gifts' +p232243 +sg225232 +S'Jacques Callot' +p232244 +sg225234 +S'etching' +p232245 +sg225236 +S'unknown date\n' +p232246 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088d8.jpg' +p232247 +sg225240 +g27 +sa(dp232248 +g225230 +S'The Feast' +p232249 +sg225232 +S'Jacques Callot' +p232250 +sg225234 +S'etching' +p232251 +sg225236 +S'unknown date\n' +p232252 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088d7.jpg' +p232253 +sg225240 +g27 +sa(dp232254 +g225230 +S'Saint John Preaching in the Desert' +p232255 +sg225232 +S'Jacques Callot' +p232256 +sg225234 +S'etching' +p232257 +sg225236 +S'unknown date\n' +p232258 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000881f.jpg' +p232259 +sg225240 +g27 +sa(dp232260 +g225230 +S'Frontispiece for The Order of the White Penitents at Nancy' +p232261 +sg225232 +S'Jacques Callot' +p232262 +sg225234 +S'etching' +p232263 +sg225236 +S'unknown date\n' +p232264 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000881d.jpg' +p232265 +sg225240 +g27 +sa(dp232266 +g225230 +S'Entry into Ferrara' +p232267 +sg225232 +S'Jacques Callot' +p232268 +sg225234 +S'etching' +p232269 +sg225236 +S'1612' +p232270 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008475.jpg' +p232271 +sg225240 +g27 +sa(dp232272 +g225230 +S'Papal Audience' +p232273 +sg225232 +S'Jacques Callot' +p232274 +sg225234 +S'etching' +p232275 +sg225236 +S'1612' +p232276 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008348.jpg' +p232277 +sg225240 +g27 +sa(dp232278 +g225230 +S'Reception at Mantua' +p232279 +sg225232 +S'Jacques Callot' +p232280 +sg225234 +S'etching' +p232281 +sg225236 +S'1612' +p232282 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008490.jpg' +p232283 +sg225240 +g27 +sa(dp232284 +g225230 +S'Embarkation at Genoa' +p232285 +sg225232 +S'Jacques Callot' +p232286 +sg225234 +S'etching' +p232287 +sg225236 +S'1612' +p232288 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000833a.jpg' +p232289 +sg225240 +g27 +sa(dp232290 +g225230 +S'Arrival at Valencia' +p232291 +sg225232 +S'Jacques Callot' +p232292 +sg225234 +S'etching' +p232293 +sg225236 +S'1612' +p232294 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008482.jpg' +p232295 +sg225240 +g27 +sa(dp232296 +g225230 +S'Meeting of Margaret of Austria and Philip III' +p232297 +sg225232 +S'Jacques Callot' +p232298 +sg225234 +S'etching' +p232299 +sg225236 +S'1612' +p232300 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000842f.jpg' +p232301 +sg225240 +g27 +sa(dp232302 +g225230 +S'Marriage of Margaret of Austria and Philip III' +p232303 +sg225232 +S'Jacques Callot' +p232304 +sg225234 +S'etching' +p232305 +sg225236 +S'1612' +p232306 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008425.jpg' +p232307 +sg225240 +g27 +sa(dp232308 +g225230 +S'Storm off the Coast of Barcelona' +p232309 +sg225232 +S'Jacques Callot' +p232310 +sg225234 +S'etching' +p232311 +sg225236 +S'1612' +p232312 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083f3.jpg' +p232313 +sg225240 +g27 +sa(dp232314 +g225230 +S'Baptism of the Prince of Spain' +p232315 +sg225232 +S'Jacques Callot' +p232316 +sg225234 +S'etching' +p232317 +sg225236 +S'1612' +p232318 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083ea.jpg' +p232319 +sg225240 +g27 +sa(dp232320 +g225230 +S'King and Queen in Consultation about the Turks' +p232321 +sg225232 +S'Jacques Callot' +p232322 +sg225234 +S'etching' +p232323 +sg225236 +S'1612' +p232324 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083e1.jpg' +p232325 +sg225240 +g27 +sa(dp232326 +g225230 +S'A Capucin bringing thanks of the King of Bavaria' +p232327 +sg225232 +S'Jacques Callot' +p232328 +sg225234 +S'etching' +p232329 +sg225236 +S'1612' +p232330 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000841b.jpg' +p232331 +sg225240 +g27 +sa(dp232332 +g225230 +S'Reception of the Envoy of Poland' +p232333 +sg225232 +S'Jacques Callot' +p232334 +sg225234 +S'etching' +p232335 +sg225236 +S'1612' +p232336 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008407.jpg' +p232337 +sg225240 +g27 +sa(dp232338 +g225230 +S'The Envoy of Tuscany thanking the Queen' +p232339 +sg225232 +S'Jacques Callot' +p232340 +sg225234 +S'etching' +p232341 +sg225236 +S'1612' +p232342 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008411.jpg' +p232343 +sg225240 +g27 +sa(dp232344 +g225230 +S'Death of the Queen' +p232345 +sg225232 +S'Jacques Callot' +p232346 +sg225234 +S'etching' +p232347 +sg225236 +S'1612' +p232348 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083fd.jpg' +p232349 +sg225240 +g27 +sa(dp232350 +g225230 +S'Entry into Jerusalem; Last Supper; Crucifixion; Resurrection' +p232351 +sg225232 +S'Jacques Callot' +p232352 +sg225234 +S'etching' +p232353 +sg225236 +S'unknown date\n' +p232354 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008829.jpg' +p232355 +sg225240 +g27 +sa(dp232356 +g225230 +S'Ascension; Pentacost; Trinity; Corpus Christi' +p232357 +sg225232 +S'Jacques Callot' +p232358 +sg225234 +S'etching' +p232359 +sg225236 +S'unknown date\n' +p232360 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000882b.jpg' +p232361 +sg225240 +g27 +sa(dp232362 +g225230 +S'Our Lady of the Rosary; Virgin and Child Appearing in a Cloud; Triumphant Virgin; Reu' +p232363 +sg225232 +S'Jacques Callot' +p232364 +sg225234 +S'etching' +p232365 +sg225236 +S'unknown date\n' +p232366 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000882e.jpg' +p232367 +sg225240 +g27 +sa(dp232368 +g225230 +S'The Betrayal' +p232369 +sg225232 +S'Jacques Callot' +p232370 +sg225234 +S'etching' +p232371 +sg225236 +S'c. 1631' +p232372 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008710.jpg' +p232373 +sg225240 +g27 +sa(dp232374 +g225230 +S'Christ before Pilate' +p232375 +sg225232 +S'Jacques Callot' +p232376 +sg225234 +S'etching' +p232377 +sg225236 +S'c. 1631' +p232378 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008711.jpg' +p232379 +sg225240 +g27 +sa(dp232380 +g225230 +S'The Flagellation' +p232381 +sg225232 +S'Jacques Callot' +p232382 +sg225234 +S'etching' +p232383 +sg225236 +S'c. 1631' +p232384 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008712.jpg' +p232385 +sg225240 +g27 +sa(dp232386 +g225230 +S'Crowning with Thorns' +p232387 +sg225232 +S'Jacques Callot' +p232388 +sg225234 +S'etching' +p232389 +sg225236 +S'c. 1631' +p232390 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008713.jpg' +p232391 +sg225240 +g27 +sa(dp232392 +g225230 +S'Ecce Homo' +p232393 +sg225232 +S'Jacques Callot' +p232394 +sg225234 +S'etching' +p232395 +sg225236 +S'c. 1631' +p232396 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008714.jpg' +p232397 +sg225240 +g27 +sa(dp232398 +g225230 +S'Christ Carrying the Cross' +p232399 +sg225232 +S'Jacques Callot' +p232400 +sg225234 +S'etching' +p232401 +sg225236 +S'c. 1631' +p232402 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008715.jpg' +p232403 +sg225240 +g27 +sa(dp232404 +g225230 +S'The Adoration of the Shepherds' +p232405 +sg225232 +S'Jacques Callot' +p232406 +sg225234 +S'etching' +p232407 +sg225236 +S'c. 1631' +p232408 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008716.jpg' +p232409 +sg225240 +g27 +sa(dp232410 +g225230 +S'The Visitation' +p232411 +sg225232 +S'Jacques Callot' +p232412 +sg225234 +S'etching' +p232413 +sg225236 +S'c. 1631' +p232414 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008717.jpg' +p232415 +sg225240 +g27 +sa(dp232416 +g225230 +S'The Adoration of the Magi' +p232417 +sg225232 +S'Jacques Callot' +p232418 +sg225234 +S'etching' +p232419 +sg225236 +S'c. 1631' +p232420 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008718.jpg' +p232421 +sg225240 +g27 +sa(dp232422 +g225230 +S'The Entombment' +p232423 +sg225232 +S'Jacques Callot' +p232424 +sg225234 +S'etching' +p232425 +sg225236 +S'c. 1631' +p232426 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008719.jpg' +p232427 +sg225240 +g27 +sa(dp232428 +g225230 +S'The Descent of the Holy Dove' +p232429 +sg225232 +S'Jacques Callot' +p232430 +sg225234 +S'etching' +p232431 +sg225236 +S'c. 1631' +p232432 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000871a.jpg' +p232433 +sg225240 +g27 +sa(dp232434 +g225230 +S'Christ in Limbo' +p232435 +sg225232 +S'Jacques Callot' +p232436 +sg225234 +S'etching' +p232437 +sg225236 +S'c. 1631' +p232438 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000871b.jpg' +p232439 +sg225240 +g27 +sa(dp232440 +g225230 +S'The Annunciation' +p232441 +sg225232 +S'Jacques Callot' +p232442 +sg225234 +S'etching' +p232443 +sg225236 +S'c. 1631' +p232444 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008708.jpg' +p232445 +sg225240 +g27 +sa(dp232446 +g225230 +S'Christ among the Doctors' +p232447 +sg225232 +S'Jacques Callot' +p232448 +sg225234 +S'etching' +p232449 +sg225236 +S'c. 1631' +p232450 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008709.jpg' +p232451 +sg225240 +g27 +sa(dp232452 +g225230 +S'The Circumcision' +p232453 +sg225232 +S'Jacques Callot' +p232454 +sg225234 +S'etching' +p232455 +sg225236 +S'c. 1631' +p232456 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000870a.jpg' +p232457 +sg225240 +g27 +sa(dp232458 +g225230 +S'Presentation in the Temple' +p232459 +sg225232 +S'Jacques Callot' +p232460 +sg225234 +S'etching' +p232461 +sg225236 +S'c. 1631' +p232462 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000870b.jpg' +p232463 +sg225240 +g27 +sa(dp232464 +g225230 +S'The Ascension' +p232465 +sg225232 +S'Jacques Callot' +p232466 +sg225234 +S'etching' +p232467 +sg225236 +S'c. 1631' +p232468 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000870c.jpg' +p232469 +sg225240 +g27 +sa(dp232470 +g225230 +S'The Crucifixion' +p232471 +sg225232 +S'Jacques Callot' +p232472 +sg225234 +S'etching' +p232473 +sg225236 +S'c. 1631' +p232474 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000870d.jpg' +p232475 +sg225240 +g27 +sa(dp232476 +g225230 +S'Descent from the Cross' +p232477 +sg225232 +S'Jacques Callot' +p232478 +sg225234 +S'etching' +p232479 +sg225236 +S'c. 1631' +p232480 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000870e.jpg' +p232481 +sg225240 +g27 +sa(dp232482 +g225230 +S'The Resurrection' +p232483 +sg225232 +S'Jacques Callot' +p232484 +sg225234 +S'etching' +p232485 +sg225236 +S'c. 1631' +p232486 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a000870f.jpg' +p232487 +sg225240 +g27 +sa(dp232488 +g225230 +S'Frontispiece for Callot\'s "The New Testament"' +p232489 +sg225232 +S'Abraham Bosse' +p232490 +sg225234 +S'etching' +p232491 +sg225236 +S'1635' +p232492 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000881c.jpg' +p232493 +sg225240 +g27 +sa(dp232494 +g225230 +S'Christ Disputing with the Doctors' +p232495 +sg225232 +S'Jacques Callot' +p232496 +sg225234 +S'etching' +p232497 +sg225236 +S'1635' +p232498 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000880b.jpg' +p232499 +sg225240 +g27 +sa(dp232500 +g225230 +S'Fisher of Men' +p232501 +sg225232 +S'Jacques Callot' +p232502 +sg225234 +S'etching' +p232503 +sg225236 +S'1635' +p232504 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000880c.jpg' +p232505 +sg225240 +g27 +sa(dp232506 +g225230 +S'Jesus with the Pharisees' +p232507 +sg225232 +S'Jacques Callot' +p232508 +sg225234 +S'etching' +p232509 +sg225236 +S'1635' +p232510 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008809.jpg' +p232511 +sg225240 +g27 +sa(dp232512 +g225230 +S'Sermon on the Mount' +p232513 +sg225232 +S'Jacques Callot' +p232514 +sg225234 +S'etching' +p232515 +sg225236 +S'1635' +p232516 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000880a.jpg' +p232517 +sg225240 +g27 +sa(dp232518 +g225230 +S'Christ and the Woman Taken in Adultery' +p232519 +sg225232 +S'Jacques Callot' +p232520 +sg225234 +S'etching' +p232521 +sg225236 +S'1635' +p232522 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088cb.jpg' +p232523 +sg225240 +g27 +sa(dp232524 +g225230 +S'Stoning of Jesus' +p232525 +sg225232 +S'Jacques Callot' +p232526 +sg225234 +S'etching' +p232527 +sg225236 +S'1635' +p232528 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088cc.jpg' +p232529 +sg225240 +g27 +sa(dp232530 +g225230 +S'Raising of Lazarus' +p232531 +sg225232 +S'Jacques Callot' +p232532 +sg225234 +S'etching' +p232533 +sg225236 +S'1635' +p232534 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088c9.jpg' +p232535 +sg225240 +g27 +sa(dp232536 +g225230 +S'The Entry into Jerusalem' +p232537 +sg225232 +S'Jacques Callot' +p232538 +sg225234 +S'etching' +p232539 +sg225236 +S'1635' +p232540 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088ca.jpg' +p232541 +sg225240 +g27 +sa(dp232542 +g225230 +S"Caesar's Coin" +p232543 +sg225232 +S'Jacques Callot' +p232544 +sg225234 +S'etching' +p232545 +sg225236 +S'1635' +p232546 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088c7.jpg' +p232547 +sg225240 +g27 +sa(dp232548 +g225230 +S'Conversion of Paul' +p232549 +sg225232 +S'Jacques Callot' +p232550 +sg225234 +S'etching' +p232551 +sg225236 +S'1635' +p232552 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088c8.jpg' +p232553 +sg225240 +g27 +sa(dp232554 +g225230 +S'Lady in a Large Coat' +p232555 +sg225232 +S'Jacques Callot' +p232556 +sg225234 +S'etching' +p232557 +sg225236 +S'c. 1617' +p232558 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000848b.jpg' +p232559 +sg225240 +g27 +sa(dp232560 +g225230 +S'Frontispiece for Callot\'s "The Mysteries of the Passion"' +p232561 +sg225232 +S'Abraham Bosse' +p232562 +sg225234 +S'etching' +p232563 +sg225236 +S'c. 1631' +p232564 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008737.jpg' +p232565 +sg225240 +g27 +sa(dp232566 +g225230 +S'Title Page for Callot\'s "The Calendar of Saints"' +p232567 +sg225232 +S'Abraham Bosse' +p232568 +sg225234 +S', 1636' +p232569 +sg225236 +S'\n' +p232570 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a0008742.jpg' +p232571 +sg225240 +g27 +sa(dp232572 +g225230 +S'Title Page for Callot\'s "The Small Miseries of War"' +p232573 +sg225232 +S'Abraham Bosse' +p232574 +sg225234 +S'etching' +p232575 +sg225236 +S'1636' +p232576 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087e5.jpg' +p232577 +sg225240 +g27 +sa(dp232578 +g225230 +S'The Camp' +p232579 +sg225232 +S'Jacques Callot' +p232580 +sg225234 +S'etching' +p232581 +sg225236 +S'c. 1633' +p232582 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00087/a00087e6.jpg' +p232583 +sg225240 +g27 +sa(dp232584 +g225230 +S'Attacking Travelers on the Highway' +p232585 +sg225232 +S'Jacques Callot' +p232586 +sg225234 +S'etching' +p232587 +sg225236 +S'c. 1633' +p232588 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000897b.jpg' +p232589 +sg225240 +g27 +sa(dp232590 +g225230 +S'Pillaging a Monastery' +p232591 +sg225232 +S'Jacques Callot' +p232592 +sg225234 +S'etching' +p232593 +sg225236 +S'c. 1633' +p232594 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008979.jpg' +p232595 +sg225240 +g27 +sa(dp232596 +g225230 +S'Ravaging and Burning a Village' +p232597 +sg225232 +S'Jacques Callot' +p232598 +sg225234 +S'etching' +p232599 +sg225236 +S'c. 1633' +p232600 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000897d.jpg' +p232601 +sg225240 +g27 +sa(dp232602 +g225230 +S"The Peasants' Revenge" +p232603 +sg225232 +S'Jacques Callot' +p232604 +sg225234 +S'etching' +p232605 +sg225236 +S'c. 1633' +p232606 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000897e.jpg' +p232607 +sg225240 +g27 +sa(dp232608 +g225230 +S'The Hospital' +p232609 +sg225232 +S'Jacques Callot' +p232610 +sg225234 +S'etching' +p232611 +sg225236 +S'c. 1633' +p232612 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000897a.jpg' +p232613 +sg225240 +g27 +sa(dp232614 +g225230 +S'The Milkmaid' +p232615 +sg225232 +S'French 17th Century' +p232616 +sg225234 +S'R.L. Baumfeld Collection' +p232617 +sg225236 +S'\netching' +p232618 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008520.jpg' +p232619 +sg225240 +g27 +sa(dp232620 +g225230 +S'The Piazza, Siena' +p232621 +sg225232 +S'Bernardino Capitelli' +p232622 +sg225234 +S'etching' +p232623 +sg225236 +S'1631' +p232624 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c957.jpg' +p232625 +sg225240 +g27 +sa(dp232626 +g225230 +S'Interior of a Church' +p232627 +sg225232 +S'Bernardino Capitelli' +p232628 +sg225234 +S'etching' +p232629 +sg225236 +S'1631' +p232630 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c958.jpg' +p232631 +sg225240 +g27 +sa(dp232632 +g225230 +S'Saint Paul' +p232633 +sg225232 +S'Artist Information (' +p232634 +sg225234 +S'French, 1592 - 1635' +p232635 +sg225236 +S'(artist after)' +p232636 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089a3.jpg' +p232637 +sg225240 +g27 +sa(dp232638 +g225230 +S'Priest Carrying the Holy Sacrament of the Eucharist' +p232639 +sg225232 +S'Artist Information (' +p232640 +sg225234 +S'(artist)' +p232641 +sg225236 +S'\n' +p232642 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a000851f.jpg' +p232643 +sg225240 +g27 +sa(dp232644 +g225230 +S'The Assumption of the Virgin' +p232645 +sg225232 +S'Artist Information (' +p232646 +sg225234 +S'(artist after)' +p232647 +sg225236 +S'\n' +p232648 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086f7.jpg' +p232649 +sg225240 +g27 +sa(dp232650 +g225230 +S'Frontispiece for the Sacred Cosmologia (Title With Astrologers)' +p232651 +sg225232 +S'Artist Information (' +p232652 +sg225234 +S'French, 1592 - 1635' +p232653 +sg225236 +S'(artist after)' +p232654 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086e8.jpg' +p232655 +sg225240 +g27 +sa(dp232656 +g225230 +S'The Fan' +p232657 +sg225232 +S'Artist Information (' +p232658 +sg225234 +S'French, 1592 - 1635' +p232659 +sg225236 +S'(artist after)' +p232660 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ac0.jpg' +p232661 +sg225240 +g27 +sa(dp232662 +g225230 +S'The Fan' +p232663 +sg225232 +S'Artist Information (' +p232664 +sg225234 +S'French, 1592 - 1635' +p232665 +sg225236 +S'(artist after)' +p232666 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008abf.jpg' +p232667 +sg225240 +g27 +sa(dp232668 +g225230 +S'The Fan' +p232669 +sg225232 +S'Artist Information (' +p232670 +sg225234 +S'French, 1592 - 1635' +p232671 +sg225236 +S'(artist after)' +p232672 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008abe.jpg' +p232673 +sg225240 +g27 +sa(dp232674 +g225230 +S'The Catafalque of the Emperor Mathias' +p232675 +sg225232 +S'Artist Information (' +p232676 +sg225234 +S'French, 1592 - 1635' +p232677 +sg225236 +S'(artist after)' +p232678 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aba.jpg' +p232679 +sg225240 +g27 +sa(dp232680 +g225230 +S'Coat of Arms' +p232681 +sg225232 +S'Artist Information (' +p232682 +sg225234 +S'French, 1592 - 1635' +p232683 +sg225236 +S'(artist after)' +p232684 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008af1.jpg' +p232685 +sg225240 +g27 +sa(dp232686 +g225230 +S'Saint Paul, Seated' +p232687 +sg225232 +S'Artist Information (' +p232688 +sg225234 +S'French, 1592 - 1635' +p232689 +sg225236 +S'(artist after)' +p232690 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083fb.jpg' +p232691 +sg225240 +g27 +sa(dp232692 +g225230 +S'The Float of Mount Parnassus' +p232693 +sg225232 +S'Artist Information (' +p232694 +sg225234 +S'French, 1592 - 1635' +p232695 +sg225236 +S'(artist after)' +p232696 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000842d.jpg' +p232697 +sg225240 +g27 +sa(dp232698 +g225230 +S'The Float of the Sun' +p232699 +sg225232 +S'Artist Information (' +p232700 +sg225234 +S'French, 1592 - 1635' +p232701 +sg225236 +S'(artist after)' +p232702 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008440.jpg' +p232703 +sg225240 +g27 +sa(dp232704 +g225230 +S'Saint John on the Isle of Patmos' +p232705 +sg225232 +S'Artist Information (' +p232706 +sg225234 +S'(artist after)' +p232707 +sg225236 +S'\n' +p232708 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00086/a00086ac.jpg' +p232709 +sg225240 +g27 +sa(dp232710 +g225230 +S'Lucifer and Demons Fleeing Saint Michael' +p232711 +sg225232 +S'Alfonso Parigi II' +p232712 +sg225234 +S'etching' +p232713 +sg225236 +S'unknown date\n' +p232714 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9a4.jpg' +p232715 +sg225240 +g27 +sa(dp232716 +g225230 +S'Jereo Before the King of the Huns for the Liberation of Saint Ursula' +p232717 +sg225232 +S'Alfonso Parigi II' +p232718 +sg225234 +S'etching' +p232719 +sg225236 +S'unknown date\n' +p232720 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9a5.jpg' +p232721 +sg225240 +g27 +sa(dp232722 +g225230 +S'The Striking of the King of the Huns and the Collapse of the Rule of Mart' +p232723 +sg225232 +S'Alfonso Parigi II' +p232724 +sg225234 +S'etching' +p232725 +sg225236 +S'unknown date\n' +p232726 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9a6.jpg' +p232727 +sg225240 +g27 +sa(dp232728 +g225230 +S'The Triumph of Saint Ursula in Heaven and the Roman Conquerors' +p232729 +sg225232 +S'Alfonso Parigi II' +p232730 +sg225234 +S'etching' +p232731 +sg225236 +S'unknown date\n' +p232732 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9a7.jpg' +p232733 +sg225240 +g27 +sa(dp232734 +g225230 +S'Jacques Callot' +p232735 +sg225232 +S'Artist Information (' +p232736 +sg225234 +S'(artist after)' +p232737 +sg225236 +S'\n' +p232738 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a1f.jpg' +p232739 +sg225240 +g27 +sa(dp232740 +g225230 +S'The Crucifixion with the Virgin and Saint John' +p232741 +sg225232 +S'Artist Information (' +p232742 +sg225234 +S'German, 1471 - 1528' +p232743 +sg225236 +S'(artist after)' +p232744 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac5c.jpg' +p232745 +sg225240 +g27 +sa(dp232746 +g225230 +S'The Small Carrying of the Cross' +p232747 +sg225232 +S'Artist Information (' +p232748 +sg225234 +S'(artist after)' +p232749 +sg225236 +S'\n' +p232750 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083f1.jpg' +p232751 +sg225240 +g27 +sa(dp232752 +g225230 +S'The City from Greenwich Village' +p232753 +sg225232 +S'John Sloan' +p232754 +sg225234 +S'oil on canvas' +p232755 +sg225236 +S'1922' +p232756 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000218.jpg' +p232757 +sg225240 +S'The City from Greenwich Village\n The artist\'s ambiguous reference to "moonshine" on the billboard in the left foreground\nboth documents the city\'s commercialization and lends a poetic aura to the scene.\nThis urban imagery may be seen as a precursor to American art of the 1960s, when\nPop artists appropriated advertising motifs and Photo-realists immortalized the\narchitectural richness of New York.\n ' +p232758 +sa(dp232759 +g225230 +S'Black Light' +p232760 +sg225232 +S'Lawrence Calcagno' +p232761 +sg225234 +S'acrylic on canvas' +p232762 +sg225236 +S'1969' +p232763 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000034.jpg' +p232764 +sg225240 +g27 +sa(dp232765 +g225230 +S'San Andreas III' +p232766 +sg225232 +S'Lawrence Calcagno' +p232767 +sg225234 +S'oil on canvas' +p232768 +sg225236 +S'1963' +p232769 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000035.jpg' +p232770 +sg225240 +g27 +sa(dp232771 +g225232 +S'John Sloan' +p232772 +sg225240 +g27 +sg225234 +S'etching' +p232773 +sg225230 +S'Man Monkey' +p232774 +sg225236 +S'1905' +p232775 +sa(dp232776 +g225232 +S'Jean Delpech' +p232777 +sg225240 +g27 +sg225234 +S'woodcut in gray-green' +p232778 +sg225230 +S'Sous-Marin Minerve, Disparu le 27 Janvier 1968' +p232779 +sg225236 +S'unknown date\n' +p232780 +sa(dp232781 +g225232 +S'Charles Lapicque' +p232782 +sg225240 +g27 +sg225234 +S'screenprint' +p232783 +sg225230 +S'Marine nationale' +p232784 +sg225236 +S'unknown date\n' +p232785 +sa(dp232786 +g225230 +S'The Artist\'s Father, Reading "L\'\xc3\x89v\xc3\xa9nement"' +p232787 +sg225232 +S'Paul C\xc3\xa9zanne' +p232788 +sg225234 +S'oil on canvas' +p232789 +sg225236 +S'1866' +p232790 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a06.jpg' +p232791 +sg225240 +S'Imposing in size and presentation, this\r\nportrait of Cézanne\xe2\x80\x99s father is arguably\r\nthe key work from the artist\xe2\x80\x99s early period.\r\nCézanne executed it partly with a palette\r\nknife, employing the vigorous handling\r\nand darkened palette that typifies his painting\r\nfrom the 1860s. His subject, Louis-\r\nAuguste Cézanne, was one of the wealthiest\r\nmen in Aix-en-Provence, a businessman\r\nwho founded a successful bank in 1848.\r\nHe provided his only son with an excellent\r\neducation, envisioned him as a lawyer and\r\nbanker, and pressured him into entering law\r\nschool in Aix in 1859. Cézanne, struggling\r\nto assert his own ambitions, spent a little\r\nover a year unhappily enrolled in classes\r\nbefore dropping out to become a painter.\r\nHe convinced his father to let him go to\r\nParis, where he studied the old masters and\r\nwas drawn to the work of controversial artists\r\nsuch as Gustave Courbet and Edouard Manet. By the time he painted this portrait,\r\nCézanne had already made something of a\r\nmark for himself as a radical artist.\n Rather than present the public side\r\nof a successful banker posed formally in\r\nprofessional attire, Cézanne conceived a\r\nmore personal image of his father: Louis-\r\nAuguste sits in a flowered armchair in\r\nthe privacy of his home, wearing casual\r\nclothing (including wooden shoes) and\r\nreading a newspaper.\n The newspaper that Louis-Auguste\r\nholds, \n While Louis-Auguste did not wholeheartedly\r\napprove of Cézanne\xe2\x80\x99s decision\r\nto become a painter, he seems to have\r\ncome to some kind of acceptance of it.\r\nIn 1860 he had allowed the young painter\r\nto decorate the salon of the manor house\r\nat Jas de Bouffan, the recently purchased\r\nfamily estate in the countryside outside Aix.\r\nIn that room, Cézanne executed paintings\r\ndirectly on the wall, later hanging among\r\nthem his first portrait of his father, painted\r\nin about 1865 (National Gallery, London).\n (Text by Margaret Doyle, \n Notes\n \n \n ' +p232792 +sa(dp232793 +g225230 +S'Rush Hour, New York' +p232794 +sg225232 +S'Max Weber' +p232795 +sg225234 +S'oil on canvas' +p232796 +sg225236 +S'1915' +p232797 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a000028d.jpg' +p232798 +sg225240 +g27 +sa(dp232799 +g225230 +S'Saint Matthew' +p232800 +sg225232 +S'Alessandro Algardi' +p232801 +sg225234 +S'terracotta' +p232802 +sg225236 +S'c. 1640' +p232803 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d69.jpg' +p232804 +sg225240 +S"Algardi, Bernini's greatest rival for leadership in sculpture in seventeenth-century Rome,\ncame to the Eternal City from Bologna, capital of the province of Emilia. His Bolognese origin is\nsignificant not only because he shared it with the Carracci family, leaders in the reform of\npainting in Emilia and Rome beginning around 1600, but also because Emilia is a province\nwhere sculptural stone is scarce. While Algardi nevertheless became a skilled marble carver, the\nmodeler's technique of his earliest training, with clay and stucco, always came more naturally to\nhim. This bust exemplifies his fluid command of modeling.\n The bust may have originated as one of several studies of saintly types to be used as models\nfor sculpture when the occasion arose. Algardi gave his bearded saint a youthful face, with\nharmonious, classically proportioned features. Classical too are the calm expression, the blank\npupils, the drapery, and the clearly rounded head bound by a fillet. Algardi's love for gently\nflowing curves shows in the undulating locks of hair that seem to echo the curving outlines of the\nsaint's wide eyes.\n " +p232805 +sa(dp232806 +g225232 +S'Andrew Wyeth' +p232807 +sg225240 +g27 +sg225234 +S'watercolor over graphite on paperboard' +p232808 +sg225230 +S"Lobsterman's Ledge" +p232809 +sg225236 +S'1939' +p232810 +sa(dp232811 +g225230 +S'Man with a Penknife' +p232812 +sg225232 +S'Salomon Koninck' +p232813 +sg225234 +S'etching' +p232814 +sg225236 +S'unknown date\n' +p232815 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d249.jpg' +p232816 +sg225240 +g27 +sa(dp232817 +g225230 +S'The Lamentation' +p232818 +sg225232 +S'Artist Information (' +p232819 +sg225234 +S'Spanish, 1591 - 1652' +p232820 +sg225236 +S'(related artist)' +p232821 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed53.jpg' +p232822 +sg225240 +g27 +sa(dp232823 +g225232 +S'Matthaus Merian I' +p232824 +sg225240 +g27 +sg225234 +S'engraving [printed on 2 separate sheets of paper joined at center]' +p232825 +sg225230 +S'Large View of London from Southwark' +p232826 +sg225236 +S'unknown date\n' +p232827 +sa(dp232828 +g225230 +S'Title Page' +p232829 +sg225232 +S'Artist Information (' +p232830 +sg225234 +S'(artist)' +p232831 +sg225236 +S'\n' +p232832 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009613.jpg' +p232833 +sg225240 +g27 +sa(dp232834 +g225230 +S'Loup pris au piege (Wolf Caught in a Trap)' +p232835 +sg225232 +S'Artist Information (' +p232836 +sg225234 +S'(artist)' +p232837 +sg225236 +S'\n' +p232838 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009614.jpg' +p232839 +sg225240 +g27 +sa(dp232840 +g225230 +S'Gazel (Gazelle)' +p232841 +sg225232 +S'Artist Information (' +p232842 +sg225234 +S'(artist)' +p232843 +sg225236 +S'\n' +p232844 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a000961e.jpg' +p232845 +sg225240 +g27 +sa(dp232846 +g225230 +S'Renard (Fox)' +p232847 +sg225232 +S'Artist Information (' +p232848 +sg225234 +S'(artist)' +p232849 +sg225236 +S'\n' +p232850 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a000961a.jpg' +p232851 +sg225240 +g27 +sa(dp232852 +g225230 +S'Sanglier (Wild Boar Lying Down, Head to the Left)' +p232853 +sg225232 +S'Artist Information (' +p232854 +sg225234 +S'(artist)' +p232855 +sg225236 +S'\n' +p232856 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009619.jpg' +p232857 +sg225240 +g27 +sa(dp232858 +g225230 +S'Blereau (Badger)' +p232859 +sg225232 +S'Artist Information (' +p232860 +sg225234 +S'(artist)' +p232861 +sg225236 +S'\n' +p232862 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a000961d.jpg' +p232863 +sg225240 +g27 +sa(dp232864 +g225230 +S'Loucervier (Hyena)' +p232865 +sg225232 +S'Artist Information (' +p232866 +sg225234 +S'(artist)' +p232867 +sg225236 +S'\n' +p232868 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009615.jpg' +p232869 +sg225240 +g27 +sa(dp232870 +g225230 +S'Sanglier (Wild Boar Lying Down, Head to the Right)' +p232871 +sg225232 +S'Artist Information (' +p232872 +sg225234 +S'(artist)' +p232873 +sg225236 +S'\n' +p232874 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009616.jpg' +p232875 +sg225240 +g27 +sa(dp232876 +g225230 +S'Mulet (Mule or Saddled Donkey)' +p232877 +sg225232 +S'Artist Information (' +p232878 +sg225234 +S'(artist)' +p232879 +sg225236 +S'\n' +p232880 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a000961c.jpg' +p232881 +sg225240 +g27 +sa(dp232882 +g225230 +S'Chamois (Chamois)' +p232883 +sg225232 +S'Artist Information (' +p232884 +sg225234 +S'(artist)' +p232885 +sg225236 +S'\n' +p232886 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a000961b.jpg' +p232887 +sg225240 +g27 +sa(dp232888 +g225230 +S'Chien courent (Running Hound)' +p232889 +sg225232 +S'Artist Information (' +p232890 +sg225234 +S'(artist)' +p232891 +sg225236 +S'\n' +p232892 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009617.jpg' +p232893 +sg225240 +g27 +sa(dp232894 +g225230 +S'Leopart (Leopard or Tiger)' +p232895 +sg225232 +S'Artist Information (' +p232896 +sg225234 +S'(artist)' +p232897 +sg225236 +S'\n' +p232898 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009618.jpg' +p232899 +sg225240 +g27 +sa(dp232900 +g225230 +S'The Long Landscape (Paysage en long)' +p232901 +sg225232 +S'Camille Pissarro' +p232902 +sg225234 +S'etching and aquatint [posthumous impression]' +p232903 +sg225236 +S'1879' +p232904 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009db5.jpg' +p232905 +sg225240 +g27 +sa(dp232906 +g225230 +S'Saint Jerome Reading' +p232907 +sg225232 +S'Jusepe de Ribera' +p232908 +sg225234 +S'etching, engraving, and drypoint' +p232909 +sg225236 +S'c. 1624' +p232910 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a00067d1.jpg' +p232911 +sg225240 +g27 +sa(dp232912 +g225232 +S'Albert Gleizes' +p232913 +sg225240 +g27 +sg225234 +S'oil on canvas' +p232914 +sg225230 +S'Football Players' +p232915 +sg225236 +S'1912/1913' +p232916 +sa(dp232917 +g225232 +S'Reginald Marsh' +p232918 +sg225240 +g27 +sg225234 +S'etching [restrike]' +p232919 +sg225230 +S'Loco - Going through Jersey City' +p232920 +sg225236 +S'1930' +p232921 +sa(dp232922 +g225232 +S'Reginald Marsh' +p232923 +sg225240 +g27 +sg225234 +S'portfolio with title page, introduction, and list of prints, and thirty etchings and engravings [restrikes]' +p232924 +sg225230 +S'Reginald Marsh - Thirty Etchings and Engravings' +p232925 +sg225236 +S'published 1969' +p232926 +sa(dp232927 +g225232 +S'Reginald Marsh' +p232928 +sg225240 +g27 +sg225234 +S'etching [restrike]' +p232929 +sg225230 +S'2nd Ave. El.' +p232930 +sg225236 +S'1930' +p232931 +sa(dp232932 +g225232 +S'Reginald Marsh' +p232933 +sg225240 +g27 +sg225234 +S'etching [restrike]' +p232934 +sg225230 +S'Merry-Go-Round' +p232935 +sg225236 +S'1930' +p232936 +sa(dp232937 +g225232 +S'Reginald Marsh' +p232938 +sg225240 +g27 +sg225234 +S'etching [restrike]' +p232939 +sg225230 +S'Irving Place Burlesk' +p232940 +sg225236 +S'1930' +p232941 +sa(dp232942 +g225232 +S'Reginald Marsh' +p232943 +sg225240 +g27 +sg225234 +S'etching [restrike]' +p232944 +sg225230 +S'Gaiety Burlesk' +p232945 +sg225236 +S'1930' +p232946 +sa(dp232947 +g225232 +S'Reginald Marsh' +p232948 +sg225240 +g27 +sg225234 +S'etching [restrike]' +p232949 +sg225230 +S'The Barker' +p232950 +sg225236 +S'1931' +p232951 +sa(dp232952 +g225232 +S'Reginald Marsh' +p232953 +sg225240 +g27 +sg225234 +S'etching [restrike]' +p232954 +sg225230 +S'Wall Street (Skyline from Laurents)' +p232955 +sg225236 +S'1931' +p232956 +sa(dp232957 +g225232 +S'Reginald Marsh' +p232958 +sg225240 +g27 +sg225234 +S'etching [restrike]' +p232959 +sg225230 +S'Tenth Ave. at 27th St.' +p232960 +sg225236 +S'1931' +p232961 +sa(dp232962 +g225232 +S'Reginald Marsh' +p232963 +sg225240 +g27 +sg225234 +S'etching [restrike]' +p232964 +sg225230 +S'Steeplechase' +p232965 +sg225236 +S'1932' +p232966 +sa(dp232967 +g225232 +S'Reginald Marsh' +p232968 +sg225240 +g27 +sg225234 +S'etching [restrike]' +p232969 +sg225230 +S'Bread Line - No One Has Starved' +p232970 +sg225236 +S'1932' +p232971 +sa(dp232972 +g225232 +S'Reginald Marsh' +p232973 +sg225240 +g27 +sg225234 +S'etching [restrike]' +p232974 +sg225230 +S'Tatto-Shave-Haircut' +p232975 +sg225236 +S'1932' +p232976 +sa(dp232977 +g225232 +S'Reginald Marsh' +p232978 +sg225240 +g27 +sg225234 +S'etching [restrike]' +p232979 +sg225230 +S'Star Burlesk' +p232980 +sg225236 +S'1933' +p232981 +sa(dp232982 +g225232 +S'Reginald Marsh' +p232983 +sg225240 +g27 +sg225234 +S'etching and engraving [restrike]' +p232984 +sg225230 +S'Box at the Metropolitan' +p232985 +sg225236 +S'1934' +p232986 +sa(dp232987 +g225232 +S'Reginald Marsh' +p232988 +sg225240 +g27 +sg225234 +S'etching [restrike]' +p232989 +sg225230 +S'Erie R.R. Locos Watering' +p232990 +sg225236 +S'1934' +p232991 +sa(dp232992 +g225232 +S'Reginald Marsh' +p232993 +sg225240 +g27 +sg225234 +S'etching [restrike]' +p232994 +sg225230 +S'Steeplechase Swings' +p232995 +sg225236 +S'1935' +p232996 +sa(dp232997 +g225232 +S'Reginald Marsh' +p232998 +sg225240 +g27 +sg225234 +S'etching with some engraving [restrike]' +p232999 +sg225230 +S'Flying Concellos' +p233000 +sg225236 +S'1936' +p233001 +sa(dp233002 +g225232 +S'Reginald Marsh' +p233003 +sg225240 +g27 +sg225234 +S'engraving [restrike]' +p233004 +sg225230 +S'A Morning in May' +p233005 +sg225236 +S'1936' +p233006 +sa(dp233007 +g225232 +S'Reginald Marsh' +p233008 +sg225240 +g27 +sg225234 +S'etching [restrike]' +p233009 +sg225230 +S"Minksy's New Gotham Chorus" +p233010 +sg225236 +S'1936' +p233011 +sa(dp233012 +g225232 +S'Reginald Marsh' +p233013 +sg225240 +g27 +sg225234 +S'etching with some engraving [restrike]' +p233014 +sg225230 +S'Wooden Horses' +p233015 +sg225236 +S'1936' +p233016 +sa(dp233017 +g225232 +S'Reginald Marsh' +p233018 +sg225240 +g27 +sg225234 +S'etching and engraving [restrike]' +p233019 +sg225230 +S'Battery (Belles)' +p233020 +sg225236 +S'1938' +p233021 +sa(dp233022 +g225232 +S'Reginald Marsh' +p233023 +sg225240 +g27 +sg225234 +S'engraving [restrike]' +p233024 +sg225230 +S'Merry-Go-Round' +p233025 +sg225236 +S'1938' +p233026 +sa(dp233027 +g225232 +S'Reginald Marsh' +p233028 +sg225240 +g27 +sg225234 +S'engraving [restrike]' +p233029 +sg225230 +S'Pickaback' +p233030 +sg225236 +S'1939' +p233031 +sa(dp233032 +g225232 +S'Reginald Marsh' +p233033 +sg225240 +g27 +sg225234 +S'etching and engraving [restrike]' +p233034 +sg225230 +S'Modern 1939 Venus' +p233035 +sg225236 +S'1939' +p233036 +sa(dp233037 +g225232 +S'Reginald Marsh' +p233038 +sg225240 +g27 +sg225234 +S'engraving [restrike]' +p233039 +sg225230 +S'Grand Tier at the Met.' +p233040 +sg225236 +S'1939' +p233041 +sa(dp233042 +g225232 +S'Reginald Marsh' +p233043 +sg225240 +g27 +sg225234 +S'etching [restrike]' +p233044 +sg225230 +S'Coney Island Beach #1' +p233045 +sg225236 +S'1939' +p233046 +sa(dp233047 +g225232 +S'Reginald Marsh' +p233048 +sg225240 +g27 +sg225234 +S'engraving [restrike]' +p233049 +sg225230 +S'Girl in Fur Jacket Reading Tabloid' +p233050 +sg225236 +S'1940' +p233051 +sa(dp233052 +g225232 +S'Reginald Marsh' +p233053 +sg225240 +g27 +sg225234 +S'engraving [restrike]' +p233054 +sg225230 +S'Merry-Go-Round' +p233055 +sg225236 +S'1940' +p233056 +sa(dp233057 +g225232 +S'Reginald Marsh' +p233058 +sg225240 +g27 +sg225234 +S'engraving [restrike]' +p233059 +sg225230 +S'Eltinge Follies' +p233060 +sg225236 +S'1940' +p233061 +sa(dp233062 +g225232 +S'Reginald Marsh' +p233063 +sg225240 +g27 +sg225234 +S'engraving [restrike]' +p233064 +sg225230 +S'Bathers-in-the-Hudson' +p233065 +sg225236 +S'1941' +p233066 +sa(dp233067 +g225232 +S'Reginald Marsh' +p233068 +sg225240 +g27 +sg225234 +S'engraving [restrike]' +p233069 +sg225230 +S'Two Girls Walking to Right' +p233070 +sg225236 +S'1943' +p233071 +sa(dp233072 +g225230 +S'Naval Battle in the Straits of Messina' +p233073 +sg225232 +S'Artist Information (' +p233074 +sg225234 +S'(artist after)' +p233075 +sg225236 +S'\n' +p233076 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d065.jpg' +p233077 +sg225240 +g27 +sa(dp233078 +g225232 +S'Artist Information (' +p233079 +sg225240 +g27 +sg225234 +S'(artist after)' +p233080 +sg225230 +S'Naval Battle in the Straits of Messina' +p233081 +sg225236 +S'\n' +p233082 +sa(dp233083 +g225230 +S'The Alchemist' +p233084 +sg225232 +S'Artist Information (' +p233085 +sg225234 +S'(artist after)' +p233086 +sg225236 +S'\n' +p233087 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00050/a000502f.jpg' +p233088 +sg225240 +g27 +sa(dp233089 +g225230 +S'The Edge of a Wood' +p233090 +sg225232 +S'Sir Anthony van Dyck' +p233091 +sg225234 +S'pen and brown ink with brown wash on laid paper' +p233092 +sg225236 +S'1630s' +p233093 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00024/a000243a.jpg' +p233094 +sg225240 +g27 +sa(dp233095 +g225232 +S'Billy Morrow Jackson' +p233096 +sg225240 +g27 +sg225234 +S'oil on hardboard' +p233097 +sg225230 +S'Eve' +p233098 +sg225236 +S'1967' +p233099 +sa(dp233100 +g225232 +S'Aryeh Rothman' +p233101 +sg225240 +g27 +sg225234 +S'color etching' +p233102 +sg225230 +S'Scroll of Autumn' +p233103 +sg225236 +S'unknown date\n' +p233104 +sa(dp233105 +g225232 +S'Reuven Rubin' +p233106 +sg225240 +g27 +sg225234 +S'color lithograph' +p233107 +sg225230 +S'Horseman in the Negev' +p233108 +sg225236 +S'unknown date\n' +p233109 +sa(dp233110 +g225232 +S'French 19th Century' +p233111 +sg225240 +g27 +sg225234 +S'overall: 20.8 x 25 cm (8 3/16 x 9 13/16 in.)\r\nframed: 35.9 x 40.3 x 3.8 cm (14 1/8 x 15 7/8 x 1 1/2 in.)' +p233112 +sg225230 +S'Le Croisic' +p233113 +sg225236 +S'\noil on panel' +p233114 +sa(dp233115 +g225230 +S'Paris, rue du Havre' +p233116 +sg225232 +S'Jean B\xc3\xa9raud' +p233117 +sg225234 +S'oil on canvas' +p233118 +sg225236 +S'c. 1882' +p233119 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006cc.jpg' +p233120 +sg225240 +g27 +sa(dp233121 +g225230 +S'Two Dogs in a Deserted Street' +p233122 +sg225232 +S'Pierre Bonnard' +p233123 +sg225234 +S'oil on wood' +p233124 +sg225236 +S'c. 1894' +p233125 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00037/a00037b1.jpg' +p233126 +sg225240 +g27 +sa(dp233127 +g225230 +S'The Cab Horse' +p233128 +sg225232 +S'Pierre Bonnard' +p233129 +sg225234 +S'oil on wood' +p233130 +sg225236 +S'c. 1895' +p233131 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006d8.jpg' +p233132 +sg225240 +g27 +sa(dp233133 +g225232 +S'Pierre Bonnard' +p233134 +sg225240 +g27 +sg225234 +S'oil on cardboard' +p233135 +sg225230 +S'Children Leaving School' +p233136 +sg225236 +S'c. 1895' +p233137 +sa(dp233138 +g225232 +S'Pierre Bonnard' +p233139 +sg225240 +g27 +sg225234 +S'oil on cardboard on wood' +p233140 +sg225230 +S"The Artist's Sister and Her Children" +p233141 +sg225236 +S'1898' +p233142 +sa(dp233143 +g225232 +S'Pierre Bonnard' +p233144 +sg225240 +g27 +sg225234 +S'oil on canvas' +p233145 +sg225230 +S'The Green Table' +p233146 +sg225236 +S'c. 1910' +p233147 +sa(dp233148 +g225230 +S'Table Set in a Garden' +p233149 +sg225232 +S'Pierre Bonnard' +p233150 +sg225234 +S'oil on paper on canvas' +p233151 +sg225236 +S'c. 1908' +p233152 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006db.jpg' +p233153 +sg225240 +g27 +sa(dp233154 +g225232 +S'Pierre Bonnard' +p233155 +sg225240 +g27 +sg225234 +S'oil on canvas' +p233156 +sg225230 +S'Bouquet of Flowers' +p233157 +sg225236 +S'c. 1926' +p233158 +sa(dp233159 +g225232 +S'Pierre Bonnard' +p233160 +sg225240 +g27 +sg225234 +S'oil on canvas' +p233161 +sg225230 +S'A Spring Landscape' +p233162 +sg225236 +S'c. 1935' +p233163 +sa(dp233164 +g225232 +S'Pierre Bonnard' +p233165 +sg225240 +g27 +sg225234 +S'oil on canvas' +p233166 +sg225230 +S"Stairs in the Artist's Garden" +p233167 +sg225236 +S'1942/1944' +p233168 +sa(dp233169 +g225230 +S'Beach at Trouville' +p233170 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p233171 +sg225234 +S'oil on wood' +p233172 +sg225236 +S'1864/1865' +p233173 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006e1.jpg' +p233174 +sg225240 +g27 +sa(dp233175 +g225230 +S'On the Jetty' +p233176 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p233177 +sg225234 +S'oil on wood' +p233178 +sg225236 +S'c. 1869/1870' +p233179 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006e2.jpg' +p233180 +sg225240 +g27 +sa(dp233181 +g225230 +S'The Beach' +p233182 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p233183 +sg225234 +S'oil on wood' +p233184 +sg225236 +S'1877' +p233185 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006e3.jpg' +p233186 +sg225240 +g27 +sa(dp233187 +g225230 +S'Women on the Beach at Berck' +p233188 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p233189 +sg225234 +S'oil on wood' +p233190 +sg225236 +S'1881' +p233191 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006e4.jpg' +p233192 +sg225240 +g27 +sa(dp233193 +g225230 +S'Yacht Basin at Trouville-Deauville' +p233194 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p233195 +sg225234 +S'oil on wood' +p233196 +sg225236 +S'probably 1895/1896' +p233197 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006e5.jpg' +p233198 +sg225240 +g27 +sa(dp233199 +g225230 +S'Washerwomen on the Beach of Etretat' +p233200 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p233201 +sg225234 +S'oil on wood' +p233202 +sg225236 +S'1894' +p233203 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006e6.jpg' +p233204 +sg225240 +g27 +sa(dp233205 +g225232 +S'Artist Information (' +p233206 +sg225240 +g27 +sg225234 +S'French, 1824 - 1898' +p233207 +sg225230 +S'Beach at Deauville' +p233208 +sg225236 +S'(related artist)' +p233209 +sa(dp233210 +g225230 +S'Children Playing on the Beach' +p233211 +sg225232 +S'Mary Cassatt' +p233212 +sg225234 +S'oil on canvas' +p233213 +sg225236 +S'1884' +p233214 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006c8.jpg' +p233215 +sg225240 +S'By the time Cassatt exhibited this painting\r\nat the eighth and final impressionist\r\nexhibition in 1886, her reputation as a\r\npainter of mothers and children had been\r\nwell established.\n Various shades of blue—from the deep,\r\nelectric blue of the dress and shoes to the\r\nsoft, diffused blue of the ocean—are used\r\nthroughout the work. Accents of white convey the presence of sunlight bouncing off\r\nthe dresses, hats, and pails of the little\r\ngirls. While particular attention is paid to\r\nthe building of form through color and\r\nline in the foreground, the background is\r\nreduced to its essential elements through a\r\nseries of thinly painted scumbles, leaving\r\nareas of the priming layer exposed.\n Aspects of the painting suggest that it\r\nis a nostalgic tribute to her beloved sister,\r\nLydia, who died in 1882. Cassatt was so\r\ndistraught that she did not paint for six\r\nmonths. Without revealing the identity of\r\nthe little girls specifically, Cassatt depicted\r\nthem in a manner that implies they are\r\nrelated. Playing close together, the girls\r\nare comfortable with each other\xe2\x80\x99s presence.\r\nBy positioning them side by side in nearly\r\nidentical outfits, Cassatt established both a\r\ncompositional and psychological relationship\r\nbetween the two figures.\n As the primary caretaker of her elderly\r\nparents and older sister, Cassatt spent much\r\nof her adult life juggling the seemingly\r\nincompatible roles of nurse-companion\r\nand independent artist. In 1884, Cassatt\r\naccompanied her ailing mother to Spain to\r\nseek the recuperative effects of the seaside\r\nclimate. \n (Text by Michelle Bird, \n Notes\n \n ' +p233216 +sa(dp233217 +g225230 +S'Paris Scene with Bridge' +p233218 +sg225232 +S'Jean-Charles Cazin' +p233219 +sg225234 +S'oil on wood' +p233220 +sg225236 +S'unknown date\n' +p233221 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006cf.jpg' +p233222 +sg225240 +g27 +sa(dp233223 +g225230 +S'Riverbank' +p233224 +sg225232 +S'Paul C\xc3\xa9zanne' +p233225 +sg225234 +S'oil on canvas' +p233226 +sg225236 +S'c. 1895' +p233227 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006ac.jpg' +p233228 +sg225240 +S'When Cézanne began painting in the 1860s,\r\nhe worked primarily in the studio on figural\r\ncompositions and still lifes—a practice he\r\ncontinued throughout his career—but by\r\n1866 he was already anticipating the crucial\r\nrole the countryside would play in his\r\nwork: writing to his friend Emile Zola, he\r\nasserted that "all pictures painted inside,\r\nin the studio, will never be as good as those\r\ndone outside. . . . I see some superb things\r\nand I shall have to make up my mind only\r\nto do things out-of-doors."\n This sunlit scene shows the extent to\r\nwhich he absorbed the lessons of impressionism,\r\nof capturing the visual sensations\r\nof nature with modulated brushwork\r\nthat examines the relationship between\r\ncolor and light. Here the thin application\r\nof paint, with spots of canvas showing\r\nthrough, contributes to the light-soaked\r\nappearance of the scene. A bright palette\r\nof predominantly yellows and greens unifies\r\nthe composition. While horizontal\r\nbrushwork creates the mirrored surface\r\nof the river, short parallel strokes form\r\nmuch of the foliage. In the 1870s Cézanne\r\nhad developed a systematic application of\r\npaint distinctly his own, using "constructive\r\nstrokes" (diagonal, parallel lines) that\r\ndefine all objects in the composition and\r\nresult in a cohesive, rhythmic surface.\n With the exception of his scenes of\r\nbathers, Cézanne\xe2\x80\x99s landscapes are generally\r\nempty of figures and thus avoid the\r\ntypical impressionist narrative of urban\r\nresidents enjoying outings in the countryside.\r\nThe exact location of the setting\r\nhas not been identified in \n (Text by Margaret Doyle, \n Notes\n \n \n \n ' +p233229 +sa(dp233230 +g225230 +S'Bridge on the Sa\xc3\xb4ne River at M\xc3\xa2con' +p233231 +sg225232 +S'Jean-Baptiste-Camille Corot' +p233232 +sg225234 +S'oil on paper on canvas' +p233233 +sg225236 +S'1834' +p233234 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dc7.jpg' +p233235 +sg225240 +g27 +sa(dp233236 +g225230 +S'Madame Stumpf and Her Daughter' +p233237 +sg225232 +S'Jean-Baptiste-Camille Corot' +p233238 +sg225234 +S'oil on canvas' +p233239 +sg225236 +S'1872' +p233240 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000da9.jpg' +p233241 +sg225240 +g27 +sa(dp233242 +g225232 +S'Artist Information (' +p233243 +sg225240 +g27 +sg225234 +S'French, 1808 - 1879' +p233244 +sg225230 +S'Study of Clowns' +p233245 +sg225236 +S'(related artist)' +p233246 +sa(dp233247 +g225230 +S'Dancers Backstage' +p233248 +sg225232 +S'Edgar Degas' +p233249 +sg225234 +S'oil on canvas' +p233250 +sg225236 +S'1876/1883' +p233251 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006bd.jpg' +p233252 +sg225240 +S'Degas\xe2\x80\x99 best-known works are those inspired\r\nby the ballet. For an artist committed to\r\nthe depiction of modern life, the theater\r\nin all of its forms—the ballet, the opera,\r\neven the more raucous café concerts—held\r\na special appeal. What intrigued him most,\r\nhowever, was not the formal, polished performance,\r\nbut rather the casual, candid\r\nmoments behind the scenes, with dancers\r\nat rehearsal or at rest. It is a theme that the\r\nartist explored time and again, not only in\r\nhis ballet paintings but also in his horse-racing\r\nscenes.\n As its title suggests, \n Degas was well acquainted with such\r\nbackstage intrigues from his own observations,\r\nfirst as an occasional visitor and\r\nlater as an abonné (he secured a subscription\r\nto the Opéra in the mid-1880s).\r\nHe also drew upon other sources: most\r\nimportantly, a series of short stories by\r\nhis friend Ludovic Halévy. First published\r\nseparately between 1870 and 1880 and then\r\ncollectively in 1883 under the title \n It has been proposed that this painting\r\nwas intended as a sketch for a larger work,\r\na reasonable assumption given its modest\r\nscale and rapidly painted surface.\n (Text by Kimberly Jones, \n Notes\n \n \n ' +p233253 +sa(dp233254 +g225230 +S'Dancers at the Old Opera House' +p233255 +sg225232 +S'Edgar Degas' +p233256 +sg225234 +S'pastel over monotype on laid paper' +p233257 +sg225236 +S'c. 1877' +p233258 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d45.jpg' +p233259 +sg225240 +g27 +sa(dp233260 +g225230 +S'Ballet Dancers' +p233261 +sg225232 +S'Edgar Degas' +p233262 +sg225234 +S'pastel and gouache over monotype' +p233263 +sg225236 +S'c. 1877' +p233264 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d46.jpg' +p233265 +sg225240 +g27 +sa(dp233266 +g225232 +S'Andr\xc3\xa9 Derain' +p233267 +sg225240 +g27 +sg225234 +S'oil on canvas' +p233268 +sg225230 +S'Road in Provence' +p233269 +sg225236 +S'probably 1920/1935' +p233270 +sa(dp233271 +g225232 +S'Andr\xc3\xa9 Derain' +p233272 +sg225240 +g27 +sg225234 +S'oil on canvas' +p233273 +sg225230 +S'Abandoned House in Provence' +p233274 +sg225236 +S'probably 1920/1935' +p233275 +sa(dp233276 +g225232 +S'Raoul Dufy' +p233277 +sg225240 +g27 +sg225234 +S'oil on linen' +p233278 +sg225230 +S'Regatta at Cowes' +p233279 +sg225236 +S'1934' +p233280 +sa(dp233281 +g225232 +S'Raoul Dufy' +p233282 +sg225240 +g27 +sg225234 +S'oil on linen' +p233283 +sg225230 +S'Regatta at Henley' +p233284 +sg225236 +S'1937' +p233285 +sa(dp233286 +g225232 +S'Raoul Dufy' +p233287 +sg225240 +g27 +sg225234 +S'oil on linen' +p233288 +sg225230 +S'The Basin at Deauville' +p233289 +sg225236 +S'1937' +p233290 +sa(dp233291 +g225230 +S'Melon and Lemon' +p233292 +sg225232 +S'French 19th Century' +p233293 +sg225234 +S'overall: 36.8 x 29.9 cm (14 1/2 x 11 3/4 in.)\r\nframed: 58.4 x 51.1 x 7.3 cm (23 x 20 1/8 x 2 7/8 in.)' +p233294 +sg225236 +S'\noil on canvas on wood' +p233295 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a0000654.jpg' +p233296 +sg225240 +g27 +sa(dp233297 +g225230 +S'Farmhouse in Provence' +p233298 +sg225232 +S'Vincent van Gogh' +p233299 +sg225234 +S'oil on canvas' +p233300 +sg225236 +S'1888' +p233301 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a0000656.jpg' +p233302 +sg225240 +S'In February 1888 Van Gogh left Paris,\r\nwhere he had been residing for nearly two\r\nyears, and went to Arles, a small town in\r\nProvence. Exhausted by the pressures of\r\ncity life, he was drawn by the relative peace\r\nand simplicity of rural existence and the\r\nwarmer climate promised by the south of\r\nFrance. His initial perception of Arles fell\r\nshort of his expectations, however. In lieu\r\nof the bright, sunlit landscape he had envisioned,\r\nhe encountered one covered with\r\nsnow. His lack of both money and friends\r\nonly added to his disenchantment, though\r\nit would quickly fade. The artist soon found\r\nhimself captivated by the distinctive character\r\nof the region, and he threw himself\r\ninto his art wholeheartedly.\n Van Gogh\xe2\x80\x99s time in Arles proved to be\r\nboth productive and transformative. In the\r\nspace of approximately fifteen months, he\r\nproduced more than two hundred paintings,\r\nmade almost one hundred drawings, and\r\nwrote more than two hundred letters. The\r\nworks he produced display a maturity and\r\na cogency of style, technique, and personal\r\nartistic vision that had previously been lacking\r\nin his work. It was there, working largely\r\nin isolation, that Van Gogh truly came into\r\nhis own as an artist. Van Gogh himself was\r\naware of this transformation, declaring to\r\nhis brother that "my concentration becomes\r\nmore intense, my hand more sure."\n Van Gogh embraced nature with a\r\nrenewed vigor, spending much of his time out of doors producing images of orchards\r\nin bloom, seascapes, and harvests such as\r\n\n This farm was an ideal subject for the\r\nartist. Both picturesque and accessible—the\r\nfarmhouse was located not far from Yellow\r\nHouse, which the artist had begun renting\r\nthe previous month—this motif appeared\r\nin a number of paintings and drawings Van\r\nGogh produced that summer.\n (Text by Kimberly Jones, \n Notes\n \n \n \n ' +p233303 +sa(dp233304 +g225230 +S'Pont de la Tournelle, Paris' +p233305 +sg225232 +S'Stanislas L\xc3\xa9pine' +p233306 +sg225234 +S'oil on canvas' +p233307 +sg225236 +S'1862' +p233308 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a0000694.jpg' +p233309 +sg225240 +g27 +sa(dp233310 +g225230 +S'A King Charles Spaniel' +p233311 +sg225232 +S'Edouard Manet' +p233312 +sg225234 +S'oil on linen' +p233313 +sg225236 +S'c. 1866' +p233314 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a0000668.jpg' +p233315 +sg225240 +S'A King Charles Spaniel\n Here Manet portrays a King Charles\r\nspaniel (or Cavalier King Charles spaniel\r\nas it is more commonly called today),\r\na breed distinguished by its long silky\r\ncoat and drooping ears. Named for King Charles II of England, whose fondness for\r\nthe breed was legendary, this toy spaniel\r\nwas a favorite of the British aristocracy\r\nfrom the sixteenth century onward. With\r\na sweet, playful disposition, they were\r\nprized as companions and typically led a pampered existence as lapdogs in contrast\r\nto larger cousins who were bred for hunting.\r\nThis particular dog has the distinctive\r\nred and white coat of the Bleinheim variety\r\n(named after the palace of John Churchill,\r\nfirst Duke of Marlborough, another wellknown\r\ndevotee of the breed who raised\r\ndogs of this coloring in the early eighteenth\r\ncentury).\n In \n Manet may have had a personal fondness\r\nfor this particular breed. Years later,\r\nhe would include a King Charles spaniel\r\npuppy slumbering in the lap of the\r\nelegantly dressed woman in his painting \n (Text by Kimberly Jones, \n Notes\n \n ' +p233316 +sa(dp233317 +g225230 +S'Flowers in a Crystal Vase' +p233318 +sg225232 +S'Edouard Manet' +p233319 +sg225234 +S'oil on canvas' +p233320 +sg225236 +S'c. 1882' +p233321 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a0000684.jpg' +p233322 +sg225240 +g27 +sa(dp233323 +g225230 +S'Bon Bock Caf\xc3\xa9' +p233324 +sg225232 +S'Artist Information (' +p233325 +sg225234 +S'French, 1832 - 1883' +p233326 +sg225236 +S'(related artist)' +p233327 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a0000669.jpg' +p233328 +sg225240 +g27 +sa(dp233329 +g225232 +S'Artist Information (' +p233330 +sg225240 +g27 +sg225234 +S'French, 1832 - 1883' +p233331 +sg225230 +S'Madame L\xc3\xa9pine' +p233332 +sg225236 +S'(related artist)' +p233333 +sa(dp233334 +g225230 +S'Still Life' +p233335 +sg225232 +S'Henri Matisse' +p233336 +sg225234 +S'oil on cardboard on wood' +p233337 +sg225236 +S'c. 1905' +p233338 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000eb6.jpg' +p233339 +sg225240 +g27 +sa(dp233340 +g225230 +S'Bazille and Camille (Study for "D\xc3\xa9jeuner sur l\'Herbe")' +p233341 +sg225232 +S'Claude Monet' +p233342 +sg225234 +S'oil on canvas' +p233343 +sg225236 +S'1865' +p233344 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a000066e.jpg' +p233345 +sg225240 +S"An elegant young couple steps into a sunlit clearing from the cool of the Fontainebleau forest. Brightness dances off their clothes, creating the strong highlights that define the curve of the man’s hat and catch the bunched hem of the woman's dress. Shadows fall, not in blacks or grays, but as deeper concentrations of the colors around them.\n Monet was one of the young artists who frequented the Café Guerbois, where Manet and other members of the avant-garde discussed art and literature. Monet championed painting out-of-doors—\n This painting was made as an oil sketch for a much larger work (15 x 20 \r\n feet) whose size made painting outdoors impossible. Instead Monet made \r\n smaller preparatory paintings out-of-doors, including this one. Only \r\n fragments of the final large canvas survive. Monet left it with a landlord \r\n to cover a debt, and it was ruined by moisture and neglect.\n " +p233346 +sa(dp233347 +g225230 +S'Argenteuil' +p233348 +sg225232 +S'Claude Monet' +p233349 +sg225234 +S'oil on canvas' +p233350 +sg225236 +S'c. 1872' +p233351 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a0000677.jpg' +p233352 +sg225240 +S'In December 1871, shortly after returning\r\nto France after a year\xe2\x80\x99s absence, Monet\r\nand his family settled in Argenteuil, a\r\nsuburb some seven miles outside Paris,\r\nand remained there until January 1878.\r\nArgenteuil proved to be a great stimulus\r\nfor his painting; the attractive countryside\r\nand the Seine that flowed nearby were\r\nideal for studying the effects of light and\r\natmosphere, while its status as a suburban\r\nrecreation site provided the artist with\r\nunlimited opportunities for the depiction\r\nof modern life. The six-year period that he\r\nspent there was a prolific one; during his first year at Argenteuil alone, he produced\r\nalmost as many paintings as he had during\r\nthe three previous years combined.\n Of the many works the artist produced\r\nduring this first year, \n As the presence of the smokestacks\r\nsuggests, Argenteuil was a burgeoning\r\ncenter for industry as well as a popular site\r\nfor boating and recreation in the second\r\nhalf of the nineteenth century. The very\r\nfactors that helped to establish its popularity\r\nas a suburban retreat—the location, the\r\nexpansive countryside, and particularly the\r\nnew railroad that had been opened in\r\n1851—also led to an increase in population,\r\nhousing construction, and manufacturing.\r\nThe town\xe2\x80\x99s economic base thus\r\nshifted from agrarian to industrial.\n (Text by Kimberly Jones, \n Notes\n \n ' +p233353 +sa(dp233354 +g225230 +S'Ships Riding on the Seine at Rouen' +p233355 +sg225232 +S'Claude Monet' +p233356 +sg225234 +S'oil on canvas' +p233357 +sg225236 +S'1872/1873' +p233358 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a0000678.jpg' +p233359 +sg225240 +g27 +sa(dp233360 +g225230 +S'Bridge at Argenteuil on a Gray Day' +p233361 +sg225232 +S'Claude Monet' +p233362 +sg225234 +S'oil on canvas' +p233363 +sg225236 +S'c. 1876' +p233364 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a000066f.jpg' +p233365 +sg225240 +g27 +sa(dp233366 +g225230 +S"The Artist's Garden at V\xc3\xa9theuil" +p233367 +sg225232 +S'Claude Monet' +p233368 +sg225234 +S'oil on canvas' +p233369 +sg225236 +S'1880' +p233370 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a000067b.jpg' +p233371 +sg225240 +S'The Artist\xe2\x80\x99s Garden at Vétheuil\n In subject, this painting reflects the\r\nartist\xe2\x80\x99s interest, dating to the 1860s, in\r\nthe depiction of gardens, particularly his\r\nown. In Argenteuil in the 1870s, in\r\nVétheuil in the early 1880s, and most\r\nnotably in Giverny—where he resided for\r\nthe last forty years of his life—Monet took\r\nan active role in tending his own garden,\r\nwhich increasingly became the focal point\r\nof his artistic and physical existence. While\r\nat Vétheuil, Monet produced at least nine\r\npaintings of his garden, all in the same\r\nyear. Four identical compositions (this\r\nwork among them) are painted from the\r\nsame vantage point. All four paintings\r\nutilize a vertical format—highly unusual\r\nfor landscape paintings—and depict the\r\nstaircase and path at the center, flanked\r\nby beds of sunflowers and blue and white\r\nceramic vases filled with gladioli. When\r\nviewed together, the four canvases suggest\r\na progression that culminates in \n Precisely when Monet began to paint\r\n\n Curiously, this painting bears the\r\ndate of 1880 (all the other canvases are\r\ndated 1881). The earlier date, however, is\r\nerroneous. The foreground of the painting\r\nwas heavily reworked in the years prior\r\nto Monet\xe2\x80\x99s death in 1926, a not uncommon\r\npractice for the artist. The year and\r\nsignature, which was painted directly into\r\nthis paint layer while still wet, was added at\r\nthat time.\n (Text by Kimberly Jones, \n Notes\n \n \n ' +p233372 +sa(dp233373 +g225230 +S'The Island of Raguenez, Brittany' +p233374 +sg225232 +S'Henri Moret' +p233375 +sg225234 +S'oil on canvas' +p233376 +sg225236 +S'1890/1895' +p233377 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00037/a00037c6.jpg' +p233378 +sg225240 +g27 +sa(dp233379 +g225230 +S"The Artist's Sister at a Window" +p233380 +sg225232 +S'Berthe Morisot' +p233381 +sg225234 +S'oil on canvas' +p233382 +sg225236 +S'1869' +p233383 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a000068b.jpg' +p233384 +sg225240 +g27 +sa(dp233385 +g225230 +S'The Harbor at Lorient' +p233386 +sg225232 +S'Berthe Morisot' +p233387 +sg225234 +S'oil on canvas' +p233388 +sg225236 +S'1869' +p233389 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e2b.jpg' +p233390 +sg225240 +S'In 1869, Morisot\xe2\x80\x99s beloved sister, Edma,\r\nmoved to the town of Lorient on the Brittany\r\ncoastline following her marriage to\r\nnaval officer Adolphe Pontillon. The two\r\nsisters had been close from a young age and\r\nhad studied art together under the tutelage\r\nof Jean-Baptiste-Camille Corot, a key figure\r\nin what would later be called French\r\nrealism. Through their acquaintance with\r\nCorot, the sisters were exposed to the\r\ntechnique and tradition of painting outdoors,\r\n\n Painted during one such visit—to\r\nLorient in the summer of 1869—\n The inclusion of the figure (Edma) on\r\nthe right of the composition transforms a\r\nsimple serene landscape into a representation\r\nof the contemporary life of the \n First exhibited in the Salon of 1870,\r\n\n (Text by Daniella Berman, \n Notes\n \n ' +p233391 +sa(dp233392 +g225230 +S'Young Woman with a Straw Hat' +p233393 +sg225232 +S'Berthe Morisot' +p233394 +sg225234 +S'oil on canvas' +p233395 +sg225236 +S'1884' +p233396 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a000068d.jpg' +p233397 +sg225240 +S'With its dynamic palette and seemingly\r\nimprovisational approach, \n While many impressionist artists regularly\r\nused professional models, Morisot\r\npreferred to paint the world around her\r\nand frequently represented her family and\r\nfriends. After a period of using her sister\r\nEdma as the subject for many works, Morisot\r\ndepicted her daughter, Julie Manet,\r\nin a variety of mediums throughout her\r\nchildhood. The unidentified subject of\r\nthis painting, however, is a professional\r\nmodel who appears in several other canvases\r\nby Morisot.\n Unlike the majority of artists, Morisot\r\nrequired a model to sit only for a short\r\nperiod of time. She then typically completed\r\nmost of the canvas from memory—a\r\nmethod she quite likely used for this painting.\r\nIt was also probably executed \n (Text by Daniella Berman, \n Notes\n \n \n \n ' +p233398 +sa(dp233399 +g225230 +S'Girl in a Boat with Geese' +p233400 +sg225232 +S'Berthe Morisot' +p233401 +sg225234 +S'oil on canvas' +p233402 +sg225236 +S'c. 1889' +p233403 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a000068e.jpg' +p233404 +sg225240 +g27 +sa(dp233405 +g225230 +S'Orchard in Bloom, Louveciennes' +p233406 +sg225232 +S'Camille Pissarro' +p233407 +sg225234 +S'oil on canvas' +p233408 +sg225236 +S'1872' +p233409 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a0000698.jpg' +p233410 +sg225240 +S'Two laborers go about their work in a\r\nbrown field, surrounded by trees in various\r\nstates of bloom under a temperate sky.\r\nPissarro cast his eye on an unassuming corner\r\nof nature, employing small, separate\r\ntouches of paint for the plowed earth and\r\norchard and softly blending strokes in the\r\nsky in order to create an appealing reflection\r\non springtime renewal. The promise\r\nof verdure is evident in the upturned soil\r\nand especially in the tree at left, where\r\ntender new leaves burst through the cottony\r\nblossoms.\n The serenity of Pissarro\xe2\x80\x99s sun-bathed\r\norchard gives no hint of the turbulence\r\nthat these environs had recently experienced.\r\nPissarro had first gone to live in\r\nthe village of Louveciennes, near the Seine\r\nRiver several miles to the west of Paris, in\r\nthe spring of 1869. His friends Claude\r\nMonet, Auguste Renoir, and Alfred Sisley\r\nalso worked nearby. The artists kept one another company, focusing on the landscape\r\nwhile forging innovations that led\r\nto the emergence of a full-blown impressionist\r\nstyle. Their idyll in the countryside,\r\nhowever, was interrupted by the\r\noutbreak of the Franco-Prussian War in\r\n1870. As foreign troops marched into the\r\nregion, Pissarro fled to Brittany and then\r\nto London, leaving behind most of his\r\nbelongings. He returned in 1871 to find\r\nthat the Prussian soldiers garrisoned in\r\nhis home had destroyed or damaged much\r\nof his property, including works of art. He\r\nstayed on a few months in Louveciennes,\r\nduring which time he painted this canvas,\r\nand relocated the next year to Pontoise,\r\nfarther removed from the city.\n Louveciennes was one of dozens of\r\ncommunities near Paris that were transformed\r\nby the arrival of the railway in\r\nthe nineteenth century. Residents of the\r\nmetropolis took advantage of the new convenience\r\nof travel and headed to nearby\r\nvillages that were reachable in less than one\r\nhour. Some took up permanent residence,\r\nturning hamlets into suburbs of the French\r\ncapital.\n Pissarro\xe2\x80\x99s tendency to depict humble\r\nscenery dismayed even a critic generally\r\nsupportive of the trend toward naturalism\r\nin nineteenth-century landscape painting.\r\nIn a review of the first impressionist\r\nexhibition in 1874 (Pissarro had helped\r\norganize it and had sent five canvases),\r\nCastagnary dismissed Pissarro\xe2\x80\x99s subject\r\nmatter as too prosaic, even as he found\r\npoetry in the artist\xe2\x80\x99s handling: "[Pissarro]\r\nhas a deplorable predilection for market gardens\r\n. . . and does not hesitate to paint\r\ncabbage or any other domestic vegetable.\r\nBut these errors of logic or vulgarities of\r\ntaste do not alter his beautiful qualities of\r\nexecution."\n (Text by Margaret Doyle, \n Notes\n \n \n \n ' +p233411 +sa(dp233412 +g225230 +S'Hampton Court Green' +p233413 +sg225232 +S'Camille Pissarro' +p233414 +sg225234 +S'oil on canvas' +p233415 +sg225236 +S'1891' +p233416 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a0000697.jpg' +p233417 +sg225240 +g27 +sa(dp233418 +g225230 +S"The Artist's Garden at Eragny" +p233419 +sg225232 +S'Camille Pissarro' +p233420 +sg225234 +S'oil on canvas' +p233421 +sg225236 +S'1898' +p233422 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a0000699.jpg' +p233423 +sg225240 +g27 +sa(dp233424 +g225230 +S'Place du Carrousel, Paris' +p233425 +sg225232 +S'Camille Pissarro' +p233426 +sg225234 +S'oil on canvas' +p233427 +sg225236 +S'1900' +p233428 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a000069a.jpg' +p233429 +sg225240 +S'Cityscapes played a significant role in the\r\nwork of many impressionist painters in\r\nthe 1860s and 1870s, when Claude Monet,\r\nGustave Caillebotte, and Auguste Renoir\r\n(see \n Although his family home was north\r\nof Paris in Eragny, Pissarro spent extended\r\nperiods in the French capital during the\r\nlast decade of his career, renting rooms in\r\nvarious locations. For a number of years\r\nthe artist had suffered from chronic eye\r\ninfections that made it difficult for him\r\nto work outdoors owing to the wind and\r\nlight. Retreating indoors, he required\r\na room that overlooked scenic views in\r\norder to continue his practice of painting\r\nbefore the motif. An apartment on the\r\nrue de Rivoli, which parallels the Seine on\r\nthe opposite side of the Tuileries Gardens\r\nand the Louvre, offered him just that.\r\nUpon securing the flat, he immediately\r\nbegan planning to paint a series of the\r\navailable panoramas, writing excitedly to\r\nhis son Lucien that the place had "a superb\r\nview of the Park, the Louvre to the left, in\r\nthe background the houses on the quays\r\nbehind the trees, to the right the D\xc3\xb4me\r\ndes Invalides, the steeples of Ste. Clotilde\r\nbehind the solid mass of chestnut trees.\r\nIt is very beautiful. I shall paint a fine\r\nseries."\n This view looks toward the main\r\ncourtyard of the Louvre, where the small\r\nArc de Triomphe du Carrousel, visible\r\njust beyond the trees, marks the entrance\r\ninto the Tuileries. Although Pissarro had adopted a patterned divisionist technique\r\nin the mid-1880s (in response to the\r\ninnovations of his friend Georges Seurat,\r\nwith whom he worked closely during those\r\nyears), Pissarro returned wholeheartedly\r\nto his impressionist roots in his later work,\r\nas demonstrated by this canvas. Freely\r\napplied brushstrokes animate its surface\r\nand capture the brilliant light of a summer\r\nday. The energetic handling conveys\r\nthe sense of urban liveliness below the artist\xe2\x80\x99s\r\nwindow, even at a remove, as carriages\r\nroll past the Louvre in a line and people\r\npromenade in the garden.\n Unlike the humble rural scenery that\r\nattracted Pissarro\xe2\x80\x99s attention outside Paris,\r\nthe environs of the place du Carrousel\r\nwere not only strikingly grand but also rich\r\nin French history. It is at this site that the\r\nguillotine was erected during the French\r\nRevolution, and it was here that the Palais\r\ndes Tuileries, where Marie Antoinette and\r\nLouis XVI were held in house arrest before\r\ntheir execution, was set on fire in 1871\r\nduring the Paris Commune, the citizens\xe2\x80\x99\r\nuprising against the French government.\r\nThe damaged building, which had closed\r\noff the Louvre courtyard, was torn down in\r\n1883. Pissarro\xe2\x80\x99s painting makes no allusion\r\nto these past events, but focuses instead on\r\nthe gardens as a popular gathering place.\r\nIn his Tuileries series in general, Pissarro\r\nseems to have been especially attracted by\r\nthe geometry of the architecture and even\r\nof the gardens, whose formal layout is partially\r\nobscured here by the ample foliage.\r\nThe order and the structure of the site balance\r\nthe dynamism of the social scene and\r\nthe vibrancy of the brushwork, especially\r\nin the sky and trees.\n (Text by Margaret Doyle, \n Notes\n \n ' +p233430 +sa(dp233431 +g225230 +S'Flowers in a Vase' +p233432 +sg225232 +S'Odilon Redon' +p233433 +sg225234 +S'oil on canvas' +p233434 +sg225236 +S'c. 1910' +p233435 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006f4.jpg' +p233436 +sg225240 +g27 +sa(dp233437 +g225230 +S'Head of a Dog' +p233438 +sg225232 +S'Auguste Renoir' +p233439 +sg225234 +S'oil on canvas' +p233440 +sg225236 +S'1870' +p233441 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006f5.jpg' +p233442 +sg225240 +g27 +sa(dp233443 +g225230 +S'Pont Neuf, Paris' +p233444 +sg225232 +S'Auguste Renoir' +p233445 +sg225234 +S'oil on canvas' +p233446 +sg225236 +S'1872' +p233447 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006f7.jpg' +p233448 +sg225240 +S'Pont Neuf, Paris\n Here, the Pont Neuf is viewed from\r\na vantage point on the right bank of the\r\nSeine facing south across the river toward\r\nthe Île de la Cité. In the background,\r\nbuildings line the far bank along the quai\r\ndes Augustins and the quai de Conti,\r\nwhile the bridge\xe2\x80\x99s most distinctive feature,\r\nthe equestrian sculpture of Henri IV, is\r\nclearly visible on the right.\n Edmond Renoir, the artist\xe2\x80\x99s younger\r\nbrother and a budding journalist in 1872,\r\nlater recounted that the artist installed\r\nhimself in a café located on the corner\r\nof the quai du Louvre, spending hours\r\nthere sketching the scene before him.\r\n"Auguste . . . took pleasure, after having\r\noutlined the soil, the parapets, the houses\r\nin the distance, the place Dauphine and\r\nthe statue of Henri IV, in sketching the\r\npassersby, vehicles and groups. Meanwhile\r\nI scribbled, except when he asked me to\r\ngo to the bridge and speak with passersby\r\nto make them stop for a minute."\n Renoir was by no means the only impressionist\r\npainter who drew inspiration\r\nfrom this particular motif. About 1872,\r\nMonet also painted the Pont Neuf from\r\na nearly identical vantage point (Dallas\r\nMuseum of Art), although he opted for a rainy day, perhaps as an intentional contrast\r\nto Renoir\xe2\x80\x99s sunlit composition. Years\r\nlater, Camille Pissarro painted a series of\r\nviews of the bridge from the window of his\r\napartment on the Île de la Cité looking\r\nnorthward.\n (Text by Kimberly Jones, \n Notes\n \n \n ' +p233449 +sa(dp233450 +g225230 +S'Regatta at Argenteuil' +p233451 +sg225232 +S'Auguste Renoir' +p233452 +sg225234 +S'oil on canvas' +p233453 +sg225236 +S'1874' +p233454 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006fd.jpg' +p233455 +sg225240 +g27 +sa(dp233456 +g225230 +S'Madame Monet and Her Son' +p233457 +sg225232 +S'Auguste Renoir' +p233458 +sg225234 +S'oil on canvas' +p233459 +sg225236 +S'1874' +p233460 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006fe.jpg' +p233461 +sg225240 +S'Madame Monet and Her Son\n This oft-repeated quip, which was\r\nprobably made in jest given Manet\xe2\x80\x99s known\r\nfondness for Renoir, is certainly belied\r\nby the painting that inspired it. \n Both Renoir and Manet presented the\r\nfinished paintings to their host. Monet\r\nclearly appreciated Renoir\xe2\x80\x99s effort. This\r\npainting would remain with Monet for\r\nthe rest of his life and in his final years\r\nit even hung in the artist\xe2\x80\x99s bedroom at\r\nGiverny.\n (Text by Kimberly Jones, \n Notes\n \n \n ' +p233462 +sa(dp233463 +g225230 +S'Picking Flowers' +p233464 +sg225232 +S'Auguste Renoir' +p233465 +sg225234 +S'oil on canvas' +p233466 +sg225236 +S'1875' +p233467 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006ff.jpg' +p233468 +sg225240 +g27 +sa(dp233469 +g225232 +S'French 19th Century' +p233470 +sg225240 +g27 +sg225234 +S'overall: 20.6 x 27 cm (8 1/8 x 10 5/8 in.)\r\nframed: 31.8 x 37.5 x 6.7 cm (12 1/2 x 14 3/4 x 2 5/8 in.)' +p233471 +sg225230 +S'Woman and Two Children in a Field' +p233472 +sg225236 +S'\noil on canvas' +p233473 +sa(dp233474 +g225230 +S'Young Woman Braiding Her Hair' +p233475 +sg225232 +S'Auguste Renoir' +p233476 +sg225234 +S'oil on canvas' +p233477 +sg225236 +S'1876' +p233478 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000734.jpg' +p233479 +sg225240 +g27 +sa(dp233480 +g225230 +S'Georges Rivi\xc3\xa8re' +p233481 +sg225232 +S'Auguste Renoir' +p233482 +sg225234 +S'oil on cement' +p233483 +sg225236 +S'1877' +p233484 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000700.jpg' +p233485 +sg225240 +g27 +sa(dp233486 +g225230 +S'Landscape between Storms' +p233487 +sg225232 +S'Auguste Renoir' +p233488 +sg225234 +S'oil on canvas' +p233489 +sg225236 +S'1874/1875' +p233490 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000df2.jpg' +p233491 +sg225240 +g27 +sa(dp233492 +g225230 +S'Woman by a Fence' +p233493 +sg225232 +S'Auguste Renoir' +p233494 +sg225234 +S'oil on canvas' +p233495 +sg225236 +S'1866' +p233496 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006f8.jpg' +p233497 +sg225240 +g27 +sa(dp233498 +g225230 +S'Woman Standing by a Tree' +p233499 +sg225232 +S'Auguste Renoir' +p233500 +sg225234 +S'oil on canvas' +p233501 +sg225236 +S'1866' +p233502 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006f9.jpg' +p233503 +sg225240 +g27 +sa(dp233504 +g225230 +S'Woman in a Park' +p233505 +sg225232 +S'Auguste Renoir' +p233506 +sg225234 +S'oil on canvas' +p233507 +sg225236 +S'1866' +p233508 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000701.jpg' +p233509 +sg225240 +g27 +sa(dp233510 +g225230 +S'Child with Blond Hair' +p233511 +sg225232 +S'Auguste Renoir' +p233512 +sg225234 +S'oil on canvas' +p233513 +sg225236 +S'1895/1900' +p233514 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000723.jpg' +p233515 +sg225240 +g27 +sa(dp233516 +g225230 +S'Child with Brown Hair' +p233517 +sg225232 +S'Auguste Renoir' +p233518 +sg225234 +S'oil on canvas' +p233519 +sg225236 +S'1887/1888' +p233520 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000724.jpg' +p233521 +sg225240 +g27 +sa(dp233522 +g225230 +S'Young Girl Reading' +p233523 +sg225232 +S'Auguste Renoir' +p233524 +sg225234 +S'oil on canvas' +p233525 +sg225236 +S'c. 1888' +p233526 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c1d.jpg' +p233527 +sg225240 +g27 +sa(dp233528 +g225230 +S'Landscape at V\xc3\xa9theuil' +p233529 +sg225232 +S'Auguste Renoir' +p233530 +sg225234 +S'oil on canvas' +p233531 +sg225236 +S'c. 1890' +p233532 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000702.jpg' +p233533 +sg225240 +g27 +sa(dp233534 +g225230 +S'Small Study for a Nude' +p233535 +sg225232 +S'Auguste Renoir' +p233536 +sg225234 +S'oil on canvas' +p233537 +sg225236 +S'1882' +p233538 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c1e.jpg' +p233539 +sg225240 +g27 +sa(dp233540 +g225230 +S'Nude with Figure in Background' +p233541 +sg225232 +S'Auguste Renoir' +p233542 +sg225234 +S'oil on canvas' +p233543 +sg225236 +S'c. 1882' +p233544 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c1f.jpg' +p233545 +sg225240 +g27 +sa(dp233546 +g225230 +S'The Blue River' +p233547 +sg225232 +S'Auguste Renoir' +p233548 +sg225234 +S'oil on canvas' +p233549 +sg225236 +S'c. 1890/1900' +p233550 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000725.jpg' +p233551 +sg225240 +g27 +sa(dp233552 +g225230 +S'Young Spanish Woman with a Guitar' +p233553 +sg225232 +S'Auguste Renoir' +p233554 +sg225234 +S'oil on canvas' +p233555 +sg225236 +S'1898' +p233556 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000726.jpg' +p233557 +sg225240 +g27 +sa(dp233558 +g225230 +S'Maison de la Poste, Cagnes' +p233559 +sg225232 +S'Auguste Renoir' +p233560 +sg225234 +S'oil on canvas' +p233561 +sg225236 +S'1906/1907' +p233562 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000df3.jpg' +p233563 +sg225240 +g27 +sa(dp233564 +g225230 +S'Jeanne Samary' +p233565 +sg225232 +S'Auguste Renoir' +p233566 +sg225234 +S'oil on canvas' +p233567 +sg225236 +S'1878' +p233568 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000df4.jpg' +p233569 +sg225240 +g27 +sa(dp233570 +g225230 +S'Peaches on a Plate' +p233571 +sg225232 +S'Auguste Renoir' +p233572 +sg225234 +S'oil on canvas' +p233573 +sg225236 +S'1902/1905' +p233574 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000703.jpg' +p233575 +sg225240 +S'Although Renoir is best known as the consummate\r\npainter of the female form, stilllife\r\npainting played an important role in\r\nhis development as an artist. When he first\r\nbegan his career in 1854, the thirteen-yearold\r\nRenoir held an apprenticeship at Levy\r\nBrothers, a porcelain manufactory. His\r\njob, he later recalled, "consisted of painting\r\nlittle bouquets on a white background.\r\nFor this I was paid five cents a dozen. When\r\nthere were larger pieces to decorate, the\r\nbouquets were larger."\n Still lifes appear only rarely in Renoir\xe2\x80\x99s\r\nwork of the 1860s and 1870s, but by the\r\nearly 1880s such paintings had begun to\r\noccupy a prominent place in the artist\xe2\x80\x99s\r\noeuvre. At the seventh impressionist exhibition\r\nin 1882, the first group exhibition\r\nin which he participated in five\r\nyears, Renoir exhibited a number of\r\npaintings of fruit and flowers, including\r\none of peaches nestled in a faience \n Peaches on a Plate\n This painting displays the kind of lively,\r\nfluid paint handling Renoir had extolled.\r\nWhile its subject may derive from the stilllife\r\npaintings of the eighteenth-century\r\npainter Jean Siméon Chardin, stylistically\r\n,em>Peaches on a Plate\n (Text by Kimberly Jones, \n Notes\n \n \n ' +p233576 +sa(dp233577 +g225232 +S'Georges Rouault' +p233578 +sg225240 +g27 +sg225234 +S'oil on canvas' +p233579 +sg225230 +S'Christ and the Doctor' +p233580 +sg225236 +S'c. 1935' +p233581 +sa(dp233582 +g225230 +S'Study for "La Grande Jatte"' +p233583 +sg225232 +S'Georges Seurat' +p233584 +sg225234 +S'oil on wood' +p233585 +sg225236 +S'1884/1885' +p233586 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006fc.jpg' +p233587 +sg225240 +g27 +sa(dp233588 +g225230 +S'Boulevard H\xc3\xa9lo\xc3\xafse, Argenteuil' +p233589 +sg225232 +S'Alfred Sisley' +p233590 +sg225234 +S'oil on canvas' +p233591 +sg225236 +S'1872' +p233592 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000737.jpg' +p233593 +sg225240 +S'Early in 1872, Alfred Sisley traveled to\r\nArgenteuil to visit his friend Claude\r\nMonet, who had moved there the previous\r\nyear, making him one of the first\r\nmembers of the impressionist circle to\r\ndo so. Sisley had first met Monet in 1862\r\nas a fellow student in the painting studio\r\nheaded by Charles Gleyre. Although Sisley\r\nhad formed friendships with several\r\nother students, including Auguste Renoir\r\nand Frédéric Bazille, he had the strongest\r\naffinity for Monet, whose primary interest was also landscape rather than figure painting.\r\nThroughout the 1860s, Sisley had\r\noften painted alongside Monet, including\r\nan excursion the two had made to Honfleur\r\nin the summer of 1867.\n During his sojourn at Argenteuil,\r\nSisley produced a modest group of paintings\r\ndepicting both the town and the\r\nriverbanks of the Seine. \n Boulevard Héloïse takes its name\r\nfrom the twelfth-century figure Héloïse\r\nd\xe2\x80\x99Argenteuil, who after a doomed romance\r\nwith the philosopher Pierre Abélard retired\r\nto a convent in Argenteuil, where she later\r\nbecame the prioress. The thoroughfare was\r\nalso the town\xe2\x80\x99s largest and most prominent.\r\nThe two artists apparently set up easels onsite\r\nside by side—Monet stationed in the\r\ncenter of the road, Sisley positioned to his\r\nright—which afforded them comparable\r\nvantage points. They even utilized canvases\r\nof the same size. The wide horizontal format,\r\ninterestingly, was more traditionally\r\nassociated with seascapes than with landscape\r\npaintings.\n In contrast to Monet\xe2\x80\x99s canvas, which\r\nseems more invested in the overall composition\r\nand the careful and artful\r\narrangement of forms (Yale University\r\nArt Gallery, New Haven), Sisley\xe2\x80\x99s painting\r\nis far more rigorous in its observation\r\nand its execution. This is most evident\r\nin his depiction of the houses lining the\r\nleft-hand side of the street. Each building\r\nis carefully delineated and distinguished from its neighbors through the placement\r\nof architectural elements and subtle\r\nchanges in palette. Sisley\xe2\x80\x99s eye for detail\r\nis apparent throughout, in the mottled\r\nstonework of the wall partially covered\r\nwith ivy at the far left, the shape of the\r\nadjacent iron gates, even the intimation\r\nof the cobblestones paving the street (they\r\nhad been added in the early 1850s).\n (Text by Kimberly Jones, \n Notes\n \n \n ' +p233594 +sa(dp233595 +g225230 +S'Meadow' +p233596 +sg225232 +S'Alfred Sisley' +p233597 +sg225234 +S'oil on canvas' +p233598 +sg225236 +S'1875' +p233599 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000717.jpg' +p233600 +sg225240 +g27 +sa(dp233601 +g225230 +S"The Artist's Dog Fl\xc3\xa8che" +p233602 +sg225232 +S'Henri de Toulouse-Lautrec' +p233603 +sg225234 +S'oil on wood' +p233604 +sg225236 +S'c. 1881' +p233605 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a000074c.jpg' +p233606 +sg225240 +g27 +sa(dp233607 +g225230 +S'Carmen Gaudin' +p233608 +sg225232 +S'Henri de Toulouse-Lautrec' +p233609 +sg225234 +S'oil on wood' +p233610 +sg225236 +S'1885' +p233611 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a000074d.jpg' +p233612 +sg225240 +S'According to a friend of the artist, Lautrec\r\nspotted Carmen Gaudin, a laundress,\r\non a Paris street one day. Struck by her\r\ncopper hair and hardened looks, which\r\nhe compared to "tough meat," he immediately\r\nwent after her to ask if she would\r\nmodel for him.\n The apparent working-class coarseness\r\nof this model appealed to an artist who\r\nwas increasingly drawn to the louche world\r\nof Montmartre, the bohemian district of\r\n\n Almost all of Lautrec\xe2\x80\x99s depictions of\r\nGaudin present her with an air of weariness\r\nthat seems to evoke the tedious reality\r\nof her situation. Laundering was grueling\r\nwork, and it was a common assumption of\r\nthe time that washerwomen supplemented\r\ntheir meager earnings through prostitution.\r\nBut the hardness that Lautrec originally\r\nperceived in Gaudin\xe2\x80\x99s face did not, to the artist\xe2\x80\x99s great surprise, reflect her\r\npersonality. She had a very gentle disposition,\r\nwas punctual, circumspect, and\r\neager to please, and as such found favor\r\nwith other artists in his circle who also\r\nemployed her.\n Gaudin\xe2\x80\x99s auburn tresses were the primary\r\nfactor in Lautrec\xe2\x80\x99s attraction to her\r\nas a model. This fascination is apparent\r\nin his paintings of her, many in profile,\r\nincluding this one, with disheveled hair\r\nfalling over her face and obscuring her eyes.\r\nLautrec preferred redheaded models even\r\nwhen the color came from dye, as was the\r\ncase with Gaudin. When she showed up at\r\nhis studio one day after a six-month hiatus,\r\nher hair returned to its natural state, he let\r\nher go, reporting to a friend, "Now she is\r\na brunette! You realize that she has lost all\r\nher appeal."\n (Text by Margaret Doyle, \n Notes\n \n \n \n ' +p233613 +sa(dp233614 +g225232 +S'Maurice Utrillo' +p233615 +sg225240 +g27 +sg225234 +S'oil on cardboard on wood' +p233616 +sg225230 +S'Row of Houses at Pierrefitte' +p233617 +sg225236 +S'c. 1905' +p233618 +sa(dp233619 +g225232 +S'Maurice Utrillo' +p233620 +sg225240 +g27 +sg225234 +S'oil on cardboard on wood' +p233621 +sg225230 +S'Landscape, Pierrefitte' +p233622 +sg225236 +S'c. 1907' +p233623 +sa(dp233624 +g225232 +S'Maurice Utrillo' +p233625 +sg225240 +g27 +sg225234 +S'oil on cardboard' +p233626 +sg225230 +S'Rue Cortot, Montmartre' +p233627 +sg225236 +S'1909' +p233628 +sa(dp233629 +g225232 +S'Maurice Utrillo' +p233630 +sg225240 +g27 +sg225234 +S'oil on canvas' +p233631 +sg225230 +S'Street at Cort\xc3\xa9, Corsica' +p233632 +sg225236 +S'1913' +p233633 +sa(dp233634 +g225230 +S'Child Wearing a Red Scarf' +p233635 +sg225232 +S'Edouard Vuillard' +p233636 +sg225234 +S'oil on cardboard' +p233637 +sg225236 +S'c. 1891' +p233638 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000752.jpg' +p233639 +sg225240 +g27 +sa(dp233640 +g225230 +S'Woman at Her Toilette' +p233641 +sg225232 +S'Edouard Vuillard' +p233642 +sg225234 +S'oil on cardboard' +p233643 +sg225236 +S'c. 1891' +p233644 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000753.jpg' +p233645 +sg225240 +g27 +sa(dp233646 +g225230 +S'The Conversation' +p233647 +sg225232 +S'Edouard Vuillard' +p233648 +sg225234 +S'oil on canvas' +p233649 +sg225236 +S'1891' +p233650 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a000072e.jpg' +p233651 +sg225240 +g27 +sa(dp233652 +g225230 +S'Woman in Black' +p233653 +sg225232 +S'Edouard Vuillard' +p233654 +sg225234 +S'oil on cardboard' +p233655 +sg225236 +S'c. 1891' +p233656 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000754.jpg' +p233657 +sg225240 +g27 +sa(dp233658 +g225230 +S'Two Women Drinking Coffee' +p233659 +sg225232 +S'Edouard Vuillard' +p233660 +sg225234 +S'oil on cardboard' +p233661 +sg225236 +S'c. 1893' +p233662 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000755.jpg' +p233663 +sg225240 +g27 +sa(dp233664 +g225230 +S'The Yellow Curtain' +p233665 +sg225232 +S'Edouard Vuillard' +p233666 +sg225234 +S'oil on canvas' +p233667 +sg225236 +S'c. 1893' +p233668 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000756.jpg' +p233669 +sg225240 +g27 +sa(dp233670 +g225230 +S'Woman Sitting by the Fireside' +p233671 +sg225232 +S'Edouard Vuillard' +p233672 +sg225234 +S'oil on cardboard' +p233673 +sg225236 +S'c. 1894' +p233674 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a000072f.jpg' +p233675 +sg225240 +g27 +sa(dp233676 +g225230 +S'Breakfast' +p233677 +sg225232 +S'Edouard Vuillard' +p233678 +sg225234 +S'oil on cardboard' +p233679 +sg225236 +S'1894' +p233680 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000757.jpg' +p233681 +sg225240 +g27 +sa(dp233682 +g225230 +S"The Artist's Paint Box and Moss Roses" +p233683 +sg225232 +S'Edouard Vuillard' +p233684 +sg225234 +S'oil on cardboard' +p233685 +sg225236 +S'1898' +p233686 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000758.jpg' +p233687 +sg225240 +g27 +sa(dp233688 +g225230 +S'Vase of Flowers on a Mantelpiece' +p233689 +sg225232 +S'Edouard Vuillard' +p233690 +sg225234 +S'oil on cardboard' +p233691 +sg225236 +S'c. 1900' +p233692 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000759.jpg' +p233693 +sg225240 +g27 +sa(dp233694 +g225230 +S'Oyster Sloop, Cos Cob' +p233695 +sg225232 +S'Childe Hassam' +p233696 +sg225234 +S'oil on canvas' +p233697 +sg225236 +S'1902' +p233698 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000e7.jpg' +p233699 +sg225240 +g27 +sa(dp233700 +g225232 +S'Hugues Merle' +p233701 +sg225240 +g27 +sg225234 +S'oil on canvas' +p233702 +sg225230 +S'Children Playing in a Park' +p233703 +sg225236 +S'c. 1860' +p233704 +sa(dp233705 +g225230 +S'Hunting Scene with a Pond' +p233706 +sg225232 +S'American 18th Century' +p233707 +sg225234 +S'overall: 65.8 x 127.4 cm (25 7/8 x 50 3/16 in.)\r\nframed: 72.7 x 134 x 3.1 cm (28 5/8 x 52 3/4 x 1 1/4 in.)' +p233708 +sg225236 +S'\noil on canvas' +p233709 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000402.jpg' +p233710 +sg225240 +g27 +sa(dp233711 +g225230 +S'Hunting Scene with a Harbor' +p233712 +sg225232 +S'American 18th Century' +p233713 +sg225234 +S'overall: 49.2 x 140.9 cm (19 3/8 x 55 1/2 in.)\r\nframed: 56.8 x 148.6 x 2.9 cm (22 3/8 x 58 1/2 x 1 1/8 in.)' +p233714 +sg225236 +S'\noil on canvas' +p233715 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00003/a00003f8.jpg' +p233716 +sg225240 +g27 +sa(dp233717 +g225232 +S'Lily Cushing' +p233718 +sg225240 +g27 +sg225234 +S'paper mounted on cardboard' +p233719 +sg225230 +S'Chapala Beach, Mexico' +p233720 +sg225236 +S'1964' +p233721 +sa(dp233722 +g225232 +S'Lily Cushing' +p233723 +sg225240 +g27 +sg225234 +S'paper mounted on cardboard' +p233724 +sg225230 +S'Posada Garden with a Monkey' +p233725 +sg225236 +S'1964' +p233726 +sa(dp233727 +g225232 +S'Artist Information (' +p233728 +sg225240 +g27 +sg225234 +S'British, 1758 - 1810' +p233729 +sg225230 +S'Portrait of a Gentleman' +p233730 +sg225236 +S'(related artist)' +p233731 +sa(dp233732 +g225230 +S'Saint Martin Dividing His Cloak' +p233733 +sg225232 +S'Jan Boeckhorst' +p233734 +sg225234 +S', c. 1640/1645' +p233735 +sg225236 +S'\n' +p233736 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e21.jpg' +p233737 +sg225240 +g27 +sa(dp233738 +g225232 +S'Dietz Edzard' +p233739 +sg225240 +g27 +sg225234 +S'oil on canvas' +p233740 +sg225230 +S'Flowers in a Vase' +p233741 +sg225236 +S'unknown date\n' +p233742 +sa(dp233743 +g225232 +S'Dietz Edzard' +p233744 +sg225240 +g27 +sg225234 +S'oil on canvas' +p233745 +sg225230 +S'Three Flowers in a Vase' +p233746 +sg225236 +S'unknown date\n' +p233747 +sa(dp233748 +g225230 +S'Heaton Park Races' +p233749 +sg225232 +S'John Ferneley' +p233750 +sg225234 +S'oil on canvas' +p233751 +sg225236 +S'1829' +p233752 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00005/a000056d.jpg' +p233753 +sg225240 +g27 +sa(dp233754 +g225230 +S'Love as Folly' +p233755 +sg225232 +S'Jean-Honor\xc3\xa9 Fragonard' +p233756 +sg225234 +S'oil on canvas' +p233757 +sg225236 +S'c. 1773/1776' +p233758 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005acd.jpg' +p233759 +sg225240 +g27 +sa(dp233760 +g225230 +S'Love the Sentinel' +p233761 +sg225232 +S'Jean-Honor\xc3\xa9 Fragonard' +p233762 +sg225234 +S'oil on canvas' +p233763 +sg225236 +S'c. 1773/1776' +p233764 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005ace.jpg' +p233765 +sg225240 +g27 +sa(dp233766 +g225230 +S'Portrait of a Young Boy' +p233767 +sg225232 +S'French 18th Century' +p233768 +sg225234 +S'overall: 14.5 x 12.2 cm (5 11/16 x 4 13/16 in.)\r\nframed: 24.1 x 22.2 x 3.2 cm (9 1/2 x 8 3/4 x 1 1/4 in.)' +p233769 +sg225236 +S'\noil on wood' +p233770 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00062/a0006290.jpg' +p233771 +sg225240 +g27 +sa(dp233772 +g225230 +S'Race Course at Longchamps' +p233773 +sg225232 +S'French 19th Century' +p233774 +sg225234 +S'overall: 32 x 49.2 x 2 cm (12 5/8 x 19 3/8 x 13/16 in.)\r\nframed: 42.9 x 59.7 x 3.5 cm (16 7/8 x 23 1/2 x 1 3/8 in.)' +p233775 +sg225236 +S'\noil on canvas' +p233776 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a10.jpg' +p233777 +sg225240 +g27 +sa(dp233778 +g225232 +S'French 19th Century' +p233779 +sg225240 +g27 +sg225234 +S'overall: 32.5 x 51.5 cm (12 13/16 x 20 1/4 in.)\r\nframed: 47.6 x 65.4 x 4.4 cm (18 3/4 x 25 3/4 x 1 3/4 in.)' +p233780 +sg225230 +S'Pont Neuf, Paris' +p233781 +sg225236 +S'\noil on wood' +p233782 +sa(dp233783 +g225230 +S'Roses in a Vase' +p233784 +sg225232 +S'French 19th Century' +p233785 +sg225234 +S'overall: 8.7 x 14.9 cm (3 7/16 x 5 7/8 in.)\r\nframed: 19.3 x 25.4 x 4.7 cm (7 5/8 x 10 x 1 7/8 in.)' +p233786 +sg225236 +S'\noil on wood' +p233787 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00105/a00105d4.jpg' +p233788 +sg225240 +g27 +sa(dp233789 +g225230 +S'Beach near Etretat' +p233790 +sg225232 +S'Jean-Baptiste-Camille Corot' +p233791 +sg225234 +S'oil on canvas' +p233792 +sg225236 +S'c. 1872' +p233793 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000db2.jpg' +p233794 +sg225240 +S'This painting is an oil sketch. Painted outdoors within a few hours, it was meant to record \n Corot\'s direct impression of the landscape. Its long, sweeping brushstrokes \n capture in shorthand the look and "feel" of light and weather. Such small \n works, never intended as finished paintings, were part of the normal practice \n of landscape artists. By referring to them later, a painter could re-create \n in his more elaborate studio paintings the freshness and immediacy of his \n initial observation. The outdoor sketch was like notes taken from nature, \n data to be transformed through the artist\'s imagination in the studio into \n finished, salable works.\n Corot and fellow landscape artists working in the forest of \n Fontainebleau were important influences on the impressionists, not only in \n their commitment to plein-air painting, but also in their adoption of a \n brighter palette. Corot, using a light-colored ground, suffused his \n paintings with a silvery light and poetic feel. \n \n ' +p233795 +sa(dp233796 +g225230 +S'Woman by the Seaside' +p233797 +sg225232 +S'French 19th Century' +p233798 +sg225234 +S'oil on wood' +p233799 +sg225236 +S'19th century' +p233800 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00105/a00105d5.jpg' +p233801 +sg225240 +g27 +sa(dp233802 +g225230 +S'Georgiana, Duchess of Devonshire' +p233803 +sg225232 +S'Gainsborough Dupont' +p233804 +sg225234 +S'oil on canvas' +p233805 +sg225236 +S'c. 1787/1796' +p233806 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f1e.jpg' +p233807 +sg225240 +g27 +sa(dp233808 +g225230 +S'William Pitt' +p233809 +sg225232 +S'Gainsborough Dupont' +p233810 +sg225234 +S'oil on board' +p233811 +sg225236 +S'1787/1796' +p233812 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00038/a0003858.jpg' +p233813 +sg225240 +g27 +sa(dp233814 +g225230 +S'Seashore with Fishermen' +p233815 +sg225232 +S'Thomas Gainsborough' +p233816 +sg225234 +S'oil on canvas' +p233817 +sg225236 +S'c. 1781/1782' +p233818 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a000073a.jpg' +p233819 +sg225240 +S"Gainsborough's landscapes are highly personal statements that evolved from ideas\nand images he developed in his studio, either directly on canvas or in scale models.\nIn this work he focused on the physical exertions of fishermen as they confront\nstrong winds and pounding surf. Even the massive cliff on the far side of the cove,\nits thrusting diagonal posed against the wind, seems to echo the efforts of the\nmen struggling to launch their boat into the waves.\n Gainsborough owned works by Dutch marine painters, and their influence is evident\nhere. His own free and suggestive painting technique, however, gives the scene a\nunique degree of freshness and spontaneity. He applied his paint in thin, translucent\nlayers that are accented by deft touches of impasto, particularly in the fishermen's\nclothing and on the white foam of the waves. A restrained palette of browns and\ncreams suggests the shore and rocks; gray-greens, gray-blues, and white highlights\ndescribe the sun-filled expanse of the sea, while the sky is colored with delicate\nhints of purple, blue, and pink.\n " +p233820 +sa(dp233821 +g225230 +S'Mrs. Richard Brinsley Sheridan' +p233822 +sg225232 +S'Gainsborough Dupont' +p233823 +sg225234 +S'oil on canvas' +p233824 +sg225236 +S'1787/1796' +p233825 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f1f.jpg' +p233826 +sg225240 +g27 +sa(dp233827 +g225230 +S'Mar\xc3\xada Teresa de Borb\xc3\xb3n y Vallabriga, later Condesa de Chinch\xc3\xb3n' +p233828 +sg225232 +S'Francisco de Goya' +p233829 +sg225234 +S'oil on canvas' +p233830 +sg225236 +S'1783' +p233831 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00005/a000057e.jpg' +p233832 +sg225240 +S'Although Goya is now best known for his innovative and incisive depictions of\nsuch themes as the excitement of the bullring and horrors of the Napoleonic wars,\nit was as a portraitist that he first gained fame among his countrymen. In 1783,\nGoya was called to Arenas de San Pedro by the Infante Don Luis, brother of Charles\nIII, to paint a family portrait. He also painted individual portraits of family\nmembers such as this one.\n Ingenuous but self-assured, the future countess wears the fashionable attire of\na lady of the Spanish court as she poses at the edge of a terrace. She gazes out\nat the viewer with an innocence very much in contrast with her adult costume and\nmature stance. In the style of earlier "grand-manner" portraiture, Goya may have\nmanipulated the setting to enhance the image of the diminutive sitter, perhaps adjusting\nthe scale of the parapet to her size and placing the wall close to her.\n This is one of four portraits by Goya of María Teresa, with whom he maintained a\nlifelong sympathetic relationship. One of the most tragic figures at the court of\nCharles IV, the countess was trapped in a humiliating marriage to the King\'s minister,\nManuel Godoy, arranged by the Queen, Maria Luisa, for her own duplicitous purposes.\n ' +p233833 +sa(dp233834 +g225232 +S'Leonid' +p233835 +sg225240 +g27 +sg225234 +S'oil on canvas' +p233836 +sg225230 +S'Derrynane Harbor, Ireland' +p233837 +sg225236 +S'1961' +p233838 +sa(dp233839 +g225230 +S'Race Horse and Trainer' +p233840 +sg225232 +S'Artist Information (' +p233841 +sg225234 +S'British, 1768 - 1835' +p233842 +sg225236 +S'(related artist)' +p233843 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00005/a0000530.jpg' +p233844 +sg225240 +g27 +sa(dp233845 +g225232 +S'Captain Edward H. Molyneux' +p233846 +sg225240 +g27 +sg225234 +S'oil on fiberboard' +p233847 +sg225230 +S'Artist on a Quay' +p233848 +sg225236 +S'1962/1964' +p233849 +sa(dp233850 +g225232 +S'Captain Edward H. Molyneux' +p233851 +sg225240 +g27 +sg225234 +S'oil on canvas' +p233852 +sg225230 +S'Chapel in Provence' +p233853 +sg225236 +S'1962/1964' +p233854 +sa(dp233855 +g225232 +S'Captain Edward H. Molyneux' +p233856 +sg225240 +g27 +sg225234 +S'oil on canvas' +p233857 +sg225230 +S'Chinese Statue of a Dog' +p233858 +sg225236 +S'1953' +p233859 +sa(dp233860 +g225232 +S'Captain Edward H. Molyneux' +p233861 +sg225240 +g27 +sg225234 +S'oil on canvas' +p233862 +sg225230 +S'Chinese Statue of a Bird' +p233863 +sg225236 +S'1953' +p233864 +sa(dp233865 +g225230 +S'Mrs. George Hill' +p233866 +sg225232 +S'Sir Henry Raeburn' +p233867 +sg225234 +S'oil on canvas' +p233868 +sg225236 +S'c. 1790/1800' +p233869 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f6c.jpg' +p233870 +sg225240 +g27 +sa(dp233871 +g225230 +S'Miss Davidson Reid' +p233872 +sg225232 +S'Sir Henry Raeburn' +p233873 +sg225234 +S', c. 1800/1806' +p233874 +sg225236 +S'\n' +p233875 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b0a.jpg' +p233876 +sg225240 +g27 +sa(dp233877 +g225230 +S"View of the Mall in Saint James's Park" +p233878 +sg225232 +S'Artist Information (' +p233879 +sg225234 +S'Italian, 1676 - 1729' +p233880 +sg225236 +S'(artist after)' +p233881 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000df/a000dfc1.jpg' +p233882 +sg225240 +g27 +sa(dp233883 +g225230 +S'Sir William Hamilton' +p233884 +sg225232 +S'George Romney' +p233885 +sg225234 +S'oil on canvas' +p233886 +sg225236 +S'1783-1784' +p233887 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a00004e7.jpg' +p233888 +sg225240 +g27 +sa(dp233889 +g225232 +S'Frits Thaulow' +p233890 +sg225240 +g27 +sg225234 +S'oil on wood' +p233891 +sg225230 +S'River Scene' +p233892 +sg225236 +S'unknown date\n' +p233893 +sa(dp233894 +g225230 +S'Rotterdam Ferry-Boat' +p233895 +sg225232 +S'Joseph Mallord William Turner' +p233896 +sg225234 +S'oil on canvas' +p233897 +sg225236 +S'1833' +p233898 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00005/a0000564.jpg' +p233899 +sg225240 +S'This seascape was exhibited in 1833 at the Royal Academy, where Turner \r\n taught as the professor of perspective. Conquering the problem of creating \r\n a believable sense of space across a featureless expanse of water, Turner \r\n anchored the carefully aligned design upon a small passenger ferry. From \r\n this foreground focus, a row of larger ships moves backward over the choppy \r\n waves on a diagonal line, generating a remarkable illusion of depth. The \r\n warship’s Dutch flags and the skyline of Rotterdam pay tribute to Turner’s \r\n predecessors, the marine painters of seventeenth-century Holland. In \r\n particular, the low horizon and cloud-swept vista derive from harbor scenes \r\n by \n ' +p233900 +sa(dp233901 +g225230 +S'Sheep' +p233902 +sg225232 +S'Nicolaes Pietersz Berchem' +p233903 +sg225234 +S'black and red chalk (possibly crayon)' +p233904 +sg225236 +S'unknown date\n' +p233905 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dac.jpg' +p233906 +sg225240 +g27 +sa(dp233907 +g225230 +S'Four Women at Trouville' +p233908 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p233909 +sg225234 +S'watercolor and graphite on laid paper' +p233910 +sg225236 +S'1865' +p233911 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022bc.jpg' +p233912 +sg225240 +g27 +sa(dp233913 +g225230 +S'Loading the Boats' +p233914 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p233915 +sg225234 +S'watercolor and graphite' +p233916 +sg225236 +S'c. 1875' +p233917 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005bc4.jpg' +p233918 +sg225240 +g27 +sa(dp233919 +g225230 +S'Seascape with Sailing Vessel' +p233920 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p233921 +sg225234 +S'watercolor and graphite' +p233922 +sg225236 +S'c. 1875' +p233923 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e83.jpg' +p233924 +sg225240 +g27 +sa(dp233925 +g225230 +S'Ships in Harbor' +p233926 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p233927 +sg225234 +S'watercolor and graphite' +p233928 +sg225236 +S'c. 1875' +p233929 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005bc7.jpg' +p233930 +sg225240 +g27 +sa(dp233931 +g225230 +S'Sun-Shades, Trouville' +p233932 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p233933 +sg225234 +S'watercolor and graphite' +p233934 +sg225236 +S'1869' +p233935 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006edc.jpg' +p233936 +sg225240 +g27 +sa(dp233937 +g225230 +S'Three Women at Trouville' +p233938 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p233939 +sg225234 +S'watercolor and graphite on laid paper' +p233940 +sg225236 +S'c. 1865' +p233941 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f0d.jpg' +p233942 +sg225240 +g27 +sa(dp233943 +g225230 +S'Child Seated on a Sofa' +p233944 +sg225232 +S'Mary Cassatt' +p233945 +sg225234 +S'graphite' +p233946 +sg225236 +S'c. 1883' +p233947 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0ab.jpg' +p233948 +sg225240 +g27 +sa(dp233949 +g225230 +S'Venice' +p233950 +sg225232 +S'Henri Edmond Cross' +p233951 +sg225234 +S'watercolor over black chalk' +p233952 +sg225236 +S'c. 1903' +p233953 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ebd.jpg' +p233954 +sg225240 +g27 +sa(dp233955 +g225230 +S'George Mills' +p233956 +sg225232 +S'John Downman' +p233957 +sg225234 +S'pastel with gray and brown wash on two overlapped sheets of laid paper joined at the top' +p233958 +sg225236 +S'1792' +p233959 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f8e.jpg' +p233960 +sg225240 +g27 +sa(dp233961 +g225230 +S'Mrs. George Mills' +p233962 +sg225232 +S'John Downman' +p233963 +sg225234 +S'charcoal and pastel on laid paper' +p233964 +sg225236 +S'1783' +p233965 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ecf.jpg' +p233966 +sg225240 +g27 +sa(dp233967 +g225230 +S'Portrait of a Woman in Profile' +p233968 +sg225232 +S'John Downman' +p233969 +sg225234 +S'black chalk and watercolor' +p233970 +sg225236 +S'1791' +p233971 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007214.jpg' +p233972 +sg225240 +g27 +sa(dp233973 +g225230 +S'Portrait of a Woman with a Blue Sash' +p233974 +sg225232 +S'John Downman' +p233975 +sg225234 +S'black chalk and watercolor' +p233976 +sg225236 +S'1791' +p233977 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a00071db.jpg' +p233978 +sg225240 +g27 +sa(dp233979 +g225232 +S'Raoul Dufy' +p233980 +sg225240 +g27 +sg225234 +S'watercolor' +p233981 +sg225230 +S'Garden at the Hotel Albert-1er, Nice' +p233982 +sg225236 +S'c. 1923' +p233983 +sa(dp233984 +g225230 +S'Woman Seated at a Table, Holding a Letter' +p233985 +sg225232 +S'Henry Edridge' +p233986 +sg225234 +S'watercolor over graphite' +p233987 +sg225236 +S'unknown date\n' +p233988 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007113.jpg' +p233989 +sg225240 +g27 +sa(dp233990 +g225230 +S'Two Children' +p233991 +sg225232 +S'Artist Information (' +p233992 +sg225234 +S'British, 1787 - 1819' +p233993 +sg225236 +S'(artist after)' +p233994 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c43.jpg' +p233995 +sg225240 +g27 +sa(dp233996 +g225230 +S'Portrait of a Man in a Military Uniform' +p233997 +sg225232 +S'French 18th Century' +p233998 +sg225234 +S'overall (oval): 19.3 x 15.9 cm (7 5/8 x 6 1/4 in.)' +p233999 +sg225236 +S'\nblack, blue, and red chalk heightened with white on laid paper' +p234000 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007211.jpg' +p234001 +sg225240 +g27 +sa(dp234002 +g225230 +S'Carriage with Driver and Groom: Autumn' +p234003 +sg225232 +S'Constantin Guys' +p234004 +sg225234 +S'pen and brown ink and watercolor' +p234005 +sg225236 +S'unknown date\n' +p234006 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00073/a00073a6.jpg' +p234007 +sg225240 +g27 +sa(dp234008 +g225230 +S'Carriage with Driver and Groom: Spring' +p234009 +sg225232 +S'Constantin Guys' +p234010 +sg225234 +S'pen and brown ink and watercolor' +p234011 +sg225236 +S'unknown date\n' +p234012 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00073/a00073a4.jpg' +p234013 +sg225240 +g27 +sa(dp234014 +g225230 +S"The Duchess of Kent's State Carriage" +p234015 +sg225232 +S'Constantin Guys' +p234016 +sg225234 +S'watercolor over graphite' +p234017 +sg225236 +S'unknown date\n' +p234018 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00073/a00073a0.jpg' +p234019 +sg225240 +g27 +sa(dp234020 +g225232 +S'John Lavalle' +p234021 +sg225240 +g27 +sg225234 +S'watercolor on paperboard' +p234022 +sg225230 +S'Agua from El Calvario, Antigua, Guatemala' +p234023 +sg225236 +S'1950' +p234024 +sa(dp234025 +g225232 +S'John Lavalle' +p234026 +sg225240 +g27 +sg225234 +S'watercolor on paperboard' +p234027 +sg225230 +S'Marble Mosque of Sultan Selim' +p234028 +sg225236 +S'1952' +p234029 +sa(dp234030 +g225230 +S'Three-Quarter Portrait of a Young Girl' +p234031 +sg225232 +S'Ambrose McEvoy' +p234032 +sg225234 +S'watercolor and graphite on paperboard' +p234033 +sg225236 +S'unknown date\n' +p234034 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006b4c.jpg' +p234035 +sg225240 +g27 +sa(dp234036 +g225230 +S"The Artist's Sister Edma Seated in a Park" +p234037 +sg225232 +S'Berthe Morisot' +p234038 +sg225234 +S'watercolor' +p234039 +sg225236 +S'1864' +p234040 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00026/a0002600.jpg' +p234041 +sg225240 +g27 +sa(dp234042 +g225230 +S"The Artist's Sister, Edma, with Her Daughter, Jeanne" +p234043 +sg225232 +S'Berthe Morisot' +p234044 +sg225234 +S'watercolor over graphite on laid paper' +p234045 +sg225236 +S'1872' +p234046 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00026/a0002601.jpg' +p234047 +sg225240 +g27 +sa(dp234048 +g225230 +S'Girl Seated' +p234049 +sg225232 +S'Berthe Morisot' +p234050 +sg225234 +S'watercolor' +p234051 +sg225236 +S'1894' +p234052 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a000700d.jpg' +p234053 +sg225240 +g27 +sa(dp234054 +g225230 +S'Landscape' +p234055 +sg225232 +S'Berthe Morisot' +p234056 +sg225234 +S'colored pencils' +p234057 +sg225236 +S'unknown date\n' +p234058 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00026/a0002602.jpg' +p234059 +sg225240 +g27 +sa(dp234060 +g225230 +S'Spring Landscape' +p234061 +sg225232 +S'Berthe Morisot' +p234062 +sg225234 +S'colored pencils and graphite' +p234063 +sg225236 +S'c. 1890/1891' +p234064 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00026/a0002603.jpg' +p234065 +sg225240 +g27 +sa(dp234066 +g225230 +S'Self-Portrait' +p234067 +sg225232 +S'Pablo Picasso' +p234068 +sg225234 +S'black chalk and watercolor on cream-colored wove paper' +p234069 +sg225236 +S'1901/1902' +p234070 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022be.jpg' +p234071 +sg225240 +g27 +sa(dp234072 +g225230 +S'Grove of Trees' +p234073 +sg225232 +S'Camille Pissarro' +p234074 +sg225234 +S'pen with brown and black ink, gray wash, and graphite on gray paper' +p234075 +sg225236 +S'1859' +p234076 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00073/a00073fe.jpg' +p234077 +sg225240 +g27 +sa(dp234078 +g225230 +S'Houses by a Road' +p234079 +sg225232 +S'Camille Pissarro' +p234080 +sg225234 +S'pen and brown ink with graphite on gray laid paper' +p234081 +sg225236 +S'1859' +p234082 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00073/a00073fd.jpg' +p234083 +sg225240 +g27 +sa(dp234084 +g225230 +S'Woman Working in a Garden' +p234085 +sg225232 +S'Camille Pissarro' +p234086 +sg225234 +S'watercolor over black chalk' +p234087 +sg225236 +S'unknown date\n' +p234088 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00026/a00026d5.jpg' +p234089 +sg225240 +g27 +sa(dp234090 +g225230 +S'Young Woman Standing' +p234091 +sg225232 +S'Auguste Renoir' +p234092 +sg225234 +S'black chalk with gray wash' +p234093 +sg225236 +S'c. 1880' +p234094 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007402.jpg' +p234095 +sg225240 +g27 +sa(dp234096 +g225230 +S'A Bridge and Campanile, Venice' +p234097 +sg225232 +S'John Singer Sargent' +p234098 +sg225234 +S'watercolor over black chalk' +p234099 +sg225236 +S'unknown date\n' +p234100 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f72.jpg' +p234101 +sg225240 +g27 +sa(dp234102 +g225230 +S'Camprodon, Spain' +p234103 +sg225232 +S'John Singer Sargent' +p234104 +sg225234 +S'watercolor with body color on wove paper' +p234105 +sg225236 +S'c. 1892' +p234106 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f73.jpg' +p234107 +sg225240 +g27 +sa(dp234108 +g225230 +S'Gondola Moorings on the Grand Canal' +p234109 +sg225232 +S'John Singer Sargent' +p234110 +sg225234 +S'watercolor over graphite' +p234111 +sg225236 +S'unknown date\n' +p234112 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a00009c5.jpg' +p234113 +sg225240 +g27 +sa(dp234114 +g225230 +S'The Library in Venice' +p234115 +sg225232 +S'John Singer Sargent' +p234116 +sg225234 +S'watercolor with white gouache over graphite' +p234117 +sg225236 +S'unknown date\n' +p234118 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a00009c6.jpg' +p234119 +sg225240 +g27 +sa(dp234120 +g225232 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p234121 +sg225240 +g27 +sg225234 +S'pen and black ink and watercolor over traces of black chalk' +p234122 +sg225230 +S'Still Life' +p234123 +sg225236 +S'unknown date\n' +p234124 +sa(dp234125 +g225232 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p234126 +sg225240 +g27 +sg225234 +S'oil paint and pen and black ink' +p234127 +sg225230 +S'Vase of Flowers' +p234128 +sg225236 +S'unknown date\n' +p234129 +sa(dp234130 +g225230 +S'Pont Neuf, Paris' +p234131 +sg225232 +S'Paul Signac' +p234132 +sg225234 +S'watercolor over black chalk on laid paper' +p234133 +sg225236 +S'unknown date\n' +p234134 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00028/a0002852.jpg' +p234135 +sg225240 +g27 +sa(dp234136 +g225230 +S'La Rochelle' +p234137 +sg225232 +S'Paul Signac' +p234138 +sg225234 +S'watercolor over black chalk on laid paper' +p234139 +sg225236 +S'1930' +p234140 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00073/a000730c.jpg' +p234141 +sg225240 +g27 +sa(dp234142 +g225232 +S'Van Day Truex' +p234143 +sg225240 +g27 +sg225234 +S'watercolor' +p234144 +sg225230 +S'French Village' +p234145 +sg225236 +S'unknown date\n' +p234146 +sa(dp234147 +g225232 +S'Van Day Truex' +p234148 +sg225240 +g27 +sg225234 +S'watercolor' +p234149 +sg225230 +S'Italian Mountain Village' +p234150 +sg225236 +S'1963' +p234151 +sa(dp234152 +g225230 +S'Woman in Bed' +p234153 +sg225232 +S'Edouard Vuillard' +p234154 +sg225234 +S'watercolor' +p234155 +sg225236 +S'unknown date\n' +p234156 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00037/a00037fe.jpg' +p234157 +sg225240 +g27 +sa(dp234158 +g225232 +S'Augustus John' +p234159 +sg225240 +g27 +sg225234 +S'oil on canvas' +p234160 +sg225230 +S'Mrs. Alexander H. McLanahan' +p234161 +sg225236 +S'c. 1927' +p234162 +sa(dp234163 +g225230 +S'East Indian Lotus (Nelumbo nucifera)' +p234164 +sg225232 +S'British 19th Century' +p234165 +sg225234 +S'overall: 42.2 x 33.4 cm (16 5/8 x 13 1/8 in.)' +p234166 +sg225236 +S'\ngouache on oriental paper' +p234167 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00069/a0006971.jpg' +p234168 +sg225240 +g27 +sa(dp234169 +g225230 +S'Two Plums' +p234170 +sg225232 +S'George Brookshaw' +p234171 +sg225234 +S'line and stipple engraving partially printed in color and finished by hand' +p234172 +sg225236 +S'published 1817' +p234173 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c8e.jpg' +p234174 +sg225240 +g27 +sa(dp234175 +g225230 +S'Three Peaches' +p234176 +sg225232 +S'George Brookshaw' +p234177 +sg225234 +S'line and stipple engraving partially printed in color and finished by hand' +p234178 +sg225236 +S'published 1817' +p234179 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c9c.jpg' +p234180 +sg225240 +g27 +sa(dp234181 +g225230 +S'Urocissa cucullata' +p234182 +sg225232 +S'Artist Information (' +p234183 +sg225234 +S'(artist)' +p234184 +sg225236 +S'\n' +p234185 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007aa8.jpg' +p234186 +sg225240 +g27 +sa(dp234187 +g225230 +S'Urocissa magnirostris' +p234188 +sg225232 +S'Artist Information (' +p234189 +sg225234 +S'(artist)' +p234190 +sg225236 +S'\n' +p234191 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007aa7.jpg' +p234192 +sg225240 +g27 +sa(dp234193 +g225230 +S'Trogan personatus' +p234194 +sg225232 +S'Artist Information (' +p234195 +sg225234 +S'(artist)' +p234196 +sg225236 +S'\n' +p234197 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007aa9.jpg' +p234198 +sg225240 +g27 +sa(dp234199 +g225230 +S'Trogan variegatus' +p234200 +sg225232 +S'Artist Information (' +p234201 +sg225234 +S'(artist)' +p234202 +sg225236 +S'\n' +p234203 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007aa5.jpg' +p234204 +sg225240 +g27 +sa(dp234205 +g225230 +S'Flamingos and Shells' +p234206 +sg225232 +S'Artist Information (' +p234207 +sg225234 +S'(artist after)' +p234208 +sg225236 +S'\n' +p234209 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dd4.jpg' +p234210 +sg225240 +g27 +sa(dp234211 +g225230 +S'Insects and Flowers' +p234212 +sg225232 +S'French 19th Century' +p234213 +sg225234 +S'Ailsa Mellon Bruce Collection' +p234214 +sg225236 +S'\nhand-colored (?) engraving' +p234215 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00090/a000900e.jpg' +p234216 +sg225240 +g27 +sa(dp234217 +g225230 +S'Echites splendens' +p234218 +sg225232 +S'Samuel Holden' +p234219 +sg225234 +S'hand-colored lithograph' +p234220 +sg225236 +S'unknown date\n' +p234221 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dd9.jpg' +p234222 +sg225240 +g27 +sa(dp234223 +g225230 +S'Lycaste Skinneri' +p234224 +sg225232 +S'Samuel Holden' +p234225 +sg225234 +S'hand-colored lithograph' +p234226 +sg225236 +S'unknown date\n' +p234227 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dec.jpg' +p234228 +sg225240 +g27 +sa(dp234229 +g225230 +S'Amandier de la Georgie' +p234230 +sg225232 +S'Artist Information (' +p234231 +sg225234 +S'French, active 19th century' +p234232 +sg225236 +S'(artist after)' +p234233 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dc3.jpg' +p234234 +sg225240 +g27 +sa(dp234235 +g225230 +S'Amandier de la Georgie' +p234236 +sg225232 +S'Artist Information (' +p234237 +sg225234 +S'French, active 19th century' +p234238 +sg225236 +S'(artist after)' +p234239 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dc5.jpg' +p234240 +sg225240 +g27 +sa(dp234241 +g225230 +S'Amandier - Pecher' +p234242 +sg225232 +S'Artist Information (' +p234243 +sg225234 +S'French, active 19th century' +p234244 +sg225236 +S'(artist after)' +p234245 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dc8.jpg' +p234246 +sg225240 +g27 +sa(dp234247 +g225230 +S'Amandier pistache' +p234248 +sg225232 +S'Artist Information (' +p234249 +sg225234 +S'French, active 19th century' +p234250 +sg225236 +S'(artist after)' +p234251 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dc4.jpg' +p234252 +sg225240 +g27 +sa(dp234253 +g225230 +S'Amandier a feuilles de saulle' +p234254 +sg225232 +S'Artist Information (' +p234255 +sg225234 +S'French, active 19th century' +p234256 +sg225236 +S'(artist after)' +p234257 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dc9.jpg' +p234258 +sg225240 +g27 +sa(dp234259 +g225230 +S"Amandier d'Italie" +p234260 +sg225232 +S'Artist Information (' +p234261 +sg225234 +S'French, active 19th century' +p234262 +sg225236 +S'(artist after)' +p234263 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dc6.jpg' +p234264 +sg225240 +g27 +sa(dp234265 +g225230 +S'Laelia Euspatha' +p234266 +sg225232 +S'Artist Information (' +p234267 +sg225234 +S'(artist after)' +p234268 +sg225236 +S'\n' +p234269 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00081/a00081e6.jpg' +p234270 +sg225240 +g27 +sa(dp234271 +g225230 +S'Laelia Anceps Stella & Barkeriana' +p234272 +sg225232 +S'Artist Information (' +p234273 +sg225234 +S'(artist after)' +p234274 +sg225236 +S'\n' +p234275 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00081/a00081e2.jpg' +p234276 +sg225240 +g27 +sa(dp234277 +g225230 +S'Dendrobium (Hybridium) Venus and Dendrobium (Hybridium) Cassiope' +p234278 +sg225232 +S'Artist Information (' +p234279 +sg225234 +S'(artist after)' +p234280 +sg225236 +S'\n' +p234281 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00081/a00081e3.jpg' +p234282 +sg225240 +g27 +sa(dp234283 +g225230 +S'Dendrobium Leechianum' +p234284 +sg225232 +S'Artist Information (' +p234285 +sg225234 +S'(artist after)' +p234286 +sg225236 +S'\n' +p234287 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00081/a00081e4.jpg' +p234288 +sg225240 +g27 +sa(dp234289 +g225230 +S'Laelia Elegans Schilleriana' +p234290 +sg225232 +S'Artist Information (' +p234291 +sg225234 +S'(artist after)' +p234292 +sg225236 +S'\n' +p234293 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00081/a00081e5.jpg' +p234294 +sg225240 +g27 +sa(dp234295 +g225230 +S'Cattleya Mendelii Quorndon House Var.' +p234296 +sg225232 +S'Artist Information (' +p234297 +sg225234 +S'(artist after)' +p234298 +sg225236 +S'\n' +p234299 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00081/a00081e0.jpg' +p234300 +sg225240 +g27 +sa(dp234301 +g225230 +S'Cattleya Rex' +p234302 +sg225232 +S'Artist Information (' +p234303 +sg225234 +S'(artist after)' +p234304 +sg225236 +S'\n' +p234305 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00081/a00081e1.jpg' +p234306 +sg225240 +g27 +sa(dp234307 +g225230 +S'Cattleya Rochellensis' +p234308 +sg225232 +S'Artist Information (' +p234309 +sg225234 +S'(artist after)' +p234310 +sg225236 +S'\n' +p234311 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00081/a00081df.jpg' +p234312 +sg225240 +g27 +sa(dp234313 +g225230 +S'Ailsa Mellon Bruce' +p234314 +sg225232 +S'Philip Alexius de Laszlo' +p234315 +sg225234 +S'oil on canvas' +p234316 +sg225236 +S'1926' +p234317 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f45.jpg' +p234318 +sg225240 +S'Ailsa Mellon Bruce\n The Hungarian-born painter Philip Alexius László de Lombos gained international acclaim for just such fashionable images as Ailsa Mellon Bruce\'s elegant portrait, done in the year of her wedding.\n ' +p234319 +sa(dp234320 +g225230 +S'The Raising of Tabitha' +p234321 +sg225232 +S'Netherlandish 15th Century' +p234322 +sg225234 +S'overall: 156.2 x 138.2 cm (61 1/2 x 54 7/16 in.)' +p234323 +sg225236 +S'\ntapestry: undyed wool warp, dyed wool and silk weft' +p234324 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a000650d.jpg' +p234325 +sg225240 +g27 +sa(dp234326 +g225230 +S'The Vision of the Centurion Cornelius' +p234327 +sg225232 +S'Netherlandish 15th Century' +p234328 +sg225234 +S'overall: 154 x 123.2 cm (60 5/8 x 48 1/2 in.)' +p234329 +sg225236 +S'\ntapestry: undyed wool warp, dyed wool and silk weft' +p234330 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a000650e.jpg' +p234331 +sg225240 +g27 +sa(dp234332 +g225230 +S'Coromandel Screen' +p234333 +sg225232 +S'Chinese Qing Dynasty' +p234334 +sg225234 +S'overall (each of 12 panels): 266.7 x 49.9 cm (105 x 19 5/8 in.)' +p234335 +sg225236 +S'\ncarved and painted lacquer on wood' +p234336 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004e/a0004efe.jpg' +p234337 +sg225240 +g27 +sa(dp234338 +g225230 +S'The Four Cardinal Virtues: Prudence' +p234339 +sg225232 +S'Netherlandish 16th Century' +p234340 +sg225234 +S'overall: 207 x 66 cm (81 1/2 x 26 in.)' +p234341 +sg225236 +S'\nundyed wool warp, dyed wool and dyed silk' +p234342 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a00099d4.jpg' +p234343 +sg225240 +g27 +sa(dp234344 +g225230 +S'The Four Cardinal Virtues: Temperance' +p234345 +sg225232 +S'Netherlandish 16th Century' +p234346 +sg225234 +S'overall: 207 x 66 cm (81 1/2 x 26 in.)' +p234347 +sg225236 +S'\nundyed wool warp, dyed wool and dyed silk' +p234348 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a00099d3.jpg' +p234349 +sg225240 +g27 +sa(dp234350 +g225230 +S'The Four Cardinal Virtues: Justice' +p234351 +sg225232 +S'Netherlandish 16th Century' +p234352 +sg225234 +S'overall: 207 x 66 cm (81 1/2 x 26 in.)' +p234353 +sg225236 +S'\nundyed wool warp, dyed wool and dyed silk' +p234354 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a00099d1.jpg' +p234355 +sg225240 +g27 +sa(dp234356 +g225230 +S'The Four Cardinal Virtues: Fortitude' +p234357 +sg225232 +S'Netherlandish 16th Century' +p234358 +sg225234 +S'overall: 207 x 66 cm (81 1/2 x 26 in.)' +p234359 +sg225236 +S'\nundyed wool warp, dyed wool and dyed silk' +p234360 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a00099d2.jpg' +p234361 +sg225240 +g27 +sa(dp234362 +g225230 +S'Beta Kappa' +p234363 +sg225232 +S'Morris Louis' +p234364 +sg225234 +S'acrylic on canvas' +p234365 +sg225236 +S'1961' +p234366 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a000014f.jpg' +p234367 +sg225240 +g27 +sa(dp234368 +g225232 +S'John Sloan' +p234369 +sg225240 +g27 +sg225234 +S'graphite on tracing paper' +p234370 +sg225230 +S'Study for "The City from Greenwich Village," I' +p234371 +sg225236 +S'c. 1922' +p234372 +sa(dp234373 +g225230 +S'Study for "The City from Greenwich Village," II' +p234374 +sg225232 +S'John Sloan' +p234375 +sg225234 +S'graphite' +p234376 +sg225236 +S'c. 1922' +p234377 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a00009cd.jpg' +p234378 +sg225240 +g27 +sa(dp234379 +g225232 +S'John Sloan' +p234380 +sg225240 +g27 +sg225234 +S'red colored pencil with touches of graphite' +p234381 +sg225230 +S'Study for "The City from Greenwich Village," III' +p234382 +sg225236 +S'c. 1922' +p234383 +sa(dp234384 +g225230 +S'Stairway Landing' +p234385 +sg225232 +S'Lowell Nesbitt' +p234386 +sg225234 +S'oil on canvas' +p234387 +sg225236 +S'1969' +p234388 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000176.jpg' +p234389 +sg225240 +g27 +sa(dp234390 +g225230 +S'Landscape No. 15 from "Liber Veritatis"' +p234391 +sg225232 +S'Artist Information (' +p234392 +sg225234 +S'(artist after)' +p234393 +sg225236 +S'\n' +p234394 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a00077d9.jpg' +p234395 +sg225240 +g27 +sa(dp234396 +g225230 +S'The Blue Heron (Ardea coerulea)' +p234397 +sg225232 +S'Mark Catesby' +p234398 +sg225234 +S'hand-colored etching' +p234399 +sg225236 +S'published 1731-1743' +p234400 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a0007801.jpg' +p234401 +sg225240 +g27 +sa(dp234402 +g225230 +S'Caprimulgus europaeus (Nightjar)' +p234403 +sg225232 +S'Artist Information (' +p234404 +sg225234 +S'(artist)' +p234405 +sg225236 +S'\n' +p234406 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007aae.jpg' +p234407 +sg225240 +g27 +sa(dp234408 +g225230 +S'Malacoturnix superciliosus (Mountain Quail)' +p234409 +sg225232 +S'Artist Information (' +p234410 +sg225234 +S'(artist)' +p234411 +sg225236 +S'\n' +p234412 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007aaf.jpg' +p234413 +sg225240 +g27 +sa(dp234414 +g225230 +S'Barnacle Goose (Bernicla Leucopsis)' +p234415 +sg225232 +S'Artist Information (' +p234416 +sg225234 +S'(artist)' +p234417 +sg225236 +S'\n' +p234418 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007aa4.jpg' +p234419 +sg225240 +g27 +sa(dp234420 +g225230 +S'Phasianus colchicus (Ring-necked Pheasant)' +p234421 +sg225232 +S'Artist Information (' +p234422 +sg225234 +S'(artist)' +p234423 +sg225236 +S'\n' +p234424 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007ab5.jpg' +p234425 +sg225240 +g27 +sa(dp234426 +g225230 +S'Topaza pyra (Fairy Topaz)' +p234427 +sg225232 +S'Artist Information (' +p234428 +sg225234 +S'(artist)' +p234429 +sg225236 +S'\n' +p234430 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007ab3.jpg' +p234431 +sg225240 +g27 +sa(dp234432 +g225230 +S'Spathura peruana (Peruvian Racket-Tail)' +p234433 +sg225232 +S'Artist Information (' +p234434 +sg225234 +S'(artist)' +p234435 +sg225236 +S'\n' +p234436 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007ab0.jpg' +p234437 +sg225240 +g27 +sa(dp234438 +g225230 +S'Eriocnemis vestitus (Glowing Puff-Leg)' +p234439 +sg225232 +S'Artist Information (' +p234440 +sg225234 +S'(artist)' +p234441 +sg225236 +S'\n' +p234442 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007ab2.jpg' +p234443 +sg225240 +g27 +sa(dp234444 +g225230 +S'Hylocharis lactea (Sapphire-breasted Emerald)' +p234445 +sg225232 +S'Artist Information (' +p234446 +sg225234 +S'(artist)' +p234447 +sg225236 +S'\n' +p234448 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007ab4.jpg' +p234449 +sg225240 +g27 +sa(dp234450 +g225230 +S'Parra Sinensis (Pheasant-Tailed Jacana)' +p234451 +sg225232 +S'Elizabeth Gould' +p234452 +sg225234 +S'hand-colored lithograph' +p234453 +sg225236 +S'unknown date\n' +p234454 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007aaa.jpg' +p234455 +sg225240 +g27 +sa(dp234456 +g225230 +S'Carpodacus erythrinus (Common Rose Finch)' +p234457 +sg225232 +S'Artist Information (' +p234458 +sg225234 +S'(artist)' +p234459 +sg225236 +S'\n' +p234460 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007ab1.jpg' +p234461 +sg225240 +g27 +sa(dp234462 +g225230 +S'Amsterdam Street Scene' +p234463 +sg225232 +S'Adrianus Eversen' +p234464 +sg225234 +S'oil on wood' +p234465 +sg225236 +S'unknown date\n' +p234466 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00038/a0003808.jpg' +p234467 +sg225240 +g27 +sa(dp234468 +g225230 +S'Mount Katahdin, Maine' +p234469 +sg225232 +S'Marsden Hartley' +p234470 +sg225234 +S'oil on hardboard' +p234471 +sg225236 +S'1942' +p234472 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000e0.jpg' +p234473 +sg225240 +g27 +sa(dp234474 +g225232 +S'John Hultberg' +p234475 +sg225240 +g27 +sg225234 +S'oil on canvas' +p234476 +sg225230 +S'The Island' +p234477 +sg225236 +S'1957' +p234478 +sa(dp234479 +g225232 +S'Etienne Reo' +p234480 +sg225240 +g27 +sg225234 +S'color etching' +p234481 +sg225230 +S'Conference' +p234482 +sg225236 +S'unknown date\n' +p234483 +sa(dp234484 +g225232 +S'Michiko Arima' +p234485 +sg225240 +g27 +sg225234 +S'color woodcut' +p234486 +sg225230 +S'Stage Setting' +p234487 +sg225236 +S'unknown date\n' +p234488 +sa(dp234489 +g225232 +S'David Alfaro Siqueiros' +p234490 +sg225240 +g27 +sg225234 +S'oil on hardboard' +p234491 +sg225230 +S'Self-Portrait' +p234492 +sg225236 +S'1948' +p234493 +sa(dp234494 +g225230 +S'Eve' +p234495 +sg225232 +S'Paul Gauguin' +p234496 +sg225234 +S'glazed ceramic' +p234497 +sg225236 +S'1890' +p234498 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00024/a0002440.jpg' +p234499 +sg225240 +g27 +sa(dp234500 +g225230 +S'The Aero' +p234501 +sg225232 +S'Marsden Hartley' +p234502 +sg225234 +S'oil on canvas' +p234503 +sg225236 +S'1914' +p234504 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000e1.jpg' +p234505 +sg225240 +g27 +sa(dp234506 +g225230 +S'Disparate conocido (Well-Known Folly)' +p234507 +sg225232 +S'Francisco de Goya' +p234508 +sg225234 +S'etching and burnished aquatint' +p234509 +sg225236 +S'in or after 1816' +p234510 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00057/a00057fd.jpg' +p234511 +sg225240 +g27 +sa(dp234512 +g225230 +S'Disparate puntual (Sure Folly)' +p234513 +sg225232 +S'Francisco de Goya' +p234514 +sg225234 +S'etching, aquatint and (drypoint?)' +p234515 +sg225236 +S'in or after 1816' +p234516 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00058/a0005808.jpg' +p234517 +sg225240 +g27 +sa(dp234518 +g225230 +S'Landscape with the Temptation of Christ' +p234519 +sg225232 +S'Artist Information (' +p234520 +sg225234 +S'(artist after)' +p234521 +sg225236 +S'\n' +p234522 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d055.jpg' +p234523 +sg225240 +g27 +sa(dp234524 +g225230 +S'Roxana Atwater Wentworth' +p234525 +sg225232 +S'George Peter Alexander Healy' +p234526 +sg225234 +S'oil on canvas' +p234527 +sg225236 +S'1876' +p234528 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000eb.jpg' +p234529 +sg225240 +g27 +sa(dp234530 +g225230 +S'Benjamin Tappan' +p234531 +sg225232 +S'Gilbert Stuart' +p234532 +sg225234 +S'oil on wood' +p234533 +sg225236 +S'1814' +p234534 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000251.jpg' +p234535 +sg225240 +g27 +sa(dp234536 +g225230 +S'Sarah Homes Tappan (Mrs. Benjamin Tappan)' +p234537 +sg225232 +S'Gilbert Stuart' +p234538 +sg225234 +S'oil on wood' +p234539 +sg225236 +S'1814' +p234540 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000252.jpg' +p234541 +sg225240 +g27 +sa(dp234542 +g225230 +S'Antony Valabr\xc3\xa8gue' +p234543 +sg225232 +S'Paul C\xc3\xa9zanne' +p234544 +sg225234 +S'oil on canvas' +p234545 +sg225236 +S'1866' +p234546 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006ad.jpg' +p234547 +sg225240 +S'The poet and art historian Antony Valabrègue,\r\nwho grew up with Cézanne in\r\nAix-en-Provence, sat for the young artist\r\nseveral times in the 1860s. Cézanne,\r\nworking diligently to find his artistic voice\r\nin the first decade of his career, often prevailed\r\nupon friends and relatives (including\r\nhis father) to act as models in his\r\nstudio on the family estate. The format\r\nCézanne chose for Valabrègue\xe2\x80\x99s likeness—a three-quarter-length figure with face\r\nturned slightly to the side, and a plain\r\nbackdrop—was fairly conventional: it had\r\nbeen employed in portraiture since the\r\nRenaissance. But he executed this traditional\r\nsubject in a wholly radical manner,\r\neschewing the precise delineation of form\r\n(as seen especially along the edges of the\r\ncoat, where black pigment spills onto the\r\ngray of the background). Even more strikingly,\r\nhe used a palette knife to apply thick\r\nlayers of pigment.\n Gustave Courbet, whose work Cézanne\r\nadmired on his sojourns in Paris, had\r\nbeen painting with a palette knife since the\r\n1850s. But the technique was still highly\r\nunorthodox when Cézanne adopted it in\r\n1866 to create a dramatic series of still lifes\r\nand portraits. A blunt instrument normally\r\nused to mix paint, the palette knife delivers\r\nbroad strokes of color that result in a heavily\r\nimpastoed surface. Courbet\xe2\x80\x99s rough-hewn\r\nstyle had shocked mid-nineteenth-century\r\nsensibilities, but Cézanne pursued a still more ferocious, even crude effect, a style\r\nthe artist himself termed \n The intentional coarseness of this early\r\nstyle contrasted directly with the polished\r\nperfection of tightly painted canvases then\r\nin favor with the public and especially with\r\njuries of the Salon. Cézanne signed Valabrègue\xe2\x80\x99s\r\nportrait prominently and submitted\r\nit to the Salon of 1866 with the anticipation\r\nthat it would be denied entrance,\r\nperhaps keeping in mind the example of\r\nCourbet, whose defiance of the art establishment\r\nhad brought him notoriety and\r\nmade him a leader of the avant-garde. One\r\nfriend wrote about Cézanne\xe2\x80\x99s eagerness to\r\nbe rejected, stating that "the painters of his\r\nacquaintance are preparing an ovation in\r\nhis honor."\n (Text by Margaret Doyle, \n Notes\n ' +p234548 +sa(dp234549 +g225230 +S'Shooting Star' +p234550 +sg225232 +S'Joan Mir\xc3\xb3' +p234551 +sg225234 +S'oil on canvas' +p234552 +sg225236 +S'1938' +p234553 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dd8.jpg' +p234554 +sg225240 +g27 +sa(dp234555 +g225230 +S'Abstract Painting, No. 34' +p234556 +sg225232 +S'Ad Reinhardt' +p234557 +sg225234 +S'oil on canvas' +p234558 +sg225236 +S'1964' +p234559 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001f3.jpg' +p234560 +sg225240 +g27 +sa(dp234561 +g225232 +S'Bridget Riley' +p234562 +sg225240 +g27 +sg225234 +S'oil on canvas' +p234563 +sg225230 +S'Balm' +p234564 +sg225236 +S'1964' +p234565 +sa(dp234566 +g225232 +S'Artist Information (' +p234567 +sg225240 +g27 +sg225234 +S'(artist)' +p234568 +sg225230 +S'The Good Samaritan' +p234569 +sg225236 +S'\n' +p234570 +sa(dp234571 +g225230 +S'The Pool of Bethesda' +p234572 +sg225232 +S'Artist Information (' +p234573 +sg225234 +S'(artist)' +p234574 +sg225236 +S'\n' +p234575 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a000775c.jpg' +p234576 +sg225240 +g27 +sa(dp234577 +g225230 +S'The Empty Saddle' +p234578 +sg225232 +S'Henry Merwin Shrady' +p234579 +sg225234 +S'bronze' +p234580 +sg225236 +S'model March/December 1900, cast January 1901' +p234581 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a00016a9.jpg' +p234582 +sg225240 +g27 +sa(dp234583 +g225230 +S'Political Drama' +p234584 +sg225232 +S'Robert Delaunay' +p234585 +sg225234 +S'oil and collage on cardboard' +p234586 +sg225236 +S'1914' +p234587 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dcf.jpg' +p234588 +sg225240 +S"Robert Delaunay had little artistic training beyond an apprenticeship to a stage-set designer. He studied the color theories of the French chemist Michel-Eugène Chevreul and how the neo-impressionists applied them to painting. He is best known for his Eiffel Tower series of 1909–1913, his Windows of 1912–1914, and his Circular Forms of 1913, which paved the way for \n In 1912, the poet-critic Guillaume Apollinaire praised Delaunay for his painting \n What Delaunay had to say of his tondo \n The source is a newspaper illustration depicting a murder. The caption to the illustration reads: "Tragic epilogue....The Wife of the French Finance Minister Joseph Cailloux Shoots Dead Gaston Calmette the Editor of \n Delaunay clearly recognized the power of concentrically arranged colored forms, something that would be fully exploited again only some 50 years later in the "target" paintings of Jasper Johns and Kenneth Noland and the concentric stripe paintings of Frank Stella. However, unlike Delaunay in \n 1. Robert Delaunay's summaries from discussion groups he held in 1938 and 1939, cited in Arthur A. Cohen, ed., \n 2. The man's jacket and head, the woman's jacket and muff, and the four quadrants of the central circle, now faded, are all cut-and-pasted paper elements.\n " +p234589 +sa(dp234590 +g225232 +S'Chaim Soutine' +p234591 +sg225240 +g27 +sg225234 +S'oil on canvas' +p234592 +sg225230 +S'Pastry Chef' +p234593 +sg225236 +S'c. 1923' +p234594 +sa(dp234595 +g225230 +S'Winter Valley' +p234596 +sg225232 +S'Lamar Dodd' +p234597 +sg225234 +S'oil on canvas' +p234598 +sg225236 +S'1944' +p234599 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a000007e.jpg' +p234600 +sg225240 +g27 +sa(dp234601 +g225232 +S'Jean Delpech' +p234602 +sg225240 +g27 +sg225234 +S'color screen print on Arches' +p234603 +sg225230 +S'Nuit Bleu Marine' +p234604 +sg225236 +S'1970' +p234605 +sa(dp234606 +g225232 +S'Jean Delpech' +p234607 +sg225240 +g27 +sg225234 +S'color screen print on Arches' +p234608 +sg225230 +S'Hermes, Enee, Jason, Ulysse' +p234609 +sg225236 +S'unknown date\n' +p234610 +sa(dp234611 +g225232 +S'Jean Delpech' +p234612 +sg225240 +g27 +sg225234 +S'color screen print on Arches' +p234613 +sg225230 +S'Neptune, Atlantique, Ocean Indien, Pacifique' +p234614 +sg225236 +S'unknown date\n' +p234615 +sa(dp234616 +g225232 +S'Jean Delpech' +p234617 +sg225240 +g27 +sg225234 +S'color screen print on Arches' +p234618 +sg225230 +S'Amphitrite, Mediterranee, Mer Boreale, Mer Australe' +p234619 +sg225236 +S'unknown date\n' +p234620 +sa(dp234621 +g225230 +S'The Grand Dauphin' +p234622 +sg225232 +S'Artist Information (' +p234623 +sg225234 +S'Dutch, c. 1640 - 1694' +p234624 +sg225236 +S'(artist after)' +p234625 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a0b.jpg' +p234626 +sg225240 +g27 +sa(dp234627 +g225230 +S'Louis XIV' +p234628 +sg225232 +S'Artist Information (' +p234629 +sg225234 +S'Dutch, c. 1640 - 1694' +p234630 +sg225236 +S'(artist after)' +p234631 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c30.jpg' +p234632 +sg225240 +g27 +sa(dp234633 +g225230 +S'The Penitent Magdalen' +p234634 +sg225232 +S'Nicolas Legendre' +p234635 +sg225234 +S'bronze' +p234636 +sg225236 +S'model 1664, cast probably before 1709' +p234637 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005ef9.jpg' +p234638 +sg225240 +g27 +sa(dp234639 +g225230 +S'The Last Judgment Triptych' +p234640 +sg225232 +S'Artist Information (' +p234641 +sg225234 +S'Flemish, c. 1510 - 1570' +p234642 +sg225236 +S'(publisher)' +p234643 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d051.jpg' +p234644 +sg225240 +g27 +sa(dp234645 +g225232 +S'Ronald Leroy Kowalke' +p234646 +sg225240 +g27 +sg225234 +S'etching' +p234647 +sg225230 +S'Canto IV: The Bard Began' +p234648 +sg225236 +S'1970' +p234649 +sa(dp234650 +g225232 +S'Ronald Leroy Kowalke' +p234651 +sg225240 +g27 +sg225234 +S'portfolio with 10 etchings' +p234652 +sg225230 +S"Dante's Inferno" +p234653 +sg225236 +S'1970' +p234654 +sa(dp234655 +g225232 +S'Ronald Leroy Kowalke' +p234656 +sg225240 +g27 +sg225234 +S'etching' +p234657 +sg225230 +S'Canto V: Lovers' +p234658 +sg225236 +S'1970' +p234659 +sa(dp234660 +g225232 +S'Ronald Leroy Kowalke' +p234661 +sg225240 +g27 +sg225234 +S'etching' +p234662 +sg225230 +S'Canto XIII: Harpies' +p234663 +sg225236 +S'1970' +p234664 +sa(dp234665 +g225232 +S'Ronald Leroy Kowalke' +p234666 +sg225240 +g27 +sg225234 +S'etching' +p234667 +sg225230 +S'Canto XIV: Rain' +p234668 +sg225236 +S'1970' +p234669 +sa(dp234670 +g225232 +S'Ronald Leroy Kowalke' +p234671 +sg225240 +g27 +sg225234 +S'etching' +p234672 +sg225230 +S"Canto XIX: Sinner's Feet" +p234673 +sg225236 +S'1970' +p234674 +sa(dp234675 +g225232 +S'Ronald Leroy Kowalke' +p234676 +sg225240 +g27 +sg225234 +S'etching' +p234677 +sg225230 +S'Canto XXII: The Pit' +p234678 +sg225236 +S'1970' +p234679 +sa(dp234680 +g225232 +S'Ronald Leroy Kowalke' +p234681 +sg225240 +g27 +sg225234 +S'etching' +p234682 +sg225230 +S'Canto XXIV: Shades' +p234683 +sg225236 +S'1970' +p234684 +sa(dp234685 +g225232 +S'Ronald Leroy Kowalke' +p234686 +sg225240 +g27 +sg225234 +S'etching' +p234687 +sg225230 +S'Canto XXVIII: The Heretics' +p234688 +sg225236 +S'1970' +p234689 +sa(dp234690 +g225232 +S'Ronald Leroy Kowalke' +p234691 +sg225240 +g27 +sg225234 +S'etching' +p234692 +sg225230 +S'Canto XXVIX: Spirits' +p234693 +sg225236 +S'1970' +p234694 +sa(dp234695 +g225232 +S'Ronald Leroy Kowalke' +p234696 +sg225240 +g27 +sg225234 +S'etching' +p234697 +sg225230 +S'Canto XXXII: Poor Brethern' +p234698 +sg225236 +S'1970' +p234699 +sa(dp234700 +g225230 +S'Small Worlds I' +p234701 +sg225232 +S'Wassily Kandinsky' +p234702 +sg225234 +S'4-color lithograph' +p234703 +sg225236 +S'1922' +p234704 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00017/a000177d.jpg' +p234705 +sg225240 +g27 +sa(dp234706 +g225232 +S'Wassily Kandinsky' +p234707 +sg225240 +g27 +sg225234 +S'4-color lithograph' +p234708 +sg225230 +S'Small Worlds II' +p234709 +sg225236 +S'1922' +p234710 +sa(dp234711 +g225232 +S'Wassily Kandinsky' +p234712 +sg225240 +g27 +sg225234 +S'4-color lithograph' +p234713 +sg225230 +S'Small Worlds III' +p234714 +sg225236 +S'1922' +p234715 +sa(dp234716 +g225232 +S'Wassily Kandinsky' +p234717 +sg225240 +g27 +sg225234 +S'color lithograph' +p234718 +sg225230 +S'Small Worlds IV' +p234719 +sg225236 +S'1922' +p234720 +sa(dp234721 +g225232 +S'Wassily Kandinsky' +p234722 +sg225240 +g27 +sg225234 +S'4-color lithograph' +p234723 +sg225230 +S'Small Worlds V' +p234724 +sg225236 +S'1922' +p234725 +sa(dp234726 +g225232 +S'Wassily Kandinsky' +p234727 +sg225240 +g27 +sg225234 +S'woodcut' +p234728 +sg225230 +S'Small Worlds VI' +p234729 +sg225236 +S'1922' +p234730 +sa(dp234731 +g225230 +S'Small Worlds VII' +p234732 +sg225232 +S'Wassily Kandinsky' +p234733 +sg225234 +S'lithograph in yellow, blue, and black' +p234734 +sg225236 +S'1922' +p234735 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a000164d.jpg' +p234736 +sg225240 +g27 +sa(dp234737 +g225232 +S'Wassily Kandinsky' +p234738 +sg225240 +g27 +sg225234 +S'woodcut' +p234739 +sg225230 +S'Small Worlds VIII' +p234740 +sg225236 +S'1922' +p234741 +sa(dp234742 +g225232 +S'Wassily Kandinsky' +p234743 +sg225240 +g27 +sg225234 +S'drypoint' +p234744 +sg225230 +S'Small Worlds IX' +p234745 +sg225236 +S'1922' +p234746 +sa(dp234747 +g225232 +S'Wassily Kandinsky' +p234748 +sg225240 +g27 +sg225234 +S'drypoint' +p234749 +sg225230 +S'Small Worlds X' +p234750 +sg225236 +S'1922' +p234751 +sa(dp234752 +g225232 +S'Wassily Kandinsky' +p234753 +sg225240 +g27 +sg225234 +S'drypoint' +p234754 +sg225230 +S'Small Worlds XI' +p234755 +sg225236 +S'1922' +p234756 +sa(dp234757 +g225232 +S'Wassily Kandinsky' +p234758 +sg225240 +g27 +sg225234 +S'drypoint' +p234759 +sg225230 +S'Small Worlds XII' +p234760 +sg225236 +S'1922' +p234761 +sa(dp234762 +g225230 +S'The Great American Nude' +p234763 +sg225232 +S'Tom Wesselmann' +p234764 +sg225234 +S'color screenptint on shaped vinyl with die-cut cardboard mat' +p234765 +sg225236 +S'1966' +p234766 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bd6.jpg' +p234767 +sg225240 +g27 +sa(dp234768 +g225232 +S'Otto Dix' +p234769 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p234770 +sg225230 +S'Tote vor der Stellung bei Tahure' +p234771 +sg225236 +S'1924' +p234772 +sa(dp234773 +g225232 +S'Andy Warhol' +p234774 +sg225240 +g27 +sg225234 +S'screenprint in silver on wove paper' +p234775 +sg225230 +S'Jackie I' +p234776 +sg225236 +S'1966' +p234777 +sa(dp234778 +g225230 +S'Title Page' +p234779 +sg225232 +S'Hubert Robert' +p234780 +sg225234 +S'etching' +p234781 +sg225236 +S'unknown date\n' +p234782 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c78.jpg' +p234783 +sg225240 +g27 +sa(dp234784 +g225230 +S'The Sarcophagus' +p234785 +sg225232 +S'Hubert Robert' +p234786 +sg225234 +S'etching' +p234787 +sg225236 +S'unknown date\n' +p234788 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c7b.jpg' +p234789 +sg225240 +g27 +sa(dp234790 +g225230 +S'The Statue before the Ruins' +p234791 +sg225232 +S'Hubert Robert' +p234792 +sg225234 +S'etching' +p234793 +sg225236 +S'unknown date\n' +p234794 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c7f.jpg' +p234795 +sg225240 +g27 +sa(dp234796 +g225230 +S'Steps to the Four Landmarks' +p234797 +sg225232 +S'Hubert Robert' +p234798 +sg225234 +S'etching' +p234799 +sg225236 +S'unknown date\n' +p234800 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c7a.jpg' +p234801 +sg225240 +g27 +sa(dp234802 +g225230 +S'The Ancient Temple' +p234803 +sg225232 +S'Hubert Robert' +p234804 +sg225234 +S'etching' +p234805 +sg225236 +S'unknown date\n' +p234806 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c83.jpg' +p234807 +sg225240 +g27 +sa(dp234808 +g225230 +S'The Portrait Bust' +p234809 +sg225232 +S'Hubert Robert' +p234810 +sg225234 +S'etching' +p234811 +sg225236 +S'unknown date\n' +p234812 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c7e.jpg' +p234813 +sg225240 +g27 +sa(dp234814 +g225230 +S'The Well' +p234815 +sg225232 +S'Hubert Robert' +p234816 +sg225234 +S'etching' +p234817 +sg225236 +S'unknown date\n' +p234818 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c7c.jpg' +p234819 +sg225240 +g27 +sa(dp234820 +g225230 +S'The Triumphal Arch' +p234821 +sg225232 +S'Hubert Robert' +p234822 +sg225234 +S'etching' +p234823 +sg225236 +S'unknown date\n' +p234824 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c80.jpg' +p234825 +sg225240 +g27 +sa(dp234826 +g225230 +S'The Post' +p234827 +sg225232 +S'Hubert Robert' +p234828 +sg225234 +S'etching' +p234829 +sg225236 +S'unknown date\n' +p234830 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c7d.jpg' +p234831 +sg225240 +g27 +sa(dp234832 +g225230 +S'The Ancient Gallery' +p234833 +sg225232 +S'Hubert Robert' +p234834 +sg225234 +S'etching' +p234835 +sg225236 +S'unknown date\n' +p234836 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c79.jpg' +p234837 +sg225240 +g27 +sa(dp234838 +g225230 +S'Family Group' +p234839 +sg225232 +S'William Glackens' +p234840 +sg225234 +S'oil on canvas' +p234841 +sg225236 +S'1910/1911' +p234842 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000cb.jpg' +p234843 +sg225240 +g27 +sa(dp234844 +g225230 +S'Bizarre' +p234845 +sg225232 +S'Allen Tucker' +p234846 +sg225234 +S'oil on canvas' +p234847 +sg225236 +S'1928' +p234848 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a000027e.jpg' +p234849 +sg225240 +g27 +sa(dp234850 +g225230 +S'Madison Square, Snow' +p234851 +sg225232 +S'Allen Tucker' +p234852 +sg225234 +S'oil on canvas' +p234853 +sg225236 +S'1904' +p234854 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a000027f.jpg' +p234855 +sg225240 +g27 +sa(dp234856 +g225230 +S'The Triumph of David' +p234857 +sg225232 +S'Artist Information (' +p234858 +sg225234 +S'Dutch, 1649 - 1712' +p234859 +sg225236 +S'(related artist)' +p234860 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f04.jpg' +p234861 +sg225240 +g27 +sa(dp234862 +g225230 +S'Antique Subject' +p234863 +sg225232 +S'Artist Information (' +p234864 +sg225234 +S'Swiss, 1741 - 1807' +p234865 +sg225236 +S'(related artist)' +p234866 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a1e.jpg' +p234867 +sg225240 +g27 +sa(dp234868 +g225230 +S'Saint Eustace' +p234869 +sg225232 +S'Albrecht D\xc3\xbcrer' +p234870 +sg225234 +S'engraving on laid paper' +p234871 +sg225236 +S'c. 1500/1501' +p234872 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a000163a.jpg' +p234873 +sg225240 +g27 +sa(dp234874 +g225230 +S'The Voyage of Life: Childhood' +p234875 +sg225232 +S'Thomas Cole' +p234876 +sg225234 +S'oil on canvas' +p234877 +sg225236 +S'1842' +p234878 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000053.jpg' +p234879 +sg225240 +S"Cole's renowned four–part series traces the journey of an archetypal hero along the "River of Life." Confidently assuming control of his destiny and oblivious to the dangers that await him, the voyager boldly strives to reach an aerial castle, emblematic of the daydreams of "Youth" and its aspirations for glory and fame. As the traveler approaches his goal, the ever–more–turbulent stream deviates from its course and relentlessly carries him toward the next picture in the series, where\r\nnature's fury, evil demons, and self–doubt will threaten his very existence. Only prayer, Cole suggests, can save the voyager from a dark and tragic fate.\n From the innocence of childhood, to the flush of youthful overconfidence, through the trials and tribulations of middle age, to the hero's triumphant salvation, \n " +p234880 +sa(dp234881 +g225230 +S'The Voyage of Life: Youth' +p234882 +sg225232 +S'Thomas Cole' +p234883 +sg225234 +S'oil on canvas' +p234884 +sg225236 +S'1842' +p234885 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000054.jpg' +p234886 +sg225240 +S'Cole\'s renowned four-part series traces the journey of an archetypal hero along\nthe "River of Life." Confidently assuming control of his destiny and oblivious to\nthe dangers that await him, the voyager boldly strives to reach an aerial castle,\nemblematic of the daydreams of "Youth" and its aspirations for glory and fame. As\nthe traveler approaches his goal, the ever-more-turbulent stream deviates from its\ncourse and relentlessly carries him toward the next picture in the series, where\nnature\'s fury, evil demons, and self-doubt will threaten his very existence. Only\nprayer, Cole suggests, can save the voyager from a dark and tragic fate.\n From the innocence of childhood, to the flush of youthful overconfidence, through\nthe trials and tribulations of middle age, to the hero\'s triumphant salvation, \n ' +p234887 +sa(dp234888 +g225230 +S'The Voyage of Life: Manhood' +p234889 +sg225232 +S'Thomas Cole' +p234890 +sg225234 +S'oil on canvas' +p234891 +sg225236 +S'1842' +p234892 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000055.jpg' +p234893 +sg225240 +S'Cole\'s renowned four-part series traces the journey of an archetypal hero along\nthe "River of Life." Confidently assuming control of his destiny and oblivious to\nthe dangers that await him, the voyager boldly strives to reach an aerial castle,\nemblematic of the daydreams of "Youth" and its aspirations for glory and fame. As\nthe traveler approaches his goal, the ever-more-turbulent stream deviates from its\ncourse and relentlessly carries him toward the next picture in the series, where\nnature\'s fury, evil demons, and self-doubt will threaten his very existence. Only\nprayer, Cole suggests, can save the voyager from a dark and tragic fate.\n From the innocence of childhood, to the flush of youthful overconfidence, through\nthe trials and tribulations of middle age, to the hero\'s triumphant salvation, \n ' +p234894 +sa(dp234895 +g225230 +S'The Voyage of Life: Old Age' +p234896 +sg225232 +S'Thomas Cole' +p234897 +sg225234 +S'oil on canvas' +p234898 +sg225236 +S'1842' +p234899 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000056.jpg' +p234900 +sg225240 +S'Cole\'s renowned four-part series traces the journey of an archetypal hero along\nthe "River of Life." Confidently assuming control of his destiny and oblivious to\nthe dangers that await him, the voyager boldly strives to reach an aerial castle,\nemblematic of the daydreams of "Youth" and its aspirations for glory and fame. As\nthe traveler approaches his goal, the ever-more-turbulent stream deviates from its\ncourse and relentlessly carries him toward the next picture in the series, where\nnature\'s fury, evil demons, and self-doubt will threaten his very existence. Only\nprayer, Cole suggests, can save the voyager from a dark and tragic fate.\n From the innocence of childhood, to the flush of youthful overconfidence, through\nthe trials and tribulations of middle age, to the hero\'s triumphant salvation, \n ' +p234901 +sa(dp234902 +g225230 +S'Head of a Man' +p234903 +sg225232 +S'Domenico Campagnola' +p234904 +sg225234 +S'pen and brown ink on laid paper' +p234905 +sg225236 +S'unknown date\n' +p234906 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074fb.jpg' +p234907 +sg225240 +g27 +sa(dp234908 +g225230 +S'Head of a Man' +p234909 +sg225232 +S'Domenico Campagnola' +p234910 +sg225234 +S'pen and brown ink on laid paper' +p234911 +sg225236 +S'unknown date\n' +p234912 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074fc.jpg' +p234913 +sg225240 +g27 +sa(dp234914 +g225230 +S'Creusa Carrying the Gods of Troy' +p234915 +sg225232 +S'Simon Vouet' +p234916 +sg225234 +S'black chalk heightened with white chalk on blue laid paper, with later framing line in brown ink' +p234917 +sg225236 +S'c. 1635' +p234918 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00037/a00037fd.jpg' +p234919 +sg225240 +g27 +sa(dp234920 +g225230 +S'Deborah Kip, Wife of Sir Balthasar Gerbier, and Her Children' +p234921 +sg225232 +S'Artist Information (' +p234922 +sg225234 +S'(painter)' +p234923 +sg225236 +S'\n' +p234924 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d7d.jpg' +p234925 +sg225240 +S"A man of great integrity, probity, and discretion, Rubens was often entrusted\nwith delicate diplomatic missions which could be accomplished under cover of his\nactivities as an artist. So it was that in an effort to secure peace between Spain\nand England he spent, in 1629, several months in London as the guest of Balthasar\nGerbier, himself a diplomatic agent, artist, and advisor to the Duke of Buckingham.\nGerbier's wife, Deborah Kip, was the daughter of a well-to-do member of the Dutch\ncommunity in London.\n Deborah Kip and four of her children are shown on a terrace elaborately appointed\nwith entwined caryatids who support a bower, a setting that indicates the status\nof the family group. Further richness is evident in Deborah Kip's elegantly embroidered\nskirt and lustrous blouse and cap. Perched on the back of her chair is a blue-gray\nparrot, a symbol of aristocratic wealth and an allusion, in Christian art, to the\nperfect mother, the Virgin Mary. At the rear George holds back a curtain; Elizabeth,\ndressed entirely in black, is serene and composed; and Susan rests her arms on her\nmother's knee and tilts her head, returning our gaze. Despite the elegant setting\nand the bravura brushwork, Rubens controlled the composition so that we are not\nallowed to lose sight of the tender relationship between a mother and her children.\n " +p234926 +sa(dp234927 +g225230 +S'Standing Youth with a Branch' +p234928 +sg225232 +S'German 14th Century' +p234929 +sg225234 +S'overall: 13 x 5.4 cm (5 1/8 x 2 1/8 in.)' +p234930 +sg225236 +S'\npen and black ink with orange tempera on vellum' +p234931 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00033/a00033d6.jpg' +p234932 +sg225240 +g27 +sa(dp234933 +g225230 +S'Seated Girl with a Dog' +p234934 +sg225232 +S'German 14th Century' +p234935 +sg225234 +S'overall: 13.4 x 6.4 cm (5 1/4 x 2 1/2 in.)' +p234936 +sg225236 +S'\npen and black ink with orange tempera on vellum' +p234937 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00033/a00033d7.jpg' +p234938 +sg225240 +g27 +sa(dp234939 +g225230 +S'Simeon the Patriarch' +p234940 +sg225232 +S'Maerten van Heemskerck' +p234941 +sg225234 +S'pen and brown ink' +p234942 +sg225236 +S'1549' +p234943 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d6a.jpg' +p234944 +sg225240 +g27 +sa(dp234945 +g225230 +S'Napoleon Views His Rising Star' +p234946 +sg225232 +S'Alphonse Marie Mucha' +p234947 +sg225234 +S'charcoal' +p234948 +sg225236 +S'unknown date\n' +p234949 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a56.jpg' +p234950 +sg225240 +g27 +sa(dp234951 +g225230 +S'Market Scene' +p234952 +sg225232 +S'Netherlandish 17th Century' +p234953 +sg225234 +S'overall: 12.9 x 15.9 cm (5 1/16 x 6 1/4 in.)' +p234954 +sg225236 +S'\nblack and gray wash on laid paper' +p234955 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e97.jpg' +p234956 +sg225240 +g27 +sa(dp234957 +g225230 +S'The Annunciation' +p234958 +sg225232 +S'German 16th Century' +p234959 +sg225234 +S'Overall: 15.2 x 13.2 cm (6 x 5 3/16 in.)\r\nsupport: 22.3 x 17.3 cm (8 3/4 x 6 13/16 in.)' +p234960 +sg225236 +S'\npen and brown ink with red-brown wash heightened with white on red-brown prepared laid paper' +p234961 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a0007948.jpg' +p234962 +sg225240 +g27 +sa(dp234963 +g225230 +S'Landscape (after Paul Bril)' +p234964 +sg225232 +S'Herman van Swanevelt' +p234965 +sg225234 +S'pen and brown ink with brown and gray wash on laid paper' +p234966 +sg225236 +S'unknown date\n' +p234967 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00037/a00037f2.jpg' +p234968 +sg225240 +g27 +sa(dp234969 +g225230 +S'Angels and Putti in the Clouds' +p234970 +sg225232 +S'Federico Zuccaro' +p234971 +sg225234 +S'red and black chalk over graphite?, incised with stylus, on laid paper squared with red chalk' +p234972 +sg225236 +S'1566' +p234973 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00038/a0003800.jpg' +p234974 +sg225240 +g27 +sa(dp234975 +g225230 +S'Study of a Man Walking towards the Left Holding a Staff' +p234976 +sg225232 +S'Girolamo Siciolante' +p234977 +sg225234 +S'pen and brown ink and brown wash heightened with white over red chalk on blue paper' +p234978 +sg225236 +S'unknown date\n' +p234979 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a0007580.jpg' +p234980 +sg225240 +g27 +sa(dp234981 +g225230 +S'The Triumph of Christ' +p234982 +sg225232 +S'Giovanni Battista della Rovere' +p234983 +sg225234 +S'pen and brown ink with brown wash and touches of black chalk, heightened with white, on laid paper' +p234984 +sg225236 +S'unknown date\n' +p234985 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074a4.jpg' +p234986 +sg225240 +g27 +sa(dp234987 +g225230 +S'Landscape' +p234988 +sg225232 +S'Salvator Rosa' +p234989 +sg225234 +S'pen and brown ink with gray wash on laid paper' +p234990 +sg225236 +S'mid 1660s' +p234991 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007480.jpg' +p234992 +sg225240 +g27 +sa(dp234993 +g225230 +S'Baccio Bandinelli' +p234994 +sg225232 +S'Nicol\xc3\xb2 della Casa' +p234995 +sg225234 +S'engraving' +p234996 +sg225236 +S'unknown date\n' +p234997 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008388.jpg' +p234998 +sg225240 +g27 +sa(dp234999 +g225230 +S'The Two Hinnies' +p235000 +sg225232 +S'Jan Both' +p235001 +sg225234 +S'etching' +p235002 +sg225236 +S'unknown date\n' +p235003 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4e1.jpg' +p235004 +sg225240 +g27 +sa(dp235005 +g225230 +S'The Large Tree' +p235006 +sg225232 +S'Jan Both' +p235007 +sg225234 +S'etching' +p235008 +sg225236 +S'unknown date\n' +p235009 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4d6.jpg' +p235010 +sg225240 +g27 +sa(dp235011 +g225230 +S'The Ox-Cart: View between Ancona and Sinigaglia' +p235012 +sg225232 +S'Jan Both' +p235013 +sg225234 +S'etching' +p235014 +sg225236 +S'unknown date\n' +p235015 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4d4.jpg' +p235016 +sg225240 +g27 +sa(dp235017 +g225230 +S'The Woman on the Hinny' +p235018 +sg225232 +S'Jan Both' +p235019 +sg225234 +S'etching' +p235020 +sg225236 +S'unknown date\n' +p235021 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4d2.jpg' +p235022 +sg225240 +g27 +sa(dp235023 +g225230 +S'Auch ein Todtentanz: Title Page' +p235024 +sg225232 +S'Alfred Rethel' +p235025 +sg225234 +S'typeset printing' +p235026 +sg225236 +S'1849' +p235027 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3c5.jpg' +p235028 +sg225240 +g27 +sa(dp235029 +g225230 +S'Auch ein Todtentanz III' +p235030 +sg225232 +S'Alfred Rethel' +p235031 +sg225234 +S'wood engraving' +p235032 +sg225236 +S'1849' +p235033 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3c8.jpg' +p235034 +sg225240 +g27 +sa(dp235035 +g225230 +S'Auch ein Todtentanz I' +p235036 +sg225232 +S'Alfred Rethel' +p235037 +sg225234 +S'wood engraving' +p235038 +sg225236 +S'1849' +p235039 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005dce.jpg' +p235040 +sg225240 +g27 +sa(dp235041 +g225230 +S'Auch ein Todtentanz V' +p235042 +sg225232 +S'Alfred Rethel' +p235043 +sg225234 +S'wood engraving' +p235044 +sg225236 +S'1849' +p235045 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3ca.jpg' +p235046 +sg225240 +g27 +sa(dp235047 +g225230 +S'Auch ein Todtentanz VI' +p235048 +sg225232 +S'Alfred Rethel' +p235049 +sg225234 +S'wood engraving' +p235050 +sg225236 +S'1849' +p235051 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3cb.jpg' +p235052 +sg225240 +g27 +sa(dp235053 +g225230 +S'Auch ein Todtentanz IV' +p235054 +sg225232 +S'Alfred Rethel' +p235055 +sg225234 +S'wood engraving' +p235056 +sg225236 +S'1849' +p235057 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3c9.jpg' +p235058 +sg225240 +g27 +sa(dp235059 +g225230 +S'Auch ein Todtentanz II' +p235060 +sg225232 +S'Alfred Rethel' +p235061 +sg225234 +S'wood engraving' +p235062 +sg225236 +S'1849' +p235063 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3c7.jpg' +p235064 +sg225240 +g27 +sa(dp235065 +g225230 +S'Auch ein Todtentanz: Text Page' +p235066 +sg225232 +S'Alfred Rethel' +p235067 +sg225234 +S'typeset printing' +p235068 +sg225236 +S'1849' +p235069 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3c6.jpg' +p235070 +sg225240 +g27 +sa(dp235071 +g225232 +S'Jacques Villon' +p235072 +sg225240 +g27 +sg225234 +S'etching' +p235073 +sg225230 +S'\xc3\x89mile Nicolle (Portrait du peintre-graveur \xc3\x89mile Nicolle)' +p235074 +sg225236 +S'1891' +p235075 +sa(dp235076 +g225232 +S'Jacques Villon' +p235077 +sg225240 +g27 +sg225234 +S'aquatint retouched with pastel' +p235078 +sg225230 +S'The Fishermen (Les p\xc3\xaacheurs)' +p235079 +sg225236 +S'1906' +p235080 +sa(dp235081 +g225230 +S'Organ Grinder' +p235082 +sg225232 +S'Adriaen van Ostade' +p235083 +sg225234 +S'etching' +p235084 +sg225236 +S'1647' +p235085 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d28c.jpg' +p235086 +sg225240 +g27 +sa(dp235087 +g225230 +S'Study of a Seated Man' +p235088 +sg225232 +S'John Singer Sargent' +p235089 +sg225234 +S'lithograph' +p235090 +sg225236 +S'1895' +p235091 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b84.jpg' +p235092 +sg225240 +g27 +sa(dp235093 +g225230 +S'Dying Horse (Cheval mourant)' +p235094 +sg225232 +S'Pablo Picasso' +p235095 +sg225234 +S'etching' +p235096 +sg225236 +S'1931' +p235097 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee92.jpg' +p235098 +sg225240 +g27 +sa(dp235099 +g225230 +S'Imaginary View of Venice' +p235100 +sg225232 +S'Canaletto' +p235101 +sg225234 +S'etching' +p235102 +sg225236 +S'1741' +p235103 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbec.jpg' +p235104 +sg225240 +g27 +sa(dp235105 +g225230 +S'Rodin' +p235106 +sg225232 +S'Eug\xc3\xa8ne Carri\xc3\xa8re' +p235107 +sg225234 +S'lithograph' +p235108 +sg225236 +S'1897' +p235109 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f14.jpg' +p235110 +sg225240 +g27 +sa(dp235111 +g225232 +S'K\xc3\xa4the Kollwitz' +p235112 +sg225240 +g27 +sg225234 +S'woodcut' +p235113 +sg225230 +S'Small Male Head with Hands I (Kleiner Mannerkopf mit Handen I)' +p235114 +sg225236 +S'1922' +p235115 +sa(dp235116 +g225232 +S'K\xc3\xa4the Kollwitz' +p235117 +sg225240 +g27 +sg225234 +S'woodcut reworked with gouache' +p235118 +sg225230 +S'Small Male Head with Hands II (Kleiner Mannerkopf mit Handen II)' +p235119 +sg225236 +S'1922' +p235120 +sa(dp235121 +g225232 +S'K\xc3\xa4the Kollwitz' +p235122 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p235123 +sg225230 +S'Female Nude (Frauenakt)' +p235124 +sg225236 +S'1910' +p235125 +sa(dp235126 +g225232 +S'K\xc3\xa4the Kollwitz' +p235127 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p235128 +sg225230 +S'Female Nude (Frauenakt)' +p235129 +sg225236 +S'1910' +p235130 +sa(dp235131 +g225230 +S'Puma (looking left)' +p235132 +sg225232 +S'William Zorach' +p235133 +sg225234 +S'bronze' +p235134 +sg225236 +S'1948' +p235135 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a00016b8.jpg' +p235136 +sg225240 +g27 +sa(dp235137 +g225230 +S'Puma (looking right)' +p235138 +sg225232 +S'William Zorach' +p235139 +sg225234 +S'bronze' +p235140 +sg225236 +S'1948' +p235141 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a00016b9.jpg' +p235142 +sg225240 +g27 +sa(dp235143 +g225232 +S'Max Oppenheimer' +p235144 +sg225240 +g27 +sg225234 +S'drypoint' +p235145 +sg225230 +S'The Dance of Salome' +p235146 +sg225236 +S'unknown date\n' +p235147 +sa(dp235148 +g225232 +S'Max Beckmann' +p235149 +sg225240 +g27 +sg225234 +S'lithograph' +p235150 +sg225230 +S'Swimming at Lake Tegel (Tegeler Freibad)' +p235151 +sg225236 +S'1911' +p235152 +sa(dp235153 +g225230 +S'Bacchus with Diana and Minerva' +p235154 +sg225232 +S'Pierre Brebiette' +p235155 +sg225234 +S'etching' +p235156 +sg225236 +S'unknown date\n' +p235157 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005ac3.jpg' +p235158 +sg225240 +g27 +sa(dp235159 +g225232 +S'Artist Information (' +p235160 +sg225240 +g27 +sg225234 +S'(artist after)' +p235161 +sg225230 +S'Fountain of Hercules in Augsburg' +p235162 +sg225236 +S'\n' +p235163 +sa(dp235164 +g225230 +S'Hercules Killing the Hydra' +p235165 +sg225232 +S'Artist Information (' +p235166 +sg225234 +S'(artist after)' +p235167 +sg225236 +S'\n' +p235168 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d61d.jpg' +p235169 +sg225240 +g27 +sa(dp235170 +g225230 +S'The Adoration of the Shepherds' +p235171 +sg225232 +S'Artist Information (' +p235172 +sg225234 +S'(artist after)' +p235173 +sg225236 +S'\n' +p235174 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8ca.jpg' +p235175 +sg225240 +g27 +sa(dp235176 +g225230 +S'The Crowned Virgin in a Niche' +p235177 +sg225232 +S'Geoffroy Dumo\xc3\xbbtier' +p235178 +sg225234 +S'etching' +p235179 +sg225236 +S'1543' +p235180 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008307.jpg' +p235181 +sg225240 +g27 +sa(dp235182 +g225230 +S'The Death of Adonis' +p235183 +sg225232 +S'Artist Information (' +p235184 +sg225234 +S'(artist after)' +p235185 +sg225236 +S'\n' +p235186 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008474.jpg' +p235187 +sg225240 +g27 +sa(dp235188 +g225230 +S'Square in Front of an Inn' +p235189 +sg225232 +S'Anthonie Waterloo' +p235190 +sg225234 +S'etching' +p235191 +sg225236 +S'unknown date\n' +p235192 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4a0.jpg' +p235193 +sg225240 +g27 +sa(dp235194 +g225230 +S'The Holy Family' +p235195 +sg225232 +S'Abraham Bloemaert' +p235196 +sg225234 +S'chiaroscuro woodcut' +p235197 +sg225236 +S'unknown date\n' +p235198 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd0a.jpg' +p235199 +sg225240 +g27 +sa(dp235200 +g225230 +S'Bust of a Young Man' +p235201 +sg225232 +S'Artist Information (' +p235202 +sg225234 +S'(artist after)' +p235203 +sg225236 +S'\n' +p235204 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d56b.jpg' +p235205 +sg225240 +g27 +sa(dp235206 +g225230 +S'Cacus Robbing the Cattle of Hercules' +p235207 +sg225232 +S'Jacob Jordaens' +p235208 +sg225234 +S'etching' +p235209 +sg225236 +S'probably 1652' +p235210 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d529.jpg' +p235211 +sg225240 +g27 +sa(dp235212 +g225230 +S'Adam and Eve' +p235213 +sg225232 +S'Simone Cantarini' +p235214 +sg225234 +S'etching' +p235215 +sg225236 +S'unknown date\n' +p235216 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c97c.jpg' +p235217 +sg225240 +g27 +sa(dp235218 +g225230 +S'The Rest on the Flight into Egypt' +p235219 +sg225232 +S'Simone Cantarini' +p235220 +sg225234 +S'etching' +p235221 +sg225236 +S'unknown date\n' +p235222 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9df.jpg' +p235223 +sg225240 +g27 +sa(dp235224 +g225230 +S'The Rest on the Flight into Egypt' +p235225 +sg225232 +S'Simone Cantarini' +p235226 +sg225234 +S'etching' +p235227 +sg225236 +S'unknown date\n' +p235228 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9de.jpg' +p235229 +sg225240 +g27 +sa(dp235230 +g225230 +S'The Rest on the Flight into Egypt' +p235231 +sg225232 +S'Simone Cantarini' +p235232 +sg225234 +S'etching' +p235233 +sg225236 +S'unknown date\n' +p235234 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c97a.jpg' +p235235 +sg225240 +g27 +sa(dp235236 +g225230 +S'The Rest on the Flight into Egypt' +p235237 +sg225232 +S'Simone Cantarini' +p235238 +sg225234 +S'etching' +p235239 +sg225236 +S'unknown date\n' +p235240 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c97b.jpg' +p235241 +sg225240 +g27 +sa(dp235242 +g225230 +S'The Rest on the Flight into Egypt' +p235243 +sg225232 +S'Simone Cantarini' +p235244 +sg225234 +S'etching' +p235245 +sg225236 +S'unknown date\n' +p235246 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c977.jpg' +p235247 +sg225240 +g27 +sa(dp235248 +g225230 +S'The Rest on the Flight into Egypt' +p235249 +sg225232 +S'Simone Cantarini' +p235250 +sg225234 +S'etching' +p235251 +sg225236 +S'unknown date\n' +p235252 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c979.jpg' +p235253 +sg225240 +g27 +sa(dp235254 +g225230 +S'The Rest on the Flight into Egypt' +p235255 +sg225232 +S'Simone Cantarini' +p235256 +sg225234 +S'etching' +p235257 +sg225236 +S'unknown date\n' +p235258 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9dc.jpg' +p235259 +sg225240 +g27 +sa(dp235260 +g225230 +S'The Rest on the Flight into Egypt' +p235261 +sg225232 +S'Simone Cantarini' +p235262 +sg225234 +S'etching' +p235263 +sg225236 +S'unknown date\n' +p235264 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c972.jpg' +p235265 +sg225240 +g27 +sa(dp235266 +g225230 +S'The Rest on the Flight into Egypt' +p235267 +sg225232 +S'Simone Cantarini' +p235268 +sg225234 +S'etching' +p235269 +sg225236 +S'unknown date\n' +p235270 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c973.jpg' +p235271 +sg225240 +g27 +sa(dp235272 +g225230 +S'The Holy Family' +p235273 +sg225232 +S'Simone Cantarini' +p235274 +sg225234 +S'etching' +p235275 +sg225236 +S'unknown date\n' +p235276 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c976.jpg' +p235277 +sg225240 +g27 +sa(dp235278 +g225230 +S'The Holy Family' +p235279 +sg225232 +S'Simone Cantarini' +p235280 +sg225234 +S'etching' +p235281 +sg225236 +S'unknown date\n' +p235282 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c975.jpg' +p235283 +sg225240 +g27 +sa(dp235284 +g225230 +S'The Holy Family' +p235285 +sg225232 +S'Simone Cantarini' +p235286 +sg225234 +S'etching' +p235287 +sg225236 +S'unknown date\n' +p235288 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c978.jpg' +p235289 +sg225240 +g27 +sa(dp235290 +g225230 +S'The Holy Family' +p235291 +sg225232 +S'Simone Cantarini' +p235292 +sg225234 +S'etching' +p235293 +sg225236 +S'unknown date\n' +p235294 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c971.jpg' +p235295 +sg225240 +g27 +sa(dp235296 +g225230 +S'The Holy Family' +p235297 +sg225232 +S'Simone Cantarini' +p235298 +sg225234 +S'etching' +p235299 +sg225236 +S'unknown date\n' +p235300 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c970.jpg' +p235301 +sg225240 +g27 +sa(dp235302 +g225230 +S'The Holy Family' +p235303 +sg225232 +S'Simone Cantarini' +p235304 +sg225234 +S'etching' +p235305 +sg225236 +S'unknown date\n' +p235306 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c96f.jpg' +p235307 +sg225240 +g27 +sa(dp235308 +g225230 +S'The Virgin and Child with Saint John' +p235309 +sg225232 +S'Simone Cantarini' +p235310 +sg225234 +S'etching' +p235311 +sg225236 +S'unknown date\n' +p235312 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c96e.jpg' +p235313 +sg225240 +g27 +sa(dp235314 +g225230 +S'The Virgin and Child with Saint John' +p235315 +sg225232 +S'Simone Cantarini' +p235316 +sg225234 +S'etching' +p235317 +sg225236 +S'unknown date\n' +p235318 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c96d.jpg' +p235319 +sg225240 +g27 +sa(dp235320 +g225230 +S'The Virgin and Child' +p235321 +sg225232 +S'Simone Cantarini' +p235322 +sg225234 +S'etching' +p235323 +sg225236 +S'unknown date\n' +p235324 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c986.jpg' +p235325 +sg225240 +g27 +sa(dp235326 +g225230 +S'The Virgin and Child' +p235327 +sg225232 +S'Simone Cantarini' +p235328 +sg225234 +S'etching in gray' +p235329 +sg225236 +S'unknown date\n' +p235330 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c987.jpg' +p235331 +sg225240 +g27 +sa(dp235332 +g225230 +S'The Virgin and Child with a Bird' +p235333 +sg225232 +S'Simone Cantarini' +p235334 +sg225234 +S'etching' +p235335 +sg225236 +S'unknown date\n' +p235336 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c97f.jpg' +p235337 +sg225240 +g27 +sa(dp235338 +g225230 +S'The Virgin and Child with a Bird' +p235339 +sg225232 +S'Simone Cantarini' +p235340 +sg225234 +S'etching' +p235341 +sg225236 +S'unknown date\n' +p235342 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c980.jpg' +p235343 +sg225240 +g27 +sa(dp235344 +g225230 +S'The Virgin and Child' +p235345 +sg225232 +S'Simone Cantarini' +p235346 +sg225234 +S'etching' +p235347 +sg225236 +S'unknown date\n' +p235348 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c989.jpg' +p235349 +sg225240 +g27 +sa(dp235350 +g225230 +S'The Carrying of the Cross' +p235351 +sg225232 +S'Simone Cantarini' +p235352 +sg225234 +S'etching' +p235353 +sg225236 +S'unknown date\n' +p235354 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c982.jpg' +p235355 +sg225240 +g27 +sa(dp235356 +g225230 +S'The Coronation of the Virgin' +p235357 +sg225232 +S'Simone Cantarini' +p235358 +sg225234 +S'etching' +p235359 +sg225236 +S'unknown date\n' +p235360 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c981.jpg' +p235361 +sg225240 +g27 +sa(dp235362 +g225230 +S'The Infant Saint John' +p235363 +sg225232 +S'Simone Cantarini' +p235364 +sg225234 +S'etching' +p235365 +sg225236 +S'unknown date\n' +p235366 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c98a.jpg' +p235367 +sg225240 +g27 +sa(dp235368 +g225230 +S'Saint John the Baptist in the Desert' +p235369 +sg225232 +S'Simone Cantarini' +p235370 +sg225234 +S'etching' +p235371 +sg225236 +S'unknown date\n' +p235372 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c97e.jpg' +p235373 +sg225240 +g27 +sa(dp235374 +g225230 +S'Saint Sebastian' +p235375 +sg225232 +S'Simone Cantarini' +p235376 +sg225234 +S'etching' +p235377 +sg225236 +S'unknown date\n' +p235378 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c983.jpg' +p235379 +sg225240 +g27 +sa(dp235380 +g225230 +S'The Large Saint Anthony of Padua' +p235381 +sg225232 +S'Simone Cantarini' +p235382 +sg225234 +S'etching with burin work' +p235383 +sg225236 +S'unknown date\n' +p235384 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9e4.jpg' +p235385 +sg225240 +g27 +sa(dp235386 +g225230 +S'The Small Saint Anthony of Padua' +p235387 +sg225232 +S'Simone Cantarini' +p235388 +sg225234 +S'etching' +p235389 +sg225236 +S'unknown date\n' +p235390 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c98b.jpg' +p235391 +sg225240 +g27 +sa(dp235392 +g225230 +S'Saint Benedict Healing the Possessed' +p235393 +sg225232 +S'Artist Information (' +p235394 +sg225234 +S'(artist after)' +p235395 +sg225236 +S'\n' +p235396 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9e1.jpg' +p235397 +sg225240 +g27 +sa(dp235398 +g225230 +S'The Guardian Angel' +p235399 +sg225232 +S'Simone Cantarini' +p235400 +sg225234 +S'etching' +p235401 +sg225236 +S'unknown date\n' +p235402 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c984.jpg' +p235403 +sg225240 +g27 +sa(dp235404 +g225230 +S'Jupiter, Neptune and Pluto' +p235405 +sg225232 +S'Simone Cantarini' +p235406 +sg225234 +S'etching' +p235407 +sg225236 +S'unknown date\n' +p235408 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca25.jpg' +p235409 +sg225240 +g27 +sa(dp235410 +g225230 +S'Jupiter, Neptune and Pluto' +p235411 +sg225232 +S'Simone Cantarini' +p235412 +sg225234 +S'etching' +p235413 +sg225236 +S'unknown date\n' +p235414 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca26.jpg' +p235415 +sg225240 +g27 +sa(dp235416 +g225230 +S'The Rape of Europa' +p235417 +sg225232 +S'Simone Cantarini' +p235418 +sg225234 +S'etching' +p235419 +sg225236 +S'unknown date\n' +p235420 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9e2.jpg' +p235421 +sg225240 +g27 +sa(dp235422 +g225230 +S'Mercury and Argus' +p235423 +sg225232 +S'Simone Cantarini' +p235424 +sg225234 +S'etching' +p235425 +sg225236 +S'unknown date\n' +p235426 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9e3.jpg' +p235427 +sg225240 +g27 +sa(dp235428 +g225230 +S'Mars, Venus and Cupid' +p235429 +sg225232 +S'Artist Information (' +p235430 +sg225234 +S'(artist after)' +p235431 +sg225236 +S'\n' +p235432 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9e5.jpg' +p235433 +sg225240 +g27 +sa(dp235434 +g225230 +S'Venus and Adonis' +p235435 +sg225232 +S'Simone Cantarini' +p235436 +sg225234 +S'etching' +p235437 +sg225236 +S'unknown date\n' +p235438 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c985.jpg' +p235439 +sg225240 +g27 +sa(dp235440 +g225230 +S'Fortune' +p235441 +sg225232 +S'Simone Cantarini' +p235442 +sg225234 +S'etching' +p235443 +sg225236 +S'unknown date\n' +p235444 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c97d.jpg' +p235445 +sg225240 +g27 +sa(dp235446 +g225230 +S'Fortune' +p235447 +sg225232 +S'Simone Cantarini' +p235448 +sg225234 +S'etching' +p235449 +sg225236 +S'unknown date\n' +p235450 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9e6.jpg' +p235451 +sg225240 +g27 +sa(dp235452 +g225230 +S'Frontispiece with Coat of Arms' +p235453 +sg225232 +S'Simone Cantarini' +p235454 +sg225234 +S'etching' +p235455 +sg225236 +S'unknown date\n' +p235456 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c988.jpg' +p235457 +sg225240 +g27 +sa(dp235458 +g225230 +S'The Virgin and Child with Saint John the Baptist' +p235459 +sg225232 +S'Giulio Carpioni' +p235460 +sg225234 +S'etching' +p235461 +sg225236 +S'unknown date\n' +p235462 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c95f.jpg' +p235463 +sg225240 +g27 +sa(dp235464 +g225230 +S'The Holy Family by a Column' +p235465 +sg225232 +S'Bartolomeo Biscaino' +p235466 +sg225234 +S'etching' +p235467 +sg225236 +S'c. 1655' +p235468 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d43d.jpg' +p235469 +sg225240 +g27 +sa(dp235470 +g225230 +S'The Martyrdom of Saint John' +p235471 +sg225232 +S'Albrecht D\xc3\xbcrer' +p235472 +sg225234 +S'woodcut on laid paper' +p235473 +sg225236 +S'probably c. 1496/1498' +p235474 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b143.jpg' +p235475 +sg225240 +g27 +sa(dp235476 +g225230 +S'Saint John before God and the Elders' +p235477 +sg225232 +S'Albrecht D\xc3\xbcrer' +p235478 +sg225234 +S'woodcut' +p235479 +sg225236 +S'probably c. 1496/1498' +p235480 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b145.jpg' +p235481 +sg225240 +g27 +sa(dp235482 +g225230 +S'The Opening of the Fifth and Sixth Seals' +p235483 +sg225232 +S'Albrecht D\xc3\xbcrer' +p235484 +sg225234 +S'woodcut' +p235485 +sg225236 +S'probably c. 1496/1498' +p235486 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b147.jpg' +p235487 +sg225240 +g27 +sa(dp235488 +g225230 +S'The Seven Angels with the Trumpets' +p235489 +sg225232 +S'Albrecht D\xc3\xbcrer' +p235490 +sg225234 +S'woodcut' +p235491 +sg225236 +S'probably c. 1496/1498' +p235492 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b14a.jpg' +p235493 +sg225240 +g27 +sa(dp235494 +g225230 +S'The Four Avenging Angels' +p235495 +sg225232 +S'Albrecht D\xc3\xbcrer' +p235496 +sg225234 +S'woodcut' +p235497 +sg225236 +S'probably c. 1496/1498' +p235498 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b116.jpg' +p235499 +sg225240 +g27 +sa(dp235500 +g225230 +S'Philosopher Seated, with Globe, Book, and Compass' +p235501 +sg225232 +S'Giovanni Battista Tiepolo' +p235502 +sg225234 +S'etching' +p235503 +sg225236 +S'unknown date\n' +p235504 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d43b.jpg' +p235505 +sg225240 +g27 +sa(dp235506 +g225232 +S'Josef Hoffmann' +p235507 +sg225240 +g27 +sg225234 +S'graphite on blue-lined paper' +p235508 +sg225230 +S'Two Bureaus and a Mirror' +p235509 +sg225236 +S'unknown date\n' +p235510 +sa(dp235511 +g225232 +S'Josef Hoffmann' +p235512 +sg225240 +g27 +sg225234 +S'graphite and pen and black ink on blue-lined paper' +p235513 +sg225230 +S'Design for a Window and Other Studies' +p235514 +sg225236 +S'unknown date\n' +p235515 +sa(dp235516 +g225232 +S'Josef Hoffmann' +p235517 +sg225240 +g27 +sg225234 +S'pen and blue ink on blue-lined paper' +p235518 +sg225230 +S'Cup or Chalice' +p235519 +sg225236 +S'unknown date\n' +p235520 +sa(dp235521 +g225232 +S'Josef Hoffmann' +p235522 +sg225240 +g27 +sg225234 +S'graphite on blue-lined paper' +p235523 +sg225230 +S'Three Designs for Ornamental Screens' +p235524 +sg225236 +S'unknown date\n' +p235525 +sa(dp235526 +g225232 +S'Josef Hoffmann' +p235527 +sg225240 +g27 +sg225234 +S'black ink over graphite on blue-lined paper' +p235528 +sg225230 +S'Pitcher' +p235529 +sg225236 +S'unknown date\n' +p235530 +sa(dp235531 +g225232 +S'Josef Hoffmann' +p235532 +sg225240 +g27 +sg225234 +S'graphite on blue-lined paper' +p235533 +sg225230 +S'Two Designs for Ornamental Screens (and a Window Design?)' +p235534 +sg225236 +S'unknown date\n' +p235535 +sa(dp235536 +g225232 +S'Josef Hoffmann' +p235537 +sg225240 +g27 +sg225234 +S'black ink, red crayon, and some blue ink on blue-lined paper' +p235538 +sg225230 +S'Geometric Design' +p235539 +sg225236 +S'unknown date\n' +p235540 +sa(dp235541 +g225232 +S'Josef Hoffmann' +p235542 +sg225240 +g27 +sg225234 +S'graphite and black ink on blue-lined paper' +p235543 +sg225230 +S'Container, with Floral Pattern' +p235544 +sg225236 +S'unknown date\n' +p235545 +sa(dp235546 +g225232 +S'Josef Hoffmann' +p235547 +sg225240 +g27 +sg225234 +S'pen with blue and black ink over graphite on blue-lined paper' +p235548 +sg225230 +S'Teapot, Cup and Saucer' +p235549 +sg225236 +S'unknown date\n' +p235550 +sa(dp235551 +g225232 +S'Josef Hoffmann' +p235552 +sg225240 +g27 +sg225234 +S'pen and gray ink and graphite on blue-lined paper' +p235553 +sg225230 +S'Folded Sheet with Designs for Furniture' +p235554 +sg225236 +S'unknown date\n' +p235555 +sa(dp235556 +g225232 +S'Josef Hoffmann' +p235557 +sg225240 +g27 +sg225234 +S'graphite on blue-lined paper' +p235558 +sg225230 +S'Corner of a Room with Window' +p235559 +sg225236 +S'unknown date\n' +p235560 +sa(dp235561 +g225232 +S'Josef Hoffmann' +p235562 +sg225240 +g27 +sg225234 +S'pen and blue ink over graphite on blue-lined paper' +p235563 +sg225230 +S'Bureau on Wheels with Books' +p235564 +sg225236 +S'unknown date\n' +p235565 +sa(dp235566 +g225232 +S'Josef Hoffmann' +p235567 +sg225240 +g27 +sg225234 +S'graphite on blue-lined paper' +p235568 +sg225230 +S'Floral Forms [recto]' +p235569 +sg225236 +S'unknown date\n' +p235570 +sa(dp235571 +g225232 +S'Josef Hoffmann' +p235572 +sg225240 +g27 +sg225234 +S'graphite on blue-lined paper' +p235573 +sg225230 +S'Flower Studies [verso]' +p235574 +sg225236 +S'unknown date\n' +p235575 +sa(dp235576 +g225232 +S'Josef Hoffmann' +p235577 +sg225240 +g27 +sg225234 +S'graphite touched with red and green (crayon?) on blue-lined paper' +p235578 +sg225230 +S'Part of Exterior of a House' +p235579 +sg225236 +S'unknown date\n' +p235580 +sa(dp235581 +g225232 +S'Josef Hoffmann' +p235582 +sg225240 +g27 +sg225234 +S'graphite with pink watercolor on blue-lined paper' +p235583 +sg225230 +S'Teapot' +p235584 +sg225236 +S'unknown date\n' +p235585 +sa(dp235586 +g225232 +S'Josef Hoffmann' +p235587 +sg225240 +g27 +sg225234 +S'graphite on wove paper' +p235588 +sg225230 +S'Standing Female Nude, with Floral Design' +p235589 +sg225236 +S'unknown date\n' +p235590 +sa(dp235591 +g225232 +S'Josef Hoffmann' +p235592 +sg225240 +g27 +sg225234 +S'graphite with green and aqua watercolor on blue-lined paper' +p235593 +sg225230 +S'Two Pots with Floral Designs' +p235594 +sg225236 +S'unknown date\n' +p235595 +sa(dp235596 +g225232 +S'Josef Hoffmann' +p235597 +sg225240 +g27 +sg225234 +S'graphite and blue and black ink on blue-lined paper' +p235598 +sg225230 +S'Jar with Floral Design' +p235599 +sg225236 +S'unknown date\n' +p235600 +sa(dp235601 +g225232 +S'Josef Hoffmann' +p235602 +sg225240 +g27 +sg225234 +S'graphite on blue-lined paper' +p235603 +sg225230 +S'Designs for Plates and Other Ornamental Sketches' +p235604 +sg225236 +S'unknown date\n' +p235605 +sa(dp235606 +g225232 +S'Josef Hoffmann' +p235607 +sg225240 +g27 +sg225234 +S'graphite and pen and black ink on blue-lined paper' +p235608 +sg225230 +S'Abstract Design' +p235609 +sg225236 +S'unknown date\n' +p235610 +sa(dp235611 +g225232 +S'Josef Hoffmann' +p235612 +sg225240 +g27 +sg225234 +S'graphite and pen with black and blue ink on blue-lined paper' +p235613 +sg225230 +S'Elevation of a Building' +p235614 +sg225236 +S'unknown date\n' +p235615 +sa(dp235616 +g225232 +S'Josef Hoffmann' +p235617 +sg225240 +g27 +sg225234 +S'graphite and pen with black and blue ink on blue-lined paper' +p235618 +sg225230 +S'Plan and Elevation of a House' +p235619 +sg225236 +S'unknown date\n' +p235620 +sa(dp235621 +g225232 +S'Josef Hoffmann' +p235622 +sg225240 +g27 +sg225234 +S'pen and blue ink over graphite on blue-lined paper' +p235623 +sg225230 +S'Design for a Desk, with Details' +p235624 +sg225236 +S'unknown date\n' +p235625 +sa(dp235626 +g225232 +S'Josef Hoffmann' +p235627 +sg225240 +g27 +sg225234 +S'graphite on blue-lined paper' +p235628 +sg225230 +S'Sketch for a Building Exterior' +p235629 +sg225236 +S'unknown date\n' +p235630 +sa(dp235631 +g225232 +S'Josef Hoffmann' +p235632 +sg225240 +g27 +sg225234 +S'pen and blue ink over graphite on blue-lined paper' +p235633 +sg225230 +S'Design for a Stemmed Object (Glass or Goblet?)' +p235634 +sg225236 +S'unknown date\n' +p235635 +sa(dp235636 +g225232 +S'Josef Hoffmann' +p235637 +sg225240 +g27 +sg225234 +S'graphite with blue and brown watercolor on blue-lined paper' +p235638 +sg225230 +S'Teapot' +p235639 +sg225236 +S'unknown date\n' +p235640 +sa(dp235641 +g225232 +S'Josef Hoffmann' +p235642 +sg225240 +g27 +sg225234 +S'graphite with yellow-green watercolor on blue-lined paper' +p235643 +sg225230 +S'Teapot' +p235644 +sg225236 +S'unknown date\n' +p235645 +sa(dp235646 +g225232 +S'Josef Hoffmann' +p235647 +sg225240 +g27 +sg225234 +S'black and red ink over graphite on blue-lined paper' +p235648 +sg225230 +S'Bowl' +p235649 +sg225236 +S'unknown date\n' +p235650 +sa(dp235651 +g225232 +S'Josef Hoffmann' +p235652 +sg225240 +g27 +sg225234 +S'black and gray ink on blue-lined paper' +p235653 +sg225230 +S'Geometric Design' +p235654 +sg225236 +S'unknown date\n' +p235655 +sa(dp235656 +g225232 +S'Josef Hoffmann' +p235657 +sg225240 +g27 +sg225234 +S'graphite with brush and black ink on blue-lined paper' +p235658 +sg225230 +S'Design for a Sideboard' +p235659 +sg225236 +S'unknown date\n' +p235660 +sa(dp235661 +g225232 +S'Josef Hoffmann' +p235662 +sg225240 +g27 +sg225234 +S'graphite with black and green ink on blue-lined paper' +p235663 +sg225230 +S'Design for a Container with Stem' +p235664 +sg225236 +S'unknown date\n' +p235665 +sa(dp235666 +g225232 +S'Josef Hoffmann' +p235667 +sg225240 +g27 +sg225234 +S'graphite and red ink on blue-lined paper' +p235668 +sg225230 +S'Floral Design' +p235669 +sg225236 +S'unknown date\n' +p235670 +sa(dp235671 +g225232 +S'Josef Hoffmann' +p235672 +sg225240 +g27 +sg225234 +S'graphite and watercolor (greens) on blue-lined paper' +p235673 +sg225230 +S'Geometric Design (Square Forms)' +p235674 +sg225236 +S'unknown date\n' +p235675 +sa(dp235676 +g225232 +S'Josef Hoffmann' +p235677 +sg225240 +g27 +sg225234 +S'graphite on blue-lined paper' +p235678 +sg225230 +S'Circular Ornamental Design' +p235679 +sg225236 +S'unknown date\n' +p235680 +sa(dp235681 +g225232 +S'Josef Hoffmann' +p235682 +sg225240 +g27 +sg225234 +S'graphite and watercolor on blue-lined paper' +p235683 +sg225230 +S'Teapot, with Sketch of Cup' +p235684 +sg225236 +S'unknown date\n' +p235685 +sa(dp235686 +g225232 +S'Josef Hoffmann' +p235687 +sg225240 +g27 +sg225234 +S'graphite and red and black ink on blue-lined paper' +p235688 +sg225230 +S'Pitcher' +p235689 +sg225236 +S'unknown date\n' +p235690 +sa(dp235691 +g225232 +S'Josef Hoffmann' +p235692 +sg225240 +g27 +sg225234 +S'graphite, black ink, and gold (ink?) on blue-lined paper' +p235693 +sg225230 +S'Four Jewelry Designs' +p235694 +sg225236 +S'unknown date\n' +p235695 +sa(dp235696 +g225232 +S'Josef Hoffmann' +p235697 +sg225240 +g27 +sg225234 +S'graphite, yellow crayon, black ink, and watercolor on blue-lined paper' +p235698 +sg225230 +S'Flower Patterns' +p235699 +sg225236 +S'unknown date\n' +p235700 +sa(dp235701 +g225230 +S'Head of a Boy' +p235702 +sg225232 +S'Paolo Farinati' +p235703 +sg225234 +S'black and white chalk on blue paper' +p235704 +sg225236 +S'unknown date\n' +p235705 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a000753e.jpg' +p235706 +sg225240 +g27 +sa(dp235707 +g225230 +S'Design for a Window (Hunting Scene)' +p235708 +sg225232 +S'Christoph Murer' +p235709 +sg225234 +S'pen and black ink with touches of gray wash on laid paper' +p235710 +sg225236 +S'1579' +p235711 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a18.jpg' +p235712 +sg225240 +g27 +sa(dp235713 +g225230 +S'Two Studies of a Standing Woman' +p235714 +sg225232 +S'Italian 17th Century' +p235715 +sg225234 +S'overall: 26.5 x 19.7 cm (10 7/16 x 7 3/4 in.)' +p235716 +sg225236 +S'\nblack chalk on laid paper' +p235717 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007483.jpg' +p235718 +sg225240 +g27 +sa(dp235719 +g225230 +S'Study of a Female Nude' +p235720 +sg225232 +S'Alessandro Casolani' +p235721 +sg225234 +S'black and white chalk on blue-green paper' +p235722 +sg225236 +S'unknown date\n' +p235723 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a0007538.jpg' +p235724 +sg225240 +g27 +sa(dp235725 +g225230 +S'Allegory of Age' +p235726 +sg225232 +S'Jacob Matham' +p235727 +sg225234 +S'pen and brown ink with brown wash on laid paper' +p235728 +sg225236 +S'unknown date\n' +p235729 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ed2.jpg' +p235730 +sg225240 +g27 +sa(dp235731 +g225230 +S'Study for Miraculous Draught of Fishes (?)' +p235732 +sg225232 +S'Jean-Baptiste Jouvenet' +p235733 +sg225234 +S'black chalk with touches of white chalk on brown paper' +p235734 +sg225236 +S'unknown date\n' +p235735 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dbf.jpg' +p235736 +sg225240 +g27 +sa(dp235737 +g225230 +S'The "Palais Tutelle" near Bordeaux' +p235738 +sg225232 +S'Jacques Androuet du Cerceau' +p235739 +sg225234 +S', unknown date' +p235740 +sg225236 +S'\n' +p235741 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007173.jpg' +p235742 +sg225240 +g27 +sa(dp235743 +g225230 +S'The Martyrdom of Saint Alexander of Bergamo' +p235744 +sg225232 +S'Lorenzo Lotto' +p235745 +sg225234 +S'pen and brown ink, squared with black chalk, on two joined sheets of laid paper' +p235746 +sg225236 +S'1520/1524' +p235747 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a000756b.jpg' +p235748 +sg225240 +g27 +sa(dp235749 +g225230 +S'Cupid Bound' +p235750 +sg225232 +S'Raphael' +p235751 +sg225234 +S', unknown date' +p235752 +sg225236 +S'\n' +p235753 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a000751e.jpg' +p235754 +sg225240 +g27 +sa(dp235755 +g225230 +S'The Good Thief' +p235756 +sg225232 +S'Karel van Mander I' +p235757 +sg225234 +S'pen and brown ink with brown and (orange?) wash, heightened with white' +p235758 +sg225236 +S'unknown date\n' +p235759 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007278.jpg' +p235760 +sg225240 +g27 +sa(dp235761 +g225230 +S'Two Male Nudes' +p235762 +sg225232 +S'Baccio Bandinelli' +p235763 +sg225234 +S'pen and brown ink on laid paper' +p235764 +sg225236 +S'c. 1520' +p235765 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a000752c.jpg' +p235766 +sg225240 +g27 +sa(dp235767 +g225230 +S'Landscape with Bridge and Ruins in Background' +p235768 +sg225232 +S'Pieter Dircksz Santvoort' +p235769 +sg225234 +S'pen and brown ink with brown wash on laid paper' +p235770 +sg225236 +S'unknown date\n' +p235771 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072f4.jpg' +p235772 +sg225240 +g27 +sa(dp235773 +g225230 +S'God the Father and Angels on Clouds' +p235774 +sg225232 +S'Raffaello Motta' +p235775 +sg225234 +S'pen and brown ink with brown wash heightened with white' +p235776 +sg225236 +S'unknown date\n' +p235777 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a000756e.jpg' +p235778 +sg225240 +g27 +sa(dp235779 +g225230 +S'Tableau No. IV; Lozenge Composition with Red, Gray, Blue, Yellow, and Black' +p235780 +sg225232 +S'Piet Mondrian' +p235781 +sg225234 +S'oil on canvas' +p235782 +sg225236 +S'c. 1924/1925' +p235783 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ec6.jpg' +p235784 +sg225240 +S'Piet Mondrian intended his abstract or so-called "neo-plastic" paintings to\n express his fundamentally spiritual notion that universal harmonies preside in nature. The\n horizontal and vertical elements of his compositions, assiduously calibrated to produce a\n balanced asymmetry, represented forces of opposition that parallel the dynamic equilibrium at\n work in the natural world. By 1921 Mondrian had distilled his compositions into black lines that\n intersect at right angles, defining rectangles painted only in white or gray and the three\n primary colors.\n In 1918 the artist turned one of these square canvases 45 degrees to rest "on\n point," doing so without rotating the linear elements within the composition.\n Approximately three years later he merged that format with the elemental color scheme of his\n mature works to produce this monumental painting, the earliest of the neo-plastic\n diamond or lozenge compositions. Repainted around 1925, when the black lines were thickened,\n this picture relates to several other works of the 1920s, where color is restricted to the\n periphery. Mondrian said the diamond compositions were about cutting, and indeed the sense of\n cropping here is emphatic. Forms are incomplete, sliced by the edge of the canvas, thus\n implying a pictorial continuum that extends beyond the physical boundary of the painting.\n ' +p235785 +sa(dp235786 +g225230 +S'Landscape' +p235787 +sg225232 +S'Peter De Wint' +p235788 +sg225234 +S'watercolor' +p235789 +sg225236 +S'unknown date\n' +p235790 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c91.jpg' +p235791 +sg225240 +g27 +sa(dp235792 +g225232 +S'John Sloan' +p235793 +sg225240 +g27 +sg225234 +S'graphite on tracing paper' +p235794 +sg225230 +S'The City from Greenwich Village' +p235795 +sg225236 +S'c. 1922' +p235796 +sa(dp235797 +g225232 +S'John Sloan' +p235798 +sg225240 +g27 +sg225234 +S'graphite' +p235799 +sg225230 +S'The City from Greenwich Village' +p235800 +sg225236 +S'c. 1922' +p235801 +sa(dp235802 +g225230 +S'Ill-Matched Lovers' +p235803 +sg225232 +S'Quentin Massys' +p235804 +sg225234 +S'oil on panel' +p235805 +sg225236 +S'c. 1520/1525' +p235806 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000498.jpg' +p235807 +sg225240 +S"The pairing of unequal couples has a literary history dating back to antiquity when Plautus, a Roman comic poet from the 3rd–century BC, cautioned elderly men against courting younger ladies. By the late–15th and early–16th centuries, the coupling of old men with young women or old women with young men had become popular themes in northern European art and literature.\n This painting provides a clear illustration of the ideas that old age, especially lecherous old age, leads to foolishness—with the fool participating in the deception by helping to rob the old man's purse—and that women's sexual powers cause men to behave absurdly and to lose their wits and their money. The deck of cards may allude to competition between the sexes, morally loose or amorous behavior, and the loss and gain of money through gambling.\n The painting is an example of Massys' ability to assimilate elements from both northern and Italian art. Apparently familiar with Leonardo da Vinci's grotesque drawings of physiognomy and distortion, Massys adapted the facial type for the old lecher from one of Leonardo's caricatures, and the complicated pose of the suitor from Leonardo's lost drawing of an ill–matched pair, known today through a later copy.\n " +p235808 +sa(dp235809 +g225230 +S'Vista from a Grotto' +p235810 +sg225232 +S'David Teniers the Younger' +p235811 +sg225234 +S'oil on panel' +p235812 +sg225236 +S'early 1630s' +p235813 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e34.jpg' +p235814 +sg225240 +g27 +sa(dp235815 +g225230 +S'The Seine' +p235816 +sg225232 +S'Henry Ossawa Tanner' +p235817 +sg225234 +S'oil on canvas' +p235818 +sg225236 +S'c. 1902' +p235819 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a000026e.jpg' +p235820 +sg225240 +S'Henry Ossawa Tanner, son of an African American minister,\r\n left the United States partly to escape racial prejudice.\r\n After studying under \n The Seine\n ' +p235821 +sa(dp235822 +g225230 +S'The Plow and the Song' +p235823 +sg225232 +S'Arshile Gorky' +p235824 +sg225234 +S'graphite, charcoal, crayon, pastel and oil on wove paper' +p235825 +sg225236 +S'1946' +p235826 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008e2.jpg' +p235827 +sg225240 +g27 +sa(dp235828 +g225230 +S'Study for Marine Building Mural' +p235829 +sg225232 +S'Arshile Gorky' +p235830 +sg225234 +S'gouache on heavy paper mounted on ground wood boards' +p235831 +sg225236 +S'1939' +p235832 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008e3.jpg' +p235833 +sg225240 +g27 +sa(dp235834 +g225230 +S'Landscape with a Large Rock' +p235835 +sg225232 +S'Filippo Napoletano' +p235836 +sg225234 +S'pen and brown ink with brown wash and black chalk' +p235837 +sg225236 +S'c. 1621/1629' +p235838 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006783.jpg' +p235839 +sg225240 +g27 +sa(dp235840 +g225230 +S'Study for "The Four Doctors of the Church"' +p235841 +sg225232 +S'Domenico Beccafumi' +p235842 +sg225234 +S'pen and brown ink with brown wash and red chalk heightened with white on laid paper' +p235843 +sg225236 +S'unknown date\n' +p235844 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074e4.jpg' +p235845 +sg225240 +g27 +sa(dp235846 +g225230 +S'Japanese Artist at Work' +p235847 +sg225232 +S'Adolph Menzel' +p235848 +sg225234 +S'graphite on paperboard' +p235849 +sg225236 +S'1886' +p235850 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e72.jpg' +p235851 +sg225240 +g27 +sa(dp235852 +g225230 +S'A Standing Man in Classical Drapery' +p235853 +sg225232 +S'Girolamo Muziano' +p235854 +sg225234 +S'brown wash with white heightening over black chalk on green-blue paper laid on brown washed paper' +p235855 +sg225236 +S'1544/1549' +p235856 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a000658f.jpg' +p235857 +sg225240 +g27 +sa(dp235858 +g225232 +S'Various Artists' +p235859 +sg225240 +g27 +sg225234 +S'Ailsa Mellon Bruce Fund' +p235860 +sg225230 +S'Livre de Paissage' +p235861 +sg225236 +S'\nbound volume with 232 etchings and engravings by Frisius, Hondius, J. van de Velde II, E. van de Velde, C. Visscher, Nieulandt, and anonymous artists' +p235862 +sa(dp235863 +g225232 +S'Artist Information (' +p235864 +sg225240 +g27 +sg225234 +S'(artist after)' +p235865 +sg225230 +S'Title Page' +p235866 +sg225236 +S'\n' +p235867 +sa(dp235868 +g225232 +S'Artist Information (' +p235869 +sg225240 +g27 +sg225234 +S'(artist after)' +p235870 +sg225230 +S'Topographia variarvm regionvm' +p235871 +sg225236 +S'\n' +p235872 +sa(dp235873 +g225232 +S'Jan van de Velde II' +p235874 +sg225240 +g27 +sg225234 +S'etching' +p235875 +sg225230 +S"'Spaernwouder' or 'Amsterdamsche Poort' at Haarlem" +p235876 +sg225236 +S'1616' +p235877 +sa(dp235878 +g225232 +S'Jan van de Velde II' +p235879 +sg225240 +g27 +sg225234 +S'etching' +p235880 +sg225230 +S'Water-mill Left of Ruins' +p235881 +sg225236 +S'1616' +p235882 +sa(dp235883 +g225232 +S'Jan van de Velde II' +p235884 +sg225240 +g27 +sg225234 +S'etching' +p235885 +sg225230 +S'Frozen River with Skaters' +p235886 +sg225236 +S'1616' +p235887 +sa(dp235888 +g225232 +S'Jan van de Velde II' +p235889 +sg225240 +g27 +sg225234 +S'etching' +p235890 +sg225230 +S'Title' +p235891 +sg225236 +S'1616' +p235892 +sa(dp235893 +g225232 +S'Jan van de Velde II' +p235894 +sg225240 +g27 +sg225234 +S'etching' +p235895 +sg225230 +S'Draw-well among Trees' +p235896 +sg225236 +S'1616' +p235897 +sa(dp235898 +g225232 +S'Jan van de Velde II' +p235899 +sg225240 +g27 +sg225234 +S'etching' +p235900 +sg225230 +S'Ponte Sisto and the Tiber in Rome' +p235901 +sg225236 +S'1616' +p235902 +sa(dp235903 +g225232 +S'Jan van de Velde II' +p235904 +sg225240 +g27 +sg225234 +S'etching' +p235905 +sg225230 +S'Winter Landscape with Skaters' +p235906 +sg225236 +S'1616' +p235907 +sa(dp235908 +g225232 +S'Jan van de Velde II' +p235909 +sg225240 +g27 +sg225234 +S'etching' +p235910 +sg225230 +S'Two Cows on a Ferry near a Bastion' +p235911 +sg225236 +S'1616' +p235912 +sa(dp235913 +g225232 +S'Jan van de Velde II' +p235914 +sg225240 +g27 +sg225234 +S'etching' +p235915 +sg225230 +S'Sheep on a Ferry near a Square Tower and Village-Gate' +p235916 +sg225236 +S'1616' +p235917 +sa(dp235918 +g225232 +S'Jan van de Velde II' +p235919 +sg225240 +g27 +sg225234 +S'etching' +p235920 +sg225230 +S'View of a Valley' +p235921 +sg225236 +S'1616' +p235922 +sa(dp235923 +g225232 +S'Artist Information (' +p235924 +sg225240 +g27 +sg225234 +S'(artist after)' +p235925 +sg225230 +S'Topographia variarvm regionvm' +p235926 +sg225236 +S'\n' +p235927 +sa(dp235928 +g225232 +S'Jan van de Velde II' +p235929 +sg225240 +g27 +sg225234 +S'etching' +p235930 +sg225230 +S"Landscape with Tower of 'Het Huis te Kleef'" +p235931 +sg225236 +S'1616' +p235932 +sa(dp235933 +g225232 +S'Jan van de Velde II' +p235934 +sg225240 +g27 +sg225234 +S'etching' +p235935 +sg225230 +S'The Ford' +p235936 +sg225236 +S'1616' +p235937 +sa(dp235938 +g225232 +S'Jan van de Velde II' +p235939 +sg225240 +g27 +sg225234 +S'etching' +p235940 +sg225230 +S'Ruins of the Thermae of Caracalla' +p235941 +sg225236 +S'1616' +p235942 +sa(dp235943 +g225232 +S'Jan van de Velde II' +p235944 +sg225240 +g27 +sg225234 +S'etching' +p235945 +sg225230 +S'Market Day in a Town' +p235946 +sg225236 +S'1616' +p235947 +sa(dp235948 +g225232 +S'Jan van de Velde II' +p235949 +sg225240 +g27 +sg225234 +S'etching' +p235950 +sg225230 +S'Tower on the River Niers' +p235951 +sg225236 +S'1616' +p235952 +sa(dp235953 +g225230 +S'Winter Landscape' +p235954 +sg225232 +S'Jan van de Velde II' +p235955 +sg225234 +S'etching' +p235956 +sg225236 +S'unknown date\n' +p235957 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00064/a0006467.jpg' +p235958 +sg225240 +g27 +sa(dp235959 +g225232 +S'Jan van de Velde II' +p235960 +sg225240 +g27 +sg225234 +S'etching' +p235961 +sg225230 +S'Landscape with Hunters and Hay-Carts' +p235962 +sg225236 +S'unknown date\n' +p235963 +sa(dp235964 +g225232 +S'Jan van de Velde II' +p235965 +sg225240 +g27 +sg225234 +S'etching' +p235966 +sg225230 +S'A Little Chapel by a Pond' +p235967 +sg225236 +S'unknown date\n' +p235968 +sa(dp235969 +g225232 +S'Esaias van de Velde I' +p235970 +sg225240 +g27 +sg225234 +S'etching' +p235971 +sg225230 +S'Farms to Left of a Path' +p235972 +sg225236 +S'probably 1614' +p235973 +sa(dp235974 +g225232 +S'Jan van de Velde II' +p235975 +sg225240 +g27 +sg225234 +S'etching' +p235976 +sg225230 +S'Landscape with Pigs and Two Peddlars' +p235977 +sg225236 +S'unknown date\n' +p235978 +sa(dp235979 +g225232 +S'Artist Information (' +p235980 +sg225240 +g27 +sg225234 +S'(artist after)' +p235981 +sg225230 +S'Topographia variarvm regionvm' +p235982 +sg225236 +S'\n' +p235983 +sa(dp235984 +g225232 +S'Jan van de Velde II' +p235985 +sg225240 +g27 +sg225234 +S'etching' +p235986 +sg225230 +S'Lime-Kiln in Stormy Weather' +p235987 +sg225236 +S'unknown date\n' +p235988 +sa(dp235989 +g225232 +S'Artist Information (' +p235990 +sg225240 +g27 +sg225234 +S'Dutch, c. 1590 - 1630' +p235991 +sg225230 +S'Farms to Left of a Path' +p235992 +sg225236 +S'(artist after)' +p235993 +sa(dp235994 +g225232 +S'Claes Jansz Visscher' +p235995 +sg225240 +g27 +sg225234 +S'etching' +p235996 +sg225230 +S'Title Page' +p235997 +sg225236 +S'c. 1611/1612' +p235998 +sa(dp235999 +g225232 +S'Claes Jansz Visscher' +p236000 +sg225240 +g27 +sg225234 +S'etching' +p236001 +sg225230 +S"Potjes herbergh (Pot's Inn)" +p236002 +sg225236 +S'c. 1611/1612' +p236003 +sa(dp236004 +g225232 +S'Claes Jansz Visscher' +p236005 +sg225240 +g27 +sg225234 +S'etching' +p236006 +sg225230 +S'Aende wegh na Leyden (The Road towards Leiden)' +p236007 +sg225236 +S'c. 1611/1612' +p236008 +sa(dp236009 +g225232 +S'Claes Jansz Visscher' +p236010 +sg225240 +g27 +sg225234 +S'etching' +p236011 +sg225230 +S'Onder wegen Heemstee (The Road towards Heemstede)' +p236012 +sg225236 +S'c. 1611/1612' +p236013 +sa(dp236014 +g225232 +S'Claes Jansz Visscher' +p236015 +sg225240 +g27 +sg225234 +S'etching' +p236016 +sg225230 +S'Blekeryen door den Houdt (Bleaching-Fields near the Haarlemmer Hout)' +p236017 +sg225236 +S'c. 1611/1612' +p236018 +sa(dp236019 +g225232 +S'Artist Information (' +p236020 +sg225240 +g27 +sg225234 +S'(artist after)' +p236021 +sg225230 +S'Topographia variarvm regionvm' +p236022 +sg225236 +S'\n' +p236023 +sa(dp236024 +g225232 +S'Claes Jansz Visscher' +p236025 +sg225240 +g27 +sg225234 +S'etching' +p236026 +sg225230 +S'Lasery van Haerlem (The Leper-House at Haarlem)' +p236027 +sg225236 +S'c. 1611/1612' +p236028 +sa(dp236029 +g225232 +S'Claes Jansz Visscher' +p236030 +sg225240 +g27 +sg225234 +S'etching' +p236031 +sg225230 +S'Plaijsante plaets aede duy kat (Road near the Dunes)' +p236032 +sg225236 +S'c. 1611/1612' +p236033 +sa(dp236034 +g225230 +S'Blekerye aededuyne gelegen (Farms and Bleaching-Fields)' +p236035 +sg225232 +S'Claes Jansz Visscher' +p236036 +sg225234 +S'etching' +p236037 +sg225236 +S'c. 1611/1612' +p236038 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00059/a0005969.jpg' +p236039 +sg225240 +g27 +sa(dp236040 +g225232 +S'Claes Jansz Visscher' +p236041 +sg225240 +g27 +sg225234 +S'etching' +p236042 +sg225230 +S"t'Huys te Kleef ('Het Huis Te Cleef,' near Haarlem)" +p236043 +sg225236 +S'c. 1611/1612' +p236044 +sa(dp236045 +g225232 +S'Matthaus Merian I' +p236046 +sg225240 +g27 +sg225234 +S'etching' +p236047 +sg225230 +S'Hallers Weyer Haus' +p236048 +sg225236 +S'c. 1616' +p236049 +sa(dp236050 +g225232 +S'Matthaus Merian I' +p236051 +sg225240 +g27 +sg225234 +S'etching' +p236052 +sg225230 +S'Fischers H\xc3\xa4uslein untterem Lazer\xc3\xabt' +p236053 +sg225236 +S'c. 1616' +p236054 +sa(dp236055 +g225232 +S'Matthaus Merian I' +p236056 +sg225240 +g27 +sg225234 +S'etching' +p236057 +sg225230 +S'Zu S. Johannes' +p236058 +sg225236 +S'c. 1616' +p236059 +sa(dp236060 +g225232 +S'Matthaus Merian I' +p236061 +sg225240 +g27 +sg225234 +S'etching' +p236062 +sg225230 +S'Der Tetzell Gartten bey dem Judenbiell' +p236063 +sg225236 +S'c. 1616' +p236064 +sa(dp236065 +g225232 +S'Matthaus Merian I' +p236066 +sg225240 +g27 +sg225234 +S'etching' +p236067 +sg225230 +S'M\xc3\xb6geldorff' +p236068 +sg225236 +S'c. 1616' +p236069 +sa(dp236070 +g225232 +S'Matthaus Merian I' +p236071 +sg225240 +g27 +sg225234 +S'etching' +p236072 +sg225230 +S'Zu Sanct Jobst' +p236073 +sg225236 +S'c. 1616' +p236074 +sa(dp236075 +g225232 +S'Artist Information (' +p236076 +sg225240 +g27 +sg225234 +S'(artist after)' +p236077 +sg225230 +S'Topographia variarvm regionvm' +p236078 +sg225236 +S'\n' +p236079 +sa(dp236080 +g225232 +S'Artist Information (' +p236081 +sg225240 +g27 +sg225234 +S'Dutch, c. 1590 - 1630' +p236082 +sg225230 +S'Farm to Right of a River' +p236083 +sg225236 +S'(artist after)' +p236084 +sa(dp236085 +g225232 +S'Artist Information (' +p236086 +sg225240 +g27 +sg225234 +S'Dutch, c. 1590 - 1630' +p236087 +sg225230 +S'Frozen River to Left of a Square Tower' +p236088 +sg225236 +S'(artist after)' +p236089 +sa(dp236090 +g225232 +S'Artist Information (' +p236091 +sg225240 +g27 +sg225234 +S'Dutch, c. 1590 - 1630' +p236092 +sg225230 +S'Two Monks on a Path before a Dilapidated Tower' +p236093 +sg225236 +S'(artist after)' +p236094 +sa(dp236095 +g225232 +S'Claes Jansz Visscher' +p236096 +sg225240 +g27 +sg225234 +S'etching' +p236097 +sg225230 +S"Paters herbergh (Father's Inn)" +p236098 +sg225236 +S'c. 1611/1612' +p236099 +sa(dp236100 +g225232 +S'Claes Jansz Visscher' +p236101 +sg225240 +g27 +sg225234 +S'etching' +p236102 +sg225230 +S'Sandvoordt (The Village Zandvoort)' +p236103 +sg225236 +S'c. 1611/1612' +p236104 +sa(dp236105 +g225232 +S'Artist Information (' +p236106 +sg225240 +g27 +sg225234 +S'Dutch, c. 1590 - 1630' +p236107 +sg225230 +S'Farm to Left of a Path Leading to Distant Fields' +p236108 +sg225236 +S'(artist after)' +p236109 +sa(dp236110 +g225232 +S'Artist Information (' +p236111 +sg225240 +g27 +sg225234 +S'Dutch, c. 1590 - 1630' +p236112 +sg225230 +S'Farms to Left of a Path' +p236113 +sg225236 +S'(artist after)' +p236114 +sa(dp236115 +g225232 +S'Artist Information (' +p236116 +sg225240 +g27 +sg225234 +S'Dutch, c. 1590 - 1630' +p236117 +sg225230 +S'Skaters before a Wooden Bridge' +p236118 +sg225236 +S'(artist after)' +p236119 +sa(dp236120 +g225232 +S'Artist Information (' +p236121 +sg225240 +g27 +sg225234 +S'Dutch, c. 1590 - 1630' +p236122 +sg225230 +S'Farm to Right of a River' +p236123 +sg225236 +S'(artist after)' +p236124 +sa(dp236125 +g225232 +S'Claes Jansz Visscher' +p236126 +sg225240 +g27 +sg225234 +S'etching' +p236127 +sg225230 +S"Vierbake t'Sandvoort (Beacon at Zandvoort): Table of Contents" +p236128 +sg225236 +S'c. 1611/1612' +p236129 +sa(dp236130 +g225232 +S'Artist Information (' +p236131 +sg225240 +g27 +sg225234 +S'Dutch, c. 1590 - 1630' +p236132 +sg225230 +S'Skaters in front of Farms at Left' +p236133 +sg225236 +S'(artist after)' +p236134 +sa(dp236135 +g225232 +S'Artist Information (' +p236136 +sg225240 +g27 +sg225234 +S'Dutch, c. 1590 - 1630' +p236137 +sg225230 +S'Flock of Sheep on Bridge over Frozen Canal' +p236138 +sg225236 +S'(artist after)' +p236139 +sa(dp236140 +g225232 +S'Artist Information (' +p236141 +sg225240 +g27 +sg225234 +S'Dutch, c. 1590 - 1630' +p236142 +sg225230 +S'Shepherds with Goats and Sheep before a River' +p236143 +sg225236 +S'(artist after)' +p236144 +sa(dp236145 +g225232 +S'Artist Information (' +p236146 +sg225240 +g27 +sg225234 +S'Dutch, c. 1590 - 1630' +p236147 +sg225230 +S'Path to Left of a Field' +p236148 +sg225236 +S'(artist after)' +p236149 +sa(dp236150 +g225232 +S'Artist Information (' +p236151 +sg225240 +g27 +sg225234 +S'Dutch, c. 1590 - 1630' +p236152 +sg225230 +S'Shepherds and Sheep before a Rock' +p236153 +sg225236 +S'(artist after)' +p236154 +sa(dp236155 +g225232 +S'Artist Information (' +p236156 +sg225240 +g27 +sg225234 +S'Dutch, c. 1590 - 1630' +p236157 +sg225230 +S'Path Leading to a Farm' +p236158 +sg225236 +S'(artist after)' +p236159 +sa(dp236160 +g225232 +S'Jan van de Velde II' +p236161 +sg225240 +g27 +sg225234 +S'etching' +p236162 +sg225230 +S'Title' +p236163 +sg225236 +S'published 1617' +p236164 +sa(dp236165 +g225232 +S'Jan van de Velde II' +p236166 +sg225240 +g27 +sg225234 +S'etching' +p236167 +sg225230 +S'Antique Ruins Entered by a Herd and his Flock' +p236168 +sg225236 +S'published 1617' +p236169 +sa(dp236170 +g225232 +S'Jan van de Velde II' +p236171 +sg225240 +g27 +sg225234 +S'etching' +p236172 +sg225230 +S'Ruins of a Castle with Stone and Wooden Draw-bridge' +p236173 +sg225236 +S'published 1617' +p236174 +sa(dp236175 +g225232 +S'Jan van de Velde II' +p236176 +sg225240 +g27 +sg225234 +S'etching' +p236177 +sg225230 +S'Ruins of a Church with Later Additions' +p236178 +sg225236 +S'published 1617' +p236179 +sa(dp236180 +g225232 +S'Jan van de Velde II' +p236181 +sg225240 +g27 +sg225234 +S'etching' +p236182 +sg225230 +S'Two Couples Walking near Ruins of a Roman Building' +p236183 +sg225236 +S'published 1617' +p236184 +sa(dp236185 +g225232 +S'Artist Information (' +p236186 +sg225240 +g27 +sg225234 +S'(artist after)' +p236187 +sg225230 +S'Topographia variarvm regionvm' +p236188 +sg225236 +S'\n' +p236189 +sa(dp236190 +g225232 +S'Jan van de Velde II' +p236191 +sg225240 +g27 +sg225234 +S'etching' +p236192 +sg225230 +S'Dilapidated Tower and Gothic Gate' +p236193 +sg225236 +S'published 1617' +p236194 +sa(dp236195 +g225232 +S'Jan van de Velde II' +p236196 +sg225240 +g27 +sg225234 +S'etching' +p236197 +sg225230 +S'A Herd and Three Goats Passing a Wooden Bridge' +p236198 +sg225236 +S'published 1617' +p236199 +sa(dp236200 +g225232 +S'Jan van de Velde II' +p236201 +sg225240 +g27 +sg225234 +S'etching' +p236202 +sg225230 +S'Frozen River with Skaters and Peasants on a Road' +p236203 +sg225236 +S'published 1617' +p236204 +sa(dp236205 +g225232 +S'Jan van de Velde II' +p236206 +sg225240 +g27 +sg225234 +S'etching' +p236207 +sg225230 +S'Country Road along a Church' +p236208 +sg225236 +S'published 1617' +p236209 +sa(dp236210 +g225232 +S'Jan van de Velde II' +p236211 +sg225240 +g27 +sg225234 +S'etching' +p236212 +sg225230 +S'Frozen River with Skaters' +p236213 +sg225236 +S'published 1617' +p236214 +sa(dp236215 +g225232 +S'Jan van de Velde II' +p236216 +sg225240 +g27 +sg225234 +S'etching' +p236217 +sg225230 +S'Two Peasant Women Cleaning Buckets and Tubs at a Draw-well' +p236218 +sg225236 +S'published 1617' +p236219 +sa(dp236220 +g225232 +S'Jan van de Velde II' +p236221 +sg225240 +g27 +sg225234 +S'etching' +p236222 +sg225230 +S'Dilapidated Outhouse' +p236223 +sg225236 +S'published 1617' +p236224 +sa(dp236225 +g225232 +S'Jan van de Velde II' +p236226 +sg225240 +g27 +sg225234 +S'etching' +p236227 +sg225230 +S'Cloud of Smoke Coming from a Lime-Kiln' +p236228 +sg225236 +S'published 1617' +p236229 +sa(dp236230 +g225232 +S'Jan van de Velde II' +p236231 +sg225240 +g27 +sg225234 +S'etching' +p236232 +sg225230 +S'Frozen River with Skaters next to a Dilapidated Barn' +p236233 +sg225236 +S'published 1617' +p236234 +sa(dp236235 +g225232 +S'Jan van de Velde II' +p236236 +sg225240 +g27 +sg225234 +S'etching' +p236237 +sg225230 +S'Country Road along a Farm' +p236238 +sg225236 +S'published 1617' +p236239 +sa(dp236240 +g225232 +S'Artist Information (' +p236241 +sg225240 +g27 +sg225234 +S'(artist after)' +p236242 +sg225230 +S'Topographia variarvm regionvm' +p236243 +sg225236 +S'\n' +p236244 +sa(dp236245 +g225232 +S'Jan van de Velde II' +p236246 +sg225240 +g27 +sg225234 +S'etching' +p236247 +sg225230 +S'A Falconer and Servant with Hounds near a Pond' +p236248 +sg225236 +S'published 1617' +p236249 +sa(dp236250 +g225232 +S'Jan van de Velde II' +p236251 +sg225240 +g27 +sg225234 +S'etching' +p236252 +sg225230 +S'Teijlinghen (Teijlingen Castle)' +p236253 +sg225236 +S'published 1616' +p236254 +sa(dp236255 +g225232 +S'Jan van de Velde II' +p236256 +sg225240 +g27 +sg225234 +S'etching' +p236257 +sg225230 +S'Egmont op de Hoeff (Egmond Castle)' +p236258 +sg225236 +S'published 1616' +p236259 +sa(dp236260 +g225232 +S'Jan van de Velde II' +p236261 +sg225240 +g27 +sg225234 +S'etching' +p236262 +sg225230 +S"T'Clooster tot Rynsburch (The Abbey at Rijnsburg)" +p236263 +sg225236 +S'published 1616' +p236264 +sa(dp236265 +g225232 +S'Jan van de Velde II' +p236266 +sg225240 +g27 +sg225234 +S'etching' +p236267 +sg225230 +S"T'huys to Cleef by Haerlem ('Het Huis te Kleef')" +p236268 +sg225236 +S'published 1616' +p236269 +sa(dp236270 +g225232 +S'Jan van de Velde II' +p236271 +sg225240 +g27 +sg225234 +S'etching' +p236272 +sg225230 +S'Weerdenburch (Weerdenburch Castle)' +p236273 +sg225236 +S'published 1616' +p236274 +sa(dp236275 +g225232 +S'Jan van de Velde II' +p236276 +sg225240 +g27 +sg225234 +S'etching' +p236277 +sg225230 +S'Rossum (Rossum Castle)' +p236278 +sg225236 +S'published 1616' +p236279 +sa(dp236280 +g225232 +S'Willem van Nieuwlandt II' +p236281 +sg225240 +g27 +sg225234 +S'etching' +p236282 +sg225230 +S'Title Page' +p236283 +sg225236 +S'1618' +p236284 +sa(dp236285 +g225232 +S'Willem van Nieuwlandt II' +p236286 +sg225240 +g27 +sg225234 +S'etching' +p236287 +sg225230 +S'Temple of Fortune' +p236288 +sg225236 +S'1618' +p236289 +sa(dp236290 +g225232 +S'Willem van Nieuwlandt II' +p236291 +sg225240 +g27 +sg225234 +S'etching' +p236292 +sg225230 +S'Ruinous Landscape with Flight into Egypt' +p236293 +sg225236 +S'1618' +p236294 +sa(dp236295 +g225232 +S'Artist Information (' +p236296 +sg225240 +g27 +sg225234 +S'Dutch, c. 1590 - 1630' +p236297 +sg225230 +S'Flock of Sheep on Bridge over Frozen Canal' +p236298 +sg225236 +S'(artist after)' +p236299 +sa(dp236300 +g225232 +S'Artist Information (' +p236301 +sg225240 +g27 +sg225234 +S'Dutch, active c. 1622 - 1654' +p236302 +sg225230 +S'Fields before Ruins Transformed into Farms' +p236303 +sg225236 +S'(artist after)' +p236304 +sa(dp236305 +g225232 +S'Artist Information (' +p236306 +sg225240 +g27 +sg225234 +S'(artist after)' +p236307 +sg225230 +S'Topographia variarvm regionvm' +p236308 +sg225236 +S'\n' +p236309 +sa(dp236310 +g225232 +S'Artist Information (' +p236311 +sg225240 +g27 +sg225234 +S'(artist after)' +p236312 +sg225230 +S'Topographia variarvm regionvm' +p236313 +sg225236 +S'\n' +p236314 +sa(dp236315 +g225232 +S'Willem van Nieuwlandt II' +p236316 +sg225240 +g27 +sg225234 +S'etching' +p236317 +sg225230 +S'Ruins beside Water' +p236318 +sg225236 +S'1618' +p236319 +sa(dp236320 +g225232 +S'Willem van Nieuwlandt II' +p236321 +sg225240 +g27 +sg225234 +S'etching' +p236322 +sg225230 +S'Ripa Grande' +p236323 +sg225236 +S'1618' +p236324 +sa(dp236325 +g225232 +S'Willem van Nieuwlandt II' +p236326 +sg225240 +g27 +sg225234 +S'etching' +p236327 +sg225230 +S'Thermae of Trajano' +p236328 +sg225236 +S'1618' +p236329 +sa(dp236330 +g225232 +S'Willem van Nieuwlandt II' +p236331 +sg225240 +g27 +sg225234 +S'etching' +p236332 +sg225230 +S'Antique Temple Surrounded by Columns' +p236333 +sg225236 +S'1618' +p236334 +sa(dp236335 +g225232 +S'Willem van Nieuwlandt II' +p236336 +sg225240 +g27 +sg225234 +S'etching' +p236337 +sg225230 +S'Ruins beside Water' +p236338 +sg225236 +S'1618' +p236339 +sa(dp236340 +g225232 +S'Willem van Nieuwlandt II' +p236341 +sg225240 +g27 +sg225234 +S'etching' +p236342 +sg225230 +S'Antique Temple' +p236343 +sg225236 +S'1618' +p236344 +sa(dp236345 +g225232 +S'Willem van Nieuwlandt II' +p236346 +sg225240 +g27 +sg225234 +S'etching' +p236347 +sg225230 +S'Temple of Castor and Pollux' +p236348 +sg225236 +S'1618' +p236349 +sa(dp236350 +g225232 +S'Willem van Nieuwlandt II' +p236351 +sg225240 +g27 +sg225234 +S'etching' +p236352 +sg225230 +S'Road between Ruins' +p236353 +sg225236 +S'1618' +p236354 +sa(dp236355 +g225232 +S'Willem van Nieuwlandt II' +p236356 +sg225240 +g27 +sg225234 +S'etching' +p236357 +sg225230 +S'Baths of Diocletian' +p236358 +sg225236 +S'1618' +p236359 +sa(dp236360 +g225232 +S'Willem van Nieuwlandt II' +p236361 +sg225240 +g27 +sg225234 +S'etching' +p236362 +sg225230 +S'Temple of Castor and Pollux and Basilica of Constantine' +p236363 +sg225236 +S'1618' +p236364 +sa(dp236365 +g225232 +S'Artist Information (' +p236366 +sg225240 +g27 +sg225234 +S'(artist after)' +p236367 +sg225230 +S'Topographia variarvm regionvm' +p236368 +sg225236 +S'\n' +p236369 +sa(dp236370 +g225232 +S'Willem van Nieuwlandt II' +p236371 +sg225240 +g27 +sg225234 +S'etching' +p236372 +sg225230 +S'Two-arched Bridge Spanning River' +p236373 +sg225236 +S'1618' +p236374 +sa(dp236375 +g225232 +S'Willem van Nieuwlandt II' +p236376 +sg225240 +g27 +sg225234 +S'etching' +p236377 +sg225230 +S'Therme of Diocletian' +p236378 +sg225236 +S'1618' +p236379 +sa(dp236380 +g225232 +S'Willem van Nieuwlandt II' +p236381 +sg225240 +g27 +sg225234 +S'etching' +p236382 +sg225230 +S'Temple of Sybil at Tivoli' +p236383 +sg225236 +S'1618' +p236384 +sa(dp236385 +g225232 +S'Willem van Nieuwlandt II' +p236386 +sg225240 +g27 +sg225234 +S'etching' +p236387 +sg225230 +S'The Flight into Egypt' +p236388 +sg225236 +S'1618' +p236389 +sa(dp236390 +g225232 +S'Willem van Nieuwlandt II' +p236391 +sg225240 +g27 +sg225234 +S'etching' +p236392 +sg225230 +S'Therme of Caracalla' +p236393 +sg225236 +S'1618' +p236394 +sa(dp236395 +g225232 +S'Willem van Nieuwlandt II' +p236396 +sg225240 +g27 +sg225234 +S'etching' +p236397 +sg225230 +S'View of Rome, to the Left Chiesa della S. Trinita dei Monte' +p236398 +sg225236 +S'1618' +p236399 +sa(dp236400 +g225232 +S'Willem van Nieuwlandt II' +p236401 +sg225240 +g27 +sg225234 +S'etching' +p236402 +sg225230 +S'Therme of Tito' +p236403 +sg225236 +S'1618' +p236404 +sa(dp236405 +g225232 +S'Willem van Nieuwlandt II' +p236406 +sg225240 +g27 +sg225234 +S'etching' +p236407 +sg225230 +S'View of Rome, Seen fron Monte Pincio' +p236408 +sg225236 +S'1618' +p236409 +sa(dp236410 +g225232 +S'Willem van Nieuwlandt II' +p236411 +sg225240 +g27 +sg225234 +S'etching' +p236412 +sg225230 +S'Pyramid of Caius Cestius' +p236413 +sg225236 +S'1618' +p236414 +sa(dp236415 +g225232 +S'Willem van Nieuwlandt II' +p236416 +sg225240 +g27 +sg225234 +S'etching' +p236417 +sg225230 +S'Aquaduct of Claudio' +p236418 +sg225236 +S'1618' +p236419 +sa(dp236420 +g225232 +S'Artist Information (' +p236421 +sg225240 +g27 +sg225234 +S'(artist after)' +p236422 +sg225230 +S'Topographia variarvm regionvm' +p236423 +sg225236 +S'\n' +p236424 +sa(dp236425 +g225232 +S'Artist Information (' +p236426 +sg225240 +g27 +sg225234 +S'(artist after)' +p236427 +sg225230 +S'Topographia variarvm regionvm' +p236428 +sg225236 +S'\n' +p236429 +sa(dp236430 +g225232 +S'Willem van Nieuwlandt II' +p236431 +sg225240 +g27 +sg225234 +S'etching' +p236432 +sg225230 +S'Temple of Venere' +p236433 +sg225236 +S'1618' +p236434 +sa(dp236435 +g225232 +S'Willem van Nieuwlandt II' +p236436 +sg225240 +g27 +sg225234 +S'etching' +p236437 +sg225230 +S'The So-Called Temple of Minerva Medica' +p236438 +sg225236 +S'1618' +p236439 +sa(dp236440 +g225232 +S'Willem van Nieuwlandt II' +p236441 +sg225240 +g27 +sg225234 +S'etching' +p236442 +sg225230 +S'Therme of Tito' +p236443 +sg225236 +S'1618' +p236444 +sa(dp236445 +g225232 +S'Artist Information (' +p236446 +sg225240 +g27 +sg225234 +S'(artist after)' +p236447 +sg225230 +S'Title' +p236448 +sg225236 +S'\n' +p236449 +sa(dp236450 +g225232 +S'Artist Information (' +p236451 +sg225240 +g27 +sg225234 +S'(artist after)' +p236452 +sg225230 +S'Dilapidated Barn with Herd and Cattle' +p236453 +sg225236 +S'\n' +p236454 +sa(dp236455 +g225232 +S'Artist Information (' +p236456 +sg225240 +g27 +sg225234 +S'(artist after)' +p236457 +sg225230 +S'Tobias and the Angel' +p236458 +sg225236 +S'\n' +p236459 +sa(dp236460 +g225232 +S'Artist Information (' +p236461 +sg225240 +g27 +sg225234 +S'(artist after)' +p236462 +sg225230 +S'Old Man and Woman Resting at a Pond' +p236463 +sg225236 +S'\n' +p236464 +sa(dp236465 +g225232 +S'Artist Information (' +p236466 +sg225240 +g27 +sg225234 +S'(artist after)' +p236467 +sg225230 +S'Farmhouse with Dovecoats' +p236468 +sg225236 +S'\n' +p236469 +sa(dp236470 +g225232 +S'Artist Information (' +p236471 +sg225240 +g27 +sg225234 +S'(artist after)' +p236472 +sg225230 +S'Path along a Barn' +p236473 +sg225236 +S'\n' +p236474 +sa(dp236475 +g225232 +S'Artist Information (' +p236476 +sg225240 +g27 +sg225234 +S'(artist after)' +p236477 +sg225230 +S'Barns' +p236478 +sg225236 +S'\n' +p236479 +sa(dp236480 +g225232 +S'Artist Information (' +p236481 +sg225240 +g27 +sg225234 +S'(artist after)' +p236482 +sg225230 +S'Topographia variarvm regionvm' +p236483 +sg225236 +S'\n' +p236484 +sa(dp236485 +g225232 +S'Artist Information (' +p236486 +sg225240 +g27 +sg225234 +S'(artist after)' +p236487 +sg225230 +S'A Farmhouse' +p236488 +sg225236 +S'\n' +p236489 +sa(dp236490 +g225232 +S'Artist Information (' +p236491 +sg225240 +g27 +sg225234 +S'(artist after)' +p236492 +sg225230 +S'Barn' +p236493 +sg225236 +S'\n' +p236494 +sa(dp236495 +g225232 +S'Artist Information (' +p236496 +sg225240 +g27 +sg225234 +S'(artist after)' +p236497 +sg225230 +S'A Wooden Bridge' +p236498 +sg225236 +S'\n' +p236499 +sa(dp236500 +g225232 +S'Artist Information (' +p236501 +sg225240 +g27 +sg225234 +S'(artist after)' +p236502 +sg225230 +S'A Farmyard' +p236503 +sg225236 +S'\n' +p236504 +sa(dp236505 +g225232 +S'Artist Information (' +p236506 +sg225240 +g27 +sg225234 +S'(artist after)' +p236507 +sg225230 +S'Barns' +p236508 +sg225236 +S'\n' +p236509 +sa(dp236510 +g225232 +S'Artist Information (' +p236511 +sg225240 +g27 +sg225234 +S'(artist after)' +p236512 +sg225230 +S'Farm with Shed for a Cart' +p236513 +sg225236 +S'\n' +p236514 +sa(dp236515 +g225232 +S'Artist Information (' +p236516 +sg225240 +g27 +sg225234 +S'(artist after)' +p236517 +sg225230 +S'Farm with Shed' +p236518 +sg225236 +S'\n' +p236519 +sa(dp236520 +g225232 +S'Artist Information (' +p236521 +sg225240 +g27 +sg225234 +S'(artist after)' +p236522 +sg225230 +S'Farmyard' +p236523 +sg225236 +S'\n' +p236524 +sa(dp236525 +g225232 +S'Artist Information (' +p236526 +sg225240 +g27 +sg225234 +S'(artist after)' +p236527 +sg225230 +S'A Farm' +p236528 +sg225236 +S'\n' +p236529 +sa(dp236530 +g225232 +S'Artist Information (' +p236531 +sg225240 +g27 +sg225234 +S'(artist after)' +p236532 +sg225230 +S'Farmyard' +p236533 +sg225236 +S'\n' +p236534 +sa(dp236535 +g225232 +S'Artist Information (' +p236536 +sg225240 +g27 +sg225234 +S'(artist after)' +p236537 +sg225230 +S'Topographia variarvm regionvm' +p236538 +sg225236 +S'\n' +p236539 +sa(dp236540 +g225232 +S'Artist Information (' +p236541 +sg225240 +g27 +sg225234 +S'(artist after)' +p236542 +sg225230 +S'A Farm' +p236543 +sg225236 +S'\n' +p236544 +sa(dp236545 +g225232 +S'Artist Information (' +p236546 +sg225240 +g27 +sg225234 +S'(artist after)' +p236547 +sg225230 +S'Farms' +p236548 +sg225236 +S'\n' +p236549 +sa(dp236550 +g225232 +S'Artist Information (' +p236551 +sg225240 +g27 +sg225234 +S'(artist after)' +p236552 +sg225230 +S'Barns' +p236553 +sg225236 +S'\n' +p236554 +sa(dp236555 +g225232 +S'Artist Information (' +p236556 +sg225240 +g27 +sg225234 +S'(artist after)' +p236557 +sg225230 +S'Farmyard' +p236558 +sg225236 +S'\n' +p236559 +sa(dp236560 +g225232 +S'Jan van de Velde II' +p236561 +sg225240 +g27 +sg225234 +S'etching' +p236562 +sg225230 +S'Road Leading to a Stone Bridge' +p236563 +sg225236 +S'unknown date\n' +p236564 +sa(dp236565 +g225232 +S'Artist Information (' +p236566 +sg225240 +g27 +sg225234 +S'(artist after)' +p236567 +sg225230 +S'Two Barns' +p236568 +sg225236 +S'\n' +p236569 +sa(dp236570 +g225232 +S'Artist Information (' +p236571 +sg225240 +g27 +sg225234 +S'(artist after)' +p236572 +sg225230 +S'A Barn' +p236573 +sg225236 +S'\n' +p236574 +sa(dp236575 +g225232 +S'Artist Information (' +p236576 +sg225240 +g27 +sg225234 +S'(artist after)' +p236577 +sg225230 +S'A Village' +p236578 +sg225236 +S'\n' +p236579 +sa(dp236580 +g225232 +S'Artist Information (' +p236581 +sg225240 +g27 +sg225234 +S'(artist after)' +p236582 +sg225230 +S'Tree and Mellons' +p236583 +sg225236 +S'\n' +p236584 +sa(dp236585 +g225232 +S'Cornelis Claesz van Wieringen' +p236586 +sg225240 +g27 +sg225234 +S', unknown date' +p236587 +sg225230 +S'Ver' +p236588 +sg225236 +S'\n' +p236589 +sa(dp236590 +g225232 +S'Artist Information (' +p236591 +sg225240 +g27 +sg225234 +S'(artist after)' +p236592 +sg225230 +S'Topographia variarvm regionvm' +p236593 +sg225236 +S'\n' +p236594 +sa(dp236595 +g225232 +S'Cornelis Claesz van Wieringen' +p236596 +sg225240 +g27 +sg225234 +S', unknown date' +p236597 +sg225230 +S'Aestas' +p236598 +sg225236 +S'\n' +p236599 +sa(dp236600 +g225232 +S'Cornelis Claesz van Wieringen' +p236601 +sg225240 +g27 +sg225234 +S', unknown date' +p236602 +sg225230 +S'Autumnus' +p236603 +sg225236 +S'\n' +p236604 +sa(dp236605 +g225232 +S'Cornelis Claesz van Wieringen' +p236606 +sg225240 +g27 +sg225234 +S', unknown date' +p236607 +sg225230 +S'Hyems' +p236608 +sg225236 +S'\n' +p236609 +sa(dp236610 +g225232 +S'Artist Information (' +p236611 +sg225240 +g27 +sg225234 +S'(artist after)' +p236612 +sg225230 +S'Topographia variarvm regionvm' +p236613 +sg225236 +S'\n' +p236614 +sa(dp236615 +g225232 +S'Artist Information (' +p236616 +sg225240 +g27 +sg225234 +S'(artist after)' +p236617 +sg225230 +S'Topographia variarvm regionvm' +p236618 +sg225236 +S'\n' +p236619 +sa(dp236620 +g225232 +S'Artist Information (' +p236621 +sg225240 +g27 +sg225234 +S'(artist after)' +p236622 +sg225230 +S'Title Page' +p236623 +sg225236 +S'\n' +p236624 +sa(dp236625 +g225232 +S'Artist Information (' +p236626 +sg225240 +g27 +sg225234 +S'(artist after)' +p236627 +sg225230 +S'Topographia variarvm regionvm' +p236628 +sg225236 +S'\n' +p236629 +sa(dp236630 +g225232 +S'Artist Information (' +p236631 +sg225240 +g27 +sg225234 +S'(artist after)' +p236632 +sg225230 +S'Topographia variarvm regionvm' +p236633 +sg225236 +S'\n' +p236634 +sa(dp236635 +g225232 +S'Artist Information (' +p236636 +sg225240 +g27 +sg225234 +S'(artist after)' +p236637 +sg225230 +S'Topographia variarvm regionvm' +p236638 +sg225236 +S'\n' +p236639 +sa(dp236640 +g225232 +S'Artist Information (' +p236641 +sg225240 +g27 +sg225234 +S'(artist after)' +p236642 +sg225230 +S'Topographia variarvm regionvm' +p236643 +sg225236 +S'\n' +p236644 +sa(dp236645 +g225232 +S'Artist Information (' +p236646 +sg225240 +g27 +sg225234 +S'(artist after)' +p236647 +sg225230 +S'Topographia variarvm regionvm' +p236648 +sg225236 +S'\n' +p236649 +sa(dp236650 +g225232 +S'Artist Information (' +p236651 +sg225240 +g27 +sg225234 +S'(artist after)' +p236652 +sg225230 +S'Topographia variarvm regionvm' +p236653 +sg225236 +S'\n' +p236654 +sa(dp236655 +g225232 +S'Artist Information (' +p236656 +sg225240 +g27 +sg225234 +S'(artist after)' +p236657 +sg225230 +S'Topographia variarvm regionvm' +p236658 +sg225236 +S'\n' +p236659 +sa(dp236660 +g225232 +S'Artist Information (' +p236661 +sg225240 +g27 +sg225234 +S'(artist after)' +p236662 +sg225230 +S'Topographia variarvm regionvm' +p236663 +sg225236 +S'\n' +p236664 +sa(dp236665 +g225232 +S'Artist Information (' +p236666 +sg225240 +g27 +sg225234 +S'(artist after)' +p236667 +sg225230 +S'Topographia variarvm regionvm' +p236668 +sg225236 +S'\n' +p236669 +sa(dp236670 +g225232 +S'Artist Information (' +p236671 +sg225240 +g27 +sg225234 +S'(artist after)' +p236672 +sg225230 +S'Topographia variarvm regionvm' +p236673 +sg225236 +S'\n' +p236674 +sa(dp236675 +g225232 +S'Artist Information (' +p236676 +sg225240 +g27 +sg225234 +S'(artist after)' +p236677 +sg225230 +S'Topographia variarvm regionvm' +p236678 +sg225236 +S'\n' +p236679 +sa(dp236680 +g225232 +S'Artist Information (' +p236681 +sg225240 +g27 +sg225234 +S'(artist after)' +p236682 +sg225230 +S'Topographia variarvm regionvm' +p236683 +sg225236 +S'\n' +p236684 +sa(dp236685 +g225232 +S'Artist Information (' +p236686 +sg225240 +g27 +sg225234 +S'(artist after)' +p236687 +sg225230 +S'Topographia variarvm regionvm' +p236688 +sg225236 +S'\n' +p236689 +sa(dp236690 +g225232 +S'Artist Information (' +p236691 +sg225240 +g27 +sg225234 +S'(artist after)' +p236692 +sg225230 +S'Topographia variarvm regionvm' +p236693 +sg225236 +S'\n' +p236694 +sa(dp236695 +g225232 +S'Artist Information (' +p236696 +sg225240 +g27 +sg225234 +S'(artist after)' +p236697 +sg225230 +S'Topographia variarvm regionvm' +p236698 +sg225236 +S'\n' +p236699 +sa(dp236700 +g225232 +S'Artist Information (' +p236701 +sg225240 +g27 +sg225234 +S'(artist after)' +p236702 +sg225230 +S'Topographia variarvm regionvm' +p236703 +sg225236 +S'\n' +p236704 +sa(dp236705 +g225232 +S'Artist Information (' +p236706 +sg225240 +g27 +sg225234 +S'(artist after)' +p236707 +sg225230 +S'Topographia variarvm regionvm' +p236708 +sg225236 +S'\n' +p236709 +sa(dp236710 +g225232 +S'Artist Information (' +p236711 +sg225240 +g27 +sg225234 +S'(artist after)' +p236712 +sg225230 +S'Topographia variarvm regionvm' +p236713 +sg225236 +S'\n' +p236714 +sa(dp236715 +g225232 +S'Artist Information (' +p236716 +sg225240 +g27 +sg225234 +S'(artist after)' +p236717 +sg225230 +S'Topographia variarvm regionvm' +p236718 +sg225236 +S'\n' +p236719 +sa(dp236720 +g225232 +S'Artist Information (' +p236721 +sg225240 +g27 +sg225234 +S'(artist after)' +p236722 +sg225230 +S'View of a Town at a River' +p236723 +sg225236 +S'\n' +p236724 +sa(dp236725 +g225232 +S'Artist Information (' +p236726 +sg225240 +g27 +sg225234 +S'(artist after)' +p236727 +sg225230 +S'Topographia variarvm regionvm' +p236728 +sg225236 +S'\n' +p236729 +sa(dp236730 +g225232 +S'Artist Information (' +p236731 +sg225240 +g27 +sg225234 +S'(artist after)' +p236732 +sg225230 +S'Topographia variarvm regionvm' +p236733 +sg225236 +S'\n' +p236734 +sa(dp236735 +g225232 +S'Artist Information (' +p236736 +sg225240 +g27 +sg225234 +S'(artist after)' +p236737 +sg225230 +S'Topographia variarvm regionvm' +p236738 +sg225236 +S'\n' +p236739 +sa(dp236740 +g225232 +S'Artist Information (' +p236741 +sg225240 +g27 +sg225234 +S'(artist after)' +p236742 +sg225230 +S'Topographia variarvm regionvm' +p236743 +sg225236 +S'\n' +p236744 +sa(dp236745 +g225232 +S'Artist Information (' +p236746 +sg225240 +g27 +sg225234 +S'(artist after)' +p236747 +sg225230 +S'Topographia variarvm regionvm' +p236748 +sg225236 +S'\n' +p236749 +sa(dp236750 +g225232 +S'Artist Information (' +p236751 +sg225240 +g27 +sg225234 +S'(artist after)' +p236752 +sg225230 +S'Topographia variarvm regionvm' +p236753 +sg225236 +S'\n' +p236754 +sa(dp236755 +g225232 +S'Artist Information (' +p236756 +sg225240 +g27 +sg225234 +S'(artist after)' +p236757 +sg225230 +S'Topographia variarvm regionvm' +p236758 +sg225236 +S'\n' +p236759 +sa(dp236760 +g225232 +S'Artist Information (' +p236761 +sg225240 +g27 +sg225234 +S'(artist after)' +p236762 +sg225230 +S'Topographia variarvm regionvm' +p236763 +sg225236 +S'\n' +p236764 +sa(dp236765 +g225232 +S'Artist Information (' +p236766 +sg225240 +g27 +sg225234 +S'(artist after)' +p236767 +sg225230 +S'Topographia variarvm regionvm' +p236768 +sg225236 +S'\n' +p236769 +sa(dp236770 +g225232 +S'Artist Information (' +p236771 +sg225240 +g27 +sg225234 +S'(artist after)' +p236772 +sg225230 +S'Topographia variarvm regionvm' +p236773 +sg225236 +S'\n' +p236774 +sa(dp236775 +g225232 +S'Jan van de Velde II' +p236776 +sg225240 +g27 +sg225234 +S'etching' +p236777 +sg225230 +S'Title: An Antique Gate' +p236778 +sg225236 +S'1616' +p236779 +sa(dp236780 +g225232 +S'Jan van de Velde II' +p236781 +sg225240 +g27 +sg225234 +S'etching' +p236782 +sg225230 +S'Brewery along a Frozen River' +p236783 +sg225236 +S'1616' +p236784 +sa(dp236785 +g225232 +S'Jan van de Velde II' +p236786 +sg225240 +g27 +sg225234 +S'etching' +p236787 +sg225230 +S'Farmyard with Square Ruined Tower Used as Barn' +p236788 +sg225236 +S'1616' +p236789 +sa(dp236790 +g225232 +S'Jan van de Velde II' +p236791 +sg225240 +g27 +sg225234 +S'etching' +p236792 +sg225230 +S'Inn at a Square Tower' +p236793 +sg225236 +S'1616' +p236794 +sa(dp236795 +g225232 +S'Jan van de Velde II' +p236796 +sg225240 +g27 +sg225234 +S'etching' +p236797 +sg225230 +S'Inn at a Square Tower' +p236798 +sg225236 +S'1616' +p236799 +sa(dp236800 +g225232 +S'Artist Information (' +p236801 +sg225240 +g27 +sg225234 +S'(artist after)' +p236802 +sg225230 +S'Topographia variarvm regionvm' +p236803 +sg225236 +S'\n' +p236804 +sa(dp236805 +g225232 +S'Jan van de Velde II' +p236806 +sg225240 +g27 +sg225234 +S'etching' +p236807 +sg225230 +S'Inn at a Round Tower' +p236808 +sg225236 +S'1616' +p236809 +sa(dp236810 +g225232 +S'Jan van de Velde II' +p236811 +sg225240 +g27 +sg225234 +S'etching' +p236812 +sg225230 +S'The Prodigal Son Feeding the Swine' +p236813 +sg225236 +S'1616' +p236814 +sa(dp236815 +g225232 +S'Jan van de Velde II' +p236816 +sg225240 +g27 +sg225234 +S'etching' +p236817 +sg225230 +S'View of a Town' +p236818 +sg225236 +S'1616' +p236819 +sa(dp236820 +g225232 +S'Jan van de Velde II' +p236821 +sg225240 +g27 +sg225234 +S'etching' +p236822 +sg225230 +S'Ruins of a Castle Surrounded by a Moat' +p236823 +sg225236 +S'1616' +p236824 +sa(dp236825 +g225232 +S'Jan van de Velde II' +p236826 +sg225240 +g27 +sg225234 +S'etching' +p236827 +sg225230 +S'The Castle' +p236828 +sg225236 +S'1616' +p236829 +sa(dp236830 +g225232 +S'Jan van de Velde II' +p236831 +sg225240 +g27 +sg225234 +S'etching' +p236832 +sg225230 +S'Evening: Travellers on a Road near an Inn' +p236833 +sg225236 +S'1616' +p236834 +sa(dp236835 +g225232 +S'Jan van de Velde II' +p236836 +sg225240 +g27 +sg225234 +S'etching' +p236837 +sg225230 +S'Draw-Well Built against a Tower' +p236838 +sg225236 +S'1616' +p236839 +sa(dp236840 +g225232 +S'Jan van de Velde II' +p236841 +sg225240 +g27 +sg225234 +S'etching' +p236842 +sg225230 +S'Title: A Market Scene' +p236843 +sg225236 +S'1616' +p236844 +sa(dp236845 +g225232 +S'Jan van de Velde II' +p236846 +sg225240 +g27 +sg225234 +S'etching' +p236847 +sg225230 +S'Country Road along a Dilapidated Church' +p236848 +sg225236 +S'1616' +p236849 +sa(dp236850 +g225232 +S'Jan van de Velde II' +p236851 +sg225240 +g27 +sg225234 +S'etching' +p236852 +sg225230 +S'Dovecot' +p236853 +sg225236 +S'1616' +p236854 +sa(dp236855 +g225232 +S'Artist Information (' +p236856 +sg225240 +g27 +sg225234 +S'(artist after)' +p236857 +sg225230 +S'Topographia variarvm regionvm' +p236858 +sg225236 +S'\n' +p236859 +sa(dp236860 +g225232 +S'Jan van de Velde II' +p236861 +sg225240 +g27 +sg225234 +S'etching' +p236862 +sg225230 +S'Dilapidated Barn' +p236863 +sg225236 +S'1616' +p236864 +sa(dp236865 +g225232 +S'Jan van de Velde II' +p236866 +sg225240 +g27 +sg225234 +S'etching' +p236867 +sg225230 +S'Old Tower used as a Lighthouse' +p236868 +sg225236 +S'1616' +p236869 +sa(dp236870 +g225232 +S'Jan van de Velde II' +p236871 +sg225240 +g27 +sg225234 +S'etching' +p236872 +sg225230 +S'A Winter Landscape with Skaters on a Canal' +p236873 +sg225236 +S'1616' +p236874 +sa(dp236875 +g225232 +S'Jan van de Velde II' +p236876 +sg225240 +g27 +sg225234 +S'etching' +p236877 +sg225230 +S'Ferry in front of a Stone Bridge' +p236878 +sg225236 +S'1616' +p236879 +sa(dp236880 +g225232 +S'Jan van de Velde II' +p236881 +sg225240 +g27 +sg225234 +S'etching' +p236882 +sg225230 +S'Landscape with Square Tower' +p236883 +sg225236 +S'1616' +p236884 +sa(dp236885 +g225232 +S'Jan van de Velde II' +p236886 +sg225240 +g27 +sg225234 +S'etching' +p236887 +sg225230 +S'Bastion with Tower and Chapel' +p236888 +sg225236 +S'1616' +p236889 +sa(dp236890 +g225232 +S'Jan van de Velde II' +p236891 +sg225240 +g27 +sg225234 +S'etching' +p236892 +sg225230 +S'Walled Castle' +p236893 +sg225236 +S'1616' +p236894 +sa(dp236895 +g225232 +S'Jan van de Velde II' +p236896 +sg225240 +g27 +sg225234 +S'etching' +p236897 +sg225230 +S'Farm Built against a Square Tower' +p236898 +sg225236 +S'1616' +p236899 +sa(dp236900 +g225232 +S'Jan van de Velde II' +p236901 +sg225240 +g27 +sg225234 +S'etching' +p236902 +sg225230 +S"'Het Huis te Kleef'" +p236903 +sg225236 +S'1616' +p236904 +sa(dp236905 +g225232 +S'Jan van de Velde II' +p236906 +sg225240 +g27 +sg225234 +S'etching' +p236907 +sg225230 +S'Title' +p236908 +sg225236 +S'1616' +p236909 +sa(dp236910 +g225232 +S'Artist Information (' +p236911 +sg225240 +g27 +sg225234 +S'(artist after)' +p236912 +sg225230 +S'Topographia variarvm regionvm' +p236913 +sg225236 +S'\n' +p236914 +sa(dp236915 +g225232 +S'Jan van de Velde II' +p236916 +sg225240 +g27 +sg225234 +S'etching' +p236917 +sg225230 +S'Ruins of Brederode Castle' +p236918 +sg225236 +S'1616' +p236919 +sa(dp236920 +g225232 +S'Jan van de Velde II' +p236921 +sg225240 +g27 +sg225234 +S'etching' +p236922 +sg225230 +S'Wooded Landscape with Horseman on a Path' +p236923 +sg225236 +S'1616' +p236924 +sa(dp236925 +g225232 +S'Jan van de Velde II' +p236926 +sg225240 +g27 +sg225234 +S'etching' +p236927 +sg225230 +S'Roman Ruins in Wooded Surroundings' +p236928 +sg225236 +S'1616' +p236929 +sa(dp236930 +g225232 +S'Jan van de Velde II' +p236931 +sg225240 +g27 +sg225234 +S'etching' +p236932 +sg225230 +S'Farmyard with Inhabited Ruins' +p236933 +sg225236 +S'1616' +p236934 +sa(dp236935 +g225232 +S'Jan van de Velde II' +p236936 +sg225240 +g27 +sg225234 +S'etching' +p236937 +sg225230 +S'Travellers on a Road near a Village' +p236938 +sg225236 +S'1616' +p236939 +sa(dp236940 +g225232 +S'Jan van de Velde II' +p236941 +sg225240 +g27 +sg225234 +S'etching' +p236942 +sg225230 +S'Tobias and the Angel with the Casa dei Crescenzi' +p236943 +sg225236 +S'1616' +p236944 +sa(dp236945 +g225232 +S'Jan van de Velde II' +p236946 +sg225240 +g27 +sg225234 +S'etching' +p236947 +sg225230 +S'Country Road through a Village' +p236948 +sg225236 +S'1616' +p236949 +sa(dp236950 +g225232 +S'Jan van de Velde II' +p236951 +sg225240 +g27 +sg225234 +S'etching' +p236952 +sg225230 +S'Cascade under a Stone Bridge' +p236953 +sg225236 +S'1616' +p236954 +sa(dp236955 +g225232 +S'Jan van de Velde II' +p236956 +sg225240 +g27 +sg225234 +S'etching' +p236957 +sg225230 +S'Stone Bridge near an Inn' +p236958 +sg225236 +S'1616' +p236959 +sa(dp236960 +g225232 +S'Jan van de Velde II' +p236961 +sg225240 +g27 +sg225234 +S'etching' +p236962 +sg225230 +S'Abraham Casting out Hagar and Ishmael' +p236963 +sg225236 +S'1616' +p236964 +sa(dp236965 +g225232 +S'Artist Information (' +p236966 +sg225240 +g27 +sg225234 +S'(artist after)' +p236967 +sg225230 +S'Topographia variarvm regionvm' +p236968 +sg225236 +S'\n' +p236969 +sa(dp236970 +g225232 +S'Jan van de Velde II' +p236971 +sg225240 +g27 +sg225234 +S'etching' +p236972 +sg225230 +S'Winter Landscape with a Square Tower used as an Inn' +p236973 +sg225236 +S'1616' +p236974 +sa(dp236975 +g225232 +S'Jan van de Velde II' +p236976 +sg225240 +g27 +sg225234 +S'etching' +p236977 +sg225230 +S'Title' +p236978 +sg225236 +S'1616' +p236979 +sa(dp236980 +g225232 +S'Jan van de Velde II' +p236981 +sg225240 +g27 +sg225234 +S'etching' +p236982 +sg225230 +S'Farm along a Country Road' +p236983 +sg225236 +S'1616' +p236984 +sa(dp236985 +g225232 +S'Jan van de Velde II' +p236986 +sg225240 +g27 +sg225234 +S'etching' +p236987 +sg225230 +S'Landscape with Round Tower' +p236988 +sg225236 +S'1616' +p236989 +sa(dp236990 +g225232 +S'Jan van de Velde II' +p236991 +sg225240 +g27 +sg225234 +S'etching' +p236992 +sg225230 +S'Mercury and Herse' +p236993 +sg225236 +S'1616' +p236994 +sa(dp236995 +g225232 +S'Jan van de Velde II' +p236996 +sg225240 +g27 +sg225234 +S'etching' +p236997 +sg225230 +S'Road Leading to a Stone Bridge' +p236998 +sg225236 +S'1616' +p236999 +sa(dp237000 +g225232 +S'Jan van de Velde II' +p237001 +sg225240 +g27 +sg225234 +S'etching' +p237002 +sg225230 +S'Inn along a Country Road' +p237003 +sg225236 +S'1616' +p237004 +sa(dp237005 +g225232 +S'Jan van de Velde II' +p237006 +sg225240 +g27 +sg225234 +S'etching' +p237007 +sg225230 +S'The Zijlpoort at Haarlem' +p237008 +sg225236 +S'1616' +p237009 +sa(dp237010 +g225232 +S'Jan van de Velde II' +p237011 +sg225240 +g27 +sg225234 +S'etching' +p237012 +sg225230 +S'Dilapidated Church-Tower Surrounded by Houses' +p237013 +sg225236 +S'1616' +p237014 +sa(dp237015 +g225232 +S'Jan van de Velde II' +p237016 +sg225240 +g27 +sg225234 +S'etching' +p237017 +sg225230 +S'Beacons at the Banks of a River' +p237018 +sg225236 +S'1616' +p237019 +sa(dp237020 +g225232 +S'Lyonel Feininger' +p237021 +sg225240 +g27 +sg225234 +S'woodcut on ordinary laid Chinese paper (Japanese paper?) [proof]' +p237022 +sg225230 +S'Benz, 2' +p237023 +sg225236 +S'1919' +p237024 +sa(dp237025 +g225232 +S'Egon Schiele' +p237026 +sg225240 +g27 +sg225234 +S'lithograph' +p237027 +sg225230 +S'Madchen' +p237028 +sg225236 +S'published 1922' +p237029 +sa(dp237030 +g225232 +S'Egon Schiele' +p237031 +sg225240 +g27 +sg225234 +S'portfolio with two lithographs, six drypoints, plus title page, table of contents, and introduction' +p237032 +sg225230 +S'Das Graphische Werk von Egon Schiele' +p237033 +sg225236 +S'published 1922' +p237034 +sa(dp237035 +g225232 +S'Egon Schiele' +p237036 +sg225240 +g27 +sg225234 +S'lithograph' +p237037 +sg225230 +S'Paris von Gutersloh' +p237038 +sg225236 +S'published 1922' +p237039 +sa(dp237040 +g225232 +S'Egon Schiele' +p237041 +sg225240 +g27 +sg225234 +S'drypoint' +p237042 +sg225230 +S'Kauernde (Sorrow)' +p237043 +sg225236 +S'published 1922' +p237044 +sa(dp237045 +g225230 +S'Kummernis' +p237046 +sg225232 +S'Egon Schiele' +p237047 +sg225234 +S'drypoint' +p237048 +sg225236 +S'published 1922' +p237049 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d7e8.jpg' +p237050 +sg225240 +g27 +sa(dp237051 +g225232 +S'Egon Schiele' +p237052 +sg225240 +g27 +sg225234 +S'drypoint' +p237053 +sg225230 +S'Arthur Roessler' +p237054 +sg225236 +S'published 1922' +p237055 +sa(dp237056 +g225232 +S'Egon Schiele' +p237057 +sg225240 +g27 +sg225234 +S'drypoint' +p237058 +sg225230 +S'Franz Hauer' +p237059 +sg225236 +S'published 1922' +p237060 +sa(dp237061 +g225232 +S'Egon Schiele' +p237062 +sg225240 +g27 +sg225234 +S'drypoint' +p237063 +sg225230 +S'Selbstportrat' +p237064 +sg225236 +S'published 1922' +p237065 +sa(dp237066 +g225232 +S'Egon Schiele' +p237067 +sg225240 +g27 +sg225234 +S'drypoint' +p237068 +sg225230 +S'Mannliches Bildnis' +p237069 +sg225236 +S'published 1922' +p237070 +sa(dp237071 +g225230 +S'Portrait of a Young Man' +p237072 +sg225232 +S'Gian Lorenzo Bernini' +p237073 +sg225234 +S'black and red chalk heightened with white chalk' +p237074 +sg225236 +S'c. 1615' +p237075 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00055/a000552a.jpg' +p237076 +sg225240 +g27 +sa(dp237077 +g225230 +S"Woman's Head" +p237078 +sg225232 +S'Constantin Brancusi' +p237079 +sg225234 +S'crayon' +p237080 +sg225236 +S'c. 1910' +p237081 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00029/a0002956.jpg' +p237082 +sg225240 +g27 +sa(dp237083 +g225230 +S'Midnight' +p237084 +sg225232 +S'Henry Fuseli' +p237085 +sg225234 +S'pen and brown ink with brown wash on laid paper' +p237086 +sg225236 +S'1765' +p237087 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00033/a00033d1.jpg' +p237088 +sg225240 +g27 +sa(dp237089 +g225230 +S'Man and Woman on Bench' +p237090 +sg225232 +S'Juan Gris' +p237091 +sg225234 +S'charcoal, gouache, and watercolor' +p237092 +sg225236 +S'1908/1909' +p237093 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a00065e0.jpg' +p237094 +sg225240 +g27 +sa(dp237095 +g225230 +S'Seated Prophet' +p237096 +sg225232 +S'Artist Information (' +p237097 +sg225234 +S'Italian, 1591 - 1666' +p237098 +sg225236 +S'(related artist)' +p237099 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074b6.jpg' +p237100 +sg225240 +g27 +sa(dp237101 +g225230 +S'River Landscape' +p237102 +sg225232 +S'German 16th Century' +p237103 +sg225234 +S'overall: 20.6 x 31.8 cm (8 1/8 x 12 1/2 in.)' +p237104 +sg225236 +S'\npen and black ink with white heightening on red-brown prepared paper' +p237105 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a000796b.jpg' +p237106 +sg225240 +g27 +sa(dp237107 +g225230 +S'Eight Ladies in Ancient Costumes' +p237108 +sg225232 +S'Melchior Lorch' +p237109 +sg225234 +S'pen and brown ink on laid paper' +p237110 +sg225236 +S'1567/1573' +p237111 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006ab0.jpg' +p237112 +sg225240 +g27 +sa(dp237113 +g225232 +S'Claude Emile Schuffenecker' +p237114 +sg225240 +g27 +sg225234 +S'pastel on laid paper' +p237115 +sg225230 +S'Meditation' +p237116 +sg225236 +S'unknown date\n' +p237117 +sa(dp237118 +g225230 +S'Mystic Marriage of Saint Catherine with Saint Jerome' +p237119 +sg225232 +S'Francesco Vanni' +p237120 +sg225234 +S'black chalk on light brown paper squared in brown ink' +p237121 +sg225236 +S'unknown date\n' +p237122 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007441.jpg' +p237123 +sg225240 +g27 +sa(dp237124 +g225230 +S'Woman Combing Her Hair' +p237125 +sg225232 +S'Alexander Archipenko' +p237126 +sg225234 +S'bronze' +p237127 +sg225236 +S'model 1915, cast c. 1958' +p237128 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a000164f.jpg' +p237129 +sg225240 +g27 +sa(dp237130 +g225232 +S'Jean Arp' +p237131 +sg225240 +g27 +sg225234 +S'bronze' +p237132 +sg225230 +S'Grande Sculpture Classique' +p237133 +sg225236 +S'1963/1964' +p237134 +sa(dp237135 +g225230 +S'Torso of a Young Man' +p237136 +sg225232 +S'Raymond Duchamp-Villon' +p237137 +sg225234 +S'bronze' +p237138 +sg225236 +S'1910' +p237139 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004a/a0004a0e.jpg' +p237140 +sg225240 +g27 +sa(dp237141 +g225232 +S'George Segal' +p237142 +sg225240 +g27 +sg225234 +S'plaster and mixed media' +p237143 +sg225230 +S'Girl Putting on an Earring' +p237144 +sg225236 +S'1967' +p237145 +sa(dp237146 +g225230 +S'Fantastic Heads' +p237147 +sg225232 +S'Artist Information (' +p237148 +sg225234 +S'(artist)' +p237149 +sg225236 +S'\n' +p237150 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0bf.jpg' +p237151 +sg225240 +g27 +sa(dp237152 +g225230 +S'Fantastic Heads' +p237153 +sg225232 +S'Artist Information (' +p237154 +sg225234 +S'(artist)' +p237155 +sg225236 +S'\n' +p237156 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0be.jpg' +p237157 +sg225240 +g27 +sa(dp237158 +g225230 +S'Grotesque Heads' +p237159 +sg225232 +S'Jacques de Gheyn III' +p237160 +sg225234 +S'etching' +p237161 +sg225236 +S'1638' +p237162 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d250.jpg' +p237163 +sg225240 +g27 +sa(dp237164 +g225230 +S'Ornament' +p237165 +sg225232 +S'Cornelis Floris II' +p237166 +sg225234 +S'etching and engraving' +p237167 +sg225236 +S'1557' +p237168 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf69.jpg' +p237169 +sg225240 +g27 +sa(dp237170 +g225230 +S'Ornament' +p237171 +sg225232 +S'Cornelis Floris II' +p237172 +sg225234 +S'etching and engraving' +p237173 +sg225236 +S'1557' +p237174 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf68.jpg' +p237175 +sg225240 +g27 +sa(dp237176 +g225230 +S'The Annunciation' +p237177 +sg225232 +S'Adriaan de Weerdt' +p237178 +sg225234 +S'engraving' +p237179 +sg225236 +S'1573' +p237180 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d023.jpg' +p237181 +sg225240 +g27 +sa(dp237182 +g225230 +S'Massacre of the Innocents [recto]' +p237183 +sg225232 +S'Bertoia' +p237184 +sg225234 +S'pen and brown ink with brown wash on blue-green paper' +p237185 +sg225236 +S'unknown date\n' +p237186 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074f4.jpg' +p237187 +sg225240 +g27 +sa(dp237188 +g225232 +S'Bertoia' +p237189 +sg225240 +g27 +sg225234 +S'pen and brown ink with black chalk on blue-green paper' +p237190 +sg225230 +S'Studies of Heads and Male Nudes [verso]' +p237191 +sg225236 +S'unknown date\n' +p237192 +sa(dp237193 +g225232 +S'Man Ray' +p237194 +sg225240 +g27 +sg225234 +S'lithograph on Rives BFK paper' +p237195 +sg225230 +S'Untitled' +p237196 +sg225236 +S'1966' +p237197 +sa(dp237198 +g225230 +S'View of Mons, Belgium' +p237199 +sg225232 +S'Josua de Grave' +p237200 +sg225234 +S'pen in brown ink with gray wash on laid paper' +p237201 +sg225236 +S'unknown date\n' +p237202 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007242.jpg' +p237203 +sg225240 +g27 +sa(dp237204 +g225230 +S'Tea' +p237205 +sg225232 +S'Mary Cassatt' +p237206 +sg225234 +S'drypoint' +p237207 +sg225236 +S'c. 1890' +p237208 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f2/a000f293.jpg' +p237209 +sg225240 +g27 +sa(dp237210 +g225230 +S'Mon Enfant (My Child)' +p237211 +sg225232 +S'Odilon Redon' +p237212 +sg225234 +S'lithograph in black on laid Chinese paper' +p237213 +sg225236 +S'1892' +p237214 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c91.jpg' +p237215 +sg225240 +g27 +sa(dp237216 +g225230 +S'Isola del Lazaretto Nuovo' +p237217 +sg225232 +S'Francesco Tironi' +p237218 +sg225234 +S'pen and brown ink with gray wash on laid paper' +p237219 +sg225236 +S'1778/1779' +p237220 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a000743b.jpg' +p237221 +sg225240 +g27 +sa(dp237222 +g225230 +S'The Infant Christ and Saint John Playing with the Lamb' +p237223 +sg225232 +S'Artist Information (' +p237224 +sg225234 +S'(artist after)' +p237225 +sg225236 +S'\n' +p237226 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d16.jpg' +p237227 +sg225240 +g27 +sa(dp237228 +g225230 +S'Old Woman' +p237229 +sg225232 +S'Paula Modersohn-Becker' +p237230 +sg225234 +S'etching and aquatint' +p237231 +sg225236 +S'posthumous printing after 1919 by Felsing' +p237232 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b595.jpg' +p237233 +sg225240 +g27 +sa(dp237234 +g225232 +S'Edvard Munch' +p237235 +sg225240 +g27 +sg225234 +S'drypoint on buff paper' +p237236 +sg225230 +S'Study of a Model (Modellstudie)' +p237237 +sg225236 +S'1894/1895' +p237238 +sa(dp237239 +g225230 +S'Two Nude Men' +p237240 +sg225232 +S'Artist Information (' +p237241 +sg225234 +S'(artist after)' +p237242 +sg225236 +S'\n' +p237243 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c81d.jpg' +p237244 +sg225240 +g27 +sa(dp237245 +g225230 +S'Centauresse' +p237246 +sg225232 +S'Stanley William Hayter' +p237247 +sg225234 +S'engraving in black [state I]' +p237248 +sg225236 +S'1944' +p237249 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00060/a0006071.jpg' +p237250 +sg225240 +g27 +sa(dp237251 +g225230 +S'Centauresse' +p237252 +sg225232 +S'Stanley William Hayter' +p237253 +sg225234 +S'engraving and soft-ground etching in brown-red [state II]' +p237254 +sg225236 +S'1944' +p237255 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00060/a000606d.jpg' +p237256 +sg225240 +g27 +sa(dp237257 +g225230 +S'Centauresse' +p237258 +sg225232 +S'Stanley William Hayter' +p237259 +sg225234 +S'engraving and soft-ground etching in black [state II-III/III]' +p237260 +sg225236 +S'1944' +p237261 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00060/a000606e.jpg' +p237262 +sg225240 +g27 +sa(dp237263 +g225230 +S'Centauresse' +p237264 +sg225232 +S'Stanley William Hayter' +p237265 +sg225234 +S'engraving and softground etching with stencil inking' +p237266 +sg225236 +S'1944' +p237267 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00060/a000606f.jpg' +p237268 +sg225240 +g27 +sa(dp237269 +g225230 +S'Centauresse' +p237270 +sg225232 +S'Stanley William Hayter' +p237271 +sg225234 +S'engraving and softground etching with stencil inking' +p237272 +sg225236 +S'1944' +p237273 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00060/a0006070.jpg' +p237274 +sg225240 +g27 +sa(dp237275 +g225230 +S'The Flight into Egypt (La fuite en Egypte)' +p237276 +sg225232 +S'Claude Lorrain' +p237277 +sg225234 +S'etching' +p237278 +sg225236 +S'c. 1630/1633' +p237279 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089a6.jpg' +p237280 +sg225240 +g27 +sa(dp237281 +g225232 +S'L\xc3\xa1szl\xc3\xb3 Moholy-Nagy' +p237282 +sg225240 +g27 +sg225234 +S'linocut' +p237283 +sg225230 +S'Abstraction II' +p237284 +sg225236 +S'1922' +p237285 +sa(dp237286 +g225232 +S'L\xc3\xa1szl\xc3\xb3 Moholy-Nagy' +p237287 +sg225240 +g27 +sg225234 +S'linocut' +p237288 +sg225230 +S'Abstraction III' +p237289 +sg225236 +S'1922' +p237290 +sa(dp237291 +g225232 +S'Jacques Villon' +p237292 +sg225240 +g27 +sg225234 +S'drypoint' +p237293 +sg225230 +S'Visiting (En visite)' +p237294 +sg225236 +S'1905' +p237295 +sa(dp237296 +g225230 +S'Seated Bishop' +p237297 +sg225232 +S'Abraham Bloemaert' +p237298 +sg225234 +S'pen and brown ink and chalk with brown wash heightened with white' +p237299 +sg225236 +S'unknown date\n' +p237300 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fe0.jpg' +p237301 +sg225240 +g27 +sa(dp237302 +g225230 +S'View of Fondi' +p237303 +sg225232 +S'Anonymous Fabriczy' +p237304 +sg225234 +S', second half 16th century' +p237305 +sg225236 +S'\n' +p237306 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a00070e0.jpg' +p237307 +sg225240 +g27 +sa(dp237308 +g225230 +S'Aeneas Carrying Anchises from Burning Troy' +p237309 +sg225232 +S'Gaspare Diziani' +p237310 +sg225234 +S'pen and brown ink with gray wash on tan laid paper' +p237311 +sg225236 +S'c. 1733' +p237312 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00024/a0002439.jpg' +p237313 +sg225240 +g27 +sa(dp237314 +g225230 +S'Classical Landscape with a Fountain' +p237315 +sg225232 +S'Paul Bril' +p237316 +sg225234 +S'pen and brown ink with brown and gray wash over black chalk' +p237317 +sg225236 +S'unknown date\n' +p237318 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a0006577.jpg' +p237319 +sg225240 +g27 +sa(dp237320 +g225230 +S'The Martyrdom of Saint Lawrence' +p237321 +sg225232 +S'Luca Cambiaso' +p237322 +sg225234 +S'pen and brown ink with brown wash on laid paper' +p237323 +sg225236 +S'unknown date\n' +p237324 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a0007533.jpg' +p237325 +sg225240 +g27 +sa(dp237326 +g225232 +S'Jean Dubuffet' +p237327 +sg225240 +g27 +sg225234 +S'color lithograph' +p237328 +sg225230 +S'Le promeneur' +p237329 +sg225236 +S'1958' +p237330 +sa(dp237331 +g225232 +S'Jean Dubuffet' +p237332 +sg225240 +g27 +sg225234 +S'lithograph' +p237333 +sg225230 +S'Salissures' +p237334 +sg225236 +S'1959' +p237335 +sa(dp237336 +g225232 +S'Jean Dubuffet' +p237337 +sg225240 +g27 +sg225234 +S'lithograph' +p237338 +sg225230 +S'Inscriptions legeres' +p237339 +sg225236 +S'1959' +p237340 +sa(dp237341 +g225232 +S'Jean Dubuffet' +p237342 +sg225240 +g27 +sg225234 +S'lithograph' +p237343 +sg225230 +S'Situation temporaire' +p237344 +sg225236 +S'1959' +p237345 +sa(dp237346 +g225232 +S'Jean Dubuffet' +p237347 +sg225240 +g27 +sg225234 +S'color lithograph' +p237348 +sg225230 +S'Profusion' +p237349 +sg225236 +S'1959' +p237350 +sa(dp237351 +g225232 +S'Jean Dubuffet' +p237352 +sg225240 +g27 +sg225234 +S'color lithograph' +p237353 +sg225230 +S'Rumeur' +p237354 +sg225236 +S'1959' +p237355 +sa(dp237356 +g225232 +S'Jean Dubuffet' +p237357 +sg225240 +g27 +sg225234 +S'color lithograph' +p237358 +sg225230 +S'Texte decrepit' +p237359 +sg225236 +S'1959' +p237360 +sa(dp237361 +g225232 +S'Jean Dubuffet' +p237362 +sg225240 +g27 +sg225234 +S'color lithograph' +p237363 +sg225230 +S'Texturologie' +p237364 +sg225236 +S'1958' +p237365 +sa(dp237366 +g225232 +S'Jean Dubuffet' +p237367 +sg225240 +g27 +sg225234 +S'lithograph' +p237368 +sg225230 +S'Aire nue' +p237369 +sg225236 +S'1959' +p237370 +sa(dp237371 +g225232 +S'Jean Dubuffet' +p237372 +sg225240 +g27 +sg225234 +S'color lithograph' +p237373 +sg225230 +S'Esprit de terre' +p237374 +sg225236 +S'1959' +p237375 +sa(dp237376 +g225232 +S'Jean Dubuffet' +p237377 +sg225240 +g27 +sg225234 +S'color lithograph' +p237378 +sg225230 +S'Impatience' +p237379 +sg225236 +S'1959' +p237380 +sa(dp237381 +g225232 +S'Jean Dubuffet' +p237382 +sg225240 +g27 +sg225234 +S'color lithograph' +p237383 +sg225230 +S'Ampleur' +p237384 +sg225236 +S'1959' +p237385 +sa(dp237386 +g225232 +S'Jean Dubuffet' +p237387 +sg225240 +g27 +sg225234 +S'color lithograph' +p237388 +sg225230 +S'Douce emprise' +p237389 +sg225236 +S'1958' +p237390 +sa(dp237391 +g225232 +S'Jean Dubuffet' +p237392 +sg225240 +g27 +sg225234 +S'color lithograph' +p237393 +sg225230 +S'Champ de pensee' +p237394 +sg225236 +S'1959' +p237395 +sa(dp237396 +g225232 +S'Jean Dubuffet' +p237397 +sg225240 +g27 +sg225234 +S'color lithograph' +p237398 +sg225230 +S'Sol becquet\xc3\xa9' +p237399 +sg225236 +S'1958' +p237400 +sa(dp237401 +g225232 +S'Jean Dubuffet' +p237402 +sg225240 +g27 +sg225234 +S'color lithograph' +p237403 +sg225230 +S'Allegresse' +p237404 +sg225236 +S'1959' +p237405 +sa(dp237406 +g225232 +S'Jean Dubuffet' +p237407 +sg225240 +g27 +sg225234 +S'color lithograph' +p237408 +sg225230 +S'Silence au sol' +p237409 +sg225236 +S'1959' +p237410 +sa(dp237411 +g225232 +S'Jean Dubuffet' +p237412 +sg225240 +g27 +sg225234 +S'portfolio with ten color lithograph' +p237413 +sg225230 +S'Les Ph\xc3\xa9nom\xc3\xa8nes: Champs de silence' +p237414 +sg225236 +S'1959' +p237415 +sa(dp237416 +g225232 +S'Jean Dubuffet' +p237417 +sg225240 +g27 +sg225234 +S'color lithograph' +p237418 +sg225230 +S'Obscure communication' +p237419 +sg225236 +S'1959' +p237420 +sa(dp237421 +g225232 +S'Jean Dubuffet' +p237422 +sg225240 +g27 +sg225234 +S'color lithograph' +p237423 +sg225230 +S'Itineraire' +p237424 +sg225236 +S'1959' +p237425 +sa(dp237426 +g225232 +S'Jean Dubuffet' +p237427 +sg225240 +g27 +sg225234 +S'color lithograph' +p237428 +sg225230 +S'Marques au mur' +p237429 +sg225236 +S'1959' +p237430 +sa(dp237431 +g225232 +S'Jean Dubuffet' +p237432 +sg225240 +g27 +sg225234 +S'color lithograph' +p237433 +sg225230 +S'Texte de terre' +p237434 +sg225236 +S'1959' +p237435 +sa(dp237436 +g225232 +S'Jean Dubuffet' +p237437 +sg225240 +g27 +sg225234 +S'color lithograph' +p237438 +sg225230 +S'Sol dramatique' +p237439 +sg225236 +S'1959' +p237440 +sa(dp237441 +g225232 +S'Jean Dubuffet' +p237442 +sg225240 +g27 +sg225234 +S'color lithograph' +p237443 +sg225230 +S'Stagnation' +p237444 +sg225236 +S'1959' +p237445 +sa(dp237446 +g225232 +S'Jean Dubuffet' +p237447 +sg225240 +g27 +sg225234 +S'color lithograph' +p237448 +sg225230 +S'Danse legere' +p237449 +sg225236 +S'1959' +p237450 +sa(dp237451 +g225232 +S'Jean Dubuffet' +p237452 +sg225240 +g27 +sg225234 +S'color lithograph' +p237453 +sg225230 +S'Taches reveuses au sol' +p237454 +sg225236 +S'1959' +p237455 +sa(dp237456 +g225232 +S'Jean Dubuffet' +p237457 +sg225240 +g27 +sg225234 +S'color lithograph' +p237458 +sg225230 +S'Degradation' +p237459 +sg225236 +S'1959' +p237460 +sa(dp237461 +g225230 +S'Lucretia' +p237462 +sg225232 +S'Parmigianino' +p237463 +sg225234 +S'watercolor heightened with white over black chalk' +p237464 +sg225236 +S'probably c. 1539' +p237465 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00026/a00026c8.jpg' +p237466 +sg225240 +g27 +sa(dp237467 +g225230 +S'Towboat "John Birkbeck"' +p237468 +sg225232 +S'James Bard' +p237469 +sg225234 +S'oil on canvas' +p237470 +sg225236 +S'1854' +p237471 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000010.jpg' +p237472 +sg225240 +g27 +sa(dp237473 +g225230 +S'Country Dance' +p237474 +sg225232 +S'Martin Edgar Ferrill' +p237475 +sg225234 +S'oil on canvas' +p237476 +sg225236 +S'1883' +p237477 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000b3.jpg' +p237478 +sg225240 +g27 +sa(dp237479 +g225230 +S'Biel Le Doyt' +p237480 +sg225232 +S'Erastus Salisbury Field' +p237481 +sg225234 +S'oil on canvas' +p237482 +sg225236 +S'1827' +p237483 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000b9.jpg' +p237484 +sg225240 +g27 +sa(dp237485 +g225230 +S'Paul Smith Palmer' +p237486 +sg225232 +S'Erastus Salisbury Field' +p237487 +sg225234 +S'oil on canvas' +p237488 +sg225236 +S'1835/1838' +p237489 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000c7.jpg' +p237490 +sg225240 +g27 +sa(dp237491 +g225230 +S'Mrs. Paul Smith Palmer and Her Twins' +p237492 +sg225232 +S'Erastus Salisbury Field' +p237493 +sg225234 +S'oil on canvas' +p237494 +sg225236 +S'1835/1838' +p237495 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000ba.jpg' +p237496 +sg225240 +g27 +sa(dp237497 +g225230 +S'Budd Doble Driving Goldsmith Maid at Belmont Driving Park' +p237498 +sg225232 +S'Charles S. Humphreys' +p237499 +sg225234 +S'oil on canvas' +p237500 +sg225236 +S'1876' +p237501 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00005/a0000574.jpg' +p237502 +sg225240 +g27 +sa(dp237503 +g225230 +S'Sarah Ogden Gustin' +p237504 +sg225232 +S'Joshua Johnson' +p237505 +sg225234 +S'oil on canvas' +p237506 +sg225236 +S'c. 1805' +p237507 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000121.jpg' +p237508 +sg225240 +g27 +sa(dp237509 +g225230 +S'Man of Science' +p237510 +sg225232 +S'American 19th Century' +p237511 +sg225234 +S'overall: 99.7 x 85 cm (39 1/4 x 33 7/16 in.)\r\nframed: 108.6 x 94 x 5 cm (42 3/4 x 37 x 1 15/16 in.)' +p237512 +sg225236 +S'\noil on canvas' +p237513 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a000043c.jpg' +p237514 +sg225240 +g27 +sa(dp237515 +g225230 +S'Little Miss Fairfield' +p237516 +sg225232 +S'William Matthew Prior' +p237517 +sg225234 +S'oil on canvas' +p237518 +sg225236 +S'1850' +p237519 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001d3.jpg' +p237520 +sg225240 +g27 +sa(dp237521 +g225230 +S'Law of the Wild' +p237522 +sg225232 +S'Charles S. Raleigh' +p237523 +sg225234 +S'oil on canvas' +p237524 +sg225236 +S'1881' +p237525 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001e2.jpg' +p237526 +sg225240 +g27 +sa(dp237527 +g225230 +S'Southern Resort Town' +p237528 +sg225232 +S'Dana Smith' +p237529 +sg225234 +S'oil on canvas' +p237530 +sg225236 +S'c. 1880' +p237531 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000219.jpg' +p237532 +sg225240 +g27 +sa(dp237533 +g225230 +S'Boston and North Chungahochie Express' +p237534 +sg225232 +S'American 20th Century' +p237535 +sg225234 +S'overall: 47.2 x 62.4 cm (18 9/16 x 24 9/16 in.)\r\nframed: 59.7 x 74.9 x 8.8 cm (23 1/2 x 29 1/2 x 3 7/16 in.)' +p237536 +sg225236 +S'\noil or tempera on composition board' +p237537 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000403.jpg' +p237538 +sg225240 +g27 +sa(dp237539 +g225230 +S'Boy with a Basket of Fruit' +p237540 +sg225232 +S'American 18th Century' +p237541 +sg225234 +S'overall: 57 x 43.9 cm (22 7/16 x 17 5/16 in.)\r\nframed: 67.3 x 54.3 x 6.3 cm (26 1/2 x 21 3/8 x 2 1/2 in.)' +p237542 +sg225236 +S'\noil on canvas' +p237543 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000417.jpg' +p237544 +sg225240 +g27 +sa(dp237545 +g225230 +S'Spring on the Range' +p237546 +sg225232 +S'American 19th Century' +p237547 +sg225234 +S'overall: 53.7 x 74.5 cm (21 1/8 x 29 5/16 in.)\r\nframed: 65.4 x 85.7 x 6.3 cm (25 3/4 x 33 3/4 x 2 1/2 in.)' +p237548 +sg225236 +S'\noil on canvas' +p237549 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a000045a.jpg' +p237550 +sg225240 +g27 +sa(dp237551 +g225230 +S'Samuel Eells' +p237552 +sg225232 +S'American 19th Century' +p237553 +sg225234 +S'overall: 111.4 x 84 cm (43 7/8 x 33 1/16 in.)\r\nframed: 124.4 x 97.5 x 3.8 cm (49 x 38 3/8 x 1 1/2 in.)' +p237554 +sg225236 +S'\noil on canvas' +p237555 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000422.jpg' +p237556 +sg225240 +g27 +sa(dp237557 +g225232 +S'American 19th Century' +p237558 +sg225240 +g27 +sg225234 +S'overall: 45.7 x 66 cm (18 x 26 in.)\r\nframed: 59.7 x 80 x 3.8 cm (23 1/2 x 31 1/2 x 1 1/2 in.)' +p237559 +sg225230 +S'Indians Cooking Maize' +p237560 +sg225236 +S'\noil on canvas' +p237561 +sa(dp237562 +g225232 +S'American 19th Century' +p237563 +sg225240 +g27 +sg225234 +S'overall: 43.3 x 71.5 cm (17 1/16 x 28 1/8 in.)\r\nframed: 58.1 x 85.7 x 5 cm (22 7/8 x 33 3/4 x 1 15/16 in.)' +p237564 +sg225230 +S'Portland Harbor, Maine' +p237565 +sg225236 +S'\noil on paperboard' +p237566 +sa(dp237567 +g225230 +S'The Proud Mother' +p237568 +sg225232 +S'American 19th Century' +p237569 +sg225234 +S'overall: 76.3 x 66.5 cm (30 1/16 x 26 3/16 in.)\r\nframed: 92.1 x 82.5 x 9.5 cm (36 1/4 x 32 1/2 x 3 3/4 in.)' +p237570 +sg225236 +S'\noil on canvas' +p237571 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00005/a0000571.jpg' +p237572 +sg225240 +g27 +sa(dp237573 +g225230 +S'Sisters in Black Aprons' +p237574 +sg225232 +S'American 19th Century' +p237575 +sg225234 +S'overall: 94.3 x 67.2 cm (37 1/8 x 26 7/16 in.)\r\nframed: 104.8 x 80.6 x 6.3 cm (41 1/4 x 31 3/4 x 2 1/2 in.)' +p237576 +sg225236 +S'\noil on canvas' +p237577 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a000045b.jpg' +p237578 +sg225240 +g27 +sa(dp237579 +g225230 +S'Washington at Valley Forge' +p237580 +sg225232 +S'American 19th Century' +p237581 +sg225234 +S'overall: 75.9 x 101.5 cm (29 7/8 x 39 15/16 in.)\r\nframed: 88.9 x 114.9 x 3.8 cm (35 x 45 1/4 x 1 1/2 in.)' +p237582 +sg225236 +S'\noil on canvas' +p237583 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000443.jpg' +p237584 +sg225240 +g27 +sa(dp237585 +g225230 +S'Ichabod Crane and the Headless Horseman' +p237586 +sg225232 +S'Artist Information (' +p237587 +sg225234 +S'American, 1819 - 1853' +p237588 +sg225236 +S'(artist after)' +p237589 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a00002a3.jpg' +p237590 +sg225240 +g27 +sa(dp237591 +g225230 +S'To the Memory of the Benevolent Howard' +p237592 +sg225232 +S'Salome Hensel' +p237593 +sg225234 +S'watercolor on velveteen (theorem painting)' +p237594 +sg225236 +S'1823' +p237595 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000f5.jpg' +p237596 +sg225240 +g27 +sa(dp237597 +g225232 +S'Joseph H. Davis' +p237598 +sg225240 +g27 +sg225234 +S'pen and black ink and watercolor over graphite' +p237599 +sg225230 +S'Mercy E. Montgomery' +p237600 +sg225236 +S'1836' +p237601 +sa(dp237602 +g225232 +S'Joseph H. Davis' +p237603 +sg225240 +g27 +sg225234 +S'pen and black ink and watercolor over graphite' +p237604 +sg225230 +S'Tamson H. Montgomery' +p237605 +sg225236 +S'1836' +p237606 +sa(dp237607 +g225232 +S'Henry H. Van Derzee, Jr.' +p237608 +sg225240 +g27 +sg225234 +S'pen and black ink and watercolor' +p237609 +sg225230 +S'Three Buildings with Trees' +p237610 +sg225236 +S'c. 1830' +p237611 +sa(dp237612 +g225230 +S'A Sacred Sheet Sent from Holy Mother Wisdom by Her Angel of Many Signs' +p237613 +sg225232 +S'Artist Information (' +p237614 +sg225234 +S'(artist)' +p237615 +sg225236 +S'\n' +p237616 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008dc.jpg' +p237617 +sg225240 +g27 +sa(dp237618 +g225232 +S'James M. Gibbs' +p237619 +sg225240 +g27 +sg225234 +S'pen and brown and black ink' +p237620 +sg225230 +S'Indian Hunter' +p237621 +sg225236 +S'probably c. 1850' +p237622 +sa(dp237623 +g225230 +S'Poor House, Hospital & Lunatick-Hospital of Northampton County, Pa.' +p237624 +sg225232 +S'Charles C. Hofmann' +p237625 +sg225234 +S'watercolor' +p237626 +sg225236 +S'c. 1865' +p237627 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008f7.jpg' +p237628 +sg225240 +g27 +sa(dp237629 +g225232 +S'Rebecca Landon' +p237630 +sg225240 +g27 +sg225234 +S'pen and blue and red ink on paper mounted on cotton fabric' +p237631 +sg225230 +S"Mother's Banner of Love and Comfort" +p237632 +sg225236 +S'1845' +p237633 +sa(dp237634 +g225230 +S'The Cotters Saturday Night' +p237635 +sg225232 +S'Eunice Pinney' +p237636 +sg225234 +S'pen and watercolor' +p237637 +sg225236 +S'c. 1815' +p237638 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000981.jpg' +p237639 +sg225240 +g27 +sa(dp237640 +g225232 +S'Shailer' +p237641 +sg225240 +g27 +sg225234 +S'watercolor and stencil' +p237642 +sg225230 +S'Fruit Theorem with Knife' +p237643 +sg225236 +S'unknown date\n' +p237644 +sa(dp237645 +g225232 +S'Artist Information (' +p237646 +sg225240 +g27 +sg225234 +S'(artist)' +p237647 +sg225230 +S'Samuel French of Lowell, Massachusetts' +p237648 +sg225236 +S'\n' +p237649 +sa(dp237650 +g225230 +S'A Fruit-Bearing Tree; A Cedar of Paradise' +p237651 +sg225232 +S'Phebe A. Smith' +p237652 +sg225234 +S'pen and black ink with colored wash over graphite' +p237653 +sg225236 +S'1842 and 1846' +p237654 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a00009cf.jpg' +p237655 +sg225240 +g27 +sa(dp237656 +g225230 +S"Harpsichord Recital at Count Rumford's, Concord, New Hampshire" +p237657 +sg225232 +S'Benjamin Thompson' +p237658 +sg225234 +S'watercolor on laid paper' +p237659 +sg225236 +S'c. 1800' +p237660 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a00009e3.jpg' +p237661 +sg225240 +g27 +sa(dp237662 +g225232 +S'American 19th Century' +p237663 +sg225240 +g27 +sg225234 +S'sight size: 54.4 x 64.8 cm (21 7/16 x 25 1/2 in.)' +p237664 +sg225230 +S'Conference of Mary, Queen of Scots, with Lord Lindsay on the Banks of Loch Catrine' +p237665 +sg225236 +S'\npen and ink with watercolor' +p237666 +sa(dp237667 +g225230 +S'To the Memory of George H. and Ruel T. Hills' +p237668 +sg225232 +S'American 19th Century' +p237669 +sg225234 +S'sight size: 45 x 57.5 cm (17 11/16 x 22 5/8 in.)\r\nframed: 55.2 x 67.3 x 0.6 cm (21 3/4 x 26 1/2 x 1/4 in.)' +p237670 +sg225236 +S'\npen and ink with watercolor, partly stenciled' +p237671 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a000089b.jpg' +p237672 +sg225240 +g27 +sa(dp237673 +g225232 +S'American 19th Century' +p237674 +sg225240 +g27 +sg225234 +S'sight size: 43.5 x 53.8 cm (17 1/8 x 21 3/16 in.)' +p237675 +sg225230 +S'Laban Runs to Meet Jacob' +p237676 +sg225236 +S'\nwatercolor' +p237677 +sa(dp237678 +g225230 +S'The Ludlow Patton' +p237679 +sg225232 +S'American 19th Century' +p237680 +sg225234 +S'Overall: 45 x 61.2 cm (17 11/16 x 24 1/8 in.)\r\nsupport: 49.7 x 61.3 cm (19 9/16 x 24 1/8 in.)\r\nframed: 58.4 x 69.8 x 3.1 cm (23 x 27 1/2 x 1 1/4 in.)' +p237681 +sg225236 +S'\npen and ink with watercolor' +p237682 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a000089c.jpg' +p237683 +sg225240 +g27 +sa(dp237684 +g225232 +S'American 19th Century' +p237685 +sg225240 +g27 +sg225234 +S'Overall: 37.5 x 49 cm (14 3/4 x 19 5/16 in.)\r\nframed: 46 x 57.8 cm (18 1/8 x 22 3/4 in.)' +p237686 +sg225230 +S'Poole Family Portrait' +p237687 +sg225236 +S'\npen and ink with watercolor' +p237688 +sa(dp237689 +g225232 +S'American 19th Century' +p237690 +sg225240 +g27 +sg225234 +S'Overall: 42.9 x 52.8 cm (16 7/8 x 20 13/16 in.)\r\nframed: 50.8 x 60.9 cm (20 x 24 in.)' +p237691 +sg225230 +S'Memorial to Norman Sherman' +p237692 +sg225236 +S'\npen and ink with gouache and touches of chalk overgraphite' +p237693 +sa(dp237694 +g225232 +S'Jean Dubuffet' +p237695 +sg225240 +g27 +sg225234 +S'color lithograph' +p237696 +sg225230 +S'Or et ombre' +p237697 +sg225236 +S'1958' +p237698 +sa(dp237699 +g225232 +S'Jean Dubuffet' +p237700 +sg225240 +g27 +sg225234 +S'color lithograph' +p237701 +sg225230 +S'Tracas' +p237702 +sg225236 +S'1959' +p237703 +sa(dp237704 +g225232 +S'Jean Dubuffet' +p237705 +sg225240 +g27 +sg225234 +S'color lithograph' +p237706 +sg225230 +S'Austere lieu' +p237707 +sg225236 +S'1958' +p237708 +sa(dp237709 +g225232 +S'Jean Dubuffet' +p237710 +sg225240 +g27 +sg225234 +S'color lithograph' +p237711 +sg225230 +S"Fragile installation de l'ombre" +p237712 +sg225236 +S'1958' +p237713 +sa(dp237714 +g225232 +S'Jean Dubuffet' +p237715 +sg225240 +g27 +sg225234 +S'color lithograph' +p237716 +sg225230 +S'Amenite' +p237717 +sg225236 +S'1959' +p237718 +sa(dp237719 +g225232 +S'Jean Dubuffet' +p237720 +sg225240 +g27 +sg225234 +S'color lithograph' +p237721 +sg225230 +S'Silence' +p237722 +sg225236 +S'1959' +p237723 +sa(dp237724 +g225232 +S'Jean Dubuffet' +p237725 +sg225240 +g27 +sg225234 +S'color lithograph' +p237726 +sg225230 +S'Jeuxe et congres' +p237727 +sg225236 +S'1959' +p237728 +sa(dp237729 +g225232 +S'Jean Dubuffet' +p237730 +sg225240 +g27 +sg225234 +S'color lithograph' +p237731 +sg225230 +S'Aire reveuse' +p237732 +sg225236 +S'1958' +p237733 +sa(dp237734 +g225232 +S'Jean Dubuffet' +p237735 +sg225240 +g27 +sg225234 +S'color lithograph' +p237736 +sg225230 +S'Soir' +p237737 +sg225236 +S'1959' +p237738 +sa(dp237739 +g225232 +S'Jean Dubuffet' +p237740 +sg225240 +g27 +sg225234 +S'color lithograph' +p237741 +sg225230 +S'Serenite' +p237742 +sg225236 +S'1959' +p237743 +sa(dp237744 +g225232 +S'Jean Dubuffet' +p237745 +sg225240 +g27 +sg225234 +S'color lithograph' +p237746 +sg225230 +S'Secret' +p237747 +sg225236 +S'1959' +p237748 +sa(dp237749 +g225232 +S'Jean Dubuffet' +p237750 +sg225240 +g27 +sg225234 +S'color lithograph' +p237751 +sg225230 +S'Vie discrete' +p237752 +sg225236 +S'1959' +p237753 +sa(dp237754 +g225232 +S'Jean Dubuffet' +p237755 +sg225240 +g27 +sg225234 +S'color lithograph' +p237756 +sg225230 +S'Spectacle au sol' +p237757 +sg225236 +S'1958' +p237758 +sa(dp237759 +g225232 +S'Jean Dubuffet' +p237760 +sg225240 +g27 +sg225234 +S'color lithograph' +p237761 +sg225230 +S"Fleur d'air" +p237762 +sg225236 +S'1959' +p237763 +sa(dp237764 +g225232 +S'Jean Dubuffet' +p237765 +sg225240 +g27 +sg225234 +S'color lithograph' +p237766 +sg225230 +S'Sombre d\xc3\xa9veloppement' +p237767 +sg225236 +S'1959' +p237768 +sa(dp237769 +g225232 +S'Jean Dubuffet' +p237770 +sg225240 +g27 +sg225234 +S'color lithograph' +p237771 +sg225230 +S"Rideau d'interdit" +p237772 +sg225236 +S'1958' +p237773 +sa(dp237774 +g225232 +S'Jean Dubuffet' +p237775 +sg225240 +g27 +sg225234 +S'color lithograph' +p237776 +sg225230 +S'Esplanade ombreuse' +p237777 +sg225236 +S'1958' +p237778 +sa(dp237779 +g225232 +S'Jean Dubuffet' +p237780 +sg225240 +g27 +sg225234 +S'color lithograph' +p237781 +sg225230 +S'Voie lact\xc3\xa9e noire' +p237782 +sg225236 +S'1958' +p237783 +sa(dp237784 +g225232 +S'Jean Dubuffet' +p237785 +sg225240 +g27 +sg225234 +S'color lithograph' +p237786 +sg225230 +S'Intimite' +p237787 +sg225236 +S'1959' +p237788 +sa(dp237789 +g225232 +S'Jean Dubuffet' +p237790 +sg225240 +g27 +sg225234 +S'7-color lithograph' +p237791 +sg225230 +S'Fragilit\xc3\xa9' +p237792 +sg225236 +S'1959' +p237793 +sa(dp237794 +g225232 +S'Jean Dubuffet' +p237795 +sg225240 +g27 +sg225234 +S'color lithograph' +p237796 +sg225230 +S'Murissement' +p237797 +sg225236 +S'1959' +p237798 +sa(dp237799 +g225232 +S'Jean Dubuffet' +p237800 +sg225240 +g27 +sg225234 +S'color lithograph' +p237801 +sg225230 +S"Bain d'ombre" +p237802 +sg225236 +S'1959' +p237803 +sa(dp237804 +g225232 +S'Jean Dubuffet' +p237805 +sg225240 +g27 +sg225234 +S'color lithograph' +p237806 +sg225230 +S'Chansons' +p237807 +sg225236 +S'1959' +p237808 +sa(dp237809 +g225232 +S'Jean Dubuffet' +p237810 +sg225240 +g27 +sg225234 +S'color lithograph' +p237811 +sg225230 +S'Faste' +p237812 +sg225236 +S'1959' +p237813 +sa(dp237814 +g225232 +S'Jean Dubuffet' +p237815 +sg225240 +g27 +sg225234 +S'color lithograph' +p237816 +sg225230 +S'Traces au sol' +p237817 +sg225236 +S'1958' +p237818 +sa(dp237819 +g225232 +S'Jean Dubuffet' +p237820 +sg225240 +g27 +sg225234 +S'color lithograph' +p237821 +sg225230 +S'Insouciance' +p237822 +sg225236 +S'1961' +p237823 +sa(dp237824 +g225232 +S'Jean Dubuffet' +p237825 +sg225240 +g27 +sg225234 +S'color lithograph' +p237826 +sg225230 +S'Deploiement' +p237827 +sg225236 +S'1959' +p237828 +sa(dp237829 +g225232 +S'Jean Dubuffet' +p237830 +sg225240 +g27 +sg225234 +S'color lithograph' +p237831 +sg225230 +S'Impermanence' +p237832 +sg225236 +S'1959' +p237833 +sa(dp237834 +g225232 +S'Jean Dubuffet' +p237835 +sg225240 +g27 +sg225234 +S'color lithograph' +p237836 +sg225230 +S'Resonances' +p237837 +sg225236 +S'1961' +p237838 +sa(dp237839 +g225232 +S'Jean Dubuffet' +p237840 +sg225240 +g27 +sg225234 +S'color lithograph' +p237841 +sg225230 +S'Champ muet' +p237842 +sg225236 +S'1958' +p237843 +sa(dp237844 +g225232 +S'Jean Dubuffet' +p237845 +sg225240 +g27 +sg225234 +S'color lithograph' +p237846 +sg225230 +S'Songes' +p237847 +sg225236 +S'1959' +p237848 +sa(dp237849 +g225232 +S'Jean Dubuffet' +p237850 +sg225240 +g27 +sg225234 +S'color lithograph' +p237851 +sg225230 +S'Symbioses' +p237852 +sg225236 +S'1959' +p237853 +sa(dp237854 +g225232 +S'Jean Dubuffet' +p237855 +sg225240 +g27 +sg225234 +S'color lithograph' +p237856 +sg225230 +S'Graces tenebreuses' +p237857 +sg225236 +S'1959' +p237858 +sa(dp237859 +g225232 +S'Jean Dubuffet' +p237860 +sg225240 +g27 +sg225234 +S'color lithograph' +p237861 +sg225230 +S'Menaces' +p237862 +sg225236 +S'1959' +p237863 +sa(dp237864 +g225232 +S'Jean Dubuffet' +p237865 +sg225240 +g27 +sg225234 +S'color lithograph' +p237866 +sg225230 +S'Fantasmes' +p237867 +sg225236 +S'1958' +p237868 +sa(dp237869 +g225232 +S'Jean Dubuffet' +p237870 +sg225240 +g27 +sg225234 +S'color lithograph' +p237871 +sg225230 +S'Aire vacant' +p237872 +sg225236 +S'1958' +p237873 +sa(dp237874 +g225232 +S'Jean Dubuffet' +p237875 +sg225240 +g27 +sg225234 +S'color lithograph' +p237876 +sg225230 +S'Le sol allegre' +p237877 +sg225236 +S'1958' +p237878 +sa(dp237879 +g225232 +S'Jean Dubuffet' +p237880 +sg225240 +g27 +sg225234 +S'color lithograph' +p237881 +sg225230 +S"Pouls fievreux de l'ombre" +p237882 +sg225236 +S'1959' +p237883 +sa(dp237884 +g225232 +S'Jean Dubuffet' +p237885 +sg225240 +g27 +sg225234 +S'color lithograph' +p237886 +sg225230 +S'Precarite' +p237887 +sg225236 +S'1959' +p237888 +sa(dp237889 +g225232 +S'Jean Dubuffet' +p237890 +sg225240 +g27 +sg225234 +S'color lithograph' +p237891 +sg225230 +S"Jeux d'ombre" +p237892 +sg225236 +S'1958' +p237893 +sa(dp237894 +g225232 +S'Jean Dubuffet' +p237895 +sg225240 +g27 +sg225234 +S'color lithograph' +p237896 +sg225230 +S"Lit d'apaisement" +p237897 +sg225236 +S'1958' +p237898 +sa(dp237899 +g225232 +S'Jean Dubuffet' +p237900 +sg225240 +g27 +sg225234 +S'color lithograph' +p237901 +sg225230 +S'Dispositif au sol' +p237902 +sg225236 +S'1958' +p237903 +sa(dp237904 +g225232 +S'Jean Dubuffet' +p237905 +sg225240 +g27 +sg225234 +S'color lithograph' +p237906 +sg225230 +S'Epanchement' +p237907 +sg225236 +S'1959' +p237908 +sa(dp237909 +g225232 +S'Jean Dubuffet' +p237910 +sg225240 +g27 +sg225234 +S'color lithograph' +p237911 +sg225230 +S'Terre agitee' +p237912 +sg225236 +S'1959' +p237913 +sa(dp237914 +g225232 +S'Jean Dubuffet' +p237915 +sg225240 +g27 +sg225234 +S'color lithograph' +p237916 +sg225230 +S'Legende platreuse' +p237917 +sg225236 +S'1959' +p237918 +sa(dp237919 +g225232 +S'Jean Dubuffet' +p237920 +sg225240 +g27 +sg225234 +S'color lithograph' +p237921 +sg225230 +S'Espoir' +p237922 +sg225236 +S'1959' +p237923 +sa(dp237924 +g225232 +S'Jean Dubuffet' +p237925 +sg225240 +g27 +sg225234 +S'color lithograph' +p237926 +sg225230 +S"L'attrait du vide" +p237927 +sg225236 +S'1959' +p237928 +sa(dp237929 +g225230 +S'Plum Brandy' +p237930 +sg225232 +S'Edouard Manet' +p237931 +sg225234 +S'oil on canvas' +p237932 +sg225236 +S'c. 1877' +p237933 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a0000687.jpg' +p237934 +sg225240 +S'Plum Brandy\n Although this canvas is undated, \n The painting may have been inspired\r\nby an actual scene witnessed by the artist at\r\nthe Café de la Nouvelle-Athènes, though\r\nManet appears to have taken certain liberties\r\nin his portrayal of the setting. When\r\ncompared with other paintings depicting\r\nthe same locale—most notably Degas\xe2\x80\x99\r\ncanvas \n (Text by Kimberly Jones, \n Notes\n \n \n ' +p237935 +sa(dp237936 +g225232 +S'Roy Adzak' +p237937 +sg225240 +g27 +sg225234 +S'painted canvas over plaster relief' +p237938 +sg225230 +S'Bulbs' +p237939 +sg225236 +S'unknown date\n' +p237940 +sa(dp237941 +g225230 +S'Tlaloc' +p237942 +sg225232 +S'Josef Albers' +p237943 +sg225234 +S'woodcut' +p237944 +sg225236 +S'1944' +p237945 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a000091a.jpg' +p237946 +sg225240 +g27 +sa(dp237947 +g225232 +S'Pierre Bonnard' +p237948 +sg225240 +g27 +sg225234 +S'lithograph' +p237949 +sg225230 +S'House in the Courtyard (Maison dans la cour)' +p237950 +sg225236 +S'1895' +p237951 +sa(dp237952 +g225232 +S'Georges Braque' +p237953 +sg225240 +g27 +sg225234 +S'drypoint and etching' +p237954 +sg225230 +S'Bass' +p237955 +sg225236 +S'1911' +p237956 +sa(dp237957 +g225232 +S'Georges Braque' +p237958 +sg225240 +g27 +sg225234 +S'color lithograph' +p237959 +sg225230 +S'Leaves, Color, Light' +p237960 +sg225236 +S'1953' +p237961 +sa(dp237962 +g225230 +S'Self-Portrait' +p237963 +sg225232 +S'Paul C\xc3\xa9zanne' +p237964 +sg225234 +S'lithograph' +p237965 +sg225236 +S'1899' +p237966 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006732.jpg' +p237967 +sg225240 +g27 +sa(dp237968 +g225232 +S'Pierre Courtin' +p237969 +sg225240 +g27 +sg225234 +S'color engraving (zinc) printed in relief' +p237970 +sg225230 +S'15 decembre 1953' +p237971 +sg225236 +S'1953' +p237972 +sa(dp237973 +g225230 +S'Les Champs-Elys\xc3\xa9es' +p237974 +sg225232 +S'Henri Edmond Cross' +p237975 +sg225234 +S'color lithograph' +p237976 +sg225236 +S'1898' +p237977 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a0001633.jpg' +p237978 +sg225240 +g27 +sa(dp237979 +g225232 +S'Artist Information (' +p237980 +sg225240 +g27 +sg225234 +S'French, 1892 - 1966' +p237981 +sg225230 +S'Grasshopper Child (Enfant sauterelle)' +p237982 +sg225236 +S'(printer)' +p237983 +sa(dp237984 +g225230 +S'The City' +p237985 +sg225232 +S'Robert Delaunay' +p237986 +sg225234 +S'lithograph' +p237987 +sg225236 +S'1926' +p237988 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a315.jpg' +p237989 +sg225240 +g27 +sa(dp237990 +g225230 +S'Les Amoureux de Paris' +p237991 +sg225232 +S'Robert Delaunay' +p237992 +sg225234 +S'color lithograph' +p237993 +sg225236 +S'1928' +p237994 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a098.jpg' +p237995 +sg225240 +g27 +sa(dp237996 +g225232 +S'Sonia Delaunay' +p237997 +sg225240 +g27 +sg225234 +S'color lithograph' +p237998 +sg225230 +S'Composition' +p237999 +sg225236 +S'1950' +p238000 +sa(dp238001 +g225232 +S'Raoul Dufy' +p238002 +sg225240 +g27 +sg225234 +S'lithograph' +p238003 +sg225230 +S'Rue Royal' +p238004 +sg225236 +S'probably 1930' +p238005 +sa(dp238006 +g225232 +S'Alberto Giacometti' +p238007 +sg225240 +g27 +sg225234 +S'lithograph' +p238008 +sg225230 +S'Moving, Mute Objects (Objets mobiles et muets)' +p238009 +sg225236 +S'1931' +p238010 +sa(dp238011 +g225232 +S'Hans Hartung' +p238012 +sg225240 +g27 +sg225234 +S'color etching and aquatint' +p238013 +sg225230 +S'Composition II' +p238014 +sg225236 +S'unknown date\n' +p238015 +sa(dp238016 +g225230 +S'Sorcier' +p238017 +sg225232 +S'Stanley William Hayter' +p238018 +sg225234 +S'engraving, softground etching, drypoint and scorper on Lauriat paper' +p238019 +sg225236 +S'1953' +p238020 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00082/a0008272.jpg' +p238021 +sg225240 +g27 +sa(dp238022 +g225232 +S'Ynez Johnston' +p238023 +sg225240 +g27 +sg225234 +S'color etching' +p238024 +sg225230 +S'Ancient Street' +p238025 +sg225236 +S'unknown date\n' +p238026 +sa(dp238027 +g225230 +S'Queen of Hearts (Herzdame)' +p238028 +sg225232 +S'Paul Klee' +p238029 +sg225234 +S'lithograph' +p238030 +sg225236 +S'1921' +p238031 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000efa2.jpg' +p238032 +sg225240 +g27 +sa(dp238033 +g225232 +S'Marino Marini' +p238034 +sg225240 +g27 +sg225234 +S'3-color lithograph' +p238035 +sg225230 +S'Horse (Cavallo)' +p238036 +sg225236 +S'unknown date\n' +p238037 +sa(dp238038 +g225232 +S'Henri Matisse' +p238039 +sg225240 +g27 +sg225234 +S'lithograph' +p238040 +sg225230 +S'Three Models (Les trois mod\xc3\xa8les)' +p238041 +sg225236 +S'1928' +p238042 +sa(dp238043 +g225230 +S'Figure and Birds' +p238044 +sg225232 +S'Joan Mir\xc3\xb3' +p238045 +sg225234 +S'color lithograph' +p238046 +sg225236 +S'1948' +p238047 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a000222d.jpg' +p238048 +sg225240 +g27 +sa(dp238049 +g225230 +S'Circus (Le cirque)' +p238050 +sg225232 +S'Pablo Picasso' +p238051 +sg225234 +S'lithograph' +p238052 +sg225236 +S'1945' +p238053 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee8f.jpg' +p238054 +sg225240 +g27 +sa(dp238055 +g225232 +S'Pablo Picasso' +p238056 +sg225240 +g27 +sg225234 +S'lithograph' +p238057 +sg225230 +S'Fauns and Centauress (Les faunes et la centauresse)' +p238058 +sg225236 +S'1947' +p238059 +sa(dp238060 +g225232 +S'Pablo Picasso' +p238061 +sg225240 +g27 +sg225234 +S'color lithograph' +p238062 +sg225230 +S'Owl on Chair (Hibou a la chaise fond ocre)' +p238063 +sg225236 +S'1947' +p238064 +sa(dp238065 +g225230 +S'Still Life with Fruit Bowl (Nature morte, compotier)' +p238066 +sg225232 +S'Pablo Picasso' +p238067 +sg225234 +S'drypoint' +p238068 +sg225236 +S'1909' +p238069 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eec6.jpg' +p238070 +sg225240 +g27 +sa(dp238071 +g225232 +S'Leonard Quentin' +p238072 +sg225240 +g27 +sg225234 +S'color lithograph' +p238073 +sg225230 +S'Composition' +p238074 +sg225236 +S'unknown date\n' +p238075 +sa(dp238076 +g225232 +S'Robert Rauschenberg' +p238077 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red and black on Rives BFK paper' +p238078 +sg225230 +S'Front Roll' +p238079 +sg225236 +S'1964' +p238080 +sa(dp238081 +g225232 +S'Robert Rauschenberg' +p238082 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Amgoumois a la Main paper' +p238083 +sg225230 +S'Kar' +p238084 +sg225236 +S'1964' +p238085 +sa(dp238086 +g225230 +S'Cheval aile (Winged Horse)' +p238087 +sg225232 +S'Odilon Redon' +p238088 +sg225234 +S'lithograph' +p238089 +sg225236 +S'1894' +p238090 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a00099b3.jpg' +p238091 +sg225240 +g27 +sa(dp238092 +g225230 +S'Paul C\xc3\xa9zanne' +p238093 +sg225232 +S'Auguste Renoir' +p238094 +sg225234 +S'lithograph' +p238095 +sg225236 +S'1902' +p238096 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009ff5.jpg' +p238097 +sg225240 +g27 +sa(dp238098 +g225232 +S'Georges Rouault' +p238099 +sg225240 +g27 +sg225234 +S'color aquatint' +p238100 +sg225230 +S'Amazone' +p238101 +sg225236 +S'1930' +p238102 +sa(dp238103 +g225232 +S'Richards Ruben' +p238104 +sg225240 +g27 +sg225234 +S'color screenprint' +p238105 +sg225230 +S'Ambiguities of Circumstance' +p238106 +sg225236 +S'unknown date\n' +p238107 +sa(dp238108 +g225232 +S'Otto J. Schneider' +p238109 +sg225240 +g27 +sg225234 +S'color etching' +p238110 +sg225230 +S'Untitled' +p238111 +sg225236 +S'unknown date\n' +p238112 +sa(dp238113 +g225232 +S'Gino Severini' +p238114 +sg225240 +g27 +sg225234 +S'watercolor' +p238115 +sg225230 +S'Pictograph' +p238116 +sg225236 +S'1913' +p238117 +sa(dp238118 +g225230 +S'Evening (Le soir)' +p238119 +sg225232 +S'Paul Signac' +p238120 +sg225234 +S'5-color lithograph' +p238121 +sg225236 +S'1898' +p238122 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bb7.jpg' +p238123 +sg225240 +g27 +sa(dp238124 +g225232 +S'Nicolas de Sta\xc3\xabl' +p238125 +sg225240 +g27 +sg225234 +S'color lithograph' +p238126 +sg225230 +S'Mediterranee' +p238127 +sg225236 +S'1952/1953' +p238128 +sa(dp238129 +g225232 +S'Nicolas de Sta\xc3\xabl' +p238130 +sg225240 +g27 +sg225234 +S'offset lithograph?' +p238131 +sg225230 +S'Musique de Cafe' +p238132 +sg225236 +S'unknown date\n' +p238133 +sa(dp238134 +g225232 +S'Rufino Tamayo' +p238135 +sg225240 +g27 +sg225234 +S'color lithograph' +p238136 +sg225230 +S'Aztec Landscape' +p238137 +sg225236 +S'1951' +p238138 +sa(dp238139 +g225230 +S'Game of Checkers (La partie de dames)' +p238140 +sg225232 +S'Edouard Vuillard' +p238141 +sg225234 +S'color lithograph' +p238142 +sg225236 +S'1897/1898 (published 1899)' +p238143 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f1e.jpg' +p238144 +sg225240 +g27 +sa(dp238145 +g225230 +S'Motherhood (Maternite)' +p238146 +sg225232 +S'Edouard Vuillard' +p238147 +sg225234 +S'color lithograph' +p238148 +sg225236 +S'1896' +p238149 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f1c.jpg' +p238150 +sg225240 +g27 +sa(dp238151 +g225230 +S'Lights in an Aircraft Plant' +p238152 +sg225232 +S'Ralston Crawford' +p238153 +sg225234 +S'oil on canvas' +p238154 +sg225236 +S'1945' +p238155 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a000006e.jpg' +p238156 +sg225240 +g27 +sa(dp238157 +g225230 +S'Sunblinded' +p238158 +sg225232 +S'Perle Fine' +p238159 +sg225234 +S'oil on paper' +p238160 +sg225236 +S'1946' +p238161 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008de.jpg' +p238162 +sg225240 +g27 +sa(dp238163 +g225232 +S'Hans Hartung' +p238164 +sg225240 +g27 +sg225234 +S'oil on canvas' +p238165 +sg225230 +S'Composition' +p238166 +sg225236 +S'1952' +p238167 +sa(dp238168 +g225230 +S'C & O' +p238169 +sg225232 +S'Franz Kline' +p238170 +sg225234 +S'oil on canvas' +p238171 +sg225236 +S'1958' +p238172 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000137.jpg' +p238173 +sg225240 +g27 +sa(dp238174 +g225232 +S'Bill Komodore' +p238175 +sg225240 +g27 +sg225234 +S'liquitex on canvas' +p238176 +sg225230 +S'Vermont' +p238177 +sg225236 +S'1964' +p238178 +sa(dp238179 +g225232 +S'Matta' +p238180 +sg225240 +g27 +sg225234 +S'oil on canvas' +p238181 +sg225230 +S'Genesis' +p238182 +sg225236 +S'1942' +p238183 +sa(dp238184 +g225232 +S'Manolo Millares' +p238185 +sg225240 +g27 +sg225234 +S'oil on canvas and wood' +p238186 +sg225230 +S'Cuadro 78' +p238187 +sg225236 +S'1959' +p238188 +sa(dp238189 +g225232 +S'Pierre Soulages' +p238190 +sg225240 +g27 +sg225234 +S'oil on canvas' +p238191 +sg225230 +S'Composition' +p238192 +sg225236 +S'1955' +p238193 +sa(dp238194 +g225232 +S'Graham Sutherland' +p238195 +sg225240 +g27 +sg225234 +S'oil on canvas' +p238196 +sg225230 +S'Palm Palisades' +p238197 +sg225236 +S'1947' +p238198 +sa(dp238199 +g225232 +S'Rufino Tamayo' +p238200 +sg225240 +g27 +sg225234 +S'oil on canvas' +p238201 +sg225230 +S'Clowns' +p238202 +sg225236 +S'1942' +p238203 +sa(dp238204 +g225230 +S'A Boy for Meg' +p238205 +sg225232 +S'Andy Warhol' +p238206 +sg225234 +S'oil on canvas' +p238207 +sg225236 +S'1962' +p238208 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000288.jpg' +p238209 +sg225240 +S"In 1960 Andy Warhol began making the paintings of comic strips, newspaper\n advertisements, and mass-produced items that would quickly earn him the reputation as a leader\n of the new Pop movement. The straightforward depiction of these banal subjects became a\n hallmark of his style, one that marked a substantial departure from the heavily worked surfaces\n of many abstract expressionist canvases.\n Early in 1962 the artist created a number of paintings that reproduce the front pages of\n newspapers. Lifting this ready-made imagery wholesale from its source, Warhol replicated the\n close-up photos and dramatic headlines of the tabloid, here announcing the birth of Princess\n Margaret's son. Designed for immediate accessibility and maximum dramatic impact, the tabloid\n format also provided the artist with a tightly organized, rectilinear structure. The reproductive\n nature of the subject and the generalized treatment of the imagery, rendered with a minimum of\n detail, belie the fact that the canvas was painted by hand.\n A Boy for Meg\n " +p238210 +sa(dp238211 +g225230 +S'Four Square' +p238212 +sg225232 +S'Franz Kline' +p238213 +sg225234 +S'oil on canvas' +p238214 +sg225236 +S'1956' +p238215 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000136.jpg' +p238216 +sg225240 +g27 +sa(dp238217 +g225230 +S'The Frugal Repast (Le repas frugal)' +p238218 +sg225232 +S'Artist Information (' +p238219 +sg225234 +S'(artist)' +p238220 +sg225236 +S'\n' +p238221 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004a/a0004a52.jpg' +p238222 +sg225240 +g27 +sa(dp238223 +g225232 +S'Enrique Castro-Cid' +p238224 +sg225240 +g27 +sg225234 +S'oil on canvas' +p238225 +sg225230 +S'Untitled' +p238226 +sg225236 +S'1960' +p238227 +sa(dp238228 +g225232 +S'Enrico Donati' +p238229 +sg225240 +g27 +sg225234 +S'oil on canvas' +p238230 +sg225230 +S"Cat's Eyes" +p238231 +sg225236 +S'1960' +p238232 +sa(dp238233 +g225232 +S'Mon Levinson' +p238234 +sg225240 +g27 +sg225234 +S'screenprint on acrylic sheet and paper' +p238235 +sg225230 +S'Black Moving Planes XXIII' +p238236 +sg225236 +S'1961' +p238237 +sa(dp238238 +g225232 +S'Joan Mir\xc3\xb3' +p238239 +sg225240 +g27 +sg225234 +S'watercolor and red crayon on folded paper; front side is title page for Tristan Tzara\'s "Parler Seul," litho. de Joan Miro, 1948, Maeght ed., 1950' +p238240 +sg225230 +S'Untitled' +p238241 +sg225236 +S'1957' +p238242 +sa(dp238243 +g225232 +S'John Piper' +p238244 +sg225240 +g27 +sg225234 +S'gouache' +p238245 +sg225230 +S'Binham Abbey: Southwest' +p238246 +sg225236 +S'1948' +p238247 +sa(dp238248 +g225232 +S'Larry Rivers' +p238249 +sg225240 +g27 +sg225234 +S'screenprint on acrylic sheet' +p238250 +sg225230 +S'Print for Core' +p238251 +sg225236 +S'unknown date\n' +p238252 +sa(dp238253 +g225230 +S'Stretch of Black III' +p238254 +sg225232 +S'Leon Polk Smith' +p238255 +sg225234 +S'oil on canvas' +p238256 +sg225236 +S'1961' +p238257 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a000021b.jpg' +p238258 +sg225240 +g27 +sa(dp238259 +g225232 +S'Jan Raes II' +p238260 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Life of Man: Time Drives Away the Joys of Life' +p238261 +sg225236 +S'unknown date\n' +p238262 +sa(dp238263 +g225232 +S'Artist Information (' +p238264 +sg225240 +g27 +sg225234 +S'French, 1667 - 1754' +p238265 +sg225230 +S'Descriptio Omnium Operatum Quibus ad Fundendam ex Aere ...' +p238266 +sg225236 +S'(author)' +p238267 +sa(dp238268 +g225230 +S'River Landscape' +p238269 +sg225232 +S'Claude Lorrain' +p238270 +sg225234 +S'pen and brown ink with brown wash and black and red chalk on laid paper' +p238271 +sg225236 +S'c. 1635/1638' +p238272 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072a0.jpg' +p238273 +sg225240 +g27 +sa(dp238274 +g225230 +S'Benjamin Franklin' +p238275 +sg225232 +S'Artist Information (' +p238276 +sg225234 +S'French, 1725 - 1805' +p238277 +sg225236 +S'(artist after)' +p238278 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005aac.jpg' +p238279 +sg225240 +g27 +sa(dp238280 +g225230 +S'A Young and an Old Bacchant' +p238281 +sg225232 +S'Artist Information (' +p238282 +sg225234 +S'(artist after)' +p238283 +sg225236 +S'\n' +p238284 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c784.jpg' +p238285 +sg225240 +g27 +sa(dp238286 +g225230 +S'Massacre of the Innocents' +p238287 +sg225232 +S'Bernard Picart' +p238288 +sg225234 +S'pen and brown and gray ink with gray wash over graphite on laid paper' +p238289 +sg225236 +S'unknown date\n' +p238290 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a000718a.jpg' +p238291 +sg225240 +g27 +sa(dp238292 +g225230 +S'A Landscape with Seated Soldiers and Fishermen' +p238293 +sg225232 +S'Antonio Visentini' +p238294 +sg225234 +S'black chalk with watercolor and white heightening on brown washed paper' +p238295 +sg225236 +S'unknown date\n' +p238296 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007438.jpg' +p238297 +sg225240 +g27 +sa(dp238298 +g225230 +S'Landscape with a Wooded Ravine' +p238299 +sg225232 +S'Anthonie Waterloo' +p238300 +sg225234 +S'black chalk with gray wash heightened with white on laid paper' +p238301 +sg225236 +S'unknown date\n' +p238302 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072cf.jpg' +p238303 +sg225240 +g27 +sa(dp238304 +g225230 +S'Allegory of Minerva as the Head of the Muses' +p238305 +sg225232 +S'Hans Speckaert' +p238306 +sg225234 +S'pen and brown ink with brown wash over black chalk on laid paper' +p238307 +sg225236 +S'in or before 1575' +p238308 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00037/a00037f1.jpg' +p238309 +sg225240 +g27 +sa(dp238310 +g225230 +S'Harpocrates' +p238311 +sg225232 +S'French 17th Century' +p238312 +sg225234 +S'sheet: 20.3 x 29.3 cm (8 x 11 9/16 in.)\r\nsupport: 31.7 x 41.4 cm (12 1/2 x 16 5/16 in.)' +p238313 +sg225236 +S'\nred chalk on laid paper' +p238314 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00062/a00062eb.jpg' +p238315 +sg225240 +g27 +sa(dp238316 +g225230 +S'A Man Seen from Behind [recto]' +p238317 +sg225232 +S'Taddeo Zuccaro' +p238318 +sg225234 +S'red chalk heightened with white on laid paper' +p238319 +sg225236 +S'c. 1555' +p238320 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00038/a0003801.jpg' +p238321 +sg225240 +g27 +sa(dp238322 +g225230 +S'A Man Seen from Behind [verso]' +p238323 +sg225232 +S'Taddeo Zuccaro' +p238324 +sg225234 +S'red chalk and pen and brown ink on laid paper' +p238325 +sg225236 +S'c. 1555' +p238326 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007447.jpg' +p238327 +sg225240 +g27 +sa(dp238328 +g225230 +S'Head of Saint Francis' +p238329 +sg225232 +S'Guido Reni' +p238330 +sg225234 +S'black, red and white chalk on blue laid paper' +p238331 +sg225236 +S'unknown date\n' +p238332 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00037/a00037e2.jpg' +p238333 +sg225240 +g27 +sa(dp238334 +g225232 +S'Motoi Oi' +p238335 +sg225240 +g27 +sg225234 +S'embossed color etching on wove paper' +p238336 +sg225230 +S'Parado - Happy Child' +p238337 +sg225236 +S'1970' +p238338 +sa(dp238339 +g225232 +S'Motoi Oi' +p238340 +sg225240 +g27 +sg225234 +S'embossed color etching on wove paper' +p238341 +sg225230 +S'Walking Happy Child' +p238342 +sg225236 +S'1970' +p238343 +sa(dp238344 +g225230 +S'There Were No Flowers Tonight' +p238345 +sg225232 +S'Ivan Le Lorraine Albright' +p238346 +sg225234 +S'oil on canvas' +p238347 +sg225236 +S'1929' +p238348 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000000.jpg' +p238349 +sg225240 +g27 +sa(dp238350 +g225230 +S'The Heart of the Andes' +p238351 +sg225232 +S'Artist Information (' +p238352 +sg225234 +S'American, 1826 - 1900' +p238353 +sg225236 +S'(artist after)' +p238354 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004caf.jpg' +p238355 +sg225240 +g27 +sa(dp238356 +g225232 +S'Andr\xc3\xa9 Derain' +p238357 +sg225240 +g27 +sg225234 +S'oil on canvas' +p238358 +sg225230 +S'Marie Harriman' +p238359 +sg225236 +S'1935' +p238360 +sa(dp238361 +g225230 +S"At the Water's Edge" +p238362 +sg225232 +S'Paul C\xc3\xa9zanne' +p238363 +sg225234 +S'oil on canvas' +p238364 +sg225236 +S'c. 1890' +p238365 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006ae.jpg' +p238366 +sg225240 +S'The emphasis on light and reflection in\r\n\n Whereas the impressionists worked\r\nswiftly in an attempt to capture transitory\r\nlight effects, Cézanne pursued a slow and\r\ndeliberate method of painting, laboring\r\nover the right stroke of color to use in\r\nany given passage.\n In addition to the unpainted areas here,\r\nextremely loose handling and seemingly random touches of color or unresolved\r\npassages of paint suggest that Cézanne may\r\nstill have been considering the next stroke\r\nto add. A curious red dab is found above\r\nthe roof of the larger house, and small\r\npatches of bright blue sit atop the foliage\r\nat center left. On the riverbank at right are\r\nstreaks of yellow, perhaps the beginnings of\r\nefflorescence. The concentration of color\r\nin the central motif of the blue house, in\r\nthe boat with blue cabin, and in the green\r\nhouseboat next to it gives an indication of\r\nthe artist\xe2\x80\x99s working method: he started in\r\nthe middle of the composition and moved\r\noutward.\n Cézanne\xe2\x80\x99s work, especially landscape\r\npaintings, increasingly verged on abstraction\r\nin the artist\xe2\x80\x99s last two decades. Here\r\nstructures on the bank and on the river are\r\nsimplified into geometric shapes that contrast\r\nwith the organic lushness surrounding\r\nthem. The composition threatens to\r\ndissolve into patches of color, and pictorial\r\nspace is flattened. Touches of whitish blue\r\npigment—whether signaling sky, clouds,\r\nor mist is unclear—overlap onto the upper\r\nedges of foliage, thus preventing an illusionistic\r\nreading of depth. These abstractions\r\nhave appealed to modern sensibilities.\r\nNear the end of his life, Cézanne\xe2\x80\x99s critical\r\nreception—once so derisive—became\r\nmore open to this aesthetic, which also had\r\nan enormous impact on successive generations\r\nof artists. Gustave Geffroy, a journalist\r\nwho was among the earliest critics\r\nsympathetic to Cézanne, signaled this new\r\nperspective when he wrote in 1901: "It has\r\nbeen noted that some of Cézanne\xe2\x80\x99s paintings\r\nare not finished. What does that matter\r\nif they express the beauty and harmony\r\nthat he has felt so deeply? Who can say at\r\nwhat precise moment a canvas is finished? Art always contains an element of unfinish\r\nfor the life that it reproduces is in constant\r\ntransformation."\n (Text by Margaret Doyle, \n Notes\n \n \n ' +p238367 +sa(dp238368 +g225230 +S'The Battle of Love' +p238369 +sg225232 +S'Paul C\xc3\xa9zanne' +p238370 +sg225234 +S'oil on canvas' +p238371 +sg225236 +S'c. 1880' +p238372 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006af.jpg' +p238373 +sg225240 +g27 +sa(dp238374 +g225230 +S'Man with Pipe' +p238375 +sg225232 +S'Paul C\xc3\xa9zanne' +p238376 +sg225234 +S'oil on canvas' +p238377 +sg225236 +S'1892/1896' +p238378 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006b0.jpg' +p238379 +sg225240 +g27 +sa(dp238380 +g225230 +S'Montagne Sainte-Victoire, from near Gardanne' +p238381 +sg225232 +S'Paul C\xc3\xa9zanne' +p238382 +sg225234 +S'oil on canvas' +p238383 +sg225236 +S'c. 1887' +p238384 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006b1.jpg' +p238385 +sg225240 +g27 +sa(dp238386 +g225230 +S'Still Life with Milk Jug and Fruit' +p238387 +sg225232 +S'Paul C\xc3\xa9zanne' +p238388 +sg225234 +S'oil on canvas' +p238389 +sg225236 +S'c. 1900' +p238390 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002aeb.jpg' +p238391 +sg225240 +S'Impressionism not only encouraged Cézanne to adopt a brighter palette, \r\n but also gave him a way of expressing form. Rather than model three-dimensional \r\n shapes by gradually blending shades from dark to light, Cézanne, like the \r\n impressionists, gave them form by juxtaposing colors. “There is neither \r\n line nor modeling,” he said, “there is only contrast.”\n The tipped plate is molded by individual arcs of peachy ivory and cooler \r\n blue tones. The shadow that falls below it does not deepen continuously but \r\n is a patchwork of blues and complementary rust-colored browns. Rounded \r\n fruits, like the flat surfaces of the table, are built up of what Cézanne \r\n called “little planes” of color, applied in brushstrokes that echo the \r\n faceted sides of the pitcher.\n Cézanne painted this same pitcher and table in other canvases. His \r\n constant rearranging of these and other props was a way to understand and \r\n create structure. The very selection of objects, combining, for example, \r\n the roundness of fruits and bowls and the angles of furniture, reflects \r\n careful decisions about order and composition. This analytical way of seeing \r\n the world, whether the countryside of Provence or the man-made landscape of \r\n a still life, had great impact on the next generation of artists. For \r\n \n ' +p238392 +sa(dp238393 +g225230 +S'Still Life with a White Mug' +p238394 +sg225232 +S'Jean Sim\xc3\xa9on Chardin' +p238395 +sg225234 +S'oil on canvas' +p238396 +sg225236 +S'c. 1764' +p238397 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002aec.jpg' +p238398 +sg225240 +g27 +sa(dp238399 +g225230 +S'Boats on a Beach, Etretat' +p238400 +sg225232 +S'Gustave Courbet' +p238401 +sg225234 +S'oil on canvas' +p238402 +sg225236 +S'c. 1872/1875' +p238403 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dba.jpg' +p238404 +sg225240 +g27 +sa(dp238405 +g225230 +S'La Bretonnerie in the Department of Indre' +p238406 +sg225232 +S'Gustave Courbet' +p238407 +sg225234 +S'oil on canvas' +p238408 +sg225236 +S'1856' +p238409 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000db5.jpg' +p238410 +sg225240 +g27 +sa(dp238411 +g225230 +S'Girl Drying Herself' +p238412 +sg225232 +S'Edgar Degas' +p238413 +sg225234 +S'pastel' +p238414 +sg225236 +S'1885' +p238415 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d47.jpg' +p238416 +sg225240 +g27 +sa(dp238417 +g225232 +S'Andr\xc3\xa9 Derain' +p238418 +sg225240 +g27 +sg225234 +S'oil on canvas' +p238419 +sg225230 +S'Still Life' +p238420 +sg225236 +S'1913' +p238421 +sa(dp238422 +g225230 +S'Haystacks in Brittany' +p238423 +sg225232 +S'Paul Gauguin' +p238424 +sg225234 +S'oil on canvas' +p238425 +sg225236 +S'1890' +p238426 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a000063e.jpg' +p238427 +sg225240 +S"This stylized view of fields and farm buildings near Le Pouldu is typical of the so-called \n The friezelike procession of cows and cowherd in the foreground coaxes our eye to move horizontally, and we find that the entire composition is arranged into bands, layered one on the other. Even the sky is stratified. Strong contrasts of dark and light—exploited especially in the black-and-white cows and the flowering crops—flatten forms, rendering them more decorative than descriptive. The vivid and unexpected oranges in the foreground do not mimic nature but cast it according to the artist's imagination. Notice how the silhouette of the cow at right is outlined against the orange with dark blue. In many places similar outlines compartmentalize colors, in the manner of cloisonné enamels or stained glass. This was a style Gauguin had evolved with fellow artist \n " +p238428 +sa(dp238429 +g225230 +S'Parau na te Varua ino (Words of the Devil)' +p238430 +sg225232 +S'Paul Gauguin' +p238431 +sg225234 +S'oil on canvas' +p238432 +sg225236 +S'1892' +p238433 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a000063f.jpg' +p238434 +sg225240 +S'Lured to Tahiti in 1891 by reports of its unspoiled culture, Gauguin was disappointed by its civilized capital and moved to the countryside, where he found an approximation of the tropical paradise he had expected. The Tahiti of his depictions was derived from native folklore supplemented by material culled from books written by earlier European visitors and overlaid with allusions to western culture. The pose of the standing nude, for instance, is derived from a medieval statue of the biblical Eve and more distantly from the Venus Pudica of classical sculpture. The artist placed this rich combination of references to original sin, the loss of virginity, and occidental standards of beauty and art within the context of his Tahitian mythology and primitive, non–European aesthetics.\n The meaning of the title \n ' +p238435 +sa(dp238436 +g225230 +S'Dryad' +p238437 +sg225232 +S'Walt Kuhn' +p238438 +sg225234 +S'oil on canvas' +p238439 +sg225236 +S'1935' +p238440 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a000013d.jpg' +p238441 +sg225240 +g27 +sa(dp238442 +g225230 +S'Green Apples and Scoop' +p238443 +sg225232 +S'Walt Kuhn' +p238444 +sg225234 +S'oil on canvas' +p238445 +sg225236 +S'1939' +p238446 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a000013e.jpg' +p238447 +sg225240 +g27 +sa(dp238448 +g225230 +S'Hare and Hunting Boots' +p238449 +sg225232 +S'Walt Kuhn' +p238450 +sg225234 +S'oil on canvas' +p238451 +sg225236 +S'1926' +p238452 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a000013f.jpg' +p238453 +sg225240 +g27 +sa(dp238454 +g225230 +S'The White Clown' +p238455 +sg225232 +S'Walt Kuhn' +p238456 +sg225234 +S'oil on canvas' +p238457 +sg225236 +S'1929' +p238458 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000140.jpg' +p238459 +sg225240 +g27 +sa(dp238460 +g225230 +S'Zinnias' +p238461 +sg225232 +S'Walt Kuhn' +p238462 +sg225234 +S'oil on canvas' +p238463 +sg225236 +S'1933' +p238464 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000141.jpg' +p238465 +sg225240 +g27 +sa(dp238466 +g225232 +S'Henri Matisse' +p238467 +sg225240 +g27 +sg225234 +S'oil on canvas' +p238468 +sg225230 +S'Still Life with Pineapple' +p238469 +sg225236 +S'1924' +p238470 +sa(dp238471 +g225230 +S'Lady with a Fan' +p238472 +sg225232 +S'Pablo Picasso' +p238473 +sg225234 +S'oil on canvas' +p238474 +sg225236 +S'1905' +p238475 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dee.jpg' +p238476 +sg225240 +g27 +sa(dp238477 +g225230 +S'Rendezvous in the Forest' +p238478 +sg225232 +S'Henri Rousseau' +p238479 +sg225234 +S'oil on canvas' +p238480 +sg225236 +S'1889' +p238481 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000729.jpg' +p238482 +sg225240 +g27 +sa(dp238483 +g225230 +S'Seascape at Port-en-Bessin, Normandy' +p238484 +sg225232 +S'Georges Seurat' +p238485 +sg225234 +S'oil on canvas' +p238486 +sg225236 +S'1888' +p238487 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006f6.jpg' +p238488 +sg225240 +S'Like many Parisians, Seurat escaped the\r\nheat and the pace of the city in the summertime\r\nby heading to coastal towns along\r\nthe English Channel. In 1888 his destination\r\nwas Port-en-Bessin, a small fishing\r\nvillage that inspired him to paint six\r\ncanvases. While five of them look toward\r\nthe harbor or hint at its activities, this\r\nview is the only one turned completely\r\naway from town, focusing solely on the\r\nsurrounding cliffs. Seurat had climbed to\r\nan isolated spot above the port and accurately\r\nportrayed the topography in this and\r\ntwo other compositions, each looking in a\r\ndifferent direction.\n Seurat executed the painting by meticulously\r\napplying small dots of pure color\r\non the canvas with the expectation that they would combine vibrantly—with various\r\nhues intensifying one another—in\r\nthe viewer\xe2\x80\x99s eye. Seurat read widely on the\r\ncolor theory of his day, including treatises\r\nby the American physicist Ogden Rood,\r\nthe French scientists Eugène Chevreul\r\nand Charles Henry, and French art critic\r\nCharles Blanc, whom Seurat credited for\r\nhis initial interest in the properties of colors.\r\nHe also studied the paintings of great\r\ncolorists such as Eugène Delacroix and\r\nPeter Paul Rubens. An admiration for the\r\nwork of contemporaries Claude Monet and\r\nCamille Pissarro led Seurat to experiment\r\nwith the impressionist brushstroke, which\r\neventually resulted in his pointillist touch.\r\nPrevious artists such as Delacroix had been\r\naware of the principles of optical mixture\r\nand of colors influencing one another, but\r\nSeurat was determined to find a systematic\r\nmeans of applying these laws.\n Seurat developed his technique in\r\npartial collaboration with Pissarro and\r\nPaul Signac; all three exhibited paintings\r\nexecuted in a similar manner in the 1886\r\nimpressionist exhibition.\n Seurat\xe2\x80\x99s celebrated tenure at the\r\nforefront of the avant-garde did not last\r\nlong; his defense of his role as instigator\r\nof the pointillist technique led to tension\r\nand jealousies among his peers before the artist\xe2\x80\x99s untimely death from diphtheria at\r\nthe age of thirty-one. Nevertheless, subsequent\r\ngenerations of artists built new\r\nartistic vocabularies based in large part on\r\nthe foundation of his art and ideas.\n (Text by Margaret Doyle, \n Notes\n \n ' +p238489 +sa(dp238490 +g225230 +S'Lady with a Dog' +p238491 +sg225232 +S'Henri de Toulouse-Lautrec' +p238492 +sg225234 +S'oil on cardboard' +p238493 +sg225236 +S'1891' +p238494 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000746.jpg' +p238495 +sg225240 +S'Although Lautrec is better known for his\r\nraucous scenes of Parisian nightlife, portraiture\r\nmakes up a large portion of his\r\nproduction. He rarely painted portraits\r\non commission—his aristocratic lineage\r\nensured a steady income regardless of\r\nhis sales—but instead was fascinated by\r\nfaces and personalities, and especially by\r\ncharacter types.\n Many of Lautrec\xe2\x80\x99s portraits were created\r\nin his studio, but he also worked outdoors,\r\nas suggested by this scene of a lady\r\nsitting with her dog in what appears to be\r\na fenced-in yard. She has traditionally\r\nbeen identified as Mme Fabre, the wife\r\nof Lautrec\xe2\x80\x99s friend Louis Fabre, who lived\r\nnear the artist in Paris and at whose vacation\r\nhome on the Arcachon bay (along\r\nthe southwest coast of France) Lautrec\r\nfrequently stayed.\n Lautrec began taking notice of avantgarde\r\nart in the mid-1880s while still in\r\nthe studio of his teacher Fernand Cormon.\r\nHe wrote to his mother, "Vive la\r\nR\xc3\xa9volution! Vive Manet! The breeze of\r\nImpressionism is blowing through the\r\nstudio. I\xe2\x80\x99m overjoyed."\n Lady with a Dog\n (Text by Margaret Doyle, \n Notes\n \n \n \n \n ' +p238496 +sa(dp238497 +g225230 +S'Peasants Celebrating Twelfth Night' +p238498 +sg225232 +S'David Teniers the Younger' +p238499 +sg225234 +S'oil on panel' +p238500 +sg225236 +S'1635' +p238501 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e3f.jpg' +p238502 +sg225240 +g27 +sa(dp238503 +g225230 +S'Moses Striking the Rock' +p238504 +sg225232 +S'Joachim Anthonisz Wtewael' +p238505 +sg225234 +S'oil on panel' +p238506 +sg225236 +S'1624' +p238507 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e93.jpg' +p238508 +sg225240 +S"Wtewael's lifelong commitment to mannerism is apparent in this depiction of \n The mannerists' use of alternating patterns of light and dark, elongated figures, contorted\nposes, and pastel colors created elegant, yet extremely artificial, scenes. Wtewael here depicts\nmany figures who feverishly use pots, pans, and other drinking utensils to capture the precious\nwater.\n This religious subject was a favorite one for mannerist artists. Such paintings were often\nproduced in cooperation with humanist scholars and had allegorical implications. Moses, in his\nrole as leader of the Israelites, was often seen as a forerunner of Christ; more specifically for the\nDutch, however, were the parallels that could be drawn between Moses and their national hero\nWilliam the Silent. Both led their people against an oppressive foreign rule, but neither of them\nlived to witness the formation of the new nation they had foreseen.\n " +p238509 +sa(dp238510 +g225230 +S'Peace Establishing Her Reign' +p238511 +sg225232 +S'Antonio Lombardo' +p238512 +sg225234 +S'bronze' +p238513 +sg225236 +S'1512' +p238514 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00034/a0003413.jpg' +p238515 +sg225240 +g27 +sa(dp238516 +g225230 +S'The Entombment' +p238517 +sg225232 +S'Albrecht D\xc3\xbcrer' +p238518 +sg225234 +S'pen and gray ink on laid paper' +p238519 +sg225236 +S'1504' +p238520 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00024/a0002448.jpg' +p238521 +sg225240 +g27 +sa(dp238522 +g225230 +S'Saint Sebastian' +p238523 +sg225232 +S'Wolf Huber' +p238524 +sg225234 +S'pen and black ink on laid paper' +p238525 +sg225236 +S'possibly 1509' +p238526 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00034/a0003420.jpg' +p238527 +sg225240 +g27 +sa(dp238528 +g225230 +S'The Virgin and Saint John' +p238529 +sg225232 +S'Artist Information (' +p238530 +sg225234 +S'German, 1484/1485 - 1545' +p238531 +sg225236 +S'(artist after)' +p238532 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a0007989.jpg' +p238533 +sg225240 +g27 +sa(dp238534 +g225230 +S'Portrait of a Man Standing' +p238535 +sg225232 +S'Sir Anthony van Dyck' +p238536 +sg225234 +S'black and red chalk on laid paper' +p238537 +sg225236 +S'unknown date\n' +p238538 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f38.jpg' +p238539 +sg225240 +g27 +sa(dp238540 +g225230 +S'The Rabbit Hunters' +p238541 +sg225232 +S'Pieter Bruegel the Elder' +p238542 +sg225234 +S'etching' +p238543 +sg225236 +S'1566' +p238544 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00058/a00058a8.jpg' +p238545 +sg225240 +g27 +sa(dp238546 +g225230 +S'The Choristers' +p238547 +sg225232 +S'Alessandro Magnasco' +p238548 +sg225234 +S'oil on canvas' +p238549 +sg225236 +S'c. 1740/1745' +p238550 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a0000618.jpg' +p238551 +sg225240 +g27 +sa(dp238552 +g225232 +S'Th\xc3\xa9odore Chass\xc3\xa9riau' +p238553 +sg225240 +g27 +sg225234 +S', unknown date' +p238554 +sg225230 +S'The Nursing of Jupiter' +p238555 +sg225236 +S'\n' +p238556 +sa(dp238557 +g225230 +S'The Angel Appearing to the Centurion Cornelius' +p238558 +sg225232 +S'Cornelis Cornelisz van Haarlem' +p238559 +sg225234 +S'pen and black ink with gray wash and white heightening on paper prepared with diluted red chalk' +p238560 +sg225236 +S'late 1590s' +p238561 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ef8.jpg' +p238562 +sg225240 +g27 +sa(dp238563 +g225230 +S'Candelabrum: Swan Among Rushes' +p238564 +sg225232 +S'Artist Information (' +p238565 +sg225234 +S'(artist)' +p238566 +sg225236 +S'\n' +p238567 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000df/a000dfc8.jpg' +p238568 +sg225240 +g27 +sa(dp238569 +g225230 +S'Candelabrum: Swan Among Rushes' +p238570 +sg225232 +S'Artist Information (' +p238571 +sg225234 +S'(artist)' +p238572 +sg225236 +S'\n' +p238573 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000df/a000dfc9.jpg' +p238574 +sg225240 +S'\n This porcelain swan was produced about 1750 from models attributed to\n ' +p238575 +sa(dp238576 +g225232 +S'Edvard Munch' +p238577 +sg225240 +g27 +sg225234 +S'color lithograph and woodcut with watercolor [trial proof]' +p238578 +sg225230 +S'The Vampire (Vampyr)' +p238579 +sg225236 +S'1895' +p238580 +sa(dp238581 +g225230 +S'An Oriental Ruler Seated on His Throne' +p238582 +sg225232 +S'Albrecht D\xc3\xbcrer' +p238583 +sg225234 +S'pen and black ink on laid paper' +p238584 +sg225236 +S'c. 1495' +p238585 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00031/a00031b6.jpg' +p238586 +sg225240 +g27 +sa(dp238587 +g225230 +S'The Angel of the Annunciation [recto]' +p238588 +sg225232 +S'Fra Bartolommeo' +p238589 +sg225234 +S'pen and brown ink over black chalk on laid paper' +p238590 +sg225236 +S'1500/1504' +p238591 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074db.jpg' +p238592 +sg225240 +g27 +sa(dp238593 +g225232 +S'Fra Bartolommeo' +p238594 +sg225240 +g27 +sg225234 +S'pen and brown ink on laid paper' +p238595 +sg225230 +S'A View of Prato with Santa Maria delle Carceri and the Imperial Castle [verso]' +p238596 +sg225236 +S'1500/1504' +p238597 +sa(dp238598 +g225232 +S'Fran\xc3\xa7ois Coudray' +p238599 +sg225240 +g27 +sg225234 +S'bronze' +p238600 +sg225230 +S'Saint Sebastian' +p238601 +sg225236 +S'1712' +p238602 +sa(dp238603 +g225230 +S"Mounted Trumpeters of Napoleon's Imperial Guard" +p238604 +sg225232 +S'Th\xc3\xa9odore Gericault' +p238605 +sg225234 +S'oil on canvas' +p238606 +sg225236 +S'1813/1814' +p238607 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d94.jpg' +p238608 +sg225240 +S"Between 1812 and 1814, while Napoleon's armies waged war across Europe,\nThéodore Gericault began a series of small canvases depicting Napoleonic\ncavalry\nofficers. These paintings provided Gericault with the opportunity to explore two of the\nsubjects that he loved best: the horse and the pomp of military life.\n The \n " +p238609 +sa(dp238610 +g225230 +S'Enfant Dessinant (Child Drawing)' +p238611 +sg225232 +S'F\xc3\xa9lix-Hilaire Buhot' +p238612 +sg225234 +S'lithograph' +p238613 +sg225236 +S'1894' +p238614 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a0009172.jpg' +p238615 +sg225240 +g27 +sa(dp238616 +g225230 +S'The Hammock (Le hamac)' +p238617 +sg225232 +S'James Jacques Joseph Tissot' +p238618 +sg225234 +S'etching and drypoint' +p238619 +sg225236 +S'1880' +p238620 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bb9.jpg' +p238621 +sg225240 +g27 +sa(dp238622 +g225232 +S'Max Pechstein' +p238623 +sg225240 +g27 +sg225234 +S'lithograph in black on wove paper' +p238624 +sg225230 +S'Erich Heckel' +p238625 +sg225236 +S'1909' +p238626 +sa(dp238627 +g225230 +S'Bust of a Girl' +p238628 +sg225232 +S'Paul C\xc3\xa9zanne' +p238629 +sg225234 +S'etching' +p238630 +sg225236 +S'1873' +p238631 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000982f.jpg' +p238632 +sg225240 +g27 +sa(dp238633 +g225230 +S'Cow Drinking' +p238634 +sg225232 +S'Nicolaes Pietersz Berchem' +p238635 +sg225234 +S'etching' +p238636 +sg225236 +S'1680' +p238637 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4b9.jpg' +p238638 +sg225240 +g27 +sa(dp238639 +g225230 +S'Cow Pissing' +p238640 +sg225232 +S'Nicolaes Pietersz Berchem' +p238641 +sg225234 +S'etching' +p238642 +sg225236 +S'unknown date\n' +p238643 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4bc.jpg' +p238644 +sg225240 +g27 +sa(dp238645 +g225230 +S'Cow Pissing' +p238646 +sg225232 +S'Nicolaes Pietersz Berchem' +p238647 +sg225234 +S'etching' +p238648 +sg225236 +S'unknown date\n' +p238649 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4bb.jpg' +p238650 +sg225240 +g27 +sa(dp238651 +g225230 +S'Herd Crossing the Brook' +p238652 +sg225232 +S'Nicolaes Pietersz Berchem' +p238653 +sg225234 +S'etching' +p238654 +sg225236 +S'unknown date\n' +p238655 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4c4.jpg' +p238656 +sg225240 +g27 +sa(dp238657 +g225230 +S'Herd Crossing the Brook' +p238658 +sg225232 +S'Nicolaes Pietersz Berchem' +p238659 +sg225234 +S'etching' +p238660 +sg225236 +S'unknown date\n' +p238661 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4c5.jpg' +p238662 +sg225240 +g27 +sa(dp238663 +g225230 +S'The Rest before the Inn' +p238664 +sg225232 +S'Nicolaes Pietersz Berchem' +p238665 +sg225234 +S'etching' +p238666 +sg225236 +S'unknown date\n' +p238667 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4c3.jpg' +p238668 +sg225240 +g27 +sa(dp238669 +g225230 +S'The Rest before the Inn' +p238670 +sg225232 +S'Nicolaes Pietersz Berchem' +p238671 +sg225234 +S'etching' +p238672 +sg225236 +S'unknown date\n' +p238673 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4c2.jpg' +p238674 +sg225240 +g27 +sa(dp238675 +g225230 +S'Resting Herd' +p238676 +sg225232 +S'Nicolaes Pietersz Berchem' +p238677 +sg225234 +S'etching counterproof' +p238678 +sg225236 +S'unknown date\n' +p238679 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4c0.jpg' +p238680 +sg225240 +g27 +sa(dp238681 +g225230 +S'Resting Herd' +p238682 +sg225232 +S'Nicolaes Pietersz Berchem' +p238683 +sg225234 +S'etching' +p238684 +sg225236 +S'unknown date\n' +p238685 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4c1.jpg' +p238686 +sg225240 +g27 +sa(dp238687 +g225230 +S'The Shepherd Seated on a Fountain and the Spinner' +p238688 +sg225232 +S'Nicolaes Pietersz Berchem' +p238689 +sg225234 +S'etching' +p238690 +sg225236 +S'1652' +p238691 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4ba.jpg' +p238692 +sg225240 +g27 +sa(dp238693 +g225230 +S'The Shepherd Seated on a Fountain and the Spinner' +p238694 +sg225232 +S'Nicolaes Pietersz Berchem' +p238695 +sg225234 +S'etching' +p238696 +sg225236 +S'1652' +p238697 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4bd.jpg' +p238698 +sg225240 +g27 +sa(dp238699 +g225230 +S'Shepherdess on a Donkey' +p238700 +sg225232 +S'Nicolaes Pietersz Berchem' +p238701 +sg225234 +S'etching' +p238702 +sg225236 +S'1655' +p238703 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4be.jpg' +p238704 +sg225240 +g27 +sa(dp238705 +g225230 +S'Shepherdess on a Donkey' +p238706 +sg225232 +S'Nicolaes Pietersz Berchem' +p238707 +sg225234 +S'etching' +p238708 +sg225236 +S'unknown date\n' +p238709 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4bf.jpg' +p238710 +sg225240 +g27 +sa(dp238711 +g225230 +S'Eagles' +p238712 +sg225232 +S'Peeter Boel' +p238713 +sg225234 +S'etching' +p238714 +sg225236 +S'unknown date\n' +p238715 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0b0.jpg' +p238716 +sg225240 +g27 +sa(dp238717 +g225230 +S'The Kneeling Hermit Facing Left' +p238718 +sg225232 +S'Andries Both' +p238719 +sg225234 +S'etching' +p238720 +sg225236 +S'unknown date\n' +p238721 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0b6.jpg' +p238722 +sg225240 +g27 +sa(dp238723 +g225230 +S'The Kneeling Hermit Facing Right' +p238724 +sg225232 +S'Andries Both' +p238725 +sg225234 +S'etching' +p238726 +sg225236 +S'unknown date\n' +p238727 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0b5.jpg' +p238728 +sg225240 +g27 +sa(dp238729 +g225230 +S'Fishermen at the Tiber, near the Soracte' +p238730 +sg225232 +S'Jan Both' +p238731 +sg225234 +S'etching' +p238732 +sg225236 +S'unknown date\n' +p238733 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4e7.jpg' +p238734 +sg225240 +g27 +sa(dp238735 +g225230 +S'The Hinny Drover, via Appia' +p238736 +sg225232 +S'Jan Both' +p238737 +sg225234 +S'etching' +p238738 +sg225236 +S'unknown date\n' +p238739 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4da.jpg' +p238740 +sg225240 +g27 +sa(dp238741 +g225230 +S'The Large Tree' +p238742 +sg225232 +S'Jan Both' +p238743 +sg225234 +S'etching' +p238744 +sg225236 +S'unknown date\n' +p238745 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4d0.jpg' +p238746 +sg225240 +g27 +sa(dp238747 +g225230 +S'The Large Tree' +p238748 +sg225232 +S'Jan Both' +p238749 +sg225234 +S'etching' +p238750 +sg225236 +S'unknown date\n' +p238751 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4cf.jpg' +p238752 +sg225240 +g27 +sa(dp238753 +g225230 +S'The Ox-Cart: View between Ancona and Sinigaglia' +p238754 +sg225232 +S'Jan Both' +p238755 +sg225234 +S'etching' +p238756 +sg225236 +S'unknown date\n' +p238757 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4d7.jpg' +p238758 +sg225240 +g27 +sa(dp238759 +g225230 +S'The Ponte Molle' +p238760 +sg225232 +S'Jan Both' +p238761 +sg225234 +S'etching' +p238762 +sg225236 +S'unknown date\n' +p238763 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4de.jpg' +p238764 +sg225240 +g27 +sa(dp238765 +g225230 +S'The Ponte Molle' +p238766 +sg225232 +S'Jan Both' +p238767 +sg225234 +S'etching' +p238768 +sg225236 +S'unknown date\n' +p238769 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4dd.jpg' +p238770 +sg225240 +g27 +sa(dp238771 +g225230 +S'Two Cows near the River at Tivoli' +p238772 +sg225232 +S'Jan Both' +p238773 +sg225234 +S'etching' +p238774 +sg225236 +S'unknown date\n' +p238775 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4e6.jpg' +p238776 +sg225240 +g27 +sa(dp238777 +g225230 +S'The Two Hinnies' +p238778 +sg225232 +S'Jan Both' +p238779 +sg225234 +S'etching' +p238780 +sg225236 +S'unknown date\n' +p238781 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4e2.jpg' +p238782 +sg225240 +g27 +sa(dp238783 +g225230 +S'View of the Tiber in the Campagna' +p238784 +sg225232 +S'Jan Both' +p238785 +sg225234 +S'etching' +p238786 +sg225236 +S'unknown date\n' +p238787 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4db.jpg' +p238788 +sg225240 +g27 +sa(dp238789 +g225230 +S'View of the Tiber in the Campagna' +p238790 +sg225232 +S'Jan Both' +p238791 +sg225234 +S'etching' +p238792 +sg225236 +S'unknown date\n' +p238793 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4dc.jpg' +p238794 +sg225240 +g27 +sa(dp238795 +g225230 +S'The Woman on the Hinny' +p238796 +sg225232 +S'Jan Both' +p238797 +sg225234 +S'etching' +p238798 +sg225236 +S'unknown date\n' +p238799 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4d1.jpg' +p238800 +sg225240 +g27 +sa(dp238801 +g225230 +S'The Woman on the Hinny' +p238802 +sg225232 +S'Jan Both' +p238803 +sg225234 +S'etching' +p238804 +sg225236 +S'unknown date\n' +p238805 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4d3.jpg' +p238806 +sg225240 +g27 +sa(dp238807 +g225230 +S'The Wooden Bridge at Sulmona near Tivoli' +p238808 +sg225232 +S'Jan Both' +p238809 +sg225234 +S'etching' +p238810 +sg225236 +S'unknown date\n' +p238811 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4e4.jpg' +p238812 +sg225240 +g27 +sa(dp238813 +g225230 +S'Village Road with Draw Well' +p238814 +sg225232 +S'Artist Information (' +p238815 +sg225234 +S'(artist)' +p238816 +sg225236 +S'\n' +p238817 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd87.jpg' +p238818 +sg225240 +g27 +sa(dp238819 +g225230 +S'Castle' +p238820 +sg225232 +S'Artist Information (' +p238821 +sg225234 +S'(artist)' +p238822 +sg225236 +S'\n' +p238823 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd61.jpg' +p238824 +sg225240 +g27 +sa(dp238825 +g225230 +S'Castle by a River' +p238826 +sg225232 +S'Netherlandish 16th Century' +p238827 +sg225234 +S'Bastelaer 1908, no. 64, State -69' +p238828 +sg225236 +S'\netching retouched with engraving' +p238829 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdb6.jpg' +p238830 +sg225240 +g27 +sa(dp238831 +g225230 +S'Castle with Lift-Bridge' +p238832 +sg225232 +S'Artist Information (' +p238833 +sg225234 +S'(artist)' +p238834 +sg225236 +S'\n' +p238835 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd99.jpg' +p238836 +sg225240 +g27 +sa(dp238837 +g225230 +S'Castle with a Moat' +p238838 +sg225232 +S'Carel Collaert' +p238839 +sg225234 +S'etching retouched with engraving' +p238840 +sg225236 +S'published in or before 1676' +p238841 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdb3.jpg' +p238842 +sg225240 +g27 +sa(dp238843 +g225230 +S'Farms' +p238844 +sg225232 +S'Artist Information (' +p238845 +sg225234 +S'(artist)' +p238846 +sg225236 +S'\n' +p238847 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd76.jpg' +p238848 +sg225240 +g27 +sa(dp238849 +g225230 +S'Country House with a Ditch' +p238850 +sg225232 +S'Artist Information (' +p238851 +sg225234 +S'(artist)' +p238852 +sg225236 +S'\n' +p238853 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd65.jpg' +p238854 +sg225240 +g27 +sa(dp238855 +g225230 +S'Farm' +p238856 +sg225232 +S'Artist Information (' +p238857 +sg225234 +S'(artist)' +p238858 +sg225236 +S'\n' +p238859 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd74.jpg' +p238860 +sg225240 +g27 +sa(dp238861 +g225230 +S'Farmstead' +p238862 +sg225232 +S'Artist Information (' +p238863 +sg225234 +S'(artist)' +p238864 +sg225236 +S'\n' +p238865 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd80.jpg' +p238866 +sg225240 +g27 +sa(dp238867 +g225230 +S'Farm' +p238868 +sg225232 +S'Artist Information (' +p238869 +sg225234 +S'(artist)' +p238870 +sg225236 +S'\n' +p238871 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd90.jpg' +p238872 +sg225240 +g27 +sa(dp238873 +g225230 +S'Large Farm with Draw Well' +p238874 +sg225232 +S'Artist Information (' +p238875 +sg225234 +S'(artist)' +p238876 +sg225236 +S'\n' +p238877 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd92.jpg' +p238878 +sg225240 +g27 +sa(dp238879 +g225230 +S'Farms' +p238880 +sg225232 +S'Artist Information (' +p238881 +sg225234 +S'(artist)' +p238882 +sg225236 +S'\n' +p238883 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd97.jpg' +p238884 +sg225240 +g27 +sa(dp238885 +g225230 +S'Farms with Draw Well' +p238886 +sg225232 +S'Artist Information (' +p238887 +sg225234 +S'(artist)' +p238888 +sg225236 +S'\n' +p238889 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd5d.jpg' +p238890 +sg225240 +g27 +sa(dp238891 +g225230 +S'Town Gate with Country Houses' +p238892 +sg225232 +S'Artist Information (' +p238893 +sg225234 +S'(artist)' +p238894 +sg225236 +S'\n' +p238895 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd5f.jpg' +p238896 +sg225240 +g27 +sa(dp238897 +g225230 +S'Farm' +p238898 +sg225232 +S'Artist Information (' +p238899 +sg225234 +S'(artist)' +p238900 +sg225236 +S'\n' +p238901 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cda0.jpg' +p238902 +sg225240 +g27 +sa(dp238903 +g225230 +S'Shed with Cottage' +p238904 +sg225232 +S'Artist Information (' +p238905 +sg225234 +S'(artist)' +p238906 +sg225236 +S'\n' +p238907 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdae.jpg' +p238908 +sg225240 +g27 +sa(dp238909 +g225230 +S'Country Houses' +p238910 +sg225232 +S'Artist Information (' +p238911 +sg225234 +S'(artist)' +p238912 +sg225236 +S'\n' +p238913 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd6c.jpg' +p238914 +sg225240 +g27 +sa(dp238915 +g225230 +S'Farm with Shed and Draw Well' +p238916 +sg225232 +S'Artist Information (' +p238917 +sg225234 +S'(artist)' +p238918 +sg225236 +S'\n' +p238919 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdaa.jpg' +p238920 +sg225240 +g27 +sa(dp238921 +g225230 +S'Farms in a Court' +p238922 +sg225232 +S'Artist Information (' +p238923 +sg225234 +S'(artist)' +p238924 +sg225236 +S'\n' +p238925 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd63.jpg' +p238926 +sg225240 +g27 +sa(dp238927 +g225230 +S'Farm with Gateway' +p238928 +sg225232 +S'Artist Information (' +p238929 +sg225234 +S'(artist)' +p238930 +sg225236 +S'\n' +p238931 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd72.jpg' +p238932 +sg225240 +g27 +sa(dp238933 +g225230 +S'Farms' +p238934 +sg225232 +S'Artist Information (' +p238935 +sg225234 +S'(artist)' +p238936 +sg225236 +S'\n' +p238937 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdb0.jpg' +p238938 +sg225240 +g27 +sa(dp238939 +g225230 +S'Country Village with Church Tower' +p238940 +sg225232 +S'Artist Information (' +p238941 +sg225234 +S'(artist)' +p238942 +sg225236 +S'\n' +p238943 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd7a.jpg' +p238944 +sg225240 +g27 +sa(dp238945 +g225230 +S'Country Village with Church' +p238946 +sg225232 +S'Artist Information (' +p238947 +sg225234 +S'(artist)' +p238948 +sg225236 +S'\n' +p238949 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd8c.jpg' +p238950 +sg225240 +g27 +sa(dp238951 +g225230 +S'Farms' +p238952 +sg225232 +S'Artist Information (' +p238953 +sg225234 +S'(artist)' +p238954 +sg225236 +S'\n' +p238955 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd95.jpg' +p238956 +sg225240 +g27 +sa(dp238957 +g225230 +S'Farms' +p238958 +sg225232 +S'Artist Information (' +p238959 +sg225234 +S'(artist)' +p238960 +sg225236 +S'\n' +p238961 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cda2.jpg' +p238962 +sg225240 +g27 +sa(dp238963 +g225230 +S'Farms' +p238964 +sg225232 +S'Artist Information (' +p238965 +sg225234 +S'(artist)' +p238966 +sg225236 +S'\n' +p238967 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cda8.jpg' +p238968 +sg225240 +g27 +sa(dp238969 +g225230 +S'Road with Barn and Cottages' +p238970 +sg225232 +S'Artist Information (' +p238971 +sg225234 +S'(artist)' +p238972 +sg225236 +S'\n' +p238973 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd9d.jpg' +p238974 +sg225240 +g27 +sa(dp238975 +g225230 +S'Farms and Shed' +p238976 +sg225232 +S'Artist Information (' +p238977 +sg225234 +S'(artist)' +p238978 +sg225236 +S'\n' +p238979 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd9b.jpg' +p238980 +sg225240 +g27 +sa(dp238981 +g225230 +S'Village Road with Farm and Sheds' +p238982 +sg225232 +S'Artist Information (' +p238983 +sg225234 +S'(artist)' +p238984 +sg225236 +S'\n' +p238985 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd88.jpg' +p238986 +sg225240 +g27 +sa(dp238987 +g225230 +S'Village Road' +p238988 +sg225232 +S'Artist Information (' +p238989 +sg225234 +S'(artist)' +p238990 +sg225236 +S'\n' +p238991 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd7c.jpg' +p238992 +sg225240 +g27 +sa(dp238993 +g225230 +S'A Farmyard with a Draw Well' +p238994 +sg225232 +S'Artist Information (' +p238995 +sg225234 +S'(artist)' +p238996 +sg225236 +S'\n' +p238997 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd86.jpg' +p238998 +sg225240 +g27 +sa(dp238999 +g225230 +S'Farm and Row of Houses' +p239000 +sg225232 +S'Artist Information (' +p239001 +sg225234 +S'(artist)' +p239002 +sg225236 +S'\n' +p239003 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd6a.jpg' +p239004 +sg225240 +g27 +sa(dp239005 +g225230 +S'Village Street' +p239006 +sg225232 +S'Artist Information (' +p239007 +sg225234 +S'(artist)' +p239008 +sg225236 +S'\n' +p239009 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd8a.jpg' +p239010 +sg225240 +g27 +sa(dp239011 +g225230 +S'Village Street' +p239012 +sg225232 +S'Artist Information (' +p239013 +sg225234 +S'(artist)' +p239014 +sg225236 +S'\n' +p239015 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd6f.jpg' +p239016 +sg225240 +g27 +sa(dp239017 +g225230 +S'Village Street' +p239018 +sg225232 +S'Artist Information (' +p239019 +sg225234 +S'(artist)' +p239020 +sg225236 +S'\n' +p239021 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdac.jpg' +p239022 +sg225240 +g27 +sa(dp239023 +g225230 +S'Village Street' +p239024 +sg225232 +S'Artist Information (' +p239025 +sg225234 +S'(artist)' +p239026 +sg225236 +S'\n' +p239027 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd68.jpg' +p239028 +sg225240 +g27 +sa(dp239029 +g225230 +S'Farm' +p239030 +sg225232 +S'Artist Information (' +p239031 +sg225234 +S'(artist)' +p239032 +sg225236 +S'\n' +p239033 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdb2.jpg' +p239034 +sg225240 +g27 +sa(dp239035 +g225230 +S'Village Square with Shrine' +p239036 +sg225232 +S'Carel Collaert' +p239037 +sg225234 +S'etching retouched with engraving' +p239038 +sg225236 +S'published in or before 1676' +p239039 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdb5.jpg' +p239040 +sg225240 +g27 +sa(dp239041 +g225230 +S"The Swann's Inn with Farms" +p239042 +sg225232 +S'Artist Information (' +p239043 +sg225234 +S'(artist)' +p239044 +sg225236 +S'\n' +p239045 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd84.jpg' +p239046 +sg225240 +g27 +sa(dp239047 +g225230 +S'Country Village' +p239048 +sg225232 +S'Artist Information (' +p239049 +sg225234 +S'(artist)' +p239050 +sg225236 +S'\n' +p239051 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cda6.jpg' +p239052 +sg225240 +g27 +sa(dp239053 +g225230 +S'Farms' +p239054 +sg225232 +S'Artist Information (' +p239055 +sg225234 +S'(artist)' +p239056 +sg225236 +S'\n' +p239057 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd82.jpg' +p239058 +sg225240 +g27 +sa(dp239059 +g225230 +S'Farms in a Village' +p239060 +sg225232 +S'Artist Information (' +p239061 +sg225234 +S'(artist)' +p239062 +sg225236 +S'\n' +p239063 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd7e.jpg' +p239064 +sg225240 +g27 +sa(dp239065 +g225230 +S'Country Village with Sheep and Sitting Shepherd' +p239066 +sg225232 +S'Artist Information (' +p239067 +sg225234 +S'(artist)' +p239068 +sg225236 +S'\n' +p239069 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd78.jpg' +p239070 +sg225240 +g27 +sa(dp239071 +g225230 +S'Village with Pond' +p239072 +sg225232 +S'Netherlandish 16th Century' +p239073 +sg225234 +S'Bastelaer 1908, no. 64, State -69' +p239074 +sg225236 +S'\netching retouched with engraving' +p239075 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdb4.jpg' +p239076 +sg225240 +g27 +sa(dp239077 +g225230 +S'Country Village with Church and Bridge' +p239078 +sg225232 +S'Artist Information (' +p239079 +sg225234 +S'(artist)' +p239080 +sg225236 +S'\n' +p239081 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd6e.jpg' +p239082 +sg225240 +g27 +sa(dp239083 +g225230 +S'Country Village with Post Mill' +p239084 +sg225232 +S'Artist Information (' +p239085 +sg225234 +S'(artist)' +p239086 +sg225236 +S'\n' +p239087 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cda4.jpg' +p239088 +sg225240 +g27 +sa(dp239089 +g225230 +S'Fields and a Village Road with Post Mill' +p239090 +sg225232 +S'Artist Information (' +p239091 +sg225234 +S'(artist)' +p239092 +sg225236 +S'\n' +p239093 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd8e.jpg' +p239094 +sg225240 +g27 +sa(dp239095 +g225230 +S'Animalium Quadrupedum' +p239096 +sg225232 +S'Adriaen Collaert' +p239097 +sg225234 +S'engraving' +p239098 +sg225236 +S'unknown date\n' +p239099 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd41.jpg' +p239100 +sg225240 +g27 +sa(dp239101 +g225230 +S'Animalium Quadrupedum' +p239102 +sg225232 +S'Adriaen Collaert' +p239103 +sg225234 +S'engraving' +p239104 +sg225236 +S'unknown date\n' +p239105 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd40.jpg' +p239106 +sg225240 +g27 +sa(dp239107 +g225230 +S'Animalium Quadrupedum' +p239108 +sg225232 +S'Adriaen Collaert' +p239109 +sg225234 +S'engraving' +p239110 +sg225236 +S'unknown date\n' +p239111 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd3f.jpg' +p239112 +sg225240 +g27 +sa(dp239113 +g225230 +S'Animalium Quadrupedum' +p239114 +sg225232 +S'Adriaen Collaert' +p239115 +sg225234 +S'engraving' +p239116 +sg225236 +S'unknown date\n' +p239117 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd3e.jpg' +p239118 +sg225240 +g27 +sa(dp239119 +g225230 +S'Animalium Quadrupedum' +p239120 +sg225232 +S'Adriaen Collaert' +p239121 +sg225234 +S'engraving' +p239122 +sg225236 +S'unknown date\n' +p239123 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd3d.jpg' +p239124 +sg225240 +g27 +sa(dp239125 +g225230 +S'Animalium Quadrupedum' +p239126 +sg225232 +S'Adriaen Collaert' +p239127 +sg225234 +S'engraving' +p239128 +sg225236 +S'unknown date\n' +p239129 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd3c.jpg' +p239130 +sg225240 +g27 +sa(dp239131 +g225230 +S'Animalium Quadrupedum' +p239132 +sg225232 +S'Adriaen Collaert' +p239133 +sg225234 +S'engraving' +p239134 +sg225236 +S'unknown date\n' +p239135 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd3b.jpg' +p239136 +sg225240 +g27 +sa(dp239137 +g225230 +S'Animalium Quadrupedum' +p239138 +sg225232 +S'Adriaen Collaert' +p239139 +sg225234 +S'engraving' +p239140 +sg225236 +S'unknown date\n' +p239141 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd3a.jpg' +p239142 +sg225240 +g27 +sa(dp239143 +g225230 +S'Animalium Quadrupedum' +p239144 +sg225232 +S'Adriaen Collaert' +p239145 +sg225234 +S'engraving' +p239146 +sg225236 +S'unknown date\n' +p239147 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd39.jpg' +p239148 +sg225240 +g27 +sa(dp239149 +g225230 +S'Animalium Quadrupedum' +p239150 +sg225232 +S'Adriaen Collaert' +p239151 +sg225234 +S'engraving' +p239152 +sg225236 +S'unknown date\n' +p239153 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd38.jpg' +p239154 +sg225240 +g27 +sa(dp239155 +g225230 +S'Animalium Quadrupedum' +p239156 +sg225232 +S'Adriaen Collaert' +p239157 +sg225234 +S'engraving' +p239158 +sg225236 +S'unknown date\n' +p239159 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd37.jpg' +p239160 +sg225240 +g27 +sa(dp239161 +g225230 +S'Birds, Avium Vivae Icones' +p239162 +sg225232 +S'Adriaen Collaert' +p239163 +sg225234 +S'engraving' +p239164 +sg225236 +S'unknown date\n' +p239165 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd36.jpg' +p239166 +sg225240 +g27 +sa(dp239167 +g225230 +S'Saint Sebastian' +p239168 +sg225232 +S'Willem Panneels' +p239169 +sg225234 +S'etching' +p239170 +sg225236 +S'unknown date\n' +p239171 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2bb.jpg' +p239172 +sg225240 +g27 +sa(dp239173 +g225230 +S'Coronation of the Virgin' +p239174 +sg225232 +S'Cornelis Schut I' +p239175 +sg225234 +S'etching and drypoint' +p239176 +sg225236 +S'unknown date\n' +p239177 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3c1.jpg' +p239178 +sg225240 +g27 +sa(dp239179 +g225230 +S'Grammatica' +p239180 +sg225232 +S'Cornelis Schut I' +p239181 +sg225234 +S'etching' +p239182 +sg225236 +S'unknown date\n' +p239183 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d565.jpg' +p239184 +sg225240 +g27 +sa(dp239185 +g225230 +S'Neptune with Two Horses on the Sea' +p239186 +sg225232 +S'Cornelis Schut I' +p239187 +sg225234 +S'etching' +p239188 +sg225236 +S'unknown date\n' +p239189 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d567.jpg' +p239190 +sg225240 +g27 +sa(dp239191 +g225230 +S'Spring (Village Fair before an Inn)' +p239192 +sg225232 +S'Jan van de Velde II' +p239193 +sg225234 +S'etching' +p239194 +sg225236 +S'1617' +p239195 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5ce.jpg' +p239196 +sg225240 +g27 +sa(dp239197 +g225230 +S'The Massacre under the Roman Triumvirate' +p239198 +sg225232 +S'Artist Information (' +p239199 +sg225234 +S'Netherlandish, 1527 - c. 1606' +p239200 +sg225236 +S'(artist after)' +p239201 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d074.jpg' +p239202 +sg225240 +g27 +sa(dp239203 +g225230 +S'The Wedding of Mopsus and Nisa' +p239204 +sg225232 +S'Artist Information (' +p239205 +sg225234 +S'(artist after)' +p239206 +sg225236 +S'\n' +p239207 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf15.jpg' +p239208 +sg225240 +g27 +sa(dp239209 +g225232 +S'Artist Information (' +p239210 +sg225240 +g27 +sg225234 +S'(artist after)' +p239211 +sg225230 +S'The Drawing Book of Abraham Bloemaert' +p239212 +sg225236 +S'\n' +p239213 +sa(dp239214 +g225230 +S'Parnassus' +p239215 +sg225232 +S'Artist Information (' +p239216 +sg225234 +S'(artist after)' +p239217 +sg225236 +S'\n' +p239218 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8b8.jpg' +p239219 +sg225240 +g27 +sa(dp239220 +g225230 +S'Justice' +p239221 +sg225232 +S'Master I.I.CA' +p239222 +sg225234 +S'engraving' +p239223 +sg225236 +S'c. 1520' +p239224 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c744.jpg' +p239225 +sg225240 +g27 +sa(dp239226 +g225230 +S'The Nativity' +p239227 +sg225232 +S'Giuliano Traballesi' +p239228 +sg225234 +S'pen and black ink with brown wash, heightened withwhite, on (brown paper?)' +p239229 +sg225236 +S'unknown date\n' +p239230 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00069/a000693b.jpg' +p239231 +sg225240 +g27 +sa(dp239232 +g225230 +S'The Drinker' +p239233 +sg225232 +S'Cornelis Bega' +p239234 +sg225234 +S'etching' +p239235 +sg225236 +S'unknown date\n' +p239236 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d084.jpg' +p239237 +sg225240 +g27 +sa(dp239238 +g225230 +S'Man in a Short Cloak' +p239239 +sg225232 +S'Cornelis Bega' +p239240 +sg225234 +S'etching' +p239241 +sg225236 +S'unknown date\n' +p239242 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d08b.jpg' +p239243 +sg225240 +g27 +sa(dp239244 +g225230 +S'Old Woman Standing' +p239245 +sg225232 +S'Cornelis Bega' +p239246 +sg225234 +S'etching' +p239247 +sg225236 +S'unknown date\n' +p239248 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d085.jpg' +p239249 +sg225240 +g27 +sa(dp239250 +g225230 +S'The Refused Caress' +p239251 +sg225232 +S'Cornelis Bega' +p239252 +sg225234 +S'etching' +p239253 +sg225236 +S'unknown date\n' +p239254 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d08f.jpg' +p239255 +sg225240 +g27 +sa(dp239256 +g225230 +S'Sitting Man with His Hat in His Right Hand' +p239257 +sg225232 +S'Cornelis Bega' +p239258 +sg225234 +S'etching' +p239259 +sg225236 +S'unknown date\n' +p239260 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d083.jpg' +p239261 +sg225240 +g27 +sa(dp239262 +g225230 +S'The Seated Peasant and His Wife' +p239263 +sg225232 +S'Cornelis Bega' +p239264 +sg225234 +S'etching' +p239265 +sg225236 +S'unknown date\n' +p239266 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d08d.jpg' +p239267 +sg225240 +g27 +sa(dp239268 +g225230 +S'The Three Drinkers' +p239269 +sg225232 +S'Cornelis Bega' +p239270 +sg225234 +S'etching' +p239271 +sg225236 +S'unknown date\n' +p239272 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d093.jpg' +p239273 +sg225240 +g27 +sa(dp239274 +g225230 +S'The Woman with the Jug, Standing' +p239275 +sg225232 +S'Cornelis Bega' +p239276 +sg225234 +S'etching' +p239277 +sg225236 +S'unknown date\n' +p239278 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d08a.jpg' +p239279 +sg225240 +g27 +sa(dp239280 +g225230 +S'The Virgin and Child with Saints' +p239281 +sg225232 +S'Artist Information (' +p239282 +sg225234 +S'(artist after)' +p239283 +sg225236 +S'\n' +p239284 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c874.jpg' +p239285 +sg225240 +g27 +sa(dp239286 +g225230 +S'Virgin and Child on a Cloud' +p239287 +sg225232 +S'Antonio Balestra' +p239288 +sg225234 +S'etching' +p239289 +sg225236 +S'1702' +p239290 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca3b.jpg' +p239291 +sg225240 +g27 +sa(dp239292 +g225230 +S'Gentry Visiting a Prison' +p239293 +sg225232 +S'Abraham Bosse' +p239294 +sg225234 +S'engraving with etching' +p239295 +sg225236 +S'unknown date\n' +p239296 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a64.jpg' +p239297 +sg225240 +g27 +sa(dp239298 +g225230 +S'The Inn near Prima Porta' +p239299 +sg225232 +S'Bartholomeus Breenbergh' +p239300 +sg225234 +S'etching' +p239301 +sg225236 +S'unknown date\n' +p239302 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0ba.jpg' +p239303 +sg225240 +g27 +sa(dp239304 +g225230 +S'Saint Roch' +p239305 +sg225232 +S'Oliviero Gatti' +p239306 +sg225234 +S'engraving' +p239307 +sg225236 +S'1605' +p239308 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c95b.jpg' +p239309 +sg225240 +g27 +sa(dp239310 +g225230 +S'Landscape with a Farmhouse' +p239311 +sg225232 +S'Artist Information (' +p239312 +sg225234 +S'Dutch, 1565 - 1629' +p239313 +sg225236 +S'(artist)' +p239314 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfa9.jpg' +p239315 +sg225240 +g27 +sa(dp239316 +g225230 +S'Madonna Aldobrandini' +p239317 +sg225232 +S'Artist Information (' +p239318 +sg225234 +S'(artist after)' +p239319 +sg225236 +S'\n' +p239320 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c740.jpg' +p239321 +sg225240 +g27 +sa(dp239322 +g225230 +S'The Virgin with a Fish' +p239323 +sg225232 +S'Artist Information (' +p239324 +sg225234 +S'(artist after)' +p239325 +sg225236 +S'\n' +p239326 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbb5.jpg' +p239327 +sg225240 +g27 +sa(dp239328 +g225230 +S'Pandora Opening Her Box' +p239329 +sg225232 +S'Master Z.B.M.' +p239330 +sg225234 +S'etching with engraving on laid paper' +p239331 +sg225236 +S'1557' +p239332 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c842.jpg' +p239333 +sg225240 +g27 +sa(dp239334 +g225230 +S'Nereids and Tritons' +p239335 +sg225232 +S'Battista Angolo del Moro' +p239336 +sg225234 +S', unknown date' +p239337 +sg225236 +S'\n' +p239338 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c824.jpg' +p239339 +sg225240 +g27 +sa(dp239340 +g225230 +S'Halt on the March' +p239341 +sg225232 +S'Jean-Baptiste Joseph Pater' +p239342 +sg225234 +S'etching and drypoint' +p239343 +sg225236 +S'unknown date\n' +p239344 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009657.jpg' +p239345 +sg225240 +g27 +sa(dp239346 +g225230 +S'The Transfiguration' +p239347 +sg225232 +S'Camillo Procaccini' +p239348 +sg225234 +S'etching' +p239349 +sg225236 +S'c. 1590' +p239350 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d447.jpg' +p239351 +sg225240 +g27 +sa(dp239352 +g225230 +S'Hans van Aachen' +p239353 +sg225232 +S'Artist Information (' +p239354 +sg225234 +S'(artist after)' +p239355 +sg225236 +S'\n' +p239356 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d075.jpg' +p239357 +sg225240 +g27 +sa(dp239358 +g225230 +S'Hieronymus Alexander, Archbishop of Brindisi' +p239359 +sg225232 +S'Agostino dei Musi' +p239360 +sg225234 +S'engraving' +p239361 +sg225236 +S'1536' +p239362 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c845.jpg' +p239363 +sg225240 +g27 +sa(dp239364 +g225230 +S'The March of Silenus' +p239365 +sg225232 +S'Agostino dei Musi' +p239366 +sg225234 +S'engraving' +p239367 +sg225236 +S'unknown date\n' +p239368 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c848.jpg' +p239369 +sg225240 +g27 +sa(dp239370 +g225230 +S'Bridge' +p239371 +sg225232 +S'Thomas Wyck' +p239372 +sg225234 +S'etching' +p239373 +sg225236 +S'unknown date\n' +p239374 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d453.jpg' +p239375 +sg225240 +g27 +sa(dp239376 +g225230 +S'The Finding of Moses' +p239377 +sg225232 +S'Bartolomeo Biscaino' +p239378 +sg225234 +S'etching' +p239379 +sg225236 +S'unknown date\n' +p239380 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9db.jpg' +p239381 +sg225240 +g27 +sa(dp239382 +g225230 +S'Saint John the Baptist Preaching' +p239383 +sg225232 +S'Frans Crabbe van Espleghem' +p239384 +sg225234 +S'woodcut' +p239385 +sg225236 +S'possibly c. 1530' +p239386 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf65.jpg' +p239387 +sg225240 +g27 +sa(dp239388 +g225230 +S'Pentecost' +p239389 +sg225232 +S'Artist Information (' +p239390 +sg225234 +S'(artist after)' +p239391 +sg225236 +S'\n' +p239392 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caa8.jpg' +p239393 +sg225240 +g27 +sa(dp239394 +g225230 +S'Pentecost' +p239395 +sg225232 +S'Artist Information (' +p239396 +sg225234 +S'(artist after)' +p239397 +sg225236 +S'\n' +p239398 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caa9.jpg' +p239399 +sg225240 +g27 +sa(dp239400 +g225230 +S'Venus and Mars Embracing with Vulcan at his Forge' +p239401 +sg225232 +S'Artist Information (' +p239402 +sg225234 +S'(artist after)' +p239403 +sg225236 +S'\n' +p239404 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c893.jpg' +p239405 +sg225240 +g27 +sa(dp239406 +g225230 +S'Venus Reclining with Vulcan at His Forge' +p239407 +sg225232 +S'Artist Information (' +p239408 +sg225234 +S'(artist after)' +p239409 +sg225236 +S'\n' +p239410 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c892.jpg' +p239411 +sg225240 +g27 +sa(dp239412 +g225230 +S'Madonna and Child Enthroned, Saint Jerome and Saint Francis' +p239413 +sg225232 +S'Artist Information (' +p239414 +sg225234 +S'(artist after)' +p239415 +sg225236 +S'\n' +p239416 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caf5.jpg' +p239417 +sg225240 +g27 +sa(dp239418 +g225230 +S'Diana and Her Nymphs in a Garden' +p239419 +sg225232 +S'Abraham de Bruyn' +p239420 +sg225234 +S'engraving' +p239421 +sg225236 +S'1569' +p239422 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf1d.jpg' +p239423 +sg225240 +g27 +sa(dp239424 +g225230 +S'The Annunciation' +p239425 +sg225232 +S'Hendrick Goltzius' +p239426 +sg225234 +S', 1594' +p239427 +sg225236 +S'\n' +p239428 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d06e.jpg' +p239429 +sg225240 +g27 +sa(dp239430 +g225230 +S'The Group at the Fireplace' +p239431 +sg225232 +S'Cornelis Bega' +p239432 +sg225234 +S'etching' +p239433 +sg225236 +S'unknown date\n' +p239434 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d08e.jpg' +p239435 +sg225240 +g27 +sa(dp239436 +g225230 +S'The Smoker' +p239437 +sg225232 +S'Cornelis Bega' +p239438 +sg225234 +S'etching' +p239439 +sg225236 +S'unknown date\n' +p239440 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d087.jpg' +p239441 +sg225240 +g27 +sa(dp239442 +g225230 +S'Young Man with a Statue of Cupid' +p239443 +sg225232 +S'Wallerant Vaillant' +p239444 +sg225234 +S'mezzotint' +p239445 +sg225236 +S'unknown date\n' +p239446 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5c5.jpg' +p239447 +sg225240 +g27 +sa(dp239448 +g225230 +S'Study for "Surprise" (Battle of the Tigers)' +p239449 +sg225232 +S'Fran\xc3\xa7ois-Nicolas Chifflart' +p239450 +sg225234 +S'graphite on blue-gray paper' +p239451 +sg225236 +S'c. 1865' +p239452 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e64.jpg' +p239453 +sg225240 +g27 +sa(dp239454 +g225230 +S'Femmes au bain' +p239455 +sg225232 +S'Suzanne Valadon' +p239456 +sg225234 +S'soft-ground etching' +p239457 +sg225236 +S'1893' +p239458 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e95.jpg' +p239459 +sg225240 +g27 +sa(dp239460 +g225230 +S'Sunflowers, Rue des Beaux-Arts' +p239461 +sg225232 +S'James McNeill Whistler' +p239462 +sg225234 +S'etching and drypoint in black on cream laid paper' +p239463 +sg225236 +S'1892/1893' +p239464 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab86.jpg' +p239465 +sg225240 +g27 +sa(dp239466 +g225230 +S'Figures in a Storm' +p239467 +sg225232 +S'Alessandro Magnasco' +p239468 +sg225234 +S'brush and brown ink with brown wash, heightened with white, over red chalk on laid paper' +p239469 +sg225236 +S'unknown date\n' +p239470 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a000742f.jpg' +p239471 +sg225240 +g27 +sa(dp239472 +g225230 +S'Seaforms' +p239473 +sg225232 +S'Albert William Christ-Janer' +p239474 +sg225234 +S'offset lithograph' +p239475 +sg225236 +S'unknown date\n' +p239476 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a62.jpg' +p239477 +sg225240 +g27 +sa(dp239478 +g225230 +S'Snow' +p239479 +sg225232 +S'M.C. Escher' +p239480 +sg225234 +S'lithograph' +p239481 +sg225236 +S'1936' +p239482 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b78.jpg' +p239483 +sg225240 +g27 +sa(dp239484 +g225230 +S'Dish' +p239485 +sg225232 +S'Artist Information (' +p239486 +sg225234 +S'1276 - 1368' +p239487 +sg225236 +S'(ceramist)' +p239488 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00020/a00020fd.jpg' +p239489 +sg225240 +g27 +sa(dp239490 +g225230 +S'Vase' +p239491 +sg225232 +S'Chinese Liao Dynasty' +p239492 +sg225234 +S'overall: 28.6 x 16.2 cm (11 1/4 x 6 3/8 in.)' +p239493 +sg225236 +S'\nlead-glazed earthenware' +p239494 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f0e.jpg' +p239495 +sg225240 +g27 +sa(dp239496 +g225230 +S'Bowl' +p239497 +sg225232 +S'Chinese Jin Dynasty' +p239498 +sg225234 +S'overall: 9.9 x 23.2 cm (3 7/8 x 9 1/8 in.)' +p239499 +sg225236 +S'\nglazed stoneware, Northern Celadon ware' +p239500 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f1b.jpg' +p239501 +sg225240 +g27 +sa(dp239502 +g225230 +S'Tea Bowl' +p239503 +sg225232 +S'Chinese Southern Song Dynasty' +p239504 +sg225234 +S'overall: 7.2 x 12.7 cm (2 13/16 x 5 in.)' +p239505 +sg225236 +S'\nglazed stoneware, Jian ware' +p239506 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f2d.jpg' +p239507 +sg225240 +g27 +sa(dp239508 +g225230 +S'Stem Bowl' +p239509 +sg225232 +S'Chinese Ming Dynasty' +p239510 +sg225234 +S'overall: 8.3 x 15.6 cm (3 1/4 x 6 1/8 in.)' +p239511 +sg225236 +S'\nporcelain with underglaze blue decoration' +p239512 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f3e.jpg' +p239513 +sg225240 +S"This Ming dynasty stem bowl—a shape used in Buddhist ritual—exemplifies the finest blue-and-white porcelains of the early fifteenth century. The design is painted in underglaze cobalt blue. Leafy tendrils of a lotus scroll enframe eight blossoms, each topped with one of Buddhism's Eight Auspicious Emblems: a pair of fish, a lotus flower, a canopy, a parasol, a conch shell, the wheel of dharma, an endless knot, and a vase. These symbolize freedom, purity, righteousness, respect, the Buddha's voice, Buddhist law, compassion, and truth.\n " +p239514 +sa(dp239515 +g225230 +S'Stem Cup' +p239516 +sg225232 +S'Chinese Ming Dynasty' +p239517 +sg225234 +S'overall: 12.3 x 17.3 cm (4 13/16 x 6 13/16 in.)' +p239518 +sg225236 +S'\nporcelain with enamels on the biscuit' +p239519 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f55.jpg' +p239520 +sg225240 +S'The shape and the decorative motifs of this finely potted stem cup are characteristic of the late fifteenth and early sixteenth centuries. The interior is decorated with two incised dragons chasing flaming pearls around the cavetto and covered with colorless glaze. At the center is an incised double circle containing three stylized \n The presence of slip-trailed decoration is rare on this type of vessel, as the majority of middle-Ming stem cups with similarly styled yellow and green enamel decoration have the designs incised into the body.\n An unusual feature of this stem cup is the four-character 'Phagspa script mark inscribed in underglaze blue on the interior wall of the foot. This script was invented in the early Yuan dynasty (late thirteenth century) by the Tibetan monk 'Phagspa (d. 1280) for the phoneticization of Chinese words into Tibetan and Mongolian.\n Since all three vessels are decorated in the style of the Zhengde reign, and yet have 'Phagspa marks corresponding to the Jiajing reign mark, it is probable that they were produced in the first years of the latter period. It is also likely that these vessels were made as an imperial gift to a Tibetan temple or high-ranking lama. The vessels were probably produced no later than the first years of Jiajing, since the ceramic decorative style changed soon after the beginning of the Jiajing reign in 1522. Furthermore, the Jiajing emperor\'s growing obsession with the Daoist religion (at the expense of the influence of the Buddhist church) would have made such a gift unlikely late in his reign.\n (Text by Stephen Little, published in the NGA Systematic Catalogue: \n Notes\n \n \n \n \n \n \n ' +p239521 +sa(dp239522 +g225230 +S'Vase in the Shape of an Archaic Bronze Zun' +p239523 +sg225232 +S'Chinese Ming Dynasty' +p239524 +sg225234 +S'overall (height): 24.5 cm (9 5/8 in.)' +p239525 +sg225236 +S'\nporcelain with enamels on the biscuit' +p239526 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f5e.jpg' +p239527 +sg225240 +g27 +sa(dp239528 +g225230 +S'Bottle Vase' +p239529 +sg225232 +S'Chinese Qing Dynasty' +p239530 +sg225234 +S'overall: 21.7 x 9.5 cm (8 9/16 x 3 3/4 in.)' +p239531 +sg225236 +S'\nporcelain with underglaze blue decoration' +p239532 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f5f.jpg' +p239533 +sg225240 +g27 +sa(dp239534 +g225230 +S'Bottle Vase' +p239535 +sg225232 +S'Chinese Qing Dynasty' +p239536 +sg225234 +S'overall: 14.9 x 10.2 cm (5 7/8 x 4 in.)' +p239537 +sg225236 +S'\nporcelain with underglaze blue decoration' +p239538 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f60.jpg' +p239539 +sg225240 +S'This bottle vase represents a shape of the late Kangxi period.\n (Text by Stephen Little, published in the NGA Systematic Catalogue: \n Notes

\n1. For a similar example, see Special Exhibition of Hsüan-te Porcelain of the Ming Dynasty [Exh. cat. National Palace Museum], Taipei, 1980, pl. 12. For an example in steatitic porcelain that has been dated to the late Kangxi or early Yongzheng period, see H. A. Van Oort and J. M. Kater, "Chinese Soft Paste or Steatitic Porcelain," Arts of Asia 12, no. 2 (March-April 1982), fig. 5.
\n ' +p239540 +sa(dp239541 +g225230 +S'Vase' +p239542 +sg225232 +S'Chinese Qing Dynasty' +p239543 +sg225234 +S'overall: 13.8 x 8.5 cm (5 7/16 x 3 3/8 in.)' +p239544 +sg225236 +S'\nporcelain with underglaze blue decoration over white slip' +p239545 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f00.jpg' +p239546 +sg225240 +g27 +sa(dp239547 +g225230 +S'Vase' +p239548 +sg225232 +S'Chinese Qing Dynasty' +p239549 +sg225234 +S'overall: 13 x 7 cm (5 1/8 x 2 3/4 in.)' +p239550 +sg225236 +S'\nporcelain with underglaze blue decoration over white slip ground' +p239551 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f01.jpg' +p239552 +sg225240 +g27 +sa(dp239553 +g225230 +S'Vase' +p239554 +sg225232 +S'Chinese Qing Dynasty' +p239555 +sg225234 +S'overall: 11.7 x 6.6 cm (4 5/8 x 2 5/8 in.)' +p239556 +sg225236 +S'\nporcelain with underglaze blue decoration' +p239557 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f02.jpg' +p239558 +sg225240 +g27 +sa(dp239559 +g225230 +S'Vase' +p239560 +sg225232 +S'Chinese Qing Dynasty' +p239561 +sg225234 +S'overall: 11.6 x 6.2 cm (4 9/16 x 2 7/16 in.)' +p239562 +sg225236 +S'\nporcelain with underglaze blue decoration over white slip ground' +p239563 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f03.jpg' +p239564 +sg225240 +g27 +sa(dp239565 +g225230 +S'Bottle Vase' +p239566 +sg225232 +S'Chinese Qing Dynasty' +p239567 +sg225234 +S'overall: 14.6 x 8.2 cm (5 3/4 x 3 1/4 in.)' +p239568 +sg225236 +S'\nporcelain with peachbloom glaze' +p239569 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f05.jpg' +p239570 +sg225240 +S'The exterior of this classical peachbloom vessel is covered with a dull red glaze.\n There are several small patches of pale green color.\n (Text by Stephen Little, published in the NGA Systematic Catalogue: \n ' +p239571 +sa(dp239572 +g225230 +S'"Beehive" Water Pot' +p239573 +sg225232 +S'Chinese Qing Dynasty' +p239574 +sg225234 +S'overall: 8.8 x 12.7 cm (3 7/16 x 5 in.)' +p239575 +sg225236 +S'\nporcelain with peachbloom glaze' +p239576 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f07.jpg' +p239577 +sg225240 +g27 +sa(dp239578 +g225230 +S'Small Beaker Vase in the Shape of an Archaic Bronze Gu' +p239579 +sg225232 +S'Chinese Qing Dynasty' +p239580 +sg225234 +S'overall: 10.9 x 8.7 cm (4 5/16 x 3 7/16 in.)' +p239581 +sg225236 +S'\nporcelain with colorless glaze' +p239582 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f08.jpg' +p239583 +sg225240 +g27 +sa(dp239584 +g225230 +S'Small Baluster Vase' +p239585 +sg225232 +S'Chinese Qing Dynasty' +p239586 +sg225234 +S'overall: 20.6 x 9.3 cm (8 1/8 x 3 11/16 in.)' +p239587 +sg225236 +S'\nporcelain with blue glaze and painted gold decoration' +p239588 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f09.jpg' +p239589 +sg225240 +g27 +sa(dp239590 +g225230 +S'Bowl' +p239591 +sg225232 +S'Chinese Qing Dynasty' +p239592 +sg225234 +S'overall: 4.5 x 11.6 cm (1 3/4 x 4 9/16 in.)' +p239593 +sg225236 +S'\nporcelain with celadon glaze' +p239594 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f0b.jpg' +p239595 +sg225240 +g27 +sa(dp239596 +g225230 +S'Vase in the Shape of an Archaic Bronze Hu' +p239597 +sg225232 +S'Chinese Qing Dynasty' +p239598 +sg225234 +S'overall: 19.1 x 12.2 cm (7 1/2 x 4 13/16 in.)' +p239599 +sg225236 +S'\nsteatitic porcelain' +p239600 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f0d.jpg' +p239601 +sg225240 +g27 +sa(dp239602 +g225230 +S'Stem Cup' +p239603 +sg225232 +S'Chinese Qing Dynasty' +p239604 +sg225234 +S'overall: 11.7 x 15.6 cm (4 5/8 x 6 1/8 in.)' +p239605 +sg225236 +S'\nporcelain with underglaze red decoration' +p239606 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f0f.jpg' +p239607 +sg225240 +g27 +sa(dp239608 +g225230 +S'Vase in the Shape of an Archaic Bronze Hu' +p239609 +sg225232 +S'Chinese Qing Dynasty' +p239610 +sg225234 +S'overall: 16.2 x 9.5 cm (6 3/8 x 3 3/4 in.)' +p239611 +sg225236 +S'\nporcelain with celadon glaze' +p239612 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f11.jpg' +p239613 +sg225240 +g27 +sa(dp239614 +g225230 +S'Small Foliated Dish' +p239615 +sg225232 +S'Chinese Qing Dynasty' +p239616 +sg225234 +S'overall: 1.4 x 8 cm (9/16 x 3 1/8 in.)' +p239617 +sg225236 +S'\nporcelain with colorless glaze' +p239618 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f12.jpg' +p239619 +sg225240 +g27 +sa(dp239620 +g225230 +S'Small Foliated Dish' +p239621 +sg225232 +S'Chinese Qing Dynasty' +p239622 +sg225234 +S'overall: 1.4 x 8 cm (9/16 x 3 1/8 in.)' +p239623 +sg225236 +S'\nporcelain with colorless glaze' +p239624 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f13.jpg' +p239625 +sg225240 +g27 +sa(dp239626 +g225230 +S'Bottle Vase' +p239627 +sg225232 +S'Chinese Qing Dynasty' +p239628 +sg225234 +S'overall: 23 x 13.7 cm (9 1/16 x 5 3/8 in.)' +p239629 +sg225236 +S'\nporcelain with turquoise glaze' +p239630 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f14.jpg' +p239631 +sg225240 +S'This vase has a globular body and a slightly flaring neck. The proportions \n are very close to larger examples that bear Qianlong reignmarks, suggesting \n that this vessel dates to the same period.\n (Text by Stephen Little, published in the NGA Systematic Catalogue: \n Notes

\n1. René-Yvon Lefebvre d\'Argencé,Chinese Ceramics \n in the Avery Brundage Collection, San Francisco, 1967, pl. 75.
\n ' +p239632 +sa(dp239633 +g225230 +S'Cup' +p239634 +sg225232 +S'Chinese Qing Dynasty' +p239635 +sg225234 +S'overall: 5.1 x 7.5 cm (2 x 2 15/16 in.)' +p239636 +sg225236 +S'\nDehua ware (blanc de chine), porcelain with colorless glaze' +p239637 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f15.jpg' +p239638 +sg225240 +g27 +sa(dp239639 +g225230 +S'Guanyin, the Bodhisattva of Compassion' +p239640 +sg225232 +S'Chinese Qing Dynasty' +p239641 +sg225234 +S'overall: 19.5 x 12.1 cm (7 11/16 x 4 3/4 in.)' +p239642 +sg225236 +S'\nDehua ware (blanc de chine), porcelain with colorless glaze' +p239643 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f16.jpg' +p239644 +sg225240 +S"The bodhisattva's serene expression and the fluid lines of the robe are well matched by the qualities of Dehua porcelain, with its soft lustrous ivory color and flawless surface. Dehua ware vessels as well as figures were among the first porcelains imported to the west, where they became known as \n This hollow figure was first molded from a fine white paste and then carved with a knife. The flowing and graceful forms recall the look of ivory carving, and it may be that the first porcelain figures like this were inspired by ivory figurines. An impressed seal on the back gives the name of Chaochun, one of the most famous potters working in Dehua in the seventeenth century. This figure, however, is from the late eighteenth century.\n Guanyin is known as the bodhisattva of compassion. In Buddhist belief, bodhisattvas are beings who have attained enlightenment but have chosen to delay nirvana and remain as helpers to mankind. Guanyin, originally a male bodhisattva in India, came to be identified as a woman in Chinese and Japanese Buddhist belief. Thus, figures like this one have both masculine and feminine qualities.\n " +p239645 +sa(dp239646 +g225230 +S'Small Vase' +p239647 +sg225232 +S'Chinese Qing Dynasty' +p239648 +sg225234 +S'overall: 13 x 8.3 cm (5 1/8 x 3 1/4 in.)' +p239649 +sg225236 +S'\nporcelain with colorless glaze' +p239650 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f17.jpg' +p239651 +sg225240 +g27 +sa(dp239652 +g225230 +S'Teapot' +p239653 +sg225232 +S'Chinese Qing Dynasty' +p239654 +sg225234 +S'overall (height with lid): 15.6 cm (6 1/8 in.)' +p239655 +sg225236 +S'\nDehua ware (blanc de chine), porcelain with colorless glaze' +p239656 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f18.jpg' +p239657 +sg225240 +g27 +sa(dp239658 +g225230 +S'Jar' +p239659 +sg225232 +S'Chinese Qing Dynasty' +p239660 +sg225234 +S'overall: 14.9 x 10.5 cm (5 7/8 x 4 1/8 in.)' +p239661 +sg225236 +S'\nporcelain with apple-green glaze' +p239662 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f19.jpg' +p239663 +sg225240 +g27 +sa(dp239664 +g225230 +S'Vase, Meiping Shape' +p239665 +sg225232 +S'Chinese Qing Dynasty' +p239666 +sg225234 +S'overall: 21.8 x 12.3 cm (8 9/16 x 4 13/16 in.)' +p239667 +sg225236 +S'\nporcelain with oxblood glaze' +p239668 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f1c.jpg' +p239669 +sg225240 +g27 +sa(dp239670 +g225230 +S'Bottle Vase' +p239671 +sg225232 +S'Chinese Qing Dynasty' +p239672 +sg225234 +S'overall: 23.8 x 13.3 cm (9 3/8 x 5 1/4 in.)' +p239673 +sg225236 +S'\nporcelain with oxblood glaze' +p239674 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f1e.jpg' +p239675 +sg225240 +g27 +sa(dp239676 +g225230 +S'Small Vase' +p239677 +sg225232 +S'Chinese Qing Dynasty' +p239678 +sg225234 +S'overall: 11 x 7.7 cm (4 5/16 x 3 1/16 in.)' +p239679 +sg225236 +S'\nporcelain with oxblood glaze' +p239680 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f1f.jpg' +p239681 +sg225240 +g27 +sa(dp239682 +g225230 +S'Bottle Vase' +p239683 +sg225232 +S'Chinese Qing Dynasty' +p239684 +sg225234 +S'overall: 23.9 x 13.8 cm (9 7/16 x 5 7/16 in.)' +p239685 +sg225236 +S'\nporcelain with turquoise glaze' +p239686 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f20.jpg' +p239687 +sg225240 +g27 +sa(dp239688 +g225230 +S'Vase' +p239689 +sg225232 +S'Chinese Qing Dynasty' +p239690 +sg225234 +S'overall: 15.2 x 10.1 cm (6 x 4 in.)' +p239691 +sg225236 +S'\nporcelain with rose red glaze' +p239692 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f22.jpg' +p239693 +sg225240 +g27 +sa(dp239694 +g225230 +S'Vase' +p239695 +sg225232 +S'Chinese Qing Dynasty' +p239696 +sg225234 +S'overall: 19.1 x 10.2 cm (7 1/2 x 4 in.)' +p239697 +sg225236 +S'\nporcelain with colorless glaze' +p239698 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f23.jpg' +p239699 +sg225240 +g27 +sa(dp239700 +g225230 +S'Small Bottle' +p239701 +sg225232 +S'Chinese Qing Dynasty' +p239702 +sg225234 +S'overall: 8 x 3.3 cm (3 1/8 x 1 5/16 in.)' +p239703 +sg225236 +S'\nporcelain with colorless glaze' +p239704 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f24.jpg' +p239705 +sg225240 +g27 +sa(dp239706 +g225230 +S'Vase' +p239707 +sg225232 +S'Chinese Qing Dynasty' +p239708 +sg225234 +S'overall: 17.8 x 11.8 cm (7 x 4 5/8 in.)' +p239709 +sg225236 +S'\nporcelain with famille verte enamels on the biscuit' +p239710 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00021/a0002101.jpg' +p239711 +sg225240 +g27 +sa(dp239712 +g225230 +S'Bowl' +p239713 +sg225232 +S'Chinese Qing Dynasty' +p239714 +sg225234 +S'overall: 7 x 12.2 cm (2 3/4 x 4 13/16 in.)' +p239715 +sg225236 +S'\nporcelain with underglaze blue and overglaze doucai enamel decoration' +p239716 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f28.jpg' +p239717 +sg225240 +g27 +sa(dp239718 +g225230 +S'Bowl' +p239719 +sg225232 +S'Chinese Qing Dynasty' +p239720 +sg225234 +S'overall: 6.9 x 12.5 cm (2 11/16 x 4 15/16 in.)' +p239721 +sg225236 +S'\nporcelain with underglaze blue and overglaze doucai enamel decoration' +p239722 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f2a.jpg' +p239723 +sg225240 +g27 +sa(dp239724 +g225230 +S'Figure of a Daoist Deity' +p239725 +sg225232 +S'Chinese Qing Dynasty' +p239726 +sg225234 +S'overall (height): 26 cm (10 1/4 in.)' +p239727 +sg225236 +S'\nporcelain with famille jaune and famille noire enamels on the biscuit' +p239728 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f2e.jpg' +p239729 +sg225240 +S'Figures of this type, representing Daoist, Confucian, and Buddhist \n deities, are a common Kangxi product. This example is decorated on the \n biscuit with enamels in the \n The presence of the crown, \n (Text by Stephen Little, published in the NGA Systematic Catalogue: \n Notes

\n
\n \n ' +p239730 +sa(dp239731 +g225230 +S'Cup' +p239732 +sg225232 +S'Chinese Qing Dynasty' +p239733 +sg225234 +S'overall: 4.6 x 7.6 cm (1 13/16 x 3 in.)' +p239734 +sg225236 +S'\nporcelain with underglaze blue and overglaze doucai enamel decoration' +p239735 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f30.jpg' +p239736 +sg225240 +g27 +sa(dp239737 +g225230 +S'Cup' +p239738 +sg225232 +S'Chinese Qing Dynasty' +p239739 +sg225234 +S'overall: 4.7 x 7.6 cm (1 7/8 x 3 in.)' +p239740 +sg225236 +S'\nporcelain with underglaze blue and overglaze doucai enamel decoration' +p239741 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f32.jpg' +p239742 +sg225240 +g27 +sa(dp239743 +g225230 +S'Dish' +p239744 +sg225232 +S'Chinese Qing Dynasty' +p239745 +sg225234 +S'overall: 4.1 x 21.2 cm (1 5/8 x 8 3/8 in.)' +p239746 +sg225236 +S'\nporcelain with underglaze blue and overglaze doucai enamel decoration' +p239747 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00021/a0002102.jpg' +p239748 +sg225240 +g27 +sa(dp239749 +g225230 +S'"Palace" Bowl' +p239750 +sg225232 +S'Chinese Qing Dynasty' +p239751 +sg225234 +S'overall: 6.8 x 15 cm (2 11/16 x 5 7/8 in.)' +p239752 +sg225236 +S'\nporcelain with underglaze blue and overglaze yellow enamel decoration' +p239753 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f34.jpg' +p239754 +sg225240 +g27 +sa(dp239755 +g225230 +S'"Palace" Bowl' +p239756 +sg225232 +S'Chinese Qing Dynasty' +p239757 +sg225234 +S'overall: 7 x 15 cm (2 3/4 x 5 7/8 in.)' +p239758 +sg225236 +S'\nporcelain with underglaze blue and overglaze yellow enamel decoration' +p239759 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f35.jpg' +p239760 +sg225240 +g27 +sa(dp239761 +g225230 +S'Bowl' +p239762 +sg225232 +S'Chinese Qing Dynasty' +p239763 +sg225234 +S'overall: 7.1 x 15.2 cm (2 13/16 x 6 in.)' +p239764 +sg225236 +S'\nporcelain with famille jaune and famille rose enamels on the biscuit' +p239765 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f37.jpg' +p239766 +sg225240 +S'The exterior decoration is incised into the body and painted with \n \n (Text by Stephen Little, published in the NGA Systematic Catalogue: \n ' +p239767 +sa(dp239768 +g225230 +S'Cup' +p239769 +sg225232 +S'Chinese Qing Dynasty' +p239770 +sg225234 +S'overall: 4.2 x 8.3 cm (1 5/8 x 3 1/4 in.)' +p239771 +sg225236 +S'\nporcelain with overglaze famille rose enamels' +p239772 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f39.jpg' +p239773 +sg225240 +g27 +sa(dp239774 +g225230 +S'Cup' +p239775 +sg225232 +S'Chinese Qing Dynasty' +p239776 +sg225234 +S'overall: 4.1 x 8.3 cm (1 5/8 x 3 1/4 in.)' +p239777 +sg225236 +S'\nporcelain with overglaze famille rose enamels' +p239778 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f3b.jpg' +p239779 +sg225240 +g27 +sa(dp239780 +g225230 +S'Vase' +p239781 +sg225232 +S'Chinese Qing Dynasty' +p239782 +sg225234 +S'overall: 21.4 x 11.8 cm (8 7/16 x 4 5/8 in.)' +p239783 +sg225236 +S'\nporcelain with overglaze enamels' +p239784 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f3c.jpg' +p239785 +sg225240 +S"A single four-clawed dragon encircles the vase, chasing a flaming pearl. \n Above the foot are painted crashing waves. The painting is executed in red, \n orange, and metallic gold enamels, with black for the dragon's eyes. \n (Text by Stephen Little, published in the NGA Systematic Catalogue: \n " +p239786 +sa(dp239787 +g225230 +S'Vase' +p239788 +sg225232 +S'Chinese Qing Dynasty' +p239789 +sg225234 +S'overall: 17.2 x 15 cm (6 3/4 x 5 7/8 in.)' +p239790 +sg225236 +S'\nporcelain with overglaze famille rose enamels' +p239791 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f40.jpg' +p239792 +sg225240 +S'As if tossed by a random breeze, more than one hundred stylized blossoms enliven the pure white porcelain of this finely potted vase. An underglaze seal script inscription on the base reads "made in the Qianlong reign of the great Qing dynasty." Porcelain—hard, translucent vitreous, high-fired ceramics that are the triumph of kiln technology—were first made in China. But the casual elegance of the decoration on this pot was meant to appeal to Japanese tastes. Ceramics with decoration like this began to be made in China for export to Japan in the eighteenth century.\n ' +p239793 +sa(dp239794 +g225230 +S'Bowl' +p239795 +sg225232 +S'Chinese Qing Dynasty' +p239796 +sg225234 +S'overall: 6.1 x 13.2 cm (2 3/8 x 5 3/16 in.)' +p239797 +sg225236 +S'\nporcelain with famille jaune enamels on the biscuit' +p239798 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f42.jpg' +p239799 +sg225240 +g27 +sa(dp239800 +g225230 +S'Miniature Vase' +p239801 +sg225232 +S'Artist Information (' +p239802 +sg225234 +g27 +sg225236 +S'(artist)' +p239803 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f45.jpg' +p239804 +sg225240 +g27 +sa(dp239805 +g225230 +S'Miniature Vase' +p239806 +sg225232 +S'Artist Information (' +p239807 +sg225234 +g27 +sg225236 +S'(artist)' +p239808 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f48.jpg' +p239809 +sg225240 +g27 +sa(dp239810 +g225230 +S'Miniature Vase' +p239811 +sg225232 +S'Artist Information (' +p239812 +sg225234 +g27 +sg225236 +S'(artist)' +p239813 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f4b.jpg' +p239814 +sg225240 +g27 +sa(dp239815 +g225230 +S'Cup' +p239816 +sg225232 +S'Chinese Republic' +p239817 +sg225234 +S'overall: 5.2 x 7.7 cm (2 1/16 x 3 1/16 in.)' +p239818 +sg225236 +S'\nporcelain with overglaze enamels' +p239819 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f4d.jpg' +p239820 +sg225240 +g27 +sa(dp239821 +g225230 +S'Small Bottle' +p239822 +sg225232 +S'Chinese Republic' +p239823 +sg225234 +S'overall: 8.6 x 5.4 cm (3 3/8 x 2 1/8 in.)' +p239824 +sg225236 +S'\nporcelain with overglaze enamels' +p239825 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f4e.jpg' +p239826 +sg225240 +g27 +sa(dp239827 +g225230 +S'Small Bottle' +p239828 +sg225232 +S'Chinese Republic' +p239829 +sg225234 +S'overall: 8.6 x 5.4 cm (3 3/8 x 2 1/8 in.)' +p239830 +sg225236 +S'\nporcelain with overglaze enamels' +p239831 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f50.jpg' +p239832 +sg225240 +g27 +sa(dp239833 +g225230 +S'Dish' +p239834 +sg225232 +S'Chinese Republic' +p239835 +sg225234 +S'overall: 8.9 x 19.2 cm (3 1/2 x 7 9/16 in.)' +p239836 +sg225236 +S'\nporcelain with overglaze famille rose enamels' +p239837 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00021/a0002163.jpg' +p239838 +sg225240 +g27 +sa(dp239839 +g225230 +S'Raku Tea Bowl' +p239840 +sg225232 +S'Japanese Edo Period' +p239841 +sg225234 +S'overall: 7.6 x 11.7 cm (3 x 4 5/8 in.)' +p239842 +sg225236 +S'\nglazed earthenware' +p239843 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f53.jpg' +p239844 +sg225240 +g27 +sa(dp239845 +g225230 +S'Vase' +p239846 +sg225232 +S'Artist Information (' +p239847 +sg225234 +g27 +sg225236 +S'(ceramist)' +p239848 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f56.jpg' +p239849 +sg225240 +g27 +sa(dp239850 +g225230 +S'Bowl' +p239851 +sg225232 +S'Artist Information (' +p239852 +sg225234 +g27 +sg225236 +S'(ceramist)' +p239853 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f58.jpg' +p239854 +sg225240 +g27 +sa(dp239855 +g225230 +S'Dish' +p239856 +sg225232 +S'Artist Information (' +p239857 +sg225234 +g27 +sg225236 +S'(artist after)' +p239858 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f5a.jpg' +p239859 +sg225240 +g27 +sa(dp239860 +g225230 +S'Seated Horse' +p239861 +sg225232 +S'Artist Information (' +p239862 +sg225234 +g27 +sg225236 +S'(artist after)' +p239863 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004f5c.jpg' +p239864 +sg225240 +g27 +sa(dp239865 +g225230 +S'Saint Matthew and the Angel' +p239866 +sg225232 +S'Simone Cantarini' +p239867 +sg225234 +S'oil on canvas' +p239868 +sg225236 +S'c. 1645/1648' +p239869 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00005/a00005ff.jpg' +p239870 +sg225240 +g27 +sa(dp239871 +g225232 +S'Paul Jenkins' +p239872 +sg225240 +g27 +sg225234 +S'oil on canvas' +p239873 +sg225230 +S'Phenomena Sound of Sundials' +p239874 +sg225236 +S'1971' +p239875 +sa(dp239876 +g225230 +S'Nude Woman' +p239877 +sg225232 +S'Pablo Picasso' +p239878 +sg225234 +S'oil on canvas' +p239879 +sg225236 +S'1910' +p239880 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000ded.jpg' +p239881 +sg225240 +S'In 1909, Hamilton Easter Field, a Brooklyn painter and critic, asked Picasso to create a\n group of eleven paintings as a decoration for his library. Picasso accepted but, although he\n worked on the commission intermittently over the next several years, he never completed all\n eleven of the panels.\n Nude Woman\n ' +p239882 +sa(dp239883 +g225230 +S'Landscape with the Penitence of Saint Jerome' +p239884 +sg225232 +S'Pieter Bruegel the Elder' +p239885 +sg225234 +S'pen and brown ink on laid paper' +p239886 +sg225236 +S'1553' +p239887 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022c6.jpg' +p239888 +sg225240 +g27 +sa(dp239889 +g225230 +S'Adonis' +p239890 +sg225232 +S"Pierre Paul Prud'hon" +p239891 +sg225234 +S'black chalk with white chalk heightening on blue paper' +p239892 +sg225236 +S'c. 1810-1812' +p239893 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00026/a00026da.jpg' +p239894 +sg225240 +g27 +sa(dp239895 +g225230 +S'Venus' +p239896 +sg225232 +S"Pierre Paul Prud'hon" +p239897 +sg225234 +S'black chalk with white chalk heightening on blue-gray paper' +p239898 +sg225236 +S'c. 1810-1812' +p239899 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00026/a00026db.jpg' +p239900 +sg225240 +g27 +sa(dp239901 +g225230 +S'Portrait of an Ecclesiastic Wearing a Biretta' +p239902 +sg225232 +S'Annibale Carracci' +p239903 +sg225234 +S', probably 1580/1590' +p239904 +sg225236 +S'\n' +p239905 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a000753d.jpg' +p239906 +sg225240 +g27 +sa(dp239907 +g225230 +S'Head of a Faun in a Concave Roundel' +p239908 +sg225232 +S'Agostino Carracci' +p239909 +sg225234 +S'pen and brown ink on laid paper' +p239910 +sg225236 +S'probably c. 1595' +p239911 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00031/a00031a3.jpg' +p239912 +sg225240 +g27 +sa(dp239913 +g225230 +S'The Virgin and Child Appearing to Saints George and William' +p239914 +sg225232 +S'Lodovico Carracci' +p239915 +sg225234 +S'pen and brown ink with brown wash over black chalk on laid paper' +p239916 +sg225236 +S'unknown date\n' +p239917 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a000753c.jpg' +p239918 +sg225240 +g27 +sa(dp239919 +g225230 +S'Caricature of the Laocoon Group' +p239920 +sg225232 +S'Artist Information (' +p239921 +sg225234 +S'(artist after)' +p239922 +sg225236 +S'\n' +p239923 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9f3.jpg' +p239924 +sg225240 +g27 +sa(dp239925 +g225230 +S'The Virgin Appearing to Saint Gregory and Saint Andrew' +p239926 +sg225232 +S'Antonio Balestra' +p239927 +sg225234 +S'pen and brown ink with gray wash over black chalk on laid paper' +p239928 +sg225236 +S'unknown date\n' +p239929 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a000744c.jpg' +p239930 +sg225240 +g27 +sa(dp239931 +g225230 +S'Pool at the Edge of a Wood' +p239932 +sg225232 +S'Herman van Swanevelt' +p239933 +sg225234 +S'pen and brown ink and brush and brown ink over black chalk on laid paper' +p239934 +sg225236 +S'unknown date\n' +p239935 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b54.jpg' +p239936 +sg225240 +g27 +sa(dp239937 +g225230 +S'The Temptation of Christ by the Devil' +p239938 +sg225232 +S'Artist Information (' +p239939 +sg225234 +S'(artist after)' +p239940 +sg225236 +S'\n' +p239941 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d617.jpg' +p239942 +sg225240 +g27 +sa(dp239943 +g225230 +S'Poverty (Armut)' +p239944 +sg225232 +S'Aloys Wach' +p239945 +sg225234 +S'hand-colored woodcut' +p239946 +sg225236 +S'1919' +p239947 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d7c6.jpg' +p239948 +sg225240 +g27 +sa(dp239949 +g225230 +S'Mars' +p239950 +sg225232 +S'Hendrick Goltzius' +p239951 +sg225234 +S', probably c. 1594' +p239952 +sg225236 +S'\n' +p239953 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce3c.jpg' +p239954 +sg225240 +g27 +sa(dp239955 +g225230 +S'The Virgin and Child with Saint Anne by a Portal' +p239956 +sg225232 +S'Daniel Hopfer' +p239957 +sg225234 +S'etching (iron), plate bitten twice' +p239958 +sg225236 +S'unknown date\n' +p239959 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac6f.jpg' +p239960 +sg225240 +g27 +sa(dp239961 +g225232 +S'Pierre Bonnard' +p239962 +sg225240 +g27 +sg225234 +S'lithograph' +p239963 +sg225230 +S'Study of a Nude' +p239964 +sg225236 +S'1925' +p239965 +sa(dp239966 +g225230 +S'Saint Andrew' +p239967 +sg225232 +S'Girolamo Muziano' +p239968 +sg225234 +S'red chalk with brown and gray wash heightened withwhite on laid paper' +p239969 +sg225236 +S'unknown date\n' +p239970 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00063/a000639a.jpg' +p239971 +sg225240 +g27 +sa(dp239972 +g225230 +S'Apollo' +p239973 +sg225232 +S'Italian 16th Century' +p239974 +sg225234 +S'overall: 25.7 x 14 cm (10 1/8 x 5 1/2 in.)' +p239975 +sg225236 +S'\nred chalk' +p239976 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a000752a.jpg' +p239977 +sg225240 +g27 +sa(dp239978 +g225230 +S'Mary Magdalene [recto]' +p239979 +sg225232 +S'Biagio Pupini' +p239980 +sg225234 +S'brush and brown ink with brown wash heightened in white over black chalk' +p239981 +sg225236 +S'in or after 1524' +p239982 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a0007511.jpg' +p239983 +sg225240 +g27 +sa(dp239984 +g225230 +S'Mary Magdalene [verso]' +p239985 +sg225232 +S'Biagio Pupini' +p239986 +sg225234 +S'brush and brown ink with brown wash heightened in white over black chalk' +p239987 +sg225236 +S'in or after 1524' +p239988 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a0007512.jpg' +p239989 +sg225240 +g27 +sa(dp239990 +g225230 +S'Saint John the Baptist' +p239991 +sg225232 +S'Matteo Rosselli' +p239992 +sg225234 +S'red chalk on laid paper' +p239993 +sg225236 +S'unknown date\n' +p239994 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074c8.jpg' +p239995 +sg225240 +g27 +sa(dp239996 +g225230 +S'View of a Dutch Town (Delft?)' +p239997 +sg225232 +S'Willem van de Velde the Younger' +p239998 +sg225234 +S'metalpoint and gray wash on laid paper, incised with stylus' +p239999 +sg225236 +S'unknown date\n' +p240000 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007252.jpg' +p240001 +sg225240 +g27 +sa(dp240002 +g225230 +S'Paris Awarding the Apple to Venus' +p240003 +sg225232 +S'Francesco Albani' +p240004 +sg225234 +S'red chalk' +p240005 +sg225236 +S'unknown date\n' +p240006 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007484.jpg' +p240007 +sg225240 +g27 +sa(dp240008 +g225230 +S'Supper at Emmaus' +p240009 +sg225232 +S'Abraham van Diepenbeeck' +p240010 +sg225234 +S', unknown date' +p240011 +sg225236 +S'\n' +p240012 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072a9.jpg' +p240013 +sg225240 +g27 +sa(dp240014 +g225230 +S'The Madonna and Child Enthroned with Saint John the Baptist and Saint Andrew' +p240015 +sg225232 +S'Bernardino India' +p240016 +sg225234 +S'pen and brown ink with brown wash over black chalk on laid paper' +p240017 +sg225236 +S'unknown date\n' +p240018 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a000756d.jpg' +p240019 +sg225240 +g27 +sa(dp240020 +g225230 +S'Standing Shepherd in a Landscape' +p240021 +sg225232 +S'Andrea di Leone' +p240022 +sg225234 +S'red chalk on laid paper paper' +p240023 +sg225236 +S'1630s' +p240024 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a000658c.jpg' +p240025 +sg225240 +g27 +sa(dp240026 +g225230 +S'Academic Nude Study of a Seated Male' +p240027 +sg225232 +S'Andrea Sacchi' +p240028 +sg225234 +S'red chalk heightened with white' +p240029 +sg225236 +S'unknown date\n' +p240030 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a000656e.jpg' +p240031 +sg225240 +g27 +sa(dp240032 +g225230 +S'Landscape Study' +p240033 +sg225232 +S'Bartholomeus Breenbergh' +p240034 +sg225234 +S'brown wash over black chalk on laid paper' +p240035 +sg225236 +S'probably 1631' +p240036 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a000700c.jpg' +p240037 +sg225240 +g27 +sa(dp240038 +g225230 +S'Kneeling Woman Lifting Her Hand to Her Head' +p240039 +sg225232 +S'Parmigianino' +p240040 +sg225234 +S'red chalk' +p240041 +sg225236 +S'in or after 1531' +p240042 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a0007506.jpg' +p240043 +sg225240 +g27 +sa(dp240044 +g225230 +S'Standing Bearded Man Pointing Toward the Left' +p240045 +sg225232 +S'Italian 17th Century' +p240046 +sg225234 +S'overall: 30.9 x 25.2 cm (12 3/16 x 9 15/16 in.)' +p240047 +sg225236 +S'\nred chalk on laid paper' +p240048 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007486.jpg' +p240049 +sg225240 +g27 +sa(dp240050 +g225230 +S'The Battle with the Cutlass' +p240051 +sg225232 +S'Artist Information (' +p240052 +sg225234 +S'(artist after)' +p240053 +sg225236 +S'\n' +p240054 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8b7.jpg' +p240055 +sg225240 +g27 +sa(dp240056 +g225230 +S'Study for One of Two Stained Glass Paintings Representing the Nativity' +p240057 +sg225232 +S'Hans S\xc3\xbcss von Kulmbach' +p240058 +sg225234 +S'pen and brown ink with brown and gray wash over black chalk' +p240059 +sg225236 +S'probably c. 1510' +p240060 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a0007991.jpg' +p240061 +sg225240 +g27 +sa(dp240062 +g225230 +S'Classical Landscape' +p240063 +sg225232 +S'Giovanni Angelo Canini' +p240064 +sg225234 +S'red chalk on laid paper' +p240065 +sg225236 +S'unknown date\n' +p240066 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007496.jpg' +p240067 +sg225240 +g27 +sa(dp240068 +g225230 +S'Studies of Major von Washington' +p240069 +sg225232 +S'Wilhelm von Kobell' +p240070 +sg225234 +S'graphite and watercolor on wove paper' +p240071 +sg225236 +S'unknown date\n' +p240072 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a0007052.jpg' +p240073 +sg225240 +g27 +sa(dp240074 +g225232 +S'Man Ray' +p240075 +sg225240 +g27 +sg225234 +S'color pochoir on wove paper' +p240076 +sg225230 +S'Mime' +p240077 +sg225236 +S'published 1926' +p240078 +sa(dp240079 +g225232 +S'Man Ray' +p240080 +sg225240 +g27 +sg225234 +S'portfolio containing ten color pochoirs on wove paper with title page' +p240081 +sg225230 +S'Revolving Doors' +p240082 +sg225236 +S'published 1926' +p240083 +sa(dp240084 +g225232 +S'Man Ray' +p240085 +sg225240 +g27 +sg225234 +S'color pochoir on wove paper' +p240086 +sg225230 +S'Long Distance' +p240087 +sg225236 +S'published 1926' +p240088 +sa(dp240089 +g225232 +S'Man Ray' +p240090 +sg225240 +g27 +sg225234 +S'color pochoir on wove paper' +p240091 +sg225230 +S'Orchestra' +p240092 +sg225236 +S'published 1926' +p240093 +sa(dp240094 +g225232 +S'Man Ray' +p240095 +sg225240 +g27 +sg225234 +S'color pochoir on wove paper' +p240096 +sg225230 +S'The Meeting' +p240097 +sg225236 +S'published 1926' +p240098 +sa(dp240099 +g225232 +S'Man Ray' +p240100 +sg225240 +g27 +sg225234 +S'color pochoir on wove paper' +p240101 +sg225230 +S'Legend' +p240102 +sg225236 +S'published 1926' +p240103 +sa(dp240104 +g225232 +S'Man Ray' +p240105 +sg225240 +g27 +sg225234 +S'color pochoir on wove paper' +p240106 +sg225230 +S'Decanter' +p240107 +sg225236 +S'published 1926' +p240108 +sa(dp240109 +g225232 +S'Man Ray' +p240110 +sg225240 +g27 +sg225234 +S'color pochoir on wove paper' +p240111 +sg225230 +S'Jeune Fille' +p240112 +sg225236 +S'published 1926' +p240113 +sa(dp240114 +g225232 +S'Man Ray' +p240115 +sg225240 +g27 +sg225234 +S'color pochoir on wove paper' +p240116 +sg225230 +S'Shadows' +p240117 +sg225236 +S'published 1926' +p240118 +sa(dp240119 +g225232 +S'Man Ray' +p240120 +sg225240 +g27 +sg225234 +S'color pochoir on wove paper' +p240121 +sg225230 +S'Concrete Mixer' +p240122 +sg225236 +S'published 1926' +p240123 +sa(dp240124 +g225232 +S'Man Ray' +p240125 +sg225240 +g27 +sg225234 +S'color pochoir on wove paper' +p240126 +sg225230 +S'Dragon Fly' +p240127 +sg225236 +S'published 1926' +p240128 +sa(dp240129 +g225230 +S'The Descent from the Cross' +p240130 +sg225232 +S'Artist Information (' +p240131 +sg225234 +S'Italian, c. 1431 - 1506' +p240132 +sg225236 +S'(artist after)' +p240133 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d057.jpg' +p240134 +sg225240 +g27 +sa(dp240135 +g225230 +S'An Allegorical Figure: Non sine labore' +p240136 +sg225232 +S'Cherubino Alberti' +p240137 +sg225234 +S'etching' +p240138 +sg225236 +S'1628' +p240139 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a0006565.jpg' +p240140 +sg225240 +g27 +sa(dp240141 +g225230 +S'An Allegorical Figure: Virtutis Praemium' +p240142 +sg225232 +S'Cherubino Alberti' +p240143 +sg225234 +S'etching' +p240144 +sg225236 +S'1628' +p240145 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a0006562.jpg' +p240146 +sg225240 +g27 +sa(dp240147 +g225230 +S'A Blessed Spirit' +p240148 +sg225232 +S'Artist Information (' +p240149 +sg225234 +S'(artist after)' +p240150 +sg225236 +S'\n' +p240151 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f3c.jpg' +p240152 +sg225240 +g27 +sa(dp240153 +g225230 +S'Saint John the Baptist' +p240154 +sg225232 +S'Artist Information (' +p240155 +sg225234 +S'(artist after)' +p240156 +sg225236 +S'\n' +p240157 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f3b.jpg' +p240158 +sg225240 +g27 +sa(dp240159 +g225230 +S'Truth and Justice' +p240160 +sg225232 +S'Cherubino Alberti' +p240161 +sg225234 +S'etching' +p240162 +sg225236 +S'unknown date\n' +p240163 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a000656a.jpg' +p240164 +sg225240 +g27 +sa(dp240165 +g225230 +S'Saint Francis in Ecstasy' +p240166 +sg225232 +S'Federico Barocci' +p240167 +sg225234 +S'etching' +p240168 +sg225236 +S'unknown date\n' +p240169 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8a6.jpg' +p240170 +sg225240 +g27 +sa(dp240171 +g225230 +S'The Sacrifice of Iphigenia' +p240172 +sg225232 +S'Nicolaus Beatrizet' +p240173 +sg225234 +S'etching' +p240174 +sg225236 +S'unknown date\n' +p240175 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a00084c0.jpg' +p240176 +sg225240 +g27 +sa(dp240177 +g225230 +S'The Holy Family with Saint John' +p240178 +sg225232 +S'Bartolomeo Biscaino' +p240179 +sg225234 +S'etching' +p240180 +sg225236 +S'unknown date\n' +p240181 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9dd.jpg' +p240182 +sg225240 +g27 +sa(dp240183 +g225230 +S'The Holy Family Adored by Angels (The Large Nativity)' +p240184 +sg225232 +S'Bartolomeo Biscaino' +p240185 +sg225234 +S'etching' +p240186 +sg225236 +S'unknown date\n' +p240187 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9e0.jpg' +p240188 +sg225240 +g27 +sa(dp240189 +g225230 +S'The Vision of St. Jerome' +p240190 +sg225232 +S'Giulio Bonasone' +p240191 +sg225234 +S'engraving' +p240192 +sg225236 +S'unknown date\n' +p240193 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caa0.jpg' +p240194 +sg225240 +g27 +sa(dp240195 +g225230 +S'Christ on the Mount of Olives' +p240196 +sg225232 +S'Giulio Carpioni' +p240197 +sg225234 +S'etching' +p240198 +sg225236 +S'unknown date\n' +p240199 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca01.jpg' +p240200 +sg225240 +g27 +sa(dp240201 +g225230 +S'Holy Family with the Virgin Reading' +p240202 +sg225232 +S'Giulio Carpioni' +p240203 +sg225234 +S'etching on laid paper' +p240204 +sg225236 +S'unknown date\n' +p240205 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c95e.jpg' +p240206 +sg225240 +g27 +sa(dp240207 +g225230 +S'The Presentation in the Temple' +p240208 +sg225232 +S'Artist Information (' +p240209 +sg225234 +S'Italian, 1503 - 1540' +p240210 +sg225236 +S'(artist after)' +p240211 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c795.jpg' +p240212 +sg225240 +g27 +sa(dp240213 +g225230 +S'Venus or Galatea Supported by Dolphins' +p240214 +sg225232 +S'Agostino Carracci' +p240215 +sg225234 +S'engraving' +p240216 +sg225236 +S'c. 1590/1595' +p240217 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8d5.jpg' +p240218 +sg225240 +g27 +sa(dp240219 +g225230 +S'The Madonna of the Swallow (La Madonna Della Rondinella)' +p240220 +sg225232 +S'Annibale Carracci' +p240221 +sg225234 +S'engraving' +p240222 +sg225236 +S'1587' +p240223 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8d3.jpg' +p240224 +sg225240 +g27 +sa(dp240225 +g225230 +S'Mary Magdalene in the Wilderness' +p240226 +sg225232 +S'Annibale Carracci' +p240227 +sg225234 +S'etching and engraving' +p240228 +sg225236 +S'1591' +p240229 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb6d.jpg' +p240230 +sg225240 +g27 +sa(dp240231 +g225230 +S'Madonna and Child with Angels' +p240232 +sg225232 +S'Lodovico Carracci' +p240233 +sg225234 +S'etching and engraving' +p240234 +sg225236 +S'c. 1595/1610' +p240235 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c993.jpg' +p240236 +sg225240 +g27 +sa(dp240237 +g225230 +S'Rest on the Flight into Egypt' +p240238 +sg225232 +S'Artist Information (' +p240239 +sg225234 +S'(artist after)' +p240240 +sg225236 +S'\n' +p240241 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b36.jpg' +p240242 +sg225240 +g27 +sa(dp240243 +g225230 +S'Saint Francis with the Christ Child' +p240244 +sg225232 +S'Pietro Faccini' +p240245 +sg225234 +S'etching' +p240246 +sg225236 +S'unknown date\n' +p240247 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca07.jpg' +p240248 +sg225240 +g27 +sa(dp240249 +g225230 +S'Landscape with a Man Leading a Horse' +p240250 +sg225232 +S'Artist Information (' +p240251 +sg225234 +S'(artist after)' +p240252 +sg225236 +S'\n' +p240253 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8b1.jpg' +p240254 +sg225240 +g27 +sa(dp240255 +g225230 +S'Moses Striking the Rock' +p240256 +sg225232 +S'Battista Franco' +p240257 +sg225234 +S'etching' +p240258 +sg225236 +S'unknown date\n' +p240259 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8a9.jpg' +p240260 +sg225240 +g27 +sa(dp240261 +g225230 +S'Saint Anthony of Padua' +p240262 +sg225232 +S'Guercino' +p240263 +sg225234 +S', unknown date' +p240264 +sg225236 +S'\n' +p240265 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9a3.jpg' +p240266 +sg225240 +g27 +sa(dp240267 +g225230 +S'The Wine Bibbers' +p240268 +sg225232 +S'Master HFE' +p240269 +sg225234 +S'engraving' +p240270 +sg225236 +S'unknown date\n' +p240271 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8bc.jpg' +p240272 +sg225240 +g27 +sa(dp240273 +g225230 +S'The Boy and Two Old Men' +p240274 +sg225232 +S'Parmigianino' +p240275 +sg225234 +S'etching' +p240276 +sg225236 +S'unknown date\n' +p240277 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c772.jpg' +p240278 +sg225240 +g27 +sa(dp240279 +g225230 +S'The Boy and Two Old Men' +p240280 +sg225232 +S'Parmigianino' +p240281 +sg225234 +S'etching' +p240282 +sg225236 +S'unknown date\n' +p240283 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c773.jpg' +p240284 +sg225240 +g27 +sa(dp240285 +g225230 +S'The Crucifixion' +p240286 +sg225232 +S'Bernardino Poccetti' +p240287 +sg225234 +S'etching' +p240288 +sg225236 +S'unknown date\n' +p240289 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c855.jpg' +p240290 +sg225240 +g27 +sa(dp240291 +g225230 +S'Triumph' +p240292 +sg225232 +S'Artist Information (' +p240293 +sg225234 +S'(artist after)' +p240294 +sg225236 +S'\n' +p240295 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8ba.jpg' +p240296 +sg225240 +g27 +sa(dp240297 +g225230 +S'The Holy Family' +p240298 +sg225232 +S'Guido Reni' +p240299 +sg225234 +S'etching' +p240300 +sg225236 +S'unknown date\n' +p240301 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a0006581.jpg' +p240302 +sg225240 +g27 +sa(dp240303 +g225230 +S'The Infant Jesus and Saint John' +p240304 +sg225232 +S'Guido Reni' +p240305 +sg225234 +S'etching' +p240306 +sg225236 +S'unknown date\n' +p240307 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a000657d.jpg' +p240308 +sg225240 +g27 +sa(dp240309 +g225230 +S'Virgin and Child' +p240310 +sg225232 +S'Guido Reni' +p240311 +sg225234 +S'etching' +p240312 +sg225236 +S'unknown date\n' +p240313 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a000657f.jpg' +p240314 +sg225240 +g27 +sa(dp240315 +g225230 +S'Virgin and Child' +p240316 +sg225232 +S'Guido Reni' +p240317 +sg225234 +S'etching' +p240318 +sg225236 +S'unknown date\n' +p240319 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c99a.jpg' +p240320 +sg225240 +g27 +sa(dp240321 +g225230 +S'Diogenes Casting Away His Bowl' +p240322 +sg225232 +S'Salvator Rosa' +p240323 +sg225234 +S'etching' +p240324 +sg225236 +S'1615-1673' +p240325 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca2d.jpg' +p240326 +sg225240 +g27 +sa(dp240327 +g225230 +S'Jason and the Dragon' +p240328 +sg225232 +S'Salvator Rosa' +p240329 +sg225234 +S'etching and drypoint' +p240330 +sg225236 +S'c. 1663/1664' +p240331 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca17.jpg' +p240332 +sg225240 +g27 +sa(dp240333 +g225230 +S'Virgin and Child' +p240334 +sg225232 +S'Artist Information (' +p240335 +sg225234 +S'(artist after)' +p240336 +sg225236 +S'\n' +p240337 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c778.jpg' +p240338 +sg225240 +g27 +sa(dp240339 +g225230 +S'The Trojans Repulsing the Greeks' +p240340 +sg225232 +S'Giovanni Battista Scultori' +p240341 +sg225234 +S'etching' +p240342 +sg225236 +S'unknown date\n' +p240343 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8ce.jpg' +p240344 +sg225240 +g27 +sa(dp240345 +g225230 +S'The Sacrifice of Abraham' +p240346 +sg225232 +S'Pietro Testa' +p240347 +sg225234 +S'etching' +p240348 +sg225236 +S'unknown date\n' +p240349 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca1b.jpg' +p240350 +sg225240 +g27 +sa(dp240351 +g225230 +S'The Young Mother' +p240352 +sg225232 +S'Cornelis Bega' +p240353 +sg225234 +S'etching' +p240354 +sg225236 +S'unknown date\n' +p240355 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d094.jpg' +p240356 +sg225240 +g27 +sa(dp240357 +g225230 +S'Statue of Ferdinand I' +p240358 +sg225232 +S'Stefano Della Bella' +p240359 +sg225234 +S'etching' +p240360 +sg225236 +S'probably c. 1654/1655' +p240361 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9ce.jpg' +p240362 +sg225240 +g27 +sa(dp240363 +g225230 +S'Loading a Ship' +p240364 +sg225232 +S'Stefano Della Bella' +p240365 +sg225234 +S'etching' +p240366 +sg225236 +S'probably c. 1654/1655' +p240367 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9d5.jpg' +p240368 +sg225240 +g27 +sa(dp240369 +g225230 +S'Departure of a Ship' +p240370 +sg225232 +S'Stefano Della Bella' +p240371 +sg225234 +S'etching' +p240372 +sg225236 +S'probably c. 1654/1655' +p240373 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9d6.jpg' +p240374 +sg225240 +g27 +sa(dp240375 +g225230 +S'View of Several Houses Facing the Port' +p240376 +sg225232 +S'Stefano Della Bella' +p240377 +sg225234 +S'etching' +p240378 +sg225236 +S'probably c. 1654/1655' +p240379 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9d9.jpg' +p240380 +sg225240 +g27 +sa(dp240381 +g225230 +S'Galley with Deck Covered with Sails' +p240382 +sg225232 +S'Stefano Della Bella' +p240383 +sg225234 +S'etching' +p240384 +sg225236 +S'probably c. 1654/1655' +p240385 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9d8.jpg' +p240386 +sg225240 +g27 +sa(dp240387 +g225230 +S'The Fortifications at Livorno' +p240388 +sg225232 +S'Stefano Della Bella' +p240389 +sg225234 +S'etching' +p240390 +sg225236 +S'probably c. 1654/1655' +p240391 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9d7.jpg' +p240392 +sg225240 +g27 +sa(dp240393 +g225230 +S'Moorish Cavalier' +p240394 +sg225232 +S'Stefano Della Bella' +p240395 +sg225234 +S'etching' +p240396 +sg225236 +S'unknown date\n' +p240397 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8f8.jpg' +p240398 +sg225240 +g27 +sa(dp240399 +g225230 +S'Negro Cavalier' +p240400 +sg225232 +S'Stefano Della Bella' +p240401 +sg225234 +S'etching' +p240402 +sg225236 +S'unknown date\n' +p240403 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8f9.jpg' +p240404 +sg225240 +g27 +sa(dp240405 +g225230 +S'Negro Cavalier' +p240406 +sg225232 +S'Stefano Della Bella' +p240407 +sg225234 +S'etching' +p240408 +sg225236 +S'unknown date\n' +p240409 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8fa.jpg' +p240410 +sg225240 +g27 +sa(dp240411 +g225230 +S'Hungarian Cavalier' +p240412 +sg225232 +S'Stefano Della Bella' +p240413 +sg225234 +S'etching' +p240414 +sg225236 +S'unknown date\n' +p240415 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8fb.jpg' +p240416 +sg225240 +g27 +sa(dp240417 +g225230 +S'Polish Cavalier' +p240418 +sg225232 +S'Stefano Della Bella' +p240419 +sg225234 +S'etching' +p240420 +sg225236 +S'unknown date\n' +p240421 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c909.jpg' +p240422 +sg225240 +g27 +sa(dp240423 +g225230 +S'Polish Cavalier' +p240424 +sg225232 +S'Stefano Della Bella' +p240425 +sg225234 +S'etching' +p240426 +sg225236 +S'unknown date\n' +p240427 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c90a.jpg' +p240428 +sg225240 +g27 +sa(dp240429 +g225230 +S'Polish Hussar' +p240430 +sg225232 +S'Stefano Della Bella' +p240431 +sg225234 +S'etching' +p240432 +sg225236 +S'unknown date\n' +p240433 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c90b.jpg' +p240434 +sg225240 +g27 +sa(dp240435 +g225230 +S'Hungarian Cavalier' +p240436 +sg225232 +S'Stefano Della Bella' +p240437 +sg225234 +S'etching' +p240438 +sg225236 +S'unknown date\n' +p240439 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c90c.jpg' +p240440 +sg225240 +g27 +sa(dp240441 +g225230 +S'Hungarian Cavalier' +p240442 +sg225232 +S'Stefano Della Bella' +p240443 +sg225234 +S'etching' +p240444 +sg225236 +S'unknown date\n' +p240445 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c90d.jpg' +p240446 +sg225240 +g27 +sa(dp240447 +g225230 +S'Hungarian Cavalier' +p240448 +sg225232 +S'Stefano Della Bella' +p240449 +sg225234 +S'etching' +p240450 +sg225236 +S'unknown date\n' +p240451 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c90e.jpg' +p240452 +sg225240 +g27 +sa(dp240453 +g225230 +S'The Ruins of the Colosseum' +p240454 +sg225232 +S'Bartholomeus Breenbergh' +p240455 +sg225234 +S'etching' +p240456 +sg225236 +S'unknown date\n' +p240457 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0bc.jpg' +p240458 +sg225240 +g27 +sa(dp240459 +g225230 +S'The Town of Leoni, near Frascati' +p240460 +sg225232 +S'Bartholomeus Breenbergh' +p240461 +sg225234 +S'etching' +p240462 +sg225236 +S'1640' +p240463 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0bb.jpg' +p240464 +sg225240 +g27 +sa(dp240465 +g225230 +S'Ruins' +p240466 +sg225232 +S'Jan Gerritsz van Bronckhorst' +p240467 +sg225234 +S'etching' +p240468 +sg225236 +S'unknown date\n' +p240469 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4ec.jpg' +p240470 +sg225240 +g27 +sa(dp240471 +g225230 +S'Saint Jerome in the Wilderness' +p240472 +sg225232 +S'Annibale Carracci' +p240473 +sg225234 +S'etching and engraving' +p240474 +sg225236 +S'c. 1591' +p240475 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb6e.jpg' +p240476 +sg225240 +g27 +sa(dp240477 +g225230 +S'Susanna and the Elders' +p240478 +sg225232 +S'Annibale Carracci' +p240479 +sg225234 +S'etching and engraving' +p240480 +sg225236 +S'c. 1590/1595' +p240481 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb76.jpg' +p240482 +sg225240 +g27 +sa(dp240483 +g225230 +S'The Rest on the Flight into Egypt' +p240484 +sg225232 +S'Giovanni Francesco Grimaldi' +p240485 +sg225234 +S'etching' +p240486 +sg225236 +S'unknown date\n' +p240487 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca06.jpg' +p240488 +sg225240 +g27 +sa(dp240489 +g225230 +S'Small Town (Town Gate at Gorkum?)' +p240490 +sg225232 +S'Jan Hackaert' +p240491 +sg225234 +S'etching' +p240492 +sg225236 +S'unknown date\n' +p240493 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d51d.jpg' +p240494 +sg225240 +g27 +sa(dp240495 +g225230 +S'Landscape with a Winding Road' +p240496 +sg225232 +S'Jan Hackaert' +p240497 +sg225234 +S'etching' +p240498 +sg225236 +S'unknown date\n' +p240499 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d51c.jpg' +p240500 +sg225240 +g27 +sa(dp240501 +g225230 +S'Landscape with a Stream' +p240502 +sg225232 +S'Jan Hackaert' +p240503 +sg225234 +S'etching' +p240504 +sg225236 +S'unknown date\n' +p240505 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d51b.jpg' +p240506 +sg225240 +g27 +sa(dp240507 +g225230 +S'Landscape with a Bending Tree' +p240508 +sg225232 +S'Jan Hackaert' +p240509 +sg225234 +S'etching' +p240510 +sg225236 +S'unknown date\n' +p240511 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d51a.jpg' +p240512 +sg225240 +g27 +sa(dp240513 +g225230 +S'Landscape with Four Trees' +p240514 +sg225232 +S'Jan Hackaert' +p240515 +sg225234 +S'etching' +p240516 +sg225236 +S'unknown date\n' +p240517 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d519.jpg' +p240518 +sg225240 +g27 +sa(dp240519 +g225230 +S'Landscape with River and Rock' +p240520 +sg225232 +S'Jan Hackaert' +p240521 +sg225234 +S'etching' +p240522 +sg225236 +S'unknown date\n' +p240523 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d518.jpg' +p240524 +sg225240 +g27 +sa(dp240525 +g225230 +S'Cushion (Martha Kurzweil Sitting on a Divan)' +p240526 +sg225232 +S'Max Kurzweil' +p240527 +sg225234 +S'color woodcut on japan paper' +p240528 +sg225236 +S'1903' +p240529 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005db6.jpg' +p240530 +sg225240 +g27 +sa(dp240531 +g225230 +S'Beheading of John the Baptist' +p240532 +sg225232 +S'Artist Information (' +p240533 +sg225234 +S'Dutch, 1606 - 1669' +p240534 +sg225236 +S'(artist)' +p240535 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2f9.jpg' +p240536 +sg225240 +g27 +sa(dp240537 +g225230 +S'The Column: pl.1' +p240538 +sg225232 +S'Artist Information (' +p240539 +sg225234 +S'(artist)' +p240540 +sg225236 +S'\n' +p240541 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3ad.jpg' +p240542 +sg225240 +g27 +sa(dp240543 +g225230 +S'Rocky Landscape: pl.2' +p240544 +sg225232 +S'Artist Information (' +p240545 +sg225234 +S'(artist)' +p240546 +sg225236 +S'\n' +p240547 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3ae.jpg' +p240548 +sg225240 +g27 +sa(dp240549 +g225230 +S'Riverscape with Rocks on the Right: pl.3' +p240550 +sg225232 +S'Artist Information (' +p240551 +sg225234 +S'(artist)' +p240552 +sg225236 +S'\n' +p240553 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3a7.jpg' +p240554 +sg225240 +g27 +sa(dp240555 +g225230 +S'Rocky Landscape with Fir: pl.4' +p240556 +sg225232 +S'Artist Information (' +p240557 +sg225234 +S'(artist)' +p240558 +sg225236 +S'\n' +p240559 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3a8.jpg' +p240560 +sg225240 +g27 +sa(dp240561 +g225230 +S'Rocky Landscape with Cross: pl.5' +p240562 +sg225232 +S'Artist Information (' +p240563 +sg225234 +S'(artist)' +p240564 +sg225236 +S'\n' +p240565 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3a9.jpg' +p240566 +sg225240 +g27 +sa(dp240567 +g225230 +S'The Waterfall: pl.6' +p240568 +sg225232 +S'Artist Information (' +p240569 +sg225234 +S'(artist)' +p240570 +sg225236 +S'\n' +p240571 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3a4.jpg' +p240572 +sg225240 +g27 +sa(dp240573 +g225230 +S'Mountainous Landscape with a Cart: pl.8' +p240574 +sg225232 +S'Artist Information (' +p240575 +sg225234 +S'(artist)' +p240576 +sg225236 +S'\n' +p240577 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3a6.jpg' +p240578 +sg225240 +g27 +sa(dp240579 +g225230 +S'Democritus in Meditation' +p240580 +sg225232 +S'Salvator Rosa' +p240581 +sg225234 +S'etching' +p240582 +sg225236 +S'1662' +p240583 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d445.jpg' +p240584 +sg225240 +g27 +sa(dp240585 +g225230 +S'The Genius of Salvator Rosa' +p240586 +sg225232 +S'Salvator Rosa' +p240587 +sg225234 +S'etching' +p240588 +sg225236 +S'unknown date\n' +p240589 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca14.jpg' +p240590 +sg225240 +g27 +sa(dp240591 +g225230 +S'Glaucus and Scylla' +p240592 +sg225232 +S'Salvator Rosa' +p240593 +sg225234 +S'etching' +p240594 +sg225236 +S'1615-1673' +p240595 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca16.jpg' +p240596 +sg225240 +g27 +sa(dp240597 +g225230 +S'The Academy of Plato' +p240598 +sg225232 +S'Salvator Rosa' +p240599 +sg225234 +S'etching' +p240600 +sg225236 +S'unknown date\n' +p240601 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca2c.jpg' +p240602 +sg225240 +g27 +sa(dp240603 +g225230 +S'The Dream of Aeneas' +p240604 +sg225232 +S'Salvator Rosa' +p240605 +sg225234 +S'etching' +p240606 +sg225236 +S'unknown date\n' +p240607 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca18.jpg' +p240608 +sg225240 +g27 +sa(dp240609 +g225230 +S'Achilles Dragging the Body of Hector' +p240610 +sg225232 +S'Pietro Testa' +p240611 +sg225234 +S'etching' +p240612 +sg225236 +S'unknown date\n' +p240613 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca1e.jpg' +p240614 +sg225240 +g27 +sa(dp240615 +g225230 +S'The Adoration of the Magi' +p240616 +sg225232 +S'Pietro Testa' +p240617 +sg225234 +S'etching' +p240618 +sg225236 +S'unknown date\n' +p240619 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca2f.jpg' +p240620 +sg225240 +g27 +sa(dp240621 +g225230 +S'Allegory of Painting' +p240622 +sg225232 +S'Pietro Testa' +p240623 +sg225234 +S'etching' +p240624 +sg225236 +S'unknown date\n' +p240625 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca1c.jpg' +p240626 +sg225240 +g27 +sa(dp240627 +g225230 +S'The Infant Christ at the Foot of the Cross' +p240628 +sg225232 +S'Pietro Testa' +p240629 +sg225234 +S'etching' +p240630 +sg225236 +S'1635/1637' +p240631 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d440.jpg' +p240632 +sg225240 +g27 +sa(dp240633 +g225230 +S'Parnassus' +p240634 +sg225232 +S'Pietro Testa' +p240635 +sg225234 +S'etching' +p240636 +sg225236 +S'unknown date\n' +p240637 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f097.jpg' +p240638 +sg225240 +g27 +sa(dp240639 +g225230 +S'The Sacrifice of Iphigenia' +p240640 +sg225232 +S'Pietro Testa' +p240641 +sg225234 +S'etching' +p240642 +sg225236 +S'unknown date\n' +p240643 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca32.jpg' +p240644 +sg225240 +g27 +sa(dp240645 +g225230 +S'Venus in a Garden with Cupids' +p240646 +sg225232 +S'Pietro Testa' +p240647 +sg225234 +S'etching' +p240648 +sg225236 +S'1633/1634' +p240649 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca31.jpg' +p240650 +sg225240 +g27 +sa(dp240651 +g225230 +S'Young Woman, Surrounded by Cupids' +p240652 +sg225232 +S'Pietro Testa' +p240653 +sg225234 +S'etching' +p240654 +sg225236 +S'unknown date\n' +p240655 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca1d.jpg' +p240656 +sg225240 +g27 +sa(dp240657 +g225232 +S'Giuseppe Scolari' +p240658 +sg225240 +g27 +sg225234 +S'woodcut' +p240659 +sg225230 +S'The Entombment' +p240660 +sg225236 +S'c. 1580' +p240661 +sa(dp240662 +g225232 +S'Georges Braque' +p240663 +sg225240 +g27 +sg225234 +S'etching and drypoint on paper Velin' +p240664 +sg225230 +S'Cubist Still Life No.2' +p240665 +sg225236 +S'1912' +p240666 +sa(dp240667 +g225230 +S'Baigneuses luttant (Bathers Wrestling)' +p240668 +sg225232 +S'Camille Pissarro' +p240669 +sg225234 +S'lithograph' +p240670 +sg225236 +S'c. 1896' +p240671 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dbc.jpg' +p240672 +sg225240 +g27 +sa(dp240673 +g225230 +S'Peasants in a Field of Beans (Paysannes dans un champ de haricots)' +p240674 +sg225232 +S'Camille Pissarro' +p240675 +sg225234 +S'etching and aquatint (zinc)' +p240676 +sg225236 +S'1891' +p240677 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dbd.jpg' +p240678 +sg225240 +g27 +sa(dp240679 +g225232 +S'Jacques Villon' +p240680 +sg225240 +g27 +sg225234 +S'drypoint in black on wove paper' +p240681 +sg225230 +S'Ren\xc3\xa9e (Ren\xc3\xa9e de face)' +p240682 +sg225236 +S'1911' +p240683 +sa(dp240684 +g225230 +S'Boy Delivering a Letter to a Woman' +p240685 +sg225232 +S'Jan van Somer' +p240686 +sg225234 +S'mezzotint' +p240687 +sg225236 +S'unknown date\n' +p240688 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d56f.jpg' +p240689 +sg225240 +g27 +sa(dp240690 +g225230 +S'A Storm' +p240691 +sg225232 +S'Moyses van Uyttenbroeck' +p240692 +sg225234 +S'etching' +p240693 +sg225236 +S'unknown date\n' +p240694 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5c2.jpg' +p240695 +sg225240 +g27 +sa(dp240696 +g225230 +S'The Sleeping Boy' +p240697 +sg225232 +S'Nicolaas Verkolje' +p240698 +sg225234 +S'mezzotint' +p240699 +sg225236 +S'unknown date\n' +p240700 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d67d.jpg' +p240701 +sg225240 +g27 +sa(dp240702 +g225230 +S'The Bodies of Saints Peter and Paul Hidden in the Catacombs' +p240703 +sg225232 +S'Giovanni Benedetto Castiglione' +p240704 +sg225234 +S'etching on laid paper' +p240705 +sg225236 +S'1647/1651' +p240706 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a0006587.jpg' +p240707 +sg225240 +g27 +sa(dp240708 +g225230 +S"Circe Changing Ulysses' Men into Beasts" +p240709 +sg225232 +S'Giovanni Benedetto Castiglione' +p240710 +sg225234 +S'etching on laid paper' +p240711 +sg225236 +S'c. 1650' +p240712 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a0006569.jpg' +p240713 +sg225240 +g27 +sa(dp240714 +g225230 +S"Rachel Concealing Laban's Idols" +p240715 +sg225232 +S'Giovanni Benedetto Castiglione' +p240716 +sg225234 +S'etching' +p240717 +sg225236 +S'c. 1635' +p240718 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a000658b.jpg' +p240719 +sg225240 +g27 +sa(dp240720 +g225230 +S'The Resurrection of Lazarus' +p240721 +sg225232 +S'Giovanni Benedetto Castiglione' +p240722 +sg225234 +S'etching on laid paper' +p240723 +sg225236 +S'1647/1651' +p240724 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a000658a.jpg' +p240725 +sg225240 +g27 +sa(dp240726 +g225230 +S'Tobit Burying the Dead' +p240727 +sg225232 +S'Giovanni Benedetto Castiglione' +p240728 +sg225234 +S'etching on laid paper' +p240729 +sg225236 +S'1647/1651' +p240730 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a0006589.jpg' +p240731 +sg225240 +g27 +sa(dp240732 +g225230 +S'The Annunciation' +p240733 +sg225232 +S'Federico Barocci' +p240734 +sg225234 +S'etching and engraving on laid paper' +p240735 +sg225236 +S'unknown date\n' +p240736 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00020/a0002022.jpg' +p240737 +sg225240 +g27 +sa(dp240738 +g225232 +S'Giorgio Morandi' +p240739 +sg225240 +g27 +sg225234 +S'etching in black on chine coll?' +p240740 +sg225230 +S'Still Life with a Basket of Bread' +p240741 +sg225236 +S'1921' +p240742 +sa(dp240743 +g225232 +S'Giorgio Morandi' +p240744 +sg225240 +g27 +sg225234 +S'etching' +p240745 +sg225230 +S'Still Life' +p240746 +sg225236 +S'1933' +p240747 +sa(dp240748 +g225230 +S'Saint Alban of Mainz' +p240749 +sg225232 +S'Tyrolean 16th Century' +p240750 +sg225234 +S'overall: 155.6 x 51.7 cm (61 1/4 x 20 3/8 in.)' +p240751 +sg225236 +S'\noil on panel' +p240752 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b0c.jpg' +p240753 +sg225240 +g27 +sa(dp240754 +g225230 +S'Saint Wolfgang' +p240755 +sg225232 +S'Tyrolean 16th Century' +p240756 +sg225234 +S'overall: 155.5 x 51.5 cm (61 1/4 x 20 1/4 in.)' +p240757 +sg225236 +S'\noil on panel' +p240758 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b0d.jpg' +p240759 +sg225240 +g27 +sa(dp240760 +g225230 +S'Saint Valentine' +p240761 +sg225232 +S'Tyrolean 16th Century' +p240762 +sg225234 +S'overall: 155.6 x 51.7 cm (61 1/4 x 20 3/8 in.)' +p240763 +sg225236 +S'\noil on panel' +p240764 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b0e.jpg' +p240765 +sg225240 +g27 +sa(dp240766 +g225230 +S'Saint Alcuin' +p240767 +sg225232 +S'Tyrolean 16th Century' +p240768 +sg225234 +S'overall: 155.3 x 51.6 cm (61 1/8 x 20 5/16 in.)' +p240769 +sg225236 +S'\noil on panel' +p240770 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b0f.jpg' +p240771 +sg225240 +g27 +sa(dp240772 +g225230 +S'Woman Ironing' +p240773 +sg225232 +S'Edgar Degas' +p240774 +sg225234 +S'oil on canvas' +p240775 +sg225236 +S'begun c. 1876, completed c. 1887' +p240776 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006be.jpg' +p240777 +sg225240 +S'Working-class women hold an important\r\nplace in Degas\xe2\x80\x99 oeuvre. From the late\r\n1860s on, images of stage performers as\r\nwell as women engaged in more mundane\r\nprofessions—milliners and dressmakers,\r\nlaundresses and ironers—were a mainstay\r\nin the artist\xe2\x80\x99s work. The writer Edmond\r\nde Goncourt noted Degas\xe2\x80\x99 preoccupation\r\nwith such subjects in 1874. Following a\r\nvisit to the artist\xe2\x80\x99s studio, Goncourt wrote\r\nin his journal that Degas "has become\r\nenamored of the modern, and within the modern, he has chosen laundresses and\r\ndancers."\n Degas was not alone in his interest in\r\nsuch figures. Emile Zola\xe2\x80\x99s novel \n Woman Ironing\n The composition of this painting\r\nis clearly based upon an earlier version\r\nof the same subject (The Metropolitan\r\nMuseum of Art, New York), which Degas had sold to his dealer Durand-Ruel in\r\n1873. It was purchased at the artist\xe2\x80\x99s request\r\nalong with five of his other works\r\nthe following year by Jean-Baptiste Faure.\r\nA renowned singer at the Paris Opéra,\r\nFaure was also the most important patron\r\nof the impressionists in the early 1870s:\r\nhis collection included works by Manet,\r\nMonet, and Degas. Faure commissioned\r\nthe Washington version, which is both\r\nlarger and more elaborate than the original,\r\nin 1874, presumably as a replacement\r\nfor the original version that he had just\r\nreturned to Degas. Unfortunately, Degas\xe2\x80\x99\r\nperfectionism and a number of personal\r\ntragedies—the deaths of his father in 1874\r\nand uncle in 1875, his brother René\xe2\x80\x99s\r\ngrowing debts, and the collapse of the\r\nfamily bank—hindered the artist\xe2\x80\x99s progress\r\non this and other commissions for\r\nFaure. Degas finally delivered the completed\r\npainting to his patron in 1887, but\r\nit only remained in his possession for six\r\nyears. In 1893, Faure sold this painting\r\nand four others by Degas to Durand-Ruel\r\nat a tidy profit.\n (Text by Kimberly Jones, \n Notes\n \n ' +p240778 +sa(dp240779 +g225232 +S'Pablo Picasso' +p240780 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p240781 +sg225230 +S'Woman with Tambourine (La femme au tambourin)' +p240782 +sg225236 +S'1938' +p240783 +sa(dp240784 +g225232 +S'Henri Matisse' +p240785 +sg225240 +g27 +sg225234 +S'screenprint stencil on linen damask' +p240786 +sg225230 +S'Oceania, the Sky' +p240787 +sg225236 +S'1946' +p240788 +sa(dp240789 +g225232 +S'Henri Matisse' +p240790 +sg225240 +g27 +sg225234 +S'screenprint stencil on linen damask' +p240791 +sg225230 +S'Oceania, the Sea' +p240792 +sg225236 +S'1946' +p240793 +sa(dp240794 +g225232 +S'Marcel Duchamp' +p240795 +sg225240 +g27 +sg225234 +S'light green cloth-covered case containing miniature replicas, photographs, black & white and color reproductions of works by Marcel Duchamp' +p240796 +sg225230 +S'Boite-en-Valise' +p240797 +sg225236 +S'1961' +p240798 +sa(dp240799 +g225230 +S'Portrait of a Young Man' +p240800 +sg225232 +S'Eastman Johnson' +p240801 +sg225234 +S'black and white chalk' +p240802 +sg225236 +S'unknown date\n' +p240803 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4bb.jpg' +p240804 +sg225240 +g27 +sa(dp240805 +g225230 +S'Excalftoria minima (Blue-breasted Quail)' +p240806 +sg225232 +S'Artist Information (' +p240807 +sg225234 +S'(artist)' +p240808 +sg225236 +S'\n' +p240809 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007aad.jpg' +p240810 +sg225240 +g27 +sa(dp240811 +g225230 +S'Perdix barbata (Daurian Partridge)' +p240812 +sg225232 +S'Artist Information (' +p240813 +sg225234 +S'(artist)' +p240814 +sg225236 +S'\n' +p240815 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007aac.jpg' +p240816 +sg225240 +g27 +sa(dp240817 +g225230 +S'Turdus Poecilopterus (Aztec Thrush)' +p240818 +sg225232 +S'Elizabeth Gould' +p240819 +sg225234 +S'hand-colored lithograph' +p240820 +sg225236 +S'unknown date\n' +p240821 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007aab.jpg' +p240822 +sg225240 +g27 +sa(dp240823 +g225230 +S'Drepanornis albertisi (Black-billed Sicklebill Bird of Paradise)' +p240824 +sg225232 +S'Artist Information (' +p240825 +sg225234 +S'(artist)' +p240826 +sg225236 +S'\n' +p240827 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007ab6.jpg' +p240828 +sg225240 +g27 +sa(dp240829 +g225230 +S'Hypsipetes Psaroides (Black Bulbul)' +p240830 +sg225232 +S'Elizabeth Gould' +p240831 +sg225234 +S'hand-colored lithograph' +p240832 +sg225236 +S'unknown date\n' +p240833 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c47.jpg' +p240834 +sg225240 +g27 +sa(dp240835 +g225230 +S'Petrocossyphus cyanus (Blue Rockthrush)' +p240836 +sg225232 +S'Artist Information (' +p240837 +sg225234 +S'(artist)' +p240838 +sg225236 +S'\n' +p240839 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007abe.jpg' +p240840 +sg225240 +g27 +sa(dp240841 +g225230 +S'Accentor modularis (Dunnock)' +p240842 +sg225232 +S'Artist Information (' +p240843 +sg225234 +S'(artist)' +p240844 +sg225236 +S'\n' +p240845 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007ab7.jpg' +p240846 +sg225240 +g27 +sa(dp240847 +g225230 +S'Ligurinus chloris (Greenfinch)' +p240848 +sg225232 +S'Artist Information (' +p240849 +sg225234 +S'(artist)' +p240850 +sg225236 +S'\n' +p240851 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007abd.jpg' +p240852 +sg225240 +g27 +sa(dp240853 +g225230 +S'Enicurus Scouleri (Little Forktail)' +p240854 +sg225232 +S'Elizabeth Gould' +p240855 +sg225234 +S'hand-colored lithograph' +p240856 +sg225236 +S'unknown date\n' +p240857 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c37.jpg' +p240858 +sg225240 +g27 +sa(dp240859 +g225230 +S'Diphyllodes chrysoptera (Magnificent Bird of Paradise)' +p240860 +sg225232 +S'Artist Information (' +p240861 +sg225234 +S'(artist)' +p240862 +sg225236 +S'\n' +p240863 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007abb.jpg' +p240864 +sg225240 +g27 +sa(dp240865 +g225230 +S'Pyrrhula Erythrocephala (Redheaded Bullfinch)' +p240866 +sg225232 +S'Elizabeth Gould' +p240867 +sg225234 +S'hand-colored lithograph' +p240868 +sg225236 +S'unknown date\n' +p240869 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c67.jpg' +p240870 +sg225240 +g27 +sa(dp240871 +g225230 +S'Epimachus speciosus (Sickle-billed Bird of Paradise)' +p240872 +sg225232 +S'W. Hart' +p240873 +sg225234 +S'hand-colored lithograph' +p240874 +sg225236 +S'unknown date\n' +p240875 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007aa2.jpg' +p240876 +sg225240 +g27 +sa(dp240877 +g225230 +S'Columba Leuconota (Snow Pigeon)' +p240878 +sg225232 +S'Elizabeth Gould' +p240879 +sg225234 +S'hand-colored lithograph' +p240880 +sg225236 +S'unknown date\n' +p240881 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c77.jpg' +p240882 +sg225240 +g27 +sa(dp240883 +g225230 +S'Enicurus Maculatus (Spotted Forktail)' +p240884 +sg225232 +S'Elizabeth Gould' +p240885 +sg225234 +S'hand-colored lithograph' +p240886 +sg225236 +S'unknown date\n' +p240887 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c57.jpg' +p240888 +sg225240 +g27 +sa(dp240889 +g225230 +S"Myiabeillia typica (Abeille's Hummingbird)" +p240890 +sg225232 +S'Artist Information (' +p240891 +sg225234 +S'(artist)' +p240892 +sg225236 +S'\n' +p240893 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007ab8.jpg' +p240894 +sg225240 +g27 +sa(dp240895 +g225230 +S"Agyrtria bartletti (Bartlett's Emerald)" +p240896 +sg225232 +S'W. Hart' +p240897 +sg225234 +S'hand-colored lithograph' +p240898 +sg225236 +S'unknown date\n' +p240899 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007aa6.jpg' +p240900 +sg225240 +g27 +sa(dp240901 +g225230 +S'Callipharus nigriventris (Black-bellied Hummingbird)' +p240902 +sg225232 +S'Artist Information (' +p240903 +sg225234 +S'(artist)' +p240904 +sg225236 +S'\n' +p240905 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007abc.jpg' +p240906 +sg225240 +g27 +sa(dp240907 +g225230 +S'Damophila amabilis (Blue-breasted Hummingbird)' +p240908 +sg225232 +S'Artist Information (' +p240909 +sg225234 +S'(artist)' +p240910 +sg225236 +S'\n' +p240911 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007ab9.jpg' +p240912 +sg225240 +g27 +sa(dp240913 +g225230 +S'Eucephala caerulea (Blue-chinned Sapphire)' +p240914 +sg225232 +S'Artist Information (' +p240915 +sg225234 +S'(artist)' +p240916 +sg225236 +S'\n' +p240917 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007aba.jpg' +p240918 +sg225240 +g27 +sa(dp240919 +g225230 +S'Helianthea osculans (Buff-tailed Star-Frontlet)' +p240920 +sg225232 +S'W. Hart' +p240921 +sg225234 +S'hand-colored lithograph' +p240922 +sg225236 +S'unknown date\n' +p240923 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007aa3.jpg' +p240924 +sg225240 +g27 +sa(dp240925 +g225230 +S'Lafresnaya flavicaudata (Buff-tailed Velvet-breast)' +p240926 +sg225232 +S'Artist Information (' +p240927 +sg225234 +S'(artist)' +p240928 +sg225236 +S'\n' +p240929 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007ac0.jpg' +p240930 +sg225240 +g27 +sa(dp240931 +g225230 +S'Eriocnemis cupreiventris (Coppery-vented Puff-Leg)' +p240932 +sg225232 +S'Artist Information (' +p240933 +sg225234 +S'(artist)' +p240934 +sg225236 +S'\n' +p240935 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007ac1.jpg' +p240936 +sg225240 +g27 +sa(dp240937 +g225230 +S'Eugenia imperatrix (Empress Hummingbird)' +p240938 +sg225232 +S'Artist Information (' +p240939 +sg225234 +S'(artist)' +p240940 +sg225236 +S'\n' +p240941 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007ac2.jpg' +p240942 +sg225240 +g27 +sa(dp240943 +g225230 +S'Lophornis chalybeus (Festive Coquette)' +p240944 +sg225232 +S'Artist Information (' +p240945 +sg225234 +S'(artist)' +p240946 +sg225236 +S'\n' +p240947 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007ac3.jpg' +p240948 +sg225240 +g27 +sa(dp240949 +g225230 +S"Glaucis fraseri (Fraser's Barbed-throat)" +p240950 +sg225232 +S'Artist Information (' +p240951 +sg225234 +S'(artist)' +p240952 +sg225236 +S'\n' +p240953 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007ac4.jpg' +p240954 +sg225240 +g27 +sa(dp240955 +g225230 +S'Eriocnemis vestitus (Glowing Puff-Leg)' +p240956 +sg225232 +S'Artist Information (' +p240957 +sg225234 +S'(artist)' +p240958 +sg225236 +S'\n' +p240959 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007ac5.jpg' +p240960 +sg225240 +g27 +sa(dp240961 +g225230 +S'Helianthea eos (Golden Star-frontlet)' +p240962 +sg225232 +S'Artist Information (' +p240963 +sg225234 +S'(artist)' +p240964 +sg225236 +S'\n' +p240965 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007ac6.jpg' +p240966 +sg225240 +g27 +sa(dp240967 +g225230 +S"Diphogena aurora (Gould's Rainbow)" +p240968 +sg225232 +S'Artist Information (' +p240969 +sg225234 +S'(artist)' +p240970 +sg225236 +S'\n' +p240971 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007abf.jpg' +p240972 +sg225240 +g27 +sa(dp240973 +g225230 +S"Clytolaema aurescens (Banded Ruby or Gould's Ruby)" +p240974 +sg225232 +S'Artist Information (' +p240975 +sg225234 +S'(artist)' +p240976 +sg225236 +S'\n' +p240977 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007ac7.jpg' +p240978 +sg225240 +g27 +sa(dp240979 +g225230 +S"Eucephala smaragdocaerulea (Gould's Wood Nymph)" +p240980 +sg225232 +S'Artist Information (' +p240981 +sg225234 +S'(artist)' +p240982 +sg225236 +S'\n' +p240983 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007ac8.jpg' +p240984 +sg225240 +g27 +sa(dp240985 +g225230 +S"Chlorostilbona prasina (Puncheran's Emerald)" +p240986 +sg225232 +S'Artist Information (' +p240987 +sg225234 +S'(artist)' +p240988 +sg225236 +S'\n' +p240989 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00081/a00081ca.jpg' +p240990 +sg225240 +g27 +sa(dp240991 +g225230 +S'Discura longicauda (Racket-Tail)' +p240992 +sg225232 +S'Artist Information (' +p240993 +sg225234 +S'(artist)' +p240994 +sg225236 +S'\n' +p240995 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00081/a00081cb.jpg' +p240996 +sg225240 +g27 +sa(dp240997 +g225230 +S'Spathura rufocaligata (Red-booted Racket-Tail)' +p240998 +sg225232 +S'Artist Information (' +p240999 +sg225234 +S'(artist)' +p241000 +sg225236 +S'\n' +p241001 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00081/a00081c8.jpg' +p241002 +sg225240 +g27 +sa(dp241003 +g225230 +S'Selashorus scintilla (Scintillant Hummingbird)' +p241004 +sg225232 +S'Artist Information (' +p241005 +sg225234 +S'(artist)' +p241006 +sg225236 +S'\n' +p241007 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00081/a00081d0.jpg' +p241008 +sg225240 +g27 +sa(dp241009 +g225230 +S'Tharmastura enicura (Slender Shear-Tail)' +p241010 +sg225232 +S'Artist Information (' +p241011 +sg225234 +S'(artist)' +p241012 +sg225236 +S'\n' +p241013 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00081/a00081d1.jpg' +p241014 +sg225240 +g27 +sa(dp241015 +g225230 +S'Ramphomicron microrhyncha (Small-billed Thornbill)' +p241016 +sg225232 +S'Artist Information (' +p241017 +sg225234 +S'(artist)' +p241018 +sg225236 +S'\n' +p241019 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00081/a00081cf.jpg' +p241020 +sg225240 +g27 +sa(dp241021 +g225230 +S'Lophornas reginae (Spangled Coquette)' +p241022 +sg225232 +S'Artist Information (' +p241023 +sg225234 +S'(artist)' +p241024 +sg225236 +S'\n' +p241025 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00081/a00081cc.jpg' +p241026 +sg225240 +g27 +sa(dp241027 +g225230 +S'Docimastes ensiferus (Sword-billed Hummingbird)' +p241028 +sg225232 +S'Artist Information (' +p241029 +sg225234 +S'(artist)' +p241030 +sg225236 +S'\n' +p241031 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00081/a00081cd.jpg' +p241032 +sg225240 +g27 +sa(dp241033 +g225230 +S'Lampornis veraguensis (Veraguan Mango)' +p241034 +sg225232 +S'Artist Information (' +p241035 +sg225234 +S'(artist)' +p241036 +sg225236 +S'\n' +p241037 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00081/a00081ce.jpg' +p241038 +sg225240 +g27 +sa(dp241039 +g225230 +S'Spathura underwoodi (White-footed Racket-Tail)' +p241040 +sg225232 +S'Artist Information (' +p241041 +sg225234 +S'(artist)' +p241042 +sg225236 +S'\n' +p241043 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00081/a00081c9.jpg' +p241044 +sg225240 +g27 +sa(dp241045 +g225230 +S'Gustav Mahler' +p241046 +sg225232 +S'Auguste Rodin' +p241047 +sg225234 +S'bronze' +p241048 +sg225236 +S'1909' +p241049 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c1e.jpg' +p241050 +sg225240 +g27 +sa(dp241051 +g225230 +S"The Flags, Saint Mark's, Venice - F\xc3\xaate Day" +p241052 +sg225232 +S'Eugene Lawrence Vail' +p241053 +sg225234 +S'oil on canvas' +p241054 +sg225236 +S'c. 1903' +p241055 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000282.jpg' +p241056 +sg225240 +g27 +sa(dp241057 +g225230 +S'Easter Sunday' +p241058 +sg225232 +S'Alexej von Jawlensky' +p241059 +sg225234 +S'oil on hardboard' +p241060 +sg225236 +S'1932' +p241061 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ed1.jpg' +p241062 +sg225240 +g27 +sa(dp241063 +g225232 +S'Gabriele M\xc3\xbcnter' +p241064 +sg225240 +g27 +sg225234 +S'oil on cardboard' +p241065 +sg225230 +S'Christmas Still Life' +p241066 +sg225236 +S'1937' +p241067 +sa(dp241068 +g225232 +S'Sir Jacob Epstein' +p241069 +sg225240 +g27 +sg225234 +S'bronze' +p241070 +sg225230 +S'Princess Menen' +p241071 +sg225236 +S'1949' +p241072 +sa(dp241073 +g225230 +S'George Washington Deal' +p241074 +sg225232 +S'Robert Street' +p241075 +sg225234 +S'oil on canvas' +p241076 +sg225236 +S'1834' +p241077 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a000022e.jpg' +p241078 +sg225240 +g27 +sa(dp241079 +g225230 +S'Elizabeth Price Thomas' +p241080 +sg225232 +S'Robert Street' +p241081 +sg225234 +S'oil on canvas' +p241082 +sg225236 +S'1834' +p241083 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a000022f.jpg' +p241084 +sg225240 +g27 +sa(dp241085 +g225230 +S'The Leland Sisters' +p241086 +sg225232 +S'Thomas Sully' +p241087 +sg225234 +S'oil on canvas' +p241088 +sg225236 +S'c. 1830' +p241089 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a000026b.jpg' +p241090 +sg225240 +g27 +sa(dp241091 +g225230 +S'Saint Michael' +p241092 +sg225232 +S'Giulio Romano' +p241093 +sg225234 +S'pen and brown ink' +p241094 +sg225236 +S'c. 1530' +p241095 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00025/a0002545.jpg' +p241096 +sg225240 +g27 +sa(dp241097 +g225232 +S'Henri Matisse' +p241098 +sg225240 +g27 +sg225234 +S'paper collage on canvas' +p241099 +sg225230 +S'La N\xc3\xa9gresse' +p241100 +sg225236 +S'1952' +p241101 +sa(dp241102 +g225232 +S'Marc Chagall' +p241103 +sg225240 +g27 +sg225234 +S'oil on paper on canvas' +p241104 +sg225230 +S'Houses at Vitebsk' +p241105 +sg225236 +S'1917' +p241106 +sa(dp241107 +g225230 +S'Daybreak - A Time to Rest' +p241108 +sg225232 +S'Jacob Lawrence' +p241109 +sg225234 +S'tempera on hardboard' +p241110 +sg225236 +S'1967' +p241111 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000147.jpg' +p241112 +sg225240 +S'Daybreak—A Time to Rest\n Jacob Lawrence is renowned for his narrative painting series that chronicles the experiences of African-Americans, which he created during a career of more than six decades. Using geometric shapes and bold colors on flattened picture planes to express his emotions, he fleshed out the lives of Tubman, Frederick Douglass, John Brown, and African-Americans migrating north from the rural south during and after slavery. Lawrence was twelve in 1929 when his family settled in Harlem, New York, at a time when African-American intellectual and artistic life was flourishing there. As a teen, he took classes at the Harlem Art Workshop and Harlem Community Art Center, where he studied works of art by African-American artists and learned about African art and history. Lawrence went on to create images that are major expressions of the history and experience of African-Americans.\n ' +p241113 +sa(dp241114 +g225230 +S'The Pistoia Crucifix' +p241115 +sg225232 +S'Pietro Tacca' +p241116 +sg225234 +S'bronze' +p241117 +sg225236 +S'c. 1600/1616' +p241118 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d98.jpg' +p241119 +sg225240 +g27 +sa(dp241120 +g225230 +S'Head of a Child [recto]' +p241121 +sg225232 +S'Fra Bartolommeo' +p241122 +sg225234 +S'silverpoint, heightened with white, on yellow-brown prepared paper' +p241123 +sg225236 +S'c. 1490' +p241124 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a08.jpg' +p241125 +sg225240 +g27 +sa(dp241126 +g225230 +S'A Monk [verso]' +p241127 +sg225232 +S'Fra Bartolommeo' +p241128 +sg225234 +S'pen and brown ink with brown wash heightened with white over (black chalk?) on laid paper' +p241129 +sg225236 +S'c. 1500' +p241130 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074dd.jpg' +p241131 +sg225240 +g27 +sa(dp241132 +g225230 +S'Christ Healing the Leper' +p241133 +sg225232 +S'Pieter de Jode I' +p241134 +sg225234 +S', unknown date' +p241135 +sg225236 +S'\n' +p241136 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007160.jpg' +p241137 +sg225240 +g27 +sa(dp241138 +g225232 +S'Anne Truitt' +p241139 +sg225240 +g27 +sg225234 +S'acrylic on wood' +p241140 +sg225230 +S'Spume (Light Grey)' +p241141 +sg225236 +S'1972' +p241142 +sa(dp241143 +g225230 +S'City Hall at Thorn' +p241144 +sg225232 +S'Eduard Gaertner' +p241145 +sg225234 +S'oil on canvas' +p241146 +sg225236 +S'1848' +p241147 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00062/a00062f1.jpg' +p241148 +sg225240 +g27 +sa(dp241149 +g225230 +S'The Camel' +p241150 +sg225232 +S'Rodolphe Bresdin' +p241151 +sg225234 +S'pen and ink tracing' +p241152 +sg225236 +S'unknown date\n' +p241153 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022c4.jpg' +p241154 +sg225240 +g27 +sa(dp241155 +g225230 +S'Christ and the Samaritan Woman' +p241156 +sg225232 +S'Giulio Campagnola' +p241157 +sg225234 +S'engraving' +p241158 +sg225236 +S'c. 1510' +p241159 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a000612d.jpg' +p241160 +sg225240 +g27 +sa(dp241161 +g225230 +S'Hamlet between the Trees' +p241162 +sg225232 +S'Allart van Everdingen' +p241163 +sg225234 +S'etching' +p241164 +sg225236 +S'probably c. 1645/1656' +p241165 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d114.jpg' +p241166 +sg225240 +g27 +sa(dp241167 +g225230 +S'Hamlet between the Trees' +p241168 +sg225232 +S'Allart van Everdingen' +p241169 +sg225234 +S'etching with engraving' +p241170 +sg225236 +S'probably c. 1645/1656' +p241171 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d115.jpg' +p241172 +sg225240 +g27 +sa(dp241173 +g225230 +S'Hamlet at the Bank of a River' +p241174 +sg225232 +S'Allart van Everdingen' +p241175 +sg225234 +S'etching' +p241176 +sg225236 +S'probably c. 1645/1656' +p241177 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d112.jpg' +p241178 +sg225240 +g27 +sa(dp241179 +g225230 +S'Hamlet at the Bank of a River' +p241180 +sg225232 +S'Allart van Everdingen' +p241181 +sg225234 +S'etching' +p241182 +sg225236 +S'probably c. 1645/1656' +p241183 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d116.jpg' +p241184 +sg225240 +g27 +sa(dp241185 +g225230 +S'Hamlet at the Bank of a River' +p241186 +sg225232 +S'Allart van Everdingen' +p241187 +sg225234 +S'etching with engraving' +p241188 +sg225236 +S'probably c. 1645/1656' +p241189 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d113.jpg' +p241190 +sg225240 +g27 +sa(dp241191 +g225230 +S'Four Figures under a Tree' +p241192 +sg225232 +S'Allart van Everdingen' +p241193 +sg225234 +S'etching' +p241194 +sg225236 +S'probably c. 1645/1656' +p241195 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d117.jpg' +p241196 +sg225240 +g27 +sa(dp241197 +g225230 +S'Four Figures under a Tree' +p241198 +sg225232 +S'Allart van Everdingen' +p241199 +sg225234 +S'etching' +p241200 +sg225236 +S'probably c. 1645/1656' +p241201 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d118.jpg' +p241202 +sg225240 +g27 +sa(dp241203 +g225230 +S'Man on a Small Wooden Bridge' +p241204 +sg225232 +S'Allart van Everdingen' +p241205 +sg225234 +S'etching' +p241206 +sg225236 +S'probably c. 1645/1656' +p241207 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d119.jpg' +p241208 +sg225240 +g27 +sa(dp241209 +g225230 +S'Man on a Small Wooden Bridge' +p241210 +sg225232 +S'Allart van Everdingen' +p241211 +sg225234 +S'etching' +p241212 +sg225236 +S'probably c. 1645/1656' +p241213 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d11a.jpg' +p241214 +sg225240 +g27 +sa(dp241215 +g225230 +S'Waterfall' +p241216 +sg225232 +S'Allart van Everdingen' +p241217 +sg225234 +S'etching' +p241218 +sg225236 +S'probably c. 1645/1656' +p241219 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d11d.jpg' +p241220 +sg225240 +g27 +sa(dp241221 +g225230 +S'Waterfall' +p241222 +sg225232 +S'Allart van Everdingen' +p241223 +sg225234 +S'etching' +p241224 +sg225236 +S'probably c. 1645/1656' +p241225 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d11e.jpg' +p241226 +sg225240 +g27 +sa(dp241227 +g225230 +S'Waterfall' +p241228 +sg225232 +S'Allart van Everdingen' +p241229 +sg225234 +S'etching with engraving' +p241230 +sg225236 +S'probably c. 1645/1656' +p241231 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d11c.jpg' +p241232 +sg225240 +g27 +sa(dp241233 +g225230 +S'Swineherd' +p241234 +sg225232 +S'Allart van Everdingen' +p241235 +sg225234 +S'etching' +p241236 +sg225236 +S'probably c. 1645/1656' +p241237 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d11f.jpg' +p241238 +sg225240 +g27 +sa(dp241239 +g225230 +S'Swineherd' +p241240 +sg225232 +S'Allart van Everdingen' +p241241 +sg225234 +S'etching' +p241242 +sg225236 +S'probably c. 1645/1656' +p241243 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d120.jpg' +p241244 +sg225240 +g27 +sa(dp241245 +g225230 +S'Landscape with Millstone near a Cask' +p241246 +sg225232 +S'Allart van Everdingen' +p241247 +sg225234 +S'etching' +p241248 +sg225236 +S'probably c. 1645/1656' +p241249 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d121.jpg' +p241250 +sg225240 +g27 +sa(dp241251 +g225230 +S'Landscape with Millstone near a Cask' +p241252 +sg225232 +S'Allart van Everdingen' +p241253 +sg225234 +S'etching' +p241254 +sg225236 +S'probably c. 1645/1656' +p241255 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d122.jpg' +p241256 +sg225240 +g27 +sa(dp241257 +g225230 +S'Chapel' +p241258 +sg225232 +S'Allart van Everdingen' +p241259 +sg225234 +S'etching with engraving' +p241260 +sg225236 +S'probably c. 1645/1656' +p241261 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d125.jpg' +p241262 +sg225240 +g27 +sa(dp241263 +g225230 +S'Chapel' +p241264 +sg225232 +S'Allart van Everdingen' +p241265 +sg225234 +S'etching with engraving' +p241266 +sg225236 +S'probably c. 1645/1656' +p241267 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d124.jpg' +p241268 +sg225240 +g27 +sa(dp241269 +g225230 +S'Two Casks in Front of a Cottage' +p241270 +sg225232 +S'Allart van Everdingen' +p241271 +sg225234 +S'etching' +p241272 +sg225236 +S'probably c. 1645/1656' +p241273 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d13a.jpg' +p241274 +sg225240 +g27 +sa(dp241275 +g225230 +S'Two Casks in Front of a Cottage' +p241276 +sg225232 +S'Allart van Everdingen' +p241277 +sg225234 +S'etching with engraving' +p241278 +sg225236 +S'probably c. 1645/1656' +p241279 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d13b.jpg' +p241280 +sg225240 +g27 +sa(dp241281 +g225230 +S'Pilgrim with a Dog' +p241282 +sg225232 +S'Allart van Everdingen' +p241283 +sg225234 +S'etching' +p241284 +sg225236 +S'probably c. 1645/1656' +p241285 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d138.jpg' +p241286 +sg225240 +g27 +sa(dp241287 +g225230 +S'Pilgrim with a Dog' +p241288 +sg225232 +S'Allart van Everdingen' +p241289 +sg225234 +S'etching' +p241290 +sg225236 +S'probably c. 1645/1656' +p241291 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d139.jpg' +p241292 +sg225240 +g27 +sa(dp241293 +g225230 +S"Fisherman's Hut" +p241294 +sg225232 +S'Allart van Everdingen' +p241295 +sg225234 +S'etching' +p241296 +sg225236 +S'probably c. 1645/1656' +p241297 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d136.jpg' +p241298 +sg225240 +g27 +sa(dp241299 +g225230 +S"Fisherman's Hut" +p241300 +sg225232 +S'Allart van Everdingen' +p241301 +sg225234 +S'etching with engraving' +p241302 +sg225236 +S'probably c. 1645/1656' +p241303 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d137.jpg' +p241304 +sg225240 +g27 +sa(dp241305 +g225230 +S'Seascape with Three Figures to the Right' +p241306 +sg225232 +S'Allart van Everdingen' +p241307 +sg225234 +S'etching' +p241308 +sg225236 +S'probably c. 1645/1656' +p241309 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d134.jpg' +p241310 +sg225240 +g27 +sa(dp241311 +g225230 +S'Seascape with Three Figures to the Right' +p241312 +sg225232 +S'Allart van Everdingen' +p241313 +sg225234 +S'etching' +p241314 +sg225236 +S'probably c. 1645/1656' +p241315 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d135.jpg' +p241316 +sg225240 +g27 +sa(dp241317 +g225230 +S'Ruined Cottage, Surrounded by Water' +p241318 +sg225232 +S'Allart van Everdingen' +p241319 +sg225234 +S'etching' +p241320 +sg225236 +S'probably c. 1645/1656' +p241321 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d132.jpg' +p241322 +sg225240 +g27 +sa(dp241323 +g225230 +S'Ruined Cottage, Surrounded by Water' +p241324 +sg225232 +S'Allart van Everdingen' +p241325 +sg225234 +S'etching with engraving' +p241326 +sg225236 +S'probably c. 1645/1656' +p241327 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d133.jpg' +p241328 +sg225240 +g27 +sa(dp241329 +g225230 +S'Church on a Hill' +p241330 +sg225232 +S'Allart van Everdingen' +p241331 +sg225234 +S'etching' +p241332 +sg225236 +S'probably c. 1645/1656' +p241333 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d130.jpg' +p241334 +sg225240 +g27 +sa(dp241335 +g225230 +S'Church on a Hill' +p241336 +sg225232 +S'Allart van Everdingen' +p241337 +sg225234 +S'etching with engraving' +p241338 +sg225236 +S'probably c. 1645/1656' +p241339 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d131.jpg' +p241340 +sg225240 +g27 +sa(dp241341 +g225230 +S'Hamlet on a Mountain Side' +p241342 +sg225232 +S'Allart van Everdingen' +p241343 +sg225234 +S'etching' +p241344 +sg225236 +S'probably c. 1645/1656' +p241345 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d126.jpg' +p241346 +sg225240 +g27 +sa(dp241347 +g225230 +S'Hamlet on a Mountain Side' +p241348 +sg225232 +S'Allart van Everdingen' +p241349 +sg225234 +S'etching with engraving' +p241350 +sg225236 +S'probably c. 1645/1656' +p241351 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d127.jpg' +p241352 +sg225240 +g27 +sa(dp241353 +g225230 +S'Large Rock' +p241354 +sg225232 +S'Allart van Everdingen' +p241355 +sg225234 +S'etching with engraving' +p241356 +sg225236 +S'probably c. 1645/1656' +p241357 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d12c.jpg' +p241358 +sg225240 +g27 +sa(dp241359 +g225230 +S'Large Rock' +p241360 +sg225232 +S'Allart van Everdingen' +p241361 +sg225234 +S'etching with engraving' +p241362 +sg225236 +S'probably c. 1645/1656' +p241363 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d12a.jpg' +p241364 +sg225240 +g27 +sa(dp241365 +g225230 +S'Hamlet on Mountainous Ground' +p241366 +sg225232 +S'Allart van Everdingen' +p241367 +sg225234 +S'etching' +p241368 +sg225236 +S'probably c. 1645/1656' +p241369 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d129.jpg' +p241370 +sg225240 +g27 +sa(dp241371 +g225230 +S'Unloading a Barge' +p241372 +sg225232 +S'Allart van Everdingen' +p241373 +sg225234 +S'etching' +p241374 +sg225236 +S'probably c. 1645/1656' +p241375 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d128.jpg' +p241376 +sg225240 +g27 +sa(dp241377 +g225230 +S"Carpenter's Hut" +p241378 +sg225232 +S'Allart van Everdingen' +p241379 +sg225234 +S'etching' +p241380 +sg225236 +S'probably c. 1645/1656' +p241381 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d14a.jpg' +p241382 +sg225240 +g27 +sa(dp241383 +g225230 +S"Carpenter's Hut" +p241384 +sg225232 +S'Allart van Everdingen' +p241385 +sg225234 +S'etching' +p241386 +sg225236 +S'probably c. 1645/1656' +p241387 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d14b.jpg' +p241388 +sg225240 +g27 +sa(dp241389 +g225230 +S'Horseman on a Stone Bridge' +p241390 +sg225232 +S'Allart van Everdingen' +p241391 +sg225234 +S'etching' +p241392 +sg225236 +S'probably c. 1645/1656' +p241393 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d145.jpg' +p241394 +sg225240 +g27 +sa(dp241395 +g225230 +S'Two Beams Floating in the Water' +p241396 +sg225232 +S'Allart van Everdingen' +p241397 +sg225234 +S'etching' +p241398 +sg225236 +S'probably c. 1645/1656' +p241399 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d146.jpg' +p241400 +sg225240 +g27 +sa(dp241401 +g225230 +S'Two Beams Floating in the Water' +p241402 +sg225232 +S'Allart van Everdingen' +p241403 +sg225234 +S'etching' +p241404 +sg225236 +S'probably c. 1645/1656' +p241405 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d147.jpg' +p241406 +sg225240 +g27 +sa(dp241407 +g225230 +S'Goat Herd on a Hill' +p241408 +sg225232 +S'Allart van Everdingen' +p241409 +sg225234 +S'etching' +p241410 +sg225236 +S'probably c. 1645/1656' +p241411 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d148.jpg' +p241412 +sg225240 +g27 +sa(dp241413 +g225230 +S'Goat Herd on a Hill' +p241414 +sg225232 +S'Allart van Everdingen' +p241415 +sg225234 +S'etching with engraving' +p241416 +sg225236 +S'probably c. 1645/1656' +p241417 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d149.jpg' +p241418 +sg225240 +g27 +sa(dp241419 +g225230 +S'Hamlet on a Hill' +p241420 +sg225232 +S'Allart van Everdingen' +p241421 +sg225234 +S'etching' +p241422 +sg225236 +S'probably c. 1645/1656' +p241423 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d143.jpg' +p241424 +sg225240 +g27 +sa(dp241425 +g225230 +S'Hamlet on a Hill' +p241426 +sg225232 +S'Allart van Everdingen' +p241427 +sg225234 +S'etching' +p241428 +sg225236 +S'probably c. 1645/1656' +p241429 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d144.jpg' +p241430 +sg225240 +g27 +sa(dp241431 +g225230 +S'Sportsman near a Large Tree' +p241432 +sg225232 +S'Allart van Everdingen' +p241433 +sg225234 +S'etching' +p241434 +sg225236 +S'probably c. 1645/1656' +p241435 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d13c.jpg' +p241436 +sg225240 +g27 +sa(dp241437 +g225230 +S'Sportsman near a Large Tree' +p241438 +sg225232 +S'Allart van Everdingen' +p241439 +sg225234 +S'etching' +p241440 +sg225236 +S'probably c. 1645/1656' +p241441 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d13d.jpg' +p241442 +sg225240 +g27 +sa(dp241443 +g225230 +S'Hut with the Remains of a Hedge' +p241444 +sg225232 +S'Allart van Everdingen' +p241445 +sg225234 +S'etching' +p241446 +sg225236 +S'probably c. 1645/1656' +p241447 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d13e.jpg' +p241448 +sg225240 +g27 +sa(dp241449 +g225230 +S'Hut with the Remains of a Hedge' +p241450 +sg225232 +S'Allart van Everdingen' +p241451 +sg225234 +S'etching' +p241452 +sg225236 +S'probably c. 1645/1656' +p241453 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d13f.jpg' +p241454 +sg225240 +g27 +sa(dp241455 +g225230 +S'Three Men on a Rock' +p241456 +sg225232 +S'Allart van Everdingen' +p241457 +sg225234 +S'etching' +p241458 +sg225236 +S'probably c. 1645/1656' +p241459 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d141.jpg' +p241460 +sg225240 +g27 +sa(dp241461 +g225230 +S'Three Men on a Rock' +p241462 +sg225232 +S'Allart van Everdingen' +p241463 +sg225234 +S'etching' +p241464 +sg225236 +S'probably c. 1645/1656' +p241465 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d142.jpg' +p241466 +sg225240 +g27 +sa(dp241467 +g225230 +S'Three Men on a Rock' +p241468 +sg225232 +S'Allart van Everdingen' +p241469 +sg225234 +S'etching' +p241470 +sg225236 +S'probably c. 1645/1656' +p241471 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d14d.jpg' +p241472 +sg225240 +g27 +sa(dp241473 +g225230 +S'Three Men on a Rock' +p241474 +sg225232 +S'Allart van Everdingen' +p241475 +sg225234 +S'etching with engraving' +p241476 +sg225236 +S'probably c. 1645/1656' +p241477 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d14c.jpg' +p241478 +sg225240 +g27 +sa(dp241479 +g225230 +S'Large House with a Turret' +p241480 +sg225232 +S'Allart van Everdingen' +p241481 +sg225234 +S'etching' +p241482 +sg225236 +S'probably c. 1645/1656' +p241483 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d14e.jpg' +p241484 +sg225240 +g27 +sa(dp241485 +g225230 +S'Large House with a Turret' +p241486 +sg225232 +S'Allart van Everdingen' +p241487 +sg225234 +S'etching' +p241488 +sg225236 +S'probably c. 1645/1656' +p241489 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d14f.jpg' +p241490 +sg225240 +g27 +sa(dp241491 +g225230 +S'Straw Hut Seen from Behind' +p241492 +sg225232 +S'Allart van Everdingen' +p241493 +sg225234 +S'etching' +p241494 +sg225236 +S'probably c. 1645/1656' +p241495 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d153.jpg' +p241496 +sg225240 +g27 +sa(dp241497 +g225230 +S'Straw Hut Seen from Behind' +p241498 +sg225232 +S'Allart van Everdingen' +p241499 +sg225234 +S'etching with engraving' +p241500 +sg225236 +S'probably c. 1645/1656' +p241501 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d154.jpg' +p241502 +sg225240 +g27 +sa(dp241503 +g225230 +S'Large Rock at the River' +p241504 +sg225232 +S'Allart van Everdingen' +p241505 +sg225234 +S'etching' +p241506 +sg225236 +S'probably c. 1645/1656' +p241507 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d157.jpg' +p241508 +sg225240 +g27 +sa(dp241509 +g225230 +S'Large Rock at the River' +p241510 +sg225232 +S'Allart van Everdingen' +p241511 +sg225234 +S'etching' +p241512 +sg225236 +S'probably c. 1645/1656' +p241513 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d156.jpg' +p241514 +sg225240 +g27 +sa(dp241515 +g225230 +S'Large Rock at the River' +p241516 +sg225232 +S'Allart van Everdingen' +p241517 +sg225234 +S'etching with engraving' +p241518 +sg225236 +S'probably c. 1645/1656' +p241519 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d155.jpg' +p241520 +sg225240 +g27 +sa(dp241521 +g225230 +S'Two Boats Approaching a Hut' +p241522 +sg225232 +S'Allart van Everdingen' +p241523 +sg225234 +S'etching' +p241524 +sg225236 +S'probably c. 1645/1656' +p241525 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d158.jpg' +p241526 +sg225240 +g27 +sa(dp241527 +g225230 +S'Winding River' +p241528 +sg225232 +S'Allart van Everdingen' +p241529 +sg225234 +S'etching' +p241530 +sg225236 +S'probably c. 1645/1656' +p241531 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d159.jpg' +p241532 +sg225240 +g27 +sa(dp241533 +g225230 +S'Winding River' +p241534 +sg225232 +S'Allart van Everdingen' +p241535 +sg225234 +S'etching' +p241536 +sg225236 +S'probably c. 1645/1656' +p241537 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d15a.jpg' +p241538 +sg225240 +g27 +sa(dp241539 +g225230 +S'Large Rock Projecting from a River' +p241540 +sg225232 +S'Allart van Everdingen' +p241541 +sg225234 +S'etching' +p241542 +sg225236 +S'probably c. 1645/1656' +p241543 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d150.jpg' +p241544 +sg225240 +g27 +sa(dp241545 +g225230 +S'Three Goats at the River' +p241546 +sg225232 +S'Allart van Everdingen' +p241547 +sg225234 +S'etching' +p241548 +sg225236 +S'probably c. 1645/1656' +p241549 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d151.jpg' +p241550 +sg225240 +g27 +sa(dp241551 +g225230 +S'Three Goats at the River' +p241552 +sg225232 +S'Allart van Everdingen' +p241553 +sg225234 +S'etching' +p241554 +sg225236 +S'probably c. 1645/1656' +p241555 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d152.jpg' +p241556 +sg225240 +g27 +sa(dp241557 +g225230 +S'Cottages at the Bank' +p241558 +sg225232 +S'Allart van Everdingen' +p241559 +sg225234 +S'etching' +p241560 +sg225236 +S'probably c. 1645/1656' +p241561 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d169.jpg' +p241562 +sg225240 +g27 +sa(dp241563 +g225230 +S'Cottages at the Bank' +p241564 +sg225232 +S'Allart van Everdingen' +p241565 +sg225234 +S'etching' +p241566 +sg225236 +S'probably c. 1645/1656' +p241567 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d168.jpg' +p241568 +sg225240 +g27 +sa(dp241569 +g225230 +S'Two Fir Trees near Cottages' +p241570 +sg225232 +S'Allart van Everdingen' +p241571 +sg225234 +S'etching' +p241572 +sg225236 +S'probably c. 1645/1656' +p241573 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d160.jpg' +p241574 +sg225240 +g27 +sa(dp241575 +g225230 +S'Two Fir Trees near Cottages' +p241576 +sg225232 +S'Allart van Everdingen' +p241577 +sg225234 +S'etching with engraving' +p241578 +sg225236 +S'probably c. 1645/1656' +p241579 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d161.jpg' +p241580 +sg225240 +g27 +sa(dp241581 +g225230 +S'Ruinous Hut' +p241582 +sg225232 +S'Allart van Everdingen' +p241583 +sg225234 +S'etching' +p241584 +sg225236 +S'probably c. 1645/1656' +p241585 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d162.jpg' +p241586 +sg225240 +g27 +sa(dp241587 +g225230 +S'Ruinous Hut' +p241588 +sg225232 +S'Allart van Everdingen' +p241589 +sg225234 +S'etching' +p241590 +sg225236 +S'probably c. 1645/1656' +p241591 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d163.jpg' +p241592 +sg225240 +g27 +sa(dp241593 +g225230 +S'Man near Entry of a Ruinous Hedge' +p241594 +sg225232 +S'Allart van Everdingen' +p241595 +sg225234 +S'etching' +p241596 +sg225236 +S'probably c. 1645/1656' +p241597 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d164.jpg' +p241598 +sg225240 +g27 +sa(dp241599 +g225230 +S'Man near Entry of a Ruinous Hedge' +p241600 +sg225232 +S'Allart van Everdingen' +p241601 +sg225234 +S'etching' +p241602 +sg225236 +S'probably c. 1645/1656' +p241603 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d165.jpg' +p241604 +sg225240 +g27 +sa(dp241605 +g225230 +S'Rock in the Middle of a River' +p241606 +sg225232 +S'Allart van Everdingen' +p241607 +sg225234 +S'etching with engraving' +p241608 +sg225236 +S'probably c. 1645/1656' +p241609 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d166.jpg' +p241610 +sg225240 +g27 +sa(dp241611 +g225230 +S'Rock in the Middle of a River' +p241612 +sg225232 +S'Allart van Everdingen' +p241613 +sg225234 +S'etching with engraving and drypoint' +p241614 +sg225236 +S'probably c. 1645/1656' +p241615 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d167.jpg' +p241616 +sg225240 +g27 +sa(dp241617 +g225230 +S'Three Cottages on a Rock' +p241618 +sg225232 +S'Allart van Everdingen' +p241619 +sg225234 +S'etching with engraving' +p241620 +sg225236 +S'probably c. 1645/1656' +p241621 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d15c.jpg' +p241622 +sg225240 +g27 +sa(dp241623 +g225230 +S'Three Cottages on a Rock' +p241624 +sg225232 +S'Allart van Everdingen' +p241625 +sg225234 +S'etching with engraving and drypoint' +p241626 +sg225236 +S'probably c. 1645/1656' +p241627 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d15d.jpg' +p241628 +sg225240 +g27 +sa(dp241629 +g225230 +S'Swine Herd near a Chapel' +p241630 +sg225232 +S'Allart van Everdingen' +p241631 +sg225234 +S'etching' +p241632 +sg225236 +S'probably c. 1645/1656' +p241633 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d15f.jpg' +p241634 +sg225240 +g27 +sa(dp241635 +g225230 +S'Swine Herd near a Chapel' +p241636 +sg225232 +S'Allart van Everdingen' +p241637 +sg225234 +S'etching' +p241638 +sg225236 +S'probably c. 1645/1656' +p241639 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d15b.jpg' +p241640 +sg225240 +g27 +sa(dp241641 +g225230 +S'River at the Foot of a High Rock' +p241642 +sg225232 +S'Allart van Everdingen' +p241643 +sg225234 +S'etching' +p241644 +sg225236 +S'probably c. 1645/1656' +p241645 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d171.jpg' +p241646 +sg225240 +g27 +sa(dp241647 +g225230 +S'River at the Foot of a High Rock' +p241648 +sg225232 +S'Allart van Everdingen' +p241649 +sg225234 +S'etching' +p241650 +sg225236 +S'probably c. 1645/1656' +p241651 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d170.jpg' +p241652 +sg225240 +g27 +sa(dp241653 +g225230 +S'The Cudgel Dam and Covered Bridge' +p241654 +sg225232 +S'Allart van Everdingen' +p241655 +sg225234 +S'etching' +p241656 +sg225236 +S'probably c. 1645/1656' +p241657 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d172.jpg' +p241658 +sg225240 +g27 +sa(dp241659 +g225230 +S'The Cudgel Dam and Covered Bridge' +p241660 +sg225232 +S'Allart van Everdingen' +p241661 +sg225234 +S'etching with engraving' +p241662 +sg225236 +S'probably c. 1645/1656' +p241663 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d173.jpg' +p241664 +sg225240 +g27 +sa(dp241665 +g225230 +S'Two Men on a Hill' +p241666 +sg225232 +S'Allart van Everdingen' +p241667 +sg225234 +S'etching' +p241668 +sg225236 +S'probably c. 1645/1656' +p241669 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d174.jpg' +p241670 +sg225240 +g27 +sa(dp241671 +g225230 +S'Two Men on a Hill' +p241672 +sg225232 +S'Allart van Everdingen' +p241673 +sg225234 +S'etching' +p241674 +sg225236 +S'probably c. 1645/1656' +p241675 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d16b.jpg' +p241676 +sg225240 +g27 +sa(dp241677 +g225230 +S'View through a Pierced Rock' +p241678 +sg225232 +S'Allart van Everdingen' +p241679 +sg225234 +S'etching' +p241680 +sg225236 +S'probably c. 1645/1656' +p241681 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d175.jpg' +p241682 +sg225240 +g27 +sa(dp241683 +g225230 +S'View through a Pierced Rock' +p241684 +sg225232 +S'Allart van Everdingen' +p241685 +sg225234 +S'etching' +p241686 +sg225236 +S'probably c. 1645/1656' +p241687 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d16c.jpg' +p241688 +sg225240 +g27 +sa(dp241689 +g225230 +S'Two Men in the Doorway of a Hut' +p241690 +sg225232 +S'Allart van Everdingen' +p241691 +sg225234 +S'etching' +p241692 +sg225236 +S'probably c. 1645/1656' +p241693 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d16d.jpg' +p241694 +sg225240 +g27 +sa(dp241695 +g225230 +S'Two Men in the Doorway of a Hut' +p241696 +sg225232 +S'Allart van Everdingen' +p241697 +sg225234 +S'etching' +p241698 +sg225236 +S'probably c. 1645/1656' +p241699 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d16e.jpg' +p241700 +sg225240 +g27 +sa(dp241701 +g225230 +S'Two Men in the Doorway of a Hut' +p241702 +sg225232 +S'Allart van Everdingen' +p241703 +sg225234 +S'etching' +p241704 +sg225236 +S'probably c. 1645/1656' +p241705 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d16f.jpg' +p241706 +sg225240 +g27 +sa(dp241707 +g225230 +S'The Carpenter' +p241708 +sg225232 +S'Allart van Everdingen' +p241709 +sg225234 +S'etching' +p241710 +sg225236 +S'probably c. 1645/1656' +p241711 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d176.jpg' +p241712 +sg225240 +g27 +sa(dp241713 +g225230 +S'The Carpenter' +p241714 +sg225232 +S'Allart van Everdingen' +p241715 +sg225234 +S'etching' +p241716 +sg225236 +S'probably c. 1645/1656' +p241717 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d177.jpg' +p241718 +sg225240 +g27 +sa(dp241719 +g225230 +S'Horseman on a Bridge' +p241720 +sg225232 +S'Allart van Everdingen' +p241721 +sg225234 +S'etching' +p241722 +sg225236 +S'probably c. 1645/1656' +p241723 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d178.jpg' +p241724 +sg225240 +g27 +sa(dp241725 +g225230 +S'Horseman on a Bridge' +p241726 +sg225232 +S'Allart van Everdingen' +p241727 +sg225234 +S'etching' +p241728 +sg225236 +S'probably c. 1645/1656' +p241729 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d179.jpg' +p241730 +sg225240 +g27 +sa(dp241731 +g225230 +S'Goat on a small Bridge' +p241732 +sg225232 +S'Allart van Everdingen' +p241733 +sg225234 +S'etching' +p241734 +sg225236 +S'probably c. 1645/1656' +p241735 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d17b.jpg' +p241736 +sg225240 +g27 +sa(dp241737 +g225230 +S'Goat on a small Bridge' +p241738 +sg225232 +S'Allart van Everdingen' +p241739 +sg225234 +S'etching with engraving' +p241740 +sg225236 +S'probably c. 1645/1656' +p241741 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d17a.jpg' +p241742 +sg225240 +g27 +sa(dp241743 +g225230 +S'Boat at a River Bank with Three Goats' +p241744 +sg225232 +S'Allart van Everdingen' +p241745 +sg225234 +S'etching' +p241746 +sg225236 +S'probably c. 1645/1656' +p241747 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d17d.jpg' +p241748 +sg225240 +g27 +sa(dp241749 +g225230 +S'Boat at a River Bank with Three Goats' +p241750 +sg225232 +S'Allart van Everdingen' +p241751 +sg225234 +S'etching with engraving' +p241752 +sg225236 +S'probably c. 1645/1656' +p241753 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d17c.jpg' +p241754 +sg225240 +g27 +sa(dp241755 +g225230 +S'Man on a Small Wooden Bridge' +p241756 +sg225232 +S'Allart van Everdingen' +p241757 +sg225234 +S'etching' +p241758 +sg225236 +S'probably c. 1645/1656' +p241759 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d184.jpg' +p241760 +sg225240 +g27 +sa(dp241761 +g225230 +S'Man on a Small Wooden Bridge' +p241762 +sg225232 +S'Allart van Everdingen' +p241763 +sg225234 +S'etching' +p241764 +sg225236 +S'probably c. 1645/1656' +p241765 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d183.jpg' +p241766 +sg225240 +g27 +sa(dp241767 +g225230 +S'Two Men Seated at the Foot of a High Rock' +p241768 +sg225232 +S'Allart van Everdingen' +p241769 +sg225234 +S'etching' +p241770 +sg225236 +S'probably c. 1645/1656' +p241771 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d182.jpg' +p241772 +sg225240 +g27 +sa(dp241773 +g225230 +S'Two Men Seated at the Foot of a High Rock' +p241774 +sg225232 +S'Allart van Everdingen' +p241775 +sg225234 +S'etching' +p241776 +sg225236 +S'probably c. 1645/1656' +p241777 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d181.jpg' +p241778 +sg225240 +g27 +sa(dp241779 +g225230 +S'Two Men Seated at the Foot of a High Rock' +p241780 +sg225232 +S'Allart van Everdingen' +p241781 +sg225234 +S'etching' +p241782 +sg225236 +S'probably c. 1645/1656' +p241783 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d180.jpg' +p241784 +sg225240 +g27 +sa(dp241785 +g225230 +S'The Inscription on the Rock' +p241786 +sg225232 +S'Allart van Everdingen' +p241787 +sg225234 +S'etching' +p241788 +sg225236 +S'probably c. 1645/1656' +p241789 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d17f.jpg' +p241790 +sg225240 +g27 +sa(dp241791 +g225230 +S'The Inscription on the Rock' +p241792 +sg225232 +S'Allart van Everdingen' +p241793 +sg225234 +S'etching' +p241794 +sg225236 +S'probably c. 1645/1656' +p241795 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d17e.jpg' +p241796 +sg225240 +g27 +sa(dp241797 +g225230 +S'Two Logs in the Water' +p241798 +sg225232 +S'Allart van Everdingen' +p241799 +sg225234 +S'etching' +p241800 +sg225236 +S'probably c. 1645/1656' +p241801 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d186.jpg' +p241802 +sg225240 +g27 +sa(dp241803 +g225230 +S'Two Logs in the Water' +p241804 +sg225232 +S'Allart van Everdingen' +p241805 +sg225234 +S'etching with engraving' +p241806 +sg225236 +S'probably c. 1645/1656' +p241807 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d185.jpg' +p241808 +sg225240 +g27 +sa(dp241809 +g225230 +S'Cart in a Narrow Pass' +p241810 +sg225232 +S'Allart van Everdingen' +p241811 +sg225234 +S'etching' +p241812 +sg225236 +S'probably c. 1645/1656' +p241813 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d188.jpg' +p241814 +sg225240 +g27 +sa(dp241815 +g225230 +S'Cart in a Narrow Pass' +p241816 +sg225232 +S'Allart van Everdingen' +p241817 +sg225234 +S'etching' +p241818 +sg225236 +S'probably c. 1645/1656' +p241819 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d187.jpg' +p241820 +sg225240 +g27 +sa(dp241821 +g225230 +S'Cart in a Narrow Pass' +p241822 +sg225232 +S'Allart van Everdingen' +p241823 +sg225234 +S'etching with drypoint and engraving' +p241824 +sg225236 +S'probably c. 1645/1656' +p241825 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d18d.jpg' +p241826 +sg225240 +g27 +sa(dp241827 +g225230 +S'Two Boats on a Wide River' +p241828 +sg225232 +S'Allart van Everdingen' +p241829 +sg225234 +S'etching' +p241830 +sg225236 +S'probably c. 1645/1656' +p241831 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d18c.jpg' +p241832 +sg225240 +g27 +sa(dp241833 +g225230 +S'Two Boats on a Wide River' +p241834 +sg225232 +S'Allart van Everdingen' +p241835 +sg225234 +S'etching' +p241836 +sg225236 +S'probably c. 1645/1656' +p241837 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d18b.jpg' +p241838 +sg225240 +g27 +sa(dp241839 +g225230 +S'Firs in the Defile' +p241840 +sg225232 +S'Allart van Everdingen' +p241841 +sg225234 +S'etching' +p241842 +sg225236 +S'probably c. 1645/1656' +p241843 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d193.jpg' +p241844 +sg225240 +g27 +sa(dp241845 +g225230 +S'Firs in the Defile' +p241846 +sg225232 +S'Allart van Everdingen' +p241847 +sg225234 +S'etching with drypoint' +p241848 +sg225236 +S'probably c. 1645/1656' +p241849 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d18a.jpg' +p241850 +sg225240 +g27 +sa(dp241851 +g225230 +S'Firs in the Defile' +p241852 +sg225232 +S'Allart van Everdingen' +p241853 +sg225234 +S'etching with drypoint' +p241854 +sg225236 +S'probably c. 1645/1656' +p241855 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d194.jpg' +p241856 +sg225240 +g27 +sa(dp241857 +g225230 +S'Two Empty Skiffs' +p241858 +sg225232 +S'Allart van Everdingen' +p241859 +sg225234 +S'etching' +p241860 +sg225236 +S'probably c. 1645/1656' +p241861 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d191.jpg' +p241862 +sg225240 +g27 +sa(dp241863 +g225230 +S'Two Empty Skiffs' +p241864 +sg225232 +S'Allart van Everdingen' +p241865 +sg225234 +S'etching with drypoint and engraving' +p241866 +sg225236 +S'probably c. 1645/1656' +p241867 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d190.jpg' +p241868 +sg225240 +g27 +sa(dp241869 +g225230 +S'Pointed Boulder at the Bank of a River' +p241870 +sg225232 +S'Allart van Everdingen' +p241871 +sg225234 +S'etching' +p241872 +sg225236 +S'probably c. 1645/1656' +p241873 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d18f.jpg' +p241874 +sg225240 +g27 +sa(dp241875 +g225230 +S'Pointed Boulder at the Bank of a River' +p241876 +sg225232 +S'Allart van Everdingen' +p241877 +sg225234 +S'etching with engraving' +p241878 +sg225236 +S'probably c. 1645/1656' +p241879 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d189.jpg' +p241880 +sg225240 +g27 +sa(dp241881 +g225230 +S'Water Mill at the Foot of a Mountain' +p241882 +sg225232 +S'Allart van Everdingen' +p241883 +sg225234 +S'etching' +p241884 +sg225236 +S'probably c. 1645/1656' +p241885 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d195.jpg' +p241886 +sg225240 +g27 +sa(dp241887 +g225230 +S'Water Mill at the Foot of a Mountain' +p241888 +sg225232 +S'Allart van Everdingen' +p241889 +sg225234 +S'etching with engraving and drypoint' +p241890 +sg225236 +S'probably c. 1645/1656' +p241891 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d196.jpg' +p241892 +sg225240 +g27 +sa(dp241893 +g225230 +S'Skiff under a Cleft Rock' +p241894 +sg225232 +S'Allart van Everdingen' +p241895 +sg225234 +S'etching with drypoint' +p241896 +sg225236 +S'probably c. 1645/1656' +p241897 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d197.jpg' +p241898 +sg225240 +g27 +sa(dp241899 +g225230 +S'Two Horsemen on a Rocky Path' +p241900 +sg225232 +S'Allart van Everdingen' +p241901 +sg225234 +S'etching' +p241902 +sg225236 +S'probably c. 1645/1656' +p241903 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1a4.jpg' +p241904 +sg225240 +g27 +sa(dp241905 +g225230 +S'Two Horsemen on a Rocky Path' +p241906 +sg225232 +S'Allart van Everdingen' +p241907 +sg225234 +S'etching with drypoint' +p241908 +sg225236 +S'probably c. 1645/1656' +p241909 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1a5.jpg' +p241910 +sg225240 +g27 +sa(dp241911 +g225230 +S'Fir Trees at the Water' +p241912 +sg225232 +S'Allart van Everdingen' +p241913 +sg225234 +S'etching' +p241914 +sg225236 +S'probably c. 1645/1656' +p241915 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1a3.jpg' +p241916 +sg225240 +g27 +sa(dp241917 +g225230 +S'Fir Trees at the Water' +p241918 +sg225232 +S'Allart van Everdingen' +p241919 +sg225234 +S'etching' +p241920 +sg225236 +S'probably c. 1645/1656' +p241921 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d199.jpg' +p241922 +sg225240 +g27 +sa(dp241923 +g225230 +S'Peasant on Horseback' +p241924 +sg225232 +S'Allart van Everdingen' +p241925 +sg225234 +S'etching' +p241926 +sg225236 +S'probably c. 1645/1656' +p241927 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d19a.jpg' +p241928 +sg225240 +g27 +sa(dp241929 +g225230 +S'Peasant on Horseback' +p241930 +sg225232 +S'Allart van Everdingen' +p241931 +sg225234 +S'etching' +p241932 +sg225236 +S'probably c. 1645/1656' +p241933 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d19b.jpg' +p241934 +sg225240 +g27 +sa(dp241935 +g225230 +S'Peasant on Horseback' +p241936 +sg225232 +S'Allart van Everdingen' +p241937 +sg225234 +S'etching' +p241938 +sg225236 +S'probably c. 1645/1656' +p241939 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1a7.jpg' +p241940 +sg225240 +g27 +sa(dp241941 +g225230 +S'Three Travelers at the Foot of a High Rock' +p241942 +sg225232 +S'Allart van Everdingen' +p241943 +sg225234 +S'etching' +p241944 +sg225236 +S'probably c. 1645/1656' +p241945 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d19c.jpg' +p241946 +sg225240 +g27 +sa(dp241947 +g225230 +S'Three Travelers at the Foot of a High Rock' +p241948 +sg225232 +S'Allart van Everdingen' +p241949 +sg225234 +S'etching' +p241950 +sg225236 +S'probably c. 1645/1656' +p241951 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1a8.jpg' +p241952 +sg225240 +g27 +sa(dp241953 +g225230 +S'Two Peasants Seated on a Hill' +p241954 +sg225232 +S'Allart van Everdingen' +p241955 +sg225234 +S'etching' +p241956 +sg225236 +S'probably c. 1645/1656' +p241957 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d19d.jpg' +p241958 +sg225240 +g27 +sa(dp241959 +g225230 +S'Two Peasants Seated on a Hill' +p241960 +sg225232 +S'Allart van Everdingen' +p241961 +sg225234 +S'etching' +p241962 +sg225236 +S'probably c. 1645/1656' +p241963 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d19e.jpg' +p241964 +sg225240 +g27 +sa(dp241965 +g225230 +S'Cart with Two Draft Horses' +p241966 +sg225232 +S'Allart van Everdingen' +p241967 +sg225234 +S'etching' +p241968 +sg225236 +S'probably c. 1645/1656' +p241969 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d19f.jpg' +p241970 +sg225240 +g27 +sa(dp241971 +g225230 +S'Cart with Two Draft Horses' +p241972 +sg225232 +S'Allart van Everdingen' +p241973 +sg225234 +S'etching' +p241974 +sg225236 +S'probably c. 1645/1656' +p241975 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1a0.jpg' +p241976 +sg225240 +g27 +sa(dp241977 +g225230 +S'The Pointed Rock' +p241978 +sg225232 +S'Allart van Everdingen' +p241979 +sg225234 +S'etching' +p241980 +sg225236 +S'probably c. 1645/1656' +p241981 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d198.jpg' +p241982 +sg225240 +g27 +sa(dp241983 +g225230 +S'The Pointed Rock' +p241984 +sg225232 +S'Allart van Everdingen' +p241985 +sg225234 +S'etching' +p241986 +sg225236 +S'probably c. 1645/1656' +p241987 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1a1.jpg' +p241988 +sg225240 +g27 +sa(dp241989 +g225230 +S'Ruinous Cottage' +p241990 +sg225232 +S'Allart van Everdingen' +p241991 +sg225234 +S'etching' +p241992 +sg225236 +S'probably c. 1645/1656' +p241993 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1b9.jpg' +p241994 +sg225240 +g27 +sa(dp241995 +g225230 +S'Mill below a Waterfall' +p241996 +sg225232 +S'Allart van Everdingen' +p241997 +sg225234 +S'etching' +p241998 +sg225236 +S'probably c. 1645/1656' +p241999 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1b5.jpg' +p242000 +sg225240 +g27 +sa(dp242001 +g225230 +S'Mill below a Waterfall' +p242002 +sg225232 +S'Allart van Everdingen' +p242003 +sg225234 +S'etching' +p242004 +sg225236 +S'probably c. 1645/1656' +p242005 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1b6.jpg' +p242006 +sg225240 +g27 +sa(dp242007 +g225230 +S'Branch in the Water' +p242008 +sg225232 +S'Allart van Everdingen' +p242009 +sg225234 +S'etching with engraving' +p242010 +sg225236 +S'probably c. 1645/1656' +p242011 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1b7.jpg' +p242012 +sg225240 +g27 +sa(dp242013 +g225230 +S'Peasant with His Dog' +p242014 +sg225232 +S'Allart van Everdingen' +p242015 +sg225234 +S'etching' +p242016 +sg225236 +S'probably c. 1645/1656' +p242017 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1b8.jpg' +p242018 +sg225240 +g27 +sa(dp242019 +g225230 +S'The Steeple' +p242020 +sg225232 +S'Allart van Everdingen' +p242021 +sg225234 +S'etching' +p242022 +sg225236 +S'probably c. 1645/1656' +p242023 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1aa.jpg' +p242024 +sg225240 +g27 +sa(dp242025 +g225230 +S'The Steeple' +p242026 +sg225232 +S'Allart van Everdingen' +p242027 +sg225234 +S'etching' +p242028 +sg225236 +S'probably c. 1645/1656' +p242029 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1ab.jpg' +p242030 +sg225240 +g27 +sa(dp242031 +g225230 +S'Two Carts' +p242032 +sg225232 +S'Allart van Everdingen' +p242033 +sg225234 +S'etching' +p242034 +sg225236 +S'probably c. 1645/1656' +p242035 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1ac.jpg' +p242036 +sg225240 +g27 +sa(dp242037 +g225230 +S'Two Carts' +p242038 +sg225232 +S'Allart van Everdingen' +p242039 +sg225234 +S'etching with engraving' +p242040 +sg225236 +S'probably c. 1645/1656' +p242041 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1ae.jpg' +p242042 +sg225240 +g27 +sa(dp242043 +g225230 +S'Three Porters' +p242044 +sg225232 +S'Allart van Everdingen' +p242045 +sg225234 +S'etching' +p242046 +sg225236 +S'probably c. 1645/1656' +p242047 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1af.jpg' +p242048 +sg225240 +g27 +sa(dp242049 +g225230 +S'Skiff at a River Bank' +p242050 +sg225232 +S'Allart van Everdingen' +p242051 +sg225234 +S'etching with engraving and drypoint' +p242052 +sg225236 +S'probably c. 1645/1656' +p242053 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1b1.jpg' +p242054 +sg225240 +g27 +sa(dp242055 +g225230 +S'A Thick Forest' +p242056 +sg225232 +S'Allart van Everdingen' +p242057 +sg225234 +S'etching' +p242058 +sg225236 +S'probably c. 1645/1656' +p242059 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1b2.jpg' +p242060 +sg225240 +g27 +sa(dp242061 +g225230 +S'A Thick Forest' +p242062 +sg225232 +S'Allart van Everdingen' +p242063 +sg225234 +S'etching with engraving' +p242064 +sg225236 +S'probably c. 1645/1656' +p242065 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1a9.jpg' +p242066 +sg225240 +g27 +sa(dp242067 +g225230 +S'Cottage with Two Ladders' +p242068 +sg225232 +S'Allart van Everdingen' +p242069 +sg225234 +S'etching' +p242070 +sg225236 +S'probably c. 1645/1656' +p242071 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1bc.jpg' +p242072 +sg225240 +g27 +sa(dp242073 +g225230 +S'Cottage with Two Ladders' +p242074 +sg225232 +S'Allart van Everdingen' +p242075 +sg225234 +S'etching with engraving' +p242076 +sg225236 +S'probably c. 1645/1656' +p242077 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1be.jpg' +p242078 +sg225240 +g27 +sa(dp242079 +g225230 +S'Nocturnal Landscape with Horse and Church Spire' +p242080 +sg225232 +S'Allart van Everdingen' +p242081 +sg225234 +S'mezzotint and drypoint' +p242082 +sg225236 +S'probably c. 1660' +p242083 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1bf.jpg' +p242084 +sg225240 +g27 +sa(dp242085 +g225230 +S'Three Cottages' +p242086 +sg225232 +S'Allart van Everdingen' +p242087 +sg225234 +S'etching' +p242088 +sg225236 +S'probably c. 1645/1656' +p242089 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1c1.jpg' +p242090 +sg225240 +g27 +sa(dp242091 +g225230 +S'Man between Two Fir Trees' +p242092 +sg225232 +S'Allart van Everdingen' +p242093 +sg225234 +S'etching' +p242094 +sg225236 +S'probably c. 1645/1656' +p242095 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1c4.jpg' +p242096 +sg225240 +g27 +sa(dp242097 +g225230 +S'Man between Two Fir Trees' +p242098 +sg225232 +S'Allart van Everdingen' +p242099 +sg225234 +S'etching with drypoint' +p242100 +sg225236 +S'probably c. 1645/1656' +p242101 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1c5.jpg' +p242102 +sg225240 +g27 +sa(dp242103 +g225230 +S'Boulder in the Woods' +p242104 +sg225232 +S'Allart van Everdingen' +p242105 +sg225234 +S'etching' +p242106 +sg225236 +S'probably c. 1645/1656' +p242107 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1ba.jpg' +p242108 +sg225240 +g27 +sa(dp242109 +g225230 +S'Reynard Seated Atop the Ass' +p242110 +sg225232 +S'Allart van Everdingen' +p242111 +sg225234 +S'etching' +p242112 +sg225236 +S'probably c. 1645/1656' +p242113 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1c7.jpg' +p242114 +sg225240 +g27 +sa(dp242115 +g225230 +S'The Lion Announces a Peace' +p242116 +sg225232 +S'Allart van Everdingen' +p242117 +sg225234 +S'etching' +p242118 +sg225236 +S'probably c. 1645/1656' +p242119 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1c8.jpg' +p242120 +sg225240 +g27 +sa(dp242121 +g225230 +S'Reynard Accused' +p242122 +sg225232 +S'Allart van Everdingen' +p242123 +sg225234 +S'etching' +p242124 +sg225236 +S'probably c. 1645/1656' +p242125 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1c9.jpg' +p242126 +sg225240 +g27 +sa(dp242127 +g225230 +S'Reynard and the Wolf before the Fish Cart' +p242128 +sg225232 +S'Allart van Everdingen' +p242129 +sg225234 +S'etching' +p242130 +sg225236 +S'probably c. 1645/1656' +p242131 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1ca.jpg' +p242132 +sg225240 +g27 +sa(dp242133 +g225230 +S'The Rooster Charges Reynard' +p242134 +sg225232 +S'Allart van Everdingen' +p242135 +sg225234 +S'etching' +p242136 +sg225236 +S'probably c. 1645/1656' +p242137 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1cb.jpg' +p242138 +sg225240 +g27 +sa(dp242139 +g225230 +S'Reynard Disguised as a Monk' +p242140 +sg225232 +S'Allart van Everdingen' +p242141 +sg225234 +S'etching' +p242142 +sg225236 +S'probably c. 1645/1656' +p242143 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1cc.jpg' +p242144 +sg225240 +g27 +sa(dp242145 +g225230 +S'The Lion Seeks Advice' +p242146 +sg225232 +S'Allart van Everdingen' +p242147 +sg225234 +S'etching' +p242148 +sg225236 +S'probably c. 1645/1656' +p242149 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1cd.jpg' +p242150 +sg225240 +g27 +sa(dp242151 +g225230 +S'The Bear Sent as Messenger' +p242152 +sg225232 +S'Allart van Everdingen' +p242153 +sg225234 +S'etching' +p242154 +sg225236 +S'probably c. 1645/1656' +p242155 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1ce.jpg' +p242156 +sg225240 +g27 +sa(dp242157 +g225230 +S'The Bear Distracted with Talk of Honey' +p242158 +sg225232 +S'Allart van Everdingen' +p242159 +sg225234 +S'etching' +p242160 +sg225236 +S'probably c. 1645/1656' +p242161 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1cf.jpg' +p242162 +sg225240 +g27 +sa(dp242163 +g225230 +S'The Bear Trapped' +p242164 +sg225232 +S'Allart van Everdingen' +p242165 +sg225234 +S'etching' +p242166 +sg225236 +S'probably c. 1645/1656' +p242167 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1d0.jpg' +p242168 +sg225240 +g27 +sa(dp242169 +g225230 +S'The Bear Assaulted by the Peasants' +p242170 +sg225232 +S'Allart van Everdingen' +p242171 +sg225234 +S'etching' +p242172 +sg225236 +S'probably c. 1645/1656' +p242173 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1d1.jpg' +p242174 +sg225240 +g27 +sa(dp242175 +g225230 +S'Reynard Mocks the Woeful Bear' +p242176 +sg225232 +S'Allart van Everdingen' +p242177 +sg225234 +S'etching' +p242178 +sg225236 +S'probably c. 1645/1656' +p242179 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1d2.jpg' +p242180 +sg225240 +g27 +sa(dp242181 +g225230 +S'The Bear Beseeches the Lion for Justice' +p242182 +sg225232 +S'Allart van Everdingen' +p242183 +sg225234 +S'etching' +p242184 +sg225236 +S'probably c. 1645/1656' +p242185 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1d3.jpg' +p242186 +sg225240 +g27 +sa(dp242187 +g225230 +S'The Cat Sent as Messenger' +p242188 +sg225232 +S'Allart van Everdingen' +p242189 +sg225234 +S'etching' +p242190 +sg225236 +S'probably c. 1645/1656' +p242191 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1d8.jpg' +p242192 +sg225240 +g27 +sa(dp242193 +g225230 +S'The Cat Enters the Barn as Reynard Looks On' +p242194 +sg225232 +S'Allart van Everdingen' +p242195 +sg225234 +S'etching' +p242196 +sg225236 +S'probably c. 1645/1656' +p242197 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1d7.jpg' +p242198 +sg225240 +g27 +sa(dp242199 +g225230 +S'The Cat Trapped and Beaten' +p242200 +sg225232 +S'Allart van Everdingen' +p242201 +sg225234 +S'etching' +p242202 +sg225236 +S'probably c. 1645/1656' +p242203 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1d6.jpg' +p242204 +sg225240 +g27 +sa(dp242205 +g225230 +S'The Badger Sent as Messenger' +p242206 +sg225232 +S'Allart van Everdingen' +p242207 +sg225234 +S'etching' +p242208 +sg225236 +S'probably c. 1645/1656' +p242209 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1e0.jpg' +p242210 +sg225240 +g27 +sa(dp242211 +g225230 +S'Reynard Departs with the Badger' +p242212 +sg225232 +S'Allart van Everdingen' +p242213 +sg225234 +S'etching' +p242214 +sg225236 +S'probably c. 1645/1656' +p242215 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1df.jpg' +p242216 +sg225240 +g27 +sa(dp242217 +g225230 +S'The Wolf and the Convent Bell' +p242218 +sg225232 +S'Allart van Everdingen' +p242219 +sg225234 +S'etching' +p242220 +sg225236 +S'probably c. 1645/1656' +p242221 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1d5.jpg' +p242222 +sg225240 +g27 +sa(dp242223 +g225230 +S'Reynard Steals a Capon from the Pastor' +p242224 +sg225232 +S'Allart van Everdingen' +p242225 +sg225234 +S'etching' +p242226 +sg225236 +S'probably c. 1645/1656' +p242227 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1d4.jpg' +p242228 +sg225240 +g27 +sa(dp242229 +g225230 +S'The Badger Imposes a Penance on Reynard' +p242230 +sg225232 +S'Allart van Everdingen' +p242231 +sg225234 +S'etching' +p242232 +sg225236 +S'probably c. 1645/1656' +p242233 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1de.jpg' +p242234 +sg225240 +g27 +sa(dp242235 +g225230 +S'Reynard Attempts to Pilfer a Rooster' +p242236 +sg225232 +S'Allart van Everdingen' +p242237 +sg225234 +S'etching' +p242238 +sg225236 +S'probably c. 1645/1656' +p242239 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1dd.jpg' +p242240 +sg225240 +g27 +sa(dp242241 +g225230 +S'The Animals Present Their Charges Against Reynard' +p242242 +sg225232 +S'Allart van Everdingen' +p242243 +sg225234 +S'etching' +p242244 +sg225236 +S'probably c. 1645/1656' +p242245 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1dc.jpg' +p242246 +sg225240 +g27 +sa(dp242247 +g225230 +S'Reynard Condemned' +p242248 +sg225232 +S'Allart van Everdingen' +p242249 +sg225234 +S'etching' +p242250 +sg225236 +S'probably c. 1645/1656' +p242251 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1db.jpg' +p242252 +sg225240 +g27 +sa(dp242253 +g225230 +S"Reynard's Relatives Plead for Him" +p242254 +sg225232 +S'Allart van Everdingen' +p242255 +sg225234 +S'etching' +p242256 +sg225236 +S'probably c. 1645/1656' +p242257 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1da.jpg' +p242258 +sg225240 +g27 +sa(dp242259 +g225230 +S'Reynard Asks Permission to Speak' +p242260 +sg225232 +S'Allart van Everdingen' +p242261 +sg225234 +S'etching' +p242262 +sg225236 +S'probably c. 1645/1656' +p242263 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1d9.jpg' +p242264 +sg225240 +g27 +sa(dp242265 +g225230 +S'Reynard is Released to Tell His Story' +p242266 +sg225232 +S'Allart van Everdingen' +p242267 +sg225234 +S'etching' +p242268 +sg225236 +S'probably c. 1645/1656' +p242269 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1ee.jpg' +p242270 +sg225240 +g27 +sa(dp242271 +g225230 +S'Reynard Winds His Tale and Wrongs His Father' +p242272 +sg225232 +S'Allart van Everdingen' +p242273 +sg225234 +S'etching' +p242274 +sg225236 +S'probably c. 1645/1656' +p242275 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1ed.jpg' +p242276 +sg225240 +g27 +sa(dp242277 +g225230 +S'Reynard in Council with the Lion and Lioness' +p242278 +sg225232 +S'Allart van Everdingen' +p242279 +sg225234 +S'etching' +p242280 +sg225236 +S'probably c. 1645/1656' +p242281 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1ec.jpg' +p242282 +sg225240 +g27 +sa(dp242283 +g225230 +S'Reynard Tells a Story of Hidden Treasure' +p242284 +sg225232 +S'Allart van Everdingen' +p242285 +sg225234 +S'etching' +p242286 +sg225236 +S'probably c. 1645/1656' +p242287 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1eb.jpg' +p242288 +sg225240 +g27 +sa(dp242289 +g225230 +S'Reynard Promises to Reveal the Hidden Treasure' +p242290 +sg225232 +S'Allart van Everdingen' +p242291 +sg225234 +S'etching' +p242292 +sg225236 +S'probably c. 1645/1656' +p242293 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1e2.jpg' +p242294 +sg225240 +g27 +sa(dp242295 +g225230 +S'The Lion Pardons Reynard before the Other Animals' +p242296 +sg225232 +S'Allart van Everdingen' +p242297 +sg225234 +S'etching' +p242298 +sg225236 +S'probably c. 1645/1656' +p242299 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1ea.jpg' +p242300 +sg225240 +g27 +sa(dp242301 +g225230 +S"Reynard's Enemies are Dismayed" +p242302 +sg225232 +S'Allart van Everdingen' +p242303 +sg225234 +S'etching' +p242304 +sg225236 +S'probably c. 1645/1656' +p242305 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1e9.jpg' +p242306 +sg225240 +g27 +sa(dp242307 +g225230 +S'The Bear and the Wolf are Persecuted' +p242308 +sg225232 +S'Allart van Everdingen' +p242309 +sg225234 +S'etching' +p242310 +sg225236 +S'probably c. 1645/1656' +p242311 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1e8.jpg' +p242312 +sg225240 +g27 +sa(dp242313 +g225230 +S'The Ram Blesses Reynard' +p242314 +sg225232 +S'Allart van Everdingen' +p242315 +sg225234 +S'etching' +p242316 +sg225236 +S'probably c. 1645/1656' +p242317 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1e7.jpg' +p242318 +sg225240 +g27 +sa(dp242319 +g225230 +S'Reynard Returns Home, Accompanied by the Ram and the Rabbit' +p242320 +sg225232 +S'Allart van Everdingen' +p242321 +sg225234 +S'etching' +p242322 +sg225236 +S'probably c. 1645/1656' +p242323 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1e1.jpg' +p242324 +sg225240 +g27 +sa(dp242325 +g225230 +S'Reynard Asks the Ram to Deliver a Document' +p242326 +sg225232 +S'Allart van Everdingen' +p242327 +sg225234 +S'etching' +p242328 +sg225236 +S'probably c. 1645/1656' +p242329 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1e5.jpg' +p242330 +sg225240 +g27 +sa(dp242331 +g225230 +S"The Document is Opened, Revealing the Murdered Rabbit's Head" +p242332 +sg225232 +S'Allart van Everdingen' +p242333 +sg225234 +S'etching' +p242334 +sg225236 +S'probably c. 1645/1656' +p242335 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1e6.jpg' +p242336 +sg225240 +g27 +sa(dp242337 +g225230 +S'The Lion Frees the Bear and the Wolf' +p242338 +sg225232 +S'Allart van Everdingen' +p242339 +sg225234 +S'etching' +p242340 +sg225236 +S'probably c. 1645/1656' +p242341 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1e4.jpg' +p242342 +sg225240 +g27 +sa(dp242343 +g225230 +S'All Rejoice for the Bear and the Wolf' +p242344 +sg225232 +S'Allart van Everdingen' +p242345 +sg225234 +S'etching' +p242346 +sg225236 +S'probably c. 1645/1656' +p242347 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1e3.jpg' +p242348 +sg225240 +g27 +sa(dp242349 +g225230 +S'Reynard and the Crows' +p242350 +sg225232 +S'Allart van Everdingen' +p242351 +sg225234 +S'etching' +p242352 +sg225236 +S'probably c. 1645/1656' +p242353 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1ef.jpg' +p242354 +sg225240 +g27 +sa(dp242355 +g225230 +S'The Lion Orders a Mass Assault on Reynard' +p242356 +sg225232 +S'Allart van Everdingen' +p242357 +sg225234 +S'etching' +p242358 +sg225236 +S'probably c. 1645/1656' +p242359 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1f0.jpg' +p242360 +sg225240 +g27 +sa(dp242361 +g225230 +S'The Badger Goes to Warn Reynard' +p242362 +sg225232 +S'Allart van Everdingen' +p242363 +sg225234 +S'etching' +p242364 +sg225236 +S'probably c. 1645/1656' +p242365 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1f1.jpg' +p242366 +sg225240 +g27 +sa(dp242367 +g225230 +S'The Mare and the Wolf' +p242368 +sg225232 +S'Allart van Everdingen' +p242369 +sg225234 +S'etching' +p242370 +sg225236 +S'probably c. 1645/1656' +p242371 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1f2.jpg' +p242372 +sg225240 +g27 +sa(dp242373 +g225230 +S'Reynard Attempts to Clear Himself' +p242374 +sg225232 +S'Allart van Everdingen' +p242375 +sg225234 +S'etching' +p242376 +sg225236 +S'probably c. 1645/1656' +p242377 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1f3.jpg' +p242378 +sg225240 +g27 +sa(dp242379 +g225230 +S'Reynard and the Rabbit' +p242380 +sg225232 +S'Allart van Everdingen' +p242381 +sg225234 +S'etching' +p242382 +sg225236 +S'probably c. 1645/1656' +p242383 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1f4.jpg' +p242384 +sg225240 +g27 +sa(dp242385 +g225230 +S'Reynard Describes the Missing Treasures' +p242386 +sg225232 +S'Allart van Everdingen' +p242387 +sg225234 +S'etching' +p242388 +sg225236 +S'probably c. 1645/1656' +p242389 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1f5.jpg' +p242390 +sg225240 +g27 +sa(dp242391 +g225230 +S'The Horse and the Stag' +p242392 +sg225232 +S'Allart van Everdingen' +p242393 +sg225234 +S'etching' +p242394 +sg225236 +S'probably c. 1645/1656' +p242395 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1f6.jpg' +p242396 +sg225240 +g27 +sa(dp242397 +g225230 +S'The Horse Forced to Pursue the Stag' +p242398 +sg225232 +S'Allart van Everdingen' +p242399 +sg225234 +S'etching' +p242400 +sg225236 +S'probably c. 1645/1656' +p242401 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1f7.jpg' +p242402 +sg225240 +g27 +sa(dp242403 +g225230 +S'The Ass and the Hound' +p242404 +sg225232 +S'Allart van Everdingen' +p242405 +sg225234 +S'etching' +p242406 +sg225236 +S'probably c. 1645/1656' +p242407 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1f8.jpg' +p242408 +sg225240 +g27 +sa(dp242409 +g225230 +S"Reynard's Father and the Cat Pursued by Hounds" +p242410 +sg225232 +S'Allart van Everdingen' +p242411 +sg225234 +S'etching' +p242412 +sg225236 +S'probably c. 1645/1656' +p242413 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1f9.jpg' +p242414 +sg225240 +g27 +sa(dp242415 +g225230 +S'The Wolf and the Crane' +p242416 +sg225232 +S'Allart van Everdingen' +p242417 +sg225234 +S'etching' +p242418 +sg225236 +S'probably c. 1645/1656' +p242419 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1fa.jpg' +p242420 +sg225240 +g27 +sa(dp242421 +g225230 +S'The Wolves on the Ice' +p242422 +sg225232 +S'Allart van Everdingen' +p242423 +sg225234 +S'etching' +p242424 +sg225236 +S'probably c. 1645/1656' +p242425 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1fb.jpg' +p242426 +sg225240 +g27 +sa(dp242427 +g225230 +S'The Wolf and the Well' +p242428 +sg225232 +S'Allart van Everdingen' +p242429 +sg225234 +S'etching' +p242430 +sg225236 +S'probably c. 1645/1656' +p242431 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1fc.jpg' +p242432 +sg225240 +g27 +sa(dp242433 +g225230 +S'The Wolf and the Monkeys' +p242434 +sg225232 +S'Allart van Everdingen' +p242435 +sg225234 +S'etching' +p242436 +sg225236 +S'probably c. 1645/1656' +p242437 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1fd.jpg' +p242438 +sg225240 +g27 +sa(dp242439 +g225230 +S'Reynard Blinds the Wolf in One Eye' +p242440 +sg225232 +S'Allart van Everdingen' +p242441 +sg225234 +S'etching' +p242442 +sg225236 +S'probably c. 1645/1656' +p242443 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1fe.jpg' +p242444 +sg225240 +g27 +sa(dp242445 +g225230 +S'The Triumph of Reynard' +p242446 +sg225232 +S'Allart van Everdingen' +p242447 +sg225234 +S'etching' +p242448 +sg225236 +S'probably c. 1645/1656' +p242449 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1ff.jpg' +p242450 +sg225240 +g27 +sa(dp242451 +g225230 +S'View of the Tiber near Perugia' +p242452 +sg225232 +S'George Inness' +p242453 +sg225234 +S'oil on canvas' +p242454 +sg225236 +S'1872-1874' +p242455 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000113.jpg' +p242456 +sg225240 +g27 +sa(dp242457 +g225232 +S'Henri Matisse' +p242458 +sg225240 +S'During the last fifteen years of his life Matisse developed his final artistic triumph by\n "cutting into color." First, his studio assistants would brush opaque and\n semi-transparent watercolor pigments onto small sheets of white paper. The artist would then cut\n the sheets freehand in bold shapes that would be pinned to the white studio walls, adjusted, recut,\n combined and recombined with other elements. Later, the elements were glued flat to large white\n paper backgrounds for shipping or display.\n Large Composition with Masks\n If the design of \n ' +p242459 +sg225234 +S'paper collage on canvas' +p242460 +sg225230 +S'Large Composition with Masks' +p242461 +sg225236 +S'1953' +p242462 +sa(dp242463 +g225232 +S'Henri Matisse' +p242464 +sg225240 +g27 +sg225234 +S'paper collage on canvas' +p242465 +sg225230 +S'Beasts of the Sea' +p242466 +sg225236 +S'1950' +p242467 +sa(dp242468 +g225232 +S'Henri Matisse' +p242469 +sg225240 +g27 +sg225234 +S'gouache on paper, cut and pasted on white paper, mounted on paper panel' +p242470 +sg225230 +S'Venus' +p242471 +sg225236 +S'1952' +p242472 +sa(dp242473 +g225232 +S'Henri Matisse' +p242474 +sg225240 +g27 +sg225234 +S'paper collage on canvas' +p242475 +sg225230 +S'Woman with Amphora and Pomegranates' +p242476 +sg225236 +S'1953' +p242477 +sa(dp242478 +g225230 +S'Sir Charles, Alias Willie Harris' +p242479 +sg225232 +S'Barkley Leonnard Hendricks' +p242480 +sg225234 +S'oil on canvas' +p242481 +sg225236 +S'1972' +p242482 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001b2.jpg' +p242483 +sg225240 +S"Sir Charles, Alias Willie Harris\n Hendricks has said that a painting he saw in 1966 while visiting the National Gallery of Art in London—a portrait by Flemish master Anthony van Dyck featuring a red velvet coat—was a point of departure for this work. Intending to make a replica of the Van Dyck image, Hendricks received permission to paint as a copyist in the museum. But once in the process, he realized he could not copy another artist's work, "no matter how much I like it," he said. Years later he painted \n Hendricks, who was born in Philadelphia, studied there at the Pennsylvania Academy of the Fine Arts and earned BFA and MFA degrees from Yale University, New Haven, Connecticut. Since 1972 he has taught at Connecticut College in New London. The recipient of numerous awards and recognitions, he has exhibited his work at the Lyman Allyn Art Museum at Connecticut College; the Whitney Museum of American Art, New York; and the Studio Museum in Harlem, New York. The Nasher Museum of Art at Duke University organized a career retrospective of Hendricks' work, \n " +p242484 +sa(dp242485 +g225230 +S'George Jules Taylor' +p242486 +sg225232 +S'Barkley Leonnard Hendricks' +p242487 +sg225234 +S'oil on canvas' +p242488 +sg225236 +S'1972' +p242489 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000ec.jpg' +p242490 +sg225240 +g27 +sa(dp242491 +g225230 +S'The Assumption of the Virgin' +p242492 +sg225232 +S'Netherlandish 17th Century' +p242493 +sg225234 +S'overall: 36.5 x 25.4 cm (14 3/8 x 10 in.)' +p242494 +sg225236 +S'\npen and brown ink with brown and gray wash over black chalk on laid paper' +p242495 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ec7.jpg' +p242496 +sg225240 +g27 +sa(dp242497 +g225230 +S'Saint James Defeating the Infidels' +p242498 +sg225232 +S'Artist Information (' +p242499 +sg225234 +g27 +sg225236 +S'(artist)' +p242500 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007464.jpg' +p242501 +sg225240 +g27 +sa(dp242502 +g225230 +S'Peasants and Cattle near a Farmhouse' +p242503 +sg225232 +S'Pieter Bruegel the Elder' +p242504 +sg225234 +S'pen and brown ink on laid paper' +p242505 +sg225236 +S'c. 1553/1554' +p242506 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00053/a00053c6.jpg' +p242507 +sg225240 +g27 +sa(dp242508 +g225230 +S'Figures Bathing in a Stream' +p242509 +sg225232 +S'Nicolas Poussin' +p242510 +sg225234 +S', unknown date' +p242511 +sg225236 +S'\n' +p242512 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a0006584.jpg' +p242513 +sg225240 +g27 +sa(dp242514 +g225230 +S'Saint Catherine in the Clouds' +p242515 +sg225232 +S'Sir Peter Paul Rubens' +p242516 +sg225234 +S'etching' +p242517 +sg225236 +S'unknown date\n' +p242518 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d55f.jpg' +p242519 +sg225240 +g27 +sa(dp242520 +g225230 +S'Study for "La Cuisine Avec Paisans"' +p242521 +sg225232 +S'J\xc3\xa9r\xc3\xb4me-Fran\xc3\xa7ois Chantereau' +p242522 +sg225234 +S'red and black chalk on gray laid paper' +p242523 +sg225236 +S'unknown date\n' +p242524 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006deb.jpg' +p242525 +sg225240 +g27 +sa(dp242526 +g225230 +S'Study of a Nude Old Woman Clenching Her Fists, and Two Decorative Objects' +p242527 +sg225232 +S'Gustav Klimt' +p242528 +sg225234 +S'black and blue crayon on wove paper' +p242529 +sg225236 +S'c. 1901' +p242530 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00069/a00069bc.jpg' +p242531 +sg225240 +g27 +sa(dp242532 +g225230 +S'Seated Nude with Drapery' +p242533 +sg225232 +S'Artist Information (' +p242534 +sg225234 +S'Flemish, 1546 - 1611' +p242535 +sg225236 +S'(related artist)' +p242536 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a000720e.jpg' +p242537 +sg225240 +g27 +sa(dp242538 +g225230 +S'Birds - U.S.P.R.R. Exp. & Surveys, 35th Parallel' +p242539 +sg225232 +S'American 19th Century' +p242540 +sg225234 +S'Gift of Dr. and Mrs. George Benjamin Green' +p242541 +sg225236 +S'\ncolor lithograph' +p242542 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa10.jpg' +p242543 +sg225240 +g27 +sa(dp242544 +g225230 +S'The Alpine Vulture' +p242545 +sg225232 +S'British 18th Century' +p242546 +sg225234 +S'Gift of Dr. and Mrs. George Benjamin Green' +p242547 +sg225236 +S'\nhand-colored etching' +p242548 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a0007643.jpg' +p242549 +sg225240 +g27 +sa(dp242550 +g225230 +S'Bimaculated Duck' +p242551 +sg225232 +S'British 19th Century' +p242552 +sg225234 +S'Gift of Dr. and Mrs. George Benjamin Green' +p242553 +sg225236 +S'\ncolor lithograph' +p242554 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007de2.jpg' +p242555 +sg225240 +g27 +sa(dp242556 +g225230 +S'Bird (Larvivora Ruficeps)' +p242557 +sg225232 +S'British 19th Century' +p242558 +sg225234 +S'Gift of Dr. and Mrs. George Benjamin Green' +p242559 +sg225236 +S'\nhand-colored lithograph' +p242560 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c7f.jpg' +p242561 +sg225240 +g27 +sa(dp242562 +g225230 +S'Griffon Vulture' +p242563 +sg225232 +S'British 19th Century' +p242564 +sg225234 +S'Gift of Dr. and Mrs. George Benjamin Green' +p242565 +sg225236 +S'\nhand-colored lithograph' +p242566 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c8d.jpg' +p242567 +sg225240 +g27 +sa(dp242568 +g225230 +S'Rook' +p242569 +sg225232 +S'British 19th Century' +p242570 +sg225234 +S'Gift of Dr. and Mrs. George Benjamin Green' +p242571 +sg225236 +S'\nhand-colored etching' +p242572 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c4f.jpg' +p242573 +sg225240 +g27 +sa(dp242574 +g225230 +S'The Stork (Ciconia Alba)' +p242575 +sg225232 +S'Eleazar Albin' +p242576 +sg225234 +S'hand-colored etching' +p242577 +sg225236 +S'published 1731/1738' +p242578 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076cf.jpg' +p242579 +sg225240 +g27 +sa(dp242580 +g225230 +S'The Touraco Bird' +p242581 +sg225232 +S'British 18th Century' +p242582 +sg225234 +S'Gift of Dr. and Mrs. George Benjamin Green' +p242583 +sg225236 +S'\nhand-colored etching' +p242584 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a0007641.jpg' +p242585 +sg225240 +g27 +sa(dp242586 +g225230 +S'Velvet Duck' +p242587 +sg225232 +S'British 19th Century' +p242588 +sg225234 +S'Gift of Dr. and Mrs. George Benjamin Green' +p242589 +sg225236 +S'\nhand-colored etching' +p242590 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c9b.jpg' +p242591 +sg225240 +g27 +sa(dp242592 +g225230 +S'Water Fowl' +p242593 +sg225232 +S'British 19th Century' +p242594 +sg225234 +S'Gift of Dr. and Mrs. George Benjamin Green' +p242595 +sg225236 +S'\netching' +p242596 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dd0.jpg' +p242597 +sg225240 +g27 +sa(dp242598 +g225230 +S'Merle Violet, du Royaume de Juda' +p242599 +sg225232 +S'Matinet' +p242600 +sg225234 +S'hand-colored etching' +p242601 +sg225236 +S'unknown date\n' +p242602 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a000960e.jpg' +p242603 +sg225240 +g27 +sa(dp242604 +g225230 +S'Oiseaux de guinee tires de bosman' +p242605 +sg225232 +S'French 18th Century' +p242606 +sg225234 +S'Gift of Dr. and Mrs. George Benjamin Green' +p242607 +sg225236 +S'\netching' +p242608 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cc0.jpg' +p242609 +sg225240 +g27 +sa(dp242610 +g225230 +S'Boat-tailed Grackle' +p242611 +sg225232 +S'Artist Information (' +p242612 +sg225234 +S'(artist after)' +p242613 +sg225236 +S'\n' +p242614 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f2/a000f299.jpg' +p242615 +sg225240 +g27 +sa(dp242616 +g225230 +S'The Little Black Bullfinch (Rubicilla minor nigra)' +p242617 +sg225232 +S'Artist Information (' +p242618 +sg225234 +S'(artist after)' +p242619 +sg225236 +S'\n' +p242620 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b38d.jpg' +p242621 +sg225240 +g27 +sa(dp242622 +g225230 +S'Two Birds (Ptilonopus Auranthfrons)' +p242623 +sg225232 +S'Joseph Wolf' +p242624 +sg225234 +S'hand-colored lithograph' +p242625 +sg225236 +S'unknown date\n' +p242626 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cc5.jpg' +p242627 +sg225240 +g27 +sa(dp242628 +g225230 +S'The Red Clawed Crab (Cancer erythropus)' +p242629 +sg225232 +S'Mark Catesby' +p242630 +sg225234 +S'hand-colored etching' +p242631 +sg225236 +S'published 1731-1743' +p242632 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a0007863.jpg' +p242633 +sg225240 +g27 +sa(dp242634 +g225230 +S'Red Mottled Rock-crab (Cancer grapsus)' +p242635 +sg225232 +S'Mark Catesby' +p242636 +sg225234 +S'hand-colored etching' +p242637 +sg225236 +S'published 1731-1743' +p242638 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a0007867.jpg' +p242639 +sg225240 +g27 +sa(dp242640 +g225230 +S'The Green Gar Fish (Esox osseus)' +p242641 +sg225232 +S'Mark Catesby' +p242642 +sg225234 +S'hand-colored etching' +p242643 +sg225236 +S'published 1731-1743' +p242644 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a0007861.jpg' +p242645 +sg225240 +g27 +sa(dp242646 +g225230 +S'The Sucking Fish (Echeneis Naucratis)' +p242647 +sg225232 +S'Mark Catesby' +p242648 +sg225234 +S'hand-colored etching' +p242649 +sg225236 +S'published 1731-1743' +p242650 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a000783b.jpg' +p242651 +sg225240 +g27 +sa(dp242652 +g225230 +S'The Purple Jack Daw (Gracula Quiscula)' +p242653 +sg225232 +S'Mark Catesby' +p242654 +sg225234 +S'hand-colored etching' +p242655 +sg225236 +S'published 1731-1743' +p242656 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a00077ee.jpg' +p242657 +sg225240 +g27 +sa(dp242658 +g225230 +S'The Coach-Whip Snake (Coluber flagellum)' +p242659 +sg225232 +S'Mark Catesby' +p242660 +sg225234 +S'hand-colored etching' +p242661 +sg225236 +S'published 1731-1743' +p242662 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a0007885.jpg' +p242663 +sg225240 +g27 +sa(dp242664 +g225230 +S'The Glass Snake (Anguis ventralis)' +p242665 +sg225232 +S'Mark Catesby' +p242666 +sg225234 +S'hand-colored etching' +p242667 +sg225236 +S'published 1731-1743' +p242668 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a0007874.jpg' +p242669 +sg225240 +g27 +sa(dp242670 +g225230 +S'Parrot (Le Perroquet Indien. Psittacus Minimus)' +p242671 +sg225232 +S'Artist Information (' +p242672 +sg225234 +S'(artist after)' +p242673 +sg225236 +S'\n' +p242674 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b38b.jpg' +p242675 +sg225240 +g27 +sa(dp242676 +g225230 +S'Parrot (Le Perroquet Brunatre. Pfittacus Fulcus Mexicanus)' +p242677 +sg225232 +S'Artist Information (' +p242678 +sg225234 +S'(artist after)' +p242679 +sg225236 +S'\n' +p242680 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b369.jpg' +p242681 +sg225240 +g27 +sa(dp242682 +g225230 +S'The Guillemot and the Puffin of the Isle of Man' +p242683 +sg225232 +S'George Edwards' +p242684 +sg225234 +S'hand-colored etching' +p242685 +sg225236 +S'1762' +p242686 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a00077de.jpg' +p242687 +sg225240 +g27 +sa(dp242688 +g225230 +S'Birds of Philippines' +p242689 +sg225232 +S'John Gerrard Keulemans' +p242690 +sg225234 +S'color lithograph' +p242691 +sg225236 +S'unknown date\n' +p242692 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007da6.jpg' +p242693 +sg225240 +g27 +sa(dp242694 +g225230 +S'Turtur Risorius' +p242695 +sg225232 +S'Artist Information (' +p242696 +sg225234 +S'(artist after)' +p242697 +sg225236 +S'\n' +p242698 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dbc.jpg' +p242699 +sg225240 +g27 +sa(dp242700 +g225230 +S'Phasianus Versicolor' +p242701 +sg225232 +S'William Home Lizars' +p242702 +sg225234 +S'hand-colored etching' +p242703 +sg225236 +S'unknown date\n' +p242704 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d9d.jpg' +p242705 +sg225240 +g27 +sa(dp242706 +g225230 +S'Phasianus Versicolor - Female' +p242707 +sg225232 +S'William Home Lizars' +p242708 +sg225234 +S'hand-colored etching' +p242709 +sg225236 +S'unknown date\n' +p242710 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dac.jpg' +p242711 +sg225240 +g27 +sa(dp242712 +g225230 +S'Red Ringed Parrakeet' +p242713 +sg225232 +S'Artist Information (' +p242714 +sg225234 +S'(artist after)' +p242715 +sg225236 +S'\n' +p242716 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d8d.jpg' +p242717 +sg225240 +g27 +sa(dp242718 +g225230 +S'Female Crow Blackbird, Orange-Crowned Warbler, Lark Finch' +p242719 +sg225232 +S'Artist Information (' +p242720 +sg225234 +S'(artist after)' +p242721 +sg225236 +S'\n' +p242722 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fadd.jpg' +p242723 +sg225240 +g27 +sa(dp242724 +g225230 +S'Three Hummingbirds with Plant' +p242725 +sg225232 +S'Heinrich Gottlieb Ludwig Reichenbach' +p242726 +sg225234 +S'hand-colored etching' +p242727 +sg225236 +S'unknown date\n' +p242728 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b46e.jpg' +p242729 +sg225240 +g27 +sa(dp242730 +g225230 +S"Stellar's Jay, Lapland Longspur and Female" +p242731 +sg225232 +S'Artist Information (' +p242732 +sg225234 +S'(artist after)' +p242733 +sg225236 +S'\n' +p242734 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fae2.jpg' +p242735 +sg225240 +g27 +sa(dp242736 +g225230 +S'Polyborus Tharus, Var.' +p242737 +sg225232 +S'J. Smit' +p242738 +sg225234 +S'hand-colored lithograph' +p242739 +sg225236 +S'unknown date\n' +p242740 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cb9.jpg' +p242741 +sg225240 +g27 +sa(dp242742 +g225230 +S'Five Birds with Their Eggs and an Insect' +p242743 +sg225232 +S'Artist Information (' +p242744 +sg225234 +S'(artist after)' +p242745 +sg225236 +S'\n' +p242746 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fae1.jpg' +p242747 +sg225240 +g27 +sa(dp242748 +g225232 +S'Alberto Giacometti' +p242749 +sg225240 +g27 +sg225234 +S'bronze' +p242750 +sg225230 +S'The Invisible Object (Hands Holding the Void)' +p242751 +sg225236 +S'1935' +p242752 +sa(dp242753 +g225230 +S'Modello for a Ceiling: Diana and the Dead Endymion, the Judgment of Paris, and the Death of Adonis' +p242754 +sg225232 +S'Nicolas Poussin' +p242755 +sg225234 +S'pen and brown ink with brown wash over black chalk on laid paper' +p242756 +sg225236 +S'unknown date\n' +p242757 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a000656c.jpg' +p242758 +sg225240 +g27 +sa(dp242759 +g225230 +S'A Street with Various Buildings, Colonnades and an Arch' +p242760 +sg225232 +S'Artist Information (' +p242761 +sg225234 +S'(artist after)' +p242762 +sg225236 +S'\n' +p242763 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c70e.jpg' +p242764 +sg225240 +g27 +sa(dp242765 +g225230 +S'River God' +p242766 +sg225232 +S'Giulio Romano' +p242767 +sg225234 +S'pen and brown ink with brown wash on laid paper' +p242768 +sg225236 +S'c. 1528' +p242769 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00033/a00033df.jpg' +p242770 +sg225240 +g27 +sa(dp242771 +g225230 +S'Seated Nude Boy Seen from the Back' +p242772 +sg225232 +S'Guercino' +p242773 +sg225234 +S', unknown date' +p242774 +sg225236 +S'\n' +p242775 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074d7.jpg' +p242776 +sg225240 +g27 +sa(dp242777 +g225230 +S'Three Goddesses: Minerva, Juno and Venus' +p242778 +sg225232 +S'Jan van der Straet' +p242779 +sg225234 +S'pen and brown ink and black and red chalk heightened with white on laid paper' +p242780 +sg225236 +S'c. 1587' +p242781 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072ae.jpg' +p242782 +sg225240 +g27 +sa(dp242783 +g225230 +S'Title Page' +p242784 +sg225232 +S'Herman van Swanevelt' +p242785 +sg225234 +S'etching' +p242786 +sg225236 +S'unknown date\n' +p242787 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d423.jpg' +p242788 +sg225240 +g27 +sa(dp242789 +g225230 +S'The Large Tree' +p242790 +sg225232 +S'Herman van Swanevelt' +p242791 +sg225234 +S'etching' +p242792 +sg225236 +S'unknown date\n' +p242793 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d422.jpg' +p242794 +sg225240 +g27 +sa(dp242795 +g225230 +S'Two Men on a Bare Hill' +p242796 +sg225232 +S'Herman van Swanevelt' +p242797 +sg225234 +S'etching' +p242798 +sg225236 +S'unknown date\n' +p242799 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d421.jpg' +p242800 +sg225240 +g27 +sa(dp242801 +g225230 +S'The Large Round Tower' +p242802 +sg225232 +S'Herman van Swanevelt' +p242803 +sg225234 +S'etching' +p242804 +sg225236 +S'unknown date\n' +p242805 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d420.jpg' +p242806 +sg225240 +g27 +sa(dp242807 +g225230 +S'Two Figures Seated to the Right of a Road' +p242808 +sg225232 +S'Herman van Swanevelt' +p242809 +sg225234 +S'etching' +p242810 +sg225236 +S'unknown date\n' +p242811 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d41e.jpg' +p242812 +sg225240 +g27 +sa(dp242813 +g225230 +S'A Stone Bridge' +p242814 +sg225232 +S'Herman van Swanevelt' +p242815 +sg225234 +S'etching' +p242816 +sg225236 +S'unknown date\n' +p242817 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d41d.jpg' +p242818 +sg225240 +g27 +sa(dp242819 +g225230 +S'Man and Woman at the Mouth of a Cave' +p242820 +sg225232 +S'Herman van Swanevelt' +p242821 +sg225234 +S'etching' +p242822 +sg225236 +S'unknown date\n' +p242823 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d426.jpg' +p242824 +sg225240 +g27 +sa(dp242825 +g225230 +S'The Rocks' +p242826 +sg225232 +S'Herman van Swanevelt' +p242827 +sg225234 +S'etching' +p242828 +sg225236 +S'unknown date\n' +p242829 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d425.jpg' +p242830 +sg225240 +g27 +sa(dp242831 +g225230 +S'The Pierced Rock' +p242832 +sg225232 +S'Herman van Swanevelt' +p242833 +sg225234 +S'etching' +p242834 +sg225236 +S'unknown date\n' +p242835 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d424.jpg' +p242836 +sg225240 +g27 +sa(dp242837 +g225230 +S'Path between Trees' +p242838 +sg225232 +S'Herman van Swanevelt' +p242839 +sg225234 +S'etching' +p242840 +sg225236 +S'unknown date\n' +p242841 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d41c.jpg' +p242842 +sg225240 +g27 +sa(dp242843 +g225230 +S'A Winding Road' +p242844 +sg225232 +S'Herman van Swanevelt' +p242845 +sg225234 +S'etching' +p242846 +sg225236 +S'unknown date\n' +p242847 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d41b.jpg' +p242848 +sg225240 +g27 +sa(dp242849 +g225230 +S'Herd of Cows on Bluff to Left of Water' +p242850 +sg225232 +S'Herman van Swanevelt' +p242851 +sg225234 +S'etching' +p242852 +sg225236 +S'unknown date\n' +p242853 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d41a.jpg' +p242854 +sg225240 +g27 +sa(dp242855 +g225230 +S'Path to Left of a Large Tree and a Stump' +p242856 +sg225232 +S'Herman van Swanevelt' +p242857 +sg225234 +S'etching' +p242858 +sg225236 +S'unknown date\n' +p242859 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d41f.jpg' +p242860 +sg225240 +g27 +sa(dp242861 +g225230 +S'Two Figures near a Small Stone Bridge' +p242862 +sg225232 +S'Herman van Swanevelt' +p242863 +sg225234 +S'etching' +p242864 +sg225236 +S'unknown date\n' +p242865 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d419.jpg' +p242866 +sg225240 +g27 +sa(dp242867 +g225230 +S'The House on the Rock' +p242868 +sg225232 +S'Herman van Swanevelt' +p242869 +sg225234 +S'etching' +p242870 +sg225236 +S'unknown date\n' +p242871 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d418.jpg' +p242872 +sg225240 +g27 +sa(dp242873 +g225230 +S'The Tree with a Double Trunk' +p242874 +sg225232 +S'Herman van Swanevelt' +p242875 +sg225234 +S'etching' +p242876 +sg225236 +S'unknown date\n' +p242877 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d417.jpg' +p242878 +sg225240 +g27 +sa(dp242879 +g225230 +S'Two Trees with Crossed Trunks' +p242880 +sg225232 +S'Herman van Swanevelt' +p242881 +sg225234 +S'etching' +p242882 +sg225236 +S'unknown date\n' +p242883 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d416.jpg' +p242884 +sg225240 +g27 +sa(dp242885 +g225230 +S'The Boulder Crowned with Trees' +p242886 +sg225232 +S'Herman van Swanevelt' +p242887 +sg225234 +S'etching' +p242888 +sg225236 +S'unknown date\n' +p242889 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d415.jpg' +p242890 +sg225240 +g27 +sa(dp242891 +g225230 +S'The Steep Path' +p242892 +sg225232 +S'Herman van Swanevelt' +p242893 +sg225234 +S'etching' +p242894 +sg225236 +S'unknown date\n' +p242895 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d434.jpg' +p242896 +sg225240 +g27 +sa(dp242897 +g225230 +S'Three Men Carrying Staffs' +p242898 +sg225232 +S'Herman van Swanevelt' +p242899 +sg225234 +S'etching' +p242900 +sg225236 +S'unknown date\n' +p242901 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d433.jpg' +p242902 +sg225240 +g27 +sa(dp242903 +g225230 +S'Two Men Seated Near the Waterside' +p242904 +sg225232 +S'Herman van Swanevelt' +p242905 +sg225234 +S'etching' +p242906 +sg225236 +S'unknown date\n' +p242907 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d432.jpg' +p242908 +sg225240 +g27 +sa(dp242909 +g225230 +S'Two Men Carrying Staffs' +p242910 +sg225232 +S'Herman van Swanevelt' +p242911 +sg225234 +S'etching' +p242912 +sg225236 +S'unknown date\n' +p242913 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d431.jpg' +p242914 +sg225240 +g27 +sa(dp242915 +g225230 +S'The Path through the Rock' +p242916 +sg225232 +S'Herman van Swanevelt' +p242917 +sg225234 +S'etching' +p242918 +sg225236 +S'unknown date\n' +p242919 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d435.jpg' +p242920 +sg225240 +g27 +sa(dp242921 +g225230 +S'The Stump near the River' +p242922 +sg225232 +S'Herman van Swanevelt' +p242923 +sg225234 +S'etching' +p242924 +sg225236 +S'unknown date\n' +p242925 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d436.jpg' +p242926 +sg225240 +g27 +sa(dp242927 +g225230 +S'Camels' +p242928 +sg225232 +S'Herman van Swanevelt' +p242929 +sg225234 +S'etching' +p242930 +sg225236 +S'unknown date\n' +p242931 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d42f.jpg' +p242932 +sg225240 +g27 +sa(dp242933 +g225230 +S'Cows' +p242934 +sg225232 +S'Herman van Swanevelt' +p242935 +sg225234 +S'etching' +p242936 +sg225236 +S'unknown date\n' +p242937 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d430.jpg' +p242938 +sg225240 +g27 +sa(dp242939 +g225230 +S'Donkeys' +p242940 +sg225232 +S'Herman van Swanevelt' +p242941 +sg225234 +S'etching' +p242942 +sg225236 +S'unknown date\n' +p242943 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d42e.jpg' +p242944 +sg225240 +g27 +sa(dp242945 +g225230 +S'Rams' +p242946 +sg225232 +S'Herman van Swanevelt' +p242947 +sg225234 +S'etching' +p242948 +sg225236 +S'unknown date\n' +p242949 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d42d.jpg' +p242950 +sg225240 +g27 +sa(dp242951 +g225230 +S'Goats' +p242952 +sg225232 +S'Herman van Swanevelt' +p242953 +sg225234 +S'etching' +p242954 +sg225236 +S'unknown date\n' +p242955 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d42c.jpg' +p242956 +sg225240 +g27 +sa(dp242957 +g225230 +S'Angora Sheep' +p242958 +sg225232 +S'Herman van Swanevelt' +p242959 +sg225234 +S'etching' +p242960 +sg225236 +S'unknown date\n' +p242961 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d42b.jpg' +p242962 +sg225240 +g27 +sa(dp242963 +g225230 +S'Pigs' +p242964 +sg225232 +S'Herman van Swanevelt' +p242965 +sg225234 +S'etching' +p242966 +sg225236 +S'unknown date\n' +p242967 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d42a.jpg' +p242968 +sg225240 +g27 +sa(dp242969 +g225230 +S'Title Page' +p242970 +sg225232 +S'Herman van Swanevelt' +p242971 +sg225234 +S'etching' +p242972 +sg225236 +S'unknown date\n' +p242973 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3fd.jpg' +p242974 +sg225240 +g27 +sa(dp242975 +g225230 +S'Inn in the Ruins of the Palace of the Emperors' +p242976 +sg225232 +S'Herman van Swanevelt' +p242977 +sg225234 +S'etching' +p242978 +sg225236 +S'unknown date\n' +p242979 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d403.jpg' +p242980 +sg225240 +g27 +sa(dp242981 +g225230 +S'The Four Ruined Arches' +p242982 +sg225232 +S'Herman van Swanevelt' +p242983 +sg225234 +S'etching' +p242984 +sg225236 +S'unknown date\n' +p242985 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d405.jpg' +p242986 +sg225240 +g27 +sa(dp242987 +g225230 +S'View of a Ruined Building' +p242988 +sg225232 +S'Herman van Swanevelt' +p242989 +sg225234 +S'etching' +p242990 +sg225236 +S'unknown date\n' +p242991 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d404.jpg' +p242992 +sg225240 +g27 +sa(dp242993 +g225230 +S'View of an Italian Villa' +p242994 +sg225232 +S'Herman van Swanevelt' +p242995 +sg225234 +S'etching' +p242996 +sg225236 +S'unknown date\n' +p242997 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d406.jpg' +p242998 +sg225240 +g27 +sa(dp242999 +g225230 +S'Large Tree near a House' +p243000 +sg225232 +S'Herman van Swanevelt' +p243001 +sg225234 +S'etching' +p243002 +sg225236 +S'unknown date\n' +p243003 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d402.jpg' +p243004 +sg225240 +g27 +sa(dp243005 +g225230 +S'Ruined Building with a Tower' +p243006 +sg225232 +S'Herman van Swanevelt' +p243007 +sg225234 +S'etching' +p243008 +sg225236 +S'unknown date\n' +p243009 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d401.jpg' +p243010 +sg225240 +g27 +sa(dp243011 +g225230 +S'Round Tower near the Tiber' +p243012 +sg225232 +S'Herman van Swanevelt' +p243013 +sg225234 +S'etching' +p243014 +sg225236 +S'unknown date\n' +p243015 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d400.jpg' +p243016 +sg225240 +g27 +sa(dp243017 +g225230 +S'Building with a Square Tower' +p243018 +sg225232 +S'Herman van Swanevelt' +p243019 +sg225234 +S'etching' +p243020 +sg225236 +S'unknown date\n' +p243021 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3ff.jpg' +p243022 +sg225240 +g27 +sa(dp243023 +g225230 +S'Ruins on the Palatine Hill' +p243024 +sg225232 +S'Herman van Swanevelt' +p243025 +sg225234 +S'etching' +p243026 +sg225236 +S'unknown date\n' +p243027 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3fe.jpg' +p243028 +sg225240 +g27 +sa(dp243029 +g225230 +S'View of a Convent' +p243030 +sg225232 +S'Herman van Swanevelt' +p243031 +sg225234 +S'etching' +p243032 +sg225236 +S'unknown date\n' +p243033 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3fb.jpg' +p243034 +sg225240 +g27 +sa(dp243035 +g225230 +S'View of the Church "Quattro Santi Coronati"' +p243036 +sg225232 +S'Herman van Swanevelt' +p243037 +sg225234 +S'etching' +p243038 +sg225236 +S'unknown date\n' +p243039 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3fa.jpg' +p243040 +sg225240 +g27 +sa(dp243041 +g225230 +S'The Bent Tree' +p243042 +sg225232 +S'Herman van Swanevelt' +p243043 +sg225234 +S'etching' +p243044 +sg225236 +S'unknown date\n' +p243045 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3fc.jpg' +p243046 +sg225240 +g27 +sa(dp243047 +g225230 +S'Two Satyrs Tending a Flock of Goats' +p243048 +sg225232 +S'Herman van Swanevelt' +p243049 +sg225234 +S'etching' +p243050 +sg225236 +S'unknown date\n' +p243051 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3f6.jpg' +p243052 +sg225240 +g27 +sa(dp243053 +g225230 +S'A Dancing Satyr' +p243054 +sg225232 +S'Herman van Swanevelt' +p243055 +sg225234 +S'etching' +p243056 +sg225236 +S'unknown date\n' +p243057 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3f5.jpg' +p243058 +sg225240 +g27 +sa(dp243059 +g225230 +S'A Satyr Gathering Fruit' +p243060 +sg225232 +S'Herman van Swanevelt' +p243061 +sg225234 +S'etching' +p243062 +sg225236 +S'unknown date\n' +p243063 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3f4.jpg' +p243064 +sg225240 +g27 +sa(dp243065 +g225230 +S'Satyrs around a Fire' +p243066 +sg225232 +S'Herman van Swanevelt' +p243067 +sg225234 +S'etching' +p243068 +sg225236 +S'unknown date\n' +p243069 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3f3.jpg' +p243070 +sg225240 +g27 +sa(dp243071 +g225230 +S'Title Page' +p243072 +sg225232 +S'Herman van Swanevelt' +p243073 +sg225234 +S'etching' +p243074 +sg225236 +S'unknown date\n' +p243075 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d411.jpg' +p243076 +sg225240 +g27 +sa(dp243077 +g225230 +S'View of the Vineyard of the Villa Mamsrona' +p243078 +sg225232 +S'Herman van Swanevelt' +p243079 +sg225234 +S'etching' +p243080 +sg225236 +S'unknown date\n' +p243081 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d412.jpg' +p243082 +sg225240 +g27 +sa(dp243083 +g225230 +S'The Baths of Caracalla' +p243084 +sg225232 +S'Herman van Swanevelt' +p243085 +sg225234 +S'etching' +p243086 +sg225236 +S'unknown date\n' +p243087 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d410.jpg' +p243088 +sg225240 +g27 +sa(dp243089 +g225230 +S'View of the Aqua Acetosa' +p243090 +sg225232 +S'Herman van Swanevelt' +p243091 +sg225234 +S'etching' +p243092 +sg225236 +S'unknown date\n' +p243093 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d40f.jpg' +p243094 +sg225240 +g27 +sa(dp243095 +g225230 +S'Tomb on the Via Appia' +p243096 +sg225232 +S'Herman van Swanevelt' +p243097 +sg225234 +S'etching' +p243098 +sg225236 +S'unknown date\n' +p243099 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d40e.jpg' +p243100 +sg225240 +g27 +sa(dp243101 +g225230 +S'Inn at the Prima Porta' +p243102 +sg225232 +S'Herman van Swanevelt' +p243103 +sg225234 +S'etching' +p243104 +sg225236 +S'unknown date\n' +p243105 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d40d.jpg' +p243106 +sg225240 +g27 +sa(dp243107 +g225230 +S'Church of San Adrian on the Via Flaminia' +p243108 +sg225232 +S'Herman van Swanevelt' +p243109 +sg225234 +S'etching' +p243110 +sg225236 +S'unknown date\n' +p243111 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d40c.jpg' +p243112 +sg225240 +g27 +sa(dp243113 +g225230 +S'Farm beyond the Porta del Popolo' +p243114 +sg225232 +S'Herman van Swanevelt' +p243115 +sg225234 +S'etching' +p243116 +sg225236 +S'unknown date\n' +p243117 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d40b.jpg' +p243118 +sg225240 +g27 +sa(dp243119 +g225230 +S'Vineyard of Pope Julius on the Via Flaminia' +p243120 +sg225232 +S'Herman van Swanevelt' +p243121 +sg225234 +S'etching' +p243122 +sg225236 +S'unknown date\n' +p243123 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d40a.jpg' +p243124 +sg225240 +g27 +sa(dp243125 +g225230 +S'First View of Zugro' +p243126 +sg225232 +S'Herman van Swanevelt' +p243127 +sg225234 +S'etching' +p243128 +sg225236 +S'unknown date\n' +p243129 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d409.jpg' +p243130 +sg225240 +g27 +sa(dp243131 +g225230 +S'Second View of Zugro' +p243132 +sg225232 +S'Herman van Swanevelt' +p243133 +sg225234 +S'etching' +p243134 +sg225236 +S'unknown date\n' +p243135 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d408.jpg' +p243136 +sg225240 +g27 +sa(dp243137 +g225230 +S'Third View of Zugro' +p243138 +sg225232 +S'Herman van Swanevelt' +p243139 +sg225234 +S'etching' +p243140 +sg225236 +S'unknown date\n' +p243141 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d407.jpg' +p243142 +sg225240 +g27 +sa(dp243143 +g225230 +S'Villa Outside the Porta Pia' +p243144 +sg225232 +S'Herman van Swanevelt' +p243145 +sg225234 +S'etching' +p243146 +sg225236 +S'unknown date\n' +p243147 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d414.jpg' +p243148 +sg225240 +g27 +sa(dp243149 +g225230 +S'Abraham and the Three Angels' +p243150 +sg225232 +S'Herman van Swanevelt' +p243151 +sg225234 +S'etching' +p243152 +sg225236 +S'unknown date\n' +p243153 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3f1.jpg' +p243154 +sg225240 +g27 +sa(dp243155 +g225230 +S'Hagar and the Angel' +p243156 +sg225232 +S'Herman van Swanevelt' +p243157 +sg225234 +S'etching' +p243158 +sg225236 +S'unknown date\n' +p243159 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3f0.jpg' +p243160 +sg225240 +g27 +sa(dp243161 +g225230 +S'Tobias Frightened by the Fish' +p243162 +sg225232 +S'Herman van Swanevelt' +p243163 +sg225234 +S'etching' +p243164 +sg225236 +S'unknown date\n' +p243165 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3ef.jpg' +p243166 +sg225240 +g27 +sa(dp243167 +g225230 +S'Elijah in the Wilderness' +p243168 +sg225232 +S'Herman van Swanevelt' +p243169 +sg225234 +S'etching' +p243170 +sg225236 +S'unknown date\n' +p243171 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3f2.jpg' +p243172 +sg225240 +g27 +sa(dp243173 +g225230 +S'Pan and Syrinx' +p243174 +sg225232 +S'Herman van Swanevelt' +p243175 +sg225234 +S'etching' +p243176 +sg225236 +S'unknown date\n' +p243177 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3ee.jpg' +p243178 +sg225240 +g27 +sa(dp243179 +g225230 +S'Salmacis and Hermaphroditus' +p243180 +sg225232 +S'Herman van Swanevelt' +p243181 +sg225234 +S'etching' +p243182 +sg225236 +S'unknown date\n' +p243183 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3ed.jpg' +p243184 +sg225240 +g27 +sa(dp243185 +g225230 +S'The Fishermen' +p243186 +sg225232 +S'Herman van Swanevelt' +p243187 +sg225234 +S'etching' +p243188 +sg225236 +S'unknown date\n' +p243189 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5bc.jpg' +p243190 +sg225240 +g27 +sa(dp243191 +g225230 +S'The Spinner and Four Cows' +p243192 +sg225232 +S'Herman van Swanevelt' +p243193 +sg225234 +S'etching' +p243194 +sg225236 +S'unknown date\n' +p243195 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5bd.jpg' +p243196 +sg225240 +g27 +sa(dp243197 +g225230 +S'The Two Horsemen' +p243198 +sg225232 +S'Herman van Swanevelt' +p243199 +sg225234 +S'etching' +p243200 +sg225236 +S'unknown date\n' +p243201 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5be.jpg' +p243202 +sg225240 +g27 +sa(dp243203 +g225230 +S'The Small Waterfall' +p243204 +sg225232 +S'Herman van Swanevelt' +p243205 +sg225234 +S'etching' +p243206 +sg225236 +S'unknown date\n' +p243207 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5bf.jpg' +p243208 +sg225240 +g27 +sa(dp243209 +g225230 +S'Landscape with the Cardinal' +p243210 +sg225232 +S'Herman van Swanevelt' +p243211 +sg225234 +S'etching' +p243212 +sg225236 +S'unknown date\n' +p243213 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5ae.jpg' +p243214 +sg225240 +g27 +sa(dp243215 +g225230 +S'Antique Ruins of an Amphitheatre' +p243216 +sg225232 +S'Herman van Swanevelt' +p243217 +sg225234 +S'etching' +p243218 +sg225236 +S'unknown date\n' +p243219 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5ad.jpg' +p243220 +sg225240 +g27 +sa(dp243221 +g225230 +S'Landscape with Ruins and a Woman with a Parasol' +p243222 +sg225232 +S'Herman van Swanevelt' +p243223 +sg225234 +S'etching' +p243224 +sg225236 +S'unknown date\n' +p243225 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5ab.jpg' +p243226 +sg225240 +g27 +sa(dp243227 +g225230 +S'Landscape with an Artist Sketching' +p243228 +sg225232 +S'Herman van Swanevelt' +p243229 +sg225234 +S'etching' +p243230 +sg225236 +S'unknown date\n' +p243231 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5aa.jpg' +p243232 +sg225240 +g27 +sa(dp243233 +g225230 +S'Travelers on Road to Left of a Stream' +p243234 +sg225232 +S'Herman van Swanevelt' +p243235 +sg225234 +S'etching' +p243236 +sg225236 +S'unknown date\n' +p243237 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5ac.jpg' +p243238 +sg225240 +g27 +sa(dp243239 +g225230 +S'Woods Bordered by a Stream' +p243240 +sg225232 +S'Herman van Swanevelt' +p243241 +sg225234 +S'etching' +p243242 +sg225236 +S'unknown date\n' +p243243 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5a9.jpg' +p243244 +sg225240 +g27 +sa(dp243245 +g225230 +S'Landscape with Laundresses' +p243246 +sg225232 +S'Herman van Swanevelt' +p243247 +sg225234 +S'etching' +p243248 +sg225236 +S'unknown date\n' +p243249 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5b1.jpg' +p243250 +sg225240 +g27 +sa(dp243251 +g225230 +S'The Grotto of the Nymph Egeria' +p243252 +sg225232 +S'Herman van Swanevelt' +p243253 +sg225234 +S'etching on laid paper' +p243254 +sg225236 +S'unknown date\n' +p243255 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5b0.jpg' +p243256 +sg225240 +g27 +sa(dp243257 +g225230 +S'House on a Rock' +p243258 +sg225232 +S'Herman van Swanevelt' +p243259 +sg225234 +S'etching' +p243260 +sg225236 +S'unknown date\n' +p243261 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5af.jpg' +p243262 +sg225240 +g27 +sa(dp243263 +g225230 +S'Mercury Silencing Battus' +p243264 +sg225232 +S'Herman van Swanevelt' +p243265 +sg225234 +S'etching' +p243266 +sg225236 +S'unknown date\n' +p243267 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5a6.jpg' +p243268 +sg225240 +g27 +sa(dp243269 +g225230 +S'Battus Transformed into Stone' +p243270 +sg225232 +S'Herman van Swanevelt' +p243271 +sg225234 +S'etching' +p243272 +sg225236 +S'unknown date\n' +p243273 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5a8.jpg' +p243274 +sg225240 +g27 +sa(dp243275 +g225230 +S'The Little Angels on the Hill' +p243276 +sg225232 +S'Herman van Swanevelt' +p243277 +sg225234 +S'etching' +p243278 +sg225236 +S'unknown date\n' +p243279 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5a2.jpg' +p243280 +sg225240 +g27 +sa(dp243281 +g225230 +S'The Large Tree and the Cascade' +p243282 +sg225232 +S'Herman van Swanevelt' +p243283 +sg225234 +S'etching' +p243284 +sg225236 +S'unknown date\n' +p243285 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5a3.jpg' +p243286 +sg225240 +g27 +sa(dp243287 +g225230 +S'The Donkey Led to the River' +p243288 +sg225232 +S'Herman van Swanevelt' +p243289 +sg225234 +S'etching' +p243290 +sg225236 +S'unknown date\n' +p243291 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5a4.jpg' +p243292 +sg225240 +g27 +sa(dp243293 +g225230 +S'The Cave' +p243294 +sg225232 +S'Herman van Swanevelt' +p243295 +sg225234 +S'etching' +p243296 +sg225236 +S'unknown date\n' +p243297 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5a5.jpg' +p243298 +sg225240 +g27 +sa(dp243299 +g225230 +S'Mary Magdalene Repentant' +p243300 +sg225232 +S'Herman van Swanevelt' +p243301 +sg225234 +S'etching' +p243302 +sg225236 +S'unknown date\n' +p243303 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d59d.jpg' +p243304 +sg225240 +g27 +sa(dp243305 +g225230 +S'Devil Tempting St. Anthony' +p243306 +sg225232 +S'Herman van Swanevelt' +p243307 +sg225234 +S'etching' +p243308 +sg225236 +S'unknown date\n' +p243309 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d59e.jpg' +p243310 +sg225240 +g27 +sa(dp243311 +g225230 +S'Saint Jerome in the Wilderness' +p243312 +sg225232 +S'Herman van Swanevelt' +p243313 +sg225234 +S'etching' +p243314 +sg225236 +S'unknown date\n' +p243315 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d59f.jpg' +p243316 +sg225240 +g27 +sa(dp243317 +g225230 +S'Saints Paul and Anthony by the Entrance to a Cave' +p243318 +sg225232 +S'Herman van Swanevelt' +p243319 +sg225234 +S'etching' +p243320 +sg225236 +S'unknown date\n' +p243321 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5a0.jpg' +p243322 +sg225240 +g27 +sa(dp243323 +g225230 +S'The Mule Driver' +p243324 +sg225232 +S'Herman van Swanevelt' +p243325 +sg225234 +S'etching' +p243326 +sg225236 +S'unknown date\n' +p243327 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5bb.jpg' +p243328 +sg225240 +g27 +sa(dp243329 +g225230 +S'The Mountain' +p243330 +sg225232 +S'Herman van Swanevelt' +p243331 +sg225234 +S'etching' +p243332 +sg225236 +S'unknown date\n' +p243333 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5ba.jpg' +p243334 +sg225240 +g27 +sa(dp243335 +g225230 +S'The Large Cascade' +p243336 +sg225232 +S'Herman van Swanevelt' +p243337 +sg225234 +S'etching' +p243338 +sg225236 +S'unknown date\n' +p243339 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5b9.jpg' +p243340 +sg225240 +g27 +sa(dp243341 +g225230 +S'A Group of Trees' +p243342 +sg225232 +S'Herman van Swanevelt' +p243343 +sg225234 +S'etching' +p243344 +sg225236 +S'unknown date\n' +p243345 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5b8.jpg' +p243346 +sg225240 +g27 +sa(dp243347 +g225230 +S'Balaam and the Ass' +p243348 +sg225232 +S'Herman van Swanevelt' +p243349 +sg225234 +S'etching' +p243350 +sg225236 +S'unknown date\n' +p243351 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5a1.jpg' +p243352 +sg225240 +g27 +sa(dp243353 +g225230 +S'Two Nymphs and a Satyr before a Large Vat' +p243354 +sg225232 +S'Herman van Swanevelt' +p243355 +sg225234 +S'etching' +p243356 +sg225236 +S'unknown date\n' +p243357 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3f9.jpg' +p243358 +sg225240 +g27 +sa(dp243359 +g225230 +S'John the Baptist in the Wilderness' +p243360 +sg225232 +S'Herman van Swanevelt' +p243361 +sg225234 +S'etching' +p243362 +sg225236 +S'unknown date\n' +p243363 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3f8.jpg' +p243364 +sg225240 +g27 +sa(dp243365 +g225230 +S'Temptation of Christ' +p243366 +sg225232 +S'Herman van Swanevelt' +p243367 +sg225234 +S'etching' +p243368 +sg225236 +S'unknown date\n' +p243369 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3f7.jpg' +p243370 +sg225240 +g27 +sa(dp243371 +g225230 +S'The Fishermen' +p243372 +sg225232 +S'Artist Information (' +p243373 +sg225234 +S'Dutch, c. 1600 - 1655' +p243374 +sg225236 +S'(artist after)' +p243375 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d428.jpg' +p243376 +sg225240 +g27 +sa(dp243377 +g225230 +S'The Antique Sarcophagus' +p243378 +sg225232 +S'Artist Information (' +p243379 +sg225234 +S'Dutch, c. 1600 - 1655' +p243380 +sg225236 +S'(artist after)' +p243381 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d427.jpg' +p243382 +sg225240 +g27 +sa(dp243383 +g225230 +S'Two Travelers and a Peddler' +p243384 +sg225232 +S'Artist Information (' +p243385 +sg225234 +S'Dutch, c. 1600 - 1655' +p243386 +sg225236 +S'(artist after)' +p243387 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d429.jpg' +p243388 +sg225240 +g27 +sa(dp243389 +g225230 +S'Satyr Family Seated under a Tree' +p243390 +sg225232 +S'Artist Information (' +p243391 +sg225234 +S'Dutch, c. 1600 - 1655' +p243392 +sg225236 +S'(artist after)' +p243393 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5c0.jpg' +p243394 +sg225240 +g27 +sa(dp243395 +g225230 +S'Saint George and the Dragon' +p243396 +sg225232 +S'Giuseppe Scolari' +p243397 +sg225234 +S'woodcut' +p243398 +sg225236 +S'unknown date\n' +p243399 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8cd.jpg' +p243400 +sg225240 +g27 +sa(dp243401 +g225230 +S'Henri II, King of France' +p243402 +sg225232 +S'Nicolaus Beatrizet' +p243403 +sg225234 +S'engraving' +p243404 +sg225236 +S'1556' +p243405 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a00084c2.jpg' +p243406 +sg225240 +g27 +sa(dp243407 +g225230 +S'Negro Feeding a Horse' +p243408 +sg225232 +S'Stefano Della Bella' +p243409 +sg225234 +S'etching' +p243410 +sg225236 +S'probably 1662' +p243411 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c907.jpg' +p243412 +sg225240 +g27 +sa(dp243413 +g225230 +S'Four Turks Wearing Turbans' +p243414 +sg225232 +S'Stefano Della Bella' +p243415 +sg225234 +S'etching' +p243416 +sg225236 +S'probably 1662' +p243417 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c908.jpg' +p243418 +sg225240 +g27 +sa(dp243419 +g225230 +S'The Animals Going toward the Ark' +p243420 +sg225232 +S'Giovanni Benedetto Castiglione' +p243421 +sg225234 +S'etching on laid paper' +p243422 +sg225236 +S'1650/1655' +p243423 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a000658e.jpg' +p243424 +sg225240 +g27 +sa(dp243425 +g225230 +S'Riders Carrying Bows and Javelins' +p243426 +sg225232 +S'Artist Information (' +p243427 +sg225234 +S'(artist after)' +p243428 +sg225236 +S'\n' +p243429 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbb9.jpg' +p243430 +sg225240 +g27 +sa(dp243431 +g225230 +S'Moses Striking the Rock' +p243432 +sg225232 +S'Artist Information (' +p243433 +sg225234 +S'(artist after)' +p243434 +sg225236 +S'\n' +p243435 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008467.jpg' +p243436 +sg225240 +g27 +sa(dp243437 +g225230 +S'Moses Striking the Rock' +p243438 +sg225232 +S'Lorenzo de Musi' +p243439 +sg225234 +S'engraving' +p243440 +sg225236 +S'unknown date\n' +p243441 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c844.jpg' +p243442 +sg225240 +g27 +sa(dp243443 +g225230 +S'Title Page for "Divers paysages"' +p243444 +sg225232 +S'Stefano Della Bella' +p243445 +sg225234 +S'etching' +p243446 +sg225236 +S'in or before 1647' +p243447 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c91f.jpg' +p243448 +sg225240 +g27 +sa(dp243449 +g225230 +S'Landscape with Peasant Preparing to Cross a Stream' +p243450 +sg225232 +S'Stefano Della Bella' +p243451 +sg225234 +S'etching' +p243452 +sg225236 +S'in or before 1647' +p243453 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c920.jpg' +p243454 +sg225240 +g27 +sa(dp243455 +g225230 +S'Travelers Fording a Stream' +p243456 +sg225232 +S'Stefano Della Bella' +p243457 +sg225234 +S'etching' +p243458 +sg225236 +S'in or before 1647' +p243459 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c921.jpg' +p243460 +sg225240 +g27 +sa(dp243461 +g225230 +S'Landscape with Ruins' +p243462 +sg225232 +S'Stefano Della Bella' +p243463 +sg225234 +S'etching' +p243464 +sg225236 +S'in or before 1647' +p243465 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c922.jpg' +p243466 +sg225240 +g27 +sa(dp243467 +g225230 +S'Landscape with Deer Hunt' +p243468 +sg225232 +S'Stefano Della Bella' +p243469 +sg225234 +S'etching' +p243470 +sg225236 +S'in or before 1647' +p243471 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c923.jpg' +p243472 +sg225240 +g27 +sa(dp243473 +g225230 +S'Landscape with Fisherman Carrying his Net' +p243474 +sg225232 +S'Stefano Della Bella' +p243475 +sg225234 +S'etching' +p243476 +sg225236 +S'in or before 1647' +p243477 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c924.jpg' +p243478 +sg225240 +g27 +sa(dp243479 +g225230 +S'Boats on the Seashore' +p243480 +sg225232 +S'Stefano Della Bella' +p243481 +sg225234 +S'etching' +p243482 +sg225236 +S'in or before 1647' +p243483 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c925.jpg' +p243484 +sg225240 +g27 +sa(dp243485 +g225230 +S'Two Galleys and their Launches' +p243486 +sg225232 +S'Stefano Della Bella' +p243487 +sg225234 +S'etching' +p243488 +sg225236 +S'in or before 1647' +p243489 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c926.jpg' +p243490 +sg225240 +g27 +sa(dp243491 +g225230 +S'Galloping Horsemen' +p243492 +sg225232 +S'Stefano Della Bella' +p243493 +sg225234 +S'etching' +p243494 +sg225236 +S'in or before 1647' +p243495 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c927.jpg' +p243496 +sg225240 +g27 +sa(dp243497 +g225230 +S'Landscape with Windmill' +p243498 +sg225232 +S'Stefano Della Bella' +p243499 +sg225234 +S'etching' +p243500 +sg225236 +S'in or before 1647' +p243501 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c928.jpg' +p243502 +sg225240 +g27 +sa(dp243503 +g225230 +S'Landscape with Shepherd Guarding his Flock' +p243504 +sg225232 +S'Stefano Della Bella' +p243505 +sg225234 +S'etching' +p243506 +sg225236 +S'in or before 1647' +p243507 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c929.jpg' +p243508 +sg225240 +g27 +sa(dp243509 +g225230 +S'Campagna Scene with Artist Sketching' +p243510 +sg225232 +S'Stefano Della Bella' +p243511 +sg225234 +S'etching' +p243512 +sg225236 +S'in or before 1647' +p243513 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c92a.jpg' +p243514 +sg225240 +g27 +sa(dp243515 +g225230 +S'Saints on Clouds' +p243516 +sg225232 +S'Italian 16th Century' +p243517 +sg225234 +S'overall: 20.8 x 39.4 cm (8 3/16 x 15 1/2 in.)' +p243518 +sg225236 +S'\npen and brown ink with brown wash heightened with white over black chalk on blue paper' +p243519 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a0007525.jpg' +p243520 +sg225240 +g27 +sa(dp243521 +g225230 +S'The Assumption of the Virgin' +p243522 +sg225232 +S'Morazzone' +p243523 +sg225234 +S'pen and brown ink with brown wash over graphite on laid paper' +p243524 +sg225236 +S'unknown date\n' +p243525 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074ba.jpg' +p243526 +sg225240 +g27 +sa(dp243527 +g225230 +S'Bust of Two Men [recto]' +p243528 +sg225232 +S'Sperandio' +p243529 +sg225234 +S', unknown date' +p243530 +sg225236 +S'\n' +p243531 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074e1.jpg' +p243532 +sg225240 +g27 +sa(dp243533 +g225230 +S'Standing Young Man [verso]' +p243534 +sg225232 +S'Sperandio' +p243535 +sg225234 +S', unknown date' +p243536 +sg225236 +S'\n' +p243537 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074e2.jpg' +p243538 +sg225240 +g27 +sa(dp243539 +g225230 +S'Fisherman in a River Landscape' +p243540 +sg225232 +S'Allart van Everdingen' +p243541 +sg225234 +S'pen and brush and brown ink' +p243542 +sg225236 +S'unknown date\n' +p243543 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a000723b.jpg' +p243544 +sg225240 +g27 +sa(dp243545 +g225230 +S'Reclining Woman' +p243546 +sg225232 +S'Gustav Klimt' +p243547 +sg225234 +S'red crayon (on Japan paper?)' +p243548 +sg225236 +S'c. 1909' +p243549 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00069/a00069bd.jpg' +p243550 +sg225240 +g27 +sa(dp243551 +g225230 +S"View of the Castle Sant'Angelo and the Ospedale di Santo Spirito [recto]" +p243552 +sg225232 +S'\xc3\x89tienne Dup\xc3\xa9rac' +p243553 +sg225234 +S', c. 1552/1566' +p243554 +sg225236 +S'\n' +p243555 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ecb.jpg' +p243556 +sg225240 +g27 +sa(dp243557 +g225230 +S'View of the Tiber; Copy of a Roman Sculpture of a Bacchante [verso]' +p243558 +sg225232 +S'\xc3\x89tienne Dup\xc3\xa9rac' +p243559 +sg225234 +S', c. 1552/1566' +p243560 +sg225236 +S'\n' +p243561 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ea0.jpg' +p243562 +sg225240 +g27 +sa(dp243563 +g225230 +S'Mercury and Argus' +p243564 +sg225232 +S'Joachim Anthonisz Wtewael' +p243565 +sg225234 +S', unknown date' +p243566 +sg225236 +S'\n' +p243567 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007244.jpg' +p243568 +sg225240 +g27 +sa(dp243569 +g225230 +S'Distraction' +p243570 +sg225232 +S'Arthur Dove' +p243571 +sg225234 +S'brush and black ink and watercolor' +p243572 +sg225236 +S'1928' +p243573 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008d7.jpg' +p243574 +sg225240 +g27 +sa(dp243575 +g225230 +S'Bridge over an Estuary' +p243576 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p243577 +sg225234 +S'charcoal and pen and brown ink on laid paper' +p243578 +sg225236 +S'unknown date\n' +p243579 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dd6.jpg' +p243580 +sg225240 +g27 +sa(dp243581 +g225232 +S'Josef Hoffmann' +p243582 +sg225240 +g27 +sg225234 +S'black India ink over graphite on blue-lined paper mounted to white wove paper' +p243583 +sg225230 +S'Fabric Design: Triangles, Squares and Rectangles' +p243584 +sg225236 +S'c. 1915' +p243585 +sa(dp243586 +g225232 +S'Artist Information (' +p243587 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p243588 +sg225236 +S'(technical collaborator)' +p243589 +sa(dp243590 +g225232 +S'Artist Information (' +p243591 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p243592 +sg225236 +S'(technical collaborator)' +p243593 +sa(dp243594 +g225232 +S'Donald Judd' +p243595 +sg225240 +g27 +sg225234 +S'woodcut in cerulean blue on cartridge paper' +p243596 +sg225230 +S'Untitled' +p243597 +sg225236 +S'1961/1963 (printed 1968/1969)' +p243598 +sa(dp243599 +g225232 +S'Donald Judd' +p243600 +sg225240 +g27 +sg225234 +S'woodcut in cerulean blue on cartridge paper' +p243601 +sg225230 +S'Untitled' +p243602 +sg225236 +S'1961/1963 (printed 1968/1969)' +p243603 +sa(dp243604 +g225232 +S'Claes Oldenburg' +p243605 +sg225240 +g27 +sg225234 +S'color lithograph on wove paper' +p243606 +sg225230 +S'Proposal for a Broome Street Expressway in the Form of a Cigarette and Smoke' +p243607 +sg225236 +S'1973' +p243608 +sa(dp243609 +g225230 +S'The Triumph of Galatea' +p243610 +sg225232 +S'Girolamo Pennacchi' +p243611 +sg225234 +S'pen and brown ink with brown wash, heightened with white, over black chalk' +p243612 +sg225236 +S'c. 1535' +p243613 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a0007578.jpg' +p243614 +sg225240 +g27 +sa(dp243615 +g225230 +S'The Sacrifice of a Goat to Jupiter' +p243616 +sg225232 +S'Giulio Romano' +p243617 +sg225234 +S'pen and brown ink with brown wash over black chalk on laid paper' +p243618 +sg225236 +S'unknown date\n' +p243619 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a0007541.jpg' +p243620 +sg225240 +g27 +sa(dp243621 +g225230 +S'Study of a Standing Woman' +p243622 +sg225232 +S'Italian 18th Century' +p243623 +sg225234 +S'overall (approximate): 28.1 x 12.1 cm (11 1/16 x 4 3/4 in.)' +p243624 +sg225236 +S'\nbrush and black ink with white heightening on brown washed paper' +p243625 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006df0.jpg' +p243626 +sg225240 +g27 +sa(dp243627 +g225230 +S'Apollo and Marsyas' +p243628 +sg225232 +S'Veronese' +p243629 +sg225234 +S', unknown date' +p243630 +sg225236 +S'\n' +p243631 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007448.jpg' +p243632 +sg225240 +g27 +sa(dp243633 +g225230 +S'Female Roman Statue Seen from the Back' +p243634 +sg225232 +S'Nicolas Poussin' +p243635 +sg225234 +S', unknown date' +p243636 +sg225236 +S'\n' +p243637 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a0006583.jpg' +p243638 +sg225240 +g27 +sa(dp243639 +g225230 +S'The Apotheosis of Saint Mark [recto and verso]' +p243640 +sg225232 +S'Pietro Roselli' +p243641 +sg225234 +S'pen and brown ink over black chalk' +p243642 +sg225236 +S'unknown date\n' +p243643 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007273.jpg' +p243644 +sg225240 +g27 +sa(dp243645 +g225230 +S'The Crucifixion' +p243646 +sg225232 +S'Giovanni Battista Naldini' +p243647 +sg225234 +S', unknown date' +p243648 +sg225236 +S'\n' +p243649 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a000756f.jpg' +p243650 +sg225240 +g27 +sa(dp243651 +g225230 +S'Saint Jerome Reading in a Landscape' +p243652 +sg225232 +S'Domenico Campagnola' +p243653 +sg225234 +S'pen and brown ink on brown laid paper' +p243654 +sg225236 +S'1520s/1530s' +p243655 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022cd.jpg' +p243656 +sg225240 +g27 +sa(dp243657 +g225230 +S'The Mystic Marriage of Saint Catherine?' +p243658 +sg225232 +S'Italian 17th Century' +p243659 +sg225234 +S'overall (lunette): 19.6 x 10.5 cm (7 11/16 x 4 1/8 in.)' +p243660 +sg225236 +S'\npen and brown ink on laid paper' +p243661 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007469.jpg' +p243662 +sg225240 +g27 +sa(dp243663 +g225230 +S'Historical Scene' +p243664 +sg225232 +S'Italian 16th Century' +p243665 +sg225234 +S'overall: 42.6 x 58.3 cm (16 3/4 x 22 15/16 in.)' +p243666 +sg225236 +S'\npen and brown ink with brown wash' +p243667 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074a2.jpg' +p243668 +sg225240 +g27 +sa(dp243669 +g225230 +S'The Flood' +p243670 +sg225232 +S'Artist Information (' +p243671 +sg225234 +S'(artist after)' +p243672 +sg225236 +S'\n' +p243673 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a0007998.jpg' +p243674 +sg225240 +g27 +sa(dp243675 +g225230 +S'The Ford (Le passage du gu\xc3\xa9)' +p243676 +sg225232 +S'Claude Lorrain' +p243677 +sg225234 +S'etching' +p243678 +sg225236 +S'1634' +p243679 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089af.jpg' +p243680 +sg225240 +g27 +sa(dp243681 +g225230 +S'Cow, Bull and Calf' +p243682 +sg225232 +S'Karel Dujardin' +p243683 +sg225234 +S'etching' +p243684 +sg225236 +S'unknown date\n' +p243685 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4f5.jpg' +p243686 +sg225240 +g27 +sa(dp243687 +g225230 +S'Jan de Vos' +p243688 +sg225232 +S'Karel Dujardin' +p243689 +sg225234 +S'etching' +p243690 +sg225236 +S'unknown date\n' +p243691 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0d2.jpg' +p243692 +sg225240 +g27 +sa(dp243693 +g225230 +S'Jan de Vos' +p243694 +sg225232 +S'Karel Dujardin' +p243695 +sg225234 +S'etching' +p243696 +sg225236 +S'1662' +p243697 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0d3.jpg' +p243698 +sg225240 +g27 +sa(dp243699 +g225230 +S'Woman Crossing a Stream' +p243700 +sg225232 +S'Karel Dujardin' +p243701 +sg225234 +S'etching' +p243702 +sg225236 +S'1662' +p243703 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0db.jpg' +p243704 +sg225240 +g27 +sa(dp243705 +g225230 +S'Laocoon' +p243706 +sg225232 +S'Jean de Gourmont I' +p243707 +sg225234 +S'engraving' +p243708 +sg225236 +S'unknown date\n' +p243709 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008360.jpg' +p243710 +sg225240 +g27 +sa(dp243711 +g225230 +S'Hercules and Antaeus' +p243712 +sg225232 +S'Giovanni Pietro Possenti' +p243713 +sg225234 +S'etching' +p243714 +sg225236 +S'unknown date\n' +p243715 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c99f.jpg' +p243716 +sg225240 +g27 +sa(dp243717 +g225230 +S'The Recording Angel' +p243718 +sg225232 +S'Master RG' +p243719 +sg225234 +S'etching' +p243720 +sg225236 +S'1542' +p243721 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083d3.jpg' +p243722 +sg225240 +g27 +sa(dp243723 +g225230 +S'The Annunciation' +p243724 +sg225232 +S'Carlo Maratta' +p243725 +sg225234 +S'etching' +p243726 +sg225236 +S'unknown date\n' +p243727 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c99c.jpg' +p243728 +sg225240 +g27 +sa(dp243729 +g225230 +S'Martyrdom of Saint Andrew' +p243730 +sg225232 +S'Artist Information (' +p243731 +sg225234 +S'(artist after)' +p243732 +sg225236 +S'\n' +p243733 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca13.jpg' +p243734 +sg225240 +g27 +sa(dp243735 +g225230 +S'The Virgin and Child on a Grassy Bank' +p243736 +sg225232 +S'Jan Miel' +p243737 +sg225234 +S'etching' +p243738 +sg225236 +S'unknown date\n' +p243739 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d282.jpg' +p243740 +sg225240 +g27 +sa(dp243741 +g225230 +S'Bacchanale' +p243742 +sg225232 +S'Giulio Sanuto' +p243743 +sg225234 +S'engraving' +p243744 +sg225236 +S'unknown date\n' +p243745 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8cc.jpg' +p243746 +sg225240 +g27 +sa(dp243747 +g225230 +S'Mercury Silencing Battus' +p243748 +sg225232 +S'Herman van Swanevelt' +p243749 +sg225234 +S'etching' +p243750 +sg225236 +S'unknown date\n' +p243751 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5a7.jpg' +p243752 +sg225240 +g27 +sa(dp243753 +g225230 +S'The Brazen Bull of Phalarus' +p243754 +sg225232 +S'Pierre II Woeiriot de Bouzey' +p243755 +sg225234 +S', unknown date' +p243756 +sg225236 +S'\n' +p243757 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083b2.jpg' +p243758 +sg225240 +g27 +sa(dp243759 +g225230 +S'Heraclius Sentencing the Tyrant Phocas' +p243760 +sg225232 +S'Pierre II Woeiriot de Bouzey' +p243761 +sg225234 +S', unknown date' +p243762 +sg225236 +S'\n' +p243763 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083c7.jpg' +p243764 +sg225240 +g27 +sa(dp243765 +g225230 +S'The Wife of Hasdrubal Throws Herself on the Fire' +p243766 +sg225232 +S'Pierre II Woeiriot de Bouzey' +p243767 +sg225234 +S', unknown date' +p243768 +sg225236 +S'\n' +p243769 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083bd.jpg' +p243770 +sg225240 +g27 +sa(dp243771 +g225230 +S"The Interior of Saint Peter's, Rome" +p243772 +sg225232 +S'Italian 17th Century' +p243773 +sg225234 +S'overall: 33.5 x 45.8 cm (13 3/16 x 18 1/16 in.)' +p243774 +sg225236 +S'\npen and brown ink with brown wash and watercolor heightened with white over black chalk on laid paper' +p243775 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00057/a0005709.jpg' +p243776 +sg225240 +g27 +sa(dp243777 +g225230 +S"The Interior of Saint Peter's, Rome" +p243778 +sg225232 +S'Italian 17th Century' +p243779 +sg225234 +S'Overall: 32.9 x 43 cm (12 15/16 x 16 15/16 in.)\r\nsupport: 39.5 x 50.5 cm (15 9/16 x 19 7/8 in.)' +p243780 +sg225236 +S'\npen and brown ink with brown wash and watercolor heightened with white over black chalk on laid paper' +p243781 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074d4.jpg' +p243782 +sg225240 +g27 +sa(dp243783 +g225230 +S'Saint Anne Received by the Virgin and Christ' +p243784 +sg225232 +S'Luca Giordano' +p243785 +sg225234 +S'etching' +p243786 +sg225236 +S'unknown date\n' +p243787 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca05.jpg' +p243788 +sg225240 +g27 +sa(dp243789 +g225230 +S'The Martyrdom of Saint Bartholomew' +p243790 +sg225232 +S'Jusepe de Ribera' +p243791 +sg225234 +S'etching' +p243792 +sg225236 +S'1624' +p243793 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a00067ce.jpg' +p243794 +sg225240 +g27 +sa(dp243795 +g225230 +S'Pope Sixtus V' +p243796 +sg225232 +S'Prospero Bresciano' +p243797 +sg225234 +S'etching' +p243798 +sg225236 +S'1589' +p243799 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9f4.jpg' +p243800 +sg225240 +g27 +sa(dp243801 +g225230 +S'The Annunciation' +p243802 +sg225232 +S'Artist Information (' +p243803 +sg225234 +S'(artist after)' +p243804 +sg225236 +S'\n' +p243805 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf50.jpg' +p243806 +sg225240 +g27 +sa(dp243807 +g225232 +S'Artist Information (' +p243808 +sg225240 +g27 +sg225234 +S'(artist after)' +p243809 +sg225230 +S'Studii di Pittura Gia Dissegnati da Giambattista Piazetta' +p243810 +sg225236 +S'\n' +p243811 +sa(dp243812 +g225230 +S'Male Saint Standing with Folded Arms, Facing to the Right' +p243813 +sg225232 +S'Artist Information (' +p243814 +sg225234 +S'(artist after)' +p243815 +sg225236 +S'\n' +p243816 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a000769d.jpg' +p243817 +sg225240 +g27 +sa(dp243818 +g225230 +S'Saint John the Evangelist' +p243819 +sg225232 +S'Artist Information (' +p243820 +sg225234 +S'(artist after)' +p243821 +sg225236 +S'\n' +p243822 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a00077e7.jpg' +p243823 +sg225240 +g27 +sa(dp243824 +g225230 +S'Saint John the Evangelist' +p243825 +sg225232 +S'Artist Information (' +p243826 +sg225234 +S'(artist after)' +p243827 +sg225236 +S'\n' +p243828 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a00077e5.jpg' +p243829 +sg225240 +g27 +sa(dp243830 +g225230 +S'Saint John the Evangelist' +p243831 +sg225232 +S'Artist Information (' +p243832 +sg225234 +S'(artist after)' +p243833 +sg225236 +S'\n' +p243834 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a00077eb.jpg' +p243835 +sg225240 +g27 +sa(dp243836 +g225230 +S'Man in Chains' +p243837 +sg225232 +S'Artist Information (' +p243838 +sg225234 +S'(artist after)' +p243839 +sg225236 +S'\n' +p243840 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a0007699.jpg' +p243841 +sg225240 +g27 +sa(dp243842 +g225230 +S'Male Saint Standing, with Folded Arms, Facing to the Left' +p243843 +sg225232 +S'Artist Information (' +p243844 +sg225234 +S'(artist after)' +p243845 +sg225236 +S'\n' +p243846 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a000769a.jpg' +p243847 +sg225240 +g27 +sa(dp243848 +g225230 +S'Male Saint Standing, with Folded Arms, Facing to the Left' +p243849 +sg225232 +S'Artist Information (' +p243850 +sg225234 +S'(artist after)' +p243851 +sg225236 +S'\n' +p243852 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a000769b.jpg' +p243853 +sg225240 +g27 +sa(dp243854 +g225230 +S'Algernon Sidney' +p243855 +sg225232 +S'Artist Information (' +p243856 +sg225234 +S'(artist after)' +p243857 +sg225236 +S'\n' +p243858 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a000790d.jpg' +p243859 +sg225240 +g27 +sa(dp243860 +g225230 +S'The Dissolute Household' +p243861 +sg225232 +S'Pieter Balten' +p243862 +sg225234 +S'engraving' +p243863 +sg225236 +S'unknown date\n' +p243864 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ced7.jpg' +p243865 +sg225240 +g27 +sa(dp243866 +g225230 +S'The Procuress' +p243867 +sg225232 +S'Artist Information (' +p243868 +sg225234 +S'(artist after)' +p243869 +sg225236 +S'\n' +p243870 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2d7.jpg' +p243871 +sg225240 +g27 +sa(dp243872 +g225230 +S'Artist Painting a Nude Woman: Allegory of Visual Perception' +p243873 +sg225232 +S'Artist Information (' +p243874 +sg225234 +S'(artist after)' +p243875 +sg225236 +S'\n' +p243876 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d048.jpg' +p243877 +sg225240 +g27 +sa(dp243878 +g225232 +S'Artist Information (' +p243879 +sg225240 +g27 +sg225234 +S'(artist after)' +p243880 +sg225230 +S'The Prodigal Son as a Swineherd' +p243881 +sg225236 +S'\n' +p243882 +sa(dp243883 +g225230 +S'Saint James of Compostela' +p243884 +sg225232 +S'Artist Information (' +p243885 +sg225234 +S'(artist after)' +p243886 +sg225236 +S'\n' +p243887 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00066/a0006655.jpg' +p243888 +sg225240 +g27 +sa(dp243889 +g225230 +S'Hercules Fighting the Fury and the Discord' +p243890 +sg225232 +S'Artist Information (' +p243891 +sg225234 +S'(artist after)' +p243892 +sg225236 +S'\n' +p243893 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00017/a000177c.jpg' +p243894 +sg225240 +g27 +sa(dp243895 +g225230 +S'Martyrdom of Saint Agatha' +p243896 +sg225232 +S'Artist Information (' +p243897 +sg225234 +S'(artist after)' +p243898 +sg225236 +S'\n' +p243899 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cba4.jpg' +p243900 +sg225240 +g27 +sa(dp243901 +g225232 +S'Henri Matisse' +p243902 +sg225240 +g27 +sg225234 +S'etching' +p243903 +sg225230 +S'Outamaro (Portrait of Margot Matisse?)' +p243904 +sg225236 +S'1914' +p243905 +sa(dp243906 +g225232 +S'Cornelis Schut I' +p243907 +sg225240 +g27 +sg225234 +S'bound volume with 149 etchings and engravings' +p243908 +sg225230 +S'Album of Cornelis Schut Etchings and Engravings' +p243909 +sg225236 +S'unknown date\n' +p243910 +sa(dp243911 +g225230 +S'Three Peasants and a Woman' +p243912 +sg225232 +S'Pieter Molijn' +p243913 +sg225234 +S'etching' +p243914 +sg225236 +S'1626' +p243915 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d287.jpg' +p243916 +sg225240 +g27 +sa(dp243917 +g225230 +S'Woman and Child Standing near a Seated Peasant' +p243918 +sg225232 +S'Pieter Molijn' +p243919 +sg225234 +S'etching' +p243920 +sg225236 +S'probably 1626' +p243921 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d286.jpg' +p243922 +sg225240 +g27 +sa(dp243923 +g225230 +S'Woman Conversing with a Peasant' +p243924 +sg225232 +S'Pieter Molijn' +p243925 +sg225234 +S'etching' +p243926 +sg225236 +S'probably 1626' +p243927 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d284.jpg' +p243928 +sg225240 +g27 +sa(dp243929 +g225230 +S'Soldier Receiving Orders from a Seated Officer' +p243930 +sg225232 +S'Pieter Molijn' +p243931 +sg225234 +S'etching' +p243932 +sg225236 +S'probably 1626' +p243933 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d285.jpg' +p243934 +sg225240 +g27 +sa(dp243935 +g225232 +S'Artist Information (' +p243936 +sg225240 +g27 +sg225234 +S'(artist after)' +p243937 +sg225230 +S'Lion Hunt' +p243938 +sg225236 +S'\n' +p243939 +sa(dp243940 +g225230 +S'Birth of the Virgin' +p243941 +sg225232 +S'Artist Information (' +p243942 +sg225234 +S'Italian, 1709 - 1769' +p243943 +sg225236 +S'(related artist)' +p243944 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007456.jpg' +p243945 +sg225240 +g27 +sa(dp243946 +g225230 +S'Christ among the Doctors' +p243947 +sg225232 +S'Artist Information (' +p243948 +sg225234 +S'Italian, 1709 - 1769' +p243949 +sg225236 +S'(related artist)' +p243950 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007451.jpg' +p243951 +sg225240 +g27 +sa(dp243952 +g225230 +S'Christ and the Woman of Samaria' +p243953 +sg225232 +S'Artist Information (' +p243954 +sg225234 +S'Italian, 1709 - 1769' +p243955 +sg225236 +S'(related artist)' +p243956 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a000744e.jpg' +p243957 +sg225240 +g27 +sa(dp243958 +g225230 +S'Death of a Holy Friar' +p243959 +sg225232 +S'Artist Information (' +p243960 +sg225234 +S'Italian, 1709 - 1769' +p243961 +sg225236 +S'(related artist)' +p243962 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007455.jpg' +p243963 +sg225240 +g27 +sa(dp243964 +g225230 +S'Death of the Magdalene' +p243965 +sg225232 +S'Artist Information (' +p243966 +sg225234 +S'Italian, 1709 - 1769' +p243967 +sg225236 +S'(related artist)' +p243968 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a000744f.jpg' +p243969 +sg225240 +g27 +sa(dp243970 +g225230 +S'Death of Saint Jerome' +p243971 +sg225232 +S'Artist Information (' +p243972 +sg225234 +S'Italian, 1709 - 1769' +p243973 +sg225236 +S'(related artist)' +p243974 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007450.jpg' +p243975 +sg225240 +g27 +sa(dp243976 +g225230 +S'The Deposition' +p243977 +sg225232 +S'Artist Information (' +p243978 +sg225234 +S'Italian, 1709 - 1769' +p243979 +sg225236 +S'(related artist)' +p243980 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007453.jpg' +p243981 +sg225240 +g27 +sa(dp243982 +g225230 +S'Funeral Procession of a Saint with Angels' +p243983 +sg225232 +S'Artist Information (' +p243984 +sg225234 +S'Italian, 1709 - 1769' +p243985 +sg225236 +S'(related artist)' +p243986 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007452.jpg' +p243987 +sg225240 +g27 +sa(dp243988 +g225230 +S'Last Communion of Saint Jerome' +p243989 +sg225232 +S'Artist Information (' +p243990 +sg225234 +S'Italian, 1709 - 1769' +p243991 +sg225236 +S'(related artist)' +p243992 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007454.jpg' +p243993 +sg225240 +g27 +sa(dp243994 +g225230 +S'Martyrdom of a Female Saint' +p243995 +sg225232 +S'Artist Information (' +p243996 +sg225234 +S'Italian, 1709 - 1769' +p243997 +sg225236 +S'(related artist)' +p243998 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007459.jpg' +p243999 +sg225240 +g27 +sa(dp244000 +g225230 +S'Martyrdom of Saint Andrew' +p244001 +sg225232 +S'Artist Information (' +p244002 +sg225234 +S'Italian, 1709 - 1769' +p244003 +sg225236 +S'(related artist)' +p244004 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a000745e.jpg' +p244005 +sg225240 +g27 +sa(dp244006 +g225230 +S'Moses and the Brazen Serpent' +p244007 +sg225232 +S'Artist Information (' +p244008 +sg225234 +S'Italian, 1709 - 1769' +p244009 +sg225236 +S'(related artist)' +p244010 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007457.jpg' +p244011 +sg225240 +g27 +sa(dp244012 +g225230 +S'Preaching of John the Baptist in the Wilderness' +p244013 +sg225232 +S'Artist Information (' +p244014 +sg225234 +S'Italian, 1709 - 1769' +p244015 +sg225236 +S'(related artist)' +p244016 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a000745a.jpg' +p244017 +sg225240 +g27 +sa(dp244018 +g225230 +S'The Raising of Lazarus' +p244019 +sg225232 +S'Artist Information (' +p244020 +sg225234 +S'Italian, 1709 - 1769' +p244021 +sg225236 +S'(related artist)' +p244022 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007458.jpg' +p244023 +sg225240 +g27 +sa(dp244024 +g225230 +S'The Resurrection' +p244025 +sg225232 +S'Artist Information (' +p244026 +sg225234 +S'Italian, 1709 - 1769' +p244027 +sg225236 +S'(related artist)' +p244028 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a000745b.jpg' +p244029 +sg225240 +g27 +sa(dp244030 +g225230 +S'Saint Luke Painting the Virgin' +p244031 +sg225232 +S'Artist Information (' +p244032 +sg225234 +S'Italian, 1709 - 1769' +p244033 +sg225236 +S'(related artist)' +p244034 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a000745c.jpg' +p244035 +sg225240 +g27 +sa(dp244036 +g225230 +S'Supper at Emmaus' +p244037 +sg225232 +S'Artist Information (' +p244038 +sg225234 +S'Italian, 1709 - 1769' +p244039 +sg225236 +S'(related artist)' +p244040 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a000745d.jpg' +p244041 +sg225240 +g27 +sa(dp244042 +g225232 +S'M.C. Escher' +p244043 +sg225240 +g27 +sg225234 +S'linoleum cut, touched up by hand with graphite' +p244044 +sg225230 +S'Skull' +p244045 +sg225236 +S'1917' +p244046 +sa(dp244047 +g225230 +S'Eight Heads' +p244048 +sg225232 +S'M.C. Escher' +p244049 +sg225234 +S'woodcut, block printed four times' +p244050 +sg225236 +S'1922' +p244051 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a000046d.jpg' +p244052 +sg225240 +S'Created while Escher was still a student at the School for Architecture and Decorative Arts in Haarlem, this is the first print to demonstrate his theory of the regular division of a plane. Escher cut eight heads -- four male and four female -- in the original wood block. The final image was achieved by printing the block four times.\n ' +p244053 +sa(dp244054 +g225232 +S'M.C. Escher' +p244055 +sg225240 +g27 +sg225234 +S'woodcut on lighter Oriental paper' +p244056 +sg225230 +S'Saint Vincent Martyr' +p244057 +sg225236 +S'1925' +p244058 +sa(dp244059 +g225232 +S'M.C. Escher' +p244060 +sg225240 +g27 +sg225234 +S'woodcut' +p244061 +sg225230 +S'Vitorchiano nel Cimino' +p244062 +sg225236 +S'1925' +p244063 +sa(dp244064 +g225232 +S'M.C. Escher' +p244065 +sg225240 +g27 +sg225234 +S'woodcut, printed from two blocks' +p244066 +sg225230 +S'The Six Days of the Creation' +p244067 +sg225236 +S'1926' +p244068 +sa(dp244069 +g225232 +S'M.C. Escher' +p244070 +sg225240 +g27 +sg225234 +S'woodcut' +p244071 +sg225230 +S'The First Day of the Creation' +p244072 +sg225236 +S'1925' +p244073 +sa(dp244074 +g225230 +S'The Second Day of the Creation' +p244075 +sg225232 +S'M.C. Escher' +p244076 +sg225234 +S'woodcut' +p244077 +sg225236 +S'1925' +p244078 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a00002ab.jpg' +p244079 +sg225240 +S'From December 1925 to March 1926 Escher worked on a series of six woodcuts on the theme of the Creation. This one depicts the division of sky and water. A Dutch educational association bought 300 impressions of this woodcut to hang in public schools. \n ' +p244080 +sa(dp244081 +g225230 +S'The Third Day of the Creation' +p244082 +sg225232 +S'M.C. Escher' +p244083 +sg225234 +S'woodcut' +p244084 +sg225236 +S'1926' +p244085 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a00002ac.jpg' +p244086 +sg225240 +g27 +sa(dp244087 +g225230 +S'The Fourth Day of the Creation' +p244088 +sg225232 +S'M.C. Escher' +p244089 +sg225234 +S'woodcut' +p244090 +sg225236 +S'1926' +p244091 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a00002ad.jpg' +p244092 +sg225240 +g27 +sa(dp244093 +g225232 +S'M.C. Escher' +p244094 +sg225240 +g27 +sg225234 +S'woodcut' +p244095 +sg225230 +S'The Fifth Day of the Creation' +p244096 +sg225236 +S'1926' +p244097 +sa(dp244098 +g225232 +S'M.C. Escher' +p244099 +sg225240 +g27 +sg225234 +S'woodcut' +p244100 +sg225230 +S'The Sixth Day of the Creation' +p244101 +sg225236 +S'1926' +p244102 +sa(dp244103 +g225230 +S'The Fall of Man' +p244104 +sg225232 +S'M.C. Escher' +p244105 +sg225234 +S'woodcut' +p244106 +sg225236 +S'1927' +p244107 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b34.jpg' +p244108 +sg225240 +g27 +sa(dp244109 +g225230 +S'Rome and the Griffin of Borghese' +p244110 +sg225232 +S'M.C. Escher' +p244111 +sg225234 +S'woodcut in dark gray and black, printed from two blocks' +p244112 +sg225236 +S'1927' +p244113 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000c2.jpg' +p244114 +sg225240 +g27 +sa(dp244115 +g225232 +S'M.C. Escher' +p244116 +sg225240 +g27 +sg225234 +S'woodcut' +p244117 +sg225230 +S'Castle in the Air' +p244118 +sg225236 +S'1928' +p244119 +sa(dp244120 +g225232 +S'M.C. Escher' +p244121 +sg225240 +g27 +sg225234 +S'woodcut' +p244122 +sg225230 +S'Tower of Babel' +p244123 +sg225236 +S'1928' +p244124 +sa(dp244125 +g225232 +S'M.C. Escher' +p244126 +sg225240 +g27 +sg225234 +S'woodcut' +p244127 +sg225230 +S'La Cathedrale engloutie (The Drowned Cathedral)' +p244128 +sg225236 +S'1929' +p244129 +sa(dp244130 +g225230 +S'Infant (A.E. Escher)' +p244131 +sg225232 +S'M.C. Escher' +p244132 +sg225234 +S'woodcut in red-brown and two tones of pink, printed from three blocks' +p244133 +sg225236 +S'1929' +p244134 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b49.jpg' +p244135 +sg225240 +g27 +sa(dp244136 +g225232 +S'M.C. Escher' +p244137 +sg225240 +g27 +sg225234 +S'lithograph' +p244138 +sg225230 +S'Goriano Sicoli, Abruzzi' +p244139 +sg225236 +S'1929' +p244140 +sa(dp244141 +g225230 +S'Self-Portrait' +p244142 +sg225232 +S'M.C. Escher' +p244143 +sg225234 +S'lithograph on gray paper' +p244144 +sg225236 +S'1929' +p244145 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a000012b.jpg' +p244146 +sg225240 +S'Escher first learned to make lithographs in 1929. This is his second endeavor in the medium. Escher made self-portraits throughout his career, experimenting with various printmaking techniques that included linoleum cut, woodcut, lithography, and mezzotint.\n Lithography, in which the image is drawn with an oily medium on a stone slab, is based on the principle that oil and water repel one another. After the prepared stone is washed with water, printing ink is applied, which adheres only to the drawing.\n ' +p244147 +sa(dp244148 +g225232 +S'M.C. Escher' +p244149 +sg225240 +g27 +sg225234 +S'lithograph' +p244150 +sg225230 +S'Street in Scanno, Abruzzi' +p244151 +sg225236 +S'1930' +p244152 +sa(dp244153 +g225230 +S'Castrovalva' +p244154 +sg225232 +S'M.C. Escher' +p244155 +sg225234 +S'lithograph' +p244156 +sg225236 +S'1930' +p244157 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004ba0.jpg' +p244158 +sg225240 +S'In May and June 1929 Escher traveled through the mountainous landscape of Abruzzi, Italy, planning to produce an illustrated book on the region. This never materialized, but he did create 28 drawings on which he based prints, including this lithograph depicting the town of Castrovalva.\n ' +p244159 +sa(dp244160 +g225232 +S'M.C. Escher' +p244161 +sg225240 +g27 +sg225234 +S'lithograph' +p244162 +sg225230 +S'The Bridge' +p244163 +sg225236 +S'1930' +p244164 +sa(dp244165 +g225230 +S'Cloister near Rocca Imperiale, Calabria' +p244166 +sg225232 +S'M.C. Escher' +p244167 +sg225234 +S'lithograph' +p244168 +sg225236 +S'1931' +p244169 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b35.jpg' +p244170 +sg225240 +g27 +sa(dp244171 +g225230 +S'Atrani, Coast of Amalfi' +p244172 +sg225232 +S'M.C. Escher' +p244173 +sg225234 +S'lithograph' +p244174 +sg225236 +S'1931' +p244175 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a000018a.jpg' +p244176 +sg225240 +g27 +sa(dp244177 +g225232 +S'M.C. Escher' +p244178 +sg225240 +g27 +sg225234 +S'woodcut' +p244179 +sg225230 +S'Illustration for "The Terrible Adventures of Scholastica"' +p244180 +sg225236 +S'1931' +p244181 +sa(dp244182 +g225232 +S'M.C. Escher' +p244183 +sg225240 +g27 +sg225234 +S'woodcut' +p244184 +sg225230 +S'Sundial' +p244185 +sg225236 +S'1931' +p244186 +sa(dp244187 +g225232 +S'M.C. Escher' +p244188 +sg225240 +g27 +sg225234 +S'woodcut' +p244189 +sg225230 +S'Candle Flame' +p244190 +sg225236 +S'1956' +p244191 +sa(dp244192 +g225232 +S'M.C. Escher' +p244193 +sg225240 +g27 +sg225234 +S'woodcut' +p244194 +sg225230 +S'Emblema XI, Candle Flame' +p244195 +sg225236 +S'1931' +p244196 +sa(dp244197 +g225232 +S'M.C. Escher' +p244198 +sg225240 +g27 +sg225234 +S'wood engraving on beige Japan paper' +p244199 +sg225230 +S"Porta Maria dell'Ospidale, Ravello" +p244200 +sg225236 +S'1932' +p244201 +sa(dp244202 +g225232 +S'M.C. Escher' +p244203 +sg225240 +g27 +sg225234 +S'lithograph' +p244204 +sg225230 +S'Lion of the Fountain in the Piazza at Ravello' +p244205 +sg225236 +S'1932' +p244206 +sa(dp244207 +g225230 +S'Mummified Priests in Gangi, Sicily' +p244208 +sg225232 +S'M.C. Escher' +p244209 +sg225234 +S'lithograph' +p244210 +sg225236 +S'1932' +p244211 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b4a.jpg' +p244212 +sg225240 +g27 +sa(dp244213 +g225232 +S'M.C. Escher' +p244214 +sg225240 +g27 +sg225234 +S'wood engraving' +p244215 +sg225230 +S'Randazzo and Mount Etna, Sicily' +p244216 +sg225236 +S'1933' +p244217 +sa(dp244218 +g225230 +S'Palm' +p244219 +sg225232 +S'M.C. Escher' +p244220 +sg225234 +S'wood engraving in black and gray-green, printed from two blocks' +p244221 +sg225236 +S'1933' +p244222 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b36.jpg' +p244223 +sg225240 +g27 +sa(dp244224 +g225232 +S'M.C. Escher' +p244225 +sg225240 +g27 +sg225234 +S'woodcut in light gray, dark gray and black, printed from three blocks' +p244226 +sg225230 +S'Pineta of Calvi, Corsica' +p244227 +sg225236 +S'1933' +p244228 +sa(dp244229 +g225232 +S'M.C. Escher' +p244230 +sg225240 +g27 +sg225234 +S'wood engraving' +p244231 +sg225230 +S'Calvi, Corsica' +p244232 +sg225236 +S'1933' +p244233 +sa(dp244234 +g225232 +S'M.C. Escher' +p244235 +sg225240 +g27 +sg225234 +S'lithograph' +p244236 +sg225230 +S'Corsica, Calanche' +p244237 +sg225236 +S'1934' +p244238 +sa(dp244239 +g225232 +S'M.C. Escher' +p244240 +sg225240 +g27 +sg225234 +S'lithograph' +p244241 +sg225230 +S'Nonza, Corsica' +p244242 +sg225236 +S'1934' +p244243 +sa(dp244244 +g225230 +S'Still Life with Mirror' +p244245 +sg225232 +S'M.C. Escher' +p244246 +sg225234 +S'lithograph' +p244247 +sg225236 +S'1934' +p244248 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001c4.jpg' +p244249 +sg225240 +S"This is one of Escher's earliest prints to explore different levels of reality. The first observed reality is the mirror itself and the objects that surround it. The second is that of the street, which in turn becomes part of the room by its reflection in the mirror. Finally, the objects in front of the mirror, by their reflection, become part of the street scene. At the same time the print presents a physical impossibility: the mirror is tilted toward the ceiling yet reflects the view of the street from the window on the opposite wall.\n " +p244250 +sa(dp244251 +g225232 +S'M.C. Escher' +p244252 +sg225240 +g27 +sg225234 +S'lithograph' +p244253 +sg225230 +S'Houses in Positano' +p244254 +sg225236 +S'1934' +p244255 +sa(dp244256 +g225232 +S'M.C. Escher' +p244257 +sg225240 +g27 +sg225234 +S'wood engraving' +p244258 +sg225230 +S'Grasshopper' +p244259 +sg225236 +S'1935' +p244260 +sa(dp244261 +g225230 +S'Scarabs' +p244262 +sg225232 +S'M.C. Escher' +p244263 +sg225234 +S'wood engraving' +p244264 +sg225236 +S'1935' +p244265 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b4b.jpg' +p244266 +sg225240 +g27 +sa(dp244267 +g225232 +S'M.C. Escher' +p244268 +sg225240 +g27 +sg225234 +S'wood engraving' +p244269 +sg225230 +S'Dream' +p244270 +sg225236 +S'1935' +p244271 +sa(dp244272 +g225232 +S'M.C. Escher' +p244273 +sg225240 +g27 +sg225234 +S'woodcut in black, gray and gray-green, printed from three blocks' +p244274 +sg225230 +S'Senglea, Malta' +p244275 +sg225236 +S'1935' +p244276 +sa(dp244277 +g225232 +S'Kurt Kranz' +p244278 +sg225240 +g27 +sg225234 +S'watercolor over graphite' +p244279 +sg225230 +S'Stufengefuge' +p244280 +sg225236 +S'1973' +p244281 +sa(dp244282 +g225230 +S'Bay of New York, Sunset' +p244283 +sg225232 +S'Thomas Chambers' +p244284 +sg225234 +S'oil on canvas' +p244285 +sg225236 +S'mid 19th century' +p244286 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001ae.jpg' +p244287 +sg225240 +g27 +sa(dp244288 +g225230 +S'Threatening Sky, Bay of New York' +p244289 +sg225232 +S'Thomas Chambers' +p244290 +sg225234 +S'oil on canvas' +p244291 +sg225236 +S'mid 19th century' +p244292 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001af.jpg' +p244293 +sg225240 +g27 +sa(dp244294 +g225230 +S"Houses in Provence: The Riaux Valley near L'Estaque" +p244295 +sg225232 +S'Paul C\xc3\xa9zanne' +p244296 +sg225234 +S'oil on canvas' +p244297 +sg225236 +S'c. 1883' +p244298 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006b2.jpg' +p244299 +sg225240 +S"In the late 1870s and 1880s Cézanne tried to impose greater order in his paintings by systematizing his brushwork. Here, almost every part of nature is defined by the same close parallel strokes. This landscape is more fully finished than several others in the Gallery's collection. In \n Many of the places Cézanne painted have been identified, including this spot near L'Estaque. By comparing his pictures with the actual locations, it becomes clear that he often moved his easel, juxtaposing different points of view as he worked over successive days.\n " +p244300 +sa(dp244301 +g225230 +S'Te Pape Nave Nave (Delectable Waters)' +p244302 +sg225232 +S'Paul Gauguin' +p244303 +sg225234 +S'oil on canvas' +p244304 +sg225236 +S'1898' +p244305 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a0000640.jpg' +p244306 +sg225240 +S"In 1898, Gauguin sent a group of works from Tahiti for exhibition in Paris. The centerpiece was a painting more than twelve-feet long on hemp sacking material with the French inscription, "Where do we come from? What are we? Where are we going?" (Museum of Fine Arts, Boston). Intended to be seen with it were eight smaller works based on motifs excerpted from \n One figure that recurs from the larger work is the blue goddess. She is the deity Hina, prominent in an ancient Polynesian creation myth, whom Gauguin represented in sculpture and painting repeatedly. Gauguin's interpretation of her appearance is based upon a variety of sources from Hindu and South Asian art and culture. Gauguin described Hina as an emblem of the "hereafter," alluding to both the cycles of life represented in the work (by the infant and old woman) and his stated intention that the grouping of work would be his final artistic statement. Experiencing numerous maladies, financial problems, and depression, he intended to commit suicide when the work was finished (he died several years later at age 54 from a variety of diseases he \r\nhad contracted). Despite these seemingly explicit biographical interpretations, this painting and related canvases, like much of Gauguin's work, retain a sense of mystery. "Known symbols would congeal the canvas into a melancholy reality," he wrote, "and the problem indicated would no longer be a poem."\n " +p244307 +sa(dp244308 +g225230 +S'Murnau' +p244309 +sg225232 +S'Alexej von Jawlensky' +p244310 +sg225234 +S'oil on hardboard' +p244311 +sg225236 +S'1910' +p244312 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ed2.jpg' +p244313 +sg225240 +g27 +sa(dp244314 +g225230 +S'Volendam Street Scene' +p244315 +sg225232 +S'Robert Henri' +p244316 +sg225234 +S'oil on canvas' +p244317 +sg225236 +S'1910' +p244318 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000f2.jpg' +p244319 +sg225240 +g27 +sa(dp244320 +g225232 +S'Jacques Lipchitz' +p244321 +sg225240 +g27 +sg225234 +S'oil on canvas' +p244322 +sg225230 +S'Still Life' +p244323 +sg225236 +S'1918' +p244324 +sa(dp244325 +g225230 +S'Transfluent Lines' +p244326 +sg225232 +S'I. Rice Pereira' +p244327 +sg225234 +S'mixed media on corrugated glass and cardboard' +p244328 +sg225236 +S'1946' +p244329 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001ab.jpg' +p244330 +sg225240 +g27 +sa(dp244331 +g225232 +S'Jacques Lipchitz' +p244332 +sg225240 +g27 +sg225234 +S'brush and black ink with colored chalks' +p244333 +sg225230 +S'Pierrot' +p244334 +sg225236 +S'1916' +p244335 +sa(dp244336 +g225232 +S'Henry Moore' +p244337 +sg225240 +g27 +sg225234 +S'colored silkscreen on linen damask' +p244338 +sg225230 +S'Standing Figures' +p244339 +sg225236 +S'unknown date\n' +p244340 +sa(dp244341 +g225230 +S'Green Mass' +p244342 +sg225232 +S'I. Rice Pereira' +p244343 +sg225234 +S'oil on canvas' +p244344 +sg225236 +S'1950' +p244345 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001b3.jpg' +p244346 +sg225240 +g27 +sa(dp244347 +g225230 +S'Zenith' +p244348 +sg225232 +S'I. Rice Pereira' +p244349 +sg225234 +S'oil on canvas' +p244350 +sg225236 +S'1953' +p244351 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001b4.jpg' +p244352 +sg225240 +g27 +sa(dp244353 +g225232 +S'Netherlandish 20th Century' +p244354 +sg225240 +g27 +sg225234 +S'overall: 43.5 x 34.7 cm (17 1/8 x 13 11/16 in.)' +p244355 +sg225230 +S'Untitled (The Logbook of the Ship "Henry David Thoreau")' +p244356 +sg225236 +S'\ncollage' +p244357 +sa(dp244358 +g225232 +S'Netherlandish 20th Century' +p244359 +sg225240 +g27 +sg225234 +S'overall: 17 x 25.2 cm (6 11/16 x 9 15/16 in.)' +p244360 +sg225230 +S'Untitled' +p244361 +sg225236 +S'\ncollage on envelope addressed to J. Carter Brown' +p244362 +sa(dp244363 +g225232 +S'Andy Warhol' +p244364 +sg225240 +g27 +sg225234 +S'color screenprint on calendered paper' +p244365 +sg225230 +S'Mao Tse-Tung' +p244366 +sg225236 +S'1972' +p244367 +sa(dp244368 +g225232 +S'Andy Warhol' +p244369 +sg225240 +g27 +sg225234 +S'color screenprint on calendered paper' +p244370 +sg225230 +S'Mao Tse-Tung' +p244371 +sg225236 +S'1972' +p244372 +sa(dp244373 +g225232 +S'Andy Warhol' +p244374 +sg225240 +g27 +sg225234 +S'color screenprint on calendered paper' +p244375 +sg225230 +S'Mao Tse-Tung' +p244376 +sg225236 +S'1972' +p244377 +sa(dp244378 +g225232 +S'Andy Warhol' +p244379 +sg225240 +g27 +sg225234 +S'color screenprint on calendered paper' +p244380 +sg225230 +S'Mao Tse-Tung' +p244381 +sg225236 +S'1972' +p244382 +sa(dp244383 +g225232 +S'Andy Warhol' +p244384 +sg225240 +g27 +sg225234 +S'color screenprint on calendered paper' +p244385 +sg225230 +S'Mao Tse-Tung' +p244386 +sg225236 +S'1972' +p244387 +sa(dp244388 +g225232 +S'Andy Warhol' +p244389 +sg225240 +g27 +sg225234 +S'color screenprint on calendered paper' +p244390 +sg225230 +S'Mao Tse-Tung' +p244391 +sg225236 +S'1972' +p244392 +sa(dp244393 +g225232 +S'Andy Warhol' +p244394 +sg225240 +g27 +sg225234 +S'color screenprint on calendered paper' +p244395 +sg225230 +S'Mao Tse-Tung' +p244396 +sg225236 +S'1972' +p244397 +sa(dp244398 +g225232 +S'Andy Warhol' +p244399 +sg225240 +g27 +sg225234 +S'color screenprint on calendered paper' +p244400 +sg225230 +S'Mao Tse-Tung' +p244401 +sg225236 +S'1972' +p244402 +sa(dp244403 +g225232 +S'Andy Warhol' +p244404 +sg225240 +g27 +sg225234 +S'color screenprint on calendered paper' +p244405 +sg225230 +S'Mao Tse-Tung' +p244406 +sg225236 +S'1972' +p244407 +sa(dp244408 +g225232 +S'Andy Warhol' +p244409 +sg225240 +g27 +sg225234 +S'color screenprint on calendered paper' +p244410 +sg225230 +S'Mao Tse-Tung' +p244411 +sg225236 +S'1972' +p244412 +sa(dp244413 +g225230 +S'Heroic Landscape' +p244414 +sg225232 +S'Paul Bril' +p244415 +sg225234 +S'pen and brown ink' +p244416 +sg225236 +S'unknown date\n' +p244417 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a0006585.jpg' +p244418 +sg225240 +g27 +sa(dp244419 +g225230 +S'Ornamental Sketches with Grotesque Masks' +p244420 +sg225232 +S'Pierre Puget' +p244421 +sg225234 +S'black chalk on laid paper' +p244422 +sg225236 +S'unknown date\n' +p244423 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072e5.jpg' +p244424 +sg225240 +g27 +sa(dp244425 +g225230 +S'The Life of Ignatius Loyola' +p244426 +sg225232 +S'Egid Quirin Asam' +p244427 +sg225234 +S'brush and gray wash with watercolor over graphite, heightened with white, on laid paper' +p244428 +sg225236 +S'1748/1749' +p244429 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00030/a000302f.jpg' +p244430 +sg225240 +g27 +sa(dp244431 +g225230 +S'Death of the Virgin' +p244432 +sg225232 +S'Johann Matthias Kager' +p244433 +sg225234 +S'pen and black ink with gray wash, squared in black chalk, on laid paper' +p244434 +sg225236 +S'1620s' +p244435 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000bd/a000bddb.jpg' +p244436 +sg225240 +g27 +sa(dp244437 +g225230 +S'Three Soldiers Discovering a Sleeping Woman' +p244438 +sg225232 +S'Nicolas-Raymond de La Fage' +p244439 +sg225234 +S'pen and brown and black ink with touches of red chalk, heightened with white, on two sheets of laid paper' +p244440 +sg225236 +S'unknown date\n' +p244441 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a000715f.jpg' +p244442 +sg225240 +g27 +sa(dp244443 +g225232 +S'Artist Information (' +p244444 +sg225240 +g27 +sg225234 +S'Dutch, 1726 - 1798' +p244445 +sg225230 +S"Collection d'Imitations de Dessins ... (volume I)" +p244446 +sg225236 +S'(artist)' +p244447 +sa(dp244448 +g225232 +S'Artist Information (' +p244449 +sg225240 +g27 +sg225234 +S'(artist)' +p244450 +sg225230 +S"Collection d'Imitations de Dessins ... (volume II)" +p244451 +sg225236 +S'\n' +p244452 +sa(dp244453 +g225230 +S"Corner of a Wood (Coin d'un bois)" +p244454 +sg225232 +S'Alphonse Legros' +p244455 +sg225234 +S'etching' +p244456 +sg225236 +S'unknown date\n' +p244457 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b84.jpg' +p244458 +sg225240 +g27 +sa(dp244459 +g225232 +S'Artist Information (' +p244460 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Hercules Slaying Lichas' +p244461 +sg225236 +S'(sculptor)' +p244462 +sa(dp244463 +g225230 +S'Three Figures Seated in a Meadow, Seen from the Back' +p244464 +sg225232 +S'Artist Information (' +p244465 +sg225234 +g27 +sg225236 +S'(artist)' +p244466 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007279.jpg' +p244467 +sg225240 +g27 +sa(dp244468 +g225232 +S'Philip Kappel' +p244469 +sg225240 +g27 +sg225234 +S'etching' +p244470 +sg225230 +S'Coastal Scene with Palm Trees and Standing Woman' +p244471 +sg225236 +S'unknown date\n' +p244472 +sa(dp244473 +g225230 +S'A Fresh Breeze from the Sea' +p244474 +sg225232 +S'Walter Satterlee' +p244475 +sg225234 +S'etching' +p244476 +sg225236 +S'1885' +p244477 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f2/a000f2ba.jpg' +p244478 +sg225240 +g27 +sa(dp244479 +g225230 +S'Rough Sport in the Yosemite' +p244480 +sg225232 +S'James David Smillie' +p244481 +sg225234 +S'etching' +p244482 +sg225236 +S'1886' +p244483 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f2/a000f2b9.jpg' +p244484 +sg225240 +g27 +sa(dp244485 +g225232 +S'B. Sziklay' +p244486 +sg225240 +g27 +sg225234 +S'etching' +p244487 +sg225230 +S'Street Scene with Arch' +p244488 +sg225236 +S'unknown date\n' +p244489 +sa(dp244490 +g225232 +S'Raoul Middleman' +p244491 +sg225240 +g27 +sg225234 +S'lithograph' +p244492 +sg225230 +S'Frontispiece' +p244493 +sg225236 +S'1969' +p244494 +sa(dp244495 +g225232 +S'Raoul Middleman' +p244496 +sg225240 +g27 +sg225234 +S'portfolio with 12 lithographs plus text and colophon' +p244497 +sg225230 +S'The Apocryphal Oracular Yeah-Sayings of Mae West' +p244498 +sg225236 +S'published 1969' +p244499 +sa(dp244500 +g225232 +S'Raoul Middleman' +p244501 +sg225240 +g27 +sg225234 +S'lithograph' +p244502 +sg225230 +S"It's the Only Show in Town" +p244503 +sg225236 +S'1969' +p244504 +sa(dp244505 +g225232 +S'Raoul Middleman' +p244506 +sg225240 +g27 +sg225234 +S'lithograph' +p244507 +sg225230 +S"I've Got the Posse, Sheriff ..." +p244508 +sg225236 +S'1969' +p244509 +sa(dp244510 +g225232 +S'Raoul Middleman' +p244511 +sg225240 +g27 +sg225234 +S'lithograph' +p244512 +sg225230 +S"Use What's Lyin' Around the House, Daddy" +p244513 +sg225236 +S'1969' +p244514 +sa(dp244515 +g225232 +S'Raoul Middleman' +p244516 +sg225240 +g27 +sg225234 +S'lithograph' +p244517 +sg225230 +S'My Real Name is Terra-Belle Incognita' +p244518 +sg225236 +S'1969' +p244519 +sa(dp244520 +g225232 +S'Raoul Middleman' +p244521 +sg225240 +g27 +sg225234 +S'lithograph' +p244522 +sg225230 +S"Honey, You Ain't Seen Nuthin' Yet!" +p244523 +sg225236 +S'1969' +p244524 +sa(dp244525 +g225232 +S'Raoul Middleman' +p244526 +sg225240 +g27 +sg225234 +S'lithograph' +p244527 +sg225230 +S'A Hard Man is Good to Find' +p244528 +sg225236 +S'1969' +p244529 +sa(dp244530 +g225232 +S'Raoul Middleman' +p244531 +sg225240 +g27 +sg225234 +S'lithograph' +p244532 +sg225230 +S"If Your Cock's as Big as Your Mouth, Honey ..." +p244533 +sg225236 +S'1969' +p244534 +sa(dp244535 +g225232 +S'Raoul Middleman' +p244536 +sg225240 +g27 +sg225234 +S'lithograph' +p244537 +sg225230 +S"Linger-Fickin' Beats Chicken-Plucking ..." +p244538 +sg225236 +S'1969' +p244539 +sa(dp244540 +g225232 +S'Raoul Middleman' +p244541 +sg225240 +g27 +sg225234 +S'lithograph' +p244542 +sg225230 +S'An Ounce of Erection is Worth a Pound of Allure' +p244543 +sg225236 +S'1969' +p244544 +sa(dp244545 +g225232 +S'Raoul Middleman' +p244546 +sg225240 +g27 +sg225234 +S'lithograph' +p244547 +sg225230 +S"Chicken Ain't Nuthin' But a Bird! ..." +p244548 +sg225236 +S'1969' +p244549 +sa(dp244550 +g225232 +S'Raoul Middleman' +p244551 +sg225240 +g27 +sg225234 +S'lithograph' +p244552 +sg225230 +S'Is That a Gun in Your Pocket ...' +p244553 +sg225236 +S'1969' +p244554 +sa(dp244555 +g225232 +S'American 20th Century' +p244556 +sg225240 +g27 +sg225234 +S'overall: 28.8 x 39.5 cm (11 5/16 x 15 9/16 in.)' +p244557 +sg225230 +S'View of the Skyline of New York from Central Park' +p244558 +sg225236 +S'\nwatercolor' +p244559 +sa(dp244560 +g225232 +S'Marguerite Zorach' +p244561 +sg225240 +g27 +sg225234 +S'oil on canvas' +p244562 +sg225230 +S'Christmas Mail' +p244563 +sg225236 +S'completed 1930, inscribed 1936' +p244564 +sa(dp244565 +g225230 +S'Washington, D.C. November 1963 III' +p244566 +sg225232 +S'Edward Corbett' +p244567 +sg225234 +S'oil on canvas' +p244568 +sg225236 +S'1963' +p244569 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000069.jpg' +p244570 +sg225240 +g27 +sa(dp244571 +g225232 +S'Milton Resnick' +p244572 +sg225240 +g27 +sg225234 +S'oil on canvas' +p244573 +sg225230 +S'Mound' +p244574 +sg225236 +S'1961' +p244575 +sa(dp244576 +g225232 +S'Gene Davis' +p244577 +sg225240 +g27 +sg225234 +S'oil on canvas' +p244578 +sg225230 +S"Satan's Flag" +p244579 +sg225236 +S'1970' +p244580 +sa(dp244581 +g225232 +S'Artist Information (' +p244582 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Engraved Clock Dial - Ornaments and Birds [recto]' +p244583 +sg225236 +S'(artist)' +p244584 +sa(dp244585 +g225232 +S'Artist Information (' +p244586 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Engraved Clock Dial - The Holy Family [verso]' +p244587 +sg225236 +S'(artist)' +p244588 +sa(dp244589 +g225232 +S'Artist Information (' +p244590 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'The Holy Family' +p244591 +sg225236 +S'(artist)' +p244592 +sa(dp244593 +g225232 +S'Gardner Cox' +p244594 +sg225240 +g27 +sg225234 +S'portfolio with 36 graphite drawings on various papers (34 drawings of LJR: 31 loose, 3 in sketch pad; 2 drawings of women: 1 loose, 1 in sketch pad)' +p244595 +sg225230 +S'Pencil Sketches of Lessing J. Rosenwald' +p244596 +sg225236 +S'1955' +p244597 +sa(dp244598 +g225232 +S'Giovanni Battista Foggini' +p244599 +sg225240 +g27 +sg225234 +S'bronze' +p244600 +sg225230 +S'Bacchus and Ariadne' +p244601 +sg225236 +S'1711/1724' +p244602 +sa(dp244603 +g225232 +S'Giuseppe Piamontini' +p244604 +sg225240 +g27 +sg225234 +S'bronze' +p244605 +sg225230 +S'Venus and Cupid' +p244606 +sg225236 +S'1711/1724' +p244607 +sa(dp244608 +g225230 +S'The Old Violin' +p244609 +sg225232 +S'John Frederick Peto' +p244610 +sg225234 +S'oil on canvas' +p244611 +sg225236 +S'c. 1890' +p244612 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001b5.jpg' +p244613 +sg225240 +g27 +sa(dp244614 +g225230 +S'Figure of an Archer [recto]' +p244615 +sg225232 +S'Artist Information (' +p244616 +sg225234 +S'Italian, c. 1450 - 1523' +p244617 +sg225236 +S'(related artist)' +p244618 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a000750e.jpg' +p244619 +sg225240 +g27 +sa(dp244620 +g225230 +S'Rider and Standing Draped Man, after the Antique [verso]' +p244621 +sg225232 +S'Artist Information (' +p244622 +sg225234 +S'Italian, c. 1450 - 1523' +p244623 +sg225236 +S'(related artist)' +p244624 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a000750f.jpg' +p244625 +sg225240 +g27 +sa(dp244626 +g225230 +S'Studies for Six Figures (sheet from a model book) [recto]' +p244627 +sg225232 +S'German 15th Century' +p244628 +sg225234 +S'overall: 14.7 x 19.2 cm (5 13/16 x 7 9/16 in.)' +p244629 +sg225236 +S'\npen and black and brown ink with gray wash heightened with white on brown-gray prepared paper' +p244630 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a0007913.jpg' +p244631 +sg225240 +g27 +sa(dp244632 +g225232 +S'German 15th Century' +p244633 +sg225240 +g27 +sg225234 +S'overall: 14.7 x 19.2 cm (5 13/16 x 7 9/16 in.)' +p244634 +sg225230 +S'God the Father (sheet from a model book) [verso]' +p244635 +sg225236 +S'\npen and black and brown ink with gray wash heightened with white on brown-gray prepared paper' +p244636 +sa(dp244637 +g225230 +S'Forum Vulcani: The Hot Springs at Pozzuoli' +p244638 +sg225232 +S'Joris Hoefnagel' +p244639 +sg225234 +S'pen and brown ink with traces of black chalk' +p244640 +sg225236 +S'c. 1577/1578' +p244641 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e22.jpg' +p244642 +sg225240 +g27 +sa(dp244643 +g225230 +S'Sportsmann' +p244644 +sg225232 +S'George Grosz' +p244645 +sg225234 +S'pen and black ink and watercolor' +p244646 +sg225236 +S'1922' +p244647 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00029/a000295c.jpg' +p244648 +sg225240 +g27 +sa(dp244649 +g225230 +S'Drunken Silenus' +p244650 +sg225232 +S'Jusepe de Ribera' +p244651 +sg225234 +S'etching and engraving' +p244652 +sg225236 +S'1628' +p244653 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a00067cb.jpg' +p244654 +sg225240 +g27 +sa(dp244655 +g225230 +S'Two Peasants' +p244656 +sg225232 +S'Artist Information (' +p244657 +sg225234 +S'Italian, c. 1431 - 1506' +p244658 +sg225236 +S'(related artist)' +p244659 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6cc.jpg' +p244660 +sg225240 +g27 +sa(dp244661 +g225230 +S'The Adoration of the Magi' +p244662 +sg225232 +S'Domenico Campagnola' +p244663 +sg225234 +S'woodcut' +p244664 +sg225236 +S'unknown date\n' +p244665 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00059/a000599c.jpg' +p244666 +sg225240 +g27 +sa(dp244667 +g225230 +S'In the Fields at Ennery (Dans les champs, a Ennery)' +p244668 +sg225232 +S'Camille Pissarro' +p244669 +sg225234 +S'drypoint (zinc) [posthumous impression]' +p244670 +sg225236 +S'1875' +p244671 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009db4.jpg' +p244672 +sg225240 +g27 +sa(dp244673 +g225230 +S'Market at Pontoise (Marche a Pontoise)' +p244674 +sg225232 +S'Camille Pissarro' +p244675 +sg225234 +S'lithograph (zinc)' +p244676 +sg225236 +S'c. 1895' +p244677 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009db9.jpg' +p244678 +sg225240 +g27 +sa(dp244679 +g225230 +S'Beggar with a Crutch (Mendiant a la bequille)' +p244680 +sg225232 +S'Camille Pissarro' +p244681 +sg225234 +S'lithograph on blue-violet paper laid down on whitepaper' +p244682 +sg225236 +S'1897' +p244683 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009db7.jpg' +p244684 +sg225240 +g27 +sa(dp244685 +g225230 +S'View of Pontoise (Vue de Pontoise)' +p244686 +sg225232 +S'Camille Pissarro' +p244687 +sg225234 +S'etching and aquatint' +p244688 +sg225236 +S'1885' +p244689 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009db1.jpg' +p244690 +sg225240 +g27 +sa(dp244691 +g225232 +S'M.C. Escher' +p244692 +sg225240 +g27 +sg225234 +S'lithograph' +p244693 +sg225230 +S'"Hell", copy after Hieronymus Bosch' +p244694 +sg225236 +S'1935' +p244695 +sa(dp244696 +g225230 +S'Prickly Flower' +p244697 +sg225232 +S'M.C. Escher' +p244698 +sg225234 +S'wood engraving' +p244699 +sg225236 +S'1936' +p244700 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b4d.jpg' +p244701 +sg225240 +g27 +sa(dp244702 +g225230 +S'Dragonfly' +p244703 +sg225232 +S'M.C. Escher' +p244704 +sg225234 +S'wood engraving' +p244705 +sg225236 +S'1936' +p244706 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b4e.jpg' +p244707 +sg225240 +g27 +sa(dp244708 +g225232 +S'M.C. Escher' +p244709 +sg225240 +g27 +sg225234 +S'wood engraving' +p244710 +sg225230 +S"Between St. Peter's and the Sistine Chapel" +p244711 +sg225236 +S'1936' +p244712 +sa(dp244713 +g225230 +S'Still Life and Street' +p244714 +sg225232 +S'M.C. Escher' +p244715 +sg225234 +S'woodcut' +p244716 +sg225236 +S'1937' +p244717 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004ba2.jpg' +p244718 +sg225240 +S"This is one of Escher's earliest prints of an impossible construction. Escher has joined in a single perspective a table covered with books and objects and a view of the street below. \n " +p244719 +sa(dp244720 +g225230 +S'Metamorphosis I' +p244721 +sg225232 +S'M.C. Escher' +p244722 +sg225234 +S'woodcut, printed on two sheets' +p244723 +sg225236 +S'1937' +p244724 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004ba3.jpg' +p244725 +sg225240 +S"Here, the artist's first metamorphosis connects a tower on the Amalfi coast with a Chinese doll. Escher's largest print on this theme, \n " +p244726 +sa(dp244727 +g225230 +S'Development I' +p244728 +sg225232 +S'M.C. Escher' +p244729 +sg225234 +S'woodcut' +p244730 +sg225236 +S'1937' +p244731 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a00002b2.jpg' +p244732 +sg225240 +S'This is one of Escher\'s earliest prints to demonstrate his theory of the "regular division of the plane," which he described as follows: "A plane, which should be considered limitless on all sides, can be filled with or divided into similar geometric figures that border each other on all sides without leaving any empty spaces. This can be carried on to infinity according to a limited number of systems." \n ' +p244733 +sa(dp244734 +g225230 +S'Day and Night' +p244735 +sg225232 +S'M.C. Escher' +p244736 +sg225234 +S'woodcut in black and gray, printed from two blocks' +p244737 +sg225236 +S'1938' +p244738 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00015/a0001558.jpg' +p244739 +sg225240 +S"This print is one of Escher's first to show the influence of Moorish tile work, with its abstract, positive-negative geometric shapes. With day and night landscapes as mirror images, the white birds merge with a daylight sky at left, while at right the black birds blend to create a night sky.\n " +p244740 +sa(dp244741 +g225232 +S'M.C. Escher' +p244742 +sg225240 +g27 +sg225234 +S'lithograph' +p244743 +sg225230 +S'Cycle' +p244744 +sg225236 +S'1938' +p244745 +sa(dp244746 +g225230 +S'Sky and Water I' +p244747 +sg225232 +S'M.C. Escher' +p244748 +sg225234 +S'woodcut' +p244749 +sg225236 +S'1938' +p244750 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00038/a0003803.jpg' +p244751 +sg225240 +g27 +sa(dp244752 +g225232 +S'M.C. Escher' +p244753 +sg225240 +g27 +sg225234 +S'woodcut' +p244754 +sg225230 +S'Sky and Water II' +p244755 +sg225236 +S'1938' +p244756 +sa(dp244757 +g225232 +S'M.C. Escher' +p244758 +sg225240 +g27 +sg225234 +S'woodcut in brown, gray-green and black, printed from three blocks' +p244759 +sg225230 +S'Development II' +p244760 +sg225236 +S'1939' +p244761 +sa(dp244762 +g225232 +S'M.C. Escher' +p244763 +sg225240 +g27 +sg225234 +S'woodcut in three tones of gray-green, printed from three blocks' +p244764 +sg225230 +S'Fish' +p244765 +sg225236 +S'1941' +p244766 +sa(dp244767 +g225232 +S'M.C. Escher' +p244768 +sg225240 +g27 +sg225234 +S'lithograph' +p244769 +sg225230 +S'Verbum' +p244770 +sg225236 +S'1942' +p244771 +sa(dp244772 +g225232 +S'M.C. Escher' +p244773 +sg225240 +g27 +sg225234 +S'lithograph' +p244774 +sg225230 +S'Reptiles' +p244775 +sg225236 +S'1943' +p244776 +sa(dp244777 +g225230 +S'Ant' +p244778 +sg225232 +S'M.C. Escher' +p244779 +sg225234 +S'lithograph' +p244780 +sg225236 +S'1943' +p244781 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b4c.jpg' +p244782 +sg225240 +g27 +sa(dp244783 +g225232 +S'M.C. Escher' +p244784 +sg225240 +g27 +sg225234 +S'lithograph' +p244785 +sg225230 +S'Encounter' +p244786 +sg225236 +S'1944' +p244787 +sa(dp244788 +g225232 +S'M.C. Escher' +p244789 +sg225240 +g27 +sg225234 +S'woodcut in brown and ochre, printed from two blocks' +p244790 +sg225230 +S'Design for writing-paper for Chinese script' +p244791 +sg225236 +S'1944' +p244792 +sa(dp244793 +g225230 +S'Balcony' +p244794 +sg225232 +S'M.C. Escher' +p244795 +sg225234 +S'lithograph' +p244796 +sg225236 +S'1945' +p244797 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a00002ae.jpg' +p244798 +sg225240 +S'Escher wrote that this print "gives the illusion of a town, of house blocks with the sun shining on them. But again it\'s a fiction, for my paper remains flat. In a spirit of deriding my vain efforts and trying to break up the paper\'s flatness, I pretend to give it a blow with my fist at the back, but once again it\'s no good: the paper remains flat, and I have only created the illusion of an illusion. However, the consequence of my blow is that the balcony in the middle is about four times enlarged in comparison with the bordering objects." \n ' +p244799 +sa(dp244800 +g225232 +S'M.C. Escher' +p244801 +sg225240 +g27 +sg225234 +S'woodcut' +p244802 +sg225230 +S'Diploma Tijdelijke Academie, Eindhoven' +p244803 +sg225236 +S'1945' +p244804 +sa(dp244805 +g225232 +S'M.C. Escher' +p244806 +sg225240 +g27 +sg225234 +S'lithograph' +p244807 +sg225230 +S'Magic Mirror' +p244808 +sg225236 +S'1946' +p244809 +sa(dp244810 +g225230 +S'Three Spheres II' +p244811 +sg225232 +S'M.C. Escher' +p244812 +sg225234 +S'lithograph' +p244813 +sg225236 +S'1946' +p244814 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a00002af.jpg' +p244815 +sg225240 +S'Escher was particularly intrigued by reflections and by the concept of a sphere acting as a mirror. Here, the central sphere that reflects Escher at work is flanked by one, at left, filled with water, and at right, by another opaque sphere. All three spheres are reflected in the polished surface on which they rest. The spheres at right and left are reflected in the center sphere. Finally, the entire composition is seen as the drawing on the paper reflected in the central sphere.\n ' +p244816 +sa(dp244817 +g225232 +S'M.C. Escher' +p244818 +sg225240 +g27 +sg225234 +S'woodcut in orange, black and gray-green, printed from three blocks' +p244819 +sg225230 +S'Horseman' +p244820 +sg225236 +S'1946' +p244821 +sa(dp244822 +g225230 +S'Gallery' +p244823 +sg225232 +S'M.C. Escher' +p244824 +sg225234 +S'mezzotint' +p244825 +sg225236 +S'1946' +p244826 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004ba1.jpg' +p244827 +sg225240 +S'This print is a variation on \n ' +p244828 +sa(dp244829 +g225232 +S'M.C. Escher' +p244830 +sg225240 +g27 +sg225234 +S'woodcut on thin white China paper' +p244831 +sg225230 +S'Illustration for "XIIme Congres Postal Universel"' +p244832 +sg225236 +S'1947' +p244833 +sa(dp244834 +g225230 +S'Other World (Another World)' +p244835 +sg225232 +S'M.C. Escher' +p244836 +sg225234 +S'wood engraving and woodcut in black, medium brown, and green, printed from three blocks' +p244837 +sg225236 +S'1947' +p244838 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00015/a0001556.jpg' +p244839 +sg225240 +S"Escher constructed a five-sided chamber in which all sides are interchangeable. This is his first print to focus primarily on his idea of relativity, how one object is seen in relation to another. The Islamic figurine of a harpy, a mythical creature with a bird's body and a human head, was a gift from Escher's father-in-law and appears in several of his prints. \n The difference between a wood engraving, shown here, and a woodcut is that the wood used in a wood engraving is cut across the grain and not along it. In this way the wood is less likely to splinter and can be worked like a copper plate with a burin. Wood engraving allows for greater detail and more delicate effects.\n " +p244840 +sa(dp244841 +g225232 +S'M.C. Escher' +p244842 +sg225240 +g27 +sg225234 +S'mezzotint' +p244843 +sg225230 +S'Crystal' +p244844 +sg225236 +S'1947' +p244845 +sa(dp244846 +g225230 +S'Drawing Hands' +p244847 +sg225232 +S'M.C. Escher' +p244848 +sg225234 +S'lithograph' +p244849 +sg225236 +S'1948' +p244850 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a0002238.jpg' +p244851 +sg225240 +S'Escher frequently employed a visual game in which he transformed a flat pattern into a three-dimensional object. The artist used his own right hand as the model for both hands depicted in the print.\n ' +p244852 +sa(dp244853 +g225232 +S'M.C. Escher' +p244854 +sg225240 +g27 +sg225234 +S'mezzotint on white laid paper' +p244855 +sg225230 +S'Drop' +p244856 +sg225236 +S'1948' +p244857 +sa(dp244858 +g225230 +S'Sun and Moon' +p244859 +sg225232 +S'M.C. Escher' +p244860 +sg225234 +S'woodcut in green, red, gold and black, printed from four blockss' +p244861 +sg225236 +S'1948' +p244862 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00038/a0003804.jpg' +p244863 +sg225240 +g27 +sa(dp244864 +g225232 +S'M.C. Escher' +p244865 +sg225240 +g27 +sg225234 +S'wood engraving' +p244866 +sg225230 +S'Stars' +p244867 +sg225236 +S'1948' +p244868 +sa(dp244869 +g225232 +S'M.C. Escher' +p244870 +sg225240 +g27 +sg225234 +S'mezzotint' +p244871 +sg225230 +S'Sea-shells' +p244872 +sg225236 +S'1949' +p244873 +sa(dp244874 +g225230 +S'Rippled Surface' +p244875 +sg225232 +S'M.C. Escher' +p244876 +sg225234 +S'linoleum cut in black and gray-brown, printed fro m two blocks' +p244877 +sg225236 +S'1950' +p244878 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a00002b0.jpg' +p244879 +sg225240 +g27 +sa(dp244880 +g225232 +S'M.C. Escher' +p244881 +sg225240 +g27 +sg225234 +S'wood engraving' +p244882 +sg225230 +S'Butterflies' +p244883 +sg225236 +S'1950' +p244884 +sa(dp244885 +g225232 +S'M.C. Escher' +p244886 +sg225240 +g27 +sg225234 +S'lithograph' +p244887 +sg225230 +S'Predestination' +p244888 +sg225236 +S'1951' +p244889 +sa(dp244890 +g225232 +S'M.C. Escher' +p244891 +sg225240 +g27 +sg225234 +S'lithograph' +p244892 +sg225230 +S'House of Stairs' +p244893 +sg225236 +S'1951' +p244894 +sa(dp244895 +g225232 +S'M.C. Escher' +p244896 +sg225240 +g27 +sg225234 +S'wood engraving' +p244897 +sg225230 +S'Dragon' +p244898 +sg225236 +S'1952' +p244899 +sa(dp244900 +g225230 +S'Gravity' +p244901 +sg225232 +S'M.C. Escher' +p244902 +sg225234 +S'lithograph' +p244903 +sg225236 +S'1952' +p244904 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00034/a0003429.jpg' +p244905 +sg225240 +g27 +sa(dp244906 +g225232 +S'M.C. Escher' +p244907 +sg225240 +g27 +sg225234 +S'lithograph' +p244908 +sg225230 +S'Cubic Space Division (Cubic Space Filling)' +p244909 +sg225236 +S'1952' +p244910 +sa(dp244911 +g225232 +S'M.C. Escher' +p244912 +sg225240 +g27 +sg225234 +S'wood engraving on beige wove paper' +p244913 +sg225230 +S'Concentric Rinds' +p244914 +sg225236 +S'1953' +p244915 +sa(dp244916 +g225230 +S'Relativity' +p244917 +sg225232 +S'M.C. Escher' +p244918 +sg225234 +S'lithograph' +p244919 +sg225236 +S'1953' +p244920 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00015/a0001557.jpg' +p244921 +sg225240 +S"This is perhaps Escher's best-known print on the theme of relativity. It also is a fine example of Escher's focus on unusual, and often conflicting, points of view.\n " +p244922 +sa(dp244923 +g225230 +S'Spirals' +p244924 +sg225232 +S'M.C. Escher' +p244925 +sg225234 +S'wood engraving in black and gray-green, printed from two blocks' +p244926 +sg225236 +S'1953' +p244927 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a00002b1.jpg' +p244928 +sg225240 +g27 +sa(dp244929 +g225230 +S'Tetrahedral Planetoid' +p244930 +sg225232 +S'M.C. Escher' +p244931 +sg225234 +S'woodcut in yellow-brown and black, printed from two blocks' +p244932 +sg225236 +S'1954' +p244933 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00034/a000342a.jpg' +p244934 +sg225240 +g27 +sa(dp244935 +g225230 +S'Three Intersecting Planes' +p244936 +sg225232 +S'M.C. Escher' +p244937 +sg225234 +S'woodcut in orange and black, printed from two blocks' +p244938 +sg225236 +S'1954' +p244939 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b4f.jpg' +p244940 +sg225240 +g27 +sa(dp244941 +g225230 +S'Convex and Concave' +p244942 +sg225232 +S'M.C. Escher' +p244943 +sg225234 +S'lithograph' +p244944 +sg225236 +S'1955' +p244945 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b50.jpg' +p244946 +sg225240 +g27 +sa(dp244947 +g225232 +S'M.C. Escher' +p244948 +sg225240 +g27 +sg225234 +S'lithograph' +p244949 +sg225230 +S'Liberation' +p244950 +sg225236 +S'1955' +p244951 +sa(dp244952 +g225230 +S'Rind' +p244953 +sg225232 +S'M.C. Escher' +p244954 +sg225234 +S'wood engraving and woodcut in black, brown, red and gray-brown, printed from four blocks' +p244955 +sg225236 +S'1955' +p244956 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00038/a0003805.jpg' +p244957 +sg225240 +g27 +sa(dp244958 +g225230 +S'Three Worlds' +p244959 +sg225232 +S'M.C. Escher' +p244960 +sg225234 +S'lithograph' +p244961 +sg225236 +S'1955' +p244962 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00038/a0003806.jpg' +p244963 +sg225240 +g27 +sa(dp244964 +g225232 +S'M.C. Escher' +p244965 +sg225240 +g27 +sg225234 +S'lithograph' +p244966 +sg225230 +S'Order and Chaos' +p244967 +sg225236 +S'1955' +p244968 +sa(dp244969 +g225230 +S'Swans' +p244970 +sg225232 +S'M.C. Escher' +p244971 +sg225234 +S'wood engraving' +p244972 +sg225236 +S'1955' +p244973 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b51.jpg' +p244974 +sg225240 +g27 +sa(dp244975 +g225232 +S'M.C. Escher' +p244976 +sg225240 +g27 +sg225234 +S'lithograph' +p244977 +sg225230 +S'Bond of Union' +p244978 +sg225236 +S'1956' +p244979 +sa(dp244980 +g225232 +S'M.C. Escher' +p244981 +sg225240 +g27 +sg225234 +S'woodcut' +p244982 +sg225230 +S'Division' +p244983 +sg225236 +S'1956' +p244984 +sa(dp244985 +g225232 +S'M.C. Escher' +p244986 +sg225240 +g27 +sg225234 +S'wood engraving and woodcut in black and red-brown,printed from four blocks' +p244987 +sg225230 +S'Smaller and Smaller' +p244988 +sg225236 +S'1956' +p244989 +sa(dp244990 +g225232 +S'M.C. Escher' +p244991 +sg225240 +g27 +sg225234 +S'wood engraving in black and red-brown, pri nted from two blocks' +p244992 +sg225230 +S'Smaller and Smaller' +p244993 +sg225236 +S'1956' +p244994 +sa(dp244995 +g225232 +S'M.C. Escher' +p244996 +sg225240 +g27 +sg225234 +S'woodcut in black and red-brown, printed from two blocks' +p244997 +sg225230 +S'Smaller and Smaller' +p244998 +sg225236 +S'1956' +p244999 +sa(dp245000 +g225232 +S'M.C. Escher' +p245001 +sg225240 +g27 +sg225234 +S'lithograph' +p245002 +sg225230 +S'Cube with Ribbons' +p245003 +sg225236 +S'1956' +p245004 +sa(dp245005 +g225232 +S'M.C. Escher' +p245006 +sg225240 +g27 +sg225234 +S'lithograph' +p245007 +sg225230 +S'Plane Filling II' +p245008 +sg225236 +S'1957' +p245009 +sa(dp245010 +g225232 +S'M.C. Escher' +p245011 +sg225240 +g27 +sg225234 +S'woodcut in red and black, printed from two blocks' +p245012 +sg225230 +S'Path of Life I' +p245013 +sg225236 +S'1958' +p245014 +sa(dp245015 +g225232 +S'M.C. Escher' +p245016 +sg225240 +g27 +sg225234 +S'woodcut in gray-green and black, printed from two blocks' +p245017 +sg225230 +S'Path of Life II' +p245018 +sg225236 +S'1958' +p245019 +sa(dp245020 +g225232 +S'M.C. Escher' +p245021 +sg225240 +g27 +sg225234 +S'woodcut in gold, black and dark rust, printed fro m three blocks' +p245022 +sg225230 +S'Sphere Surface with Fish' +p245023 +sg225236 +S'1958' +p245024 +sa(dp245025 +g225232 +S'M.C. Escher' +p245026 +sg225240 +g27 +sg225234 +S'woodcut in gray, black, yellow and pink and red-brown, printed from four (five?) blocks' +p245027 +sg225230 +S'Sphere Spirals' +p245028 +sg225236 +S'1958' +p245029 +sa(dp245030 +g225232 +S'M.C. Escher' +p245031 +sg225240 +g27 +sg225234 +S'woodcut' +p245032 +sg225230 +S'Circle Limit I' +p245033 +sg225236 +S'1958' +p245034 +sa(dp245035 +g225232 +S'M.C. Escher' +p245036 +sg225240 +g27 +sg225234 +S'lithograph' +p245037 +sg225230 +S'Flatworms' +p245038 +sg225236 +S'1959' +p245039 +sa(dp245040 +g225232 +S'M.C. Escher' +p245041 +sg225240 +g27 +sg225234 +S'woodcut in red and black, printed from two blocks' +p245042 +sg225230 +S'Circle Limit II' +p245043 +sg225236 +S'1959' +p245044 +sa(dp245045 +g225232 +S'Artist Information (' +p245046 +sg225240 +g27 +sg225234 +S'(artist after)' +p245047 +sg225230 +S'Three Elements' +p245048 +sg225236 +S'\n' +p245049 +sa(dp245050 +g225232 +S'Artist Information (' +p245051 +sg225240 +g27 +sg225234 +S'(artist after)' +p245052 +sg225230 +S'Sphere with Fish' +p245053 +sg225236 +S'\n' +p245054 +sa(dp245055 +g225232 +S'Artist Information (' +p245056 +sg225240 +g27 +sg225234 +S'(artist after)' +p245057 +sg225230 +S'Heaven and Hell' +p245058 +sg225236 +S'\n' +p245059 +sa(dp245060 +g225232 +S'M.C. Escher' +p245061 +sg225240 +g27 +sg225234 +S'pen and black ink and colored pencil on plastic ball' +p245062 +sg225230 +S'Three Elements' +p245063 +sg225236 +S'1963-1964' +p245064 +sa(dp245065 +g225230 +S'Thomas Fortune Ryan' +p245066 +sg225232 +S'Auguste Rodin' +p245067 +sg225234 +S'bronze' +p245068 +sg225236 +S'1909-1910' +p245069 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00054/a000543c.jpg' +p245070 +sg225240 +g27 +sa(dp245071 +g225232 +S'Artist Information (' +p245072 +sg225240 +g27 +sg225234 +S'(artist after)' +p245073 +sg225230 +S'The Conversion of Saint Paul' +p245074 +sg225236 +S'\n' +p245075 +sa(dp245076 +g225230 +S'Catalogo delle Opere' +p245077 +sg225232 +S'Giovanni Battista Piranesi' +p245078 +sg225234 +S'etching' +p245079 +sg225236 +S'unknown date\n' +p245080 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc3e.jpg' +p245081 +sg225240 +g27 +sa(dp245082 +g225230 +S'The Visitation' +p245083 +sg225232 +S'Carlo Maratta' +p245084 +sg225234 +S'etching' +p245085 +sg225236 +S'unknown date\n' +p245086 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c99b.jpg' +p245087 +sg225240 +g27 +sa(dp245088 +g225230 +S'The Holy Family with the Goldfinch' +p245089 +sg225232 +S'Artist Information (' +p245090 +sg225234 +S'(artist after)' +p245091 +sg225236 +S'\n' +p245092 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4cc.jpg' +p245093 +sg225240 +g27 +sa(dp245094 +g225230 +S'Man Assisted by Faith, Hope and Charity' +p245095 +sg225232 +S'Artist Information (' +p245096 +sg225234 +S'Netherlandish, 1498 - 1574' +p245097 +sg225236 +S'(artist after)' +p245098 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfec.jpg' +p245099 +sg225240 +g27 +sa(dp245100 +g225230 +S'The Marriage of Labor and Diligence' +p245101 +sg225232 +S'Artist Information (' +p245102 +sg225234 +S'(artist after)' +p245103 +sg225236 +S'\n' +p245104 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfa6.jpg' +p245105 +sg225240 +g27 +sa(dp245106 +g225230 +S'The Diligent Worker Aspiring to the Rightousness of the Lord' +p245107 +sg225232 +S'Artist Information (' +p245108 +sg225234 +S'(artist after)' +p245109 +sg225236 +S'\n' +p245110 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfa5.jpg' +p245111 +sg225240 +g27 +sa(dp245112 +g225230 +S'The Lord Endowing the Diligent Worker with Food and Clothing' +p245113 +sg225232 +S'Artist Information (' +p245114 +sg225234 +S'(artist after)' +p245115 +sg225236 +S'\n' +p245116 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfa4.jpg' +p245117 +sg225240 +g27 +sa(dp245118 +g225230 +S'Labor and Diligence Enjoying their Simple Meal' +p245119 +sg225232 +S'Artist Information (' +p245120 +sg225234 +S'(artist after)' +p245121 +sg225236 +S'\n' +p245122 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfa2.jpg' +p245123 +sg225240 +g27 +sa(dp245124 +g225230 +S'The Diligent Worker United with Christ after Death' +p245125 +sg225232 +S'Artist Information (' +p245126 +sg225234 +S'(artist after)' +p245127 +sg225236 +S'\n' +p245128 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfa3.jpg' +p245129 +sg225240 +g27 +sa(dp245130 +g225230 +S'Title Page' +p245131 +sg225232 +S'Artist Information (' +p245132 +sg225234 +S'(artist after)' +p245133 +sg225236 +S'\n' +p245134 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf75.jpg' +p245135 +sg225240 +g27 +sa(dp245136 +g225230 +S'The Meeting of the Apostles and the Women in the Upper Room' +p245137 +sg225232 +S'Artist Information (' +p245138 +sg225234 +S'(artist after)' +p245139 +sg225236 +S'\n' +p245140 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf76.jpg' +p245141 +sg225240 +g27 +sa(dp245142 +g225230 +S'The Choosing of Saint Matthias' +p245143 +sg225232 +S'Artist Information (' +p245144 +sg225234 +S'(artist after)' +p245145 +sg225236 +S'\n' +p245146 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf77.jpg' +p245147 +sg225240 +g27 +sa(dp245148 +g225230 +S'Pentecost' +p245149 +sg225232 +S'Artist Information (' +p245150 +sg225234 +S'(artist after)' +p245151 +sg225236 +S'\n' +p245152 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf78.jpg' +p245153 +sg225240 +g27 +sa(dp245154 +g225230 +S'Saint Peter Speaks to the People about Christ' +p245155 +sg225232 +S'Artist Information (' +p245156 +sg225234 +S'(artist after)' +p245157 +sg225236 +S'\n' +p245158 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00060/a0006085.jpg' +p245159 +sg225240 +g27 +sa(dp245160 +g225230 +S'Many are Baptized' +p245161 +sg225232 +S'Artist Information (' +p245162 +sg225234 +S'(artist after)' +p245163 +sg225236 +S'\n' +p245164 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf79.jpg' +p245165 +sg225240 +g27 +sa(dp245166 +g225230 +S'Saints Peter and John Heal a Cripple at the Gate of the Temple' +p245167 +sg225232 +S'Artist Information (' +p245168 +sg225234 +S'(artist after)' +p245169 +sg225236 +S'\n' +p245170 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf82.jpg' +p245171 +sg225240 +g27 +sa(dp245172 +g225230 +S'And They were All Filled with the Holy Ghost' +p245173 +sg225232 +S'Artist Information (' +p245174 +sg225234 +S'(artist after)' +p245175 +sg225236 +S'\n' +p245176 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf7b.jpg' +p245177 +sg225240 +g27 +sa(dp245178 +g225230 +S'The Deaths of Ananias and Sapphira' +p245179 +sg225232 +S'Artist Information (' +p245180 +sg225234 +S'(artist after)' +p245181 +sg225236 +S'\n' +p245182 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf7a.jpg' +p245183 +sg225240 +g27 +sa(dp245184 +g225230 +S'Saint Peter Healing the Sick with His Shadow' +p245185 +sg225232 +S'Artist Information (' +p245186 +sg225234 +S'(artist after)' +p245187 +sg225236 +S'\n' +p245188 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf83.jpg' +p245189 +sg225240 +g27 +sa(dp245190 +g225230 +S'The Apostles Delivered from Prison by an Angel' +p245191 +sg225232 +S'Artist Information (' +p245192 +sg225234 +S'(artist after)' +p245193 +sg225236 +S'\n' +p245194 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf85.jpg' +p245195 +sg225240 +g27 +sa(dp245196 +g225230 +S'Saint Stephen before the Council' +p245197 +sg225232 +S'Artist Information (' +p245198 +sg225234 +S'(artist after)' +p245199 +sg225236 +S'\n' +p245200 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf7c.jpg' +p245201 +sg225240 +g27 +sa(dp245202 +g225230 +S'Devout Men Carrying Saint Stephen to His Burial' +p245203 +sg225232 +S'Artist Information (' +p245204 +sg225234 +S'(artist after)' +p245205 +sg225236 +S'\n' +p245206 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf86.jpg' +p245207 +sg225240 +g27 +sa(dp245208 +g225230 +S'The People of Samaria Receive the Word of God' +p245209 +sg225232 +S'Artist Information (' +p245210 +sg225234 +S'(artist after)' +p245211 +sg225236 +S'\n' +p245212 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf7d.jpg' +p245213 +sg225240 +g27 +sa(dp245214 +g225230 +S'The Angel Orders Saint Philip to Accompany the Ethiopian Eunuch' +p245215 +sg225232 +S'Artist Information (' +p245216 +sg225234 +S'(artist after)' +p245217 +sg225236 +S'\n' +p245218 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf87.jpg' +p245219 +sg225240 +g27 +sa(dp245220 +g225230 +S'The Baptism of the Eunuch by Saint Philip' +p245221 +sg225232 +S'Artist Information (' +p245222 +sg225234 +S'(artist after)' +p245223 +sg225236 +S'\n' +p245224 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf88.jpg' +p245225 +sg225240 +g27 +sa(dp245226 +g225230 +S'The Conversion of Saint Paul' +p245227 +sg225232 +S'Artist Information (' +p245228 +sg225234 +S'(artist after)' +p245229 +sg225236 +S'\n' +p245230 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf7e.jpg' +p245231 +sg225240 +g27 +sa(dp245232 +g225230 +S'Saint Paul Escapes from Damascus' +p245233 +sg225232 +S'Artist Information (' +p245234 +sg225234 +S'(artist after)' +p245235 +sg225236 +S'\n' +p245236 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf7f.jpg' +p245237 +sg225240 +g27 +sa(dp245238 +g225230 +S'The Healing of Eneas by Saint Peter' +p245239 +sg225232 +S'Artist Information (' +p245240 +sg225234 +S'(artist after)' +p245241 +sg225236 +S'\n' +p245242 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf80.jpg' +p245243 +sg225240 +g27 +sa(dp245244 +g225230 +S'The Raising of Tabitha' +p245245 +sg225232 +S'Artist Information (' +p245246 +sg225234 +S'(artist after)' +p245247 +sg225236 +S'\n' +p245248 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf81.jpg' +p245249 +sg225240 +g27 +sa(dp245250 +g225230 +S'The Angel Commands Cornelius to Fetch Saint Peter' +p245251 +sg225232 +S'Artist Information (' +p245252 +sg225234 +S'(artist after)' +p245253 +sg225236 +S'\n' +p245254 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf8e.jpg' +p245255 +sg225240 +g27 +sa(dp245256 +g225230 +S'The Vision of Saint Peter' +p245257 +sg225232 +S'Artist Information (' +p245258 +sg225234 +S'(artist after)' +p245259 +sg225236 +S'\n' +p245260 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf8d.jpg' +p245261 +sg225240 +g27 +sa(dp245262 +g225230 +S'Cornelius Worshipping Saint Peter' +p245263 +sg225232 +S'Artist Information (' +p245264 +sg225234 +S'(artist after)' +p245265 +sg225236 +S'\n' +p245266 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf8c.jpg' +p245267 +sg225240 +g27 +sa(dp245268 +g225230 +S'Beheading of Saint James' +p245269 +sg225232 +S'Artist Information (' +p245270 +sg225234 +S'(artist after)' +p245271 +sg225236 +S'\n' +p245272 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf8b.jpg' +p245273 +sg225240 +g27 +sa(dp245274 +g225230 +S'Saint Peter Delivered from Prison by an Angel' +p245275 +sg225232 +S'Artist Information (' +p245276 +sg225234 +S'(artist after)' +p245277 +sg225236 +S'\n' +p245278 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf8a.jpg' +p245279 +sg225240 +g27 +sa(dp245280 +g225230 +S'Saint Paul Disputes the Sorcerer' +p245281 +sg225232 +S'Artist Information (' +p245282 +sg225234 +S'(artist after)' +p245283 +sg225236 +S'\n' +p245284 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf93.jpg' +p245285 +sg225240 +g27 +sa(dp245286 +g225230 +S'Saint Paul Heals the Lame Man at Lystra' +p245287 +sg225232 +S'Artist Information (' +p245288 +sg225234 +S'(artist after)' +p245289 +sg225236 +S'\n' +p245290 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf89.jpg' +p245291 +sg225240 +g27 +sa(dp245292 +g225230 +S'Saint Paul Speaks to the Women of Philippi by a River' +p245293 +sg225232 +S'Artist Information (' +p245294 +sg225234 +S'(artist after)' +p245295 +sg225236 +S'\n' +p245296 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf92.jpg' +p245297 +sg225240 +g27 +sa(dp245298 +g225230 +S'The Jailer about to Kill Himself, Converted by Saint Paul' +p245299 +sg225232 +S'Artist Information (' +p245300 +sg225234 +S'(artist after)' +p245301 +sg225236 +S'\n' +p245302 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf94.jpg' +p245303 +sg225240 +g27 +sa(dp245304 +g225230 +S'Saint Paul Driving Out Evil Spirits' +p245305 +sg225232 +S'Artist Information (' +p245306 +sg225234 +S'(artist after)' +p245307 +sg225236 +S'\n' +p245308 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf91.jpg' +p245309 +sg225240 +g27 +sa(dp245310 +g225230 +S'The Fall of Euthychus' +p245311 +sg225232 +S'Artist Information (' +p245312 +sg225234 +S'(artist after)' +p245313 +sg225236 +S'\n' +p245314 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf90.jpg' +p245315 +sg225240 +g27 +sa(dp245316 +g225230 +S'The Arrest of Saint Paul' +p245317 +sg225232 +S'Artist Information (' +p245318 +sg225234 +S'(artist after)' +p245319 +sg225236 +S'\n' +p245320 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf8f.jpg' +p245321 +sg225240 +g27 +sa(dp245322 +g225230 +S'Saint Paul before the High Priest' +p245323 +sg225232 +S'Artist Information (' +p245324 +sg225234 +S'(artist after)' +p245325 +sg225236 +S'\n' +p245326 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf96.jpg' +p245327 +sg225240 +g27 +sa(dp245328 +g225230 +S'Saint Paul before Festus and Agrippa' +p245329 +sg225232 +S'Artist Information (' +p245330 +sg225234 +S'(artist after)' +p245331 +sg225236 +S'\n' +p245332 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf97.jpg' +p245333 +sg225240 +g27 +sa(dp245334 +g225230 +S'Saint Paul Shipwrecked on the Island of Melita' +p245335 +sg225232 +S'Artist Information (' +p245336 +sg225234 +S'(artist after)' +p245337 +sg225236 +S'\n' +p245338 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf95.jpg' +p245339 +sg225240 +g27 +sa(dp245340 +g225230 +S'Saint Paul Preaching in Rome' +p245341 +sg225232 +S'Artist Information (' +p245342 +sg225234 +S'(artist after)' +p245343 +sg225236 +S'\n' +p245344 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00060/a0006084.jpg' +p245345 +sg225240 +g27 +sa(dp245346 +g225230 +S'Samuel Anointing David' +p245347 +sg225232 +S'Artist Information (' +p245348 +sg225234 +S'Netherlandish, 1498 - 1574' +p245349 +sg225236 +S'(artist after)' +p245350 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfe2.jpg' +p245351 +sg225240 +g27 +sa(dp245352 +g225230 +S'David Bringing Presents from His Father to Saul' +p245353 +sg225232 +S'Artist Information (' +p245354 +sg225234 +S'Netherlandish, 1498 - 1574' +p245355 +sg225236 +S'(artist after)' +p245356 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfe3.jpg' +p245357 +sg225240 +g27 +sa(dp245358 +g225230 +S'Jesse Sending David to the Camp' +p245359 +sg225232 +S'Artist Information (' +p245360 +sg225234 +S'Netherlandish, 1498 - 1574' +p245361 +sg225236 +S'(artist after)' +p245362 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfe4.jpg' +p245363 +sg225240 +g27 +sa(dp245364 +g225230 +S"David's Brother Relating to Him Goliath's Challenge" +p245365 +sg225232 +S'Artist Information (' +p245366 +sg225234 +S'Netherlandish, 1498 - 1574' +p245367 +sg225236 +S'(artist after)' +p245368 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfe5.jpg' +p245369 +sg225240 +g27 +sa(dp245370 +g225230 +S'David Armed before Saul' +p245371 +sg225232 +S'Artist Information (' +p245372 +sg225234 +S'Netherlandish, 1498 - 1574' +p245373 +sg225236 +S'(artist after)' +p245374 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfe6.jpg' +p245375 +sg225240 +g27 +sa(dp245376 +g225230 +S'David Meeting Goliath' +p245377 +sg225232 +S'Artist Information (' +p245378 +sg225234 +S'Netherlandish, 1498 - 1574' +p245379 +sg225236 +S'(artist after)' +p245380 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfe7.jpg' +p245381 +sg225240 +g27 +sa(dp245382 +g225230 +S"David Cutting Off Goliath's Head" +p245383 +sg225232 +S'Artist Information (' +p245384 +sg225234 +S'Netherlandish, 1498 - 1574' +p245385 +sg225236 +S'(artist after)' +p245386 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfe8.jpg' +p245387 +sg225240 +g27 +sa(dp245388 +g225230 +S"David with Goliath's Head before Saul" +p245389 +sg225232 +S'Artist Information (' +p245390 +sg225234 +S'Netherlandish, 1498 - 1574' +p245391 +sg225236 +S'(artist after)' +p245392 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfe9.jpg' +p245393 +sg225240 +g27 +sa(dp245394 +g225230 +S'The Triumph of Saul and David' +p245395 +sg225232 +S'Artist Information (' +p245396 +sg225234 +S'Netherlandish, 1498 - 1574' +p245397 +sg225236 +S'(artist after)' +p245398 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfea.jpg' +p245399 +sg225240 +g27 +sa(dp245400 +g225230 +S'David before Saul' +p245401 +sg225232 +S'Artist Information (' +p245402 +sg225234 +S'Netherlandish, 1498 - 1574' +p245403 +sg225236 +S'(artist after)' +p245404 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfeb.jpg' +p245405 +sg225240 +g27 +sa(dp245406 +g225230 +S'Judah Giving Tamar the Pledge' +p245407 +sg225232 +S'Artist Information (' +p245408 +sg225234 +S'(artist after)' +p245409 +sg225236 +S'\n' +p245410 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d01f.jpg' +p245411 +sg225240 +g27 +sa(dp245412 +g225230 +S'Hirah the Adullamite with the Kid' +p245413 +sg225232 +S'Artist Information (' +p245414 +sg225234 +S'(artist after)' +p245415 +sg225236 +S'\n' +p245416 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d020.jpg' +p245417 +sg225240 +g27 +sa(dp245418 +g225230 +S'Tamar Brought to Execution' +p245419 +sg225232 +S'Artist Information (' +p245420 +sg225234 +S'(artist after)' +p245421 +sg225236 +S'\n' +p245422 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d021.jpg' +p245423 +sg225240 +g27 +sa(dp245424 +g225230 +S'Birth of Pharez and Zara' +p245425 +sg225232 +S'Artist Information (' +p245426 +sg225234 +S'(artist after)' +p245427 +sg225236 +S'\n' +p245428 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d022.jpg' +p245429 +sg225240 +g27 +sa(dp245430 +g225230 +S'The Sacrifice of Gideon' +p245431 +sg225232 +S'Ferdinand Bol' +p245432 +sg225234 +S'etching and drypoint' +p245433 +sg225236 +S'unknown date\n' +p245434 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f08c.jpg' +p245435 +sg225240 +g27 +sa(dp245436 +g225230 +S'Les filets' +p245437 +sg225232 +S'Jean-Baptiste Le Prince' +p245438 +sg225234 +S'aquatint and etching in brown' +p245439 +sg225236 +S'1771' +p245440 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008efb.jpg' +p245441 +sg225240 +g27 +sa(dp245442 +g225230 +S'Spring (Printemps)' +p245443 +sg225232 +S'James Jacques Joseph Tissot' +p245444 +sg225234 +S'etching and drypoint' +p245445 +sg225236 +S'1878' +p245446 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009baf.jpg' +p245447 +sg225240 +g27 +sa(dp245448 +g225230 +S"Summer Evening (Soiree d'ete)" +p245449 +sg225232 +S'James Jacques Joseph Tissot' +p245450 +sg225234 +S'etching and drypoint' +p245451 +sg225236 +S'1882' +p245452 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009ff1.jpg' +p245453 +sg225240 +g27 +sa(dp245454 +g225230 +S'Grazing Cow with Two Sheep' +p245455 +sg225232 +S'Adriaen van de Velde' +p245456 +sg225234 +S'etching' +p245457 +sg225236 +S'c. 1670' +p245458 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d45d.jpg' +p245459 +sg225240 +g27 +sa(dp245460 +g225230 +S'Saint Jerome in the Wilderness' +p245461 +sg225232 +S'Annibale Carracci' +p245462 +sg225234 +S'etching and engraving' +p245463 +sg225236 +S'c. 1591' +p245464 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c998.jpg' +p245465 +sg225240 +g27 +sa(dp245466 +g225230 +S'Coronation of the Virgin' +p245467 +sg225232 +S'Artist Information (' +p245468 +sg225234 +S'(artist after)' +p245469 +sg225236 +S'\n' +p245470 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d616.jpg' +p245471 +sg225240 +g27 +sa(dp245472 +g225230 +S'Saint Matthias (?)' +p245473 +sg225232 +S'Lambert Suavius' +p245474 +sg225234 +S'engraving' +p245475 +sg225236 +S'unknown date\n' +p245476 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ceb7.jpg' +p245477 +sg225240 +g27 +sa(dp245478 +g225230 +S'Saint Bartholomew' +p245479 +sg225232 +S'Lambert Suavius' +p245480 +sg225234 +S'engraving' +p245481 +sg225236 +S'unknown date\n' +p245482 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ceb6.jpg' +p245483 +sg225240 +g27 +sa(dp245484 +g225230 +S'Baptism of the Eunuch' +p245485 +sg225232 +S'Louis Cheron' +p245486 +sg225234 +S'etching' +p245487 +sg225236 +S'unknown date\n' +p245488 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008afc.jpg' +p245489 +sg225240 +g27 +sa(dp245490 +g225230 +S'The Holy Family with Angels' +p245491 +sg225232 +S'Carlo Maratta' +p245492 +sg225234 +S'etching' +p245493 +sg225236 +S'unknown date\n' +p245494 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9a1.jpg' +p245495 +sg225240 +g27 +sa(dp245496 +g225230 +S'Jan de Witt' +p245497 +sg225232 +S'Lambert Visscher' +p245498 +sg225234 +S'engraving' +p245499 +sg225236 +S'unknown date\n' +p245500 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d630.jpg' +p245501 +sg225240 +g27 +sa(dp245502 +g225230 +S'Christ and the Samaritan Woman' +p245503 +sg225232 +S'Josse de Pape' +p245504 +sg225234 +S'etching' +p245505 +sg225236 +S'unknown date\n' +p245506 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d540.jpg' +p245507 +sg225240 +g27 +sa(dp245508 +g225232 +S'Josef Albers' +p245509 +sg225240 +g27 +sg225234 +S'pen and india ink on graph paper with green lines' +p245510 +sg225230 +S'Composition' +p245511 +sg225236 +S'1941' +p245512 +sa(dp245513 +g225230 +S'Mrs. Hedwig Berend' +p245514 +sg225232 +S'Lovis Corinth' +p245515 +sg225234 +S'black chalk on wove paper' +p245516 +sg225236 +S'1923' +p245517 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00020/a0002025.jpg' +p245518 +sg225240 +g27 +sa(dp245519 +g225232 +S'Roy Lichtenstein' +p245520 +sg225240 +g27 +sg225234 +S'screenprint' +p245521 +sg225230 +S'Flowers' +p245522 +sg225236 +S'1973' +p245523 +sa(dp245524 +g225232 +S'Roy Lichtenstein' +p245525 +sg225240 +g27 +sg225234 +S'screenprint' +p245526 +sg225230 +S'Flowers' +p245527 +sg225236 +S'1973' +p245528 +sa(dp245529 +g225230 +S'Study of a Young Man' +p245530 +sg225232 +S'John Singer Sargent' +p245531 +sg225234 +S'lithograph' +p245532 +sg225236 +S'unknown date\n' +p245533 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b85.jpg' +p245534 +sg225240 +g27 +sa(dp245535 +g225232 +S'Julian Stanczak' +p245536 +sg225240 +g27 +sg225234 +S'acrylic on canvas' +p245537 +sg225230 +S'Shimmer' +p245538 +sg225236 +S'1972' +p245539 +sa(dp245540 +g225230 +S'Blue Water' +p245541 +sg225232 +S'James Twitty' +p245542 +sg225234 +S'acrylic on canvas' +p245543 +sg225236 +S'1974' +p245544 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000281.jpg' +p245545 +sg225240 +g27 +sa(dp245546 +g225232 +S'Oskar Kokoschka' +p245547 +sg225240 +g27 +sg225234 +S'lithograph' +p245548 +sg225230 +S'Golda Meir, Prime Minister' +p245549 +sg225236 +S'1973' +p245550 +sa(dp245551 +g225232 +S'Oskar Kokoschka' +p245552 +sg225240 +g27 +sg225234 +S'portfolio with six lithographs' +p245553 +sg225230 +S'Jerusalem Faces' +p245554 +sg225236 +S'published 1973' +p245555 +sa(dp245556 +g225232 +S'Oskar Kokoschka' +p245557 +sg225240 +g27 +sg225234 +S'lithograph' +p245558 +sg225230 +S'Dr. Shimon Agranat' +p245559 +sg225236 +S'1973' +p245560 +sa(dp245561 +g225232 +S'Oskar Kokoschka' +p245562 +sg225240 +g27 +sg225234 +S'lithograph' +p245563 +sg225230 +S'His Beatitude Benedictos I, Greek Orthodox Patriarch of Jerusalem' +p245564 +sg225236 +S'1973' +p245565 +sa(dp245566 +g225232 +S'Oskar Kokoschka' +p245567 +sg225240 +g27 +sg225234 +S'lithograph' +p245568 +sg225230 +S'Moshe Dayan, Minister of Defense' +p245569 +sg225236 +S'1973' +p245570 +sa(dp245571 +g225232 +S'Oskar Kokoschka' +p245572 +sg225240 +g27 +sg225234 +S'lithograph' +p245573 +sg225230 +S'Sheik Mustafa Khalil el-Ansari, Chief Warden of the Mosque of Omar' +p245574 +sg225236 +S'1973' +p245575 +sa(dp245576 +g225232 +S'Oskar Kokoschka' +p245577 +sg225240 +g27 +sg225234 +S'lithograph' +p245578 +sg225230 +S'Teddy Kollek, Mayor of Jerusalem' +p245579 +sg225236 +S'1973' +p245580 +sa(dp245581 +g225230 +S'Nude Seated on a Bench with a Pillow (Woman Bathing Her Feet at a Brook)' +p245582 +sg225232 +S'Rembrandt van Rijn' +p245583 +sg225234 +S'etching on japan paper' +p245584 +sg225236 +S'1658' +p245585 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e37.jpg' +p245586 +sg225240 +g27 +sa(dp245587 +g225230 +S'Seated Youth' +p245588 +sg225232 +S'Wilhelm Lehmbruck' +p245589 +sg225234 +S'composite tinted plaster' +p245590 +sg225236 +S'1917' +p245591 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00034/a0003412.jpg' +p245592 +sg225240 +S"Seated Youth\n We see a nude young man seated alone in a closed, self-contained, reflective, and melancholic pose. All nonessential elements have been eliminated, and we focus our attention solely on the expressive arrangement of the bowed head, the intertwined limbs, and the pockets of negative space that unite the form. This last aspect of the figure, its use of space, is especially powerful and reflects Lehmbruck's awareness of contemporary Parisian trends in sculpture. Anatomy is reduced, elongated, and abstracted. The formal language both underlies and reinforces the sculpture's expressive content. It is, in fact, the primary vehicle for conveying the grief, hopelessness, and despair that permeate the work.\n Seated Youth\n Seated Youth\n " +p245593 +sa(dp245594 +g225230 +S'The Adoration of the Magi' +p245595 +sg225232 +S'Master E.S.' +p245596 +sg225234 +S'engraving' +p245597 +sg225236 +S'unknown date\n' +p245598 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00017/a000178e.jpg' +p245599 +sg225240 +g27 +sa(dp245600 +g225230 +S'Landscape with Chateau on a Hill' +p245601 +sg225232 +S'Joos de Momper II' +p245602 +sg225234 +S'pen and brown ink with brown wash and watercolor, heightened with white, on laid paper' +p245603 +sg225236 +S'unknown date\n' +p245604 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d97.jpg' +p245605 +sg225240 +g27 +sa(dp245606 +g225230 +S'The Repentant Magdalen' +p245607 +sg225232 +S'Georges de La Tour' +p245608 +sg225234 +S'oil on canvas' +p245609 +sg225236 +S'c. 1635/1640' +p245610 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d87.jpg' +p245611 +sg225240 +S"According to the tenets of the 17th–century Catholic church, Mary Magdalen was an example of the repentant sinner and consequently a symbol of the Sacrament of Penance. According to legend, Mary led a dissolute life until her sister Martha persuaded her to listen to Jesus Christ. She became one of Christ's most devoted followers and he absolved her of her former sins.\n In Georges de La Tour's somber canvas Mary is shown in profile seated at a table. A candle is the source of light in the composition, but the light also carries a spiritual meaning as it casts a golden glow on the saint's face and the objects assembled on the table. The candle light silhouettes Mary's left hand which rests on a skull that is placed on a book. The skull is reflected in a mirror. The skull and mirror are emblems of \n The simplification of forms, reduced palette, and attention to details evoke a haunting silence that is unique to La Tour's work. La Tour's intense naturalism rendered religious allegory accessible to every viewer. Although his work is deeply spiritual in tone, the solidity and massing of the forms reveal the same emphasis on clarity and symmetry that pervaded contemporary history painting and was a hallmark of French baroque art.\n " +p245612 +sa(dp245613 +g225230 +S'Pan Playing the Flute' +p245614 +sg225232 +S'Artist Information (' +p245615 +sg225234 +S'(artist after)' +p245616 +sg225236 +S'\n' +p245617 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5fc.jpg' +p245618 +sg225240 +g27 +sa(dp245619 +g225230 +S"Chateau d'Argyle" +p245620 +sg225232 +S'Artist Information (' +p245621 +sg225234 +S'(artist after)' +p245622 +sg225236 +S'\n' +p245623 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d1b.jpg' +p245624 +sg225240 +g27 +sa(dp245625 +g225230 +S'The Wooden Bridge at Sulmona, near Tivoli' +p245626 +sg225232 +S'Jan Both' +p245627 +sg225234 +S'etching' +p245628 +sg225236 +S'unknown date\n' +p245629 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4e3.jpg' +p245630 +sg225240 +g27 +sa(dp245631 +g225230 +S'Henry Somerset, 1st Duke of Beaufort, K.G.' +p245632 +sg225232 +S'William Faithorne' +p245633 +sg225234 +S'engraving' +p245634 +sg225236 +S'unknown date\n' +p245635 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076c4.jpg' +p245636 +sg225240 +g27 +sa(dp245637 +g225230 +S'The Triumph of Patience' +p245638 +sg225232 +S'Artist Information (' +p245639 +sg225234 +S'(artist after)' +p245640 +sg225236 +S'\n' +p245641 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf44.jpg' +p245642 +sg225240 +g27 +sa(dp245643 +g225230 +S'The Triumph of Isaac' +p245644 +sg225232 +S'Artist Information (' +p245645 +sg225234 +S'(artist after)' +p245646 +sg225236 +S'\n' +p245647 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf45.jpg' +p245648 +sg225240 +g27 +sa(dp245649 +g225230 +S'The Triumph of Joseph' +p245650 +sg225232 +S'Artist Information (' +p245651 +sg225234 +S'(artist after)' +p245652 +sg225236 +S'\n' +p245653 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf46.jpg' +p245654 +sg225240 +g27 +sa(dp245655 +g225230 +S'The Triumph of David' +p245656 +sg225232 +S'Artist Information (' +p245657 +sg225234 +S'(artist after)' +p245658 +sg225236 +S'\n' +p245659 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a000612e.jpg' +p245660 +sg225240 +g27 +sa(dp245661 +g225230 +S'The Triumph of Job' +p245662 +sg225232 +S'Artist Information (' +p245663 +sg225234 +S'(artist after)' +p245664 +sg225236 +S'\n' +p245665 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf47.jpg' +p245666 +sg225240 +g27 +sa(dp245667 +g225230 +S'The Triumph of Tobias' +p245668 +sg225232 +S'Artist Information (' +p245669 +sg225234 +S'(artist after)' +p245670 +sg225236 +S'\n' +p245671 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf48.jpg' +p245672 +sg225240 +g27 +sa(dp245673 +g225230 +S'The Triumph of Saint Stephen' +p245674 +sg225232 +S'Artist Information (' +p245675 +sg225234 +S'(artist after)' +p245676 +sg225236 +S'\n' +p245677 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf49.jpg' +p245678 +sg225240 +g27 +sa(dp245679 +g225230 +S'The Triumph of Christ' +p245680 +sg225232 +S'Artist Information (' +p245681 +sg225234 +S'(artist after)' +p245682 +sg225236 +S'\n' +p245683 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf4a.jpg' +p245684 +sg225240 +g27 +sa(dp245685 +g225230 +S'The Apostles Delivered from Prison by an Angel' +p245686 +sg225232 +S'Artist Information (' +p245687 +sg225234 +S'(artist after)' +p245688 +sg225236 +S'\n' +p245689 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf84.jpg' +p245690 +sg225240 +g27 +sa(dp245691 +g225230 +S'Robert Walpole, 1st Earl of Orford' +p245692 +sg225232 +S'Artist Information (' +p245693 +sg225234 +S'(artist after)' +p245694 +sg225236 +S'\n' +p245695 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d68a.jpg' +p245696 +sg225240 +g27 +sa(dp245697 +g225230 +S'General Charles Fleetwood' +p245698 +sg225232 +S'Artist Information (' +p245699 +sg225234 +S'(artist after)' +p245700 +sg225236 +S'\n' +p245701 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d68b.jpg' +p245702 +sg225240 +g27 +sa(dp245703 +g225230 +S'William Russell, 1st Duke of Bedford' +p245704 +sg225232 +S'Artist Information (' +p245705 +sg225234 +S'(artist after)' +p245706 +sg225236 +S'\n' +p245707 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d68c.jpg' +p245708 +sg225240 +g27 +sa(dp245709 +g225230 +S'Ch\xc3\xa2teau de Pont-Gibaud' +p245710 +sg225232 +S'Eug\xc3\xa8ne Isabey' +p245711 +sg225234 +S'lithograph' +p245712 +sg225236 +S'unknown date\n' +p245713 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009ada.jpg' +p245714 +sg225240 +g27 +sa(dp245715 +g225232 +S'Artist Information (' +p245716 +sg225240 +g27 +sg225234 +S'(artist after)' +p245717 +sg225230 +S'Saints and Hermits in Landscapes' +p245718 +sg225236 +S'\n' +p245719 +sa(dp245720 +g225232 +S'Artist Information (' +p245721 +sg225240 +g27 +sg225234 +S'(artist after)' +p245722 +sg225230 +S'Title Page' +p245723 +sg225236 +S'\n' +p245724 +sa(dp245725 +g225232 +S'Artist Information (' +p245726 +sg225240 +g27 +sg225234 +S'(artist after)' +p245727 +sg225230 +S'S. Augustinus' +p245728 +sg225236 +S'\n' +p245729 +sa(dp245730 +g225232 +S'Artist Information (' +p245731 +sg225240 +g27 +sg225234 +S'(artist after)' +p245732 +sg225230 +S'Joseph' +p245733 +sg225236 +S'\n' +p245734 +sa(dp245735 +g225232 +S'Artist Information (' +p245736 +sg225240 +g27 +sg225234 +S'(artist after)' +p245737 +sg225230 +S'S. Albertus' +p245738 +sg225236 +S'\n' +p245739 +sa(dp245740 +g225232 +S'Artist Information (' +p245741 +sg225240 +g27 +sg225234 +S'(artist after)' +p245742 +sg225230 +S'Simeon' +p245743 +sg225236 +S'\n' +p245744 +sa(dp245745 +g225232 +S'Artist Information (' +p245746 +sg225240 +g27 +sg225234 +S'(artist after)' +p245747 +sg225230 +S'S. Franciscus' +p245748 +sg225236 +S'\n' +p245749 +sa(dp245750 +g225232 +S'Artist Information (' +p245751 +sg225240 +g27 +sg225234 +S'(artist after)' +p245752 +sg225230 +S'Antiochus' +p245753 +sg225236 +S'\n' +p245754 +sa(dp245755 +g225232 +S'Artist Information (' +p245756 +sg225240 +g27 +sg225234 +S'(artist after)' +p245757 +sg225230 +S'S. Dominicus' +p245758 +sg225236 +S'\n' +p245759 +sa(dp245760 +g225232 +S'Artist Information (' +p245761 +sg225240 +g27 +sg225234 +S'(artist after)' +p245762 +sg225230 +S'Palamonis and Pachomii' +p245763 +sg225236 +S'\n' +p245764 +sa(dp245765 +g225232 +S'Artist Information (' +p245766 +sg225240 +g27 +sg225234 +S'(artist after)' +p245767 +sg225230 +S'Ioannicius' +p245768 +sg225236 +S'\n' +p245769 +sa(dp245770 +g225232 +S'Artist Information (' +p245771 +sg225240 +g27 +sg225234 +S'(artist after)' +p245772 +sg225230 +S'Euthimius and Theoctiatus' +p245773 +sg225236 +S'\n' +p245774 +sa(dp245775 +g225232 +S'Artist Information (' +p245776 +sg225240 +g27 +sg225234 +S'(artist after)' +p245777 +sg225230 +S'Sebaldus' +p245778 +sg225236 +S'\n' +p245779 +sa(dp245780 +g225232 +S'Artist Information (' +p245781 +sg225240 +g27 +sg225234 +S'(artist after)' +p245782 +sg225230 +S'Paternus' +p245783 +sg225236 +S'\n' +p245784 +sa(dp245785 +g225232 +S'Artist Information (' +p245786 +sg225240 +g27 +sg225234 +S'(artist after)' +p245787 +sg225230 +S'Guduualdus' +p245788 +sg225236 +S'\n' +p245789 +sa(dp245790 +g225232 +S'Artist Information (' +p245791 +sg225240 +g27 +sg225234 +S'(artist after)' +p245792 +sg225230 +S'Iodocus' +p245793 +sg225236 +S'\n' +p245794 +sa(dp245795 +g225232 +S'Artist Information (' +p245796 +sg225240 +g27 +sg225234 +S'(artist after)' +p245797 +sg225230 +S'Aleeriu' +p245798 +sg225236 +S'\n' +p245799 +sa(dp245800 +g225232 +S'Artist Information (' +p245801 +sg225240 +g27 +sg225234 +S'(artist after)' +p245802 +sg225230 +S'Arnulphus' +p245803 +sg225236 +S'\n' +p245804 +sa(dp245805 +g225232 +S'Artist Information (' +p245806 +sg225240 +g27 +sg225234 +S'(artist after)' +p245807 +sg225230 +S'Suatacopius' +p245808 +sg225236 +S'\n' +p245809 +sa(dp245810 +g225232 +S'Artist Information (' +p245811 +sg225240 +g27 +sg225234 +S'(artist after)' +p245812 +sg225230 +S'Theodorus' +p245813 +sg225236 +S'\n' +p245814 +sa(dp245815 +g225232 +S'Artist Information (' +p245816 +sg225240 +g27 +sg225234 +S'(artist after)' +p245817 +sg225230 +S'Ionnes' +p245818 +sg225236 +S'\n' +p245819 +sa(dp245820 +g225232 +S'Artist Information (' +p245821 +sg225240 +g27 +sg225234 +S'(artist after)' +p245822 +sg225230 +S'Geroldus' +p245823 +sg225236 +S'\n' +p245824 +sa(dp245825 +g225232 +S'Artist Information (' +p245826 +sg225240 +g27 +sg225234 +S'(artist after)' +p245827 +sg225230 +S'Patroclus' +p245828 +sg225236 +S'\n' +p245829 +sa(dp245830 +g225232 +S'Artist Information (' +p245831 +sg225240 +g27 +sg225234 +S'(artist after)' +p245832 +sg225230 +S'Elphegus' +p245833 +sg225236 +S'\n' +p245834 +sa(dp245835 +g225232 +S'Artist Information (' +p245836 +sg225240 +g27 +sg225234 +S'(artist after)' +p245837 +sg225230 +S'Gamelbertus' +p245838 +sg225236 +S'\n' +p245839 +sa(dp245840 +g225232 +S'Artist Information (' +p245841 +sg225240 +g27 +sg225234 +S'(artist after)' +p245842 +sg225230 +S'Romoaldum and Marinus' +p245843 +sg225236 +S'\n' +p245844 +sa(dp245845 +g225232 +S'Artist Information (' +p245846 +sg225240 +g27 +sg225234 +S'(artist after)' +p245847 +sg225230 +S'Venerius' +p245848 +sg225236 +S'\n' +p245849 +sa(dp245850 +g225232 +S'Artist Information (' +p245851 +sg225240 +g27 +sg225234 +S'(artist after)' +p245852 +sg225230 +S'Autonius' +p245853 +sg225236 +S'\n' +p245854 +sa(dp245855 +g225232 +S'Artist Information (' +p245856 +sg225240 +g27 +sg225234 +S'(artist after)' +p245857 +sg225230 +S'Petre Coelestin' +p245858 +sg225236 +S'\n' +p245859 +sa(dp245860 +g225232 +S'Artist Information (' +p245861 +sg225240 +g27 +sg225234 +S'(artist after)' +p245862 +sg225230 +S'Henricus' +p245863 +sg225236 +S'\n' +p245864 +sa(dp245865 +g225232 +S'Artist Information (' +p245866 +sg225240 +g27 +sg225234 +S'(artist after)' +p245867 +sg225230 +S'Paulus' +p245868 +sg225236 +S'\n' +p245869 +sa(dp245870 +g225230 +S'Augustin de Thou' +p245871 +sg225232 +S'Jean Morin' +p245872 +sg225234 +S'etching and engraving' +p245873 +sg225236 +S'unknown date\n' +p245874 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b54e.jpg' +p245875 +sg225240 +g27 +sa(dp245876 +g225230 +S'Christophe de Thou' +p245877 +sg225232 +S'Jean Morin' +p245878 +sg225234 +S'etching and engraving' +p245879 +sg225236 +S'unknown date\n' +p245880 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b551.jpg' +p245881 +sg225240 +g27 +sa(dp245882 +g225230 +S'Jean Pierre Camus' +p245883 +sg225232 +S'Artist Information (' +p245884 +sg225234 +S'(artist after)' +p245885 +sg225236 +S'\n' +p245886 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bb9.jpg' +p245887 +sg225240 +g27 +sa(dp245888 +g225230 +S"Enrag'd Monster" +p245889 +sg225232 +S'John Hamilton Mortimer' +p245890 +sg225234 +S'etching' +p245891 +sg225236 +S'1778' +p245892 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a0007745.jpg' +p245893 +sg225240 +g27 +sa(dp245894 +g225230 +S'The Arch of Titus' +p245895 +sg225232 +S'Artist Information (' +p245896 +sg225234 +S'(artist after)' +p245897 +sg225236 +S'\n' +p245898 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca37.jpg' +p245899 +sg225240 +g27 +sa(dp245900 +g225230 +S'Catalogo delle Opere' +p245901 +sg225232 +S'Giovanni Battista Piranesi' +p245902 +sg225234 +S'etching' +p245903 +sg225236 +S'unknown date\n' +p245904 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc3f.jpg' +p245905 +sg225240 +g27 +sa(dp245906 +g225230 +S'The Hadrianeum' +p245907 +sg225232 +S'Artist Information (' +p245908 +sg225234 +S'(artist after)' +p245909 +sg225236 +S'\n' +p245910 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca36.jpg' +p245911 +sg225240 +g27 +sa(dp245912 +g225232 +S'Artist Information (' +p245913 +sg225240 +g27 +sg225234 +S'(artist after)' +p245914 +sg225230 +S'Vesuvius from the Bay of Naples' +p245915 +sg225236 +S'\n' +p245916 +sa(dp245917 +g225232 +S'Artist Information (' +p245918 +sg225240 +g27 +sg225234 +S'(artist after)' +p245919 +sg225230 +S'Sir George Johnson, MD, FRS' +p245920 +sg225236 +S'\n' +p245921 +sa(dp245922 +g225232 +S'Artist Information (' +p245923 +sg225240 +g27 +sg225234 +S'(artist after)' +p245924 +sg225230 +S'Sir George Johnson, MD, FRS' +p245925 +sg225236 +S'\n' +p245926 +sa(dp245927 +g225232 +S'Artist Information (' +p245928 +sg225240 +g27 +sg225234 +S'(artist after)' +p245929 +sg225230 +S'Sir Francis Seymour Haden' +p245930 +sg225236 +S'\n' +p245931 +sa(dp245932 +g225232 +S'Artist Information (' +p245933 +sg225240 +g27 +sg225234 +S'(artist after)' +p245934 +sg225230 +S'Madame de Lamballe' +p245935 +sg225236 +S'\n' +p245936 +sa(dp245937 +g225232 +S'Artist Information (' +p245938 +sg225240 +g27 +sg225234 +S'(artist after)' +p245939 +sg225230 +S'Portrait of Two Gentlemen' +p245940 +sg225236 +S'\n' +p245941 +sa(dp245942 +g225230 +S'Scipio Africanus' +p245943 +sg225232 +S'Artist Information (' +p245944 +sg225234 +S'(artist after)' +p245945 +sg225236 +S'\n' +p245946 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5f8.jpg' +p245947 +sg225240 +g27 +sa(dp245948 +g225230 +S'Title Page' +p245949 +sg225232 +S'Jean Lepautre' +p245950 +sg225234 +S'etching' +p245951 +sg225236 +S'unknown date\n' +p245952 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089db.jpg' +p245953 +sg225240 +g27 +sa(dp245954 +g225230 +S'Quarts de plafons' +p245955 +sg225232 +S'Jean Lepautre' +p245956 +sg225234 +S'etching' +p245957 +sg225236 +S'unknown date\n' +p245958 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089d7.jpg' +p245959 +sg225240 +g27 +sa(dp245960 +g225230 +S'Quarts de plafons' +p245961 +sg225232 +S'Jean Lepautre' +p245962 +sg225234 +S'etching' +p245963 +sg225236 +S'unknown date\n' +p245964 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089d6.jpg' +p245965 +sg225240 +g27 +sa(dp245966 +g225230 +S'Quarts de plafons' +p245967 +sg225232 +S'Jean Lepautre' +p245968 +sg225234 +S'etching' +p245969 +sg225236 +S'unknown date\n' +p245970 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089da.jpg' +p245971 +sg225240 +g27 +sa(dp245972 +g225230 +S'Quarts de plafons' +p245973 +sg225232 +S'Jean Lepautre' +p245974 +sg225234 +S'etching' +p245975 +sg225236 +S'unknown date\n' +p245976 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089d8.jpg' +p245977 +sg225240 +g27 +sa(dp245978 +g225230 +S'Quarts de plafons' +p245979 +sg225232 +S'Jean Lepautre' +p245980 +sg225234 +S'etching' +p245981 +sg225236 +S'unknown date\n' +p245982 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089dc.jpg' +p245983 +sg225240 +g27 +sa(dp245984 +g225230 +S'Title Page' +p245985 +sg225232 +S'Jean Lepautre' +p245986 +sg225234 +S'etching' +p245987 +sg225236 +S'unknown date\n' +p245988 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089dd.jpg' +p245989 +sg225240 +g27 +sa(dp245990 +g225230 +S'Fireplaces and Other Interior Decorations' +p245991 +sg225232 +S'Jean Lepautre' +p245992 +sg225234 +S'etching' +p245993 +sg225236 +S'unknown date\n' +p245994 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089d5.jpg' +p245995 +sg225240 +g27 +sa(dp245996 +g225230 +S'Fireplaces and Other Interior Decorations' +p245997 +sg225232 +S'Jean Lepautre' +p245998 +sg225234 +S'etching' +p245999 +sg225236 +S'unknown date\n' +p246000 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089d9.jpg' +p246001 +sg225240 +g27 +sa(dp246002 +g225230 +S'Fireplaces and Other Interior Decorations' +p246003 +sg225232 +S'Jean Lepautre' +p246004 +sg225234 +S'etching' +p246005 +sg225236 +S'unknown date\n' +p246006 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089d3.jpg' +p246007 +sg225240 +g27 +sa(dp246008 +g225230 +S'Fireplaces and Other Interior Decorations' +p246009 +sg225232 +S'Jean Lepautre' +p246010 +sg225234 +S'etching' +p246011 +sg225236 +S'unknown date\n' +p246012 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089d4.jpg' +p246013 +sg225240 +g27 +sa(dp246014 +g225230 +S'Fireplaces and Other Interior Decorations' +p246015 +sg225232 +S'Jean Lepautre' +p246016 +sg225234 +S'etching' +p246017 +sg225236 +S'unknown date\n' +p246018 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089de.jpg' +p246019 +sg225240 +g27 +sa(dp246020 +g225230 +S'Roman Landscape' +p246021 +sg225232 +S'Gaspard Dughet' +p246022 +sg225234 +S'etching' +p246023 +sg225236 +S'unknown date\n' +p246024 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b0f.jpg' +p246025 +sg225240 +g27 +sa(dp246026 +g225230 +S'Roman Landscape' +p246027 +sg225232 +S'Gaspard Dughet' +p246028 +sg225234 +S'etching' +p246029 +sg225236 +S'unknown date\n' +p246030 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b12.jpg' +p246031 +sg225240 +g27 +sa(dp246032 +g225230 +S'Roman Landscape' +p246033 +sg225232 +S'Gaspard Dughet' +p246034 +sg225234 +S'etching' +p246035 +sg225236 +S'unknown date\n' +p246036 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b10.jpg' +p246037 +sg225240 +g27 +sa(dp246038 +g225230 +S'Roman Landscape' +p246039 +sg225232 +S'Gaspard Dughet' +p246040 +sg225234 +S'etching' +p246041 +sg225236 +S'unknown date\n' +p246042 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b11.jpg' +p246043 +sg225240 +g27 +sa(dp246044 +g225230 +S'Landscape with Ruin at Left and Arch with Sheep at Center' +p246045 +sg225232 +S'Paul Sandby' +p246046 +sg225234 +S'etching' +p246047 +sg225236 +S'unknown date\n' +p246048 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076a2.jpg' +p246049 +sg225240 +g27 +sa(dp246050 +g225230 +S'Landscape with Boy and Cows at Left, Ruin at Right Center' +p246051 +sg225232 +S'Paul Sandby' +p246052 +sg225234 +S'etching' +p246053 +sg225236 +S'unknown date\n' +p246054 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076a3.jpg' +p246055 +sg225240 +g27 +sa(dp246056 +g225230 +S'Landscape with Large Ruin, Wagon and Horses at Right' +p246057 +sg225232 +S'Paul Sandby' +p246058 +sg225234 +S'etching' +p246059 +sg225236 +S'unknown date\n' +p246060 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076a1.jpg' +p246061 +sg225240 +g27 +sa(dp246062 +g225230 +S'Landscape with Ruin at Right, Woman on Donkey at Left Center' +p246063 +sg225232 +S'Paul Sandby' +p246064 +sg225234 +S'etching' +p246065 +sg225236 +S'unknown date\n' +p246066 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076a4.jpg' +p246067 +sg225240 +g27 +sa(dp246068 +g225230 +S'Landscape with Ruin, Figure in Boat at Lower Center' +p246069 +sg225232 +S'Paul Sandby' +p246070 +sg225234 +S'etching' +p246071 +sg225236 +S'unknown date\n' +p246072 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076a0.jpg' +p246073 +sg225240 +g27 +sa(dp246074 +g225230 +S'Landscape with Ruin, Two Women in Foreground' +p246075 +sg225232 +S'Paul Sandby' +p246076 +sg225234 +S'etching' +p246077 +sg225236 +S'1758' +p246078 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076a5.jpg' +p246079 +sg225240 +g27 +sa(dp246080 +g225230 +S'The Hinny Drover, via Appia' +p246081 +sg225232 +S'Jan Both' +p246082 +sg225234 +S'etching' +p246083 +sg225236 +S'unknown date\n' +p246084 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4df.jpg' +p246085 +sg225240 +g27 +sa(dp246086 +g225230 +S'Landscape with Tree in Left Foreground' +p246087 +sg225232 +S'Paul Sandby' +p246088 +sg225234 +S'etching' +p246089 +sg225236 +S'1750' +p246090 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076a7.jpg' +p246091 +sg225240 +g27 +sa(dp246092 +g225230 +S'Landscape with a Waterfall' +p246093 +sg225232 +S'Paul Sandby' +p246094 +sg225234 +S'etching' +p246095 +sg225236 +S'unknown date\n' +p246096 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076a6.jpg' +p246097 +sg225240 +g27 +sa(dp246098 +g225232 +S'Levon West' +p246099 +sg225240 +g27 +sg225234 +S'etching on blue paper' +p246100 +sg225230 +S'Venice' +p246101 +sg225236 +S'unknown date\n' +p246102 +sa(dp246103 +g225232 +S'Aegidius Sadeler II' +p246104 +sg225240 +g27 +sg225234 +S'engraving' +p246105 +sg225230 +S'Emperor Matthias' +p246106 +sg225236 +S'1614' +p246107 +sa(dp246108 +g225230 +S'Brutto Buono Stoned by His Enemies' +p246109 +sg225232 +S'Francesco Villamena' +p246110 +sg225234 +S'engraving' +p246111 +sg225236 +S'unknown date\n' +p246112 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a000656d.jpg' +p246113 +sg225240 +g27 +sa(dp246114 +g225230 +S'Silenus' +p246115 +sg225232 +S'Artist Information (' +p246116 +sg225234 +S'(artist after)' +p246117 +sg225236 +S'\n' +p246118 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008300.jpg' +p246119 +sg225240 +g27 +sa(dp246120 +g225230 +S'Saint Francis Consoled by the Musical Angel' +p246121 +sg225232 +S'Artist Information (' +p246122 +sg225234 +S'(artist after)' +p246123 +sg225236 +S'\n' +p246124 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d55.jpg' +p246125 +sg225240 +g27 +sa(dp246126 +g225230 +S'Cupid Asleep' +p246127 +sg225232 +S'Artist Information (' +p246128 +sg225234 +S'(artist after)' +p246129 +sg225236 +S'\n' +p246130 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca04.jpg' +p246131 +sg225240 +g27 +sa(dp246132 +g225230 +S'Battle of Horsemen and Foot Soldiers' +p246133 +sg225232 +S'Etienne Delaune' +p246134 +sg225234 +S'engraving' +p246135 +sg225236 +S'unknown date\n' +p246136 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008311.jpg' +p246137 +sg225240 +g27 +sa(dp246138 +g225230 +S'Vulcan at the Forge' +p246139 +sg225232 +S'Marco Dente' +p246140 +sg225234 +S'engraving' +p246141 +sg225236 +S'unknown date\n' +p246142 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c87d.jpg' +p246143 +sg225240 +g27 +sa(dp246144 +g225230 +S'Two Peasants Singing' +p246145 +sg225232 +S'Cornelis Dusart' +p246146 +sg225234 +S'etching' +p246147 +sg225236 +S'1685' +p246148 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0d1.jpg' +p246149 +sg225240 +g27 +sa(dp246150 +g225230 +S'Johannes Zurenus (Jan van Suren)' +p246151 +sg225232 +S'Artist Information (' +p246152 +sg225234 +S'(artist after)' +p246153 +sg225236 +S'\n' +p246154 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce39.jpg' +p246155 +sg225240 +g27 +sa(dp246156 +g225230 +S'Old Man Sleeping in an Armchair' +p246157 +sg225232 +S'Salomon Koninck' +p246158 +sg225234 +S'etching' +p246159 +sg225236 +S'unknown date\n' +p246160 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d247.jpg' +p246161 +sg225240 +g27 +sa(dp246162 +g225230 +S'Mater Dolorosa Kneeling, Supported by Two Angels' +p246163 +sg225232 +S'Artist Information (' +p246164 +sg225234 +S'(artist after)' +p246165 +sg225236 +S'\n' +p246166 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d528.jpg' +p246167 +sg225240 +g27 +sa(dp246168 +g225230 +S'Saint Anthony' +p246169 +sg225232 +S'Jan Lievens' +p246170 +sg225234 +S'etching' +p246171 +sg225236 +S'unknown date\n' +p246172 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f25.jpg' +p246173 +sg225240 +g27 +sa(dp246174 +g225230 +S'The Fountain and the Column of Trajan in Rome' +p246175 +sg225232 +S'Jan Lutma II' +p246176 +sg225234 +S'etching with stipple' +p246177 +sg225236 +S'1656' +p246178 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d52e.jpg' +p246179 +sg225240 +g27 +sa(dp246180 +g225230 +S'Woman with a Harp' +p246181 +sg225232 +S'Georg Pencz' +p246182 +sg225234 +S'engraving' +p246183 +sg225236 +S'1544' +p246184 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b087.jpg' +p246185 +sg225240 +g27 +sa(dp246186 +g225230 +S'Psyche Carried to Olympus' +p246187 +sg225232 +S'Artist Information (' +p246188 +sg225234 +S'Italian, c. 1480 - c. 1534' +p246189 +sg225236 +S'(related artist)' +p246190 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c867.jpg' +p246191 +sg225240 +g27 +sa(dp246192 +g225230 +S'Saint Francis' +p246193 +sg225232 +S'Pietro Rotari' +p246194 +sg225234 +S'etching' +p246195 +sg225236 +S'unknown date\n' +p246196 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caf4.jpg' +p246197 +sg225240 +g27 +sa(dp246198 +g225230 +S'The Rape of the Sabines' +p246199 +sg225232 +S'Artist Information (' +p246200 +sg225234 +S'(artist after)' +p246201 +sg225236 +S'\n' +p246202 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d077.jpg' +p246203 +sg225240 +g27 +sa(dp246204 +g225230 +S'Frontispiece' +p246205 +sg225232 +S'Antonio Tempesta' +p246206 +sg225234 +S'etching' +p246207 +sg225236 +S'1613' +p246208 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006777.jpg' +p246209 +sg225240 +g27 +sa(dp246210 +g225230 +S'Cain Kills His Brother Abel' +p246211 +sg225232 +S'Antonio Tempesta' +p246212 +sg225234 +S'etching' +p246213 +sg225236 +S'1613' +p246214 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006776.jpg' +p246215 +sg225240 +g27 +sa(dp246216 +g225230 +S'Abraham makes the enemies flee who hold his nephew' +p246217 +sg225232 +S'Antonio Tempesta' +p246218 +sg225234 +S'etching' +p246219 +sg225236 +S'1613' +p246220 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006770.jpg' +p246221 +sg225240 +g27 +sa(dp246222 +g225230 +S'Lot and His Family recalled home by Abraham' +p246223 +sg225232 +S'Antonio Tempesta' +p246224 +sg225234 +S'etching' +p246225 +sg225236 +S'1613' +p246226 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a000676f.jpg' +p246227 +sg225240 +g27 +sa(dp246228 +g225230 +S'Moses makes the Hebrew army march against the Ethiopians' +p246229 +sg225232 +S'Antonio Tempesta' +p246230 +sg225234 +S'etching' +p246231 +sg225236 +S'1613' +p246232 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006775.jpg' +p246233 +sg225240 +g27 +sa(dp246234 +g225230 +S'Defeat of the Ethiopians' +p246235 +sg225232 +S'Antonio Tempesta' +p246236 +sg225234 +S'etching' +p246237 +sg225236 +S'1613' +p246238 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a000676e.jpg' +p246239 +sg225240 +g27 +sa(dp246240 +g225230 +S'The Hebrews defeat the Canaans' +p246241 +sg225232 +S'Antonio Tempesta' +p246242 +sg225234 +S'etching' +p246243 +sg225236 +S'1613' +p246244 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006771.jpg' +p246245 +sg225240 +g27 +sa(dp246246 +g225230 +S'The Egyptians Pursue the Israelites' +p246247 +sg225232 +S'Antonio Tempesta' +p246248 +sg225234 +S'etching' +p246249 +sg225236 +S'1613' +p246250 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006772.jpg' +p246251 +sg225240 +g27 +sa(dp246252 +g225230 +S"Pharaoh's Army Drowns in the Red Sea" +p246253 +sg225232 +S'Antonio Tempesta' +p246254 +sg225234 +S'etching' +p246255 +sg225236 +S'1613' +p246256 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006774.jpg' +p246257 +sg225240 +g27 +sa(dp246258 +g225230 +S'The Defeat of the Amalikits by the Hebrews' +p246259 +sg225232 +S'Antonio Tempesta' +p246260 +sg225234 +S'etching' +p246261 +sg225236 +S'1613' +p246262 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006773.jpg' +p246263 +sg225240 +g27 +sa(dp246264 +g225230 +S'The Taking of the City of Jericho' +p246265 +sg225232 +S'Antonio Tempesta' +p246266 +sg225234 +S'etching' +p246267 +sg225236 +S'1613' +p246268 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006778.jpg' +p246269 +sg225240 +g27 +sa(dp246270 +g225230 +S'Joshua Ordering the Sun to Stop' +p246271 +sg225232 +S'Antonio Tempesta' +p246272 +sg225234 +S'etching' +p246273 +sg225236 +S'1613' +p246274 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a000677e.jpg' +p246275 +sg225240 +g27 +sa(dp246276 +g225230 +S'Joshua has the Chariots Burned and Cuts the Legs off His Enemies' +p246277 +sg225232 +S'Antonio Tempesta' +p246278 +sg225234 +S'etching' +p246279 +sg225236 +S'1613' +p246280 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006781.jpg' +p246281 +sg225240 +g27 +sa(dp246282 +g225230 +S'Gideon Chooses His Soldiers' +p246283 +sg225232 +S'Antonio Tempesta' +p246284 +sg225234 +S'etching' +p246285 +sg225236 +S'1613' +p246286 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006779.jpg' +p246287 +sg225240 +g27 +sa(dp246288 +g225230 +S'Gideon Frightens His Enemies in Their Camp' +p246289 +sg225232 +S'Antonio Tempesta' +p246290 +sg225234 +S'etching' +p246291 +sg225236 +S'1613' +p246292 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a000677b.jpg' +p246293 +sg225240 +g27 +sa(dp246294 +g225230 +S'The Death of Abimelech' +p246295 +sg225232 +S'Antonio Tempesta' +p246296 +sg225234 +S'etching' +p246297 +sg225236 +S'1613' +p246298 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a000677f.jpg' +p246299 +sg225240 +g27 +sa(dp246300 +g225230 +S'David Kills Goliath' +p246301 +sg225232 +S'Antonio Tempesta' +p246302 +sg225234 +S'etching' +p246303 +sg225236 +S'1613' +p246304 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a000677a.jpg' +p246305 +sg225240 +g27 +sa(dp246306 +g225230 +S'The Triumph of David over Goliath' +p246307 +sg225232 +S'Antonio Tempesta' +p246308 +sg225234 +S'etching' +p246309 +sg225236 +S'1613' +p246310 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a000677c.jpg' +p246311 +sg225240 +g27 +sa(dp246312 +g225230 +S'Saul Kills Himself after the Defeat of his Army by the Philistines' +p246313 +sg225232 +S'Antonio Tempesta' +p246314 +sg225234 +S'etching' +p246315 +sg225236 +S'1613' +p246316 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006780.jpg' +p246317 +sg225240 +g27 +sa(dp246318 +g225230 +S'Jacob Kills Absalom, Son of King David' +p246319 +sg225232 +S'Antonio Tempesta' +p246320 +sg225234 +S'etching' +p246321 +sg225236 +S'1613' +p246322 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a000677d.jpg' +p246323 +sg225240 +g27 +sa(dp246324 +g225230 +S'Elisha Bringing the Blinded Syrian Army to the King of Israel' +p246325 +sg225232 +S'Antonio Tempesta' +p246326 +sg225234 +S'etching' +p246327 +sg225236 +S'1613' +p246328 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a00067d8.jpg' +p246329 +sg225240 +g27 +sa(dp246330 +g225230 +S'The Exterminating Angel Vanquishing the Army of Sennacherib' +p246331 +sg225232 +S'Antonio Tempesta' +p246332 +sg225234 +S'etching' +p246333 +sg225236 +S'1613' +p246334 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a00067d7.jpg' +p246335 +sg225240 +g27 +sa(dp246336 +g225230 +S'Josaphat Thanking God for His Victory' +p246337 +sg225232 +S'Antonio Tempesta' +p246338 +sg225234 +S'etching' +p246339 +sg225236 +S'1613' +p246340 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a00067d6.jpg' +p246341 +sg225240 +g27 +sa(dp246342 +g225230 +S'Judith and Holofernes' +p246343 +sg225232 +S'Antonio Tempesta' +p246344 +sg225234 +S'etching' +p246345 +sg225236 +S'1613' +p246346 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a00067d5.jpg' +p246347 +sg225240 +g27 +sa(dp246348 +g225230 +S'The Israelites Rebuilding the Walls of Jerusalem' +p246349 +sg225232 +S'Antonio Tempesta' +p246350 +sg225234 +S'etching' +p246351 +sg225236 +S'1613' +p246352 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a00067d4.jpg' +p246353 +sg225240 +g27 +sa(dp246354 +g225230 +S'Rainy Landscape' +p246355 +sg225232 +S'Lodewijk de Vadder' +p246356 +sg225234 +S'etching' +p246357 +sg225236 +S'unknown date\n' +p246358 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5c6.jpg' +p246359 +sg225240 +g27 +sa(dp246360 +g225230 +S'Rainy Landscape' +p246361 +sg225232 +S'Lodewijk de Vadder' +p246362 +sg225234 +S'etching' +p246363 +sg225236 +S'unknown date\n' +p246364 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5c7.jpg' +p246365 +sg225240 +g27 +sa(dp246366 +g225230 +S'Count Nicolas Zrinyi' +p246367 +sg225232 +S'Mathis Zundt' +p246368 +sg225234 +S'etching' +p246369 +sg225236 +S'unknown date\n' +p246370 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b1b7.jpg' +p246371 +sg225240 +g27 +sa(dp246372 +g225230 +S'Title Page' +p246373 +sg225232 +S'Artist Information (' +p246374 +sg225234 +S'(artist after)' +p246375 +sg225236 +S'\n' +p246376 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3c2.jpg' +p246377 +sg225240 +g27 +sa(dp246378 +g225230 +S'Recruitment of Troops' +p246379 +sg225232 +S'Artist Information (' +p246380 +sg225234 +S'(artist after)' +p246381 +sg225236 +S'\n' +p246382 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3d0.jpg' +p246383 +sg225240 +g27 +sa(dp246384 +g225230 +S'The Battle' +p246385 +sg225232 +S'Artist Information (' +p246386 +sg225234 +S'(artist after)' +p246387 +sg225236 +S'\n' +p246388 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3d1.jpg' +p246389 +sg225240 +g27 +sa(dp246390 +g225230 +S'Scene of Pillage' +p246391 +sg225232 +S'Artist Information (' +p246392 +sg225234 +S'(artist after)' +p246393 +sg225236 +S'\n' +p246394 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3d2.jpg' +p246395 +sg225240 +g27 +sa(dp246396 +g225230 +S'Plundering a Large Farmhouse' +p246397 +sg225232 +S'Artist Information (' +p246398 +sg225234 +S'(artist after)' +p246399 +sg225236 +S'\n' +p246400 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3d3.jpg' +p246401 +sg225240 +g27 +sa(dp246402 +g225230 +S'Destruction of a Convent' +p246403 +sg225232 +S'Artist Information (' +p246404 +sg225234 +S'(artist after)' +p246405 +sg225236 +S'\n' +p246406 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3c3.jpg' +p246407 +sg225240 +g27 +sa(dp246408 +g225230 +S'Plundering and Burning a Village' +p246409 +sg225232 +S'Artist Information (' +p246410 +sg225234 +S'(artist after)' +p246411 +sg225236 +S'\n' +p246412 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3cd.jpg' +p246413 +sg225240 +g27 +sa(dp246414 +g225230 +S'Attack on a Coach' +p246415 +sg225232 +S'Artist Information (' +p246416 +sg225234 +S'(artist after)' +p246417 +sg225236 +S'\n' +p246418 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3c4.jpg' +p246419 +sg225240 +g27 +sa(dp246420 +g225230 +S'Discovery of the Criminal Soldiers' +p246421 +sg225232 +S'Artist Information (' +p246422 +sg225234 +S'(artist after)' +p246423 +sg225236 +S'\n' +p246424 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3c5.jpg' +p246425 +sg225240 +g27 +sa(dp246426 +g225230 +S'The Strappado' +p246427 +sg225232 +S'Artist Information (' +p246428 +sg225234 +S'(artist after)' +p246429 +sg225236 +S'\n' +p246430 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3c6.jpg' +p246431 +sg225240 +g27 +sa(dp246432 +g225230 +S'The Hanging' +p246433 +sg225232 +S'Artist Information (' +p246434 +sg225234 +S'(artist after)' +p246435 +sg225236 +S'\n' +p246436 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3c7.jpg' +p246437 +sg225240 +g27 +sa(dp246438 +g225230 +S'The Firing Squad' +p246439 +sg225232 +S'Artist Information (' +p246440 +sg225234 +S'(artist after)' +p246441 +sg225236 +S'\n' +p246442 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3c8.jpg' +p246443 +sg225240 +g27 +sa(dp246444 +g225230 +S'The Stake' +p246445 +sg225232 +S'Artist Information (' +p246446 +sg225234 +S'(artist after)' +p246447 +sg225236 +S'\n' +p246448 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3c9.jpg' +p246449 +sg225240 +g27 +sa(dp246450 +g225230 +S'The Wheel' +p246451 +sg225232 +S'Artist Information (' +p246452 +sg225234 +S'(artist after)' +p246453 +sg225236 +S'\n' +p246454 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3cf.jpg' +p246455 +sg225240 +g27 +sa(dp246456 +g225230 +S'The Hospital' +p246457 +sg225232 +S'Artist Information (' +p246458 +sg225234 +S'(artist after)' +p246459 +sg225236 +S'\n' +p246460 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3ca.jpg' +p246461 +sg225240 +g27 +sa(dp246462 +g225230 +S'Dying Soldiers by the Roadside' +p246463 +sg225232 +S'Artist Information (' +p246464 +sg225234 +S'(artist after)' +p246465 +sg225236 +S'\n' +p246466 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3ce.jpg' +p246467 +sg225240 +g27 +sa(dp246468 +g225230 +S'The Peasants Avenge Themselves' +p246469 +sg225232 +S'Artist Information (' +p246470 +sg225234 +S'(artist after)' +p246471 +sg225236 +S'\n' +p246472 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3cb.jpg' +p246473 +sg225240 +g27 +sa(dp246474 +g225230 +S'Distribution of Rewards' +p246475 +sg225232 +S'Artist Information (' +p246476 +sg225234 +S'(artist after)' +p246477 +sg225236 +S'\n' +p246478 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3cc.jpg' +p246479 +sg225240 +g27 +sa(dp246480 +g225230 +S"Daniel in the Lions' Den" +p246481 +sg225232 +S'Artist Information (' +p246482 +sg225234 +S'(artist after)' +p246483 +sg225236 +S'\n' +p246484 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d613.jpg' +p246485 +sg225240 +g27 +sa(dp246486 +g225230 +S'God the Father and Angels Adoring the Christ Child' +p246487 +sg225232 +S'Giovanni Benedetto Castiglione' +p246488 +sg225234 +S'etching on laid paper' +p246489 +sg225236 +S'c. 1655' +p246490 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a0006563.jpg' +p246491 +sg225240 +g27 +sa(dp246492 +g225230 +S"Italian Landscape (Paysage d'Italie)" +p246493 +sg225232 +S'Jean-Baptiste-Camille Corot' +p246494 +sg225234 +S'etching' +p246495 +sg225236 +S'c. 1865' +p246496 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009817.jpg' +p246497 +sg225240 +g27 +sa(dp246498 +g225230 +S'In Front of the Watteaus in the Louvre' +p246499 +sg225232 +S'Paul-C\xc3\xa9sar Helleu' +p246500 +sg225234 +S'2-color drypoint' +p246501 +sg225236 +S'c. 1895' +p246502 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f6f.jpg' +p246503 +sg225240 +g27 +sa(dp246504 +g225230 +S'The Tuileries (Les Tuileries)' +p246505 +sg225232 +S'Edouard Vuillard' +p246506 +sg225234 +S'lithograph' +p246507 +sg225236 +S'published 1895' +p246508 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f1a.jpg' +p246509 +sg225240 +g27 +sa(dp246510 +g225230 +S'Moenippvs (Moenippus)' +p246511 +sg225232 +S'Artist Information (' +p246512 +sg225234 +S'(artist after)' +p246513 +sg225236 +S'\n' +p246514 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed6b.jpg' +p246515 +sg225240 +g27 +sa(dp246516 +g225230 +S'Memory of Clavering' +p246517 +sg225232 +S'F.L. Griggs' +p246518 +sg225234 +S'etching' +p246519 +sg225236 +S'1934' +p246520 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00080/a000807e.jpg' +p246521 +sg225240 +g27 +sa(dp246522 +g225232 +S'Aristide Maillol' +p246523 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in green on simili-Japan paper' +p246524 +sg225230 +S"Two Nude Bathers under a Tree on the Water Bank (Deux baigneuses nues sous un arbre au bord de l'eau)" +p246525 +sg225236 +S'1895' +p246526 +sa(dp246527 +g225232 +S'Jacob Kainen' +p246528 +sg225240 +g27 +sg225234 +S'lithograph' +p246529 +sg225230 +S'Anacharsis' +p246530 +sg225236 +S'1973' +p246531 +sa(dp246532 +g225230 +S'Banana Man' +p246533 +sg225232 +S'Jacob Kainen' +p246534 +sg225234 +S'5-color lithograph (stone) on Rives paper' +p246535 +sg225236 +S'1938' +p246536 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ae1.jpg' +p246537 +sg225240 +g27 +sa(dp246538 +g225232 +S'Jacob Kainen' +p246539 +sg225240 +g27 +sg225234 +S'woodcut in black printed from two blocks on japan paper' +p246540 +sg225230 +S'Midnight' +p246541 +sg225236 +S'1965' +p246542 +sa(dp246543 +g225232 +S'Jacob Kainen' +p246544 +sg225240 +g27 +sg225234 +S'5-color lithograph (aluminum) on wove paper' +p246545 +sg225230 +S'Peter the Great' +p246546 +sg225236 +S'1973' +p246547 +sa(dp246548 +g225232 +S'Jacob Kainen' +p246549 +sg225240 +g27 +sg225234 +S'lithograph in black on wove paper' +p246550 +sg225230 +S'Rampant' +p246551 +sg225236 +S'1973' +p246552 +sa(dp246553 +g225232 +S'Jacob Kainen' +p246554 +sg225240 +g27 +sg225234 +S'4-color lithograph (stone and aluminum) on wove paper' +p246555 +sg225230 +S'Starbuck I' +p246556 +sg225236 +S'1972' +p246557 +sa(dp246558 +g225230 +S'Pancraz von Freyberg Hohenschau' +p246559 +sg225232 +S'Hans Sebald Lautensack' +p246560 +sg225234 +S'etching' +p246561 +sg225236 +S'1553' +p246562 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acbf.jpg' +p246563 +sg225240 +g27 +sa(dp246564 +g225230 +S'Janus Lutma, the Elder (Posteritati)' +p246565 +sg225232 +S'Jan Lutma II' +p246566 +sg225234 +S'punch manner' +p246567 +sg225236 +S'unknown date\n' +p246568 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d52a.jpg' +p246569 +sg225240 +g27 +sa(dp246570 +g225230 +S'Three Oriental Figures' +p246571 +sg225232 +S'Artist Information (' +p246572 +sg225234 +S'German, c. 1450 - 1491' +p246573 +sg225236 +S'(related artist)' +p246574 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a469.jpg' +p246575 +sg225240 +g27 +sa(dp246576 +g225230 +S'Choral' +p246577 +sg225232 +S'Auguste Lep\xc3\xa8re' +p246578 +sg225234 +S'woodcut' +p246579 +sg225236 +S'1897' +p246580 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a000993c.jpg' +p246581 +sg225240 +g27 +sa(dp246582 +g225230 +S'Corner of the Rue Royale (Coin de la rue royale)' +p246583 +sg225232 +S'Auguste Lep\xc3\xa8re' +p246584 +sg225234 +S'wood engraving' +p246585 +sg225236 +S'1890' +p246586 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a0009941.jpg' +p246587 +sg225240 +g27 +sa(dp246588 +g225230 +S'Gathering of May-lily (La cueillette du muguet)' +p246589 +sg225232 +S'Auguste Lep\xc3\xa8re' +p246590 +sg225234 +S'wood engraving' +p246591 +sg225236 +S'1908' +p246592 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a000993a.jpg' +p246593 +sg225240 +g27 +sa(dp246594 +g225230 +S'Pier at Bercy (Embarcadere a Bercy)' +p246595 +sg225232 +S'Auguste Lep\xc3\xa8re' +p246596 +sg225234 +S'wood engraving' +p246597 +sg225236 +S'1890' +p246598 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a0009939.jpg' +p246599 +sg225240 +g27 +sa(dp246600 +g225230 +S'Rouen' +p246601 +sg225232 +S'Auguste Lep\xc3\xa8re' +p246602 +sg225234 +S'wood engraving' +p246603 +sg225236 +S'1888' +p246604 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cf3.jpg' +p246605 +sg225240 +g27 +sa(dp246606 +g225230 +S'Dedication Page' +p246607 +sg225232 +S'Auguste Lep\xc3\xa8re' +p246608 +sg225234 +S'wood engraving' +p246609 +sg225236 +S'published 1900' +p246610 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cea.jpg' +p246611 +sg225240 +g27 +sa(dp246612 +g225230 +S'Dedication Page' +p246613 +sg225232 +S'Auguste Lep\xc3\xa8re' +p246614 +sg225234 +S'wood engraving' +p246615 +sg225236 +S'published 1900' +p246616 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ceb.jpg' +p246617 +sg225240 +g27 +sa(dp246618 +g225230 +S'Dedication Page' +p246619 +sg225232 +S'Auguste Lep\xc3\xa8re' +p246620 +sg225234 +S'wood engraving' +p246621 +sg225236 +S'published 1900' +p246622 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cec.jpg' +p246623 +sg225240 +g27 +sa(dp246624 +g225230 +S'Preface' +p246625 +sg225232 +S'Auguste Lep\xc3\xa8re' +p246626 +sg225234 +S'wood engraving' +p246627 +sg225236 +S'published 1900' +p246628 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009ced.jpg' +p246629 +sg225240 +g27 +sa(dp246630 +g225230 +S'Camaret' +p246631 +sg225232 +S'Maximilien Luce' +p246632 +sg225234 +S'color lithograph' +p246633 +sg225236 +S'unknown date\n' +p246634 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fc9.jpg' +p246635 +sg225240 +g27 +sa(dp246636 +g225230 +S'The Sea at Camaret (La mer a Camaret)' +p246637 +sg225232 +S'Maximilien Luce' +p246638 +sg225234 +S'color lithograph' +p246639 +sg225236 +S'unknown date\n' +p246640 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fc1.jpg' +p246641 +sg225240 +g27 +sa(dp246642 +g225230 +S'Woman on the Road (La femme sur la route)' +p246643 +sg225232 +S'Camille Pissarro' +p246644 +sg225234 +S'etching and aquatint with drypoint [posthumous impression]' +p246645 +sg225236 +S'1879' +p246646 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a00099a9.jpg' +p246647 +sg225240 +g27 +sa(dp246648 +g225232 +S'Henri Rivi\xc3\xa8re' +p246649 +sg225240 +g27 +sg225234 +S'color woodcut' +p246650 +sg225230 +S'Rocks (Les Rochers)' +p246651 +sg225236 +S'unknown date\n' +p246652 +sa(dp246653 +g225230 +S'Tempio antico' +p246654 +sg225232 +S'Giovanni Battista Piranesi' +p246655 +sg225234 +S'etching, engraving, drypoint' +p246656 +sg225236 +S'published 1748/1749' +p246657 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb8d.jpg' +p246658 +sg225240 +g27 +sa(dp246659 +g225230 +S'The Temptation of Christ' +p246660 +sg225232 +S'Dirk Jacobsz Vellert' +p246661 +sg225234 +S'engraving' +p246662 +sg225236 +S'1523' +p246663 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cec4.jpg' +p246664 +sg225240 +g27 +sa(dp246665 +g225232 +S'Jacques Villon' +p246666 +sg225240 +g27 +sg225234 +S'color aquatint' +p246667 +sg225230 +S'The Lucky Negro (Le n\xc3\xa8gre en bonne fortune)' +p246668 +sg225236 +S'1899' +p246669 +sa(dp246670 +g225232 +S'Tancr\xc3\xa8de Abraham' +p246671 +sg225240 +g27 +sg225234 +S'etching' +p246672 +sg225230 +S'Etang de Fayelles (Bretagne)' +p246673 +sg225236 +S'1863' +p246674 +sa(dp246675 +g225232 +S'Societe des aquafortistes' +p246676 +sg225240 +g27 +sg225234 +S'Ailsa Mellon Bruce Fund' +p246677 +sg225230 +S'Eaux-fortes modernes originales et inedites' +p246678 +sg225236 +S'\nportfolio with 124 etchings (on 120 sheets?) plus title page' +p246679 +sa(dp246680 +g225232 +S'Tancr\xc3\xa8de Abraham' +p246681 +sg225240 +g27 +sg225234 +S'etching' +p246682 +sg225230 +S'La Jouane' +p246683 +sg225236 +S'1867' +p246684 +sa(dp246685 +g225232 +S'Tancr\xc3\xa8de Abraham' +p246686 +sg225240 +g27 +sg225234 +S'etching' +p246687 +sg225230 +S"Bords de l'Oudon" +p246688 +sg225236 +S'unknown date\n' +p246689 +sa(dp246690 +g225232 +S'Celestin Allard-Cambray' +p246691 +sg225240 +g27 +sg225234 +S'etching' +p246692 +sg225230 +S'Louis XI a Peronne' +p246693 +sg225236 +S'unknown date\n' +p246694 +sa(dp246695 +g225232 +S'Adolphe Appian' +p246696 +sg225240 +g27 +sg225234 +S'etching' +p246697 +sg225230 +S"Sentier au bord d'un etang" +p246698 +sg225236 +S'unknown date\n' +p246699 +sa(dp246700 +g225232 +S'Adolphe Appian' +p246701 +sg225240 +g27 +sg225234 +S'etching' +p246702 +sg225230 +S"Chaland au bord d'une riviere" +p246703 +sg225236 +S'unknown date\n' +p246704 +sa(dp246705 +g225232 +S'Adolphe Appian' +p246706 +sg225240 +g27 +sg225234 +S'etching' +p246707 +sg225230 +S'Landscape' +p246708 +sg225236 +S'1865' +p246709 +sa(dp246710 +g225232 +S'Adolphe Appian' +p246711 +sg225240 +g27 +sg225234 +S'etching' +p246712 +sg225230 +S'Environs de Rix' +p246713 +sg225236 +S'unknown date\n' +p246714 +sa(dp246715 +g225232 +S'Adolphe Appian' +p246716 +sg225240 +g27 +sg225234 +S'etching' +p246717 +sg225230 +S'Le village de Chanaz (Savoie)' +p246718 +sg225236 +S'1866' +p246719 +sa(dp246720 +g225232 +S'Adolphe Appian' +p246721 +sg225240 +g27 +sg225234 +S'etching' +p246722 +sg225230 +S'Chemin des roches (Environs de Creys)' +p246723 +sg225236 +S'unknown date\n' +p246724 +sa(dp246725 +g225232 +S'Adolphe Appian' +p246726 +sg225240 +g27 +sg225234 +S'etching' +p246727 +sg225230 +S'Une mare, environs de Rossillon' +p246728 +sg225236 +S'1867' +p246729 +sa(dp246730 +g225232 +S'Adolphe Appian' +p246731 +sg225240 +g27 +sg225234 +S'etching' +p246732 +sg225230 +S"L'Etang neuf pres de Creys (Isere)" +p246733 +sg225236 +S'1864' +p246734 +sa(dp246735 +g225232 +S'Adolphe Appian' +p246736 +sg225240 +g27 +sg225234 +S'etching' +p246737 +sg225230 +S'Un Rocher dans les communaux de Rix (Ain)' +p246738 +sg225236 +S'1863' +p246739 +sa(dp246740 +g225232 +S"Alphonse-Edouard-Enguerand Aufray de Roc' Bhian" +p246741 +sg225240 +g27 +sg225234 +S'etching' +p246742 +sg225230 +S"Au Fil de l'eau" +p246743 +sg225236 +S'unknown date\n' +p246744 +sa(dp246745 +g225232 +S"Alphonse-Edouard-Enguerand Aufray de Roc' Bhian" +p246746 +sg225240 +g27 +sg225234 +S'etching' +p246747 +sg225230 +S'Moulin hollandais sur le canal du roi Guillaume' +p246748 +sg225236 +S'unknown date\n' +p246749 +sa(dp246750 +g225232 +S'Felix-Saturnin Brissot de Warville' +p246751 +sg225240 +g27 +sg225234 +S'etching' +p246752 +sg225230 +S'Man Leading a Cart with Four Oxen' +p246753 +sg225236 +S'unknown date\n' +p246754 +sa(dp246755 +g225232 +S'Felix-Saturnin Brissot de Warville' +p246756 +sg225240 +g27 +sg225234 +S'etching' +p246757 +sg225230 +S'Herd of Sheep in a Meadow' +p246758 +sg225236 +S'unknown date\n' +p246759 +sa(dp246760 +g225232 +S'Pierre-Emile Berthelemy' +p246761 +sg225240 +g27 +sg225234 +S'etching' +p246762 +sg225230 +S'Bateaux pecheurs de Fecamp' +p246763 +sg225236 +S'unknown date\n' +p246764 +sa(dp246765 +g225232 +S'Amedee Besnus' +p246766 +sg225240 +g27 +sg225234 +S'etching' +p246767 +sg225230 +S'La Mare au Drac (Champagne)' +p246768 +sg225236 +S'unknown date\n' +p246769 +sa(dp246770 +g225232 +S'Amedee Besnus' +p246771 +sg225240 +g27 +sg225234 +S'etching' +p246772 +sg225230 +S'Village de Tremereuc (Bretagne)' +p246773 +sg225236 +S'unknown date\n' +p246774 +sa(dp246775 +g225232 +S'Anatole-Martin de Bonsonge' +p246776 +sg225240 +g27 +sg225234 +S'etching' +p246777 +sg225230 +S'Batterie de New York' +p246778 +sg225236 +S'unknown date\n' +p246779 +sa(dp246780 +g225232 +S'Giberto Borromeo Arese' +p246781 +sg225240 +g27 +sg225234 +S', unknown date' +p246782 +sg225230 +S'Vue prise aux iles Borromees (Lac Majeur)' +p246783 +sg225236 +S'\n' +p246784 +sa(dp246785 +g225232 +S'F\xc3\xa9lix Bracquemond' +p246786 +sg225240 +g27 +sg225234 +S'etching' +p246787 +sg225230 +S'Hiver (Winter)' +p246788 +sg225236 +S'1853' +p246789 +sa(dp246790 +g225232 +S'F\xc3\xa9lix Bracquemond' +p246791 +sg225240 +g27 +sg225234 +S'etching' +p246792 +sg225230 +S'Vanneaux et Sacrelles' +p246793 +sg225236 +S'1862' +p246794 +sa(dp246795 +g225232 +S'F\xc3\xa9lix Bracquemond' +p246796 +sg225240 +g27 +sg225234 +S'etching' +p246797 +sg225230 +S"L'Inconnu" +p246798 +sg225236 +S'unknown date\n' +p246799 +sa(dp246800 +g225232 +S'F\xc3\xa9lix Bracquemond' +p246801 +sg225240 +g27 +sg225234 +S'etching' +p246802 +sg225230 +S'Sarcelles' +p246803 +sg225236 +S'1853' +p246804 +sa(dp246805 +g225232 +S'F\xc3\xa9lix Bracquemond' +p246806 +sg225240 +g27 +sg225234 +S'etching' +p246807 +sg225230 +S'Perdrix' +p246808 +sg225236 +S'1853' +p246809 +sa(dp246810 +g225232 +S'F\xc3\xa9lix Bracquemond' +p246811 +sg225240 +g27 +sg225234 +S'etching' +p246812 +sg225230 +S'Les Cigognes' +p246813 +sg225236 +S'unknown date\n' +p246814 +sa(dp246815 +g225232 +S'Albert Heinrich Brendel' +p246816 +sg225240 +g27 +sg225234 +S'etching' +p246817 +sg225230 +S'Une Bergerie' +p246818 +sg225236 +S'1862' +p246819 +sa(dp246820 +g225232 +S'Albert Heinrich Brendel' +p246821 +sg225240 +g27 +sg225234 +S'etching' +p246822 +sg225230 +S'Le berger et la mer' +p246823 +sg225236 +S'probably 1860/1863' +p246824 +sa(dp246825 +g225232 +S'Alfred-Louis Brunet-Debaines' +p246826 +sg225240 +g27 +sg225234 +S'etching' +p246827 +sg225230 +S'Harfleur (Seine Inferieure)' +p246828 +sg225236 +S'1860' +p246829 +sa(dp246830 +g225232 +S'Alfred-Louis Brunet-Debaines' +p246831 +sg225240 +g27 +sg225234 +S'etching' +p246832 +sg225230 +S'Ruines de chateau de Tancarville' +p246833 +sg225236 +S'unknown date\n' +p246834 +sa(dp246835 +g225232 +S'Alfred-Louis Brunet-Debaines' +p246836 +sg225240 +g27 +sg225234 +S'etching' +p246837 +sg225230 +S'Vue du pont Saint-Louis' +p246838 +sg225236 +S'unknown date\n' +p246839 +sa(dp246840 +g225232 +S'Alfred-Louis Brunet-Debaines' +p246841 +sg225240 +g27 +sg225234 +S'etching' +p246842 +sg225230 +S'Landscape' +p246843 +sg225236 +S'unknown date\n' +p246844 +sa(dp246845 +g225232 +S'Alfred Cadart' +p246846 +sg225240 +g27 +sg225234 +S'etching' +p246847 +sg225230 +S'Chambre des Deputes' +p246848 +sg225236 +S'unknown date\n' +p246849 +sa(dp246850 +g225232 +S'King of Sweden and Norway Charles XV' +p246851 +sg225240 +g27 +sg225234 +S'etching' +p246852 +sg225230 +S'Site en Norvege' +p246853 +sg225236 +S'unknown date\n' +p246854 +sa(dp246855 +g225232 +S'Jean-Ferdinand Chaigneau' +p246856 +sg225240 +g27 +sg225234 +S'etching' +p246857 +sg225230 +S'Moutons en plaine' +p246858 +sg225236 +S'1863' +p246859 +sa(dp246860 +g225232 +S'Jean-Ferdinand Chaigneau' +p246861 +sg225240 +g27 +sg225234 +S'etching' +p246862 +sg225230 +S'Le Petit troupeau' +p246863 +sg225236 +S'1863' +p246864 +sa(dp246865 +g225232 +S'Fran\xc3\xa7ois-Nicolas Chifflart' +p246866 +sg225240 +g27 +sg225234 +S'etching' +p246867 +sg225230 +S"L'Affliction" +p246868 +sg225236 +S'unknown date\n' +p246869 +sa(dp246870 +g225232 +S'Gaston Coindre' +p246871 +sg225240 +g27 +sg225234 +S'etching' +p246872 +sg225230 +S'Vieux Besancon, ancien quai de Battant' +p246873 +sg225236 +S'1868' +p246874 +sa(dp246875 +g225232 +S'Charles Combe' +p246876 +sg225240 +g27 +sg225234 +S'etching' +p246877 +sg225230 +S'Man Basting a Roast' +p246878 +sg225236 +S'1864' +p246879 +sa(dp246880 +g225232 +S'Charles Combe' +p246881 +sg225240 +g27 +sg225234 +S'etching' +p246882 +sg225230 +S'Au Village' +p246883 +sg225236 +S'unknown date\n' +p246884 +sa(dp246885 +g225232 +S'Jean-Baptiste-Camille Corot' +p246886 +sg225240 +g27 +sg225234 +S'etching' +p246887 +sg225230 +S"Souvenir of Italy (Souvenir d'Italie)" +p246888 +sg225236 +S'1866' +p246889 +sa(dp246890 +g225232 +S'Jean-Baptiste-Camille Corot' +p246891 +sg225240 +g27 +sg225234 +S'etching' +p246892 +sg225230 +S'Environs of Rome (Environs de Rome)' +p246893 +sg225236 +S'1866' +p246894 +sa(dp246895 +g225232 +S'Xavier de Dananche' +p246896 +sg225240 +g27 +sg225234 +S'etching' +p246897 +sg225230 +S'Sous-Bois' +p246898 +sg225236 +S'unknown date\n' +p246899 +sa(dp246900 +g225232 +S'Alfred-Henri Darjou' +p246901 +sg225240 +g27 +sg225234 +S'etching' +p246902 +sg225230 +S'Les Lapins venges' +p246903 +sg225236 +S'unknown date\n' +p246904 +sa(dp246905 +g225232 +S'Eug\xc3\xa8ne Delacroix' +p246906 +sg225240 +g27 +sg225234 +S'etching' +p246907 +sg225230 +S'Study of a Woman, Viewed from the Back (\xc3\x89tude de femme vue de dos)' +p246908 +sg225236 +S'1833' +p246909 +sa(dp246910 +g225232 +S'Eug\xc3\xa8ne Delacroix' +p246911 +sg225240 +g27 +sg225234 +S'etching' +p246912 +sg225230 +S"A Man with Weapons (Un Homme d'armes)" +p246913 +sg225236 +S'1833' +p246914 +sa(dp246915 +g225232 +S'Eug\xc3\xa8ne Delacroix' +p246916 +sg225240 +g27 +sg225234 +S'etching' +p246917 +sg225230 +S"Jewish Woman of Algiers (Juive d'Alger)" +p246918 +sg225236 +S'1833' +p246919 +sa(dp246920 +g225232 +S'Eug\xc3\xa8ne Delacroix' +p246921 +sg225240 +g27 +sg225234 +S'etching' +p246922 +sg225230 +S"Arabs of Oran (Arabes d'Oran)" +p246923 +sg225236 +S'1833' +p246924 +sa(dp246925 +g225232 +S'Leo Drouyn' +p246926 +sg225240 +g27 +sg225234 +S'etching' +p246927 +sg225230 +S'Etang de la Canau-Gironde' +p246928 +sg225236 +S'1862' +p246929 +sa(dp246930 +g225232 +S'Henry-Louis Dupray' +p246931 +sg225240 +g27 +sg225234 +S'etching' +p246932 +sg225230 +S'Brigadier, vous avez raison' +p246933 +sg225236 +S'unknown date\n' +p246934 +sa(dp246935 +g225232 +S'Georges Duseigneur' +p246936 +sg225240 +g27 +sg225234 +S'etching' +p246937 +sg225230 +S'Dans la rue Lyon (B)' +p246938 +sg225236 +S'unknown date\n' +p246939 +sa(dp246940 +g225232 +S'Georges Duseigneur' +p246941 +sg225240 +g27 +sg225234 +S'etching' +p246942 +sg225230 +S'Dans la rue Lyon (A)' +p246943 +sg225236 +S'unknown date\n' +p246944 +sa(dp246945 +g225232 +S'Edwin Edwards' +p246946 +sg225240 +g27 +sg225234 +S'etching' +p246947 +sg225230 +S'Parc a Richmond (Angleterre)' +p246948 +sg225236 +S'unknown date\n' +p246949 +sa(dp246950 +g225232 +S'King of Portugal Fernando II' +p246951 +sg225240 +g27 +sg225234 +S'etching' +p246952 +sg225230 +S"La Mort du chat Murr, contes d'Hoffmann" +p246953 +sg225236 +S'1864' +p246954 +sa(dp246955 +g225232 +S'Francois-Nicolas Auguste Feyen-Perrin' +p246956 +sg225240 +g27 +sg225234 +S'etching' +p246957 +sg225230 +S'Le Guitariste' +p246958 +sg225236 +S'unknown date\n' +p246959 +sa(dp246960 +g225232 +S'Francois-Nicolas Auguste Feyen-Perrin' +p246961 +sg225240 +g27 +sg225234 +S'etching' +p246962 +sg225230 +S'Ronde antique' +p246963 +sg225236 +S'unknown date\n' +p246964 +sa(dp246965 +g225232 +S'Francois-Nicolas Auguste Feyen-Perrin' +p246966 +sg225240 +g27 +sg225234 +S'etching' +p246967 +sg225230 +S'Episode des premieres guerres' +p246968 +sg225236 +S'unknown date\n' +p246969 +sa(dp246970 +g225232 +S'Francois-Nicolas Auguste Feyen-Perrin' +p246971 +sg225240 +g27 +sg225234 +S'etching' +p246972 +sg225230 +S"Les Femmes de l'ile de Batz attendant la chaloupe de passage" +p246973 +sg225236 +S'unknown date\n' +p246974 +sa(dp246975 +g225232 +S'Francois-Nicolas Auguste Feyen-Perrin' +p246976 +sg225240 +g27 +sg225234 +S'etching' +p246977 +sg225230 +S'La Barque de Caron' +p246978 +sg225236 +S'unknown date\n' +p246979 +sa(dp246980 +g225232 +S'Edwin Forbes' +p246981 +sg225240 +g27 +sg225234 +S'etching' +p246982 +sg225230 +S"Episode de la guerre d'Amerique" +p246983 +sg225236 +S'unknown date\n' +p246984 +sa(dp246985 +g225232 +S'Justin-J. Gabriel' +p246986 +sg225240 +g27 +sg225234 +S'etching' +p246987 +sg225230 +S'En Provence' +p246988 +sg225236 +S'1864' +p246989 +sa(dp246990 +g225232 +S'L\xc3\xa9on Gaucherel' +p246991 +sg225240 +g27 +sg225234 +S'etching' +p246992 +sg225230 +S'Etretat' +p246993 +sg225236 +S'unknown date\n' +p246994 +sa(dp246995 +g225232 +S'Amand-Desire Gautier' +p246996 +sg225240 +g27 +sg225234 +S'etching' +p246997 +sg225230 +S'Femme repassant' +p246998 +sg225236 +S'unknown date\n' +p246999 +sa(dp247000 +g225232 +S'Amand-Desire Gautier' +p247001 +sg225240 +g27 +sg225234 +S'etching' +p247002 +sg225230 +S'Homme sciant du bois' +p247003 +sg225236 +S'1860' +p247004 +sa(dp247005 +g225232 +S'Amedee Guerard' +p247006 +sg225240 +g27 +sg225234 +S'etching' +p247007 +sg225230 +S'La Servant indiscrete' +p247008 +sg225236 +S'unknown date\n' +p247009 +sa(dp247010 +g225232 +S'Francis Seymour Haden' +p247011 +sg225240 +g27 +sg225234 +S'etching' +p247012 +sg225230 +S'Bords de la Tamise (also Thames Ditton--With a Sail)' +p247013 +sg225236 +S'1864' +p247014 +sa(dp247015 +g225232 +S'Jules Hereau' +p247016 +sg225240 +g27 +sg225234 +S'etching' +p247017 +sg225230 +S'Les Moutons de Claudine' +p247018 +sg225236 +S'1862' +p247019 +sa(dp247020 +g225232 +S'Luis Jimenez y Aranda' +p247021 +sg225240 +g27 +sg225234 +S'etching' +p247022 +sg225230 +S'Canards' +p247023 +sg225236 +S'unknown date\n' +p247024 +sa(dp247025 +g225232 +S'Luis Jimenez y Aranda' +p247026 +sg225240 +g27 +sg225234 +S'etching' +p247027 +sg225230 +S'Poules' +p247028 +sg225236 +S'unknown date\n' +p247029 +sa(dp247030 +g225232 +S'Johan Barthold Jongkind' +p247031 +sg225240 +g27 +sg225234 +S'etching' +p247032 +sg225230 +S'The Outlet at Honfleur Harbor (Sortie du port de Honfleur)' +p247033 +sg225236 +S'1864' +p247034 +sa(dp247035 +g225232 +S'Johan Barthold Jongkind' +p247036 +sg225240 +g27 +sg225234 +S'etching' +p247037 +sg225230 +S'View of the Village of Maaslins (Vue de la ville de Maaslins (Hollande))' +p247038 +sg225236 +S'1862' +p247039 +sa(dp247040 +g225232 +S'Maxime Lalanne' +p247041 +sg225240 +g27 +sg225234 +S'etching' +p247042 +sg225230 +S'Rue des Marmousets (Vieux Paris)' +p247043 +sg225236 +S'unknown date\n' +p247044 +sa(dp247045 +g225232 +S'Maxime Lalanne' +p247046 +sg225240 +g27 +sg225234 +S'etching' +p247047 +sg225230 +S'A Neuilly' +p247048 +sg225236 +S'unknown date\n' +p247049 +sa(dp247050 +g225232 +S'Maxime Lalanne' +p247051 +sg225240 +g27 +sg225234 +S'etching' +p247052 +sg225230 +S'Vue prise du pont Saint-Michel' +p247053 +sg225236 +S'unknown date\n' +p247054 +sa(dp247055 +g225232 +S'Maxime Lalanne' +p247056 +sg225240 +g27 +sg225234 +S'etching' +p247057 +sg225230 +S'Cusset (Excursion de Vichy)' +p247058 +sg225236 +S'unknown date\n' +p247059 +sa(dp247060 +g225230 +S'Demolition for the Opening of the rue des Ecoles (Demolitions pour le percement de la rue des Ecoles)' +p247061 +sg225232 +S'Maxime Lalanne' +p247062 +sg225234 +S'etching' +p247063 +sg225236 +S'unknown date\n' +p247064 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f44.jpg' +p247065 +sg225240 +g27 +sa(dp247066 +g225232 +S'Maxime Lalanne' +p247067 +sg225240 +g27 +sg225234 +S'etching' +p247068 +sg225230 +S'Demolitions pour le percement du boulevard Saint-Germain' +p247069 +sg225236 +S'unknown date\n' +p247070 +sa(dp247071 +g225232 +S'Francisco Lameyer y Berenguer' +p247072 +sg225240 +g27 +sg225234 +S'etching' +p247073 +sg225230 +S'Les Cantabres' +p247074 +sg225236 +S'unknown date\n' +p247075 +sa(dp247076 +g225232 +S'Francisco Lameyer y Berenguer' +p247077 +sg225240 +g27 +sg225234 +S'etching' +p247078 +sg225230 +S'La partie de cartes' +p247079 +sg225236 +S'unknown date\n' +p247080 +sa(dp247081 +g225232 +S'Jules Laurens' +p247082 +sg225240 +g27 +sg225234 +S'etching' +p247083 +sg225230 +S'Canards Sauvages' +p247084 +sg225236 +S'unknown date\n' +p247085 +sa(dp247086 +g225232 +S'Jules Laurens' +p247087 +sg225240 +g27 +sg225234 +S'etching' +p247088 +sg225230 +S'Sous les murs de Teheran (Perse)' +p247089 +sg225236 +S'unknown date\n' +p247090 +sa(dp247091 +g225232 +S'Adolph-Rene Lefevre' +p247092 +sg225240 +g27 +sg225234 +S'etching' +p247093 +sg225230 +S'Le Titien et la duchesse de Ferrare' +p247094 +sg225236 +S'unknown date\n' +p247095 +sa(dp247096 +g225232 +S'Alphonse Legros' +p247097 +sg225240 +g27 +sg225234 +S'etching' +p247098 +sg225230 +S'La Peste a Rome' +p247099 +sg225236 +S'unknown date\n' +p247100 +sa(dp247101 +g225232 +S'Louis Lombard' +p247102 +sg225240 +g27 +sg225234 +S'etching' +p247103 +sg225230 +S'Le Borriquero (Espagne)' +p247104 +sg225236 +S'unknown date\n' +p247105 +sa(dp247106 +g225232 +S'Adolphe Th\xc3\xa9odore Jules Martial Pot\xc3\xa9mont' +p247107 +sg225240 +g27 +sg225234 +S'etching' +p247108 +sg225230 +S'Le Canal Saint-Martin' +p247109 +sg225236 +S'unknown date\n' +p247110 +sa(dp247111 +g225232 +S'Adolphe Th\xc3\xa9odore Jules Martial Pot\xc3\xa9mont' +p247112 +sg225240 +g27 +sg225234 +S'etching' +p247113 +sg225230 +S'Ancien boulevard exterieur de Paris' +p247114 +sg225236 +S'unknown date\n' +p247115 +sa(dp247116 +g225232 +S'Charles Meryon' +p247117 +sg225240 +g27 +sg225234 +S'etching' +p247118 +sg225230 +S'Le Minist\xc3\xa8re de la Marine (Paris, place de la Concorde)' +p247119 +sg225236 +S'unknown date\n' +p247120 +sa(dp247121 +g225232 +S'Edouard Moyse' +p247122 +sg225240 +g27 +sg225234 +S'etching' +p247123 +sg225230 +S'La Repetition' +p247124 +sg225236 +S'unknown date\n' +p247125 +sa(dp247126 +g225232 +S'Edouard Moyse' +p247127 +sg225240 +g27 +sg225234 +S'etching' +p247128 +sg225230 +S"La Benediction de l'aieul" +p247129 +sg225236 +S'unknown date\n' +p247130 +sa(dp247131 +g225232 +S'Emmanuel Noterman' +p247132 +sg225240 +g27 +sg225234 +S'etching' +p247133 +sg225230 +S'Le Singe savetier' +p247134 +sg225236 +S'unknown date\n' +p247135 +sa(dp247136 +g225232 +S"Friederike Emilie Auguste O'Connell" +p247137 +sg225240 +g27 +sg225234 +S'etching' +p247138 +sg225230 +S'Un Chevalier Louis XIII' +p247139 +sg225236 +S'unknown date\n' +p247140 +sa(dp247141 +g225232 +S'Augustin Th\xc3\xa9odule Ribot' +p247142 +sg225240 +g27 +sg225234 +S'etching' +p247143 +sg225230 +S'Un Contrebandier' +p247144 +sg225236 +S'unknown date\n' +p247145 +sa(dp247146 +g225232 +S'Augustin Th\xc3\xa9odule Ribot' +p247147 +sg225240 +g27 +sg225234 +S'etching' +p247148 +sg225230 +S"L'Aide de cuisine" +p247149 +sg225236 +S'unknown date\n' +p247150 +sa(dp247151 +g225232 +S'Augustin Th\xc3\xa9odule Ribot' +p247152 +sg225240 +g27 +sg225234 +S'etching' +p247153 +sg225230 +S'Le Dejeuner du chat' +p247154 +sg225236 +S'unknown date\n' +p247155 +sa(dp247156 +g225232 +S'Augustin Th\xc3\xa9odule Ribot' +p247157 +sg225240 +g27 +sg225234 +S'etching' +p247158 +sg225230 +S'Group of Cooks' +p247159 +sg225236 +S'unknown date\n' +p247160 +sa(dp247161 +g225232 +S'Augustin Th\xc3\xa9odule Ribot' +p247162 +sg225240 +g27 +sg225234 +S'etching' +p247163 +sg225230 +S'Les Eplucheurs' +p247164 +sg225236 +S'unknown date\n' +p247165 +sa(dp247166 +g225232 +S'Augustin Th\xc3\xa9odule Ribot' +p247167 +sg225240 +g27 +sg225234 +S'etching' +p247168 +sg225230 +S'Le Mets brule' +p247169 +sg225236 +S'unknown date\n' +p247170 +sa(dp247171 +g225232 +S'Augustin Th\xc3\xa9odule Ribot' +p247172 +sg225240 +g27 +sg225234 +S'etching' +p247173 +sg225230 +S'La Carte' +p247174 +sg225236 +S'unknown date\n' +p247175 +sa(dp247176 +g225232 +S'Augustin Th\xc3\xa9odule Ribot' +p247177 +sg225240 +g27 +sg225234 +S'etching' +p247178 +sg225230 +S'La Priere' +p247179 +sg225236 +S'unknown date\n' +p247180 +sa(dp247181 +g225232 +S'Mathew White Ridley' +p247182 +sg225240 +g27 +sg225234 +S'etching' +p247183 +sg225230 +S'Draham Harbour' +p247184 +sg225236 +S'unknown date\n' +p247185 +sa(dp247186 +g225232 +S'Mathew White Ridley' +p247187 +sg225240 +g27 +sg225234 +S'etching' +p247188 +sg225230 +S'North Dock' +p247189 +sg225236 +S'unknown date\n' +p247190 +sa(dp247191 +g225232 +S'Mathew White Ridley' +p247192 +sg225240 +g27 +sg225234 +S'etching' +p247193 +sg225230 +S'Durham' +p247194 +sg225236 +S'unknown date\n' +p247195 +sa(dp247196 +g225232 +S'Ferdinand Roybet' +p247197 +sg225240 +g27 +sg225234 +S'etching' +p247198 +sg225230 +S'En Retard pour la fete' +p247199 +sg225236 +S'unknown date\n' +p247200 +sa(dp247201 +g225232 +S'Ferdinand Roybet' +p247202 +sg225240 +g27 +sg225234 +S'etching' +p247203 +sg225230 +S'Le Repos' +p247204 +sg225236 +S'1865' +p247205 +sa(dp247206 +g225232 +S'Joseph Soumy' +p247207 +sg225240 +g27 +sg225234 +S'etching' +p247208 +sg225230 +S'Mendiante romaine' +p247209 +sg225236 +S'unknown date\n' +p247210 +sa(dp247211 +g225232 +S'Artist Information (' +p247212 +sg225240 +g27 +sg225234 +S'(artist after)' +p247213 +sg225230 +S'La Morte' +p247214 +sg225236 +S'\n' +p247215 +sa(dp247216 +g225232 +S'Joseph Soumy' +p247217 +sg225240 +g27 +sg225234 +S'etching' +p247218 +sg225230 +S'Mendiant romain' +p247219 +sg225236 +S'unknown date\n' +p247220 +sa(dp247221 +g225232 +S'Louis Pierre Gabriel Bernard Morel-Retz' +p247222 +sg225240 +g27 +sg225234 +S'etching' +p247223 +sg225230 +S'Un Marche italien' +p247224 +sg225236 +S'unknown date\n' +p247225 +sa(dp247226 +g225232 +S'Alfred Tai\xc3\xa9e' +p247227 +sg225240 +g27 +sg225234 +S'etching' +p247228 +sg225230 +S'Villeneuve-la-Garenne (Seine)' +p247229 +sg225236 +S'unknown date\n' +p247230 +sa(dp247231 +g225232 +S'Alfred Tai\xc3\xa9e' +p247232 +sg225240 +g27 +sg225234 +S'etching' +p247233 +sg225230 +S'Coquelin, Societaire de la Comedie-Francaise' +p247234 +sg225236 +S'unknown date\n' +p247235 +sa(dp247236 +g225232 +S'Alfred Tai\xc3\xa9e' +p247237 +sg225240 +g27 +sg225234 +S'etching' +p247238 +sg225230 +S'Le Vieux pont de Vernon (Eure)' +p247239 +sg225236 +S'unknown date\n' +p247240 +sa(dp247241 +g225232 +S'Alfred Wordsworth Thompson' +p247242 +sg225240 +g27 +sg225234 +S'etching' +p247243 +sg225230 +S'Le Chenin de la mort' +p247244 +sg225236 +S'unknown date\n' +p247245 +sa(dp247246 +g225232 +S'Th\xc3\xa9odore Valerio' +p247247 +sg225240 +g27 +sg225234 +S'etching' +p247248 +sg225230 +S'Bachi Bocouca (Souvenir de Silistrie en 1854)' +p247249 +sg225236 +S'1864' +p247250 +sa(dp247251 +g225232 +S'Pierre Henri Theodore Tetar van Elven' +p247252 +sg225240 +g27 +sg225234 +S'etching' +p247253 +sg225230 +S'La Maison de Gutenberg a Mayence' +p247254 +sg225236 +S'1865' +p247255 +sa(dp247256 +g225232 +S'Jules Jacques Veyrassat' +p247257 +sg225240 +g27 +sg225234 +S'etching' +p247258 +sg225230 +S'Un Marechal-ferrant a Moret' +p247259 +sg225236 +S'unknown date\n' +p247260 +sa(dp247261 +g225232 +S'Jules Jacques Veyrassat' +p247262 +sg225240 +g27 +sg225234 +S'etching' +p247263 +sg225230 +S'Le Bac' +p247264 +sg225236 +S'unknown date\n' +p247265 +sa(dp247266 +g225232 +S'Jules Jacques Veyrassat' +p247267 +sg225240 +g27 +sg225234 +S'etching' +p247268 +sg225230 +S'Le Pere Malice' +p247269 +sg225236 +S'unknown date\n' +p247270 +sa(dp247271 +g225232 +S'Antoine Vollon' +p247272 +sg225240 +g27 +sg225234 +S'etching' +p247273 +sg225230 +S'Une Ferme' +p247274 +sg225236 +S'unknown date\n' +p247275 +sa(dp247276 +g225232 +S'Antoine Vollon' +p247277 +sg225240 +g27 +sg225234 +S'etching' +p247278 +sg225230 +S'Paysage avec deux personnages assis' +p247279 +sg225236 +S'unknown date\n' +p247280 +sa(dp247281 +g225232 +S'Otto Weber' +p247282 +sg225240 +g27 +sg225234 +S'etching' +p247283 +sg225230 +S'Le Soir au village' +p247284 +sg225236 +S'unknown date\n' +p247285 +sa(dp247286 +g225232 +S'Otto Weber' +p247287 +sg225240 +g27 +sg225234 +S'etching' +p247288 +sg225230 +S'En Ecosse' +p247289 +sg225236 +S'unknown date\n' +p247290 +sa(dp247291 +g225232 +S'Otto Weber' +p247292 +sg225240 +g27 +sg225234 +S'etching' +p247293 +sg225230 +S'Pardon Breton' +p247294 +sg225236 +S'unknown date\n' +p247295 +sa(dp247296 +g225230 +S'Two Standing Female Nudes' +p247297 +sg225232 +S'F\xc3\xa9lix Vallotton' +p247298 +sg225234 +S'blue chalk on gray laid paper' +p247299 +sg225236 +S'unknown date\n' +p247300 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a2f.jpg' +p247301 +sg225240 +g27 +sa(dp247302 +g225230 +S'View of the River Rhine' +p247303 +sg225232 +S'Artist Information (' +p247304 +sg225234 +S'(artist after)' +p247305 +sg225236 +S'\n' +p247306 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d264.jpg' +p247307 +sg225240 +g27 +sa(dp247308 +g225230 +S'View of the River Rhine' +p247309 +sg225232 +S'Artist Information (' +p247310 +sg225234 +S'(artist after)' +p247311 +sg225236 +S'\n' +p247312 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d263.jpg' +p247313 +sg225240 +g27 +sa(dp247314 +g225230 +S'View of the River Rhine' +p247315 +sg225232 +S'Artist Information (' +p247316 +sg225234 +S'(artist after)' +p247317 +sg225236 +S'\n' +p247318 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d262.jpg' +p247319 +sg225240 +g27 +sa(dp247320 +g225230 +S'View of the River Rhine' +p247321 +sg225232 +S'Artist Information (' +p247322 +sg225234 +S'(artist after)' +p247323 +sg225236 +S'\n' +p247324 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d260.jpg' +p247325 +sg225240 +g27 +sa(dp247326 +g225230 +S'Knotting the Cravat' +p247327 +sg225232 +S'Jean-Louis Forain' +p247328 +sg225234 +S'etching' +p247329 +sg225236 +S'1880 and 1886' +p247330 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a0009978.jpg' +p247331 +sg225240 +g27 +sa(dp247332 +g225230 +S'Square Vintimille (Le square Vintimille)' +p247333 +sg225232 +S'Edouard Vuillard' +p247334 +sg225234 +S'etching' +p247335 +sg225236 +S'published 1937' +p247336 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f29.jpg' +p247337 +sg225240 +g27 +sa(dp247338 +g225230 +S'Charles-Gaspard-Guillaume de Vintimille du Luc, Archbishop of Paris' +p247339 +sg225232 +S'Artist Information (' +p247340 +sg225234 +S'(artist after)' +p247341 +sg225236 +S'\n' +p247342 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a00096f1.jpg' +p247343 +sg225240 +g27 +sa(dp247344 +g225230 +S'Jean Delpach, Marquis de Mereville' +p247345 +sg225232 +S'Artist Information (' +p247346 +sg225234 +S'(artist after)' +p247347 +sg225236 +S'\n' +p247348 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a00096ec.jpg' +p247349 +sg225240 +g27 +sa(dp247350 +g225230 +S'Jean Paul Bignon, Abbe du St. Quentin' +p247351 +sg225232 +S'Artist Information (' +p247352 +sg225234 +S'(artist after)' +p247353 +sg225236 +S'\n' +p247354 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a00096ee.jpg' +p247355 +sg225240 +g27 +sa(dp247356 +g225230 +S'Saint Francis Adoring the Christ Child' +p247357 +sg225232 +S'Claude Mellan' +p247358 +sg225234 +S'engraving' +p247359 +sg225236 +S'unknown date\n' +p247360 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a00067bc.jpg' +p247361 +sg225240 +g27 +sa(dp247362 +g225230 +S'The Chariot of Diana' +p247363 +sg225232 +S'Artist Information (' +p247364 +sg225234 +S'(artist after)' +p247365 +sg225236 +S'\n' +p247366 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8b4.jpg' +p247367 +sg225240 +g27 +sa(dp247368 +g225230 +S'Head of a Man' +p247369 +sg225232 +S'Italian 17th Century' +p247370 +sg225234 +S'overall: 11.4 x 9 cm (4 1/2 x 3 9/16 in.)' +p247371 +sg225236 +S'\nred and black chalk on laid paper' +p247372 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007463.jpg' +p247373 +sg225240 +g27 +sa(dp247374 +g225230 +S'An Elaborate Staircase in a Palace' +p247375 +sg225232 +S'Bibiena (family member)' +p247376 +sg225234 +S'pen and brown ink with gray wash' +p247377 +sg225236 +S'unknown date\n' +p247378 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e7d.jpg' +p247379 +sg225240 +g27 +sa(dp247380 +g225230 +S'The Fall of the Rebel Angels' +p247381 +sg225232 +S'Giovanni Battista Tiepolo' +p247382 +sg225234 +S'pen and black and brown ink with gray wash over black chalk on laid paper' +p247383 +sg225236 +S'1717-1720' +p247384 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a000722d.jpg' +p247385 +sg225240 +g27 +sa(dp247386 +g225230 +S'Heads of Two Bishops' +p247387 +sg225232 +S'Gaetano Gandolfi' +p247388 +sg225234 +S'pen and brown ink on laid paper' +p247389 +sg225236 +S'unknown date\n' +p247390 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a0007009.jpg' +p247391 +sg225240 +g27 +sa(dp247392 +g225230 +S'Bacchus and Ceres' +p247393 +sg225232 +S'Jacques de Gheyn II' +p247394 +sg225234 +S'pen and brown ink; piece of paper added on left, with additional drawing by a later hand in ink of a different color' +p247395 +sg225236 +S'unknown date\n' +p247396 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006db4.jpg' +p247397 +sg225240 +g27 +sa(dp247398 +g225230 +S'Echo and Narcissus' +p247399 +sg225232 +S'Gregorio de Ferrari' +p247400 +sg225234 +S'pen and brown ink and brown wash over black chalk,partly indented with stylus' +p247401 +sg225236 +S'unknown date\n' +p247402 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074cf.jpg' +p247403 +sg225240 +g27 +sa(dp247404 +g225230 +S'Felled Tree, Normandy' +p247405 +sg225232 +S'Georges Lacombe' +p247406 +sg225234 +S'charcoal with red-brown and yellow crayon' +p247407 +sg225236 +S'1898' +p247408 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a00070db.jpg' +p247409 +sg225240 +g27 +sa(dp247410 +g225230 +S'The Sea Off the Edge of a Boat, Brittany' +p247411 +sg225232 +S'Georges Lacombe' +p247412 +sg225234 +S'charcoal blue laid paper' +p247413 +sg225236 +S'1894' +p247414 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00073/a00073a8.jpg' +p247415 +sg225240 +g27 +sa(dp247416 +g225230 +S'Saint Catherine of Alexandria' +p247417 +sg225232 +S'Marco Pino' +p247418 +sg225234 +S'pen and brown ink with brown wash, heightened with white, on paper washed salmon' +p247419 +sg225236 +S'unknown date\n' +p247420 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a0007579.jpg' +p247421 +sg225240 +g27 +sa(dp247422 +g225230 +S'Abraham and Isaac' +p247423 +sg225232 +S'Hermann Weyer' +p247424 +sg225234 +S', unknown date' +p247425 +sg225236 +S'\n' +p247426 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006def.jpg' +p247427 +sg225240 +g27 +sa(dp247428 +g225232 +S'Alan J. Shields' +p247429 +sg225240 +g27 +sg225234 +S'assembled color screenprint (double sided)' +p247430 +sg225230 +S'Dorothy Jean' +p247431 +sg225236 +S'unknown date\n' +p247432 +sa(dp247433 +g225232 +S'Lyonel Feininger' +p247434 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p247435 +sg225230 +S'The Gate (Das Tor)' +p247436 +sg225236 +S'1912' +p247437 +sa(dp247438 +g225232 +S'Sheigla Hartman' +p247439 +sg225240 +g27 +sg225234 +S'engraving with embossment' +p247440 +sg225230 +S"Pied a gauche d'abords" +p247441 +sg225236 +S'unknown date\n' +p247442 +sa(dp247443 +g225232 +S'Sheigla Hartman' +p247444 +sg225240 +g27 +sg225234 +S'pen and black ink on wove paper' +p247445 +sg225230 +S'A New Season' +p247446 +sg225236 +S'1974' +p247447 +sa(dp247448 +g225230 +S'Curled up Girl on Bed' +p247449 +sg225232 +S'Gustav Klimt' +p247450 +sg225234 +S'graphite' +p247451 +sg225236 +S'1916/1917' +p247452 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00069/a00069be.jpg' +p247453 +sg225240 +g27 +sa(dp247454 +g225232 +S'Werner Drewes' +p247455 +sg225240 +g27 +sg225234 +S'woodcut in black' +p247456 +sg225230 +S'Harlem Beauty' +p247457 +sg225236 +S'1930' +p247458 +sa(dp247459 +g225232 +S'Joan Mir\xc3\xb3' +p247460 +sg225240 +g27 +sg225234 +S'lithograph' +p247461 +sg225230 +S'Lithograph III' +p247462 +sg225236 +S'1930' +p247463 +sa(dp247464 +g225232 +S'Werner Drewes' +p247465 +sg225240 +g27 +sg225234 +S'drypoint in black on laid paper' +p247466 +sg225230 +S'Fern Trees II' +p247467 +sg225236 +S'1926' +p247468 +sa(dp247469 +g225232 +S'Werner Drewes' +p247470 +sg225240 +g27 +sg225234 +S'woodcut in black' +p247471 +sg225230 +S'Hellgate Bridge' +p247472 +sg225236 +S'1931' +p247473 +sa(dp247474 +g225232 +S'Werner Drewes' +p247475 +sg225240 +g27 +sg225234 +S'color woodcut' +p247476 +sg225230 +S'Aethiopian Queen' +p247477 +sg225236 +S'1930' +p247478 +sa(dp247479 +g225230 +S'Dream in the Grass' +p247480 +sg225232 +S'Werner Drewes' +p247481 +sg225234 +S'woodcut in black' +p247482 +sg225236 +S'1932' +p247483 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a88.jpg' +p247484 +sg225240 +g27 +sa(dp247485 +g225232 +S'Werner Drewes' +p247486 +sg225240 +g27 +sg225234 +S'woodcut in black' +p247487 +sg225230 +S'Composition No.6' +p247488 +sg225236 +S'1934' +p247489 +sa(dp247490 +g225232 +S'Werner Drewes' +p247491 +sg225240 +g27 +sg225234 +S'woodcut in black' +p247492 +sg225230 +S'Composition No.2 (Window)' +p247493 +sg225236 +S'1934' +p247494 +sa(dp247495 +g225230 +S'Beginning Motion' +p247496 +sg225232 +S'Werner Drewes' +p247497 +sg225234 +S'color woodcut on japanese paper' +p247498 +sg225236 +S'1944' +p247499 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a89.jpg' +p247500 +sg225240 +g27 +sa(dp247501 +g225232 +S'Werner Drewes' +p247502 +sg225240 +g27 +sg225234 +S'woodcut in black' +p247503 +sg225230 +S'Times Square' +p247504 +sg225236 +S'1931' +p247505 +sa(dp247506 +g225232 +S'Werner Drewes' +p247507 +sg225240 +g27 +sg225234 +S'drypoint in black on wove paper' +p247508 +sg225230 +S'Grain Elevator No.1' +p247509 +sg225236 +S'1926' +p247510 +sa(dp247511 +g225232 +S'Werner Drewes' +p247512 +sg225240 +g27 +sg225234 +S'drypoint and roulette in black on wove paper' +p247513 +sg225230 +S'Small Forms with Half Moon No.4' +p247514 +sg225236 +S'1935' +p247515 +sa(dp247516 +g225232 +S'Werner Drewes' +p247517 +sg225240 +g27 +sg225234 +S'drypoint' +p247518 +sg225230 +S'Sleeping Woman' +p247519 +sg225236 +S'1926' +p247520 +sa(dp247521 +g225232 +S'Wanda G\xc3\xa1g' +p247522 +sg225240 +g27 +sg225234 +S'lithograph in black on wove paper' +p247523 +sg225230 +S'Fireplace' +p247524 +sg225236 +S'1930' +p247525 +sa(dp247526 +g225230 +S'The Forge' +p247527 +sg225232 +S'Wanda G\xc3\xa1g' +p247528 +sg225234 +S'lithograph in black on wove paper' +p247529 +sg225236 +S'1932' +p247530 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000aa3.jpg' +p247531 +sg225240 +g27 +sa(dp247532 +g225232 +S'Wanda G\xc3\xa1g' +p247533 +sg225240 +g27 +sg225234 +S'wood engraving in black on laid paper' +p247534 +sg225230 +S'Lantern and Fireplace' +p247535 +sg225236 +S'1931-1932' +p247536 +sa(dp247537 +g225230 +S'Spring in the Garden' +p247538 +sg225232 +S'Wanda G\xc3\xa1g' +p247539 +sg225234 +S'lithograph in black on wove paper' +p247540 +sg225236 +S'1927' +p247541 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000aa4.jpg' +p247542 +sg225240 +g27 +sa(dp247543 +g225232 +S'Wanda G\xc3\xa1g' +p247544 +sg225240 +g27 +sg225234 +S'lithograph in black on wove paper' +p247545 +sg225230 +S'Winter Twilight' +p247546 +sg225236 +S'1927' +p247547 +sa(dp247548 +g225232 +S'Otto August K\xc3\xbchler' +p247549 +sg225240 +g27 +sg225234 +S'etching' +p247550 +sg225230 +S'New York Stock Exchange' +p247551 +sg225236 +S'unknown date\n' +p247552 +sa(dp247553 +g225232 +S'Otto August K\xc3\xbchler' +p247554 +sg225240 +g27 +sg225234 +S'etching' +p247555 +sg225230 +S'River, Railroad, Rock' +p247556 +sg225236 +S'unknown date\n' +p247557 +sa(dp247558 +g225232 +S'Otto August K\xc3\xbchler' +p247559 +sg225240 +g27 +sg225234 +S'etching' +p247560 +sg225230 +S'Third Avenue "El" at 42nd Street, c. 1923' +p247561 +sg225236 +S'unknown date\n' +p247562 +sa(dp247563 +g225232 +S'Arnold R\xc3\xb6nnebeck' +p247564 +sg225240 +g27 +sg225234 +S'lithograph in black on wove paper' +p247565 +sg225230 +S'Atlantic' +p247566 +sg225236 +S'1929' +p247567 +sa(dp247568 +g225232 +S'Arnold R\xc3\xb6nnebeck' +p247569 +sg225240 +g27 +sg225234 +S'lithograph' +p247570 +sg225230 +S'The Boatman (Le Canotier)' +p247571 +sg225236 +S'1930' +p247572 +sa(dp247573 +g225232 +S'Arnold R\xc3\xb6nnebeck' +p247574 +sg225240 +g27 +sg225234 +S'lithograph' +p247575 +sg225230 +S'Rain Over Desert Mesas' +p247576 +sg225236 +S'1931' +p247577 +sa(dp247578 +g225232 +S'Lawrence Nelson Wilbur' +p247579 +sg225240 +g27 +sg225234 +S'graphite' +p247580 +sg225230 +S'Tranquil Harbor' +p247581 +sg225236 +S'unknown date\n' +p247582 +sa(dp247583 +g225232 +S'Lawrence Nelson Wilbur' +p247584 +sg225240 +g27 +sg225234 +S'wood engraving' +p247585 +sg225230 +S'Tranquil Harbor' +p247586 +sg225236 +S'unknown date\n' +p247587 +sa(dp247588 +g225230 +S'Giovanni Borgherini and His Tutor' +p247589 +sg225232 +S'Giorgione' +p247590 +sg225234 +S', unknown date' +p247591 +sg225236 +S'\n' +p247592 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a00007f8.jpg' +p247593 +sg225240 +g27 +sa(dp247594 +g225230 +S'The Ragged One' +p247595 +sg225232 +S'Rico Lebrun' +p247596 +sg225234 +S'oil on canvas' +p247597 +sg225236 +S'1944' +p247598 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000148.jpg' +p247599 +sg225240 +g27 +sa(dp247600 +g225232 +S'Martin Bloch' +p247601 +sg225240 +g27 +sg225234 +S'oil on canvas' +p247602 +sg225230 +S'The Cocoon Market at Mantua' +p247603 +sg225236 +S'1928' +p247604 +sa(dp247605 +g225232 +S'James Garrison Hagan' +p247606 +sg225240 +g27 +sg225234 +S'wood' +p247607 +sg225230 +S'Column IV' +p247608 +sg225236 +S'1974' +p247609 +sa(dp247610 +g225230 +S'Omer Talon' +p247611 +sg225232 +S'Artist Information (' +p247612 +sg225234 +S'(artist after)' +p247613 +sg225236 +S'\n' +p247614 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b55a.jpg' +p247615 +sg225240 +g27 +sa(dp247616 +g225230 +S'The Small Crucifixion' +p247617 +sg225232 +S'Artist Information (' +p247618 +sg225234 +S'(artist after)' +p247619 +sg225236 +S'\n' +p247620 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c59e.jpg' +p247621 +sg225240 +g27 +sa(dp247622 +g225230 +S'Study of Jove and Three Goddesses' +p247623 +sg225232 +S'Lorenzo Bartolini' +p247624 +sg225234 +S', unknown date' +p247625 +sg225236 +S'\n' +p247626 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007112.jpg' +p247627 +sg225240 +g27 +sa(dp247628 +g225230 +S'Scenes from the Life of Saint Peter' +p247629 +sg225232 +S'Giulio Cesare Procaccini' +p247630 +sg225234 +S'pen and brown ink with brown wash on laid paper' +p247631 +sg225236 +S'unknown date\n' +p247632 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a000757b.jpg' +p247633 +sg225240 +g27 +sa(dp247634 +g225230 +S'Veduta della Cascata di Tivoli' +p247635 +sg225232 +S'Giovanni Battista Piranesi' +p247636 +sg225234 +S'etching' +p247637 +sg225236 +S'1766' +p247638 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d27.jpg' +p247639 +sg225240 +g27 +sa(dp247640 +g225232 +S'Giovanni Battista Piranesi' +p247641 +sg225240 +g27 +sg225234 +S'etching' +p247642 +sg225230 +S'View of the Temple of Neptune' +p247643 +sg225236 +S'1777/1778' +p247644 +sa(dp247645 +g225230 +S'Woman Reading' +p247646 +sg225232 +S'Alfred Stevens' +p247647 +sg225234 +S'charcoal and white chalk on buff laid paper' +p247648 +sg225236 +S'unknown date\n' +p247649 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006acb.jpg' +p247650 +sg225240 +g27 +sa(dp247651 +g225230 +S"The Watering Place (L'abreuvoir)" +p247652 +sg225232 +S'Artist Information (' +p247653 +sg225234 +S'French, active first half 20th century' +p247654 +sg225236 +S'(printer)' +p247655 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee1e.jpg' +p247656 +sg225240 +g27 +sa(dp247657 +g225230 +S'Woman with Hat (Femme au chapeau)' +p247658 +sg225232 +S'Pablo Picasso' +p247659 +sg225234 +S'linoleum cut' +p247660 +sg225236 +S'1963' +p247661 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eecf.jpg' +p247662 +sg225240 +g27 +sa(dp247663 +g225232 +S'Jean Arp' +p247664 +sg225240 +g27 +sg225234 +S'silkscreen in three colors' +p247665 +sg225230 +S'Aubette' +p247666 +sg225236 +S'1959' +p247667 +sa(dp247668 +g225232 +S'Jacob Kainen' +p247669 +sg225240 +g27 +sg225234 +S'etching in black' +p247670 +sg225230 +S'The Avenue' +p247671 +sg225236 +S'1948' +p247672 +sa(dp247673 +g225232 +S'Jacob Kainen' +p247674 +sg225240 +g27 +sg225234 +S'lithograph in black' +p247675 +sg225230 +S'Invader' +p247676 +sg225236 +S'1973' +p247677 +sa(dp247678 +g225232 +S'Jacob Kainen' +p247679 +sg225240 +g27 +sg225234 +S'aquatint in black on Fabriano paper' +p247680 +sg225230 +S'Marine Apparition' +p247681 +sg225236 +S'1949' +p247682 +sa(dp247683 +g225232 +S'Jacob Kainen' +p247684 +sg225240 +g27 +sg225234 +S'etching' +p247685 +sg225230 +S'Pilgrim' +p247686 +sg225236 +S'1947' +p247687 +sa(dp247688 +g225232 +S'Jacob Kainen' +p247689 +sg225240 +g27 +sg225234 +S'etching' +p247690 +sg225230 +S'Reading in Bed' +p247691 +sg225236 +S'1952' +p247692 +sa(dp247693 +g225232 +S'Jacob Kainen' +p247694 +sg225240 +g27 +sg225234 +S'drypoint in black on laid paper' +p247695 +sg225230 +S'Residential Facade' +p247696 +sg225236 +S'1949' +p247697 +sa(dp247698 +g225232 +S'Jacob Kainen' +p247699 +sg225240 +g27 +sg225234 +S'drypoint' +p247700 +sg225230 +S'Residential Turrets' +p247701 +sg225236 +S'1949' +p247702 +sa(dp247703 +g225232 +S'Jacob Kainen' +p247704 +sg225240 +g27 +sg225234 +S'lithograph in black' +p247705 +sg225230 +S'River Piece' +p247706 +sg225236 +S'1940' +p247707 +sa(dp247708 +g225232 +S'Jacob Kainen' +p247709 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p247710 +sg225230 +S'Vesta' +p247711 +sg225236 +S'1947' +p247712 +sa(dp247713 +g225232 +S'Jacob Kainen' +p247714 +sg225240 +g27 +sg225234 +S'drypoint in black on Van Gelden Zonen paper' +p247715 +sg225230 +S'Virginia Hills' +p247716 +sg225236 +S'1946' +p247717 +sa(dp247718 +g225232 +S'Walter Miller Askin' +p247719 +sg225240 +g27 +sg225234 +S'lithograph' +p247720 +sg225230 +S'Message from Athens' +p247721 +sg225236 +S'unknown date\n' +p247722 +sa(dp247723 +g225232 +S'Walter Miller Askin' +p247724 +sg225240 +g27 +sg225234 +S'lithograph' +p247725 +sg225230 +S'Message to Cyrenaian' +p247726 +sg225236 +S'unknown date\n' +p247727 +sa(dp247728 +g225232 +S'Walter Miller Askin' +p247729 +sg225240 +g27 +sg225234 +S'lithograph' +p247730 +sg225230 +S'Illusory Temptations' +p247731 +sg225236 +S'unknown date\n' +p247732 +sa(dp247733 +g225232 +S'Cheryl Olsen Bowers' +p247734 +sg225240 +g27 +sg225234 +S'lithograph' +p247735 +sg225230 +S'Plantings - Earth from Sky, 5 Seeds (Title Page)' +p247736 +sg225236 +S'1972' +p247737 +sa(dp247738 +g225232 +S'Cheryl Olsen Bowers' +p247739 +sg225240 +g27 +sg225234 +S'lithograph' +p247740 +sg225230 +S'Plantings - Earth from Sky, 5 Seeds (Colophon)' +p247741 +sg225236 +S'1972' +p247742 +sa(dp247743 +g225232 +S'Cheryl Olsen Bowers' +p247744 +sg225240 +g27 +sg225234 +S'lithograph' +p247745 +sg225230 +S'Map for Encounter with Hariless Government Heads' +p247746 +sg225236 +S'unknown date\n' +p247747 +sa(dp247748 +g225232 +S'Cheryl Olsen Bowers' +p247749 +sg225240 +g27 +sg225234 +S'lithograph' +p247750 +sg225230 +S'Map for Prevention of Lay-Anxiety' +p247751 +sg225236 +S'unknown date\n' +p247752 +sa(dp247753 +g225232 +S'Cheryl Olsen Bowers' +p247754 +sg225240 +g27 +sg225234 +S'lithograph' +p247755 +sg225230 +S'Listening N.W. of Albuqerque Map' +p247756 +sg225236 +S'unknown date\n' +p247757 +sa(dp247758 +g225230 +S'Untitled' +p247759 +sg225232 +S'Albert William Christ-Janer' +p247760 +sg225234 +S'color lithograph' +p247761 +sg225236 +S'unknown date\n' +p247762 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a63.jpg' +p247763 +sg225240 +g27 +sa(dp247764 +g225232 +S'William Dole' +p247765 +sg225240 +g27 +sg225234 +S'lithograph' +p247766 +sg225230 +S'Title Page for "Small Mnemonic Devices"' +p247767 +sg225236 +S'1971' +p247768 +sa(dp247769 +g225232 +S'William Dole' +p247770 +sg225240 +g27 +sg225234 +S'lithograph' +p247771 +sg225230 +S'Colophon for "Small Mnemonic Devices"' +p247772 +sg225236 +S'1971' +p247773 +sa(dp247774 +g225232 +S'Francoise Gilot' +p247775 +sg225240 +g27 +sg225234 +S'color lithograph' +p247776 +sg225230 +S'The Dream' +p247777 +sg225236 +S'unknown date\n' +p247778 +sa(dp247779 +g225232 +S'Francoise Gilot' +p247780 +sg225240 +g27 +sg225234 +S'color lithograph' +p247781 +sg225230 +S'Rainbow of Flowers' +p247782 +sg225236 +S'unknown date\n' +p247783 +sa(dp247784 +g225232 +S'William Goodman' +p247785 +sg225240 +g27 +sg225234 +S'lithograph' +p247786 +sg225230 +S'Anthanor' +p247787 +sg225236 +S'unknown date\n' +p247788 +sa(dp247789 +g225232 +S'William Goodman' +p247790 +sg225240 +g27 +sg225234 +S'lithograph' +p247791 +sg225230 +S'Anthanor #2' +p247792 +sg225236 +S'unknown date\n' +p247793 +sa(dp247794 +g225232 +S'William Goodman' +p247795 +sg225240 +g27 +sg225234 +S'lithograph' +p247796 +sg225230 +S'Anthanor #3' +p247797 +sg225236 +S'unknown date\n' +p247798 +sa(dp247799 +g225232 +S'William Goodman' +p247800 +sg225240 +g27 +sg225234 +S'color lithograph' +p247801 +sg225230 +S'Untitled' +p247802 +sg225236 +S'unknown date\n' +p247803 +sa(dp247804 +g225232 +S'William Goodman' +p247805 +sg225240 +g27 +sg225234 +S'color lithograph' +p247806 +sg225230 +S'Fiscus Topographicus' +p247807 +sg225236 +S'unknown date\n' +p247808 +sa(dp247809 +g225232 +S'William Goodman' +p247810 +sg225240 +g27 +sg225234 +S'lithograph' +p247811 +sg225230 +S'Winter Residence' +p247812 +sg225236 +S'unknown date\n' +p247813 +sa(dp247814 +g225232 +S'William Goodman' +p247815 +sg225240 +g27 +sg225234 +S'color lithograph' +p247816 +sg225230 +S'Untitled' +p247817 +sg225236 +S'unknown date\n' +p247818 +sa(dp247819 +g225232 +S'R.C. Gorman' +p247820 +sg225240 +g27 +sg225234 +S'color lithograph' +p247821 +sg225230 +S'Man' +p247822 +sg225236 +S'1972' +p247823 +sa(dp247824 +g225232 +S'R.C. Gorman' +p247825 +sg225240 +g27 +sg225234 +S'color lithograph' +p247826 +sg225230 +S'Woman' +p247827 +sg225236 +S'unknown date\n' +p247828 +sa(dp247829 +g225232 +S'Samia Asaad Halaby' +p247830 +sg225240 +g27 +sg225234 +S'color lithograph' +p247831 +sg225230 +S'Untitled' +p247832 +sg225236 +S'1972' +p247833 +sa(dp247834 +g225232 +S'Samia Asaad Halaby' +p247835 +sg225240 +g27 +sg225234 +S'lithograph' +p247836 +sg225230 +S'Untitled' +p247837 +sg225236 +S'1972' +p247838 +sa(dp247839 +g225232 +S'Samia Asaad Halaby' +p247840 +sg225240 +g27 +sg225234 +S'color lithograph' +p247841 +sg225230 +S'Untitled' +p247842 +sg225236 +S'1972' +p247843 +sa(dp247844 +g225232 +S'Samia Asaad Halaby' +p247845 +sg225240 +g27 +sg225234 +S'color lithograph' +p247846 +sg225230 +S'Untitled' +p247847 +sg225236 +S'1972' +p247848 +sa(dp247849 +g225232 +S'Samia Asaad Halaby' +p247850 +sg225240 +g27 +sg225234 +S'color lithograph' +p247851 +sg225230 +S'Untitled' +p247852 +sg225236 +S'1972' +p247853 +sa(dp247854 +g225232 +S'Samia Asaad Halaby' +p247855 +sg225240 +g27 +sg225234 +S'color lithograph' +p247856 +sg225230 +S'Untitled' +p247857 +sg225236 +S'1972' +p247858 +sa(dp247859 +g225232 +S'Matsumi Kanemitsu' +p247860 +sg225240 +g27 +sg225234 +S'color lithograph' +p247861 +sg225230 +S'Requiem to Utopia' +p247862 +sg225236 +S'unknown date\n' +p247863 +sa(dp247864 +g225230 +S'Acoma' +p247865 +sg225232 +S'Joyce Kozloff' +p247866 +sg225234 +S'color lithograph' +p247867 +sg225236 +S'unknown date\n' +p247868 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000af9.jpg' +p247869 +sg225240 +g27 +sa(dp247870 +g225230 +S'Cochita' +p247871 +sg225232 +S'Joyce Kozloff' +p247872 +sg225234 +S'color Lithograph' +p247873 +sg225236 +S'1972' +p247874 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000afa.jpg' +p247875 +sg225240 +g27 +sa(dp247876 +g225232 +S'John Maggio' +p247877 +sg225240 +g27 +sg225234 +S'color lithograph' +p247878 +sg225230 +S'Structure Series #2' +p247879 +sg225236 +S'unknown date\n' +p247880 +sa(dp247881 +g225232 +S'John Maggio' +p247882 +sg225240 +g27 +sg225234 +S'color lithograph' +p247883 +sg225230 +S'Structure Series #2' +p247884 +sg225236 +S'unknown date\n' +p247885 +sa(dp247886 +g225230 +S'Two Heads' +p247887 +sg225232 +S'Nathan Oliveira' +p247888 +sg225234 +S'lithograph' +p247889 +sg225236 +S'unknown date\n' +p247890 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b58.jpg' +p247891 +sg225240 +g27 +sa(dp247892 +g225232 +S'George Rickey' +p247893 +sg225240 +g27 +sg225234 +S'lithograph' +p247894 +sg225230 +S'Cube with Two Fixed and Ten Moving Lines' +p247895 +sg225236 +S'1970' +p247896 +sa(dp247897 +g225232 +S'George Rickey' +p247898 +sg225240 +g27 +sg225234 +S'lithograph' +p247899 +sg225230 +S'Two Fixed, Two Moving Lines, Four Blades, 360Rotation' +p247900 +sg225236 +S'1970' +p247901 +sa(dp247902 +g225232 +S'George Rickey' +p247903 +sg225240 +g27 +sg225234 +S'lithograph' +p247904 +sg225230 +S'Anatomy of a Cube of Six Hinged Planes' +p247905 +sg225236 +S'1970' +p247906 +sa(dp247907 +g225232 +S'George Rickey' +p247908 +sg225240 +g27 +sg225234 +S'lithograph' +p247909 +sg225230 +S'Variations on Two Horizontal Lines' +p247910 +sg225236 +S'1970' +p247911 +sa(dp247912 +g225232 +S'George Rickey' +p247913 +sg225240 +g27 +sg225234 +S'lithograph' +p247914 +sg225230 +S'Four Lines in a Square Diagonal Variations' +p247915 +sg225236 +S'1970' +p247916 +sa(dp247917 +g225232 +S'Wayne Simpkins' +p247918 +sg225240 +g27 +sg225234 +S'lithograph' +p247919 +sg225230 +S'Madonna with Upraised Horns' +p247920 +sg225236 +S'unknown date\n' +p247921 +sa(dp247922 +g225232 +S'Wayne Simpkins' +p247923 +sg225240 +g27 +sg225234 +S'color lithograph' +p247924 +sg225230 +S'Madonna of the Mantis Thighs' +p247925 +sg225236 +S'unknown date\n' +p247926 +sa(dp247927 +g225230 +S'Love Letter' +p247928 +sg225232 +S'Charles Wilbert White' +p247929 +sg225234 +S'color lithograph' +p247930 +sg225236 +S'1971' +p247931 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bc2.jpg' +p247932 +sg225240 +g27 +sa(dp247933 +g225232 +S'Sheigla Hartman' +p247934 +sg225240 +g27 +sg225234 +S'pen and black ink on wove paper' +p247935 +sg225230 +S'Snokomo Road' +p247936 +sg225236 +S'1974' +p247937 +sa(dp247938 +g225230 +S'A Grain Merchant' +p247939 +sg225232 +S'Guercino' +p247940 +sg225234 +S', c. 1620' +p247941 +sg225236 +S'\n' +p247942 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00025/a000254d.jpg' +p247943 +sg225240 +g27 +sa(dp247944 +g225232 +S'Adolphe Albert' +p247945 +sg225240 +g27 +sg225234 +S'etching "? la poup?e" on wove paper' +p247946 +sg225230 +S'Au caf\xc3\xa9 - La jeune femme en vert' +p247947 +sg225236 +S'unknown date\n' +p247948 +sa(dp247949 +g225230 +S'(Sketch of a Young Lady in Violet (Esquisse de jeune femme a la violette)' +p247950 +sg225232 +S'Norbert Goeneutte' +p247951 +sg225234 +S'etching and drypoint' +p247952 +sg225236 +S'unknown date\n' +p247953 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a00098a0.jpg' +p247954 +sg225240 +g27 +sa(dp247955 +g225230 +S'Smiling Woman Reclining on a Sofa (Femme souriant etendue sur un canape)' +p247956 +sg225232 +S'Norbert Goeneutte' +p247957 +sg225234 +S'drypoint' +p247958 +sg225236 +S'unknown date\n' +p247959 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a00098a3.jpg' +p247960 +sg225240 +g27 +sa(dp247961 +g225230 +S'The Seine at Quilleboeuf (La Seine a Quilleboeuf)' +p247962 +sg225232 +S'Norbert Goeneutte' +p247963 +sg225234 +S'drypoint in brown' +p247964 +sg225236 +S'unknown date\n' +p247965 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009897.jpg' +p247966 +sg225240 +g27 +sa(dp247967 +g225230 +S'Boulevard Clichy in the Snow (Le boulevard Clichy par un temps de neige)' +p247968 +sg225232 +S'Norbert Goeneutte' +p247969 +sg225234 +S'etching and drypoint' +p247970 +sg225236 +S'1876' +p247971 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000989b.jpg' +p247972 +sg225240 +g27 +sa(dp247973 +g225230 +S'Cottage with a White Paling' +p247974 +sg225232 +S'Rembrandt van Rijn' +p247975 +sg225234 +S'etching and drypoint' +p247976 +sg225236 +S'1648' +p247977 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d346.jpg' +p247978 +sg225240 +g27 +sa(dp247979 +g225230 +S'Old Man in Meditation, Leaning on a Book' +p247980 +sg225232 +S'Rembrandt van Rijn' +p247981 +sg225234 +S'etching and drypoint' +p247982 +sg225236 +S'c. 1645' +p247983 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d31c.jpg' +p247984 +sg225240 +g27 +sa(dp247985 +g225230 +S'The Holy Family with Joachim and Anne under a Tree' +p247986 +sg225232 +S'Albrecht D\xc3\xbcrer' +p247987 +sg225234 +S'woodcut' +p247988 +sg225236 +S'1511' +p247989 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a000163b.jpg' +p247990 +sg225240 +g27 +sa(dp247991 +g225230 +S'Martyrdom of Saint Lucy' +p247992 +sg225232 +S'Jacques de Bellange' +p247993 +sg225234 +S', unknown date' +p247994 +sg225236 +S'\n' +p247995 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bf3.jpg' +p247996 +sg225240 +g27 +sa(dp247997 +g225232 +S'Charles Knowles' +p247998 +sg225240 +g27 +sg225234 +S'woodcut in black on orange paper' +p247999 +sg225230 +S'Title Page' +p248000 +sg225236 +S'c. 1957' +p248001 +sa(dp248002 +g225232 +S'Charles Knowles' +p248003 +sg225240 +g27 +sg225234 +S'portfolio with eighteen color woodcuts and linoleum cuts, including title page and colophon, on color paper' +p248004 +sg225230 +S'The Psalm Book' +p248005 +sg225236 +S'published 1957' +p248006 +sa(dp248007 +g225232 +S'Charles Knowles' +p248008 +sg225240 +g27 +sg225234 +S'woodcut in brown on light brown paper' +p248009 +sg225230 +S'Psalm I' +p248010 +sg225236 +S'c. 1957' +p248011 +sa(dp248012 +g225232 +S'Charles Knowles' +p248013 +sg225240 +g27 +sg225234 +S'color woodcut' +p248014 +sg225230 +S'Fruit Tree' +p248015 +sg225236 +S'c. 1957' +p248016 +sa(dp248017 +g225232 +S'Charles Knowles' +p248018 +sg225240 +g27 +sg225234 +S'woodcut in black on brown paper' +p248019 +sg225230 +S'Psalm 8' +p248020 +sg225236 +S'c. 1957' +p248021 +sa(dp248022 +g225232 +S'Charles Knowles' +p248023 +sg225240 +g27 +sg225234 +S'color linoleum cut on brown paper' +p248024 +sg225230 +S'Man and Animals' +p248025 +sg225236 +S'c. 1957' +p248026 +sa(dp248027 +g225232 +S'Charles Knowles' +p248028 +sg225240 +g27 +sg225234 +S'woodcut in black and orange on light green-blue paper' +p248029 +sg225230 +S'Psalm 47' +p248030 +sg225236 +S'c. 1957' +p248031 +sa(dp248032 +g225232 +S'Charles Knowles' +p248033 +sg225240 +g27 +sg225234 +S'color linoleum cut on pink paper' +p248034 +sg225230 +S'Figure Blowing a Horn' +p248035 +sg225236 +S'c. 1957' +p248036 +sa(dp248037 +g225232 +S'Charles Knowles' +p248038 +sg225240 +g27 +sg225234 +S'woodcut in black on light brown paper' +p248039 +sg225230 +S'Psalm 110 (A Psalm of David)' +p248040 +sg225236 +S'c. 1957' +p248041 +sa(dp248042 +g225232 +S'Charles Knowles' +p248043 +sg225240 +g27 +sg225234 +S'color woodcut' +p248044 +sg225230 +S'A King and the Lord' +p248045 +sg225236 +S'c. 1957' +p248046 +sa(dp248047 +g225232 +S'Charles Knowles' +p248048 +sg225240 +g27 +sg225234 +S'woodcut in black on buff paper' +p248049 +sg225230 +S'Psalm 121' +p248050 +sg225236 +S'c. 1957' +p248051 +sa(dp248052 +g225232 +S'Charles Knowles' +p248053 +sg225240 +g27 +sg225234 +S'color woodcut and linoleum cut' +p248054 +sg225230 +S'Trees and a Star' +p248055 +sg225236 +S'c. 1957' +p248056 +sa(dp248057 +g225232 +S'Charles Knowles' +p248058 +sg225240 +g27 +sg225234 +S'woodcut in gold and black on gray paper' +p248059 +sg225230 +S'Psalm 137' +p248060 +sg225236 +S'c. 1957' +p248061 +sa(dp248062 +g225232 +S'Charles Knowles' +p248063 +sg225240 +g27 +sg225234 +S'color woodcut and linoleum cut on gray paper' +p248064 +sg225230 +S'Trees with Harps and Figures Below' +p248065 +sg225236 +S'c. 1957' +p248066 +sa(dp248067 +g225232 +S'Charles Knowles' +p248068 +sg225240 +g27 +sg225234 +S'woodcut in black on light brown paper' +p248069 +sg225230 +S'Psalm 142' +p248070 +sg225236 +S'c. 1957' +p248071 +sa(dp248072 +g225232 +S'Charles Knowles' +p248073 +sg225240 +g27 +sg225234 +S'color linoleum cut? on blue paper' +p248074 +sg225230 +S'Man with Head Bent' +p248075 +sg225236 +S'c. 1957' +p248076 +sa(dp248077 +g225232 +S'Charles Knowles' +p248078 +sg225240 +g27 +sg225234 +S'woodcut in black on red-orange paper' +p248079 +sg225230 +S'Psalm 150' +p248080 +sg225236 +S'c. 1957' +p248081 +sa(dp248082 +g225232 +S'Charles Knowles' +p248083 +sg225240 +g27 +sg225234 +S'color Woodcut' +p248084 +sg225230 +S'Four Figures Playing Musical Instruments' +p248085 +sg225236 +S'c. 1957' +p248086 +sa(dp248087 +g225232 +S'Charles Knowles' +p248088 +sg225240 +g27 +sg225234 +S'woodcut in black on brown paper' +p248089 +sg225230 +S'Colophon' +p248090 +sg225236 +S'c. 1957' +p248091 +sa(dp248092 +g225230 +S'Eleanor Parke Custis Lewis (Mrs. Lawrence Lewis)' +p248093 +sg225232 +S'Gilbert Stuart' +p248094 +sg225234 +S'oil on canvas' +p248095 +sg225236 +S'1804' +p248096 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000253.jpg' +p248097 +sg225240 +g27 +sa(dp248098 +g225230 +S'Still Life with Nautilus Cup' +p248099 +sg225232 +S'Artist Information (' +p248100 +sg225234 +S'Dutch, 1619 - 1693' +p248101 +sg225236 +S'(artist after)' +p248102 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e6c.jpg' +p248103 +sg225240 +g27 +sa(dp248104 +g225232 +S'Keith Morrow Martin' +p248105 +sg225240 +g27 +sg225234 +S'graphite on wove paper' +p248106 +sg225230 +S'Untitled' +p248107 +sg225236 +S'1971' +p248108 +sa(dp248109 +g225232 +S'Keith Morrow Martin' +p248110 +sg225240 +g27 +sg225234 +S'graphite and watercolor on wove paper' +p248111 +sg225230 +S'Drawing No.5' +p248112 +sg225236 +S'1972' +p248113 +sa(dp248114 +g225232 +S'Keith Morrow Martin' +p248115 +sg225240 +g27 +sg225234 +S'graphite on (bristol board?)' +p248116 +sg225230 +S'Drawing No.19' +p248117 +sg225236 +S'1971' +p248118 +sa(dp248119 +g225232 +S'Keith Morrow Martin' +p248120 +sg225240 +g27 +sg225234 +S'graphite on wove paper' +p248121 +sg225230 +S'Drawing No.26' +p248122 +sg225236 +S'1973' +p248123 +sa(dp248124 +g225232 +S'Keith Morrow Martin' +p248125 +sg225240 +g27 +sg225234 +S'graphite and watercolor' +p248126 +sg225230 +S'Drawing No.41: Rainbow' +p248127 +sg225236 +S'1970' +p248128 +sa(dp248129 +g225232 +S'Jasper Johns' +p248130 +sg225240 +g27 +sg225234 +S'6-color lithograph (stone and aluminum) on Angoumois a la main paper' +p248131 +sg225230 +S'Souvenir I' +p248132 +sg225236 +S'1971/1972' +p248133 +sa(dp248134 +g225230 +S"Abraham's Sacrifice" +p248135 +sg225232 +S'Albrecht Altdorfer' +p248136 +sg225234 +S'woodcut' +p248137 +sg225236 +S'in or after 1520' +p248138 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a77a.jpg' +p248139 +sg225240 +g27 +sa(dp248140 +g225230 +S'Grim Spain' +p248141 +sg225232 +S'Francis Seymour Haden' +p248142 +sg225234 +S'etching (copper) on japan paper in dark brown' +p248143 +sg225236 +S'1877' +p248144 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c9d.jpg' +p248145 +sg225240 +g27 +sa(dp248146 +g225230 +S'Moses and the Burning Bush' +p248147 +sg225232 +S'Augustin Hirschvogel' +p248148 +sg225234 +S'etching' +p248149 +sg225236 +S'1548' +p248150 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abd8.jpg' +p248151 +sg225240 +g27 +sa(dp248152 +g225230 +S'Hunchbacked Fiddler' +p248153 +sg225232 +S'Adriaen van Ostade' +p248154 +sg225234 +S'etching' +p248155 +sg225236 +S'1654' +p248156 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2b5.jpg' +p248157 +sg225240 +g27 +sa(dp248158 +g225232 +S'Jacques Villon' +p248159 +sg225240 +g27 +sg225234 +S'drypoint, aquatint, and roulette in black on wove paper' +p248160 +sg225230 +S'Ren\xc3\xa9e on a Bicycle (Ren\xc3\xa9e \xc3\xa0 bicyclette)' +p248161 +sg225236 +S'1906' +p248162 +sa(dp248163 +g225232 +S'Artist Information (' +p248164 +sg225240 +g27 +sg225234 +S'(author)' +p248165 +sg225230 +S'Elegies' +p248166 +sg225236 +S'\n' +p248167 +sa(dp248168 +g225232 +S'Jean Dubuffet' +p248169 +sg225240 +g27 +sg225234 +S'color lithograph' +p248170 +sg225230 +S'Paysage habite' +p248171 +sg225236 +S'1946' +p248172 +sa(dp248173 +g225232 +S'Artist Information (' +p248174 +sg225240 +g27 +sg225234 +S'(author)' +p248175 +sg225230 +S'Mordicus' +p248176 +sg225236 +S'\n' +p248177 +sa(dp248178 +g225232 +S'Jean Dubuffet' +p248179 +sg225240 +g27 +sg225234 +S'color lithograph' +p248180 +sg225230 +S'Texturologie' +p248181 +sg225236 +S'1958' +p248182 +sa(dp248183 +g225232 +S'Jean Dubuffet' +p248184 +sg225240 +g27 +sg225234 +S'color lithograph' +p248185 +sg225230 +S'Chaussee terreuse' +p248186 +sg225236 +S'1958' +p248187 +sa(dp248188 +g225232 +S'Jean Dubuffet' +p248189 +sg225240 +g27 +sg225234 +S'color lithograph' +p248190 +sg225230 +S'Element de sol' +p248191 +sg225236 +S'1958' +p248192 +sa(dp248193 +g225232 +S'Jean Dubuffet' +p248194 +sg225240 +g27 +sg225234 +S'color lithograph' +p248195 +sg225230 +S'Texturologie II' +p248196 +sg225236 +S'1958' +p248197 +sa(dp248198 +g225232 +S'Jean Dubuffet' +p248199 +sg225240 +g27 +sg225234 +S'color lithograph' +p248200 +sg225230 +S'Pulverulence terreuse' +p248201 +sg225236 +S'1958' +p248202 +sa(dp248203 +g225232 +S'Jean Dubuffet' +p248204 +sg225240 +g27 +sg225234 +S'color lithograph' +p248205 +sg225230 +S'Marques au Mur' +p248206 +sg225236 +S'1958' +p248207 +sa(dp248208 +g225232 +S'Jean Dubuffet' +p248209 +sg225240 +g27 +sg225234 +S'color lithograph' +p248210 +sg225230 +S'Texte de terre' +p248211 +sg225236 +S'1959' +p248212 +sa(dp248213 +g225232 +S'Jean Dubuffet' +p248214 +sg225240 +g27 +sg225234 +S'color lithograph' +p248215 +sg225230 +S'Champ de pensee' +p248216 +sg225236 +S'1959' +p248217 +sa(dp248218 +g225232 +S'Jean Dubuffet' +p248219 +sg225240 +g27 +sg225234 +S'color lithograph' +p248220 +sg225230 +S'Scintillement' +p248221 +sg225236 +S'1959' +p248222 +sa(dp248223 +g225232 +S'Jean Dubuffet' +p248224 +sg225240 +g27 +sg225234 +S'color lithograph' +p248225 +sg225230 +S'Fraicheur' +p248226 +sg225236 +S'1959' +p248227 +sa(dp248228 +g225232 +S'Artist Information (' +p248229 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Miracle (Miracolo)' +p248230 +sg225236 +S'(publisher)' +p248231 +sa(dp248232 +g225232 +S'Masayuki Nagare' +p248233 +sg225240 +g27 +sg225234 +S'aji granite' +p248234 +sg225230 +S'Breakers (The Wave)' +p248235 +sg225236 +S'1963' +p248236 +sa(dp248237 +g225230 +S'Marin Cureau de la Chambre' +p248238 +sg225232 +S'Artist Information (' +p248239 +sg225234 +S'(artist after)' +p248240 +sg225236 +S'\n' +p248241 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b46.jpg' +p248242 +sg225240 +g27 +sa(dp248243 +g225230 +S'Antoine Turgot' +p248244 +sg225232 +S'Antoine Masson' +p248245 +sg225234 +S'etching and engraving' +p248246 +sg225236 +S'unknown date\n' +p248247 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b4a.jpg' +p248248 +sg225240 +g27 +sa(dp248249 +g225230 +S'Guillaume de Brisacier' +p248250 +sg225232 +S'Artist Information (' +p248251 +sg225234 +S'(artist after)' +p248252 +sg225236 +S'\n' +p248253 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b49.jpg' +p248254 +sg225240 +g27 +sa(dp248255 +g225230 +S'Cardinal de Bouillon' +p248256 +sg225232 +S'Artist Information (' +p248257 +sg225234 +S'(artist after)' +p248258 +sg225236 +S'\n' +p248259 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b48.jpg' +p248260 +sg225240 +g27 +sa(dp248261 +g225230 +S'Pere Ives' +p248262 +sg225232 +S'Claude Mellan' +p248263 +sg225234 +S'engraving' +p248264 +sg225236 +S'1677' +p248265 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a000679b.jpg' +p248266 +sg225240 +g27 +sa(dp248267 +g225230 +S'Francois de Villemontee' +p248268 +sg225232 +S'Claude Mellan' +p248269 +sg225234 +S'engraving' +p248270 +sg225236 +S'unknown date\n' +p248271 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a00067be.jpg' +p248272 +sg225240 +g27 +sa(dp248273 +g225230 +S'Jean Perrault' +p248274 +sg225232 +S'Claude Mellan' +p248275 +sg225234 +S'engraving' +p248276 +sg225236 +S'1632' +p248277 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a00067bd.jpg' +p248278 +sg225240 +g27 +sa(dp248279 +g225230 +S'Louis XIV as a Boy' +p248280 +sg225232 +S'Claude Mellan' +p248281 +sg225234 +S'engraving' +p248282 +sg225236 +S'unknown date\n' +p248283 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a00067bf.jpg' +p248284 +sg225240 +g27 +sa(dp248285 +g225230 +S'Jean Habert de Monturor' +p248286 +sg225232 +S'Claude Mellan' +p248287 +sg225234 +S'engraving' +p248288 +sg225236 +S'unknown date\n' +p248289 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a00067c0.jpg' +p248290 +sg225240 +g27 +sa(dp248291 +g225230 +S'Charles Favre' +p248292 +sg225232 +S'Claude Mellan' +p248293 +sg225234 +S'engraving' +p248294 +sg225236 +S'1649' +p248295 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a000678a.jpg' +p248296 +sg225240 +g27 +sa(dp248297 +g225230 +S'The Holy Family' +p248298 +sg225232 +S'Claude Mellan' +p248299 +sg225234 +S'engraving' +p248300 +sg225236 +S'unknown date\n' +p248301 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a00067c1.jpg' +p248302 +sg225240 +g27 +sa(dp248303 +g225230 +S'Christ on the Cross' +p248304 +sg225232 +S'Claude Mellan' +p248305 +sg225234 +S'engraving' +p248306 +sg225236 +S'unknown date\n' +p248307 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006791.jpg' +p248308 +sg225240 +g27 +sa(dp248309 +g225230 +S'Saint Alexis' +p248310 +sg225232 +S'Claude Mellan' +p248311 +sg225234 +S'engraving' +p248312 +sg225236 +S'1649' +p248313 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006765.jpg' +p248314 +sg225240 +g27 +sa(dp248315 +g225230 +S'Saint Augustine' +p248316 +sg225232 +S'Claude Mellan' +p248317 +sg225234 +S'engraving' +p248318 +sg225236 +S'1660' +p248319 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006764.jpg' +p248320 +sg225240 +g27 +sa(dp248321 +g225230 +S'Saint Benoit' +p248322 +sg225232 +S'Claude Mellan' +p248323 +sg225234 +S'engraving' +p248324 +sg225236 +S'unknown date\n' +p248325 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006762.jpg' +p248326 +sg225240 +g27 +sa(dp248327 +g225230 +S'John Ogilvy' +p248328 +sg225232 +S'Artist Information (' +p248329 +sg225234 +S'(artist after)' +p248330 +sg225236 +S'\n' +p248331 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076c2.jpg' +p248332 +sg225240 +g27 +sa(dp248333 +g225230 +S'James Drummond, Earl of Perth' +p248334 +sg225232 +S'Artist Information (' +p248335 +sg225234 +S'(artist after)' +p248336 +sg225236 +S'\n' +p248337 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076bf.jpg' +p248338 +sg225240 +g27 +sa(dp248339 +g225230 +S'Antoine Vitre' +p248340 +sg225232 +S'Artist Information (' +p248341 +sg225234 +S'(artist after)' +p248342 +sg225236 +S'\n' +p248343 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b53a.jpg' +p248344 +sg225240 +g27 +sa(dp248345 +g225230 +S'Pierre Berthier' +p248346 +sg225232 +S'Artist Information (' +p248347 +sg225234 +S'(artist after)' +p248348 +sg225236 +S'\n' +p248349 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bbe.jpg' +p248350 +sg225240 +g27 +sa(dp248351 +g225230 +S'Omer Talon' +p248352 +sg225232 +S'Artist Information (' +p248353 +sg225234 +S'(artist after)' +p248354 +sg225236 +S'\n' +p248355 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b557.jpg' +p248356 +sg225240 +g27 +sa(dp248357 +g225230 +S'Marguerite Lemon' +p248358 +sg225232 +S'Artist Information (' +p248359 +sg225234 +S'(artist after)' +p248360 +sg225236 +S'\n' +p248361 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b519.jpg' +p248362 +sg225240 +g27 +sa(dp248363 +g225230 +S'Pierre Maugis' +p248364 +sg225232 +S'Artist Information (' +p248365 +sg225234 +S'(artist after)' +p248366 +sg225236 +S'\n' +p248367 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b566.jpg' +p248368 +sg225240 +g27 +sa(dp248369 +g225230 +S'Nicolas de Netz' +p248370 +sg225232 +S'Artist Information (' +p248371 +sg225234 +S'(artist after)' +p248372 +sg225236 +S'\n' +p248373 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b51f.jpg' +p248374 +sg225240 +g27 +sa(dp248375 +g225230 +S'Nicolas Colbert' +p248376 +sg225232 +S'Artist Information (' +p248377 +sg225234 +S'(artist after)' +p248378 +sg225236 +S'\n' +p248379 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c26.jpg' +p248380 +sg225240 +g27 +sa(dp248381 +g225230 +S'Perefixe de Beaumont' +p248382 +sg225232 +S'Artist Information (' +p248383 +sg225234 +S'(artist after)' +p248384 +sg225236 +S'\n' +p248385 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c2a.jpg' +p248386 +sg225240 +g27 +sa(dp248387 +g225230 +S'Thierry Bignon' +p248388 +sg225232 +S'Artist Information (' +p248389 +sg225234 +S'(artist after)' +p248390 +sg225236 +S'\n' +p248391 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c25.jpg' +p248392 +sg225240 +g27 +sa(dp248393 +g225230 +S'Pierre le Moyne' +p248394 +sg225232 +S'Artist Information (' +p248395 +sg225234 +S'(artist after)' +p248396 +sg225236 +S'\n' +p248397 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c29.jpg' +p248398 +sg225240 +g27 +sa(dp248399 +g225230 +S'Nicolas Parfait' +p248400 +sg225232 +S'Artist Information (' +p248401 +sg225234 +S'(artist after)' +p248402 +sg225236 +S'\n' +p248403 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c27.jpg' +p248404 +sg225240 +g27 +sa(dp248405 +g225230 +S'Louis XIV' +p248406 +sg225232 +S'Artist Information (' +p248407 +sg225234 +S'(artist after)' +p248408 +sg225236 +S'\n' +p248409 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d566.jpg' +p248410 +sg225240 +g27 +sa(dp248411 +g225230 +S'Michel Colbert' +p248412 +sg225232 +S'Artist Information (' +p248413 +sg225234 +S'(artist after)' +p248414 +sg225236 +S'\n' +p248415 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d62a.jpg' +p248416 +sg225240 +g27 +sa(dp248417 +g225230 +S'Langlois de Blancfort' +p248418 +sg225232 +S'Peter Ludwig van Schuppen' +p248419 +sg225234 +S'engraving' +p248420 +sg225236 +S'1675' +p248421 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d564.jpg' +p248422 +sg225240 +g27 +sa(dp248423 +g225230 +S'Charles de Houel de Morainville' +p248424 +sg225232 +S'Artist Information (' +p248425 +sg225234 +S'(artist after)' +p248426 +sg225236 +S'\n' +p248427 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d563.jpg' +p248428 +sg225240 +g27 +sa(dp248429 +g225230 +S'Nicolas Le Camus' +p248430 +sg225232 +S'Artist Information (' +p248431 +sg225234 +S'(artist after)' +p248432 +sg225236 +S'\n' +p248433 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d562.jpg' +p248434 +sg225240 +g27 +sa(dp248435 +g225230 +S'Cardinal Jules Mazarin' +p248436 +sg225232 +S'Artist Information (' +p248437 +sg225234 +S'(artist after)' +p248438 +sg225236 +S'\n' +p248439 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d561.jpg' +p248440 +sg225240 +g27 +sa(dp248441 +g225230 +S'Mary I Stuart' +p248442 +sg225232 +S'Artist Information (' +p248443 +sg225234 +S'(artist after)' +p248444 +sg225236 +S'\n' +p248445 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d629.jpg' +p248446 +sg225240 +g27 +sa(dp248447 +g225230 +S'John, Count of Nassau' +p248448 +sg225232 +S'Artist Information (' +p248449 +sg225234 +S'(artist after)' +p248450 +sg225236 +S'\n' +p248451 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d577.jpg' +p248452 +sg225240 +g27 +sa(dp248453 +g225230 +S'Franciscus de Moncada' +p248454 +sg225232 +S'Artist Information (' +p248455 +sg225234 +S'(artist after)' +p248456 +sg225236 +S'\n' +p248457 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d575.jpg' +p248458 +sg225240 +g27 +sa(dp248459 +g225230 +S'Philip III, King of Spain' +p248460 +sg225232 +S'Jonas Suyderhoff' +p248461 +sg225234 +S'etching and engraving' +p248462 +sg225236 +S'unknown date\n' +p248463 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d57b.jpg' +p248464 +sg225240 +g27 +sa(dp248465 +g225230 +S'Johann von Erlach' +p248466 +sg225232 +S'Artist Information (' +p248467 +sg225234 +S'(artist after)' +p248468 +sg225236 +S'\n' +p248469 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b384.jpg' +p248470 +sg225240 +g27 +sa(dp248471 +g225230 +S'Nicolas Rene Berryer' +p248472 +sg225232 +S'Artist Information (' +p248473 +sg225234 +S'(artist after)' +p248474 +sg225236 +S'\n' +p248475 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b385.jpg' +p248476 +sg225240 +g27 +sa(dp248477 +g225230 +S'J.P. Bignon' +p248478 +sg225232 +S'Artist Information (' +p248479 +sg225234 +S'(artist after)' +p248480 +sg225236 +S'\n' +p248481 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a48.jpg' +p248482 +sg225240 +g27 +sa(dp248483 +g225230 +S'Bishop Hoadly' +p248484 +sg225232 +S'Artist Information (' +p248485 +sg225234 +S'(artist after)' +p248486 +sg225236 +S'\n' +p248487 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a000776a.jpg' +p248488 +sg225240 +g27 +sa(dp248489 +g225230 +S'Hieronymus van Beverningk' +p248490 +sg225232 +S'Artist Information (' +p248491 +sg225234 +S'(artist after)' +p248492 +sg225236 +S'\n' +p248493 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5f2.jpg' +p248494 +sg225240 +g27 +sa(dp248495 +g225230 +S'Conradus Detleu von Dehn' +p248496 +sg225232 +S'Artist Information (' +p248497 +sg225234 +S'(artist after)' +p248498 +sg225236 +S'\n' +p248499 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a00096b1.jpg' +p248500 +sg225240 +g27 +sa(dp248501 +g225230 +S'Jean-Baptiste Santeuil' +p248502 +sg225232 +S'Artist Information (' +p248503 +sg225234 +S'(artist after)' +p248504 +sg225236 +S'\n' +p248505 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d609.jpg' +p248506 +sg225240 +g27 +sa(dp248507 +g225230 +S'Louis, Duke of Burgundy' +p248508 +sg225232 +S'Artist Information (' +p248509 +sg225234 +S'(artist after)' +p248510 +sg225236 +S'\n' +p248511 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4ff.jpg' +p248512 +sg225240 +g27 +sa(dp248513 +g225230 +S'Gedeon Berbier-Du Metz' +p248514 +sg225232 +S'Artist Information (' +p248515 +sg225234 +S'(artist after)' +p248516 +sg225236 +S'\n' +p248517 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d50b.jpg' +p248518 +sg225240 +g27 +sa(dp248519 +g225230 +S'Mary, Princess of Orange' +p248520 +sg225232 +S'Artist Information (' +p248521 +sg225234 +S'(artist after)' +p248522 +sg225236 +S'\n' +p248523 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076ca.jpg' +p248524 +sg225240 +g27 +sa(dp248525 +g225230 +S'Mary, Princess of Orange' +p248526 +sg225232 +S'Artist Information (' +p248527 +sg225234 +S'(artist after)' +p248528 +sg225236 +S'\n' +p248529 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076c3.jpg' +p248530 +sg225240 +g27 +sa(dp248531 +g225230 +S'William II, Prince of Orange' +p248532 +sg225232 +S'William Faithorne' +p248533 +sg225234 +S'engraving' +p248534 +sg225236 +S'unknown date\n' +p248535 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076c8.jpg' +p248536 +sg225240 +g27 +sa(dp248537 +g225230 +S'Thomas Bruce, Earl of Elgin' +p248538 +sg225232 +S'Artist Information (' +p248539 +sg225234 +S'(artist after)' +p248540 +sg225236 +S'\n' +p248541 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076c1.jpg' +p248542 +sg225240 +g27 +sa(dp248543 +g225230 +S'Lord Thomas Fairfax' +p248544 +sg225232 +S'Artist Information (' +p248545 +sg225234 +S'(artist after)' +p248546 +sg225236 +S'\n' +p248547 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076c6.jpg' +p248548 +sg225240 +g27 +sa(dp248549 +g225230 +S'John Milton' +p248550 +sg225232 +S'William Faithorne' +p248551 +sg225234 +S'engraving' +p248552 +sg225236 +S'1670' +p248553 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a000763a.jpg' +p248554 +sg225240 +g27 +sa(dp248555 +g225230 +S'John Mordaunt, Viscount Mordaunt' +p248556 +sg225232 +S'Artist Information (' +p248557 +sg225234 +S'(artist after)' +p248558 +sg225236 +S'\n' +p248559 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076c7.jpg' +p248560 +sg225240 +g27 +sa(dp248561 +g225230 +S'Margaret Smith' +p248562 +sg225232 +S'Artist Information (' +p248563 +sg225234 +S'(artist after)' +p248564 +sg225236 +S'\n' +p248565 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076c5.jpg' +p248566 +sg225240 +g27 +sa(dp248567 +g225230 +S'Etienne Pasquier' +p248568 +sg225232 +S'L\xc3\xa9onard Gaultier' +p248569 +sg225234 +S'engraving' +p248570 +sg225236 +S'1617' +p248571 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a000841a.jpg' +p248572 +sg225240 +g27 +sa(dp248573 +g225230 +S'Lady Catherine Howard' +p248574 +sg225232 +S'Wenceslaus Hollar' +p248575 +sg225234 +S'etching' +p248576 +sg225236 +S'unknown date\n' +p248577 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8a4.jpg' +p248578 +sg225240 +g27 +sa(dp248579 +g225230 +S'Jacob Cornelius' +p248580 +sg225232 +S'Artist Information (' +p248581 +sg225234 +S'(artist after)' +p248582 +sg225236 +S'\n' +p248583 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d512.jpg' +p248584 +sg225240 +g27 +sa(dp248585 +g225230 +S"Gabriel Chassebras de la Grand'Maison" +p248586 +sg225232 +S'Pierre Lombard' +p248587 +sg225234 +S'engraving' +p248588 +sg225236 +S'unknown date\n' +p248589 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076b1.jpg' +p248590 +sg225240 +g27 +sa(dp248591 +g225230 +S'Cardinal Fleury' +p248592 +sg225232 +S'Artist Information (' +p248593 +sg225234 +S'(artist after)' +p248594 +sg225236 +S'\n' +p248595 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a00096b5.jpg' +p248596 +sg225240 +g27 +sa(dp248597 +g225230 +S'Henry, Count de Bergh' +p248598 +sg225232 +S'Artist Information (' +p248599 +sg225234 +S'(artist after)' +p248600 +sg225236 +S'\n' +p248601 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4ee.jpg' +p248602 +sg225240 +g27 +sa(dp248603 +g225230 +S'William Louis, Count of Nassau-Beilstein' +p248604 +sg225232 +S'Artist Information (' +p248605 +sg225234 +S'(artist after)' +p248606 +sg225236 +S'\n' +p248607 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4ef.jpg' +p248608 +sg225240 +g27 +sa(dp248609 +g225230 +S'Florent II, Count of Pallandt' +p248610 +sg225232 +S'Artist Information (' +p248611 +sg225234 +S'(artist after)' +p248612 +sg225236 +S'\n' +p248613 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4f2.jpg' +p248614 +sg225240 +g27 +sa(dp248615 +g225230 +S'Catherine, Countess of Pallandt' +p248616 +sg225232 +S'Artist Information (' +p248617 +sg225234 +S'(artist after)' +p248618 +sg225236 +S'\n' +p248619 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4f3.jpg' +p248620 +sg225240 +g27 +sa(dp248621 +g225230 +S'Hendrik Matthias, Count of Thurn and Taxis' +p248622 +sg225232 +S'Artist Information (' +p248623 +sg225234 +S'(artist after)' +p248624 +sg225236 +S'\n' +p248625 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4f4.jpg' +p248626 +sg225240 +g27 +sa(dp248627 +g225230 +S'Fine de Brianville' +p248628 +sg225232 +S'Artist Information (' +p248629 +sg225234 +S'(artist after)' +p248630 +sg225236 +S'\n' +p248631 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a00096ed.jpg' +p248632 +sg225240 +g27 +sa(dp248633 +g225230 +S'Leonard de Lamet' +p248634 +sg225232 +S'Artist Information (' +p248635 +sg225234 +S'(artist after)' +p248636 +sg225236 +S'\n' +p248637 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a00096f5.jpg' +p248638 +sg225240 +g27 +sa(dp248639 +g225230 +S'Marquis de la Vrilliere' +p248640 +sg225232 +S'Artist Information (' +p248641 +sg225234 +S'(artist after)' +p248642 +sg225236 +S'\n' +p248643 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a00096f9.jpg' +p248644 +sg225240 +g27 +sa(dp248645 +g225230 +S'Isaac-Jacques de Verthamon' +p248646 +sg225232 +S'Artist Information (' +p248647 +sg225234 +S'(artist after)' +p248648 +sg225236 +S'\n' +p248649 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00097/a0009700.jpg' +p248650 +sg225240 +g27 +sa(dp248651 +g225230 +S'Nicolas de Blampignon' +p248652 +sg225232 +S'Artist Information (' +p248653 +sg225234 +S'(artist after)' +p248654 +sg225236 +S'\n' +p248655 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d501.jpg' +p248656 +sg225240 +g27 +sa(dp248657 +g225230 +S'James III, Prince of Wales' +p248658 +sg225232 +S'Artist Information (' +p248659 +sg225234 +S'(artist after)' +p248660 +sg225236 +S'\n' +p248661 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d606.jpg' +p248662 +sg225240 +g27 +sa(dp248663 +g225230 +S'James III, Prince of Wales' +p248664 +sg225232 +S'Artist Information (' +p248665 +sg225234 +S'(artist after)' +p248666 +sg225236 +S'\n' +p248667 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d605.jpg' +p248668 +sg225240 +g27 +sa(dp248669 +g225230 +S'Philippe, Duke of Anjou' +p248670 +sg225232 +S'Artist Information (' +p248671 +sg225234 +S'(artist after)' +p248672 +sg225236 +S'\n' +p248673 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d50c.jpg' +p248674 +sg225240 +g27 +sa(dp248675 +g225230 +S'Pierre de Carcavy' +p248676 +sg225232 +S'Artist Information (' +p248677 +sg225234 +S'(artist after)' +p248678 +sg225236 +S'\n' +p248679 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d50a.jpg' +p248680 +sg225240 +g27 +sa(dp248681 +g225230 +S'Antoine Furetiere' +p248682 +sg225232 +S'Artist Information (' +p248683 +sg225234 +S'(artist after)' +p248684 +sg225236 +S'\n' +p248685 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d507.jpg' +p248686 +sg225240 +g27 +sa(dp248687 +g225230 +S'Sir Robert Henley, Bart.' +p248688 +sg225232 +S'Artist Information (' +p248689 +sg225234 +S'(artist after)' +p248690 +sg225236 +S'\n' +p248691 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076c9.jpg' +p248692 +sg225240 +g27 +sa(dp248693 +g225230 +S'Study for Man Making an Explosion' +p248694 +sg225232 +S'Giulio Bonasone' +p248695 +sg225234 +S'pen and brown ink with gray wash' +p248696 +sg225236 +S'unknown date\n' +p248697 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074f1.jpg' +p248698 +sg225240 +g27 +sa(dp248699 +g225230 +S'Study for Harpocrates (Silentio Deum Cole)' +p248700 +sg225232 +S'Giulio Bonasone' +p248701 +sg225234 +S'pen and brown ink with wash' +p248702 +sg225236 +S'unknown date\n' +p248703 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074f2.jpg' +p248704 +sg225240 +g27 +sa(dp248705 +g225230 +S'Female Saint (Saint Clare of Assisi or Saint Catherine of Siena?)' +p248706 +sg225232 +S'Italian 17th Century' +p248707 +sg225234 +S'overall: 23.8 x 24.1 cm (9 3/8 x 9 1/2 in.)' +p248708 +sg225236 +S'\nblack and red chalk on laid paper' +p248709 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a000746c.jpg' +p248710 +sg225240 +g27 +sa(dp248711 +g225230 +S'Magdalen' +p248712 +sg225232 +S'Italian 17th Century' +p248713 +sg225234 +S'Ailsa Mellon Bruce Fund' +p248714 +sg225236 +S'\netching' +p248715 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8df.jpg' +p248716 +sg225240 +g27 +sa(dp248717 +g225230 +S'Resting Cows' +p248718 +sg225232 +S'Nicolaes Pietersz Berchem' +p248719 +sg225234 +S'etching' +p248720 +sg225236 +S'unknown date\n' +p248721 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0ad.jpg' +p248722 +sg225240 +g27 +sa(dp248723 +g225230 +S'The Happy Patriot' +p248724 +sg225232 +S'Cornelis Dusart' +p248725 +sg225234 +S'mezzotint' +p248726 +sg225236 +S'in or after 1695' +p248727 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4f7.jpg' +p248728 +sg225240 +g27 +sa(dp248729 +g225230 +S'Rinaldo and Armida' +p248730 +sg225232 +S'Angelica Kauffmann' +p248731 +sg225234 +S'etching' +p248732 +sg225236 +S'unknown date\n' +p248733 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef93.jpg' +p248734 +sg225240 +g27 +sa(dp248735 +g225230 +S'Frontispiece' +p248736 +sg225232 +S'S\xc3\xa9bastien Le Clerc I' +p248737 +sg225234 +S'etching' +p248738 +sg225236 +S'1673' +p248739 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008955.jpg' +p248740 +sg225240 +g27 +sa(dp248741 +g225230 +S'Landscape with Horsemen and Bridge' +p248742 +sg225232 +S'S\xc3\xa9bastien Le Clerc I' +p248743 +sg225234 +S'etching' +p248744 +sg225236 +S'1673' +p248745 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008956.jpg' +p248746 +sg225240 +g27 +sa(dp248747 +g225230 +S'Landscape with Church and Town in Distance' +p248748 +sg225232 +S'S\xc3\xa9bastien Le Clerc I' +p248749 +sg225234 +S'etching' +p248750 +sg225236 +S'1673' +p248751 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000894e.jpg' +p248752 +sg225240 +g27 +sa(dp248753 +g225230 +S'Landscape with Chateau' +p248754 +sg225232 +S'S\xc3\xa9bastien Le Clerc I' +p248755 +sg225234 +S'etching' +p248756 +sg225236 +S'1673' +p248757 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008951.jpg' +p248758 +sg225240 +g27 +sa(dp248759 +g225230 +S'Landscape with Houses' +p248760 +sg225232 +S'S\xc3\xa9bastien Le Clerc I' +p248761 +sg225234 +S'etching' +p248762 +sg225236 +S'1673' +p248763 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008957.jpg' +p248764 +sg225240 +g27 +sa(dp248765 +g225230 +S'Landscape with Classical Ruins' +p248766 +sg225232 +S'S\xc3\xa9bastien Le Clerc I' +p248767 +sg225234 +S'etching' +p248768 +sg225236 +S'1673' +p248769 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008954.jpg' +p248770 +sg225240 +g27 +sa(dp248771 +g225230 +S'Landscape with City in Distance' +p248772 +sg225232 +S'S\xc3\xa9bastien Le Clerc I' +p248773 +sg225234 +S'etching' +p248774 +sg225236 +S'1673' +p248775 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008953.jpg' +p248776 +sg225240 +g27 +sa(dp248777 +g225230 +S'Mountain Landscape' +p248778 +sg225232 +S'S\xc3\xa9bastien Le Clerc I' +p248779 +sg225234 +S'etching' +p248780 +sg225236 +S'1673' +p248781 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000894d.jpg' +p248782 +sg225240 +g27 +sa(dp248783 +g225230 +S'Landscape with Temple Ruins and Pond' +p248784 +sg225232 +S'S\xc3\xa9bastien Le Clerc I' +p248785 +sg225234 +S'etching' +p248786 +sg225236 +S'1673' +p248787 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a000894f.jpg' +p248788 +sg225240 +g27 +sa(dp248789 +g225230 +S'Landscape with Classical Ruins' +p248790 +sg225232 +S'S\xc3\xa9bastien Le Clerc I' +p248791 +sg225234 +S'etching' +p248792 +sg225236 +S'1673' +p248793 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008950.jpg' +p248794 +sg225240 +g27 +sa(dp248795 +g225230 +S'Landscape with Monastery' +p248796 +sg225232 +S'S\xc3\xa9bastien Le Clerc I' +p248797 +sg225234 +S'etching' +p248798 +sg225236 +S'1673' +p248799 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008952.jpg' +p248800 +sg225240 +g27 +sa(dp248801 +g225230 +S'Landscape with an Army' +p248802 +sg225232 +S'S\xc3\xa9bastien Le Clerc I' +p248803 +sg225234 +S'etching' +p248804 +sg225236 +S'1673' +p248805 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a0008958.jpg' +p248806 +sg225240 +g27 +sa(dp248807 +g225230 +S'Saint Anthony of Padua' +p248808 +sg225232 +S'Giovanni Battista Mercati' +p248809 +sg225234 +S'etching' +p248810 +sg225236 +S'unknown date\n' +p248811 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca11.jpg' +p248812 +sg225240 +g27 +sa(dp248813 +g225230 +S'Marin Cureau de la Chambre' +p248814 +sg225232 +S'Robert Nanteuil' +p248815 +sg225234 +S'engraving' +p248816 +sg225236 +S'1656' +p248817 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b5b.jpg' +p248818 +sg225240 +g27 +sa(dp248819 +g225230 +S'Hercules and Antaeus' +p248820 +sg225232 +S'Giovanni Pietro Possenti' +p248821 +sg225234 +S'etching' +p248822 +sg225236 +S'unknown date\n' +p248823 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c99e.jpg' +p248824 +sg225240 +g27 +sa(dp248825 +g225230 +S'Building in Ruins at the Side of a River' +p248826 +sg225232 +S'Jan Smees' +p248827 +sg225234 +S'etching' +p248828 +sg225236 +S'unknown date\n' +p248829 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3db.jpg' +p248830 +sg225240 +g27 +sa(dp248831 +g225230 +S'Houses at the Side of a River' +p248832 +sg225232 +S'Jan Smees' +p248833 +sg225234 +S'etching' +p248834 +sg225236 +S'unknown date\n' +p248835 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3da.jpg' +p248836 +sg225240 +g27 +sa(dp248837 +g225230 +S'Ruins on a Hilltop' +p248838 +sg225232 +S'Jan Smees' +p248839 +sg225234 +S'etching' +p248840 +sg225236 +S'unknown date\n' +p248841 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3d9.jpg' +p248842 +sg225240 +g27 +sa(dp248843 +g225230 +S'Sleeping Shepherd' +p248844 +sg225232 +S'Jan Smees' +p248845 +sg225234 +S'etching' +p248846 +sg225236 +S'unknown date\n' +p248847 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3d8.jpg' +p248848 +sg225240 +g27 +sa(dp248849 +g225230 +S'Man and Ox in a River' +p248850 +sg225232 +S'Jan Smees' +p248851 +sg225234 +S'etching' +p248852 +sg225236 +S'unknown date\n' +p248853 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3dc.jpg' +p248854 +sg225240 +g27 +sa(dp248855 +g225230 +S'Louis XIII as Hercules' +p248856 +sg225232 +S'Abraham Bosse' +p248857 +sg225234 +S'engraving and etching' +p248858 +sg225236 +S'unknown date\n' +p248859 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a71.jpg' +p248860 +sg225240 +g27 +sa(dp248861 +g225230 +S'Six Heads, a Turk in Front' +p248862 +sg225232 +S'Gaetano Gandolfi' +p248863 +sg225234 +S'etching' +p248864 +sg225236 +S'unknown date\n' +p248865 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cabe.jpg' +p248866 +sg225240 +g27 +sa(dp248867 +g225230 +S'The Ford (Le passage du gu\xc3\xa9)' +p248868 +sg225232 +S'Claude Lorrain' +p248869 +sg225234 +S'etching' +p248870 +sg225236 +S'1634' +p248871 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089a8.jpg' +p248872 +sg225240 +g27 +sa(dp248873 +g225230 +S'Jan Snellinx' +p248874 +sg225232 +S'Sir Anthony van Dyck' +p248875 +sg225234 +S'etching' +p248876 +sg225236 +S'probably 1626/1641' +p248877 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0e1.jpg' +p248878 +sg225240 +g27 +sa(dp248879 +g225230 +S'Bust of a Saint' +p248880 +sg225232 +S'Gaetano Gandolfi' +p248881 +sg225234 +S'etching' +p248882 +sg225236 +S'unknown date\n' +p248883 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cabf.jpg' +p248884 +sg225240 +g27 +sa(dp248885 +g225230 +S'Old Man Meditating' +p248886 +sg225232 +S'Giovanni Domenico Tiepolo' +p248887 +sg225234 +S'etching' +p248888 +sg225236 +S'c. 1762' +p248889 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb2e.jpg' +p248890 +sg225240 +g27 +sa(dp248891 +g225232 +S'Giovanni Battista Piranesi' +p248892 +sg225240 +g27 +sg225234 +S'etching [proof before letters]' +p248893 +sg225230 +S'View of the Ruins of Paestum' +p248894 +sg225236 +S'1777/1778' +p248895 +sa(dp248896 +g225232 +S'Giovanni Battista Piranesi' +p248897 +sg225240 +g27 +sg225234 +S'etching [proof before letters]' +p248898 +sg225230 +S'View of the Ruins of Paestum' +p248899 +sg225236 +S'1777/1778' +p248900 +sa(dp248901 +g225230 +S'Astatic' +p248902 +sg225232 +S'Josef Albers' +p248903 +sg225234 +S'woodcut on japan paper [proof]' +p248904 +sg225236 +S'1944' +p248905 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a000091b.jpg' +p248906 +sg225240 +g27 +sa(dp248907 +g225230 +S'Rothko with Pipe' +p248908 +sg225232 +S'Milton Avery' +p248909 +sg225234 +S'drypoint, brown-black ink on wove paper' +p248910 +sg225236 +S'1936' +p248911 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a0c.jpg' +p248912 +sg225240 +g27 +sa(dp248913 +g225230 +S'Allegory of Virtue' +p248914 +sg225232 +S'Artist Information (' +p248915 +sg225234 +S'(artist after)' +p248916 +sg225236 +S'\n' +p248917 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c89d.jpg' +p248918 +sg225240 +g27 +sa(dp248919 +g225230 +S'A Sybil' +p248920 +sg225232 +S'Artist Information (' +p248921 +sg225234 +S'(artist after)' +p248922 +sg225236 +S'\n' +p248923 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb6c.jpg' +p248924 +sg225240 +g27 +sa(dp248925 +g225230 +S'A Headpiece in the Form of a Fan' +p248926 +sg225232 +S'Agostino Carracci' +p248927 +sg225234 +S'engraving' +p248928 +sg225236 +S'c. 1589/1595' +p248929 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb74.jpg' +p248930 +sg225240 +g27 +sa(dp248931 +g225230 +S'Young Woman and Death' +p248932 +sg225232 +S'Master F.B.' +p248933 +sg225234 +S'engraving' +p248934 +sg225236 +S'unknown date\n' +p248935 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acb5.jpg' +p248936 +sg225240 +g27 +sa(dp248937 +g225230 +S'The Family Concert (As the old sing, so the young twitter)' +p248938 +sg225232 +S'Artist Information (' +p248939 +sg225234 +S'(artist after)' +p248940 +sg225236 +S'\n' +p248941 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d601.jpg' +p248942 +sg225240 +g27 +sa(dp248943 +g225230 +S'The Family in the Room' +p248944 +sg225232 +S'Ferdinand Bol' +p248945 +sg225234 +S'etching' +p248946 +sg225236 +S'1645' +p248947 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0b2.jpg' +p248948 +sg225240 +g27 +sa(dp248949 +g225230 +S'Comment! encore une caricature sur nous...' +p248950 +sg225232 +S'Honor\xc3\xa9 Daumier' +p248951 +sg225234 +S'lithograph' +p248952 +sg225236 +S'1844' +p248953 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a000931d.jpg' +p248954 +sg225240 +g27 +sa(dp248955 +g225232 +S'Artist Information (' +p248956 +sg225240 +g27 +sg225234 +S'French, 1673 - 1722' +p248957 +sg225230 +S'Fables nouvelles' +p248958 +sg225236 +S'(artist)' +p248959 +sa(dp248960 +g225230 +S'The Holy Family' +p248961 +sg225232 +S'Rembrandt van Rijn' +p248962 +sg225234 +S'etching' +p248963 +sg225236 +S'c. 1632' +p248964 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2e4.jpg' +p248965 +sg225240 +g27 +sa(dp248966 +g225232 +S'Neapolitan 19th/20th Century' +p248967 +sg225240 +g27 +sg225234 +S'bronze' +p248968 +sg225230 +S'Paul III (Alessandro Farnese, 1468-1549), Pope 1534' +p248969 +sg225236 +S'19th/20th century' +p248970 +sa(dp248971 +g225230 +S'The Last Judgment' +p248972 +sg225232 +S'Master MF' +p248973 +sg225234 +S'woodcut' +p248974 +sg225236 +S'unknown date\n' +p248975 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8b5.jpg' +p248976 +sg225240 +g27 +sa(dp248977 +g225230 +S'Giovanni Battista Piranesi' +p248978 +sg225232 +S'Francesco Piranesi' +p248979 +sg225234 +S'etching' +p248980 +sg225236 +S'1779' +p248981 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc1b.jpg' +p248982 +sg225240 +g27 +sa(dp248983 +g225232 +S'Ferdinando Galli Bibiena' +p248984 +sg225240 +g27 +sg225234 +S', published 1711' +p248985 +sg225230 +S"L'Architettura Civile" +p248986 +sg225236 +S'\n' +p248987 +sa(dp248988 +g225230 +S'The Rt. Reverend William Lawrence' +p248989 +sg225232 +S'John Singer Sargent' +p248990 +sg225234 +S'charcoal on laid paper' +p248991 +sg225236 +S'1916' +p248992 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004fca.jpg' +p248993 +sg225240 +g27 +sa(dp248994 +g225232 +S'Walter Ernest Tittle' +p248995 +sg225240 +g27 +sg225234 +S'drypoint' +p248996 +sg225230 +S'The Earl of Balfour' +p248997 +sg225236 +S'1921' +p248998 +sa(dp248999 +g225232 +S'Walter Ernest Tittle' +p249000 +sg225240 +g27 +sg225234 +S'drypoint' +p249001 +sg225230 +S'Lord Beatty, Admiral of the Fleet' +p249002 +sg225236 +S'1921/1922' +p249003 +sa(dp249004 +g225232 +S'Walter Ernest Tittle' +p249005 +sg225240 +g27 +sg225234 +S'drypoint' +p249006 +sg225230 +S'Admiral de Bon' +p249007 +sg225236 +S'1921' +p249008 +sa(dp249009 +g225232 +S'Walter Ernest Tittle' +p249010 +sg225240 +g27 +sg225234 +S'drypoint' +p249011 +sg225230 +S'Robert Laird Borden' +p249012 +sg225236 +S'1921/1922' +p249013 +sa(dp249014 +g225232 +S'Walter Ernest Tittle' +p249015 +sg225240 +g27 +sg225234 +S'drypoint' +p249016 +sg225230 +S'Admiral Sir Erule Chatfield' +p249017 +sg225236 +S'1921/1922' +p249018 +sa(dp249019 +g225232 +S'Walter Ernest Tittle' +p249020 +sg225240 +g27 +sg225234 +S'drypoint' +p249021 +sg225230 +S'Marechal Foch' +p249022 +sg225236 +S'1921' +p249023 +sa(dp249024 +g225232 +S'Walter Ernest Tittle' +p249025 +sg225240 +g27 +sg225234 +S'drypoint' +p249026 +sg225230 +S'David Lloyd George' +p249027 +sg225236 +S'1921/1922' +p249028 +sa(dp249029 +g225232 +S'Walter Ernest Tittle' +p249030 +sg225240 +g27 +sg225234 +S'drypoint' +p249031 +sg225230 +S'Sir Maurice Hankey' +p249032 +sg225236 +S'1921/1922' +p249033 +sa(dp249034 +g225232 +S'Walter Ernest Tittle' +p249035 +sg225240 +g27 +sg225234 +S'drypoint' +p249036 +sg225230 +S'President Harding, Full Face View' +p249037 +sg225236 +S'1920' +p249038 +sa(dp249039 +g225232 +S'Walter Ernest Tittle' +p249040 +sg225240 +g27 +sg225234 +S'drypoint' +p249041 +sg225230 +S'President Harding, Profile View' +p249042 +sg225236 +S'1920' +p249043 +sa(dp249044 +g225232 +S'Walter Ernest Tittle' +p249045 +sg225240 +g27 +sg225234 +S'drypoint' +p249046 +sg225230 +S'Charles Evans Hughes' +p249047 +sg225236 +S'1921/1922' +p249048 +sa(dp249049 +g225232 +S'Walter Ernest Tittle' +p249050 +sg225240 +g27 +sg225234 +S'drypoint' +p249051 +sg225230 +S'Marechal Joffry' +p249052 +sg225236 +S'1921/1922' +p249053 +sa(dp249054 +g225232 +S'Walter Ernest Tittle' +p249055 +sg225240 +g27 +sg225234 +S'drypoint' +p249056 +sg225230 +S'Lee of Farcham' +p249057 +sg225236 +S'1921' +p249058 +sa(dp249059 +g225232 +S'Walter Ernest Tittle' +p249060 +sg225240 +g27 +sg225234 +S'drypoint' +p249061 +sg225230 +S'Baron du Cartier du Marchieme' +p249062 +sg225236 +S'1923' +p249063 +sa(dp249064 +g225232 +S'Walter Ernest Tittle' +p249065 +sg225240 +g27 +sg225234 +S'drypoint' +p249066 +sg225230 +S'Fournier Sarloves' +p249067 +sg225236 +S'1921/1922' +p249068 +sa(dp249069 +g225232 +S'Walter Ernest Tittle' +p249070 +sg225240 +g27 +sg225234 +S'drypoint' +p249071 +sg225230 +S'Carlo Schanzer' +p249072 +sg225236 +S'1921/1922' +p249073 +sa(dp249074 +g225232 +S'Walter Ernest Tittle' +p249075 +sg225240 +g27 +sg225234 +S'drypoint' +p249076 +sg225230 +S'Dr. Sze, Chinese Ambassador to the United States' +p249077 +sg225236 +S'1921/1922' +p249078 +sa(dp249079 +g225232 +S'Walter Ernest Tittle' +p249080 +sg225240 +g27 +sg225234 +S'drypoint' +p249081 +sg225230 +S'Prince Tokugawa, President of the House of Peers, Japan' +p249082 +sg225236 +S'1921' +p249083 +sa(dp249084 +g225232 +S'Walter Ernest Tittle' +p249085 +sg225240 +g27 +sg225234 +S'drypoint' +p249086 +sg225230 +S'Sitter unidentified' +p249087 +sg225236 +S'1921' +p249088 +sa(dp249089 +g225232 +S'Walter Ernest Tittle' +p249090 +sg225240 +g27 +sg225234 +S'drypoint' +p249091 +sg225230 +S'Sitter unidentified' +p249092 +sg225236 +S'1921/1922' +p249093 +sa(dp249094 +g225232 +S'Walter Ernest Tittle' +p249095 +sg225240 +g27 +sg225234 +S'drypoint' +p249096 +sg225230 +S'Sitter unidentified' +p249097 +sg225236 +S'1921/1922' +p249098 +sa(dp249099 +g225232 +S'Walter Ernest Tittle' +p249100 +sg225240 +g27 +sg225234 +S'drypoint' +p249101 +sg225230 +S'Sitter unidentified' +p249102 +sg225236 +S'1922' +p249103 +sa(dp249104 +g225230 +S'Thomas Jefferson' +p249105 +sg225232 +S"Pierre-Jean David d'Angers" +p249106 +sg225234 +S'bronze' +p249107 +sg225236 +S'model 1832-1833, cast after 1892' +p249108 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f0f.jpg' +p249109 +sg225240 +g27 +sa(dp249110 +g225230 +S'Diana of the Tower' +p249111 +sg225232 +S'Augustus Saint-Gaudens' +p249112 +sg225234 +S'bronze' +p249113 +sg225236 +S'conceived 1892/1893, cast 1899' +p249114 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a00016a3.jpg' +p249115 +sg225240 +S"Imagine this diminutive sculpture of Diana the Huntress as a rotating, 18-foot-tall, gilded weathervane atop the tower of the newly built Madison Square Garden. In collaboration with his friend, architect Stanford White (the Garden's architect), Saint-Gaudens originally designed the monumental Diana to reign over the New York skyline, a rival to Bartholdi's Liberty in New York Harbor. But Saint-Gaudens' figure proved too unwieldy to function properly (the original had metal drapery attached as a rudder) and was removed. He then designed a 13-foot version, which also failed as a weathervane and had to be bolted fast to the tower.\n Saint-Gaudens went on to make \n With her slender limbs and graceful pose, Saint-Gaudens' \n Saint-Gaudens would have seen several mythological Dianas in Paris in the 1870s, but an elongated neo-mannerist bronze Diana by \n " +p249116 +sa(dp249117 +g225230 +S'Design for a Wall Decoration [recto]' +p249118 +sg225232 +S'Jacob Jordaens' +p249119 +sg225234 +S'brush with brown and black ink and color washes, heightened with white, over black chalk on laid paper' +p249120 +sg225236 +S'1640/1645' +p249121 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00034/a0003424.jpg' +p249122 +sg225240 +g27 +sa(dp249123 +g225230 +S'Sheet of Studies with the Drunken Pan and Nymphs [verso]' +p249124 +sg225232 +S'Jacob Jordaens' +p249125 +sg225234 +S'black and red chalk on laid paper' +p249126 +sg225236 +S'unknown date\n' +p249127 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ff6c.jpg' +p249128 +sg225240 +g27 +sa(dp249129 +g225230 +S"Michael d'Aicing" +p249130 +sg225232 +S'Melchior Lorch' +p249131 +sg225234 +S'engraving' +p249132 +sg225236 +S'1565' +p249133 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000dc/a000dc49.jpg' +p249134 +sg225240 +g27 +sa(dp249135 +g225232 +S'Ernst Ludwig Kirchner' +p249136 +sg225240 +g27 +sg225234 +S'lithograph' +p249137 +sg225230 +S'Lovers in the Morning (Liebspaar am Morgen)' +p249138 +sg225236 +S'1915' +p249139 +sa(dp249140 +g225230 +S'The Poor Fisher (Le pauvre pecheur)' +p249141 +sg225232 +S'Pierre Puvis de Chavannes' +p249142 +sg225234 +S'lithograph in deep purple' +p249143 +sg225236 +S'unknown date\n' +p249144 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fe9.jpg' +p249145 +sg225240 +g27 +sa(dp249146 +g225230 +S'The Tuileries Garden (Le jardin des Tuileries)' +p249147 +sg225232 +S'Edouard Vuillard' +p249148 +sg225234 +S'color lithograph with graphite' +p249149 +sg225236 +S'published 1896' +p249150 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a064.jpg' +p249151 +sg225240 +g27 +sa(dp249152 +g225232 +S'M.C. Escher' +p249153 +sg225240 +g27 +sg225234 +S'lithograph' +p249154 +sg225230 +S'Still Life with Spherical Mirror' +p249155 +sg225236 +S'1934' +p249156 +sa(dp249157 +g225232 +S'M.C. Escher' +p249158 +sg225240 +g27 +sg225234 +S'wood engraving' +p249159 +sg225230 +S'Covered Alley in Atrani' +p249160 +sg225236 +S'1931' +p249161 +sa(dp249162 +g225232 +S'M.C. Escher' +p249163 +sg225240 +g27 +sg225234 +S'lithograph' +p249164 +sg225230 +S'Atrani' +p249165 +sg225236 +S'1931' +p249166 +sa(dp249167 +g225232 +S'M.C. Escher' +p249168 +sg225240 +g27 +sg225234 +S'lithograph' +p249169 +sg225230 +S'Castel Mola, Sicily' +p249170 +sg225236 +S'1932' +p249171 +sa(dp249172 +g225230 +S'White Cat' +p249173 +sg225232 +S'M.C. Escher' +p249174 +sg225234 +S'woodcut' +p249175 +sg225236 +S'probably 1919' +p249176 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b52.jpg' +p249177 +sg225240 +g27 +sa(dp249178 +g225232 +S'M.C. Escher' +p249179 +sg225240 +g27 +sg225234 +S'lithograph' +p249180 +sg225230 +S'Cathedral of Cefalu, Sicily' +p249181 +sg225236 +S'1932' +p249182 +sa(dp249183 +g225232 +S'M.C. Escher' +p249184 +sg225240 +g27 +sg225234 +S'woodcut' +p249185 +sg225230 +S'Seated Female Nude with Flowers' +p249186 +sg225236 +S'1920/1921' +p249187 +sa(dp249188 +g225232 +S'M.C. Escher' +p249189 +sg225240 +g27 +sg225234 +S'lithograph' +p249190 +sg225230 +S'Gulf of Porto, Corsica' +p249191 +sg225236 +S'1933' +p249192 +sa(dp249193 +g225230 +S'Hand with Fir Cone' +p249194 +sg225232 +S'M.C. Escher' +p249195 +sg225234 +S'woodcut' +p249196 +sg225236 +S'probably 1921' +p249197 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b53.jpg' +p249198 +sg225240 +g27 +sa(dp249199 +g225232 +S'M.C. Escher' +p249200 +sg225240 +g27 +sg225234 +S'lithograph' +p249201 +sg225230 +S'San Cosimo, Ravello' +p249202 +sg225236 +S'1932' +p249203 +sa(dp249204 +g225230 +S'Mount Etna near Bronte, Sicily' +p249205 +sg225232 +S'M.C. Escher' +p249206 +sg225234 +S'lithograph' +p249207 +sg225236 +S'1933' +p249208 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b37.jpg' +p249209 +sg225240 +g27 +sa(dp249210 +g225232 +S'M.C. Escher' +p249211 +sg225240 +g27 +sg225234 +S'lithograph' +p249212 +sg225230 +S'Turello, Southern Italy' +p249213 +sg225236 +S'1932' +p249214 +sa(dp249215 +g225232 +S'M.C. Escher' +p249216 +sg225240 +g27 +sg225234 +S'lithograph' +p249217 +sg225230 +S'Tropea, Calabria' +p249218 +sg225236 +S'1931' +p249219 +sa(dp249220 +g225232 +S'Josef Albers' +p249221 +sg225240 +g27 +sg225234 +S'lithograph' +p249222 +sg225230 +S'Ascension' +p249223 +sg225236 +S'1942' +p249224 +sa(dp249225 +g225232 +S'Josef Albers' +p249226 +sg225240 +g27 +sg225234 +S'lithograph' +p249227 +sg225230 +S'Interim' +p249228 +sg225236 +S'1942' +p249229 +sa(dp249230 +g225232 +S'Josef Albers' +p249231 +sg225240 +g27 +sg225234 +S'lithograph' +p249232 +sg225230 +S'Introitus' +p249233 +sg225236 +S'1942' +p249234 +sa(dp249235 +g225232 +S'Josef Albers' +p249236 +sg225240 +g27 +sg225234 +S'lithograph' +p249237 +sg225230 +S'To Monte Alban' +p249238 +sg225236 +S'1942' +p249239 +sa(dp249240 +g225232 +S'Josef Albers' +p249241 +sg225240 +g27 +sg225234 +S'lithograph' +p249242 +sg225230 +S'Prefatio' +p249243 +sg225236 +S'1942' +p249244 +sa(dp249245 +g225232 +S'Josef Albers' +p249246 +sg225240 +g27 +sg225234 +S'lithograph' +p249247 +sg225230 +S'Sanctuary' +p249248 +sg225236 +S'1942' +p249249 +sa(dp249250 +g225232 +S'Josef Albers' +p249251 +sg225240 +g27 +sg225234 +S'lithograph' +p249252 +sg225230 +S'Seclusion' +p249253 +sg225236 +S'1942' +p249254 +sa(dp249255 +g225232 +S'Josef Albers' +p249256 +sg225240 +g27 +sg225234 +S'lithograph' +p249257 +sg225230 +S'Shrine' +p249258 +sg225236 +S'1942' +p249259 +sa(dp249260 +g225230 +S'Circe' +p249261 +sg225232 +S'Artist Information (' +p249262 +sg225234 +S'Italian, 1503 - 1540' +p249263 +sg225236 +S'(artist after)' +p249264 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c792.jpg' +p249265 +sg225240 +g27 +sa(dp249266 +g225230 +S'Jupiter Nourished by the Goat Amalthea' +p249267 +sg225232 +S'Jacob Jordaens' +p249268 +sg225234 +S'etching' +p249269 +sg225236 +S'probably 1652' +p249270 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d52c.jpg' +p249271 +sg225240 +g27 +sa(dp249272 +g225230 +S'The Pilgrims' +p249273 +sg225232 +S'Gaetano Gandolfi' +p249274 +sg225234 +S'etching' +p249275 +sg225236 +S'unknown date\n' +p249276 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cac0.jpg' +p249277 +sg225240 +g27 +sa(dp249278 +g225230 +S'Lot and His Daughters Leaving Sodom' +p249279 +sg225232 +S'Artist Information (' +p249280 +sg225234 +S'(artist after)' +p249281 +sg225236 +S'\n' +p249282 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d067.jpg' +p249283 +sg225240 +g27 +sa(dp249284 +g225232 +S'Artist Information (' +p249285 +sg225240 +g27 +sg225234 +S'(artist after)' +p249286 +sg225230 +S'The Wolf Hunt' +p249287 +sg225236 +S'\n' +p249288 +sa(dp249289 +g225230 +S'Resting Cows' +p249290 +sg225232 +S'Nicolaes Pietersz Berchem' +p249291 +sg225234 +S'etching counterproof' +p249292 +sg225236 +S'unknown date\n' +p249293 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0ae.jpg' +p249294 +sg225240 +g27 +sa(dp249295 +g225230 +S'Drunken Silenus' +p249296 +sg225232 +S'Artist Information (' +p249297 +sg225234 +S'(artist after)' +p249298 +sg225236 +S'\n' +p249299 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5f9.jpg' +p249300 +sg225240 +g27 +sa(dp249301 +g225230 +S'Virgin Supporting the Dead Christ' +p249302 +sg225232 +S'Artist Information (' +p249303 +sg225234 +S'(artist after)' +p249304 +sg225236 +S'\n' +p249305 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ff9a.jpg' +p249306 +sg225240 +g27 +sa(dp249307 +g225232 +S'Artist Information (' +p249308 +sg225240 +g27 +sg225234 +S'(artist after)' +p249309 +sg225230 +S'Aeneas and His Companions Shipwrecked in a Tempest' +p249310 +sg225236 +S'\n' +p249311 +sa(dp249312 +g225232 +S'Artist Information (' +p249313 +sg225240 +g27 +sg225234 +S'(artist after)' +p249314 +sg225230 +S'The Assumption of the Virgin' +p249315 +sg225236 +S'\n' +p249316 +sa(dp249317 +g225232 +S'Artist Information (' +p249318 +sg225240 +g27 +sg225234 +S'(artist after)' +p249319 +sg225230 +S'Philemon and Baucis' +p249320 +sg225236 +S'\n' +p249321 +sa(dp249322 +g225230 +S'The Resurrection' +p249323 +sg225232 +S'Artist Information (' +p249324 +sg225234 +S'(artist after)' +p249325 +sg225236 +S'\n' +p249326 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5f3.jpg' +p249327 +sg225240 +g27 +sa(dp249328 +g225230 +S'Title Page' +p249329 +sg225232 +S'Artist Information (' +p249330 +sg225234 +S'(artist after)' +p249331 +sg225236 +S'\n' +p249332 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b290.jpg' +p249333 +sg225240 +g27 +sa(dp249334 +g225230 +S'Dedication Page' +p249335 +sg225232 +S'Artist Information (' +p249336 +sg225234 +S'(artist after)' +p249337 +sg225236 +S'\n' +p249338 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b291.jpg' +p249339 +sg225240 +g27 +sa(dp249340 +g225230 +S'Escorial, Spain' +p249341 +sg225232 +S'Artist Information (' +p249342 +sg225234 +S'(artist after)' +p249343 +sg225236 +S'\n' +p249344 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b292.jpg' +p249345 +sg225240 +g27 +sa(dp249346 +g225230 +S'Palace, Florence' +p249347 +sg225232 +S'Artist Information (' +p249348 +sg225234 +S'(artist after)' +p249349 +sg225236 +S'\n' +p249350 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b293.jpg' +p249351 +sg225240 +g27 +sa(dp249352 +g225230 +S'Borghese Palace and Gardens' +p249353 +sg225232 +S'Artist Information (' +p249354 +sg225234 +S'(artist after)' +p249355 +sg225236 +S'\n' +p249356 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b294.jpg' +p249357 +sg225240 +g27 +sa(dp249358 +g225230 +S'Piazza di Spagna, Naples' +p249359 +sg225232 +S'Artist Information (' +p249360 +sg225234 +S'(artist after)' +p249361 +sg225236 +S'\n' +p249362 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b295.jpg' +p249363 +sg225240 +g27 +sa(dp249364 +g225230 +S'Villa Aquaviva' +p249365 +sg225232 +S'Artist Information (' +p249366 +sg225234 +S'(artist after)' +p249367 +sg225236 +S'\n' +p249368 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b296.jpg' +p249369 +sg225240 +g27 +sa(dp249370 +g225230 +S'Gardens of Prince Mattei, Rome' +p249371 +sg225232 +S'Artist Information (' +p249372 +sg225234 +S'(artist after)' +p249373 +sg225236 +S'\n' +p249374 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b297.jpg' +p249375 +sg225240 +g27 +sa(dp249376 +g225230 +S'Statues of Mercury and Flora, Gardens of Dukedi Sora, Frascati' +p249377 +sg225232 +S'Artist Information (' +p249378 +sg225234 +S'(artist after)' +p249379 +sg225236 +S'\n' +p249380 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b298.jpg' +p249381 +sg225240 +g27 +sa(dp249382 +g225230 +S'Grotto, Monta Tragone' +p249383 +sg225232 +S'Artist Information (' +p249384 +sg225234 +S'(artist after)' +p249385 +sg225236 +S'\n' +p249386 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b299.jpg' +p249387 +sg225240 +g27 +sa(dp249388 +g225230 +S'Balpoggio, Villa of Duke di Ceri' +p249389 +sg225232 +S'Artist Information (' +p249390 +sg225234 +S'(artist after)' +p249391 +sg225236 +S'\n' +p249392 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b29a.jpg' +p249393 +sg225240 +g27 +sa(dp249394 +g225230 +S'Palace and Canal, Cardinal di Ferrara, Tivoli' +p249395 +sg225232 +S'Artist Information (' +p249396 +sg225234 +S'(artist after)' +p249397 +sg225236 +S'\n' +p249398 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b29b.jpg' +p249399 +sg225240 +g27 +sa(dp249400 +g225230 +S"Garden, Duke d'Altems" +p249401 +sg225232 +S'Artist Information (' +p249402 +sg225234 +S'(artist after)' +p249403 +sg225236 +S'\n' +p249404 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b29c.jpg' +p249405 +sg225240 +g27 +sa(dp249406 +g225230 +S'Gardens of Cardinal Aldobrandini, Frascati' +p249407 +sg225232 +S'Artist Information (' +p249408 +sg225234 +S'(artist after)' +p249409 +sg225236 +S'\n' +p249410 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b29d.jpg' +p249411 +sg225240 +g27 +sa(dp249412 +g225230 +S'Capitoline, Rome' +p249413 +sg225232 +S'Artist Information (' +p249414 +sg225234 +S'(artist after)' +p249415 +sg225236 +S'\n' +p249416 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b29e.jpg' +p249417 +sg225240 +g27 +sa(dp249418 +g225230 +S"Gardens, Duke d'Altems" +p249419 +sg225232 +S'Artist Information (' +p249420 +sg225234 +S'(artist after)' +p249421 +sg225236 +S'\n' +p249422 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2da.jpg' +p249423 +sg225240 +g27 +sa(dp249424 +g225230 +S'Capitoline, Rome' +p249425 +sg225232 +S'Artist Information (' +p249426 +sg225234 +S'(artist after)' +p249427 +sg225236 +S'\n' +p249428 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2db.jpg' +p249429 +sg225240 +g27 +sa(dp249430 +g225230 +S'Gardens of Cardinal Coessi, Rome' +p249431 +sg225232 +S'Artist Information (' +p249432 +sg225234 +S'(artist after)' +p249433 +sg225236 +S'\n' +p249434 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2dc.jpg' +p249435 +sg225240 +g27 +sa(dp249436 +g225230 +S'Gardens, Cardinal Deti, Frascati' +p249437 +sg225232 +S'Artist Information (' +p249438 +sg225234 +S'(artist after)' +p249439 +sg225236 +S'\n' +p249440 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2dd.jpg' +p249441 +sg225240 +g27 +sa(dp249442 +g225230 +S'Palace, Vice Re, Naples' +p249443 +sg225232 +S'Artist Information (' +p249444 +sg225234 +S'(artist after)' +p249445 +sg225236 +S'\n' +p249446 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2de.jpg' +p249447 +sg225240 +g27 +sa(dp249448 +g225230 +S'Ships, Fondamenti Novi, Naples' +p249449 +sg225232 +S'Artist Information (' +p249450 +sg225234 +S'(artist after)' +p249451 +sg225236 +S'\n' +p249452 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2f0.jpg' +p249453 +sg225240 +g27 +sa(dp249454 +g225230 +S'Palaces, Venice' +p249455 +sg225232 +S'Artist Information (' +p249456 +sg225234 +S'(artist after)' +p249457 +sg225236 +S'\n' +p249458 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2ef.jpg' +p249459 +sg225240 +g27 +sa(dp249460 +g225230 +S'View of Gulf of Naples' +p249461 +sg225232 +S'Artist Information (' +p249462 +sg225234 +S'(artist after)' +p249463 +sg225236 +S'\n' +p249464 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2df.jpg' +p249465 +sg225240 +g27 +sa(dp249466 +g225230 +S'View of Gulf of Naples' +p249467 +sg225232 +S'Artist Information (' +p249468 +sg225234 +S'(artist after)' +p249469 +sg225236 +S'\n' +p249470 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2e0.jpg' +p249471 +sg225240 +g27 +sa(dp249472 +g225230 +S'Palazzo Spinolla, Genoa' +p249473 +sg225232 +S'Artist Information (' +p249474 +sg225234 +S'(artist after)' +p249475 +sg225236 +S'\n' +p249476 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2e1.jpg' +p249477 +sg225240 +g27 +sa(dp249478 +g225230 +S'Palazzo di Spagna, Naples' +p249479 +sg225232 +S'Artist Information (' +p249480 +sg225234 +S'(artist after)' +p249481 +sg225236 +S'\n' +p249482 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2e2.jpg' +p249483 +sg225240 +g27 +sa(dp249484 +g225230 +S'Palazzo Villamena, Genoa' +p249485 +sg225232 +S'Artist Information (' +p249486 +sg225234 +S'(artist after)' +p249487 +sg225236 +S'\n' +p249488 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2ee.jpg' +p249489 +sg225240 +g27 +sa(dp249490 +g225230 +S'Palazzo of Count Widman' +p249491 +sg225232 +S'Artist Information (' +p249492 +sg225234 +S'(artist after)' +p249493 +sg225236 +S'\n' +p249494 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2ed.jpg' +p249495 +sg225240 +g27 +sa(dp249496 +g225230 +S'View of Meers' +p249497 +sg225232 +S'Artist Information (' +p249498 +sg225234 +S'(artist after)' +p249499 +sg225236 +S'\n' +p249500 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2ec.jpg' +p249501 +sg225240 +g27 +sa(dp249502 +g225230 +S'Ships' +p249503 +sg225232 +S'Artist Information (' +p249504 +sg225234 +S'(artist after)' +p249505 +sg225236 +S'\n' +p249506 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2eb.jpg' +p249507 +sg225240 +g27 +sa(dp249508 +g225230 +S'View of a Waterfall, Austria' +p249509 +sg225232 +S'Artist Information (' +p249510 +sg225234 +S'(artist after)' +p249511 +sg225236 +S'\n' +p249512 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2fb.jpg' +p249513 +sg225240 +g27 +sa(dp249514 +g225230 +S'View in Istria' +p249515 +sg225232 +S'Artist Information (' +p249516 +sg225234 +S'(artist after)' +p249517 +sg225236 +S'\n' +p249518 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2fa.jpg' +p249519 +sg225240 +g27 +sa(dp249520 +g225230 +S'Istria, Carnero Gulf' +p249521 +sg225232 +S'Artist Information (' +p249522 +sg225234 +S'(artist after)' +p249523 +sg225236 +S'\n' +p249524 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2f9.jpg' +p249525 +sg225240 +g27 +sa(dp249526 +g225230 +S'Mountain View' +p249527 +sg225232 +S'Artist Information (' +p249528 +sg225234 +S'(artist after)' +p249529 +sg225236 +S'\n' +p249530 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2f8.jpg' +p249531 +sg225240 +g27 +sa(dp249532 +g225230 +S'Large Waterfall, Schwanburg' +p249533 +sg225232 +S'Artist Information (' +p249534 +sg225234 +S'(artist after)' +p249535 +sg225236 +S'\n' +p249536 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2f7.jpg' +p249537 +sg225240 +g27 +sa(dp249538 +g225230 +S'Waterfall' +p249539 +sg225232 +S'Artist Information (' +p249540 +sg225234 +S'(artist after)' +p249541 +sg225236 +S'\n' +p249542 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2f6.jpg' +p249543 +sg225240 +g27 +sa(dp249544 +g225230 +S'Waterfall' +p249545 +sg225232 +S'Artist Information (' +p249546 +sg225234 +S'(artist after)' +p249547 +sg225236 +S'\n' +p249548 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2f5.jpg' +p249549 +sg225240 +g27 +sa(dp249550 +g225230 +S'Draun River' +p249551 +sg225232 +S'Artist Information (' +p249552 +sg225234 +S'(artist after)' +p249553 +sg225236 +S'\n' +p249554 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2f4.jpg' +p249555 +sg225240 +g27 +sa(dp249556 +g225230 +S'Tyrolean Landscape' +p249557 +sg225232 +S'Artist Information (' +p249558 +sg225234 +S'(artist after)' +p249559 +sg225236 +S'\n' +p249560 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2e3.jpg' +p249561 +sg225240 +g27 +sa(dp249562 +g225230 +S'View in Stairmarck' +p249563 +sg225232 +S'Artist Information (' +p249564 +sg225234 +S'(artist after)' +p249565 +sg225236 +S'\n' +p249566 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2f3.jpg' +p249567 +sg225240 +g27 +sa(dp249568 +g225230 +S'Mountain View, Clagenfurt' +p249569 +sg225232 +S'Artist Information (' +p249570 +sg225234 +S'(artist after)' +p249571 +sg225236 +S'\n' +p249572 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2f2.jpg' +p249573 +sg225240 +g27 +sa(dp249574 +g225230 +S'City View' +p249575 +sg225232 +S'Artist Information (' +p249576 +sg225234 +S'(artist after)' +p249577 +sg225236 +S'\n' +p249578 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2f1.jpg' +p249579 +sg225240 +g27 +sa(dp249580 +g225230 +S'Saint Bruno' +p249581 +sg225232 +S'Claude Mellan' +p249582 +sg225234 +S'engraving' +p249583 +sg225236 +S'unknown date\n' +p249584 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006763.jpg' +p249585 +sg225240 +g27 +sa(dp249586 +g225232 +S'Artist Information (' +p249587 +sg225240 +g27 +sg225234 +S'(artist after)' +p249588 +sg225230 +S'The Massacre of the Innocents' +p249589 +sg225236 +S'\n' +p249590 +sa(dp249591 +g225232 +S'Artist Information (' +p249592 +sg225240 +g27 +sg225234 +S'(artist after)' +p249593 +sg225230 +S'The Nativity' +p249594 +sg225236 +S'\n' +p249595 +sa(dp249596 +g225232 +S'Artist Information (' +p249597 +sg225240 +g27 +sg225234 +S'(artist after)' +p249598 +sg225230 +S'Samson Betrayed by Delilah' +p249599 +sg225236 +S'\n' +p249600 +sa(dp249601 +g225230 +S'Erichthonius in His Basket' +p249602 +sg225232 +S'Artist Information (' +p249603 +sg225234 +S'(artist after)' +p249604 +sg225236 +S'\n' +p249605 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d626.jpg' +p249606 +sg225240 +g27 +sa(dp249607 +g225230 +S'Drunkenness of Bacchus' +p249608 +sg225232 +S'Artist Information (' +p249609 +sg225234 +S'(artist after)' +p249610 +sg225236 +S'\n' +p249611 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d57f.jpg' +p249612 +sg225240 +g27 +sa(dp249613 +g225230 +S'Achilles at the Court of Lycomedes' +p249614 +sg225232 +S'Artist Information (' +p249615 +sg225234 +S'(artist after)' +p249616 +sg225236 +S'\n' +p249617 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d631.jpg' +p249618 +sg225240 +g27 +sa(dp249619 +g225230 +S'Madame V. Sleeping' +p249620 +sg225232 +S'Edouard Vuillard' +p249621 +sg225234 +S'brush and black ink' +p249622 +sg225236 +S'c. 1892' +p249623 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00055/a0005508.jpg' +p249624 +sg225240 +g27 +sa(dp249625 +g225230 +S'Coasting Trade Vessels, Italy' +p249626 +sg225232 +S'Adolphe Appian' +p249627 +sg225234 +S'etching' +p249628 +sg225236 +S'1874' +p249629 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00090/a0009023.jpg' +p249630 +sg225240 +g27 +sa(dp249631 +g225230 +S'Bords du lac du Bourget' +p249632 +sg225232 +S'Adolphe Appian' +p249633 +sg225234 +S'etching' +p249634 +sg225236 +S'1866' +p249635 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00097/a0009759.jpg' +p249636 +sg225240 +g27 +sa(dp249637 +g225230 +S'Mercury Lulling Argus to Sleep' +p249638 +sg225232 +S'Moyses van Uyttenbroeck' +p249639 +sg225234 +S'etching' +p249640 +sg225236 +S'unknown date\n' +p249641 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d457.jpg' +p249642 +sg225240 +g27 +sa(dp249643 +g225230 +S'Sir John Wildman' +p249644 +sg225232 +S'Wenceslaus Hollar' +p249645 +sg225234 +S'etching' +p249646 +sg225236 +S'unknown date\n' +p249647 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8a5.jpg' +p249648 +sg225240 +g27 +sa(dp249649 +g225232 +S'Paul Drury' +p249650 +sg225240 +g27 +sg225234 +S'etching on laid paper' +p249651 +sg225230 +S"Nicol's Farm" +p249652 +sg225236 +S'1925' +p249653 +sa(dp249654 +g225230 +S'Sellenger' +p249655 +sg225232 +S'F.L. Griggs' +p249656 +sg225234 +S'etching on laid paper' +p249657 +sg225236 +S'1917/1922' +p249658 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006705.jpg' +p249659 +sg225240 +g27 +sa(dp249660 +g225230 +S'Cephalus and Procris' +p249661 +sg225232 +S'Hieronymus Cock' +p249662 +sg225234 +S'etching' +p249663 +sg225236 +S'1558' +p249664 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf2b.jpg' +p249665 +sg225240 +g27 +sa(dp249666 +g225230 +S'Une moria a Bordiquier (Italie)' +p249667 +sg225232 +S'Adolphe Appian' +p249668 +sg225234 +S'etching' +p249669 +sg225236 +S'1873' +p249670 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00090/a000902b.jpg' +p249671 +sg225240 +g27 +sa(dp249672 +g225230 +S'Landscape' +p249673 +sg225232 +S'Adolphe Appian' +p249674 +sg225234 +S'etching' +p249675 +sg225236 +S'1870' +p249676 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00090/a000902a.jpg' +p249677 +sg225240 +g27 +sa(dp249678 +g225230 +S'Signore Sebastiano Conca, Pittore Napoletano' +p249679 +sg225232 +S'Pier Leone Ghezzi' +p249680 +sg225234 +S'pen and brown ink over black chalk on laid paper mounted on album page' +p249681 +sg225236 +S'1734/1755' +p249682 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e61.jpg' +p249683 +sg225240 +g27 +sa(dp249684 +g225230 +S'Landscape with Ruins' +p249685 +sg225232 +S'Marco Ricci' +p249686 +sg225234 +S'etching' +p249687 +sg225236 +S'unknown date\n' +p249688 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb5e.jpg' +p249689 +sg225240 +g27 +sa(dp249690 +g225230 +S'Landscape with Classical Ruins' +p249691 +sg225232 +S'Marco Ricci' +p249692 +sg225234 +S'etching' +p249693 +sg225236 +S'1720s' +p249694 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb5a.jpg' +p249695 +sg225240 +g27 +sa(dp249696 +g225230 +S'Figure Leading a Horse' +p249697 +sg225232 +S'Stefano Della Bella' +p249698 +sg225234 +S'pen and brown ink over graphite with gray gouache on laid paper' +p249699 +sg225236 +S'unknown date\n' +p249700 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a000746f.jpg' +p249701 +sg225240 +g27 +sa(dp249702 +g225230 +S"Saint Joseph's Dream" +p249703 +sg225232 +S'S\xc3\xa9bastien Bourdon' +p249704 +sg225234 +S'etching' +p249705 +sg225236 +S'unknown date\n' +p249706 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a83.jpg' +p249707 +sg225240 +g27 +sa(dp249708 +g225230 +S"Saint Joseph Listening to the Angel's Counsel" +p249709 +sg225232 +S'S\xc3\xa9bastien Bourdon' +p249710 +sg225234 +S'etching' +p249711 +sg225236 +S'unknown date\n' +p249712 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a84.jpg' +p249713 +sg225240 +g27 +sa(dp249714 +g225230 +S'The Flight into Egypt' +p249715 +sg225232 +S'S\xc3\xa9bastien Bourdon' +p249716 +sg225234 +S'etching' +p249717 +sg225236 +S'unknown date\n' +p249718 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a82.jpg' +p249719 +sg225240 +g27 +sa(dp249720 +g225230 +S'The Holy Family Preparing to Embark' +p249721 +sg225232 +S'S\xc3\xa9bastien Bourdon' +p249722 +sg225234 +S'etching' +p249723 +sg225236 +S'unknown date\n' +p249724 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a87.jpg' +p249725 +sg225240 +g27 +sa(dp249726 +g225230 +S'The Return from Egypt' +p249727 +sg225232 +S'S\xc3\xa9bastien Bourdon' +p249728 +sg225234 +S'etching' +p249729 +sg225236 +S'unknown date\n' +p249730 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a86.jpg' +p249731 +sg225240 +g27 +sa(dp249732 +g225230 +S'The Rest on the Flight into Egypt' +p249733 +sg225232 +S'S\xc3\xa9bastien Bourdon' +p249734 +sg225234 +S'etching (counterproof)' +p249735 +sg225236 +S'unknown date\n' +p249736 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a85.jpg' +p249737 +sg225240 +g27 +sa(dp249738 +g225230 +S"The Vision (L'apparition)" +p249739 +sg225232 +S'Claude Lorrain' +p249740 +sg225234 +S'etching with drypoint' +p249741 +sg225236 +S'c. 1630' +p249742 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089a5.jpg' +p249743 +sg225240 +g27 +sa(dp249744 +g225230 +S'Atlanta and Meleager Hunting the Boar of Calydon' +p249745 +sg225232 +S'Jean Lepautre' +p249746 +sg225234 +S'etching with engraving' +p249747 +sg225236 +S'unknown date\n' +p249748 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b35.jpg' +p249749 +sg225240 +g27 +sa(dp249750 +g225230 +S'A Stag Hunt' +p249751 +sg225232 +S'Jean Lepautre' +p249752 +sg225234 +S'etching and engraving' +p249753 +sg225236 +S'unknown date\n' +p249754 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b37.jpg' +p249755 +sg225240 +g27 +sa(dp249756 +g225230 +S'The Flaying of Marsyas' +p249757 +sg225232 +S'Henri Mauperche' +p249758 +sg225234 +S'etching' +p249759 +sg225236 +S'unknown date\n' +p249760 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b3f.jpg' +p249761 +sg225240 +g27 +sa(dp249762 +g225230 +S'The Moles (Les taupes)' +p249763 +sg225232 +S'F\xc3\xa9lix Bracquemond' +p249764 +sg225234 +S'etching with some stipple' +p249765 +sg225236 +S'1854' +p249766 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d7b.jpg' +p249767 +sg225240 +g27 +sa(dp249768 +g225230 +S'The Milliner (La modiste)' +p249769 +sg225232 +S'Norbert Goeneutte' +p249770 +sg225234 +S'etching and drypoint' +p249771 +sg225236 +S'unknown date\n' +p249772 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a5f.jpg' +p249773 +sg225240 +g27 +sa(dp249774 +g225230 +S'Aux environs de Paris' +p249775 +sg225232 +S'Maxime Lalanne' +p249776 +sg225234 +S'etching' +p249777 +sg225236 +S'unknown date\n' +p249778 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009b0b.jpg' +p249779 +sg225240 +g27 +sa(dp249780 +g225230 +S'Pond in the Tuileries (Le bassin des Tuileries)' +p249781 +sg225232 +S'Auguste Lep\xc3\xa8re' +p249782 +sg225234 +S'chiaroscuro woodcut' +p249783 +sg225236 +S'1898' +p249784 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cf1.jpg' +p249785 +sg225240 +g27 +sa(dp249786 +g225230 +S'Aux Environs de Menton' +p249787 +sg225232 +S'Adolphe Appian' +p249788 +sg225234 +S'etching' +p249789 +sg225236 +S'unknown date\n' +p249790 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00090/a0009020.jpg' +p249791 +sg225240 +g27 +sa(dp249792 +g225230 +S'Barque de pecheurs faisant escale dans les rochers de Collioure' +p249793 +sg225232 +S'Adolphe Appian' +p249794 +sg225234 +S'etching' +p249795 +sg225236 +S'unknown date\n' +p249796 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00090/a0009029.jpg' +p249797 +sg225240 +g27 +sa(dp249798 +g225230 +S"Cabanes de pecheurs sur les cotes d'Italie" +p249799 +sg225232 +S'Adolphe Appian' +p249800 +sg225234 +S'etching' +p249801 +sg225236 +S'unknown date\n' +p249802 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00090/a0009021.jpg' +p249803 +sg225240 +g27 +sa(dp249804 +g225230 +S'Canal aux Martiques' +p249805 +sg225232 +S'Adolphe Appian' +p249806 +sg225234 +S'etching' +p249807 +sg225236 +S'unknown date\n' +p249808 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00090/a0009022.jpg' +p249809 +sg225240 +g27 +sa(dp249810 +g225230 +S'Barques de Cabotage' +p249811 +sg225232 +S'Adolphe Appian' +p249812 +sg225234 +S'etching' +p249813 +sg225236 +S'unknown date\n' +p249814 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00090/a0009024.jpg' +p249815 +sg225240 +g27 +sa(dp249816 +g225230 +S'Barques de Cabotage' +p249817 +sg225232 +S'Adolphe Appian' +p249818 +sg225234 +S'etching' +p249819 +sg225236 +S'unknown date\n' +p249820 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00090/a0009025.jpg' +p249821 +sg225240 +g27 +sa(dp249822 +g225230 +S"Un Jour d'automne a Artemare" +p249823 +sg225232 +S'Adolphe Appian' +p249824 +sg225234 +S'etching' +p249825 +sg225236 +S'unknown date\n' +p249826 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00090/a0009026.jpg' +p249827 +sg225240 +g27 +sa(dp249828 +g225230 +S'Marais de la Burbanche' +p249829 +sg225232 +S'Adolphe Appian' +p249830 +sg225234 +S'etching' +p249831 +sg225236 +S'unknown date\n' +p249832 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00090/a000901f.jpg' +p249833 +sg225240 +g27 +sa(dp249834 +g225230 +S'A Gorge de Loup' +p249835 +sg225232 +S'Adolphe Appian' +p249836 +sg225234 +S'etching' +p249837 +sg225236 +S'unknown date\n' +p249838 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00097/a000975d.jpg' +p249839 +sg225240 +g27 +sa(dp249840 +g225230 +S'A Gorge de Loup' +p249841 +sg225232 +S'Adolphe Appian' +p249842 +sg225234 +S'etching' +p249843 +sg225236 +S'1863' +p249844 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00090/a000901d.jpg' +p249845 +sg225240 +g27 +sa(dp249846 +g225230 +S'Chemin des Roches' +p249847 +sg225232 +S'Adolphe Appian' +p249848 +sg225234 +S'etching' +p249849 +sg225236 +S'unknown date\n' +p249850 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00090/a000901e.jpg' +p249851 +sg225240 +g27 +sa(dp249852 +g225230 +S'Les Soldats Romains Combattent Contre Les Daces' +p249853 +sg225232 +S'Nicolaus Beatrizet' +p249854 +sg225234 +S'engraving' +p249855 +sg225236 +S'1553' +p249856 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a00084c3.jpg' +p249857 +sg225240 +g27 +sa(dp249858 +g225230 +S'Cerf Dix-Cors' +p249859 +sg225232 +S'Karl Bodmer' +p249860 +sg225234 +S'lithograph' +p249861 +sg225236 +S'unknown date\n' +p249862 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000efd7.jpg' +p249863 +sg225240 +g27 +sa(dp249864 +g225230 +S"A l'abri du givre" +p249865 +sg225232 +S'Karl Bodmer' +p249866 +sg225234 +S'lithograph' +p249867 +sg225236 +S'unknown date\n' +p249868 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eefb.jpg' +p249869 +sg225240 +g27 +sa(dp249870 +g225230 +S'Faisans' +p249871 +sg225232 +S'Karl Bodmer' +p249872 +sg225234 +S'chiaroscuro lithograph' +p249873 +sg225236 +S'unknown date\n' +p249874 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000efd8.jpg' +p249875 +sg225240 +g27 +sa(dp249876 +g225230 +S'Cerfs au Gagnage' +p249877 +sg225232 +S'Karl Bodmer' +p249878 +sg225234 +S'chiaroscuro lithograph' +p249879 +sg225236 +S'unknown date\n' +p249880 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000efd9.jpg' +p249881 +sg225240 +g27 +sa(dp249882 +g225230 +S'Marcassins' +p249883 +sg225232 +S'Karl Bodmer' +p249884 +sg225234 +S'chiaroscuro lithograph' +p249885 +sg225236 +S'unknown date\n' +p249886 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000efda.jpg' +p249887 +sg225240 +g27 +sa(dp249888 +g225230 +S'Le Matin. Cerf et Biches' +p249889 +sg225232 +S'Karl Bodmer' +p249890 +sg225234 +S'chiaroscuro lithograph' +p249891 +sg225236 +S'unknown date\n' +p249892 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000efd3.jpg' +p249893 +sg225240 +g27 +sa(dp249894 +g225230 +S'Le Soir. Cerf et Herons' +p249895 +sg225232 +S'Karl Bodmer' +p249896 +sg225234 +S'chiaroscuro lithograph' +p249897 +sg225236 +S'unknown date\n' +p249898 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000efd4.jpg' +p249899 +sg225240 +g27 +sa(dp249900 +g225230 +S'Canards Sauvages' +p249901 +sg225232 +S'Karl Bodmer' +p249902 +sg225234 +S'chiaroscuro lithograph' +p249903 +sg225236 +S'unknown date\n' +p249904 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000efd5.jpg' +p249905 +sg225240 +g27 +sa(dp249906 +g225230 +S'Un Coin de Jardin' +p249907 +sg225232 +S'Karl Bodmer' +p249908 +sg225234 +S'lithograph' +p249909 +sg225236 +S'unknown date\n' +p249910 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000efd0.jpg' +p249911 +sg225240 +g27 +sa(dp249912 +g225230 +S'Biche et Faon' +p249913 +sg225232 +S'Karl Bodmer' +p249914 +sg225234 +S'lithograph' +p249915 +sg225236 +S'unknown date\n' +p249916 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000efd6.jpg' +p249917 +sg225240 +g27 +sa(dp249918 +g225232 +S'Karl Bodmer' +p249919 +sg225240 +g27 +sg225234 +S'lithograph' +p249920 +sg225230 +S'Au Bas Breau. Foret de Fontainebleau' +p249921 +sg225236 +S'unknown date\n' +p249922 +sa(dp249923 +g225232 +S'Karl Bodmer' +p249924 +sg225240 +g27 +sg225234 +S'lithograph' +p249925 +sg225230 +S'Cerfs, Biche et Faons dans la Foret' +p249926 +sg225236 +S'unknown date\n' +p249927 +sa(dp249928 +g225230 +S'Oies sauvages' +p249929 +sg225232 +S'Karl Bodmer' +p249930 +sg225234 +S'lithograph' +p249931 +sg225236 +S'unknown date\n' +p249932 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eefd.jpg' +p249933 +sg225240 +g27 +sa(dp249934 +g225230 +S"Renard \xc3\xa0 l'aff\xc3\xbbt" +p249935 +sg225232 +S'Karl Bodmer' +p249936 +sg225234 +S'lithograph' +p249937 +sg225236 +S'unknown date\n' +p249938 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eefe.jpg' +p249939 +sg225240 +g27 +sa(dp249940 +g225230 +S'Int\xc3\xa9rieur de For\xc3\xaat' +p249941 +sg225232 +S'Karl Bodmer' +p249942 +sg225234 +S'lithograph' +p249943 +sg225236 +S'unknown date\n' +p249944 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef01.jpg' +p249945 +sg225240 +g27 +sa(dp249946 +g225230 +S'Escargots et papillons' +p249947 +sg225232 +S'Karl Bodmer' +p249948 +sg225234 +S'etching' +p249949 +sg225236 +S'unknown date\n' +p249950 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eef9.jpg' +p249951 +sg225240 +g27 +sa(dp249952 +g225230 +S'Retour au Bercail' +p249953 +sg225232 +S'Karl Bodmer' +p249954 +sg225234 +S'etching' +p249955 +sg225236 +S'unknown date\n' +p249956 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eefc.jpg' +p249957 +sg225240 +g27 +sa(dp249958 +g225230 +S'For\xc3\xaat de Fontainebleau' +p249959 +sg225232 +S'Karl Bodmer' +p249960 +sg225234 +S'etching' +p249961 +sg225236 +S'unknown date\n' +p249962 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eeff.jpg' +p249963 +sg225240 +g27 +sa(dp249964 +g225230 +S'Canards Sauvages' +p249965 +sg225232 +S'Karl Bodmer' +p249966 +sg225234 +S'etching' +p249967 +sg225236 +S'unknown date\n' +p249968 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eef8.jpg' +p249969 +sg225240 +g27 +sa(dp249970 +g225230 +S'Canards Sauvages' +p249971 +sg225232 +S'Karl Bodmer' +p249972 +sg225234 +S'lithograph' +p249973 +sg225236 +S'unknown date\n' +p249974 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef00.jpg' +p249975 +sg225240 +g27 +sa(dp249976 +g225230 +S'Les Faisans' +p249977 +sg225232 +S'Karl Bodmer' +p249978 +sg225234 +S'etching' +p249979 +sg225236 +S'unknown date\n' +p249980 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eef7.jpg' +p249981 +sg225240 +g27 +sa(dp249982 +g225230 +S'Les Faisans' +p249983 +sg225232 +S'Karl Bodmer' +p249984 +sg225234 +S'lithograph' +p249985 +sg225236 +S'unknown date\n' +p249986 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef0d.jpg' +p249987 +sg225240 +g27 +sa(dp249988 +g225230 +S'Les ours' +p249989 +sg225232 +S'Karl Bodmer' +p249990 +sg225234 +S'etching' +p249991 +sg225236 +S'unknown date\n' +p249992 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef0a.jpg' +p249993 +sg225240 +g27 +sa(dp249994 +g225230 +S'Les ours' +p249995 +sg225232 +S'Karl Bodmer' +p249996 +sg225234 +S'etching' +p249997 +sg225236 +S'unknown date\n' +p249998 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef09.jpg' +p249999 +sg225240 +g27 +sa(dp250000 +g225230 +S'Deux Ours' +p250001 +sg225232 +S'Karl Bodmer' +p250002 +sg225234 +S'etching' +p250003 +sg225236 +S'unknown date\n' +p250004 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef08.jpg' +p250005 +sg225240 +g27 +sa(dp250006 +g225230 +S'Canards' +p250007 +sg225232 +S'Karl Bodmer' +p250008 +sg225234 +S'lithograph' +p250009 +sg225236 +S'unknown date\n' +p250010 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef04.jpg' +p250011 +sg225240 +g27 +sa(dp250012 +g225230 +S'Canards Sauvages' +p250013 +sg225232 +S'Karl Bodmer' +p250014 +sg225234 +S'lithograph' +p250015 +sg225236 +S'unknown date\n' +p250016 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef0c.jpg' +p250017 +sg225240 +g27 +sa(dp250018 +g225230 +S'Biches au repos' +p250019 +sg225232 +S'Karl Bodmer' +p250020 +sg225234 +S'lithograph' +p250021 +sg225236 +S'unknown date\n' +p250022 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef05.jpg' +p250023 +sg225240 +g27 +sa(dp250024 +g225230 +S'Biches au repos' +p250025 +sg225232 +S'Karl Bodmer' +p250026 +sg225234 +S'lithograph' +p250027 +sg225236 +S'unknown date\n' +p250028 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef07.jpg' +p250029 +sg225240 +g27 +sa(dp250030 +g225230 +S"Au bord de l'eau" +p250031 +sg225232 +S'Karl Bodmer' +p250032 +sg225234 +S'lithograph' +p250033 +sg225236 +S'unknown date\n' +p250034 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef0e.jpg' +p250035 +sg225240 +g27 +sa(dp250036 +g225230 +S'Les biches' +p250037 +sg225232 +S'Karl Bodmer' +p250038 +sg225234 +S'lithograph' +p250039 +sg225236 +S'unknown date\n' +p250040 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef0f.jpg' +p250041 +sg225240 +g27 +sa(dp250042 +g225230 +S'Oies bernacles' +p250043 +sg225232 +S'Karl Bodmer' +p250044 +sg225234 +S'etching' +p250045 +sg225236 +S'unknown date\n' +p250046 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef10.jpg' +p250047 +sg225240 +g27 +sa(dp250048 +g225230 +S'Herons' +p250049 +sg225232 +S'Karl Bodmer' +p250050 +sg225234 +S'etching' +p250051 +sg225236 +S'unknown date\n' +p250052 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef11.jpg' +p250053 +sg225240 +g27 +sa(dp250054 +g225230 +S'Le Repos' +p250055 +sg225232 +S'Karl Bodmer' +p250056 +sg225234 +S'lithograph' +p250057 +sg225236 +S'unknown date\n' +p250058 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef12.jpg' +p250059 +sg225240 +g27 +sa(dp250060 +g225230 +S'Pigeon' +p250061 +sg225232 +S'Karl Bodmer' +p250062 +sg225234 +S'lithograph' +p250063 +sg225236 +S'unknown date\n' +p250064 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef13.jpg' +p250065 +sg225240 +g27 +sa(dp250066 +g225230 +S'Pigeon sur un nid' +p250067 +sg225232 +S'Karl Bodmer' +p250068 +sg225234 +S'etching' +p250069 +sg225236 +S'unknown date\n' +p250070 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef14.jpg' +p250071 +sg225240 +g27 +sa(dp250072 +g225230 +S'Daims dans un Parc' +p250073 +sg225232 +S'Karl Bodmer' +p250074 +sg225234 +S'etching' +p250075 +sg225236 +S'unknown date\n' +p250076 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef15.jpg' +p250077 +sg225240 +g27 +sa(dp250078 +g225230 +S'Une biche' +p250079 +sg225232 +S'Karl Bodmer' +p250080 +sg225234 +S'etching' +p250081 +sg225236 +S'unknown date\n' +p250082 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef16.jpg' +p250083 +sg225240 +g27 +sa(dp250084 +g225230 +S'Etudes' +p250085 +sg225232 +S'Karl Bodmer' +p250086 +sg225234 +S'lithograph' +p250087 +sg225236 +S'unknown date\n' +p250088 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef1f.jpg' +p250089 +sg225240 +g27 +sa(dp250090 +g225230 +S'Oies, Cygnes, herons' +p250091 +sg225232 +S'Karl Bodmer' +p250092 +sg225234 +S'lithograph' +p250093 +sg225236 +S'unknown date\n' +p250094 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef17.jpg' +p250095 +sg225240 +g27 +sa(dp250096 +g225230 +S'Biche, Aigle' +p250097 +sg225232 +S'Karl Bodmer' +p250098 +sg225234 +S'lithograph' +p250099 +sg225236 +S'unknown date\n' +p250100 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef18.jpg' +p250101 +sg225240 +g27 +sa(dp250102 +g225230 +S'Cygne, heron' +p250103 +sg225232 +S'Karl Bodmer' +p250104 +sg225234 +S'etching' +p250105 +sg225236 +S'unknown date\n' +p250106 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef19.jpg' +p250107 +sg225240 +g27 +sa(dp250108 +g225230 +S'Oie, Heron' +p250109 +sg225232 +S'Karl Bodmer' +p250110 +sg225234 +S'etching' +p250111 +sg225236 +S'unknown date\n' +p250112 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef1a.jpg' +p250113 +sg225240 +g27 +sa(dp250114 +g225230 +S'Aigle au vol' +p250115 +sg225232 +S'Karl Bodmer' +p250116 +sg225234 +S'etching' +p250117 +sg225236 +S'unknown date\n' +p250118 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef1b.jpg' +p250119 +sg225240 +g27 +sa(dp250120 +g225230 +S'Chevreuil' +p250121 +sg225232 +S'Karl Bodmer' +p250122 +sg225234 +S'etching' +p250123 +sg225236 +S'unknown date\n' +p250124 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef1e.jpg' +p250125 +sg225240 +g27 +sa(dp250126 +g225230 +S'Le harde' +p250127 +sg225232 +S'Karl Bodmer' +p250128 +sg225234 +S'etching' +p250129 +sg225236 +S'unknown date\n' +p250130 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef1d.jpg' +p250131 +sg225240 +g27 +sa(dp250132 +g225230 +S'Cerf a la Reposee' +p250133 +sg225232 +S'Karl Bodmer' +p250134 +sg225234 +S'etching' +p250135 +sg225236 +S'unknown date\n' +p250136 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef1c.jpg' +p250137 +sg225240 +g27 +sa(dp250138 +g225232 +S'Karl Bodmer' +p250139 +sg225240 +g27 +sg225234 +S'chiaroscuro lithograph on chine colle' +p250140 +sg225230 +S'En foret' +p250141 +sg225236 +S'unknown date\n' +p250142 +sa(dp250143 +g225230 +S'Chateau de Bothwell' +p250144 +sg225232 +S'Artist Information (' +p250145 +sg225234 +S'(artist after)' +p250146 +sg225236 +S'\n' +p250147 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d0d.jpg' +p250148 +sg225240 +g27 +sa(dp250149 +g225230 +S'Lac Lomond' +p250150 +sg225232 +S'Artist Information (' +p250151 +sg225234 +S'(artist after)' +p250152 +sg225236 +S'\n' +p250153 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d9e.jpg' +p250154 +sg225240 +g27 +sa(dp250155 +g225230 +S'Lac de Killin' +p250156 +sg225232 +S'Artist Information (' +p250157 +sg225234 +S'(artist after)' +p250158 +sg225236 +S'\n' +p250159 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d8e.jpg' +p250160 +sg225240 +g27 +sa(dp250161 +g225230 +S'Edimbourg vu de la Chapelle Saint-Antoine' +p250162 +sg225232 +S'Artist Information (' +p250163 +sg225234 +S'(artist after)' +p250164 +sg225236 +S'\n' +p250165 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c22.jpg' +p250166 +sg225240 +g27 +sa(dp250167 +g225230 +S'Eglise de Saint-Taurin, Evreux' +p250168 +sg225232 +S'Richard Parkes Bonington' +p250169 +sg225234 +S'lithograph' +p250170 +sg225236 +S'1824' +p250171 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007da0.jpg' +p250172 +sg225240 +g27 +sa(dp250173 +g225230 +S'Ferry (Le Bac)' +p250174 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p250175 +sg225234 +S'etching' +p250176 +sg225236 +S'1850' +p250177 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091d2.jpg' +p250178 +sg225240 +g27 +sa(dp250179 +g225230 +S'Ruins of the Chateau of Cremieux (Les Ruines du chateau de Cremieux)' +p250180 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p250181 +sg225234 +S'etching' +p250182 +sg225236 +S'1850' +p250183 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091d1.jpg' +p250184 +sg225240 +g27 +sa(dp250185 +g225230 +S'Marsh (Le Marais)' +p250186 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p250187 +sg225234 +S'etching' +p250188 +sg225236 +S'probably 1851' +p250189 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091d5.jpg' +p250190 +sg225240 +g27 +sa(dp250191 +g225230 +S'Beach at Villerville (Plage de Villerville)' +p250192 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p250193 +sg225234 +S'etching' +p250194 +sg225236 +S'unknown date\n' +p250195 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009829.jpg' +p250196 +sg225240 +g27 +sa(dp250197 +g225230 +S'Rising Moon (Lever de lune)' +p250198 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p250199 +sg225234 +S'etching' +p250200 +sg225236 +S'1861' +p250201 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00097/a00097fb.jpg' +p250202 +sg225240 +g27 +sa(dp250203 +g225230 +S'Moonlight at Valmondois (Clair de lune a Valmondois)' +p250204 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p250205 +sg225234 +S'etching' +p250206 +sg225236 +S'1877' +p250207 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00097/a00097f8.jpg' +p250208 +sg225240 +g27 +sa(dp250209 +g225230 +S'The Mill at Saint Jacut (Le moulin de Saint Jacut)' +p250210 +sg225232 +S'Norbert Goeneutte' +p250211 +sg225234 +S'etching and drypoint' +p250212 +sg225236 +S'unknown date\n' +p250213 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f78.jpg' +p250214 +sg225240 +g27 +sa(dp250215 +g225230 +S'Saint-Severin' +p250216 +sg225232 +S'Auguste Lep\xc3\xa8re' +p250217 +sg225234 +S'wood engraving printed in sanguine' +p250218 +sg225236 +S'published 1901' +p250219 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a0009938.jpg' +p250220 +sg225240 +g27 +sa(dp250221 +g225230 +S'Rue Saint-Severin' +p250222 +sg225232 +S'Auguste Lep\xc3\xa8re' +p250223 +sg225234 +S'wood engraving printed in sanguine' +p250224 +sg225236 +S'published 1901' +p250225 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a0009937.jpg' +p250226 +sg225240 +g27 +sa(dp250227 +g225230 +S"L'ancienne academie de medecine" +p250228 +sg225232 +S'Auguste Lep\xc3\xa8re' +p250229 +sg225234 +S'wood engraving' +p250230 +sg225236 +S'published 1901' +p250231 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a0009936.jpg' +p250232 +sg225240 +g27 +sa(dp250233 +g225230 +S'Atelier de magisserie aux Gobelins' +p250234 +sg225232 +S'Auguste Lep\xc3\xa8re' +p250235 +sg225234 +S'wood engraving' +p250236 +sg225236 +S'published 1901' +p250237 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a0009935.jpg' +p250238 +sg225240 +g27 +sa(dp250239 +g225230 +S'Escalier de la maison ou etait le Chateau Rouge' +p250240 +sg225232 +S'Auguste Lep\xc3\xa8re' +p250241 +sg225234 +S'wood engraving' +p250242 +sg225236 +S'published 1901' +p250243 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a0009933.jpg' +p250244 +sg225240 +g27 +sa(dp250245 +g225230 +S'Escalier sculpte rue Boutebrie' +p250246 +sg225232 +S'Auguste Lep\xc3\xa8re' +p250247 +sg225234 +S'wood engraving' +p250248 +sg225236 +S'published 1901' +p250249 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a0009934.jpg' +p250250 +sg225240 +g27 +sa(dp250251 +g225230 +S'Le Palais des Machines' +p250252 +sg225232 +S'Auguste Lep\xc3\xa8re' +p250253 +sg225234 +S'wood engraving' +p250254 +sg225236 +S'published 1889' +p250255 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cee.jpg' +p250256 +sg225240 +g27 +sa(dp250257 +g225230 +S"Statue d'homme d'etat" +p250258 +sg225232 +S'Auguste Lep\xc3\xa8re' +p250259 +sg225234 +S'wood engraving' +p250260 +sg225236 +S'published 1886' +p250261 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cef.jpg' +p250262 +sg225240 +g27 +sa(dp250263 +g225230 +S'Centaur (Le centaure)' +p250264 +sg225232 +S'Auguste Lep\xc3\xa8re' +p250265 +sg225234 +S'wood engraving' +p250266 +sg225236 +S'1896' +p250267 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a0009945.jpg' +p250268 +sg225240 +g27 +sa(dp250269 +g225230 +S'Johannes Hoornbeeck' +p250270 +sg225232 +S'Jonas Suyderhoff' +p250271 +sg225234 +S'engraving' +p250272 +sg225236 +S'unknown date\n' +p250273 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d58b.jpg' +p250274 +sg225240 +g27 +sa(dp250275 +g225230 +S'Hercules Killing Cacus' +p250276 +sg225232 +S'Dirck Volckertz Coornhert' +p250277 +sg225234 +S'counterproof of engraving' +p250278 +sg225236 +S'1554' +p250279 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf4c.jpg' +p250280 +sg225240 +g27 +sa(dp250281 +g225230 +S'Hercules Killing Cacus' +p250282 +sg225232 +S'Dirck Volckertz Coornhert' +p250283 +sg225234 +S'engraving' +p250284 +sg225236 +S'1554' +p250285 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf4b.jpg' +p250286 +sg225240 +g27 +sa(dp250287 +g225230 +S'Untitled (Spoleto)' +p250288 +sg225232 +S'Artist Information (' +p250289 +sg225234 +S'(artist after)' +p250290 +sg225236 +S'\n' +p250291 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a000094f.jpg' +p250292 +sg225240 +g27 +sa(dp250293 +g225232 +S'Jack Beal' +p250294 +sg225240 +g27 +sg225234 +S'lithograph' +p250295 +sg225230 +S'Oysters with Wine and Lemon' +p250296 +sg225236 +S'unknown date\n' +p250297 +sa(dp250298 +g225230 +S'Hot' +p250299 +sg225232 +S'Artist Information (' +p250300 +sg225234 +S'American, born c. 1936' +p250301 +sg225236 +S'(printer)' +p250302 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a6a.jpg' +p250303 +sg225240 +g27 +sa(dp250304 +g225232 +S'Artist Information (' +p250305 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Savage Breeze' +p250306 +sg225236 +S'(artist)' +p250307 +sa(dp250308 +g225232 +S'Emil Nolde' +p250309 +sg225240 +g27 +sg225234 +S'5-color lithograph on japan paper' +p250310 +sg225230 +S'Dancer (Tanzerin)' +p250311 +sg225236 +S'1913' +p250312 +sa(dp250313 +g225230 +S'Untitled' +p250314 +sg225232 +S'David Smith' +p250315 +sg225234 +S'brush and black ink' +p250316 +sg225236 +S'1955' +p250317 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a00009d0.jpg' +p250318 +sg225240 +g27 +sa(dp250319 +g225232 +S'Frank Stella' +p250320 +sg225240 +g27 +sg225234 +S'watercolor on graph paper' +p250321 +sg225230 +S'Lac La Rouge II' +p250322 +sg225236 +S'1969' +p250323 +sa(dp250324 +g225230 +S'Trail Riders' +p250325 +sg225232 +S'Thomas Hart Benton' +p250326 +sg225234 +S'oil on canvas' +p250327 +sg225236 +S'1964/1965' +p250328 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000025.jpg' +p250329 +sg225240 +g27 +sa(dp250330 +g225232 +S'Sir Jacob Epstein' +p250331 +sg225240 +g27 +sg225234 +S'plaster, painted' +p250332 +sg225230 +S'Meum Lindsell-Stewart' +p250333 +sg225236 +S'1916/1918' +p250334 +sa(dp250335 +g225232 +S'Anne Truitt' +p250336 +sg225240 +g27 +sg225234 +S'acrylic on wood' +p250337 +sg225230 +S'Mid-Day' +p250338 +sg225236 +S'1972' +p250339 +sa(dp250340 +g225230 +S'An Oriental Ruler Seated on His Throne' +p250341 +sg225232 +S'Artist Information (' +p250342 +sg225234 +S'German, 1471 - 1528' +p250343 +sg225236 +S'(artist after)' +p250344 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a000798c.jpg' +p250345 +sg225240 +g27 +sa(dp250346 +g225230 +S"Hampstead Heath, with St. Paul's in the Distance (Vignette)" +p250347 +sg225232 +S'Artist Information (' +p250348 +sg225234 +S'(artist after)' +p250349 +sg225236 +S'\n' +p250350 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cac.jpg' +p250351 +sg225240 +g27 +sa(dp250352 +g225230 +S'Mill near Brighton' +p250353 +sg225232 +S'Artist Information (' +p250354 +sg225234 +S'(artist after)' +p250355 +sg225236 +S'\n' +p250356 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d53.jpg' +p250357 +sg225240 +g27 +sa(dp250358 +g225230 +S'A Mill' +p250359 +sg225232 +S'Artist Information (' +p250360 +sg225234 +S'(artist after)' +p250361 +sg225236 +S'\n' +p250362 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cb8.jpg' +p250363 +sg225240 +g27 +sa(dp250364 +g225230 +S'Summer Evening' +p250365 +sg225232 +S'Artist Information (' +p250366 +sg225234 +S'(artist after)' +p250367 +sg225236 +S'\n' +p250368 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c72.jpg' +p250369 +sg225240 +g27 +sa(dp250370 +g225230 +S'Summer Evening' +p250371 +sg225232 +S'Artist Information (' +p250372 +sg225234 +S'(artist after)' +p250373 +sg225236 +S'\n' +p250374 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c62.jpg' +p250375 +sg225240 +g27 +sa(dp250376 +g225230 +S'Spring' +p250377 +sg225232 +S'Artist Information (' +p250378 +sg225234 +S'(artist after)' +p250379 +sg225236 +S'\n' +p250380 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c1f.jpg' +p250381 +sg225240 +g27 +sa(dp250382 +g225230 +S'Old Sarum (a)' +p250383 +sg225232 +S'Artist Information (' +p250384 +sg225234 +S'(artist after)' +p250385 +sg225236 +S'\n' +p250386 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c32.jpg' +p250387 +sg225240 +g27 +sa(dp250388 +g225230 +S'Stoke-by-Neyland' +p250389 +sg225232 +S'Artist Information (' +p250390 +sg225234 +S'(artist after)' +p250391 +sg225236 +S'\n' +p250392 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c90.jpg' +p250393 +sg225240 +g27 +sa(dp250394 +g225230 +S'Stoke-by-Neyland' +p250395 +sg225232 +S'Artist Information (' +p250396 +sg225234 +S'(artist after)' +p250397 +sg225236 +S'\n' +p250398 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c52.jpg' +p250399 +sg225240 +g27 +sa(dp250400 +g225230 +S'A Summerland' +p250401 +sg225232 +S'Artist Information (' +p250402 +sg225234 +S'(artist after)' +p250403 +sg225236 +S'\n' +p250404 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c9e.jpg' +p250405 +sg225240 +g27 +sa(dp250406 +g225230 +S'Hadleigh Castle (Large Plate)' +p250407 +sg225232 +S'Artist Information (' +p250408 +sg225234 +S'(artist after)' +p250409 +sg225236 +S'\n' +p250410 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00081/a00081dd.jpg' +p250411 +sg225240 +g27 +sa(dp250412 +g225230 +S'A Dell, Helmingham Park, Suffolk' +p250413 +sg225232 +S'Artist Information (' +p250414 +sg225234 +S'(artist after)' +p250415 +sg225236 +S'\n' +p250416 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cdf.jpg' +p250417 +sg225240 +g27 +sa(dp250418 +g225230 +S'Weymouth Bay' +p250419 +sg225232 +S'Artist Information (' +p250420 +sg225234 +S'(artist after)' +p250421 +sg225236 +S'\n' +p250422 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cc4.jpg' +p250423 +sg225240 +g27 +sa(dp250424 +g225230 +S'Autumnal Sunset' +p250425 +sg225232 +S'Artist Information (' +p250426 +sg225234 +S'(artist after)' +p250427 +sg225236 +S'\n' +p250428 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a00079e3.jpg' +p250429 +sg225240 +g27 +sa(dp250430 +g225230 +S'Noon' +p250431 +sg225232 +S'Artist Information (' +p250432 +sg225234 +S'(artist after)' +p250433 +sg225236 +S'\n' +p250434 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00059/a0005947.jpg' +p250435 +sg225240 +g27 +sa(dp250436 +g225230 +S'Yarmouth, Norfolk' +p250437 +sg225232 +S'Artist Information (' +p250438 +sg225234 +S'(artist after)' +p250439 +sg225236 +S'\n' +p250440 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a00079d9.jpg' +p250441 +sg225240 +g27 +sa(dp250442 +g225230 +S'River Stour' +p250443 +sg225232 +S'Artist Information (' +p250444 +sg225234 +S'(artist after)' +p250445 +sg225236 +S'\n' +p250446 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a00079dc.jpg' +p250447 +sg225240 +g27 +sa(dp250448 +g225230 +S'A Lock on the Stour' +p250449 +sg225232 +S'Artist Information (' +p250450 +sg225234 +S'(artist after)' +p250451 +sg225236 +S'\n' +p250452 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a00079df.jpg' +p250453 +sg225240 +g27 +sa(dp250454 +g225230 +S'View on the Orwell' +p250455 +sg225232 +S'Artist Information (' +p250456 +sg225234 +S'(artist after)' +p250457 +sg225236 +S'\n' +p250458 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a00079e4.jpg' +p250459 +sg225240 +g27 +sa(dp250460 +g225230 +S'Summer Morning' +p250461 +sg225232 +S'Artist Information (' +p250462 +sg225234 +S'(artist after)' +p250463 +sg225236 +S'\n' +p250464 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a00079e5.jpg' +p250465 +sg225240 +g27 +sa(dp250466 +g225230 +S'Summer Afternoon, after a Shower' +p250467 +sg225232 +S'Artist Information (' +p250468 +sg225234 +S'(artist after)' +p250469 +sg225236 +S'\n' +p250470 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a00079e0.jpg' +p250471 +sg225240 +g27 +sa(dp250472 +g225230 +S'Glebe Farm (b)' +p250473 +sg225232 +S'Artist Information (' +p250474 +sg225234 +S'(artist after)' +p250475 +sg225236 +S'\n' +p250476 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a00079e2.jpg' +p250477 +sg225240 +g27 +sa(dp250478 +g225230 +S'Salisbury Cathedral' +p250479 +sg225232 +S'Artist Information (' +p250480 +sg225234 +S'(artist after)' +p250481 +sg225236 +S'\n' +p250482 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a00079de.jpg' +p250483 +sg225240 +g27 +sa(dp250484 +g225230 +S'Hadleigh Castle (Small Plate)' +p250485 +sg225232 +S'Artist Information (' +p250486 +sg225234 +S'(artist after)' +p250487 +sg225236 +S'\n' +p250488 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a00079dd.jpg' +p250489 +sg225240 +g27 +sa(dp250490 +g225232 +S'Artist Information (' +p250491 +sg225240 +g27 +sg225234 +S'(artist after)' +p250492 +sg225230 +S'The Lock' +p250493 +sg225236 +S'\n' +p250494 +sa(dp250495 +g225232 +S'Artist Information (' +p250496 +sg225240 +g27 +sg225234 +S'(artist after)' +p250497 +sg225230 +S'The Cornfield' +p250498 +sg225236 +S'\n' +p250499 +sa(dp250500 +g225230 +S"Sir Richard Steele's Cottages" +p250501 +sg225232 +S'Artist Information (' +p250502 +sg225234 +S'(artist after)' +p250503 +sg225236 +S'\n' +p250504 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a00079e7.jpg' +p250505 +sg225240 +g27 +sa(dp250506 +g225230 +S'Mill near Colchester' +p250507 +sg225232 +S'Artist Information (' +p250508 +sg225234 +S'(artist after)' +p250509 +sg225236 +S'\n' +p250510 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a00079db.jpg' +p250511 +sg225240 +g27 +sa(dp250512 +g225232 +S'Keith Morrow Martin' +p250513 +sg225240 +g27 +sg225234 +S'collage on board' +p250514 +sg225230 +S'Rocky Site' +p250515 +sg225236 +S'1964' +p250516 +sa(dp250517 +g225232 +S'Keith Morrow Martin' +p250518 +sg225240 +g27 +sg225234 +S'collage on paperboard' +p250519 +sg225230 +S'Collage No.4' +p250520 +sg225236 +S'1970' +p250521 +sa(dp250522 +g225232 +S'Daniel Brush' +p250523 +sg225240 +g27 +sg225234 +S'color lithograph' +p250524 +sg225230 +S'Untitled' +p250525 +sg225236 +S'1974' +p250526 +sa(dp250527 +g225232 +S'Various Artists' +p250528 +sg225240 +g27 +sg225234 +S"Gift of the Washington Printmakers' Inc." +p250529 +sg225230 +S"The Washington Portfolio '74" +p250530 +sg225236 +S'\nportfolio with title page and 10 prints by Brush, Clark, Hodick, Jamieson, Kainen, Knight, Lapinski, Meader, Schuldhess, and Strica' +p250531 +sa(dp250532 +g225232 +S'Michael Vinson Clark' +p250533 +sg225240 +g27 +sg225234 +S'color lithograph' +p250534 +sg225230 +S'Gi-George' +p250535 +sg225236 +S'1974' +p250536 +sa(dp250537 +g225232 +S'Angelo Hodick' +p250538 +sg225240 +g27 +sg225234 +S'lithograph' +p250539 +sg225230 +S'Seven Levels' +p250540 +sg225236 +S'1974' +p250541 +sa(dp250542 +g225232 +S'Mitchell Jamieson' +p250543 +sg225240 +g27 +sg225234 +S'engraving (lucite)' +p250544 +sg225230 +S'State' +p250545 +sg225236 +S'1974' +p250546 +sa(dp250547 +g225232 +S'Jacob Kainen' +p250548 +sg225240 +g27 +sg225234 +S'etching and aquatint in black on wove paper' +p250549 +sg225230 +S'Grand Master' +p250550 +sg225236 +S'1974' +p250551 +sa(dp250552 +g225232 +S'Jennie Lea Knight' +p250553 +sg225240 +g27 +sg225234 +S'lithograph' +p250554 +sg225230 +S'Emly Sleeping' +p250555 +sg225236 +S'1974' +p250556 +sa(dp250557 +g225232 +S'Tadeusz Lapinski' +p250558 +sg225240 +g27 +sg225234 +S'lithograph' +p250559 +sg225230 +S'Video Spectators' +p250560 +sg225236 +S'1974' +p250561 +sa(dp250562 +g225232 +S'Jonathan Grant Meader' +p250563 +sg225240 +g27 +sg225234 +S'lithograph' +p250564 +sg225230 +S'Kathy' +p250565 +sg225236 +S'1974' +p250566 +sa(dp250567 +g225232 +S'Jorg Schuldhess' +p250568 +sg225240 +g27 +sg225234 +S'etching' +p250569 +sg225230 +S'Neger Geburnt, USA (The Birth of Black Man)' +p250570 +sg225236 +S'1974' +p250571 +sa(dp250572 +g225232 +S'John C. Sirica' +p250573 +sg225240 +g27 +sg225234 +S'lithograph' +p250574 +sg225230 +S'Landscape' +p250575 +sg225236 +S'1974' +p250576 +sa(dp250577 +g225232 +S'Wassily Kandinsky' +p250578 +sg225240 +g27 +sg225234 +S'photomechanically reproduced woodcut' +p250579 +sg225230 +S'Reiterweg' +p250580 +sg225236 +S'unknown date\n' +p250581 +sa(dp250582 +g225232 +S'Wassily Kandinsky' +p250583 +sg225240 +g27 +sg225234 +S'photomechanically reproduced woodcut' +p250584 +sg225230 +S'Untitled Vignette' +p250585 +sg225236 +S'unknown date\n' +p250586 +sa(dp250587 +g225232 +S'Wassily Kandinsky' +p250588 +sg225240 +g27 +sg225234 +S'photomechanically reproduced woodcut' +p250589 +sg225230 +S'Improvisation' +p250590 +sg225236 +S'unknown date\n' +p250591 +sa(dp250592 +g225230 +S'The Nativity with Saints Francis and Agnes' +p250593 +sg225232 +S'Lodovico Carracci' +p250594 +sg225234 +S'pen and brown ink and brown wash with white heightening over black chalk; traces of incising' +p250595 +sg225236 +S'c. 1605' +p250596 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a000753b.jpg' +p250597 +sg225240 +g27 +sa(dp250598 +g225230 +S'The Adoration of the Magi' +p250599 +sg225232 +S'Italian 16th Century' +p250600 +sg225234 +S"Hind 'Engravings', Vol. 5, p.284, no. 16" +p250601 +sg225236 +S'\nengraving' +p250602 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c877.jpg' +p250603 +sg225240 +g27 +sa(dp250604 +g225230 +S'Four Women Dancing (version in reverse)' +p250605 +sg225232 +S'Artist Information (' +p250606 +sg225234 +S'Italian, c. 1431 - 1506' +p250607 +sg225236 +S'(related artist)' +p250608 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7aa.jpg' +p250609 +sg225240 +g27 +sa(dp250610 +g225230 +S'The Massacre of the Innocents' +p250611 +sg225232 +S'Artist Information (' +p250612 +sg225234 +S'(artist after)' +p250613 +sg225236 +S'\n' +p250614 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f6e.jpg' +p250615 +sg225240 +g27 +sa(dp250616 +g225230 +S'Alexander and Tha\xc3\xafs Setting Fire to Persepolis' +p250617 +sg225232 +S'Lodovico Carracci' +p250618 +sg225234 +S'pen and brown ink with brown wash and white heightening on paper washed orange-brown' +p250619 +sg225236 +S'probably c. 1592' +p250620 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00031/a00031a4.jpg' +p250621 +sg225240 +g27 +sa(dp250622 +g225230 +S'Untitled' +p250623 +sg225232 +S'Larry Poons' +p250624 +sg225234 +S'graphite and red watercolor on graph paper with blue lines' +p250625 +sg225236 +S'1962' +p250626 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000983.jpg' +p250627 +sg225240 +g27 +sa(dp250628 +g225230 +S'Studies of a Holy Family' +p250629 +sg225232 +S'Cesare Pollini' +p250630 +sg225234 +S'pen and brown ink with brown and pink wash, heightened with white gouache, on laid paper washed sanguine' +p250631 +sg225236 +S'unknown date\n' +p250632 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a00067fb.jpg' +p250633 +sg225240 +g27 +sa(dp250634 +g225230 +S'Title Page: Pedestal and a Pair of Dogs' +p250635 +sg225232 +S'Jan Fyt' +p250636 +sg225234 +S'etching' +p250637 +sg225236 +S'1642' +p250638 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d206.jpg' +p250639 +sg225240 +g27 +sa(dp250640 +g225230 +S'Four Dogs, One Sleeping beside a Capital' +p250641 +sg225232 +S'Jan Fyt' +p250642 +sg225234 +S'etching' +p250643 +sg225236 +S'1642' +p250644 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d201.jpg' +p250645 +sg225240 +g27 +sa(dp250646 +g225230 +S'Two Greyhounds, Leashed and Facing Opposite Directions' +p250647 +sg225232 +S'Jan Fyt' +p250648 +sg225234 +S'etching' +p250649 +sg225236 +S'1642' +p250650 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d203.jpg' +p250651 +sg225240 +g27 +sa(dp250652 +g225230 +S'Two Beagles, One Sleeping' +p250653 +sg225232 +S'Jan Fyt' +p250654 +sg225234 +S'etching' +p250655 +sg225236 +S'probably c. 1640/1642' +p250656 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d200.jpg' +p250657 +sg225240 +g27 +sa(dp250658 +g225230 +S'Two Greyhounds, Leashed and Facing Each Other' +p250659 +sg225232 +S'Jan Fyt' +p250660 +sg225234 +S'etching' +p250661 +sg225236 +S'1640' +p250662 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d204.jpg' +p250663 +sg225240 +g27 +sa(dp250664 +g225230 +S'Two Dogs Copulating' +p250665 +sg225232 +S'Jan Fyt' +p250666 +sg225234 +S'etching' +p250667 +sg225236 +S'probably c. 1640/1642' +p250668 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d202.jpg' +p250669 +sg225240 +g27 +sa(dp250670 +g225230 +S'Two Mastiffs beside a Fountain' +p250671 +sg225232 +S'Jan Fyt' +p250672 +sg225234 +S'etching' +p250673 +sg225236 +S'probably c. 1640/1642' +p250674 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d205.jpg' +p250675 +sg225240 +g27 +sa(dp250676 +g225230 +S'Landscape with Greyhound and Rifle' +p250677 +sg225232 +S'Jan Fyt' +p250678 +sg225234 +S'etching' +p250679 +sg225236 +S'1642' +p250680 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d43e.jpg' +p250681 +sg225240 +g27 +sa(dp250682 +g225230 +S'Title Page' +p250683 +sg225232 +S'Artist Information (' +p250684 +sg225234 +S'(artist after)' +p250685 +sg225236 +S'\n' +p250686 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d479.jpg' +p250687 +sg225240 +g27 +sa(dp250688 +g225230 +S'Town Gate' +p250689 +sg225232 +S'Artist Information (' +p250690 +sg225234 +S'(artist after)' +p250691 +sg225236 +S'\n' +p250692 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d47a.jpg' +p250693 +sg225240 +g27 +sa(dp250694 +g225230 +S'Village Road' +p250695 +sg225232 +S'Artist Information (' +p250696 +sg225234 +S'(artist after)' +p250697 +sg225236 +S'\n' +p250698 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d47b.jpg' +p250699 +sg225240 +g27 +sa(dp250700 +g225230 +S'Village Road' +p250701 +sg225232 +S'Artist Information (' +p250702 +sg225234 +S'(artist after)' +p250703 +sg225236 +S'\n' +p250704 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d47c.jpg' +p250705 +sg225240 +g27 +sa(dp250706 +g225230 +S'A Farmyard' +p250707 +sg225232 +S'Artist Information (' +p250708 +sg225234 +S'(artist after)' +p250709 +sg225236 +S'\n' +p250710 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d47d.jpg' +p250711 +sg225240 +g27 +sa(dp250712 +g225230 +S"The Swann's Inn" +p250713 +sg225232 +S'Artist Information (' +p250714 +sg225234 +S'(artist after)' +p250715 +sg225236 +S'\n' +p250716 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d47e.jpg' +p250717 +sg225240 +g27 +sa(dp250718 +g225230 +S'Village Road' +p250719 +sg225232 +S'Artist Information (' +p250720 +sg225234 +S'(artist after)' +p250721 +sg225236 +S'\n' +p250722 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d47f.jpg' +p250723 +sg225240 +g27 +sa(dp250724 +g225230 +S'Farms in a Village' +p250725 +sg225232 +S'Artist Information (' +p250726 +sg225234 +S'(artist after)' +p250727 +sg225236 +S'\n' +p250728 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d483.jpg' +p250729 +sg225240 +g27 +sa(dp250730 +g225230 +S'The Pond' +p250731 +sg225232 +S'Artist Information (' +p250732 +sg225234 +S'(artist after)' +p250733 +sg225236 +S'\n' +p250734 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d484.jpg' +p250735 +sg225240 +g27 +sa(dp250736 +g225230 +S'Large Farm' +p250737 +sg225232 +S'Artist Information (' +p250738 +sg225234 +S'(artist after)' +p250739 +sg225236 +S'\n' +p250740 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d480.jpg' +p250741 +sg225240 +g27 +sa(dp250742 +g225230 +S'Walled Farm' +p250743 +sg225232 +S'Artist Information (' +p250744 +sg225234 +S'(artist after)' +p250745 +sg225236 +S'\n' +p250746 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d481.jpg' +p250747 +sg225240 +g27 +sa(dp250748 +g225230 +S'Village Road' +p250749 +sg225232 +S'Artist Information (' +p250750 +sg225234 +S'(artist after)' +p250751 +sg225236 +S'\n' +p250752 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d486.jpg' +p250753 +sg225240 +g27 +sa(dp250754 +g225230 +S'A Convent' +p250755 +sg225232 +S'Artist Information (' +p250756 +sg225234 +S'(artist after)' +p250757 +sg225236 +S'\n' +p250758 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d482.jpg' +p250759 +sg225240 +g27 +sa(dp250760 +g225230 +S'Village Road' +p250761 +sg225232 +S'Artist Information (' +p250762 +sg225234 +S'(artist after)' +p250763 +sg225236 +S'\n' +p250764 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d485.jpg' +p250765 +sg225240 +g27 +sa(dp250766 +g225230 +S'Pond and a Village' +p250767 +sg225232 +S'Artist Information (' +p250768 +sg225234 +S'(artist after)' +p250769 +sg225236 +S'\n' +p250770 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d487.jpg' +p250771 +sg225240 +g27 +sa(dp250772 +g225230 +S'Road along a Field' +p250773 +sg225232 +S'Artist Information (' +p250774 +sg225234 +S'(artist after)' +p250775 +sg225236 +S'\n' +p250776 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d490.jpg' +p250777 +sg225240 +g27 +sa(dp250778 +g225230 +S'Landscape with Hewed Trees' +p250779 +sg225232 +S'Artist Information (' +p250780 +sg225234 +S'(artist after)' +p250781 +sg225236 +S'\n' +p250782 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d48b.jpg' +p250783 +sg225240 +g27 +sa(dp250784 +g225230 +S'A Pond' +p250785 +sg225232 +S'Artist Information (' +p250786 +sg225234 +S'(artist after)' +p250787 +sg225236 +S'\n' +p250788 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d48a.jpg' +p250789 +sg225240 +g27 +sa(dp250790 +g225230 +S'Road into a Village' +p250791 +sg225232 +S'Artist Information (' +p250792 +sg225234 +S'(artist after)' +p250793 +sg225236 +S'\n' +p250794 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d489.jpg' +p250795 +sg225240 +g27 +sa(dp250796 +g225230 +S'Village Road' +p250797 +sg225232 +S'Artist Information (' +p250798 +sg225234 +S'(artist after)' +p250799 +sg225236 +S'\n' +p250800 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d48d.jpg' +p250801 +sg225240 +g27 +sa(dp250802 +g225230 +S'Large Sheds' +p250803 +sg225232 +S'Artist Information (' +p250804 +sg225234 +S'(artist after)' +p250805 +sg225236 +S'\n' +p250806 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d48f.jpg' +p250807 +sg225240 +g27 +sa(dp250808 +g225230 +S'A Castle' +p250809 +sg225232 +S'Artist Information (' +p250810 +sg225234 +S'(artist after)' +p250811 +sg225236 +S'\n' +p250812 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d488.jpg' +p250813 +sg225240 +g27 +sa(dp250814 +g225230 +S'Large Walled Farm' +p250815 +sg225232 +S'Artist Information (' +p250816 +sg225234 +S'(artist after)' +p250817 +sg225236 +S'\n' +p250818 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d48c.jpg' +p250819 +sg225240 +g27 +sa(dp250820 +g225230 +S'Fields and a Road' +p250821 +sg225232 +S'Artist Information (' +p250822 +sg225234 +S'(artist after)' +p250823 +sg225236 +S'\n' +p250824 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d48e.jpg' +p250825 +sg225240 +g27 +sa(dp250826 +g225230 +S'A Barn' +p250827 +sg225232 +S'Artist Information (' +p250828 +sg225234 +S'(artist after)' +p250829 +sg225236 +S'\n' +p250830 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d478.jpg' +p250831 +sg225240 +g27 +sa(dp250832 +g225230 +S'Castle (Warmond?)' +p250833 +sg225232 +S'Artist Information (' +p250834 +sg225234 +S'(artist after)' +p250835 +sg225236 +S'\n' +p250836 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d492.jpg' +p250837 +sg225240 +g27 +sa(dp250838 +g225230 +S'Road with Barn and Cottages' +p250839 +sg225232 +S'Artist Information (' +p250840 +sg225234 +S'(artist after)' +p250841 +sg225236 +S'\n' +p250842 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d491.jpg' +p250843 +sg225240 +g27 +sa(dp250844 +g225230 +S'Cover for "Au pied du Sina\xc3\xaf"' +p250845 +sg225232 +S'Henri de Toulouse-Lautrec' +p250846 +sg225234 +S'color lithograph with gold paint' +p250847 +sg225236 +S'1898' +p250848 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a039.jpg' +p250849 +sg225240 +g27 +sa(dp250850 +g225230 +S'Nicolas de Largilliere' +p250851 +sg225232 +S'Artist Information (' +p250852 +sg225234 +S'(artist after)' +p250853 +sg225236 +S'\n' +p250854 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a00096b2.jpg' +p250855 +sg225240 +g27 +sa(dp250856 +g225230 +S'Hyacinthe Rigaud' +p250857 +sg225232 +S'Artist Information (' +p250858 +sg225234 +S'(artist after)' +p250859 +sg225236 +S'\n' +p250860 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a00096f7.jpg' +p250861 +sg225240 +g27 +sa(dp250862 +g225230 +S"The Vision (L'apparition)" +p250863 +sg225232 +S'Claude Lorrain' +p250864 +sg225234 +S'etching with drypoint' +p250865 +sg225236 +S'c. 1630' +p250866 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089a7.jpg' +p250867 +sg225240 +g27 +sa(dp250868 +g225230 +S'The Vision of Saint Anne' +p250869 +sg225232 +S'Artist Information (' +p250870 +sg225234 +S'(artist after)' +p250871 +sg225236 +S'\n' +p250872 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb90.jpg' +p250873 +sg225240 +g27 +sa(dp250874 +g225230 +S"Setting Sun over Antwerp Harbor (Soleil couchant - port d'Anvers)" +p250875 +sg225232 +S'Johan Barthold Jongkind' +p250876 +sg225234 +S'etching' +p250877 +sg225236 +S'1868' +p250878 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d6a2.jpg' +p250879 +sg225240 +g27 +sa(dp250880 +g225230 +S'Salvator Mundi' +p250881 +sg225232 +S'Artist Information (' +p250882 +sg225234 +S'French, active early 16th century' +p250883 +sg225236 +S'(artist)' +p250884 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00082/a00082f8.jpg' +p250885 +sg225240 +g27 +sa(dp250886 +g225230 +S'Tobit Blinded by the Sparrow while Sleeping' +p250887 +sg225232 +S'Artist Information (' +p250888 +sg225234 +S'(artist after)' +p250889 +sg225236 +S'\n' +p250890 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cff5.jpg' +p250891 +sg225240 +g27 +sa(dp250892 +g225230 +S'The Archangel Raphael Takes Tobias from His Home' +p250893 +sg225232 +S'Artist Information (' +p250894 +sg225234 +S'(artist after)' +p250895 +sg225236 +S'\n' +p250896 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cff4.jpg' +p250897 +sg225240 +g27 +sa(dp250898 +g225230 +S'Tobias and the Angel Disembowling the Fish' +p250899 +sg225232 +S'Artist Information (' +p250900 +sg225234 +S'(artist after)' +p250901 +sg225236 +S'\n' +p250902 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cff3.jpg' +p250903 +sg225240 +g27 +sa(dp250904 +g225230 +S'Tobias Arrives at the House of Raguel' +p250905 +sg225232 +S'Artist Information (' +p250906 +sg225234 +S'(artist after)' +p250907 +sg225236 +S'\n' +p250908 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cff2.jpg' +p250909 +sg225240 +g27 +sa(dp250910 +g225230 +S'Tobias Returns Home with His Bride' +p250911 +sg225232 +S'Artist Information (' +p250912 +sg225234 +S'(artist after)' +p250913 +sg225236 +S'\n' +p250914 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cff1.jpg' +p250915 +sg225240 +g27 +sa(dp250916 +g225230 +S'The Angel Leaves Tobias and His Family' +p250917 +sg225232 +S'Artist Information (' +p250918 +sg225234 +S'(artist after)' +p250919 +sg225236 +S'\n' +p250920 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cff0.jpg' +p250921 +sg225240 +g27 +sa(dp250922 +g225230 +S'Abraham Paying Tithes to Melchisedek' +p250923 +sg225232 +S'Battista Franco' +p250924 +sg225234 +S'etching and engraving' +p250925 +sg225236 +S'unknown date\n' +p250926 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbba.jpg' +p250927 +sg225240 +g27 +sa(dp250928 +g225230 +S'The Standard Bearer' +p250929 +sg225232 +S'Master FG' +p250930 +sg225234 +S'engraving' +p250931 +sg225236 +S'unknown date\n' +p250932 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acb1.jpg' +p250933 +sg225240 +g27 +sa(dp250934 +g225230 +S'Pan Taming Eros' +p250935 +sg225232 +S'Agostino Carracci' +p250936 +sg225234 +S'engraving' +p250937 +sg225236 +S'1599' +p250938 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8d2.jpg' +p250939 +sg225240 +g27 +sa(dp250940 +g225230 +S'Wild Horse Coming out of the Water (Cheval sauvage)' +p250941 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p250942 +sg225234 +S'lithograph' +p250943 +sg225236 +S'1828' +p250944 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a0001634.jpg' +p250945 +sg225240 +g27 +sa(dp250946 +g225230 +S'The Defeat of Sennacherib' +p250947 +sg225232 +S'Artist Information (' +p250948 +sg225234 +S'(artist after)' +p250949 +sg225236 +S'\n' +p250950 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d627.jpg' +p250951 +sg225240 +g27 +sa(dp250952 +g225230 +S'The Madonna and Child at Left, with a File of Angels' +p250953 +sg225232 +S'Giovanni Domenico Tiepolo' +p250954 +sg225234 +S'etching [proof]' +p250955 +sg225236 +S'published 1753' +p250956 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb2a.jpg' +p250957 +sg225240 +g27 +sa(dp250958 +g225230 +S'Four Saints of the Benedictine Order' +p250959 +sg225232 +S'Giovanni Domenico Tiepolo' +p250960 +sg225234 +S'etching' +p250961 +sg225236 +S'unknown date\n' +p250962 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cba3.jpg' +p250963 +sg225240 +g27 +sa(dp250964 +g225230 +S'Old Man with a Sword' +p250965 +sg225232 +S'Giovanni Domenico Tiepolo' +p250966 +sg225234 +S'etching' +p250967 +sg225236 +S'c. 1762' +p250968 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb32.jpg' +p250969 +sg225240 +g27 +sa(dp250970 +g225230 +S'Profile of an Old Man with a Beard' +p250971 +sg225232 +S'Giovanni Domenico Tiepolo' +p250972 +sg225234 +S'etching' +p250973 +sg225236 +S'c. 1762' +p250974 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d438.jpg' +p250975 +sg225240 +g27 +sa(dp250976 +g225232 +S'Artist Information (' +p250977 +sg225240 +g27 +sg225234 +S'(artist after)' +p250978 +sg225230 +S'The Battle of the Amazons [upper half of two-part print, see 1975.68.7]' +p250979 +sg225236 +S'\n' +p250980 +sa(dp250981 +g225232 +S'Artist Information (' +p250982 +sg225240 +g27 +sg225234 +S'(artist after)' +p250983 +sg225230 +S'The Battle of the Amazons [lower half of two-part print, see 1975.68.6]' +p250984 +sg225236 +S'\n' +p250985 +sa(dp250986 +g225230 +S'The Miracle of the Lame Man Healed by Saint Peter and Saint John' +p250987 +sg225232 +S'Artist Information (' +p250988 +sg225234 +S'(artist after)' +p250989 +sg225236 +S'\n' +p250990 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e50.jpg' +p250991 +sg225240 +g27 +sa(dp250992 +g225230 +S'Auditus' +p250993 +sg225232 +S'Artist Information (' +p250994 +sg225234 +S'(artist after)' +p250995 +sg225236 +S'\n' +p250996 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf53.jpg' +p250997 +sg225240 +g27 +sa(dp250998 +g225230 +S'Gustus' +p250999 +sg225232 +S'Artist Information (' +p251000 +sg225234 +S'(artist after)' +p251001 +sg225236 +S'\n' +p251002 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf56.jpg' +p251003 +sg225240 +g27 +sa(dp251004 +g225230 +S'Odoratus' +p251005 +sg225232 +S'Artist Information (' +p251006 +sg225234 +S'(artist after)' +p251007 +sg225236 +S'\n' +p251008 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf57.jpg' +p251009 +sg225240 +g27 +sa(dp251010 +g225230 +S'Tactus' +p251011 +sg225232 +S'Artist Information (' +p251012 +sg225234 +S'(artist after)' +p251013 +sg225236 +S'\n' +p251014 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf54.jpg' +p251015 +sg225240 +g27 +sa(dp251016 +g225230 +S'Visus' +p251017 +sg225232 +S'Artist Information (' +p251018 +sg225234 +S'(artist after)' +p251019 +sg225236 +S'\n' +p251020 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf55.jpg' +p251021 +sg225240 +g27 +sa(dp251022 +g225230 +S'Battle of the Horatii and the Curiatii' +p251023 +sg225232 +S'Artist Information (' +p251024 +sg225234 +S'Flemish, c. 1519 - 1570' +p251025 +sg225236 +S'(artist after)' +p251026 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf64.jpg' +p251027 +sg225240 +g27 +sa(dp251028 +g225230 +S"Isabella d'Este" +p251029 +sg225232 +S'Artist Information (' +p251030 +sg225234 +S'(artist after)' +p251031 +sg225236 +S'\n' +p251032 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d511.jpg' +p251033 +sg225240 +g27 +sa(dp251034 +g225230 +S'Philip IV (Philippe IV)' +p251035 +sg225232 +S'Artist Information (' +p251036 +sg225234 +S'(artist after)' +p251037 +sg225236 +S'\n' +p251038 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cfa.jpg' +p251039 +sg225240 +g27 +sa(dp251040 +g225230 +S'Concert with Nine Persons' +p251041 +sg225232 +S'Wallerant Vaillant' +p251042 +sg225234 +S'mezzotint' +p251043 +sg225236 +S'unknown date\n' +p251044 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5cc.jpg' +p251045 +sg225240 +g27 +sa(dp251046 +g225230 +S'Two Nymphs and a Satyr' +p251047 +sg225232 +S'Giovanni Benedetto Castiglione' +p251048 +sg225234 +S'pen and brown ink on laid paper' +p251049 +sg225236 +S'1640/1647' +p251050 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a00065d7.jpg' +p251051 +sg225240 +g27 +sa(dp251052 +g225230 +S'Villa di Papa Giulio' +p251053 +sg225232 +S'Claude Lorrain' +p251054 +sg225234 +S'pen and brown ink with gray wash on laid paper' +p251055 +sg225236 +S'c. 1635' +p251056 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007234.jpg' +p251057 +sg225240 +g27 +sa(dp251058 +g225230 +S'The Emperor Aulus Vitellius' +p251059 +sg225232 +S'Paolo Farinati' +p251060 +sg225234 +S'pen and brown ink with brown and gray wash heightened with white over black chalk on laid paper' +p251061 +sg225236 +S'unknown date\n' +p251062 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00033/a00033cb.jpg' +p251063 +sg225240 +g27 +sa(dp251064 +g225230 +S'A Standing Youth with His Arms Raised, Seen from Behind' +p251065 +sg225232 +S'Jacopo Tintoretto' +p251066 +sg225234 +S'black chalk on laid paper' +p251067 +sg225236 +S'unknown date\n' +p251068 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00028/a0002868.jpg' +p251069 +sg225240 +g27 +sa(dp251070 +g225230 +S"Cristi... v'la-t-y un boeuf qui est bien fait!..." +p251071 +sg225232 +S'Honor\xc3\xa9 Daumier' +p251072 +sg225234 +S'lithograph on papier mince' +p251073 +sg225236 +S'1859' +p251074 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094c7.jpg' +p251075 +sg225240 +g27 +sa(dp251076 +g225230 +S'Horseman and Vagabond in the Forest (Le Cavalier en for\xc3\xaat et le pi\xc3\xa9ton)' +p251077 +sg225232 +S'Jean-Baptiste-Camille Corot' +p251078 +sg225234 +S'cliche-verre' +p251079 +sg225236 +S'1854' +p251080 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000981b.jpg' +p251081 +sg225240 +g27 +sa(dp251082 +g225230 +S'Ch\xc3\xa2teau de Pont-Gibaud' +p251083 +sg225232 +S'Eug\xc3\xa8ne Isabey' +p251084 +sg225234 +S'lithograph' +p251085 +sg225236 +S'unknown date\n' +p251086 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009ad9.jpg' +p251087 +sg225240 +g27 +sa(dp251088 +g225230 +S'The Adoration of the Shepherds' +p251089 +sg225232 +S'Cesare Pollini' +p251090 +sg225234 +S'pen and brown ink with light brown wash over red chalk on laid paper' +p251091 +sg225236 +S'unknown date\n' +p251092 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a0007513.jpg' +p251093 +sg225240 +g27 +sa(dp251094 +g225230 +S'Louis de France, duc de Bourgogne' +p251095 +sg225232 +S'Artist Information (' +p251096 +sg225234 +S'(artist after)' +p251097 +sg225236 +S'\n' +p251098 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a00096ef.jpg' +p251099 +sg225240 +g27 +sa(dp251100 +g225230 +S'Tavern Scene' +p251101 +sg225232 +S'David Teniers the Younger' +p251102 +sg225234 +S'oil on panel' +p251103 +sg225236 +S'1658' +p251104 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e49.jpg' +p251105 +sg225240 +g27 +sa(dp251106 +g225230 +S'Auguste-Jean-Marie Gu\xc3\xa9nepin' +p251107 +sg225232 +S'Jean-Auguste-Dominique Ingres' +p251108 +sg225234 +S'graphite on wove paper' +p251109 +sg225236 +S'1809' +p251110 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d4a.jpg' +p251111 +sg225240 +g27 +sa(dp251112 +g225230 +S'Untitled' +p251113 +sg225232 +S'Lorser Feitelson' +p251114 +sg225234 +S'enamel on canvas' +p251115 +sg225236 +S'1964' +p251116 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000b1.jpg' +p251117 +sg225240 +g27 +sa(dp251118 +g225232 +S'Elie Nadelman' +p251119 +sg225240 +g27 +sg225234 +S'plaster' +p251120 +sg225230 +S'Two Nudes' +p251121 +sg225236 +S'c. 1911' +p251122 +sa(dp251123 +g225232 +S'Lila Pell Katzen' +p251124 +sg225240 +g27 +sg225234 +S'steel' +p251125 +sg225230 +S'Antecedent' +p251126 +sg225236 +S'1975' +p251127 +sa(dp251128 +g225230 +S"L'ane et le chien (The Donkey and the Dog)" +p251129 +sg225232 +S'Artist Information (' +p251130 +sg225234 +S'(artist after)' +p251131 +sg225236 +S'\n' +p251132 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a000961f.jpg' +p251133 +sg225240 +g27 +sa(dp251134 +g225230 +S"Les deux rats, le renard et l'oeuf (Two Rats,the Fox, and the Egg)" +p251135 +sg225232 +S'Artist Information (' +p251136 +sg225234 +S'(artist after)' +p251137 +sg225236 +S'\n' +p251138 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009620.jpg' +p251139 +sg225240 +g27 +sa(dp251140 +g225230 +S'La chauve-souris, le buisson et le canard (The Bat, the Bush, and the Duck)' +p251141 +sg225232 +S'Artist Information (' +p251142 +sg225234 +S'(artist after)' +p251143 +sg225236 +S'\n' +p251144 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009626.jpg' +p251145 +sg225240 +g27 +sa(dp251146 +g225230 +S'Le chat et le rat (The Cat and the Rat)' +p251147 +sg225232 +S'Artist Information (' +p251148 +sg225234 +S'(artist after)' +p251149 +sg225236 +S'\n' +p251150 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009622.jpg' +p251151 +sg225240 +g27 +sa(dp251152 +g225230 +S'Le corbeau, la gazelle, la tortue et le rat (The Crow, the Gazelle, the Tortoise, and' +p251153 +sg225232 +S'Artist Information (' +p251154 +sg225234 +S'(artist after)' +p251155 +sg225236 +S'\n' +p251156 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009624.jpg' +p251157 +sg225240 +g27 +sa(dp251158 +g225230 +S'Les poissons et le cormoran (The Fish and theCormorant)' +p251159 +sg225232 +S'Artist Information (' +p251160 +sg225234 +S'(artist after)' +p251161 +sg225236 +S'\n' +p251162 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009623.jpg' +p251163 +sg225240 +g27 +sa(dp251164 +g225230 +S'Les vautours et les pigeons (Vultures and Pigeons)' +p251165 +sg225232 +S'Artist Information (' +p251166 +sg225234 +S'(artist after)' +p251167 +sg225236 +S'\n' +p251168 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009621.jpg' +p251169 +sg225240 +g27 +sa(dp251170 +g225230 +S'Le corbeau, la gazelle, la tortue et le rat (The Crow, the Gazelle, the Tortoise, andthe Rat)' +p251171 +sg225232 +S'Artist Information (' +p251172 +sg225234 +S'(artist after)' +p251173 +sg225236 +S'\n' +p251174 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009625.jpg' +p251175 +sg225240 +g27 +sa(dp251176 +g225230 +S'Le loup et le chasseur (The Wolf and the Hunter)' +p251177 +sg225232 +S'Artist Information (' +p251178 +sg225234 +S'(artist after)' +p251179 +sg225236 +S'\n' +p251180 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009628.jpg' +p251181 +sg225240 +g27 +sa(dp251182 +g225230 +S"L'homme qui court apres la fortune et l'hommequi l'attend dans son lit (The Man who Courts Fortune and the Man Who Sleeps in Bed)" +p251183 +sg225232 +S'Artist Information (' +p251184 +sg225234 +S'(artist after)' +p251185 +sg225236 +S'\n' +p251186 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009627.jpg' +p251187 +sg225240 +g27 +sa(dp251188 +g225230 +S'Le lion (The Lion)' +p251189 +sg225232 +S'Artist Information (' +p251190 +sg225234 +S'(artist after)' +p251191 +sg225236 +S'\n' +p251192 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009629.jpg' +p251193 +sg225240 +g27 +sa(dp251194 +g225230 +S'Le torrent et la riviere (The Torrent and theRiver)' +p251195 +sg225232 +S'Artist Information (' +p251196 +sg225234 +S'(artist after)' +p251197 +sg225236 +S'\n' +p251198 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a000962b.jpg' +p251199 +sg225240 +g27 +sa(dp251200 +g225230 +S'Le loup et le chien maigre (The Wolf and the Thin Dog)' +p251201 +sg225232 +S'Artist Information (' +p251202 +sg225234 +S'(artist after)' +p251203 +sg225236 +S'\n' +p251204 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a000962c.jpg' +p251205 +sg225240 +g27 +sa(dp251206 +g225230 +S'Le roi, le milan, et le chasseur (The King, the Kite, and the Hunter)' +p251207 +sg225232 +S'Artist Information (' +p251208 +sg225234 +S'(artist after)' +p251209 +sg225236 +S'\n' +p251210 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a000962d.jpg' +p251211 +sg225240 +g27 +sa(dp251212 +g225230 +S"La lionne et l'ours (The Lion and the Bear)" +p251213 +sg225232 +S'Artist Information (' +p251214 +sg225234 +S'(artist after)' +p251215 +sg225236 +S'\n' +p251216 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a000962a.jpg' +p251217 +sg225240 +g27 +sa(dp251218 +g225230 +S'Le thesauriseur et la singe (The Miser and the Monkey)' +p251219 +sg225232 +S'Artist Information (' +p251220 +sg225234 +S'(artist after)' +p251221 +sg225236 +S'\n' +p251222 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a000962f.jpg' +p251223 +sg225240 +g27 +sa(dp251224 +g225230 +S'Les devineresses (The Fortune-Tellers)' +p251225 +sg225232 +S'Artist Information (' +p251226 +sg225234 +S'(artist after)' +p251227 +sg225236 +S'\n' +p251228 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a000962e.jpg' +p251229 +sg225240 +g27 +sa(dp251230 +g225230 +S'Le chat, la balette et le petit lapin (The Cat, the Weasel, and the Rabbit)' +p251231 +sg225232 +S'Artist Information (' +p251232 +sg225234 +S'(artist after)' +p251233 +sg225236 +S'\n' +p251234 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009631.jpg' +p251235 +sg225240 +g27 +sa(dp251236 +g225230 +S"La matrone d'Ephese (The Matron of Ephese)" +p251237 +sg225232 +S'Artist Information (' +p251238 +sg225234 +S'(artist after)' +p251239 +sg225236 +S'\n' +p251240 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009632.jpg' +p251241 +sg225240 +g27 +sa(dp251242 +g225230 +S"Le chien qui porte a son cou le diner de son maitre (The Dog Carrying His Master's Supper)" +p251243 +sg225232 +S'Artist Information (' +p251244 +sg225234 +S'(artist after)' +p251245 +sg225236 +S'\n' +p251246 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009630.jpg' +p251247 +sg225240 +g27 +sa(dp251248 +g225230 +S'Les filles de Minee (The Daughters of Minee)' +p251249 +sg225232 +S'Artist Information (' +p251250 +sg225234 +S'(artist after)' +p251251 +sg225236 +S'\n' +p251252 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009635.jpg' +p251253 +sg225240 +g27 +sa(dp251254 +g225230 +S"Les deux chiens et l'ane mort (Two Dogs and the Dead Donkey)" +p251255 +sg225232 +S'Artist Information (' +p251256 +sg225234 +S'(artist after)' +p251257 +sg225236 +S'\n' +p251258 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009634.jpg' +p251259 +sg225240 +g27 +sa(dp251260 +g225230 +S'Rien de trop (Nothing in Excess)' +p251261 +sg225232 +S'Artist Information (' +p251262 +sg225234 +S'(artist after)' +p251263 +sg225236 +S'\n' +p251264 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a000963e.jpg' +p251265 +sg225240 +g27 +sa(dp251266 +g225230 +S'Rien de trop (Nothing in Excess)' +p251267 +sg225232 +S'Artist Information (' +p251268 +sg225234 +S'(artist after)' +p251269 +sg225236 +S'\n' +p251270 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009636.jpg' +p251271 +sg225240 +g27 +sa(dp251272 +g225230 +S"L'homme et la puce (The Man with Fleas)" +p251273 +sg225232 +S'Artist Information (' +p251274 +sg225234 +S'(artist after)' +p251275 +sg225236 +S'\n' +p251276 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a000963d.jpg' +p251277 +sg225240 +g27 +sa(dp251278 +g225230 +S"L'homme et la couleuvre (Man and the Snake)" +p251279 +sg225232 +S'Artist Information (' +p251280 +sg225234 +S'(artist after)' +p251281 +sg225236 +S'\n' +p251282 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a000963c.jpg' +p251283 +sg225240 +g27 +sa(dp251284 +g225230 +S'Le roi, le milan, et le chasseur (The King, the Kite, and the Hunter)' +p251285 +sg225232 +S'Artist Information (' +p251286 +sg225234 +S'(artist after)' +p251287 +sg225236 +S'\n' +p251288 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a000963b.jpg' +p251289 +sg225240 +g27 +sa(dp251290 +g225230 +S'Les deux perroquets, le roi et son fils (Two Parrots, the King, and His Son)' +p251291 +sg225232 +S'Artist Information (' +p251292 +sg225234 +S'(artist after)' +p251293 +sg225236 +S'\n' +p251294 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a000963a.jpg' +p251295 +sg225240 +g27 +sa(dp251296 +g225230 +S"Le renard et les poulets d'Inde (The Fox and the Hens from India)" +p251297 +sg225232 +S'Artist Information (' +p251298 +sg225234 +S'(artist after)' +p251299 +sg225236 +S'\n' +p251300 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009637.jpg' +p251301 +sg225240 +g27 +sa(dp251302 +g225230 +S'Le loup et le renard (The Wolf and the Fox)' +p251303 +sg225232 +S'Artist Information (' +p251304 +sg225234 +S'(artist after)' +p251305 +sg225236 +S'\n' +p251306 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009639.jpg' +p251307 +sg225240 +g27 +sa(dp251308 +g225230 +S'Le vieux chat et la jeune Souris (The Old Catand the Young Mouse)' +p251309 +sg225232 +S'Artist Information (' +p251310 +sg225234 +S'(artist after)' +p251311 +sg225236 +S'\n' +p251312 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009633.jpg' +p251313 +sg225240 +g27 +sa(dp251314 +g225230 +S'La querelle des chiens et des chats et celle des chats et des souris (The Quarrel of Cats and Dogs, and that of Cats and Mice)' +p251315 +sg225232 +S'Artist Information (' +p251316 +sg225234 +S'(artist after)' +p251317 +sg225236 +S'\n' +p251318 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009638.jpg' +p251319 +sg225240 +g27 +sa(dp251320 +g225230 +S'The Mill-Wheel' +p251321 +sg225232 +S'Francis Seymour Haden' +p251322 +sg225234 +S'etching (and drypoint?) in dark brown' +p251323 +sg225236 +S'1874' +p251324 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007db9.jpg' +p251325 +sg225240 +g27 +sa(dp251326 +g225230 +S'Falconeer Lifting an Owl from the Ground' +p251327 +sg225232 +S'Johann Elias Ridinger' +p251328 +sg225234 +S'etching and engraving' +p251329 +sg225236 +S'unknown date\n' +p251330 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b373.jpg' +p251331 +sg225240 +g27 +sa(dp251332 +g225230 +S'Huntsman with a Pack of Hounds' +p251333 +sg225232 +S'Johann Elias Ridinger' +p251334 +sg225234 +S'etching and engraving' +p251335 +sg225236 +S'unknown date\n' +p251336 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b374.jpg' +p251337 +sg225240 +g27 +sa(dp251338 +g225230 +S'The Annunciation' +p251339 +sg225232 +S'Hendrick Goltzius' +p251340 +sg225234 +S', 1594' +p251341 +sg225236 +S'\n' +p251342 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d06d.jpg' +p251343 +sg225240 +g27 +sa(dp251344 +g225230 +S'The Purple Martin (Hirundo purpurea)' +p251345 +sg225232 +S'Mark Catesby' +p251346 +sg225234 +S'hand-colored etching' +p251347 +sg225236 +S'published 1731-1743' +p251348 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a0007813.jpg' +p251349 +sg225240 +g27 +sa(dp251350 +g225230 +S'Landscape with Trees' +p251351 +sg225232 +S'Daniel Kotz' +p251352 +sg225234 +S'monotype' +p251353 +sg225236 +S'unknown date\n' +p251354 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f6/a000f670.jpg' +p251355 +sg225240 +g27 +sa(dp251356 +g225232 +S'Janez Bernik' +p251357 +sg225240 +g27 +sg225234 +S'color etching' +p251358 +sg225230 +S'Adriana II' +p251359 +sg225236 +S'1971' +p251360 +sa(dp251361 +g225232 +S'Various Artists' +p251362 +sg225240 +g27 +sg225234 +S'Gift to Vice President Spiro T. Agnew by Marshall Josip Broz Tito, President of the Socialist Federal Republic of Yugoslavia' +p251363 +sg225230 +S"Grafika Ljubljana '71" +p251364 +sg225236 +S'\nportfolio with 15 prints by various artists plus index, artist biographies, and introduction' +p251365 +sa(dp251366 +g225232 +S'Bogdan Borcic' +p251367 +sg225240 +g27 +sg225234 +S'color etching and aquatint' +p251368 +sg225230 +S'Print No. 63' +p251369 +sg225236 +S'1971' +p251370 +sa(dp251371 +g225232 +S'Riko Debenjak' +p251372 +sg225240 +g27 +sg225234 +S'color etching with aquatint' +p251373 +sg225230 +S'Magic Dimensions No. CX' +p251374 +sg225236 +S'1971' +p251375 +sa(dp251376 +g225232 +S'Dzevad Hozo' +p251377 +sg225240 +g27 +sg225234 +S'color etching' +p251378 +sg225230 +S'The Joyful II' +p251379 +sg225236 +S'1971' +p251380 +sa(dp251381 +g225232 +S'Jaki' +p251382 +sg225240 +g27 +sg225234 +S'etching' +p251383 +sg225230 +S'The Crucifixion' +p251384 +sg225236 +S'1971' +p251385 +sa(dp251386 +g225232 +S'Andrej Jemec' +p251387 +sg225240 +g27 +sg225234 +S'color screenprint' +p251388 +sg225230 +S'Fantasy in Blue-Green' +p251389 +sg225236 +S'1971' +p251390 +sa(dp251391 +g225232 +S'Mesko Kiar' +p251392 +sg225240 +g27 +sg225234 +S'relief print' +p251393 +sg225230 +S'The Narrow Pass' +p251394 +sg225236 +S'1971' +p251395 +sa(dp251396 +g225232 +S'Metka Krasovec' +p251397 +sg225240 +g27 +sg225234 +S'soft-ground etching' +p251398 +sg225230 +S'Presentiment' +p251399 +sg225236 +S'1971' +p251400 +sa(dp251401 +g225232 +S'Lojze Logar' +p251402 +sg225240 +g27 +sg225234 +S'color screenprint' +p251403 +sg225230 +S'Figures KC' +p251404 +sg225236 +S'1971' +p251405 +sa(dp251406 +g225232 +S'Vladimir Makuc' +p251407 +sg225240 +g27 +sg225234 +S'color relief etching' +p251408 +sg225230 +S'The Bird' +p251409 +sg225236 +S'1971' +p251410 +sa(dp251411 +g225232 +S'Adriana Maraz' +p251412 +sg225240 +g27 +sg225234 +S'color etching' +p251413 +sg225230 +S'Milk' +p251414 +sg225236 +S'1971' +p251415 +sa(dp251416 +g225232 +S'France Mihelic' +p251417 +sg225240 +g27 +sg225234 +S'linoleum cut' +p251418 +sg225230 +S'Carnivals' +p251419 +sg225236 +S'1970' +p251420 +sa(dp251421 +g225232 +S'Marjan Pogacnik' +p251422 +sg225240 +g27 +sg225234 +S'relief color etching' +p251423 +sg225230 +S'Tranquility before Arising for the Day' +p251424 +sg225236 +S'1971' +p251425 +sa(dp251426 +g225232 +S'Gorazd Sefran' +p251427 +sg225240 +g27 +sg225234 +S'color etching' +p251428 +sg225230 +S'Fear' +p251429 +sg225236 +S'1971' +p251430 +sa(dp251431 +g225232 +S'Karel Zelenko' +p251432 +sg225240 +g27 +sg225234 +S'etching' +p251433 +sg225230 +S'Trash' +p251434 +sg225236 +S'1971' +p251435 +sa(dp251436 +g225232 +S'Werner Drewes' +p251437 +sg225240 +g27 +sg225234 +S'color woodcut' +p251438 +sg225230 +S'Expanding Force' +p251439 +sg225236 +S'1974' +p251440 +sa(dp251441 +g225230 +S'Expanding Force' +p251442 +sg225232 +S'Werner Drewes' +p251443 +sg225234 +S'color woodcut' +p251444 +sg225236 +S'1974' +p251445 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a8a.jpg' +p251446 +sg225240 +g27 +sa(dp251447 +g225232 +S'Werner Drewes' +p251448 +sg225240 +g27 +sg225234 +S'color woodcut' +p251449 +sg225230 +S'Spiral Thrust' +p251450 +sg225236 +S'1974' +p251451 +sa(dp251452 +g225232 +S'Gene Davis' +p251453 +sg225240 +g27 +sg225234 +S'color screenprint [proof]' +p251454 +sg225230 +S'Untitled (Poster for Smithsonian Resident Associate Program, Tenth Anniversary)' +p251455 +sg225236 +S'1975' +p251456 +sa(dp251457 +g225232 +S'Gene Davis' +p251458 +sg225240 +g27 +sg225234 +S'color screenprint on wove paper' +p251459 +sg225230 +S'Untitled (Poster for Smithsonian Resident Associate Program, Tenth Anniversary)' +p251460 +sg225236 +S'1975' +p251461 +sa(dp251462 +g225232 +S'Artist Information (' +p251463 +sg225240 +g27 +sg225234 +S'French, 1810 - 1857' +p251464 +sg225230 +S'Voyage ou il vous plaira' +p251465 +sg225236 +S'(author)' +p251466 +sa(dp251467 +g225232 +S'Karl Siegmund von Uchteritz' +p251468 +sg225240 +g27 +sg225234 +S', published 1730' +p251469 +sg225230 +S'Bei der solennen Beerdigung des ... Hernn Kurt Hildebrand' +p251470 +sg225236 +S'\n' +p251471 +sa(dp251472 +g225232 +S'Johann Georg Wolfgang' +p251473 +sg225240 +g27 +sg225234 +S', published 1730' +p251474 +sg225230 +S'Kurt Hildebrand' +p251475 +sg225236 +S'\n' +p251476 +sa(dp251477 +g225232 +S'Gifford Beal' +p251478 +sg225240 +g27 +sg225234 +S'watercolor' +p251479 +sg225230 +S'Haverill' +p251480 +sg225236 +S'unknown date\n' +p251481 +sa(dp251482 +g225230 +S'Untitled' +p251483 +sg225232 +S'William Zorach' +p251484 +sg225234 +S'watercolor' +p251485 +sg225236 +S'unknown date\n' +p251486 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a05.jpg' +p251487 +sg225240 +g27 +sa(dp251488 +g225232 +S'Howard Mehring' +p251489 +sg225240 +g27 +sg225234 +S'wetted pastel' +p251490 +sg225230 +S'Untitled' +p251491 +sg225236 +S'unknown date\n' +p251492 +sa(dp251493 +g225230 +S'Blue Spring, Florida' +p251494 +sg225232 +S'Winslow Homer' +p251495 +sg225234 +S'watercolor on wove paper' +p251496 +sg225236 +S'1890' +p251497 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000eb/a000eba2.jpg' +p251498 +sg225240 +g27 +sa(dp251499 +g225230 +S'Casting, Number Two' +p251500 +sg225232 +S'Winslow Homer' +p251501 +sg225234 +S'watercolor over graphite' +p251502 +sg225236 +S'1894' +p251503 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008fe.jpg' +p251504 +sg225240 +g27 +sa(dp251505 +g225230 +S'The Coming Storm' +p251506 +sg225232 +S'Winslow Homer' +p251507 +sg225234 +S'watercolor over graphite' +p251508 +sg225236 +S'1901' +p251509 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008ff.jpg' +p251510 +sg225240 +g27 +sa(dp251511 +g225230 +S'Girl Carrying a Basket' +p251512 +sg225232 +S'Winslow Homer' +p251513 +sg225234 +S'watercolor over graphite' +p251514 +sg225236 +S'1882' +p251515 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000900.jpg' +p251516 +sg225240 +g27 +sa(dp251517 +g225230 +S'A Good Shot, Adirondacks' +p251518 +sg225232 +S'Winslow Homer' +p251519 +sg225234 +S'watercolor' +p251520 +sg225236 +S'1892' +p251521 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000901.jpg' +p251522 +sg225240 +S'There is a thematic trend in Homer’s deer hunting series; his subjects shift over time from the start of the hunt to the kill. In \n ' +p251523 +sa(dp251524 +g225230 +S'Hauling in the Nets' +p251525 +sg225232 +S'Winslow Homer' +p251526 +sg225234 +S'watercolor over graphite' +p251527 +sg225236 +S'1887' +p251528 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00057/a000575b.jpg' +p251529 +sg225240 +g27 +sa(dp251530 +g225230 +S'Sketch for "Hound and Hunter"' +p251531 +sg225232 +S'Winslow Homer' +p251532 +sg225234 +S'watercolor on wove paper' +p251533 +sg225236 +S'1892' +p251534 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000902.jpg' +p251535 +sg225240 +S'Another watercolor in Homer’s series on hounding, \n The self-assurance of man in relation to nature that characterizes many of Homer’s \n ' +p251536 +sa(dp251537 +g225230 +S'Incoming Tide, Scarboro, Maine' +p251538 +sg225232 +S'Winslow Homer' +p251539 +sg225234 +S'watercolor' +p251540 +sg225236 +S'1883' +p251541 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00057/a0005754.jpg' +p251542 +sg225240 +g27 +sa(dp251543 +g225230 +S'Key West, Hauling Anchor' +p251544 +sg225232 +S'Winslow Homer' +p251545 +sg225234 +S'watercolor over graphite' +p251546 +sg225236 +S'1903' +p251547 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000903.jpg' +p251548 +sg225240 +S'After not working for more than a year, Homer traveled to Florida in December 1903. The \n As with the Bahamas series, Homer ignored all but the essentials and concentrated on capturing the effects of light and color. The simplified color scheme of white hull and sails, red-shirted crew, and gray-blue sea and sky produce a scene of sunlit clarity. A sense of continuous movement is created by cropping the top of the masts and furled sail. The \n ' +p251549 +sa(dp251550 +g225230 +S'The Lone Fisherman' +p251551 +sg225232 +S'Winslow Homer' +p251552 +sg225234 +S'watercolor over graphite' +p251553 +sg225236 +S'1889' +p251554 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000eb/a000eba4.jpg' +p251555 +sg225240 +g27 +sa(dp251556 +g225230 +S'The Milk Maid' +p251557 +sg225232 +S'Winslow Homer' +p251558 +sg225234 +S'watercolor over graphite' +p251559 +sg225236 +S'1878' +p251560 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008fa.jpg' +p251561 +sg225240 +g27 +sa(dp251562 +g225230 +S'On the Trail' +p251563 +sg225232 +S'Winslow Homer' +p251564 +sg225234 +S'watercolor over graphite' +p251565 +sg225236 +S'c. 1892' +p251566 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008fb.jpg' +p251567 +sg225240 +S"In 1889 Homer began a series of \n Hounding was a controversial practice. Still-hunting, where the hunter tracked the deer through the woods without the benefit of dogs, was considered more sportsmanlike. However, Homer's hunters are not wealthy sportsmen, casually shooting for entertainment, but local guides hunting for food and livelihood. \n " +p251568 +sa(dp251569 +g225230 +S'Red Shirt, Homosassa, Florida' +p251570 +sg225232 +S'Winslow Homer' +p251571 +sg225234 +S'watercolor over graphite' +p251572 +sg225236 +S'1904' +p251573 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008fc.jpg' +p251574 +sg225240 +g27 +sa(dp251575 +g225230 +S'The Rise' +p251576 +sg225232 +S'Winslow Homer' +p251577 +sg225234 +S'watercolor over graphite' +p251578 +sg225236 +S'1900' +p251579 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00057/a0005755.jpg' +p251580 +sg225240 +g27 +sa(dp251581 +g225230 +S'Salt Kettle, Bermuda' +p251582 +sg225232 +S'Winslow Homer' +p251583 +sg225234 +S'watercolor over graphite' +p251584 +sg225236 +S'1899' +p251585 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008fd.jpg' +p251586 +sg225240 +g27 +sa(dp251587 +g225230 +S'Under a Palm Tree' +p251588 +sg225232 +S'Winslow Homer' +p251589 +sg225234 +S'watercolor' +p251590 +sg225236 +S'1886' +p251591 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c58b.jpg' +p251592 +sg225240 +g27 +sa(dp251593 +g225230 +S'Girl with Hay Rake' +p251594 +sg225232 +S'Winslow Homer' +p251595 +sg225234 +S'watercolor' +p251596 +sg225236 +S'1878' +p251597 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00057/a0005756.jpg' +p251598 +sg225240 +g27 +sa(dp251599 +g225230 +S'The Road to Calvary' +p251600 +sg225232 +S'Jacques de Bellange' +p251601 +sg225234 +S', unknown date' +p251602 +sg225236 +S'\n' +p251603 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00010/a0001061.jpg' +p251604 +sg225240 +g27 +sa(dp251605 +g225232 +S'Andr\xc3\xa9 Derain' +p251606 +sg225240 +g27 +sg225234 +S'color woodcut' +p251607 +sg225230 +S'Vase of Flowers' +p251608 +sg225236 +S'unknown date\n' +p251609 +sa(dp251610 +g225232 +S'M.C. Escher' +p251611 +sg225240 +g27 +sg225234 +S'mezzotint' +p251612 +sg225230 +S'Dusk' +p251613 +sg225236 +S'1946' +p251614 +sa(dp251615 +g225230 +S'Italian Town' +p251616 +sg225232 +S'M.C. Escher' +p251617 +sg225234 +S'black lithographic ink, scratched' +p251618 +sg225236 +S'1930' +p251619 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004ba4.jpg' +p251620 +sg225240 +S'Escher often used his drawings as studies for prints, but he occasionally also experimented with various drawing techniques. His most important experiments are the "scratch drawings" for which he evenly coated the paper with lithographic drawing ink. He then drew on the prepared surface with a pointed tool, scoring or scratching into it to produce his image. This technique, which he first employed in 1929, led Escher directly to his work in lithography.\n ' +p251621 +sa(dp251622 +g225232 +S'Max Beckmann' +p251623 +sg225240 +S"Max Beckmann planned to paint a ninth and final triptych called "The Artists,"\n with the left panel representing painting, the right panel music, and the middle panel, with its\n central, garlanded figure, poetry. He was moved by a dream to rename it \n The painting's title may also allude to a group of poets and painters with whom Beckmann\n associated during his years in Amsterdam, 1937-47, who called themselves "the\n Argonauts." Indeed, multiple references to Beckmann's art and his life are evident\n throughout the three panels, making \n " +p251624 +sg225234 +S'oil on canvas' +p251625 +sg225230 +S'The Argonauts [left panel]' +p251626 +sg225236 +S'1949/1950' +p251627 +sa(dp251628 +g225232 +S'Max Beckmann' +p251629 +sg225240 +g27 +sg225234 +S'oil on canvas' +p251630 +sg225230 +S'The Argonauts [middle panel]' +p251631 +sg225236 +S'1949/1950' +p251632 +sa(dp251633 +g225232 +S'Max Beckmann' +p251634 +sg225240 +g27 +sg225234 +S'oil on canvas' +p251635 +sg225230 +S'The Argonauts [right panel]' +p251636 +sg225236 +S'1949/1950' +p251637 +sa(dp251638 +g225232 +S'Max Beckmann' +p251639 +sg225240 +g27 +sg225234 +S'oil on canvas' +p251640 +sg225230 +S'Christ in Limbo' +p251641 +sg225236 +S'1947/1948' +p251642 +sa(dp251643 +g225232 +S'Max Beckmann' +p251644 +sg225240 +g27 +sg225234 +S'oil on canvas' +p251645 +sg225230 +S'Falling Man' +p251646 +sg225236 +S'1950' +p251647 +sa(dp251648 +g225232 +S'Pierre Soulages' +p251649 +sg225240 +g27 +sg225234 +S'oil on canvas' +p251650 +sg225230 +S'6 March 1955' +p251651 +sg225236 +S'1955' +p251652 +sa(dp251653 +g225232 +S'Kenneth Noland' +p251654 +sg225240 +g27 +sg225234 +S'oil on canvas' +p251655 +sg225230 +S'The Clown' +p251656 +sg225236 +S'1959' +p251657 +sa(dp251658 +g225232 +S'Carlos Scliar' +p251659 +sg225240 +g27 +sg225234 +S'oil on cardboard' +p251660 +sg225230 +S'Still Life' +p251661 +sg225236 +S'1970' +p251662 +sa(dp251663 +g225230 +S'Untitled' +p251664 +sg225232 +S'Tony Smith' +p251665 +sg225234 +S'acrylic on canvas' +p251666 +sg225236 +S'1962' +p251667 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a000021e.jpg' +p251668 +sg225240 +g27 +sa(dp251669 +g225232 +S'Larry Bell' +p251670 +sg225240 +g27 +sg225234 +S'chrome and glass' +p251671 +sg225230 +S'Chrome and Glass Construction' +p251672 +sg225236 +S'1965' +p251673 +sa(dp251674 +g225232 +S'Stuart Davis' +p251675 +sg225240 +g27 +sg225234 +S'color screenprint on wove paper' +p251676 +sg225230 +S'Composition' +p251677 +sg225236 +S'1964' +p251678 +sa(dp251679 +g225232 +S'Various Artists' +p251680 +sg225240 +g27 +sg225234 +S'Gift of Mr. and Mrs. Burton Tremaine' +p251681 +sg225230 +S'Ten Works x Ten Painters' +p251682 +sg225236 +S'\nportfolio of ten screenprints and colophon page' +p251683 +sa(dp251684 +g225232 +S'Robert Indiana' +p251685 +sg225240 +g27 +sg225234 +S'color screenprint on wove Mohawk paper' +p251686 +sg225230 +S'Eternal Hexagon' +p251687 +sg225236 +S'1964' +p251688 +sa(dp251689 +g225232 +S'Ellsworth Kelly' +p251690 +sg225240 +g27 +sg225234 +S'screenprint in red and blue on Mohawk Superfine Cover paper' +p251691 +sg225230 +S'Red/Blue (Untitled)' +p251692 +sg225236 +S'1964' +p251693 +sa(dp251694 +g225232 +S'Roy Lichtenstein' +p251695 +sg225240 +g27 +sg225234 +S'screenprint on clear plastic' +p251696 +sg225230 +S'Sandwich and Soda' +p251697 +sg225236 +S'1964' +p251698 +sa(dp251699 +g225232 +S'Robert Motherwell' +p251700 +sg225240 +g27 +sg225234 +S'screenprint in black and ochre with collage on Mohawk Superfine paper' +p251701 +sg225230 +S'Untitled' +p251702 +sg225236 +S'1964' +p251703 +sa(dp251704 +g225232 +S'George Earl Ortman' +p251705 +sg225240 +g27 +sg225234 +S'color screenprint' +p251706 +sg225230 +S'Untitled' +p251707 +sg225236 +S'1964' +p251708 +sa(dp251709 +g225232 +S'Larry Poons' +p251710 +sg225240 +g27 +sg225234 +S'color screenprint' +p251711 +sg225230 +S'Untitled' +p251712 +sg225236 +S'1964' +p251713 +sa(dp251714 +g225232 +S'Ad Reinhardt' +p251715 +sg225240 +g27 +sg225234 +S'color screenprint' +p251716 +sg225230 +S'Untitled' +p251717 +sg225236 +S'1964' +p251718 +sa(dp251719 +g225232 +S'Frank Stella' +p251720 +sg225240 +g27 +sg225234 +S'screenprint in blue and yellow' +p251721 +sg225230 +S'Untitled (Rabat)' +p251722 +sg225236 +S'1964' +p251723 +sa(dp251724 +g225232 +S'Andy Warhol' +p251725 +sg225240 +g27 +sg225234 +S'photo-screenprint' +p251726 +sg225230 +S'Birmingham Race Riot' +p251727 +sg225236 +S'1964' +p251728 +sa(dp251729 +g225230 +S'Nymph of the Fields' +p251730 +sg225232 +S'Pittaluga' +p251731 +sg225234 +S'marble' +p251732 +sg225236 +S'1915' +p251733 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002df5.jpg' +p251734 +sg225240 +g27 +sa(dp251735 +g225230 +S'Nymph of the Woods' +p251736 +sg225232 +S'Pittaluga' +p251737 +sg225234 +S'marble' +p251738 +sg225236 +S'1915' +p251739 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002df6.jpg' +p251740 +sg225240 +g27 +sa(dp251741 +g225230 +S'Cervara' +p251742 +sg225232 +S'Edward Lear' +p251743 +sg225234 +S'hand-colored lithograph' +p251744 +sg225236 +S'unknown date\n' +p251745 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d40.jpg' +p251746 +sg225240 +g27 +sa(dp251747 +g225230 +S'Via Porta Pinciana, Rome' +p251748 +sg225232 +S'Edward Lear' +p251749 +sg225234 +S'color lithograph' +p251750 +sg225236 +S'unknown date\n' +p251751 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d4f.jpg' +p251752 +sg225240 +g27 +sa(dp251753 +g225230 +S'Veduta di Campagna vincino a Gamberaia' +p251754 +sg225232 +S'Artist Information (' +p251755 +sg225234 +S'(artist after)' +p251756 +sg225236 +S'\n' +p251757 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc10.jpg' +p251758 +sg225240 +g27 +sa(dp251759 +g225230 +S'Seascape with a Fortified City at Right, Islands at Left and a Cottage in the Foreground' +p251760 +sg225232 +S'F\xc3\xa9lix-Hilaire Buhot' +p251761 +sg225234 +S'gelatin sheet' +p251762 +sg225236 +S'c. 1882' +p251763 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a0009163.jpg' +p251764 +sg225240 +g27 +sa(dp251765 +g225230 +S'Estuary with a Fortified Seaport at Left and Cliffs at Right' +p251766 +sg225232 +S'F\xc3\xa9lix-Hilaire Buhot' +p251767 +sg225234 +S'gelatin sheet' +p251768 +sg225236 +S'c. 1882' +p251769 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a0009164.jpg' +p251770 +sg225240 +g27 +sa(dp251771 +g225232 +S'Willem de Kooning' +p251772 +sg225240 +g27 +sg225234 +S'lithograph' +p251773 +sg225230 +S'Beach Scene' +p251774 +sg225236 +S'1970' +p251775 +sa(dp251776 +g225232 +S'Artist Information (' +p251777 +sg225240 +g27 +sg225234 +S'1846 - 2011' +p251778 +sg225230 +S'Big' +p251779 +sg225236 +S'(publisher)' +p251780 +sa(dp251781 +g225232 +S'Willem de Kooning' +p251782 +sg225240 +g27 +sg225234 +S'lithograph in black on laid paper' +p251783 +sg225230 +S'Clam Digger' +p251784 +sg225236 +S'1970' +p251785 +sa(dp251786 +g225232 +S'Willem de Kooning' +p251787 +sg225240 +g27 +sg225234 +S'lithograph' +p251788 +sg225230 +S'Figure at Gerard Beach' +p251789 +sg225236 +S'1970' +p251790 +sa(dp251791 +g225232 +S'Willem de Kooning' +p251792 +sg225240 +g27 +sg225234 +S'lithograph' +p251793 +sg225230 +S'High School Desk' +p251794 +sg225236 +S'1970' +p251795 +sa(dp251796 +g225232 +S'Artist Information (' +p251797 +sg225240 +g27 +sg225234 +S'1846 - 2011' +p251798 +sg225230 +S'Landing Place' +p251799 +sg225236 +S'(publisher)' +p251800 +sa(dp251801 +g225232 +S'Willem de Kooning' +p251802 +sg225240 +g27 +sg225234 +S'lithograph' +p251803 +sg225230 +S'Landscape at Stanton Street' +p251804 +sg225236 +S'1971' +p251805 +sa(dp251806 +g225232 +S'Willem de Kooning' +p251807 +sg225240 +g27 +sg225234 +S'lithograph' +p251808 +sg225230 +S'Love to Wakoko' +p251809 +sg225236 +S'1970' +p251810 +sa(dp251811 +g225230 +S'The Marshes' +p251812 +sg225232 +S'Artist Information (' +p251813 +sg225234 +S'1846 - 2011' +p251814 +sg225236 +S'(artist)' +p251815 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bc6.jpg' +p251816 +sg225240 +g27 +sa(dp251817 +g225232 +S'Willem de Kooning' +p251818 +sg225240 +g27 +sg225234 +S'lithograph' +p251819 +sg225230 +S'With Love' +p251820 +sg225236 +S'1971' +p251821 +sa(dp251822 +g225232 +S'Willem de Kooning' +p251823 +sg225240 +g27 +sg225234 +S'lithograph' +p251824 +sg225230 +S'Mother and Child' +p251825 +sg225236 +S'1970' +p251826 +sa(dp251827 +g225230 +S'Minnie Mouse' +p251828 +sg225232 +S'Willem de Kooning' +p251829 +sg225234 +S'lithograph' +p251830 +sg225236 +S'1971' +p251831 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a83.jpg' +p251832 +sg225240 +g27 +sa(dp251833 +g225232 +S'Artist Information (' +p251834 +sg225240 +g27 +sg225234 +S'1846 - 2011' +p251835 +sg225230 +S'Souvenir of Montauk' +p251836 +sg225236 +S'(publisher)' +p251837 +sa(dp251838 +g225232 +S'Willem de Kooning' +p251839 +sg225240 +g27 +sg225234 +S'lithograph' +p251840 +sg225230 +S'Sting Ray' +p251841 +sg225236 +S'unknown date\n' +p251842 +sa(dp251843 +g225232 +S'Artist Information (' +p251844 +sg225240 +g27 +sg225234 +S'1846 - 2011' +p251845 +sg225230 +S'Table and Chair' +p251846 +sg225236 +S'(publisher)' +p251847 +sa(dp251848 +g225232 +S'Artist Information (' +p251849 +sg225240 +g27 +sg225234 +S'1846 - 2011' +p251850 +sg225230 +S'To Kermit for our Trip to Japan' +p251851 +sg225236 +S'(publisher)' +p251852 +sa(dp251853 +g225232 +S'Artist Information (' +p251854 +sg225240 +g27 +sg225234 +S'1846 - 2011' +p251855 +sg225230 +S'Valentine' +p251856 +sg225236 +S'(publisher)' +p251857 +sa(dp251858 +g225232 +S'Willem de Kooning' +p251859 +sg225240 +g27 +sg225234 +S'lithograph' +p251860 +sg225230 +S'The Preacher' +p251861 +sg225236 +S'1971' +p251862 +sa(dp251863 +g225232 +S'Artist Information (' +p251864 +sg225240 +g27 +sg225234 +S'1846 - 2011' +p251865 +sg225230 +S'Woman in Anagansett' +p251866 +sg225236 +S'(publisher)' +p251867 +sa(dp251868 +g225232 +S'Willem de Kooning' +p251869 +sg225240 +g27 +sg225234 +S'lithograph' +p251870 +sg225230 +S'Woman with Corset and Long Hair' +p251871 +sg225236 +S'1970' +p251872 +sa(dp251873 +g225230 +S'Woman at Clearwater Beach' +p251874 +sg225232 +S'Willem de Kooning' +p251875 +sg225234 +S'lithograph' +p251876 +sg225236 +S'1970' +p251877 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a84.jpg' +p251878 +sg225240 +g27 +sa(dp251879 +g225230 +S'Woman Carrying a Basket' +p251880 +sg225232 +S'Cornelis Bega' +p251881 +sg225234 +S'etching' +p251882 +sg225236 +S'unknown date\n' +p251883 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d082.jpg' +p251884 +sg225240 +g27 +sa(dp251885 +g225230 +S'Portrait of M. Sebastien Le Prestre de Vauban' +p251886 +sg225232 +S'Artist Information (' +p251887 +sg225234 +S'(artist after)' +p251888 +sg225236 +S'\n' +p251889 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a4e.jpg' +p251890 +sg225240 +g27 +sa(dp251891 +g225230 +S'Girl with a Mask' +p251892 +sg225232 +S'Baron Dominique Vivant Denon' +p251893 +sg225234 +S'lithograph' +p251894 +sg225236 +S'1820' +p251895 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009854.jpg' +p251896 +sg225240 +g27 +sa(dp251897 +g225230 +S'Disparate conocido (Well-Known Folly)' +p251898 +sg225232 +S'Francisco de Goya' +p251899 +sg225234 +S'etching and burnished aquatint [trial proof printed posthumously before 1877]' +p251900 +sg225236 +S'1816' +p251901 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ed/a000eda8.jpg' +p251902 +sg225240 +g27 +sa(dp251903 +g225230 +S'Woman in a Net' +p251904 +sg225232 +S'Stanley William Hayter' +p251905 +sg225234 +S'engraving and soft-ground etching (copper) with araeas of deep intaglio (printing as white relief) where ink has been wiped clean' +p251906 +sg225236 +S'1934' +p251907 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00081/a00081c4.jpg' +p251908 +sg225240 +g27 +sa(dp251909 +g225232 +S'Giovanni Domenico Tiepolo' +p251910 +sg225240 +g27 +sg225234 +S'etching' +p251911 +sg225230 +S'Old Man in the Manner of Rembrandt' +p251912 +sg225236 +S'c. 1762' +p251913 +sa(dp251914 +g225232 +S'Artist Information (' +p251915 +sg225240 +g27 +sg225234 +S'English, probably 1656 - 1736' +p251916 +sg225230 +S'C. Julii Caesaris ... Quae extant' +p251917 +sg225236 +S'(publisher)' +p251918 +sa(dp251919 +g225230 +S'The Martyrdom of Saint Sebastian' +p251920 +sg225232 +S'Jacob Jordaens' +p251921 +sg225234 +S'pen and brown ink with brown wash on laid paper' +p251922 +sg225236 +S'c. 1620/1621' +p251923 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a0007079.jpg' +p251924 +sg225240 +g27 +sa(dp251925 +g225230 +S'Landscape with Log House near a River' +p251926 +sg225232 +S'Artist Information (' +p251927 +sg225234 +S'Dutch, 1565 - 1629' +p251928 +sg225236 +S'(artist)' +p251929 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfa8.jpg' +p251930 +sg225240 +g27 +sa(dp251931 +g225230 +S'The Battle of the Amazons [recto]' +p251932 +sg225232 +S'Enea Vico' +p251933 +sg225234 +S'engraving' +p251934 +sg225236 +S'1543' +p251935 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c88d.jpg' +p251936 +sg225240 +g27 +sa(dp251937 +g225232 +S'Enea Vico' +p251938 +sg225240 +g27 +sg225234 +S'engraving (counterproof)' +p251939 +sg225230 +S'The Loves of Mars and Venus [verso]' +p251940 +sg225236 +S'unknown date\n' +p251941 +sa(dp251942 +g225230 +S"The Water's Course" +p251943 +sg225232 +S'Rodolphe Bresdin' +p251944 +sg225234 +S'etching' +p251945 +sg225236 +S'1888' +p251946 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009816.jpg' +p251947 +sg225240 +g27 +sa(dp251948 +g225230 +S'Eve' +p251949 +sg225232 +S'Artist Information (' +p251950 +sg225234 +S'(artist after)' +p251951 +sg225236 +S'\n' +p251952 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d15.jpg' +p251953 +sg225240 +g27 +sa(dp251954 +g225230 +S'The Raising of the Cross' +p251955 +sg225232 +S'Luca Giordano' +p251956 +sg225234 +S'pen and brown ink with brown wash over touches of black chalk on laid paper' +p251957 +sg225236 +S'unknown date\n' +p251958 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00033/a00033dd.jpg' +p251959 +sg225240 +g27 +sa(dp251960 +g225230 +S'"Susanna Smuls" and "Leuye Joost"' +p251961 +sg225232 +S'Artist Information (' +p251962 +sg225234 +S'(artist)' +p251963 +sg225236 +S'\n' +p251964 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdda.jpg' +p251965 +sg225240 +g27 +sa(dp251966 +g225230 +S'"Beleefde Goossen" and "Prijne Lecker-tants"' +p251967 +sg225232 +S'Artist Information (' +p251968 +sg225234 +S'(artist)' +p251969 +sg225236 +S'\n' +p251970 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cddb.jpg' +p251971 +sg225240 +g27 +sa(dp251972 +g225230 +S'"Hans Onvertsaeght" and "Koen Slock-speck"' +p251973 +sg225232 +S'Artist Information (' +p251974 +sg225234 +S'(artist)' +p251975 +sg225236 +S'\n' +p251976 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cddc.jpg' +p251977 +sg225240 +g27 +sa(dp251978 +g225230 +S'"Joris Ysegrim" and "Quastighe Jopje"' +p251979 +sg225232 +S'Artist Information (' +p251980 +sg225234 +S'(artist)' +p251981 +sg225236 +S'\n' +p251982 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cddd.jpg' +p251983 +sg225240 +g27 +sa(dp251984 +g225230 +S'"Mondighe Melis" and "Smeerighe Els"' +p251985 +sg225232 +S'Artist Information (' +p251986 +sg225234 +S'(artist)' +p251987 +sg225236 +S'\n' +p251988 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdde.jpg' +p251989 +sg225240 +g27 +sa(dp251990 +g225230 +S'"Dirck Domp" and "Zeedighe Kniertje"' +p251991 +sg225232 +S'Artist Information (' +p251992 +sg225234 +S'(artist)' +p251993 +sg225236 +S'\n' +p251994 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cddf.jpg' +p251995 +sg225240 +g27 +sa(dp251996 +g225230 +S'"Rijckje Schimmel-penninghs" and "Lubbert Leever-worst"' +p251997 +sg225232 +S'Artist Information (' +p251998 +sg225234 +S'(artist)' +p251999 +sg225236 +S'\n' +p252000 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cde0.jpg' +p252001 +sg225240 +g27 +sa(dp252002 +g225230 +S'"Goelijeke Floor" and "Kinne Snavels"' +p252003 +sg225232 +S'Artist Information (' +p252004 +sg225234 +S'(artist)' +p252005 +sg225236 +S'\n' +p252006 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cde1.jpg' +p252007 +sg225240 +g27 +sa(dp252008 +g225230 +S'"Kees Geldt-sack" and "Kaarighe Truy"' +p252009 +sg225232 +S'Artist Information (' +p252010 +sg225234 +S'(artist)' +p252011 +sg225236 +S'\n' +p252012 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cde2.jpg' +p252013 +sg225240 +g27 +sa(dp252014 +g225230 +S'"Verdorde Nel" and "Jan Afterlam"' +p252015 +sg225232 +S'Artist Information (' +p252016 +sg225234 +S'(artist)' +p252017 +sg225236 +S'\n' +p252018 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cde3.jpg' +p252019 +sg225240 +g27 +sa(dp252020 +g225230 +S'"Baef Schol-becx" and "Spruyt Vroegh-bedorven"' +p252021 +sg225232 +S'Artist Information (' +p252022 +sg225234 +S'(artist)' +p252023 +sg225236 +S'\n' +p252024 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cde4.jpg' +p252025 +sg225240 +g27 +sa(dp252026 +g225230 +S'"Pater Muylaert" and "Mater Bille-bloots"' +p252027 +sg225232 +S'Artist Information (' +p252028 +sg225234 +S'(artist)' +p252029 +sg225236 +S'\n' +p252030 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cde5.jpg' +p252031 +sg225240 +g27 +sa(dp252032 +g225230 +S'"Maey Veeghde-pot" and "Pannetje Vet"' +p252033 +sg225232 +S'Artist Information (' +p252034 +sg225234 +S'(artist)' +p252035 +sg225236 +S'\n' +p252036 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cde6.jpg' +p252037 +sg225240 +g27 +sa(dp252038 +g225230 +S'"Erlijcke Lyn" and "Snoepighe Steeve"' +p252039 +sg225232 +S'Artist Information (' +p252040 +sg225234 +S'(artist)' +p252041 +sg225236 +S'\n' +p252042 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cde7.jpg' +p252043 +sg225240 +g27 +sa(dp252044 +g225230 +S'"Beveynsde Hil" and "Listighe Jorden"' +p252045 +sg225232 +S'Artist Information (' +p252046 +sg225234 +S'(artist)' +p252047 +sg225236 +S'\n' +p252048 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cde8.jpg' +p252049 +sg225240 +g27 +sa(dp252050 +g225230 +S'"Foockel Frons-muyl" and "Pietje Hard-loop"' +p252051 +sg225232 +S'Artist Information (' +p252052 +sg225234 +S'(artist)' +p252053 +sg225236 +S'\n' +p252054 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cde9.jpg' +p252055 +sg225240 +g27 +sa(dp252056 +g225230 +S'"Aerdighe Kniertje" and "Onbekommerde Klaes"' +p252057 +sg225232 +S'Artist Information (' +p252058 +sg225234 +S'(artist)' +p252059 +sg225236 +S'\n' +p252060 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdea.jpg' +p252061 +sg225240 +g27 +sa(dp252062 +g225230 +S'"Goe Geurtjen" and "Kribbighe Babbe"' +p252063 +sg225232 +S'Artist Information (' +p252064 +sg225234 +S'(artist)' +p252065 +sg225236 +S'\n' +p252066 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdeb.jpg' +p252067 +sg225240 +g27 +sa(dp252068 +g225230 +S'"Houte Klaes" and "Kommer-stoofs"' +p252069 +sg225232 +S'Artist Information (' +p252070 +sg225234 +S'(artist)' +p252071 +sg225236 +S'\n' +p252072 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdec.jpg' +p252073 +sg225240 +g27 +sa(dp252074 +g225230 +S'"Ritze Stijn" and "Schurckje Sonder-Baerdt"' +p252075 +sg225232 +S'Artist Information (' +p252076 +sg225234 +S'(artist)' +p252077 +sg225236 +S'\n' +p252078 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cded.jpg' +p252079 +sg225240 +g27 +sa(dp252080 +g225230 +S'"Trijn Bulle-bacx" and "Voorsichtighe Oenne"' +p252081 +sg225232 +S'Artist Information (' +p252082 +sg225234 +S'(artist)' +p252083 +sg225236 +S'\n' +p252084 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdee.jpg' +p252085 +sg225240 +g27 +sa(dp252086 +g225230 +S'"Hansje Singh in Veldt" and "Blaeuwe Aecht"' +p252087 +sg225232 +S'Artist Information (' +p252088 +sg225234 +S'(artist)' +p252089 +sg225236 +S'\n' +p252090 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdef.jpg' +p252091 +sg225240 +g27 +sa(dp252092 +g225230 +S'"Ael Pieter-mans" and "Bedorve Sloof om\'t Geldt"' +p252093 +sg225232 +S'Artist Information (' +p252094 +sg225234 +S'(artist)' +p252095 +sg225236 +S'\n' +p252096 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdf0.jpg' +p252097 +sg225240 +g27 +sa(dp252098 +g225230 +S'"Aecht Sonder-Ziel" and "Heertje Al-te-mooy"' +p252099 +sg225232 +S'Artist Information (' +p252100 +sg225234 +S'(artist)' +p252101 +sg225236 +S'\n' +p252102 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdf1.jpg' +p252103 +sg225240 +g27 +sa(dp252104 +g225230 +S'"Oprechte Lammert" and "Deughdighe Geertruyd"' +p252105 +sg225232 +S'Artist Information (' +p252106 +sg225234 +S'(artist)' +p252107 +sg225236 +S'\n' +p252108 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdf2.jpg' +p252109 +sg225240 +g27 +sa(dp252110 +g225230 +S'"Vrouw Verneem-al" and "Hans de Pluym-strijcker"' +p252111 +sg225232 +S'Artist Information (' +p252112 +sg225234 +S'(artist)' +p252113 +sg225236 +S'\n' +p252114 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdf3.jpg' +p252115 +sg225240 +g27 +sa(dp252116 +g225230 +S'"Keesje Licht-hart" and "Verblinde Swaen"' +p252117 +sg225232 +S'Artist Information (' +p252118 +sg225234 +S'(artist)' +p252119 +sg225236 +S'\n' +p252120 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdf4.jpg' +p252121 +sg225240 +g27 +sa(dp252122 +g225230 +S'"Dief-achtighe Tijs" and "Nies Spoel-de-Nap"' +p252123 +sg225232 +S'Artist Information (' +p252124 +sg225234 +S'(artist)' +p252125 +sg225236 +S'\n' +p252126 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdf5.jpg' +p252127 +sg225240 +g27 +sa(dp252128 +g225230 +S'"\'t Suynighe Waertje" and "De Goelicke Waerdin"' +p252129 +sg225232 +S'Artist Information (' +p252130 +sg225234 +S'(artist)' +p252131 +sg225236 +S'\n' +p252132 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdf6.jpg' +p252133 +sg225240 +g27 +sa(dp252134 +g225230 +S'"Buyltje On-versaed" and "Waerner Altijdt-meer"' +p252135 +sg225232 +S'Artist Information (' +p252136 +sg225234 +S'(artist)' +p252137 +sg225236 +S'\n' +p252138 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdf7.jpg' +p252139 +sg225240 +g27 +sa(dp252140 +g225230 +S'"Foockel Lach-een-reys" and "Lazarus Sonder-Zeer"' +p252141 +sg225232 +S'Artist Information (' +p252142 +sg225234 +S'(artist)' +p252143 +sg225236 +S'\n' +p252144 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdf8.jpg' +p252145 +sg225240 +g27 +sa(dp252146 +g225230 +S'"Harme Snap-op" and "Keursje-sonder-naed"' +p252147 +sg225232 +S'Artist Information (' +p252148 +sg225234 +S'(artist)' +p252149 +sg225236 +S'\n' +p252150 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdf9.jpg' +p252151 +sg225240 +g27 +sa(dp252152 +g225230 +S'"Voorsichtighe Krijn" and "Broentje Spaer-pots"' +p252153 +sg225232 +S'Artist Information (' +p252154 +sg225234 +S'(artist)' +p252155 +sg225236 +S'\n' +p252156 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdfa.jpg' +p252157 +sg225240 +g27 +sa(dp252158 +g225230 +S'"Bruyntje Springh-in\'-t- Bed" and "Flip de Duyvel"' +p252159 +sg225232 +S'Artist Information (' +p252160 +sg225234 +S'(artist)' +p252161 +sg225236 +S'\n' +p252162 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdc1.jpg' +p252163 +sg225240 +g27 +sa(dp252164 +g225230 +S'"t Moye Molletje" and "Melis Bocke-baert"' +p252165 +sg225232 +S'Artist Information (' +p252166 +sg225234 +S'(artist)' +p252167 +sg225236 +S'\n' +p252168 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdc2.jpg' +p252169 +sg225240 +g27 +sa(dp252170 +g225230 +S'"Schonckje Wel-bedrocht" and "Pronckje Heel-volmaeckt"' +p252171 +sg225232 +S'Artist Information (' +p252172 +sg225234 +S'(artist)' +p252173 +sg225236 +S'\n' +p252174 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdfb.jpg' +p252175 +sg225240 +g27 +sa(dp252176 +g225230 +S'The Rest on the Flight into Egypt, or The Miracle of the Palm Tree' +p252177 +sg225232 +S'Simone Cantarini' +p252178 +sg225234 +S'red chalk, squared for transfer and incised around edges, on laid paper' +p252179 +sg225236 +S'late 1630s' +p252180 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00031/a00031a2.jpg' +p252181 +sg225240 +g27 +sa(dp252182 +g225230 +S'Model for East Building Mobile' +p252183 +sg225232 +S'Alexander Calder' +p252184 +sg225234 +S'painted aluminum and steel wire' +p252185 +sg225236 +S'1972' +p252186 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a0001652.jpg' +p252187 +sg225240 +g27 +sa(dp252188 +g225230 +S"Man with a Dog (L'homme au chien)" +p252189 +sg225232 +S'Pablo Picasso' +p252190 +sg225234 +S'etching with scraping in black on wove paper [reprinted around 1947]' +p252191 +sg225236 +S'1915' +p252192 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee26.jpg' +p252193 +sg225240 +g27 +sa(dp252194 +g225232 +S'Master MZ' +p252195 +sg225240 +g27 +sg225234 +S'engraving' +p252196 +sg225230 +S'The Martyrdom of Saint Catherine' +p252197 +sg225236 +S'c. 1500' +p252198 +sa(dp252199 +g225232 +S'Giovanni Battista Piranesi' +p252200 +sg225240 +g27 +sg225234 +S'1 vol: title plate, dedication page, 12 plates, table of contents' +p252201 +sg225230 +S'Prima Parte di Architetture, e Prospettive (First Edition, First Issue)' +p252202 +sg225236 +S'published 1743' +p252203 +sa(dp252204 +g225230 +S'Boy Balancing on a Ball' +p252205 +sg225232 +S'Johannes G\xc3\xb6tz' +p252206 +sg225234 +S'bronze' +p252207 +sg225236 +S'model 1888, cast probably c. 1905' +p252208 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00024/a0002442.jpg' +p252209 +sg225240 +g27 +sa(dp252210 +g225230 +S'The History of the United States' +p252211 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p252212 +sg225234 +S'etching (3 etchings on one sheet from one plate)' +p252213 +sg225236 +S'1783/1784' +p252214 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b312.jpg' +p252215 +sg225240 +g27 +sa(dp252216 +g225230 +S'The History of the United States' +p252217 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p252218 +sg225234 +S'etching' +p252219 +sg225236 +S'1783/1784' +p252220 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b30a.jpg' +p252221 +sg225240 +g27 +sa(dp252222 +g225230 +S'The History of the United States' +p252223 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p252224 +sg225234 +S'etching (2 etchings on one sheet from one plate)' +p252225 +sg225236 +S'1783/1784' +p252226 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b310.jpg' +p252227 +sg225240 +g27 +sa(dp252228 +g225230 +S'The History of the United States' +p252229 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p252230 +sg225234 +S'etching (2 etchings on one sheet from one plate)' +p252231 +sg225236 +S'1783/1784' +p252232 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b30f.jpg' +p252233 +sg225240 +g27 +sa(dp252234 +g225230 +S'The History of the United States' +p252235 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p252236 +sg225234 +S'etching' +p252237 +sg225236 +S'1783/1784' +p252238 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b30b.jpg' +p252239 +sg225240 +g27 +sa(dp252240 +g225230 +S'The History of the United States' +p252241 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p252242 +sg225234 +S'etching (3 etchings on one sheet from one plate)' +p252243 +sg225236 +S'1783/1784' +p252244 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b313.jpg' +p252245 +sg225240 +g27 +sa(dp252246 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252247 +sg225240 +g27 +sg225234 +S', unknown date' +p252248 +sg225230 +S'Almond Trees in Blossom' +p252249 +sg225236 +S'\n' +p252250 +sa(dp252251 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252252 +sg225240 +g27 +sg225234 +S', unknown date' +p252253 +sg225230 +S'Cactus' +p252254 +sg225236 +S'\n' +p252255 +sa(dp252256 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252257 +sg225240 +g27 +sg225234 +S', unknown date' +p252258 +sg225230 +S'Cactus' +p252259 +sg225236 +S'\n' +p252260 +sa(dp252261 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252262 +sg225240 +g27 +sg225234 +S', 1951' +p252263 +sg225230 +S'Christ on the Cross' +p252264 +sg225236 +S'\n' +p252265 +sa(dp252266 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252267 +sg225240 +g27 +sg225234 +S', unknown date' +p252268 +sg225230 +S'Courtyard, Camp de Mar, Mallorca' +p252269 +sg225236 +S'\n' +p252270 +sa(dp252271 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252272 +sg225240 +g27 +sg225234 +S', unknown date' +p252273 +sg225230 +S'Copy after Goya\'s "Gran disparate"' +p252274 +sg225236 +S'\n' +p252275 +sa(dp252276 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252277 +sg225240 +g27 +sg225234 +S', unknown date' +p252278 +sg225230 +S'Farm, Camp de Mar' +p252279 +sg225236 +S'\n' +p252280 +sa(dp252281 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252282 +sg225240 +g27 +sg225234 +S', unknown date' +p252283 +sg225230 +S'Group of Trees' +p252284 +sg225236 +S'\n' +p252285 +sa(dp252286 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252287 +sg225240 +g27 +sg225234 +S', unknown date' +p252288 +sg225230 +S'Head Fantasy' +p252289 +sg225236 +S'\n' +p252290 +sa(dp252291 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252292 +sg225240 +g27 +sg225234 +S', unknown date' +p252293 +sg225230 +S'Landscape with Three Olive Trees' +p252294 +sg225236 +S'\n' +p252295 +sa(dp252296 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252297 +sg225240 +g27 +sg225234 +S', unknown date' +p252298 +sg225230 +S'Landscape with Farmstead' +p252299 +sg225236 +S'\n' +p252300 +sa(dp252301 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252302 +sg225240 +g27 +sg225234 +S', 1951' +p252303 +sg225230 +S'Landscape with Farmstead' +p252304 +sg225236 +S'\n' +p252305 +sa(dp252306 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252307 +sg225240 +g27 +sg225234 +S', 1951' +p252308 +sg225230 +S'Landscape Fantasy, with Cactus and Sun' +p252309 +sg225236 +S'\n' +p252310 +sa(dp252311 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252312 +sg225240 +g27 +sg225234 +S', 1951' +p252313 +sg225230 +S'Landscape Fantasy, with Cactus and Setting Sun' +p252314 +sg225236 +S'\n' +p252315 +sa(dp252316 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252317 +sg225240 +g27 +sg225234 +S', unknown date' +p252318 +sg225230 +S'Landscape Fantasy with Rocks' +p252319 +sg225236 +S'\n' +p252320 +sa(dp252321 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252322 +sg225240 +g27 +sg225234 +S', unknown date' +p252323 +sg225230 +S'Landscape Fantasy with Large Rocks and Trees' +p252324 +sg225236 +S'\n' +p252325 +sa(dp252326 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252327 +sg225240 +g27 +sg225234 +S', unknown date' +p252328 +sg225230 +S'Landscape Fantasy with Sea and Rocks' +p252329 +sg225236 +S'\n' +p252330 +sa(dp252331 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252332 +sg225240 +g27 +sg225234 +S', unknown date' +p252333 +sg225230 +S'Landscape with Prominent Trees' +p252334 +sg225236 +S'\n' +p252335 +sa(dp252336 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252337 +sg225240 +g27 +sg225234 +S', unknown date' +p252338 +sg225230 +S'Landscape with Prominent Trees' +p252339 +sg225236 +S'\n' +p252340 +sa(dp252341 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252342 +sg225240 +g27 +sg225234 +S', 1951' +p252343 +sg225230 +S'The Mother and Child' +p252344 +sg225236 +S'\n' +p252345 +sa(dp252346 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252347 +sg225240 +g27 +sg225234 +S', unknown date' +p252348 +sg225230 +S'The Old Basket Weaver of Camp de Mar' +p252349 +sg225236 +S'\n' +p252350 +sa(dp252351 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252352 +sg225240 +g27 +sg225234 +S', unknown date' +p252353 +sg225230 +S'The Old Basket Weaver of Camp de Mar (?)' +p252354 +sg225236 +S'\n' +p252355 +sa(dp252356 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252357 +sg225240 +g27 +sg225234 +S', unknown date' +p252358 +sg225230 +S'Self-Portrait' +p252359 +sg225236 +S'\n' +p252360 +sa(dp252361 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252362 +sg225240 +g27 +sg225234 +S', unknown date' +p252363 +sg225230 +S'Self-Portrait' +p252364 +sg225236 +S'\n' +p252365 +sa(dp252366 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252367 +sg225240 +g27 +sg225234 +S', unknown date' +p252368 +sg225230 +S'Self-Portrait' +p252369 +sg225236 +S'\n' +p252370 +sa(dp252371 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252372 +sg225240 +g27 +sg225234 +S', unknown date' +p252373 +sg225230 +S'Self-Portrait' +p252374 +sg225236 +S'\n' +p252375 +sa(dp252376 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252377 +sg225240 +g27 +sg225234 +S', unknown date' +p252378 +sg225230 +S'Self-Portrait' +p252379 +sg225236 +S'\n' +p252380 +sa(dp252381 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252382 +sg225240 +g27 +sg225234 +S', unknown date' +p252383 +sg225230 +S'Self-Portrait' +p252384 +sg225236 +S'\n' +p252385 +sa(dp252386 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252387 +sg225240 +g27 +sg225234 +S', unknown date' +p252388 +sg225230 +S'Self-Portrait' +p252389 +sg225236 +S'\n' +p252390 +sa(dp252391 +g225232 +S'Tom\xc3\xa1s Joseph Harris' +p252392 +sg225240 +g27 +sg225234 +S', unknown date' +p252393 +sg225230 +S'Self-Portrait with Background of Trees' +p252394 +sg225236 +S'\n' +p252395 +sa(dp252396 +g225230 +S'Jacob and Rebecca before Isaac [recto]' +p252397 +sg225232 +S'French 18th Century' +p252398 +sg225234 +S'overall: 21.8 x 31.2 cm (8 9/16 x 12 5/16 in.)' +p252399 +sg225236 +S'\npen and brown ink with wash over black chalk on laid paper' +p252400 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007204.jpg' +p252401 +sg225240 +g27 +sa(dp252402 +g225232 +S'French 18th Century' +p252403 +sg225240 +g27 +sg225234 +S'overall: 21.8 x 31.2 cm (8 9/16 x 12 5/16 in.)' +p252404 +sg225230 +S'A Centaur Carrying a Maiden [verso]' +p252405 +sg225236 +S'\nblack chalk on laid paper' +p252406 +sa(dp252407 +g225230 +S'Red Rose Cantata' +p252408 +sg225232 +S'Alma Thomas' +p252409 +sg225234 +S'acrylic on canvas' +p252410 +sg225236 +S'1973' +p252411 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000277.jpg' +p252412 +sg225240 +S'The unevenly spaced, staccato brushstrokes on the white canvas form a visual rhythm, as if the artist had painted a cantata, a type of musical composition. Tremendous delicacy is shown in the play of space and color, with the white "background" as important to the overall effect as the red bursts of color. The harmonic color field is no accident: the compositional and color structure of \n Thomas came into the professional art world late in life, after teaching art for thirty-five years in the Washington, DC, public schools. Her age, however, did not prevent her from gaining recognition as an artist. In 1972, one year before she painted \n ' +p252413 +sa(dp252414 +g225232 +S'Francis Bacon' +p252415 +sg225240 +g27 +sg225234 +S'oil on canvas' +p252416 +sg225230 +S'Study for a Running Dog' +p252417 +sg225236 +S'c. 1954' +p252418 +sa(dp252419 +g225230 +S'Landscape with Ruins, Pastoral Figures, and Trees' +p252420 +sg225232 +S'Claude Lorrain' +p252421 +sg225234 +S'pen and brown ink with graphite and brown wash over black chalk, heightened with white chalk, on apricot-prepared paper' +p252422 +sg225236 +S'c. 1650' +p252423 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022e0.jpg' +p252424 +sg225240 +g27 +sa(dp252425 +g225230 +S'Riveaux' +p252426 +sg225232 +S'George Cuitt the Younger' +p252427 +sg225234 +S'etching on papier mince' +p252428 +sg225236 +S'1825' +p252429 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c70.jpg' +p252430 +sg225240 +g27 +sa(dp252431 +g225230 +S'Fountains' +p252432 +sg225232 +S'George Cuitt the Younger' +p252433 +sg225234 +S'etching' +p252434 +sg225236 +S'1822' +p252435 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c60.jpg' +p252436 +sg225240 +g27 +sa(dp252437 +g225230 +S'Riveaux' +p252438 +sg225232 +S'George Cuitt the Younger' +p252439 +sg225234 +S'etching on papier mince' +p252440 +sg225236 +S'1825' +p252441 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c50.jpg' +p252442 +sg225240 +g27 +sa(dp252443 +g225230 +S'Saxon Arch' +p252444 +sg225232 +S'George Cuitt the Younger' +p252445 +sg225234 +S'etching' +p252446 +sg225236 +S'1810' +p252447 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c40.jpg' +p252448 +sg225240 +g27 +sa(dp252449 +g225230 +S'Riveaux' +p252450 +sg225232 +S'George Cuitt the Younger' +p252451 +sg225234 +S'etching on papier mince' +p252452 +sg225236 +S'1825' +p252453 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d6f.jpg' +p252454 +sg225240 +g27 +sa(dp252455 +g225230 +S'Riveaux' +p252456 +sg225232 +S'George Cuitt the Younger' +p252457 +sg225234 +S'etching on papier mince' +p252458 +sg225236 +S'1825' +p252459 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d7e.jpg' +p252460 +sg225240 +g27 +sa(dp252461 +g225230 +S'Fountains' +p252462 +sg225232 +S'George Cuitt the Younger' +p252463 +sg225234 +S'etching' +p252464 +sg225236 +S'1822' +p252465 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005ae0.jpg' +p252466 +sg225240 +g27 +sa(dp252467 +g225230 +S'The Great Hall at Conway Castle' +p252468 +sg225232 +S'George Cuitt the Younger' +p252469 +sg225234 +S'etching' +p252470 +sg225236 +S'unknown date\n' +p252471 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d8c.jpg' +p252472 +sg225240 +g27 +sa(dp252473 +g225230 +S'Riveaux' +p252474 +sg225232 +S'George Cuitt the Younger' +p252475 +sg225234 +S'etching on papier mince' +p252476 +sg225236 +S'1824' +p252477 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d9c.jpg' +p252478 +sg225240 +g27 +sa(dp252479 +g225230 +S'An Old Woman at the Toilet Table' +p252480 +sg225232 +S'Artist Information (' +p252481 +sg225234 +S'(artist after)' +p252482 +sg225236 +S'\n' +p252483 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2d3.jpg' +p252484 +sg225240 +g27 +sa(dp252485 +g225230 +S'Calm (Calme)' +p252486 +sg225232 +S'Paul Huet' +p252487 +sg225234 +S'lithograph' +p252488 +sg225236 +S'1832' +p252489 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009acd.jpg' +p252490 +sg225240 +g27 +sa(dp252491 +g225230 +S"View of the Chateau d'Eu (Vue du Chateau d'Eu)" +p252492 +sg225232 +S'Paul Huet' +p252493 +sg225234 +S'lithograph' +p252494 +sg225236 +S'1834' +p252495 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a00098bf.jpg' +p252496 +sg225240 +g27 +sa(dp252497 +g225230 +S'Jacques Auguste de Thou' +p252498 +sg225232 +S'Artist Information (' +p252499 +sg225234 +S'(artist after)' +p252500 +sg225236 +S'\n' +p252501 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b55d.jpg' +p252502 +sg225240 +g27 +sa(dp252503 +g225230 +S'Chancellor Michel Le Tellier' +p252504 +sg225232 +S'Artist Information (' +p252505 +sg225234 +S'(artist after)' +p252506 +sg225236 +S'\n' +p252507 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b63.jpg' +p252508 +sg225240 +g27 +sa(dp252509 +g225230 +S'Model for "Poetry and Music"' +p252510 +sg225232 +S'Clodion' +p252511 +sg225234 +S'terracotta' +p252512 +sg225236 +S'1774' +p252513 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c06.jpg' +p252514 +sg225240 +S'Clodion specialized in small-scale terracotta figure groups, often with playfully erotic\nsubjects loosely based on ancient myths concerning the wine god Bacchus and his devotees.\nIntended for enjoyment at close range in elegant domestic settings, these inventions were the\nfruits of years of study in Italy. Although signed and clearly meant to be preserved, this example\nwas sculpted as a model for a large-scale work in marble. The National Gallery also owns the\n\n The marble \n ' +p252515 +sa(dp252516 +g225230 +S'The Triumph of Caesar: The Elephants' +p252517 +sg225232 +S'Artist Information (' +p252518 +sg225234 +S'Italian, active c. 1475/1519' +p252519 +sg225236 +S'(artist)' +p252520 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f15.jpg' +p252521 +sg225240 +g27 +sa(dp252522 +g225230 +S'Saint Jerome Hearing the Trumpet of the Last Judgment' +p252523 +sg225232 +S'Jusepe de Ribera' +p252524 +sg225234 +S'etching, drypoint, and engraving' +p252525 +sg225236 +S'1621' +p252526 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a00067cc.jpg' +p252527 +sg225240 +g27 +sa(dp252528 +g225230 +S"Light Artillery Officer of the Imperial Guard (Officier d'artillerie legerie de la garde imperiale)" +p252529 +sg225232 +S'Th\xc3\xa9odore Gericault' +p252530 +sg225234 +S'lithograph on papier mince' +p252531 +sg225236 +S'1823' +p252532 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009ab7.jpg' +p252533 +sg225240 +g27 +sa(dp252534 +g225230 +S'Horse Devoured by a Lion (Cheval devore par un lion)' +p252535 +sg225232 +S'Th\xc3\xa9odore Gericault' +p252536 +sg225234 +S'lithograph on papier mince' +p252537 +sg225236 +S'1823' +p252538 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009abb.jpg' +p252539 +sg225240 +g27 +sa(dp252540 +g225230 +S'View of a Garden' +p252541 +sg225232 +S'Nicolas de Son' +p252542 +sg225234 +S'etching' +p252543 +sg225236 +S'unknown date\n' +p252544 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c22.jpg' +p252545 +sg225240 +g27 +sa(dp252546 +g225230 +S'Petit Bosquet au Chasseur' +p252547 +sg225232 +S'Jean-Jacques de Boissieu' +p252548 +sg225234 +S'etching and drypoint' +p252549 +sg225236 +S'1772' +p252550 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cd8.jpg' +p252551 +sg225240 +g27 +sa(dp252552 +g225230 +S'Entree de Foret' +p252553 +sg225232 +S'Jean-Jacques de Boissieu' +p252554 +sg225234 +S'etching with plate tone' +p252555 +sg225236 +S'1772' +p252556 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f4b.jpg' +p252557 +sg225240 +g27 +sa(dp252558 +g225230 +S'Portrait of a Man' +p252559 +sg225232 +S'Felipe Gomez de Valencia' +p252560 +sg225234 +S'pen and brown ink on laid paper' +p252561 +sg225236 +S'unknown date\n' +p252562 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00069/a00069fa.jpg' +p252563 +sg225240 +g27 +sa(dp252564 +g225230 +S'Death of Seneca' +p252565 +sg225232 +S'Lodovico Lana' +p252566 +sg225234 +S'etching' +p252567 +sg225236 +S'unknown date\n' +p252568 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca02.jpg' +p252569 +sg225240 +g27 +sa(dp252570 +g225230 +S'Sir Thomas Isham' +p252571 +sg225232 +S'David Loggan' +p252572 +sg225234 +S'engraving' +p252573 +sg225236 +S'1676' +p252574 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076bb.jpg' +p252575 +sg225240 +g27 +sa(dp252576 +g225230 +S'Robert Greville, Lord Brooke' +p252577 +sg225232 +S'Gerard Valck' +p252578 +sg225234 +S'engraving and etching' +p252579 +sg225236 +S'1678' +p252580 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5c9.jpg' +p252581 +sg225240 +g27 +sa(dp252582 +g225230 +S'Les chats' +p252583 +sg225232 +S'Champfleury' +p252584 +sg225234 +S', published 1870' +p252585 +sg225236 +S'\n' +p252586 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c8d.jpg' +p252587 +sg225240 +g27 +sa(dp252588 +g225232 +S'Edouard Manet' +p252589 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p252590 +sg225230 +S'The Cat and the Flowers (Le chat et les fleurs)' +p252591 +sg225236 +S'1869' +p252592 +sa(dp252593 +g225230 +S'Spectators Amazed' +p252594 +sg225232 +S'Battista Franco' +p252595 +sg225234 +S'pen and brown ink over red and black chalk on laid paper' +p252596 +sg225236 +S'1540s' +p252597 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a0007500.jpg' +p252598 +sg225240 +g27 +sa(dp252599 +g225232 +S'Artist Information (' +p252600 +sg225240 +g27 +sg225234 +S'(artist after)' +p252601 +sg225230 +S'The Resting Holy Family with Dancing Angels' +p252602 +sg225236 +S'\n' +p252603 +sa(dp252604 +g225232 +S'Adriaen Frans Boudewyns' +p252605 +sg225240 +g27 +sg225234 +S'engraving' +p252606 +sg225230 +S'Large Landscape - Two Men in a Garden' +p252607 +sg225236 +S'unknown date\n' +p252608 +sa(dp252609 +g225230 +S'The Adoration of the Shepherds' +p252610 +sg225232 +S'Artist Information (' +p252611 +sg225234 +S'(artist after)' +p252612 +sg225236 +S'\n' +p252613 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d61a.jpg' +p252614 +sg225240 +g27 +sa(dp252615 +g225230 +S'Iphigenia Recognizing Her Brother' +p252616 +sg225232 +S'Agostino dei Musi' +p252617 +sg225234 +S'engraving' +p252618 +sg225236 +S'unknown date\n' +p252619 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c847.jpg' +p252620 +sg225240 +g27 +sa(dp252621 +g225230 +S'Circe-Surface and Volume in Nature' +p252622 +sg225232 +S'Joseph Cornell' +p252623 +sg225234 +S"mixed media collage in artist's wood frame" +p252624 +sg225236 +S'c. 1965' +p252625 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008c6.jpg' +p252626 +sg225240 +g27 +sa(dp252627 +g225230 +S'Guillaume Apollinaire' +p252628 +sg225232 +S'Louis Casimir Ladislas Marcoussis' +p252629 +sg225234 +S'red crayon on wove paper' +p252630 +sg225236 +S'1921' +p252631 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d1c.jpg' +p252632 +sg225240 +g27 +sa(dp252633 +g225230 +S'Composition' +p252634 +sg225232 +S'Adolph Gottlieb' +p252635 +sg225234 +S'etching in black on wove paper' +p252636 +sg225236 +S'c. 1939' +p252637 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000aa8.jpg' +p252638 +sg225240 +g27 +sa(dp252639 +g225232 +S'Artist Information (' +p252640 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p252641 +sg225236 +S'(printer)' +p252642 +sa(dp252643 +g225230 +S'Harrison Gray' +p252644 +sg225232 +S'John Singleton Copley' +p252645 +sg225234 +S'oil on canvas' +p252646 +sg225236 +S'c. 1767' +p252647 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000063.jpg' +p252648 +sg225240 +g27 +sa(dp252649 +g225230 +S'Flowers in a Classical Vase' +p252650 +sg225232 +S'French 17th Century' +p252651 +sg225234 +S'overall: 74.9 x 61.5 cm (29 1/2 x 24 3/16 in.)\r\nframed: 99 x 83.8 x 9.5 cm (39 x 33 x 3 3/4 in.)' +p252652 +sg225236 +S'\noil on canvas' +p252653 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a0d.jpg' +p252654 +sg225240 +g27 +sa(dp252655 +g225230 +S'Flowers in a Vase' +p252656 +sg225232 +S'Philip van Kouwenbergh' +p252657 +sg225234 +S'oil on canvas' +p252658 +sg225236 +S'c. 1700' +p252659 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e6d.jpg' +p252660 +sg225240 +g27 +sa(dp252661 +g225230 +S'Harriet Husson Carville (Mrs. James G. Carville)' +p252662 +sg225232 +S'Thomas Eakins' +p252663 +sg225234 +S'oil on canvas' +p252664 +sg225236 +S'1904' +p252665 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000091.jpg' +p252666 +sg225240 +g27 +sa(dp252667 +g225232 +S'Louis-Simon Boizot' +p252668 +sg225240 +g27 +sg225234 +S'marble' +p252669 +sg225230 +S'Louis XVI' +p252670 +sg225236 +S'1777' +p252671 +sa(dp252672 +g225232 +S'Artist Information (' +p252673 +sg225240 +g27 +sg225234 +S'Hungarian, 1895 - 1978' +p252674 +sg225230 +S'Works of the Graphic Department of the Royal Hungarian Academy of Art' +p252675 +sg225236 +S'(editor)' +p252676 +sa(dp252677 +g225232 +S'Artist Information (' +p252678 +sg225240 +g27 +sg225234 +S'Hungarian, 1895 - 1978' +p252679 +sg225230 +S'Works of the Graphic Department of the Royal Hungarian Academy of Art' +p252680 +sg225236 +S'(editor)' +p252681 +sa(dp252682 +g225232 +S'Artist Information (' +p252683 +sg225240 +g27 +sg225234 +S'Hungarian, 1895 - 1978' +p252684 +sg225230 +S'Works of the Graphic Department of the Royal Hungarian Academy of Art' +p252685 +sg225236 +S'(editor)' +p252686 +sa(dp252687 +g225232 +S'Artist Information (' +p252688 +sg225240 +g27 +sg225234 +S'Hungarian, 1895 - 1978' +p252689 +sg225230 +S'Works of the Graphic Department of the Royal Hungarian Academy of Art' +p252690 +sg225236 +S'(editor)' +p252691 +sa(dp252692 +g225232 +S'Artist Information (' +p252693 +sg225240 +g27 +sg225234 +S'Hungarian, 1895 - 1978' +p252694 +sg225230 +S'Works of the Graphic Department of the Royal Hungarian Academy of Art' +p252695 +sg225236 +S'(editor)' +p252696 +sa(dp252697 +g225232 +S'Artist Information (' +p252698 +sg225240 +g27 +sg225234 +S'Hungarian, 1895 - 1978' +p252699 +sg225230 +S'Works of the Graphic Department of the Royal Hungarian Academy of Art' +p252700 +sg225236 +S'(editor)' +p252701 +sa(dp252702 +g225232 +S'Nandor Lajos Varga' +p252703 +sg225240 +g27 +sg225234 +S'drypoint' +p252704 +sg225230 +S'Half-Length of a Girl' +p252705 +sg225236 +S'1939' +p252706 +sa(dp252707 +g225232 +S'Nandor Lajos Varga' +p252708 +sg225240 +g27 +sg225234 +S'engraving and drypoint in brown' +p252709 +sg225230 +S"Head of the Artist's Infant Daughter, Lea" +p252710 +sg225236 +S'1949' +p252711 +sa(dp252712 +g225232 +S'Nandor Lajos Varga' +p252713 +sg225240 +g27 +sg225234 +S'engraving and drypoint' +p252714 +sg225230 +S"Head of the Artist's Infant Daughter, Lea" +p252715 +sg225236 +S'1949' +p252716 +sa(dp252717 +g225232 +S'Nandor Lajos Varga' +p252718 +sg225240 +g27 +sg225234 +S'woodcut' +p252719 +sg225230 +S'Head of a Girl' +p252720 +sg225236 +S'unknown date\n' +p252721 +sa(dp252722 +g225232 +S'Nandor Lajos Varga' +p252723 +sg225240 +g27 +sg225234 +S'engraving and drypoint with plate tone' +p252724 +sg225230 +S'Landscape' +p252725 +sg225236 +S'unknown date\n' +p252726 +sa(dp252727 +g225232 +S'Nandor Lajos Varga' +p252728 +sg225240 +g27 +sg225234 +S'engraving and drypoint' +p252729 +sg225230 +S'Self-Portrait' +p252730 +sg225236 +S'1946' +p252731 +sa(dp252732 +g225232 +S'Robert Rius' +p252733 +sg225240 +g27 +sg225234 +S', published 1940' +p252734 +sg225230 +S"Frappe de l'Echo" +p252735 +sg225236 +S'\n' +p252736 +sa(dp252737 +g225232 +S'Victor Brauner' +p252738 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p252739 +sg225230 +S'Frontispiece' +p252740 +sg225236 +S'published 1940' +p252741 +sa(dp252742 +g225232 +S'Jacob Kainen' +p252743 +sg225240 +g27 +sg225234 +S'etching, engraving, and aquatint in black on Rives BFK paper' +p252744 +sg225230 +S'Mr. Trouble' +p252745 +sg225236 +S'1976' +p252746 +sa(dp252747 +g225230 +S'Variation Sur "Aubette"' +p252748 +sg225232 +S'Artist Information (' +p252749 +sg225234 +S'(artist after)' +p252750 +sg225236 +S'\n' +p252751 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ef3.jpg' +p252752 +sg225240 +g27 +sa(dp252753 +g225230 +S'New York' +p252754 +sg225232 +S'Mark Tobey' +p252755 +sg225234 +S'tempera on paperboard' +p252756 +sg225236 +S'1944' +p252757 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000278.jpg' +p252758 +sg225240 +g27 +sa(dp252759 +g225230 +S'A Bird Perched on a Branch with Fruit' +p252760 +sg225232 +S'Andrea Mantegna' +p252761 +sg225234 +S'pen and brown ink on laid paper' +p252762 +sg225236 +S'1460s' +p252763 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00025/a00025f9.jpg' +p252764 +sg225240 +g27 +sa(dp252765 +g225230 +S'Road by a Field of Cabbages' +p252766 +sg225232 +S'Camille Pissarro' +p252767 +sg225234 +S'color monotype' +p252768 +sg225236 +S'c. 1880' +p252769 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a00099ac.jpg' +p252770 +sg225240 +g27 +sa(dp252771 +g225230 +S'Title Plate' +p252772 +sg225232 +S'Giovanni Battista Piranesi' +p252773 +sg225234 +S'etching, engraving, sulphur tint or open bite' +p252774 +sg225236 +S'published 1749/1750' +p252775 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc1d.jpg' +p252776 +sg225240 +g27 +sa(dp252777 +g225230 +S'The Round Tower' +p252778 +sg225232 +S'Giovanni Battista Piranesi' +p252779 +sg225234 +S'etching, engraving, sulphur tint or open bite, burnishing' +p252780 +sg225236 +S'published 1749/1750' +p252781 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc1e.jpg' +p252782 +sg225240 +g27 +sa(dp252783 +g225230 +S'The Grand Piazza' +p252784 +sg225232 +S'Giovanni Battista Piranesi' +p252785 +sg225234 +S'etching, engraving, sulphur tint or open bite, burnishing' +p252786 +sg225236 +S'published 1749/1750' +p252787 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc1f.jpg' +p252788 +sg225240 +g27 +sa(dp252789 +g225230 +S'The Smoking Fire' +p252790 +sg225232 +S'Giovanni Battista Piranesi' +p252791 +sg225234 +S'etching, engraving, sulphur tint or open bite, burnishing' +p252792 +sg225236 +S'published 1749/1750' +p252793 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc20.jpg' +p252794 +sg225240 +g27 +sa(dp252795 +g225230 +S'The Drawbridge' +p252796 +sg225232 +S'Giovanni Battista Piranesi' +p252797 +sg225234 +S'etching, engraving, scratching' +p252798 +sg225236 +S'published 1749/1750' +p252799 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00053/a00053cf.jpg' +p252800 +sg225240 +g27 +sa(dp252801 +g225230 +S'The Staircase with Trophies' +p252802 +sg225232 +S'Giovanni Battista Piranesi' +p252803 +sg225234 +S'etching, engraving' +p252804 +sg225236 +S'published 1749/1750' +p252805 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc21.jpg' +p252806 +sg225240 +g27 +sa(dp252807 +g225230 +S'The Giant Wheel' +p252808 +sg225232 +S'Giovanni Battista Piranesi' +p252809 +sg225234 +S'etching, engraving' +p252810 +sg225236 +S'published 1749/1750' +p252811 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc22.jpg' +p252812 +sg225240 +g27 +sa(dp252813 +g225230 +S'Prisoners on a Projecting Platform' +p252814 +sg225232 +S'Giovanni Battista Piranesi' +p252815 +sg225234 +S'etching, engraving, sulphur tint or open bite, burnishing' +p252816 +sg225236 +S'published 1749/1750' +p252817 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc25.jpg' +p252818 +sg225240 +g27 +sa(dp252819 +g225230 +S'The Arch with a Shell Ornament' +p252820 +sg225232 +S'Giovanni Battista Piranesi' +p252821 +sg225234 +S'etching, engraving, scratching, sulphur tint or open bite, drypoint' +p252822 +sg225236 +S'published 1749/1750' +p252823 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc24.jpg' +p252824 +sg225240 +g27 +sa(dp252825 +g225230 +S'The Sawhorse' +p252826 +sg225232 +S'Giovanni Battista Piranesi' +p252827 +sg225234 +S'etching, engraving, sulphur tint or open bite, scratching' +p252828 +sg225236 +S'published 1749/1750' +p252829 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc23.jpg' +p252830 +sg225240 +g27 +sa(dp252831 +g225230 +S'The Well' +p252832 +sg225232 +S'Giovanni Battista Piranesi' +p252833 +sg225234 +S'etching, engraving, scratching, burnishing, lavis' +p252834 +sg225236 +S'published 1749/1750' +p252835 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc26.jpg' +p252836 +sg225240 +g27 +sa(dp252837 +g225230 +S'The Gothic Arch' +p252838 +sg225232 +S'Giovanni Battista Piranesi' +p252839 +sg225234 +S'etching, engraving, sulphur tint or open bite, and burnishing' +p252840 +sg225236 +S'published 1749/1750' +p252841 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f67.jpg' +p252842 +sg225240 +g27 +sa(dp252843 +g225230 +S'The Pier with a Lamp' +p252844 +sg225232 +S'Giovanni Battista Piranesi' +p252845 +sg225234 +S'etching, engraving, sulphur tint or open bite, and burnishing' +p252846 +sg225236 +S'published 1749/1750' +p252847 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e2d.jpg' +p252848 +sg225240 +g27 +sa(dp252849 +g225230 +S'The Pier with Chains' +p252850 +sg225232 +S'Giovanni Battista Piranesi' +p252851 +sg225234 +S'etching, engraving, sulphur tint or open bite, burnishing' +p252852 +sg225236 +S'published 1749/1750' +p252853 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc27.jpg' +p252854 +sg225240 +g27 +sa(dp252855 +g225230 +S'The Sanctuary of Hercules' +p252856 +sg225232 +S'Arnold B\xc3\xb6cklin' +p252857 +sg225234 +S'oil on wood' +p252858 +sg225236 +S'1884' +p252859 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000735.jpg' +p252860 +sg225240 +S"In Arnold Böcklin's \n At first glance, the subject appears very realistic and the shrine archaeologically accurate. Yet the scene also conveys a definite mood of mystery. The stones' pure and richly harmonious colors glow with an unnatural radiance. The gloom inside the grove is equaled by the dark ominous clouds, lit by flashes of lightning on the horizon. Indebted to the romantics of the first half of the 19th century, Böcklin rejected the idea of painting solely from nature, and strove to express his own feelings through nature, with the use of vibrant coloration and dramatic lighting.\n " +p252861 +sa(dp252862 +g225230 +S'Number 1, 1950 (Lavender Mist)' +p252863 +sg225232 +S'Jackson Pollock' +p252864 +sg225234 +S'oil, enamel and aluminum on canvas' +p252865 +sg225236 +S'1950' +p252866 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b30.jpg' +p252867 +sg225240 +S'In 1947 Jackson Pollock introduced a radically innovative method of painting in which he\n poured paint directly onto unprimed canvas that he tacked to the studio floor. Deploying sticks or\n hardened brushes, Pollock circled around the canvas, flinging, dripping, and splashing skeins of\n paint onto its surface, layer upon layer, until a dense web of color was formed. Although his\n process, which was filmed in 1950 by the photographer Hans Namuth, was spontaneous and\n intuitive, Pollock exercised remarkable control over it and insisted, "there is no\n accident."\n Number 1 (Lavender Mist)\n ' +p252868 +sa(dp252869 +g225230 +S'Concours pour le Prix... (The Competition)' +p252870 +sg225232 +S'Artist Information (' +p252871 +sg225234 +S'(artist after)' +p252872 +sg225236 +S'\n' +p252873 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f68.jpg' +p252874 +sg225240 +g27 +sa(dp252875 +g225230 +S'Wooded Landscape with Two Country Carts and Figures' +p252876 +sg225232 +S'Thomas Gainsborough' +p252877 +sg225234 +S'soft-ground etching' +p252878 +sg225236 +S'1779/1780' +p252879 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a00078a8.jpg' +p252880 +sg225240 +g27 +sa(dp252881 +g225230 +S'Wooded Landscape with Riders' +p252882 +sg225232 +S'Thomas Gainsborough' +p252883 +sg225234 +S'aquatint' +p252884 +sg225236 +S'mid 1780s' +p252885 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a00078ac.jpg' +p252886 +sg225240 +g27 +sa(dp252887 +g225230 +S'The Virgin Supporting the Body of Christ' +p252888 +sg225232 +S'Master F' +p252889 +sg225234 +S'engraving' +p252890 +sg225236 +S'unknown date\n' +p252891 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccdc.jpg' +p252892 +sg225240 +g27 +sa(dp252893 +g225230 +S'The Adoration of the Shepherds' +p252894 +sg225232 +S'Parmigianino' +p252895 +sg225234 +S'etching' +p252896 +sg225236 +S'unknown date\n' +p252897 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c775.jpg' +p252898 +sg225240 +g27 +sa(dp252899 +g225230 +S'The Entombment' +p252900 +sg225232 +S'Parmigianino' +p252901 +sg225234 +S'etching and drypoint' +p252902 +sg225236 +S'unknown date\n' +p252903 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c851.jpg' +p252904 +sg225240 +g27 +sa(dp252905 +g225230 +S'A View of Savelli near Albano' +p252906 +sg225232 +S'Jan de Bisschop' +p252907 +sg225234 +S'brush and brown ink with touches of gray and yellow wash' +p252908 +sg225236 +S'unknown date\n' +p252909 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f20.jpg' +p252910 +sg225240 +g27 +sa(dp252911 +g225230 +S'Construction' +p252912 +sg225232 +S'Werner Drewes' +p252913 +sg225234 +S'engraving in black' +p252914 +sg225236 +S'1944' +p252915 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a8b.jpg' +p252916 +sg225240 +g27 +sa(dp252917 +g225232 +S'Werner Drewes' +p252918 +sg225240 +g27 +sg225234 +S'etching' +p252919 +sg225230 +S'Sunset' +p252920 +sg225236 +S'1944' +p252921 +sa(dp252922 +g225230 +S'Waiting' +p252923 +sg225232 +S'Mary Cassatt' +p252924 +sg225234 +S'aquatint and soft-ground etching' +p252925 +sg225236 +S'c. 1879' +p252926 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa2c.jpg' +p252927 +sg225240 +g27 +sa(dp252928 +g225230 +S'A Native Dance' +p252929 +sg225232 +S'William Hogarth' +p252930 +sg225234 +S'engraving' +p252931 +sg225236 +S'published 1723' +p252932 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a00078c8.jpg' +p252933 +sg225240 +g27 +sa(dp252934 +g225230 +S'The Inside of a Mosque' +p252935 +sg225232 +S'William Hogarth' +p252936 +sg225234 +S'engraving' +p252937 +sg225236 +S'published 1723' +p252938 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a00078ca.jpg' +p252939 +sg225240 +g27 +sa(dp252940 +g225230 +S'The Seraglio' +p252941 +sg225232 +S'William Hogarth' +p252942 +sg225234 +S'engraving' +p252943 +sg225236 +S'published 1723' +p252944 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a00078be.jpg' +p252945 +sg225240 +g27 +sa(dp252946 +g225230 +S'Saint Jerome in the Cave' +p252947 +sg225232 +S'Albrecht Altdorfer' +p252948 +sg225234 +S'woodcut' +p252949 +sg225236 +S'1515' +p252950 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a782.jpg' +p252951 +sg225240 +g27 +sa(dp252952 +g225230 +S'The Entombment' +p252953 +sg225232 +S'Artist Information (' +p252954 +sg225234 +S'(artist after)' +p252955 +sg225236 +S'\n' +p252956 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c89f.jpg' +p252957 +sg225240 +g27 +sa(dp252958 +g225230 +S'Saint John the Baptist' +p252959 +sg225232 +S'Jacopo Palma il Giovane' +p252960 +sg225234 +S'etching' +p252961 +sg225236 +S'unknown date\n' +p252962 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c766.jpg' +p252963 +sg225240 +g27 +sa(dp252964 +g225230 +S'Saint Andrew' +p252965 +sg225232 +S'Bartolomeo Passarotti' +p252966 +sg225234 +S'etching' +p252967 +sg225236 +S'unknown date\n' +p252968 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c85b.jpg' +p252969 +sg225240 +g27 +sa(dp252970 +g225230 +S'Saint John the Evangelist' +p252971 +sg225232 +S'Bartolomeo Passarotti' +p252972 +sg225234 +S'etching' +p252973 +sg225236 +S'1560/1565' +p252974 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c85a.jpg' +p252975 +sg225240 +g27 +sa(dp252976 +g225230 +S'The Virgin and Child with Saints' +p252977 +sg225232 +S'Guiseppe Nicolo Vicentino' +p252978 +sg225234 +S'chiaroscuro woodcut' +p252979 +sg225236 +S'unknown date\n' +p252980 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c875.jpg' +p252981 +sg225240 +g27 +sa(dp252982 +g225230 +S'Faust' +p252983 +sg225232 +S'Artist Information (' +p252984 +sg225234 +S'(author)' +p252985 +sg225236 +S'\n' +p252986 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e43.jpg' +p252987 +sg225240 +g27 +sa(dp252988 +g225230 +S'River Landscape with Travelers' +p252989 +sg225232 +S'Paul Bril' +p252990 +sg225234 +S'etching' +p252991 +sg225236 +S'unknown date\n' +p252992 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a0006568.jpg' +p252993 +sg225240 +g27 +sa(dp252994 +g225230 +S'Susanna and the Elders' +p252995 +sg225232 +S'Annibale Carracci' +p252996 +sg225234 +S'etching and engraving' +p252997 +sg225236 +S'c. 1590/1595' +p252998 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f0b.jpg' +p252999 +sg225240 +g27 +sa(dp253000 +g225230 +S'Saint George Slaying the Dragon' +p253001 +sg225232 +S'Albrecht Altdorfer' +p253002 +sg225234 +S'woodcut' +p253003 +sg225236 +S'1511' +p253004 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a700.jpg' +p253005 +sg225240 +g27 +sa(dp253006 +g225230 +S'Woman Pulling Her Hair' +p253007 +sg225232 +S'Artist Information (' +p253008 +sg225234 +S'(artist after)' +p253009 +sg225236 +S'\n' +p253010 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c81b.jpg' +p253011 +sg225240 +g27 +sa(dp253012 +g225230 +S'Circus Elephants' +p253013 +sg225232 +S'John Steuart Curry' +p253014 +sg225234 +S'oil on canvas' +p253015 +sg225236 +S'1932' +p253016 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000072.jpg' +p253017 +sg225240 +g27 +sa(dp253018 +g225230 +S'Midsummer Twilight' +p253019 +sg225232 +S'Willard Leroy Metcalf' +p253020 +sg225234 +S'oil on canvas' +p253021 +sg225236 +S'c. 1890' +p253022 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000168.jpg' +p253023 +sg225240 +S'In the later 1880s, Willard "Willy" Metcalf visited and summered four\r\n times at Giverny, northwest of Paris. Giverny had been home to the famous\r\n impressionist Claude Monet since 1883. Although Metcalf knew the older\r\n French painter, it was the rustic village itself that drew the young\r\n American to the area. The calm structure of Giverny\'s plowed fields,\r\n stone-walled roads, and tile-roofed farmhouses fascinated many painters.\r\n Here, several building eaves and crop lines point toward the shimmering orb\r\n of a full moon rising through rosy clouds over the eastern horizon.\n Sunset imparts a yellow warmth to the stuccoed walls, while the\r\n complementary color of violet marks the lengthening shadows of late\r\n afternoon. The deep blue-greens of the foreground bushes similarly balance\r\n and contrast with the red-oranges of the terracotta roofs.\n Metcalf traveled incessantly, painting Italian villages in the Tuscan\r\n hills, Arab markets in Tunisia, and Zuni pueblos in New Mexico. Despite his\r\n restlessness, he kept returning to his native Massachusetts. His New\r\n England woodland and coastal scenes captured every season of the year and\r\n eventually earned his fame. Ironically, for an artist who could so\r\n beautifully convey the earth\'s placid serenity, Metcalf led a bohemian life\r\n obsessed with women, alcohol, and occult spiritualism.\n ' +p253024 +sa(dp253025 +g225230 +S'Head of an Aged Woman' +p253026 +sg225232 +S'Artist Information (' +p253027 +sg225234 +S'(artist after)' +p253028 +sg225236 +S'\n' +p253029 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b379.jpg' +p253030 +sg225240 +g27 +sa(dp253031 +g225230 +S'Penelope' +p253032 +sg225232 +S'Artist Information (' +p253033 +sg225234 +S'(artist after)' +p253034 +sg225236 +S'\n' +p253035 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2fc.jpg' +p253036 +sg225240 +g27 +sa(dp253037 +g225230 +S'Affairs of State, 1770-1780' +p253038 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p253039 +sg225234 +S'etching (6 etchings on one sheet from one plate)' +p253040 +sg225236 +S'1791' +p253041 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b339.jpg' +p253042 +sg225240 +g27 +sa(dp253043 +g225230 +S'Clarissa' +p253044 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p253045 +sg225234 +S'etching (2 etchings on one sheet from one plate)' +p253046 +sg225236 +S'1796' +p253047 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b32e.jpg' +p253048 +sg225240 +g27 +sa(dp253049 +g225230 +S'Pilgrimage to French Bucholz' +p253050 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p253051 +sg225234 +S'etching' +p253052 +sg225236 +S'1775' +p253053 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b311.jpg' +p253054 +sg225240 +g27 +sa(dp253055 +g225230 +S'Poor Boy Showing His Navel' +p253056 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p253057 +sg225234 +S'etching' +p253058 +sg225236 +S'1758' +p253059 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b33c.jpg' +p253060 +sg225240 +g27 +sa(dp253061 +g225230 +S'Benjamin Franklin' +p253062 +sg225232 +S'Franz Weber' +p253063 +sg225234 +S'etching' +p253064 +sg225236 +S'unknown date\n' +p253065 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b473.jpg' +p253066 +sg225240 +g27 +sa(dp253067 +g225232 +S'Mark Tobey' +p253068 +sg225240 +g27 +sg225234 +S'charcoal on laid paper' +p253069 +sg225230 +S'Mrs. Gallois' +p253070 +sg225236 +S'unknown date\n' +p253071 +sa(dp253072 +g225232 +S'Sid Hammer' +p253073 +sg225240 +g27 +sg225234 +S'color etching' +p253074 +sg225230 +S'Title Page' +p253075 +sg225236 +S'1964' +p253076 +sa(dp253077 +g225232 +S'Sid Hammer' +p253078 +sg225240 +g27 +sg225234 +S'portfolio with sixteen etchings including title page' +p253079 +sg225230 +S'Dance of Death' +p253080 +sg225236 +S'1964' +p253081 +sa(dp253082 +g225232 +S'Sid Hammer' +p253083 +sg225240 +g27 +sg225234 +S'etching' +p253084 +sg225230 +S'The Source' +p253085 +sg225236 +S'1964' +p253086 +sa(dp253087 +g225232 +S'Sid Hammer' +p253088 +sg225240 +g27 +sg225234 +S'etching' +p253089 +sg225230 +S'In the Void' +p253090 +sg225236 +S'1964' +p253091 +sa(dp253092 +g225232 +S'Sid Hammer' +p253093 +sg225240 +g27 +sg225234 +S'etching' +p253094 +sg225230 +S'Lazarus' +p253095 +sg225236 +S'1964' +p253096 +sa(dp253097 +g225232 +S'Sid Hammer' +p253098 +sg225240 +g27 +sg225234 +S'etching' +p253099 +sg225230 +S'Justice' +p253100 +sg225236 +S'1964' +p253101 +sa(dp253102 +g225232 +S'Sid Hammer' +p253103 +sg225240 +g27 +sg225234 +S'etching' +p253104 +sg225230 +S'Lambfore' +p253105 +sg225236 +S'1964' +p253106 +sa(dp253107 +g225232 +S'Sid Hammer' +p253108 +sg225240 +g27 +sg225234 +S'etching' +p253109 +sg225230 +S'The Thorns' +p253110 +sg225236 +S'1964' +p253111 +sa(dp253112 +g225232 +S'Sid Hammer' +p253113 +sg225240 +g27 +sg225234 +S'etching' +p253114 +sg225230 +S'In the Void I' +p253115 +sg225236 +S'1964' +p253116 +sa(dp253117 +g225232 +S'Sid Hammer' +p253118 +sg225240 +g27 +sg225234 +S'etching' +p253119 +sg225230 +S'Warriors' +p253120 +sg225236 +S'1964' +p253121 +sa(dp253122 +g225232 +S'Sid Hammer' +p253123 +sg225240 +g27 +sg225234 +S'etching' +p253124 +sg225230 +S'This I Have Seen' +p253125 +sg225236 +S'1964' +p253126 +sa(dp253127 +g225232 +S'Sid Hammer' +p253128 +sg225240 +g27 +sg225234 +S'etching' +p253129 +sg225230 +S'We Build anew in the Ruins' +p253130 +sg225236 +S'1964' +p253131 +sa(dp253132 +g225232 +S'Sid Hammer' +p253133 +sg225240 +g27 +sg225234 +S'etching' +p253134 +sg225230 +S'They Calculate' +p253135 +sg225236 +S'1964' +p253136 +sa(dp253137 +g225232 +S'Sid Hammer' +p253138 +sg225240 +g27 +sg225234 +S'etching' +p253139 +sg225230 +S'Venus' +p253140 +sg225236 +S'1964' +p253141 +sa(dp253142 +g225232 +S'Sid Hammer' +p253143 +sg225240 +g27 +sg225234 +S'etching' +p253144 +sg225230 +S'Quelle Blaque' +p253145 +sg225236 +S'1964' +p253146 +sa(dp253147 +g225232 +S'Sid Hammer' +p253148 +sg225240 +g27 +sg225234 +S'etching' +p253149 +sg225230 +S'Death Can be Fat' +p253150 +sg225236 +S'1964' +p253151 +sa(dp253152 +g225232 +S'Sid Hammer' +p253153 +sg225240 +g27 +sg225234 +S'etching' +p253154 +sg225230 +S'Mother and Child' +p253155 +sg225236 +S'1964' +p253156 +sa(dp253157 +g225232 +S'Harry Hoehn' +p253158 +sg225240 +g27 +sg225234 +S'engraving' +p253159 +sg225230 +S'Zeus' +p253160 +sg225236 +S'1968' +p253161 +sa(dp253162 +g225232 +S'Harry Hoehn' +p253163 +sg225240 +g27 +sg225234 +S'portfolio with title page and five engravings' +p253164 +sg225230 +S'Hephaestus' +p253165 +sg225236 +S'1968' +p253166 +sa(dp253167 +g225232 +S'Harry Hoehn' +p253168 +sg225240 +g27 +sg225234 +S'engraving' +p253169 +sg225230 +S'Hera' +p253170 +sg225236 +S'1968' +p253171 +sa(dp253172 +g225232 +S'Harry Hoehn' +p253173 +sg225240 +g27 +sg225234 +S'engraving' +p253174 +sg225230 +S'Hephaestus' +p253175 +sg225236 +S'1968' +p253176 +sa(dp253177 +g225232 +S'Harry Hoehn' +p253178 +sg225240 +g27 +sg225234 +S'engraving' +p253179 +sg225230 +S'Expulsion' +p253180 +sg225236 +S'1968' +p253181 +sa(dp253182 +g225232 +S'Harry Hoehn' +p253183 +sg225240 +g27 +sg225234 +S'engraving' +p253184 +sg225230 +S'Isle of Lemnos' +p253185 +sg225236 +S'1968' +p253186 +sa(dp253187 +g225232 +S'Artist Information (' +p253188 +sg225240 +g27 +sg225234 +S'(artist)' +p253189 +sg225230 +S"The Wife of Bath's Tale" +p253190 +sg225236 +S'\n' +p253191 +sa(dp253192 +g225232 +S'Wallace Bradstreet Putnam' +p253193 +sg225240 +g27 +sg225234 +S'lithograph' +p253194 +sg225230 +S'Sea Bird Saga I' +p253195 +sg225236 +S'1966' +p253196 +sa(dp253197 +g225232 +S'Wallace Bradstreet Putnam' +p253198 +sg225240 +g27 +sg225234 +S'portfolio with title page, preface, poem, and colophon, and eleven lithographs' +p253199 +sg225230 +S'Sea Bird Saga' +p253200 +sg225236 +S'published 1966' +p253201 +sa(dp253202 +g225232 +S'Wallace Bradstreet Putnam' +p253203 +sg225240 +g27 +sg225234 +S'lithograph' +p253204 +sg225230 +S'Sea Bird Saga II' +p253205 +sg225236 +S'1966' +p253206 +sa(dp253207 +g225232 +S'Wallace Bradstreet Putnam' +p253208 +sg225240 +g27 +sg225234 +S'lithograph' +p253209 +sg225230 +S'Sea Bird Saga III' +p253210 +sg225236 +S'1966' +p253211 +sa(dp253212 +g225232 +S'Wallace Bradstreet Putnam' +p253213 +sg225240 +g27 +sg225234 +S'lithograph' +p253214 +sg225230 +S'Sea Bird Saga IV' +p253215 +sg225236 +S'1966' +p253216 +sa(dp253217 +g225232 +S'Wallace Bradstreet Putnam' +p253218 +sg225240 +g27 +sg225234 +S'lithograph' +p253219 +sg225230 +S'Sea Bird Saga V' +p253220 +sg225236 +S'1966' +p253221 +sa(dp253222 +g225232 +S'Wallace Bradstreet Putnam' +p253223 +sg225240 +g27 +sg225234 +S'lithograph' +p253224 +sg225230 +S'Sea Bird Saga VI' +p253225 +sg225236 +S'1966' +p253226 +sa(dp253227 +g225232 +S'Wallace Bradstreet Putnam' +p253228 +sg225240 +g27 +sg225234 +S'lithograph' +p253229 +sg225230 +S'Sea Bird Saga VII' +p253230 +sg225236 +S'1966' +p253231 +sa(dp253232 +g225232 +S'Wallace Bradstreet Putnam' +p253233 +sg225240 +g27 +sg225234 +S'lithograph' +p253234 +sg225230 +S'Sea Bird Saga VIII' +p253235 +sg225236 +S'1966' +p253236 +sa(dp253237 +g225232 +S'Wallace Bradstreet Putnam' +p253238 +sg225240 +g27 +sg225234 +S'lithograph' +p253239 +sg225230 +S'Sea Bird Saga IX' +p253240 +sg225236 +S'1966' +p253241 +sa(dp253242 +g225232 +S'Wallace Bradstreet Putnam' +p253243 +sg225240 +g27 +sg225234 +S'lithograph' +p253244 +sg225230 +S'Sea Bird Saga X' +p253245 +sg225236 +S'1966' +p253246 +sa(dp253247 +g225232 +S'Wallace Bradstreet Putnam' +p253248 +sg225240 +g27 +sg225234 +S'lithograph' +p253249 +sg225230 +S'Sea Bird Saga XI' +p253250 +sg225236 +S'1966' +p253251 +sa(dp253252 +g225232 +S'Artist Information (' +p253253 +sg225240 +g27 +sg225234 +S'(author)' +p253254 +sg225230 +S'Intaglios for Rainer Maria Rilke\'s "Duino Elegies"' +p253255 +sg225236 +S'\n' +p253256 +sa(dp253257 +g225232 +S'Murray Zimiles' +p253258 +sg225240 +g27 +sg225234 +S'lithograph' +p253259 +sg225230 +S'Vulture' +p253260 +sg225236 +S'1968' +p253261 +sa(dp253262 +g225232 +S'Murray Zimiles' +p253263 +sg225240 +g27 +sg225234 +S'portfolio with title page, introduction, and ten lithographs' +p253264 +sg225230 +S'Avis Librus' +p253265 +sg225236 +S'published 1968' +p253266 +sa(dp253267 +g225232 +S'Murray Zimiles' +p253268 +sg225240 +g27 +sg225234 +S'lithograph in tan and black' +p253269 +sg225230 +S'Stork' +p253270 +sg225236 +S'1968' +p253271 +sa(dp253272 +g225232 +S'Murray Zimiles' +p253273 +sg225240 +g27 +sg225234 +S'lithograph' +p253274 +sg225230 +S'Vulture' +p253275 +sg225236 +S'1968' +p253276 +sa(dp253277 +g225232 +S'Murray Zimiles' +p253278 +sg225240 +g27 +sg225234 +S'lithograph' +p253279 +sg225230 +S'Parrot' +p253280 +sg225236 +S'1968' +p253281 +sa(dp253282 +g225232 +S'Murray Zimiles' +p253283 +sg225240 +g27 +sg225234 +S'lithograph' +p253284 +sg225230 +S'Peafowel' +p253285 +sg225236 +S'1968' +p253286 +sa(dp253287 +g225232 +S'Murray Zimiles' +p253288 +sg225240 +g27 +sg225234 +S'lithograph' +p253289 +sg225230 +S'Ibis' +p253290 +sg225236 +S'1968' +p253291 +sa(dp253292 +g225232 +S'Murray Zimiles' +p253293 +sg225240 +g27 +sg225234 +S'lithograph in tan and black' +p253294 +sg225230 +S'Dove' +p253295 +sg225236 +S'1968' +p253296 +sa(dp253297 +g225232 +S'Murray Zimiles' +p253298 +sg225240 +g27 +sg225234 +S'lithograph' +p253299 +sg225230 +S'Eagle' +p253300 +sg225236 +S'1968' +p253301 +sa(dp253302 +g225232 +S'Murray Zimiles' +p253303 +sg225240 +g27 +sg225234 +S'lithograph' +p253304 +sg225230 +S'Owl' +p253305 +sg225236 +S'1968' +p253306 +sa(dp253307 +g225232 +S'Murray Zimiles' +p253308 +sg225240 +g27 +sg225234 +S'lithograph in purple and black' +p253309 +sg225230 +S'Hawk' +p253310 +sg225236 +S'1968' +p253311 +sa(dp253312 +g225232 +S'Alexander Calder' +p253313 +sg225240 +g27 +sg225234 +S'color lithograph on wove paper' +p253314 +sg225230 +S'Flying Colors' +p253315 +sg225236 +S'1976' +p253316 +sa(dp253317 +g225232 +S'Josef Albers' +p253318 +sg225240 +g27 +sg225234 +S', published 1963' +p253319 +sg225230 +S'Interaction of Color' +p253320 +sg225236 +S'\n' +p253321 +sa(dp253322 +g225232 +S'Josef Albers' +p253323 +sg225240 +g27 +sg225234 +S'color screenprint' +p253324 +sg225230 +S'LXXI a' +p253325 +sg225236 +S'1971' +p253326 +sa(dp253327 +g225232 +S'Josef Albers' +p253328 +sg225240 +g27 +sg225234 +S'color screenprint' +p253329 +sg225230 +S'LXXI b' +p253330 +sg225236 +S'1971' +p253331 +sa(dp253332 +g225232 +S'Lee Bontecou' +p253333 +sg225240 +g27 +sg225234 +S'lithograph' +p253334 +sg225230 +S'Fifth Stone' +p253335 +sg225236 +S'1964' +p253336 +sa(dp253337 +g225232 +S'Lee Bontecou' +p253338 +sg225240 +g27 +sg225234 +S'lithograph' +p253339 +sg225230 +S'Sixth Stone I' +p253340 +sg225236 +S'unknown date\n' +p253341 +sa(dp253342 +g225232 +S'Lee Bontecou' +p253343 +sg225240 +g27 +sg225234 +S'lithograph' +p253344 +sg225230 +S'Sixth Stone II' +p253345 +sg225236 +S'1964' +p253346 +sa(dp253347 +g225232 +S'Lee Bontecou' +p253348 +sg225240 +g27 +sg225234 +S'soot and graphite on paper' +p253349 +sg225230 +S'Untitled' +p253350 +sg225236 +S'1966' +p253351 +sa(dp253352 +g225232 +S'Lee Bontecou' +p253353 +sg225240 +g27 +sg225234 +S'lithograph' +p253354 +sg225230 +S'Tenth Stone' +p253355 +sg225236 +S'1968' +p253356 +sa(dp253357 +g225232 +S'Daniel Brush' +p253358 +sg225240 +g27 +sg225234 +S'pink and gray acrylic on paperboard' +p253359 +sg225230 +S'No. 24' +p253360 +sg225236 +S'unknown date\n' +p253361 +sa(dp253362 +g225232 +S'Joseph Cornell' +p253363 +sg225240 +g27 +sg225234 +S'silkscreen' +p253364 +sg225230 +S'Untitled (Hotel du Nord)' +p253365 +sg225236 +S'1972' +p253366 +sa(dp253367 +g225232 +S'Joseph Cornell' +p253368 +sg225240 +g27 +sg225234 +S'photogravure' +p253369 +sg225230 +S'Untitled (Derby Hat)' +p253370 +sg225236 +S'1972' +p253371 +sa(dp253372 +g225232 +S'Joseph Cornell' +p253373 +sg225240 +g27 +sg225234 +S'photogravure' +p253374 +sg225230 +S'Untitled (Landscape with Figure)' +p253375 +sg225236 +S'1972' +p253376 +sa(dp253377 +g225230 +S'Untitled (How to Make a Rainbow)' +p253378 +sg225232 +S'Joseph Cornell' +p253379 +sg225234 +S'silkscreen' +p253380 +sg225236 +S'1972' +p253381 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a68.jpg' +p253382 +sg225240 +g27 +sa(dp253383 +g225232 +S'Ronald Davis' +p253384 +sg225240 +g27 +sg225234 +S'color lithograph/silkcreen embossed' +p253385 +sg225230 +S'Diagonal Slice' +p253386 +sg225236 +S'1972' +p253387 +sa(dp253388 +g225232 +S'Ronald Davis' +p253389 +sg225240 +g27 +sg225234 +S'color lithograph/silkscreen embossed' +p253390 +sg225230 +S'Double Slice' +p253391 +sg225236 +S'1972' +p253392 +sa(dp253393 +g225230 +S'Untitled' +p253394 +sg225232 +S'Willem de Kooning' +p253395 +sg225234 +S'Sapolin enamel on graph paper' +p253396 +sg225236 +S'1950/1951' +p253397 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000950.jpg' +p253398 +sg225240 +g27 +sa(dp253399 +g225232 +S'Jim Dine' +p253400 +sg225240 +g27 +sg225234 +S'graphite and watercolor' +p253401 +sg225230 +S"Study for a Child's Blue Wall" +p253402 +sg225236 +S'1962' +p253403 +sa(dp253404 +g225232 +S'Jim Dine' +p253405 +sg225240 +g27 +sg225234 +S'color lithograph on wove handmade Crisbrook paper' +p253406 +sg225230 +S'Colored Palette' +p253407 +sg225236 +S'1963' +p253408 +sa(dp253409 +g225232 +S'Jim Dine' +p253410 +sg225240 +g27 +sg225234 +S'color lithograph on laid handmade Auvergne paper' +p253411 +sg225230 +S'Flesh Palette in a Landscape' +p253412 +sg225236 +S'1965' +p253413 +sa(dp253414 +g225232 +S'Jim Dine' +p253415 +sg225240 +g27 +sg225234 +S'color screenprint on wove Cartridge paper' +p253416 +sg225230 +S'Calico' +p253417 +sg225236 +S'1965' +p253418 +sa(dp253419 +g225232 +S'Jim Dine' +p253420 +sg225240 +g27 +sg225234 +S'color lithograph' +p253421 +sg225230 +S'2 Hearts I (The Donut) [right half of two-part print, see 1976.56.22]' +p253422 +sg225236 +S'1970' +p253423 +sa(dp253424 +g225232 +S'Jim Dine' +p253425 +sg225240 +g27 +sg225234 +S'color lithograph' +p253426 +sg225230 +S'2 Hearts I (The Donut) [left half of two-part print, see 1976.56.21]' +p253427 +sg225236 +S'1970' +p253428 +sa(dp253429 +g225232 +S'Sam Francis' +p253430 +sg225240 +g27 +sg225234 +S'lithograph' +p253431 +sg225230 +S'Coldest Stone' +p253432 +sg225236 +S'1960' +p253433 +sa(dp253434 +g225232 +S'Sam Francis' +p253435 +sg225240 +g27 +sg225234 +S'lithograph' +p253436 +sg225230 +S'The White Line' +p253437 +sg225236 +S'1960' +p253438 +sa(dp253439 +g225232 +S'Sam Francis' +p253440 +sg225240 +g27 +sg225234 +S'color lithograph on wove paper' +p253441 +sg225230 +S'First Stone' +p253442 +sg225236 +S'1960' +p253443 +sa(dp253444 +g225232 +S'Sam Francis' +p253445 +sg225240 +g27 +sg225234 +S'color lithograph on Rives BFK paper' +p253446 +sg225230 +S'Mercury' +p253447 +sg225236 +S'1963' +p253448 +sa(dp253449 +g225232 +S'Sam Francis' +p253450 +sg225240 +g27 +sg225234 +S'lithograph' +p253451 +sg225230 +S'Pasadena Suite' +p253452 +sg225236 +S'1967' +p253453 +sa(dp253454 +g225232 +S'Sam Francis' +p253455 +sg225240 +g27 +sg225234 +S'lithograph' +p253456 +sg225230 +S'Very First Stone' +p253457 +sg225236 +S'1959/1968' +p253458 +sa(dp253459 +g225232 +S'Artist Information (' +p253460 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Skyframe (VI)' +p253461 +sg225236 +S'(technical collaborator)' +p253462 +sa(dp253463 +g225232 +S'Artist Information (' +p253464 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Skyframe (V)' +p253465 +sg225236 +S'(technical collaborator)' +p253466 +sa(dp253467 +g225232 +S'Helen Frankenthaler' +p253468 +sg225240 +g27 +sg225234 +S'lithograph (stone) in blue, red and yellow on French handmade paper' +p253469 +sg225230 +S'Solarium' +p253470 +sg225236 +S'1964' +p253471 +sa(dp253472 +g225232 +S'Artist Information (' +p253473 +sg225240 +g27 +sg225234 +S'1920 - 2003' +p253474 +sg225230 +S'Brown Moons' +p253475 +sg225236 +S'(technical collaborator)' +p253476 +sa(dp253477 +g225232 +S'Helen Frankenthaler' +p253478 +sg225240 +g27 +sg225234 +S'lithograph (stone) in orange, green and yellow on Auvergne a la main paper' +p253479 +sg225230 +S'Orange Hoop' +p253480 +sg225236 +S'1965' +p253481 +sa(dp253482 +g225232 +S'Helen Frankenthaler' +p253483 +sg225240 +g27 +sg225234 +S'lithograph (stone) in ochre, blue and green on Auvergne a la main paper' +p253484 +sg225230 +S'Persian Garden' +p253485 +sg225236 +S'1965/1966' +p253486 +sa(dp253487 +g225232 +S'Helen Frankenthaler' +p253488 +sg225240 +g27 +sg225234 +S'4-color lithograph (stone) on buff Arches paper' +p253489 +sg225230 +S'White Portal' +p253490 +sg225236 +S'1967' +p253491 +sa(dp253492 +g225232 +S'Helen Frankenthaler' +p253493 +sg225240 +g27 +sg225234 +S'4-color pochoir (soft vinyl stencil) in acrylic on Arches Imperial Rough watercolor paper' +p253494 +sg225230 +S'Orange Downpour' +p253495 +sg225236 +S'1970' +p253496 +sa(dp253497 +g225232 +S'Helen Frankenthaler' +p253498 +sg225240 +g27 +sg225234 +S'pochoir (soft vinyl stencil) and screenprint in green, red and blue acrylic on Arches Imperial Rough watercolor paper' +p253499 +sg225230 +S'A Little Zen' +p253500 +sg225236 +S'1970' +p253501 +sa(dp253502 +g225232 +S'Helen Frankenthaler' +p253503 +sg225240 +g27 +sg225234 +S'pochoir (soft vinyl stencil) in green, mauve and yellow ochre acrylic on Arches Imperial watercolor paper' +p253504 +sg225230 +S'Green Likes Mauve' +p253505 +sg225236 +S'1970' +p253506 +sa(dp253507 +g225232 +S'Helen Frankenthaler' +p253508 +sg225240 +g27 +sg225234 +S'4-color pochoir (soft vinyl stencil) in acrylic on Arches Imperial Rough watercolor paper' +p253509 +sg225230 +S'Wind Directions' +p253510 +sg225236 +S'1970' +p253511 +sa(dp253512 +g225232 +S'Helen Frankenthaler' +p253513 +sg225240 +g27 +sg225234 +S'acrylic on paperboard' +p253514 +sg225230 +S'London Memos I' +p253515 +sg225236 +S'1971' +p253516 +sa(dp253517 +g225232 +S'Helen Frankenthaler' +p253518 +sg225240 +g27 +sg225234 +S'acrylic on paperboard' +p253519 +sg225230 +S'Study for "Green Likes Mauve"' +p253520 +sg225236 +S'1970' +p253521 +sa(dp253522 +g225232 +S'Helen Frankenthaler' +p253523 +sg225240 +g27 +sg225234 +S'4-color etching and aquatint (copper) on brown Jeff Goodman handmade paper' +p253524 +sg225230 +S'Connected by Joy' +p253525 +sg225236 +S'1969/1973' +p253526 +sa(dp253527 +g225232 +S'Artist Information (' +p253528 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'I Need Yellow' +p253529 +sg225236 +S'(technical collaborator)' +p253530 +sa(dp253531 +g225232 +S'Fritz Glarner' +p253532 +sg225240 +g27 +sg225234 +S'color lithograph' +p253533 +sg225230 +S'Colored Drawing' +p253534 +sg225236 +S'1963' +p253535 +sa(dp253536 +g225230 +S'Centrifugal' +p253537 +sg225232 +S'Adolph Gottlieb' +p253538 +sg225234 +S'gouache on paperboard' +p253539 +sg225236 +S'1961' +p253540 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008e9.jpg' +p253541 +sg225240 +g27 +sa(dp253542 +g225232 +S'Red Grooms' +p253543 +sg225240 +g27 +sg225234 +S'watercolor' +p253544 +sg225230 +S'Ruins' +p253545 +sg225236 +S'1968' +p253546 +sa(dp253547 +g225232 +S'Red Grooms' +p253548 +sg225240 +g27 +sg225234 +S'red and black felt-tip pen' +p253549 +sg225230 +S'Trogir' +p253550 +sg225236 +S'1968' +p253551 +sa(dp253552 +g225230 +S'Slushing' +p253553 +sg225232 +S'Red Grooms' +p253554 +sg225234 +S'watercolor' +p253555 +sg225236 +S'1971' +p253556 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008ec.jpg' +p253557 +sg225240 +g27 +sa(dp253558 +g225232 +S'David Hockney' +p253559 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p253560 +sg225230 +S'Panama Hat' +p253561 +sg225236 +S'1972' +p253562 +sa(dp253563 +g225232 +S'David Hockney' +p253564 +sg225240 +g27 +sg225234 +S'6-color lithograph (aluminum and stone) and screenprint on 300 gr. Arches Cover paper' +p253565 +sg225230 +S'Rain' +p253566 +sg225236 +S'1973' +p253567 +sa(dp253568 +g225230 +S'Sun' +p253569 +sg225232 +S'David Hockney' +p253570 +sg225234 +S'8-color lithograph (aluminum and stone) and screenprint on Arjomari paper' +p253571 +sg225236 +S'1973' +p253572 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022ab.jpg' +p253573 +sg225240 +g27 +sa(dp253574 +g225232 +S'David Hockney' +p253575 +sg225240 +g27 +sg225234 +S'11-color lithograph (aluminum and stone) and screenprint on Arjomari paper' +p253576 +sg225230 +S'Wind' +p253577 +sg225236 +S'1973' +p253578 +sa(dp253579 +g225232 +S'David Hockney' +p253580 +sg225240 +g27 +sg225234 +S'9-color lithograph (aluminum and stone) and screenprint on Arjomari paper' +p253581 +sg225230 +S'Snow' +p253582 +sg225236 +S'1973' +p253583 +sa(dp253584 +g225232 +S'David Hockney' +p253585 +sg225240 +g27 +sg225234 +S'4-color lithograph (stone) and screenprint on Arjomari paper' +p253586 +sg225230 +S'Lightning' +p253587 +sg225236 +S'1973' +p253588 +sa(dp253589 +g225230 +S'Red Sky' +p253590 +sg225232 +S'Hans Hofmann' +p253591 +sg225234 +S'colored crayons and black felt-tip pen' +p253592 +sg225236 +S'1943' +p253593 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008f8.jpg' +p253594 +sg225240 +g27 +sa(dp253595 +g225230 +S'Bird Flight' +p253596 +sg225232 +S'Hans Hofmann' +p253597 +sg225234 +S'colored crayons and black felt-tip pen' +p253598 +sg225236 +S'1943' +p253599 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008f9.jpg' +p253600 +sg225240 +g27 +sa(dp253601 +g225230 +S'False Start I' +p253602 +sg225232 +S'Artist Information (' +p253603 +sg225234 +S'1920 - 2003' +p253604 +sg225236 +S'(printer)' +p253605 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ad0.jpg' +p253606 +sg225240 +g27 +sa(dp253607 +g225232 +S'Jasper Johns' +p253608 +sg225240 +g27 +sg225234 +S'11-color lithograph (stone) on A. Millbourn & Co. paper' +p253609 +sg225230 +S'False Start II' +p253610 +sg225236 +S'1962' +p253611 +sa(dp253612 +g225230 +S'Ale Cans' +p253613 +sg225232 +S'Jasper Johns' +p253614 +sg225234 +S'7-color lithograph (stone) on wove Japan paper' +p253615 +sg225236 +S'1964' +p253616 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ad1.jpg' +p253617 +sg225240 +g27 +sa(dp253618 +g225232 +S'Jasper Johns' +p253619 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black and gray on handmade Angoumois paper' +p253620 +sg225230 +S'Red, Yellow, Blue' +p253621 +sg225236 +S'1962/1963' +p253622 +sa(dp253623 +g225232 +S'Jasper Johns' +p253624 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black' +p253625 +sg225230 +S'0' +p253626 +sg225236 +S'1960' +p253627 +sa(dp253628 +g225232 +S'Jasper Johns' +p253629 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black' +p253630 +sg225230 +S'1' +p253631 +sg225236 +S'1963' +p253632 +sa(dp253633 +g225232 +S'Jasper Johns' +p253634 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black and gray' +p253635 +sg225230 +S'2' +p253636 +sg225236 +S'1963' +p253637 +sa(dp253638 +g225232 +S'Jasper Johns' +p253639 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black' +p253640 +sg225230 +S'3' +p253641 +sg225236 +S'1963' +p253642 +sa(dp253643 +g225232 +S'Jasper Johns' +p253644 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black' +p253645 +sg225230 +S'4' +p253646 +sg225236 +S'1963' +p253647 +sa(dp253648 +g225232 +S'Jasper Johns' +p253649 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black' +p253650 +sg225230 +S'5' +p253651 +sg225236 +S'1963' +p253652 +sa(dp253653 +g225232 +S'Jasper Johns' +p253654 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black' +p253655 +sg225230 +S'6' +p253656 +sg225236 +S'1963' +p253657 +sa(dp253658 +g225232 +S'Jasper Johns' +p253659 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black' +p253660 +sg225230 +S'7' +p253661 +sg225236 +S'1963' +p253662 +sa(dp253663 +g225232 +S'Jasper Johns' +p253664 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black' +p253665 +sg225230 +S'8' +p253666 +sg225236 +S'1963' +p253667 +sa(dp253668 +g225232 +S'Jasper Johns' +p253669 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black' +p253670 +sg225230 +S'9' +p253671 +sg225236 +S'1963' +p253672 +sa(dp253673 +g225230 +S"Skin with O'Hara Poem" +p253674 +sg225232 +S'Jasper Johns' +p253675 +sg225234 +S'lithograph (stone) in 2 blacks on KE Albanene Engineer Standard Form paper' +p253676 +sg225236 +S'1963/1965' +p253677 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ad2.jpg' +p253678 +sg225240 +g27 +sa(dp253679 +g225232 +S'Jasper Johns' +p253680 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black and hand-colored in silver, gold, and aluminum on handmade English Chatam paper' +p253681 +sg225230 +S'The Critic Smiles' +p253682 +sg225236 +S'1966' +p253683 +sa(dp253684 +g225232 +S'Jasper Johns' +p253685 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black and black and white blended on palette on handmade Italia paper' +p253686 +sg225230 +S'Ruler' +p253687 +sg225236 +S'1966' +p253688 +sa(dp253689 +g225232 +S'Jasper Johns' +p253690 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black and dark gray on handmade English paper' +p253691 +sg225230 +S'Light Bulb' +p253692 +sg225236 +S'1966' +p253693 +sa(dp253694 +g225232 +S'Jasper Johns' +p253695 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum photographic plate)in gray, black, and blended red, yellow, and blue' +p253696 +sg225230 +S'Pinion' +p253697 +sg225236 +S'1963/1966' +p253698 +sa(dp253699 +g225230 +S'Two Maps II' +p253700 +sg225232 +S'Jasper Johns' +p253701 +sg225234 +S'lithograph (stone) in black on white Japan paper laid down on black laid Fabriano paper' +p253702 +sg225236 +S'1966' +p253703 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ad3.jpg' +p253704 +sg225240 +g27 +sa(dp253705 +g225232 +S'Jasper Johns' +p253706 +sg225240 +g27 +sg225234 +S'lithograph (stone) in yellow, red and blue, and white on black Japan paper laid down on handmade English Chatam paper' +p253707 +sg225230 +S'0 through 9' +p253708 +sg225236 +S'1967' +p253709 +sa(dp253710 +g225232 +S'Jasper Johns' +p253711 +sg225240 +g27 +sg225234 +S'silkscreen on acetate set into embossed paper and glued onto a large sheet' +p253712 +sg225230 +S'The Critic Sees' +p253713 +sg225236 +S'1967' +p253714 +sa(dp253715 +g225232 +S'Jasper Johns' +p253716 +sg225240 +g27 +sg225234 +S'lithograph in black and gray on handmade Angoumois paper' +p253717 +sg225230 +S'Numbers' +p253718 +sg225236 +S'1967' +p253719 +sa(dp253720 +g225232 +S'Jasper Johns' +p253721 +sg225240 +g27 +sg225234 +S'9-color lithograph (stone) on handmade Italian paper' +p253722 +sg225230 +S'Targets' +p253723 +sg225236 +S'1967/1968' +p253724 +sa(dp253725 +g225230 +S'Gray Alphabets' +p253726 +sg225232 +S'Jasper Johns' +p253727 +sg225234 +S'4-color lithograph (aluminum) on Special Rives paper' +p253728 +sg225236 +S'1968' +p253729 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ad4.jpg' +p253730 +sg225240 +g27 +sa(dp253731 +g225232 +S'Jasper Johns' +p253732 +sg225240 +g27 +sg225234 +S'4-color lithograph (stone and aluminum) on Arjomari paper' +p253733 +sg225230 +S'Figure 2' +p253734 +sg225236 +S'1968/1969' +p253735 +sa(dp253736 +g225232 +S'Jasper Johns' +p253737 +sg225240 +g27 +sg225234 +S'4-color lithograph (stone and aluminum) on Arjomari paper' +p253738 +sg225230 +S'Figure 5' +p253739 +sg225236 +S'1968/1969' +p253740 +sa(dp253741 +g225232 +S'Jasper Johns' +p253742 +sg225240 +g27 +sg225234 +S'etching and aquatint in black on Auvergne paper' +p253743 +sg225230 +S'Flashlight' +p253744 +sg225236 +S'1967/1969' +p253745 +sa(dp253746 +g225232 +S'Jasper Johns' +p253747 +sg225240 +g27 +sg225234 +S'portfolio with seven etchings and aquatints, and six etchings over photo-engraved plates' +p253748 +sg225230 +S'1st Etchings, 2nd State' +p253749 +sg225236 +S'1967/1969' +p253750 +sa(dp253751 +g225232 +S'Jasper Johns' +p253752 +sg225240 +g27 +sg225234 +S'etching and aquatint in black on Auvergne paper' +p253753 +sg225230 +S'Light Bulb' +p253754 +sg225236 +S'1967/1969' +p253755 +sa(dp253756 +g225232 +S'Jasper Johns' +p253757 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p253758 +sg225230 +S'Ale Cans' +p253759 +sg225236 +S'1967/1969' +p253760 +sa(dp253761 +g225232 +S'Jasper Johns' +p253762 +sg225240 +g27 +sg225234 +S'etching and aquatint in black on Auvergne paper' +p253763 +sg225230 +S'Paint Brushes' +p253764 +sg225236 +S'1967/1969' +p253765 +sa(dp253766 +g225232 +S'Jasper Johns' +p253767 +sg225240 +g27 +sg225234 +S'etching and aquatint in black on Auvergne paper' +p253768 +sg225230 +S'Flag' +p253769 +sg225236 +S'1967/1969' +p253770 +sa(dp253771 +g225232 +S'Jasper Johns' +p253772 +sg225240 +g27 +sg225234 +S'etching and open-bite in black on Auvergne paper' +p253773 +sg225230 +S'Numbers' +p253774 +sg225236 +S'1967/1969' +p253775 +sa(dp253776 +g225232 +S'Jasper Johns' +p253777 +sg225240 +g27 +sg225234 +S'etching, aquatint and openbite on Auvergne paper' +p253778 +sg225230 +S'Ale Cans' +p253779 +sg225236 +S'1967/1969' +p253780 +sa(dp253781 +g225232 +S'Jasper Johns' +p253782 +sg225240 +g27 +sg225234 +S'etching over photoengraving in black on Auvergne paper' +p253783 +sg225230 +S'Flashlight I' +p253784 +sg225236 +S'1967/1969' +p253785 +sa(dp253786 +g225232 +S'Jasper Johns' +p253787 +sg225240 +g27 +sg225234 +S'etching over photoengraving in black on Auvergne paper' +p253788 +sg225230 +S'Light Bulb I' +p253789 +sg225236 +S'1967/1969' +p253790 +sa(dp253791 +g225232 +S'Jasper Johns' +p253792 +sg225240 +g27 +sg225234 +S'etching over photoengraving in black on Auvergne paper' +p253793 +sg225230 +S'Painted Bronze' +p253794 +sg225236 +S'1967/1969' +p253795 +sa(dp253796 +g225232 +S'Jasper Johns' +p253797 +sg225240 +g27 +sg225234 +S'open-bite over photoengraving in black on Auvergne paper' +p253798 +sg225230 +S'Painted Bronze' +p253799 +sg225236 +S'1967/1969' +p253800 +sa(dp253801 +g225232 +S'Jasper Johns' +p253802 +sg225240 +g27 +sg225234 +S'etching over photoengraving in black on Auvergne paper' +p253803 +sg225230 +S'Flag' +p253804 +sg225236 +S'1967/1969' +p253805 +sa(dp253806 +g225232 +S'Jasper Johns' +p253807 +sg225240 +g27 +sg225234 +S'etching over photoengraving in black on Auvergne paper' +p253808 +sg225230 +S'0 through 9' +p253809 +sg225236 +S'1967/1969' +p253810 +sa(dp253811 +g225232 +S'Jasper Johns' +p253812 +sg225240 +g27 +sg225234 +S'lithograph in two blacks and 1 phonograph record' +p253813 +sg225230 +S'Scott Fagan Record' +p253814 +sg225236 +S'1970' +p253815 +sa(dp253816 +g225230 +S'Decoy' +p253817 +sg225232 +S'Artist Information (' +p253818 +sg225234 +g27 +sg225236 +S'(printer)' +p253819 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ad6.jpg' +p253820 +sg225240 +g27 +sa(dp253821 +g225232 +S'Jasper Johns' +p253822 +sg225240 +g27 +sg225234 +S'7-color lithograph (stone and aluminum) on Angoumois a la main paper' +p253823 +sg225230 +S'Device' +p253824 +sg225236 +S'1971/1972' +p253825 +sa(dp253826 +g225232 +S'Jasper Johns' +p253827 +sg225240 +g27 +sg225234 +S'lithograph in black (stone and aluminum) on India paper' +p253828 +sg225230 +S'Two Flags (Black)' +p253829 +sg225236 +S'1970/1972' +p253830 +sa(dp253831 +g225232 +S'Jasper Johns' +p253832 +sg225240 +g27 +sg225234 +S'4-color lithograph on Japan paper' +p253833 +sg225230 +S'Cups 4 Picasso' +p253834 +sg225236 +S'1972' +p253835 +sa(dp253836 +g225232 +S'Jasper Johns' +p253837 +sg225240 +g27 +sg225234 +S'lithograph in gray (stone and aluminum) on Japan paper' +p253838 +sg225230 +S'Two Flags (Gray)' +p253839 +sg225236 +S'1970/1972' +p253840 +sa(dp253841 +g225232 +S'Artist Information (' +p253842 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Decoy II' +p253843 +sg225236 +S'(printer)' +p253844 +sa(dp253845 +g225230 +S'Small Oak' +p253846 +sg225232 +S'Ellsworth Kelly' +p253847 +sg225234 +S'graphite' +p253848 +sg225236 +S'1964' +p253849 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000958.jpg' +p253850 +sg225240 +g27 +sa(dp253851 +g225232 +S'Ellsworth Kelly' +p253852 +sg225240 +g27 +sg225234 +S'transfer lithograph in black on Rives BFK paper' +p253853 +sg225230 +S'Lemon Branch (Branche de Citron)' +p253854 +sg225236 +S'1965/1966' +p253855 +sa(dp253856 +g225232 +S'Artist Information (' +p253857 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Cathedral #1' +p253858 +sg225236 +S'(publisher)' +p253859 +sa(dp253860 +g225230 +S'Papagallo' +p253861 +sg225232 +S'Marisol' +p253862 +sg225234 +S'lithograph' +p253863 +sg225236 +S'1965' +p253864 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b25.jpg' +p253865 +sg225240 +g27 +sa(dp253866 +g225230 +S'The Kiss' +p253867 +sg225232 +S'Marisol' +p253868 +sg225234 +S'lithograph' +p253869 +sg225236 +S'1965' +p253870 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b26.jpg' +p253871 +sg225240 +g27 +sa(dp253872 +g225232 +S'Agnes Martin' +p253873 +sg225240 +g27 +sg225234 +S'pen and black ink' +p253874 +sg225230 +S'The Lute' +p253875 +sg225236 +S'1964' +p253876 +sa(dp253877 +g225232 +S'Agnes Martin' +p253878 +sg225240 +g27 +sg225234 +S'pen and black ink' +p253879 +sg225230 +S'The Drop' +p253880 +sg225236 +S'1964' +p253881 +sa(dp253882 +g225230 +S'Water Flower' +p253883 +sg225232 +S'Agnes Martin' +p253884 +sg225234 +S'pen and white and red ink? with gray wash' +p253885 +sg225236 +S'1964' +p253886 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000975.jpg' +p253887 +sg225240 +g27 +sa(dp253888 +g225232 +S'Agnes Martin' +p253889 +sg225240 +g27 +sg225234 +S'pen and black ink and white gouache' +p253890 +sg225230 +S'Wheat' +p253891 +sg225236 +S'1964' +p253892 +sa(dp253893 +g225232 +S'Agnes Martin' +p253894 +sg225240 +g27 +sg225234 +S'black and white ink?' +p253895 +sg225230 +S'Night' +p253896 +sg225236 +S'1963' +p253897 +sa(dp253898 +g225232 +S'Agnes Martin' +p253899 +sg225240 +g27 +sg225234 +S'pen and black ink' +p253900 +sg225230 +S'Untitled' +p253901 +sg225236 +S'1964' +p253902 +sa(dp253903 +g225232 +S'Artist Information (' +p253904 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'In Black with Yellow Ochre' +p253905 +sg225236 +S'(printer)' +p253906 +sa(dp253907 +g225230 +S'Summertime in Italy (with Blue)' +p253908 +sg225232 +S'Artist Information (' +p253909 +sg225234 +S'American, born 1927' +p253910 +sg225236 +S'(printer)' +p253911 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b44.jpg' +p253912 +sg225240 +g27 +sa(dp253913 +g225230 +S'Automatism B' +p253914 +sg225232 +S'Artist Information (' +p253915 +sg225234 +S'American, born 1927' +p253916 +sg225236 +S'(printer)' +p253917 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b45.jpg' +p253918 +sg225240 +g27 +sa(dp253919 +g225232 +S'Robert Motherwell' +p253920 +sg225240 +g27 +sg225234 +S'portfolio of 21 aquatints with selections from the original Spanish of poems by Rafael Alberti with English translations' +p253921 +sg225230 +S'A la pintura' +p253922 +sg225236 +S'1968/1972' +p253923 +sa(dp253924 +g225230 +S'The Name' +p253925 +sg225232 +S'Barnett Newman' +p253926 +sg225234 +S'brush and black ink on wove paper' +p253927 +sg225236 +S'1949' +p253928 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a000655e.jpg' +p253929 +sg225240 +g27 +sa(dp253930 +g225230 +S'Untitled Etching #1' +p253931 +sg225232 +S'Barnett Newman' +p253932 +sg225234 +S'etching and aquatint' +p253933 +sg225236 +S'1969' +p253934 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b51.jpg' +p253935 +sg225240 +g27 +sa(dp253936 +g225230 +S'Untitled Etching #2' +p253937 +sg225232 +S'Barnett Newman' +p253938 +sg225234 +S'etching and aquatint' +p253939 +sg225236 +S'1969' +p253940 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b52.jpg' +p253941 +sg225240 +g27 +sa(dp253942 +g225230 +S'Untitled (Geometric Mouse)' +p253943 +sg225232 +S'Artist Information (' +p253944 +sg225234 +g27 +sg225236 +S'(publisher)' +p253945 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00050/a0005035.jpg' +p253946 +sg225240 +g27 +sa(dp253947 +g225232 +S'Artist Information (' +p253948 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled (Sneaker Lace)' +p253949 +sg225236 +S'(publisher)' +p253950 +sa(dp253951 +g225232 +S'Claes Oldenburg' +p253952 +sg225240 +g27 +sg225234 +S'lithograph' +p253953 +sg225230 +S'Soft Fireplug, Inverted' +p253954 +sg225236 +S'unknown date\n' +p253955 +sa(dp253956 +g225232 +S'Claes Oldenburg' +p253957 +sg225240 +g27 +sg225234 +S'lithograph' +p253958 +sg225230 +S'Tea Bag' +p253959 +sg225236 +S'unknown date\n' +p253960 +sa(dp253961 +g225232 +S'Robert Rauschenberg' +p253962 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Rives BFK paper' +p253963 +sg225230 +S'Urban' +p253964 +sg225236 +S'1962' +p253965 +sa(dp253966 +g225232 +S'Robert Rauschenberg' +p253967 +sg225240 +g27 +sg225234 +S'lithograph (stone) in blue and blue-black on Japan paper' +p253968 +sg225230 +S'Stunt Man I' +p253969 +sg225236 +S'1962' +p253970 +sa(dp253971 +g225232 +S'Robert Rauschenberg' +p253972 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red and orange-red on Japan paper' +p253973 +sg225230 +S'Stunt Man III' +p253974 +sg225236 +S'1962' +p253975 +sa(dp253976 +g225232 +S'Robert Rauschenberg' +p253977 +sg225240 +g27 +sg225234 +S'lithograph (stone) in dark gray and black on Rives BFK paper' +p253978 +sg225230 +S'Accident' +p253979 +sg225236 +S'1963' +p253980 +sa(dp253981 +g225232 +S'Robert Rauschenberg' +p253982 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black and dark brown on Japan paper' +p253983 +sg225230 +S'Rival' +p253984 +sg225236 +S'1963' +p253985 +sa(dp253986 +g225232 +S'Robert Rauschenberg' +p253987 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Rives BFK paper' +p253988 +sg225230 +S'Kip-Up' +p253989 +sg225236 +S'1964' +p253990 +sa(dp253991 +g225232 +S'Robert Rauschenberg' +p253992 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Rives BFK paper' +p253993 +sg225230 +S'Spot' +p253994 +sg225236 +S'1964' +p253995 +sa(dp253996 +g225232 +S'Robert Rauschenberg' +p253997 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Rives BFK paper' +p253998 +sg225230 +S'Breakthrough I' +p253999 +sg225236 +S'1964' +p254000 +sa(dp254001 +g225232 +S'Robert Rauschenberg' +p254002 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black and red on Rives BFK paper' +p254003 +sg225230 +S'Front Roll' +p254004 +sg225236 +S'1964' +p254005 +sa(dp254006 +g225232 +S'Robert Rauschenberg' +p254007 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on rag paper' +p254008 +sg225230 +S'Post Rally' +p254009 +sg225236 +S'1965' +p254010 +sa(dp254011 +g225232 +S'Robert Rauschenberg' +p254012 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Rives BFK paper' +p254013 +sg225230 +S'Visitation II' +p254014 +sg225236 +S'1965' +p254015 +sa(dp254016 +g225230 +S"For Dante's 700 Birthday, No.2" +p254017 +sg225232 +S'Robert Rauschenberg' +p254018 +sg225234 +S'graphite, watercolor, and gouache over photo-lithograph on Strathmore illustration board' +p254019 +sg225236 +S'1965' +p254020 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a000098b.jpg' +p254021 +sg225240 +g27 +sa(dp254022 +g225232 +S'Robert Rauschenberg' +p254023 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red and black on Crisbrook British handmade paper' +p254024 +sg225230 +S'Night Grip' +p254025 +sg225236 +S'1966' +p254026 +sa(dp254027 +g225232 +S'Robert Rauschenberg' +p254028 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black, maroon, green, and beige with embossing on J. Whatman 1958 paper' +p254029 +sg225230 +S'Gamble' +p254030 +sg225236 +S'1968' +p254031 +sa(dp254032 +g225232 +S'Robert Rauschenberg' +p254033 +sg225240 +g27 +sg225234 +S'4-color lithograph (stone and aluminum) on Rives BFK paper' +p254034 +sg225230 +S'Storyline I' +p254035 +sg225236 +S'1968' +p254036 +sa(dp254037 +g225232 +S'Artist Information (' +p254038 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Storyline II' +p254039 +sg225236 +S'(publisher)' +p254040 +sa(dp254041 +g225232 +S'Artist Information (' +p254042 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Storyline III' +p254043 +sg225236 +S'(publisher)' +p254044 +sa(dp254045 +g225232 +S'Artist Information (' +p254046 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Love Zone' +p254047 +sg225236 +S'(publisher)' +p254048 +sa(dp254049 +g225232 +S'Robert Rauschenberg' +p254050 +sg225240 +g27 +sg225234 +S'lithograph (stone) in green, purple, brown, and gray on J. Whatman 1961 paper' +p254051 +sg225230 +S'Promise' +p254052 +sg225236 +S'1968' +p254053 +sa(dp254054 +g225232 +S'Artist Information (' +p254055 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Tides' +p254056 +sg225236 +S'(printer)' +p254057 +sa(dp254058 +g225232 +S'Artist Information (' +p254059 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Drifts' +p254060 +sg225236 +S'(printer)' +p254061 +sa(dp254062 +g225232 +S'Artist Information (' +p254063 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Loop' +p254064 +sg225236 +S'(publisher)' +p254065 +sa(dp254066 +g225232 +S'Robert Rauschenberg' +p254067 +sg225240 +g27 +sg225234 +S'multi-color screenprint on calendered paper' +p254068 +sg225230 +S'Yellow Body' +p254069 +sg225236 +S'1971' +p254070 +sa(dp254071 +g225232 +S'Robert Rauschenberg' +p254072 +sg225240 +g27 +sg225234 +S'lithograph in brown and light green with embossing' +p254073 +sg225230 +S'Tanya' +p254074 +sg225236 +S'1974' +p254075 +sa(dp254076 +g225232 +S'Robert Rauschenberg' +p254077 +sg225240 +g27 +sg225234 +S'lithograph' +p254078 +sg225230 +S'Veils I' +p254079 +sg225236 +S'1974' +p254080 +sa(dp254081 +g225232 +S'Robert Rauschenberg' +p254082 +sg225240 +g27 +sg225234 +S'lithograph' +p254083 +sg225230 +S'Veils II' +p254084 +sg225236 +S'1974' +p254085 +sa(dp254086 +g225232 +S'Robert Rauschenberg' +p254087 +sg225240 +g27 +sg225234 +S'lithograph' +p254088 +sg225230 +S'Veils III' +p254089 +sg225236 +S'1974' +p254090 +sa(dp254091 +g225232 +S'Robert Rauschenberg' +p254092 +sg225240 +g27 +sg225234 +S'lithograph' +p254093 +sg225230 +S'Veils IV' +p254094 +sg225236 +S'1974' +p254095 +sa(dp254096 +g225232 +S'Robert Rauschenberg' +p254097 +sg225240 +g27 +sg225234 +S'lithograph in red, gray, and black on two sheets of paper' +p254098 +sg225230 +S'Treaty' +p254099 +sg225236 +S'1974' +p254100 +sa(dp254101 +g225232 +S'Robert Rauschenberg' +p254102 +sg225240 +g27 +sg225234 +S'multi-color lithograph on brown Kraft wrapping paper' +p254103 +sg225230 +S'Kitty Hawk' +p254104 +sg225236 +S'1974' +p254105 +sa(dp254106 +g225232 +S'Robert Rauschenberg' +p254107 +sg225240 +g27 +sg225234 +S'lithograph in blue-black on two sheets of paper' +p254108 +sg225230 +S'Killdevil Hill' +p254109 +sg225236 +S'1975' +p254110 +sa(dp254111 +g225232 +S'Jasper Johns' +p254112 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in black and transparent gray on German Copperplate Deluxe paper' +p254113 +sg225230 +S'Figure 1' +p254114 +sg225236 +S'1968' +p254115 +sa(dp254116 +g225232 +S'Larry Rivers' +p254117 +sg225240 +g27 +sg225234 +S'lithograph' +p254118 +sg225230 +S'The Bike Girl' +p254119 +sg225236 +S'1958' +p254120 +sa(dp254121 +g225232 +S'Larry Rivers' +p254122 +sg225240 +g27 +sg225234 +S'color lithograph' +p254123 +sg225230 +S'9 Kinds of French Money' +p254124 +sg225236 +S'1963' +p254125 +sa(dp254126 +g225232 +S'Larry Rivers' +p254127 +sg225240 +g27 +sg225234 +S'color lithograph' +p254128 +sg225230 +S'French Money' +p254129 +sg225236 +S'1963' +p254130 +sa(dp254131 +g225232 +S'Larry Rivers' +p254132 +sg225240 +g27 +sg225234 +S'color lithograph' +p254133 +sg225230 +S'Fifteen Years' +p254134 +sg225236 +S'1965' +p254135 +sa(dp254136 +g225232 +S'Larry Rivers' +p254137 +sg225240 +g27 +sg225234 +S'color lithograph' +p254138 +sg225230 +S'Stravinsky II' +p254139 +sg225236 +S'1966' +p254140 +sa(dp254141 +g225232 +S'Larry Rivers' +p254142 +sg225240 +g27 +sg225234 +S'etching in brown' +p254143 +sg225230 +S'Downtown Lion' +p254144 +sg225236 +S'1967' +p254145 +sa(dp254146 +g225232 +S'Larry Rivers' +p254147 +sg225240 +g27 +sg225234 +S'color lithograph' +p254148 +sg225230 +S'Stravinsky III' +p254149 +sg225236 +S'1966/1967' +p254150 +sa(dp254151 +g225232 +S'James Rosenquist' +p254152 +sg225240 +g27 +sg225234 +S'color lithograph' +p254153 +sg225230 +S'Spaghetti and Grass' +p254154 +sg225236 +S'1965' +p254155 +sa(dp254156 +g225232 +S'James Rosenquist' +p254157 +sg225240 +g27 +sg225234 +S'color lithograph' +p254158 +sg225230 +S'Circles of Confusion' +p254159 +sg225236 +S'1966' +p254160 +sa(dp254161 +g225232 +S'James Rosenquist' +p254162 +sg225240 +g27 +sg225234 +S'color lithograph' +p254163 +sg225230 +S'Roll Down' +p254164 +sg225236 +S'1966/1967' +p254165 +sa(dp254166 +g225232 +S'James Rosenquist' +p254167 +sg225240 +g27 +sg225234 +S'color lithograph' +p254168 +sg225230 +S'Expo 67 Mural - Firepole' +p254169 +sg225236 +S'1967' +p254170 +sa(dp254171 +g225232 +S'James Rosenquist' +p254172 +sg225240 +g27 +sg225234 +S'color screenprint' +p254173 +sg225230 +S'Whipped Butter for Eugin Ruchin' +p254174 +sg225236 +S'1966' +p254175 +sa(dp254176 +g225232 +S'James Rosenquist' +p254177 +sg225240 +g27 +sg225234 +S'color screenprint' +p254178 +sg225230 +S'For Love' +p254179 +sg225236 +S'1966' +p254180 +sa(dp254181 +g225232 +S'James Rosenquist' +p254182 +sg225240 +g27 +sg225234 +S'color lithograph' +p254183 +sg225230 +S'My Mind is a Glass of Water' +p254184 +sg225236 +S'1973' +p254185 +sa(dp254186 +g225230 +S'View of the Big Picture' +p254187 +sg225232 +S'Ed Ruscha' +p254188 +sg225234 +S'colored pencil with pen and black ink over graphite on wove paper' +p254189 +sg225236 +S'1963' +p254190 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a00009c1.jpg' +p254191 +sg225240 +g27 +sa(dp254192 +g225232 +S'Ben Shahn' +p254193 +sg225240 +g27 +sg225234 +S'hand-colored screenprint' +p254194 +sg225230 +S'Supermarket' +p254195 +sg225236 +S'1957' +p254196 +sa(dp254197 +g225232 +S'Frank Stella' +p254198 +sg225240 +g27 +sg225234 +S'7-color lithograph (aluminum) on English Vellum Graph paper' +p254199 +sg225230 +S'Star of Persia I' +p254200 +sg225236 +S'1967' +p254201 +sa(dp254202 +g225232 +S'Frank Stella' +p254203 +sg225240 +g27 +sg225234 +S'7-color lithograph (aluminum) on English Vellum Graph paper' +p254204 +sg225230 +S'Star of Persia II' +p254205 +sg225236 +S'1967' +p254206 +sa(dp254207 +g225232 +S'Frank Stella' +p254208 +sg225240 +g27 +sg225234 +S'color felt-tip pen on graph paper' +p254209 +sg225230 +S'Drawing for Lincoln Center Poster' +p254210 +sg225236 +S'1967' +p254211 +sa(dp254212 +g225232 +S'Frank Stella' +p254213 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in black on Special Arjomari paper' +p254214 +sg225230 +S'Grid Stack' +p254215 +sg225236 +S'1967/1970' +p254216 +sa(dp254217 +g225232 +S'Frank Stella' +p254218 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in black on Special Arjomari paper' +p254219 +sg225230 +S'Black Stack' +p254220 +sg225236 +S'1967/1970' +p254221 +sa(dp254222 +g225232 +S'Frank Stella' +p254223 +sg225240 +g27 +sg225234 +S'8-color lithograph (aluminum) on Special Arjomari paper' +p254224 +sg225230 +S'River of Ponds II' +p254225 +sg225236 +S'1970/1971' +p254226 +sa(dp254227 +g225232 +S'Myron Stout' +p254228 +sg225240 +g27 +sg225234 +S'charcoal on paperboard' +p254229 +sg225230 +S'Untitled' +p254230 +sg225236 +S'unknown date\n' +p254231 +sa(dp254232 +g225232 +S'Mark Tobey' +p254233 +sg225240 +g27 +sg225234 +S'lithograph' +p254234 +sg225230 +S'Composition' +p254235 +sg225236 +S'1961' +p254236 +sa(dp254237 +g225232 +S'Mark Tobey' +p254238 +sg225240 +g27 +sg225234 +S'intaglio' +p254239 +sg225230 +S'Movements in White' +p254240 +sg225236 +S'1970' +p254241 +sa(dp254242 +g225230 +S'Trio' +p254243 +sg225232 +S'Mark Tobey' +p254244 +sg225234 +S'intaglio' +p254245 +sg225236 +S'1970' +p254246 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bac.jpg' +p254247 +sg225240 +g27 +sa(dp254248 +g225232 +S'Anne Truitt' +p254249 +sg225240 +g27 +sg225234 +S'acrylic on paper\r\nacrylic on paper' +p254250 +sg225230 +S'Untitled' +p254251 +sg225236 +S'1968' +p254252 +sa(dp254253 +g225230 +S'Note I' +p254254 +sg225232 +S'Artist Information (' +p254255 +sg225234 +S'American' +p254256 +sg225236 +S'(printer)' +p254257 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bca.jpg' +p254258 +sg225240 +g27 +sa(dp254259 +g225230 +S'Note II' +p254260 +sg225232 +S'Artist Information (' +p254261 +sg225234 +S'American' +p254262 +sg225236 +S'(printer)' +p254263 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bcb.jpg' +p254264 +sg225240 +g27 +sa(dp254265 +g225230 +S'L.Pa. No.1' +p254266 +sg225232 +S'Jack Tworkov' +p254267 +sg225234 +S'gouache, graphite, and watercolor' +p254268 +sg225236 +S'1961' +p254269 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a00009e8.jpg' +p254270 +sg225240 +g27 +sa(dp254271 +g225232 +S'Jack Youngerman' +p254272 +sg225240 +g27 +sg225234 +S'brush and black ink' +p254273 +sg225230 +S'March 5th, 1968' +p254274 +sg225236 +S'1968' +p254275 +sa(dp254276 +g225232 +S'Jack Youngerman' +p254277 +sg225240 +g27 +sg225234 +S'brush and black ink' +p254278 +sg225230 +S'April 2nd, 1965' +p254279 +sg225236 +S'1965' +p254280 +sa(dp254281 +g225232 +S'Jack Youngerman' +p254282 +sg225240 +g27 +sg225234 +S'red watercolor?' +p254283 +sg225230 +S'August 6, 1968' +p254284 +sg225236 +S'1968' +p254285 +sa(dp254286 +g225232 +S'Jack Youngerman' +p254287 +sg225240 +g27 +sg225234 +S'brush and black ink' +p254288 +sg225230 +S'March 3rd, 1965' +p254289 +sg225236 +S'1965' +p254290 +sa(dp254291 +g225232 +S'Robert Rauschenberg' +p254292 +sg225240 +g27 +sg225234 +S'watercolor and gouache over photo-lithograph on Strathmore illustration board' +p254293 +sg225230 +S"For Dante's 700 Birthday, No.1" +p254294 +sg225236 +S'1965' +p254295 +sa(dp254296 +g225230 +S'View of the Big Picture' +p254297 +sg225232 +S'Ed Ruscha' +p254298 +sg225234 +S'colored pencil with pen and black ink over graphite on wove paper' +p254299 +sg225236 +S'1963' +p254300 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a00009c2.jpg' +p254301 +sg225240 +g27 +sa(dp254302 +g225230 +S'View of the Big Picture' +p254303 +sg225232 +S'Ed Ruscha' +p254304 +sg225234 +S'colored pencil with pen and black ink over graphite on wove paper' +p254305 +sg225236 +S'1963' +p254306 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a00009c3.jpg' +p254307 +sg225240 +g27 +sa(dp254308 +g225232 +S'Turkish 18th Century' +p254309 +sg225240 +g27 +sg225234 +S'overall: 55 x 43.5 cm (21 5/8 x 17 1/8 in.)' +p254310 +sg225230 +S'George Washington' +p254311 +sg225236 +S'\nembroidery: silk, spun silver, and silver-gilt thread and silver and silver-gilt wire on linen, with red cotton moir? ribbon' +p254312 +sa(dp254313 +g225230 +S'Great Rock of Inner Seeking' +p254314 +sg225232 +S'Isamu Noguchi' +p254315 +sg225234 +S'basalt' +p254316 +sg225236 +S'1974' +p254317 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0003b/a0003b55.jpg' +p254318 +sg225240 +g27 +sa(dp254319 +g225230 +S'Fant\xc3\xb4mas' +p254320 +sg225232 +S'Juan Gris' +p254321 +sg225234 +S'oil on canvas' +p254322 +sg225236 +S'1915' +p254323 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dd3.jpg' +p254324 +sg225240 +g27 +sa(dp254325 +g225230 +S'Crouching Nude' +p254326 +sg225232 +S'Max Weber' +p254327 +sg225234 +S'color woodcut on laid paper' +p254328 +sg225236 +S'1919/1920' +p254329 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bd1.jpg' +p254330 +sg225240 +g27 +sa(dp254331 +g225232 +S'Max Pechstein' +p254332 +sg225240 +g27 +sg225234 +S'woodcut on wove paper' +p254333 +sg225230 +S'Evening' +p254334 +sg225236 +S'1919' +p254335 +sa(dp254336 +g225230 +S'Crouching Nude' +p254337 +sg225232 +S'Max Weber' +p254338 +sg225234 +S'color woodcut on laid paper' +p254339 +sg225236 +S'1919/1920' +p254340 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00050/a00050ee.jpg' +p254341 +sg225240 +g27 +sa(dp254342 +g225232 +S'Max Weber' +p254343 +sg225240 +g27 +sg225234 +S'color woodcut on laid paper' +p254344 +sg225230 +S'Two Figures' +p254345 +sg225236 +S'1919/1920' +p254346 +sa(dp254347 +g225230 +S'Seated Figure' +p254348 +sg225232 +S'Max Weber' +p254349 +sg225234 +S'color woodcut on laid paper' +p254350 +sg225236 +S'1919/1920' +p254351 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bd2.jpg' +p254352 +sg225240 +g27 +sa(dp254353 +g225230 +S'Large Primitive Head in Profile' +p254354 +sg225232 +S'Max Weber' +p254355 +sg225234 +S'color linocut on wove paper' +p254356 +sg225236 +S'1920/1921' +p254357 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bd3.jpg' +p254358 +sg225240 +g27 +sa(dp254359 +g225230 +S'Mr. Tucker of Yeovil' +p254360 +sg225232 +S'British 19th Century' +p254361 +sg225234 +S'overall: 91.3 x 71.4 cm (35 15/16 x 28 1/8 in.)\r\nframed: 106.7 x 86.4 cm (42 x 34 in.)' +p254362 +sg225236 +S'\noil on canvas' +p254363 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a00004ed.jpg' +p254364 +sg225240 +g27 +sa(dp254365 +g225230 +S'The Invocation' +p254366 +sg225232 +S'Paul Gauguin' +p254367 +sg225234 +S'oil on canvas' +p254368 +sg225236 +S'1903' +p254369 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00055/a0005515.jpg' +p254370 +sg225240 +g27 +sa(dp254371 +g225230 +S'133' +p254372 +sg225232 +S'Morris Louis' +p254373 +sg225234 +S'acrylic on canvas' +p254374 +sg225236 +S'1962' +p254375 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000150.jpg' +p254376 +sg225240 +g27 +sa(dp254377 +g225232 +S'Artist Information (' +p254378 +sg225240 +g27 +sg225234 +S'active 20th century' +p254379 +sg225230 +S'By the waters of Miers' +p254380 +sg225236 +S'(printmaker)' +p254381 +sa(dp254382 +g225232 +S'Artist Information (' +p254383 +sg225240 +g27 +sg225234 +S'active 20th century' +p254384 +sg225230 +S'By the waters of Miers' +p254385 +sg225236 +S'(printmaker)' +p254386 +sa(dp254387 +g225232 +S'Artist Information (' +p254388 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'The critic laughs' +p254389 +sg225236 +S'(printer)' +p254390 +sa(dp254391 +g225232 +S'Artist Information (' +p254392 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Fashion-plate' +p254393 +sg225236 +S'(publisher)' +p254394 +sa(dp254395 +g225232 +S'Richard Hamilton' +p254396 +sg225240 +g27 +sg225234 +S'photograph, screen print from four stencils, Letratone, retouched and sprayed, with collage; mounted on board' +p254397 +sg225230 +S'People' +p254398 +sg225236 +S'1968' +p254399 +sa(dp254400 +g225232 +S'Artist Information (' +p254401 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Release' +p254402 +sg225236 +S'(printer)' +p254403 +sa(dp254404 +g225232 +S'Artist Information (' +p254405 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p254406 +sg225236 +S'(printer)' +p254407 +sa(dp254408 +g225232 +S'Artist Information (' +p254409 +sg225240 +g27 +sg225234 +S'(publisher)' +p254410 +sg225230 +S'The New York Collection for Stockholm Portfolio' +p254411 +sg225236 +S'\n' +p254412 +sa(dp254413 +g225232 +S'Artist Information (' +p254414 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p254415 +sg225236 +S'(printer)' +p254416 +sa(dp254417 +g225232 +S'Artist Information (' +p254418 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p254419 +sg225236 +S'(printer)' +p254420 +sa(dp254421 +g225232 +S'Artist Information (' +p254422 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Photograph from the Artist\'s Movie "Hard Core", 1969' +p254423 +sg225236 +S'(printer)' +p254424 +sa(dp254425 +g225232 +S'Artist Information (' +p254426 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p254427 +sg225236 +S'(printer)' +p254428 +sa(dp254429 +g225232 +S'Artist Information (' +p254430 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p254431 +sg225236 +S'(printer)' +p254432 +sa(dp254433 +g225232 +S'Artist Information (' +p254434 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p254435 +sg225236 +S'(printer)' +p254436 +sa(dp254437 +g225232 +S'Artist Information (' +p254438 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'108 Dollar Bill' +p254439 +sg225236 +S'(printer)' +p254440 +sa(dp254441 +g225232 +S'Artist Information (' +p254442 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'An E.A.T. Expedation' +p254443 +sg225236 +S'(printer)' +p254444 +sa(dp254445 +g225232 +S'Artist Information (' +p254446 +sg225240 +g27 +sg225234 +g27 +sg225230 +S"420 West Broadway Visitors' Profile" +p254447 +sg225236 +S'(printer)' +p254448 +sa(dp254449 +g225232 +S'Artist Information (' +p254450 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p254451 +sg225236 +S'(printer)' +p254452 +sa(dp254453 +g225232 +S'Artist Information (' +p254454 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Installation Drawing for a Work in the New York Collection for Stockholm' +p254455 +sg225236 +S'(printer)' +p254456 +sa(dp254457 +g225232 +S'Artist Information (' +p254458 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p254459 +sg225236 +S'(printer)' +p254460 +sa(dp254461 +g225232 +S'Artist Information (' +p254462 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p254463 +sg225236 +S'(printer)' +p254464 +sa(dp254465 +g225232 +S'Artist Information (' +p254466 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Finger Pointing' +p254467 +sg225236 +S'(printer)' +p254468 +sa(dp254469 +g225232 +S'Artist Information (' +p254470 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p254471 +sg225236 +S'(printer)' +p254472 +sa(dp254473 +g225232 +S'Artist Information (' +p254474 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p254475 +sg225236 +S'(printer)' +p254476 +sa(dp254477 +g225232 +S'Artist Information (' +p254478 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p254479 +sg225236 +S'(printer)' +p254480 +sa(dp254481 +g225232 +S'Artist Information (' +p254482 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Mickey Mouse' +p254483 +sg225236 +S'(printer)' +p254484 +sa(dp254485 +g225232 +S'Artist Information (' +p254486 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p254487 +sg225236 +S'(printer)' +p254488 +sa(dp254489 +g225232 +S'Artist Information (' +p254490 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Installation Drawing of Monogram' +p254491 +sg225236 +S'(printer)' +p254492 +sa(dp254493 +g225232 +S'Artist Information (' +p254494 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Lenin?' +p254495 +sg225236 +S'(printer)' +p254496 +sa(dp254497 +g225232 +S'Artist Information (' +p254498 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Ten Days' +p254499 +sg225236 +S'(printer)' +p254500 +sa(dp254501 +g225232 +S'Artist Information (' +p254502 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Dry Cleaning Store' +p254503 +sg225236 +S'(printer)' +p254504 +sa(dp254505 +g225232 +S'Artist Information (' +p254506 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p254507 +sg225236 +S'(printer)' +p254508 +sa(dp254509 +g225232 +S'Artist Information (' +p254510 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p254511 +sg225236 +S'(printer)' +p254512 +sa(dp254513 +g225232 +S'Artist Information (' +p254514 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p254515 +sg225236 +S'(printer)' +p254516 +sa(dp254517 +g225232 +S'Artist Information (' +p254518 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p254519 +sg225236 +S'(printer)' +p254520 +sa(dp254521 +g225232 +S'Artist Information (' +p254522 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p254523 +sg225236 +S'(printer)' +p254524 +sa(dp254525 +g225232 +S'Artist Information (' +p254526 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Mao' +p254527 +sg225236 +S'(printer)' +p254528 +sa(dp254529 +g225230 +S'Saint Anne with the Virgin and the Christ Child' +p254530 +sg225232 +S'Master of Frankfurt' +p254531 +sg225234 +S'oil on panel' +p254532 +sg225236 +S'c. 1511/1515' +p254533 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00005/a00005b7.jpg' +p254534 +sg225240 +S'In this altarpiece panel, the Virgin and her mother, Saint Anne, flank the infant Jesus. Images with Saint Anne became common in the fifteenth century as her popularity grew, and this arrangement is one of the two principal ways in which she was shown. The figure of God the Father appears in a gold ground above the baby’s head, and the dove of the holy spirit hovers between them. The composition links the trinity—the father, the son, and the holy ghost—with the triad of mother, Mary, and child. The visual parallel enhances Anne’s status and underlines Christ’s dual nature as both human and divine. (A larger \n The identity of the Master of Frankfurt remains undocumented. In his case the designation given him by modern scholars is misleading since it is now clear that he was not German but Netherlandish, probably working in Antwerp. Although we are not certain of his name we do have his fingerprints. He used his fingers to smudge the paint in the clouds, giving them extra texture. Another interesting aspect of his technique is his apparent use of a stencil to create the pattern in Saint Anne’s red cloak. Notice how the design is uninterrupted across the folds of cloth.\n ' +p254535 +sa(dp254536 +g225230 +S'The Capitoline Eagle' +p254537 +sg225232 +S'Sir Peter Paul Rubens' +p254538 +sg225234 +S'black chalk on laid paper' +p254539 +sg225236 +S'c. 1601/1602' +p254540 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ed9.jpg' +p254541 +sg225240 +g27 +sa(dp254542 +g225232 +S'Josef Albers' +p254543 +sg225240 +g27 +sg225234 +S'inkless intaglio on Arches paper' +p254544 +sg225230 +S'Embossed Linear Construction 1-A' +p254545 +sg225236 +S'1969' +p254546 +sa(dp254547 +g225232 +S'Josef Albers' +p254548 +sg225240 +g27 +sg225234 +S'inkless intaglio on Arches paper' +p254549 +sg225230 +S'Embossed Linear Construction 1-B' +p254550 +sg225236 +S'1969' +p254551 +sa(dp254552 +g225232 +S'Josef Albers' +p254553 +sg225240 +g27 +sg225234 +S'inkless intaglio on Arches paper' +p254554 +sg225230 +S'Embossed Linear Construction 1-C' +p254555 +sg225236 +S'l969' +p254556 +sa(dp254557 +g225232 +S'Josef Albers' +p254558 +sg225240 +g27 +sg225234 +S'inkless intaglio on Arches paper' +p254559 +sg225230 +S'Embossed Linear Construction 1-D' +p254560 +sg225236 +S'1969' +p254561 +sa(dp254562 +g225232 +S'Josef Albers' +p254563 +sg225240 +g27 +sg225234 +S'inkless intaglio on Arches paper' +p254564 +sg225230 +S'Embossed Linear Construction 2-A' +p254565 +sg225236 +S'1969' +p254566 +sa(dp254567 +g225232 +S'Josef Albers' +p254568 +sg225240 +g27 +sg225234 +S'inkless intaglio on Arches paper' +p254569 +sg225230 +S'Embossed Linear Construction 2-B' +p254570 +sg225236 +S'1969' +p254571 +sa(dp254572 +g225232 +S'Josef Albers' +p254573 +sg225240 +g27 +sg225234 +S'inkless intaglio on Arches paper' +p254574 +sg225230 +S'Embossed Linear Construction 2-C' +p254575 +sg225236 +S'1969' +p254576 +sa(dp254577 +g225232 +S'Josef Albers' +p254578 +sg225240 +g27 +sg225234 +S'inkless intaglio on Arches paper' +p254579 +sg225230 +S'Embossed Linear Construction 2-D' +p254580 +sg225236 +S'1969' +p254581 +sa(dp254582 +g225232 +S'Josef Albers' +p254583 +sg225240 +g27 +sg225234 +S'color screenprint' +p254584 +sg225230 +S'Variant One' +p254585 +sg225236 +S'1969' +p254586 +sa(dp254587 +g225232 +S'Josef Albers' +p254588 +sg225240 +g27 +sg225234 +S'portfolio with six screenprints' +p254589 +sg225230 +S'Six Variants' +p254590 +sg225236 +S'1969' +p254591 +sa(dp254592 +g225232 +S'Josef Albers' +p254593 +sg225240 +g27 +sg225234 +S'color screenprint' +p254594 +sg225230 +S'Variant Two' +p254595 +sg225236 +S'1969' +p254596 +sa(dp254597 +g225232 +S'Josef Albers' +p254598 +sg225240 +g27 +sg225234 +S'color screenprint' +p254599 +sg225230 +S'Variant Three' +p254600 +sg225236 +S'1969' +p254601 +sa(dp254602 +g225232 +S'Josef Albers' +p254603 +sg225240 +g27 +sg225234 +S'color screenprint' +p254604 +sg225230 +S'Variant Four' +p254605 +sg225236 +S'1969' +p254606 +sa(dp254607 +g225232 +S'Josef Albers' +p254608 +sg225240 +g27 +sg225234 +S'color screenprint' +p254609 +sg225230 +S'Variant Five' +p254610 +sg225236 +S'1969' +p254611 +sa(dp254612 +g225232 +S'Josef Albers' +p254613 +sg225240 +g27 +sg225234 +S'color screenprint' +p254614 +sg225230 +S'Variant Six' +p254615 +sg225236 +S'1969' +p254616 +sa(dp254617 +g225232 +S'Ivan Puni' +p254618 +sg225240 +g27 +sg225234 +S'painted wood, metal and cardboard' +p254619 +sg225230 +S'Suprematist Construction Montage' +p254620 +sg225236 +S'1915/1916' +p254621 +sa(dp254622 +g225230 +S'Les Plaisirs paternels (Paternal Pleasures)' +p254623 +sg225232 +S'Philibert-Louis Debucourt' +p254624 +sg225234 +S'etching and wash manner, printed in orange-red, blue, yellow, and black inks' +p254625 +sg225236 +S'c. 1797' +p254626 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a00096cb.jpg' +p254627 +sg225240 +g27 +sa(dp254628 +g225230 +S'Forest Landscape with Two Men and a Woman Resting near a Bridge' +p254629 +sg225232 +S'Artist Information (' +p254630 +sg225234 +S'(artist after)' +p254631 +sg225236 +S'\n' +p254632 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d030.jpg' +p254633 +sg225240 +g27 +sa(dp254634 +g225230 +S'River Landscape with a Duck Hunter' +p254635 +sg225232 +S'Artist Information (' +p254636 +sg225234 +S'(artist after)' +p254637 +sg225236 +S'\n' +p254638 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d02f.jpg' +p254639 +sg225240 +g27 +sa(dp254640 +g225230 +S'The Fall of the Rebellious Angels' +p254641 +sg225232 +S'Philippe Thomassin' +p254642 +sg225234 +S'engraving' +p254643 +sg225236 +S'1618' +p254644 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bf2.jpg' +p254645 +sg225240 +g27 +sa(dp254646 +g225230 +S'Sailors at the Waterside' +p254647 +sg225232 +S'Thomas Wyck' +p254648 +sg225234 +S'etching' +p254649 +sg225236 +S'unknown date\n' +p254650 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d451.jpg' +p254651 +sg225240 +g27 +sa(dp254652 +g225230 +S'The Shepherd and the Old Warrior' +p254653 +sg225232 +S'Domenico Campagnola' +p254654 +sg225234 +S'engraving' +p254655 +sg225236 +S'1517' +p254656 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c885.jpg' +p254657 +sg225240 +g27 +sa(dp254658 +g225230 +S'Saint Sebastian' +p254659 +sg225232 +S'Simon Fran\xc3\xa7ois' +p254660 +sg225234 +S'etching' +p254661 +sg225236 +S'unknown date\n' +p254662 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b13.jpg' +p254663 +sg225240 +g27 +sa(dp254664 +g225230 +S'Youth Sitting on a Wall in Conversation with Two Men' +p254665 +sg225232 +S'Salvator Rosa' +p254666 +sg225234 +S'pen and brown ink and black chalk with gray wash on laid paper' +p254667 +sg225236 +S'c. 1656/1657' +p254668 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007481.jpg' +p254669 +sg225240 +g27 +sa(dp254670 +g225230 +S'Head of an Apostle' +p254671 +sg225232 +S'Hendrick Goltzius' +p254672 +sg225234 +S', unknown date' +p254673 +sg225236 +S'\n' +p254674 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006de3.jpg' +p254675 +sg225240 +g27 +sa(dp254676 +g225230 +S'Landscape with Elisha Mocked' +p254677 +sg225232 +S'David Vinckboons' +p254678 +sg225234 +S'pen and brown ink with green, blue, brown, and pink wash over black chalk on laid paper' +p254679 +sg225236 +S'c. 1610' +p254680 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00037/a00037fc.jpg' +p254681 +sg225240 +g27 +sa(dp254682 +g225230 +S'Man with a Plumed Cap' +p254683 +sg225232 +S'Artist Information (' +p254684 +sg225234 +S'(artist after)' +p254685 +sg225236 +S'\n' +p254686 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d56c.jpg' +p254687 +sg225240 +g27 +sa(dp254688 +g225230 +S'Landscape with Cross and Figures' +p254689 +sg225232 +S'Georg Eisenmann' +p254690 +sg225234 +S'etching' +p254691 +sg225236 +S'unknown date\n' +p254692 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b344.jpg' +p254693 +sg225240 +g27 +sa(dp254694 +g225230 +S'Mountainous Riverscape with Figures' +p254695 +sg225232 +S'Georg Eisenmann' +p254696 +sg225234 +S'etching' +p254697 +sg225236 +S'unknown date\n' +p254698 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b343.jpg' +p254699 +sg225240 +g27 +sa(dp254700 +g225230 +S'Landscape with a Bridge and Three Farm Buildings' +p254701 +sg225232 +S'Georg Eisenmann' +p254702 +sg225234 +S'etching' +p254703 +sg225236 +S'unknown date\n' +p254704 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b342.jpg' +p254705 +sg225240 +g27 +sa(dp254706 +g225230 +S'Mountainous Landscape with Figures and a Monastary' +p254707 +sg225232 +S'Georg Eisenmann' +p254708 +sg225234 +S'etching' +p254709 +sg225236 +S'unknown date\n' +p254710 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b345.jpg' +p254711 +sg225240 +g27 +sa(dp254712 +g225230 +S'Mountainous Landscape with a Ruined Castle and an Arched Bridge in the Distance' +p254713 +sg225232 +S'Georg Eisenmann' +p254714 +sg225234 +S'etching' +p254715 +sg225236 +S'unknown date\n' +p254716 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b346.jpg' +p254717 +sg225240 +g27 +sa(dp254718 +g225230 +S'Landscape with the Rising Sun and a Rider with Attendant' +p254719 +sg225232 +S'Georg Eisenmann' +p254720 +sg225234 +S'etching' +p254721 +sg225236 +S'unknown date\n' +p254722 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b347.jpg' +p254723 +sg225240 +g27 +sa(dp254724 +g225230 +S'The Fall of the Giants' +p254725 +sg225232 +S'Artist Information (' +p254726 +sg225234 +S'(artist after)' +p254727 +sg225236 +S'\n' +p254728 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d0e.jpg' +p254729 +sg225240 +g27 +sa(dp254730 +g225232 +S'Artist Information (' +p254731 +sg225240 +g27 +sg225234 +S'(artist after)' +p254732 +sg225230 +S'Christ on the Cross between the Two Thieves' +p254733 +sg225236 +S'\n' +p254734 +sa(dp254735 +g225232 +S'Artist Information (' +p254736 +sg225240 +g27 +sg225234 +S'(artist after)' +p254737 +sg225230 +S'Christ on the Cross with Saint Catherine of Siena, Saint Dominic and an Angel' +p254738 +sg225236 +S'\n' +p254739 +sa(dp254740 +g225232 +S'Artist Information (' +p254741 +sg225240 +g27 +sg225234 +S'(artist after)' +p254742 +sg225230 +S'Christ on the Cross with Saint Catherine of Siena, Saint Dominic and an Angel' +p254743 +sg225236 +S'\n' +p254744 +sa(dp254745 +g225230 +S'Mother with Two Children and a Horse in Front of an Inn' +p254746 +sg225232 +S'Jan van Huchtenburgh' +p254747 +sg225234 +S'mezzotint' +p254748 +sg225236 +S'unknown date\n' +p254749 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d513.jpg' +p254750 +sg225240 +g27 +sa(dp254751 +g225230 +S'Two Fighting Horsemen' +p254752 +sg225232 +S'Jan van Huchtenburgh' +p254753 +sg225234 +S'mezzotint' +p254754 +sg225236 +S'unknown date\n' +p254755 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d516.jpg' +p254756 +sg225240 +g27 +sa(dp254757 +g225230 +S'Robbers on Horseback' +p254758 +sg225232 +S'Jan van Huchtenburgh' +p254759 +sg225234 +S'mezzotint' +p254760 +sg225236 +S'unknown date\n' +p254761 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d517.jpg' +p254762 +sg225240 +g27 +sa(dp254763 +g225230 +S'A General on Horseback (Charles of Lorraine)' +p254764 +sg225232 +S'Jan van Huchtenburgh' +p254765 +sg225234 +S'mezzotint' +p254766 +sg225236 +S'unknown date\n' +p254767 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d515.jpg' +p254768 +sg225240 +g27 +sa(dp254769 +g225230 +S'A Horseman Shooting a Turk from His Horse' +p254770 +sg225232 +S'Jan van Huchtenburgh' +p254771 +sg225234 +S'mezzotint' +p254772 +sg225236 +S'unknown date\n' +p254773 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d514.jpg' +p254774 +sg225240 +g27 +sa(dp254775 +g225232 +S'Artist Information (' +p254776 +sg225240 +g27 +sg225234 +S'(artist after)' +p254777 +sg225230 +S'Saint Martin, Bishop of Tours, Healing the Possessed Servant' +p254778 +sg225236 +S'\n' +p254779 +sa(dp254780 +g225232 +S'Artist Information (' +p254781 +sg225240 +g27 +sg225234 +S'(artist after)' +p254782 +sg225230 +S'The Disgrace of the Angels' +p254783 +sg225236 +S'\n' +p254784 +sa(dp254785 +g225232 +S'Artist Information (' +p254786 +sg225240 +g27 +sg225234 +S'(artist after)' +p254787 +sg225230 +S'Christ Carrying the Cross' +p254788 +sg225236 +S'\n' +p254789 +sa(dp254790 +g225230 +S'Christ on the Cross' +p254791 +sg225232 +S'Artist Information (' +p254792 +sg225234 +S'(artist after)' +p254793 +sg225236 +S'\n' +p254794 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d620.jpg' +p254795 +sg225240 +g27 +sa(dp254796 +g225232 +S'Artist Information (' +p254797 +sg225240 +g27 +sg225234 +S'(artist after)' +p254798 +sg225230 +S'The Presentation in the Temple' +p254799 +sg225236 +S'\n' +p254800 +sa(dp254801 +g225230 +S'Mars and Venus Surprised by Vulcan' +p254802 +sg225232 +S'Georges Reverdy' +p254803 +sg225234 +S'engraving' +p254804 +sg225236 +S'unknown date\n' +p254805 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083d1.jpg' +p254806 +sg225240 +g27 +sa(dp254807 +g225232 +S'Artist Information (' +p254808 +sg225240 +g27 +sg225234 +S'(artist after)' +p254809 +sg225230 +S'The Fathers of the Church' +p254810 +sg225236 +S'\n' +p254811 +sa(dp254812 +g225232 +S'Artist Information (' +p254813 +sg225240 +g27 +sg225234 +S'(artist after)' +p254814 +sg225230 +S'The Virgin and Child Crowned by Angels [upper half]' +p254815 +sg225236 +S'\n' +p254816 +sa(dp254817 +g225232 +S'Artist Information (' +p254818 +sg225240 +g27 +sg225234 +S'(artist after)' +p254819 +sg225230 +S'The Virgin and Child Crowned by Angels [lower half]' +p254820 +sg225236 +S'\n' +p254821 +sa(dp254822 +g225230 +S'Dance of the Dryades' +p254823 +sg225232 +S'Artist Information (' +p254824 +sg225234 +S'Italian, active 1545 - 1557' +p254825 +sg225236 +S'(artist after)' +p254826 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008372.jpg' +p254827 +sg225240 +g27 +sa(dp254828 +g225230 +S'Landscape' +p254829 +sg225232 +S'Rodolphe Bresdin' +p254830 +sg225234 +S'pen and ink on tracing paper' +p254831 +sg225236 +S'probably c. 1858' +p254832 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007245.jpg' +p254833 +sg225240 +g27 +sa(dp254834 +g225232 +S'Antonio Tempesta' +p254835 +sg225240 +g27 +sg225234 +S'bound volume with 11 etchings including title page' +p254836 +sg225230 +S'Battle Scenes I' +p254837 +sg225236 +S'unknown date\n' +p254838 +sa(dp254839 +g225230 +S'Frontispiece: Dedication to Pietro Strozzi' +p254840 +sg225232 +S'Antonio Tempesta' +p254841 +sg225234 +S'etching' +p254842 +sg225236 +S'unknown date\n' +p254843 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00066/a00066b7.jpg' +p254844 +sg225240 +g27 +sa(dp254845 +g225230 +S'Cavalry Engagement' +p254846 +sg225232 +S'Antonio Tempesta' +p254847 +sg225234 +S'etching' +p254848 +sg225236 +S'unknown date\n' +p254849 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00066/a00066c1.jpg' +p254850 +sg225240 +g27 +sa(dp254851 +g225230 +S'Cavalry Attack on a Walled Fortress' +p254852 +sg225232 +S'Antonio Tempesta' +p254853 +sg225234 +S'etching' +p254854 +sg225236 +S'unknown date\n' +p254855 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00066/a00066c2.jpg' +p254856 +sg225240 +g27 +sa(dp254857 +g225230 +S'Battle Scene with Cavalry Observing from a Hill' +p254858 +sg225232 +S'Antonio Tempesta' +p254859 +sg225234 +S'etching' +p254860 +sg225236 +S'unknown date\n' +p254861 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00066/a00066c3.jpg' +p254862 +sg225240 +g27 +sa(dp254863 +g225230 +S'Battle Scene with Two Horses Attacking Each Other' +p254864 +sg225232 +S'Antonio Tempesta' +p254865 +sg225234 +S'etching' +p254866 +sg225236 +S'unknown date\n' +p254867 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00066/a00066c4.jpg' +p254868 +sg225240 +g27 +sa(dp254869 +g225230 +S'Cavalry Charge with Soldiers and Horses Trampled' +p254870 +sg225232 +S'Antonio Tempesta' +p254871 +sg225234 +S'etching' +p254872 +sg225236 +S'unknown date\n' +p254873 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00066/a00066c5.jpg' +p254874 +sg225240 +g27 +sa(dp254875 +g225230 +S'Battle between Cavalry and Infantry' +p254876 +sg225232 +S'Antonio Tempesta' +p254877 +sg225234 +S'etching' +p254878 +sg225236 +S'unknown date\n' +p254879 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00066/a00066c6.jpg' +p254880 +sg225240 +g27 +sa(dp254881 +g225230 +S'Cavalry Attack with Soldiers Fleeing' +p254882 +sg225232 +S'Antonio Tempesta' +p254883 +sg225234 +S'etching' +p254884 +sg225236 +S'unknown date\n' +p254885 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00066/a00066c7.jpg' +p254886 +sg225240 +g27 +sa(dp254887 +g225230 +S'Cavalry Engagement' +p254888 +sg225232 +S'Antonio Tempesta' +p254889 +sg225234 +S'etching' +p254890 +sg225236 +S'unknown date\n' +p254891 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00066/a00066c8.jpg' +p254892 +sg225240 +g27 +sa(dp254893 +g225230 +S'Cavalry Attack with Soldiers Fleeing' +p254894 +sg225232 +S'Antonio Tempesta' +p254895 +sg225234 +S'etching' +p254896 +sg225236 +S'unknown date\n' +p254897 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00066/a00066d5.jpg' +p254898 +sg225240 +g27 +sa(dp254899 +g225230 +S'Six Cavalrymen in Combat' +p254900 +sg225232 +S'Antonio Tempesta' +p254901 +sg225234 +S'etching' +p254902 +sg225236 +S'unknown date\n' +p254903 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00066/a00066d6.jpg' +p254904 +sg225240 +g27 +sa(dp254905 +g225230 +S'The Taking of Carthagena' +p254906 +sg225232 +S'Artist Information (' +p254907 +sg225234 +S'(artist after)' +p254908 +sg225236 +S'\n' +p254909 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b067.jpg' +p254910 +sg225240 +g27 +sa(dp254911 +g225230 +S'Young Peasant Seated on the Ground [recto]' +p254912 +sg225232 +S'Giuseppe Maria Crespi' +p254913 +sg225234 +S', unknown date' +p254914 +sg225236 +S'\n' +p254915 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074a8.jpg' +p254916 +sg225240 +g27 +sa(dp254917 +g225232 +S'Giuseppe Maria Crespi' +p254918 +sg225240 +g27 +sg225234 +S', unknown date' +p254919 +sg225230 +S'Leg and Drapery Study [verso]' +p254920 +sg225236 +S'\n' +p254921 +sa(dp254922 +g225232 +S'Artist Information (' +p254923 +sg225240 +g27 +sg225234 +S'French, 1740 - 1808' +p254924 +sg225230 +S'Album of Proofs for Book Illustrations by C.P. Marillier' +p254925 +sg225236 +S'(artist after)' +p254926 +sa(dp254927 +g225230 +S'River Landscape' +p254928 +sg225232 +S'Tobias Verhaecht' +p254929 +sg225234 +S'pen and brown ink with blue and brown wash on laid paper' +p254930 +sg225236 +S'unknown date\n' +p254931 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00028/a00028de.jpg' +p254932 +sg225240 +g27 +sa(dp254933 +g225230 +S'Madonna and Child with Saints Elizabeth and John the Baptist (La Madonna della Scodella)' +p254934 +sg225232 +S'Annibale Carracci' +p254935 +sg225234 +S'etching and engraving' +p254936 +sg225236 +S'1606' +p254937 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c991.jpg' +p254938 +sg225240 +g27 +sa(dp254939 +g225232 +S'K\xc3\xa4the Kollwitz' +p254940 +sg225240 +g27 +sg225234 +S'bronze' +p254941 +sg225230 +S"In God's Hands" +p254942 +sg225236 +S'1935/1936' +p254943 +sa(dp254944 +g225230 +S'Portrait in White' +p254945 +sg225232 +S'Frank Weston Benson' +p254946 +sg225234 +S'oil on canvas' +p254947 +sg225236 +S'1889' +p254948 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000024.jpg' +p254949 +sg225240 +g27 +sa(dp254950 +g225230 +S'The Descent from the Cross' +p254951 +sg225232 +S'Artist Information (' +p254952 +sg225234 +S'(artist after)' +p254953 +sg225236 +S'\n' +p254954 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb6a.jpg' +p254955 +sg225240 +g27 +sa(dp254956 +g225230 +S'View of the Acropolis' +p254957 +sg225232 +S'Themistocles von Eckenbrecher' +p254958 +sg225234 +S'pen and black ink and watercolor over black chalk and touches of graphite' +p254959 +sg225236 +S'1890' +p254960 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a000728a.jpg' +p254961 +sg225240 +g27 +sa(dp254962 +g225230 +S'Propylaeum' +p254963 +sg225232 +S'Themistocles von Eckenbrecher' +p254964 +sg225234 +S'pen and black ink and watercolor heightened with white over black chalk and touches of graphite' +p254965 +sg225236 +S'1890' +p254966 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cde.jpg' +p254967 +sg225240 +g27 +sa(dp254968 +g225230 +S'House of Heinrich Schliemann' +p254969 +sg225232 +S'Themistocles von Eckenbrecher' +p254970 +sg225234 +S'pen and black ink and watercolor over black chalk and touches of graphite' +p254971 +sg225236 +S'1890' +p254972 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a00071b0.jpg' +p254973 +sg225240 +g27 +sa(dp254974 +g225230 +S'Theater of Herodes Atticus' +p254975 +sg225232 +S'Themistocles von Eckenbrecher' +p254976 +sg225234 +S'pen and black ink and watercolor over black chalk heightened with white' +p254977 +sg225236 +S'1890' +p254978 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072c7.jpg' +p254979 +sg225240 +g27 +sa(dp254980 +g225230 +S'Monument of Philopappos' +p254981 +sg225232 +S'Themistocles von Eckenbrecher' +p254982 +sg225234 +S'pen and black ink and watercolor over black chalk' +p254983 +sg225236 +S'1890' +p254984 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007259.jpg' +p254985 +sg225240 +g27 +sa(dp254986 +g225230 +S'Old Market Gate' +p254987 +sg225232 +S'Themistocles von Eckenbrecher' +p254988 +sg225234 +S'pen and black ink and watercolor over black chalk and touches of graphite' +p254989 +sg225236 +S'1890' +p254990 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007227.jpg' +p254991 +sg225240 +g27 +sa(dp254992 +g225230 +S'Temple of Olympian Zeus' +p254993 +sg225232 +S'Themistocles von Eckenbrecher' +p254994 +sg225234 +S'pen and black ink and watercolor over black chalk with touches of graphite' +p254995 +sg225236 +S'1890' +p254996 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a00071e9.jpg' +p254997 +sg225240 +g27 +sa(dp254998 +g225230 +S'University' +p254999 +sg225232 +S'Themistocles von Eckenbrecher' +p255000 +sg225234 +S'pen and black ink and watercolor over black chalk heightened with white and touches of graphite' +p255001 +sg225236 +S'1890' +p255002 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a00071ef.jpg' +p255003 +sg225240 +g27 +sa(dp255004 +g225230 +S'Nike Temple' +p255005 +sg225232 +S'Themistocles von Eckenbrecher' +p255006 +sg225234 +S'pen and black ink and watercolor over touches of graphite' +p255007 +sg225236 +S'1890' +p255008 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007254.jpg' +p255009 +sg225240 +g27 +sa(dp255010 +g225230 +S'Tower of Winds' +p255011 +sg225232 +S'Themistocles von Eckenbrecher' +p255012 +sg225234 +S'pen and black ink and watercolor over touches of graphite and black chalk' +p255013 +sg225236 +S'1890' +p255014 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007291.jpg' +p255015 +sg225240 +g27 +sa(dp255016 +g225230 +S'Observatory' +p255017 +sg225232 +S'Themistocles von Eckenbrecher' +p255018 +sg225234 +S'pen and black ink and watercolor over touches of black chalk and graphite heightened with white' +p255019 +sg225236 +S'1890' +p255020 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007223.jpg' +p255021 +sg225240 +g27 +sa(dp255022 +g225230 +S'Parthenon, Inside' +p255023 +sg225232 +S'Themistocles von Eckenbrecher' +p255024 +sg225234 +S'pen and black ink and watercolor over black chalk and touches of graphite heightened with gray' +p255025 +sg225236 +S'1890' +p255026 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a00070f5.jpg' +p255027 +sg225240 +g27 +sa(dp255028 +g225230 +S'View from the Old Royal Palace of the Hermesstreet' +p255029 +sg225232 +S'Themistocles von Eckenbrecher' +p255030 +sg225234 +S'pen and black ink and watercolor over black chalk and touches of graphite heightened with gray' +p255031 +sg225236 +S'1890' +p255032 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a0007066.jpg' +p255033 +sg225240 +g27 +sa(dp255034 +g225230 +S'The Propylaeum from the East' +p255035 +sg225232 +S'Themistocles von Eckenbrecher' +p255036 +sg225234 +S'pen and black ink and watercolor over black chalk and touches of graphite' +p255037 +sg225236 +S'1890' +p255038 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007122.jpg' +p255039 +sg225240 +g27 +sa(dp255040 +g225230 +S'The Parthenon from the East' +p255041 +sg225232 +S'Themistocles von Eckenbrecher' +p255042 +sg225234 +S'pen and black ink and watercolor over black chalk and graphite' +p255043 +sg225236 +S'1890' +p255044 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a0007037.jpg' +p255045 +sg225240 +g27 +sa(dp255046 +g225230 +S'Temple of Hyphaestus' +p255047 +sg225232 +S'Themistocles von Eckenbrecher' +p255048 +sg225234 +S'pen and black ink and watercolor over black chalk and touches of graphite heightened with gray' +p255049 +sg225236 +S'1890' +p255050 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a0007005.jpg' +p255051 +sg225240 +g27 +sa(dp255052 +g225230 +S'Academy' +p255053 +sg225232 +S'Themistocles von Eckenbrecher' +p255054 +sg225234 +S'pen and black ink and watercolor over black chalk and touches of graphite' +p255055 +sg225236 +S'1890' +p255056 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a000717e.jpg' +p255057 +sg225240 +g27 +sa(dp255058 +g225230 +S'The Acropolis from the West' +p255059 +sg225232 +S'Themistocles von Eckenbrecher' +p255060 +sg225234 +S'pen and black ink and watercolor over black chalk and traces of graphite' +p255061 +sg225236 +S'1890' +p255062 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a0007096.jpg' +p255063 +sg225240 +g27 +sa(dp255064 +g225230 +S'Monument of Lysicrates' +p255065 +sg225232 +S'Themistocles von Eckenbrecher' +p255066 +sg225234 +S'pen and black ink and watercolor' +p255067 +sg225236 +S'1890' +p255068 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a00071b7.jpg' +p255069 +sg225240 +g27 +sa(dp255070 +g225230 +S'Erechtheion' +p255071 +sg225232 +S'Themistocles von Eckenbrecher' +p255072 +sg225234 +S'pen and black ink and watercolor over black chalk and touches of graphite' +p255073 +sg225236 +S'1890' +p255074 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a00070c3.jpg' +p255075 +sg225240 +g27 +sa(dp255076 +g225230 +S"Hadrian's Arch" +p255077 +sg225232 +S'Themistocles von Eckenbrecher' +p255078 +sg225234 +S'pen and black ink and watercolor over black chalk' +p255079 +sg225236 +S'1890' +p255080 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a000714d.jpg' +p255081 +sg225240 +g27 +sa(dp255082 +g225230 +S'The Harbor of Piraeus' +p255083 +sg225232 +S'Themistocles von Eckenbrecher' +p255084 +sg225234 +S'pen and black ink and watercolor over black chalk and touches of graphite heightened with gray' +p255085 +sg225236 +S'1891' +p255086 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fd9.jpg' +p255087 +sg225240 +g27 +sa(dp255088 +g225230 +S'Flowers in an Urn' +p255089 +sg225232 +S'Jan van Huysum' +p255090 +sg225234 +S'oil on panel' +p255091 +sg225236 +S'c. 1720' +p255092 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e6a.jpg' +p255093 +sg225240 +g27 +sa(dp255094 +g225230 +S'Satan Bound for a Thousand Years' +p255095 +sg225232 +S'Jean Duvet' +p255096 +sg225234 +S'engraving' +p255097 +sg225236 +S'1546/1556' +p255098 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a00084d8.jpg' +p255099 +sg225240 +g27 +sa(dp255100 +g225230 +S'The Angel Shows Saint John the New Jerusalem' +p255101 +sg225232 +S'Jean Duvet' +p255102 +sg225234 +S'engraving' +p255103 +sg225236 +S'1546/1556' +p255104 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a00084da.jpg' +p255105 +sg225240 +g27 +sa(dp255106 +g225230 +S'The Letter "Y"' +p255107 +sg225232 +S'Master E.S.' +p255108 +sg225234 +S'engraving' +p255109 +sg225236 +S'1467' +p255110 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3be.jpg' +p255111 +sg225240 +g27 +sa(dp255112 +g225230 +S'The Arc of the Lord in the Temple of Dagon' +p255113 +sg225232 +S'Battista Franco' +p255114 +sg225234 +S'engraving' +p255115 +sg225236 +S'unknown date\n' +p255116 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbbb.jpg' +p255117 +sg225240 +g27 +sa(dp255118 +g225230 +S'Frontispiece for "Views of Tombs"' +p255119 +sg225232 +S'Jean-Laurent Legeay' +p255120 +sg225234 +S'etching' +p255121 +sg225236 +S'1768' +p255122 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ef3.jpg' +p255123 +sg225240 +g27 +sa(dp255124 +g225230 +S'Figure Standing under a Stone Arch' +p255125 +sg225232 +S'Jean-Laurent Legeay' +p255126 +sg225234 +S'etching' +p255127 +sg225236 +S'1768' +p255128 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ef7.jpg' +p255129 +sg225240 +g27 +sa(dp255130 +g225230 +S'Tomb with Funerary Urn' +p255131 +sg225232 +S'Jean-Laurent Legeay' +p255132 +sg225234 +S'etching' +p255133 +sg225236 +S'1768' +p255134 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ef4.jpg' +p255135 +sg225240 +g27 +sa(dp255136 +g225230 +S'The Flight into Egypt' +p255137 +sg225232 +S'Jean-Laurent Legeay' +p255138 +sg225234 +S'etching' +p255139 +sg225236 +S'1768' +p255140 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ef8.jpg' +p255141 +sg225240 +g27 +sa(dp255142 +g225230 +S'Interior: Dancing Girls Entertaining Chieftains' +p255143 +sg225232 +S'Rodolphe Bresdin' +p255144 +sg225234 +S'graphite over red chalk on wove paper with commer cially prepared cream ground' +p255145 +sg225236 +S'probably c. 1870' +p255146 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cfb.jpg' +p255147 +sg225240 +g27 +sa(dp255148 +g225230 +S'Charles II with His Council' +p255149 +sg225232 +S'British 17th Century' +p255150 +sg225234 +S'Andrew W. Mellon Fund' +p255151 +sg225236 +S'\nengraving' +p255152 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a000785a.jpg' +p255153 +sg225240 +g27 +sa(dp255154 +g225230 +S'The Vase of the Medici' +p255155 +sg225232 +S'Stefano Della Bella' +p255156 +sg225234 +S'etching' +p255157 +sg225236 +S'1656' +p255158 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9cf.jpg' +p255159 +sg225240 +g27 +sa(dp255160 +g225230 +S'Temple of Antonius and the Campo Vaccino' +p255161 +sg225232 +S'Stefano Della Bella' +p255162 +sg225234 +S'etching' +p255163 +sg225236 +S'1656' +p255164 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9d0.jpg' +p255165 +sg225240 +g27 +sa(dp255166 +g225230 +S'Arch of Constantine' +p255167 +sg225232 +S'Stefano Della Bella' +p255168 +sg225234 +S'etching' +p255169 +sg225236 +S'1656' +p255170 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9d1.jpg' +p255171 +sg225240 +g27 +sa(dp255172 +g225230 +S'Temple of Concord and Roman Forum' +p255173 +sg225232 +S'Stefano Della Bella' +p255174 +sg225234 +S'etching' +p255175 +sg225236 +S'1656' +p255176 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9d3.jpg' +p255177 +sg225240 +g27 +sa(dp255178 +g225230 +S'Two Riders Passing Near a Herd of Animals' +p255179 +sg225232 +S'Stefano Della Bella' +p255180 +sg225234 +S'etching' +p255181 +sg225236 +S'1656' +p255182 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9d2.jpg' +p255183 +sg225240 +g27 +sa(dp255184 +g225230 +S'Peasant Woman on Horseback with a Child in Her Arms' +p255185 +sg225232 +S'Stefano Della Bella' +p255186 +sg225234 +S'etching' +p255187 +sg225236 +S'1656' +p255188 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9d4.jpg' +p255189 +sg225240 +g27 +sa(dp255190 +g225230 +S'Three Camel Heads' +p255191 +sg225232 +S'Stefano Della Bella' +p255192 +sg225234 +S'etching' +p255193 +sg225236 +S'probably 1649' +p255194 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c913.jpg' +p255195 +sg225240 +g27 +sa(dp255196 +g225230 +S'Two Camel Heads' +p255197 +sg225232 +S'Stefano Della Bella' +p255198 +sg225234 +S'etching' +p255199 +sg225236 +S'probably 1649' +p255200 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c914.jpg' +p255201 +sg225240 +g27 +sa(dp255202 +g225230 +S'Two Horse Heads' +p255203 +sg225232 +S'Stefano Della Bella' +p255204 +sg225234 +S'etching' +p255205 +sg225236 +S'probably 1649' +p255206 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c915.jpg' +p255207 +sg225240 +g27 +sa(dp255208 +g225230 +S'Three Lion Heads' +p255209 +sg225232 +S'Stefano Della Bella' +p255210 +sg225234 +S'etching' +p255211 +sg225236 +S'probably 1649' +p255212 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c916.jpg' +p255213 +sg225240 +g27 +sa(dp255214 +g225232 +S'Artist Information (' +p255215 +sg225240 +g27 +sg225234 +S'(artist after)' +p255216 +sg225230 +S'Jane (Fleming), Countess of Harrington' +p255217 +sg225236 +S'\n' +p255218 +sa(dp255219 +g225230 +S"The Boy with Soap Bubbles (L'enfant aux bulles de savon)" +p255220 +sg225232 +S'Edouard Manet' +p255221 +sg225234 +S'etching and aquatint on green paper' +p255222 +sg225236 +S'1868/1869' +p255223 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a000673a.jpg' +p255224 +sg225240 +g27 +sa(dp255225 +g225230 +S"L'agriculture consideree, le Comte de Veaux" +p255226 +sg225232 +S'Artist Information (' +p255227 +sg225234 +S'(artist after)' +p255228 +sg225236 +S'\n' +p255229 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e86.jpg' +p255230 +sg225240 +g27 +sa(dp255231 +g225230 +S'A Mameluck Resting' +p255232 +sg225232 +S'Carle Vernet' +p255233 +sg225234 +S'lithograph' +p255234 +sg225236 +S'unknown date\n' +p255235 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a05e.jpg' +p255236 +sg225240 +g27 +sa(dp255237 +g225230 +S'The Madonna and Child with the Abbot Ludwig von Churchwalden' +p255238 +sg225232 +S'Artist Information (' +p255239 +sg225234 +S'(artist after)' +p255240 +sg225236 +S'\n' +p255241 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a444.jpg' +p255242 +sg225240 +g27 +sa(dp255243 +g225230 +S'Studies for Christopher Columbus' +p255244 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p255245 +sg225234 +S'pen and brown ink and graphite' +p255246 +sg225236 +S'unknown date\n' +p255247 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072a6.jpg' +p255248 +sg225240 +g27 +sa(dp255249 +g225230 +S'The Loves of Mars and Venus' +p255250 +sg225232 +S'Enea Vico' +p255251 +sg225234 +S'engraving' +p255252 +sg225236 +S'unknown date\n' +p255253 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c88c.jpg' +p255254 +sg225240 +g27 +sa(dp255255 +g225230 +S'Two Camel Heads [recto]' +p255256 +sg225232 +S'Stefano Della Bella' +p255257 +sg225234 +S'etching with revisions in black chalk and brown wash on laid paper' +p255258 +sg225236 +S'probably 1649' +p255259 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c917.jpg' +p255260 +sg225240 +g27 +sa(dp255261 +g225230 +S'The Flight into Egypt [verso]' +p255262 +sg225232 +S'Stefano Della Bella' +p255263 +sg225234 +S'pen and brown ink with graphite on laid paper' +p255264 +sg225236 +S'unknown date\n' +p255265 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c918.jpg' +p255266 +sg225240 +g27 +sa(dp255267 +g225230 +S'A Venetian Procurator of San Marco [recto]' +p255268 +sg225232 +S'Artist Information (' +p255269 +sg225234 +S'(artist)' +p255270 +sg225236 +S'\n' +p255271 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007427.jpg' +p255272 +sg225240 +g27 +sa(dp255273 +g225230 +S'Portrait of a Procurator [verso]' +p255274 +sg225232 +S'Artist Information (' +p255275 +sg225234 +S'(artist)' +p255276 +sg225236 +S'\n' +p255277 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007428.jpg' +p255278 +sg225240 +g27 +sa(dp255279 +g225230 +S'Self-Portrait' +p255280 +sg225232 +S'Wallerant Vaillant' +p255281 +sg225234 +S'mezzotint' +p255282 +sg225236 +S'unknown date\n' +p255283 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5c3.jpg' +p255284 +sg225240 +g27 +sa(dp255285 +g225230 +S'The Lion Hunt' +p255286 +sg225232 +S'Vicencio Carducho' +p255287 +sg225234 +S'black chalk with brown, rose and green wash, squared for transfer, on laid paper' +p255288 +sg225236 +S'unknown date\n' +p255289 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a01.jpg' +p255290 +sg225240 +g27 +sa(dp255291 +g225232 +S'Frank Stella' +p255292 +sg225240 +g27 +sg225234 +S'collage of colored fabrics, paperboard and oil paint on paperboard' +p255293 +sg225230 +S'Chyrow' +p255294 +sg225236 +S'1973' +p255295 +sa(dp255296 +g225232 +S'Jean Arp' +p255297 +sg225240 +g27 +sg225234 +S'carved and painted wood' +p255298 +sg225230 +S'The Forest' +p255299 +sg225236 +S'1916' +p255300 +sa(dp255301 +g225230 +S'Tavern Scene' +p255302 +sg225232 +S'Adriaen van Ostade' +p255303 +sg225234 +S'oil on panel' +p255304 +sg225236 +S'early 1660s' +p255305 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e76.jpg' +p255306 +sg225240 +g27 +sa(dp255307 +g225230 +S'The Flight into Egypt' +p255308 +sg225232 +S'Stefano Della Bella' +p255309 +sg225234 +S'etching and bitten tone' +p255310 +sg225236 +S'probably 1662' +p255311 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9ae.jpg' +p255312 +sg225240 +g27 +sa(dp255313 +g225230 +S'Frontispiece for Callot\'s "The New Testament"' +p255314 +sg225232 +S'Abraham Bosse' +p255315 +sg225234 +S'etching' +p255316 +sg225236 +S'1635' +p255317 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000881b.jpg' +p255318 +sg225240 +g27 +sa(dp255319 +g225230 +S'Christ Disputing with the Doctors' +p255320 +sg225232 +S'Jacques Callot' +p255321 +sg225234 +S'etching' +p255322 +sg225236 +S'1635' +p255323 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000880d.jpg' +p255324 +sg225240 +g27 +sa(dp255325 +g225230 +S'Fisher of Men' +p255326 +sg225232 +S'Jacques Callot' +p255327 +sg225234 +S'etching' +p255328 +sg225236 +S'1635' +p255329 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a000880e.jpg' +p255330 +sg225240 +g27 +sa(dp255331 +g225230 +S'Jesus with the Pharisees' +p255332 +sg225232 +S'Jacques Callot' +p255333 +sg225234 +S'etching' +p255334 +sg225236 +S'1635' +p255335 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008815.jpg' +p255336 +sg225240 +g27 +sa(dp255337 +g225230 +S'Sermon on the Mount' +p255338 +sg225232 +S'Jacques Callot' +p255339 +sg225234 +S'etching' +p255340 +sg225236 +S'1635' +p255341 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a0008816.jpg' +p255342 +sg225240 +g27 +sa(dp255343 +g225230 +S'Christ and the Woman Taken in Adultery' +p255344 +sg225232 +S'Jacques Callot' +p255345 +sg225234 +S'etching' +p255346 +sg225236 +S'1635' +p255347 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088b9.jpg' +p255348 +sg225240 +g27 +sa(dp255349 +g225230 +S'Stoning of Jesus' +p255350 +sg225232 +S'Jacques Callot' +p255351 +sg225234 +S'etching' +p255352 +sg225236 +S'1635' +p255353 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088ba.jpg' +p255354 +sg225240 +g27 +sa(dp255355 +g225230 +S'Raising of Lazarus' +p255356 +sg225232 +S'Jacques Callot' +p255357 +sg225234 +S'etching' +p255358 +sg225236 +S'1635' +p255359 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088c3.jpg' +p255360 +sg225240 +g27 +sa(dp255361 +g225230 +S'The Entry into Jerusalem' +p255362 +sg225232 +S'Jacques Callot' +p255363 +sg225234 +S'etching' +p255364 +sg225236 +S'1635' +p255365 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088c4.jpg' +p255366 +sg225240 +g27 +sa(dp255367 +g225230 +S"Caesar's Coin" +p255368 +sg225232 +S'Jacques Callot' +p255369 +sg225234 +S'etching' +p255370 +sg225236 +S'1635' +p255371 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088bd.jpg' +p255372 +sg225240 +g27 +sa(dp255373 +g225230 +S'Conversion of Paul' +p255374 +sg225232 +S'Jacques Callot' +p255375 +sg225234 +S'etching' +p255376 +sg225236 +S'1635' +p255377 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00088/a00088be.jpg' +p255378 +sg225240 +g27 +sa(dp255379 +g225230 +S'The Bald Eagle (Falco leucocephalus)' +p255380 +sg225232 +S'Mark Catesby' +p255381 +sg225234 +S'hand-colored etching' +p255382 +sg225236 +S'published 1731-1743' +p255383 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a00077fa.jpg' +p255384 +sg225240 +g27 +sa(dp255385 +g225232 +S'Albert Edward Sterner' +p255386 +sg225240 +g27 +sg225234 +S'monotype with (pen?) and brown ink' +p255387 +sg225230 +S'Reclining Nude' +p255388 +sg225236 +S'c. 1909' +p255389 +sa(dp255390 +g225230 +S'Ambroise Par\xc3\xa9' +p255391 +sg225232 +S"Pierre-Jean David d'Angers" +p255392 +sg225234 +S'bronze' +p255393 +sg225236 +S'model 1836-1839, cast after 1840' +p255394 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00054/a000541f.jpg' +p255395 +sg225240 +g27 +sa(dp255396 +g225232 +S'Alfredo Halegua' +p255397 +sg225240 +g27 +sg225234 +S'cor-ten steel' +p255398 +sg225230 +S'America' +p255399 +sg225236 +S'1970' +p255400 +sa(dp255401 +g225232 +S'Jacques Lipchitz' +p255402 +sg225240 +g27 +sg225234 +S'polychromed stone' +p255403 +sg225230 +S'Bas-Relief, I' +p255404 +sg225236 +S'1918' +p255405 +sa(dp255406 +g225230 +S'David with the Head of Goliath' +p255407 +sg225232 +S'Giovanni Benedetto Castiglione' +p255408 +sg225234 +S'monotype in brown oil pigment on laid paper' +p255409 +sg225236 +S'c. 1655' +p255410 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00010/a0001065.jpg' +p255411 +sg225240 +g27 +sa(dp255412 +g225230 +S'Danse du Soleil' +p255413 +sg225232 +S'Stanley William Hayter' +p255414 +sg225234 +S'color offset from woodblock w/ color engraving + soft-ground etching printed intaglio + relief (stencil method); areas of intaglio w/ ink wiped clean' +p255415 +sg225236 +S'1951' +p255416 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a000613c.jpg' +p255417 +sg225240 +g27 +sa(dp255418 +g225232 +S'Keith Anden Achepohl' +p255419 +sg225240 +g27 +sg225234 +S'color etching and other media' +p255420 +sg225230 +S'House and Garden VI' +p255421 +sg225236 +S'1971' +p255422 +sa(dp255423 +g225230 +S'Portrait of a Lady' +p255424 +sg225232 +S'Ottavio Leoni' +p255425 +sg225234 +S'colored chalks on blue paper' +p255426 +sg225236 +S'1623' +p255427 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00034/a0003427.jpg' +p255428 +sg225240 +g27 +sa(dp255429 +g225230 +S'The Temptation of Christ in the Desert' +p255430 +sg225232 +S'Felipe Gomez de Valencia' +p255431 +sg225234 +S'pen and brown ink on laid paper' +p255432 +sg225236 +S'probably 1676' +p255433 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00069/a00069fe.jpg' +p255434 +sg225240 +g27 +sa(dp255435 +g225230 +S'The Marriage at Cana' +p255436 +sg225232 +S'Artist Information (' +p255437 +sg225234 +S'(artist after)' +p255438 +sg225236 +S'\n' +p255439 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8af.jpg' +p255440 +sg225240 +g27 +sa(dp255441 +g225230 +S'Armand Gu\xc3\xa9raud' +p255442 +sg225232 +S'Charles Meryon' +p255443 +sg225234 +S'etching with engraving, printed from 2 plates' +p255444 +sg225236 +S'1862' +p255445 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a0009989.jpg' +p255446 +sg225240 +g27 +sa(dp255447 +g225230 +S'Figures in Rowing Boats in a Rocky Cove, Sailing Ships Beyond' +p255448 +sg225232 +S'Allart van Everdingen' +p255449 +sg225234 +S'pen and brown ink with brown and gray wash on laidpaper' +p255450 +sg225236 +S'unknown date\n' +p255451 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cf2.jpg' +p255452 +sg225240 +g27 +sa(dp255453 +g225230 +S'Polish Nobleman Standing (Stanislaus Sobocki at Age 27)' +p255454 +sg225232 +S'Hendrick Goltzius' +p255455 +sg225234 +S', 1583' +p255456 +sg225236 +S'\n' +p255457 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce3b.jpg' +p255458 +sg225240 +g27 +sa(dp255459 +g225230 +S'Hadleigh Castle (Large Plate)' +p255460 +sg225232 +S'Artist Information (' +p255461 +sg225234 +S'(artist after)' +p255462 +sg225236 +S'\n' +p255463 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dcf.jpg' +p255464 +sg225240 +g27 +sa(dp255465 +g225230 +S'Birth of Adonis' +p255466 +sg225232 +S'Herman van Swanevelt' +p255467 +sg225234 +S'etching' +p255468 +sg225236 +S'unknown date\n' +p255469 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5b7.jpg' +p255470 +sg225240 +g27 +sa(dp255471 +g225230 +S'Venus Abducting Adonis' +p255472 +sg225232 +S'Herman van Swanevelt' +p255473 +sg225234 +S'etching' +p255474 +sg225236 +S'unknown date\n' +p255475 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5b6.jpg' +p255476 +sg225240 +g27 +sa(dp255477 +g225230 +S'Venus Offering Diana a Choice between Cupid and Adonis' +p255478 +sg225232 +S'Herman van Swanevelt' +p255479 +sg225234 +S'etching' +p255480 +sg225236 +S'unknown date\n' +p255481 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5b4.jpg' +p255482 +sg225240 +g27 +sa(dp255483 +g225230 +S'Venus and Adonis Hunting' +p255484 +sg225232 +S'Herman van Swanevelt' +p255485 +sg225234 +S'etching' +p255486 +sg225236 +S'unknown date\n' +p255487 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5b5.jpg' +p255488 +sg225240 +g27 +sa(dp255489 +g225230 +S'Death of Adonis' +p255490 +sg225232 +S'Herman van Swanevelt' +p255491 +sg225234 +S'etching' +p255492 +sg225236 +S'unknown date\n' +p255493 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5b2.jpg' +p255494 +sg225240 +g27 +sa(dp255495 +g225230 +S"Venus Lamenting over Adonis' Death" +p255496 +sg225232 +S'Herman van Swanevelt' +p255497 +sg225234 +S'etching' +p255498 +sg225236 +S'unknown date\n' +p255499 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5b3.jpg' +p255500 +sg225240 +g27 +sa(dp255501 +g225230 +S'Georg Roggenbach' +p255502 +sg225232 +S'Hans Sebald Lautensack' +p255503 +sg225234 +S'etching on vellum' +p255504 +sg225236 +S'1554' +p255505 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b176.jpg' +p255506 +sg225240 +g27 +sa(dp255507 +g225230 +S'Gorge in the Rocks (Gorge dans les rochers)' +p255508 +sg225232 +S'Artist Information (' +p255509 +sg225234 +S'(artist after)' +p255510 +sg225236 +S'\n' +p255511 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a0009142.jpg' +p255512 +sg225240 +g27 +sa(dp255513 +g225230 +S'Landscape with a Bridge and Ruined Tower' +p255514 +sg225232 +S'Christian Wilhelm Ernst Dietrich' +p255515 +sg225234 +S'etching' +p255516 +sg225236 +S'1744' +p255517 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b308.jpg' +p255518 +sg225240 +g27 +sa(dp255519 +g225230 +S'The Singer at the Country Fair' +p255520 +sg225232 +S'Christian Wilhelm Ernst Dietrich' +p255521 +sg225234 +S'etching' +p255522 +sg225236 +S'1740' +p255523 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b348.jpg' +p255524 +sg225240 +g27 +sa(dp255525 +g225230 +S'Bust of an Old Man in Profile, Facing Right' +p255526 +sg225232 +S'Salomon Koninck' +p255527 +sg225234 +S'etching' +p255528 +sg225236 +S'1638' +p255529 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d24e.jpg' +p255530 +sg225240 +g27 +sa(dp255531 +g225232 +S'Henri Matisse' +p255532 +sg225240 +g27 +sg225234 +S'lithograph' +p255533 +sg225230 +S'Nude in Three-Quarters with Part of Her Head Cropped Off (Nu de trois-quarts, une partie de la t\xc3\xaate coup\xc3\xa9e)' +p255534 +sg225236 +S'1913' +p255535 +sa(dp255536 +g225230 +S'Madonna and Child with Saints Gimignano, John the Baptist, George and Peter Martyr' +p255537 +sg225232 +S'Guercino' +p255538 +sg225234 +S', unknown date' +p255539 +sg225236 +S'\n' +p255540 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074b7.jpg' +p255541 +sg225240 +g27 +sa(dp255542 +g225230 +S'Allegorical Figure' +p255543 +sg225232 +S'Giuseppe Cesari' +p255544 +sg225234 +S', probably c. 1588' +p255545 +sg225236 +S'\n' +p255546 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00031/a00031a8.jpg' +p255547 +sg225240 +g27 +sa(dp255548 +g225230 +S'Woman' +p255549 +sg225232 +S'Joan Mir\xc3\xb3' +p255550 +sg225234 +S'oil on canvas' +p255551 +sg225236 +S'1976' +p255552 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dd9.jpg' +p255553 +sg225240 +g27 +sa(dp255554 +g225230 +S'Woman Carrying a Tray' +p255555 +sg225232 +S'Master F.P.' +p255556 +sg225234 +S'etching' +p255557 +sg225236 +S'1527/1530' +p255558 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c74c.jpg' +p255559 +sg225240 +g27 +sa(dp255560 +g225230 +S'Woman Carrying a Tray' +p255561 +sg225232 +S'Master F.P.' +p255562 +sg225234 +S'etching' +p255563 +sg225236 +S'1527/1530' +p255564 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c74e.jpg' +p255565 +sg225240 +g27 +sa(dp255566 +g225232 +S'Reginald Butler' +p255567 +sg225240 +g27 +sg225234 +S'bronze' +p255568 +sg225230 +S'Girl' +p255569 +sg225236 +S'1957/1958' +p255570 +sa(dp255571 +g225230 +S'The Chariot' +p255572 +sg225232 +S'Alberto Giacometti' +p255573 +sg225234 +S'bronze' +p255574 +sg225236 +S'1950' +p255575 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00030/a0003045.jpg' +p255576 +sg225240 +g27 +sa(dp255577 +g225232 +S'Alberto Giacometti' +p255578 +sg225240 +g27 +sg225234 +S'bronze' +p255579 +sg225230 +S'The City Square' +p255580 +sg225236 +S'1948/1949' +p255581 +sa(dp255582 +g225232 +S'Alberto Giacometti' +p255583 +sg225240 +g27 +sg225234 +S'bronze, painted' +p255584 +sg225230 +S'The Forest' +p255585 +sg225236 +S'1950' +p255586 +sa(dp255587 +g225232 +S'Alberto Giacometti' +p255588 +sg225240 +g27 +sg225234 +S'bronze' +p255589 +sg225230 +S'Kneeling Woman' +p255590 +sg225236 +S'1956' +p255591 +sa(dp255592 +g225230 +S'Standing Woman' +p255593 +sg225232 +S'Alberto Giacometti' +p255594 +sg225234 +S'bronze' +p255595 +sg225236 +S'c. 1947' +p255596 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002af6.jpg' +p255597 +sg225240 +g27 +sa(dp255598 +g225230 +S'Walking Man II' +p255599 +sg225232 +S'Alberto Giacometti' +p255600 +sg225234 +S'bronze' +p255601 +sg225236 +S'1960' +p255602 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00017/a0001794.jpg' +p255603 +sg225240 +g27 +sa(dp255604 +g225232 +S'Ibram Lassaw' +p255605 +sg225240 +g27 +sg225234 +S'wire and metal' +p255606 +sg225230 +S'Rhiannon' +p255607 +sg225236 +S'1954' +p255608 +sa(dp255609 +g225232 +S'Marino Marini' +p255610 +sg225240 +g27 +sg225234 +S'bronze' +p255611 +sg225230 +S'Horseman' +p255612 +sg225236 +S'1947' +p255613 +sa(dp255614 +g225232 +S'Henry Moore' +p255615 +sg225240 +g27 +sg225234 +S'bronze' +p255616 +sg225230 +S'Three Motives Against Wall, Number 1' +p255617 +sg225236 +S'1958' +p255618 +sa(dp255619 +g225232 +S'Oskar Schlemmer' +p255620 +sg225240 +g27 +sg225234 +S'wire and metal' +p255621 +sg225230 +S'Homo' +p255622 +sg225236 +S'model 1931, cast 1968' +p255623 +sa(dp255624 +g225232 +S'Ernest Tino Trova' +p255625 +sg225240 +g27 +sg225234 +S'bronze' +p255626 +sg225230 +S'Walking Man' +p255627 +sg225236 +S'1970' +p255628 +sa(dp255629 +g225230 +S'Orange and Tan' +p255630 +sg225232 +S'Mark Rothko' +p255631 +sg225234 +S'oil on canvas' +p255632 +sg225236 +S'1954' +p255633 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00010/a0001073.jpg' +p255634 +sg225240 +g27 +sa(dp255635 +g225230 +S'Dancer and Gazelles' +p255636 +sg225232 +S'Paul Manship' +p255637 +sg225234 +S'bronze' +p255638 +sg225236 +S'1916' +p255639 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a0001695.jpg' +p255640 +sg225240 +S"For \n The flowing surfaces of \n Manship's aesthetic grew from his enthusiasm for archaic (pre-classical) Greek, Etruscan, and Asian art and from his consummate craftsmanship. It was influenced also by his feeling for sculpture as a close relative of architecture and akin to the new streamlined ornamental style now known as Art Deco. He would become one of the most sought-after American artists for public sculpture over the course of a long career. His \n The two original \n " +p255641 +sa(dp255642 +g225230 +S'Diana and a Hound' +p255643 +sg225232 +S'Paul Manship' +p255644 +sg225234 +S'bronze' +p255645 +sg225236 +S'1925' +p255646 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a0001696.jpg' +p255647 +sg225240 +g27 +sa(dp255648 +g225230 +S'Untitled' +p255649 +sg225232 +S'James Rosati' +p255650 +sg225234 +S'zinc' +p255651 +sg225236 +S'1971' +p255652 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00017/a00017b6.jpg' +p255653 +sg225240 +g27 +sa(dp255654 +g225230 +S'Figures Studies [recto]' +p255655 +sg225232 +S'Girolamo Mazzola Bedoli' +p255656 +sg225234 +S', unknown date' +p255657 +sg225236 +S'\n' +p255658 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074e6.jpg' +p255659 +sg225240 +g27 +sa(dp255660 +g225230 +S'Birds in Flight [verso]' +p255661 +sg225232 +S'Girolamo Mazzola Bedoli' +p255662 +sg225234 +S', unknown date' +p255663 +sg225236 +S'\n' +p255664 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074e7.jpg' +p255665 +sg225240 +g27 +sa(dp255666 +g225230 +S'Joseph Revealing Himself to His Brothers in Egypt' +p255667 +sg225232 +S'Artist Information (' +p255668 +sg225234 +S'Italian, 1612 - 1666' +p255669 +sg225236 +S'(related artist)' +p255670 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074bb.jpg' +p255671 +sg225240 +g27 +sa(dp255672 +g225230 +S'The Marriage of Saint Catherine' +p255673 +sg225232 +S'Francesco Vanni' +p255674 +sg225234 +S', unknown date' +p255675 +sg225236 +S'\n' +p255676 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a000751a.jpg' +p255677 +sg225240 +g27 +sa(dp255678 +g225230 +S'Madonna and Child under a Canopy' +p255679 +sg225232 +S'Sebald Beham' +p255680 +sg225234 +S'woodcut' +p255681 +sg225236 +S'unknown date\n' +p255682 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8e9.jpg' +p255683 +sg225240 +g27 +sa(dp255684 +g225230 +S'Interior of a Farmhouse' +p255685 +sg225232 +S'Jules Dupr\xc3\xa9' +p255686 +sg225234 +S'etching' +p255687 +sg225236 +S'1833' +p255688 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000988c.jpg' +p255689 +sg225240 +g27 +sa(dp255690 +g225232 +S'Charles Wilbert White' +p255691 +sg225240 +g27 +sg225234 +S'lithograph and screenprint [artist proof]' +p255692 +sg225230 +S'Prophet II' +p255693 +sg225236 +S'1975' +p255694 +sa(dp255695 +g225230 +S'Figure Studies [recto]' +p255696 +sg225232 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p255697 +sg225234 +S'graphite' +p255698 +sg225236 +S'unknown date\n' +p255699 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00073/a0007312.jpg' +p255700 +sg225240 +g27 +sa(dp255701 +g225230 +S'Figure Studies [verso]' +p255702 +sg225232 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p255703 +sg225234 +S'graphite' +p255704 +sg225236 +S'unknown date\n' +p255705 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00073/a0007313.jpg' +p255706 +sg225240 +g27 +sa(dp255707 +g225232 +S'Artist Information (' +p255708 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Adonis in Y fronts' +p255709 +sg225236 +S'(printer)' +p255710 +sa(dp255711 +g225232 +S'Artist Information (' +p255712 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Interior' +p255713 +sg225236 +S'(printer)' +p255714 +sa(dp255715 +g225232 +S'Artist Information (' +p255716 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Bathers (a)' +p255717 +sg225236 +S'(printer)' +p255718 +sa(dp255719 +g225232 +S'Artist Information (' +p255720 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'A portrait of the artist by Francis Bacon' +p255721 +sg225236 +S'(printer)' +p255722 +sa(dp255723 +g225230 +S'Snow Flurries' +p255724 +sg225232 +S'Andrew Wyeth' +p255725 +sg225234 +S'tempera on panel' +p255726 +sg225236 +S'1953' +p255727 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a000012d.jpg' +p255728 +sg225240 +g27 +sa(dp255729 +g225230 +S"The Abduction of Hippodamia (L'Enl\xc3\xa8vement d'Hippodamie)" +p255730 +sg225232 +S'Artist Information (' +p255731 +sg225234 +S'(sculptor)' +p255732 +sg225236 +S'\n' +p255733 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00024/a000243c.jpg' +p255734 +sg225240 +S"Carrier-Belleuse portrays a wrenching struggle between woman and beast in this abduction scene from Greek myth. The inebriated centaur, a guest at the wedding feast of Hippodamia and the Lapith king, grabs the young bride, pinning her to his side and setting off a battle between the human Lapiths and the wild centaurs. Hippodamia is rescued, but the episode starts a greater war between the two factions. In the end, the Lapiths triumph and the centaurs retreat to the mountains. With its classical references (the wedding garlands worn by both figures and the overturned wine jar), nineteenth-century viewers would have recognized the story—a motif for the moral struggle between rationality and bestiality, between civilized behavior and primitive instincts.\n With his \n Scholars speculate that while the sensuous, long-limbed Hippodamia is characteristic of Carrier-Belleuse's female nudes, the overall expressive intensity of the sculpture—particularly the centaur's bulky musculature and bellowing mouth—reflect the energetic modeling of \n " +p255735 +sa(dp255736 +g225230 +S'Silenus Crowned by Nymphs' +p255737 +sg225232 +S'Clodion' +p255738 +sg225234 +S'terracotta' +p255739 +sg225236 +S'1768' +p255740 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c07.jpg' +p255741 +sg225240 +g27 +sa(dp255742 +g225230 +S'Circle I' +p255743 +sg225232 +S'David Smith' +p255744 +sg225234 +S'painted steel' +p255745 +sg225236 +S'1962' +p255746 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a00016aa.jpg' +p255747 +sg225240 +S"America's leading modern sculptor, David Smith belongs to the generation of abstract\n expressionist artists that included Jackson Pollock and Willem de Kooning. In 1934 Smith set up\n a studio at Terminal Iron Works, a machinist shop in Brooklyn, where he translated the industrial\n materials and methods of that trade into his art. Inspired by the welded sculptures of Pablo\n Picasso and Julio Gonzales from the late 1920s, Smith incorporated machine parts, scrap metal\n and found objects into his innovative and remarkably diverse structures.\n Smith only adopted the circle as a single compositional focus in the early sixties, perhaps in\n response to the target paintings then being created by his friend Kenneth Noland. Although the \n Related Works:\n " +p255748 +sa(dp255749 +g225230 +S'Circle II' +p255750 +sg225232 +S'David Smith' +p255751 +sg225234 +S'painted steel' +p255752 +sg225236 +S'1962' +p255753 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a00016ab.jpg' +p255754 +sg225240 +g27 +sa(dp255755 +g225230 +S'Circle III' +p255756 +sg225232 +S'David Smith' +p255757 +sg225234 +S'painted steel' +p255758 +sg225236 +S'1962' +p255759 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a00016ac.jpg' +p255760 +sg225240 +g27 +sa(dp255761 +g225230 +S'Voltri VII' +p255762 +sg225232 +S'David Smith' +p255763 +sg225234 +S'iron' +p255764 +sg225236 +S'1962' +p255765 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a00016ad.jpg' +p255766 +sg225240 +g27 +sa(dp255767 +g225230 +S'Meadow with a Shepherd and Cows' +p255768 +sg225232 +S'Willem Buytewech' +p255769 +sg225234 +S'black and red chalk, and pen and brush with brown ink' +p255770 +sg225236 +S'1617' +p255771 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00031/a000319f.jpg' +p255772 +sg225240 +g27 +sa(dp255773 +g225230 +S'An Apostle Filled with the Holy Spirit' +p255774 +sg225232 +S'Emil Nolde' +p255775 +sg225234 +S'watercolor over pen and brown ink on English typewriting paper' +p255776 +sg225236 +S'1909' +p255777 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00029/a0002967.jpg' +p255778 +sg225240 +g27 +sa(dp255779 +g225230 +S'Lady Borlase' +p255780 +sg225232 +S'Gerard Soest' +p255781 +sg225234 +S'oil on canvas' +p255782 +sg225236 +S'c. 1672/1675' +p255783 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00005/a0000576.jpg' +p255784 +sg225240 +g27 +sa(dp255785 +g225230 +S'Homage to Piranesi V' +p255786 +sg225232 +S'Herbert Ferber' +p255787 +sg225234 +S'copper' +p255788 +sg225236 +S'1965/1966' +p255789 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a0001671.jpg' +p255790 +sg225240 +g27 +sa(dp255791 +g225232 +S'Michael Bolus' +p255792 +sg225240 +g27 +sg225234 +S'painted aluminum' +p255793 +sg225230 +S'Sculpture Number 2' +p255794 +sg225236 +S'1969' +p255795 +sa(dp255796 +g225230 +S'Drawing Book' +p255797 +sg225232 +S'Luca Ciamberlano' +p255798 +sg225234 +S'bound volume with 1 engraved title (without letters) and 37 engravings' +p255799 +sg225236 +S'c. 1610/1620' +p255800 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a0006592.jpg' +p255801 +sg225240 +g27 +sa(dp255802 +g225232 +S'Francesco Rosaspina' +p255803 +sg225240 +g27 +sg225234 +S'1 vol: ill: 41 etchings in black and red-brown' +p255804 +sg225230 +S'Scherzi Poetici e Pittorici' +p255805 +sg225236 +S'published 1795' +p255806 +sa(dp255807 +g225230 +S'Title Page' +p255808 +sg225232 +S'Cornelis Ploos van Amstel' +p255809 +sg225234 +S'etching and surface-printing in brown, with inkless embossment and some hand-coloring (?)' +p255810 +sg225236 +S'1765' +p255811 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d673.jpg' +p255812 +sg225240 +g27 +sa(dp255813 +g225230 +S'The Winter King on the Ice' +p255814 +sg225232 +S'Artist Information (' +p255815 +sg225234 +S'(artist after)' +p255816 +sg225236 +S'\n' +p255817 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b52.jpg' +p255818 +sg225240 +g27 +sa(dp255819 +g225230 +S'Fisherman with Pack over His Shoulder' +p255820 +sg225232 +S'Artist Information (' +p255821 +sg225234 +S'(artist)' +p255822 +sg225236 +S'\n' +p255823 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d662.jpg' +p255824 +sg225240 +g27 +sa(dp255825 +g225230 +S'Seascape with Full Moon' +p255826 +sg225232 +S'Artist Information (' +p255827 +sg225234 +S'(artist)' +p255828 +sg225236 +S'\n' +p255829 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d663.jpg' +p255830 +sg225240 +g27 +sa(dp255831 +g225230 +S'War Vessel in the Y' +p255832 +sg225232 +S'Artist Information (' +p255833 +sg225234 +S'(artist)' +p255834 +sg225236 +S'\n' +p255835 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d654.jpg' +p255836 +sg225240 +g27 +sa(dp255837 +g225230 +S'Interior of a Peasant House with Two Women' +p255838 +sg225232 +S'Artist Information (' +p255839 +sg225234 +S'(artist)' +p255840 +sg225236 +S'\n' +p255841 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d660.jpg' +p255842 +sg225240 +g27 +sa(dp255843 +g225230 +S'Woman Seated on a Mule' +p255844 +sg225232 +S'Artist Information (' +p255845 +sg225234 +S'(artist)' +p255846 +sg225236 +S'\n' +p255847 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d649.jpg' +p255848 +sg225240 +g27 +sa(dp255849 +g225230 +S'Madonna and Child' +p255850 +sg225232 +S'Artist Information (' +p255851 +sg225234 +S'(artist after)' +p255852 +sg225236 +S'\n' +p255853 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d652.jpg' +p255854 +sg225240 +g27 +sa(dp255855 +g225230 +S'Directors of the Orphan Asylum of Haarlem' +p255856 +sg225232 +S'Artist Information (' +p255857 +sg225234 +S'(artist)' +p255858 +sg225236 +S'\n' +p255859 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d674.jpg' +p255860 +sg225240 +g27 +sa(dp255861 +g225230 +S'Drunken Peasant at an Inn' +p255862 +sg225232 +S'Artist Information (' +p255863 +sg225234 +S'(artist)' +p255864 +sg225236 +S'\n' +p255865 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d651.jpg' +p255866 +sg225240 +g27 +sa(dp255867 +g225230 +S'Flock of Goats' +p255868 +sg225232 +S'Artist Information (' +p255869 +sg225234 +S'(artist)' +p255870 +sg225236 +S'\n' +p255871 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d65e.jpg' +p255872 +sg225240 +g27 +sa(dp255873 +g225230 +S'Young Girl at the Keyboard' +p255874 +sg225232 +S'Artist Information (' +p255875 +sg225234 +S'(artist)' +p255876 +sg225236 +S'\n' +p255877 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d644.jpg' +p255878 +sg225240 +g27 +sa(dp255879 +g225230 +S'Sheepcote' +p255880 +sg225232 +S'Artist Information (' +p255881 +sg225234 +S'(artist)' +p255882 +sg225236 +S'\n' +p255883 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d65d.jpg' +p255884 +sg225240 +g27 +sa(dp255885 +g225230 +S'Town Crier' +p255886 +sg225232 +S'Artist Information (' +p255887 +sg225234 +S'(artist)' +p255888 +sg225236 +S'\n' +p255889 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d661.jpg' +p255890 +sg225240 +g27 +sa(dp255891 +g225230 +S'Jan van Goyen' +p255892 +sg225232 +S'Artist Information (' +p255893 +sg225234 +S'(artist)' +p255894 +sg225236 +S'\n' +p255895 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d640.jpg' +p255896 +sg225240 +g27 +sa(dp255897 +g225230 +S'Horticulturist' +p255898 +sg225232 +S'Artist Information (' +p255899 +sg225234 +S'(artist)' +p255900 +sg225236 +S'\n' +p255901 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d65a.jpg' +p255902 +sg225240 +g27 +sa(dp255903 +g225230 +S'Canal at Utrecht' +p255904 +sg225232 +S'Artist Information (' +p255905 +sg225234 +S'(artist)' +p255906 +sg225236 +S'\n' +p255907 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d670.jpg' +p255908 +sg225240 +g27 +sa(dp255909 +g225230 +S'Village with Pond' +p255910 +sg225232 +S'Artist Information (' +p255911 +sg225234 +S'(artist)' +p255912 +sg225236 +S'\n' +p255913 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d671.jpg' +p255914 +sg225240 +g27 +sa(dp255915 +g225230 +S'Man at the Parapet' +p255916 +sg225232 +S'Artist Information (' +p255917 +sg225234 +S'(artist)' +p255918 +sg225236 +S'\n' +p255919 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d672.jpg' +p255920 +sg225240 +g27 +sa(dp255921 +g225230 +S'Cattle Market' +p255922 +sg225232 +S'Artist Information (' +p255923 +sg225234 +S'(artist after)' +p255924 +sg225236 +S'\n' +p255925 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d679.jpg' +p255926 +sg225240 +g27 +sa(dp255927 +g225230 +S'Fish Market' +p255928 +sg225232 +S'Artist Information (' +p255929 +sg225234 +S'(artist after)' +p255930 +sg225236 +S'\n' +p255931 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d67a.jpg' +p255932 +sg225240 +g27 +sa(dp255933 +g225230 +S'The Judgment of Solomon' +p255934 +sg225232 +S'Artist Information (' +p255935 +sg225234 +S'(artist)' +p255936 +sg225236 +S'\n' +p255937 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d678.jpg' +p255938 +sg225240 +g27 +sa(dp255939 +g225230 +S'Musical Company' +p255940 +sg225232 +S'Artist Information (' +p255941 +sg225234 +S'(artist)' +p255942 +sg225236 +S'\n' +p255943 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d655.jpg' +p255944 +sg225240 +g27 +sa(dp255945 +g225230 +S'Valley with an Aged Castle' +p255946 +sg225232 +S'Artist Information (' +p255947 +sg225234 +S'(artist)' +p255948 +sg225236 +S'\n' +p255949 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d676.jpg' +p255950 +sg225240 +g27 +sa(dp255951 +g225230 +S'Seated Dog' +p255952 +sg225232 +S'Artist Information (' +p255953 +sg225234 +S'(artist)' +p255954 +sg225236 +S'\n' +p255955 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d657.jpg' +p255956 +sg225240 +g27 +sa(dp255957 +g225230 +S'Lying Dog' +p255958 +sg225232 +S'Artist Information (' +p255959 +sg225234 +S'(artist)' +p255960 +sg225236 +S'\n' +p255961 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d656.jpg' +p255962 +sg225240 +g27 +sa(dp255963 +g225230 +S'Lady with Guitar' +p255964 +sg225232 +S'Artist Information (' +p255965 +sg225234 +S'(artist)' +p255966 +sg225236 +S'\n' +p255967 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d65b.jpg' +p255968 +sg225240 +g27 +sa(dp255969 +g225230 +S'Woman Leaning over a Lower Door' +p255970 +sg225232 +S'Artist Information (' +p255971 +sg225234 +S'(artist after)' +p255972 +sg225236 +S'\n' +p255973 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d63f.jpg' +p255974 +sg225240 +g27 +sa(dp255975 +g225230 +S'Boy Leaning over a Lower Door' +p255976 +sg225232 +S'Artist Information (' +p255977 +sg225234 +S'(artist after)' +p255978 +sg225236 +S'\n' +p255979 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d67b.jpg' +p255980 +sg225240 +g27 +sa(dp255981 +g225230 +S'Hog Slaughterers' +p255982 +sg225232 +S'Artist Information (' +p255983 +sg225234 +S'(artist)' +p255984 +sg225236 +S'\n' +p255985 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d65f.jpg' +p255986 +sg225240 +g27 +sa(dp255987 +g225230 +S'Church Interior' +p255988 +sg225232 +S'Artist Information (' +p255989 +sg225234 +S'(artist)' +p255990 +sg225236 +S'\n' +p255991 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d653.jpg' +p255992 +sg225240 +g27 +sa(dp255993 +g225230 +S'Winding River' +p255994 +sg225232 +S'Artist Information (' +p255995 +sg225234 +S'(artist after)' +p255996 +sg225236 +S'\n' +p255997 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d63e.jpg' +p255998 +sg225240 +g27 +sa(dp255999 +g225230 +S'Shipyard' +p256000 +sg225232 +S'Artist Information (' +p256001 +sg225234 +S'(artist after)' +p256002 +sg225236 +S'\n' +p256003 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d63d.jpg' +p256004 +sg225240 +g27 +sa(dp256005 +g225230 +S'The Collector' +p256006 +sg225232 +S'Artist Information (' +p256007 +sg225234 +S'(artist)' +p256008 +sg225236 +S'\n' +p256009 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d65c.jpg' +p256010 +sg225240 +g27 +sa(dp256011 +g225230 +S'Cavalier and Lady with a Page' +p256012 +sg225232 +S'Artist Information (' +p256013 +sg225234 +S'(artist)' +p256014 +sg225236 +S'\n' +p256015 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d675.jpg' +p256016 +sg225240 +g27 +sa(dp256017 +g225230 +S'Shepherd and Shepherdess with Their Flock' +p256018 +sg225232 +S'Artist Information (' +p256019 +sg225234 +S'(artist after)' +p256020 +sg225236 +S'\n' +p256021 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d677.jpg' +p256022 +sg225240 +g27 +sa(dp256023 +g225230 +S'Gateway with Traveler and Mule' +p256024 +sg225232 +S'Artist Information (' +p256025 +sg225234 +S'(artist)' +p256026 +sg225236 +S'\n' +p256027 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d664.jpg' +p256028 +sg225240 +g27 +sa(dp256029 +g225230 +S'Ceiling Decoration' +p256030 +sg225232 +S'Artist Information (' +p256031 +sg225234 +S'(artist after)' +p256032 +sg225236 +S'\n' +p256033 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d690.jpg' +p256034 +sg225240 +g27 +sa(dp256035 +g225230 +S'Rembrandt, Self-Portrait' +p256036 +sg225232 +S'Artist Information (' +p256037 +sg225234 +S'(artist after)' +p256038 +sg225236 +S'\n' +p256039 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a000786a.jpg' +p256040 +sg225240 +g27 +sa(dp256041 +g225230 +S'Near Rouen (Environs de Rouen)' +p256042 +sg225232 +S'Paul Huet' +p256043 +sg225234 +S'lithograph' +p256044 +sg225236 +S'unknown date\n' +p256045 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009acb.jpg' +p256046 +sg225240 +g27 +sa(dp256047 +g225232 +S'Gerhard Anton von Halem' +p256048 +sg225240 +g27 +sg225234 +S', 1789' +p256049 +sg225230 +S'Poesie und Prose' +p256050 +sg225236 +S'\n' +p256051 +sa(dp256052 +g225232 +S'Daniel Nikolaus Chodowiecki' +p256053 +sg225240 +g27 +sg225234 +S'etching' +p256054 +sg225230 +S'The Dummy' +p256055 +sg225236 +S'published 1789' +p256056 +sa(dp256057 +g225230 +S'Binnenalster mit Jungfernstieg' +p256058 +sg225232 +S'Fritz Stoltenberg' +p256059 +sg225234 +S'watercolor' +p256060 +sg225236 +S'1893' +p256061 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e2f.jpg' +p256062 +sg225240 +g27 +sa(dp256063 +g225232 +S'Fritz Stoltenberg' +p256064 +sg225240 +g27 +sg225234 +S'portfolio with 24 watercolors' +p256065 +sg225230 +S'Twenty-Four Views of Hamburg' +p256066 +sg225236 +S'1893' +p256067 +sa(dp256068 +g225230 +S'Lombardsbrucke' +p256069 +sg225232 +S'Fritz Stoltenberg' +p256070 +sg225234 +S'watercolor' +p256071 +sg225236 +S'1893' +p256072 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d46.jpg' +p256073 +sg225240 +g27 +sa(dp256074 +g225230 +S'Alsterlust' +p256075 +sg225232 +S'Fritz Stoltenberg' +p256076 +sg225234 +S'watercolor' +p256077 +sg225236 +S'1893' +p256078 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dd2.jpg' +p256079 +sg225240 +g27 +sa(dp256080 +g225230 +S'Aussenalster' +p256081 +sg225232 +S'Fritz Stoltenberg' +p256082 +sg225234 +S'watercolor' +p256083 +sg225236 +S'1893' +p256084 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d1a.jpg' +p256085 +sg225240 +g27 +sa(dp256086 +g225230 +S'Uhlenhorst' +p256087 +sg225232 +S'Fritz Stoltenberg' +p256088 +sg225234 +S'watercolor' +p256089 +sg225236 +S'1893' +p256090 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072d3.jpg' +p256091 +sg225240 +g27 +sa(dp256092 +g225230 +S'Frauental' +p256093 +sg225232 +S'Fritz Stoltenberg' +p256094 +sg225234 +S'watercolor' +p256095 +sg225236 +S'1893' +p256096 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a000703e.jpg' +p256097 +sg225240 +g27 +sa(dp256098 +g225230 +S'Hamburger' +p256099 +sg225232 +S'Fritz Stoltenberg' +p256100 +sg225234 +S'watercolor' +p256101 +sg225236 +S'1893' +p256102 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006da4.jpg' +p256103 +sg225240 +g27 +sa(dp256104 +g225230 +S'Borsenzeit' +p256105 +sg225232 +S'Fritz Stoltenberg' +p256106 +sg225234 +S'watercolor' +p256107 +sg225236 +S'1893' +p256108 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ce8.jpg' +p256109 +sg225240 +g27 +sa(dp256110 +g225230 +S'Kunsthalle' +p256111 +sg225232 +S'Fritz Stoltenberg' +p256112 +sg225234 +S'watercolor' +p256113 +sg225236 +S'1893' +p256114 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d75.jpg' +p256115 +sg225240 +g27 +sa(dp256116 +g225230 +S'Dienstmadchen' +p256117 +sg225232 +S'Fritz Stoltenberg' +p256118 +sg225234 +S'watercolor' +p256119 +sg225236 +S'1893' +p256120 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a000729d.jpg' +p256121 +sg225240 +g27 +sa(dp256122 +g225230 +S'Zollkanal' +p256123 +sg225232 +S'Fritz Stoltenberg' +p256124 +sg225234 +S'watercolor' +p256125 +sg225236 +S'1893' +p256126 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e5f.jpg' +p256127 +sg225240 +g27 +sa(dp256128 +g225230 +S'Krahn im Freihafen' +p256129 +sg225232 +S'Fritz Stoltenberg' +p256130 +sg225234 +S'watercolor' +p256131 +sg225236 +S'1893' +p256132 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e8f.jpg' +p256133 +sg225240 +g27 +sa(dp256134 +g225230 +S'Segelschiff-Hafen' +p256135 +sg225232 +S'Fritz Stoltenberg' +p256136 +sg225234 +S'watercolor' +p256137 +sg225236 +S'1893' +p256138 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e00.jpg' +p256139 +sg225240 +g27 +sa(dp256140 +g225230 +S'Elbbrucke' +p256141 +sg225232 +S'Fritz Stoltenberg' +p256142 +sg225234 +S'watercolor' +p256143 +sg225236 +S'1893' +p256144 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a00070cc.jpg' +p256145 +sg225240 +g27 +sa(dp256146 +g225230 +S'Auswanderer-Dampfer' +p256147 +sg225232 +S'Fritz Stoltenberg' +p256148 +sg225234 +S'watercolor' +p256149 +sg225236 +S'1893' +p256150 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a00070fd.jpg' +p256151 +sg225240 +g27 +sa(dp256152 +g225230 +S'Freihafen mit den Elbbrucken' +p256153 +sg225232 +S'Fritz Stoltenberg' +p256154 +sg225234 +S'watercolor' +p256155 +sg225236 +S'1893' +p256156 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007129.jpg' +p256157 +sg225240 +g27 +sa(dp256158 +g225230 +S'Brooksbrucke' +p256159 +sg225232 +S'Fritz Stoltenberg' +p256160 +sg225234 +S'watercolor' +p256161 +sg225236 +S'1893' +p256162 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007264.jpg' +p256163 +sg225240 +g27 +sa(dp256164 +g225230 +S'Dovenfleet mit Katharinenkirche' +p256165 +sg225232 +S'Fritz Stoltenberg' +p256166 +sg225234 +S'watercolor' +p256167 +sg225236 +S'1893' +p256168 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a00071c3.jpg' +p256169 +sg225240 +g27 +sa(dp256170 +g225230 +S'Alte Strasse' +p256171 +sg225232 +S'Fritz Stoltenberg' +p256172 +sg225234 +S'watercolor' +p256173 +sg225236 +S'1893' +p256174 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007189.jpg' +p256175 +sg225240 +g27 +sa(dp256176 +g225230 +S'Altes Fleet' +p256177 +sg225232 +S'Fritz Stoltenberg' +p256178 +sg225234 +S'watercolor' +p256179 +sg225236 +S'1893' +p256180 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007154.jpg' +p256181 +sg225240 +g27 +sa(dp256182 +g225230 +S'Blankenese' +p256183 +sg225232 +S'Fritz Stoltenberg' +p256184 +sg225234 +S'watercolor' +p256185 +sg225236 +S'1893' +p256186 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a000706e.jpg' +p256187 +sg225240 +g27 +sa(dp256188 +g225230 +S'Grabmal von Klopstock' +p256189 +sg225232 +S'Fritz Stoltenberg' +p256190 +sg225234 +S'watercolor' +p256191 +sg225236 +S'1893' +p256192 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a00071fb.jpg' +p256193 +sg225240 +g27 +sa(dp256194 +g225230 +S'Hansa-Brunnen' +p256195 +sg225232 +S'Fritz Stoltenberg' +p256196 +sg225234 +S'watercolor' +p256197 +sg225236 +S'1893' +p256198 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007232.jpg' +p256199 +sg225240 +g27 +sa(dp256200 +g225230 +S'Brunnen am Fischmarkt' +p256201 +sg225232 +S'Fritz Stoltenberg' +p256202 +sg225234 +S'watercolor' +p256203 +sg225236 +S'1893' +p256204 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a000709f.jpg' +p256205 +sg225240 +g27 +sa(dp256206 +g225232 +S'Sir Muirhead Bone' +p256207 +sg225240 +g27 +sg225234 +S'drypoint' +p256208 +sg225230 +S'A Spanish Good Friday (Ronda)' +p256209 +sg225236 +S'1925' +p256210 +sa(dp256211 +g225230 +S'A Bather' +p256212 +sg225232 +S'Camille Pissarro' +p256213 +sg225234 +S'monotype' +p256214 +sg225236 +S'1894' +p256215 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a00099a7.jpg' +p256216 +sg225240 +g27 +sa(dp256217 +g225232 +S'Erich Heckel' +p256218 +sg225240 +g27 +sg225234 +S'woodcut' +p256219 +sg225230 +S'Sleeping (Schlafende)' +p256220 +sg225236 +S'1922' +p256221 +sa(dp256222 +g225232 +S'Emil Nolde' +p256223 +sg225240 +g27 +sg225234 +S'woodcut' +p256224 +sg225230 +S'Frau D.S.' +p256225 +sg225236 +S'1917' +p256226 +sa(dp256227 +g225232 +S'M.C. Escher' +p256228 +sg225240 +g27 +sg225234 +S'woodcut' +p256229 +sg225230 +S'Entrance to the Oude Kerk' +p256230 +sg225236 +S'1939' +p256231 +sa(dp256232 +g225232 +S'M.C. Escher' +p256233 +sg225240 +g27 +sg225234 +S'woodcut' +p256234 +sg225230 +S'Grote Markt' +p256235 +sg225236 +S'1939' +p256236 +sa(dp256237 +g225232 +S'M.C. Escher' +p256238 +sg225240 +g27 +sg225234 +S'woodcut' +p256239 +sg225230 +S'Oostpoort' +p256240 +sg225236 +S'1939' +p256241 +sa(dp256242 +g225232 +S'M.C. Escher' +p256243 +sg225240 +g27 +sg225234 +S'woodcut' +p256244 +sg225230 +S'Nieuwe Kerk' +p256245 +sg225236 +S'1939' +p256246 +sa(dp256247 +g225230 +S'Voldersgracht' +p256248 +sg225232 +S'M.C. Escher' +p256249 +sg225234 +S'woodcut' +p256250 +sg225236 +S'1939' +p256251 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b54.jpg' +p256252 +sg225240 +g27 +sa(dp256253 +g225232 +S'M.C. Escher' +p256254 +sg225240 +g27 +sg225234 +S'woodcut' +p256255 +sg225230 +S'Roofs' +p256256 +sg225236 +S'1939' +p256257 +sa(dp256258 +g225230 +S'Oude Kerk' +p256259 +sg225232 +S'M.C. Escher' +p256260 +sg225234 +S'woodcut' +p256261 +sg225236 +S'1939' +p256262 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b38.jpg' +p256263 +sg225240 +g27 +sa(dp256264 +g225232 +S'Samuel Jessurun de Mesquita' +p256265 +sg225240 +g27 +sg225234 +S'woodcut on tissue paper' +p256266 +sg225230 +S"Boy's Head" +p256267 +sg225236 +S'unknown date\n' +p256268 +sa(dp256269 +g225232 +S'Jasper Johns' +p256270 +sg225240 +g27 +sg225234 +S'9-color lithograph (stone and aluminum) on Arches paper' +p256271 +sg225230 +S'Bent Stencil' +p256272 +sg225236 +S'1971' +p256273 +sa(dp256274 +g225232 +S'Jasper Johns' +p256275 +sg225240 +g27 +sg225234 +S'4-color lithograph (stone and aluminum) on Arches paper' +p256276 +sg225230 +S'Bent "U"' +p256277 +sg225236 +S'1971' +p256278 +sa(dp256279 +g225232 +S'Jasper Johns' +p256280 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black, gray, and white' +p256281 +sg225230 +S'Leg and Chair' +p256282 +sg225236 +S'1971' +p256283 +sa(dp256284 +g225232 +S'Josef Albers' +p256285 +sg225240 +g27 +sg225234 +S'screenprint' +p256286 +sg225230 +S'Gray Instrumentation Ia' +p256287 +sg225236 +S'1974' +p256288 +sa(dp256289 +g225232 +S'Josef Albers' +p256290 +sg225240 +g27 +sg225234 +S'portfolio with 12 screenprints plus title page, colophon, and text by the artist on 6 interleaf pages' +p256291 +sg225230 +S'Gray Instrumentation I' +p256292 +sg225236 +S'1974' +p256293 +sa(dp256294 +g225232 +S'Josef Albers' +p256295 +sg225240 +g27 +sg225234 +S'screenprint' +p256296 +sg225230 +S'Gray Instrumentation Ib' +p256297 +sg225236 +S'1974' +p256298 +sa(dp256299 +g225232 +S'Josef Albers' +p256300 +sg225240 +g27 +sg225234 +S'screenprint' +p256301 +sg225230 +S'Gray Instrumentation Ic' +p256302 +sg225236 +S'1974' +p256303 +sa(dp256304 +g225232 +S'Josef Albers' +p256305 +sg225240 +g27 +sg225234 +S'screenprint' +p256306 +sg225230 +S'Gray Instrumentation Id' +p256307 +sg225236 +S'1974' +p256308 +sa(dp256309 +g225232 +S'Josef Albers' +p256310 +sg225240 +g27 +sg225234 +S'screenprint' +p256311 +sg225230 +S'Gray Instrumentation Ie' +p256312 +sg225236 +S'1974' +p256313 +sa(dp256314 +g225232 +S'Josef Albers' +p256315 +sg225240 +g27 +sg225234 +S'screenprint' +p256316 +sg225230 +S'Gray Instrumentation If' +p256317 +sg225236 +S'1974' +p256318 +sa(dp256319 +g225232 +S'Josef Albers' +p256320 +sg225240 +g27 +sg225234 +S'screenprint' +p256321 +sg225230 +S'Gray Instrumentation Ig' +p256322 +sg225236 +S'1974' +p256323 +sa(dp256324 +g225232 +S'Josef Albers' +p256325 +sg225240 +g27 +sg225234 +S'screenprint' +p256326 +sg225230 +S'Gray Instrumentation Ih' +p256327 +sg225236 +S'1974' +p256328 +sa(dp256329 +g225232 +S'Josef Albers' +p256330 +sg225240 +g27 +sg225234 +S'screenprint' +p256331 +sg225230 +S'Gray Instrumentation Ii' +p256332 +sg225236 +S'1974' +p256333 +sa(dp256334 +g225232 +S'Josef Albers' +p256335 +sg225240 +g27 +sg225234 +S'screenprint' +p256336 +sg225230 +S'Gray Instrumentation Ij' +p256337 +sg225236 +S'1974' +p256338 +sa(dp256339 +g225232 +S'Josef Albers' +p256340 +sg225240 +g27 +sg225234 +S'screenprint' +p256341 +sg225230 +S'Gray Instrumentation Ik' +p256342 +sg225236 +S'1974' +p256343 +sa(dp256344 +g225232 +S'Josef Albers' +p256345 +sg225240 +g27 +sg225234 +S'screenprint' +p256346 +sg225230 +S'Gray Instrumentation Il' +p256347 +sg225236 +S'1974' +p256348 +sa(dp256349 +g225232 +S'Josef Albers' +p256350 +sg225240 +g27 +sg225234 +S'silkscreen' +p256351 +sg225230 +S'Gray Instrumentation IIa' +p256352 +sg225236 +S'1974' +p256353 +sa(dp256354 +g225232 +S'Josef Albers' +p256355 +sg225240 +g27 +sg225234 +S'portfolio with 12 silkscreens plus title page, colophon, and text by the artist on 6 interleaf pages' +p256356 +sg225230 +S'Gray Instrumentation II' +p256357 +sg225236 +S'1974/1975' +p256358 +sa(dp256359 +g225232 +S'Josef Albers' +p256360 +sg225240 +g27 +sg225234 +S'silkscreen' +p256361 +sg225230 +S'Gray Instrumentation IIb' +p256362 +sg225236 +S'1974' +p256363 +sa(dp256364 +g225232 +S'Josef Albers' +p256365 +sg225240 +g27 +sg225234 +S'silkscreen' +p256366 +sg225230 +S'Gray Instrumentation IIc' +p256367 +sg225236 +S'1975' +p256368 +sa(dp256369 +g225232 +S'Josef Albers' +p256370 +sg225240 +g27 +sg225234 +S'silkscreen' +p256371 +sg225230 +S'Gray Instrumentation IId' +p256372 +sg225236 +S'1974' +p256373 +sa(dp256374 +g225232 +S'Josef Albers' +p256375 +sg225240 +g27 +sg225234 +S'silkscreen' +p256376 +sg225230 +S'Gray Instrumentation IIe' +p256377 +sg225236 +S'1974' +p256378 +sa(dp256379 +g225232 +S'Josef Albers' +p256380 +sg225240 +g27 +sg225234 +S'silkscreen' +p256381 +sg225230 +S'Gray Instrumentation IIf' +p256382 +sg225236 +S'1975' +p256383 +sa(dp256384 +g225232 +S'Josef Albers' +p256385 +sg225240 +g27 +sg225234 +S'silkscreen' +p256386 +sg225230 +S'Gray Instrumentation IIg' +p256387 +sg225236 +S'1975' +p256388 +sa(dp256389 +g225232 +S'Josef Albers' +p256390 +sg225240 +g27 +sg225234 +S'silkscreen' +p256391 +sg225230 +S'Gray Instrumentation IIh' +p256392 +sg225236 +S'1975' +p256393 +sa(dp256394 +g225232 +S'Josef Albers' +p256395 +sg225240 +g27 +sg225234 +S'silkscreen' +p256396 +sg225230 +S'Gray Instrumentation IIi' +p256397 +sg225236 +S'1974' +p256398 +sa(dp256399 +g225232 +S'Josef Albers' +p256400 +sg225240 +g27 +sg225234 +S'silkscreen' +p256401 +sg225230 +S'Gray Instrumentation IIj' +p256402 +sg225236 +S'1975' +p256403 +sa(dp256404 +g225232 +S'Josef Albers' +p256405 +sg225240 +g27 +sg225234 +S'silkscreen' +p256406 +sg225230 +S'Gray Instrumentation IIk' +p256407 +sg225236 +S'1975' +p256408 +sa(dp256409 +g225232 +S'Josef Albers' +p256410 +sg225240 +g27 +sg225234 +S'silkscreen' +p256411 +sg225230 +S'Gray Instrumentation IIl' +p256412 +sg225236 +S'1974' +p256413 +sa(dp256414 +g225232 +S'Pablo Picasso' +p256415 +sg225240 +g27 +sg225234 +S'lithograph' +p256416 +sg225230 +S"Troop of Actors (Troupe de'acteurs)" +p256417 +sg225236 +S'1954' +p256418 +sa(dp256419 +g225232 +S'Mary Ann Corse' +p256420 +sg225240 +g27 +sg225234 +S'glass beads on canvas' +p256421 +sg225230 +S'Untitled' +p256422 +sg225236 +S'1971' +p256423 +sa(dp256424 +g225232 +S'William Dutterer' +p256425 +sg225240 +g27 +sg225234 +S'acrylic on canvas' +p256426 +sg225230 +S'Equal, No. 2' +p256427 +sg225236 +S'1968' +p256428 +sa(dp256429 +g225232 +S'Robert Irwin' +p256430 +sg225240 +g27 +sg225234 +S'oil on canvas' +p256431 +sg225230 +S'Untitled' +p256432 +sg225236 +S'1967' +p256433 +sa(dp256434 +g225232 +S'Alexander Liberman' +p256435 +sg225240 +g27 +sg225234 +S'oil on canvas' +p256436 +sg225230 +S'Omega IV' +p256437 +sg225236 +S'1961' +p256438 +sa(dp256439 +g225230 +S'Tristan da Cugna' +p256440 +sg225232 +S'Larry Poons' +p256441 +sg225234 +S'liquitex on canvas' +p256442 +sg225236 +S'1964' +p256443 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001c7.jpg' +p256444 +sg225240 +g27 +sa(dp256445 +g225232 +S'Jean Arp' +p256446 +sg225240 +g27 +sg225234 +S'marble' +p256447 +sg225230 +S'Mirr' +p256448 +sg225236 +S'1936/1960' +p256449 +sa(dp256450 +g225230 +S'Amity' +p256451 +sg225232 +S'Mary Callery' +p256452 +sg225234 +S'bronze' +p256453 +sg225236 +S'1947' +p256454 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a000165f.jpg' +p256455 +sg225240 +g27 +sa(dp256456 +g225230 +S'Black, Yellow, Red' +p256457 +sg225232 +S'Jos\xc3\xa9 de Rivera' +p256458 +sg225234 +S'painted aluminum' +p256459 +sg225236 +S'1942' +p256460 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00017/a00017b5.jpg' +p256461 +sg225240 +g27 +sa(dp256462 +g225232 +S'Ernest Tino Trova' +p256463 +sg225240 +g27 +sg225234 +S'bronze, acrylic sheet, paint, and mirror' +p256464 +sg225230 +S'Falling Man' +p256465 +sg225236 +S'1970' +p256466 +sa(dp256467 +g225230 +S'Untitled' +p256468 +sg225232 +S'Alexander Calder' +p256469 +sg225234 +S'aluminum and steel' +p256470 +sg225236 +S'1976' +p256471 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a0001653.jpg' +p256472 +sg225240 +g27 +sa(dp256473 +g225230 +S'The Country Dance (Small Plate) (La danse sous les arbres)' +p256474 +sg225232 +S'Claude Lorrain' +p256475 +sg225234 +S'etching' +p256476 +sg225236 +S'c. 1637' +p256477 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089ad.jpg' +p256478 +sg225240 +g27 +sa(dp256479 +g225230 +S'Saint Francis of Assisi' +p256480 +sg225232 +S'Annibale Carracci' +p256481 +sg225234 +S'engraving' +p256482 +sg225236 +S'1585' +p256483 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8d7.jpg' +p256484 +sg225240 +g27 +sa(dp256485 +g225230 +S'Deliberation (Beratung)' +p256486 +sg225232 +S'Christian Rohlfs' +p256487 +sg225234 +S'woodcut' +p256488 +sg225236 +S'1913' +p256489 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b75d.jpg' +p256490 +sg225240 +g27 +sa(dp256491 +g225230 +S'Allegory of Fortune' +p256492 +sg225232 +S'Italian 16th Century' +p256493 +sg225234 +S'Andrew W. Mellon Fund' +p256494 +sg225236 +S'\nengraving' +p256495 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9e9.jpg' +p256496 +sg225240 +g27 +sa(dp256497 +g225232 +S'Nicolaes de Bruyn' +p256498 +sg225240 +g27 +sg225234 +S'engraving' +p256499 +sg225230 +S'Shadrach, Meshach and Abednego in the Furnace' +p256500 +sg225236 +S'1610' +p256501 +sa(dp256502 +g225230 +S'Joseph Reveals Himself to His Brothers' +p256503 +sg225232 +S'Gerard de Lairesse' +p256504 +sg225234 +S'engraving with etching' +p256505 +sg225236 +S'unknown date\n' +p256506 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d611.jpg' +p256507 +sg225240 +g27 +sa(dp256508 +g225230 +S'Semiramis on the Lion Hunt' +p256509 +sg225232 +S'Gerard de Lairesse' +p256510 +sg225234 +S'engraving and etching' +p256511 +sg225236 +S'unknown date\n' +p256512 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d60f.jpg' +p256513 +sg225240 +g27 +sa(dp256514 +g225230 +S'Entry of Marie de Medici into Amsterdam [plate 1 of 6]' +p256515 +sg225232 +S'Pieter Nolpe' +p256516 +sg225234 +S'etching' +p256517 +sg225236 +S'1639' +p256518 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d537.jpg' +p256519 +sg225240 +g27 +sa(dp256520 +g225230 +S'Entry of Marie de Medici into Amsterdam [plate 2 of 6]' +p256521 +sg225232 +S'Pieter Nolpe' +p256522 +sg225234 +S'etching' +p256523 +sg225236 +S'1639' +p256524 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d538.jpg' +p256525 +sg225240 +g27 +sa(dp256526 +g225230 +S'Entry of Marie de Medici into Amsterdam [plate 3 of 6]' +p256527 +sg225232 +S'Pieter Nolpe' +p256528 +sg225234 +S'etching' +p256529 +sg225236 +S'1639' +p256530 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d539.jpg' +p256531 +sg225240 +g27 +sa(dp256532 +g225230 +S'Entry of Marie de Medici into Amsterdam [plate 4 of 6]' +p256533 +sg225232 +S'Pieter Nolpe' +p256534 +sg225234 +S'etching' +p256535 +sg225236 +S'1639' +p256536 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d53a.jpg' +p256537 +sg225240 +g27 +sa(dp256538 +g225230 +S'Entry of Marie de Medici into Amsterdam [plate 5 of 6]' +p256539 +sg225232 +S'Pieter Nolpe' +p256540 +sg225234 +S'etching' +p256541 +sg225236 +S'1639' +p256542 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d53b.jpg' +p256543 +sg225240 +g27 +sa(dp256544 +g225230 +S'Entry of Marie de Medici into Amsterdam [plate 6 of 6]' +p256545 +sg225232 +S'Pieter Nolpe' +p256546 +sg225234 +S'etching' +p256547 +sg225236 +S'1639' +p256548 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d53c.jpg' +p256549 +sg225240 +g27 +sa(dp256550 +g225230 +S'Entry of Marie de Medici into Amsterdam [plate 6 of 6]' +p256551 +sg225232 +S'Pieter Nolpe' +p256552 +sg225234 +S'etching' +p256553 +sg225236 +S'1639' +p256554 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d536.jpg' +p256555 +sg225240 +g27 +sa(dp256556 +g225230 +S'The Poet' +p256557 +sg225232 +S'Jusepe de Ribera' +p256558 +sg225234 +S'etching and engraving' +p256559 +sg225236 +S'c. 1620/1621' +p256560 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a000676d.jpg' +p256561 +sg225240 +g27 +sa(dp256562 +g225230 +S'Au Jardin des Plantes' +p256563 +sg225232 +S'Honor\xc3\xa9 Daumier' +p256564 +sg225234 +S'lithograph' +p256565 +sg225236 +S'1859' +p256566 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094d4.jpg' +p256567 +sg225240 +g27 +sa(dp256568 +g225230 +S'Un Parasol dans une position difficile' +p256569 +sg225232 +S'Honor\xc3\xa9 Daumier' +p256570 +sg225234 +S'lithograph' +p256571 +sg225236 +S'1859' +p256572 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094d3.jpg' +p256573 +sg225240 +g27 +sa(dp256574 +g225230 +S"Actualit\xc3\xa9s: Mme. Potard - N'est-il pas vrai, brave turco..." +p256575 +sg225232 +S'Honor\xc3\xa9 Daumier' +p256576 +sg225234 +S'lithograph' +p256577 +sg225236 +S'1859' +p256578 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094d0.jpg' +p256579 +sg225240 +g27 +sa(dp256580 +g225230 +S"Aspect d'une gare de chemin de fer..." +p256581 +sg225232 +S'Honor\xc3\xa9 Daumier' +p256582 +sg225234 +S'lithograph' +p256583 +sg225236 +S'1852' +p256584 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094a6.jpg' +p256585 +sg225240 +g27 +sa(dp256586 +g225230 +S'Il faut que vous fassiez encore place...' +p256587 +sg225232 +S'Honor\xc3\xa9 Daumier' +p256588 +sg225234 +S'lithograph' +p256589 +sg225236 +S'1852' +p256590 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094a7.jpg' +p256591 +sg225240 +g27 +sa(dp256592 +g225230 +S'Un Train de plaisir un peu trop gai' +p256593 +sg225232 +S'Honor\xc3\xa9 Daumier' +p256594 +sg225234 +S'lithograph' +p256595 +sg225236 +S'1852' +p256596 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094a4.jpg' +p256597 +sg225240 +g27 +sa(dp256598 +g225230 +S'Parisiens regrettant vivement...' +p256599 +sg225232 +S'Honor\xc3\xa9 Daumier' +p256600 +sg225234 +S'lithograph' +p256601 +sg225236 +S'1852' +p256602 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094a8.jpg' +p256603 +sg225240 +g27 +sa(dp256604 +g225230 +S"L'Inconv\xc3\xa9nient d'\xc3\xaatre dans un wagon..." +p256605 +sg225232 +S'Honor\xc3\xa9 Daumier' +p256606 +sg225234 +S'lithograph' +p256607 +sg225236 +S'1852' +p256608 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094a3.jpg' +p256609 +sg225240 +g27 +sa(dp256610 +g225230 +S'Un Train de plaisir' +p256611 +sg225232 +S'Honor\xc3\xa9 Daumier' +p256612 +sg225234 +S'lithograph' +p256613 +sg225236 +S'1852' +p256614 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094a9.jpg' +p256615 +sg225240 +g27 +sa(dp256616 +g225230 +S'Invasion de Paris par les Bas-Normands' +p256617 +sg225232 +S'Honor\xc3\xa9 Daumier' +p256618 +sg225234 +S'lithograph' +p256619 +sg225236 +S'1852' +p256620 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094a2.jpg' +p256621 +sg225240 +g27 +sa(dp256622 +g225230 +S'Au Havre' +p256623 +sg225232 +S'Honor\xc3\xa9 Daumier' +p256624 +sg225234 +S'lithograph' +p256625 +sg225236 +S'1852' +p256626 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094ad.jpg' +p256627 +sg225240 +g27 +sa(dp256628 +g225230 +S'Gar\xc3\xa7on!... gar\xc3\xa7on!... allons il est d\xc3\xa9cid\xc3\xa9...' +p256629 +sg225232 +S'Honor\xc3\xa9 Daumier' +p256630 +sg225234 +S'lithograph' +p256631 +sg225236 +S'1852' +p256632 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094a1.jpg' +p256633 +sg225240 +g27 +sa(dp256634 +g225230 +S"Ayant eu la facheuse id\xc3\xa9e d'aller... en mer" +p256635 +sg225232 +S'Honor\xc3\xa9 Daumier' +p256636 +sg225234 +S'lithograph' +p256637 +sg225236 +S'1852' +p256638 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094aa.jpg' +p256639 +sg225240 +g27 +sa(dp256640 +g225230 +S'Arriv\xc3\xa9e dans une ville trop hospitali\xc3\xa8re...' +p256641 +sg225232 +S'Honor\xc3\xa9 Daumier' +p256642 +sg225234 +S'lithograph' +p256643 +sg225236 +S'1852' +p256644 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094ae.jpg' +p256645 +sg225240 +g27 +sa(dp256646 +g225230 +S'Parisiens recevant un grain...' +p256647 +sg225232 +S'Honor\xc3\xa9 Daumier' +p256648 +sg225234 +S'lithograph' +p256649 +sg225236 +S'1852' +p256650 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094ab.jpg' +p256651 +sg225240 +g27 +sa(dp256652 +g225230 +S'Parisiens surpris par la mar\xc3\xa9e...' +p256653 +sg225232 +S'Honor\xc3\xa9 Daumier' +p256654 +sg225234 +S'lithograph' +p256655 +sg225236 +S'1852' +p256656 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094af.jpg' +p256657 +sg225240 +g27 +sa(dp256658 +g225230 +S'Autre \xc3\xa9motion maritime' +p256659 +sg225232 +S'Honor\xc3\xa9 Daumier' +p256660 +sg225234 +S'lithograph' +p256661 +sg225236 +S'1852' +p256662 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094a0.jpg' +p256663 +sg225240 +g27 +sa(dp256664 +g225230 +S'Le Retour a Paris' +p256665 +sg225232 +S'Honor\xc3\xa9 Daumier' +p256666 +sg225234 +S'lithograph' +p256667 +sg225236 +S'1852' +p256668 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094ac.jpg' +p256669 +sg225240 +g27 +sa(dp256670 +g225230 +S'Mars and Diana [recto]' +p256671 +sg225232 +S'Bertoia' +p256672 +sg225234 +S'pen and brown ink with brown wash over black chalk' +p256673 +sg225236 +S'unknown date\n' +p256674 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074f5.jpg' +p256675 +sg225240 +g27 +sa(dp256676 +g225232 +S'Bertoia' +p256677 +sg225240 +g27 +sg225234 +S'pen and brown ink' +p256678 +sg225230 +S'Kneeling Woman [verso]' +p256679 +sg225236 +S'unknown date\n' +p256680 +sa(dp256681 +g225232 +S'Paul Gavarni' +p256682 +sg225240 +g27 +sg225234 +S'1 vol: ill: 40 lithographs; texts by J. Janin, P. de Saint-Victor, E. Texier, and Ed. and J. Goncourt' +p256683 +sg225230 +S"D'Apres Nature" +p256684 +sg225236 +S'1858' +p256685 +sa(dp256686 +g225230 +S"Ambush (L'Embuscade)" +p256687 +sg225232 +S'Jean-Baptiste-Camille Corot' +p256688 +sg225234 +S'cliche-verre (salt print)' +p256689 +sg225236 +S'1858' +p256690 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009819.jpg' +p256691 +sg225240 +g27 +sa(dp256692 +g225230 +S"Stand of Alders (Le Bouquet d'aunes)" +p256693 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p256694 +sg225234 +S'cliche-verre' +p256695 +sg225236 +S'1862' +p256696 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00097/a00097f4.jpg' +p256697 +sg225240 +g27 +sa(dp256698 +g225230 +S'Deer (Les Cerfs)' +p256699 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p256700 +sg225234 +S'cliche-verre (salt print)' +p256701 +sg225236 +S'1862' +p256702 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00097/a00097f7.jpg' +p256703 +sg225240 +g27 +sa(dp256704 +g225230 +S'Banks of a River (Bords de Riviere)' +p256705 +sg225232 +S'Paul Huet' +p256706 +sg225234 +S'cliche-verre' +p256707 +sg225236 +S'c. 1866' +p256708 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a00098c0.jpg' +p256709 +sg225240 +g27 +sa(dp256710 +g225230 +S'Le Cerisier de la Plante a Biau' +p256711 +sg225232 +S'Th\xc3\xa9odore Rousseau' +p256712 +sg225234 +S'cliche-verre' +p256713 +sg225236 +S'1855' +p256714 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d20.jpg' +p256715 +sg225240 +g27 +sa(dp256716 +g225230 +S'En Foret a Breau' +p256717 +sg225232 +S'Adolphe Andr\xc3\xa9 Wacquez' +p256718 +sg225234 +S'cliche-verre' +p256719 +sg225236 +S'1860' +p256720 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005bdf.jpg' +p256721 +sg225240 +g27 +sa(dp256722 +g225230 +S'Squelettes et Ecorches' +p256723 +sg225232 +S'Domenico del Barbiere' +p256724 +sg225234 +S'engraving' +p256725 +sg225236 +S'unknown date\n' +p256726 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9f1.jpg' +p256727 +sg225240 +g27 +sa(dp256728 +g225230 +S'The Holy Family' +p256729 +sg225232 +S'Hendrick Goltzius' +p256730 +sg225234 +S', 1593' +p256731 +sg225236 +S'\n' +p256732 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d069.jpg' +p256733 +sg225240 +g27 +sa(dp256734 +g225230 +S'Frontispiece for "Fountains"' +p256735 +sg225232 +S'Jean-Laurent Legeay' +p256736 +sg225234 +S'etching' +p256737 +sg225236 +S'1768' +p256738 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ef6.jpg' +p256739 +sg225240 +g27 +sa(dp256740 +g225230 +S'Vase Supported by Intertwined Serpents' +p256741 +sg225232 +S'Jean-Laurent Legeay' +p256742 +sg225234 +S'etching' +p256743 +sg225236 +S'1768' +p256744 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ef1.jpg' +p256745 +sg225240 +g27 +sa(dp256746 +g225230 +S'Vase Supported by Two Sphinxes' +p256747 +sg225232 +S'Jean-Laurent Legeay' +p256748 +sg225234 +S'etching' +p256749 +sg225236 +S'1768' +p256750 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ef2.jpg' +p256751 +sg225240 +g27 +sa(dp256752 +g225230 +S'Vase with Two Fantastic Heads' +p256753 +sg225232 +S'Jean-Laurent Legeay' +p256754 +sg225234 +S'etching' +p256755 +sg225236 +S'1768' +p256756 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ef9.jpg' +p256757 +sg225240 +g27 +sa(dp256758 +g225230 +S'Vase Supported by a Base with Three Grotesque Faces' +p256759 +sg225232 +S'Jean-Laurent Legeay' +p256760 +sg225234 +S'etching' +p256761 +sg225236 +S'1768' +p256762 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ef5.jpg' +p256763 +sg225240 +g27 +sa(dp256764 +g225230 +S'Prima Parte di Architetture, e Prospettive (First Edition, Third Issue)' +p256765 +sg225232 +S'Giovanni Battista Piranesi' +p256766 +sg225234 +S'1 vol: title plate (Robison 1, state iii), dedication page (reset text w/ initial "S" (Robison 14), 14 plates (R.2-3, 5-12 state ii; R.14-18 state i)' +p256767 +sg225236 +S'dated 1743 but printed 1747' +p256768 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005c/a0005c57.jpg' +p256769 +sg225240 +g27 +sa(dp256770 +g225230 +S'Return to the Fold' +p256771 +sg225232 +S'Fran\xc3\xa7ois Boucher' +p256772 +sg225234 +S'brown and black chalk heightened with white on brown laid paper' +p256773 +sg225236 +S'1750/1765' +p256774 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00031/a0003198.jpg' +p256775 +sg225240 +g27 +sa(dp256776 +g225230 +S'Francois de Villemontee' +p256777 +sg225232 +S'Artist Information (' +p256778 +sg225234 +S'(artist after)' +p256779 +sg225236 +S'\n' +p256780 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b529.jpg' +p256781 +sg225240 +g27 +sa(dp256782 +g225230 +S'View on Lake George' +p256783 +sg225232 +S'John William Casilear' +p256784 +sg225234 +S'oil on canvas' +p256785 +sg225236 +S'1857' +p256786 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000039.jpg' +p256787 +sg225240 +g27 +sa(dp256788 +g225230 +S'Forest in the Morning Light' +p256789 +sg225232 +S'Asher Brown Durand' +p256790 +sg225234 +S'oil on canvas' +p256791 +sg225236 +S'c. 1855' +p256792 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000087.jpg' +p256793 +sg225240 +S'After establishing a successful career as an engraver and portraitist, Durand\nbegan specializing in landscapes during the late 1830s. He usually presented the\ngentler, bucolic aspects of nature rather than the awesome \n Durand emphasized the importance of the close, almost scientific, observation of\nnature. He took numerous excursions in the woods so that he could paint directly\nfrom nature, and also published his theories in the influential art magazine, \n ' +p256794 +sa(dp256795 +g225230 +S'A Pastoral Scene' +p256796 +sg225232 +S'Asher Brown Durand' +p256797 +sg225234 +S'oil on canvas' +p256798 +sg225236 +S'1858' +p256799 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000084.jpg' +p256800 +sg225240 +g27 +sa(dp256801 +g225230 +S'The Bashful Cousin' +p256802 +sg225232 +S'Francis William Edmonds' +p256803 +sg225234 +S'oil on canvas' +p256804 +sg225236 +S'c. 1841-1842' +p256805 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a000009c.jpg' +p256806 +sg225240 +S'Scenes detailing middle-class manners and mores became prevalent in American\nart and literature toward the middle of the nineteenth century, and Francis Edmonds\'\namusing vignette regarding matrimonial intent successfully combines these two avenues\nof expression. The painting is loosely based on James Kirke Paulding\'s "The Dutchman\'s\nFireside," a popular tale set in mid-eighteenth-century New York. The story deals\nwith the relationship between a shy, ungainly bachelor, Sybrandt Westbrook, and\nhis distant cousin, Catalina Vancour. As the young woman implores her diffident\ncaller to stay for tea, her mother gestures towards the couple. She is either soliciting\nher husband\'s help in persuading the young man to remain, or -- in the hope of securing\nan even better match for her daughter -- attempting to enlist his aid in discouraging\ntheir daughter\'s affections for this provincial suitor. Mr. Vancour pointedly ignores\nhis wife, far too absorbed in worldly affairs to concern himself with matters of\netiquette or romance. In the background, the bemused family servant, Aunt Nantje,\nwisely surveys the scene.\n The precise detailing of the structured, stage-like space, the theatrical use of\nlight, the choice of brightly colored costumes, and the humorous portrayal of everyday\nlife all reflect the influence of the seventeenth-century Dutch genre paintings\nthat had impressed Edmonds greatly during his travels on the Continent.\n ' +p256807 +sa(dp256808 +g225230 +S'Beach at Beverly' +p256809 +sg225232 +S'John Frederick Kensett' +p256810 +sg225234 +S'oil on canvas' +p256811 +sg225236 +S'c. 1869/1872' +p256812 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000135.jpg' +p256813 +sg225240 +g27 +sa(dp256814 +g225230 +S'Domestic Scene' +p256815 +sg225232 +S'Gerolamo Bassano' +p256816 +sg225234 +S'red, black, and white chalk on blue-gray paper' +p256817 +sg225236 +S'unknown date\n' +p256818 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074e9.jpg' +p256819 +sg225240 +g27 +sa(dp256820 +g225230 +S'Holy Family with Saint Anne and Female Head in Profile' +p256821 +sg225232 +S'Donato Creti' +p256822 +sg225234 +S', unknown date' +p256823 +sg225236 +S'\n' +p256824 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cfe.jpg' +p256825 +sg225240 +g27 +sa(dp256826 +g225230 +S'The Ascension of the Virgin' +p256827 +sg225232 +S'Donato Creti' +p256828 +sg225234 +S', unknown date' +p256829 +sg225236 +S'\n' +p256830 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a00071ac.jpg' +p256831 +sg225240 +g27 +sa(dp256832 +g225230 +S'Holy Family with St. Elizabeth, St. John the Baptist, and Two Angels in a Landscape' +p256833 +sg225232 +S'Donato Creti' +p256834 +sg225234 +S', unknown date' +p256835 +sg225236 +S'\n' +p256836 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072f1.jpg' +p256837 +sg225240 +g27 +sa(dp256838 +g225230 +S'Virgin and Child with Five Saints' +p256839 +sg225232 +S'Donato Creti' +p256840 +sg225234 +S', unknown date' +p256841 +sg225236 +S'\n' +p256842 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007285.jpg' +p256843 +sg225240 +g27 +sa(dp256844 +g225230 +S'Magdalene Washing the Feet of Christ with Eight Disciples Looking On [recto]' +p256845 +sg225232 +S'Donato Creti' +p256846 +sg225234 +S', unknown date' +p256847 +sg225236 +S'\n' +p256848 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a000727c.jpg' +p256849 +sg225240 +g27 +sa(dp256850 +g225230 +S'Seven Figures Witnessing an Ascension [verso]' +p256851 +sg225232 +S'Donato Creti' +p256852 +sg225234 +S', unknown date' +p256853 +sg225236 +S'\n' +p256854 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007249.jpg' +p256855 +sg225240 +g27 +sa(dp256856 +g225230 +S'Musician and Dancing Figures' +p256857 +sg225232 +S'Donato Creti' +p256858 +sg225234 +S', unknown date' +p256859 +sg225236 +S'\n' +p256860 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007213.jpg' +p256861 +sg225240 +g27 +sa(dp256862 +g225230 +S'Holy Family [recto]' +p256863 +sg225232 +S'Donato Creti' +p256864 +sg225234 +S', unknown date' +p256865 +sg225236 +S'\n' +p256866 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072e6.jpg' +p256867 +sg225240 +g27 +sa(dp256868 +g225230 +S'Female Figure (Penitent Magdalene?) [verso]' +p256869 +sg225232 +S'Donato Creti' +p256870 +sg225234 +S', unknown date' +p256871 +sg225236 +S'\n' +p256872 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072b2.jpg' +p256873 +sg225240 +g27 +sa(dp256874 +g225230 +S'Penitent Magdalene with Angels in a Landscape [recto]' +p256875 +sg225232 +S'Donato Creti' +p256876 +sg225234 +S', unknown date' +p256877 +sg225236 +S'\n' +p256878 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d08.jpg' +p256879 +sg225240 +g27 +sa(dp256880 +g225232 +S'Donato Creti' +p256881 +sg225240 +g27 +sg225234 +S', unknown date' +p256882 +sg225230 +S'Recumbant Female Figure with Arms Outstretched [verso]' +p256883 +sg225236 +S'\n' +p256884 +sa(dp256885 +g225230 +S'The Adoration of the Magi [recto]' +p256886 +sg225232 +S'Donato Creti' +p256887 +sg225234 +S', unknown date' +p256888 +sg225236 +S'\n' +p256889 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007177.jpg' +p256890 +sg225240 +g27 +sa(dp256891 +g225230 +S'Studies of Figures for an Adoration of the Magi [verso]' +p256892 +sg225232 +S'Donato Creti' +p256893 +sg225234 +S', unknown date' +p256894 +sg225236 +S'\n' +p256895 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007147.jpg' +p256896 +sg225240 +g27 +sa(dp256897 +g225230 +S'Auguste-Jean-Marie Gu\xc3\xa9nepin' +p256898 +sg225232 +S'Jean-Auguste-Dominique Ingres' +p256899 +sg225234 +S'graphite on wove paper' +p256900 +sg225236 +S'1809' +p256901 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004fc4.jpg' +p256902 +sg225240 +g27 +sa(dp256903 +g225230 +S'Isabella Abandons Her Home to Follow Odorico and His Men' +p256904 +sg225232 +S'Jean-Honor\xc3\xa9 Fragonard' +p256905 +sg225234 +S'black chalk, stumping, with brown and gray wash on laid paper' +p256906 +sg225236 +S'unknown date\n' +p256907 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00033/a00033cd.jpg' +p256908 +sg225240 +g27 +sa(dp256909 +g225230 +S'Angelica Is Exposed to the Orc' +p256910 +sg225232 +S'Jean-Honor\xc3\xa9 Fragonard' +p256911 +sg225234 +S'black chalk with brown and gray wash on laid paper' +p256912 +sg225236 +S'1780s' +p256913 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00033/a00033ce.jpg' +p256914 +sg225240 +g27 +sa(dp256915 +g225230 +S'Orlando Kills the Orc with an Anchor' +p256916 +sg225232 +S'Jean-Honor\xc3\xa9 Fragonard' +p256917 +sg225234 +S'black chalk with brown wash on laid paper' +p256918 +sg225236 +S'unknown date\n' +p256919 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00033/a00033cf.jpg' +p256920 +sg225240 +g27 +sa(dp256921 +g225230 +S"Orlando and Angelica Arrive at Charlemagne's Camp" +p256922 +sg225232 +S'Jean-Honor\xc3\xa9 Fragonard' +p256923 +sg225234 +S'black chalk, stumping, with brown wash on laid paper' +p256924 +sg225236 +S'unknown date\n' +p256925 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00033/a00033d0.jpg' +p256926 +sg225240 +g27 +sa(dp256927 +g225230 +S'Bradamante Tries to Catch Hold of the Hippogryph [recto]' +p256928 +sg225232 +S'Jean-Honor\xc3\xa9 Fragonard' +p256929 +sg225234 +S'black chalk with brown and gray wash on laid paper' +p256930 +sg225236 +S'1780s' +p256931 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00025/a0002531.jpg' +p256932 +sg225240 +g27 +sa(dp256933 +g225230 +S'Man on a Horse [verso]' +p256934 +sg225232 +S'Jean-Honor\xc3\xa9 Fragonard' +p256935 +sg225234 +S'black chalk on laid paper' +p256936 +sg225236 +S'unknown date\n' +p256937 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00111/a0011156.jpg' +p256938 +sg225240 +g27 +sa(dp256939 +g225230 +S'Half-Figure of an Old Woman with a Cap' +p256940 +sg225232 +S'Hans Baldung Grien' +p256941 +sg225234 +S'black chalk with green wash added by a later hand' +p256942 +sg225236 +S'c. 1535' +p256943 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00033/a00033c7.jpg' +p256944 +sg225240 +g27 +sa(dp256945 +g225230 +S'View of Dordrecht from the Dordtse Kil' +p256946 +sg225232 +S'Jan van Goyen' +p256947 +sg225234 +S'oil on panel' +p256948 +sg225236 +S'1644' +p256949 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e58.jpg' +p256950 +sg225240 +S"The Netherlands was a great trading nation that depended on shipping as a basis\nfor wealth and power. Whether on the open sea or through the network of rivers and\ncanals that spread across the low lying land, Dutch ships carried goods for trade\nand commerce. Cities and towns grew up along the inland waterways so that transport\nof goods by barges and passengers by ferries could be facilitated.\n Depictions of such water views were extremely popular in the first half of the seventeenth\ncentury. One of the greatest early landscape artists, Jan van Goyen was particularly\nadept at suggesting the various moods of the land in different seasons of the year\nor weather conditions. In this view of Dordrecht, the sky is overcast and the water\ncalm, the atmosphere carefully created through Van Goyen's subtle range of ochers\nand grays.\n Figures animate the scene; a fisherman works his traps on the left and behind him\na sailboat takes on more travelers from a smaller transport boat. Another rowboat\nin the center foreground has already taken on passengers from the ferry boat and\nis transporting them to the harbor of Dordrecht.\n " +p256951 +sa(dp256952 +g225230 +S'The Spirit of War' +p256953 +sg225232 +S'Jasper Francis Cropsey' +p256954 +sg225234 +S'oil on canvas' +p256955 +sg225236 +S'1851' +p256956 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000070.jpg' +p256957 +sg225240 +g27 +sa(dp256958 +g225230 +S'Two Piece Mirror Knife Edge' +p256959 +sg225232 +S'Henry Moore' +p256960 +sg225234 +S'bronze' +p256961 +sg225236 +S'1976-1977' +p256962 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002de6.jpg' +p256963 +sg225240 +g27 +sa(dp256964 +g225230 +S'Cubi XXVI' +p256965 +sg225232 +S'David Smith' +p256966 +sg225234 +S'steel' +p256967 +sg225236 +S'1965' +p256968 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a00016ae.jpg' +p256969 +sg225240 +g27 +sa(dp256970 +g225230 +S'Two Women on the Shore (Frauen am Meeresufer)' +p256971 +sg225232 +S'Edvard Munch' +p256972 +sg225234 +S'color woodcut with watercolor' +p256973 +sg225236 +S'c. 1898' +p256974 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022e3.jpg' +p256975 +sg225240 +g27 +sa(dp256976 +g225230 +S'Two Women on the Shore (Frauen am Meeresufer)' +p256977 +sg225232 +S'Edvard Munch' +p256978 +sg225234 +S'color woodcut and color linoleum block' +p256979 +sg225236 +S'c. 1900/1910' +p256980 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022e4.jpg' +p256981 +sg225240 +g27 +sa(dp256982 +g225230 +S'Two Women on the Shore (Frauen am Meeresufer)' +p256983 +sg225232 +S'Edvard Munch' +p256984 +sg225234 +S'color woodcut and color linoleum block' +p256985 +sg225236 +S'1910s' +p256986 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022e5.jpg' +p256987 +sg225240 +g27 +sa(dp256988 +g225230 +S'Two Women on the Shore (Frauen am Meeresufer)' +p256989 +sg225232 +S'Edvard Munch' +p256990 +sg225234 +S'color woodcut' +p256991 +sg225236 +S'1920s' +p256992 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022e6.jpg' +p256993 +sg225240 +g27 +sa(dp256994 +g225230 +S'Two Women on the Shore (Frauen am Meeresufer)' +p256995 +sg225232 +S'Edvard Munch' +p256996 +sg225234 +S'color woodcut' +p256997 +sg225236 +S'1920s' +p256998 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022e7.jpg' +p256999 +sg225240 +g27 +sa(dp257000 +g225230 +S"Lion of the Atlas Mountains (Lion de l'Atlas)" +p257001 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p257002 +sg225234 +S'lithograph' +p257003 +sg225236 +S'1829' +p257004 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f38.jpg' +p257005 +sg225240 +g27 +sa(dp257006 +g225230 +S'Royal Tiger (Tigre Royal)' +p257007 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p257008 +sg225234 +S'lithograph' +p257009 +sg225236 +S'1829' +p257010 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f39.jpg' +p257011 +sg225240 +g27 +sa(dp257012 +g225230 +S'Pan Reclining' +p257013 +sg225232 +S'Sir Peter Paul Rubens' +p257014 +sg225234 +S'red and black chalk with red wash and gouache' +p257015 +sg225236 +S'possibly c. 1610' +p257016 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00037/a00037ec.jpg' +p257017 +sg225240 +g27 +sa(dp257018 +g225230 +S'Young Woman in Profile' +p257019 +sg225232 +S'Sir Peter Paul Rubens' +p257020 +sg225234 +S'black chalk heightened with white' +p257021 +sg225236 +S'c. 1613' +p257022 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00027/a000279d.jpg' +p257023 +sg225240 +g27 +sa(dp257024 +g225230 +S'Landscape with Two Washerwomen' +p257025 +sg225232 +S'Agostino Carracci' +p257026 +sg225234 +S'pen and brown ink on laid paper' +p257027 +sg225236 +S'1580s' +p257028 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00031/a00031a5.jpg' +p257029 +sg225240 +g27 +sa(dp257030 +g225230 +S'Landscape with Castle above a Harbor' +p257031 +sg225232 +S'Matthys Cock' +p257032 +sg225234 +S'pen and brown ink with watercolor and white heightening on light brown laid paper' +p257033 +sg225236 +S'1540' +p257034 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00031/a00031af.jpg' +p257035 +sg225240 +g27 +sa(dp257036 +g225230 +S'Village Fair' +p257037 +sg225232 +S'Jan van Goyen' +p257038 +sg225234 +S'black chalk with gray wash on laid paper' +p257039 +sg225236 +S'1656' +p257040 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007166.jpg' +p257041 +sg225240 +g27 +sa(dp257042 +g225230 +S'Wayside Inn' +p257043 +sg225232 +S'Jan van Goyen' +p257044 +sg225234 +S'black chalk with gray wash on laid paper' +p257045 +sg225236 +S'1653' +p257046 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00033/a00033e3.jpg' +p257047 +sg225240 +g27 +sa(dp257048 +g225230 +S'Deer Park' +p257049 +sg225232 +S'Jan Lievens' +p257050 +sg225234 +S'brush and brown ink' +p257051 +sg225236 +S'unknown date\n' +p257052 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00034/a0003428.jpg' +p257053 +sg225240 +g27 +sa(dp257054 +g225230 +S'Reconciliation Elegy' +p257055 +sg225232 +S'Robert Motherwell' +p257056 +sg225234 +S'acrylic on canvas' +p257057 +sg225236 +S'1978' +p257058 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000191.jpg' +p257059 +sg225240 +g27 +sa(dp257060 +g225232 +S'Anthony Caro' +p257061 +sg225240 +g27 +sg225234 +S'welded steel' +p257062 +sg225230 +S'National Gallery Ledge Piece' +p257063 +sg225236 +S'1978' +p257064 +sa(dp257065 +g225230 +S'Oriforme' +p257066 +sg225232 +S'Jean Arp' +p257067 +sg225234 +S'stainless steel' +p257068 +sg225236 +S'model 1962, fabricated 1977' +p257069 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dec.jpg' +p257070 +sg225240 +g27 +sa(dp257071 +g225230 +S'Woman' +p257072 +sg225232 +S'Artist Information (' +p257073 +sg225234 +S'(artist after)' +p257074 +sg225236 +S'\n' +p257075 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000df5.jpg' +p257076 +sg225240 +g27 +sa(dp257077 +g225230 +S'Untitled' +p257078 +sg225232 +S'James Rosati' +p257079 +sg225234 +S'aluminum, painted' +p257080 +sg225236 +S'model 1971, fabricated 1977' +p257081 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00017/a00017b7.jpg' +p257082 +sg225240 +g27 +sa(dp257083 +g225230 +S'Saint John' +p257084 +sg225232 +S'Jacques de Bellange' +p257085 +sg225234 +S', unknown date' +p257086 +sg225236 +S'\n' +p257087 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a4c.jpg' +p257088 +sg225240 +g27 +sa(dp257089 +g225230 +S'The Marriage of the Virgin' +p257090 +sg225232 +S'Artist Information (' +p257091 +sg225234 +S'(artist after)' +p257092 +sg225236 +S'\n' +p257093 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5f5.jpg' +p257094 +sg225240 +g27 +sa(dp257095 +g225230 +S'La Mariee de Village (The Village Bride)' +p257096 +sg225232 +S'Artist Information (' +p257097 +sg225234 +S'(artist after)' +p257098 +sg225236 +S'\n' +p257099 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00057/a0005726.jpg' +p257100 +sg225240 +g27 +sa(dp257101 +g225230 +S'En\xc3\xa9e et Didon' +p257102 +sg225232 +S'Honor\xc3\xa9 Daumier' +p257103 +sg225234 +S'lithograph' +p257104 +sg225236 +S'1842' +p257105 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092a3.jpg' +p257106 +sg225240 +g27 +sa(dp257107 +g225230 +S'The Two Statues' +p257108 +sg225232 +S'Artist Information (' +p257109 +sg225234 +S'(artist after)' +p257110 +sg225236 +S'\n' +p257111 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d607.jpg' +p257112 +sg225240 +g27 +sa(dp257113 +g225230 +S'A Flying Angel' +p257114 +sg225232 +S'Jacopo Palma il Giovane' +p257115 +sg225234 +S'pen and brown ink, heightened with white, over black chalk on laid paper' +p257116 +sg225236 +S'1580/1590' +p257117 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a0007570.jpg' +p257118 +sg225240 +g27 +sa(dp257119 +g225230 +S'Portrait of a Young Man with a Skull' +p257120 +sg225232 +S'Lucas van Leyden' +p257121 +sg225234 +S'engraving' +p257122 +sg225236 +S'c. 1519' +p257123 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00060/a0006095.jpg' +p257124 +sg225240 +g27 +sa(dp257125 +g225230 +S'Herdsmen Crossing a Waterfall' +p257126 +sg225232 +S'Hubert Robert' +p257127 +sg225234 +S'red chalk on laid paper, with later framing line in brown ink' +p257128 +sg225236 +S'1770/1775' +p257129 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00037/a00037e8.jpg' +p257130 +sg225240 +g27 +sa(dp257131 +g225232 +S'Artist Information (' +p257132 +sg225240 +g27 +sg225234 +S'(artist after)' +p257133 +sg225230 +S'View of Malines' +p257134 +sg225236 +S'\n' +p257135 +sa(dp257136 +g225230 +S'Seneca Standing in the Bath' +p257137 +sg225232 +S'Artist Information (' +p257138 +sg225234 +S'(artist after)' +p257139 +sg225236 +S'\n' +p257140 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d50e.jpg' +p257141 +sg225240 +g27 +sa(dp257142 +g225230 +S'Judith Beheading Holofernes' +p257143 +sg225232 +S'Artist Information (' +p257144 +sg225234 +S'(artist after)' +p257145 +sg225236 +S'\n' +p257146 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f2b.jpg' +p257147 +sg225240 +g27 +sa(dp257148 +g225230 +S'The Fall of the Rebel Angels' +p257149 +sg225232 +S'Artist Information (' +p257150 +sg225234 +S'(artist after)' +p257151 +sg225236 +S'\n' +p257152 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d633.jpg' +p257153 +sg225240 +g27 +sa(dp257154 +g225230 +S'The Fall of the Rebel Angels' +p257155 +sg225232 +S'Artist Information (' +p257156 +sg225234 +S'(artist after)' +p257157 +sg225236 +S'\n' +p257158 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d634.jpg' +p257159 +sg225240 +g27 +sa(dp257160 +g225230 +S'Saint Francis Receiving the Stigmata' +p257161 +sg225232 +S'Artist Information (' +p257162 +sg225234 +S'(artist after)' +p257163 +sg225236 +S'\n' +p257164 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d62e.jpg' +p257165 +sg225240 +g27 +sa(dp257166 +g225230 +S'Saint Simon' +p257167 +sg225232 +S'Artist Information (' +p257168 +sg225234 +S'(artist after)' +p257169 +sg225236 +S'\n' +p257170 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c74a.jpg' +p257171 +sg225240 +g27 +sa(dp257172 +g225230 +S'Saint Simon' +p257173 +sg225232 +S'Artist Information (' +p257174 +sg225234 +S'(artist after)' +p257175 +sg225236 +S'\n' +p257176 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c880.jpg' +p257177 +sg225240 +g27 +sa(dp257178 +g225232 +S'Artist Information (' +p257179 +sg225240 +g27 +sg225234 +S'(artist after)' +p257180 +sg225230 +S'Virgin and Child Adored by Saints' +p257181 +sg225236 +S'\n' +p257182 +sa(dp257183 +g225232 +S'Artist Information (' +p257184 +sg225240 +g27 +sg225234 +S'(artist after)' +p257185 +sg225230 +S'The Elevation of the Cross' +p257186 +sg225236 +S'\n' +p257187 +sa(dp257188 +g225230 +S'Woman I' +p257189 +sg225232 +S'Willem de Kooning' +p257190 +sg225234 +S'pastel, crayon and graphite on wove paper' +p257191 +sg225236 +S'1952' +p257192 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000951.jpg' +p257193 +sg225240 +g27 +sa(dp257194 +g225230 +S'Wild Boar' +p257195 +sg225232 +S'German 18th Century' +p257196 +sg225234 +S'overall: 10.2 x 14.9 cm (4 x 5 7/8 in.)' +p257197 +sg225236 +S'\nred chalk over graphite on laid paper' +p257198 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006eba.jpg' +p257199 +sg225240 +g27 +sa(dp257200 +g225230 +S'The Bohemians Marching: The Vanguard' +p257201 +sg225232 +S'Jacques Callot' +p257202 +sg225234 +S'etching and engraving on gold colored silk' +p257203 +sg225236 +S'probably 18th century' +p257204 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008553.jpg' +p257205 +sg225240 +g27 +sa(dp257206 +g225230 +S'Gericault' +p257207 +sg225232 +S'Artist Information (' +p257208 +sg225234 +S'French, 1794 - 1880' +p257209 +sg225236 +S'(artist after)' +p257210 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a000918f.jpg' +p257211 +sg225240 +g27 +sa(dp257212 +g225232 +S'Pavel Tchelitchew' +p257213 +sg225240 +g27 +sg225234 +S'brown-orange watercolor' +p257214 +sg225230 +S'George Platt Lynes' +p257215 +sg225236 +S'c. 1937' +p257216 +sa(dp257217 +g225232 +S'Elie Nadelman' +p257218 +sg225240 +g27 +sg225234 +S'pen and brown ink with brown and gray wash over graphite on laid paper' +p257219 +sg225230 +S'Study for "Man in the Open Air"' +p257220 +sg225236 +S'c. 1913/1914' +p257221 +sa(dp257222 +g225232 +S'Elie Nadelman' +p257223 +sg225240 +g27 +sg225234 +S'gray-brown wash over graphite on wove paper' +p257224 +sg225230 +S"Woman's Head" +p257225 +sg225236 +S'unknown date\n' +p257226 +sa(dp257227 +g225232 +S'Elie Nadelman' +p257228 +sg225240 +g27 +sg225234 +S'pen and black ink over graphite on wove paper' +p257229 +sg225230 +S"Woman's Head in Profile, Facing Left" +p257230 +sg225236 +S'unknown date\n' +p257231 +sa(dp257232 +g225232 +S'Pavel Tchelitchew' +p257233 +sg225240 +g27 +sg225234 +S'pen and black ink with black and gray wash' +p257234 +sg225230 +S'Mrs. Oliver Jennings' +p257235 +sg225236 +S'c. 1937' +p257236 +sa(dp257237 +g225232 +S'Rudy Pozzatti' +p257238 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p257239 +sg225230 +S'City' +p257240 +sg225236 +S'1961' +p257241 +sa(dp257242 +g225232 +S'Rudy Pozzatti' +p257243 +sg225240 +g27 +sg225234 +S'pen and brush with brown ink' +p257244 +sg225230 +S'Forum' +p257245 +sg225236 +S'1962' +p257246 +sa(dp257247 +g225232 +S'Rudy Pozzatti' +p257248 +sg225240 +g27 +sg225234 +S'woodcut in black on Mulberry paper' +p257249 +sg225230 +S'The Grasshopper' +p257250 +sg225236 +S'1954' +p257251 +sa(dp257252 +g225232 +S'Rudy Pozzatti' +p257253 +sg225240 +g27 +sg225234 +S'etching-lift ground, soft-ground, and aquatint (zinc)' +p257254 +sg225230 +S'Homage to Brunelleschi' +p257255 +sg225236 +S'1968' +p257256 +sa(dp257257 +g225232 +S'Rudy Pozzatti' +p257258 +sg225240 +g27 +sg225234 +S'etching-lift ground, aquatint, and engraving (zinc) with roulette and sandpaper toning in black and dark umber' +p257259 +sg225230 +S'Homage to Vesalius' +p257260 +sg225236 +S'1968' +p257261 +sa(dp257262 +g225232 +S'Rudy Pozzatti' +p257263 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p257264 +sg225230 +S'Kings' +p257265 +sg225236 +S'1961' +p257266 +sa(dp257267 +g225232 +S'Rudy Pozzatti' +p257268 +sg225240 +g27 +sg225234 +S'etching-soft ground (copper)' +p257269 +sg225230 +S'Louis XI' +p257270 +sg225236 +S'1964' +p257271 +sa(dp257272 +g225232 +S'Rudy Pozzatti' +p257273 +sg225240 +g27 +sg225234 +S'engraving' +p257274 +sg225230 +S'Medieval Musician #1' +p257275 +sg225236 +S'1960' +p257276 +sa(dp257277 +g225232 +S'Rudy Pozzatti' +p257278 +sg225240 +g27 +sg225234 +S'etching-soft ground (zinc)' +p257279 +sg225230 +S'Men and Beasts II' +p257280 +sg225236 +S'1965' +p257281 +sa(dp257282 +g225232 +S'Rudy Pozzatti' +p257283 +sg225240 +g27 +sg225234 +S'etching-softground and liftground aquatint (zinc) in sienna and black' +p257284 +sg225230 +S'Portrait' +p257285 +sg225236 +S'1965' +p257286 +sa(dp257287 +g225232 +S'Rudy Pozzatti' +p257288 +sg225240 +g27 +sg225234 +S'5-color woodcut' +p257289 +sg225230 +S'Sun over Venice' +p257290 +sg225236 +S'1961' +p257291 +sa(dp257292 +g225232 +S'Rudy Pozzatti' +p257293 +sg225240 +g27 +sg225234 +S'brush and black ink' +p257294 +sg225230 +S'Two Eagles' +p257295 +sg225236 +S'1958' +p257296 +sa(dp257297 +g225230 +S'The Shell' +p257298 +sg225232 +S"Georgia O'Keeffe" +p257299 +sg225234 +S'charcoal on laid paper' +p257300 +sg225236 +S'1934' +p257301 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000979.jpg' +p257302 +sg225240 +g27 +sa(dp257303 +g225232 +S'Jules Olitski' +p257304 +sg225240 +g27 +sg225234 +S'water-miscible acrylic on canvas' +p257305 +sg225230 +S'Unlocked' +p257306 +sg225236 +S'1966' +p257307 +sa(dp257308 +g225232 +S'Howard Mehring' +p257309 +sg225240 +g27 +sg225234 +S'acrylic on canvas' +p257310 +sg225230 +S'Sequence' +p257311 +sg225236 +S'1960' +p257312 +sa(dp257313 +g225230 +S'Baby (Cradle)' +p257314 +sg225232 +S'Gustav Klimt' +p257315 +sg225234 +S'oil on canvas' +p257316 +sg225236 +S'1917/1918' +p257317 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ed4.jpg' +p257318 +sg225240 +g27 +sa(dp257319 +g225230 +S'A Venetian Ecclesiastic' +p257320 +sg225232 +S'Giusto Le Court' +p257321 +sg225234 +S', third quarter 17th century' +p257322 +sg225236 +S'\n' +p257323 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d7b.jpg' +p257324 +sg225240 +g27 +sa(dp257325 +g225230 +S'Knife Edge Mirror Two Piece' +p257326 +sg225232 +S'Henry Moore' +p257327 +sg225234 +S'bronze' +p257328 +sg225236 +S'1976-1978' +p257329 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004a/a0004ad8.jpg' +p257330 +sg225240 +g27 +sa(dp257331 +g225230 +S'Two Piece Mirror Knife Edge' +p257332 +sg225232 +S'Henry Moore' +p257333 +sg225234 +S'plaster' +p257334 +sg225236 +S'1976-1977' +p257335 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002de7.jpg' +p257336 +sg225240 +g27 +sa(dp257337 +g225230 +S'Satyr Holding a Roundel' +p257338 +sg225232 +S'Annibale Carracci' +p257339 +sg225234 +S'black chalk on gray-blue paper' +p257340 +sg225236 +S'1597/1600' +p257341 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022d2.jpg' +p257342 +sg225240 +g27 +sa(dp257343 +g225230 +S'The Partridge Saves Her Young' +p257344 +sg225232 +S'Jean-Baptiste Oudry' +p257345 +sg225234 +S'brush and black ink, white gouache, and gray wash, with a simluated mount in blue and gray wash and pen and dark brown ink, on blue laid paper' +p257346 +sg225236 +S'1732' +p257347 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00026/a000260c.jpg' +p257348 +sg225240 +g27 +sa(dp257349 +g225230 +S'The Adoration of the Shepherds' +p257350 +sg225232 +S'Adriaen Isenbrant' +p257351 +sg225234 +S'oil on panel' +p257352 +sg225236 +S'probably 1520/1540' +p257353 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00005/a0000599.jpg' +p257354 +sg225240 +S'Isenbrant, called Gerard David’s “disciple” by a commentator in the 1600s, lived in Bruges and was clearly influenced by its preeminent painter. Notice, for example, how the faces of the Virgin here and in David’s \n The crumbling ruin, its ancient decoration slowly disappearing under creeping vines, suggests the decay of the old pagan religion. In the same vein, the figure of Moses at the top alludes to the transition from Old Testament law to the new era brought about by Christ’s birth. The shepherds who gather around the infant are the first to celebrate Jesus’ appearance on earth. The distant bonfires of a peasant festival celebrating the winter solstice help to fix the time of year. By placing the infant on an altarlike cradle next to a sheaf of wheat, the painting also stresses the association of the incarnation—Jesus’ human birth—with the eucharist, the presence of his body and blood in the wafer and wine of the mass.\n ' +p257355 +sa(dp257356 +g225230 +S'Hide and Seek' +p257357 +sg225232 +S'James Jacques Joseph Tissot' +p257358 +sg225234 +S'oil on wood' +p257359 +sg225236 +S'c. 1877' +p257360 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000747.jpg' +p257361 +sg225240 +S'In early 1874 Degas wrote, "Look here, my dear Tissot. . . you positively must\nexhibit at the Boulevard [in the first impressionist exhibition]. . . Exhibit. Be\nof your country and with your friends." Degas and Tissot, who met as students during\nthe late 1850s, stayed in close communication even after Tissot fled to London in\n1871 to avoid punishment for activities in the abortive Commune. Arguing that the\nbenefits of declaring his allegiance to French art outweighed the potential harm\nit might cause among Tissot\'s London audience, Degas urged Tissot to show with the\nimpressionists and thereby affirm his ties to France and more particularly to Degas\nand realism.\n Although he chose not to accept the invitation, Tissot, like Degas, worked in a\nrealist vein. \n ' +p257362 +sa(dp257363 +g225230 +S'Improvisation 31 (Sea Battle)' +p257364 +sg225232 +S'Wassily Kandinsky' +p257365 +sg225234 +S'oil on canvas' +p257366 +sg225236 +S'1913' +p257367 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ee3.jpg' +p257368 +sg225240 +S'The title "Improvisations" refers to a series of works that Kandinsky painted\n between 1909 and 1913 which was, according to the artist, "a largely unconscious,\n spontaneous expression of inner character, non-material nature." Although the amorphous\n shapes and colorful washes of paint in \n The central motif of \n Although this work was painted on the eve of the First World War, Kandinsky denied that\n his paintings referred to any specific war but rather to "a terrible struggle . . . going on in\n the spiritual atmosphere." Kandinsky, who fervently believed that humanity stood on the\n brink of a new spiritual era, avowed that art could help to sever human attachment to the material\n world and usher in the new age.\n ' +p257369 +sa(dp257370 +g225230 +S'The Skeletons' +p257371 +sg225232 +S'Giovanni Battista Piranesi' +p257372 +sg225234 +S'etching, engraving, drypoint, burnishing' +p257373 +sg225236 +S'published 1750/1759' +p257374 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc1a.jpg' +p257375 +sg225240 +g27 +sa(dp257376 +g225230 +S'The Triumphal Arch' +p257377 +sg225232 +S'Giovanni Battista Piranesi' +p257378 +sg225234 +S'etching, engraving, drypoint, burnishing' +p257379 +sg225236 +S'published 1750/1759' +p257380 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc19.jpg' +p257381 +sg225240 +g27 +sa(dp257382 +g225230 +S'The Tomb of Nero' +p257383 +sg225232 +S'Giovanni Battista Piranesi' +p257384 +sg225234 +S'etching, engraving, drypoint, scratching' +p257385 +sg225236 +S'published 1750/1759' +p257386 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc18.jpg' +p257387 +sg225240 +g27 +sa(dp257388 +g225230 +S'The Monumental Tablet' +p257389 +sg225232 +S'Giovanni Battista Piranesi' +p257390 +sg225234 +S'etching, engraving, drypoint, scratching' +p257391 +sg225236 +S'published 1750/1759' +p257392 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc17.jpg' +p257393 +sg225240 +g27 +sa(dp257394 +g225230 +S'The Partridge and the Cocks' +p257395 +sg225232 +S'Jean-Baptiste Oudry' +p257396 +sg225234 +S'brush and black ink, gray wash, and white gouache on blue laid paper//royal blue wash border' +p257397 +sg225236 +S'1732' +p257398 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ffae.jpg' +p257399 +sg225240 +g27 +sa(dp257400 +g225230 +S'Title Page' +p257401 +sg225232 +S'John Hamilton Mortimer' +p257402 +sg225234 +S'etching' +p257403 +sg225236 +S'1778' +p257404 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a0007735.jpg' +p257405 +sg225240 +g27 +sa(dp257406 +g225230 +S'Pastoral' +p257407 +sg225232 +S'John Hamilton Mortimer' +p257408 +sg225234 +S'etching' +p257409 +sg225236 +S'1778' +p257410 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a0007743.jpg' +p257411 +sg225240 +g27 +sa(dp257412 +g225230 +S'Jealous Monster' +p257413 +sg225232 +S'John Hamilton Mortimer' +p257414 +sg225234 +S'etching' +p257415 +sg225236 +S'1778' +p257416 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a0007741.jpg' +p257417 +sg225240 +g27 +sa(dp257418 +g225230 +S'Successful Monster' +p257419 +sg225232 +S'John Hamilton Mortimer' +p257420 +sg225234 +S'etching' +p257421 +sg225236 +S'1778' +p257422 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a000773f.jpg' +p257423 +sg225240 +g27 +sa(dp257424 +g225230 +S'Enraged Monster' +p257425 +sg225232 +S'John Hamilton Mortimer' +p257426 +sg225234 +S'etching' +p257427 +sg225236 +S'1778' +p257428 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a0007747.jpg' +p257429 +sg225240 +g27 +sa(dp257430 +g225230 +S'Musical Monster' +p257431 +sg225232 +S'John Hamilton Mortimer' +p257432 +sg225234 +S'etching' +p257433 +sg225236 +S'1778' +p257434 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a0007749.jpg' +p257435 +sg225240 +g27 +sa(dp257436 +g225230 +S'Comedy' +p257437 +sg225232 +S'John Hamilton Mortimer' +p257438 +sg225234 +S'etching' +p257439 +sg225236 +S'1778' +p257440 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a000773d.jpg' +p257441 +sg225240 +g27 +sa(dp257442 +g225230 +S'Elegy' +p257443 +sg225232 +S'John Hamilton Mortimer' +p257444 +sg225234 +S'etching' +p257445 +sg225236 +S'1778' +p257446 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a000773b.jpg' +p257447 +sg225240 +g27 +sa(dp257448 +g225230 +S'Tragedy' +p257449 +sg225232 +S'John Hamilton Mortimer' +p257450 +sg225234 +S'etching' +p257451 +sg225236 +S'1778' +p257452 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a0007739.jpg' +p257453 +sg225240 +g27 +sa(dp257454 +g225230 +S'Reposo' +p257455 +sg225232 +S'John Hamilton Mortimer' +p257456 +sg225234 +S'etching' +p257457 +sg225236 +S'1778' +p257458 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a0007737.jpg' +p257459 +sg225240 +g27 +sa(dp257460 +g225230 +S'Salvator Rosa' +p257461 +sg225232 +S'John Hamilton Mortimer' +p257462 +sg225234 +S'etching' +p257463 +sg225236 +S'1778' +p257464 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a000771e.jpg' +p257465 +sg225240 +g27 +sa(dp257466 +g225230 +S'Banditti Taking His Post' +p257467 +sg225232 +S'John Hamilton Mortimer' +p257468 +sg225234 +S'etching' +p257469 +sg225236 +S'1778' +p257470 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a0007720.jpg' +p257471 +sg225240 +g27 +sa(dp257472 +g225230 +S'A Captn of Banditti Sending Out a Party' +p257473 +sg225232 +S'John Hamilton Mortimer' +p257474 +sg225234 +S'etching' +p257475 +sg225236 +S'1778' +p257476 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a0007722.jpg' +p257477 +sg225240 +g27 +sa(dp257478 +g225230 +S'Banditti on the Look Out' +p257479 +sg225232 +S'John Hamilton Mortimer' +p257480 +sg225234 +S'etching' +p257481 +sg225236 +S'1778' +p257482 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a0007726.jpg' +p257483 +sg225240 +g27 +sa(dp257484 +g225230 +S'Gerd Lairesse' +p257485 +sg225232 +S'John Hamilton Mortimer' +p257486 +sg225234 +S'etching' +p257487 +sg225236 +S'1778' +p257488 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a0007724.jpg' +p257489 +sg225240 +g27 +sa(dp257490 +g225230 +S'Studies of a Male Torso' +p257491 +sg225232 +S'Italian 16th Century' +p257492 +sg225234 +S'overall: 25.7 x 20.3 cm (10 1/8 x 8 in.)' +p257493 +sg225236 +S'\npen and brown ink on gray-blue paper' +p257494 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a0007529.jpg' +p257495 +sg225240 +g27 +sa(dp257496 +g225230 +S'Ritual Washing of the Israelites' +p257497 +sg225232 +S'Abraham Bloemaert' +p257498 +sg225234 +S'black chalk and pale blue-green wash on laid paper' +p257499 +sg225236 +S'1606' +p257500 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007186.jpg' +p257501 +sg225240 +g27 +sa(dp257502 +g225230 +S'The Fall of Phaeton' +p257503 +sg225232 +S'Gaspare Diziani' +p257504 +sg225234 +S'pen and brown ink over red chalk with brown and gray wash on laid paper' +p257505 +sg225236 +S'1745/1750' +p257506 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00024/a000243e.jpg' +p257507 +sg225240 +g27 +sa(dp257508 +g225230 +S'The Defeat of Sennacherib' +p257509 +sg225232 +S'Artist Information (' +p257510 +sg225234 +S'(artist)' +p257511 +sg225236 +S'\n' +p257512 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a000706c.jpg' +p257513 +sg225240 +g27 +sa(dp257514 +g225230 +S'Pleasures of Brittany (Joies de Bretagne)' +p257515 +sg225232 +S'Artist Information (' +p257516 +sg225234 +S'French, 1867 - 1939' +p257517 +sg225236 +S'(artist)' +p257518 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00015/a000155f.jpg' +p257519 +sg225240 +g27 +sa(dp257520 +g225230 +S"Donkey in a Field (L'Ane au pre)" +p257521 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p257522 +sg225234 +S'cliche-verre' +p257523 +sg225236 +S'1862' +p257524 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00097/a00097f6.jpg' +p257525 +sg225240 +g27 +sa(dp257526 +g225230 +S'Time, Apollo, and the Seasons (Le Temps, Apollon et les Saisons)' +p257527 +sg225232 +S'Claude Lorrain' +p257528 +sg225234 +S'etching' +p257529 +sg225236 +S'1662' +p257530 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008af3.jpg' +p257531 +sg225240 +g27 +sa(dp257532 +g225230 +S"The Father's Leave-Taking" +p257533 +sg225232 +S'William Holman Hunt' +p257534 +sg225234 +S'etching' +p257535 +sg225236 +S'1879' +p257536 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007db3.jpg' +p257537 +sg225240 +g27 +sa(dp257538 +g225230 +S'Temple of the Sibyl, Tivoli' +p257539 +sg225232 +S'Christian Wilhelm Ernst Dietrich' +p257540 +sg225234 +S'etching' +p257541 +sg225236 +S'1745' +p257542 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b309.jpg' +p257543 +sg225240 +g27 +sa(dp257544 +g225230 +S'Polish Nobleman Standing (Balthasar Bathory de Somlyo at Age 22)' +p257545 +sg225232 +S'Hendrick Goltzius' +p257546 +sg225234 +S', 1583' +p257547 +sg225236 +S'\n' +p257548 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfd0.jpg' +p257549 +sg225240 +g27 +sa(dp257550 +g225230 +S'Bust of an Old Woman Wearing a Head Scarf' +p257551 +sg225232 +S'Lagneau' +p257552 +sg225234 +S'black chalk and colored chalks on laid paper' +p257553 +sg225236 +S'c. 1625' +p257554 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00060/a000607b.jpg' +p257555 +sg225240 +g27 +sa(dp257556 +g225230 +S'Lady with a Lute' +p257557 +sg225232 +S'Thomas Wilmer Dewing' +p257558 +sg225234 +S'oil on wood' +p257559 +sg225236 +S'1886' +p257560 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a000007b.jpg' +p257561 +sg225240 +g27 +sa(dp257562 +g225232 +S'Mark Tobey' +p257563 +sg225240 +g27 +sg225234 +S'gouache on paper' +p257564 +sg225230 +S'Interior of the Studio' +p257565 +sg225236 +S'1937' +p257566 +sa(dp257567 +g225232 +S'John Walker' +p257568 +sg225240 +g27 +sg225234 +S'mixed media on canvas' +p257569 +sg225230 +S'Untitled (Oxford)' +p257570 +sg225236 +S'1977/1978' +p257571 +sa(dp257572 +g225230 +S'South Bend' +p257573 +sg225232 +S'Robert Indiana' +p257574 +sg225234 +S'color lithograph on wove Arjomari paper' +p257575 +sg225236 +S'1978' +p257576 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000acc.jpg' +p257577 +sg225240 +g27 +sa(dp257578 +g225232 +S'Artist Information (' +p257579 +sg225240 +g27 +sg225234 +S'German, 1724 - 1790' +p257580 +sg225230 +S'Elementarwerk' +p257581 +sg225236 +S'(author)' +p257582 +sa(dp257583 +g225232 +S'Ben Shahn' +p257584 +sg225240 +g27 +sg225234 +S'photo-offset' +p257585 +sg225230 +S'Wheat Field' +p257586 +sg225236 +S'c. 1958' +p257587 +sa(dp257588 +g225232 +S'Brian Halsey' +p257589 +sg225240 +g27 +sg225234 +S'screenprint' +p257590 +sg225230 +S'Isotron' +p257591 +sg225236 +S'1978' +p257592 +sa(dp257593 +g225232 +S'Brian Halsey' +p257594 +sg225240 +g27 +sg225234 +S'portfolio with folded introductory sheet (including title page) and six screenprints' +p257595 +sg225230 +S'Microcosms' +p257596 +sg225236 +S'published 1978' +p257597 +sa(dp257598 +g225232 +S'Brian Halsey' +p257599 +sg225240 +g27 +sg225234 +S'screenprint' +p257600 +sg225230 +S'Quatpad' +p257601 +sg225236 +S'1978' +p257602 +sa(dp257603 +g225232 +S'Brian Halsey' +p257604 +sg225240 +g27 +sg225234 +S'screenprint' +p257605 +sg225230 +S'Theon' +p257606 +sg225236 +S'1978' +p257607 +sa(dp257608 +g225232 +S'Brian Halsey' +p257609 +sg225240 +g27 +sg225234 +S'screenprint' +p257610 +sg225230 +S'Nucleod' +p257611 +sg225236 +S'1978' +p257612 +sa(dp257613 +g225232 +S'Brian Halsey' +p257614 +sg225240 +g27 +sg225234 +S'screenprint' +p257615 +sg225230 +S'Centros' +p257616 +sg225236 +S'1978' +p257617 +sa(dp257618 +g225232 +S'Brian Halsey' +p257619 +sg225240 +g27 +sg225234 +S'screenprint' +p257620 +sg225230 +S'Astron' +p257621 +sg225236 +S'1978' +p257622 +sa(dp257623 +g225230 +S'The Migration' +p257624 +sg225232 +S'Mark Alan Leithauser' +p257625 +sg225234 +S'etching and engraving [trial proof]' +p257626 +sg225236 +S'1976' +p257627 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b02.jpg' +p257628 +sg225240 +g27 +sa(dp257629 +g225230 +S'Saint Francis Consoled by the Musical Angel' +p257630 +sg225232 +S'Artist Information (' +p257631 +sg225234 +S'(artist after)' +p257632 +sg225236 +S'\n' +p257633 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c996.jpg' +p257634 +sg225240 +g27 +sa(dp257635 +g225230 +S'Chartres Cathedral' +p257636 +sg225232 +S'Charles Sheeler' +p257637 +sg225234 +S'charcoal' +p257638 +sg225236 +S'1929' +p257639 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a00009c9.jpg' +p257640 +sg225240 +g27 +sa(dp257641 +g225230 +S'Woodland River with a Boat' +p257642 +sg225232 +S'Agostino Carracci' +p257643 +sg225234 +S'pen and brown ink on laid paper' +p257644 +sg225236 +S'c. 1590' +p257645 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a0007539.jpg' +p257646 +sg225240 +g27 +sa(dp257647 +g225230 +S'The Sirens' +p257648 +sg225232 +S'Auguste Rodin' +p257649 +sg225234 +S'bronze' +p257650 +sg225236 +S'model before 1887, cast probably 1900/1920' +p257651 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00054/a000543d.jpg' +p257652 +sg225240 +g27 +sa(dp257653 +g225230 +S'The Brown Family' +p257654 +sg225232 +S'Eastman Johnson' +p257655 +sg225234 +S'oil on paper on canvas' +p257656 +sg225236 +S'1869' +p257657 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a000011f.jpg' +p257658 +sg225240 +g27 +sa(dp257659 +g225232 +S'Henri Matisse' +p257660 +sg225240 +g27 +sg225234 +S'oil on canvas' +p257661 +sg225230 +S'Palm Leaf, Tangier' +p257662 +sg225236 +S'1912' +p257663 +sa(dp257664 +g225230 +S'The Great Landscape with the Water Mill' +p257665 +sg225232 +S'Albrecht Altdorfer' +p257666 +sg225234 +S'etching with traces of light gray and yellow watercolor on laid paper' +p257667 +sg225236 +S'c. 1520' +p257668 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a00096c2.jpg' +p257669 +sg225240 +g27 +sa(dp257670 +g225232 +S'Giovanni Battista Betti' +p257671 +sg225240 +g27 +sg225234 +S'1 vol: ill: engraved title and 24 engraved plates' +p257672 +sg225230 +S"A'Dilettanti delle Bell'Arti" +p257673 +sg225236 +S'published 1785' +p257674 +sa(dp257675 +g225232 +S'Artist Information (' +p257676 +sg225240 +g27 +sg225234 +S'French, 1595 - 1676' +p257677 +sg225230 +S'Clovis ou la France chrestinne' +p257678 +sg225236 +S'(author)' +p257679 +sa(dp257680 +g225230 +S'The Fight in the Forest' +p257681 +sg225232 +S'Hans Burgkmair I' +p257682 +sg225234 +S'pen and black ink on laid paper' +p257683 +sg225236 +S'c. 1500/1503' +p257684 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022c8.jpg' +p257685 +sg225240 +g27 +sa(dp257686 +g225230 +S'Studies: Major Thomas Biddle and Thomas Wilcocks Sully' +p257687 +sg225232 +S'Thomas Sully' +p257688 +sg225234 +S'pen and brown ink over graphite on gray laid paper' +p257689 +sg225236 +S'1820' +p257690 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4c9.jpg' +p257691 +sg225240 +g27 +sa(dp257692 +g225230 +S'Adam Babcock' +p257693 +sg225232 +S'John Singleton Copley' +p257694 +sg225234 +S'oil on canvas' +p257695 +sg225236 +S'c. 1774' +p257696 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000064.jpg' +p257697 +sg225240 +g27 +sa(dp257698 +g225230 +S'New York Harbor with Pilot Boat "George Washington"' +p257699 +sg225232 +S'Thomas Chambers' +p257700 +sg225234 +S'oil on canvas' +p257701 +sg225236 +S'mid 19th century' +p257702 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000044.jpg' +p257703 +sg225240 +g27 +sa(dp257704 +g225232 +S'American 19th Century' +p257705 +sg225240 +g27 +sg225234 +S'overall: 74.3 x 66 cm (29 1/4 x 26 in.)' +p257706 +sg225230 +S'Man Named Hubbard Reading "Boston Atlas"' +p257707 +sg225236 +S'\noil on canvas' +p257708 +sa(dp257709 +g225230 +S'The Taj Mahal' +p257710 +sg225232 +S'Erastus Salisbury Field' +p257711 +sg225234 +S'oil on canvas' +p257712 +sg225236 +S'c. 1860/1880' +p257713 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000bb.jpg' +p257714 +sg225240 +g27 +sa(dp257715 +g225230 +S"Pharaoh's Army Marching" +p257716 +sg225232 +S'Erastus Salisbury Field' +p257717 +sg225234 +S'oil on canvas' +p257718 +sg225236 +S'c. 1865/1880' +p257719 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000bc.jpg' +p257720 +sg225240 +g27 +sa(dp257721 +g225230 +S'Leverett Pond' +p257722 +sg225232 +S'Erastus Salisbury Field' +p257723 +sg225234 +S'oil on canvas' +p257724 +sg225236 +S'c. 1860/1880' +p257725 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000bd.jpg' +p257726 +sg225240 +g27 +sa(dp257727 +g225230 +S'Man with a Tune Book: Possibly Mr. Cook' +p257728 +sg225232 +S'Erastus Salisbury Field' +p257729 +sg225234 +S'oil on canvas' +p257730 +sg225236 +S'c. 1838' +p257731 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000be.jpg' +p257732 +sg225240 +g27 +sa(dp257733 +g225232 +S'M.A. Goode' +p257734 +sg225240 +g27 +sg225234 +S'oil on canvas' +p257735 +sg225230 +S'Still Life' +p257736 +sg225236 +S'second half 19th century' +p257737 +sa(dp257738 +g225230 +S'Mr. Baylor' +p257739 +sg225232 +S'Joshua Johnson' +p257740 +sg225234 +S'oil on canvas' +p257741 +sg225236 +S'c. 1805' +p257742 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000122.jpg' +p257743 +sg225240 +g27 +sa(dp257744 +g225230 +S'Child with Straw Hat' +p257745 +sg225232 +S'William Matthew Prior' +p257746 +sg225234 +S'oil on canvas' +p257747 +sg225236 +S'c. 1846/1873' +p257748 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001d4.jpg' +p257749 +sg225240 +g27 +sa(dp257750 +g225230 +S'Little Girl Holding Apple' +p257751 +sg225232 +S'Sturtevant J. Hamblin' +p257752 +sg225234 +S'oil on canvas' +p257753 +sg225236 +S'c. 1840' +p257754 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000d7.jpg' +p257755 +sg225240 +g27 +sa(dp257756 +g225230 +S'Boy of the Beekman Family' +p257757 +sg225232 +S'American 18th Century' +p257758 +sg225234 +S'overall: 130.8 x 103.6 cm (51 1/2 x 40 13/16 in.)\r\nframed: 143.2 x 116.5 x 5.1 cm (56 3/8 x 45 7/8 x 2 in.)' +p257759 +sg225236 +S'\noil on canvas' +p257760 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00005/a0000572.jpg' +p257761 +sg225240 +g27 +sa(dp257762 +g225230 +S'Birds' +p257763 +sg225232 +S'American 19th Century' +p257764 +sg225234 +S'overall: 43.1 x 35.5 cm (16 15/16 x 14 in.)\r\nframed: 53 x 45.4 x 2.8 cm (20 7/8 x 17 7/8 x 1 1/8 in.)' +p257765 +sg225236 +S'\noil on canvas' +p257766 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000404.jpg' +p257767 +sg225240 +g27 +sa(dp257768 +g225230 +S'The Congdon Brothers' +p257769 +sg225232 +S'American 19th Century' +p257770 +sg225234 +S'overall: 38.3 x 64 cm (15 1/16 x 25 3/16 in.)\r\nframed: 48.7 x 74.3 x 5.4 cm (19 3/16 x 29 1/4 x 2 1/8 in.)' +p257771 +sg225236 +S'\noil on canvas' +p257772 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000418.jpg' +p257773 +sg225240 +g27 +sa(dp257774 +g225230 +S'Girl in Red with Flowers and a Distelfink' +p257775 +sg225232 +S'American 19th Century' +p257776 +sg225234 +S'overall: 93 x 108 cm (36 5/8 x 42 1/2 in.)' +p257777 +sg225236 +S'\noil on wood (fireboard)' +p257778 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000419.jpg' +p257779 +sg225240 +g27 +sa(dp257780 +g225230 +S'Lady Wearing Spectacles' +p257781 +sg225232 +S'American 19th Century' +p257782 +sg225234 +S'overall: 76.9 x 64 cm (30 1/4 x 25 3/16 in.)\r\nframed: 94.1 x 81.8 x 5.1 cm (37 1/16 x 32 3/16 x 2 in.)' +p257783 +sg225236 +S'\noil on canvas' +p257784 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000427.jpg' +p257785 +sg225240 +g27 +sa(dp257786 +g225230 +S'Catherine A. May' +p257787 +sg225232 +S'Ammi Phillips' +p257788 +sg225234 +S'oil on canvas' +p257789 +sg225236 +S'c. 1830' +p257790 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001be.jpg' +p257791 +sg225240 +g27 +sa(dp257792 +g225230 +S'Eliza R. Read' +p257793 +sg225232 +S'Royall Brewster Smith' +p257794 +sg225234 +S'oil on canvas' +p257795 +sg225236 +S'1833' +p257796 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a000021c.jpg' +p257797 +sg225240 +g27 +sa(dp257798 +g225230 +S'John G. Read' +p257799 +sg225232 +S'Royall Brewster Smith' +p257800 +sg225234 +S'oil on canvas' +p257801 +sg225236 +S'1833' +p257802 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a000021d.jpg' +p257803 +sg225240 +g27 +sa(dp257804 +g225230 +S'Sisters in Blue' +p257805 +sg225232 +S'Sturtevant J. Hamblin' +p257806 +sg225234 +S'oil on canvas' +p257807 +sg225236 +S'c. 1840' +p257808 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000d8.jpg' +p257809 +sg225240 +g27 +sa(dp257810 +g225230 +S'Susanna Truax' +p257811 +sg225232 +S'American 18th Century' +p257812 +sg225234 +S'overall: 92 x 73 cm (36 1/4 x 28 3/4 in.)\r\nframed: 102.6 x 80 x 4.8 cm (40 3/8 x 31 1/2 x 1 7/8 in.)' +p257813 +sg225236 +S'\noil on canvas' +p257814 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000444.jpg' +p257815 +sg225240 +g27 +sa(dp257816 +g225230 +S'View of Concord' +p257817 +sg225232 +S'American 19th Century' +p257818 +sg225234 +S'overall: 66.1 x 99.4 cm (26 x 39 1/8 in.)\r\nframed: 77.5 x 111.1 x 3.8 cm (30 1/2 x 43 3/4 x 1 1/2 in.)' +p257819 +sg225236 +S'\noil on canvas' +p257820 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000445.jpg' +p257821 +sg225240 +g27 +sa(dp257822 +g225230 +S'Landscape with Seated Figure and Dog' +p257823 +sg225232 +S'Abraham Bloemaert' +p257824 +sg225234 +S'black chalk and pen and brown ink with brown wash on brown paper' +p257825 +sg225236 +S'unknown date\n' +p257826 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f86.jpg' +p257827 +sg225240 +g27 +sa(dp257828 +g225230 +S'Travellers along the Crest of a Hill' +p257829 +sg225232 +S'Pieter Molijn' +p257830 +sg225234 +S'black chalk with gray wash on laid paper' +p257831 +sg225236 +S'1652' +p257832 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ea7.jpg' +p257833 +sg225240 +g27 +sa(dp257834 +g225232 +S'Artist Information (' +p257835 +sg225240 +g27 +sg225234 +S'(author)' +p257836 +sg225230 +S'De Re Militari' +p257837 +sg225236 +S'\n' +p257838 +sa(dp257839 +g225232 +S'Artist Information (' +p257840 +sg225240 +g27 +sg225234 +S'French, born 1795 or 1798' +p257841 +sg225230 +S'Les petits francais' +p257842 +sg225236 +S'(author)' +p257843 +sa(dp257844 +g225230 +S'Train de plaisir' +p257845 +sg225232 +S'Artist Information (' +p257846 +sg225234 +S'(artist after)' +p257847 +sg225236 +S'\n' +p257848 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009572.jpg' +p257849 +sg225240 +g27 +sa(dp257850 +g225232 +S'Artist Information (' +p257851 +sg225240 +g27 +sg225234 +S'French, 1808 - 1879' +p257852 +sg225230 +S'H. Daumier, tirage unique de trente-six bois' +p257853 +sg225236 +S'(artist after)' +p257854 +sa(dp257855 +g225230 +S"Les Amateurs de tableaux a l'hotel Bouillon" +p257856 +sg225232 +S'Artist Information (' +p257857 +sg225234 +S'(artist after)' +p257858 +sg225236 +S'\n' +p257859 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000956f.jpg' +p257860 +sg225240 +g27 +sa(dp257861 +g225230 +S'Le Boulevard des Italiens' +p257862 +sg225232 +S'Artist Information (' +p257863 +sg225234 +S'(artist after)' +p257864 +sg225236 +S'\n' +p257865 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009571.jpg' +p257866 +sg225240 +g27 +sa(dp257867 +g225230 +S'Boulevard du Temple a minuit' +p257868 +sg225232 +S'Artist Information (' +p257869 +sg225234 +S'(artist after)' +p257870 +sg225236 +S'\n' +p257871 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000956e.jpg' +p257872 +sg225240 +g27 +sa(dp257873 +g225230 +S'Le Couplet final' +p257874 +sg225232 +S'Artist Information (' +p257875 +sg225234 +S'(artist after)' +p257876 +sg225236 +S'\n' +p257877 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000956d.jpg' +p257878 +sg225240 +g27 +sa(dp257879 +g225230 +S"Un Bureau d'attente d'omnibus" +p257880 +sg225232 +S'Artist Information (' +p257881 +sg225234 +S'(artist after)' +p257882 +sg225236 +S'\n' +p257883 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009569.jpg' +p257884 +sg225240 +g27 +sa(dp257885 +g225230 +S'Photographes et photographies' +p257886 +sg225232 +S'Artist Information (' +p257887 +sg225234 +S'(artist after)' +p257888 +sg225236 +S'\n' +p257889 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009574.jpg' +p257890 +sg225240 +g27 +sa(dp257891 +g225230 +S'Peintres et bourgeois' +p257892 +sg225232 +S'Artist Information (' +p257893 +sg225234 +S'(artist after)' +p257894 +sg225236 +S'\n' +p257895 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009573.jpg' +p257896 +sg225240 +g27 +sa(dp257897 +g225230 +S'Les Voyageurs du dimanche' +p257898 +sg225232 +S'Artist Information (' +p257899 +sg225234 +S'(artist after)' +p257900 +sg225236 +S'\n' +p257901 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009570.jpg' +p257902 +sg225240 +g27 +sa(dp257903 +g225230 +S"Une Salle de l'hotel Drouot un jour d'exposition" +p257904 +sg225232 +S'Artist Information (' +p257905 +sg225234 +S'(artist after)' +p257906 +sg225236 +S'\n' +p257907 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000956b.jpg' +p257908 +sg225240 +g27 +sa(dp257909 +g225230 +S'Un Guichet de th\xc3\xa9\xc3\xa2tre' +p257910 +sg225232 +S'Artist Information (' +p257911 +sg225234 +S'(artist after)' +p257912 +sg225236 +S'\n' +p257913 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000956c.jpg' +p257914 +sg225240 +g27 +sa(dp257915 +g225230 +S'Complet!!!' +p257916 +sg225232 +S'Artist Information (' +p257917 +sg225234 +S'(artist after)' +p257918 +sg225236 +S'\n' +p257919 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000956a.jpg' +p257920 +sg225240 +g27 +sa(dp257921 +g225230 +S'Trop tard!' +p257922 +sg225232 +S'Artist Information (' +p257923 +sg225234 +S'(artist after)' +p257924 +sg225236 +S'\n' +p257925 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009578.jpg' +p257926 +sg225240 +g27 +sa(dp257927 +g225230 +S'Physiologie du Buveur: ls quatre ages' +p257928 +sg225232 +S'Artist Information (' +p257929 +sg225234 +S'(artist after)' +p257930 +sg225236 +S'\n' +p257931 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009577.jpg' +p257932 +sg225240 +g27 +sa(dp257933 +g225230 +S'Les Chanteurs de salon' +p257934 +sg225232 +S'Artist Information (' +p257935 +sg225234 +S'(artist after)' +p257936 +sg225236 +S'\n' +p257937 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009580.jpg' +p257938 +sg225240 +g27 +sa(dp257939 +g225230 +S'Les Chanteurs de rue' +p257940 +sg225232 +S'Artist Information (' +p257941 +sg225234 +S'(artist after)' +p257942 +sg225236 +S'\n' +p257943 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000957e.jpg' +p257944 +sg225240 +g27 +sa(dp257945 +g225230 +S"L'Hotel des ventes: le Commissaire-priseur" +p257946 +sg225232 +S'Artist Information (' +p257947 +sg225234 +S'(artist after)' +p257948 +sg225236 +S'\n' +p257949 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009582.jpg' +p257950 +sg225240 +g27 +sa(dp257951 +g225230 +S"L'Hotel des Commissaires-priseurs: L'Expert" +p257952 +sg225232 +S'Artist Information (' +p257953 +sg225234 +S'(artist after)' +p257954 +sg225236 +S'\n' +p257955 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009581.jpg' +p257956 +sg225240 +g27 +sa(dp257957 +g225230 +S"L'Hotel des ventes: L'Amateur" +p257958 +sg225232 +S'Artist Information (' +p257959 +sg225234 +S'(artist after)' +p257960 +sg225236 +S'\n' +p257961 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000957f.jpg' +p257962 +sg225240 +g27 +sa(dp257963 +g225230 +S"L'Hotel des Commissaires-priseurs: Les Marchands" +p257964 +sg225232 +S'Artist Information (' +p257965 +sg225234 +S'(artist after)' +p257966 +sg225236 +S'\n' +p257967 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000957d.jpg' +p257968 +sg225240 +g27 +sa(dp257969 +g225230 +S"L'Hotel des Commissaires-priseurs: Le Crieur public" +p257970 +sg225232 +S'Artist Information (' +p257971 +sg225234 +S'(artist after)' +p257972 +sg225236 +S'\n' +p257973 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009579.jpg' +p257974 +sg225240 +g27 +sa(dp257975 +g225230 +S"Interieur d'un omnibus" +p257976 +sg225232 +S'Artist Information (' +p257977 +sg225234 +S'(artist after)' +p257978 +sg225236 +S'\n' +p257979 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000957c.jpg' +p257980 +sg225240 +g27 +sa(dp257981 +g225230 +S"Exposition universelle: L'Inspection des photographies aux tourniquets" +p257982 +sg225232 +S'Artist Information (' +p257983 +sg225234 +S'(artist after)' +p257984 +sg225236 +S'\n' +p257985 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000957b.jpg' +p257986 +sg225240 +g27 +sa(dp257987 +g225230 +S'Exposition universelle: La Fabricant de chapeaux de feutre' +p257988 +sg225232 +S'Artist Information (' +p257989 +sg225234 +S'(artist after)' +p257990 +sg225236 +S'\n' +p257991 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000957a.jpg' +p257992 +sg225240 +g27 +sa(dp257993 +g225230 +S'Exposition universelle: Un Vrai cicerone' +p257994 +sg225232 +S'Artist Information (' +p257995 +sg225234 +S'(artist after)' +p257996 +sg225236 +S'\n' +p257997 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009583.jpg' +p257998 +sg225240 +g27 +sa(dp257999 +g225230 +S"Exposition universelle: L'Etranger trouve toutes les facilites desirables..." +p258000 +sg225232 +S'Artist Information (' +p258001 +sg225234 +S'(artist after)' +p258002 +sg225236 +S'\n' +p258003 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a9e.jpg' +p258004 +sg225240 +g27 +sa(dp258005 +g225230 +S'Exposition universelle: Quel sont les plus Chinois?' +p258006 +sg225232 +S'Artist Information (' +p258007 +sg225234 +S'(artist after)' +p258008 +sg225236 +S'\n' +p258009 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009aa0.jpg' +p258010 +sg225240 +g27 +sa(dp258011 +g225230 +S'Exposition universelle: Section egyptienne' +p258012 +sg225232 +S'Artist Information (' +p258013 +sg225234 +S'(artist after)' +p258014 +sg225236 +S'\n' +p258015 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a9f.jpg' +p258016 +sg225240 +g27 +sa(dp258017 +g225230 +S"Bal de l'Opera: Tu t'amuses trop!" +p258018 +sg225232 +S'Artist Information (' +p258019 +sg225234 +S'(artist after)' +p258020 +sg225236 +S'\n' +p258021 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a9a.jpg' +p258022 +sg225240 +g27 +sa(dp258023 +g225230 +S"La Mi-Careme - Au bal de l'Opera" +p258024 +sg225232 +S'Artist Information (' +p258025 +sg225234 +S'(artist after)' +p258026 +sg225236 +S'\n' +p258027 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a9c.jpg' +p258028 +sg225240 +g27 +sa(dp258029 +g225230 +S'Exposition de peinture de 1868 - Le Dernier coup de pinceau' +p258030 +sg225232 +S'Artist Information (' +p258031 +sg225234 +S'(artist after)' +p258032 +sg225236 +S'\n' +p258033 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a98.jpg' +p258034 +sg225240 +g27 +sa(dp258035 +g225230 +S'Exposition des Beaux-Arts - Dans le salon carre - Un Instant de repos' +p258036 +sg225232 +S'Artist Information (' +p258037 +sg225234 +S'(artist after)' +p258038 +sg225236 +S'\n' +p258039 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a99.jpg' +p258040 +sg225240 +g27 +sa(dp258041 +g225230 +S"Au buffet de l'Exposition des Beaux-Arts" +p258042 +sg225232 +S'Artist Information (' +p258043 +sg225234 +S'(artist after)' +p258044 +sg225236 +S'\n' +p258045 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a9d.jpg' +p258046 +sg225240 +g27 +sa(dp258047 +g225230 +S"Un Realiste trouve toujours un plus realiste qui l'admire" +p258048 +sg225232 +S'Artist Information (' +p258049 +sg225234 +S'(artist after)' +p258050 +sg225236 +S'\n' +p258051 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a9b.jpg' +p258052 +sg225240 +g27 +sa(dp258053 +g225230 +S"Les Fauteuils d'orchestre" +p258054 +sg225232 +S'Artist Information (' +p258055 +sg225234 +S'(artist after)' +p258056 +sg225236 +S'\n' +p258057 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a96.jpg' +p258058 +sg225240 +g27 +sa(dp258059 +g225230 +S"Les Amateurs d'estampes" +p258060 +sg225232 +S'Artist Information (' +p258061 +sg225234 +S'(artist after)' +p258062 +sg225236 +S'\n' +p258063 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a95.jpg' +p258064 +sg225240 +g27 +sa(dp258065 +g225230 +S'Landscape with Fortress and River' +p258066 +sg225232 +S'Artist Information (' +p258067 +sg225234 +S'Italian, 1591 - 1666' +p258068 +sg225236 +S'(artist after)' +p258069 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074b8.jpg' +p258070 +sg225240 +g27 +sa(dp258071 +g225230 +S'Allegorical Frame with a Bat' +p258072 +sg225232 +S'Gabriel de Saint-Aubin' +p258073 +sg225234 +S', c. 1769' +p258074 +sg225236 +S'\n' +p258075 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005fa3.jpg' +p258076 +sg225240 +g27 +sa(dp258077 +g225230 +S'Allegorical Frame with a Genius and a Veiled Woman Writing' +p258078 +sg225232 +S'Gabriel de Saint-Aubin' +p258079 +sg225234 +S', c. 1769' +p258080 +sg225236 +S'\n' +p258081 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005fa4.jpg' +p258082 +sg225240 +g27 +sa(dp258083 +g225230 +S'A Man and His Dog Resting by a Great Tree' +p258084 +sg225232 +S'Artist Information (' +p258085 +sg225234 +S'(artist after)' +p258086 +sg225236 +S'\n' +p258087 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0b1.jpg' +p258088 +sg225240 +g27 +sa(dp258089 +g225232 +S'Willi Baumeister' +p258090 +sg225240 +g27 +sg225234 +S'lithograph' +p258091 +sg225230 +S'Running Figure' +p258092 +sg225236 +S'unknown date\n' +p258093 +sa(dp258094 +g225232 +S'Theophile Chauvel' +p258095 +sg225240 +g27 +sg225234 +S'etching on imitation vellum' +p258096 +sg225230 +S'Stratford Church' +p258097 +sg225236 +S'unknown date\n' +p258098 +sa(dp258099 +g225232 +S'Henri-Gabriel Ibels' +p258100 +sg225240 +g27 +sg225234 +S'color lithograph' +p258101 +sg225230 +S'Pierrefort' +p258102 +sg225236 +S'unknown date\n' +p258103 +sa(dp258104 +g225232 +S'Louis Auguste Mathieu Legrand' +p258105 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p258106 +sg225230 +S'Self-Portrait' +p258107 +sg225236 +S'1896' +p258108 +sa(dp258109 +g225230 +S"Belshazzar's Feast" +p258110 +sg225232 +S'John Martin' +p258111 +sg225234 +S'hand-colored mixed media intaglio' +p258112 +sg225236 +S'1826' +p258113 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00010/a0001070.jpg' +p258114 +sg225240 +g27 +sa(dp258115 +g225232 +S'Max Pechstein' +p258116 +sg225240 +g27 +sg225234 +S'woodcut on wove paper' +p258117 +sg225230 +S'Figure Praying' +p258118 +sg225236 +S'1917' +p258119 +sa(dp258120 +g225230 +S'Peace in the Streets' +p258121 +sg225232 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p258122 +sg225234 +S'lithograph' +p258123 +sg225236 +S'unknown date\n' +p258124 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00069/a000693e.jpg' +p258125 +sg225240 +g27 +sa(dp258126 +g225230 +S'Heads of a Man and a Woman' +p258127 +sg225232 +S'Adolph Menzel' +p258128 +sg225234 +S'graphite with stump' +p258129 +sg225236 +S'1899' +p258130 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d3b.jpg' +p258131 +sg225240 +g27 +sa(dp258132 +g225230 +S'The Stork (Ciconia Alba)' +p258133 +sg225232 +S'Eleazar Albin' +p258134 +sg225234 +S'hand-colored etching' +p258135 +sg225236 +S'published 1731/1738' +p258136 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076d0.jpg' +p258137 +sg225240 +g27 +sa(dp258138 +g225230 +S'The White Stork' +p258139 +sg225232 +S'Jan Christiaan Sepp' +p258140 +sg225234 +S'hand-colored etching and engraving' +p258141 +sg225236 +S'unknown date\n' +p258142 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d683.jpg' +p258143 +sg225240 +g27 +sa(dp258144 +g225230 +S'Christ' +p258145 +sg225232 +S'Odilon Redon' +p258146 +sg225234 +S'lithograph' +p258147 +sg225236 +S'1887' +p258148 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c83.jpg' +p258149 +sg225240 +g27 +sa(dp258150 +g225232 +S'M.C. Escher' +p258151 +sg225240 +g27 +sg225234 +S'lithograph' +p258152 +sg225230 +S'Cattolica of Stilo, Calabria' +p258153 +sg225236 +S'1930' +p258154 +sa(dp258155 +g225232 +S'M.C. Escher' +p258156 +sg225240 +g27 +sg225234 +S'lithograph' +p258157 +sg225230 +S'Fiumara, Calabria' +p258158 +sg225236 +S'1930' +p258159 +sa(dp258160 +g225232 +S'M.C. Escher' +p258161 +sg225240 +g27 +sg225234 +S'woodcut on very thin Japan paper' +p258162 +sg225230 +S'Morano, Calabria' +p258163 +sg225236 +S'1930' +p258164 +sa(dp258165 +g225232 +S'M.C. Escher' +p258166 +sg225240 +g27 +sg225234 +S'lithograph' +p258167 +sg225230 +S'Pentedattilo, Calabria' +p258168 +sg225236 +S'1930' +p258169 +sa(dp258170 +g225232 +S'M.C. Escher' +p258171 +sg225240 +g27 +sg225234 +S'lithograph' +p258172 +sg225230 +S'Scilla, Calabria' +p258173 +sg225236 +S'1931' +p258174 +sa(dp258175 +g225232 +S'M.C. Escher' +p258176 +sg225240 +g27 +sg225234 +S'lithograph' +p258177 +sg225230 +S'Santa Severina, Calabria' +p258178 +sg225236 +S'1931' +p258179 +sa(dp258180 +g225232 +S'M.C. Escher' +p258181 +sg225240 +g27 +sg225234 +S'woodcut' +p258182 +sg225230 +S'Rossano, Calabria' +p258183 +sg225236 +S'1931' +p258184 +sa(dp258185 +g225230 +S'Santa Francesca Romana' +p258186 +sg225232 +S'M.C. Escher' +p258187 +sg225234 +S'woodcut' +p258188 +sg225236 +S'1934' +p258189 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b57.jpg' +p258190 +sg225240 +g27 +sa(dp258191 +g225230 +S'Church Domes' +p258192 +sg225232 +S'M.C. Escher' +p258193 +sg225234 +S'woodcut' +p258194 +sg225236 +S'1934' +p258195 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a00002b6.jpg' +p258196 +sg225240 +g27 +sa(dp258197 +g225232 +S'M.C. Escher' +p258198 +sg225240 +g27 +sg225234 +S'woodcut' +p258199 +sg225230 +S'The "Dioscuro" Pollux' +p258200 +sg225236 +S'1934' +p258201 +sa(dp258202 +g225232 +S'M.C. Escher' +p258203 +sg225240 +g27 +sg225234 +S'woodcut' +p258204 +sg225230 +S'Basilica of Constantine' +p258205 +sg225236 +S'1934' +p258206 +sa(dp258207 +g225232 +S'M.C. Escher' +p258208 +sg225240 +g27 +sg225234 +S'woodcut' +p258209 +sg225230 +S'San Giorgio in Vellabro' +p258210 +sg225236 +S'1934' +p258211 +sa(dp258212 +g225232 +S'M.C. Escher' +p258213 +sg225240 +g27 +sg225234 +S'woodcut' +p258214 +sg225230 +S"Castel Sant'Angelo" +p258215 +sg225236 +S'1934' +p258216 +sa(dp258217 +g225232 +S'M.C. Escher' +p258218 +sg225240 +g27 +sg225234 +S'lithograph' +p258219 +sg225230 +S'Genazzano, Abruzzi' +p258220 +sg225236 +S'1929' +p258221 +sa(dp258222 +g225232 +S'M.C. Escher' +p258223 +sg225240 +g27 +sg225234 +S'lithograph' +p258224 +sg225230 +S'Barbarano, Cimino' +p258225 +sg225236 +S'1929' +p258226 +sa(dp258227 +g225232 +S'M.C. Escher' +p258228 +sg225240 +g27 +sg225234 +S'lithograph' +p258229 +sg225230 +S'San Michele dei Frisoni, Rome' +p258230 +sg225236 +S'1932' +p258231 +sa(dp258232 +g225232 +S'M.C. Escher' +p258233 +sg225240 +g27 +sg225234 +S'wood engraving' +p258234 +sg225230 +S'Temple of Segesta, Sicily' +p258235 +sg225236 +S'1932' +p258236 +sa(dp258237 +g225232 +S'M.C. Escher' +p258238 +sg225240 +g27 +sg225234 +S'lithograph' +p258239 +sg225230 +S'Caltavuturo in the Madonie Mountains, Sicily' +p258240 +sg225236 +S'1933' +p258241 +sa(dp258242 +g225230 +S'New Lava near Nuziata' +p258243 +sg225232 +S'M.C. Escher' +p258244 +sg225234 +S'lithograph' +p258245 +sg225236 +S'1933' +p258246 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b56.jpg' +p258247 +sg225240 +g27 +sa(dp258248 +g225230 +S'Old Olive Tree, Corsica' +p258249 +sg225232 +S'M.C. Escher' +p258250 +sg225234 +S'wood engraving' +p258251 +sg225236 +S'1934' +p258252 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a00002b3.jpg' +p258253 +sg225240 +g27 +sa(dp258254 +g225232 +S'M.C. Escher' +p258255 +sg225240 +g27 +sg225234 +S'lithograph' +p258256 +sg225230 +S'House in the Lava near Nunziata, Sicily' +p258257 +sg225236 +S'1936' +p258258 +sa(dp258259 +g225232 +S'M.C. Escher' +p258260 +sg225240 +g27 +sg225234 +S'wood engraving' +p258261 +sg225230 +S'Cantania, Sicily' +p258262 +sg225236 +S'1936' +p258263 +sa(dp258264 +g225232 +S'M.C. Escher' +p258265 +sg225240 +g27 +sg225234 +S'woodcut' +p258266 +sg225230 +S'Study for part of "Snakes"' +p258267 +sg225236 +S'probably 1969' +p258268 +sa(dp258269 +g225232 +S'M.C. Escher' +p258270 +sg225240 +g27 +sg225234 +S'wooduct on medium beige wove paper' +p258271 +sg225230 +S'Illustration for "XIIme Congres Postal Universel"' +p258272 +sg225236 +S'1947' +p258273 +sa(dp258274 +g225230 +S'Wild West' +p258275 +sg225232 +S'M.C. Escher' +p258276 +sg225234 +S'woodcut' +p258277 +sg225236 +S'1920' +p258278 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a00002b4.jpg' +p258279 +sg225240 +S"Escher's early interest in the sharp contrast between black and white is apparent in this woodcut. It also presents ideas that he fully developed later in his career, such as the interlocking and patternlike forms seen in the audience that is depicted here.\n The woodcut is a relief process. First a drawing is made on a block of wood that has been cut along the grain. A knife and chisel are then used to remove the wood on either side of the drawn lines, leaving the print surface raised above the areas to remain blank. In his early period Escher also frequently used linoleum cuts as a print medium, in which the same technique is employed as in a woodcut. \n " +p258280 +sa(dp258281 +g225230 +S'Knots' +p258282 +sg225232 +S'M.C. Escher' +p258283 +sg225234 +S'woodcut in black' +p258284 +sg225236 +S'1965' +p258285 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b39.jpg' +p258286 +sg225240 +g27 +sa(dp258287 +g225232 +S'M.C. Escher' +p258288 +sg225240 +g27 +sg225234 +S'linoleum cut' +p258289 +sg225230 +S'Fiet van Stolk-Van der Does de Willebois' +p258290 +sg225236 +S'1918' +p258291 +sa(dp258292 +g225232 +S'M.C. Escher' +p258293 +sg225240 +g27 +sg225234 +S'woodcut on Japan paper' +p258294 +sg225230 +S'Illustration for "The Terrible Adventures of Scholastica"' +p258295 +sg225236 +S'1932' +p258296 +sa(dp258297 +g225232 +S'M.C. Escher' +p258298 +sg225240 +g27 +sg225234 +S'woodcut' +p258299 +sg225230 +S'Birth annoucement card of Jan Escher' +p258300 +sg225236 +S'1938' +p258301 +sa(dp258302 +g225230 +S'Synthesis' +p258303 +sg225232 +S'M.C. Escher' +p258304 +sg225234 +S'lithograph' +p258305 +sg225236 +S'1947' +p258306 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a00002b5.jpg' +p258307 +sg225240 +g27 +sa(dp258308 +g225232 +S'M.C. Escher' +p258309 +sg225240 +g27 +sg225234 +S'wood engraving in red, blue and black, printed from two blocks' +p258310 +sg225230 +S'Whirlpools' +p258311 +sg225236 +S'1957' +p258312 +sa(dp258313 +g225232 +S'M.C. Escher' +p258314 +sg225240 +g27 +sg225234 +S'woodcut in black' +p258315 +sg225230 +S'Sphere Surface with Fish' +p258316 +sg225236 +S'1958' +p258317 +sa(dp258318 +g225232 +S'M.C. Escher' +p258319 +sg225240 +g27 +sg225234 +S'graphite on tracing paper' +p258320 +sg225230 +S'Sphere Surface with Longitudinals and Latitudinals' +p258321 +sg225236 +S'1958' +p258322 +sa(dp258323 +g225232 +S'Artist Information (' +p258324 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'My Marilyn' +p258325 +sg225236 +S'(printer)' +p258326 +sa(dp258327 +g225232 +S'Artist Information (' +p258328 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Swingeing London 67 - etching' +p258329 +sg225236 +S'(printer)' +p258330 +sa(dp258331 +g225232 +S'Artist Information (' +p258332 +sg225240 +g27 +sg225234 +g27 +sg225230 +S"I'm dreaming of a white Christmas" +p258333 +sg225236 +S'(printer)' +p258334 +sa(dp258335 +g225232 +S'Robert Indiana' +p258336 +sg225240 +g27 +sg225234 +S'color screenprint on wove Arches paper' +p258337 +sg225230 +S'Heptagon' +p258338 +sg225236 +S'1975' +p258339 +sa(dp258340 +g225232 +S'Robert Indiana' +p258341 +sg225240 +g27 +sg225234 +S'color screenprint on wove Arches paper' +p258342 +sg225230 +S'Hexagon' +p258343 +sg225236 +S'1975' +p258344 +sa(dp258345 +g225232 +S'Robert Indiana' +p258346 +sg225240 +g27 +sg225234 +S'color screenprint on wove Arches paper' +p258347 +sg225230 +S'Nonagon' +p258348 +sg225236 +S'1975' +p258349 +sa(dp258350 +g225232 +S'Robert Indiana' +p258351 +sg225240 +g27 +sg225234 +S'color screenprint on wove Arches paper' +p258352 +sg225230 +S'Octagon' +p258353 +sg225236 +S'1975' +p258354 +sa(dp258355 +g225232 +S'Robert Indiana' +p258356 +sg225240 +g27 +sg225234 +S'color screenprint on wove Arches paper' +p258357 +sg225230 +S'Pentagon' +p258358 +sg225236 +S'1975' +p258359 +sa(dp258360 +g225232 +S'Robert Indiana' +p258361 +sg225240 +g27 +sg225234 +S'color screenprint on wove Arches paper' +p258362 +sg225230 +S'Square' +p258363 +sg225236 +S'1975' +p258364 +sa(dp258365 +g225232 +S'Robert Indiana' +p258366 +sg225240 +g27 +sg225234 +S'color screenprint on wove Arches paper' +p258367 +sg225230 +S'Triangle' +p258368 +sg225236 +S'1975' +p258369 +sa(dp258370 +g225232 +S'Jasper Johns' +p258371 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in black and medium gray on German Copperplate paper' +p258372 +sg225230 +S'Alphabet' +p258373 +sg225236 +S'1969' +p258374 +sa(dp258375 +g225232 +S'Jasper Johns' +p258376 +sg225240 +g27 +sg225234 +S'4-color lithograph (aluminum and stone) with embossing' +p258377 +sg225230 +S'No' +p258378 +sg225236 +S'1968/1969' +p258379 +sa(dp258380 +g225232 +S'Artist Information (' +p258381 +sg225240 +g27 +sg225234 +S'American, born 1931' +p258382 +sg225230 +S'Bastos' +p258383 +sg225236 +S'(printer)' +p258384 +sa(dp258385 +g225232 +S'Artist Information (' +p258386 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Booster' +p258387 +sg225236 +S'(publisher)' +p258388 +sa(dp258389 +g225232 +S'Thomas Bewick' +p258390 +sg225240 +g27 +sg225234 +S'1 vol: ill: wood engravings (134 pages)' +p258391 +sg225230 +S'Figures of British Land Birds (volume I)' +p258392 +sg225236 +S'published 1800' +p258393 +sa(dp258394 +g225230 +S'Landscape with Ruins' +p258395 +sg225232 +S'Italian 18th Century' +p258396 +sg225234 +S'overall: 18.5 x 26 cm (7 5/16 x 10 1/4 in.)' +p258397 +sg225236 +S'\npen and brown ink with brown wash on laid paper' +p258398 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d88.jpg' +p258399 +sg225240 +g27 +sa(dp258400 +g225230 +S'Seated Turk' +p258401 +sg225232 +S'Nicolas-Toussaint Charlet' +p258402 +sg225234 +S'lithograph' +p258403 +sg225236 +S'1825' +p258404 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a000918c.jpg' +p258405 +sg225240 +g27 +sa(dp258406 +g225230 +S'Le D\xc3\xa9part pour le bal' +p258407 +sg225232 +S'Honor\xc3\xa9 Daumier' +p258408 +sg225234 +S'lithograph' +p258409 +sg225236 +S'1847' +p258410 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093af.jpg' +p258411 +sg225240 +g27 +sa(dp258412 +g225230 +S'Head of a Young Woman' +p258413 +sg225232 +S'Artist Information (' +p258414 +sg225234 +S'(artist after)' +p258415 +sg225236 +S'\n' +p258416 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d0f.jpg' +p258417 +sg225240 +g27 +sa(dp258418 +g225230 +S'Landscape with Men Fishing by Moonlight' +p258419 +sg225232 +S'Artist Information (' +p258420 +sg225234 +S'(artist after)' +p258421 +sg225236 +S'\n' +p258422 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d02b.jpg' +p258423 +sg225240 +g27 +sa(dp258424 +g225230 +S"Castel Sant'Angelo, Rome" +p258425 +sg225232 +S'Stefano Della Bella' +p258426 +sg225234 +S'etching' +p258427 +sg225236 +S'c. 1634' +p258428 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9cc.jpg' +p258429 +sg225240 +g27 +sa(dp258430 +g225230 +S'Death of Horseback' +p258431 +sg225232 +S'Stefano Della Bella' +p258432 +sg225234 +S'etching and engraving' +p258433 +sg225236 +S'probably 1648' +p258434 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8e2.jpg' +p258435 +sg225240 +g27 +sa(dp258436 +g225230 +S'Death Carrying a Child to the Right' +p258437 +sg225232 +S'Stefano Della Bella' +p258438 +sg225234 +S'etching and engraving' +p258439 +sg225236 +S'probably 1648' +p258440 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8e5.jpg' +p258441 +sg225240 +g27 +sa(dp258442 +g225230 +S'Death Carrying a Child to the Left' +p258443 +sg225232 +S'Stefano Della Bella' +p258444 +sg225234 +S'etching and engraving' +p258445 +sg225236 +S'probably 1648' +p258446 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8e1.jpg' +p258447 +sg225240 +g27 +sa(dp258448 +g225230 +S'Death Carrying a Woman' +p258449 +sg225232 +S'Stefano Della Bella' +p258450 +sg225234 +S'etching and engraving' +p258451 +sg225236 +S'probably 1648' +p258452 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8e4.jpg' +p258453 +sg225240 +g27 +sa(dp258454 +g225230 +S'Death with an Old Man' +p258455 +sg225232 +S'Stefano Della Bella' +p258456 +sg225234 +S'etching and engraving' +p258457 +sg225236 +S'probably 1648' +p258458 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8e3.jpg' +p258459 +sg225240 +g27 +sa(dp258460 +g225230 +S'Decorative Panel with Mythological Figures' +p258461 +sg225232 +S'Angelo Falconetto' +p258462 +sg225234 +S'etching and engraving on blue paper' +p258463 +sg225236 +S'1555/1565' +p258464 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbb6.jpg' +p258465 +sg225240 +g27 +sa(dp258466 +g225230 +S'La bonne petite soeur' +p258467 +sg225232 +S'Philippe Jacques de Loutherbourg II' +p258468 +sg225234 +S'etching' +p258469 +sg225236 +S'unknown date\n' +p258470 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f09.jpg' +p258471 +sg225240 +g27 +sa(dp258472 +g225230 +S'Saint James the Greater' +p258473 +sg225232 +S'Parmigianino' +p258474 +sg225234 +S'etching' +p258475 +sg225236 +S'unknown date\n' +p258476 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c774.jpg' +p258477 +sg225240 +g27 +sa(dp258478 +g225230 +S"Rovine d' antichi Edifizj" +p258479 +sg225232 +S'Giovanni Battista Piranesi' +p258480 +sg225234 +S'etching, engraving, drypoint, scratching' +p258481 +sg225236 +S'published 1743/1744' +p258482 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb8e.jpg' +p258483 +sg225240 +g27 +sa(dp258484 +g225230 +S'Classical Ruins in a Landscape: frontispiece' +p258485 +sg225232 +S'Artist Information (' +p258486 +sg225234 +S'(artist)' +p258487 +sg225236 +S'\n' +p258488 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb3b.jpg' +p258489 +sg225240 +g27 +sa(dp258490 +g225232 +S'Jacques Villon' +p258491 +sg225240 +g27 +sg225234 +S'etching, aquatint, and roulette in green and pink on japan paper' +p258492 +sg225230 +S'The Parisian (Small Plate) (La Parisienne)' +p258493 +sg225236 +S'1904' +p258494 +sa(dp258495 +g225232 +S'Elena Liessner-Blomberg' +p258496 +sg225240 +g27 +sg225234 +S'graphite' +p258497 +sg225230 +S'Peasant Head' +p258498 +sg225236 +S'1922' +p258499 +sa(dp258500 +g225232 +S'Elena Liessner-Blomberg' +p258501 +sg225240 +g27 +sg225234 +S'graphite' +p258502 +sg225230 +S'Moment' +p258503 +sg225236 +S'1921' +p258504 +sa(dp258505 +g225230 +S'The Great Standard Bearer' +p258506 +sg225232 +S'Hendrick Goltzius' +p258507 +sg225234 +S', 1587' +p258508 +sg225236 +S'\n' +p258509 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfd1.jpg' +p258510 +sg225240 +g27 +sa(dp258511 +g225230 +S'Cottage by a River' +p258512 +sg225232 +S'Jan van Goyen' +p258513 +sg225234 +S'black chalk on laid paper' +p258514 +sg225236 +S'c. 1627/1629' +p258515 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fbc.jpg' +p258516 +sg225240 +g27 +sa(dp258517 +g225230 +S'Horseman among the Dunes' +p258518 +sg225232 +S'Jan van Goyen' +p258519 +sg225234 +S'black chalk on laid paper' +p258520 +sg225236 +S'c. 1627/1629' +p258521 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006feb.jpg' +p258522 +sg225240 +g27 +sa(dp258523 +g225230 +S'Sailboat on an Estuary' +p258524 +sg225232 +S'Jan van Goyen' +p258525 +sg225234 +S'black chalk on laid paper' +p258526 +sg225236 +S'c.1627-1629' +p258527 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f62.jpg' +p258528 +sg225240 +g27 +sa(dp258529 +g225230 +S'Houses by a Road' +p258530 +sg225232 +S'Jan van Goyen' +p258531 +sg225234 +S'black chalk on laid paper' +p258532 +sg225236 +S'c.1627-1629' +p258533 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a0007049.jpg' +p258534 +sg225240 +g27 +sa(dp258535 +g225230 +S'The Crucifixion with Saints Roch and Augustine' +p258536 +sg225232 +S'Filippo Bellini' +p258537 +sg225234 +S'pen and brown ink with brown wash heightened with white over black chalk on laid paper backed with fabric' +p258538 +sg225236 +S'unknown date\n' +p258539 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a000749f.jpg' +p258540 +sg225240 +g27 +sa(dp258541 +g225232 +S'Jacques Callot' +p258542 +sg225240 +g27 +sg225234 +S'bound volume with 9 etchings plus title page' +p258543 +sg225230 +S'The Large Miseries of War' +p258544 +sg225236 +S'published 1633' +p258545 +sa(dp258546 +g225232 +S'Jacques Callot' +p258547 +sg225240 +g27 +sg225234 +S'etching' +p258548 +sg225230 +S'Title Page' +p258549 +sg225236 +S'c. 1633' +p258550 +sa(dp258551 +g225232 +S'Jacques Callot' +p258552 +sg225240 +g27 +sg225234 +S'etching' +p258553 +sg225230 +S'Plundering a Large Farmhouse' +p258554 +sg225236 +S'c. 1633' +p258555 +sa(dp258556 +g225232 +S'Jacques Callot' +p258557 +sg225240 +g27 +sg225234 +S'etching' +p258558 +sg225230 +S'The Peasants Avenge Themselves' +p258559 +sg225236 +S'c. 1633' +p258560 +sa(dp258561 +g225232 +S'Jacques Callot' +p258562 +sg225240 +g27 +sg225234 +S'etching' +p258563 +sg225230 +S'Dying Soldiers by the Roadside' +p258564 +sg225236 +S'c. 1633' +p258565 +sa(dp258566 +g225232 +S'Jacques Callot' +p258567 +sg225240 +g27 +sg225234 +S'etching' +p258568 +sg225230 +S'Discovery of the Criminal Soldiers' +p258569 +sg225236 +S'c. 1633' +p258570 +sa(dp258571 +g225232 +S'Jacques Callot' +p258572 +sg225240 +g27 +sg225234 +S'etching' +p258573 +sg225230 +S'The Firing Squad' +p258574 +sg225236 +S'c. 1633' +p258575 +sa(dp258576 +g225232 +S'Jacques Callot' +p258577 +sg225240 +g27 +sg225234 +S'etching' +p258578 +sg225230 +S'Attack on a Coach' +p258579 +sg225236 +S'c. 1633' +p258580 +sa(dp258581 +g225232 +S'Jacques Callot' +p258582 +sg225240 +g27 +sg225234 +S'etching' +p258583 +sg225230 +S'The Battle' +p258584 +sg225236 +S'c. 1633' +p258585 +sa(dp258586 +g225232 +S'Jacques Callot' +p258587 +sg225240 +g27 +sg225234 +S'etching' +p258588 +sg225230 +S'Plundering and Burning a Village' +p258589 +sg225236 +S'c. 1633' +p258590 +sa(dp258591 +g225232 +S'Jacques Callot' +p258592 +sg225240 +g27 +sg225234 +S'etching' +p258593 +sg225230 +S'The Stake' +p258594 +sg225236 +S'c. 1633' +p258595 +sa(dp258596 +g225230 +S'Ah! monstre, vous vous permettez...' +p258597 +sg225232 +S'Honor\xc3\xa9 Daumier' +p258598 +sg225234 +S'lithograph' +p258599 +sg225236 +S'1840' +p258600 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009265.jpg' +p258601 +sg225240 +g27 +sa(dp258602 +g225230 +S"L'unit\xc3\xa9 allemande" +p258603 +sg225232 +S'Honor\xc3\xa9 Daumier' +p258604 +sg225234 +S'lithograph' +p258605 +sg225236 +S'1870' +p258606 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a92.jpg' +p258607 +sg225240 +g27 +sa(dp258608 +g225230 +S'Po\xc3\xa8te classique composant une \xc3\xa9glogue...' +p258609 +sg225232 +S'Honor\xc3\xa9 Daumier' +p258610 +sg225234 +S'lithograph' +p258611 +sg225236 +S'1840' +p258612 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092f4.jpg' +p258613 +sg225240 +g27 +sa(dp258614 +g225230 +S"V'la mon petit... s'il n'a pas assez de moyens..." +p258615 +sg225232 +S'Honor\xc3\xa9 Daumier' +p258616 +sg225234 +S'lithograph' +p258617 +sg225236 +S'1850' +p258618 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a0009406.jpg' +p258619 +sg225240 +g27 +sa(dp258620 +g225230 +S"L'Eau est d\xc3\xa9licieuse... je t'assure..." +p258621 +sg225232 +S'Honor\xc3\xa9 Daumier' +p258622 +sg225234 +S'lithograph' +p258623 +sg225236 +S'1845' +p258624 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009368.jpg' +p258625 +sg225240 +g27 +sa(dp258626 +g225230 +S'Apollo and Marsyas' +p258627 +sg225232 +S'Artist Information (' +p258628 +sg225234 +S'(artist after)' +p258629 +sg225236 +S'\n' +p258630 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c837.jpg' +p258631 +sg225240 +g27 +sa(dp258632 +g225230 +S'Saint Roch' +p258633 +sg225232 +S'Artist Information (' +p258634 +sg225234 +S'(artist after)' +p258635 +sg225236 +S'\n' +p258636 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c746.jpg' +p258637 +sg225240 +g27 +sa(dp258638 +g225230 +S'Le Juif Errant' +p258639 +sg225232 +S'Artist Information (' +p258640 +sg225234 +S'(artist after)' +p258641 +sg225236 +S'\n' +p258642 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009ffb.jpg' +p258643 +sg225240 +g27 +sa(dp258644 +g225230 +S'The Adoration of the Magi' +p258645 +sg225232 +S'Bartolom\xc3\xa9 Esteban Murillo' +p258646 +sg225234 +S'pen and brown ink with brown wash over red and black chalk on laid paper' +p258647 +sg225236 +S'c. 1650/1656' +p258648 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00026/a0002605.jpg' +p258649 +sg225240 +g27 +sa(dp258650 +g225230 +S'The Betrothal of Maximilian with Mary of Burgundy' +p258651 +sg225232 +S'Albrecht D\xc3\xbcrer' +p258652 +sg225234 +S'woodcut' +p258653 +sg225236 +S'1515' +p258654 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac5b.jpg' +p258655 +sg225240 +g27 +sa(dp258656 +g225230 +S'The Sacrifice of Marcus Curtius' +p258657 +sg225232 +S'Jost Amman' +p258658 +sg225234 +S'pen and black ink on laid paper' +p258659 +sg225236 +S'unknown date\n' +p258660 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a0f.jpg' +p258661 +sg225240 +g27 +sa(dp258662 +g225230 +S'Two Women in Classical Dress' +p258663 +sg225232 +S'Claude Lorrain' +p258664 +sg225234 +S'black chalk and pen and brown ink and brown wash, heightened with white gouache on apricot-prepared paper, with later framing line in black ink' +p258665 +sg225236 +S'mid-1640s' +p258666 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a20.jpg' +p258667 +sg225240 +g27 +sa(dp258668 +g225230 +S'Esurientes pascere' +p258669 +sg225232 +S'S\xc3\xa9bastien Bourdon' +p258670 +sg225234 +S'engraving' +p258671 +sg225236 +S'probably 1658' +p258672 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bfb.jpg' +p258673 +sg225240 +g27 +sa(dp258674 +g225230 +S'Potare sitientes' +p258675 +sg225232 +S'S\xc3\xa9bastien Bourdon' +p258676 +sg225234 +S'engraving' +p258677 +sg225236 +S'probably 1658' +p258678 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c00.jpg' +p258679 +sg225240 +g27 +sa(dp258680 +g225230 +S'Hospitio exipere advenas' +p258681 +sg225232 +S'S\xc3\xa9bastien Bourdon' +p258682 +sg225234 +S'engraving' +p258683 +sg225236 +S'probably 1658' +p258684 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bff.jpg' +p258685 +sg225240 +g27 +sa(dp258686 +g225230 +S'Vestine nudos' +p258687 +sg225232 +S'S\xc3\xa9bastien Bourdon' +p258688 +sg225234 +S'engraving' +p258689 +sg225236 +S'probably 1658' +p258690 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bfe.jpg' +p258691 +sg225240 +g27 +sa(dp258692 +g225230 +S'Aegros Curare' +p258693 +sg225232 +S'S\xc3\xa9bastien Bourdon' +p258694 +sg225234 +S'engraving' +p258695 +sg225236 +S'probably 1658' +p258696 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bfd.jpg' +p258697 +sg225240 +g27 +sa(dp258698 +g225230 +S'Liberare Captivos' +p258699 +sg225232 +S'S\xc3\xa9bastien Bourdon' +p258700 +sg225234 +S'engraving' +p258701 +sg225236 +S'probably 1658' +p258702 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bfc.jpg' +p258703 +sg225240 +g27 +sa(dp258704 +g225230 +S'Sepelire mortuos' +p258705 +sg225232 +S'S\xc3\xa9bastien Bourdon' +p258706 +sg225234 +S'engraving' +p258707 +sg225236 +S'probably 1658' +p258708 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bfa.jpg' +p258709 +sg225240 +g27 +sa(dp258710 +g225230 +S'Mercury with the Head of Argus in His Hand' +p258711 +sg225232 +S'Hieronymus Cock' +p258712 +sg225234 +S'etching' +p258713 +sg225236 +S'1558' +p258714 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf2c.jpg' +p258715 +sg225240 +g27 +sa(dp258716 +g225230 +S'Ruins on the Palatine with the Septizonium' +p258717 +sg225232 +S'Hieronymus Cock' +p258718 +sg225234 +S'etching on laid paper' +p258719 +sg225236 +S'1550' +p258720 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf2e.jpg' +p258721 +sg225240 +g27 +sa(dp258722 +g225232 +S'Erich Heckel' +p258723 +sg225240 +g27 +sg225234 +S'woodcut' +p258724 +sg225230 +S'Kneeling (Hockende)' +p258725 +sg225236 +S'1913' +p258726 +sa(dp258727 +g225230 +S'The Annunciation' +p258728 +sg225232 +S'Artist Information (' +p258729 +sg225234 +S'(artist after)' +p258730 +sg225236 +S'\n' +p258731 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a0006593.jpg' +p258732 +sg225240 +g27 +sa(dp258733 +g225230 +S'The Virgin in Glory' +p258734 +sg225232 +S'Abraham Bloemaert' +p258735 +sg225234 +S'pen and brown ink with brown wash heightened with white over black chalk on blue paper' +p258736 +sg225236 +S'unknown date\n' +p258737 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007152.jpg' +p258738 +sg225240 +g27 +sa(dp258739 +g225230 +S'John Adams' +p258740 +sg225232 +S'Gilbert Stuart' +p258741 +sg225234 +S'oil on wood' +p258742 +sg225236 +S'c. 1821' +p258743 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000254.jpg' +p258744 +sg225240 +S'This likeness was painted when the second president was in his eighties. \n However, Stuart copied it from a much earlier National Gallery picture, the \n \n ' +p258745 +sa(dp258746 +g225230 +S'James Madison' +p258747 +sg225232 +S'Gilbert Stuart' +p258748 +sg225234 +S'oil on wood' +p258749 +sg225236 +S'c. 1821' +p258750 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000255.jpg' +p258751 +sg225240 +S"Stuart first portrayed James Madison when he was Jefferson's secretary of state. The Gibbs-Coolidge likeness was most likely based on other pictures Stuart had painted from life that where either in his possession or accessible to him. The deep green curtain accents the color of Madison's eyes.\n " +p258752 +sa(dp258753 +g225230 +S'James Monroe' +p258754 +sg225232 +S'Gilbert Stuart' +p258755 +sg225234 +S'oil on wood' +p258756 +sg225236 +S'c. 1817' +p258757 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000256.jpg' +p258758 +sg225240 +S"Monroe's likeness, a replica of one done from life in 1817, is the only \n picture in the Gibbs-Coolidge set with a pale background. Stuart very \n rarely used light settings for his portrayals of men. Since James Monroe \n was the last of the first five presidents, serving from 1817 to 1825, this \n glowing sky might symbolize the Republic's future.\n " +p258759 +sa(dp258760 +g225230 +S'George Washington' +p258761 +sg225232 +S'Gilbert Stuart' +p258762 +sg225234 +S'oil on wood' +p258763 +sg225236 +S'c. 1821' +p258764 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000257.jpg' +p258765 +sg225240 +S'This version is among the best of the seventy-two copies Stuart made of \n his Athenaeum format for the first president. Painted from life in April \n 1796, the unfinished original is now shared at three-year intervals between \n the Museum of Fine Arts, Boston, and the National Portrait Gallery, \n Washington.\n ' +p258766 +sa(dp258767 +g225230 +S'Grottesco with the Tomb of Nero' +p258768 +sg225232 +S'Giovanni Battista Piranesi' +p258769 +sg225234 +S'pen and brush with gray-brown ink and gray wash over red chalk on laid paper' +p258770 +sg225236 +S'1747' +p258771 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a000728e.jpg' +p258772 +sg225240 +g27 +sa(dp258773 +g225230 +S'Study of a Woman' +p258774 +sg225232 +S'Adolph Menzel' +p258775 +sg225234 +S'graphite with stump' +p258776 +sg225236 +S'c. 1875/1890' +p258777 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d0e.jpg' +p258778 +sg225240 +g27 +sa(dp258779 +g225232 +S'John Singer Sargent' +p258780 +sg225240 +g27 +sg225234 +S'sketchbook with one graphite sketch and one pen and black ink and graphite sketch plus photo-mechanical reproduction of one sketch (see 1979.8.2)' +p258781 +sg225230 +S'Sketchbook with Two Costume Studies' +p258782 +sg225236 +S'1900' +p258783 +sa(dp258784 +g225230 +S'Design for Hawk Dress for Mrs. C.E. Hunter as Queen Phalema in "The Seraph"' +p258785 +sg225232 +S'John Singer Sargent' +p258786 +sg225234 +S'photo-mechanical reproduction' +p258787 +sg225236 +S'1900' +p258788 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004fcc.jpg' +p258789 +sg225240 +g27 +sa(dp258790 +g225232 +S'Miriam Schapiro' +p258791 +sg225240 +g27 +sg225234 +S'embossing on Arches paper' +p258792 +sg225230 +S'Title Page' +p258793 +sg225236 +S'1977' +p258794 +sa(dp258795 +g225232 +S'Miriam Schapiro' +p258796 +sg225240 +g27 +sg225234 +S'portfolio with eight color collotypes and two embossings including title page and colophon on Archespaper' +p258797 +sg225230 +S'Anonymous was a Woman' +p258798 +sg225236 +S'1977' +p258799 +sa(dp258800 +g225232 +S'Miriam Schapiro' +p258801 +sg225240 +g27 +sg225234 +S'collotype in red-brown on Arches paper' +p258802 +sg225230 +S'Anonymous was a Woman I' +p258803 +sg225236 +S'1977' +p258804 +sa(dp258805 +g225232 +S'Miriam Schapiro' +p258806 +sg225240 +g27 +sg225234 +S'collotype in brown on Arches paper' +p258807 +sg225230 +S'Anonymous was a Woman II' +p258808 +sg225236 +S'1977' +p258809 +sa(dp258810 +g225232 +S'Miriam Schapiro' +p258811 +sg225240 +g27 +sg225234 +S'collotype in light red-brown on Arches paper' +p258812 +sg225230 +S'Anonymous was a Woman III' +p258813 +sg225236 +S'1977' +p258814 +sa(dp258815 +g225232 +S'Miriam Schapiro' +p258816 +sg225240 +g27 +sg225234 +S'collotype in blue on Arches paper' +p258817 +sg225230 +S'Anonymous was a Woman IV' +p258818 +sg225236 +S'1977' +p258819 +sa(dp258820 +g225232 +S'Miriam Schapiro' +p258821 +sg225240 +g27 +sg225234 +S'collotype in brown and white on Arches paper' +p258822 +sg225230 +S'Anonymous was a Woman V' +p258823 +sg225236 +S'1977' +p258824 +sa(dp258825 +g225232 +S'Miriam Schapiro' +p258826 +sg225240 +g27 +sg225234 +S'collotype in black and embossing on Arches paper' +p258827 +sg225230 +S'Anonymous was a Woman VI' +p258828 +sg225236 +S'1977' +p258829 +sa(dp258830 +g225232 +S'Miriam Schapiro' +p258831 +sg225240 +g27 +sg225234 +S'collotype in red on Arches paper' +p258832 +sg225230 +S'Anonymous was a Woman VII' +p258833 +sg225236 +S'1977' +p258834 +sa(dp258835 +g225232 +S'Miriam Schapiro' +p258836 +sg225240 +g27 +sg225234 +S'collotype in brown on Arches paper' +p258837 +sg225230 +S'Anonymous was a Woman VIII' +p258838 +sg225236 +S'1977' +p258839 +sa(dp258840 +g225232 +S'Miriam Schapiro' +p258841 +sg225240 +g27 +sg225234 +S'embossing on Arches paper' +p258842 +sg225230 +S'Colophon' +p258843 +sg225236 +S'1977' +p258844 +sa(dp258845 +g225230 +S'Door Knocker with Nereid, Triton, and Putti' +p258846 +sg225232 +S'Jacopo Sansovino' +p258847 +sg225234 +S'bronze' +p258848 +sg225236 +S'c. 1550' +p258849 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d95.jpg' +p258850 +sg225240 +S"Renaissance bronze sculpture often served practical functions. This doorknocker is one of\nthe finest examples of a specialty of the city of Venice, where Jacopo Sansovino dominated\nsculptural and architectural projects for some forty years. Gifted, prolific, and well-connected,\nSansovino introduced the dynamic and heroically proportioned human types of central Italian\nHigh Renaissance art to Venetian sculpture.\n Typical of its kind, this doorknocker has a broad base of lush acanthus leaves, from which\nhorns curve upward and converge toward the top in a form suggesting a lyre. A nereid and triton,\nhalf-human sea creatures whose lower bodies are understood to disappear into fish-tails hidden in\nthe foliage, gaze delightedly at each other. The male's outstretched left arm unites them, and each\nfigure's outer arm winds up under and around the horns that rise out of the leaves. Above them,\nrobust little putti twist about beneath their burden of dense fruit garlands, splaying their legs and\nplanting their feet impudently on the adults' heads and chests. The whole, brilliantly interwoven\nantiquarian invention alludes in a direct and playful way to love and fertility, appropriate to the\ndoor of a home. The smooth, worn lower leaves indicate that the knocker received many years of\nuse.\n " +p258851 +sa(dp258852 +g225230 +S'The Head of Saint John the Evangelist' +p258853 +sg225232 +S'Federico Barocci' +p258854 +sg225234 +S'oil on paper lined with linen' +p258855 +sg225236 +S'c. 1580' +p258856 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022a2.jpg' +p258857 +sg225240 +g27 +sa(dp258858 +g225230 +S'Paradise, Newport' +p258859 +sg225232 +S'William Trost Richards' +p258860 +sg225234 +S'gouache on gray fibrous paper' +p258861 +sg225236 +S'1877' +p258862 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a000098d.jpg' +p258863 +sg225240 +g27 +sa(dp258864 +g225230 +S'The Artist and His Mother' +p258865 +sg225232 +S'Arshile Gorky' +p258866 +sg225234 +S'oil on canvas' +p258867 +sg225236 +S'c. 1926-c. 1942' +p258868 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000cc.jpg' +p258869 +sg225240 +g27 +sa(dp258870 +g225230 +S'One Year the Milkweed' +p258871 +sg225232 +S'Arshile Gorky' +p258872 +sg225234 +S'oil on canvas' +p258873 +sg225236 +S'1944' +p258874 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000cd.jpg' +p258875 +sg225240 +S"In \n Gorky spent most of 1944 at the country estate of his wife's parents in Hamilton, Virginia,\n drawing, painting, and observing the changes of the seasons. His mood in \n " +p258876 +sa(dp258877 +g225230 +S'Organization' +p258878 +sg225232 +S'Arshile Gorky' +p258879 +sg225234 +S'oil on canvas' +p258880 +sg225236 +S'1933-1936' +p258881 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000ce.jpg' +p258882 +sg225240 +g27 +sa(dp258883 +g225230 +S'Portrait of the Artist and His Mother' +p258884 +sg225232 +S'Arshile Gorky' +p258885 +sg225234 +S'graphite on squared paper' +p258886 +sg225236 +S'1926/1936' +p258887 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008e4.jpg' +p258888 +sg225240 +g27 +sa(dp258889 +g225230 +S'Untitled (Squared Study for "The Plow and the Song")' +p258890 +sg225232 +S'Arshile Gorky' +p258891 +sg225234 +S'graphite and crayon on wove paper, squared for transfer' +p258892 +sg225236 +S'c. 1944' +p258893 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008e5.jpg' +p258894 +sg225240 +g27 +sa(dp258895 +g225230 +S'The Rest on the Flight into Egypt' +p258896 +sg225232 +S'Guercino' +p258897 +sg225234 +S', c. 1626' +p258898 +sg225236 +S'\n' +p258899 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00033/a00033e6.jpg' +p258900 +sg225240 +g27 +sa(dp258901 +g225230 +S'Allegory of Music' +p258902 +sg225232 +S'Fran\xc3\xa7ois Boucher' +p258903 +sg225234 +S'pen and brown ink with red wash on laid paper' +p258904 +sg225236 +S'1764' +p258905 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00031/a0003199.jpg' +p258906 +sg225240 +g27 +sa(dp258907 +g225230 +S'Brinkman Priory' +p258908 +sg225232 +S'Paul Sandby Munn' +p258909 +sg225234 +S'pen and tusche lithograph' +p258910 +sg225236 +S'1812' +p258911 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a000772a.jpg' +p258912 +sg225240 +g27 +sa(dp258913 +g225230 +S'Country Footbridge (The Traveller)' +p258914 +sg225232 +S'Paul Sandby Munn' +p258915 +sg225234 +S'pen and tusche lithograph' +p258916 +sg225236 +S'c. 1810' +p258917 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a000771a.jpg' +p258918 +sg225240 +g27 +sa(dp258919 +g225230 +S'La Parisienne (7)' +p258920 +sg225232 +S'Jacques Villon' +p258921 +sg225234 +S'color softground etching, etching, and aquatint printed from multiple plates with watercolor additions and graphite notations on cream wove paper [touched proof]' +p258922 +sg225236 +S'1902' +p258923 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00054/a0005455.jpg' +p258924 +sg225240 +g27 +sa(dp258925 +g225232 +S'Emil Nolde' +p258926 +sg225240 +g27 +sg225234 +S'woodcut' +p258927 +sg225230 +S'Fischdampfer (Fish Steamboat)' +p258928 +sg225236 +S'1910' +p258929 +sa(dp258930 +g225230 +S'Four Boys on a Beach' +p258931 +sg225232 +S'Winslow Homer' +p258932 +sg225234 +S'graphite with watercolor and gouache on wove paper' +p258933 +sg225236 +S'c. 1873' +p258934 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000904.jpg' +p258935 +sg225240 +g27 +sa(dp258936 +g225230 +S'Solitude: Miss Vesta Rollinstall' +p258937 +sg225232 +S'Edwin Austin Abbey' +p258938 +sg225234 +S'graphite on heavy cream wove paper' +p258939 +sg225236 +S'1878' +p258940 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e482.jpg' +p258941 +sg225240 +g27 +sa(dp258942 +g225230 +S"Young Woman's Head" +p258943 +sg225232 +S'Esther Frances Alexander' +p258944 +sg225234 +S'graphite and pen and brown ink on wove paper' +p258945 +sg225236 +S'unknown date\n' +p258946 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e481.jpg' +p258947 +sg225240 +g27 +sa(dp258948 +g225230 +S'Wanaus, Tuscarora Indian' +p258949 +sg225232 +S'Esther Frances Alexander' +p258950 +sg225234 +S'pen and brown ink on heavy ivory cardstock' +p258951 +sg225236 +S'1868' +p258952 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00068/a0006860.jpg' +p258953 +sg225240 +g27 +sa(dp258954 +g225230 +S'Composition with Four Figures [recto and verso]' +p258955 +sg225232 +S'Washington Allston' +p258956 +sg225234 +S', c. 1805' +p258957 +sg225236 +S'\n' +p258958 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0a4.jpg' +p258959 +sg225240 +g27 +sa(dp258960 +g225230 +S'Kentucky Fly-catching Warbler' +p258961 +sg225232 +S'John Woodhouse Audubon' +p258962 +sg225234 +S'pen and black and gray ink with watercolor on wovepaper' +p258963 +sg225236 +S'1830s' +p258964 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e47f.jpg' +p258965 +sg225240 +g27 +sa(dp258966 +g225230 +S'Gowanus Heights, Brooklyn' +p258967 +sg225232 +S'William Henry Bartlett' +p258968 +sg225234 +S'brush and brown ink with brown wash on wove paper' +p258969 +sg225236 +S'c. 1836/1837' +p258970 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bea.jpg' +p258971 +sg225240 +g27 +sa(dp258972 +g225230 +S'Two Men Figures' +p258973 +sg225232 +S'George Caleb Bingham' +p258974 +sg225234 +S'pen and ink over graphite' +p258975 +sg225236 +S'unknown date\n' +p258976 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0a6.jpg' +p258977 +sg225240 +g27 +sa(dp258978 +g225230 +S'Riverhead, Long Island' +p258979 +sg225232 +S'Oscar F. Bluemner' +p258980 +sg225234 +S'graphite with black crayon' +p258981 +sg225236 +S'1903' +p258982 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e5/a000e569.jpg' +p258983 +sg225240 +g27 +sa(dp258984 +g225230 +S'Francois' +p258985 +sg225232 +S'Charles J. Bridgman' +p258986 +sg225234 +S'graphite on wove paper' +p258987 +sg225236 +S'1872' +p258988 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e48a.jpg' +p258989 +sg225240 +g27 +sa(dp258990 +g225230 +S'Rosetta, Egypt' +p258991 +sg225232 +S'Charles J. Bridgman' +p258992 +sg225234 +S'graphite and black crayon heightened with cream chalk on wove paper' +p258993 +sg225236 +S'c. 1871/1872' +p258994 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e48b.jpg' +p258995 +sg225240 +g27 +sa(dp258996 +g225230 +S'Bible Lesson [recto]' +p258997 +sg225232 +S'Mather Brown' +p258998 +sg225234 +S'pen and brown ink over graphite on laid paper' +p258999 +sg225236 +S'1780/1790' +p259000 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e47e.jpg' +p259001 +sg225240 +g27 +sa(dp259002 +g225232 +S'Mather Brown' +p259003 +sg225240 +g27 +sg225234 +S'graphite and pen and ink' +p259004 +sg225230 +S'Three Figures [verso]' +p259005 +sg225236 +S'1780/1790' +p259006 +sa(dp259007 +g225230 +S'Allegory: Four Putti' +p259008 +sg225232 +S'Mather Brown' +p259009 +sg225234 +S'pen and brown ink over graphite on laid paper' +p259010 +sg225236 +S'1780/1790' +p259011 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f099.jpg' +p259012 +sg225240 +g27 +sa(dp259013 +g225230 +S'Banknote Studies [recto]' +p259014 +sg225232 +S'John William Casilear' +p259015 +sg225234 +S'graphite with touches of pen and brown ink on tan wove paper' +p259016 +sg225236 +S'1840' +p259017 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0a9.jpg' +p259018 +sg225240 +g27 +sa(dp259019 +g225232 +S'John William Casilear' +p259020 +sg225240 +g27 +sg225234 +S'graphite on tan wove paper' +p259021 +sg225230 +S'Studies of Classical Temple Facades and Seated Female Figure [verso]' +p259022 +sg225236 +S'unknown date\n' +p259023 +sa(dp259024 +g225230 +S'H. Wood Sullivan - "The Shaver"' +p259025 +sg225232 +S'Jefferson David Chalfant' +p259026 +sg225234 +S'graphite on aged brown sulphured wove paper; verso blackened for transfer' +p259027 +sg225236 +S'probably 1890/1900' +p259028 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e495.jpg' +p259029 +sg225240 +g27 +sa(dp259030 +g225230 +S'On the Road from Conway' +p259031 +sg225232 +S'Thomas Cole' +p259032 +sg225234 +S'pen and black ink over graphite on wove paper' +p259033 +sg225236 +S'1827/1828' +p259034 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e496.jpg' +p259035 +sg225240 +g27 +sa(dp259036 +g225230 +S'Temples of Juno, Lucina, and Concordia - Agrigentum, Sicily' +p259037 +sg225232 +S'Thomas Cole' +p259038 +sg225234 +S'graphite with white gouache on brown paper' +p259039 +sg225236 +S'1842' +p259040 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e499.jpg' +p259041 +sg225240 +g27 +sa(dp259042 +g225230 +S'The Bridge of Fear' +p259043 +sg225232 +S'Thomas Cole' +p259044 +sg225234 +S'graphite and black crayon with gray wash on wove paper' +p259045 +sg225236 +S'unknown date\n' +p259046 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008c0.jpg' +p259047 +sg225240 +g27 +sa(dp259048 +g225230 +S'The Good Shepherd' +p259049 +sg225232 +S'Thomas Cole' +p259050 +sg225234 +S'graphite and pen and ink with tan and gray wash, heightened with white, on laid paper' +p259051 +sg225236 +S'1847' +p259052 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e494.jpg' +p259053 +sg225240 +g27 +sa(dp259054 +g225230 +S'Lullaby' +p259055 +sg225232 +S'Maude Alice Cowles' +p259056 +sg225234 +S'pen and black ink with gray and white wash on graypaper-surfaced cardboard' +p259057 +sg225236 +S'c. 1890' +p259058 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e49c.jpg' +p259059 +sg225240 +g27 +sa(dp259060 +g225230 +S'A Corner Window, Will Low' +p259061 +sg225232 +S'Kenyon Cox' +p259062 +sg225234 +S'pen and black ink on laid paper' +p259063 +sg225236 +S'1884' +p259064 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008ca.jpg' +p259065 +sg225240 +g27 +sa(dp259066 +g225230 +S'Seated Male Nude: Study for "Science" - Iowa State Capitol' +p259067 +sg225232 +S'Kenyon Cox' +p259068 +sg225234 +S'graphite on laid paper, squared with graphite' +p259069 +sg225236 +S'1905' +p259070 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e49d.jpg' +p259071 +sg225240 +g27 +sa(dp259072 +g225230 +S'Reclining Female Nude Study for "Painting"' +p259073 +sg225232 +S'Kenyon Cox' +p259074 +sg225234 +S'graphite on laid paper, squared with graphite' +p259075 +sg225236 +S'unknown date\n' +p259076 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008cb.jpg' +p259077 +sg225240 +g27 +sa(dp259078 +g225230 +S'Study of a Plaster Torso' +p259079 +sg225232 +S'Kenyon Cox' +p259080 +sg225234 +S'graphite on laid paper, squared with graphite' +p259081 +sg225236 +S'unknown date\n' +p259082 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000eb/a000eb9c.jpg' +p259083 +sg225240 +g27 +sa(dp259084 +g225230 +S'Drapery Study for Reclining Female Study for "Painting"' +p259085 +sg225232 +S'Kenyon Cox' +p259086 +sg225234 +S'graphite on laid paper, squared with graphite' +p259087 +sg225236 +S'unknown date\n' +p259088 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008cc.jpg' +p259089 +sg225240 +g27 +sa(dp259090 +g225230 +S'Brownies at Home - Twelve Vignettes' +p259091 +sg225232 +S'Palmer Cox' +p259092 +sg225234 +S'pen and black ink on twelve pieces of wove paper' +p259093 +sg225236 +S'c. 1893' +p259094 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006aae.jpg' +p259095 +sg225240 +g27 +sa(dp259096 +g225230 +S'Hudson River Brick Piers' +p259097 +sg225232 +S'Jasper Francis Cropsey' +p259098 +sg225234 +S'graphite and watercolor on brown wove paper' +p259099 +sg225236 +S'1886' +p259100 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0ae.jpg' +p259101 +sg225240 +g27 +sa(dp259102 +g225230 +S'Pine Tree' +p259103 +sg225232 +S'Jasper Francis Cropsey' +p259104 +sg225234 +S'graphite heightened with white on heavy wove paper' +p259105 +sg225236 +S'1847' +p259106 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0ad.jpg' +p259107 +sg225240 +g27 +sa(dp259108 +g225230 +S'The Hudson River at Hastings' +p259109 +sg225232 +S'Jasper Francis Cropsey' +p259110 +sg225234 +S'graphite on wove paper' +p259111 +sg225236 +S'1885' +p259112 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000eb/a000eb9b.jpg' +p259113 +sg225240 +g27 +sa(dp259114 +g225230 +S"Portrait of the Artist's Wife" +p259115 +sg225232 +S'Elliott Daingerfield' +p259116 +sg225234 +S'graphite on laid paper' +p259117 +sg225236 +S'1898' +p259118 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4a4.jpg' +p259119 +sg225240 +g27 +sa(dp259120 +g225230 +S'Man Flailing' +p259121 +sg225232 +S'Felix Octavius Carr Darley' +p259122 +sg225234 +S'graphite on heavy wove paper' +p259123 +sg225236 +S'1850s' +p259124 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0b2.jpg' +p259125 +sg225240 +g27 +sa(dp259126 +g225230 +S"The Squatter's Death" +p259127 +sg225232 +S'Felix Octavius Carr Darley' +p259128 +sg225234 +S'pen and brown ink with brown wash' +p259129 +sg225236 +S'1859/1861' +p259130 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008cf.jpg' +p259131 +sg225240 +g27 +sa(dp259132 +g225230 +S"Aldrich's Dog" +p259133 +sg225232 +S'Arthur B. Davies' +p259134 +sg225234 +S'pen and black ink touched with white on buff prepared laid paper' +p259135 +sg225236 +S'late 1880s' +p259136 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e5/a000e5ab.jpg' +p259137 +sg225240 +g27 +sa(dp259138 +g225230 +S'Foxgloves' +p259139 +sg225232 +S'Arthur B. Davies' +p259140 +sg225234 +S'graphite' +p259141 +sg225236 +S'unknown date\n' +p259142 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e09a.jpg' +p259143 +sg225240 +g27 +sa(dp259144 +g225230 +S'Seated Nude and a Foot' +p259145 +sg225232 +S'Arthur B. Davies' +p259146 +sg225234 +S'black and white chalk fixed with water bath on brown laid paper' +p259147 +sg225236 +S'probably 1920' +p259148 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e5/a000e5ad.jpg' +p259149 +sg225240 +g27 +sa(dp259150 +g225230 +S'Jewish Synagogue, N.Y.' +p259151 +sg225232 +S'Alexander Jackson Davis' +p259152 +sg225234 +S'pen and black ink with gray wash' +p259153 +sg225236 +S'unknown date\n' +p259154 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0b1.jpg' +p259155 +sg225240 +g27 +sa(dp259156 +g225230 +S'White Mountains (?)' +p259157 +sg225232 +S'Asher Brown Durand' +p259158 +sg225234 +S', possibly 1825/1830' +p259159 +sg225236 +S'\n' +p259160 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4a5.jpg' +p259161 +sg225240 +g27 +sa(dp259162 +g225230 +S'Rip Van Winkle' +p259163 +sg225232 +S'Asher Brown Durand' +p259164 +sg225234 +S'graphite' +p259165 +sg225236 +S'c. 1840' +p259166 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4a3.jpg' +p259167 +sg225240 +g27 +sa(dp259168 +g225230 +S'Portrait of the Artist Asa W. Twitchell' +p259169 +sg225232 +S'Charles Loring Elliott' +p259170 +sg225234 +S'graphite on wove paper' +p259171 +sg225236 +S'1864' +p259172 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0b3.jpg' +p259173 +sg225240 +g27 +sa(dp259174 +g225230 +S'Study from a Cast' +p259175 +sg225232 +S'Louis Michel Eilshemius' +p259176 +sg225234 +S'graphite on tan wove paper' +p259177 +sg225236 +S'c. 1884/1886' +p259178 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4a7.jpg' +p259179 +sg225240 +g27 +sa(dp259180 +g225232 +S'Sir Jacob Epstein' +p259181 +sg225240 +g27 +sg225234 +S'black crayon on wove paper' +p259182 +sg225230 +S'New York Garment Worker' +p259183 +sg225236 +S'1900/1902' +p259184 +sa(dp259185 +g225230 +S'Sketching from Nature' +p259186 +sg225232 +S'Thomas C. Farrer' +p259187 +sg225234 +S'pen and black and brown ink' +p259188 +sg225236 +S'1861' +p259189 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c0f.jpg' +p259190 +sg225240 +g27 +sa(dp259191 +g225230 +S'Oxen and Dump Cart' +p259192 +sg225232 +S'Edwin Forbes' +p259193 +sg225234 +S'graphite and black crayon with white chalk on gray wove paper' +p259194 +sg225236 +S'1860s or 1870s' +p259195 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0b6.jpg' +p259196 +sg225240 +g27 +sa(dp259197 +g225232 +S'Charles Dana Gibson' +p259198 +sg225240 +g27 +sg225234 +S'graphite, pen and black ink, and brush and black ink' +p259199 +sg225230 +S'Near Stanhope Gate' +p259200 +sg225236 +S'c. 1897' +p259201 +sa(dp259202 +g225230 +S'Niagara Falls' +p259203 +sg225232 +S'R\xc3\xa9gis Fran\xc3\xa7ois Gignoux' +p259204 +sg225234 +S'graphite and white gouache on green-gray wove paper' +p259205 +sg225236 +S'unknown date\n' +p259206 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000eb/a000eb9a.jpg' +p259207 +sg225240 +g27 +sa(dp259208 +g225230 +S'The Trees, Bedford, New York' +p259209 +sg225232 +S'R\xc3\xa9gis Fran\xc3\xa7ois Gignoux' +p259210 +sg225234 +S'brush and gray and black ink on wove paper' +p259211 +sg225236 +S'1849' +p259212 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4a2.jpg' +p259213 +sg225240 +g27 +sa(dp259214 +g225230 +S'Study of a Hand' +p259215 +sg225232 +S'Horatio Greenough' +p259216 +sg225234 +S'graphite on wove paper' +p259217 +sg225236 +S'unknown date\n' +p259218 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008ea.jpg' +p259219 +sg225240 +g27 +sa(dp259220 +g225230 +S'Right Hand Holding Short Rod' +p259221 +sg225232 +S'Horatio Greenough' +p259222 +sg225234 +S'graphite on wove paper' +p259223 +sg225236 +S'1847' +p259224 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e49e.jpg' +p259225 +sg225240 +g27 +sa(dp259226 +g225230 +S'Right Hand Holding Short Rod' +p259227 +sg225232 +S'Horatio Greenough' +p259228 +sg225234 +S'pen and brown ink over graphite on wove paper' +p259229 +sg225236 +S'1847' +p259230 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e49f.jpg' +p259231 +sg225240 +g27 +sa(dp259232 +g225230 +S"The Artist's Brother - Richard Greenough (?)" +p259233 +sg225232 +S'Horatio Greenough' +p259234 +sg225234 +S'pen and brown ink over graphite on wove paper' +p259235 +sg225236 +S'c. 1850' +p259236 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0b7.jpg' +p259237 +sg225240 +g27 +sa(dp259238 +g225230 +S'Classical Head in Profile' +p259239 +sg225232 +S'Horatio Greenough' +p259240 +sg225234 +S'graphite and charcoal on wove paper' +p259241 +sg225236 +S'unknown date\n' +p259242 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0b8.jpg' +p259243 +sg225240 +g27 +sa(dp259244 +g225230 +S'Harbor Scene' +p259245 +sg225232 +S'John Greenwood' +p259246 +sg225234 +S'brush and gray ink with gray wash on laid paper' +p259247 +sg225236 +S'c. 1760' +p259248 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008eb.jpg' +p259249 +sg225240 +g27 +sa(dp259250 +g225230 +S'Rocks and Waterfall' +p259251 +sg225232 +S'Casimir Clayton Griswold' +p259252 +sg225234 +S'pen and brown ink with brown wash heightened with white on wove paper' +p259253 +sg225236 +S'1878' +p259254 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0ba.jpg' +p259255 +sg225240 +g27 +sa(dp259256 +g225230 +S'Mountain Landscape, Stream and Waterfall' +p259257 +sg225232 +S'William Hart' +p259258 +sg225234 +S'graphite with white (gouache?) on brown paper' +p259259 +sg225236 +S'1860' +p259260 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0be.jpg' +p259261 +sg225240 +g27 +sa(dp259262 +g225230 +S'The Hudson at Nyack' +p259263 +sg225232 +S'John Henry Hill' +p259264 +sg225234 +S'pen and black ink with gray wash over graphite on light brown paper' +p259265 +sg225236 +S'1858' +p259266 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0bf.jpg' +p259267 +sg225240 +g27 +sa(dp259268 +g225230 +S'Landscape, Early Spring' +p259269 +sg225232 +S'John Henry Hill' +p259270 +sg225234 +S'graphite touched with white (gouache?) on light brown paper' +p259271 +sg225236 +S'1857' +p259272 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0c4.jpg' +p259273 +sg225240 +g27 +sa(dp259274 +g225230 +S'Signature in Palette' +p259275 +sg225232 +S'Winslow Homer' +p259276 +sg225234 +S'pen and brown ink on wove paper' +p259277 +sg225236 +S'unknown date\n' +p259278 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00057/a000575a.jpg' +p259279 +sg225240 +g27 +sa(dp259280 +g225230 +S'Sketchbook Page' +p259281 +sg225232 +S'Winslow Homer' +p259282 +sg225234 +S'graphite on wove paper' +p259283 +sg225236 +S'unknown date\n' +p259284 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0ca.jpg' +p259285 +sg225240 +g27 +sa(dp259286 +g225230 +S'Studies for Elaine' +p259287 +sg225232 +S'Thomas Hovenden' +p259288 +sg225234 +S'graphite on blue wove paper' +p259289 +sg225236 +S'c. 1880' +p259290 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4b1.jpg' +p259291 +sg225240 +g27 +sa(dp259292 +g225230 +S'The Old Soldier - Berncastel' +p259293 +sg225232 +S'Alfred Cornelius Howland' +p259294 +sg225234 +S'graphite on brown wove paper' +p259295 +sg225236 +S'1861/1862' +p259296 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4b3.jpg' +p259297 +sg225240 +g27 +sa(dp259298 +g225230 +S'Lake George' +p259299 +sg225232 +S'Richard William Hubbard' +p259300 +sg225234 +S'graphite touched with white (chalk?) on green wovepaper' +p259301 +sg225236 +S'c. 1850/1869' +p259302 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0c0.jpg' +p259303 +sg225240 +g27 +sa(dp259304 +g225230 +S'Evening, Farm Landscape' +p259305 +sg225232 +S'William Morris Hunt' +p259306 +sg225234 +S'charcoal on wove paper' +p259307 +sg225236 +S'1870s' +p259308 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00068/a000685d.jpg' +p259309 +sg225240 +g27 +sa(dp259310 +g225230 +S'Seated Girl' +p259311 +sg225232 +S'William Morris Hunt' +p259312 +sg225234 +S'charcoal on laid paper' +p259313 +sg225236 +S'c. 1875' +p259314 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a000090c.jpg' +p259315 +sg225240 +g27 +sa(dp259316 +g225230 +S'Recruit; Two Studies of Heads' +p259317 +sg225232 +S'Daniel Huntington' +p259318 +sg225234 +S'graphite touched with white chalk on gray wove paper' +p259319 +sg225236 +S'c. 1862' +p259320 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4b2.jpg' +p259321 +sg225240 +g27 +sa(dp259322 +g225230 +S'Saco, Looking Northwest' +p259323 +sg225232 +S'Daniel Huntington' +p259324 +sg225234 +S'graphite on wove paper' +p259325 +sg225236 +S'mid 1860s' +p259326 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4b4.jpg' +p259327 +sg225240 +g27 +sa(dp259328 +g225230 +S'Character Study' +p259329 +sg225232 +S'Charles Wesley Jarvis' +p259330 +sg225234 +S'black chalk and graphite on laid paper' +p259331 +sg225236 +S'1820s' +p259332 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0cf.jpg' +p259333 +sg225240 +g27 +sa(dp259334 +g225230 +S'The Drinker' +p259335 +sg225232 +S'Charles Wesley Jarvis' +p259336 +sg225234 +S'graphite and black chalk with gray wash on laid paper' +p259337 +sg225236 +S'1820s' +p259338 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4ba.jpg' +p259339 +sg225240 +g27 +sa(dp259340 +g225230 +S'Irish Fisherman' +p259341 +sg225232 +S'John Wesley Jarvis' +p259342 +sg225234 +S'black chalk and graphite on laid paper' +p259343 +sg225236 +S'unknown date\n' +p259344 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4b9.jpg' +p259345 +sg225240 +g27 +sa(dp259346 +g225230 +S'Man Leaning on a Counter' +p259347 +sg225232 +S'Charles Wesley Jarvis' +p259348 +sg225234 +S'black chalk, (black crayon?), and graphite on laidpaper' +p259349 +sg225236 +S'1820s' +p259350 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0d0.jpg' +p259351 +sg225240 +g27 +sa(dp259352 +g225230 +S'Unknown Yale Student' +p259353 +sg225232 +S'Charles Wesley Jarvis' +p259354 +sg225234 +S'watercolor and graphite on bristol board' +p259355 +sg225236 +S'unknown date\n' +p259356 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0d1.jpg' +p259357 +sg225240 +g27 +sa(dp259358 +g225230 +S'Head of a Young Woman' +p259359 +sg225232 +S'Eastman Johnson' +p259360 +sg225234 +S'graphite on wove paper' +p259361 +sg225236 +S'1850' +p259362 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0d3.jpg' +p259363 +sg225240 +g27 +sa(dp259364 +g225230 +S'Seated Study of M.D.' +p259365 +sg225232 +S'Eastman Johnson' +p259366 +sg225234 +S'graphite on brown wove paper' +p259367 +sg225236 +S'unknown date\n' +p259368 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0d5.jpg' +p259369 +sg225240 +g27 +sa(dp259370 +g225230 +S'Self-Portrait' +p259371 +sg225232 +S'Eastman Johnson' +p259372 +sg225234 +S'graphite on wove paper' +p259373 +sg225236 +S'c. 1850' +p259374 +sg225238 +S'http://www.nga.gov:80/thumb-l//.jpg' +p259375 +sg225240 +g27 +sa(dp259376 +g225230 +S'The Young Doctor' +p259377 +sg225232 +S'Eastman Johnson' +p259378 +sg225234 +S'charcoal with black and white chalk on brown wove paper' +p259379 +sg225236 +S'probably c. 1848' +p259380 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000eb/a000eba8.jpg' +p259381 +sg225240 +g27 +sa(dp259382 +g225232 +S'Leo Katz' +p259383 +sg225240 +g27 +sg225234 +S'red chalk and graphite' +p259384 +sg225230 +S'Anatomy Studies' +p259385 +sg225236 +S'1911' +p259386 +sa(dp259387 +g225230 +S'In the Sierras, A Pack Train' +p259388 +sg225232 +S'William Keith' +p259389 +sg225234 +S'pen and brown ink with gray wash' +p259390 +sg225236 +S'unknown date\n' +p259391 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0dc.jpg' +p259392 +sg225240 +g27 +sa(dp259393 +g225230 +S'West Point from Storm King' +p259394 +sg225232 +S'John William Casilear' +p259395 +sg225234 +S', unknown date' +p259396 +sg225236 +S'\n' +p259397 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e48c.jpg' +p259398 +sg225240 +g27 +sa(dp259399 +g225230 +S'Angel - Trinity Church Mural' +p259400 +sg225232 +S'John La Farge' +p259401 +sg225234 +S'charcoal, graphite, and pen and brown ink, squared with graphite' +p259402 +sg225236 +S'1876' +p259403 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000959.jpg' +p259404 +sg225240 +g27 +sa(dp259405 +g225230 +S'Study for Moses - Trinity Church, Boston' +p259406 +sg225232 +S'John La Farge' +p259407 +sg225234 +S'charcoal on laid paper' +p259408 +sg225236 +S'1876' +p259409 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4b7.jpg' +p259410 +sg225240 +g27 +sa(dp259411 +g225230 +S'Trinity Church, Boston (nave) - Mural Study' +p259412 +sg225232 +S'John La Farge' +p259413 +sg225234 +S'graphite, pen and brown ink, and brush and brown ink on gray-blue wove paper' +p259414 +sg225236 +S'1876' +p259415 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0d6.jpg' +p259416 +sg225240 +g27 +sa(dp259417 +g225230 +S'Eastman Johnson Sketching' +p259418 +sg225232 +S'Emanuel Gottlieb Leutze' +p259419 +sg225234 +S'graphite and touches of black chalk on wove paper' +p259420 +sg225236 +S'c. 1849/1851' +p259421 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4b8.jpg' +p259422 +sg225240 +g27 +sa(dp259423 +g225230 +S'Ten Heads' +p259424 +sg225232 +S'George Benjamin Luks' +p259425 +sg225234 +S'black chalk on tan wove paper' +p259426 +sg225236 +S'probably c. 1905' +p259427 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ea/a000ea03.jpg' +p259428 +sg225240 +g27 +sa(dp259429 +g225230 +S'Old Crossing, Otter Tail River' +p259430 +sg225232 +S'Homer Dodge Martin' +p259431 +sg225234 +S'black chalk touched with white chalk on brown wove paper' +p259432 +sg225236 +S'1871' +p259433 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000eb/a000eba5.jpg' +p259434 +sg225240 +g27 +sa(dp259435 +g225230 +S'Raven Hill' +p259436 +sg225232 +S'Homer Dodge Martin' +p259437 +sg225234 +S'graphite on green wove paper' +p259438 +sg225236 +S'1868' +p259439 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000eb/a000eba6.jpg' +p259440 +sg225240 +g27 +sa(dp259441 +g225230 +S'Upper Saranac Lake' +p259442 +sg225232 +S'Homer Dodge Martin' +p259443 +sg225234 +S'graphite on wove paper' +p259444 +sg225236 +S'1861' +p259445 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4c0.jpg' +p259446 +sg225240 +g27 +sa(dp259447 +g225230 +S'Meadow Pond, New York' +p259448 +sg225232 +S'Charles Frederick William Mielatz' +p259449 +sg225234 +S'graphite' +p259450 +sg225236 +S'unknown date\n' +p259451 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4c1.jpg' +p259452 +sg225240 +g27 +sa(dp259453 +g225230 +S'Selina, Countess of Huntindon' +p259454 +sg225232 +S'Artist Information (' +p259455 +sg225234 +S'(artist after)' +p259456 +sg225236 +S'\n' +p259457 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d70.jpg' +p259458 +sg225240 +g27 +sa(dp259459 +g225230 +S'American Observing Station, Kerquelen Islands' +p259460 +sg225232 +S'John Moran' +p259461 +sg225234 +S'pen and black ink with gray and black wash' +p259462 +sg225236 +S'1874/1875' +p259463 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4bc.jpg' +p259464 +sg225240 +g27 +sa(dp259465 +g225230 +S'On Board of the Stony Brook Packet' +p259466 +sg225232 +S'William Sidney Mount' +p259467 +sg225234 +S'graphite on wove paper' +p259468 +sg225236 +S'1848' +p259469 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0d8.jpg' +p259470 +sg225240 +g27 +sa(dp259471 +g225230 +S'Nelson Mathewson' +p259472 +sg225232 +S'William Sidney Mount' +p259473 +sg225234 +S'graphite on wove paper' +p259474 +sg225236 +S'1839' +p259475 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0d7.jpg' +p259476 +sg225240 +g27 +sa(dp259477 +g225230 +S'Self-Portrait' +p259478 +sg225232 +S'Jerome Myers' +p259479 +sg225234 +S'charcoal heightened with white on light brown laid paper' +p259480 +sg225236 +S'1906' +p259481 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ea/a000ea79.jpg' +p259482 +sg225240 +g27 +sa(dp259483 +g225230 +S'Archer, Nude Study' +p259484 +sg225232 +S'Thomas Nast' +p259485 +sg225234 +S'charcoal and black chalk heightened with white gouache on brown wove paper' +p259486 +sg225236 +S'c. 1858' +p259487 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000eb/a000eba7.jpg' +p259488 +sg225240 +g27 +sa(dp259489 +g225230 +S'Signature, "TH. Nast, Oct. 17, 1901"' +p259490 +sg225232 +S'Thomas Nast' +p259491 +sg225234 +S'pen and brown ink on back of a Union League Club card' +p259492 +sg225236 +S'1901' +p259493 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0df.jpg' +p259494 +sg225240 +g27 +sa(dp259495 +g225230 +S'Gideon Fairman' +p259496 +sg225232 +S'Artist Information (' +p259497 +sg225234 +S'(artist after)' +p259498 +sg225236 +S'\n' +p259499 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4be.jpg' +p259500 +sg225240 +g27 +sa(dp259501 +g225230 +S'R. Strong' +p259502 +sg225232 +S'Rembrandt Peale' +p259503 +sg225234 +S', 1810' +p259504 +sg225236 +S'\n' +p259505 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4c4.jpg' +p259506 +sg225240 +g27 +sa(dp259507 +g225230 +S'Interior, Fitzwilliam Museum' +p259508 +sg225232 +S'Joseph Pennell' +p259509 +sg225234 +S'brush and black ink with gray wash over graphite on wove paper' +p259510 +sg225236 +S'1890s' +p259511 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ea/a000ea82.jpg' +p259512 +sg225240 +g27 +sa(dp259513 +g225230 +S'Main Stairway, Corcoran Art Gallery' +p259514 +sg225232 +S'Joseph Pennell' +p259515 +sg225234 +S'graphite with brush and black ink and white gouache on olive green paper' +p259516 +sg225236 +S'unknown date\n' +p259517 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ea/a000ea86.jpg' +p259518 +sg225240 +g27 +sa(dp259519 +g225230 +S'Narrow Walkway, London' +p259520 +sg225232 +S'Joseph Pennell' +p259521 +sg225234 +S'black and gray wash with white gouache' +p259522 +sg225236 +S'unknown date\n' +p259523 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ea/a000ea85.jpg' +p259524 +sg225240 +g27 +sa(dp259525 +g225230 +S'Study of a Hand' +p259526 +sg225232 +S'Hiram Powers' +p259527 +sg225234 +S'charcoal heightened with white chalk on green wove paper' +p259528 +sg225236 +S'1856' +p259529 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000984.jpg' +p259530 +sg225240 +g27 +sa(dp259531 +g225230 +S'Landscape' +p259532 +sg225232 +S'William Trost Richards' +p259533 +sg225234 +S'graphite on wove paper' +p259534 +sg225236 +S'1862' +p259535 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0d9.jpg' +p259536 +sg225240 +g27 +sa(dp259537 +g225230 +S'Hudson River Landing [recto]' +p259538 +sg225232 +S'Alexander Robertson' +p259539 +sg225234 +S'pen with gray and black ink on laid paper' +p259540 +sg225236 +S'1796' +p259541 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e47a.jpg' +p259542 +sg225240 +g27 +sa(dp259543 +g225232 +S'Alexander Robertson' +p259544 +sg225240 +g27 +sg225234 +S'graphite on laid paper' +p259545 +sg225230 +S'Highlands from Newburgh [verso]' +p259546 +sg225236 +S'in or after 1794' +p259547 +sa(dp259548 +g225232 +S'Boardman Robinson' +p259549 +sg225240 +g27 +sg225234 +S'charcoal? and graphite on wove paper' +p259550 +sg225230 +S'Charles W. Eliot' +p259551 +sg225236 +S'1904' +p259552 +sa(dp259553 +g225232 +S'Boardman Robinson' +p259554 +sg225240 +g27 +sg225234 +S'black crayon, pen and black ink, and graphite heightened with white on paperboard' +p259555 +sg225230 +S'Enter Miss Hazzard' +p259556 +sg225236 +S'c. 1908' +p259557 +sa(dp259558 +g225230 +S'Capilla Real Entablature, Granada' +p259559 +sg225232 +S'John Singer Sargent' +p259560 +sg225234 +S'graphite' +p259561 +sg225236 +S'1912' +p259562 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004fcb.jpg' +p259563 +sg225240 +g27 +sa(dp259564 +g225230 +S'The Horse Shoe on the Shanandoa (sic), Virginia' +p259565 +sg225232 +S'Joshua Shaw' +p259566 +sg225234 +S'pen and brown ink on laid paper' +p259567 +sg225236 +S'1820s' +p259568 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0e4.jpg' +p259569 +sg225240 +g27 +sa(dp259570 +g225230 +S'Munich Factory' +p259571 +sg225232 +S'Walter Shirlaw' +p259572 +sg225234 +S'graphite' +p259573 +sg225236 +S'unknown date\n' +p259574 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4cc.jpg' +p259575 +sg225240 +g27 +sa(dp259576 +g225230 +S'Man Seated at a Table' +p259577 +sg225232 +S'John Rubens Smith' +p259578 +sg225234 +S'graphite' +p259579 +sg225236 +S'1819' +p259580 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4c8.jpg' +p259581 +sg225240 +g27 +sa(dp259582 +g225232 +S'John Sloan' +p259583 +sg225240 +g27 +sg225234 +S'pen and black ink over graphite' +p259584 +sg225230 +S'Self-Portrait' +p259585 +sg225236 +S'unknown date\n' +p259586 +sa(dp259587 +g225232 +S'Joseph Stella' +p259588 +sg225240 +g27 +sg225234 +S'graphite on wove paper' +p259589 +sg225230 +S'Seeking the Reference' +p259590 +sg225236 +S'c. 1910' +p259591 +sa(dp259592 +g225230 +S'Lafayette (Two Views)' +p259593 +sg225232 +S'Thomas Sully' +p259594 +sg225234 +S'brush and black ink with gray and brown wash on wove paper' +p259595 +sg225236 +S'c. 1825' +p259596 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0e3.jpg' +p259597 +sg225240 +g27 +sa(dp259598 +g225230 +S'Figure Costume Study for Columbus Mural, Washington, D.C.' +p259599 +sg225232 +S'John Vanderlyn' +p259600 +sg225234 +S'brush and brown ink with brown wash heightened with white' +p259601 +sg225236 +S'in or after 1837' +p259602 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000eb/a000ebac.jpg' +p259603 +sg225240 +g27 +sa(dp259604 +g225230 +S'Portrait of a Seated Man' +p259605 +sg225232 +S'John Vanderlyn' +p259606 +sg225234 +S'black chalk on bristol board' +p259607 +sg225236 +S'c. 1800' +p259608 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0e5.jpg' +p259609 +sg225240 +g27 +sa(dp259610 +g225230 +S'Self-Portrait' +p259611 +sg225232 +S'John Vanderlyn' +p259612 +sg225234 +S'charcoal and (graphite?) on tan wove paper' +p259613 +sg225236 +S'unknown date\n' +p259614 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4d1.jpg' +p259615 +sg225240 +g27 +sa(dp259616 +g225230 +S'Tmui of Ptolemy' +p259617 +sg225232 +S'Elihu Vedder' +p259618 +sg225234 +S'black crayon on green wove paper' +p259619 +sg225236 +S'1890' +p259620 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4e4.jpg' +p259621 +sg225240 +g27 +sa(dp259622 +g225230 +S'George Reynolds' +p259623 +sg225232 +S'John Quincy Adams Ward' +p259624 +sg225234 +S'pen and brown-black ink over graphite' +p259625 +sg225236 +S'1859' +p259626 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0ea.jpg' +p259627 +sg225240 +g27 +sa(dp259628 +g225230 +S'Johnson Mundy, Sculptor' +p259629 +sg225232 +S'John Quincy Adams Ward' +p259630 +sg225234 +S'pen and brown ink over graphite on wove paper' +p259631 +sg225236 +S'1857' +p259632 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0e9.jpg' +p259633 +sg225240 +g27 +sa(dp259634 +g225230 +S'Sketching - George Fuller' +p259635 +sg225232 +S'John Quincy Adams Ward' +p259636 +sg225234 +S'pen and brown ink over graphite on wove paper' +p259637 +sg225236 +S'1858' +p259638 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0e8.jpg' +p259639 +sg225240 +g27 +sa(dp259640 +g225230 +S'Sketching - Emanuel Leutze' +p259641 +sg225232 +S'John Quincy Adams Ward' +p259642 +sg225234 +S'pen and brown ink over graphite on wove paper' +p259643 +sg225236 +S'1858' +p259644 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0e7.jpg' +p259645 +sg225240 +g27 +sa(dp259646 +g225230 +S'Sketch Class Series - E.W. Perry' +p259647 +sg225232 +S'John Quincy Adams Ward' +p259648 +sg225234 +S'pen and brown ink over graphite on wove paper' +p259649 +sg225236 +S'1860' +p259650 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0eb.jpg' +p259651 +sg225240 +g27 +sa(dp259652 +g225230 +S'H.K. Brown' +p259653 +sg225232 +S'John Quincy Adams Ward' +p259654 +sg225234 +S'pen and brown ink over graphite on wove paper' +p259655 +sg225236 +S'1859' +p259656 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0e6.jpg' +p259657 +sg225240 +g27 +sa(dp259658 +g225230 +S'J.Q.A. Ward' +p259659 +sg225232 +S'William de Hartburn Washington' +p259660 +sg225234 +S'graphite' +p259661 +sg225236 +S'c. 1858' +p259662 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4d6.jpg' +p259663 +sg225240 +g27 +sa(dp259664 +g225230 +S'Dalles of St. Louis' +p259665 +sg225232 +S'Alfred R. Waud' +p259666 +sg225234 +S'graphite heightened with white on green wove paper' +p259667 +sg225236 +S'early 1880s' +p259668 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0f0.jpg' +p259669 +sg225240 +g27 +sa(dp259670 +g225230 +S'Dalles of the St. Louis' +p259671 +sg225232 +S'Alfred R. Waud' +p259672 +sg225234 +S'wood engraving' +p259673 +sg225236 +S'unknown date\n' +p259674 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f2/a000f2c8.jpg' +p259675 +sg225240 +g27 +sa(dp259676 +g225230 +S'Railroad on the Dalles of the St. Louis' +p259677 +sg225232 +S'Alfred R. Waud' +p259678 +sg225234 +S'graphite heightened with white on light green wove paper' +p259679 +sg225236 +S'1882' +p259680 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4d2.jpg' +p259681 +sg225240 +g27 +sa(dp259682 +g225230 +S'Praying Figures in a Church, Florence' +p259683 +sg225232 +S'Robert Walter Weir' +p259684 +sg225234 +S'pen and brown and black ink with brown wash over graphite on wove paper' +p259685 +sg225236 +S'c. 1824/1827' +p259686 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0ed.jpg' +p259687 +sg225240 +g27 +sa(dp259688 +g225230 +S'"Tis but Fancy\'s Sketch"' +p259689 +sg225232 +S'Robert Walter Weir' +p259690 +sg225234 +S'graphite on wove paper' +p259691 +sg225236 +S'1850s' +p259692 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4d3.jpg' +p259693 +sg225240 +g27 +sa(dp259694 +g225230 +S'Countess of Huntingdon' +p259695 +sg225232 +S'Benjamin West' +p259696 +sg225234 +S'pen and brown ink and (graphite?) on laid paper' +p259697 +sg225236 +S'unknown date\n' +p259698 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0a1.jpg' +p259699 +sg225240 +g27 +sa(dp259700 +g225232 +S'Benjamin West' +p259701 +sg225240 +g27 +sg225234 +S', possibly c. 1758/1759' +p259702 +sg225230 +S'Death of Iphigenia (?)' +p259703 +sg225236 +S'\n' +p259704 +sa(dp259705 +g225230 +S'Charles L. Freer (?)' +p259706 +sg225232 +S'James McNeill Whistler' +p259707 +sg225234 +S', late 19th century' +p259708 +sg225236 +S'\n' +p259709 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0fb.jpg' +p259710 +sg225240 +g27 +sa(dp259711 +g225230 +S'The Battery, New York' +p259712 +sg225232 +S'Stanford White' +p259713 +sg225234 +S'graphite on green wove paper' +p259714 +sg225236 +S'c. 1900' +p259715 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4e1.jpg' +p259716 +sg225240 +g27 +sa(dp259717 +g225230 +S'Manhattan Bridge' +p259718 +sg225232 +S'Stanford White' +p259719 +sg225234 +S'graphite on blue-gray laid paper' +p259720 +sg225236 +S'unknown date\n' +p259721 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4e2.jpg' +p259722 +sg225240 +g27 +sa(dp259723 +g225230 +S'North on Broadway from Trinity Church' +p259724 +sg225232 +S'Stanford White' +p259725 +sg225234 +S'graphite on blue-gray laid paper' +p259726 +sg225236 +S'c. 1900' +p259727 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4e0.jpg' +p259728 +sg225240 +g27 +sa(dp259729 +g225230 +S'Miami and Ohio Rivers' +p259730 +sg225232 +S'Alexander Helwig Wyant' +p259731 +sg225234 +S'graphite on tan wove paper' +p259732 +sg225236 +S'1865' +p259733 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4df.jpg' +p259734 +sg225240 +g27 +sa(dp259735 +g225230 +S'Nighttime, Enigma, and Nostalgia' +p259736 +sg225232 +S'Arshile Gorky' +p259737 +sg225234 +S'pen and black and brown inks over graphite on wove paper' +p259738 +sg225236 +S'c. 1932/1934' +p259739 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008e6.jpg' +p259740 +sg225240 +g27 +sa(dp259741 +g225230 +S'The Village Street' +p259742 +sg225232 +S'Esaias van de Velde I' +p259743 +sg225234 +S'black chalk with brown and gray wash on laid paper' +p259744 +sg225236 +S'unknown date\n' +p259745 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d05.jpg' +p259746 +sg225240 +g27 +sa(dp259747 +g225232 +S'Abraham Genoels II' +p259748 +sg225240 +g27 +sg225234 +S'etching' +p259749 +sg225230 +S'Large View of a Garden' +p259750 +sg225236 +S'unknown date\n' +p259751 +sa(dp259752 +g225230 +S'Moonlit Landscape with Tree at the Right' +p259753 +sg225232 +S'William Fowler Hopson' +p259754 +sg225234 +S'monotype' +p259755 +sg225236 +S'c. 1903' +p259756 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f2/a000f291.jpg' +p259757 +sg225240 +g27 +sa(dp259758 +g225230 +S'Moonlit Landscape with Tree at the Left' +p259759 +sg225232 +S'William Fowler Hopson' +p259760 +sg225234 +S'monotype' +p259761 +sg225236 +S'c. 1903' +p259762 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f2/a000f292.jpg' +p259763 +sg225240 +g27 +sa(dp259764 +g225230 +S'Endymion' +p259765 +sg225232 +S'Artist Information (' +p259766 +sg225234 +S'(artist after)' +p259767 +sg225236 +S'\n' +p259768 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c74d.jpg' +p259769 +sg225240 +g27 +sa(dp259770 +g225230 +S'Francois Boucher' +p259771 +sg225232 +S'Manuel Salvador Carmona' +p259772 +sg225234 +S'etching and engraving' +p259773 +sg225236 +S'1761' +p259774 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b0c.jpg' +p259775 +sg225240 +g27 +sa(dp259776 +g225230 +S'Nicolas Coustou' +p259777 +sg225232 +S'Charles Dupuis' +p259778 +sg225234 +S'engraving' +p259779 +sg225236 +S'1730' +p259780 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ea4.jpg' +p259781 +sg225240 +g27 +sa(dp259782 +g225230 +S'Jean-Baptiste Greuze' +p259783 +sg225232 +S'Artist Information (' +p259784 +sg225234 +S'(artist after)' +p259785 +sg225236 +S'\n' +p259786 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cfe.jpg' +p259787 +sg225240 +g27 +sa(dp259788 +g225230 +S'Nicolas Delaunay' +p259789 +sg225232 +S'Artist Information (' +p259790 +sg225234 +S'(artist after)' +p259791 +sg225236 +S'\n' +p259792 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d1a.jpg' +p259793 +sg225240 +g27 +sa(dp259794 +g225230 +S'Christophe Gabriel Allegrain' +p259795 +sg225232 +S'Artist Information (' +p259796 +sg225234 +S'(artist after)' +p259797 +sg225236 +S'\n' +p259798 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b360.jpg' +p259799 +sg225240 +g27 +sa(dp259800 +g225230 +S'Anne Vallayer-Coster' +p259801 +sg225232 +S'Artist Information (' +p259802 +sg225234 +S'(artist after)' +p259803 +sg225236 +S'\n' +p259804 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d3a.jpg' +p259805 +sg225240 +g27 +sa(dp259806 +g225230 +S'Hubert Gravelot' +p259807 +sg225232 +S'Artist Information (' +p259808 +sg225234 +S'(artist after)' +p259809 +sg225236 +S'\n' +p259810 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d45.jpg' +p259811 +sg225240 +g27 +sa(dp259812 +g225230 +S'Jean Restout' +p259813 +sg225232 +S'Artist Information (' +p259814 +sg225234 +S'(artist after)' +p259815 +sg225236 +S'\n' +p259816 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00097/a000972d.jpg' +p259817 +sg225240 +g27 +sa(dp259818 +g225230 +S'Nicolas Poussin' +p259819 +sg225232 +S'Artist Information (' +p259820 +sg225234 +S'(artist after)' +p259821 +sg225236 +S'\n' +p259822 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c28.jpg' +p259823 +sg225240 +g27 +sa(dp259824 +g225230 +S'Jean Baptiste Simeon Chardin' +p259825 +sg225232 +S'Jean Francois Rousseau' +p259826 +sg225234 +S'etching' +p259827 +sg225236 +S'1776' +p259828 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c72.jpg' +p259829 +sg225240 +g27 +sa(dp259830 +g225230 +S'Jean Baptiste Descamps' +p259831 +sg225232 +S'Jean Francois Rousseau' +p259832 +sg225234 +S'etching' +p259833 +sg225236 +S'1761' +p259834 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c73.jpg' +p259835 +sg225240 +g27 +sa(dp259836 +g225230 +S'Jean Jouvenet' +p259837 +sg225232 +S'Artist Information (' +p259838 +sg225234 +S'(artist after)' +p259839 +sg225236 +S'\n' +p259840 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cb1.jpg' +p259841 +sg225240 +g27 +sa(dp259842 +g225230 +S'Wooded Landscape with Travelers' +p259843 +sg225232 +S'Adam Pynacker' +p259844 +sg225234 +S'oil on canvas' +p259845 +sg225236 +S'late 1640s' +p259846 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e79.jpg' +p259847 +sg225240 +g27 +sa(dp259848 +g225230 +S'Another Time' +p259849 +sg225232 +S'Kenneth Noland' +p259850 +sg225234 +S'acrylic on canvas' +p259851 +sg225236 +S'1973' +p259852 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a000018b.jpg' +p259853 +sg225240 +g27 +sa(dp259854 +g225230 +S'Chyrow II' +p259855 +sg225232 +S'Frank Stella' +p259856 +sg225234 +S'mixed media' +p259857 +sg225236 +S'1972' +p259858 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000225.jpg' +p259859 +sg225240 +g27 +sa(dp259860 +g225230 +S'Capricorn' +p259861 +sg225232 +S'Max Ernst' +p259862 +sg225234 +S'bronze' +p259863 +sg225236 +S'model 1948, cast 1975' +p259864 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00030/a0003043.jpg' +p259865 +sg225240 +g27 +sa(dp259866 +g225232 +S'Artist Information (' +p259867 +sg225240 +g27 +sg225234 +S'(artist after)' +p259868 +sg225230 +S'Coquarlequin' +p259869 +sg225236 +S'\n' +p259870 +sa(dp259871 +g225232 +S'Artist Information (' +p259872 +sg225240 +g27 +sg225234 +S'(artist after)' +p259873 +sg225230 +S'Nocturne' +p259874 +sg225236 +S'\n' +p259875 +sa(dp259876 +g225232 +S'Giovanni Battista Piranesi' +p259877 +sg225240 +g27 +sg225234 +S'etching and engraving [printed 1978]' +p259878 +sg225230 +S'Fantastic Port Monument [left plate]' +p259879 +sg225236 +S'late 1740s' +p259880 +sa(dp259881 +g225232 +S'Giovanni Battista Piranesi' +p259882 +sg225240 +g27 +sg225234 +S'etching and engraving [printed 1978]' +p259883 +sg225230 +S'Fantastic Port Monument [right plate]' +p259884 +sg225236 +S'late 1740s' +p259885 +sa(dp259886 +g225232 +S'Jir\xc3\xad Anderle' +p259887 +sg225240 +g27 +sg225234 +S'color drypoint and mezzotint' +p259888 +sg225230 +S'The Pleasant Hazards of the Swing' +p259889 +sg225236 +S'1978' +p259890 +sa(dp259891 +g225232 +S'Rockwell Kent' +p259892 +sg225240 +g27 +sg225234 +S'wood engraving on maple' +p259893 +sg225230 +S'Starry Night' +p259894 +sg225236 +S'1933' +p259895 +sa(dp259896 +g225230 +S'San Gimignano' +p259897 +sg225232 +S'Joseph Pennell' +p259898 +sg225234 +S'etching' +p259899 +sg225236 +S'1883' +p259900 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b42.jpg' +p259901 +sg225240 +g27 +sa(dp259902 +g225230 +S'The Hat Pin (Le chapeau epingle)' +p259903 +sg225232 +S'Auguste Renoir' +p259904 +sg225234 +S'drypoint' +p259905 +sg225236 +S'1894' +p259906 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a00099b9.jpg' +p259907 +sg225240 +g27 +sa(dp259908 +g225232 +S'Artist Information (' +p259909 +sg225240 +g27 +sg225234 +S'(artist)' +p259910 +sg225230 +S'Joan Mir\xc3\xb3' +p259911 +sg225236 +S'\n' +p259912 +sa(dp259913 +g225232 +S'Roi Partridge' +p259914 +sg225240 +g27 +sg225234 +S'etching and drypoint on wove paper' +p259915 +sg225230 +S'Snowfields' +p259916 +sg225236 +S'1927' +p259917 +sa(dp259918 +g225230 +S'The Four Horsemen' +p259919 +sg225232 +S'Albrecht D\xc3\xbcrer' +p259920 +sg225234 +S'woodcut' +p259921 +sg225236 +S'probably c. 1496/1498' +p259922 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b146.jpg' +p259923 +sg225240 +g27 +sa(dp259924 +g225230 +S'A Boy with a Lute' +p259925 +sg225232 +S'Giovanni Battista Piazzetta' +p259926 +sg225234 +S'black chalk and charcoal, heightened with white chalk on (faded) blue laid paper' +p259927 +sg225236 +S'c. 1740' +p259928 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00037/a00037cf.jpg' +p259929 +sg225240 +g27 +sa(dp259930 +g225230 +S'Study for a Painting' +p259931 +sg225232 +S'Oscar F. Bluemner' +p259932 +sg225234 +S'graphite on tracing paper' +p259933 +sg225236 +S'1929' +p259934 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008ae.jpg' +p259935 +sg225240 +g27 +sa(dp259936 +g225232 +S'Guy P\xc3\xa8ne du Bois' +p259937 +sg225240 +g27 +sg225234 +S'pen and black ink' +p259938 +sg225230 +S'Study for Saratoga Springs, NY, Post Office Mural [recto]' +p259939 +sg225236 +S'c. 1937' +p259940 +sa(dp259941 +g225232 +S'Guy P\xc3\xa8ne du Bois' +p259942 +sg225240 +g27 +sg225234 +S'graphite' +p259943 +sg225230 +S'Two Figure Studies [verso]' +p259944 +sg225236 +S'unknown date\n' +p259945 +sa(dp259946 +g225230 +S'Yasuo Kuniyoshi' +p259947 +sg225232 +S'Emil Ganso' +p259948 +sg225234 +S'graphite and pen and ink' +p259949 +sg225236 +S'probably c. 1930/1932' +p259950 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ec/a000ec3d.jpg' +p259951 +sg225240 +g27 +sa(dp259952 +g225230 +S'Strike' +p259953 +sg225232 +S'William Gropper' +p259954 +sg225234 +S'charcoal, touches of splattered black ink, and white gouache' +p259955 +sg225236 +S'unknown date\n' +p259956 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008ee.jpg' +p259957 +sg225240 +g27 +sa(dp259958 +g225232 +S'William Gropper' +p259959 +sg225240 +g27 +sg225234 +S'brush and black ink over graphite on laid paper' +p259960 +sg225230 +S'Wheat Cart, Russia' +p259961 +sg225236 +S'unknown date\n' +p259962 +sa(dp259963 +g225230 +S'Lewisohn Stadium, New York' +p259964 +sg225232 +S'George Overbury (Pop) Hart' +p259965 +sg225234 +S'pen and black ink with charcoal and gray wash on brown paper' +p259966 +sg225236 +S'c. 1928' +p259967 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008f0.jpg' +p259968 +sg225240 +g27 +sa(dp259969 +g225232 +S'Harrison Keller' +p259970 +sg225240 +g27 +sg225234 +S'graphite and (pastel?)' +p259971 +sg225230 +S'Standing Nude' +p259972 +sg225236 +S'unknown date\n' +p259973 +sa(dp259974 +g225232 +S'Helen A. Loggie' +p259975 +sg225240 +g27 +sg225234 +S'pen and black ink and graphite' +p259976 +sg225230 +S'Northwest Front' +p259977 +sg225236 +S'1958' +p259978 +sa(dp259979 +g225230 +S'Self-Portrait' +p259980 +sg225232 +S'Jerome Myers' +p259981 +sg225234 +S'red, black, and white chalk on laid paper' +p259982 +sg225236 +S'1922' +p259983 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ea/a000ea7a.jpg' +p259984 +sg225240 +g27 +sa(dp259985 +g225232 +S'Diego Rivera' +p259986 +sg225240 +g27 +sg225234 +S'brush and black ink' +p259987 +sg225230 +S'Boy with Melon' +p259988 +sg225236 +S'1936' +p259989 +sa(dp259990 +g225232 +S'Raphael Soyer' +p259991 +sg225240 +g27 +sg225234 +S'black crayon on wove paper' +p259992 +sg225230 +S'Mending the Hem' +p259993 +sg225236 +S'unknown date\n' +p259994 +sa(dp259995 +g225232 +S'Anthony Caro' +p259996 +sg225240 +g27 +sg225234 +S'black felt-tip pen on cardboard (doughnut box)' +p259997 +sg225230 +S'Study for "National Gallery Ledge Piece"' +p259998 +sg225236 +S'1978' +p259999 +sa(dp260000 +g225232 +S'Giovanni Battista Piranesi' +p260001 +sg225240 +g27 +sg225234 +S'1 vol: text only' +p260002 +sg225230 +S"Diverse Maniere d'adornare i Cammini (volume I)" +p260003 +sg225236 +S'c. 1768, published 1769' +p260004 +sa(dp260005 +g225232 +S'Giovanni Battista Piranesi' +p260006 +sg225240 +g27 +sg225234 +S'1 vol: 65 etchings' +p260007 +sg225230 +S"Diverse Maniere d'adornare i Cammini (volume II)" +p260008 +sg225236 +S'published 1769' +p260009 +sa(dp260010 +g225230 +S'Allegory of "Pride Goeth Before Destruction...": A Gentleman and a Lady on Horseback' +p260011 +sg225232 +S'Christoph Bockstorfer' +p260012 +sg225234 +S'etching (iron)' +p260013 +sg225236 +S'unknown date\n' +p260014 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ad/a000adf2.jpg' +p260015 +sg225240 +g27 +sa(dp260016 +g225230 +S'Emperors Charles V and Ferdinand I' +p260017 +sg225232 +S'Christoph Bockstorfer' +p260018 +sg225234 +S'etching (iron)' +p260019 +sg225236 +S'unknown date\n' +p260020 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ae/a000ae75.jpg' +p260021 +sg225240 +g27 +sa(dp260022 +g225230 +S'Interior of the Church of Saint Maria Magdalena with the Parable of the Offering of the Widow' +p260023 +sg225232 +S'Daniel Hopfer' +p260024 +sg225234 +S'etching (iron), with open biting' +p260025 +sg225236 +S'unknown date\n' +p260026 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b272.jpg' +p260027 +sg225240 +g27 +sa(dp260028 +g225230 +S'Jesus Christ Giving the Mission to the Apostles and Other New Testament Scenes' +p260029 +sg225232 +S'Daniel Hopfer' +p260030 +sg225234 +S'etching (iron)' +p260031 +sg225236 +S'unknown date\n' +p260032 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b0e1.jpg' +p260033 +sg225240 +g27 +sa(dp260034 +g225230 +S'Ornament for Dagger Sheath' +p260035 +sg225232 +S'Daniel Hopfer' +p260036 +sg225234 +S'etching (iron) with open biting' +p260037 +sg225236 +S'unknown date\n' +p260038 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac67.jpg' +p260039 +sg225240 +g27 +sa(dp260040 +g225230 +S'Two Candelabrum Designs' +p260041 +sg225232 +S'Daniel Hopfer' +p260042 +sg225234 +S'etching (iron)' +p260043 +sg225236 +S'unknown date\n' +p260044 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac6b.jpg' +p260045 +sg225240 +g27 +sa(dp260046 +g225230 +S'Reliquary with Piet\xc3\xa0' +p260047 +sg225232 +S'Daniel Hopfer' +p260048 +sg225234 +S'etching (iron), plate bitten twice' +p260049 +sg225236 +S'unknown date\n' +p260050 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac72.jpg' +p260051 +sg225240 +g27 +sa(dp260052 +g225230 +S'Soldier Embracing a Woman' +p260053 +sg225232 +S'Daniel Hopfer' +p260054 +sg225234 +S'etching (iron)' +p260055 +sg225236 +S'c. 1530' +p260056 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac77.jpg' +p260057 +sg225240 +g27 +sa(dp260058 +g225230 +S'Three German Soldiers Armed with Halberds' +p260059 +sg225232 +S'Daniel Hopfer' +p260060 +sg225234 +S'etching (iron)' +p260061 +sg225236 +S'unknown date\n' +p260062 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac66.jpg' +p260063 +sg225240 +g27 +sa(dp260064 +g225230 +S'Ornamental Design for Coffered Ceiling' +p260065 +sg225232 +S'Daniel Hopfer' +p260066 +sg225234 +S'etching and aquatint' +p260067 +sg225236 +S'unknown date\n' +p260068 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac6d.jpg' +p260069 +sg225240 +g27 +sa(dp260070 +g225230 +S'Ornament with Sirens and Ornament with Genius' +p260071 +sg225232 +S'Daniel Hopfer' +p260072 +sg225234 +S'etching (iron) with open bite or sulphur tint for tone' +p260073 +sg225236 +S'unknown date\n' +p260074 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac69.jpg' +p260075 +sg225240 +g27 +sa(dp260076 +g225230 +S'Combat between Horsemen and Foot Soldiers' +p260077 +sg225232 +S'Artist Information (' +p260078 +sg225234 +S'(artist after)' +p260079 +sg225236 +S'\n' +p260080 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b274.jpg' +p260081 +sg225240 +g27 +sa(dp260082 +g225230 +S'The Hay Harvest (June)' +p260083 +sg225232 +S'Jorg Breu I' +p260084 +sg225234 +S'pen and black ink with gray wash on laid paper' +p260085 +sg225236 +S'in or before 1521' +p260086 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022c5.jpg' +p260087 +sg225240 +g27 +sa(dp260088 +g225230 +S'The Wine Harvest (September)' +p260089 +sg225232 +S'Jorg Breu I' +p260090 +sg225234 +S'pen and black ink with gray wash on laid paper' +p260091 +sg225236 +S'in or before 1521' +p260092 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a000798b.jpg' +p260093 +sg225240 +g27 +sa(dp260094 +g225230 +S'Madonna in the Clouds' +p260095 +sg225232 +S'Federico Barocci' +p260096 +sg225234 +S'etching and engraving' +p260097 +sg225236 +S'unknown date\n' +p260098 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c87f.jpg' +p260099 +sg225240 +g27 +sa(dp260100 +g225230 +S'On dit que les Parisiens...' +p260101 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260102 +sg225234 +S'lithograph' +p260103 +sg225236 +S'1864' +p260104 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094e3.jpg' +p260105 +sg225240 +g27 +sa(dp260106 +g225230 +S'Title Page' +p260107 +sg225232 +S'Artist Information (' +p260108 +sg225234 +S'(artist after)' +p260109 +sg225236 +S'\n' +p260110 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f21.jpg' +p260111 +sg225240 +g27 +sa(dp260112 +g225230 +S'Ornament with Parasol and Hanging Basket' +p260113 +sg225232 +S'Artist Information (' +p260114 +sg225234 +S'(artist after)' +p260115 +sg225236 +S'\n' +p260116 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f23.jpg' +p260117 +sg225240 +g27 +sa(dp260118 +g225230 +S'Ornament with a Peacock' +p260119 +sg225232 +S'Artist Information (' +p260120 +sg225234 +S'(artist after)' +p260121 +sg225236 +S'\n' +p260122 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f25.jpg' +p260123 +sg225240 +g27 +sa(dp260124 +g225230 +S'Ornament with a Monkey' +p260125 +sg225232 +S'Artist Information (' +p260126 +sg225234 +S'(artist after)' +p260127 +sg225236 +S'\n' +p260128 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f24.jpg' +p260129 +sg225240 +g27 +sa(dp260130 +g225230 +S'Ornament with a Strut and a Railing' +p260131 +sg225232 +S'Artist Information (' +p260132 +sg225234 +S'(artist after)' +p260133 +sg225236 +S'\n' +p260134 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f20.jpg' +p260135 +sg225240 +g27 +sa(dp260136 +g225230 +S'Ornament with Flowers' +p260137 +sg225232 +S'Artist Information (' +p260138 +sg225234 +S'(artist after)' +p260139 +sg225236 +S'\n' +p260140 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f22.jpg' +p260141 +sg225240 +g27 +sa(dp260142 +g225230 +S'Bolikana and Markolfus' +p260143 +sg225232 +S'Daniel Hopfer' +p260144 +sg225234 +S'etching and engraving' +p260145 +sg225236 +S'unknown date\n' +p260146 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b1b2.jpg' +p260147 +sg225240 +g27 +sa(dp260148 +g225230 +S"L'Amiti\xc3\xa9 d'un grand chimiste..." +p260149 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260150 +sg225234 +S'lithograph' +p260151 +sg225236 +S'1841' +p260152 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000925b.jpg' +p260153 +sg225240 +g27 +sa(dp260154 +g225230 +S'Ah!... les com\xc3\xa8tes...' +p260155 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260156 +sg225234 +S'lithograph' +p260157 +sg225236 +S'1858' +p260158 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094ce.jpg' +p260159 +sg225240 +g27 +sa(dp260160 +g225230 +S'Nouveau parapluie, par Brevet...' +p260161 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260162 +sg225234 +S'lithograph' +p260163 +sg225236 +S'1840' +p260164 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093a4.jpg' +p260165 +sg225240 +g27 +sa(dp260166 +g225230 +S'Avoir perdu sa demi-tasse au Domino et sa bourse dans la rue' +p260167 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260168 +sg225234 +S'lithograph' +p260169 +sg225236 +S'1839' +p260170 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092f7.jpg' +p260171 +sg225240 +g27 +sa(dp260172 +g225230 +S'Origine des B\xc3\xa9doins a Paris' +p260173 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260174 +sg225234 +S'lithograph' +p260175 +sg225236 +S'1841' +p260176 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009259.jpg' +p260177 +sg225240 +g27 +sa(dp260178 +g225230 +S'Chiennes de bottes!...' +p260179 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260180 +sg225234 +S'lithograph' +p260181 +sg225236 +S'1840' +p260182 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000925a.jpg' +p260183 +sg225240 +g27 +sa(dp260184 +g225230 +S"Tu m'emb\xc3\xaates, mon \xc3\xa9pouse!... v'la une heure..." +p260185 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260186 +sg225234 +S'lithograph' +p260187 +sg225236 +S'1843' +p260188 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009254.jpg' +p260189 +sg225240 +g27 +sa(dp260190 +g225230 +S'Un Compl\xc3\xa9ment de brillante \xc3\xa9ducation' +p260191 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260192 +sg225234 +S'lithograph' +p260193 +sg225236 +S'1844/1845' +p260194 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092fd.jpg' +p260195 +sg225240 +g27 +sa(dp260196 +g225230 +S'Mon cher! vous vous \xc3\xaates admirablement... \xc3\xa9vanoui...' +p260197 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260198 +sg225234 +S'lithograph on newsprint' +p260199 +sg225236 +S'1838' +p260200 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009232.jpg' +p260201 +sg225240 +g27 +sa(dp260202 +g225230 +S'Vilain dormeur, va!' +p260203 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260204 +sg225234 +S'lithograph on newsprint' +p260205 +sg225236 +S'1838' +p260206 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000922d.jpg' +p260207 +sg225240 +g27 +sa(dp260208 +g225230 +S'Est-il joli!... ce ch\xc3\xa9rubin!...' +p260209 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260210 +sg225234 +S'lithograph on newsprint' +p260211 +sg225236 +S'1839' +p260212 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000922b.jpg' +p260213 +sg225240 +g27 +sa(dp260214 +g225230 +S'Charmant... trainant tous les coeurs apr\xc3\xa8s soi...' +p260215 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260216 +sg225234 +S'lithograph on newsprint' +p260217 +sg225236 +S'1839' +p260218 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009233.jpg' +p260219 +sg225240 +g27 +sa(dp260220 +g225230 +S"Y n'y a rien comm' \xc3\xa7a pour le rhume..." +p260221 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260222 +sg225234 +S'lithograph on newsprint' +p260223 +sg225236 +S'1838' +p260224 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000922f.jpg' +p260225 +sg225240 +g27 +sa(dp260226 +g225230 +S'Vous allez voir!... \xc3\xa7a va arr\xc3\xaater le sang...' +p260227 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260228 +sg225234 +S'lithograph on newsprint' +p260229 +sg225236 +S'1838' +p260230 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009234.jpg' +p260231 +sg225240 +g27 +sa(dp260232 +g225230 +S"La Maman - Est-il gentil a manger son sucre d'orge!..." +p260233 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260234 +sg225234 +S'lithograph on newsprint' +p260235 +sg225236 +S'1838' +p260236 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009235.jpg' +p260237 +sg225240 +g27 +sa(dp260238 +g225230 +S"Lolo qu'aimes-tu mieux de ton papa ou de ta maman..." +p260239 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260240 +sg225234 +S'lithograph on newsprint' +p260241 +sg225236 +S'1838' +p260242 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000922e.jpg' +p260243 +sg225240 +g27 +sa(dp260244 +g225230 +S'Allons... baisez ce maitre... tout de suite...' +p260245 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260246 +sg225234 +S'lithograph on newsprint' +p260247 +sg225236 +S'1838' +p260248 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009228.jpg' +p260249 +sg225240 +g27 +sa(dp260250 +g225230 +S'Le pur havane! Le cigare de marseille' +p260251 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260252 +sg225234 +S'lithograph on newsprint' +p260253 +sg225236 +S'1838' +p260254 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000922a.jpg' +p260255 +sg225240 +g27 +sa(dp260256 +g225230 +S'Henri!... vous me jugez bien mal!...' +p260257 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260258 +sg225234 +S'lithograph on newsprint' +p260259 +sg225236 +S'1838' +p260260 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009229.jpg' +p260261 +sg225240 +g27 +sa(dp260262 +g225230 +S'Appuyez fort, \xc3\xa7a fait rentrer la bosse...' +p260263 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260264 +sg225234 +S'lithograph on newsprint' +p260265 +sg225236 +S'1838' +p260266 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000922c.jpg' +p260267 +sg225240 +g27 +sa(dp260268 +g225230 +S'Actionnaires de mines...' +p260269 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260270 +sg225234 +S'lithograph on newsprint' +p260271 +sg225236 +S'1838' +p260272 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009230.jpg' +p260273 +sg225240 +g27 +sa(dp260274 +g225230 +S"Bertrand, dis donc, s'ils allaient nous faire..." +p260275 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260276 +sg225234 +S'lithograph on newsprint' +p260277 +sg225236 +S'1838' +p260278 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009226.jpg' +p260279 +sg225240 +g27 +sa(dp260280 +g225230 +S'Farce dramatique' +p260281 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260282 +sg225234 +S'lithograph on newsprint' +p260283 +sg225236 +S'1841' +p260284 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009289.jpg' +p260285 +sg225240 +g27 +sa(dp260286 +g225230 +S"Salut! Terre de l'hospitalit\xc3\xa9..." +p260287 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260288 +sg225234 +S'lithograph on newsprint' +p260289 +sg225236 +S'1840' +p260290 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009283.jpg' +p260291 +sg225240 +g27 +sa(dp260292 +g225230 +S"L'Adoption - Ah \xc3\xa7a! Robert, mon ami..." +p260293 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260294 +sg225234 +S'lithograph on newsprint' +p260295 +sg225236 +S'1841' +p260296 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009282.jpg' +p260297 +sg225240 +g27 +sa(dp260298 +g225230 +S'Inventaire chez un veuf' +p260299 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260300 +sg225234 +S'lithograph on newsprint' +p260301 +sg225236 +S'1841' +p260302 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009287.jpg' +p260303 +sg225240 +g27 +sa(dp260304 +g225230 +S"L'homme in naturalibus" +p260305 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260306 +sg225234 +S'lithograph on newsprint' +p260307 +sg225236 +S'1841' +p260308 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009288.jpg' +p260309 +sg225240 +g27 +sa(dp260310 +g225230 +S'A tous les coeurs bien n\xc3\xa9s que la patrie est ch\xc3\xa8re!!!' +p260311 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260312 +sg225234 +S'lithograph on newsprint' +p260313 +sg225236 +S'1838' +p260314 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009225.jpg' +p260315 +sg225240 +g27 +sa(dp260316 +g225230 +S'Musique pyrothecnique, Charivarique et Diabolique' +p260317 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260318 +sg225234 +S'lithograph on newsprint' +p260319 +sg225236 +S'1838' +p260320 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000921c.jpg' +p260321 +sg225240 +g27 +sa(dp260322 +g225230 +S'Pi\xc3\xa9ti\xc3\xa9 Filiale' +p260323 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260324 +sg225234 +S'lithograph on newsprint' +p260325 +sg225236 +S'1838' +p260326 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009231.jpg' +p260327 +sg225240 +g27 +sa(dp260328 +g225230 +S'Nouveaut\xc3\xa9s philantropiques...' +p260329 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260330 +sg225234 +S'lithograph on newsprint' +p260331 +sg225236 +S'1841' +p260332 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009284.jpg' +p260333 +sg225240 +g27 +sa(dp260334 +g225230 +S'(Robert) H\xc3\xa9 bien! mon cher directeur...' +p260335 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260336 +sg225234 +S'lithograph on newsprint' +p260337 +sg225236 +S'1841' +p260338 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000927d.jpg' +p260339 +sg225240 +g27 +sa(dp260340 +g225230 +S'Oui, Madame, je suis tout d\xc3\xa9vou\xc3\xa9 a notre... Prince...' +p260341 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260342 +sg225234 +S'lithograph on newsprint' +p260343 +sg225236 +S'1841' +p260344 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009286.jpg' +p260345 +sg225240 +g27 +sa(dp260346 +g225230 +S"Le Pr\xc3\xa9fet de l'Empire" +p260347 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260348 +sg225234 +S'lithograph on newsprint' +p260349 +sg225236 +S'1841' +p260350 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000927a.jpg' +p260351 +sg225240 +g27 +sa(dp260352 +g225230 +S"L'Agent d'affaires" +p260353 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260354 +sg225234 +S'lithograph on newsprint' +p260355 +sg225236 +S'1842' +p260356 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009274.jpg' +p260357 +sg225240 +g27 +sa(dp260358 +g225230 +S'Le Ravageur' +p260359 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260360 +sg225234 +S'lithograph on newsprint' +p260361 +sg225236 +S'1842' +p260362 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009277.jpg' +p260363 +sg225240 +g27 +sa(dp260364 +g225230 +S'Le Maraudeur' +p260365 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260366 +sg225234 +S'lithograph on newsprint' +p260367 +sg225236 +S'1841' +p260368 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009260.jpg' +p260369 +sg225240 +g27 +sa(dp260370 +g225230 +S'Le Ramasseur de bouts de cigares' +p260371 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260372 +sg225234 +S'lithograph on newsprint' +p260373 +sg225236 +S'1841' +p260374 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009264.jpg' +p260375 +sg225240 +g27 +sa(dp260376 +g225230 +S"Le Marchand d'habits" +p260377 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260378 +sg225234 +S'lithograph on newsprint' +p260379 +sg225236 +S'1842' +p260380 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009273.jpg' +p260381 +sg225240 +g27 +sa(dp260382 +g225230 +S'Le Tondeur de chiens' +p260383 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260384 +sg225234 +S'lithograph on newsprint' +p260385 +sg225236 +S'1842' +p260386 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009275.jpg' +p260387 +sg225240 +g27 +sa(dp260388 +g225230 +S"L'Acteur des Funambules" +p260389 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260390 +sg225234 +S'lithograph on newsprint' +p260391 +sg225236 +S'1842' +p260392 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009278.jpg' +p260393 +sg225240 +g27 +sa(dp260394 +g225230 +S'7 heures du matin' +p260395 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260396 +sg225234 +S'lithograph on newsprint' +p260397 +sg225236 +S'1839' +p260398 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009249.jpg' +p260399 +sg225240 +g27 +sa(dp260400 +g225230 +S'Une heure - Promenade au Luxembourg' +p260401 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260402 +sg225234 +S'lithograph on newsprint' +p260403 +sg225236 +S'1839' +p260404 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009252.jpg' +p260405 +sg225240 +g27 +sa(dp260406 +g225230 +S"2 heures - Le gouter d'Azor" +p260407 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260408 +sg225234 +S'lithograph on newsprint' +p260409 +sg225236 +S'1839' +p260410 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009250.jpg' +p260411 +sg225240 +g27 +sa(dp260412 +g225230 +S'9 heures du soir' +p260413 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260414 +sg225234 +S'lithograph on newsprint' +p260415 +sg225236 +S'1839' +p260416 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092f5.jpg' +p260417 +sg225240 +g27 +sa(dp260418 +g225230 +S'M\xc3\xa9nage mod\xc3\xa8le...' +p260419 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260420 +sg225234 +S'lithograph on newsprint' +p260421 +sg225236 +S'1846' +p260422 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009392.jpg' +p260423 +sg225240 +g27 +sa(dp260424 +g225230 +S"Je suis log\xc3\xa9 un peu haut... mais... je jouis d'une jolie vue!" +p260425 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260426 +sg225234 +S'lithograph on newsprint' +p260427 +sg225236 +S'1846' +p260428 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009390.jpg' +p260429 +sg225240 +g27 +sa(dp260430 +g225230 +S'Une Idylle dans les bl\xc3\xa9s' +p260431 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260432 +sg225234 +S'lithograph on newsprint' +p260433 +sg225236 +S'1847' +p260434 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093c2.jpg' +p260435 +sg225240 +g27 +sa(dp260436 +g225230 +S'Quand il y a trente degr\xc3\xa9s de chaleur...' +p260437 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260438 +sg225234 +S'lithograph on newsprint' +p260439 +sg225236 +S'1847' +p260440 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a000939c.jpg' +p260441 +sg225240 +g27 +sa(dp260442 +g225230 +S'Un Veritable amateur' +p260443 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260444 +sg225234 +S'lithograph on newsprint' +p260445 +sg225236 +S'1847' +p260446 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093c1.jpg' +p260447 +sg225240 +g27 +sa(dp260448 +g225230 +S'Six degr\xc3\xa9s au-dessous de z\xc3\xa9ro...' +p260449 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260450 +sg225234 +S'lithograph on newsprint' +p260451 +sg225236 +S'1847' +p260452 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093c0.jpg' +p260453 +sg225240 +g27 +sa(dp260454 +g225230 +S'Ce que le bourgeois est convenu de nommer une... distraction' +p260455 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260456 +sg225234 +S'lithograph on newsprint' +p260457 +sg225236 +S'1846' +p260458 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a000938c.jpg' +p260459 +sg225240 +g27 +sa(dp260460 +g225230 +S'Quand le journal est trop int\xc3\xa9ressant' +p260461 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260462 +sg225234 +S'lithograph on newsprint' +p260463 +sg225236 +S'1846' +p260464 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a000938f.jpg' +p260465 +sg225240 +g27 +sa(dp260466 +g225230 +S'Il admire les beaut\xc3\xa9s de la nature - Plaine St. Denis' +p260467 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260468 +sg225234 +S'lithograph on newsprint' +p260469 +sg225236 +S'1846' +p260470 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a000938b.jpg' +p260471 +sg225240 +g27 +sa(dp260472 +g225230 +S'Ayant la pr\xc3\xa9tention de faire partie du beau monde' +p260473 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260474 +sg225234 +S'lithograph on newsprint' +p260475 +sg225236 +S'1847' +p260476 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093aa.jpg' +p260477 +sg225240 +g27 +sa(dp260478 +g225230 +S'Un Chateau en Espagne' +p260479 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260480 +sg225234 +S'lithograph on newsprint' +p260481 +sg225236 +S'1847' +p260482 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009399.jpg' +p260483 +sg225240 +g27 +sa(dp260484 +g225230 +S'Trois heures du matin...' +p260485 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260486 +sg225234 +S'lithograph on newsprint' +p260487 +sg225236 +S'1847' +p260488 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ff9b.jpg' +p260489 +sg225240 +g27 +sa(dp260490 +g225230 +S'Une Soir\xc3\xa9e au corps de garde' +p260491 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260492 +sg225234 +S'lithograph on newsprint' +p260493 +sg225236 +S'1847' +p260494 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093b3.jpg' +p260495 +sg225240 +g27 +sa(dp260496 +g225230 +S"Oh! la... tant mieux... \xc3\xa7a prouve qu'elle vient!" +p260497 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260498 +sg225234 +S'lithograph on newsprint' +p260499 +sg225236 +S'1847' +p260500 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093ad.jpg' +p260501 +sg225240 +g27 +sa(dp260502 +g225230 +S'Un Jour de grande toilette' +p260503 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260504 +sg225234 +S'lithograph on newsprint' +p260505 +sg225236 +S'1847' +p260506 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093b2.jpg' +p260507 +sg225240 +g27 +sa(dp260508 +g225230 +S'Quand en soci\xc3\xa9t\xc3\xa9 vous voudrez bien recevoir un... coup...' +p260509 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260510 +sg225234 +S'lithograph on newsprint' +p260511 +sg225236 +S'1847' +p260512 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a000939a.jpg' +p260513 +sg225240 +g27 +sa(dp260514 +g225230 +S'Ma femme... \xc3\xa7a mord... \xc3\xa7a mord!' +p260515 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260516 +sg225234 +S'lithograph on newsprint' +p260517 +sg225236 +S'1846' +p260518 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a000938a.jpg' +p260519 +sg225240 +g27 +sa(dp260520 +g225230 +S'Brigand de tailleur... encore un habit... r\xc3\xa9tr\xc3\xa9ci!' +p260521 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260522 +sg225234 +S'lithograph on newsprint' +p260523 +sg225236 +S'1847' +p260524 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093b4.jpg' +p260525 +sg225240 +g27 +sa(dp260526 +g225230 +S'Recherche infructueuse de la plan\xc3\xa8te Leverrier' +p260527 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260528 +sg225234 +S'lithograph on newsprint' +p260529 +sg225236 +S'1846' +p260530 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093b0.jpg' +p260531 +sg225240 +g27 +sa(dp260532 +g225230 +S"Pour une belle vue, v'la une belle vue!..." +p260533 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260534 +sg225234 +S'lithograph on newsprint' +p260535 +sg225236 +S'1847' +p260536 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009398.jpg' +p260537 +sg225240 +g27 +sa(dp260538 +g225230 +S'Inconv\xc3\xa9nient de quitter...un convoi de chemin de fer...' +p260539 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260540 +sg225234 +S'lithograph on newsprint' +p260541 +sg225236 +S'1847' +p260542 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009397.jpg' +p260543 +sg225240 +g27 +sa(dp260544 +g225230 +S'Quand on a un p\xc3\xa8re farceur' +p260545 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260546 +sg225234 +S'lithograph on newsprint' +p260547 +sg225236 +S'1848' +p260548 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093c4.jpg' +p260549 +sg225240 +g27 +sa(dp260550 +g225230 +S"Oh! p'pa... la belle femme!" +p260551 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260552 +sg225234 +S'lithograph on newsprint' +p260553 +sg225236 +S'1846' +p260554 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093bb.jpg' +p260555 +sg225240 +g27 +sa(dp260556 +g225230 +S"Une Famille chez qui r\xc3\xa9side l'instinct guerrier" +p260557 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260558 +sg225234 +S'lithograph on newsprint' +p260559 +sg225236 +S'1847' +p260560 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093c6.jpg' +p260561 +sg225240 +g27 +sa(dp260562 +g225230 +S'Un Jour de grande revue' +p260563 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260564 +sg225234 +S'lithograph on newsprint' +p260565 +sg225236 +S'1847' +p260566 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093bd.jpg' +p260567 +sg225240 +g27 +sa(dp260568 +g225230 +S'Comment on donne... le go\xc3\xbbt de la navigation' +p260569 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260570 +sg225234 +S'lithograph on newsprint' +p260571 +sg225236 +S'1846' +p260572 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093bc.jpg' +p260573 +sg225240 +g27 +sa(dp260574 +g225230 +S'Allons, papa... encore... trente-deux tours!...' +p260575 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260576 +sg225234 +S'lithograph on newsprint' +p260577 +sg225236 +S'1847' +p260578 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093cd.jpg' +p260579 +sg225240 +g27 +sa(dp260580 +g225230 +S'Voyez donc un peu, Ism\xc3\xa9nie!...' +p260581 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260582 +sg225234 +S'lithograph on newsprint' +p260583 +sg225236 +S'1844' +p260584 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009323.jpg' +p260585 +sg225240 +g27 +sa(dp260586 +g225230 +S'La Pr\xc3\xa9sidente criant a tue-t\xc3\xaate: Mesdames!...' +p260587 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260588 +sg225234 +S'lithograph on newsprint' +p260589 +sg225236 +S'1844' +p260590 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a000930d.jpg' +p260591 +sg225240 +g27 +sa(dp260592 +g225230 +S'Nous voila... r\xc3\xa9unies pour \xc3\xa9crire le premier num\xc3\xa9ro...' +p260593 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260594 +sg225234 +S'lithograph on newsprint' +p260595 +sg225236 +S'1844' +p260596 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009317.jpg' +p260597 +sg225240 +g27 +sa(dp260598 +g225230 +S'O Lune!... inspire-moi ce soir quelque petite pens\xc3\xa9e...' +p260599 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260600 +sg225234 +S'lithograph on newsprint' +p260601 +sg225236 +S'1844' +p260602 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009312.jpg' +p260603 +sg225240 +g27 +sa(dp260604 +g225230 +S'Dis donc, Bichette... a quoi songes-tu donc...' +p260605 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260606 +sg225234 +S'lithograph on newsprint' +p260607 +sg225236 +S'1844' +p260608 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009311.jpg' +p260609 +sg225240 +g27 +sa(dp260610 +g225230 +S'Au revoir, Oph\xc3\xa9lia!... ne manquez pas...' +p260611 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260612 +sg225234 +S'lithograph on newsprint' +p260613 +sg225236 +S'1844' +p260614 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009310.jpg' +p260615 +sg225240 +g27 +sa(dp260616 +g225230 +S'Le Bas-bleu d\xc3\xa9clamant sa pi\xc3\xa8ce' +p260617 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260618 +sg225234 +S'lithograph on newsprint' +p260619 +sg225236 +S'1844' +p260620 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a000930c.jpg' +p260621 +sg225240 +g27 +sa(dp260622 +g225230 +S"L'Artiste m'a repr\xc3\xa9sent\xc3\xa9e au moment ou j'\xc3\xa9cris" +p260623 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260624 +sg225234 +S'lithograph on newsprint' +p260625 +sg225236 +S'1844' +p260626 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a000931c.jpg' +p260627 +sg225240 +g27 +sa(dp260628 +g225230 +S'...dussent-ils me maudire. Ces barbares parens...' +p260629 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260630 +sg225234 +S'lithograph on newsprint' +p260631 +sg225236 +S'1844' +p260632 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a000930f.jpg' +p260633 +sg225240 +g27 +sa(dp260634 +g225230 +S"Un Bouquiniste dans l'ivresse" +p260635 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260636 +sg225234 +S'lithograph on newsprint' +p260637 +sg225236 +S'1844' +p260638 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092d7.jpg' +p260639 +sg225240 +g27 +sa(dp260640 +g225230 +S'Les Voisines devant le Juge de paix' +p260641 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260642 +sg225234 +S'lithograph on newsprint' +p260643 +sg225236 +S'1845' +p260644 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092ec.jpg' +p260645 +sg225240 +g27 +sa(dp260646 +g225230 +S'Le Retour de la foire de Saint-Cloud' +p260647 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260648 +sg225234 +S'lithograph on newsprint' +p260649 +sg225236 +S'1845' +p260650 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092e5.jpg' +p260651 +sg225240 +g27 +sa(dp260652 +g225230 +S'Un Diner chez V\xc3\xa9ry' +p260653 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260654 +sg225234 +S'lithograph on newsprint' +p260655 +sg225236 +S'1844' +p260656 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092cf.jpg' +p260657 +sg225240 +g27 +sa(dp260658 +g225230 +S'Une Rencontre agr\xc3\xa9able' +p260659 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260660 +sg225234 +S'lithograph on newsprint' +p260661 +sg225236 +S'1844' +p260662 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092c8.jpg' +p260663 +sg225240 +g27 +sa(dp260664 +g225230 +S'Fusion des compagnies' +p260665 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260666 +sg225234 +S'lithograph on newsprint' +p260667 +sg225236 +S'1845' +p260668 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009304.jpg' +p260669 +sg225240 +g27 +sa(dp260670 +g225230 +S'Un Premier voyage en chemin de fer' +p260671 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260672 +sg225234 +S'lithograph on newsprint' +p260673 +sg225236 +S'1846' +p260674 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009302.jpg' +p260675 +sg225240 +g27 +sa(dp260676 +g225230 +S"L'honneur d'\xc3\xaatre parrain" +p260677 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260678 +sg225234 +S'lithograph on newsprint' +p260679 +sg225236 +S'1844' +p260680 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092d9.jpg' +p260681 +sg225240 +g27 +sa(dp260682 +g225230 +S"Une R\xc3\xa9paration d'honneur" +p260683 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260684 +sg225234 +S'lithograph on newsprint' +p260685 +sg225236 +S'1845' +p260686 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092e3.jpg' +p260687 +sg225240 +g27 +sa(dp260688 +g225230 +S'Un Prix de po\xc3\xa9sie' +p260689 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260690 +sg225234 +S'lithograph on newsprint' +p260691 +sg225236 +S'1845' +p260692 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092d5.jpg' +p260693 +sg225240 +g27 +sa(dp260694 +g225230 +S'Une Promotion' +p260695 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260696 +sg225234 +S'lithograph on newsprint' +p260697 +sg225236 +S'1845' +p260698 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092e6.jpg' +p260699 +sg225240 +g27 +sa(dp260700 +g225230 +S'Un Habit a la mode' +p260701 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260702 +sg225234 +S'lithograph on newsprint' +p260703 +sg225236 +S'1845' +p260704 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092e9.jpg' +p260705 +sg225240 +g27 +sa(dp260706 +g225230 +S'Les Cigarettes de camphre' +p260707 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260708 +sg225234 +S'lithograph on newsprint' +p260709 +sg225236 +S'1845' +p260710 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092fe.jpg' +p260711 +sg225240 +g27 +sa(dp260712 +g225230 +S'Un Hommage filial' +p260713 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260714 +sg225234 +S'lithograph on newsprint' +p260715 +sg225236 +S'1846' +p260716 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009306.jpg' +p260717 +sg225240 +g27 +sa(dp260718 +g225230 +S'Un Chapeau neuf' +p260719 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260720 +sg225234 +S'lithograph on newsprint' +p260721 +sg225236 +S'1845' +p260722 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092d4.jpg' +p260723 +sg225240 +g27 +sa(dp260724 +g225230 +S'A la porte Saint-Martin' +p260725 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260726 +sg225234 +S'lithograph on newsprint' +p260727 +sg225236 +S'1846' +p260728 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009308.jpg' +p260729 +sg225240 +g27 +sa(dp260730 +g225230 +S'Une Attention d\xc3\xa9licate' +p260731 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260732 +sg225234 +S'lithograph on newsprint' +p260733 +sg225236 +S'1845' +p260734 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092e1.jpg' +p260735 +sg225240 +g27 +sa(dp260736 +g225230 +S'Comment on devient un grand math\xc3\xa9maticien' +p260737 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260738 +sg225234 +S'lithograph on newsprint' +p260739 +sg225236 +S'1845' +p260740 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009384.jpg' +p260741 +sg225240 +g27 +sa(dp260742 +g225230 +S'Comme quoi la gymnastique forme les membres...' +p260743 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260744 +sg225234 +S'lithograph on newsprint' +p260745 +sg225236 +S'1845' +p260746 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009383.jpg' +p260747 +sg225240 +g27 +sa(dp260748 +g225230 +S'Comment on d\xc3\xa9cide un jeune homme a venir...' +p260749 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260750 +sg225234 +S'lithograph on newsprint' +p260751 +sg225236 +S'1846' +p260752 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a000937f.jpg' +p260753 +sg225240 +g27 +sa(dp260754 +g225230 +S"Jeunes coll\xc3\xa9giens... lavant jusqu'a leur dictionnaire latin" +p260755 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260756 +sg225234 +S'lithograph on newsprint' +p260757 +sg225236 +S'1846' +p260758 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009382.jpg' +p260759 +sg225240 +g27 +sa(dp260760 +g225230 +S"Je n'y redescends plus!... je crois..." +p260761 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260762 +sg225234 +S'lithograph on newsprint' +p260763 +sg225236 +S'1839' +p260764 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000926b.jpg' +p260765 +sg225240 +g27 +sa(dp260766 +g225230 +S"Attention, Gargouillet, v'la le bourgeois qui passe..." +p260767 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260768 +sg225234 +S'lithograph on newsprint' +p260769 +sg225236 +S'1842' +p260770 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009269.jpg' +p260771 +sg225240 +g27 +sa(dp260772 +g225230 +S'Un Abus de confiance' +p260773 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260774 +sg225234 +S'lithograph on newsprint' +p260775 +sg225236 +S'1842' +p260776 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b33.jpg' +p260777 +sg225240 +g27 +sa(dp260778 +g225230 +S'Bains de Femmes' +p260779 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260780 +sg225234 +S'lithograph on newsprint' +p260781 +sg225236 +S'1841' +p260782 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009266.jpg' +p260783 +sg225240 +g27 +sa(dp260784 +g225230 +S'En pleine eau' +p260785 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260786 +sg225234 +S'lithograph on newsprint' +p260787 +sg225236 +S'1847' +p260788 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093f3.jpg' +p260789 +sg225240 +g27 +sa(dp260790 +g225230 +S'Entre deux plongeons' +p260791 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260792 +sg225234 +S'lithograph on newsprint' +p260793 +sg225236 +S'1847' +p260794 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093ef.jpg' +p260795 +sg225240 +g27 +sa(dp260796 +g225230 +S'Les Baigneuses prudentes' +p260797 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260798 +sg225234 +S'lithograph on newsprint' +p260799 +sg225236 +S'1847' +p260800 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093f1.jpg' +p260801 +sg225240 +g27 +sa(dp260802 +g225230 +S'Ou peut conduire la lecture du Constitutionnel!' +p260803 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260804 +sg225234 +S'lithograph on newsprint' +p260805 +sg225236 +S'1845' +p260806 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009361.jpg' +p260807 +sg225240 +g27 +sa(dp260808 +g225230 +S'Le Danger de... visiter un site par trop sauvage' +p260809 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260810 +sg225234 +S'lithograph on newsprint' +p260811 +sg225236 +S'1845' +p260812 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a000935f.jpg' +p260813 +sg225240 +g27 +sa(dp260814 +g225230 +S'Inconv\xc3\xa9nient pour un propri\xc3\xa9taire de ne pas...' +p260815 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260816 +sg225234 +S'lithograph on newsprint' +p260817 +sg225236 +S'1846' +p260818 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009375.jpg' +p260819 +sg225240 +g27 +sa(dp260820 +g225230 +S"Que nous sommes b\xc3\xaates d'avoir une peur pareille..." +p260821 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260822 +sg225234 +S'lithograph on newsprint' +p260823 +sg225236 +S'1845' +p260824 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009370.jpg' +p260825 +sg225240 +g27 +sa(dp260826 +g225230 +S'Comme quoi, au village, la vertu la plus gr\xc3\xaal\xc3\xa9e...' +p260827 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260828 +sg225234 +S'lithograph on newsprint' +p260829 +sg225236 +S'1845' +p260830 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a000936d.jpg' +p260831 +sg225240 +g27 +sa(dp260832 +g225230 +S'Quand on fait ses foins...' +p260833 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260834 +sg225234 +S'lithograph on newsprint' +p260835 +sg225236 +S'1846' +p260836 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009376.jpg' +p260837 +sg225240 +g27 +sa(dp260838 +g225230 +S'Avantages des terrasses italiennes...' +p260839 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260840 +sg225234 +S'lithograph on newsprint' +p260841 +sg225236 +S'1846' +p260842 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009374.jpg' +p260843 +sg225240 +g27 +sa(dp260844 +g225230 +S"Je croyais que c'\xc3\xa9tait plus amusant que \xc3\xa7a..." +p260845 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260846 +sg225234 +S'lithograph on newsprint' +p260847 +sg225236 +S'1845' +p260848 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a000937a.jpg' +p260849 +sg225240 +g27 +sa(dp260850 +g225230 +S'Une Terrible rencontre' +p260851 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260852 +sg225234 +S'lithograph on newsprint' +p260853 +sg225236 +S'1845' +p260854 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a000937b.jpg' +p260855 +sg225240 +g27 +sa(dp260856 +g225230 +S'Vas-tu te taire avec tes Cocoricos...' +p260857 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260858 +sg225234 +S'lithograph on newsprint' +p260859 +sg225236 +S'1845' +p260860 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009372.jpg' +p260861 +sg225240 +g27 +sa(dp260862 +g225230 +S"Et dire que c'est aujourd'hui la Saint-M\xc3\xa9dard!" +p260863 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260864 +sg225234 +S'lithograph on newsprint' +p260865 +sg225236 +S'1845' +p260866 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009369.jpg' +p260867 +sg225240 +g27 +sa(dp260868 +g225230 +S'Comment trouvez-vous ce petit vin-la...' +p260869 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260870 +sg225234 +S'lithograph on newsprint' +p260871 +sg225236 +S'1845' +p260872 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009367.jpg' +p260873 +sg225240 +g27 +sa(dp260874 +g225230 +S'Oh!... une b\xc3\xaate a cornes...' +p260875 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260876 +sg225234 +S'lithograph on newsprint' +p260877 +sg225236 +S'1845' +p260878 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a000935a.jpg' +p260879 +sg225240 +g27 +sa(dp260880 +g225230 +S'D\xc3\xa9sagr\xc3\xa9ment de diner au trop grand air' +p260881 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260882 +sg225234 +S'lithograph on newsprint' +p260883 +sg225236 +S'1845' +p260884 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a000936f.jpg' +p260885 +sg225240 +g27 +sa(dp260886 +g225230 +S"Int\xc3\xa9rieur d'un omnibus" +p260887 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260888 +sg225234 +S'lithograph on newsprint' +p260889 +sg225236 +S'1839' +p260890 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009247.jpg' +p260891 +sg225240 +g27 +sa(dp260892 +g225230 +S"Int\xc3\xa9rieur d'un omnibus" +p260893 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260894 +sg225234 +S'lithograph on newsprint' +p260895 +sg225236 +S'1839' +p260896 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009237.jpg' +p260897 +sg225240 +g27 +sa(dp260898 +g225230 +S'Domino!!' +p260899 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260900 +sg225234 +S'lithograph on newsprint' +p260901 +sg225236 +S'1839' +p260902 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009242.jpg' +p260903 +sg225240 +g27 +sa(dp260904 +g225230 +S"Pas fameux? N'est-ce pas!!..." +p260905 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260906 +sg225234 +S'lithograph on newsprint' +p260907 +sg225236 +S'1839' +p260908 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009248.jpg' +p260909 +sg225240 +g27 +sa(dp260910 +g225230 +S"B'en parlez pas j'suis enrub\xc3\xa9 du cerbeaux..." +p260911 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260912 +sg225234 +S'lithograph on newsprint' +p260913 +sg225236 +S'1839' +p260914 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009244.jpg' +p260915 +sg225240 +g27 +sa(dp260916 +g225230 +S'Moi je suis ravitaill\xc3\xa9!...' +p260917 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260918 +sg225234 +S'gillotype on newsprint' +p260919 +sg225236 +S'1871' +p260920 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a91.jpg' +p260921 +sg225240 +g27 +sa(dp260922 +g225230 +S'On flaire la marchandise... avant de la m\xc3\xa9caniser!...' +p260923 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260924 +sg225234 +S'lithograph on newsprint' +p260925 +sg225236 +S'1839' +p260926 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009239.jpg' +p260927 +sg225240 +g27 +sa(dp260928 +g225230 +S'Il y a pourtant des gens qui ressemblent a \xc3\xa7a!' +p260929 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260930 +sg225234 +S'lithograph on newsprint' +p260931 +sg225236 +S'1839' +p260932 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009236.jpg' +p260933 +sg225240 +g27 +sa(dp260934 +g225230 +S'Voila!... un fameux temps pour les petits pois...' +p260935 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260936 +sg225234 +S'lithograph on newsprint' +p260937 +sg225236 +S'1839' +p260938 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009238.jpg' +p260939 +sg225240 +g27 +sa(dp260940 +g225230 +S'Ah! \xc3\xa7a mais... arriverons-nous bient\xc3\xb4t?' +p260941 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260942 +sg225234 +S'lithograph on newsprint' +p260943 +sg225236 +S'1847' +p260944 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093e2.jpg' +p260945 +sg225240 +g27 +sa(dp260946 +g225230 +S'Inconv\xc3\xa9nient de demander des r\xc3\xa9parations...' +p260947 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260948 +sg225234 +S'lithograph on newsprint' +p260949 +sg225236 +S'1847' +p260950 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093e1.jpg' +p260951 +sg225240 +g27 +sa(dp260952 +g225230 +S'Un D\xc3\xa9m\xc3\xa9nagement furtif' +p260953 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260954 +sg225234 +S'lithograph on newsprint' +p260955 +sg225236 +S'1847' +p260956 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093de.jpg' +p260957 +sg225240 +g27 +sa(dp260958 +g225230 +S'Le Cordon donc!...' +p260959 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260960 +sg225234 +S'lithograph on newsprint' +p260961 +sg225236 +S'1847' +p260962 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093dd.jpg' +p260963 +sg225240 +g27 +sa(dp260964 +g225230 +S"Ah! il m'a donn\xc3\xa9 cong\xc3\xa9..." +p260965 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260966 +sg225234 +S'lithograph on newsprint' +p260967 +sg225236 +S'1847' +p260968 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093e0.jpg' +p260969 +sg225240 +g27 +sa(dp260970 +g225230 +S"Inconv\xc3\xa9nient de louer... non loin d'une rivi\xc3\xa8re" +p260971 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260972 +sg225234 +S'lithograph on newsprint' +p260973 +sg225236 +S'1847' +p260974 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093d7.jpg' +p260975 +sg225240 +g27 +sa(dp260976 +g225230 +S'Je ne loue pas aux gens qui ont des enfants!' +p260977 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260978 +sg225234 +S'lithograph on newsprint' +p260979 +sg225236 +S'1847' +p260980 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093d8.jpg' +p260981 +sg225240 +g27 +sa(dp260982 +g225230 +S"C'est unique! j'ai pris quatre tailles..." +p260983 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260984 +sg225234 +S'lithograph on newsprint' +p260985 +sg225236 +S'1840' +p260986 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093a1.jpg' +p260987 +sg225240 +g27 +sa(dp260988 +g225230 +S'Ah! Excusez' +p260989 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260990 +sg225234 +S'lithograph on newsprint' +p260991 +sg225236 +S'1840' +p260992 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093a7.jpg' +p260993 +sg225240 +g27 +sa(dp260994 +g225230 +S'La Queue au spectacle' +p260995 +sg225232 +S'Honor\xc3\xa9 Daumier' +p260996 +sg225234 +S'lithograph on newsprint' +p260997 +sg225236 +S'1840' +p260998 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a00093a3.jpg' +p260999 +sg225240 +g27 +sa(dp261000 +g225230 +S"L'Eau du puits de Grenelle" +p261001 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261002 +sg225234 +S'lithograph on newsprint' +p261003 +sg225236 +S'1841' +p261004 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009299.jpg' +p261005 +sg225240 +g27 +sa(dp261006 +g225230 +S'Surveillant la Commission de Surveillance' +p261007 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261008 +sg225234 +S'lithograph on newsprint' +p261009 +sg225236 +S'unknown date\n' +p261010 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000955f.jpg' +p261011 +sg225240 +g27 +sa(dp261012 +g225230 +S"Le Retour de l'age d'or" +p261013 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261014 +sg225234 +S'lithograph on newsprint' +p261015 +sg225236 +S'1856' +p261016 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094bb.jpg' +p261017 +sg225240 +g27 +sa(dp261018 +g225230 +S'Malheureux! tu veux donc tuer le p\xc3\xa8re de tes enfants?' +p261019 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261020 +sg225234 +S'lithograph on newsprint' +p261021 +sg225236 +S'1841' +p261022 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092f0.jpg' +p261023 +sg225240 +g27 +sa(dp261024 +g225230 +S'Onze degr\xc3\xa9s centigrades!' +p261025 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261026 +sg225234 +S'lithograph on newsprint' +p261027 +sg225236 +S'1841' +p261028 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009295.jpg' +p261029 +sg225240 +g27 +sa(dp261030 +g225230 +S'Charm\xc3\xa9 de se voir expos\xc3\xa9...' +p261031 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261032 +sg225234 +S'lithograph on newsprint' +p261033 +sg225236 +S'1841' +p261034 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000929a.jpg' +p261035 +sg225240 +g27 +sa(dp261036 +g225230 +S'Quand on est possesseur de cent actions...' +p261037 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261038 +sg225234 +S'lithograph on newsprint' +p261039 +sg225236 +S'1840' +p261040 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009267.jpg' +p261041 +sg225240 +g27 +sa(dp261042 +g225230 +S'D\xc3\xa9cadence du drame en 1866' +p261043 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261044 +sg225234 +S'lithograph on newsprint' +p261045 +sg225236 +S'1866' +p261046 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094f3.jpg' +p261047 +sg225240 +g27 +sa(dp261048 +g225230 +S'Madame Cabassol se prom\xc3\xa8ne...' +p261049 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261050 +sg225234 +S'lithograph on newsprint' +p261051 +sg225236 +S'1845' +p261052 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009360.jpg' +p261053 +sg225240 +g27 +sa(dp261054 +g225230 +S"Je t'ai d\xc3\xa9j\xc3\xa0 d\xc3\xa9fendu de m'appeler maitre..." +p261055 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261056 +sg225234 +S'lithograph on newsprint' +p261057 +sg225236 +S'1844' +p261058 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009322.jpg' +p261059 +sg225240 +g27 +sa(dp261060 +g225230 +S"La Carotte de l'\xc3\xa9lection" +p261061 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261062 +sg225234 +S'lithograph on newsprint' +p261063 +sg225236 +S'1844' +p261064 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009326.jpg' +p261065 +sg225240 +g27 +sa(dp261066 +g225230 +S'Un Faux vase du Japon faisant...' +p261067 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261068 +sg225234 +S'lithograph on newsprint' +p261069 +sg225236 +S'1855' +p261070 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094c6.jpg' +p261071 +sg225240 +g27 +sa(dp261072 +g225230 +S'Le Perroquet' +p261073 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261074 +sg225234 +S'lithograph on newsprint' +p261075 +sg225236 +S'1838' +p261076 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000923e.jpg' +p261077 +sg225240 +g27 +sa(dp261078 +g225230 +S'Le Charbonnier aime \xc3\xaatre (est maitre)...' +p261079 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261080 +sg225234 +S'lithograph on newsprint' +p261081 +sg225236 +S'1843' +p261082 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092cb.jpg' +p261083 +sg225240 +g27 +sa(dp261084 +g225230 +S'Eh!... Eh!... mais il parait que...' +p261085 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261086 +sg225234 +S'lithograph on newsprint' +p261087 +sg225236 +S'1843' +p261088 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092cd.jpg' +p261089 +sg225240 +g27 +sa(dp261090 +g225230 +S"L'Entr\xc3\xa9e du Grand tunnel d'un chemin de fer" +p261091 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261092 +sg225234 +S'lithograph on newsprint' +p261093 +sg225236 +S'1843' +p261094 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092c5.jpg' +p261095 +sg225240 +g27 +sa(dp261096 +g225230 +S'Une Rencontre en pleine eau' +p261097 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261098 +sg225234 +S'lithograph on newsprint' +p261099 +sg225236 +S'1843' +p261100 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092ad.jpg' +p261101 +sg225240 +g27 +sa(dp261102 +g225230 +S'Un Homme sauv\xc3\xa9 malgr\xc3\xa9 lui' +p261103 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261104 +sg225234 +S'lithograph on newsprint' +p261105 +sg225236 +S'1843' +p261106 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092b3.jpg' +p261107 +sg225240 +g27 +sa(dp261108 +g225230 +S"L'\xc3\x89lection" +p261109 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261110 +sg225234 +S'lithograph on newsprint' +p261111 +sg225236 +S'1843' +p261112 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092b2.jpg' +p261113 +sg225240 +g27 +sa(dp261114 +g225230 +S'La Visite \xc3\xa9lectorale' +p261115 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261116 +sg225234 +S'lithograph on newsprint' +p261117 +sg225236 +S'1843' +p261118 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092ae.jpg' +p261119 +sg225240 +g27 +sa(dp261120 +g225230 +S"L'H\xc3\xa9ritier pr\xc3\xa9somptif" +p261121 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261122 +sg225234 +S'lithograph on newsprint' +p261123 +sg225236 +S'1843' +p261124 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092b0.jpg' +p261125 +sg225240 +g27 +sa(dp261126 +g225230 +S"Premier sujet d'un caf\xc3\xa9-concert chantant..." +p261127 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261128 +sg225234 +S'lithograph on newsprint' +p261129 +sg225236 +S'1852' +p261130 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a0009498.jpg' +p261131 +sg225240 +g27 +sa(dp261132 +g225230 +S'Le Malade imaginaire' +p261133 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261134 +sg225234 +S'lithograph on newsprint' +p261135 +sg225236 +S'1841' +p261136 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009285.jpg' +p261137 +sg225240 +g27 +sa(dp261138 +g225230 +S'Le Chasseur Parisien' +p261139 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261140 +sg225234 +S'lithograph on newsprint' +p261141 +sg225236 +S'1841' +p261142 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000927f.jpg' +p261143 +sg225240 +g27 +sa(dp261144 +g225230 +S'Le Guitariste-Amateur' +p261145 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261146 +sg225234 +S'lithograph on newsprint' +p261147 +sg225236 +S'1840' +p261148 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009281.jpg' +p261149 +sg225240 +g27 +sa(dp261150 +g225230 +S'Le B\xc3\xa9tophile' +p261151 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261152 +sg225234 +S'lithograph on newsprint' +p261153 +sg225236 +S'1840' +p261154 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000927e.jpg' +p261155 +sg225240 +g27 +sa(dp261156 +g225230 +S'Le Distrait' +p261157 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261158 +sg225234 +S'lithograph on newsprint' +p261159 +sg225236 +S'1841' +p261160 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009280.jpg' +p261161 +sg225240 +g27 +sa(dp261162 +g225230 +S"Pr\xc3\xa9sentation d'Ulysse a Nausica" +p261163 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261164 +sg225234 +S'lithograph on newsprint' +p261165 +sg225236 +S'1842' +p261166 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009297.jpg' +p261167 +sg225240 +g27 +sa(dp261168 +g225230 +S'Les Nuits de P\xc3\xa9n\xc3\xa9lope' +p261169 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261170 +sg225234 +S'lithograph on newsprint' +p261171 +sg225236 +S'1842' +p261172 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009294.jpg' +p261173 +sg225240 +g27 +sa(dp261174 +g225230 +S'Henri de Larochejacquelein' +p261175 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261176 +sg225234 +S'lithograph on newsprint' +p261177 +sg225236 +S'1849' +p261178 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a000941a.jpg' +p261179 +sg225240 +g27 +sa(dp261180 +g225230 +S"On a beau dire, l'antique est toujours beau..." +p261181 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261182 +sg225234 +S'lithograph on newsprint' +p261183 +sg225236 +S'1850' +p261184 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a0009404.jpg' +p261185 +sg225240 +g27 +sa(dp261186 +g225230 +S"Le coton tombe, l'homme reste..." +p261187 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261188 +sg225234 +S'lithograph' +p261189 +sg225236 +S'1840' +p261190 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000925c.jpg' +p261191 +sg225240 +g27 +sa(dp261192 +g225230 +S"Ma foi! c'est comme on dit..." +p261193 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261194 +sg225234 +S'lithograph on newsprint' +p261195 +sg225236 +S'1840' +p261196 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000925e.jpg' +p261197 +sg225240 +g27 +sa(dp261198 +g225230 +S"Le Jour n'est pas plus pur..." +p261199 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261200 +sg225234 +S'lithograph on newsprint' +p261201 +sg225236 +S'1841' +p261202 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000928d.jpg' +p261203 +sg225240 +g27 +sa(dp261204 +g225230 +S'Oui je viens, dans son temple...' +p261205 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261206 +sg225234 +S'lithograph on newsprint' +p261207 +sg225236 +S'1841' +p261208 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009291.jpg' +p261209 +sg225240 +g27 +sa(dp261210 +g225230 +S'Oh!... absolument comme si on y \xc3\xa9tait; la grande...' +p261211 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261212 +sg225234 +S'lithograph on newsprint' +p261213 +sg225236 +S'1840' +p261214 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000923a.jpg' +p261215 +sg225240 +g27 +sa(dp261216 +g225230 +S"Oui, Monsieur, votre air respectable m'enhardit..." +p261217 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261218 +sg225234 +S'lithograph on newsprint' +p261219 +sg225236 +S'1840' +p261220 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000923c.jpg' +p261221 +sg225240 +g27 +sa(dp261222 +g225230 +S'Regrets' +p261223 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261224 +sg225234 +S'lithograph on newsprint' +p261225 +sg225236 +S'1840' +p261226 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a000923b.jpg' +p261227 +sg225240 +g27 +sa(dp261228 +g225230 +S'Douze ans et demi et trois premiers prix' +p261229 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261230 +sg225234 +S'lithograph on newsprint' +p261231 +sg225236 +S'1839' +p261232 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009241.jpg' +p261233 +sg225240 +g27 +sa(dp261234 +g225230 +S'Un cauchemar de M. Bismarck' +p261235 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261236 +sg225234 +S'gillotype on newsprint' +p261237 +sg225236 +S'1870' +p261238 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009531.jpg' +p261239 +sg225240 +g27 +sa(dp261240 +g225230 +S'La Partie de volant' +p261241 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261242 +sg225234 +S'lithograph on newsprint' +p261243 +sg225236 +S'1869' +p261244 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009520.jpg' +p261245 +sg225240 +g27 +sa(dp261246 +g225230 +S'La Nouvelle Cendrillon' +p261247 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261248 +sg225234 +S'lithograph on newsprint' +p261249 +sg225236 +S'1866' +p261250 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094fe.jpg' +p261251 +sg225240 +g27 +sa(dp261252 +g225230 +S"L'\xc3\xa9clipse sera-t-elle totale?" +p261253 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261254 +sg225234 +S'gillotype on newsprint' +p261255 +sg225236 +S'1871' +p261256 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000954b.jpg' +p261257 +sg225240 +g27 +sa(dp261258 +g225230 +S'Adoremus!' +p261259 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261260 +sg225234 +S'lithograph' +p261261 +sg225236 +S'1869' +p261262 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009518.jpg' +p261263 +sg225240 +g27 +sa(dp261264 +g225230 +S'Gare la lumi\xc3\xa8re!' +p261265 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261266 +sg225234 +S'lithograph (gillotype?) on newsprint' +p261267 +sg225236 +S'1870' +p261268 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009525.jpg' +p261269 +sg225240 +g27 +sa(dp261270 +g225230 +S'Pardon mon cher...' +p261271 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261272 +sg225234 +S'lithograph on newsprint' +p261273 +sg225236 +S'1869' +p261274 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009512.jpg' +p261275 +sg225240 +g27 +sa(dp261276 +g225230 +S'Madame Gargantua' +p261277 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261278 +sg225234 +S'lithograph on newsprint' +p261279 +sg225236 +S'1866' +p261280 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094f1.jpg' +p261281 +sg225240 +g27 +sa(dp261282 +g225230 +S"A l'instar de Pantin" +p261283 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261284 +sg225234 +S'lithograph' +p261285 +sg225236 +S'1869' +p261286 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009528.jpg' +p261287 +sg225240 +g27 +sa(dp261288 +g225230 +S'Ou Venise commence a esp\xc3\xa9rer' +p261289 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261290 +sg225234 +S'lithograph on newsprint' +p261291 +sg225236 +S'1866' +p261292 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094f4.jpg' +p261293 +sg225240 +g27 +sa(dp261294 +g225230 +S"L'empire c'est la paix" +p261295 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261296 +sg225234 +S'gillotype on newsprint' +p261297 +sg225236 +S'1870' +p261298 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009538.jpg' +p261299 +sg225240 +g27 +sa(dp261300 +g225230 +S'Doucement!' +p261301 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261302 +sg225234 +S'lithograph on newsprint' +p261303 +sg225236 +S'1868' +p261304 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009523.jpg' +p261305 +sg225240 +g27 +sa(dp261306 +g225230 +S'Le d\xc3\xa9fenseur de Calas consol\xc3\xa9...' +p261307 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261308 +sg225234 +S'gillotype on newsprint' +p261309 +sg225236 +S'1871' +p261310 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009544.jpg' +p261311 +sg225240 +g27 +sa(dp261312 +g225230 +S"La hache qui le coupera n'est pas encore tremp\xc3\xa9e" +p261313 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261314 +sg225234 +S'gillotype on newsprint' +p261315 +sg225236 +S'1871' +p261316 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009547.jpg' +p261317 +sg225240 +g27 +sa(dp261318 +g225230 +S"Regardez, mais n'y touchez pas!" +p261319 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261320 +sg225234 +S'gillotype on newsprint' +p261321 +sg225236 +S'1871' +p261322 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009546.jpg' +p261323 +sg225240 +g27 +sa(dp261324 +g225230 +S"Les \xc3\xa9curies d'Augias" +p261325 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261326 +sg225234 +S'gillotype on newsprint' +p261327 +sg225236 +S'1872' +p261328 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009562.jpg' +p261329 +sg225240 +g27 +sa(dp261330 +g225230 +S'Je ne pourrai jamais laver tout \xc3\xa7a' +p261331 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261332 +sg225234 +S'gillotype on newsprint' +p261333 +sg225236 +S'1872' +p261334 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009560.jpg' +p261335 +sg225240 +g27 +sa(dp261336 +g225230 +S'Voyons, monsieur R\xc3\xa9ac...' +p261337 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261338 +sg225234 +S'gillotype on newsprint' +p261339 +sg225236 +S'1871' +p261340 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009545.jpg' +p261341 +sg225240 +g27 +sa(dp261342 +g225230 +S'A Paris nous ne pouvions... aller a Versailles...' +p261343 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261344 +sg225234 +S'gillotype on newsprint' +p261345 +sg225236 +S'1871' +p261346 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000954c.jpg' +p261347 +sg225240 +g27 +sa(dp261348 +g225230 +S'Successeur de Charlemagne' +p261349 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261350 +sg225234 +S'gillotype on newsprint' +p261351 +sg225236 +S'1871' +p261352 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009541.jpg' +p261353 +sg225240 +g27 +sa(dp261354 +g225230 +S"Versailles!... Trois semaines d'arr\xc3\xaat!" +p261355 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261356 +sg225234 +S'gillotype on newsprint' +p261357 +sg225236 +S'1871' +p261358 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009548.jpg' +p261359 +sg225240 +g27 +sa(dp261360 +g225230 +S"Le char de l'\xc3\xa9tat en 1871" +p261361 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261362 +sg225234 +S'gillotype on newsprint' +p261363 +sg225236 +S'1871' +p261364 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009542.jpg' +p261365 +sg225240 +g27 +sa(dp261366 +g225230 +S'D\xc3\xa9j\xc3\xa0 relev\xc3\xa9e!' +p261367 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261368 +sg225234 +S'gillotype on newsprint' +p261369 +sg225236 +S'1871' +p261370 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009543.jpg' +p261371 +sg225240 +g27 +sa(dp261372 +g225230 +S'La r\xc3\xa9publique de Milo...' +p261373 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261374 +sg225234 +S'gillotype on newsprint' +p261375 +sg225236 +S'1871' +p261376 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000954a.jpg' +p261377 +sg225240 +g27 +sa(dp261378 +g225230 +S'Th\xc3\xa9\xc3\xa2tre de Bordeaux - on joue la trag\xc3\xa9die' +p261379 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261380 +sg225234 +S'gillotype on newsprint' +p261381 +sg225236 +S'1871' +p261382 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a8f.jpg' +p261383 +sg225240 +g27 +sa(dp261384 +g225230 +S"Ce pauvre Louis XIV n'en croyant pas ses yeux" +p261385 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261386 +sg225234 +S'gillotype on newsprint' +p261387 +sg225236 +S'1871' +p261388 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009540.jpg' +p261389 +sg225240 +g27 +sa(dp261390 +g225230 +S'Le Pr\xc3\xa9sident de Rhodes' +p261391 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261392 +sg225234 +S'gillotype on newsprint' +p261393 +sg225236 +S'1871' +p261394 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009551.jpg' +p261395 +sg225240 +g27 +sa(dp261396 +g225230 +S'Je vous assure que vous serez tr\xc3\xa8s bien assise' +p261397 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261398 +sg225234 +S'gillotype on newsprint' +p261399 +sg225236 +S'1871' +p261400 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000954e.jpg' +p261401 +sg225240 +g27 +sa(dp261402 +g225230 +S'Ch\xc3\xa8re dame, avant de nous donner...' +p261403 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261404 +sg225234 +S'gillotype on newsprint' +p261405 +sg225236 +S'1871' +p261406 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009552.jpg' +p261407 +sg225240 +g27 +sa(dp261408 +g225230 +S'Apr\xc3\xa8s la pompe a sang, la pompe \xc3\xa0 or' +p261409 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261410 +sg225234 +S'gillotype on newsprint' +p261411 +sg225236 +S'1871' +p261412 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000954d.jpg' +p261413 +sg225240 +g27 +sa(dp261414 +g225230 +S"Vous n'avez pas besoin de me rappeler ses titres..." +p261415 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261416 +sg225234 +S'gillotype on newsprint' +p261417 +sg225236 +S'1871' +p261418 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009550.jpg' +p261419 +sg225240 +g27 +sa(dp261420 +g225230 +S'Avis aux amateurs' +p261421 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261422 +sg225234 +S'gillotype on newsprint' +p261423 +sg225236 +S'1871' +p261424 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009558.jpg' +p261425 +sg225240 +g27 +sa(dp261426 +g225230 +S'Ce qui ram\xc3\xa8nera... nos d\xc3\xa9put\xc3\xa9s \xc3\xa0 Paris' +p261427 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261428 +sg225234 +S'gillotype on newsprint' +p261429 +sg225236 +S'1871' +p261430 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009553.jpg' +p261431 +sg225240 +g27 +sa(dp261432 +g225230 +S'Tirez, \xc3\xa7a fait \xc3\xa9quilibre' +p261433 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261434 +sg225234 +S'gillotype on newsprint' +p261435 +sg225236 +S'1871' +p261436 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009557.jpg' +p261437 +sg225240 +g27 +sa(dp261438 +g225230 +S'Prenez garde, madame la Majorit\xc3\xa9!' +p261439 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261440 +sg225234 +S'gillotype on newsprint' +p261441 +sg225236 +S'1871' +p261442 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009559.jpg' +p261443 +sg225240 +g27 +sa(dp261444 +g225230 +S'Bien vex\xc3\xa9s de ne pas trouver... la couronne...' +p261445 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261446 +sg225234 +S'gillotype on newsprint' +p261447 +sg225236 +S'1871' +p261448 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009556.jpg' +p261449 +sg225240 +g27 +sa(dp261450 +g225230 +S'Notre dernier gateau des rois' +p261451 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261452 +sg225234 +S'gillotype on newsprint' +p261453 +sg225236 +S'1872' +p261454 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009554.jpg' +p261455 +sg225240 +g27 +sa(dp261456 +g225230 +S'Voila bien des oeufs de cass\xc3\xa9s...' +p261457 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261458 +sg225234 +S'lithograph on newsprint' +p261459 +sg225236 +S'1866' +p261460 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094ff.jpg' +p261461 +sg225240 +g27 +sa(dp261462 +g225230 +S'Une Situation d\xc3\xa9sagr\xc3\xa9able' +p261463 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261464 +sg225234 +S'lithograph on newsprint' +p261465 +sg225236 +S'1866' +p261466 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009504.jpg' +p261467 +sg225240 +g27 +sa(dp261468 +g225230 +S'Changeant son cheval borgne pour un aveugle' +p261469 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261470 +sg225234 +S'lithograph on newsprint' +p261471 +sg225236 +S'1866' +p261472 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094fd.jpg' +p261473 +sg225240 +g27 +sa(dp261474 +g225230 +S'Se demandant si, le duel fini, ils ne vont pas etre plumes' +p261475 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261476 +sg225234 +S'lithograph on newsprint' +p261477 +sg225236 +S'1866' +p261478 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094fa.jpg' +p261479 +sg225240 +g27 +sa(dp261480 +g225230 +S'Renouvele de Gulliver' +p261481 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261482 +sg225234 +S'lithograph on newsprint' +p261483 +sg225236 +S'1866' +p261484 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094fc.jpg' +p261485 +sg225240 +g27 +sa(dp261486 +g225230 +S'Attendez... il faut encore ceci...' +p261487 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261488 +sg225234 +S'lithograph on newsprint' +p261489 +sg225236 +S'1866' +p261490 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094fb.jpg' +p261491 +sg225240 +g27 +sa(dp261492 +g225230 +S'Voyons!... debout, on nous regarde' +p261493 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261494 +sg225234 +S'lithograph on newsprint' +p261495 +sg225236 +S'1866' +p261496 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094f8.jpg' +p261497 +sg225240 +g27 +sa(dp261498 +g225230 +S'Il se plaint de rentrer...' +p261499 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261500 +sg225234 +S'lithograph on newsprint' +p261501 +sg225236 +S'1866' +p261502 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094f9.jpg' +p261503 +sg225240 +g27 +sa(dp261504 +g225230 +S'La Presse r\xc3\xa9actionnaire cherchant en vain...' +p261505 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261506 +sg225234 +S'lithograph on newsprint' +p261507 +sg225236 +S'1866' +p261508 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094f7.jpg' +p261509 +sg225240 +g27 +sa(dp261510 +g225230 +S"C'est dommage que ma chasse a moi soit ferm\xc3\xa9e" +p261511 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261512 +sg225234 +S'lithograph on newsprint' +p261513 +sg225236 +S'1867' +p261514 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009510.jpg' +p261515 +sg225240 +g27 +sa(dp261516 +g225230 +S"J'ai beau laver, l'ancienne couleur..." +p261517 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261518 +sg225234 +S'lithograph' +p261519 +sg225236 +S'1869' +p261520 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009516.jpg' +p261521 +sg225240 +g27 +sa(dp261522 +g225230 +S'Mars sans car\xc3\xaame' +p261523 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261524 +sg225234 +S'lithograph on newsprint' +p261525 +sg225236 +S'1869' +p261526 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009513.jpg' +p261527 +sg225240 +g27 +sa(dp261528 +g225230 +S'Je vous en prie, rentrez dans votre boite...' +p261529 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261530 +sg225234 +S'lithograph on newsprint' +p261531 +sg225236 +S'1869' +p261532 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000951f.jpg' +p261533 +sg225240 +g27 +sa(dp261534 +g225230 +S'Difficile \xc3\xa0 faire paraitre svelte' +p261535 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261536 +sg225234 +S'lithograph on newsprint' +p261537 +sg225236 +S'1869' +p261538 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009515.jpg' +p261539 +sg225240 +g27 +sa(dp261540 +g225230 +S'La France se pr\xc3\xa9parant a passer...' +p261541 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261542 +sg225234 +S'lithograph on newsprint' +p261543 +sg225236 +S'1869' +p261544 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009517.jpg' +p261545 +sg225240 +g27 +sa(dp261546 +g225230 +S'Va te faire achever pour moi' +p261547 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261548 +sg225234 +S'gillotype on newsprint' +p261549 +sg225236 +S'1871' +p261550 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009549.jpg' +p261551 +sg225240 +g27 +sa(dp261552 +g225230 +S'Utilisant les loisirs...' +p261553 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261554 +sg225234 +S'lithograph on newsprint' +p261555 +sg225236 +S'1869' +p261556 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009514.jpg' +p261557 +sg225240 +g27 +sa(dp261558 +g225230 +S'Leur Man\xc3\xa9, Thecel, Phar\xc3\xa8s' +p261559 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261560 +sg225234 +S'gillotype on newsprint' +p261561 +sg225236 +S'1871' +p261562 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a93.jpg' +p261563 +sg225240 +g27 +sa(dp261564 +g225230 +S'Les ar\xc3\xa8nes l\xc3\xa9gislatives' +p261565 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261566 +sg225234 +S'gillotype on newsprint' +p261567 +sg225236 +S'1870' +p261568 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000952c.jpg' +p261569 +sg225240 +g27 +sa(dp261570 +g225230 +S'Le Prince de Hohenzollern...' +p261571 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261572 +sg225234 +S'gillotype on newsprint' +p261573 +sg225236 +S'1870' +p261574 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000952b.jpg' +p261575 +sg225240 +g27 +sa(dp261576 +g225230 +S"L'appel de leurs r\xc3\xa9serves" +p261577 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261578 +sg225234 +S'gillotype on newsprint' +p261579 +sg225236 +S'1870' +p261580 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009530.jpg' +p261581 +sg225240 +g27 +sa(dp261582 +g225230 +S'Trop \xc3\xa9troit pour deux' +p261583 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261584 +sg225234 +S'gillotype on newsprint' +p261585 +sg225236 +S'1870' +p261586 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009537.jpg' +p261587 +sg225240 +g27 +sa(dp261588 +g225230 +S'Le Barbe bleu Prussien...' +p261589 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261590 +sg225234 +S'lithograph on newsprint' +p261591 +sg225236 +S'1866' +p261592 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094f0.jpg' +p261593 +sg225240 +g27 +sa(dp261594 +g225230 +S"Ce qu'on appelle le Royaume-Uni" +p261595 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261596 +sg225234 +S'lithograph on newsprint' +p261597 +sg225236 +S'1866' +p261598 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094ef.jpg' +p261599 +sg225240 +g27 +sa(dp261600 +g225230 +S'Irlande et Jamaique - Patience!...' +p261601 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261602 +sg225234 +S'lithograph on newsprint' +p261603 +sg225236 +S'1866' +p261604 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094f2.jpg' +p261605 +sg225240 +g27 +sa(dp261606 +g225230 +S'La Balan\xc3\xa7oire politique...' +p261607 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261608 +sg225234 +S'lithograph on newsprint' +p261609 +sg225236 +S'1866' +p261610 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009500.jpg' +p261611 +sg225240 +g27 +sa(dp261612 +g225230 +S"Ah! \xc3\xa7a... ils n'ont plus l'air de s'occuper de moi" +p261613 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261614 +sg225234 +S'gillotype' +p261615 +sg225236 +S'1866' +p261616 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009501.jpg' +p261617 +sg225240 +g27 +sa(dp261618 +g225230 +S'Le Cid se mettant aussi en campagne...' +p261619 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261620 +sg225234 +S'lithograph on newsprint' +p261621 +sg225236 +S'1859' +p261622 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094d6.jpg' +p261623 +sg225240 +g27 +sa(dp261624 +g225230 +S"L'Ordre r\xc3\xa8gne \xc3\xa0 la Jamaique" +p261625 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261626 +sg225234 +S'lithograph on newsprint' +p261627 +sg225236 +S'1866' +p261628 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094eb.jpg' +p261629 +sg225240 +g27 +sa(dp261630 +g225230 +S'Le supplice de tantale... eau comprise' +p261631 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261632 +sg225234 +S'gillotype on newsprint' +p261633 +sg225236 +S'1870' +p261634 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a90.jpg' +p261635 +sg225240 +g27 +sa(dp261636 +g225230 +S"Les marches du nouveau trone d'Allemagne" +p261637 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261638 +sg225234 +S'gillotype on newsprint' +p261639 +sg225236 +S'1871' +p261640 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a94.jpg' +p261641 +sg225240 +g27 +sa(dp261642 +g225230 +S"Comment Bismarck comprend l'unit\xc3\xa9 allemande" +p261643 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261644 +sg225234 +S'gillotype on newsprint' +p261645 +sg225236 +S'1870' +p261646 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a8a.jpg' +p261647 +sg225240 +g27 +sa(dp261648 +g225230 +S"Vous finirez par vous lasser de m'attaquer..." +p261649 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261650 +sg225234 +S'lithograph on newsprint' +p261651 +sg225236 +S'1851' +p261652 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a0009489.jpg' +p261653 +sg225240 +g27 +sa(dp261654 +g225230 +S'En Irlande' +p261655 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261656 +sg225234 +S'lithograph on newsprint' +p261657 +sg225236 +S'unknown date\n' +p261658 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000955a.jpg' +p261659 +sg225240 +g27 +sa(dp261660 +g225230 +S'Croyez-moi! prenez mon bras...' +p261661 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261662 +sg225234 +S'lithograph on newsprint' +p261663 +sg225236 +S'unknown date\n' +p261664 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009564.jpg' +p261665 +sg225240 +g27 +sa(dp261666 +g225230 +S'Daumier fut le peintre ordinaire...' +p261667 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261668 +sg225234 +S'lithograph on newsprint' +p261669 +sg225236 +S'probably 1839' +p261670 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000955c.jpg' +p261671 +sg225240 +g27 +sa(dp261672 +g225230 +S"Un Quart d'heure apr\xc3\xa8s sa mort il \xc3\xa9tait encore en vie" +p261673 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261674 +sg225234 +S'lithograph on newsprint' +p261675 +sg225236 +S'1866' +p261676 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094e9.jpg' +p261677 +sg225240 +g27 +sa(dp261678 +g225230 +S'The Marketplace in Bergen op Zoom' +p261679 +sg225232 +S'Abel Grimmer' +p261680 +sg225234 +S', probably 1590 and 1597' +p261681 +sg225236 +S'\n' +p261682 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e31.jpg' +p261683 +sg225240 +g27 +sa(dp261684 +g225232 +S'Giovanni Battista Piranesi' +p261685 +sg225240 +g27 +sg225234 +S'1 vol: ill: etchings' +p261686 +sg225230 +S'Le Antichit\xc3\xa0 Romane (volume I)' +p261687 +sg225236 +S'published 1756' +p261688 +sa(dp261689 +g225232 +S'Giovanni Battista Piranesi' +p261690 +sg225240 +g27 +sg225234 +S'1 vol: ill: etchings' +p261691 +sg225230 +S'Le Antichit\xc3\xa0 Romane (volume II)' +p261692 +sg225236 +S'published 1756' +p261693 +sa(dp261694 +g225232 +S'Giovanni Battista Piranesi' +p261695 +sg225240 +g27 +sg225234 +S'1 vol: ill: etchings' +p261696 +sg225230 +S'Le Antichit\xc3\xa0 Romane (volume III)' +p261697 +sg225236 +S'published 1756' +p261698 +sa(dp261699 +g225232 +S'Giovanni Battista Piranesi' +p261700 +sg225240 +g27 +sg225234 +S'1 vol: ill: etchings' +p261701 +sg225230 +S'Le Antichit\xc3\xa0 Romane (volume IV)' +p261702 +sg225236 +S'published 1756' +p261703 +sa(dp261704 +g225230 +S'Sentinel I' +p261705 +sg225232 +S'David Smith' +p261706 +sg225234 +S'steel' +p261707 +sg225236 +S'1956' +p261708 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a00016af.jpg' +p261709 +sg225240 +g27 +sa(dp261710 +g225232 +S'William Zorach' +p261711 +sg225240 +g27 +sg225234 +S'granite' +p261712 +sg225230 +S'Man of Judah' +p261713 +sg225236 +S'1950' +p261714 +sa(dp261715 +g225230 +S'Perpetual Sacrifice' +p261716 +sg225232 +S'Alfonso Ossorio' +p261717 +sg225234 +S'ink, wax, and watercolor on Whatman watercolor board' +p261718 +sg225236 +S'1949' +p261719 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a000097a.jpg' +p261720 +sg225240 +g27 +sa(dp261721 +g225230 +S'Hawk Mountain' +p261722 +sg225232 +S'Andrew Wyeth' +p261723 +sg225234 +S'watercolor over graphite' +p261724 +sg225236 +S'1961' +p261725 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a02.jpg' +p261726 +sg225240 +g27 +sa(dp261727 +g225230 +S'Ecce Homo' +p261728 +sg225232 +S'German 15th Century' +p261729 +sg225234 +S'Schreiber, no. 336, State a' +p261730 +sg225236 +S'\nwoodcut, with contemporary hand-coloring' +p261731 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a505.jpg' +p261732 +sg225240 +g27 +sa(dp261733 +g225232 +S'Laszlo Dus' +p261734 +sg225240 +g27 +sg225234 +S'monotype in gray, red and red-brown' +p261735 +sg225230 +S'Szobar II [left part]' +p261736 +sg225236 +S'1978' +p261737 +sa(dp261738 +g225232 +S'Laszlo Dus' +p261739 +sg225240 +g27 +sg225234 +S'monotype in gray, red and red-brown' +p261740 +sg225230 +S'Szobar II [center part]' +p261741 +sg225236 +S'1978' +p261742 +sa(dp261743 +g225232 +S'Laszlo Dus' +p261744 +sg225240 +g27 +sg225234 +S'monotype in gray, red and red-brown' +p261745 +sg225230 +S'Szobar II [right part]' +p261746 +sg225236 +S'1978' +p261747 +sa(dp261748 +g225232 +S'Emil Nolde' +p261749 +sg225240 +g27 +sg225234 +S'etching' +p261750 +sg225230 +S'Hamburg, Freihafen' +p261751 +sg225236 +S'1910' +p261752 +sa(dp261753 +g225230 +S'The Bathers (Large Plate)' +p261754 +sg225232 +S'Paul C\xc3\xa9zanne' +p261755 +sg225234 +S'colored lithograph' +p261756 +sg225236 +S'unknown date\n' +p261757 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00057/a000570b.jpg' +p261758 +sg225240 +g27 +sa(dp261759 +g225230 +S'Nude Woman Standing, Drying Herself (Femme nue debout, a sa toilette)' +p261760 +sg225232 +S'Edgar Degas' +p261761 +sg225234 +S'lithograph' +p261762 +sg225236 +S'c. 1890' +p261763 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009595.jpg' +p261764 +sg225240 +g27 +sa(dp261765 +g225232 +S'James Ensor' +p261766 +sg225240 +g27 +sg225234 +S'hand-colored etching and drypoint' +p261767 +sg225230 +S'The Ice Skaters (Les Patineurs)' +p261768 +sg225236 +S'1889' +p261769 +sa(dp261770 +g225230 +S'Mutter und Kind (Mother and Child)' +p261771 +sg225232 +S'Wilhelm Lehmbruck' +p261772 +sg225234 +S'drypoint' +p261773 +sg225236 +S'1910' +p261774 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b7c9.jpg' +p261775 +sg225240 +g27 +sa(dp261776 +g225230 +S'Head of a Woman (T\xc3\xaate de femme)' +p261777 +sg225232 +S'Pablo Picasso' +p261778 +sg225234 +S'etching' +p261779 +sg225236 +S'1905' +p261780 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ed/a000edb8.jpg' +p261781 +sg225240 +g27 +sa(dp261782 +g225230 +S'Adewold and Emma' +p261783 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p261784 +sg225234 +S'etching' +p261785 +sg225236 +S'1798' +p261786 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b322.jpg' +p261787 +sg225240 +g27 +sa(dp261788 +g225230 +S'Ancient Teutons' +p261789 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p261790 +sg225234 +S'etching' +p261791 +sg225236 +S'1782' +p261792 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b314.jpg' +p261793 +sg225240 +g27 +sa(dp261794 +g225230 +S'The First French Church in Berlin' +p261795 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p261796 +sg225234 +S'etching' +p261797 +sg225236 +S'1794' +p261798 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b32d.jpg' +p261799 +sg225240 +g27 +sa(dp261800 +g225230 +S'The Fortunate Rescue' +p261801 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p261802 +sg225234 +S'etching' +p261803 +sg225236 +S'1791' +p261804 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b321.jpg' +p261805 +sg225240 +g27 +sa(dp261806 +g225230 +S'Imaginations' +p261807 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p261808 +sg225234 +S'etching (3 etchings on one sheet from one plate)' +p261809 +sg225236 +S'1800' +p261810 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b31d.jpg' +p261811 +sg225240 +g27 +sa(dp261812 +g225230 +S'Party with Six Ladies and the Artist' +p261813 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p261814 +sg225234 +S'etching' +p261815 +sg225236 +S'1758' +p261816 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b33b.jpg' +p261817 +sg225240 +g27 +sa(dp261818 +g225230 +S'Russians and Turks' +p261819 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p261820 +sg225234 +S'etching' +p261821 +sg225236 +S'1764' +p261822 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b33f.jpg' +p261823 +sg225240 +g27 +sa(dp261824 +g225230 +S'Illustrations to La Fontaine' +p261825 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p261826 +sg225234 +S'etching' +p261827 +sg225236 +S'1799/1800' +p261828 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b323.jpg' +p261829 +sg225240 +g27 +sa(dp261830 +g225230 +S'The Voyage to Paris' +p261831 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p261832 +sg225234 +S'etching' +p261833 +sg225236 +S'1798' +p261834 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b32c.jpg' +p261835 +sg225240 +g27 +sa(dp261836 +g225230 +S'The Voyage to Paris' +p261837 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p261838 +sg225234 +S'etching' +p261839 +sg225236 +S'1798' +p261840 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b32b.jpg' +p261841 +sg225240 +g27 +sa(dp261842 +g225230 +S'The Voyage to Paris' +p261843 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p261844 +sg225234 +S'etching' +p261845 +sg225236 +S'1798' +p261846 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b32a.jpg' +p261847 +sg225240 +g27 +sa(dp261848 +g225230 +S'The Voyage to Paris' +p261849 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p261850 +sg225234 +S'etching' +p261851 +sg225236 +S'1798' +p261852 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b31e.jpg' +p261853 +sg225240 +g27 +sa(dp261854 +g225230 +S'The Voyage to Paris' +p261855 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p261856 +sg225234 +S'etching' +p261857 +sg225236 +S'1798' +p261858 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b31f.jpg' +p261859 +sg225240 +g27 +sa(dp261860 +g225230 +S'The Voyage to Paris' +p261861 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p261862 +sg225234 +S'etching' +p261863 +sg225236 +S'1798' +p261864 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b320.jpg' +p261865 +sg225240 +g27 +sa(dp261866 +g225232 +S'Artist Information (' +p261867 +sg225240 +g27 +sg225234 +S'(author)' +p261868 +sg225230 +S'Max Liebermann zu Hause' +p261869 +sg225236 +S'\n' +p261870 +sa(dp261871 +g225232 +S'Paul Gavarni' +p261872 +sg225240 +g27 +sg225234 +S'1 vol: ill: 100 lithographs plus title page' +p261873 +sg225230 +S'Oeuvres Nouvelles de Gavarni: Par-ci, Par-la et Physionomies Parisiennes' +p261874 +sg225236 +S'1857-1858' +p261875 +sa(dp261876 +g225232 +S'Artist Information (' +p261877 +sg225240 +g27 +sg225234 +S'(artist)' +p261878 +sg225230 +S'The Poetical Works of John Scott Esq.' +p261879 +sg225236 +S'\n' +p261880 +sa(dp261881 +g225232 +S'Artist Information (' +p261882 +sg225240 +g27 +sg225234 +S'(author)' +p261883 +sg225230 +S'Dichtmaatige Gedachten over Honderddufenuftig Bybelsche Printverbeeldingen' +p261884 +sg225236 +S'\n' +p261885 +sa(dp261886 +g225230 +S'Saint Nicolas of Myra' +p261887 +sg225232 +S'Italian 15th Century' +p261888 +sg225234 +S'sheet: 29.3 x 21.2 cm (11 9/16 x 8 3/8 in.)' +p261889 +sg225236 +S'\nwoodcut, hand-colored in red, sand, green, olive, and tan, on blue paper' +p261890 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f97.jpg' +p261891 +sg225240 +g27 +sa(dp261892 +g225230 +S'American Landscape' +p261893 +sg225232 +S'Edward Hopper' +p261894 +sg225234 +S'etching' +p261895 +sg225236 +S'1920' +p261896 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ac9.jpg' +p261897 +sg225240 +g27 +sa(dp261898 +g225230 +S'Lady Cunliffe' +p261899 +sg225232 +S'John Hoppner' +p261900 +sg225234 +S'oil on canvas' +p261901 +sg225236 +S'1781/1782' +p261902 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00005/a000052e.jpg' +p261903 +sg225240 +g27 +sa(dp261904 +g225230 +S'Two Nudes [obverse]' +p261905 +sg225232 +S'Ernst Ludwig Kirchner' +p261906 +sg225234 +S'oil on canvas' +p261907 +sg225236 +S'1907' +p261908 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e22.jpg' +p261909 +sg225240 +g27 +sa(dp261910 +g225230 +S'Nude Figure' +p261911 +sg225232 +S'Ernst Ludwig Kirchner' +p261912 +sg225234 +S'oil on canvas' +p261913 +sg225236 +S'1907' +p261914 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e23.jpg' +p261915 +sg225240 +g27 +sa(dp261916 +g225232 +S'Pierre Soulages' +p261917 +sg225240 +g27 +sg225234 +S'oil on canvas' +p261918 +sg225230 +S'Painting' +p261919 +sg225236 +S'1957' +p261920 +sa(dp261921 +g225232 +S'Artist Information (' +p261922 +sg225240 +g27 +sg225234 +S'(author)' +p261923 +sg225230 +S'Paradise Lost (volume I)' +p261924 +sg225236 +S'\n' +p261925 +sa(dp261926 +g225232 +S'Artist Information (' +p261927 +sg225240 +g27 +sg225234 +S'(author)' +p261928 +sg225230 +S'Paradise Lost (volume II)' +p261929 +sg225236 +S'\n' +p261930 +sa(dp261931 +g225230 +S'The Booby (Pelecanus Sula)' +p261932 +sg225232 +S'Mark Catesby' +p261933 +sg225234 +S'hand-colored etching' +p261934 +sg225236 +S'published 1731-1743' +p261935 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a0007821.jpg' +p261936 +sg225240 +g27 +sa(dp261937 +g225230 +S'The Cutwater (Rhynchops nigra)' +p261938 +sg225232 +S'Mark Catesby' +p261939 +sg225234 +S'hand-colored etching' +p261940 +sg225236 +S'published 1731-1743' +p261941 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a000782d.jpg' +p261942 +sg225240 +g27 +sa(dp261943 +g225230 +S'Monsieur... voici ce que nous donnons... en prime...' +p261944 +sg225232 +S'Honor\xc3\xa9 Daumier' +p261945 +sg225234 +S'lithograph' +p261946 +sg225236 +S'1845' +p261947 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a0009328.jpg' +p261948 +sg225240 +g27 +sa(dp261949 +g225230 +S'Les troupes Austro-Prussiennes entrant a Hambourg ... [top half]' +p261950 +sg225232 +S'Artist Information (' +p261951 +sg225234 +S'(artist after)' +p261952 +sg225236 +S'\n' +p261953 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009575.jpg' +p261954 +sg225240 +g27 +sa(dp261955 +g225230 +S"Interieur d'un omnibus [bottom half]" +p261956 +sg225232 +S'Artist Information (' +p261957 +sg225234 +S'(artist after)' +p261958 +sg225236 +S'\n' +p261959 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009576.jpg' +p261960 +sg225240 +g27 +sa(dp261961 +g225230 +S'Train de plaisir' +p261962 +sg225232 +S'Artist Information (' +p261963 +sg225234 +S'(artist after)' +p261964 +sg225236 +S'\n' +p261965 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009568.jpg' +p261966 +sg225240 +g27 +sa(dp261967 +g225232 +S'G\xc3\xa9rard de Pal\xc3\xa9zieux' +p261968 +sg225240 +g27 +sg225234 +S'etching' +p261969 +sg225230 +S'Still Life' +p261970 +sg225236 +S'1961' +p261971 +sa(dp261972 +g225232 +S'Jeanet Elizabeth Dreskin-Haig' +p261973 +sg225240 +g27 +sg225234 +S'litho-etching' +p261974 +sg225230 +S'Rite of Spring' +p261975 +sg225236 +S'unknown date\n' +p261976 +sa(dp261977 +g225232 +S'F\xc3\xa9lix Rozen' +p261978 +sg225240 +g27 +sg225234 +S'color lithograph' +p261979 +sg225230 +S'Three Black Bands (Trois Bandes Noires)' +p261980 +sg225236 +S'1979' +p261981 +sa(dp261982 +g225232 +S'Artist Information (' +p261983 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Blue, Yellow and Red Squares' +p261984 +sg225236 +S'(publisher)' +p261985 +sa(dp261986 +g225232 +S'Frank Stella' +p261987 +sg225240 +g27 +sg225234 +S'7-color lithograph (aluminum) on English Vellum Graph paper' +p261988 +sg225230 +S'Star of Persia I' +p261989 +sg225236 +S'1967' +p261990 +sa(dp261991 +g225232 +S'Frank Stella' +p261992 +sg225240 +g27 +sg225234 +S'7-color lithograph (aluminum) on English Vellum Graph paper' +p261993 +sg225230 +S'Star of Persia II' +p261994 +sg225236 +S'1967' +p261995 +sa(dp261996 +g225232 +S'Frank Stella' +p261997 +sg225240 +g27 +sg225234 +S'cast paper relief with hand-coloring' +p261998 +sg225230 +S'Bogoria (VI)' +p261999 +sg225236 +S'1975' +p262000 +sa(dp262001 +g225232 +S'Frank Stella' +p262002 +sg225240 +g27 +sg225234 +S'14-color lithograph (aluminum) and screenprint on Special Arjomari paper' +p262003 +sg225230 +S'Port aux Basques' +p262004 +sg225236 +S'1970/1971' +p262005 +sa(dp262006 +g225232 +S'Frank Stella' +p262007 +sg225240 +g27 +sg225234 +S'11-color lithograph (aluminum) on Special Arjomari paper' +p262008 +sg225230 +S'River of Ponds I' +p262009 +sg225236 +S'1970' +p262010 +sa(dp262011 +g225232 +S'Frank Stella' +p262012 +sg225240 +g27 +sg225234 +S'color screenprint on English Vellum Graph paper' +p262013 +sg225230 +S'Pastel Stack' +p262014 +sg225236 +S'1967/1970' +p262015 +sa(dp262016 +g225230 +S'Woodland Pond with a Fisherman' +p262017 +sg225232 +S'Willem Buytewech' +p262018 +sg225234 +S'black chalk with pen and brown ink on laid paper' +p262019 +sg225236 +S'c. 1617' +p262020 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022cb.jpg' +p262021 +sg225240 +g27 +sa(dp262022 +g225230 +S'Landscape with Sleeping Peasants' +p262023 +sg225232 +S'Jacques de Gheyn II' +p262024 +sg225234 +S'pen and brown ink on laid paper' +p262025 +sg225236 +S'c. 1605' +p262026 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f6a.jpg' +p262027 +sg225240 +g27 +sa(dp262028 +g225230 +S'The Prison Visit' +p262029 +sg225232 +S'Giovanni Domenico Tiepolo' +p262030 +sg225234 +S'pen and brown ink with brown wash over black chalk on laid paper' +p262031 +sg225236 +S'1797/1804' +p262032 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00028/a0002863.jpg' +p262033 +sg225240 +g27 +sa(dp262034 +g225230 +S"Punchinello's Farewell to Venice" +p262035 +sg225232 +S'Giovanni Domenico Tiepolo' +p262036 +sg225234 +S'pen and brown ink with brown wash over black chalk on laid paper' +p262037 +sg225236 +S'1797/1804' +p262038 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00028/a0002864.jpg' +p262039 +sg225240 +g27 +sa(dp262040 +g225230 +S'Herdsman Crossing a River' +p262041 +sg225232 +S'Francesco Casanova' +p262042 +sg225234 +S', unknown date' +p262043 +sg225236 +S'\n' +p262044 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006efd.jpg' +p262045 +sg225240 +g27 +sa(dp262046 +g225230 +S'Lake George' +p262047 +sg225232 +S'John Bunyan Bristol' +p262048 +sg225234 +S'graphite and white gouache on cream wove paper' +p262049 +sg225236 +S'unknown date\n' +p262050 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008b4.jpg' +p262051 +sg225240 +g27 +sa(dp262052 +g225230 +S'Venetian Lace Making' +p262053 +sg225232 +S'William Merritt Chase' +p262054 +sg225234 +S'graphite on tan laid paper' +p262055 +sg225236 +S'unknown date\n' +p262056 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e49b.jpg' +p262057 +sg225240 +g27 +sa(dp262058 +g225230 +S'Fifth Avenue Building from Grace Church' +p262059 +sg225232 +S'Henry Farrer' +p262060 +sg225234 +S'graphite on wove paper' +p262061 +sg225236 +S'unknown date\n' +p262062 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008dd.jpg' +p262063 +sg225240 +g27 +sa(dp262064 +g225230 +S'Fishing Boats and Shack' +p262065 +sg225232 +S'Henry Farrer' +p262066 +sg225234 +S'graphite on wove paper' +p262067 +sg225236 +S'unknown date\n' +p262068 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4a0.jpg' +p262069 +sg225240 +g27 +sa(dp262070 +g225232 +S'Margaret Foster Richardson' +p262071 +sg225240 +g27 +sg225234 +S'graphite on brown wove paper' +p262072 +sg225230 +S'Head of a Young Girl' +p262073 +sg225236 +S'unknown date\n' +p262074 +sa(dp262075 +g225230 +S'Maine Coast' +p262076 +sg225232 +S'Aaron Draper Shattuck' +p262077 +sg225234 +S'graphite and white gouache on brown wove paper' +p262078 +sg225236 +S'1861' +p262079 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000eb/a000ebab.jpg' +p262080 +sg225240 +g27 +sa(dp262081 +g225232 +S'Howard Mehring' +p262082 +sg225240 +g27 +sg225234 +S'black felt-tip pen' +p262083 +sg225230 +S'Untitled' +p262084 +sg225236 +S'1976' +p262085 +sa(dp262086 +g225230 +S'Florence Davey' +p262087 +sg225232 +S'George Bellows' +p262088 +sg225234 +S'oil on wood' +p262089 +sg225236 +S'1914' +p262090 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a000001d.jpg' +p262091 +sg225240 +g27 +sa(dp262092 +g225230 +S'Young Man Warning a Sorrowful Woman' +p262093 +sg225232 +S'Giulio Bonasone' +p262094 +sg225234 +S'engraving on blue paper' +p262095 +sg225236 +S'unknown date\n' +p262096 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caa1.jpg' +p262097 +sg225240 +g27 +sa(dp262098 +g225230 +S'The Christ Child Trampling on Sin' +p262099 +sg225232 +S'S\xc3\xa9bastien Bourdon' +p262100 +sg225234 +S'etching and engraving' +p262101 +sg225236 +S'unknown date\n' +p262102 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00085/a0008526.jpg' +p262103 +sg225240 +g27 +sa(dp262104 +g225230 +S'Landscape with Travelers' +p262105 +sg225232 +S'Georges Focus' +p262106 +sg225234 +S'etching' +p262107 +sg225236 +S'unknown date\n' +p262108 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b0c.jpg' +p262109 +sg225240 +g27 +sa(dp262110 +g225230 +S'George Duke of Buckingham with his Brother Francis' +p262111 +sg225232 +S'Artist Information (' +p262112 +sg225234 +S'(artist after)' +p262113 +sg225236 +S'\n' +p262114 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007de0.jpg' +p262115 +sg225240 +g27 +sa(dp262116 +g225230 +S'Nocturnal Landscape with River Fishermen outside City Walls' +p262117 +sg225232 +S'Artist Information (' +p262118 +sg225234 +S'(artist after)' +p262119 +sg225236 +S'\n' +p262120 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d031.jpg' +p262121 +sg225240 +g27 +sa(dp262122 +g225230 +S'Bath' +p262123 +sg225232 +S'John Sloan' +p262124 +sg225234 +S'monotype in burnt sienna' +p262125 +sg225236 +S'c. 1915' +p262126 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b91.jpg' +p262127 +sg225240 +g27 +sa(dp262128 +g225230 +S'Giacomo Antonio Mannini' +p262129 +sg225232 +S'Ottavio Leoni' +p262130 +sg225234 +S'etching' +p262131 +sg225236 +S'unknown date\n' +p262132 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a0006121.jpg' +p262133 +sg225240 +g27 +sa(dp262134 +g225230 +S"Cows at a Watering Place (Vaches a l'abreuvoir)" +p262135 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p262136 +sg225234 +S'cliche-verre' +p262137 +sg225236 +S'1862' +p262138 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00097/a00097f2.jpg' +p262139 +sg225240 +g27 +sa(dp262140 +g225230 +S'Summer Harvest in an Extensive Landscape' +p262141 +sg225232 +S'Lodewyk Toeput' +p262142 +sg225234 +S'pen and black ink with blue and gray wash over black chalk on laid paper' +p262143 +sg225236 +S'unknown date\n' +p262144 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00028/a00028d5.jpg' +p262145 +sg225240 +g27 +sa(dp262146 +g225230 +S'Chene (Oak Tree)' +p262147 +sg225232 +S'Antoine-Pierre Mongin' +p262148 +sg225234 +S'lithograph' +p262149 +sg225236 +S'1816' +p262150 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fe7.jpg' +p262151 +sg225240 +g27 +sa(dp262152 +g225230 +S'A Persian on Horseback' +p262153 +sg225232 +S'Aleksandr Osipovich Orlovskii' +p262154 +sg225234 +S'lithograph' +p262155 +sg225236 +S'1820' +p262156 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000de/a000deef.jpg' +p262157 +sg225240 +g27 +sa(dp262158 +g225230 +S'Man and Veiled Woman on Horseback' +p262159 +sg225232 +S'Aleksandr Osipovich Orlovskii' +p262160 +sg225234 +S'lithograph' +p262161 +sg225236 +S'1820' +p262162 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000de/a000deeb.jpg' +p262163 +sg225240 +g27 +sa(dp262164 +g225230 +S'A Hired Coachman in Winter' +p262165 +sg225232 +S'Aleksandr Osipovich Orlovskii' +p262166 +sg225234 +S'lithograph' +p262167 +sg225236 +S'1820' +p262168 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000de/a000deec.jpg' +p262169 +sg225240 +g27 +sa(dp262170 +g225230 +S'Russian Porter Carrying Wood on a Cart' +p262171 +sg225232 +S'Aleksandr Osipovich Orlovskii' +p262172 +sg225234 +S'lithograph' +p262173 +sg225236 +S'1820' +p262174 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000de/a000deed.jpg' +p262175 +sg225240 +g27 +sa(dp262176 +g225230 +S'Sled Loaded with Flour Led by an Isvoschik' +p262177 +sg225232 +S'Aleksandr Osipovich Orlovskii' +p262178 +sg225234 +S'lithograph' +p262179 +sg225236 +S'1820' +p262180 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000de/a000deee.jpg' +p262181 +sg225240 +g27 +sa(dp262182 +g225230 +S'Une Discussion litt\xc3\xa9raire a la deuxi\xc3\xa8me Galerie' +p262183 +sg225232 +S'Honor\xc3\xa9 Daumier' +p262184 +sg225234 +S'lithograph' +p262185 +sg225236 +S'1864' +p262186 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00094/a00094e6.jpg' +p262187 +sg225240 +g27 +sa(dp262188 +g225230 +S'Drapery Study for "Mary and Elizabeth Royall"' +p262189 +sg225232 +S'John Singleton Copley' +p262190 +sg225234 +S'graphite and white chalk on gray-brown laid paper' +p262191 +sg225236 +S'c. 1758' +p262192 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008c3.jpg' +p262193 +sg225240 +g27 +sa(dp262194 +g225230 +S'Study for "The Death of the Earl of Chatham"' +p262195 +sg225232 +S'John Singleton Copley' +p262196 +sg225234 +S'graphite and white chalk on discolored blue paper' +p262197 +sg225236 +S'1779' +p262198 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008c4.jpg' +p262199 +sg225240 +g27 +sa(dp262200 +g225230 +S'A Gentleman' +p262201 +sg225232 +S'John Singleton Copley' +p262202 +sg225234 +S'graphite and white chalk on gray-washed laid paper, squared with graphite' +p262203 +sg225236 +S'1776/1780' +p262204 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008c5.jpg' +p262205 +sg225240 +g27 +sa(dp262206 +g225230 +S'Dr. John Warren' +p262207 +sg225232 +S'Rembrandt Peale' +p262208 +sg225234 +S'black, white, and light brown chalk on dark brown paper' +p262209 +sg225236 +S'c. 1806' +p262210 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a000097b.jpg' +p262211 +sg225240 +g27 +sa(dp262212 +g225230 +S'The Cape of Pinzon' +p262213 +sg225232 +S'John Vanderlyn' +p262214 +sg225234 +S'brown and black chalk heightened with white chalk and pastel on blue board' +p262215 +sg225236 +S'c. 1838' +p262216 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a00009e9.jpg' +p262217 +sg225240 +g27 +sa(dp262218 +g225230 +S'George III Resuming Royal Power in 1789' +p262219 +sg225232 +S'Benjamin West' +p262220 +sg225234 +S'pen and brown ink with brown wash on laid paper mounted to board' +p262221 +sg225236 +S'c. 1789' +p262222 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f09d.jpg' +p262223 +sg225240 +g27 +sa(dp262224 +g225230 +S'The Loge' +p262225 +sg225232 +S'Edgar Degas' +p262226 +sg225234 +S'oil on wood' +p262227 +sg225236 +S'c. 1883' +p262228 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006bf.jpg' +p262229 +sg225240 +g27 +sa(dp262230 +g225230 +S'Narcissus III' +p262231 +sg225232 +S'Gene Davis' +p262232 +sg225234 +S'acrylic on canvas' +p262233 +sg225236 +S'1975' +p262234 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d81.jpg' +p262235 +sg225240 +g27 +sa(dp262236 +g225230 +S'Pieter Bruegel the Younger' +p262237 +sg225232 +S'Sir Anthony van Dyck' +p262238 +sg225234 +S'etching' +p262239 +sg225236 +S'probably 1626/1641' +p262240 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0e8.jpg' +p262241 +sg225240 +g27 +sa(dp262242 +g225232 +S'Henri Matisse' +p262243 +sg225240 +g27 +sg225234 +S'color stencil in gouache' +p262244 +sg225230 +S'The Clown' +p262245 +sg225236 +S'published 1947' +p262246 +sa(dp262247 +g225232 +S'Henri Matisse' +p262248 +sg225240 +g27 +sg225234 +S'portfolio with 20 color stencils in gouache plus table of contents and introduction' +p262249 +sg225230 +S'Jazz' +p262250 +sg225236 +S'published 1947' +p262251 +sa(dp262252 +g225232 +S'Henri Matisse' +p262253 +sg225240 +g27 +sg225234 +S'color stencil in gouache' +p262254 +sg225230 +S'The Circus' +p262255 +sg225236 +S'published 1947' +p262256 +sa(dp262257 +g225232 +S'Henri Matisse' +p262258 +sg225240 +g27 +sg225234 +S'color stencil in gouache' +p262259 +sg225230 +S'Monsieur Loyal' +p262260 +sg225236 +S'published 1947' +p262261 +sa(dp262262 +g225232 +S'Henri Matisse' +p262263 +sg225240 +g27 +sg225234 +S'color stencil in gouache' +p262264 +sg225230 +S'The Nightmare of the White Elephant' +p262265 +sg225236 +S'published 1947' +p262266 +sa(dp262267 +g225232 +S'Henri Matisse' +p262268 +sg225240 +g27 +sg225234 +S'color stencil in gouache' +p262269 +sg225230 +S'The Horse, the Equestrienne, and the Clown' +p262270 +sg225236 +S'published 1947' +p262271 +sa(dp262272 +g225232 +S'Henri Matisse' +p262273 +sg225240 +g27 +sg225234 +S'color stencil in gouache' +p262274 +sg225230 +S'The Wolf' +p262275 +sg225236 +S'published 1947' +p262276 +sa(dp262277 +g225232 +S'Henri Matisse' +p262278 +sg225240 +g27 +sg225234 +S'color stencil in gouache' +p262279 +sg225230 +S'The Heart' +p262280 +sg225236 +S'published 1947' +p262281 +sa(dp262282 +g225232 +S'Henri Matisse' +p262283 +sg225240 +g27 +sg225234 +S'color stencil in gouache' +p262284 +sg225230 +S'Icarus' +p262285 +sg225236 +S'published 1947' +p262286 +sa(dp262287 +g225232 +S'Henri Matisse' +p262288 +sg225240 +g27 +sg225234 +S'color stencil in gouache' +p262289 +sg225230 +S'Forms' +p262290 +sg225236 +S'published 1947' +p262291 +sa(dp262292 +g225232 +S'Henri Matisse' +p262293 +sg225240 +g27 +sg225234 +S'color stencil in gouache' +p262294 +sg225230 +S'The Funeral of Pierrot' +p262295 +sg225236 +S'published 1947' +p262296 +sa(dp262297 +g225232 +S'Henri Matisse' +p262298 +sg225240 +g27 +sg225234 +S'color stencil in gouache' +p262299 +sg225230 +S'The Codomas' +p262300 +sg225236 +S'published 1947' +p262301 +sa(dp262302 +g225232 +S'Henri Matisse' +p262303 +sg225240 +g27 +sg225234 +S'color stencil in gouache' +p262304 +sg225230 +S'The Swimmer in a Pool' +p262305 +sg225236 +S'published 1947' +p262306 +sa(dp262307 +g225232 +S'Henri Matisse' +p262308 +sg225240 +g27 +sg225234 +S'color stencil in gouache' +p262309 +sg225230 +S'The Sword Swallower' +p262310 +sg225236 +S'published 1947' +p262311 +sa(dp262312 +g225232 +S'Henri Matisse' +p262313 +sg225240 +g27 +sg225234 +S'color stencil in gouache' +p262314 +sg225230 +S'The Cowboy' +p262315 +sg225236 +S'published 1947' +p262316 +sa(dp262317 +g225232 +S'Henri Matisse' +p262318 +sg225240 +g27 +sg225234 +S'color stencil in gouache' +p262319 +sg225230 +S'The Knife Thrower' +p262320 +sg225236 +S'published 1947' +p262321 +sa(dp262322 +g225232 +S'Henri Matisse' +p262323 +sg225240 +g27 +sg225234 +S'color stencil in gouache' +p262324 +sg225230 +S'Destiny' +p262325 +sg225236 +S'published 1947' +p262326 +sa(dp262327 +g225232 +S'Henri Matisse' +p262328 +sg225240 +g27 +sg225234 +S'color stencil in gouache' +p262329 +sg225230 +S'The Lagoon' +p262330 +sg225236 +S'published 1947' +p262331 +sa(dp262332 +g225232 +S'Henri Matisse' +p262333 +sg225240 +g27 +sg225234 +S'color stencil in gouache' +p262334 +sg225230 +S'The Lagoon' +p262335 +sg225236 +S'published 1947' +p262336 +sa(dp262337 +g225232 +S'Henri Matisse' +p262338 +sg225240 +g27 +sg225234 +S'color stencil in gouache' +p262339 +sg225230 +S'The Lagoon' +p262340 +sg225236 +S'published 1947' +p262341 +sa(dp262342 +g225232 +S'Henri Matisse' +p262343 +sg225240 +g27 +sg225234 +S'color stencil in gouache' +p262344 +sg225230 +S'The Toboggan' +p262345 +sg225236 +S'published 1947' +p262346 +sa(dp262347 +g225232 +S'Elinor Roberts' +p262348 +sg225240 +g27 +sg225234 +S'pen and black and colored ink on paperboard' +p262349 +sg225230 +S'Untitled (East House IV)' +p262350 +sg225236 +S'unknown date\n' +p262351 +sa(dp262352 +g225232 +S'Elinor Roberts' +p262353 +sg225240 +g27 +sg225234 +S'pen and black ink on paperboard' +p262354 +sg225230 +S'Dunham Hill (5)' +p262355 +sg225236 +S'unknown date\n' +p262356 +sa(dp262357 +g225232 +S'Elinor Roberts' +p262358 +sg225240 +g27 +sg225234 +S'pen and black ink on paperboard' +p262359 +sg225230 +S'Dunham Hill House (4)' +p262360 +sg225236 +S'unknown date\n' +p262361 +sa(dp262362 +g225230 +S'Elizabeth Gray Otis (Mrs. Samuel Alleyne Otis)' +p262363 +sg225232 +S'John Singleton Copley' +p262364 +sg225234 +S'oil on canvas' +p262365 +sg225236 +S'c. 1764' +p262366 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000065.jpg' +p262367 +sg225240 +S'In a fanciful guise taken from European prototypes, the sitter appears \r\n as a shepherdess holding a herder’s staff. Elizabeth Gray (1746-1779) \r\n married a Boston merchant in 1764. With its promising sunrise, this \r\n pastoral scene was almost certainly commissioned to mark her wedding.\n ' +p262368 +sa(dp262369 +g225230 +S'Samuel Alleyne Otis' +p262370 +sg225232 +S'Gilbert Stuart' +p262371 +sg225234 +S'oil on wood' +p262372 +sg225236 +S'1811/1813' +p262373 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000258.jpg' +p262374 +sg225240 +g27 +sa(dp262375 +g225230 +S'Head of Saint John the Baptist' +p262376 +sg225232 +S'Hans Baldung Grien' +p262377 +sg225234 +S'black chalk on two joined sheets of laid paper' +p262378 +sg225236 +S'1516' +p262379 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00033/a00033c8.jpg' +p262380 +sg225240 +g27 +sa(dp262381 +g225230 +S'A Stormy Landscape' +p262382 +sg225232 +S'Marco Ricci' +p262383 +sg225234 +S'gouache on kidskin backed with paper' +p262384 +sg225236 +S'c. 1725' +p262385 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00026/a00026ee.jpg' +p262386 +sg225240 +g27 +sa(dp262387 +g225230 +S'Christ as Salvator Mundi' +p262388 +sg225232 +S'German 15th Century' +p262389 +sg225234 +S'Schreiber, no. 835' +p262390 +sg225236 +S'\nhand-colored woodcut' +p262391 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a654.jpg' +p262392 +sg225240 +g27 +sa(dp262393 +g225230 +S'Christ on the Cross' +p262394 +sg225232 +S'German 15th Century' +p262395 +sg225234 +S'Schreiber, no. 394' +p262396 +sg225236 +S'\nhand-colored woodcut' +p262397 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a50d.jpg' +p262398 +sg225240 +g27 +sa(dp262399 +g225230 +S'Saint Agnes' +p262400 +sg225232 +S'German 15th Century' +p262401 +sg225234 +S'Schreiber, no. 1180, State b' +p262402 +sg225236 +S'\nhand-colored woodcut with manuscript inscriptions' +p262403 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a525.jpg' +p262404 +sg225240 +g27 +sa(dp262405 +g225230 +S'The Rape of a Sabine' +p262406 +sg225232 +S'Artist Information (' +p262407 +sg225234 +S'(artist after)' +p262408 +sg225236 +S'\n' +p262409 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c827.jpg' +p262410 +sg225240 +g27 +sa(dp262411 +g225230 +S'Striding Man' +p262412 +sg225232 +S'Artist Information (' +p262413 +sg225234 +S'(artist after)' +p262414 +sg225236 +S'\n' +p262415 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008351.jpg' +p262416 +sg225240 +g27 +sa(dp262417 +g225230 +S'The Nativity with God the Father and the Holy Spirit' +p262418 +sg225232 +S'Giovanni Benedetto Castiglione' +p262419 +sg225234 +S'etching' +p262420 +sg225236 +S'unknown date\n' +p262421 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a0006586.jpg' +p262422 +sg225240 +g27 +sa(dp262423 +g225230 +S'Christ before Caiaphas' +p262424 +sg225232 +S'Artist Information (' +p262425 +sg225234 +S'(artist after)' +p262426 +sg225236 +S'\n' +p262427 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3d5.jpg' +p262428 +sg225240 +g27 +sa(dp262429 +g225230 +S'The Annunciation' +p262430 +sg225232 +S'Parmigianino' +p262431 +sg225234 +S'etching' +p262432 +sg225236 +S'unknown date\n' +p262433 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c776.jpg' +p262434 +sg225240 +g27 +sa(dp262435 +g225230 +S'The Entombment' +p262436 +sg225232 +S'Parmigianino' +p262437 +sg225234 +S'etching and drypoint [second version]' +p262438 +sg225236 +S'c. 1530' +p262439 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c852.jpg' +p262440 +sg225240 +g27 +sa(dp262441 +g225230 +S'Judith' +p262442 +sg225232 +S'Parmigianino' +p262443 +sg225234 +S'etching' +p262444 +sg225236 +S'unknown date\n' +p262445 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c76f.jpg' +p262446 +sg225240 +g27 +sa(dp262447 +g225230 +S'Saint Tha\xc3\xafs' +p262448 +sg225232 +S'Parmigianino' +p262449 +sg225234 +S'etching' +p262450 +sg225236 +S'unknown date\n' +p262451 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c771.jpg' +p262452 +sg225240 +g27 +sa(dp262453 +g225230 +S'Virgin and Child' +p262454 +sg225232 +S'Parmigianino' +p262455 +sg225234 +S'etching' +p262456 +sg225236 +S'unknown date\n' +p262457 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c777.jpg' +p262458 +sg225240 +g27 +sa(dp262459 +g225230 +S'The Rape of Proserpina' +p262460 +sg225232 +S'Giuseppe Scolari' +p262461 +sg225234 +S'woodcut' +p262462 +sg225236 +S'unknown date\n' +p262463 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8c9.jpg' +p262464 +sg225240 +g27 +sa(dp262465 +g225230 +S'The Apostle Jean Journet Setting Out for the Conquest of Universal Harmony' +p262466 +sg225232 +S'Gustave Courbet' +p262467 +sg225234 +S'lithograph' +p262468 +sg225236 +S'1850' +p262469 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f31.jpg' +p262470 +sg225240 +g27 +sa(dp262471 +g225230 +S'View of Pont de la Tournelle and Notre Dame Taken from the Arsnel: pl.11' +p262472 +sg225232 +S'Thomas Girtin' +p262473 +sg225234 +S'soft-ground etching retouched with brown and ochre washes' +p262474 +sg225236 +S'published 1802' +p262475 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a00078a1.jpg' +p262476 +sg225240 +g27 +sa(dp262477 +g225230 +S'View of the Village of Chaillot from the Pont de la Concorde: pl.17' +p262478 +sg225232 +S'Thomas Girtin' +p262479 +sg225234 +S'soft-ground etching retouched with pencil and brown and ochre washes' +p262480 +sg225236 +S'published 1802' +p262481 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a00078a0.jpg' +p262482 +sg225240 +g27 +sa(dp262483 +g225232 +S'Jacob Kainen' +p262484 +sg225240 +g27 +sg225234 +S'color monotype on wove paper' +p262485 +sg225230 +S'Sesqui II' +p262486 +sg225236 +S'1979' +p262487 +sa(dp262488 +g225230 +S'The Adoration of the Magi' +p262489 +sg225232 +S'Christofano Robetta' +p262490 +sg225234 +S'engraving' +p262491 +sg225236 +S'unknown date\n' +p262492 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7b5.jpg' +p262493 +sg225240 +g27 +sa(dp262494 +g225232 +S'Erich Heckel' +p262495 +sg225240 +g27 +sg225234 +S'black crayon on wove paper' +p262496 +sg225230 +S'Siddi in Bed [recto]' +p262497 +sg225236 +S'1912' +p262498 +sa(dp262499 +g225232 +S'Erich Heckel' +p262500 +sg225240 +g27 +sg225234 +S'black chalk on wove paper' +p262501 +sg225230 +S'Landscape [verso]' +p262502 +sg225236 +S'1913' +p262503 +sa(dp262504 +g225230 +S'Pont-y-Pair over the River Conway above Llanrwst in the County of Denbigh' +p262505 +sg225232 +S'Paul Sandby' +p262506 +sg225234 +S'aquatint in sanguine' +p262507 +sg225236 +S'1776' +p262508 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a00077ef.jpg' +p262509 +sg225240 +g27 +sa(dp262510 +g225230 +S'Roman Statue of a Muse (Anchyrrhoe)' +p262511 +sg225232 +S'Jacques-Louis David' +p262512 +sg225234 +S'pen and black ink with gray wash on laid paper' +p262513 +sg225236 +S'unknown date\n' +p262514 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007192.jpg' +p262515 +sg225240 +g27 +sa(dp262516 +g225230 +S'Roman Statue of a Standing Woman' +p262517 +sg225232 +S'Jacques-Louis David' +p262518 +sg225234 +S'red chalk with brown wash on laid paper' +p262519 +sg225236 +S'unknown date\n' +p262520 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a00071ca.jpg' +p262521 +sg225240 +g27 +sa(dp262522 +g225232 +S'Louis Valtat' +p262523 +sg225240 +g27 +sg225234 +S'woodcut and monotype' +p262524 +sg225230 +S'Girl Combing Her Hair' +p262525 +sg225236 +S'1898' +p262526 +sa(dp262527 +g225230 +S'Louis XIII, King of France' +p262528 +sg225232 +S'Artist Information (' +p262529 +sg225234 +S'(artist after)' +p262530 +sg225236 +S'\n' +p262531 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d525.jpg' +p262532 +sg225240 +g27 +sa(dp262533 +g225230 +S"L'Ile aux Moines with Figure and Cart" +p262534 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p262535 +sg225234 +S'graphite' +p262536 +sg225236 +S'c. 1858' +p262537 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007289.jpg' +p262538 +sg225240 +g27 +sa(dp262539 +g225230 +S'Coastal Landscape with Shipping' +p262540 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p262541 +sg225234 +S'graphite' +p262542 +sg225236 +S'c. 1858' +p262543 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007253.jpg' +p262544 +sg225240 +g27 +sa(dp262545 +g225230 +S'Coastal Landscape with Shipping; Windmill in Distance' +p262546 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p262547 +sg225234 +S'graphite' +p262548 +sg225236 +S'c. 1858' +p262549 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072bf.jpg' +p262550 +sg225240 +g27 +sa(dp262551 +g225230 +S"L'Ile aux Moines with Workers in a Field" +p262552 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p262553 +sg225234 +S'graphite' +p262554 +sg225236 +S'c. 1858' +p262555 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007222.jpg' +p262556 +sg225240 +g27 +sa(dp262557 +g225230 +S'Landscape with Trees, Cottage, and Farm Wagon' +p262558 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p262559 +sg225234 +S'graphite' +p262560 +sg225236 +S'c. 1858' +p262561 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a00071e8.jpg' +p262562 +sg225240 +g27 +sa(dp262563 +g225230 +S'River Landscape with Buildings, Boats, and Figures' +p262564 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p262565 +sg225234 +S'graphite' +p262566 +sg225236 +S'c. 1858' +p262567 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a00071af.jpg' +p262568 +sg225240 +g27 +sa(dp262569 +g225230 +S'Cover for "Au pied du Sina\xc3\xaf"' +p262570 +sg225232 +S'Henri de Toulouse-Lautrec' +p262571 +sg225234 +S'color lithograph on japan paper' +p262572 +sg225236 +S'1898' +p262573 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a038.jpg' +p262574 +sg225240 +g27 +sa(dp262575 +g225232 +S'Artist Information (' +p262576 +sg225240 +g27 +sg225234 +S'German, 1895 - 1951' +p262577 +sg225230 +S'Deutsche Graphiker der Gegenwart' +p262578 +sg225236 +S'(author)' +p262579 +sa(dp262580 +g225232 +S'Max Beckmann' +p262581 +sg225240 +g27 +sg225234 +S'drypoint' +p262582 +sg225230 +S'Self-Portrait (Selbstbildnis)' +p262583 +sg225236 +S'1920' +p262584 +sa(dp262585 +g225232 +S'Lovis Corinth' +p262586 +sg225240 +g27 +sg225234 +S'lithograph' +p262587 +sg225230 +S'Selbstbildnis (Self-Portrait)' +p262588 +sg225236 +S'published 1920' +p262589 +sa(dp262590 +g225232 +S'Max Liebermann' +p262591 +sg225240 +g27 +sg225234 +S'lithograph' +p262592 +sg225230 +S'Selbstbildnis (Self-Portrait)' +p262593 +sg225236 +S'published 1920' +p262594 +sa(dp262595 +g225232 +S'K\xc3\xa4the Kollwitz' +p262596 +sg225240 +g27 +sg225234 +S'lithograph' +p262597 +sg225230 +S'Selbstbildnis (Self-Portrait)' +p262598 +sg225236 +S'1920' +p262599 +sa(dp262600 +g225232 +S'August Gaul' +p262601 +sg225240 +g27 +sg225234 +S'lithograph' +p262602 +sg225230 +S'Zeigen' +p262603 +sg225236 +S'published 1920' +p262604 +sa(dp262605 +g225232 +S'Rudolf Grossman' +p262606 +sg225240 +g27 +sg225234 +S'lithograph' +p262607 +sg225230 +S'Die Boxer (Boxers)' +p262608 +sg225236 +S'published 1920' +p262609 +sa(dp262610 +g225232 +S'Alfred Kubin' +p262611 +sg225240 +g27 +sg225234 +S'lithograph' +p262612 +sg225230 +S'Auf der Flucht (In Flight)' +p262613 +sg225236 +S'published 1920' +p262614 +sa(dp262615 +g225232 +S'Paul Klee' +p262616 +sg225240 +g27 +sg225234 +S'lithograph' +p262617 +sg225230 +S'Riesenblattlaus' +p262618 +sg225236 +S'published 1920' +p262619 +sa(dp262620 +g225232 +S'George Grosz' +p262621 +sg225240 +g27 +sg225234 +S'lithograph' +p262622 +sg225230 +S'He Made Fun of Hindenburg (Er hat Hindenburg verspottet)' +p262623 +sg225236 +S'1920' +p262624 +sa(dp262625 +g225232 +S'Ernst Barlach' +p262626 +sg225240 +g27 +sg225234 +S'woodcut' +p262627 +sg225230 +S'Gruppe im Sturm (Couple in a Storm)' +p262628 +sg225236 +S'published 1920' +p262629 +sa(dp262630 +g225232 +S'Richard Seewald' +p262631 +sg225240 +g27 +sg225234 +S'woodcut' +p262632 +sg225230 +S'Die Ziege (The Goat)' +p262633 +sg225236 +S'published 1920' +p262634 +sa(dp262635 +g225232 +S'Heinrich Campendonk' +p262636 +sg225240 +g27 +sg225234 +S'woodcut' +p262637 +sg225230 +S'Tiere' +p262638 +sg225236 +S'1918' +p262639 +sa(dp262640 +g225232 +S'Erich Heckel' +p262641 +sg225240 +g27 +sg225234 +S'woodcut' +p262642 +sg225230 +S'Jungling (Krankes Madchen)' +p262643 +sg225236 +S'1913' +p262644 +sa(dp262645 +g225232 +S'Otto M\xc3\xbcller' +p262646 +sg225240 +g27 +sg225234 +S'lithograph' +p262647 +sg225230 +S'Badende (Bathers)' +p262648 +sg225236 +S'published 1920' +p262649 +sa(dp262650 +g225232 +S'Max Pechstein' +p262651 +sg225240 +g27 +sg225234 +S'woodcut' +p262652 +sg225230 +S'Woman Walking with a Man' +p262653 +sg225236 +S'published 1920' +p262654 +sa(dp262655 +g225232 +S'Karl Schmidt-Rottluff' +p262656 +sg225240 +g27 +sg225234 +S'woodcut' +p262657 +sg225230 +S"Frauenkopf (Woman's Head)" +p262658 +sg225236 +S'1916' +p262659 +sa(dp262660 +g225232 +S'Lyonel Feininger' +p262661 +sg225240 +g27 +sg225234 +S'woodcut' +p262662 +sg225230 +S'Hansaflotte (Fleet of 17th Century Galleons)' +p262663 +sg225236 +S'1918' +p262664 +sa(dp262665 +g225232 +S'Conrad Felixm\xc3\xbcller' +p262666 +sg225240 +g27 +sg225234 +S'woodcut' +p262667 +sg225230 +S'Selbstbildnis (Self-Portrait)' +p262668 +sg225236 +S'1919' +p262669 +sa(dp262670 +g225232 +S'Max Unold' +p262671 +sg225240 +g27 +sg225234 +S'lithograph' +p262672 +sg225230 +S'Die Strasse (The Street)' +p262673 +sg225236 +S'published 1920' +p262674 +sa(dp262675 +g225232 +S'Karl Caspar' +p262676 +sg225240 +g27 +sg225234 +S'lithograph' +p262677 +sg225230 +S'Heimsuchung (Affliction)' +p262678 +sg225236 +S'published 1920' +p262679 +sa(dp262680 +g225232 +S'Ren\xc3\xa9 Beeh' +p262681 +sg225240 +g27 +sg225234 +S'lithograph' +p262682 +sg225230 +S'Lowe (Lion)' +p262683 +sg225236 +S'published 1920' +p262684 +sa(dp262685 +g225232 +S'Adolf Ferdinand Schinnerer' +p262686 +sg225240 +g27 +sg225234 +S'lithograph' +p262687 +sg225230 +S'Das Gastmahl (Dinner Party)' +p262688 +sg225236 +S'published 1920' +p262689 +sa(dp262690 +g225232 +S'Ludwig Meidner' +p262691 +sg225240 +g27 +sg225234 +S'lithograph' +p262692 +sg225230 +S'Bildnis (Portrait)' +p262693 +sg225236 +S'published 1920' +p262694 +sa(dp262695 +g225232 +S'Max Beckmann' +p262696 +sg225240 +g27 +sg225234 +S'lithograph' +p262697 +sg225230 +S'Pierrot and Mask (Pierrot und Maske)' +p262698 +sg225236 +S'published 1920' +p262699 +sa(dp262700 +g225230 +S'The Triumphal Chariot of Maximilian I (The Great Triumphal Car) [plate 1 of 8]' +p262701 +sg225232 +S'Albrecht D\xc3\xbcrer' +p262702 +sg225234 +S'woodcut' +p262703 +sg225236 +S'1522' +p262704 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b063.jpg' +p262705 +sg225240 +g27 +sa(dp262706 +g225230 +S'The Triumphal Chariot of Maximilian I (The Great Triumphal Car) [plate 2 of 8]' +p262707 +sg225232 +S'Albrecht D\xc3\xbcrer' +p262708 +sg225234 +S'woodcut' +p262709 +sg225236 +S'1522' +p262710 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ad/a000adb1.jpg' +p262711 +sg225240 +g27 +sa(dp262712 +g225230 +S'The Triumphal Chariot of Maximilian I (The Great Triumphal Car) [plate 3 of 8]' +p262713 +sg225232 +S'Albrecht D\xc3\xbcrer' +p262714 +sg225234 +S'woodcut' +p262715 +sg225236 +S'1522' +p262716 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b064.jpg' +p262717 +sg225240 +g27 +sa(dp262718 +g225230 +S'The Triumphal Chariot of Maximilian I (The Great Triumphal Car) [plate 4 of 8]' +p262719 +sg225232 +S'Albrecht D\xc3\xbcrer' +p262720 +sg225234 +S'woodcut' +p262721 +sg225236 +S'1522' +p262722 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ae/a000aeb1.jpg' +p262723 +sg225240 +g27 +sa(dp262724 +g225230 +S'The Triumphal Chariot of Maximilian I (The Great Triumphal Car) [plate 5 of 8]' +p262725 +sg225232 +S'Albrecht D\xc3\xbcrer' +p262726 +sg225234 +S'woodcut' +p262727 +sg225236 +S'1522' +p262728 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ae/a000ae3c.jpg' +p262729 +sg225240 +g27 +sa(dp262730 +g225230 +S'The Triumphal Chariot of Maximilian I (The Great Triumphal Car) [plate 6 of 8]' +p262731 +sg225232 +S'Albrecht D\xc3\xbcrer' +p262732 +sg225234 +S'woodcut' +p262733 +sg225236 +S'1522' +p262734 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ad/a000adb5.jpg' +p262735 +sg225240 +g27 +sa(dp262736 +g225230 +S'The Triumphal Chariot of Maximilian I (The Great Triumphal Car) [plate 7 of 8]' +p262737 +sg225232 +S'Albrecht D\xc3\xbcrer' +p262738 +sg225234 +S'woodcut' +p262739 +sg225236 +S'1522' +p262740 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b065.jpg' +p262741 +sg225240 +g27 +sa(dp262742 +g225230 +S'The Triumphal Chariot of Maximilian I (The Great Triumphal Car) [plate 8 of 8]' +p262743 +sg225232 +S'Albrecht D\xc3\xbcrer' +p262744 +sg225234 +S'woodcut' +p262745 +sg225236 +S'1522' +p262746 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000af/a000af1c.jpg' +p262747 +sg225240 +g27 +sa(dp262748 +g225230 +S'Lumber Schooners at Evening on Penobscot Bay' +p262749 +sg225232 +S'Fitz Henry Lane' +p262750 +sg225234 +S'oil on canvas' +p262751 +sg225236 +S'1863' +p262752 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000190.jpg' +p262753 +sg225240 +S"Despite its meticulous draftsmanship and precise detail, Lane's work is far more than a\nsimple inventory of harbor activity. The diminutive figures and carefully rendered vessels remain\nsecondary to the vast expanse of sky, where shimmering light creates a tranquil, idyllic mood.\nLane's rarefied landscapes epitomize man's harmonious union with the natural world.\n Some scholars have used the term "luminism" to describe the artist's subtle use\nof light and atmospheric effects to convey nature's intangible spirit. Ralph Waldo Emerson, the\nforemost exponent of American Transcendentalism, believed that poets and painters should serve\nas conduits through which the experience of nature might be transmitted directly to their\naudience. With a similarly self-effacing artistic temperament, Lane minimized his autographic\npresence, using translucent glazes rather than heavily impastoed surfaces to underscore the\nscene's pervasive stillness. His elegiac paintings differ profoundly from the more explosive\nexuberance expressed by Cole and Church, though he shared these artists' reverence for nature\nand their belief in its inherent divinity.\n " +p262754 +sa(dp262755 +g225230 +S'The Mocking of Christ' +p262756 +sg225232 +S'Jacopo Bassano' +p262757 +sg225234 +S'colored chalks on green-gray paper' +p262758 +sg225236 +S'1568' +p262759 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022a4.jpg' +p262760 +sg225240 +g27 +sa(dp262761 +g225230 +S'Figure Studies [recto]' +p262762 +sg225232 +S'Perino del Vaga' +p262763 +sg225234 +S'pen and brown ink on laid paper' +p262764 +sg225236 +S'unknown date\n' +p262765 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00026/a00026ca.jpg' +p262766 +sg225240 +g27 +sa(dp262767 +g225230 +S'Figure Studies [verso]' +p262768 +sg225232 +S'Perino del Vaga' +p262769 +sg225234 +S'pen and brown ink on laid paper (red chalk line across center)' +p262770 +sg225236 +S'unknown date\n' +p262771 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a000757d.jpg' +p262772 +sg225240 +g27 +sa(dp262773 +g225230 +S'A View of the Pont Neuf, the Mint, etc.: pl.8' +p262774 +sg225232 +S'Thomas Girtin' +p262775 +sg225234 +S'retouched etching' +p262776 +sg225236 +S'published 1802' +p262777 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a00078a2.jpg' +p262778 +sg225240 +g27 +sa(dp262779 +g225232 +S'Erich Heckel' +p262780 +sg225240 +g27 +sg225234 +S'drypoint' +p262781 +sg225230 +S'Head of a Young Girl (Madchenkopf)' +p262782 +sg225236 +S'1919' +p262783 +sa(dp262784 +g225232 +S'Emil Nolde' +p262785 +sg225240 +g27 +sg225234 +S'etching and soft-ground etching in blue-gray' +p262786 +sg225230 +S'Club Table (Tischgesellschaft)' +p262787 +sg225236 +S'published 1907' +p262788 +sa(dp262789 +g225230 +S'Hunters Resting by a River' +p262790 +sg225232 +S'Adriaen Frans Boudewyns' +p262791 +sg225234 +S'sanguine chalk on laid paper' +p262792 +sg225236 +S'unknown date\n' +p262793 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022bb.jpg' +p262794 +sg225240 +g27 +sa(dp262795 +g225230 +S'Vue du chateau de Madrid' +p262796 +sg225232 +S'Jean-Jacques de Boissieu' +p262797 +sg225234 +S'etching' +p262798 +sg225236 +S'unknown date\n' +p262799 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cd9.jpg' +p262800 +sg225240 +g27 +sa(dp262801 +g225230 +S'Cart Filled with Wounded Soldiers (Chariot charge de soldats blesses)' +p262802 +sg225232 +S'Th\xc3\xa9odore Gericault' +p262803 +sg225234 +S'lithograph' +p262804 +sg225236 +S'1818' +p262805 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009aaf.jpg' +p262806 +sg225240 +g27 +sa(dp262807 +g225230 +S'Joseph Identifying Himself to His Brothers' +p262808 +sg225232 +S'Pier Francesco Mola' +p262809 +sg225234 +S'etching' +p262810 +sg225236 +S'unknown date\n' +p262811 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca20.jpg' +p262812 +sg225240 +g27 +sa(dp262813 +g225232 +S'Giovanni Battista Piranesi' +p262814 +sg225240 +g27 +sg225234 +S'etching with figure at lower right reworked in red-brown chalk' +p262815 +sg225230 +S"Veduta dell' Arco di Tito" +p262816 +sg225236 +S'1770/1771' +p262817 +sa(dp262818 +g225230 +S'Grotesque Strip with Dragon, Shields and Wild Men' +p262819 +sg225232 +S'German 15th Century' +p262820 +sg225234 +S'Schreiber, undescribed' +p262821 +sg225236 +S'\nwoodcut, hand-colored' +p262822 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5a4.jpg' +p262823 +sg225240 +g27 +sa(dp262824 +g225230 +S'Broadside with Two Scenes from the Life of Christ, and Grotesque Borders' +p262825 +sg225232 +S'German 15th Century' +p262826 +sg225234 +S'Schreiber, undescribed' +p262827 +sg225236 +S'\nhand-colored woodcut' +p262828 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3e5.jpg' +p262829 +sg225240 +g27 +sa(dp262830 +g225230 +S'Witch' +p262831 +sg225232 +S'Christian Rohlfs' +p262832 +sg225234 +S'woodcut on shopping bag' +p262833 +sg225236 +S'unknown date\n' +p262834 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b758.jpg' +p262835 +sg225240 +g27 +sa(dp262836 +g225232 +S'Malcolm Rice' +p262837 +sg225240 +g27 +sg225234 +S'graphite' +p262838 +sg225230 +S'Craig Quarry' +p262839 +sg225236 +S'1973' +p262840 +sa(dp262841 +g225232 +S'Malcolm Rice' +p262842 +sg225240 +g27 +sg225234 +S'graphite' +p262843 +sg225230 +S'Craig Quarry with Surrounding Vignettes' +p262844 +sg225236 +S'1973' +p262845 +sa(dp262846 +g225232 +S'Malcolm Rice' +p262847 +sg225240 +g27 +sg225234 +S'graphite and colored chalk' +p262848 +sg225230 +S'Ebenezer Quarry - The Snake and the Ram' +p262849 +sg225236 +S'1944' +p262850 +sa(dp262851 +g225232 +S'Malcolm Rice' +p262852 +sg225240 +g27 +sg225234 +S'graphite' +p262853 +sg225230 +S'Grey Knox Quarry' +p262854 +sg225236 +S'1972' +p262855 +sa(dp262856 +g225232 +S'Malcolm Rice' +p262857 +sg225240 +g27 +sg225234 +S'graphite' +p262858 +sg225230 +S'Ross Quarry' +p262859 +sg225236 +S'1973' +p262860 +sa(dp262861 +g225232 +S'Artist Information (' +p262862 +sg225240 +g27 +sg225234 +S'(artist after)' +p262863 +sg225230 +S'Vue de la ville et de la rade de Toulon (View of the Town and the Road of Toulon)' +p262864 +sg225236 +S'\n' +p262865 +sa(dp262866 +g225230 +S'Coast Scene with an Artist (Le dessinateur)' +p262867 +sg225232 +S'Claude Lorrain' +p262868 +sg225234 +S'etching' +p262869 +sg225236 +S'c. 1638/1641' +p262870 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f47.jpg' +p262871 +sg225240 +g27 +sa(dp262872 +g225230 +S'A Gentleman with a Walking Stick' +p262873 +sg225232 +S'Giovanni Battista Piranesi' +p262874 +sg225234 +S'black chalk on laid paper' +p262875 +sg225236 +S'early 1750s' +p262876 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cf6.jpg' +p262877 +sg225240 +g27 +sa(dp262878 +g225230 +S'Drapery Studies [recto]' +p262879 +sg225232 +S'Baldassare Franceschini' +p262880 +sg225234 +S'black chalk heightened with white on laid paper' +p262881 +sg225236 +S'late 1650s' +p262882 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074ae.jpg' +p262883 +sg225240 +g27 +sa(dp262884 +g225230 +S'Baby [verso]' +p262885 +sg225232 +S'Baldassare Franceschini' +p262886 +sg225234 +S'black chalk heightened with white on laid paper' +p262887 +sg225236 +S'late 1650s' +p262888 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074af.jpg' +p262889 +sg225240 +g27 +sa(dp262890 +g225230 +S'Ascension of the Magdalene' +p262891 +sg225232 +S'Baldassare Franceschini' +p262892 +sg225234 +S'black chalk heightened with white on laid paper' +p262893 +sg225236 +S'late 1650s' +p262894 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074ad.jpg' +p262895 +sg225240 +g27 +sa(dp262896 +g225230 +S'Archer Drawing His Bow' +p262897 +sg225232 +S'Hans Leonard Sch\xc3\xa4ufelein' +p262898 +sg225234 +S'pen and black ink on laid paper' +p262899 +sg225236 +S'c. 1510' +p262900 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00028/a0002850.jpg' +p262901 +sg225240 +g27 +sa(dp262902 +g225230 +S'Frederik Hendrik, Prince of Nassau-Orange' +p262903 +sg225232 +S'Willem Jacobsz Delff' +p262904 +sg225234 +S'engraving' +p262905 +sg225236 +S'1618' +p262906 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4f1.jpg' +p262907 +sg225240 +g27 +sa(dp262908 +g225230 +S'Landscape with Three Nude Men and a Dog' +p262909 +sg225232 +S'Artist Information (' +p262910 +sg225234 +S'(artist after)' +p262911 +sg225236 +S'\n' +p262912 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d042.jpg' +p262913 +sg225240 +g27 +sa(dp262914 +g225230 +S'Charles VII the Victorious on Horseback' +p262915 +sg225232 +S'Antoine-Louis Barye' +p262916 +sg225234 +S'bronze' +p262917 +sg225236 +S'model c. 1844, cast 1860/1909' +p262918 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00054/a0005407.jpg' +p262919 +sg225240 +g27 +sa(dp262920 +g225230 +S'Gaston de Foix on Horseback' +p262921 +sg225232 +S'Antoine-Louis Barye' +p262922 +sg225234 +S'bronze' +p262923 +sg225236 +S'model 1839/1840, cast after 1855' +p262924 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00054/a0005408.jpg' +p262925 +sg225240 +g27 +sa(dp262926 +g225230 +S'General Bonaparte on Horseback' +p262927 +sg225232 +S'Antoine-Louis Barye' +p262928 +sg225234 +S'bronze' +p262929 +sg225236 +S'model c. 1838, cast after 1847' +p262930 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00054/a0005409.jpg' +p262931 +sg225240 +g27 +sa(dp262932 +g225230 +S'Horse Attacked by a Tiger' +p262933 +sg225232 +S'Antoine-Louis Barye' +p262934 +sg225234 +S'bronze' +p262935 +sg225236 +S'model 1837 or before, cast possibly after 1875' +p262936 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00029/a00029b8.jpg' +p262937 +sg225240 +g27 +sa(dp262938 +g225230 +S'Two Bears Wrestling' +p262939 +sg225232 +S'Antoine-Louis Barye' +p262940 +sg225234 +S'bronze' +p262941 +sg225236 +S'model 1833, cast after 1847-1848' +p262942 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00024/a000243b.jpg' +p262943 +sg225240 +g27 +sa(dp262944 +g225230 +S'French Cock Crowing' +p262945 +sg225232 +S'Auguste-Nicolas Cain' +p262946 +sg225234 +S'bronze' +p262947 +sg225236 +S'model c. 1860/1894, cast possibly 1890s/c. 1914' +p262948 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00054/a000540d.jpg' +p262949 +sg225240 +g27 +sa(dp262950 +g225230 +S'Flayed Horse I' +p262951 +sg225232 +S'Th\xc3\xa9odore Gericault' +p262952 +sg225234 +S'pigmented wax' +p262953 +sg225236 +S'c. 1820/1824' +p262954 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00029/a00029c0.jpg' +p262955 +sg225240 +g27 +sa(dp262956 +g225230 +S'Flayed Horse II' +p262957 +sg225232 +S'Th\xc3\xa9odore Gericault' +p262958 +sg225234 +S'bronze' +p262959 +sg225236 +S'model c. 1820/1824, cast c. 1832' +p262960 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00029/a000295b.jpg' +p262961 +sg225240 +g27 +sa(dp262962 +g225230 +S'Flayed Horse III' +p262963 +sg225232 +S'Th\xc3\xa9odore Gericault' +p262964 +sg225234 +S'bronze' +p262965 +sg225236 +S'model c. 1820/1824, cast 1959-1960' +p262966 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00054/a0005424.jpg' +p262967 +sg225240 +g27 +sa(dp262968 +g225230 +S'Horseman in a Storm' +p262969 +sg225232 +S'Jean-Louis-Ernest Meissonier' +p262970 +sg225234 +S'bronze' +p262971 +sg225236 +S'model c. 1878, cast after 1894' +p262972 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00029/a0002965.jpg' +p262973 +sg225240 +g27 +sa(dp262974 +g225232 +S'Jean-Louis Forain' +p262975 +sg225240 +g27 +sg225234 +S'oil on canvas' +p262976 +sg225230 +S'Backstage at the Opera' +p262977 +sg225236 +S'c. 1910' +p262978 +sa(dp262979 +g225230 +S'The Petition' +p262980 +sg225232 +S'Jean-Louis Forain' +p262981 +sg225234 +S'oil on canvas' +p262982 +sg225236 +S'1906' +p262983 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ee1.jpg' +p262984 +sg225240 +g27 +sa(dp262985 +g225230 +S'The Requisition' +p262986 +sg225232 +S'Jean-Louis Forain' +p262987 +sg225234 +S'oil on canvas' +p262988 +sg225236 +S'c. 1919' +p262989 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a0000647.jpg' +p262990 +sg225240 +g27 +sa(dp262991 +g225230 +S'Scene with a Tower to the Left' +p262992 +sg225232 +S'Hendrick Avercamp' +p262993 +sg225234 +S'pen and brown ink with watercolor and black chalk on laid paper' +p262994 +sg225236 +S'c. 1620' +p262995 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a000229f.jpg' +p262996 +sg225240 +g27 +sa(dp262997 +g225232 +S'Paolo Boni' +p262998 +sg225240 +g27 +sg225234 +S'collagraph' +p262999 +sg225230 +S'Omaggio a Braccelli' +p263000 +sg225236 +S'1968' +p263001 +sa(dp263002 +g225232 +S'Gerald Leslie Brockhurst' +p263003 +sg225240 +g27 +sg225234 +S'etching' +p263004 +sg225230 +S'Pepita' +p263005 +sg225236 +S'1922' +p263006 +sa(dp263007 +g225230 +S'Drawing for a Fan' +p263008 +sg225232 +S'F\xc3\xa9lix-Hilaire Buhot' +p263009 +sg225234 +S'watercolor over graphite on laid paper' +p263010 +sg225236 +S'unknown date\n' +p263011 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fa9.jpg' +p263012 +sg225240 +g27 +sa(dp263013 +g225230 +S'The Chamber Idyll' +p263014 +sg225232 +S'Edward Calvert' +p263015 +sg225234 +S'wood engraving' +p263016 +sg225236 +S'1831' +p263017 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cad.jpg' +p263018 +sg225240 +g27 +sa(dp263019 +g225230 +S'Sara Wearing a Bonnet and Coat' +p263020 +sg225232 +S'Mary Cassatt' +p263021 +sg225234 +S'pastel over pastel counterproof on chine colle, mounted on wove paper' +p263022 +sg225236 +S'c. 1904/1906' +p263023 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008bc.jpg' +p263024 +sg225240 +g27 +sa(dp263025 +g225232 +S'James Ensor' +p263026 +sg225240 +g27 +sg225234 +S'etching and drypoint on Japan vellum' +p263027 +sg225230 +S'Christ in Hell (Le Christ aux enfers)' +p263028 +sg225236 +S'1895' +p263029 +sa(dp263030 +g225232 +S'Arthur L. Flory' +p263031 +sg225240 +g27 +sg225234 +S'lithograph' +p263032 +sg225230 +S'The Collector' +p263033 +sg225236 +S'1967' +p263034 +sa(dp263035 +g225230 +S'Standing Woman with a Fan' +p263036 +sg225232 +S'Jean-Louis Forain' +p263037 +sg225234 +S'watercolor with opaque white' +p263038 +sg225236 +S'probably 1880/1890' +p263039 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00033/a00033cc.jpg' +p263040 +sg225240 +g27 +sa(dp263041 +g225232 +S'Wenceslaus Hollar' +p263042 +sg225240 +g27 +sg225234 +S'etching' +p263043 +sg225230 +S'Parallel Views of London Before and After the Fire' +p263044 +sg225236 +S'1666' +p263045 +sa(dp263046 +g225232 +S'James McBey' +p263047 +sg225240 +g27 +sg225234 +S'black chalk' +p263048 +sg225230 +S'Lessing J. Rosenwald' +p263049 +sg225236 +S'1930' +p263050 +sa(dp263051 +g225232 +S'James McBey' +p263052 +sg225240 +g27 +sg225234 +S'etching [cancellation proof - dark impression]' +p263053 +sg225230 +S'Lessing J. Rosenwald' +p263054 +sg225236 +S'1930' +p263055 +sa(dp263056 +g225232 +S'Giorgio Morandi' +p263057 +sg225240 +g27 +sg225234 +S'etching' +p263058 +sg225230 +S'Still Life with Four Objects and Three Bottles' +p263059 +sg225236 +S'1956' +p263060 +sa(dp263061 +g225232 +S'Robert Rauschenberg' +p263062 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red and black on Rives BFK paper' +p263063 +sg225230 +S'Front Roll' +p263064 +sg225236 +S'1964' +p263065 +sa(dp263066 +g225232 +S'American 20th Century' +p263067 +sg225240 +g27 +sg225234 +S'Rosenwald Collection' +p263068 +sg225230 +S'Middle Eastern Market Scene' +p263069 +sg225236 +S'\netching' +p263070 +sa(dp263071 +g225230 +S'God the Father, Three Figures and Sacrificed Lamb' +p263072 +sg225232 +S'Austrian 15th Century' +p263073 +sg225234 +S'image: 12.7 x 8.4 cm (5 x 3 5/16 in.)' +p263074 +sg225236 +S'\npen and ink with watercolor; fragment from Bible MS (German text on image verso); image cut in silhouette and mounted on backing sheet' +p263075 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00069/a000697c.jpg' +p263076 +sg225240 +g27 +sa(dp263077 +g225230 +S'Eating Sacrificial Lamb' +p263078 +sg225232 +S'Austrian 15th Century' +p263079 +sg225234 +S'image: 10.5 x 8.5 cm (4 1/8 x 3 3/8 in.)' +p263080 +sg225236 +S'\npen and ink with watercolor; fragment from Bible MS (German text on image verso); image cut in silhouette and mounted on backing sheet' +p263081 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00069/a000697d.jpg' +p263082 +sg225240 +g27 +sa(dp263083 +g225230 +S'A Stoning' +p263084 +sg225232 +S'Austrian 15th Century' +p263085 +sg225234 +S'image: 7.5 x 9.2 cm (2 15/16 x 3 5/8 in.)' +p263086 +sg225236 +S'\npen and ink with watercolor; fragment from Bible MS (German text on image verso); image cut in silhouette and mounted on backing sheet' +p263087 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00069/a000697e.jpg' +p263088 +sg225240 +g27 +sa(dp263089 +g225230 +S'Seated Old Man and Standing Soldier' +p263090 +sg225232 +S'Austrian 15th Century' +p263091 +sg225234 +S'image: 6.8 x 8.5 cm (2 11/16 x 3 3/8 in.)' +p263092 +sg225236 +S'\npen and ink with watercolor; fragment from Bible MS (German text on image verso); image cut in silhouette and mounted on backing sheet' +p263093 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00069/a000697f.jpg' +p263094 +sg225240 +g27 +sa(dp263095 +g225230 +S'Woman Suspending Man from Tower' +p263096 +sg225232 +S'Austrian 15th Century' +p263097 +sg225234 +S'image: 10.8 x 8.4 cm (4 1/4 x 3 5/16 in.)' +p263098 +sg225236 +S'\npen and ink with watercolor; fragment from Bible MS (German text on image verso); image cut in silhouette and mounted on backing sheet' +p263099 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00069/a0006980.jpg' +p263100 +sg225240 +g27 +sa(dp263101 +g225230 +S'Frontispiece' +p263102 +sg225232 +S'British 17th Century' +p263103 +sg225234 +S'Rosenwald Collection' +p263104 +sg225236 +S'\nengraving' +p263105 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076aa.jpg' +p263106 +sg225240 +g27 +sa(dp263107 +g225230 +S'Henry I, King of England' +p263108 +sg225232 +S'British 17th Century' +p263109 +sg225234 +S'Rosenwald Collection' +p263110 +sg225236 +S'\nengraving' +p263111 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076a8.jpg' +p263112 +sg225240 +g27 +sa(dp263113 +g225230 +S'John, King of England' +p263114 +sg225232 +S'British 17th Century' +p263115 +sg225234 +S'Rosenwald Collection' +p263116 +sg225236 +S'\nengraving' +p263117 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076a9.jpg' +p263118 +sg225240 +g27 +sa(dp263119 +g225230 +S'Coats of Arms with Corner Portraits of Henry VII, Henry VIII, Edward VI, and Mary' +p263120 +sg225232 +S'British 16th Century' +p263121 +sg225234 +S'Rosenwald Collection' +p263122 +sg225236 +S'\nengraving' +p263123 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a0007858.jpg' +p263124 +sg225240 +g27 +sa(dp263125 +g225230 +S'Family Tree with Portraits of Henry VII, Henry VIII, Elizabeth, James, and Charles' +p263126 +sg225232 +S'British 17th Century' +p263127 +sg225234 +S'Rosenwald Collection' +p263128 +sg225236 +S'\nengraving' +p263129 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a000785c.jpg' +p263130 +sg225240 +g27 +sa(dp263131 +g225230 +S'Reges Anglia' +p263132 +sg225232 +S'British 17th Century' +p263133 +sg225234 +S'Rosenwald Collection' +p263134 +sg225236 +S'\netching and engraving' +p263135 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a0007860.jpg' +p263136 +sg225240 +g27 +sa(dp263137 +g225230 +S'Lime Kilns near Cardigan' +p263138 +sg225232 +S'British 18th Century' +p263139 +sg225234 +S'Rosenwald Collection' +p263140 +sg225236 +S'\naquatint' +p263141 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a000763f.jpg' +p263142 +sg225240 +g27 +sa(dp263143 +g225230 +S'Two Dead Chickens' +p263144 +sg225232 +S'British 18th Century' +p263145 +sg225234 +S'overall: 22.2 x 20.2 cm (8 3/4 x 7 15/16 in.)' +p263146 +sg225236 +S'\npen and brown ink over graphite' +p263147 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a00071c9.jpg' +p263148 +sg225240 +g27 +sa(dp263149 +g225230 +S'Head of an Old Man' +p263150 +sg225232 +S'British 19th Century' +p263151 +sg225234 +S'overall: 13 x 12.7 cm (5 1/8 x 5 in.)' +p263152 +sg225236 +S'\npen and brown ink on wove paper' +p263153 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006be3.jpg' +p263154 +sg225240 +g27 +sa(dp263155 +g225230 +S'Sleeping Infant' +p263156 +sg225232 +S'British 19th Century' +p263157 +sg225234 +S'mezzotint' +p263158 +sg225236 +S'unknown date\n' +p263159 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c5f.jpg' +p263160 +sg225240 +g27 +sa(dp263161 +g225230 +S'Nine Heads' +p263162 +sg225232 +S'Artist Information (' +p263163 +sg225234 +S'(artist after)' +p263164 +sg225236 +S'\n' +p263165 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d53e.jpg' +p263166 +sg225240 +g27 +sa(dp263167 +g225232 +S'Ivan Stepanovich Gomenkov' +p263168 +sg225240 +g27 +sg225234 +S'woodcut' +p263169 +sg225230 +S'On the Terrace' +p263170 +sg225236 +S'1958' +p263171 +sa(dp263172 +g225232 +S'Ivan Stepanovich Gomenkov' +p263173 +sg225240 +g27 +sg225234 +S'woodcut' +p263174 +sg225230 +S'At the Peak Hour' +p263175 +sg225236 +S'1955/1957' +p263176 +sa(dp263177 +g225232 +S'Ivan Stepanovich Gomenkov' +p263178 +sg225240 +g27 +sg225234 +S'woodcut' +p263179 +sg225230 +S'Exit from the Suburban Train' +p263180 +sg225236 +S'1955/1957' +p263181 +sa(dp263182 +g225232 +S'Unknown 20th Century' +p263183 +sg225240 +g27 +sg225234 +S'Rosenwald Collection' +p263184 +sg225230 +S'Dancing Woman' +p263185 +sg225236 +S'\netching' +p263186 +sa(dp263187 +g225232 +S'Unknown 20th Century' +p263188 +sg225240 +g27 +sg225234 +S'Rosenwald Collection' +p263189 +sg225230 +S'Survivors in a Lifeboat' +p263190 +sg225236 +S'\nwoodcut' +p263191 +sa(dp263192 +g225232 +S'French 16th Century' +p263193 +sg225240 +g27 +sg225234 +S'woodcut block' +p263194 +sg225230 +S'The Flight into Egypt' +p263195 +sg225236 +S'unknown date\n' +p263196 +sa(dp263197 +g225232 +S'French 16th Century' +p263198 +sg225240 +g27 +sg225234 +S'woodcut block' +p263199 +sg225230 +S'Martyrdom of a Saint' +p263200 +sg225236 +S'unknown date\n' +p263201 +sa(dp263202 +g225232 +S'French 16th Century' +p263203 +sg225240 +g27 +sg225234 +S'woodcut block' +p263204 +sg225230 +S'The Flagellation' +p263205 +sg225236 +S'unknown date\n' +p263206 +sa(dp263207 +g225230 +S'The Flagellation' +p263208 +sg225232 +S'French 16th Century' +p263209 +sg225234 +S'woodcut in green [restrike 1968]' +p263210 +sg225236 +S'unknown date\n' +p263211 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000830a.jpg' +p263212 +sg225240 +g27 +sa(dp263213 +g225230 +S'The Flagellation' +p263214 +sg225232 +S'French 16th Century' +p263215 +sg225234 +S'woodcut [restrike 1968]' +p263216 +sg225236 +S'unknown date\n' +p263217 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000830b.jpg' +p263218 +sg225240 +g27 +sa(dp263219 +g225230 +S'The Flight to Egypt' +p263220 +sg225232 +S'French 16th Century' +p263221 +sg225234 +S'woodcut [restrike 1968]' +p263222 +sg225236 +S'unknown date\n' +p263223 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000830f.jpg' +p263224 +sg225240 +g27 +sa(dp263225 +g225230 +S'The Martyrdom of a Saint' +p263226 +sg225232 +S'French 16th Century' +p263227 +sg225234 +S'woodcut [restrike 1968]' +p263228 +sg225236 +S'unknown date\n' +p263229 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000830e.jpg' +p263230 +sg225240 +g27 +sa(dp263231 +g225230 +S'The Martyrdom of a Saint' +p263232 +sg225232 +S'French 16th Century' +p263233 +sg225234 +S'woodcut [restrike 1968]' +p263234 +sg225236 +S'unknown date\n' +p263235 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000830d.jpg' +p263236 +sg225240 +g27 +sa(dp263237 +g225230 +S'Presentation in the Temple' +p263238 +sg225232 +S'French 16th Century' +p263239 +sg225234 +S'woodcut [restrike 1968]' +p263240 +sg225236 +S'unknown date\n' +p263241 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000830c.jpg' +p263242 +sg225240 +g27 +sa(dp263243 +g225230 +S'Systeme de Magnee - Veritable position de la main et de la plume' +p263244 +sg225232 +S'French 18th Century' +p263245 +sg225234 +S'Rosenwald Collection' +p263246 +sg225236 +S'\nstipple engraving in black and red' +p263247 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cc1.jpg' +p263248 +sg225240 +g27 +sa(dp263249 +g225230 +S'Barthe' +p263250 +sg225232 +S'French 19th Century' +p263251 +sg225234 +S'lithograph' +p263252 +sg225236 +S'unknown date\n' +p263253 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00097/a000975a.jpg' +p263254 +sg225240 +g27 +sa(dp263255 +g225230 +S'The Greasy Pole' +p263256 +sg225232 +S'French 19th Century' +p263257 +sg225234 +S'Rosenwald Collection' +p263258 +sg225236 +S'\nlithograph (colored with stencils?)' +p263259 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00090/a0009012.jpg' +p263260 +sg225240 +g27 +sa(dp263261 +g225230 +S'Lithographic Workshop' +p263262 +sg225232 +S'French 19th Century' +p263263 +sg225234 +S'pen and brown ink and graphite with brown wash heightened with white on laid paper' +p263264 +sg225236 +S'19th century' +p263265 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006db5.jpg' +p263266 +sg225240 +g27 +sa(dp263267 +g225230 +S'Lithographic Workshop' +p263268 +sg225232 +S'French 19th Century' +p263269 +sg225234 +S'pen and brown ink and graphite with brown wash heightened with white on laid paper' +p263270 +sg225236 +S'19th century' +p263271 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006de4.jpg' +p263272 +sg225240 +g27 +sa(dp263273 +g225230 +S'Arrival at an Inn' +p263274 +sg225232 +S'Artist Information (' +p263275 +sg225234 +S'French, 1686 - 1755' +p263276 +sg225236 +S'(artist after)' +p263277 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007239.jpg' +p263278 +sg225240 +g27 +sa(dp263279 +g225230 +S'Visitation' +p263280 +sg225232 +S'German 15th Century' +p263281 +sg225234 +S'Schreiber, undescribed' +p263282 +sg225236 +S'\nhand-colored woodcut' +p263283 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5a7.jpg' +p263284 +sg225240 +g27 +sa(dp263285 +g225232 +S'Helen Siegl' +p263286 +sg225240 +g27 +sg225234 +S'woodcut in blue on wove paper' +p263287 +sg225230 +S'Announcement of New Woodblock Prints' +p263288 +sg225236 +S'1966' +p263289 +sa(dp263290 +g225232 +S'German 19th Century' +p263291 +sg225240 +g27 +sg225234 +S'Rosenwald Collection' +p263292 +sg225230 +S'Endpaper with Feather Design' +p263293 +sg225236 +S'\nwoodcut (?) in black on hand-washed green paper' +p263294 +sa(dp263295 +g225232 +S'German 19th Century' +p263296 +sg225240 +g27 +sg225234 +S'Rosenwald Collection' +p263297 +sg225230 +S'Endpaper' +p263298 +sg225236 +S'\nwoodcut (?) in gold on hand-washed blue-green paper' +p263299 +sa(dp263300 +g225232 +S'German 19th Century' +p263301 +sg225240 +g27 +sg225234 +S'Rosenwald Collection' +p263302 +sg225230 +S'Endpaper' +p263303 +sg225236 +S'\nwoodcut (?) in gold on tan paper' +p263304 +sa(dp263305 +g225232 +S'German 19th Century' +p263306 +sg225240 +g27 +sg225234 +S'Rosenwald Collection' +p263307 +sg225230 +S'Endpaper' +p263308 +sg225236 +S'\nwoodcut (?) in gold on hand-washed blue-green paper' +p263309 +sa(dp263310 +g225232 +S'German 19th Century' +p263311 +sg225240 +g27 +sg225234 +S'Rosenwald Collection' +p263312 +sg225230 +S'Endpaper' +p263313 +sg225236 +S'\nwoodcut (?) in gold on blue-gray paper' +p263314 +sa(dp263315 +g225232 +S'German 19th Century' +p263316 +sg225240 +g27 +sg225234 +S'Rosenwald Collection' +p263317 +sg225230 +S'Endpaper' +p263318 +sg225236 +S'\nwoodcut (?) in gold on hand-washed yellow paper' +p263319 +sa(dp263320 +g225232 +S'German 19th Century' +p263321 +sg225240 +g27 +sg225234 +S'Rosenwald Collection' +p263322 +sg225230 +S'Endpaper' +p263323 +sg225236 +S'\nwoodcut (?) in black on tan paper' +p263324 +sa(dp263325 +g225232 +S'Artist Information (' +p263326 +sg225240 +g27 +sg225234 +S'Italian, 1527 - 1585' +p263327 +sg225230 +S'The Rape of the Sabine Women' +p263328 +sg225236 +S'(artist after)' +p263329 +sa(dp263330 +g225230 +S'Amida Buddha' +p263331 +sg225232 +S'Japanese 13th Century' +p263332 +sg225234 +S'Rosenwald Collection' +p263333 +sg225236 +S'\nwoodcut [fragment]' +p263334 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000dc/a000dc99.jpg' +p263335 +sg225240 +g27 +sa(dp263336 +g225230 +S'Madonna and Child' +p263337 +sg225232 +S'Netherlandish 15th Century' +p263338 +sg225234 +S'engraving' +p263339 +sg225236 +S'probably 15th century' +p263340 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000ccf2.jpg' +p263341 +sg225240 +g27 +sa(dp263342 +g225232 +S'Nino Abranos' +p263343 +sg225240 +g27 +sg225234 +S'woodcut' +p263344 +sg225230 +S'Festa' +p263345 +sg225236 +S'1955' +p263346 +sa(dp263347 +g225232 +S'Nino Abranos' +p263348 +sg225240 +g27 +sg225234 +S'woodcut' +p263349 +sg225230 +S'Festa' +p263350 +sg225236 +S'1955' +p263351 +sa(dp263352 +g225232 +S'Rodolfo Abularach' +p263353 +sg225240 +g27 +sg225234 +S'mezzotint' +p263354 +sg225230 +S'Tetra' +p263355 +sg225236 +S'unknown date\n' +p263356 +sa(dp263357 +g225230 +S'Monument to Nicolai Wanostrocht' +p263358 +sg225232 +S'Artist Information (' +p263359 +sg225234 +S'(artist after)' +p263360 +sg225236 +S'\n' +p263361 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007aa0.jpg' +p263362 +sg225240 +g27 +sa(dp263363 +g225230 +S'Rotterdam' +p263364 +sg225232 +S'George Charles Aid' +p263365 +sg225234 +S'etching in black on laid paper' +p263366 +sg225236 +S'unknown date\n' +p263367 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f2/a000f2e2.jpg' +p263368 +sg225240 +g27 +sa(dp263369 +g225232 +S'Harold Altman' +p263370 +sg225240 +g27 +sg225234 +S'lithograph in brown' +p263371 +sg225230 +S'Conversation' +p263372 +sg225236 +S'unknown date\n' +p263373 +sa(dp263374 +g225230 +S'Mlle Mor\xc3\xa9no de la Com\xc3\xa9die-Fran\xc3\xa7aise' +p263375 +sg225232 +S'Edmond Aman-Jean' +p263376 +sg225234 +S'color lithograph on japan paper' +p263377 +sg225236 +S'1897' +p263378 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a2/a000a267.jpg' +p263379 +sg225240 +g27 +sa(dp263380 +g225232 +S'Julia Andrews' +p263381 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p263382 +sg225230 +S'Mountain Woman' +p263383 +sg225236 +S'unknown date\n' +p263384 +sa(dp263385 +g225230 +S'The Seine, Paris' +p263386 +sg225232 +S'Caroline Helena Armington' +p263387 +sg225234 +S'etching' +p263388 +sg225236 +S'1924' +p263389 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a1/a000a153.jpg' +p263390 +sg225240 +g27 +sa(dp263391 +g225230 +S'Ship under Sail' +p263392 +sg225232 +S'N. Artsay' +p263393 +sg225234 +S'engraving and etching' +p263394 +sg225236 +S'unknown date\n' +p263395 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000dd/a000dd88.jpg' +p263396 +sg225240 +g27 +sa(dp263397 +g225230 +S'Ships Fighting' +p263398 +sg225232 +S'N. Artsay' +p263399 +sg225234 +S'etching' +p263400 +sg225236 +S'unknown date\n' +p263401 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000dd/a000dd7d.jpg' +p263402 +sg225240 +g27 +sa(dp263403 +g225230 +S'Shipwreck' +p263404 +sg225232 +S'N. Artsay' +p263405 +sg225234 +S'etching and engraving' +p263406 +sg225236 +S'unknown date\n' +p263407 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000dd/a000dd84.jpg' +p263408 +sg225240 +g27 +sa(dp263409 +g225230 +S'Two Large Ships under Construction' +p263410 +sg225232 +S'N. Artsay' +p263411 +sg225234 +S'etching and engraving' +p263412 +sg225236 +S'unknown date\n' +p263413 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000dd/a000dd83.jpg' +p263414 +sg225240 +g27 +sa(dp263415 +g225232 +S'Ruth Asawa' +p263416 +sg225240 +g27 +sg225234 +S'color lithograph' +p263417 +sg225230 +S'Chrysanthemums' +p263418 +sg225236 +S'unknown date\n' +p263419 +sa(dp263420 +g225232 +S'Anna Held Audette' +p263421 +sg225240 +g27 +sg225234 +S'embossed intaglio (?)' +p263422 +sg225230 +S'Homage to Kathe Kollwitz' +p263423 +sg225236 +S'unknown date\n' +p263424 +sa(dp263425 +g225232 +S'Anna Held Audette' +p263426 +sg225240 +g27 +sg225234 +S'intaglio mixed process from two shaped plates' +p263427 +sg225230 +S'War Image' +p263428 +sg225236 +S'unknown date\n' +p263429 +sa(dp263430 +g225232 +S'Mario Avati' +p263431 +sg225240 +g27 +sg225234 +S'mezzotint, aquatint and soft-ground etching' +p263432 +sg225230 +S'Ballade et Violin' +p263433 +sg225236 +S'1964' +p263434 +sa(dp263435 +g225232 +S'Mario Avati' +p263436 +sg225240 +g27 +sg225234 +S'mezzotint plate [cancelled]' +p263437 +sg225230 +S'Le petit ecureuil' +p263438 +sg225236 +S'1961' +p263439 +sa(dp263440 +g225232 +S'Mario Avati' +p263441 +sg225240 +g27 +sg225234 +S'mezzotint' +p263442 +sg225230 +S'Le Petit Ecureuil' +p263443 +sg225236 +S'1961' +p263444 +sa(dp263445 +g225232 +S'Mario Avati' +p263446 +sg225240 +g27 +sg225234 +S'mezzotint' +p263447 +sg225230 +S'Bol et Pain' +p263448 +sg225236 +S'1969' +p263449 +sa(dp263450 +g225232 +S'Mario Avati' +p263451 +sg225240 +g27 +sg225234 +S'soft-ground etching' +p263452 +sg225230 +S'Le Nid' +p263453 +sg225236 +S'1967' +p263454 +sa(dp263455 +g225232 +S'Mario Avati' +p263456 +sg225240 +g27 +sg225234 +S'mezzotint' +p263457 +sg225230 +S'Hippies' +p263458 +sg225236 +S'1967' +p263459 +sa(dp263460 +g225232 +S'Mario Avati' +p263461 +sg225240 +g27 +sg225234 +S'mezzotint' +p263462 +sg225230 +S'Europa' +p263463 +sg225236 +S'1968' +p263464 +sa(dp263465 +g225232 +S'Mario Avati' +p263466 +sg225240 +g27 +sg225234 +S'mezzotint ?' +p263467 +sg225230 +S'Guepe' +p263468 +sg225236 +S'1966/1972' +p263469 +sa(dp263470 +g225232 +S'Mario Avati' +p263471 +sg225240 +g27 +sg225234 +S'mezzotint' +p263472 +sg225230 +S'La Petite Colonne' +p263473 +sg225236 +S'1975' +p263474 +sa(dp263475 +g225232 +S'Mario Avati' +p263476 +sg225240 +g27 +sg225234 +S'mezzotint' +p263477 +sg225230 +S'Snail' +p263478 +sg225236 +S'probably 1977' +p263479 +sa(dp263480 +g225232 +S'Mario Avati' +p263481 +sg225240 +g27 +sg225234 +S'mezzotint' +p263482 +sg225230 +S'Fruits' +p263483 +sg225236 +S'1973' +p263484 +sa(dp263485 +g225232 +S'Martin Barooshian' +p263486 +sg225240 +g27 +sg225234 +S'color intaglio and embossing' +p263487 +sg225230 +S'Flying Condor' +p263488 +sg225236 +S'unknown date\n' +p263489 +sa(dp263490 +g225232 +S'Martin Barooshian' +p263491 +sg225240 +g27 +sg225234 +S'color intaglio and embossing' +p263492 +sg225230 +S'Fui Bird (?)' +p263493 +sg225236 +S'unknown date\n' +p263494 +sa(dp263495 +g225232 +S'Martin Barooshian' +p263496 +sg225240 +g27 +sg225234 +S'color intaglio' +p263497 +sg225230 +S'Pegasus' +p263498 +sg225236 +S'unknown date\n' +p263499 +sa(dp263500 +g225232 +S'Martin Barooshian' +p263501 +sg225240 +g27 +sg225234 +S'color intaglio' +p263502 +sg225230 +S'Pelicans in Flight' +p263503 +sg225236 +S'unknown date\n' +p263504 +sa(dp263505 +g225232 +S'Martin Barooshian' +p263506 +sg225240 +g27 +sg225234 +S'color intaglio' +p263507 +sg225230 +S'Wild Goose' +p263508 +sg225236 +S'unknown date\n' +p263509 +sa(dp263510 +g225230 +S'Mrs. Montague' +p263511 +sg225232 +S'Artist Information (' +p263512 +sg225234 +S'(artist after)' +p263513 +sg225236 +S'\n' +p263514 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca39.jpg' +p263515 +sg225240 +g27 +sa(dp263516 +g225232 +S'Leonard Baskin' +p263517 +sg225240 +g27 +sg225234 +S'etching and aquatint on Rives BFK paper' +p263518 +sg225230 +S'Eakins' +p263519 +sg225236 +S'1964' +p263520 +sa(dp263521 +g225232 +S'Leonard Baskin' +p263522 +sg225240 +g27 +sg225234 +S'woodcut block' +p263523 +sg225230 +S'Children and Still Life' +p263524 +sg225236 +S'1956' +p263525 +sa(dp263526 +g225232 +S'Leonard Baskin' +p263527 +sg225240 +g27 +sg225234 +S'etching' +p263528 +sg225230 +S'Untitled (Man)' +p263529 +sg225236 +S'unknown date\n' +p263530 +sa(dp263531 +g225230 +S'Title Page' +p263532 +sg225232 +S'Lydia Bates' +p263533 +sg225234 +S'etching' +p263534 +sg225236 +S'1784' +p263535 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076d1.jpg' +p263536 +sg225240 +g27 +sa(dp263537 +g225230 +S'A Choir Singing' +p263538 +sg225232 +S'Lydia Bates' +p263539 +sg225234 +S'etching' +p263540 +sg225236 +S'1784' +p263541 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076d5.jpg' +p263542 +sg225240 +g27 +sa(dp263543 +g225230 +S'A Fellow of Maudlin' +p263544 +sg225232 +S'Lydia Bates' +p263545 +sg225234 +S'etching' +p263546 +sg225236 +S'1784' +p263547 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076d2.jpg' +p263548 +sg225240 +g27 +sa(dp263549 +g225230 +S'Two Fleeing Figures (Atlanta and Hippomenes?)' +p263550 +sg225232 +S'Lydia Bates' +p263551 +sg225234 +S'etching' +p263552 +sg225236 +S'1784' +p263553 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076d3.jpg' +p263554 +sg225240 +g27 +sa(dp263555 +g225230 +S'Coast Scene' +p263556 +sg225232 +S'Lydia Bates' +p263557 +sg225234 +S'etching' +p263558 +sg225236 +S'1784' +p263559 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076cc.jpg' +p263560 +sg225240 +g27 +sa(dp263561 +g225232 +S'Jack Becker' +p263562 +sg225240 +g27 +sg225234 +S'pen and black ink with black magic marker on yellow paper' +p263563 +sg225230 +S'God Spread His Grace on Thee?' +p263564 +sg225236 +S'1978' +p263565 +sa(dp263566 +g225232 +S'Jack Becker' +p263567 +sg225240 +g27 +sg225234 +S'etching with watercolor' +p263568 +sg225230 +S"Who's that Cat in the Middle?" +p263569 +sg225236 +S'1978' +p263570 +sa(dp263571 +g225230 +S'Madonna on the Half Moon' +p263572 +sg225232 +S'Sebald Beham' +p263573 +sg225234 +S'engraving' +p263574 +sg225236 +S'1520' +p263575 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a818.jpg' +p263576 +sg225240 +g27 +sa(dp263577 +g225230 +S'Fantastic Vases' +p263578 +sg225232 +S'Stefano Della Bella' +p263579 +sg225234 +S'etching' +p263580 +sg225236 +S'probably 1646' +p263581 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c80c.jpg' +p263582 +sg225240 +g27 +sa(dp263583 +g225230 +S'Fantastic Vases' +p263584 +sg225232 +S'Stefano Della Bella' +p263585 +sg225234 +S'etching' +p263586 +sg225236 +S'probably 1646' +p263587 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c80a.jpg' +p263588 +sg225240 +g27 +sa(dp263589 +g225230 +S'Landscape with Windmill' +p263590 +sg225232 +S'Stefano Della Bella' +p263591 +sg225234 +S'etching' +p263592 +sg225236 +S'in or before 1647' +p263593 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c92b.jpg' +p263594 +sg225240 +g27 +sa(dp263595 +g225232 +S'Ben-Zion' +p263596 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p263597 +sg225230 +S'Moses Held up his Hand' +p263598 +sg225236 +S'1950' +p263599 +sa(dp263600 +g225232 +S'Alfred Bendiner' +p263601 +sg225240 +g27 +sg225234 +S'lithograph' +p263602 +sg225230 +S'Audience' +p263603 +sg225236 +S'1936' +p263604 +sa(dp263605 +g225232 +S'Alfred Bendiner' +p263606 +sg225240 +g27 +sg225234 +S'lithograph' +p263607 +sg225230 +S'The Afternoon of a Middle Aged Faun' +p263608 +sg225236 +S'1949' +p263609 +sa(dp263610 +g225232 +S'Alfred Bendiner' +p263611 +sg225240 +g27 +sg225234 +S'charcoal' +p263612 +sg225230 +S'Albert M. Greenfield' +p263613 +sg225236 +S'unknown date\n' +p263614 +sa(dp263615 +g225232 +S'Alfred Bendiner' +p263616 +sg225240 +g27 +sg225234 +S'pen and brush and black ink on cardstock' +p263617 +sg225230 +S'Bertha Von Morschzisker and Lessing J. Rosenwald at the Print Club' +p263618 +sg225236 +S'unknown date\n' +p263619 +sa(dp263620 +g225232 +S'Alfred Bendiner' +p263621 +sg225240 +g27 +sg225234 +S'lithograph' +p263622 +sg225230 +S"Franklin's Kite" +p263623 +sg225236 +S'1935' +p263624 +sa(dp263625 +g225232 +S'Alfred Bendiner' +p263626 +sg225240 +g27 +sg225234 +S'graphite on stationery (The Benjamin Franklin Hotel, Philadelphia)' +p263627 +sg225230 +S'General Abel Davis' +p263628 +sg225236 +S'c. 1926' +p263629 +sa(dp263630 +g225232 +S'Alfred Bendiner' +p263631 +sg225240 +g27 +sg225234 +S'lithograph' +p263632 +sg225230 +S'Happy Birthday to Uncle' +p263633 +sg225236 +S'1948' +p263634 +sa(dp263635 +g225232 +S'Alfred Bendiner' +p263636 +sg225240 +g27 +sg225234 +S'charcoal on wove paper' +p263637 +sg225230 +S'Harold (front view)' +p263638 +sg225236 +S'unknown date\n' +p263639 +sa(dp263640 +g225232 +S'Alfred Bendiner' +p263641 +sg225240 +g27 +sg225234 +S'charcoal on wove paper' +p263642 +sg225230 +S'Harold (profile)' +p263643 +sg225236 +S'unknown date\n' +p263644 +sa(dp263645 +g225232 +S'Alfred Bendiner' +p263646 +sg225240 +g27 +sg225234 +S'lithograph' +p263647 +sg225230 +S'Jerusalem' +p263648 +sg225236 +S'1935' +p263649 +sa(dp263650 +g225232 +S'Alfred Bendiner' +p263651 +sg225240 +g27 +sg225234 +S'charcoal on wove paper' +p263652 +sg225230 +S'Judge Lewis' +p263653 +sg225236 +S'1925' +p263654 +sa(dp263655 +g225232 +S'Alfred Bendiner' +p263656 +sg225240 +g27 +sg225234 +S'charcoal on wove paper' +p263657 +sg225230 +S'Judge Lewis (front view)' +p263658 +sg225236 +S'1925' +p263659 +sa(dp263660 +g225232 +S'Alfred Bendiner' +p263661 +sg225240 +g27 +sg225234 +S'graphite' +p263662 +sg225230 +S'Lessing J. Rosenwald' +p263663 +sg225236 +S'unknown date\n' +p263664 +sa(dp263665 +g225232 +S'Alfred Bendiner' +p263666 +sg225240 +g27 +sg225234 +S'charcoal on wove paper' +p263667 +sg225230 +S'Levy (?)' +p263668 +sg225236 +S'unknown date\n' +p263669 +sa(dp263670 +g225232 +S'Alfred Bendiner' +p263671 +sg225240 +g27 +sg225234 +S'lithograph' +p263672 +sg225230 +S'Master of the House' +p263673 +sg225236 +S'1935' +p263674 +sa(dp263675 +g225232 +S'Alfred Bendiner' +p263676 +sg225240 +g27 +sg225234 +S'charcoal on wove paper' +p263677 +sg225230 +S'Mr. Louis Marshall' +p263678 +sg225236 +S'1925' +p263679 +sa(dp263680 +g225232 +S'Alfred Bendiner' +p263681 +sg225240 +g27 +sg225234 +S'lithograph' +p263682 +sg225230 +S'Peasant Woman' +p263683 +sg225236 +S'1934' +p263684 +sa(dp263685 +g225232 +S'Alfred Bendiner' +p263686 +sg225240 +g27 +sg225234 +S'lithograph' +p263687 +sg225230 +S'Return from Fiesta' +p263688 +sg225236 +S'1935' +p263689 +sa(dp263690 +g225232 +S'Alfred Bendiner' +p263691 +sg225240 +g27 +sg225234 +S'lithograph' +p263692 +sg225230 +S'Rosenwald New Year Card' +p263693 +sg225236 +S'1935' +p263694 +sa(dp263695 +g225232 +S'Alfred Bendiner' +p263696 +sg225240 +g27 +sg225234 +S'lithograph' +p263697 +sg225230 +S'Rosenwald New Year Card' +p263698 +sg225236 +S'1935' +p263699 +sa(dp263700 +g225232 +S'Alfred Bendiner' +p263701 +sg225240 +g27 +sg225234 +S'graphite' +p263702 +sg225230 +S'Samuel Lewisohn' +p263703 +sg225236 +S'unknown date\n' +p263704 +sa(dp263705 +g225232 +S'Alfred Bendiner' +p263706 +sg225240 +g27 +sg225234 +S'charcoal on wove paper' +p263707 +sg225230 +S'Profile Portraits of Men [recto and verso]' +p263708 +sg225236 +S'unknown date\n' +p263709 +sa(dp263710 +g225232 +S'Alfred Bendiner' +p263711 +sg225240 +g27 +sg225234 +S'charcoal on wove paper' +p263712 +sg225230 +S'Caricature of a Man (Azish?, front and profile views)' +p263713 +sg225236 +S'unknown date\n' +p263714 +sa(dp263715 +g225232 +S'Alfred Bendiner' +p263716 +sg225240 +g27 +sg225234 +S'black crayon' +p263717 +sg225230 +S'Caricature of a Man' +p263718 +sg225236 +S'unknown date\n' +p263719 +sa(dp263720 +g225232 +S'Alfred Bendiner' +p263721 +sg225240 +g27 +sg225234 +S'graphite' +p263722 +sg225230 +S'Caricature of a Man Smoking a Cigar' +p263723 +sg225236 +S'unknown date\n' +p263724 +sa(dp263725 +g225232 +S'Alfred Bendiner' +p263726 +sg225240 +g27 +sg225234 +S'charcoal' +p263727 +sg225230 +S'Three Profile Caricatures of Men' +p263728 +sg225236 +S'unknown date\n' +p263729 +sa(dp263730 +g225232 +S'Alfred Bendiner' +p263731 +sg225240 +g27 +sg225234 +S'graphite sketch at the head of a typewritten letter from Betty & Al Bendiner to Edith & Lessing Rosenwald on stationery from the Hotel Crillon, Madrid' +p263732 +sg225230 +S'Toreador and Dead Bull' +p263733 +sg225236 +S'unknown date\n' +p263734 +sa(dp263735 +g225232 +S'Connie Benham' +p263736 +sg225240 +g27 +sg225234 +S'aquatint and etching' +p263737 +sg225230 +S'(Architectural-like structure; like a playground environmental sculpture)' +p263738 +sg225236 +S'1974' +p263739 +sa(dp263740 +g225232 +S'Connie Benham' +p263741 +sg225240 +g27 +sg225234 +S'aquatint and etching' +p263742 +sg225230 +S'(Architectural structure like a superstructure of a high rise building)' +p263743 +sg225236 +S'1975' +p263744 +sa(dp263745 +g225232 +S'Connie Benham' +p263746 +sg225240 +g27 +sg225234 +S'aquatint and etching' +p263747 +sg225230 +S'(Four rectangular box-like forms joined by a beam)' +p263748 +sg225236 +S'1975' +p263749 +sa(dp263750 +g225232 +S'Connie Benham' +p263751 +sg225240 +g27 +sg225234 +S'aquatint and etching' +p263752 +sg225230 +S'(Vertical forms at left and right with criss-cross diagonal beams at center)' +p263753 +sg225236 +S'1974' +p263754 +sa(dp263755 +g225232 +S'Antonio Berni' +p263756 +sg225240 +g27 +sg225234 +S'relief, deeply embossed' +p263757 +sg225230 +S'El Obispo' +p263758 +sg225236 +S'1964' +p263759 +sa(dp263760 +g225232 +S'Antonio Berni' +p263761 +sg225240 +g27 +sg225234 +S'relief print' +p263762 +sg225230 +S'The Meeting of Ramona and John' +p263763 +sg225236 +S'1966' +p263764 +sa(dp263765 +g225232 +S'Michael Biddle' +p263766 +sg225240 +g27 +sg225234 +S'etching' +p263767 +sg225230 +S'Profile of Jailer' +p263768 +sg225236 +S'unknown date\n' +p263769 +sa(dp263770 +g225232 +S'Michael Biddle' +p263771 +sg225240 +g27 +sg225234 +S'etching' +p263772 +sg225230 +S'Two Figures Fighting' +p263773 +sg225236 +S'unknown date\n' +p263774 +sa(dp263775 +g225232 +S'Michael Biddle' +p263776 +sg225240 +g27 +sg225234 +S'etching [restrike]' +p263777 +sg225230 +S'Three Figures, Two Fighting, One Dead' +p263778 +sg225236 +S'unknown date\n' +p263779 +sa(dp263780 +g225232 +S'Richard Evett Bishop' +p263781 +sg225240 +g27 +sg225234 +S'etching' +p263782 +sg225230 +S'Christmas Card from Helen and Dick Bishop' +p263783 +sg225236 +S'1933' +p263784 +sa(dp263785 +g225232 +S'Richard Evett Bishop' +p263786 +sg225240 +g27 +sg225234 +S'etching' +p263787 +sg225230 +S'Christmas Card from Helen and Dick Bishop' +p263788 +sg225236 +S'1934' +p263789 +sa(dp263790 +g225232 +S'Richard Evett Bishop' +p263791 +sg225240 +g27 +sg225234 +S'etching' +p263792 +sg225230 +S'Christmas Card from Helen and Dick Bishop' +p263793 +sg225236 +S'1943' +p263794 +sa(dp263795 +g225232 +S'Richard Evett Bishop' +p263796 +sg225240 +g27 +sg225234 +S'etching' +p263797 +sg225230 +S'Christmas Card from Helen and Dick Bishop' +p263798 +sg225236 +S'1944' +p263799 +sa(dp263800 +g225232 +S'Richard Evett Bishop' +p263801 +sg225240 +g27 +sg225234 +S'etching' +p263802 +sg225230 +S'Christmas Card from Helen and Dick Bishop' +p263803 +sg225236 +S'1945' +p263804 +sa(dp263805 +g225232 +S'Richard Evett Bishop' +p263806 +sg225240 +g27 +sg225234 +S'etching' +p263807 +sg225230 +S'Christmas Card from Helen and Dick Bishop' +p263808 +sg225236 +S'1947' +p263809 +sa(dp263810 +g225232 +S'Richard Evett Bishop' +p263811 +sg225240 +g27 +sg225234 +S'etching' +p263812 +sg225230 +S'Christmas Card from Helen and Dick Bishop' +p263813 +sg225236 +S'1948' +p263814 +sa(dp263815 +g225232 +S'Richard Evett Bishop' +p263816 +sg225240 +g27 +sg225234 +S'etching' +p263817 +sg225230 +S'Christmas Card from Helen and Dick Bishop' +p263818 +sg225236 +S'1949' +p263819 +sa(dp263820 +g225232 +S'Richard Evett Bishop' +p263821 +sg225240 +g27 +sg225234 +S'etching' +p263822 +sg225230 +S'Christmas Card from Helen and Dick Bishop' +p263823 +sg225236 +S'1950' +p263824 +sa(dp263825 +g225232 +S'Richard Evett Bishop' +p263826 +sg225240 +g27 +sg225234 +S'etching' +p263827 +sg225230 +S'Christmas Card from Helen and Dick Bishop' +p263828 +sg225236 +S'1952' +p263829 +sa(dp263830 +g225232 +S'Richard Evett Bishop' +p263831 +sg225240 +g27 +sg225234 +S'etching' +p263832 +sg225230 +S'Christmas Card from Helen and Dick Bishop' +p263833 +sg225236 +S'1953' +p263834 +sa(dp263835 +g225232 +S'Richard Evett Bishop' +p263836 +sg225240 +g27 +sg225234 +S'etching' +p263837 +sg225230 +S'Christmas Card from Helen and Dick Bishop' +p263838 +sg225236 +S'1954' +p263839 +sa(dp263840 +g225232 +S'Richard Evett Bishop' +p263841 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p263842 +sg225230 +S'Christmas Card from Helen and Dick Bishop' +p263843 +sg225236 +S'unknown date\n' +p263844 +sa(dp263845 +g225232 +S'Richard Evett Bishop' +p263846 +sg225240 +g27 +sg225234 +S'etching' +p263847 +sg225230 +S'Christmas Card from Helen and Dick Bishop' +p263848 +sg225236 +S'1935' +p263849 +sa(dp263850 +g225232 +S'Richard Evett Bishop' +p263851 +sg225240 +g27 +sg225234 +S'etching' +p263852 +sg225230 +S'Christmas Card from Helen and Dick Bishop' +p263853 +sg225236 +S'1937' +p263854 +sa(dp263855 +g225232 +S'Richard Evett Bishop' +p263856 +sg225240 +g27 +sg225234 +S'etching' +p263857 +sg225230 +S'Christmas Card from Helen and Dick Bishop' +p263858 +sg225236 +S'1941' +p263859 +sa(dp263860 +g225232 +S'Richard Evett Bishop' +p263861 +sg225240 +g27 +sg225234 +S'etching' +p263862 +sg225230 +S'Christmas Card from Helen and Dick Bishop' +p263863 +sg225236 +S'1973' +p263864 +sa(dp263865 +g225232 +S'William Blake' +p263866 +sg225240 +g27 +sg225234 +S'1 vol. plus separate portfolio of facsimiles and one restrike from original engraved plate (see 1943.3.1742 for plate)' +p263867 +sg225230 +S"Blake's Illustrations of Dante (facsimile edition)" +p263868 +sg225236 +S'published 1978' +p263869 +sa(dp263870 +g225232 +S'Artist Information (' +p263871 +sg225240 +g27 +sg225234 +S'British, 1757 - 1827' +p263872 +sg225230 +S'Electrotype plate made from fragment of Blake\'s cancelled plate for "A Prophecy"' +p263873 +sg225236 +S'(artist after)' +p263874 +sa(dp263875 +g225230 +S'The Circle of the Lustful: Paolo and Francesca' +p263876 +sg225232 +S'William Blake' +p263877 +sg225234 +S'engraving printed by Harry Hoehn in 1968' +p263878 +sg225236 +S'1827' +p263879 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a0007707.jpg' +p263880 +sg225240 +g27 +sa(dp263881 +g225230 +S'The Circle of the Corrupt Officials; the Devils Tormenting Ciampolo' +p263882 +sg225232 +S'William Blake' +p263883 +sg225234 +S'engraving printed by Harry Hoehn in 1968' +p263884 +sg225236 +S'1827' +p263885 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a0007709.jpg' +p263886 +sg225240 +g27 +sa(dp263887 +g225230 +S'The Circle of the Corrupt Officials; the Devils Mauling Each Other' +p263888 +sg225232 +S'William Blake' +p263889 +sg225234 +S'engraving printed by Harry Hoehn in 1968' +p263890 +sg225236 +S'1827' +p263891 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a000770b.jpg' +p263892 +sg225240 +g27 +sa(dp263893 +g225230 +S'The Circle of the Thieves; Agnolo Brunelleschi Attacked by a Six-Footed Serpent' +p263894 +sg225232 +S'William Blake' +p263895 +sg225234 +S'engraving printed by Harry Hoehn in 1968' +p263896 +sg225236 +S'1827' +p263897 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a000770d.jpg' +p263898 +sg225240 +g27 +sa(dp263899 +g225230 +S'The Circle of the Thieves; Buoso Donati Attacked by the Serpent' +p263900 +sg225232 +S'William Blake' +p263901 +sg225234 +S'engraving printed by Harry Hoehn in 1968' +p263902 +sg225236 +S'1827' +p263903 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a000770f.jpg' +p263904 +sg225240 +g27 +sa(dp263905 +g225230 +S'The Circle of the Falsifiers: Dante and Virgil Covering their Noses because of the stench' +p263906 +sg225232 +S'William Blake' +p263907 +sg225234 +S'engraving printed by Harry Hoehn in 1968' +p263908 +sg225236 +S'1827' +p263909 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a0007711.jpg' +p263910 +sg225240 +g27 +sa(dp263911 +g225230 +S"The Circle of the Traitors; Dante's Foot Striking Bocca degli Abbate" +p263912 +sg225232 +S'William Blake' +p263913 +sg225234 +S'engraving printed by Harry Hoehn in 1968' +p263914 +sg225236 +S'1827' +p263915 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a0007713.jpg' +p263916 +sg225240 +g27 +sa(dp263917 +g225230 +S'The Circle of the Lustful: Paolo and Francesca' +p263918 +sg225232 +S'William Blake' +p263919 +sg225234 +S'engraving printed by Harry Hoehn in 1968 before plate was cleaned' +p263920 +sg225236 +S'1827' +p263921 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a000789d.jpg' +p263922 +sg225240 +g27 +sa(dp263923 +g225230 +S'The Circle of the Lustful: Paolo and Francesca' +p263924 +sg225232 +S'William Blake' +p263925 +sg225234 +S'engraving printed by Harry Hoehn in 1968 before plate was cleaned' +p263926 +sg225236 +S'1827' +p263927 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a000789e.jpg' +p263928 +sg225240 +g27 +sa(dp263929 +g225230 +S'Sketch of a Swordsman Standing Over His Defeated Opponent [recto]' +p263930 +sg225232 +S'William Blake' +p263931 +sg225234 +S'graphite' +p263932 +sg225236 +S'c. 1780/1785' +p263933 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fe5.jpg' +p263934 +sg225240 +g27 +sa(dp263935 +g225230 +S'Sketch of a Swordsman Standing Over His Defeated Opponent [verso]' +p263936 +sg225232 +S'William Blake' +p263937 +sg225234 +S'graphite' +p263938 +sg225236 +S'c. 1780/1785' +p263939 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fb7.jpg' +p263940 +sg225240 +g27 +sa(dp263941 +g225232 +S'Herman Bloch' +p263942 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p263943 +sg225230 +S'Corner in France' +p263944 +sg225236 +S'unknown date\n' +p263945 +sa(dp263946 +g225232 +S'Herbert Bockl' +p263947 +sg225240 +g27 +sg225234 +S'aquatint' +p263948 +sg225230 +S'Monk' +p263949 +sg225236 +S'1949' +p263950 +sa(dp263951 +g225230 +S'Winter' +p263952 +sg225232 +S'Artist Information (' +p263953 +sg225234 +S'(artist after)' +p263954 +sg225236 +S'\n' +p263955 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cff7.jpg' +p263956 +sg225240 +g27 +sa(dp263957 +g225232 +S'Paolo Boni' +p263958 +sg225240 +g27 +sg225234 +S'collagraph plate (zinc and aluminum mounted on wooden board)' +p263959 +sg225230 +S'Mirage' +p263960 +sg225236 +S'1962' +p263961 +sa(dp263962 +g225232 +S'Paolo Boni' +p263963 +sg225240 +g27 +sg225234 +S'collagraph plate (zinc, copper, iron, brass) in four parts' +p263964 +sg225230 +S'Omaggio a Braccelli' +p263965 +sg225236 +S'1968' +p263966 +sa(dp263967 +g225232 +S'Paolo Boni' +p263968 +sg225240 +g27 +sg225234 +S'blind printed with two different variations from the collagraph plate' +p263969 +sg225230 +S'Omaggio a Braccelli (Title Folder)' +p263970 +sg225236 +S'1968' +p263971 +sa(dp263972 +g225232 +S'Paolo Boni' +p263973 +sg225240 +g27 +sg225234 +S'portfolio with 13 early and late proofs of the collagraph of the same title plus handwritten description of the various proofs' +p263974 +sg225230 +S'Omaggio a Braccelli' +p263975 +sg225236 +S'1968' +p263976 +sa(dp263977 +g225232 +S'Paolo Boni' +p263978 +sg225240 +g27 +sg225234 +S'description of various proofs handwritten in blackink' +p263979 +sg225230 +S'Omaggio a Braccelli (Justification Page)' +p263980 +sg225236 +S'1968' +p263981 +sa(dp263982 +g225232 +S'Paolo Boni' +p263983 +sg225240 +g27 +sg225234 +S'dry impression to control the cut of two separate plates of support in zinc' +p263984 +sg225230 +S'Omaggio a Braccelli (1st state)' +p263985 +sg225236 +S'1968' +p263986 +sa(dp263987 +g225232 +S'Paolo Boni' +p263988 +sg225240 +g27 +sg225234 +S'dry impression of a part of zinc plate with elements in iron and brass superimposed on one figure; iron shoe taps covered by copper on second figure' +p263989 +sg225230 +S'Omaggio a Braccelli (2nd state)' +p263990 +sg225236 +S'1968' +p263991 +sa(dp263992 +g225232 +S'Paolo Boni' +p263993 +sg225240 +g27 +sg225234 +S'impression in transparent dirty white; brass base added to zinc support; two superimposed personags in copper and brass screen' +p263994 +sg225230 +S'Omaggio a Braccelli (3rd state)' +p263995 +sg225236 +S'1968' +p263996 +sa(dp263997 +g225232 +S'Paolo Boni' +p263998 +sg225240 +g27 +sg225234 +S'impression on the forms united' +p263999 +sg225230 +S'Omaggio a Braccelli (4th state)' +p264000 +sg225236 +S'1968' +p264001 +sa(dp264002 +g225232 +S'Paolo Boni' +p264003 +sg225240 +g27 +sg225234 +S'impression of whole plate: dry printing with lowerfigures inked with roller of gray-tan ink' +p264004 +sg225230 +S'Omaggio a Braccelli (5th state)' +p264005 +sg225236 +S'1968' +p264006 +sa(dp264007 +g225232 +S'Paolo Boni' +p264008 +sg225240 +g27 +sg225234 +S'impression with upper part inked with roller in yellow; addition of plate with elements inked in red' +p264009 +sg225230 +S'Omaggio a Braccelli (6th state)' +p264010 +sg225236 +S'1968' +p264011 +sa(dp264012 +g225232 +S'Paolo Boni' +p264013 +sg225240 +g27 +sg225234 +S'variation with plate retouched in yellow, gray, white and brown on gray paper' +p264014 +sg225230 +S'Omaggio a Braccelli (7th state)' +p264015 +sg225236 +S'1968' +p264016 +sa(dp264017 +g225232 +S'Paolo Boni' +p264018 +sg225240 +g27 +sg225234 +S'print in black with lower part inked by roller' +p264019 +sg225230 +S'Omaggio a Braccelli (prova in nero)' +p264020 +sg225236 +S'1968' +p264021 +sa(dp264022 +g225232 +S'Paolo Boni' +p264023 +sg225240 +g27 +sg225234 +S'addition of plate to cover whole surface of paper in brown and white on cream paper' +p264024 +sg225230 +S'Omaggio a Braccelli (8th state)' +p264025 +sg225236 +S'1968' +p264026 +sa(dp264027 +g225232 +S'Paolo Boni' +p264028 +sg225240 +g27 +sg225234 +S'blind print, with retouches and additions of two elements in lower figure to control whole composition, on gray paper' +p264029 +sg225230 +S'Omaggio a Braccelli (prova a secco)' +p264030 +sg225236 +S'1968' +p264031 +sa(dp264032 +g225232 +S'Paolo Boni' +p264033 +sg225240 +g27 +sg225234 +S'print in shades of gray and brown' +p264034 +sg225230 +S'Omaggio a Braccelli (prova di colore)' +p264035 +sg225236 +S'1968' +p264036 +sa(dp264037 +g225232 +S'Paolo Boni' +p264038 +sg225240 +g27 +sg225234 +S'collagraph in shades of brown' +p264039 +sg225230 +S'Omaggio a Braccelli' +p264040 +sg225236 +S'1968' +p264041 +sa(dp264042 +g225230 +S'Croix de Moulin-les-Planches' +p264043 +sg225232 +S'Richard Parkes Bonington' +p264044 +sg225234 +S'lithograph on chine colle paper' +p264045 +sg225236 +S'1827' +p264046 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dae.jpg' +p264047 +sg225240 +g27 +sa(dp264048 +g225232 +S'Pierre Bonnard' +p264049 +sg225240 +g27 +sg225234 +S'lithograph in brown, yellow, blue, red and black' +p264050 +sg225230 +S'Two Sheets from the folding screen "Promenade of the Nursemaids: Frieze of Coaches"' +p264051 +sg225236 +S'1899' +p264052 +sa(dp264053 +g225230 +S'Charles Lameth' +p264054 +sg225232 +S'Fran\xc3\xa7ois Bonneville' +p264055 +sg225234 +S'stipple engraving and aquatint' +p264056 +sg225236 +S'probably c. 1780/1802' +p264057 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cc5.jpg' +p264058 +sg225240 +g27 +sa(dp264059 +g225232 +S'Mortimer Borne' +p264060 +sg225240 +g27 +sg225234 +S'color drypoint' +p264061 +sg225230 +S'After the Storm' +p264062 +sg225236 +S'unknown date\n' +p264063 +sa(dp264064 +g225232 +S'Mortimer Borne' +p264065 +sg225240 +g27 +sg225234 +S'woodcut' +p264066 +sg225230 +S'Holiday Greeting' +p264067 +sg225236 +S'1947' +p264068 +sa(dp264069 +g225232 +S'Mortimer Borne' +p264070 +sg225240 +g27 +sg225234 +S'drypoint' +p264071 +sg225230 +S'New York Skyline' +p264072 +sg225236 +S'1948' +p264073 +sa(dp264074 +g225232 +S'Mortimer Borne' +p264075 +sg225240 +g27 +sg225234 +S'pen and ink' +p264076 +sg225230 +S'No. 84' +p264077 +sg225236 +S'1968' +p264078 +sa(dp264079 +g225230 +S'Pheasant' +p264080 +sg225232 +S'F\xc3\xa9lix Bracquemond' +p264081 +sg225234 +S'etching on gray paper' +p264082 +sg225236 +S'1866' +p264083 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a0009143.jpg' +p264084 +sg225240 +g27 +sa(dp264085 +g225230 +S'The Road Leading to Bellevue' +p264086 +sg225232 +S'F\xc3\xa9lix Bracquemond' +p264087 +sg225234 +S'etching' +p264088 +sg225236 +S'1873' +p264089 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a0009148.jpg' +p264090 +sg225240 +g27 +sa(dp264091 +g225230 +S'Poplars Along the Seine' +p264092 +sg225232 +S'F\xc3\xa9lix Bracquemond' +p264093 +sg225234 +S'etching and drypoint' +p264094 +sg225236 +S'unknown date\n' +p264095 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000982e.jpg' +p264096 +sg225240 +g27 +sa(dp264097 +g225230 +S'Untitled (The Dream of the Mogul?)' +p264098 +sg225232 +S'Artist Information (' +p264099 +sg225234 +S'(artist after)' +p264100 +sg225236 +S'\n' +p264101 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a0009140.jpg' +p264102 +sg225240 +g27 +sa(dp264103 +g225232 +S'Sir Frank Brangwyn' +p264104 +sg225240 +g27 +sg225234 +S'zinc etching' +p264105 +sg225230 +S'Old Houses, St. Cirq (Hog Butchers)' +p264106 +sg225236 +S'1910' +p264107 +sa(dp264108 +g225232 +S'Georges Braque' +p264109 +sg225240 +g27 +sg225234 +S'lithograph' +p264110 +sg225230 +S'Black Flower' +p264111 +sg225236 +S'1962' +p264112 +sa(dp264113 +g225232 +S'Byron H. Bratt, Jr.' +p264114 +sg225240 +g27 +sg225234 +S'mezzotint' +p264115 +sg225230 +S'The Kiss' +p264116 +sg225236 +S'1976' +p264117 +sa(dp264118 +g225232 +S'Elaine Breiger' +p264119 +sg225240 +g27 +sg225234 +S'color intaglio' +p264120 +sg225230 +S'The Khafu Sun Boat' +p264121 +sg225236 +S'1971' +p264122 +sa(dp264123 +g225232 +S'Elaine Breiger' +p264124 +sg225240 +g27 +sg225234 +S'color intaglio' +p264125 +sg225230 +S'Scalene' +p264126 +sg225236 +S'1970' +p264127 +sa(dp264128 +g225232 +S'Elaine Breiger' +p264129 +sg225240 +g27 +sg225234 +S'color intaglio' +p264130 +sg225230 +S'War Games' +p264131 +sg225236 +S'1967' +p264132 +sa(dp264133 +g225232 +S'Cornelia Breitenbach' +p264134 +sg225240 +g27 +sg225234 +S'intaglio' +p264135 +sg225230 +S'Ah! Meine Mutter' +p264136 +sg225236 +S'1969' +p264137 +sa(dp264138 +g225230 +S'Euntes in Emaus (The Pilgrims to Emmaus)' +p264139 +sg225232 +S'Artist Information (' +p264140 +sg225234 +S'(artist)' +p264141 +sg225236 +S'\n' +p264142 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d059.jpg' +p264143 +sg225240 +g27 +sa(dp264144 +g225230 +S'Milites Requiescentes (Soldiers at Rest)' +p264145 +sg225232 +S'Artist Information (' +p264146 +sg225234 +S'(artist)' +p264147 +sg225236 +S'\n' +p264148 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d063.jpg' +p264149 +sg225240 +g27 +sa(dp264150 +g225230 +S'The Big Fish Eat the Little Fish' +p264151 +sg225232 +S'Artist Information (' +p264152 +sg225234 +S'(artist after)' +p264153 +sg225236 +S'\n' +p264154 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3e5.jpg' +p264155 +sg225240 +g27 +sa(dp264156 +g225230 +S'The Big Fish Eat the Little Fish' +p264157 +sg225232 +S'Artist Information (' +p264158 +sg225234 +S'(artist after)' +p264159 +sg225236 +S'\n' +p264160 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cefe.jpg' +p264161 +sg225240 +g27 +sa(dp264162 +g225230 +S'Christ and His Disciples on the Way to Emmaus' +p264163 +sg225232 +S'Artist Information (' +p264164 +sg225234 +S'(artist after)' +p264165 +sg225236 +S'\n' +p264166 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cefb.jpg' +p264167 +sg225240 +g27 +sa(dp264168 +g225230 +S'The Parable of the Wise and Foolish Virgins' +p264169 +sg225232 +S'Artist Information (' +p264170 +sg225234 +S'(artist after)' +p264171 +sg225236 +S'\n' +p264172 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cef2.jpg' +p264173 +sg225240 +g27 +sa(dp264174 +g225230 +S'Peasants Fighting' +p264175 +sg225232 +S'Artist Information (' +p264176 +sg225234 +S'(artist after)' +p264177 +sg225236 +S'\n' +p264178 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d776.jpg' +p264179 +sg225240 +g27 +sa(dp264180 +g225230 +S'Magdalena Poenitens (The Penitent Magdalene)' +p264181 +sg225232 +S'Artist Information (' +p264182 +sg225234 +S'(artist)' +p264183 +sg225236 +S'\n' +p264184 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cedb.jpg' +p264185 +sg225240 +g27 +sa(dp264186 +g225230 +S'Faith' +p264187 +sg225232 +S'Artist Information (' +p264188 +sg225234 +S'(artist after)' +p264189 +sg225236 +S'\n' +p264190 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf00.jpg' +p264191 +sg225240 +g27 +sa(dp264192 +g225230 +S'Hope' +p264193 +sg225232 +S'Artist Information (' +p264194 +sg225234 +S'(artist after)' +p264195 +sg225236 +S'\n' +p264196 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf02.jpg' +p264197 +sg225240 +g27 +sa(dp264198 +g225230 +S'Charity [recto]' +p264199 +sg225232 +S'Artist Information (' +p264200 +sg225234 +S'(artist after)' +p264201 +sg225236 +S'\n' +p264202 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf04.jpg' +p264203 +sg225240 +g27 +sa(dp264204 +g225232 +S'Netherlandish 17th Century' +p264205 +sg225240 +g27 +sg225234 +S'Rosenwald Collection' +p264206 +sg225230 +S'Dog and Sea Creature (?) [verso]' +p264207 +sg225236 +S'\nblack chalk' +p264208 +sa(dp264209 +g225230 +S'Justice' +p264210 +sg225232 +S'Artist Information (' +p264211 +sg225234 +S'(artist after)' +p264212 +sg225236 +S'\n' +p264213 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cefd.jpg' +p264214 +sg225240 +g27 +sa(dp264215 +g225230 +S'Prudence' +p264216 +sg225232 +S'Artist Information (' +p264217 +sg225234 +S'(artist after)' +p264218 +sg225236 +S'\n' +p264219 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf07.jpg' +p264220 +sg225240 +g27 +sa(dp264221 +g225230 +S'Fortitude' +p264222 +sg225232 +S'Artist Information (' +p264223 +sg225234 +S'(artist after)' +p264224 +sg225236 +S'\n' +p264225 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf08.jpg' +p264226 +sg225240 +g27 +sa(dp264227 +g225230 +S'Temperance' +p264228 +sg225232 +S'Artist Information (' +p264229 +sg225234 +S'(artist after)' +p264230 +sg225236 +S'\n' +p264231 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf0a.jpg' +p264232 +sg225240 +g27 +sa(dp264233 +g225230 +S'Spring' +p264234 +sg225232 +S'Artist Information (' +p264235 +sg225234 +S'(artist after)' +p264236 +sg225236 +S'\n' +p264237 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf0d.jpg' +p264238 +sg225240 +g27 +sa(dp264239 +g225230 +S'The Triumph of Time' +p264240 +sg225232 +S'Artist Information (' +p264241 +sg225234 +S'(artist after)' +p264242 +sg225236 +S'\n' +p264243 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf14.jpg' +p264244 +sg225240 +g27 +sa(dp264245 +g225230 +S'Four-Master (Left) and Two Three-Masters Ancored Near a Fortified Island with a Lighthouse' +p264246 +sg225232 +S'Artist Information (' +p264247 +sg225234 +S'(artist after)' +p264248 +sg225236 +S'\n' +p264249 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ceea.jpg' +p264250 +sg225240 +g27 +sa(dp264251 +g225230 +S'Armed Three-Master with Daedalus and Icarus in the Sky' +p264252 +sg225232 +S'Artist Information (' +p264253 +sg225234 +S'(artist after)' +p264254 +sg225236 +S'\n' +p264255 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cee5.jpg' +p264256 +sg225240 +g27 +sa(dp264257 +g225230 +S'Armed Three-Master Ancored Near a City' +p264258 +sg225232 +S'Artist Information (' +p264259 +sg225234 +S'(artist after)' +p264260 +sg225236 +S'\n' +p264261 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cee8.jpg' +p264262 +sg225240 +g27 +sa(dp264263 +g225232 +S'Ann Brunskill' +p264264 +sg225240 +g27 +sg225234 +S'etching in blue on Barcham Green paper' +p264265 +sg225230 +S'Aphrodite Escapes' +p264266 +sg225236 +S'published 1970' +p264267 +sa(dp264268 +g225232 +S'Ann Brunskill' +p264269 +sg225240 +g27 +sg225234 +S'portfolio with 8 etchings in blue and red on Barcham Green paper accompanied by printed verse by various artists' +p264270 +sg225230 +S'Aphrodite' +p264271 +sg225236 +S'published 1970' +p264272 +sa(dp264273 +g225232 +S'Ann Brunskill' +p264274 +sg225240 +g27 +sg225234 +S'etching in blue on Barcham Green paper' +p264275 +sg225230 +S'Aphrodite Bathing' +p264276 +sg225236 +S'published 1970' +p264277 +sa(dp264278 +g225232 +S'Ann Brunskill' +p264279 +sg225240 +g27 +sg225234 +S'etching in blue on Barcham Green paper' +p264280 +sg225230 +S'Aphrodite in Spring' +p264281 +sg225236 +S'published 1970' +p264282 +sa(dp264283 +g225232 +S'Ann Brunskill' +p264284 +sg225240 +g27 +sg225234 +S'etching in blue on Barcham Green paper' +p264285 +sg225230 +S'Aphrodite in Her Garden' +p264286 +sg225236 +S'published 1970' +p264287 +sa(dp264288 +g225232 +S'Ann Brunskill' +p264289 +sg225240 +g27 +sg225234 +S'etching in blue on Barcham Green paper' +p264290 +sg225230 +S'Aphrodite is Queen' +p264291 +sg225236 +S'published 1970' +p264292 +sa(dp264293 +g225232 +S'Ann Brunskill' +p264294 +sg225240 +g27 +sg225234 +S'etching in red on Barcham Green paper' +p264295 +sg225230 +S'Aphrodite is Herself' +p264296 +sg225236 +S'published 1970' +p264297 +sa(dp264298 +g225232 +S'Ann Brunskill' +p264299 +sg225240 +g27 +sg225234 +S'etching in blue on Barcham Green paper' +p264300 +sg225230 +S'Aphrodite Returns to the Sea' +p264301 +sg225236 +S'published 1970' +p264302 +sa(dp264303 +g225232 +S'Ann Brunskill' +p264304 +sg225240 +g27 +sg225234 +S'etching in blue on Barcham Green paper' +p264305 +sg225230 +S'Aphrodite is the World' +p264306 +sg225236 +S'published 1970' +p264307 +sa(dp264308 +g225230 +S'Horse with Two Monkeys and a Dog' +p264309 +sg225232 +S'Nicolaes de Bruyn' +p264310 +sg225234 +S'engraving' +p264311 +sg225236 +S'published 1594' +p264312 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd0c.jpg' +p264313 +sg225240 +g27 +sa(dp264314 +g225230 +S'Owl on Back of Donkey, Bird on Back of Camel with Other Animals' +p264315 +sg225232 +S'Nicolaes de Bruyn' +p264316 +sg225234 +S'engraving' +p264317 +sg225236 +S'published 1594' +p264318 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd0d.jpg' +p264319 +sg225240 +g27 +sa(dp264320 +g225232 +S'Bernard Buffet' +p264321 +sg225240 +g27 +sg225234 +S'drypoint in black on wove paper' +p264322 +sg225230 +S'Saint-Germain-des-Pr\xc3\xa9s' +p264323 +sg225236 +S'1970' +p264324 +sa(dp264325 +g225232 +S'Bernard Buffet' +p264326 +sg225240 +g27 +sg225234 +S'drypoint in black on wove paper' +p264327 +sg225230 +S'Toreador' +p264328 +sg225236 +S'1967' +p264329 +sa(dp264330 +g225230 +S'Sketch of Trees with a Statue on a Pedestal' +p264331 +sg225232 +S'F\xc3\xa9lix-Hilaire Buhot' +p264332 +sg225234 +S'graphite with red chalk on wove paper' +p264333 +sg225236 +S'unknown date\n' +p264334 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007418.jpg' +p264335 +sg225240 +g27 +sa(dp264336 +g225230 +S'Les Anes de La Butte-aux-Cailles (Donkeys at La Butte-aux-Cailles)' +p264337 +sg225232 +S'F\xc3\xa9lix-Hilaire Buhot' +p264338 +sg225234 +S'etching in black on light brown wove paper' +p264339 +sg225236 +S'1873/1874' +p264340 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00097/a00097c2.jpg' +p264341 +sg225240 +g27 +sa(dp264342 +g225232 +S'George Bunker' +p264343 +sg225240 +g27 +sg225234 +S'color lithograph' +p264344 +sg225230 +S'Field #1' +p264345 +sg225236 +S'1973' +p264346 +sa(dp264347 +g225232 +S'George Bunker' +p264348 +sg225240 +g27 +sg225234 +S'color lithograph' +p264349 +sg225230 +S'Field #3' +p264350 +sg225236 +S'1973' +p264351 +sa(dp264352 +g225232 +S'Gianni Cacciarini' +p264353 +sg225240 +g27 +sg225234 +S'etching' +p264354 +sg225230 +S'Modern Archeology' +p264355 +sg225236 +S'1978' +p264356 +sa(dp264357 +g225232 +S'Gianni Cacciarini' +p264358 +sg225240 +g27 +sg225234 +S'etching' +p264359 +sg225230 +S'La Mozzarella' +p264360 +sg225236 +S'unknown date\n' +p264361 +sa(dp264362 +g225232 +S'Gianni Cacciarini' +p264363 +sg225240 +g27 +sg225234 +S'etching' +p264364 +sg225230 +S'Old Factory' +p264365 +sg225236 +S'unknown date\n' +p264366 +sa(dp264367 +g225232 +S'Gianni Cacciarini' +p264368 +sg225240 +g27 +sg225234 +S'etching' +p264369 +sg225230 +S'Tulips' +p264370 +sg225236 +S'1976' +p264371 +sa(dp264372 +g225232 +S'Gianni Cacciarini' +p264373 +sg225240 +g27 +sg225234 +S'etching' +p264374 +sg225230 +S'Vine' +p264375 +sg225236 +S'1973' +p264376 +sa(dp264377 +g225232 +S'Fred Cain' +p264378 +sg225240 +g27 +sg225234 +S'relief etching' +p264379 +sg225230 +S'Christmas Card' +p264380 +sg225236 +S'1966' +p264381 +sa(dp264382 +g225232 +S'Fred Cain' +p264383 +sg225240 +g27 +sg225234 +S'color lithograph with metallic ink' +p264384 +sg225230 +S'Elkins Park' +p264385 +sg225236 +S'1967' +p264386 +sa(dp264387 +g225232 +S'Fred Cain' +p264388 +sg225240 +g27 +sg225234 +S'metalcut' +p264389 +sg225230 +S'Inland Landscape (Ibiza)' +p264390 +sg225236 +S'1967' +p264391 +sa(dp264392 +g225232 +S'Fred Cain' +p264393 +sg225240 +g27 +sg225234 +S'relief etching on metallic paper' +p264394 +sg225230 +S'Island of Ibiza' +p264395 +sg225236 +S'1966' +p264396 +sa(dp264397 +g225232 +S'Fred Cain' +p264398 +sg225240 +g27 +sg225234 +S'relief intaglio on gold metallic paper' +p264399 +sg225230 +S"Near Playa d'En Bossa" +p264400 +sg225236 +S'1966' +p264401 +sa(dp264402 +g225232 +S'Fred Cain' +p264403 +sg225240 +g27 +sg225234 +S'relief intaglio on gold metallic paper' +p264404 +sg225230 +S"Near Playa d'En Bossa" +p264405 +sg225236 +S'1966' +p264406 +sa(dp264407 +g225232 +S'Robert Allan Cale' +p264408 +sg225240 +g27 +sg225234 +S'soft-ground etching' +p264409 +sg225230 +S'Black Raie' +p264410 +sg225236 +S'1970' +p264411 +sa(dp264412 +g225232 +S'Robert Allan Cale' +p264413 +sg225240 +g27 +sg225234 +S'color fish print' +p264414 +sg225230 +S'Brochet' +p264415 +sg225236 +S'1970' +p264416 +sa(dp264417 +g225232 +S'Robert Allan Cale' +p264418 +sg225240 +g27 +sg225234 +S'reduction woodcut in two colors' +p264419 +sg225230 +S'First Snow on Gold Street' +p264420 +sg225236 +S'1975' +p264421 +sa(dp264422 +g225232 +S'Robert Allan Cale' +p264423 +sg225240 +g27 +sg225234 +S'intaglio in green' +p264424 +sg225230 +S'Floral Arrangement' +p264425 +sg225236 +S'1971' +p264426 +sa(dp264427 +g225232 +S'Robert Allan Cale' +p264428 +sg225240 +g27 +sg225234 +S'color intaglio on BFK Rives paper' +p264429 +sg225230 +S'Ghost Fish' +p264430 +sg225236 +S'1969' +p264431 +sa(dp264432 +g225232 +S'Robert Allan Cale' +p264433 +sg225240 +g27 +sg225234 +S'soft-ground etching in green' +p264434 +sg225230 +S'Leaves of Grass' +p264435 +sg225236 +S'unknown date\n' +p264436 +sa(dp264437 +g225232 +S'Robert Allan Cale' +p264438 +sg225240 +g27 +sg225234 +S'etching and aquatint in blue' +p264439 +sg225230 +S'Me' +p264440 +sg225236 +S'1972' +p264441 +sa(dp264442 +g225232 +S'Robert Allan Cale' +p264443 +sg225240 +g27 +sg225234 +S'engraving on Rives paper' +p264444 +sg225230 +S'North Atlantic Lobster' +p264445 +sg225236 +S'1968' +p264446 +sa(dp264447 +g225232 +S'Robert Allan Cale' +p264448 +sg225240 +g27 +sg225234 +S'color fish print on Rives BFK paper' +p264449 +sg225230 +S'Orphies Dansants' +p264450 +sg225236 +S'1970' +p264451 +sa(dp264452 +g225232 +S'Robert Allan Cale' +p264453 +sg225240 +g27 +sg225234 +S'soft-ground etching, lift-ground etching and line etching on Arches paper' +p264454 +sg225230 +S'Seasons' +p264455 +sg225236 +S'1973' +p264456 +sa(dp264457 +g225232 +S'Robert Allan Cale' +p264458 +sg225240 +g27 +sg225234 +S'intaglio on Rives BFK paper' +p264459 +sg225230 +S'Shadows of Fish' +p264460 +sg225236 +S'1969' +p264461 +sa(dp264462 +g225232 +S'Robert Allan Cale' +p264463 +sg225240 +g27 +sg225234 +S'intaglio on Rives paper' +p264464 +sg225230 +S'Shadows and the Lonely Ones' +p264465 +sg225236 +S'1969/1970' +p264466 +sa(dp264467 +g225232 +S'Robert Allan Cale' +p264468 +sg225240 +g27 +sg225234 +S'monotype' +p264469 +sg225230 +S'Skate Race' +p264470 +sg225236 +S'1970' +p264471 +sa(dp264472 +g225232 +S'Robert Allan Cale' +p264473 +sg225240 +g27 +sg225234 +S'color fish print' +p264474 +sg225230 +S'Small Porgies' +p264475 +sg225236 +S'1975' +p264476 +sa(dp264477 +g225232 +S'Robert Allan Cale' +p264478 +sg225240 +g27 +sg225234 +S'color intaglio on Arches paper' +p264479 +sg225230 +S'Sometime in the Morning' +p264480 +sg225236 +S'1971' +p264481 +sa(dp264482 +g225232 +S'Robert Allan Cale' +p264483 +sg225240 +g27 +sg225234 +S'soft-ground etching in blue-black' +p264484 +sg225230 +S'Sunflower' +p264485 +sg225236 +S'unknown date\n' +p264486 +sa(dp264487 +g225232 +S'Robert Allan Cale' +p264488 +sg225240 +g27 +sg225234 +S'color fish print on Arches paper' +p264489 +sg225230 +S'Two Orange Fish' +p264490 +sg225236 +S'1969' +p264491 +sa(dp264492 +g225232 +S'Louis H.S. Calewaert' +p264493 +sg225240 +g27 +sg225234 +S'etching' +p264494 +sg225230 +S'The Hollow' +p264495 +sg225236 +S'1914' +p264496 +sa(dp264497 +g225230 +S"Donato Dell' Antella" +p264498 +sg225232 +S'Jacques Callot' +p264499 +sg225234 +S'etching' +p264500 +sg225236 +S'1619' +p264501 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ab7.jpg' +p264502 +sg225240 +g27 +sa(dp264503 +g225232 +S'David Young Cameron' +p264504 +sg225240 +g27 +sg225234 +S'etching' +p264505 +sg225230 +S'Bookplate of Lessing and Edith Rosenwald' +p264506 +sg225236 +S'1930' +p264507 +sa(dp264508 +g225232 +S'David Young Cameron' +p264509 +sg225240 +g27 +sg225234 +S'etching' +p264510 +sg225230 +S'Bookplate of Lessing and Edith Rosenwald' +p264511 +sg225236 +S'1930' +p264512 +sa(dp264513 +g225232 +S'David Young Cameron' +p264514 +sg225240 +g27 +sg225234 +S'etching' +p264515 +sg225230 +S'Bookplate of Lessing and Edith Rosenwald' +p264516 +sg225236 +S'1930' +p264517 +sa(dp264518 +g225232 +S'French 20th Century' +p264519 +sg225240 +g27 +sg225234 +S'hand-colored etching on wove paper' +p264520 +sg225230 +S"Geneve (New Year's Card)" +p264521 +sg225236 +S'unknown date\n' +p264522 +sa(dp264523 +g225232 +S'Andrew Wyeth' +p264524 +sg225240 +g27 +sg225234 +S'pen and black ink on wove paper' +p264525 +sg225230 +S'Christmas Card' +p264526 +sg225236 +S'unknown date\n' +p264527 +sa(dp264528 +g225232 +S'David Young Cameron' +p264529 +sg225240 +g27 +sg225234 +S'etching' +p264530 +sg225230 +S'A Stairway in Genoa' +p264531 +sg225236 +S'1896' +p264532 +sa(dp264533 +g225230 +S'Aldus Pius Manutius' +p264534 +sg225232 +S'Giulio Campagnola' +p264535 +sg225234 +S', unknown date' +p264536 +sg225236 +S'\n' +p264537 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c887.jpg' +p264538 +sg225240 +g27 +sa(dp264539 +g225232 +S'Angelica Caporaso' +p264540 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p264541 +sg225230 +S'La Victoire' +p264542 +sg225236 +S'1973' +p264543 +sa(dp264544 +g225232 +S'Jose Manuel Capuletti' +p264545 +sg225240 +g27 +sg225234 +S'hand-colored lithograph' +p264546 +sg225230 +S'Dance Scene' +p264547 +sg225236 +S'1953' +p264548 +sa(dp264549 +g225230 +S'Pierre Puvis de Chavannes' +p264550 +sg225232 +S'Eug\xc3\xa8ne Carri\xc3\xa8re' +p264551 +sg225234 +S'lithograph' +p264552 +sg225236 +S'1897' +p264553 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f11.jpg' +p264554 +sg225240 +g27 +sa(dp264555 +g225232 +S'Paolo Carosone' +p264556 +sg225240 +g27 +sg225234 +S'mixed media' +p264557 +sg225230 +S'Untitled' +p264558 +sg225236 +S'1971' +p264559 +sa(dp264560 +g225230 +S'Voltaire' +p264561 +sg225232 +S'comte de Anne-Claude-Philippe de Tubi\xc3\xa8res Caylus' +p264562 +sg225234 +S'etching' +p264563 +sg225236 +S'unknown date\n' +p264564 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cee.jpg' +p264565 +sg225240 +g27 +sa(dp264566 +g225230 +S'Voltaire' +p264567 +sg225232 +S'comte de Anne-Claude-Philippe de Tubi\xc3\xa8res Caylus' +p264568 +sg225234 +S'etching' +p264569 +sg225236 +S'unknown date\n' +p264570 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008ced.jpg' +p264571 +sg225240 +g27 +sa(dp264572 +g225230 +S'Frontispiece' +p264573 +sg225232 +S'Thomas Cecil' +p264574 +sg225234 +S'engraving' +p264575 +sg225236 +S'published 1627' +p264576 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076af.jpg' +p264577 +sg225240 +g27 +sa(dp264578 +g225232 +S'Celestino Celestini' +p264579 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p264580 +sg225230 +S'Villa Entrance' +p264581 +sg225236 +S'unknown date\n' +p264582 +sa(dp264583 +g225232 +S'Lynn Chadwick' +p264584 +sg225240 +g27 +sg225234 +S'lithograph' +p264585 +sg225230 +S'Abstract Figure' +p264586 +sg225236 +S'1966' +p264587 +sa(dp264588 +g225232 +S'Marc Chagall' +p264589 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p264590 +sg225230 +S'Donkey with Bouquet of Flowers' +p264591 +sg225236 +S'1968' +p264592 +sa(dp264593 +g225232 +S'Marc Chagall' +p264594 +sg225240 +g27 +sg225234 +S'color etching' +p264595 +sg225230 +S'Window in the Studio, St. Paul' +p264596 +sg225236 +S'1968' +p264597 +sa(dp264598 +g225232 +S'Marc Chagall' +p264599 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p264600 +sg225230 +S'Cellist of the Village' +p264601 +sg225236 +S'unknown date\n' +p264602 +sa(dp264603 +g225232 +S'Marc Chagall' +p264604 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p264605 +sg225230 +S'Portrait' +p264606 +sg225236 +S'unknown date\n' +p264607 +sa(dp264608 +g225232 +S'Marc Chagall' +p264609 +sg225240 +g27 +sg225234 +S'etching' +p264610 +sg225230 +S'Self-Portrait' +p264611 +sg225236 +S'1968' +p264612 +sa(dp264613 +g225232 +S'Jean Charlot' +p264614 +sg225240 +g27 +sg225234 +S'1 vol: ill: 32 color lithographs; 1 drawing (1980.45.307a) and 14 progressive proofs bound in front of main text' +p264615 +sg225230 +S'Picture Book II' +p264616 +sg225236 +S'published 1973' +p264617 +sa(dp264618 +g225232 +S'Jean Charlot' +p264619 +sg225240 +g27 +sg225234 +S'red and black crayon over graphite' +p264620 +sg225230 +S'Terracotta' +p264621 +sg225236 +S'1973' +p264622 +sa(dp264623 +g225232 +S'Jean Charlot' +p264624 +sg225240 +g27 +sg225234 +S'color lithograph' +p264625 +sg225230 +S'Hawaiian Swimmer' +p264626 +sg225236 +S'1972' +p264627 +sa(dp264628 +g225232 +S'Michel Ciry' +p264629 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p264630 +sg225230 +S'Arlequin no.2' +p264631 +sg225236 +S'1966' +p264632 +sa(dp264633 +g225232 +S'Michel Ciry' +p264634 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p264635 +sg225230 +S'Harlequin' +p264636 +sg225236 +S'unknown date\n' +p264637 +sa(dp264638 +g225232 +S'Michel Ciry' +p264639 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p264640 +sg225230 +S'Hommage a Bernanos no.2' +p264641 +sg225236 +S'1966' +p264642 +sa(dp264643 +g225230 +S'Frontispiece to "The Laws and Acts of Parliament Made by King James I ..."' +p264644 +sg225232 +S'James Clark' +p264645 +sg225234 +S'engraving' +p264646 +sg225236 +S'unknown date\n' +p264647 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a00077d3.jpg' +p264648 +sg225240 +g27 +sa(dp264649 +g225232 +S'Jean Clerte' +p264650 +sg225240 +g27 +sg225234 +S'engraving' +p264651 +sg225230 +S'Horses' +p264652 +sg225236 +S'1954' +p264653 +sa(dp264654 +g225230 +S'The Calmady Children' +p264655 +sg225232 +S'Artist Information (' +p264656 +sg225234 +S'(artist after)' +p264657 +sg225236 +S'\n' +p264658 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe40.jpg' +p264659 +sg225240 +g27 +sa(dp264660 +g225230 +S'Clelia Cattaneo, Daughter of Marchesa Elena Grimaldi' +p264661 +sg225232 +S'Artist Information (' +p264662 +sg225234 +S'(artist after)' +p264663 +sg225236 +S'\n' +p264664 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe3f.jpg' +p264665 +sg225240 +g27 +sa(dp264666 +g225230 +S'Filippo Cattaneo, Son of Marchesa Elena Grimaldi' +p264667 +sg225232 +S'Artist Information (' +p264668 +sg225234 +S'(artist after)' +p264669 +sg225236 +S'\n' +p264670 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe3e.jpg' +p264671 +sg225240 +g27 +sa(dp264672 +g225230 +S'Fray Feliz Ortensio Palaucino' +p264673 +sg225232 +S'Artist Information (' +p264674 +sg225234 +S'(artist after)' +p264675 +sg225236 +S'\n' +p264676 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe3a.jpg' +p264677 +sg225240 +g27 +sa(dp264678 +g225230 +S'Philemon and Baucis' +p264679 +sg225232 +S'Artist Information (' +p264680 +sg225234 +S'(artist after)' +p264681 +sg225236 +S'\n' +p264682 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe45.jpg' +p264683 +sg225240 +g27 +sa(dp264684 +g225230 +S'Mrs. Graham' +p264685 +sg225232 +S'Artist Information (' +p264686 +sg225234 +S'(artist after)' +p264687 +sg225236 +S'\n' +p264688 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe44.jpg' +p264689 +sg225240 +g27 +sa(dp264690 +g225232 +S'Warrington Colescott' +p264691 +sg225240 +g27 +sg225234 +S'color intaglio' +p264692 +sg225230 +S'Dream of the Print Seller' +p264693 +sg225236 +S'1968' +p264694 +sa(dp264695 +g225232 +S'Francis Adams Comstock' +p264696 +sg225240 +g27 +sg225234 +S'lithograph' +p264697 +sg225230 +S'Ablington Manor Farm, Gloucestershire' +p264698 +sg225236 +S'unknown date\n' +p264699 +sa(dp264700 +g225232 +S'Francis Adams Comstock' +p264701 +sg225240 +g27 +sg225234 +S'lithograph' +p264702 +sg225230 +S'Still Life' +p264703 +sg225236 +S'unknown date\n' +p264704 +sa(dp264705 +g225232 +S'Colin Connor' +p264706 +sg225240 +g27 +sg225234 +S'intaglio' +p264707 +sg225230 +S'Bar-None' +p264708 +sg225236 +S'1972' +p264709 +sa(dp264710 +g225232 +S'Colin Connor' +p264711 +sg225240 +g27 +sg225234 +S'intaglio' +p264712 +sg225230 +S'Bar-Two' +p264713 +sg225236 +S'1972' +p264714 +sa(dp264715 +g225232 +S'Colin Connor' +p264716 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p264717 +sg225230 +S'Cloud-Making Machine' +p264718 +sg225236 +S'1967' +p264719 +sa(dp264720 +g225232 +S'Colin Connor' +p264721 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p264722 +sg225230 +S"P-40's" +p264723 +sg225236 +S'1966' +p264724 +sa(dp264725 +g225232 +S'Colin Connor' +p264726 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p264727 +sg225230 +S'White Cars' +p264728 +sg225236 +S'1966' +p264729 +sa(dp264730 +g225232 +S'Robert Freemont Conover' +p264731 +sg225240 +g27 +sg225234 +S'color woodcut' +p264732 +sg225230 +S'Cityscape' +p264733 +sg225236 +S'1957' +p264734 +sa(dp264735 +g225230 +S'Physalis Alkekengi' +p264736 +sg225232 +S'Artist Information (' +p264737 +sg225234 +S'(artist)' +p264738 +sg225236 +S'\n' +p264739 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d7d6.jpg' +p264740 +sg225240 +g27 +sa(dp264741 +g225230 +S'Senecio viscosus' +p264742 +sg225232 +S'Artist Information (' +p264743 +sg225234 +S'(artist)' +p264744 +sg225236 +S'\n' +p264745 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d7d5.jpg' +p264746 +sg225240 +g27 +sa(dp264747 +g225230 +S'Chaerophyllum hirsistum' +p264748 +sg225232 +S'Artist Information (' +p264749 +sg225234 +S'(artist)' +p264750 +sg225236 +S'\n' +p264751 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d7d7.jpg' +p264752 +sg225240 +g27 +sa(dp264753 +g225230 +S'Sonchus arvensis' +p264754 +sg225232 +S'Artist Information (' +p264755 +sg225234 +S'(artist)' +p264756 +sg225236 +S'\n' +p264757 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d7d4.jpg' +p264758 +sg225240 +g27 +sa(dp264759 +g225230 +S'Polygonatum multiflorum Monch' +p264760 +sg225232 +S'Artist Information (' +p264761 +sg225234 +S'(artist)' +p264762 +sg225236 +S'\n' +p264763 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d7d3.jpg' +p264764 +sg225240 +g27 +sa(dp264765 +g225232 +S'Mary Corita Kent' +p264766 +sg225240 +g27 +sg225234 +S', 1952' +p264767 +sg225230 +S'At Cana of Galilee' +p264768 +sg225236 +S'\n' +p264769 +sa(dp264770 +g225232 +S'Stephen Gooden' +p264771 +sg225240 +g27 +sg225234 +S'engraving in brown on wove paper' +p264772 +sg225230 +S'The Magi (Christmas Card from Margaret and Geoffrey Keynes)' +p264773 +sg225236 +S'1926/1928' +p264774 +sa(dp264775 +g225232 +S'Thomas Browne Cornell' +p264776 +sg225240 +g27 +sg225234 +S'etching' +p264777 +sg225230 +S'Michelangelo' +p264778 +sg225236 +S'1964' +p264779 +sa(dp264780 +g225232 +S'Thomas Browne Cornell' +p264781 +sg225240 +g27 +sg225234 +S'etched zinc plate' +p264782 +sg225230 +S'Michelangelo' +p264783 +sg225236 +S'1964' +p264784 +sa(dp264785 +g225232 +S'Pierre Courtin' +p264786 +sg225240 +g27 +sg225234 +S'color engraving (zinc) printed in relief' +p264787 +sg225230 +S'Gros mot' +p264788 +sg225236 +S'1959' +p264789 +sa(dp264790 +g225230 +S"L'Assiette au Beurre" +p264791 +sg225232 +S'Edouard Couturier' +p264792 +sg225234 +S'periodical illustrated with color lithographs' +p264793 +sg225236 +S'published 1902' +p264794 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091bf.jpg' +p264795 +sg225240 +g27 +sa(dp264796 +g225232 +S'Earl Stetson Crawford' +p264797 +sg225240 +g27 +sg225234 +S'drypoint (etching?)' +p264798 +sg225230 +S'Navicello, Harbor of Menton, France' +p264799 +sg225236 +S'1958' +p264800 +sa(dp264801 +g225230 +S'Road Scene, Hethersett' +p264802 +sg225232 +S'John Crome' +p264803 +sg225234 +S'etching on chine applique' +p264804 +sg225236 +S'unknown date\n' +p264805 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007df1.jpg' +p264806 +sg225240 +g27 +sa(dp264807 +g225230 +S'Road with a Farmhouse on the Right' +p264808 +sg225232 +S'John Crome' +p264809 +sg225234 +S'soft-ground etching and drypoint on chine applique' +p264810 +sg225236 +S'1806' +p264811 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007e/a0007e03.jpg' +p264812 +sg225240 +g27 +sa(dp264813 +g225230 +S'Tree on a Mound' +p264814 +sg225232 +S'John Crome' +p264815 +sg225234 +S'etching on chine applique' +p264816 +sg225236 +S'unknown date\n' +p264817 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dde.jpg' +p264818 +sg225240 +g27 +sa(dp264819 +g225230 +S'Anticipated Effects of the Tailors\' "Strike"' +p264820 +sg225232 +S'George Cruikshank' +p264821 +sg225234 +S'etching (restrike)' +p264822 +sg225236 +S'1834' +p264823 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c80.jpg' +p264824 +sg225240 +g27 +sa(dp264825 +g225232 +S'Ruth Cyril' +p264826 +sg225240 +g27 +sg225234 +S'soft-ground etching in yellow' +p264827 +sg225230 +S'Goldenrod' +p264828 +sg225236 +S'unknown date\n' +p264829 +sa(dp264830 +g225232 +S'Ruth Cyril' +p264831 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p264832 +sg225230 +S'Moonlit Pond' +p264833 +sg225236 +S'1969' +p264834 +sa(dp264835 +g225230 +S'John Flaxman' +p264836 +sg225232 +S'Artist Information (' +p264837 +sg225234 +S'(artist after)' +p264838 +sg225236 +S'\n' +p264839 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dcc.jpg' +p264840 +sg225240 +g27 +sa(dp264841 +g225230 +S'Prince Hoare' +p264842 +sg225232 +S'Artist Information (' +p264843 +sg225234 +S'(artist after)' +p264844 +sg225236 +S'\n' +p264845 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dab.jpg' +p264846 +sg225240 +g27 +sa(dp264847 +g225232 +S'Charles Vernier' +p264848 +sg225240 +g27 +sg225234 +S'lithograph' +p264849 +sg225230 +S'Cover Illustration for "Ces Bons Autrichiens"' +p264850 +sg225236 +S'1859' +p264851 +sa(dp264852 +g225230 +S'Ces Bons Autrichiens' +p264853 +sg225232 +S'Artist Information (' +p264854 +sg225234 +S'(artist)' +p264855 +sg225236 +S'\n' +p264856 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a00099ce.jpg' +p264857 +sg225240 +g27 +sa(dp264858 +g225232 +S'Charles Vernier' +p264859 +sg225240 +g27 +sg225234 +S'lithograph' +p264860 +sg225230 +S'Title Page for "Ces Bons Autrichiens"' +p264861 +sg225236 +S'1859' +p264862 +sa(dp264863 +g225232 +S'Honor\xc3\xa9 Daumier' +p264864 +sg225240 +g27 +sg225234 +S'lithograph' +p264865 +sg225230 +S"La Situation de l'Italie" +p264866 +sg225236 +S'1859' +p264867 +sa(dp264868 +g225232 +S'Honor\xc3\xa9 Daumier' +p264869 +sg225240 +g27 +sg225234 +S'lithograph' +p264870 +sg225230 +S"Le R\xc3\xa9veil de l'Italie" +p264871 +sg225236 +S'1859' +p264872 +sa(dp264873 +g225232 +S'Charles Vernier' +p264874 +sg225240 +g27 +sg225234 +S'lithograph' +p264875 +sg225230 +S'A Novare' +p264876 +sg225236 +S'1859' +p264877 +sa(dp264878 +g225232 +S'Honor\xc3\xa9 Daumier' +p264879 +sg225240 +g27 +sg225234 +S'lithograph' +p264880 +sg225230 +S'Un Triomphateur \xc3\xa0 Milan' +p264881 +sg225236 +S'1859' +p264882 +sa(dp264883 +g225232 +S'Honor\xc3\xa9 Daumier' +p264884 +sg225240 +g27 +sg225234 +S'lithograph' +p264885 +sg225230 +S"Ils ont peur de l'eau..." +p264886 +sg225236 +S'1859' +p264887 +sa(dp264888 +g225232 +S'Honor\xc3\xa9 Daumier' +p264889 +sg225240 +g27 +sg225234 +S'lithograph' +p264890 +sg225230 +S'Tarteifle!...' +p264891 +sg225236 +S'1859' +p264892 +sa(dp264893 +g225232 +S'Charles Vernier' +p264894 +sg225240 +g27 +sg225234 +S'lithograph' +p264895 +sg225230 +S"V'la mossieu Giulay nettoye" +p264896 +sg225236 +S'1859' +p264897 +sa(dp264898 +g225232 +S'Charles Vernier' +p264899 +sg225240 +g27 +sg225234 +S'lithograph' +p264900 +sg225230 +S"Mais cette la caisse n'est pas a vous!" +p264901 +sg225236 +S'1859' +p264902 +sa(dp264903 +g225232 +S'Honor\xc3\xa9 Daumier' +p264904 +sg225240 +g27 +sg225234 +S'lithograph' +p264905 +sg225230 +S'Tu ne lui as rien laiss\xc3\xa9, \xc3\xa0 ce fermier?...' +p264906 +sg225236 +S'1859' +p264907 +sa(dp264908 +g225232 +S'Charles Vernier' +p264909 +sg225240 +g27 +sg225234 +S'lithograph' +p264910 +sg225230 +S"Comment... vous ne comprenez donc pas ce qu'il y a d'infume a fouetter une femme..." +p264911 +sg225236 +S'1859' +p264912 +sa(dp264913 +g225232 +S'Honor\xc3\xa9 Daumier' +p264914 +sg225240 +g27 +sg225234 +S'lithograph' +p264915 +sg225230 +S'Le G\xc3\xa9n\xc3\xa9ral Giulay taillant ses ennemis' +p264916 +sg225236 +S'1859' +p264917 +sa(dp264918 +g225232 +S'Honor\xc3\xa9 Daumier' +p264919 +sg225240 +g27 +sg225234 +S'lithograph' +p264920 +sg225230 +S'A Milan... vous oubliez la caisse!...' +p264921 +sg225236 +S'1859' +p264922 +sa(dp264923 +g225232 +S'Honor\xc3\xa9 Daumier' +p264924 +sg225240 +g27 +sg225234 +S'lithograph' +p264925 +sg225230 +S"Tu viens m'annoncer la victoire..." +p264926 +sg225236 +S'1859' +p264927 +sa(dp264928 +g225232 +S'Charles Vernier' +p264929 +sg225240 +g27 +sg225234 +S'lithograph' +p264930 +sg225230 +S'Cre-nom! mon capitaine... quelle cavalerie, que la cavalerie autrichienne!!' +p264931 +sg225236 +S'1859' +p264932 +sa(dp264933 +g225232 +S'Honor\xc3\xa9 Daumier' +p264934 +sg225240 +g27 +sg225234 +S'lithograph' +p264935 +sg225230 +S'Venant annoncer... le r\xc3\xa9sultat... de Magenta' +p264936 +sg225236 +S'1859' +p264937 +sa(dp264938 +g225232 +S'Honor\xc3\xa9 Daumier' +p264939 +sg225240 +g27 +sg225234 +S'lithograph' +p264940 +sg225230 +S"Tiens... y m'semble que j'vois la-bas..." +p264941 +sg225236 +S'1859' +p264942 +sa(dp264943 +g225232 +S'Honor\xc3\xa9 Daumier' +p264944 +sg225240 +g27 +sg225234 +S'lithograph' +p264945 +sg225230 +S"Notre retraite s'est op\xc3\xa9r\xc3\xa9e... dans l'ordre" +p264946 +sg225236 +S'1859' +p264947 +sa(dp264948 +g225232 +S'Honor\xc3\xa9 Daumier' +p264949 +sg225240 +g27 +sg225234 +S'lithograph' +p264950 +sg225230 +S'Tenez g\xc3\xa9n\xc3\xa9ral...' +p264951 +sg225236 +S'1859' +p264952 +sa(dp264953 +g225232 +S'Honor\xc3\xa9 Daumier' +p264954 +sg225240 +g27 +sg225234 +S'lithograph' +p264955 +sg225230 +S"Le G\xc3\xa9n\xc3\xa9ral Schlagman, s'imaginant que le costume..." +p264956 +sg225236 +S'1859' +p264957 +sa(dp264958 +g225232 +S'Charles Vernier' +p264959 +sg225240 +g27 +sg225234 +S'lithograph' +p264960 +sg225230 +S'Vous permettez...' +p264961 +sg225236 +S'1859' +p264962 +sa(dp264963 +g225232 +S'Honor\xc3\xa9 Daumier' +p264964 +sg225240 +g27 +sg225234 +S'lithograph' +p264965 +sg225230 +S'Pauvre Giulay!... repouss\xc3\xa9 de partout...' +p264966 +sg225236 +S'1859' +p264967 +sa(dp264968 +g225232 +S'Honor\xc3\xa9 Daumier' +p264969 +sg225240 +g27 +sg225234 +S'lithograph' +p264970 +sg225230 +S'Mars... je vous ai fait bien peur...' +p264971 +sg225236 +S'1859' +p264972 +sa(dp264973 +g225232 +S'Charles Vernier' +p264974 +sg225240 +g27 +sg225234 +S'lithograph' +p264975 +sg225230 +S'Une Ruse de Guerre' +p264976 +sg225236 +S'1859' +p264977 +sa(dp264978 +g225232 +S'Honor\xc3\xa9 Daumier' +p264979 +sg225240 +g27 +sg225234 +S'lithograph' +p264980 +sg225230 +S'Tiens... tu te mets en autrichien...' +p264981 +sg225236 +S'1859' +p264982 +sa(dp264983 +g225232 +S'Honor\xc3\xa9 Daumier' +p264984 +sg225240 +g27 +sg225234 +S'lithograph' +p264985 +sg225230 +S'Le Vieux g\xc3\xa9n\xc3\xa9ral Giulay' +p264986 +sg225236 +S'1859' +p264987 +sa(dp264988 +g225232 +S'Honor\xc3\xa9 Daumier' +p264989 +sg225240 +g27 +sg225234 +S'lithograph' +p264990 +sg225230 +S'Entr\xc3\xa9e en campagne du g\xc3\xa9n\xc3\xa9ral Schlick' +p264991 +sg225236 +S'1859' +p264992 +sa(dp264993 +g225232 +S'Honor\xc3\xa9 Daumier' +p264994 +sg225240 +g27 +sg225234 +S'lithograph' +p264995 +sg225230 +S"Le G\xc3\xa9n\xc3\xa9ral... passant l'inspection..." +p264996 +sg225236 +S'1859' +p264997 +sa(dp264998 +g225232 +S'Honor\xc3\xa9 Daumier' +p264999 +sg225240 +g27 +sg225234 +S'lithograph' +p265000 +sg225230 +S"A Mantoue - Comment... voici qu'ils viennent..." +p265001 +sg225236 +S'1859' +p265002 +sa(dp265003 +g225230 +S'A qui le tour?' +p265004 +sg225232 +S'Honor\xc3\xa9 Daumier' +p265005 +sg225234 +S'gillotype on newsprint' +p265006 +sg225236 +S'1870' +p265007 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000953d.jpg' +p265008 +sg225240 +g27 +sa(dp265009 +g225230 +S"C'est dangereux, la p\xc3\xaache \xc3\xa0 l'\xc3\xa9pervier" +p265010 +sg225232 +S'Honor\xc3\xa9 Daumier' +p265011 +sg225234 +S'gillotype on newsprint' +p265012 +sg225236 +S'1871' +p265013 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000955e.jpg' +p265014 +sg225240 +g27 +sa(dp265015 +g225230 +S'Ce que certains journaux appeleraient...' +p265016 +sg225232 +S'Honor\xc3\xa9 Daumier' +p265017 +sg225234 +S'gillotype on newsprint' +p265018 +sg225236 +S'1870' +p265019 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a8c.jpg' +p265020 +sg225240 +g27 +sa(dp265021 +g225230 +S'D\xc3\xa9cid\xc3\xa9ment on ne peut pas...' +p265022 +sg225232 +S'Honor\xc3\xa9 Daumier' +p265023 +sg225234 +S'gillotype on newsprint' +p265024 +sg225236 +S'1870' +p265025 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a8d.jpg' +p265026 +sg225240 +g27 +sa(dp265027 +g225230 +S"Histoire d'un r\xc3\xa8gne" +p265028 +sg225232 +S'Honor\xc3\xa9 Daumier' +p265029 +sg225234 +S'gillotype on newsprint' +p265030 +sg225236 +S'1870' +p265031 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009526.jpg' +p265032 +sg225240 +g27 +sa(dp265033 +g225230 +S'La paix a tout prix' +p265034 +sg225232 +S'Honor\xc3\xa9 Daumier' +p265035 +sg225234 +S'gillotype on newsprint' +p265036 +sg225236 +S'1870' +p265037 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009539.jpg' +p265038 +sg225240 +g27 +sa(dp265039 +g225230 +S'Le couronnement de son \xc3\xa9difice' +p265040 +sg225232 +S'Honor\xc3\xa9 Daumier' +p265041 +sg225234 +S'gillotype on newsprint' +p265042 +sg225236 +S'1870' +p265043 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009532.jpg' +p265044 +sg225240 +g27 +sa(dp265045 +g225230 +S'Monsieur sera tr\xc3\xa8s bien ici...' +p265046 +sg225232 +S'Honor\xc3\xa9 Daumier' +p265047 +sg225234 +S'gillotype on newsprint' +p265048 +sg225236 +S'1870' +p265049 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009535.jpg' +p265050 +sg225240 +g27 +sa(dp265051 +g225230 +S'Nous ne nous serions jamais dout\xc3\xa9 tout de m\xc3\xaame...' +p265052 +sg225232 +S'Honor\xc3\xa9 Daumier' +p265053 +sg225234 +S'gillotype on newsprint' +p265054 +sg225236 +S'1870' +p265055 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000953e.jpg' +p265056 +sg225240 +g27 +sa(dp265057 +g225230 +S'Trop \xc3\xa9troit pour deux' +p265058 +sg225232 +S'Honor\xc3\xa9 Daumier' +p265059 +sg225234 +S'gillotype on newsprint' +p265060 +sg225236 +S'1870' +p265061 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000953a.jpg' +p265062 +sg225240 +g27 +sa(dp265063 +g225230 +S"Vous n'avez pas besoin de me rappeler ses titres..." +p265064 +sg225232 +S'Honor\xc3\xa9 Daumier' +p265065 +sg225234 +S'gillotype on newsprint' +p265066 +sg225236 +S'1871' +p265067 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000954f.jpg' +p265068 +sg225240 +g27 +sa(dp265069 +g225232 +S'Larry Day' +p265070 +sg225240 +g27 +sg225234 +S'graphite' +p265071 +sg225230 +S'After Mantegna' +p265072 +sg225236 +S'unknown date\n' +p265073 +sa(dp265074 +g225232 +S'Worden Day' +p265075 +sg225240 +g27 +sg225234 +S'color woodcut' +p265076 +sg225230 +S'Mandala II' +p265077 +sg225236 +S'unknown date\n' +p265078 +sa(dp265079 +g225232 +S'Nicholas Brice Dean' +p265080 +sg225240 +g27 +sg225234 +S'photo-screen print in green, yellow, and red' +p265081 +sg225230 +S"True's Window" +p265082 +sg225236 +S'1971' +p265083 +sa(dp265084 +g225230 +S'Le Corps de Garde' +p265085 +sg225232 +S'Alexandre-Gabriel Decamps' +p265086 +sg225234 +S'etching on chine applique' +p265087 +sg225236 +S'in or after 1834' +p265088 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009584.jpg' +p265089 +sg225240 +g27 +sa(dp265090 +g225230 +S'Le Corps de Garde' +p265091 +sg225232 +S'Alexandre-Gabriel Decamps' +p265092 +sg225234 +S'etching' +p265093 +sg225236 +S'in or after 1834' +p265094 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009587.jpg' +p265095 +sg225240 +g27 +sa(dp265096 +g225230 +S'Un Corps de Garde' +p265097 +sg225232 +S'Alexandre-Gabriel Decamps' +p265098 +sg225234 +S'transfer lithograph' +p265099 +sg225236 +S'unknown date\n' +p265100 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009585.jpg' +p265101 +sg225240 +g27 +sa(dp265102 +g225232 +S'John Silk Deckard' +p265103 +sg225240 +g27 +sg225234 +S'drypoint' +p265104 +sg225230 +S'Didactic Dance' +p265105 +sg225236 +S'unknown date\n' +p265106 +sa(dp265107 +g225232 +S'Germaine Marguerite de Coster' +p265108 +sg225240 +g27 +sg225234 +S'drypoint and engraving' +p265109 +sg225230 +S'La Roue tourne aux Invalides' +p265110 +sg225236 +S'unknown date\n' +p265111 +sa(dp265112 +g225230 +S'Alphonse Hirsch' +p265113 +sg225232 +S'Edgar Degas' +p265114 +sg225234 +S'drypoint and aquatint [restrike]' +p265115 +sg225236 +S'1875' +p265116 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a000958f.jpg' +p265117 +sg225240 +g27 +sa(dp265118 +g225230 +S'Alphonse Hirsch' +p265119 +sg225232 +S'Edgar Degas' +p265120 +sg225234 +S'drypoint and aquatint [restrike]' +p265121 +sg225236 +S'1875' +p265122 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009801.jpg' +p265123 +sg225240 +g27 +sa(dp265124 +g225230 +S'The Queen Tries to Console Hamlet (Act I, Scene II)' +p265125 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p265126 +sg225234 +S'lithograph' +p265127 +sg225236 +S'1834' +p265128 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a00095ac.jpg' +p265129 +sg225240 +g27 +sa(dp265130 +g225232 +S'Eug\xc3\xa8ne Delacroix' +p265131 +sg225240 +g27 +sg225234 +S'portfolio with 16 lithographs, text, and cover' +p265132 +sg225230 +S'Hamlet' +p265133 +sg225236 +S'published 1864' +p265134 +sa(dp265135 +g225230 +S'Hamlet Wishes to Follow the Ghost of his Father (Act I, Scene IV)' +p265136 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p265137 +sg225234 +S'lithograph' +p265138 +sg225236 +S'1835' +p265139 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a00095ae.jpg' +p265140 +sg225240 +g27 +sa(dp265141 +g225230 +S'The Ghost on the Terrace (Act I, Scene V)' +p265142 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p265143 +sg225234 +S'lithograph' +p265144 +sg225236 +S'1843' +p265145 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a00095aa.jpg' +p265146 +sg225240 +g27 +sa(dp265147 +g225230 +S'Polonius and Hamlet (Act II, Scene II)' +p265148 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p265149 +sg225234 +S'lithograph' +p265150 +sg225236 +S'1834/1843' +p265151 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a00095a7.jpg' +p265152 +sg225240 +g27 +sa(dp265153 +g225230 +S'Hamlet and Ophelia (Act III, Scene I)' +p265154 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p265155 +sg225234 +S'lithograph' +p265156 +sg225236 +S'1834/1843' +p265157 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a00095ab.jpg' +p265158 +sg225240 +g27 +sa(dp265159 +g225230 +S'Hamlet and Guildenstern (Act III, Scene II)' +p265160 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p265161 +sg225234 +S'lithograph' +p265162 +sg225236 +S'1834/1843' +p265163 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a00095b0.jpg' +p265164 +sg225240 +g27 +sa(dp265165 +g225230 +S"Players Enacting the Poisoning of Hamlet's Father (Act III, Scne II)" +p265166 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p265167 +sg225234 +S'lithograph' +p265168 +sg225236 +S'1835' +p265169 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a00095b3.jpg' +p265170 +sg225240 +g27 +sa(dp265171 +g225230 +S'Hamlet is Tempted to Kill the King (Act III, Scene III)' +p265172 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p265173 +sg225234 +S'lithograph' +p265174 +sg225236 +S'1834/1843' +p265175 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a00095a6.jpg' +p265176 +sg225240 +g27 +sa(dp265177 +g225230 +S'The Murder of Polonius (Act III, Scene IV)' +p265178 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p265179 +sg225234 +S'lithograph' +p265180 +sg225236 +S'1834/1843' +p265181 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a00095a9.jpg' +p265182 +sg225240 +g27 +sa(dp265183 +g225230 +S'Hamlet and the Queen (Act III, Scene IV)' +p265184 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p265185 +sg225234 +S'lithograph' +p265186 +sg225236 +S'1834' +p265187 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a00095a5.jpg' +p265188 +sg225240 +g27 +sa(dp265189 +g225230 +S'Hamlet and the Body of Polonius (Act III, Scene IV)' +p265190 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p265191 +sg225234 +S'lithograph' +p265192 +sg225236 +S'1835' +p265193 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a00095a4.jpg' +p265194 +sg225240 +g27 +sa(dp265195 +g225230 +S'The Song of Ophelia (Act IV, Scene V)' +p265196 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p265197 +sg225234 +S'lithograph' +p265198 +sg225236 +S'1834' +p265199 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a00095b2.jpg' +p265200 +sg225240 +g27 +sa(dp265201 +g225230 +S'The Death of Ophelia (Act IV, Scene VII)' +p265202 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p265203 +sg225234 +S'lithograph' +p265204 +sg225236 +S'1843' +p265205 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a00095a8.jpg' +p265206 +sg225240 +g27 +sa(dp265207 +g225230 +S'Hamlet and Horatio before the Gravediggers (Act V, Scene I)' +p265208 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p265209 +sg225234 +S'lithograph' +p265210 +sg225236 +S'1843' +p265211 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a00095af.jpg' +p265212 +sg225240 +g27 +sa(dp265213 +g225230 +S'Hamlet and Laertes in the Grave of Ophelia (Act V, Scene I)' +p265214 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p265215 +sg225234 +S'lithograph' +p265216 +sg225236 +S'1843' +p265217 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a00095ad.jpg' +p265218 +sg225240 +g27 +sa(dp265219 +g225230 +S'The Death of Hamlet (Act V, Scene II)' +p265220 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p265221 +sg225234 +S'lithograph' +p265222 +sg225236 +S'1843' +p265223 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a00095b1.jpg' +p265224 +sg225240 +g27 +sa(dp265225 +g225230 +S"Jewish Woman of Algiers (Juive d'Alger et une rue \xc3\xa0 Alger)" +p265226 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p265227 +sg225234 +S'lithograph' +p265228 +sg225236 +S'1838' +p265229 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009888.jpg' +p265230 +sg225240 +g27 +sa(dp265231 +g225230 +S'Vercing\xc3\xa9torix' +p265232 +sg225232 +S'Eug\xc3\xa8ne Delacroix' +p265233 +sg225234 +S'lithograph' +p265234 +sg225236 +S'1829' +p265235 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a00095a3.jpg' +p265236 +sg225240 +g27 +sa(dp265237 +g225230 +S'Place du Tertre' +p265238 +sg225232 +S'Auguste Del\xc3\xa2tre' +p265239 +sg225234 +S'etching in brown' +p265240 +sg225236 +S'unknown date\n' +p265241 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000985b.jpg' +p265242 +sg225240 +g27 +sa(dp265243 +g225232 +S'Sonia Delaunay' +p265244 +sg225240 +g27 +sg225234 +S'pochoir print retouched with black chalk on wove paper' +p265245 +sg225230 +S'Untitled Abstraction' +p265246 +sg225236 +S'unknown date\n' +p265247 +sa(dp265248 +g225232 +S'John H. De Pol' +p265249 +sg225240 +g27 +sg225234 +S'wood engraving' +p265250 +sg225230 +S'County Derry' +p265251 +sg225236 +S'1959' +p265252 +sa(dp265253 +g225232 +S'Arthur Deshaies' +p265254 +sg225240 +g27 +sg225234 +S'lucite engraving? on bright pink prepared paper' +p265255 +sg225230 +S'The Contemporaries - Noel' +p265256 +sg225236 +S'1956' +p265257 +sa(dp265258 +g225230 +S'The Steps of Age (Trap des Ouderdoms)' +p265259 +sg225232 +S'Hendrik Frans Diamaer' +p265260 +sg225234 +S'etching' +p265261 +sg225236 +S'unknown date\n' +p265262 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d63b.jpg' +p265263 +sg225240 +g27 +sa(dp265264 +g225232 +S'Jozsef Domjan' +p265265 +sg225240 +g27 +sg225234 +S'woodcut in red' +p265266 +sg225230 +S'Homage to Durer' +p265267 +sg225236 +S'1972' +p265268 +sa(dp265269 +g225232 +S'Jozsef Domjan' +p265270 +sg225240 +g27 +sg225234 +S'color woodcut' +p265271 +sg225230 +S'Homage to Durer' +p265272 +sg225236 +S'1972' +p265273 +sa(dp265274 +g225232 +S'Piero Dorazio' +p265275 +sg225240 +g27 +sg225234 +S'color aquatint' +p265276 +sg225230 +S'JND (Just Noticeable Difference)' +p265277 +sg225236 +S'1964' +p265278 +sa(dp265279 +g225232 +S'G. Douglas' +p265280 +sg225240 +g27 +sg225234 +S'hand-colored etching' +p265281 +sg225230 +S'Lepcha Boy' +p265282 +sg225236 +S'unknown date\n' +p265283 +sa(dp265284 +g225232 +S'G. Douglas' +p265285 +sg225240 +g27 +sg225234 +S'hand-colored etching' +p265286 +sg225230 +S'Tibetan Beggar-Woman' +p265287 +sg225236 +S'unknown date\n' +p265288 +sa(dp265289 +g225232 +S'G. Douglas' +p265290 +sg225240 +g27 +sg225234 +S'hand-colored etching' +p265291 +sg225230 +S'Tibetan Gypsy Woman' +p265292 +sg225236 +S'unknown date\n' +p265293 +sa(dp265294 +g225232 +S'G. Douglas' +p265295 +sg225240 +g27 +sg225234 +S'hand-colored etching' +p265296 +sg225230 +S'Tibetan Lama Blowing a Conch Shell' +p265297 +sg225236 +S'unknown date\n' +p265298 +sa(dp265299 +g225232 +S'G. Douglas' +p265300 +sg225240 +g27 +sg225234 +S'etching' +p265301 +sg225230 +S'Tibetan Mendicant Lama, Darjeeling' +p265302 +sg225236 +S'unknown date\n' +p265303 +sa(dp265304 +g225230 +S'The White Wheel of W.T.H.' +p265305 +sg225232 +S'John E. Dowell, Jr.' +p265306 +sg225234 +S'etching' +p265307 +sg225236 +S'1967' +p265308 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a87.jpg' +p265309 +sg225240 +g27 +sa(dp265310 +g225232 +S'John E. Dowell, Jr.' +p265311 +sg225240 +g27 +sg225234 +S'color lithograph' +p265312 +sg225230 +S'Title Page for "Triangular Fugue"' +p265313 +sg225236 +S'1965' +p265314 +sa(dp265315 +g225232 +S'John E. Dowell, Jr.' +p265316 +sg225240 +g27 +sg225234 +S'portfolio w/ 9 color lithographs 1980.45.440 in black only) incl. title page and colophon' +p265317 +sg225230 +S'Triangular Fugue: A Suite of Eight Lithographs by John Dowell, Jr.' +p265318 +sg225236 +S'1965' +p265319 +sa(dp265320 +g225232 +S'John E. Dowell, Jr.' +p265321 +sg225240 +g27 +sg225234 +S'color lithograph' +p265322 +sg225230 +S'Triangular Fugue I' +p265323 +sg225236 +S'1965' +p265324 +sa(dp265325 +g225232 +S'John E. Dowell, Jr.' +p265326 +sg225240 +g27 +sg225234 +S'color lithograph' +p265327 +sg225230 +S'Triangular Fugue II' +p265328 +sg225236 +S'1965' +p265329 +sa(dp265330 +g225232 +S'John E. Dowell, Jr.' +p265331 +sg225240 +g27 +sg225234 +S'color lithograph' +p265332 +sg225230 +S'Triangular Fugue III' +p265333 +sg225236 +S'1965' +p265334 +sa(dp265335 +g225232 +S'John E. Dowell, Jr.' +p265336 +sg225240 +g27 +sg225234 +S'color lithograph' +p265337 +sg225230 +S'Triangular Fugue IV' +p265338 +sg225236 +S'1965' +p265339 +sa(dp265340 +g225232 +S'John E. Dowell, Jr.' +p265341 +sg225240 +g27 +sg225234 +S'color lithograph' +p265342 +sg225230 +S'Triangular Fugue V' +p265343 +sg225236 +S'1965' +p265344 +sa(dp265345 +g225232 +S'John E. Dowell, Jr.' +p265346 +sg225240 +g27 +sg225234 +S'color lithograph' +p265347 +sg225230 +S'Triangular Fugue VI' +p265348 +sg225236 +S'1965' +p265349 +sa(dp265350 +g225232 +S'John E. Dowell, Jr.' +p265351 +sg225240 +g27 +sg225234 +S'color lithograph' +p265352 +sg225230 +S'Triangular Fugue VII' +p265353 +sg225236 +S'1965' +p265354 +sa(dp265355 +g225232 +S'John E. Dowell, Jr.' +p265356 +sg225240 +g27 +sg225234 +S'lithograph in black' +p265357 +sg225230 +S'Triangular Fugue VIII' +p265358 +sg225236 +S'1965' +p265359 +sa(dp265360 +g225232 +S'John E. Dowell, Jr.' +p265361 +sg225240 +g27 +sg225234 +S'color lithograph' +p265362 +sg225230 +S'Colophon for "Triangular Fugue"' +p265363 +sg225236 +S'1965' +p265364 +sa(dp265365 +g225232 +S'Stella Drabkin' +p265366 +sg225240 +g27 +sg225234 +S'aquatint' +p265367 +sg225230 +S'Conductor' +p265368 +sg225236 +S'1948' +p265369 +sa(dp265370 +g225232 +S'Stella Drabkin' +p265371 +sg225240 +g27 +sg225234 +S'monotype (plastic plate) on canvas' +p265372 +sg225230 +S'Conductor' +p265373 +sg225236 +S'1948/1949' +p265374 +sa(dp265375 +g225232 +S'Stella Drabkin' +p265376 +sg225240 +g27 +sg225234 +S'aquatint' +p265377 +sg225230 +S'Phantoms' +p265378 +sg225236 +S'c. 1945' +p265379 +sa(dp265380 +g225232 +S'Werner Drewes' +p265381 +sg225240 +g27 +sg225234 +S'color woodcut on Goyu paper' +p265382 +sg225230 +S'Blue Forest' +p265383 +sg225236 +S'1958' +p265384 +sa(dp265385 +g225232 +S'Werner Drewes' +p265386 +sg225240 +g27 +sg225234 +S'color woodcut' +p265387 +sg225230 +S'Manhattan' +p265388 +sg225236 +S'1955' +p265389 +sa(dp265390 +g225232 +S'Helen Siegl' +p265391 +sg225240 +g27 +sg225234 +S'colored woodcut on wove paper' +p265392 +sg225230 +S'Exhibition Catalogue' +p265393 +sg225236 +S'1966' +p265394 +sa(dp265395 +g225230 +S'Pastures of Limousin (Pacages du Limousin)' +p265396 +sg225232 +S'Jules Dupr\xc3\xa9' +p265397 +sg225234 +S'lithograph' +p265398 +sg225236 +S'1835' +p265399 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009892.jpg' +p265400 +sg225240 +g27 +sa(dp265401 +g225230 +S'Mill of the Sologne (Moulin de la Sologne)' +p265402 +sg225232 +S'Jules Dupr\xc3\xa9' +p265403 +sg225234 +S'lithograph' +p265404 +sg225236 +S'1835' +p265405 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009894.jpg' +p265406 +sg225240 +g27 +sa(dp265407 +g225230 +S'View in Normandy (Vue prise en Normandie)' +p265408 +sg225232 +S'Jules Dupr\xc3\xa9' +p265409 +sg225234 +S'lithograph' +p265410 +sg225236 +S'1835' +p265411 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009890.jpg' +p265412 +sg225240 +g27 +sa(dp265413 +g225230 +S'View in Plymouth Port (Vue prise dans le port de Plymouth)' +p265414 +sg225232 +S'Jules Dupr\xc3\xa9' +p265415 +sg225234 +S'lithograph' +p265416 +sg225236 +S'1836' +p265417 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009891.jpg' +p265418 +sg225240 +g27 +sa(dp265419 +g225230 +S'View in England (Vue prise en Angleterre)' +p265420 +sg225232 +S'Jules Dupr\xc3\xa9' +p265421 +sg225234 +S'lithograph' +p265422 +sg225236 +S'1836' +p265423 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000988f.jpg' +p265424 +sg225240 +g27 +sa(dp265425 +g225230 +S'Bank of the Somme (Bords de la Somme)' +p265426 +sg225232 +S'Jules Dupr\xc3\xa9' +p265427 +sg225234 +S'lithograph' +p265428 +sg225236 +S'1836' +p265429 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a000988e.jpg' +p265430 +sg225240 +g27 +sa(dp265431 +g225230 +S'View at Alen\xc3\xa7on (Vue prise \xc3\xa0 Alen\xc3\xa7on)' +p265432 +sg225232 +S'Jules Dupr\xc3\xa9' +p265433 +sg225234 +S'lithograph' +p265434 +sg225236 +S'1839' +p265435 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009893.jpg' +p265436 +sg225240 +g27 +sa(dp265437 +g225230 +S'Emperor Maximilian I' +p265438 +sg225232 +S'Albrecht D\xc3\xbcrer' +p265439 +sg225234 +S'woodcut' +p265440 +sg225236 +S'c. 1518' +p265441 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000af/a000aff9.jpg' +p265442 +sg225240 +g27 +sa(dp265443 +g225232 +S'Artist Information (' +p265444 +sg225240 +g27 +sg225234 +S'(author)' +p265445 +sg225230 +S'Epitome in Divae Parthenices Mariae Historiam; Passio; Apocalipsis' +p265446 +sg225236 +S'\n' +p265447 +sa(dp265448 +g225232 +S'Albrecht D\xc3\xbcrer' +p265449 +sg225240 +g27 +sg225234 +S'woodcut' +p265450 +sg225230 +S'The Madonna on the Crescent' +p265451 +sg225236 +S'1510/1511' +p265452 +sa(dp265453 +g225232 +S'Albrecht D\xc3\xbcrer' +p265454 +sg225240 +g27 +sg225234 +S'woodcut' +p265455 +sg225230 +S'Christ Carrying the Cross' +p265456 +sg225236 +S'c. 1498/1499' +p265457 +sa(dp265458 +g225232 +S'Albrecht D\xc3\xbcrer' +p265459 +sg225240 +g27 +sg225234 +S'woodcut' +p265460 +sg225230 +S"Joachim's Offering Rejected" +p265461 +sg225236 +S'c. 1504/1505' +p265462 +sa(dp265463 +g225232 +S'Albrecht D\xc3\xbcrer' +p265464 +sg225240 +g27 +sg225234 +S'woodcut' +p265465 +sg225230 +S'The Crucifixion' +p265466 +sg225236 +S'c. 1497/1498' +p265467 +sa(dp265468 +g225232 +S'Albrecht D\xc3\xbcrer' +p265469 +sg225240 +g27 +sg225234 +S'woodcut' +p265470 +sg225230 +S'Joachim and the Angel' +p265471 +sg225236 +S'c. 1504' +p265472 +sa(dp265473 +g225232 +S'Albrecht D\xc3\xbcrer' +p265474 +sg225240 +g27 +sg225234 +S'woodcut' +p265475 +sg225230 +S'The Lamentation' +p265476 +sg225236 +S'1510' +p265477 +sa(dp265478 +g225232 +S'Albrecht D\xc3\xbcrer' +p265479 +sg225240 +g27 +sg225234 +S'woodcut' +p265480 +sg225230 +S'Joachim and Anna at the Golden Gate' +p265481 +sg225236 +S'1504' +p265482 +sa(dp265483 +g225232 +S'Albrecht D\xc3\xbcrer' +p265484 +sg225240 +g27 +sg225234 +S'woodcut' +p265485 +sg225230 +S'Christ in Limbo' +p265486 +sg225236 +S'c. 1498/1499' +p265487 +sa(dp265488 +g225232 +S'Albrecht D\xc3\xbcrer' +p265489 +sg225240 +g27 +sg225234 +S'woodcut' +p265490 +sg225230 +S'The Birth of the Virgin' +p265491 +sg225236 +S'c. 1503/1504' +p265492 +sa(dp265493 +g225232 +S'Albrecht D\xc3\xbcrer' +p265494 +sg225240 +g27 +sg225234 +S'woodcut' +p265495 +sg225230 +S'The Deposition' +p265496 +sg225236 +S'c. 1497' +p265497 +sa(dp265498 +g225232 +S'Albrecht D\xc3\xbcrer' +p265499 +sg225240 +g27 +sg225234 +S'woodcut' +p265500 +sg225230 +S'The Presentation of the Virgin in the Temple' +p265501 +sg225236 +S'c. 1502/1503' +p265502 +sa(dp265503 +g225232 +S'Albrecht D\xc3\xbcrer' +p265504 +sg225240 +g27 +sg225234 +S'woodcut' +p265505 +sg225230 +S'The Resurrection' +p265506 +sg225236 +S'1510' +p265507 +sa(dp265508 +g225232 +S'Albrecht D\xc3\xbcrer' +p265509 +sg225240 +g27 +sg225234 +S'woodcut' +p265510 +sg225230 +S'The Betrothal of the Virgin' +p265511 +sg225236 +S'c. 1504/1505' +p265512 +sa(dp265513 +g225230 +S'The Virgin Appearing to Saint John' +p265514 +sg225232 +S'Albrecht D\xc3\xbcrer' +p265515 +sg225234 +S'woodcut' +p265516 +sg225236 +S'1510/1511' +p265517 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f27.jpg' +p265518 +sg225240 +g27 +sa(dp265519 +g225232 +S'Albrecht D\xc3\xbcrer' +p265520 +sg225240 +g27 +sg225234 +S'woodcut' +p265521 +sg225230 +S'The Annunciation' +p265522 +sg225236 +S'c. 1502/1504' +p265523 +sa(dp265524 +g225232 +S'Albrecht D\xc3\xbcrer' +p265525 +sg225240 +g27 +sg225234 +S'woodcut' +p265526 +sg225230 +S'The Martyrdom of Saint John' +p265527 +sg225236 +S'probably c. 1496/1498' +p265528 +sa(dp265529 +g225232 +S'Albrecht D\xc3\xbcrer' +p265530 +sg225240 +g27 +sg225234 +S'woodcut' +p265531 +sg225230 +S'The Visitation' +p265532 +sg225236 +S'c. 1504' +p265533 +sa(dp265534 +g225230 +S'The Vision of the Seven Candlesticks' +p265535 +sg225232 +S'Albrecht D\xc3\xbcrer' +p265536 +sg225234 +S'woodcut' +p265537 +sg225236 +S'probably c. 1496/1498' +p265538 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00056/a000561b.jpg' +p265539 +sg225240 +g27 +sa(dp265540 +g225232 +S'Albrecht D\xc3\xbcrer' +p265541 +sg225240 +g27 +sg225234 +S'woodcut' +p265542 +sg225230 +S'The Nativity' +p265543 +sg225236 +S'c. 1502/1504' +p265544 +sa(dp265545 +g225232 +S'Albrecht D\xc3\xbcrer' +p265546 +sg225240 +g27 +sg225234 +S'woodcut' +p265547 +sg225230 +S'Saint John before God and the Elders' +p265548 +sg225236 +S'probably c. 1496/1498' +p265549 +sa(dp265550 +g225232 +S'Albrecht D\xc3\xbcrer' +p265551 +sg225240 +g27 +sg225234 +S'woodcut' +p265552 +sg225230 +S'The Circumcision' +p265553 +sg225236 +S'c. 1504/1505' +p265554 +sa(dp265555 +g225232 +S'Albrecht D\xc3\xbcrer' +p265556 +sg225240 +g27 +sg225234 +S'woodcut' +p265557 +sg225230 +S'The Four Horsemen' +p265558 +sg225236 +S'probably c. 1496/1498' +p265559 +sa(dp265560 +g225232 +S'Albrecht D\xc3\xbcrer' +p265561 +sg225240 +g27 +sg225234 +S'woodcut' +p265562 +sg225230 +S'The Adoration of the Magi' +p265563 +sg225236 +S'c. 1501/1503' +p265564 +sa(dp265565 +g225232 +S'Albrecht D\xc3\xbcrer' +p265566 +sg225240 +g27 +sg225234 +S'woodcut' +p265567 +sg225230 +S'The Opening of the Fifth and Sixth Seals' +p265568 +sg225236 +S'probably c. 1496/1498' +p265569 +sa(dp265570 +g225232 +S'Albrecht D\xc3\xbcrer' +p265571 +sg225240 +g27 +sg225234 +S'woodcut' +p265572 +sg225230 +S'The Presentation of Christ in the Temple' +p265573 +sg225236 +S'c. 1504/1505' +p265574 +sa(dp265575 +g225232 +S'Albrecht D\xc3\xbcrer' +p265576 +sg225240 +g27 +sg225234 +S'woodcut' +p265577 +sg225230 +S'The Four Angels Holding the Winds' +p265578 +sg225236 +S'probably c. 1496/1498' +p265579 +sa(dp265580 +g225232 +S'Albrecht D\xc3\xbcrer' +p265581 +sg225240 +g27 +sg225234 +S'woodcut' +p265582 +sg225230 +S'The Flight into Egypt' +p265583 +sg225236 +S'c. 1504' +p265584 +sa(dp265585 +g225232 +S'Albrecht D\xc3\xbcrer' +p265586 +sg225240 +g27 +sg225234 +S'woodcut' +p265587 +sg225230 +S'The Seven Angels with the Trumpets' +p265588 +sg225236 +S'probably c. 1496/1498' +p265589 +sa(dp265590 +g225232 +S'Albrecht D\xc3\xbcrer' +p265591 +sg225240 +g27 +sg225234 +S'woodcut' +p265592 +sg225230 +S'Sojourn of the Holy Family in Egypt' +p265593 +sg225236 +S'c. 1504' +p265594 +sa(dp265595 +g225232 +S'Albrecht D\xc3\xbcrer' +p265596 +sg225240 +g27 +sg225234 +S'woodcut' +p265597 +sg225230 +S'The Four Avenging Angels' +p265598 +sg225236 +S'probably c. 1496/1498' +p265599 +sa(dp265600 +g225232 +S'Albrecht D\xc3\xbcrer' +p265601 +sg225240 +g27 +sg225234 +S'woodcut' +p265602 +sg225230 +S'Christ among the Doctors' +p265603 +sg225236 +S'c. 1503/1504' +p265604 +sa(dp265605 +g225232 +S'Albrecht D\xc3\xbcrer' +p265606 +sg225240 +g27 +sg225234 +S'woodcut' +p265607 +sg225230 +S'Saint John Devouring the Book' +p265608 +sg225236 +S'probably c. 1496/1498' +p265609 +sa(dp265610 +g225232 +S'Albrecht D\xc3\xbcrer' +p265611 +sg225240 +g27 +sg225234 +S'woodcut' +p265612 +sg225230 +S'Christ Taking Leave from His Mother' +p265613 +sg225236 +S'c. 1504/1505' +p265614 +sa(dp265615 +g225232 +S'Albrecht D\xc3\xbcrer' +p265616 +sg225240 +g27 +sg225234 +S'woodcut' +p265617 +sg225230 +S'The Apocalyptic Woman' +p265618 +sg225236 +S'probably c. 1496/1498' +p265619 +sa(dp265620 +g225232 +S'Albrecht D\xc3\xbcrer' +p265621 +sg225240 +g27 +sg225234 +S'woodcut' +p265622 +sg225230 +S'The Death of the Virgin' +p265623 +sg225236 +S'1510' +p265624 +sa(dp265625 +g225230 +S'Saint Michael Fighting the Dragon' +p265626 +sg225232 +S'Albrecht D\xc3\xbcrer' +p265627 +sg225234 +S'woodcut' +p265628 +sg225236 +S'probably c. 1496/1498' +p265629 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f28.jpg' +p265630 +sg225240 +g27 +sa(dp265631 +g225232 +S'Albrecht D\xc3\xbcrer' +p265632 +sg225240 +g27 +sg225234 +S'woodcut' +p265633 +sg225230 +S'The Assumption and Coronation of the Virgin' +p265634 +sg225236 +S'1510' +p265635 +sa(dp265636 +g225232 +S'Albrecht D\xc3\xbcrer' +p265637 +sg225240 +g27 +sg225234 +S'woodcut' +p265638 +sg225230 +S'The Beast with Two Horns like a Lamb' +p265639 +sg225236 +S'probably c. 1496/1498' +p265640 +sa(dp265641 +g225232 +S'Albrecht D\xc3\xbcrer' +p265642 +sg225240 +g27 +sg225234 +S'woodcut' +p265643 +sg225230 +S'The Glorification of the Virgin' +p265644 +sg225236 +S'c. 1504' +p265645 +sa(dp265646 +g225232 +S'Albrecht D\xc3\xbcrer' +p265647 +sg225240 +g27 +sg225234 +S'woodcut' +p265648 +sg225230 +S'The Adoration of the Lamb' +p265649 +sg225236 +S'probably c. 1496/1498' +p265650 +sa(dp265651 +g225232 +S'Albrecht D\xc3\xbcrer' +p265652 +sg225240 +g27 +sg225234 +S'woodcut' +p265653 +sg225230 +S'The Man of Sorrows Mocked by a Soldier' +p265654 +sg225236 +S'probably 1511' +p265655 +sa(dp265656 +g225232 +S'Albrecht D\xc3\xbcrer' +p265657 +sg225240 +g27 +sg225234 +S'woodcut' +p265658 +sg225230 +S'The Babylonian Whore' +p265659 +sg225236 +S'probably c. 1496/1498' +p265660 +sa(dp265661 +g225232 +S'Albrecht D\xc3\xbcrer' +p265662 +sg225240 +g27 +sg225234 +S'woodcut' +p265663 +sg225230 +S'The Last Supper' +p265664 +sg225236 +S'1510' +p265665 +sa(dp265666 +g225232 +S'Albrecht D\xc3\xbcrer' +p265667 +sg225240 +g27 +sg225234 +S'woodcut' +p265668 +sg225230 +S'The Angel with the Key to the Bottomless Pit' +p265669 +sg225236 +S'probably c. 1496/1498' +p265670 +sa(dp265671 +g225232 +S'Albrecht D\xc3\xbcrer' +p265672 +sg225240 +g27 +sg225234 +S'woodcut' +p265673 +sg225230 +S'Christ on the Mount of Olives' +p265674 +sg225236 +S'c. 1497/1500' +p265675 +sa(dp265676 +g225232 +S'Albrecht D\xc3\xbcrer' +p265677 +sg225240 +g27 +sg225234 +S'woodcut' +p265678 +sg225230 +S'The Betrayal of Christ' +p265679 +sg225236 +S'1510' +p265680 +sa(dp265681 +g225232 +S'Albrecht D\xc3\xbcrer' +p265682 +sg225240 +g27 +sg225234 +S'woodcut' +p265683 +sg225230 +S'The Flagellation' +p265684 +sg225236 +S'c. 1497' +p265685 +sa(dp265686 +g225232 +S'Albrecht D\xc3\xbcrer' +p265687 +sg225240 +g27 +sg225234 +S'woodcut' +p265688 +sg225230 +S'Ecce Homo' +p265689 +sg225236 +S'c. 1498/1499' +p265690 +sa(dp265691 +g225232 +S'Robert Pierce Eagerton' +p265692 +sg225240 +g27 +sg225234 +S'lithograph' +p265693 +sg225230 +S'Woman Kneeling' +p265694 +sg225236 +S'1968' +p265695 +sa(dp265696 +g225230 +S"Gus' Boat, Lincolnville" +p265697 +sg225232 +S'Linwood Easton' +p265698 +sg225234 +S'etching' +p265699 +sg225236 +S'unknown date\n' +p265700 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f4/a000f485.jpg' +p265701 +sg225240 +g27 +sa(dp265702 +g225232 +S'Fritz Eichenberg' +p265703 +sg225240 +g27 +sg225234 +S'wood engraving' +p265704 +sg225230 +S'And Their Eyes were Opened' +p265705 +sg225236 +S'1955' +p265706 +sa(dp265707 +g225232 +S'Fritz Eichenberg' +p265708 +sg225240 +g27 +sg225234 +S'portfolio with nine wood engravings (plus one: 1964.8.1790)' +p265709 +sg225230 +S'Ten Wood Engravings for the Old Testament' +p265710 +sg225236 +S'published 1955' +p265711 +sa(dp265712 +g225232 +S'Fritz Eichenberg' +p265713 +sg225240 +g27 +sg225234 +S'wood engraving' +p265714 +sg225230 +S'And in Her Mouth was an Olive Leaf' +p265715 +sg225236 +S'1955' +p265716 +sa(dp265717 +g225232 +S'Fritz Eichenberg' +p265718 +sg225240 +g27 +sg225234 +S'wood engraving' +p265719 +sg225230 +S'And She became a Pillar of Salt' +p265720 +sg225236 +S'1955' +p265721 +sa(dp265722 +g225232 +S'Fritz Eichenberg' +p265723 +sg225240 +g27 +sg225234 +S'wood engraving' +p265724 +sg225230 +S'The Lamentations of Jeremiah' +p265725 +sg225236 +S'1955' +p265726 +sa(dp265727 +g225232 +S'Fritz Eichenberg' +p265728 +sg225240 +g27 +sg225234 +S'wood engraving [trial proof]' +p265729 +sg225230 +S'The Book of Job' +p265730 +sg225236 +S'1955' +p265731 +sa(dp265732 +g225232 +S'Fritz Eichenberg' +p265733 +sg225240 +g27 +sg225234 +S'wood engraving' +p265734 +sg225230 +S'The Story of Jonah' +p265735 +sg225236 +S'1955' +p265736 +sa(dp265737 +g225232 +S'Fritz Eichenberg' +p265738 +sg225240 +g27 +sg225234 +S'wood engraving' +p265739 +sg225230 +S'The Peaceable Kingdom' +p265740 +sg225236 +S'1955' +p265741 +sa(dp265742 +g225232 +S'Fritz Eichenberg' +p265743 +sg225240 +g27 +sg225234 +S'wood engraving' +p265744 +sg225230 +S'And David Played the Harp' +p265745 +sg225236 +S'1955' +p265746 +sa(dp265747 +g225232 +S'Fritz Eichenberg' +p265748 +sg225240 +g27 +sg225234 +S'wood engraving' +p265749 +sg225230 +S'And His Strength went from Him' +p265750 +sg225236 +S'1955' +p265751 +sa(dp265752 +g225232 +S'Fritz Eichenberg' +p265753 +sg225240 +g27 +sg225234 +S'woodcut' +p265754 +sg225230 +S'Dame Folly Speaks' +p265755 +sg225236 +S'published 1972' +p265756 +sa(dp265757 +g225232 +S'Fritz Eichenberg' +p265758 +sg225240 +g27 +sg225234 +S'portfolio with 10 woodcuts and text' +p265759 +sg225230 +S'Desiderius Erasmus\' "In Praise of Folly"' +p265760 +sg225236 +S'published 1972' +p265761 +sa(dp265762 +g225232 +S'Fritz Eichenberg' +p265763 +sg225240 +g27 +sg225234 +S'woodcut' +p265764 +sg225230 +S'The Follies of Old Age' +p265765 +sg225236 +S'published 1972' +p265766 +sa(dp265767 +g225232 +S'Fritz Eichenberg' +p265768 +sg225240 +g27 +sg225234 +S'woodcut' +p265769 +sg225230 +S'The Follies of Worshipping Idols' +p265770 +sg225236 +S'published 1972' +p265771 +sa(dp265772 +g225232 +S'Fritz Eichenberg' +p265773 +sg225240 +g27 +sg225234 +S'woodcut' +p265774 +sg225230 +S'The Human Comedy' +p265775 +sg225236 +S'published 1972' +p265776 +sa(dp265777 +g225232 +S'Fritz Eichenberg' +p265778 +sg225240 +g27 +sg225234 +S'woodcut' +p265779 +sg225230 +S'The Follies of Teaching' +p265780 +sg225236 +S'published 1972' +p265781 +sa(dp265782 +g225232 +S'Fritz Eichenberg' +p265783 +sg225240 +g27 +sg225234 +S'woodcut' +p265784 +sg225230 +S'The Follies of the Monks' +p265785 +sg225236 +S'published 1972' +p265786 +sa(dp265787 +g225232 +S'Fritz Eichenberg' +p265788 +sg225240 +g27 +sg225234 +S'woodcut' +p265789 +sg225230 +S'The Follies of Princely Power' +p265790 +sg225236 +S'published 1972' +p265791 +sa(dp265792 +g225232 +S'Fritz Eichenberg' +p265793 +sg225240 +g27 +sg225234 +S'woodcut' +p265794 +sg225230 +S'The Follies of the Court' +p265795 +sg225236 +S'published 1972' +p265796 +sa(dp265797 +g225232 +S'Fritz Eichenberg' +p265798 +sg225240 +g27 +sg225234 +S'woodcut' +p265799 +sg225230 +S'The Follies of the Popes' +p265800 +sg225236 +S'published 1972' +p265801 +sa(dp265802 +g225232 +S'Fritz Eichenberg' +p265803 +sg225240 +g27 +sg225234 +S'woodcut' +p265804 +sg225230 +S'The Follies of War' +p265805 +sg225236 +S'published 1972' +p265806 +sa(dp265807 +g225232 +S'Sharon Ellis' +p265808 +sg225240 +g27 +sg225234 +S'etching' +p265809 +sg225230 +S'Portrait of an Old Woman' +p265810 +sg225236 +S'unknown date\n' +p265811 +sa(dp265812 +g225230 +S"The Affair near Konigstein (L'Affaire pres de Koenigstein) [recto]" +p265813 +sg225232 +S'Gerhardus Emaus de Micault' +p265814 +sg225234 +S'etching' +p265815 +sg225236 +S'unknown date\n' +p265816 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d69b.jpg' +p265817 +sg225240 +g27 +sa(dp265818 +g225232 +S'Gerhardus Emaus de Micault' +p265819 +sg225240 +g27 +sg225234 +S'etching' +p265820 +sg225230 +S"The Affair near Konigstein (L'Affaire pres d e Koenigstein) [verso]" +p265821 +sg225236 +S'unknown date\n' +p265822 +sa(dp265823 +g225230 +S'Napoleon I and Captain Elphinstone (Napoleon I et le Capitaine Elphinstone)' +p265824 +sg225232 +S'Gerhardus Emaus de Micault' +p265825 +sg225234 +S'etching' +p265826 +sg225236 +S'1859' +p265827 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d69c.jpg' +p265828 +sg225240 +g27 +sa(dp265829 +g225230 +S"Explosion of a Grenade (L'Explosion d'une grenade)" +p265830 +sg225232 +S'Gerhardus Emaus de Micault' +p265831 +sg225234 +S'etching' +p265832 +sg225236 +S'1854' +p265833 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d69d.jpg' +p265834 +sg225240 +g27 +sa(dp265835 +g225230 +S"Death of a Russian General (Le Mort d'un general russe)" +p265836 +sg225232 +S'Gerhardus Emaus de Micault' +p265837 +sg225234 +S'etching' +p265838 +sg225236 +S'1814' +p265839 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d698.jpg' +p265840 +sg225240 +g27 +sa(dp265841 +g225230 +S"Capture of a Village (Prise d'un village)" +p265842 +sg225232 +S'Gerhardus Emaus de Micault' +p265843 +sg225234 +S'etching' +p265844 +sg225236 +S'unknown date\n' +p265845 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d69a.jpg' +p265846 +sg225240 +g27 +sa(dp265847 +g225230 +S'Charge of the Cavalry (Charge de cavalerie contre des chasseurs)' +p265848 +sg225232 +S'Gerhardus Emaus de Micault' +p265849 +sg225234 +S'etching' +p265850 +sg225236 +S'1856' +p265851 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d693.jpg' +p265852 +sg225240 +g27 +sa(dp265853 +g225230 +S'Cossacks before a Fireplace (Les cosaques devant la cheminee de la ferme en Hollande) [recto]' +p265854 +sg225232 +S'Gerhardus Emaus de Micault' +p265855 +sg225234 +S'etching' +p265856 +sg225236 +S'1815' +p265857 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d694.jpg' +p265858 +sg225240 +g27 +sa(dp265859 +g225230 +S'Title Page for A.D. van Buren Schele\'s "Adolf van Gelder", Amsterdam, 1842' +p265860 +sg225232 +S'Dirk Jurriaan Sluyter' +p265861 +sg225234 +S'engraving' +p265862 +sg225236 +S'probably c. 1842' +p265863 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d695.jpg' +p265864 +sg225240 +g27 +sa(dp265865 +g225230 +S'Cavalry and Hay Wagon' +p265866 +sg225232 +S'Gerhardus Emaus de Micault' +p265867 +sg225234 +S'etching' +p265868 +sg225236 +S'unknown date\n' +p265869 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d699.jpg' +p265870 +sg225240 +g27 +sa(dp265871 +g225232 +S'James Ensor' +p265872 +sg225240 +g27 +sg225234 +S'etching' +p265873 +sg225230 +S"Stand of Trees (Bouquet d'arbres)" +p265874 +sg225236 +S'1888' +p265875 +sa(dp265876 +g225232 +S'James Ensor' +p265877 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p265878 +sg225230 +S"The City Hall in Audenarde (L'hotel de ville d'Audenarde)" +p265879 +sg225236 +S'1888' +p265880 +sa(dp265881 +g225232 +S'James Ensor' +p265882 +sg225240 +g27 +sg225234 +S'drypoint' +p265883 +sg225230 +S'Houses on the Boulevard Anspach in Brussels(Maisons du boulevard Anspach a Bruxelles)' +p265884 +sg225236 +S'1888' +p265885 +sa(dp265886 +g225230 +S'Saint Vincent Martyr' +p265887 +sg225232 +S'M.C. Escher' +p265888 +sg225234 +S'woodcut on heavier laid paper with prominent chai n lines' +p265889 +sg225236 +S'1925' +p265890 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b58.jpg' +p265891 +sg225240 +g27 +sa(dp265892 +g225232 +S'M.C. Escher' +p265893 +sg225240 +g27 +sg225234 +S'lithograph' +p265894 +sg225230 +S'Encounter' +p265895 +sg225236 +S'1944' +p265896 +sa(dp265897 +g225232 +S'M.C. Escher' +p265898 +sg225240 +g27 +sg225234 +S'woodcut' +p265899 +sg225230 +S'Saint Francis' +p265900 +sg225236 +S'1922' +p265901 +sa(dp265902 +g225230 +S'Stars' +p265903 +sg225232 +S'M.C. Escher' +p265904 +sg225234 +S'wood engraving' +p265905 +sg225236 +S'1948' +p265906 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00038/a0003807.jpg' +p265907 +sg225240 +g27 +sa(dp265908 +g225230 +S"Fisherman's Hut" +p265909 +sg225232 +S'Allart van Everdingen' +p265910 +sg225234 +S'etching with engraving' +p265911 +sg225236 +S'probably c. 1645/1656' +p265912 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d12f.jpg' +p265913 +sg225240 +g27 +sa(dp265914 +g225230 +S'Landscape with Millstone near a Cask' +p265915 +sg225232 +S'Allart van Everdingen' +p265916 +sg225234 +S'etching with engraving' +p265917 +sg225236 +S'probably c. 1645/1656' +p265918 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d123.jpg' +p265919 +sg225240 +g27 +sa(dp265920 +g225230 +S'Three Cottages' +p265921 +sg225232 +S'Allart van Everdingen' +p265922 +sg225234 +S'etching with engraving' +p265923 +sg225236 +S'probably c. 1645/1656' +p265924 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1c3.jpg' +p265925 +sg225240 +g27 +sa(dp265926 +g225230 +S'Woman in a Riverscape Looking towards a Boat' +p265927 +sg225232 +S'Allart van Everdingen' +p265928 +sg225234 +S'etching' +p265929 +sg225236 +S'probably c. 1645/1656' +p265930 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d1/a000d1a2.jpg' +p265931 +sg225240 +g27 +sa(dp265932 +g225232 +S'Artist Information (' +p265933 +sg225240 +g27 +sg225234 +S'(artist after)' +p265934 +sg225230 +S'The Madonna della Sedia' +p265935 +sg225236 +S'\n' +p265936 +sa(dp265937 +g225230 +S'John Milton' +p265938 +sg225232 +S'William Faithorne' +p265939 +sg225234 +S'engraving' +p265940 +sg225236 +S'1670' +p265941 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a000763c.jpg' +p265942 +sg225240 +g27 +sa(dp265943 +g225230 +S'Albrecht Altdorfer' +p265944 +sg225232 +S'Unknown 16th Century' +p265945 +sg225234 +S'Rosenwald Collection' +p265946 +sg225236 +S'\nengraving' +p265947 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7a5.jpg' +p265948 +sg225240 +g27 +sa(dp265949 +g225230 +S'An Old Woman at the Toilet Table' +p265950 +sg225232 +S'Artist Information (' +p265951 +sg225234 +S'(artist after)' +p265952 +sg225236 +S'\n' +p265953 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2d4.jpg' +p265954 +sg225240 +g27 +sa(dp265955 +g225230 +S'Le Galand Jardinier (The Gallant Gardener)' +p265956 +sg225232 +S'Artist Information (' +p265957 +sg225234 +S'(artist after)' +p265958 +sg225236 +S'\n' +p265959 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f6a.jpg' +p265960 +sg225240 +g27 +sa(dp265961 +g225232 +S'Lyonel Feininger' +p265962 +sg225240 +g27 +sg225234 +S'woodcut on Sekishu natural laid paper' +p265963 +sg225230 +S'Gelmeroda' +p265964 +sg225236 +S'1920' +p265965 +sa(dp265966 +g225232 +S'Peter Lipman-Wulf' +p265967 +sg225240 +g27 +sg225234 +S'color etching and aquatint with embossing' +p265968 +sg225230 +S'The Market [left side]' +p265969 +sg225236 +S'unknown date\n' +p265970 +sa(dp265971 +g225232 +S'Peter Lipman-Wulf' +p265972 +sg225240 +g27 +sg225234 +S'color etching and aquatint with embossing' +p265973 +sg225230 +S'A Chapel in the Market [center]' +p265974 +sg225236 +S'unknown date\n' +p265975 +sa(dp265976 +g225232 +S'Peter Lipman-Wulf' +p265977 +sg225240 +g27 +sg225234 +S'color etching and aquatint with embossing' +p265978 +sg225230 +S'The Market [right side]' +p265979 +sg225236 +S'unknown date\n' +p265980 +sa(dp265981 +g225232 +S'Ruth Fine' +p265982 +sg225240 +g27 +sg225234 +S'watercolor over graphite' +p265983 +sg225230 +S'Alverthorpe' +p265984 +sg225236 +S'1971' +p265985 +sa(dp265986 +g225232 +S'Ruth Fine' +p265987 +sg225240 +g27 +sg225234 +S'lithograph in violet and green' +p265988 +sg225230 +S'In Search of the Place' +p265989 +sg225236 +S'1974' +p265990 +sa(dp265991 +g225232 +S'Ruth Fine' +p265992 +sg225240 +g27 +sg225234 +S'gum bichromate' +p265993 +sg225230 +S'Experiment #1, A Vase of Flowers' +p265994 +sg225236 +S'1977' +p265995 +sa(dp265996 +g225232 +S'Ruth Fine' +p265997 +sg225240 +g27 +sg225234 +S'intaglio in black and screenprint in gray' +p265998 +sg225230 +S'View of a Landscape: #6' +p265999 +sg225236 +S'1970' +p266000 +sa(dp266001 +g225232 +S'Ruth Fine' +p266002 +sg225240 +g27 +sg225234 +S'intaglio and screenprint' +p266003 +sg225230 +S'View of a Landscape: #9' +p266004 +sg225236 +S'1970' +p266005 +sa(dp266006 +g225232 +S'Hans Fischer' +p266007 +sg225240 +g27 +sg225234 +S'lithograph' +p266008 +sg225230 +S'Flowers and Grasses' +p266009 +sg225236 +S'1955' +p266010 +sa(dp266011 +g225230 +S'Adult and Two Children' +p266012 +sg225232 +S'John Flaxman' +p266013 +sg225234 +S'graphite and pen and gray ink' +p266014 +sg225236 +S'unknown date\n' +p266015 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007170.jpg' +p266016 +sg225240 +g27 +sa(dp266017 +g225230 +S'Antique Battle Scene (?)' +p266018 +sg225232 +S'John Flaxman' +p266019 +sg225234 +S'graphite on laid paper' +p266020 +sg225236 +S'unknown date\n' +p266021 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007140.jpg' +p266022 +sg225240 +g27 +sa(dp266023 +g225230 +S'Antique Bearded Head' +p266024 +sg225232 +S'John Flaxman' +p266025 +sg225234 +S'brush and gray ink with gray wash' +p266026 +sg225236 +S'unknown date\n' +p266027 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a000727f.jpg' +p266028 +sg225240 +g27 +sa(dp266029 +g225230 +S'Antique Head with a Helmet' +p266030 +sg225232 +S'John Flaxman' +p266031 +sg225234 +S'brush and gray ink with gray wash' +p266032 +sg225236 +S'unknown date\n' +p266033 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007216.jpg' +p266034 +sg225240 +g27 +sa(dp266035 +g225230 +S'Bust of a Bearded Man Looking Up' +p266036 +sg225232 +S'John Flaxman' +p266037 +sg225234 +S'graphite' +p266038 +sg225236 +S'unknown date\n' +p266039 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072b4.jpg' +p266040 +sg225240 +g27 +sa(dp266041 +g225230 +S'Classical Portrait Bust of a Bearded Man' +p266042 +sg225232 +S'John Flaxman' +p266043 +sg225234 +S'graphite on laid paper' +p266044 +sg225236 +S'unknown date\n' +p266045 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a000724b.jpg' +p266046 +sg225240 +g27 +sa(dp266047 +g225230 +S'Donkey Stretching a Hind Leg' +p266048 +sg225232 +S'John Flaxman' +p266049 +sg225234 +S'graphite on laid paper' +p266050 +sg225236 +S'unknown date\n' +p266051 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072e9.jpg' +p266052 +sg225240 +g27 +sa(dp266053 +g225230 +S'Figure Being Transported through the Air' +p266054 +sg225232 +S'John Flaxman' +p266055 +sg225234 +S'pen and gray ink over graphite on laid paper' +p266056 +sg225236 +S'unknown date\n' +p266057 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ee3.jpg' +p266058 +sg225240 +g27 +sa(dp266059 +g225230 +S'Figure Seen from behind Praying to an Apparition of a Head with Lions Below' +p266060 +sg225232 +S'John Flaxman' +p266061 +sg225234 +S'graphite on laid paper' +p266062 +sg225236 +S'unknown date\n' +p266063 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a00071a5.jpg' +p266064 +sg225240 +g27 +sa(dp266065 +g225230 +S'Figure Standing over Corpses, Blowing a Horn' +p266066 +sg225232 +S'John Flaxman' +p266067 +sg225234 +S'pen and gray ink with gray wash over graphite on wove paper' +p266068 +sg225236 +S'in or after 1795' +p266069 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a0007087.jpg' +p266070 +sg225240 +g27 +sa(dp266071 +g225230 +S'Figure Studies' +p266072 +sg225232 +S'John Flaxman' +p266073 +sg225234 +S'graphite on laid paper' +p266074 +sg225236 +S'unknown date\n' +p266075 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072b3.jpg' +p266076 +sg225240 +g27 +sa(dp266077 +g225230 +S'Head of a Child in a Cap' +p266078 +sg225232 +S'Artist Information (' +p266079 +sg225234 +S'British, 1755 - 1826' +p266080 +sg225236 +S'(artist after)' +p266081 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a0007644.jpg' +p266082 +sg225240 +g27 +sa(dp266083 +g225230 +S'Head of a Woman (Theresa Turner?)' +p266084 +sg225232 +S'John Flaxman' +p266085 +sg225234 +S'graphite on wove paper' +p266086 +sg225236 +S'unknown date\n' +p266087 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e8a.jpg' +p266088 +sg225240 +g27 +sa(dp266089 +g225230 +S'Mrs. Tulk' +p266090 +sg225232 +S'John Flaxman' +p266091 +sg225234 +S'graphite on laid paper' +p266092 +sg225236 +S'unknown date\n' +p266093 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d9e.jpg' +p266094 +sg225240 +g27 +sa(dp266095 +g225230 +S'Head of a Woman in a Scarf, Looking Down' +p266096 +sg225232 +S'John Flaxman' +p266097 +sg225234 +S'graphite' +p266098 +sg225236 +S'unknown date\n' +p266099 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e29.jpg' +p266100 +sg225240 +g27 +sa(dp266101 +g225230 +S'Head of a Woman Looking Down (Theresa Turner?)' +p266102 +sg225232 +S'John Flaxman' +p266103 +sg225234 +S'graphite' +p266104 +sg225236 +S'unknown date\n' +p266105 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e59.jpg' +p266106 +sg225240 +g27 +sa(dp266107 +g225230 +S'Holy Family with Angels (?)' +p266108 +sg225232 +S'John Flaxman' +p266109 +sg225234 +S'graphite on laid paper (back of a letter)' +p266110 +sg225236 +S'unknown date\n' +p266111 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f14.jpg' +p266112 +sg225240 +g27 +sa(dp266113 +g225230 +S'Study for Reconstruction of West Pediment of the Parthenon' +p266114 +sg225232 +S'John Flaxman' +p266115 +sg225234 +S'graphite on laid paper' +p266116 +sg225236 +S'in or after 1805' +p266117 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a0007058.jpg' +p266118 +sg225240 +g27 +sa(dp266119 +g225230 +S'Otus and Ephialtes Holding Mars Captive' +p266120 +sg225232 +S'John Flaxman' +p266121 +sg225234 +S'graphite' +p266122 +sg225236 +S'1790s' +p266123 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a0007028.jpg' +p266124 +sg225240 +g27 +sa(dp266125 +g225230 +S'Studies for a Triumphal Arch Surmounted by Britannia [recto and verso]' +p266126 +sg225232 +S'John Flaxman' +p266127 +sg225234 +S'graphite' +p266128 +sg225236 +S'probably 1799' +p266129 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f72.jpg' +p266130 +sg225240 +g27 +sa(dp266131 +g225230 +S'Three Groups of Dancers' +p266132 +sg225232 +S'John Flaxman' +p266133 +sg225234 +S'graphite on laid paper' +p266134 +sg225236 +S'unknown date\n' +p266135 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006ffa.jpg' +p266136 +sg225240 +g27 +sa(dp266137 +g225230 +S'Sheet of Architectural and Figure Studies' +p266138 +sg225232 +S'John Flaxman' +p266139 +sg225234 +S'graphite on laid paper' +p266140 +sg225236 +S'unknown date\n' +p266141 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007115.jpg' +p266142 +sg225240 +g27 +sa(dp266143 +g225230 +S'Sheet of Sketches, including Two Warriors Fighting' +p266144 +sg225232 +S'John Flaxman' +p266145 +sg225234 +S'graphite on laid paper' +p266146 +sg225236 +S'unknown date\n' +p266147 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fcc.jpg' +p266148 +sg225240 +g27 +sa(dp266149 +g225230 +S'Sketches with a Hooded Figure' +p266150 +sg225232 +S'John Flaxman' +p266151 +sg225234 +S'graphite on laid paper' +p266152 +sg225236 +S'unknown date\n' +p266153 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006eb6.jpg' +p266154 +sg225240 +g27 +sa(dp266155 +g225230 +S'Statue of a Male Nude before a Tree' +p266156 +sg225232 +S'John Flaxman' +p266157 +sg225234 +S'pen and gray ink over graphite' +p266158 +sg225236 +S'unknown date\n' +p266159 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dfb.jpg' +p266160 +sg225240 +g27 +sa(dp266161 +g225230 +S'Sheet of Studies, including a Man Battling a Centaur' +p266162 +sg225232 +S'John Flaxman' +p266163 +sg225234 +S'graphite on wove paper' +p266164 +sg225236 +S'unknown date\n' +p266165 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f12.jpg' +p266166 +sg225240 +g27 +sa(dp266167 +g225230 +S'Design for a Monument' +p266168 +sg225232 +S'John Flaxman' +p266169 +sg225234 +S'pen and gray ink with gray wash' +p266170 +sg225236 +S'unknown date\n' +p266171 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dcd.jpg' +p266172 +sg225240 +g27 +sa(dp266173 +g225230 +S'Study for Decorations of Buckingham Palace' +p266174 +sg225232 +S'John Flaxman' +p266175 +sg225234 +S'pen and gray ink with brown wash on wove paper' +p266176 +sg225236 +S'unknown date\n' +p266177 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f41.jpg' +p266178 +sg225240 +g27 +sa(dp266179 +g225230 +S'Studies for a Monument' +p266180 +sg225232 +S'John Flaxman' +p266181 +sg225234 +S'graphite on laid paper' +p266182 +sg225236 +S'unknown date\n' +p266183 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006ff8.jpg' +p266184 +sg225240 +g27 +sa(dp266185 +g225230 +S"Study for Pilgrim's Progress (?)" +p266186 +sg225232 +S'John Flaxman' +p266187 +sg225234 +S'pen and gray ink over graphite on laid paper' +p266188 +sg225236 +S'unknown date\n' +p266189 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a0007056.jpg' +p266190 +sg225240 +g27 +sa(dp266191 +g225230 +S'Design for a Monument' +p266192 +sg225232 +S'John Flaxman' +p266193 +sg225234 +S'graphite on laid paper' +p266194 +sg225236 +S'unknown date\n' +p266195 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fa1.jpg' +p266196 +sg225240 +g27 +sa(dp266197 +g225230 +S'Studies of Women Kneeling' +p266198 +sg225232 +S'John Flaxman' +p266199 +sg225234 +S'graphite on wove paper (back of a printed regret?)' +p266200 +sg225236 +S'unknown date\n' +p266201 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f43.jpg' +p266202 +sg225240 +g27 +sa(dp266203 +g225230 +S'Study of Neptune and Sea Creatures (?)' +p266204 +sg225232 +S'John Flaxman' +p266205 +sg225234 +S'pen and brown ink over graphite on laid paper' +p266206 +sg225236 +S'unknown date\n' +p266207 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a000727d.jpg' +p266208 +sg225240 +g27 +sa(dp266209 +g225230 +S'Study of a Semi-Reclining Figure' +p266210 +sg225232 +S'John Flaxman' +p266211 +sg225234 +S'pen and brown ink over graphite on laid paper' +p266212 +sg225236 +S'unknown date\n' +p266213 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a00070b8.jpg' +p266214 +sg225240 +g27 +sa(dp266215 +g225230 +S'Two Airborne? Figures Reaching out to One Another' +p266216 +sg225232 +S'John Flaxman' +p266217 +sg225234 +S'graphite on laid paper' +p266218 +sg225236 +S'unknown date\n' +p266219 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f70.jpg' +p266220 +sg225240 +g27 +sa(dp266221 +g225230 +S'Two Fighting Figures' +p266222 +sg225232 +S'John Flaxman' +p266223 +sg225234 +S'graphite on laid paper' +p266224 +sg225236 +S'unknown date\n' +p266225 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a0007089.jpg' +p266226 +sg225240 +g27 +sa(dp266227 +g225230 +S'Two Greek Classical Figures' +p266228 +sg225232 +S'John Flaxman' +p266229 +sg225234 +S'graphite on laid paper' +p266230 +sg225236 +S'in or after 1797' +p266231 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a000724a.jpg' +p266232 +sg225240 +g27 +sa(dp266233 +g225230 +S'Two Male Nudes seen from Above' +p266234 +sg225232 +S'John Flaxman' +p266235 +sg225234 +S'pen and brown ink over graphite on laid paper' +p266236 +sg225236 +S'unknown date\n' +p266237 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a00070e8.jpg' +p266238 +sg225240 +g27 +sa(dp266239 +g225230 +S'Frightened Man Looking Up; Woman and Children' +p266240 +sg225232 +S'Artist Information (' +p266241 +sg225234 +S'British, 1755 - 1826' +p266242 +sg225236 +S'(artist after)' +p266243 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a0007649.jpg' +p266244 +sg225240 +g27 +sa(dp266245 +g225230 +S'Reclining Man; Two Women' +p266246 +sg225232 +S'John Flaxman' +p266247 +sg225234 +S'black chalk? heightened with white chalk; charcoal and graphite' +p266248 +sg225236 +S'unknown date\n' +p266249 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d40.jpg' +p266250 +sg225240 +g27 +sa(dp266251 +g225230 +S"Two Women's Heads" +p266252 +sg225232 +S'John Flaxman' +p266253 +sg225234 +S'graphite on laid paper' +p266254 +sg225236 +S'unknown date\n' +p266255 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f9f.jpg' +p266256 +sg225240 +g27 +sa(dp266257 +g225230 +S'Sheet of Studies, including Warrior with Child [recto and verso]' +p266258 +sg225232 +S'John Flaxman' +p266259 +sg225234 +S'graphite with brown wash on laid paper' +p266260 +sg225236 +S'unknown date\n' +p266261 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a000702a.jpg' +p266262 +sg225240 +g27 +sa(dp266263 +g225232 +S'Sir William Russell Flint' +p266264 +sg225240 +g27 +sg225234 +S'red chalk on laid paper' +p266265 +sg225230 +S'Maribel' +p266266 +sg225236 +S'unknown date\n' +p266267 +sa(dp266268 +g225232 +S'Ede Flor' +p266269 +sg225240 +g27 +sg225234 +S'color intaglio' +p266270 +sg225230 +S'Brief mit Montelimar' +p266271 +sg225236 +S'unknown date\n' +p266272 +sa(dp266273 +g225232 +S'Ede Flor' +p266274 +sg225240 +g27 +sg225234 +S'color intaglio' +p266275 +sg225230 +S'La Nuit (Camping Nostradamus)' +p266276 +sg225236 +S'unknown date\n' +p266277 +sa(dp266278 +g225230 +S'Woman Sketching at a Museum' +p266279 +sg225232 +S'Artist Information (' +p266280 +sg225234 +S'(artist after)' +p266281 +sg225236 +S'\n' +p266282 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eef5.jpg' +p266283 +sg225240 +g27 +sa(dp266284 +g225230 +S'Woman Weeping in a Sick Room' +p266285 +sg225232 +S'Artist Information (' +p266286 +sg225234 +S'(artist after)' +p266287 +sg225236 +S'\n' +p266288 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eef4.jpg' +p266289 +sg225240 +g27 +sa(dp266290 +g225232 +S'Richard A. Florsheim' +p266291 +sg225240 +g27 +sg225234 +S'lithograph' +p266292 +sg225230 +S'Sailboats at Anchor' +p266293 +sg225236 +S'unknown date\n' +p266294 +sa(dp266295 +g225232 +S'Arthur L. Flory' +p266296 +sg225240 +g27 +sg225234 +S'lithograph in rose [proof]' +p266297 +sg225230 +S'Many Moons' +p266298 +sg225236 +S'1956' +p266299 +sa(dp266300 +g225232 +S'Arthur L. Flory' +p266301 +sg225240 +g27 +sg225234 +S'color lithograph in rose and green-blue [proof]' +p266302 +sg225230 +S'Many Moons' +p266303 +sg225236 +S'1956' +p266304 +sa(dp266305 +g225232 +S'Arthur L. Flory' +p266306 +sg225240 +g27 +sg225234 +S'color lithograph in rose, green-blue and blue [proof]' +p266307 +sg225230 +S'Many Moons' +p266308 +sg225236 +S'1956' +p266309 +sa(dp266310 +g225232 +S'Arthur L. Flory' +p266311 +sg225240 +g27 +sg225234 +S'color lithograph in rose, green-blue, blue and blue-green [proof]' +p266312 +sg225230 +S'Many Moons' +p266313 +sg225236 +S'1956' +p266314 +sa(dp266315 +g225232 +S'Arthur L. Flory' +p266316 +sg225240 +g27 +sg225234 +S'color lithograph in rose, green-blue, blue and blue-green and light green [proof]' +p266317 +sg225230 +S'Many Moons' +p266318 +sg225236 +S'1956' +p266319 +sa(dp266320 +g225232 +S'Arthur L. Flory' +p266321 +sg225240 +g27 +sg225234 +S'color lithograph in rose, green-blue, blue and blue-green and dark blue [proof]' +p266322 +sg225230 +S'Many Moons' +p266323 +sg225236 +S'1956' +p266324 +sa(dp266325 +g225232 +S'Arthur L. Flory' +p266326 +sg225240 +g27 +sg225234 +S'color lithograph in rose, green-blue, blue and blue-green, dark blue and light blue [proof]' +p266327 +sg225230 +S'Many Moons' +p266328 +sg225236 +S'1956' +p266329 +sa(dp266330 +g225232 +S'Arthur L. Flory' +p266331 +sg225240 +g27 +sg225234 +S'drypoint' +p266332 +sg225230 +S'Beach, Morning' +p266333 +sg225236 +S'1965' +p266334 +sa(dp266335 +g225232 +S'Arthur L. Flory' +p266336 +sg225240 +g27 +sg225234 +S'portfolio with title page, colophon page and ten prints' +p266337 +sg225230 +S'August Reveries' +p266338 +sg225236 +S'1965' +p266339 +sa(dp266340 +g225232 +S'Arthur L. Flory' +p266341 +sg225240 +g27 +sg225234 +S'drypoint' +p266342 +sg225230 +S'Fish, Grass and Fence' +p266343 +sg225236 +S'1965' +p266344 +sa(dp266345 +g225232 +S'Arthur L. Flory' +p266346 +sg225240 +g27 +sg225234 +S'drypoint' +p266347 +sg225230 +S'Swimming Fish' +p266348 +sg225236 +S'1965' +p266349 +sa(dp266350 +g225232 +S'Arthur L. Flory' +p266351 +sg225240 +g27 +sg225234 +S'drypoint' +p266352 +sg225230 +S'The Fishers' +p266353 +sg225236 +S'1965' +p266354 +sa(dp266355 +g225232 +S'Arthur L. Flory' +p266356 +sg225240 +g27 +sg225234 +S'drypoint' +p266357 +sg225230 +S'Grass in Wind' +p266358 +sg225236 +S'1965' +p266359 +sa(dp266360 +g225232 +S'Arthur L. Flory' +p266361 +sg225240 +g27 +sg225234 +S'drypoint' +p266362 +sg225230 +S'Crab and Flowers' +p266363 +sg225236 +S'1965' +p266364 +sa(dp266365 +g225232 +S'Arthur L. Flory' +p266366 +sg225240 +g27 +sg225234 +S'drypoint' +p266367 +sg225230 +S'Beach Afternoon' +p266368 +sg225236 +S'1965' +p266369 +sa(dp266370 +g225232 +S'Arthur L. Flory' +p266371 +sg225240 +g27 +sg225234 +S'drypoint' +p266372 +sg225230 +S'Swimming Crabs' +p266373 +sg225236 +S'1965' +p266374 +sa(dp266375 +g225232 +S'Arthur L. Flory' +p266376 +sg225240 +g27 +sg225234 +S'drypoint' +p266377 +sg225230 +S'Beach Sunset' +p266378 +sg225236 +S'1965' +p266379 +sa(dp266380 +g225232 +S'Arthur L. Flory' +p266381 +sg225240 +g27 +sg225234 +S'drypoint' +p266382 +sg225230 +S'Fish and Moonlight' +p266383 +sg225236 +S'1965' +p266384 +sa(dp266385 +g225232 +S'Arthur L. Flory' +p266386 +sg225240 +g27 +sg225234 +S'color lithograph' +p266387 +sg225230 +S'Sunrise' +p266388 +sg225236 +S'1965' +p266389 +sa(dp266390 +g225232 +S'Arthur L. Flory' +p266391 +sg225240 +g27 +sg225234 +S'portfolio with title page, introductory page, ten prints, ten sheets with verses and colophon page' +p266392 +sg225230 +S"Water's Edge" +p266393 +sg225236 +S'1965' +p266394 +sa(dp266395 +g225232 +S'Arthur L. Flory' +p266396 +sg225240 +g27 +sg225234 +S'color lithograph' +p266397 +sg225230 +S'Morning Mist' +p266398 +sg225236 +S'1965' +p266399 +sa(dp266400 +g225232 +S'Arthur L. Flory' +p266401 +sg225240 +g27 +sg225234 +S'color lithograph' +p266402 +sg225230 +S'Tow and Undertow' +p266403 +sg225236 +S'1965' +p266404 +sa(dp266405 +g225232 +S'Arthur L. Flory' +p266406 +sg225240 +g27 +sg225234 +S'color lithograph' +p266407 +sg225230 +S'The Veil' +p266408 +sg225236 +S'1965' +p266409 +sa(dp266410 +g225232 +S'Arthur L. Flory' +p266411 +sg225240 +g27 +sg225234 +S'color lithograph' +p266412 +sg225230 +S'Pools' +p266413 +sg225236 +S'1965' +p266414 +sa(dp266415 +g225232 +S'Arthur L. Flory' +p266416 +sg225240 +g27 +sg225234 +S'color lithograph' +p266417 +sg225230 +S'Water Surges' +p266418 +sg225236 +S'1965' +p266419 +sa(dp266420 +g225232 +S'Arthur L. Flory' +p266421 +sg225240 +g27 +sg225234 +S'color lithograph' +p266422 +sg225230 +S'Sea Weed' +p266423 +sg225236 +S'1965' +p266424 +sa(dp266425 +g225232 +S'Arthur L. Flory' +p266426 +sg225240 +g27 +sg225234 +S'lithograph' +p266427 +sg225230 +S'Rain on the Beach' +p266428 +sg225236 +S'1965' +p266429 +sa(dp266430 +g225232 +S'Arthur L. Flory' +p266431 +sg225240 +g27 +sg225234 +S'color lithograph' +p266432 +sg225230 +S'Fog' +p266433 +sg225236 +S'1965' +p266434 +sa(dp266435 +g225232 +S'Arthur L. Flory' +p266436 +sg225240 +g27 +sg225234 +S'color lithograph' +p266437 +sg225230 +S'Moonlight Beach' +p266438 +sg225236 +S'1965' +p266439 +sa(dp266440 +g225232 +S'Arthur L. Flory' +p266441 +sg225240 +g27 +sg225234 +S'color lithograph' +p266442 +sg225230 +S'Autumn' +p266443 +sg225236 +S'1964' +p266444 +sa(dp266445 +g225232 +S'Arthur L. Flory' +p266446 +sg225240 +g27 +sg225234 +S'lithograph' +p266447 +sg225230 +S'The Beach' +p266448 +sg225236 +S'1967' +p266449 +sa(dp266450 +g225232 +S'Arthur L. Flory' +p266451 +sg225240 +g27 +sg225234 +S'color lithograph' +p266452 +sg225230 +S'Beach Stones' +p266453 +sg225236 +S'1958' +p266454 +sa(dp266455 +g225232 +S'Arthur L. Flory' +p266456 +sg225240 +g27 +sg225234 +S'lithograph' +p266457 +sg225230 +S'Brotherly Love, Mississippi' +p266458 +sg225236 +S'1964' +p266459 +sa(dp266460 +g225232 +S'Arthur L. Flory' +p266461 +sg225240 +g27 +sg225234 +S'color lithograph' +p266462 +sg225230 +S'Carnival' +p266463 +sg225236 +S'1958' +p266464 +sa(dp266465 +g225232 +S'Arthur L. Flory' +p266466 +sg225240 +g27 +sg225234 +S'lithograph' +p266467 +sg225230 +S'Confused' +p266468 +sg225236 +S'1968' +p266469 +sa(dp266470 +g225232 +S'Arthur L. Flory' +p266471 +sg225240 +g27 +sg225234 +S'color lithograph' +p266472 +sg225230 +S"L'Oiseau et l'oeuf (The Bird and the Egg)" +p266473 +sg225236 +S'1956' +p266474 +sa(dp266475 +g225232 +S'Arthur L. Flory' +p266476 +sg225240 +g27 +sg225234 +S'lithograph in black and red on wove paper' +p266477 +sg225230 +S'Penned Bull' +p266478 +sg225236 +S'1959' +p266479 +sa(dp266480 +g225232 +S'Arthur L. Flory' +p266481 +sg225240 +g27 +sg225234 +S'lithograph' +p266482 +sg225230 +S'So?' +p266483 +sg225236 +S'1967' +p266484 +sa(dp266485 +g225232 +S'Arthur L. Flory' +p266486 +sg225240 +g27 +sg225234 +S'lithograph' +p266487 +sg225230 +S'The Sentinal' +p266488 +sg225236 +S'1958' +p266489 +sa(dp266490 +g225232 +S'Arthur L. Flory' +p266491 +sg225240 +g27 +sg225234 +S'color lithograph' +p266492 +sg225230 +S'Shoreline' +p266493 +sg225236 +S'1958' +p266494 +sa(dp266495 +g225232 +S'Arthur L. Flory' +p266496 +sg225240 +g27 +sg225234 +S'transfer lithograph' +p266497 +sg225230 +S'Ben Spruance' +p266498 +sg225236 +S'1968' +p266499 +sa(dp266500 +g225232 +S'Arthur L. Flory' +p266501 +sg225240 +g27 +sg225234 +S'color lithograph' +p266502 +sg225230 +S"Water's Edge" +p266503 +sg225236 +S'1958' +p266504 +sa(dp266505 +g225232 +S'Arthur L. Flory' +p266506 +sg225240 +g27 +sg225234 +S'color lithograph' +p266507 +sg225230 +S'Water Pattern' +p266508 +sg225236 +S'1958' +p266509 +sa(dp266510 +g225232 +S'Arthur L. Flory' +p266511 +sg225240 +g27 +sg225234 +S'lithograph' +p266512 +sg225230 +S'The Web' +p266513 +sg225236 +S'1966' +p266514 +sa(dp266515 +g225232 +S'Arthur L. Flory' +p266516 +sg225240 +g27 +sg225234 +S'color lithograph' +p266517 +sg225230 +S'Weirs' +p266518 +sg225236 +S'1956' +p266519 +sa(dp266520 +g225232 +S'James Forsberg' +p266521 +sg225240 +g27 +sg225234 +S'cardboard cut' +p266522 +sg225230 +S'Temple' +p266523 +sg225236 +S'1956' +p266524 +sa(dp266525 +g225232 +S'Hans Frank' +p266526 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p266527 +sg225230 +S'Bedraggled Eagle on a Stump' +p266528 +sg225236 +S'unknown date\n' +p266529 +sa(dp266530 +g225232 +S'Antonio Frasconi' +p266531 +sg225240 +g27 +sg225234 +S'color screenprint' +p266532 +sg225230 +S'Greetings from the House of E. Weyhe' +p266533 +sg225236 +S'unknown date\n' +p266534 +sa(dp266535 +g225232 +S'Antonio Frasconi' +p266536 +sg225240 +g27 +sg225234 +S'woodcut in brown-red, black and yellow' +p266537 +sg225230 +S'Summer Pasture' +p266538 +sg225236 +S'unknown date\n' +p266539 +sa(dp266540 +g225232 +S'Johnny Friedlaender' +p266541 +sg225240 +g27 +sg225234 +S'soft-ground etching' +p266542 +sg225230 +S'Christmas Card' +p266543 +sg225236 +S'1953' +p266544 +sa(dp266545 +g225230 +S'Jean Charles Persil' +p266546 +sg225232 +S'Artist Information (' +p266547 +sg225234 +S'French, 1808 - 1879' +p266548 +sg225236 +S'(artist after)' +p266549 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00057/a000577f.jpg' +p266550 +sg225240 +g27 +sa(dp266551 +g225232 +S'Sue Fuller' +p266552 +sg225240 +g27 +sg225234 +S'etching' +p266553 +sg225230 +S"Season's Greeting Card" +p266554 +sg225236 +S'1944' +p266555 +sa(dp266556 +g225232 +S'Sue Fuller' +p266557 +sg225240 +g27 +sg225234 +S'etching' +p266558 +sg225230 +S"Season's Greeting Card" +p266559 +sg225236 +S'1946' +p266560 +sa(dp266561 +g225232 +S'Sue Fuller' +p266562 +sg225240 +g27 +sg225234 +S'color etching' +p266563 +sg225230 +S"Season's Greeting Card" +p266564 +sg225236 +S'1947' +p266565 +sa(dp266566 +g225230 +S'Landscape - Trees, Road, Huts' +p266567 +sg225232 +S'John Fullwood' +p266568 +sg225234 +S'etching' +p266569 +sg225236 +S'unknown date\n' +p266570 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00080/a0008073.jpg' +p266571 +sg225240 +g27 +sa(dp266572 +g225232 +S'Ludovico Gaci' +p266573 +sg225240 +g27 +sg225234 +S'miniature on vellum' +p266574 +sg225230 +S'Saints Peter and Paul' +p266575 +sg225236 +S'1489' +p266576 +sa(dp266577 +g225232 +S'Sears Gallagher' +p266578 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p266579 +sg225230 +S'Houghton Road' +p266580 +sg225236 +S'unknown date\n' +p266581 +sa(dp266582 +g225232 +S'Paul Gavarni' +p266583 +sg225240 +g27 +sg225234 +S'1 vol: ill: 38 lithographs of which 29 are hand-colored (includes trial proofs)' +p266584 +sg225230 +S'Prints from "La boite aux lettres"' +p266585 +sg225236 +S'published 1838' +p266586 +sa(dp266587 +g225230 +S'Wagoner Climbing a Hill (Roulier montant une cote)' +p266588 +sg225232 +S'Th\xc3\xa9odore Gericault' +p266589 +sg225234 +S'lithograph' +p266590 +sg225236 +S'1823' +p266591 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009ac1.jpg' +p266592 +sg225240 +g27 +sa(dp266593 +g225230 +S'Landscape with Log House near a River' +p266594 +sg225232 +S'Artist Information (' +p266595 +sg225234 +S'Dutch, 1565 - 1629' +p266596 +sg225236 +S'(artist)' +p266597 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfaa.jpg' +p266598 +sg225240 +g27 +sa(dp266599 +g225230 +S'Horses' +p266600 +sg225232 +S'Henryk Glicenstein' +p266601 +sg225234 +S'drypoint' +p266602 +sg225236 +S'unknown date\n' +p266603 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000de/a000dedf.jpg' +p266604 +sg225240 +g27 +sa(dp266605 +g225230 +S'Oxcart' +p266606 +sg225232 +S'Henryk Glicenstein' +p266607 +sg225234 +S'drypoint' +p266608 +sg225236 +S'unknown date\n' +p266609 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000de/a000dedc.jpg' +p266610 +sg225240 +g27 +sa(dp266611 +g225232 +S'Helmut Goering' +p266612 +sg225240 +g27 +sg225234 +S', 1969' +p266613 +sg225230 +S'Albertina, Vienna' +p266614 +sg225236 +S'\n' +p266615 +sa(dp266616 +g225232 +S'Chaim Goldberg' +p266617 +sg225240 +g27 +sg225234 +S'linoleum cut' +p266618 +sg225230 +S'Bassist' +p266619 +sg225236 +S'1969' +p266620 +sa(dp266621 +g225232 +S'Chaim Goldberg' +p266622 +sg225240 +g27 +sg225234 +S'drypoint in blue-black' +p266623 +sg225230 +S'The Little Houses (Les petits maisons)' +p266624 +sg225236 +S'1972' +p266625 +sa(dp266626 +g225232 +S'Chaim Goldberg' +p266627 +sg225240 +g27 +sg225234 +S'etching in brown-red' +p266628 +sg225230 +S'Wedding' +p266629 +sg225236 +S'1972' +p266630 +sa(dp266631 +g225230 +S'Two Apprentices Fighting' +p266632 +sg225232 +S'Jean de Gourmont I' +p266633 +sg225234 +S'engraving' +p266634 +sg225236 +S'unknown date\n' +p266635 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a00083ad.jpg' +p266636 +sg225240 +g27 +sa(dp266637 +g225232 +S'Liliana Gramberg' +p266638 +sg225240 +g27 +sg225234 +S'etching' +p266639 +sg225230 +S'Untitled' +p266640 +sg225236 +S'1967' +p266641 +sa(dp266642 +g225230 +S"Je suis veng\xc3\xa9 de toi: l'on te hait, et l'on m'aime" +p266643 +sg225232 +S'Hubert Fran\xc3\xa7ois Gravelot' +p266644 +sg225234 +S'red chalk and graphite on laid paper' +p266645 +sg225236 +S'unknown date\n' +p266646 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f6d.jpg' +p266647 +sg225240 +g27 +sa(dp266648 +g225230 +S'Quoi donc, les vrais Chr\xc3\xa9tiens auraient tant de vertu' +p266649 +sg225232 +S'Hubert Fran\xc3\xa7ois Gravelot' +p266650 +sg225234 +S'red chalk and graphite on laid paper' +p266651 +sg225236 +S'unknown date\n' +p266652 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f9c.jpg' +p266653 +sg225240 +g27 +sa(dp266654 +g225230 +S'Quoi donc, les vrais Chretiens auraient tant de vertu!' +p266655 +sg225232 +S'Artist Information (' +p266656 +sg225234 +S'(artist after)' +p266657 +sg225236 +S'\n' +p266658 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cfd.jpg' +p266659 +sg225240 +g27 +sa(dp266660 +g225230 +S'Calmine, quel objet vient Effrayer ma vue?' +p266661 +sg225232 +S'Hubert Fran\xc3\xa7ois Gravelot' +p266662 +sg225234 +S'graphite on laid paper' +p266663 +sg225236 +S'unknown date\n' +p266664 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f0f.jpg' +p266665 +sg225240 +g27 +sa(dp266666 +g225230 +S'Du plus grand des Romains voil\xc3\xa0 ce qui vous reste' +p266667 +sg225232 +S'Hubert Fran\xc3\xa7ois Gravelot' +p266668 +sg225234 +S'graphite on laid paper' +p266669 +sg225236 +S'unknown date\n' +p266670 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f3e.jpg' +p266671 +sg225240 +g27 +sa(dp266672 +g225230 +S'Quoi! Vous servez Valois...' +p266673 +sg225232 +S'Hubert Fran\xc3\xa7ois Gravelot' +p266674 +sg225234 +S'red chalk and graphite on laid paper' +p266675 +sg225236 +S'unknown date\n' +p266676 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dc9.jpg' +p266677 +sg225240 +g27 +sa(dp266678 +g225230 +S'Mayenne qui de loin voit leur folle Entreprise...' +p266679 +sg225232 +S'Hubert Fran\xc3\xa7ois Gravelot' +p266680 +sg225234 +S'red chalk and graphite on laid paper' +p266681 +sg225236 +S'unknown date\n' +p266682 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d9a.jpg' +p266683 +sg225240 +g27 +sa(dp266684 +g225230 +S'Il monte: il a d\xc3\xa9j\xc3\xa0 de ses mains triomphantes...' +p266685 +sg225232 +S'Hubert Fran\xc3\xa7ois Gravelot' +p266686 +sg225234 +S'graphite on laid paper' +p266687 +sg225236 +S'unknown date\n' +p266688 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d0f.jpg' +p266689 +sg225240 +g27 +sa(dp266690 +g225230 +S'Regne, dit-il, triomphe et sois en tout mon fils' +p266691 +sg225232 +S'Hubert Fran\xc3\xa7ois Gravelot' +p266692 +sg225234 +S'red chalk and graphite on laid paper' +p266693 +sg225236 +S'unknown date\n' +p266694 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d3c.jpg' +p266695 +sg225240 +g27 +sa(dp266696 +g225230 +S'Regne, dit-il, triomphe, et sois en tout mon fils' +p266697 +sg225232 +S'Artist Information (' +p266698 +sg225234 +S'(artist after)' +p266699 +sg225236 +S'\n' +p266700 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d3e.jpg' +p266701 +sg225240 +g27 +sa(dp266702 +g225230 +S'Tremblez malheureux Roi, votre r\xc3\xa9gne est pass\xc3\xa9' +p266703 +sg225232 +S'Artist Information (' +p266704 +sg225234 +S'(artist after)' +p266705 +sg225236 +S'\n' +p266706 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d3d.jpg' +p266707 +sg225240 +g27 +sa(dp266708 +g225230 +S'Tremblez malheureux Roi, votre R\xc3\xa8gne est passe' +p266709 +sg225232 +S'Hubert Fran\xc3\xa7ois Gravelot' +p266710 +sg225234 +S'red chalk and graphite on laid paper' +p266711 +sg225236 +S'unknown date\n' +p266712 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006df7.jpg' +p266713 +sg225240 +g27 +sa(dp266714 +g225230 +S'Ciel! \xc3\xb4 ciel! qui vois-je \xc3\xa0 ses c\xc3\xb4t\xc3\xa9s?' +p266715 +sg225232 +S'Artist Information (' +p266716 +sg225234 +S'(artist after)' +p266717 +sg225236 +S'\n' +p266718 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d3c.jpg' +p266719 +sg225240 +g27 +sa(dp266720 +g225230 +S'Oui, je la connais Traitre, et je connais ton Coeur' +p266721 +sg225232 +S'Hubert Fran\xc3\xa7ois Gravelot' +p266722 +sg225234 +S'red chalk and graphite on laid paper' +p266723 +sg225236 +S'unknown date\n' +p266724 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d6d.jpg' +p266725 +sg225240 +g27 +sa(dp266726 +g225232 +S'Donald Carlisle Greason' +p266727 +sg225240 +g27 +sg225234 +S'pen and black ink with gray wash on wove paper' +p266728 +sg225230 +S'Anchored Sailboats' +p266729 +sg225236 +S'1937' +p266730 +sa(dp266731 +g225232 +S'Donald Carlisle Greason' +p266732 +sg225240 +g27 +sg225234 +S'pen and black ink with gray and brown wash on wove paper' +p266733 +sg225230 +S'Bloch Conducting' +p266734 +sg225236 +S'1939/1940' +p266735 +sa(dp266736 +g225232 +S'Donald Carlisle Greason' +p266737 +sg225240 +g27 +sg225234 +S'pen and black ink with gray wash on wove paper' +p266738 +sg225230 +S'Bridge and Quai' +p266739 +sg225236 +S'1960' +p266740 +sa(dp266741 +g225232 +S'Donald Carlisle Greason' +p266742 +sg225240 +g27 +sg225234 +S'pen and brown ink with gray and brown wash on wove paper' +p266743 +sg225230 +S'Bridge and Trees' +p266744 +sg225236 +S'1959' +p266745 +sa(dp266746 +g225232 +S'Donald Carlisle Greason' +p266747 +sg225240 +g27 +sg225234 +S'pen and black ink on wove paper' +p266748 +sg225230 +S'Cambridge Brickyard' +p266749 +sg225236 +S'1937' +p266750 +sa(dp266751 +g225232 +S'Donald Carlisle Greason' +p266752 +sg225240 +g27 +sg225234 +S'pen and brown ink on wove paper' +p266753 +sg225230 +S'Cap Rouge, Quebec' +p266754 +sg225236 +S'1962' +p266755 +sa(dp266756 +g225232 +S'Donald Carlisle Greason' +p266757 +sg225240 +g27 +sg225234 +S'pen and black ink on wove paper' +p266758 +sg225230 +S'Cemetery' +p266759 +sg225236 +S'1960' +p266760 +sa(dp266761 +g225232 +S'Donald Carlisle Greason' +p266762 +sg225240 +g27 +sg225234 +S'pen and black ink with gray wash on wove paper' +p266763 +sg225230 +S'Charles Basin Motif #1' +p266764 +sg225236 +S'1936' +p266765 +sa(dp266766 +g225232 +S'Donald Carlisle Greason' +p266767 +sg225240 +g27 +sg225234 +S'pen and black on wove paper' +p266768 +sg225230 +S'Church, Shelburne' +p266769 +sg225236 +S'1960' +p266770 +sa(dp266771 +g225232 +S'Donald Carlisle Greason' +p266772 +sg225240 +g27 +sg225234 +S'pen and black ink with gray wash on wove paper' +p266773 +sg225230 +S'Church, Shelburne' +p266774 +sg225236 +S'1961' +p266775 +sa(dp266776 +g225232 +S'Donald Carlisle Greason' +p266777 +sg225240 +g27 +sg225234 +S'pen and black ink with gray wash on wove paper' +p266778 +sg225230 +S'Church and Three Buildings' +p266779 +sg225236 +S'1961' +p266780 +sa(dp266781 +g225232 +S'Donald Carlisle Greason' +p266782 +sg225240 +g27 +sg225234 +S'pen and black ink with brown-gray wash on wove paper' +p266783 +sg225230 +S'Conductor' +p266784 +sg225236 +S'1938' +p266785 +sa(dp266786 +g225232 +S'Donald Carlisle Greason' +p266787 +sg225240 +g27 +sg225234 +S'pen and black ink with brown and gray wash on wove paper' +p266788 +sg225230 +S'Conductor (Bloch?) seen from Audience' +p266789 +sg225236 +S'1939' +p266790 +sa(dp266791 +g225232 +S'Donald Carlisle Greason' +p266792 +sg225240 +g27 +sg225234 +S'pen and black ink with brown wash on wove paper' +p266793 +sg225230 +S'Conductor - Rear View (Stravinsky?)' +p266794 +sg225236 +S'1940' +p266795 +sa(dp266796 +g225232 +S'Donald Carlisle Greason' +p266797 +sg225240 +g27 +sg225234 +S'pen and brown ink on wove paper' +p266798 +sg225230 +S'Conductor and Orchestra' +p266799 +sg225236 +S'1963' +p266800 +sa(dp266801 +g225232 +S'Donald Carlisle Greason' +p266802 +sg225240 +g27 +sg225234 +S'pen and brown ink with brown and orange wash on wove paper' +p266803 +sg225230 +S'The Connecticut at Turners Falls' +p266804 +sg225236 +S'1958' +p266805 +sa(dp266806 +g225232 +S'Donald Carlisle Greason' +p266807 +sg225240 +g27 +sg225234 +S'pen and black ink with gray wash on wove paper' +p266808 +sg225230 +S'Cottage on Dune' +p266809 +sg225236 +S'1938' +p266810 +sa(dp266811 +g225232 +S'Donald Carlisle Greason' +p266812 +sg225240 +g27 +sg225234 +S'pen and brown ink with brown and gray wash on wove paper' +p266813 +sg225230 +S'Crane' +p266814 +sg225236 +S'1960' +p266815 +sa(dp266816 +g225232 +S'Donald Carlisle Greason' +p266817 +sg225240 +g27 +sg225234 +S'pen and black ink on wove paper' +p266818 +sg225230 +S'Cranes and Dunes' +p266819 +sg225236 +S'1937' +p266820 +sa(dp266821 +g225232 +S'Donald Carlisle Greason' +p266822 +sg225240 +g27 +sg225234 +S'pen and brown ink with brown and gray wash on wove paper' +p266823 +sg225230 +S'Crane, Boats, and Dock' +p266824 +sg225236 +S'1938' +p266825 +sa(dp266826 +g225232 +S'Donald Carlisle Greason' +p266827 +sg225240 +g27 +sg225234 +S'pen and brown ink with brown, violet, and green wash on wove paper' +p266828 +sg225230 +S'Deerfield River' +p266829 +sg225236 +S'1942' +p266830 +sa(dp266831 +g225232 +S'Donald Carlisle Greason' +p266832 +sg225240 +g27 +sg225234 +S'pen and black ink with gray, violet, and green wash on wove paper' +p266833 +sg225230 +S'Deerfield River' +p266834 +sg225236 +S'1942' +p266835 +sa(dp266836 +g225232 +S'Donald Carlisle Greason' +p266837 +sg225240 +g27 +sg225234 +S'pen and black ink on wove paper' +p266838 +sg225230 +S'Dory and Smoke Stack' +p266839 +sg225236 +S'1937' +p266840 +sa(dp266841 +g225232 +S'Donald Carlisle Greason' +p266842 +sg225240 +g27 +sg225234 +S'pen and black ink on wove paper' +p266843 +sg225230 +S'Ernest Block Conducting' +p266844 +sg225236 +S'1940' +p266845 +sa(dp266846 +g225232 +S'Donald Carlisle Greason' +p266847 +sg225240 +g27 +sg225234 +S'pen and black ink on wove paper' +p266848 +sg225230 +S'Factory' +p266849 +sg225236 +S'1936' +p266850 +sa(dp266851 +g225232 +S'Donald Carlisle Greason' +p266852 +sg225240 +g27 +sg225234 +S'pen and black ink on wove paper' +p266853 +sg225230 +S'Factory and Bridge Sketches' +p266854 +sg225236 +S'unknown date\n' +p266855 +sa(dp266856 +g225232 +S'Donald Carlisle Greason' +p266857 +sg225240 +g27 +sg225234 +S'charcoal on wove paper' +p266858 +sg225230 +S'Farm, Snow, Hills' +p266859 +sg225236 +S'unknown date\n' +p266860 +sa(dp266861 +g225232 +S'Donald Carlisle Greason' +p266862 +sg225240 +g27 +sg225234 +S'pen and brown ink with brown wash on wove paper' +p266863 +sg225230 +S'Fisherman, Tree, and Outboard' +p266864 +sg225236 +S'1957' +p266865 +sa(dp266866 +g225232 +S'Donald Carlisle Greason' +p266867 +sg225240 +g27 +sg225234 +S'pen and black ink on wove paper' +p266868 +sg225230 +S'Fisticuffs' +p266869 +sg225236 +S'1937' +p266870 +sa(dp266871 +g225232 +S'Donald Carlisle Greason' +p266872 +sg225240 +g27 +sg225234 +S'pen and black ink with gray wash on wove paper' +p266873 +sg225230 +S'Football Players, Harvard' +p266874 +sg225236 +S'unknown date\n' +p266875 +sa(dp266876 +g225232 +S'Donald Carlisle Greason' +p266877 +sg225240 +g27 +sg225234 +S'pen and brown ink with gray wash on wove paper' +p266878 +sg225230 +S'Football Players (?)' +p266879 +sg225236 +S'unknown date\n' +p266880 +sa(dp266881 +g225232 +S'Donald Carlisle Greason' +p266882 +sg225240 +g27 +sg225234 +S'pen and black ink with green-gray wash and colored crayons on wove paper' +p266883 +sg225230 +S'Franklin, New Hampshire' +p266884 +sg225236 +S'1940' +p266885 +sa(dp266886 +g225232 +S'Donald Carlisle Greason' +p266887 +sg225240 +g27 +sg225234 +S'pen and black ink with brown and gray wash on wove paper' +p266888 +sg225230 +S'Gloucester' +p266889 +sg225236 +S'1937' +p266890 +sa(dp266891 +g225232 +S'Donald Carlisle Greason' +p266892 +sg225240 +g27 +sg225234 +S'pen and black ink on wove paper' +p266893 +sg225230 +S'Golfers' +p266894 +sg225236 +S'1936' +p266895 +sa(dp266896 +g225232 +S'Donald Carlisle Greason' +p266897 +sg225240 +g27 +sg225234 +S'pen and brown ink with gray wash on wove paper' +p266898 +sg225230 +S'Golfers in the Tropics' +p266899 +sg225236 +S'1956' +p266900 +sa(dp266901 +g225232 +S'Donald Carlisle Greason' +p266902 +sg225240 +g27 +sg225234 +S'pen and black ink with green wash on wove paper' +p266903 +sg225230 +S'Grey House, from the Beach, Ipswich' +p266904 +sg225236 +S'1937' +p266905 +sa(dp266906 +g225232 +S'Donald Carlisle Greason' +p266907 +sg225240 +g27 +sg225234 +S'pen and brown ink with gray wash on wove paper' +p266908 +sg225230 +S'Head of an Old Man - Trainer' +p266909 +sg225236 +S'1963' +p266910 +sa(dp266911 +g225232 +S'Donald Carlisle Greason' +p266912 +sg225240 +g27 +sg225234 +S'pen and black ink with gray wash on wove paper' +p266913 +sg225230 +S'Howard Hansen Conducting' +p266914 +sg225236 +S'1939' +p266915 +sa(dp266916 +g225232 +S'Donald Carlisle Greason' +p266917 +sg225240 +g27 +sg225234 +S'pen and black ink on wove paper' +p266918 +sg225230 +S'Igor Stravinsky - Head Studies' +p266919 +sg225236 +S'1939' +p266920 +sa(dp266921 +g225232 +S'Donald Carlisle Greason' +p266922 +sg225240 +g27 +sg225234 +S'pen and black ink with gray-brown wash on wove paper' +p266923 +sg225230 +S'Igor Stravinsky Conducting' +p266924 +sg225236 +S'1940' +p266925 +sa(dp266926 +g225232 +S'Donald Carlisle Greason' +p266927 +sg225240 +g27 +sg225234 +S'pen and black ink with violet-gray wash on wove paper' +p266928 +sg225230 +S'Igor Stravinsky Rehearsing' +p266929 +sg225236 +S'1941' +p266930 +sa(dp266931 +g225232 +S'Donald Carlisle Greason' +p266932 +sg225240 +g27 +sg225234 +S'pen and black ink with brown wash on wove paper' +p266933 +sg225230 +S'Indian River, Florida' +p266934 +sg225236 +S'1957' +p266935 +sa(dp266936 +g225232 +S'Donald Carlisle Greason' +p266937 +sg225240 +g27 +sg225234 +S'pen and brown ink with gray and brown wash on wove paper' +p266938 +sg225230 +S'Koussevitzky at Tanglewood' +p266939 +sg225236 +S'1946' +p266940 +sa(dp266941 +g225232 +S'Donald Carlisle Greason' +p266942 +sg225240 +g27 +sg225234 +S'pen and brown ink with gray wash on wove paper' +p266943 +sg225230 +S'Lake and Fence with Mailbox' +p266944 +sg225236 +S'1959' +p266945 +sa(dp266946 +g225232 +S'Donald Carlisle Greason' +p266947 +sg225240 +g27 +sg225234 +S'pen and black ink on wove paper' +p266948 +sg225230 +S'The Last Hole - P.C.C.' +p266949 +sg225236 +S'1936' +p266950 +sa(dp266951 +g225232 +S'Donald Carlisle Greason' +p266952 +sg225240 +g27 +sg225234 +S'pen and black ink with gray wash on wove paper' +p266953 +sg225230 +S'Lighthouse, Rocky Coast' +p266954 +sg225236 +S'1938' +p266955 +sa(dp266956 +g225232 +S'Donald Carlisle Greason' +p266957 +sg225240 +g27 +sg225234 +S'pen and brown ink with gray-brown wash on wove paper' +p266958 +sg225230 +S'Man and Tree and Lake' +p266959 +sg225236 +S'1956' +p266960 +sa(dp266961 +g225232 +S'Donald Carlisle Greason' +p266962 +sg225240 +g27 +sg225234 +S'pen and black ink with gray wash on wove paper' +p266963 +sg225230 +S'Mount Sugarloaf, South Deerfield' +p266964 +sg225236 +S'1961' +p266965 +sa(dp266966 +g225232 +S'Donald Carlisle Greason' +p266967 +sg225240 +g27 +sg225234 +S'pen and black ink with brown wash and colored crayons on wove paper' +p266968 +sg225230 +S'New Jersey Landscape' +p266969 +sg225236 +S'1932' +p266970 +sa(dp266971 +g225232 +S'Donald Carlisle Greason' +p266972 +sg225240 +g27 +sg225234 +S'pen and brown ink with brown wash on wove paper' +p266973 +sg225230 +S'Newfound Lake' +p266974 +sg225236 +S'1939' +p266975 +sa(dp266976 +g225232 +S'Donald Carlisle Greason' +p266977 +sg225240 +g27 +sg225234 +S'pen and black ink with gray wash on wove paper' +p266978 +sg225230 +S'Newfound Lake' +p266979 +sg225236 +S'1940' +p266980 +sa(dp266981 +g225232 +S'Donald Carlisle Greason' +p266982 +sg225240 +g27 +sg225234 +S'pen and black ink on wove paper' +p266983 +sg225230 +S'Ocean Front Houses' +p266984 +sg225236 +S'1937' +p266985 +sa(dp266986 +g225232 +S'Donald Carlisle Greason' +p266987 +sg225240 +g27 +sg225234 +S'pen and black ink with pink and gray wash on wove paper' +p266988 +sg225230 +S'Old Man (Musician series: Stravinsky?)' +p266989 +sg225236 +S'unknown date\n' +p266990 +sa(dp266991 +g225232 +S'Donald Carlisle Greason' +p266992 +sg225240 +g27 +sg225234 +S'pen and black ink with brown wash on wove paper' +p266993 +sg225230 +S'Palms on Coast' +p266994 +sg225236 +S'1957' +p266995 +sa(dp266996 +g225232 +S'Donald Carlisle Greason' +p266997 +sg225240 +g27 +sg225234 +S'pen and black ink with brown wash on wove paper' +p266998 +sg225230 +S'Pilings and Boats' +p266999 +sg225236 +S'1957' +p267000 +sa(dp267001 +g225232 +S'Donald Carlisle Greason' +p267002 +sg225240 +g27 +sg225234 +S'pen and black ink with green and brown wash on wove paper' +p267003 +sg225230 +S'Quarry, Cape Ann' +p267004 +sg225236 +S'1936' +p267005 +sa(dp267006 +g225232 +S'Donald Carlisle Greason' +p267007 +sg225240 +g27 +sg225234 +S'pen and black ink on wove paper' +p267008 +sg225230 +S'River, Smoke Stacks, and Houses' +p267009 +sg225236 +S'1938' +p267010 +sa(dp267011 +g225232 +S'Donald Carlisle Greason' +p267012 +sg225240 +g27 +sg225234 +S'pen and black ink with gray wash on wove paper' +p267013 +sg225230 +S'River, Trees, and Church' +p267014 +sg225236 +S'1937' +p267015 +sa(dp267016 +g225232 +S'Donald Carlisle Greason' +p267017 +sg225240 +g27 +sg225234 +S'pen and black ink with gray wash on wove paper' +p267018 +sg225230 +S'Rockport' +p267019 +sg225236 +S'1937' +p267020 +sa(dp267021 +g225232 +S'Donald Carlisle Greason' +p267022 +sg225240 +g27 +sg225234 +S'pen and black ink with gray and yellow wash on wove paper' +p267023 +sg225230 +S'Rockport, Dawn' +p267024 +sg225236 +S'1937' +p267025 +sa(dp267026 +g225232 +S'Donald Carlisle Greason' +p267027 +sg225240 +g27 +sg225234 +S'pen and black ink with black wash on wove paper' +p267028 +sg225230 +S'Rocks and Cranes' +p267029 +sg225236 +S'1937' +p267030 +sa(dp267031 +g225232 +S'Donald Carlisle Greason' +p267032 +sg225240 +g27 +sg225234 +S'pen and brown ink with blue-gray wash on wove paper' +p267033 +sg225230 +S'Rowing Sketches' +p267034 +sg225236 +S'1963' +p267035 +sa(dp267036 +g225232 +S'Donald Carlisle Greason' +p267037 +sg225240 +g27 +sg225234 +S'pen and black ink on wove paper' +p267038 +sg225230 +S'Sandpit near Provincetown' +p267039 +sg225236 +S'1937' +p267040 +sa(dp267041 +g225232 +S'Donald Carlisle Greason' +p267042 +sg225240 +g27 +sg225234 +S'pen and black ink with gray, green, and brown wash on wove paper' +p267043 +sg225230 +S'Shack on Inlet' +p267044 +sg225236 +S'1937' +p267045 +sa(dp267046 +g225232 +S'Donald Carlisle Greason' +p267047 +sg225240 +g27 +sg225234 +S'pen and brown ink on wove paper' +p267048 +sg225230 +S'Shelburne, Massachusetts' +p267049 +sg225236 +S'1961' +p267050 +sa(dp267051 +g225232 +S'Donald Carlisle Greason' +p267052 +sg225240 +g27 +sg225234 +S'pen and brown ink with gray wash on wove paper' +p267053 +sg225230 +S'Shelburne' +p267054 +sg225236 +S'1966' +p267055 +sa(dp267056 +g225232 +S'Donald Carlisle Greason' +p267057 +sg225240 +g27 +sg225234 +S'pen and brown ink with gray and brown wash on wove paper' +p267058 +sg225230 +S"Shelburne Center from Bordwell's Ferry Road" +p267059 +sg225236 +S'1965' +p267060 +sa(dp267061 +g225232 +S'Donald Carlisle Greason' +p267062 +sg225240 +g27 +sg225234 +S'pen and brown ink with brown and orange wash on wove paper' +p267063 +sg225230 +S'Snowscape' +p267064 +sg225236 +S'1961' +p267065 +sa(dp267066 +g225232 +S'Donald Carlisle Greason' +p267067 +sg225240 +g27 +sg225234 +S'pen and black ink on wove paper' +p267068 +sg225230 +S'Snow Patches, Buckland, Massachusetts' +p267069 +sg225236 +S'1961' +p267070 +sa(dp267071 +g225232 +S'Donald Carlisle Greason' +p267072 +sg225240 +g27 +sg225234 +S'pen and black ink with gray wash on wove paper' +p267073 +sg225230 +S'South Dartmouth, Massachusetts' +p267074 +sg225236 +S'1937' +p267075 +sa(dp267076 +g225232 +S'Donald Carlisle Greason' +p267077 +sg225240 +g27 +sg225234 +S'pen and black ink with brown wash on wove paper' +p267078 +sg225230 +S'Stravinsky' +p267079 +sg225236 +S'1940' +p267080 +sa(dp267081 +g225232 +S'Donald Carlisle Greason' +p267082 +sg225240 +g27 +sg225234 +S'pen and black ink with brown, gray, and violet wash on wove paper' +p267083 +sg225230 +S'Study for "Guns"' +p267084 +sg225236 +S'1935' +p267085 +sa(dp267086 +g225232 +S'Donald Carlisle Greason' +p267087 +sg225240 +g27 +sg225234 +S'pen and black ink with violet-brown wash on wove paper' +p267088 +sg225230 +S'Tanglewood' +p267089 +sg225236 +S'1939' +p267090 +sa(dp267091 +g225232 +S'Donald Carlisle Greason' +p267092 +sg225240 +g27 +sg225234 +S'pen and black ink with brown wash on wove paper' +p267093 +sg225230 +S'Tanglewood' +p267094 +sg225236 +S'1940' +p267095 +sa(dp267096 +g225232 +S'Donald Carlisle Greason' +p267097 +sg225240 +g27 +sg225234 +S'pen and black ink with gray wash on wove paper' +p267098 +sg225230 +S'Three Violinists with Conductor' +p267099 +sg225236 +S'1938' +p267100 +sa(dp267101 +g225232 +S'Donald Carlisle Greason' +p267102 +sg225240 +g27 +sg225234 +S'pen and black ink with gray and brown wash on wove paper' +p267103 +sg225230 +S'Town and Harbor' +p267104 +sg225236 +S'1938' +p267105 +sa(dp267106 +g225232 +S'Donald Carlisle Greason' +p267107 +sg225240 +g27 +sg225234 +S'pen and black ink with gray wash on wove paper' +p267108 +sg225230 +S'Town in Winter' +p267109 +sg225236 +S'unknown date\n' +p267110 +sa(dp267111 +g225232 +S'Donald Carlisle Greason' +p267112 +sg225240 +g27 +sg225234 +S'pen and brown ink with brown wash on wove paper' +p267113 +sg225230 +S'Trees, Bench, Walk' +p267114 +sg225236 +S'1959' +p267115 +sa(dp267116 +g225232 +S'Donald Carlisle Greason' +p267117 +sg225240 +g27 +sg225234 +S'pen and black ink with gray wash on wove paper' +p267118 +sg225230 +S'Trees, Picnic Table, Trash Can' +p267119 +sg225236 +S'1959' +p267120 +sa(dp267121 +g225232 +S'Donald Carlisle Greason' +p267122 +sg225240 +g27 +sg225234 +S'pen and black ink with brown and gray wash on wove paper' +p267123 +sg225230 +S'Two Conductors' +p267124 +sg225236 +S'1939' +p267125 +sa(dp267126 +g225232 +S'Donald Carlisle Greason' +p267127 +sg225240 +g27 +sg225234 +S'pen and black ink on wove paper' +p267128 +sg225230 +S'Two Figures in a Landscape' +p267129 +sg225236 +S'unknown date\n' +p267130 +sa(dp267131 +g225232 +S'Donald Carlisle Greason' +p267132 +sg225240 +g27 +sg225234 +S'pen and black ink on wove paper' +p267133 +sg225230 +S'Two People on Sand Dunes' +p267134 +sg225236 +S'1937' +p267135 +sa(dp267136 +g225232 +S'Donald Carlisle Greason' +p267137 +sg225240 +g27 +sg225234 +S'pen and brown ink with gray wash on wove paper' +p267138 +sg225230 +S'Van Cliburn at Tanglewood' +p267139 +sg225236 +S'1963' +p267140 +sa(dp267141 +g225232 +S'Donald Carlisle Greason' +p267142 +sg225240 +g27 +sg225234 +S'pen and black ink with gray and brown wash on wove paper' +p267143 +sg225230 +S'Wharf and Crane' +p267144 +sg225236 +S'1938' +p267145 +sa(dp267146 +g225232 +S'Donald Carlisle Greason' +p267147 +sg225240 +g27 +sg225234 +S'pen and black ink with brown and gray wash on wove paper' +p267148 +sg225230 +S'Wharf and Rowboat' +p267149 +sg225236 +S'1938' +p267150 +sa(dp267151 +g225232 +S'Donald Carlisle Greason' +p267152 +sg225240 +g27 +sg225234 +S'pen and black ink with gray and brown wash on wove paper' +p267153 +sg225230 +S'Winter Harbor' +p267154 +sg225236 +S'1938' +p267155 +sa(dp267156 +g225232 +S'Bernard Greenwald' +p267157 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p267158 +sg225230 +S'Arrow' +p267159 +sg225236 +S'1966' +p267160 +sa(dp267161 +g225232 +S'Bernard Greenwald' +p267162 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p267163 +sg225230 +S'Circle' +p267164 +sg225236 +S'1965' +p267165 +sa(dp267166 +g225232 +S'Bernard Greenwald' +p267167 +sg225240 +g27 +sg225234 +S'sugar-lift aquatint' +p267168 +sg225230 +S'Dark Still Life' +p267169 +sg225236 +S'1965' +p267170 +sa(dp267171 +g225232 +S'Bernard Greenwald' +p267172 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p267173 +sg225230 +S'Room' +p267174 +sg225236 +S'1965' +p267175 +sa(dp267176 +g225232 +S'Marcel Gromaire' +p267177 +sg225240 +g27 +sg225234 +S'etching' +p267178 +sg225230 +S'The Fishing Boat (La peche en barque)' +p267179 +sg225236 +S'unknown date\n' +p267180 +sa(dp267181 +g225232 +S'Anthony Gross' +p267182 +sg225240 +g27 +sg225234 +S'etching' +p267183 +sg225230 +S'Landscape with Dogs and Pigeons' +p267184 +sg225236 +S'1937' +p267185 +sa(dp267186 +g225232 +S'Anthony Gross' +p267187 +sg225240 +g27 +sg225234 +S'etched and steel-faced copper plate with five cancellation holes' +p267188 +sg225230 +S'Tangled Undergrowth' +p267189 +sg225236 +S'1954' +p267190 +sa(dp267191 +g225232 +S'Anthony Gross' +p267192 +sg225240 +g27 +sg225234 +S'aquatinted and steel-faced copper plate withone cancellation hole' +p267193 +sg225230 +S'Tangled Undergrowth' +p267194 +sg225236 +S'1954' +p267195 +sa(dp267196 +g225232 +S'Anthony Gross' +p267197 +sg225240 +g27 +sg225234 +S'etching [partial proof in black]' +p267198 +sg225230 +S'Tangled Undergrowth' +p267199 +sg225236 +S'1954' +p267200 +sa(dp267201 +g225232 +S'Anthony Gross' +p267202 +sg225240 +g27 +sg225234 +S'color aquatint and drypoint [partial proof]' +p267203 +sg225230 +S'Tangled Undergrowth (Coloured Undergrowth)' +p267204 +sg225236 +S'1954' +p267205 +sa(dp267206 +g225232 +S'Anthony Gross' +p267207 +sg225240 +g27 +sg225234 +S'etching in black with color aquatint and drypoint (printed from two plates), retouched with blue wash' +p267208 +sg225230 +S'Tangled Undergrowth' +p267209 +sg225236 +S'1954' +p267210 +sa(dp267211 +g225232 +S'Richard John Haas' +p267212 +sg225240 +g27 +sg225234 +S'etching' +p267213 +sg225230 +S'Flatiron Building' +p267214 +sg225236 +S'1973' +p267215 +sa(dp267216 +g225232 +S'Richard John Haas' +p267217 +sg225240 +g27 +sg225234 +S'etching' +p267218 +sg225230 +S'New York General Building 74' +p267219 +sg225236 +S'1974' +p267220 +sa(dp267221 +g225232 +S'Richard John Haas' +p267222 +sg225240 +g27 +sg225234 +S'4-color lithograph' +p267223 +sg225230 +S'Pennsylvania Academy' +p267224 +sg225236 +S'1974' +p267225 +sa(dp267226 +g225232 +S'Terry Haass' +p267227 +sg225240 +g27 +sg225234 +S'color etching, engraving, and aquatint' +p267228 +sg225230 +S'Concerto' +p267229 +sg225236 +S'1964' +p267230 +sa(dp267231 +g225232 +S'Terry Haass' +p267232 +sg225240 +g27 +sg225234 +S'aquatint, engraving and etching with scraping and burnishing' +p267233 +sg225230 +S'Night Flight' +p267234 +sg225236 +S'unknown date\n' +p267235 +sa(dp267236 +g225232 +S'Terry Haass' +p267237 +sg225240 +g27 +sg225234 +S'etching and aquatint in black and red' +p267238 +sg225230 +S'Nexus I' +p267239 +sg225236 +S'1964' +p267240 +sa(dp267241 +g225232 +S'Terry Haass' +p267242 +sg225240 +g27 +sg225234 +S'portfolio with introductory page giving title information and poem by Robert Horn, seven color prints and colophon page' +p267243 +sg225230 +S'Nexus' +p267244 +sg225236 +S'published 1968' +p267245 +sa(dp267246 +g225232 +S'Terry Haass' +p267247 +sg225240 +g27 +sg225234 +S'etching, aquatint, and (engraving?) in yellow and blue-green' +p267248 +sg225230 +S'Nexus II' +p267249 +sg225236 +S'1964' +p267250 +sa(dp267251 +g225232 +S'Terry Haass' +p267252 +sg225240 +g27 +sg225234 +S'etching and aquatint in bronze and purple' +p267253 +sg225230 +S'Nexus III' +p267254 +sg225236 +S'1964' +p267255 +sa(dp267256 +g225232 +S'Terry Haass' +p267257 +sg225240 +g27 +sg225234 +S'etching and aquatint in gold and blue' +p267258 +sg225230 +S'Nexus IV' +p267259 +sg225236 +S'1964' +p267260 +sa(dp267261 +g225232 +S'Terry Haass' +p267262 +sg225240 +g27 +sg225234 +S'etching, sugar-lift and aquatint in gold and green' +p267263 +sg225230 +S'Nexus V' +p267264 +sg225236 +S'1964' +p267265 +sa(dp267266 +g225232 +S'Terry Haass' +p267267 +sg225240 +g27 +sg225234 +S'etching and aquatint in red and maroon' +p267268 +sg225230 +S'Nexus VI' +p267269 +sg225236 +S'1964' +p267270 +sa(dp267271 +g225232 +S'Terry Haass' +p267272 +sg225240 +g27 +sg225234 +S'etching and aquatint in gold and green' +p267273 +sg225230 +S'Nexus VII' +p267274 +sg225236 +S'1964' +p267275 +sa(dp267276 +g225232 +S'Terry Haass' +p267277 +sg225240 +g27 +sg225234 +S'mixed intaglio (etching, soft-ground, and engraving) copper plate' +p267278 +sg225230 +S'Belier (Aries)' +p267279 +sg225236 +S'unknown date\n' +p267280 +sa(dp267281 +g225232 +S'Terry Haass' +p267282 +sg225240 +g27 +sg225234 +S'red and black crayon with pencil' +p267283 +sg225230 +S'Belier (Aries)' +p267284 +sg225236 +S'1964' +p267285 +sa(dp267286 +g225232 +S'Terry Haass' +p267287 +sg225240 +g27 +sg225234 +S'portfolio with title page, two sheets with poetry text by Pierre Sauvageot, one drawing, twelve color prints, and colophon page' +p267288 +sg225230 +S'Zodiac' +p267289 +sg225236 +S'published 1964' +p267290 +sa(dp267291 +g225232 +S'Terry Haass' +p267292 +sg225240 +g27 +sg225234 +S'etching, engraving, aquatint, and sugar-lift in red and black' +p267293 +sg225230 +S'Belier (Aries)' +p267294 +sg225236 +S'1964' +p267295 +sa(dp267296 +g225232 +S'Terry Haass' +p267297 +sg225240 +g27 +sg225234 +S'etching, engraving, scraping, and aquatint in red, black, and orange' +p267298 +sg225230 +S'Taureau (Taurus)' +p267299 +sg225236 +S'1964' +p267300 +sa(dp267301 +g225232 +S'Terry Haass' +p267302 +sg225240 +g27 +sg225234 +S'etching, engraving, scraping, and aquatint in orange and black' +p267303 +sg225230 +S'Gemeaux (Gemini)' +p267304 +sg225236 +S'1964' +p267305 +sa(dp267306 +g225232 +S'Terry Haass' +p267307 +sg225240 +g27 +sg225234 +S'etching, engraving, sugar-lift, and aquatint in yellow, orange, and black' +p267308 +sg225230 +S'Cancer' +p267309 +sg225236 +S'1964' +p267310 +sa(dp267311 +g225232 +S'Terry Haass' +p267312 +sg225240 +g27 +sg225234 +S'etehing, engraving, and aquatint in yellow and black' +p267313 +sg225230 +S'Lion (Leo)' +p267314 +sg225236 +S'1964' +p267315 +sa(dp267316 +g225232 +S'Terry Haass' +p267317 +sg225240 +g27 +sg225234 +S'etching, engraving, aquatint, and sugar-lift in yellow, green, and black' +p267318 +sg225230 +S'Vierge (Virgo)' +p267319 +sg225236 +S'1964' +p267320 +sa(dp267321 +g225232 +S'Terry Haass' +p267322 +sg225240 +g27 +sg225234 +S'etching, engraving, and aquatint in green and black' +p267323 +sg225230 +S'Balance (Libra)' +p267324 +sg225236 +S'1964' +p267325 +sa(dp267326 +g225232 +S'Terry Haass' +p267327 +sg225240 +g27 +sg225234 +S'etching, engraving, sugar-lift, and aquatint in blue and black' +p267328 +sg225230 +S'Scorpion (Scorpio)' +p267329 +sg225236 +S'1964' +p267330 +sa(dp267331 +g225232 +S'Terry Haass' +p267332 +sg225240 +g27 +sg225234 +S'etching, engraving, aquatint, and scraping in blue and black' +p267333 +sg225230 +S'Sagittaire (Sagittarius)' +p267334 +sg225236 +S'1964' +p267335 +sa(dp267336 +g225232 +S'Terry Haass' +p267337 +sg225240 +g27 +sg225234 +S'etching, engraving, and aquatint in violet, blue, and black' +p267338 +sg225230 +S'Capricorne (Capricorn)' +p267339 +sg225236 +S'1964' +p267340 +sa(dp267341 +g225232 +S'Terry Haass' +p267342 +sg225240 +g27 +sg225234 +S'etching, engraving, aquatint in black and violet, and scraping' +p267343 +sg225230 +S'Verseau (Aquarius)' +p267344 +sg225236 +S'1964' +p267345 +sa(dp267346 +g225232 +S'Terry Haass' +p267347 +sg225240 +g27 +sg225234 +S'etching, engraving and aquatint in red, violet, and black' +p267348 +sg225230 +S'Poissons (Pisces)' +p267349 +sg225236 +S'1964' +p267350 +sa(dp267351 +g225232 +S'Terry Haass' +p267352 +sg225240 +g27 +sg225234 +S'engraving, aquatint, and sugar-lift in green and blue' +p267353 +sg225230 +S'Leaves of Grass' +p267354 +sg225236 +S'1967' +p267355 +sa(dp267356 +g225232 +S'Terry Haass' +p267357 +sg225240 +g27 +sg225234 +S'color etching, engraving, and aquatint' +p267358 +sg225230 +S'Nebuleuse (Nebula)' +p267359 +sg225236 +S'unknown date\n' +p267360 +sa(dp267361 +g225232 +S'Terry Haass' +p267362 +sg225240 +g27 +sg225234 +S'engraving and (aquatint?) in yellow' +p267363 +sg225230 +S'Untitled' +p267364 +sg225236 +S'unknown date\n' +p267365 +sa(dp267366 +g225232 +S'Terry Haass' +p267367 +sg225240 +g27 +sg225234 +S'engraving, sugar-lift, and aquatint in yellow-brown on Arches paper' +p267368 +sg225230 +S'Untitled' +p267369 +sg225236 +S'unknown date\n' +p267370 +sa(dp267371 +g225232 +S'Shirley Thomson Hadley' +p267372 +sg225240 +g27 +sg225234 +S'wood engraving' +p267373 +sg225230 +S'Old Marblehead' +p267374 +sg225236 +S'1949' +p267375 +sa(dp267376 +g225232 +S'Gustav Hagemann' +p267377 +sg225240 +g27 +sg225234 +S'drypoint' +p267378 +sg225230 +S'Folk Scene: Devil, Christ, Man, Woman, and Animals in a Landscape' +p267379 +sg225236 +S'1937' +p267380 +sa(dp267381 +g225232 +S'Gustav Hagemann' +p267382 +sg225240 +g27 +sg225234 +S'drypoint' +p267383 +sg225230 +S'Folk Scene: Man and Wife, Dog, and Reindeer' +p267384 +sg225236 +S'1937' +p267385 +sa(dp267386 +g225232 +S'Gustav Hagemann' +p267387 +sg225240 +g27 +sg225234 +S'drypoint' +p267388 +sg225230 +S'Folk Scene: Men Driving a Herd of Reindeer across a River' +p267389 +sg225236 +S'1937' +p267390 +sa(dp267391 +g225232 +S'Gustav Hagemann' +p267392 +sg225240 +g27 +sg225234 +S'drypoint' +p267393 +sg225230 +S'Folk Scene: Several Groups of Reindeer and Eskimos' +p267394 +sg225236 +S'1937' +p267395 +sa(dp267396 +g225232 +S'Gustav Hagemann' +p267397 +sg225240 +g27 +sg225234 +S'drypoint' +p267398 +sg225230 +S'Folk Scene: Village Fete' +p267399 +sg225236 +S'unknown date\n' +p267400 +sa(dp267401 +g225232 +S'Hideo Hagiwara' +p267402 +sg225240 +g27 +sg225234 +S'woodcut' +p267403 +sg225230 +S'Midas' +p267404 +sg225236 +S'unknown date\n' +p267405 +sa(dp267406 +g225232 +S'Hideo Hagiwara' +p267407 +sg225240 +g27 +sg225234 +S'woodcut' +p267408 +sg225230 +S'Bacchus' +p267409 +sg225236 +S'unknown date\n' +p267410 +sa(dp267411 +g225232 +S'Hideo Hagiwara' +p267412 +sg225240 +g27 +sg225234 +S'woodcut' +p267413 +sg225230 +S'Herakles' +p267414 +sg225236 +S'unknown date\n' +p267415 +sa(dp267416 +g225232 +S'Hideo Hagiwara' +p267417 +sg225240 +g27 +sg225234 +S'woodcut' +p267418 +sg225230 +S'Danae' +p267419 +sg225236 +S'unknown date\n' +p267420 +sa(dp267421 +g225232 +S'Hideo Hagiwara' +p267422 +sg225240 +g27 +sg225234 +S'woodcut' +p267423 +sg225230 +S'Europa' +p267424 +sg225236 +S'unknown date\n' +p267425 +sa(dp267426 +g225232 +S'Hideo Hagiwara' +p267427 +sg225240 +g27 +sg225234 +S'woodcut' +p267428 +sg225230 +S'Venus' +p267429 +sg225236 +S'unknown date\n' +p267430 +sa(dp267431 +g225232 +S'Haku Maki' +p267432 +sg225240 +g27 +sg225234 +S'relief intaglio, embossed, in black, green, and yellow' +p267433 +sg225230 +S'Rest' +p267434 +sg225236 +S'1973' +p267435 +sa(dp267436 +g225232 +S'Haku Maki' +p267437 +sg225240 +g27 +sg225234 +S'relief intaglio, embossed, in black, purple, and white' +p267438 +sg225230 +S'Snow' +p267439 +sg225236 +S'1973' +p267440 +sa(dp267441 +g225232 +S'Haku Maki' +p267442 +sg225240 +g27 +sg225234 +S'relief intaglio, embossed' +p267443 +sg225230 +S'Woods' +p267444 +sg225236 +S'1973' +p267445 +sa(dp267446 +g225232 +S'Emanuel Haller' +p267447 +sg225240 +g27 +sg225234 +S'drypoint' +p267448 +sg225230 +S'Homage to R.' +p267449 +sg225236 +S'unknown date\n' +p267450 +sa(dp267451 +g225232 +S'Yozo Hamaguchi' +p267452 +sg225240 +g27 +sg225234 +S'color mezzotint' +p267453 +sg225230 +S'Red Butterfly (Papillon rouge)' +p267454 +sg225236 +S'1973' +p267455 +sa(dp267456 +g225232 +S'Yozo Hamaguchi' +p267457 +sg225240 +g27 +sg225234 +S'mezzotint' +p267458 +sg225230 +S'Untitled' +p267459 +sg225236 +S'1973' +p267460 +sa(dp267461 +g225232 +S'Artist Information (' +p267462 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Reaper (b)' +p267463 +sg225236 +S'(printer)' +p267464 +sa(dp267465 +g225232 +S'Artist Information (' +p267466 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Reaper (m)' +p267467 +sg225236 +S'(printer)' +p267468 +sa(dp267469 +g225232 +S'Artist Information (' +p267470 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Reaper (j)' +p267471 +sg225236 +S'(printer)' +p267472 +sa(dp267473 +g225232 +S'Artist Information (' +p267474 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Reaper (e)' +p267475 +sg225236 +S'(printer)' +p267476 +sa(dp267477 +g225232 +S'Sid Hammer' +p267478 +sg225240 +g27 +sg225234 +S'thermo-intaglio' +p267479 +sg225230 +S'Manna' +p267480 +sg225236 +S'1961' +p267481 +sa(dp267482 +g225232 +S'Sid Hammer' +p267483 +sg225240 +g27 +sg225234 +S'polyvinyl chloride plate (inked)' +p267484 +sg225230 +S'Manna' +p267485 +sg225236 +S'1961' +p267486 +sa(dp267487 +g225232 +S'Sid Hammer' +p267488 +sg225240 +g27 +sg225234 +S'thermo-intaglio' +p267489 +sg225230 +S'They Run' +p267490 +sg225236 +S'1964' +p267491 +sa(dp267492 +g225232 +S'Victor Hammer' +p267493 +sg225240 +g27 +sg225234 +S'mezzotint' +p267494 +sg225230 +S'Albrecht, Graf von Bernstorff' +p267495 +sg225236 +S'1926' +p267496 +sa(dp267497 +g225232 +S'Victor Hammer' +p267498 +sg225240 +g27 +sg225234 +S'graphite on wove paper' +p267499 +sg225230 +S'Dr. Viktor von Geramb' +p267500 +sg225236 +S'probably 1935' +p267501 +sa(dp267502 +g225232 +S'Victor Hammer' +p267503 +sg225240 +g27 +sg225234 +S'graphite on wove paper' +p267504 +sg225230 +S'Dr. Viktor von Geramb' +p267505 +sg225236 +S'probably 1935' +p267506 +sa(dp267507 +g225232 +S'Victor Hammer' +p267508 +sg225240 +g27 +sg225234 +S'mezzotint' +p267509 +sg225230 +S'Dr. Viktor von Geramb' +p267510 +sg225236 +S'probably 1935' +p267511 +sa(dp267512 +g225232 +S'Victor Hammer' +p267513 +sg225240 +g27 +sg225234 +S'mezzotint' +p267514 +sg225230 +S'Self-Portrait' +p267515 +sg225236 +S'1925' +p267516 +sa(dp267517 +g225232 +S'Olle Hanspers' +p267518 +sg225240 +g27 +sg225234 +S'etching' +p267519 +sg225230 +S'Untitled' +p267520 +sg225236 +S'1971' +p267521 +sa(dp267522 +g225232 +S'Sheigla Hartman' +p267523 +sg225240 +g27 +sg225234 +S'engraving and soft-ground' +p267524 +sg225230 +S'Au bout de chemin (At the End of the Road)' +p267525 +sg225236 +S'1973' +p267526 +sa(dp267527 +g225232 +S'Sheigla Hartman' +p267528 +sg225240 +g27 +sg225234 +S'engraving' +p267529 +sg225230 +S'Midnight Mistral' +p267530 +sg225236 +S'1973' +p267531 +sa(dp267532 +g225232 +S'Sheigla Hartman' +p267533 +sg225240 +g27 +sg225234 +S'engraving' +p267534 +sg225230 +S'Waiting for the Sun to Rise' +p267535 +sg225236 +S'1974' +p267536 +sa(dp267537 +g225230 +S'Amelia' +p267538 +sg225232 +S'Ernest Haskell' +p267539 +sg225234 +S'stipple engraving' +p267540 +sg225236 +S'unknown date\n' +p267541 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f559.jpg' +p267542 +sg225240 +g27 +sa(dp267543 +g225230 +S'Amelia' +p267544 +sg225232 +S'Ernest Haskell' +p267545 +sg225234 +S'stipple engraving in brown' +p267546 +sg225236 +S'unknown date\n' +p267547 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f55a.jpg' +p267548 +sg225240 +g27 +sa(dp267549 +g225230 +S'Dragons' +p267550 +sg225232 +S'Ernest Haskell' +p267551 +sg225234 +S'drypoint' +p267552 +sg225236 +S'unknown date\n' +p267553 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ab5.jpg' +p267554 +sg225240 +g27 +sa(dp267555 +g225230 +S'The Drawbridge' +p267556 +sg225232 +S'Ernest Haskell' +p267557 +sg225234 +S'etching and drypoint' +p267558 +sg225236 +S'unknown date\n' +p267559 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f55b.jpg' +p267560 +sg225240 +g27 +sa(dp267561 +g225230 +S'El Toro' +p267562 +sg225232 +S'Ernest Haskell' +p267563 +sg225234 +S'etching and engraving' +p267564 +sg225236 +S'unknown date\n' +p267565 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00104/a00104c5.jpg' +p267566 +sg225240 +g27 +sa(dp267567 +g225230 +S'Head of a Woman (Emma)' +p267568 +sg225232 +S'Ernest Haskell' +p267569 +sg225234 +S'etching, engraving, and drypoint' +p267570 +sg225236 +S'unknown date\n' +p267571 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f558.jpg' +p267572 +sg225240 +g27 +sa(dp267573 +g225230 +S'The Hunchback' +p267574 +sg225232 +S'Ernest Haskell' +p267575 +sg225234 +S'etching' +p267576 +sg225236 +S'unknown date\n' +p267577 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f55c.jpg' +p267578 +sg225240 +g27 +sa(dp267579 +g225232 +S'Ernest Haskell' +p267580 +sg225240 +g27 +sg225234 +S'color lithograph [poster]' +p267581 +sg225230 +S'Mrs. Fiske. Mary of Magdala' +p267582 +sg225236 +S'unknown date\n' +p267583 +sa(dp267584 +g225230 +S'Spectre' +p267585 +sg225232 +S'Ernest Haskell' +p267586 +sg225234 +S'etching' +p267587 +sg225236 +S'unknown date\n' +p267588 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f567.jpg' +p267589 +sg225240 +g27 +sa(dp267590 +g225230 +S'The Sylvan Sea' +p267591 +sg225232 +S'Ernest Haskell' +p267592 +sg225234 +S'etching' +p267593 +sg225236 +S'unknown date\n' +p267594 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ab6.jpg' +p267595 +sg225240 +g27 +sa(dp267596 +g225230 +S'Lime Kilns, View in Cumberland' +p267597 +sg225232 +S'John Hassell' +p267598 +sg225234 +S'aquatint' +p267599 +sg225236 +S'1803' +p267600 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d87.jpg' +p267601 +sg225240 +g27 +sa(dp267602 +g225232 +S'Marvin Hayes' +p267603 +sg225240 +g27 +sg225234 +S'etching' +p267604 +sg225230 +S'Result of 20 Years of Rock and Roll' +p267605 +sg225236 +S'unknown date\n' +p267606 +sa(dp267607 +g225230 +S'Greeting Card' +p267608 +sg225232 +S'Stanley William Hayter' +p267609 +sg225234 +S'engraving in black, orange, and blue printed intaglio and relief (stencil and viscosity methods); area of deep intaglio with ink wiped clean' +p267610 +sg225236 +S'1955' +p267611 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c13.jpg' +p267612 +sg225240 +g27 +sa(dp267613 +g225230 +S'Greeting Card for 1944-45' +p267614 +sg225232 +S'Stanley William Hayter' +p267615 +sg225234 +S'engraving and soft-ground etching' +p267616 +sg225236 +S'1944' +p267617 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c15.jpg' +p267618 +sg225240 +g27 +sa(dp267619 +g225230 +S'Greeting Card for 1948-49' +p267620 +sg225232 +S'Stanley William Hayter' +p267621 +sg225234 +S'engraving and soft-ground etching with areas of deep intaglio (printing as white relief) where ink has been wiped clean' +p267622 +sg225236 +S'1948' +p267623 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c17.jpg' +p267624 +sg225240 +g27 +sa(dp267625 +g225230 +S'Greeting Card for 1947-48' +p267626 +sg225232 +S'Stanley William Hayter' +p267627 +sg225234 +S'engraving with areas of deep intaglio (printing as white relief) where ink has been wiped clean' +p267628 +sg225236 +S'1947' +p267629 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c14.jpg' +p267630 +sg225240 +g27 +sa(dp267631 +g225230 +S'Greeting Card for 1946-47' +p267632 +sg225232 +S'Stanley William Hayter' +p267633 +sg225234 +S'engraving and soft-ground etching with areas of deep intaglio (printing as white relief) where ink has been wiped clean' +p267634 +sg225236 +S'1946' +p267635 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c12.jpg' +p267636 +sg225240 +g27 +sa(dp267637 +g225230 +S'Greeting Card for 1952-53' +p267638 +sg225232 +S'Stanley William Hayter' +p267639 +sg225234 +S'color engraving and soft-ground etching printed intaglio and relief (stencil method); areas of deep intaglio with ink wiped clean' +p267640 +sg225236 +S'1952' +p267641 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c16.jpg' +p267642 +sg225240 +g27 +sa(dp267643 +g225230 +S'Greeting Card for 1953-54' +p267644 +sg225232 +S'Stanley William Hayter' +p267645 +sg225234 +S'engraving in black, blue, and pink printed intaglio and relief (stencil method)' +p267646 +sg225236 +S'1953' +p267647 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c1c.jpg' +p267648 +sg225240 +g27 +sa(dp267649 +g225230 +S'Greeting Card for 1954-55 (?)' +p267650 +sg225232 +S'Stanley William Hayter' +p267651 +sg225234 +S'linoleumcut' +p267652 +sg225236 +S'1954' +p267653 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c1b.jpg' +p267654 +sg225240 +g27 +sa(dp267655 +g225230 +S'Greeting Card for 1956-57' +p267656 +sg225232 +S'Stanley William Hayter' +p267657 +sg225234 +S'linoleumcut' +p267658 +sg225236 +S'1956' +p267659 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c18.jpg' +p267660 +sg225240 +g27 +sa(dp267661 +g225230 +S'Greeting Card for 1956-57' +p267662 +sg225232 +S'Stanley William Hayter' +p267663 +sg225234 +S'linoleumcut' +p267664 +sg225236 +S'1956' +p267665 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c19.jpg' +p267666 +sg225240 +g27 +sa(dp267667 +g225232 +S'Stanley William Hayter' +p267668 +sg225240 +g27 +sg225234 +S'color etching (zinc) printed intaglio and relief (viscosity method)' +p267669 +sg225230 +S'Cascade' +p267670 +sg225236 +S'1959' +p267671 +sa(dp267672 +g225230 +S'Danae' +p267673 +sg225232 +S'Stanley William Hayter' +p267674 +sg225234 +S'color engraving w/ open bite and soft-ground etching printed intaglio and relief (viscosity and stencil methods); areas of intaglio w/ ink wiped clean' +p267675 +sg225236 +S'1954' +p267676 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00082/a0008276.jpg' +p267677 +sg225240 +g27 +sa(dp267678 +g225232 +S'Stanley William Hayter' +p267679 +sg225240 +g27 +sg225234 +S'color etching (copper) printed intaglio and relief (viscosity method)' +p267680 +sg225230 +S'Gulf Stream' +p267681 +sg225236 +S'1959' +p267682 +sa(dp267683 +g225230 +S"Lecon d'Anatomie" +p267684 +sg225232 +S'Stanley William Hayter' +p267685 +sg225234 +S'color engraving and soft-ground etching printed intaglio and relief (viscosity and stencil methods);areas of intaglio w/ ink wiped clean [trial proof]' +p267686 +sg225236 +S'1954' +p267687 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00082/a0008277.jpg' +p267688 +sg225240 +g27 +sa(dp267689 +g225232 +S'Stanley William Hayter' +p267690 +sg225240 +g27 +sg225234 +S'color etching (zinc) printed intaglio and relief (viscosity method)' +p267691 +sg225230 +S'Noctiluca' +p267692 +sg225236 +S'1963' +p267693 +sa(dp267694 +g225232 +S'Stanley William Hayter' +p267695 +sg225240 +g27 +sg225234 +S'color etching (zinc) printed intaglio and relief (viscosity method) [trial proof]' +p267696 +sg225230 +S'Onde Verte' +p267697 +sg225236 +S'1965' +p267698 +sa(dp267699 +g225230 +S'Red Flow' +p267700 +sg225232 +S'Stanley William Hayter' +p267701 +sg225234 +S'color etching printed intaglio and relief (viscosity method) on wove paper' +p267702 +sg225236 +S'1963' +p267703 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00082/a0008278.jpg' +p267704 +sg225240 +g27 +sa(dp267705 +g225232 +S'Stanley William Hayter' +p267706 +sg225240 +g27 +sg225234 +S'engraving (copper)' +p267707 +sg225230 +S'Water Veiled' +p267708 +sg225236 +S'1960' +p267709 +sa(dp267710 +g225230 +S'Interior with Two Gentlemen and a Lady' +p267711 +sg225232 +S'Ed. ? Heil' +p267712 +sg225234 +S'etching' +p267713 +sg225236 +S'1879' +p267714 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d83.jpg' +p267715 +sg225240 +g27 +sa(dp267716 +g225230 +S'Doctor Stephen Schwartz' +p267717 +sg225232 +S'Augustin Hirschvogel' +p267718 +sg225234 +S'etching' +p267719 +sg225236 +S'1548' +p267720 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b249.jpg' +p267721 +sg225240 +g27 +sa(dp267722 +g225232 +S'Harry Hoehn' +p267723 +sg225240 +g27 +sg225234 +S'wood engraving in blue' +p267724 +sg225230 +S'Christmas Card' +p267725 +sg225236 +S'1971' +p267726 +sa(dp267727 +g225232 +S'Harry Hoehn' +p267728 +sg225240 +g27 +sg225234 +S'collograph?' +p267729 +sg225230 +S'Christmas Card' +p267730 +sg225236 +S'1973' +p267731 +sa(dp267732 +g225230 +S'A New and Exact Mappe of England' +p267733 +sg225232 +S'Wenceslaus Hollar' +p267734 +sg225234 +S'etching and engraving' +p267735 +sg225236 +S'1644' +p267736 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000db/a000db34.jpg' +p267737 +sg225240 +g27 +sa(dp267738 +g225232 +S'Elisabeth von Holleben' +p267739 +sg225240 +g27 +sg225234 +S'color etching and aquatint on Arches paper' +p267740 +sg225230 +S'English Garden II' +p267741 +sg225236 +S'1976' +p267742 +sa(dp267743 +g225230 +S'Benjamin West' +p267744 +sg225232 +S'Thomas Holloway' +p267745 +sg225234 +S'etching and engraving' +p267746 +sg225236 +S'unknown date\n' +p267747 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a0007718.jpg' +p267748 +sg225240 +g27 +sa(dp267749 +g225230 +S"Talbot's Rose: A Record of the Knights of the Garter, 1486-1589" +p267750 +sg225232 +S'Artist Information (' +p267751 +sg225234 +S'(artist after)' +p267752 +sg225236 +S'\n' +p267753 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d04f.jpg' +p267754 +sg225240 +g27 +sa(dp267755 +g225230 +S'Mythological Marine Subject' +p267756 +sg225232 +S'Artist Information (' +p267757 +sg225234 +S'(artist after)' +p267758 +sg225236 +S'\n' +p267759 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac74.jpg' +p267760 +sg225240 +g27 +sa(dp267761 +g225230 +S'Old Philadelphia' +p267762 +sg225232 +S'Earl Horter' +p267763 +sg225234 +S'etching' +p267764 +sg225236 +S'unknown date\n' +p267765 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f5df.jpg' +p267766 +sg225240 +g27 +sa(dp267767 +g225230 +S'Williamsburg, Coke-Garrett Boxwood Garden' +p267768 +sg225232 +S'Earl Horter' +p267769 +sg225234 +S'etching' +p267770 +sg225236 +S'unknown date\n' +p267771 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00105/a0010572.jpg' +p267772 +sg225240 +g27 +sa(dp267773 +g225230 +S'Williamsburg, Ludwell-Paradise House' +p267774 +sg225232 +S'Earl Horter' +p267775 +sg225234 +S'etching' +p267776 +sg225236 +S'unknown date\n' +p267777 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00105/a0010571.jpg' +p267778 +sg225240 +g27 +sa(dp267779 +g225230 +S'Williamsburg, Old Raleigh Tavern' +p267780 +sg225232 +S'Earl Horter' +p267781 +sg225234 +S'etching' +p267782 +sg225236 +S'unknown date\n' +p267783 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00105/a0010570.jpg' +p267784 +sg225240 +g27 +sa(dp267785 +g225232 +S'Katrine Van Houten' +p267786 +sg225240 +g27 +sg225234 +S'screenprint' +p267787 +sg225230 +S'Hills Seen Through an Octagon' +p267788 +sg225236 +S'1969' +p267789 +sa(dp267790 +g225230 +S'Le souper des philosophes' +p267791 +sg225232 +S'Jean Huber' +p267792 +sg225234 +S'etching with gray wash on blue paper' +p267793 +sg225236 +S'unknown date\n' +p267794 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef8f.jpg' +p267795 +sg225240 +g27 +sa(dp267796 +g225232 +S'Ian Hugo' +p267797 +sg225240 +g27 +sg225234 +S'reverse lucite cast taken from the original copperplate' +p267798 +sg225230 +S'Breathing Grass' +p267799 +sg225236 +S'unknown date\n' +p267800 +sa(dp267801 +g225232 +S'Ian Hugo' +p267802 +sg225240 +g27 +sg225234 +S'engraving and drypoint' +p267803 +sg225230 +S'Breathing Grass' +p267804 +sg225236 +S'unknown date\n' +p267805 +sa(dp267806 +g225232 +S'Ian Hugo' +p267807 +sg225240 +g27 +sg225234 +S'engraving [proof from lucite cast of copper plate]' +p267808 +sg225230 +S'Breathing Grass' +p267809 +sg225236 +S'unknown date\n' +p267810 +sa(dp267811 +g225232 +S'Ian Hugo' +p267812 +sg225240 +g27 +sg225234 +S'engraving [proof from lucite cast of copper plate]' +p267813 +sg225230 +S'Breathing Grass' +p267814 +sg225236 +S'unknown date\n' +p267815 +sa(dp267816 +g225232 +S'Ian Hugo' +p267817 +sg225240 +g27 +sg225234 +S'engraving [proof from lucite cast of copper plate]' +p267818 +sg225230 +S'Breathing Grass' +p267819 +sg225236 +S'unknown date\n' +p267820 +sa(dp267821 +g225232 +S'Ian Hugo' +p267822 +sg225240 +g27 +sg225234 +S'engraving [proof from lucite cast of copper plate]' +p267823 +sg225230 +S'Breathing Grass' +p267824 +sg225236 +S'unknown date\n' +p267825 +sa(dp267826 +g225232 +S'Ian Hugo' +p267827 +sg225240 +g27 +sg225234 +S'engraving [proof from lucite cast of copper plate]' +p267828 +sg225230 +S'Breathing Grass' +p267829 +sg225236 +S'unknown date\n' +p267830 +sa(dp267831 +g225230 +S'Landscape' +p267832 +sg225232 +S'Victor Hugo' +p267833 +sg225234 +S', 1868' +p267834 +sg225236 +S'\n' +p267835 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00060/a000601d.jpg' +p267836 +sg225240 +g27 +sa(dp267837 +g225230 +S'King Henry VII' +p267838 +sg225232 +S'Artist Information (' +p267839 +sg225234 +S'(artist after)' +p267840 +sg225236 +S'\n' +p267841 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a0007716.jpg' +p267842 +sg225240 +g27 +sa(dp267843 +g225232 +S'Kyu-Baik Hwang' +p267844 +sg225240 +g27 +sg225234 +S'color soft-ground etching' +p267845 +sg225230 +S'Conte de la Pierre' +p267846 +sg225236 +S'1969' +p267847 +sa(dp267848 +g225232 +S'Kyu-Baik Hwang' +p267849 +sg225240 +g27 +sg225234 +S'color soft-ground etching' +p267850 +sg225230 +S'Les Paroles Calmes' +p267851 +sg225236 +S'1968' +p267852 +sa(dp267853 +g225232 +S'Kyu-Baik Hwang' +p267854 +sg225240 +g27 +sg225234 +S'color soft-ground etching' +p267855 +sg225230 +S'Messager - III' +p267856 +sg225236 +S'1969' +p267857 +sa(dp267858 +g225232 +S'Kyu-Baik Hwang' +p267859 +sg225240 +g27 +sg225234 +S'color intaglio' +p267860 +sg225230 +S'The Milky Way' +p267861 +sg225236 +S'unknown date\n' +p267862 +sa(dp267863 +g225232 +S'Kyu-Baik Hwang' +p267864 +sg225240 +g27 +sg225234 +S'color soft-ground etching' +p267865 +sg225230 +S"Origine de l'Histoir - II" +p267866 +sg225236 +S'1968' +p267867 +sa(dp267868 +g225232 +S'Kyu-Baik Hwang' +p267869 +sg225240 +g27 +sg225234 +S'color soft-ground etching' +p267870 +sg225230 +S'Secheresse - II' +p267871 +sg225236 +S'1969' +p267872 +sa(dp267873 +g225232 +S'Fukushima Ichiro' +p267874 +sg225240 +g27 +sg225234 +S'woodcut' +p267875 +sg225230 +S'Sea of Cuba' +p267876 +sg225236 +S'unknown date\n' +p267877 +sa(dp267878 +g225232 +S'John Livingston Ihle' +p267879 +sg225240 +g27 +sg225234 +S'etching in brown' +p267880 +sg225230 +S'Animal Kingdom' +p267881 +sg225236 +S'1958' +p267882 +sa(dp267883 +g225230 +S'Entr\xc3\xa9e du village des Bains' +p267884 +sg225232 +S'Artist Information (' +p267885 +sg225234 +S'(artist)' +p267886 +sg225236 +S'\n' +p267887 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009ae0.jpg' +p267888 +sg225240 +g27 +sa(dp267889 +g225232 +S'Shigeru Izumi' +p267890 +sg225240 +g27 +sg225234 +S'lithograph' +p267891 +sg225230 +S'Untitled' +p267892 +sg225236 +S'1962' +p267893 +sa(dp267894 +g225230 +S'Barbizon: Foret de Fontainbleau' +p267895 +sg225232 +S'Maurice Jacque' +p267896 +sg225234 +S'lithograph and aquatint' +p267897 +sg225236 +S'unknown date\n' +p267898 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009af8.jpg' +p267899 +sg225240 +g27 +sa(dp267900 +g225230 +S'Barbizon: La maison de garde' +p267901 +sg225232 +S'Maurice Jacque' +p267902 +sg225234 +S'lithograph and aquatint' +p267903 +sg225236 +S'unknown date\n' +p267904 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009afb.jpg' +p267905 +sg225240 +g27 +sa(dp267906 +g225230 +S'Five Pieces of China' +p267907 +sg225232 +S'Jules-Ferdinand Jacquemart' +p267908 +sg225234 +S'etching' +p267909 +sg225236 +S'unknown date\n' +p267910 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a00098be.jpg' +p267911 +sg225240 +g27 +sa(dp267912 +g225232 +S'Angela Bing Jansen' +p267913 +sg225240 +g27 +sg225234 +S'intaglio and photo-etching' +p267914 +sg225230 +S'From the Bridge' +p267915 +sg225236 +S'1970' +p267916 +sa(dp267917 +g225232 +S'Solomon Borisovich Judovin' +p267918 +sg225240 +g27 +sg225234 +S'woodcut' +p267919 +sg225230 +S'Man by a Lantern' +p267920 +sg225236 +S'1926' +p267921 +sa(dp267922 +g225232 +S'Solomon Borisovich Judovin' +p267923 +sg225240 +g27 +sg225234 +S'woodcut' +p267924 +sg225230 +S"Bootmaker's Cottage" +p267925 +sg225236 +S'1928' +p267926 +sa(dp267927 +g225232 +S'Solomon Borisovich Judovin' +p267928 +sg225240 +g27 +sg225234 +S'woodcut' +p267929 +sg225230 +S'Demonstrators with Flags' +p267930 +sg225236 +S'1926' +p267931 +sa(dp267932 +g225232 +S'Solomon Borisovich Judovin' +p267933 +sg225240 +g27 +sg225234 +S'woodcut' +p267934 +sg225230 +S'Shoemaker' +p267935 +sg225236 +S'1926' +p267936 +sa(dp267937 +g225232 +S'Solomon Borisovich Judovin' +p267938 +sg225240 +g27 +sg225234 +S'woodcut' +p267939 +sg225230 +S'Street with Tavern Lantern' +p267940 +sg225236 +S'1926' +p267941 +sa(dp267942 +g225232 +S'Solomon Borisovich Judovin' +p267943 +sg225240 +g27 +sg225234 +S'woodcut' +p267944 +sg225230 +S'3 Vignettes' +p267945 +sg225236 +S'1929' +p267946 +sa(dp267947 +g225232 +S'Solomon Borisovich Judovin' +p267948 +sg225240 +g27 +sg225234 +S'woodcut' +p267949 +sg225230 +S'4 Vignettes' +p267950 +sg225236 +S'unknown date\n' +p267951 +sa(dp267952 +g225232 +S'Solomon Borisovich Judovin' +p267953 +sg225240 +g27 +sg225234 +S'woodcut' +p267954 +sg225230 +S'2 Vignettes' +p267955 +sg225236 +S'1929' +p267956 +sa(dp267957 +g225232 +S'Solomon Borisovich Judovin' +p267958 +sg225240 +g27 +sg225234 +S'woodcut' +p267959 +sg225230 +S'Woman Seated in a Cottage' +p267960 +sg225236 +S'1926' +p267961 +sa(dp267962 +g225232 +S'Solomon Borisovich Judovin' +p267963 +sg225240 +g27 +sg225234 +S'woodcut' +p267964 +sg225230 +S'Man and Woman by a Lantern' +p267965 +sg225236 +S'1928' +p267966 +sa(dp267967 +g225232 +S'Solomon Borisovich Judovin' +p267968 +sg225240 +g27 +sg225234 +S'woodcut' +p267969 +sg225230 +S'5 Vignettes' +p267970 +sg225236 +S'1933' +p267971 +sa(dp267972 +g225232 +S'Solomon Borisovich Judovin' +p267973 +sg225240 +g27 +sg225234 +S'woodcut' +p267974 +sg225230 +S'Woman at the Well' +p267975 +sg225236 +S'1926' +p267976 +sa(dp267977 +g225232 +S'Solomon Borisovich Judovin' +p267978 +sg225240 +g27 +sg225234 +S'woodcut' +p267979 +sg225230 +S'Funeral Procession' +p267980 +sg225236 +S'1926' +p267981 +sa(dp267982 +g225232 +S'Jerome Kaplan' +p267983 +sg225240 +g27 +sg225234 +S'offset lithograph' +p267984 +sg225230 +S'Compote' +p267985 +sg225236 +S'1969' +p267986 +sa(dp267987 +g225232 +S'Jerome Kaplan' +p267988 +sg225240 +g27 +sg225234 +S'color lithograph' +p267989 +sg225230 +S'French Leaves' +p267990 +sg225236 +S'1972' +p267991 +sa(dp267992 +g225232 +S'Jerome Kaplan' +p267993 +sg225240 +g27 +sg225234 +S'lithograph' +p267994 +sg225230 +S'Interlude' +p267995 +sg225236 +S'1957' +p267996 +sa(dp267997 +g225232 +S'Jerome Kaplan' +p267998 +sg225240 +g27 +sg225234 +S'color lithograph' +p267999 +sg225230 +S'Jive Dude' +p268000 +sg225236 +S'1972' +p268001 +sa(dp268002 +g225232 +S'Jerome Kaplan' +p268003 +sg225240 +g27 +sg225234 +S'color lithograph' +p268004 +sg225230 +S'Reve Rite' +p268005 +sg225236 +S'1972' +p268006 +sa(dp268007 +g225232 +S'Jerome Kaplan' +p268008 +sg225240 +g27 +sg225234 +S'pen and black ink with rubber stamps (gray) on wove paper' +p268009 +sg225230 +S'Sketch for a Get Well Card' +p268010 +sg225236 +S'1973' +p268011 +sa(dp268012 +g225232 +S'Jerome Kaplan' +p268013 +sg225240 +g27 +sg225234 +S'etching' +p268014 +sg225230 +S'After the Passion' +p268015 +sg225236 +S'1968' +p268016 +sa(dp268017 +g225232 +S'Jerome Kaplan' +p268018 +sg225240 +g27 +sg225234 +S'collotype with watercolor and pencil' +p268019 +sg225230 +S'Happy Birthday, LJR' +p268020 +sg225236 +S'1976' +p268021 +sa(dp268022 +g225232 +S'Jerome Kaplan' +p268023 +sg225240 +g27 +sg225234 +S'etching' +p268024 +sg225230 +S"Max's Helmet" +p268025 +sg225236 +S'1971' +p268026 +sa(dp268027 +g225232 +S'Jerome Kaplan' +p268028 +sg225240 +g27 +sg225234 +S'gum bichromate' +p268029 +sg225230 +S"New Year's Card" +p268030 +sg225236 +S'unknown date\n' +p268031 +sa(dp268032 +g225232 +S'Jerome Kaplan' +p268033 +sg225240 +g27 +sg225234 +S'etching, engraving, and aquatint' +p268034 +sg225230 +S'Ardmore Reminiscences: Toward Wynnewood, c. 1927' +p268035 +sg225236 +S'1969' +p268036 +sa(dp268037 +g225232 +S'Mark Karnes' +p268038 +sg225240 +g27 +sg225234 +S'graphite' +p268039 +sg225230 +S'Figure' +p268040 +sg225236 +S'1972' +p268041 +sa(dp268042 +g225232 +S'Artist Information (' +p268043 +sg225240 +g27 +sg225234 +S'(artist after)' +p268044 +sg225230 +S"Ingres Copy (Comtesse d'Haussonville, Frick Collection)" +p268045 +sg225236 +S'\n' +p268046 +sa(dp268047 +g225232 +S'Mark Karnes' +p268048 +sg225240 +g27 +sg225234 +S'graphite on paperboard' +p268049 +sg225230 +S'Karen' +p268050 +sg225236 +S'1968' +p268051 +sa(dp268052 +g225232 +S'Mark Karnes' +p268053 +sg225240 +g27 +sg225234 +S'graphite on wove paper' +p268054 +sg225230 +S'Stone Roberts' +p268055 +sg225236 +S'1972' +p268056 +sa(dp268057 +g225232 +S'Mark Karnes' +p268058 +sg225240 +g27 +sg225234 +S'graphite' +p268059 +sg225230 +S'Self-Portrait' +p268060 +sg225236 +S'1971' +p268061 +sa(dp268062 +g225232 +S'Mark Karnes' +p268063 +sg225240 +g27 +sg225234 +S'graphite with watercolor (browns) on wove paper' +p268064 +sg225230 +S'Yale Landscape' +p268065 +sg225236 +S'1972' +p268066 +sa(dp268067 +g225232 +S'Akiro Katori' +p268068 +sg225240 +g27 +sg225234 +S'color relief print' +p268069 +sg225230 +S'Untitled' +p268070 +sg225236 +S'1967' +p268071 +sa(dp268072 +g225232 +S'Wilford Wayne Kimball, Jr.' +p268073 +sg225240 +g27 +sg225234 +S'lithograph' +p268074 +sg225230 +S'Orville Awrfice' +p268075 +sg225236 +S'1974' +p268076 +sa(dp268077 +g225232 +S'Wilford Wayne Kimball, Jr.' +p268078 +sg225240 +g27 +sg225234 +S'stone engraving and lithograph' +p268079 +sg225230 +S'Untitled' +p268080 +sg225236 +S'1970' +p268081 +sa(dp268082 +g225232 +S'Wilford Wayne Kimball, Jr.' +p268083 +sg225240 +g27 +sg225234 +S'stone engraving and lithograph' +p268084 +sg225230 +S'Untitled' +p268085 +sg225236 +S'1973' +p268086 +sa(dp268087 +g225230 +S'Woman Dancing with a Parrot' +p268088 +sg225232 +S'Troy Kinney' +p268089 +sg225234 +S'drypoint' +p268090 +sg225236 +S'1915' +p268091 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00116/a001163c.jpg' +p268092 +sg225240 +g27 +sa(dp268093 +g225232 +S'Charles S. Klabunde' +p268094 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p268095 +sg225230 +S'Genesis I' +p268096 +sg225236 +S'unknown date\n' +p268097 +sa(dp268098 +g225232 +S'Charles S. Klabunde' +p268099 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p268100 +sg225230 +S'Genesis II' +p268101 +sg225236 +S'unknown date\n' +p268102 +sa(dp268103 +g225232 +S'Charles S. Klabunde' +p268104 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p268105 +sg225230 +S'Genesis III' +p268106 +sg225236 +S'unknown date\n' +p268107 +sa(dp268108 +g225232 +S'Charles S. Klabunde' +p268109 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p268110 +sg225230 +S'Genesis IV' +p268111 +sg225236 +S'unknown date\n' +p268112 +sa(dp268113 +g225232 +S'Gene Kloss' +p268114 +sg225240 +g27 +sg225234 +S'drypoint and aquatint' +p268115 +sg225230 +S'Moonlight Circle Dance' +p268116 +sg225236 +S'1956' +p268117 +sa(dp268118 +g225230 +S'Lactuca Perennis' +p268119 +sg225232 +S'Johann Hieronymus Kniphof' +p268120 +sg225234 +S'pressed and dried plant inked and pressed between two sheets of paper' +p268121 +sg225236 +S'published 1757/1764' +p268122 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b35d.jpg' +p268123 +sg225240 +g27 +sa(dp268124 +g225230 +S'Hieracium Cymosum' +p268125 +sg225232 +S'Johann Hieronymus Kniphof' +p268126 +sg225234 +S'pressed and dried plant inked and pressed between two sheets of paper' +p268127 +sg225236 +S'published 1757/1764' +p268128 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b35e.jpg' +p268129 +sg225240 +g27 +sa(dp268130 +g225230 +S'Carduus Maarianus' +p268131 +sg225232 +S'Johann Hieronymus Kniphof' +p268132 +sg225234 +S'pressed and dried plant inked and pressed between two sheets of paper' +p268133 +sg225236 +S'published 1757/1764' +p268134 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b35c.jpg' +p268135 +sg225240 +g27 +sa(dp268136 +g225230 +S'Carduus Lanceolatus' +p268137 +sg225232 +S'Johann Hieronymus Kniphof' +p268138 +sg225234 +S'pressed and dried plant inked and pressed between two sheets of paper' +p268139 +sg225236 +S'published 1757/1764' +p268140 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b35b.jpg' +p268141 +sg225240 +g27 +sa(dp268142 +g225230 +S'Pteris Aquilina' +p268143 +sg225232 +S'Johann Hieronymus Kniphof' +p268144 +sg225234 +S'pressed and dried plant inked and pressed between two sheets of paper' +p268145 +sg225236 +S'published 1757/1764' +p268146 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b35a.jpg' +p268147 +sg225240 +g27 +sa(dp268148 +g225232 +S'Misch Kohn' +p268149 +sg225240 +g27 +sg225234 +S'etching (sugarlift?)' +p268150 +sg225230 +S'Lion' +p268151 +sg225236 +S'1957' +p268152 +sa(dp268153 +g225232 +S'Misch Kohn' +p268154 +sg225240 +g27 +sg225234 +S'etching printed in relief with some aquatint on China paper' +p268155 +sg225230 +S'Patriarch' +p268156 +sg225236 +S'1962' +p268157 +sa(dp268158 +g225232 +S'Joan L. Kopchik' +p268159 +sg225240 +g27 +sg225234 +S'graphite' +p268160 +sg225230 +S'Spiral Forms' +p268161 +sg225236 +S'1976' +p268162 +sa(dp268163 +g225232 +S'Jacob Landau' +p268164 +sg225240 +g27 +sg225234 +S'lithograph' +p268165 +sg225230 +S'Attica' +p268166 +sg225236 +S'unknown date\n' +p268167 +sa(dp268168 +g225230 +S'Frieze of Ornament' +p268169 +sg225232 +S'Johann Ladenspelder' +p268170 +sg225234 +S'engraving' +p268171 +sg225236 +S'unknown date\n' +p268172 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acae.jpg' +p268173 +sg225240 +g27 +sa(dp268174 +g225232 +S'Artist Information (' +p268175 +sg225240 +g27 +sg225234 +S'(artist after)' +p268176 +sg225230 +S'Market Scene in Transylvania' +p268177 +sg225236 +S'\n' +p268178 +sa(dp268179 +g225232 +S'Tadeusz Lapinski' +p268180 +sg225240 +g27 +sg225234 +S'color lithograph and relief' +p268181 +sg225230 +S'Accelerator' +p268182 +sg225236 +S'1971' +p268183 +sa(dp268184 +g225232 +S'Tadeusz Lapinski' +p268185 +sg225240 +g27 +sg225234 +S'color lithograph and relief' +p268186 +sg225230 +S'Cyclotron' +p268187 +sg225236 +S'1971' +p268188 +sa(dp268189 +g225232 +S'Tadeusz Lapinski' +p268190 +sg225240 +g27 +sg225234 +S'color lithograph' +p268191 +sg225230 +S'Machine Age' +p268192 +sg225236 +S'1971' +p268193 +sa(dp268194 +g225232 +S'Tadeusz Lapinski' +p268195 +sg225240 +g27 +sg225234 +S'color lithograph' +p268196 +sg225230 +S'Softspeakers' +p268197 +sg225236 +S'1971' +p268198 +sa(dp268199 +g225232 +S'Francisco Larez' +p268200 +sg225240 +g27 +sg225234 +S'color relief print' +p268201 +sg225230 +S'LXXVII-F' +p268202 +sg225236 +S'1965' +p268203 +sa(dp268204 +g225232 +S'Francisco Larez' +p268205 +sg225240 +g27 +sg225234 +S'color relief print' +p268206 +sg225230 +S'LXXVII-F' +p268207 +sg225236 +S'1965' +p268208 +sa(dp268209 +g225232 +S'Victor Lasuchin' +p268210 +sg225240 +g27 +sg225234 +S'lithograph' +p268211 +sg225230 +S'"After Apple Picking" by Robert Frost' +p268212 +sg225236 +S'1970' +p268213 +sa(dp268214 +g225230 +S'Macbeth V (The Vision of Lady Macbeth)' +p268215 +sg225232 +S'Wilhelm Lehmbruck' +p268216 +sg225234 +S'etching and drypoint' +p268217 +sg225236 +S'1918' +p268218 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c45a.jpg' +p268219 +sg225240 +g27 +sa(dp268220 +g225232 +S'Leonard Lehrer' +p268221 +sg225240 +g27 +sg225234 +S'lithograph in black and cream' +p268222 +sg225230 +S'Blenheim' +p268223 +sg225236 +S'1972' +p268224 +sa(dp268225 +g225232 +S'Leonard Lehrer' +p268226 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Study for Classical Landscape' +p268227 +sg225236 +S'1967' +p268228 +sa(dp268229 +g225232 +S'Leonard Lehrer' +p268230 +sg225240 +g27 +sg225234 +S'power burin engraving' +p268231 +sg225230 +S'Classical Landscape' +p268232 +sg225236 +S'1967' +p268233 +sa(dp268234 +g225232 +S'Leonard Lehrer' +p268235 +sg225240 +g27 +sg225234 +S'power burin engraving' +p268236 +sg225230 +S'Classical Landscape' +p268237 +sg225236 +S'1967' +p268238 +sa(dp268239 +g225232 +S'Leonard Lehrer' +p268240 +sg225240 +g27 +sg225234 +S'power burin engraving' +p268241 +sg225230 +S'Classical Landscape' +p268242 +sg225236 +S'1967' +p268243 +sa(dp268244 +g225232 +S'Leonard Lehrer' +p268245 +sg225240 +g27 +sg225234 +S'power burin engraving' +p268246 +sg225230 +S'Classical Landscape' +p268247 +sg225236 +S'1967' +p268248 +sa(dp268249 +g225232 +S'Leonard Lehrer' +p268250 +sg225240 +g27 +sg225234 +S'power burin engraving' +p268251 +sg225230 +S'Classical Landscape' +p268252 +sg225236 +S'1967' +p268253 +sa(dp268254 +g225232 +S'Leonard Lehrer' +p268255 +sg225240 +g27 +sg225234 +S'power-burin engraved zinc plate' +p268256 +sg225230 +S'Classical Garden' +p268257 +sg225236 +S'1967' +p268258 +sa(dp268259 +g225232 +S'Leonard Lehrer' +p268260 +sg225240 +g27 +sg225234 +S'power burin engraving' +p268261 +sg225230 +S'Fields' +p268262 +sg225236 +S'1966' +p268263 +sa(dp268264 +g225232 +S'Leonard Lehrer' +p268265 +sg225240 +g27 +sg225234 +S'color lithograph' +p268266 +sg225230 +S'Formal Garden' +p268267 +sg225236 +S'1975' +p268268 +sa(dp268269 +g225232 +S'Leonard Lehrer' +p268270 +sg225240 +g27 +sg225234 +S'power burin engraving' +p268271 +sg225230 +S'Fourteen Ideas' +p268272 +sg225236 +S'unknown date\n' +p268273 +sa(dp268274 +g225232 +S'Leonard Lehrer' +p268275 +sg225240 +g27 +sg225234 +S'engraving (stone) on chine colle' +p268276 +sg225230 +S'Garden I' +p268277 +sg225236 +S'1971' +p268278 +sa(dp268279 +g225232 +S'Leonard Lehrer' +p268280 +sg225240 +g27 +sg225234 +S'power burin engraving' +p268281 +sg225230 +S'Landscape' +p268282 +sg225236 +S'1966' +p268283 +sa(dp268284 +g225232 +S'Leonard Lehrer' +p268285 +sg225240 +g27 +sg225234 +S'power burin engraving' +p268286 +sg225230 +S'Landscape' +p268287 +sg225236 +S'1966' +p268288 +sa(dp268289 +g225232 +S'Leonard Lehrer' +p268290 +sg225240 +g27 +sg225234 +S'power burin engraving' +p268291 +sg225230 +S'Park' +p268292 +sg225236 +S'1967' +p268293 +sa(dp268294 +g225232 +S'Leonard Lehrer' +p268295 +sg225240 +g27 +sg225234 +S'lithograph' +p268296 +sg225230 +S'Rousham' +p268297 +sg225236 +S'1972' +p268298 +sa(dp268299 +g225232 +S'Leonard Lehrer' +p268300 +sg225240 +g27 +sg225234 +S'color lithograph' +p268301 +sg225230 +S'Tlalmanalco I' +p268302 +sg225236 +S'1975' +p268303 +sa(dp268304 +g225232 +S'Leonard Lehrer' +p268305 +sg225240 +g27 +sg225234 +S'color lithograph' +p268306 +sg225230 +S'Tlalmanalco II' +p268307 +sg225236 +S'1975' +p268308 +sa(dp268309 +g225232 +S'Leonard Lehrer' +p268310 +sg225240 +g27 +sg225234 +S'color lithograph' +p268311 +sg225230 +S'Tlalmanalco III' +p268312 +sg225236 +S'1975' +p268313 +sa(dp268314 +g225232 +S'Leonard Lehrer' +p268315 +sg225240 +g27 +sg225234 +S'color lithograph' +p268316 +sg225230 +S'Tlalmanalco IV' +p268317 +sg225236 +S'1975' +p268318 +sa(dp268319 +g225232 +S'Leonard Lehrer' +p268320 +sg225240 +g27 +sg225234 +S'color lithograph' +p268321 +sg225230 +S'Tlalmanalco V' +p268322 +sg225236 +S'1975' +p268323 +sa(dp268324 +g225232 +S'Leonard Lehrer' +p268325 +sg225240 +g27 +sg225234 +S'color lithograph' +p268326 +sg225230 +S'Tlalmanalco VI' +p268327 +sg225236 +S'1975' +p268328 +sa(dp268329 +g225232 +S'Clare Leighton' +p268330 +sg225240 +g27 +sg225234 +S'wood engraving' +p268331 +sg225230 +S"Town at Water's Edge" +p268332 +sg225236 +S'unknown date\n' +p268333 +sa(dp268334 +g225232 +S'Barry Lewis' +p268335 +sg225240 +g27 +sg225234 +S'pen and black ink and colored pencil' +p268336 +sg225230 +S'Untitled' +p268337 +sg225236 +S'1976' +p268338 +sa(dp268339 +g225232 +S'Barry Lewis' +p268340 +sg225240 +g27 +sg225234 +S'screenprint' +p268341 +sg225230 +S'Analysis Domain' +p268342 +sg225236 +S'1972' +p268343 +sa(dp268344 +g225232 +S'Barry Lewis' +p268345 +sg225240 +g27 +sg225234 +S'screenprint' +p268346 +sg225230 +S'Civilization is Information' +p268347 +sg225236 +S'1974' +p268348 +sa(dp268349 +g225232 +S'Barry Lewis' +p268350 +sg225240 +g27 +sg225234 +S'screenprint' +p268351 +sg225230 +S'Complexity Leads to Singlemindedness' +p268352 +sg225236 +S'1971' +p268353 +sa(dp268354 +g225232 +S'Barry Lewis' +p268355 +sg225240 +g27 +sg225234 +S'screenprint' +p268356 +sg225230 +S'Vincent Van Gogh 1888' +p268357 +sg225236 +S'1971' +p268358 +sa(dp268359 +g225232 +S'Barry Lewis' +p268360 +sg225240 +g27 +sg225234 +S'screenprint' +p268361 +sg225230 +S'Probably Arrangement' +p268362 +sg225236 +S'1974' +p268363 +sa(dp268364 +g225232 +S'Barry Lewis' +p268365 +sg225240 +g27 +sg225234 +S'screenprint' +p268366 +sg225230 +S'The Spreading Underworld' +p268367 +sg225236 +S'1970' +p268368 +sa(dp268369 +g225232 +S'Barry Lewis' +p268370 +sg225240 +g27 +sg225234 +S'screenprint' +p268371 +sg225230 +S'Superficiality #2' +p268372 +sg225236 +S'1969' +p268373 +sa(dp268374 +g225230 +S'Lycidas' +p268375 +sg225232 +S'Artist Information (' +p268376 +sg225234 +S'(artist)' +p268377 +sg225236 +S'\n' +p268378 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d31.jpg' +p268379 +sg225240 +g27 +sa(dp268380 +g225232 +S'Jeannette Maxfield Lewis' +p268381 +sg225240 +g27 +sg225234 +S'etching' +p268382 +sg225230 +S'Pont-Aven' +p268383 +sg225236 +S'1955' +p268384 +sa(dp268385 +g225232 +S'Liao Shiou-Ping' +p268386 +sg225240 +g27 +sg225234 +S'color intaglio' +p268387 +sg225230 +S'La Lune' +p268388 +sg225236 +S'1969' +p268389 +sa(dp268390 +g225230 +S'Dr. C. Hofstede de Groot' +p268391 +sg225232 +S'Max Liebermann' +p268392 +sg225234 +S'drypoint' +p268393 +sg225236 +S'unknown date\n' +p268394 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b723.jpg' +p268395 +sg225240 +g27 +sa(dp268396 +g225232 +S'Liebrinski' +p268397 +sg225240 +g27 +sg225234 +S'charcoal and black chalk over watercolor and graphite' +p268398 +sg225230 +S'Woman and Child' +p268399 +sg225236 +S'1948' +p268400 +sa(dp268401 +g225232 +S'Ella Fillmore Lillie' +p268402 +sg225240 +g27 +sg225234 +S'lithograph' +p268403 +sg225230 +S'Cradled in the Hills' +p268404 +sg225236 +S'unknown date\n' +p268405 +sa(dp268406 +g225232 +S'Norman Lindsay' +p268407 +sg225240 +g27 +sg225234 +S'etching' +p268408 +sg225230 +S'Scherzo' +p268409 +sg225236 +S'1922' +p268410 +sa(dp268411 +g225232 +S'Peter Lipman-Wulf' +p268412 +sg225240 +g27 +sg225234 +S'color aquatint and etching' +p268413 +sg225230 +S'Indian Family' +p268414 +sg225236 +S'1967' +p268415 +sa(dp268416 +g225232 +S'Richard Evett Bishop' +p268417 +sg225240 +g27 +sg225234 +S'etching and drypoint on wove paper' +p268418 +sg225230 +S'Christmas Card from Helen and Dick Bishop' +p268419 +sg225236 +S'unknown date\n' +p268420 +sa(dp268421 +g225232 +S'Guy Littell' +p268422 +sg225240 +g27 +sg225234 +S', unknown date' +p268423 +sg225230 +S'Cottage in Snow and Mountain' +p268424 +sg225236 +S'\n' +p268425 +sa(dp268426 +g225232 +S'Paula Litzky' +p268427 +sg225240 +g27 +sg225234 +S'mixed intaglio' +p268428 +sg225230 +S'Involute' +p268429 +sg225236 +S'1973' +p268430 +sa(dp268431 +g225232 +S'Paula Litzky' +p268432 +sg225240 +g27 +sg225234 +S'color intaglio' +p268433 +sg225230 +S"L'eternal retour" +p268434 +sg225236 +S'1973' +p268435 +sa(dp268436 +g225232 +S'George Lockwood' +p268437 +sg225240 +g27 +sg225234 +S'lithograph' +p268438 +sg225230 +S'Persephine' +p268439 +sg225236 +S'1960' +p268440 +sa(dp268441 +g225232 +S'George Lockwood' +p268442 +sg225240 +g27 +sg225234 +S'color woodcut' +p268443 +sg225230 +S'Study in Grey' +p268444 +sg225236 +S'unknown date\n' +p268445 +sa(dp268446 +g225232 +S'Jean Lodge' +p268447 +sg225240 +g27 +sg225234 +S'engraving' +p268448 +sg225230 +S'Falls' +p268449 +sg225236 +S'1973' +p268450 +sa(dp268451 +g225232 +S'George Lusk' +p268452 +sg225240 +g27 +sg225234 +S'lithograph on light gray paper' +p268453 +sg225230 +S'Macchu Pichu' +p268454 +sg225236 +S'1944' +p268455 +sa(dp268456 +g225232 +S'Guy MacCoy' +p268457 +sg225240 +g27 +sg225234 +S'screenprint' +p268458 +sg225230 +S'Landscape #1' +p268459 +sg225236 +S'unknown date\n' +p268460 +sa(dp268461 +g225232 +S'James McBey' +p268462 +sg225240 +g27 +sg225234 +S'drypoint' +p268463 +sg225230 +S'Dr. A.S.W. Rosenbach' +p268464 +sg225236 +S'1930' +p268465 +sa(dp268466 +g225232 +S'James McBey' +p268467 +sg225240 +g27 +sg225234 +S'etching' +p268468 +sg225230 +S'Lessing J. Rosenwald' +p268469 +sg225236 +S'1930' +p268470 +sa(dp268471 +g225232 +S'James McBey' +p268472 +sg225240 +g27 +sg225234 +S'etching' +p268473 +sg225230 +S'Lessing J. Rosenwald' +p268474 +sg225236 +S'1930' +p268475 +sa(dp268476 +g225232 +S'James McBey' +p268477 +sg225240 +g27 +sg225234 +S'etching' +p268478 +sg225230 +S'Lessing J. Rosenwald' +p268479 +sg225236 +S'1930' +p268480 +sa(dp268481 +g225232 +S'James McBey' +p268482 +sg225240 +g27 +sg225234 +S'etching' +p268483 +sg225230 +S'Lessing J. Rosenwald' +p268484 +sg225236 +S'1930' +p268485 +sa(dp268486 +g225232 +S'James McBey' +p268487 +sg225240 +g27 +sg225234 +S'etching' +p268488 +sg225230 +S'Lessing J. Rosenwald' +p268489 +sg225236 +S'1930' +p268490 +sa(dp268491 +g225232 +S'James McBey' +p268492 +sg225240 +g27 +sg225234 +S'etching' +p268493 +sg225230 +S'Lessing J. Rosenwald' +p268494 +sg225236 +S'1930' +p268495 +sa(dp268496 +g225232 +S'James McBey' +p268497 +sg225240 +g27 +sg225234 +S'etching [cancellation proof]' +p268498 +sg225230 +S'Lessing J. Rosenwald' +p268499 +sg225236 +S'1930' +p268500 +sa(dp268501 +g225232 +S'James McBey' +p268502 +sg225240 +g27 +sg225234 +S'etching' +p268503 +sg225230 +S'Lessing J. Rosenwald' +p268504 +sg225236 +S'1930' +p268505 +sa(dp268506 +g225232 +S'James McBey' +p268507 +sg225240 +g27 +sg225234 +S'etching on blue paper' +p268508 +sg225230 +S'Lessing J. Rosenwald' +p268509 +sg225236 +S'1930' +p268510 +sa(dp268511 +g225232 +S'James McBey' +p268512 +sg225240 +g27 +sg225234 +S'black chalk and watercolor' +p268513 +sg225230 +S'Lessing J. Rosenwald' +p268514 +sg225236 +S'1930' +p268515 +sa(dp268516 +g225232 +S'James McGarrell' +p268517 +sg225240 +g27 +sg225234 +S'color lithograph' +p268518 +sg225230 +S'Light and Dark' +p268519 +sg225236 +S'unknown date\n' +p268520 +sa(dp268521 +g225232 +S'Christine McGinnis' +p268522 +sg225240 +g27 +sg225234 +S'engraving on plexiglass' +p268523 +sg225230 +S'Eagle Owl' +p268524 +sg225236 +S'unknown date\n' +p268525 +sa(dp268526 +g225230 +S'Central Park Scenery (New York)' +p268527 +sg225232 +S'Charles Magnus' +p268528 +sg225234 +S'hand-colored lithograph' +p268529 +sg225236 +S'unknown date\n' +p268530 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fae9.jpg' +p268531 +sg225240 +g27 +sa(dp268532 +g225232 +S'Aristide Maillol' +p268533 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268534 +sg225230 +S'First Eclogue: Tityrus Playing on His Pipe (Premiere eglogue)' +p268535 +sg225236 +S'published 1926' +p268536 +sa(dp268537 +g225232 +S'Aristide Maillol' +p268538 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268539 +sg225230 +S'First Eclogue: Goats with Newly-Born Twins (Chevre et chevreaux)' +p268540 +sg225236 +S'published 1926' +p268541 +sa(dp268542 +g225232 +S'Aristide Maillol' +p268543 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268544 +sg225230 +S'First Eclogue: Meliboeus and Tityrus (Melibeet Tityre)' +p268545 +sg225236 +S'published 1926' +p268546 +sa(dp268547 +g225232 +S'Aristide Maillol' +p268548 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268549 +sg225230 +S'Second Eclogue: Shepherd Corydon Ardently in Love (Corydon)' +p268550 +sg225236 +S'published 1926' +p268551 +sa(dp268552 +g225232 +S'Aristide Maillol' +p268553 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268554 +sg225230 +S"Second Eclogue: Corydon Sees Himself in a Pool (Corydon se mirant dans l'eau)" +p268555 +sg225236 +S'published 1926' +p268556 +sa(dp268557 +g225232 +S'Aristide Maillol' +p268558 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268559 +sg225230 +S'Second Eclogue: The Nymphs Bring Lilies in Baskets Full (Les nymphs porteuses de fleurs)' +p268560 +sg225236 +S'published 1926' +p268561 +sa(dp268562 +g225232 +S'Aristide Maillol' +p268563 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268564 +sg225230 +S'Second Eclogue: A Young Goat (Fin de la deuxieme eglogue)' +p268565 +sg225236 +S'published 1926' +p268566 +sa(dp268567 +g225232 +S'Aristide Maillol' +p268568 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268569 +sg225230 +S'Third Eclogue: Naiad on a Dolphin (Naiade chevauchant un dauphin)' +p268570 +sg225236 +S'published 1926' +p268571 +sa(dp268572 +g225232 +S'Aristide Maillol' +p268573 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268574 +sg225230 +S"Third Eclogue: Aegon Putting His Flock in Damoetas' Care (En-tete de la troisieme eglogue)" +p268575 +sg225236 +S'published 1926' +p268576 +sa(dp268577 +g225232 +S'Aristide Maillol' +p268578 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268579 +sg225230 +S'Third Eclogue: Menalcas and Damoetas (Menalcas et Damoetas)' +p268580 +sg225236 +S'published 1926' +p268581 +sa(dp268582 +g225232 +S'Aristide Maillol' +p268583 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268584 +sg225230 +S'Third Eclogue: Galatea Aims an Apple at Damoetas (Galatee lance une pomme sur Damoetas)' +p268585 +sg225236 +S'published 1926' +p268586 +sa(dp268587 +g225232 +S'Aristide Maillol' +p268588 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268589 +sg225230 +S"Third Eclogue: Blossoms (Branches d'arbre en fleurs)" +p268590 +sg225236 +S'published 1926' +p268591 +sa(dp268592 +g225232 +S'Aristide Maillol' +p268593 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268594 +sg225230 +S'Fourth Eclogue: Lucina Smiles on Her Boy (En t\xc3\xaate de la quatrieme eglogue) [left]' +p268595 +sg225236 +S'published 1926' +p268596 +sa(dp268597 +g225232 +S'Aristide Maillol' +p268598 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268599 +sg225230 +S'Fourth Eclogue: The Earth Pours Freely Her Presents (Jeunes filles ...) [right]' +p268600 +sg225236 +S'published 1926' +p268601 +sa(dp268602 +g225232 +S'Aristide Maillol' +p268603 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268604 +sg225230 +S'Fourth Eclogue and Coverplate: Leda and the Swan (Leda)' +p268605 +sg225236 +S'published 1926' +p268606 +sa(dp268607 +g225232 +S'Aristide Maillol' +p268608 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268609 +sg225230 +S"Fifth Eclogue: Mopsus' Kids at Pasture (En-tete)" +p268610 +sg225236 +S'published 1926' +p268611 +sa(dp268612 +g225232 +S'Aristide Maillol' +p268613 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268614 +sg225230 +S'Fifth Eclogue: Woodland Nymphs Weeping the Loss of Daphnis (Nymphs des Bois dansant le contrapas)' +p268615 +sg225236 +S'published 1926' +p268616 +sa(dp268617 +g225232 +S'Aristide Maillol' +p268618 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268619 +sg225230 +S"Fifth Eclogue: A Shepherd Carving Verse on Daphnes' Funeral Mound (Le tombeau de Daphnis)" +p268620 +sg225236 +S'published 1926' +p268621 +sa(dp268622 +g225232 +S'Aristide Maillol' +p268623 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268624 +sg225230 +S'Fifth Eclogue: Shepherds and Dryad Maidens Fill the Woods (Bergers et dryades)' +p268625 +sg225236 +S'published 1926' +p268626 +sa(dp268627 +g225232 +S'Aristide Maillol' +p268628 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268629 +sg225230 +S'Sixth Eclogue: Silenus' +p268630 +sg225236 +S'published 1926' +p268631 +sa(dp268632 +g225232 +S'Aristide Maillol' +p268633 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268634 +sg225230 +S'Sixth Eclogue: Faun and Aegle, the Loveliest Naiad (Chevre-pieds et naide)' +p268635 +sg225236 +S'published 1926' +p268636 +sa(dp268637 +g225232 +S'Aristide Maillol' +p268638 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268639 +sg225230 +S'Sixth Eclogue: Forests Begin to Rise Up (Arbes dans la montagne)' +p268640 +sg225236 +S'published 1926' +p268641 +sa(dp268642 +g225232 +S'Aristide Maillol' +p268643 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268644 +sg225230 +S'Sixth Eclogue: Wild Animals Roam the Mountains (Nymphs, Chevre-Pieds et Animaux dans la montagne)' +p268645 +sg225236 +S'published 1926' +p268646 +sa(dp268647 +g225232 +S'Aristide Maillol' +p268648 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268649 +sg225230 +S'Sixth Eclogue: Hylas Left by a Stream (Hylas disparu dans une fontaine)' +p268650 +sg225236 +S'published 1926' +p268651 +sa(dp268652 +g225232 +S'Aristide Maillol' +p268653 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268654 +sg225230 +S"Seventh Eclogue: Corydon and Thrysis Singing (Corydon et Thyrsis, assis sous un cheneegaux dan l'art de chanter et dans l'art derepondre)" +p268655 +sg225236 +S'published 1926' +p268656 +sa(dp268657 +g225232 +S'Aristide Maillol' +p268658 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268659 +sg225230 +S"Seventh Eclogue: Micon Offering the Branching Antlers of a Stag (Micon offrant sur un aute les bois d'un cerf)" +p268660 +sg225236 +S'published 1926' +p268661 +sa(dp268662 +g225232 +S'Aristide Maillol' +p268663 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268664 +sg225230 +S"Seventh Eclogue: Galatea Whiter than Swan down (Galatee jouant dans l'eau)" +p268665 +sg225236 +S'published 1926' +p268666 +sa(dp268667 +g225232 +S'Aristide Maillol' +p268668 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268669 +sg225230 +S'Seventh Eclogue: Galatea Lovelier than Pale Ivory (Galatee dans les Flots)' +p268670 +sg225236 +S'published 1926' +p268671 +sa(dp268672 +g225232 +S'Aristide Maillol' +p268673 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268674 +sg225230 +S"Seventh Eclogue: A Sleeping Shepherdess (Une bergere endorme s'eveille)" +p268675 +sg225236 +S'published 1926' +p268676 +sa(dp268677 +g225232 +S'Aristide Maillol' +p268678 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268679 +sg225230 +S'Seventh Eclogue: Thyrsis Milking a Goat (Thyrsis trayant une chevre)' +p268680 +sg225236 +S'published 1926' +p268681 +sa(dp268682 +g225232 +S'Aristide Maillol' +p268683 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268684 +sg225230 +S'Seventh Eclogue: A Girl Under a Tree (Jeune fille sous un arbre)' +p268685 +sg225236 +S'published 1926' +p268686 +sa(dp268687 +g225232 +S'Aristide Maillol' +p268688 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268689 +sg225230 +S"Eighth Eclogue: Cupid (Cupidon tirant de l'arc)" +p268690 +sg225236 +S'published 1926' +p268691 +sa(dp268692 +g225232 +S'Aristide Maillol' +p268693 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268694 +sg225230 +S'Ninth Eclogue: Moeris on the Road to Town (Moeris rentrant sa chevre a la ville)' +p268695 +sg225236 +S'published 1926' +p268696 +sa(dp268697 +g225232 +S'Aristide Maillol' +p268698 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268699 +sg225230 +S'Ninth Eclogue: Two Nymphs of the Woodlands (Deux nymphes)' +p268700 +sg225236 +S'published 1926' +p268701 +sa(dp268702 +g225232 +S'Aristide Maillol' +p268703 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268704 +sg225230 +S'Ninth Eclogue: Tityrus and the Buck (Tityre et son Bouc)' +p268705 +sg225236 +S'published 1926' +p268706 +sa(dp268707 +g225232 +S'Aristide Maillol' +p268708 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268709 +sg225230 +S'Ninth Eclogue: Tityrus with a Goat (Tityre enfourchant sa chevre)' +p268710 +sg225236 +S'published 1926' +p268711 +sa(dp268712 +g225232 +S'Aristide Maillol' +p268713 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268714 +sg225230 +S'Ninth Eclogue: Galatea in the Water (Galatee se jouant dans les eaux)' +p268715 +sg225236 +S'published 1926' +p268716 +sa(dp268717 +g225232 +S'Aristide Maillol' +p268718 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268719 +sg225230 +S'Ninth Eclogue: Galatea Daughter of Nereus (Galatee nue devant une fontaine)' +p268720 +sg225236 +S'published 1926' +p268721 +sa(dp268722 +g225232 +S'Aristide Maillol' +p268723 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268724 +sg225230 +S'Tenth Eclogue: A Naiad, Nymph of the Springs (Arethuse)' +p268725 +sg225236 +S'published 1926' +p268726 +sa(dp268727 +g225232 +S'Aristide Maillol' +p268728 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268729 +sg225230 +S'Tenth Eclogue: Pan of Arcady, Silvanus and Apollo (Pan, Sylvanus et Apollon)' +p268730 +sg225236 +S'published 1926' +p268731 +sa(dp268732 +g225232 +S'Aristide Maillol' +p268733 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268734 +sg225230 +S'Tenth Eclogue: Hamadryads, Girls of the Woodlands (Hamadryade de la Foret)' +p268735 +sg225236 +S'published 1926' +p268736 +sa(dp268737 +g225232 +S'Aristide Maillol' +p268738 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268739 +sg225230 +S'Tenth Eclogue: Gallus Hunting the Fierce Wild Boar (Gallus chasse le sangler)' +p268740 +sg225236 +S'published 1926' +p268741 +sa(dp268742 +g225232 +S'Aristide Maillol' +p268743 +sg225240 +g27 +sg225234 +S'woodcut in red on Japan paper' +p268744 +sg225230 +S'Frontispiece: Daphnis Playing on His Pipe (Frontispice)' +p268745 +sg225236 +S'published 1926' +p268746 +sa(dp268747 +g225232 +S'Richard Evett Bishop' +p268748 +sg225240 +g27 +sg225234 +S'etching on wove paper' +p268749 +sg225230 +S"Enoch's Acres" +p268750 +sg225236 +S'1951' +p268751 +sa(dp268752 +g225230 +S'Frontispiece for Peter Heylyn\'s "The History of St. George of Cappadocia"' +p268753 +sg225232 +S'Edward Marshall' +p268754 +sg225234 +S'engraving' +p268755 +sg225236 +S'published 1631' +p268756 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076ab.jpg' +p268757 +sg225240 +g27 +sa(dp268758 +g225232 +S'Robert Ernst Marx' +p268759 +sg225240 +g27 +sg225234 +S'color linoleum cut on rice paper' +p268760 +sg225230 +S'The Strike' +p268761 +sg225236 +S'1955' +p268762 +sa(dp268763 +g225232 +S'Andr\xc3\xa9 Masson' +p268764 +sg225240 +g27 +sg225234 +S'etching' +p268765 +sg225230 +S'Best Wishes for 1973 from La Galerie Sagot-LeGarrec' +p268766 +sg225236 +S'1972' +p268767 +sa(dp268768 +g225230 +S'Bellona Seated on Her Trophies' +p268769 +sg225232 +S'Artist Information (' +p268770 +sg225234 +S'(artist after)' +p268771 +sg225236 +S'\n' +p268772 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008441.jpg' +p268773 +sg225240 +g27 +sa(dp268774 +g225230 +S'Mars Seated on Trophies' +p268775 +sg225232 +S'Artist Information (' +p268776 +sg225234 +S'(artist after)' +p268777 +sg225236 +S'\n' +p268778 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00084/a0008437.jpg' +p268779 +sg225240 +g27 +sa(dp268780 +g225232 +S'Takesada Matsutani' +p268781 +sg225240 +g27 +sg225234 +S'engraving in black and green' +p268782 +sg225230 +S"L'angle" +p268783 +sg225236 +S'1969' +p268784 +sa(dp268785 +g225230 +S'The Annunciation' +p268786 +sg225232 +S'Henri Mauperche' +p268787 +sg225234 +S'etching' +p268788 +sg225236 +S'unknown date\n' +p268789 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b40.jpg' +p268790 +sg225240 +g27 +sa(dp268791 +g225230 +S'Meeting of Mary and Elizabeth' +p268792 +sg225232 +S'Henri Mauperche' +p268793 +sg225234 +S'etching' +p268794 +sg225236 +S'unknown date\n' +p268795 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b44.jpg' +p268796 +sg225240 +g27 +sa(dp268797 +g225230 +S'The Adoration of the Shepherds' +p268798 +sg225232 +S'Henri Mauperche' +p268799 +sg225234 +S'etching' +p268800 +sg225236 +S'unknown date\n' +p268801 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b41.jpg' +p268802 +sg225240 +g27 +sa(dp268803 +g225230 +S'The Adoration of the Kings' +p268804 +sg225232 +S'Henri Mauperche' +p268805 +sg225234 +S'etching' +p268806 +sg225236 +S'unknown date\n' +p268807 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b42.jpg' +p268808 +sg225240 +g27 +sa(dp268809 +g225230 +S'Presentation in the Temple' +p268810 +sg225232 +S'Henri Mauperche' +p268811 +sg225234 +S'etching' +p268812 +sg225236 +S'unknown date\n' +p268813 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b45.jpg' +p268814 +sg225240 +g27 +sa(dp268815 +g225230 +S'The Flight into Egypt' +p268816 +sg225232 +S'Henri Mauperche' +p268817 +sg225234 +S'etching' +p268818 +sg225236 +S'unknown date\n' +p268819 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b43.jpg' +p268820 +sg225240 +g27 +sa(dp268821 +g225230 +S'Henri de Toulouse-Lautrec' +p268822 +sg225232 +S'Charles Maurin' +p268823 +sg225234 +S'aquatint and (etching?)' +p268824 +sg225236 +S'1890' +p268825 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d03.jpg' +p268826 +sg225240 +g27 +sa(dp268827 +g225232 +S'Emilio Mazzoni-Zarini' +p268828 +sg225240 +g27 +sg225234 +S'etching and drypoint with retouching' +p268829 +sg225230 +S'Palazzo Vendramin, Venice' +p268830 +sg225236 +S'unknown date\n' +p268831 +sa(dp268832 +g225232 +S'Arthur Meltzer' +p268833 +sg225240 +g27 +sg225234 +S'graphite' +p268834 +sg225230 +S'The Mighty Willow' +p268835 +sg225236 +S'unknown date\n' +p268836 +sa(dp268837 +g225232 +S'Doris Meltzer' +p268838 +sg225240 +g27 +sg225234 +S'screenprint' +p268839 +sg225230 +S'Nocturne' +p268840 +sg225236 +S'1945' +p268841 +sa(dp268842 +g225232 +S'Charles Meryon' +p268843 +sg225240 +g27 +sg225234 +S'etched metal plate' +p268844 +sg225230 +S'"Fluctuat Nec Mergitur" ("It Rocks but is not Submerged")' +p268845 +sg225236 +S'1854' +p268846 +sa(dp268847 +g225232 +S'Yuri Ivanovich Mezentsev' +p268848 +sg225240 +g27 +sg225234 +S'linoleum cut' +p268849 +sg225230 +S'Crimean Wines' +p268850 +sg225236 +S'1971' +p268851 +sa(dp268852 +g225232 +S'Yuri Ivanovich Mezentsev' +p268853 +sg225240 +g27 +sg225234 +S'linoleum cut' +p268854 +sg225230 +S'Street in Yalta' +p268855 +sg225236 +S'1971' +p268856 +sa(dp268857 +g225232 +S'Mario Micossi' +p268858 +sg225240 +g27 +sg225234 +S'softground etching, embossed, in green' +p268859 +sg225230 +S'Fori e San Sistro in Roma' +p268860 +sg225236 +S'1973' +p268861 +sa(dp268862 +g225230 +S'Passage II' +p268863 +sg225232 +S'Peter Milton' +p268864 +sg225234 +S'photo-sensitive ground etching and engraving' +p268865 +sg225236 +S'1971' +p268866 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b39.jpg' +p268867 +sg225240 +g27 +sa(dp268868 +g225232 +S'Andr\xc3\xa9 Minaux' +p268869 +sg225240 +g27 +sg225234 +S'aquatint' +p268870 +sg225230 +S'Best Wishes for 1975 from La Galerie Sagot-Le-Garrec' +p268871 +sg225236 +S'unknown date\n' +p268872 +sa(dp268873 +g225232 +S'Joan Mir\xc3\xb3' +p268874 +sg225240 +g27 +sg225234 +S'lithograph' +p268875 +sg225230 +S'Barcelona XXXVII' +p268876 +sg225236 +S'1944' +p268877 +sa(dp268878 +g225232 +S'Brita Molin' +p268879 +sg225240 +g27 +sg225234 +S'inkless intaglio embossing on German Hahnemuhle paper' +p268880 +sg225230 +S'Open Doors' +p268881 +sg225236 +S'1972' +p268882 +sa(dp268883 +g225232 +S'Jay Moon' +p268884 +sg225240 +g27 +sg225234 +S'monotype' +p268885 +sg225230 +S'Aqua Bird' +p268886 +sg225236 +S'1972' +p268887 +sa(dp268888 +g225232 +S'Jay Moon' +p268889 +sg225240 +g27 +sg225234 +S'wood engraving' +p268890 +sg225230 +S'...Dark Questions, Answering the Light' +p268891 +sg225236 +S'1975' +p268892 +sa(dp268893 +g225232 +S'Jay Moon' +p268894 +sg225240 +g27 +sg225234 +S'engraving (linoleum)' +p268895 +sg225230 +S'Homage to Turner' +p268896 +sg225236 +S'1975' +p268897 +sa(dp268898 +g225232 +S'Jay Moon' +p268899 +sg225240 +g27 +sg225234 +S'engraving (lucite)' +p268900 +sg225230 +S'Study of a Woman' +p268901 +sg225236 +S'1976' +p268902 +sa(dp268903 +g225232 +S'Jay Moon' +p268904 +sg225240 +g27 +sg225234 +S'engraving (linoleum)' +p268905 +sg225230 +S'To Lynn Ward' +p268906 +sg225236 +S'1976' +p268907 +sa(dp268908 +g225232 +S'Jay Moon' +p268909 +sg225240 +g27 +sg225234 +S'engraving and aquatint' +p268910 +sg225230 +S'Portrait of a Man with Glasses' +p268911 +sg225236 +S'1977' +p268912 +sa(dp268913 +g225232 +S'Jay Moon' +p268914 +sg225240 +g27 +sg225234 +S'engraving on pale pink paper' +p268915 +sg225230 +S'Rose' +p268916 +sg225236 +S'1975' +p268917 +sa(dp268918 +g225232 +S'Jay Moon' +p268919 +sg225240 +g27 +sg225234 +S'engraving' +p268920 +sg225230 +S'Rose' +p268921 +sg225236 +S'1975' +p268922 +sa(dp268923 +g225232 +S'Jay Moon' +p268924 +sg225240 +g27 +sg225234 +S'monotype' +p268925 +sg225230 +S'Untitled' +p268926 +sg225236 +S'1973' +p268927 +sa(dp268928 +g225232 +S'Jay Moon' +p268929 +sg225240 +g27 +sg225234 +S'monotype' +p268930 +sg225230 +S'Untitled' +p268931 +sg225236 +S'1972' +p268932 +sa(dp268933 +g225232 +S'Jay Moon' +p268934 +sg225240 +g27 +sg225234 +S'etching and aquatint [early state]' +p268935 +sg225230 +S'Autumn Haiku' +p268936 +sg225236 +S'1975' +p268937 +sa(dp268938 +g225232 +S'Jay Moon' +p268939 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p268940 +sg225230 +S'Autumn Haiku' +p268941 +sg225236 +S'1975' +p268942 +sa(dp268943 +g225232 +S'Jay Moon' +p268944 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p268945 +sg225230 +S'To Lessing J. Rosenwald' +p268946 +sg225236 +S'1975' +p268947 +sa(dp268948 +g225232 +S'Henry Moore' +p268949 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p268950 +sg225230 +S'Concerto' +p268951 +sg225236 +S'1967' +p268952 +sa(dp268953 +g225232 +S'Henry Moore' +p268954 +sg225240 +g27 +sg225234 +S'woodcut' +p268955 +sg225230 +S'Figures: Sculptures' +p268956 +sg225236 +S'1931' +p268957 +sa(dp268958 +g225232 +S'Mordecai Moreh' +p268959 +sg225240 +g27 +sg225234 +S'color etching' +p268960 +sg225230 +S'Broken Face' +p268961 +sg225236 +S'1964' +p268962 +sa(dp268963 +g225232 +S'Mordecai Moreh' +p268964 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p268965 +sg225230 +S'A Cart, A Girl, and a Goat' +p268966 +sg225236 +S'1964' +p268967 +sa(dp268968 +g225232 +S'Mordecai Moreh' +p268969 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p268970 +sg225230 +S'Chimpanzee' +p268971 +sg225236 +S'1966' +p268972 +sa(dp268973 +g225232 +S'Mordecai Moreh' +p268974 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p268975 +sg225230 +S'Sacred-bull' +p268976 +sg225236 +S'1964' +p268977 +sa(dp268978 +g225232 +S'Mordecai Moreh' +p268979 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p268980 +sg225230 +S'Squirrel' +p268981 +sg225236 +S'1964' +p268982 +sa(dp268983 +g225232 +S'Franklin Townsend Morgan' +p268984 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p268985 +sg225230 +S'Philadelphia Museum of Art and the Fairmont Waterworks' +p268986 +sg225236 +S'unknown date\n' +p268987 +sa(dp268988 +g225232 +S'Henry Morris' +p268989 +sg225240 +g27 +sg225234 +S'paste paper endpaper in green' +p268990 +sg225230 +S'Endpaper with the Initials LJR' +p268991 +sg225236 +S'unknown date\n' +p268992 +sa(dp268993 +g225232 +S'Henry Morris' +p268994 +sg225240 +g27 +sg225234 +S'paste paper endpaper in orange' +p268995 +sg225230 +S'Endpaper with the Initials LJR' +p268996 +sg225236 +S'unknown date\n' +p268997 +sa(dp268998 +g225232 +S'Seong Moy' +p268999 +sg225240 +g27 +sg225234 +S'color woodcut' +p269000 +sg225230 +S'Homage to Leoi Pei' +p269001 +sg225236 +S'1952' +p269002 +sa(dp269003 +g225232 +S'Alphonse Marie Mucha' +p269004 +sg225240 +g27 +sg225234 +S'color lithograph' +p269005 +sg225230 +S'Poster for Lorenzaccio' +p269006 +sg225236 +S'1896' +p269007 +sa(dp269008 +g225232 +S'Hans Alexander Mueller' +p269009 +sg225240 +g27 +sg225234 +S'wood engraving in black and blue' +p269010 +sg225230 +S'Chinatown, N.Y.' +p269011 +sg225236 +S'unknown date\n' +p269012 +sa(dp269013 +g225232 +S'Hans Alexander Mueller' +p269014 +sg225240 +g27 +sg225234 +S'hand-colored and/or stenciled woodcut' +p269015 +sg225230 +S"New Year's Card" +p269016 +sg225236 +S'1951' +p269017 +sa(dp269018 +g225232 +S'Hans Alexander Mueller' +p269019 +sg225240 +g27 +sg225234 +S'hand-colored and/or stenciled woodcut' +p269020 +sg225230 +S"New Year's Card" +p269021 +sg225236 +S'1953' +p269022 +sa(dp269023 +g225232 +S'Hans Alexander Mueller' +p269024 +sg225240 +g27 +sg225234 +S'woodcut' +p269025 +sg225230 +S"New Year's Card" +p269026 +sg225236 +S'1949' +p269027 +sa(dp269028 +g225232 +S'Shiko Munakata' +p269029 +sg225240 +g27 +sg225234 +S'lithograph' +p269030 +sg225230 +S'Calligraphy' +p269031 +sg225236 +S'unknown date\n' +p269032 +sa(dp269033 +g225232 +S'Shiko Munakata' +p269034 +sg225240 +g27 +sg225234 +S'woodcut on Kozo paper' +p269035 +sg225230 +S'Fish and Flower and Female Buddha' +p269036 +sg225236 +S'c. 1959' +p269037 +sa(dp269038 +g225232 +S'Shiko Munakata' +p269039 +sg225240 +g27 +sg225234 +S'woodcut' +p269040 +sg225230 +S'Gautama and Bodhisattvas' +p269041 +sg225236 +S'c. 1960' +p269042 +sa(dp269043 +g225232 +S'Shiko Munakata' +p269044 +sg225240 +g27 +sg225234 +S'woodcut' +p269045 +sg225230 +S'Man with Glasses' +p269046 +sg225236 +S'1959' +p269047 +sa(dp269048 +g225232 +S'Shiko Munakata' +p269049 +sg225240 +g27 +sg225234 +S'lithograph' +p269050 +sg225230 +S'Nude' +p269051 +sg225236 +S'1959' +p269052 +sa(dp269053 +g225232 +S'Shiko Munakata' +p269054 +sg225240 +g27 +sg225234 +S'lithograph' +p269055 +sg225230 +S'Owls' +p269056 +sg225236 +S'1959' +p269057 +sa(dp269058 +g225232 +S'Shiko Munakata' +p269059 +sg225240 +g27 +sg225234 +S'lithograph' +p269060 +sg225230 +S'Self-Portrait' +p269061 +sg225236 +S'1960/1961' +p269062 +sa(dp269063 +g225232 +S'Shiko Munakata' +p269064 +sg225240 +g27 +sg225234 +S'lithograph' +p269065 +sg225230 +S'Several Figures' +p269066 +sg225236 +S'unknown date\n' +p269067 +sa(dp269068 +g225232 +S'Shiko Munakata' +p269069 +sg225240 +g27 +sg225234 +S'lithograph' +p269070 +sg225230 +S'Two Figures' +p269071 +sg225236 +S'1959' +p269072 +sa(dp269073 +g225232 +S'Shiko Munakata' +p269074 +sg225240 +g27 +sg225234 +S'woodcut' +p269075 +sg225230 +S'Two Figures' +p269076 +sg225236 +S'1959' +p269077 +sa(dp269078 +g225232 +S'Shiko Munakata' +p269079 +sg225240 +g27 +sg225234 +S'woodcut in black and gray' +p269080 +sg225230 +S'Two Figures' +p269081 +sg225236 +S'1959' +p269082 +sa(dp269083 +g225232 +S'Shiko Munakata' +p269084 +sg225240 +g27 +sg225234 +S'lithograph' +p269085 +sg225230 +S'Untitled' +p269086 +sg225236 +S'1959' +p269087 +sa(dp269088 +g225232 +S'Shiko Munakata' +p269089 +sg225240 +g27 +sg225234 +S'woodcut' +p269090 +sg225230 +S'Woman' +p269091 +sg225236 +S'1959' +p269092 +sa(dp269093 +g225232 +S'Tadashi Nakayama' +p269094 +sg225240 +g27 +sg225234 +S'color relief etching' +p269095 +sg225230 +S'Apocalypse' +p269096 +sg225236 +S'1967' +p269097 +sa(dp269098 +g225232 +S'Tadashi Nakayama' +p269099 +sg225240 +g27 +sg225234 +S'color woodcut' +p269100 +sg225230 +S'Running Horses' +p269101 +sg225236 +S'1964' +p269102 +sa(dp269103 +g225232 +S'Tadashi Nakayama' +p269104 +sg225240 +g27 +sg225234 +S'color woodcut' +p269105 +sg225230 +S'Running Horses, #2' +p269106 +sg225236 +S'1958' +p269107 +sa(dp269108 +g225232 +S'Jean Negulesco' +p269109 +sg225240 +g27 +sg225234 +S'black felt-tip pen' +p269110 +sg225230 +S'Nude' +p269111 +sg225236 +S'1953' +p269112 +sa(dp269113 +g225232 +S'Ronald Netsky' +p269114 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p269115 +sg225230 +S'Cabin II (Stone Cabin)' +p269116 +sg225236 +S'unknown date\n' +p269117 +sa(dp269118 +g225232 +S'Ronald Netsky' +p269119 +sg225240 +g27 +sg225234 +S'collagraph' +p269120 +sg225230 +S'Livezey Mill' +p269121 +sg225236 +S'1973' +p269122 +sa(dp269123 +g225232 +S'Ronald Netsky' +p269124 +sg225240 +g27 +sg225234 +S'portfolio with eight collographs and text' +p269125 +sg225230 +S'The Wissahickon Valley' +p269126 +sg225236 +S'published 1973' +p269127 +sa(dp269128 +g225232 +S'Ronald Netsky' +p269129 +sg225240 +g27 +sg225234 +S'collagraph' +p269130 +sg225230 +S'Walnut Lane Bridge' +p269131 +sg225236 +S'1973' +p269132 +sa(dp269133 +g225232 +S'Ronald Netsky' +p269134 +sg225240 +g27 +sg225234 +S'collagraph' +p269135 +sg225230 +S'Wissahickon Landscape' +p269136 +sg225236 +S'1973' +p269137 +sa(dp269138 +g225232 +S'Ronald Netsky' +p269139 +sg225240 +g27 +sg225234 +S'collagraph' +p269140 +sg225230 +S'Allens Lane Bridge' +p269141 +sg225236 +S'1973' +p269142 +sa(dp269143 +g225232 +S'Ronald Netsky' +p269144 +sg225240 +g27 +sg225234 +S'collagraph' +p269145 +sg225230 +S'The Monastery' +p269146 +sg225236 +S'1973' +p269147 +sa(dp269148 +g225232 +S'Ronald Netsky' +p269149 +sg225240 +g27 +sg225234 +S'collagraph' +p269150 +sg225230 +S'Wissahickon Path' +p269151 +sg225236 +S'1973' +p269152 +sa(dp269153 +g225232 +S'Ronald Netsky' +p269154 +sg225240 +g27 +sg225234 +S'collagraph' +p269155 +sg225230 +S'Pine Forest - Cresheim Valley' +p269156 +sg225236 +S'1973' +p269157 +sa(dp269158 +g225232 +S'Ronald Netsky' +p269159 +sg225240 +g27 +sg225234 +S'collagraph' +p269160 +sg225230 +S'Stone Cabin' +p269161 +sg225236 +S'1973' +p269162 +sa(dp269163 +g225232 +S'Robert Hogg Nisbet' +p269164 +sg225240 +g27 +sg225234 +S'etching' +p269165 +sg225230 +S'Mountain Stream' +p269166 +sg225236 +S'unknown date\n' +p269167 +sa(dp269168 +g225232 +S"Edward O'Brien" +p269169 +sg225240 +g27 +sg225234 +S'engraving' +p269170 +sg225230 +S"The Milliner's Evil Secret" +p269171 +sg225236 +S'unknown date\n' +p269172 +sa(dp269173 +g225232 +S'Artist Information (' +p269174 +sg225240 +g27 +sg225234 +S'(artist after)' +p269175 +sg225230 +S'Samson Rending' +p269176 +sg225236 +S'\n' +p269177 +sa(dp269178 +g225232 +S"Edward O'Brien" +p269179 +sg225240 +g27 +sg225234 +S'colored pencil and graphite on wove paper' +p269180 +sg225230 +S'Self-Portrait with Flowers' +p269181 +sg225236 +S'1973' +p269182 +sa(dp269183 +g225232 +S'Richard Evett Bishop' +p269184 +sg225240 +g27 +sg225234 +S'drypoint on wove paper' +p269185 +sg225230 +S'Christmas Card from Helen and Dick Bishop' +p269186 +sg225236 +S'unknown date\n' +p269187 +sa(dp269188 +g225232 +S"Tom O'Hara" +p269189 +sg225240 +g27 +sg225234 +S'woodcut' +p269190 +sg225230 +S'Landscape with Bird' +p269191 +sg225236 +S'unknown date\n' +p269192 +sa(dp269193 +g225232 +S'Charles Z. Offin' +p269194 +sg225240 +g27 +sg225234 +S'etching' +p269195 +sg225230 +S'Going to Town, Majorica' +p269196 +sg225236 +S'unknown date\n' +p269197 +sa(dp269198 +g225232 +S'Nathan Oliveira' +p269199 +sg225240 +g27 +sg225234 +S'portfolio with title page, text, colophon, and onelithograph' +p269200 +sg225230 +S'Edge' +p269201 +sg225236 +S'1965' +p269202 +sa(dp269203 +g225232 +S'Perry Oliver' +p269204 +sg225240 +g27 +sg225234 +S'etching' +p269205 +sg225230 +S'An Act of Barber' +p269206 +sg225236 +S'unknown date\n' +p269207 +sa(dp269208 +g225232 +S'Perry Oliver' +p269209 +sg225240 +g27 +sg225234 +S'etching' +p269210 +sg225230 +S'Factory of the Marquesa' +p269211 +sg225236 +S'unknown date\n' +p269212 +sa(dp269213 +g225232 +S'Perry Oliver' +p269214 +sg225240 +g27 +sg225234 +S'etching' +p269215 +sg225230 +S'The Invitation' +p269216 +sg225236 +S'unknown date\n' +p269217 +sa(dp269218 +g225232 +S'Perry Oliver' +p269219 +sg225240 +g27 +sg225234 +S'etching' +p269220 +sg225230 +S'A Nose for Fish' +p269221 +sg225236 +S'unknown date\n' +p269222 +sa(dp269223 +g225232 +S'Perry Oliver' +p269224 +sg225240 +g27 +sg225234 +S'etching' +p269225 +sg225230 +S'To Pick Up a Fish' +p269226 +sg225236 +S'unknown date\n' +p269227 +sa(dp269228 +g225232 +S'Perry Oliver' +p269229 +sg225240 +g27 +sg225234 +S'etching' +p269230 +sg225230 +S'Senora Jaz Circo' +p269231 +sg225236 +S'unknown date\n' +p269232 +sa(dp269233 +g225232 +S'Perry Oliver' +p269234 +sg225240 +g27 +sg225234 +S'etching' +p269235 +sg225230 +S'Two Men and Two Coins' +p269236 +sg225236 +S'unknown date\n' +p269237 +sa(dp269238 +g225232 +S'Perry Oliver' +p269239 +sg225240 +g27 +sg225234 +S'etching' +p269240 +sg225230 +S'The Virgin of the Sea' +p269241 +sg225236 +S'unknown date\n' +p269242 +sa(dp269243 +g225232 +S'Perry Oliver' +p269244 +sg225240 +g27 +sg225234 +S'etching' +p269245 +sg225230 +S'The Winch' +p269246 +sg225236 +S'unknown date\n' +p269247 +sa(dp269248 +g225232 +S'Fayga Ostrower' +p269249 +sg225240 +g27 +sg225234 +S'woodcut' +p269250 +sg225230 +S'Fontamara I' +p269251 +sg225236 +S'1947' +p269252 +sa(dp269253 +g225232 +S'Fayga Ostrower' +p269254 +sg225240 +g27 +sg225234 +S'woodcut' +p269255 +sg225230 +S'Fontamara II' +p269256 +sg225236 +S'1947' +p269257 +sa(dp269258 +g225232 +S'Fayga Ostrower' +p269259 +sg225240 +g27 +sg225234 +S'woodcut' +p269260 +sg225230 +S'Fontamara III' +p269261 +sg225236 +S'1947' +p269262 +sa(dp269263 +g225232 +S'Fayga Ostrower' +p269264 +sg225240 +g27 +sg225234 +S'woodcut' +p269265 +sg225230 +S'Fontamara IV' +p269266 +sg225236 +S'1947' +p269267 +sa(dp269268 +g225232 +S'Fayga Ostrower' +p269269 +sg225240 +g27 +sg225234 +S'woodcut' +p269270 +sg225230 +S'Fontamara V' +p269271 +sg225236 +S'1947' +p269272 +sa(dp269273 +g225232 +S'Fayga Ostrower' +p269274 +sg225240 +g27 +sg225234 +S'woodcut' +p269275 +sg225230 +S'Fontamara VI' +p269276 +sg225236 +S'1947' +p269277 +sa(dp269278 +g225232 +S'Fayga Ostrower' +p269279 +sg225240 +g27 +sg225234 +S'woodcut' +p269280 +sg225230 +S'Fontamara VII' +p269281 +sg225236 +S'1947' +p269282 +sa(dp269283 +g225232 +S'Fayga Ostrower' +p269284 +sg225240 +g27 +sg225234 +S'woodcut' +p269285 +sg225230 +S'Fontamara VIII' +p269286 +sg225236 +S'1947' +p269287 +sa(dp269288 +g225232 +S'Fayga Ostrower' +p269289 +sg225240 +g27 +sg225234 +S'woodcut' +p269290 +sg225230 +S'Fontamara IX' +p269291 +sg225236 +S'1947' +p269292 +sa(dp269293 +g225232 +S'Fayga Ostrower' +p269294 +sg225240 +g27 +sg225234 +S'woodcut' +p269295 +sg225230 +S'Fontamara X' +p269296 +sg225236 +S'1947' +p269297 +sa(dp269298 +g225232 +S'Fayga Ostrower' +p269299 +sg225240 +g27 +sg225234 +S'woodcut' +p269300 +sg225230 +S'Fontamara XI' +p269301 +sg225236 +S'1947' +p269302 +sa(dp269303 +g225232 +S'Fayga Ostrower' +p269304 +sg225240 +g27 +sg225234 +S'woodcut' +p269305 +sg225230 +S'Fontamara XII' +p269306 +sg225236 +S'1947' +p269307 +sa(dp269308 +g225232 +S'Fayga Ostrower' +p269309 +sg225240 +g27 +sg225234 +S'woodcut' +p269310 +sg225230 +S'Fontamara XIII' +p269311 +sg225236 +S'1947' +p269312 +sa(dp269313 +g225232 +S'Fayga Ostrower' +p269314 +sg225240 +g27 +sg225234 +S'woodcut' +p269315 +sg225230 +S'Fontamara XIV' +p269316 +sg225236 +S'1947' +p269317 +sa(dp269318 +g225232 +S'Fayga Ostrower' +p269319 +sg225240 +g27 +sg225234 +S'woodcut' +p269320 +sg225230 +S'Fontamara XV' +p269321 +sg225236 +S'1947' +p269322 +sa(dp269323 +g225230 +S'The Weary Ploughman, or The Morning Spread Upon the Mountains' +p269324 +sg225232 +S'Samuel Palmer' +p269325 +sg225234 +S'etching' +p269326 +sg225236 +S'in or before 1861' +p269327 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cf0.jpg' +p269328 +sg225240 +g27 +sa(dp269329 +g225232 +S'Leon Ren\xc3\xa9 Pescheret' +p269330 +sg225240 +g27 +sg225234 +S'color etching' +p269331 +sg225230 +S'California Coast' +p269332 +sg225236 +S'1958' +p269333 +sa(dp269334 +g225232 +S'Leon Ren\xc3\xa9 Pescheret' +p269335 +sg225240 +g27 +sg225234 +S'etching' +p269336 +sg225230 +S'Interior of the Chapel at the University of Chicago' +p269337 +sg225236 +S'unknown date\n' +p269338 +sa(dp269339 +g225232 +S'Leon Ren\xc3\xa9 Pescheret' +p269340 +sg225240 +g27 +sg225234 +S'etching' +p269341 +sg225230 +S'Rosenwald Industrial Museum' +p269342 +sg225236 +S'unknown date\n' +p269343 +sa(dp269344 +g225232 +S'Leon Ren\xc3\xa9 Pescheret' +p269345 +sg225240 +g27 +sg225234 +S'etching' +p269346 +sg225230 +S'Sailboat Heeling Near a City' +p269347 +sg225236 +S'1937' +p269348 +sa(dp269349 +g225232 +S'Gabor Peterdi' +p269350 +sg225240 +g27 +sg225234 +S'etching, engraving, aquatint with stencilled colors' +p269351 +sg225230 +S'Dark Horizon' +p269352 +sg225236 +S'1954' +p269353 +sa(dp269354 +g225232 +S'Gabor Peterdi' +p269355 +sg225240 +g27 +sg225234 +S'color etching and engraving' +p269356 +sg225230 +S'Spring' +p269357 +sg225236 +S'1964' +p269358 +sa(dp269359 +g225232 +S'Carlo Alberto Petrucci' +p269360 +sg225240 +g27 +sg225234 +S'etching' +p269361 +sg225230 +S'Paesaggio Drammatico' +p269362 +sg225236 +S'unknown date\n' +p269363 +sa(dp269364 +g225232 +S'Margaret Elder Philbrick' +p269365 +sg225240 +g27 +sg225234 +S'etching' +p269366 +sg225230 +S'Trees' +p269367 +sg225236 +S'1966' +p269368 +sa(dp269369 +g225232 +S'Matt Phillips' +p269370 +sg225240 +g27 +sg225234 +S'monotype with blue crayon added at center' +p269371 +sg225230 +S'August Day' +p269372 +sg225236 +S'1971' +p269373 +sa(dp269374 +g225232 +S'Matt Phillips' +p269375 +sg225240 +g27 +sg225234 +S'monotype' +p269376 +sg225230 +S'Bouquet' +p269377 +sg225236 +S'1966' +p269378 +sa(dp269379 +g225232 +S'Matt Phillips' +p269380 +sg225240 +g27 +sg225234 +S'monotype copper plate' +p269381 +sg225230 +S'Bouquet' +p269382 +sg225236 +S'1966' +p269383 +sa(dp269384 +g225232 +S'Matt Phillips' +p269385 +sg225240 +g27 +sg225234 +S'color monotype' +p269386 +sg225230 +S'Solola Market, Guatemala' +p269387 +sg225236 +S'1976' +p269388 +sa(dp269389 +g225232 +S'Matt Phillips' +p269390 +sg225240 +g27 +sg225234 +S'monotype on Japanese Hosho paper' +p269391 +sg225230 +S'Vase of Flowers' +p269392 +sg225236 +S'unknown date\n' +p269393 +sa(dp269394 +g225232 +S'Matt Phillips' +p269395 +sg225240 +g27 +sg225234 +S'monotype with charcoal' +p269396 +sg225230 +S'White Sails' +p269397 +sg225236 +S'1971' +p269398 +sa(dp269399 +g225232 +S'Matt Phillips' +p269400 +sg225240 +g27 +sg225234 +S'color monotype' +p269401 +sg225230 +S'Untitled' +p269402 +sg225236 +S'1961' +p269403 +sa(dp269404 +g225230 +S'Battle of the Nudes' +p269405 +sg225232 +S'Antonio del Pollaiuolo' +p269406 +sg225234 +S'engraving' +p269407 +sg225236 +S'c. 1470/1475' +p269408 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7cd.jpg' +p269409 +sg225240 +g27 +sa(dp269410 +g225232 +S'Artist Information (' +p269411 +sg225240 +g27 +sg225234 +S'(artist after)' +p269412 +sg225230 +S'Deposition' +p269413 +sg225236 +S'\n' +p269414 +sa(dp269415 +g225230 +S'Venus and Amor' +p269416 +sg225232 +S'Johann Peter Pichler' +p269417 +sg225234 +S'mezzotint' +p269418 +sg225236 +S'c. 1800' +p269419 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d79d.jpg' +p269420 +sg225240 +g27 +sa(dp269421 +g225230 +S'Title Page' +p269422 +sg225232 +S'Artist Information (' +p269423 +sg225234 +S'(artist after)' +p269424 +sg225236 +S'\n' +p269425 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d53f.jpg' +p269426 +sg225240 +g27 +sa(dp269427 +g225232 +S'Ed Porter' +p269428 +sg225240 +g27 +sg225234 +S'relief' +p269429 +sg225230 +S'Autumn Garden' +p269430 +sg225236 +S'1966' +p269431 +sa(dp269432 +g225232 +S'Ed Porter' +p269433 +sg225240 +g27 +sg225234 +S'color collograph' +p269434 +sg225230 +S'Sandwich' +p269435 +sg225236 +S'1965' +p269436 +sa(dp269437 +g225232 +S'Giacomo Porzano' +p269438 +sg225240 +g27 +sg225234 +S'lithograph with embossing' +p269439 +sg225230 +S'Homage to Ben Shahn' +p269440 +sg225236 +S'1970' +p269441 +sa(dp269442 +g225232 +S'Mily Possoz' +p269443 +sg225240 +g27 +sg225234 +S'engraving and drypoint' +p269444 +sg225230 +S'Untitled' +p269445 +sg225236 +S'unknown date\n' +p269446 +sa(dp269447 +g225232 +S'Rudy Pozzatti' +p269448 +sg225240 +g27 +sg225234 +S'color etching-engraving, aquatint, soft-ground, and lift-ground (copper) in ochre, orange, and black' +p269449 +sg225230 +S'Palazzo, Florence' +p269450 +sg225236 +S'1954' +p269451 +sa(dp269452 +g225232 +S'Rudy Pozzatti' +p269453 +sg225240 +g27 +sg225234 +S'woodcut' +p269454 +sg225230 +S'The Grasshopper' +p269455 +sg225236 +S'1954' +p269456 +sa(dp269457 +g225232 +S'Linda Prestileo' +p269458 +sg225240 +g27 +sg225234 +S'lithograph' +p269459 +sg225230 +S'Sitting VII' +p269460 +sg225236 +S'1973' +p269461 +sa(dp269462 +g225232 +S'Linda Prestileo' +p269463 +sg225240 +g27 +sg225234 +S'lithograph' +p269464 +sg225230 +S'Untitled' +p269465 +sg225236 +S'1973' +p269466 +sa(dp269467 +g225230 +S'Une Lecture (A Lecture)' +p269468 +sg225232 +S"Pierre Paul Prud'hon" +p269469 +sg225234 +S'lithograph on chine applique' +p269470 +sg225236 +S'1822' +p269471 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a0009991.jpg' +p269472 +sg225240 +g27 +sa(dp269473 +g225232 +S'Horace J. ? Prusher' +p269474 +sg225240 +g27 +sg225234 +S'graphite on bristol board' +p269475 +sg225230 +S"Lake O'Hara and Mt. Lefroy, British Columbia" +p269476 +sg225236 +S'1930' +p269477 +sa(dp269478 +g225230 +S'Frontispiece' +p269479 +sg225232 +S'British 17th Century' +p269480 +sg225234 +S"Hind 'Engravings', Vol. 2, p.387, no. 58" +p269481 +sg225236 +S'\nengraving' +p269482 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076ae.jpg' +p269483 +sg225240 +g27 +sa(dp269484 +g225230 +S'Frontispiece' +p269485 +sg225232 +S'British 17th Century' +p269486 +sg225234 +S"Hind 'Engravings', Vol. 2, p.387, no. 58" +p269487 +sg225236 +S'\netching' +p269488 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076ac.jpg' +p269489 +sg225240 +g27 +sa(dp269490 +g225230 +S'Title Page' +p269491 +sg225232 +S'British 17th Century' +p269492 +sg225234 +S"Hind 'Engravings', Vol. 2, p.387, no. 58" +p269493 +sg225236 +S'\nengraving' +p269494 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076ad.jpg' +p269495 +sg225240 +g27 +sa(dp269496 +g225232 +S'James N. Rosenberg' +p269497 +sg225240 +g27 +sg225234 +S'lithograph' +p269498 +sg225230 +S'The Shambles, Nov. 1929' +p269499 +sg225236 +S'1929' +p269500 +sa(dp269501 +g225232 +S'Sylvia Charlotte Mayzer Rantz' +p269502 +sg225240 +g27 +sg225234 +S'screenprint' +p269503 +sg225230 +S"Pirate's Alley" +p269504 +sg225236 +S'1955' +p269505 +sa(dp269506 +g225232 +S'Jacques Ramondot' +p269507 +sg225240 +g27 +sg225234 +S'etching' +p269508 +sg225230 +S'Mollieres' +p269509 +sg225236 +S'unknown date\n' +p269510 +sa(dp269511 +g225232 +S'Krishna N. Reddy' +p269512 +sg225240 +g27 +sg225234 +S'8-color etching' +p269513 +sg225230 +S'Fleurs Eclantantes (Brilliant Flowers)' +p269514 +sg225236 +S'1964' +p269515 +sa(dp269516 +g225232 +S'Krishna N. Reddy' +p269517 +sg225240 +g27 +sg225234 +S'color viscosity intaglio on wove paper' +p269518 +sg225230 +S'Two Forms in One' +p269519 +sg225236 +S'1958' +p269520 +sa(dp269521 +g225232 +S'Bernard Reder' +p269522 +sg225240 +g27 +sg225234 +S'woodcut' +p269523 +sg225230 +S'Rabelais and Francois I' +p269524 +sg225236 +S'unknown date\n' +p269525 +sa(dp269526 +g225232 +S'Bernard Reder' +p269527 +sg225240 +g27 +sg225234 +S'woodcut' +p269528 +sg225230 +S"Protecteur d'amour" +p269529 +sg225236 +S'unknown date\n' +p269530 +sa(dp269531 +g225232 +S'Bernard Reder' +p269532 +sg225240 +g27 +sg225234 +S'woodcut' +p269533 +sg225230 +S'Les droits doux de Gargantua: Le chateau des cartes' +p269534 +sg225236 +S'unknown date\n' +p269535 +sa(dp269536 +g225232 +S'Bernard Reder' +p269537 +sg225240 +g27 +sg225234 +S'woodcut' +p269538 +sg225230 +S'Gargantua: Chapter III' +p269539 +sg225236 +S'unknown date\n' +p269540 +sa(dp269541 +g225232 +S'Bernard Reder' +p269542 +sg225240 +g27 +sg225234 +S'woodcut' +p269543 +sg225230 +S'Gargantua: Chapter IV' +p269544 +sg225236 +S'unknown date\n' +p269545 +sa(dp269546 +g225232 +S'Bernard Reder' +p269547 +sg225240 +g27 +sg225234 +S'woodcut' +p269548 +sg225230 +S'Gargantua: Chapter IV' +p269549 +sg225236 +S'unknown date\n' +p269550 +sa(dp269551 +g225232 +S'Bernard Reder' +p269552 +sg225240 +g27 +sg225234 +S'woodcut' +p269553 +sg225230 +S'Gargantua: Chapter IV' +p269554 +sg225236 +S'unknown date\n' +p269555 +sa(dp269556 +g225232 +S'Bernard Reder' +p269557 +sg225240 +g27 +sg225234 +S'woodcut' +p269558 +sg225230 +S'Gargantua: Chapter IV' +p269559 +sg225236 +S'unknown date\n' +p269560 +sa(dp269561 +g225232 +S'Bernard Reder' +p269562 +sg225240 +g27 +sg225234 +S'woodcut' +p269563 +sg225230 +S'Gargantua: Chapter XI' +p269564 +sg225236 +S'unknown date\n' +p269565 +sa(dp269566 +g225232 +S'Bernard Reder' +p269567 +sg225240 +g27 +sg225234 +S'woodcut' +p269568 +sg225230 +S'Gargantua: Chapter XIII' +p269569 +sg225236 +S'unknown date\n' +p269570 +sa(dp269571 +g225232 +S'Bernard Reder' +p269572 +sg225240 +g27 +sg225234 +S'woodcut' +p269573 +sg225230 +S'Gargantua: Chapter XVII' +p269574 +sg225236 +S'unknown date\n' +p269575 +sa(dp269576 +g225232 +S'Bernard Reder' +p269577 +sg225240 +g27 +sg225234 +S'woodcut' +p269578 +sg225230 +S'Gargantua: Chapter XVII' +p269579 +sg225236 +S'unknown date\n' +p269580 +sa(dp269581 +g225232 +S'Bernard Reder' +p269582 +sg225240 +g27 +sg225234 +S'woodcut' +p269583 +sg225230 +S'Gargantua: Chapter XVII' +p269584 +sg225236 +S'unknown date\n' +p269585 +sa(dp269586 +g225232 +S'Bernard Reder' +p269587 +sg225240 +g27 +sg225234 +S'woodcut' +p269588 +sg225230 +S'Gargantua: Chapter XXII' +p269589 +sg225236 +S'unknown date\n' +p269590 +sa(dp269591 +g225232 +S'Bernard Reder' +p269592 +sg225240 +g27 +sg225234 +S'woodcut' +p269593 +sg225230 +S'Gargantua: Chapter LVII' +p269594 +sg225236 +S'unknown date\n' +p269595 +sa(dp269596 +g225232 +S'Bernard Reder' +p269597 +sg225240 +g27 +sg225234 +S'woodcut' +p269598 +sg225230 +S'Le bateau' +p269599 +sg225236 +S'unknown date\n' +p269600 +sa(dp269601 +g225232 +S'Bernard Reder' +p269602 +sg225240 +g27 +sg225234 +S'woodcut' +p269603 +sg225230 +S'Pantagruel: Chapter XVII' +p269604 +sg225236 +S'unknown date\n' +p269605 +sa(dp269606 +g225232 +S'Bernard Reder' +p269607 +sg225240 +g27 +sg225234 +S'woodcut' +p269608 +sg225230 +S'Horse' +p269609 +sg225236 +S'unknown date\n' +p269610 +sa(dp269611 +g225232 +S'Bernard Reder' +p269612 +sg225240 +g27 +sg225234 +S'woodcut' +p269613 +sg225230 +S'Kneeling Man Embracing a Woman' +p269614 +sg225236 +S'unknown date\n' +p269615 +sa(dp269616 +g225232 +S'Bernard Reder' +p269617 +sg225240 +g27 +sg225234 +S'watercolor over charcoal' +p269618 +sg225230 +S'Woman' +p269619 +sg225236 +S'1958' +p269620 +sa(dp269621 +g225232 +S'Bernard Reder' +p269622 +sg225240 +g27 +sg225234 +S'woodcut' +p269623 +sg225230 +S'Portrait of a Woman' +p269624 +sg225236 +S'unknown date\n' +p269625 +sa(dp269626 +g225232 +S'Bernard Reder' +p269627 +sg225240 +g27 +sg225234 +S'mixed technique (monotype and woodcut?)' +p269628 +sg225230 +S'Woman with Hat' +p269629 +sg225236 +S'1951' +p269630 +sa(dp269631 +g225232 +S'Bernard Reder' +p269632 +sg225240 +g27 +sg225234 +S'woodcut' +p269633 +sg225230 +S'Woman with Long Neck' +p269634 +sg225236 +S'unknown date\n' +p269635 +sa(dp269636 +g225232 +S'Bernard Reder' +p269637 +sg225240 +g27 +sg225234 +S'woodcut' +p269638 +sg225230 +S'Woman and Peacock' +p269639 +sg225236 +S'unknown date\n' +p269640 +sa(dp269641 +g225230 +S'La Vieille: Que Crains-tu? Un large trou Noir! Il est vide peut-etre? (What are you afraid of? A wide black hole! It is empty, perhaps!)' +p269642 +sg225232 +S'Odilon Redon' +p269643 +sg225234 +S'lithograph' +p269644 +sg225236 +S'1896' +p269645 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c9c.jpg' +p269646 +sg225240 +g27 +sa(dp269647 +g225232 +S'Earl Howell Reed' +p269648 +sg225240 +g27 +sg225234 +S'lithograph' +p269649 +sg225230 +S'February Silence' +p269650 +sg225236 +S'unknown date\n' +p269651 +sa(dp269652 +g225232 +S'Imre Reiner' +p269653 +sg225240 +g27 +sg225234 +S'color etching' +p269654 +sg225230 +S'Happy New Year' +p269655 +sg225236 +S'1971' +p269656 +sa(dp269657 +g225232 +S'Imre Reiner' +p269658 +sg225240 +g27 +sg225234 +S'etching' +p269659 +sg225230 +S'Shakespeare/Sommernachtstraum' +p269660 +sg225236 +S'1964' +p269661 +sa(dp269662 +g225232 +S'Imre Reiner' +p269663 +sg225240 +g27 +sg225234 +S'portfolio with 10 etchings' +p269664 +sg225230 +S'Theater - Zehn Radierungen' +p269665 +sg225236 +S'1964' +p269666 +sa(dp269667 +g225232 +S'Imre Reiner' +p269668 +sg225240 +g27 +sg225234 +S'etching' +p269669 +sg225230 +S'Shakespeare/Sommernachtstraum' +p269670 +sg225236 +S'1964' +p269671 +sa(dp269672 +g225232 +S'Imre Reiner' +p269673 +sg225240 +g27 +sg225234 +S'etching' +p269674 +sg225230 +S'Shakespeare/Sommernachtstraum' +p269675 +sg225236 +S'1964' +p269676 +sa(dp269677 +g225232 +S'Imre Reiner' +p269678 +sg225240 +g27 +sg225234 +S'etching' +p269679 +sg225230 +S'Euripides/Medea' +p269680 +sg225236 +S'1964' +p269681 +sa(dp269682 +g225232 +S'Imre Reiner' +p269683 +sg225240 +g27 +sg225234 +S'etching' +p269684 +sg225230 +S'Euripides/Medea' +p269685 +sg225236 +S'1964' +p269686 +sa(dp269687 +g225232 +S'Imre Reiner' +p269688 +sg225240 +g27 +sg225234 +S'etching' +p269689 +sg225230 +S'Euripides/Medea' +p269690 +sg225236 +S'1964' +p269691 +sa(dp269692 +g225232 +S'Imre Reiner' +p269693 +sg225240 +g27 +sg225234 +S'etching' +p269694 +sg225230 +S'Euripides/Medea' +p269695 +sg225236 +S'1964' +p269696 +sa(dp269697 +g225232 +S'Imre Reiner' +p269698 +sg225240 +g27 +sg225234 +S'etching' +p269699 +sg225230 +S'Von Kleist/Marionettentheater' +p269700 +sg225236 +S'1964' +p269701 +sa(dp269702 +g225232 +S'Imre Reiner' +p269703 +sg225240 +g27 +sg225234 +S'etching' +p269704 +sg225230 +S'Von Kleist/Marionettentheater' +p269705 +sg225236 +S'1964' +p269706 +sa(dp269707 +g225232 +S'Imre Reiner' +p269708 +sg225240 +g27 +sg225234 +S'etching' +p269709 +sg225230 +S'Von Kleist/Marionettentheater' +p269710 +sg225236 +S'1964' +p269711 +sa(dp269712 +g225230 +S'Snub-Nosed Man in a Cap' +p269713 +sg225232 +S'Artist Information (' +p269714 +sg225234 +S'Dutch, 1606 - 1669' +p269715 +sg225236 +S'(artist)' +p269716 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3a0.jpg' +p269717 +sg225240 +g27 +sa(dp269718 +g225232 +S'Auguste Renoir' +p269719 +sg225240 +g27 +sg225234 +S'counterproof of pastel' +p269720 +sg225230 +S'Lady with Green Hat (Mlle. Dieterle?)' +p269721 +sg225236 +S'unknown date\n' +p269722 +sa(dp269723 +g225230 +S'Masonic Certificate' +p269724 +sg225232 +S'Paul Revere' +p269725 +sg225234 +S'engraving on wove paper, printed by Herbert Pasternack in 1954' +p269726 +sg225236 +S'1796 (printed 1954)' +p269727 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa0f.jpg' +p269728 +sg225240 +g27 +sa(dp269729 +g225230 +S'The Obelisk under the Liberty Tree, Boston' +p269730 +sg225232 +S'Paul Revere' +p269731 +sg225234 +S"engraving on wove paper, printed by Ed. O'Brien in 1973" +p269732 +sg225236 +S'1766 (printed 1973)' +p269733 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa0e.jpg' +p269734 +sg225240 +g27 +sa(dp269735 +g225230 +S'Sir Jeffery Amherst' +p269736 +sg225232 +S'Artist Information (' +p269737 +sg225234 +S'(artist after)' +p269738 +sg225236 +S'\n' +p269739 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a0007693.jpg' +p269740 +sg225240 +g27 +sa(dp269741 +g225230 +S'The Martyrdom of Saint Bartholomew' +p269742 +sg225232 +S'Jusepe de Ribera' +p269743 +sg225234 +S'etching and engraving' +p269744 +sg225236 +S'1624' +p269745 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f7a.jpg' +p269746 +sg225240 +g27 +sa(dp269747 +g225232 +S'Rand Robbin' +p269748 +sg225240 +g27 +sg225234 +S'color intaglio (mixed methods)' +p269749 +sg225230 +S"Death Watch from Duke's Hill" +p269750 +sg225236 +S'1969' +p269751 +sa(dp269752 +g225230 +S'King Henry III' +p269753 +sg225232 +S'Henry Roberts' +p269754 +sg225234 +S'etching and engraving' +p269755 +sg225236 +S'unknown date\n' +p269756 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a0007733.jpg' +p269757 +sg225240 +g27 +sa(dp269758 +g225232 +S'Tony Rosati' +p269759 +sg225240 +g27 +sg225234 +S'drypoint' +p269760 +sg225230 +S'Bryn Athyn' +p269761 +sg225236 +S'1975' +p269762 +sa(dp269763 +g225232 +S'Tony Rosati' +p269764 +sg225240 +g27 +sg225234 +S'monotype' +p269765 +sg225230 +S'Rosenwald Drive' +p269766 +sg225236 +S'1977' +p269767 +sa(dp269768 +g225232 +S'Tony Rosati' +p269769 +sg225240 +g27 +sg225234 +S'aquatint' +p269770 +sg225230 +S"The Wall's House" +p269771 +sg225236 +S'1975' +p269772 +sa(dp269773 +g225232 +S'Lessing Julius Rosenwald' +p269774 +sg225240 +g27 +sg225234 +S'charcoal on laid paper' +p269775 +sg225230 +S'Still Life (Apples and Basket)' +p269776 +sg225236 +S'unknown date\n' +p269777 +sa(dp269778 +g225232 +S'Robert Rosenwald' +p269779 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p269780 +sg225230 +S'Midnight in Menemsha in May' +p269781 +sg225236 +S'unknown date\n' +p269782 +sa(dp269783 +g225232 +S'Robert Rosenwald' +p269784 +sg225240 +g27 +sg225234 +S'graphite' +p269785 +sg225230 +S'Self-Portrait' +p269786 +sg225236 +S'1941' +p269787 +sa(dp269788 +g225232 +S'Robert Rosenwald' +p269789 +sg225240 +g27 +sg225234 +S'woodcut' +p269790 +sg225230 +S'Striped Figure' +p269791 +sg225236 +S'1961' +p269792 +sa(dp269793 +g225232 +S'Seymour Rosofsky' +p269794 +sg225240 +g27 +sg225234 +S'lithograph' +p269795 +sg225230 +S'The Love Fountain' +p269796 +sg225236 +S'unknown date\n' +p269797 +sa(dp269798 +g225232 +S'Artist Information (' +p269799 +sg225240 +g27 +sg225234 +S'(author)' +p269800 +sg225230 +S'Reincarnations du Pere Ubu' +p269801 +sg225236 +S'\n' +p269802 +sa(dp269803 +g225232 +S'Georges Rouault' +p269804 +sg225240 +g27 +sg225234 +S'aquatint, roulette, and etching in black' +p269805 +sg225230 +S'Frontispiece' +p269806 +sg225236 +S'1928' +p269807 +sa(dp269808 +g225232 +S'Georges Rouault' +p269809 +sg225240 +g27 +sg225234 +S'aquatint, roulette and etching in black' +p269810 +sg225230 +S'Fleau Colon' +p269811 +sg225236 +S'1928' +p269812 +sa(dp269813 +g225232 +S'Georges Rouault' +p269814 +sg225240 +g27 +sg225234 +S'aquatint, roulette, and etching in black' +p269815 +sg225230 +S'Bon Candidat Boudoubadabou' +p269816 +sg225236 +S'1928' +p269817 +sa(dp269818 +g225232 +S'Georges Rouault' +p269819 +sg225240 +g27 +sg225234 +S'aquatint, roulette, and etching in black' +p269820 +sg225230 +S'Le Politicard' +p269821 +sg225236 +S'1928' +p269822 +sa(dp269823 +g225232 +S'Georges Rouault' +p269824 +sg225240 +g27 +sg225234 +S'aquatint, roulette, and etching in black' +p269825 +sg225230 +S'Bon Electeur' +p269826 +sg225236 +S'1928' +p269827 +sa(dp269828 +g225232 +S'Georges Rouault' +p269829 +sg225240 +g27 +sg225234 +S'aquatint, roulette, and etching in black' +p269830 +sg225230 +S'Le Pere Ubu Chantre' +p269831 +sg225236 +S'1928' +p269832 +sa(dp269833 +g225232 +S'Georges Rouault' +p269834 +sg225240 +g27 +sg225234 +S'aquatint, roulette, and etching in black' +p269835 +sg225230 +S'Profil' +p269836 +sg225236 +S'1928' +p269837 +sa(dp269838 +g225232 +S'Georges Rouault' +p269839 +sg225240 +g27 +sg225234 +S'aquatint, roulette, and drypoint in black' +p269840 +sg225230 +S'Le Noir Libere' +p269841 +sg225236 +S'1928' +p269842 +sa(dp269843 +g225232 +S'Georges Rouault' +p269844 +sg225240 +g27 +sg225234 +S'aquatint, roulette, and etching in black' +p269845 +sg225230 +S"L'Administrateur Colonial" +p269846 +sg225236 +S'1928' +p269847 +sa(dp269848 +g225232 +S'Georges Rouault' +p269849 +sg225240 +g27 +sg225234 +S'aquatint, roulette, and etching in black' +p269850 +sg225230 +S'Incantation' +p269851 +sg225236 +S'1928' +p269852 +sa(dp269853 +g225232 +S'Georges Rouault' +p269854 +sg225240 +g27 +sg225234 +S'aquatint, roulette, and drypoint in black' +p269855 +sg225230 +S'Bamboula' +p269856 +sg225236 +S'1928' +p269857 +sa(dp269858 +g225232 +S'Georges Rouault' +p269859 +sg225240 +g27 +sg225234 +S'aquatint, roulette, etching, and drypoint in black' +p269860 +sg225230 +S'Nu' +p269861 +sg225236 +S'1928' +p269862 +sa(dp269863 +g225232 +S'Georges Rouault' +p269864 +sg225240 +g27 +sg225234 +S'aquatint, roulette, etching, and drypoint in black' +p269865 +sg225230 +S'Paysage Tropical' +p269866 +sg225236 +S'1928' +p269867 +sa(dp269868 +g225232 +S'Georges Rouault' +p269869 +sg225240 +g27 +sg225234 +S'aquatint, roulette, and etching in black' +p269870 +sg225230 +S'Cristal de Roche' +p269871 +sg225236 +S'1928' +p269872 +sa(dp269873 +g225232 +S'Georges Rouault' +p269874 +sg225240 +g27 +sg225234 +S'aquatint, roulette, and drypoint in black' +p269875 +sg225230 +S'Mademoiselle Irma' +p269876 +sg225236 +S'1928' +p269877 +sa(dp269878 +g225232 +S'Georges Rouault' +p269879 +sg225240 +g27 +sg225234 +S'aquatint, roulette, and drypoint in black' +p269880 +sg225230 +S'Le Poisson Volant' +p269881 +sg225236 +S'1928' +p269882 +sa(dp269883 +g225232 +S'Georges Rouault' +p269884 +sg225240 +g27 +sg225234 +S'aquatint, roulette, and drypoint in black' +p269885 +sg225230 +S'Noces' +p269886 +sg225236 +S'1928' +p269887 +sa(dp269888 +g225232 +S'Georges Rouault' +p269889 +sg225240 +g27 +sg225234 +S'aquatint, roulette, and etching in black' +p269890 +sg225230 +S'Les Deux Matrones' +p269891 +sg225236 +S'1928' +p269892 +sa(dp269893 +g225232 +S'Georges Rouault' +p269894 +sg225240 +g27 +sg225234 +S'aquatint, roulette, and drypoint in black' +p269895 +sg225230 +S'Sainte-Nitouche' +p269896 +sg225236 +S'1928' +p269897 +sa(dp269898 +g225232 +S'Georges Rouault' +p269899 +sg225240 +g27 +sg225234 +S'aquatint, roulette, etching, and drypoint in black' +p269900 +sg225230 +S'Le Directeur de Th\xc3\xa9\xc3\xa2tre' +p269901 +sg225236 +S'1928' +p269902 +sa(dp269903 +g225232 +S'Georges Rouault' +p269904 +sg225240 +g27 +sg225234 +S'aquatint, roulette, and etching in black' +p269905 +sg225230 +S'Nu Assis' +p269906 +sg225236 +S'1928' +p269907 +sa(dp269908 +g225232 +S'Georges Rouault' +p269909 +sg225240 +g27 +sg225234 +S'aquatint, roulette, and etching in black' +p269910 +sg225230 +S'Fille au Grand Chapeau' +p269911 +sg225236 +S'1928' +p269912 +sa(dp269913 +g225232 +S'Georges Rouault' +p269914 +sg225240 +g27 +sg225234 +S'wood engraving (drawn by Roualt, engraved by G. Aubert)' +p269915 +sg225230 +S'Arabesques' +p269916 +sg225236 +S'1938' +p269917 +sa(dp269918 +g225232 +S'Georges Rouault' +p269919 +sg225240 +g27 +sg225234 +S'wood engraving (drawn by Roualt, engraved by G. Aubert)' +p269920 +sg225230 +S'Reclining Nude' +p269921 +sg225236 +S'1938' +p269922 +sa(dp269923 +g225232 +S'Georges Rouault' +p269924 +sg225240 +g27 +sg225234 +S'wood engraving (drawn by Roualt, engraved by G. Aubert)' +p269925 +sg225230 +S'Three Clowns' +p269926 +sg225236 +S'1938' +p269927 +sa(dp269928 +g225230 +S'Stag Hunt near a Pool' +p269929 +sg225232 +S'Artist Information (' +p269930 +sg225234 +S'(artist after)' +p269931 +sg225236 +S'\n' +p269932 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d02a.jpg' +p269933 +sg225240 +g27 +sa(dp269934 +g225230 +S'Five Busts' +p269935 +sg225232 +S'Augustin de Saint-Aubin' +p269936 +sg225234 +S'etching' +p269937 +sg225236 +S'unknown date\n' +p269938 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008ca5.jpg' +p269939 +sg225240 +g27 +sa(dp269940 +g225232 +S'Kiyoshi Saito' +p269941 +sg225240 +g27 +sg225234 +S'woodcut in black and gray' +p269942 +sg225230 +S'Aizu in Winter' +p269943 +sg225236 +S'1938' +p269944 +sa(dp269945 +g225232 +S'Kiyoshi Saito' +p269946 +sg225240 +g27 +sg225234 +S'color woodcut' +p269947 +sg225230 +S'Cats' +p269948 +sg225236 +S'1955' +p269949 +sa(dp269950 +g225232 +S'Art Salazar' +p269951 +sg225240 +g27 +sg225234 +S'intaglio' +p269952 +sg225230 +S'Livingston County 2' +p269953 +sg225236 +S'1972' +p269954 +sa(dp269955 +g225232 +S'Juvenal Sans\xc3\xb2' +p269956 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p269957 +sg225230 +S'Lueurs' +p269958 +sg225236 +S'unknown date\n' +p269959 +sa(dp269960 +g225232 +S'Juvenal Sans\xc3\xb2' +p269961 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p269962 +sg225230 +S'Vie Vegetale' +p269963 +sg225236 +S'1960' +p269964 +sa(dp269965 +g225232 +S'Hector Saunier' +p269966 +sg225240 +g27 +sg225234 +S'engraving' +p269967 +sg225230 +S'Babilonia' +p269968 +sg225236 +S'1972' +p269969 +sa(dp269970 +g225232 +S'Hector Saunier' +p269971 +sg225240 +g27 +sg225234 +S'color etching' +p269972 +sg225230 +S'Lunaire' +p269973 +sg225236 +S'1971' +p269974 +sa(dp269975 +g225232 +S'Hector Saunier' +p269976 +sg225240 +g27 +sg225234 +S'engraving' +p269977 +sg225230 +S'Mujer' +p269978 +sg225236 +S'1973' +p269979 +sa(dp269980 +g225232 +S'Angelo Savelli' +p269981 +sg225240 +g27 +sg225234 +S'color embossing (relief lithograph?)' +p269982 +sg225230 +S'The City Going Moon' +p269983 +sg225236 +S'1964' +p269984 +sa(dp269985 +g225232 +S'Louis Schanker' +p269986 +sg225240 +g27 +sg225234 +S'woodcut in brown and green' +p269987 +sg225230 +S'"Greetings"' +p269988 +sg225236 +S'unknown date\n' +p269989 +sa(dp269990 +g225232 +S'Louis Schanker' +p269991 +sg225240 +g27 +sg225234 +S'color linoleum cut' +p269992 +sg225230 +S'Christmas Card' +p269993 +sg225236 +S'probably 1938' +p269994 +sa(dp269995 +g225232 +S'Louis Schanker' +p269996 +sg225240 +g27 +sg225234 +S'linoleum cut [?]' +p269997 +sg225230 +S'Christmas Card' +p269998 +sg225236 +S'unknown date\n' +p269999 +sa(dp270000 +g225232 +S'Louis Schanker' +p270001 +sg225240 +g27 +sg225234 +S'woodcut in yellow, red, and green' +p270002 +sg225230 +S'"Greetings 1952"' +p270003 +sg225236 +S'unknown date\n' +p270004 +sa(dp270005 +g225232 +S'Otto Rudolf Schatz' +p270006 +sg225240 +g27 +sg225234 +S'woodcut' +p270007 +sg225230 +S'Heinrich Schwarz' +p270008 +sg225236 +S'1922' +p270009 +sa(dp270010 +g225232 +S'Charles Schmidt' +p270011 +sg225240 +g27 +sg225234 +S'lithograph' +p270012 +sg225230 +S'Century Limited: A Locomotive of the New Hope and Ivyland Railroad' +p270013 +sg225236 +S'1973' +p270014 +sa(dp270015 +g225230 +S'Nude with Outstretched Arm' +p270016 +sg225232 +S'Ferdinand Schmutzer' +p270017 +sg225234 +S'soft-ground etching' +p270018 +sg225236 +S'unknown date\n' +p270019 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d7cc.jpg' +p270020 +sg225240 +g27 +sa(dp270021 +g225230 +S'Shepherd with Flock' +p270022 +sg225232 +S'Ferdinand Schmutzer' +p270023 +sg225234 +S'etching in brown' +p270024 +sg225236 +S'unknown date\n' +p270025 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d7cd.jpg' +p270026 +sg225240 +g27 +sa(dp270027 +g225232 +S'Misch Kohn' +p270028 +sg225240 +g27 +sg225234 +S'4-color lithograph' +p270029 +sg225230 +S"Season's Greetings" +p270030 +sg225236 +S'1941' +p270031 +sa(dp270032 +g225232 +S'Karl Schrag' +p270033 +sg225240 +g27 +sg225234 +S'etching and aquatint in black on wove paper' +p270034 +sg225230 +S'Merging Clouds and Mountains' +p270035 +sg225236 +S'1956' +p270036 +sa(dp270037 +g225232 +S'Karl Schrag' +p270038 +sg225240 +g27 +sg225234 +S'lithograph in red on yellow wove paper' +p270039 +sg225230 +S'Rising and Sinking Sun' +p270040 +sg225236 +S'unknown date\n' +p270041 +sa(dp270042 +g225232 +S'Karl Schrag' +p270043 +sg225240 +g27 +sg225234 +S'etching and engraving in mauve on wove paper' +p270044 +sg225230 +S'Storm Dance - Fish and Leaves' +p270045 +sg225236 +S'1973' +p270046 +sa(dp270047 +g225232 +S'Karl Schrag' +p270048 +sg225240 +g27 +sg225234 +S'etching, engraving and aquatint in black and blue-black on wove paper' +p270049 +sg225230 +S'Trees Touched by Moonlight' +p270050 +sg225236 +S'1970' +p270051 +sa(dp270052 +g225232 +S'Carl Max Schultheiss' +p270053 +sg225240 +g27 +sg225234 +S'engraving' +p270054 +sg225230 +S'Pastoral' +p270055 +sg225236 +S'c. 1947' +p270056 +sa(dp270057 +g225232 +S'Carl Max Schultheiss' +p270058 +sg225240 +g27 +sg225234 +S'engraving' +p270059 +sg225230 +S'Pastoral III' +p270060 +sg225236 +S'unknown date\n' +p270061 +sa(dp270062 +g225232 +S'Joan Rosenwald Scott' +p270063 +sg225240 +g27 +sg225234 +S'soft-ground etching' +p270064 +sg225230 +S'Happy Anniversary' +p270065 +sg225236 +S'unknown date\n' +p270066 +sa(dp270067 +g225232 +S'Joan Rosenwald Scott' +p270068 +sg225240 +g27 +sg225234 +S'etching in green' +p270069 +sg225230 +S'Your 5 on Your 84th' +p270070 +sg225236 +S'unknown date\n' +p270071 +sa(dp270072 +g225232 +S'Joan Rosenwald Scott' +p270073 +sg225240 +g27 +sg225234 +S'cardboard print' +p270074 +sg225230 +S'60' +p270075 +sg225236 +S'unknown date\n' +p270076 +sa(dp270077 +g225232 +S'Joan Rosenwald Scott' +p270078 +sg225240 +g27 +sg225234 +S'cardboard print' +p270079 +sg225230 +S'LX' +p270080 +sg225236 +S'1973' +p270081 +sa(dp270082 +g225232 +S'Joan Rosenwald Scott' +p270083 +sg225240 +g27 +sg225234 +S'soft-ground etching' +p270084 +sg225230 +S'Leaves' +p270085 +sg225236 +S'1976' +p270086 +sa(dp270087 +g225232 +S'Joan Rosenwald Scott' +p270088 +sg225240 +g27 +sg225234 +S'etching in green and yellow' +p270089 +sg225230 +S'Mail Boxes' +p270090 +sg225236 +S'unknown date\n' +p270091 +sa(dp270092 +g225232 +S'Joan Rosenwald Scott' +p270093 +sg225240 +g27 +sg225234 +S'etching' +p270094 +sg225230 +S'Table and Chair with Picture and Drapery' +p270095 +sg225236 +S'1973' +p270096 +sa(dp270097 +g225232 +S'Joan Rosenwald Scott' +p270098 +sg225240 +g27 +sg225234 +S'etching in brown and red' +p270099 +sg225230 +S'Four Cardinals on a Branch' +p270100 +sg225236 +S'1976' +p270101 +sa(dp270102 +g225232 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p270103 +sg225240 +g27 +sg225234 +S'etching' +p270104 +sg225230 +S'Garden of Bagatelle (Best Wishes for 1969 from La Galerie Sagot-Le Garrec)' +p270105 +sg225236 +S'1954 and 1968' +p270106 +sa(dp270107 +g225232 +S"Jun'ichiro Sekino" +p270108 +sg225240 +g27 +sg225234 +S'color woodcut' +p270109 +sg225230 +S'Shiko Munakata' +p270110 +sg225236 +S'1968' +p270111 +sa(dp270112 +g225232 +S'Alois Senefelder' +p270113 +sg225240 +g27 +sg225234 +S'lithograph' +p270114 +sg225230 +S'Title Page' +p270115 +sg225236 +S'published 1819' +p270116 +sa(dp270117 +g225232 +S'Artist Information (' +p270118 +sg225240 +g27 +sg225234 +S'German, 1771 - 1834' +p270119 +sg225230 +S"L'art de la lithographie ... [Illustrations]" +p270120 +sg225236 +S'(author)' +p270121 +sa(dp270122 +g225232 +S'Artist Information (' +p270123 +sg225240 +g27 +sg225234 +S'(artist after)' +p270124 +sg225230 +S'Dessin a la plume, pointille (Madonna and Child in the Clouds)' +p270125 +sg225236 +S'\n' +p270126 +sa(dp270127 +g225232 +S'Clemens Joseph Johannes Senefelder' +p270128 +sg225240 +g27 +sg225234 +S'lithograph' +p270129 +sg225230 +S'Dessin a la plume (Landeck in Tyrol)' +p270130 +sg225236 +S'published 1819' +p270131 +sa(dp270132 +g225232 +S'Alois Senefelder' +p270133 +sg225240 +g27 +sg225234 +S'lithograph' +p270134 +sg225230 +S'Vive le Roi! Vive la France!' +p270135 +sg225236 +S'published 1819' +p270136 +sa(dp270137 +g225232 +S'Artist Information (' +p270138 +sg225240 +g27 +sg225234 +S'(artist after)' +p270139 +sg225230 +S"Three Drawings from Durer's Prayerbook of Maximilian" +p270140 +sg225236 +S'\n' +p270141 +sa(dp270142 +g225232 +S'Alois Senefelder' +p270143 +sg225240 +g27 +sg225234 +S'lithograph' +p270144 +sg225230 +S'Taille de bois transporte sur pierre' +p270145 +sg225236 +S'published 1819' +p270146 +sa(dp270147 +g225232 +S'Alois Senefelder' +p270148 +sg225240 +g27 +sg225234 +S'lithograph' +p270149 +sg225230 +S'Dessin dans le genre etrusque' +p270150 +sg225236 +S'published 1819' +p270151 +sa(dp270152 +g225232 +S'Alois Senefelder' +p270153 +sg225240 +g27 +sg225234 +S'lithograph in blue, red, and black' +p270154 +sg225230 +S'Psalter - Initial B' +p270155 +sg225236 +S'published 1819' +p270156 +sa(dp270157 +g225232 +S'Nicolas-Henri Jacob' +p270158 +sg225240 +g27 +sg225234 +S'lithograph' +p270159 +sg225230 +S'Allegorical Representation of the Invention of Lithography' +p270160 +sg225236 +S'published 1819' +p270161 +sa(dp270162 +g225232 +S'Alois Senefelder' +p270163 +sg225240 +g27 +sg225234 +S'lithograph' +p270164 +sg225230 +S'Gravure en taille douce, transporte sur pierre (Ludwig XVIII)' +p270165 +sg225236 +S'published 1819' +p270166 +sa(dp270167 +g225232 +S'Anton Falger' +p270168 +sg225240 +g27 +sg225234 +S'lithograph' +p270169 +sg225230 +S'Examples of Three Engravings' +p270170 +sg225236 +S'published 1819' +p270171 +sa(dp270172 +g225232 +S'Marie Electrine Stuntz' +p270173 +sg225240 +g27 +sg225234 +S'lithograph' +p270174 +sg225230 +S'Dessin au crayon (Saint Cecilia)' +p270175 +sg225236 +S'published 1819' +p270176 +sa(dp270177 +g225232 +S'Alois Senefelder' +p270178 +sg225240 +g27 +sg225234 +S'lithograph' +p270179 +sg225230 +S"Gravure a l'eau-forte sur pierre (River Landscape)" +p270180 +sg225236 +S'published 1819' +p270181 +sa(dp270182 +g225232 +S'Nicolas-Henri Jacob' +p270183 +sg225240 +g27 +sg225234 +S'lithograph' +p270184 +sg225230 +S'Dessin sur papier et transporte sur pierre (Head of an Amazon)' +p270185 +sg225236 +S'published 1819' +p270186 +sa(dp270187 +g225232 +S'Alois Senefelder' +p270188 +sg225240 +g27 +sg225234 +S'lithograph' +p270189 +sg225230 +S'Examples of Typeset' +p270190 +sg225236 +S'published 1819' +p270191 +sa(dp270192 +g225232 +S'Alois Senefelder' +p270193 +sg225240 +g27 +sg225234 +S'lithograph' +p270194 +sg225230 +S"Scala de plusieurs genres lithographiques de l'interjection et de l'aquatinta" +p270195 +sg225236 +S'published 1819' +p270196 +sa(dp270197 +g225232 +S'Alois Senefelder' +p270198 +sg225240 +g27 +sg225234 +S'lithograph' +p270199 +sg225230 +S'Dessin a plusieurs planches (Italian Church Ruins)' +p270200 +sg225236 +S'published 1819' +p270201 +sa(dp270202 +g225232 +S'Leonhard Zertahelly' +p270203 +sg225240 +g27 +sg225234 +S'lithograph' +p270204 +sg225230 +S'Gravure a la pointe (Albanians)' +p270205 +sg225236 +S'published 1819' +p270206 +sa(dp270207 +g225232 +S'Anton Falger' +p270208 +sg225240 +g27 +sg225234 +S'lithograph' +p270209 +sg225230 +S'Plusieurs essais lithographiques, graves au burin' +p270210 +sg225236 +S'published 1819' +p270211 +sa(dp270212 +g225232 +S'Alois Senefelder' +p270213 +sg225240 +g27 +sg225234 +S'lithograph' +p270214 +sg225230 +S'A Lithographic Printing Press' +p270215 +sg225236 +S'published 1819' +p270216 +sa(dp270217 +g225232 +S'Alois Senefelder' +p270218 +sg225240 +g27 +sg225234 +S', published 1819' +p270219 +sg225230 +S"L'art de la lithographie ... [Text]" +p270220 +sg225236 +S'\n' +p270221 +sa(dp270222 +g225232 +S'Alois Senefelder' +p270223 +sg225240 +g27 +sg225234 +S'lithograph' +p270224 +sg225230 +S'A Lithographic Printing Press' +p270225 +sg225236 +S'published 1819' +p270226 +sa(dp270227 +g225232 +S'Jay Moon' +p270228 +sg225240 +g27 +sg225234 +S'drypoint and monoprint' +p270229 +sg225230 +S'Robby Crusoe' +p270230 +sg225236 +S'1973' +p270231 +sa(dp270232 +g225232 +S'Anastasia Seremitis' +p270233 +sg225240 +g27 +sg225234 +S'engraving' +p270234 +sg225230 +S'Ship at Sunrise' +p270235 +sg225236 +S'1972' +p270236 +sa(dp270237 +g225232 +S'Anastasia Seremitis' +p270238 +sg225240 +g27 +sg225234 +S'engraving' +p270239 +sg225230 +S'Studies from Durer' +p270240 +sg225236 +S'1973' +p270241 +sa(dp270242 +g225232 +S'Artist Information (' +p270243 +sg225240 +g27 +sg225234 +S'(artist after)' +p270244 +sg225230 +S'Martin Luther King, Jr.' +p270245 +sg225236 +S'\n' +p270246 +sa(dp270247 +g225232 +S'Artist Information (' +p270248 +sg225240 +g27 +sg225234 +S'(artist after)' +p270249 +sg225230 +S'Martin Luther King, Jr.' +p270250 +sg225236 +S'\n' +p270251 +sa(dp270252 +g225232 +S'Ben Shahn' +p270253 +sg225240 +g27 +sg225234 +S'hand-colored screenprint' +p270254 +sg225230 +S'Wheat Field' +p270255 +sg225236 +S'1958' +p270256 +sa(dp270257 +g225232 +S'Ben Shahn' +p270258 +sg225240 +g27 +sg225234 +S'photo-offset in black and red' +p270259 +sg225230 +S'Alphabet (Greeting Card)' +p270260 +sg225236 +S'1960s' +p270261 +sa(dp270262 +g225232 +S'William Sharp' +p270263 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p270264 +sg225230 +S'Scene from Don Quixote (?)' +p270265 +sg225236 +S'unknown date\n' +p270266 +sa(dp270267 +g225232 +S'Paul Shaub' +p270268 +sg225240 +g27 +sg225234 +S'woodcut in black and green' +p270269 +sg225230 +S'Pilot Boats' +p270270 +sg225236 +S'unknown date\n' +p270271 +sa(dp270272 +g225232 +S'Howard Simon' +p270273 +sg225240 +g27 +sg225234 +S'wood engraving (woodcut?)' +p270274 +sg225230 +S'Rhythms of Men in the Wilderness' +p270275 +sg225236 +S'1948' +p270276 +sa(dp270277 +g225230 +S'Etow oh Koam, King of the River Nation' +p270278 +sg225232 +S'Artist Information (' +p270279 +sg225234 +S'(artist after)' +p270280 +sg225236 +S'\n' +p270281 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a0007800.jpg' +p270282 +sg225240 +g27 +sa(dp270283 +g225232 +S'Lucien J. Simon' +p270284 +sg225240 +g27 +sg225234 +S'etching' +p270285 +sg225230 +S'Fishing Boats Docking' +p270286 +sg225236 +S'unknown date\n' +p270287 +sa(dp270288 +g225230 +S'Little Street in Prague' +p270289 +sg225232 +S'T. Frantisek Simon' +p270290 +sg225234 +S'color etching and aquatint' +p270291 +sg225236 +S'1912' +p270292 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000db/a000db7f.jpg' +p270293 +sg225240 +g27 +sa(dp270294 +g225232 +S'Bogdan Kazimierz Skupinski' +p270295 +sg225240 +g27 +sg225234 +S'etching' +p270296 +sg225230 +S'XX' +p270297 +sg225236 +S'1969' +p270298 +sa(dp270299 +g225232 +S'Bogdan Kazimierz Skupinski' +p270300 +sg225240 +g27 +sg225234 +S'etching' +p270301 +sg225230 +S'Good Journey' +p270302 +sg225236 +S'1970' +p270303 +sa(dp270304 +g225232 +S'Hans Meid' +p270305 +sg225240 +g27 +sg225234 +S'drypoint' +p270306 +sg225230 +S'From Florence' +p270307 +sg225236 +S'1913' +p270308 +sa(dp270309 +g225232 +S'Hans Meid' +p270310 +sg225240 +g27 +sg225234 +S'drypoint' +p270311 +sg225230 +S'The Dance' +p270312 +sg225236 +S'1920' +p270313 +sa(dp270314 +g225232 +S'Hans Meid' +p270315 +sg225240 +g27 +sg225234 +S'drypoint' +p270316 +sg225230 +S'The Murder' +p270317 +sg225236 +S'1920' +p270318 +sa(dp270319 +g225232 +S'Hans Meid' +p270320 +sg225240 +g27 +sg225234 +S'drypoint' +p270321 +sg225230 +S'The Forge' +p270322 +sg225236 +S'1920' +p270323 +sa(dp270324 +g225232 +S'Hans Meid' +p270325 +sg225240 +g27 +sg225234 +S'drypoint' +p270326 +sg225230 +S'The Lake' +p270327 +sg225236 +S'1920' +p270328 +sa(dp270329 +g225232 +S'Hans Meid' +p270330 +sg225240 +g27 +sg225234 +S'drypoint' +p270331 +sg225230 +S'The Voyage' +p270332 +sg225236 +S'1920' +p270333 +sa(dp270334 +g225232 +S'Hans Meid' +p270335 +sg225240 +g27 +sg225234 +S'drypoint' +p270336 +sg225230 +S'The Promise' +p270337 +sg225236 +S'1920' +p270338 +sa(dp270339 +g225230 +S'King Richard I' +p270340 +sg225232 +S'James Smith' +p270341 +sg225234 +S'etching and engraving' +p270342 +sg225236 +S'unknown date\n' +p270343 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a0007806.jpg' +p270344 +sg225240 +g27 +sa(dp270345 +g225232 +S'Moishe Smith' +p270346 +sg225240 +g27 +sg225234 +S'etching and soft-ground on wove paper' +p270347 +sg225230 +S'Almonds of Andaluzia' +p270348 +sg225236 +S'1971' +p270349 +sa(dp270350 +g225232 +S'Moishe Smith' +p270351 +sg225240 +g27 +sg225234 +S'etching on wove paper' +p270352 +sg225230 +S"L'inverno: Hommage \xc3\xa1 Morandi" +p270353 +sg225236 +S'1966' +p270354 +sa(dp270355 +g225232 +S'Moishe Smith' +p270356 +sg225240 +g27 +sg225234 +S'etching, soft-ground, and roulette on wove paper' +p270357 +sg225230 +S'La Punta' +p270358 +sg225236 +S'1965' +p270359 +sa(dp270360 +g225232 +S'Moishe Smith' +p270361 +sg225240 +g27 +sg225234 +S'etching, roulette, and soft-ground on wove paper' +p270362 +sg225230 +S'Leaves of Grass: Hommage a Kennedy' +p270363 +sg225236 +S'1968' +p270364 +sa(dp270365 +g225232 +S'Moishe Smith' +p270366 +sg225240 +g27 +sg225234 +S'etching and soft-ground on wove paper' +p270367 +sg225230 +S'Rapallo' +p270368 +sg225236 +S'1965' +p270369 +sa(dp270370 +g225232 +S'Moishe Smith' +p270371 +sg225240 +g27 +sg225234 +S'etching and soft-ground on wove paper' +p270372 +sg225230 +S"Season's Greetings" +p270373 +sg225236 +S'unknown date\n' +p270374 +sa(dp270375 +g225232 +S'Moishe Smith' +p270376 +sg225240 +g27 +sg225234 +S'engraving and stipple on wove paper' +p270377 +sg225230 +S'Self-Portrait' +p270378 +sg225236 +S'1964' +p270379 +sa(dp270380 +g225230 +S'Kafka-ville: A View of Prague' +p270381 +sg225232 +S'Moishe Smith' +p270382 +sg225234 +S'etching, aquatint, and soft-ground on wove paper' +p270383 +sg225236 +S'1977' +p270384 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b93.jpg' +p270385 +sg225240 +g27 +sa(dp270386 +g225232 +S'Agatha Sorel' +p270387 +sg225240 +g27 +sg225234 +S'etching, soft-ground, and (engraving?)' +p270388 +sg225230 +S'The Wise and the Foolish Virgin' +p270389 +sg225236 +S'unknown date\n' +p270390 +sa(dp270391 +g225232 +S'Larry Spaid' +p270392 +sg225240 +g27 +sg225234 +S'4-color etching and aquatint printed from shaped plates, with color embossing' +p270393 +sg225230 +S"Series I-B-'72'" +p270394 +sg225236 +S'1972' +p270395 +sa(dp270396 +g225232 +S'Larry Spaid' +p270397 +sg225240 +g27 +sg225234 +S'4-color etching and aquatint printed from shaped plates, and embossing' +p270398 +sg225230 +S"Series I-D-'72'" +p270399 +sg225236 +S'1972' +p270400 +sa(dp270401 +g225232 +S'Larry Spaid' +p270402 +sg225240 +g27 +sg225234 +S'mixed intaglio printed from shaped plates, and embossing' +p270403 +sg225230 +S'Untitled' +p270404 +sg225236 +S'1975' +p270405 +sa(dp270406 +g225232 +S'Marko Spalatin' +p270407 +sg225240 +g27 +sg225234 +S'screenprint' +p270408 +sg225230 +S'Red Cubes' +p270409 +sg225236 +S'unknown date\n' +p270410 +sa(dp270411 +g225232 +S'Marko Spalatin' +p270412 +sg225240 +g27 +sg225234 +S'color screenprint' +p270413 +sg225230 +S'Deg' +p270414 +sg225236 +S'1969' +p270415 +sa(dp270416 +g225232 +S'Marko Spalatin' +p270417 +sg225240 +g27 +sg225234 +S'portfolio with twenty-five color screenprints plustitle page and colophon' +p270418 +sg225230 +S'Astro Series' +p270419 +sg225236 +S'published 1969' +p270420 +sa(dp270421 +g225232 +S'Marko Spalatin' +p270422 +sg225240 +g27 +sg225234 +S'color screenprint' +p270423 +sg225230 +S'Mok' +p270424 +sg225236 +S'1969' +p270425 +sa(dp270426 +g225232 +S'Marko Spalatin' +p270427 +sg225240 +g27 +sg225234 +S'color screenprint' +p270428 +sg225230 +S'Oxo' +p270429 +sg225236 +S'1969' +p270430 +sa(dp270431 +g225232 +S'Marko Spalatin' +p270432 +sg225240 +g27 +sg225234 +S'color screenprint' +p270433 +sg225230 +S'Paf' +p270434 +sg225236 +S'1969' +p270435 +sa(dp270436 +g225232 +S'Marko Spalatin' +p270437 +sg225240 +g27 +sg225234 +S'color screenprint' +p270438 +sg225230 +S'Tor' +p270439 +sg225236 +S'1969' +p270440 +sa(dp270441 +g225232 +S'Marko Spalatin' +p270442 +sg225240 +g27 +sg225234 +S'color screenprint' +p270443 +sg225230 +S'Lem' +p270444 +sg225236 +S'1969' +p270445 +sa(dp270446 +g225232 +S'Marko Spalatin' +p270447 +sg225240 +g27 +sg225234 +S'color screenprint' +p270448 +sg225230 +S'Sik' +p270449 +sg225236 +S'1969' +p270450 +sa(dp270451 +g225232 +S'Marko Spalatin' +p270452 +sg225240 +g27 +sg225234 +S'color screenprint' +p270453 +sg225230 +S'Bur' +p270454 +sg225236 +S'1969' +p270455 +sa(dp270456 +g225232 +S'Marko Spalatin' +p270457 +sg225240 +g27 +sg225234 +S'color screenprint' +p270458 +sg225230 +S'Naz' +p270459 +sg225236 +S'1969' +p270460 +sa(dp270461 +g225232 +S'Marko Spalatin' +p270462 +sg225240 +g27 +sg225234 +S'color screenprint' +p270463 +sg225230 +S'Hes' +p270464 +sg225236 +S'1969' +p270465 +sa(dp270466 +g225232 +S'Marko Spalatin' +p270467 +sg225240 +g27 +sg225234 +S'color screenprint' +p270468 +sg225230 +S'Juz' +p270469 +sg225236 +S'1969' +p270470 +sa(dp270471 +g225232 +S'Marko Spalatin' +p270472 +sg225240 +g27 +sg225234 +S'color screenprint' +p270473 +sg225230 +S'Cev' +p270474 +sg225236 +S'1969' +p270475 +sa(dp270476 +g225232 +S'Marko Spalatin' +p270477 +sg225240 +g27 +sg225234 +S'color screenprint' +p270478 +sg225230 +S'Quy' +p270479 +sg225236 +S'1969' +p270480 +sa(dp270481 +g225232 +S'Marko Spalatin' +p270482 +sg225240 +g27 +sg225234 +S'color screenprint' +p270483 +sg225230 +S'Arv' +p270484 +sg225236 +S'1969' +p270485 +sa(dp270486 +g225232 +S'Marko Spalatin' +p270487 +sg225240 +g27 +sg225234 +S'color screenprint' +p270488 +sg225230 +S'Gef' +p270489 +sg225236 +S'1969' +p270490 +sa(dp270491 +g225232 +S'Marko Spalatin' +p270492 +sg225240 +g27 +sg225234 +S'color screenprint' +p270493 +sg225230 +S'Dis' +p270494 +sg225236 +S'1969' +p270495 +sa(dp270496 +g225232 +S'Marko Spalatin' +p270497 +sg225240 +g27 +sg225234 +S'color screenprint' +p270498 +sg225230 +S'Wuk' +p270499 +sg225236 +S'1969' +p270500 +sa(dp270501 +g225232 +S'Marko Spalatin' +p270502 +sg225240 +g27 +sg225234 +S'color screenprint' +p270503 +sg225230 +S'Ora' +p270504 +sg225236 +S'1969' +p270505 +sa(dp270506 +g225232 +S'Marko Spalatin' +p270507 +sg225240 +g27 +sg225234 +S'color screenprint' +p270508 +sg225230 +S'Tov' +p270509 +sg225236 +S'1969' +p270510 +sa(dp270511 +g225232 +S'Marko Spalatin' +p270512 +sg225240 +g27 +sg225234 +S'color screenprint' +p270513 +sg225230 +S'Ras' +p270514 +sg225236 +S'1969' +p270515 +sa(dp270516 +g225232 +S'Marko Spalatin' +p270517 +sg225240 +g27 +sg225234 +S'color screenprint' +p270518 +sg225230 +S'Zem' +p270519 +sg225236 +S'1969' +p270520 +sa(dp270521 +g225232 +S'Marko Spalatin' +p270522 +sg225240 +g27 +sg225234 +S'color screenprint' +p270523 +sg225230 +S'Twi' +p270524 +sg225236 +S'1969' +p270525 +sa(dp270526 +g225232 +S'Marko Spalatin' +p270527 +sg225240 +g27 +sg225234 +S'color screenprint' +p270528 +sg225230 +S'Von' +p270529 +sg225236 +S'1969' +p270530 +sa(dp270531 +g225232 +S'Marko Spalatin' +p270532 +sg225240 +g27 +sg225234 +S'color screenprint' +p270533 +sg225230 +S'Sug' +p270534 +sg225236 +S'1969' +p270535 +sa(dp270536 +g225232 +S'Marko Spalatin' +p270537 +sg225240 +g27 +sg225234 +S'color screenprint' +p270538 +sg225230 +S'Amo' +p270539 +sg225236 +S'1969' +p270540 +sa(dp270541 +g225232 +S'Benton Murdoch Spruance' +p270542 +sg225240 +g27 +sg225234 +S'lithograph in green-black on Rives BFK paper' +p270543 +sg225230 +S'I Foretell You the Time of Great Blessing and the Bounty of the Evening' +p270544 +sg225236 +S'1957' +p270545 +sa(dp270546 +g225232 +S'Benton Murdoch Spruance' +p270547 +sg225240 +g27 +sg225234 +S'6-color lithograph on Rives BFK paper' +p270548 +sg225230 +S'Low Entrance to a High Place' +p270549 +sg225236 +S'1963' +p270550 +sa(dp270551 +g225232 +S'Benton Murdoch Spruance' +p270552 +sg225240 +g27 +sg225234 +S'5-color lithograph' +p270553 +sg225230 +S'Minotaur with Bronze Horns' +p270554 +sg225236 +S'1963' +p270555 +sa(dp270556 +g225232 +S'Benton Murdoch Spruance' +p270557 +sg225240 +g27 +sg225234 +S'lithograph in black and brown' +p270558 +sg225230 +S'Northern Minotaur' +p270559 +sg225236 +S'1963' +p270560 +sa(dp270561 +g225232 +S'Benton Murdoch Spruance' +p270562 +sg225240 +g27 +sg225234 +S'lithograph in gray on Rives BFK paper [proof]' +p270563 +sg225230 +S"After Blake's Job" +p270564 +sg225236 +S'1966' +p270565 +sa(dp270566 +g225232 +S'Benton Murdoch Spruance' +p270567 +sg225240 +g27 +sg225234 +S'lithograph in gray [proof]' +p270568 +sg225230 +S"After Blake's Job" +p270569 +sg225236 +S'1966' +p270570 +sa(dp270571 +g225232 +S'Benton Murdoch Spruance' +p270572 +sg225240 +g27 +sg225234 +S'lithograph in gray on BFK Rives paper [proof]' +p270573 +sg225230 +S"After Blake's Job" +p270574 +sg225236 +S'1966' +p270575 +sa(dp270576 +g225232 +S'Benton Murdoch Spruance' +p270577 +sg225240 +g27 +sg225234 +S'lithograph in black on BFK Rives paper [proof]' +p270578 +sg225230 +S"After Blake's Job" +p270579 +sg225236 +S'1966' +p270580 +sa(dp270581 +g225232 +S'Benton Murdoch Spruance' +p270582 +sg225240 +g27 +sg225234 +S'lithograph in black on BFK Rives paper [proof]' +p270583 +sg225230 +S"After Blake's Job" +p270584 +sg225236 +S'1966' +p270585 +sa(dp270586 +g225232 +S'Benton Murdoch Spruance' +p270587 +sg225240 +g27 +sg225234 +S'lithograph [proof]' +p270588 +sg225230 +S"After Blake's Job" +p270589 +sg225236 +S'1966' +p270590 +sa(dp270591 +g225232 +S'Benton Murdoch Spruance' +p270592 +sg225240 +g27 +sg225234 +S'lithograph in black on BFK Rives paper [proof]' +p270593 +sg225230 +S"After Blake's Job" +p270594 +sg225236 +S'1966' +p270595 +sa(dp270596 +g225232 +S'Benton Murdoch Spruance' +p270597 +sg225240 +g27 +sg225234 +S'lithograph in black and gray on BFK Rives paper [proof]' +p270598 +sg225230 +S"After Blake's Job" +p270599 +sg225236 +S'1966' +p270600 +sa(dp270601 +g225232 +S'Benton Murdoch Spruance' +p270602 +sg225240 +g27 +sg225234 +S'lithograph in black and gray on BFK Rives paper [proof]' +p270603 +sg225230 +S"After Blake's Job" +p270604 +sg225236 +S'1966' +p270605 +sa(dp270606 +g225232 +S'Benton Murdoch Spruance' +p270607 +sg225240 +g27 +sg225234 +S'lithograph in black and gray on BFK Rives paper [trial proof]' +p270608 +sg225230 +S"After Blake's Job" +p270609 +sg225236 +S'1966' +p270610 +sa(dp270611 +g225232 +S'Benton Murdoch Spruance' +p270612 +sg225240 +g27 +sg225234 +S'lithograph in black and gray on Rives BFK paper [proof]' +p270613 +sg225230 +S"After Blake's Job" +p270614 +sg225236 +S'1966' +p270615 +sa(dp270616 +g225232 +S'Benton Murdoch Spruance' +p270617 +sg225240 +g27 +sg225234 +S'lithograph in black and tan on BFK Rives paper [p roof]' +p270618 +sg225230 +S"After Blake's Job" +p270619 +sg225236 +S'1966' +p270620 +sa(dp270621 +g225232 +S'Benton Murdoch Spruance' +p270622 +sg225240 +g27 +sg225234 +S'black chalk' +p270623 +sg225230 +S'Study for "After Blake\'s Job"' +p270624 +sg225236 +S'1966' +p270625 +sa(dp270626 +g225232 +S'Benton Murdoch Spruance' +p270627 +sg225240 +g27 +sg225234 +S'black chalk over gray lithotint' +p270628 +sg225230 +S'Study for "After Blake\'s Job"' +p270629 +sg225236 +S'1966' +p270630 +sa(dp270631 +g225232 +S'Benton Murdoch Spruance' +p270632 +sg225240 +g27 +sg225234 +S'4-color lithograph (stone)' +p270633 +sg225230 +S'City Church' +p270634 +sg225236 +S'1964' +p270635 +sa(dp270636 +g225232 +S'Benton Murdoch Spruance' +p270637 +sg225240 +g27 +sg225234 +S'monotype (Formica) in gray' +p270638 +sg225230 +S'Skyhawk, No.I' +p270639 +sg225236 +S'1965' +p270640 +sa(dp270641 +g225232 +S'Benton Murdoch Spruance' +p270642 +sg225240 +g27 +sg225234 +S'monotype (Formica) in gray [second printing]' +p270643 +sg225230 +S'Skyhawk, No.I' +p270644 +sg225236 +S'1965' +p270645 +sa(dp270646 +g225230 +S'Mulld:Sake (Portrait of John Cottington)' +p270647 +sg225232 +S'Renold Elstrack' +p270648 +sg225234 +S'engraving' +p270649 +sg225236 +S'published 1618' +p270650 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a0007639.jpg' +p270651 +sg225240 +g27 +sa(dp270652 +g225232 +S'Benton Murdoch Spruance' +p270653 +sg225240 +g27 +sg225234 +S'6-color lithograph' +p270654 +sg225230 +S'Winter Birds - In Memoriam' +p270655 +sg225236 +S'1964' +p270656 +sa(dp270657 +g225232 +S'Benton Murdoch Spruance' +p270658 +sg225240 +g27 +sg225234 +S'gouache' +p270659 +sg225230 +S'Untitled' +p270660 +sg225236 +S'unknown date\n' +p270661 +sa(dp270662 +g225232 +S'Alexander Stern' +p270663 +sg225240 +g27 +sg225234 +S'engraving and drypoint' +p270664 +sg225230 +S'F.W. Goudy' +p270665 +sg225236 +S'1938' +p270666 +sa(dp270667 +g225232 +S'Dorothy Newkirk Stewart' +p270668 +sg225240 +g27 +sg225234 +S'1 vol: ill: color woodcuts' +p270669 +sg225230 +S'Hamlet Prince of Denmark in Block Prints by D.N.S.' +p270670 +sg225236 +S'published 1949' +p270671 +sa(dp270672 +g225230 +S'Narcissus' +p270673 +sg225232 +S'Artist Information (' +p270674 +sg225234 +S'(artist after)' +p270675 +sg225236 +S'\n' +p270676 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007ce0.jpg' +p270677 +sg225240 +g27 +sa(dp270678 +g225230 +S'Johannes Hoornbeeck' +p270679 +sg225232 +S'Jonas Suyderhoff' +p270680 +sg225234 +S'engraving' +p270681 +sg225236 +S'unknown date\n' +p270682 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d589.jpg' +p270683 +sg225240 +g27 +sa(dp270684 +g225232 +S'Endre Szasz' +p270685 +sg225240 +g27 +sg225234 +S'color intaglio, aquatint, and monotype' +p270686 +sg225230 +S'Girl with Blue Turban' +p270687 +sg225236 +S'unknown date\n' +p270688 +sa(dp270689 +g225232 +S'Endre Szasz' +p270690 +sg225240 +g27 +sg225234 +S'lithograph' +p270691 +sg225230 +S'Don Quixote' +p270692 +sg225236 +S'unknown date\n' +p270693 +sa(dp270694 +g225232 +S'Peter Takal' +p270695 +sg225240 +g27 +sg225234 +S'drypoint' +p270696 +sg225230 +S'City Roofs' +p270697 +sg225236 +S'1956' +p270698 +sa(dp270699 +g225232 +S'Prentiss Taylor' +p270700 +sg225240 +g27 +sg225234 +S'lithograph' +p270701 +sg225230 +S'Cottonwoods in Canyon de Chelly' +p270702 +sg225236 +S'1963' +p270703 +sa(dp270704 +g225232 +S'Prentiss Taylor' +p270705 +sg225240 +g27 +sg225234 +S'lithograph' +p270706 +sg225230 +S'The Spanish Steps from Above' +p270707 +sg225236 +S'1966' +p270708 +sa(dp270709 +g225232 +S'J. Tepper' +p270710 +sg225240 +g27 +sg225234 +S'lithograph' +p270711 +sg225230 +S'Shepherd and Sheep in a Landscape' +p270712 +sg225236 +S'unknown date\n' +p270713 +sa(dp270714 +g225232 +S'J. Tepper' +p270715 +sg225240 +g27 +sg225234 +S'portfolio with 6 lithographs' +p270716 +sg225230 +S'Untitled' +p270717 +sg225236 +S'unknown date\n' +p270718 +sa(dp270719 +g225232 +S'J. Tepper' +p270720 +sg225240 +g27 +sg225234 +S'lithograph' +p270721 +sg225230 +S'Bust of an Old Man with a Beard' +p270722 +sg225236 +S'unknown date\n' +p270723 +sa(dp270724 +g225232 +S'J. Tepper' +p270725 +sg225240 +g27 +sg225234 +S'lithograph' +p270726 +sg225230 +S'Bust of a Man in a Landscape' +p270727 +sg225236 +S'unknown date\n' +p270728 +sa(dp270729 +g225232 +S'J. Tepper' +p270730 +sg225240 +g27 +sg225234 +S'lithograph' +p270731 +sg225230 +S'Busts of Three Workmen' +p270732 +sg225236 +S'unknown date\n' +p270733 +sa(dp270734 +g225232 +S'J. Tepper' +p270735 +sg225240 +g27 +sg225234 +S'lithograph' +p270736 +sg225230 +S'Young Woman with a Hoe' +p270737 +sg225236 +S'unknown date\n' +p270738 +sa(dp270739 +g225232 +S'J. Tepper' +p270740 +sg225240 +g27 +sg225234 +S'lithograph' +p270741 +sg225230 +S'Bust of a Woman in a Cap' +p270742 +sg225236 +S'unknown date\n' +p270743 +sa(dp270744 +g225232 +S'F. Leslie Thompson' +p270745 +sg225240 +g27 +sg225234 +S'color aquatint' +p270746 +sg225230 +S'October in the Midwest' +p270747 +sg225236 +S'1963' +p270748 +sa(dp270749 +g225232 +S'Valerie Thornton' +p270750 +sg225240 +g27 +sg225234 +S'color etching' +p270751 +sg225230 +S'Arles' +p270752 +sg225236 +S'1975' +p270753 +sa(dp270754 +g225232 +S'Valerie Thornton' +p270755 +sg225240 +g27 +sg225234 +S'color intaglio' +p270756 +sg225230 +S'Beechwood' +p270757 +sg225236 +S'unknown date\n' +p270758 +sa(dp270759 +g225232 +S'Valerie Thornton' +p270760 +sg225240 +g27 +sg225234 +S'color etching' +p270761 +sg225230 +S'Saint Ives' +p270762 +sg225236 +S'1975' +p270763 +sa(dp270764 +g225232 +S'Valerie Thornton' +p270765 +sg225240 +g27 +sg225234 +S'color soft-ground etching' +p270766 +sg225230 +S'Santo Domingo de Silos' +p270767 +sg225236 +S'1976' +p270768 +sa(dp270769 +g225230 +S"Summer Evening (Soiree d'ete)" +p270770 +sg225232 +S'James Jacques Joseph Tissot' +p270771 +sg225234 +S'etching and drypoint' +p270772 +sg225236 +S'1882' +p270773 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009ff2.jpg' +p270774 +sg225240 +g27 +sa(dp270775 +g225230 +S'Cover, Yvette Guilbert' +p270776 +sg225232 +S'Henri de Toulouse-Lautrec' +p270777 +sg225234 +S'lithograph on green-blue paper' +p270778 +sg225236 +S'1898' +p270779 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e70.jpg' +p270780 +sg225240 +g27 +sa(dp270781 +g225230 +S'Frontispiece' +p270782 +sg225232 +S'Henri de Toulouse-Lautrec' +p270783 +sg225234 +S'lithograph in black on velin paper' +p270784 +sg225236 +S'1898' +p270785 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a04b.jpg' +p270786 +sg225240 +g27 +sa(dp270787 +g225232 +S'Henri de Toulouse-Lautrec' +p270788 +sg225240 +g27 +sg225234 +S'color lithograph [poster]' +p270789 +sg225230 +S'The Hanging (Le pendu)' +p270790 +sg225236 +S'1892' +p270791 +sa(dp270792 +g225232 +S'Andrew Watson Turnbull' +p270793 +sg225240 +g27 +sg225234 +S'drypoint and roulette' +p270794 +sg225230 +S'Edinburgh' +p270795 +sg225236 +S'1928' +p270796 +sa(dp270797 +g225232 +S'Andrew Watson Turnbull' +p270798 +sg225240 +g27 +sg225234 +S'mezzotint and drypoint with roulette' +p270799 +sg225230 +S'Landscape' +p270800 +sg225236 +S'1929' +p270801 +sa(dp270802 +g225232 +S'Henri Emerson Tuttle' +p270803 +sg225240 +g27 +sg225234 +S'drypoint' +p270804 +sg225230 +S'Old Raven' +p270805 +sg225236 +S'1936' +p270806 +sa(dp270807 +g225232 +S'Ian Tyson' +p270808 +sg225240 +g27 +sg225234 +S'screenprint' +p270809 +sg225230 +S'Variation I' +p270810 +sg225236 +S'1968' +p270811 +sa(dp270812 +g225232 +S'Ansei Uchima' +p270813 +sg225240 +g27 +sg225234 +S'color woodcut' +p270814 +sg225230 +S'Moonrise' +p270815 +sg225236 +S'1971' +p270816 +sa(dp270817 +g225232 +S'Ansei Uchima' +p270818 +sg225240 +g27 +sg225234 +S'color woodcut' +p270819 +sg225230 +S'Stage (B)' +p270820 +sg225236 +S'1968' +p270821 +sa(dp270822 +g225232 +S'Ansei Uchima' +p270823 +sg225240 +g27 +sg225234 +S'color woodcut' +p270824 +sg225230 +S'Sunrise' +p270825 +sg225236 +S'1965' +p270826 +sa(dp270827 +g225232 +S'Ansei Uchima' +p270828 +sg225240 +g27 +sg225234 +S'color woodcut' +p270829 +sg225230 +S'Untitled' +p270830 +sg225236 +S'1970' +p270831 +sa(dp270832 +g225232 +S'Ansei Uchima' +p270833 +sg225240 +g27 +sg225234 +S'woodcut in red and blue' +p270834 +sg225230 +S'Untitled' +p270835 +sg225236 +S'1973' +p270836 +sa(dp270837 +g225232 +S'Leon Underwood' +p270838 +sg225240 +g27 +sg225234 +S'wood engraving' +p270839 +sg225230 +S'Simian Ecstasy' +p270840 +sg225236 +S'1933' +p270841 +sa(dp270842 +g225232 +S'Nora Spicer Unwin' +p270843 +sg225240 +g27 +sg225234 +S'wood engraving' +p270844 +sg225230 +S'Jack-in-the-Pulpits' +p270845 +sg225236 +S'1955' +p270846 +sa(dp270847 +g225232 +S'Nora Spicer Unwin' +p270848 +sg225240 +g27 +sg225234 +S'wood engraving' +p270849 +sg225230 +S'Mexican Women' +p270850 +sg225236 +S'1956' +p270851 +sa(dp270852 +g225230 +S'A Luncheon Party' +p270853 +sg225232 +S'Sydney Vacher' +p270854 +sg225234 +S'engraving and drypoint' +p270855 +sg225236 +S'1920/1922' +p270856 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007e/a0007eba.jpg' +p270857 +sg225240 +g27 +sa(dp270858 +g225232 +S'Ivan Valtchev' +p270859 +sg225240 +g27 +sg225234 +S'color intaglio printed from a cut, shaped plate' +p270860 +sg225230 +S'A Dancer' +p270861 +sg225236 +S'unknown date\n' +p270862 +sa(dp270863 +g225232 +S'Ivan Valtchev' +p270864 +sg225240 +g27 +sg225234 +S'etching and aquatint in red' +p270865 +sg225230 +S'Incredulity of Thomas' +p270866 +sg225236 +S'unknown date\n' +p270867 +sa(dp270868 +g225232 +S'Ivan Valtchev' +p270869 +sg225240 +g27 +sg225234 +S'intaglio' +p270870 +sg225230 +S'Reflection' +p270871 +sg225236 +S'unknown date\n' +p270872 +sa(dp270873 +g225232 +S'Ivan Valtchev' +p270874 +sg225240 +g27 +sg225234 +S'color intaglio' +p270875 +sg225230 +S'The Sight' +p270876 +sg225236 +S'unknown date\n' +p270877 +sa(dp270878 +g225232 +S'Ivan Valtchev' +p270879 +sg225240 +g27 +sg225234 +S'intaglio' +p270880 +sg225230 +S'The Sound of the World' +p270881 +sg225236 +S'unknown date\n' +p270882 +sa(dp270883 +g225232 +S'Ivan Valtchev' +p270884 +sg225240 +g27 +sg225234 +S'intaglio in red' +p270885 +sg225230 +S'The Struggle' +p270886 +sg225236 +S'unknown date\n' +p270887 +sa(dp270888 +g225232 +S'Ivan Valtchev' +p270889 +sg225240 +g27 +sg225234 +S'intaglio in red' +p270890 +sg225230 +S'Transfiguration' +p270891 +sg225236 +S'unknown date\n' +p270892 +sa(dp270893 +g225230 +S'Two Cows under a Tree' +p270894 +sg225232 +S'Adriaen van de Velde' +p270895 +sg225234 +S'etching' +p270896 +sg225236 +S'c. 1670' +p270897 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d45f.jpg' +p270898 +sg225240 +g27 +sa(dp270899 +g225230 +S'King Richard III' +p270900 +sg225232 +S'Artist Information (' +p270901 +sg225234 +S'(artist after)' +p270902 +sg225236 +S'\n' +p270903 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f36.jpg' +p270904 +sg225240 +g27 +sa(dp270905 +g225230 +S'The Royal Family of the Stuarts' +p270906 +sg225232 +S'Michiel van der Gucht' +p270907 +sg225234 +S'engraving' +p270908 +sg225236 +S'unknown date\n' +p270909 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d637.jpg' +p270910 +sg225240 +g27 +sa(dp270911 +g225232 +S'Artist Information (' +p270912 +sg225240 +g27 +sg225234 +S'(artist)' +p270913 +sg225230 +S'Midi' +p270914 +sg225236 +S'\n' +p270915 +sa(dp270916 +g225232 +S'Victor Vasarely' +p270917 +sg225240 +g27 +sg225234 +S'screenprint with embossing' +p270918 +sg225230 +S'G-FF' +p270919 +sg225236 +S'unknown date\n' +p270920 +sa(dp270921 +g225232 +S'Victor Vasarely' +p270922 +sg225240 +g27 +sg225234 +S'screenprint' +p270923 +sg225230 +S'Sikra - M.C.' +p270924 +sg225236 +S'unknown date\n' +p270925 +sa(dp270926 +g225230 +S'Pierre Guerin' +p270927 +sg225232 +S'Horace Vernet' +p270928 +sg225234 +S'lithograph' +p270929 +sg225236 +S'1830' +p270930 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e9f.jpg' +p270931 +sg225240 +g27 +sa(dp270932 +g225230 +S'Wounded French Attacked by a Cosack' +p270933 +sg225232 +S'Artist Information (' +p270934 +sg225234 +S'(artist)' +p270935 +sg225236 +S'\n' +p270936 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a060.jpg' +p270937 +sg225240 +g27 +sa(dp270938 +g225232 +S'Charles Vernier' +p270939 +sg225240 +g27 +sg225234 +S'lithograph' +p270940 +sg225230 +S'Cover Illustration' +p270941 +sg225236 +S'published 1859' +p270942 +sa(dp270943 +g225232 +S'Artist Information (' +p270944 +sg225240 +g27 +sg225234 +S'(artist)' +p270945 +sg225230 +S'Au bivouac - Croquis militaires ...' +p270946 +sg225236 +S'\n' +p270947 +sa(dp270948 +g225232 +S'Charles Vernier' +p270949 +sg225240 +g27 +sg225234 +S'lithograph' +p270950 +sg225230 +S'Title Page' +p270951 +sg225236 +S'published 1859' +p270952 +sa(dp270953 +g225232 +S'Charles Vernier' +p270954 +sg225240 +g27 +sg225234 +S'lithograph' +p270955 +sg225230 +S"Il n'est pas mauvais votre schnick!" +p270956 +sg225236 +S'published 1859' +p270957 +sa(dp270958 +g225232 +S'Charles Vernier' +p270959 +sg225240 +g27 +sg225234 +S', published 1859' +p270960 +sg225230 +S'Dis-donc, Maubert ...' +p270961 +sg225236 +S'\n' +p270962 +sa(dp270963 +g225232 +S'Charles Vernier' +p270964 +sg225240 +g27 +sg225234 +S', published 1859' +p270965 +sg225230 +S"Voila, ce que j'ai recu" +p270966 +sg225236 +S'\n' +p270967 +sa(dp270968 +g225232 +S'Honor\xc3\xa9 Daumier' +p270969 +sg225240 +g27 +sg225234 +S'lithograph' +p270970 +sg225230 +S'Nos troupiers: En Italie' +p270971 +sg225236 +S'published 1859' +p270972 +sa(dp270973 +g225232 +S'Cham (pseud.)' +p270974 +sg225240 +g27 +sg225234 +S'lithograph' +p270975 +sg225230 +S"Italien! ... il s'agit de s'expliquer ici" +p270976 +sg225236 +S'published 1859' +p270977 +sa(dp270978 +g225232 +S'Honor\xc3\xa9 Daumier' +p270979 +sg225240 +g27 +sg225234 +S'lithograph' +p270980 +sg225230 +S'Nos troupiers: Vill\xc3\xa9giature' +p270981 +sg225236 +S'published 1859' +p270982 +sa(dp270983 +g225232 +S'Cham (pseud.)' +p270984 +sg225240 +g27 +sg225234 +S'lithograph' +p270985 +sg225230 +S"L'Italie z'est un jardin!" +p270986 +sg225236 +S'published 1859' +p270987 +sa(dp270988 +g225232 +S'Cham (pseud.)' +p270989 +sg225240 +g27 +sg225234 +S'lithograph' +p270990 +sg225230 +S"Z'a a la bonne heure ..." +p270991 +sg225236 +S'published 1859' +p270992 +sa(dp270993 +g225232 +S'Charles Vernier' +p270994 +sg225240 +g27 +sg225234 +S'lithograph' +p270995 +sg225230 +S"Nom d'un p'tit bon'homme!" +p270996 +sg225236 +S'published 1859' +p270997 +sa(dp270998 +g225232 +S'Cham (pseud.)' +p270999 +sg225240 +g27 +sg225234 +S'lithograph' +p271000 +sg225230 +S"C'est z'ennuyeux cette coiffure la ..." +p271001 +sg225236 +S'published 1859' +p271002 +sa(dp271003 +g225232 +S'Cham (pseud.)' +p271004 +sg225240 +g27 +sg225234 +S'lithograph' +p271005 +sg225230 +S'Capitaine, je voudrais rapporter un souvenir ...' +p271006 +sg225236 +S'published 1859' +p271007 +sa(dp271008 +g225232 +S'Charles Vernier' +p271009 +sg225240 +g27 +sg225234 +S', published 1859' +p271010 +sg225230 +S'Voyons ... ca vous va-t-il?' +p271011 +sg225236 +S'\n' +p271012 +sa(dp271013 +g225232 +S'Charles Vernier' +p271014 +sg225240 +g27 +sg225234 +S', published 1859' +p271015 +sg225230 +S'Une visite au camp de St. Maur' +p271016 +sg225236 +S'\n' +p271017 +sa(dp271018 +g225232 +S'Honor\xc3\xa9 Daumier' +p271019 +sg225240 +g27 +sg225234 +S'lithograph' +p271020 +sg225230 +S'Au camp de Saint-Maur: Visite aux tentes des turcos' +p271021 +sg225236 +S'published 1859' +p271022 +sa(dp271023 +g225232 +S'Honor\xc3\xa9 Daumier' +p271024 +sg225240 +g27 +sg225234 +S'lithograph' +p271025 +sg225230 +S'Au camp de Saint-Maur: La dame - Oh! Mon ami ... quel beau turco!' +p271026 +sg225236 +S'published 1859' +p271027 +sa(dp271028 +g225232 +S'Charles Vernier' +p271029 +sg225240 +g27 +sg225234 +S'lithograph' +p271030 +sg225230 +S"N'est-ce pas, monsieur le zouave" +p271031 +sg225236 +S'published 1859' +p271032 +sa(dp271033 +g225232 +S'Charles Vernier' +p271034 +sg225240 +g27 +sg225234 +S'lithograph' +p271035 +sg225230 +S"Tiens! ... J'suis t'y a ton gout comme ..." +p271036 +sg225236 +S'published 1859' +p271037 +sa(dp271038 +g225232 +S'Honor\xc3\xa9 Daumier' +p271039 +sg225240 +g27 +sg225234 +S'lithograph' +p271040 +sg225230 +S"Actualit\xc3\xa9s: Tiens Ad\xc3\xa9laide ... J'ai voulou te faire une surprise ..." +p271041 +sg225236 +S'published 1859' +p271042 +sa(dp271043 +g225232 +S'Honor\xc3\xa9 Daumier' +p271044 +sg225240 +g27 +sg225234 +S'lithograph' +p271045 +sg225230 +S"Actualit\xc3\xa9s: Mme. Potard - N'est-ul pas vrai, brave turco ..." +p271046 +sg225236 +S'published 1859' +p271047 +sa(dp271048 +g225232 +S'Honor\xc3\xa9 Daumier' +p271049 +sg225240 +g27 +sg225234 +S'lithograph' +p271050 +sg225230 +S'Au camp de Saint-Maur: Bono ... Bono! ... France!!!' +p271051 +sg225236 +S'published 1859' +p271052 +sa(dp271053 +g225232 +S'Honor\xc3\xa9 Daumier' +p271054 +sg225240 +g27 +sg225234 +S'lithograph' +p271055 +sg225230 +S"En Italie: Le vin est l'ornement de l'homme..." +p271056 +sg225236 +S'published 1859' +p271057 +sa(dp271058 +g225232 +S'Honor\xc3\xa9 Daumier' +p271059 +sg225240 +g27 +sg225234 +S'lithograph' +p271060 +sg225230 +S"Actualit\xc3\xa9s: Oh! Mon ami ... J'ai peur de ces gens-la!" +p271061 +sg225236 +S'published 1859' +p271062 +sa(dp271063 +g225232 +S'Honor\xc3\xa9 Daumier' +p271064 +sg225240 +g27 +sg225234 +S'lithograph' +p271065 +sg225230 +S"Au camp de Saint-Maur: M. Prud'homme se passant la fantaisie ..." +p271066 +sg225236 +S'published 1859' +p271067 +sa(dp271068 +g225232 +S'Charles Vernier' +p271069 +sg225240 +g27 +sg225234 +S'lithograph' +p271070 +sg225230 +S"C'est drole ... ces turcos!" +p271071 +sg225236 +S'published 1859' +p271072 +sa(dp271073 +g225232 +S'Charles Vernier' +p271074 +sg225240 +g27 +sg225234 +S'lithograph' +p271075 +sg225230 +S'La dame - Mais ... je ne vois pas de raies sur ce cannon!' +p271076 +sg225236 +S'published 1859' +p271077 +sa(dp271078 +g225232 +S'Charles Vernier' +p271079 +sg225240 +g27 +sg225234 +S'lithograph' +p271080 +sg225230 +S"Le cap'taine ... il n'est pas suseptible ..." +p271081 +sg225236 +S'published 1859' +p271082 +sa(dp271083 +g225232 +S'Charles Vernier' +p271084 +sg225240 +g27 +sg225234 +S'lithograph' +p271085 +sg225230 +S'Madam - Dieu ... les beau militaires!' +p271086 +sg225236 +S'published 1859' +p271087 +sa(dp271088 +g225232 +S'Charles Vernier' +p271089 +sg225240 +g27 +sg225234 +S'lithograph' +p271090 +sg225230 +S"Adieu les amis ... j'prends mon conge" +p271091 +sg225236 +S'published 1859' +p271092 +sa(dp271093 +g225232 +S'Honor\xc3\xa9 Daumier' +p271094 +sg225240 +g27 +sg225234 +S'lithograph' +p271095 +sg225230 +S'Au camp de Saint-Maur: La lev\xc3\xa9e du camp' +p271096 +sg225236 +S'published 1859' +p271097 +sa(dp271098 +g225232 +S'Cham (pseud.)' +p271099 +sg225240 +g27 +sg225234 +S'lithograph' +p271100 +sg225230 +S"La paix s'est faite!!!" +p271101 +sg225236 +S'published 1859' +p271102 +sa(dp271103 +g225232 +S'Jacques Villon' +p271104 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p271105 +sg225230 +S'Small Vase of Flowers (Petite vase de fleurs)' +p271106 +sg225236 +S'1949' +p271107 +sa(dp271108 +g225232 +S'Mileta Vitorovic' +p271109 +sg225240 +g27 +sg225234 +S'color screenprint' +p271110 +sg225230 +S'Gzadska ferifesija II' +p271111 +sg225236 +S'unknown date\n' +p271112 +sa(dp271113 +g225232 +S'Maurice de Vlaminck' +p271114 +sg225240 +g27 +sg225234 +S'etching and drypoint [1966 reprint]' +p271115 +sg225230 +S"The Church (L'eglise)" +p271116 +sg225236 +S'1927' +p271117 +sa(dp271118 +g225232 +S'Claire Van Vliet' +p271119 +sg225240 +g27 +sg225234 +S'lithograph' +p271120 +sg225230 +S'Dusk' +p271121 +sg225236 +S'unknown date\n' +p271122 +sa(dp271123 +g225232 +S'Claire Van Vliet' +p271124 +sg225240 +g27 +sg225234 +S'lithograph on Rives BFK paper' +p271125 +sg225230 +S'North' +p271126 +sg225236 +S'1971' +p271127 +sa(dp271128 +g225232 +S'Claire Van Vliet' +p271129 +sg225240 +g27 +sg225234 +S'color lithograph' +p271130 +sg225230 +S'Rye Field' +p271131 +sg225236 +S'unknown date\n' +p271132 +sa(dp271133 +g225232 +S'Claire Van Vliet' +p271134 +sg225240 +g27 +sg225234 +S'lithograph on Rives BFK paper' +p271135 +sg225230 +S'Storm' +p271136 +sg225236 +S'1971' +p271137 +sa(dp271138 +g225232 +S'Claire Van Vliet' +p271139 +sg225240 +g27 +sg225234 +S'lithograph' +p271140 +sg225230 +S'Storm Light' +p271141 +sg225236 +S'unknown date\n' +p271142 +sa(dp271143 +g225230 +S'Game of Checkers (La partie de dames)' +p271144 +sg225232 +S'Edouard Vuillard' +p271145 +sg225234 +S'color lithograph' +p271146 +sg225236 +S'1897/1898 (published 1899)' +p271147 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f22.jpg' +p271148 +sg225240 +g27 +sa(dp271149 +g225232 +S'George Bunker' +p271150 +sg225240 +g27 +sg225234 +S'color screenprint' +p271151 +sg225230 +S'Island Summer' +p271152 +sg225236 +S'1964' +p271153 +sa(dp271154 +g225232 +S'Various Artists' +p271155 +sg225240 +g27 +sg225234 +S'Rosenwald Collection' +p271156 +sg225230 +S'For Carl Zigrosser' +p271157 +sg225236 +S'\nportfolio with eleven prints plus title page, dedication page, and colophon' +p271158 +sa(dp271159 +g225232 +S'Edward Colker' +p271160 +sg225240 +g27 +sg225234 +S'color etching and aquatint' +p271161 +sg225230 +S'Fruit-ful' +p271162 +sg225236 +S'1964' +p271163 +sa(dp271164 +g225232 +S'Arthur L. Flory' +p271165 +sg225240 +g27 +sg225234 +S'lithograph' +p271166 +sg225230 +S'The Dandelion' +p271167 +sg225236 +S'1963' +p271168 +sa(dp271169 +g225232 +S'Jerome Kaplan' +p271170 +sg225240 +g27 +sg225234 +S'color etching and aquatint' +p271171 +sg225230 +S'2 Nus' +p271172 +sg225236 +S'1964' +p271173 +sa(dp271174 +g225232 +S'Samuel Calman Maitin' +p271175 +sg225240 +g27 +sg225234 +S'etching and roulette in blue' +p271176 +sg225230 +S'Little Blue Room' +p271177 +sg225236 +S'1964' +p271178 +sa(dp271179 +g225232 +S'Robert F. McGovern' +p271180 +sg225240 +g27 +sg225234 +S'woodcut' +p271181 +sg225230 +S'Negro Singing' +p271182 +sg225236 +S'1964' +p271183 +sa(dp271184 +g225232 +S'Peter Paone' +p271185 +sg225240 +g27 +sg225234 +S'etching in brown' +p271186 +sg225230 +S'Homage to Zigrosser' +p271187 +sg225236 +S'1964' +p271188 +sa(dp271189 +g225232 +S'Helen Siegl' +p271190 +sg225240 +g27 +sg225234 +S'woodcut or linoleum cut' +p271191 +sg225230 +S'Exodus' +p271192 +sg225236 +S'1964' +p271193 +sa(dp271194 +g225232 +S'Benton Murdoch Spruance' +p271195 +sg225240 +g27 +sg225234 +S'color lithograph' +p271196 +sg225230 +S'Patron Saint' +p271197 +sg225236 +S'1964' +p271198 +sa(dp271199 +g225232 +S'Romas Viesulas' +p271200 +sg225240 +g27 +sg225234 +S'intaglio' +p271201 +sg225230 +S'Verge' +p271202 +sg225236 +S'1964' +p271203 +sa(dp271204 +g225232 +S'Claire Van Vliet' +p271205 +sg225240 +g27 +sg225234 +S'woodcut' +p271206 +sg225230 +S'Untitled' +p271207 +sg225236 +S'1964' +p271208 +sa(dp271209 +g225232 +S'Eric Detthow' +p271210 +sg225240 +g27 +sg225234 +S'etching' +p271211 +sg225230 +S'Tjuvskyttar' +p271212 +sg225236 +S'unknown date\n' +p271213 +sa(dp271214 +g225232 +S'Various Artists' +p271215 +sg225240 +g27 +sg225234 +S'Rosenwald Collection' +p271216 +sg225230 +S'Foreningen for Grafisk Konst' +p271217 +sg225236 +S'\nportfolio with 5 prints by Detthow, S. Rosen, Sallberg, Johanson, and R. Rosen, plus title page and table of contents' +p271218 +sa(dp271219 +g225232 +S'Hans Fredrik Norsbo' +p271220 +sg225240 +g27 +sg225234 +S'drypoint' +p271221 +sg225230 +S'Blommor' +p271222 +sg225236 +S'1936' +p271223 +sa(dp271224 +g225232 +S'Reinhold von Rosen' +p271225 +sg225240 +g27 +sg225234 +S'drypoint' +p271226 +sg225230 +S'Hamnen i Raus' +p271227 +sg225236 +S'1928' +p271228 +sa(dp271229 +g225232 +S'Sven Olof Alfred Rosen' +p271230 +sg225240 +g27 +sg225234 +S'drypoint and aquatint' +p271231 +sg225230 +S'Vintriga akrar' +p271232 +sg225236 +S'1935' +p271233 +sa(dp271234 +g225232 +S'Harald Sallberg' +p271235 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p271236 +sg225230 +S'Repairing the Nets (Fisknatet)' +p271237 +sg225236 +S'1935' +p271238 +sa(dp271239 +g225232 +S'Andy Warhol' +p271240 +sg225240 +g27 +sg225234 +S'lithograph in black on wove paper' +p271241 +sg225230 +S'Halloween' +p271242 +sg225236 +S'1949' +p271243 +sa(dp271244 +g225232 +S'Andy Warhol' +p271245 +sg225240 +g27 +sg225234 +S'brush (pen?) and black ink' +p271246 +sg225230 +S'Postcard to Barbara Eisenberg' +p271247 +sg225236 +S'1949' +p271248 +sa(dp271249 +g225232 +S'Burton Wasserman' +p271250 +sg225240 +g27 +sg225234 +S'screenprint' +p271251 +sg225230 +S'Untitled' +p271252 +sg225236 +S'1967/1968' +p271253 +sa(dp271254 +g225232 +S'Burton Wasserman' +p271255 +sg225240 +g27 +sg225234 +S'screenprint in black [proof]' +p271256 +sg225230 +S'Untitled' +p271257 +sg225236 +S'1971/1972' +p271258 +sa(dp271259 +g225232 +S'Burton Wasserman' +p271260 +sg225240 +g27 +sg225234 +S'screenprint in red [proof]' +p271261 +sg225230 +S'Untitled' +p271262 +sg225236 +S'1975' +p271263 +sa(dp271264 +g225232 +S'Burton Wasserman' +p271265 +sg225240 +g27 +sg225234 +S'color screenprint' +p271266 +sg225230 +S'Christmas Card' +p271267 +sg225236 +S'1973' +p271268 +sa(dp271269 +g225232 +S'Sadao Watanabe' +p271270 +sg225240 +g27 +sg225234 +S'stencil print' +p271271 +sg225230 +S'Moses' +p271272 +sg225236 +S'1966' +p271273 +sa(dp271274 +g225232 +S'Sadao Watanabe' +p271275 +sg225240 +g27 +sg225234 +S'stencil print' +p271276 +sg225230 +S'Three Fishermen' +p271277 +sg225236 +S'1966' +p271278 +sa(dp271279 +g225230 +S'Josiah Wedgewood, Esq.' +p271280 +sg225232 +S'Artist Information (' +p271281 +sg225234 +S'(artist after)' +p271282 +sg225236 +S'\n' +p271283 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a36.jpg' +p271284 +sg225240 +g27 +sa(dp271285 +g225232 +S'Stow Wengenroth' +p271286 +sg225240 +g27 +sg225234 +S'lithograph' +p271287 +sg225230 +S'Woodland Ledge' +p271288 +sg225236 +S'1960' +p271289 +sa(dp271290 +g225230 +S'Church in an Inlet with Rowboat in the Foreground' +p271291 +sg225232 +S'Franz Edmund Weirotter' +p271292 +sg225234 +S', unknown date' +p271293 +sg225236 +S'\n' +p271294 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d78a.jpg' +p271295 +sg225240 +g27 +sa(dp271296 +g225230 +S'Houses on an Inlet' +p271297 +sg225232 +S'Franz Edmund Weirotter' +p271298 +sg225234 +S', unknown date' +p271299 +sg225236 +S'\n' +p271300 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d789.jpg' +p271301 +sg225240 +g27 +sa(dp271302 +g225232 +S'Joseph Weisz' +p271303 +sg225240 +g27 +sg225234 +S'hand-colored woodcut' +p271304 +sg225230 +S'Kugelblume/Aurorafalter' +p271305 +sg225236 +S'1951' +p271306 +sa(dp271307 +g225232 +S'Joseph Weisz' +p271308 +sg225240 +g27 +sg225234 +S'portfolio with 8 hand-colored woodcuts' +p271309 +sg225230 +S'Blumen und Tiere (Flowers and Animals)' +p271310 +sg225236 +S'1951' +p271311 +sa(dp271312 +g225232 +S'Joseph Weisz' +p271313 +sg225240 +g27 +sg225234 +S'hand-colored woodcut' +p271314 +sg225230 +S'Quellsteinbrech/Taufrosch' +p271315 +sg225236 +S'1951' +p271316 +sa(dp271317 +g225232 +S'Joseph Weisz' +p271318 +sg225240 +g27 +sg225234 +S'hand-colored woodcut' +p271319 +sg225230 +S'Polsternelke/Alpensalamander' +p271320 +sg225236 +S'1951' +p271321 +sa(dp271322 +g225232 +S'Joseph Weisz' +p271323 +sg225240 +g27 +sg225234 +S'hand-colored woodcut' +p271324 +sg225230 +S'Einblutiges Wintergrun/Blauer Laufkafer' +p271325 +sg225236 +S'1951' +p271326 +sa(dp271327 +g225232 +S'Joseph Weisz' +p271328 +sg225240 +g27 +sg225234 +S'hand-colored woodcut' +p271329 +sg225230 +S'Weinroter Steinbrech/Heller Alpenblauling' +p271330 +sg225236 +S'1951' +p271331 +sa(dp271332 +g225232 +S'Joseph Weisz' +p271333 +sg225240 +g27 +sg225234 +S'hand-colored woodcut' +p271334 +sg225230 +S'Himmelsherold/Bergeidechse' +p271335 +sg225236 +S'1951' +p271336 +sa(dp271337 +g225232 +S'Joseph Weisz' +p271338 +sg225240 +g27 +sg225234 +S'hand-colored woodcut' +p271339 +sg225230 +S'Berghauswurz/Alpenapollo' +p271340 +sg225236 +S'1951' +p271341 +sa(dp271342 +g225232 +S'Joseph Weisz' +p271343 +sg225240 +g27 +sg225234 +S'hand-colored woodcut' +p271344 +sg225230 +S'Stumpfblatterige Bergweide/Alpenleinzeisig' +p271345 +sg225236 +S'1951' +p271346 +sa(dp271347 +g225232 +S'Pepi Weixlg\xc3\xa4rtner-Neutra' +p271348 +sg225240 +g27 +sg225234 +S'relief print' +p271349 +sg225230 +S'The Health House' +p271350 +sg225236 +S'unknown date\n' +p271351 +sa(dp271352 +g225232 +S'Horace Devitt Welsh' +p271353 +sg225240 +g27 +sg225234 +S'etching' +p271354 +sg225230 +S'Cottage in the Tropics' +p271355 +sg225236 +S'unknown date\n' +p271356 +sa(dp271357 +g225230 +S'Martyrdom of Saint Sebastian' +p271358 +sg225232 +S'Artist Information (' +p271359 +sg225234 +S'German, active 1481/1497' +p271360 +sg225236 +S'(artist after)' +p271361 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a4/a000a467.jpg' +p271362 +sg225240 +g27 +sa(dp271363 +g225232 +S'Benjamin West' +p271364 +sg225240 +g27 +sg225234 +S'lithograph' +p271365 +sg225230 +S'This is my Beloved Son' +p271366 +sg225236 +S'1802' +p271367 +sa(dp271368 +g225230 +S'The Goose Shop' +p271369 +sg225232 +S'Elisha Kent Kane Wetherill' +p271370 +sg225234 +S'etching' +p271371 +sg225236 +S'unknown date\n' +p271372 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f9/a000f971.jpg' +p271373 +sg225240 +g27 +sa(dp271374 +g225232 +S'Ulfert Wilke' +p271375 +sg225240 +g27 +sg225234 +S'lithograph' +p271376 +sg225230 +S'Calligraphy' +p271377 +sg225236 +S'1969' +p271378 +sa(dp271379 +g225230 +S'A North-East View from Sandham Cottage, Isle of Wight' +p271380 +sg225232 +S'Harriet Wilkes' +p271381 +sg225234 +S'etching' +p271382 +sg225236 +S'unknown date\n' +p271383 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a35.jpg' +p271384 +sg225240 +g27 +sa(dp271385 +g225232 +S'Margot De Wit' +p271386 +sg225240 +g27 +sg225234 +S'mezzotint, drypoint, and etching' +p271387 +sg225230 +S'Conception Spatiale' +p271388 +sg225236 +S'unknown date\n' +p271389 +sa(dp271390 +g225232 +S'Anna Chow Ying Wong' +p271391 +sg225240 +g27 +sg225234 +S'color lithograph and screenprint' +p271392 +sg225230 +S'Window' +p271393 +sg225236 +S'unknown date\n' +p271394 +sa(dp271395 +g225230 +S'Royal Progeny of King James' +p271396 +sg225232 +S'Benjamin Wright' +p271397 +sg225234 +S'engraving' +p271398 +sg225236 +S'1619' +p271399 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076bc.jpg' +p271400 +sg225240 +g27 +sa(dp271401 +g225232 +S'Frank Wright' +p271402 +sg225240 +g27 +sg225234 +S'color etching and deepbite' +p271403 +sg225230 +S'The Battle' +p271404 +sg225236 +S'1964' +p271405 +sa(dp271406 +g225232 +S'Frank Wright' +p271407 +sg225240 +g27 +sg225234 +S'color etching and openbite' +p271408 +sg225230 +S'Castellar' +p271409 +sg225236 +S'1964' +p271410 +sa(dp271411 +g225232 +S'Frank Wright' +p271412 +sg225240 +g27 +sg225234 +S'color aquatint' +p271413 +sg225230 +S'The Dancing Fool' +p271414 +sg225236 +S'unknown date\n' +p271415 +sa(dp271416 +g225232 +S'Frank Wright' +p271417 +sg225240 +g27 +sg225234 +S'etching and aquatint' +p271418 +sg225230 +S'Don Quixote and Sancho Panza' +p271419 +sg225236 +S'1967' +p271420 +sa(dp271421 +g225232 +S'Frank Wright' +p271422 +sg225240 +g27 +sg225234 +S'engraving' +p271423 +sg225230 +S'Don Quixote Reading to Rosemante' +p271424 +sg225236 +S'1969' +p271425 +sa(dp271426 +g225232 +S'Frank Wright' +p271427 +sg225240 +g27 +sg225234 +S'engraving' +p271428 +sg225230 +S'The Drummer' +p271429 +sg225236 +S'1969' +p271430 +sa(dp271431 +g225232 +S'Frank Wright' +p271432 +sg225240 +g27 +sg225234 +S'engraving' +p271433 +sg225230 +S"The Emperor's Nightingale" +p271434 +sg225236 +S'unknown date\n' +p271435 +sa(dp271436 +g225232 +S'Frank Wright' +p271437 +sg225240 +g27 +sg225234 +S'color aquatint' +p271438 +sg225230 +S'F\xc3\xaate Champ\xc3\xaatre' +p271439 +sg225236 +S'1964' +p271440 +sa(dp271441 +g225232 +S'Frank Wright' +p271442 +sg225240 +g27 +sg225234 +S'color etching and aquatint' +p271443 +sg225230 +S'The Firefly' +p271444 +sg225236 +S'1964' +p271445 +sa(dp271446 +g225232 +S'Frank Wright' +p271447 +sg225240 +g27 +sg225234 +S'color etching, openbite, deepbite, and aquatint' +p271448 +sg225230 +S'The Four Ages of Man: The Four Humors' +p271449 +sg225236 +S'1964' +p271450 +sa(dp271451 +g225232 +S'Frank Wright' +p271452 +sg225240 +g27 +sg225234 +S'color etching and aquatint' +p271453 +sg225230 +S'An Italian Hill' +p271454 +sg225236 +S'1963' +p271455 +sa(dp271456 +g225232 +S'Frank Wright' +p271457 +sg225240 +g27 +sg225234 +S'color etching and aquatint' +p271458 +sg225230 +S'The Little Battle' +p271459 +sg225236 +S'1963' +p271460 +sa(dp271461 +g225232 +S'Frank Wright' +p271462 +sg225240 +g27 +sg225234 +S'color etching and aquatint' +p271463 +sg225230 +S'Paris Landscape' +p271464 +sg225236 +S'1963' +p271465 +sa(dp271466 +g225232 +S'Frank Wright' +p271467 +sg225240 +g27 +sg225234 +S'color etching' +p271468 +sg225230 +S'Paris Light' +p271469 +sg225236 +S'1963' +p271470 +sa(dp271471 +g225232 +S'Frank Wright' +p271472 +sg225240 +g27 +sg225234 +S'color aquatint' +p271473 +sg225230 +S'Provencal Landscape' +p271474 +sg225236 +S'1964' +p271475 +sa(dp271476 +g225232 +S'Frank Wright' +p271477 +sg225240 +g27 +sg225234 +S'engraving' +p271478 +sg225230 +S'Saint Francis' +p271479 +sg225236 +S'unknown date\n' +p271480 +sa(dp271481 +g225232 +S'Frank Wright' +p271482 +sg225240 +g27 +sg225234 +S'color etching and aquatint' +p271483 +sg225230 +S'A Ship of Fools' +p271484 +sg225236 +S'unknown date\n' +p271485 +sa(dp271486 +g225232 +S'Frank Wright' +p271487 +sg225240 +g27 +sg225234 +S'etched zinc plate' +p271488 +sg225230 +S'Skirmish' +p271489 +sg225236 +S'c. 1964' +p271490 +sa(dp271491 +g225232 +S'Frank Wright' +p271492 +sg225240 +g27 +sg225234 +S'color intaglio' +p271493 +sg225230 +S'The Skirmish' +p271494 +sg225236 +S'1964' +p271495 +sa(dp271496 +g225232 +S'Frank Wright' +p271497 +sg225240 +g27 +sg225234 +S'color aquatint' +p271498 +sg225230 +S'The Song of Orpheus' +p271499 +sg225236 +S'unknown date\n' +p271500 +sa(dp271501 +g225232 +S'Frank Wright' +p271502 +sg225240 +g27 +sg225234 +S'color etching and aquatint' +p271503 +sg225230 +S'The Troubadours' +p271504 +sg225236 +S'1964' +p271505 +sa(dp271506 +g225232 +S'Frank Wright' +p271507 +sg225240 +g27 +sg225234 +S'etched zinc plate' +p271508 +sg225230 +S'Untitled' +p271509 +sg225236 +S'unknown date\n' +p271510 +sa(dp271511 +g225232 +S'Frank Wright' +p271512 +sg225240 +g27 +sg225234 +S'color etching' +p271513 +sg225230 +S'Untitled' +p271514 +sg225236 +S'unknown date\n' +p271515 +sa(dp271516 +g225230 +S'A Cottage on Fire' +p271517 +sg225232 +S'Artist Information (' +p271518 +sg225234 +S'British (?), probably active 18th century' +p271519 +sg225236 +S'(artist after)' +p271520 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d85.jpg' +p271521 +sg225240 +g27 +sa(dp271522 +g225232 +S'Albert Edgar Yersin' +p271523 +sg225240 +g27 +sg225234 +S'engraving on chine colle' +p271524 +sg225230 +S'Beauty and the Beast' +p271525 +sg225236 +S'1967' +p271526 +sa(dp271527 +g225232 +S'Albert Edgar Yersin' +p271528 +sg225240 +g27 +sg225234 +S'engraving' +p271529 +sg225230 +S'Happy New Year, 1969 (Bonne Annee, 1969)' +p271530 +sg225236 +S'1968' +p271531 +sa(dp271532 +g225232 +S'Albert Edgar Yersin' +p271533 +sg225240 +g27 +sg225234 +S'engraving and mezzotint' +p271534 +sg225230 +S'Happy New Year, 1970 (Bonne Annee, 1970)' +p271535 +sg225236 +S'1969' +p271536 +sa(dp271537 +g225232 +S'Albert Edgar Yersin' +p271538 +sg225240 +g27 +sg225234 +S'etching' +p271539 +sg225230 +S'Happy New Year, 1971 (Bonne Annee, 1971)' +p271540 +sg225236 +S'1971' +p271541 +sa(dp271542 +g225232 +S'Albert Edgar Yersin' +p271543 +sg225240 +g27 +sg225234 +S'color engraving and mezzotint' +p271544 +sg225230 +S'Happy New Year, 1974 (Bonne Annee, 1974)' +p271545 +sg225236 +S'1973' +p271546 +sa(dp271547 +g225232 +S'Albert Edgar Yersin' +p271548 +sg225240 +g27 +sg225234 +S'engraving' +p271549 +sg225230 +S'Dedans et Dehors (At Home and Abroad)' +p271550 +sg225236 +S'1965/1967' +p271551 +sa(dp271552 +g225232 +S'Albert Edgar Yersin' +p271553 +sg225240 +g27 +sg225234 +S'color engraving' +p271554 +sg225230 +S'Dickicht' +p271555 +sg225236 +S'unknown date\n' +p271556 +sa(dp271557 +g225232 +S'Albert Edgar Yersin' +p271558 +sg225240 +g27 +sg225234 +S'color engraving with stipple' +p271559 +sg225230 +S'La Vie Interieure (The Interior Life)' +p271560 +sg225236 +S'unknown date\n' +p271561 +sa(dp271562 +g225232 +S'Albert Edgar Yersin' +p271563 +sg225240 +g27 +sg225234 +S'mezzotint and engraving' +p271564 +sg225230 +S'Le Microcosme (The Microcosm)' +p271565 +sg225236 +S'unknown date\n' +p271566 +sa(dp271567 +g225232 +S'Albert Edgar Yersin' +p271568 +sg225240 +g27 +sg225234 +S'color engraving' +p271569 +sg225230 +S'La Ronde Baroque (The Baroque Round)' +p271570 +sg225236 +S'1969' +p271571 +sa(dp271572 +g225232 +S'Albert Edgar Yersin' +p271573 +sg225240 +g27 +sg225234 +S'color engraving' +p271574 +sg225230 +S'Miroir des Origins (Mirror of Origins)' +p271575 +sg225236 +S'1968/1970' +p271576 +sa(dp271577 +g225232 +S'Albert Edgar Yersin' +p271578 +sg225240 +g27 +sg225234 +S'color engraving with mezzotint' +p271579 +sg225230 +S'Nine Fathoms Deep' +p271580 +sg225236 +S'1971' +p271581 +sa(dp271582 +g225232 +S'Adja Yunkers' +p271583 +sg225240 +g27 +sg225234 +S'color woodcut on black tissue paper' +p271584 +sg225230 +S'Merry Christmas and a Happier New Year' +p271585 +sg225236 +S'unknown date\n' +p271586 +sa(dp271587 +g225232 +S'Adja Yunkers' +p271588 +sg225240 +g27 +sg225234 +S'woodcut in red on Asian paper' +p271589 +sg225230 +S'Merry Christmas and a Happier New Year' +p271590 +sg225236 +S'1948' +p271591 +sa(dp271592 +g225232 +S'Adja Yunkers' +p271593 +sg225240 +g27 +sg225234 +S'relief print in grey on Asian paper' +p271594 +sg225230 +S'Untitled (Christmas Card)' +p271595 +sg225236 +S'1953' +p271596 +sa(dp271597 +g225232 +S'Adja Yunkers' +p271598 +sg225240 +g27 +sg225234 +S'relief print in black and red on wove paper' +p271599 +sg225230 +S'Untitled (Christmas Card)' +p271600 +sg225236 +S'1954' +p271601 +sa(dp271602 +g225232 +S'Adja Yunkers' +p271603 +sg225240 +g27 +sg225234 +S'5-color relief print on Asian paper' +p271604 +sg225230 +S'Untitled (Christmas Card)' +p271605 +sg225236 +S'unknown date\n' +p271606 +sa(dp271607 +g225232 +S'Adja Yunkers' +p271608 +sg225240 +g27 +sg225234 +S'relief print in blue on Asian paper' +p271609 +sg225230 +S'Untitled (Christmas Card)' +p271610 +sg225236 +S'unknown date\n' +p271611 +sa(dp271612 +g225232 +S'Adja Yunkers' +p271613 +sg225240 +g27 +sg225234 +S'relief print in rust and black on Asian paper' +p271614 +sg225230 +S'Untitled (Christmas Card)' +p271615 +sg225236 +S'unknown date\n' +p271616 +sa(dp271617 +g225232 +S'Adja Yunkers' +p271618 +sg225240 +g27 +sg225234 +S'5-color lithograph on wove paper' +p271619 +sg225230 +S'Summer in Venice I' +p271620 +sg225236 +S'1966' +p271621 +sa(dp271622 +g225230 +S'Genoa at the Giardino Durazzo al Zerbino' +p271623 +sg225232 +S'Leopoldina Zanetti Borzino' +p271624 +sg225234 +S'lithograph on chine colle' +p271625 +sg225236 +S'unknown date\n' +p271626 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc5f.jpg' +p271627 +sg225240 +g27 +sa(dp271628 +g225232 +S'Leonard Baskin' +p271629 +sg225240 +g27 +sg225234 +S'silver' +p271630 +sg225230 +S'Thomas Eakins House Restoration Commemorative Medal [obverse]' +p271631 +sg225236 +S'1972' +p271632 +sa(dp271633 +g225232 +S'Leonard Baskin' +p271634 +sg225240 +g27 +sg225234 +S'silver' +p271635 +sg225230 +S'Inscription [reverse]' +p271636 +sg225236 +S'1972' +p271637 +sa(dp271638 +g225230 +S'Study for a Monument' +p271639 +sg225232 +S'John Flaxman' +p271640 +sg225234 +S'pen and gray ink over graphite' +p271641 +sg225236 +S'unknown date\n' +p271642 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fca.jpg' +p271643 +sg225240 +g27 +sa(dp271644 +g225230 +S'King John [right side]' +p271645 +sg225232 +S'British 16th Century' +p271646 +sg225234 +S'overall (approximate): 32 x 22.5 cm (12 5/8 x 8 7/8 in.)' +p271647 +sg225236 +S'\npen and brown-black ink over black chalk on laid paper//1 of 2 drwgs. on folded sheet from Ms. (second sheet from Ms. interleaved w/accessioned sheet)' +p271648 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdc0.jpg' +p271649 +sg225240 +g27 +sa(dp271650 +g225232 +S'British 16th Century' +p271651 +sg225240 +g27 +sg225234 +S'overall (approximate): 32 x 22.5 cm (12 5/8 x 8 7/8 in.)' +p271652 +sg225230 +S'King Henry III [left side]' +p271653 +sg225236 +S'\npen and brown-black ink over black chalk on laid paper//1 of 2 drwgs. on folded sheet from Ms. (second sheet from Ms. interleaved w/accessioned sheet)' +p271654 +sa(dp271655 +g225232 +S'Mortimer Borne' +p271656 +sg225240 +g27 +sg225234 +S'etching in lavender' +p271657 +sg225230 +S'Three Dancing Girls with a Goat' +p271658 +sg225236 +S'1947' +p271659 +sa(dp271660 +g225230 +S'Alphonse Hirsch' +p271661 +sg225232 +S'Edgar Degas' +p271662 +sg225234 +S'drypoint and aquatint [restrike]' +p271663 +sg225236 +S'1875' +p271664 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a0009590.jpg' +p271665 +sg225240 +g27 +sa(dp271666 +g225232 +S'Shigeru Izumi' +p271667 +sg225240 +g27 +sg225234 +S'lithograph' +p271668 +sg225230 +S'At Philadelphia' +p271669 +sg225236 +S'unknown date\n' +p271670 +sa(dp271671 +g225232 +S'Helen Siegl' +p271672 +sg225240 +g27 +sg225234 +S'woodcut on rust colored paper' +p271673 +sg225230 +S'Concentric Circles, Goose, and Fish' +p271674 +sg225236 +S'unknown date\n' +p271675 +sa(dp271676 +g225232 +S'Helen Siegl' +p271677 +sg225240 +g27 +sg225234 +S'woodcut' +p271678 +sg225230 +S'Invitation to an Exhibition' +p271679 +sg225236 +S'unknown date\n' +p271680 +sa(dp271681 +g225232 +S'Helen Siegl' +p271682 +sg225240 +g27 +sg225234 +S'woodcut in blue' +p271683 +sg225230 +S'Card with Bird' +p271684 +sg225236 +S'1962' +p271685 +sa(dp271686 +g225230 +S'Sheet of Studies' +p271687 +sg225232 +S'John Flaxman' +p271688 +sg225234 +S'graphite//on back of 1798 Royal Academy exhibition announcement' +p271689 +sg225236 +S'in or after 1798' +p271690 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a00071f0.jpg' +p271691 +sg225240 +g27 +sa(dp271692 +g225230 +S'Portrait of a Woman' +p271693 +sg225232 +S'John Flaxman' +p271694 +sg225234 +S'graphite' +p271695 +sg225236 +S'unknown date\n' +p271696 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a00071b8.jpg' +p271697 +sg225240 +g27 +sa(dp271698 +g225230 +S'Sheet of Studies' +p271699 +sg225232 +S'John Flaxman' +p271700 +sg225234 +S'graphite' +p271701 +sg225236 +S'unknown date\n' +p271702 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007228.jpg' +p271703 +sg225240 +g27 +sa(dp271704 +g225230 +S'Design for a Monument' +p271705 +sg225232 +S'John Flaxman' +p271706 +sg225234 +S'graphite' +p271707 +sg225236 +S'unknown date\n' +p271708 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a000717f.jpg' +p271709 +sg225240 +g27 +sa(dp271710 +g225230 +S'Studies of a Male Figure' +p271711 +sg225232 +S'John Flaxman' +p271712 +sg225234 +S'graphite' +p271713 +sg225236 +S'unknown date\n' +p271714 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007292.jpg' +p271715 +sg225240 +g27 +sa(dp271716 +g225230 +S'Sheet of Studies' +p271717 +sg225232 +S'John Flaxman' +p271718 +sg225234 +S'graphite' +p271719 +sg225236 +S'unknown date\n' +p271720 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a000725a.jpg' +p271721 +sg225240 +g27 +sa(dp271722 +g225230 +S'Three Inscription Fields' +p271723 +sg225232 +S'John Flaxman' +p271724 +sg225234 +S'pen and gray ink with gray wash' +p271725 +sg225236 +S'unknown date\n' +p271726 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d14.jpg' +p271727 +sg225240 +g27 +sa(dp271728 +g225230 +S'Sheet of Studies' +p271729 +sg225232 +S'John Flaxman' +p271730 +sg225234 +S'graphite//brown wash uL corner unrelated to composition' +p271731 +sg225236 +S'unknown date\n' +p271732 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072c8.jpg' +p271733 +sg225240 +g27 +sa(dp271734 +g225230 +S'Sheet of Studies' +p271735 +sg225232 +S'John Flaxman' +p271736 +sg225234 +S'graphite' +p271737 +sg225236 +S'unknown date\n' +p271738 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cdf.jpg' +p271739 +sg225240 +g27 +sa(dp271740 +g225230 +S'Sheet of Studies' +p271741 +sg225232 +S'John Flaxman' +p271742 +sg225234 +S'graphite' +p271743 +sg225236 +S'unknown date\n' +p271744 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f50.jpg' +p271745 +sg225240 +g27 +sa(dp271746 +g225230 +S'Three Reclining Female Figures' +p271747 +sg225232 +S'John Flaxman' +p271748 +sg225234 +S'graphite' +p271749 +sg225236 +S'unknown date\n' +p271750 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f7f.jpg' +p271751 +sg225240 +g27 +sa(dp271752 +g225230 +S'Three Studies of an Oriental Relief' +p271753 +sg225232 +S'John Flaxman' +p271754 +sg225234 +S'graphite' +p271755 +sg225236 +S'unknown date\n' +p271756 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fda.jpg' +p271757 +sg225240 +g27 +sa(dp271758 +g225230 +S'Designs for Monuments [recto and verso]' +p271759 +sg225232 +S'John Flaxman' +p271760 +sg225234 +S'graphite//compositionally unrelated ink and wash, recto and verso' +p271761 +sg225236 +S'unknown date\n' +p271762 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fad.jpg' +p271763 +sg225240 +g27 +sa(dp271764 +g225230 +S'Studies of Seated and Reclining Figures' +p271765 +sg225232 +S'John Flaxman' +p271766 +sg225234 +S'graphite' +p271767 +sg225236 +S'unknown date\n' +p271768 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a0007006.jpg' +p271769 +sg225240 +g27 +sa(dp271770 +g225230 +S'Study for "The Fury of Athamas"' +p271771 +sg225232 +S'John Flaxman' +p271772 +sg225234 +S'graphite' +p271773 +sg225236 +S'probably c. 1790/1794' +p271774 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a00070c4.jpg' +p271775 +sg225240 +g27 +sa(dp271776 +g225230 +S'Sphinx with Reclining Figures in Foreground' +p271777 +sg225232 +S'John Flaxman' +p271778 +sg225234 +S'graphite' +p271779 +sg225236 +S'unknown date\n' +p271780 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a00070f6.jpg' +p271781 +sg225240 +g27 +sa(dp271782 +g225230 +S'Sheet of Studies of Cloaked Figures' +p271783 +sg225232 +S'John Flaxman' +p271784 +sg225234 +S'graphite' +p271785 +sg225236 +S'unknown date\n' +p271786 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a0007097.jpg' +p271787 +sg225240 +g27 +sa(dp271788 +g225230 +S'Sheet of Studies [recto and verso]' +p271789 +sg225232 +S'John Flaxman' +p271790 +sg225234 +S'graphite//compositionally unrelated ink and wash on verso' +p271791 +sg225236 +S'unknown date\n' +p271792 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a0007067.jpg' +p271793 +sg225240 +g27 +sa(dp271794 +g225230 +S'Sheet of Studies [recto and verso]' +p271795 +sg225232 +S'John Flaxman' +p271796 +sg225234 +S'graphite' +p271797 +sg225236 +S'in or after 1801' +p271798 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007123.jpg' +p271799 +sg225240 +g27 +sa(dp271800 +g225230 +S'Ornamental Border Design with Winged Female Figures' +p271801 +sg225232 +S'John Flaxman' +p271802 +sg225234 +S'graphite (and brown wash?)' +p271803 +sg225236 +S'unknown date\n' +p271804 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a0007038.jpg' +p271805 +sg225240 +g27 +sa(dp271806 +g225230 +S'Sheet of Studies [recto and verso]' +p271807 +sg225232 +S'John Flaxman' +p271808 +sg225234 +S'graphite' +p271809 +sg225236 +S'unknown date\n' +p271810 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a000714e.jpg' +p271811 +sg225240 +g27 +sa(dp271812 +g225230 +S'Sheet of Studies [recto and verso]' +p271813 +sg225232 +S'John Flaxman' +p271814 +sg225234 +S'graphite' +p271815 +sg225236 +S'unknown date\n' +p271816 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d21.jpg' +p271817 +sg225240 +g27 +sa(dp271818 +g225230 +S'Battle between Man and Centaur' +p271819 +sg225232 +S'John Flaxman' +p271820 +sg225234 +S'graphite' +p271821 +sg225236 +S'unknown date\n' +p271822 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ef1.jpg' +p271823 +sg225240 +g27 +sa(dp271824 +g225230 +S'Two Groups of Huddled Figures' +p271825 +sg225232 +S'John Flaxman' +p271826 +sg225234 +S'graphite' +p271827 +sg225236 +S'unknown date\n' +p271828 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e07.jpg' +p271829 +sg225240 +g27 +sa(dp271830 +g225230 +S'Two Seated Female Figures with Arms Lifted Overhead' +p271831 +sg225232 +S'John Flaxman' +p271832 +sg225234 +S'pen and brown ink' +p271833 +sg225236 +S'unknown date\n' +p271834 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d7d.jpg' +p271835 +sg225240 +g27 +sa(dp271836 +g225230 +S'Designs for a Monument' +p271837 +sg225232 +S'John Flaxman' +p271838 +sg225234 +S'graphite//on back of a calling card' +p271839 +sg225236 +S'unknown date\n' +p271840 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e69.jpg' +p271841 +sg225240 +g27 +sa(dp271842 +g225230 +S'Sheet of Studies [recto and verso]' +p271843 +sg225232 +S'John Flaxman' +p271844 +sg225234 +S'pen and brown ink over graphite; verso graphite only' +p271845 +sg225236 +S'unknown date\n' +p271846 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d4f.jpg' +p271847 +sg225240 +g27 +sa(dp271848 +g225230 +S'Two Studies of Standing Figure and Child' +p271849 +sg225232 +S'John Flaxman' +p271850 +sg225234 +S'graphite' +p271851 +sg225236 +S'unknown date\n' +p271852 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006ddb.jpg' +p271853 +sg225240 +g27 +sa(dp271854 +g225230 +S'Group of Figures' +p271855 +sg225232 +S'John Flaxman' +p271856 +sg225234 +S'graphite' +p271857 +sg225236 +S'unknown date\n' +p271858 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e98.jpg' +p271859 +sg225240 +g27 +sa(dp271860 +g225230 +S'Seated Figure with Arms Outstretched' +p271861 +sg225232 +S'John Flaxman' +p271862 +sg225234 +S'graphite' +p271863 +sg225236 +S'unknown date\n' +p271864 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ec2.jpg' +p271865 +sg225240 +g27 +sa(dp271866 +g225230 +S'Two Figures Embracing' +p271867 +sg225232 +S'John Flaxman' +p271868 +sg225234 +S'graphite' +p271869 +sg225236 +S'unknown date\n' +p271870 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f21.jpg' +p271871 +sg225240 +g27 +sa(dp271872 +g225230 +S'Bearded Figure' +p271873 +sg225232 +S'John Flaxman' +p271874 +sg225234 +S'pen and brown ink over graphite' +p271875 +sg225236 +S'unknown date\n' +p271876 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e39.jpg' +p271877 +sg225240 +g27 +sa(dp271878 +g225230 +S'Design for the Tomb of Dr. Joseph Warton' +p271879 +sg225232 +S'John Flaxman' +p271880 +sg225234 +S'graphite' +p271881 +sg225236 +S'probably c. 1804' +p271882 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dad.jpg' +p271883 +sg225240 +g27 +sa(dp271884 +g225230 +S'Woman in Profile' +p271885 +sg225232 +S'John Flaxman' +p271886 +sg225234 +S'graphite' +p271887 +sg225236 +S'unknown date\n' +p271888 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a00070d9.jpg' +p271889 +sg225240 +g27 +sa(dp271890 +g225230 +S'Running Figures with Arms Raised' +p271891 +sg225232 +S'John Flaxman' +p271892 +sg225234 +S'graphite' +p271893 +sg225236 +S'unknown date\n' +p271894 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007134.jpg' +p271895 +sg225240 +g27 +sa(dp271896 +g225230 +S'Three Seated Figures' +p271897 +sg225232 +S'John Flaxman' +p271898 +sg225234 +S'graphite' +p271899 +sg225236 +S'unknown date\n' +p271900 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007108.jpg' +p271901 +sg225240 +g27 +sa(dp271902 +g225230 +S'Relief with Two Cloaked Figures' +p271903 +sg225232 +S'John Flaxman' +p271904 +sg225234 +S'graphite' +p271905 +sg225236 +S'unknown date\n' +p271906 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a00071ce.jpg' +p271907 +sg225240 +g27 +sa(dp271908 +g225230 +S'Two Huddled Figures' +p271909 +sg225232 +S'John Flaxman' +p271910 +sg225234 +S'graphite' +p271911 +sg225236 +S'unknown date\n' +p271912 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a000723c.jpg' +p271913 +sg225240 +g27 +sa(dp271914 +g225230 +S'Face in Profile Facing Left and Monument' +p271915 +sg225232 +S'John Flaxman' +p271916 +sg225234 +S'graphite' +p271917 +sg225236 +S'unknown date\n' +p271918 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072aa.jpg' +p271919 +sg225240 +g27 +sa(dp271920 +g225230 +S'Design for a Candelabrum Representing the Three Graces Gathering the Apples of Hesper' +p271921 +sg225232 +S'John Flaxman' +p271922 +sg225234 +S'pen and gray ink over graphite' +p271923 +sg225236 +S'c. 1809' +p271924 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007161.jpg' +p271925 +sg225240 +g27 +sa(dp271926 +g225230 +S'Male Figure in Contemporary Dress' +p271927 +sg225232 +S'John Flaxman' +p271928 +sg225234 +S'graphite' +p271929 +sg225236 +S'in or after 1801' +p271930 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007196.jpg' +p271931 +sg225240 +g27 +sa(dp271932 +g225230 +S'Sheet of Studies [recto and verso]' +p271933 +sg225232 +S'John Flaxman' +p271934 +sg225234 +S'graphite' +p271935 +sg225236 +S'unknown date\n' +p271936 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007207.jpg' +p271937 +sg225240 +g27 +sa(dp271938 +g225230 +S'Sheet of Studies [recto and verso]' +p271939 +sg225232 +S'John Flaxman' +p271940 +sg225234 +S'graphite' +p271941 +sg225236 +S'unknown date\n' +p271942 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007270.jpg' +p271943 +sg225240 +g27 +sa(dp271944 +g225230 +S'Designs for Monuments' +p271945 +sg225232 +S'John Flaxman' +p271946 +sg225234 +S'graphite and pen and ink over graphite' +p271947 +sg225236 +S'unknown date\n' +p271948 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cf3.jpg' +p271949 +sg225240 +g27 +sa(dp271950 +g225230 +S'Sheet of Studies [recto and verso]' +p271951 +sg225232 +S'John Flaxman' +p271952 +sg225234 +S'graphite//compositionally unrelated ink and wash verso' +p271953 +sg225236 +S'in or after 1819' +p271954 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072de.jpg' +p271955 +sg225240 +g27 +sa(dp271956 +g225230 +S'Sheet of Studies [recto and verso]' +p271957 +sg225232 +S'John Flaxman' +p271958 +sg225234 +S'graphite' +p271959 +sg225236 +S'unknown date\n' +p271960 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a00070ab.jpg' +p271961 +sg225240 +g27 +sa(dp271962 +g225230 +S'Four Studies of a Seated Woman with Children at Her Feet' +p271963 +sg225232 +S'John Flaxman' +p271964 +sg225234 +S'graphite' +p271965 +sg225236 +S'unknown date\n' +p271966 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fbd.jpg' +p271967 +sg225240 +g27 +sa(dp271968 +g225230 +S'Sheet of Studies [recto and verso]' +p271969 +sg225232 +S'John Flaxman' +p271970 +sg225234 +S'graphite' +p271971 +sg225236 +S'unknown date\n' +p271972 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f63.jpg' +p271973 +sg225240 +g27 +sa(dp271974 +g225230 +S'Sheet of Studies [recto and verso]' +p271975 +sg225232 +S'John Flaxman' +p271976 +sg225234 +S'graphite' +p271977 +sg225236 +S'unknown date\n' +p271978 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a000707a.jpg' +p271979 +sg225240 +g27 +sa(dp271980 +g225230 +S'Sheet of Studies' +p271981 +sg225232 +S'John Flaxman' +p271982 +sg225234 +S'graphite' +p271983 +sg225236 +S'unknown date\n' +p271984 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fec.jpg' +p271985 +sg225240 +g27 +sa(dp271986 +g225230 +S'Designs for Monuments' +p271987 +sg225232 +S'John Flaxman' +p271988 +sg225234 +S'graphite' +p271989 +sg225236 +S'unknown date\n' +p271990 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a000701a.jpg' +p271991 +sg225240 +g27 +sa(dp271992 +g225230 +S'Figure Studies' +p271993 +sg225232 +S'John Flaxman' +p271994 +sg225234 +S'graphite' +p271995 +sg225236 +S'unknown date\n' +p271996 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a000704a.jpg' +p271997 +sg225240 +g27 +sa(dp271998 +g225230 +S'Sheet of Studies' +p271999 +sg225232 +S'John Flaxman' +p272000 +sg225234 +S'graphite' +p272001 +sg225236 +S'unknown date\n' +p272002 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f92.jpg' +p272003 +sg225240 +g27 +sa(dp272004 +g225230 +S'Woman Playing a Harp' +p272005 +sg225232 +S'John Flaxman' +p272006 +sg225234 +S'graphite' +p272007 +sg225236 +S'unknown date\n' +p272008 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f34.jpg' +p272009 +sg225240 +g27 +sa(dp272010 +g225230 +S'Sheet of Studies [recto and verso]' +p272011 +sg225232 +S'John Flaxman' +p272012 +sg225234 +S'graphite//compositionally unrelated ink and wash verso' +p272013 +sg225236 +S'unknown date\n' +p272014 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ed3.jpg' +p272015 +sg225240 +g27 +sa(dp272016 +g225230 +S'Sheet of Studies' +p272017 +sg225232 +S'John Flaxman' +p272018 +sg225234 +S'graphite//compositionally unrelated ink and wash recto and verso' +p272019 +sg225236 +S'unknown date\n' +p272020 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ea8.jpg' +p272021 +sg225240 +g27 +sa(dp272022 +g225230 +S'Woman Patting a Dog' +p272023 +sg225232 +S'John Flaxman' +p272024 +sg225234 +S'graphite' +p272025 +sg225236 +S'unknown date\n' +p272026 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f05.jpg' +p272027 +sg225240 +g27 +sa(dp272028 +g225230 +S'Sheet of Studies' +p272029 +sg225232 +S'John Flaxman' +p272030 +sg225234 +S'graphite' +p272031 +sg225236 +S'unknown date\n' +p272032 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e1b.jpg' +p272033 +sg225240 +g27 +sa(dp272034 +g225230 +S'Sheet of Studies [recto and verso]' +p272035 +sg225232 +S'John Flaxman' +p272036 +sg225234 +S'graphite' +p272037 +sg225236 +S'unknown date\n' +p272038 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e7b.jpg' +p272039 +sg225240 +g27 +sa(dp272040 +g225230 +S'Sheet of Studies [recto and verso]' +p272041 +sg225232 +S'John Flaxman' +p272042 +sg225234 +S'graphite' +p272043 +sg225236 +S'unknown date\n' +p272044 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d8f.jpg' +p272045 +sg225240 +g27 +sa(dp272046 +g225230 +S'Group of Five Figures' +p272047 +sg225232 +S'John Flaxman' +p272048 +sg225234 +S'graphite' +p272049 +sg225236 +S'unknown date\n' +p272050 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dc1.jpg' +p272051 +sg225240 +g27 +sa(dp272052 +g225230 +S'Two Groups of Figures' +p272053 +sg225232 +S'John Flaxman' +p272054 +sg225234 +S'graphite' +p272055 +sg225236 +S'unknown date\n' +p272056 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e4a.jpg' +p272057 +sg225240 +g27 +sa(dp272058 +g225230 +S'Monument to Agnes Cromwell (?)' +p272059 +sg225232 +S'John Flaxman' +p272060 +sg225234 +S'graphite' +p272061 +sg225236 +S'probably c. 1798/1800' +p272062 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006ded.jpg' +p272063 +sg225240 +g27 +sa(dp272064 +g225230 +S'Angels Descending to the Daughters of Men' +p272065 +sg225232 +S'John Flaxman' +p272066 +sg225234 +S'graphite//compositionally unrelated ink and wash recto and verso' +p272067 +sg225236 +S'probably c. 1821' +p272068 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d62.jpg' +p272069 +sg225240 +g27 +sa(dp272070 +g225230 +S'Sheet of Studies [recto and verso]' +p272071 +sg225232 +S'John Flaxman' +p272072 +sg225234 +S'graphite' +p272073 +sg225236 +S'unknown date\n' +p272074 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d06.jpg' +p272075 +sg225240 +g27 +sa(dp272076 +g225230 +S'Designs for a Monument to Sir William Jones (?) [recto and verso]' +p272077 +sg225232 +S'John Flaxman' +p272078 +sg225234 +S'graphite; verso: graphite and pen and gray ink over graphite' +p272079 +sg225236 +S'probably c. 1796/1798' +p272080 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072b8.jpg' +p272081 +sg225240 +g27 +sa(dp272082 +g225230 +S'Sheet of Studies [recto and verso]' +p272083 +sg225232 +S'John Flaxman' +p272084 +sg225234 +S'graphite; verso: graphite and pen and ink over graphite' +p272085 +sg225236 +S'in or after 1811' +p272086 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007282.jpg' +p272087 +sg225240 +g27 +sa(dp272088 +g225230 +S'Sheet of Figures Studies' +p272089 +sg225232 +S'John Flaxman' +p272090 +sg225234 +S'graphite' +p272091 +sg225236 +S'unknown date\n' +p272092 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d34.jpg' +p272093 +sg225240 +g27 +sa(dp272094 +g225230 +S'Figures Illustrating Balance and Perspective [recto]' +p272095 +sg225232 +S'John Flaxman' +p272096 +sg225234 +S'graphite' +p272097 +sg225236 +S'unknown date\n' +p272098 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072ee.jpg' +p272099 +sg225240 +g27 +sa(dp272100 +g225232 +S'John Flaxman' +p272101 +sg225240 +g27 +sg225234 +S'graphite' +p272102 +sg225230 +S'Drapery Studies [verso]' +p272103 +sg225236 +S'unknown date\n' +p272104 +sa(dp272105 +g225230 +S'Sheet of Studies [recto and verso]' +p272106 +sg225232 +S'John Flaxman' +p272107 +sg225234 +S'graphite' +p272108 +sg225236 +S'unknown date\n' +p272109 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a000721b.jpg' +p272110 +sg225240 +g27 +sa(dp272111 +g225230 +S'Standing Female Figure Looking at Reclining and Seated Figures' +p272112 +sg225232 +S'John Flaxman' +p272113 +sg225234 +S'graphite' +p272114 +sg225236 +S'unknown date\n' +p272115 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a00071e2.jpg' +p272116 +sg225240 +g27 +sa(dp272117 +g225230 +S'Designs for a Monument [recto and verso]' +p272118 +sg225232 +S'John Flaxman' +p272119 +sg225234 +S'graphite' +p272120 +sg225236 +S'unknown date\n' +p272121 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a000724e.jpg' +p272122 +sg225240 +g27 +sa(dp272123 +g225230 +S'Sheet of Studies [recto and verso]' +p272124 +sg225232 +S'John Flaxman' +p272125 +sg225234 +S'graphite//compositionally unrelated ink and wash recto and verso' +p272126 +sg225236 +S'unknown date\n' +p272127 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a00071a9.jpg' +p272128 +sg225240 +g27 +sa(dp272129 +g225230 +S'Figure Sleeping in a Doorway' +p272130 +sg225232 +S'John Flaxman' +p272131 +sg225234 +S'graphite' +p272132 +sg225236 +S'unknown date\n' +p272133 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007119.jpg' +p272134 +sg225240 +g27 +sa(dp272135 +g225230 +S'Sheet of Studies [recto and verso]' +p272136 +sg225232 +S'John Flaxman' +p272137 +sg225234 +S'graphite' +p272138 +sg225236 +S'unknown date\n' +p272139 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007174.jpg' +p272140 +sg225240 +g27 +sa(dp272141 +g225230 +S'Group of Figures' +p272142 +sg225232 +S'John Flaxman' +p272143 +sg225234 +S'graphite//compositionally unrelated pen and ink verso' +p272144 +sg225236 +S'unknown date\n' +p272145 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a00070ec.jpg' +p272146 +sg225240 +g27 +sa(dp272147 +g225230 +S'Four Groups of Figures' +p272148 +sg225232 +S'John Flaxman' +p272149 +sg225234 +S'graphite' +p272150 +sg225236 +S'unknown date\n' +p272151 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007144.jpg' +p272152 +sg225240 +g27 +sa(dp272153 +g225230 +S'Three Groups of Figures (Parents and Children?)' +p272154 +sg225232 +S'John Flaxman' +p272155 +sg225234 +S'graphite' +p272156 +sg225236 +S'unknown date\n' +p272157 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a00070bb.jpg' +p272158 +sg225240 +g27 +sa(dp272159 +g225230 +S'Snails [recto and verso]' +p272160 +sg225232 +S'John Flaxman' +p272161 +sg225234 +S'graphite' +p272162 +sg225236 +S'unknown date\n' +p272163 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a000708d.jpg' +p272164 +sg225240 +g27 +sa(dp272165 +g225230 +S'Design for a Medal Representing Saint George and the Dragon' +p272166 +sg225232 +S'John Flaxman' +p272167 +sg225234 +S'graphite' +p272168 +sg225236 +S'unknown date\n' +p272169 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a000705d.jpg' +p272170 +sg225240 +g27 +sa(dp272171 +g225230 +S'Group of Figures' +p272172 +sg225232 +S'John Flaxman' +p272173 +sg225234 +S'graphite' +p272174 +sg225236 +S'unknown date\n' +p272175 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a000702e.jpg' +p272176 +sg225240 +g27 +sa(dp272177 +g225230 +S'Hercules' +p272178 +sg225232 +S'John Flaxman' +p272179 +sg225234 +S'graphite' +p272180 +sg225236 +S'unknown date\n' +p272181 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ee7.jpg' +p272182 +sg225240 +g27 +sa(dp272183 +g225230 +S'Sheet of Studies [recto and verso]' +p272184 +sg225232 +S'John Flaxman' +p272185 +sg225234 +S'pen and ink over graphite; verso graphite only' +p272186 +sg225236 +S'unknown date\n' +p272187 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fa4.jpg' +p272188 +sg225240 +g27 +sa(dp272189 +g225230 +S'Three Groups of Figures' +p272190 +sg225232 +S'John Flaxman' +p272191 +sg225234 +S'graphite' +p272192 +sg225236 +S'unknown date\n' +p272193 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e8e.jpg' +p272194 +sg225240 +g27 +sa(dp272195 +g225230 +S'Figure Study' +p272196 +sg225232 +S'John Flaxman' +p272197 +sg225234 +S'graphite' +p272198 +sg225236 +S'unknown date\n' +p272199 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e5e.jpg' +p272200 +sg225240 +g27 +sa(dp272201 +g225230 +S'Group of Figures' +p272202 +sg225232 +S'John Flaxman' +p272203 +sg225234 +S'graphite' +p272204 +sg225236 +S'unknown date\n' +p272205 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006ffd.jpg' +p272206 +sg225240 +g27 +sa(dp272207 +g225230 +S'Sheet of Studies [recto and verso]' +p272208 +sg225232 +S'John Flaxman' +p272209 +sg225234 +S'graphite' +p272210 +sg225236 +S'unknown date\n' +p272211 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f46.jpg' +p272212 +sg225240 +g27 +sa(dp272213 +g225230 +S'Figure Studies' +p272214 +sg225232 +S'John Flaxman' +p272215 +sg225234 +S'graphite' +p272216 +sg225236 +S'unknown date\n' +p272217 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dd1.jpg' +p272218 +sg225240 +g27 +sa(dp272219 +g225230 +S'Group of Figures' +p272220 +sg225232 +S'John Flaxman' +p272221 +sg225234 +S'graphite' +p272222 +sg225236 +S'unknown date\n' +p272223 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f75.jpg' +p272224 +sg225240 +g27 +sa(dp272225 +g225230 +S'Group of Figures Surrounding Seated Figure' +p272226 +sg225232 +S'John Flaxman' +p272227 +sg225234 +S'graphite' +p272228 +sg225236 +S'unknown date\n' +p272229 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006eb8.jpg' +p272230 +sg225240 +g27 +sa(dp272231 +g225230 +S'Design for a Monument' +p272232 +sg225232 +S'John Flaxman' +p272233 +sg225234 +S'graphite' +p272234 +sg225236 +S'unknown date\n' +p272235 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fcf.jpg' +p272236 +sg225240 +g27 +sa(dp272237 +g225230 +S'Sheet of Studies [recto and verso]' +p272238 +sg225232 +S'John Flaxman' +p272239 +sg225234 +S'graphite' +p272240 +sg225236 +S'unknown date\n' +p272241 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e2e.jpg' +p272242 +sg225240 +g27 +sa(dp272243 +g225230 +S'Three Seated Female Figures' +p272244 +sg225232 +S'John Flaxman' +p272245 +sg225234 +S'graphite' +p272246 +sg225236 +S'unknown date\n' +p272247 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dff.jpg' +p272248 +sg225240 +g27 +sa(dp272249 +g225230 +S'The Giants' +p272250 +sg225232 +S'John Flaxman' +p272251 +sg225234 +S'graphite on brown tracing paper' +p272252 +sg225236 +S'unknown date\n' +p272253 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ee1.jpg' +p272254 +sg225240 +g27 +sa(dp272255 +g225230 +S'Studies of a Kneeling Boy' +p272256 +sg225232 +S'John Flaxman' +p272257 +sg225234 +S'graphite' +p272258 +sg225236 +S'unknown date\n' +p272259 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d3e.jpg' +p272260 +sg225240 +g27 +sa(dp272261 +g225230 +S'Sheet of Studies' +p272262 +sg225232 +S'John Flaxman' +p272263 +sg225234 +S'graphite' +p272264 +sg225236 +S'unknown date\n' +p272265 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d6f.jpg' +p272266 +sg225240 +g27 +sa(dp272267 +g225230 +S'Seated Figure Bending Forward' +p272268 +sg225232 +S'John Flaxman' +p272269 +sg225234 +S'graphite' +p272270 +sg225236 +S'in or after 1806' +p272271 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e88.jpg' +p272272 +sg225240 +g27 +sa(dp272273 +g225230 +S'Lion' +p272274 +sg225232 +S'John Flaxman' +p272275 +sg225234 +S'graphite' +p272276 +sg225236 +S'unknown date\n' +p272277 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d12.jpg' +p272278 +sg225240 +g27 +sa(dp272279 +g225230 +S'Design for Monument or Metalwork' +p272280 +sg225232 +S'John Flaxman' +p272281 +sg225234 +S'graphite' +p272282 +sg225236 +S'unknown date\n' +p272283 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e57.jpg' +p272284 +sg225240 +g27 +sa(dp272285 +g225230 +S'Head of Mary Magdalen and Two Saints (?)' +p272286 +sg225232 +S'John Flaxman' +p272287 +sg225234 +S'graphite' +p272288 +sg225236 +S'unknown date\n' +p272289 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e27.jpg' +p272290 +sg225240 +g27 +sa(dp272291 +g225230 +S'Sheet of Studies [recto and verso]' +p272292 +sg225232 +S'John Flaxman' +p272293 +sg225234 +S'graphite' +p272294 +sg225236 +S'unknown date\n' +p272295 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006df9.jpg' +p272296 +sg225240 +g27 +sa(dp272297 +g225230 +S'Striding Female with Palm' +p272298 +sg225232 +S'John Flaxman' +p272299 +sg225234 +S'graphite' +p272300 +sg225236 +S'unknown date\n' +p272301 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dcb.jpg' +p272302 +sg225240 +g27 +sa(dp272303 +g225230 +S'Sheet of Studies [recto and verso]' +p272304 +sg225232 +S'John Flaxman' +p272305 +sg225234 +S'graphite' +p272306 +sg225236 +S'unknown date\n' +p272307 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d9c.jpg' +p272308 +sg225240 +g27 +sa(dp272309 +g225230 +S'Design for a Monument' +p272310 +sg225232 +S'John Flaxman' +p272311 +sg225234 +S'graphite' +p272312 +sg225236 +S'unknown date\n' +p272313 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006eb4.jpg' +p272314 +sg225240 +g27 +sa(dp272315 +g225230 +S'Bishop Wulstan, in Worcester Cathedral' +p272316 +sg225232 +S'Artist Information (' +p272317 +sg225234 +S'(artist after)' +p272318 +sg225236 +S'\n' +p272319 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dd1.jpg' +p272320 +sg225240 +g27 +sa(dp272321 +g225230 +S'Creation of Eve, from Wells Cathedral' +p272322 +sg225232 +S'Artist Information (' +p272323 +sg225234 +S'(artist after)' +p272324 +sg225236 +S'\n' +p272325 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c44.jpg' +p272326 +sg225240 +g27 +sa(dp272327 +g225230 +S'Death of Isaac, from Wells Cathedral' +p272328 +sg225232 +S'Artist Information (' +p272329 +sg225234 +S'(artist after)' +p272330 +sg225236 +S'\n' +p272331 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007df5.jpg' +p272332 +sg225240 +g27 +sa(dp272333 +g225230 +S'An Angel, from Wells Cathedral' +p272334 +sg225232 +S'Artist Information (' +p272335 +sg225234 +S'(artist after)' +p272336 +sg225236 +S'\n' +p272337 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c34.jpg' +p272338 +sg225240 +g27 +sa(dp272339 +g225230 +S'Queen Eleanor, from Waltham Cross' +p272340 +sg225232 +S'Artist Information (' +p272341 +sg225234 +S'(artist after)' +p272342 +sg225236 +S'\n' +p272343 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007de3.jpg' +p272344 +sg225240 +g27 +sa(dp272345 +g225230 +S'Virgin and Angels, a Key Stone in York' +p272346 +sg225232 +S'Artist Information (' +p272347 +sg225234 +S'(artist after)' +p272348 +sg225236 +S'\n' +p272349 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c21.jpg' +p272350 +sg225240 +g27 +sa(dp272351 +g225230 +S"Saint John, from Henry the Seventh's Chapel Westminster Abbey" +p272352 +sg225232 +S'Artist Information (' +p272353 +sg225234 +S'(artist after)' +p272354 +sg225236 +S'\n' +p272355 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dbf.jpg' +p272356 +sg225240 +g27 +sa(dp272357 +g225230 +S"Statues in the Architecture of Henry the Seventh's Chapel, Westminster Abbey" +p272358 +sg225232 +S'Artist Information (' +p272359 +sg225234 +S'(artist after)' +p272360 +sg225236 +S'\n' +p272361 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d8f.jpg' +p272362 +sg225240 +g27 +sa(dp272363 +g225230 +S'Plan of the Palace of Carnac' +p272364 +sg225232 +S'Artist Information (' +p272365 +sg225234 +S'(artist after)' +p272366 +sg225236 +S'\n' +p272367 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007daf.jpg' +p272368 +sg225240 +g27 +sa(dp272369 +g225230 +S'Figure of Bubaste or Isis' +p272370 +sg225232 +S'Artist Information (' +p272371 +sg225234 +S'(artist after)' +p272372 +sg225236 +S'\n' +p272373 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007ccb.jpg' +p272374 +sg225240 +g27 +sa(dp272375 +g225230 +S"Sculpture at Persepolis, from Le Bruyn's Travels" +p272376 +sg225232 +S'Artist Information (' +p272377 +sg225234 +S'(artist after)' +p272378 +sg225236 +S'\n' +p272379 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007de5.jpg' +p272380 +sg225240 +g27 +sa(dp272381 +g225230 +S'Vishnu, Creating Agent of Brahma, Attitude, the Emblem of Eternity' +p272382 +sg225232 +S'Artist Information (' +p272383 +sg225234 +S'(artist after)' +p272384 +sg225236 +S'\n' +p272385 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dd3.jpg' +p272386 +sg225240 +g27 +sa(dp272387 +g225230 +S'Bronze Figure of Minerva, Found in the Barrowof Achilles' +p272388 +sg225232 +S'Artist Information (' +p272389 +sg225234 +S'(artist after)' +p272390 +sg225236 +S'\n' +p272391 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c97.jpg' +p272392 +sg225240 +g27 +sa(dp272393 +g225230 +S'Daedalian Figures from Bronzes' +p272394 +sg225232 +S'Artist Information (' +p272395 +sg225234 +S'(artist after)' +p272396 +sg225236 +S'\n' +p272397 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c7b.jpg' +p272398 +sg225240 +g27 +sa(dp272399 +g225230 +S'Minerva, From a Bronze by Daedalus' +p272400 +sg225232 +S'Artist Information (' +p272401 +sg225234 +S'(artist after)' +p272402 +sg225236 +S'\n' +p272403 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c6b.jpg' +p272404 +sg225240 +g27 +sa(dp272405 +g225230 +S'Tydaeus' +p272406 +sg225232 +S'Artist Information (' +p272407 +sg225234 +S'British, 1755 - 1826' +p272408 +sg225236 +S'(artist after)' +p272409 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d81.jpg' +p272410 +sg225240 +g27 +sa(dp272411 +g225230 +S'Minerva, by Phidas' +p272412 +sg225232 +S'Artist Information (' +p272413 +sg225234 +S'(artist after)' +p272414 +sg225236 +S'\n' +p272415 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d91.jpg' +p272416 +sg225240 +g27 +sa(dp272417 +g225230 +S'Venus Aphrodite, by Alcamanes' +p272418 +sg225232 +S'Artist Information (' +p272419 +sg225234 +S'(artist after)' +p272420 +sg225236 +S'\n' +p272421 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d2a.jpg' +p272422 +sg225240 +g27 +sa(dp272423 +g225230 +S'Venus Aphrodite, by Alcamanes' +p272424 +sg225232 +S'Artist Information (' +p272425 +sg225234 +S'(artist after)' +p272426 +sg225236 +S'\n' +p272427 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d38.jpg' +p272428 +sg225240 +g27 +sa(dp272429 +g225230 +S'Venus of Cnidos, by Praxiteles' +p272430 +sg225232 +S'Artist Information (' +p272431 +sg225234 +S'(artist after)' +p272432 +sg225236 +S'\n' +p272433 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d9f.jpg' +p272434 +sg225240 +g27 +sa(dp272435 +g225230 +S'Discobulus, by Myron' +p272436 +sg225232 +S'Artist Information (' +p272437 +sg225234 +S'(artist after)' +p272438 +sg225236 +S'\n' +p272439 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d73.jpg' +p272440 +sg225240 +g27 +sa(dp272441 +g225230 +S'Statue on the Pediment over the West Front ofa Temple at Egina' +p272442 +sg225232 +S'Artist Information (' +p272443 +sg225234 +S'(artist after)' +p272444 +sg225236 +S'\n' +p272445 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cbe.jpg' +p272446 +sg225240 +g27 +sa(dp272447 +g225230 +S'Circle and Square of the Human Figure' +p272448 +sg225232 +S'Artist Information (' +p272449 +sg225234 +S'(artist after)' +p272450 +sg225236 +S'\n' +p272451 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007ce5.jpg' +p272452 +sg225240 +g27 +sa(dp272453 +g225230 +S'Extent of Motion, One Figure' +p272454 +sg225232 +S'Artist Information (' +p272455 +sg225234 +S'(artist after)' +p272456 +sg225236 +S'\n' +p272457 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d00.jpg' +p272458 +sg225240 +g27 +sa(dp272459 +g225230 +S'Extent of Motion Shown in Two Figures' +p272460 +sg225232 +S'Artist Information (' +p272461 +sg225234 +S'(artist after)' +p272462 +sg225236 +S'\n' +p272463 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d65.jpg' +p272464 +sg225240 +g27 +sa(dp272465 +g225230 +S'Extent of Motion, Front and Side View Equipoised, Supported on One Leg' +p272466 +sg225232 +S'Artist Information (' +p272467 +sg225234 +S'(artist after)' +p272468 +sg225236 +S'\n' +p272469 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d1c.jpg' +p272470 +sg225240 +g27 +sa(dp272471 +g225230 +S'Preparing to Run; Running; Striking' +p272472 +sg225232 +S'Artist Information (' +p272473 +sg225234 +S'(artist after)' +p272474 +sg225236 +S'\n' +p272475 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d0e.jpg' +p272476 +sg225240 +g27 +sa(dp272477 +g225230 +S'Bearing a Weight; Preparing to Jump, and Alighting' +p272478 +sg225232 +S'Artist Information (' +p272479 +sg225234 +S'(artist after)' +p272480 +sg225236 +S'\n' +p272481 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cd8.jpg' +p272482 +sg225240 +g27 +sa(dp272483 +g225230 +S'Leaning, Flying and Falling' +p272484 +sg225232 +S'Artist Information (' +p272485 +sg225234 +S'(artist after)' +p272486 +sg225236 +S'\n' +p272487 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c4b.jpg' +p272488 +sg225240 +g27 +sa(dp272489 +g225230 +S'Brazen Serpent, from Michael Angelo' +p272490 +sg225232 +S'Artist Information (' +p272491 +sg225234 +S'(artist after)' +p272492 +sg225236 +S'\n' +p272493 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c89.jpg' +p272494 +sg225240 +g27 +sa(dp272495 +g225230 +S'Brazen Serpent, from Michael Angelo' +p272496 +sg225232 +S'Artist Information (' +p272497 +sg225234 +S'(artist after)' +p272498 +sg225236 +S'\n' +p272499 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cb2.jpg' +p272500 +sg225240 +g27 +sa(dp272501 +g225230 +S'The Transfiguration' +p272502 +sg225232 +S'Artist Information (' +p272503 +sg225234 +S'(artist after)' +p272504 +sg225236 +S'\n' +p272505 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007ca5.jpg' +p272506 +sg225240 +g27 +sa(dp272507 +g225230 +S'Part of the Last Judgment from Michael Angelo' +p272508 +sg225232 +S'Artist Information (' +p272509 +sg225234 +S'(artist after)' +p272510 +sg225236 +S'\n' +p272511 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007da1.jpg' +p272512 +sg225240 +g27 +sa(dp272513 +g225230 +S'Holy Family, from Michelangelo' +p272514 +sg225232 +S'Artist Information (' +p272515 +sg225234 +S'(artist after)' +p272516 +sg225236 +S'\n' +p272517 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007df7.jpg' +p272518 +sg225240 +g27 +sa(dp272519 +g225230 +S'Last Judgment, Lincoln Cathedral' +p272520 +sg225232 +S'Artist Information (' +p272521 +sg225234 +S'(artist after)' +p272522 +sg225236 +S'\n' +p272523 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c5b.jpg' +p272524 +sg225240 +g27 +sa(dp272525 +g225230 +S'Figure from Peterborough Cathedral' +p272526 +sg225232 +S'Artist Information (' +p272527 +sg225234 +S'(artist after)' +p272528 +sg225236 +S'\n' +p272529 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c23.jpg' +p272530 +sg225240 +g27 +sa(dp272531 +g225230 +S'An Apostle, from Albert (sic) Durer' +p272532 +sg225232 +S'Artist Information (' +p272533 +sg225234 +S'(artist after)' +p272534 +sg225236 +S'\n' +p272535 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cf3.jpg' +p272536 +sg225240 +g27 +sa(dp272537 +g225230 +S'Drapery' +p272538 +sg225232 +S'Artist Information (' +p272539 +sg225234 +S'(artist after)' +p272540 +sg225236 +S'\n' +p272541 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007db1.jpg' +p272542 +sg225240 +g27 +sa(dp272543 +g225230 +S'Drapery, Three Figures, a Bacchante and Two From Nature' +p272544 +sg225232 +S'Artist Information (' +p272545 +sg225234 +S'(artist after)' +p272546 +sg225236 +S'\n' +p272547 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d56.jpg' +p272548 +sg225240 +g27 +sa(dp272549 +g225230 +S'Juno Lucina' +p272550 +sg225232 +S'Artist Information (' +p272551 +sg225234 +S'(artist after)' +p272552 +sg225236 +S'\n' +p272553 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dc1.jpg' +p272554 +sg225240 +g27 +sa(dp272555 +g225230 +S'Head of Our Savior, from Arringhi\'s "Roma Subterranea"' +p272556 +sg225232 +S'Artist Information (' +p272557 +sg225234 +S'(artist after)' +p272558 +sg225236 +S'\n' +p272559 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d47.jpg' +p272560 +sg225240 +g27 +sa(dp272561 +g225230 +S'Reverend John Upton' +p272562 +sg225232 +S'Artist Information (' +p272563 +sg225234 +S'British, active 18th century' +p272564 +sg225236 +S'(artist after)' +p272565 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a0007646.jpg' +p272566 +sg225240 +g27 +sa(dp272567 +g225230 +S'Portrait of a Gentleman' +p272568 +sg225232 +S'British 18th Century' +p272569 +sg225234 +S'etching and engraving on papier colle' +p272570 +sg225236 +S'probably 18th century' +p272571 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076cb.jpg' +p272572 +sg225240 +g27 +sa(dp272573 +g225230 +S'Antonio Canova' +p272574 +sg225232 +S'Artist Information (' +p272575 +sg225234 +S'British, 1755 - 1826' +p272576 +sg225236 +S'(artist after)' +p272577 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007da3.jpg' +p272578 +sg225240 +g27 +sa(dp272579 +g225230 +S'Allegorical Figure of Britannia (?) with Hercules, (Mars?), Justice and Others' +p272580 +sg225232 +S'British 19th Century' +p272581 +sg225234 +S'engraving' +p272582 +sg225236 +S'19th century' +p272583 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c6f.jpg' +p272584 +sg225240 +g27 +sa(dp272585 +g225230 +S'Holy Family? with Angels l.1: The March of the Intellect' +p272586 +sg225232 +S'British 19th Century' +p272587 +sg225234 +S'Rosenwald Collection' +p272588 +sg225236 +S'\netching and aquatint in brown on papier colle' +p272589 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c33.jpg' +p272590 +sg225240 +g27 +sa(dp272591 +g225230 +S'Holy Family? with Angels' +p272592 +sg225232 +S'British 19th Century' +p272593 +sg225234 +S'Rosenwald Collection' +p272594 +sg225236 +S'\netching and aquatint in brown' +p272595 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c20.jpg' +p272596 +sg225240 +g27 +sa(dp272597 +g225230 +S'The Last Supper' +p272598 +sg225232 +S'Artist Information (' +p272599 +sg225234 +S'Italian, 1452 - 1519' +p272600 +sg225236 +S'(artist after)' +p272601 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d07.jpg' +p272602 +sg225240 +g27 +sa(dp272603 +g225230 +S'Frontispiece for the Penny Magazine of the Society for the Diffusion of Knowledge: Vo' +p272604 +sg225232 +S'British 19th Century' +p272605 +sg225234 +S'Rosenwald Collection' +p272606 +sg225236 +S'\netching' +p272607 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007df4.jpg' +p272608 +sg225240 +g27 +sa(dp272609 +g225230 +S"Invitation? with Aerial View of Regent's Park" +p272610 +sg225232 +S'British 19th Century' +p272611 +sg225234 +S'Rosenwald Collection' +p272612 +sg225236 +S'\nlithograph' +p272613 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007ca9.jpg' +p272614 +sg225240 +g27 +sa(dp272615 +g225230 +S'Her Majesty Leaving Buckingham Palace, June 28, 1838 [left half]' +p272616 +sg225232 +S'British 19th Century' +p272617 +sg225234 +S'Rosenwald Collection' +p272618 +sg225236 +S'\netching and engraving' +p272619 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cc1.jpg' +p272620 +sg225240 +g27 +sa(dp272621 +g225230 +S'Crowning of Queen Victoria, June 28, 1838 [right half]' +p272622 +sg225232 +S'British 19th Century' +p272623 +sg225234 +S'Rosenwald Collection' +p272624 +sg225236 +S'\netching and engraving' +p272625 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cb5.jpg' +p272626 +sg225240 +g27 +sa(dp272627 +g225230 +S'Holyrood Abbey' +p272628 +sg225232 +S'British 19th Century' +p272629 +sg225234 +S'Rosenwald Collection' +p272630 +sg225236 +S'\netching' +p272631 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cdb.jpg' +p272632 +sg225240 +g27 +sa(dp272633 +g225230 +S'Peg Woffington' +p272634 +sg225232 +S'British 19th Century' +p272635 +sg225234 +S'etching in brown on papier colle' +p272636 +sg225236 +S'probably 19th century' +p272637 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cce.jpg' +p272638 +sg225240 +g27 +sa(dp272639 +g225230 +S'Portrait of a Woman' +p272640 +sg225232 +S'British 19th Century' +p272641 +sg225234 +S'Rosenwald Collection' +p272642 +sg225236 +S'\netching' +p272643 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dbe.jpg' +p272644 +sg225240 +g27 +sa(dp272645 +g225230 +S'Portrait of a Young Gentleman Surrounded by Cupids; Lord Byron?' +p272646 +sg225232 +S'British 19th Century' +p272647 +sg225234 +S'Rosenwald Collection' +p272648 +sg225236 +S'\netching with stipple' +p272649 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007ce8.jpg' +p272650 +sg225240 +g27 +sa(dp272651 +g225230 +S'Annunciation to the Shepherds' +p272652 +sg225232 +S'Netherlandish 17th Century' +p272653 +sg225234 +S'engraving' +p272654 +sg225236 +S'probably 17th century' +p272655 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d081.jpg' +p272656 +sg225240 +g27 +sa(dp272657 +g225230 +S'Henry Fuseli' +p272658 +sg225232 +S'Inigo Barlow' +p272659 +sg225234 +S', unknown date' +p272660 +sg225236 +S'\n' +p272661 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a0007642.jpg' +p272662 +sg225240 +g27 +sa(dp272663 +g225230 +S'Choir' +p272664 +sg225232 +S'Artist Information (' +p272665 +sg225234 +S'(artist after)' +p272666 +sg225236 +S'\n' +p272667 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076d4.jpg' +p272668 +sg225240 +g27 +sa(dp272669 +g225230 +S'Two Fleeing Figures' +p272670 +sg225232 +S'Artist Information (' +p272671 +sg225234 +S'(artist after)' +p272672 +sg225236 +S'\n' +p272673 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a00076cd.jpg' +p272674 +sg225240 +g27 +sa(dp272675 +g225230 +S'A Falling Giant' +p272676 +sg225232 +S'Artist Information (' +p272677 +sg225234 +S'(artist after)' +p272678 +sg225236 +S'\n' +p272679 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007df0.jpg' +p272680 +sg225240 +g27 +sa(dp272681 +g225230 +S'Thy Kingdom Come (Monument to Sir Thomas Barting)' +p272682 +sg225232 +S'Artist Information (' +p272683 +sg225234 +S'(artist after)' +p272684 +sg225236 +S'\n' +p272685 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c2e.jpg' +p272686 +sg225240 +g27 +sa(dp272687 +g225230 +S'John Augustus Tulk' +p272688 +sg225232 +S'Artist Information (' +p272689 +sg225234 +S'(artist after)' +p272690 +sg225236 +S'\n' +p272691 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d17.jpg' +p272692 +sg225240 +g27 +sa(dp272693 +g225230 +S'Leonard Euler' +p272694 +sg225232 +S'John Chapman' +p272695 +sg225234 +S'stipple engraving' +p272696 +sg225236 +S'published 1804' +p272697 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cba.jpg' +p272698 +sg225240 +g27 +sa(dp272699 +g225230 +S'Monument to William Pitt' +p272700 +sg225232 +S'Artist Information (' +p272701 +sg225234 +S'(artist after)' +p272702 +sg225236 +S'\n' +p272703 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d09.jpg' +p272704 +sg225240 +g27 +sa(dp272705 +g225230 +S'John Flaxman' +p272706 +sg225232 +S'Artist Information (' +p272707 +sg225234 +S'(artist after)' +p272708 +sg225236 +S'\n' +p272709 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c83.jpg' +p272710 +sg225240 +g27 +sa(dp272711 +g225230 +S'Robert Thornton, M.D.' +p272712 +sg225232 +S'Artist Information (' +p272713 +sg225234 +S'(artist after)' +p272714 +sg225236 +S'\n' +p272715 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c74.jpg' +p272716 +sg225240 +g27 +sa(dp272717 +g225230 +S'Robert Undy' +p272718 +sg225232 +S'Artist Information (' +p272719 +sg225234 +S'(artist after)' +p272720 +sg225236 +S'\n' +p272721 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a0007640.jpg' +p272722 +sg225240 +g27 +sa(dp272723 +g225230 +S'John Forbes Mitchell' +p272724 +sg225232 +S'Artist Information (' +p272725 +sg225234 +S'(artist after)' +p272726 +sg225236 +S'\n' +p272727 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007de8.jpg' +p272728 +sg225240 +g27 +sa(dp272729 +g225230 +S'Sir Thomas Lawrence' +p272730 +sg225232 +S'Artist Information (' +p272731 +sg225234 +S'(artist after)' +p272732 +sg225236 +S'\n' +p272733 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c64.jpg' +p272734 +sg225240 +g27 +sa(dp272735 +g225230 +S'William Gunn' +p272736 +sg225232 +S'Artist Information (' +p272737 +sg225234 +S'(artist after)' +p272738 +sg225236 +S'\n' +p272739 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007ca0.jpg' +p272740 +sg225240 +g27 +sa(dp272741 +g225230 +S'William Gunn' +p272742 +sg225232 +S'Artist Information (' +p272743 +sg225234 +S'(artist after)' +p272744 +sg225236 +S'\n' +p272745 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c92.jpg' +p272746 +sg225240 +g27 +sa(dp272747 +g225230 +S'Monument to Earl Howe' +p272748 +sg225232 +S'Artist Information (' +p272749 +sg225234 +S'(artist after)' +p272750 +sg225236 +S'\n' +p272751 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c2a.jpg' +p272752 +sg225240 +g27 +sa(dp272753 +g225230 +S'Medicina - Theologia - Lex' +p272754 +sg225232 +S'Artist Information (' +p272755 +sg225234 +S'(artist after)' +p272756 +sg225236 +S'\n' +p272757 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007db7.jpg' +p272758 +sg225240 +g27 +sa(dp272759 +g225230 +S'Medicina - Theologia - Lex' +p272760 +sg225232 +S'Artist Information (' +p272761 +sg225234 +S'(artist after)' +p272762 +sg225236 +S'\n' +p272763 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dc7.jpg' +p272764 +sg225240 +g27 +sa(dp272765 +g225230 +S'Abraham Rees' +p272766 +sg225232 +S'Artist Information (' +p272767 +sg225234 +S'(artist after)' +p272768 +sg225236 +S'\n' +p272769 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dd5.jpg' +p272770 +sg225240 +g27 +sa(dp272771 +g225230 +S'Priestley' +p272772 +sg225232 +S'Artist Information (' +p272773 +sg225234 +S'(artist after)' +p272774 +sg225236 +S'\n' +p272775 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d97.jpg' +p272776 +sg225240 +g27 +sa(dp272777 +g225230 +S'Monument to John Hudleston' +p272778 +sg225232 +S'Artist Information (' +p272779 +sg225234 +S'(artist after)' +p272780 +sg225236 +S'\n' +p272781 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d5e.jpg' +p272782 +sg225240 +g27 +sa(dp272783 +g225230 +S'William Gunn' +p272784 +sg225232 +S'Artist Information (' +p272785 +sg225234 +S'(artist after)' +p272786 +sg225236 +S'\n' +p272787 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d7b.jpg' +p272788 +sg225240 +g27 +sa(dp272789 +g225230 +S'William Gunn' +p272790 +sg225232 +S'Artist Information (' +p272791 +sg225234 +S'(artist after)' +p272792 +sg225236 +S'\n' +p272793 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d99.jpg' +p272794 +sg225240 +g27 +sa(dp272795 +g225230 +S'William Gunn' +p272796 +sg225232 +S'Artist Information (' +p272797 +sg225234 +S'(artist after)' +p272798 +sg225236 +S'\n' +p272799 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d89.jpg' +p272800 +sg225240 +g27 +sa(dp272801 +g225230 +S'Thomas Chevalier' +p272802 +sg225232 +S'John Linnell' +p272803 +sg225234 +S'etching' +p272804 +sg225236 +S'1825' +p272805 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cf9.jpg' +p272806 +sg225240 +g27 +sa(dp272807 +g225230 +S'Children with Donkey and Dog in a Clearing' +p272808 +sg225232 +S'Pierre Parrocel' +p272809 +sg225234 +S'etching' +p272810 +sg225236 +S'1825' +p272811 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089e8.jpg' +p272812 +sg225240 +g27 +sa(dp272813 +g225230 +S'Lady Charlotte Susan Maria Bury' +p272814 +sg225232 +S'W. Read' +p272815 +sg225234 +S'stipple engraving' +p272816 +sg225236 +S'published 1837' +p272817 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007caf.jpg' +p272818 +sg225240 +g27 +sa(dp272819 +g225230 +S'Elizabeth Montague' +p272820 +sg225232 +S'Artist Information (' +p272821 +sg225234 +S'(artist after)' +p272822 +sg225236 +S'\n' +p272823 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a000768c.jpg' +p272824 +sg225240 +g27 +sa(dp272825 +g225230 +S'Henry Fuseli' +p272826 +sg225232 +S'Artist Information (' +p272827 +sg225234 +S'(artist after)' +p272828 +sg225236 +S'\n' +p272829 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a000768e.jpg' +p272830 +sg225240 +g27 +sa(dp272831 +g225230 +S'Prince Hoare Esq.' +p272832 +sg225232 +S'Artist Information (' +p272833 +sg225234 +S'(artist after)' +p272834 +sg225236 +S'\n' +p272835 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a000768b.jpg' +p272836 +sg225240 +g27 +sa(dp272837 +g225230 +S'Thomas Holcroft' +p272838 +sg225232 +S'Artist Information (' +p272839 +sg225234 +S'(artist after)' +p272840 +sg225236 +S'\n' +p272841 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a000768f.jpg' +p272842 +sg225240 +g27 +sa(dp272843 +g225230 +S'William Hayley, Esq.' +p272844 +sg225232 +S'Artist Information (' +p272845 +sg225234 +S'(artist after)' +p272846 +sg225236 +S'\n' +p272847 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a000768d.jpg' +p272848 +sg225240 +g27 +sa(dp272849 +g225230 +S'Sir David Wilkie, R.A.' +p272850 +sg225232 +S'Artist Information (' +p272851 +sg225234 +S'(artist after)' +p272852 +sg225236 +S'\n' +p272853 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007ca2.jpg' +p272854 +sg225240 +g27 +sa(dp272855 +g225230 +S'La Belle Hamilton' +p272856 +sg225232 +S'Artist Information (' +p272857 +sg225234 +S'(artist after)' +p272858 +sg225236 +S'\n' +p272859 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a22.jpg' +p272860 +sg225240 +g27 +sa(dp272861 +g225230 +S'Albrecht V. Haller' +p272862 +sg225232 +S'Thomas Ryder' +p272863 +sg225234 +S'etching and engraving' +p272864 +sg225236 +S'unknown date\n' +p272865 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a0007690.jpg' +p272866 +sg225240 +g27 +sa(dp272867 +g225230 +S'Henry Blundell' +p272868 +sg225232 +S'Artist Information (' +p272869 +sg225234 +S'(artist after)' +p272870 +sg225236 +S'\n' +p272871 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a26.jpg' +p272872 +sg225240 +g27 +sa(dp272873 +g225230 +S'Rev. John Clowes' +p272874 +sg225232 +S'Artist Information (' +p272875 +sg225234 +S'(artist after)' +p272876 +sg225236 +S'\n' +p272877 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a27.jpg' +p272878 +sg225240 +g27 +sa(dp272879 +g225230 +S'A Jewish Rabbi' +p272880 +sg225232 +S'Artist Information (' +p272881 +sg225234 +S'(artist after)' +p272882 +sg225236 +S'\n' +p272883 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a21.jpg' +p272884 +sg225240 +g27 +sa(dp272885 +g225230 +S'Josiah Wedgwood' +p272886 +sg225232 +S'Artist Information (' +p272887 +sg225234 +S'(artist after)' +p272888 +sg225236 +S'\n' +p272889 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a23.jpg' +p272890 +sg225240 +g27 +sa(dp272891 +g225230 +S'Monument to William Shakespeare' +p272892 +sg225232 +S'Artist Information (' +p272893 +sg225234 +S'(artist after)' +p272894 +sg225236 +S'\n' +p272895 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a0007814.jpg' +p272896 +sg225240 +g27 +sa(dp272897 +g225230 +S'Abraham Rees, D.D.' +p272898 +sg225232 +S'Artist Information (' +p272899 +sg225234 +S'(artist after)' +p272900 +sg225236 +S'\n' +p272901 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d16.jpg' +p272902 +sg225240 +g27 +sa(dp272903 +g225230 +S'Antonio Canova' +p272904 +sg225232 +S'Artist Information (' +p272905 +sg225234 +S'(artist after)' +p272906 +sg225236 +S'\n' +p272907 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c73.jpg' +p272908 +sg225240 +g27 +sa(dp272909 +g225230 +S'Bust of Sir Walter Scott' +p272910 +sg225232 +S'Artist Information (' +p272911 +sg225234 +S'(artist after)' +p272912 +sg225236 +S'\n' +p272913 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c63.jpg' +p272914 +sg225240 +g27 +sa(dp272915 +g225230 +S'John Brown, M.D.' +p272916 +sg225232 +S'Artist Information (' +p272917 +sg225234 +S'(artist after)' +p272918 +sg225236 +S'\n' +p272919 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d08.jpg' +p272920 +sg225240 +g27 +sa(dp272921 +g225230 +S'John Flaxman' +p272922 +sg225232 +S'Artist Information (' +p272923 +sg225234 +S'(artist after)' +p272924 +sg225236 +S'\n' +p272925 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c82.jpg' +p272926 +sg225240 +g27 +sa(dp272927 +g225230 +S'Edinburgh, from Craigleith' +p272928 +sg225232 +S'Artist Information (' +p272929 +sg225234 +S'(artist after)' +p272930 +sg225236 +S'\n' +p272931 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007ced.jpg' +p272932 +sg225240 +g27 +sa(dp272933 +g225230 +S'Rev. Reginald Heber, D.D.' +p272934 +sg225232 +S'Artist Information (' +p272935 +sg225234 +S'(artist after)' +p272936 +sg225236 +S'\n' +p272937 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c9f.jpg' +p272938 +sg225240 +g27 +sa(dp272939 +g225232 +S'American 19th Century' +p272940 +sg225240 +g27 +sg225234 +S'Rosenwald Collection' +p272941 +sg225230 +S'U.S. Treasury Department Specimens ...' +p272942 +sg225236 +S'\n1 vol: ill: 93 engravings plus title page' +p272943 +sa(dp272944 +g225232 +S'Artist Information (' +p272945 +sg225240 +g27 +sg225234 +S'British, 1815 - 1885' +p272946 +sg225230 +S'Lithography in Colours: A Series of Progress Prints' +p272947 +sg225236 +S'(artist after)' +p272948 +sa(dp272949 +g225232 +S'Artist Information (' +p272950 +sg225240 +g27 +sg225234 +S'(artist after)' +p272951 +sg225230 +S'Saint Anthony' +p272952 +sg225236 +S'\n' +p272953 +sa(dp272954 +g225232 +S'Artist Information (' +p272955 +sg225240 +g27 +sg225234 +S'(artist after)' +p272956 +sg225230 +S'Album of a Series of Saints' +p272957 +sg225236 +S'\n' +p272958 +sa(dp272959 +g225232 +S'Pieter de Bailliu' +p272960 +sg225240 +g27 +sg225234 +S'engraving' +p272961 +sg225230 +S'Saint Augustine' +p272962 +sg225236 +S'unknown date\n' +p272963 +sa(dp272964 +g225232 +S'Pieter de Bailliu' +p272965 +sg225240 +g27 +sg225234 +S'engraving' +p272966 +sg225230 +S'Saint Gregory' +p272967 +sg225236 +S'unknown date\n' +p272968 +sa(dp272969 +g225232 +S'Artist Information (' +p272970 +sg225240 +g27 +sg225234 +S'(artist after)' +p272971 +sg225230 +S'Saint Mary Magdalene' +p272972 +sg225236 +S'\n' +p272973 +sa(dp272974 +g225232 +S'Artist Information (' +p272975 +sg225240 +g27 +sg225234 +S'(artist after)' +p272976 +sg225230 +S'Saint Veronica with the Vernicle' +p272977 +sg225236 +S'\n' +p272978 +sa(dp272979 +g225232 +S'Pieter de Bailliu' +p272980 +sg225240 +g27 +sg225234 +S'engraving' +p272981 +sg225230 +S'Saint Agatha' +p272982 +sg225236 +S'unknown date\n' +p272983 +sa(dp272984 +g225232 +S'Artist Information (' +p272985 +sg225240 +g27 +sg225234 +S'(artist after)' +p272986 +sg225230 +S'Saint Elizabeth' +p272987 +sg225236 +S'\n' +p272988 +sa(dp272989 +g225232 +S'Pieter de Bailliu' +p272990 +sg225240 +g27 +sg225234 +S'engraving' +p272991 +sg225230 +S'Saint Barbara' +p272992 +sg225236 +S'unknown date\n' +p272993 +sa(dp272994 +g225232 +S'Michael Bryan' +p272995 +sg225240 +g27 +sg225234 +S', published 1858' +p272996 +sg225230 +S'A Biographical and Critical Dictionary of Painters and Engravers (volume I)' +p272997 +sg225236 +S'\n' +p272998 +sa(dp272999 +g225232 +S'Michael Bryan' +p273000 +sg225240 +g27 +sg225234 +S', published 1858' +p273001 +sg225230 +S'A Biographical and Critical Dictionary of Painters and Engravers (volume II)' +p273002 +sg225236 +S'\n' +p273003 +sa(dp273004 +g225232 +S'Michael Bryan' +p273005 +sg225240 +g27 +sg225234 +S', published 1858' +p273006 +sg225230 +S'A Biographical and Critical Dictionary of Painters and Engravers (volume III)' +p273007 +sg225236 +S'\n' +p273008 +sa(dp273009 +g225232 +S'Michael Bryan' +p273010 +sg225240 +g27 +sg225234 +S', published 1858' +p273011 +sg225230 +S'A Biographical and Critical Dictionary of Painters and Engravers (volume IV)' +p273012 +sg225236 +S'\n' +p273013 +sa(dp273014 +g225232 +S'Michael Bryan' +p273015 +sg225240 +g27 +sg225234 +S', published 1858' +p273016 +sg225230 +S'A Biographical and Critical Dictionary of Painters and Engravers (volume V)' +p273017 +sg225236 +S'\n' +p273018 +sa(dp273019 +g225232 +S'Henry Ottley' +p273020 +sg225240 +g27 +sg225234 +S', published 1866' +p273021 +sg225230 +S'A Biographical and Critical Dictionary of Painters ... Supplement to Bryan (volume 1)' +p273022 +sg225236 +S'\n' +p273023 +sa(dp273024 +g225232 +S'Henry Ottley' +p273025 +sg225240 +g27 +sg225234 +S', published 1866' +p273026 +sg225230 +S'A Biographical and Critical Dictionary of Painters ... Supplement to Bryan (volume 2)' +p273027 +sg225236 +S'\n' +p273028 +sa(dp273029 +g225232 +S'Artist Information (' +p273030 +sg225240 +g27 +sg225234 +S'(artist after)' +p273031 +sg225230 +S'De droeve Ellendigheden van den Oorloogh' +p273032 +sg225236 +S'\n' +p273033 +sa(dp273034 +g225232 +S'Artist Information (' +p273035 +sg225240 +g27 +sg225234 +S'(artist after)' +p273036 +sg225230 +S'A Collection of Etchings after ... Masters of the Dutch and Flemish Schools (vol.1)' +p273037 +sg225236 +S'\n' +p273038 +sa(dp273039 +g225232 +S'Artist Information (' +p273040 +sg225240 +g27 +sg225234 +S'(artist after)' +p273041 +sg225230 +S'A Collection of Etchings after ... Masters of the Dutch and Flemish Schools (vol.2)' +p273042 +sg225236 +S'\n' +p273043 +sa(dp273044 +g225232 +S'Artist Information (' +p273045 +sg225240 +g27 +sg225234 +S'(artist after)' +p273046 +sg225230 +S'A Collection of Etchings after ... Masters of the Dutch and Flemish Schools (vol.3)' +p273047 +sg225236 +S'\n' +p273048 +sa(dp273049 +g225232 +S'Artist Information (' +p273050 +sg225240 +g27 +sg225234 +S'(artist after)' +p273051 +sg225230 +S'Saint Peter' +p273052 +sg225236 +S'\n' +p273053 +sa(dp273054 +g225232 +S'Artist Information (' +p273055 +sg225240 +g27 +sg225234 +S'(artist after)' +p273056 +sg225230 +S'The Apostles and Saint Paul' +p273057 +sg225236 +S'\n' +p273058 +sa(dp273059 +g225232 +S'Artist Information (' +p273060 +sg225240 +g27 +sg225234 +S'(artist after)' +p273061 +sg225230 +S'Saint Andrew' +p273062 +sg225236 +S'\n' +p273063 +sa(dp273064 +g225232 +S'Artist Information (' +p273065 +sg225240 +g27 +sg225234 +S'(artist after)' +p273066 +sg225230 +S'Saint James Major' +p273067 +sg225236 +S'\n' +p273068 +sa(dp273069 +g225232 +S'Artist Information (' +p273070 +sg225240 +g27 +sg225234 +S'(artist after)' +p273071 +sg225230 +S'Saint John, Evangelist' +p273072 +sg225236 +S'\n' +p273073 +sa(dp273074 +g225232 +S'Artist Information (' +p273075 +sg225240 +g27 +sg225234 +S'(artist after)' +p273076 +sg225230 +S'Saint Philip' +p273077 +sg225236 +S'\n' +p273078 +sa(dp273079 +g225232 +S'Artist Information (' +p273080 +sg225240 +g27 +sg225234 +S'(artist after)' +p273081 +sg225230 +S'Saint Bartholomew' +p273082 +sg225236 +S'\n' +p273083 +sa(dp273084 +g225232 +S'Artist Information (' +p273085 +sg225240 +g27 +sg225234 +S'(artist after)' +p273086 +sg225230 +S'Saint Thomas' +p273087 +sg225236 +S'\n' +p273088 +sa(dp273089 +g225232 +S'Artist Information (' +p273090 +sg225240 +g27 +sg225234 +S'(artist after)' +p273091 +sg225230 +S'Saint Matthew' +p273092 +sg225236 +S'\n' +p273093 +sa(dp273094 +g225232 +S'Artist Information (' +p273095 +sg225240 +g27 +sg225234 +S'(artist after)' +p273096 +sg225230 +S'Saint James Minor' +p273097 +sg225236 +S'\n' +p273098 +sa(dp273099 +g225232 +S'Artist Information (' +p273100 +sg225240 +g27 +sg225234 +S'(artist after)' +p273101 +sg225230 +S'Saint Simon' +p273102 +sg225236 +S'\n' +p273103 +sa(dp273104 +g225232 +S'Artist Information (' +p273105 +sg225240 +g27 +sg225234 +S'(artist after)' +p273106 +sg225230 +S'Saint Judas Thaddaeus' +p273107 +sg225236 +S'\n' +p273108 +sa(dp273109 +g225232 +S'Artist Information (' +p273110 +sg225240 +g27 +sg225234 +S'(artist after)' +p273111 +sg225230 +S'Saint Matthias' +p273112 +sg225236 +S'\n' +p273113 +sa(dp273114 +g225232 +S'Artist Information (' +p273115 +sg225240 +g27 +sg225234 +S'(artist after)' +p273116 +sg225230 +S'Saint Paul' +p273117 +sg225236 +S'\n' +p273118 +sa(dp273119 +g225232 +S'Artist Information (' +p273120 +sg225240 +g27 +sg225234 +S'British, 1583 - probably 1650' +p273121 +sg225230 +S'Baziliologia: A Booke of Kings ... (volume I)' +p273122 +sg225236 +S'(editor)' +p273123 +sa(dp273124 +g225232 +S'Artist Information (' +p273125 +sg225240 +g27 +sg225234 +S'British, 1583 - probably 1650' +p273126 +sg225230 +S'Baziliologia: A Booke of Kings ... (volume II)' +p273127 +sg225236 +S'(editor)' +p273128 +sa(dp273129 +g225232 +S'Artist Information (' +p273130 +sg225240 +g27 +sg225234 +S'British, 1583 - probably 1650' +p273131 +sg225230 +S'Baziliologia: A Booke of Kings ... (volume III)' +p273132 +sg225236 +S'(editor)' +p273133 +sa(dp273134 +g225232 +S'Hendrick Goltzius' +p273135 +sg225240 +g27 +sg225234 +S', 1596' +p273136 +sg225230 +S'Piet\xc3\xa0' +p273137 +sg225236 +S'\n' +p273138 +sa(dp273139 +g225232 +S'Artist Information (' +p273140 +sg225240 +g27 +sg225234 +S'Dutch, 1558 - 1617' +p273141 +sg225230 +S'Album of Engravings by or after Hendrick Goltzius' +p273142 +sg225236 +S'(artist)' +p273143 +sa(dp273144 +g225232 +S'Artist Information (' +p273145 +sg225240 +g27 +sg225234 +S'Dutch, 1558 - 1617' +p273146 +sg225230 +S'Piet\xc3\xa0' +p273147 +sg225236 +S'(artist after)' +p273148 +sa(dp273149 +g225232 +S'Artist Information (' +p273150 +sg225240 +g27 +sg225234 +S'Dutch, 1558 - 1617' +p273151 +sg225230 +S'Piet\xc3\xa0' +p273152 +sg225236 +S'(artist after)' +p273153 +sa(dp273154 +g225232 +S'Artist Information (' +p273155 +sg225240 +g27 +sg225234 +S'Dutch, 1558 - 1617' +p273156 +sg225230 +S'Piet\xc3\xa0' +p273157 +sg225236 +S'(artist after)' +p273158 +sa(dp273159 +g225232 +S'Hendrick Goltzius' +p273160 +sg225240 +g27 +sg225234 +S', c. 1585/1586' +p273161 +sg225230 +S'The Adoration of the Magi' +p273162 +sg225236 +S'\n' +p273163 +sa(dp273164 +g225232 +S'Hendrick Goltzius' +p273165 +sg225240 +g27 +sg225234 +S', 1583' +p273166 +sg225230 +S'Andromeda' +p273167 +sg225236 +S'\n' +p273168 +sa(dp273169 +g225232 +S'Artist Information (' +p273170 +sg225240 +g27 +sg225234 +S'(artist after)' +p273171 +sg225230 +S'Ascension of the Holy Spirit' +p273172 +sg225236 +S'\n' +p273173 +sa(dp273174 +g225232 +S'Artist Information (' +p273175 +sg225240 +g27 +sg225234 +S'(artist after)' +p273176 +sg225230 +S'The Descent into Hell' +p273177 +sg225236 +S'\n' +p273178 +sa(dp273179 +g225232 +S'Artist Information (' +p273180 +sg225240 +g27 +sg225234 +S'(artist after)' +p273181 +sg225230 +S'Saturn' +p273182 +sg225236 +S'\n' +p273183 +sa(dp273184 +g225232 +S'Artist Information (' +p273185 +sg225240 +g27 +sg225234 +S'(artist after)' +p273186 +sg225230 +S'Jupiter' +p273187 +sg225236 +S'\n' +p273188 +sa(dp273189 +g225232 +S'Artist Information (' +p273190 +sg225240 +g27 +sg225234 +S'(artist after)' +p273191 +sg225230 +S'Mars' +p273192 +sg225236 +S'\n' +p273193 +sa(dp273194 +g225232 +S'Artist Information (' +p273195 +sg225240 +g27 +sg225234 +S'(artist after)' +p273196 +sg225230 +S'Sun' +p273197 +sg225236 +S'\n' +p273198 +sa(dp273199 +g225232 +S'Artist Information (' +p273200 +sg225240 +g27 +sg225234 +S'(artist after)' +p273201 +sg225230 +S'Venus' +p273202 +sg225236 +S'\n' +p273203 +sa(dp273204 +g225232 +S'Artist Information (' +p273205 +sg225240 +g27 +sg225234 +S'(artist after)' +p273206 +sg225230 +S'Mercury' +p273207 +sg225236 +S'\n' +p273208 +sa(dp273209 +g225232 +S'Artist Information (' +p273210 +sg225240 +g27 +sg225234 +S'Dutch, 1558 - 1617' +p273211 +sg225230 +S'The Last Supper' +p273212 +sg225236 +S'(artist after)' +p273213 +sa(dp273214 +g225232 +S'Artist Information (' +p273215 +sg225240 +g27 +sg225234 +S'Dutch, 1558 - 1617' +p273216 +sg225230 +S'Christ on the Mount of Olives' +p273217 +sg225236 +S'(artist after)' +p273218 +sa(dp273219 +g225232 +S'Artist Information (' +p273220 +sg225240 +g27 +sg225234 +S'Dutch, 1558 - 1617' +p273221 +sg225230 +S'Christ Taken Captive' +p273222 +sg225236 +S'(artist after)' +p273223 +sa(dp273224 +g225232 +S'Artist Information (' +p273225 +sg225240 +g27 +sg225234 +S'Dutch, 1558 - 1617' +p273226 +sg225230 +S'Christ before Caiphas' +p273227 +sg225236 +S'(artist after)' +p273228 +sa(dp273229 +g225232 +S'Artist Information (' +p273230 +sg225240 +g27 +sg225234 +S'Dutch, 1558 - 1617' +p273231 +sg225230 +S'Christ before Pilate' +p273232 +sg225236 +S'(artist after)' +p273233 +sa(dp273234 +g225232 +S'Artist Information (' +p273235 +sg225240 +g27 +sg225234 +S'Dutch, 1558 - 1617' +p273236 +sg225230 +S'Flagellation of Christ' +p273237 +sg225236 +S'(artist after)' +p273238 +sa(dp273239 +g225232 +S'Artist Information (' +p273240 +sg225240 +g27 +sg225234 +S'Dutch, 1558 - 1617' +p273241 +sg225230 +S'Christ Crowned with Thorns' +p273242 +sg225236 +S'(artist after)' +p273243 +sa(dp273244 +g225232 +S'Artist Information (' +p273245 +sg225240 +g27 +sg225234 +S'Dutch, 1558 - 1617' +p273246 +sg225230 +S'Ecce Homo' +p273247 +sg225236 +S'(artist after)' +p273248 +sa(dp273249 +g225232 +S'Artist Information (' +p273250 +sg225240 +g27 +sg225234 +S'Dutch, 1558 - 1617' +p273251 +sg225230 +S'Christ Carrying the Cross' +p273252 +sg225236 +S'(artist after)' +p273253 +sa(dp273254 +g225232 +S'Artist Information (' +p273255 +sg225240 +g27 +sg225234 +S'Dutch, 1558 - 1617' +p273256 +sg225230 +S'The Crucifixion' +p273257 +sg225236 +S'(artist after)' +p273258 +sa(dp273259 +g225232 +S'Artist Information (' +p273260 +sg225240 +g27 +sg225234 +S'Dutch, 1558 - 1617' +p273261 +sg225230 +S'Burial of Christ' +p273262 +sg225236 +S'(artist after)' +p273263 +sa(dp273264 +g225232 +S'Artist Information (' +p273265 +sg225240 +g27 +sg225234 +S'Dutch, 1558 - 1617' +p273266 +sg225230 +S'The Resurrection' +p273267 +sg225236 +S'(artist after)' +p273268 +sa(dp273269 +g225232 +S'Artist Information (' +p273270 +sg225240 +g27 +sg225234 +S'Dutch, 1558 - 1617' +p273271 +sg225230 +S'The Resurrection' +p273272 +sg225236 +S'(artist after)' +p273273 +sa(dp273274 +g225232 +S'Hendrick Goltzius' +p273275 +sg225240 +g27 +sg225234 +S', unknown date' +p273276 +sg225230 +S'The Standard-Bearer Standing, Facing Left' +p273277 +sg225236 +S'\n' +p273278 +sa(dp273279 +g225232 +S'Artist Information (' +p273280 +sg225240 +g27 +sg225234 +S'Dutch, 1558 - 1617' +p273281 +sg225230 +S'Autumn' +p273282 +sg225236 +S'(artist after)' +p273283 +sa(dp273284 +g225232 +S'Artist Information (' +p273285 +sg225240 +g27 +sg225234 +S'Dutch, 1558 - 1617' +p273286 +sg225230 +S'Spring' +p273287 +sg225236 +S'(artist after)' +p273288 +sa(dp273289 +g225232 +S'Artist Information (' +p273290 +sg225240 +g27 +sg225234 +S'Dutch, 1558 - 1617' +p273291 +sg225230 +S'Summer' +p273292 +sg225236 +S'(artist after)' +p273293 +sa(dp273294 +g225232 +S'Artist Information (' +p273295 +sg225240 +g27 +sg225234 +S'(artist after)' +p273296 +sg225230 +S'Soldier with Arquebus' +p273297 +sg225236 +S'\n' +p273298 +sa(dp273299 +g225232 +S'Hendrick Goltzius' +p273300 +sg225240 +g27 +sg225234 +S', 1592' +p273301 +sg225230 +S'Euterpe' +p273302 +sg225236 +S'\n' +p273303 +sa(dp273304 +g225232 +S'Hendrick Goltzius' +p273305 +sg225240 +g27 +sg225234 +S', 1589' +p273306 +sg225230 +S'The Holy Family under the Cherry Tree' +p273307 +sg225236 +S'\n' +p273308 +sa(dp273309 +g225232 +S'Hendrick Goltzius' +p273310 +sg225240 +g27 +sg225234 +S', unknown date' +p273311 +sg225230 +S'Bacchus' +p273312 +sg225236 +S'\n' +p273313 +sa(dp273314 +g225232 +S'Philip Gilbert Hamerton' +p273315 +sg225240 +g27 +sg225234 +S', published 1894' +p273316 +sg225230 +S'The Art of the American Wood-Engraver (volume I)' +p273317 +sg225236 +S'\n' +p273318 +sa(dp273319 +g225232 +S'Artist Information (' +p273320 +sg225240 +g27 +sg225234 +S'British, 1834 - 1894' +p273321 +sg225230 +S'The Art of the American Wood-Engraver (volume II)' +p273322 +sg225236 +S'(author)' +p273323 +sa(dp273324 +g225232 +S'Artist Information (' +p273325 +sg225240 +g27 +sg225234 +S'(artist after)' +p273326 +sg225230 +S'The Crowd at Park Street Church, Boston' +p273327 +sg225236 +S'\n' +p273328 +sa(dp273329 +g225232 +S'Henry W. Peckwell' +p273330 +sg225240 +g27 +sg225234 +S'wood engraving on chine colle' +p273331 +sg225230 +S'Madonna and Child Jesus' +p273332 +sg225236 +S'published 1894' +p273333 +sa(dp273334 +g225232 +S'Artist Information (' +p273335 +sg225240 +g27 +sg225234 +S'(artist after)' +p273336 +sg225230 +S'The Musmee' +p273337 +sg225236 +S'\n' +p273338 +sa(dp273339 +g225232 +S'Artist Information (' +p273340 +sg225240 +g27 +sg225234 +S'(artist after)' +p273341 +sg225230 +S'The Stream Effect' +p273342 +sg225236 +S'\n' +p273343 +sa(dp273344 +g225232 +S'Elbridge Kingsley' +p273345 +sg225240 +g27 +sg225234 +S'wood engraving on chine colle' +p273346 +sg225230 +S'A Quiet Spot' +p273347 +sg225236 +S'published 1894' +p273348 +sa(dp273349 +g225232 +S'Artist Information (' +p273350 +sg225240 +g27 +sg225234 +S'(artist after)' +p273351 +sg225230 +S"Buddha's Flowers" +p273352 +sg225236 +S'\n' +p273353 +sa(dp273354 +g225232 +S'William Baxter Palmer Closson' +p273355 +sg225240 +g27 +sg225234 +S'wood engraving on chine colle' +p273356 +sg225230 +S'The Heart of the Woods' +p273357 +sg225236 +S'published 1894' +p273358 +sa(dp273359 +g225232 +S'Artist Information (' +p273360 +sg225240 +g27 +sg225234 +S'(artist after)' +p273361 +sg225230 +S'Entrance to the Mammoth Cave' +p273362 +sg225236 +S'\n' +p273363 +sa(dp273364 +g225232 +S'George T. Andrew' +p273365 +sg225240 +g27 +sg225234 +S'wood engraving on chine colle' +p273366 +sg225230 +S'Morning in Venice' +p273367 +sg225236 +S'published 1894' +p273368 +sa(dp273369 +g225232 +S'Artist Information (' +p273370 +sg225240 +g27 +sg225234 +S'(artist after)' +p273371 +sg225230 +S'La vierge de la delivrance' +p273372 +sg225236 +S'\n' +p273373 +sa(dp273374 +g225232 +S'Artist Information (' +p273375 +sg225240 +g27 +sg225234 +S'(artist after)' +p273376 +sg225230 +S'"A Moment Later There Was a Great Hammering at the Door"' +p273377 +sg225236 +S'\n' +p273378 +sa(dp273379 +g225232 +S'Artist Information (' +p273380 +sg225240 +g27 +sg225234 +S'(artist after)' +p273381 +sg225230 +S'Near the Foot of Mt. Whiteface' +p273382 +sg225236 +S'\n' +p273383 +sa(dp273384 +g225232 +S'Artist Information (' +p273385 +sg225240 +g27 +sg225234 +S'(artist after)' +p273386 +sg225230 +S'The Cedars' +p273387 +sg225236 +S'\n' +p273388 +sa(dp273389 +g225232 +S'Artist Information (' +p273390 +sg225240 +g27 +sg225234 +S'(artist after)' +p273391 +sg225230 +S"The Lovers' Quarrel" +p273392 +sg225236 +S'\n' +p273393 +sa(dp273394 +g225232 +S'Artist Information (' +p273395 +sg225240 +g27 +sg225234 +S'(artist after)' +p273396 +sg225230 +S'London from the Thames' +p273397 +sg225236 +S'\n' +p273398 +sa(dp273399 +g225232 +S'Artist Information (' +p273400 +sg225240 +g27 +sg225234 +S'(artist after)' +p273401 +sg225230 +S'A Corner of Lake Placid' +p273402 +sg225236 +S'\n' +p273403 +sa(dp273404 +g225232 +S'Artist Information (' +p273405 +sg225240 +g27 +sg225234 +S'(artist after)' +p273406 +sg225230 +S'The Backgammon Players' +p273407 +sg225236 +S'\n' +p273408 +sa(dp273409 +g225232 +S'Artist Information (' +p273410 +sg225240 +g27 +sg225234 +S'(artist after)' +p273411 +sg225230 +S'In Cairo Street' +p273412 +sg225236 +S'\n' +p273413 +sa(dp273414 +g225232 +S'Artist Information (' +p273415 +sg225240 +g27 +sg225234 +S'(artist after)' +p273416 +sg225230 +S'The Golden Stairs' +p273417 +sg225236 +S'\n' +p273418 +sa(dp273419 +g225232 +S'Artist Information (' +p273420 +sg225240 +g27 +sg225234 +S'(artist after)' +p273421 +sg225230 +S'"I Have Followed the Currents Under the Branches"' +p273422 +sg225236 +S'\n' +p273423 +sa(dp273424 +g225232 +S'Artist Information (' +p273425 +sg225240 +g27 +sg225234 +S'(artist after)' +p273426 +sg225230 +S'The Annunciation' +p273427 +sg225236 +S'\n' +p273428 +sa(dp273429 +g225232 +S'Artist Information (' +p273430 +sg225240 +g27 +sg225234 +S'(artist after)' +p273431 +sg225230 +S'The Fifer' +p273432 +sg225236 +S'\n' +p273433 +sa(dp273434 +g225232 +S'Artist Information (' +p273435 +sg225240 +g27 +sg225234 +S'(artist after)' +p273436 +sg225230 +S'The God-Head Fires' +p273437 +sg225236 +S'\n' +p273438 +sa(dp273439 +g225232 +S'Artist Information (' +p273440 +sg225240 +g27 +sg225234 +S'(artist after)' +p273441 +sg225230 +S'The Centaur' +p273442 +sg225236 +S'\n' +p273443 +sa(dp273444 +g225232 +S'Artist Information (' +p273445 +sg225240 +g27 +sg225234 +S'(artist after)' +p273446 +sg225230 +S'Yellow Marguerites' +p273447 +sg225236 +S'\n' +p273448 +sa(dp273449 +g225232 +S'Artist Information (' +p273450 +sg225240 +g27 +sg225234 +S'(artist after)' +p273451 +sg225230 +S'The Death of Braddock' +p273452 +sg225236 +S'\n' +p273453 +sa(dp273454 +g225232 +S'Artist Information (' +p273455 +sg225240 +g27 +sg225234 +S'(artist after)' +p273456 +sg225230 +S'Roseleaves' +p273457 +sg225236 +S'\n' +p273458 +sa(dp273459 +g225232 +S'Artist Information (' +p273460 +sg225240 +g27 +sg225234 +S'(artist after)' +p273461 +sg225230 +S'Twelve Little Brides of Heaven' +p273462 +sg225236 +S'\n' +p273463 +sa(dp273464 +g225232 +S'Artist Information (' +p273465 +sg225240 +g27 +sg225234 +S'(artist after)' +p273466 +sg225230 +S'Waiting to Cross' +p273467 +sg225236 +S'\n' +p273468 +sa(dp273469 +g225232 +S'Artist Information (' +p273470 +sg225240 +g27 +sg225234 +S'(artist after)' +p273471 +sg225230 +S'A Pastoral Without Words - I' +p273472 +sg225236 +S'\n' +p273473 +sa(dp273474 +g225232 +S'Artist Information (' +p273475 +sg225240 +g27 +sg225234 +S'(artist after)' +p273476 +sg225230 +S'A Pastoral Without Words - II' +p273477 +sg225236 +S'\n' +p273478 +sa(dp273479 +g225232 +S'Artist Information (' +p273480 +sg225240 +g27 +sg225234 +S'(artist after)' +p273481 +sg225230 +S'A Pastoral Without Words - III' +p273482 +sg225236 +S'\n' +p273483 +sa(dp273484 +g225232 +S'Artist Information (' +p273485 +sg225240 +g27 +sg225234 +S'(artist after)' +p273486 +sg225230 +S'A Pastoral Without Words - IV' +p273487 +sg225236 +S'\n' +p273488 +sa(dp273489 +g225232 +S'Artist Information (' +p273490 +sg225240 +g27 +sg225234 +S'(artist after)' +p273491 +sg225230 +S'A Pastoral Without Words - V' +p273492 +sg225236 +S'\n' +p273493 +sa(dp273494 +g225232 +S'Artist Information (' +p273495 +sg225240 +g27 +sg225234 +S'(artist after)' +p273496 +sg225230 +S'A Pastoral Without Words - VI' +p273497 +sg225236 +S'\n' +p273498 +sa(dp273499 +g225232 +S'Artist Information (' +p273500 +sg225240 +g27 +sg225234 +S'(artist after)' +p273501 +sg225230 +S'Thackeray' +p273502 +sg225236 +S'\n' +p273503 +sa(dp273504 +g225232 +S'Gustav Kruell' +p273505 +sg225240 +g27 +sg225234 +S'wood engraving on chine colle' +p273506 +sg225230 +S'Tennyson' +p273507 +sg225236 +S'published 1894' +p273508 +sa(dp273509 +g225232 +S'George T. Andrew' +p273510 +sg225240 +g27 +sg225234 +S'wood engraving on chine colle' +p273511 +sg225230 +S'John Henry, Cardinal Newman' +p273512 +sg225236 +S'published 1894' +p273513 +sa(dp273514 +g225232 +S'Artist Information (' +p273515 +sg225240 +g27 +sg225234 +S'(artist after)' +p273516 +sg225230 +S'Sir E. Burne-Jones' +p273517 +sg225236 +S'\n' +p273518 +sa(dp273519 +g225232 +S'Artist Information (' +p273520 +sg225240 +g27 +sg225234 +S'(artist after)' +p273521 +sg225230 +S'Jean-Francois Millet' +p273522 +sg225236 +S'\n' +p273523 +sa(dp273524 +g225232 +S'George Harley' +p273525 +sg225240 +g27 +sg225234 +S'1 vol: ill: 7 lithographs including title page' +p273526 +sg225230 +S'Six Essays in Lithography' +p273527 +sg225236 +S'published 1820' +p273528 +sa(dp273529 +g225232 +S'Artist Information (' +p273530 +sg225240 +g27 +sg225234 +S'Italian, 1503 - 1540' +p273531 +sg225230 +S'Prints After Parmigianino' +p273532 +sg225236 +S'(artist after)' +p273533 +sa(dp273534 +g225232 +S'British 17th Century' +p273535 +sg225240 +g27 +sg225234 +S'Rosenwald Collection' +p273536 +sg225230 +S'Portraits from Josiah Ricraft\'s "Survey of England\'s Champions" ?' +p273537 +sg225236 +S"\n1 vol: ill: 19 engravings, possibly from J. Ricraft's 1647 text" +p273538 +sa(dp273539 +g225232 +S'Artist Information (' +p273540 +sg225240 +g27 +sg225234 +S'(artist after)' +p273541 +sg225230 +S'Title Page' +p273542 +sg225236 +S'\n' +p273543 +sa(dp273544 +g225232 +S'Artist Information (' +p273545 +sg225240 +g27 +sg225234 +S'(artist after)' +p273546 +sg225230 +S'Planetarum Effectus et Eorum in Signis Zodiaci' +p273547 +sg225236 +S'\n' +p273548 +sa(dp273549 +g225232 +S'Artist Information (' +p273550 +sg225240 +g27 +sg225234 +S'(artist after)' +p273551 +sg225230 +S'Luna (The Moon)' +p273552 +sg225236 +S'\n' +p273553 +sa(dp273554 +g225232 +S'Artist Information (' +p273555 +sg225240 +g27 +sg225234 +S'(artist after)' +p273556 +sg225230 +S'Mercurius (Mercury)' +p273557 +sg225236 +S'\n' +p273558 +sa(dp273559 +g225232 +S'Artist Information (' +p273560 +sg225240 +g27 +sg225234 +S'(artist after)' +p273561 +sg225230 +S'Venus' +p273562 +sg225236 +S'\n' +p273563 +sa(dp273564 +g225232 +S'Artist Information (' +p273565 +sg225240 +g27 +sg225234 +S'(artist after)' +p273566 +sg225230 +S'Mars' +p273567 +sg225236 +S'\n' +p273568 +sa(dp273569 +g225232 +S'Artist Information (' +p273570 +sg225240 +g27 +sg225234 +S'(artist after)' +p273571 +sg225230 +S'Saturnus (Saturn)' +p273572 +sg225236 +S'\n' +p273573 +sa(dp273574 +g225232 +S'Various Artists' +p273575 +sg225240 +g27 +sg225234 +S'Rosenwald Collection' +p273576 +sg225230 +S'Album of Woodcuts' +p273577 +sg225236 +S'\n1 vol: ill: 183 woodcuts' +p273578 +sa(dp273579 +g225232 +S'Various Artists' +p273580 +sg225240 +g27 +sg225234 +S'Rosenwald Collection' +p273581 +sg225230 +S'Album of Prints from the Immian Collection' +p273582 +sg225236 +S'\n1 vol: ill: 67 prints by various artists from various countries' +p273583 +sa(dp273584 +g225230 +S'Saturn' +p273585 +sg225232 +S'Sebald Beham' +p273586 +sg225234 +S'engraving' +p273587 +sg225236 +S'unknown date\n' +p273588 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a848.jpg' +p273589 +sg225240 +g27 +sa(dp273590 +g225230 +S'Jupiter' +p273591 +sg225232 +S'Sebald Beham' +p273592 +sg225234 +S'engraving' +p273593 +sg225236 +S'unknown date\n' +p273594 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a847.jpg' +p273595 +sg225240 +g27 +sa(dp273596 +g225230 +S'Mercury' +p273597 +sg225232 +S'Sebald Beham' +p273598 +sg225234 +S'engraving' +p273599 +sg225236 +S'unknown date\n' +p273600 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a84b.jpg' +p273601 +sg225240 +g27 +sa(dp273602 +g225230 +S'Vomiting Peasant' +p273603 +sg225232 +S'Sebald Beham' +p273604 +sg225234 +S'engraving' +p273605 +sg225236 +S'unknown date\n' +p273606 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a880.jpg' +p273607 +sg225240 +g27 +sa(dp273608 +g225230 +S'Three Soldiers and a Dog' +p273609 +sg225232 +S'Sebald Beham' +p273610 +sg225234 +S'engraving' +p273611 +sg225236 +S'unknown date\n' +p273612 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a869.jpg' +p273613 +sg225240 +g27 +sa(dp273614 +g225230 +S'Madonna with Skull' +p273615 +sg225232 +S'Barthel Beham' +p273616 +sg225234 +S'engraving on paper tinted with gray wash' +p273617 +sg225236 +S'unknown date\n' +p273618 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7ae.jpg' +p273619 +sg225240 +g27 +sa(dp273620 +g225230 +S'Child with Three Skulls' +p273621 +sg225232 +S'Barthel Beham' +p273622 +sg225234 +S'engraving' +p273623 +sg225236 +S'1529' +p273624 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7b0.jpg' +p273625 +sg225240 +g27 +sa(dp273626 +g225230 +S'Saturn' +p273627 +sg225232 +S'Artist Information (' +p273628 +sg225234 +S'(artist after)' +p273629 +sg225236 +S'\n' +p273630 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d27f.jpg' +p273631 +sg225240 +g27 +sa(dp273632 +g225230 +S'Marcus Curtius' +p273633 +sg225232 +S'Master IB' +p273634 +sg225234 +S'engraving' +p273635 +sg225236 +S'1529' +p273636 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acd2.jpg' +p273637 +sg225240 +g27 +sa(dp273638 +g225230 +S'Sheath with Venus and Eros' +p273639 +sg225232 +S'Master IB' +p273640 +sg225234 +S'engraving' +p273641 +sg225236 +S'unknown date\n' +p273642 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ac/a000acdc.jpg' +p273643 +sg225240 +g27 +sa(dp273644 +g225230 +S'Luna' +p273645 +sg225232 +S'Heinrich Aldegrever' +p273646 +sg225234 +S'engraving' +p273647 +sg225236 +S'unknown date\n' +p273648 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a6/a000a6db.jpg' +p273649 +sg225240 +g27 +sa(dp273650 +g225230 +S'S. Philippus' +p273651 +sg225232 +S'Hieronymus Wierix' +p273652 +sg225234 +S'engraving' +p273653 +sg225236 +S'unknown date\n' +p273654 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cecf.jpg' +p273655 +sg225240 +g27 +sa(dp273656 +g225230 +S'Protector Noster Aspice ...' +p273657 +sg225232 +S'Hieronymus Wierix' +p273658 +sg225234 +S'engraving' +p273659 +sg225236 +S'unknown date\n' +p273660 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cecd.jpg' +p273661 +sg225240 +g27 +sa(dp273662 +g225230 +S'S. Lydtwina Virgo Schiedamensis ...' +p273663 +sg225232 +S'Hieronymus Wierix' +p273664 +sg225234 +S'engraving' +p273665 +sg225236 +S'unknown date\n' +p273666 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ced5.jpg' +p273667 +sg225240 +g27 +sa(dp273668 +g225230 +S'S. Andreas' +p273669 +sg225232 +S'Hieronymus Wierix' +p273670 +sg225234 +S'engraving' +p273671 +sg225236 +S'unknown date\n' +p273672 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ced0.jpg' +p273673 +sg225240 +g27 +sa(dp273674 +g225230 +S'Si mortiferum quid biberint ... (Saint John the Evangelist)' +p273675 +sg225232 +S'Hieronymus Wierix' +p273676 +sg225234 +S'engraving' +p273677 +sg225236 +S'unknown date\n' +p273678 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cece.jpg' +p273679 +sg225240 +g27 +sa(dp273680 +g225230 +S'S. P. Benedictus' +p273681 +sg225232 +S'Hieronymus Wierix' +p273682 +sg225234 +S'engraving' +p273683 +sg225236 +S'unknown date\n' +p273684 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ced2.jpg' +p273685 +sg225240 +g27 +sa(dp273686 +g225230 +S'Fasciculus myrrhae dilectus meus mihi' +p273687 +sg225232 +S'Hieronymus Wierix' +p273688 +sg225234 +S'engraving' +p273689 +sg225236 +S'unknown date\n' +p273690 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ced4.jpg' +p273691 +sg225240 +g27 +sa(dp273692 +g225230 +S'O quam tristis et afflicta ...' +p273693 +sg225232 +S'Hieronymus Wierix' +p273694 +sg225234 +S'engraving' +p273695 +sg225236 +S'unknown date\n' +p273696 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ced3.jpg' +p273697 +sg225240 +g27 +sa(dp273698 +g225230 +S'Frustra pater nauem dabit' +p273699 +sg225232 +S'Hieronymus Wierix' +p273700 +sg225234 +S'engraving' +p273701 +sg225236 +S'unknown date\n' +p273702 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cecb.jpg' +p273703 +sg225240 +g27 +sa(dp273704 +g225230 +S'Dum pierulo fugendum ...' +p273705 +sg225232 +S'Hieronymus Wierix' +p273706 +sg225234 +S'engraving' +p273707 +sg225236 +S'unknown date\n' +p273708 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cecc.jpg' +p273709 +sg225240 +g27 +sa(dp273710 +g225230 +S'Ecce tu pulcher es Dilecte ...' +p273711 +sg225232 +S'Hieronymus Wierix' +p273712 +sg225234 +S'engraving' +p273713 +sg225236 +S'unknown date\n' +p273714 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ced1.jpg' +p273715 +sg225240 +g27 +sa(dp273716 +g225230 +S'Baptismo habeo baptisari ...' +p273717 +sg225232 +S'Hieronymus Wierix' +p273718 +sg225234 +S'engraving' +p273719 +sg225236 +S'unknown date\n' +p273720 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ceca.jpg' +p273721 +sg225240 +g27 +sa(dp273722 +g225230 +S'S. Laurentius Martyr' +p273723 +sg225232 +S'Antonie Wierix' +p273724 +sg225234 +S'engraving' +p273725 +sg225236 +S'unknown date\n' +p273726 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cec9.jpg' +p273727 +sg225240 +g27 +sa(dp273728 +g225230 +S'Tuam ipsius animam ...' +p273729 +sg225232 +S'Antonie Wierix' +p273730 +sg225234 +S'engraving' +p273731 +sg225236 +S'unknown date\n' +p273732 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cec8.jpg' +p273733 +sg225240 +g27 +sa(dp273734 +g225230 +S'S. Maria Magdalena' +p273735 +sg225232 +S'Antonie Wierix' +p273736 +sg225234 +S'engraving' +p273737 +sg225236 +S'unknown date\n' +p273738 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cec6.jpg' +p273739 +sg225240 +g27 +sa(dp273740 +g225230 +S'S. Virgo Virginum' +p273741 +sg225232 +S'Antonie Wierix' +p273742 +sg225234 +S'engraving' +p273743 +sg225236 +S'unknown date\n' +p273744 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000cec7.jpg' +p273745 +sg225240 +g27 +sa(dp273746 +g225230 +S'Leda' +p273747 +sg225232 +S'Etienne Delaune' +p273748 +sg225234 +S'engraving' +p273749 +sg225236 +S'unknown date\n' +p273750 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000831e.jpg' +p273751 +sg225240 +g27 +sa(dp273752 +g225230 +S'Diana' +p273753 +sg225232 +S'Etienne Delaune' +p273754 +sg225234 +S'engraving' +p273755 +sg225236 +S'unknown date\n' +p273756 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a0008333.jpg' +p273757 +sg225240 +g27 +sa(dp273758 +g225230 +S'Standing Soldier in a Long Cloak' +p273759 +sg225232 +S'Filippo Napoletano' +p273760 +sg225234 +S'etching' +p273761 +sg225236 +S'unknown date\n' +p273762 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006767.jpg' +p273763 +sg225240 +g27 +sa(dp273764 +g225230 +S'Head of a Cleric' +p273765 +sg225232 +S'Benigno Bossi' +p273766 +sg225234 +S'etching' +p273767 +sg225236 +S'1775' +p273768 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca3e.jpg' +p273769 +sg225240 +g27 +sa(dp273770 +g225230 +S'Christ Arrives on the Mount of Olives' +p273771 +sg225232 +S'Artist Information (' +p273772 +sg225234 +S'French, 1637 - 1714' +p273773 +sg225236 +S'(artist after)' +p273774 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089b1.jpg' +p273775 +sg225240 +g27 +sa(dp273776 +g225230 +S'Christ Praying on the Mount of Olives' +p273777 +sg225232 +S'Artist Information (' +p273778 +sg225234 +S'French, 1637 - 1714' +p273779 +sg225236 +S'(artist after)' +p273780 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089b7.jpg' +p273781 +sg225240 +g27 +sa(dp273782 +g225230 +S'Agony in the Garden' +p273783 +sg225232 +S'Artist Information (' +p273784 +sg225234 +S'French, 1637 - 1714' +p273785 +sg225236 +S'(artist after)' +p273786 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089b8.jpg' +p273787 +sg225240 +g27 +sa(dp273788 +g225230 +S'Betrayal of Judas' +p273789 +sg225232 +S'Artist Information (' +p273790 +sg225234 +S'French, 1637 - 1714' +p273791 +sg225236 +S'(artist after)' +p273792 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089b2.jpg' +p273793 +sg225240 +g27 +sa(dp273794 +g225230 +S'The Arrest of Christ' +p273795 +sg225232 +S'Artist Information (' +p273796 +sg225234 +S'French, 1637 - 1714' +p273797 +sg225236 +S'(artist after)' +p273798 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089b9.jpg' +p273799 +sg225240 +g27 +sa(dp273800 +g225230 +S'Christ before Annas' +p273801 +sg225232 +S'Artist Information (' +p273802 +sg225234 +S'French, 1637 - 1714' +p273803 +sg225236 +S'(artist after)' +p273804 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089b3.jpg' +p273805 +sg225240 +g27 +sa(dp273806 +g225230 +S'Peter Denying Christ' +p273807 +sg225232 +S'Artist Information (' +p273808 +sg225234 +S'French, 1637 - 1714' +p273809 +sg225236 +S'(artist after)' +p273810 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089b4.jpg' +p273811 +sg225240 +g27 +sa(dp273812 +g225230 +S'Christ before Caiaphas' +p273813 +sg225232 +S'Artist Information (' +p273814 +sg225234 +S'French, 1637 - 1714' +p273815 +sg225236 +S'(artist after)' +p273816 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089b5.jpg' +p273817 +sg225240 +g27 +sa(dp273818 +g225230 +S'Christ before Pilate' +p273819 +sg225232 +S'Artist Information (' +p273820 +sg225234 +S'French, 1637 - 1714' +p273821 +sg225236 +S'(artist after)' +p273822 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089b6.jpg' +p273823 +sg225240 +g27 +sa(dp273824 +g225230 +S'Christ before Herod' +p273825 +sg225232 +S'Artist Information (' +p273826 +sg225234 +S'French, 1637 - 1714' +p273827 +sg225236 +S'(artist after)' +p273828 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089ba.jpg' +p273829 +sg225240 +g27 +sa(dp273830 +g225230 +S'Herod Sending Christ back to Pilate' +p273831 +sg225232 +S'Artist Information (' +p273832 +sg225234 +S'French, 1637 - 1714' +p273833 +sg225236 +S'(artist after)' +p273834 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089c4.jpg' +p273835 +sg225240 +g27 +sa(dp273836 +g225230 +S'Christ on the Cross between the Two Thieves' +p273837 +sg225232 +S'Artist Information (' +p273838 +sg225234 +S'French, 1637 - 1714' +p273839 +sg225236 +S'(artist after)' +p273840 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089bd.jpg' +p273841 +sg225240 +g27 +sa(dp273842 +g225230 +S'The Virgin, Saint John, and Mary Magdalene at the Foot of the Cross' +p273843 +sg225232 +S'Artist Information (' +p273844 +sg225234 +S'French, 1637 - 1714' +p273845 +sg225236 +S'(artist after)' +p273846 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089be.jpg' +p273847 +sg225240 +g27 +sa(dp273848 +g225230 +S'Christ Dying on the Cross' +p273849 +sg225232 +S'Artist Information (' +p273850 +sg225234 +S'French, 1637 - 1714' +p273851 +sg225236 +S'(artist after)' +p273852 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089c3.jpg' +p273853 +sg225240 +g27 +sa(dp273854 +g225230 +S'Descent into Limbo' +p273855 +sg225232 +S'Artist Information (' +p273856 +sg225234 +S'French, 1637 - 1714' +p273857 +sg225236 +S'(artist after)' +p273858 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089bf.jpg' +p273859 +sg225240 +g27 +sa(dp273860 +g225230 +S"Piercing of Christ's Side" +p273861 +sg225232 +S'Artist Information (' +p273862 +sg225234 +S'French, 1637 - 1714' +p273863 +sg225236 +S'(artist after)' +p273864 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089c0.jpg' +p273865 +sg225240 +g27 +sa(dp273866 +g225230 +S'The Entombment' +p273867 +sg225232 +S'Artist Information (' +p273868 +sg225234 +S'French, 1637 - 1714' +p273869 +sg225236 +S'(artist after)' +p273870 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089c1.jpg' +p273871 +sg225240 +g27 +sa(dp273872 +g225230 +S'The Body of Christ being Covered with Flowersand Perfume' +p273873 +sg225232 +S'Artist Information (' +p273874 +sg225234 +S'French, 1637 - 1714' +p273875 +sg225236 +S'(artist after)' +p273876 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089bb.jpg' +p273877 +sg225240 +g27 +sa(dp273878 +g225230 +S'The Resurrection' +p273879 +sg225232 +S'Artist Information (' +p273880 +sg225234 +S'French, 1637 - 1714' +p273881 +sg225236 +S'(artist after)' +p273882 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089c5.jpg' +p273883 +sg225240 +g27 +sa(dp273884 +g225230 +S'Christ Appearing to His Disciples' +p273885 +sg225232 +S'Artist Information (' +p273886 +sg225234 +S'French, 1637 - 1714' +p273887 +sg225236 +S'(artist after)' +p273888 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089c6.jpg' +p273889 +sg225240 +g27 +sa(dp273890 +g225230 +S'The Incredulity of Thomas' +p273891 +sg225232 +S'Artist Information (' +p273892 +sg225234 +S'French, 1637 - 1714' +p273893 +sg225236 +S'(artist after)' +p273894 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089bc.jpg' +p273895 +sg225240 +g27 +sa(dp273896 +g225230 +S'The Ascension' +p273897 +sg225232 +S'Artist Information (' +p273898 +sg225234 +S'French, 1637 - 1714' +p273899 +sg225236 +S'(artist after)' +p273900 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089c2.jpg' +p273901 +sg225240 +g27 +sa(dp273902 +g225230 +S'Bust of a Cook with Cap' +p273903 +sg225232 +S'Jan Lievens' +p273904 +sg225234 +S'etching' +p273905 +sg225236 +S'unknown date\n' +p273906 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d277.jpg' +p273907 +sg225240 +g27 +sa(dp273908 +g225230 +S'Bust of a Man with Thick Lips' +p273909 +sg225232 +S'Jan Lievens' +p273910 +sg225234 +S'etching' +p273911 +sg225236 +S'unknown date\n' +p273912 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d276.jpg' +p273913 +sg225240 +g27 +sa(dp273914 +g225230 +S'Bust of an Old Woman Turned in Profile to the Right' +p273915 +sg225232 +S'Netherlandish 17th Century' +p273916 +sg225234 +S'Rosenwald Collection' +p273917 +sg225236 +S'\netching' +p273918 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d088.jpg' +p273919 +sg225240 +g27 +sa(dp273920 +g225230 +S'Juno in a Chariot Pulled by Peacocks' +p273921 +sg225232 +S'Italian 16th Century' +p273922 +sg225234 +S'Rosenwald Collection' +p273923 +sg225236 +S'\nengraving' +p273924 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c881.jpg' +p273925 +sg225240 +g27 +sa(dp273926 +g225230 +S'Triumphant Christ with Prophets and Saints' +p273927 +sg225232 +S'Netherlandish 16th Century' +p273928 +sg225234 +S'Rosenwald Collection' +p273929 +sg225236 +S'\nengraving' +p273930 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cd0b.jpg' +p273931 +sg225240 +g27 +sa(dp273932 +g225232 +S'Artist Information (' +p273933 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Album of Prints of Kings and Dukes' +p273934 +sg225236 +S'(artist)' +p273935 +sa(dp273936 +g225232 +S'Artist Information (' +p273937 +sg225240 +g27 +sg225234 +S'American, 1837 - 1900' +p273938 +sg225230 +S'Etching: An Outline of its Technical Processes and Its History ...' +p273939 +sg225236 +S'(author)' +p273940 +sa(dp273941 +g225232 +S'Robert Swain Gifford' +p273942 +sg225240 +g27 +sg225234 +S'etching' +p273943 +sg225230 +S'Evening' +p273944 +sg225236 +S'published 1885' +p273945 +sa(dp273946 +g225232 +S'Ignaz Marcel Gaugengigl' +p273947 +sg225240 +g27 +sg225234 +S'etching' +p273948 +sg225230 +S'Summer' +p273949 +sg225236 +S'published 1885' +p273950 +sa(dp273951 +g225232 +S'Thomas Moran' +p273952 +sg225240 +g27 +sg225234 +S'etching' +p273953 +sg225230 +S'Twilight in Arizona' +p273954 +sg225236 +S'published 1885' +p273955 +sa(dp273956 +g225232 +S'Charles A. Vanderhoof' +p273957 +sg225240 +g27 +sg225234 +S'drypoint' +p273958 +sg225230 +S"The Fisherman's Home" +p273959 +sg225236 +S'published 1885' +p273960 +sa(dp273961 +g225232 +S'Christoph Bockstorfer' +p273962 +sg225240 +g27 +sg225234 +S'etching [restrike]' +p273963 +sg225230 +S'Charles V and His Brother Ferdinand' +p273964 +sg225236 +S'published 1885' +p273965 +sa(dp273966 +g225232 +S'Christian Wilhelm Ernst Dietrich' +p273967 +sg225240 +g27 +sg225234 +S'etching' +p273968 +sg225230 +S'The Montebank' +p273969 +sg225236 +S'published 1885' +p273970 +sa(dp273971 +g225232 +S'Charles \xc3\x89mile Jacque' +p273972 +sg225240 +g27 +sg225234 +S'etching' +p273973 +sg225230 +S'Peasant Woman Driving Pigs into a Stable' +p273974 +sg225236 +S'published 1885' +p273975 +sa(dp273976 +g225232 +S'Maxime Lalanne' +p273977 +sg225240 +g27 +sg225234 +S'etching' +p273978 +sg225230 +S'View of Amsterdam' +p273979 +sg225236 +S'published 1885' +p273980 +sa(dp273981 +g225232 +S'Jules-Ferdinand Jacquemart' +p273982 +sg225240 +g27 +sg225234 +S'etching' +p273983 +sg225230 +S'Tripod, by Gouthiere' +p273984 +sg225236 +S'published 1885' +p273985 +sa(dp273986 +g225232 +S'George Loring Brown' +p273987 +sg225240 +g27 +sg225234 +S'etching' +p273988 +sg225230 +S'The Falls of Tivoli' +p273989 +sg225236 +S'published 1885' +p273990 +sa(dp273991 +g225232 +S'Henry Farrer' +p273992 +sg225240 +g27 +sg225234 +S'etching' +p273993 +sg225230 +S'Sweet is the Hour of Rest' +p273994 +sg225236 +S'published 1885' +p273995 +sa(dp273996 +g225232 +S'Stephen Parrish' +p273997 +sg225240 +g27 +sg225234 +S'etching' +p273998 +sg225230 +S'Annisquam' +p273999 +sg225236 +S'published 1885' +p274000 +sa(dp274001 +g225232 +S'James David Smillie' +p274002 +sg225240 +g27 +sg225234 +S'etching' +p274003 +sg225230 +S'A Fallow Field' +p274004 +sg225236 +S'published 1885' +p274005 +sa(dp274006 +g225232 +S'Charles A. Platt' +p274007 +sg225240 +g27 +sg225234 +S'etching' +p274008 +sg225230 +S'Rue du Mont Cenis, Montmartre' +p274009 +sg225236 +S'published 1885' +p274010 +sa(dp274011 +g225232 +S'Mary Nimmo Moran' +p274012 +sg225240 +g27 +sg225234 +S'etching' +p274013 +sg225230 +S'The Home of the Muskrat' +p274014 +sg225236 +S'published 1885' +p274015 +sa(dp274016 +g225232 +S'Peter Moran' +p274017 +sg225240 +g27 +sg225234 +S'etching' +p274018 +sg225230 +S'Church of San Miguel and Pueblo House, at Santa Fe, N.M.' +p274019 +sg225236 +S'published 1885' +p274020 +sa(dp274021 +g225232 +S'James McNeill Whistler' +p274022 +sg225240 +g27 +sg225234 +S'etching' +p274023 +sg225230 +S'A Street in London' +p274024 +sg225236 +S'published 1885' +p274025 +sa(dp274026 +g225232 +S'Otto Henry Bacher' +p274027 +sg225240 +g27 +sg225234 +S'etching' +p274028 +sg225230 +S'View in Venice' +p274029 +sg225236 +S'published 1885' +p274030 +sa(dp274031 +g225232 +S'Charles Abel Corwin' +p274032 +sg225240 +g27 +sg225234 +S'etching' +p274033 +sg225230 +S'Scene in Venice' +p274034 +sg225236 +S'published 1885' +p274035 +sa(dp274036 +g225232 +S'Artist Information (' +p274037 +sg225240 +g27 +sg225234 +S'(artist after)' +p274038 +sg225230 +S'The Soldier and the Laughing Girl' +p274039 +sg225236 +S'\n' +p274040 +sa(dp274041 +g225232 +S'Artist Information (' +p274042 +sg225240 +g27 +sg225234 +S'(artist after)' +p274043 +sg225230 +S'Portrait of a Man (Le Doreur)' +p274044 +sg225236 +S'\n' +p274045 +sa(dp274046 +g225232 +S'William Unger' +p274047 +sg225240 +g27 +sg225234 +S'etching' +p274048 +sg225230 +S'Hen Defending Her Brood' +p274049 +sg225236 +S'published 1885' +p274050 +sa(dp274051 +g225232 +S'Artist Information (' +p274052 +sg225240 +g27 +sg225234 +S'(artist after)' +p274053 +sg225230 +S'Landscape and Sheep' +p274054 +sg225236 +S'\n' +p274055 +sa(dp274056 +g225232 +S'Artist Information (' +p274057 +sg225240 +g27 +sg225234 +S'(artist after)' +p274058 +sg225230 +S'Portrait of an Old Lady' +p274059 +sg225236 +S'\n' +p274060 +sa(dp274061 +g225232 +S'Artist Information (' +p274062 +sg225240 +g27 +sg225234 +S'(artist after)' +p274063 +sg225230 +S'Portrait of an Old Lady' +p274064 +sg225236 +S'\n' +p274065 +sa(dp274066 +g225232 +S'Phillip Fike' +p274067 +sg225240 +g27 +sg225234 +S'niello proof' +p274068 +sg225230 +S'Burin Garden' +p274069 +sg225236 +S'unknown date\n' +p274070 +sa(dp274071 +g225232 +S'Phillip Fike' +p274072 +sg225240 +g27 +sg225234 +S'sulpher cast' +p274073 +sg225230 +S'Burin Garden' +p274074 +sg225236 +S'unknown date\n' +p274075 +sa(dp274076 +g225232 +S'Phillip Fike' +p274077 +sg225240 +g27 +sg225234 +S'niello proof' +p274078 +sg225230 +S'Niello Compendium' +p274079 +sg225236 +S'1979' +p274080 +sa(dp274081 +g225232 +S'Phillip Fike' +p274082 +sg225240 +g27 +sg225234 +S'sulphur cast' +p274083 +sg225230 +S'Niello Compendium' +p274084 +sg225236 +S'1979' +p274085 +sa(dp274086 +g225232 +S'Phillip Fike' +p274087 +sg225240 +g27 +sg225234 +S'niello plate' +p274088 +sg225230 +S'Niello Plate' +p274089 +sg225236 +S'1978' +p274090 +sa(dp274091 +g225232 +S'Phillip Fike' +p274092 +sg225240 +g27 +sg225234 +S'niello proof on paper' +p274093 +sg225230 +S'Niello Plate' +p274094 +sg225236 +S'1978' +p274095 +sa(dp274096 +g225232 +S'Phillip Fike' +p274097 +sg225240 +g27 +sg225234 +S'niello proof on leather' +p274098 +sg225230 +S'Niello Plate' +p274099 +sg225236 +S'1978' +p274100 +sa(dp274101 +g225232 +S'Phillip Fike' +p274102 +sg225240 +g27 +sg225234 +S'sulphur cast' +p274103 +sg225230 +S'Niello Plate' +p274104 +sg225236 +S'1978' +p274105 +sa(dp274106 +g225232 +S'Phillip Fike' +p274107 +sg225240 +g27 +sg225234 +S'sulphur cast' +p274108 +sg225230 +S'Niello Plate' +p274109 +sg225236 +S'1978' +p274110 +sa(dp274111 +g225232 +S'Phillip Fike' +p274112 +sg225240 +g27 +sg225234 +S'sulphur cast' +p274113 +sg225230 +S'Niello Plate' +p274114 +sg225236 +S'1978' +p274115 +sa(dp274116 +g225232 +S'Phillip Fike' +p274117 +sg225240 +g27 +sg225234 +S'punch' +p274118 +sg225230 +S'Niello Plate' +p274119 +sg225236 +S'1978' +p274120 +sa(dp274121 +g225232 +S'Phillip Fike' +p274122 +sg225240 +g27 +sg225234 +S'punch' +p274123 +sg225230 +S'Niello Plate' +p274124 +sg225236 +S'1978' +p274125 +sa(dp274126 +g225232 +S'Phillip Fike' +p274127 +sg225240 +g27 +sg225234 +S'silver demonstration plate' +p274128 +sg225230 +S'Niello Plate' +p274129 +sg225236 +S'1978' +p274130 +sa(dp274131 +g225232 +S'Mary Corita Kent' +p274132 +sg225240 +g27 +sg225234 +S', 1953' +p274133 +sg225230 +S'The Beginning of Miracles: I' +p274134 +sg225236 +S'\n' +p274135 +sa(dp274136 +g225232 +S'Mary Corita Kent' +p274137 +sg225240 +g27 +sg225234 +S', 1953' +p274138 +sg225230 +S'The Beginning of Miracles: II' +p274139 +sg225236 +S'\n' +p274140 +sa(dp274141 +g225232 +S'Mary Corita Kent' +p274142 +sg225240 +g27 +sg225234 +S', 1953' +p274143 +sg225230 +S'The Beginning of Miracles: III' +p274144 +sg225236 +S'\n' +p274145 +sa(dp274146 +g225232 +S'Mary Corita Kent' +p274147 +sg225240 +g27 +sg225234 +S', 1953' +p274148 +sg225230 +S'The Beginning of Miracles: IV' +p274149 +sg225236 +S'\n' +p274150 +sa(dp274151 +g225232 +S'Mary Corita Kent' +p274152 +sg225240 +g27 +sg225234 +S', 1953' +p274153 +sg225230 +S'The Beginning of Miracles: V' +p274154 +sg225236 +S'\n' +p274155 +sa(dp274156 +g225232 +S'Mary Corita Kent' +p274157 +sg225240 +g27 +sg225234 +S', 1953' +p274158 +sg225230 +S'The Beginning of Miracles: VI' +p274159 +sg225236 +S'\n' +p274160 +sa(dp274161 +g225232 +S'Mary Corita Kent' +p274162 +sg225240 +g27 +sg225234 +S', 1953' +p274163 +sg225230 +S'The Beginning of Miracles: VII' +p274164 +sg225236 +S'\n' +p274165 +sa(dp274166 +g225232 +S'Mary Corita Kent' +p274167 +sg225240 +g27 +sg225234 +S', 1953' +p274168 +sg225230 +S'The Beginning of Miracles: VIII' +p274169 +sg225236 +S'\n' +p274170 +sa(dp274171 +g225232 +S'Mary Corita Kent' +p274172 +sg225240 +g27 +sg225234 +S', 1953' +p274173 +sg225230 +S'The Beginning of Miracles: IX' +p274174 +sg225236 +S'\n' +p274175 +sa(dp274176 +g225232 +S'Mary Corita Kent' +p274177 +sg225240 +g27 +sg225234 +S', 1953' +p274178 +sg225230 +S'The Beginning of Miracles: X' +p274179 +sg225236 +S'\n' +p274180 +sa(dp274181 +g225232 +S'Mary Corita Kent' +p274182 +sg225240 +g27 +sg225234 +S', 1953' +p274183 +sg225230 +S'The Beginning of Miracles: XI' +p274184 +sg225236 +S'\n' +p274185 +sa(dp274186 +g225232 +S'Mary Corita Kent' +p274187 +sg225240 +g27 +sg225234 +S', 1953' +p274188 +sg225230 +S'The Beginning of Miracles: XII' +p274189 +sg225236 +S'\n' +p274190 +sa(dp274191 +g225232 +S'Mary Corita Kent' +p274192 +sg225240 +g27 +sg225234 +S', 1953' +p274193 +sg225230 +S'The Beginning of Miracles: XIII' +p274194 +sg225236 +S'\n' +p274195 +sa(dp274196 +g225232 +S'Mary Corita Kent' +p274197 +sg225240 +g27 +sg225234 +S', 1953' +p274198 +sg225230 +S'The Beginning of Miracles: XIV' +p274199 +sg225236 +S'\n' +p274200 +sa(dp274201 +g225232 +S'Mary Corita Kent' +p274202 +sg225240 +g27 +sg225234 +S', 1953' +p274203 +sg225230 +S'The Beginning of Miracles: XV' +p274204 +sg225236 +S'\n' +p274205 +sa(dp274206 +g225232 +S'Mary Corita Kent' +p274207 +sg225240 +g27 +sg225234 +S', 1953' +p274208 +sg225230 +S'The Beginning of Miracles: XVI' +p274209 +sg225236 +S'\n' +p274210 +sa(dp274211 +g225232 +S'Mary Corita Kent' +p274212 +sg225240 +g27 +sg225234 +S', 1953' +p274213 +sg225230 +S'The Beginning of Miracles: XVII' +p274214 +sg225236 +S'\n' +p274215 +sa(dp274216 +g225232 +S'Mary Corita Kent' +p274217 +sg225240 +g27 +sg225234 +S', 1953' +p274218 +sg225230 +S'The Beginning of Miracles: XVIII' +p274219 +sg225236 +S'\n' +p274220 +sa(dp274221 +g225232 +S'Mary Corita Kent' +p274222 +sg225240 +g27 +sg225234 +S', 1953' +p274223 +sg225230 +S'The Beginning of Miracles: XIX' +p274224 +sg225236 +S'\n' +p274225 +sa(dp274226 +g225232 +S'Mary Corita Kent' +p274227 +sg225240 +g27 +sg225234 +S', 1953' +p274228 +sg225230 +S'The Beginning of Miracles: XX' +p274229 +sg225236 +S'\n' +p274230 +sa(dp274231 +g225232 +S'Mary Corita Kent' +p274232 +sg225240 +g27 +sg225234 +S', 1953' +p274233 +sg225230 +S'The Beginning of Miracles: XXI' +p274234 +sg225236 +S'\n' +p274235 +sa(dp274236 +g225232 +S'Mary Corita Kent' +p274237 +sg225240 +g27 +sg225234 +S', 1953' +p274238 +sg225230 +S'The Beginning of Miracles: XXII' +p274239 +sg225236 +S'\n' +p274240 +sa(dp274241 +g225232 +S'Mary Corita Kent' +p274242 +sg225240 +g27 +sg225234 +S', 1953' +p274243 +sg225230 +S'The Beginning of Miracles: XXIII' +p274244 +sg225236 +S'\n' +p274245 +sa(dp274246 +g225232 +S'Benton Murdoch Spruance' +p274247 +sg225240 +g27 +sg225234 +S'monotype (Formica) in gray and green [second printing]' +p274248 +sg225230 +S'Skyhawk, No.II' +p274249 +sg225236 +S'1965' +p274250 +sa(dp274251 +g225232 +S'Benton Murdoch Spruance' +p274252 +sg225240 +g27 +sg225234 +S'monotype (Formica) in gray and green [second printing]' +p274253 +sg225230 +S'Skyhawk, No.II' +p274254 +sg225236 +S'1965' +p274255 +sa(dp274256 +g225232 +S'Benton Murdoch Spruance' +p274257 +sg225240 +g27 +sg225234 +S'monotype (Formica) in gray and black [second printing]' +p274258 +sg225230 +S'Skyhawk, No.III' +p274259 +sg225236 +S'1965' +p274260 +sa(dp274261 +g225232 +S'Benton Murdoch Spruance' +p274262 +sg225240 +g27 +sg225234 +S'monotype (Formica) in gray and black' +p274263 +sg225230 +S'Skyhawk, No.III' +p274264 +sg225236 +S'1965' +p274265 +sa(dp274266 +g225232 +S"Frederick O'Hara" +p274267 +sg225240 +g27 +sg225234 +S'woodcut block' +p274268 +sg225230 +S'Taurina, Block 1' +p274269 +sg225236 +S'1953' +p274270 +sa(dp274271 +g225232 +S"Frederick O'Hara" +p274272 +sg225240 +g27 +sg225234 +S'woodcut block' +p274273 +sg225230 +S'Taurina, Block 2 [recto]' +p274274 +sg225236 +S'1953' +p274275 +sa(dp274276 +g225232 +S"Frederick O'Hara" +p274277 +sg225240 +g27 +sg225234 +S'woodcut block' +p274278 +sg225230 +S'Taurina, Block 8? [verso]' +p274279 +sg225236 +S'1953' +p274280 +sa(dp274281 +g225232 +S"Frederick O'Hara" +p274282 +sg225240 +g27 +sg225234 +S'woodcut block' +p274283 +sg225230 +S'Taurina, Block 3 [recto]' +p274284 +sg225236 +S'1953' +p274285 +sa(dp274286 +g225232 +S"Frederick O'Hara" +p274287 +sg225240 +g27 +sg225234 +S'woodcut block' +p274288 +sg225230 +S'Taurina, Block 8 [verso]' +p274289 +sg225236 +S'1953' +p274290 +sa(dp274291 +g225232 +S"Frederick O'Hara" +p274292 +sg225240 +g27 +sg225234 +S'woodcut block' +p274293 +sg225230 +S'Taurina, Block 4 [recto]' +p274294 +sg225236 +S'1953' +p274295 +sa(dp274296 +g225232 +S"Frederick O'Hara" +p274297 +sg225240 +g27 +sg225234 +S'woodcut block' +p274298 +sg225230 +S'Taurina, Block 5 [verso]' +p274299 +sg225236 +S'1953' +p274300 +sa(dp274301 +g225232 +S"Frederick O'Hara" +p274302 +sg225240 +g27 +sg225234 +S'wood block' +p274303 +sg225230 +S'Taurina, Block 6 [recto]' +p274304 +sg225236 +S'1953' +p274305 +sa(dp274306 +g225232 +S"Frederick O'Hara" +p274307 +sg225240 +g27 +sg225234 +S'woodcut block' +p274308 +sg225230 +S'Taurina, Block 7 [verso]' +p274309 +sg225236 +S'1953' +p274310 +sa(dp274311 +g225232 +S"Frederick O'Hara" +p274312 +sg225240 +g27 +sg225234 +S'stencil' +p274313 +sg225230 +S'Taurina' +p274314 +sg225236 +S'1953' +p274315 +sa(dp274316 +g225230 +S'Sheet with Flower and Diamond Pattern' +p274317 +sg225232 +S'German 16th Century' +p274318 +sg225234 +S'Rosenwald Collection' +p274319 +sg225236 +S'\nwoodcut' +p274320 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b077.jpg' +p274321 +sg225240 +g27 +sa(dp274322 +g225230 +S'Sheet with Flower and Diamond Pattern' +p274323 +sg225232 +S'German 16th Century' +p274324 +sg225234 +S'Rosenwald Collection' +p274325 +sg225236 +S'\nwoodcut' +p274326 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b074.jpg' +p274327 +sg225240 +g27 +sa(dp274328 +g225230 +S'Playing Card' +p274329 +sg225232 +S'German 16th Century' +p274330 +sg225234 +S'Rosenwald Collection' +p274331 +sg225236 +S'\nwoodcut' +p274332 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b075.jpg' +p274333 +sg225240 +g27 +sa(dp274334 +g225230 +S'Playing Card' +p274335 +sg225232 +S'German 16th Century' +p274336 +sg225234 +S'Rosenwald Collection' +p274337 +sg225236 +S'\nwoodcut' +p274338 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b073.jpg' +p274339 +sg225240 +g27 +sa(dp274340 +g225230 +S'Playing Card' +p274341 +sg225232 +S'German 16th Century' +p274342 +sg225234 +S'Rosenwald Collection' +p274343 +sg225236 +S'\nwoodcut' +p274344 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ad/a000add2.jpg' +p274345 +sg225240 +g27 +sa(dp274346 +g225230 +S'Playing Card' +p274347 +sg225232 +S'German 16th Century' +p274348 +sg225234 +S'Rosenwald Collection' +p274349 +sg225236 +S'\nwoodcut' +p274350 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b076.jpg' +p274351 +sg225240 +g27 +sa(dp274352 +g225230 +S'Sheet with Flower and Diamond Pattern' +p274353 +sg225232 +S'German 16th Century' +p274354 +sg225234 +S'Rosenwald Collection' +p274355 +sg225236 +S'\nwoodcut' +p274356 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b078.jpg' +p274357 +sg225240 +g27 +sa(dp274358 +g225230 +S'Sheet with Flower and Diamond Pattern' +p274359 +sg225232 +S'German 16th Century' +p274360 +sg225234 +S'Rosenwald Collection' +p274361 +sg225236 +S'\nwoodcut' +p274362 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b079.jpg' +p274363 +sg225240 +g27 +sa(dp274364 +g225232 +S'Andrew Wyeth' +p274365 +sg225240 +g27 +sg225234 +S'lithograph, hand-colored in red watercolor on wove paper' +p274366 +sg225230 +S'Christmas Card' +p274367 +sg225236 +S'unknown date\n' +p274368 +sa(dp274369 +g225232 +S'Fred Cain' +p274370 +sg225240 +g27 +sg225234 +S'embossed print on silver paper' +p274371 +sg225230 +S'Landscape' +p274372 +sg225236 +S'unknown date\n' +p274373 +sa(dp274374 +g225232 +S'Alfred Bendiner' +p274375 +sg225240 +g27 +sg225234 +S'watercolor on wove paper' +p274376 +sg225230 +S'Drawing from Venice to Edith Rosenwald' +p274377 +sg225236 +S'1953' +p274378 +sa(dp274379 +g225230 +S'Holy Family' +p274380 +sg225232 +S'Italian 17th Century' +p274381 +sg225234 +S'overall: 16 x 14 cm (6 5/16 x 5 1/2 in.)' +p274382 +sg225236 +S'\npen and brown ink with brown wash' +p274383 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007466.jpg' +p274384 +sg225240 +g27 +sa(dp274385 +g225232 +S'Pierre Bonnard' +p274386 +sg225240 +g27 +sg225234 +S'lithograph' +p274387 +sg225230 +S'NIB carnavalesque' +p274388 +sg225236 +S'1895' +p274389 +sa(dp274390 +g225230 +S'Le Petit Chasseur (Little Hunter)' +p274391 +sg225232 +S'F\xc3\xa9lix-Hilaire Buhot' +p274392 +sg225234 +S'lithograph' +p274393 +sg225236 +S'1892' +p274394 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a0009175.jpg' +p274395 +sg225240 +g27 +sa(dp274396 +g225230 +S'Premiere promenade de Berlin' +p274397 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p274398 +sg225234 +S'etching' +p274399 +sg225236 +S'1772' +p274400 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b37e.jpg' +p274401 +sg225240 +g27 +sa(dp274402 +g225230 +S'Diana' +p274403 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p274404 +sg225234 +S'etching' +p274405 +sg225236 +S'1787' +p274406 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3ae.jpg' +p274407 +sg225240 +g27 +sa(dp274408 +g225230 +S'Dreaming on Roses' +p274409 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p274410 +sg225234 +S'etching' +p274411 +sg225236 +S'1790' +p274412 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3b9.jpg' +p274413 +sg225240 +g27 +sa(dp274414 +g225230 +S'Idris' +p274415 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p274416 +sg225234 +S'etching' +p274417 +sg225236 +S'1789' +p274418 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3ad.jpg' +p274419 +sg225240 +g27 +sa(dp274420 +g225230 +S'What is the Way to be Happy?' +p274421 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p274422 +sg225234 +S'etching' +p274423 +sg225236 +S'1791' +p274424 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3b0.jpg' +p274425 +sg225240 +g27 +sa(dp274426 +g225230 +S'F.E. von Rochow' +p274427 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p274428 +sg225234 +S'etching' +p274429 +sg225236 +S'1777' +p274430 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b356.jpg' +p274431 +sg225240 +g27 +sa(dp274432 +g225230 +S'Rudolph of Hapsburg' +p274433 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p274434 +sg225234 +S'etching' +p274435 +sg225236 +S'1783' +p274436 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b358.jpg' +p274437 +sg225240 +g27 +sa(dp274438 +g225230 +S'Servants' +p274439 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p274440 +sg225234 +S'etching' +p274441 +sg225236 +S'1780' +p274442 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b30e.jpg' +p274443 +sg225240 +g27 +sa(dp274444 +g225230 +S'A Welcome Guest' +p274445 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p274446 +sg225234 +S'etching' +p274447 +sg225236 +S'1777/1791' +p274448 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b30c.jpg' +p274449 +sg225240 +g27 +sa(dp274450 +g225230 +S'A Welcome Guest' +p274451 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p274452 +sg225234 +S'etching' +p274453 +sg225236 +S'1777/1791' +p274454 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b30d.jpg' +p274455 +sg225240 +g27 +sa(dp274456 +g225230 +S'Boppart' +p274457 +sg225232 +S'John William Casilear' +p274458 +sg225234 +S'graphite on gray paper' +p274459 +sg225236 +S'1842' +p274460 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e488.jpg' +p274461 +sg225240 +g27 +sa(dp274462 +g225230 +S'Seville' +p274463 +sg225232 +S'Samuel Colman' +p274464 +sg225234 +S'graphite on wove paper' +p274465 +sg225236 +S'1850' +p274466 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0ac.jpg' +p274467 +sg225240 +g27 +sa(dp274468 +g225230 +S'Woman Standing beneath Two Trees' +p274469 +sg225232 +S'William Morris Hunt' +p274470 +sg225234 +S'black chalk on laid paper' +p274471 +sg225236 +S'c. 1877' +p274472 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4b0.jpg' +p274473 +sg225240 +g27 +sa(dp274474 +g225230 +S'Elms at Stowe, Vermont' +p274475 +sg225232 +S'Aaron Draper Shattuck' +p274476 +sg225234 +S'graphite' +p274477 +sg225236 +S'1858' +p274478 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4d0.jpg' +p274479 +sg225240 +g27 +sa(dp274480 +g225232 +S'Agnes Martin' +p274481 +sg225240 +g27 +sg225234 +S'screenprint' +p274482 +sg225230 +S'On a Clear Day I' +p274483 +sg225236 +S'1973' +p274484 +sa(dp274485 +g225232 +S'Agnes Martin' +p274486 +sg225240 +g27 +sg225234 +S'portfolio with 30 screenprints' +p274487 +sg225230 +S'On a Clear Day' +p274488 +sg225236 +S'1973' +p274489 +sa(dp274490 +g225232 +S'Agnes Martin' +p274491 +sg225240 +g27 +sg225234 +S'screenprint' +p274492 +sg225230 +S'On a Clear Day II' +p274493 +sg225236 +S'1973' +p274494 +sa(dp274495 +g225232 +S'Agnes Martin' +p274496 +sg225240 +g27 +sg225234 +S'screenprint' +p274497 +sg225230 +S'On a Clear Day III' +p274498 +sg225236 +S'1973' +p274499 +sa(dp274500 +g225232 +S'Agnes Martin' +p274501 +sg225240 +g27 +sg225234 +S'screenprint' +p274502 +sg225230 +S'On a Clear Day IV' +p274503 +sg225236 +S'1973' +p274504 +sa(dp274505 +g225232 +S'Agnes Martin' +p274506 +sg225240 +g27 +sg225234 +S'screenprint' +p274507 +sg225230 +S'On a Clear Day V' +p274508 +sg225236 +S'1973' +p274509 +sa(dp274510 +g225232 +S'Agnes Martin' +p274511 +sg225240 +g27 +sg225234 +S'screenprint' +p274512 +sg225230 +S'On a Clear Day VI' +p274513 +sg225236 +S'1973' +p274514 +sa(dp274515 +g225232 +S'Agnes Martin' +p274516 +sg225240 +g27 +sg225234 +S'screenprint' +p274517 +sg225230 +S'On a Clear Day VII' +p274518 +sg225236 +S'1973' +p274519 +sa(dp274520 +g225232 +S'Agnes Martin' +p274521 +sg225240 +g27 +sg225234 +S'screenprint' +p274522 +sg225230 +S'On a Clear Day VIII' +p274523 +sg225236 +S'1973' +p274524 +sa(dp274525 +g225232 +S'Agnes Martin' +p274526 +sg225240 +g27 +sg225234 +S'screenprint' +p274527 +sg225230 +S'On a Clear Day IX' +p274528 +sg225236 +S'1973' +p274529 +sa(dp274530 +g225232 +S'Agnes Martin' +p274531 +sg225240 +g27 +sg225234 +S'screenprint' +p274532 +sg225230 +S'On a Clear Day X' +p274533 +sg225236 +S'1973' +p274534 +sa(dp274535 +g225232 +S'Agnes Martin' +p274536 +sg225240 +g27 +sg225234 +S'screenprint' +p274537 +sg225230 +S'On a Clear Day XI' +p274538 +sg225236 +S'1973' +p274539 +sa(dp274540 +g225232 +S'Agnes Martin' +p274541 +sg225240 +g27 +sg225234 +S'screenprint' +p274542 +sg225230 +S'On a Clear Day XII' +p274543 +sg225236 +S'1973' +p274544 +sa(dp274545 +g225232 +S'Agnes Martin' +p274546 +sg225240 +g27 +sg225234 +S'screenprint' +p274547 +sg225230 +S'On a Clear Day XIII' +p274548 +sg225236 +S'1973' +p274549 +sa(dp274550 +g225232 +S'Agnes Martin' +p274551 +sg225240 +g27 +sg225234 +S'screenprint' +p274552 +sg225230 +S'On a Clear Day XIV' +p274553 +sg225236 +S'1973' +p274554 +sa(dp274555 +g225232 +S'Agnes Martin' +p274556 +sg225240 +g27 +sg225234 +S'screenprint' +p274557 +sg225230 +S'On a Clear Day XV' +p274558 +sg225236 +S'1973' +p274559 +sa(dp274560 +g225232 +S'Agnes Martin' +p274561 +sg225240 +g27 +sg225234 +S'screenprint' +p274562 +sg225230 +S'On a Clear Day XVI' +p274563 +sg225236 +S'1973' +p274564 +sa(dp274565 +g225232 +S'Agnes Martin' +p274566 +sg225240 +g27 +sg225234 +S'screenprint' +p274567 +sg225230 +S'On a Clear Day XVII' +p274568 +sg225236 +S'1973' +p274569 +sa(dp274570 +g225232 +S'Agnes Martin' +p274571 +sg225240 +g27 +sg225234 +S'screenprint' +p274572 +sg225230 +S'On a Clear Day XVIII' +p274573 +sg225236 +S'1973' +p274574 +sa(dp274575 +g225232 +S'Agnes Martin' +p274576 +sg225240 +g27 +sg225234 +S'screenprint' +p274577 +sg225230 +S'On a Clear Day XIX' +p274578 +sg225236 +S'1973' +p274579 +sa(dp274580 +g225232 +S'Agnes Martin' +p274581 +sg225240 +g27 +sg225234 +S'screenprint' +p274582 +sg225230 +S'On a Clear Day XX' +p274583 +sg225236 +S'1973' +p274584 +sa(dp274585 +g225232 +S'Agnes Martin' +p274586 +sg225240 +g27 +sg225234 +S'screenprint' +p274587 +sg225230 +S'On a Clear Day XXI' +p274588 +sg225236 +S'1973' +p274589 +sa(dp274590 +g225232 +S'Agnes Martin' +p274591 +sg225240 +g27 +sg225234 +S'screenprint' +p274592 +sg225230 +S'On a Clear Day XXII' +p274593 +sg225236 +S'1973' +p274594 +sa(dp274595 +g225232 +S'Agnes Martin' +p274596 +sg225240 +g27 +sg225234 +S'screenprint' +p274597 +sg225230 +S'On a Clear Day XXIII' +p274598 +sg225236 +S'1973' +p274599 +sa(dp274600 +g225232 +S'Agnes Martin' +p274601 +sg225240 +g27 +sg225234 +S'screenprint' +p274602 +sg225230 +S'On a Clear Day XXIV' +p274603 +sg225236 +S'1973' +p274604 +sa(dp274605 +g225232 +S'Agnes Martin' +p274606 +sg225240 +g27 +sg225234 +S'screenprint' +p274607 +sg225230 +S'On a Clear Day XXV' +p274608 +sg225236 +S'1973' +p274609 +sa(dp274610 +g225232 +S'Agnes Martin' +p274611 +sg225240 +g27 +sg225234 +S'screenprint' +p274612 +sg225230 +S'On a Clear Day XXVI' +p274613 +sg225236 +S'1973' +p274614 +sa(dp274615 +g225232 +S'Agnes Martin' +p274616 +sg225240 +g27 +sg225234 +S'screenprint' +p274617 +sg225230 +S'On a Clear Day XXVII' +p274618 +sg225236 +S'1973' +p274619 +sa(dp274620 +g225232 +S'Agnes Martin' +p274621 +sg225240 +g27 +sg225234 +S'screenprint' +p274622 +sg225230 +S'On a Clear Day XXVIII' +p274623 +sg225236 +S'1973' +p274624 +sa(dp274625 +g225232 +S'Agnes Martin' +p274626 +sg225240 +g27 +sg225234 +S'screenprint' +p274627 +sg225230 +S'On a Clear Day XXIX' +p274628 +sg225236 +S'1973' +p274629 +sa(dp274630 +g225232 +S'Agnes Martin' +p274631 +sg225240 +g27 +sg225234 +S'screenprint' +p274632 +sg225230 +S'On a Clear Day XXX' +p274633 +sg225236 +S'1973' +p274634 +sa(dp274635 +g225232 +S'American 20th Century' +p274636 +sg225240 +g27 +sg225234 +S'Gift of John Davis Hatch' +p274637 +sg225230 +S'The Cowardice of Pratt' +p274638 +sg225236 +S'\netching with white highlights and pencil corrections' +p274639 +sa(dp274640 +g225232 +S'Gene Davis' +p274641 +sg225240 +g27 +sg225234 +S'color screenprint on wove paper' +p274642 +sg225230 +S'Untitled' +p274643 +sg225236 +S'1980' +p274644 +sa(dp274645 +g225232 +S'Joaqu\xc3\xadn Torres-Garc\xc3\xada' +p274646 +sg225240 +g27 +sg225234 +S'gouache over graphite on paperboard' +p274647 +sg225230 +S'Port of Uruguay' +p274648 +sg225236 +S'1933' +p274649 +sa(dp274650 +g225232 +S'French 18th Century' +p274651 +sg225240 +g27 +sg225234 +S'Gift of M. Jean-Pierre Seguin' +p274652 +sg225230 +S'Charles' +p274653 +sg225236 +S'\nwoodcut colored with stencils' +p274654 +sa(dp274655 +g225232 +S'French 18th Century' +p274656 +sg225240 +g27 +sg225234 +S'Gift of M. Jean-Pierre Seguin' +p274657 +sg225230 +S'Hector' +p274658 +sg225236 +S'\nwoodcut colored with stencils' +p274659 +sa(dp274660 +g225230 +S'John Henderson as Falstaff' +p274661 +sg225232 +S'George Romney' +p274662 +sg225234 +S'graphite' +p274663 +sg225236 +S'c. 1778/1780' +p274664 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00069/a0006969.jpg' +p274665 +sg225240 +g27 +sa(dp274666 +g225232 +S'Artist Information (' +p274667 +sg225240 +g27 +sg225234 +S'(artist after)' +p274668 +sg225230 +S'William Blake' +p274669 +sg225236 +S'\n' +p274670 +sa(dp274671 +g225232 +S'Artist Information (' +p274672 +sg225240 +g27 +sg225234 +S'(author)' +p274673 +sg225230 +S'The Grave, A Poem' +p274674 +sg225236 +S'\n' +p274675 +sa(dp274676 +g225232 +S'Artist Information (' +p274677 +sg225240 +g27 +sg225234 +S'(artist after)' +p274678 +sg225230 +S'The Skeleton Re-animated' +p274679 +sg225236 +S'\n' +p274680 +sa(dp274681 +g225232 +S'Artist Information (' +p274682 +sg225240 +g27 +sg225234 +S'(artist after)' +p274683 +sg225230 +S'Christ descending into the Grave' +p274684 +sg225236 +S'\n' +p274685 +sa(dp274686 +g225232 +S'Artist Information (' +p274687 +sg225240 +g27 +sg225234 +S'(artist after)' +p274688 +sg225230 +S'The meeting of a Family in Heaven' +p274689 +sg225236 +S'\n' +p274690 +sa(dp274691 +g225232 +S'Artist Information (' +p274692 +sg225240 +g27 +sg225234 +S'(artist after)' +p274693 +sg225230 +S'The Counseller [sic], King, Warrior, Mother &Child;, in the Tomb' +p274694 +sg225236 +S'\n' +p274695 +sa(dp274696 +g225232 +S'Artist Information (' +p274697 +sg225240 +g27 +sg225234 +S'(artist after)' +p274698 +sg225230 +S'Death of the Strong Wicked Man' +p274699 +sg225236 +S'\n' +p274700 +sa(dp274701 +g225232 +S'Artist Information (' +p274702 +sg225240 +g27 +sg225234 +S'(artist after)' +p274703 +sg225230 +S'The Soul hovering over the Body reluctantly parting with Life' +p274704 +sg225236 +S'\n' +p274705 +sa(dp274706 +g225232 +S'Artist Information (' +p274707 +sg225240 +g27 +sg225234 +S'(artist after)' +p274708 +sg225230 +S'The descent of Man into the Vale of Death' +p274709 +sg225236 +S'\n' +p274710 +sa(dp274711 +g225232 +S'Artist Information (' +p274712 +sg225240 +g27 +sg225234 +S'(artist after)' +p274713 +sg225230 +S'The Day of Judgment' +p274714 +sg225236 +S'\n' +p274715 +sa(dp274716 +g225232 +S'Artist Information (' +p274717 +sg225240 +g27 +sg225234 +S'(artist after)' +p274718 +sg225230 +S'The Soul exploring the recesses of the Grave' +p274719 +sg225236 +S'\n' +p274720 +sa(dp274721 +g225232 +S'Artist Information (' +p274722 +sg225240 +g27 +sg225234 +S'(artist after)' +p274723 +sg225230 +S'The Death of The Good Old Man' +p274724 +sg225236 +S'\n' +p274725 +sa(dp274726 +g225232 +S'Artist Information (' +p274727 +sg225240 +g27 +sg225234 +S'(artist after)' +p274728 +sg225230 +S'The Reunion of the Soul & the Body' +p274729 +sg225236 +S'\n' +p274730 +sa(dp274731 +g225232 +S'Artist Information (' +p274732 +sg225240 +g27 +sg225234 +S'(artist after)' +p274733 +sg225230 +S"Death's Door" +p274734 +sg225236 +S'\n' +p274735 +sa(dp274736 +g225232 +S'Artist Information (' +p274737 +sg225240 +g27 +sg225234 +S'Irish, 1717 - 1771' +p274738 +sg225230 +S'The Ruins of Palmyra' +p274739 +sg225236 +S'(author)' +p274740 +sa(dp274741 +g225232 +S'Artist Information (' +p274742 +sg225240 +g27 +sg225234 +S'Irish, 1717 - 1771' +p274743 +sg225230 +S'The Ruins of Balbec' +p274744 +sg225236 +S'(author)' +p274745 +sa(dp274746 +g225232 +S'J.E. Shadek' +p274747 +sg225240 +g27 +sg225234 +S'bound volume with 93 drawings in mixed media on wove paper' +p274748 +sg225230 +S'J.E. Shadek Sketchbook' +p274749 +sg225236 +S'1861/1862' +p274750 +sa(dp274751 +g225232 +S'Master of the Judgment of Solomon' +p274752 +sg225240 +g27 +sg225234 +S', c. 1580' +p274753 +sg225230 +S'Allegory of Charity' +p274754 +sg225236 +S'\n' +p274755 +sa(dp274756 +g225230 +S'Old Trees along a Bank' +p274757 +sg225232 +S'Jacob van Ruisdael' +p274758 +sg225234 +S'black chalk' +p274759 +sg225236 +S'late 1640s' +p274760 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00037/a00037ee.jpg' +p274761 +sg225240 +g27 +sa(dp274762 +g225230 +S'Landscape with a Village Church' +p274763 +sg225232 +S'Augustin Hirschvogel' +p274764 +sg225234 +S'etching on blue laid paper' +p274765 +sg225236 +S'1545' +p274766 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a00096c1.jpg' +p274767 +sg225240 +g27 +sa(dp274768 +g225230 +S'Possibly William Metcalf' +p274769 +sg225232 +S'The Pollard Limner' +p274770 +sg225234 +S', c. 1730' +p274771 +sg225236 +S'\n' +p274772 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001c1.jpg' +p274773 +sg225240 +g27 +sa(dp274774 +g225230 +S'The Gage Family' +p274775 +sg225232 +S'American 19th Century' +p274776 +sg225234 +S'overall: 137 x 137.4 cm (53 15/16 x 54 1/8 in.)\r\nframed: 159.4 x 159.4 cm (62 3/4 x 62 3/4 in.)' +p274777 +sg225236 +S'\noil on bed ticking' +p274778 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a000041a.jpg' +p274779 +sg225240 +g27 +sa(dp274780 +g225230 +S'Family Group' +p274781 +sg225232 +S'Joshua Johnson' +p274782 +sg225234 +S'oil on canvas' +p274783 +sg225236 +S'c. 1800' +p274784 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000124.jpg' +p274785 +sg225240 +g27 +sa(dp274786 +g225230 +S'Adelina Morton' +p274787 +sg225232 +S'Joshua Johnson' +p274788 +sg225234 +S'oil on canvas' +p274789 +sg225236 +S'c. 1810' +p274790 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000123.jpg' +p274791 +sg225240 +g27 +sa(dp274792 +g225230 +S'Young Lady with a Fan' +p274793 +sg225232 +S'Artist Information (' +p274794 +sg225234 +S'(painter)' +p274795 +sg225236 +S'\n' +p274796 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000c9.jpg' +p274797 +sg225240 +g27 +sa(dp274798 +g225230 +S'Bucks County Farm Outside Doylestown, Pennsylvania' +p274799 +sg225232 +S'American 19th Century' +p274800 +sg225234 +S'overall: 67 x 93.2 cm (26 3/8 x 36 11/16 in.)' +p274801 +sg225236 +S'\noil on canvas' +p274802 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a000041b.jpg' +p274803 +sg225240 +g27 +sa(dp274804 +g225230 +S'Steamship "Erie"' +p274805 +sg225232 +S'American 19th Century' +p274806 +sg225234 +S'overall: 56.6 x 75.1 cm (22 5/16 x 29 9/16 in.)\r\nframed: 68.6 x 86.3 x 5 cm (27 x 34 x 1 15/16 in.)' +p274807 +sg225236 +S'\noil on canvas' +p274808 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000447.jpg' +p274809 +sg225240 +g27 +sa(dp274810 +g225230 +S'The Independent Voter' +p274811 +sg225232 +S'American 19th Century' +p274812 +sg225234 +S'overall: 90.4 x 131.5 cm (35 9/16 x 51 3/4 in.)' +p274813 +sg225236 +S'\noil on canvas' +p274814 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a000041c.jpg' +p274815 +sg225240 +g27 +sa(dp274816 +g225230 +S'The Finish' +p274817 +sg225232 +S'American 19th Century' +p274818 +sg225234 +S'painted surface: 58.7 x 95.3 cm (23 1/8 x 37 1/2 in.)\r\nsupport: 65.8 x 95.8 cm (25 7/8 x 37 11/16 in.)' +p274819 +sg225236 +S'\noil on wood' +p274820 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a000041d.jpg' +p274821 +sg225240 +g27 +sa(dp274822 +g225230 +S'After the Wedding in Warren, Pennsylvania' +p274823 +sg225232 +S'American 20th Century' +p274824 +sg225234 +S'overall: 56 x 76 cm (22 1/16 x 29 15/16 in.)\r\nframed: 64.8 x 85.1 x 6.4 cm (25 1/2 x 33 1/2 x 2 1/2 in.)' +p274825 +sg225236 +S'\noil on canvas' +p274826 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000407.jpg' +p274827 +sg225240 +g27 +sa(dp274828 +g225230 +S'Watermelon on a Plate' +p274829 +sg225232 +S'American 19th Century' +p274830 +sg225234 +S'overall: 45.7 x 61 cm (18 x 24 in.)\r\nframed: 62.2 x 76.8 x 9.8 cm (24 1/2 x 30 1/4 x 3 7/8 in.)' +p274831 +sg225236 +S'\noil on canvas' +p274832 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000446.jpg' +p274833 +sg225240 +g27 +sa(dp274834 +g225230 +S'Interior Scene' +p274835 +sg225232 +S'American 19th Century' +p274836 +sg225234 +S'overall: 71.1 x 60 cm (28 x 23 5/8 in.)\r\nframed: 91.4 x 81.6 x 5.7 cm (36 x 32 1/8 x 2 1/4 in.)' +p274837 +sg225236 +S'\noil on canvas' +p274838 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000428.jpg' +p274839 +sg225240 +g27 +sa(dp274840 +g225230 +S'Portrait of an Unknown Family with a Terrier' +p274841 +sg225232 +S'British 19th Century' +p274842 +sg225234 +S'overall: 103.3 x 80.5 cm (40 11/16 x 31 11/16 in.)' +p274843 +sg225236 +S'\noil on canvas' +p274844 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f02.jpg' +p274845 +sg225240 +g27 +sa(dp274846 +g225230 +S'Ship in Full Sail' +p274847 +sg225232 +S'T. Davies' +p274848 +sg225234 +S'oil on canvas' +p274849 +sg225236 +S'1827' +p274850 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00005/a0000573.jpg' +p274851 +sg225240 +g27 +sa(dp274852 +g225230 +S'Still Life: Fruit, Bird, and Dwarf Pear Tree' +p274853 +sg225232 +S'Charles V. Bond' +p274854 +sg225234 +S'oil on canvas' +p274855 +sg225236 +S'1856' +p274856 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000028.jpg' +p274857 +sg225240 +g27 +sa(dp274858 +g225230 +S'Prize Bull' +p274859 +sg225232 +S'H. Call' +p274860 +sg225234 +S'oil on canvas' +p274861 +sg225236 +S'1876' +p274862 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000036.jpg' +p274863 +sg225240 +g27 +sa(dp274864 +g225230 +S'Boston Harbor' +p274865 +sg225232 +S'Thomas Chambers' +p274866 +sg225234 +S'oil on canvas' +p274867 +sg225236 +S'mid 19th century' +p274868 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000045.jpg' +p274869 +sg225240 +g27 +sa(dp274870 +g225230 +S'Packet Ship Passing Castle Williams, New York Harbor' +p274871 +sg225232 +S'Thomas Chambers' +p274872 +sg225234 +S'oil on canvas' +p274873 +sg225236 +S'mid 19th century' +p274874 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000046.jpg' +p274875 +sg225240 +g27 +sa(dp274876 +g225230 +S'Mrs. John Lothrop' +p274877 +sg225232 +S'John Durand' +p274878 +sg225234 +S'oil on canvas' +p274879 +sg225236 +S'c. 1770' +p274880 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000085.jpg' +p274881 +sg225240 +g27 +sa(dp274882 +g225230 +S'Woman Holding a Book' +p274883 +sg225232 +S'Erastus Salisbury Field' +p274884 +sg225234 +S'oil on canvas' +p274885 +sg225236 +S'c. 1835' +p274886 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000bf.jpg' +p274887 +sg225240 +g27 +sa(dp274888 +g225230 +S'Girl with Reticule and Rose' +p274889 +sg225232 +S'Joseph Whiting Stock' +p274890 +sg225234 +S'oil on canvas' +p274891 +sg225236 +S'c. 1840' +p274892 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a000022c.jpg' +p274893 +sg225240 +g27 +sa(dp274894 +g225230 +S'Bare Knuckles' +p274895 +sg225232 +S'George A. Hayes' +p274896 +sg225234 +S'oil on paperboard on wood panel' +p274897 +sg225236 +S'c. 1870/1885' +p274898 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000e8.jpg' +p274899 +sg225240 +g27 +sa(dp274900 +g225230 +S'Possibly Margaret Robins' +p274901 +sg225232 +S'American 18th Century' +p274902 +sg225234 +S'overall: 67 x 60.7 cm (26 3/8 x 23 7/8 in.)\r\nframed: 69.2 x 76.5 x 4.4 cm (27 1/4 x 30 1/8 x 1 3/4 in.)' +p274903 +sg225236 +S'\noil on canvas' +p274904 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000448.jpg' +p274905 +sg225240 +g27 +sa(dp274906 +g225230 +S"Penn's Treaty with the Indians" +p274907 +sg225232 +S'Edward Hicks' +p274908 +sg225234 +S'oil on canvas' +p274909 +sg225236 +S'c. 1840/1844' +p274910 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000f8.jpg' +p274911 +sg225240 +g27 +sa(dp274912 +g225230 +S'The Grave of William Penn' +p274913 +sg225232 +S'Edward Hicks' +p274914 +sg225234 +S'oil on canvas' +p274915 +sg225236 +S'c. 1847/1848' +p274916 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000f9.jpg' +p274917 +sg225240 +g27 +sa(dp274918 +g225230 +S'The Landing of Columbus' +p274919 +sg225232 +S'Edward Hicks' +p274920 +sg225234 +S'oil on canvas' +p274921 +sg225236 +S'c. 1837' +p274922 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000fa.jpg' +p274923 +sg225240 +g27 +sa(dp274924 +g225230 +S'Portrait of a Child' +p274925 +sg225232 +S'Edward Hicks' +p274926 +sg225234 +S', c. 1840' +p274927 +sg225236 +S'\n' +p274928 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000fb.jpg' +p274929 +sg225240 +g27 +sa(dp274930 +g225230 +S'Peaceable Kingdom' +p274931 +sg225232 +S'Edward Hicks' +p274932 +sg225234 +S'oil on canvas' +p274933 +sg225236 +S'c. 1834' +p274934 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a00004ba.jpg' +p274935 +sg225240 +g27 +sa(dp274936 +g225230 +S'John Harrisson' +p274937 +sg225232 +S'Frederick W. Mayhew' +p274938 +sg225234 +S'oil on canvas' +p274939 +sg225236 +S'c. 1823' +p274940 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000163.jpg' +p274941 +sg225240 +g27 +sa(dp274942 +g225230 +S'Mrs. John Harrisson and Daughter' +p274943 +sg225232 +S'Frederick W. Mayhew' +p274944 +sg225234 +S'oil on canvas' +p274945 +sg225236 +S'c. 1823' +p274946 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001b0.jpg' +p274947 +sg225240 +g27 +sa(dp274948 +g225230 +S'The Burnish Sisters' +p274949 +sg225232 +S'William Matthew Prior' +p274950 +sg225234 +S'oil on canvas' +p274951 +sg225236 +S'1854' +p274952 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001d5.jpg' +p274953 +sg225240 +g27 +sa(dp274954 +g225230 +S'Sisters in Red' +p274955 +sg225232 +S'Sturtevant J. Hamblin' +p274956 +sg225234 +S'oil on canvas' +p274957 +sg225236 +S'c. 1840/1850' +p274958 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000d9.jpg' +p274959 +sg225240 +g27 +sa(dp274960 +g225230 +S'Basket of Fruit with Parrot' +p274961 +sg225232 +S'A.M. Randall' +p274962 +sg225234 +S'oil on canvas' +p274963 +sg225236 +S'1777' +p274964 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001e3.jpg' +p274965 +sg225240 +g27 +sa(dp274966 +g225230 +S"The Sportsman's Dream" +p274967 +sg225232 +S'C.F. Senior' +p274968 +sg225234 +S'oil on canvas' +p274969 +sg225236 +S'1881 or after' +p274970 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a000020d.jpg' +p274971 +sg225240 +g27 +sa(dp274972 +g225230 +S'Joshua Lamb' +p274973 +sg225232 +S'Abram Ross Stanley' +p274974 +sg225234 +S'oil on canvas' +p274975 +sg225236 +S'1842' +p274976 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000223.jpg' +p274977 +sg225240 +g27 +sa(dp274978 +g225230 +S'Baby in Wicker Basket' +p274979 +sg225232 +S'Joseph Whiting Stock' +p274980 +sg225234 +S'oil on canvas' +p274981 +sg225236 +S'c. 1840' +p274982 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a000022b.jpg' +p274983 +sg225240 +g27 +sa(dp274984 +g225230 +S'J. M. Stolle' +p274985 +sg225232 +S'American 18th Century' +p274986 +sg225234 +S'overall: 101.6 x 87 cm (40 x 34 1/4 in.)' +p274987 +sg225236 +S'\noil on canvas' +p274988 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a000045c.jpg' +p274989 +sg225240 +g27 +sa(dp274990 +g225230 +S'The Cat' +p274991 +sg225232 +S'American 19th Century' +p274992 +sg225234 +S'overall: 40.7 x 50.8 cm (16 x 20 in.)\r\nframed: 51.8 x 61.9 x 5.4 cm (20 3/8 x 24 3/8 x 2 1/8 in.)' +p274993 +sg225236 +S'\noil on canvas' +p274994 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000429.jpg' +p274995 +sg225240 +g27 +sa(dp274996 +g225230 +S'Captain Elisha Denison' +p274997 +sg225232 +S'Artist Information (' +p274998 +sg225234 +S'(painter)' +p274999 +sg225236 +S'\n' +p275000 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000078.jpg' +p275001 +sg225240 +g27 +sa(dp275002 +g225230 +S'Mrs. Elizabeth Noyes Denison' +p275003 +sg225232 +S'Artist Information (' +p275004 +sg225234 +S'(painter)' +p275005 +sg225236 +S'\n' +p275006 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000079.jpg' +p275007 +sg225240 +g27 +sa(dp275008 +g225230 +S'Miss Denison of Stonington, Connecticut (possibly Matilda Denison)' +p275009 +sg225232 +S'Artist Information (' +p275010 +sg225234 +S'(painter)' +p275011 +sg225236 +S'\n' +p275012 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a000007a.jpg' +p275013 +sg225240 +g27 +sa(dp275014 +g225230 +S'Horizon of the New World' +p275015 +sg225232 +S'American 19th Century' +p275016 +sg225234 +S'overall: 77.6 x 167 cm (30 9/16 x 65 3/4 in.)\r\nframed: 84.7 x 174.3 x 2.8 cm (33 3/8 x 68 5/8 x 1 1/8 in.)' +p275017 +sg225236 +S'\noil on canvas' +p275018 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a000041e.jpg' +p275019 +sg225240 +g27 +sa(dp275020 +g225230 +S'Innocence' +p275021 +sg225232 +S'American 19th Century' +p275022 +sg225234 +S'overall: 68.9 x 56.5 cm (27 1/8 x 22 1/4 in.)\r\nframed: 82.1 x 69.4 x 3.5 cm (32 5/16 x 27 5/16 x 1 3/8 in.)' +p275023 +sg225236 +S'\noil on canvas' +p275024 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a000042a.jpg' +p275025 +sg225240 +g27 +sa(dp275026 +g225230 +S'Susanna Truax' +p275027 +sg225232 +S'Artist Information (' +p275028 +sg225234 +S'(painter)' +p275029 +sg225236 +S'\n' +p275030 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000ca.jpg' +p275031 +sg225240 +g27 +sa(dp275032 +g225230 +S'Muster Day' +p275033 +sg225232 +S'Charles Henry Granger' +p275034 +sg225234 +S'oil on canvas' +p275035 +sg225236 +S'1843 or after' +p275036 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000cf.jpg' +p275037 +sg225240 +g27 +sa(dp275038 +g225230 +S'Indian Tobacco Shop Sign [recto, Indian facing left]' +p275039 +sg225232 +S'American 19th Century' +p275040 +sg225234 +S'overall: 136.4 x 57.8 cm (53 11/16 x 22 3/4 in.)' +p275041 +sg225236 +S'\noil on wood' +p275042 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00005/a000053f.jpg' +p275043 +sg225240 +g27 +sa(dp275044 +g225230 +S'Indian Tobacco Shop Sign [verso, Indian facing right]' +p275045 +sg225232 +S'American 19th Century' +p275046 +sg225234 +S'overall: 136.4 x 57.8 cm (53 11/16 x 22 3/4 in.)' +p275047 +sg225236 +S'\noil on wood' +p275048 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00005/a0000540.jpg' +p275049 +sg225240 +g27 +sa(dp275050 +g225230 +S'Catalyntje Post' +p275051 +sg225232 +S'American 18th Century' +p275052 +sg225234 +S'overall: 133.6 x 90.4 cm (52 5/8 x 35 9/16 in.)' +p275053 +sg225236 +S'\noil on canvas' +p275054 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000449.jpg' +p275055 +sg225240 +g27 +sa(dp275056 +g225230 +S'Portrait of a Man in Red' +p275057 +sg225232 +S'The Sherman Limner' +p275058 +sg225234 +S'oil on canvas' +p275059 +sg225236 +S'c. 1785/1790' +p275060 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000211.jpg' +p275061 +sg225240 +g27 +sa(dp275062 +g225230 +S'Portrait of a Lady in Red' +p275063 +sg225232 +S'The Sherman Limner' +p275064 +sg225234 +S'oil on canvas' +p275065 +sg225236 +S'c. 1785/1790' +p275066 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000210.jpg' +p275067 +sg225240 +g27 +sa(dp275068 +g225230 +S'Sisters' +p275069 +sg225232 +S'American 19th Century' +p275070 +sg225234 +S'overall: 46 x 60.8 cm (18 1/8 x 23 15/16 in.)\r\nframed: 60 x 74.6 x 6 cm (23 5/8 x 29 3/8 x 2 3/8 in.)' +p275071 +sg225236 +S'\noil on canvas' +p275072 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a000044a.jpg' +p275073 +sg225240 +g27 +sa(dp275074 +g225230 +S'Bowl of Fruit' +p275075 +sg225232 +S'American 19th Century' +p275076 +sg225234 +S'overall: 78.5 x 98.8 cm (30 7/8 x 38 7/8 in.)\r\nframed: 91.4 x 113 x 5.7 cm (36 x 44 1/2 x 2 1/4 in.)' +p275077 +sg225236 +S'\noil on canvas' +p275078 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000405.jpg' +p275079 +sg225240 +g27 +sa(dp275080 +g225230 +S'Mother and Child in White' +p275081 +sg225232 +S'American 18th Century' +p275082 +sg225234 +S'overall: 89.5 x 68.7 cm (35 1/4 x 27 1/16 in.)\r\nframed: 106 x 85.4 x 4.4 cm (41 3/4 x 33 5/8 x 1 3/4 in.)' +p275083 +sg225236 +S'\noil on canvas' +p275084 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a000042d.jpg' +p275085 +sg225240 +g27 +sa(dp275086 +g225230 +S'Young Woman with a Butterfly' +p275087 +sg225232 +S'American 18th Century' +p275088 +sg225234 +S'overall: 137.3 x 104.6 cm (54 1/16 x 41 3/16 in.)\r\nframed: 101.6 x 86.4 x 5.1 cm (40 x 34 x 2 in.)' +p275089 +sg225236 +S'\noil on canvas' +p275090 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a000042b.jpg' +p275091 +sg225240 +g27 +sa(dp275092 +g225230 +S'The Domino Girl' +p275093 +sg225232 +S'American 18th Century' +p275094 +sg225234 +S'overall: 58.1 x 46.8 cm (22 7/8 x 18 7/16 in.)\r\nframed: 70.5 x 59.1 x 5.1 cm (27 3/4 x 23 1/4 x 2 in.)' +p275095 +sg225236 +S'\noil on canvas' +p275096 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a000041f.jpg' +p275097 +sg225240 +g27 +sa(dp275098 +g225230 +S'Girl with Kitten' +p275099 +sg225232 +S'Joseph Goodhue Chandler' +p275100 +sg225234 +S'oil on canvas' +p275101 +sg225236 +S'c. 1836/1838' +p275102 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000048.jpg' +p275103 +sg225240 +g27 +sa(dp275104 +g225230 +S'Basket of Fruit with Flowers' +p275105 +sg225232 +S'American 19th Century' +p275106 +sg225234 +S'overall: 35.1 x 45.5 cm (13 13/16 x 17 15/16 in.)' +p275107 +sg225236 +S'\noil on wood' +p275108 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a0000406.jpg' +p275109 +sg225240 +g27 +sa(dp275110 +g225230 +S'Dr. Philemon Tracy' +p275111 +sg225232 +S'American 18th Century' +p275112 +sg225234 +S'overall: 79.1 x 73.4 cm (31 1/8 x 28 7/8 in.)\r\nframed: 94 x 88.6 x 6 cm (37 x 34 7/8 x 2 3/8 in.)' +p275113 +sg225236 +S'\noil on paper on board on canvas' +p275114 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a000044b.jpg' +p275115 +sg225240 +g27 +sa(dp275116 +g225230 +S'Lady Wearing a Large White Cap' +p275117 +sg225232 +S'American 18th Century' +p275118 +sg225234 +S'overall: 76.5 x 65 cm (30 1/8 x 25 9/16 in.)\r\nframed: 81.6 x 93.4 x 6.4 cm (32 1/8 x 36 3/4 x 2 1/2 in.)' +p275119 +sg225236 +S'\noil on canvas' +p275120 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a000042e.jpg' +p275121 +sg225240 +g27 +sa(dp275122 +g225230 +S'Dr. John Safford and Family' +p275123 +sg225232 +S'Reuben Rowley' +p275124 +sg225234 +S', c. 1830' +p275125 +sg225236 +S'\n' +p275126 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001fa.jpg' +p275127 +sg225240 +g27 +sa(dp275128 +g225230 +S'Fruit and Baltimore Oriole' +p275129 +sg225232 +S'Wagguno' +p275130 +sg225234 +S'oil on canvas' +p275131 +sg225236 +S'1858' +p275132 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000286.jpg' +p275133 +sg225240 +g27 +sa(dp275134 +g225232 +S'Ruth Henshaw Bascom' +p275135 +sg225240 +g27 +sg225234 +S'pastel and graphite with watercolor on two sheets of paper, the bottom sheet partially cut in silhouette' +p275136 +sg225230 +S'Mr. William Waters' +p275137 +sg225236 +S'c. 1825/1830' +p275138 +sa(dp275139 +g225232 +S'Ruth Henshaw Bascom' +p275140 +sg225240 +g27 +sg225234 +S'pastel and graphite with watercolor on four sheets of paper, the head and shoulders of the sitter cut in silhouette' +p275141 +sg225230 +S'Mrs. William Waters' +p275142 +sg225236 +S'c. 1825/1830' +p275143 +sa(dp275144 +g225232 +S'B. Doyle' +p275145 +sg225240 +g27 +sg225234 +S'pastel' +p275146 +sg225230 +S'Portrait of a Girl with Blue Eyes and Blue Dress' +p275147 +sg225236 +S'c. 1820' +p275148 +sa(dp275149 +g225232 +S'Emily Eastman' +p275150 +sg225240 +g27 +sg225234 +S'pen and black ink, watercolor, and touches of graphite on wove paper' +p275151 +sg225230 +S'Curls and Ruffles' +p275152 +sg225236 +S'unknown date\n' +p275153 +sa(dp275154 +g225230 +S'Feathers and Pearls' +p275155 +sg225232 +S'Emily Eastman' +p275156 +sg225234 +S'graphite with watercolor and touches of white heightening on wove paper' +p275157 +sg225236 +S'unknown date\n' +p275158 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008db.jpg' +p275159 +sg225240 +g27 +sa(dp275160 +g225232 +S'Jacob Maentel' +p275161 +sg225240 +g27 +sg225234 +S'pen and watercolor' +p275162 +sg225230 +S'General Schumacker' +p275163 +sg225236 +S'c. 1812' +p275164 +sa(dp275165 +g225232 +S'Jacob Maentel' +p275166 +sg225240 +g27 +sg225234 +S'pen and watercolor' +p275167 +sg225230 +S"General Schumacker's Daughter" +p275168 +sg225236 +S'c. 1812' +p275169 +sa(dp275170 +g225232 +S'American 19th Century' +p275171 +sg225240 +g27 +sg225234 +S'overall: 66.1 x 56 cm (26 x 22 1/16 in.)' +p275172 +sg225230 +S'Young Man with Folding Rule' +p275173 +sg225236 +S'\npastel and applied paper' +p275174 +sa(dp275175 +g225230 +S'Lady with Red and Blue Sewing Bag' +p275176 +sg225232 +S'American 19th Century' +p275177 +sg225234 +S'overall: 66 x 56 cm (26 x 22 1/16 in.)' +p275178 +sg225236 +S'\npastel and applied paper' +p275179 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a000089d.jpg' +p275180 +sg225240 +g27 +sa(dp275181 +g225230 +S'Bowl of Fruit' +p275182 +sg225232 +S'American 19th Century' +p275183 +sg225234 +S'overall: 36.2 x 42.4 cm (14 1/4 x 16 11/16 in.)' +p275184 +sg225236 +S'\nwatercolor and stencil on wove paper' +p275185 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a000089e.jpg' +p275186 +sg225240 +g27 +sa(dp275187 +g225230 +S'Victory Parade' +p275188 +sg225232 +S'American 19th Century' +p275189 +sg225234 +S'overall: 40 x 32.1 cm (15 3/4 x 12 5/8 in.)' +p275190 +sg225236 +S'\npen and ink with watercolor' +p275191 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008a1.jpg' +p275192 +sg225240 +g27 +sa(dp275193 +g225232 +S'American 19th Century' +p275194 +sg225240 +g27 +sg225234 +S'overall: 71 x 57.5 cm (27 15/16 x 22 5/8 in.)' +p275195 +sg225230 +S'George Edward Blake' +p275196 +sg225236 +S'\npastel on blue laid paper' +p275197 +sa(dp275198 +g225232 +S'American 19th Century' +p275199 +sg225240 +g27 +sg225234 +S'sight size: 70 x 55 cm (27 9/16 x 21 5/8 in.)' +p275200 +sg225230 +S'Anna Margaret Blake and Her Two Children' +p275201 +sg225236 +S'\npastel' +p275202 +sa(dp275203 +g225232 +S'American 19th Century' +p275204 +sg225240 +g27 +sg225234 +S'overall: 66 x 49.9 cm (26 x 19 5/8 in.)' +p275205 +sg225230 +S'Lady in Pink Holding an Apple' +p275206 +sg225236 +S'\npastel' +p275207 +sa(dp275208 +g225232 +S'American 19th Century' +p275209 +sg225240 +g27 +sg225234 +S'overall: 60.5 x 49.1 cm (23 13/16 x 19 5/16 in.)' +p275210 +sg225230 +S'Girl by a Rosebush' +p275211 +sg225236 +S'\nwatercolor and graphite on wove paper' +p275212 +sa(dp275213 +g225232 +S'American 19th Century' +p275214 +sg225240 +g27 +sg225234 +S'overall: 44 x 55.3 cm (17 5/16 x 21 3/4 in.)' +p275215 +sg225230 +S'Fruit in a Yellow Bowl' +p275216 +sg225236 +S'\nwatercolor' +p275217 +sa(dp275218 +g225232 +S'American 19th Century' +p275219 +sg225240 +g27 +sg225234 +S'overall: 67.5 x 82.7 cm (26 9/16 x 32 9/16 in.)' +p275220 +sg225230 +S'Portrait of Man, Woman, and Child' +p275221 +sg225236 +S'\npastel and graphite with watercolor and applied pieces' +p275222 +sa(dp275223 +g225232 +S'American 19th Century' +p275224 +sg225240 +g27 +sg225234 +S'overall: 65.7 x 55.2 cm (25 7/8 x 21 3/4 in.)' +p275225 +sg225230 +S'Portrait of a Man Holding a Book' +p275226 +sg225236 +S'\npastel' +p275227 +sa(dp275228 +g225232 +S'American 19th Century' +p275229 +sg225240 +g27 +sg225234 +S'overall: 65.5 x 55.5 cm (25 13/16 x 21 7/8 in.)' +p275230 +sg225230 +S'Portrait of a Woman with a Lace Cap' +p275231 +sg225236 +S'\npastel on paper sheet backed by several layers of paper, the last of which is newsprint bearing the date 1823' +p275232 +sa(dp275233 +g225232 +S'Micah Williams' +p275234 +sg225240 +g27 +sg225234 +S'pastel on laid paper' +p275235 +sg225230 +S'Child with Pet Dog' +p275236 +sg225236 +S'c. 1825' +p275237 +sa(dp275238 +g225230 +S'On Point' +p275239 +sg225232 +S'D.G. Stouter' +p275240 +sg225234 +S'oil on canvas' +p275241 +sg225236 +S'1854 or after' +p275242 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a000022d.jpg' +p275243 +sg225240 +g27 +sa(dp275244 +g225230 +S'The Neigh of an Iron Horse' +p275245 +sg225232 +S'Joseph Anderson Faris' +p275246 +sg225234 +S'oil on canvas' +p275247 +sg225236 +S'186(?)' +p275248 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000ad.jpg' +p275249 +sg225240 +g27 +sa(dp275250 +g225230 +S'John Lothrop' +p275251 +sg225232 +S'John Durand' +p275252 +sg225234 +S'oil on canvas' +p275253 +sg225236 +S'c. 1770' +p275254 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000086.jpg' +p275255 +sg225240 +g27 +sa(dp275256 +g225230 +S'Two Grotesque Heads' +p275257 +sg225232 +S'Artist Information (' +p275258 +sg225234 +S'(artist after)' +p275259 +sg225236 +S'\n' +p275260 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00066/a00066a8.jpg' +p275261 +sg225240 +g27 +sa(dp275262 +g225230 +S'Apollo' +p275263 +sg225232 +S'Fran\xc3\xa7ois Boucher' +p275264 +sg225234 +S'black chalk and stumping, heightened with white chalk on greenish-gray laid paper' +p275265 +sg225236 +S'c. 1752' +p275266 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00031/a000319a.jpg' +p275267 +sg225240 +g27 +sa(dp275268 +g225230 +S'Cr\xc3\xaapes' +p275269 +sg225232 +S'Fran\xc3\xa7ois Boucher' +p275270 +sg225234 +S'pen and brown ink with brown wash over traces of graphite on laid paper' +p275271 +sg225236 +S'1761/1763' +p275272 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00031/a000319b.jpg' +p275273 +sg225240 +g27 +sa(dp275274 +g225230 +S'A Nude Woman Reaching to the Right' +p275275 +sg225232 +S'Fran\xc3\xa7ois Boucher' +p275276 +sg225234 +S'black chalk with stumping, heightened with white chalk on brown laid paper (formerly blue)' +p275277 +sg225236 +S'c. 1769' +p275278 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00031/a000319c.jpg' +p275279 +sg225240 +g27 +sa(dp275280 +g225232 +S'Artist Information (' +p275281 +sg225240 +g27 +sg225234 +S'Italian, 43 B.C. - 17/18 A.D.' +p275282 +sg225230 +S"Les Metamorphoses d'Ovide" +p275283 +sg225236 +S'(author)' +p275284 +sa(dp275285 +g225232 +S'Artist Information (' +p275286 +sg225240 +g27 +sg225234 +S'(artist)' +p275287 +sg225230 +S'Album of Prints after Old Master Drawings' +p275288 +sg225236 +S'\n' +p275289 +sa(dp275290 +g225230 +S'Goatherd Piping to Four Goats' +p275291 +sg225232 +S'Francesco Londonio' +p275292 +sg225234 +S'etching on blue paper with white heightening' +p275293 +sg225236 +S'unknown date\n' +p275294 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb4e.jpg' +p275295 +sg225240 +g27 +sa(dp275296 +g225232 +S'Gustave Adolphe Simonau' +p275297 +sg225240 +g27 +sg225234 +S'lithograph' +p275298 +sg225230 +S'Hotel-de-Ville de Louvain' +p275299 +sg225236 +S'1844' +p275300 +sa(dp275301 +g225230 +S'Sidon' +p275302 +sg225232 +S'Sanford Robinson Gifford' +p275303 +sg225234 +S'graphite on greenish wove paper' +p275304 +sg225236 +S'c. 1868/1869' +p275305 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0b9.jpg' +p275306 +sg225240 +g27 +sa(dp275307 +g225230 +S'Portrait of an Old Woman' +p275308 +sg225232 +S'Eastman Johnson' +p275309 +sg225234 +S'black crayon and graphite heightened with white on green wove paper' +p275310 +sg225236 +S'early 1840s' +p275311 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0d4.jpg' +p275312 +sg225240 +g27 +sa(dp275313 +g225230 +S'Tree and Foliage' +p275314 +sg225232 +S'Walter Shirlaw' +p275315 +sg225234 +S'graphite on wove paper' +p275316 +sg225236 +S'probably c. 1873' +p275317 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4cd.jpg' +p275318 +sg225240 +g27 +sa(dp275319 +g225232 +S'Alfred Stieglitz' +p275320 +sg225240 +g27 +sg225234 +S'platinum print' +p275321 +sg225230 +S"Georgia O'Keeffe at 291" +p275322 +sg225236 +S'1917' +p275323 +sa(dp275324 +g225230 +S"Georgia O'Keeffe at 291" +p275325 +sg225232 +S'Alfred Stieglitz' +p275326 +sg225234 +S'platinum print' +p275327 +sg225236 +S'1917' +p275328 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00062/a0006284.jpg' +p275329 +sg225240 +g27 +sa(dp275330 +g225232 +S'Alfred Stieglitz' +p275331 +sg225240 +g27 +sg225234 +S'Satista print' +p275332 +sg225230 +S"Georgia O'Keeffe at 291" +p275333 +sg225236 +S'1917' +p275334 +sa(dp275335 +g225230 +S"Georgia O'Keeffe--Hands" +p275336 +sg225232 +S'Alfred Stieglitz' +p275337 +sg225234 +S'Satista print' +p275338 +sg225236 +S'1917' +p275339 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00062/a0006285.jpg' +p275340 +sg225240 +g27 +sa(dp275341 +g225232 +S'Alfred Stieglitz' +p275342 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275343 +sg225230 +S"Georgia O'Keeffe--Exhibition at 291" +p275344 +sg225236 +S'1917' +p275345 +sa(dp275346 +g225232 +S'Alfred Stieglitz' +p275347 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275348 +sg225230 +S"Georgia O'Keeffe" +p275349 +sg225236 +S'1918' +p275350 +sa(dp275351 +g225232 +S'Alfred Stieglitz' +p275352 +sg225240 +g27 +sg225234 +S'platinum print' +p275353 +sg225230 +S"Georgia O'Keeffe" +p275354 +sg225236 +S'1918' +p275355 +sa(dp275356 +g225232 +S'Alfred Stieglitz' +p275357 +sg225240 +g27 +sg225234 +S'palladium print' +p275358 +sg225230 +S"Georgia O'Keeffe" +p275359 +sg225236 +S'1918' +p275360 +sa(dp275361 +g225232 +S'Alfred Stieglitz' +p275362 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275363 +sg225230 +S"Georgia O'Keeffe" +p275364 +sg225236 +S'1920' +p275365 +sa(dp275366 +g225232 +S'Alfred Stieglitz' +p275367 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275368 +sg225230 +S"Georgia O'Keeffe" +p275369 +sg225236 +S'1920' +p275370 +sa(dp275371 +g225232 +S'Alfred Stieglitz' +p275372 +sg225240 +g27 +sg225234 +S'palladium print' +p275373 +sg225230 +S"Georgia O'Keeffe" +p275374 +sg225236 +S'1918' +p275375 +sa(dp275376 +g225232 +S'Alfred Stieglitz' +p275377 +sg225240 +g27 +sg225234 +S'platinum print' +p275378 +sg225230 +S"Georgia O'Keeffe" +p275379 +sg225236 +S'1918' +p275380 +sa(dp275381 +g225232 +S'Alfred Stieglitz' +p275382 +sg225240 +g27 +sg225234 +S'palladium print' +p275383 +sg225230 +S"Georgia O'Keeffe" +p275384 +sg225236 +S'1918' +p275385 +sa(dp275386 +g225232 +S'Alfred Stieglitz' +p275387 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275388 +sg225230 +S"Georgia O'Keeffe" +p275389 +sg225236 +S'1918' +p275390 +sa(dp275391 +g225232 +S'Alfred Stieglitz' +p275392 +sg225240 +g27 +sg225234 +S'palladium print' +p275393 +sg225230 +S"Georgia O'Keeffe" +p275394 +sg225236 +S'1918' +p275395 +sa(dp275396 +g225232 +S'Alfred Stieglitz' +p275397 +sg225240 +g27 +sg225234 +S'palladium print' +p275398 +sg225230 +S"Georgia O'Keeffe" +p275399 +sg225236 +S'possibly 1918' +p275400 +sa(dp275401 +g225232 +S'Alfred Stieglitz' +p275402 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275403 +sg225230 +S"Georgia O'Keeffe" +p275404 +sg225236 +S'possibly 1918' +p275405 +sa(dp275406 +g225232 +S'Alfred Stieglitz' +p275407 +sg225240 +g27 +sg225234 +S'palladium print' +p275408 +sg225230 +S"Georgia O'Keeffe" +p275409 +sg225236 +S'1918' +p275410 +sa(dp275411 +g225232 +S'Alfred Stieglitz' +p275412 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275413 +sg225230 +S"Georgia O'Keeffe" +p275414 +sg225236 +S'1918' +p275415 +sa(dp275416 +g225232 +S'Alfred Stieglitz' +p275417 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275418 +sg225230 +S"Georgia O'Keeffe" +p275419 +sg225236 +S'1918' +p275420 +sa(dp275421 +g225232 +S'Alfred Stieglitz' +p275422 +sg225240 +g27 +sg225234 +S'palladium print' +p275423 +sg225230 +S"Georgia O'Keeffe" +p275424 +sg225236 +S'possibly 1918' +p275425 +sa(dp275426 +g225232 +S'Alfred Stieglitz' +p275427 +sg225240 +g27 +sg225234 +S'palladium print' +p275428 +sg225230 +S"Georgia O'Keeffe" +p275429 +sg225236 +S'1918' +p275430 +sa(dp275431 +g225232 +S'Alfred Stieglitz' +p275432 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275433 +sg225230 +S"Georgia O'Keeffe" +p275434 +sg225236 +S'1918' +p275435 +sa(dp275436 +g225232 +S'Alfred Stieglitz' +p275437 +sg225240 +g27 +sg225234 +S'palladium print' +p275438 +sg225230 +S"Georgia O'Keeffe" +p275439 +sg225236 +S'1918' +p275440 +sa(dp275441 +g225232 +S'Alfred Stieglitz' +p275442 +sg225240 +g27 +sg225234 +S'palladium print' +p275443 +sg225230 +S"Georgia O'Keeffe" +p275444 +sg225236 +S'1918' +p275445 +sa(dp275446 +g225232 +S'Alfred Stieglitz' +p275447 +sg225240 +g27 +sg225234 +S'palladium print' +p275448 +sg225230 +S"Georgia O'Keeffe" +p275449 +sg225236 +S'1918' +p275450 +sa(dp275451 +g225232 +S'Alfred Stieglitz' +p275452 +sg225240 +g27 +sg225234 +S'palladium print with mercury' +p275453 +sg225230 +S"Georgia O'Keeffe" +p275454 +sg225236 +S'1918' +p275455 +sa(dp275456 +g225232 +S'Alfred Stieglitz' +p275457 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275458 +sg225230 +S"Georgia O'Keeffe" +p275459 +sg225236 +S'1918' +p275460 +sa(dp275461 +g225232 +S'Alfred Stieglitz' +p275462 +sg225240 +g27 +sg225234 +S'platinum print' +p275463 +sg225230 +S"Georgia O'Keeffe--Torso" +p275464 +sg225236 +S'1918/1919' +p275465 +sa(dp275466 +g225232 +S'Alfred Stieglitz' +p275467 +sg225240 +g27 +sg225234 +S'palladium print' +p275468 +sg225230 +S"Georgia O'Keeffe--Torso" +p275469 +sg225236 +S'1918/1919' +p275470 +sa(dp275471 +g225232 +S'Alfred Stieglitz' +p275472 +sg225240 +g27 +sg225234 +S'platinum print' +p275473 +sg225230 +S"Georgia O'Keeffe--Torso" +p275474 +sg225236 +S'1918/1919' +p275475 +sa(dp275476 +g225232 +S'Alfred Stieglitz' +p275477 +sg225240 +g27 +sg225234 +S'palladium print' +p275478 +sg225230 +S"Georgia O'Keeffe--Torso" +p275479 +sg225236 +S'1918/1919' +p275480 +sa(dp275481 +g225232 +S'Alfred Stieglitz' +p275482 +sg225240 +g27 +sg225234 +S'platinum print' +p275483 +sg225230 +S"Georgia O'Keeffe--Torso" +p275484 +sg225236 +S'1918/1919' +p275485 +sa(dp275486 +g225232 +S'Alfred Stieglitz' +p275487 +sg225240 +g27 +sg225234 +S'palladium print' +p275488 +sg225230 +S"Georgia O'Keeffe--Torso" +p275489 +sg225236 +S'1918/1919' +p275490 +sa(dp275491 +g225232 +S'Alfred Stieglitz' +p275492 +sg225240 +g27 +sg225234 +S'palladium print' +p275493 +sg225230 +S"Georgia O'Keeffe--Torso" +p275494 +sg225236 +S'1918/1919' +p275495 +sa(dp275496 +g225232 +S'Alfred Stieglitz' +p275497 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275498 +sg225230 +S"Georgia O'Keeffe--Torso" +p275499 +sg225236 +S'1918' +p275500 +sa(dp275501 +g225232 +S'Alfred Stieglitz' +p275502 +sg225240 +g27 +sg225234 +S'palladium print' +p275503 +sg225230 +S"Georgia O'Keeffe--Torso" +p275504 +sg225236 +S'1918' +p275505 +sa(dp275506 +g225232 +S'Alfred Stieglitz' +p275507 +sg225240 +g27 +sg225234 +S'palladium print' +p275508 +sg225230 +S"Georgia O'Keeffe--Torso" +p275509 +sg225236 +S'1918' +p275510 +sa(dp275511 +g225232 +S'Alfred Stieglitz' +p275512 +sg225240 +g27 +sg225234 +S'palladium print' +p275513 +sg225230 +S"Georgia O'Keeffe--Torso" +p275514 +sg225236 +S'1918' +p275515 +sa(dp275516 +g225232 +S'Alfred Stieglitz' +p275517 +sg225240 +g27 +sg225234 +S'palladium print' +p275518 +sg225230 +S"Georgia O'Keeffe--Hands" +p275519 +sg225236 +S'1918' +p275520 +sa(dp275521 +g225232 +S'Alfred Stieglitz' +p275522 +sg225240 +g27 +sg225234 +S'palladium print' +p275523 +sg225230 +S"Georgia O'Keeffe--Hands" +p275524 +sg225236 +S'1918' +p275525 +sa(dp275526 +g225232 +S'Alfred Stieglitz' +p275527 +sg225240 +g27 +sg225234 +S'palladium print with mercury' +p275528 +sg225230 +S"Georgia O'Keeffe--Hands" +p275529 +sg225236 +S'1918' +p275530 +sa(dp275531 +g225232 +S'Alfred Stieglitz' +p275532 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275533 +sg225230 +S"Georgia O'Keeffe--Hands" +p275534 +sg225236 +S'1918' +p275535 +sa(dp275536 +g225232 +S'Alfred Stieglitz' +p275537 +sg225240 +g27 +sg225234 +S'platinum print' +p275538 +sg225230 +S"Georgia O'Keeffe--Hands" +p275539 +sg225236 +S'1918' +p275540 +sa(dp275541 +g225232 +S'Alfred Stieglitz' +p275542 +sg225240 +g27 +sg225234 +S'platinum print' +p275543 +sg225230 +S"Georgia O'Keeffe--Hand" +p275544 +sg225236 +S'1918' +p275545 +sa(dp275546 +g225232 +S'Alfred Stieglitz' +p275547 +sg225240 +g27 +sg225234 +S'palladium print' +p275548 +sg225230 +S"Georgia O'Keeffe--Hands" +p275549 +sg225236 +S'1919' +p275550 +sa(dp275551 +g225232 +S'Alfred Stieglitz' +p275552 +sg225240 +g27 +sg225234 +S'palladium print' +p275553 +sg225230 +S"Georgia O'Keeffe--Hands" +p275554 +sg225236 +S'1919' +p275555 +sa(dp275556 +g225232 +S'Alfred Stieglitz' +p275557 +sg225240 +g27 +sg225234 +S'palladium print' +p275558 +sg225230 +S"Georgia O'Keeffe--Hands" +p275559 +sg225236 +S'1920/1922' +p275560 +sa(dp275561 +g225232 +S'Alfred Stieglitz' +p275562 +sg225240 +g27 +sg225234 +S'platinum print mounted on black laid paper' +p275563 +sg225230 +S"Georgia O'Keeffe" +p275564 +sg225236 +S'1918' +p275565 +sa(dp275566 +g225232 +S'Alfred Stieglitz' +p275567 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275568 +sg225230 +S"Georgia O'Keeffe" +p275569 +sg225236 +S'1918' +p275570 +sa(dp275571 +g225232 +S'Alfred Stieglitz' +p275572 +sg225240 +g27 +sg225234 +S'platinum print mounted on black laid paper' +p275573 +sg225230 +S"Georgia O'Keeffe" +p275574 +sg225236 +S'1918' +p275575 +sa(dp275576 +g225232 +S'Alfred Stieglitz' +p275577 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275578 +sg225230 +S"Georgia O'Keeffe" +p275579 +sg225236 +S'1918' +p275580 +sa(dp275581 +g225232 +S'Alfred Stieglitz' +p275582 +sg225240 +g27 +sg225234 +S'palladium print' +p275583 +sg225230 +S"Georgia O'Keeffe--Feet" +p275584 +sg225236 +S'1918' +p275585 +sa(dp275586 +g225232 +S'Alfred Stieglitz' +p275587 +sg225240 +g27 +sg225234 +S'palladium print with mercury' +p275588 +sg225230 +S"Georgia O'Keeffe--Feet" +p275589 +sg225236 +S'1918' +p275590 +sa(dp275591 +g225232 +S'Alfred Stieglitz' +p275592 +sg225240 +g27 +sg225234 +S'palladium print' +p275593 +sg225230 +S"Georgia O'Keeffe--Feet and Sculpture" +p275594 +sg225236 +S'1919' +p275595 +sa(dp275596 +g225232 +S'Alfred Stieglitz' +p275597 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275598 +sg225230 +S"Georgia O'Keeffe--Feet and Sculpture" +p275599 +sg225236 +S'1919' +p275600 +sa(dp275601 +g225232 +S'Alfred Stieglitz' +p275602 +sg225240 +g27 +sg225234 +S'palladium print' +p275603 +sg225230 +S"Georgia O'Keeffe--Feet" +p275604 +sg225236 +S'1918' +p275605 +sa(dp275606 +g225232 +S'Alfred Stieglitz' +p275607 +sg225240 +g27 +sg225234 +S'palladium print' +p275608 +sg225230 +S"Georgia O'Keeffe--Legs" +p275609 +sg225236 +S'1919' +p275610 +sa(dp275611 +g225232 +S'Alfred Stieglitz' +p275612 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275613 +sg225230 +S"Georgia O'Keeffe" +p275614 +sg225236 +S'1918' +p275615 +sa(dp275616 +g225232 +S'Alfred Stieglitz' +p275617 +sg225240 +g27 +sg225234 +S'palladium print' +p275618 +sg225230 +S"Georgia O'Keeffe" +p275619 +sg225236 +S'1918' +p275620 +sa(dp275621 +g225232 +S'Alfred Stieglitz' +p275622 +sg225240 +g27 +sg225234 +S'palladium print' +p275623 +sg225230 +S"Georgia O'Keeffe" +p275624 +sg225236 +S'1918' +p275625 +sa(dp275626 +g225232 +S'Alfred Stieglitz' +p275627 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275628 +sg225230 +S"Georgia O'Keeffe" +p275629 +sg225236 +S'1918' +p275630 +sa(dp275631 +g225232 +S'Alfred Stieglitz' +p275632 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275633 +sg225230 +S"Georgia O'Keeffe" +p275634 +sg225236 +S'1918' +p275635 +sa(dp275636 +g225232 +S'Alfred Stieglitz' +p275637 +sg225240 +g27 +sg225234 +S'palladium print' +p275638 +sg225230 +S"Georgia O'Keeffe" +p275639 +sg225236 +S'1918' +p275640 +sa(dp275641 +g225232 +S'Alfred Stieglitz' +p275642 +sg225240 +g27 +sg225234 +S'palladium print' +p275643 +sg225230 +S"Georgia O'Keeffe" +p275644 +sg225236 +S'1918' +p275645 +sa(dp275646 +g225232 +S'Alfred Stieglitz' +p275647 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard, 1924/1937' +p275648 +sg225230 +S"Georgia O'Keeffe" +p275649 +sg225236 +S'1918' +p275650 +sa(dp275651 +g225232 +S'Alfred Stieglitz' +p275652 +sg225240 +g27 +sg225234 +S'palladium print' +p275653 +sg225230 +S"Georgia O'Keeffe" +p275654 +sg225236 +S'1918' +p275655 +sa(dp275656 +g225232 +S'Alfred Stieglitz' +p275657 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275658 +sg225230 +S"Georgia O'Keeffe" +p275659 +sg225236 +S'1918' +p275660 +sa(dp275661 +g225232 +S'Alfred Stieglitz' +p275662 +sg225240 +g27 +sg225234 +S'palladium print' +p275663 +sg225230 +S"Georgia O'Keeffe" +p275664 +sg225236 +S'1918' +p275665 +sa(dp275666 +g225232 +S'Alfred Stieglitz' +p275667 +sg225240 +g27 +sg225234 +S'platinum print' +p275668 +sg225230 +S"Georgia O'Keeffe" +p275669 +sg225236 +S'1918' +p275670 +sa(dp275671 +g225232 +S'Alfred Stieglitz' +p275672 +sg225240 +g27 +sg225234 +S'platinum print, 1927' +p275673 +sg225230 +S"Georgia O'Keeffe" +p275674 +sg225236 +S'1918' +p275675 +sa(dp275676 +g225232 +S'Alfred Stieglitz' +p275677 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275678 +sg225230 +S"Georgia O'Keeffe" +p275679 +sg225236 +S'1918' +p275680 +sa(dp275681 +g225232 +S'Alfred Stieglitz' +p275682 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275683 +sg225230 +S"Georgia O'Keeffe" +p275684 +sg225236 +S'1918' +p275685 +sa(dp275686 +g225232 +S'Alfred Stieglitz' +p275687 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275688 +sg225230 +S"Georgia O'Keeffe" +p275689 +sg225236 +S'1918' +p275690 +sa(dp275691 +g225232 +S'Alfred Stieglitz' +p275692 +sg225240 +g27 +sg225234 +S'platinum print' +p275693 +sg225230 +S"Georgia O'Keeffe" +p275694 +sg225236 +S'1918' +p275695 +sa(dp275696 +g225232 +S'Alfred Stieglitz' +p275697 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275698 +sg225230 +S"Georgia O'Keeffe" +p275699 +sg225236 +S'1918' +p275700 +sa(dp275701 +g225232 +S'Alfred Stieglitz' +p275702 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275703 +sg225230 +S"Georgia O'Keeffe" +p275704 +sg225236 +S'1918' +p275705 +sa(dp275706 +g225232 +S'Alfred Stieglitz' +p275707 +sg225240 +g27 +sg225234 +S'platinum print' +p275708 +sg225230 +S"Georgia O'Keeffe" +p275709 +sg225236 +S'1918' +p275710 +sa(dp275711 +g225232 +S'Alfred Stieglitz' +p275712 +sg225240 +g27 +sg225234 +S'platinum print' +p275713 +sg225230 +S"Georgia O'Keeffe" +p275714 +sg225236 +S'1918' +p275715 +sa(dp275716 +g225232 +S'Alfred Stieglitz' +p275717 +sg225240 +g27 +sg225234 +S'platinum print' +p275718 +sg225230 +S"Georgia O'Keeffe" +p275719 +sg225236 +S'1918' +p275720 +sa(dp275721 +g225232 +S'Alfred Stieglitz' +p275722 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275723 +sg225230 +S"Georgia O'Keeffe" +p275724 +sg225236 +S'1918' +p275725 +sa(dp275726 +g225232 +S'Alfred Stieglitz' +p275727 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275728 +sg225230 +S"Georgia O'Keeffe" +p275729 +sg225236 +S'1918' +p275730 +sa(dp275731 +g225232 +S'Alfred Stieglitz' +p275732 +sg225240 +g27 +sg225234 +S'platinum print' +p275733 +sg225230 +S"Georgia O'Keeffe" +p275734 +sg225236 +S'1918' +p275735 +sa(dp275736 +g225232 +S'Alfred Stieglitz' +p275737 +sg225240 +g27 +sg225234 +S'palladium print' +p275738 +sg225230 +S"Georgia O'Keeffe" +p275739 +sg225236 +S'1918' +p275740 +sa(dp275741 +g225232 +S'Alfred Stieglitz' +p275742 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275743 +sg225230 +S"Georgia O'Keeffe" +p275744 +sg225236 +S'1918' +p275745 +sa(dp275746 +g225232 +S'Alfred Stieglitz' +p275747 +sg225240 +g27 +sg225234 +S'palladium print' +p275748 +sg225230 +S"Georgia O'Keeffe" +p275749 +sg225236 +S'1918' +p275750 +sa(dp275751 +g225232 +S'Alfred Stieglitz' +p275752 +sg225240 +g27 +sg225234 +S'palladium print' +p275753 +sg225230 +S"Georgia O'Keeffe" +p275754 +sg225236 +S'1918' +p275755 +sa(dp275756 +g225232 +S'Alfred Stieglitz' +p275757 +sg225240 +g27 +sg225234 +S'palladium print' +p275758 +sg225230 +S"Georgia O'Keeffe" +p275759 +sg225236 +S'1918' +p275760 +sa(dp275761 +g225232 +S'Alfred Stieglitz' +p275762 +sg225240 +g27 +sg225234 +S'palladium print' +p275763 +sg225230 +S"Georgia O'Keeffe" +p275764 +sg225236 +S'1918' +p275765 +sa(dp275766 +g225232 +S'Alfred Stieglitz' +p275767 +sg225240 +g27 +sg225234 +S'palladium print' +p275768 +sg225230 +S"Georgia O'Keeffe" +p275769 +sg225236 +S'1919' +p275770 +sa(dp275771 +g225232 +S'Alfred Stieglitz' +p275772 +sg225240 +g27 +sg225234 +S'palladium print' +p275773 +sg225230 +S"Georgia O'Keeffe" +p275774 +sg225236 +S'1918' +p275775 +sa(dp275776 +g225232 +S'Alfred Stieglitz' +p275777 +sg225240 +g27 +sg225234 +S'platinum print' +p275778 +sg225230 +S"Georgia O'Keeffe" +p275779 +sg225236 +S'probably 1918' +p275780 +sa(dp275781 +g225232 +S'Alfred Stieglitz' +p275782 +sg225240 +g27 +sg225234 +S'palladium print' +p275783 +sg225230 +S"Georgia O'Keeffe" +p275784 +sg225236 +S'possibly 1918' +p275785 +sa(dp275786 +g225232 +S'Alfred Stieglitz' +p275787 +sg225240 +g27 +sg225234 +S'palladium print' +p275788 +sg225230 +S"Georgia O'Keeffe" +p275789 +sg225236 +S'1918' +p275790 +sa(dp275791 +g225232 +S'Alfred Stieglitz' +p275792 +sg225240 +g27 +sg225234 +S'palladium print' +p275793 +sg225230 +S"Georgia O'Keeffe" +p275794 +sg225236 +S'1918' +p275795 +sa(dp275796 +g225232 +S'Alfred Stieglitz' +p275797 +sg225240 +g27 +sg225234 +S'palladium print' +p275798 +sg225230 +S"Georgia O'Keeffe" +p275799 +sg225236 +S'probably 1918' +p275800 +sa(dp275801 +g225232 +S'Alfred Stieglitz' +p275802 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275803 +sg225230 +S"Georgia O'Keeffe" +p275804 +sg225236 +S'1918' +p275805 +sa(dp275806 +g225232 +S'Alfred Stieglitz' +p275807 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275808 +sg225230 +S"Georgia O'Keeffe" +p275809 +sg225236 +S'1918' +p275810 +sa(dp275811 +g225232 +S'Alfred Stieglitz' +p275812 +sg225240 +g27 +sg225234 +S'palladium print' +p275813 +sg225230 +S"Georgia O'Keeffe" +p275814 +sg225236 +S'1918' +p275815 +sa(dp275816 +g225232 +S'Alfred Stieglitz' +p275817 +sg225240 +g27 +sg225234 +S'palladium print' +p275818 +sg225230 +S"Georgia O'Keeffe" +p275819 +sg225236 +S'1919/1921' +p275820 +sa(dp275821 +g225232 +S'Alfred Stieglitz' +p275822 +sg225240 +g27 +sg225234 +S'platinum print' +p275823 +sg225230 +S"Georgia O'Keeffe" +p275824 +sg225236 +S'1919/1921' +p275825 +sa(dp275826 +g225232 +S'Alfred Stieglitz' +p275827 +sg225240 +g27 +sg225234 +S'palladium print' +p275828 +sg225230 +S"Georgia O'Keeffe" +p275829 +sg225236 +S'1919/1921' +p275830 +sa(dp275831 +g225232 +S'Alfred Stieglitz' +p275832 +sg225240 +g27 +sg225234 +S'palladium print' +p275833 +sg225230 +S"Georgia O'Keeffe" +p275834 +sg225236 +S'1919/1921' +p275835 +sa(dp275836 +g225232 +S'Alfred Stieglitz' +p275837 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275838 +sg225230 +S"Georgia O'Keeffe" +p275839 +sg225236 +S'1919/1921' +p275840 +sa(dp275841 +g225232 +S'Alfred Stieglitz' +p275842 +sg225240 +g27 +sg225234 +S'palladium print' +p275843 +sg225230 +S"Georgia O'Keeffe" +p275844 +sg225236 +S'1919/1921' +p275845 +sa(dp275846 +g225232 +S'Alfred Stieglitz' +p275847 +sg225240 +g27 +sg225234 +S'palladium print' +p275848 +sg225230 +S"Georgia O'Keeffe" +p275849 +sg225236 +S'1919/1921' +p275850 +sa(dp275851 +g225232 +S'Alfred Stieglitz' +p275852 +sg225240 +g27 +sg225234 +S'palladium print' +p275853 +sg225230 +S"Georgia O'Keeffe" +p275854 +sg225236 +S'1918' +p275855 +sa(dp275856 +g225232 +S'Alfred Stieglitz' +p275857 +sg225240 +g27 +sg225234 +S'palladium print' +p275858 +sg225230 +S"Georgia O'Keeffe--Breasts" +p275859 +sg225236 +S'1919' +p275860 +sa(dp275861 +g225232 +S'Alfred Stieglitz' +p275862 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275863 +sg225230 +S"Georgia O'Keeffe--Breasts" +p275864 +sg225236 +S'1919' +p275865 +sa(dp275866 +g225232 +S'Alfred Stieglitz' +p275867 +sg225240 +g27 +sg225234 +S'palladium print' +p275868 +sg225230 +S"Georgia O'Keeffe--Breasts" +p275869 +sg225236 +S'1919' +p275870 +sa(dp275871 +g225232 +S'Alfred Stieglitz' +p275872 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275873 +sg225230 +S"Georgia O'Keeffe--Hands and Breasts" +p275874 +sg225236 +S'1919' +p275875 +sa(dp275876 +g225232 +S'Alfred Stieglitz' +p275877 +sg225240 +g27 +sg225234 +S'palladium print' +p275878 +sg225230 +S"Georgia O'Keeffe--Hands and Breasts" +p275879 +sg225236 +S'1919' +p275880 +sa(dp275881 +g225232 +S'Alfred Stieglitz' +p275882 +sg225240 +g27 +sg225234 +S'palladium print' +p275883 +sg225230 +S"Georgia O'Keeffe--Hand and Breasts" +p275884 +sg225236 +S'1919' +p275885 +sa(dp275886 +g225232 +S'Alfred Stieglitz' +p275887 +sg225240 +g27 +sg225234 +S'palladium print' +p275888 +sg225230 +S"Georgia O'Keeffe--Hands and Breasts" +p275889 +sg225236 +S'1919' +p275890 +sa(dp275891 +g225232 +S'Alfred Stieglitz' +p275892 +sg225240 +g27 +sg225234 +S'palladium print' +p275893 +sg225230 +S"Georgia O'Keeffe--Hands and Breasts" +p275894 +sg225236 +S'1919' +p275895 +sa(dp275896 +g225232 +S'Alfred Stieglitz' +p275897 +sg225240 +g27 +sg225234 +S'palladium print' +p275898 +sg225230 +S"Georgia O'Keeffe--Hands" +p275899 +sg225236 +S'1919' +p275900 +sa(dp275901 +g225232 +S'Alfred Stieglitz' +p275902 +sg225240 +g27 +sg225234 +S'palladium print' +p275903 +sg225230 +S"Georgia O'Keeffe--Hands" +p275904 +sg225236 +S'1918' +p275905 +sa(dp275906 +g225230 +S"Georgia O'Keeffe--Hands" +p275907 +sg225232 +S'Alfred Stieglitz' +p275908 +sg225234 +S'palladium print' +p275909 +sg225236 +S'probably 1919' +p275910 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00062/a0006286.jpg' +p275911 +sg225240 +g27 +sa(dp275912 +g225232 +S'Alfred Stieglitz' +p275913 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275914 +sg225230 +S"Georgia O'Keeffe--Hands" +p275915 +sg225236 +S'probably 1919' +p275916 +sa(dp275917 +g225232 +S'Alfred Stieglitz' +p275918 +sg225240 +g27 +sg225234 +S'palladium print' +p275919 +sg225230 +S"Georgia O'Keeffe--Hands" +p275920 +sg225236 +S'1919' +p275921 +sa(dp275922 +g225232 +S'Alfred Stieglitz' +p275923 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275924 +sg225230 +S"Georgia O'Keeffe--Hands" +p275925 +sg225236 +S'1918' +p275926 +sa(dp275927 +g225232 +S'Alfred Stieglitz' +p275928 +sg225240 +g27 +sg225234 +S'palladium print' +p275929 +sg225230 +S"Georgia O'Keeffe" +p275930 +sg225236 +S'1919/1921' +p275931 +sa(dp275932 +g225232 +S'Alfred Stieglitz' +p275933 +sg225240 +g27 +sg225234 +S'palladium print' +p275934 +sg225230 +S"Georgia O'Keeffe" +p275935 +sg225236 +S'probably 1919' +p275936 +sa(dp275937 +g225232 +S'Alfred Stieglitz' +p275938 +sg225240 +g27 +sg225234 +S'palladium print' +p275939 +sg225230 +S"Georgia O'Keeffe" +p275940 +sg225236 +S'probably 1918' +p275941 +sa(dp275942 +g225232 +S'Alfred Stieglitz' +p275943 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275944 +sg225230 +S"Georgia O'Keeffe" +p275945 +sg225236 +S'1923 or 1924' +p275946 +sa(dp275947 +g225232 +S'Alfred Stieglitz' +p275948 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275949 +sg225230 +S"Georgia O'Keeffe and Donald Davidson Pruning Trees" +p275950 +sg225236 +S'1919/1921' +p275951 +sa(dp275952 +g225232 +S'Alfred Stieglitz' +p275953 +sg225240 +g27 +sg225234 +S'palladium print' +p275954 +sg225230 +S'Interpretation' +p275955 +sg225236 +S'1919' +p275956 +sa(dp275957 +g225232 +S'Alfred Stieglitz' +p275958 +sg225240 +g27 +sg225234 +S'palladium print' +p275959 +sg225230 +S'Interpretation' +p275960 +sg225236 +S'1919' +p275961 +sa(dp275962 +g225232 +S'Alfred Stieglitz' +p275963 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275964 +sg225230 +S"Georgia O'Keeffe--Hand and Sculpture" +p275965 +sg225236 +S'1919' +p275966 +sa(dp275967 +g225232 +S'Alfred Stieglitz' +p275968 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275969 +sg225230 +S'Interpretation' +p275970 +sg225236 +S'1919' +p275971 +sa(dp275972 +g225232 +S'Alfred Stieglitz' +p275973 +sg225240 +g27 +sg225234 +S'palladium print' +p275974 +sg225230 +S"Georgia O'Keeffe" +p275975 +sg225236 +S'probably 1919' +p275976 +sa(dp275977 +g225232 +S'Alfred Stieglitz' +p275978 +sg225240 +g27 +sg225234 +S'palladium print' +p275979 +sg225230 +S"Georgia O'Keeffe" +p275980 +sg225236 +S'probably 1919' +p275981 +sa(dp275982 +g225232 +S'Alfred Stieglitz' +p275983 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275984 +sg225230 +S"Georgia O'Keeffe" +p275985 +sg225236 +S'1920' +p275986 +sa(dp275987 +g225232 +S'Alfred Stieglitz' +p275988 +sg225240 +g27 +sg225234 +S'palladium print' +p275989 +sg225230 +S"Georgia O'Keeffe" +p275990 +sg225236 +S'1919/1920' +p275991 +sa(dp275992 +g225232 +S'Alfred Stieglitz' +p275993 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p275994 +sg225230 +S"Georgia O'Keeffe" +p275995 +sg225236 +S'1919/1920' +p275996 +sa(dp275997 +g225232 +S'Alfred Stieglitz' +p275998 +sg225240 +g27 +sg225234 +S'palladium print' +p275999 +sg225230 +S"Georgia O'Keeffe" +p276000 +sg225236 +S'1919/1920' +p276001 +sa(dp276002 +g225232 +S'Alfred Stieglitz' +p276003 +sg225240 +g27 +sg225234 +S'palladium print' +p276004 +sg225230 +S"Georgia O'Keeffe--Hands" +p276005 +sg225236 +S'1919/1920' +p276006 +sa(dp276007 +g225232 +S'Alfred Stieglitz' +p276008 +sg225240 +g27 +sg225234 +S'palladium print' +p276009 +sg225230 +S"Georgia O'Keeffe--Hands and Thimble" +p276010 +sg225236 +S'1919' +p276011 +sa(dp276012 +g225232 +S'Alfred Stieglitz' +p276013 +sg225240 +g27 +sg225234 +S'palladium print' +p276014 +sg225230 +S"Georgia O'Keeffe" +p276015 +sg225236 +S'1920' +p276016 +sa(dp276017 +g225232 +S'Alfred Stieglitz' +p276018 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276019 +sg225230 +S"Georgia O'Keeffe" +p276020 +sg225236 +S'1920' +p276021 +sa(dp276022 +g225232 +S'Alfred Stieglitz' +p276023 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276024 +sg225230 +S"Georgia O'Keeffe" +p276025 +sg225236 +S'1920' +p276026 +sa(dp276027 +g225232 +S'Alfred Stieglitz' +p276028 +sg225240 +g27 +sg225234 +S'palladium print' +p276029 +sg225230 +S"Georgia O'Keeffe" +p276030 +sg225236 +S'1920' +p276031 +sa(dp276032 +g225232 +S'Alfred Stieglitz' +p276033 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276034 +sg225230 +S"Georgia O'Keeffe" +p276035 +sg225236 +S'1920' +p276036 +sa(dp276037 +g225232 +S'Alfred Stieglitz' +p276038 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276039 +sg225230 +S"Georgia O'Keeffe" +p276040 +sg225236 +S'1920' +p276041 +sa(dp276042 +g225232 +S'Alfred Stieglitz' +p276043 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276044 +sg225230 +S"Georgia O'Keeffe" +p276045 +sg225236 +S'1922' +p276046 +sa(dp276047 +g225232 +S'Alfred Stieglitz' +p276048 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276049 +sg225230 +S"Georgia O'Keeffe" +p276050 +sg225236 +S'1920' +p276051 +sa(dp276052 +g225232 +S'Alfred Stieglitz' +p276053 +sg225240 +g27 +sg225234 +S'palladium print' +p276054 +sg225230 +S"Georgia O'Keeffe" +p276055 +sg225236 +S'1920/1922' +p276056 +sa(dp276057 +g225232 +S'Alfred Stieglitz' +p276058 +sg225240 +g27 +sg225234 +S'palladium print' +p276059 +sg225230 +S"Georgia O'Keeffe--Hand and Sculpture" +p276060 +sg225236 +S'1919' +p276061 +sa(dp276062 +g225232 +S'Alfred Stieglitz' +p276063 +sg225240 +g27 +sg225234 +S'palladium print' +p276064 +sg225230 +S"Georgia O'Keeffe" +p276065 +sg225236 +S'1919' +p276066 +sa(dp276067 +g225232 +S'Alfred Stieglitz' +p276068 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276069 +sg225230 +S"Georgia O'Keeffe" +p276070 +sg225236 +S'1920/1922' +p276071 +sa(dp276072 +g225232 +S'Alfred Stieglitz' +p276073 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276074 +sg225230 +S"Georgia O'Keeffe, Elizabeth Davidson, and Fred Varnum" +p276075 +sg225236 +S'probably 1920' +p276076 +sa(dp276077 +g225232 +S'Alfred Stieglitz' +p276078 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276079 +sg225230 +S"Charles Duncan, Georgia O'Keeffe, and Paul Rosenfeld" +p276080 +sg225236 +S'1920' +p276081 +sa(dp276082 +g225232 +S'Alfred Stieglitz' +p276083 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276084 +sg225230 +S"Georgia O'Keeffe and Rebecca Strand" +p276085 +sg225236 +S'1922 or 1923' +p276086 +sa(dp276087 +g225232 +S'Alfred Stieglitz' +p276088 +sg225240 +g27 +sg225234 +S'palladium print' +p276089 +sg225230 +S"Georgia O'Keeffe" +p276090 +sg225236 +S'1921' +p276091 +sa(dp276092 +g225232 +S'Alfred Stieglitz' +p276093 +sg225240 +g27 +sg225234 +S'palladium print' +p276094 +sg225230 +S"Georgia O'Keeffe" +p276095 +sg225236 +S'1921' +p276096 +sa(dp276097 +g225232 +S'Alfred Stieglitz' +p276098 +sg225240 +g27 +sg225234 +S'palladium print' +p276099 +sg225230 +S"Georgia O'Keeffe" +p276100 +sg225236 +S'1921' +p276101 +sa(dp276102 +g225232 +S'Alfred Stieglitz' +p276103 +sg225240 +g27 +sg225234 +S'palladium print' +p276104 +sg225230 +S"Georgia O'Keeffe" +p276105 +sg225236 +S'1921' +p276106 +sa(dp276107 +g225232 +S'Alfred Stieglitz' +p276108 +sg225240 +g27 +sg225234 +S'palladium print' +p276109 +sg225230 +S"Georgia O'Keeffe with Matisse Sculpture" +p276110 +sg225236 +S'1921' +p276111 +sa(dp276112 +g225232 +S'Alfred Stieglitz' +p276113 +sg225240 +g27 +sg225234 +S'palladium print' +p276114 +sg225230 +S"Georgia O'Keeffe--Neck" +p276115 +sg225236 +S'1921' +p276116 +sa(dp276117 +g225232 +S'Alfred Stieglitz' +p276118 +sg225240 +g27 +sg225234 +S'palladium print' +p276119 +sg225230 +S"Georgia O'Keeffe--Neck" +p276120 +sg225236 +S'1921' +p276121 +sa(dp276122 +g225232 +S'Alfred Stieglitz' +p276123 +sg225240 +g27 +sg225234 +S'palladium print' +p276124 +sg225230 +S"Georgia O'Keeffe--Torso" +p276125 +sg225236 +S'1921' +p276126 +sa(dp276127 +g225232 +S'Alfred Stieglitz' +p276128 +sg225240 +g27 +sg225234 +S'palladium print' +p276129 +sg225230 +S"Georgia O'Keeffe--Torso" +p276130 +sg225236 +S'1921' +p276131 +sa(dp276132 +g225232 +S'Alfred Stieglitz' +p276133 +sg225240 +g27 +sg225234 +S'palladium print' +p276134 +sg225230 +S"Georgia O'Keeffe--Hands and Grapes" +p276135 +sg225236 +S'1921' +p276136 +sa(dp276137 +g225232 +S'Alfred Stieglitz' +p276138 +sg225240 +g27 +sg225234 +S'palladium print' +p276139 +sg225230 +S"Georgia O'Keeffe--Hands and Grapes" +p276140 +sg225236 +S'1921' +p276141 +sa(dp276142 +g225232 +S'Alfred Stieglitz' +p276143 +sg225240 +g27 +sg225234 +S'palladium print' +p276144 +sg225230 +S"Georgia O'Keeffe--Hands and Grapes" +p276145 +sg225236 +S'1921' +p276146 +sa(dp276147 +g225232 +S'Alfred Stieglitz' +p276148 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276149 +sg225230 +S"Georgia O'Keeffe--Hands and Grapes" +p276150 +sg225236 +S'1921' +p276151 +sa(dp276152 +g225232 +S'Alfred Stieglitz' +p276153 +sg225240 +g27 +sg225234 +S'palladium print' +p276154 +sg225230 +S"Georgia O'Keeffe--Hand and Grape Leaf" +p276155 +sg225236 +S'1921' +p276156 +sa(dp276157 +g225232 +S'Alfred Stieglitz' +p276158 +sg225240 +g27 +sg225234 +S'palladium print' +p276159 +sg225230 +S"Georgia O'Keeffe" +p276160 +sg225236 +S'1921' +p276161 +sa(dp276162 +g225232 +S'Alfred Stieglitz' +p276163 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276164 +sg225230 +S"Georgia O'Keeffe" +p276165 +sg225236 +S'probably 1924' +p276166 +sa(dp276167 +g225232 +S'Alfred Stieglitz' +p276168 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276169 +sg225230 +S"Georgia O'Keeffe" +p276170 +sg225236 +S'1924' +p276171 +sa(dp276172 +g225232 +S'Alfred Stieglitz' +p276173 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276174 +sg225230 +S"Georgia O'Keeffe" +p276175 +sg225236 +S'1924' +p276176 +sa(dp276177 +g225232 +S'Alfred Stieglitz' +p276178 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276179 +sg225230 +S"Georgia O'Keeffe" +p276180 +sg225236 +S'probably 1924' +p276181 +sa(dp276182 +g225232 +S'Alfred Stieglitz' +p276183 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276184 +sg225230 +S"Georgia O'Keeffe" +p276185 +sg225236 +S'1924' +p276186 +sa(dp276187 +g225232 +S'Alfred Stieglitz' +p276188 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276189 +sg225230 +S"Georgia O'Keeffe" +p276190 +sg225236 +S'probably 1924' +p276191 +sa(dp276192 +g225230 +S"Georgia O'Keeffe" +p276193 +sg225232 +S'Alfred Stieglitz' +p276194 +sg225234 +S'gelatin silver print' +p276195 +sg225236 +S'1924' +p276196 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00062/a0006288.jpg' +p276197 +sg225240 +g27 +sa(dp276198 +g225232 +S'Alfred Stieglitz' +p276199 +sg225240 +g27 +sg225234 +S'palladium print' +p276200 +sg225230 +S"Georgia O'Keeffe with Matisse Sculpture" +p276201 +sg225236 +S'1921' +p276202 +sa(dp276203 +g225232 +S'Alfred Stieglitz' +p276204 +sg225240 +g27 +sg225234 +S'palladium print' +p276205 +sg225230 +S"Georgia O'Keeffe" +p276206 +sg225236 +S'1922' +p276207 +sa(dp276208 +g225232 +S'Alfred Stieglitz' +p276209 +sg225240 +g27 +sg225234 +S'palladium print' +p276210 +sg225230 +S"Georgia O'Keeffe" +p276211 +sg225236 +S'1922' +p276212 +sa(dp276213 +g225232 +S'Alfred Stieglitz' +p276214 +sg225240 +g27 +sg225234 +S'palladium print' +p276215 +sg225230 +S"Georgia O'Keeffe" +p276216 +sg225236 +S'1922' +p276217 +sa(dp276218 +g225232 +S'Alfred Stieglitz' +p276219 +sg225240 +g27 +sg225234 +S'palladium print' +p276220 +sg225230 +S"Georgia O'Keeffe" +p276221 +sg225236 +S'1922' +p276222 +sa(dp276223 +g225232 +S'Alfred Stieglitz' +p276224 +sg225240 +g27 +sg225234 +S'palladium print' +p276225 +sg225230 +S"Georgia O'Keeffe" +p276226 +sg225236 +S'1922' +p276227 +sa(dp276228 +g225232 +S'Alfred Stieglitz' +p276229 +sg225240 +g27 +sg225234 +S'palladium print' +p276230 +sg225230 +S"Georgia O'Keeffe" +p276231 +sg225236 +S'1922' +p276232 +sa(dp276233 +g225232 +S'Alfred Stieglitz' +p276234 +sg225240 +g27 +sg225234 +S'palladium print' +p276235 +sg225230 +S"Georgia O'Keeffe" +p276236 +sg225236 +S'1922' +p276237 +sa(dp276238 +g225232 +S'Alfred Stieglitz' +p276239 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276240 +sg225230 +S"Georgia O'Keeffe" +p276241 +sg225236 +S'1922' +p276242 +sa(dp276243 +g225232 +S'Alfred Stieglitz' +p276244 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276245 +sg225230 +S"Georgia O'Keeffe" +p276246 +sg225236 +S'1924' +p276247 +sa(dp276248 +g225232 +S'Alfred Stieglitz' +p276249 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276250 +sg225230 +S"Georgia O'Keeffe and Waldo Frank" +p276251 +sg225236 +S'1920' +p276252 +sa(dp276253 +g225232 +S'Alfred Stieglitz' +p276254 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276255 +sg225230 +S"Georgia O'Keeffe" +p276256 +sg225236 +S'1925' +p276257 +sa(dp276258 +g225232 +S'Alfred Stieglitz' +p276259 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276260 +sg225230 +S"Georgia O'Keeffe" +p276261 +sg225236 +S'probably 1919' +p276262 +sa(dp276263 +g225232 +S'Alfred Stieglitz' +p276264 +sg225240 +g27 +sg225234 +S'palladium print' +p276265 +sg225230 +S"Georgia O'Keeffe" +p276266 +sg225236 +S'1923' +p276267 +sa(dp276268 +g225232 +S'Alfred Stieglitz' +p276269 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276270 +sg225230 +S"Georgia O'Keeffe" +p276271 +sg225236 +S'possibly 1924' +p276272 +sa(dp276273 +g225232 +S'Alfred Stieglitz' +p276274 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276275 +sg225230 +S'Portrait of Georgia, No. 1' +p276276 +sg225236 +S'1923' +p276277 +sa(dp276278 +g225232 +S'Alfred Stieglitz' +p276279 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276280 +sg225230 +S"Georgia O'Keeffe and Donald Davidson" +p276281 +sg225236 +S'1924' +p276282 +sa(dp276283 +g225232 +S'Alfred Stieglitz' +p276284 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276285 +sg225230 +S"Georgia O'Keeffe and Donald Davidson" +p276286 +sg225236 +S'1924' +p276287 +sa(dp276288 +g225232 +S'Alfred Stieglitz' +p276289 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276290 +sg225230 +S"Georgia O'Keeffe and Donald Davidson" +p276291 +sg225236 +S'1924' +p276292 +sa(dp276293 +g225232 +S'Alfred Stieglitz' +p276294 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276295 +sg225230 +S"Ida and Georgia O'Keeffe [recto]" +p276296 +sg225236 +S'1924' +p276297 +sa(dp276298 +g225232 +S'Alfred Stieglitz' +p276299 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276300 +sg225230 +S'Laundry, Lake George (verso)' +p276301 +sg225236 +S'1923' +p276302 +sa(dp276303 +g225232 +S'Alfred Stieglitz' +p276304 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276305 +sg225230 +S"Georgia O'Keeffe" +p276306 +sg225236 +S'1924' +p276307 +sa(dp276308 +g225232 +S'Alfred Stieglitz' +p276309 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276310 +sg225230 +S"Ida and Georgia O'Keeffe" +p276311 +sg225236 +S'1924' +p276312 +sa(dp276313 +g225232 +S'Alfred Stieglitz' +p276314 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276315 +sg225230 +S"Ida and Georgia O'Keeffe" +p276316 +sg225236 +S'1924' +p276317 +sa(dp276318 +g225232 +S'Alfred Stieglitz' +p276319 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276320 +sg225230 +S"Ida and Georgia O'Keeffe" +p276321 +sg225236 +S'1924' +p276322 +sa(dp276323 +g225232 +S'Alfred Stieglitz' +p276324 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276325 +sg225230 +S"Georgia O'Keeffe" +p276326 +sg225236 +S'1924' +p276327 +sa(dp276328 +g225232 +S'Alfred Stieglitz' +p276329 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276330 +sg225230 +S"Georgia O'Keeffe" +p276331 +sg225236 +S'possibly 1924' +p276332 +sa(dp276333 +g225232 +S'Alfred Stieglitz' +p276334 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276335 +sg225230 +S"Georgia O'Keeffe" +p276336 +sg225236 +S'1922' +p276337 +sa(dp276338 +g225232 +S'Alfred Stieglitz' +p276339 +sg225240 +g27 +sg225234 +S'palladium print' +p276340 +sg225230 +S"Georgia O'Keeffe" +p276341 +sg225236 +S'1922' +p276342 +sa(dp276343 +g225232 +S'Alfred Stieglitz' +p276344 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276345 +sg225230 +S"Georgia O'Keeffe" +p276346 +sg225236 +S'1922' +p276347 +sa(dp276348 +g225232 +S'Alfred Stieglitz' +p276349 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276350 +sg225230 +S"Georgia O'Keeffe" +p276351 +sg225236 +S'1922' +p276352 +sa(dp276353 +g225232 +S'Alfred Stieglitz' +p276354 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276355 +sg225230 +S"Georgia O'Keeffe" +p276356 +sg225236 +S'1924/1929' +p276357 +sa(dp276358 +g225232 +S'Alfred Stieglitz' +p276359 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276360 +sg225230 +S"Georgia O'Keeffe" +p276361 +sg225236 +S'1924/1929' +p276362 +sa(dp276363 +g225232 +S'Alfred Stieglitz' +p276364 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276365 +sg225230 +S"Georgia O'Keeffe" +p276366 +sg225236 +S'1922' +p276367 +sa(dp276368 +g225232 +S'Alfred Stieglitz' +p276369 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276370 +sg225230 +S"Georgia O'Keeffe" +p276371 +sg225236 +S'probably 1924' +p276372 +sa(dp276373 +g225232 +S'Alfred Stieglitz' +p276374 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276375 +sg225230 +S"Georgia O'Keeffe" +p276376 +sg225236 +S'probably 1924' +p276377 +sa(dp276378 +g225232 +S'Alfred Stieglitz' +p276379 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276380 +sg225230 +S"Georgia O'Keeffe" +p276381 +sg225236 +S'probably 1924' +p276382 +sa(dp276383 +g225232 +S'Alfred Stieglitz' +p276384 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276385 +sg225230 +S"Georgia O'Keeffe" +p276386 +sg225236 +S'probably 1924' +p276387 +sa(dp276388 +g225232 +S'Alfred Stieglitz' +p276389 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276390 +sg225230 +S"Georgia O'Keeffe" +p276391 +sg225236 +S'1924/1929' +p276392 +sa(dp276393 +g225232 +S'Alfred Stieglitz' +p276394 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276395 +sg225230 +S"Georgia O'Keeffe" +p276396 +sg225236 +S'1924/1929' +p276397 +sa(dp276398 +g225232 +S'Alfred Stieglitz' +p276399 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276400 +sg225230 +S"Georgia O'Keeffe" +p276401 +sg225236 +S'1924/1929' +p276402 +sa(dp276403 +g225232 +S'Alfred Stieglitz' +p276404 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276405 +sg225230 +S"Georgia O'Keeffe" +p276406 +sg225236 +S'probably 1924' +p276407 +sa(dp276408 +g225232 +S'Alfred Stieglitz' +p276409 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276410 +sg225230 +S"Georgia O'Keeffe" +p276411 +sg225236 +S'1927 or 1928' +p276412 +sa(dp276413 +g225232 +S'Alfred Stieglitz' +p276414 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276415 +sg225230 +S"Georgia O'Keeffe" +p276416 +sg225236 +S'1927 or 1928' +p276417 +sa(dp276418 +g225232 +S'Alfred Stieglitz' +p276419 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276420 +sg225230 +S"Georgia O'Keeffe" +p276421 +sg225236 +S'1926' +p276422 +sa(dp276423 +g225232 +S'Alfred Stieglitz' +p276424 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276425 +sg225230 +S"Georgia O'Keeffe" +p276426 +sg225236 +S'1927' +p276427 +sa(dp276428 +g225232 +S'Alfred Stieglitz' +p276429 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276430 +sg225230 +S"Georgia O'Keeffe" +p276431 +sg225236 +S'1927' +p276432 +sa(dp276433 +g225232 +S'Alfred Stieglitz' +p276434 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276435 +sg225230 +S"Georgia O'Keeffe" +p276436 +sg225236 +S'1927' +p276437 +sa(dp276438 +g225232 +S'Alfred Stieglitz' +p276439 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276440 +sg225230 +S"Georgia O'Keeffe, Prospect Mountain, Lake George" +p276441 +sg225236 +S'1927' +p276442 +sa(dp276443 +g225232 +S'Alfred Stieglitz' +p276444 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276445 +sg225230 +S"Georgia O'Keeffe" +p276446 +sg225236 +S'1923 or 1924' +p276447 +sa(dp276448 +g225232 +S'Alfred Stieglitz' +p276449 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276450 +sg225230 +S"Georgia O'Keeffe" +p276451 +sg225236 +S'1928' +p276452 +sa(dp276453 +g225232 +S'Alfred Stieglitz' +p276454 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276455 +sg225230 +S"Georgia O'Keeffe" +p276456 +sg225236 +S'1928' +p276457 +sa(dp276458 +g225232 +S'Alfred Stieglitz' +p276459 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276460 +sg225230 +S"Georgia O'Keeffe" +p276461 +sg225236 +S'1924/1927' +p276462 +sa(dp276463 +g225232 +S'Alfred Stieglitz' +p276464 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276465 +sg225230 +S"Georgia O'Keeffe" +p276466 +sg225236 +S'1924/1927' +p276467 +sa(dp276468 +g225232 +S'Alfred Stieglitz' +p276469 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276470 +sg225230 +S"Georgia O'Keeffe" +p276471 +sg225236 +S'1928' +p276472 +sa(dp276473 +g225232 +S'Alfred Stieglitz' +p276474 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276475 +sg225230 +S"Georgia O'Keeffe" +p276476 +sg225236 +S'1928' +p276477 +sa(dp276478 +g225232 +S'Alfred Stieglitz' +p276479 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276480 +sg225230 +S"Georgia O'Keeffe" +p276481 +sg225236 +S'1924.1927' +p276482 +sa(dp276483 +g225232 +S'Alfred Stieglitz' +p276484 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276485 +sg225230 +S"Georgia O'Keeffe" +p276486 +sg225236 +S'1928' +p276487 +sa(dp276488 +g225232 +S'Alfred Stieglitz' +p276489 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276490 +sg225230 +S"Georgia O'Keeffe" +p276491 +sg225236 +S'1922' +p276492 +sa(dp276493 +g225232 +S'Alfred Stieglitz' +p276494 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276495 +sg225230 +S"Georgia O'Keeffe" +p276496 +sg225236 +S'1922' +p276497 +sa(dp276498 +g225232 +S'Alfred Stieglitz' +p276499 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276500 +sg225230 +S"Georgia O'Keeffe" +p276501 +sg225236 +S'1929' +p276502 +sa(dp276503 +g225232 +S'Alfred Stieglitz' +p276504 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276505 +sg225230 +S"Georgia O'Keeffe--After Return from New Mexico" +p276506 +sg225236 +S'1929' +p276507 +sa(dp276508 +g225232 +S'Alfred Stieglitz' +p276509 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276510 +sg225230 +S"Georgia O'Keeffe" +p276511 +sg225236 +S'1929' +p276512 +sa(dp276513 +g225232 +S'Alfred Stieglitz' +p276514 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276515 +sg225230 +S"Georgia O'Keeffe" +p276516 +sg225236 +S'1929' +p276517 +sa(dp276518 +g225232 +S'Alfred Stieglitz' +p276519 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276520 +sg225230 +S"Georgia O'Keeffe" +p276521 +sg225236 +S'1931' +p276522 +sa(dp276523 +g225232 +S'Alfred Stieglitz' +p276524 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276525 +sg225230 +S"Georgia O'Keeffe" +p276526 +sg225236 +S'1929' +p276527 +sa(dp276528 +g225232 +S'Alfred Stieglitz' +p276529 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276530 +sg225230 +S"Georgia O'Keeffe" +p276531 +sg225236 +S'1930/1931' +p276532 +sa(dp276533 +g225232 +S'Alfred Stieglitz' +p276534 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276535 +sg225230 +S"Georgia O'Keeffe--Hands and Horse Skull" +p276536 +sg225236 +S'1931' +p276537 +sa(dp276538 +g225232 +S'Alfred Stieglitz' +p276539 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276540 +sg225230 +S"Georgia O'Keeffe--Hands and Horse Skull" +p276541 +sg225236 +S'1931' +p276542 +sa(dp276543 +g225232 +S'Alfred Stieglitz' +p276544 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276545 +sg225230 +S"Georgia O'Keeffe--Hands and Horse Skull" +p276546 +sg225236 +S'1931' +p276547 +sa(dp276548 +g225232 +S'Alfred Stieglitz' +p276549 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276550 +sg225230 +S"Georgia O'Keeffe" +p276551 +sg225236 +S'1932' +p276552 +sa(dp276553 +g225232 +S'Alfred Stieglitz' +p276554 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276555 +sg225230 +S"Georgia O'Keeffe" +p276556 +sg225236 +S'1929' +p276557 +sa(dp276558 +g225232 +S'Alfred Stieglitz' +p276559 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276560 +sg225230 +S"Georgia O'Keeffe" +p276561 +sg225236 +S'1929' +p276562 +sa(dp276563 +g225232 +S'Alfred Stieglitz' +p276564 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276565 +sg225230 +S"Georgia O'Keeffe" +p276566 +sg225236 +S'1929' +p276567 +sa(dp276568 +g225232 +S'Alfred Stieglitz' +p276569 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276570 +sg225230 +S"Georgia O'Keeffe" +p276571 +sg225236 +S'1929' +p276572 +sa(dp276573 +g225232 +S'Alfred Stieglitz' +p276574 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276575 +sg225230 +S"Georgia O'Keeffe" +p276576 +sg225236 +S'1929' +p276577 +sa(dp276578 +g225232 +S'Alfred Stieglitz' +p276579 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276580 +sg225230 +S"Georgia O'Keeffe" +p276581 +sg225236 +S'1931' +p276582 +sa(dp276583 +g225232 +S'Alfred Stieglitz' +p276584 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276585 +sg225230 +S"Georgia O'Keeffe" +p276586 +sg225236 +S'1931' +p276587 +sa(dp276588 +g225232 +S'Alfred Stieglitz' +p276589 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276590 +sg225230 +S"Georgia O'Keeffe" +p276591 +sg225236 +S'1931' +p276592 +sa(dp276593 +g225232 +S'Alfred Stieglitz' +p276594 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276595 +sg225230 +S"Georgia O'Keeffe" +p276596 +sg225236 +S'1929' +p276597 +sa(dp276598 +g225232 +S'Alfred Stieglitz' +p276599 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276600 +sg225230 +S"Georgia O'Keeffe" +p276601 +sg225236 +S'1930/1931' +p276602 +sa(dp276603 +g225232 +S'Alfred Stieglitz' +p276604 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276605 +sg225230 +S"Georgia O'Keeffe and Frank Prosser" +p276606 +sg225236 +S'1931' +p276607 +sa(dp276608 +g225232 +S'Alfred Stieglitz' +p276609 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276610 +sg225230 +S"Georgia O'Keeffe" +p276611 +sg225236 +S'1930' +p276612 +sa(dp276613 +g225232 +S'Alfred Stieglitz' +p276614 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276615 +sg225230 +S"Georgia O'Keeffe" +p276616 +sg225236 +S'1930/1931' +p276617 +sa(dp276618 +g225232 +S'Alfred Stieglitz' +p276619 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276620 +sg225230 +S"Georgia O'Keeffe" +p276621 +sg225236 +S'1932' +p276622 +sa(dp276623 +g225232 +S'Alfred Stieglitz' +p276624 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276625 +sg225230 +S"Georgia O'Keeffe" +p276626 +sg225236 +S'1931' +p276627 +sa(dp276628 +g225232 +S'Alfred Stieglitz' +p276629 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276630 +sg225230 +S"Georgia O'Keeffe" +p276631 +sg225236 +S'1931' +p276632 +sa(dp276633 +g225232 +S'Alfred Stieglitz' +p276634 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276635 +sg225230 +S"Georgia O'Keeffe" +p276636 +sg225236 +S'1931' +p276637 +sa(dp276638 +g225232 +S'Alfred Stieglitz' +p276639 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276640 +sg225230 +S"Georgia O'Keeffe" +p276641 +sg225236 +S'1931' +p276642 +sa(dp276643 +g225232 +S'Alfred Stieglitz' +p276644 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276645 +sg225230 +S"Georgia O'Keeffe--Exhibition at An American Place" +p276646 +sg225236 +S'1931' +p276647 +sa(dp276648 +g225230 +S"Georgia O'Keeffe--Exhibition at An American Place" +p276649 +sg225232 +S'Alfred Stieglitz' +p276650 +sg225234 +S'gelatin silver print' +p276651 +sg225236 +S'1931' +p276652 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00062/a0006289.jpg' +p276653 +sg225240 +g27 +sa(dp276654 +g225232 +S'Alfred Stieglitz' +p276655 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276656 +sg225230 +S"Georgia O'Keeffe--Exhibition at An American Place" +p276657 +sg225236 +S'1930' +p276658 +sa(dp276659 +g225232 +S'Alfred Stieglitz' +p276660 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276661 +sg225230 +S"Georgia O'Keeffe" +p276662 +sg225236 +S'1932' +p276663 +sa(dp276664 +g225232 +S'Alfred Stieglitz' +p276665 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276666 +sg225230 +S"Georgia O'Keeffe" +p276667 +sg225236 +S'1932' +p276668 +sa(dp276669 +g225232 +S'Alfred Stieglitz' +p276670 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276671 +sg225230 +S"Georgia O'Keeffe" +p276672 +sg225236 +S'1932' +p276673 +sa(dp276674 +g225232 +S'Alfred Stieglitz' +p276675 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276676 +sg225230 +S"Georgia O'Keeffe" +p276677 +sg225236 +S'1932' +p276678 +sa(dp276679 +g225232 +S'Alfred Stieglitz' +p276680 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276681 +sg225230 +S"Georgia O'Keeffe" +p276682 +sg225236 +S'1932' +p276683 +sa(dp276684 +g225232 +S'Alfred Stieglitz' +p276685 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276686 +sg225230 +S"Georgia O'Keeffe" +p276687 +sg225236 +S'1932' +p276688 +sa(dp276689 +g225232 +S'Alfred Stieglitz' +p276690 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276691 +sg225230 +S"Georgia O'Keeffe" +p276692 +sg225236 +S'1932' +p276693 +sa(dp276694 +g225232 +S'Alfred Stieglitz' +p276695 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276696 +sg225230 +S"Georgia O'Keeffe--Torso" +p276697 +sg225236 +S'1931' +p276698 +sa(dp276699 +g225232 +S'Alfred Stieglitz' +p276700 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276701 +sg225230 +S"Georgia O'Keeffe--Torso" +p276702 +sg225236 +S'1931' +p276703 +sa(dp276704 +g225232 +S'Alfred Stieglitz' +p276705 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276706 +sg225230 +S"Georgia O'Keeffe--Torso" +p276707 +sg225236 +S'1931' +p276708 +sa(dp276709 +g225232 +S'Alfred Stieglitz' +p276710 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276711 +sg225230 +S"Georgia O'Keeffe--Torso" +p276712 +sg225236 +S'1931' +p276713 +sa(dp276714 +g225232 +S'Alfred Stieglitz' +p276715 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276716 +sg225230 +S"Georgia O'Keeffe--Torso" +p276717 +sg225236 +S'1931' +p276718 +sa(dp276719 +g225232 +S'Alfred Stieglitz' +p276720 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276721 +sg225230 +S"Georgia O'Keeffe--Torso" +p276722 +sg225236 +S'1931' +p276723 +sa(dp276724 +g225232 +S'Alfred Stieglitz' +p276725 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276726 +sg225230 +S"Georgia O'Keeffe--Torso" +p276727 +sg225236 +S'1931' +p276728 +sa(dp276729 +g225232 +S'Alfred Stieglitz' +p276730 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276731 +sg225230 +S"Georgia O'Keeffe" +p276732 +sg225236 +S'1932' +p276733 +sa(dp276734 +g225232 +S'Alfred Stieglitz' +p276735 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276736 +sg225230 +S"Georgia O'Keeffe" +p276737 +sg225236 +S'1932' +p276738 +sa(dp276739 +g225232 +S'Alfred Stieglitz' +p276740 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276741 +sg225230 +S"Georgia O'Keeffe" +p276742 +sg225236 +S'1932' +p276743 +sa(dp276744 +g225232 +S'Alfred Stieglitz' +p276745 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276746 +sg225230 +S"Georgia O'Keeffe" +p276747 +sg225236 +S'1932' +p276748 +sa(dp276749 +g225232 +S'Alfred Stieglitz' +p276750 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276751 +sg225230 +S"Georgia O'Keeffe" +p276752 +sg225236 +S'1932' +p276753 +sa(dp276754 +g225232 +S'Alfred Stieglitz' +p276755 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276756 +sg225230 +S"Georgia O'Keeffe--Exhibition at An American Place" +p276757 +sg225236 +S'1931/1932' +p276758 +sa(dp276759 +g225232 +S'Alfred Stieglitz' +p276760 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276761 +sg225230 +S"Georgia O'Keeffe" +p276762 +sg225236 +S'1933' +p276763 +sa(dp276764 +g225232 +S'Alfred Stieglitz' +p276765 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276766 +sg225230 +S"Georgia O'Keeffe" +p276767 +sg225236 +S'1932' +p276768 +sa(dp276769 +g225232 +S'Alfred Stieglitz' +p276770 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276771 +sg225230 +S"Georgia O'Keeffe" +p276772 +sg225236 +S'1932' +p276773 +sa(dp276774 +g225232 +S'Alfred Stieglitz' +p276775 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276776 +sg225230 +S"Georgia O'Keeffe" +p276777 +sg225236 +S'1933' +p276778 +sa(dp276779 +g225232 +S'Alfred Stieglitz' +p276780 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276781 +sg225230 +S"Georgia O'Keeffe" +p276782 +sg225236 +S'1933' +p276783 +sa(dp276784 +g225232 +S'Alfred Stieglitz' +p276785 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276786 +sg225230 +S"Georgia O'Keeffe" +p276787 +sg225236 +S'1933' +p276788 +sa(dp276789 +g225232 +S'Alfred Stieglitz' +p276790 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276791 +sg225230 +S"Georgia O'Keeffe" +p276792 +sg225236 +S'1933' +p276793 +sa(dp276794 +g225232 +S'Alfred Stieglitz' +p276795 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276796 +sg225230 +S"Georgia O'Keeffe" +p276797 +sg225236 +S'probably 1933' +p276798 +sa(dp276799 +g225232 +S'Alfred Stieglitz' +p276800 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276801 +sg225230 +S"Georgia O'Keeffe--Hands" +p276802 +sg225236 +S'1933' +p276803 +sa(dp276804 +g225232 +S'Alfred Stieglitz' +p276805 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276806 +sg225230 +S"Georgia O'Keeffe--Hand and Wheel" +p276807 +sg225236 +S'1933' +p276808 +sa(dp276809 +g225232 +S'Alfred Stieglitz' +p276810 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276811 +sg225230 +S"Georgia O'Keeffe" +p276812 +sg225236 +S'1933' +p276813 +sa(dp276814 +g225232 +S'Alfred Stieglitz' +p276815 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276816 +sg225230 +S"Georgia O'Keeffe" +p276817 +sg225236 +S'1933' +p276818 +sa(dp276819 +g225232 +S'Alfred Stieglitz' +p276820 +sg225240 +g27 +sg225234 +S'gelatin silver print' +p276821 +sg225230 +S"Georgia O'Keeffe--Hand and Wheel" +p276822 +sg225236 +S'1933' +p276823 +sa(dp276824 +g225232 +S'Alfred Stieglitz' +p276825 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276826 +sg225230 +S"Georgia O'Keeffe" +p276827 +sg225236 +S'1935' +p276828 +sa(dp276829 +g225232 +S'Alfred Stieglitz' +p276830 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276831 +sg225230 +S"Georgia O'Keeffe" +p276832 +sg225236 +S'1935' +p276833 +sa(dp276834 +g225232 +S'Alfred Stieglitz' +p276835 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276836 +sg225230 +S"Georgia O'Keeffe" +p276837 +sg225236 +S'1933' +p276838 +sa(dp276839 +g225232 +S'Alfred Stieglitz' +p276840 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276841 +sg225230 +S"Georgia O'Keeffe" +p276842 +sg225236 +S'1933' +p276843 +sa(dp276844 +g225232 +S'Alfred Stieglitz' +p276845 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276846 +sg225230 +S"Georgia O'Keeffe" +p276847 +sg225236 +S'1933' +p276848 +sa(dp276849 +g225232 +S'Alfred Stieglitz' +p276850 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276851 +sg225230 +S"Georgia O'Keeffe" +p276852 +sg225236 +S'1933' +p276853 +sa(dp276854 +g225232 +S'Alfred Stieglitz' +p276855 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276856 +sg225230 +S"Georgia O'Keeffe" +p276857 +sg225236 +S'1933' +p276858 +sa(dp276859 +g225232 +S'Alfred Stieglitz' +p276860 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276861 +sg225230 +S"Georgia O'Keeffe" +p276862 +sg225236 +S'1936' +p276863 +sa(dp276864 +g225232 +S'Alfred Stieglitz' +p276865 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276866 +sg225230 +S"Georgia O'Keeffe" +p276867 +sg225236 +S'1933' +p276868 +sa(dp276869 +g225232 +S'Alfred Stieglitz' +p276870 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276871 +sg225230 +S"Georgia O'Keeffe" +p276872 +sg225236 +S'1933' +p276873 +sa(dp276874 +g225232 +S'Alfred Stieglitz' +p276875 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276876 +sg225230 +S"Georgia O'Keeffe" +p276877 +sg225236 +S'1933' +p276878 +sa(dp276879 +g225232 +S'Alfred Stieglitz' +p276880 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276881 +sg225230 +S"Georgia O'Keeffe" +p276882 +sg225236 +S'1933' +p276883 +sa(dp276884 +g225232 +S'Alfred Stieglitz' +p276885 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276886 +sg225230 +S"Georgia O'Keeffe" +p276887 +sg225236 +S'1933' +p276888 +sa(dp276889 +g225232 +S'Alfred Stieglitz' +p276890 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276891 +sg225230 +S"Georgia O'Keeffe" +p276892 +sg225236 +S'1936' +p276893 +sa(dp276894 +g225232 +S'Alfred Stieglitz' +p276895 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276896 +sg225230 +S"Georgia O'Keeffe" +p276897 +sg225236 +S'1933' +p276898 +sa(dp276899 +g225232 +S'Alfred Stieglitz' +p276900 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276901 +sg225230 +S"Georgia O'Keeffe" +p276902 +sg225236 +S'1933' +p276903 +sa(dp276904 +g225232 +S'Alfred Stieglitz' +p276905 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276906 +sg225230 +S"Georgia O'Keeffe" +p276907 +sg225236 +S'1933' +p276908 +sa(dp276909 +g225232 +S'Alfred Stieglitz' +p276910 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276911 +sg225230 +S"Georgia O'Keeffe" +p276912 +sg225236 +S'1933' +p276913 +sa(dp276914 +g225232 +S'Alfred Stieglitz' +p276915 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276916 +sg225230 +S"Georgia O'Keeffe--Exhibition at An American Place" +p276917 +sg225236 +S'1933' +p276918 +sa(dp276919 +g225232 +S'Alfred Stieglitz' +p276920 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276921 +sg225230 +S"Georgia O'Keeffe--Exhibition at An American Place" +p276922 +sg225236 +S'1931/1932' +p276923 +sa(dp276924 +g225232 +S'Alfred Stieglitz' +p276925 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276926 +sg225230 +S"Georgia O'Keeffe" +p276927 +sg225236 +S'1935' +p276928 +sa(dp276929 +g225232 +S'Alfred Stieglitz' +p276930 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276931 +sg225230 +S"Georgia O'Keeffe" +p276932 +sg225236 +S'1936' +p276933 +sa(dp276934 +g225232 +S'Alfred Stieglitz' +p276935 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276936 +sg225230 +S"Georgia O'Keeffe" +p276937 +sg225236 +S'1936' +p276938 +sa(dp276939 +g225232 +S'Alfred Stieglitz' +p276940 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276941 +sg225230 +S"Georgia O'Keeffe" +p276942 +sg225236 +S'1936' +p276943 +sa(dp276944 +g225232 +S'Alfred Stieglitz' +p276945 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276946 +sg225230 +S"Georgia O'Keeffe" +p276947 +sg225236 +S'1935' +p276948 +sa(dp276949 +g225232 +S'Alfred Stieglitz' +p276950 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276951 +sg225230 +S"Georgia O'Keeffe" +p276952 +sg225236 +S'1936' +p276953 +sa(dp276954 +g225232 +S'Alfred Stieglitz' +p276955 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276956 +sg225230 +S"Georgia O'Keeffe" +p276957 +sg225236 +S'1936' +p276958 +sa(dp276959 +g225232 +S'Alfred Stieglitz' +p276960 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276961 +sg225230 +S"Georgia O'Keeffe" +p276962 +sg225236 +S'1936' +p276963 +sa(dp276964 +g225232 +S'Alfred Stieglitz' +p276965 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276966 +sg225230 +S"Georgia O'Keeffe" +p276967 +sg225236 +S'1929/1932' +p276968 +sa(dp276969 +g225232 +S'Alfred Stieglitz' +p276970 +sg225240 +g27 +sg225234 +S'gelatin silver print mounted on paperboard' +p276971 +sg225230 +S"Georgia O'Keeffe" +p276972 +sg225236 +S'1936/1937' +p276973 +sa(dp276974 +g225232 +S'Leonard Lehrer' +p276975 +sg225240 +g27 +sg225234 +S'lithograph' +p276976 +sg225230 +S'Hampton Court' +p276977 +sg225236 +S'1979' +p276978 +sa(dp276979 +g225232 +S'Ellsworth Kelly' +p276980 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p276981 +sg225230 +S'Colored Paper Image XIV (Yellow Curve)' +p276982 +sg225236 +S'1976' +p276983 +sa(dp276984 +g225232 +S'Ellsworth Kelly' +p276985 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p276986 +sg225230 +S'Colored Paper Image XV (Dark Gray and Blue)' +p276987 +sg225236 +S'1976' +p276988 +sa(dp276989 +g225232 +S'Ellsworth Kelly' +p276990 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p276991 +sg225230 +S'Nine Colors (Colored Paper Image XXIII)' +p276992 +sg225236 +S'1976/1977' +p276993 +sa(dp276994 +g225232 +S'Ellsworth Kelly' +p276995 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p276996 +sg225230 +S'Colored Paper Image XXI (Orange/Blue/Black/Green/Brown)' +p276997 +sg225236 +S'1976/1977' +p276998 +sa(dp276999 +g225232 +S'Ellsworth Kelly' +p277000 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p277001 +sg225230 +S'Blue/Green/Yellow/Orange/Red (Colored Paper Image XXII)' +p277002 +sg225236 +S'1976/1977' +p277003 +sa(dp277004 +g225232 +S'Ellsworth Kelly' +p277005 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p277006 +sg225230 +S'Colored Paper Image VIII (Gray Curve with Blue)' +p277007 +sg225236 +S'1976' +p277008 +sa(dp277009 +g225232 +S'Ellsworth Kelly' +p277010 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p277011 +sg225230 +S'Colored Paper Image VI (White Curve with Black II)' +p277012 +sg225236 +S'1976' +p277013 +sa(dp277014 +g225232 +S'Ellsworth Kelly' +p277015 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p277016 +sg225230 +S'Colored Paper Image IV (Red Curve)' +p277017 +sg225236 +S'1976' +p277018 +sa(dp277019 +g225232 +S'Ellsworth Kelly' +p277020 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p277021 +sg225230 +S'Colored Paper Image IX (Four Grays with Black I)' +p277022 +sg225236 +S'1976' +p277023 +sa(dp277024 +g225232 +S'Ellsworth Kelly' +p277025 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p277026 +sg225230 +S'Colored Paper Image XII (Blue Curve with Brown and Gray)' +p277027 +sg225236 +S'1976' +p277028 +sa(dp277029 +g225232 +S'Ellsworth Kelly' +p277030 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p277031 +sg225230 +S'Colored Paper Image I (White Curve with Black I)' +p277032 +sg225236 +S'1976' +p277033 +sa(dp277034 +g225232 +S'Ellsworth Kelly' +p277035 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p277036 +sg225230 +S'Colored Paper Image VII (Yellow Curve with Gray)' +p277037 +sg225236 +S'1976' +p277038 +sa(dp277039 +g225232 +S'Ellsworth Kelly' +p277040 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p277041 +sg225230 +S'Colored Paper Image III (Blue Black Curves)' +p277042 +sg225236 +S'1976' +p277043 +sa(dp277044 +g225232 +S'Ellsworth Kelly' +p277045 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p277046 +sg225230 +S'Colored Paper Image II, State (Green Curves)' +p277047 +sg225236 +S'1976' +p277048 +sa(dp277049 +g225232 +S'Ellsworth Kelly' +p277050 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p277051 +sg225230 +S'Colored Paper Image X (Blue with Gray)' +p277052 +sg225236 +S'1976' +p277053 +sa(dp277054 +g225232 +S'Ellsworth Kelly' +p277055 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p277056 +sg225230 +S'Colored Paper Image V (Blue Curves)' +p277057 +sg225236 +S'1976' +p277058 +sa(dp277059 +g225232 +S'Ellsworth Kelly' +p277060 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p277061 +sg225230 +S'Colored Paper Image XI (Gray Curves with Brown)' +p277062 +sg225236 +S'1976' +p277063 +sa(dp277064 +g225232 +S'Ellsworth Kelly' +p277065 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p277066 +sg225230 +S'Colored Paper Image XX (Brown Square with Blue)' +p277067 +sg225236 +S'1976' +p277068 +sa(dp277069 +g225232 +S'Ellsworth Kelly' +p277070 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p277071 +sg225230 +S'Colored Paper Image XIX (Brown/Blue/Black/Green/Violet)' +p277072 +sg225236 +S'1976' +p277073 +sa(dp277074 +g225232 +S'Ellsworth Kelly' +p277075 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p277076 +sg225230 +S'Colored Paper Image XVII (Blue/Black/Brown)' +p277077 +sg225236 +S'1976' +p277078 +sa(dp277079 +g225232 +S'Ellsworth Kelly' +p277080 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p277081 +sg225230 +S'Colored Paper Image XVIII (Green Square with Dark Gray)' +p277082 +sg225236 +S'1976' +p277083 +sa(dp277084 +g225232 +S'Ellsworth Kelly' +p277085 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p277086 +sg225230 +S'Colored Paper Image XIII (Yellow/Green/Black/Blue/Orange)' +p277087 +sg225236 +S'1976' +p277088 +sa(dp277089 +g225232 +S'Ellsworth Kelly' +p277090 +sg225240 +g27 +sg225234 +S'colored and pressed paper pulp' +p277091 +sg225230 +S'Colored Paper Image XVI (Blue/Yellow/Red)' +p277092 +sg225236 +S'1976' +p277093 +sa(dp277094 +g225232 +S'Kenneth Noland' +p277095 +sg225240 +g27 +sg225234 +S'acrylic on canvas' +p277096 +sg225230 +S'Sound' +p277097 +sg225236 +S'c. 1966' +p277098 +sa(dp277099 +g225232 +S'C\xc3\xa9sar' +p277100 +sg225240 +g27 +sg225234 +S'bronze' +p277101 +sg225230 +S'Homage to Brancusi' +p277102 +sg225236 +S'1957' +p277103 +sa(dp277104 +g225232 +S'Constantin Brancusi' +p277105 +sg225240 +S"Maiastra\n Maiastra appears perched on its base, radiant in its golden color, its breast swelling and beak open as if about to sing. Brancusi stated about the pose, "I wanted to show the Maiastra as raising its head, but without putting any implications of pride, haughtiness or defiance into this gesture. That was the difficult problem and it is only after much hard work that I managed to incorporate this gesture into the motion of flight." The subtlety and refinement of Brancusi's sculptural language are seen in the treatment of the eyes, the arch of the neck, the slight turn of the head, and the highly polished reflective surface of the bronze, as well as the dialogue between organic and hard-edge surfaces and lines and between the materials and shapes of the sculpture, its base, and its pedestal.\n In his obsessive search for "the essence of the work," Brancusi's \n " +p277106 +sg225234 +S'polished bronze' +p277107 +sg225230 +S'Maiastra' +p277108 +sg225236 +S'c. 1911' +p277109 +sa(dp277110 +g225230 +S'Landscape with Alpheus and Arethusa' +p277111 +sg225232 +S'Anthonie Waterloo' +p277112 +sg225234 +S'etching' +p277113 +sg225236 +S'unknown date\n' +p277114 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5e6.jpg' +p277115 +sg225240 +g27 +sa(dp277116 +g225230 +S'Landscape with Tobias and the Angel' +p277117 +sg225232 +S'Anthonie Waterloo' +p277118 +sg225234 +S'etching' +p277119 +sg225236 +S'unknown date\n' +p277120 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5e7.jpg' +p277121 +sg225240 +g27 +sa(dp277122 +g225232 +S'Masabikh Fatkhylilamovich Akhunov' +p277123 +sg225240 +g27 +sg225234 +S'linogravure' +p277124 +sg225230 +S'Lebedinskiy Mine' +p277125 +sg225236 +S'1972' +p277126 +sa(dp277127 +g225232 +S'Dmitrii Spiridonovich Bisti' +p277128 +sg225240 +g27 +sg225234 +S'linogravure' +p277129 +sg225230 +S'Construction' +p277130 +sg225236 +S'1971' +p277131 +sa(dp277132 +g225232 +S'Nikolai Nikolaevich Blagovolin' +p277133 +sg225240 +g27 +sg225234 +S'color auto lithograph' +p277134 +sg225230 +S'Salute' +p277135 +sg225236 +S'unknown date\n' +p277136 +sa(dp277137 +g225232 +S'Illarion Vladimirovich Golitzyn' +p277138 +sg225240 +g27 +sg225234 +S'linoleum cut' +p277139 +sg225230 +S'Grandson' +p277140 +sg225236 +S'unknown date\n' +p277141 +sa(dp277142 +g225232 +S"Inar Zhanovich Khel'mut" +p277143 +sg225240 +g27 +sg225234 +S'etching?' +p277144 +sg225230 +S'Riga Shift' +p277145 +sg225236 +S'1972' +p277146 +sa(dp277147 +g225232 +S"Inar Zhanovich Khel'mut" +p277148 +sg225240 +g27 +sg225234 +S'etching' +p277149 +sg225230 +S'Steel' +p277150 +sg225236 +S'1973' +p277151 +sa(dp277152 +g225232 +S"Aleksandr Mikhailovich Murav'ev" +p277153 +sg225240 +g27 +sg225234 +S'etching?' +p277154 +sg225230 +S'Water Pumping' +p277155 +sg225236 +S'1975' +p277156 +sa(dp277157 +g225232 +S'Konstantin Borisovich Nazarov' +p277158 +sg225240 +g27 +sg225234 +S'lithograph' +p277159 +sg225230 +S'Girls' +p277160 +sg225236 +S'1973' +p277161 +sa(dp277162 +g225232 +S'Aleksei Fedorovich Pakhamov' +p277163 +sg225240 +g27 +sg225234 +S'autolithograph' +p277164 +sg225230 +S'Laboratory Workers' +p277165 +sg225236 +S'1969' +p277166 +sa(dp277167 +g225232 +S'Artist Information (' +p277168 +sg225240 +g27 +sg225234 +S'(artist)' +p277169 +sg225230 +S'Lenin' +p277170 +sg225236 +S'\n' +p277171 +sa(dp277172 +g225232 +S'Georgii Georgievich Poplavskiy' +p277173 +sg225240 +g27 +sg225234 +S'lithograph' +p277174 +sg225230 +S'Return Vehicle' +p277175 +sg225236 +S'1975' +p277176 +sa(dp277177 +g225232 +S'Nikolai Valerianovich Shcheglov' +p277178 +sg225240 +g27 +sg225234 +S'color lithograph' +p277179 +sg225230 +S'Fusillade of Arora' +p277180 +sg225236 +S'unknown date\n' +p277181 +sa(dp277182 +g225232 +S"Aleksei Dement'evich Shmarinov" +p277183 +sg225240 +g27 +sg225234 +S'linogravure' +p277184 +sg225230 +S'Black Birds' +p277185 +sg225236 +S'unknown date\n' +p277186 +sa(dp277187 +g225232 +S'Ahdona Prano Skirutite' +p277188 +sg225240 +g27 +sg225234 +S'linogravure' +p277189 +sg225230 +S'Blue Lakes' +p277190 +sg225236 +S'1967' +p277191 +sa(dp277192 +g225232 +S'Ahdona Prano Skirutite' +p277193 +sg225240 +g27 +sg225234 +S'lithograph' +p277194 +sg225230 +S'Hay-Mowing' +p277195 +sg225236 +S'1972' +p277196 +sa(dp277197 +g225232 +S'Mikhail Nikolaevich Skulyari' +p277198 +sg225240 +g27 +sg225234 +S'color autolithograph' +p277199 +sg225230 +S'Still Life' +p277200 +sg225236 +S'1970' +p277201 +sa(dp277202 +g225232 +S'Georgii Galaktionovich Tsereteli' +p277203 +sg225240 +g27 +sg225234 +S'autolithograph' +p277204 +sg225230 +S'Recollections of Summer' +p277205 +sg225236 +S'unknown date\n' +p277206 +sa(dp277207 +g225232 +S'Vladimir Aleksandrovich Vetrogonskii' +p277208 +sg225240 +g27 +sg225234 +S'lithograph' +p277209 +sg225230 +S'Kirishskiy Stars' +p277210 +sg225236 +S'1968' +p277211 +sa(dp277212 +g225232 +S'Vladimir Aleksandrovich Vetrogonskii' +p277213 +sg225240 +g27 +sg225234 +S'autolithograph' +p277214 +sg225230 +S'Volga-Baltic Canal' +p277215 +sg225236 +S'1971/1976' +p277216 +sa(dp277217 +g225232 +S"Victor Semenovich Vil'ner" +p277218 +sg225240 +g27 +sg225234 +S'lithograph' +p277219 +sg225230 +S"Fisherman's Port" +p277220 +sg225236 +S'probably 1976' +p277221 +sa(dp277222 +g225232 +S'Anatolii Borisovich Yakushin' +p277223 +sg225240 +g27 +sg225234 +S'etching' +p277224 +sg225230 +S'Before the Night Take-Off' +p277225 +sg225236 +S'unknown date\n' +p277226 +sa(dp277227 +g225232 +S'Anatolii Borisovich Yakushin' +p277228 +sg225240 +g27 +sg225234 +S'etching' +p277229 +sg225230 +S'Tsiolkovskiy' +p277230 +sg225236 +S'1975' +p277231 +sa(dp277232 +g225232 +S'Anatolii Borisovich Yakushin' +p277233 +sg225240 +g27 +sg225234 +S'etching' +p277234 +sg225230 +S'Untitled' +p277235 +sg225236 +S'1975' +p277236 +sa(dp277237 +g225232 +S'Gurii Fillipovich Zakharov' +p277238 +sg225240 +g27 +sg225234 +S'etching' +p277239 +sg225230 +S'Singers Bridge' +p277240 +sg225236 +S'unknown date\n' +p277241 +sa(dp277242 +g225230 +S'Evening' +p277243 +sg225232 +S'Artist Information (' +p277244 +sg225234 +S'(artist after)' +p277245 +sg225236 +S'\n' +p277246 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f0c.jpg' +p277247 +sg225240 +g27 +sa(dp277248 +g225232 +S'Jacques Villon' +p277249 +sg225240 +g27 +sg225234 +S'drypoint in black on laid paper' +p277250 +sg225230 +S'The Parisian (La Parisienne)' +p277251 +sg225236 +S'1903' +p277252 +sa(dp277253 +g225232 +S'Artist Information (' +p277254 +sg225240 +g27 +sg225234 +S'(artist after)' +p277255 +sg225230 +S'Landscape with Wagon' +p277256 +sg225236 +S'\n' +p277257 +sa(dp277258 +g225230 +S'Old Man with Bare Head' +p277259 +sg225232 +S'Giovanni Domenico Tiepolo' +p277260 +sg225234 +S'etching' +p277261 +sg225236 +S'c. 1762' +p277262 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb31.jpg' +p277263 +sg225240 +g27 +sa(dp277264 +g225230 +S'Hudson Highlands' +p277265 +sg225232 +S'John William Casilear' +p277266 +sg225234 +S'graphite with touches of white heightening on graywove paper' +p277267 +sg225236 +S'1860s' +p277268 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e48d.jpg' +p277269 +sg225240 +g27 +sa(dp277270 +g225230 +S'Magdalena River, New Granada, Equador' +p277271 +sg225232 +S'Frederic Edwin Church' +p277272 +sg225234 +S'graphite heightened with white on wove paper' +p277273 +sg225236 +S'1853' +p277274 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d5a.jpg' +p277275 +sg225240 +g27 +sa(dp277276 +g225230 +S'Temple of Juno, Agrigentum' +p277277 +sg225232 +S'Thomas Cole' +p277278 +sg225234 +S'graphite and white chalk on gray laid paper' +p277279 +sg225236 +S'1842' +p277280 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e49a.jpg' +p277281 +sg225240 +g27 +sa(dp277282 +g225230 +S"Villa d'Este, Tivoli" +p277283 +sg225232 +S'Jasper Francis Cropsey' +p277284 +sg225234 +S'graphite with touches of white heightening and brown wash on wove paper' +p277285 +sg225236 +S'1848' +p277286 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008cd.jpg' +p277287 +sg225240 +g27 +sa(dp277288 +g225230 +S'Breezing Up' +p277289 +sg225232 +S'Winslow Homer' +p277290 +sg225234 +S'graphite highlighted with black crayon and white chalk on wove paper' +p277291 +sg225236 +S'c. 1879' +p277292 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e1c.jpg' +p277293 +sg225240 +g27 +sa(dp277294 +g225230 +S'North from Storm King' +p277295 +sg225232 +S'John William Casilear' +p277296 +sg225234 +S'graphite heightened with white on light green wove paper' +p277297 +sg225236 +S'1850s' +p277298 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008b6.jpg' +p277299 +sg225240 +g27 +sa(dp277300 +g225230 +S'White Line Square I' +p277301 +sg225232 +S'Artist Information (' +p277302 +sg225234 +g27 +sg225236 +S'(publisher)' +p277303 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a000091c.jpg' +p277304 +sg225240 +g27 +sa(dp277305 +g225230 +S'White Line Square XIII' +p277306 +sg225232 +S'Artist Information (' +p277307 +sg225234 +g27 +sg225236 +S'(publisher)' +p277308 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a000091f.jpg' +p277309 +sg225240 +g27 +sa(dp277310 +g225232 +S'Artist Information (' +p277311 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'White Line Square XIV' +p277312 +sg225236 +S'(publisher)' +p277313 +sa(dp277314 +g225232 +S'Artist Information (' +p277315 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Drypoint Zeta' +p277316 +sg225236 +S'(publisher)' +p277317 +sa(dp277318 +g225232 +S'Artist Information (' +p277319 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Drypoint Theta' +p277320 +sg225236 +S'(publisher)' +p277321 +sa(dp277322 +g225232 +S'Artist Information (' +p277323 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Rotation' +p277324 +sg225236 +S'(publisher)' +p277325 +sa(dp277326 +g225232 +S'Artist Information (' +p277327 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Tilt' +p277328 +sg225236 +S'(publisher)' +p277329 +sa(dp277330 +g225232 +S'Artist Information (' +p277331 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Vent Beam' +p277332 +sg225236 +S'(publisher)' +p277333 +sa(dp277334 +g225232 +S'Artist Information (' +p277335 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p277336 +sg225236 +S'(publisher)' +p277337 +sa(dp277338 +g225230 +S'Speck' +p277339 +sg225232 +S'Artist Information (' +p277340 +sg225234 +g27 +sg225236 +S'(publisher)' +p277341 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a93.jpg' +p277342 +sg225240 +g27 +sa(dp277343 +g225232 +S'Artist Information (' +p277344 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Straight Line of the Sun' +p277345 +sg225236 +S'(publisher)' +p277346 +sa(dp277347 +g225230 +S'Turn' +p277348 +sg225232 +S'Artist Information (' +p277349 +sg225234 +g27 +sg225236 +S'(publisher)' +p277350 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a94.jpg' +p277351 +sg225240 +g27 +sa(dp277352 +g225232 +S'Artist Information (' +p277353 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Composite Head' +p277354 +sg225236 +S'(publisher)' +p277355 +sa(dp277356 +g225232 +S'Artist Information (' +p277357 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Coat' +p277358 +sg225236 +S'(publisher)' +p277359 +sa(dp277360 +g225232 +S'Artist Information (' +p277361 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Elements' +p277362 +sg225236 +S'(publisher)' +p277363 +sa(dp277364 +g225232 +S'Artist Information (' +p277365 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Room' +p277366 +sg225236 +S'(publisher)' +p277367 +sa(dp277368 +g225232 +S'Artist Information (' +p277369 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Sea' +p277370 +sg225236 +S'(publisher)' +p277371 +sa(dp277372 +g225232 +S'Artist Information (' +p277373 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Summer' +p277374 +sg225236 +S'(publisher)' +p277375 +sa(dp277376 +g225232 +S'Artist Information (' +p277377 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Scrap Metal Drypoint #1' +p277378 +sg225236 +S'(publisher)' +p277379 +sa(dp277380 +g225232 +S'Artist Information (' +p277381 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Scrap Metal Drypoint #2' +p277382 +sg225236 +S'(publisher)' +p277383 +sa(dp277384 +g225232 +S'Artist Information (' +p277385 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Scrap Metal Drypoint #3' +p277386 +sg225236 +S'(publisher)' +p277387 +sa(dp277388 +g225232 +S'Artist Information (' +p277389 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Scrap Metal Drypoint #4' +p277390 +sg225236 +S'(publisher)' +p277391 +sa(dp277392 +g225232 +S'Artist Information (' +p277393 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Mist' +p277394 +sg225236 +S'(publisher)' +p277395 +sa(dp277396 +g225232 +S'Artist Information (' +p277397 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Celia 8365 Melrose Avenue, Hollywood' +p277398 +sg225236 +S'(publisher)' +p277399 +sa(dp277400 +g225232 +S'Artist Information (' +p277401 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Still Life with Book' +p277402 +sg225236 +S'(publisher)' +p277403 +sa(dp277404 +g225232 +S'Artist Information (' +p277405 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Michael Crichton' +p277406 +sg225236 +S'(publisher)' +p277407 +sa(dp277408 +g225232 +S'Artist Information (' +p277409 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Christopher Isherwood and Don Bachardy' +p277410 +sg225236 +S'(publisher)' +p277411 +sa(dp277412 +g225232 +S'Artist Information (' +p277413 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Henry at the Table' +p277414 +sg225236 +S'(publisher)' +p277415 +sa(dp277416 +g225232 +S'Artist Information (' +p277417 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Henry with Tulips' +p277418 +sg225236 +S'(publisher)' +p277419 +sa(dp277420 +g225232 +S'Artist Information (' +p277421 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Celia - Musing' +p277422 +sg225236 +S'(publisher)' +p277423 +sa(dp277424 +g225232 +S'Artist Information (' +p277425 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Celia - Inquiring' +p277426 +sg225236 +S'(publisher)' +p277427 +sa(dp277428 +g225232 +S'Artist Information (' +p277429 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Figure 1' +p277430 +sg225236 +S'(publisher)' +p277431 +sa(dp277432 +g225232 +S'Artist Information (' +p277433 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Figure 7' +p277434 +sg225236 +S'(publisher)' +p277435 +sa(dp277436 +g225232 +S'Artist Information (' +p277437 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Figure 1' +p277438 +sg225236 +S'(publisher)' +p277439 +sa(dp277440 +g225230 +S'Figure 7' +p277441 +sg225232 +S'Artist Information (' +p277442 +sg225234 +g27 +sg225236 +S'(publisher)' +p277443 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ec/a000ec42.jpg' +p277444 +sg225240 +g27 +sa(dp277445 +g225232 +S'Artist Information (' +p277446 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Evion' +p277447 +sg225236 +S'(publisher)' +p277448 +sa(dp277449 +g225232 +S'Artist Information (' +p277450 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Panel A/D' +p277451 +sg225236 +S'(publisher)' +p277452 +sa(dp277453 +g225232 +S'Artist Information (' +p277454 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Panel B/D' +p277455 +sg225236 +S'(publisher)' +p277456 +sa(dp277457 +g225232 +S'Artist Information (' +p277458 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Panel C/D' +p277459 +sg225236 +S'(publisher)' +p277460 +sa(dp277461 +g225232 +S'Artist Information (' +p277462 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Panel D/D' +p277463 +sg225236 +S'(publisher)' +p277464 +sa(dp277465 +g225232 +S'Artist Information (' +p277466 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Ale Cans (III)' +p277467 +sg225236 +S'(publisher)' +p277468 +sa(dp277469 +g225232 +S'Artist Information (' +p277470 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Panel A/D' +p277471 +sg225236 +S'(publisher)' +p277472 +sa(dp277473 +g225232 +S'Artist Information (' +p277474 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Panel B/D' +p277475 +sg225236 +S'(publisher)' +p277476 +sa(dp277477 +g225232 +S'Artist Information (' +p277478 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Panel C/D' +p277479 +sg225236 +S'(publisher)' +p277480 +sa(dp277481 +g225232 +S'Artist Information (' +p277482 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Panel D/D' +p277483 +sg225236 +S'(publisher)' +p277484 +sa(dp277485 +g225232 +S'Artist Information (' +p277486 +sg225240 +g27 +sg225234 +g27 +sg225230 +S"#2 (after 'Untitled 1975'), 1976" +p277487 +sg225236 +S'(publisher)' +p277488 +sa(dp277489 +g225232 +S'Artist Information (' +p277490 +sg225240 +g27 +sg225234 +g27 +sg225230 +S"#6 (after 'Untitled 1975'), 1976" +p277491 +sg225236 +S'(publisher)' +p277492 +sa(dp277493 +g225232 +S'Artist Information (' +p277494 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'0 through 9' +p277495 +sg225236 +S'(publisher)' +p277496 +sa(dp277497 +g225232 +S'Artist Information (' +p277498 +sg225240 +g27 +sg225234 +S'American, born 1951' +p277499 +sg225230 +S'0 through 9' +p277500 +sg225236 +S'(printer)' +p277501 +sa(dp277502 +g225232 +S'Artist Information (' +p277503 +sg225240 +g27 +sg225234 +g27 +sg225230 +S"Land's End" +p277504 +sg225236 +S'(publisher)' +p277505 +sa(dp277506 +g225232 +S'Artist Information (' +p277507 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Periscope I' +p277508 +sg225236 +S'(publisher)' +p277509 +sa(dp277510 +g225232 +S'Artist Information (' +p277511 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Periscope II' +p277512 +sg225236 +S'(publisher)' +p277513 +sa(dp277514 +g225232 +S'Jasper Johns' +p277515 +sg225240 +g27 +sg225234 +S'8-color lithograph on Kurotani paper' +p277516 +sg225230 +S'Untitled' +p277517 +sg225236 +S'1977/1980' +p277518 +sa(dp277519 +g225232 +S'Artist Information (' +p277520 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Yellow/Orange' +p277521 +sg225236 +S'(publisher)' +p277522 +sa(dp277523 +g225232 +S'Artist Information (' +p277524 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Spectrum' +p277525 +sg225236 +S'(publisher)' +p277526 +sa(dp277527 +g225232 +S'Artist Information (' +p277528 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Large Gray Curve' +p277529 +sg225236 +S'(publisher)' +p277530 +sa(dp277531 +g225232 +S'Artist Information (' +p277532 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Leaf VI' +p277533 +sg225236 +S'(publisher)' +p277534 +sa(dp277535 +g225232 +S'Artist Information (' +p277536 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Jacmel' +p277537 +sg225236 +S'(publisher)' +p277538 +sa(dp277539 +g225232 +S'Artist Information (' +p277540 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Marigot' +p277541 +sg225236 +S'(publisher)' +p277542 +sa(dp277543 +g225232 +S'Roy Lichtenstein' +p277544 +sg225240 +g27 +sg225234 +S'lithograph and screenprint on Special Arjomari paper' +p277545 +sg225230 +S'Peace Through Chemistry I' +p277546 +sg225236 +S'1970' +p277547 +sa(dp277548 +g225232 +S'Artist Information (' +p277549 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Modern Head #1' +p277550 +sg225236 +S'(publisher)' +p277551 +sa(dp277552 +g225232 +S'Roy Lichtenstein' +p277553 +sg225240 +g27 +sg225234 +S'lithograph and line-cut on Arjomari paper' +p277554 +sg225230 +S'Bull II' +p277555 +sg225236 +S'1973' +p277556 +sa(dp277557 +g225232 +S'Roy Lichtenstein' +p277558 +sg225240 +g27 +sg225234 +S'lithograph, screenprint, and line-cut on Arjomari paper' +p277559 +sg225230 +S'Bull IV' +p277560 +sg225236 +S'1973' +p277561 +sa(dp277562 +g225232 +S'Roy Lichtenstein' +p277563 +sg225240 +g27 +sg225234 +S'lithograph, screenprint, and line-cut on Arjomari paper' +p277564 +sg225230 +S'Bull VI' +p277565 +sg225236 +S'1973' +p277566 +sa(dp277567 +g225232 +S'Roy Lichtenstein' +p277568 +sg225240 +g27 +sg225234 +S'woodcut with embossing on Arches Cover paper' +p277569 +sg225230 +S'Nude in the Woods' +p277570 +sg225236 +S'1980' +p277571 +sa(dp277572 +g225232 +S'Roy Lichtenstein' +p277573 +sg225240 +g27 +sg225234 +S'woodcut with embossing on Arches Cover paper' +p277574 +sg225230 +S'Dr. Waldmann' +p277575 +sg225236 +S'1980' +p277576 +sa(dp277577 +g225232 +S'Artist Information (' +p277578 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Morton A. Mort' +p277579 +sg225236 +S'(publisher)' +p277580 +sa(dp277581 +g225232 +S'Artist Information (' +p277582 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Ah Ha' +p277583 +sg225236 +S'(publisher)' +p277584 +sa(dp277585 +g225232 +S'Artist Information (' +p277586 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Oiled Dead (State)' +p277587 +sg225236 +S'(publisher)' +p277588 +sa(dp277589 +g225230 +S'Profile Airflow' +p277590 +sg225232 +S'Artist Information (' +p277591 +sg225234 +g27 +sg225236 +S'(publisher)' +p277592 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a000169e.jpg' +p277593 +sg225240 +g27 +sa(dp277594 +g225232 +S'Artist Information (' +p277595 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Soft Toilet #2' +p277596 +sg225236 +S'(publisher)' +p277597 +sa(dp277598 +g225230 +S'The Letter Q as Beach House, with Sailboat' +p277599 +sg225232 +S'Artist Information (' +p277600 +sg225234 +g27 +sg225236 +S'(publisher)' +p277601 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b56.jpg' +p277602 +sg225240 +g27 +sa(dp277603 +g225232 +S'Artist Information (' +p277604 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Test Stone #5' +p277605 +sg225236 +S'(publisher)' +p277606 +sa(dp277607 +g225232 +S'Artist Information (' +p277608 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Sky Garden' +p277609 +sg225236 +S'(publisher)' +p277610 +sa(dp277611 +g225232 +S'Artist Information (' +p277612 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Hybrid' +p277613 +sg225236 +S'(publisher)' +p277614 +sa(dp277615 +g225232 +S'Artist Information (' +p277616 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Cardbird II' +p277617 +sg225236 +S'(publisher)' +p277618 +sa(dp277619 +g225232 +S'Artist Information (' +p277620 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Page 2' +p277621 +sg225236 +S'(publisher)' +p277622 +sa(dp277623 +g225232 +S'Artist Information (' +p277624 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Link' +p277625 +sg225236 +S'(publisher)' +p277626 +sa(dp277627 +g225232 +S'Artist Information (' +p277628 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Ringer' +p277629 +sg225236 +S'(publisher)' +p277630 +sa(dp277631 +g225232 +S'Artist Information (' +p277632 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Preview' +p277633 +sg225236 +S'(publisher)' +p277634 +sa(dp277635 +g225232 +S'Artist Information (' +p277636 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Scrape' +p277637 +sg225236 +S'(publisher)' +p277638 +sa(dp277639 +g225232 +S'Artist Information (' +p277640 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Pit Boss' +p277641 +sg225236 +S'(publisher)' +p277642 +sa(dp277643 +g225232 +S'Artist Information (' +p277644 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Capitol' +p277645 +sg225236 +S'(publisher)' +p277646 +sa(dp277647 +g225232 +S'Artist Information (' +p277648 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Romances (Prophecy)' +p277649 +sg225236 +S'(publisher)' +p277650 +sa(dp277651 +g225232 +S'Artist Information (' +p277652 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Romances (Epic)' +p277653 +sg225236 +S'(publisher)' +p277654 +sa(dp277655 +g225232 +S'Artist Information (' +p277656 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Steel Arbor' +p277657 +sg225236 +S'(publisher)' +p277658 +sa(dp277659 +g225232 +S'Artist Information (' +p277660 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Grape Levee' +p277661 +sg225236 +S'(publisher)' +p277662 +sa(dp277663 +g225232 +S'Artist Information (' +p277664 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Moon Melon' +p277665 +sg225236 +S'(publisher)' +p277666 +sa(dp277667 +g225232 +S'Artist Information (' +p277668 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Mud Dauber' +p277669 +sg225236 +S'(publisher)' +p277670 +sa(dp277671 +g225232 +S'Artist Information (' +p277672 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Rose Bay' +p277673 +sg225236 +S'(publisher)' +p277674 +sa(dp277675 +g225232 +S'Artist Information (' +p277676 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Star Pointer' +p277677 +sg225236 +S'(publisher)' +p277678 +sa(dp277679 +g225232 +S'Artist Information (' +p277680 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Star, Towel, Weather Vane' +p277681 +sg225236 +S'(publisher)' +p277682 +sa(dp277683 +g225232 +S'Artist Information (' +p277684 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Circuit' +p277685 +sg225236 +S'(publisher)' +p277686 +sa(dp277687 +g225232 +S'Artist Information (' +p277688 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Toiny Orbit' +p277689 +sg225236 +S'(publisher)' +p277690 +sa(dp277691 +g225232 +S'Artist Information (' +p277692 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Toiny Orbit' +p277693 +sg225236 +S'(publisher)' +p277694 +sa(dp277695 +g225232 +S'Artist Information (' +p277696 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Signal' +p277697 +sg225236 +S'(publisher)' +p277698 +sa(dp277699 +g225232 +S'Artist Information (' +p277700 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Delaware Crossing' +p277701 +sg225236 +S'(publisher)' +p277702 +sa(dp277703 +g225232 +S'Artist Information (' +p277704 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Double Gray Scramble' +p277705 +sg225236 +S'(publisher)' +p277706 +sa(dp277707 +g225232 +S'Artist Information (' +p277708 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Union' +p277709 +sg225236 +S'(publisher)' +p277710 +sa(dp277711 +g225232 +S'Artist Information (' +p277712 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'York Factory II' +p277713 +sg225236 +S'(publisher)' +p277714 +sa(dp277715 +g225232 +S'Artist Information (' +p277716 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Suckers State I' +p277717 +sg225236 +S'(publisher)' +p277718 +sa(dp277719 +g225230 +S'Flag' +p277720 +sg225232 +S'Artist Information (' +p277721 +sg225234 +g27 +sg225236 +S'(publisher)' +p277722 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a000167a.jpg' +p277723 +sg225240 +g27 +sa(dp277724 +g225232 +S'Jasper Johns' +p277725 +sg225240 +g27 +sg225234 +S'lead relief' +p277726 +sg225230 +S'Numerals, 0 through 9' +p277727 +sg225236 +S'1970' +p277728 +sa(dp277729 +g225232 +S'Artist Information (' +p277730 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Narrow Gauge Train' +p277731 +sg225236 +S'(publisher)' +p277732 +sa(dp277733 +g225232 +S'Artist Information (' +p277734 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Rotation-Tilt' +p277735 +sg225236 +S'(publisher)' +p277736 +sa(dp277737 +g225230 +S'Untitled' +p277738 +sg225232 +S'Artist Information (' +p277739 +sg225234 +g27 +sg225236 +S'(publisher)' +p277740 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a000168b.jpg' +p277741 +sg225240 +g27 +sa(dp277742 +g225232 +S'Artist Information (' +p277743 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p277744 +sg225236 +S'(publisher)' +p277745 +sa(dp277746 +g225232 +S'Artist Information (' +p277747 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p277748 +sg225236 +S'(publisher)' +p277749 +sa(dp277750 +g225232 +S'Artist Information (' +p277751 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p277752 +sg225236 +S'(publisher)' +p277753 +sa(dp277754 +g225232 +S'Artist Information (' +p277755 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'A Lot More of Ann Combing Her Hair' +p277756 +sg225236 +S'(publisher)' +p277757 +sa(dp277758 +g225232 +S'Artist Information (' +p277759 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Peter Schlesinger' +p277760 +sg225236 +S'(publisher)' +p277761 +sa(dp277762 +g225232 +S'Artist Information (' +p277763 +sg225240 +g27 +sg225234 +g27 +sg225230 +S"Fool's House" +p277764 +sg225236 +S'(publisher)' +p277765 +sa(dp277766 +g225232 +S'Artist Information (' +p277767 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Grand Case' +p277768 +sg225236 +S'(publisher)' +p277769 +sa(dp277770 +g225232 +S'Artist Information (' +p277771 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Sawdy' +p277772 +sg225236 +S'(publisher)' +p277773 +sa(dp277774 +g225232 +S'Roy Lichtenstein' +p277775 +sg225240 +g27 +sg225234 +S'lithograph, screenprint, and line-cut on Arjomari paper' +p277776 +sg225230 +S'Bull III' +p277777 +sg225236 +S'1973' +p277778 +sa(dp277779 +g225230 +S'Cathedral #4' +p277780 +sg225232 +S'Artist Information (' +p277781 +sg225234 +g27 +sg225236 +S'(publisher)' +p277782 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b08.jpg' +p277783 +sg225240 +g27 +sa(dp277784 +g225232 +S'Artist Information (' +p277785 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Pauillac, #1' +p277786 +sg225236 +S'(publisher)' +p277787 +sa(dp277788 +g225232 +S'Artist Information (' +p277789 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Clear Vision' +p277790 +sg225236 +S'(publisher)' +p277791 +sa(dp277792 +g225230 +S'Double-Nose/Purse/Punching Bag/Ashtray' +p277793 +sg225232 +S'Artist Information (' +p277794 +sg225234 +g27 +sg225236 +S'(publisher)' +p277795 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a000169b.jpg' +p277796 +sg225240 +g27 +sa(dp277797 +g225230 +S'Untitled (Ice Cream Cones)' +p277798 +sg225232 +S'Artist Information (' +p277799 +sg225234 +g27 +sg225236 +S'(publisher)' +p277800 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b53.jpg' +p277801 +sg225240 +g27 +sa(dp277802 +g225232 +S'Artist Information (' +p277803 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Mediterranean Lizard Cup' +p277804 +sg225236 +S'(publisher)' +p277805 +sa(dp277806 +g225230 +S'Cardbird Door' +p277807 +sg225232 +S'Artist Information (' +p277808 +sg225234 +g27 +sg225236 +S'(publisher)' +p277809 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00017/a000179b.jpg' +p277810 +sg225240 +g27 +sa(dp277811 +g225232 +S'Artist Information (' +p277812 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Conway' +p277813 +sg225236 +S'(publisher)' +p277814 +sa(dp277815 +g225230 +S'White Line Square XII' +p277816 +sg225232 +S'Artist Information (' +p277817 +sg225234 +g27 +sg225236 +S'(publisher)' +p277818 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a000091d.jpg' +p277819 +sg225240 +g27 +sa(dp277820 +g225230 +S'White Embossing on Gray II' +p277821 +sg225232 +S'Artist Information (' +p277822 +sg225234 +g27 +sg225236 +S'(publisher)' +p277823 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a000091e.jpg' +p277824 +sg225240 +g27 +sa(dp277825 +g225232 +S'Artist Information (' +p277826 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Spleen (Red)' +p277827 +sg225236 +S'(publisher)' +p277828 +sa(dp277829 +g225232 +S'Ellsworth Kelly' +p277830 +sg225240 +g27 +sg225234 +S'screenprint in blue and black on Special Arjomari paper' +p277831 +sg225230 +S'Blue with Black II' +p277832 +sg225236 +S'published 1974' +p277833 +sa(dp277834 +g225232 +S'Artist Information (' +p277835 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Head' +p277836 +sg225236 +S'(publisher)' +p277837 +sa(dp277838 +g225230 +S'Arched Soft Screw as Building' +p277839 +sg225232 +S'Artist Information (' +p277840 +sg225234 +g27 +sg225236 +S'(publisher)' +p277841 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b54.jpg' +p277842 +sg225240 +g27 +sa(dp277843 +g225232 +S'Artist Information (' +p277844 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Hands' +p277845 +sg225236 +S'(publisher)' +p277846 +sa(dp277847 +g225232 +S'Artist Information (' +p277848 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'The Billionaire Deluxe' +p277849 +sg225236 +S'(publisher)' +p277850 +sa(dp277851 +g225230 +S'Soft Screw' +p277852 +sg225232 +S'Artist Information (' +p277853 +sg225234 +g27 +sg225236 +S'(publisher)' +p277854 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0003b/a0003b59.jpg' +p277855 +sg225240 +g27 +sa(dp277856 +g225232 +S'Artist Information (' +p277857 +sg225240 +g27 +sg225234 +g27 +sg225230 +S"T'ang" +p277858 +sg225236 +S'(publisher)' +p277859 +sa(dp277860 +g225232 +S'Artist Information (' +p277861 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Leaf IV' +p277862 +sg225236 +S'(publisher)' +p277863 +sa(dp277864 +g225232 +S'Artist Information (' +p277865 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled (Body Buildings)' +p277866 +sg225236 +S'(publisher)' +p277867 +sa(dp277868 +g225232 +S'Artist Information (' +p277869 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled (Geometric Mouse)' +p277870 +sg225236 +S'(publisher)' +p277871 +sa(dp277872 +g225232 +S'Ronald Davis' +p277873 +sg225240 +g27 +sg225234 +S'22-color screenprint with a varnish layer on Arches 88 paper' +p277874 +sg225230 +S'Framed Block' +p277875 +sg225236 +S'published 1974' +p277876 +sa(dp277877 +g225230 +S'Ice Bag--Scale B' +p277878 +sg225232 +S'Artist Information (' +p277879 +sg225234 +g27 +sg225236 +S'(publisher)' +p277880 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a000169c.jpg' +p277881 +sg225240 +g27 +sa(dp277882 +g225232 +S'Artist Information (' +p277883 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'TR I' +p277884 +sg225236 +S'(publisher)' +p277885 +sa(dp277886 +g225232 +S'Artist Information (' +p277887 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'TR II' +p277888 +sg225236 +S'(publisher)' +p277889 +sa(dp277890 +g225232 +S'Artist Information (' +p277891 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'White Embossing on Gray IV' +p277892 +sg225236 +S'(publisher)' +p277893 +sa(dp277894 +g225232 +S'Artist Information (' +p277895 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p277896 +sg225236 +S'(publisher)' +p277897 +sa(dp277898 +g225232 +S'Artist Information (' +p277899 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p277900 +sg225236 +S'(publisher)' +p277901 +sa(dp277902 +g225232 +S'Artist Information (' +p277903 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'At the Falls' +p277904 +sg225236 +S'(publisher)' +p277905 +sa(dp277906 +g225232 +S'Artist Information (' +p277907 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Rotation-Tilt, Black State' +p277908 +sg225236 +S'(publisher)' +p277909 +sa(dp277910 +g225232 +S'Artist Information (' +p277911 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Drypoint Eta' +p277912 +sg225236 +S'(publisher)' +p277913 +sa(dp277914 +g225232 +S'Artist Information (' +p277915 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Drypoint Beta' +p277916 +sg225236 +S'(publisher)' +p277917 +sa(dp277918 +g225232 +S'Artist Information (' +p277919 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Drypoint Gamma' +p277920 +sg225236 +S'(publisher)' +p277921 +sa(dp277922 +g225232 +S'Artist Information (' +p277923 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Drypoint Epsilon' +p277924 +sg225236 +S'(publisher)' +p277925 +sa(dp277926 +g225232 +S'Artist Information (' +p277927 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Drypoint Delta' +p277928 +sg225236 +S'(publisher)' +p277929 +sa(dp277930 +g225232 +S'Artist Information (' +p277931 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Drypoint Mu' +p277932 +sg225236 +S'(publisher)' +p277933 +sa(dp277934 +g225232 +S'Artist Information (' +p277935 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Drypoint Lambda' +p277936 +sg225236 +S'(publisher)' +p277937 +sa(dp277938 +g225232 +S'Artist Information (' +p277939 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Drypoint Alpha' +p277940 +sg225236 +S'(publisher)' +p277941 +sa(dp277942 +g225232 +S'Artist Information (' +p277943 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Drypoint Iota' +p277944 +sg225236 +S'(publisher)' +p277945 +sa(dp277946 +g225232 +S'Artist Information (' +p277947 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Drypoint Kappa' +p277948 +sg225236 +S'(publisher)' +p277949 +sa(dp277950 +g225232 +S'Artist Information (' +p277951 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Drypoint Nu' +p277952 +sg225236 +S'(publisher)' +p277953 +sa(dp277954 +g225232 +S'Artist Information (' +p277955 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Point' +p277956 +sg225236 +S'(publisher)' +p277957 +sa(dp277958 +g225232 +S'Artist Information (' +p277959 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Pointing at the Future I [right half]' +p277960 +sg225236 +S'(publisher)' +p277961 +sa(dp277962 +g225232 +S'Artist Information (' +p277963 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Pointing at the Future I [left half]' +p277964 +sg225236 +S'(publisher)' +p277965 +sa(dp277966 +g225232 +S'Artist Information (' +p277967 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p277968 +sg225236 +S'(publisher)' +p277969 +sa(dp277970 +g225232 +S'Artist Information (' +p277971 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'East Side' +p277972 +sg225236 +S'(publisher)' +p277973 +sa(dp277974 +g225232 +S'Artist Information (' +p277975 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Car' +p277976 +sg225236 +S'(publisher)' +p277977 +sa(dp277978 +g225232 +S'Artist Information (' +p277979 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Rug' +p277980 +sg225236 +S'(publisher)' +p277981 +sa(dp277982 +g225232 +S'Artist Information (' +p277983 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Edition Six' +p277984 +sg225236 +S'(publisher)' +p277985 +sa(dp277986 +g225232 +S'Artist Information (' +p277987 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Scrap Metal Drypoint #5' +p277988 +sg225236 +S'(publisher)' +p277989 +sa(dp277990 +g225232 +S'Artist Information (' +p277991 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Scrap Metal Drypoint #6' +p277992 +sg225236 +S'(publisher)' +p277993 +sa(dp277994 +g225232 +S'Artist Information (' +p277995 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Sofa 8501 Hedges Place, Los Angeles' +p277996 +sg225236 +S'(publisher)' +p277997 +sa(dp277998 +g225232 +S'Artist Information (' +p277999 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Snow Without Color' +p278000 +sg225236 +S'(publisher)' +p278001 +sa(dp278002 +g225232 +S'Artist Information (' +p278003 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Celia Smoking' +p278004 +sg225236 +S'(publisher)' +p278005 +sa(dp278006 +g225232 +S'Artist Information (' +p278007 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Brooke Hopper' +p278008 +sg225236 +S'(publisher)' +p278009 +sa(dp278010 +g225232 +S'Artist Information (' +p278011 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Sidney in His Office' +p278012 +sg225236 +S'(publisher)' +p278013 +sa(dp278014 +g225232 +S'Artist Information (' +p278015 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Celia - Elegant' +p278016 +sg225236 +S'(publisher)' +p278017 +sa(dp278018 +g225232 +S'Artist Information (' +p278019 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Bent Blue' +p278020 +sg225236 +S'(publisher)' +p278021 +sa(dp278022 +g225232 +S'Artist Information (' +p278023 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Hinged Canvas' +p278024 +sg225236 +S'(publisher)' +p278025 +sa(dp278026 +g225232 +S'Artist Information (' +p278027 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Coathanger and Spoon' +p278028 +sg225236 +S'(publisher)' +p278029 +sa(dp278030 +g225232 +S'Artist Information (' +p278031 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Souvenir - Black State' +p278032 +sg225236 +S'(publisher)' +p278033 +sa(dp278034 +g225232 +S'Artist Information (' +p278035 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Sketch from Untitled II' +p278036 +sg225236 +S'(publisher)' +p278037 +sa(dp278038 +g225232 +S'Artist Information (' +p278039 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Face' +p278040 +sg225236 +S'(publisher)' +p278041 +sa(dp278042 +g225232 +S'Artist Information (' +p278043 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'HandFootSockFloor' +p278044 +sg225236 +S'(publisher)' +p278045 +sa(dp278046 +g225232 +S'Artist Information (' +p278047 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Buttocks' +p278048 +sg225236 +S'(publisher)' +p278049 +sa(dp278050 +g225232 +S'Artist Information (' +p278051 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Torso' +p278052 +sg225236 +S'(publisher)' +p278053 +sa(dp278054 +g225232 +S'Artist Information (' +p278055 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Feet' +p278056 +sg225236 +S'(publisher)' +p278057 +sa(dp278058 +g225232 +S'Artist Information (' +p278059 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Leg' +p278060 +sg225236 +S'(publisher)' +p278061 +sa(dp278062 +g225232 +S'Artist Information (' +p278063 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Knee' +p278064 +sg225236 +S'(publisher)' +p278065 +sa(dp278066 +g225232 +S'Artist Information (' +p278067 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Senanque' +p278068 +sg225236 +S'(publisher)' +p278069 +sa(dp278070 +g225232 +S'Artist Information (' +p278071 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Moissac' +p278072 +sg225236 +S'(publisher)' +p278073 +sa(dp278074 +g225232 +S'Artist Information (' +p278075 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Leaves' +p278076 +sg225236 +S'(publisher)' +p278077 +sa(dp278078 +g225232 +S'Artist Information (' +p278079 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Amden' +p278080 +sg225236 +S'(publisher)' +p278081 +sa(dp278082 +g225232 +S'Artist Information (' +p278083 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Braunwald' +p278084 +sg225236 +S'(publisher)' +p278085 +sa(dp278086 +g225232 +S'Artist Information (' +p278087 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Bordrouant' +p278088 +sg225236 +S'(publisher)' +p278089 +sa(dp278090 +g225232 +S'Artist Information (' +p278091 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Bandol' +p278092 +sg225236 +S'(publisher)' +p278093 +sa(dp278094 +g225232 +S'Artist Information (' +p278095 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'The Marriage Icon' +p278096 +sg225236 +S'(publisher)' +p278097 +sa(dp278098 +g225232 +S'Artist Information (' +p278099 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'The Opti-Can Royale' +p278100 +sg225236 +S'(publisher)' +p278101 +sa(dp278102 +g225232 +S'Artist Information (' +p278103 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'The Econo-Can' +p278104 +sg225236 +S'(publisher)' +p278105 +sa(dp278106 +g225232 +S'Artist Information (' +p278107 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Cathedral #3' +p278108 +sg225236 +S'(publisher)' +p278109 +sa(dp278110 +g225232 +S'Artist Information (' +p278111 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Peace Through Chemistry III' +p278112 +sg225236 +S'(publisher)' +p278113 +sa(dp278114 +g225232 +S'Artist Information (' +p278115 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Modern Head #3' +p278116 +sg225236 +S'(publisher)' +p278117 +sa(dp278118 +g225232 +S'Roy Lichtenstein' +p278119 +sg225240 +g27 +sg225234 +S'line-cut on Arjomari paper' +p278120 +sg225230 +S'Bull I' +p278121 +sg225236 +S'1973' +p278122 +sa(dp278123 +g225232 +S'Roy Lichtenstein' +p278124 +sg225240 +g27 +sg225234 +S'lithograph, screenprint, and line-cut on Arjomari paper' +p278125 +sg225230 +S'Bull V' +p278126 +sg225236 +S'1973' +p278127 +sa(dp278128 +g225232 +S'Artist Information (' +p278129 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Figures with Rope' +p278130 +sg225236 +S'(publisher)' +p278131 +sa(dp278132 +g225232 +S'Artist Information (' +p278133 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Reclining Nude' +p278134 +sg225236 +S'(publisher)' +p278135 +sa(dp278136 +g225232 +S'Artist Information (' +p278137 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'The Couple' +p278138 +sg225236 +S'(publisher)' +p278139 +sa(dp278140 +g225232 +S'Artist Information (' +p278141 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'The Student' +p278142 +sg225236 +S'(publisher)' +p278143 +sa(dp278144 +g225232 +S'Artist Information (' +p278145 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'One Hand' +p278146 +sg225236 +S'(publisher)' +p278147 +sa(dp278148 +g225232 +S'Artist Information (' +p278149 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Harvest, in Scotland' +p278150 +sg225236 +S'(publisher)' +p278151 +sa(dp278152 +g225232 +S'Artist Information (' +p278153 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled (Punching Bag)' +p278154 +sg225236 +S'(publisher)' +p278155 +sa(dp278156 +g225232 +S'Artist Information (' +p278157 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled (Sneaker Lace)' +p278158 +sg225236 +S'(publisher)' +p278159 +sa(dp278160 +g225232 +S'Artist Information (' +p278161 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled (Kneeling Building)' +p278162 +sg225236 +S'(publisher)' +p278163 +sa(dp278164 +g225232 +S'Artist Information (' +p278165 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled (Kassel)' +p278166 +sg225236 +S'(publisher)' +p278167 +sa(dp278168 +g225232 +S'Artist Information (' +p278169 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled (Fire Plug)' +p278170 +sg225236 +S'(publisher)' +p278171 +sa(dp278172 +g225232 +S'Artist Information (' +p278173 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled (Drum Set)' +p278174 +sg225236 +S'(publisher)' +p278175 +sa(dp278176 +g225232 +S'Artist Information (' +p278177 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled (Tar Pits)' +p278178 +sg225236 +S'(publisher)' +p278179 +sa(dp278180 +g225232 +S'Artist Information (' +p278181 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled (New Pasadena Museum)' +p278182 +sg225236 +S'(publisher)' +p278183 +sa(dp278184 +g225230 +S'Geometric Mouse - Scale C' +p278185 +sg225232 +S'Artist Information (' +p278186 +sg225234 +g27 +sg225236 +S'(publisher)' +p278187 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a000169d.jpg' +p278188 +sg225240 +g27 +sa(dp278189 +g225230 +S'Soft Screw as Balloon, Ascending' +p278190 +sg225232 +S'Artist Information (' +p278191 +sg225234 +g27 +sg225236 +S'(publisher)' +p278192 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b55.jpg' +p278193 +sg225240 +g27 +sa(dp278194 +g225232 +S'Artist Information (' +p278195 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Figurine Cup VI' +p278196 +sg225236 +S'(publisher)' +p278197 +sa(dp278198 +g225232 +S'Artist Information (' +p278199 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Test Stone #1' +p278200 +sg225236 +S'(publisher)' +p278201 +sa(dp278202 +g225232 +S'Artist Information (' +p278203 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Flower Re-Run' +p278204 +sg225236 +S'(publisher)' +p278205 +sa(dp278206 +g225232 +S'Artist Information (' +p278207 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Tilt' +p278208 +sg225236 +S'(publisher)' +p278209 +sa(dp278210 +g225232 +S'Artist Information (' +p278211 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Earth Day' +p278212 +sg225236 +S'(publisher)' +p278213 +sa(dp278214 +g225232 +S'Artist Information (' +p278215 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Horsefeathers Thirteen - XIV' +p278216 +sg225236 +S'(publisher)' +p278217 +sa(dp278218 +g225232 +S'Artist Information (' +p278219 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Horsefeathers Thirteen - XV' +p278220 +sg225236 +S'(publisher)' +p278221 +sa(dp278222 +g225232 +S'Artist Information (' +p278223 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Page 5' +p278224 +sg225236 +S'(publisher)' +p278225 +sa(dp278226 +g225232 +S'Artist Information (' +p278227 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Bit' +p278228 +sg225236 +S'(publisher)' +p278229 +sa(dp278230 +g225232 +S'Artist Information (' +p278231 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Pull' +p278232 +sg225236 +S'(publisher)' +p278233 +sa(dp278234 +g225232 +S'Artist Information (' +p278235 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Little Joe' +p278236 +sg225236 +S'(publisher)' +p278237 +sa(dp278238 +g225232 +S'Artist Information (' +p278239 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Ally' +p278240 +sg225236 +S'(publisher)' +p278241 +sa(dp278242 +g225232 +S'Artist Information (' +p278243 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Romances (Myth)' +p278244 +sg225236 +S'(publisher)' +p278245 +sa(dp278246 +g225232 +S'Artist Information (' +p278247 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Night Tork' +p278248 +sg225236 +S'(publisher)' +p278249 +sa(dp278250 +g225232 +S'Artist Information (' +p278251 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Masthead' +p278252 +sg225236 +S'(publisher)' +p278253 +sa(dp278254 +g225232 +S'Artist Information (' +p278255 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Gray Garden' +p278256 +sg225236 +S'(publisher)' +p278257 +sa(dp278258 +g225232 +S'Artist Information (' +p278259 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Rookery Mounds - Yardarm' +p278260 +sg225236 +S'(publisher)' +p278261 +sa(dp278262 +g225232 +S'Artist Information (' +p278263 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Crystal' +p278264 +sg225236 +S'(publisher)' +p278265 +sa(dp278266 +g225232 +S'Artist Information (' +p278267 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Level' +p278268 +sg225236 +S'(publisher)' +p278269 +sa(dp278270 +g225232 +S'Artist Information (' +p278271 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Head Stand' +p278272 +sg225236 +S'(publisher)' +p278273 +sa(dp278274 +g225232 +S'Artist Information (' +p278275 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Open' +p278276 +sg225236 +S'(publisher)' +p278277 +sa(dp278278 +g225232 +S'Artist Information (' +p278279 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Exploding Cheese' +p278280 +sg225236 +S'(publisher)' +p278281 +sa(dp278282 +g225232 +S'Artist Information (' +p278283 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Cheese Oval' +p278284 +sg225236 +S'(publisher)' +p278285 +sa(dp278286 +g225232 +S'Artist Information (' +p278287 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'183rd & Webster Avenue' +p278288 +sg225236 +S'(publisher)' +p278289 +sa(dp278290 +g225232 +S'Artist Information (' +p278291 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Balance' +p278292 +sg225236 +S'(publisher)' +p278293 +sa(dp278294 +g225232 +S'Artist Information (' +p278295 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Eight by Eight' +p278296 +sg225236 +S'(publisher)' +p278297 +sa(dp278298 +g225232 +S'Artist Information (' +p278299 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Video Still Screen III' +p278300 +sg225236 +S'(publisher)' +p278301 +sa(dp278302 +g225232 +S'Artist Information (' +p278303 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Wax-Wan' +p278304 +sg225236 +S'(publisher)' +p278305 +sa(dp278306 +g225232 +S'Artist Information (' +p278307 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Orbit I' +p278308 +sg225236 +S'(publisher)' +p278309 +sa(dp278310 +g225232 +S'Artist Information (' +p278311 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Ifafa II' +p278312 +sg225236 +S'(publisher)' +p278313 +sa(dp278314 +g225232 +S'Artist Information (' +p278315 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Newstead Abbey' +p278316 +sg225236 +S'(publisher)' +p278317 +sa(dp278318 +g225232 +S'Artist Information (' +p278319 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Ophir' +p278320 +sg225236 +S'(publisher)' +p278321 +sa(dp278322 +g225232 +S'Artist Information (' +p278323 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Bonne Bay' +p278324 +sg225236 +S'(publisher)' +p278325 +sa(dp278326 +g225232 +S'Artist Information (' +p278327 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Sabine Pass' +p278328 +sg225236 +S'(publisher)' +p278329 +sa(dp278330 +g225232 +S'Artist Information (' +p278331 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Sunapee' +p278332 +sg225236 +S'(publisher)' +p278333 +sa(dp278334 +g225232 +S'Artist Information (' +p278335 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Wolfeboro' +p278336 +sg225236 +S'(publisher)' +p278337 +sa(dp278338 +g225232 +S'Artist Information (' +p278339 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Moultonboro' +p278340 +sg225236 +S'(publisher)' +p278341 +sa(dp278342 +g225232 +S'Artist Information (' +p278343 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled Head I' +p278344 +sg225236 +S'(publisher)' +p278345 +sa(dp278346 +g225232 +S'Artist Information (' +p278347 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Publicon - Station I' +p278348 +sg225236 +S'(publisher)' +p278349 +sa(dp278350 +g225232 +S'Artist Information (' +p278351 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Publicon - Station II' +p278352 +sg225236 +S'(publisher)' +p278353 +sa(dp278354 +g225232 +S'Artist Information (' +p278355 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Publicon - Station III' +p278356 +sg225236 +S'(publisher)' +p278357 +sa(dp278358 +g225232 +S'Artist Information (' +p278359 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Publicon - Station IV' +p278360 +sg225236 +S'(publisher)' +p278361 +sa(dp278362 +g225232 +S'Artist Information (' +p278363 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Publicon - Station V' +p278364 +sg225236 +S'(publisher)' +p278365 +sa(dp278366 +g225232 +S'Artist Information (' +p278367 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Publicon - Station VI' +p278368 +sg225236 +S'(publisher)' +p278369 +sa(dp278370 +g225232 +S'Artist Information (' +p278371 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'The Block Head' +p278372 +sg225236 +S'(publisher)' +p278373 +sa(dp278374 +g225232 +S'Artist Information (' +p278375 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled (City as Alphabet)' +p278376 +sg225236 +S'(publisher)' +p278377 +sa(dp278378 +g225232 +S'Artist Information (' +p278379 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Double-Nose/Purse/Punching Bag/Ashtray' +p278380 +sg225236 +S'(publisher)' +p278381 +sa(dp278382 +g225232 +S'Artist Information (' +p278383 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Club Onyx - Seven Steps' +p278384 +sg225236 +S'(publisher)' +p278385 +sa(dp278386 +g225232 +S'Artist Information (' +p278387 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Arbeit Macht Frei' +p278388 +sg225236 +S'(publisher)' +p278389 +sa(dp278390 +g225232 +S'Artist Information (' +p278391 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'The Jerry Can Standard' +p278392 +sg225236 +S'(publisher)' +p278393 +sa(dp278394 +g225232 +S'Artist Information (' +p278395 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Mirrored Concorde' +p278396 +sg225236 +S'(publisher)' +p278397 +sa(dp278398 +g225232 +S'Roy Lichtenstein' +p278399 +sg225240 +g27 +sg225234 +S'bronze' +p278400 +sg225230 +S'Peace Through Chemistry Bronze' +p278401 +sg225236 +S'1970' +p278402 +sa(dp278403 +g225232 +S'Bruce Hafley' +p278404 +sg225240 +g27 +sg225234 +S'brush and gray wash over graphite' +p278405 +sg225230 +S'Jack Johnson - Image No.2' +p278406 +sg225236 +S'1972' +p278407 +sa(dp278408 +g225232 +S'June Wayne' +p278409 +sg225240 +g27 +sg225234 +S'color lithograph (aluminum)' +p278410 +sg225230 +S'Colophon' +p278411 +sg225236 +S'1975/1979' +p278412 +sa(dp278413 +g225232 +S'June Wayne' +p278414 +sg225240 +g27 +sg225234 +S'portfolio with 21 color lithographs including colophon plus title page/table of contents (1 folded sheet) and 20 numbered wrappers' +p278415 +sg225230 +S'The Dorothy Series' +p278416 +sg225236 +S'1975/1979' +p278417 +sa(dp278418 +g225232 +S'June Wayne' +p278419 +sg225240 +g27 +sg225234 +S'color lithograph (aluminum)' +p278420 +sg225230 +S'Leaving' +p278421 +sg225236 +S'1975/1979' +p278422 +sa(dp278423 +g225232 +S'June Wayne' +p278424 +sg225240 +g27 +sg225234 +S'color lithograph (aluminum)' +p278425 +sg225230 +S'Arriving' +p278426 +sg225236 +S'1975/1979' +p278427 +sa(dp278428 +g225232 +S'June Wayne' +p278429 +sg225240 +g27 +sg225234 +S'color lithograph (aluminum)' +p278430 +sg225230 +S'Report Card' +p278431 +sg225236 +S'1975/1979' +p278432 +sa(dp278433 +g225232 +S'June Wayne' +p278434 +sg225240 +g27 +sg225234 +S'color lithograph (aluminum)' +p278435 +sg225230 +S'The Desire to Write' +p278436 +sg225236 +S'1975/1979' +p278437 +sa(dp278438 +g225232 +S'June Wayne' +p278439 +sg225240 +g27 +sg225234 +S'color lithograph (aluminum)' +p278440 +sg225230 +S'Palmer Method' +p278441 +sg225236 +S'1975/1979' +p278442 +sa(dp278443 +g225232 +S'June Wayne' +p278444 +sg225240 +g27 +sg225234 +S'color lithograph (aluminum)' +p278445 +sg225230 +S'Secretary to a Publisher' +p278446 +sg225236 +S'1975/1979' +p278447 +sa(dp278448 +g225232 +S'June Wayne' +p278449 +sg225240 +g27 +sg225234 +S'color lithograph (aluminum)' +p278450 +sg225230 +S'Write a Lonely Soldier' +p278451 +sg225236 +S'1975/1979' +p278452 +sa(dp278453 +g225232 +S'June Wayne' +p278454 +sg225240 +g27 +sg225234 +S'color lithograph (aluminum)' +p278455 +sg225230 +S"I'm Sorry I Made You Cry" +p278456 +sg225236 +S'1975/1979' +p278457 +sa(dp278458 +g225232 +S'June Wayne' +p278459 +sg225240 +g27 +sg225234 +S'color lithograph (aluminum)' +p278460 +sg225230 +S'Coming Out' +p278461 +sg225236 +S'1975/1979' +p278462 +sa(dp278463 +g225232 +S'June Wayne' +p278464 +sg225240 +g27 +sg225234 +S'color lithograph (aluminum)' +p278465 +sg225230 +S'The Paris Garter Company' +p278466 +sg225236 +S'1975/1979' +p278467 +sa(dp278468 +g225232 +S'June Wayne' +p278469 +sg225240 +g27 +sg225234 +S'color lithograph (aluminum)' +p278470 +sg225230 +S'Delegate Dorothy' +p278471 +sg225236 +S'1975/1979' +p278472 +sa(dp278473 +g225232 +S'June Wayne' +p278474 +sg225240 +g27 +sg225234 +S'color lithograph (aluminum)' +p278475 +sg225230 +S"Winter of '37" +p278476 +sg225236 +S'1975/1979' +p278477 +sa(dp278478 +g225232 +S'June Wayne' +p278479 +sg225240 +g27 +sg225234 +S'color lithograph (aluminum)' +p278480 +sg225230 +S'The Chicago Territory' +p278481 +sg225236 +S'1975/1979' +p278482 +sa(dp278483 +g225232 +S'June Wayne' +p278484 +sg225240 +g27 +sg225234 +S'color lithograph (aluminum)' +p278485 +sg225230 +S'Power Net' +p278486 +sg225236 +S'1975/1979' +p278487 +sa(dp278488 +g225232 +S'June Wayne' +p278489 +sg225240 +g27 +sg225234 +S'color lithograph (aluminum)' +p278490 +sg225230 +S'The White Knight' +p278491 +sg225236 +S'1975/1979' +p278492 +sa(dp278493 +g225232 +S'June Wayne' +p278494 +sg225240 +g27 +sg225234 +S'color lithograph (aluminum)' +p278495 +sg225230 +S'Whose White Knight Was He?' +p278496 +sg225236 +S'1975/1979' +p278497 +sa(dp278498 +g225232 +S'June Wayne' +p278499 +sg225240 +g27 +sg225234 +S'color lithograph (aluminum)' +p278500 +sg225230 +S'Dorothy and the I.R.S.' +p278501 +sg225236 +S'1975/1979' +p278502 +sa(dp278503 +g225232 +S'June Wayne' +p278504 +sg225240 +g27 +sg225234 +S'color lithograph (aluminum)' +p278505 +sg225230 +S'25 Years with the Firm' +p278506 +sg225236 +S'1975/1979' +p278507 +sa(dp278508 +g225232 +S'June Wayne' +p278509 +sg225240 +g27 +sg225234 +S'color lithograph (aluminum)' +p278510 +sg225230 +S'Last Time' +p278511 +sg225236 +S'1975/1979' +p278512 +sa(dp278513 +g225232 +S'June Wayne' +p278514 +sg225240 +g27 +sg225234 +S'color lithograph (aluminum)' +p278515 +sg225230 +S'Goodbye' +p278516 +sg225236 +S'1975/1979' +p278517 +sa(dp278518 +g225230 +S'The Round Tower' +p278519 +sg225232 +S'Giovanni Battista Piranesi' +p278520 +sg225234 +S'etching, engraving, sulphur tint or open bite, burnishing' +p278521 +sg225236 +S'published 1750/1758' +p278522 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc2b.jpg' +p278523 +sg225240 +g27 +sa(dp278524 +g225230 +S'Head of a Catalan Peasant' +p278525 +sg225232 +S'Joan Mir\xc3\xb3' +p278526 +sg225234 +S'oil and crayon on canvas' +p278527 +sg225236 +S'1924' +p278528 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dda.jpg' +p278529 +sg225240 +g27 +sa(dp278530 +g225230 +S'Alexander at the Tomb of Cyrus' +p278531 +sg225232 +S'Giovanni Benedetto Castiglione' +p278532 +sg225234 +S'oil heightened with white on laid paper' +p278533 +sg225236 +S'1645/1650' +p278534 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022d7.jpg' +p278535 +sg225240 +g27 +sa(dp278536 +g225232 +S'John Marin' +p278537 +sg225240 +g27 +sg225234 +S'etching with monotype on japan paper' +p278538 +sg225230 +S'Woolworth Building, No.1' +p278539 +sg225236 +S'1913' +p278540 +sa(dp278541 +g225230 +S'The Saltimbanques' +p278542 +sg225232 +S'Pablo Picasso' +p278543 +sg225234 +S'drypoint' +p278544 +sg225236 +S'1905' +p278545 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eec4.jpg' +p278546 +sg225240 +g27 +sa(dp278547 +g225230 +S'Altar for Corpus Christi Day' +p278548 +sg225232 +S'Stefano Della Bella' +p278549 +sg225234 +S'etching' +p278550 +sg225236 +S'probably 1648' +p278551 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca21.jpg' +p278552 +sg225240 +g27 +sa(dp278553 +g225232 +S'Edouard Goerg' +p278554 +sg225240 +g27 +sg225234 +S'etching' +p278555 +sg225230 +S"Fireworks in Paris (Feu d'artifice a Paris)" +p278556 +sg225236 +S'1937' +p278557 +sa(dp278558 +g225230 +S'Caliban' +p278559 +sg225232 +S'John Hamilton Mortimer' +p278560 +sg225234 +S'etching' +p278561 +sg225236 +S'1775' +p278562 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c1e.jpg' +p278563 +sg225240 +g27 +sa(dp278564 +g225230 +S'Cormar Attacking the Spirit of the Waters' +p278565 +sg225232 +S'Alexander Runciman' +p278566 +sg225234 +S'etching' +p278567 +sg225236 +S'unknown date\n' +p278568 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00076/a000768a.jpg' +p278569 +sg225240 +g27 +sa(dp278570 +g225232 +S'George Stubbs' +p278571 +sg225240 +g27 +sg225234 +S'mezzotint' +p278572 +sg225230 +S'Labourers' +p278573 +sg225236 +S'unknown date\n' +p278574 +sa(dp278575 +g225230 +S"L'Abbe Jean-Antoine de Maroulle" +p278576 +sg225232 +S'Charles-Antoine Coypel' +p278577 +sg225234 +S'etching' +p278578 +sg225236 +S'1726' +p278579 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cef.jpg' +p278580 +sg225240 +g27 +sa(dp278581 +g225230 +S'Capriccio: Ruins' +p278582 +sg225232 +S'Marco Ricci' +p278583 +sg225234 +S'etching' +p278584 +sg225236 +S'unknown date\n' +p278585 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc14.jpg' +p278586 +sg225240 +g27 +sa(dp278587 +g225230 +S'A Party of Life Guards' +p278588 +sg225232 +S'Th\xc3\xa9odore Gericault' +p278589 +sg225234 +S'lithograph' +p278590 +sg225236 +S'1821' +p278591 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009ab0.jpg' +p278592 +sg225240 +g27 +sa(dp278593 +g225230 +S'Representant du Peuple (Representative of thePeople)' +p278594 +sg225232 +S'Auguste Raffet' +p278595 +sg225234 +S'lithograph' +p278596 +sg225236 +S'1834' +p278597 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009dce.jpg' +p278598 +sg225240 +g27 +sa(dp278599 +g225230 +S'Two Buffaloes and a Herdsman' +p278600 +sg225232 +S'Pieter van Laer' +p278601 +sg225234 +S'etching and drypoint' +p278602 +sg225236 +S'unknown date\n' +p278603 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d272.jpg' +p278604 +sg225240 +g27 +sa(dp278605 +g225230 +S'Young Woman and a Boy Facing Right' +p278606 +sg225232 +S'Artist Information (' +p278607 +sg225234 +S'(artist after)' +p278608 +sg225236 +S'\n' +p278609 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc13.jpg' +p278610 +sg225240 +g27 +sa(dp278611 +g225230 +S'Gentleman Lounging in a Chair' +p278612 +sg225232 +S'Carle Van Loo' +p278613 +sg225234 +S'red chalk with touches of black chalk' +p278614 +sg225236 +S'unknown date\n' +p278615 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00028/a00028dc.jpg' +p278616 +sg225240 +g27 +sa(dp278617 +g225232 +S'Leonard Baskin' +p278618 +sg225240 +g27 +sg225234 +S'woodcut in black on japan paper' +p278619 +sg225230 +S'The Hydrogen Man' +p278620 +sg225236 +S'1954' +p278621 +sa(dp278622 +g225232 +S'Leonard Baskin' +p278623 +sg225240 +g27 +sg225234 +S'woodcut in black on japan paper' +p278624 +sg225230 +S'Man of Peace' +p278625 +sg225236 +S'1952' +p278626 +sa(dp278627 +g225230 +S'Nude Model Arranging Flowers' +p278628 +sg225232 +S'James McNeill Whistler' +p278629 +sg225234 +S'lithograph' +p278630 +sg225236 +S'unknown date\n' +p278631 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab1c.jpg' +p278632 +sg225240 +g27 +sa(dp278633 +g225230 +S'The Dream of Mordecai' +p278634 +sg225232 +S'Giovanni Guerra' +p278635 +sg225234 +S'pen and brown ink with brown wash on laid paper' +p278636 +sg225236 +S'unknown date\n' +p278637 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a000657a.jpg' +p278638 +sg225240 +g27 +sa(dp278639 +g225230 +S'Garden Party at a Country House' +p278640 +sg225232 +S'Marcellus Laroon II' +p278641 +sg225234 +S'pen and brown ink with gray wash over graphite on two joined sheets of laid paper' +p278642 +sg225236 +S'1771' +p278643 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00025/a00025e8.jpg' +p278644 +sg225240 +g27 +sa(dp278645 +g225230 +S'Saints Nicholas, Ulrich and Erasmus' +p278646 +sg225232 +S'Albrecht D\xc3\xbcrer' +p278647 +sg225234 +S'woodcut' +p278648 +sg225236 +S'c. 1508' +p278649 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac45.jpg' +p278650 +sg225240 +g27 +sa(dp278651 +g225230 +S'Cliff on the Seashore' +p278652 +sg225232 +S'Hendrick Goltzius' +p278653 +sg225234 +S', probably 1592/1595' +p278654 +sg225236 +S'\n' +p278655 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce40.jpg' +p278656 +sg225240 +g27 +sa(dp278657 +g225230 +S'Two Cows under a Tree' +p278658 +sg225232 +S'Adriaen van de Velde' +p278659 +sg225234 +S'etching' +p278660 +sg225236 +S'c. 1670' +p278661 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d461.jpg' +p278662 +sg225240 +g27 +sa(dp278663 +g225230 +S'Bibi Lalouette' +p278664 +sg225232 +S'James McNeill Whistler' +p278665 +sg225234 +S'etching and drypoint in dark brown on light blue-gray laid paper' +p278666 +sg225236 +S'1859' +p278667 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9a2.jpg' +p278668 +sg225240 +g27 +sa(dp278669 +g225230 +S'Saturn' +p278670 +sg225232 +S'Artist Information (' +p278671 +sg225234 +S'(artist after)' +p278672 +sg225236 +S'\n' +p278673 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfc6.jpg' +p278674 +sg225240 +g27 +sa(dp278675 +g225230 +S'Neptune' +p278676 +sg225232 +S'Artist Information (' +p278677 +sg225234 +S'(artist after)' +p278678 +sg225236 +S'\n' +p278679 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfc7.jpg' +p278680 +sg225240 +g27 +sa(dp278681 +g225230 +S'Pluto' +p278682 +sg225232 +S'Artist Information (' +p278683 +sg225234 +S'(artist after)' +p278684 +sg225236 +S'\n' +p278685 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfc9.jpg' +p278686 +sg225240 +g27 +sa(dp278687 +g225230 +S'Vulcan' +p278688 +sg225232 +S'Artist Information (' +p278689 +sg225234 +S'(artist after)' +p278690 +sg225236 +S'\n' +p278691 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfc8.jpg' +p278692 +sg225240 +g27 +sa(dp278693 +g225230 +S'Sol or Apollo' +p278694 +sg225232 +S'Artist Information (' +p278695 +sg225234 +S'(artist after)' +p278696 +sg225236 +S'\n' +p278697 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfca.jpg' +p278698 +sg225240 +g27 +sa(dp278699 +g225230 +S'Jupiter' +p278700 +sg225232 +S'Artist Information (' +p278701 +sg225234 +S'(artist after)' +p278702 +sg225236 +S'\n' +p278703 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfcb.jpg' +p278704 +sg225240 +g27 +sa(dp278705 +g225230 +S'Bacchus' +p278706 +sg225232 +S'Artist Information (' +p278707 +sg225234 +S'(artist after)' +p278708 +sg225236 +S'\n' +p278709 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfcc.jpg' +p278710 +sg225240 +g27 +sa(dp278711 +g225230 +S'Mercury' +p278712 +sg225232 +S'Artist Information (' +p278713 +sg225234 +S'(artist after)' +p278714 +sg225236 +S'\n' +p278715 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfcd.jpg' +p278716 +sg225240 +g27 +sa(dp278717 +g225232 +S'Salvator Rosa' +p278718 +sg225240 +g27 +sg225234 +S'1 vol: ill: 62 etchings from the "Figures" series, c.1656-57; and 6 etchings from "The Titon Group", c.1660-61' +p278719 +sg225230 +S'Album of Prints by Salvator Rosa' +p278720 +sg225236 +S'c. 1656/1657' +p278721 +sa(dp278722 +g225232 +S'Salvator Rosa' +p278723 +sg225240 +g27 +sg225234 +S'etching' +p278724 +sg225230 +S'Frontispiece' +p278725 +sg225236 +S'c. 1656/1657' +p278726 +sa(dp278727 +g225232 +S'Salvator Rosa' +p278728 +sg225240 +g27 +sg225234 +S'etching' +p278729 +sg225230 +S'Two Soldiers Facing a Third Who Holds a Shield' +p278730 +sg225236 +S'c. 1656/1657' +p278731 +sa(dp278732 +g225232 +S'Salvator Rosa' +p278733 +sg225240 +g27 +sg225234 +S'etching' +p278734 +sg225230 +S'Soldier Supported by a Long Cane, Facing Right' +p278735 +sg225236 +S'c. 1656/1657' +p278736 +sa(dp278737 +g225232 +S'Salvator Rosa' +p278738 +sg225240 +g27 +sg225234 +S'etching' +p278739 +sg225230 +S'Four Men in Conversation' +p278740 +sg225236 +S'c. 1656/1657' +p278741 +sa(dp278742 +g225232 +S'Salvator Rosa' +p278743 +sg225240 +g27 +sg225234 +S'etching' +p278744 +sg225230 +S'Young Man, Seated' +p278745 +sg225236 +S'c. 1656/1657' +p278746 +sa(dp278747 +g225232 +S'Salvator Rosa' +p278748 +sg225240 +g27 +sg225234 +S'etching' +p278749 +sg225230 +S'Soldier Holding a Cane and His Shield, Facing Left' +p278750 +sg225236 +S'c. 1656/1657' +p278751 +sa(dp278752 +g225232 +S'Salvator Rosa' +p278753 +sg225240 +g27 +sg225234 +S'etching' +p278754 +sg225230 +S'Young Man Viewing a Painting' +p278755 +sg225236 +S'c. 1656/1657' +p278756 +sa(dp278757 +g225232 +S'Salvator Rosa' +p278758 +sg225240 +g27 +sg225234 +S'etching' +p278759 +sg225230 +S'Peasant with Staff' +p278760 +sg225236 +S'c. 1656/1657' +p278761 +sa(dp278762 +g225232 +S'Salvator Rosa' +p278763 +sg225240 +g27 +sg225234 +S'etching' +p278764 +sg225230 +S'Soldier, Seated' +p278765 +sg225236 +S'c. 1656/1657' +p278766 +sa(dp278767 +g225232 +S'Salvator Rosa' +p278768 +sg225240 +g27 +sg225234 +S'etching' +p278769 +sg225230 +S'Soldier Holding a Shield' +p278770 +sg225236 +S'c. 1656/1657' +p278771 +sa(dp278772 +g225232 +S'Salvator Rosa' +p278773 +sg225240 +g27 +sg225234 +S'etching' +p278774 +sg225230 +S'Soldier, Standing, Holding a Pike with Both Hands' +p278775 +sg225236 +S'c. 1656/1657' +p278776 +sa(dp278777 +g225232 +S'Salvator Rosa' +p278778 +sg225240 +g27 +sg225234 +S'etching' +p278779 +sg225230 +S'Man Standing, with Arm Raised, Pointing Toward the Left' +p278780 +sg225236 +S'c. 1656/1657' +p278781 +sa(dp278782 +g225232 +S'Salvator Rosa' +p278783 +sg225240 +g27 +sg225234 +S'etching' +p278784 +sg225230 +S'Soldier, Seated, in a Helmut, Holding a Cane' +p278785 +sg225236 +S'c. 1656/1657' +p278786 +sa(dp278787 +g225232 +S'Salvator Rosa' +p278788 +sg225240 +g27 +sg225234 +S'etching' +p278789 +sg225230 +S'Man with Staff Seen from Behind' +p278790 +sg225236 +S'c. 1656/1657' +p278791 +sa(dp278792 +g225232 +S'Salvator Rosa' +p278793 +sg225240 +g27 +sg225234 +S'etching' +p278794 +sg225230 +S'Soldier with Cane, Facing Right' +p278795 +sg225236 +S'c. 1656/1657' +p278796 +sa(dp278797 +g225232 +S'Salvator Rosa' +p278798 +sg225240 +g27 +sg225234 +S'etching' +p278799 +sg225230 +S'Two Soldiers, One with His Hand Raised, Pointing Toward the Left' +p278800 +sg225236 +S'c. 1656/1657' +p278801 +sa(dp278802 +g225232 +S'Salvator Rosa' +p278803 +sg225240 +g27 +sg225234 +S'etching' +p278804 +sg225230 +S'Soldier Holding a Long Cane with Both Hands, Walking Toward the Left' +p278805 +sg225236 +S'c. 1656/1657' +p278806 +sa(dp278807 +g225232 +S'Salvator Rosa' +p278808 +sg225240 +g27 +sg225234 +S'etching' +p278809 +sg225230 +S'Soldier Carrying a Cane, Striding Toward the Left' +p278810 +sg225236 +S'c. 1656/1657' +p278811 +sa(dp278812 +g225232 +S'Salvator Rosa' +p278813 +sg225240 +g27 +sg225234 +S'etching' +p278814 +sg225230 +S'Man Striding Followed by a Retainer' +p278815 +sg225236 +S'c. 1656/1657' +p278816 +sa(dp278817 +g225232 +S'Salvator Rosa' +p278818 +sg225240 +g27 +sg225234 +S'etching' +p278819 +sg225230 +S'Three Soldiers, One Seated on a Square Block of Stone' +p278820 +sg225236 +S'c. 1656/1657' +p278821 +sa(dp278822 +g225232 +S'Salvator Rosa' +p278823 +sg225240 +g27 +sg225234 +S'etching' +p278824 +sg225230 +S'Four Soldiers, One with Flag' +p278825 +sg225236 +S'c. 1656/1657' +p278826 +sa(dp278827 +g225232 +S'Salvator Rosa' +p278828 +sg225240 +g27 +sg225234 +S'etching' +p278829 +sg225230 +S'Seated Peasant with Two Other Men' +p278830 +sg225236 +S'c. 1656/1657' +p278831 +sa(dp278832 +g225232 +S'Salvator Rosa' +p278833 +sg225240 +g27 +sg225234 +S'etching' +p278834 +sg225230 +S'Soldier Holding a Shield with the Head of Medusa' +p278835 +sg225236 +S'c. 1656/1657' +p278836 +sa(dp278837 +g225232 +S'Salvator Rosa' +p278838 +sg225240 +g27 +sg225234 +S'etching' +p278839 +sg225230 +S'Two Soldiers, One Seated with Sword and Shield' +p278840 +sg225236 +S'c. 1656/1657' +p278841 +sa(dp278842 +g225232 +S'Salvator Rosa' +p278843 +sg225240 +g27 +sg225234 +S'etching' +p278844 +sg225230 +S'Man, Pointing Upward, and Soldier in Repose' +p278845 +sg225236 +S'c. 1656/1657' +p278846 +sa(dp278847 +g225232 +S'Salvator Rosa' +p278848 +sg225240 +g27 +sg225234 +S'etching' +p278849 +sg225230 +S'Soldier, Standing, Holding a Long Cane Before a Rocky Wall' +p278850 +sg225236 +S'c. 1656/1657' +p278851 +sa(dp278852 +g225232 +S'Salvator Rosa' +p278853 +sg225240 +g27 +sg225234 +S'etching' +p278854 +sg225230 +S'Nude in Contemplation, Seated on a Rocky Ledge' +p278855 +sg225236 +S'c. 1656/1657' +p278856 +sa(dp278857 +g225232 +S'Salvator Rosa' +p278858 +sg225240 +g27 +sg225234 +S'etching' +p278859 +sg225230 +S'Man with Cane, Seated, and Soldier in Helmet' +p278860 +sg225236 +S'c. 1656/1657' +p278861 +sa(dp278862 +g225232 +S'Salvator Rosa' +p278863 +sg225240 +g27 +sg225234 +S'etching' +p278864 +sg225230 +S'Soldier Holding a Cane in His Right Hand, Pointing Toward the Left' +p278865 +sg225236 +S'c. 1656/1657' +p278866 +sa(dp278867 +g225232 +S'Salvator Rosa' +p278868 +sg225240 +g27 +sg225234 +S'etching' +p278869 +sg225230 +S'Nude, Seated, Holding onto a Tree' +p278870 +sg225236 +S'c. 1656/1657' +p278871 +sa(dp278872 +g225232 +S'Salvator Rosa' +p278873 +sg225240 +g27 +sg225234 +S'etching' +p278874 +sg225230 +S'Two Soldiers, One in Helmet and Bearded' +p278875 +sg225236 +S'c. 1656/1657' +p278876 +sa(dp278877 +g225232 +S'Salvator Rosa' +p278878 +sg225240 +g27 +sg225234 +S'etching' +p278879 +sg225230 +S'Two Soldiers, One Seen from Behind, Holding a Club' +p278880 +sg225236 +S'c. 1656/1657' +p278881 +sa(dp278882 +g225232 +S'Salvator Rosa' +p278883 +sg225240 +g27 +sg225234 +S'etching' +p278884 +sg225230 +S'Piping Satyr' +p278885 +sg225236 +S'c. 1660/1661' +p278886 +sa(dp278887 +g225232 +S'Salvator Rosa' +p278888 +sg225240 +g27 +sg225234 +S'etching' +p278889 +sg225230 +S'Three Soldiers in Conversation' +p278890 +sg225236 +S'c. 1656/1657' +p278891 +sa(dp278892 +g225232 +S'Salvator Rosa' +p278893 +sg225240 +g27 +sg225234 +S'etching' +p278894 +sg225230 +S'Two Soldiers, One Pointing Toward the Left, the One Below Holding a Shield' +p278895 +sg225236 +S'c. 1656/1657' +p278896 +sa(dp278897 +g225232 +S'Salvator Rosa' +p278898 +sg225240 +g27 +sg225234 +S'etching' +p278899 +sg225230 +S'Five River Gods' +p278900 +sg225236 +S'c. 1660/1661' +p278901 +sa(dp278902 +g225232 +S'Salvator Rosa' +p278903 +sg225240 +g27 +sg225234 +S'etching' +p278904 +sg225230 +S'Young Mother Carrying an Infant' +p278905 +sg225236 +S'c. 1656/1657' +p278906 +sa(dp278907 +g225232 +S'Salvator Rosa' +p278908 +sg225240 +g27 +sg225234 +S'etching' +p278909 +sg225230 +S'Two Soldiers, One Seen from Behind and Holding a Cane in His Right Hand' +p278910 +sg225236 +S'c. 1656/1657' +p278911 +sa(dp278912 +g225232 +S'Salvator Rosa' +p278913 +sg225240 +g27 +sg225234 +S'etching' +p278914 +sg225230 +S'Three Battling Tritons with a Nereid' +p278915 +sg225236 +S'c. 1660/1661' +p278916 +sa(dp278917 +g225232 +S'Salvator Rosa' +p278918 +sg225240 +g27 +sg225234 +S'etching' +p278919 +sg225230 +S'Young Woman Walking Toward the Left' +p278920 +sg225236 +S'c. 1656/1657' +p278921 +sa(dp278922 +g225232 +S'Salvator Rosa' +p278923 +sg225240 +g27 +sg225234 +S'etching' +p278924 +sg225230 +S'Man with Fishing Net and Two Other Figures' +p278925 +sg225236 +S'c. 1656/1657' +p278926 +sa(dp278927 +g225232 +S'Salvator Rosa' +p278928 +sg225240 +g27 +sg225234 +S'etching' +p278929 +sg225230 +S'Three Battling Tritons' +p278930 +sg225236 +S'c. 1660/1661' +p278931 +sa(dp278932 +g225232 +S'Salvator Rosa' +p278933 +sg225240 +g27 +sg225234 +S'etching' +p278934 +sg225230 +S'Soldier in Helmet and Armor Regarding a Stream' +p278935 +sg225236 +S'c. 1656/1657' +p278936 +sa(dp278937 +g225232 +S'Salvator Rosa' +p278938 +sg225240 +g27 +sg225234 +S'etching' +p278939 +sg225230 +S'Soldier in Profile with Sword and Cane, Facing Right' +p278940 +sg225236 +S'c. 1656/1657' +p278941 +sa(dp278942 +g225232 +S'Salvator Rosa' +p278943 +sg225240 +g27 +sg225234 +S'etching' +p278944 +sg225230 +S'River Gods' +p278945 +sg225236 +S'c. 1660/1661' +p278946 +sa(dp278947 +g225232 +S'Salvator Rosa' +p278948 +sg225240 +g27 +sg225234 +S'etching' +p278949 +sg225230 +S'Seated Soldier Leaning on His Shield' +p278950 +sg225236 +S'c. 1656/1657' +p278951 +sa(dp278952 +g225232 +S'Salvator Rosa' +p278953 +sg225240 +g27 +sg225234 +S'etching' +p278954 +sg225230 +S'Soldier, Standing, Looking at the Ground' +p278955 +sg225236 +S'c. 1656/1657' +p278956 +sa(dp278957 +g225232 +S'Salvator Rosa' +p278958 +sg225240 +g27 +sg225234 +S'etching' +p278959 +sg225230 +S'Battling Tritons' +p278960 +sg225236 +S'c. 1660/1661' +p278961 +sa(dp278962 +g225232 +S'Salvator Rosa' +p278963 +sg225240 +g27 +sg225234 +S'etching' +p278964 +sg225230 +S'Young Woman Walking Toward the Right' +p278965 +sg225236 +S'c. 1656/1657' +p278966 +sa(dp278967 +g225232 +S'Salvator Rosa' +p278968 +sg225240 +g27 +sg225234 +S'etching' +p278969 +sg225230 +S'Soldier, Standing, Holding a Cane, Facing Left' +p278970 +sg225236 +S'c. 1656/1657' +p278971 +sa(dp278972 +g225232 +S'Salvator Rosa' +p278973 +sg225240 +g27 +sg225234 +S'etching' +p278974 +sg225230 +S'Semi-Nude, Walking Toward the Right' +p278975 +sg225236 +S'c. 1656/1657' +p278976 +sa(dp278977 +g225232 +S'Salvator Rosa' +p278978 +sg225240 +g27 +sg225234 +S'etching' +p278979 +sg225230 +S'Soldier, En Face, Shouldering a Pike and Holding a Shield' +p278980 +sg225236 +S'c. 1656/1657' +p278981 +sa(dp278982 +g225232 +S'Salvator Rosa' +p278983 +sg225240 +g27 +sg225234 +S'etching' +p278984 +sg225230 +S'Soldier Holding a Long Sword with Both Hands' +p278985 +sg225236 +S'c. 1656/1657' +p278986 +sa(dp278987 +g225232 +S'Salvator Rosa' +p278988 +sg225240 +g27 +sg225234 +S'etching' +p278989 +sg225230 +S'Five Soldiers' +p278990 +sg225236 +S'c. 1656/1657' +p278991 +sa(dp278992 +g225232 +S'Salvator Rosa' +p278993 +sg225240 +g27 +sg225234 +S'etching' +p278994 +sg225230 +S'Man Striding with Right Arm Outstretched' +p278995 +sg225236 +S'c. 1656/1657' +p278996 +sa(dp278997 +g225232 +S'Salvator Rosa' +p278998 +sg225240 +g27 +sg225234 +S'etching' +p278999 +sg225230 +S'Two Soldiers, One with His Hand Raised, Pointing Toward the Left' +p279000 +sg225236 +S'c. 1656/1657' +p279001 +sa(dp279002 +g225232 +S'Artist Information (' +p279003 +sg225240 +g27 +sg225234 +S'Italian, 1615 - 1673' +p279004 +sg225230 +S'Three Soldiers, One Seated on a Square Stone' +p279005 +sg225236 +S'(artist after)' +p279006 +sa(dp279007 +g225232 +S'Salvator Rosa' +p279008 +sg225240 +g27 +sg225234 +S'etching' +p279009 +sg225230 +S'Three Soldiers, One Seated and Supporting Himself with a Cane and a Shield' +p279010 +sg225236 +S'c. 1656/1657' +p279011 +sa(dp279012 +g225232 +S'Salvator Rosa' +p279013 +sg225240 +g27 +sg225234 +S'etching' +p279014 +sg225230 +S'Oriental in Turban, Seen from Behind, with Two Women' +p279015 +sg225236 +S'c. 1656/1657' +p279016 +sa(dp279017 +g225232 +S'Salvator Rosa' +p279018 +sg225240 +g27 +sg225234 +S'etching' +p279019 +sg225230 +S'Two Soldiers, Seated, One on a Stone, the Other on the Ground' +p279020 +sg225236 +S'c. 1656/1657' +p279021 +sa(dp279022 +g225232 +S'Salvator Rosa' +p279023 +sg225240 +g27 +sg225234 +S'etching' +p279024 +sg225230 +S'Four Soldiers, One Seated on a Stone on the Left' +p279025 +sg225236 +S'c. 1656/1657' +p279026 +sa(dp279027 +g225232 +S'Salvator Rosa' +p279028 +sg225240 +g27 +sg225234 +S'etching' +p279029 +sg225230 +S'Man with Bow, Pointing to the Right' +p279030 +sg225236 +S'c. 1656/1657' +p279031 +sa(dp279032 +g225232 +S'Salvator Rosa' +p279033 +sg225240 +g27 +sg225234 +S'etching' +p279034 +sg225230 +S'Two Soldiers Seated on a Rectangular Stone' +p279035 +sg225236 +S'c. 1656/1657' +p279036 +sa(dp279037 +g225232 +S'Salvator Rosa' +p279038 +sg225240 +g27 +sg225234 +S'etching' +p279039 +sg225230 +S'Soldier, Standing, Seen from Behind, in a Helmet, Holding a Cane' +p279040 +sg225236 +S'c. 1656/1657' +p279041 +sa(dp279042 +g225232 +S'Salvator Rosa' +p279043 +sg225240 +g27 +sg225234 +S'etching' +p279044 +sg225230 +S'Three Men in Conversation' +p279045 +sg225236 +S'c. 1656/1657' +p279046 +sa(dp279047 +g225232 +S'Salvator Rosa' +p279048 +sg225240 +g27 +sg225234 +S'etching' +p279049 +sg225230 +S'Soldier Holding His Lance with Both Hands' +p279050 +sg225236 +S'c. 1656/1657' +p279051 +sa(dp279052 +g225232 +S'Salvator Rosa' +p279053 +sg225240 +g27 +sg225234 +S'etching' +p279054 +sg225230 +S'Seated Soldier with Shield and Two Other Figures' +p279055 +sg225236 +S'c. 1656/1657' +p279056 +sa(dp279057 +g225232 +S'Salvator Rosa' +p279058 +sg225240 +g27 +sg225234 +S'etching' +p279059 +sg225230 +S'Man, Standing, His Arm Pointing Horizontally' +p279060 +sg225236 +S'c. 1656/1657' +p279061 +sa(dp279062 +g225230 +S'Studies for the Fa\xc3\xa7ade of Santa Cristina [recto]' +p279063 +sg225232 +S'Filippo Juvarra' +p279064 +sg225234 +S'pen and brown ink over black chalk on laid paper' +p279065 +sg225236 +S'c. 1715' +p279066 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00034/a0003425.jpg' +p279067 +sg225240 +g27 +sa(dp279068 +g225230 +S'Floor Plan [verso]' +p279069 +sg225232 +S'Filippo Juvarra' +p279070 +sg225234 +S'pen and brown ink with gray wash over black chalk on laid paper' +p279071 +sg225236 +S'unknown date\n' +p279072 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007429.jpg' +p279073 +sg225240 +g27 +sa(dp279074 +g225230 +S'The Apotheosis of San Vitale' +p279075 +sg225232 +S'Ubaldo Gandolfi' +p279076 +sg225234 +S'pen and brown ink and black chalk with brown wash on laid paper' +p279077 +sg225236 +S'1781' +p279078 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f77.jpg' +p279079 +sg225240 +g27 +sa(dp279080 +g225230 +S'Landscape with Roger Liberating Angelica' +p279081 +sg225232 +S'Artist Information (' +p279082 +sg225234 +S'(artist after)' +p279083 +sg225236 +S'\n' +p279084 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf4e.jpg' +p279085 +sg225240 +g27 +sa(dp279086 +g225230 +S'Cart on the Beach at Etretat' +p279087 +sg225232 +S'Johan Barthold Jongkind' +p279088 +sg225234 +S'watercolor over black chalk on laid paper' +p279089 +sg225236 +S'1862' +p279090 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00025/a000255e.jpg' +p279091 +sg225240 +g27 +sa(dp279092 +g225230 +S'The Waterfall (Wasserfall im Werdenfelsischen)' +p279093 +sg225232 +S'Max Joseph Wagenbauer' +p279094 +sg225234 +S'lithograph' +p279095 +sg225236 +S'1805' +p279096 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3e3.jpg' +p279097 +sg225240 +g27 +sa(dp279098 +g225230 +S'River God with an Eagle' +p279099 +sg225232 +S'Jan Lievens' +p279100 +sg225234 +S'pen and brown ink over traces of black chalk on laid paper' +p279101 +sg225236 +S'unknown date\n' +p279102 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e0d.jpg' +p279103 +sg225240 +g27 +sa(dp279104 +g225230 +S'Halberdier and Two Pikemen' +p279105 +sg225232 +S'Hans Jakob Plepp' +p279106 +sg225234 +S'pen and black ink over black chalk on laid paper' +p279107 +sg225236 +S'unknown date\n' +p279108 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a19.jpg' +p279109 +sg225240 +g27 +sa(dp279110 +g225230 +S'Studies for a Servant in "The Last Supper"' +p279111 +sg225232 +S'Federico Barocci' +p279112 +sg225234 +S'black, red, and yellow chalk heightened with white chalk on blue tinted paper' +p279113 +sg225236 +S'c. 1590/1599' +p279114 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a0007530.jpg' +p279115 +sg225240 +g27 +sa(dp279116 +g225230 +S'River Landscape with a Distant Bridge' +p279117 +sg225232 +S'Jan van Goyen' +p279118 +sg225234 +S'black chalk on laid paper' +p279119 +sg225236 +S'c.1627-1629' +p279120 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a0007019.jpg' +p279121 +sg225240 +g27 +sa(dp279122 +g225230 +S'Karl Ramler' +p279123 +sg225232 +S'Artist Information (' +p279124 +sg225234 +S'(artist after)' +p279125 +sg225236 +S'\n' +p279126 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b377.jpg' +p279127 +sg225240 +g27 +sa(dp279128 +g225230 +S'Christian Weisse' +p279129 +sg225232 +S'Artist Information (' +p279130 +sg225234 +S'(artist after)' +p279131 +sg225236 +S'\n' +p279132 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b378.jpg' +p279133 +sg225240 +g27 +sa(dp279134 +g225230 +S'Daniel Chodowiecki' +p279135 +sg225232 +S'J.S.L. Halle' +p279136 +sg225234 +S'etching' +p279137 +sg225236 +S'1801' +p279138 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b303.jpg' +p279139 +sg225240 +g27 +sa(dp279140 +g225230 +S'Daniel Chodowiecki' +p279141 +sg225232 +S'Artist Information (' +p279142 +sg225234 +S'(artist after)' +p279143 +sg225236 +S'\n' +p279144 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b398.jpg' +p279145 +sg225240 +g27 +sa(dp279146 +g225230 +S'Guitar and Bottle' +p279147 +sg225232 +S'Pablo Picasso' +p279148 +sg225234 +S'graphite on laid paper' +p279149 +sg225236 +S'1913' +p279150 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00068/a0006825.jpg' +p279151 +sg225240 +g27 +sa(dp279152 +g225232 +S'Charles William Smith' +p279153 +sg225240 +g27 +sg225234 +S'4-color linoleum cut, possibly with use of cardboard matrix for color additions' +p279154 +sg225230 +S'Tall Buildings' +p279155 +sg225236 +S'1943' +p279156 +sa(dp279157 +g225232 +S'Artist Information (' +p279158 +sg225240 +g27 +sg225234 +S'French, 1882 - 1963' +p279159 +sg225230 +S'Bird and Its Nest' +p279160 +sg225236 +S'(artist after)' +p279161 +sa(dp279162 +g225232 +S'Jean Tinguely' +p279163 +sg225240 +g27 +sg225234 +S'etching' +p279164 +sg225230 +S'Metaharmonie III' +p279165 +sg225236 +S'1981' +p279166 +sa(dp279167 +g225232 +S'Anthony Gross' +p279168 +sg225240 +g27 +sg225234 +S'etching' +p279169 +sg225230 +S'Poissons (Fish)' +p279170 +sg225236 +S'1951' +p279171 +sa(dp279172 +g225230 +S'Two Monks Bowing' +p279173 +sg225232 +S'Stanley Roseman' +p279174 +sg225234 +S'brown and black chalk and stumping on gray laid paper' +p279175 +sg225236 +S'1979' +p279176 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00054/a0005463.jpg' +p279177 +sg225240 +g27 +sa(dp279178 +g225230 +S'Peonies' +p279179 +sg225232 +S'Pablo Picasso' +p279180 +sg225234 +S'oil on hardboard mounted on plywood' +p279181 +sg225236 +S'1901' +p279182 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000def.jpg' +p279183 +sg225240 +g27 +sa(dp279184 +g225230 +S'Pierrot and Harlequin (recto)' +p279185 +sg225232 +S'Pablo Picasso' +p279186 +sg225234 +S'pen and black ink and gouache on folded cream paper' +p279187 +sg225236 +S'1920' +p279188 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00021/a0002183.jpg' +p279189 +sg225240 +g27 +sa(dp279190 +g225232 +S'Giovanni Battista Piranesi' +p279191 +sg225240 +g27 +sg225234 +S'etching' +p279192 +sg225230 +S'Interior of the Temple of Neptune' +p279193 +sg225236 +S'1777/1778' +p279194 +sa(dp279195 +g225230 +S'Dancer with a Tambourine' +p279196 +sg225232 +S'Jacques de Bellange' +p279197 +sg225234 +S', c. 1615' +p279198 +sg225236 +S'\n' +p279199 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005fa2.jpg' +p279200 +sg225240 +g27 +sa(dp279201 +g225230 +S'Standing Cavalier Wearing a Sword' +p279202 +sg225232 +S'Willem Buytewech' +p279203 +sg225234 +S'pen and brown ink with brown wash over traces of black chalk and graphite' +p279204 +sg225236 +S'c. 1615' +p279205 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f7e.jpg' +p279206 +sg225240 +g27 +sa(dp279207 +g225230 +S'Hercules Leaning on His Club [recto]' +p279208 +sg225232 +S'Parri Spinelli' +p279209 +sg225234 +S'pen and brown ink on laid paper' +p279210 +sg225236 +S'c. 1440' +p279211 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00028/a0002857.jpg' +p279212 +sg225240 +g27 +sa(dp279213 +g225230 +S'Gothic Vault [verso]' +p279214 +sg225232 +S'Parri Spinelli' +p279215 +sg225234 +S'pen and brown ink on laid paper' +p279216 +sg225236 +S'c. 1440' +p279217 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00097/a0009704.jpg' +p279218 +sg225240 +g27 +sa(dp279219 +g225230 +S'Eliphalet Terry' +p279220 +sg225232 +S'Samuel Finley Breese Morse' +p279221 +sg225234 +S'oil on canvas' +p279222 +sg225236 +S'c. 1824' +p279223 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a000016d.jpg' +p279224 +sg225240 +g27 +sa(dp279225 +g225230 +S'Lydia Coit Terry (Mrs. Eliphalet Terry)' +p279226 +sg225232 +S'Samuel Finley Breese Morse' +p279227 +sg225234 +S'oil on canvas' +p279228 +sg225236 +S'c. 1824' +p279229 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a000016e.jpg' +p279230 +sg225240 +g27 +sa(dp279231 +g225230 +S'March' +p279232 +sg225232 +S'Cornelis Dusart' +p279233 +sg225234 +S'mezzotint' +p279234 +sg225236 +S'probably 1680/1690' +p279235 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0dc.jpg' +p279236 +sg225240 +g27 +sa(dp279237 +g225230 +S'Title Page to Jean Desmarets\' "L\'Ariane"' +p279238 +sg225232 +S'Artist Information (' +p279239 +sg225234 +S'(artist after)' +p279240 +sg225236 +S'\n' +p279241 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a5c.jpg' +p279242 +sg225240 +g27 +sa(dp279243 +g225230 +S'Illustration to Jean Desmarets\' "L\'Ariane"' +p279244 +sg225232 +S'Artist Information (' +p279245 +sg225234 +S'(artist after)' +p279246 +sg225236 +S'\n' +p279247 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a5b.jpg' +p279248 +sg225240 +g27 +sa(dp279249 +g225230 +S'Illustration to Jean Desmarets\' "L\'Ariane"' +p279250 +sg225232 +S'Artist Information (' +p279251 +sg225234 +S'(artist after)' +p279252 +sg225236 +S'\n' +p279253 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a5a.jpg' +p279254 +sg225240 +g27 +sa(dp279255 +g225230 +S'Illustration to Jean Desmarets\' "L\'Ariane"' +p279256 +sg225232 +S'Artist Information (' +p279257 +sg225234 +S'(artist after)' +p279258 +sg225236 +S'\n' +p279259 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a59.jpg' +p279260 +sg225240 +g27 +sa(dp279261 +g225230 +S'Illustration to Jean Desmarets\' "L\'Ariane"' +p279262 +sg225232 +S'Artist Information (' +p279263 +sg225234 +S'(artist after)' +p279264 +sg225236 +S'\n' +p279265 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a58.jpg' +p279266 +sg225240 +g27 +sa(dp279267 +g225230 +S'Illustration to Jean Desmarets\' "L\'Ariane"' +p279268 +sg225232 +S'Artist Information (' +p279269 +sg225234 +S'(artist after)' +p279270 +sg225236 +S'\n' +p279271 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a57.jpg' +p279272 +sg225240 +g27 +sa(dp279273 +g225230 +S'Illustration to Jean Desmarets\' "L\'Ariane"' +p279274 +sg225232 +S'Artist Information (' +p279275 +sg225234 +S'(artist after)' +p279276 +sg225236 +S'\n' +p279277 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a56.jpg' +p279278 +sg225240 +g27 +sa(dp279279 +g225230 +S'Illustration to Jean Desmarets\' "L\'Ariane"' +p279280 +sg225232 +S'Artist Information (' +p279281 +sg225234 +S'(artist after)' +p279282 +sg225236 +S'\n' +p279283 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a55.jpg' +p279284 +sg225240 +g27 +sa(dp279285 +g225230 +S'Illustration to Jean Desmarets\' "L\'Ariane"' +p279286 +sg225232 +S'Artist Information (' +p279287 +sg225234 +S'(artist after)' +p279288 +sg225236 +S'\n' +p279289 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a52.jpg' +p279290 +sg225240 +g27 +sa(dp279291 +g225230 +S'Illustration to Jean Desmarets\' "L\'Ariane"' +p279292 +sg225232 +S'Artist Information (' +p279293 +sg225234 +S'(artist after)' +p279294 +sg225236 +S'\n' +p279295 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a54.jpg' +p279296 +sg225240 +g27 +sa(dp279297 +g225230 +S'Illustration to Jean Desmarets\' "L\'Ariane"' +p279298 +sg225232 +S'Artist Information (' +p279299 +sg225234 +S'(artist after)' +p279300 +sg225236 +S'\n' +p279301 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a53.jpg' +p279302 +sg225240 +g27 +sa(dp279303 +g225230 +S'Illustration to Jean Desmarets\' "L\'Ariane"' +p279304 +sg225232 +S'Artist Information (' +p279305 +sg225234 +S'(artist after)' +p279306 +sg225236 +S'\n' +p279307 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a50.jpg' +p279308 +sg225240 +g27 +sa(dp279309 +g225230 +S'Illustration to Jean Desmarets\' "L\'Ariane"' +p279310 +sg225232 +S'Artist Information (' +p279311 +sg225234 +S'(artist after)' +p279312 +sg225236 +S'\n' +p279313 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a51.jpg' +p279314 +sg225240 +g27 +sa(dp279315 +g225230 +S'Illustration to Jean Desmarets\' "L\'Ariane"' +p279316 +sg225232 +S'Artist Information (' +p279317 +sg225234 +S'(artist after)' +p279318 +sg225236 +S'\n' +p279319 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a69.jpg' +p279320 +sg225240 +g27 +sa(dp279321 +g225230 +S'Illustration to Jean Desmarets\' "L\'Ariane"' +p279322 +sg225232 +S'Artist Information (' +p279323 +sg225234 +S'(artist after)' +p279324 +sg225236 +S'\n' +p279325 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a65.jpg' +p279326 +sg225240 +g27 +sa(dp279327 +g225230 +S'Illustration to Jean Desmarets\' "L\'Ariane"' +p279328 +sg225232 +S'Artist Information (' +p279329 +sg225234 +S'(artist after)' +p279330 +sg225236 +S'\n' +p279331 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a66.jpg' +p279332 +sg225240 +g27 +sa(dp279333 +g225230 +S'Illustration to Jean Desmarets\' "L\'Ariane"' +p279334 +sg225232 +S'Artist Information (' +p279335 +sg225234 +S'(artist after)' +p279336 +sg225236 +S'\n' +p279337 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a68.jpg' +p279338 +sg225240 +g27 +sa(dp279339 +g225230 +S'Illustration to Jean Desmarets\' "L\'Ariane"' +p279340 +sg225232 +S'Artist Information (' +p279341 +sg225234 +S'(artist after)' +p279342 +sg225236 +S'\n' +p279343 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a67.jpg' +p279344 +sg225240 +g27 +sa(dp279345 +g225230 +S'Baigneuse aux oies (Bathers with Geese)' +p279346 +sg225232 +S'Camille Pissarro' +p279347 +sg225234 +S'etching and aquatint on light green dyed paper' +p279348 +sg225236 +S'1895' +p279349 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a00099a6.jpg' +p279350 +sg225240 +g27 +sa(dp279351 +g225230 +S'Head of a Woman Looking Back Over Her Shoulder' +p279352 +sg225232 +S'Jean-Baptiste Greuze' +p279353 +sg225234 +S'red chalk on laid paper' +p279354 +sg225236 +S'unknown date\n' +p279355 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00025/a000254a.jpg' +p279356 +sg225240 +g27 +sa(dp279357 +g225230 +S'Studies of Horses [recto]' +p279358 +sg225232 +S'Artist Information (' +p279359 +sg225234 +S'(artist after)' +p279360 +sg225236 +S'\n' +p279361 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005fa0.jpg' +p279362 +sg225240 +g27 +sa(dp279363 +g225230 +S'Studies of Horses [verso]' +p279364 +sg225232 +S'Artist Information (' +p279365 +sg225234 +S'(artist after)' +p279366 +sg225236 +S'\n' +p279367 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005fa1.jpg' +p279368 +sg225240 +g27 +sa(dp279369 +g225230 +S'Moses with the Tablets of Law' +p279370 +sg225232 +S'Artist Information (' +p279371 +sg225234 +S'(artist after)' +p279372 +sg225236 +S'\n' +p279373 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2d5.jpg' +p279374 +sg225240 +g27 +sa(dp279375 +g225230 +S'Wandering Rocks' +p279376 +sg225232 +S'Tony Smith' +p279377 +sg225234 +S'painted steel' +p279378 +sg225236 +S'1967' +p279379 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a00016b0.jpg' +p279380 +sg225240 +g27 +sa(dp279381 +g225230 +S'The Ship "Favorite" Maneuvering Off Greenock' +p279382 +sg225232 +S'Robert Salmon' +p279383 +sg225234 +S'oil on canvas' +p279384 +sg225236 +S'1819' +p279385 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001ff.jpg' +p279386 +sg225240 +g27 +sa(dp279387 +g225230 +S'Chloris Caressed by Zephyr' +p279388 +sg225232 +S'Jean-Jacques Pradier' +p279389 +sg225234 +S'plaster' +p279390 +sg225236 +S'model 1847, cast 1847/1904' +p279391 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00054/a0005426.jpg' +p279392 +sg225240 +g27 +sa(dp279393 +g225230 +S'The Genius of Castiglione' +p279394 +sg225232 +S'Giovanni Benedetto Castiglione' +p279395 +sg225234 +S'etching' +p279396 +sg225236 +S'before 1648' +p279397 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d56.jpg' +p279398 +sg225240 +g27 +sa(dp279399 +g225230 +S'Title Page for "Il Solimano"' +p279400 +sg225232 +S'Jacques Callot' +p279401 +sg225234 +S'etching and engraving' +p279402 +sg225236 +S'1620' +p279403 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ace.jpg' +p279404 +sg225240 +g27 +sa(dp279405 +g225230 +S'Solimano, Act I' +p279406 +sg225232 +S'Jacques Callot' +p279407 +sg225234 +S'etching and engraving' +p279408 +sg225236 +S'1620' +p279409 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008aca.jpg' +p279410 +sg225240 +g27 +sa(dp279411 +g225230 +S'Solimano, Act II' +p279412 +sg225232 +S'Jacques Callot' +p279413 +sg225234 +S'etching and engraving' +p279414 +sg225236 +S'1620' +p279415 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ac6.jpg' +p279416 +sg225240 +g27 +sa(dp279417 +g225230 +S'Solimano, Act III' +p279418 +sg225232 +S'Jacques Callot' +p279419 +sg225234 +S'etching and engraving' +p279420 +sg225236 +S'1620' +p279421 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ac7.jpg' +p279422 +sg225240 +g27 +sa(dp279423 +g225230 +S'Solimano, Act IV' +p279424 +sg225232 +S'Jacques Callot' +p279425 +sg225234 +S'etching and engraving' +p279426 +sg225236 +S'1620' +p279427 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ad4.jpg' +p279428 +sg225240 +g27 +sa(dp279429 +g225230 +S'Solimano, Act V' +p279430 +sg225232 +S'Jacques Callot' +p279431 +sg225234 +S'etching and engraving' +p279432 +sg225236 +S'1620' +p279433 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ad6.jpg' +p279434 +sg225240 +g27 +sa(dp279435 +g225230 +S'Seated Man Flanked by Two Reclining Figures; Huddle of Figures in Lower Left Corner' +p279436 +sg225232 +S'John Flaxman' +p279437 +sg225234 +S'pen and black ink over graphite on laid paper' +p279438 +sg225236 +S'c. 1790' +p279439 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d2f.jpg' +p279440 +sg225240 +g27 +sa(dp279441 +g225230 +S'Three Sketches of a Standing Woman' +p279442 +sg225232 +S'John Flaxman' +p279443 +sg225234 +S'pen and black ink over graphite on laid paper' +p279444 +sg225236 +S'c. 1790' +p279445 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d01.jpg' +p279446 +sg225240 +g27 +sa(dp279447 +g225232 +S'Artist Information (' +p279448 +sg225240 +g27 +sg225234 +S'Italian, 1700 - 1773' +p279449 +sg225230 +S'Dichiarazione dei disegni del reale Palazzo di Caserta' +p279450 +sg225236 +S'(author)' +p279451 +sa(dp279452 +g225232 +S'Artist Information (' +p279453 +sg225240 +g27 +sg225234 +S'(author)' +p279454 +sg225230 +S'Compositions from the Works Days and Theogony of Hesiod' +p279455 +sg225236 +S'\n' +p279456 +sa(dp279457 +g225232 +S'Artist Information (' +p279458 +sg225240 +g27 +sg225234 +S'(artist)' +p279459 +sg225230 +S'The Iliad of Homer' +p279460 +sg225236 +S'\n' +p279461 +sa(dp279462 +g225232 +S'Artist Information (' +p279463 +sg225240 +g27 +sg225234 +S'(artist)' +p279464 +sg225230 +S'The Odyssey of Homer Engraved from the Compositions of John Flaxman' +p279465 +sg225236 +S'\n' +p279466 +sa(dp279467 +g225232 +S'Artist Information (' +p279468 +sg225240 +g27 +sg225234 +S'(author)' +p279469 +sg225230 +S'The Shorter Poems of John Milton' +p279470 +sg225236 +S'\n' +p279471 +sa(dp279472 +g225230 +S'Le gueux des campagnes' +p279473 +sg225232 +S'Auguste Lep\xc3\xa8re' +p279474 +sg225234 +S'woodcut on Japan paper' +p279475 +sg225236 +S'1895' +p279476 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009cf0.jpg' +p279477 +sg225240 +g27 +sa(dp279478 +g225230 +S'Wrapper for "Voyage en bateau"' +p279479 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p279480 +sg225234 +S'etching on blue paper' +p279481 +sg225236 +S'1862' +p279482 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091d8.jpg' +p279483 +sg225240 +g27 +sa(dp279484 +g225230 +S'Voyage en bateau' +p279485 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p279486 +sg225234 +S'portfolio with introductory text by Frederic Henriet and 16 etchings plus wrapper (Del. 99 printed on wrapper & on separate sheet as title page)' +p279487 +sg225236 +S'1862' +p279488 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091d9.jpg' +p279489 +sg225240 +g27 +sa(dp279490 +g225230 +S'Title Page for "Voyage en bateau"' +p279491 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p279492 +sg225234 +S'etching' +p279493 +sg225236 +S'1862' +p279494 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091e1.jpg' +p279495 +sg225240 +g27 +sa(dp279496 +g225230 +S'Lunch on the Way to Asnieres (Le Dejeuner du depart a Asnieres)' +p279497 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p279498 +sg225234 +S'etching' +p279499 +sg225236 +S'1862' +p279500 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091e2.jpg' +p279501 +sg225240 +g27 +sa(dp279502 +g225230 +S"Boarding the Bottin (L'Emmenagement au Bottin)" +p279503 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p279504 +sg225234 +S'etching' +p279505 +sg225236 +S'1862' +p279506 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091e0.jpg' +p279507 +sg225240 +g27 +sa(dp279508 +g225230 +S"The Heritage of the Carriage (L'Heritage de la voiture)" +p279509 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p279510 +sg225234 +S'etching' +p279511 +sg225236 +S'1862' +p279512 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091e3.jpg' +p279513 +sg225240 +g27 +sa(dp279514 +g225230 +S'Cabin Boy Pulling the Rope (Le Mousse tirant le cordeau)' +p279515 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p279516 +sg225234 +S'etching' +p279517 +sg225236 +S'1862' +p279518 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091e4.jpg' +p279519 +sg225240 +g27 +sa(dp279520 +g225230 +S'Going Down Stream (Avallant)' +p279521 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p279522 +sg225234 +S'etching' +p279523 +sg225236 +S'1862' +p279524 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091e5.jpg' +p279525 +sg225240 +g27 +sa(dp279526 +g225230 +S"Cambronne's Word (Le Mot de Cambronne)" +p279527 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p279528 +sg225234 +S'etching' +p279529 +sg225236 +S'1862' +p279530 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091df.jpg' +p279531 +sg225240 +g27 +sa(dp279532 +g225230 +S"The Search for an Inn (La Recherche d'une auberge)" +p279533 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p279534 +sg225234 +S'etching' +p279535 +sg225236 +S'1862' +p279536 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091e6.jpg' +p279537 +sg225240 +g27 +sa(dp279538 +g225230 +S"Interior of an Inn (Interieur d'une auberge)" +p279539 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p279540 +sg225234 +S'etching' +p279541 +sg225236 +S'1862' +p279542 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091e7.jpg' +p279543 +sg225240 +g27 +sa(dp279544 +g225230 +S'Night Journey, 2nd Plate (Voyage de nuit)' +p279545 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p279546 +sg225234 +S'etching' +p279547 +sg225236 +S'1862' +p279548 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091e8.jpg' +p279549 +sg225240 +g27 +sa(dp279550 +g225230 +S'Cabin Boy Fishing (Le Mousse a la peche)' +p279551 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p279552 +sg225234 +S'etching' +p279553 +sg225236 +S'1862' +p279554 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091e9.jpg' +p279555 +sg225240 +g27 +sa(dp279556 +g225230 +S'Studio on the Boat (Le Bateau-atelier)' +p279557 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p279558 +sg225234 +S'etching' +p279559 +sg225236 +S'1862' +p279560 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00058/a0005881.jpg' +p279561 +sg225240 +g27 +sa(dp279562 +g225230 +S'Steam Boats (Les Bateaux a vapeur)' +p279563 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p279564 +sg225234 +S'etching' +p279565 +sg225236 +S'1862' +p279566 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091eb.jpg' +p279567 +sg225240 +g27 +sa(dp279568 +g225230 +S'Asleep Aboard the Bottin (Coucher a bord du Bottin)' +p279569 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p279570 +sg225234 +S'etching' +p279571 +sg225236 +S'1862' +p279572 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091ed.jpg' +p279573 +sg225240 +g27 +sa(dp279574 +g225230 +S'The Fish Rejoice when the Cabin Boy Leaves (Rejouissances de poissons du depart du mo' +p279575 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p279576 +sg225234 +S'etching' +p279577 +sg225236 +S'1862' +p279578 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091ea.jpg' +p279579 +sg225240 +g27 +sa(dp279580 +g225230 +S'The Departure (Le Depart)' +p279581 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p279582 +sg225234 +S'etching' +p279583 +sg225236 +S'1862' +p279584 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091ec.jpg' +p279585 +sg225240 +g27 +sa(dp279586 +g225230 +S'Title Page for "Agreable diversite de figures"' +p279587 +sg225232 +S'Stefano Della Bella' +p279588 +sg225234 +S'etching' +p279589 +sg225236 +S'1642' +p279590 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8db.jpg' +p279591 +sg225240 +g27 +sa(dp279592 +g225230 +S'Place Dauphine' +p279593 +sg225232 +S'Stefano Della Bella' +p279594 +sg225234 +S'etching' +p279595 +sg225236 +S'1642' +p279596 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8dc.jpg' +p279597 +sg225240 +g27 +sa(dp279598 +g225230 +S'Place Royale' +p279599 +sg225232 +S'Stefano Della Bella' +p279600 +sg225234 +S'etching' +p279601 +sg225236 +S'1642' +p279602 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8dd.jpg' +p279603 +sg225240 +g27 +sa(dp279604 +g225230 +S'Forest with Deer Hunt' +p279605 +sg225232 +S'Stefano Della Bella' +p279606 +sg225234 +S'etching' +p279607 +sg225236 +S'1642' +p279608 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8de.jpg' +p279609 +sg225240 +g27 +sa(dp279610 +g225230 +S'Seated Pilgrims' +p279611 +sg225232 +S'Stefano Della Bella' +p279612 +sg225234 +S'etching' +p279613 +sg225236 +S'1642' +p279614 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8ec.jpg' +p279615 +sg225240 +g27 +sa(dp279616 +g225230 +S'Gypsies at Rest' +p279617 +sg225232 +S'Stefano Della Bella' +p279618 +sg225234 +S'etching' +p279619 +sg225236 +S'1642' +p279620 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8eb.jpg' +p279621 +sg225240 +g27 +sa(dp279622 +g225230 +S'Lords and Ladies Conversing' +p279623 +sg225232 +S'Stefano Della Bella' +p279624 +sg225234 +S'etching' +p279625 +sg225236 +S'1642' +p279626 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8ea.jpg' +p279627 +sg225240 +g27 +sa(dp279628 +g225230 +S'Horses in a Pasture' +p279629 +sg225232 +S'Stefano Della Bella' +p279630 +sg225234 +S'etching' +p279631 +sg225236 +S'1642' +p279632 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8e7.jpg' +p279633 +sg225240 +g27 +sa(dp279634 +g225230 +S'Two Goats Lying Down' +p279635 +sg225232 +S'Stefano Della Bella' +p279636 +sg225234 +S'etching' +p279637 +sg225236 +S'1642' +p279638 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8e8.jpg' +p279639 +sg225240 +g27 +sa(dp279640 +g225230 +S'Donkey Resting' +p279641 +sg225232 +S'Stefano Della Bella' +p279642 +sg225234 +S'etching' +p279643 +sg225236 +S'1642' +p279644 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8e9.jpg' +p279645 +sg225240 +g27 +sa(dp279646 +g225230 +S'Two Pikemen Traveling on Foot' +p279647 +sg225232 +S'Artist Information (' +p279648 +sg225234 +S'(artist after)' +p279649 +sg225236 +S'\n' +p279650 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c956.jpg' +p279651 +sg225240 +g27 +sa(dp279652 +g225230 +S'Title Page for "Paysages et ruines de Rome"' +p279653 +sg225232 +S'Stefano Della Bella' +p279654 +sg225234 +S'etching' +p279655 +sg225236 +S'1646' +p279656 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7dd.jpg' +p279657 +sg225240 +g27 +sa(dp279658 +g225230 +S'Campo Vaccino' +p279659 +sg225232 +S'Stefano Della Bella' +p279660 +sg225234 +S'etching' +p279661 +sg225236 +S'1646' +p279662 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7dc.jpg' +p279663 +sg225240 +g27 +sa(dp279664 +g225230 +S'Windblown Horsemen' +p279665 +sg225232 +S'Stefano Della Bella' +p279666 +sg225234 +S'etching' +p279667 +sg225236 +S'1646' +p279668 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7db.jpg' +p279669 +sg225240 +g27 +sa(dp279670 +g225230 +S'Landscape with Roman Ruins' +p279671 +sg225232 +S'Stefano Della Bella' +p279672 +sg225234 +S'etching' +p279673 +sg225236 +S'1646' +p279674 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7de.jpg' +p279675 +sg225240 +g27 +sa(dp279676 +g225230 +S'Shepherds and Flock with Woman and Camel' +p279677 +sg225232 +S'Stefano Della Bella' +p279678 +sg225234 +S'etching' +p279679 +sg225236 +S'1646' +p279680 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7df.jpg' +p279681 +sg225240 +g27 +sa(dp279682 +g225230 +S'Cows Grazing in a Valley' +p279683 +sg225232 +S'Stefano Della Bella' +p279684 +sg225234 +S'etching' +p279685 +sg225236 +S'1646' +p279686 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7e0.jpg' +p279687 +sg225240 +g27 +sa(dp279688 +g225230 +S'Waterfall with Three Tiers' +p279689 +sg225232 +S'Stefano Della Bella' +p279690 +sg225234 +S'etching' +p279691 +sg225236 +S'1646' +p279692 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7e1.jpg' +p279693 +sg225240 +g27 +sa(dp279694 +g225230 +S'Colosseum' +p279695 +sg225232 +S'Stefano Della Bella' +p279696 +sg225234 +S'etching' +p279697 +sg225236 +S'1646' +p279698 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7e2.jpg' +p279699 +sg225240 +g27 +sa(dp279700 +g225230 +S'Colosseum and Arch of Constantine' +p279701 +sg225232 +S'Stefano Della Bella' +p279702 +sg225234 +S'etching' +p279703 +sg225236 +S'1646' +p279704 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7e3.jpg' +p279705 +sg225240 +g27 +sa(dp279706 +g225230 +S'Landscape with Animals and Two Seated Shepherds' +p279707 +sg225232 +S'Stefano Della Bella' +p279708 +sg225234 +S'etching' +p279709 +sg225236 +S'1646' +p279710 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7e4.jpg' +p279711 +sg225240 +g27 +sa(dp279712 +g225230 +S'Pyramid of Caius Cestius' +p279713 +sg225232 +S'Stefano Della Bella' +p279714 +sg225234 +S'etching' +p279715 +sg225236 +S'1646' +p279716 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7e5.jpg' +p279717 +sg225240 +g27 +sa(dp279718 +g225230 +S'Baths of Diocletian and Shepherd Sleeping' +p279719 +sg225232 +S'Stefano Della Bella' +p279720 +sg225234 +S'etching' +p279721 +sg225236 +S'1646' +p279722 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7e6.jpg' +p279723 +sg225240 +g27 +sa(dp279724 +g225230 +S'Landscape with Antique Ruins' +p279725 +sg225232 +S'Stefano Della Bella' +p279726 +sg225234 +S'etching' +p279727 +sg225236 +S'1646' +p279728 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7e7.jpg' +p279729 +sg225240 +g27 +sa(dp279730 +g225230 +S'Soldiers Overseeing Embarkation' +p279731 +sg225232 +S'Stefano Della Bella' +p279732 +sg225234 +S'etching' +p279733 +sg225236 +S'1644' +p279734 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7d8.jpg' +p279735 +sg225240 +g27 +sa(dp279736 +g225230 +S'Group of Ships' +p279737 +sg225232 +S'Stefano Della Bella' +p279738 +sg225234 +S'etching' +p279739 +sg225236 +S'1644' +p279740 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7d7.jpg' +p279741 +sg225240 +g27 +sa(dp279742 +g225230 +S'Harbor View' +p279743 +sg225232 +S'Stefano Della Bella' +p279744 +sg225234 +S'etching' +p279745 +sg225236 +S'1644' +p279746 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7d6.jpg' +p279747 +sg225240 +g27 +sa(dp279748 +g225230 +S'Windy Harbor' +p279749 +sg225232 +S'Stefano Della Bella' +p279750 +sg225234 +S'etching' +p279751 +sg225236 +S'1644' +p279752 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7d5.jpg' +p279753 +sg225240 +g27 +sa(dp279754 +g225230 +S'Ship in Tempest' +p279755 +sg225232 +S'Stefano Della Bella' +p279756 +sg225234 +S'etching' +p279757 +sg225236 +S'1644' +p279758 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7d4.jpg' +p279759 +sg225240 +g27 +sa(dp279760 +g225230 +S'Landscape with Waterfall' +p279761 +sg225232 +S'Stefano Della Bella' +p279762 +sg225234 +S'etching' +p279763 +sg225236 +S'1641' +p279764 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c90f.jpg' +p279765 +sg225240 +g27 +sa(dp279766 +g225230 +S'Landscape with Bridge' +p279767 +sg225232 +S'Stefano Della Bella' +p279768 +sg225234 +S'etching' +p279769 +sg225236 +S'1641' +p279770 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c910.jpg' +p279771 +sg225240 +g27 +sa(dp279772 +g225230 +S'Landscape with Castle' +p279773 +sg225232 +S'Stefano Della Bella' +p279774 +sg225234 +S'etching' +p279775 +sg225236 +S'1641' +p279776 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c911.jpg' +p279777 +sg225240 +g27 +sa(dp279778 +g225230 +S'Title Page for "Diverses figures et griffonnements"' +p279779 +sg225232 +S'Stefano Della Bella' +p279780 +sg225234 +S'etching' +p279781 +sg225236 +S'1646' +p279782 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c906.jpg' +p279783 +sg225240 +g27 +sa(dp279784 +g225230 +S'Landscape with Horsemen' +p279785 +sg225232 +S'Stefano Della Bella' +p279786 +sg225234 +S'etching' +p279787 +sg225236 +S'1646' +p279788 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c903.jpg' +p279789 +sg225240 +g27 +sa(dp279790 +g225230 +S'Marine' +p279791 +sg225232 +S'Stefano Della Bella' +p279792 +sg225234 +S'etching' +p279793 +sg225236 +S'1642' +p279794 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8da.jpg' +p279795 +sg225240 +g27 +sa(dp279796 +g225230 +S'Title Page for "Paysages maritimes"' +p279797 +sg225232 +S'Stefano Della Bella' +p279798 +sg225234 +S'etching' +p279799 +sg225236 +S'1644' +p279800 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7d9.jpg' +p279801 +sg225240 +g27 +sa(dp279802 +g225232 +S'Leo Katz' +p279803 +sg225240 +g27 +sg225234 +S'aquatint' +p279804 +sg225230 +S'Star' +p279805 +sg225236 +S'1957' +p279806 +sa(dp279807 +g225232 +S'E.A. Carmean, Jr.' +p279808 +sg225240 +g27 +sg225234 +S'1 vol: ill: original lithograph by Motherwell accompanies volume (see record for print 1981.61.2)' +p279809 +sg225230 +S'Robert Motherwell: Reconciliation Elegy' +p279810 +sg225236 +S'published 1980' +p279811 +sa(dp279812 +g225232 +S'Artist Information (' +p279813 +sg225240 +g27 +sg225234 +S'American, born 1945' +p279814 +sg225230 +S'Altamira Elegy' +p279815 +sg225236 +S'(printer)' +p279816 +sa(dp279817 +g225232 +S'Rufino Tamayo' +p279818 +sg225240 +g27 +sg225234 +S'stencil print with embossing on hand-made paper' +p279819 +sg225230 +S'Untitled' +p279820 +sg225236 +S'c. 1981' +p279821 +sa(dp279822 +g225232 +S'Jean Tinguely' +p279823 +sg225240 +g27 +sg225234 +S'etching in brown' +p279824 +sg225230 +S'Metaharmonie III' +p279825 +sg225236 +S'1981' +p279826 +sa(dp279827 +g225230 +S'Head of a Bull' +p279828 +sg225232 +S'Gaetano Monti' +p279829 +sg225234 +S'marble' +p279830 +sg225236 +S'1824' +p279831 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c40.jpg' +p279832 +sg225240 +g27 +sa(dp279833 +g225230 +S'The Baptism of Christ' +p279834 +sg225232 +S'Pietro Perugino' +p279835 +sg225234 +S'pen and brown ink' +p279836 +sg225236 +S'c. 1475' +p279837 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00037/a00037ce.jpg' +p279838 +sg225240 +g27 +sa(dp279839 +g225230 +S'Apollo, the Muses, and Mars: In Praise of Tasso' +p279840 +sg225232 +S'Giovanni Battista Piazzetta' +p279841 +sg225234 +S'black chalk on laid paper' +p279842 +sg225236 +S'1740/1745' +p279843 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00037/a00037d0.jpg' +p279844 +sg225240 +g27 +sa(dp279845 +g225230 +S'The Temptation of Saint Anthony [second version]' +p279846 +sg225232 +S'Jacques Callot' +p279847 +sg225234 +S'etching' +p279848 +sg225236 +S'1635' +p279849 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00010/a000106b.jpg' +p279850 +sg225240 +g27 +sa(dp279851 +g225232 +S'Artist Information (' +p279852 +sg225240 +g27 +sg225234 +S'(author)' +p279853 +sg225230 +S'Icones Historiarum Veteris Testamenti (2nd edition)' +p279854 +sg225236 +S'\n' +p279855 +sa(dp279856 +g225230 +S'Landscape with a Bridge' +p279857 +sg225232 +S'Claude Lorrain' +p279858 +sg225234 +S'pen and brown ink with brown wash over black chalk on laid paper' +p279859 +sg225236 +S'c. 1630/1635' +p279860 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022e1.jpg' +p279861 +sg225240 +g27 +sa(dp279862 +g225232 +S'Jean Lacroix de Marles' +p279863 +sg225240 +g27 +sg225234 +S', published 1837' +p279864 +sg225230 +S'Paris ancien et moderne (volume I)' +p279865 +sg225236 +S'\n' +p279866 +sa(dp279867 +g225232 +S'Jean Lacroix de Marles' +p279868 +sg225240 +g27 +sg225234 +S', published 1837' +p279869 +sg225230 +S'Paris ancien et moderne (volume II)' +p279870 +sg225236 +S'\n' +p279871 +sa(dp279872 +g225232 +S'Jean Lacroix de Marles' +p279873 +sg225240 +g27 +sg225234 +S', published 1837' +p279874 +sg225230 +S'Paris ancien et moderne (volume III)' +p279875 +sg225236 +S'\n' +p279876 +sa(dp279877 +g225232 +S'Artist Information (' +p279878 +sg225240 +g27 +sg225234 +S'(artist)' +p279879 +sg225230 +S'Paris ancien et moderne (volume IV)' +p279880 +sg225236 +S'\n' +p279881 +sa(dp279882 +g225232 +S'Artist Information (' +p279883 +sg225240 +g27 +sg225234 +S'French, 1814 - 1875' +p279884 +sg225230 +S'Paris dans sa Splendeur (volume I)' +p279885 +sg225236 +S'(author)' +p279886 +sa(dp279887 +g225232 +S'Artist Information (' +p279888 +sg225240 +g27 +sg225234 +S'French, 1814 - 1875' +p279889 +sg225230 +S'Paris dans sa Splendeur (volume II)' +p279890 +sg225236 +S'(author)' +p279891 +sa(dp279892 +g225232 +S'Artist Information (' +p279893 +sg225240 +g27 +sg225234 +S'French, 1814 - 1875' +p279894 +sg225230 +S'Paris dans sa Splendeur (volume III)' +p279895 +sg225236 +S'(author)' +p279896 +sa(dp279897 +g225232 +S'Artist Information (' +p279898 +sg225240 +g27 +sg225234 +S'French, 1700 - 1767' +p279899 +sg225230 +S"Description Historique de l'Hotel des Invalides" +p279900 +sg225236 +S'(author)' +p279901 +sa(dp279902 +g225232 +S'Francois-Louis Couch\xc3\xa9' +p279903 +sg225240 +g27 +sg225234 +S'bound volume with etchings and engravings' +p279904 +sg225230 +S'Soixante Vues des plus beaux Palais, Monuments et Eglises de Paris' +p279905 +sg225236 +S'published 1818' +p279906 +sa(dp279907 +g225232 +S'Adam Perelle' +p279908 +sg225240 +g27 +sg225234 +S'1 vol: ill: 114 etchings' +p279909 +sg225230 +S'Views in Paris, and of Chateaux and Gardens in France' +p279910 +sg225236 +S'unknown date\n' +p279911 +sa(dp279912 +g225232 +S'Jean-Baptiste Rigaud' +p279913 +sg225240 +g27 +sg225234 +S'1 vol: ill: 106 etchings plus engraved title page' +p279914 +sg225230 +S'Recueil Choisi des plus belles Vues de Palais... de Paris et des Environs' +p279915 +sg225236 +S'published 1729/1752' +p279916 +sa(dp279917 +g225232 +S'Artist Information (' +p279918 +sg225240 +g27 +sg225234 +S'(artist)' +p279919 +sg225230 +S'Views in France and Italy' +p279920 +sg225236 +S'\n' +p279921 +sa(dp279922 +g225230 +S'Roche Taillet sur la Saosne proche Lyon' +p279923 +sg225232 +S'Isra\xc3\xabl Silvestre' +p279924 +sg225234 +S'etching' +p279925 +sg225236 +S'unknown date\n' +p279926 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a3c.jpg' +p279927 +sg225240 +g27 +sa(dp279928 +g225230 +S"Veue du Chasteau d'Ansy le franc du coste du jeu de longue paume" +p279929 +sg225232 +S'Isra\xc3\xabl Silvestre' +p279930 +sg225234 +S'etching' +p279931 +sg225236 +S'unknown date\n' +p279932 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a45.jpg' +p279933 +sg225240 +g27 +sa(dp279934 +g225230 +S'Veue de la Tour de Quinquangrongne' +p279935 +sg225232 +S'Isra\xc3\xabl Silvestre' +p279936 +sg225234 +S'etching' +p279937 +sg225236 +S'unknown date\n' +p279938 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a3b.jpg' +p279939 +sg225240 +g27 +sa(dp279940 +g225230 +S'Le coin des Bons hommes proche de Paris' +p279941 +sg225232 +S'Isra\xc3\xabl Silvestre' +p279942 +sg225234 +S'etching' +p279943 +sg225236 +S'unknown date\n' +p279944 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a39.jpg' +p279945 +sg225240 +g27 +sa(dp279946 +g225230 +S'Veue de la Tour de Grignon' +p279947 +sg225232 +S'Isra\xc3\xabl Silvestre' +p279948 +sg225234 +S'etching' +p279949 +sg225236 +S'1650' +p279950 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a3d.jpg' +p279951 +sg225240 +g27 +sa(dp279952 +g225230 +S"L'hostel d'Angoulesme" +p279953 +sg225232 +S'Isra\xc3\xabl Silvestre' +p279954 +sg225234 +S'etching' +p279955 +sg225236 +S'1652' +p279956 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a35.jpg' +p279957 +sg225240 +g27 +sa(dp279958 +g225230 +S'Veue de Pont et partie de la Ville de Grenoble' +p279959 +sg225232 +S'Isra\xc3\xabl Silvestre' +p279960 +sg225234 +S'etching' +p279961 +sg225236 +S'unknown date\n' +p279962 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a3e.jpg' +p279963 +sg225240 +g27 +sa(dp279964 +g225230 +S'Le Grotte de Meudon' +p279965 +sg225232 +S'Isra\xc3\xabl Silvestre' +p279966 +sg225234 +S'etching' +p279967 +sg225236 +S'1655' +p279968 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a38.jpg' +p279969 +sg225240 +g27 +sa(dp279970 +g225230 +S'Veue de Larcenal' +p279971 +sg225232 +S'Isra\xc3\xabl Silvestre' +p279972 +sg225234 +S'etching' +p279973 +sg225236 +S'1655' +p279974 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a34.jpg' +p279975 +sg225240 +g27 +sa(dp279976 +g225230 +S'Veue des bons hommes' +p279977 +sg225232 +S'Isra\xc3\xabl Silvestre' +p279978 +sg225234 +S'etching' +p279979 +sg225236 +S'1655' +p279980 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a37.jpg' +p279981 +sg225240 +g27 +sa(dp279982 +g225230 +S'Veue et Perspectiue du Palais et Jardins des Thuilleries' +p279983 +sg225232 +S'Isra\xc3\xabl Silvestre' +p279984 +sg225234 +S'etching' +p279985 +sg225236 +S'1650/1655' +p279986 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c21.jpg' +p279987 +sg225240 +g27 +sa(dp279988 +g225230 +S'Palais de la Reyne Catherine de Medicis' +p279989 +sg225232 +S'Isra\xc3\xabl Silvestre' +p279990 +sg225234 +S'etching' +p279991 +sg225236 +S'1650/1655' +p279992 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a31.jpg' +p279993 +sg225240 +g27 +sa(dp279994 +g225230 +S'Plan general du Chasteau et petit Parc de Vincennes' +p279995 +sg225232 +S'Isra\xc3\xabl Silvestre' +p279996 +sg225234 +S'etching' +p279997 +sg225236 +S'1668' +p279998 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a3f.jpg' +p279999 +sg225240 +g27 +sa(dp280000 +g225230 +S"Veue de l'Abbaye Sainct Michel de Tonnerre" +p280001 +sg225232 +S'Isra\xc3\xabl Silvestre' +p280002 +sg225234 +S'etching' +p280003 +sg225236 +S'1650' +p280004 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a44.jpg' +p280005 +sg225240 +g27 +sa(dp280006 +g225230 +S"Veue de Berny a deux lieues de Paris sur le chemin d'Orl\xc3\xa9ans" +p280007 +sg225232 +S'Isra\xc3\xabl Silvestre' +p280008 +sg225234 +S'etching' +p280009 +sg225236 +S'1651' +p280010 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a47.jpg' +p280011 +sg225240 +g27 +sa(dp280012 +g225230 +S'La Maijorre de Marseille' +p280013 +sg225232 +S'Isra\xc3\xabl Silvestre' +p280014 +sg225234 +S'etching' +p280015 +sg225236 +S'unknown date\n' +p280016 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a3a.jpg' +p280017 +sg225240 +g27 +sa(dp280018 +g225230 +S"Veue de la Maison de Monsieur de Bretonuillerdans l'Isle Nostre Dame" +p280019 +sg225232 +S'Isra\xc3\xabl Silvestre' +p280020 +sg225234 +S'etching' +p280021 +sg225236 +S'1664' +p280022 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a40.jpg' +p280023 +sg225240 +g27 +sa(dp280024 +g225230 +S"Veue de l'Hostel de Soissons" +p280025 +sg225232 +S'Isra\xc3\xabl Silvestre' +p280026 +sg225234 +S'etching' +p280027 +sg225236 +S'1652' +p280028 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a43.jpg' +p280029 +sg225240 +g27 +sa(dp280030 +g225230 +S'Veue du Pont de pierre de Rouen' +p280031 +sg225232 +S'Isra\xc3\xabl Silvestre' +p280032 +sg225234 +S'etching' +p280033 +sg225236 +S'1664' +p280034 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a41.jpg' +p280035 +sg225240 +g27 +sa(dp280036 +g225230 +S"Veue de l'Eglise nostre Dame de Rouen" +p280037 +sg225232 +S'Isra\xc3\xabl Silvestre' +p280038 +sg225234 +S'etching' +p280039 +sg225236 +S'1664' +p280040 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a42.jpg' +p280041 +sg225240 +g27 +sa(dp280042 +g225230 +S"L'Hostel de Vandosme a Paris" +p280043 +sg225232 +S'Isra\xc3\xabl Silvestre' +p280044 +sg225234 +S'etching' +p280045 +sg225236 +S'1652' +p280046 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a36.jpg' +p280047 +sg225240 +g27 +sa(dp280048 +g225230 +S'Veue de Prieure et Village de Croissy' +p280049 +sg225232 +S'Isra\xc3\xabl Silvestre' +p280050 +sg225234 +S'etching' +p280051 +sg225236 +S'1650' +p280052 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a32.jpg' +p280053 +sg225240 +g27 +sa(dp280054 +g225230 +S'Veue du Luxembourg' +p280055 +sg225232 +S'Isra\xc3\xabl Silvestre' +p280056 +sg225234 +S'etching' +p280057 +sg225236 +S'1655' +p280058 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a33.jpg' +p280059 +sg225240 +g27 +sa(dp280060 +g225230 +S'Veue des petittes Cascades de Vaux' +p280061 +sg225232 +S'Isra\xc3\xabl Silvestre' +p280062 +sg225234 +S'etching' +p280063 +sg225236 +S'unknown date\n' +p280064 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a46.jpg' +p280065 +sg225240 +g27 +sa(dp280066 +g225232 +S'Artist Information (' +p280067 +sg225240 +g27 +sg225234 +S'(artist)' +p280068 +sg225230 +S'Ruins of the Palace of the Emperor Diocletian at Spalatro in Dalmatia By R. Adam F.R.S F.S.A Architect to the King and to the Queen' +p280069 +sg225236 +S'\n' +p280070 +sa(dp280071 +g225230 +S"Les Plus Beaux Monuments de Rome Ancienne Ou Recue\xc3\xafl Des Plus Beaux Morceaux De L'Antiquit\xc3\xa9 Romaine Qui Existent Encore: Dessin\xc3\xa9s Par Monsieur Barbault Peintre Ancien Pensionnaire Du Roy a Rome, Et Grav\xc3\xa9s en 128 Planches Avec Leur Explication." +p280072 +sg225232 +S'Artist Information (' +p280073 +sg225234 +S'(artist)' +p280074 +sg225236 +S'\n' +p280075 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ffa5.jpg' +p280076 +sg225240 +g27 +sa(dp280077 +g225232 +S'Artist Information (' +p280078 +sg225240 +g27 +sg225234 +S'(artist)' +p280079 +sg225230 +S'Oeuvres' +p280080 +sg225236 +S'\n' +p280081 +sa(dp280082 +g225232 +S'Artist Information (' +p280083 +sg225240 +g27 +sg225234 +S'(author)' +p280084 +sg225230 +S"Il Forestiere Istruito delle Cose piu' Rare di Architettura, E di alcune Pitture della Citta' Di Vicenza Dialogo Di ottavio Bertotti Scamozzi Dedicato Al Nob. Sig. Marchese Mario Capra" +p280085 +sg225236 +S'\n' +p280086 +sa(dp280087 +g225232 +S'Artist Information (' +p280088 +sg225240 +g27 +sg225234 +S'(artist)' +p280089 +sg225230 +S'Numismata Summorum Pontificum Templi Vaticani Fabricam Indicantia, Chronologica ejusden Fabricae narratione, ac multiplici eruditione explicata, Atque uberiori Numismatum omnium Pontificiorum Lucubrationi veluti Prodromus praemissa A Patre Philippo' +p280090 +sg225236 +S'\n' +p280091 +sa(dp280092 +g225232 +S'Artist Information (' +p280093 +sg225240 +g27 +sg225234 +S'(artist)' +p280094 +sg225230 +S'Vitruvius Britannicus, or the British Architect, Containing The Plans, Elevations, and Sections of the Regular Buildings, both Publick and Private, in Great Britain, With Variety of New Designs; in 200 large Folio Plates, Engraven by the best Hands; and Drawn either from the Buildings themselves, the the Original Designs of the Architects; In III Volumes Vol. I [-III] by Colen Campb ell Esqr....(repeated in French) Cum Privilegio Regis' +p280095 +sg225236 +S'\n' +p280096 +sa(dp280097 +g225232 +S'Vincenzo Scamozzi' +p280098 +sg225240 +g27 +sg225234 +S', published 1615' +p280099 +sg225230 +S"L'Idea della Architettura Universale di Vincenzo Scamozzi Architetto Veneto Diuisa in X. Libri. Parte Prima. Dell' Eccellenza di Qvesta Facolta, Degl' Architetti prestani: e Precetti, Inuentioni, Disegni, Modelli & Opere merauigliose. Le qualite de Paesi, e Siti; Le Forme delle Citt\xc3\xa0, e Fortezze reali; e di tutti i Generi d'Edifici Sacri, Publici, e Priuati: Antichi, e proprij dell' Autore. Con i Loro Disegni" +p280100 +sg225236 +S'\n' +p280101 +sa(dp280102 +g225232 +S'Artist Information (' +p280103 +sg225240 +g27 +sg225234 +S'(artist)' +p280104 +sg225230 +S"L'Entr\xc3\xa9e Triomphante De Leurs Maiestez Louis XIV. Roy De France Et De Navarre, Et Marie Therese D'Austriche Son Espouse, Dans La Ville De Paris Capitale De Leurs Royaumes, Au Retour De La Signature De La Paix Generalle Et De Leur Heureux Mariage. Enrichie de plusiers Figures, des Harangues & de diverses Pieces considerables pour l'Histoire..." +p280105 +sg225236 +S'\n' +p280106 +sa(dp280107 +g225232 +S'Artist Information (' +p280108 +sg225240 +g27 +sg225234 +S'(artist)' +p280109 +sg225230 +S'The Architecture of Leon Battista Alberti in Ten Books of Painting in Three Books and of Statuary in One Book. Translated into Italian by Cosimo Bartoli. The Second Edition and Divided into Two Volumes by James Leoni, Venetian, Architect' +p280110 +sg225236 +S'\n' +p280111 +sa(dp280112 +g225232 +S'Artist Information (' +p280113 +sg225240 +g27 +sg225234 +S'(artist)' +p280114 +sg225230 +S'The Architecture of Leon Battista Alberti in Ten Books of Painting in Three Books and of Statuary in One Book. Translated into Italian by Cosimo Bartoli. The Second Edition and Divided into Two Volumes by James Leoni, Venetian, Architect' +p280115 +sg225236 +S'\n' +p280116 +sa(dp280117 +g225230 +S'Sarah Bernhardt as Melisande' +p280118 +sg225232 +S'Paul Berthon' +p280119 +sg225234 +S'color lithograph' +p280120 +sg225236 +S'unknown date\n' +p280121 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009ef1.jpg' +p280122 +sg225240 +g27 +sa(dp280123 +g225232 +S'Artist Information (' +p280124 +sg225240 +g27 +sg225234 +S'(author)' +p280125 +sg225230 +S'Sabbath Bells' +p280126 +sg225236 +S'\n' +p280127 +sa(dp280128 +g225232 +S'Artist Information (' +p280129 +sg225240 +g27 +sg225234 +S'(author)' +p280130 +sg225230 +S'De Funeribus Romanorum' +p280131 +sg225236 +S'\n' +p280132 +sa(dp280133 +g225230 +S'Pastoral Scene' +p280134 +sg225232 +S'Artist Information (' +p280135 +sg225234 +S'(artist after)' +p280136 +sg225236 +S'\n' +p280137 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb5d.jpg' +p280138 +sg225240 +g27 +sa(dp280139 +g225230 +S'Imaginary Portrait of an English Gentleman' +p280140 +sg225232 +S'Thomas Frye' +p280141 +sg225234 +S'mezzotint' +p280142 +sg225236 +S'1760' +p280143 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a00078a7.jpg' +p280144 +sg225240 +g27 +sa(dp280145 +g225230 +S'Imaginary Portrait of an English Beauty' +p280146 +sg225232 +S'Thomas Frye' +p280147 +sg225234 +S'mezzotint' +p280148 +sg225236 +S'1762' +p280149 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a00078a3.jpg' +p280150 +sg225240 +g27 +sa(dp280151 +g225230 +S'Peccati Mortisque Triumphor Christus' +p280152 +sg225232 +S'Artist Information (' +p280153 +sg225234 +S'(artist after)' +p280154 +sg225236 +S'\n' +p280155 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caf3.jpg' +p280156 +sg225240 +g27 +sa(dp280157 +g225230 +S'Trinitatis delicia Virgo Maria' +p280158 +sg225232 +S'Artist Information (' +p280159 +sg225234 +S'(artist after)' +p280160 +sg225236 +S'\n' +p280161 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caf2.jpg' +p280162 +sg225240 +g27 +sa(dp280163 +g225230 +S'Sanctus Andreas' +p280164 +sg225232 +S'Artist Information (' +p280165 +sg225234 +S'(artist after)' +p280166 +sg225236 +S'\n' +p280167 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caf1.jpg' +p280168 +sg225240 +g27 +sa(dp280169 +g225230 +S'Sanctus Bartholomeaus' +p280170 +sg225232 +S'Artist Information (' +p280171 +sg225234 +S'(artist after)' +p280172 +sg225236 +S'\n' +p280173 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caf0.jpg' +p280174 +sg225240 +g27 +sa(dp280175 +g225230 +S'Sanctus Jacobus Major' +p280176 +sg225232 +S'Artist Information (' +p280177 +sg225234 +S'(artist after)' +p280178 +sg225236 +S'\n' +p280179 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caef.jpg' +p280180 +sg225240 +g27 +sa(dp280181 +g225230 +S'Sanctus Lucas' +p280182 +sg225232 +S'Artist Information (' +p280183 +sg225234 +S'(artist after)' +p280184 +sg225236 +S'\n' +p280185 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caee.jpg' +p280186 +sg225240 +g27 +sa(dp280187 +g225230 +S'Saint Mark' +p280188 +sg225232 +S'Artist Information (' +p280189 +sg225234 +S'(artist after)' +p280190 +sg225236 +S'\n' +p280191 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caed.jpg' +p280192 +sg225240 +g27 +sa(dp280193 +g225230 +S'Sanctus Matteaus' +p280194 +sg225232 +S'Artist Information (' +p280195 +sg225234 +S'(artist after)' +p280196 +sg225236 +S'\n' +p280197 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caec.jpg' +p280198 +sg225240 +g27 +sa(dp280199 +g225230 +S'Sanctus Paulus' +p280200 +sg225232 +S'Artist Information (' +p280201 +sg225234 +S'(artist after)' +p280202 +sg225236 +S'\n' +p280203 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caeb.jpg' +p280204 +sg225240 +g27 +sa(dp280205 +g225230 +S'Sanctus Phillipus' +p280206 +sg225232 +S'Artist Information (' +p280207 +sg225234 +S'(artist after)' +p280208 +sg225236 +S'\n' +p280209 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caea.jpg' +p280210 +sg225240 +g27 +sa(dp280211 +g225230 +S'Sanctus Simeon' +p280212 +sg225232 +S'Artist Information (' +p280213 +sg225234 +S'(artist after)' +p280214 +sg225236 +S'\n' +p280215 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cae9.jpg' +p280216 +sg225240 +g27 +sa(dp280217 +g225230 +S'Alexander, Lord Loughborough' +p280218 +sg225232 +S'Artist Information (' +p280219 +sg225234 +S'(artist after)' +p280220 +sg225236 +S'\n' +p280221 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbc8.jpg' +p280222 +sg225240 +g27 +sa(dp280223 +g225230 +S'Edward, Lord Thurlow' +p280224 +sg225232 +S'Artist Information (' +p280225 +sg225234 +S'(artist after)' +p280226 +sg225236 +S'\n' +p280227 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbcb.jpg' +p280228 +sg225240 +g27 +sa(dp280229 +g225232 +S'Artist Information (' +p280230 +sg225240 +g27 +sg225234 +S'(artist after)' +p280231 +sg225230 +S'Alfred, Lord Tennyson' +p280232 +sg225236 +S'\n' +p280233 +sa(dp280234 +g225232 +S'Hjalmar M\xc3\xb6rner' +p280235 +sg225240 +g27 +sg225234 +S'1 vol: 20 etchings' +p280236 +sg225230 +S'Il Carnevale di Roma' +p280237 +sg225236 +S'published 1820' +p280238 +sa(dp280239 +g225232 +S'Bartolomeo Pinelli' +p280240 +sg225240 +g27 +sg225234 +S'1 vol: 50 etchings' +p280241 +sg225230 +S"L'Eneide di Virgilio" +p280242 +sg225236 +S'published 1811' +p280243 +sa(dp280244 +g225232 +S'Bartolomeo Pinelli' +p280245 +sg225240 +g27 +sg225234 +S'1 vol: ill: 100 etchings' +p280246 +sg225230 +S'Istoria Roma' +p280247 +sg225236 +S'published 1821' +p280248 +sa(dp280249 +g225232 +S'Bartolomeo Pinelli' +p280250 +sg225240 +g27 +sg225234 +S'1 vol: ill: 100 etchings' +p280251 +sg225230 +S'Istoria Greca' +p280252 +sg225236 +S'published 1821' +p280253 +sa(dp280254 +g225232 +S'Bartolomeo Pinelli' +p280255 +sg225240 +g27 +sg225234 +S'1 vol: 67 etchings including frontispiece' +p280256 +sg225230 +S'Divina Comedia di Dante (volume I)' +p280257 +sg225236 +S'published 1826' +p280258 +sa(dp280259 +g225232 +S'Bartolomeo Pinelli' +p280260 +sg225240 +g27 +sg225234 +S'1 vol: 43 etchings' +p280261 +sg225230 +S'Divina Comedia di Dante (volume II)' +p280262 +sg225236 +S'published 1826' +p280263 +sa(dp280264 +g225232 +S'Bartolomeo Pinelli' +p280265 +sg225240 +g27 +sg225234 +S'1 vol: 35 etchings' +p280266 +sg225230 +S'Divina Comedia di Dante (volume III)' +p280267 +sg225236 +S'published 1826' +p280268 +sa(dp280269 +g225232 +S'Various Artists' +p280270 +sg225240 +g27 +sg225234 +S'Gift of Dr. and Mrs. David S. Pollen' +p280271 +sg225230 +S'Raccolta ... della Citta di Roma ...' +p280272 +sg225236 +S'\n1 vol: 40 etchings and engravings of which 10 are by P. Parboni, 10 by F. Morel, 6 by F. Palmucci, 6 by G. Acquaroni, 3 by P. Ruga, & 4 by S. Bossi' +p280273 +sa(dp280274 +g225230 +S'Ein Monitari Indianer' +p280275 +sg225232 +S'Karl Bodmer' +p280276 +sg225234 +S'lithograph' +p280277 +sg225236 +S'1839' +p280278 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef02.jpg' +p280279 +sg225240 +g27 +sa(dp280280 +g225230 +S"L'Inquietude" +p280281 +sg225232 +S'Achille Deveria' +p280282 +sg225234 +S'lithograph' +p280283 +sg225236 +S'1829' +p280284 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00063/a0006369.jpg' +p280285 +sg225240 +g27 +sa(dp280286 +g225230 +S'Figures in a Landscape' +p280287 +sg225232 +S'William Hart' +p280288 +sg225234 +S'graphite with white gouache on brown paper' +p280289 +sg225236 +S'1860' +p280290 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008f1.jpg' +p280291 +sg225240 +g27 +sa(dp280292 +g225230 +S'Norman Structure' +p280293 +sg225232 +S'Childe Hassam' +p280294 +sg225234 +S'pen and black ink over graphite on (bristol board?)' +p280295 +sg225236 +S'1885' +p280296 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008f5.jpg' +p280297 +sg225240 +g27 +sa(dp280298 +g225230 +S'Prometheus Bound' +p280299 +sg225232 +S'Christian Schussele' +p280300 +sg225234 +S'charcoal' +p280301 +sg225236 +S'unknown date\n' +p280302 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a00009c8.jpg' +p280303 +sg225240 +g27 +sa(dp280304 +g225230 +S'Charity' +p280305 +sg225232 +S'Benjamin West' +p280306 +sg225234 +S'pen and brown ink with brown wash on gray paper mounted to brown laid paper' +p280307 +sg225236 +S'unknown date\n' +p280308 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a00009f3.jpg' +p280309 +sg225240 +g27 +sa(dp280310 +g225230 +S'City Street Scene' +p280311 +sg225232 +S'Artist Information (' +p280312 +sg225234 +g27 +sg225236 +S'(artist)' +p280313 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072ad.jpg' +p280314 +sg225240 +g27 +sa(dp280315 +g225232 +S'M.C. Escher' +p280316 +sg225240 +g27 +sg225234 +S'wood engraving//below engraving on same sheet is anotein ink from Escher to Martin Gardner' +p280317 +sg225230 +S'Trees and Animals' +p280318 +sg225236 +S'probably 1953' +p280319 +sa(dp280320 +g225232 +S'M.C. Escher' +p280321 +sg225240 +g27 +sg225234 +S'wood engraving//illustration on cover of "De Graphicus M.C. Escher" by G.H.\'s-Gravesande, "Halcyon 3-4", The Hague, 1940' +p280322 +sg225230 +S'Covered Alley in Atrani' +p280323 +sg225236 +S'1931' +p280324 +sa(dp280325 +g225232 +S'M.C. Escher' +p280326 +sg225240 +g27 +sg225234 +S'wood engraving' +p280327 +sg225230 +S'Grasshopper' +p280328 +sg225236 +S'1935' +p280329 +sa(dp280330 +g225232 +S'M.C. Escher' +p280331 +sg225240 +g27 +sg225234 +S'wood engraving' +p280332 +sg225230 +S'Scarabs' +p280333 +sg225236 +S'1935' +p280334 +sa(dp280335 +g225232 +S'M.C. Escher' +p280336 +sg225240 +g27 +sg225234 +S'woodcut//poem ("Spinrag") is on same sheet to right of woodcut' +p280337 +sg225230 +S'Cobwebs' +p280338 +sg225236 +S'1931' +p280339 +sa(dp280340 +g225232 +S'Artist Information (' +p280341 +sg225240 +g27 +sg225234 +S'(author)' +p280342 +sg225230 +S'XXIV Emblemata dat zijn zinne-beelden' +p280343 +sg225236 +S'\n' +p280344 +sa(dp280345 +g225232 +S'Artist Information (' +p280346 +sg225240 +g27 +sg225234 +S'(author)' +p280347 +sg225230 +S'Flor de Pascua' +p280348 +sg225236 +S'\n' +p280349 +sa(dp280350 +g225232 +S'M.C. Escher' +p280351 +sg225240 +g27 +sg225234 +S'woodcut//1 of 4 woodcuts printed on a single page' +p280352 +sg225230 +S'Sunflower [upper right]' +p280353 +sg225236 +S'1921' +p280354 +sa(dp280355 +g225232 +S'M.C. Escher' +p280356 +sg225240 +g27 +sg225234 +S'woodcut//1 of 4 woodcuts printed on a single page' +p280357 +sg225230 +S'Valentine [upper left]' +p280358 +sg225236 +S'1921' +p280359 +sa(dp280360 +g225232 +S'M.C. Escher' +p280361 +sg225240 +g27 +sg225234 +S'woodcut//1 of 4 woodcuts printed on a single page' +p280362 +sg225230 +S'Bell Flower [lower left]' +p280363 +sg225236 +S'1921' +p280364 +sa(dp280365 +g225232 +S'M.C. Escher' +p280366 +sg225240 +g27 +sg225234 +S'woodcut//1 of 4 woodcuts printed on a single page' +p280367 +sg225230 +S'Alarm Clock [lower right]' +p280368 +sg225236 +S'1921' +p280369 +sa(dp280370 +g225232 +S'M.C. Escher' +p280371 +sg225240 +g27 +sg225234 +S'woodcut' +p280372 +sg225230 +S'The Scapegoat' +p280373 +sg225236 +S'1921' +p280374 +sa(dp280375 +g225232 +S'M.C. Escher' +p280376 +sg225240 +g27 +sg225234 +S'woodcut' +p280377 +sg225230 +S'Convention' +p280378 +sg225236 +S'1921' +p280379 +sa(dp280380 +g225232 +S'M.C. Escher' +p280381 +sg225240 +g27 +sg225234 +S'woodcut' +p280382 +sg225230 +S'Fulfillment' +p280383 +sg225236 +S'1921' +p280384 +sa(dp280385 +g225232 +S'M.C. Escher' +p280386 +sg225240 +g27 +sg225234 +S'woodcut' +p280387 +sg225230 +S'Madonna' +p280388 +sg225236 +S'1921' +p280389 +sa(dp280390 +g225232 +S'M.C. Escher' +p280391 +sg225240 +g27 +sg225234 +S'woodcut' +p280392 +sg225230 +S'Standing Figure' +p280393 +sg225236 +S'1921' +p280394 +sa(dp280395 +g225232 +S'M.C. Escher' +p280396 +sg225240 +g27 +sg225234 +S'woodcut' +p280397 +sg225230 +S'Spook' +p280398 +sg225236 +S'1921' +p280399 +sa(dp280400 +g225232 +S'M.C. Escher' +p280401 +sg225240 +g27 +sg225234 +S'woodcut' +p280402 +sg225230 +S'Pansy' +p280403 +sg225236 +S'1921' +p280404 +sa(dp280405 +g225232 +S'M.C. Escher' +p280406 +sg225240 +g27 +sg225234 +S'woodcut' +p280407 +sg225230 +S'Theosophy' +p280408 +sg225236 +S'1921' +p280409 +sa(dp280410 +g225232 +S'M.C. Escher' +p280411 +sg225240 +g27 +sg225234 +S'woodcut' +p280412 +sg225230 +S'Rooster on the Tower' +p280413 +sg225236 +S'1921' +p280414 +sa(dp280415 +g225232 +S'M.C. Escher' +p280416 +sg225240 +g27 +sg225234 +S'woodcut' +p280417 +sg225230 +S'Perfume' +p280418 +sg225236 +S'1921' +p280419 +sa(dp280420 +g225232 +S'M.C. Escher' +p280421 +sg225240 +g27 +sg225234 +S'woodcut' +p280422 +sg225230 +S"Whore's Superstiton" +p280423 +sg225236 +S'1921' +p280424 +sa(dp280425 +g225232 +S'M.C. Escher' +p280426 +sg225240 +g27 +sg225234 +S'woodcut' +p280427 +sg225230 +S'The Sphere' +p280428 +sg225236 +S'1921' +p280429 +sa(dp280430 +g225232 +S'M.C. Escher' +p280431 +sg225240 +g27 +sg225234 +S'woodcut' +p280432 +sg225230 +S'"Never Think before You Act"' +p280433 +sg225236 +S'1921' +p280434 +sa(dp280435 +g225232 +S'M.C. Escher' +p280436 +sg225240 +g27 +sg225234 +S'woodcut' +p280437 +sg225230 +S'Beautiful' +p280438 +sg225236 +S'1921' +p280439 +sa(dp280440 +g225232 +S'M.C. Escher' +p280441 +sg225240 +g27 +sg225234 +S'woodcut' +p280442 +sg225230 +S'Charity' +p280443 +sg225236 +S'1921' +p280444 +sa(dp280445 +g225232 +S'Artist Information (' +p280446 +sg225240 +g27 +sg225234 +S'(author)' +p280447 +sg225230 +S'De vreeselijke avonturen van Scholastica' +p280448 +sg225236 +S'\n' +p280449 +sa(dp280450 +g225232 +S'M.C. Escher' +p280451 +sg225240 +g27 +sg225234 +S'woodcut on thin Japan paper' +p280452 +sg225230 +S'Initial A' +p280453 +sg225236 +S'probably 1932' +p280454 +sa(dp280455 +g225232 +S'M.C. Escher' +p280456 +sg225240 +g27 +sg225234 +S'woodcut on thin Japan paper' +p280457 +sg225230 +S'Initial S' +p280458 +sg225236 +S'probably 1932' +p280459 +sa(dp280460 +g225232 +S'M.C. Escher' +p280461 +sg225240 +g27 +sg225234 +S'woodcut on thin Japan paper' +p280462 +sg225230 +S'Initial S' +p280463 +sg225236 +S'probably 1932' +p280464 +sa(dp280465 +g225232 +S'M.C. Escher' +p280466 +sg225240 +g27 +sg225234 +S'woodcut on thin Japan paper' +p280467 +sg225230 +S'Initial D' +p280468 +sg225236 +S'probably 1932' +p280469 +sa(dp280470 +g225232 +S'M.C. Escher' +p280471 +sg225240 +g27 +sg225234 +S'woodcut on thin Japan paper' +p280472 +sg225230 +S'Initial T' +p280473 +sg225236 +S'probably 1932' +p280474 +sa(dp280475 +g225232 +S'M.C. Escher' +p280476 +sg225240 +g27 +sg225234 +S'woodcut on thin Japan paper' +p280477 +sg225230 +S'Initial H' +p280478 +sg225236 +S'probably 1932' +p280479 +sa(dp280480 +g225232 +S'M.C. Escher' +p280481 +sg225240 +g27 +sg225234 +S'woodcut on thin Japan paper' +p280482 +sg225230 +S'Initial H' +p280483 +sg225236 +S'probably 1932' +p280484 +sa(dp280485 +g225232 +S'M.C. Escher' +p280486 +sg225240 +g27 +sg225234 +S'woodcut on thin Japan paper' +p280487 +sg225230 +S'Initial V' +p280488 +sg225236 +S'probably 1932' +p280489 +sa(dp280490 +g225232 +S'M.C. Escher' +p280491 +sg225240 +g27 +sg225234 +S'woodcut on thin Japan paper' +p280492 +sg225230 +S'Initial V' +p280493 +sg225236 +S'probably 1932' +p280494 +sa(dp280495 +g225232 +S'M.C. Escher' +p280496 +sg225240 +g27 +sg225234 +S'woodcut on thin Japan paper' +p280497 +sg225230 +S'Initial D' +p280498 +sg225236 +S'probably 1932' +p280499 +sa(dp280500 +g225232 +S'M.C. Escher' +p280501 +sg225240 +g27 +sg225234 +S'woodcut on thin Japan paper' +p280502 +sg225230 +S'Initial O' +p280503 +sg225236 +S'probably 1932' +p280504 +sa(dp280505 +g225232 +S'M.C. Escher' +p280506 +sg225240 +g27 +sg225234 +S'woodcut on thin Japan paper' +p280507 +sg225230 +S'Vignette' +p280508 +sg225236 +S'probably 1932' +p280509 +sa(dp280510 +g225232 +S'M.C. Escher' +p280511 +sg225240 +g27 +sg225234 +S'wood engraving' +p280512 +sg225230 +S'San Cosimo' +p280513 +sg225236 +S'1932' +p280514 +sa(dp280515 +g225232 +S'M.C. Escher' +p280516 +sg225240 +g27 +sg225234 +S'lithograph' +p280517 +sg225230 +S'Farmhouse, Ravello' +p280518 +sg225236 +S'1932' +p280519 +sa(dp280520 +g225232 +S'M.C. Escher' +p280521 +sg225240 +g27 +sg225234 +S'lithograph' +p280522 +sg225230 +S'San Cosimo, Ravello' +p280523 +sg225236 +S'1932' +p280524 +sa(dp280525 +g225232 +S'M.C. Escher' +p280526 +sg225240 +g27 +sg225234 +S'wood engraving on thin white laid paper (China?)' +p280527 +sg225230 +S"Porta Maria dell'Ospidale, Ravello" +p280528 +sg225236 +S'1932' +p280529 +sa(dp280530 +g225230 +S'Calanche of Piana, Corsica' +p280531 +sg225232 +S'M.C. Escher' +p280532 +sg225234 +S'wood engraving' +p280533 +sg225236 +S'1934' +p280534 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a00002b7.jpg' +p280535 +sg225240 +g27 +sa(dp280536 +g225232 +S'M.C. Escher' +p280537 +sg225240 +g27 +sg225234 +S'woodcut in black and gray, printed from two blocks' +p280538 +sg225230 +S'Birthday card for J. Greshoff' +p280539 +sg225236 +S'1938' +p280540 +sa(dp280541 +g225232 +S'M.C. Escher' +p280542 +sg225240 +g27 +sg225234 +S'mezzotint and drypoint' +p280543 +sg225230 +S'Eye' +p280544 +sg225236 +S'1946' +p280545 +sa(dp280546 +g225230 +S'Sun and Moon' +p280547 +sg225232 +S'M.C. Escher' +p280548 +sg225234 +S'woodcut in black' +p280549 +sg225236 +S'1948' +p280550 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b3a.jpg' +p280551 +sg225240 +g27 +sa(dp280552 +g225232 +S'M.C. Escher' +p280553 +sg225240 +g27 +sg225234 +S'woodcut in black' +p280554 +sg225230 +S'Sun and Moon' +p280555 +sg225236 +S'1948' +p280556 +sa(dp280557 +g225232 +S'M.C. Escher' +p280558 +sg225240 +g27 +sg225234 +S'woodcut in black' +p280559 +sg225230 +S'Sun and Moon' +p280560 +sg225236 +S'1948' +p280561 +sa(dp280562 +g225232 +S'M.C. Escher' +p280563 +sg225240 +g27 +sg225234 +S'woodcut in black' +p280564 +sg225230 +S'Sun and Moon' +p280565 +sg225236 +S'1948' +p280566 +sa(dp280567 +g225232 +S'M.C. Escher' +p280568 +sg225240 +g27 +sg225234 +S'woodcut in black and gray' +p280569 +sg225230 +S'Sphere Surface with Fish' +p280570 +sg225236 +S'1958' +p280571 +sa(dp280572 +g225232 +S'M.C. Escher' +p280573 +sg225240 +g27 +sg225234 +S'woodcut in black and gold' +p280574 +sg225230 +S'Sphere Surface with Fish' +p280575 +sg225236 +S'1958' +p280576 +sa(dp280577 +g225232 +S'M.C. Escher' +p280578 +sg225240 +g27 +sg225234 +S'woodcut in black and green' +p280579 +sg225230 +S'Knots' +p280580 +sg225236 +S'1965' +p280581 +sa(dp280582 +g225232 +S'Josef Albers' +p280583 +sg225240 +g27 +sg225234 +S'color screenprint' +p280584 +sg225230 +S'Golden Gate' +p280585 +sg225236 +S'1965' +p280586 +sa(dp280587 +g225232 +S'Josef Albers' +p280588 +sg225240 +g27 +sg225234 +S'portfolio with ten screenprints plus statement by the artist' +p280589 +sg225230 +S'Homage to the Square: Soft Edge - Hard Edge' +p280590 +sg225236 +S'published 1965' +p280591 +sa(dp280592 +g225232 +S'Josef Albers' +p280593 +sg225240 +g27 +sg225234 +S'color screenprint' +p280594 +sg225230 +S'Palatial' +p280595 +sg225236 +S'1965' +p280596 +sa(dp280597 +g225232 +S'Josef Albers' +p280598 +sg225240 +g27 +sg225234 +S'color screenprint' +p280599 +sg225230 +S'Nacre' +p280600 +sg225236 +S'1965' +p280601 +sa(dp280602 +g225232 +S'Josef Albers' +p280603 +sg225240 +g27 +sg225234 +S'color screenprint' +p280604 +sg225230 +S'Late' +p280605 +sg225236 +S'1965' +p280606 +sa(dp280607 +g225232 +S'Josef Albers' +p280608 +sg225240 +g27 +sg225234 +S'color screenprint' +p280609 +sg225230 +S'Porta Negra' +p280610 +sg225236 +S'1965' +p280611 +sa(dp280612 +g225232 +S'Josef Albers' +p280613 +sg225240 +g27 +sg225234 +S'color screenprint' +p280614 +sg225230 +S'Emeraude' +p280615 +sg225236 +S'1965' +p280616 +sa(dp280617 +g225232 +S'Josef Albers' +p280618 +sg225240 +g27 +sg225234 +S'color screenprint' +p280619 +sg225230 +S'Profundo' +p280620 +sg225236 +S'1965' +p280621 +sa(dp280622 +g225232 +S'Josef Albers' +p280623 +sg225240 +g27 +sg225234 +S'color screenprint' +p280624 +sg225230 +S'Arctic Bloom' +p280625 +sg225236 +S'1965' +p280626 +sa(dp280627 +g225232 +S'Josef Albers' +p280628 +sg225240 +g27 +sg225234 +S'color screenprint' +p280629 +sg225230 +S'Pending' +p280630 +sg225236 +S'1965' +p280631 +sa(dp280632 +g225232 +S'Josef Albers' +p280633 +sg225240 +g27 +sg225234 +S'color screenprint' +p280634 +sg225230 +S'Arrived' +p280635 +sg225236 +S'1965' +p280636 +sa(dp280637 +g225232 +S'Max Beckmann' +p280638 +sg225240 +g27 +sg225234 +S'gouache on paper mounted on hardboard' +p280639 +sg225230 +S"Pandora's Box" +p280640 +sg225236 +S'1936 and 1947' +p280641 +sa(dp280642 +g225232 +S'June Wayne' +p280643 +sg225240 +g27 +sg225234 +S'lithograph' +p280644 +sg225230 +S'Last Chance' +p280645 +sg225236 +S'1955' +p280646 +sa(dp280647 +g225232 +S'Artist Information (' +p280648 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p280649 +sg225236 +S'(publisher)' +p280650 +sa(dp280651 +g225232 +S'Jasper Johns' +p280652 +sg225240 +g27 +sg225234 +S'color lithograph' +p280653 +sg225230 +S'0 through 9' +p280654 +sg225236 +S'1977' +p280655 +sa(dp280656 +g225232 +S'Jasper Johns' +p280657 +sg225240 +g27 +sg225234 +S'4-color lithograph on La Paloma handmade paper' +p280658 +sg225230 +S'0 through 9' +p280659 +sg225236 +S'1977' +p280660 +sa(dp280661 +g225232 +S'Jasper Johns' +p280662 +sg225240 +g27 +sg225234 +S'color lithograph on La Paloma handmade paper' +p280663 +sg225230 +S'O through 9' +p280664 +sg225236 +S'1977' +p280665 +sa(dp280666 +g225232 +S'Artist Information (' +p280667 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Bull Head I' +p280668 +sg225236 +S'(publisher)' +p280669 +sa(dp280670 +g225232 +S'Artist Information (' +p280671 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Bull Head II' +p280672 +sg225236 +S'(publisher)' +p280673 +sa(dp280674 +g225232 +S'Artist Information (' +p280675 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Bull Head III' +p280676 +sg225236 +S'(publisher)' +p280677 +sa(dp280678 +g225232 +S'Roy Lichtenstein' +p280679 +sg225240 +g27 +sg225234 +S'woodcut on Japanese Hoshi paper' +p280680 +sg225230 +S'Modern Head #1' +p280681 +sg225236 +S'1970' +p280682 +sa(dp280683 +g225232 +S'Artist Information (' +p280684 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Modern Head #2' +p280685 +sg225236 +S'(publisher)' +p280686 +sa(dp280687 +g225232 +S'Artist Information (' +p280688 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Modern Head #3' +p280689 +sg225236 +S'(publisher)' +p280690 +sa(dp280691 +g225232 +S'Roy Lichtenstein' +p280692 +sg225240 +g27 +sg225234 +S'lithograph on engraved and anodized aluminum' +p280693 +sg225230 +S'Modern Head #4' +p280694 +sg225236 +S'1970' +p280695 +sa(dp280696 +g225232 +S'Artist Information (' +p280697 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Modern Head #5' +p280698 +sg225236 +S'(publisher)' +p280699 +sa(dp280700 +g225232 +S'Frank Stella' +p280701 +sg225240 +g27 +sg225234 +S'color screenprint (150 runs from 50 screens) on Arches 88 paper' +p280702 +sg225230 +S'Double Gray Scramble' +p280703 +sg225236 +S'1972/1973' +p280704 +sa(dp280705 +g225232 +S'Artist Information (' +p280706 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Los Alamitos' +p280707 +sg225236 +S'(publisher)' +p280708 +sa(dp280709 +g225230 +S'Woman with a Hat' +p280710 +sg225232 +S'Maurice de Vlaminck' +p280711 +sg225234 +S'oil on canvas' +p280712 +sg225236 +S'1905' +p280713 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000edf.jpg' +p280714 +sg225240 +g27 +sa(dp280715 +g225232 +S'Henri Matisse' +p280716 +sg225240 +g27 +sg225234 +S'pen and black ink' +p280717 +sg225230 +S'Henriette as an Odalisque' +p280718 +sg225236 +S'1922' +p280719 +sa(dp280720 +g225232 +S'Hans Hartung' +p280721 +sg225240 +g27 +sg225234 +S'oil on canvas' +p280722 +sg225230 +S'T.51.6' +p280723 +sg225236 +S'1951' +p280724 +sa(dp280725 +g225230 +S'Wales' +p280726 +sg225232 +S'Helen Frankenthaler' +p280727 +sg225234 +S'acrylic on canvas' +p280728 +sg225236 +S'1966' +p280729 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000c1.jpg' +p280730 +sg225240 +g27 +sa(dp280731 +g225230 +S'Madonna and Child' +p280732 +sg225232 +S'Jan Gossaert' +p280733 +sg225234 +S'oil on panel' +p280734 +sg225236 +S'c. 1532' +p280735 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00005/a00005ab.jpg' +p280736 +sg225240 +g27 +sa(dp280737 +g225232 +S'Artist Information (' +p280738 +sg225240 +g27 +sg225234 +S'(artist after)' +p280739 +sg225230 +S'The Doge in the Bucintoro Leaving San Nicol\xc3\xb2 di Lido' +p280740 +sg225236 +S'\n' +p280741 +sa(dp280742 +g225230 +S'Disputation of Saint Catherine of Alexandria' +p280743 +sg225232 +S'Federico Zuccaro' +p280744 +sg225234 +S'pen and brown ink and brown wash over graphite heightened with white, squared in graphite, on laid paper' +p280745 +sg225236 +S'probably c. 1570' +p280746 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00028/a00028ee.jpg' +p280747 +sg225240 +g27 +sa(dp280748 +g225230 +S'A Young Man Pursued by Death' +p280749 +sg225232 +S'Stefano Della Bella' +p280750 +sg225234 +S'pen and brown, iron gall ink with gray wash over black chalk on laid paper' +p280751 +sg225236 +S'unknown date\n' +p280752 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007470.jpg' +p280753 +sg225240 +g27 +sa(dp280754 +g225230 +S'Two Beggars with Their Dog' +p280755 +sg225232 +S'Paul Troger' +p280756 +sg225234 +S'pen and brown ink on laid paper' +p280757 +sg225236 +S'c. 1728' +p280758 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b9/a000b955.jpg' +p280759 +sg225240 +g27 +sa(dp280760 +g225230 +S'The Departure of Jacob to Egypt' +p280761 +sg225232 +S'Stefano Della Bella' +p280762 +sg225234 +S'etching' +p280763 +sg225236 +S'probably 1647' +p280764 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9b0.jpg' +p280765 +sg225240 +g27 +sa(dp280766 +g225230 +S'Gentleman Seen from Behind' +p280767 +sg225232 +S'Pieter Jansz Quast' +p280768 +sg225234 +S'graphite on vellum' +p280769 +sg225236 +S'1638' +p280770 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072ed.jpg' +p280771 +sg225240 +g27 +sa(dp280772 +g225230 +S'Lady Seen from Behind' +p280773 +sg225232 +S'Pieter Jansz Quast' +p280774 +sg225234 +S'graphite on vellum' +p280775 +sg225236 +S'unknown date\n' +p280776 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072b7.jpg' +p280777 +sg225240 +g27 +sa(dp280778 +g225230 +S'Horses Going to a Fair' +p280779 +sg225232 +S'Th\xc3\xa9odore Gericault' +p280780 +sg225234 +S'lithograph' +p280781 +sg225236 +S'1821' +p280782 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f69.jpg' +p280783 +sg225240 +g27 +sa(dp280784 +g225232 +S'Mark Alan Leithauser' +p280785 +sg225240 +g27 +sg225234 +S'etching' +p280786 +sg225230 +S'Downriver Plant' +p280787 +sg225236 +S'1978' +p280788 +sa(dp280789 +g225230 +S'Anthony Henley' +p280790 +sg225232 +S'Sir Godfrey Kneller' +p280791 +sg225234 +S'black chalk heightened with white chalk on brown laid paper' +p280792 +sg225236 +S'before 1694' +p280793 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072da.jpg' +p280794 +sg225240 +g27 +sa(dp280795 +g225232 +S'Giacomo Balla' +p280796 +sg225240 +g27 +sg225234 +S'brush and black ink over graphite on bristol board' +p280797 +sg225230 +S'Self-Portrait' +p280798 +sg225236 +S'1917' +p280799 +sa(dp280800 +g225232 +S'Henri Laurens' +p280801 +sg225240 +g27 +sg225234 +S'papier coll? [marbled papers] with charcoal and white chalk on brown paperboard' +p280802 +sg225230 +S"L'Instrument de Musique" +p280803 +sg225236 +S'1916' +p280804 +sa(dp280805 +g225230 +S'Jester' +p280806 +sg225232 +S'Pablo Picasso' +p280807 +sg225234 +S'pen and black ink on brown paper' +p280808 +sg225236 +S'1905' +p280809 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a08.jpg' +p280810 +sg225240 +g27 +sa(dp280811 +g225232 +S'Frank Stella' +p280812 +sg225240 +g27 +sg225234 +S'color felt-tip pen (over screenprint in black?)' +p280813 +sg225230 +S'Study for Albany Mall [panel 1]' +p280814 +sg225236 +S'1968' +p280815 +sa(dp280816 +g225232 +S'Frank Stella' +p280817 +sg225240 +g27 +sg225234 +S'color felt-tip pen (over screenprint in black?)' +p280818 +sg225230 +S'Study for Albany Mall [panel 2]' +p280819 +sg225236 +S'1968' +p280820 +sa(dp280821 +g225232 +S'Frank Stella' +p280822 +sg225240 +g27 +sg225234 +S'color felt-tip pen (over screenprint in black?)' +p280823 +sg225230 +S'Study for Albany Mall [panel 3]' +p280824 +sg225236 +S'1968' +p280825 +sa(dp280826 +g225232 +S'Frank Stella' +p280827 +sg225240 +g27 +sg225234 +S'color felt-tip pen (over screenprint in black?)' +p280828 +sg225230 +S'Study for Albany Mall [panel 4]' +p280829 +sg225236 +S'1968' +p280830 +sa(dp280831 +g225230 +S"Portrait of the Artist's Mother" +p280832 +sg225232 +S'Arshile Gorky' +p280833 +sg225234 +S'graphite on paperboard' +p280834 +sg225236 +S'unknown date\n' +p280835 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008e7.jpg' +p280836 +sg225240 +g27 +sa(dp280837 +g225232 +S'Fausta Vittoria Mengarini' +p280838 +sg225240 +g27 +sg225234 +S'bronze' +p280839 +sg225230 +S'David E. Finley' +p280840 +sg225236 +S'1930' +p280841 +sa(dp280842 +g225230 +S'The Penitence of Saint Peter' +p280843 +sg225232 +S'Jusepe de Ribera' +p280844 +sg225234 +S'etching and engraving' +p280845 +sg225236 +S'1621' +p280846 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a00067cd.jpg' +p280847 +sg225240 +g27 +sa(dp280848 +g225232 +S'Artist Information (' +p280849 +sg225240 +g27 +sg225234 +S'(artist after)' +p280850 +sg225230 +S'Baptismi Sacramentum' +p280851 +sg225236 +S'\n' +p280852 +sa(dp280853 +g225232 +S'Artist Information (' +p280854 +sg225240 +g27 +sg225234 +S'(artist after)' +p280855 +sg225230 +S'Poenitentiae Sacramentum' +p280856 +sg225236 +S'\n' +p280857 +sa(dp280858 +g225232 +S'Artist Information (' +p280859 +sg225240 +g27 +sg225234 +S'(artist after)' +p280860 +sg225230 +S'Eucharistiae Sacramentum' +p280861 +sg225236 +S'\n' +p280862 +sa(dp280863 +g225232 +S'Artist Information (' +p280864 +sg225240 +g27 +sg225234 +S'(artist after)' +p280865 +sg225230 +S'Confirmationis Sacramentum' +p280866 +sg225236 +S'\n' +p280867 +sa(dp280868 +g225232 +S'Artist Information (' +p280869 +sg225240 +g27 +sg225234 +S'(artist after)' +p280870 +sg225230 +S'Matrimonii Sacramentum' +p280871 +sg225236 +S'\n' +p280872 +sa(dp280873 +g225232 +S'Artist Information (' +p280874 +sg225240 +g27 +sg225234 +S'(artist after)' +p280875 +sg225230 +S'Ordinis Sacramentum' +p280876 +sg225236 +S'\n' +p280877 +sa(dp280878 +g225232 +S'Artist Information (' +p280879 +sg225240 +g27 +sg225234 +S'(artist after)' +p280880 +sg225230 +S'Extremae Unctionis' +p280881 +sg225236 +S'\n' +p280882 +sa(dp280883 +g225230 +S'Landscape with the Rest on the Flight into Egypt' +p280884 +sg225232 +S'Sebastiano de Valentinis' +p280885 +sg225234 +S'etching' +p280886 +sg225236 +S'unknown date\n' +p280887 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c77b.jpg' +p280888 +sg225240 +g27 +sa(dp280889 +g225230 +S'Trees Profiled against the Sky' +p280890 +sg225232 +S'John Henry Hill' +p280891 +sg225234 +S'watercolor' +p280892 +sg225236 +S'c. 1865' +p280893 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4a6.jpg' +p280894 +sg225240 +g27 +sa(dp280895 +g225230 +S'Soldier Taking Aim [recto]' +p280896 +sg225232 +S'Winslow Homer' +p280897 +sg225234 +S'black and white chalk over graphite on brown wove paper' +p280898 +sg225236 +S'1864' +p280899 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b587.jpg' +p280900 +sg225240 +g27 +sa(dp280901 +g225232 +S'Winslow Homer' +p280902 +sg225240 +g27 +sg225234 +S'charcoal on brown wove paper' +p280903 +sg225230 +S'Skirmish Involving a Wagon Train [verso]' +p280904 +sg225236 +S'1864' +p280905 +sa(dp280906 +g225230 +S'Zouave' +p280907 +sg225232 +S'Winslow Homer' +p280908 +sg225234 +S'black and white chalk on olive-green wove paper' +p280909 +sg225236 +S'1864' +p280910 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000905.jpg' +p280911 +sg225240 +g27 +sa(dp280912 +g225230 +S'Henry Clay' +p280913 +sg225232 +S'Charles Wesley Jarvis' +p280914 +sg225234 +S'graphite with gray wash on wove paper' +p280915 +sg225236 +S'c. 1840' +p280916 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000952.jpg' +p280917 +sg225240 +g27 +sa(dp280918 +g225230 +S'Head of a Young Woman' +p280919 +sg225232 +S'Eastman Johnson' +p280920 +sg225234 +S'charcoal heightened with white chalk on brown wove paper' +p280921 +sg225236 +S'late 1870s' +p280922 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000955.jpg' +p280923 +sg225240 +g27 +sa(dp280924 +g225230 +S"Study of a Woman's Dress" +p280925 +sg225232 +S'John Vanderlyn' +p280926 +sg225234 +S'graphite and black chalk heightened with white chalk on pink wove paper' +p280927 +sg225236 +S'probably c. 1820' +p280928 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4d4.jpg' +p280929 +sg225240 +g27 +sa(dp280930 +g225230 +S"Studies of a Lion's Head" +p280931 +sg225232 +S'Stefano Della Bella' +p280932 +sg225234 +S'pen and brown ink on laid paper' +p280933 +sg225236 +S'unknown date\n' +p280934 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a000746e.jpg' +p280935 +sg225240 +g27 +sa(dp280936 +g225230 +S'Standard Bearer' +p280937 +sg225232 +S'German 16th Century' +p280938 +sg225234 +S'image: 20.2 x 14.5 cm (7 15/16 x 5 11/16 in.)\r\nsheet: 28.1 x 19.7 cm (11 1/16 x 7 3/4 in.)' +p280939 +sg225236 +S'\npen and black ink with gouache and watercolor' +p280940 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a000794b.jpg' +p280941 +sg225240 +g27 +sa(dp280942 +g225230 +S'Memorial Relief (Hand of a Child)' +p280943 +sg225232 +S'Auguste Rodin' +p280944 +sg225234 +S'marble' +p280945 +sg225236 +S'1908' +p280946 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f3d.jpg' +p280947 +sg225240 +g27 +sa(dp280948 +g225230 +S'Haying' +p280949 +sg225232 +S'Grant Wood' +p280950 +sg225234 +S'oil on canvas on paperboard mounted on hardboard' +p280951 +sg225236 +S'1939' +p280952 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000128.jpg' +p280953 +sg225240 +g27 +sa(dp280954 +g225230 +S'New Road' +p280955 +sg225232 +S'Grant Wood' +p280956 +sg225234 +S'oil on canvas on paperboard mounted on hardboard' +p280957 +sg225236 +S'1939' +p280958 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a0000129.jpg' +p280959 +sg225240 +g27 +sa(dp280960 +g225230 +S'Guitar' +p280961 +sg225232 +S'Pablo Picasso' +p280962 +sg225234 +S'collage of wallpaper, carpet tacks, nail, paper, string and charcoal on wood' +p280963 +sg225236 +S'1926' +p280964 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000df0.jpg' +p280965 +sg225240 +g27 +sa(dp280966 +g225230 +S'Saint John the Baptist' +p280967 +sg225232 +S'Hendrick Goltzius' +p280968 +sg225234 +S', probably c. 1588' +p280969 +sg225236 +S'\n' +p280970 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfd2.jpg' +p280971 +sg225240 +g27 +sa(dp280972 +g225230 +S'Saturn' +p280973 +sg225232 +S'Guiseppe Nicolo Vicentino' +p280974 +sg225234 +S', 1525/1530' +p280975 +sg225236 +S'\n' +p280976 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c872.jpg' +p280977 +sg225240 +g27 +sa(dp280978 +g225230 +S'Saturn' +p280979 +sg225232 +S'Artist Information (' +p280980 +sg225234 +S'(artist)' +p280981 +sg225236 +S'\n' +p280982 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c870.jpg' +p280983 +sg225240 +g27 +sa(dp280984 +g225230 +S'Saturn' +p280985 +sg225232 +S'Artist Information (' +p280986 +sg225234 +S'(artist)' +p280987 +sg225236 +S'\n' +p280988 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c871.jpg' +p280989 +sg225240 +g27 +sa(dp280990 +g225230 +S'The Bull (Le taureau)' +p280991 +sg225232 +S'Pablo Picasso' +p280992 +sg225234 +S'lithograph on Arches paper [first state]' +p280993 +sg225236 +S'1945' +p280994 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0001d/a0001df9.jpg' +p280995 +sg225240 +g27 +sa(dp280996 +g225230 +S'The Bull (Le taureau)' +p280997 +sg225232 +S'Pablo Picasso' +p280998 +sg225234 +S'lithograph on Arches paper [second state]' +p280999 +sg225236 +S'1945' +p281000 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0001d/a0001dfa.jpg' +p281001 +sg225240 +g27 +sa(dp281002 +g225230 +S'The Bull (Le taureau)' +p281003 +sg225232 +S'Pablo Picasso' +p281004 +sg225234 +S'lithograph on Arches paper [third state]' +p281005 +sg225236 +S'1945' +p281006 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0001d/a0001dfb.jpg' +p281007 +sg225240 +g27 +sa(dp281008 +g225230 +S'The Bull (Le taureau)' +p281009 +sg225232 +S'Pablo Picasso' +p281010 +sg225234 +S'lithograph on Arches paper [fourth state]' +p281011 +sg225236 +S'1945' +p281012 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0001d/a0001dfc.jpg' +p281013 +sg225240 +g27 +sa(dp281014 +g225230 +S'The Bull (Le taureau)' +p281015 +sg225232 +S'Pablo Picasso' +p281016 +sg225234 +S'lithograph on Arches paper [fifth state]' +p281017 +sg225236 +S'1945' +p281018 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0001d/a0001dfd.jpg' +p281019 +sg225240 +g27 +sa(dp281020 +g225230 +S'The Bull (Le taureau)' +p281021 +sg225232 +S'Pablo Picasso' +p281022 +sg225234 +S'lithograph on Arches paper [sixth state]' +p281023 +sg225236 +S'1945' +p281024 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0001d/a0001dfe.jpg' +p281025 +sg225240 +g27 +sa(dp281026 +g225230 +S'The Bull (Le taureau)' +p281027 +sg225232 +S'Pablo Picasso' +p281028 +sg225234 +S'lithograph on Arches paper [seventh state]' +p281029 +sg225236 +S'1945' +p281030 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0001d/a0001dff.jpg' +p281031 +sg225240 +g27 +sa(dp281032 +g225230 +S'The Bull (Le taureau)' +p281033 +sg225232 +S'Pablo Picasso' +p281034 +sg225234 +S'lithograph on Arches paper [eighth state]' +p281035 +sg225236 +S'1946' +p281036 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e00.jpg' +p281037 +sg225240 +g27 +sa(dp281038 +g225230 +S'The Bull (Le taureau)' +p281039 +sg225232 +S'Pablo Picasso' +p281040 +sg225234 +S'lithograph on Arches paper [ninth state]' +p281041 +sg225236 +S'1946' +p281042 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e16.jpg' +p281043 +sg225240 +g27 +sa(dp281044 +g225230 +S'The Bull (Le taureau)' +p281045 +sg225232 +S'Pablo Picasso' +p281046 +sg225234 +S'lithograph on Arches paper' +p281047 +sg225236 +S'1946' +p281048 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e14.jpg' +p281049 +sg225240 +g27 +sa(dp281050 +g225230 +S'The Bull (Le taureau)' +p281051 +sg225232 +S'Pablo Picasso' +p281052 +sg225234 +S'lithograph on Arches paper' +p281053 +sg225236 +S'1946' +p281054 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e15.jpg' +p281055 +sg225240 +g27 +sa(dp281056 +g225232 +S'Sheigla Hartman' +p281057 +sg225240 +g27 +sg225234 +S'engraving on handmade paper' +p281058 +sg225230 +S'Angie' +p281059 +sg225236 +S'1980' +p281060 +sa(dp281061 +g225230 +S'Fen Monastery' +p281062 +sg225232 +S'F.L. Griggs' +p281063 +sg225234 +S'etching' +p281064 +sg225236 +S'1923/1926' +p281065 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007b/a0007bf9.jpg' +p281066 +sg225240 +g27 +sa(dp281067 +g225230 +S'Bull' +p281068 +sg225232 +S'Paulus Potter' +p281069 +sg225234 +S'etching' +p281070 +sg225236 +S'1650' +p281071 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2c1.jpg' +p281072 +sg225240 +g27 +sa(dp281073 +g225230 +S'A Cow Standing and Another Lying Down' +p281074 +sg225232 +S'Paulus Potter' +p281075 +sg225234 +S'etching' +p281076 +sg225236 +S'1650' +p281077 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2c0.jpg' +p281078 +sg225240 +g27 +sa(dp281079 +g225230 +S'Cow Lying Down near a Fence' +p281080 +sg225232 +S'Paulus Potter' +p281081 +sg225234 +S'etching' +p281082 +sg225236 +S'1650' +p281083 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2bf.jpg' +p281084 +sg225240 +g27 +sa(dp281085 +g225230 +S'Grazing Cow' +p281086 +sg225232 +S'Paulus Potter' +p281087 +sg225234 +S'etching' +p281088 +sg225236 +S'1650' +p281089 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2c3.jpg' +p281090 +sg225240 +g27 +sa(dp281091 +g225230 +S'Standing Cow (Cow with a Crumpled Horn)' +p281092 +sg225232 +S'Paulus Potter' +p281093 +sg225234 +S'etching' +p281094 +sg225236 +S'1650' +p281095 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2c2.jpg' +p281096 +sg225240 +g27 +sa(dp281097 +g225230 +S'Pissing Cow' +p281098 +sg225232 +S'Paulus Potter' +p281099 +sg225234 +S'etching' +p281100 +sg225236 +S'1650' +p281101 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2be.jpg' +p281102 +sg225240 +g27 +sa(dp281103 +g225230 +S'Two Oxen Fighting' +p281104 +sg225232 +S'Paulus Potter' +p281105 +sg225234 +S'etching' +p281106 +sg225236 +S'1650' +p281107 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2bd.jpg' +p281108 +sg225240 +g27 +sa(dp281109 +g225230 +S'Two Cows Seen from Behind' +p281110 +sg225232 +S'Paulus Potter' +p281111 +sg225234 +S'etching' +p281112 +sg225236 +S'1650' +p281113 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2bc.jpg' +p281114 +sg225240 +g27 +sa(dp281115 +g225230 +S'Odysseus and Teiresias' +p281116 +sg225232 +S'Gerrit Pietersz Sweelinck' +p281117 +sg225234 +S'pen and brown ink with brown wash, heightened with white, over black chalk on laid paper' +p281118 +sg225236 +S'unknown date\n' +p281119 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007261.jpg' +p281120 +sg225240 +g27 +sa(dp281121 +g225230 +S'Figures (Christ Calling One of the Apostles?)' +p281122 +sg225232 +S'French 17th Century' +p281123 +sg225234 +S'overall: 21 x 15 cm (8 1/4 x 5 7/8 in.)' +p281124 +sg225236 +S'\nblack chalk with white heightening on blue laid paper' +p281125 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a00071f6.jpg' +p281126 +sg225240 +g27 +sa(dp281127 +g225230 +S'Venus Appearing to Aeneas' +p281128 +sg225232 +S'Antonio Balestra' +p281129 +sg225234 +S'pen and brown ink with brown wash over black chalk on laid paper' +p281130 +sg225236 +S'1713' +p281131 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022a1.jpg' +p281132 +sg225240 +g27 +sa(dp281133 +g225230 +S'Venus Appearing to Achilles' +p281134 +sg225232 +S'Artist Information (' +p281135 +sg225234 +S'(artist after)' +p281136 +sg225236 +S'\n' +p281137 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caf6.jpg' +p281138 +sg225240 +g27 +sa(dp281139 +g225230 +S'The Virgin with the Rose' +p281140 +sg225232 +S'Artist Information (' +p281141 +sg225234 +S'(artist after)' +p281142 +sg225236 +S'\n' +p281143 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9eb.jpg' +p281144 +sg225240 +g27 +sa(dp281145 +g225230 +S'Maid with a Mousetrap' +p281146 +sg225232 +S'Artist Information (' +p281147 +sg225234 +S'(artist after)' +p281148 +sg225236 +S'\n' +p281149 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d691.jpg' +p281150 +sg225240 +g27 +sa(dp281151 +g225230 +S'Apollo on Mount Parnassus' +p281152 +sg225232 +S'Artist Information (' +p281153 +sg225234 +S'(artist after)' +p281154 +sg225236 +S'\n' +p281155 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000831c.jpg' +p281156 +sg225240 +g27 +sa(dp281157 +g225230 +S'Narcissus at the Fountain' +p281158 +sg225232 +S'Artist Information (' +p281159 +sg225234 +S'(artist after)' +p281160 +sg225236 +S'\n' +p281161 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00083/a000831d.jpg' +p281162 +sg225240 +g27 +sa(dp281163 +g225230 +S'The Sleeping Shepherd; Early Morning' +p281164 +sg225232 +S'Samuel Palmer' +p281165 +sg225234 +S'etching on mounted China paper' +p281166 +sg225236 +S'1857' +p281167 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a00079f9.jpg' +p281168 +sg225240 +g27 +sa(dp281169 +g225232 +S'Alfredo M\xc3\xbcller' +p281170 +sg225240 +g27 +sg225234 +S'color lithograph laid down on linen backing' +p281171 +sg225230 +S'Swans' +p281172 +sg225236 +S'c. 1900' +p281173 +sa(dp281174 +g225230 +S"Charles-Rene d'Hozier" +p281175 +sg225232 +S'Artist Information (' +p281176 +sg225234 +S'(artist after)' +p281177 +sg225236 +S'\n' +p281178 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d608.jpg' +p281179 +sg225240 +g27 +sa(dp281180 +g225230 +S'Alcune Prospettive' +p281181 +sg225232 +S'Giuseppe Antonio Landi' +p281182 +sg225234 +S'etching and engraving on laid paper' +p281183 +sg225236 +S'before 1753' +p281184 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cace.jpg' +p281185 +sg225240 +g27 +sa(dp281186 +g225230 +S'Architectural Fantasy with Obelisks, Ruins, and a Piazza' +p281187 +sg225232 +S'Giuseppe Antonio Landi' +p281188 +sg225234 +S'etching and engraving on laid paper' +p281189 +sg225236 +S'before 1753' +p281190 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cacd.jpg' +p281191 +sg225240 +g27 +sa(dp281192 +g225230 +S'Architectural Fantasy with Arched Gateways' +p281193 +sg225232 +S'Giuseppe Antonio Landi' +p281194 +sg225234 +S'etching and engraving on laid paper' +p281195 +sg225236 +S'before 1753' +p281196 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cacc.jpg' +p281197 +sg225240 +g27 +sa(dp281198 +g225230 +S'Fantastic Garden with a Fountain and a Garden Pavilion' +p281199 +sg225232 +S'Giuseppe Antonio Landi' +p281200 +sg225234 +S'etching' +p281201 +sg225236 +S'before 1753' +p281202 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cacb.jpg' +p281203 +sg225240 +g27 +sa(dp281204 +g225230 +S'Architectural Fantasy with Classical Ruins and Vernacular Buildings' +p281205 +sg225232 +S'Giuseppe Antonio Landi' +p281206 +sg225234 +S'etching and engraving on laid paper' +p281207 +sg225236 +S'before 1753' +p281208 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000caca.jpg' +p281209 +sg225240 +g27 +sa(dp281210 +g225230 +S'Fantastic Townscape with Ruins' +p281211 +sg225232 +S'Giuseppe Antonio Landi' +p281212 +sg225234 +S'etching and engraving on laid paper' +p281213 +sg225236 +S'before 1753' +p281214 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cac9.jpg' +p281215 +sg225240 +g27 +sa(dp281216 +g225230 +S'Triumphal Arch in a Landscape' +p281217 +sg225232 +S'Giuseppe Antonio Landi' +p281218 +sg225234 +S'etching and engraving on laid paper' +p281219 +sg225236 +S'before 1753' +p281220 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cac8.jpg' +p281221 +sg225240 +g27 +sa(dp281222 +g225230 +S'Fantastic River Landscape with Ruins and a Castle' +p281223 +sg225232 +S'Giuseppe Antonio Landi' +p281224 +sg225234 +S'etching and engraving on laid paper' +p281225 +sg225236 +S'before 1753' +p281226 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cac7.jpg' +p281227 +sg225240 +g27 +sa(dp281228 +g225230 +S'Architectural Fantasy with a Triumphal Arch' +p281229 +sg225232 +S'Giuseppe Antonio Landi' +p281230 +sg225234 +S'etching and engraving on laid paper' +p281231 +sg225236 +S'before 1753' +p281232 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cac6.jpg' +p281233 +sg225240 +g27 +sa(dp281234 +g225230 +S'Landscape with a Castle and a Drawbridge' +p281235 +sg225232 +S'Giuseppe Antonio Landi' +p281236 +sg225234 +S'etching and engraving on laid paper' +p281237 +sg225236 +S'before 1753' +p281238 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cac5.jpg' +p281239 +sg225240 +g27 +sa(dp281240 +g225230 +S'Architectural Fantasy with Portals and Monuments' +p281241 +sg225232 +S'Giuseppe Antonio Landi' +p281242 +sg225234 +S'etching and engraving on laid paper' +p281243 +sg225236 +S'before 1753' +p281244 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cac4.jpg' +p281245 +sg225240 +g27 +sa(dp281246 +g225230 +S'Architectural Fantasy with a Fountain, Classical Ruins, and a Bridge' +p281247 +sg225232 +S'Giuseppe Antonio Landi' +p281248 +sg225234 +S'etching and engraving on laid paper' +p281249 +sg225236 +S'before 1753' +p281250 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cac3.jpg' +p281251 +sg225240 +g27 +sa(dp281252 +g225230 +S'Architectural Fantasy with Buildings, Stairways, and Portals beside a Canal' +p281253 +sg225232 +S'Giuseppe Antonio Landi' +p281254 +sg225234 +S'etching and engraving on laid paper' +p281255 +sg225236 +S'before 1753' +p281256 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cac2.jpg' +p281257 +sg225240 +g27 +sa(dp281258 +g225230 +S'Shepherds in a Landscape before a Fortified Town' +p281259 +sg225232 +S'Jean-Baptiste Le Prince' +p281260 +sg225234 +S'pen and brown ink with brown wash over graphite on laid paper' +p281261 +sg225236 +S'1777' +p281262 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005ffe.jpg' +p281263 +sg225240 +g27 +sa(dp281264 +g225232 +S'Artist Information (' +p281265 +sg225240 +g27 +sg225234 +S'(artist)' +p281266 +sg225230 +S"Metamorphoses d'Ovide en rondeaux" +p281267 +sg225236 +S'\n' +p281268 +sa(dp281269 +g225230 +S'Q' +p281270 +sg225232 +S'L\xc3\xa1szl\xc3\xb3 Moholy-Nagy' +p281271 +sg225234 +S'collage with watercolor and pen and black ink over graphite on carbon paper' +p281272 +sg225236 +S'1922/1923' +p281273 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00054/a00054ab.jpg' +p281274 +sg225240 +g27 +sa(dp281275 +g225232 +S'William Kienbusch' +p281276 +sg225240 +g27 +sg225234 +S'watercolor over graphite' +p281277 +sg225230 +S'Landscape with Houses' +p281278 +sg225236 +S'probably 1936' +p281279 +sa(dp281280 +g225230 +S'Vulcan and the Cyclopes Forging Arrows' +p281281 +sg225232 +S'Artist Information (' +p281282 +sg225234 +S'(artist after)' +p281283 +sg225236 +S'\n' +p281284 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b255.jpg' +p281285 +sg225240 +g27 +sa(dp281286 +g225232 +S'Max Pechstein' +p281287 +sg225240 +g27 +sg225234 +S'brush and black ink with gray wash on brown paper' +p281288 +sg225230 +S'Horses in a Landscape' +p281289 +sg225236 +S'1924' +p281290 +sa(dp281291 +g225232 +S'Max Pechstein' +p281292 +sg225240 +g27 +sg225234 +S'drypoint and roulette on wove paper' +p281293 +sg225230 +S'Heidenstamm I' +p281294 +sg225236 +S'1918' +p281295 +sa(dp281296 +g225230 +S'Hans Holbein the Younger' +p281297 +sg225232 +S'Artist Information (' +p281298 +sg225234 +S'(artist after)' +p281299 +sg225236 +S'\n' +p281300 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d899.jpg' +p281301 +sg225240 +g27 +sa(dp281302 +g225232 +S'French 18th Century' +p281303 +sg225240 +g27 +sg225234 +S'Gift of Mr. Robert H. Thayer' +p281304 +sg225230 +S'Maps of Paris' +p281305 +sg225236 +S'\nbound volume with 8 hand-colored engravings' +p281306 +sa(dp281307 +g225232 +S'Claude Lucas' +p281308 +sg225240 +g27 +sg225234 +S'1 vol: ill: 20 engravings on laid paper' +p281309 +sg225230 +S'Plan of Paris - The Turgot Plan' +p281310 +sg225236 +S'1734/1739' +p281311 +sa(dp281312 +g225232 +S'Helen Phillips' +p281313 +sg225240 +g27 +sg225234 +S'etching (liquid ground applied with brush)' +p281314 +sg225230 +S'Flux' +p281315 +sg225236 +S'1976' +p281316 +sa(dp281317 +g225232 +S'Robert Rauschenberg' +p281318 +sg225240 +g27 +sg225234 +S'offset lithograph' +p281319 +sg225230 +S'Commemorative Artwork' +p281320 +sg225236 +S'1981' +p281321 +sa(dp281322 +g225232 +S'William Chapin Seitz' +p281323 +sg225240 +g27 +sg225234 +S'oil on canvas' +p281324 +sg225230 +S'Millstone #1' +p281325 +sg225236 +S'1956' +p281326 +sa(dp281327 +g225230 +S'Camera Obscura' +p281328 +sg225232 +S'Bruce Conner' +p281329 +sg225234 +S'mixed media' +p281330 +sg225236 +S'c. 1962' +p281331 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a00016cf.jpg' +p281332 +sg225240 +g27 +sa(dp281333 +g225230 +S'La Ricordanza' +p281334 +sg225232 +S'Joseph Cornell' +p281335 +sg225234 +S'mixed media (metal on wood)' +p281336 +sg225236 +S'1964' +p281337 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a0001660.jpg' +p281338 +sg225240 +g27 +sa(dp281339 +g225232 +S'Ren\xc3\xa9 Magritte' +p281340 +sg225240 +g27 +sg225234 +S'graphite on wove paper' +p281341 +sg225230 +S'The Rape' +p281342 +sg225236 +S'1966' +p281343 +sa(dp281344 +g225232 +S'Max Ernst' +p281345 +sg225240 +g27 +sg225234 +S'oil on canvas' +p281346 +sg225230 +S'A Moment of Calm' +p281347 +sg225236 +S'1939' +p281348 +sa(dp281349 +g225230 +S'Jarama II' +p281350 +sg225232 +S'Frank Stella' +p281351 +sg225234 +S'mixed media on etched magnesium' +p281352 +sg225236 +S'1982' +p281353 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000226.jpg' +p281354 +sg225240 +g27 +sa(dp281355 +g225230 +S'Still Life with Dead Game' +p281356 +sg225232 +S'Willem van Aelst' +p281357 +sg225234 +S'oil on canvas' +p281358 +sg225236 +S'1661' +p281359 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e7a.jpg' +p281360 +sg225240 +S"Still lifes with hunting motifs became popular in Dutch art in the latter part\nof the seventeenth century, at a time when Dutch society grew wealthier and more\nrefined. One of the most important artists in this tradition was Willem van Aelst,\nwho came from Delft but trained and worked for a number of years in France and Italy.\n Van Aelst depicted a number of dead animals hanging above and resting upon a stone\nledge on which a blue and gold hunter's game pouch lies. The animals were painted\nvery precisely, and most of them can be identified. Aside from the large European\nhare and roosters are a partridge, kingfisher, and common wheatear. Also visible\nare two falconer's hoods, perhaps to indicate the nature of the hunt.\n That Van Aelst's painting was intended to represent the general theme of the hunt\nrather than the spoils of a specific hunt is evident from the relief depicting Diana\nand Actaeon on the front of the stone ledge. This popular story from Ovid's \n " +p281361 +sa(dp281362 +g225230 +S'The Resurrection' +p281363 +sg225232 +S'Pietro Testa' +p281364 +sg225234 +S'pen and brown ink over black chalk' +p281365 +sg225236 +S'early 1640s' +p281366 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074d5.jpg' +p281367 +sg225240 +g27 +sa(dp281368 +g225230 +S'The Resurrection' +p281369 +sg225232 +S'Artist Information (' +p281370 +sg225234 +S'(artist after)' +p281371 +sg225236 +S'\n' +p281372 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dbf.jpg' +p281373 +sg225240 +g27 +sa(dp281374 +g225230 +S'Self-Portrait' +p281375 +sg225232 +S'Dirk Helmbreker' +p281376 +sg225234 +S'red chalk' +p281377 +sg225236 +S'unknown date\n' +p281378 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00025/a0002554.jpg' +p281379 +sg225240 +g27 +sa(dp281380 +g225230 +S'A Capriccio of Roman Ruins' +p281381 +sg225232 +S'Marco Ricci' +p281382 +sg225234 +S'gouache on kidskin' +p281383 +sg225236 +S'1720s' +p281384 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00026/a00026ef.jpg' +p281385 +sg225240 +g27 +sa(dp281386 +g225230 +S'The Adoration of the Shepherds' +p281387 +sg225232 +S'Giovanni Battista Tiepolo' +p281388 +sg225234 +S'pen and brown ink with brown wash over black chalk on laid paper' +p281389 +sg225236 +S'1735/1740' +p281390 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00028/a000285d.jpg' +p281391 +sg225240 +g27 +sa(dp281392 +g225230 +S'Dionysian Revelers' +p281393 +sg225232 +S'Elihu Vedder' +p281394 +sg225234 +S'charcoal and white chalk on green paper' +p281395 +sg225236 +S'unknown date\n' +p281396 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a00009ea.jpg' +p281397 +sg225240 +g27 +sa(dp281398 +g225230 +S'The Prodigal Son Bids Farewell to his Father' +p281399 +sg225232 +S'Abraham Bosse' +p281400 +sg225234 +S'engraving' +p281401 +sg225236 +S'unknown date\n' +p281402 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a62.jpg' +p281403 +sg225240 +g27 +sa(dp281404 +g225230 +S'The Prodigal Son in a House of Ill-Repute' +p281405 +sg225232 +S'Abraham Bosse' +p281406 +sg225234 +S'engraving' +p281407 +sg225236 +S'unknown date\n' +p281408 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a5f.jpg' +p281409 +sg225240 +g27 +sa(dp281410 +g225230 +S'The Prodigal Son as a Swineherd' +p281411 +sg225232 +S'Abraham Bosse' +p281412 +sg225234 +S'engraving' +p281413 +sg225236 +S'unknown date\n' +p281414 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a61.jpg' +p281415 +sg225240 +g27 +sa(dp281416 +g225230 +S'The Prodigal Son Received by his Father' +p281417 +sg225232 +S'Abraham Bosse' +p281418 +sg225234 +S'engraving' +p281419 +sg225236 +S'unknown date\n' +p281420 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a5e.jpg' +p281421 +sg225240 +g27 +sa(dp281422 +g225230 +S"The Prodigal Son's Father Orders the Best Robe and the Slaughter of the Fatted Calf" +p281423 +sg225232 +S'Abraham Bosse' +p281424 +sg225234 +S'engraving' +p281425 +sg225236 +S'unknown date\n' +p281426 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a5d.jpg' +p281427 +sg225240 +g27 +sa(dp281428 +g225230 +S'The Feast Celebrating the Return of the Prodigal Son' +p281429 +sg225232 +S'Abraham Bosse' +p281430 +sg225234 +S'engraving' +p281431 +sg225236 +S'unknown date\n' +p281432 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a63.jpg' +p281433 +sg225240 +g27 +sa(dp281434 +g225230 +S'The Prodigal Son Bids Farewell to His Father' +p281435 +sg225232 +S'Artist Information (' +p281436 +sg225234 +S'(artist after)' +p281437 +sg225236 +S'\n' +p281438 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d44c.jpg' +p281439 +sg225240 +g27 +sa(dp281440 +g225230 +S'The Prodigal Son Receiving His Patrimony' +p281441 +sg225232 +S'Artist Information (' +p281442 +sg225234 +S'(artist after)' +p281443 +sg225236 +S'\n' +p281444 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d44b.jpg' +p281445 +sg225240 +g27 +sa(dp281446 +g225230 +S'The Prodigal Wasting His Substance in the Tavern' +p281447 +sg225232 +S'Artist Information (' +p281448 +sg225234 +S'(artist after)' +p281449 +sg225236 +S'\n' +p281450 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d44d.jpg' +p281451 +sg225240 +g27 +sa(dp281452 +g225230 +S'The Prodigal Son Driven from the Tavern' +p281453 +sg225232 +S'Artist Information (' +p281454 +sg225234 +S'(artist after)' +p281455 +sg225236 +S'\n' +p281456 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d44e.jpg' +p281457 +sg225240 +g27 +sa(dp281458 +g225230 +S'The Prodigal Son among the Swine' +p281459 +sg225232 +S'Artist Information (' +p281460 +sg225234 +S'(artist after)' +p281461 +sg225236 +S'\n' +p281462 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d44f.jpg' +p281463 +sg225240 +g27 +sa(dp281464 +g225230 +S'The Prodigal Son Received by His Father' +p281465 +sg225232 +S'Artist Information (' +p281466 +sg225234 +S'(artist after)' +p281467 +sg225236 +S'\n' +p281468 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d450.jpg' +p281469 +sg225240 +g27 +sa(dp281470 +g225230 +S'The Virgin with the Rose' +p281471 +sg225232 +S'Artist Information (' +p281472 +sg225234 +S'(artist after)' +p281473 +sg225236 +S'\n' +p281474 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9ea.jpg' +p281475 +sg225240 +g27 +sa(dp281476 +g225232 +S'French 17th Century' +p281477 +sg225240 +g27 +sg225234 +S'Ailsa Mellon Bruce Fund' +p281478 +sg225230 +S'Concert royal des muses' +p281479 +sg225236 +S'\nengraving' +p281480 +sa(dp281481 +g225230 +S'Saint George and the Dragon' +p281482 +sg225232 +S'Raphael' +p281483 +sg225234 +S'brush and brown ink heightened with white over black chalk, incised with stylus' +p281484 +sg225236 +S'unknown date\n' +p281485 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a000757f.jpg' +p281486 +sg225240 +g27 +sa(dp281487 +g225230 +S'Path through a Wheat Field (Sentier dans les bles)' +p281488 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p281489 +sg225234 +S'cliche-verre' +p281490 +sg225236 +S'1862' +p281491 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00097/a00097f5.jpg' +p281492 +sg225240 +g27 +sa(dp281493 +g225230 +S'La Vieille aux Loques' +p281494 +sg225232 +S'James McNeill Whistler' +p281495 +sg225234 +S'etching and drypoint on blue paper' +p281496 +sg225236 +S'1858' +p281497 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9d2.jpg' +p281498 +sg225240 +g27 +sa(dp281499 +g225232 +S'Wenceslaus Hollar' +p281500 +sg225240 +g27 +sg225234 +S'pen and brown ink with watercolor over black chalkon two joined sheets of laid paper' +p281501 +sg225230 +S'Cape Spartell from the West' +p281502 +sg225236 +S'1669/1670' +p281503 +sa(dp281504 +g225230 +S'Christ Driving the Money Changers from the Temple' +p281505 +sg225232 +S'Rembrandt van Rijn' +p281506 +sg225234 +S'etching' +p281507 +sg225236 +S'1635' +p281508 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2e8.jpg' +p281509 +sg225240 +g27 +sa(dp281510 +g225230 +S'The Triumph of Mars' +p281511 +sg225232 +S'Artist Information (' +p281512 +sg225234 +S'(artist after)' +p281513 +sg225236 +S'\n' +p281514 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc43.jpg' +p281515 +sg225240 +g27 +sa(dp281516 +g225230 +S'Thesis' +p281517 +sg225232 +S'Artist Information (' +p281518 +sg225234 +S'(artist after)' +p281519 +sg225236 +S'\n' +p281520 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca22.jpg' +p281521 +sg225240 +g27 +sa(dp281522 +g225230 +S'O douleur!... avoir r\xc3\xaav\xc3\xa9... un \xc3\xa9poux...' +p281523 +sg225232 +S'Honor\xc3\xa9 Daumier' +p281524 +sg225234 +S'lithograph' +p281525 +sg225236 +S'1844' +p281526 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00093/a000931b.jpg' +p281527 +sg225240 +g27 +sa(dp281528 +g225230 +S'Promenade du Boeuf gras' +p281529 +sg225232 +S'Honor\xc3\xa9 Daumier' +p281530 +sg225234 +S'lithograph' +p281531 +sg225236 +S'1839' +p281532 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a0009243.jpg' +p281533 +sg225240 +g27 +sa(dp281534 +g225230 +S'Une Repr\xc3\xa9sentation a b\xc3\xa9n\xc3\xa9fice' +p281535 +sg225232 +S'Honor\xc3\xa9 Daumier' +p281536 +sg225234 +S'lithograph' +p281537 +sg225236 +S'1844' +p281538 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00092/a00092d3.jpg' +p281539 +sg225240 +g27 +sa(dp281540 +g225230 +S'The Empty Jug' +p281541 +sg225232 +S'Adriaen van Ostade' +p281542 +sg225234 +S'etching' +p281543 +sg225236 +S'probably 1653' +p281544 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d28f.jpg' +p281545 +sg225240 +g27 +sa(dp281546 +g225230 +S'Head of an Old Woman' +p281547 +sg225232 +S'Nicolas-Toussaint Charlet' +p281548 +sg225234 +S'lithograph on chine applique' +p281549 +sg225236 +S'unknown date\n' +p281550 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009836.jpg' +p281551 +sg225240 +g27 +sa(dp281552 +g225230 +S"Veduta della Girandola a Castel Sant'Angelo (Fireworks Display over the Castle Sant'A" +p281553 +sg225232 +S'Adrien Manglard' +p281554 +sg225234 +S'etching with touches of engraving and burnishing' +p281555 +sg225236 +S'1750/1752' +p281556 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f0e.jpg' +p281557 +sg225240 +g27 +sa(dp281558 +g225230 +S'Grenadier' +p281559 +sg225232 +S'Horace Vernet' +p281560 +sg225234 +S'lithograph' +p281561 +sg225236 +S'1817' +p281562 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091c2.jpg' +p281563 +sg225240 +g27 +sa(dp281564 +g225230 +S'The Raising of Lazarus' +p281565 +sg225232 +S'Artist Information (' +p281566 +sg225234 +S'(artist after)' +p281567 +sg225236 +S'\n' +p281568 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d61c.jpg' +p281569 +sg225240 +g27 +sa(dp281570 +g225230 +S'Edge of a Wood with Peasants Going to Market' +p281571 +sg225232 +S'Jean Morin' +p281572 +sg225234 +S'etching' +p281573 +sg225236 +S'unknown date\n' +p281574 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b534.jpg' +p281575 +sg225240 +g27 +sa(dp281576 +g225230 +S'Hilly Landscape with Travelers on Foot' +p281577 +sg225232 +S'Jean Morin' +p281578 +sg225234 +S'etching' +p281579 +sg225236 +S'unknown date\n' +p281580 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b527.jpg' +p281581 +sg225240 +g27 +sa(dp281582 +g225230 +S'Edge of a Wood with Travelers in a Carriage' +p281583 +sg225232 +S'Jean Morin' +p281584 +sg225234 +S'etching' +p281585 +sg225236 +S'unknown date\n' +p281586 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b525.jpg' +p281587 +sg225240 +g27 +sa(dp281588 +g225230 +S'View in Normandy (Vue prise en Normandie)' +p281589 +sg225232 +S'Jules Dupr\xc3\xa9' +p281590 +sg225234 +S'lithograph' +p281591 +sg225236 +S'1835' +p281592 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00095/a00095cb.jpg' +p281593 +sg225240 +g27 +sa(dp281594 +g225230 +S'Sacramento Mall Proposal #4' +p281595 +sg225232 +S'Frank Stella' +p281596 +sg225234 +S'acrylic on canvas' +p281597 +sg225236 +S'1978' +p281598 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000227.jpg' +p281599 +sg225240 +g27 +sa(dp281600 +g225230 +S'Untitled (Medici Prince)' +p281601 +sg225232 +S'Joseph Cornell' +p281602 +sg225234 +S'mixed media' +p281603 +sg225236 +S'c. 1953' +p281604 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a0001661.jpg' +p281605 +sg225240 +g27 +sa(dp281606 +g225230 +S'Seapiece: Off the French Coast' +p281607 +sg225232 +S'Richard Parkes Bonington' +p281608 +sg225234 +S'oil on canvas' +p281609 +sg225236 +S'c. 1823/1824' +p281610 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00005/a0000526.jpg' +p281611 +sg225240 +g27 +sa(dp281612 +g225230 +S'Aria de Bach' +p281613 +sg225232 +S'Georges Braque' +p281614 +sg225234 +S'collage (black paper, imitation wood-grain paper) with charcoal and white chalk on white paper' +p281615 +sg225236 +S'1913' +p281616 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00020/a0002023.jpg' +p281617 +sg225240 +g27 +sa(dp281618 +g225232 +S'Martin Schongauer' +p281619 +sg225240 +g27 +sg225234 +S'pen and brown ink on laid paper' +p281620 +sg225230 +S'Young Woman Wearing a Scarf' +p281621 +sg225236 +S'unknown date\n' +p281622 +sa(dp281623 +g225230 +S'Second View of the Agrigento Countryside' +p281624 +sg225232 +S'Claude-Louis Ch\xc3\xa2telet' +p281625 +sg225234 +S'pen and brown and black ink with watercolor and gray wash over graphite on laid paper, with a partial framing line in brown and gray ink' +p281626 +sg225236 +S'1778' +p281627 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f9f.jpg' +p281628 +sg225240 +g27 +sa(dp281629 +g225230 +S'Geometrical Elevation of the Peace Plaza and Fa\xc3\xa7ade of the Opera House' +p281630 +sg225232 +S'Giacomo Quarenghi' +p281631 +sg225234 +S'pen and black ink with watercolor on laid paper' +p281632 +sg225236 +S'c. 1800' +p281633 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00026/a00026dc.jpg' +p281634 +sg225240 +g27 +sa(dp281635 +g225232 +S'Artist Information (' +p281636 +sg225240 +g27 +sg225234 +S'French, 1653 - 1728' +p281637 +sg225230 +S'Les Edifices Antiques de Rome Dessines ...' +p281638 +sg225236 +S'(author)' +p281639 +sa(dp281640 +g225232 +S'Artist Information (' +p281641 +sg225240 +g27 +sg225234 +S'(artist)' +p281642 +sg225230 +S"Narrative, of a Five Years' Expedition, against the Revolted Negroes ... (volume I)" +p281643 +sg225236 +S'\n' +p281644 +sa(dp281645 +g225232 +S'Artist Information (' +p281646 +sg225240 +g27 +sg225234 +S'(artist)' +p281647 +sg225230 +S"Narrative, of a Five Years' Expedition, against the Revolted Negroes ... (volume II)" +p281648 +sg225236 +S'\n' +p281649 +sa(dp281650 +g225232 +S'Artist Information (' +p281651 +sg225240 +g27 +sg225234 +S'(artist after)' +p281652 +sg225230 +S'Life of William Blake with Selections from His Poems and other Writings (volume I)' +p281653 +sg225236 +S'\n' +p281654 +sa(dp281655 +g225232 +S'Artist Information (' +p281656 +sg225240 +g27 +sg225234 +S'(artist after)' +p281657 +sg225230 +S'Life of William Blake with Selections from His Poems and other Writings (volume II)' +p281658 +sg225236 +S'\n' +p281659 +sa(dp281660 +g225232 +S'Jean-Louis Gampert' +p281661 +sg225240 +g27 +sg225234 +S'graphite, squared, on laid paper' +p281662 +sg225230 +S'Henri Louis Mermod' +p281663 +sg225236 +S'1927' +p281664 +sa(dp281665 +g225230 +S'Old Woman Seated' +p281666 +sg225232 +S'Artist Information (' +p281667 +sg225234 +S'(artist after)' +p281668 +sg225236 +S'\n' +p281669 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089eb.jpg' +p281670 +sg225240 +g27 +sa(dp281671 +g225230 +S'Ruins of an Aquaduct' +p281672 +sg225232 +S'Artist Information (' +p281673 +sg225234 +S'(artist after)' +p281674 +sg225236 +S'\n' +p281675 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089e9.jpg' +p281676 +sg225240 +g27 +sa(dp281677 +g225230 +S'Ruins of an Aquaduct' +p281678 +sg225232 +S'Artist Information (' +p281679 +sg225234 +S'(artist after)' +p281680 +sg225236 +S'\n' +p281681 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00089/a00089ea.jpg' +p281682 +sg225240 +g27 +sa(dp281683 +g225230 +S'Au Quartier Latin' +p281684 +sg225232 +S'Jules Ch\xc3\xa9ret' +p281685 +sg225234 +S'color lithograph' +p281686 +sg225236 +S'1894' +p281687 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091a5.jpg' +p281688 +sg225240 +g27 +sa(dp281689 +g225230 +S'Saint-Pierre Stream near Pierrefond (Ruisseaude Saint-Pierre, pres Pierrefond)' +p281690 +sg225232 +S'Paul Huet' +p281691 +sg225234 +S'etching' +p281692 +sg225236 +S'1842' +p281693 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009ac7.jpg' +p281694 +sg225240 +g27 +sa(dp281695 +g225232 +S'Edgar Chahine' +p281696 +sg225240 +g27 +sg225234 +S'etching, drypoint, and aquatint' +p281697 +sg225230 +S'Lerand in the Role of Rodin in "The Wandering Jew"' +p281698 +sg225236 +S'1903' +p281699 +sa(dp281700 +g225232 +S'Edgar Chahine' +p281701 +sg225240 +g27 +sg225234 +S'drypoint' +p281702 +sg225230 +S'Sans Travail' +p281703 +sg225236 +S'1903' +p281704 +sa(dp281705 +g225232 +S'Raphael Soyer' +p281706 +sg225240 +g27 +sg225234 +S'lithograph' +p281707 +sg225230 +S'Self-Portrait' +p281708 +sg225236 +S'1982' +p281709 +sa(dp281710 +g225232 +S'William Kienbusch' +p281711 +sg225240 +g27 +sg225234 +S'casein' +p281712 +sg225230 +S'Summertime' +p281713 +sg225236 +S'1962' +p281714 +sa(dp281715 +g225232 +S'Francisca Sutil' +p281716 +sg225240 +g27 +sg225234 +S'dyed handmade paper' +p281717 +sg225230 +S'Untitled' +p281718 +sg225236 +S'1981' +p281719 +sa(dp281720 +g225230 +S'Harpocrates' +p281721 +sg225232 +S'Jan Muller' +p281722 +sg225234 +S'engraving' +p281723 +sg225236 +S'1593' +p281724 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d61b.jpg' +p281725 +sg225240 +g27 +sa(dp281726 +g225230 +S'Guitarist in an Armchair' +p281727 +sg225232 +S'Pablo Picasso' +p281728 +sg225234 +S'etching' +p281729 +sg225236 +S'1911-1912' +p281730 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00068/a0006864.jpg' +p281731 +sg225240 +g27 +sa(dp281732 +g225230 +S"Man with a Dog (L'homme au chien)" +p281733 +sg225232 +S'Pablo Picasso' +p281734 +sg225234 +S'etching in black on laid paper' +p281735 +sg225236 +S'1915' +p281736 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee27.jpg' +p281737 +sg225240 +g27 +sa(dp281738 +g225230 +S"Man with a Dog (L'homme au chien)" +p281739 +sg225232 +S'Artist Information (' +p281740 +sg225234 +S'French, active first half 20th century' +p281741 +sg225236 +S'(printer)' +p281742 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee24.jpg' +p281743 +sg225240 +g27 +sa(dp281744 +g225230 +S'Persephone' +p281745 +sg225232 +S'Hendrick Goltzius' +p281746 +sg225234 +S', 1588/1590' +p281747 +sg225236 +S'\n' +p281748 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f31.jpg' +p281749 +sg225240 +g27 +sa(dp281750 +g225230 +S'Footpaths and Pavilion in the Dresden Grosser Garten' +p281751 +sg225232 +S'Ernst Ludwig Kirchner' +p281752 +sg225234 +S'black crayon on brown wove paper' +p281753 +sg225236 +S'c. 1909' +p281754 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a0007925.jpg' +p281755 +sg225240 +g27 +sa(dp281756 +g225230 +S'The Bower' +p281757 +sg225232 +S'Antoine Watteau' +p281758 +sg225234 +S'red chalk and red chalk counterproof on laid paper' +p281759 +sg225236 +S'c. 1716' +p281760 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00028/a00028e4.jpg' +p281761 +sg225240 +g27 +sa(dp281762 +g225230 +S'Cattleya Orchid and Three Hummingbirds' +p281763 +sg225232 +S'Martin Johnson Heade' +p281764 +sg225234 +S'oil on wood' +p281765 +sg225236 +S'1871' +p281766 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000ea.jpg' +p281767 +sg225240 +S"Heade offered viewers an intimate glimpse into the exotic recesses of nature's\nsecret garden. Lichen covers dead branches; moss drips from trees; and, a blue-gray\nmist veils the distant jungle. An opulent pink orchid with light-green stems and\npods dominates the left foreground. To the right, perched near a nest on a branch,\nare a Sappho Comet, green with a yellow throat and brilliant red tail feathers,\nand two green-and-pink Brazilian Amethysts.\n Perhaps inspired by the writings of Charles Darwin, the artist studied these subjects in\nthe wild during several expeditions to South America. The precisely rendered flora\nand fauna seem alive in their natural habitat, not mere specimens for scientific\nanalysis. Defying strict categorization as either still life or landscape, Heade's\nwork reflects the artist's unerring attention to detail and his delight in the infinitesimal\njoys of nature.\n " +p281768 +sa(dp281769 +g225230 +S'The Procession to Calvary' +p281770 +sg225232 +S'Flemish 16th Century' +p281771 +sg225234 +S'overall: 310.5 x 363.9 cm (122 1/4 x 143 1/4 in.)' +p281772 +sg225236 +S'\ntapestry: undyed wool warp; dyed wool, silk, and silver-wrapped silk weft' +p281773 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00063/a00063a6.jpg' +p281774 +sg225240 +g27 +sa(dp281775 +g225230 +S'Masked Ball at the Opera' +p281776 +sg225232 +S'Edouard Manet' +p281777 +sg225234 +S'oil on canvas' +p281778 +sg225236 +S'1873' +p281779 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a0000685.jpg' +p281780 +sg225240 +S'As its title suggests, \n There is a frankly sexual character to\r\nthe encounters between the scantily clad\r\nmembers of the Parisian demimonde\r\nand the well-dressed upper-class men\r\nportrayed here. Although the painting\r\ndepicts a masked ball, none of the men\r\nwear masks and only one—presumably it\r\nis a man dressed in the garish silks of the\r\nclown Polichinelle at the far left—appears\r\nin costume. Manet focused instead on the\r\ndramatic juxtaposition of the men in somber\r\nblack evening attire and silk top hats,\r\nand the more fancifully garbed women with\r\ntheir brightly colored stockings, dainty\r\nshoes, and other feminine accoutrements.\r\nIn contrast to their male counterparts,\r\nall but one of the women are masked, a\r\ntoken gesture of propriety. Only the girl\r\ndressed in a pair of silk soldier breeches\r\nstanding just left of center reveals her face,\r\nflaunting her identity—along with the\r\nbare flesh of her arms and calves—for all\r\nto see. She flirts unabashedly with a male\r\ncompanion, smiling up at him and resting\r\none hand suggestively against his chest\r\nwhile his gloved hand cradles her other\r\narm, perhaps to pull her into an embrace.\r\nOn the floor nearby is a black silk mask,\r\nabandoned by a partygoer (presumably\r\nthis young woman) who has cast discretion\r\naside, along with part of her costume.\n Masked Ball at the Opera\n (Text by Kimberly Jones, \n Notes\n \n ' +p281781 +sa(dp281782 +g225230 +S'Club Night' +p281783 +sg225232 +S'George Bellows' +p281784 +sg225234 +S'oil on canvas' +p281785 +sg225236 +S'1907' +p281786 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a000001e.jpg' +p281787 +sg225240 +g27 +sa(dp281788 +g225230 +S'Coast near Antibes' +p281789 +sg225232 +S'Henri Edmond Cross' +p281790 +sg225234 +S'oil on canvas' +p281791 +sg225236 +S'1891/1892' +p281792 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006d0.jpg' +p281793 +sg225240 +g27 +sa(dp281794 +g225230 +S'Charing Cross Bridge, London' +p281795 +sg225232 +S'Andr\xc3\xa9 Derain' +p281796 +sg225234 +S'oil on canvas' +p281797 +sg225236 +S'1906' +p281798 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000eaf.jpg' +p281799 +sg225240 +g27 +sa(dp281800 +g225230 +S'Mountains at Collioure' +p281801 +sg225232 +S'Andr\xc3\xa9 Derain' +p281802 +sg225234 +S'oil on canvas' +p281803 +sg225236 +S'1905' +p281804 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dfa.jpg' +p281805 +sg225240 +g27 +sa(dp281806 +g225230 +S'Baby at Play' +p281807 +sg225232 +S'Thomas Eakins' +p281808 +sg225234 +S'oil on canvas' +p281809 +sg225236 +S'1876' +p281810 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000092.jpg' +p281811 +sg225240 +S"Baby at Play\n According to one recent interpretation, Eakins was depicting Ella's initial foray into the adult world of education and learning. Having temporarily cast aside her more infantile toys in favor of alphabet blocks—the tools of language—the child now seems ready to enter the next critical stage in her intellectual development.\n The monumentality of her painted form may seem surprising, considering the diminutive stature of Eakins' model. Her life–sized figure is arranged in a stable pyramidal block at the composition's center and the deft handling of light and shadow further emphasizes spatial volume. Eakins' choice of a lowered vantage point encourages the spectator to adopt a child's point of view. His penetrating psychological insight elevates this picture from a sentimental genre scene to a highly serious portrayal of an earnest, intelligent child.\n " +p281812 +sa(dp281813 +g225230 +S'Cape Cod Evening' +p281814 +sg225232 +S'Edward Hopper' +p281815 +sg225234 +S'oil on canvas' +p281816 +sg225236 +S'1939' +p281817 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d83.jpg' +p281818 +sg225240 +S'"My aim in painting," explained Edward Hopper, "has always been the most exact\ntranscription possible of my most intimate impressions of nature." Claiming the\nfigures in \n Despite his matter-of-fact account, Hopper also has endowed this ostensibly straightforward\nwork with a strong, albeit ambiguous, emotional undercurrent. The sense of eerie\ncalm is due, in part, to the serene effect of the golden twilight sun that illuminates\nthe grass in front of the Victorian house, but fails to penetrate the dense forest\nbeyond. The middle-aged rural couple seem to lack any emotional rapport; they project\na mood of self-absorption, futility, and alienation that typifies much of Hopper\'s\nfigurative work.\n ' +p281819 +sa(dp281820 +g225230 +S'Tropical Forest with Monkeys' +p281821 +sg225232 +S'Henri Rousseau' +p281822 +sg225234 +S'oil on canvas' +p281823 +sg225236 +S'1910' +p281824 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000736.jpg' +p281825 +sg225240 +S"Born in 1844 to a working-class family in Laval, France, Henri Rousseau worked briefly for a lawyer and served a stint in the military before taking a position at a French customs post in 1868; the nickname "\n Very poor, Rousseau was a self-taught painter who harbored dreams of official approval. Although he never achieved recognition from the French academy, he was embraced by early 20th-century avant-garde artists, including Picasso and the surrealists, for his departures from conventional style, which included broad, flat planes of color, stylized line, and fantastic landscapes. While he painted exotic locales, Rousseau never left France; his jungles are the dreams of a city dweller, constructed from visits to the botanical gardens, the Paris zoo, and colonial expositions, and culled from prints and reproductions.\n Tropical Forest with Monkeys\n One of the most striking aspects of Rousseau's style is the flattening of his subjects. Whether he was echoing his impressionist contemporaries, who were concerned with surface, or simply following his own vision, the artist's jungle paintings lack solidity, as if they were representations of theatrical décor, the gigantic leaves and petals minimally contoured so as to create the effect of overlapping cutouts. Moreover, his creatures seem deliberately subdued by a deadpan treatment that identifies each more as outline than as a tactile form.\n As his career progressed, Rousseau increasingly associated with the avant-garde, and in 1905 he exhibited alongside the Fauves at the Salon d'Automne. Gradually his reputation grew, and sales of his work had increased considerably by 1910, when he fell victim to an infection and died. His funeral was attended by Paul Signac and Guillaume Apollinaire composed a whimsical poem that Constantin Brancusi chiseled into the tombstone, thereby situating Rousseau an unwitting godfather of modernism.\n " +p281826 +sa(dp281827 +g225230 +S'Wapping' +p281828 +sg225232 +S'James McNeill Whistler' +p281829 +sg225234 +S'oil on canvas' +p281830 +sg225236 +S'1860-1864' +p281831 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d54.jpg' +p281832 +sg225240 +S'Whistler inscribed "1861" at the lower right of this early canvas, but he reworked the picture extensively nearly four years later. He sketched the original composition in a letter to an associate and described the girl as "saying to her sailor: \'That\'s all very well my friend, but don\'t think you\'re the first.\' You know, she winks and pokes fun at him." In this final revision, however, Whistler eliminated any risqu\xc3\xa9 narrative and instead sought a mood of pensive isolation.\n The background remains intact from the artist\'s first sessions at Wapping, a dockyard on the river Thames, east of London. Painting on site from an inn called The Angel, Whistler created the whole scene \n For this work, Whistler hired Joanna Hiffernan, an artist\'s model known for her coppery red hair. She soon became his mistress and posed for \n ' +p281833 +sa(dp281834 +g225232 +S'Sir Jacob Epstein' +p281835 +sg225240 +g27 +sg225234 +S'bronze' +p281836 +sg225230 +S'George Bernard Shaw' +p281837 +sg225236 +S'1934' +p281838 +sa(dp281839 +g225230 +S'Apollo' +p281840 +sg225232 +S'Jost Amman' +p281841 +sg225234 +S'pen and black ink on laid paper' +p281842 +sg225236 +S'c. 1580' +p281843 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a14.jpg' +p281844 +sg225240 +g27 +sa(dp281845 +g225230 +S'God the Father in Glory' +p281846 +sg225232 +S'Artist Information (' +p281847 +sg225234 +S'(artist after)' +p281848 +sg225236 +S'\n' +p281849 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a000752b.jpg' +p281850 +sg225240 +g27 +sa(dp281851 +g225232 +S'Louis-Antoine de Caraccioli' +p281852 +sg225240 +g27 +sg225234 +S', published 1757' +p281853 +sg225230 +S'Le livre de quatre couleurs' +p281854 +sg225236 +S'\n' +p281855 +sa(dp281856 +g225230 +S'Rudolf I and Albert I with Pallas' +p281857 +sg225232 +S'Artist Information (' +p281858 +sg225234 +S'(artist)' +p281859 +sg225236 +S'\n' +p281860 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e80.jpg' +p281861 +sg225240 +g27 +sa(dp281862 +g225230 +S'Draftsmen Outdoors' +p281863 +sg225232 +S'Gabriel de Saint-Aubin' +p281864 +sg225234 +S', c. 1760' +p281865 +sg225236 +S'\n' +p281866 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00027/a00027a6.jpg' +p281867 +sg225240 +g27 +sa(dp281868 +g225230 +S'Wooded Upland Landscape with a Bridge' +p281869 +sg225232 +S'Thomas Gainsborough' +p281870 +sg225234 +S'black and white chalk with gray and black wash heightened with white on laid paper' +p281871 +sg225236 +S'c. 1780' +p281872 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00033/a00033d3.jpg' +p281873 +sg225240 +g27 +sa(dp281874 +g225230 +S'Seated Woman Sewing' +p281875 +sg225232 +S'Louis Rolland Trinquesse' +p281876 +sg225234 +S'red chalk' +p281877 +sg225236 +S'1788' +p281878 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00037/a00037f8.jpg' +p281879 +sg225240 +g27 +sa(dp281880 +g225230 +S'Sea Coast Scene' +p281881 +sg225232 +S'British 19th Century' +p281882 +sg225234 +S'overall: 13.6 x 21.2 cm (5 3/8 x 8 3/8 in.)' +p281883 +sg225236 +S'\nblack chalk with gray wash heightened with white on green paper' +p281884 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006be4.jpg' +p281885 +sg225240 +g27 +sa(dp281886 +g225230 +S'Studies of Nude Dancers' +p281887 +sg225232 +S'Auguste Rodin' +p281888 +sg225234 +S', c. 1900/1905' +p281889 +sg225236 +S'\n' +p281890 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007409.jpg' +p281891 +sg225240 +g27 +sa(dp281892 +g225232 +S'Simo Pertii Hannula' +p281893 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p281894 +sg225230 +S'Moment by Moment' +p281895 +sg225236 +S'1967' +p281896 +sa(dp281897 +g225232 +S'Simo Pertii Hannula' +p281898 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p281899 +sg225230 +S"Night's Strangers" +p281900 +sg225236 +S'1967' +p281901 +sa(dp281902 +g225232 +S'Simo Pertii Hannula' +p281903 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p281904 +sg225230 +S'Satellizards' +p281905 +sg225236 +S'1968' +p281906 +sa(dp281907 +g225232 +S'Simo Pertii Hannula' +p281908 +sg225240 +g27 +sg225234 +S'etching and drypoint' +p281909 +sg225230 +S'When the Time Comes' +p281910 +sg225236 +S'1968' +p281911 +sa(dp281912 +g225230 +S'Woman in Court Dress' +p281913 +sg225232 +S'Adolph Menzel' +p281914 +sg225234 +S'graphite with stump' +p281915 +sg225236 +S'unknown date\n' +p281916 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007255.jpg' +p281917 +sg225240 +g27 +sa(dp281918 +g225232 +S'Ossip Zadkine' +p281919 +sg225240 +g27 +sg225234 +S'etching' +p281920 +sg225230 +S'Two Figures' +p281921 +sg225236 +S'unknown date\n' +p281922 +sa(dp281923 +g225232 +S'Artist Information (' +p281924 +sg225240 +g27 +sg225234 +S'(artist after)' +p281925 +sg225230 +S"Les travaux d'Ulysse" +p281926 +sg225236 +S'\n' +p281927 +sa(dp281928 +g225230 +S'Evening' +p281929 +sg225232 +S'Artist Information (' +p281930 +sg225234 +S'(artist after)' +p281931 +sg225236 +S'\n' +p281932 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f0b.jpg' +p281933 +sg225240 +g27 +sa(dp281934 +g225230 +S'Murder of Edith Cavell' +p281935 +sg225232 +S'George Bellows' +p281936 +sg225234 +S'lithograph' +p281937 +sg225236 +S'1918' +p281938 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a23.jpg' +p281939 +sg225240 +g27 +sa(dp281940 +g225232 +S'Lars Bo' +p281941 +sg225240 +g27 +sg225234 +S'color etching' +p281942 +sg225230 +S'Dryads, Old and Young' +p281943 +sg225236 +S'1963' +p281944 +sa(dp281945 +g225232 +S'Lars Bo' +p281946 +sg225240 +g27 +sg225234 +S'color etching' +p281947 +sg225230 +S'A Sea Change' +p281948 +sg225236 +S'1963' +p281949 +sa(dp281950 +g225232 +S'Peter Milton' +p281951 +sg225240 +g27 +sg225234 +S'photo-sensitive ground etching and engraving with photographic transfer' +p281952 +sg225230 +S'Daylilies' +p281953 +sg225236 +S'1975' +p281954 +sa(dp281955 +g225232 +S'M.C. Escher' +p281956 +sg225240 +g27 +sg225234 +S'woodcut' +p281957 +sg225230 +S'Cobwebs' +p281958 +sg225236 +S'1931' +p281959 +sa(dp281960 +g225232 +S'M.C. Escher' +p281961 +sg225240 +g27 +sg225234 +S'woodcut in black, olive and ochre, printed from twenty blocks on three combined sheets' +p281962 +sg225230 +S'Metamorphosis II' +p281963 +sg225236 +S'1939/1940' +p281964 +sa(dp281965 +g225232 +S'M.C. Escher' +p281966 +sg225240 +g27 +sg225234 +S'woodcut' +p281967 +sg225230 +S'Fish and Scales' +p281968 +sg225236 +S'1959' +p281969 +sa(dp281970 +g225232 +S'M.C. Escher' +p281971 +sg225240 +g27 +sg225234 +S'woodcut in rust, olive, blue, brown and black, printed from five blocks' +p281972 +sg225230 +S'Circle Limit III' +p281973 +sg225236 +S'1959' +p281974 +sa(dp281975 +g225232 +S'M.C. Escher' +p281976 +sg225240 +g27 +sg225234 +S'lithograph' +p281977 +sg225230 +S'Ascending and Descending' +p281978 +sg225236 +S'1960' +p281979 +sa(dp281980 +g225232 +S'M.C. Escher' +p281981 +sg225240 +g27 +sg225234 +S'woodcut in black on Japan paper' +p281982 +sg225230 +S'Circle Limit IV' +p281983 +sg225236 +S'1960' +p281984 +sa(dp281985 +g225232 +S'M.C. Escher' +p281986 +sg225240 +g27 +sg225234 +S'wood engraving and woodcut in red, green, gold an d black, printed from four blocks' +p281987 +sg225230 +S'Mobius Strip I' +p281988 +sg225236 +S'1961' +p281989 +sa(dp281990 +g225232 +S'M.C. Escher' +p281991 +sg225240 +g27 +sg225234 +S'woodcut in black, yellow and red, printed from three blocks' +p281992 +sg225230 +S'Four Regular Solids' +p281993 +sg225236 +S'1961' +p281994 +sa(dp281995 +g225230 +S'Waterfall' +p281996 +sg225232 +S'M.C. Escher' +p281997 +sg225234 +S'lithograph' +p281998 +sg225236 +S'1961' +p281999 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a00002b9.jpg' +p282000 +sg225240 +S'Escher\'s print illustrates the "impossible triangle" described by the British mathematician Roger Penrose in a 1958 article on visual illusion: "Here is a perspective drawing, each part of which is accepted as representing a three-dimensional, rectangular structure. The lines of the drawing are, however, connected in such a manner as to reproduce an impossibility. As the eye pursues the lines of the figure, sudden changes in the interpretation of distance of the object from the observer are necessary."\n ' +p282001 +sa(dp282002 +g225232 +S'M.C. Escher' +p282003 +sg225240 +g27 +sg225234 +S'woodcut in red, black and gray-green, printed fro m three blocks' +p282004 +sg225230 +S'Mobius Strip II' +p282005 +sg225236 +S'1963' +p282006 +sa(dp282007 +g225232 +S'M.C. Escher' +p282008 +sg225240 +g27 +sg225234 +S'woodcut in red and gray-green, printed from two blocks' +p282009 +sg225230 +S'Square Limit' +p282010 +sg225236 +S'1964' +p282011 +sa(dp282012 +g225232 +S'M.C. Escher' +p282013 +sg225240 +g27 +sg225234 +S'woodcut in black' +p282014 +sg225230 +S'Knots' +p282015 +sg225236 +S'1965' +p282016 +sa(dp282017 +g225232 +S'M.C. Escher' +p282018 +sg225240 +g27 +sg225234 +S'woodcut in orange' +p282019 +sg225230 +S'Knots' +p282020 +sg225236 +S'1965' +p282021 +sa(dp282022 +g225232 +S'M.C. Escher' +p282023 +sg225240 +g27 +sg225234 +S'woodcut in orange and black, printed from two blocks' +p282024 +sg225230 +S'Knots' +p282025 +sg225236 +S'1965' +p282026 +sa(dp282027 +g225232 +S'M.C. Escher' +p282028 +sg225240 +g27 +sg225234 +S'woodcut in black, green and brown, printed from three blocks' +p282029 +sg225230 +S'Knots' +p282030 +sg225236 +S'1965' +p282031 +sa(dp282032 +g225230 +S'Path of Life III' +p282033 +sg225232 +S'M.C. Escher' +p282034 +sg225234 +S'woodcut in red and black, printed from two blocks on japan paper' +p282035 +sg225236 +S'1966' +p282036 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00015/a000155a.jpg' +p282037 +sg225240 +g27 +sa(dp282038 +g225232 +S'M.C. Escher' +p282039 +sg225240 +g27 +sg225234 +S'woodcut in black, green and red-brown, printed from thirty-three blocks on six combined sheets, mounted on canvas with hand-coloring' +p282040 +sg225230 +S'Metamorphosis III' +p282041 +sg225236 +S'1967/1968' +p282042 +sa(dp282043 +g225230 +S'Snakes' +p282044 +sg225232 +S'M.C. Escher' +p282045 +sg225234 +S'woodcut in orange, green, and black, printed from three blocks' +p282046 +sg225236 +S'1969' +p282047 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00015/a0001559.jpg' +p282048 +sg225240 +S'Escher suffered from poor health when making this woodcut, and it is his last print. He again illustrates the concept of infinity. However, here he introduces a new invention: infinitely small rings grow from the center of the circle, reach a maximum size, and then diminish again as they reach the outer circumference.\n ' +p282049 +sa(dp282050 +g225232 +S'Pierre Alechinsky' +p282051 +sg225240 +g27 +sg225234 +S'etching and lithograph' +p282052 +sg225230 +S'Soleil Con Coupe' +p282053 +sg225236 +S'1970' +p282054 +sa(dp282055 +g225232 +S'Harold Altman' +p282056 +sg225240 +g27 +sg225234 +S'soft-ground etching' +p282057 +sg225230 +S'The Park' +p282058 +sg225236 +S'unknown date\n' +p282059 +sa(dp282060 +g225232 +S'Jonathan Grant Meader' +p282061 +sg225240 +g27 +sg225234 +S'color silkscreen' +p282062 +sg225230 +S'Holding I' +p282063 +sg225236 +S'1974' +p282064 +sa(dp282065 +g225232 +S'Jonathan Grant Meader' +p282066 +sg225240 +g27 +sg225234 +S'portfolio with four color silkscreens' +p282067 +sg225230 +S'Holding' +p282068 +sg225236 +S'1974' +p282069 +sa(dp282070 +g225232 +S'Jonathan Grant Meader' +p282071 +sg225240 +g27 +sg225234 +S'color silkscreen' +p282072 +sg225230 +S'Holding II' +p282073 +sg225236 +S'1974' +p282074 +sa(dp282075 +g225232 +S'Jonathan Grant Meader' +p282076 +sg225240 +g27 +sg225234 +S'color silkscreen' +p282077 +sg225230 +S'Holding III' +p282078 +sg225236 +S'1974' +p282079 +sa(dp282080 +g225232 +S'Jonathan Grant Meader' +p282081 +sg225240 +g27 +sg225234 +S'color silkscreen' +p282082 +sg225230 +S'Holding IV' +p282083 +sg225236 +S'1974' +p282084 +sa(dp282085 +g225232 +S'Anni Albers' +p282086 +sg225240 +g27 +sg225234 +S'silkscreen' +p282087 +sg225230 +S'Triadic Print C' +p282088 +sg225236 +S'1969' +p282089 +sa(dp282090 +g225232 +S'Anni Albers' +p282091 +sg225240 +g27 +sg225234 +S'silkscreen' +p282092 +sg225230 +S'Triadic Print D' +p282093 +sg225236 +S'1969' +p282094 +sa(dp282095 +g225232 +S'Anni Albers' +p282096 +sg225240 +g27 +sg225234 +S'silkscreen' +p282097 +sg225230 +S'Triadic Print E' +p282098 +sg225236 +S'1969' +p282099 +sa(dp282100 +g225232 +S'Anni Albers' +p282101 +sg225240 +g27 +sg225234 +S'silkscreen' +p282102 +sg225230 +S'Triadic Print F' +p282103 +sg225236 +S'1969' +p282104 +sa(dp282105 +g225232 +S'Josef Albers' +p282106 +sg225240 +g27 +sg225234 +S'silkscreen' +p282107 +sg225230 +S'Point Blue, Homage to the Square' +p282108 +sg225236 +S'1971' +p282109 +sa(dp282110 +g225232 +S'Josef Albers' +p282111 +sg225240 +g27 +sg225234 +S'silkscreen' +p282112 +sg225230 +S'Point Black, Homage to the Square' +p282113 +sg225236 +S'1971' +p282114 +sa(dp282115 +g225232 +S'Josef Albers' +p282116 +sg225240 +g27 +sg225234 +S'silkscreen' +p282117 +sg225230 +S'Point Green, Homage to the Square' +p282118 +sg225236 +S'1971' +p282119 +sa(dp282120 +g225232 +S'Josef Albers' +p282121 +sg225240 +g27 +sg225234 +S'silkscreen' +p282122 +sg225230 +S'Point Yellow, Homage to the Square' +p282123 +sg225236 +S'1971' +p282124 +sa(dp282125 +g225230 +S'Untitled (Hotel du Nord)' +p282126 +sg225232 +S'Joseph Cornell' +p282127 +sg225234 +S'silkscreen' +p282128 +sg225236 +S'1972' +p282129 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a69.jpg' +p282130 +sg225240 +g27 +sa(dp282131 +g225232 +S'Joseph Cornell' +p282132 +sg225240 +g27 +sg225234 +S'silkscreen' +p282133 +sg225230 +S'Untitled (How to Make a Rainbow)' +p282134 +sg225236 +S'1972' +p282135 +sa(dp282136 +g225232 +S'Joseph Cornell' +p282137 +sg225240 +g27 +sg225234 +S'photogravure' +p282138 +sg225230 +S'Untitled (Derby Hat)' +p282139 +sg225236 +S'1972' +p282140 +sa(dp282141 +g225232 +S'Joseph Cornell' +p282142 +sg225240 +g27 +sg225234 +S'photogravure' +p282143 +sg225230 +S'Untitled (Landscape with Figure)' +p282144 +sg225236 +S'1972' +p282145 +sa(dp282146 +g225232 +S'Andy Warhol' +p282147 +sg225240 +g27 +sg225234 +S'color screenprint on Stonehenge paper' +p282148 +sg225230 +S'Kimiko' +p282149 +sg225236 +S'1981' +p282150 +sa(dp282151 +g225232 +S'Michael Vinson Clark' +p282152 +sg225240 +g27 +sg225234 +S'screen print' +p282153 +sg225230 +S'Washington I' +p282154 +sg225236 +S'1982' +p282155 +sa(dp282156 +g225232 +S'Michael Vinson Clark' +p282157 +sg225240 +g27 +sg225234 +S'screen print' +p282158 +sg225230 +S'Washington II' +p282159 +sg225236 +S'1982' +p282160 +sa(dp282161 +g225232 +S'Oleg Kudryashov' +p282162 +sg225240 +g27 +sg225234 +S'drypoint' +p282163 +sg225230 +S'Composition' +p282164 +sg225236 +S'1982' +p282165 +sa(dp282166 +g225230 +S'Let Us Now Praise Famous Men (Rauschenberg Family)' +p282167 +sg225232 +S'Andy Warhol' +p282168 +sg225234 +S'silkscreen on canvas' +p282169 +sg225236 +S'1963' +p282170 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00002/a0000289.jpg' +p282171 +sg225240 +g27 +sa(dp282172 +g225230 +S'Saint Matthew' +p282173 +sg225232 +S'Jacques de Gheyn II' +p282174 +sg225234 +S'pen and brown ink with gray wash on laid paper' +p282175 +sg225236 +S'c. 1585/1590' +p282176 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e0e.jpg' +p282177 +sg225240 +g27 +sa(dp282178 +g225230 +S'The Raising of Lazarus: Small Plate' +p282179 +sg225232 +S'Rembrandt van Rijn' +p282180 +sg225234 +S'etching on laid paper' +p282181 +sg225236 +S'1642' +p282182 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2ec.jpg' +p282183 +sg225240 +g27 +sa(dp282184 +g225230 +S'Banquet at the House of Tarquinius' +p282185 +sg225232 +S'Hendrick Goltzius' +p282186 +sg225234 +S', c. 1578' +p282187 +sg225236 +S'\n' +p282188 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfc0.jpg' +p282189 +sg225240 +g27 +sa(dp282190 +g225230 +S'Daniel Heinsius' +p282191 +sg225232 +S'Jan Lievens' +p282192 +sg225234 +S'etching and engraving on laid paper' +p282193 +sg225236 +S'unknown date\n' +p282194 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d52d.jpg' +p282195 +sg225240 +g27 +sa(dp282196 +g225232 +S'John Marin' +p282197 +sg225240 +g27 +sg225234 +S'etching with monotype wiping on japan paper' +p282198 +sg225230 +S'Bridge over Canal, Amsterdam' +p282199 +sg225236 +S'1906' +p282200 +sa(dp282201 +g225230 +S'Dream of a Man Fleeing' +p282202 +sg225232 +S'Francesco Montelatici' +p282203 +sg225234 +S'black and red chalk on laid paper' +p282204 +sg225236 +S'unknown date\n' +p282205 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007482.jpg' +p282206 +sg225240 +g27 +sa(dp282207 +g225230 +S'Little Shepherd, 1st Plate (Le Petit Berger)' +p282208 +sg225232 +S'Jean-Baptiste-Camille Corot' +p282209 +sg225234 +S'cliche-verre' +p282210 +sg225236 +S'1855' +p282211 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091b8.jpg' +p282212 +sg225240 +g27 +sa(dp282213 +g225230 +S"Putti Testing a Man's Perception of Depth" +p282214 +sg225232 +S'Sir Peter Paul Rubens' +p282215 +sg225234 +S'pen and brown ink with brown wash over black chalk, heightened with white, on laid paper; indented with a stylus and chalked for transfer on the verso' +p282216 +sg225236 +S'c. 1613' +p282217 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d61.jpg' +p282218 +sg225240 +g27 +sa(dp282219 +g225232 +S'Anton Schutz' +p282220 +sg225240 +g27 +sg225234 +S'etching' +p282221 +sg225230 +S'New York Stock Exchange' +p282222 +sg225236 +S'1930' +p282223 +sa(dp282224 +g225232 +S'Anton Schutz' +p282225 +sg225240 +g27 +sg225234 +S'portfolio with seven etchings' +p282226 +sg225230 +S'Stock Exchanges of the World' +p282227 +sg225236 +S'1930' +p282228 +sa(dp282229 +g225232 +S'Anton Schutz' +p282230 +sg225240 +g27 +sg225234 +S'etching' +p282231 +sg225230 +S'The London Stock Exchange' +p282232 +sg225236 +S'1930' +p282233 +sa(dp282234 +g225232 +S'Anton Schutz' +p282235 +sg225240 +g27 +sg225234 +S'etching' +p282236 +sg225230 +S'Paris Stock Exchange' +p282237 +sg225236 +S'1930' +p282238 +sa(dp282239 +g225232 +S'Anton Schutz' +p282240 +sg225240 +g27 +sg225234 +S'etching' +p282241 +sg225230 +S'Amsterdam Stock Exchange' +p282242 +sg225236 +S'1930' +p282243 +sa(dp282244 +g225232 +S'Anton Schutz' +p282245 +sg225240 +g27 +sg225234 +S'etching' +p282246 +sg225230 +S'Berlin Stock Exchange' +p282247 +sg225236 +S'1930' +p282248 +sa(dp282249 +g225232 +S'Anton Schutz' +p282250 +sg225240 +g27 +sg225234 +S'etching' +p282251 +sg225230 +S'Stock Exchange of Rome' +p282252 +sg225236 +S'1930' +p282253 +sa(dp282254 +g225232 +S'Anton Schutz' +p282255 +sg225240 +g27 +sg225234 +S'etching' +p282256 +sg225230 +S'Milano Stock Exchange' +p282257 +sg225236 +S'1930' +p282258 +sa(dp282259 +g225230 +S'Saint Constantine and Saint Elena' +p282260 +sg225232 +S'Bulgarian 19th Century' +p282261 +sg225234 +S"Gift of His Excellency Konstantin N. Grigorov, Ambassador E.and P., Embassy of the People's Republic of Bulgaria" +p282262 +sg225236 +S'\nphoto-mechanical reproduction' +p282263 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000dd/a000dda6.jpg' +p282264 +sg225240 +g27 +sa(dp282265 +g225232 +S'Roumen Skortchev' +p282266 +sg225240 +g27 +sg225234 +S'lithograph' +p282267 +sg225230 +S'Motherhood' +p282268 +sg225236 +S'1977' +p282269 +sa(dp282270 +g225232 +S'Pietro Parigi' +p282271 +sg225240 +g27 +sg225234 +S'woodcut' +p282272 +sg225230 +S'The Crucifixion by Cimabue (Il Crocefisso de Cimabue travolto dalle acque)' +p282273 +sg225236 +S'1967' +p282274 +sa(dp282275 +g225232 +S'Pietro Parigi' +p282276 +sg225240 +g27 +sg225234 +S'portfolio with seven woodcuts' +p282277 +sg225230 +S'Sette Manifesti per Santa Croce' +p282278 +sg225236 +S'unknown date\n' +p282279 +sa(dp282280 +g225232 +S'Pietro Parigi' +p282281 +sg225240 +g27 +sg225234 +S'woodcut' +p282282 +sg225230 +S'The Resurrection of Christ (Il Cristo risorto)' +p282283 +sg225236 +S'1970' +p282284 +sa(dp282285 +g225232 +S'Pietro Parigi' +p282286 +sg225240 +g27 +sg225234 +S'woodcut' +p282287 +sg225230 +S'Final Apparition of the Son of God as Lightning (Apparizione finale del figlio de Diocome folgore)' +p282288 +sg225236 +S'unknown date\n' +p282289 +sa(dp282290 +g225232 +S'Pietro Parigi' +p282291 +sg225240 +g27 +sg225234 +S'woodcut' +p282292 +sg225230 +S"Saint Anthony of Padua (Sant'Antonio de Padova))" +p282293 +sg225236 +S'1969' +p282294 +sa(dp282295 +g225232 +S'Pietro Parigi' +p282296 +sg225240 +g27 +sg225234 +S'woodcut' +p282297 +sg225230 +S'Death of Saint Francis (La morte di San Francesco; particolare da Giotto)' +p282298 +sg225236 +S'1966' +p282299 +sa(dp282300 +g225232 +S'Pietro Parigi' +p282301 +sg225240 +g27 +sg225234 +S'woodcut' +p282302 +sg225230 +S'Minor Arts in Santa Croce (Le arti minore in Santa Croce)' +p282303 +sg225236 +S'1968' +p282304 +sa(dp282305 +g225232 +S'Pietro Parigi' +p282306 +sg225240 +g27 +sg225234 +S'woodcut' +p282307 +sg225230 +S'Dante in the Cloister of Santa Croce (Dante nei chiostri de Santa Croce)' +p282308 +sg225236 +S'1965' +p282309 +sa(dp282310 +g225232 +S'Hiroaki Takahashi' +p282311 +sg225240 +g27 +sg225234 +S'color woodcut' +p282312 +sg225230 +S'Figure Watching Two Musicians in a House' +p282313 +sg225236 +S'unknown date\n' +p282314 +sa(dp282315 +g225232 +S'Artist Information (' +p282316 +sg225240 +g27 +sg225234 +S'English, 1679 - 1749' +p282317 +sg225230 +S'The Blue Linnet (Tanagra cyanea)' +p282318 +sg225236 +S'(artist after)' +p282319 +sa(dp282320 +g225232 +S'Artist Information (' +p282321 +sg225240 +g27 +sg225234 +S'English, 1679 - 1749' +p282322 +sg225230 +S'The Largest White Billed Woodpecker (Picus principalis)' +p282323 +sg225236 +S'(artist after)' +p282324 +sa(dp282325 +g225230 +S'Woman Weighing Pearls' +p282326 +sg225232 +S'Artist Information (' +p282327 +sg225234 +S'(artist after)' +p282328 +sg225236 +S'\n' +p282329 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000fe/a000fe3d.jpg' +p282330 +sg225240 +g27 +sa(dp282331 +g225232 +S'Adja Yunkers' +p282332 +sg225240 +g27 +sg225234 +S'woodcut poster with letterpress text [1982 impression]' +p282333 +sg225230 +S'Gathering of the Clans' +p282334 +sg225236 +S'c. 1948/1949' +p282335 +sa(dp282336 +g225230 +S'Arab Mounting' +p282337 +sg225232 +S'Th\xc3\xa9odore Chass\xc3\xa9riau' +p282338 +sg225234 +S'soft-etching and roulette' +p282339 +sg225236 +S'1849' +p282340 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a0009192.jpg' +p282341 +sg225240 +g27 +sa(dp282342 +g225230 +S'Anne with a Japanese Parasol' +p282343 +sg225232 +S'George Bellows' +p282344 +sg225234 +S'oil on canvas' +p282345 +sg225236 +S'1917' +p282346 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a000001f.jpg' +p282347 +sg225240 +g27 +sa(dp282348 +g225230 +S'Little Girl in White (Queenie Burnett)' +p282349 +sg225232 +S'George Bellows' +p282350 +sg225234 +S'oil on canvas' +p282351 +sg225236 +S'1907' +p282352 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000020.jpg' +p282353 +sg225240 +g27 +sa(dp282354 +g225230 +S'My Family' +p282355 +sg225232 +S'George Bellows' +p282356 +sg225234 +S'oil on canvas' +p282357 +sg225236 +S'1916' +p282358 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000021.jpg' +p282359 +sg225240 +g27 +sa(dp282360 +g225230 +S'Nude with Hexagonal Quilt' +p282361 +sg225232 +S'George Bellows' +p282362 +sg225234 +S'oil on canvas' +p282363 +sg225236 +S'1924' +p282364 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000033.jpg' +p282365 +sg225240 +g27 +sa(dp282366 +g225230 +S'Tennis Tournament' +p282367 +sg225232 +S'George Bellows' +p282368 +sg225234 +S'oil on canvas' +p282369 +sg225236 +S'1920' +p282370 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000022.jpg' +p282371 +sg225240 +g27 +sa(dp282372 +g225230 +S'Young Woman with Peonies' +p282373 +sg225232 +S'Fr\xc3\xa9d\xc3\xa9ric Bazille' +p282374 +sg225234 +S'oil on canvas' +p282375 +sg225236 +S'1870' +p282376 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000719.jpg' +p282377 +sg225240 +S'Young Woman with Peonies\n Although both paintings entitled \n The exact relationship between the\r\ntwo versions is not clear. Surprisingly,\r\nBazille seems to make no explicit mention\r\nof either work in his correspondence.\r\nIt has been suggested, however, that these\r\npaintings are the ones Bazille referred to\r\nas "Suzanne\xe2\x80\x99s flowers" in several letters\r\nwritten between January and May 1870.\n Young Woman with Peonies\n (Text by Kimberly Jones, \n Notes\n ' +p282378 +sa(dp282379 +g225230 +S'Ships and Sailing Boats Leaving Le Havre' +p282380 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p282381 +sg225234 +S'oil on canvas' +p282382 +sg225236 +S'1887' +p282383 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006f0.jpg' +p282384 +sg225240 +g27 +sa(dp282385 +g225230 +S'Bathing Time at Deauville' +p282386 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p282387 +sg225234 +S'oil on wood' +p282388 +sg225236 +S'1865' +p282389 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006ec.jpg' +p282390 +sg225240 +S'Boudin, twenty years older than most of the impressionists, was among \n the few artists of his generation to insist on painting in the open air, \n declaring three brushstrokes done outdoors to be of greater value than days \n spent working in the studio. Grains of sand from the beaches where Boudin \n painted still adhere to some of his pictures. At times he was accompanied \n by the young \n Though Boudin believed sincerity was achieved by painting directly from \n nature, he still made adjustments to his paintings in the studio. "An \n impression is gained in an instant," he advised a student, "but it then has \n to be condensed following the rules of art or rather your own feeling and \n that is the most difficult thing -- to finish a painting without spoiling \n anything."\n ' +p282391 +sa(dp282392 +g225230 +S'Jetty and Wharf at Trouville' +p282393 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p282394 +sg225234 +S'oil on wood' +p282395 +sg225236 +S'1863' +p282396 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006ed.jpg' +p282397 +sg225240 +g27 +sa(dp282398 +g225230 +S'Festival in the Harbor of Honfleur' +p282399 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p282400 +sg225234 +S'oil on wood' +p282401 +sg225236 +S'1858' +p282402 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a09.jpg' +p282403 +sg225240 +g27 +sa(dp282404 +g225230 +S'Coast of Brittany' +p282405 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p282406 +sg225234 +S'oil on canvas' +p282407 +sg225236 +S'1870' +p282408 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006e7.jpg' +p282409 +sg225240 +g27 +sa(dp282410 +g225230 +S'Figures on the Beach' +p282411 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p282412 +sg225234 +S'oil on canvas' +p282413 +sg225236 +S'c. 1867/1870' +p282414 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006e8.jpg' +p282415 +sg225240 +g27 +sa(dp282416 +g225230 +S'Beach Scene' +p282417 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p282418 +sg225234 +S'oil on wood' +p282419 +sg225236 +S'1862' +p282420 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006e9.jpg' +p282421 +sg225240 +g27 +sa(dp282422 +g225230 +S'Beach Scene at Trouville' +p282423 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p282424 +sg225234 +S'oil on wood' +p282425 +sg225236 +S'1863' +p282426 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006ea.jpg' +p282427 +sg225240 +S'When Boudin began to paint vacationers on the beaches of Normandy, his \n subject was unconventional. Seascapes, often populated with small peasant \n figures or fishermen, still attracted French painters in the mid-1800s. But \n Boudin\'s images, unlike those of other rustic genre scenes, recorded a new \n phenomenon, the tourist with money and leisure time. His subjects were \n also his buyers, and he satisfied them by producing more than four thousand \n paintings like this one.\n Boudin\'s beach scenes, though crowded, lack obvious narrative or \n anecdote. He characterized not individuals, but the bourgeoisie and their \n postures and fashions, including the huge crinolines that in high winds \n occasionally sent women over cliffs or into carriage wheels. Like the plume \n of smoke issuing from a steamer, the anonymity of the figures imparts a \n sense of modern life. Boudin seems to have been a bit ambivalent about his \n subjects. At times he defended them, but he also dismissed them as "gilded \n parasites," to insist that his true subjects were light and color.\n ' +p282428 +sa(dp282429 +g225230 +S'Washerwoman near Trouville' +p282430 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p282431 +sg225234 +S'oil on wood' +p282432 +sg225236 +S'c. 1872/1876' +p282433 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005a74.jpg' +p282434 +sg225240 +g27 +sa(dp282435 +g225230 +S'Entrance to the Harbor, Le Havre' +p282436 +sg225232 +S'Eug\xc3\xa8ne Boudin' +p282437 +sg225234 +S'oil on canvas' +p282438 +sg225236 +S'1883' +p282439 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006eb.jpg' +p282440 +sg225240 +g27 +sa(dp282441 +g225230 +S'Child in a Straw Hat' +p282442 +sg225232 +S'Mary Cassatt' +p282443 +sg225234 +S'oil on canvas' +p282444 +sg225236 +S'c. 1886' +p282445 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006c9.jpg' +p282446 +sg225240 +S'Devoted to painting subjects of modern\r\nlife, the impressionists were committed to\r\nrendering direct experiences as opposed\r\nto literary subjects. Much of their work\r\nfocuses on life out in the modern metropolis,\r\nas well as on quotidian activities within\r\nthe home. Cassatt specialized in scenes\r\ndepicting women in their traditional role\r\nas caregivers, particularly of children, and\r\nshe invested relatively quiet and unexceptional\r\nmoments with considerable dynamism\r\nin handling and composition.\n Cassatt\xe2\x80\x99s lack of convention and sentiment\r\nin portraying children earned her\r\nboth praise and criticism. Although she\r\nexplored a subject considered the express\r\ndomain of women artists, her approach was\r\nconsidered atypical and did not go unnoticed.\r\nCritics remarked upon the apparent\r\ndisconnect between her technique and her\r\ngender by using masculine terms such as\r\n"strong" and "virile" to describe her work.\n Child in a Straw Hat\n While the subject matter captures a\r\nlanguid moment, the paint is handled in\r\na dynamic fashion. Broad, visible brushstrokes\r\nare used throughout the entire\r\ncomposition, forming abstract patterns in\r\nsome areas, such as the white sleeves of the\r\nblouse and smock. Technical analysis indicates\r\nthat the paint was applied quickly and\r\ndirectly to the canvas, in a manner referred\r\nto as \n Possessing a natural "talent for likenesses,"\r\nCassatt could expound upon both\r\nthe traditional and more modern, formal\r\nqualities of portraiture.\n (Text by Michelle Bird, \n Notes\n ' +p282447 +sa(dp282448 +g225230 +S'Little Girl in a Blue Armchair' +p282449 +sg225232 +S'Mary Cassatt' +p282450 +sg225234 +S'oil on canvas' +p282451 +sg225236 +S'1878' +p282452 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006ce.jpg' +p282453 +sg225240 +S'During her travels in Italy, Spain, and The\r\nNetherlands Mary Cassatt encountered and\r\nwas deeply moved by the art of the European\r\nold masters—the tenderness depicted\r\nin Correggio\xe2\x80\x99s Madonna and child paintings,\r\nthe expressive and sketchy brushstroke\r\nof Diego Velázquez, and the realism of the\r\ndomestic genre scenes of the Dutch Golden\r\nAge. By the time she settled in Paris in 1874,\r\nshe had become a mature artist with more\r\nthan a decade of experience behind her.\n In Paris, Cassatt established her artistic\r\nreputation by showing her work in the\r\nSalon. Her career would take a dramatic\r\nturn, however, following an encounter\r\nwith a group of pastels by Edgar Degas in\r\na shop window in about 1877. "I used to\r\ngo and flatten my nose against that window\r\nand absorb all I could of his art. It changed\r\nmy life. I saw art then as I wanted to see it,"\r\nshe later recounted.\n Little Girl in a Blue Armchair\n This painting has been known by\r\na variety of titles throughout the years,\r\nincluding Cassatt\xe2\x80\x99s original and somewhat\r\ngeneric \n Cassatt submitted this painting to the\r\nParis Exposition Universelle in 1878, and\r\nits rejection infuriated her. She reworked\r\nthe painting with the help of her friend\r\nDegas and exhibited it along with ten other\r\npaintings in her debut exhibition with\r\nthe impressionists in 1879. Its acceptance signaled her break with the Salon and\r\ncemented her connection to this radical\r\ngroup of independents.\n (Text by Michelle Bird, \n Notes\n \n \n ' +p282454 +sa(dp282455 +g225230 +S'Breton Girls Dancing, Pont-Aven' +p282456 +sg225232 +S'Paul Gauguin' +p282457 +sg225234 +S'oil on canvas' +p282458 +sg225236 +S'1888' +p282459 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a0000641.jpg' +p282460 +sg225240 +S'In 1886, Gauguin made his first excursion\r\nto Brittany, spending three months\r\nin Pont-Aven, a small farming village\r\nnear the southern coast that was home to\r\na lively artists\xe2\x80\x99 colony. He returned there\r\nin 1888, staying for close to nine months.\r\nGauguin enjoyed the relative isolation\r\nand uncomplicated existence of Brittany.\r\nHe wrote to his friend and disciple Emile Schuffenecker: "I like Brittany, it is savage\r\nand primitive. The flat sounds of my\r\nwooden clogs on the cobblestones, deep,\r\nhollow, and powerful, is the note I seek in\r\nmy painting."\n Breton Girls Dancing, Pont-Aven\n The three girls are shown dancing a\r\ngavotte, a distinctive form of folk dance\r\nperformed by Breton peasants. Gauguin\r\napproached his subject with an almost ethnographic\r\nsensibility, particularly in his\r\ncareful depiction of the girls\xe2\x80\x99 traditional\r\ncostumes. He even went so far as to depict\r\nthe \n Gauguin arranged for the completed\r\npainting to be sent to Theo van Gogh, who included it in an exhibition of the artist\xe2\x80\x99s\r\nrecent work at the Boussod and Valadon\r\nGallery in Paris in November 1888. Van\r\nGogh informed the artist that he had\r\nfound a buyer for the painting, but on one\r\ncondition: "I could also sell the dance of\r\nthe little Breton girls, but you would have\r\nto change it slightly. The hand of the little\r\ngirl originating near the edge seems to\r\nhave an importance which one does not\r\nnotice when one sees the picture without\r\na frame. The buyer would like you to alter\r\nthe hand a little, without otherwise modifying\r\nthe rest of the painting. It does not\r\nseem to me to be a difficult request. . . . See\r\nif you can make him happy and if you want\r\nto do this deal."\n With some reluctance, Gauguin agreed\r\nto make the requisite change. However,\r\ndespite Gauguin\xe2\x80\x99s efforts and Van Gogh\xe2\x80\x99s\r\nassurances, the painting remained unsold.\r\nGauguin included it along with sixteen\r\nother works at the Exhibition of Paintings\r\nby the Impressionist and Synthetist\r\nGroup held in Paris at the Café Volpini\r\nduring the Exposition Universelle of 1889,\r\nbut was disheartened by the lack of both\r\ncritical attention and sales. It would not be\r\nuntil September 1889 that the painting was\r\nfinally sold for five hundred francs.\n (Text by Kimberly Jones, \n Notes\n \n \n \n \n ' +p282461 +sa(dp282462 +g225230 +S'Landscape at Le Pouldu' +p282463 +sg225232 +S'Paul Gauguin' +p282464 +sg225234 +S'oil on canvas' +p282465 +sg225236 +S'1890' +p282466 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a0000642.jpg' +p282467 +sg225240 +S"After his first stay in Brittany, Gauguin returned to Paris in time for the 1889 international exposition marking the centennial of the French Revolution. Refused space at the official art exhibition, he mounted an independent show with several colleagues near the entrance to the huge fair, billing their work "impressioniste et synthétiste," but it was not a success. He decided to escape Paris and its scornful critics. Among the most popular attractions at the exposition, and Gauguin's personal favorites, had been performances by Buffalo Bill's Wild West Show and a troupe of Javanese dancers—Gauguin began to talk of emigrating to the more exotic lands of Tonkin (Vietnam), Madagascar, or Tahiti. But he returned instead to Brittany.\n In 1889 he found the village of Pont-Aven crowded with artists. Seeking a more isolated—and less expensive—environment, he and several colleagues took up residence in Le Pouldu, a small hamlet nine kilometers distant. From there they made many expeditions to the countryside, but their landscapes, like this one, were painted primarily from memory and sketches. "Don't copy nature too literally," Gauguin advised. "Art is abstraction; draw art as you dream in nature's presence, and think more about the act of creation than about the final result."\n " +p282468 +sa(dp282469 +g225230 +S'Flower Beds in Holland' +p282470 +sg225232 +S'Vincent van Gogh' +p282471 +sg225234 +S'oil on canvas on wood' +p282472 +sg225236 +S'c. 1883' +p282473 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a000064e.jpg' +p282474 +sg225240 +g27 +sa(dp282475 +g225230 +S'New House in the Suburbs' +p282476 +sg225232 +S'Paul Klee' +p282477 +sg225234 +S'gouache on canvas' +p282478 +sg225236 +S'1924' +p282479 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ed3.jpg' +p282480 +sg225240 +g27 +sa(dp282481 +g225232 +S'Joan Mir\xc3\xb3' +p282482 +sg225240 +g27 +sg225234 +S'oil on canvas' +p282483 +sg225230 +S'The Flight of the Dragonfly before the Sun' +p282484 +sg225236 +S'1968' +p282485 +sa(dp282486 +g225230 +S'The Bridge at Argenteuil' +p282487 +sg225232 +S'Claude Monet' +p282488 +sg225234 +S'oil on canvas' +p282489 +sg225236 +S'1874' +p282490 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a0000679.jpg' +p282491 +sg225240 +S"From a distance of ten feet or so, Monet's brushstrokes blend to yield a convincing view of the Seine and the pleasure boats that drew tourists to Argenteuil. Up close, however, each dab of paint is distinct, and the scene dissolves into a mosaic of paint—brilliant, unblended tones of blue, red, green, yellow. In the water, quick, fluid skips of the brush mimic the lapping surface. In the trees, thicker paint is applied with denser, stubbier strokes. The figure in the sailboat is only a ghostly wash of dusty blue, the women rowing nearby are indicated by mere shorthand.\n In the early years of impressionism, Monet, Renoir, and others strove to capture the fleeting effects of light and atmosphere on the landscape and to transcribe directly and quickly their sensory experience of it. Monet advised the American artist Lilla Cabot Perry, "When you go out to paint, try to forget what objects you have before you, a tree, a house, a field or whatever. Merely think here is a little square of blue, here an oblong of pink, here a streak of yellow, and paint it just as it looks to you, the exact color and shape, until it gives your own naïve impression of the scene before you."\n " +p282492 +sa(dp282493 +g225230 +S"The Cradle - Camille with the Artist's Son Jean" +p282494 +sg225232 +S'Claude Monet' +p282495 +sg225234 +S'oil on canvas' +p282496 +sg225236 +S'1867' +p282497 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a0000670.jpg' +p282498 +sg225240 +S'The Cradle—Camille with the Artist\xe2\x80\x99s Son Jean\n Fatherhood inspired an unexpected\r\ntenderness on the part of the artist. In a\r\nletter to his friend the painter Frédéric\r\nBazille, who was also Jean\xe2\x80\x99s godfather,\r\nMonet described his delight and frustration\r\nat the situation: "She [Camille]\r\ngave birth to a large and handsome son\r\nand despite everything, and I don\xe2\x80\x99t know\r\nhow, I feel that I love him, and I suffer\r\nto think that his mother has nothing to\r\neat."\n Time and circumstance undoubtedly\r\nplayed a role. Given the apparent age of\r\nthe infant, somewhere between four and\r\nsix months, the painting was probably executed\r\nlate in the winter of 1867 during\r\nMonet\xe2\x80\x99s stay in Paris and just before his\r\nreturn to Sainte-Adresse in January 1868.\r\nMonet made no allusion to the desperate\r\nfinancial straits of his family at this time,\r\ndepicting instead a scene of domestic tranquility\r\nand bourgeois comfort. The most\r\ntelling evidence of this is the identity of the\r\nwoman seated beside the cradle. Although\r\nshe is typically identified as Camille, her\r\nwhite cap and modest dark dress suggest she\r\nmay be the child\xe2\x80\x99s wet nurse rather than his\r\nmother, something that is more in keeping\r\nwith the standard of living to which the artist\r\naspired than with his current station.\n (Text by Kimberly Jones, \n Notes\n \n \n ' +p282499 +sa(dp282500 +g225230 +S'Interior, after Dinner' +p282501 +sg225232 +S'Claude Monet' +p282502 +sg225234 +S'oil on canvas' +p282503 +sg225236 +S'1868/1869' +p282504 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a000067a.jpg' +p282505 +sg225240 +g27 +sa(dp282506 +g225230 +S'Waterloo Bridge, London, at Dusk' +p282507 +sg225232 +S'Claude Monet' +p282508 +sg225234 +S'oil on canvas' +p282509 +sg225236 +S'1904' +p282510 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a000067c.jpg' +p282511 +sg225240 +g27 +sa(dp282512 +g225230 +S'Waterloo Bridge, London, at Sunset' +p282513 +sg225232 +S'Claude Monet' +p282514 +sg225234 +S'oil on canvas' +p282515 +sg225236 +S'1904' +p282516 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a000067d.jpg' +p282517 +sg225240 +g27 +sa(dp282518 +g225230 +S'Woman with a Parasol - Madame Monet and Her Son' +p282519 +sg225232 +S'Claude Monet' +p282520 +sg225234 +S'oil on canvas' +p282521 +sg225236 +S'1875' +p282522 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a000067e.jpg' +p282523 +sg225240 +S'Woman with a Parasol—Madame Monet and Her Son\n Camille, dressed in white and wearing\r\na veiled hat, stands on a hill, her body\r\nplaced slightly off center but balanced\r\nvisually by the green and white parasol\r\nshe carries. Her gaze and the angle of her\r\nbody suggest that she has suddenly become\r\naware of the viewer\xe2\x80\x99s presence and has\r\nturned in response, creating a convincing\r\nillusion of movement frozen in time.\r\nBehind and to the left of Camille is the\r\nmuch smaller form of their son Jean, who\r\nwas almost eight years old at the time. The\r\nlow horizon line and the juxtaposition of\r\nher form against the sky give the figure a\r\nfeeling of monumentality that is unusual\r\nin Monet\xe2\x80\x99s paintings of the mid-1870s.\n Boldly and rapidly executed out of\r\ndoors, this painting was probably created\r\nin a single sitting. Monet\xe2\x80\x99s depiction of\r\nthe arrested moment in time is accentuated\r\nby the spontaneity of the brushwork\r\nand bold color. The sky was painted\r\nquickly, with strokes of varying size and\r\ndirection, and large patches of ground\r\nleft exposed. Although he painted the sky\r\nfirst, he retouched it after adding the\r\nfigures—drawing the brush around their\r\nshapes, he further defined them. The\r\ngrass is painted with short comma-like\r\nstrokes in various shades of green, blue,\r\nyellow, and red: broad passages of bluegreens\r\nwere used to indicate shadow and\r\nlighter greens, to indicate sunlit areas.\n This painting was one of eighteen\r\nthat the artist contributed to the second\r\nimpressionist show (held in April 1876).\r\nExhibited under the title \n Monet returned to this motif—a woman\r\nwith a parasol standing on a hill—for\r\na pair of paintings that he executed in the\r\nsummer of 1886 (Musée d Orsay, Paris).\r\nThe inspiration for these paintings was\r\nthe image of Suzanne, a daughter of his\r\nfriends Alice and Ernest Hoschedé, walking\r\nalong an embankment on the \xc3\xaele aux\r\nOrties at Giverny; upon seeing her silhouetted\r\nagainst the sky, Monet is said to have\r\nremarked: "But it\xe2\x80\x99s like Camille at Argenteuil!\r\nWell, tomorrow we\xe2\x80\x99ll come back and\r\nyou\xe2\x80\x99ll pose here."\n (Text by Kimberly Jones, \n Notes\n \n ' +p282524 +sa(dp282525 +g225232 +S'Kenzo Okada' +p282526 +sg225240 +g27 +sg225234 +S'oil on canvas' +p282527 +sg225230 +S'Blue' +p282528 +sg225236 +S'1970' +p282529 +sa(dp282530 +g225232 +S'Kenzo Okada' +p282531 +sg225240 +g27 +sg225234 +S'oil on canvas' +p282532 +sg225230 +S'Kasaner' +p282533 +sg225236 +S'1968' +p282534 +sa(dp282535 +g225230 +S'Flowers in a Vase' +p282536 +sg225232 +S'Auguste Renoir' +p282537 +sg225234 +S'oil on canvas' +p282538 +sg225236 +S'c. 1866' +p282539 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00006/a00006fb.jpg' +p282540 +sg225240 +g27 +sa(dp282541 +g225230 +S'The Lighthouse at Honfleur' +p282542 +sg225232 +S'Georges Seurat' +p282543 +sg225234 +S'oil on canvas' +p282544 +sg225236 +S'1886' +p282545 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000718.jpg' +p282546 +sg225240 +S'Honfleur, a historic port on the Seine\r\nestuary in Normandy, had long been a\r\nfavorite with artists from England and\r\nFrance: J. M. W. Turner, Gustave Courbet,\r\nJean-Baptiste-Camille Corot, Eugène\r\nBoudin, and Claude Monet all worked\r\nthere. Seurat\xe2\x80\x99s stay in the summer of 1886\r\nresulted in seven canvases, most of which\r\nfocus on ordinary sites rather than the picturesque\r\nviews offered by the quaint town.\r\nThe lighthouse, however, was a motif\r\nthat appealed to many of Seurat\xe2\x80\x99s artistic\r\npredecessors: Boudin, for example, had\r\npainted this same scene twenty years earlier,\r\nwith the buildings at right and the\r\njetty behind the tower. Rather than centering\r\nthe view, Seurat cropped it in an\r\nunconventional way, leaving no sky above\r\nthe tip of the lighthouse and abruptly cutting\r\noff objects on the right. The lighthouse\r\nstands on the shore in front of\r\na home for old mariners; next to it was a shipyard, whose presence is acknowledged\r\nby the boat, trestle, and transport wheel.\n Honfleur\xe2\x80\x99s importance had been\r\neclipsed in the nineteenth century by the\r\nrobust development of the port at nearby\r\nLe Havre. Here the empty beach contributes\r\nto the sense of desertion suggested\r\nby the nautical odds and ends left lying\r\nin the sand. Indeed the scene is almost\r\ncompletely static: a sailboat drifting off in\r\nthe calm waters at left is the only suggestion\r\nof movement on a perfectly serene\r\nday. In contrast to Seurat\xe2\x80\x99s crowded\r\nscenes of urban entertainment and leisure,\r\nthe artist\xe2\x80\x99s Normandy seascapes\r\navoid the bustle typically associated with\r\nsuch popular tourist destinations, especially\r\nduring the summer. The critic J.-K.\r\nHuysmans reflected on the poetic stillness\r\nof Seurat\xe2\x80\x99s Honfleur paintings in\r\n1887, writing, "I find in them a fullness of\r\nexpansive air, a siesta of a quiet soul, a distinction\r\nof wan indolence, a caressing lullaby\r\nof the sea that soothes and dissipates\r\nmy weary cares."\n Perhaps it was the promise of such\r\ntranquility that attracted Seurat to the\r\nseaside in the first place. His arrival in\r\nHonfleur came several months after he\r\nhad completed his seminal work, \n (Text by Margaret Doyle, \n Notes\n \n \n ' +p282547 +sa(dp282548 +g225232 +S'Nicolas de Sta\xc3\xabl' +p282549 +sg225240 +g27 +sg225234 +S'oil on canvas' +p282550 +sg225230 +S'Ballet' +p282551 +sg225236 +S'1952' +p282552 +sa(dp282553 +g225230 +S'From Wheat to Straw' +p282554 +sg225232 +S'Jacques Villon' +p282555 +sg225234 +S'oil on canvas' +p282556 +sg225236 +S'1946' +p282557 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000eeb.jpg' +p282558 +sg225240 +g27 +sa(dp282559 +g225230 +S'Drink to the Chimera' +p282560 +sg225232 +S'Jacques Villon' +p282561 +sg225234 +S'oil on canvas' +p282562 +sg225236 +S'1947' +p282563 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000eec.jpg' +p282564 +sg225240 +g27 +sa(dp282565 +g225230 +S'The Bridge of Beaugency' +p282566 +sg225232 +S'Jacques Villon' +p282567 +sg225234 +S'oil on canvas' +p282568 +sg225236 +S'1944' +p282569 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00037/a00037fb.jpg' +p282570 +sg225240 +g27 +sa(dp282571 +g225230 +S'Woman in a Striped Dress' +p282572 +sg225232 +S'Edouard Vuillard' +p282573 +sg225234 +S'oil on canvas' +p282574 +sg225236 +S'1895' +p282575 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000715.jpg' +p282576 +sg225240 +S"Vuillard belonged to a quasi-mystical group of young artists that arose in about\n1890 and called themselves the Nabi, a Hebrew word for prophet. The Nabi rejected\nimpressionism and considered simple transcription of the appearance of the natural\nworld unthinking and unartistic. Inspired by Gauguin's work and symbolist poetry,\ntheir paintings evoke rather than specify, suggest rather than describe. Recognizing\nthat the physical components of painting -- colored pigments arranged on a flat surface\n-- were artificial, they considered as false the traditional convention of regarding\npaintings as re-creations of the natural world.\n Woman in a Striped Dress\n " +p282577 +sa(dp282578 +g225230 +S'Moonlight on the Yare' +p282579 +sg225232 +S'John Crome' +p282580 +sg225234 +S'oil on canvas' +p282581 +sg225236 +S'c. 1816/1817' +p282582 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a00004e8.jpg' +p282583 +sg225240 +S'Crome, from Norwich in east central\r\n England, learned to paint by copying pictures in local private collections.\r\n Landscapes by his countrymen Gainsborough and Wilson intrigued him, as did\r\n the Dutch old masters such as \n Moonlight on the Yare,\n A lively wit with a good business sense, Crome augmented his successful\r\n career as a landscape painter by giving drawing lessons and acting as a\r\n picture restorer and art dealer. Crome was instrumental in founding the\r\n Norwich Society in 1803 and, after 1806, sometimes also sent paintings for\r\n exhibition at the Royal Academy in London.\n ' +p282584 +sa(dp282585 +g225230 +S'Arthur Holdsworth Conversing with Thomas Taylor and Captain Stancombe by the River Dart' +p282586 +sg225232 +S'Arthur Devis' +p282587 +sg225234 +S'oil on canvas' +p282588 +sg225236 +S'1757' +p282589 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a000073c.jpg' +p282590 +sg225240 +S"The British demand for portraiture increased rapidly in the eighteenth century\nas members of the wealthy middle class became art patrons in their own right. Arthur\nDevis was a provincial artist who came to live in London, where sophisticated portraitists\nof the upper class such as Reynolds and Gainsborough dominated the art world. Devis\nreceived commissions from the middle-class landowning families, merchants, and officials\nwho lived in smaller cities outside London.\n This informal portrait is a conversation piece, a genre favored by Devis. The figures,\nwhile full-length, are relatively small and are placed somewhat back in the landscape;\nthe background is larger and more detailed than in traditional portraiture and describes\nthe subjects' personal and social context.\n Devis devised a repertoire of postures and gestures that he used to express the\nsocial status of his sitter. Arthur Holdsworth, governor of Dartmouth Castle, is\nshown seated, an alert, attentive expression on his face. The ship sailing into\nthe mouth of the River Dart in the background may be a reference to the Holdsworth\nfamily's trading business. Holdsworth's brother-in-law, Thomas Taylor, stands behind him in riding clothes. The third man is Captain Stancombe.\n " +p282591 +sa(dp282592 +g225230 +S'Oedipus Cursing His Son, Polynices' +p282593 +sg225232 +S'Henry Fuseli' +p282594 +sg225234 +S'oil on canvas' +p282595 +sg225236 +S'1786' +p282596 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00067/a0006740.jpg' +p282597 +sg225240 +S"Fuseli, a native of Switzerland, began his career in England as a history painter. He developed an expressionistic style composed of a unique blend of influences—German romanticism, the monumental vision of Michelangelo, and the physical and psychological exaggerations of the 16th–century Italian mannerists.\n Fuseli's own pessimism and fascination with the extremes of human passion are evident. He heightened the intensity of this scene from Sophocles' \n " +p282598 +sa(dp282599 +g225230 +S"A Scene from The Beggar's Opera" +p282600 +sg225232 +S'William Hogarth' +p282601 +sg225234 +S'oil on canvas' +p282602 +sg225236 +S'1728/1729' +p282603 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00005/a0000566.jpg' +p282604 +sg225240 +S"Hogarth represents an important watershed in British art, marking the end of\nthe century-long predominance of Dutch and Flemish painters in England and the beginning\nof a native school. Although his style was influenced by French rococo artists,\nHogarth was a realist and social critic whose subjects came from the London middle\nclasses as he observed them in the streets, in coffee houses, or at the theater.\n This vivid scene is a small version of Hogarth's earliest dated painting, now in\nthe Tate Gallery, London. The subject was based on John Gay's popular and long-playing\nballad-opera. With its open buffooning of Italian grand opera and its more subtle\nattacks on the British ruling class and Walpole government, the story was a ready\nmedium for Hogarth's incisive pictorial satire.\n The setting (act 3, scene II) is in Newgate prison where Macheath, a highwayman\nand anti-hero of sorts, has been brought after his arrest for robbery. He stands\nin the middle of the stage, shackled, legs astride, a dominant figure in brilliant\nred. To the left is Lucy, Macheath's lover, the daughter of the jailer Lockit. To\nthe right is Macheath's wife, Polly, who kneels by her father, Peachum, the fence\nwho betrayed Macheath and in doing so brought about the present crisis. Both wife\nand lover plead for Macheath's life to be spared.\n " +p282605 +sa(dp282606 +g225230 +S'Family Group' +p282607 +sg225232 +S'Francis Wheatley' +p282608 +sg225234 +S'oil on canvas' +p282609 +sg225236 +S'c. 1775/1780' +p282610 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00005/a0000567.jpg' +p282611 +sg225240 +S"Wheatley's portrait style has much in common with the traditional conversation\npieces of artists such as Arthur Devis. While the figures in Wheatley's portraits\nare larger in proportion to the background than in Devis' works, both artists employed\nthe same formula of presenting middle-class families engaged together in some pleasant\nactivity, often with one member of the group looking out at the viewer.\n The figures of this group are arranged in a parklike setting, silhouetted against\na backdrop of dark-green foliage. Wheatley suggested the psychological relationships\nof the subjects through their physical arrangement in the group. Despite the difference\nin size, the mother and daughter are, in effect, mirror images of each other, brought\ntogether by similarity of their forms and postures. The daughter's intimate relationship\nwith each parent balances and unifies the composition.\n Wheatley portrayed sitters' faces with great sensitivity, but his artistic talents\nare best seen in drapery and costume details. Moving easily from broad, suggestive\nbrushstrokes to ones that are fine and precise, he achieved a variety of techniques\nthat stimulate and delight the eye.\n " +p282612 +sa(dp282613 +g225230 +S'Lake Albano' +p282614 +sg225232 +S'Richard Wilson' +p282615 +sg225234 +S'oil on canvas' +p282616 +sg225236 +S'1762' +p282617 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a00004e4.jpg' +p282618 +sg225240 +g27 +sa(dp282619 +g225230 +S'Solitude' +p282620 +sg225232 +S'Richard Wilson' +p282621 +sg225234 +S'oil on canvas' +p282622 +sg225236 +S'c. 1762/1770' +p282623 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a00004e5.jpg' +p282624 +sg225240 +S"Richard Wilson began as a portraitist, although he also produced a few topographical\npaintings early in his career. During his stay in Italy in the 1750s he turned his\nattention exclusively to depictions of arcadian landscape and developed a personal\nstyle that freed him from the realistic constraints of his earlier works. Indeed,\nItaly's golden Mediterranean light and the ancient ruins that evoked the glory of\nits classical past affected Wilson long after his return to London in 1756. Like\nhis contemporary Reynolds, Wilson sought to elevate the status of his genre of painting\nthrough the systematic application of classical standards.\n In this landscape the artist draws on his memories of the Italian countryside as\nwell as on his imagination to create a richly detailed panorama, suffused with a\nquiet and evocative mood. On a massive pedestal stands the ruin of a statue of a\nlion with a globe under its paw, symbolizing the inevitability of death and decay.\nThe pagan hermit reading at the base of the statue and the two Christian monks to\nthe left, their church highlighted in a clearing in the woods, seem to share a common\nhope of discovering answers to the mysteries of life.\n " +p282625 +sa(dp282626 +g225230 +S'The Corinthian Maid' +p282627 +sg225232 +S'Joseph Wright' +p282628 +sg225234 +S'oil on canvas' +p282629 +sg225236 +S'1782-1784' +p282630 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000742.jpg' +p282631 +sg225240 +S'Josiah Wedgwood, the pioneer of pottery manufacturing, commissioned this \r\n mythological scene that illustrates the invention of the art of modeling \r\n bas-relief sculpture. Wedgwood’s own fired-clay vessels, decorated with low \r\n reliefs, would have been seen by an eighteenth-century audience as the \r\n aesthetic descendants of this ancient Greek maiden’s attempt to preserve \r\n her beloved’s profile.\n The girl was the daughter of a potter in Corinth. Her boyfriend was \r\n about to embark on a perilous journey to foreign lands, taking only his \r\n spear and dog. As a memento, she traced her sleeping lover’s silhouette \r\n onto the wall. Her father then used the drawing to model a clay relief, \r\n which he baked in his kiln to create a ceramic keepsake.\n Joseph Wright, a master of artificial illumination, concealed a \r\n hanging lamp behind the curtain, suggesting the source of the beams that \r\n cast the youth’s shadow. In contrast to the lamp’s gentle glow, intense \r\n sparks and embers leap inside the potter’s fiery furnace.\n Wright researched his topic for archeological accuracy. Wedgwood \r\n loaned antique vases from his own art collection so that Wright could copy \r\n their shapes, and the clothing derives from ancient sculpture. Classical \r\n symmetry pervades the design; the curtain and archway flank the focal \r\n action of the maiden’s stylus tracing the youth’s profile.\n ' +p282632 +sa(dp282633 +g225230 +S'Italian Landscape' +p282634 +sg225232 +S'Joseph Wright' +p282635 +sg225234 +S'oil on canvas' +p282636 +sg225236 +S'1790' +p282637 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a00004e6.jpg' +p282638 +sg225240 +S'Wright\'s artistic interests varied widely, ranging from portraiture and scientific\ntopics in his early "candlelight" period to popular subjects, romantic history,\nliterature, and landscapes in later years. This painting dates from the end of Wright\'s\ncareer. It is a romantic and fantastic blend of his memories of Italy and the countryside\nof his native Derby.\n In the foreground, a rustic figure sits by the side of a rock-strewn path; he is\na small, lonely human presence in this broad and arresting view of nature. A path\nwinds above him to the villas in the hills, while to the right the land gives way\nto a rolling meadow, a still lake, and a distant mountain. In the background great\nmasses of earth rise dramatically, culminating in a long silhouette against the\npale blue sky.\n Wright\'s unorthodox use of color in the cliffs has an expressionistic quality that\nseems to foreshadow the works of later artists. At a distance from the painting\nthe sharp contrast between the colors emphasizes the geometry of the forms. Viewed\ncloser, the forms begin to flatten out into abstract patterns. While Wright\'s vision\nof nature is romantic in its use of light and color and in its pervasive nostalgic\nmood, it is also classical in its purity of line and form and in its controlled\nand balanced composition.\n ' +p282639 +sa(dp282640 +g225230 +S'The Lavie Children' +p282641 +sg225232 +S'Johann Zoffany' +p282642 +sg225234 +S'oil on canvas' +p282643 +sg225236 +S'c. 1770' +p282644 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00007/a0000743.jpg' +p282645 +sg225240 +S'When Johann Zoffany arrived in London in 1760, the\r\n twenty-seven-year-old \r\n painter already had worked in Rome and his native Germany. Under\r\n the \r\n patronage of the celebrated actor David Garrick, Zoffany came to\r\n the \r\n attention of the royal family. Zoffany’s fame rested on lively\r\n depictions \r\n of actors performing on stage and of connoisseurs examining art\r\n galleries. \r\n Revitalizing the conversation-piece format developed by \r\n \n The Lavie Children\n ' +p282646 +sa(dp282647 +g225230 +S'Obus' +p282648 +sg225232 +S'Alexander Calder' +p282649 +sg225234 +S'painted sheet metal' +p282650 +sg225236 +S'1972' +p282651 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a0001654.jpg' +p282652 +sg225240 +g27 +sa(dp282653 +g225232 +S'Mary Callery' +p282654 +sg225240 +g27 +sg225234 +S'bronze' +p282655 +sg225230 +S'Epoque de Rennes' +p282656 +sg225236 +S'1960' +p282657 +sa(dp282658 +g225230 +S'Mother and Child' +p282659 +sg225232 +S'Aim\xc3\xa9-Jules Dalou' +p282660 +sg225234 +S'terracotta' +p282661 +sg225236 +S'c. 1873' +p282662 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00029/a0002957.jpg' +p282663 +sg225240 +g27 +sa(dp282664 +g225230 +S'Ailsa Mellon Bruce' +p282665 +sg225232 +S'Jo Davidson' +p282666 +sg225234 +S'marble' +p282667 +sg225236 +S'1927' +p282668 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a0001664.jpg' +p282669 +sg225240 +g27 +sa(dp282670 +g225232 +S'Charles Despiau' +p282671 +sg225240 +g27 +sg225234 +S'bronze' +p282672 +sg225230 +S'Adolescent Girl' +p282673 +sg225236 +S'1921' +p282674 +sa(dp282675 +g225232 +S'Fernand L\xc3\xa9ger' +p282676 +sg225240 +g27 +sg225234 +S'bronze' +p282677 +sg225230 +S'Composition with Fruit' +p282678 +sg225236 +S'c. 1950/1952' +p282679 +sa(dp282680 +g225232 +S'Fernand L\xc3\xa9ger' +p282681 +sg225240 +g27 +sg225234 +S'bronze' +p282682 +sg225230 +S'Bird among Flowers' +p282683 +sg225236 +S'c. 1950/1952' +p282684 +sa(dp282685 +g225232 +S'Aristide Maillol' +p282686 +sg225240 +g27 +sg225234 +S'terracotta' +p282687 +sg225230 +S'Modesty' +p282688 +sg225236 +S'c. 1900' +p282689 +sa(dp282690 +g225232 +S'Aristide Maillol' +p282691 +sg225240 +g27 +sg225234 +S'terracotta' +p282692 +sg225230 +S'Reclining Nude' +p282693 +sg225236 +S'c. 1900' +p282694 +sa(dp282695 +g225232 +S'Aristide Maillol' +p282696 +sg225240 +g27 +sg225234 +S'terracotta' +p282697 +sg225230 +S'Rosita' +p282698 +sg225236 +S'c. 1890/1899' +p282699 +sa(dp282700 +g225232 +S'Aristide Maillol' +p282701 +sg225240 +g27 +sg225234 +S'terracotta' +p282702 +sg225230 +S'Seated Woman' +p282703 +sg225236 +S'c. 1900' +p282704 +sa(dp282705 +g225232 +S'Aristide Maillol' +p282706 +sg225240 +g27 +sg225234 +S'bronze' +p282707 +sg225230 +S'Torso of a Young Woman' +p282708 +sg225236 +S'c. 1930' +p282709 +sa(dp282710 +g225232 +S'Aristide Maillol' +p282711 +sg225240 +g27 +sg225234 +S'stone' +p282712 +sg225230 +S'Two Young Girls' +p282713 +sg225236 +S'c. 1930' +p282714 +sa(dp282715 +g225232 +S'Aristide Maillol' +p282716 +sg225240 +g27 +sg225234 +S'terracotta' +p282717 +sg225230 +S'Women Wrestlers' +p282718 +sg225236 +S'1900' +p282719 +sa(dp282720 +g225232 +S'Giacomo Manz\xc3\xb9' +p282721 +sg225240 +g27 +sg225234 +S'bronze' +p282722 +sg225230 +S'Sheaves of Wheat' +p282723 +sg225236 +S'1960' +p282724 +sa(dp282725 +g225232 +S'Giacomo Manz\xc3\xb9' +p282726 +sg225240 +g27 +sg225234 +S'bronze' +p282727 +sg225230 +S'Vine Branches' +p282728 +sg225236 +S'1960' +p282729 +sa(dp282730 +g225232 +S'Giacomo Manz\xc3\xb9' +p282731 +sg225240 +g27 +sg225234 +S'bronze' +p282732 +sg225230 +S'Model Undressing II' +p282733 +sg225236 +S'1965' +p282734 +sa(dp282735 +g225232 +S'Giacomo Manz\xc3\xb9' +p282736 +sg225240 +g27 +sg225234 +S'bronze' +p282737 +sg225230 +S'Mother and Child' +p282738 +sg225236 +S'1956' +p282739 +sa(dp282740 +g225232 +S'Giacomo Manz\xc3\xb9' +p282741 +sg225240 +g27 +sg225234 +S'bronze' +p282742 +sg225230 +S'Dead Bird' +p282743 +sg225236 +S'1962' +p282744 +sa(dp282745 +g225232 +S'Giacomo Manz\xc3\xb9' +p282746 +sg225240 +g27 +sg225234 +S'bronze' +p282747 +sg225230 +S'Dormouse' +p282748 +sg225236 +S'1962' +p282749 +sa(dp282750 +g225232 +S'Giacomo Manz\xc3\xb9' +p282751 +sg225240 +g27 +sg225234 +S'bronze' +p282752 +sg225230 +S'Hedgehog' +p282753 +sg225236 +S'1962' +p282754 +sa(dp282755 +g225232 +S'Giacomo Manz\xc3\xb9' +p282756 +sg225240 +g27 +sg225234 +S'bronze' +p282757 +sg225230 +S'Owl and Mouse' +p282758 +sg225236 +S'1962' +p282759 +sa(dp282760 +g225232 +S'Henry Moore' +p282761 +sg225240 +g27 +sg225234 +S'roman travertine' +p282762 +sg225230 +S'Stone Memorial' +p282763 +sg225236 +S'1961/1969' +p282764 +sa(dp282765 +g225230 +S'Maternity: Madame Renoir and Son' +p282766 +sg225232 +S'Auguste Renoir' +p282767 +sg225234 +S'terracotta' +p282768 +sg225236 +S'c. 1916' +p282769 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00043/a00043f9.jpg' +p282770 +sg225240 +S"Renoir's wife Aline had always been among his favorite models. Her fresh, full face and figure appeared in paintings throughout his career.\n When Aline died in 1915, Renoir decided to create a monument to mark her gravesite. The painter had turned to sculpture several years before, when rheumatoid arthritis made it too difficult to manipulate a paintbrush. With young Catalan artist Richard Guino (who had studied sculpture with \n For this sculpture, Renoir used a portrait he had made of Aline nursing their first-born son, Pierre, some twenty years before. In the painting, Aline, dressed casually in sunhat and seated in her garden, looks up from the chubby baby she holds to her breast. Renoir loved her natural, unselfconscious look; he equated this image of motherhood with the constancy and timelessness of nature.\n In the end, Renoir did not expand the small terracotta into a monument, instead he enlarged and cast just the head and bust to mark Aline's grave. A full replica of \n " +p282771 +sa(dp282772 +g225230 +S'Anne and Her Mother' +p282773 +sg225232 +S'George Bellows' +p282774 +sg225234 +S'black crayon and graphite on wove paper' +p282775 +sg225236 +S'1917' +p282776 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008b1.jpg' +p282777 +sg225240 +g27 +sa(dp282778 +g225230 +S'Sketch for the Arms and Hands of Mrs. Philip Wase' +p282779 +sg225232 +S'George Bellows' +p282780 +sg225234 +S'black conte crayon' +p282781 +sg225236 +S'1924' +p282782 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e5/a000e565.jpg' +p282783 +sg225240 +g27 +sa(dp282784 +g225230 +S'An Irish Girl' +p282785 +sg225232 +S'George Bellows' +p282786 +sg225234 +S'black crayon' +p282787 +sg225236 +S'1922' +p282788 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e5/a000e564.jpg' +p282789 +sg225240 +g27 +sa(dp282790 +g225232 +S'George Bellows' +p282791 +sg225240 +g27 +sg225234 +S'black conte crayon' +p282792 +sg225230 +S'The Kindliness Came Not from Her' +p282793 +sg225236 +S'1922' +p282794 +sa(dp282795 +g225230 +S'Lady of 1860 - The Actress' +p282796 +sg225232 +S'George Bellows' +p282797 +sg225234 +S'graphite and charcoal on wove paper' +p282798 +sg225236 +S'1922' +p282799 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e5/a000e566.jpg' +p282800 +sg225240 +g27 +sa(dp282801 +g225230 +S'Nude Girl Reclining' +p282802 +sg225232 +S'George Bellows' +p282803 +sg225234 +S'black crayon on wove paper' +p282804 +sg225236 +S'1919' +p282805 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008aa.jpg' +p282806 +sg225240 +g27 +sa(dp282807 +g225232 +S'George Bellows' +p282808 +sg225240 +g27 +sg225234 +S'black chalk, pen and brush and black ink, and pen and white ink with scratching out over graphite on wove paper' +p282809 +sg225230 +S'Dancing Town (The Top of the World)' +p282810 +sg225236 +S'1922' +p282811 +sa(dp282812 +g225230 +S'A Winter Day - Under the Elevated near Brooklyn Bridge' +p282813 +sg225232 +S'George Bellows' +p282814 +sg225234 +S'brush and ink, watercolor and colored crayon' +p282815 +sg225236 +S'c. 1907' +p282816 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008ab.jpg' +p282817 +sg225240 +g27 +sa(dp282818 +g225230 +S'Woodstock Road, Woodstock, New York' +p282819 +sg225232 +S'George Bellows' +p282820 +sg225234 +S'black crayon on wove paper' +p282821 +sg225236 +S'1924' +p282822 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008ac.jpg' +p282823 +sg225240 +g27 +sa(dp282824 +g225230 +S'Allan Donn Puts to Sea' +p282825 +sg225232 +S'George Bellows' +p282826 +sg225234 +S'lithograph on wove paper' +p282827 +sg225236 +S'1923' +p282828 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00112/a0011238.jpg' +p282829 +sg225240 +g27 +sa(dp282830 +g225230 +S'Dempsey and Firpo' +p282831 +sg225232 +S'George Bellows' +p282832 +sg225234 +S'lithograph' +p282833 +sg225236 +S'1923/1924' +p282834 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a24.jpg' +p282835 +sg225240 +g27 +sa(dp282836 +g225230 +S'Emma in a Chair, or Lady with a Fan' +p282837 +sg225232 +S'George Bellows' +p282838 +sg225234 +S'lithograph' +p282839 +sg225236 +S'1921' +p282840 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000fc/a000fc4b.jpg' +p282841 +sg225240 +g27 +sa(dp282842 +g225230 +S'Lychnis and her Sons' +p282843 +sg225232 +S'George Bellows' +p282844 +sg225234 +S'lithograph' +p282845 +sg225236 +S'1923' +p282846 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c60f.jpg' +p282847 +sg225240 +g27 +sa(dp282848 +g225230 +S'Marjorie, Emma and Elsie' +p282849 +sg225232 +S'George Bellows' +p282850 +sg225234 +S'lithograph' +p282851 +sg225236 +S'1921' +p282852 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000fc/a000fc4a.jpg' +p282853 +sg225240 +g27 +sa(dp282854 +g225230 +S'Mother and Children' +p282855 +sg225232 +S'George Bellows' +p282856 +sg225234 +S'lithograph' +p282857 +sg225236 +S'1916' +p282858 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00112/a0011232.jpg' +p282859 +sg225240 +g27 +sa(dp282860 +g225230 +S'Preliminaries to the Big Bout' +p282861 +sg225232 +S'George Bellows' +p282862 +sg225234 +S'lithograph' +p282863 +sg225236 +S'1916' +p282864 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00112/a0011237.jpg' +p282865 +sg225240 +g27 +sa(dp282866 +g225230 +S'Sixteen East Gay Street' +p282867 +sg225232 +S'George Bellows' +p282868 +sg225234 +S'lithograph' +p282869 +sg225236 +S'1923/1924' +p282870 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c612.jpg' +p282871 +sg225240 +g27 +sa(dp282872 +g225230 +S'Sunday, Going to Church' +p282873 +sg225232 +S'George Bellows' +p282874 +sg225234 +S'lithograph on laid (possibly Chinese) paper' +p282875 +sg225236 +S'1921' +p282876 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00112/a0011233.jpg' +p282877 +sg225240 +g27 +sa(dp282878 +g225230 +S'Tennis Tournament' +p282879 +sg225232 +S'George Bellows' +p282880 +sg225234 +S'lithograph' +p282881 +sg225236 +S'c. 1921' +p282882 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c1/a000c1c1.jpg' +p282883 +sg225240 +g27 +sa(dp282884 +g225232 +S'George Bellows' +p282885 +sg225240 +g27 +sg225234 +S'lithograph on chine applique' +p282886 +sg225230 +S'Tennis Tournament' +p282887 +sg225236 +S'c. 1921' +p282888 +sa(dp282889 +g225230 +S'Dampfer und Segelbote (Dredger and Sailboat)' +p282890 +sg225232 +S'Paul Klee' +p282891 +sg225234 +S"watercolor on laid paper, on Klee's original mount" +p282892 +sg225236 +S'1931' +p282893 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00021/a0002172.jpg' +p282894 +sg225240 +g27 +sa(dp282895 +g225230 +S'Studies of Jean' +p282896 +sg225232 +S'George Bellows' +p282897 +sg225234 +S'graphite on wove paper' +p282898 +sg225236 +S'c. 1920' +p282899 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e5/a000e562.jpg' +p282900 +sg225240 +g27 +sa(dp282901 +g225230 +S'The Cross in the Wilderness' +p282902 +sg225232 +S'Thomas Cole' +p282903 +sg225234 +S'graphite with gray-green, green-brown, and white chalk on gray paper' +p282904 +sg225236 +S'c. 1844' +p282905 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008c1.jpg' +p282906 +sg225240 +g27 +sa(dp282907 +g225230 +S'Self-Portrait' +p282908 +sg225232 +S'Marsden Hartley' +p282909 +sg225234 +S'black crayon on wove paper laid on bristol board' +p282910 +sg225236 +S'1908' +p282911 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008f2.jpg' +p282912 +sg225240 +g27 +sa(dp282913 +g225230 +S'Studies for "Washington Crossing the Delaware" [recto]' +p282914 +sg225232 +S'Emanuel Gottlieb Leutze' +p282915 +sg225234 +S'pen and brown ink and graphite on wove paper' +p282916 +sg225236 +S'1849' +p282917 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4b6.jpg' +p282918 +sg225240 +g27 +sa(dp282919 +g225232 +S'Emanuel Gottlieb Leutze' +p282920 +sg225240 +g27 +sg225234 +S'graphite on wove paper' +p282921 +sg225230 +S'Study of Half-Length Figure with Pole [verso]' +p282922 +sg225236 +S'1849' +p282923 +sa(dp282924 +g225230 +S'Shepard Alonzo Mount, Age Twenty-Three [recto]' +p282925 +sg225232 +S'William Sidney Mount' +p282926 +sg225234 +S'graphite' +p282927 +sg225236 +S'1827' +p282928 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0dd.jpg' +p282929 +sg225240 +g27 +sa(dp282930 +g225232 +S'William Sidney Mount' +p282931 +sg225240 +g27 +sg225234 +S'graphite' +p282932 +sg225230 +S'Sketch of a Standing Man [verso]' +p282933 +sg225236 +S'1827' +p282934 +sa(dp282935 +g225232 +S'John Sloan' +p282936 +sg225240 +g27 +sg225234 +S'graphite, black crayon, brush and black and gray ink with gray wash on paperboard' +p282937 +sg225230 +S'Medusa Beer Truck' +p282938 +sg225236 +S'1908' +p282939 +sa(dp282940 +g225232 +S'Jean Arp' +p282941 +sg225240 +g27 +sg225234 +S'wood' +p282942 +sg225230 +S'Shirt Front and Fork' +p282943 +sg225236 +S'1922' +p282944 +sa(dp282945 +g225230 +S'Arms of a Boxer' +p282946 +sg225232 +S'George Bellows' +p282947 +sg225234 +S'black chalk on wove paper' +p282948 +sg225236 +S'1916' +p282949 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e5/a000e563.jpg' +p282950 +sg225240 +g27 +sa(dp282951 +g225232 +S'Artist Information (' +p282952 +sg225240 +g27 +sg225234 +S'(artist after)' +p282953 +sg225230 +S'Allegory of the Clemency and Triumph of the Theological Virtues' +p282954 +sg225236 +S'\n' +p282955 +sa(dp282956 +g225230 +S'Bather on the Beach' +p282957 +sg225232 +S'Ernst Ludwig Kirchner' +p282958 +sg225234 +S'black crayon with blue and gray wash' +p282959 +sg225236 +S'1912/1913' +p282960 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00029/a0002961.jpg' +p282961 +sg225240 +g27 +sa(dp282962 +g225230 +S'Saint Christopher' +p282963 +sg225232 +S'Albrecht Altdorfer' +p282964 +sg225234 +S'engraving' +p282965 +sg225236 +S'c. 1515/1520' +p282966 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a760.jpg' +p282967 +sg225240 +g27 +sa(dp282968 +g225230 +S'The Conversion of Saint Paul' +p282969 +sg225232 +S'Artist Information (' +p282970 +sg225234 +S'(artist after)' +p282971 +sg225236 +S'\n' +p282972 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c843.jpg' +p282973 +sg225240 +g27 +sa(dp282974 +g225230 +S'Two Nude Youths [recto]' +p282975 +sg225232 +S'Federico Barocci' +p282976 +sg225234 +S'black chalk heightened with white, contours (of standing figure) incised, on blue paper' +p282977 +sg225236 +S'c. 1565/1567' +p282978 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0003a/a0003a02.jpg' +p282979 +sg225240 +g27 +sa(dp282980 +g225230 +S'Half-Length of Mary Magdalene [verso]' +p282981 +sg225232 +S'Federico Barocci' +p282982 +sg225234 +S'black chalk heightened with white on blue paper' +p282983 +sg225236 +S'c. 1565/1567' +p282984 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00031/a0003191.jpg' +p282985 +sg225240 +g27 +sa(dp282986 +g225232 +S'Rodolfo Abularach' +p282987 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in blue and black on white Nacre paper' +p282988 +sg225230 +S'City of the Eyes I' +p282989 +sg225236 +S'1966' +p282990 +sa(dp282991 +g225232 +S'Rodolfo Abularach' +p282992 +sg225240 +g27 +sg225234 +S'portfolio with 10 lithographs (stone and zinc) in black, blue, violet, and red on white Nacre paper' +p282993 +sg225230 +S'City of the Eyes' +p282994 +sg225236 +S'1966' +p282995 +sa(dp282996 +g225232 +S'Rodolfo Abularach' +p282997 +sg225240 +g27 +sg225234 +S'lithograph (stone) in blue on white Nacre paper' +p282998 +sg225230 +S'City of the Eyes II' +p282999 +sg225236 +S'1966' +p283000 +sa(dp283001 +g225232 +S'Rodolfo Abularach' +p283002 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in blue and black on white Nacre paper' +p283003 +sg225230 +S'City of the Eyes III' +p283004 +sg225236 +S'1966' +p283005 +sa(dp283006 +g225232 +S'Rodolfo Abularach' +p283007 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in violet and black onwhite Nacre paper' +p283008 +sg225230 +S'City of the Eyes IV' +p283009 +sg225236 +S'1966' +p283010 +sa(dp283011 +g225232 +S'Rodolfo Abularach' +p283012 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p283013 +sg225230 +S'City of the Eyes V' +p283014 +sg225236 +S'1966' +p283015 +sa(dp283016 +g225232 +S'Rodolfo Abularach' +p283017 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p283018 +sg225230 +S'City of the Eyes VI' +p283019 +sg225236 +S'1966' +p283020 +sa(dp283021 +g225232 +S'Rodolfo Abularach' +p283022 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in red and black on white Nacre paper' +p283023 +sg225230 +S'City of the Eyes VII' +p283024 +sg225236 +S'1966' +p283025 +sa(dp283026 +g225232 +S'Rodolfo Abularach' +p283027 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p283028 +sg225230 +S'City of the Eyes VIII' +p283029 +sg225236 +S'1966' +p283030 +sa(dp283031 +g225232 +S'Rodolfo Abularach' +p283032 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in violet and black onwhite Nacre paper' +p283033 +sg225230 +S'City of the Eyes IX' +p283034 +sg225236 +S'1966' +p283035 +sa(dp283036 +g225232 +S'Rodolfo Abularach' +p283037 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p283038 +sg225230 +S'City of the Eyes X' +p283039 +sg225236 +S'1966' +p283040 +sa(dp283041 +g225232 +S'Rodolfo Abularach' +p283042 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Magnani Italia paper' +p283043 +sg225230 +S'Untitled' +p283044 +sg225236 +S'1966' +p283045 +sa(dp283046 +g225232 +S'Rodolfo Abularach' +p283047 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Magnani Italia paper' +p283048 +sg225230 +S'Window' +p283049 +sg225236 +S'1966' +p283050 +sa(dp283051 +g225232 +S'Rodolfo Abularach' +p283052 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Rives BFK paper' +p283053 +sg225230 +S'Untitled' +p283054 +sg225236 +S'1966' +p283055 +sa(dp283056 +g225232 +S'Rodolfo Abularach' +p283057 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light brown and black on Magnani Italia paper' +p283058 +sg225230 +S'Untitled' +p283059 +sg225236 +S'1966' +p283060 +sa(dp283061 +g225232 +S'Rodolfo Abularach' +p283062 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p283063 +sg225230 +S'Ascension' +p283064 +sg225236 +S'1966' +p283065 +sa(dp283066 +g225232 +S'Rodolfo Abularach' +p283067 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Magnani Italia paper' +p283068 +sg225230 +S'Untitled' +p283069 +sg225236 +S'1966' +p283070 +sa(dp283071 +g225232 +S'Rodolfo Abularach' +p283072 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p283073 +sg225230 +S'Enigma' +p283074 +sg225236 +S'1966' +p283075 +sa(dp283076 +g225232 +S'Rodolfo Abularach' +p283077 +sg225240 +g27 +sg225234 +S'lithograph (stone) in violet, blue and dark brown on Magnani Italia paper' +p283078 +sg225230 +S'Untitled' +p283079 +sg225236 +S'1966' +p283080 +sa(dp283081 +g225232 +S'Rodolfo Abularach' +p283082 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p283083 +sg225230 +S'Untitled' +p283084 +sg225236 +S'1966' +p283085 +sa(dp283086 +g225232 +S'Rodolfo Abularach' +p283087 +sg225240 +g27 +sg225234 +S'lithograph (stone) in dark violet and dark blue onwhite Nacre paper' +p283088 +sg225230 +S'Untitled' +p283089 +sg225236 +S'1966' +p283090 +sa(dp283091 +g225232 +S'Rodolfo Abularach' +p283092 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p283093 +sg225230 +S'Untitled' +p283094 +sg225236 +S'1966' +p283095 +sa(dp283096 +g225232 +S'Rodolfo Abularach' +p283097 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p283098 +sg225230 +S'Untitled' +p283099 +sg225236 +S'1966' +p283100 +sa(dp283101 +g225232 +S'Rodolfo Abularach' +p283102 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p283103 +sg225230 +S'Untitled' +p283104 +sg225236 +S'1966' +p283105 +sa(dp283106 +g225232 +S'Rodolfo Abularach' +p283107 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p283108 +sg225230 +S'Untitled' +p283109 +sg225236 +S'1966' +p283110 +sa(dp283111 +g225232 +S'Rodolfo Abularach' +p283112 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p283113 +sg225230 +S'Untitled' +p283114 +sg225236 +S'1966' +p283115 +sa(dp283116 +g225232 +S'Rodolfo Abularach' +p283117 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p283118 +sg225230 +S'Untitled' +p283119 +sg225236 +S'1966' +p283120 +sa(dp283121 +g225232 +S'Rodolfo Abularach' +p283122 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p283123 +sg225230 +S'Untitled' +p283124 +sg225236 +S'1966' +p283125 +sa(dp283126 +g225232 +S'Rodolfo Abularach' +p283127 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p283128 +sg225230 +S'Untitled' +p283129 +sg225236 +S'1966' +p283130 +sa(dp283131 +g225232 +S'Rodolfo Abularach' +p283132 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in orange, blue, violet and black on white Nacre paper' +p283133 +sg225230 +S'Untitled' +p283134 +sg225236 +S'1966' +p283135 +sa(dp283136 +g225232 +S'Rodolfo Abularach' +p283137 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p283138 +sg225230 +S'Shrine' +p283139 +sg225236 +S'1966' +p283140 +sa(dp283141 +g225232 +S'Rodolfo Abularach' +p283142 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p283143 +sg225230 +S'Shrine' +p283144 +sg225236 +S'1966' +p283145 +sa(dp283146 +g225232 +S'Rodolfo Abularach' +p283147 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p283148 +sg225230 +S'Untitled' +p283149 +sg225236 +S'1966' +p283150 +sa(dp283151 +g225232 +S'Clinton Adams' +p283152 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in two grays, red,and two oranges on German Etching paper' +p283153 +sg225230 +S'Venus in Cibola I' +p283154 +sg225236 +S'1968' +p283155 +sa(dp283156 +g225232 +S'Clinton Adams' +p283157 +sg225240 +g27 +sg225234 +S'portfolio with 10 lithographs (aluminum and stone) plus title page and colophon on German Etching paper' +p283158 +sg225230 +S'Venus in Cibola' +p283159 +sg225236 +S'1968/1969' +p283160 +sa(dp283161 +g225232 +S'Clinton Adams' +p283162 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in gray and red-brown on German Etching paper' +p283163 +sg225230 +S'Venus in Cibola II' +p283164 +sg225236 +S'1968/1969' +p283165 +sa(dp283166 +g225232 +S'Clinton Adams' +p283167 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in gray and two yellows on German Etching paper' +p283168 +sg225230 +S'Venus in Cibola III' +p283169 +sg225236 +S'1969' +p283170 +sa(dp283171 +g225232 +S'Clinton Adams' +p283172 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in two blues and three greens on German Etching paper' +p283173 +sg225230 +S'Venus in Cibola IV' +p283174 +sg225236 +S'1968' +p283175 +sa(dp283176 +g225232 +S'Clinton Adams' +p283177 +sg225240 +g27 +sg225234 +S'lithograph' +p283178 +sg225230 +S'Venus in Cibola V' +p283179 +sg225236 +S'unknown date\n' +p283180 +sa(dp283181 +g225232 +S'Clinton Adams' +p283182 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in two reds and green on German Etching paper' +p283183 +sg225230 +S'Venus in Cibola VI' +p283184 +sg225236 +S'1968/1969' +p283185 +sa(dp283186 +g225232 +S'Clinton Adams' +p283187 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in red, blue and black on German Etching paper' +p283188 +sg225230 +S'Venus in Cibola VII' +p283189 +sg225236 +S'1968/1969' +p283190 +sa(dp283191 +g225232 +S'Clinton Adams' +p283192 +sg225240 +g27 +sg225234 +S'lithograph (stone) in yellow and two beiges on German Etching paper' +p283193 +sg225230 +S'Venus in Cibola VIII' +p283194 +sg225236 +S'1968' +p283195 +sa(dp283196 +g225232 +S'Clinton Adams' +p283197 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in two grays on German Etching paper' +p283198 +sg225230 +S'Venus in Cibola IX' +p283199 +sg225236 +S'1968' +p283200 +sa(dp283201 +g225232 +S'Clinton Adams' +p283202 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in two oranges andtwo blues on German Etching paper' +p283203 +sg225230 +S'Venus in Cibola X' +p283204 +sg225236 +S'1969' +p283205 +sa(dp283206 +g225232 +S'Clinton Adams' +p283207 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p283208 +sg225230 +S'Requiem' +p283209 +sg225236 +S'1963' +p283210 +sa(dp283211 +g225230 +S'Cleft' +p283212 +sg225232 +S'Clinton Adams' +p283213 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p283214 +sg225236 +S'1965' +p283215 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000912.jpg' +p283216 +sg225240 +g27 +sa(dp283217 +g225230 +S'Nocturne' +p283218 +sg225232 +S'Clinton Adams' +p283219 +sg225234 +S'lithograph (stone) in gray, three blues, blue-violet and ochre on white Arches paper' +p283220 +sg225236 +S'1965' +p283221 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000913.jpg' +p283222 +sg225240 +g27 +sa(dp283223 +g225230 +S'Enchantress' +p283224 +sg225232 +S'Clinton Adams' +p283225 +sg225234 +S'lithograph (stone) in green and light red on buff Arches paper' +p283226 +sg225236 +S'1965' +p283227 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000914.jpg' +p283228 +sg225240 +g27 +sa(dp283229 +g225232 +S'Clinton Adams' +p283230 +sg225240 +g27 +sg225234 +S'lithograph (stone) in green and black on white Arches paper' +p283231 +sg225230 +S'Arabesque I' +p283232 +sg225236 +S'1966' +p283233 +sa(dp283234 +g225232 +S'Clinton Adams' +p283235 +sg225240 +g27 +sg225234 +S'lithograph (stone) in beige-red, pink, red-brown and light blue-violet on Rives BFK paper' +p283236 +sg225230 +S'Arabesque II' +p283237 +sg225236 +S'1966' +p283238 +sa(dp283239 +g225232 +S'Clinton Adams' +p283240 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on buff Arches paper' +p283241 +sg225230 +S'Sorceress' +p283242 +sg225236 +S'1965' +p283243 +sa(dp283244 +g225230 +S'Circe I' +p283245 +sg225232 +S'Clinton Adams' +p283246 +sg225234 +S'lithograph (stone) in dark beige and black on white Arches paper' +p283247 +sg225236 +S'1965' +p283248 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000915.jpg' +p283249 +sg225240 +g27 +sa(dp283250 +g225230 +S'Circe II' +p283251 +sg225232 +S'Clinton Adams' +p283252 +sg225234 +S'lithograph (stone) in dark beige, violet and red-orange on white Arches paper' +p283253 +sg225236 +S'1965' +p283254 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000916.jpg' +p283255 +sg225240 +g27 +sa(dp283256 +g225232 +S'Clinton Adams' +p283257 +sg225240 +g27 +sg225234 +S'lithograph (stone) in two pinks, red-orange and red on Copperplate Deluxe paper' +p283258 +sg225230 +S'Little Red Arabesque' +p283259 +sg225236 +S'1966' +p283260 +sa(dp283261 +g225232 +S'Clinton Adams' +p283262 +sg225240 +g27 +sg225234 +S'lithograph (stone) in three pinks, red-orange and red-brown on Copperplate Deluxe paper' +p283263 +sg225230 +S'Helios' +p283264 +sg225236 +S'1966' +p283265 +sa(dp283266 +g225232 +S'Clinton Adams' +p283267 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on whtie Arches paper' +p283268 +sg225230 +S'Astarte' +p283269 +sg225236 +S'1966' +p283270 +sa(dp283271 +g225232 +S'Clinton Adams' +p283272 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown, ochre, white and two grays on white Arches paper' +p283273 +sg225230 +S'Sequence' +p283274 +sg225236 +S'1966/1967' +p283275 +sa(dp283276 +g225232 +S'Clinton Adams' +p283277 +sg225240 +g27 +sg225234 +S'lithograph (stone) in two grays and pink-beige on German Etching paper' +p283278 +sg225230 +S'Untitled' +p283279 +sg225236 +S'1967' +p283280 +sa(dp283281 +g225232 +S'Clinton Adams' +p283282 +sg225240 +g27 +sg225234 +S'lithograph (stone) in two beiges and transparent blue-green on German Etching paper' +p283283 +sg225230 +S'Untitled' +p283284 +sg225236 +S'1967/1968' +p283285 +sa(dp283286 +g225232 +S'Clinton Adams' +p283287 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in gray, two bluesand red-brown on German Etching paper' +p283288 +sg225230 +S'Cibola Series (Blue)' +p283289 +sg225236 +S'1968/1969' +p283290 +sa(dp283291 +g225232 +S'Clinton Adams' +p283292 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Rives BFK paper' +p283293 +sg225230 +S'Untitled' +p283294 +sg225236 +S'1968' +p283295 +sa(dp283296 +g225232 +S'Artist Information (' +p283297 +sg225240 +g27 +sg225234 +S'(artist after)' +p283298 +sg225230 +S'Venus Three Times' +p283299 +sg225236 +S'\n' +p283300 +sa(dp283301 +g225232 +S'Clinton Adams' +p283302 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in two grays, two greens and violet-blue on German Etching paper' +p283303 +sg225230 +S'Figure in Green' +p283304 +sg225236 +S'1969' +p283305 +sa(dp283306 +g225232 +S'Clinton Adams' +p283307 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in two browns, yellow and orange on German Etching paper' +p283308 +sg225230 +S'Figure in Yellow' +p283309 +sg225236 +S'1969' +p283310 +sa(dp283311 +g225232 +S'Kenneth Miller Adams' +p283312 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black and white crayons on Arches paper' +p283313 +sg225230 +S'Taos Indian' +p283314 +sg225236 +S'1965' +p283315 +sa(dp283316 +g225232 +S'Kinji Akagawa' +p283317 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in Hanco opaque white and Charbonnel Noir Velours on Copperplate Deluxe paper' +p283318 +sg225230 +S'Black Rainbow I (Title Page)' +p283319 +sg225236 +S'1965' +p283320 +sa(dp283321 +g225232 +S'Kinji Akagawa' +p283322 +sg225240 +g27 +sg225234 +S'portfolio w/ 8 lithographs (stone) in black including title page and colophon on Copperplate Deluxe,Arches and Rives BFK paper' +p283323 +sg225230 +S'Black Rainbow' +p283324 +sg225236 +S'1965' +p283325 +sa(dp283326 +g225232 +S'Kinji Akagawa' +p283327 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black with acid tint on Rives BFK paper' +p283328 +sg225230 +S'Black Rainbow II' +p283329 +sg225236 +S'1965' +p283330 +sa(dp283331 +g225232 +S'Kinji Akagawa' +p283332 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black with acid tint on Arches paper' +p283333 +sg225230 +S'Black Rainbow III' +p283334 +sg225236 +S'1965' +p283335 +sa(dp283336 +g225232 +S'Kinji Akagawa' +p283337 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black with acid tint on Rives BFK paper' +p283338 +sg225230 +S'Black Rainbow IV' +p283339 +sg225236 +S'1965' +p283340 +sa(dp283341 +g225232 +S'Kinji Akagawa' +p283342 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black with acid tint on Arches paper' +p283343 +sg225230 +S'Black Rainbow V' +p283344 +sg225236 +S'1965' +p283345 +sa(dp283346 +g225232 +S'Kinji Akagawa' +p283347 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black with acid tint on Arches paper' +p283348 +sg225230 +S'Black Rainbow VI' +p283349 +sg225236 +S'1965' +p283350 +sa(dp283351 +g225232 +S'Kinji Akagawa' +p283352 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black with acid tint on Copperplate Deluxe paper' +p283353 +sg225230 +S'Black Rainbow VII' +p283354 +sg225236 +S'1965' +p283355 +sa(dp283356 +g225232 +S'Kinji Akagawa' +p283357 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in black on Copperplate Deluxe paper' +p283358 +sg225230 +S'Black Rainbow VIII' +p283359 +sg225236 +S'1965' +p283360 +sa(dp283361 +g225232 +S'Kinji Akagawa' +p283362 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in green, brown and purple on Copperplate Deluxe paper' +p283363 +sg225230 +S'Upsidedown' +p283364 +sg225236 +S'1966' +p283365 +sa(dp283366 +g225232 +S'Kinji Akagawa' +p283367 +sg225240 +g27 +sg225234 +S'portfolio with 6 color lithographs (stone and zinc) on Copperplate Deluxe paper' +p283368 +sg225230 +S'Pink Jelly' +p283369 +sg225236 +S'1966' +p283370 +sa(dp283371 +g225232 +S'Kinji Akagawa' +p283372 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in two blues, pink andgreen on Copperplate Deluxe paper' +p283373 +sg225230 +S'The Clanging Cataclysm' +p283374 +sg225236 +S'1966' +p283375 +sa(dp283376 +g225232 +S'Kinji Akagawa' +p283377 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in blue, red, orange and black on Copperplate Deluxe paper' +p283378 +sg225230 +S'A Tart Sound' +p283379 +sg225236 +S'1966' +p283380 +sa(dp283381 +g225232 +S'Kinji Akagawa' +p283382 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in blue, brown, yellowand orange on Copperplate Deluxe paper' +p283383 +sg225230 +S"The Ten O'Clock Lion" +p283384 +sg225236 +S'1966' +p283385 +sa(dp283386 +g225232 +S'Kinji Akagawa' +p283387 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in blue, two blacks and red on Copperplate Deluxe paper' +p283388 +sg225230 +S'The Sun Moves Round' +p283389 +sg225236 +S'1966' +p283390 +sa(dp283391 +g225232 +S'Kinji Akagawa' +p283392 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in three blues and redon Copperplate Deluxe paper' +p283393 +sg225230 +S'While We Play with the Joy of Life' +p283394 +sg225236 +S'1966' +p283395 +sa(dp283396 +g225232 +S'Kinji Akagawa' +p283397 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in olive green and brown on white Nacre paper' +p283398 +sg225230 +S'Baku No Niji' +p283399 +sg225236 +S'1965' +p283400 +sa(dp283401 +g225232 +S'Kinji Akagawa' +p283402 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Arches paper' +p283403 +sg225230 +S'Play the Piano' +p283404 +sg225236 +S'1965' +p283405 +sa(dp283406 +g225232 +S'Anni Albers' +p283407 +sg225240 +g27 +sg225234 +S'color lithograph in yellow-gray on Arches paper' +p283408 +sg225230 +S'Line Involvement (Title Page)' +p283409 +sg225236 +S'1964' +p283410 +sa(dp283411 +g225232 +S'Anni Albers' +p283412 +sg225240 +g27 +sg225234 +S'portfolio with 6 color lithographs and title page (stone and zinc) on Arches paper' +p283413 +sg225230 +S'Line Involvements' +p283414 +sg225236 +S'1964' +p283415 +sa(dp283416 +g225230 +S'Line Involvement I' +p283417 +sg225232 +S'Anni Albers' +p283418 +sg225234 +S'color lithograph in brown, gray and black on Arches paper' +p283419 +sg225236 +S'1964' +p283420 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000920.jpg' +p283421 +sg225240 +g27 +sa(dp283422 +g225230 +S'Line Involvement II' +p283423 +sg225232 +S'Anni Albers' +p283424 +sg225234 +S'color lithograph in green-black on Arches paper' +p283425 +sg225236 +S'1964' +p283426 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000921.jpg' +p283427 +sg225240 +g27 +sa(dp283428 +g225230 +S'Line Involvement III' +p283429 +sg225232 +S'Anni Albers' +p283430 +sg225234 +S'color lithograph in beige, gray and black on Arches paper' +p283431 +sg225236 +S'1964' +p283432 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000922.jpg' +p283433 +sg225240 +g27 +sa(dp283434 +g225230 +S'Line Involvement IV' +p283435 +sg225232 +S'Anni Albers' +p283436 +sg225234 +S'lithograph in black on Arches paper' +p283437 +sg225236 +S'1964' +p283438 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000923.jpg' +p283439 +sg225240 +g27 +sa(dp283440 +g225230 +S'Line Involvement V' +p283441 +sg225232 +S'Anni Albers' +p283442 +sg225234 +S'lithograph in black on Arches paper' +p283443 +sg225236 +S'1964' +p283444 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000924.jpg' +p283445 +sg225240 +g27 +sa(dp283446 +g225232 +S'Anni Albers' +p283447 +sg225240 +g27 +sg225234 +S'lithograph in black on Arches paper' +p283448 +sg225230 +S'Line Involvement VI' +p283449 +sg225236 +S'1964' +p283450 +sa(dp283451 +g225232 +S'Anni Albers' +p283452 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in red-brown and blackon natural Nacre paper' +p283453 +sg225230 +S'Enmeshed I' +p283454 +sg225236 +S'1963' +p283455 +sa(dp283456 +g225232 +S'Anni Albers' +p283457 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in gray-brown and black on white Arches paper' +p283458 +sg225230 +S'Enmeshed II' +p283459 +sg225236 +S'1963' +p283460 +sa(dp283461 +g225232 +S'Josef Albers' +p283462 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in two grays on white Arches paper' +p283463 +sg225230 +S'Day and Night I' +p283464 +sg225236 +S'1963' +p283465 +sa(dp283466 +g225232 +S'Josef Albers' +p283467 +sg225240 +g27 +sg225234 +S'portfolio w/ 11 color lithographs (zinc and stone)including title/colophon page on white Arches and Rives BFK' +p283468 +sg225230 +S'Day and Night' +p283469 +sg225236 +S'1963' +p283470 +sa(dp283471 +g225232 +S'Josef Albers' +p283472 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in black and blue-gray on white Arches paper' +p283473 +sg225230 +S'Day and Night II' +p283474 +sg225236 +S'1963' +p283475 +sa(dp283476 +g225232 +S'Josef Albers' +p283477 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in four green-grays on white Arches paper' +p283478 +sg225230 +S'Day and Night III' +p283479 +sg225236 +S'1963' +p283480 +sa(dp283481 +g225232 +S'Josef Albers' +p283482 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in brown and green-gray on whiteArches paper' +p283483 +sg225230 +S'Day and Night IV' +p283484 +sg225236 +S'1963' +p283485 +sa(dp283486 +g225232 +S'Josef Albers' +p283487 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in blue-gray, violet-gray and black on white Arches paper' +p283488 +sg225230 +S'Day and Night V' +p283489 +sg225236 +S'1963' +p283490 +sa(dp283491 +g225232 +S'Josef Albers' +p283492 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in two grays and black on white Arches paper' +p283493 +sg225230 +S'Day and Night VI' +p283494 +sg225236 +S'1963' +p283495 +sa(dp283496 +g225232 +S'Josef Albers' +p283497 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in two grays on white Arches paper' +p283498 +sg225230 +S'Day and Night VII' +p283499 +sg225236 +S'1963' +p283500 +sa(dp283501 +g225232 +S'Josef Albers' +p283502 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in black and two grays on white Arches paper' +p283503 +sg225230 +S'Day and Night VIII' +p283504 +sg225236 +S'1963' +p283505 +sa(dp283506 +g225232 +S'Josef Albers' +p283507 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in light brown and light green on white Arches paper' +p283508 +sg225230 +S'Day and Night IX' +p283509 +sg225236 +S'1963' +p283510 +sa(dp283511 +g225232 +S'Josef Albers' +p283512 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in brown, gray, violet and blackon white Arches paper' +p283513 +sg225230 +S'Day and Night X' +p283514 +sg225236 +S'1963' +p283515 +sa(dp283516 +g225232 +S'Josef Albers' +p283517 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Rives BFK paper' +p283518 +sg225230 +S'Day and Night (Title/Colophon Page)' +p283519 +sg225236 +S'1963' +p283520 +sa(dp283521 +g225232 +S'Josef Albers' +p283522 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in black on white Arches paper' +p283523 +sg225230 +S'Midnight and Noon I' +p283524 +sg225236 +S'1964' +p283525 +sa(dp283526 +g225232 +S'Josef Albers' +p283527 +sg225240 +g27 +sg225234 +S'portfolio w/ 8 lithographs (zinc and aluminum) in black, gray, yellow and ochre plus title page and colophon on white Arches paper' +p283528 +sg225230 +S'Midnight and Noon' +p283529 +sg225236 +S'1964' +p283530 +sa(dp283531 +g225232 +S'Josef Albers' +p283532 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in black and gray on white Arhces paper' +p283533 +sg225230 +S'Midnight and Noon II' +p283534 +sg225236 +S'1964' +p283535 +sa(dp283536 +g225232 +S'Josef Albers' +p283537 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in two green-blacks on white Arches paper' +p283538 +sg225230 +S'Midnight and Noon III' +p283539 +sg225236 +S'1964' +p283540 +sa(dp283541 +g225232 +S'Josef Albers' +p283542 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in two blue-blacks on white Arches paper' +p283543 +sg225230 +S'Midnight and Noon IV' +p283544 +sg225236 +S'1964' +p283545 +sa(dp283546 +g225232 +S'Josef Albers' +p283547 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in two yellows on white Arches paper' +p283548 +sg225230 +S'Midnight and Noon V' +p283549 +sg225236 +S'1964' +p283550 +sa(dp283551 +g225232 +S'Josef Albers' +p283552 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in two yellow-ochres on white Arches paper' +p283553 +sg225230 +S'Midnight and Noon VI' +p283554 +sg225236 +S'1964' +p283555 +sa(dp283556 +g225232 +S'Josef Albers' +p283557 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in two yellows on white Arches paper' +p283558 +sg225230 +S'Midnight and Noon VII' +p283559 +sg225236 +S'1964' +p283560 +sa(dp283561 +g225232 +S'Josef Albers' +p283562 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and zinc) in two yellows on white Arches paper' +p283563 +sg225230 +S'Midnight and Noon VIII' +p283564 +sg225236 +S'1964' +p283565 +sa(dp283566 +g225232 +S'John Altoon' +p283567 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p283568 +sg225230 +S'Untitled' +p283569 +sg225236 +S'1965' +p283570 +sa(dp283571 +g225232 +S'John Altoon' +p283572 +sg225240 +g27 +sg225234 +S'lithograph (aluminum, zinc and stone) in orange, blue, pink and black on white Arches paper' +p283573 +sg225230 +S'Untitled' +p283574 +sg225236 +S'1965' +p283575 +sa(dp283576 +g225232 +S'John Altoon' +p283577 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in yellow, blue, pink and black on white Arches paper' +p283578 +sg225230 +S'Untitled' +p283579 +sg225236 +S'1965' +p283580 +sa(dp283581 +g225232 +S'John Altoon' +p283582 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p283583 +sg225230 +S'Untitled' +p283584 +sg225236 +S'1965' +p283585 +sa(dp283586 +g225232 +S'John Altoon' +p283587 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in black, yellow, blueand red-violet on white Arches paper' +p283588 +sg225230 +S'Untitled' +p283589 +sg225236 +S'1965' +p283590 +sa(dp283591 +g225232 +S'John Altoon' +p283592 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown on natural Nacre paper' +p283593 +sg225230 +S'Untitled' +p283594 +sg225236 +S'1965' +p283595 +sa(dp283596 +g225232 +S'John Altoon' +p283597 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in silver, green, two violets, pink and orange on white Arches paper' +p283598 +sg225230 +S'Untitled' +p283599 +sg225236 +S'1968' +p283600 +sa(dp283601 +g225232 +S'John Altoon' +p283602 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in light beige, gold, light blue-green, pink and blue on white Arches paper' +p283603 +sg225230 +S'Untitled' +p283604 +sg225236 +S'1968' +p283605 +sa(dp283606 +g225232 +S'John Altoon' +p283607 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in light blue, light violet, orange, yellow-green and red on white Arches paper' +p283608 +sg225230 +S'Untitled' +p283609 +sg225236 +S'1968' +p283610 +sa(dp283611 +g225232 +S'John Altoon' +p283612 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in pink, three greens and light yellow on German Etching paper' +p283613 +sg225230 +S'Untitled' +p283614 +sg225236 +S'1968' +p283615 +sa(dp283616 +g225232 +S'John Altoon' +p283617 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in yellow-green and pink on German Etching paper' +p283618 +sg225230 +S'Untitled' +p283619 +sg225236 +S'1968' +p283620 +sa(dp283621 +g225232 +S'John Altoon' +p283622 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in light green, blue, yellow, brown and black on Copperplate Deluxe paper' +p283623 +sg225230 +S'Untitled' +p283624 +sg225236 +S'1968' +p283625 +sa(dp283626 +g225232 +S'John Altoon' +p283627 +sg225240 +g27 +sg225234 +S'lithograph (zinc and aluminum) in pink, two greens, light blue, violet and orange on German Etching paper' +p283628 +sg225230 +S'Untitled' +p283629 +sg225236 +S'1968' +p283630 +sa(dp283631 +g225230 +S'Untitled' +p283632 +sg225232 +S'John Altoon' +p283633 +sg225234 +S'lithograph (zinc) in orange, ochre, blue and red on German Etching paper' +p283634 +sg225236 +S'1968' +p283635 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000928.jpg' +p283636 +sg225240 +g27 +sa(dp283637 +g225230 +S'Untitled' +p283638 +sg225232 +S'John Altoon' +p283639 +sg225234 +S'lithograph (zinc) in pink, yellow, blue, blue-green, silver and violet on Copperplate Deluxe paper' +p283640 +sg225236 +S'1968' +p283641 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000929.jpg' +p283642 +sg225240 +g27 +sa(dp283643 +g225232 +S'John Altoon' +p283644 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in yellow, two greens and violeton German Etching paper' +p283645 +sg225230 +S'Untitled' +p283646 +sg225236 +S'1968' +p283647 +sa(dp283648 +g225232 +S'John Altoon' +p283649 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in yellow, blue, red and light green on Copperplate Deluxe paper' +p283650 +sg225230 +S'Untitled' +p283651 +sg225236 +S'1968' +p283652 +sa(dp283653 +g225230 +S'Untitled' +p283654 +sg225232 +S'John Altoon' +p283655 +sg225234 +S'lithograph (zinc) in pink, orange, green, blue andbrown on Copperplate Deluxe paper' +p283656 +sg225236 +S'1968' +p283657 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a000092a.jpg' +p283658 +sg225240 +g27 +sa(dp283659 +g225232 +S'John Altoon' +p283660 +sg225240 +g27 +sg225234 +S'lithograph (zinc, aluminum and stone) in gold, green and blue on German Etching paper' +p283661 +sg225230 +S'Untitled' +p283662 +sg225236 +S'1968' +p283663 +sa(dp283664 +g225232 +S'John Altoon' +p283665 +sg225240 +g27 +sg225234 +S'lithograph (zinc, aluminum and stone) in pink, gold and blue on German Etching paper' +p283666 +sg225230 +S'Untitled' +p283667 +sg225236 +S'1968' +p283668 +sa(dp283669 +g225232 +S'John Altoon' +p283670 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in blue-black on natural Nacre paper' +p283671 +sg225230 +S'Untitled' +p283672 +sg225236 +S'1968' +p283673 +sa(dp283674 +g225232 +S'John Altoon' +p283675 +sg225240 +g27 +sg225234 +S'lithograph (stone) in blue on uncalendered Rives paper' +p283676 +sg225230 +S'Untitled' +p283677 +sg225236 +S'1968' +p283678 +sa(dp283679 +g225232 +S'John Altoon' +p283680 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in brown on Crisbrook Waterleaf paper' +p283681 +sg225230 +S'Untitled' +p283682 +sg225236 +S'1968' +p283683 +sa(dp283684 +g225232 +S'Garo Zareh Antreasian' +p283685 +sg225240 +g27 +sg225234 +S'lithograph (stone) in dark brown, gray-blue and light gray on Copperplate Deluxe paper' +p283686 +sg225230 +S'Quantum I (Title Page)' +p283687 +sg225236 +S'1966/1967' +p283688 +sa(dp283689 +g225232 +S'Garo Zareh Antreasian' +p283690 +sg225240 +g27 +sg225234 +S'portfolio w/ 11 color lithographs (stone) including title page and colophon on Copperplate Deluxe paper' +p283691 +sg225230 +S'Quantum' +p283692 +sg225236 +S'1966/1967' +p283693 +sa(dp283694 +g225232 +S'Garo Zareh Antreasian' +p283695 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p283696 +sg225230 +S'Quantum II' +p283697 +sg225236 +S'1966' +p283698 +sa(dp283699 +g225232 +S'Garo Zareh Antreasian' +p283700 +sg225240 +g27 +sg225234 +S'lithograph (stone) in four blues, two yellows and two grays on Copperplate Deluxe paper' +p283701 +sg225230 +S'Quantum III' +p283702 +sg225236 +S'1966' +p283703 +sa(dp283704 +g225232 +S'Garo Zareh Antreasian' +p283705 +sg225240 +g27 +sg225234 +S'lithograph (stone) in yellow, green, blue, brown, two violets, three grays and two beiges on Copperplate Deluxe paper' +p283706 +sg225230 +S'Quantum IV' +p283707 +sg225236 +S'1966' +p283708 +sa(dp283709 +g225232 +S'Garo Zareh Antreasian' +p283710 +sg225240 +g27 +sg225234 +S'lithograph (stone) in yellow, red, blue, yellow-green, two grays and gray-black on Copperplate Deluxe paper' +p283711 +sg225230 +S'Quantum V' +p283712 +sg225236 +S'1966' +p283713 +sa(dp283714 +g225232 +S'Garo Zareh Antreasian' +p283715 +sg225240 +g27 +sg225234 +S'lithograph' +p283716 +sg225230 +S'Quantum VI' +p283717 +sg225236 +S'1966' +p283718 +sa(dp283719 +g225232 +S'Garo Zareh Antreasian' +p283720 +sg225240 +g27 +sg225234 +S'lithograph (stone) in blended blue-gray, dark red and black on Copperplate Deluxe paper' +p283721 +sg225230 +S'Quantum VII' +p283722 +sg225236 +S'1966' +p283723 +sa(dp283724 +g225232 +S'Garo Zareh Antreasian' +p283725 +sg225240 +g27 +sg225234 +S'lithograph (stone) in two blues, three blue-greens, four grays and black on Copperplate Deluxe paper' +p283726 +sg225230 +S'Quantum VIII' +p283727 +sg225236 +S'1966' +p283728 +sa(dp283729 +g225232 +S'Garo Zareh Antreasian' +p283730 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p283731 +sg225230 +S'Quantum IX' +p283732 +sg225236 +S'1966' +p283733 +sa(dp283734 +g225232 +S'Garo Zareh Antreasian' +p283735 +sg225240 +g27 +sg225234 +S'lithograph (stone) in pink, two violets, two blacks and three greens on Copperplate Deluxe paper' +p283736 +sg225230 +S'Quantum X' +p283737 +sg225236 +S'1966' +p283738 +sa(dp283739 +g225232 +S'Garo Zareh Antreasian' +p283740 +sg225240 +g27 +sg225234 +S'lithograph (stone) in blended red and two browns on Copperplate Deluxe paper' +p283741 +sg225230 +S'Quantum XI (Colophon)' +p283742 +sg225236 +S'1966/1967' +p283743 +sa(dp283744 +g225232 +S'Garo Zareh Antreasian' +p283745 +sg225240 +g27 +sg225234 +S'lithograph (stone) in transparent brown-black on silver foil on German Etching paper' +p283746 +sg225230 +S'Title Page (Silver Suite I)' +p283747 +sg225236 +S'1968' +p283748 +sa(dp283749 +g225232 +S'Garo Zareh Antreasian' +p283750 +sg225240 +g27 +sg225234 +S'portfolio w/ 11 color lithographs (stone) including title page and colophon on German Etching paper' +p283751 +sg225230 +S'The Silver Suite' +p283752 +sg225236 +S'1967/1968' +p283753 +sa(dp283754 +g225230 +S'Untitled (Silver Suite II)' +p283755 +sg225232 +S'Garo Zareh Antreasian' +p283756 +sg225234 +S'lithograph (stone) in light beige and blended pink, two red-browns and blue-gray on silver foil on German Etching paper' +p283757 +sg225236 +S'1968' +p283758 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a000092b.jpg' +p283759 +sg225240 +g27 +sa(dp283760 +g225230 +S'Untitled (Silver Suite III)' +p283761 +sg225232 +S'Garo Zareh Antreasian' +p283762 +sg225234 +S'lithograph (stone) in white, yellow, red, two blues and dark gray on silver foil on German Etching paper' +p283763 +sg225236 +S'1967' +p283764 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a000092c.jpg' +p283765 +sg225240 +g27 +sa(dp283766 +g225232 +S'Garo Zareh Antreasian' +p283767 +sg225240 +g27 +sg225234 +S'lithograph (stone) in six blended grays, red and blue on silver foil on German Etching paper' +p283768 +sg225230 +S'Untitled (Silver Suite IV)' +p283769 +sg225236 +S'1967' +p283770 +sa(dp283771 +g225230 +S'Untitled (Silver Suite V)' +p283772 +sg225232 +S'Garo Zareh Antreasian' +p283773 +sg225234 +S'lithograph (stone) in transparent yellow, transparent blue-green, red and black on silver foil on German Etching paper' +p283774 +sg225236 +S'1968' +p283775 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a000092d.jpg' +p283776 +sg225240 +g27 +sa(dp283777 +g225230 +S'Untitled (Silver Suite VI)' +p283778 +sg225232 +S'Garo Zareh Antreasian' +p283779 +sg225234 +S'lithograph (stone) in orange, black, light blue and red on silver foil on German Etching paper' +p283780 +sg225236 +S'1968' +p283781 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a000092e.jpg' +p283782 +sg225240 +g27 +sa(dp283783 +g225232 +S'Garo Zareh Antreasian' +p283784 +sg225240 +g27 +sg225234 +S'lithograph (stone) in green and blended two pinks,light beige, gray and white on silver foil on Ger man Etching paper' +p283785 +sg225230 +S'Untitled (Silver Suite VII)' +p283786 +sg225236 +S'1968' +p283787 +sa(dp283788 +g225232 +S'Garo Zareh Antreasian' +p283789 +sg225240 +g27 +sg225234 +S'lithograph (stone) in dark brown, red and violet on silver foil on German Etching paper' +p283790 +sg225230 +S'Untitled (Silver Suite VIII)' +p283791 +sg225236 +S'1968' +p283792 +sa(dp283793 +g225232 +S'Garo Zareh Antreasian' +p283794 +sg225240 +g27 +sg225234 +S'lithograph (stone) in four grays on silver foil onGerman Etching paper' +p283795 +sg225230 +S'Untitled (Silver Suite IX)' +p283796 +sg225236 +S'1968' +p283797 +sa(dp283798 +g225230 +S'Untitled (Silver Suite X)' +p283799 +sg225232 +S'Garo Zareh Antreasian' +p283800 +sg225234 +S'lithograph (stone) in transparent copper, white, three blue, blue-violet and black on silver foil onGerman Etching paper' +p283801 +sg225236 +S'1968' +p283802 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a000092f.jpg' +p283803 +sg225240 +g27 +sa(dp283804 +g225232 +S'Garo Zareh Antreasian' +p283805 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown-black on silver foil on German Etching paper' +p283806 +sg225230 +S'Colophon (Silver Suite XI)' +p283807 +sg225236 +S'1968' +p283808 +sa(dp283809 +g225232 +S'Garo Zareh Antreasian' +p283810 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in black on white Arches paper' +p283811 +sg225230 +S'Untitled' +p283812 +sg225236 +S'1961' +p283813 +sa(dp283814 +g225232 +S'Garo Zareh Antreasian' +p283815 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in violet and black, embossed, on Rives BFK paper' +p283816 +sg225230 +S'Untitled' +p283817 +sg225236 +S'1961' +p283818 +sa(dp283819 +g225232 +S'Garo Zareh Antreasian' +p283820 +sg225240 +g27 +sg225234 +S'lithograph (stone) in two blacks and light violet on white Arches paper' +p283821 +sg225230 +S'Black on black' +p283822 +sg225236 +S'1965' +p283823 +sa(dp283824 +g225232 +S'Garo Zareh Antreasian' +p283825 +sg225240 +g27 +sg225234 +S'lithograph (stone) in three grays, two pinks, black, green and red on white Arches paper' +p283826 +sg225230 +S'Glow Box' +p283827 +sg225236 +S'1965' +p283828 +sa(dp283829 +g225232 +S'Garo Zareh Antreasian' +p283830 +sg225240 +g27 +sg225234 +S'lithograph (stone) in three yellows, two violets, red and blue on white Arches paper' +p283831 +sg225230 +S'New Mexico IV' +p283832 +sg225236 +S'1964' +p283833 +sa(dp283834 +g225232 +S'Garo Zareh Antreasian' +p283835 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black, red, blue and orange-yellow on Rives BFK paper' +p283836 +sg225230 +S'Eagles' +p283837 +sg225236 +S'1965' +p283838 +sa(dp283839 +g225232 +S'Garo Zareh Antreasian' +p283840 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red, two blacks, pink and light green on German Etching paper' +p283841 +sg225230 +S'Ojo' +p283842 +sg225236 +S'1965' +p283843 +sa(dp283844 +g225232 +S'Garo Zareh Antreasian' +p283845 +sg225240 +g27 +sg225234 +S'lithograph (stone) in seven pinks, three blues, and two red-browns on Copperplate Deluxe paper' +p283846 +sg225230 +S'Untitled' +p283847 +sg225236 +S'1966' +p283848 +sa(dp283849 +g225232 +S'Garo Zareh Antreasian' +p283850 +sg225240 +g27 +sg225234 +S'lithograph (stone) in white, red, violet, blue andorange on silver foil on German Etching paper' +p283851 +sg225230 +S'Untitled' +p283852 +sg225236 +S'1967' +p283853 +sa(dp283854 +g225232 +S'Garo Zareh Antreasian' +p283855 +sg225240 +g27 +sg225234 +S'lithograph (stone) in two beiges and violet-gray blended on Fasson Aluminum foil and Fasson Chromecote on buff Arches paper' +p283856 +sg225230 +S'Untitled' +p283857 +sg225236 +S'1969' +p283858 +sa(dp283859 +g225232 +S'Garo Zareh Antreasian' +p283860 +sg225240 +g27 +sg225234 +S'lithograph (stone) in yellow-orange, red and blue on white Arches paper' +p283861 +sg225230 +S'Untitled' +p283862 +sg225236 +S'1969' +p283863 +sa(dp283864 +g225232 +S'Garo Zareh Antreasian' +p283865 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black and two grays on RivesBFK paper' +p283866 +sg225230 +S'Untitled' +p283867 +sg225236 +S'1969' +p283868 +sa(dp283869 +g225232 +S'Ruth Asawa' +p283870 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red-brown on German Etching paper' +p283871 +sg225230 +S'Flowers I (Title Page)' +p283872 +sg225236 +S'1965' +p283873 +sa(dp283874 +g225232 +S'Ruth Asawa' +p283875 +sg225240 +g27 +sg225234 +S'portfolio w/ 12 color lithographs (stone) including title page and colophon on German Etching paper' +p283876 +sg225230 +S'Flowers' +p283877 +sg225236 +S'1965' +p283878 +sa(dp283879 +g225232 +S'Ruth Asawa' +p283880 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p283881 +sg225230 +S'Flowers II' +p283882 +sg225236 +S'1965' +p283883 +sa(dp283884 +g225232 +S'Ruth Asawa' +p283885 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p283886 +sg225230 +S'Flowers III' +p283887 +sg225236 +S'1965' +p283888 +sa(dp283889 +g225232 +S'Ruth Asawa' +p283890 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p283891 +sg225230 +S'Flowers IV' +p283892 +sg225236 +S'1965' +p283893 +sa(dp283894 +g225232 +S'Ruth Asawa' +p283895 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red, green and violet on German Etching paper' +p283896 +sg225230 +S'Flowers V' +p283897 +sg225236 +S'1965' +p283898 +sa(dp283899 +g225232 +S'Ruth Asawa' +p283900 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red, green and violet on German Etching paper' +p283901 +sg225230 +S'Flowers VI' +p283902 +sg225236 +S'1965' +p283903 +sa(dp283904 +g225232 +S'Ruth Asawa' +p283905 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red, green and violet on German Etching paper' +p283906 +sg225230 +S'Flowers VII' +p283907 +sg225236 +S'1965' +p283908 +sa(dp283909 +g225232 +S'Ruth Asawa' +p283910 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown-red on German Etching paper' +p283911 +sg225230 +S'Flowers VIII' +p283912 +sg225236 +S'1965' +p283913 +sa(dp283914 +g225232 +S'Ruth Asawa' +p283915 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown-red on German Etching paper' +p283916 +sg225230 +S'Flowers IX' +p283917 +sg225236 +S'1965' +p283918 +sa(dp283919 +g225232 +S'Ruth Asawa' +p283920 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown-red, green and gray onGerman Etching paper' +p283921 +sg225230 +S'Flowers X' +p283922 +sg225236 +S'1965' +p283923 +sa(dp283924 +g225232 +S'Ruth Asawa' +p283925 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown-red, green and gray onGerman Etching paper' +p283926 +sg225230 +S'Flowers XI' +p283927 +sg225236 +S'1965' +p283928 +sa(dp283929 +g225232 +S'Ruth Asawa' +p283930 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red-brown on German Etching paper' +p283931 +sg225230 +S'Flowers XII (Colophon)' +p283932 +sg225236 +S'1965' +p283933 +sa(dp283934 +g225232 +S'Ruth Asawa' +p283935 +sg225240 +g27 +sg225234 +S'lithograph (stone) in orange, yellow and pink on Rives Type IV paper' +p283936 +sg225230 +S'Desert Plant' +p283937 +sg225236 +S'1965' +p283938 +sa(dp283939 +g225232 +S'Ruth Asawa' +p283940 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Rives BFK Type IV paper' +p283941 +sg225230 +S'Desert Flower' +p283942 +sg225236 +S'1965' +p283943 +sa(dp283944 +g225232 +S'Ruth Asawa' +p283945 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p283946 +sg225230 +S'Desert Flower' +p283947 +sg225236 +S'1965' +p283948 +sa(dp283949 +g225232 +S'Ruth Asawa' +p283950 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Rives BFK Type V paper' +p283951 +sg225230 +S'Desert Flower' +p283952 +sg225236 +S'1965' +p283953 +sa(dp283954 +g225232 +S'Ruth Asawa' +p283955 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p283956 +sg225230 +S'Plane Tree' +p283957 +sg225236 +S'1965' +p283958 +sa(dp283959 +g225232 +S'Ruth Asawa' +p283960 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p283961 +sg225230 +S'Plane Tree Reversal' +p283962 +sg225236 +S'1965' +p283963 +sa(dp283964 +g225232 +S'Ruth Asawa' +p283965 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Rives BFK paper' +p283966 +sg225230 +S'Plane Trees' +p283967 +sg225236 +S'1965' +p283968 +sa(dp283969 +g225232 +S'Ruth Asawa' +p283970 +sg225240 +g27 +sg225234 +S'lithograph (stone) in blue-black on white Arches paper' +p283971 +sg225230 +S'Plane Trees II' +p283972 +sg225236 +S'1965' +p283973 +sa(dp283974 +g225232 +S'Ruth Asawa' +p283975 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p283976 +sg225230 +S'Aiko' +p283977 +sg225236 +S'1965' +p283978 +sa(dp283979 +g225232 +S'Ruth Asawa' +p283980 +sg225240 +g27 +sg225234 +S'lithograph (stone) in two greens and green-brown on white Arches paper' +p283981 +sg225230 +S'Spring' +p283982 +sg225236 +S'1965' +p283983 +sa(dp283984 +g225232 +S'Ruth Asawa' +p283985 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on natural Nacre paper' +p283986 +sg225230 +S'Succulents' +p283987 +sg225236 +S'1965' +p283988 +sa(dp283989 +g225232 +S'Ruth Asawa' +p283990 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on natural Nacre paper' +p283991 +sg225230 +S'Umakichi' +p283992 +sg225236 +S'1965' +p283993 +sa(dp283994 +g225232 +S'Ruth Asawa' +p283995 +sg225240 +g27 +sg225234 +S'lithograph (stone) in dark brown on buff Arches paper' +p283996 +sg225230 +S'Umakichi' +p283997 +sg225236 +S'1965' +p283998 +sa(dp283999 +g225232 +S'Ruth Asawa' +p284000 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p284001 +sg225230 +S'Umakichi' +p284002 +sg225236 +S'1965' +p284003 +sa(dp284004 +g225232 +S'Ruth Asawa' +p284005 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Rives BFK Type V paper' +p284006 +sg225230 +S'Umakichi' +p284007 +sg225236 +S'1965' +p284008 +sa(dp284009 +g225232 +S'Ruth Asawa' +p284010 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p284011 +sg225230 +S'Chrysanthemums' +p284012 +sg225236 +S'1965' +p284013 +sa(dp284014 +g225232 +S'Ruth Asawa' +p284015 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown-red and red-black on white Arches paper' +p284016 +sg225230 +S'Chrysanthemums' +p284017 +sg225236 +S'1965' +p284018 +sa(dp284019 +g225232 +S'Ruth Asawa' +p284020 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red-black on Fabriano paper' +p284021 +sg225230 +S'Chrysanthemums' +p284022 +sg225236 +S'1965' +p284023 +sa(dp284024 +g225232 +S'Ruth Asawa' +p284025 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p284026 +sg225230 +S'Pigeons on Cobblestone' +p284027 +sg225236 +S'1965' +p284028 +sa(dp284029 +g225232 +S'Ruth Asawa' +p284030 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in yellow, red anddark green-blue on white Arches paper' +p284031 +sg225230 +S'Poppy' +p284032 +sg225236 +S'1965' +p284033 +sa(dp284034 +g225232 +S'Ruth Asawa' +p284035 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p284036 +sg225230 +S'Untitled' +p284037 +sg225236 +S'1965' +p284038 +sa(dp284039 +g225232 +S'Ruth Asawa' +p284040 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p284041 +sg225230 +S'Babies' +p284042 +sg225236 +S'1965' +p284043 +sa(dp284044 +g225232 +S'Ruth Asawa' +p284045 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p284046 +sg225230 +S'Haru' +p284047 +sg225236 +S'1965' +p284048 +sa(dp284049 +g225232 +S'Ruth Asawa' +p284050 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p284051 +sg225230 +S'Owl' +p284052 +sg225236 +S'1965' +p284053 +sa(dp284054 +g225232 +S'Ruth Asawa' +p284055 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Rives BFK Type IV paper' +p284056 +sg225230 +S'Untitled' +p284057 +sg225236 +S'1965' +p284058 +sa(dp284059 +g225232 +S'Ruth Asawa' +p284060 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in blue and dark blue-violet on Rives BFK Type III paper' +p284061 +sg225230 +S'Untitled' +p284062 +sg225236 +S'1965' +p284063 +sa(dp284064 +g225232 +S'Ruth Asawa' +p284065 +sg225240 +g27 +sg225234 +S'lithograph (stone) in pink on Copperplate Deluxe paper' +p284066 +sg225230 +S'Untitled' +p284067 +sg225236 +S'1965' +p284068 +sa(dp284069 +g225232 +S'Ruth Asawa' +p284070 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p284071 +sg225230 +S'Nude' +p284072 +sg225236 +S'1965' +p284073 +sa(dp284074 +g225232 +S'Ruth Asawa' +p284075 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p284076 +sg225230 +S'Nude' +p284077 +sg225236 +S'1965' +p284078 +sa(dp284079 +g225232 +S'Ruth Asawa' +p284080 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Rives BFK Type V paper' +p284081 +sg225230 +S'Faces' +p284082 +sg225236 +S'1965' +p284083 +sa(dp284084 +g225232 +S'Ruth Asawa' +p284085 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in brown and black on white Arches paper' +p284086 +sg225230 +S'Owl II' +p284087 +sg225236 +S'1965' +p284088 +sa(dp284089 +g225232 +S'Ruth Asawa' +p284090 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red, green and violet on German Etching paper' +p284091 +sg225230 +S'Untitled' +p284092 +sg225236 +S'1965' +p284093 +sa(dp284094 +g225232 +S'Ruth Asawa' +p284095 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in brown, orange and yellow-green on white Arches paper' +p284096 +sg225230 +S'Nasturtiums' +p284097 +sg225236 +S'1965' +p284098 +sa(dp284099 +g225232 +S'Ruth Asawa' +p284100 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p284101 +sg225230 +S'Chair' +p284102 +sg225236 +S'1965' +p284103 +sa(dp284104 +g225232 +S'Ruth Asawa' +p284105 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p284106 +sg225230 +S'Hudson' +p284107 +sg225236 +S'1965' +p284108 +sa(dp284109 +g225232 +S'Ruth Asawa' +p284110 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p284111 +sg225230 +S'Bud' +p284112 +sg225236 +S'1965' +p284113 +sa(dp284114 +g225232 +S'Ruth Asawa' +p284115 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p284116 +sg225230 +S'Fritz and Larry' +p284117 +sg225236 +S'1965' +p284118 +sa(dp284119 +g225232 +S'Ruth Asawa' +p284120 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p284121 +sg225230 +S'Henry and Adam' +p284122 +sg225236 +S'1965' +p284123 +sa(dp284124 +g225232 +S'Ruth Asawa' +p284125 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p284126 +sg225230 +S'Paul' +p284127 +sg225236 +S'1965' +p284128 +sa(dp284129 +g225232 +S'Ruth Asawa' +p284130 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p284131 +sg225230 +S'Xavier' +p284132 +sg225236 +S'1965' +p284133 +sa(dp284134 +g225232 +S'Mario Avati' +p284135 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in red and black on white Arches paper' +p284136 +sg225230 +S'Valentine pour Tamarind' +p284137 +sg225236 +S'1963' +p284138 +sa(dp284139 +g225232 +S'Mario Avati' +p284140 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in beige and black on Copperplate Deluxe paper' +p284141 +sg225230 +S'Citron, Bol et Compotier' +p284142 +sg225236 +S'1967' +p284143 +sa(dp284144 +g225232 +S'Mario Avati' +p284145 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in beige, yellow, blue, light red and black on Copperplate Deluxe paper' +p284146 +sg225230 +S'Citron, Bol et Compotier' +p284147 +sg225236 +S'1967' +p284148 +sa(dp284149 +g225232 +S'Mario Avati' +p284150 +sg225240 +g27 +sg225234 +S'lithograph (stone) in beige and black on Copperplate Deluxe paper' +p284151 +sg225230 +S'Les Artichauts de Los Angeles' +p284152 +sg225236 +S'1967' +p284153 +sa(dp284154 +g225232 +S'Edward Avedisian' +p284155 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in yellow and transparent peagreen on Rives BFK paper' +p284156 +sg225230 +S'Untitled' +p284157 +sg225236 +S'1965' +p284158 +sa(dp284159 +g225232 +S'Kengiro Azuma' +p284160 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in yellow and blue-black on natural Nacre paper' +p284161 +sg225230 +S'Nothingness' +p284162 +sg225236 +S'1965' +p284163 +sa(dp284164 +g225232 +S'Kengiro Azuma' +p284165 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black and white on Arches paper' +p284166 +sg225230 +S'Nothing' +p284167 +sg225236 +S'1965' +p284168 +sa(dp284169 +g225232 +S'Herbert Bayer' +p284170 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in blue on Copperplate Deluxe paper' +p284171 +sg225230 +S'8 Monochromes (Title Page)' +p284172 +sg225236 +S'1965' +p284173 +sa(dp284174 +g225232 +S'Herbert Bayer' +p284175 +sg225240 +g27 +sg225234 +S'portfolio w/ 8 color lithographs (stone) plus title page and colophon (aluminum) on Copperplate Deluxe' +p284176 +sg225230 +S'8 Monochromes' +p284177 +sg225236 +S'1965' +p284178 +sa(dp284179 +g225232 +S'Herbert Bayer' +p284180 +sg225240 +g27 +sg225234 +S'lithograph (stone) in two blues on Copperplate Deluxe paper' +p284181 +sg225230 +S'8 Monochromes I' +p284182 +sg225236 +S'1965' +p284183 +sa(dp284184 +g225232 +S'Herbert Bayer' +p284185 +sg225240 +g27 +sg225234 +S'lithograph (stone) in two browns on Copperplate Deluxe paper' +p284186 +sg225230 +S'8 Monochromes II' +p284187 +sg225236 +S'1965' +p284188 +sa(dp284189 +g225232 +S'Herbert Bayer' +p284190 +sg225240 +g27 +sg225234 +S'lithograph (stone) in two grays on Copperplate Deluxe paper' +p284191 +sg225230 +S'8 Monochromes III' +p284192 +sg225236 +S'1965' +p284193 +sa(dp284194 +g225232 +S'Herbert Bayer' +p284195 +sg225240 +g27 +sg225234 +S'lithograph (stone) in two reds on Copperplate Deluxe paper' +p284196 +sg225230 +S'8 Monochromes IV' +p284197 +sg225236 +S'1965' +p284198 +sa(dp284199 +g225232 +S'Herbert Bayer' +p284200 +sg225240 +g27 +sg225234 +S'lithograph (stone) in blue on Copperplate Deluxe paper' +p284201 +sg225230 +S'8 Monochromes V' +p284202 +sg225236 +S'1965' +p284203 +sa(dp284204 +g225232 +S'Herbert Bayer' +p284205 +sg225240 +g27 +sg225234 +S'lithograph (stone) in dark blue on Copperplate Deluxe paper' +p284206 +sg225230 +S'8 Monochromes VI' +p284207 +sg225236 +S'1965' +p284208 +sa(dp284209 +g225232 +S'Herbert Bayer' +p284210 +sg225240 +g27 +sg225234 +S'lithograph (stone) in two dark browns on Copperplate Deluxe paper' +p284211 +sg225230 +S'8 Monochromes VII' +p284212 +sg225236 +S'1965' +p284213 +sa(dp284214 +g225232 +S'Herbert Bayer' +p284215 +sg225240 +g27 +sg225234 +S'lithograph (stone) in two orange-browns on Copperplate Deluxe paper' +p284216 +sg225230 +S'8 Monochromes VIII' +p284217 +sg225236 +S'1965' +p284218 +sa(dp284219 +g225232 +S'Herbert Bayer' +p284220 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in blue on Copperplate Deluxe paper' +p284221 +sg225230 +S'8 Monochromes (Colophon)' +p284222 +sg225236 +S'1965' +p284223 +sa(dp284224 +g225232 +S'Herbert Bayer' +p284225 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in yellow, light red, gray and transparent blue on Copperplate Deluxe paper' +p284226 +sg225230 +S'Structure in Yellow' +p284227 +sg225236 +S'1965' +p284228 +sa(dp284229 +g225232 +S'Herbert Bayer' +p284230 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in blue-black and blueon Copperplate Deluxe paper' +p284231 +sg225230 +S'Celestial Wheel' +p284232 +sg225236 +S'1965' +p284233 +sa(dp284234 +g225232 +S'Herbert Bayer' +p284235 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in blue, red and two blacks on Copperplate Deluxe paper' +p284236 +sg225230 +S'Las Vegas' +p284237 +sg225236 +S'1965' +p284238 +sa(dp284239 +g225232 +S'Herbert Bayer' +p284240 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in brown-gray, blue and dark brown on Copperplate Deluxe paper' +p284241 +sg225230 +S'Two Progressions' +p284242 +sg225236 +S'1965' +p284243 +sa(dp284244 +g225232 +S'Herbert Bayer' +p284245 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in yellow, red, green and blue on Copperplate Deluxe paper' +p284246 +sg225230 +S'Horizontally Oriented' +p284247 +sg225236 +S'1965' +p284248 +sa(dp284249 +g225232 +S'Herbert Bayer' +p284250 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on de Laga Narcisse paper' +p284251 +sg225230 +S'Event' +p284252 +sg225236 +S'1965' +p284253 +sa(dp284254 +g225232 +S'Herbert Bayer' +p284255 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red-brown on natural Nacre paper' +p284256 +sg225230 +S"Explorer's Notebook" +p284257 +sg225236 +S'1965' +p284258 +sa(dp284259 +g225232 +S'Herbert Bayer' +p284260 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p284261 +sg225230 +S'Graph of the Seven Year Cycle' +p284262 +sg225236 +S'1965' +p284263 +sa(dp284264 +g225232 +S'Herbert Bayer' +p284265 +sg225240 +g27 +sg225234 +S'lithograph (stone) in blue on Copperplate Deluxe paper' +p284266 +sg225230 +S'Untitled' +p284267 +sg225236 +S'1965' +p284268 +sa(dp284269 +g225230 +S'Viking Dracula' +p284270 +sg225232 +S'Billy Al Bengston' +p284271 +sg225234 +S'lithograph (aluminum and zinc) in silver-violet, yellow, two grays and orange on uncalendered Rives paper' +p284272 +sg225236 +S'1968' +p284273 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a25.jpg' +p284274 +sg225240 +g27 +sa(dp284275 +g225232 +S'Billy Al Bengston' +p284276 +sg225240 +g27 +sg225234 +S'lithograph (zinc and aluminum) in silver-violet, yellow, two grays and orange on uncalendered Rives paper' +p284277 +sg225230 +S'Royal Viking Dracula' +p284278 +sg225236 +S'1968' +p284279 +sa(dp284280 +g225230 +S'Cockatoo AAA Dracula' +p284281 +sg225232 +S'Billy Al Bengston' +p284282 +sg225234 +S'lithograph (zinc and aluminum) in silver-violet, yellow, two grays and orange on uncalendered Rives paper' +p284283 +sg225236 +S'1968' +p284284 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a26.jpg' +p284285 +sg225240 +g27 +sa(dp284286 +g225230 +S'Cockatoo Dracula' +p284287 +sg225232 +S'Billy Al Bengston' +p284288 +sg225234 +S'lithograph (aluminum and zinc) in silver-violet, yellow, two grays and aluminum on uncalendered Rives paper' +p284289 +sg225236 +S'1968' +p284290 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a27.jpg' +p284291 +sg225240 +g27 +sa(dp284292 +g225232 +S'Billy Al Bengston' +p284293 +sg225240 +g27 +sg225234 +S'lithograph (zinc and aluminum) in yellow, beige and black on uncalendered Rives paper' +p284294 +sg225230 +S'Executive Party Dracula' +p284295 +sg225236 +S'1968' +p284296 +sa(dp284297 +g225230 +S'Twilight Executive Dracula' +p284298 +sg225232 +S'Billy Al Bengston' +p284299 +sg225234 +S'lithograph (zinc and aluminum) in yellow, beige and black on uncalendered Rives paper' +p284300 +sg225236 +S'1968' +p284301 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a28.jpg' +p284302 +sg225240 +g27 +sa(dp284303 +g225232 +S'Billy Al Bengston' +p284304 +sg225240 +g27 +sg225234 +S'lithograph (zinc and aluminum) in yellow, beige and black on uncalendered Rives paper' +p284305 +sg225230 +S'Downtowner Dracula' +p284306 +sg225236 +S'1968' +p284307 +sa(dp284308 +g225230 +S'Hollywood Hawaiian Dracula' +p284309 +sg225232 +S'Billy Al Bengston' +p284310 +sg225234 +S'lithograph (zinc and aluminum) in yellow and beige on uncalendered Rives paper' +p284311 +sg225236 +S'1968' +p284312 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a29.jpg' +p284313 +sg225240 +g27 +sa(dp284314 +g225232 +S'Billy Al Bengston' +p284315 +sg225240 +g27 +sg225234 +S'lithograph (stone) in gray on uncalendered Rives paper' +p284316 +sg225230 +S'Paradise Dracula' +p284317 +sg225236 +S'1968' +p284318 +sa(dp284319 +g225232 +S'Billy Al Bengston' +p284320 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in gray and pink on calendered Rives paper' +p284321 +sg225230 +S'Sunset Marvel Dracula' +p284322 +sg225236 +S'1968' +p284323 +sa(dp284324 +g225232 +S'Billy Al Bengston' +p284325 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in white and lightyellow on uncalendered Rives paper' +p284326 +sg225230 +S'Satellite Dracula' +p284327 +sg225236 +S'1968' +p284328 +sa(dp284329 +g225232 +S'Billy Al Bengston' +p284330 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light blue-green and light pearly-orange on uncalendered Rives paper' +p284331 +sg225230 +S'Galaxie Dracula' +p284332 +sg225236 +S'1968' +p284333 +sa(dp284334 +g225232 +S'Billy Al Bengston' +p284335 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pearly-orange and light pearly-blue on calendered Rives paper' +p284336 +sg225230 +S"Winona's Dracula" +p284337 +sg225236 +S'1968' +p284338 +sa(dp284339 +g225232 +S'Billy Al Bengston' +p284340 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in two whites and yellow on white Nacre paper' +p284341 +sg225230 +S'Moytel Dracula' +p284342 +sg225236 +S'1968' +p284343 +sa(dp284344 +g225232 +S'Billy Al Bengston' +p284345 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in light pearly-orange on Rives BFK paper' +p284346 +sg225230 +S"Bamby's Dracula" +p284347 +sg225236 +S'1968' +p284348 +sa(dp284349 +g225232 +S'Billy Al Bengston' +p284350 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in light pearly-orange on Rives BFK paper' +p284351 +sg225230 +S'Hollywood Tropics Dracula' +p284352 +sg225236 +S'1968' +p284353 +sa(dp284354 +g225232 +S'Billy Al Bengston' +p284355 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light green-gray on Copperplate Deluxe paper' +p284356 +sg225230 +S'One-O-Eight Dracula' +p284357 +sg225236 +S'1968' +p284358 +sa(dp284359 +g225232 +S'Billy Al Bengston' +p284360 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in pink and green-gray on Rives BFK paper' +p284361 +sg225230 +S'Saga Dracula Primero' +p284362 +sg225236 +S'1968' +p284363 +sa(dp284364 +g225232 +S'Billy Al Bengston' +p284365 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in pink and green-gray on Rives BFK paper' +p284366 +sg225230 +S'Saga Dracula Segundo' +p284367 +sg225236 +S'1968' +p284368 +sa(dp284369 +g225232 +S'Billy Al Bengston' +p284370 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in pink and green-gray on Rives BFK paper' +p284371 +sg225230 +S'Saga Dracula Tercero' +p284372 +sg225236 +S'1968' +p284373 +sa(dp284374 +g225232 +S'Billy Al Bengston' +p284375 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in pink and green-gray on Rives BFK paper' +p284376 +sg225230 +S'Saga Dracula Cuarto' +p284377 +sg225236 +S'1968' +p284378 +sa(dp284379 +g225232 +S'Billy Al Bengston' +p284380 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pearly-gray and light pearly-yellow on white Nacre paper' +p284381 +sg225230 +S'Oasis Dracula' +p284382 +sg225236 +S'1968' +p284383 +sa(dp284384 +g225232 +S'Billy Al Bengston' +p284385 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in dark gold and pearly blue-black on German Etching paper' +p284386 +sg225230 +S"Joiner's Unique Dracula" +p284387 +sg225236 +S'1968' +p284388 +sa(dp284389 +g225232 +S'Billy Al Bengston' +p284390 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in two grays on German Etching paper' +p284391 +sg225230 +S'Jet Inn Dracula' +p284392 +sg225236 +S'1968' +p284393 +sa(dp284394 +g225232 +S'Billy Al Bengston' +p284395 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in light yellow and light gray-green on white Arches paper' +p284396 +sg225230 +S'Nido Dracula' +p284397 +sg225236 +S'1968' +p284398 +sa(dp284399 +g225232 +S'Billy Al Bengston' +p284400 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in light yellow and light gray-green on white Arches paper' +p284401 +sg225230 +S'Dan River Dracula' +p284402 +sg225236 +S'1968' +p284403 +sa(dp284404 +g225232 +S'Billy Al Bengston' +p284405 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in gold-black and gray-black on German Etching paper' +p284406 +sg225230 +S'Mecca Dracula' +p284407 +sg225236 +S'1968' +p284408 +sa(dp284409 +g225232 +S'Billy Al Bengston' +p284410 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in two gold-blackson German Etching paper' +p284411 +sg225230 +S'Le Roi Dracula' +p284412 +sg225236 +S'1968' +p284413 +sa(dp284414 +g225232 +S'Billy Al Bengston' +p284415 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Magnani Italia paper' +p284416 +sg225230 +S'Players Dracula Primero' +p284417 +sg225236 +S'1968' +p284418 +sa(dp284419 +g225232 +S'Billy Al Bengston' +p284420 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Magnani Italia paper' +p284421 +sg225230 +S'Players Dracula Segundo' +p284422 +sg225236 +S'1968' +p284423 +sa(dp284424 +g225232 +S'Billy Al Bengston' +p284425 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Magnani Italia paper' +p284426 +sg225230 +S'Players Dracula Tercero' +p284427 +sg225236 +S'1968' +p284428 +sa(dp284429 +g225232 +S'Billy Al Bengston' +p284430 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Magnani Italia paper' +p284431 +sg225230 +S'Players Dracula Cuarto' +p284432 +sg225236 +S'1968' +p284433 +sa(dp284434 +g225232 +S'Billy Al Bengston' +p284435 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Magnani Italia paper' +p284436 +sg225230 +S'Players Dracula Quinto' +p284437 +sg225236 +S'1968' +p284438 +sa(dp284439 +g225232 +S'Billy Al Bengston' +p284440 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Magnani Italia paper' +p284441 +sg225230 +S'Players Dracula Sexto' +p284442 +sg225236 +S'1968' +p284443 +sa(dp284444 +g225232 +S'Billy Al Bengston' +p284445 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Magnani Italia paper' +p284446 +sg225230 +S'Players Dracula Septimo' +p284447 +sg225236 +S'1968' +p284448 +sa(dp284449 +g225232 +S'Billy Al Bengston' +p284450 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Magnani Italia paper' +p284451 +sg225230 +S'Players Dracula Octavo' +p284452 +sg225236 +S'1968' +p284453 +sa(dp284454 +g225232 +S'Billy Al Bengston' +p284455 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Magnani Italia paper' +p284456 +sg225230 +S'Players Dracula Noveno' +p284457 +sg225236 +S'1968' +p284458 +sa(dp284459 +g225232 +S'Billy Al Bengston' +p284460 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Magnani Italia paper' +p284461 +sg225230 +S'Players Dracula Decimo' +p284462 +sg225236 +S'1968' +p284463 +sa(dp284464 +g225232 +S'Billy Al Bengston' +p284465 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Magnani Italia paper' +p284466 +sg225230 +S'Players Dracula Undecimo' +p284467 +sg225236 +S'1968' +p284468 +sa(dp284469 +g225232 +S'Billy Al Bengston' +p284470 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Magnani Italia paper' +p284471 +sg225230 +S'Players Dracula Duodecimo' +p284472 +sg225236 +S'1968' +p284473 +sa(dp284474 +g225232 +S'Billy Al Bengston' +p284475 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in black and gray on Magnani Italia paper' +p284476 +sg225230 +S'Players Dracula Grande' +p284477 +sg225236 +S'1968' +p284478 +sa(dp284479 +g225232 +S'Billy Al Bengston' +p284480 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Magnani Italia paper' +p284481 +sg225230 +S'Bostic Dracula' +p284482 +sg225236 +S'1968' +p284483 +sa(dp284484 +g225232 +S'Billy Al Bengston' +p284485 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pearly-gray and light pearly-pink on Copperplate Deluxe paper' +p284486 +sg225230 +S'Rocket Dracula Primero' +p284487 +sg225236 +S'1968' +p284488 +sa(dp284489 +g225232 +S'Billy Al Bengston' +p284490 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pearly-gray and light pearly-pink on Copperplate Deluxe paper' +p284491 +sg225230 +S'Rocket Dracula Segundo' +p284492 +sg225236 +S'1968' +p284493 +sa(dp284494 +g225232 +S'Billy Al Bengston' +p284495 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pearly-gray and light pearly-pink on Copperplate Deluxe paper' +p284496 +sg225230 +S'Rocket Dracula Tercero' +p284497 +sg225236 +S'1968' +p284498 +sa(dp284499 +g225232 +S'Billy Al Bengston' +p284500 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pearly-gray and light pearly-pink on Copperplate Deluxe paper' +p284501 +sg225230 +S'Rocket Dracula Cuarto' +p284502 +sg225236 +S'1968' +p284503 +sa(dp284504 +g225232 +S'Billy Al Bengston' +p284505 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pearly-gray on Copperplate Deluxe paper' +p284506 +sg225230 +S'Rocket Dracula Quinto' +p284507 +sg225236 +S'1968' +p284508 +sa(dp284509 +g225232 +S'Billy Al Bengston' +p284510 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pearly-pink on Copperplate Deluxe paper' +p284511 +sg225230 +S'Rocket Dracula Sexto' +p284512 +sg225236 +S'1968' +p284513 +sa(dp284514 +g225232 +S'Billy Al Bengston' +p284515 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pearly-blue on German Etching paper' +p284516 +sg225230 +S'Lotus Dracula' +p284517 +sg225236 +S'1968' +p284518 +sa(dp284519 +g225232 +S'Billy Al Bengston' +p284520 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pearly-gray and light pearly-pink on Copperplate Deluxe paper' +p284521 +sg225230 +S'Hi-Pal Dracula' +p284522 +sg225236 +S'1968' +p284523 +sa(dp284524 +g225232 +S'Billy Al Bengston' +p284525 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pearly-gray on Copperplate Deluxe paper' +p284526 +sg225230 +S'Hi Hat Dracula' +p284527 +sg225236 +S'1968' +p284528 +sa(dp284529 +g225232 +S'Billy Al Bengston' +p284530 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pearly-pink on Copperplate Deluxe paper' +p284531 +sg225230 +S'Hi Hat AAA Dracula' +p284532 +sg225236 +S'1968' +p284533 +sa(dp284534 +g225232 +S'Wendell Black' +p284535 +sg225240 +g27 +sg225234 +S'lithograph (stone) on white Arches paper' +p284536 +sg225230 +S'Manna from Armenia' +p284537 +sg225236 +S'1963' +p284538 +sa(dp284539 +g225232 +S'Wendell Black' +p284540 +sg225240 +g27 +sg225234 +S'lithograph (stone) on Yamada #41 paper' +p284541 +sg225230 +S'Memos' +p284542 +sg225236 +S'1963' +p284543 +sa(dp284544 +g225232 +S'Wendell Black' +p284545 +sg225240 +g27 +sg225234 +S'lithograph (stone) on white Arches paper' +p284546 +sg225230 +S'Saint Joan of North Meridian' +p284547 +sg225236 +S'1963' +p284548 +sa(dp284549 +g225232 +S'Wendell Black' +p284550 +sg225240 +g27 +sg225234 +S'lithograph (stone) on buff Arches paper' +p284551 +sg225230 +S'Indy Alley Thing' +p284552 +sg225236 +S'1966' +p284553 +sa(dp284554 +g225232 +S'Wendell Black' +p284555 +sg225240 +g27 +sg225234 +S'lithograph (stone) on Yamada #41 paper' +p284556 +sg225230 +S'Sea Harbor' +p284557 +sg225236 +S'1963' +p284558 +sa(dp284559 +g225232 +S'Andre Lucien Albert Bloc' +p284560 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Rives BFK paper' +p284561 +sg225230 +S'Evocation' +p284562 +sg225236 +S'1965' +p284563 +sa(dp284564 +g225232 +S'Peter Bodnar' +p284565 +sg225240 +g27 +sg225234 +S'lithograph (stone) on Rives BFK paper' +p284566 +sg225230 +S'Untitled Imp. 16' +p284567 +sg225236 +S'1963/1964' +p284568 +sa(dp284569 +g225232 +S'Peter Bodnar' +p284570 +sg225240 +g27 +sg225234 +S'lithograph (stone) on buff Arches paper' +p284571 +sg225230 +S'Untitled 11 Imp.' +p284572 +sg225236 +S'1963/1964' +p284573 +sa(dp284574 +g225232 +S'Peter Bodnar' +p284575 +sg225240 +g27 +sg225234 +S'lithograph (stone) on buff Arches paper' +p284576 +sg225230 +S'Untitled Imp. 11' +p284577 +sg225236 +S'1963/1964' +p284578 +sa(dp284579 +g225232 +S'James Boynton' +p284580 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in violet-brown and blue on Rives paper' +p284581 +sg225230 +S'Genesis' +p284582 +sg225236 +S'1967' +p284583 +sa(dp284584 +g225232 +S'James Boynton' +p284585 +sg225240 +g27 +sg225234 +S'portfolio w/ 10 color lithographs (stone, aluminum, and zinc) on Rives paper' +p284586 +sg225230 +S'Packaged Horizon, or a Guided Tour to Oblivion' +p284587 +sg225236 +S'1967' +p284588 +sa(dp284589 +g225232 +S'James Boynton' +p284590 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Rives paper' +p284591 +sg225230 +S'Adam' +p284592 +sg225236 +S'1967' +p284593 +sa(dp284594 +g225232 +S'James Boynton' +p284595 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in green, orange and violet on Rives paper' +p284596 +sg225230 +S'Eve' +p284597 +sg225236 +S'1967' +p284598 +sa(dp284599 +g225232 +S'James Boynton' +p284600 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in blue, yellow-green and violet on Rives paper' +p284601 +sg225230 +S'Snake' +p284602 +sg225236 +S'1967' +p284603 +sa(dp284604 +g225232 +S'James Boynton' +p284605 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in pink, red, green and gold on Rives paper' +p284606 +sg225230 +S'The Word' +p284607 +sg225236 +S'1967' +p284608 +sa(dp284609 +g225232 +S'James Boynton' +p284610 +sg225240 +g27 +sg225234 +S'lithograph (zinc, aluminum and stone) in yellow, violet and brown on Rives paper' +p284611 +sg225230 +S"And Don't Come Back" +p284612 +sg225236 +S'1967' +p284613 +sa(dp284614 +g225232 +S'James Boynton' +p284615 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in red, red-violet, ochre and yellow on Rives paper' +p284616 +sg225230 +S'Key' +p284617 +sg225236 +S'1967' +p284618 +sa(dp284619 +g225232 +S'James Boynton' +p284620 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in silver and black on Rives paper' +p284621 +sg225230 +S'Big Channel in the Sky' +p284622 +sg225236 +S'1967' +p284623 +sa(dp284624 +g225232 +S'James Boynton' +p284625 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in red, yellow, blue and two blacks on Rives paper' +p284626 +sg225230 +S'Orbit Edged in Black' +p284627 +sg225236 +S'1967' +p284628 +sa(dp284629 +g225232 +S'James Boynton' +p284630 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black and red on Rives paper' +p284631 +sg225230 +S'Bleed Image' +p284632 +sg225236 +S'1967' +p284633 +sa(dp284634 +g225232 +S'James Boynton' +p284635 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in two browns and gray-green on German Etching paper' +p284636 +sg225230 +S'Kremlin' +p284637 +sg225236 +S'1967' +p284638 +sa(dp284639 +g225232 +S'James Boynton' +p284640 +sg225240 +g27 +sg225234 +S'portfolio w/ 12 color lithographs (aluminum, stone) on German Etching paper' +p284641 +sg225230 +S'Pandorasville Revisited' +p284642 +sg225236 +S'1967' +p284643 +sa(dp284644 +g225232 +S'James Boynton' +p284645 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in two browns, blue and pink on German Etching paper' +p284646 +sg225230 +S'Pink' +p284647 +sg225236 +S'1967' +p284648 +sa(dp284649 +g225232 +S'James Boynton' +p284650 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in two browns and yellow on German Etching paper' +p284651 +sg225230 +S'Standing Room Only' +p284652 +sg225236 +S'1967' +p284653 +sa(dp284654 +g225232 +S'James Boynton' +p284655 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in two browns, blue and violet on German Etching paper' +p284656 +sg225230 +S'Purple' +p284657 +sg225236 +S'1967' +p284658 +sa(dp284659 +g225232 +S'James Boynton' +p284660 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in green, dark brown and blue on German Etching paper' +p284661 +sg225230 +S'Portable Cave' +p284662 +sg225236 +S'1967' +p284663 +sa(dp284664 +g225232 +S'James Boynton' +p284665 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in red-violet, dark brown and orange on German Etching paper' +p284666 +sg225230 +S'Trunkated Elephant' +p284667 +sg225236 +S'1967' +p284668 +sa(dp284669 +g225232 +S'James Boynton' +p284670 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in green, violet and pink on German Etching paper' +p284671 +sg225230 +S'Tacks' +p284672 +sg225236 +S'1967' +p284673 +sa(dp284674 +g225232 +S'James Boynton' +p284675 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in green, violet and pink on German Etching paper' +p284676 +sg225230 +S'Coupled Mushrooms' +p284677 +sg225236 +S'1967' +p284678 +sa(dp284679 +g225232 +S'James Boynton' +p284680 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in yellow, pink and violet on German Etching paper' +p284681 +sg225230 +S'Fetish' +p284682 +sg225236 +S'1967' +p284683 +sa(dp284684 +g225232 +S'James Boynton' +p284685 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in blue, yellow-ochre and violet on German Etching paper' +p284686 +sg225230 +S'Condensed History of Art' +p284687 +sg225236 +S'1967' +p284688 +sa(dp284689 +g225232 +S'James Boynton' +p284690 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in green, yellow-ochre, violet and red on German Etching paper' +p284691 +sg225230 +S'Striped Wizard' +p284692 +sg225236 +S'1967' +p284693 +sa(dp284694 +g225232 +S'James Boynton' +p284695 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in green, violet and blue on German Etching paper' +p284696 +sg225230 +S'Ball' +p284697 +sg225236 +S'1967' +p284698 +sa(dp284699 +g225232 +S'James Boynton' +p284700 +sg225240 +g27 +sg225234 +S'lithograph (stone) in two blacks on German Etchingpaper' +p284701 +sg225230 +S'Landscape' +p284702 +sg225236 +S'1967' +p284703 +sa(dp284704 +g225232 +S'James Boynton' +p284705 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in light blue, yellow-ochre and dark violet on Rives paper' +p284706 +sg225230 +S'Big Channel in the Sky' +p284707 +sg225236 +S'1967' +p284708 +sa(dp284709 +g225232 +S'James Boynton' +p284710 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in violet and black on Rives paper' +p284711 +sg225230 +S'Swinger' +p284712 +sg225236 +S'1967' +p284713 +sa(dp284714 +g225232 +S'James Boynton' +p284715 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) black, brown and gold on German Etching paper' +p284716 +sg225230 +S'Teeth' +p284717 +sg225236 +S'1967' +p284718 +sa(dp284719 +g225232 +S'James Boynton' +p284720 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p284721 +sg225230 +S'Untitled' +p284722 +sg225236 +S'1967' +p284723 +sa(dp284724 +g225232 +S'James Boynton' +p284725 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p284726 +sg225230 +S'Untitled' +p284727 +sg225236 +S'1967' +p284728 +sa(dp284729 +g225232 +S'James Boynton' +p284730 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p284731 +sg225230 +S'Untitled' +p284732 +sg225236 +S'1967' +p284733 +sa(dp284734 +g225232 +S'James Boynton' +p284735 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p284736 +sg225230 +S'Untitled' +p284737 +sg225236 +S'1967' +p284738 +sa(dp284739 +g225232 +S'James Boynton' +p284740 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p284741 +sg225230 +S'Untitled' +p284742 +sg225236 +S'1967' +p284743 +sa(dp284744 +g225232 +S'James Boynton' +p284745 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p284746 +sg225230 +S'Untitled' +p284747 +sg225236 +S'1967' +p284748 +sa(dp284749 +g225232 +S'James Boynton' +p284750 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p284751 +sg225230 +S'Untitled' +p284752 +sg225236 +S'1967' +p284753 +sa(dp284754 +g225232 +S'James Boynton' +p284755 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p284756 +sg225230 +S'Untitled' +p284757 +sg225236 +S'1967' +p284758 +sa(dp284759 +g225232 +S'James Boynton' +p284760 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p284761 +sg225230 +S'Untitled' +p284762 +sg225236 +S'1967' +p284763 +sa(dp284764 +g225232 +S'James Boynton' +p284765 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p284766 +sg225230 +S'Untitled' +p284767 +sg225236 +S'1967' +p284768 +sa(dp284769 +g225232 +S'James Boynton' +p284770 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p284771 +sg225230 +S'Untitled' +p284772 +sg225236 +S'1967' +p284773 +sa(dp284774 +g225232 +S'James Boynton' +p284775 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p284776 +sg225230 +S'Untitled' +p284777 +sg225236 +S'1967' +p284778 +sa(dp284779 +g225232 +S'Paul Henry Brach' +p284780 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in dark blue-green andgray on white Arches paper' +p284781 +sg225230 +S'The Negative Way 1' +p284782 +sg225236 +S'1964' +p284783 +sa(dp284784 +g225232 +S'Paul Henry Brach' +p284785 +sg225240 +g27 +sg225234 +S'portfolio w/ 10 lithographs (zinc and stone) in blue-green and gray plus title page and colophon on white Arches paper' +p284786 +sg225230 +S'The Negative Way' +p284787 +sg225236 +S'1964' +p284788 +sa(dp284789 +g225232 +S'Paul Henry Brach' +p284790 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in dark blue-green andtwo grays on white Arches paper' +p284791 +sg225230 +S'The Negative Way 2' +p284792 +sg225236 +S'1964' +p284793 +sa(dp284794 +g225232 +S'Paul Henry Brach' +p284795 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in dark blue-green andtwo grays on white Arches paper' +p284796 +sg225230 +S'The Negative Way 3' +p284797 +sg225236 +S'1964' +p284798 +sa(dp284799 +g225232 +S'Paul Henry Brach' +p284800 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in dark blue-green, black and gray on white Arches paper' +p284801 +sg225230 +S'The Negative Way 4' +p284802 +sg225236 +S'1964' +p284803 +sa(dp284804 +g225232 +S'Paul Henry Brach' +p284805 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in dark blue-green andlight gray on white Arches paper' +p284806 +sg225230 +S'The Negative Way 5' +p284807 +sg225236 +S'1964' +p284808 +sa(dp284809 +g225232 +S'Paul Henry Brach' +p284810 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in dark blue-green, blue-black and two grays on white Arches paper' +p284811 +sg225230 +S'The Negative Way 6' +p284812 +sg225236 +S'1964' +p284813 +sa(dp284814 +g225232 +S'Paul Henry Brach' +p284815 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in dark blue-green anddark gray on white Arches paper' +p284816 +sg225230 +S'The Negative Way 7' +p284817 +sg225236 +S'1964' +p284818 +sa(dp284819 +g225232 +S'Paul Henry Brach' +p284820 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in dark blue-green andtwo grays on white Arches paper' +p284821 +sg225230 +S'The Negative Way 8' +p284822 +sg225236 +S'1964' +p284823 +sa(dp284824 +g225232 +S'Paul Henry Brach' +p284825 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in two blue-greens andtwo grays on white Arches paper' +p284826 +sg225230 +S'The Negative Way 9' +p284827 +sg225236 +S'1964' +p284828 +sa(dp284829 +g225232 +S'Paul Henry Brach' +p284830 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in dark blue-green andsilver on white Arches paper' +p284831 +sg225230 +S'The Negative Way 10' +p284832 +sg225236 +S'1964' +p284833 +sa(dp284834 +g225232 +S'Paul Henry Brach' +p284835 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in two green-blues and blue-green on white Arches paper' +p284836 +sg225230 +S'Oracle' +p284837 +sg225236 +S'1964' +p284838 +sa(dp284839 +g225232 +S'Paul Henry Brach' +p284840 +sg225240 +g27 +sg225234 +S'lithograph (stone) in dark gray and white on RivesBFK paper' +p284841 +sg225230 +S'Vessel' +p284842 +sg225236 +S'1965' +p284843 +sa(dp284844 +g225232 +S'Paul Henry Brach' +p284845 +sg225240 +g27 +sg225234 +S'lithograph (stone) in three grays on Rives BFK paper' +p284846 +sg225230 +S'Silver Series' +p284847 +sg225236 +S'1965' +p284848 +sa(dp284849 +g225232 +S'Paul Henry Brach' +p284850 +sg225240 +g27 +sg225234 +S'lithograph (stone) in two grays on Rives BFK paper' +p284851 +sg225230 +S'Dark Vessel' +p284852 +sg225236 +S'1965' +p284853 +sa(dp284854 +g225232 +S'Salvador Bru' +p284855 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black and white on German Etching paper' +p284856 +sg225230 +S'La Gran Maquina' +p284857 +sg225236 +S'1969' +p284858 +sa(dp284859 +g225232 +S'Salvador Bru' +p284860 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in brown and blackon calendered Rives paper' +p284861 +sg225230 +S'Homenaje Al Desierto de Nevada' +p284862 +sg225236 +S'1969' +p284863 +sa(dp284864 +g225232 +S'Salvador Bru' +p284865 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in light brown, violet and black on German Etching paper' +p284866 +sg225230 +S'The Onion Flower' +p284867 +sg225236 +S'1969' +p284868 +sa(dp284869 +g225232 +S'Salvador Bru' +p284870 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in beige and blended orange, two violets, yellow and brown on Rives BFK paper' +p284871 +sg225230 +S'Cabeza Emergente con Arco Iris' +p284872 +sg225236 +S'1969' +p284873 +sa(dp284874 +g225232 +S'Salvador Bru' +p284875 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in brown, black and blended violet, white, pink and green on calendered Rives paper' +p284876 +sg225230 +S'El Edan Pez Cosmico' +p284877 +sg225236 +S'1969' +p284878 +sa(dp284879 +g225232 +S'Salvador Bru' +p284880 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown-black on uncalendered Rives paper' +p284881 +sg225230 +S'Homo Escorpio Universal' +p284882 +sg225236 +S'1969' +p284883 +sa(dp284884 +g225232 +S'Salvador Bru' +p284885 +sg225240 +g27 +sg225234 +S'lithograph (stone) in gray on uncalendered Rives paper' +p284886 +sg225230 +S'La Gran Maquina Creando Planteas' +p284887 +sg225236 +S'1969' +p284888 +sa(dp284889 +g225232 +S'Salvador Bru' +p284890 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in pink and black on Copperplate Deluxe paper' +p284891 +sg225230 +S'La Ciudad Blanda' +p284892 +sg225236 +S'1969' +p284893 +sa(dp284894 +g225232 +S'Salvador Bru' +p284895 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in gray and black on Copperplate Deluxe paper' +p284896 +sg225230 +S'Proceso Piramidal Planetas' +p284897 +sg225236 +S'1969' +p284898 +sa(dp284899 +g225232 +S'Salvador Bru' +p284900 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in 8 colors on calendered Rives paper' +p284901 +sg225230 +S'Universal Fly' +p284902 +sg225236 +S'1969' +p284903 +sa(dp284904 +g225232 +S'Salvador Bru' +p284905 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in pink, red and blackon silver Fasson foil on Rives BFK paper' +p284906 +sg225230 +S'Tongue of the Universal Fly' +p284907 +sg225236 +S'1969' +p284908 +sa(dp284909 +g225232 +S'Salvador Bru' +p284910 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in two greens and white on silver Fasson foil on Rives BFK paper' +p284911 +sg225230 +S'Tongue of the Universal Fly' +p284912 +sg225236 +S'1969' +p284913 +sa(dp284914 +g225232 +S'Salvador Bru' +p284915 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in two browns, black, white and blue on calendered Rives paper' +p284916 +sg225230 +S'The Seven Terrible Tongues' +p284917 +sg225236 +S'1969' +p284918 +sa(dp284919 +g225232 +S'Salvador Bru' +p284920 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in brown, black, white, blue and green on Copperplate Deluxe paper' +p284921 +sg225230 +S'La Casa del Mosquito' +p284922 +sg225236 +S'1969' +p284923 +sa(dp284924 +g225232 +S'Salvador Bru' +p284925 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in gray and black on German Etching paper' +p284926 +sg225230 +S'La Flor de Piedra' +p284927 +sg225236 +S'1969' +p284928 +sa(dp284929 +g225232 +S'Salvador Bru' +p284930 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in two reds, pink and black on German Etching paper' +p284931 +sg225230 +S'Karo Rojo' +p284932 +sg225236 +S'1969' +p284933 +sa(dp284934 +g225232 +S'Salvador Bru' +p284935 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in two yellow-ochres, two reds and two blacks on calendered Rives paper' +p284936 +sg225230 +S'Icaro' +p284937 +sg225236 +S'1969' +p284938 +sa(dp284939 +g225232 +S'Salvador Bru' +p284940 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in three greens, whiteand black on German Etching paper' +p284941 +sg225230 +S'Icaro II' +p284942 +sg225236 +S'1969' +p284943 +sa(dp284944 +g225232 +S'Salvador Bru' +p284945 +sg225240 +g27 +sg225234 +S'lithograph (zinc and aluminum) in silver and gray-black on German Etching paper' +p284946 +sg225230 +S'Jupiter Fish' +p284947 +sg225236 +S'1969' +p284948 +sa(dp284949 +g225232 +S'Salvador Bru' +p284950 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p284951 +sg225230 +S'Los Dos Universos' +p284952 +sg225236 +S'1969' +p284953 +sa(dp284954 +g225232 +S'Salvador Bru' +p284955 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in blue, brown andblack on uncalendered Rives paper' +p284956 +sg225230 +S'Guitar of Flesh' +p284957 +sg225236 +S'1969' +p284958 +sa(dp284959 +g225232 +S'Salvador Bru' +p284960 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p284961 +sg225230 +S'Los Dos Universos' +p284962 +sg225236 +S'1969' +p284963 +sa(dp284964 +g225232 +S'John Butke' +p284965 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in black on Rives BFK paper' +p284966 +sg225230 +S'Untitled' +p284967 +sg225236 +S'1967' +p284968 +sa(dp284969 +g225232 +S'Fred Cain' +p284970 +sg225240 +g27 +sg225234 +S'lithograph (stone) in silver-brown on white Archespaper' +p284971 +sg225230 +S'Elkins Park' +p284972 +sg225236 +S'1967' +p284973 +sa(dp284974 +g225232 +S'Lawrence Calcagno' +p284975 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in maroon and black onwhite Nacre paper' +p284976 +sg225230 +S'Untitled' +p284977 +sg225236 +S'1963' +p284978 +sa(dp284979 +g225232 +S'Rafael Canogar' +p284980 +sg225240 +g27 +sg225234 +S'lithograph (stone) in blue-black on uncalendered Rives paper' +p284981 +sg225230 +S'The Earth (Introduction)' +p284982 +sg225236 +S'1969' +p284983 +sa(dp284984 +g225232 +S'Rafael Canogar' +p284985 +sg225240 +g27 +sg225234 +S'portfolio with 14 color lithographs (stone & aluminum) including introduction and colophon on uncalendered Rives paper' +p284986 +sg225230 +S'The Earth' +p284987 +sg225236 +S'1969' +p284988 +sa(dp284989 +g225232 +S'Rafael Canogar' +p284990 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red-black on uncalendered Rives paper' +p284991 +sg225230 +S'Entre el Pueble Estoy' +p284992 +sg225236 +S'1969' +p284993 +sa(dp284994 +g225232 +S'Rafael Canogar' +p284995 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in light brown andviolet-black on uncalendered Rives paper' +p284996 +sg225230 +S'Tus Gritos Oiran' +p284997 +sg225236 +S'1969' +p284998 +sa(dp284999 +g225232 +S'Rafael Canogar' +p285000 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in two blacks, embossed, on uncalendered Rives paper' +p285001 +sg225230 +S'Cordon de Policia' +p285002 +sg225236 +S'1969' +p285003 +sa(dp285004 +g225232 +S'Rafael Canogar' +p285005 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in gray and black on uncalendered Rives paper' +p285006 +sg225230 +S'Vivo Tiempos Sombrios' +p285007 +sg225236 +S'1969' +p285008 +sa(dp285009 +g225232 +S'Rafael Canogar' +p285010 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on uncalendered Rives paper' +p285011 +sg225230 +S'El Carcelero' +p285012 +sg225236 +S'1969' +p285013 +sa(dp285014 +g225232 +S'Rafael Canogar' +p285015 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in red-brown, black and white on uncalendered Rives paper' +p285016 +sg225230 +S'El Llanto' +p285017 +sg225236 +S'1969' +p285018 +sa(dp285019 +g225232 +S'Rafael Canogar' +p285020 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in dark blue-gray and black on calendered Rives paper' +p285021 +sg225230 +S'Larga Espero' +p285022 +sg225236 +S'1969' +p285023 +sa(dp285024 +g225232 +S'Rafael Canogar' +p285025 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on uncalendered Rives paper' +p285026 +sg225230 +S'El Dialogo' +p285027 +sg225236 +S'1969' +p285028 +sa(dp285029 +g225232 +S'Rafael Canogar' +p285030 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in pink and black on uncalendered Rives paper' +p285031 +sg225230 +S'El Paseo' +p285032 +sg225236 +S'1969' +p285033 +sa(dp285034 +g225232 +S'Rafael Canogar' +p285035 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown on uncalendered Rives paper' +p285036 +sg225230 +S'El Politico' +p285037 +sg225236 +S'1969' +p285038 +sa(dp285039 +g225232 +S'Rafael Canogar' +p285040 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in two blacks on uncalendered Rives paper' +p285041 +sg225230 +S'El Abrazo' +p285042 +sg225236 +S'1969' +p285043 +sa(dp285044 +g225232 +S'Rafael Canogar' +p285045 +sg225240 +g27 +sg225234 +S'lithograph (stone) in green-black on uncalendered Rives paper' +p285046 +sg225230 +S'Escena Urbana' +p285047 +sg225236 +S'1969' +p285048 +sa(dp285049 +g225232 +S'Rafael Canogar' +p285050 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in black on uncalendered Rives paper' +p285051 +sg225230 +S'The Earth (Colophon)' +p285052 +sg225236 +S'1969' +p285053 +sa(dp285054 +g225232 +S'Rafael Canogar' +p285055 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red on uncalendered Rives paper' +p285056 +sg225230 +S'La Violencia (Introduction)' +p285057 +sg225236 +S'1969' +p285058 +sa(dp285059 +g225232 +S'Rafael Canogar' +p285060 +sg225240 +g27 +sg225234 +S'portfolio w/ 8 lithographs (stone and aluminum) inblack and red including introduction and colophon on uncalendered Rives paper' +p285061 +sg225230 +S'La Violencia' +p285062 +sg225236 +S'1969' +p285063 +sa(dp285064 +g225232 +S'Rafael Canogar' +p285065 +sg225240 +g27 +sg225234 +S'lithograph (stone) in green-black on uncalendered Rives paper' +p285066 +sg225230 +S'Descolorida paz, preciosa guerra' +p285067 +sg225236 +S'1969' +p285068 +sa(dp285069 +g225232 +S'Rafael Canogar' +p285070 +sg225240 +g27 +sg225234 +S'lithograph (stone) in green-black on uncalendered Rives paper' +p285071 +sg225230 +S'Los Revolucionarios' +p285072 +sg225236 +S'1969' +p285073 +sa(dp285074 +g225232 +S'Rafael Canogar' +p285075 +sg225240 +g27 +sg225234 +S'lithograph (stone) in silver-black on uncalenderedRives paper' +p285076 +sg225230 +S'La Pelea' +p285077 +sg225236 +S'1969' +p285078 +sa(dp285079 +g225232 +S'Rafael Canogar' +p285080 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in violet-black and red on uncalendered Rives paper' +p285081 +sg225230 +S'Los Prisioneros' +p285082 +sg225236 +S'1969' +p285083 +sa(dp285084 +g225232 +S'Rafael Canogar' +p285085 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on uncalendered Rives paper' +p285086 +sg225230 +S'El Herido' +p285087 +sg225236 +S'1969' +p285088 +sa(dp285089 +g225232 +S'Rafael Canogar' +p285090 +sg225240 +g27 +sg225234 +S'lithograph (stone) in violet-black on uncalenderedRives paper' +p285091 +sg225230 +S'El Muerto' +p285092 +sg225236 +S'1969' +p285093 +sa(dp285094 +g225232 +S'Rafael Canogar' +p285095 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on uncalendered Rives paper' +p285096 +sg225230 +S'La Violencia (Colophon)' +p285097 +sg225236 +S'1969' +p285098 +sa(dp285099 +g225232 +S'Rafael Canogar' +p285100 +sg225240 +g27 +sg225234 +S'lithograph (stone) in gray, silver and black on Copperplate Deluxe paper' +p285101 +sg225230 +S'El Tumulto' +p285102 +sg225236 +S'1969' +p285103 +sa(dp285104 +g225232 +S'Vija Celmins' +p285105 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in two grays on Rives BFK paper' +p285106 +sg225230 +S'Untitled' +p285107 +sg225236 +S'1970' +p285108 +sa(dp285109 +g225232 +S'Paul Arthur Clinton' +p285110 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in red, white and gray on uncalendered Rives paper' +p285111 +sg225230 +S'Untitled' +p285112 +sg225236 +S'1969' +p285113 +sa(dp285114 +g225232 +S'Paul Arthur Clinton' +p285115 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in black on Copperplate Deluxe paper' +p285116 +sg225230 +S'Untitled' +p285117 +sg225236 +S'1969' +p285118 +sa(dp285119 +g225232 +S'Bruce Conner' +p285120 +sg225240 +g27 +sg225234 +S'lithograph (stone) in transparent light brown on buff Arches paper' +p285121 +sg225230 +S'Untitled' +p285122 +sg225236 +S'1965' +p285123 +sa(dp285124 +g225232 +S'Bruce Conner' +p285125 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p285126 +sg225230 +S'Untitled' +p285127 +sg225236 +S'1965' +p285128 +sa(dp285129 +g225232 +S'Bruce Conner' +p285130 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p285131 +sg225230 +S'Untitled' +p285132 +sg225236 +S'1965' +p285133 +sa(dp285134 +g225232 +S'Bruce Conner' +p285135 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p285136 +sg225230 +S'Rain' +p285137 +sg225236 +S'1965' +p285138 +sa(dp285139 +g225232 +S'Bruce Conner' +p285140 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in black on white Arches paper' +p285141 +sg225230 +S'Landscape' +p285142 +sg225236 +S'1965' +p285143 +sa(dp285144 +g225232 +S'Bruce Conner' +p285145 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in green on white Arches paper' +p285146 +sg225230 +S'Green Line' +p285147 +sg225236 +S'1965' +p285148 +sa(dp285149 +g225232 +S'Bruce Conner' +p285150 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in black on white Arches paper' +p285151 +sg225230 +S'Untitled' +p285152 +sg225236 +S'1965' +p285153 +sa(dp285154 +g225232 +S'Bruce Conner' +p285155 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in red-orange and black on white Arches paper' +p285156 +sg225230 +S'Sunset Strip' +p285157 +sg225236 +S'1965' +p285158 +sa(dp285159 +g225232 +S'Bruce Conner' +p285160 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in brown on white Arches paper' +p285161 +sg225230 +S'Landscape' +p285162 +sg225236 +S'1965' +p285163 +sa(dp285164 +g225232 +S'Bruce Conner' +p285165 +sg225240 +g27 +sg225234 +S'lithograph (stone) in dark blue and black on whiteArches paper' +p285166 +sg225230 +S'This Space Reserved for June Wayne' +p285167 +sg225236 +S'1965' +p285168 +sa(dp285169 +g225232 +S'Bruce Conner' +p285170 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p285171 +sg225230 +S'Cancellation' +p285172 +sg225236 +S'1965' +p285173 +sa(dp285174 +g225232 +S'Bruce Conner' +p285175 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in black on white Arches paper' +p285176 +sg225230 +S'Jelly Fish' +p285177 +sg225236 +S'1965' +p285178 +sa(dp285179 +g225232 +S'Robert Cremean' +p285180 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pink-brown, light pinkand black on white Nacre paper' +p285181 +sg225230 +S'First Station' +p285182 +sg225236 +S'1966' +p285183 +sa(dp285184 +g225232 +S'Robert Cremean' +p285185 +sg225240 +g27 +sg225234 +S'portfolio w/ 14 lithographs (stone) in light pink-brown, pink and black plus title page and colophonon white Nacre paper' +p285186 +sg225230 +S'Fourteen Stations of the Cross' +p285187 +sg225236 +S'1966/1967' +p285188 +sa(dp285189 +g225232 +S'Robert Cremean' +p285190 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pink-brown, light pinkand black on white Nacre paper' +p285191 +sg225230 +S'Second Station' +p285192 +sg225236 +S'1966' +p285193 +sa(dp285194 +g225232 +S'Robert Cremean' +p285195 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pink-brown, light pinkand black on white Nacre paper' +p285196 +sg225230 +S'Third Station' +p285197 +sg225236 +S'1966' +p285198 +sa(dp285199 +g225232 +S'Robert Cremean' +p285200 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pink-brown, light pinkand black on white Nacre paper' +p285201 +sg225230 +S'Fourth Station' +p285202 +sg225236 +S'1966/1967' +p285203 +sa(dp285204 +g225232 +S'Robert Cremean' +p285205 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pink-brown, light pinkand black on white Nacre paper' +p285206 +sg225230 +S'Fifth Station' +p285207 +sg225236 +S'1966/1967' +p285208 +sa(dp285209 +g225232 +S'Robert Cremean' +p285210 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pink-brown, light pinkand black on white Nacre paper' +p285211 +sg225230 +S'Sixth Station' +p285212 +sg225236 +S'1966/1967' +p285213 +sa(dp285214 +g225232 +S'Robert Cremean' +p285215 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pink-brown, light pinkand black on white Nacre paper' +p285216 +sg225230 +S'Seventh Station' +p285217 +sg225236 +S'1966/1967' +p285218 +sa(dp285219 +g225232 +S'Robert Cremean' +p285220 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pink-brown, light pinkand black on white Nacre paper' +p285221 +sg225230 +S'Eighth Station' +p285222 +sg225236 +S'1966/1967' +p285223 +sa(dp285224 +g225232 +S'Robert Cremean' +p285225 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pink-brown, light pinkand black on white Nacre paper' +p285226 +sg225230 +S'Ninth Station' +p285227 +sg225236 +S'1966/1967' +p285228 +sa(dp285229 +g225232 +S'Robert Cremean' +p285230 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pink-brown, light pinkand black on white Nacre paper' +p285231 +sg225230 +S'Tenth Station' +p285232 +sg225236 +S'1967' +p285233 +sa(dp285234 +g225232 +S'Robert Cremean' +p285235 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pink-brown, light pinkand black on white Nacre paper' +p285236 +sg225230 +S'Eleventh Station' +p285237 +sg225236 +S'1967' +p285238 +sa(dp285239 +g225232 +S'Robert Cremean' +p285240 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pink-brown, light pinkand black on white Nacre paper' +p285241 +sg225230 +S'Twelfth Station' +p285242 +sg225236 +S'1967' +p285243 +sa(dp285244 +g225232 +S'Robert Cremean' +p285245 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pink-brown, light pinkand black on white Nacre paper' +p285246 +sg225230 +S'Thirteenth Station' +p285247 +sg225236 +S'1967' +p285248 +sa(dp285249 +g225232 +S'Robert Cremean' +p285250 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pink-brown, light pinkand black on white Nacre paper' +p285251 +sg225230 +S'Fourteenth Station' +p285252 +sg225236 +S'1967' +p285253 +sa(dp285254 +g225232 +S'Robert Cremean' +p285255 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p285256 +sg225230 +S'Study' +p285257 +sg225236 +S'1966' +p285258 +sa(dp285259 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285260 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown on white Nacre paper' +p285261 +sg225230 +S'Charenton (Title Page)' +p285262 +sg225236 +S'1966' +p285263 +sa(dp285264 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285265 +sg225240 +g27 +sg225234 +S'portfolio w/ 15 color lithographs (stone and aluminum) including title page, table of contents, and colophon on white Nacre paper' +p285266 +sg225230 +S'Charenton' +p285267 +sg225236 +S'1965/1966' +p285268 +sa(dp285269 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285270 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p285271 +sg225230 +S'Charenton (Table of Contents)' +p285272 +sg225236 +S'1966' +p285273 +sa(dp285274 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285275 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown-orange and green-black on white Nacre paper' +p285276 +sg225230 +S'Justine and the Marquis de Sade' +p285277 +sg225236 +S'1965' +p285278 +sa(dp285279 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285280 +sg225240 +g27 +sg225234 +S'lithograph (stone) in transparent green and dark brown on white Nacre paper' +p285281 +sg225230 +S'Doctor Laforet and His Patients' +p285282 +sg225236 +S'1965' +p285283 +sa(dp285284 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285285 +sg225240 +g27 +sg225234 +S'lithograph (stone) in two dark browns on white Nacre paper' +p285286 +sg225230 +S'Double Portrait of Doctor Laforet' +p285287 +sg225236 +S'1965' +p285288 +sa(dp285289 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285290 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p285291 +sg225230 +S'Ghosts of the Asylum' +p285292 +sg225236 +S'1965' +p285293 +sa(dp285294 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285295 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p285296 +sg225230 +S'Tortured Ones' +p285297 +sg225236 +S'1965' +p285298 +sa(dp285299 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285300 +sg225240 +g27 +sg225234 +S'lithograph (stone) in dark brown on white Nacre paper' +p285301 +sg225230 +S'Visions of the Marquis de Sade' +p285302 +sg225236 +S'1965' +p285303 +sa(dp285304 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285305 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in light brown and black on white Nacre paper' +p285306 +sg225230 +S'Visitors' +p285307 +sg225236 +S'1965/1966' +p285308 +sa(dp285309 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285310 +sg225240 +g27 +sg225234 +S'lithograph (stone) in dark green-brown on white Nacre paper' +p285311 +sg225230 +S'Happenings at Charenton' +p285312 +sg225236 +S'1966' +p285313 +sa(dp285314 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285315 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown-orange and black on white Nacre paper' +p285316 +sg225230 +S'Procuress with Meat' +p285317 +sg225236 +S'1966' +p285318 +sa(dp285319 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285320 +sg225240 +g27 +sg225234 +S'lithograph (stone) in yellow-beige and black on white Nacre paper' +p285321 +sg225230 +S'The Marriage of the Arnolfini' +p285322 +sg225236 +S'1965' +p285323 +sa(dp285324 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285325 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p285326 +sg225230 +S'Beast Eating' +p285327 +sg225236 +S'1965' +p285328 +sa(dp285329 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285330 +sg225240 +g27 +sg225234 +S'lithograph (stone) in two blacks on white Nacre paper' +p285331 +sg225230 +S'Worm Pit' +p285332 +sg225236 +S'1965/1966' +p285333 +sa(dp285334 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285335 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p285336 +sg225230 +S'Charenton (Colophon)' +p285337 +sg225236 +S'1966' +p285338 +sa(dp285339 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285340 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on natural Nacre paper' +p285341 +sg225230 +S'The Marquis de Sade and the King of Diamonds' +p285342 +sg225236 +S'1965' +p285343 +sa(dp285344 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285345 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p285346 +sg225230 +S'Cast of Characters' +p285347 +sg225236 +S'1965' +p285348 +sa(dp285349 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285350 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on de Laga Narcisse paper' +p285351 +sg225230 +S'The Marquis de Sade-Pig' +p285352 +sg225236 +S'1965' +p285353 +sa(dp285354 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285355 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in beige, gray-green and black on white Nacre paper' +p285356 +sg225230 +S'Head with Worms' +p285357 +sg225236 +S'1965' +p285358 +sa(dp285359 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285360 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on de Laga Narcisse paper' +p285361 +sg225230 +S'Untitled' +p285362 +sg225236 +S'1966' +p285363 +sa(dp285364 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285365 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on de Laga Narcisse paper' +p285366 +sg225230 +S'The Marquis de Sade' +p285367 +sg225236 +S'1966' +p285368 +sa(dp285369 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285370 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on natural Nacre paper' +p285371 +sg225230 +S'Interior' +p285372 +sg225236 +S'1966' +p285373 +sa(dp285374 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285375 +sg225240 +g27 +sg225234 +S'lithograph' +p285376 +sg225230 +S'Self-Portrait like Musicians' +p285377 +sg225236 +S'unknown date\n' +p285378 +sa(dp285379 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285380 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on natural Nacre paper' +p285381 +sg225230 +S'Portrait like Beethoven' +p285382 +sg225236 +S'1966' +p285383 +sa(dp285384 +g225232 +S'Jos\xc3\xa9 Luis Cuevas' +p285385 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on natural Nacre paper' +p285386 +sg225230 +S'Cuevas-Charenton' +p285387 +sg225236 +S'1966' +p285388 +sa(dp285389 +g225232 +S'Burhan Cahit Dogancay' +p285390 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown on uncalendered Rives paper' +p285391 +sg225230 +S'Wall V (I) (Title Page/Colophon)' +p285392 +sg225236 +S'1969' +p285393 +sa(dp285394 +g225232 +S'Burhan Cahit Dogancay' +p285395 +sg225240 +g27 +sg225234 +S'portfolio with 11 color lithographs (stone, aluminum, and zinc) including title page and colophon onuncalendered Rives paper' +p285396 +sg225230 +S'Walls V' +p285397 +sg225236 +S'1969' +p285398 +sa(dp285399 +g225232 +S'Burhan Cahit Dogancay' +p285400 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in red, blue and black on uncalendered Rives paper' +p285401 +sg225230 +S'Walls V (II)' +p285402 +sg225236 +S'1969' +p285403 +sa(dp285404 +g225232 +S'Burhan Cahit Dogancay' +p285405 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in yellow, red andblue on uncalendered Rives paper' +p285406 +sg225230 +S'Walls V (III)' +p285407 +sg225236 +S'1969' +p285408 +sa(dp285409 +g225232 +S'Burhan Cahit Dogancay' +p285410 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in yellow, red and blue on uncalendered Rives paper' +p285411 +sg225230 +S'Walls V (IV)' +p285412 +sg225236 +S'1969' +p285413 +sa(dp285414 +g225232 +S'Burhan Cahit Dogancay' +p285415 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in yellow, red and blue on uncalendered Rives paper' +p285416 +sg225230 +S'Walls V (V)' +p285417 +sg225236 +S'1969' +p285418 +sa(dp285419 +g225232 +S'Burhan Cahit Dogancay' +p285420 +sg225240 +g27 +sg225234 +S'lithograph (zinc, aluminum and stone) in yellow, blue and red on uncalendered Rives paper' +p285421 +sg225230 +S'Walls V (VI)' +p285422 +sg225236 +S'1969' +p285423 +sa(dp285424 +g225232 +S'Burhan Cahit Dogancay' +p285425 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in red and blue onuncalendered Rives paper' +p285426 +sg225230 +S'Walls V (VII)' +p285427 +sg225236 +S'1969' +p285428 +sa(dp285429 +g225232 +S'Burhan Cahit Dogancay' +p285430 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in black, yellow and red on uncalendered Rives paper' +p285431 +sg225230 +S'Walls V (VIII)' +p285432 +sg225236 +S'1969' +p285433 +sa(dp285434 +g225232 +S'Burhan Cahit Dogancay' +p285435 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in yellow and black on uncalendered Rives paper' +p285436 +sg225230 +S'Walls V (IX)' +p285437 +sg225236 +S'1969' +p285438 +sa(dp285439 +g225232 +S'Burhan Cahit Dogancay' +p285440 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in blue and red onuncalendered Rives paper' +p285441 +sg225230 +S'Walls V (X)' +p285442 +sg225236 +S'1969' +p285443 +sa(dp285444 +g225232 +S'Burhan Cahit Dogancay' +p285445 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in red, blue and black on uncalendered Rives paper' +p285446 +sg225230 +S'Walls V (XI)' +p285447 +sg225236 +S'1969' +p285448 +sa(dp285449 +g225232 +S'Burhan Cahit Dogancay' +p285450 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in pink, red and two blacks on German Etching paper' +p285451 +sg225230 +S'Untitled' +p285452 +sg225236 +S'1969' +p285453 +sa(dp285454 +g225232 +S'Burhan Cahit Dogancay' +p285455 +sg225240 +g27 +sg225234 +S'lithograph (stone) in violet-black on Copperplate Deluxe paper' +p285456 +sg225230 +S'Untitled' +p285457 +sg225236 +S'1969' +p285458 +sa(dp285459 +g225232 +S'Jules Engel' +p285460 +sg225240 +g27 +sg225234 +S'lithograph (stone) in blue on J. Green paper' +p285461 +sg225230 +S'Homage to Nevelson II' +p285462 +sg225236 +S'1968' +p285463 +sa(dp285464 +g225232 +S'Jules Engel' +p285465 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in green, black and blue on calendered Rives paper' +p285466 +sg225230 +S'Twins' +p285467 +sg225236 +S'1968' +p285468 +sa(dp285469 +g225232 +S'Jules Engel' +p285470 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in black, violet and red-orange on calendered Rives paper' +p285471 +sg225230 +S'Twins II' +p285472 +sg225236 +S'1968' +p285473 +sa(dp285474 +g225232 +S'Jules Engel' +p285475 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in red-orange, green and black on Copperplate Deluxe paper' +p285476 +sg225230 +S'Untitled' +p285477 +sg225236 +S'1968' +p285478 +sa(dp285479 +g225232 +S'Sam Francis' +p285480 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in green, yellow, red and blue on white Arches paper' +p285481 +sg225230 +S'Bright Nothing' +p285482 +sg225236 +S'1963' +p285483 +sa(dp285484 +g225232 +S'Sam Francis' +p285485 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in red and blue on white Arches paper' +p285486 +sg225230 +S'Chinese Planet' +p285487 +sg225236 +S'1963' +p285488 +sa(dp285489 +g225232 +S'Sam Francis' +p285490 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in yellow, violet and red on white Arches paper' +p285491 +sg225230 +S'Yellow Speck' +p285492 +sg225236 +S'1963' +p285493 +sa(dp285494 +g225232 +S'Sam Francis' +p285495 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in blue, yellow and red on whiteArches paper' +p285496 +sg225230 +S'Another Disappearance' +p285497 +sg225236 +S'1963' +p285498 +sa(dp285499 +g225232 +S'Sam Francis' +p285500 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in black on white Arches paper' +p285501 +sg225230 +S'Essai' +p285502 +sg225236 +S'1963' +p285503 +sa(dp285504 +g225232 +S'Sam Francis' +p285505 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p285506 +sg225230 +S'Stone Cloud' +p285507 +sg225236 +S'1963' +p285508 +sa(dp285509 +g225232 +S'Sam Francis' +p285510 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in yellow and blue on white Arches paper' +p285511 +sg225230 +S'Mercury' +p285512 +sg225236 +S'1963' +p285513 +sa(dp285514 +g225232 +S'Sam Francis' +p285515 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in yellow, red and blue on RivesBFK paper' +p285516 +sg225230 +S'Flying Love' +p285517 +sg225236 +S'1963' +p285518 +sa(dp285519 +g225232 +S'Sam Francis' +p285520 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in yellow, two oranges, red and two blues on uncalendered Rives paper' +p285521 +sg225230 +S'A Sail' +p285522 +sg225236 +S'1969' +p285523 +sa(dp285524 +g225232 +S'Sam Francis' +p285525 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in yellow, two oranges, red, blue and violet on uncalendered Rives paper' +p285526 +sg225230 +S'Blue Cut Sail' +p285527 +sg225236 +S'1969' +p285528 +sa(dp285529 +g225232 +S'Sam Francis' +p285530 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in yellow, two reds and blue on uncalendered Rives paper' +p285531 +sg225230 +S'Damp' +p285532 +sg225236 +S'1969' +p285533 +sa(dp285534 +g225232 +S'Sam Francis' +p285535 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in two blues, green, yellow and red on calendered Rives paper' +p285536 +sg225230 +S'Chinese Wall' +p285537 +sg225236 +S'1969' +p285538 +sa(dp285539 +g225232 +S'Sam Francis' +p285540 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in yellow, orange, blue, green and two reds on uncalendered Rives paper' +p285541 +sg225230 +S'Veiled Sail' +p285542 +sg225236 +S'1969' +p285543 +sa(dp285544 +g225232 +S'Sam Francis' +p285545 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in red, blue, two greens, orange, yellow and violet on uncalendered Rives paper' +p285546 +sg225230 +S'Sulfur Sails' +p285547 +sg225236 +S'1969' +p285548 +sa(dp285549 +g225232 +S'Sonia Gechtoff' +p285550 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in red-violet, blue and black on white Arches paper' +p285551 +sg225230 +S'Title Page' +p285552 +sg225236 +S'1963' +p285553 +sa(dp285554 +g225232 +S'Sonia Gechtoff' +p285555 +sg225240 +g27 +sg225234 +S'portfolio w/ 8 color lithographs (zinc and stone) including title page and colophon on white Arches paper' +p285556 +sg225230 +S'6 Icons' +p285557 +sg225236 +S'1963' +p285558 +sa(dp285559 +g225232 +S'Sonia Gechtoff' +p285560 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in yellow, violet, redand black on white Arches paper' +p285561 +sg225230 +S'Icon I' +p285562 +sg225236 +S'1963' +p285563 +sa(dp285564 +g225232 +S'Sonia Gechtoff' +p285565 +sg225240 +g27 +sg225234 +S'lithograph (stone) in dark blue and black on whiteArches paper' +p285566 +sg225230 +S'Icon II' +p285567 +sg225236 +S'1963' +p285568 +sa(dp285569 +g225232 +S'Sonia Gechtoff' +p285570 +sg225240 +g27 +sg225234 +S'lithograph (stone) in beige, brown and black on white Arches paper' +p285571 +sg225230 +S'Icon III' +p285572 +sg225236 +S'1963' +p285573 +sa(dp285574 +g225232 +S'Sonia Gechtoff' +p285575 +sg225240 +g27 +sg225234 +S'lithograph (stone) in gray-green and black on white Arches paper' +p285576 +sg225230 +S'Icon IV' +p285577 +sg225236 +S'1963' +p285578 +sa(dp285579 +g225232 +S'Sonia Gechtoff' +p285580 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in light blue, ochre and black on white Arches paper' +p285581 +sg225230 +S'Icon V' +p285582 +sg225236 +S'1963' +p285583 +sa(dp285584 +g225232 +S'Sonia Gechtoff' +p285585 +sg225240 +g27 +sg225234 +S'lithograph (stone) in pink, red and black on whiteArches paper' +p285586 +sg225230 +S'Icon VI' +p285587 +sg225236 +S'1963' +p285588 +sa(dp285589 +g225232 +S'Sonia Gechtoff' +p285590 +sg225240 +g27 +sg225234 +S'lithograph (stone) in yellow and blue-black on white Arches paper' +p285591 +sg225230 +S'Colophon' +p285592 +sg225236 +S'1963' +p285593 +sa(dp285594 +g225232 +S'Sonia Gechtoff' +p285595 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p285596 +sg225230 +S'Untitled' +p285597 +sg225236 +S'1963' +p285598 +sa(dp285599 +g225232 +S'Sonia Gechtoff' +p285600 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in light blue, pink and blue-black on natural Nacre paper' +p285601 +sg225230 +S'Untitled' +p285602 +sg225236 +S'1963' +p285603 +sa(dp285604 +g225232 +S'Sonia Gechtoff' +p285605 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in black on white Nacre paper' +p285606 +sg225230 +S'Untitled' +p285607 +sg225236 +S'1963' +p285608 +sa(dp285609 +g225232 +S'Sonia Gechtoff' +p285610 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in black on white Nacre paper' +p285611 +sg225230 +S'Untitled' +p285612 +sg225236 +S'1963' +p285613 +sa(dp285614 +g225232 +S'Sonia Gechtoff' +p285615 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p285616 +sg225230 +S'Untitled' +p285617 +sg225236 +S'1963' +p285618 +sa(dp285619 +g225232 +S'Sonia Gechtoff' +p285620 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p285621 +sg225230 +S'Untitled' +p285622 +sg225236 +S'1963' +p285623 +sa(dp285624 +g225232 +S'Sonia Gechtoff' +p285625 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p285626 +sg225230 +S'Untitled' +p285627 +sg225236 +S'1963' +p285628 +sa(dp285629 +g225232 +S'Sonia Gechtoff' +p285630 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p285631 +sg225230 +S'Untitled' +p285632 +sg225236 +S'1963' +p285633 +sa(dp285634 +g225232 +S'Gego' +p285635 +sg225240 +g27 +sg225234 +S'bound volume w/ 12 lithographs (stone) in red and light green-gray plus title page and colophon on white Nacre paper' +p285636 +sg225230 +S'Lines' +p285637 +sg225236 +S'1966' +p285638 +sa(dp285639 +g225232 +S'Gego' +p285640 +sg225240 +g27 +sg225234 +S'portfolio with cont. 4-part lithograph (zinc and stone) in yellow, white, and gray on white Nacre paper' +p285641 +sg225230 +S'Untitled' +p285642 +sg225236 +S'1966' +p285643 +sa(dp285644 +g225232 +S'Gego' +p285645 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p285646 +sg225230 +S'Suite 5X I' +p285647 +sg225236 +S'1966' +p285648 +sa(dp285649 +g225232 +S'Gego' +p285650 +sg225240 +g27 +sg225234 +S'portfolio with 5 lithographs (stone) in black' +p285651 +sg225230 +S'Suite 5X' +p285652 +sg225236 +S'1966' +p285653 +sa(dp285654 +g225232 +S'Gego' +p285655 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p285656 +sg225230 +S'Suite 5X II' +p285657 +sg225236 +S'1966' +p285658 +sa(dp285659 +g225232 +S'Gego' +p285660 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p285661 +sg225230 +S'Suite 5X III' +p285662 +sg225236 +S'1966' +p285663 +sa(dp285664 +g225232 +S'Gego' +p285665 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p285666 +sg225230 +S'Suite 5X IV' +p285667 +sg225236 +S'1966' +p285668 +sa(dp285669 +g225232 +S'Gego' +p285670 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p285671 +sg225230 +S'Suite 5X V' +p285672 +sg225236 +S'1966' +p285673 +sa(dp285674 +g225232 +S'Gego' +p285675 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in black on white Arches paper' +p285676 +sg225230 +S'Untitled' +p285677 +sg225236 +S'1963' +p285678 +sa(dp285679 +g225232 +S'Gego' +p285680 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in dark blue on white Arches paper' +p285681 +sg225230 +S'Untitled' +p285682 +sg225236 +S'1963' +p285683 +sa(dp285684 +g225232 +S'Gego' +p285685 +sg225240 +g27 +sg225234 +S'lithograph (stone) in pink and red on white Archespaper' +p285686 +sg225230 +S'Untitled' +p285687 +sg225236 +S'1966' +p285688 +sa(dp285689 +g225232 +S'Gego' +p285690 +sg225240 +g27 +sg225234 +S'lithograph (stone) in pink and red on white Archespaper' +p285691 +sg225230 +S'Untitled' +p285692 +sg225236 +S'1966' +p285693 +sa(dp285694 +g225232 +S'Gego' +p285695 +sg225240 +g27 +sg225234 +S'lithograph (stone) in pink and red on white Archespaper' +p285696 +sg225230 +S'Untitled' +p285697 +sg225236 +S'1966' +p285698 +sa(dp285699 +g225232 +S'Gego' +p285700 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p285701 +sg225230 +S'Untitled' +p285702 +sg225236 +S'1966' +p285703 +sa(dp285704 +g225232 +S'Gego' +p285705 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in brown on white Nacre paper' +p285706 +sg225230 +S'Untitled' +p285707 +sg225236 +S'1966' +p285708 +sa(dp285709 +g225232 +S'Gego' +p285710 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in red and black on white Nacre paper' +p285711 +sg225230 +S'Untitled' +p285712 +sg225236 +S'1966' +p285713 +sa(dp285714 +g225232 +S'Gego' +p285715 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p285716 +sg225230 +S'Untitled' +p285717 +sg225236 +S'1966' +p285718 +sa(dp285719 +g225232 +S'Gego' +p285720 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p285721 +sg225230 +S'Untitled' +p285722 +sg225236 +S'1966' +p285723 +sa(dp285724 +g225232 +S'Gego' +p285725 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in light brown and white on natural Nacre paper' +p285726 +sg225230 +S'Untitled' +p285727 +sg225236 +S'1966' +p285728 +sa(dp285729 +g225232 +S'Gego' +p285730 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p285731 +sg225230 +S'Untitled' +p285732 +sg225236 +S'1966' +p285733 +sa(dp285734 +g225232 +S'Gego' +p285735 +sg225240 +g27 +sg225234 +S'lithograph (stone) in blue-black on white Nacre paper' +p285736 +sg225230 +S'Untitled' +p285737 +sg225236 +S'1966' +p285738 +sa(dp285739 +g225232 +S'Gego' +p285740 +sg225240 +g27 +sg225234 +S'lithograph (stone) in white on white Nacre paper' +p285741 +sg225230 +S'Untitled' +p285742 +sg225236 +S'1966' +p285743 +sa(dp285744 +g225232 +S'Gego' +p285745 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in dark violet and black on white Nacre paper' +p285746 +sg225230 +S'Untitled' +p285747 +sg225236 +S'1966' +p285748 +sa(dp285749 +g225232 +S'Gego' +p285750 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in black on white Nacre paper' +p285751 +sg225230 +S'Untitled' +p285752 +sg225236 +S'1966' +p285753 +sa(dp285754 +g225232 +S'Gego' +p285755 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p285756 +sg225230 +S'Untitled' +p285757 +sg225236 +S'1966' +p285758 +sa(dp285759 +g225232 +S'Gego' +p285760 +sg225240 +g27 +sg225234 +S'lithograph (stone) in dark gray and blue-black on Copperplate Deluxe paper' +p285761 +sg225230 +S'Untitled' +p285762 +sg225236 +S'1966' +p285763 +sa(dp285764 +g225232 +S'Gego' +p285765 +sg225240 +g27 +sg225234 +S'lithograph (stone) in two yellows on Copperplate Deluxe paper' +p285766 +sg225230 +S'Untitled' +p285767 +sg225236 +S'1966' +p285768 +sa(dp285769 +g225232 +S'Gego' +p285770 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p285771 +sg225230 +S'Untitled' +p285772 +sg225236 +S'1966' +p285773 +sa(dp285774 +g225232 +S'Gego' +p285775 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p285776 +sg225230 +S'Untitled' +p285777 +sg225236 +S'1966' +p285778 +sa(dp285779 +g225232 +S'Gego' +p285780 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p285781 +sg225230 +S'Untitled' +p285782 +sg225236 +S'1966' +p285783 +sa(dp285784 +g225232 +S'Gego' +p285785 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p285786 +sg225230 +S'Untitled' +p285787 +sg225236 +S'1966' +p285788 +sa(dp285789 +g225232 +S'Gego' +p285790 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p285791 +sg225230 +S'Untitled' +p285792 +sg225236 +S'1966' +p285793 +sa(dp285794 +g225232 +S'Leon Albert Golub' +p285795 +sg225240 +g27 +sg225234 +S'lithograph (stone) in pink on white Arches paper' +p285796 +sg225230 +S'Title Page' +p285797 +sg225236 +S'1965' +p285798 +sa(dp285799 +g225232 +S'Leon Albert Golub' +p285800 +sg225240 +g27 +sg225234 +S'portfolio w/ 8 color lithographs (stone) includingtitle page on white Arches, buff Arches and Fabri ano paper' +p285801 +sg225230 +S'Agon' +p285802 +sg225236 +S'1965' +p285803 +sa(dp285804 +g225232 +S'Leon Albert Golub' +p285805 +sg225240 +g27 +sg225234 +S'lithograph (stone) in dark green, light blue-greenand black on white Arches paper' +p285806 +sg225230 +S'Orator' +p285807 +sg225236 +S'1965' +p285808 +sa(dp285809 +g225232 +S'Leon Albert Golub' +p285810 +sg225240 +g27 +sg225234 +S'lithograph (stone) in dark brown on white Arches paper' +p285811 +sg225230 +S'Fallen Warrior' +p285812 +sg225236 +S'1965' +p285813 +sa(dp285814 +g225232 +S'Leon Albert Golub' +p285815 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red on white Arches paper' +p285816 +sg225230 +S'Running Man' +p285817 +sg225236 +S'1965' +p285818 +sa(dp285819 +g225232 +S'Leon Albert Golub' +p285820 +sg225240 +g27 +sg225234 +S'lithograph (stone) in dark green on buff Arches paper' +p285821 +sg225230 +S'Running Man II' +p285822 +sg225236 +S'1965' +p285823 +sa(dp285824 +g225232 +S'Leon Albert Golub' +p285825 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pink, blue and two reds on Fabriano paper' +p285826 +sg225230 +S'Wounded Warrior' +p285827 +sg225236 +S'1965' +p285828 +sa(dp285829 +g225232 +S'Leon Albert Golub' +p285830 +sg225240 +g27 +sg225234 +S'lithograph (stone) in blue and violet on white Arches paper' +p285831 +sg225230 +S'Running Blue Sphinx' +p285832 +sg225236 +S'1965' +p285833 +sa(dp285834 +g225232 +S'Leon Albert Golub' +p285835 +sg225240 +g27 +sg225234 +S'lithograph (stone) in orange, light blue and greenon white Arches paper' +p285836 +sg225230 +S'The Winged Sphinx' +p285837 +sg225236 +S'1965' +p285838 +sa(dp285839 +g225232 +S'Leon Albert Golub' +p285840 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p285841 +sg225230 +S'Fallen Fighter' +p285842 +sg225236 +S'1965' +p285843 +sa(dp285844 +g225232 +S'Leon Albert Golub' +p285845 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown on buff Arches paper' +p285846 +sg225230 +S'Running Man II' +p285847 +sg225236 +S'1965' +p285848 +sa(dp285849 +g225232 +S'Leon Albert Golub' +p285850 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red-orange, red-brown and light blue on buff Arches paper' +p285851 +sg225230 +S'Fleeing Man' +p285852 +sg225236 +S'1965' +p285853 +sa(dp285854 +g225232 +S'Leon Albert Golub' +p285855 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in orange and blue-green on white Arches paper' +p285856 +sg225230 +S'The Orange Sphinx' +p285857 +sg225236 +S'1965' +p285858 +sa(dp285859 +g225232 +S'Leon Albert Golub' +p285860 +sg225240 +g27 +sg225234 +S'lithograph (stone) in orange-brown, black and darkgreen on Rives BFK paper' +p285861 +sg225230 +S'Niobe' +p285862 +sg225236 +S'1965' +p285863 +sa(dp285864 +g225230 +S'Orator II' +p285865 +sg225232 +S'Leon Albert Golub' +p285866 +sg225234 +S'lithograph (stone) in pink-orange, red and gray-violet on white Arches paper' +p285867 +sg225236 +S'1965' +p285868 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000aa6.jpg' +p285869 +sg225240 +g27 +sa(dp285870 +g225232 +S'Leon Albert Golub' +p285871 +sg225240 +g27 +sg225234 +S'lithograph (stone) in dark green on Rives BFK paper' +p285872 +sg225230 +S'Fleeing Girls' +p285873 +sg225236 +S'1965' +p285874 +sa(dp285875 +g225232 +S'Leon Albert Golub' +p285876 +sg225240 +g27 +sg225234 +S'lithograph (stone) in orange, blue-green and blackon Rives BFK paper' +p285877 +sg225230 +S'Niobid' +p285878 +sg225236 +S'1965' +p285879 +sa(dp285880 +g225232 +S'Leon Albert Golub' +p285881 +sg225240 +g27 +sg225234 +S'lithograph (stone) in blue, black and red on Copperplate Deluxe paper' +p285882 +sg225230 +S'Wounded Sphinx' +p285883 +sg225236 +S'1965' +p285884 +sa(dp285885 +g225232 +S'Leon Albert Golub' +p285886 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown and black on Rives BFKpaper' +p285887 +sg225230 +S'Struggle' +p285888 +sg225236 +S'1965' +p285889 +sa(dp285890 +g225232 +S'Leon Albert Golub' +p285891 +sg225240 +g27 +sg225234 +S'lithograph (stone) in violet, light green and brown-orange on white Arches paper' +p285892 +sg225230 +S'Seated Man' +p285893 +sg225236 +S'1965' +p285894 +sa(dp285895 +g225232 +S'Leon Albert Golub' +p285896 +sg225240 +g27 +sg225234 +S'lithograph (stone) in dark red on Copperplate Deluxe paper' +p285897 +sg225230 +S'Man and Woman' +p285898 +sg225236 +S'1965' +p285899 +sa(dp285900 +g225230 +S'Wounded Sphinx II' +p285901 +sg225232 +S'Leon Albert Golub' +p285902 +sg225234 +S'lithograph (stone) in dark blue and red on white Arches paper' +p285903 +sg225236 +S'1965' +p285904 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000aa7.jpg' +p285905 +sg225240 +g27 +sa(dp285906 +g225232 +S'Leon Albert Golub' +p285907 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p285908 +sg225230 +S'Niobid II' +p285909 +sg225236 +S'1965' +p285910 +sa(dp285911 +g225232 +S'Leon Albert Golub' +p285912 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red-black on white Arches paper' +p285913 +sg225230 +S'The Fighter' +p285914 +sg225236 +S'1965' +p285915 +sa(dp285916 +g225232 +S'John Grillo' +p285917 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in yellow and brown onwhite Arches paper' +p285918 +sg225230 +S'Illuminations of Time and Space I (Title Page)' +p285919 +sg225236 +S'1964' +p285920 +sa(dp285921 +g225232 +S'John Grillo' +p285922 +sg225240 +g27 +sg225234 +S'portfolio w/ 10 color lithographs (stone and zinc)including title page and colophon on white Arches paper' +p285923 +sg225230 +S'Illuminations of Time and Space' +p285924 +sg225236 +S'1964' +p285925 +sa(dp285926 +g225232 +S'John Grillo' +p285927 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black and violet on white Arches paper' +p285928 +sg225230 +S'Illuminations of Time and Space II' +p285929 +sg225236 +S'1964' +p285930 +sa(dp285931 +g225232 +S'John Grillo' +p285932 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in orange and red on white Arches paper' +p285933 +sg225230 +S'Illuminations of Time and Space III' +p285934 +sg225236 +S'1964' +p285935 +sa(dp285936 +g225232 +S'John Grillo' +p285937 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in blue, gray and darkviolet-brown on white Arches paper' +p285938 +sg225230 +S'Illuminations of Time and Space IV' +p285939 +sg225236 +S'1964' +p285940 +sa(dp285941 +g225232 +S'John Grillo' +p285942 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in yellow and violet on white Arches paper' +p285943 +sg225230 +S'Illuminations of Time and Space V' +p285944 +sg225236 +S'1964' +p285945 +sa(dp285946 +g225232 +S'John Grillo' +p285947 +sg225240 +g27 +sg225234 +S'lithograph (stone) in violet-brown on white Archespaper' +p285948 +sg225230 +S'Untitled' +p285949 +sg225236 +S'1964' +p285950 +sa(dp285951 +g225232 +S'John Grillo' +p285952 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in orange, red, gray and green on white Arches paper' +p285953 +sg225230 +S'Illuminations of Time and Space VII' +p285954 +sg225236 +S'1964' +p285955 +sa(dp285956 +g225232 +S'John Grillo' +p285957 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in dark blue-green on white Arches paper' +p285958 +sg225230 +S'Illuminations of Time and Space VIII' +p285959 +sg225236 +S'1964' +p285960 +sa(dp285961 +g225232 +S'John Grillo' +p285962 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in red, gray and blue on white Arches paper' +p285963 +sg225230 +S'Illuminations of Time and Space IX' +p285964 +sg225236 +S'1964' +p285965 +sa(dp285966 +g225232 +S'John Grillo' +p285967 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in black and violet on white Arches paper' +p285968 +sg225230 +S'Illuminations of Time and Space X (Colophon)' +p285969 +sg225236 +S'1964' +p285970 +sa(dp285971 +g225232 +S'John Grillo' +p285972 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in red, orange, blue-green and dark blue on white Arches paper' +p285973 +sg225230 +S'Untitled' +p285974 +sg225236 +S'1964' +p285975 +sa(dp285976 +g225232 +S'John Grillo' +p285977 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in red and blue on white Arches paper' +p285978 +sg225230 +S'Untitled' +p285979 +sg225236 +S'1964' +p285980 +sa(dp285981 +g225232 +S'John Grillo' +p285982 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in yellow and violet-brown on Rives BFK paper' +p285983 +sg225230 +S'Untitled' +p285984 +sg225236 +S'1964' +p285985 +sa(dp285986 +g225232 +S'John Grillo' +p285987 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in violet on Rives BFK paper' +p285988 +sg225230 +S'Untitled' +p285989 +sg225236 +S'1964' +p285990 +sa(dp285991 +g225232 +S'John Grillo' +p285992 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in black on white Arches paper' +p285993 +sg225230 +S'Untitled' +p285994 +sg225236 +S'1964' +p285995 +sa(dp285996 +g225232 +S'William Gropper' +p285997 +sg225240 +g27 +sg225234 +S'lithograph (stone) in two greens and violet on white Arches paper' +p285998 +sg225230 +S'Untitled' +p285999 +sg225236 +S'1967' +p286000 +sa(dp286001 +g225232 +S'William Gropper' +p286002 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in yellow-brown, violet, yellow, blue-green and gray on white Archespaper' +p286003 +sg225230 +S'Untitled' +p286004 +sg225236 +S'1967' +p286005 +sa(dp286006 +g225232 +S'William Gropper' +p286007 +sg225240 +g27 +sg225234 +S'lithograph (stone) in two grays and red-brown on white Arches paper' +p286008 +sg225230 +S'Untitled' +p286009 +sg225236 +S'1967' +p286010 +sa(dp286011 +g225232 +S'William Gropper' +p286012 +sg225240 +g27 +sg225234 +S'lithograph (stone) in gray, blue and red-brown on white Arches paper' +p286013 +sg225230 +S'Untitled' +p286014 +sg225236 +S'1967' +p286015 +sa(dp286016 +g225232 +S'William Gropper' +p286017 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in brown, green and pink-orange on white Arches paper' +p286018 +sg225230 +S'Untitled' +p286019 +sg225236 +S'1967' +p286020 +sa(dp286021 +g225232 +S'William Gropper' +p286022 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in blue-gray, orange and red on white Arches paper' +p286023 +sg225230 +S'Untitled' +p286024 +sg225236 +S'1967' +p286025 +sa(dp286026 +g225232 +S'William Gropper' +p286027 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in violet, green and black on white Arches paper' +p286028 +sg225230 +S'Untitled' +p286029 +sg225236 +S'1967' +p286030 +sa(dp286031 +g225232 +S'William Gropper' +p286032 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in two blues, green and gray on white Arches paper' +p286033 +sg225230 +S'Untitled' +p286034 +sg225236 +S'1967' +p286035 +sa(dp286036 +g225232 +S'William Gropper' +p286037 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red-brown on natural Nacre paper' +p286038 +sg225230 +S'Untitled' +p286039 +sg225236 +S'1967' +p286040 +sa(dp286041 +g225232 +S'William Gropper' +p286042 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown on natural Nacre paper' +p286043 +sg225230 +S'Untitled' +p286044 +sg225236 +S'1967' +p286045 +sa(dp286046 +g225232 +S'William Gropper' +p286047 +sg225240 +g27 +sg225234 +S'lithograph (stone) in green-ochre on natural Nacrepaper' +p286048 +sg225230 +S'Untitled' +p286049 +sg225236 +S'1967' +p286050 +sa(dp286051 +g225232 +S'William Gropper' +p286052 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in yellow-gray anddark yellow-green on natural Nacre paper' +p286053 +sg225230 +S'Untitled' +p286054 +sg225236 +S'1967' +p286055 +sa(dp286056 +g225232 +S'William Gropper' +p286057 +sg225240 +g27 +sg225234 +S'lithograph (stone) in gray-brown on natural Nacre paper' +p286058 +sg225230 +S'Untitled' +p286059 +sg225236 +S'1967' +p286060 +sa(dp286061 +g225232 +S'William Gropper' +p286062 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light pink-brown on natural Nacre paper' +p286063 +sg225230 +S'Untitled' +p286064 +sg225236 +S'1967' +p286065 +sa(dp286066 +g225232 +S'William Gropper' +p286067 +sg225240 +g27 +sg225234 +S'lithograph (stone) in light violet on natural Nacre paper' +p286068 +sg225230 +S'Untitled' +p286069 +sg225236 +S'1967' +p286070 +sa(dp286071 +g225232 +S'William Gropper' +p286072 +sg225240 +g27 +sg225234 +S'lithograph (stone) in blue on natural Nacre paper' +p286073 +sg225230 +S'Untitled' +p286074 +sg225236 +S'1967' +p286075 +sa(dp286076 +g225232 +S'William Gropper' +p286077 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red-brown on natural Nacre paper' +p286078 +sg225230 +S'Untitled' +p286079 +sg225236 +S'1967' +p286080 +sa(dp286081 +g225232 +S'William Gropper' +p286082 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red-brown on natural Nacre paper' +p286083 +sg225230 +S'Untitled' +p286084 +sg225236 +S'1967' +p286085 +sa(dp286086 +g225232 +S'William Gropper' +p286087 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red-brown on natural Nacre paper' +p286088 +sg225230 +S'Untitled' +p286089 +sg225236 +S'1967' +p286090 +sa(dp286091 +g225232 +S'William Gropper' +p286092 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red-brown on natural Nacre paper' +p286093 +sg225230 +S'Untitled' +p286094 +sg225236 +S'1967' +p286095 +sa(dp286096 +g225232 +S'William Gropper' +p286097 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red-brown on natural Nacre paper' +p286098 +sg225230 +S'Untitled' +p286099 +sg225236 +S'1967' +p286100 +sa(dp286101 +g225232 +S'William Gropper' +p286102 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in orange, violet,yellow-brown and blue-green on white Arches paper' +p286103 +sg225230 +S'Untitled' +p286104 +sg225236 +S'1967' +p286105 +sa(dp286106 +g225232 +S'William Gropper' +p286107 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in brown, yellow-green and transparent gray on white Arches paper' +p286108 +sg225230 +S'Untitled' +p286109 +sg225236 +S'1967' +p286110 +sa(dp286111 +g225232 +S'William Gropper' +p286112 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in violet and brown on white Arches paper' +p286113 +sg225230 +S'Untitled' +p286114 +sg225236 +S'1967' +p286115 +sa(dp286116 +g225232 +S'William Gropper' +p286117 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in violet on white Arches paper' +p286118 +sg225230 +S'Untitled' +p286119 +sg225236 +S'1967' +p286120 +sa(dp286121 +g225232 +S'William Gropper' +p286122 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p286123 +sg225230 +S'Untitled' +p286124 +sg225236 +S'1967' +p286125 +sa(dp286126 +g225232 +S'William Gropper' +p286127 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown on German Etching paper' +p286128 +sg225230 +S'Untitled' +p286129 +sg225236 +S'1967' +p286130 +sa(dp286131 +g225232 +S'William Gropper' +p286132 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in green-brown, light violet and two greens on Copperplate Deluxe paper' +p286133 +sg225230 +S'Untitled' +p286134 +sg225236 +S'1967' +p286135 +sa(dp286136 +g225232 +S'William Gropper' +p286137 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in green-brown, light violet and two greens on Copperplate Deluxe paper' +p286138 +sg225230 +S'Untitled' +p286139 +sg225236 +S'1967' +p286140 +sa(dp286141 +g225232 +S'William Gropper' +p286142 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red-brown on natural Nacre paper' +p286143 +sg225230 +S'Untitled' +p286144 +sg225236 +S'1967' +p286145 +sa(dp286146 +g225232 +S'William Gropper' +p286147 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red-brown on natural Nacre paper' +p286148 +sg225230 +S'Untitled' +p286149 +sg225236 +S'1967' +p286150 +sa(dp286151 +g225232 +S'Robert Hansen' +p286152 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in red and black on white Arches paper' +p286153 +sg225230 +S"Satan's Saint" +p286154 +sg225236 +S'1964/1965' +p286155 +sa(dp286156 +g225232 +S'Robert Hansen' +p286157 +sg225240 +g27 +sg225234 +S'portfolio with 20 pgs. lithos (aluminum, stone)in red and black, 28 pgs. text, title pg, colophon, 2pgs. flat color, 8 endpapers on whiteArches paper' +p286158 +sg225230 +S'Guy Endore\'s "Satan\'s Saint"' +p286159 +sg225236 +S'1964/1965' +p286160 +sa(dp286161 +g225232 +S'Robert Hansen' +p286162 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in black and red on white Arches paper' +p286163 +sg225230 +S"Satan's Saint" +p286164 +sg225236 +S'1964/1965' +p286165 +sa(dp286166 +g225232 +S'Robert Hansen' +p286167 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in red and black on white Arches paper' +p286168 +sg225230 +S"Satan's Saint" +p286169 +sg225236 +S'1964/1965' +p286170 +sa(dp286171 +g225232 +S'Robert Hansen' +p286172 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in black and red on white Arches paper' +p286173 +sg225230 +S"Satan's Saint" +p286174 +sg225236 +S'1964/1965' +p286175 +sa(dp286176 +g225232 +S'Robert Hansen' +p286177 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in red and black on white Arches paper' +p286178 +sg225230 +S"Satan's Saint" +p286179 +sg225236 +S'1964/1965' +p286180 +sa(dp286181 +g225232 +S'Robert Hansen' +p286182 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in black and red on white Arches paper' +p286183 +sg225230 +S"Satan's Saint" +p286184 +sg225236 +S'1964/1965' +p286185 +sa(dp286186 +g225232 +S'Robert Hansen' +p286187 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in red and black on white Arches paper' +p286188 +sg225230 +S"Satan's Saint" +p286189 +sg225236 +S'1964/1965' +p286190 +sa(dp286191 +g225232 +S'Robert Hansen' +p286192 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in two reds and black on white Arches paper' +p286193 +sg225230 +S"Satan's Saint" +p286194 +sg225236 +S'1964/1965' +p286195 +sa(dp286196 +g225232 +S'Robert Hansen' +p286197 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in red and black on white Arches paper' +p286198 +sg225230 +S"Satan's Saint" +p286199 +sg225236 +S'1964/1965' +p286200 +sa(dp286201 +g225232 +S'Robert Hansen' +p286202 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in red and black on white Arches paper' +p286203 +sg225230 +S"Satan's Saint" +p286204 +sg225236 +S'1964/1965' +p286205 +sa(dp286206 +g225232 +S'Robert Hansen' +p286207 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in red and black on white Arches paper' +p286208 +sg225230 +S"Satan's Saint" +p286209 +sg225236 +S'1964/1965' +p286210 +sa(dp286211 +g225232 +S'Robert Hansen' +p286212 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in red and black on white Arches paper' +p286213 +sg225230 +S"Satan's Saint" +p286214 +sg225236 +S'1964/1965' +p286215 +sa(dp286216 +g225232 +S'Robert Hansen' +p286217 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in red and black on white Arches paper' +p286218 +sg225230 +S"Satan's Saint" +p286219 +sg225236 +S'1964/1965' +p286220 +sa(dp286221 +g225232 +S'Robert Hansen' +p286222 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in black on white Arches paper' +p286223 +sg225230 +S"Satan's Saint (Colophon)" +p286224 +sg225236 +S'1964/1965' +p286225 +sa(dp286226 +g225232 +S'Robert Hansen' +p286227 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p286228 +sg225230 +S'Man-Men 140' +p286229 +sg225236 +S'1964' +p286230 +sa(dp286231 +g225232 +S'Robert Hansen' +p286232 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red-black on Crisbrook Waterleaf paper' +p286233 +sg225230 +S'Man-Men 141' +p286234 +sg225236 +S'1964' +p286235 +sa(dp286236 +g225232 +S'Robert Hansen' +p286237 +sg225240 +g27 +sg225234 +S'lithograph (stone) in gray-brown and brown-black on white Arches paper' +p286238 +sg225230 +S'Christ Ascended' +p286239 +sg225236 +S'1964' +p286240 +sa(dp286241 +g225232 +S'Robert Hansen' +p286242 +sg225240 +g27 +sg225234 +S'lithograph (stone) in blue-black on Crisbrook Waterleaf paper' +p286243 +sg225230 +S'Christ Ascended' +p286244 +sg225236 +S'1964' +p286245 +sa(dp286246 +g225232 +S'Robert Hansen' +p286247 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p286248 +sg225230 +S'Man-Men 142' +p286249 +sg225236 +S'1964' +p286250 +sa(dp286251 +g225232 +S'Robert Hansen' +p286252 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in black on buff Arches paper' +p286253 +sg225230 +S'Multiple Mirror' +p286254 +sg225236 +S'1965' +p286255 +sa(dp286256 +g225232 +S'Robert Hansen' +p286257 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p286258 +sg225230 +S'Man-Men 163' +p286259 +sg225236 +S'1965' +p286260 +sa(dp286261 +g225232 +S'Robert Hansen' +p286262 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p286263 +sg225230 +S'Man-Men 160' +p286264 +sg225236 +S'1965' +p286265 +sa(dp286266 +g225232 +S'Robert Hansen' +p286267 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in black on buff Arches paper' +p286268 +sg225230 +S'Man-Men 162' +p286269 +sg225236 +S'1965' +p286270 +sa(dp286271 +g225232 +S'Robert Hansen' +p286272 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in two reds and blue on white Arches paper' +p286273 +sg225230 +S'Mama Mudra' +p286274 +sg225236 +S'1970' +p286275 +sa(dp286276 +g225232 +S'Paul Harris' +p286277 +sg225240 +g27 +sg225234 +S'lithograph (zinc and aluminum) in three blues, twopinks, three greens and green-gray on German Etch ing paper' +p286278 +sg225230 +S'The Other Room' +p286279 +sg225236 +S'1969' +p286280 +sa(dp286281 +g225232 +S'Paul Harris' +p286282 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in black on German Etching paper' +p286283 +sg225230 +S'The Window Screen' +p286284 +sg225236 +S'1969' +p286285 +sa(dp286286 +g225232 +S'Paul Harris' +p286287 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in two greens on calendered Rives paper' +p286288 +sg225230 +S'Lawn Party' +p286289 +sg225236 +S'1969' +p286290 +sa(dp286291 +g225232 +S'Paul Harris' +p286292 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in blue and black on calendered Rives paper' +p286293 +sg225230 +S'At Night' +p286294 +sg225236 +S'1969' +p286295 +sa(dp286296 +g225232 +S'Paul Harris' +p286297 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in violet-blue on Fasson foil on calendered Rives paper' +p286298 +sg225230 +S'Bathroom' +p286299 +sg225236 +S'1969' +p286300 +sa(dp286301 +g225232 +S'Paul Harris' +p286302 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in blended orange, green and two blues on German Etching paper' +p286303 +sg225230 +S'One Night in Tunisia' +p286304 +sg225236 +S'1969' +p286305 +sa(dp286306 +g225232 +S'Paul Harris' +p286307 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in brown-green and violet on Fasson foil on uncalendered Rives paper' +p286308 +sg225230 +S'The Good Tablecloth' +p286309 +sg225236 +S'1969' +p286310 +sa(dp286311 +g225232 +S'Paul Harris' +p286312 +sg225240 +g27 +sg225234 +S'lithograph (stone) in dark beige and gray on Copperplate Deluxe paper' +p286313 +sg225230 +S'Left a Light On' +p286314 +sg225236 +S'1969' +p286315 +sa(dp286316 +g225232 +S'Paul Harris' +p286317 +sg225240 +g27 +sg225234 +S'lithograph (zinc and aluminum) in blended violet, blue, green, yellow, red and gray-black on German Etching paper' +p286318 +sg225230 +S'The Girl on the Beach' +p286319 +sg225236 +S'1969' +p286320 +sa(dp286321 +g225232 +S'Paul Harris' +p286322 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in two oranges and light violet on calendered Rives paper' +p286323 +sg225230 +S'One Morning in Munich' +p286324 +sg225236 +S'1970' +p286325 +sa(dp286326 +g225232 +S'Paul Harris' +p286327 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in orange and green onCopperplate Deluxe paper' +p286328 +sg225230 +S'The South of France' +p286329 +sg225236 +S'1969' +p286330 +sa(dp286331 +g225232 +S'Paul Harris' +p286332 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on J. Green paper' +p286333 +sg225230 +S'Newspaper' +p286334 +sg225236 +S'1969' +p286335 +sa(dp286336 +g225232 +S'Paul Harris' +p286337 +sg225240 +g27 +sg225234 +S'lithograph (stone) in blended light blue, green, red, two pinks and two oranges on Copperplate Deluxe paper' +p286338 +sg225230 +S'El Cemetario Central' +p286339 +sg225236 +S'1969/1970' +p286340 +sa(dp286341 +g225232 +S'Paul Harris' +p286342 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on uncalendered Rives paper' +p286343 +sg225230 +S'Traveling Case' +p286344 +sg225236 +S'1970' +p286345 +sa(dp286346 +g225232 +S'Paul Harris' +p286347 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in blue, green and black on German Etching paper' +p286348 +sg225230 +S'Outdoors' +p286349 +sg225236 +S'1970' +p286350 +sa(dp286351 +g225232 +S'Paul Harris' +p286352 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in pink, red and blue on Copperplate Deluxe paper' +p286353 +sg225230 +S'Glasses' +p286354 +sg225236 +S'1970' +p286355 +sa(dp286356 +g225232 +S'Paul Harris' +p286357 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black and silver on uncalendered Rives paper' +p286358 +sg225230 +S'The Dining Room Window' +p286359 +sg225236 +S'1970' +p286360 +sa(dp286361 +g225232 +S'Paul Harris' +p286362 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in blue-green and brown-pink on German Etching paper' +p286363 +sg225230 +S'Blind' +p286364 +sg225236 +S'1970' +p286365 +sa(dp286366 +g225232 +S'Richard Howard Hunt' +p286367 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p286368 +sg225230 +S'Details I' +p286369 +sg225236 +S'1965' +p286370 +sa(dp286371 +g225232 +S'Richard Howard Hunt' +p286372 +sg225240 +g27 +sg225234 +S'portfolio w/ 8 lithographs (stone and aluminum) in black and gray plus title page and colophon on white Arches paper' +p286373 +sg225230 +S'Details' +p286374 +sg225236 +S'1965' +p286375 +sa(dp286376 +g225232 +S'Richard Howard Hunt' +p286377 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in black on white Arches paper' +p286378 +sg225230 +S'Details II' +p286379 +sg225236 +S'1965' +p286380 +sa(dp286381 +g225232 +S'Richard Howard Hunt' +p286382 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in dark gray on white Archespaper' +p286383 +sg225230 +S'Details III' +p286384 +sg225236 +S'1965' +p286385 +sa(dp286386 +g225232 +S'Richard Howard Hunt' +p286387 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p286388 +sg225230 +S'Details IV' +p286389 +sg225236 +S'1965' +p286390 +sa(dp286391 +g225232 +S'Richard Howard Hunt' +p286392 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p286393 +sg225230 +S'Details V' +p286394 +sg225236 +S'1965' +p286395 +sa(dp286396 +g225232 +S'Richard Howard Hunt' +p286397 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p286398 +sg225230 +S'Details VI' +p286399 +sg225236 +S'1965' +p286400 +sa(dp286401 +g225232 +S'Richard Howard Hunt' +p286402 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p286403 +sg225230 +S'Details VII' +p286404 +sg225236 +S'1965' +p286405 +sa(dp286406 +g225232 +S'Richard Howard Hunt' +p286407 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p286408 +sg225230 +S'Details VIII' +p286409 +sg225236 +S'1965' +p286410 +sa(dp286411 +g225232 +S'Richard Howard Hunt' +p286412 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in two transparentgrays, blue-black, yellow and blue-green on white Arches paper' +p286413 +sg225230 +S'Untitled' +p286414 +sg225236 +S'1965' +p286415 +sa(dp286416 +g225232 +S'Richard Howard Hunt' +p286417 +sg225240 +g27 +sg225234 +S'lithograph (aluminum, stone and zinc) in two yellows and black on white Arches paper' +p286418 +sg225230 +S'Untitled' +p286419 +sg225236 +S'1965' +p286420 +sa(dp286421 +g225232 +S'Richard Howard Hunt' +p286422 +sg225240 +g27 +sg225234 +S'lithograph (aluminum, stone and zinc) in light brown, black, blue-gray and orange on white Arches paper' +p286423 +sg225230 +S'Untitled' +p286424 +sg225236 +S'1965' +p286425 +sa(dp286426 +g225230 +S'Untitled' +p286427 +sg225232 +S'Richard Howard Hunt' +p286428 +sg225234 +S'lithograph (aluminum) in black on natural Nacre paper' +p286429 +sg225236 +S'1965' +p286430 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000aca.jpg' +p286431 +sg225240 +g27 +sa(dp286432 +g225232 +S'Richard Howard Hunt' +p286433 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p286434 +sg225230 +S'Untitled' +p286435 +sg225236 +S'1965' +p286436 +sa(dp286437 +g225232 +S'Richard Howard Hunt' +p286438 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p286439 +sg225230 +S'Untitled' +p286440 +sg225236 +S'1965' +p286441 +sa(dp286442 +g225232 +S'Richard Howard Hunt' +p286443 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in black on Rives BFK paper' +p286444 +sg225230 +S'Untitled' +p286445 +sg225236 +S'1965' +p286446 +sa(dp286447 +g225232 +S'Richard Howard Hunt' +p286448 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in dark green, transparent gray and transparent blue-black on white Arches paper' +p286449 +sg225230 +S'Untitled' +p286450 +sg225236 +S'1965' +p286451 +sa(dp286452 +g225232 +S'Richard Howard Hunt' +p286453 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in two blacks and gray on white Arches paper' +p286454 +sg225230 +S'Untitled' +p286455 +sg225236 +S'1965' +p286456 +sa(dp286457 +g225232 +S'Richard Howard Hunt' +p286458 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p286459 +sg225230 +S'Untitled' +p286460 +sg225236 +S'1965' +p286461 +sa(dp286462 +g225232 +S'Richard Howard Hunt' +p286463 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p286464 +sg225230 +S'Untitled' +p286465 +sg225236 +S'1965' +p286466 +sa(dp286467 +g225232 +S'Richard Howard Hunt' +p286468 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p286469 +sg225230 +S'Untitled' +p286470 +sg225236 +S'1965' +p286471 +sa(dp286472 +g225232 +S'Richard Howard Hunt' +p286473 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p286474 +sg225230 +S'Untitled' +p286475 +sg225236 +S'1965' +p286476 +sa(dp286477 +g225232 +S'Richard Howard Hunt' +p286478 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p286479 +sg225230 +S'Untitled' +p286480 +sg225236 +S'1965' +p286481 +sa(dp286482 +g225230 +S'Untitled' +p286483 +sg225232 +S'Richard Howard Hunt' +p286484 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p286485 +sg225236 +S'1965' +p286486 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000acb.jpg' +p286487 +sg225240 +g27 +sa(dp286488 +g225232 +S'Richard Howard Hunt' +p286489 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on natural Nacre paper' +p286490 +sg225230 +S'Untitled' +p286491 +sg225236 +S'1965' +p286492 +sa(dp286493 +g225232 +S'John H. Hunter' +p286494 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in red and green on calendered Rives paper' +p286495 +sg225230 +S'Going Hollywood I (Title Page)' +p286496 +sg225236 +S'1969' +p286497 +sa(dp286498 +g225232 +S'John H. Hunter' +p286499 +sg225240 +g27 +sg225234 +S'portfolio w/ 10 color lithographs (stone and aluminum) including title page and colophon on calendered Rives paper' +p286500 +sg225230 +S'Going Hollywood' +p286501 +sg225236 +S'1969' +p286502 +sa(dp286503 +g225232 +S'John H. Hunter' +p286504 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in blended orange , yellow, light violet and pink on calendered Rives paper' +p286505 +sg225230 +S'Going Hollywood II' +p286506 +sg225236 +S'1969' +p286507 +sa(dp286508 +g225232 +S'John H. Hunter' +p286509 +sg225240 +g27 +sg225234 +S'lithograph (stone) in pink, gray, blue and violet on calendered Rives paper' +p286510 +sg225230 +S'Going Hollywood III' +p286511 +sg225236 +S'1969' +p286512 +sa(dp286513 +g225232 +S'John H. Hunter' +p286514 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in violet and yellow on calendered Rives paper' +p286515 +sg225230 +S'Going Hollywood IV' +p286516 +sg225236 +S'1969' +p286517 +sa(dp286518 +g225232 +S'John H. Hunter' +p286519 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in red and green on calendered Rives paper' +p286520 +sg225230 +S'Going Hollywood V' +p286521 +sg225236 +S'1969' +p286522 +sa(dp286523 +g225232 +S'John H. Hunter' +p286524 +sg225240 +g27 +sg225234 +S'lithograph (stone) in three blended greens on calendered Rives paper' +p286525 +sg225230 +S'Going Hollywood VI' +p286526 +sg225236 +S'1969' +p286527 +sa(dp286528 +g225232 +S'John H. Hunter' +p286529 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in violet and yellow on calendered Rives paper' +p286530 +sg225230 +S'Going Hollywood VII' +p286531 +sg225236 +S'1969' +p286532 +sa(dp286533 +g225232 +S'John H. Hunter' +p286534 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in blended orange,yellow, violet and pink on calendered Rives paper' +p286535 +sg225230 +S'Going Hollywood VIII' +p286536 +sg225236 +S'1969' +p286537 +sa(dp286538 +g225232 +S'John H. Hunter' +p286539 +sg225240 +g27 +sg225234 +S'lithograph (stone) in pink, gray, blue and violet on calendered Rives paper' +p286540 +sg225230 +S'Going Hollywood IX' +p286541 +sg225236 +S'1969' +p286542 +sa(dp286543 +g225232 +S'John H. Hunter' +p286544 +sg225240 +g27 +sg225234 +S'lithograph (stone) in three blended greens on calendered Rives paper' +p286545 +sg225230 +S'Going Hollywood X' +p286546 +sg225236 +S'1969' +p286547 +sa(dp286548 +g225232 +S'John H. Hunter' +p286549 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown on cream Copperplate Deluxe paper' +p286550 +sg225230 +S'Mr. Hunter Receives' +p286551 +sg225236 +S'1969' +p286552 +sa(dp286553 +g225232 +S'John H. Hunter' +p286554 +sg225240 +g27 +sg225234 +S'lithograph (stone) in blended violet, pink and blue on buff Arches paper' +p286555 +sg225230 +S'At the Honey Bunny' +p286556 +sg225236 +S'1969' +p286557 +sa(dp286558 +g225232 +S'John H. Hunter' +p286559 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in blended orange,two blues, two pinks, yellow, violet and green on calendered Rives paper' +p286560 +sg225230 +S'The Day the Kids Finally Took Over' +p286561 +sg225236 +S'1969' +p286562 +sa(dp286563 +g225232 +S'John H. Hunter' +p286564 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in red, yellow andviolet on calendered Rives paper' +p286565 +sg225230 +S'Melrose & Vine' +p286566 +sg225236 +S'1969' +p286567 +sa(dp286568 +g225232 +S'John H. Hunter' +p286569 +sg225240 +g27 +sg225234 +S'lithograph (stone) in blended yellow, brown and red with two applied silver stars on Rives paper' +p286570 +sg225230 +S'Your Hour of Stars/Entertainments' +p286571 +sg225236 +S'1969' +p286572 +sa(dp286573 +g225232 +S'John H. Hunter' +p286574 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in two oranges, violet-pink and light blue on uncalendered Rives paper' +p286575 +sg225230 +S'Fiji' +p286576 +sg225236 +S'1969' +p286577 +sa(dp286578 +g225232 +S'John H. Hunter' +p286579 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in two pinks, violet and light blue on uncalendered Rives paper' +p286580 +sg225230 +S'Eat Up, America' +p286581 +sg225236 +S'1969' +p286582 +sa(dp286583 +g225232 +S'John H. Hunter' +p286584 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in two oranges, pink and light blue on uncalendered Rives paper' +p286585 +sg225230 +S'An Affectionate Portrait of Sam Francis' +p286586 +sg225236 +S'1969' +p286587 +sa(dp286588 +g225232 +S'John H. Hunter' +p286589 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in two pinks, violet and light blue on uncalendered Rives paper' +p286590 +sg225230 +S'The Fuzz on the Strip' +p286591 +sg225236 +S'1969' +p286592 +sa(dp286593 +g225232 +S'John H. Hunter' +p286594 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in two oranges, two pinks, violet and light blue on uncalendered Rives paper' +p286595 +sg225230 +S'Greedy Toadies' +p286596 +sg225236 +S'1969' +p286597 +sa(dp286598 +g225232 +S'John H. Hunter' +p286599 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in silver, three greens, two blues, two violets, red, yellow and brown on uncalendered Rives paper' +p286600 +sg225230 +S"Surf's Up" +p286601 +sg225236 +S'1969' +p286602 +sa(dp286603 +g225232 +S'John H. Hunter' +p286604 +sg225240 +g27 +sg225234 +S'lithograph (zinc, aluminum and stone) in orange, green, two pinks, two reds, two violets, blue and yellow on Rives paper' +p286605 +sg225230 +S'Proud Livery' +p286606 +sg225236 +S'1969' +p286607 +sa(dp286608 +g225232 +S'John H. Hunter' +p286609 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown-green on calendered Rives paper' +p286610 +sg225230 +S'International High Life Society' +p286611 +sg225236 +S'1969' +p286612 +sa(dp286613 +g225232 +S'John H. Hunter' +p286614 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown-green on calendered Rives paper' +p286615 +sg225230 +S'Strangers in the Night' +p286616 +sg225236 +S'1969' +p286617 +sa(dp286618 +g225232 +S'John H. Hunter' +p286619 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown-green on calendered Rives paper' +p286620 +sg225230 +S'An Hour with the Promotions Committee of the Art Department at San Jose State College is like two Months in the Country' +p286621 +sg225236 +S'1969' +p286622 +sa(dp286623 +g225232 +S'John H. Hunter' +p286624 +sg225240 +g27 +sg225234 +S'lithograph (zinc, stone and aluminum) in orange, brown-green and light violet on uncalendered Rives paper' +p286625 +sg225230 +S'Tamarind' +p286626 +sg225236 +S'1969' +p286627 +sa(dp286628 +g225232 +S'Masuo Ikeda' +p286629 +sg225240 +g27 +sg225234 +S'lithograph (aluminum, zinc and stone) in two grays, yellow and blue on German Etching paper' +p286630 +sg225230 +S'Dream of Summer, #2' +p286631 +sg225236 +S'1966' +p286632 +sa(dp286633 +g225232 +S'Masuo Ikeda' +p286634 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in two blues, two pinks and red-brown on German Etching paper' +p286635 +sg225230 +S'Dream of Summer, #3' +p286636 +sg225236 +S'1966' +p286637 +sa(dp286638 +g225232 +S'Masuo Ikeda' +p286639 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on German Etching paper' +p286640 +sg225230 +S'First Drawing' +p286641 +sg225236 +S'1966' +p286642 +sa(dp286643 +g225232 +S'Masuo Ikeda' +p286644 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in green, blue and black on German Etching paper' +p286645 +sg225230 +S'My Bicycle in California' +p286646 +sg225236 +S'1966' +p286647 +sa(dp286648 +g225232 +S'Masuo Ikeda' +p286649 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in red and red-black on Magnani Italia paper' +p286650 +sg225230 +S'Something Again, A' +p286651 +sg225236 +S'1966' +p286652 +sa(dp286653 +g225232 +S'Masuo Ikeda' +p286654 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in pink and dark gray on Magnani Italia paper' +p286655 +sg225230 +S'Something Again, B' +p286656 +sg225236 +S'1966' +p286657 +sa(dp286658 +g225232 +S'Masuo Ikeda' +p286659 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in red, blue and dark gray on Magnani Italia paper' +p286660 +sg225230 +S'Night of a Single Life' +p286661 +sg225236 +S'1966' +p286662 +sa(dp286663 +g225232 +S'Masuo Ikeda' +p286664 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in red, yellow and dark gray on Magnani Italia paper' +p286665 +sg225230 +S'For Your Secret Night, A' +p286666 +sg225236 +S'1966' +p286667 +sa(dp286668 +g225232 +S'Masuo Ikeda' +p286669 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in yellow, blue and red on Magnani Italia paper' +p286670 +sg225230 +S'For Your Secret Night, B' +p286671 +sg225236 +S'1966' +p286672 +sa(dp286673 +g225232 +S'Masuo Ikeda' +p286674 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in yellow, blue and red on Magnani Italia paper' +p286675 +sg225230 +S'For Your Secret Night, C' +p286676 +sg225236 +S'1966' +p286677 +sa(dp286678 +g225232 +S'Masuo Ikeda' +p286679 +sg225240 +g27 +sg225234 +S'lithograph (zine and stone) in two grays and blue on Magnani Italia paper' +p286680 +sg225230 +S'American Girl' +p286681 +sg225236 +S'1966' +p286682 +sa(dp286683 +g225232 +S'Masuo Ikeda' +p286684 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in light yellow-gray, red and black on Magnani Italia paper' +p286685 +sg225230 +S'Open Blouse' +p286686 +sg225236 +S'1966' +p286687 +sa(dp286688 +g225232 +S'Masuo Ikeda' +p286689 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in dark pink, gray andbrown on Magnani Italia paper' +p286690 +sg225230 +S'Dream of Single Life, or Night of Maurice' +p286691 +sg225236 +S'1966' +p286692 +sa(dp286693 +g225232 +S'Masuo Ikeda' +p286694 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown, ochre, blue and pink on Magnani Italia paper' +p286695 +sg225230 +S'Woman-Come from New York' +p286696 +sg225236 +S'1966' +p286697 +sa(dp286698 +g225232 +S'Masuo Ikeda' +p286699 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in green, red and darkgray on Magnani Italia paper' +p286700 +sg225230 +S'Landscape from Window, A' +p286701 +sg225236 +S'1966' +p286702 +sa(dp286703 +g225232 +S'Masuo Ikeda' +p286704 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in ochre, violet and dark gray on German Etching paper' +p286705 +sg225230 +S'Landscape from Window, B' +p286706 +sg225236 +S'1966' +p286707 +sa(dp286708 +g225232 +S'Masuo Ikeda' +p286709 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in ochre, violet and dark gray on German Etching paper' +p286710 +sg225230 +S'Landscape from Window, C' +p286711 +sg225236 +S'1966' +p286712 +sa(dp286713 +g225232 +S'Masuo Ikeda' +p286714 +sg225240 +g27 +sg225234 +S'lithograph (stone) in dark gray on Magnani Italia paper' +p286715 +sg225230 +S'Window at 1116 1/5' +p286716 +sg225236 +S'1966' +p286717 +sa(dp286718 +g225232 +S'Masuo Ikeda' +p286719 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in blue, red-violet and brown-black on Magnani Italia paper' +p286720 +sg225230 +S'Secret Year' +p286721 +sg225236 +S'1966' +p286722 +sa(dp286723 +g225232 +S'Masuo Ikeda' +p286724 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in blue and brown-black on Magnani Italia paper' +p286725 +sg225230 +S'Secret Season' +p286726 +sg225236 +S'1966' +p286727 +sa(dp286728 +g225232 +S'Alfred Jensen' +p286729 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in blue, red-violet and black on white Arches paper' +p286730 +sg225230 +S'A Pythagorean Notebook I' +p286731 +sg225236 +S'1965' +p286732 +sa(dp286733 +g225232 +S'Alfred Jensen' +p286734 +sg225240 +g27 +sg225234 +S'portfolio w/ 19 color lithographs (stone, aluminumand zinc) plus title page and colophon on white A rches paper' +p286735 +sg225230 +S'A Pythagorean Notebook' +p286736 +sg225236 +S'1965' +p286737 +sa(dp286738 +g225230 +S'A Pythagorean Notebook III' +p286739 +sg225232 +S'Alfred Jensen' +p286740 +sg225234 +S'lithograph (aluminum and stone) in yellow, blue, red, red-violet and black on white Arches paper' +p286741 +sg225236 +S'1965' +p286742 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000acd.jpg' +p286743 +sg225240 +g27 +sa(dp286744 +g225232 +S'Alfred Jensen' +p286745 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in yellow, blue, red, red-violet and black on white Arches paper' +p286746 +sg225230 +S'A Pythagorean Notebook IV' +p286747 +sg225236 +S'1965' +p286748 +sa(dp286749 +g225232 +S'Alfred Jensen' +p286750 +sg225240 +g27 +sg225234 +S'lithograph (stone) in yellow, blue, red, violet and black on white Arches paper' +p286751 +sg225230 +S'A Pythagorean Notebook V' +p286752 +sg225236 +S'1965' +p286753 +sa(dp286754 +g225232 +S'Alfred Jensen' +p286755 +sg225240 +g27 +sg225234 +S'lithograph (stone) in yellow, blue, red, violet and black on white Arches paper' +p286756 +sg225230 +S'A Pythagorean Notebook VI' +p286757 +sg225236 +S'1965' +p286758 +sa(dp286759 +g225232 +S'Alfred Jensen' +p286760 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in yellow, blue, red, violet and black on white Arches paper' +p286761 +sg225230 +S'A Pythagorean Notebook VIII' +p286762 +sg225236 +S'1965' +p286763 +sa(dp286764 +g225232 +S'Alfred Jensen' +p286765 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in yellow, blue, red, violet and black on white Arches paper' +p286766 +sg225230 +S'A Pythagorean Notebook VIII' +p286767 +sg225236 +S'1965' +p286768 +sa(dp286769 +g225232 +S'Alfred Jensen' +p286770 +sg225240 +g27 +sg225234 +S'lithograph (aluminum, zinc and stone) in yellow, blue, red, violet and black on white Arches paper' +p286771 +sg225230 +S'A Pythagorean Notebook IX' +p286772 +sg225236 +S'1965' +p286773 +sa(dp286774 +g225232 +S'Alfred Jensen' +p286775 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in yellow, blue, red, violet and black on white Arches paper' +p286776 +sg225230 +S'A Pythagorean Notebook X' +p286777 +sg225236 +S'1965' +p286778 +sa(dp286779 +g225232 +S'Alfred Jensen' +p286780 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in yellow, blue, red, violet and black on white Arches paper' +p286781 +sg225230 +S'A Pythagorean Notebook XI' +p286782 +sg225236 +S'1965' +p286783 +sa(dp286784 +g225232 +S'Alfred Jensen' +p286785 +sg225240 +g27 +sg225234 +S'lithograph (stone and aluminum) in blue, yellow, red, red-violet, black and white on white Arches paper' +p286786 +sg225230 +S'A Pythagorean Notebook XII' +p286787 +sg225236 +S'1965' +p286788 +sa(dp286789 +g225232 +S'Alfred Jensen' +p286790 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in black on white Arches paper' +p286791 +sg225230 +S'A Pythagorean Notebook XIII' +p286792 +sg225236 +S'1965' +p286793 +sa(dp286794 +g225232 +S'Alfred Jensen' +p286795 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in yellow, blue, red, violet and black on white Arches paper' +p286796 +sg225230 +S'A Pythagorean Notebook XIV' +p286797 +sg225236 +S'1965' +p286798 +sa(dp286799 +g225232 +S'Alfred Jensen' +p286800 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in yellow, blue, red, violet and black on white Arches paper' +p286801 +sg225230 +S'A Pythagorean Notebook XV' +p286802 +sg225236 +S'1965' +p286803 +sa(dp286804 +g225232 +S'Alfred Jensen' +p286805 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in yellow, blue, red, violet and black on white Arches paper' +p286806 +sg225230 +S'A Pythagorean Notebook XVI' +p286807 +sg225236 +S'1965' +p286808 +sa(dp286809 +g225232 +S'Alfred Jensen' +p286810 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in yellow, blue, green, red, two violets and black on white Arches paper' +p286811 +sg225230 +S'A Pythagorean Notebook XVII' +p286812 +sg225236 +S'1965' +p286813 +sa(dp286814 +g225230 +S'A Pythagorean Notebook XVIII' +p286815 +sg225232 +S'Alfred Jensen' +p286816 +sg225234 +S'lithograph (aluminum and stone) in yellow, blue, red, violet and black on white Arches paper' +p286817 +sg225236 +S'1965' +p286818 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ace.jpg' +p286819 +sg225240 +g27 +sa(dp286820 +g225232 +S'Alfred Jensen' +p286821 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in yellow, blue, red, violet and black on white Arches paper' +p286822 +sg225230 +S'A Pythagorean Notebook XIX' +p286823 +sg225236 +S'1965' +p286824 +sa(dp286825 +g225232 +S'Alfred Jensen' +p286826 +sg225240 +g27 +sg225234 +S'lithograph (aluminum and stone) in yellow, blue, red, violet and black on white Arches paper' +p286827 +sg225230 +S'A Pythagorean Notebook XX' +p286828 +sg225236 +S'1965' +p286829 +sa(dp286830 +g225232 +S'Ynez Johnston' +p286831 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in red on white Nacre paper' +p286832 +sg225230 +S'Principalities (Cover)' +p286833 +sg225236 +S'1966' +p286834 +sa(dp286835 +g225232 +S'Ynez Johnston' +p286836 +sg225240 +g27 +sg225234 +S'portfolio w/ 13 color lithographs (stone and zinc)including cover page, title page and colophon on J. Green paper' +p286837 +sg225230 +S'Principalities' +p286838 +sg225236 +S'1966' +p286839 +sa(dp286840 +g225232 +S'Ynez Johnston' +p286841 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in orange, blue, violet and black on J. Green paper' +p286842 +sg225230 +S'Principalities (Title Page)' +p286843 +sg225236 +S'1966' +p286844 +sa(dp286845 +g225232 +S'Ynez Johnston' +p286846 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on J. Green paper' +p286847 +sg225230 +S'Principalities I' +p286848 +sg225236 +S'1966' +p286849 +sa(dp286850 +g225232 +S'Ynez Johnston' +p286851 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on J. Green paper' +p286852 +sg225230 +S'Principalities II' +p286853 +sg225236 +S'1966' +p286854 +sa(dp286855 +g225232 +S'Ynez Johnston' +p286856 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on J. Green paper' +p286857 +sg225230 +S'Principalities III' +p286858 +sg225236 +S'1966' +p286859 +sa(dp286860 +g225232 +S'Ynez Johnston' +p286861 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on J. Green paper' +p286862 +sg225230 +S'Principalities IV' +p286863 +sg225236 +S'1966' +p286864 +sa(dp286865 +g225232 +S'Ynez Johnston' +p286866 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on J. Green paper' +p286867 +sg225230 +S'Principalities V' +p286868 +sg225236 +S'1966' +p286869 +sa(dp286870 +g225232 +S'Ynez Johnston' +p286871 +sg225240 +g27 +sg225234 +S'lithograph (stone) in ochre and black on J. Green paper' +p286872 +sg225230 +S'Principalities VI' +p286873 +sg225236 +S'1966' +p286874 +sa(dp286875 +g225232 +S'Ynez Johnston' +p286876 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on J. Green paper' +p286877 +sg225230 +S'Principalities VII' +p286878 +sg225236 +S'1966' +p286879 +sa(dp286880 +g225232 +S'Ynez Johnston' +p286881 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on J. Green paper' +p286882 +sg225230 +S'Principalities VIII' +p286883 +sg225236 +S'1966' +p286884 +sa(dp286885 +g225232 +S'Ynez Johnston' +p286886 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red and black on J. Green paper' +p286887 +sg225230 +S'Principalities IX' +p286888 +sg225236 +S'1966' +p286889 +sa(dp286890 +g225232 +S'Ynez Johnston' +p286891 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on J. Green paper' +p286892 +sg225230 +S'Principalities X' +p286893 +sg225236 +S'1966' +p286894 +sa(dp286895 +g225232 +S'Ynez Johnston' +p286896 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown on J. Green paper' +p286897 +sg225230 +S'Principalities (Colophon)' +p286898 +sg225236 +S'1966' +p286899 +sa(dp286900 +g225232 +S'Ynez Johnston' +p286901 +sg225240 +g27 +sg225234 +S'lithograph (stone) in brown on New Millbourn paper' +p286902 +sg225230 +S'Untitled' +p286903 +sg225236 +S'1966' +p286904 +sa(dp286905 +g225232 +S'Ynez Johnston' +p286906 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in yellow, green, blue-violet and black on J. Green paper' +p286907 +sg225230 +S'Untitled' +p286908 +sg225236 +S'1966' +p286909 +sa(dp286910 +g225232 +S'Ynez Johnston' +p286911 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in yellow, red, blue and black on J. Green paper' +p286912 +sg225230 +S'Untitled' +p286913 +sg225236 +S'1966' +p286914 +sa(dp286915 +g225232 +S'Ynez Johnston' +p286916 +sg225240 +g27 +sg225234 +S'lithograph (stone) in red-brown on natural Nacre paper' +p286917 +sg225230 +S'Untitled' +p286918 +sg225236 +S'1966' +p286919 +sa(dp286920 +g225232 +S'Ynez Johnston' +p286921 +sg225240 +g27 +sg225234 +S'lithograph (stone) in yellow-green, yellow-orange,light violet and black on Copperplate Deluxe pape r' +p286922 +sg225230 +S'Untitled' +p286923 +sg225236 +S'1966' +p286924 +sa(dp286925 +g225232 +S'Ynez Johnston' +p286926 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Nacre paper' +p286927 +sg225230 +S'Untitled' +p286928 +sg225236 +S'1966' +p286929 +sa(dp286930 +g225232 +S'Ynez Johnston' +p286931 +sg225240 +g27 +sg225234 +S'lithograph (stone) in yellow, red-brown and black on white Arches paper' +p286932 +sg225230 +S'Untitled' +p286933 +sg225236 +S'1966' +p286934 +sa(dp286935 +g225232 +S'Ynez Johnston' +p286936 +sg225240 +g27 +sg225234 +S'lithograph (stone) in green, two blues and dark violet on Magnani Italia paper' +p286937 +sg225230 +S'Untitled' +p286938 +sg225236 +S'1966' +p286939 +sa(dp286940 +g225232 +S'Ynez Johnston' +p286941 +sg225240 +g27 +sg225234 +S'lithograph (stone) in yellow, yellow-orange, yellow-green, pink and violet on white Nacre paper' +p286942 +sg225230 +S'Untitled' +p286943 +sg225236 +S'1966' +p286944 +sa(dp286945 +g225232 +S'Ynez Johnston' +p286946 +sg225240 +g27 +sg225234 +S'lithograph (stone) in yellow-orange, violet-pink, blue-violet and black on Magnani Italia paper' +p286947 +sg225230 +S'Untitled' +p286948 +sg225236 +S'1966' +p286949 +sa(dp286950 +g225232 +S'Ynez Johnston' +p286951 +sg225240 +g27 +sg225234 +S'lithograph (stone) in yellow-orange, violet-pink, blue-violet and black on Magnani Italia paper' +p286952 +sg225230 +S'Untitled' +p286953 +sg225236 +S'1966' +p286954 +sa(dp286955 +g225232 +S'Ynez Johnston' +p286956 +sg225240 +g27 +sg225234 +S'lithograph (stone) in yellow-orange, violet-pink, blue-violet and black on Magnani Italia paper' +p286957 +sg225230 +S'Untitled' +p286958 +sg225236 +S'1966' +p286959 +sa(dp286960 +g225232 +S'Ynez Johnston' +p286961 +sg225240 +g27 +sg225234 +S'lithograph (stone) in yellow-orange, violet-pink, blue-violet and black on Magnani Italia paper' +p286962 +sg225230 +S'Untitled' +p286963 +sg225236 +S'1966' +p286964 +sa(dp286965 +g225232 +S'Ynez Johnston' +p286966 +sg225240 +g27 +sg225234 +S'lithograph (stone) in yellow-orange, violet-pink, blue-violet and black on Magnani Italia paper' +p286967 +sg225230 +S'Untitled' +p286968 +sg225236 +S'1966' +p286969 +sa(dp286970 +g225232 +S'Ynez Johnston' +p286971 +sg225240 +g27 +sg225234 +S'lithograph (stone) in yellow-orange, violet-pink, blue-violet and black on Magnani Italia paper' +p286972 +sg225230 +S'Untitled' +p286973 +sg225236 +S'1966' +p286974 +sa(dp286975 +g225232 +S'Ynez Johnston' +p286976 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p286977 +sg225230 +S'Londinium' +p286978 +sg225236 +S'1965' +p286979 +sa(dp286980 +g225232 +S'Ynez Johnston' +p286981 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on J. Green paper' +p286982 +sg225230 +S'Untitled' +p286983 +sg225236 +S'1965' +p286984 +sa(dp286985 +g225232 +S'Ynez Johnston' +p286986 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on J. Green paper' +p286987 +sg225230 +S'Untitled' +p286988 +sg225236 +S'1965' +p286989 +sa(dp286990 +g225232 +S'Ynez Johnston' +p286991 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on J. Green paper' +p286992 +sg225230 +S'Untitled' +p286993 +sg225236 +S'1966' +p286994 +sa(dp286995 +g225232 +S'Ynez Johnston' +p286996 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on J. Green paper' +p286997 +sg225230 +S'Untitled' +p286998 +sg225236 +S'1966' +p286999 +sa(dp287000 +g225232 +S'Ynez Johnston' +p287001 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in pink, yellow-green, and blue-black on German Etching paper' +p287002 +sg225230 +S'Guarded Wood' +p287003 +sg225236 +S'1966' +p287004 +sa(dp287005 +g225232 +S'Ynez Johnston' +p287006 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in green, orange and violet on calendered Rives paper' +p287007 +sg225230 +S'Untitled' +p287008 +sg225236 +S'1970' +p287009 +sa(dp287010 +g225232 +S'Allen Jones' +p287011 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in red, yellow, blue and black on German Etching paper' +p287012 +sg225230 +S'Untitled (Fleet of Buses I)' +p287013 +sg225236 +S'1966' +p287014 +sa(dp287015 +g225232 +S'Allen Jones' +p287016 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in three grays, light blue and black on German Etching paper' +p287017 +sg225230 +S'Untitled' +p287018 +sg225236 +S'1966' +p287019 +sa(dp287020 +g225232 +S'Allen Jones' +p287021 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in red, green, yellow and blue on German Etching paper' +p287022 +sg225230 +S'Untitled' +p287023 +sg225236 +S'1966' +p287024 +sa(dp287025 +g225232 +S'Allen Jones' +p287026 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in red, green and yellow on German Etching paper' +p287027 +sg225230 +S'Untitled' +p287028 +sg225236 +S'1966' +p287029 +sa(dp287030 +g225232 +S'Allen Jones' +p287031 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in red, light pink, silver and black on German Etching paper' +p287032 +sg225230 +S'Untitled (Fleet of Buses V)' +p287033 +sg225236 +S'1966' +p287034 +sa(dp287035 +g225232 +S'Allen Jones' +p287036 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in dark yellow, gray and black on Copperplate Deluxe paper' +p287037 +sg225230 +S'Untitled' +p287038 +sg225236 +S'1966' +p287039 +sa(dp287040 +g225232 +S'Allen Jones' +p287041 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in red, pink, blue andgreen on Copperplate Deluxe paper' +p287042 +sg225230 +S'Untitled (New Perspective on Floors II)' +p287043 +sg225236 +S'1966' +p287044 +sa(dp287045 +g225232 +S'Allen Jones' +p287046 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in yellow, two greens and black on Copperplate Deluxe paper' +p287047 +sg225230 +S'Untitled' +p287048 +sg225236 +S'1966' +p287049 +sa(dp287050 +g225232 +S'Allen Jones' +p287051 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in two greens, pink, red-brown and black on Copperplate Deluxe paper' +p287052 +sg225230 +S'Untitled (New Perspective on Floors IV)' +p287053 +sg225236 +S'1966' +p287054 +sa(dp287055 +g225232 +S'Allen Jones' +p287056 +sg225240 +g27 +sg225234 +S'lithograph (zinc and stone) in yellow, light blue,red and black on Copperplate Deluxe paper' +p287057 +sg225230 +S'Untitled (New Perspective on Floors V)' +p287058 +sg225236 +S'1966' +p287059 +sa(dp287060 +g225232 +S'Allen Jones' +p287061 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in red, gray, blue and black on Copperplate Deluxe paper' +p287062 +sg225230 +S'Untitled' +p287063 +sg225236 +S'1966' +p287064 +sa(dp287065 +g225232 +S'Allen Jones' +p287066 +sg225240 +g27 +sg225234 +S'lithograph in black' +p287067 +sg225230 +S'Untitled' +p287068 +sg225236 +S'1965' +p287069 +sa(dp287070 +g225232 +S'Allen Jones' +p287071 +sg225240 +g27 +sg225234 +S'lithograph in black' +p287072 +sg225230 +S'Daisy, Daisy' +p287073 +sg225236 +S'1965' +p287074 +sa(dp287075 +g225232 +S'Allen Jones' +p287076 +sg225240 +g27 +sg225234 +S'lithograph in black' +p287077 +sg225230 +S'Subtle Siren' +p287078 +sg225236 +S'1966' +p287079 +sa(dp287080 +g225232 +S'John Paul Jones' +p287081 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p287082 +sg225230 +S'Untitled' +p287083 +sg225236 +S'1962' +p287084 +sa(dp287085 +g225232 +S'John Paul Jones' +p287086 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p287087 +sg225230 +S'Untitled' +p287088 +sg225236 +S'1962' +p287089 +sa(dp287090 +g225232 +S'John Paul Jones' +p287091 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p287092 +sg225230 +S'Untitled' +p287093 +sg225236 +S'1962' +p287094 +sa(dp287095 +g225232 +S'John Paul Jones' +p287096 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p287097 +sg225230 +S'Untitled' +p287098 +sg225236 +S'1962' +p287099 +sa(dp287100 +g225232 +S'John Paul Jones' +p287101 +sg225240 +g27 +sg225234 +S'lithograph (stone) in gray on natural Nacre paper' +p287102 +sg225230 +S'Untitled' +p287103 +sg225236 +S'1962' +p287104 +sa(dp287105 +g225232 +S'John Paul Jones' +p287106 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p287107 +sg225230 +S'Untitled' +p287108 +sg225236 +S'1962' +p287109 +sa(dp287110 +g225232 +S'John Paul Jones' +p287111 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p287112 +sg225230 +S'Untitled' +p287113 +sg225236 +S'1962' +p287114 +sa(dp287115 +g225232 +S'John Paul Jones' +p287116 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p287117 +sg225230 +S'Untitled' +p287118 +sg225236 +S'1962' +p287119 +sa(dp287120 +g225232 +S'John Paul Jones' +p287121 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on natural Nacre paper' +p287122 +sg225230 +S'Untitled' +p287123 +sg225236 +S'1962' +p287124 +sa(dp287125 +g225232 +S'John Paul Jones' +p287126 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on natural Nacre paper' +p287127 +sg225230 +S'Untitled' +p287128 +sg225236 +S'1962' +p287129 +sa(dp287130 +g225232 +S'John Paul Jones' +p287131 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on natural Nacre paper' +p287132 +sg225230 +S'Untitled' +p287133 +sg225236 +S'1962' +p287134 +sa(dp287135 +g225232 +S'John Paul Jones' +p287136 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on natural Nacre paper' +p287137 +sg225230 +S'Untitled' +p287138 +sg225236 +S'1962' +p287139 +sa(dp287140 +g225232 +S'John Paul Jones' +p287141 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p287142 +sg225230 +S'Untitled' +p287143 +sg225236 +S'1962' +p287144 +sa(dp287145 +g225232 +S'John Paul Jones' +p287146 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p287147 +sg225230 +S'Untitled' +p287148 +sg225236 +S'1962' +p287149 +sa(dp287150 +g225232 +S'John Paul Jones' +p287151 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p287152 +sg225230 +S'Untitled' +p287153 +sg225236 +S'1962' +p287154 +sa(dp287155 +g225232 +S'John Paul Jones' +p287156 +sg225240 +g27 +sg225234 +S'lithograph (stone and zinc) in black, light blue and brown on white Arches paper' +p287157 +sg225230 +S'Untitled' +p287158 +sg225236 +S'1962' +p287159 +sa(dp287160 +g225232 +S'John Paul Jones' +p287161 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p287162 +sg225230 +S'Untitled' +p287163 +sg225236 +S'1962' +p287164 +sa(dp287165 +g225232 +S'John Paul Jones' +p287166 +sg225240 +g27 +sg225234 +S'lithograph (zinc) in black on white Arches paper' +p287167 +sg225230 +S'Untitled' +p287168 +sg225236 +S'1962' +p287169 +sa(dp287170 +g225232 +S'John Paul Jones' +p287171 +sg225240 +g27 +sg225234 +S'lithograph (stone) in black on white Arches paper' +p287172 +sg225230 +S'Untitled' +p287173 +sg225236 +S'1962' +p287174 +sa(dp287175 +g225232 +S'John Paul Jones' +p287176 +sg225240 +g27 +sg225234 +S'lithograph' +p287177 +sg225230 +S'Untitled' +p287178 +sg225236 +S'unknown date\n' +p287179 +sa(dp287180 +g225230 +S'Study of Birds and Monkey' +p287181 +sg225232 +S'Artist Information (' +p287182 +sg225234 +S'Flemish, 1626 - 1679' +p287183 +sg225236 +S'(related artist)' +p287184 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e42.jpg' +p287185 +sg225240 +g27 +sa(dp287186 +g225230 +S'Study of Birds and Monkeys' +p287187 +sg225232 +S'Artist Information (' +p287188 +sg225234 +S'Flemish, 1626 - 1679' +p287189 +sg225236 +S'(related artist)' +p287190 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e43.jpg' +p287191 +sg225240 +g27 +sa(dp287192 +g225230 +S'Study of Butterfly and Insects' +p287193 +sg225232 +S'Jan van Kessel' +p287194 +sg225234 +S'oil on copper' +p287195 +sg225236 +S'c. 1655' +p287196 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e44.jpg' +p287197 +sg225240 +g27 +sa(dp287198 +g225230 +S'Concert of Birds' +p287199 +sg225232 +S'Artist Information (' +p287200 +sg225234 +S'Flemish, 1626 - 1679' +p287201 +sg225236 +S'(related artist)' +p287202 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e33.jpg' +p287203 +sg225240 +g27 +sa(dp287204 +g225230 +S'The Rest on the Flight into Egypt' +p287205 +sg225232 +S'Alessandro Algardi' +p287206 +sg225234 +S'bronze' +p287207 +sg225236 +S'c. 1635' +p287208 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d9c.jpg' +p287209 +sg225240 +g27 +sa(dp287210 +g225232 +S'Giacomo Manz\xc3\xb9' +p287211 +sg225240 +g27 +sg225234 +S'bronze' +p287212 +sg225230 +S'Turtle Seizing a Snake' +p287213 +sg225236 +S'1962' +p287214 +sa(dp287215 +g225230 +S'Saint Nicholas' +p287216 +sg225232 +S'Sebald Beham' +p287217 +sg225234 +S'pen and black ink' +p287218 +sg225236 +S'unknown date\n' +p287219 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a000798a.jpg' +p287220 +sg225240 +g27 +sa(dp287221 +g225230 +S'Rocks Along a Lakeshore [recto]' +p287222 +sg225232 +S'John William Casilear' +p287223 +sg225234 +S'graphite' +p287224 +sg225236 +S'unknown date\n' +p287225 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008b7.jpg' +p287226 +sg225240 +g27 +sa(dp287227 +g225232 +S'John William Casilear' +p287228 +sg225240 +g27 +sg225234 +S'graphite' +p287229 +sg225230 +S'Bridge over Rocky Stream [top verso]' +p287230 +sg225236 +S'unknown date\n' +p287231 +sa(dp287232 +g225230 +S'The Harbor of Seville' +p287233 +sg225232 +S'Samuel Colman' +p287234 +sg225234 +S'watercolor and gouache' +p287235 +sg225236 +S'1867' +p287236 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008c2.jpg' +p287237 +sg225240 +g27 +sa(dp287238 +g225230 +S'Witchcraft Scene with a Vampire [recto]' +p287239 +sg225232 +S'Jacques de Gheyn II' +p287240 +sg225234 +S'pen and brown iron gall ink over black chalk' +p287241 +sg225236 +S'unknown date\n' +p287242 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006edb.jpg' +p287243 +sg225240 +g27 +sa(dp287244 +g225232 +S'Jacques de Gheyn II' +p287245 +sg225240 +g27 +sg225234 +S'pen and brown iron gall ink' +p287246 +sg225230 +S'Rough Sketch of Head and Shoulders [verso]' +p287247 +sg225236 +S'unknown date\n' +p287248 +sa(dp287249 +g225230 +S'Saint Ambrose Suppressing Heresy' +p287250 +sg225232 +S'Gottfried Bernhard G\xc3\xb6tz' +p287251 +sg225234 +S'pen and brown ink with gray wash heightened with white, squared in graphite; lower left corner redrawn on an insert' +p287252 +sg225236 +S'unknown date\n' +p287253 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ce9.jpg' +p287254 +sg225240 +g27 +sa(dp287255 +g225230 +S'A Man Leaning on a Structure' +p287256 +sg225232 +S'Giovanni Battista Piranesi' +p287257 +sg225234 +S'pen and brown ink on fragment of a printed sheet' +p287258 +sg225236 +S'1760s' +p287259 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d52.jpg' +p287260 +sg225240 +g27 +sa(dp287261 +g225230 +S'Cathedral in a Landscape' +p287262 +sg225232 +S'Vincenzo dal Re' +p287263 +sg225234 +S'pen and brown ink with gray wash over graphite on laid paper' +p287264 +sg225236 +S'unknown date\n' +p287265 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a00071b4.jpg' +p287266 +sg225240 +g27 +sa(dp287267 +g225230 +S'Clouds at Dawn' +p287268 +sg225232 +S'James Hamilton Shegogue' +p287269 +sg225234 +S'watercolor over graphite' +p287270 +sg225236 +S'unknown date\n' +p287271 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0e0.jpg' +p287272 +sg225240 +g27 +sa(dp287273 +g225230 +S'Clouds at Sunset' +p287274 +sg225232 +S'James Hamilton Shegogue' +p287275 +sg225234 +S'watercolor over graphite' +p287276 +sg225236 +S'unknown date\n' +p287277 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0e1.jpg' +p287278 +sg225240 +g27 +sa(dp287279 +g225230 +S'Portrait of a Gentleman' +p287280 +sg225232 +S'James Hamilton Shegogue' +p287281 +sg225234 +S'watercolor over graphite on paperboard' +p287282 +sg225236 +S'1830' +p287283 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0e2.jpg' +p287284 +sg225240 +g27 +sa(dp287285 +g225230 +S'The Virgin Islands in Bezons (Les Iles vierges a Bezons)' +p287286 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p287287 +sg225234 +S'etching with drypoint and roulette on chine applique' +p287288 +sg225236 +S'1850' +p287289 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091d4.jpg' +p287290 +sg225240 +g27 +sa(dp287291 +g225230 +S'Springtime (Le Printemps)' +p287292 +sg225232 +S'Charles-Fran\xc3\xa7ois Daubigny' +p287293 +sg225234 +S'etching on chine applique' +p287294 +sg225236 +S'1857' +p287295 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00091/a00091d3.jpg' +p287296 +sg225240 +g27 +sa(dp287297 +g225230 +S'Plantes de Serre' +p287298 +sg225232 +S'Jules-Ferdinand Jacquemart' +p287299 +sg225234 +S'etching in brown-black on laid paper' +p287300 +sg225236 +S'1863' +p287301 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009afe.jpg' +p287302 +sg225240 +g27 +sa(dp287303 +g225230 +S'Polichinelle' +p287304 +sg225232 +S'Edouard Manet' +p287305 +sg225234 +S'lithograph in brown-black on white wove paper (proof of line stone)' +p287306 +sg225236 +S'1874' +p287307 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fc3.jpg' +p287308 +sg225240 +g27 +sa(dp287309 +g225230 +S'The Doll House' +p287310 +sg225232 +S'John Everett Millais' +p287311 +sg225234 +S'etching on chine applique' +p287312 +sg225236 +S'unknown date\n' +p287313 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a00079f8.jpg' +p287314 +sg225240 +g27 +sa(dp287315 +g225230 +S'The Resurrection of Christ' +p287316 +sg225232 +S'Parmigianino' +p287317 +sg225234 +S'etching and engraving on laid paper' +p287318 +sg225236 +S'c. 1528/1529' +p287319 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c76c.jpg' +p287320 +sg225240 +g27 +sa(dp287321 +g225230 +S'Hagar in the Desert' +p287322 +sg225232 +S'Moyses van Uyttenbroeck' +p287323 +sg225234 +S'etching on laid paper' +p287324 +sg225236 +S'unknown date\n' +p287325 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d454.jpg' +p287326 +sg225240 +g27 +sa(dp287327 +g225230 +S'Portrait of a Lady beside a Rose Bush' +p287328 +sg225232 +S'Wallerant Vaillant' +p287329 +sg225234 +S'mezzotint' +p287330 +sg225236 +S'c. 1655' +p287331 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5c8.jpg' +p287332 +sg225240 +g27 +sa(dp287333 +g225232 +S'Artist Information (' +p287334 +sg225240 +g27 +sg225234 +S'French, active 18th century' +p287335 +sg225230 +S'Catalogue ... du Cabinet du feu M. Randon de Boisset, Receveur General de Finances' +p287336 +sg225236 +S'(author)' +p287337 +sa(dp287338 +g225230 +S'Dawn Landscape with Classical Ruins' +p287339 +sg225232 +S'Jean-Baptiste Lallemand' +p287340 +sg225234 +S'gouache on laid paper' +p287341 +sg225236 +S'1760s?' +p287342 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f56.jpg' +p287343 +sg225240 +g27 +sa(dp287344 +g225230 +S'Portrait of a Bearded Man in a Doublet and Skull Cap' +p287345 +sg225232 +S'Lagneau' +p287346 +sg225234 +S', unknown date' +p287347 +sg225236 +S'\n' +p287348 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a0006169.jpg' +p287349 +sg225240 +g27 +sa(dp287350 +g225230 +S'The Disputation of Saint Catherine of Alexandria' +p287351 +sg225232 +S'Georg Wilhelm Neunhertz' +p287352 +sg225234 +S'pen and black ink over black chalk on laid paper' +p287353 +sg225236 +S'1727' +p287354 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a00079af.jpg' +p287355 +sg225240 +g27 +sa(dp287356 +g225232 +S'Artist Information (' +p287357 +sg225240 +g27 +sg225234 +S'(author)' +p287358 +sg225230 +S'Italien' +p287359 +sg225236 +S'\n' +p287360 +sa(dp287361 +g225230 +S'A Bull on a Ledge' +p287362 +sg225232 +S'Giovanni Domenico Tiepolo' +p287363 +sg225234 +S'pen and brown ink with brown-gray wash over graphite on laid paper' +p287364 +sg225236 +S'1770s' +p287365 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f95.jpg' +p287366 +sg225240 +g27 +sa(dp287367 +g225230 +S'Untitled' +p287368 +sg225232 +S'Josef Albers' +p287369 +sg225234 +S'silkscreen in black and orange' +p287370 +sg225236 +S'1973' +p287371 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00009/a0000925.jpg' +p287372 +sg225240 +g27 +sa(dp287373 +g225232 +S'Mark Tobey' +p287374 +sg225240 +g27 +sg225234 +S'drypoint in brown and blue on wove paper' +p287375 +sg225230 +S'Pensees Germinales' +p287376 +sg225236 +S'1973' +p287377 +sa(dp287378 +g225230 +S'Christ in Half-Length' +p287379 +sg225232 +S'Wilhelm Traut' +p287380 +sg225234 +S'woodcut on laid paper' +p287381 +sg225236 +S'unknown date\n' +p287382 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2d0.jpg' +p287383 +sg225240 +g27 +sa(dp287384 +g225230 +S'The Death of the Miser' +p287385 +sg225232 +S'Artist Information (' +p287386 +sg225234 +S'(artist after)' +p287387 +sg225236 +S'\n' +p287388 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fe7.jpg' +p287389 +sg225240 +g27 +sa(dp287390 +g225232 +S'Leone Battista Alberti' +p287391 +sg225240 +g27 +sg225234 +S', published 1550' +p287392 +sg225230 +S"L'Architettura di Leonbatista Alberti Tradotta in lingua Fiorentina da Cosimo Bartoli Gentil'huomo & Accedemico Fiorentino. Con la aggiunta de Disegni" +p287393 +sg225236 +S'\n' +p287394 +sa(dp287395 +g225232 +S'Leone Battista Alberti' +p287396 +sg225240 +g27 +sg225234 +S', published 1553' +p287397 +sg225230 +S"L'Architecture et Art de Bien Bastir du Seigneur Leon Baptiste Albert, Gentilhomme Florentin, divis\xc3\xa9e en dix livres, Traduicts de Latin en Fran\xc3\xa7ois, par deffunct Ian Martin, Parisien, negueres Secretaire du Reuerendissime Cardinal de Lenoncourt" +p287398 +sg225236 +S'\n' +p287399 +sa(dp287400 +g225232 +S'Leone Battista Alberti' +p287401 +sg225240 +g27 +sg225234 +S', published 1565' +p287402 +sg225230 +S"L'Architettura di Leonbatista Alberti Tradotta in Lingua Fiorentina da Cosimo Bartoli, Gentilhuomo, & Accedemico Fiorentino. Con la aggiunta de' Disegni" +p287403 +sg225236 +S'\n' +p287404 +sa(dp287405 +g225232 +S'Artist Information (' +p287406 +sg225240 +g27 +sg225234 +S'(artist)' +p287407 +sg225230 +S'The Architecture of Leon Battista Alberti in Ten Books of Painting in Three Books and of Statuary in One Book. Translated into Italian by Cosimo Bartoli. And Now First Into English, and Divided Into Three Volumes by James Leoni, Venetian, Architect; To Which Are Added Several Designs of His Own, For Buildings Both Public and Private' +p287408 +sg225236 +S'\n' +p287409 +sa(dp287410 +g225232 +S'Daniel Barbaro' +p287411 +sg225240 +g27 +sg225234 +S', published 1568' +p287412 +sg225230 +S"La Pratica della Perspettiva di Monsignor Daniel Barbaro Eletto Patriarca d'Aquileia, Opera molto utile a Pittori, a Scultori, & ad Architetti. Con due tavole, una de' capitoli principali, l'altra delle cose piu notabili contenute nella presente opera" +p287413 +sg225236 +S'\n' +p287414 +sa(dp287415 +g225232 +S'Artist Information (' +p287416 +sg225240 +g27 +sg225234 +S'(artist)' +p287417 +sg225230 +S"Del Palazzo De' Cesari Opera Postuma Di Monsignor Francesco Bianchini Veronese" +p287418 +sg225236 +S'\n' +p287419 +sa(dp287420 +g225232 +S'Artist Information (' +p287421 +sg225240 +g27 +sg225234 +S'(artist)' +p287422 +sg225230 +S"Description Des Festes Donn\xc3\xa9es Par La Ville De Paris, A l'occasion du Mariage de Madame Louise-Elisabeth de France, & de Dom Philippe, Infant & Grand Amiral d'Espagne, les vignt-neuvi\xc3\xa9me & trenti\xc3\xa9me Ao\xc3\xbbt mil sept cent trente-neuf" +p287423 +sg225236 +S'\n' +p287424 +sa(dp287425 +g225232 +S'Artist Information (' +p287426 +sg225240 +g27 +sg225234 +S'(artist)' +p287427 +sg225230 +S"F\xc3\xaates Publiques Donne\xc3\xa9s Par La Ville De Paris a l'occasion du Mariage De Monseigneur Le Dauphin Les 23. et 26. Fevreir M.DCC.XLV" +p287428 +sg225236 +S'\n' +p287429 +sa(dp287430 +g225232 +S'Artist Information (' +p287431 +sg225240 +g27 +sg225234 +S'(artist)' +p287432 +sg225230 +S"F\xc3\xaates Publiques Donne\xc3\xa9s Par La Ville De Paris a l'occasion du Mariage De Monseigneur Le Dauphin Le 13. Fevrier M.DCC.XLVII" +p287433 +sg225236 +S'\n' +p287434 +sa(dp287435 +g225232 +S'Hans Blum' +p287436 +sg225240 +g27 +sg225234 +S', published 1579' +p287437 +sg225230 +S'Von den f\xc3\xbcnff Se\xc3\xbclen, Grundtlicher bericht, vnnd deren eigentliche contrasenung, nach Symmetrischer aussteilung der Architectur. Durch den erfarnen, vnd der f\xc3\xbcnff se\xc3\xbclen wolberichten, M. Hans Bl\xc3\xbcmen von Loz am Mayn, fleyssig Uss den antiquiteten gezogen, vnd tre\xc3\xbcwlich, als voz nie besch\xc3\xa4hen, inn Truck abgefertiget' +p287438 +sg225236 +S'\n' +p287439 +sa(dp287440 +g225232 +S'Hans Blum' +p287441 +sg225240 +g27 +sg225234 +S', n.d. [in or before 1585]' +p287442 +sg225230 +S'Ein kunstrych B\xc3\xbcch von allerley antiquiteten, so zum verstand der f\xc3\xbcnff seulen der Architectur geh\xc3\xb6rend' +p287443 +sg225236 +S'\n' +p287444 +sa(dp287445 +g225232 +S'Artist Information (' +p287446 +sg225240 +g27 +sg225234 +S'(artist)' +p287447 +sg225230 +S'Architectura Curiosa Nova, Exponens 1. Fundamenta hydragogica, indolemq; aquae, a\xc3\xabris interventu in altum levandae. 2. Varios aquarum ac salientum fontium lusus per varia spectatu jucunda epistomiorum seu Siphonum genera. 3. Magnum amoenissimorum fontium, machinarumq; aquaeductoriarum sumtu magno exstructarum, ac per Italiam, Galliam, Britanniam, Germaniam &c.; visendarum, numerum. 4. Specus artificiales sumtuosissmas, cum plerisq; Principum Europaeorum Palatis, hortis, aulis; nec non praecipuis monasteriis atq; arcibus. 5. Cum auctario figurarum elegantissimarum, ad hortorum topiaria vario ductu dividenda, nec non conclavium laquearibus ac pavimentis segmentandis, itemq; Labyrinthis constru' +p287448 +sg225236 +S'\n' +p287449 +sa(dp287450 +g225232 +S'Artist Information (' +p287451 +sg225240 +g27 +sg225234 +S'(artist)' +p287452 +sg225230 +S'Architectura Curiosa Nova, Das ist: Neue, Erg\xc3\xb6tzliche, Sinnund Kunstreiche, auch n\xc3\xbctzliche Bau- und Wasser Kunst, Vorstellend 1. Das Fundament und die Eigenschaft des Wassers, wie dasselbe durch den Luft hochsteigend zu machen. 2. Mancherley lustige Wasserspiel, wie auch sch\xc3\xb6ne, Aufs\xc3\xa4tze. 3. Allerley zierliche Bronnen, Fonteynen und Wasserk\xc3\xbcnste, so hin und wieder in Italien, Franckreich, Engel- und Teutschland, u. mit grosseem unkosten, erbauet, und zu sehen sind. 4. Viererley kostbare Grotten, Lusth\xc3\xa4user, G\xc3\xa4rten, f\xc3\xbcrstl. Pal\xc3\xa4st und Residenzen, vornehme Cl\xc3\xb6ster und Schl\xc3\xb6sser in Europa befindlichen. 5. Neben beygef\xc3\xbcgten sch\xc3\xb6nen Abtheilungen der Gartenl\xc3\xa4nder, von Zugwercken, auc' +p287453 +sg225236 +S'\n' +p287454 +sa(dp287455 +g225232 +S'Artist Information (' +p287456 +sg225240 +g27 +sg225234 +S'(artist)' +p287457 +sg225230 +S'The Baths Of The Romans Explained And Illustrated. With The Restorations Of Palladio Corrected And Improved. To Which Is Prefixed, An Introductory Preface, Pointing Out The Nature Of The Work. And A Dissertation Upon The State Of The Arts During The Different Periods Of The Roman Empire' +p287458 +sg225236 +S'\n' +p287459 +sa(dp287460 +g225232 +S'Alessandro Capra' +p287461 +sg225240 +g27 +sg225234 +S', published 1678' +p287462 +sg225230 +S"La Nuova Architettura Famigliare di Alessandro Capra Architetto, e Cittadino Cremonese Diuisa in cinque Libri corrispondenti a' cinque Ordini, cio\xc3\xa8 Toscano, Dorico, Ionico, Corintio, e Composito" +p287463 +sg225236 +S'\n' +p287464 +sa(dp287465 +g225232 +S'Alessandro Capra' +p287466 +sg225240 +g27 +sg225234 +S', published 1683' +p287467 +sg225230 +S"La Nuova Architettura Militare d'Antica Rinovata da Alessandro Capra Architetto, e Cittadino Cremonese: Divisa in tre' Parti, Con l'Indice, e loro Argomenti" +p287468 +sg225236 +S'\n' +p287469 +sa(dp287470 +g225232 +S'Pietro Cataneo' +p287471 +sg225240 +g27 +sg225234 +S', published 1554' +p287472 +sg225230 +S'I Quattro Primi Libri di Architettura di Pietro Cataneo Senese' +p287473 +sg225236 +S'\n' +p287474 +sa(dp287475 +g225232 +S'Artist Information (' +p287476 +sg225240 +g27 +sg225234 +S'(artist)' +p287477 +sg225230 +S'Designs of Chinese Buildings, Furniture, Dresses, Machines, and Utensils. Engraved by the Best Hands, From the Originals drawn in China by Mr. Chambers, Architect, Member of the Imperial Academy of Arts at Florence. To which is annexed, A Description of their Temples, Houses, Gardens, &c.;' +p287478 +sg225236 +S'\n' +p287479 +sa(dp287480 +g225232 +S'Artist Information (' +p287481 +sg225240 +g27 +sg225234 +S'(artist)' +p287482 +sg225230 +S'A Treatise on Civil Architecture, in which The Principles of that Art Are liad down, and Illustrated by A great Number of Plates, Accurately Designed, and Elegantly Engraved by the Best Hands' +p287483 +sg225236 +S'\n' +p287484 +sa(dp287485 +g225232 +S'Artist Information (' +p287486 +sg225240 +g27 +sg225234 +S'(artist)' +p287487 +sg225230 +S'F\xc3\xbcrstlicher Baumeister, Oder: Architectura Civilis, Wie Grosser F\xc3\xbcrsten und Herren Pall\xc3\xa4ste, mit ihren H\xc3\xb6fen, Lust-H\xc3\xa4usern, G\xc3\xa4rten, Grotten, Orangerien, und anderen darzu geh\xc3\xb6rigen Geb\xc3\xa4uden f\xc3\xbcglich anzulegen, und nach heutiger Art auszuzieren;...Erster Theil, Inventirt und gezeichnet, Durch Paulus Decker' +p287488 +sg225236 +S'\n' +p287489 +sa(dp287490 +g225232 +S'Artist Information (' +p287491 +sg225240 +g27 +sg225234 +S'(artist)' +p287492 +sg225230 +S'Prodromus Architecturae Goldmannianae, Oder Getreue und gr\xc3\xbcndliche Anweisung,...Als eine Vorbereitung Zu einer vorhabenden neuen, sehr vermehrten, verbesserten und bequemern Edition der vollst\xc3\xa4ndigen Anweisung Zu der Civil-Bau-Kunst heraus gegeben, Und in netten Kudfferstichen mit unterschiedlichen Baumeisterischen Erfindungen erl\xc3\xa4utert' +p287493 +sg225236 +S'\n' +p287494 +sa(dp287495 +g225232 +S'Artist Information (' +p287496 +sg225240 +g27 +sg225234 +S'(artist)' +p287497 +sg225230 +S'Fiestas De La S. Iglesia Metropolitana, Y Patriarchal De Sevilla, Al Nveuo Cvlto Del Se\xc3\xb1or Rey S. Fernando el Tercero De Castilla Y De Leon...' +p287498 +sg225236 +S'\n' +p287499 +sa(dp287500 +g225232 +S'Artist Information (' +p287501 +sg225240 +g27 +sg225234 +S'(author)' +p287502 +sg225230 +S'Cosmo Medici Duci Florentinor. Et. Senens. Urbis Romae Aedificiorum. Illustriumquae. Supersunt. Reliquiae. Summa. Cum. Diligentia. A. Ionnane Antonio. Dosio. Stilo. Ferreo. Ut. Hodie. Cernuntur. Decriptae. Et. A. Io. Baptista. De. Cavaleriis. Aeneis. Tabulis. Incisis. Repraesentatae M.D.LXIX.Kal.Mai' +p287503 +sg225236 +S'\n' +p287504 +sa(dp287505 +g225232 +S'Artist Information (' +p287506 +sg225240 +g27 +sg225234 +S'(artist)' +p287507 +sg225230 +S'Joh: Rudolph F\xc3\xa4sches, Archit: und Ingen: Capit: anderer Versuch Seiner Architect: Wercke bedtehend in allerhand Grund-Haupt Rissen und Profile unterschiedener Gab\xc3\xa4uden' +p287508 +sg225236 +S'\n' +p287509 +sa(dp287510 +g225232 +S'Artist Information (' +p287511 +sg225240 +g27 +sg225234 +S'(author)' +p287512 +sg225230 +S'Templum Vaticanum Et Ipsius Origo Cum Aedificiis maxim\xc3\xa8 conspicuis antiquit\xc3\xb9s, & rec\xc3\xa8ns ibidem constitutis; Editum Ab Equite Carolo Fontana Deputato celeberrimi ejusdem Templi Ministro, atque Architecto. Cum plerisque Regulis, novisque Architecturae & Operationibus ab Ipsomet in lucem evulgatis. Cum Indice Rerum notablium ad calcem locupletissimo. Opus In Spetem Libros Distributum, Latinesque literis consignatum A Joanne Jos. Bonnerv\xc3\xab De S. Romain' +p287513 +sg225236 +S'\n' +p287514 +sa(dp287515 +g225232 +S'Artist Information (' +p287516 +sg225240 +g27 +sg225234 +S'(artist)' +p287517 +sg225230 +S'Architectura Civilis: Das ist: Eigentliche Beschreibung wie ma nach bester form, und gerechter Regul, F\xc3\xbcrs Erste: Pall\xc3\xa4st, mit dero Lust: und Thiergarten, darben auch Grotten: So dann Gemeine Bewonungen: Zum Andern, Kirchen, Capellen, Alt\xc3\xa4r, Gotsh\xc3\xa4user: Drittens, Spit\xc3\xa4ler, Lazareten und Gots\xc3\xa4cker auff\xc3\xbcren unnd erbawen soll; Alles auss vielfaltiger Erfahrnuss zusammen getragen, beschrieben, und mit. 40. Kupfferstucken f\xc3\xbcr Augen gestellt, Durch Josephum Furttenbach' +p287518 +sg225236 +S'\n' +p287519 +sa(dp287520 +g225232 +S'Artist Information (' +p287521 +sg225240 +g27 +sg225234 +S'(artist)' +p287522 +sg225230 +S'Architectura Martialis: Das ist, Aussf\xc3\xbchrliches Bedencken, uber das, zu dem Gesch\xc3\xbctz und Waffen geh\xc3\xb6rige Geb\xc3\xa4w: Darin- nen f\xc3\xbcr das Erste engentlish zuvernemmen / In was gestalt ein wolgeordnetes Zeug- oder R\xc3\xbcft-haus...' +p287523 +sg225236 +S'\n' +p287524 +sa(dp287525 +g225232 +S'Joseph Furttenbach' +p287526 +sg225240 +g27 +sg225234 +S', published 1630' +p287527 +sg225230 +S'Anno 1630. Das Giornal, Oder Tag Buch' +p287528 +sg225236 +S'\n' +p287529 +sa(dp287530 +g225232 +S'Joseph Furttenbach' +p287531 +sg225240 +g27 +sg225234 +S', published 1630' +p287532 +sg225230 +S'Anno 1630. Schuld Buch' +p287533 +sg225236 +S'\n' +p287534 +sa(dp287535 +g225232 +S'Artist Information (' +p287536 +sg225240 +g27 +sg225234 +S'(artist after)' +p287537 +sg225230 +S'Architectura Navilis. Das ist: Von dem Schiff Geb\xc3\xa4w, Auff dem Meer und Seekusten zugebrauchen...' +p287538 +sg225236 +S'\n' +p287539 +sa(dp287540 +g225232 +S'Artist Information (' +p287541 +sg225240 +g27 +sg225234 +S'(artist)' +p287542 +sg225230 +S'Halinitro-Pyrobolia. Beschreibug Einer newen B\xc3\xbcchsen meisteren, nemlichen: Gr\xc3\xbcndlicher Bericht, wie der Salpeter, Schwefel, Kohlen, unnd des Pulfer zu praepariren,...Dann, wie der P\xc3\xb6ler, das Grobe Besch\xc3\xbctz, und der Petardo zu gobernirn:...Alles auss eygener Experientza:...mit.44. Kupfferstucken delinirt und f\xc3\xbcr Augen gestellt Durch Josephum Furttenbach' +p287543 +sg225236 +S'\n' +p287544 +sa(dp287545 +g225232 +S'Teofilo Gallaccini' +p287546 +sg225240 +g27 +sg225234 +S', published 1767' +p287547 +sg225230 +S'Trattato di Teofilo Gallaccini Sopra Gli Errori Degli Architetti Ora Per La Prima Volta Pubblicato' +p287548 +sg225236 +S'\n' +p287549 +sa(dp287550 +g225232 +S'Antonio Visentini' +p287551 +sg225240 +g27 +sg225234 +S', published 1771' +p287552 +sg225230 +S'Osservazioni Di Antonio Visentini Architetto Veneto Che Servono Di Continuazione Al Trattato Di Teofilo Gallaccini Sopra Gli Errori Degli Architetti' +p287553 +sg225236 +S'\n' +p287554 +sa(dp287555 +g225232 +S'Artist Information (' +p287556 +sg225240 +g27 +sg225234 +S'(artist)' +p287557 +sg225230 +S'Der auserlessneste und Nach den Regeln der antiquen Bau-kunst sowohl, als nach dem heutigen Gusto verneuerte Goldmann, Als der rechtschaffenste Bau-Meister, oder die gantze Civil-Bau-Kunst, In unterschiedlichen vollst\xc3\xa4ndigen Anweisungen der- gestalt abgehandelt, ... (Text)' +p287558 +sg225236 +S'\n' +p287559 +sa(dp287560 +g225232 +S'Artist Information (' +p287561 +sg225240 +g27 +sg225234 +S'(artist)' +p287562 +sg225230 +S'Der auserlessneste und Nach den Regeln der antiquen Bau-kunst sowohl, als nach dem heutigen Gusto verneuerte Goldmann, Als der rechtschaffenste Bau-Meister, oder die gantze Civil-Bau-Kunst, In unterschiedlichen vollst\xc3\xa4ndigen Anweisungen der- gestalt abgehandelt, ... (Plates)' +p287563 +sg225236 +S'\n' +p287564 +sa(dp287565 +g225232 +S'Artist Information (' +p287566 +sg225240 +g27 +sg225234 +S'(author)' +p287567 +sg225230 +S'Architecttura Civile Del Padre D. Guarino Guarini Cherico Regolare Opera Postuma Dedicata A Sua Sacra Reale Maesta.' +p287568 +sg225236 +S'\n' +p287569 +sa(dp287570 +g225232 +S'Artist Information (' +p287571 +sg225240 +g27 +sg225234 +S'(artist)' +p287572 +sg225230 +S"Th\xc3\xa9orie De l'Art Des Jardins par C.C.L. Hirschfeld, Conseiller de Justice de S. M. Danoise & Professeur de Philosophie & der Beaux-Arts dans l'Universit\xc3\xa9 de Kiel. Traduit de L'Allemand. Tome Premier." +p287573 +sg225236 +S'\n' +p287574 +sa(dp287575 +g225232 +S'Artist Information (' +p287576 +sg225240 +g27 +sg225234 +S'(artist)' +p287577 +sg225230 +S"Th\xc3\xa9orie De l'Art Des Jardins par C.C.L. Hirschfeld, Conseiller de Justice de S. M. Danoise & Professeur de Philosophie & der Beaux-Arts dans l'Universit\xc3\xa9 de Kiel. Traduit de L'Allemand. Tome Second." +p287578 +sg225236 +S'\n' +p287579 +sa(dp287580 +g225232 +S'Artist Information (' +p287581 +sg225240 +g27 +sg225234 +S'(artist)' +p287582 +sg225230 +S"Th\xc3\xa9orie De l'Art Des Jardins par C.C.L. Hirschfeld, Conseiller de Justice de S. M. Danoise & Professeur de Philosophie & der Beaux-Arts dans l'Universit\xc3\xa9 de Kiel. Traduit de L'Allemand. Tome Troisi\xc3\xa8me" +p287583 +sg225236 +S'\n' +p287584 +sa(dp287585 +g225232 +S'Artist Information (' +p287586 +sg225240 +g27 +sg225234 +S'(artist)' +p287587 +sg225230 +S"Th\xc3\xa9orie De l'Art Des Jardins par C.C.L. Hirschfeld, Conseiller de Justice de S. M. Danoise & Professeur de Philosophie & der Beaux-Arts dans l'Universit\xc3\xa9 de Kiel. Traduit de L'Allemand. Tome Quatri\xc3\xa8me" +p287588 +sg225236 +S'\n' +p287589 +sa(dp287590 +g225232 +S'Artist Information (' +p287591 +sg225240 +g27 +sg225234 +S'(artist)' +p287592 +sg225230 +S"Th\xc3\xa9orie De l'Art Des Jardins par C.C.L. Hirschfeld, Conseiller de Justice de S. M. Danoise & Professeur de Philosophie & der Beaux-Arts dans l'Universit\xc3\xa9 de Kiel. Traduit de L'Allemand. Tome Cinqui\xc3\xa8me" +p287593 +sg225236 +S'\n' +p287594 +sa(dp287595 +g225232 +S'Artist Information (' +p287596 +sg225240 +g27 +sg225234 +S'(artist)' +p287597 +sg225230 +S'Perspectiva Corporum Regularium. Das ist Ein fleyssige F\xc3\xbcrweysung Wie die F\xc3\xbcnff Regulirten C\xc3\xb6rper darwon Plato inn Timaeo Unnd Euclides inn sein Elementis schreibt etc. Durch einen sonderlichen neuen behenden und gerechten weg der vor nie im gebrauch ist gesehen wor-den gar k\xc3\xbcnstlich inn die Perpectuia gebracht Und darzu ein sch\xc3\xb6ne Anleytung wie auss denselbigen F\xc3\xbcnff C\xc3\xb6rpern one Endt gar viel andrere C\xc3\xb6rper mancherlen Art und gestalt gemacht unnd gefunden werden m\xc3\xbcgen. Allen Liebhabern der freyen kunst zu Ehn durch Wenzeln Jamnitzer...' +p287598 +sg225236 +S'\n' +p287599 +sa(dp287600 +g225232 +S'Artist Information (' +p287601 +sg225240 +g27 +sg225234 +S'(artist)' +p287602 +sg225230 +S"The Designs of Inigo Jones Consisting of Plans and Elevations for Publick and Private Buildings. Publish'd by William Kent, With some Additional Designs. The First [Second] Volume" +p287603 +sg225236 +S'\n' +p287604 +sa(dp287605 +g225232 +S'Carlo Labruzzi' +p287606 +sg225240 +g27 +sg225234 +S', published c. 1795' +p287607 +sg225230 +S'Via Appia Illustrata Ab Urbe Roma Ad Capuam' +p287608 +sg225236 +S'\n' +p287609 +sa(dp287610 +g225232 +S'Artist Information (' +p287611 +sg225240 +g27 +sg225234 +S'(author)' +p287612 +sg225230 +S'Herrn Alexander Blonds neuer\xc3\xb6fnete G\xc3\xa4rtner-Akademie oder: Die Kunst Pracht-und Lust-G\xc3\xa4rten samt dererselben Auszierungen und Wasserwerken wohl anzulegen Mit drey-und dreyssig kupfer-Taffeln versehen und aus dem Franz\xc3\xb6sischen ins Deutsche \xc3\xbcbersesset von Franz Anton Danreitter.' +p287613 +sg225236 +S'\n' +p287614 +sa(dp287615 +g225232 +S'Samuel Locke' +p287616 +sg225240 +g27 +sg225234 +S', published 1783' +p287617 +sg225230 +S'Die Verbindung und Uebereinanderstellung der S\xc3\xa4ulen, oder Anweisung, wie bey der Baukunst die f\xc3\xbcnf S\xc3\xa4ulenordnungen auf eine sehr leichte und bequeme Art, nach einer gegrundeten Regel, sowohl bey geraden als auch cirkulrunden Figuren, \xc3\xbcber einander zu setzen und zu verbinden sind; in drey Abtheilungen abgehandelt, und auf 60 kupferbl\xc3\xa4ttern vorgestellet durch Samule Locke,...' +p287618 +sg225236 +S'\n' +p287619 +sa(dp287620 +g225232 +S'Johann Baptist Mair von Mairsfeld' +p287621 +sg225240 +g27 +sg225234 +S', published 1712' +p287622 +sg225230 +S'Beschreibung, Was auf Ableiben Weyland Ihrer Keyser. Majest\xc3\xa4t Josephi, Biss nach Vorgegangener Erb-Huldigung, Welche dem ... R\xc3\xb6mischen Keyser, Carolo Dem Sechsten, ...Als Erz-Herzogen zu Oesterreich, Die gesamte Nider-Oesterreichische St\xc3\xa4nde Den. 8 Novembris A: 1712. Jn allertieffester Unterh\xc3\xa4nigkeit abgelest, Sich Merkw\xc3\xbcdiges hat zugetragen, Und auf Anordnung vorermelter L\xc3\xb6bl. St\xc3\xa4nden mit allen Umst\xc3\xa4nden beschriben worden, Durch...Herrn Johann Baptist von Mairn, Edlen von Mairsfeld,...' +p287623 +sg225236 +S'\n' +p287624 +sa(dp287625 +g225232 +S'Artist Information (' +p287626 +sg225240 +g27 +sg225234 +S'(artist)' +p287627 +sg225230 +S"Pain's British Palladio: or, The Builder's General Assistant. demonstrating, in the most easy and practical method, all the Principal Rules of Architecture, from the Ground Plan to the Ornamental Finish. Illustrated with Several New and Useful Designs of Houses, with their Plans, Elevations, and Sections. Also, Clear and Ample Instructions, annexed to each subject, in Letter-Press; with a List of Prices for Materials, and Labour, and Labour only....The Whole correctly Engraved on Forty-two Folio Copper Plates, from the Original Designs of William and James Pain." +p287628 +sg225236 +S'\n' +p287629 +sa(dp287630 +g225232 +S'William Pain' +p287631 +sg225240 +g27 +sg225234 +S', published 1769' +p287632 +sg225230 +S"The Builder's Companion, and Workman's General Assistant; Demonstrating, After the most easy and practical Method, All the Principal Rules of Architecture, from The Plan to the Ornamental Finish; Illustrated with a greater Number of useful and familiar Examples than any Work of that Kind hitherto published;...The Whole correctly engraved on 92 Folio Copper-Plates,...The Third Edition, With many Improvements and Additions by the Author." +p287633 +sg225236 +S'\n' +p287634 +sa(dp287635 +g225232 +S'Artist Information (' +p287636 +sg225240 +g27 +sg225234 +S'(artist)' +p287637 +sg225230 +S"Plans, Elevations and Sections, of Noblemen and Gentlemen's Houses, and also of Stabling, Bridges, Public and Private, Temples, and other Garden Buildings; executed in the counties of Derby, Durham, Middlesex, Northumberland, Nottingham, and York....Part the First. Illustrated by seventy-four large folio Plates." +p287638 +sg225236 +S'\n' +p287639 +sa(dp287640 +g225232 +S'Artist Information (' +p287641 +sg225240 +g27 +sg225234 +S'(artist)' +p287642 +sg225230 +S"Plans, Elevations and Sections, of Noblemen and Gentlemen's Houses, and also of Bridges, Public and Private, Temples, and other Garden Buildings; executed in the counties of Nottingham, Essex, Wilts, Derby, Hertford, Suffolk, Salop, Middlesex, and Surrey....Part the Second. Illustrated by One Hundred and One Large Folio Plates." +p287643 +sg225236 +S'\n' +p287644 +sa(dp287645 +g225232 +S'Andrea Palladio' +p287646 +sg225240 +g27 +sg225234 +S', published 1570' +p287647 +sg225230 +S"I Quattro Libri dell'Architettura Di Andrea Palladio. Ne' quali, dopo un breue trattato de' cinque ordini, & di quelli auertimenti, che sono piu necessarij nel fabricare; Si Tratta Delle Case Private, delle Vie, de i Ponti, delle Piazze, de i Xisti, et de'Tempij." +p287648 +sg225236 +S'\n' +p287649 +sa(dp287650 +g225232 +S'Andrea Palladio' +p287651 +sg225240 +g27 +sg225234 +S', published 1581' +p287652 +sg225230 +S"I Quattro Libri dell'Architettura Di Andrea Palladio. Ne' quali, dopo un breue trattato de' cinque ordini, & di quelli auertimenti, che sono piu necessarij nel fabricare; Si Tratta Delle Case Private, delle Vie, de i Ponti, delle Piazze, de i Xisti, et de'Tempij." +p287653 +sg225236 +S'\n' +p287654 +sa(dp287655 +g225232 +S'Artist Information (' +p287656 +sg225240 +g27 +sg225234 +S'(artist)' +p287657 +sg225230 +S"Traict\xc3\xa9 Des cinq Ordres d'Architecture, dont se sont seruy les Anciens. Traduit Du Palladio. Augment\xc3\xa9 de nouvelles inventions pour l'Art de bien bastir. Par le Sr. Le Muet." +p287658 +sg225236 +S'\n' +p287659 +sa(dp287660 +g225230 +S"Les Quatre Livres De l'Architecture D'Andr\xc3\xa9 Palladio. Mis en Fran\xc3\xa7ois. Dans lesquels, apr\xc3\xa9s un petit Traitt\xc3\xa9 des cing Ordres, avec quelques- vues des plus nec\xc3\xa9ssaires observations pour bien bastir, Il parle de la contructions des maisons particulieres, des grands chemins, des Ponts, des Places publiques, des Xystes, des Basiliques, & des Temples" +p287661 +sg225232 +S'Artist Information (' +p287662 +sg225234 +S'(author)' +p287663 +sg225236 +S'\n' +p287664 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c90.jpg' +p287665 +sg225240 +g27 +sa(dp287666 +g225232 +S'Artist Information (' +p287667 +sg225240 +g27 +sg225234 +S'(author)' +p287668 +sg225230 +S"L'Architettura d'Andrea Palladio Divisa in Quatro Libri Di nuovo ristampata, ed abbellita coll' impressione delle figure in rame non pi\xc3\xb9 isata. Con l'Aggiunta del Quinto Libro, Che tratta dell Antichit\xc3\xa0 di Roma dell' Autore medemo no pi\xc3\xb9 veduto." +p287669 +sg225236 +S'\n' +p287670 +sa(dp287671 +g225232 +S'Artist Information (' +p287672 +sg225240 +g27 +sg225234 +S'(artist)' +p287673 +sg225230 +S"Architecture de Palladio Divis\xc3\xa9e en Quatre Livres: dans lesquels, Apr\xc3\xa8s un Trait\xc3\xa9 des cinq Ordres, joint aux observations les plus n\xc3\xa9cessaires pour bien b\xc3\xa2tir, il est parl\xc3\xa9 De la construction des Maisons publiques & particuli\xc3\xa9res, des Grand-Chemins, des Ponts, des Place-Publiques, des Xystes, & des Temples; avec leurs Plans, Profils, Coupes & El\xc3\xa9vations avec des Notes d'Inigo Jones, qui n'avoient point encore \xc3\xa9t\xc3\xa9 imprim\xc3\xa9es. Le tout revu, dessin\xc3\xa9 & nouvellement mis au jour par Jaques Leoni, Venitien,...Traduit de l'Italien. Tome Premier, Contenant les deux premiers Livres" +p287674 +sg225236 +S'\n' +p287675 +sa(dp287676 +g225232 +S'Artist Information (' +p287677 +sg225240 +g27 +sg225234 +S'(artist)' +p287678 +sg225230 +S"Architecture de Palladio Divis\xc3\xa9e en Quatre Livres: dans lesquels, Apr\xc3\xa8s un Trait\xc3\xa9 des cinq Ordres, joint aux observations les plus n\xc3\xa9cessaires pour bien b\xc3\xa2tir, il est parl\xc3\xa9 De la construction des Maisons publiques & particuli\xc3\xa9res, des Grand-Chemins, des Ponts, des Place-Publiques, des Xystes, & des Temples; avec leurs Plans, Profils, Coupes & El\xc3\xa9vations avec des Notes d'Inigo Jones, qui n'avoient point encore \xc3\xa9t\xc3\xa9 imprim\xc3\xa9es. Le tout revu, dessin\xc3\xa9 & nouvellement mis au jour par Jaques Leoni, Venitien,...Traduit de l'Italien. Tome Second, Contenant les Livres III & IV" +p287679 +sg225236 +S'\n' +p287680 +sa(dp287681 +g225232 +S'Artist Information (' +p287682 +sg225240 +g27 +sg225234 +S'(artist)' +p287683 +sg225230 +S"Fabbriche' Antiche Disegnate' da Andrea Palladio Vicentino e' Date in Luce' da Riccardo Conte' di Burlington." +p287684 +sg225236 +S'\n' +p287685 +sa(dp287686 +g225232 +S'Artist Information (' +p287687 +sg225240 +g27 +sg225234 +S'(author)' +p287688 +sg225230 +S"Andrea Palladio's Architecture, in Four Books Containing a Dissertation on the Five Orders & ye most Necessary Observations relating to all kinds of Building. as also The Different Constructions of Public and Private Houses, High-ways, Bridges, Market-Places, Xystes, & Temples, n.th their Plans, Sections, & Elevations. The Whole Containing 226 Folio Copper-Plates Carefully Revied and Redelineated By Edw.d Hoppus...and Embellish'd n.th a Large Variety of Chimney Pieces Collected from the Works of Inigo Jones & others." +p287689 +sg225236 +S'\n' +p287690 +sa(dp287691 +g225232 +S'Artist Information (' +p287692 +sg225240 +g27 +sg225234 +S'(author)' +p287693 +sg225230 +S"The Four Books of Andrea Palladio's Architecture: Wherein, After a short Treatise of the Five Orders, Those Observations that are most necessary in Building, Private Houses, Streets, Bridges, Piazzas, Xisti, and Temples are treated of." +p287694 +sg225236 +S'\n' +p287695 +sa(dp287696 +g225232 +S'Artist Information (' +p287697 +sg225240 +g27 +sg225234 +S'(artist)' +p287698 +sg225230 +S"Architettura di Andrea Palladio Vicentino Di Nuovo Ristampata, E di Figure in Rame diligentemente intagliate arricchita, corretta, e accresciuta di moltissime Fabbriche inedite; Con Le Osservazioni Dell' Architetto N.N. E Con La Traduzione Francese. Tomo Primo." +p287699 +sg225236 +S'\n' +p287700 +sa(dp287701 +g225232 +S'Artist Information (' +p287702 +sg225240 +g27 +sg225234 +S'(artist)' +p287703 +sg225230 +S"Architettura di Andrea Palladio Vicentino Di Nuovo Ristampata, E di Figure in Rame diligentemente intagliate arricchita, corretta, e accresciuta di moltissime Fabbriche inedite; Con Le Osservazioni Dell' Architetto N.N. E Con La Traduzione Francese. Tomo Quinto." +p287704 +sg225236 +S'\n' +p287705 +sa(dp287706 +g225232 +S'Artist Information (' +p287707 +sg225240 +g27 +sg225234 +S'(artist)' +p287708 +sg225230 +S"Architettura di Andrea Palladio Vicentino Di Nuovo Ristampata, Nella quale sono ridotte in compendio le Misure, e le Proporzioni delli Cinque Ordini di Architettura dal medesimo insegnate, ed anche da molti altri Autori, e tratte da Fabbriche Antiche, Raccolte, E Date in Luce Dall' Architetto N.N. E Con La Traduzione Francese. Tomo Terzo." +p287709 +sg225236 +S'\n' +p287710 +sa(dp287711 +g225232 +S'Andrea Palladio' +p287712 +sg225240 +g27 +sg225234 +S', published 1747-1748' +p287713 +sg225230 +S"Architettura di Andrea Palladio Vicentino Di Nuovo Ristampata, E di Figure in Rame diligentemente intagliate arricchita, corretta, e accresciuta di moltissime Fabbriche inedite; Con Le Osservazioni Dell' Architetto N.N. E Con La Traduzione Francese. Tomo Settimo." +p287714 +sg225236 +S'\n' +p287715 +sa(dp287716 +g225232 +S'Artist Information (' +p287717 +sg225240 +g27 +sg225234 +S'(author)' +p287718 +sg225230 +S"The First Book of Andrea Palladio's Architecture. Treating of the Five Orders; and What is most necessary in Building. Correctly drawn from his Original Work, publish'd by himself at Venice, Anno 1570. And accurately engraved by I. Ware." +p287719 +sg225236 +S'\n' +p287720 +sa(dp287721 +g225232 +S'Andrea Palladio' +p287722 +sg225240 +g27 +sg225234 +S', published 1776/1783' +p287723 +sg225230 +S'Le Fabbriche E I Disegni Di Andrea Palladio Raccolti Ed Illustrati Da Ottavio Bertotti Scamozzi Opera divisa in quattro Tomi con Tavole in rame rappresentanti le Piante, i Prospetti, e gli Spaccati. Con La Traduzione Francese. Tomo Primo.' +p287724 +sg225236 +S'\n' +p287725 +sa(dp287726 +g225232 +S'Andrea Palladio' +p287727 +sg225240 +g27 +sg225234 +S', published 1776/1783' +p287728 +sg225230 +S'Les Batimens Et Les Desseins De Andr\xc3\xa9 Palladio Recueillis Et Illustr\xc3\xa9s Par Octave Bertotti Scamozzi Ouvrage divis\xc3\xa9 en quattre volumes, avec de Planches, qui representent les Plans, Les Prospects, & les Sections. Tome premier.' +p287729 +sg225236 +S'\n' +p287730 +sa(dp287731 +g225232 +S'Artist Information (' +p287732 +sg225240 +g27 +sg225234 +S'(artist)' +p287733 +sg225230 +S'Le Fabbriche E I Disegni Di Andrea Palladio Raccolti Ed Illustrati Da Ottavio Bertotti Scamozzi Opera divisa in quattro Tomi con Tavole in rame rappresentanti le Piante, i Prospetti, e gli Spaccati. Con La Traduzione Francese. [volume 3]' +p287734 +sg225236 +S'\n' +p287735 +sa(dp287736 +g225232 +S'Artist Information (' +p287737 +sg225240 +g27 +sg225234 +S'(artist)' +p287738 +sg225230 +S'Le Fabbriche E I Disegni Di Andrea Palladio Raccolti Ed Illustrati Da Ottavio Bertotti Scamozzi Opera divisa in quattro Tomi con Tavole in rame rappresentanti le Piante, i Prospetti, e gli Spaccati. Con La Traduzione Francese. [volume 4]' +p287739 +sg225236 +S'\n' +p287740 +sa(dp287741 +g225232 +S'Artist Information (' +p287742 +sg225240 +g27 +sg225234 +S'(author)' +p287743 +sg225230 +S"Le Terme Dei Romani Disegnate Da Andrea Palladio E Ripubblicate Con La Giunta Di Alcune Osservazioni Da Ottavio Bertotti Scamozzi Giusta L'Esemplare Del Lord Co. Di Burlingthon Impresso In Londra L'Anno 1732." +p287744 +sg225236 +S'\n' +p287745 +sa(dp287746 +g225232 +S'Artist Information (' +p287747 +sg225240 +g27 +sg225234 +S'(artist)' +p287748 +sg225230 +S'Les B\xc3\xa2timens Et Les Desseins De Andre Palladio Recueillis Et Illustr\xc3\xa9s Par Octave Bertotti Scamozzi Ouvrage Divis\xc3\xa9 En Quartre Volumes, Avec Des Planches Qui R\xc3\xa9presentent Les Plans, Les Fa\xc3\xa7ades, Et Les Coupes. Tome Premier. [-Tome Second.] Seconde Editi' +p287749 +sg225236 +S'\n' +p287750 +sa(dp287751 +g225232 +S'Artist Information (' +p287752 +sg225240 +g27 +sg225234 +S'(artist)' +p287753 +sg225230 +S'Les B\xc3\xa2timens Et Les Desseins De Andre Palladio Recueillis Et Illustr\xc3\xa9s Par Octave Bertotti Scamozzi Ouvrage Divis\xc3\xa9 En Quartre Volumes, Avec Des Planches Qui R\xc3\xa9presentent Les Plans, Les Fa\xc3\xa7ades, Et Les Coupes. Tome Troisi\xc3\xa8me. [-Tome Quatri\xc3\xa8me.] Seconde Edition.' +p287754 +sg225236 +S'\n' +p287755 +sa(dp287756 +g225232 +S'Artist Information (' +p287757 +sg225240 +g27 +sg225234 +S'(author)' +p287758 +sg225230 +S"Les Thermes Des Romains Dessin\xc3\xa9es Par Andrea Palladio Et Publi\xc3\xa9es De Nouveau Avec Quelques Observations Par Octave Bertotti Scamozzi D'Apr\xc3\xa9s L'Ex\xc3\xa9mplaire Du Lord Comte De Burlingthon Imprim\xc3\xa9 A Londres En 1732." +p287759 +sg225236 +S'\n' +p287760 +sa(dp287761 +g225232 +S'Andrea Palladio' +p287762 +sg225240 +g27 +sg225234 +S', published 1616' +p287763 +sg225230 +S"I Quattro Libri Dell'Architettura Di Andrea Palladio. Ne' quali, dop\xc3\xb2 un breue Trattato de'cinque ordini, & di quelli auertimenti, che sono pi\xc3\xb9 necessarij nel fabricare; Si Tratta Delle Case Private, delle Vie, dei Ponti, delle Piazze, dei Xisti, & de'Tempij. Con Privilegi." +p287764 +sg225236 +S'\n' +p287765 +sa(dp287766 +g225232 +S'Artist Information (' +p287767 +sg225240 +g27 +sg225234 +S'(author)' +p287768 +sg225230 +S"A Treatise of the Five Orders of Columns in Architecture, Viz. Toscan, Doric, Ionic, Corinthian, and Composite. Wherein The Proportions and Character of the Members Of their several Pedestals, Columns and Entablatures, Are distinctly consider'd, with respect to the Practice of the Antients and Moderns. Also A most Natural, Easie and Practicable Method laid down, for determining the most minute Part in all the Orders, without a Fraction....Engraven on Six Folio Plates of the Several Orders, adorn'd with Twenty-Four Borders, as many Initial Letters, and a like number of Tail-Pieces, by John Sturt. Written in French by Claude Perrault, of the Royal Academy of Paris....Made English by John James" +p287769 +sg225236 +S'\n' +p287770 +sa(dp287771 +g225232 +S'Francesco Piranesi' +p287772 +sg225240 +g27 +sg225234 +S', n.d. [published 1800/1809]' +p287773 +sg225230 +S'Sciographia Quatuor Templorum Veterum Pio Vi Pont Max Bono Christianae Reip Nato Et Artium Ingenvarum Felicitati A Francesco Piranesio Romano Dictata' +p287774 +sg225236 +S'\n' +p287775 +sa(dp287776 +g225232 +S'Francesco Piranesi' +p287777 +sg225240 +g27 +sg225234 +S', published 1783' +p287778 +sg225230 +S"Il Teatro d'Ercolano Alla Maesta Di Gustavo III Re: Di Svezia &c; &c; &c; Promotore Munificentissino Delle Belle Arti Francesco Piranesi Architetto Umilia E Consagra" +p287779 +sg225236 +S'\n' +p287780 +sa(dp287781 +g225232 +S'Artist Information (' +p287782 +sg225240 +g27 +sg225234 +S'(artist)' +p287783 +sg225230 +S"[A collection of plates, including etchings of Pompeii after Desprez, views of the Vatican, and the large plan of Hadrian's villa at Tivoli]" +p287784 +sg225236 +S'\n' +p287785 +sa(dp287786 +g225232 +S'Francesco Piranesi' +p287787 +sg225240 +g27 +sg225234 +S', published 1790' +p287788 +sg225230 +S"Raccolta De'Tempj Antichi Opera Di Francesco Piranesi Architetto Romano Prima Parte Che Comprende I Tempj Di Vesta Madre, Ossia Della Terra, E Della Sibilla, Ambedue in Tivoli, E Dell' Onore, E Della Virt\xc3\xb9 Fuori Di Porta Capena." +p287789 +sg225236 +S'\n' +p287790 +sa(dp287791 +g225232 +S'Artist Information (' +p287792 +sg225240 +g27 +sg225234 +S'Italian, active 1804/1817' +p287793 +sg225230 +S'[Choix des meilleures statues antiques]' +p287794 +sg225236 +S'(artist after)' +p287795 +sa(dp287796 +g225230 +S"Le Magnificenze di Roma Le Pi\xc3\xb9 Remarcabili Consistenti In Gran Numero di Stampe Nelle quali vengano rappresentate le pi\xc3\xb9 cospicue Fabbriche Di Roma Moderna, E Le Rimaste Dell' Antica, Anche Quelle, Che Sparse Sono Per L'Italia Con L'Aggiunta Ancora Di Molte Invenzioni Si Prospettiva Sulla Maniera Degl' Antichi Romani, Come Anche Di Molti Capricci Di Carceri Sotterranee. Il Tutto Com Singolar Gusto, E Studio Diligentemente Delineate, Inventate, Ed Incise Da Giambattista Piranesi Architetto Veneziano, E Raccolte Da Giovanni Bouchard Mercante Librajo Al Corso" +p287797 +sg225232 +S'Artist Information (' +p287798 +sg225234 +S'(artist)' +p287799 +sg225236 +S'\n' +p287800 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ffa6.jpg' +p287801 +sg225240 +g27 +sa(dp287802 +g225232 +S'Giovanni Battista Piranesi' +p287803 +sg225240 +g27 +sg225234 +S', published 1761' +p287804 +sg225230 +S'Opera Varie Di Architettura Prospettiva Grotteschi Antichit\xc3\xa0 sul Gusto Degli Antichi Romani Inventate, ed Incise Da Gio. Batista Piranesi Architetto Veneziano' +p287805 +sg225236 +S'\n' +p287806 +sa(dp287807 +g225232 +S'Giovanni Battista Piranesi' +p287808 +sg225240 +g27 +sg225234 +S', published 1761' +p287809 +sg225230 +S"Della Magnificenza ed Architettura de'Romani Opera; Osservazioni" +p287810 +sg225236 +S'\n' +p287811 +sa(dp287812 +g225230 +S"Lapides Capitolini; Antichit\xc3\xa0 di Cora; Le Rovine del Castello dell'Acqua Giulia" +p287813 +sg225232 +S'Giovanni Battista Piranesi' +p287814 +sg225234 +S', published 1761' +p287815 +sg225236 +S'\n' +p287816 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d24.jpg' +p287817 +sg225240 +g27 +sa(dp287818 +g225232 +S'Giovanni Battista Piranesi' +p287819 +sg225240 +g27 +sg225234 +S', published 1762' +p287820 +sg225230 +S"Antichit\xc3\xa0 d'Albano e di Castel Gandolfo; Descrizione e disegno dell'Emissario del Lago Albano; Di due Spelonche Ornate Dagli Antichi Alla Riva Del Lago Albano" +p287821 +sg225236 +S'\n' +p287822 +sa(dp287823 +g225232 +S'Artist Information (' +p287824 +sg225240 +g27 +sg225234 +S'(artist)' +p287825 +sg225230 +S"Peintures de la Sala Borgia, au Vatican, de l'invention de Raphael; Peintures de la Villa Lante, \xc3\xa0 Rome, de l'invention de Jules Romain; Peintures de la Ville Altoviti; Peintures du Cabinet de Jules II, au Vatican, de l'invention de Raphael; Raccolta di Alcuni Disegni...Guercino" +p287826 +sg225236 +S'\n' +p287827 +sa(dp287828 +g225230 +S'Catalogo delle Opere Date Finora Alla Lvce Da Gio Battista Piranesi' +p287829 +sg225232 +S'Artist Information (' +p287830 +sg225234 +S'(author)' +p287831 +sg225236 +S'\n' +p287832 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc3d.jpg' +p287833 +sg225240 +g27 +sa(dp287834 +g225230 +S'Catalogo delle Opere Date Finora Alla Lvce Da Gio Battista Piranesi' +p287835 +sg225232 +S'Artist Information (' +p287836 +sg225234 +S'(author)' +p287837 +sg225236 +S'\n' +p287838 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc40.jpg' +p287839 +sg225240 +g27 +sa(dp287840 +g225232 +S'Artist Information (' +p287841 +sg225240 +g27 +sg225234 +S'(author)' +p287842 +sg225230 +S'Exercitationes Vitruvianae Primae (-Tertiae). Hoc est: Ioannis Poleni Commentarivs Criticvs de M. Vitruvii Pollionis Architecti' +p287843 +sg225236 +S'\n' +p287844 +sa(dp287845 +g225232 +S'Artist Information (' +p287846 +sg225240 +g27 +sg225234 +S'(author)' +p287847 +sg225230 +S'Perspective Pictorum Et Architectorum, Andreae Putei, E Societate Jesu. In qu\xc3\xa2 docetur Modus expeditissimus Delineandi Optic\xc3\xa8 omnia que pertinent ad Architecturam' +p287848 +sg225236 +S'\n' +p287849 +sa(dp287850 +g225232 +S'Andrea Pozzo' +p287851 +sg225240 +g27 +sg225234 +S', published 1700' +p287852 +sg225230 +S'Perspectiva Pictorum et Architectorum Andraeae Putei E Societate Jesu. Pars Secunda' +p287853 +sg225236 +S'\n' +p287854 +sa(dp287855 +g225232 +S'Andrea Pozzo' +p287856 +sg225240 +g27 +sg225234 +S', published 1702' +p287857 +sg225230 +S'Perspectiva Pictorum et Architectorum Andraeae Putei E Societate Jesu. Pars Prima' +p287858 +sg225236 +S'\n' +p287859 +sa(dp287860 +g225232 +S'Andrea Pozzo' +p287861 +sg225240 +g27 +sg225234 +S', published 1706' +p287862 +sg225230 +S'Perspectivae Pictorum atque Architectorum, I.(-II.) Pars, Qu\xc3\xa2 facillima ac expeditissima Methodus omne id, quod ad Architecturam attinet, optic\xc3\xa2 ratione delineandi exhibetur, Inventa, designata & prim\xc3\xb9m Romae aedita \xc3\xa0 Fr. Andrea Puteo, S.J.' +p287863 +sg225236 +S'\n' +p287864 +sa(dp287865 +g225232 +S'Giacomo Quarenghi' +p287866 +sg225240 +g27 +sg225234 +S', published 1821' +p287867 +sg225230 +S'Fabbriche e Disegni di Giacomo Quarenghi Architetto' +p287868 +sg225236 +S'\n' +p287869 +sa(dp287870 +g225232 +S'Artist Information (' +p287871 +sg225240 +g27 +sg225234 +S'(artist)' +p287872 +sg225230 +S'Ragguaglio delle nozze delle maesta di Fillipo Quinto e di Elisabetta Farnese' +p287873 +sg225236 +S'\n' +p287874 +sa(dp287875 +g225232 +S'Artist Information (' +p287876 +sg225240 +g27 +sg225234 +S'(artist)' +p287877 +sg225230 +S'Drey Beschreibungen, Erstens: Das Koniglichen Einzugs,...' +p287878 +sg225236 +S'\n' +p287879 +sa(dp287880 +g225232 +S'Christian Rieger' +p287881 +sg225240 +g27 +sg225234 +S', published 1756' +p287882 +sg225230 +S'Universae Architecturae Civilis Elementa...; Materia Tentaminis Publici...' +p287883 +sg225236 +S'\n' +p287884 +sa(dp287885 +g225232 +S'Artist Information (' +p287886 +sg225240 +g27 +sg225234 +S'(artist)' +p287887 +sg225230 +S"Studio d'Architettura Civile sopra gli Ornamenti di Porte e Finestre tratti da alcune Fabbriche insigni di Roma con le Misure Piante Modini, e Profili Opera De Piv Celebri Architetti De Nostri Tempi...Parte Prima" +p287888 +sg225236 +S'\n' +p287889 +sa(dp287890 +g225232 +S'Artist Information (' +p287891 +sg225240 +g27 +sg225234 +S'(artist)' +p287892 +sg225230 +S"Studio d'Architettura Civile sopra varj Ornamenti di Cappelle, e diuersi Sepolcri Tratti da piu Chiese Roma Colle loro Facciate, Fianchi, Piante e Misure...Parte Seconda; Studio D'Architettura Civile Sopra varie Chiese, Capelle di Roma...Parte Terza" +p287893 +sg225236 +S'\n' +p287894 +sa(dp287895 +g225232 +S'Artist Information (' +p287896 +sg225240 +g27 +sg225234 +S'(artist)' +p287897 +sg225230 +S'Insignium Rome Templorum Prospectus Exteriores Interioresque...; Disegni di Vari Altari e Cappelle Nelle Chiese Di Roma...' +p287898 +sg225236 +S'\n' +p287899 +sa(dp287900 +g225232 +S'Artist Information (' +p287901 +sg225240 +g27 +sg225234 +S'(artist)' +p287902 +sg225230 +S'Scelta di Architetture Antiche e Moderne della Citt\xc3\xa0 di Firenze Opera Gi\xc3\xa0 Data in Luce, Misurata, Disegnata, Ed Intagliata Dal Celebre Ferdinando Ruggieri Architetto Fiorentino Edizione Seconda...Tome Primo...' +p287903 +sg225236 +S'\n' +p287904 +sa(dp287905 +g225232 +S'Artist Information (' +p287906 +sg225240 +g27 +sg225234 +S'(artist)' +p287907 +sg225230 +S'Scelta di Architetture Antiche e Moderne della Citt\xc3\xa0 di Firenze Opera Gi\xc3\xa0 Data in Luce, Misurata, Disegnata, Ed Intagliata Dal Celebre Ferdinando Ruggieri Architetto Fiorentino Edizione Seconda...Tome Secondo...' +p287908 +sg225236 +S'\n' +p287909 +sa(dp287910 +g225232 +S'Artist Information (' +p287911 +sg225240 +g27 +sg225234 +S'(artist)' +p287912 +sg225230 +S'Scelta di Architetture Antiche e Moderne della Citt\xc3\xa0 di Firenze Opera Gi\xc3\xa0 Data in Luce, Misurata, Disegnata, Ed Intagliata Dal Celebre Ferdinando Ruggieri Architetto Fiorentino Edizione Seconda...Tomo Terzo...' +p287913 +sg225236 +S'\n' +p287914 +sa(dp287915 +g225232 +S'Artist Information (' +p287916 +sg225240 +g27 +sg225234 +S'(artist)' +p287917 +sg225230 +S"Piante Ed Alzati Interiori Ed Esterni Dell' Insigne Chiesa Di S. Maria Del Fiore Metropolitana Fiorentina Misurate E Delineati Dal Senatore Gio. Batista Nelli...Tomo Quarto Parte Prima" +p287918 +sg225236 +S'\n' +p287919 +sa(dp287920 +g225232 +S'Artist Information (' +p287921 +sg225240 +g27 +sg225234 +S'(artist)' +p287922 +sg225230 +S'La Libreria Mediceo-Laurenziana Architettura Di Michelagnolo Buonaroti...Tomo Quarto Parte Secondo' +p287923 +sg225236 +S'\n' +p287924 +sa(dp287925 +g225232 +S'Giovanni Battista Nelli' +p287926 +sg225240 +g27 +sg225234 +S', published 1755' +p287927 +sg225230 +S'Pianta Del: La Citt\xc3\xa0 di Firenze nelle sue vere misure colla descrizione dei Luoghi piu notabili di ciascun Quartiere' +p287928 +sg225236 +S'\n' +p287929 +sa(dp287930 +g225232 +S'Luigi Ughi' +p287931 +sg225240 +g27 +sg225234 +S', published 1729' +p287932 +sg225230 +S'[Pianta di Venezia] Iconografica...Consacratta Di Venezia O Veneto' +p287933 +sg225236 +S'\n' +p287934 +sa(dp287935 +g225232 +S'Giovanni Antonio Rusconi' +p287936 +sg225240 +g27 +sg225234 +S', published 1590' +p287937 +sg225230 +S'Della Architettura di Gio. Antonio Rusconi, Con Centosessanta Figure Dissegnate dal Medisimo, Secondo i Precetti di Vitruvio, e con chiarezza, e breuit\xc3\xa0 dichiarate Libri Dieci...' +p287938 +sg225236 +S'\n' +p287939 +sa(dp287940 +g225232 +S'Giovanni Antonio Rusconi' +p287941 +sg225240 +g27 +sg225234 +S', published 1660' +p287942 +sg225230 +S"I Dieci Libri d'Architettura di Gio. Antonio Rusconi. Secondo i precetti di Vitruvio, nouamente ristampati, & accresciuti della Prattica degl' Horologi Solari" +p287943 +sg225236 +S'\n' +p287944 +sa(dp287945 +g225232 +S'Walther Herman Ryff' +p287946 +sg225240 +g27 +sg225234 +S', published 1558' +p287947 +sg225230 +S'Der Architectur f\xc3\xbcr nembsten, notwendigsten, angeh\xc3\xb6rigen Mathematischen und Mechanischen k\xc3\xbcnst, eygentlicher bericht, und verstendliche unterrichtung, zu rechtem verstandt der lehr Vitruuij, in drey f\xc3\xbcrneme B\xc3\xbccher abgetheilet. Als Der newen Perspectiva das. I. Buch....' +p287948 +sg225236 +S'\n' +p287949 +sa(dp287950 +g225232 +S'Artist Information (' +p287951 +sg225240 +g27 +sg225234 +S'(artist)' +p287952 +sg225230 +S"Li Cinque Ordini d'Architettura Civile di Michel Sanmicheli non pi\xc3\xb9 veduti in luce, Ora publicati, ed esposti con quelli di Vitruvio, e d'altri cinque dal Conte Alessandro Pompei" +p287953 +sg225236 +S'\n' +p287954 +sa(dp287955 +g225232 +S'Artist Information (' +p287956 +sg225240 +g27 +sg225234 +S'(author)' +p287957 +sg225230 +S"Discorso sopra l'Antichit\xc3\xa0 di Roma Di Vicenzo Scamozzi Architetto Vicentino con XL. Tavole in Rame" +p287958 +sg225236 +S'\n' +p287959 +sa(dp287960 +g225232 +S'Vincenzo Scamozzi' +p287961 +sg225240 +g27 +sg225234 +S', published 1615' +p287962 +sg225230 +S"L'Idea della Architettura Universale di Vincenzo Scamozzi Architetto Veneto Diuisa in X. Libri. Parte Prima. Dell' Eccellenza di Qvesta Facolta, Degl' Architetti prestani: e Precetti, Inuentioni, Disegni, Modelli & Opere merauigliose. Le qualite de Paesi, e Siti; Le Forme delle Citt\xc3\xa0, e Fortezze reali; e di tutti i Generi d'Edifici Sacri, Publici, e Priuati: Antichi, e proprij dell' Autore. Con i Loro Disegni." +p287963 +sg225236 +S'\n' +p287964 +sa(dp287965 +g225232 +S'Vincenzo Scamozzi' +p287966 +sg225240 +g27 +sg225234 +S', published 1676' +p287967 +sg225230 +S'The Mirror of Architecture: or the Ground-Rules of the Art of Building, Exactly laid down by Vincent Scamozzi Master-Builder of Venice...' +p287968 +sg225236 +S'\n' +p287969 +sa(dp287970 +g225232 +S'Vincenzo Scamozzi' +p287971 +sg225240 +g27 +sg225234 +S', published 1685' +p287972 +sg225230 +S"Les Cinq Ordres d'Architecture de Vincent Scamozzi, Vicentini, Architecte De La Republique De Venise..." +p287973 +sg225236 +S'\n' +p287974 +sa(dp287975 +g225232 +S'Artist Information (' +p287976 +sg225240 +g27 +sg225234 +S'(artist)' +p287977 +sg225230 +S'Ordonnance des Cinq Especes De Colonnes Selon Methode Des Anciens' +p287978 +sg225236 +S'\n' +p287979 +sa(dp287980 +g225232 +S'Peter Schenk' +p287981 +sg225240 +g27 +sg225234 +S', probably 1700' +p287982 +sg225230 +S'Admirandorum Quadruplex Spectaculum; delectum, pictum, et aeri in cisum, per Johannem van Call' +p287983 +sg225236 +S'\n' +p287984 +sa(dp287985 +g225232 +S'Artist Information (' +p287986 +sg225240 +g27 +sg225234 +S'(author)' +p287987 +sg225230 +S'Gr\xc3\xbcndlicher und deutlicher Unterricht, zur Verfertigung der vollst\xc3\xa4ndigen S\xc3\xa4ulen-Ordnung...' +p287988 +sg225236 +S'\n' +p287989 +sa(dp287990 +g225232 +S'Johann Jacob Sch\xc3\xbcbler' +p287991 +sg225240 +g27 +sg225234 +S', published 1763' +p287992 +sg225230 +S'Perspectiva Geometrico-Practica, Welchen nach unterschiedenen Methoden lehret, wie aus sichern Gr\xc3\xbcnden die Militarischen Werke...' +p287993 +sg225236 +S'\n' +p287994 +sa(dp287995 +g225232 +S'Sebastiano Serlio' +p287996 +sg225240 +g27 +sg225234 +S', published 1545/1547' +p287997 +sg225230 +S"Il Primo Libro d'Architettura di Sebastiano Serlio, Bolognese: Il Secondo Libro de Perspettia...; Quinto Libro D'Architettura Di Sebastiano Serlio Bolognese... ..." +p287998 +sg225236 +S'\n' +p287999 +sa(dp288000 +g225232 +S'Sebastiano Serlio' +p288001 +sg225240 +g27 +sg225234 +S', published 1551' +p288002 +sg225230 +S"Il Primo (-quinto) Libro d'Architettura di M. Sebastiano Serlio Bolognese" +p288003 +sg225236 +S'\n' +p288004 +sa(dp288005 +g225232 +S'Sebastiano Serlio' +p288006 +sg225240 +g27 +sg225234 +S', published 1551' +p288007 +sg225230 +S'Extraordinario Libro di Architettura di Sebastiano Serlio, Architetto Del Re Christianissimo, Nel quale si dimonstrano trenta porte di opera Rustica mista con diversi ordini: Et venti di opera dilicata di diverse specie con la scrittura dauanti, che narra il tutto...' +p288008 +sg225236 +S'\n' +p288009 +sa(dp288010 +g225232 +S'Sebastiano Serlio' +p288011 +sg225240 +g27 +sg225234 +S', published 1569' +p288012 +sg225230 +S"Sebastiani Serlii Bononiensis de Architectura Libri Qinque, Quibus cuncta fer\xc3\xa8 Architectonica facultatis mysteria doct\xc3\xa8, perspicu\xc3\xa8, vberrine\xc3\xb3, explicantur, A' Ioanne Carolo Saraceno ex Italica in Latinum linguam..." +p288013 +sg225236 +S'\n' +p288014 +sa(dp288015 +g225232 +S'Sebastiano Serlio' +p288016 +sg225240 +g27 +sg225234 +S', published 1584' +p288017 +sg225230 +S"Tutte l'Opere d'Architettura di Sebastiano Serlio Bolognese..." +p288018 +sg225236 +S'\n' +p288019 +sa(dp288020 +g225232 +S'Sebastiano Serlio' +p288021 +sg225240 +g27 +sg225234 +S', published 1600' +p288022 +sg225230 +S"Tutte l'Opere d'Architettura et Prospetiva Di Sebastiano Serlio..." +p288023 +sg225236 +S'\n' +p288024 +sa(dp288025 +g225232 +S'Sebastiano Serlio' +p288026 +sg225240 +g27 +sg225234 +S', published 1611' +p288027 +sg225230 +S'The First (-fifth) Booke of Architecture made by Sebastian Serly entreating of Geometrie' +p288028 +sg225236 +S'\n' +p288029 +sa(dp288030 +g225232 +S'Sebastiano Serlio' +p288031 +sg225240 +g27 +sg225234 +S', published 1609' +p288032 +sg225230 +S'Seb. Serlii von der Architectur F\xc3\xbcnff B\xc3\xbccher...' +p288033 +sg225236 +S'\n' +p288034 +sa(dp288035 +g225232 +S'Sebastiano Serlio' +p288036 +sg225240 +g27 +sg225234 +S', published 1609' +p288037 +sg225230 +S'Seb. Serlii von der Architectur F\xc3\xbcnff B\xc3\xbccher...' +p288038 +sg225236 +S'\n' +p288039 +sa(dp288040 +g225232 +S'Johann Wilhelm' +p288041 +sg225240 +g27 +sg225234 +S', probably 1670' +p288042 +sg225230 +S'Architectura Civilis Oder Beschreibung und Vorreissung Vieler Vornehmer Tachwerck...' +p288043 +sg225236 +S'\n' +p288044 +sa(dp288045 +g225232 +S'Artist Information (' +p288046 +sg225240 +g27 +sg225234 +S'(artist)' +p288047 +sg225230 +S"La Sontuosa illuminazione della citta di Torino per l'Augusto Sposalizio..." +p288048 +sg225236 +S'\n' +p288049 +sa(dp288050 +g225232 +S'Artist Information (' +p288051 +sg225240 +g27 +sg225234 +S'(artist)' +p288052 +sg225230 +S"Plans et Dessins Tir\xc3\xa9s de la Belle Architecture ou Representations D'Edifices execut\xc3\xa9s ou projett\xc3\xa9s en 115 Planches avec les Explications n\xc3\xa9cessaires Le tout accompagn\xc3\xa9 d'un Trai\xc3\xa9 abr\xc3\xa9g\xc3\xa9 sur le Beau dans l'Architecture par Dr. C.L. Stieglitz" +p288053 +sg225236 +S'\n' +p288054 +sa(dp288055 +g225232 +S'Leonhardt Christoph Sturm' +p288056 +sg225240 +g27 +sg225234 +S', published 1718/1721' +p288057 +sg225230 +S'Vollst\xc3\xa4ndige M\xc3\xbchlen Baukunst...; Leonhard Christoph Sturms Vollst\xc3\xa4ndige Anweisung Wasser-K\xc3\xbcnste, Wasserleitungen, brunnen und listernen wohl anzugeben...; Leonhard Christoph Sturms Vollst\xc3\xa4ndige Anleitung Schiff-H\xc3\xa4user oder Arsenale und Anfuhrten oder See-H\xc3\xa4sen geh\xc3\xb6rig anzugeben...' +p288058 +sg225236 +S'\n' +p288059 +sa(dp288060 +g225232 +S'Artist Information (' +p288061 +sg225240 +g27 +sg225234 +S'(artist)' +p288062 +sg225230 +S'Aedes Barberinae ad Quirinalem a Comite Hieronymo Tetio Descriptae...' +p288063 +sg225236 +S'\n' +p288064 +sa(dp288065 +g225232 +S'Vignola' +p288066 +sg225240 +g27 +sg225234 +S', probably 1570' +p288067 +sg225230 +S"Regola delli Cinque Ordini d'Architettura Di M. Iacomo Barozzio Da Vignola" +p288068 +sg225236 +S'\n' +p288069 +sa(dp288070 +g225232 +S'Vignola' +p288071 +sg225240 +g27 +sg225234 +S', published 1617/1650' +p288072 +sg225230 +S"Regola delli Cinque Ordini d'Architettura Di M. Iacomo Barozzio Da Vignola. Libro Primo, Et Originale; Alcune Opere D'Architettura Di Iacomo Barotio Da Vignola Raccolte et poste in luce da Francesco Villamena" +p288073 +sg225236 +S'\n' +p288074 +sa(dp288075 +g225232 +S'Vignola' +p288076 +sg225240 +g27 +sg225234 +S', published 1619' +p288077 +sg225230 +S"Regola delli Cinque Ordini d'Architettura Di M. Giacomo Barozzio Da Vignola. Con la Nuova aggionta de Michel-Angelo Buonaroti..." +p288078 +sg225236 +S'\n' +p288079 +sa(dp288080 +g225232 +S'Bernardino Radi' +p288081 +sg225240 +g27 +sg225234 +S', published 1625' +p288082 +sg225230 +S'Varie Inventioni per Depositi di Bernardino Radi Cortonese' +p288083 +sg225236 +S'\n' +p288084 +sa(dp288085 +g225232 +S'Valerien Regnard' +p288086 +sg225240 +g27 +sg225234 +S', unknown date' +p288087 +sg225230 +S'[Roman Facades]' +p288088 +sg225236 +S'\n' +p288089 +sa(dp288090 +g225232 +S'Artist Information (' +p288091 +sg225240 +g27 +sg225234 +S'(artist)' +p288092 +sg225230 +S"Livre Nouveau ou Regles des Cinq Ordres d'Architecture, Par Jacques Barozzio de Vignole...; Recueil Des plus beaux Edifices et Modernes..." +p288093 +sg225236 +S'\n' +p288094 +sa(dp288095 +g225232 +S'Artist Information (' +p288096 +sg225240 +g27 +sg225234 +S'(artist)' +p288097 +sg225230 +S"Il Vignola Illustrato Proposto da Giambattista Spampani, e Carlo Antonini Studenti d'Architettura Dedicato alla Santit\xc3\xa0 di N.S. PP. Clemente XIV. felicemente regnante" +p288098 +sg225236 +S'\n' +p288099 +sa(dp288100 +g225230 +S'Fountain in a Courtyard' +p288101 +sg225232 +S'Charles Louis Cl\xc3\xa9risseau' +p288102 +sg225234 +S'pen and gray ink and watercolor over graphite on laid paper; graphite and brown ink sketches on verso' +p288103 +sg225236 +S'in or before 1768' +p288104 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a0006141.jpg' +p288105 +sg225240 +g27 +sa(dp288106 +g225232 +S'Artist Information (' +p288107 +sg225240 +g27 +sg225234 +S'(artist)' +p288108 +sg225230 +S'Album of Drawings of Rome and the Surrounding Countryside' +p288109 +sg225236 +S'\n' +p288110 +sa(dp288111 +g225230 +S"L'Ordre Corinthian" +p288112 +sg225232 +S'Charles Louis Cl\xc3\xa9risseau' +p288113 +sg225234 +S'pen and gray ink and gray wash over graphite on laid paper' +p288114 +sg225236 +S'in or before 1768' +p288115 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a0006142.jpg' +p288116 +sg225240 +g27 +sa(dp288117 +g225230 +S'The Round Temple on the Piazza Bocca della Verit\xc3\xa0, Rome' +p288118 +sg225232 +S'Joseph-Marie Vien' +p288119 +sg225234 +S'graphite on laid paper' +p288120 +sg225236 +S'1744/1750' +p288121 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a0006143.jpg' +p288122 +sg225240 +g27 +sa(dp288123 +g225230 +S'Ruins of the Imperial Palaces on the Palatine Hill' +p288124 +sg225232 +S'Joseph-Marie Vien' +p288125 +sg225234 +S'graphite on laid paper' +p288126 +sg225236 +S'1744/1750' +p288127 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a0006144.jpg' +p288128 +sg225240 +g27 +sa(dp288129 +g225230 +S'A Roman Street with Monte Cavo in the Distance' +p288130 +sg225232 +S'Joseph-Marie Vien' +p288131 +sg225234 +S'graphite on laid paper' +p288132 +sg225236 +S'1744/1750' +p288133 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a0006145.jpg' +p288134 +sg225240 +g27 +sa(dp288135 +g225230 +S'Landscape with the Church of San Teodoro' +p288136 +sg225232 +S'Joseph-Marie Vien' +p288137 +sg225234 +S'graphite on laid paper' +p288138 +sg225236 +S'1744/1750' +p288139 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a0006146.jpg' +p288140 +sg225240 +g27 +sa(dp288141 +g225230 +S'Walls of Rome with Santa Maria del Popolo in the Distance' +p288142 +sg225232 +S'Joseph-Marie Vien' +p288143 +sg225234 +S'graphite on laid paper' +p288144 +sg225236 +S'1744/1750' +p288145 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a0006147.jpg' +p288146 +sg225240 +g27 +sa(dp288147 +g225230 +S'Arched Passageways of a Ruined Building' +p288148 +sg225232 +S'Joseph-Marie Vien' +p288149 +sg225234 +S'graphite on laid paper' +p288150 +sg225236 +S'1744/1750' +p288151 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a0006148.jpg' +p288152 +sg225240 +g27 +sa(dp288153 +g225230 +S'An Ancient Wall with a Ruined Gate' +p288154 +sg225232 +S'Joseph-Marie Vien' +p288155 +sg225234 +S'graphite on laid paper' +p288156 +sg225236 +S'1744/1750' +p288157 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a0006149.jpg' +p288158 +sg225240 +g27 +sa(dp288159 +g225230 +S'View across the Wall of an Italian Garden' +p288160 +sg225232 +S'Joseph-Marie Vien' +p288161 +sg225234 +S'graphite on laid paper' +p288162 +sg225236 +S'1744/1750' +p288163 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a000614a.jpg' +p288164 +sg225240 +g27 +sa(dp288165 +g225230 +S'Arch of Drusus near the Appian Way' +p288166 +sg225232 +S'Joseph-Marie Vien' +p288167 +sg225234 +S'graphite on laid paper' +p288168 +sg225236 +S'1744/1750' +p288169 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a000614b.jpg' +p288170 +sg225240 +g27 +sa(dp288171 +g225230 +S'Ruins of the Temple of Venus and Rome in the Forum' +p288172 +sg225232 +S'Joseph-Marie Vien' +p288173 +sg225234 +S'graphite on laid paper' +p288174 +sg225236 +S'1744/1750' +p288175 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a000614c.jpg' +p288176 +sg225240 +g27 +sa(dp288177 +g225230 +S"Villa d'Este, Tivoli" +p288178 +sg225232 +S'Joseph-Marie Vien' +p288179 +sg225234 +S'graphite on laid paper' +p288180 +sg225236 +S'1744/1750' +p288181 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a0006140.jpg' +p288182 +sg225240 +g27 +sa(dp288183 +g225230 +S'Casino Farnese on the Palatine Hill, Rome' +p288184 +sg225232 +S'Joseph-Marie Vien' +p288185 +sg225234 +S'graphite on laid paper' +p288186 +sg225236 +S'1744/1750' +p288187 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a000619a.jpg' +p288188 +sg225240 +g27 +sa(dp288189 +g225230 +S'Roman Ruins with a Stand of Cypresses' +p288190 +sg225232 +S'Joseph-Marie Vien' +p288191 +sg225234 +S'graphite on laid paper' +p288192 +sg225236 +S'1744/1750' +p288193 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a000619b.jpg' +p288194 +sg225240 +g27 +sa(dp288195 +g225230 +S'Roman Walls' +p288196 +sg225232 +S'Joseph-Marie Vien' +p288197 +sg225234 +S'graphite on laid paper' +p288198 +sg225236 +S'1744/1750' +p288199 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a000619c.jpg' +p288200 +sg225240 +g27 +sa(dp288201 +g225230 +S'Entrance to a Walled Garden' +p288202 +sg225232 +S'Joseph-Marie Vien' +p288203 +sg225234 +S'graphite on laid paper' +p288204 +sg225236 +S'1744/1750' +p288205 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061aa.jpg' +p288206 +sg225240 +g27 +sa(dp288207 +g225230 +S'House and Trees across a Garden Wall' +p288208 +sg225232 +S'Joseph-Marie Vien' +p288209 +sg225234 +S'graphite on laid paper' +p288210 +sg225236 +S'1744/1750' +p288211 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a000619d.jpg' +p288212 +sg225240 +g27 +sa(dp288213 +g225230 +S'Portico of the Palazzo Nuovo, on the Campidoglio' +p288214 +sg225232 +S'Joseph-Marie Vien' +p288215 +sg225234 +S'graphite on laid paper' +p288216 +sg225236 +S'1744/1750' +p288217 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061ab.jpg' +p288218 +sg225240 +g27 +sa(dp288219 +g225230 +S'Loggia and Statuary in an Italian Garden' +p288220 +sg225232 +S'Joseph-Marie Vien' +p288221 +sg225234 +S'graphite on laid paper' +p288222 +sg225236 +S'1744/1750' +p288223 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a000619e.jpg' +p288224 +sg225240 +g27 +sa(dp288225 +g225230 +S'Terrace by a River with a Villa and Trees Beyond' +p288226 +sg225232 +S'Joseph-Marie Vien' +p288227 +sg225234 +S'graphite on laid paper' +p288228 +sg225236 +S'1744/1750' +p288229 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a000619f.jpg' +p288230 +sg225240 +g27 +sa(dp288231 +g225230 +S'The Fishpond at Villa Madama' +p288232 +sg225232 +S'Joseph-Marie Vien' +p288233 +sg225234 +S'black chalk on laid paper' +p288234 +sg225236 +S'1746/1749' +p288235 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00060/a00060bb.jpg' +p288236 +sg225240 +g27 +sa(dp288237 +g225230 +S'Roman Rooftops' +p288238 +sg225232 +S'Joseph-Marie Vien' +p288239 +sg225234 +S'graphite on laid paper' +p288240 +sg225236 +S'1744/1750' +p288241 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061a8.jpg' +p288242 +sg225240 +g27 +sa(dp288243 +g225230 +S'A Stone Bridge and the Fortified Entrance to a Town' +p288244 +sg225232 +S'Joseph-Marie Vien' +p288245 +sg225234 +S'graphite on laid paper' +p288246 +sg225236 +S'1744/1750' +p288247 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061a9.jpg' +p288248 +sg225240 +g27 +sa(dp288249 +g225230 +S"Fountain of Pomona in the Gardens of the Villa d'Este, Tivoli" +p288250 +sg225232 +S'Joseph-Marie Vien' +p288251 +sg225234 +S'graphite on laid paper' +p288252 +sg225236 +S'1744/1750' +p288253 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061ac.jpg' +p288254 +sg225240 +g27 +sa(dp288255 +g225230 +S"Saint Peter's Basilica and the Papal Palace" +p288256 +sg225232 +S'Joseph-Marie Vien' +p288257 +sg225234 +S'black chalk on laid paper' +p288258 +sg225236 +S'1746/1749' +p288259 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00060/a00060bc.jpg' +p288260 +sg225240 +g27 +sa(dp288261 +g225230 +S'View of the Prato of the Villa Borghese' +p288262 +sg225232 +S'Joseph-Marie Vien' +p288263 +sg225234 +S'graphite on laid paper' +p288264 +sg225236 +S'1744/1750' +p288265 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061ad.jpg' +p288266 +sg225240 +g27 +sa(dp288267 +g225230 +S'Houses in Italy' +p288268 +sg225232 +S'Joseph-Marie Vien' +p288269 +sg225234 +S'graphite on laid paper' +p288270 +sg225236 +S'1744/1750' +p288271 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061ae.jpg' +p288272 +sg225240 +g27 +sa(dp288273 +g225230 +S'Italian Farm Buildings by a Stream' +p288274 +sg225232 +S'Joseph-Marie Vien' +p288275 +sg225234 +S'graphite on laid paper' +p288276 +sg225236 +S'1744/1750' +p288277 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061af.jpg' +p288278 +sg225240 +g27 +sa(dp288279 +g225230 +S"A Building on a Hill with Saint Peter's in the Distance" +p288280 +sg225232 +S'Joseph-Marie Vien' +p288281 +sg225234 +S'graphite on laid paper' +p288282 +sg225236 +S'1744/1750' +p288283 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061b0.jpg' +p288284 +sg225240 +g27 +sa(dp288285 +g225230 +S"The Water Organ in the Gardens of the Villa d'Este, Tivoli" +p288286 +sg225232 +S'Joseph-Marie Vien' +p288287 +sg225234 +S'graphite on laid paper' +p288288 +sg225236 +S'1744/1750' +p288289 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061b1.jpg' +p288290 +sg225240 +g27 +sa(dp288291 +g225230 +S'Trees Screening a House Built on Ancient Ruins' +p288292 +sg225232 +S'Joseph-Marie Vien' +p288293 +sg225234 +S'graphite on laid paper' +p288294 +sg225236 +S'1744/1750' +p288295 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061b5.jpg' +p288296 +sg225240 +g27 +sa(dp288297 +g225230 +S'Corner of an Italian Garden with a Church Beyond' +p288298 +sg225232 +S'Joseph-Marie Vien' +p288299 +sg225234 +S'graphite on laid paper; tree study on verso' +p288300 +sg225236 +S'1744/1750' +p288301 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061b2.jpg' +p288302 +sg225240 +g27 +sa(dp288303 +g225230 +S'An Italian Town with a Stone Bridge and a Waterfall' +p288304 +sg225232 +S'Joseph-Marie Vien' +p288305 +sg225234 +S'graphite on laid paper' +p288306 +sg225236 +S'1744/1750' +p288307 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061b3.jpg' +p288308 +sg225240 +g27 +sa(dp288309 +g225230 +S'A Fortified Town in Italy' +p288310 +sg225232 +S'Joseph-Marie Vien' +p288311 +sg225234 +S'graphite on laid paper' +p288312 +sg225236 +S'1744/1750' +p288313 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061b4.jpg' +p288314 +sg225240 +g27 +sa(dp288315 +g225230 +S'Italian Buildings on a Hillside' +p288316 +sg225232 +S'Joseph-Marie Vien' +p288317 +sg225234 +S'graphite on laid paper' +p288318 +sg225236 +S'1744/1750' +p288319 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061b6.jpg' +p288320 +sg225240 +g27 +sa(dp288321 +g225230 +S'Trees' +p288322 +sg225232 +S'Joseph-Marie Vien' +p288323 +sg225234 +S'graphite on laid paper' +p288324 +sg225236 +S'1744/1750' +p288325 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061b7.jpg' +p288326 +sg225240 +g27 +sa(dp288327 +g225230 +S'Rooftops and Umbrella Pines' +p288328 +sg225232 +S'Joseph-Marie Vien' +p288329 +sg225234 +S'graphite on laid paper' +p288330 +sg225236 +S'1744/1750' +p288331 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061b8.jpg' +p288332 +sg225240 +g27 +sa(dp288333 +g225230 +S'Houses and a Garden on a Hillside in Italy' +p288334 +sg225232 +S'Joseph-Marie Vien' +p288335 +sg225234 +S'graphite on laid paper' +p288336 +sg225236 +S'1744/1750' +p288337 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061b9.jpg' +p288338 +sg225240 +g27 +sa(dp288339 +g225230 +S'Houses on the North Side of the Forum with the Basilica of Maxentius Beyond' +p288340 +sg225232 +S'Joseph-Marie Vien' +p288341 +sg225234 +S'black chalk on laid paper' +p288342 +sg225236 +S'1746/1749' +p288343 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00060/a00060bd.jpg' +p288344 +sg225240 +g27 +sa(dp288345 +g225230 +S'The Forno inside the Walls of the Vatican' +p288346 +sg225232 +S'Joseph-Marie Vien' +p288347 +sg225234 +S'graphite on laid paper' +p288348 +sg225236 +S'1744/1750' +p288349 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061bf.jpg' +p288350 +sg225240 +g27 +sa(dp288351 +g225230 +S'The Grotto of the Nymph Egeria' +p288352 +sg225232 +S'Joseph-Marie Vien' +p288353 +sg225234 +S'graphite on laid paper' +p288354 +sg225236 +S'1744/1750' +p288355 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061ba.jpg' +p288356 +sg225240 +g27 +sa(dp288357 +g225230 +S'Houses beside a Road in Italy' +p288358 +sg225232 +S'Joseph-Marie Vien' +p288359 +sg225234 +S'graphite on laid paper' +p288360 +sg225236 +S'1744/1750' +p288361 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061ed.jpg' +p288362 +sg225240 +g27 +sa(dp288363 +g225230 +S'Entrance to the Gardens of the Villa Giulia' +p288364 +sg225232 +S'Joseph-Marie Vien' +p288365 +sg225234 +S'black chalk on laid paper' +p288366 +sg225236 +S'1746/1749' +p288367 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00060/a000607a.jpg' +p288368 +sg225240 +g27 +sa(dp288369 +g225230 +S"Castel Sant'Angelo from the Northwest" +p288370 +sg225232 +S'Joseph-Marie Vien' +p288371 +sg225234 +S'graphite on laid paper' +p288372 +sg225236 +S'1744/1750' +p288373 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061bc.jpg' +p288374 +sg225240 +g27 +sa(dp288375 +g225230 +S'Landscape in the Alban Hills' +p288376 +sg225232 +S'Joseph-Marie Vien' +p288377 +sg225234 +S'graphite on laid paper' +p288378 +sg225236 +S'1744/1750' +p288379 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061bb.jpg' +p288380 +sg225240 +g27 +sa(dp288381 +g225230 +S'A Towering Tree with Travelers' +p288382 +sg225232 +S'Joseph-Marie Vien' +p288383 +sg225234 +S'black chalk on laid paper' +p288384 +sg225236 +S'1746/1749' +p288385 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00060/a00060be.jpg' +p288386 +sg225240 +g27 +sa(dp288387 +g225230 +S"The Ponte Sant'Angelo and Houses on the East Bank of the Tiber" +p288388 +sg225232 +S'Joseph-Marie Vien' +p288389 +sg225234 +S'graphite on laid paper' +p288390 +sg225236 +S'1744/1750' +p288391 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061bd.jpg' +p288392 +sg225240 +g27 +sa(dp288393 +g225230 +S'Buildings behind the Vatican' +p288394 +sg225232 +S'Joseph-Marie Vien' +p288395 +sg225234 +S'graphite on laid paper' +p288396 +sg225236 +S'1744/1750' +p288397 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061c0.jpg' +p288398 +sg225240 +g27 +sa(dp288399 +g225230 +S'A Waterfall near a Hilltown in Italy' +p288400 +sg225232 +S'Joseph-Marie Vien' +p288401 +sg225234 +S'graphite on laid paper' +p288402 +sg225236 +S'1744/1750' +p288403 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061be.jpg' +p288404 +sg225240 +g27 +sa(dp288405 +g225230 +S'A High Bridge in Tivoli' +p288406 +sg225232 +S'Joseph-Marie Vien' +p288407 +sg225234 +S'graphite on laid paper' +p288408 +sg225236 +S'1744/1750' +p288409 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061ee.jpg' +p288410 +sg225240 +g27 +sa(dp288411 +g225230 +S'Gardens of an Italian Villa' +p288412 +sg225232 +S'Joseph-Marie Vien' +p288413 +sg225234 +S'graphite on laid paper' +p288414 +sg225236 +S'1744/1750' +p288415 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061ef.jpg' +p288416 +sg225240 +g27 +sa(dp288417 +g225230 +S'A Balcony in the Roman Forum' +p288418 +sg225232 +S'Joseph-Marie Vien' +p288419 +sg225234 +S'graphite on laid paper' +p288420 +sg225236 +S'1744/1750' +p288421 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061c2.jpg' +p288422 +sg225240 +g27 +sa(dp288423 +g225230 +S'Roman Buildings with an Open Shed' +p288424 +sg225232 +S'Joseph-Marie Vien' +p288425 +sg225234 +S'graphite on laid paper' +p288426 +sg225236 +S'1744/1750' +p288427 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061c1.jpg' +p288428 +sg225240 +g27 +sa(dp288429 +g225232 +S'Artist Information (' +p288430 +sg225240 +g27 +sg225234 +S'(author)' +p288431 +sg225230 +S'Ausf\xc3\xbchrliche Anleitung zu der ganzen Civil-Bau-Kunst, worinnen Nebst denen Lebens-Beschreibungen, und den f\xc3\xbcnf Ordnungen von J. Bar. de Vignola Wie auch dessen und des ber\xc3\xbchmten Mich. Angelo vornehmsten Gab\xc3\xa4uden,...' +p288432 +sg225236 +S'\n' +p288433 +sa(dp288434 +g225232 +S"Augustin-Charles d'Aviler" +p288435 +sg225240 +g27 +sg225234 +S', published 1759' +p288436 +sg225230 +S'Ausf\xc3\xbchrliche Anleitung zu der ganzen Civil-Bau-Kunst, worinnen Nebst denen Lebens-Beschreibungen, und den f\xc3\xbcnf Ordnungen von J. Bar. de Vignola Wie auch dessen und des ber\xc3\xbchmten Mich. Angelo vornehmsten Gab\xc3\xa4uden,...' +p288437 +sg225236 +S'\n' +p288438 +sa(dp288439 +g225232 +S'Roy Lichtenstein' +p288440 +sg225240 +S"Cubist Still Life\n In its careful reconstruction of the essential elements of cubist still life, Lichtenstein's\n painting represents a considered tribute to the cubist masters. But as is characteristic of American\n pop art, the tribute is rendered in the form of a send-up. As closely as Lichtenstein hews to the\n conventions of cubism, in its distinctive style, scale, and wit, \n " +p288441 +sg225234 +S'oil and Magna on canvas' +p288442 +sg225230 +S'Cubist Still Life' +p288443 +sg225236 +S'1974' +p288444 +sa(dp288445 +g225230 +S'Rocklined Beach with Distant Boats' +p288446 +sg225232 +S'William Stanley Haseltine' +p288447 +sg225234 +S'pen and black ink with graphite and gray wash' +p288448 +sg225236 +S'probably 1860/1869' +p288449 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000eb/a000eba0.jpg' +p288450 +sg225240 +g27 +sa(dp288451 +g225230 +S'Market Scene with a Fantastic Sculpture' +p288452 +sg225232 +S'Jean-Baptiste H\xc3\xbcet' +p288453 +sg225234 +S', 1797/1798' +p288454 +sg225236 +S'\n' +p288455 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00025/a0002558.jpg' +p288456 +sg225240 +g27 +sa(dp288457 +g225230 +S'View of Ceriana' +p288458 +sg225232 +S'Edward Lear' +p288459 +sg225234 +S'pen and brown ink over graphite' +p288460 +sg225236 +S'1870' +p288461 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00069/a0006975.jpg' +p288462 +sg225240 +g27 +sa(dp288463 +g225230 +S'Pagoda Flowers and Roses' +p288464 +sg225232 +S'Jean-Baptiste Pillement' +p288465 +sg225234 +S'black and red chalk on laid paper' +p288466 +sg225236 +S'unknown date\n' +p288467 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00026/a00026ce.jpg' +p288468 +sg225240 +g27 +sa(dp288469 +g225230 +S'Bamboo Flowers and Cactus' +p288470 +sg225232 +S'Jean-Baptiste Pillement' +p288471 +sg225234 +S'black and red chalk on laid paper' +p288472 +sg225236 +S'unknown date\n' +p288473 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00026/a00026cf.jpg' +p288474 +sg225240 +g27 +sa(dp288475 +g225230 +S'Trumpet Flowers and Daisies' +p288476 +sg225232 +S'Jean-Baptiste Pillement' +p288477 +sg225234 +S'black and red chalk on laid paper' +p288478 +sg225236 +S'unknown date\n' +p288479 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00026/a00026d0.jpg' +p288480 +sg225240 +g27 +sa(dp288481 +g225230 +S'Rocky Landscape with a Rustic House' +p288482 +sg225232 +S'Salvator Rosa' +p288483 +sg225234 +S'pen and brown ink' +p288484 +sg225236 +S'unknown date\n' +p288485 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074ca.jpg' +p288486 +sg225240 +g27 +sa(dp288487 +g225230 +S'Mawddach Falls near Dolgelly' +p288488 +sg225232 +S'John Webber' +p288489 +sg225234 +S'watercolor over graphite' +p288490 +sg225236 +S'1790' +p288491 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00069/a0006967.jpg' +p288492 +sg225240 +g27 +sa(dp288493 +g225230 +S'Caritas' +p288494 +sg225232 +S'Francisco de Goya' +p288495 +sg225234 +S'etching and drypoint on thin laid paper [second edition impression probably printed circa 1920-1930]' +p288496 +sg225236 +S'unknown date\n' +p288497 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ed/a000ed56.jpg' +p288498 +sg225240 +g27 +sa(dp288499 +g225230 +S'Imaginary Port Scene' +p288500 +sg225232 +S'Pierre Moreau' +p288501 +sg225234 +S'etching on laid paper' +p288502 +sg225236 +S'unknown date\n' +p288503 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c5e.jpg' +p288504 +sg225240 +g27 +sa(dp288505 +g225230 +S'Funeral Scene in Imaginary Architecture' +p288506 +sg225232 +S'Pierre Moreau' +p288507 +sg225234 +S'etching on laid paper' +p288508 +sg225236 +S'unknown date\n' +p288509 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c5d.jpg' +p288510 +sg225240 +g27 +sa(dp288511 +g225230 +S'Diana at the Bath' +p288512 +sg225232 +S'Rembrandt van Rijn' +p288513 +sg225234 +S'etching on laid paper' +p288514 +sg225236 +S'c. 1631' +p288515 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d330.jpg' +p288516 +sg225240 +g27 +sa(dp288517 +g225230 +S'Diogenes Casting away his Bowl' +p288518 +sg225232 +S'Salvator Rosa' +p288519 +sg225234 +S'etching on laid paper' +p288520 +sg225236 +S'1662' +p288521 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca2e.jpg' +p288522 +sg225240 +g27 +sa(dp288523 +g225230 +S"Plato's Cave" +p288524 +sg225232 +S'Artist Information (' +p288525 +sg225234 +S'(artist after)' +p288526 +sg225236 +S'\n' +p288527 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d073.jpg' +p288528 +sg225240 +g27 +sa(dp288529 +g225230 +S'The Stoning of Saint Stephen' +p288530 +sg225232 +S'Giovanni Domenico Tiepolo' +p288531 +sg225234 +S'etching on laid paper' +p288532 +sg225236 +S'unknown date\n' +p288533 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc47.jpg' +p288534 +sg225240 +g27 +sa(dp288535 +g225230 +S'River Landscape with Two Beavers' +p288536 +sg225232 +S'Max Joseph Wagenbauer' +p288537 +sg225234 +S'lithograph on wove paper' +p288538 +sg225236 +S'1807' +p288539 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3e0.jpg' +p288540 +sg225240 +g27 +sa(dp288541 +g225230 +S'Marengo' +p288542 +sg225232 +S'James Ward' +p288543 +sg225234 +S'lithograph on chine applique' +p288544 +sg225236 +S'1824' +p288545 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00081/a00081ee.jpg' +p288546 +sg225240 +g27 +sa(dp288547 +g225230 +S'Cow Lowing over a Fence' +p288548 +sg225232 +S'Christophe Fratin' +p288549 +sg225234 +S'bronze' +p288550 +sg225236 +S'model c. 1845/1864, cast possibly by 1865' +p288551 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00034/a0003408.jpg' +p288552 +sg225240 +g27 +sa(dp288553 +g225230 +S'Woman Bathing Her Foot' +p288554 +sg225232 +S'Barth\xc3\xa9lemy Prieur' +p288555 +sg225234 +S'bronze' +p288556 +sg225236 +S'early 17th century' +p288557 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002da3.jpg' +p288558 +sg225240 +g27 +sa(dp288559 +g225232 +S'Artist Information (' +p288560 +sg225240 +g27 +sg225234 +S'(author)' +p288561 +sg225230 +S'Anthologia gnomica' +p288562 +sg225236 +S'\n' +p288563 +sa(dp288564 +g225232 +S'Artist Information (' +p288565 +sg225240 +g27 +sg225234 +S'(author)' +p288566 +sg225230 +S'Oeuvres de Nicolas Boileau Despreaux (volume I)' +p288567 +sg225236 +S'\n' +p288568 +sa(dp288569 +g225232 +S'Artist Information (' +p288570 +sg225240 +g27 +sg225234 +S'(artist after)' +p288571 +sg225230 +S'Princess Charlotte' +p288572 +sg225236 +S'\n' +p288573 +sa(dp288574 +g225232 +S'Artist Information (' +p288575 +sg225240 +g27 +sg225234 +S'(author)' +p288576 +sg225230 +S'Oeuvres de Nicolas Boileau Despreaux (volume II)' +p288577 +sg225236 +S'\n' +p288578 +sa(dp288579 +g225232 +S'Michael Vinson Clark' +p288580 +sg225240 +g27 +sg225234 +S'graphite' +p288581 +sg225230 +S'Windows' +p288582 +sg225236 +S'c. 1971' +p288583 +sa(dp288584 +g225230 +S"A Baby in a Basket Outdoors (Couverture pour L'Album d'estampes originales)" +p288585 +sg225232 +S'Artist Information (' +p288586 +sg225234 +S'French, 1858 - 1936' +p288587 +sg225236 +S'(printer)' +p288588 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00058/a000580f.jpg' +p288589 +sg225240 +g27 +sa(dp288590 +g225232 +S'Jean Arp' +p288591 +sg225240 +g27 +sg225234 +S'silkscreen in blue, yellow, and gray' +p288592 +sg225230 +S'Aubette' +p288593 +sg225236 +S'1959' +p288594 +sa(dp288595 +g225232 +S'Keith Anden Achepohl' +p288596 +sg225240 +g27 +sg225234 +S'watercolor and colored pencil' +p288597 +sg225230 +S'Egypt, Day and Night: No. 135' +p288598 +sg225236 +S'1978' +p288599 +sa(dp288600 +g225232 +S'Artist Information (' +p288601 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Brown Pelican' +p288602 +sg225236 +S'(publisher)' +p288603 +sa(dp288604 +g225232 +S'Artist Information (' +p288605 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Clipper Ship' +p288606 +sg225236 +S'(publisher)' +p288607 +sa(dp288608 +g225232 +S'Artist Information (' +p288609 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Model T Ford' +p288610 +sg225236 +S'(publisher)' +p288611 +sa(dp288612 +g225232 +S'Artist Information (' +p288613 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Snowy Owl' +p288614 +sg225236 +S'(publisher)' +p288615 +sa(dp288616 +g225232 +S'Artist Information (' +p288617 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Stage Coach' +p288618 +sg225236 +S'(publisher)' +p288619 +sa(dp288620 +g225232 +S'Artist Information (' +p288621 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Always In and Out of Need' +p288622 +sg225236 +S'(publisher)' +p288623 +sa(dp288624 +g225232 +S'Artist Information (' +p288625 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Untitled' +p288626 +sg225236 +S'(publisher)' +p288627 +sa(dp288628 +g225232 +S'Artist Information (' +p288629 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Celia - Amused' +p288630 +sg225236 +S'(publisher)' +p288631 +sa(dp288632 +g225232 +S'Artist Information (' +p288633 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Celia - Adjusting Her Eyelash' +p288634 +sg225236 +S'(publisher)' +p288635 +sa(dp288636 +g225232 +S'Artist Information (' +p288637 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Celia - Reclining' +p288638 +sg225236 +S'(publisher)' +p288639 +sa(dp288640 +g225232 +S'Artist Information (' +p288641 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Celia - Weary' +p288642 +sg225236 +S'(publisher)' +p288643 +sa(dp288644 +g225232 +S'Artist Information (' +p288645 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Henry Geldzahler with Hat' +p288646 +sg225236 +S'(publisher)' +p288647 +sa(dp288648 +g225232 +S'Artist Information (' +p288649 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Two Flags (Whitney Anniversary)' +p288650 +sg225236 +S'(publisher)' +p288651 +sa(dp288652 +g225232 +S'Jasper Johns' +p288653 +sg225240 +g27 +sg225234 +S'lithograph (aluminum) in black on Ivory Nishinouchi Kizuki paper' +p288654 +sg225230 +S'Two Flags' +p288655 +sg225236 +S'1980' +p288656 +sa(dp288657 +g225232 +S'Artist Information (' +p288658 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Blue/Black' +p288659 +sg225236 +S'(publisher)' +p288660 +sa(dp288661 +g225232 +S'Artist Information (' +p288662 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Yellow/Black' +p288663 +sg225236 +S'(publisher)' +p288664 +sa(dp288665 +g225232 +S'Artist Information (' +p288666 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Blue/Red-Orange/Green' +p288667 +sg225236 +S'(publisher)' +p288668 +sa(dp288669 +g225232 +S'Artist Information (' +p288670 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Blue with Black II' +p288671 +sg225236 +S'(publisher)' +p288672 +sa(dp288673 +g225232 +S'Artist Information (' +p288674 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Blue II' +p288675 +sg225236 +S'(publisher)' +p288676 +sa(dp288677 +g225232 +S'Artist Information (' +p288678 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Yellow' +p288679 +sg225236 +S'(publisher)' +p288680 +sa(dp288681 +g225232 +S'Artist Information (' +p288682 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Bull Head I' +p288683 +sg225236 +S'(publisher)' +p288684 +sa(dp288685 +g225232 +S'Artist Information (' +p288686 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Bull Head II' +p288687 +sg225236 +S'(publisher)' +p288688 +sa(dp288689 +g225232 +S'Artist Information (' +p288690 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Bull Head III' +p288691 +sg225236 +S'(publisher)' +p288692 +sa(dp288693 +g225232 +S'Artist Information (' +p288694 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Atascadero II' +p288695 +sg225236 +S'(publisher)' +p288696 +sa(dp288697 +g225232 +S'Artist Information (' +p288698 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Atascadero III' +p288699 +sg225236 +S'(publisher)' +p288700 +sa(dp288701 +g225232 +S'Artist Information (' +p288702 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Help Me Hurt Me' +p288703 +sg225236 +S'(publisher)' +p288704 +sa(dp288705 +g225232 +S'Artist Information (' +p288706 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Coffee Shop at the Chicago Art Institute' +p288707 +sg225236 +S'(publisher)' +p288708 +sa(dp288709 +g225232 +S'Artist Information (' +p288710 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Lizard Cup' +p288711 +sg225236 +S'(publisher)' +p288712 +sa(dp288713 +g225232 +S'Artist Information (' +p288714 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Green Turtle Cup' +p288715 +sg225236 +S'(publisher)' +p288716 +sa(dp288717 +g225232 +S'Artist Information (' +p288718 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Chairs, Table, Rug, Cup' +p288719 +sg225236 +S'(publisher)' +p288720 +sa(dp288721 +g225232 +S'Artist Information (' +p288722 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Frog Cup' +p288723 +sg225236 +S'(publisher)' +p288724 +sa(dp288725 +g225232 +S'Artist Information (' +p288726 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Ossipee' +p288727 +sg225236 +S'(publisher)' +p288728 +sa(dp288729 +g225232 +S'Artist Information (' +p288730 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Moultonville' +p288731 +sg225236 +S'(publisher)' +p288732 +sa(dp288733 +g225232 +S'Artist Information (' +p288734 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Effingham' +p288735 +sg225236 +S'(publisher)' +p288736 +sa(dp288737 +g225232 +S'Artist Information (' +p288738 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Tuftonboro' +p288739 +sg225236 +S'(publisher)' +p288740 +sa(dp288741 +g225232 +S'Artist Information (' +p288742 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Chocorua' +p288743 +sg225236 +S'(publisher)' +p288744 +sa(dp288745 +g225232 +S'Artist Information (' +p288746 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Sanbornville' +p288747 +sg225236 +S'(publisher)' +p288748 +sa(dp288749 +g225230 +S'Shepherds Resting by a Stream' +p288750 +sg225232 +S'Jean-Baptiste Pillement' +p288751 +sg225234 +S'gouache and pastel on linen' +p288752 +sg225236 +S'1779' +p288753 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00037/a00037d7.jpg' +p288754 +sg225240 +g27 +sa(dp288755 +g225232 +S'Ludwig Meidner' +p288756 +sg225240 +g27 +sg225234 +S'graphite' +p288757 +sg225230 +S'Hans Freimark' +p288758 +sg225236 +S'1915' +p288759 +sa(dp288760 +g225230 +S'Allegory on the Turkish Wars' +p288761 +sg225232 +S'Hans von Aachen' +p288762 +sg225234 +S'pen and brown and black inks with watercolor over graphite on laid paper' +p288763 +sg225236 +S'c. 1600' +p288764 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a0007947.jpg' +p288765 +sg225240 +g27 +sa(dp288766 +g225230 +S'Figure Studies' +p288767 +sg225232 +S'Federico Barocci' +p288768 +sg225234 +S'pen and brown ink with brown wash heightened with white over black chalk' +p288769 +sg225236 +S'unknown date\n' +p288770 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00075/a000752f.jpg' +p288771 +sg225240 +g27 +sa(dp288772 +g225230 +S'Anatomical Studies' +p288773 +sg225232 +S'Domenico Beccafumi' +p288774 +sg225234 +S'pen and brown ink with red chalk in another hand' +p288775 +sg225236 +S'unknown date\n' +p288776 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074e8.jpg' +p288777 +sg225240 +g27 +sa(dp288778 +g225230 +S'Venus' +p288779 +sg225232 +S'Sir Edward Coley Burne-Jones' +p288780 +sg225234 +S'graphite' +p288781 +sg225236 +S'unknown date\n' +p288782 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bf1.jpg' +p288783 +sg225240 +g27 +sa(dp288784 +g225230 +S'Orpheus and Eurydice' +p288785 +sg225232 +S'Sir Edward Coley Burne-Jones' +p288786 +sg225234 +S'black and white chalk with traces of graphite on brown paper' +p288787 +sg225236 +S'unknown date\n' +p288788 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c65.jpg' +p288789 +sg225240 +g27 +sa(dp288790 +g225230 +S'Allegorical Figures Seen from Below' +p288791 +sg225232 +S'Domenico Maria Canuti' +p288792 +sg225234 +S'pen and brown ink with red wash, heightened with white, over red chalk' +p288793 +sg225236 +S'unknown date\n' +p288794 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007497.jpg' +p288795 +sg225240 +g27 +sa(dp288796 +g225230 +S'Seated Male Nude [recto]' +p288797 +sg225232 +S'Agostino Carracci' +p288798 +sg225234 +S'pen and brown ink on laid paper' +p288799 +sg225236 +S'1600/1602' +p288800 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074f9.jpg' +p288801 +sg225240 +g27 +sa(dp288802 +g225232 +S'Agostino Carracci' +p288803 +sg225240 +g27 +sg225234 +S'red chalk; pen and brown ink on laid paper' +p288804 +sg225230 +S'Head of an Angel; Two Heads [verso]' +p288805 +sg225236 +S'1600/1602' +p288806 +sa(dp288807 +g225230 +S'Madonna and Child with Saints John and Luke' +p288808 +sg225232 +S'Jean Cousin the Younger' +p288809 +sg225234 +S'pen and black ink with brown wash over red chalk' +p288810 +sg225236 +S'unknown date\n' +p288811 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e73.jpg' +p288812 +sg225240 +g27 +sa(dp288813 +g225230 +S'Two Seated Male Figures' +p288814 +sg225232 +S'Sir Anthony van Dyck' +p288815 +sg225234 +S'pen and black ink on buff laid paper' +p288816 +sg225236 +S'unknown date\n' +p288817 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a000726f.jpg' +p288818 +sg225240 +g27 +sa(dp288819 +g225230 +S'Female Saint Carrying a Banner [recto]' +p288820 +sg225232 +S'Baldassare Franceschini' +p288821 +sg225234 +S'red chalk on laid paper' +p288822 +sg225236 +S'unknown date\n' +p288823 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074ac.jpg' +p288824 +sg225240 +g27 +sa(dp288825 +g225232 +S'Baldassare Franceschini' +p288826 +sg225240 +g27 +sg225234 +S'red chalk; pen and brown ink (in another hand) on laid paper' +p288827 +sg225230 +S'Two Sketches of Male Heads [verso]' +p288828 +sg225236 +S'unknown date\n' +p288829 +sa(dp288830 +g225230 +S'The Apotheosis of San Vitale' +p288831 +sg225232 +S'Ubaldo Gandolfi' +p288832 +sg225234 +S'pen and brown ink with brown wash over black chalk on laid paper' +p288833 +sg225236 +S'1781' +p288834 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fd2.jpg' +p288835 +sg225240 +g27 +sa(dp288836 +g225230 +S'Fancy Pitcher' +p288837 +sg225232 +S'Erasmus Hornick' +p288838 +sg225234 +S'pen and black ink with gray and yellow wash' +p288839 +sg225236 +S'unknown date\n' +p288840 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a0007994.jpg' +p288841 +sg225240 +g27 +sa(dp288842 +g225230 +S'Allegory of Summer' +p288843 +sg225232 +S'Koloman Moser' +p288844 +sg225234 +S'pen and India ink with black wash and graphite on five sheets of thin graph paper; partially squaredin graphite' +p288845 +sg225236 +S'in or after 1896' +p288846 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00069/a00069b8.jpg' +p288847 +sg225240 +g27 +sa(dp288848 +g225230 +S'The Peep-Show' +p288849 +sg225232 +S'Pietro Antonio Novelli' +p288850 +sg225234 +S'pen and brown ink with gray and brown wash over black chalk on laid paper' +p288851 +sg225236 +S'c. 1770' +p288852 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00026/a000260a.jpg' +p288853 +sg225240 +g27 +sa(dp288854 +g225230 +S'Travellers among Roman Ruins' +p288855 +sg225232 +S'Pieter Stevens' +p288856 +sg225234 +S'pen and brown ink with red-brown and blue wash, incised for transfer' +p288857 +sg225236 +S'unknown date\n' +p288858 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005bce.jpg' +p288859 +sg225240 +g27 +sa(dp288860 +g225230 +S'Travellers among Roman Ruins' +p288861 +sg225232 +S'Pieter Stevens' +p288862 +sg225234 +S'pen and brown ink with red-brown and blue wash, indented with stylus' +p288863 +sg225236 +S'unknown date\n' +p288864 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d39.jpg' +p288865 +sg225240 +g27 +sa(dp288866 +g225230 +S'View near Rosora di Serra San Quirico' +p288867 +sg225232 +S'Gherardo Cibo' +p288868 +sg225234 +S'pen and brown ink with brown wash heightened in white on blue laid paper' +p288869 +sg225236 +S'unknown date\n' +p288870 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074f8.jpg' +p288871 +sg225240 +g27 +sa(dp288872 +g225230 +S'The Rivals' +p288873 +sg225232 +S'Franz von Stuck' +p288874 +sg225234 +S'brush and black ink over graphite on cardboard' +p288875 +sg225236 +S'unknown date\n' +p288876 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006de5.jpg' +p288877 +sg225240 +g27 +sa(dp288878 +g225230 +S'Studies of Market Figures' +p288879 +sg225232 +S'David Teniers the Younger' +p288880 +sg225234 +S'graphite' +p288881 +sg225236 +S'unknown date\n' +p288882 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d0b.jpg' +p288883 +sg225240 +g27 +sa(dp288884 +g225230 +S'The Martyrdom of Saint Apollonia' +p288885 +sg225232 +S'Jacopo Zucchi' +p288886 +sg225234 +S'pen and brown ink with brown wash heightened with white over black chalk on laid paper' +p288887 +sg225236 +S'unknown date\n' +p288888 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00028/a00028f0.jpg' +p288889 +sg225240 +g27 +sa(dp288890 +g225230 +S'Paul Mellon' +p288891 +sg225232 +S'William Franklin Draper' +p288892 +sg225234 +S'oil on canvas' +p288893 +sg225236 +S'1974' +p288894 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a0000081.jpg' +p288895 +sg225240 +S"Son of the National Gallery's founder and the brother of Ailsa Mellon \n Bruce, \n William Franklin Draper, navy combat artist during World War II and later a successful portrait \n painter, animated his portrayal of Paul Mellon with rapid, slashing strokes of the brush.\n " +p288896 +sa(dp288897 +g225232 +S'Henrietta Hoopes Heath' +p288898 +sg225240 +g27 +sg225234 +S'oil and egg tempera on canvas' +p288899 +sg225230 +S'Huntington Cairns' +p288900 +sg225236 +S'1982' +p288901 +sa(dp288902 +g225230 +S'Number 7, 1951' +p288903 +sg225232 +S'Jackson Pollock' +p288904 +sg225234 +S'enamel on canvas' +p288905 +sg225236 +S'1951' +p288906 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001c5.jpg' +p288907 +sg225240 +g27 +sa(dp288908 +g225230 +S'The Dancers' +p288909 +sg225232 +S'George Segal' +p288910 +sg225234 +S'bronze with white patina' +p288911 +sg225236 +S'model 1971, cast 1982' +p288912 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00016/a00016a6.jpg' +p288913 +sg225240 +g27 +sa(dp288914 +g225230 +S'Mrs. Richard Brinsley Sheridan' +p288915 +sg225232 +S'Artist Information (' +p288916 +sg225234 +S'(artist after)' +p288917 +sg225236 +S'\n' +p288918 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dc3.jpg' +p288919 +sg225240 +g27 +sa(dp288920 +g225230 +S'The Maryland Medal: Cecil Calvert, 1605-1675, 2nd Baron of Baltimore 1632, 1st Lord Proprietary of Maryland and Avalon [obverse]' +p288921 +sg225232 +S'British 17th Century' +p288922 +sg225234 +S'overall (diameter): 4.76 cm (1 7/8 in.)\r\ngross weight: 25.01 gr (0.055 lb.)\r\naxis: 12:00' +p288923 +sg225236 +S'\nsilver' +p288924 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d9f.jpg' +p288925 +sg225240 +g27 +sa(dp288926 +g225232 +S'British 17th Century' +p288927 +sg225240 +g27 +sg225234 +S'overall (diameter): 4.76 cm (1 7/8 in.)\r\ngross weight: 25.01 gr (0.055 lb.)\r\naxis: 12:00' +p288928 +sg225230 +S'The Maryland Medal: Anne Arundell of Wardour, c. 1610-1649, Countess of the Holy Roman Empire, Wife of Lord Cecil Calvert 1628, Baroness of Baltimore 1632 [reverse]' +p288929 +sg225236 +S'\nsilver' +p288930 +sa(dp288931 +g225230 +S'Harbor in Holland - Flushing (La balise - En Holland, Flessingue)' +p288932 +sg225232 +S'Paul Signac' +p288933 +sg225234 +S'etching in blue-green on laid paper' +p288934 +sg225236 +S'c. 1894' +p288935 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bb1.jpg' +p288936 +sg225240 +g27 +sa(dp288937 +g225230 +S'Cattle and Figures at a Farmyard Stream' +p288938 +sg225232 +S'Marco Ricci' +p288939 +sg225234 +S'etching on blue laid paper' +p288940 +sg225236 +S'unknown date\n' +p288941 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb59.jpg' +p288942 +sg225240 +g27 +sa(dp288943 +g225230 +S'The Prodigal Son Living with Harlots' +p288944 +sg225232 +S'Artist Information (' +p288945 +sg225234 +S'(artist after)' +p288946 +sg225236 +S'\n' +p288947 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf43.jpg' +p288948 +sg225240 +g27 +sa(dp288949 +g225230 +S'Joseph Awakened by the Angel' +p288950 +sg225232 +S'Giovanni Benedetto Castiglione' +p288951 +sg225234 +S'etching on laid paper' +p288952 +sg225236 +S'1635/1640' +p288953 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a0006575.jpg' +p288954 +sg225240 +g27 +sa(dp288955 +g225230 +S'Antwerp Cathedral' +p288956 +sg225232 +S'Wenceslaus Hollar' +p288957 +sg225234 +S'etching and engraving on laid paper' +p288958 +sg225236 +S'1649' +p288959 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000db/a000db33.jpg' +p288960 +sg225240 +g27 +sa(dp288961 +g225232 +S'Artist Information (' +p288962 +sg225240 +g27 +sg225234 +S'French, active 1860s/1890s' +p288963 +sg225230 +S'Young Woman in Black Stockings (Jeune femme aux bas noirs)' +p288964 +sg225236 +S'(printer)' +p288965 +sa(dp288966 +g225230 +S'Cite Lointaine' +p288967 +sg225232 +S'Rodolphe Bresdin' +p288968 +sg225234 +S'lithograph' +p288969 +sg225236 +S'1868' +p288970 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00098/a0009814.jpg' +p288971 +sg225240 +g27 +sa(dp288972 +g225230 +S'At the Prado (Au Prado)' +p288973 +sg225232 +S'Edouard Manet' +p288974 +sg225234 +S'etching and aquatint' +p288975 +sg225236 +S'1865/1868' +p288976 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a0009954.jpg' +p288977 +sg225240 +g27 +sa(dp288978 +g225230 +S'Saint-Etienne-du-Mont, Paris (Church of St. Stephen of the Mount, Paris)' +p288979 +sg225232 +S'Charles Meryon' +p288980 +sg225234 +S'etching on laid paper' +p288981 +sg225236 +S'1852' +p288982 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d12.jpg' +p288983 +sg225240 +g27 +sa(dp288984 +g225230 +S'La Modiste (The Milliner)' +p288985 +sg225232 +S'F\xc3\xa9lix Vallotton' +p288986 +sg225234 +S'woodcut on wove paper' +p288987 +sg225236 +S'1894' +p288988 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef66.jpg' +p288989 +sg225240 +g27 +sa(dp288990 +g225232 +S'Artist Information (' +p288991 +sg225240 +g27 +sg225234 +S'Italian, 1544 - 1595' +p288992 +sg225230 +S'La Gerusalemme liberata di Torquanto Tasso' +p288993 +sg225236 +S'(author)' +p288994 +sa(dp288995 +g225230 +S'Comedie de la Mort' +p288996 +sg225232 +S'Rodolphe Bresdin' +p288997 +sg225234 +S'lithograph' +p288998 +sg225236 +S'1854' +p288999 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f092.jpg' +p289000 +sg225240 +g27 +sa(dp289001 +g225230 +S'Samson and Delilah' +p289002 +sg225232 +S'Artist Information (' +p289003 +sg225234 +S'(artist after)' +p289004 +sg225236 +S'\n' +p289005 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8a5.jpg' +p289006 +sg225240 +g27 +sa(dp289007 +g225230 +S'Saint Amond' +p289008 +sg225232 +S'Jacques Callot' +p289009 +sg225234 +S'etching on laid paper' +p289010 +sg225236 +S'1621' +p289011 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008ad9.jpg' +p289012 +sg225240 +g27 +sa(dp289013 +g225230 +S'Martha Eliza Stevens Edgar Paschall' +p289014 +sg225232 +S'American 19th Century' +p289015 +sg225234 +S'overall: 132.5 x 102.6 cm (52 3/16 x 40 3/8 in.)\r\nframed: 141.6 x 111.3 x 6.2 cm (55 3/4 x 43 13/16 x 2 7/16 in.)' +p289016 +sg225236 +S'\noil on canvas' +p289017 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00004/a000042f.jpg' +p289018 +sg225240 +g27 +sa(dp289019 +g225230 +S'Olivia' +p289020 +sg225232 +S'Lydia Field Emmet' +p289021 +sg225234 +S'oil on canvas' +p289022 +sg225236 +S'1911' +p289023 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00000/a00000ac.jpg' +p289024 +sg225240 +g27 +sa(dp289025 +g225230 +S'Siberian Dogs in the Snow' +p289026 +sg225232 +S'Franz Marc' +p289027 +sg225234 +S'oil on canvas' +p289028 +sg225236 +S'1909/1910' +p289029 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e25.jpg' +p289030 +sg225240 +g27 +sa(dp289031 +g225232 +S'Alfred Sisley' +p289032 +sg225240 +g27 +sg225234 +S'oil on canvas' +p289033 +sg225230 +S'First Snow at Veneux-Nadon' +p289034 +sg225236 +S'1878' +p289035 +sa(dp289036 +g225230 +S'Michel Baron' +p289037 +sg225232 +S'Artist Information (' +p289038 +sg225234 +S'(artist after)' +p289039 +sg225236 +S'\n' +p289040 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e51.jpg' +p289041 +sg225240 +g27 +sa(dp289042 +g225230 +S'Louis XV' +p289043 +sg225232 +S'Artist Information (' +p289044 +sg225234 +S'(artist after)' +p289045 +sg225236 +S'\n' +p289046 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e54.jpg' +p289047 +sg225240 +g27 +sa(dp289048 +g225230 +S'Louis XV' +p289049 +sg225232 +S'Artist Information (' +p289050 +sg225234 +S'(artist after)' +p289051 +sg225236 +S'\n' +p289052 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e53.jpg' +p289053 +sg225240 +g27 +sa(dp289054 +g225230 +S'Louis le Bien Aime' +p289055 +sg225232 +S'Artist Information (' +p289056 +sg225234 +S'(artist after)' +p289057 +sg225236 +S'\n' +p289058 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00096/a0009652.jpg' +p289059 +sg225240 +g27 +sa(dp289060 +g225230 +S'Louis XV' +p289061 +sg225232 +S'Artist Information (' +p289062 +sg225234 +S'(artist after)' +p289063 +sg225236 +S'\n' +p289064 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008eea.jpg' +p289065 +sg225240 +g27 +sa(dp289066 +g225230 +S'The Honest Model' +p289067 +sg225232 +S'Pierre-Antoine Baudouin' +p289068 +sg225234 +S'gouache and graphite on vellum, mounted on paperboard' +p289069 +sg225236 +S'1769' +p289070 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00022/a00022a5.jpg' +p289071 +sg225240 +g27 +sa(dp289072 +g225230 +S'A King and His Retinue Confronting Ladies under a Celestial Battle' +p289073 +sg225232 +S'French 17th Century' +p289074 +sg225234 +S'overall: 20.3 x 13.2 cm (8 x 5 3/16 in.)' +p289075 +sg225236 +S'\npen and brown ink' +p289076 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a00071bd.jpg' +p289077 +sg225240 +g27 +sa(dp289078 +g225230 +S'Benjamin Fisher' +p289079 +sg225232 +S'Gilbert Stuart' +p289080 +sg225234 +S', unknown date' +p289081 +sg225236 +S'\n' +p289082 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e47d.jpg' +p289083 +sg225240 +g27 +sa(dp289084 +g225230 +S'Mrs. Benjamin Fisher' +p289085 +sg225232 +S'Gilbert Stuart' +p289086 +sg225234 +S', unknown date' +p289087 +sg225236 +S'\n' +p289088 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e47c.jpg' +p289089 +sg225240 +g27 +sa(dp289090 +g225230 +S'Diana and Her Nymphs Bathing' +p289091 +sg225232 +S'Thomas Rowlandson' +p289092 +sg225234 +S'pen and brown ink with watercolor over graphite' +p289093 +sg225236 +S'unknown date\n' +p289094 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007269.jpg' +p289095 +sg225240 +g27 +sa(dp289096 +g225232 +S'Artist Information (' +p289097 +sg225240 +g27 +sg225234 +S'British, 1745 - 1820' +p289098 +sg225230 +S'The Triumphs of Temper' +p289099 +sg225236 +S'(author)' +p289100 +sa(dp289101 +g225232 +S'Artist Information (' +p289102 +sg225240 +g27 +sg225234 +S'(artist after)' +p289103 +sg225230 +S'Canto III, Verse 201' +p289104 +sg225236 +S'\n' +p289105 +sa(dp289106 +g225232 +S'Artist Information (' +p289107 +sg225240 +g27 +sg225234 +S'(artist after)' +p289108 +sg225230 +S'Canto IV, Verse 294' +p289109 +sg225236 +S'\n' +p289110 +sa(dp289111 +g225232 +S'Artist Information (' +p289112 +sg225240 +g27 +sg225234 +S'(artist after)' +p289113 +sg225230 +S'Illustration for Canto I' +p289114 +sg225236 +S'\n' +p289115 +sa(dp289116 +g225232 +S'Artist Information (' +p289117 +sg225240 +g27 +sg225234 +S'(artist after)' +p289118 +sg225230 +S'Illustration for Canto IV' +p289119 +sg225236 +S'\n' +p289120 +sa(dp289121 +g225232 +S'Artist Information (' +p289122 +sg225240 +g27 +sg225234 +S'(artist after)' +p289123 +sg225230 +S'Illustration for Canto II' +p289124 +sg225236 +S'\n' +p289125 +sa(dp289126 +g225232 +S'Artist Information (' +p289127 +sg225240 +g27 +sg225234 +S'(artist after)' +p289128 +sg225230 +S'Illustration for Canto V' +p289129 +sg225236 +S'\n' +p289130 +sa(dp289131 +g225232 +S'Artist Information (' +p289132 +sg225240 +g27 +sg225234 +S'(artist after)' +p289133 +sg225230 +S"The Illustrations of William Blake for Thorton's Virgil" +p289134 +sg225236 +S'\n' +p289135 +sa(dp289136 +g225232 +S'Artist Information (' +p289137 +sg225240 +g27 +sg225234 +S'(artist after)' +p289138 +sg225230 +S'Life of William Blake, "Pictor Ignotus"' +p289139 +sg225236 +S'\n' +p289140 +sa(dp289141 +g225232 +S'Artist Information (' +p289142 +sg225240 +g27 +sg225234 +S'(artist after)' +p289143 +sg225230 +S'Life of William Blake, "Pictor Ignotus"' +p289144 +sg225236 +S'\n' +p289145 +sa(dp289146 +g225232 +S'Artist Information (' +p289147 +sg225240 +g27 +sg225234 +S'(author)' +p289148 +sg225230 +S'The Life and Posthumous Writings of William Cowper (volume I)' +p289149 +sg225236 +S'\n' +p289150 +sa(dp289151 +g225232 +S'Artist Information (' +p289152 +sg225240 +g27 +sg225234 +S'(artist after)' +p289153 +sg225230 +S'William Cowper' +p289154 +sg225236 +S'\n' +p289155 +sa(dp289156 +g225232 +S'Artist Information (' +p289157 +sg225240 +g27 +sg225234 +S'(artist after)' +p289158 +sg225230 +S'Mrs. Cowper, Mother of the Poet' +p289159 +sg225236 +S'\n' +p289160 +sa(dp289161 +g225232 +S'Artist Information (' +p289162 +sg225240 +g27 +sg225234 +S'(author)' +p289163 +sg225230 +S'The Life and Posthumous Writings of William Cowper (volume II)' +p289164 +sg225236 +S'\n' +p289165 +sa(dp289166 +g225232 +S'Artist Information (' +p289167 +sg225240 +g27 +sg225234 +S'(artist after)' +p289168 +sg225230 +S'William Cowper, Author of "The Task"' +p289169 +sg225236 +S'\n' +p289170 +sa(dp289171 +g225232 +S'William Blake' +p289172 +sg225240 +g27 +sg225234 +S'engraving' +p289173 +sg225230 +S"The Weather-House, The Peasants Nest, and Cowper's Tame Hares" +p289174 +sg225236 +S'published 1802' +p289175 +sa(dp289176 +g225232 +S'Artist Information (' +p289177 +sg225240 +g27 +sg225234 +S'(author)' +p289178 +sg225230 +S'The Life and Posthumous Writings of William Cowper (volume III)' +p289179 +sg225236 +S'\n' +p289180 +sa(dp289181 +g225232 +S'Artist Information (' +p289182 +sg225240 +g27 +sg225234 +S'(artist after)' +p289183 +sg225230 +S"A View of St. Edmund's Chapel, East Dereham, Containing the Grave of William Cowper" +p289184 +sg225236 +S'\n' +p289185 +sa(dp289186 +g225232 +S'Artist Information (' +p289187 +sg225240 +g27 +sg225234 +S'(artist after)' +p289188 +sg225230 +S'A Sketch of the Monument in the Church of East Dereham, In Memory of William Cowper' +p289189 +sg225236 +S'\n' +p289190 +sa(dp289191 +g225232 +S'Artist Information (' +p289192 +sg225240 +g27 +sg225234 +S'British, 1745 - 1820' +p289193 +sg225230 +S'The Life of George Romney, Esq.' +p289194 +sg225236 +S'(author)' +p289195 +sa(dp289196 +g225232 +S'Artist Information (' +p289197 +sg225240 +g27 +sg225234 +S'(author)' +p289198 +sg225230 +S'An Essay on Sculpture' +p289199 +sg225236 +S'\n' +p289200 +sa(dp289201 +g225232 +S'Artist Information (' +p289202 +sg225240 +g27 +sg225234 +S'British, 1757 - 1827' +p289203 +sg225230 +S'The Botanic Garden' +p289204 +sg225236 +S'(artist)' +p289205 +sa(dp289206 +g225232 +S'Artist Information (' +p289207 +sg225240 +g27 +sg225234 +S'(artist after)' +p289208 +sg225230 +S'Fertilization of Egypt' +p289209 +sg225236 +S'\n' +p289210 +sa(dp289211 +g225232 +S'Artist Information (' +p289212 +sg225240 +g27 +sg225234 +S'(artist after)' +p289213 +sg225230 +S'Tornado' +p289214 +sg225236 +S'\n' +p289215 +sa(dp289216 +g225232 +S'William Blake' +p289217 +sg225240 +g27 +sg225234 +S'engraving' +p289218 +sg225230 +S'The Portland Vase' +p289219 +sg225236 +S'published 1795' +p289220 +sa(dp289221 +g225232 +S'William Blake' +p289222 +sg225240 +g27 +sg225234 +S'engraving' +p289223 +sg225230 +S'The Portland Vase: The First Compartment' +p289224 +sg225236 +S'published 1791' +p289225 +sa(dp289226 +g225232 +S'William Blake' +p289227 +sg225240 +g27 +sg225234 +S'engraving' +p289228 +sg225230 +S'The Portland Vase: The Second Compartment' +p289229 +sg225236 +S'published 1791' +p289230 +sa(dp289231 +g225232 +S'William Blake' +p289232 +sg225240 +g27 +sg225234 +S'engraving' +p289233 +sg225230 +S'The Portland Vase: The Handles and Bottom of the Vase' +p289234 +sg225236 +S'published 1791' +p289235 +sa(dp289236 +g225232 +S'Artist Information (' +p289237 +sg225240 +g27 +sg225234 +S'(artist after)' +p289238 +sg225230 +S'Flora and the Elements' +p289239 +sg225236 +S'\n' +p289240 +sa(dp289241 +g225232 +S'Artist Information (' +p289242 +sg225240 +g27 +sg225234 +S'(artist after)' +p289243 +sg225230 +S'Hope Attended by Peace, Art, and Labor / Fettered Slave' +p289244 +sg225236 +S'\n' +p289245 +sa(dp289246 +g225232 +S'Thomas Holloway' +p289247 +sg225240 +g27 +sg225234 +S'etching and engraving' +p289248 +sg225230 +S'Cupid with Torch and Flower' +p289249 +sg225236 +S'published 1794' +p289250 +sa(dp289251 +g225232 +S'Frederick P. Nodder' +p289252 +sg225240 +g27 +sg225234 +S'engraving' +p289253 +sg225230 +S'Meadia' +p289254 +sg225236 +S'published 1794' +p289255 +sa(dp289256 +g225232 +S'Frederick P. Nodder' +p289257 +sg225240 +g27 +sg225234 +S'engraving' +p289258 +sg225230 +S'Gloriosa Superba' +p289259 +sg225236 +S'published 1794' +p289260 +sa(dp289261 +g225232 +S'Frederick P. Nodder' +p289262 +sg225240 +g27 +sg225234 +S'engraving' +p289263 +sg225230 +S'Dionaea Muscipula' +p289264 +sg225236 +S'published 1794' +p289265 +sa(dp289266 +g225232 +S'Frederick P. Nodder' +p289267 +sg225240 +g27 +sg225234 +S'engraving' +p289268 +sg225230 +S'Amaryllis formosifsima' +p289269 +sg225236 +S'published 1794' +p289270 +sa(dp289271 +g225232 +S'Frederick P. Nodder' +p289272 +sg225240 +g27 +sg225234 +S'engraving' +p289273 +sg225230 +S'Vallisneria Spiralis' +p289274 +sg225236 +S'published 1794' +p289275 +sa(dp289276 +g225232 +S'Frederick P. Nodder' +p289277 +sg225240 +g27 +sg225234 +S'engraving' +p289278 +sg225230 +S'Hedysarum gyrans' +p289279 +sg225236 +S'published 1794' +p289280 +sa(dp289281 +g225232 +S'Frederick P. Nodder' +p289282 +sg225240 +g27 +sg225234 +S'engraving' +p289283 +sg225230 +S'Apocynum androsaemifolium' +p289284 +sg225236 +S'published 1794' +p289285 +sa(dp289286 +g225232 +S'Frederick P. Nodder' +p289287 +sg225240 +g27 +sg225234 +S'engraving' +p289288 +sg225230 +S'(Botanical plate, flowers numbered I-XIII)' +p289289 +sg225236 +S'published 1794' +p289290 +sa(dp289291 +g225232 +S'Frederick P. Nodder' +p289292 +sg225240 +g27 +sg225234 +S'engraving' +p289293 +sg225230 +S'(Botanical plate, flowers numbered XIV-XXIV)' +p289294 +sg225236 +S'published 1794' +p289295 +sa(dp289296 +g225232 +S'Artist Information (' +p289297 +sg225240 +g27 +sg225234 +S'(artist after)' +p289298 +sg225230 +S'Flora at Play with Cupid' +p289299 +sg225236 +S'\n' +p289300 +sa(dp289301 +g225232 +S'British 18th Century' +p289302 +sg225240 +g27 +sg225234 +S"Gift of William B. O'Neal" +p289303 +sg225230 +S'Cypripedium' +p289304 +sg225236 +S'\nengraving' +p289305 +sa(dp289306 +g225232 +S'British 18th Century' +p289307 +sg225240 +g27 +sg225234 +S'plate: 17.3 x 15 cm (6 13/16 x 5 7/8 in.)' +p289308 +sg225230 +S'Erythrina Corallodendron' +p289309 +sg225236 +S'\nengraving' +p289310 +sa(dp289311 +g225232 +S'Artist Information (' +p289312 +sg225240 +g27 +sg225234 +S'(artist)' +p289313 +sg225230 +S'Fables (volume I)' +p289314 +sg225236 +S'\n' +p289315 +sa(dp289316 +g225232 +S'Artist Information (' +p289317 +sg225240 +g27 +sg225234 +S'(artist)' +p289318 +sg225230 +S'Fables (volume II)' +p289319 +sg225236 +S'\n' +p289320 +sa(dp289321 +g225230 +S'"Une de ces mines pudibones"' +p289322 +sg225232 +S'Paul Gavarni' +p289323 +sg225234 +S'lithograph on wove paper' +p289324 +sg225236 +S'probably c. 1843' +p289325 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009aaa.jpg' +p289326 +sg225240 +g27 +sa(dp289327 +g225230 +S'Phrosine and Melidore' +p289328 +sg225232 +S"Pierre Paul Prud'hon" +p289329 +sg225234 +S'etching, stipple, roulette, and engraving on wove paper' +p289330 +sg225236 +S'1796' +p289331 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00099/a0009990.jpg' +p289332 +sg225240 +g27 +sa(dp289333 +g225230 +S'Saint Cecilia Accompanied by Heavenly Musicians' +p289334 +sg225232 +S'Artist Information (' +p289335 +sg225234 +S'(artist after)' +p289336 +sg225236 +S'\n' +p289337 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d60d.jpg' +p289338 +sg225240 +g27 +sa(dp289339 +g225230 +S'Fedoa Americana pectore ruso' +p289340 +sg225232 +S'George Edwards' +p289341 +sg225234 +S'hand-colored etching on laid paper' +p289342 +sg225236 +S'1740' +p289343 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a00077e6.jpg' +p289344 +sg225240 +g27 +sa(dp289345 +g225230 +S'The Red-Headed Finch from Surinam' +p289346 +sg225232 +S'George Edwards' +p289347 +sg225234 +S'hand-colored etching on laid paper' +p289348 +sg225236 +S'1741' +p289349 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a00077e2.jpg' +p289350 +sg225240 +g27 +sa(dp289351 +g225230 +S'Two Birds, One with Very Long Tailfeathers, and Blue Butterfly' +p289352 +sg225232 +S'George Edwards' +p289353 +sg225234 +S'hand-colored etching on laid paper' +p289354 +sg225236 +S'published 1745' +p289355 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a00077e4.jpg' +p289356 +sg225240 +g27 +sa(dp289357 +g225230 +S'The Black and White Crested Bird of Paradise' +p289358 +sg225232 +S'George Edwards' +p289359 +sg225234 +S'hand-colored etching on laid paper' +p289360 +sg225236 +S'published 1743' +p289361 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a00077dc.jpg' +p289362 +sg225240 +g27 +sa(dp289363 +g225230 +S'Brown Speckled Bird' +p289364 +sg225232 +S'George Edwards' +p289365 +sg225234 +S'hand-colored etching on laid paper' +p289366 +sg225236 +S'unknown date\n' +p289367 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00077/a00077e0.jpg' +p289368 +sg225240 +g27 +sa(dp289369 +g225230 +S'Green Bird with Red Throat and Brown and Orange Bird' +p289370 +sg225232 +S'George Edwards' +p289371 +sg225234 +S'hand-colored etching on laid paper' +p289372 +sg225236 +S'unknown date\n' +p289373 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a00078b0.jpg' +p289374 +sg225240 +g27 +sa(dp289375 +g225230 +S'Red and Black Bird' +p289376 +sg225232 +S'George Edwards' +p289377 +sg225234 +S'hand-colored etching on laid paper' +p289378 +sg225236 +S'unknown date\n' +p289379 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a00078ae.jpg' +p289380 +sg225240 +g27 +sa(dp289381 +g225230 +S'Black and White Water-Fowl with Blue Throat' +p289382 +sg225232 +S'George Edwards' +p289383 +sg225234 +S'hand-colored etching on laid paper' +p289384 +sg225236 +S'unknown date\n' +p289385 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a00078b2.jpg' +p289386 +sg225240 +g27 +sa(dp289387 +g225230 +S'Brown Bird with a Butterfly' +p289388 +sg225232 +S'George Edwards' +p289389 +sg225234 +S'hand-colored etching on laid paper' +p289390 +sg225236 +S'unknown date\n' +p289391 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a00078b3.jpg' +p289392 +sg225240 +g27 +sa(dp289393 +g225230 +S'Sloth' +p289394 +sg225232 +S'George Edwards' +p289395 +sg225234 +S'hand-colored etching on laid paper' +p289396 +sg225236 +S'1755' +p289397 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00078/a00078b5.jpg' +p289398 +sg225240 +g27 +sa(dp289399 +g225230 +S'Pica grisea Brasiliensis' +p289400 +sg225232 +S'Artist Information (' +p289401 +sg225234 +S'(artist after)' +p289402 +sg225236 +S'\n' +p289403 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b38c.jpg' +p289404 +sg225240 +g27 +sa(dp289405 +g225230 +S'Grus Americana, alta major' +p289406 +sg225232 +S'Artist Information (' +p289407 +sg225234 +S'(artist after)' +p289408 +sg225236 +S'\n' +p289409 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b38f.jpg' +p289410 +sg225240 +g27 +sa(dp289411 +g225230 +S'Fedoa Americana, pectore ruso' +p289412 +sg225232 +S'Artist Information (' +p289413 +sg225234 +S'(artist after)' +p289414 +sg225236 +S'\n' +p289415 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b390.jpg' +p289416 +sg225240 +g27 +sa(dp289417 +g225230 +S'Psittacus albus cristatus maximus' +p289418 +sg225232 +S'Artist Information (' +p289419 +sg225234 +S'(artist after)' +p289420 +sg225236 +S'\n' +p289421 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b36a.jpg' +p289422 +sg225240 +g27 +sa(dp289423 +g225230 +S'Psittacus minor viridis cauda longiore Occidentalis' +p289424 +sg225232 +S'Artist Information (' +p289425 +sg225234 +S'(artist after)' +p289426 +sg225236 +S'\n' +p289427 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b36b.jpg' +p289428 +sg225240 +g27 +sa(dp289429 +g225230 +S'Psittacus minor gutture fusco, occidentalis' +p289430 +sg225232 +S'Artist Information (' +p289431 +sg225234 +S'(artist after)' +p289432 +sg225236 +S'\n' +p289433 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b36c.jpg' +p289434 +sg225240 +g27 +sa(dp289435 +g225230 +S'Psittacus viridis minor Mexicanus' +p289436 +sg225232 +S'Artist Information (' +p289437 +sg225234 +S'(artist after)' +p289438 +sg225236 +S'\n' +p289439 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b36d.jpg' +p289440 +sg225240 +g27 +sa(dp289441 +g225232 +S'Leonard Baskin' +p289442 +sg225240 +g27 +sg225234 +S'lithograph' +p289443 +sg225230 +S'Rodin' +p289444 +sg225236 +S'1963' +p289445 +sa(dp289446 +g225232 +S'Artist Information (' +p289447 +sg225240 +g27 +sg225234 +S'(artist after)' +p289448 +sg225230 +S'George Washington on Horseback' +p289449 +sg225236 +S'\n' +p289450 +sa(dp289451 +g225230 +S'Evening' +p289452 +sg225232 +S'Artist Information (' +p289453 +sg225234 +S'(artist after)' +p289454 +sg225236 +S'\n' +p289455 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf1c.jpg' +p289456 +sg225240 +g27 +sa(dp289457 +g225230 +S'The River God Tiber with the Urn and the Vestal Tuccia' +p289458 +sg225232 +S'Artist Information (' +p289459 +sg225234 +S'(artist after)' +p289460 +sg225236 +S'\n' +p289461 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfa1.jpg' +p289462 +sg225240 +g27 +sa(dp289463 +g225230 +S'Rialto' +p289464 +sg225232 +S'Norbert Goeneutte' +p289465 +sg225234 +S'etching and drypoint on heavy laid paper' +p289466 +sg225236 +S'unknown date\n' +p289467 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a5e.jpg' +p289468 +sg225240 +g27 +sa(dp289469 +g225232 +S'John Sloan' +p289470 +sg225240 +g27 +sg225234 +S'etching on laid paper' +p289471 +sg225230 +S'"The Green Hour"' +p289472 +sg225236 +S'1930' +p289473 +sa(dp289474 +g225232 +S'David Young Cameron' +p289475 +sg225240 +g27 +sg225234 +S'etching in brown on laid paper' +p289476 +sg225230 +S'Linlithgow Palace' +p289477 +sg225236 +S'1887' +p289478 +sa(dp289479 +g225232 +S'David Young Cameron' +p289480 +sg225240 +g27 +sg225234 +S'etching on laid paper' +p289481 +sg225230 +S'Jamaica Street Bridge' +p289482 +sg225236 +S'1888' +p289483 +sa(dp289484 +g225232 +S'David Young Cameron' +p289485 +sg225240 +g27 +sg225234 +S'etching on laid paper' +p289486 +sg225230 +S'Evening' +p289487 +sg225236 +S'1888' +p289488 +sa(dp289489 +g225232 +S'David Young Cameron' +p289490 +sg225240 +g27 +sg225234 +S'etching on laid paper' +p289491 +sg225230 +S'Dolo' +p289492 +sg225236 +S'1894' +p289493 +sa(dp289494 +g225232 +S'David Young Cameron' +p289495 +sg225240 +g27 +sg225234 +S'etching and drypoint on laid paper' +p289496 +sg225230 +S'Isles of Loch Maree' +p289497 +sg225236 +S'1923' +p289498 +sa(dp289499 +g225232 +S'David Young Cameron' +p289500 +sg225240 +g27 +sg225234 +S'etching and drypoint on laid paper' +p289501 +sg225230 +S'Killundine' +p289502 +sg225236 +S'1929' +p289503 +sa(dp289504 +g225232 +S'David Young Cameron' +p289505 +sg225240 +g27 +sg225234 +S'drypoint on laid paper' +p289506 +sg225230 +S'Balquhidder' +p289507 +sg225236 +S'1931' +p289508 +sa(dp289509 +g225232 +S'David Young Cameron' +p289510 +sg225240 +g27 +sg225234 +S'drypoint on laid paper' +p289511 +sg225230 +S'Tarff' +p289512 +sg225236 +S'1931' +p289513 +sa(dp289514 +g225232 +S'David Young Cameron' +p289515 +sg225240 +g27 +sg225234 +S'drypoint on laid paper' +p289516 +sg225230 +S'Valley of the Tay' +p289517 +sg225236 +S'1931' +p289518 +sa(dp289519 +g225232 +S'David Young Cameron' +p289520 +sg225240 +g27 +sg225234 +S'drypoint on laid paper' +p289521 +sg225230 +S'The Scuir of Eigg' +p289522 +sg225236 +S'1931' +p289523 +sa(dp289524 +g225232 +S'David Young Cameron' +p289525 +sg225240 +g27 +sg225234 +S'drypoint on laid paper' +p289526 +sg225230 +S'Monzie' +p289527 +sg225236 +S'1932' +p289528 +sa(dp289529 +g225232 +S'David Young Cameron' +p289530 +sg225240 +g27 +sg225234 +S'drypoint and etching on laid paper' +p289531 +sg225230 +S'Tantallon' +p289532 +sg225236 +S'1932' +p289533 +sa(dp289534 +g225232 +S'David Young Cameron' +p289535 +sg225240 +g27 +sg225234 +S'etching cancelled in drypoint on wove paper [cancellation proof]' +p289536 +sg225230 +S'Two Bridges' +p289537 +sg225236 +S'1896' +p289538 +sa(dp289539 +g225232 +S'David Young Cameron' +p289540 +sg225240 +g27 +sg225234 +S'etching cancelled in drypoint on wove paper [cancellation proof]' +p289541 +sg225230 +S'Thames Barges' +p289542 +sg225236 +S'1890' +p289543 +sa(dp289544 +g225232 +S'David Young Cameron' +p289545 +sg225240 +g27 +sg225234 +S'drypoint on wove paper [cancellation proof]' +p289546 +sg225230 +S'A Lowland River: A Dry-Point' +p289547 +sg225236 +S'1892' +p289548 +sa(dp289549 +g225232 +S'David Young Cameron' +p289550 +sg225240 +g27 +sg225234 +S'etching on wove paper [cancellation proof]' +p289551 +sg225230 +S'Strathendrick and Loch Lomond' +p289552 +sg225236 +S'1888' +p289553 +sa(dp289554 +g225232 +S'David Young Cameron' +p289555 +sg225240 +g27 +sg225234 +S'etching on wove paper [cancellation proof]' +p289556 +sg225230 +S'Romantic Landscape' +p289557 +sg225236 +S'c. 1890' +p289558 +sa(dp289559 +g225232 +S'David Young Cameron' +p289560 +sg225240 +g27 +sg225234 +S'etching on wove paper [cancellation proof]' +p289561 +sg225230 +S'Highland Kitchen' +p289562 +sg225236 +S'1891' +p289563 +sa(dp289564 +g225232 +S'David Young Cameron' +p289565 +sg225240 +g27 +sg225234 +S'etching on wove paper [cancellation proof]' +p289566 +sg225230 +S'Barochan No.1' +p289567 +sg225236 +S'1892' +p289568 +sa(dp289569 +g225232 +S'David Young Cameron' +p289570 +sg225240 +g27 +sg225234 +S'etching cancelled with drypoint on wove paper [cancellation proof]' +p289571 +sg225230 +S'Thames Wharf' +p289572 +sg225236 +S'1890' +p289573 +sa(dp289574 +g225232 +S'David Young Cameron' +p289575 +sg225240 +g27 +sg225234 +S'etching cancelled in drypoint on wove paper [cancellation proof]' +p289576 +sg225230 +S'The Steps' +p289577 +sg225236 +S'1892' +p289578 +sa(dp289579 +g225232 +S'David Young Cameron' +p289580 +sg225240 +g27 +sg225234 +S', unknown date' +p289581 +sg225230 +S'Scene with Large Village House' +p289582 +sg225236 +S'\n' +p289583 +sa(dp289584 +g225230 +S'Paris Street Scene' +p289585 +sg225232 +S'Robert Henri' +p289586 +sg225234 +S'etching' +p289587 +sg225236 +S'1904' +p289588 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000abd.jpg' +p289589 +sg225240 +g27 +sa(dp289590 +g225230 +S"Escher's Father, G.A. Escher" +p289591 +sg225232 +S'M.C. Escher' +p289592 +sg225234 +S'linoleum cut in purple on wove paper' +p289593 +sg225236 +S'1916' +p289594 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004ba5.jpg' +p289595 +sg225240 +S"Escher's first prints were made from linoleum blocks. This portrait of Escher's father, George A. Escher (1843-1939), is the earliest print by the artist. His father, who was a civil engineer, instilled in him a lifelong interest in mathematics and science.\n " +p289596 +sa(dp289597 +g225230 +S'Still Life' +p289598 +sg225232 +S'M.C. Escher' +p289599 +sg225234 +S'linoleum cut in purple on wove paper' +p289600 +sg225236 +S'1917' +p289601 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b3b.jpg' +p289602 +sg225240 +g27 +sa(dp289603 +g225232 +S'M.C. Escher' +p289604 +sg225240 +g27 +sg225234 +S'linoleum cut in two browns on brown wove paper' +p289605 +sg225230 +S'Self-Portrait' +p289606 +sg225236 +S'1917' +p289607 +sa(dp289608 +g225232 +S'M.C. Escher' +p289609 +sg225240 +g27 +sg225234 +S'linoleum cut in two tones of brown on wove paper, printed from two blocks' +p289610 +sg225230 +S'Jug' +p289611 +sg225236 +S'1917' +p289612 +sa(dp289613 +g225232 +S'M.C. Escher' +p289614 +sg225240 +g27 +sg225234 +S'linoleum cut in two browns, printed from two blocks, on brown wove paper' +p289615 +sg225230 +S'Self-Portrait' +p289616 +sg225236 +S'1918' +p289617 +sa(dp289618 +g225232 +S'M.C. Escher' +p289619 +sg225240 +g27 +sg225234 +S'linoleum cut' +p289620 +sg225230 +S'Life Force' +p289621 +sg225236 +S'1919' +p289622 +sa(dp289623 +g225232 +S'M.C. Escher' +p289624 +sg225240 +g27 +sg225234 +S'woodcut on tan paper' +p289625 +sg225230 +S'Self-Portrait in a Chair' +p289626 +sg225236 +S'1920' +p289627 +sa(dp289628 +g225232 +S'M.C. Escher' +p289629 +sg225240 +g27 +sg225234 +S'woodcut' +p289630 +sg225230 +S'Female Nude in a Landscape' +p289631 +sg225236 +S'1920' +p289632 +sa(dp289633 +g225232 +S'M.C. Escher' +p289634 +sg225240 +g27 +sg225234 +S'woodcut' +p289635 +sg225230 +S'Paradise' +p289636 +sg225236 +S'1921' +p289637 +sa(dp289638 +g225230 +S'Seated Female Nude' +p289639 +sg225232 +S'M.C. Escher' +p289640 +sg225234 +S'woodcut' +p289641 +sg225236 +S'1921' +p289642 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b59.jpg' +p289643 +sg225240 +g27 +sa(dp289644 +g225230 +S'Seated Female Nude' +p289645 +sg225232 +S'M.C. Escher' +p289646 +sg225234 +S'linoleum cut on tan paper' +p289647 +sg225236 +S'probably 1921' +p289648 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b5a.jpg' +p289649 +sg225240 +g27 +sa(dp289650 +g225232 +S'M.C. Escher' +p289651 +sg225240 +g27 +sg225234 +S'woodcut' +p289652 +sg225230 +S'Emblema VIII, Sundial' +p289653 +sg225236 +S'1931' +p289654 +sa(dp289655 +g225232 +S'M.C. Escher' +p289656 +sg225240 +g27 +sg225234 +S'woodcut in orange' +p289657 +sg225230 +S'Reptile (color test for unidentified print)' +p289658 +sg225236 +S'1968' +p289659 +sa(dp289660 +g225232 +S'M.C. Escher' +p289661 +sg225240 +g27 +sg225234 +S'wood engraving in black' +p289662 +sg225230 +S'Whirlpools' +p289663 +sg225236 +S'1957' +p289664 +sa(dp289665 +g225232 +S'M.C. Escher' +p289666 +sg225240 +g27 +sg225234 +S'woodcut in green and gold on white satin' +p289667 +sg225230 +S'Tessellation of Fishes' +p289668 +sg225236 +S'probably c. 1960' +p289669 +sa(dp289670 +g225232 +S'M.C. Escher' +p289671 +sg225240 +g27 +sg225234 +S'woodcut in orange and black, printed from two blocks' +p289672 +sg225230 +S'Knots' +p289673 +sg225236 +S'1965' +p289674 +sa(dp289675 +g225232 +S'M.C. Escher' +p289676 +sg225240 +g27 +sg225234 +S'woodcut in orange' +p289677 +sg225230 +S'Metamorphosis III' +p289678 +sg225236 +S'1967/1968' +p289679 +sa(dp289680 +g225232 +S'M.C. Escher' +p289681 +sg225240 +g27 +sg225234 +S'woodcut' +p289682 +sg225230 +S'Metamorphosis III' +p289683 +sg225236 +S'1967/1968' +p289684 +sa(dp289685 +g225232 +S'M.C. Escher' +p289686 +sg225240 +g27 +sg225234 +S'woodcut in black and gray-brown' +p289687 +sg225230 +S'Metamorphosis III' +p289688 +sg225236 +S'1967/1968' +p289689 +sa(dp289690 +g225232 +S'M.C. Escher' +p289691 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p289692 +sg225230 +S'Bookplate Albert Ernst Bosman' +p289693 +sg225236 +S'probably 1946' +p289694 +sa(dp289695 +g225232 +S'M.C. Escher' +p289696 +sg225240 +g27 +sg225234 +S'metalcut (zinc) on wove paper' +p289697 +sg225230 +S'Bookplate B.G. Escher' +p289698 +sg225236 +S'probably 1922' +p289699 +sa(dp289700 +g225232 +S'M.C. Escher' +p289701 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p289702 +sg225230 +S'Bookplate D.H. Roodhuyzen de Vries-Van Dishoeck' +p289703 +sg225236 +S'1942' +p289704 +sa(dp289705 +g225232 +S'M.C. Escher' +p289706 +sg225240 +g27 +sg225234 +S'wood engraving on laid paper' +p289707 +sg225230 +S'Bookplate A.M.E. van Dishoeck' +p289708 +sg225236 +S'1943' +p289709 +sa(dp289710 +g225232 +S'M.C. Escher' +p289711 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p289712 +sg225230 +S'Bookplate Dr. P.H.M. Travaglino' +p289713 +sg225236 +S'1940' +p289714 +sa(dp289715 +g225232 +S'M.C. Escher' +p289716 +sg225240 +g27 +sg225234 +S'woodcut on light tan wove paper' +p289717 +sg225230 +S'Bookplate A.R.A. Wertheim' +p289718 +sg225236 +S'1954' +p289719 +sa(dp289720 +g225232 +S'M.C. Escher' +p289721 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p289722 +sg225230 +S'Bookplate J.C. de Bruyn van Melis-en Mariekerke-Mackay' +p289723 +sg225236 +S'1946' +p289724 +sa(dp289725 +g225232 +S'M.C. Escher' +p289726 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p289727 +sg225230 +S"Bookplate G.H.'s-Gravesande" +p289728 +sg225236 +S'1940' +p289729 +sa(dp289730 +g225232 +S'M.C. Escher' +p289731 +sg225240 +g27 +sg225234 +S'wood engraving on off-white wove paper' +p289732 +sg225230 +S"Bookplate G.H.'s-Gravesande" +p289733 +sg225236 +S'1940' +p289734 +sa(dp289735 +g225232 +S'M.C. Escher' +p289736 +sg225240 +g27 +sg225234 +S'woodcut on laid paper' +p289737 +sg225230 +S"New Year's greeting-card 1949, L. and K. Asselbergs" +p289738 +sg225236 +S'1948' +p289739 +sa(dp289740 +g225232 +S'M.C. Escher' +p289741 +sg225240 +g27 +sg225234 +S'wood engraving on paperboard' +p289742 +sg225230 +S"New Year's greeting-card 1951, L. and K. Asselbergs" +p289743 +sg225236 +S'1950' +p289744 +sa(dp289745 +g225232 +S'M.C. Escher' +p289746 +sg225240 +g27 +sg225234 +S'woodcut on light tan wove paper' +p289747 +sg225230 +S'Fish' +p289748 +sg225236 +S'probably 1955' +p289749 +sa(dp289750 +g225232 +S'M.C. Escher' +p289751 +sg225240 +g27 +sg225234 +S'wood engraving on light tan wove paper' +p289752 +sg225230 +S"New Year's greeting-card PTT" +p289753 +sg225236 +S'1956' +p289754 +sa(dp289755 +g225232 +S'M.C. Escher' +p289756 +sg225240 +g27 +sg225234 +S'woodcut in black and orange, printed from two blocks, on wove paper' +p289757 +sg225230 +S"Earth, New Year's greeting-card 1953" +p289758 +sg225236 +S'1952' +p289759 +sa(dp289760 +g225232 +S'M.C. Escher' +p289761 +sg225240 +g27 +sg225234 +S'woodcut in blue and brown, printed from two blocks, on wove paper' +p289762 +sg225230 +S"Earth, New Year's greeting-card 1953" +p289763 +sg225236 +S'1952' +p289764 +sa(dp289765 +g225232 +S'M.C. Escher' +p289766 +sg225240 +g27 +sg225234 +S'woodcut in green and brown, printed from two blocks, on wove paper' +p289767 +sg225230 +S"Air, New Year's greeting-card 1954" +p289768 +sg225236 +S'1952' +p289769 +sa(dp289770 +g225232 +S'M.C. Escher' +p289771 +sg225240 +g27 +sg225234 +S'woodcut in yellow and orange, printed from two blocks, on wove paper' +p289772 +sg225230 +S"Fire, New Year's greeting-card 1955" +p289773 +sg225236 +S'1952' +p289774 +sa(dp289775 +g225232 +S'M.C. Escher' +p289776 +sg225240 +g27 +sg225234 +S'woodcut in green and blue, printed from two blocks, on wove paper' +p289777 +sg225230 +S"Water, New Year's greeting-card 1956" +p289778 +sg225236 +S'1952' +p289779 +sa(dp289780 +g225232 +S'M.C. Escher' +p289781 +sg225240 +g27 +sg225234 +S'woodcut in blue and brown, printed from two blocks, on wove paper' +p289782 +sg225230 +S"Earth, New Year's greeting-card 1953" +p289783 +sg225236 +S'1952' +p289784 +sa(dp289785 +g225232 +S'M.C. Escher' +p289786 +sg225240 +g27 +sg225234 +S'woodcut in green and brown, printed from two blocks, on wove paper' +p289787 +sg225230 +S"Air, New Year's greeting-card 1954" +p289788 +sg225236 +S'1952' +p289789 +sa(dp289790 +g225232 +S'M.C. Escher' +p289791 +sg225240 +g27 +sg225234 +S'woodcut in yellow and orange, printed from two blocks, on wove paper' +p289792 +sg225230 +S"Fire, New Year's greeting-card 1955" +p289793 +sg225236 +S'1952' +p289794 +sa(dp289795 +g225232 +S'M.C. Escher' +p289796 +sg225240 +g27 +sg225234 +S'woodcut in green and blue, printed from two blocks, on wove paper' +p289797 +sg225230 +S"Water, New Year's greeting-card 1956" +p289798 +sg225236 +S'1952' +p289799 +sa(dp289800 +g225232 +S'M.C. Escher' +p289801 +sg225240 +g27 +sg225234 +S'wood engraving on light tan wove paper' +p289802 +sg225230 +S'Christmas card AKU' +p289803 +sg225236 +S'1955' +p289804 +sa(dp289805 +g225232 +S'M.C. Escher' +p289806 +sg225240 +g27 +sg225234 +S'woodcut in red on wove paper' +p289807 +sg225230 +S'Regular Division of the Plane I' +p289808 +sg225236 +S'1957' +p289809 +sa(dp289810 +g225232 +S'M.C. Escher' +p289811 +sg225240 +g27 +sg225234 +S'woodcut in red on wove paper' +p289812 +sg225230 +S'Regular Division of the Plane II' +p289813 +sg225236 +S'1957' +p289814 +sa(dp289815 +g225232 +S'M.C. Escher' +p289816 +sg225240 +g27 +sg225234 +S'woodcut in red on wove paper' +p289817 +sg225230 +S'Regular Division of the Plane III' +p289818 +sg225236 +S'1957' +p289819 +sa(dp289820 +g225232 +S'M.C. Escher' +p289821 +sg225240 +g27 +sg225234 +S'woodcut in red on wove paper' +p289822 +sg225230 +S'Regular Division of the Plane IV' +p289823 +sg225236 +S'1957' +p289824 +sa(dp289825 +g225232 +S'M.C. Escher' +p289826 +sg225240 +g27 +sg225234 +S'woodcut in red on wove paper' +p289827 +sg225230 +S'Regular Division of the Plane V' +p289828 +sg225236 +S'1957' +p289829 +sa(dp289830 +g225232 +S'M.C. Escher' +p289831 +sg225240 +g27 +sg225234 +S'woodcut in red on wove paper' +p289832 +sg225230 +S'Regular Division of the Plane VI' +p289833 +sg225236 +S'1957' +p289834 +sa(dp289835 +g225232 +S'M.C. Escher' +p289836 +sg225240 +g27 +sg225234 +S'woodcut on tracing paper' +p289837 +sg225230 +S'Perfume' +p289838 +sg225236 +S'1921' +p289839 +sa(dp289840 +g225232 +S'M.C. Escher' +p289841 +sg225240 +g27 +sg225234 +S'woodcut on wove paper' +p289842 +sg225230 +S'Perfume (Bad Smell)' +p289843 +sg225236 +S'1921' +p289844 +sa(dp289845 +g225232 +S'M.C. Escher' +p289846 +sg225240 +g27 +sg225234 +S'woodcut on tracing paper' +p289847 +sg225230 +S"Whore's Superstition" +p289848 +sg225236 +S'1921' +p289849 +sa(dp289850 +g225232 +S'M.C. Escher' +p289851 +sg225240 +g27 +sg225234 +S'woodcut on tracing paper' +p289852 +sg225230 +S'"Never Think before You Act"' +p289853 +sg225236 +S'1921' +p289854 +sa(dp289855 +g225232 +S'M.C. Escher' +p289856 +sg225240 +g27 +sg225234 +S'woodcut on light tan wove paper' +p289857 +sg225230 +S'"Never Think before You Act"' +p289858 +sg225236 +S'1921' +p289859 +sa(dp289860 +g225232 +S'M.C. Escher' +p289861 +sg225240 +g27 +sg225234 +S'woodcut on tracing paper' +p289862 +sg225230 +S'Fulfillment' +p289863 +sg225236 +S'1921' +p289864 +sa(dp289865 +g225232 +S'M.C. Escher' +p289866 +sg225240 +g27 +sg225234 +S'woodcut on tracing paper' +p289867 +sg225230 +S'The Scapegoat' +p289868 +sg225236 +S'1921' +p289869 +sa(dp289870 +g225232 +S'M.C. Escher' +p289871 +sg225240 +g27 +sg225234 +S'woodcut in purple on wove paper' +p289872 +sg225230 +S'Program "St. Matthew Passion"' +p289873 +sg225236 +S'1938' +p289874 +sa(dp289875 +g225232 +S'M.C. Escher' +p289876 +sg225240 +g27 +sg225234 +S'wood engraving on light tan wove paper' +p289877 +sg225230 +S'Devils' +p289878 +sg225236 +S'1950' +p289879 +sa(dp289880 +g225232 +S'M.C. Escher' +p289881 +sg225240 +g27 +sg225234 +S'woodcut on laid paper' +p289882 +sg225230 +S'Design for wrapping paper: De Bijenkorf' +p289883 +sg225236 +S'1933' +p289884 +sa(dp289885 +g225232 +S'M.C. Escher' +p289886 +sg225240 +g27 +sg225234 +S'wood engraving on light tan wove paper' +p289887 +sg225230 +S'Plane-filling Motif with Birds' +p289888 +sg225236 +S'1949' +p289889 +sa(dp289890 +g225232 +S'M.C. Escher' +p289891 +sg225240 +g27 +sg225234 +S'woodcut in four colors on gray wove paper' +p289892 +sg225230 +S'Birth announcement card of Arthur Escher' +p289893 +sg225236 +S'1928' +p289894 +sa(dp289895 +g225232 +S'M.C. Escher' +p289896 +sg225240 +g27 +sg225234 +S'woodcut on laid paper' +p289897 +sg225230 +S'Birth announcement card of Jan Escher' +p289898 +sg225236 +S'1938' +p289899 +sa(dp289900 +g225232 +S'M.C. Escher' +p289901 +sg225240 +g27 +sg225234 +S'wood engraving on laid paper' +p289902 +sg225230 +S'"E is een Ezel" (Donkey)' +p289903 +sg225236 +S'1953' +p289904 +sa(dp289905 +g225232 +S'M.C. Escher' +p289906 +sg225240 +g27 +sg225234 +S'wood engraving on laid paper' +p289907 +sg225230 +S'Fish' +p289908 +sg225236 +S'1956' +p289909 +sa(dp289910 +g225232 +S'M.C. Escher' +p289911 +sg225240 +g27 +sg225234 +S'woodcut on wove paper' +p289912 +sg225230 +S'Fish' +p289913 +sg225236 +S'published 1963' +p289914 +sa(dp289915 +g225232 +S'M.C. Escher' +p289916 +sg225240 +g27 +sg225234 +S'woodcut on wove paper' +p289917 +sg225230 +S'Fish' +p289918 +sg225236 +S'published 1963' +p289919 +sa(dp289920 +g225232 +S'M.C. Escher' +p289921 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p289922 +sg225230 +S'Fish' +p289923 +sg225236 +S'1954' +p289924 +sa(dp289925 +g225232 +S'M.C. Escher' +p289926 +sg225240 +g27 +sg225234 +S'linoleum cut on wove paper' +p289927 +sg225230 +S'Plane-filling Motif with Fish and Bird' +p289928 +sg225236 +S'1951' +p289929 +sa(dp289930 +g225232 +S'M.C. Escher' +p289931 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p289932 +sg225230 +S'Fish and Frogs' +p289933 +sg225236 +S'1949' +p289934 +sa(dp289935 +g225232 +S'M.C. Escher' +p289936 +sg225240 +g27 +sg225234 +S'wood engraving on off-white wove paper' +p289937 +sg225230 +S'Invitation' +p289938 +sg225236 +S'1931' +p289939 +sa(dp289940 +g225232 +S'M.C. Escher' +p289941 +sg225240 +g27 +sg225234 +S'woodcut on light tan wove paper' +p289942 +sg225230 +S'"M is een Muis" (Mouse)' +p289943 +sg225236 +S'1953' +p289944 +sa(dp289945 +g225232 +S'M.C. Escher' +p289946 +sg225240 +g27 +sg225234 +S'woodcut on light tan wove paper' +p289947 +sg225230 +S'Initial S' +p289948 +sg225236 +S'probably 1932' +p289949 +sa(dp289950 +g225232 +S'M.C. Escher' +p289951 +sg225240 +g27 +sg225234 +S'wood engraving on light tan wove paper' +p289952 +sg225230 +S'Man with Cuboid' +p289953 +sg225236 +S'probably 1958' +p289954 +sa(dp289955 +g225232 +S'M.C. Escher' +p289956 +sg225240 +g27 +sg225234 +S'woodcut on light tan wove paper' +p289957 +sg225230 +S"New Year's greeting-card 1947, Nederlandsche ExLibris-Kring" +p289958 +sg225236 +S'1946' +p289959 +sa(dp289960 +g225232 +S'M.C. Escher' +p289961 +sg225240 +g27 +sg225234 +S'woodcut on light tan wove paper' +p289962 +sg225230 +S"New Year's greeting-card 1947, Nederlandsche ExLibris-Kring" +p289963 +sg225236 +S'1946' +p289964 +sa(dp289965 +g225232 +S'M.C. Escher' +p289966 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p289967 +sg225230 +S'Horses and Birds' +p289968 +sg225236 +S'1949' +p289969 +sa(dp289970 +g225232 +S'M.C. Escher' +p289971 +sg225240 +g27 +sg225234 +S'woodcut on wove paper' +p289972 +sg225230 +S'Vignette for "XIIme Congres Postal Universel"' +p289973 +sg225236 +S'1947' +p289974 +sa(dp289975 +g225232 +S'M.C. Escher' +p289976 +sg225240 +g27 +sg225234 +S'woodcut on wove paper' +p289977 +sg225230 +S'Self-Portrait in Spherical Mirror' +p289978 +sg225236 +S'1950' +p289979 +sa(dp289980 +g225232 +S'M.C. Escher' +p289981 +sg225240 +g27 +sg225234 +S'woodcut in red on laid paper' +p289982 +sg225230 +S'Emblem for Restaurant Insulinde, The Hague' +p289983 +sg225236 +S'1944' +p289984 +sa(dp289985 +g225232 +S'M.C. Escher' +p289986 +sg225240 +g27 +sg225234 +S'linoleum cut in green on light tan wove paper' +p289987 +sg225230 +S'Bookplate T. de Ridder' +p289988 +sg225236 +S'1918' +p289989 +sa(dp289990 +g225232 +S'M.C. Escher' +p289991 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p289992 +sg225230 +S'Larix' +p289993 +sg225236 +S'1961' +p289994 +sa(dp289995 +g225232 +S'M.C. Escher' +p289996 +sg225240 +g27 +sg225234 +S'woodcut on wove paper' +p289997 +sg225230 +S'Tree' +p289998 +sg225236 +S'1926' +p289999 +sa(dp290000 +g225232 +S'M.C. Escher' +p290001 +sg225240 +g27 +sg225234 +S'wood engraving on light tan wove paper' +p290002 +sg225230 +S'Trees and Animals' +p290003 +sg225236 +S'1953' +p290004 +sa(dp290005 +g225232 +S'M.C. Escher' +p290006 +sg225240 +g27 +sg225234 +S'woodcut on off-white wove paper' +p290007 +sg225230 +S'Trademark' +p290008 +sg225236 +S'1935' +p290009 +sa(dp290010 +g225232 +S'M.C. Escher' +p290011 +sg225240 +g27 +sg225234 +S'woodcut in brown on off-white tracing paper' +p290012 +sg225230 +S'Bookplate R.I.H.' +p290013 +sg225236 +S'1919' +p290014 +sa(dp290015 +g225232 +S'M.C. Escher' +p290016 +sg225240 +g27 +sg225234 +S'linoleum cut in brown on tan wove paper' +p290017 +sg225230 +S'Bookplate Heleen van Thienen' +p290018 +sg225236 +S'1917' +p290019 +sa(dp290020 +g225232 +S'M.C. Escher' +p290021 +sg225240 +g27 +sg225234 +S'linoleum cut in blue and black, printed from two blocks, with graphite on light tan wove paper' +p290022 +sg225230 +S'Bookplate Bastian Kist' +p290023 +sg225236 +S'probably 1916' +p290024 +sa(dp290025 +g225232 +S'M.C. Escher' +p290026 +sg225240 +g27 +sg225234 +S'linoleum cut on brown wove paper' +p290027 +sg225230 +S'Bookplate M.C. Escher' +p290028 +sg225236 +S'1917' +p290029 +sa(dp290030 +g225232 +S'M.C. Escher' +p290031 +sg225240 +g27 +sg225234 +S'linoleum cut in brown and green, printed from one block, on light tan wove paper' +p290032 +sg225230 +S'Two Bells' +p290033 +sg225236 +S'1918' +p290034 +sa(dp290035 +g225232 +S'M.C. Escher' +p290036 +sg225240 +g27 +sg225234 +S'woodcut on light tan wove paper' +p290037 +sg225230 +S'White Cat' +p290038 +sg225236 +S'1919' +p290039 +sa(dp290040 +g225232 +S'M.C. Escher' +p290041 +sg225240 +g27 +sg225234 +S'linoleum cut on laid paper' +p290042 +sg225230 +S'Hen with Egg' +p290043 +sg225236 +S'1917' +p290044 +sa(dp290045 +g225232 +S'M.C. Escher' +p290046 +sg225240 +g27 +sg225234 +S'linoleum cut in green and brown on wove paper' +p290047 +sg225230 +S'Baby' +p290048 +sg225236 +S'1917' +p290049 +sa(dp290050 +g225232 +S'M.C. Escher' +p290051 +sg225240 +g27 +sg225234 +S'linoleum cut in brown on light tan paper' +p290052 +sg225230 +S'Chrysanthemum' +p290053 +sg225236 +S'probably 1916' +p290054 +sa(dp290055 +g225232 +S'M.C. Escher' +p290056 +sg225240 +g27 +sg225234 +S'woodcut in orange' +p290057 +sg225230 +S'(Color test for unidentified print)' +p290058 +sg225236 +S'unknown date\n' +p290059 +sa(dp290060 +g225232 +S'M.C. Escher' +p290061 +sg225240 +g27 +sg225234 +S'woodcut in blue' +p290062 +sg225230 +S'(Color test for unidentified print)' +p290063 +sg225236 +S'1971' +p290064 +sa(dp290065 +g225232 +S'M.C. Escher' +p290066 +sg225240 +g27 +sg225234 +S'woodcut in red' +p290067 +sg225230 +S'(Color test for unidentified print)' +p290068 +sg225236 +S'1971' +p290069 +sa(dp290070 +g225232 +S'M.C. Escher' +p290071 +sg225240 +g27 +sg225234 +S'linoleum cut in brown with graphite borders on ta n paper' +p290072 +sg225230 +S'Young Thrush' +p290073 +sg225236 +S'1917' +p290074 +sa(dp290075 +g225232 +S'M.C. Escher' +p290076 +sg225240 +g27 +sg225234 +S'linoleum cut in olive green on light tan wove paper' +p290077 +sg225230 +S'Fiet van Stolk-Van der Does de Willebois' +p290078 +sg225236 +S'1918' +p290079 +sa(dp290080 +g225232 +S'M.C. Escher' +p290081 +sg225240 +g27 +sg225234 +S'etching on off-white wove paper' +p290082 +sg225230 +S'Railway Bridge Across the Rhine at Oosterbeek' +p290083 +sg225236 +S'probably 1917' +p290084 +sa(dp290085 +g225232 +S'M.C. Escher' +p290086 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p290087 +sg225230 +S'Larix' +p290088 +sg225236 +S'1961' +p290089 +sa(dp290090 +g225232 +S'M.C. Escher' +p290091 +sg225240 +g27 +sg225234 +S'linoleum cut on light tan wove paper' +p290092 +sg225230 +S'Sunflowers' +p290093 +sg225236 +S'1918' +p290094 +sa(dp290095 +g225232 +S'M.C. Escher' +p290096 +sg225240 +g27 +sg225234 +S'linoleum cut in brown on light tan wove paper' +p290097 +sg225230 +S'Waves' +p290098 +sg225236 +S'1918' +p290099 +sa(dp290100 +g225232 +S'M.C. Escher' +p290101 +sg225240 +g27 +sg225234 +S'linoleum cut on light tan wove paper' +p290102 +sg225230 +S'The Borger Oak, Oosterbeek' +p290103 +sg225236 +S'1919' +p290104 +sa(dp290105 +g225232 +S'Gerd Arntz' +p290106 +sg225240 +g27 +sg225234 +S'lino-cut on wove paper' +p290107 +sg225230 +S'Letter "A"' +p290108 +sg225236 +S'published 1953' +p290109 +sa(dp290110 +g225232 +S'Various Artists' +p290111 +sg225240 +g27 +sg225234 +S'page size: 19.9 x 13.9 cm (7 13/16 x 5 1/2 in.)' +p290112 +sg225230 +S'Grafisch ABC' +p290113 +sg225236 +S'\nportfolio with table of contents and 26 prints in various techniques' +p290114 +sa(dp290115 +g225232 +S'Hubert Bekman' +p290116 +sg225240 +g27 +sg225234 +S'woodcut on wove paper' +p290117 +sg225230 +S'Letter "B"' +p290118 +sg225236 +S'published 1953' +p290119 +sa(dp290120 +g225232 +S'Pam Georg Rueter' +p290121 +sg225240 +g27 +sg225234 +S'woodcut on wove paper' +p290122 +sg225230 +S'Letter "C"' +p290123 +sg225236 +S'published 1953' +p290124 +sa(dp290125 +g225232 +S'Jenny Dalenoord' +p290126 +sg225240 +g27 +sg225234 +S'linoleum cut on wove paper' +p290127 +sg225230 +S'Letter "D"' +p290128 +sg225236 +S'published 1953' +p290129 +sa(dp290130 +g225232 +S'M.C. Escher' +p290131 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p290132 +sg225230 +S'"E is een Ezel" (Donkey)' +p290133 +sg225236 +S'published 1953' +p290134 +sa(dp290135 +g225232 +S'Wim Beuning' +p290136 +sg225240 +g27 +sg225234 +S'woodcut on wove paper' +p290137 +sg225230 +S'Letter "F"' +p290138 +sg225236 +S'published 1953' +p290139 +sa(dp290140 +g225232 +S'Jan Giesen' +p290141 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p290142 +sg225230 +S'Letter "G"' +p290143 +sg225236 +S'published 1953' +p290144 +sa(dp290145 +g225232 +S'Hans Marinus van Dokkum' +p290146 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p290147 +sg225230 +S'Letter "H"' +p290148 +sg225236 +S'published 1953' +p290149 +sa(dp290150 +g225232 +S'Ina Rahusen' +p290151 +sg225240 +g27 +sg225234 +S'woodcut on wove paper' +p290152 +sg225230 +S'Letter "I"' +p290153 +sg225236 +S'published 1953' +p290154 +sa(dp290155 +g225232 +S'Cor de Wolff' +p290156 +sg225240 +g27 +sg225234 +S'woodcut on wove paper' +p290157 +sg225230 +S'Letter "J"' +p290158 +sg225236 +S'published 1953' +p290159 +sa(dp290160 +g225232 +S'Harry van Kruiningen' +p290161 +sg225240 +g27 +sg225234 +S'lithograph on wove paper' +p290162 +sg225230 +S'Letter "K"' +p290163 +sg225236 +S'published 1953' +p290164 +sa(dp290165 +g225232 +S'Jacobus Marie Prange' +p290166 +sg225240 +g27 +sg225234 +S'woodcut on wove paper' +p290167 +sg225230 +S'Letter "L"' +p290168 +sg225236 +S'published 1953' +p290169 +sa(dp290170 +g225232 +S'M.C. Escher' +p290171 +sg225240 +g27 +sg225234 +S'woodcut on wove paper' +p290172 +sg225230 +S'"M is een Muis" (Mouse)' +p290173 +sg225236 +S'published 1953' +p290174 +sa(dp290175 +g225232 +S'Nico Bulder' +p290176 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p290177 +sg225230 +S'Letter "N"' +p290178 +sg225236 +S'published 1953' +p290179 +sa(dp290180 +g225232 +S'Jeanne Bieruma Oosting' +p290181 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p290182 +sg225230 +S'Letter "O"' +p290183 +sg225236 +S'published 1953' +p290184 +sa(dp290185 +g225232 +S'Jacobus Marie Prange' +p290186 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p290187 +sg225230 +S'Letter "P"' +p290188 +sg225236 +S'published 1953' +p290189 +sa(dp290190 +g225232 +S'Ru van Rossem' +p290191 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p290192 +sg225230 +S'Letter "Q"' +p290193 +sg225236 +S'published 1953' +p290194 +sa(dp290195 +g225232 +S'Pam Georg Rueter' +p290196 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p290197 +sg225230 +S'Letter "R"' +p290198 +sg225236 +S'published 1953' +p290199 +sa(dp290200 +g225232 +S'Ap Sok' +p290201 +sg225240 +g27 +sg225234 +S'woodcut on wove paper' +p290202 +sg225230 +S'Letter "S"' +p290203 +sg225236 +S'published 1953' +p290204 +sa(dp290205 +g225232 +S'Thijs Mauve' +p290206 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p290207 +sg225230 +S'Letter "T"' +p290208 +sg225236 +S'published 1953' +p290209 +sa(dp290210 +g225232 +S'Dick van Luijn' +p290211 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p290212 +sg225230 +S'Letter "U"' +p290213 +sg225236 +S'published 1953' +p290214 +sa(dp290215 +g225232 +S'Hans Marinus van Dokkum' +p290216 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p290217 +sg225230 +S'Letter "V"' +p290218 +sg225236 +S'published 1953' +p290219 +sa(dp290220 +g225232 +S'Cor de Wolff' +p290221 +sg225240 +g27 +sg225234 +S'woodcut on wove paper' +p290222 +sg225230 +S'Letter "W"' +p290223 +sg225236 +S'published 1953' +p290224 +sa(dp290225 +g225232 +S'Dirk van Gelder' +p290226 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p290227 +sg225230 +S'Letter "X"' +p290228 +sg225236 +S'published 1953' +p290229 +sa(dp290230 +g225232 +S'Pam Georg Rueter' +p290231 +sg225240 +g27 +sg225234 +S'wood engraving on wove paper' +p290232 +sg225230 +S'Letter "Y"' +p290233 +sg225236 +S'published 1953' +p290234 +sa(dp290235 +g225232 +S'Wim Zwiers' +p290236 +sg225240 +g27 +sg225234 +S'linoleum cut on wove paper' +p290237 +sg225230 +S'Letter "Z"' +p290238 +sg225236 +S'published 1953' +p290239 +sa(dp290240 +g225232 +S'Artist Information (' +p290241 +sg225240 +g27 +sg225234 +S'(author)' +p290242 +sg225230 +S'XXIV Emblemata dat zijn zinne-beelden' +p290243 +sg225236 +S'\n' +p290244 +sa(dp290245 +g225232 +S'Artist Information (' +p290246 +sg225240 +g27 +sg225234 +S'(author)' +p290247 +sg225230 +S'Het Bezwaarde Hart' +p290248 +sg225236 +S'\n' +p290249 +sa(dp290250 +g225232 +S'M.C. Escher' +p290251 +sg225240 +g27 +sg225234 +S'woodcut on wove paper' +p290252 +sg225230 +S'The Troubled Heart' +p290253 +sg225236 +S'1937' +p290254 +sa(dp290255 +g225232 +S'M.C. Escher' +p290256 +sg225240 +g27 +sg225234 +S'woodcut' +p290257 +sg225230 +S'The Troubled Heart' +p290258 +sg225236 +S'1937' +p290259 +sa(dp290260 +g225232 +S'M.C. Escher' +p290261 +sg225240 +g27 +sg225234 +S'1 vol: ill: 6 woodcuts in black on gray wove paper; extra set of 6 plates in red accompany volume (1983.109.43-48)' +p290262 +sg225230 +S'Regelmatige vlakverdeling' +p290263 +sg225236 +S'published 1958' +p290264 +sa(dp290265 +g225232 +S'Artist Information (' +p290266 +sg225240 +g27 +sg225234 +S'(author)' +p290267 +sg225230 +S'De vreeselijke avonturen van Scholastica' +p290268 +sg225236 +S'\n' +p290269 +sa(dp290270 +g225232 +S'Samuel Jessurun de Mesquita' +p290271 +sg225240 +g27 +sg225234 +S'etching with gray, blue and brown wash' +p290272 +sg225230 +S'Untitled' +p290273 +sg225236 +S'1927' +p290274 +sa(dp290275 +g225232 +S'Gertraud Brausewetter' +p290276 +sg225240 +g27 +sg225234 +S'woodcut' +p290277 +sg225230 +S'Adam and Eve in the Garden of Eden' +p290278 +sg225236 +S'1918' +p290279 +sa(dp290280 +g225232 +S'Gertraud Brausewetter' +p290281 +sg225240 +g27 +sg225234 +S'woodcut' +p290282 +sg225230 +S'The Christ Child with the Virgin Mary' +p290283 +sg225236 +S'1917' +p290284 +sa(dp290285 +g225232 +S'M.C. Escher' +p290286 +sg225240 +g27 +sg225234 +S'linoleum cut in blue and brown on brown paper' +p290287 +sg225230 +S'Baby' +p290288 +sg225236 +S'1917' +p290289 +sa(dp290290 +g225232 +S'M.C. Escher' +p290291 +sg225240 +g27 +sg225234 +S'linoleum cut' +p290292 +sg225230 +S'Sunflowers' +p290293 +sg225236 +S'1918' +p290294 +sa(dp290295 +g225232 +S'M.C. Escher' +p290296 +sg225240 +g27 +sg225234 +S'linoleum cut in two browns, printed from two blocks, on brown paper' +p290297 +sg225230 +S'Self-Portrait' +p290298 +sg225236 +S'1918' +p290299 +sa(dp290300 +g225230 +S'Siena' +p290301 +sg225232 +S'M.C. Escher' +p290302 +sg225234 +S'woodcut' +p290303 +sg225236 +S'1922' +p290304 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b5c.jpg' +p290305 +sg225240 +g27 +sa(dp290306 +g225230 +S'Serenade in Siena' +p290307 +sg225232 +S'M.C. Escher' +p290308 +sg225234 +S'woodcut' +p290309 +sg225236 +S'1923' +p290310 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b5d.jpg' +p290311 +sg225240 +g27 +sa(dp290312 +g225230 +S'Palm Tree' +p290313 +sg225232 +S'M.C. Escher' +p290314 +sg225234 +S'woodcut' +p290315 +sg225236 +S'1923' +p290316 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b5e.jpg' +p290317 +sg225240 +g27 +sa(dp290318 +g225232 +S'M.C. Escher' +p290319 +sg225240 +g27 +sg225234 +S'woodcut' +p290320 +sg225230 +S'G. Escher-Umiker' +p290321 +sg225236 +S'1925' +p290322 +sa(dp290323 +g225232 +S'M.C. Escher' +p290324 +sg225240 +g27 +sg225234 +S'woodcut' +p290325 +sg225230 +S'Cave Dwellings, Sicily' +p290326 +sg225236 +S'1933' +p290327 +sa(dp290328 +g225232 +S'M.C. Escher' +p290329 +sg225240 +g27 +sg225234 +S'woodcut' +p290330 +sg225230 +S"Colonnade of St. Peter's" +p290331 +sg225236 +S'1934' +p290332 +sa(dp290333 +g225232 +S'M.C. Escher' +p290334 +sg225240 +g27 +sg225234 +S'woodcut' +p290335 +sg225230 +S'San Nicola in Carcere' +p290336 +sg225236 +S'1934' +p290337 +sa(dp290338 +g225232 +S'M.C. Escher' +p290339 +sg225240 +g27 +sg225234 +S'woodcut' +p290340 +sg225230 +S'Colosseum' +p290341 +sg225236 +S'1934' +p290342 +sa(dp290343 +g225232 +S'M.C. Escher' +p290344 +sg225240 +g27 +sg225234 +S'wood engraving' +p290345 +sg225230 +S"St. Peter's from the Gianicolo" +p290346 +sg225236 +S'1935' +p290347 +sa(dp290348 +g225232 +S'Ben Shahn' +p290349 +sg225240 +g27 +sg225234 +S'screenprint in black with hand-coloring and applied gold leaf on Asian paper' +p290350 +sg225230 +S'Menorah' +p290351 +sg225236 +S'1965' +p290352 +sa(dp290353 +g225232 +S'Ben Shahn' +p290354 +sg225240 +g27 +sg225234 +S'gouache' +p290355 +sg225230 +S'Untitled' +p290356 +sg225236 +S'unknown date\n' +p290357 +sa(dp290358 +g225232 +S'Ernest Tino Trova' +p290359 +sg225240 +g27 +sg225234 +S'collage with mustard-yellow, pink, red and blue paper on pale yellow paper' +p290360 +sg225230 +S'Falling Man' +p290361 +sg225236 +S'1967' +p290362 +sa(dp290363 +g225232 +S'Bridget Riley' +p290364 +sg225240 +g27 +sg225234 +S'silkscreen in pink, green, blue, and gray on wove paper' +p290365 +sg225230 +S'Elapse' +p290366 +sg225236 +S'1982' +p290367 +sa(dp290368 +g225232 +S'Artist Information (' +p290369 +sg225240 +g27 +sg225234 +g27 +sg225230 +S'Sure Violet' +p290370 +sg225236 +S'(technical collaborator)' +p290371 +sa(dp290372 +g225230 +S'Kofelberg Oberammergau' +p290373 +sg225232 +S'Marsden Hartley' +p290374 +sg225234 +S'lithograph' +p290375 +sg225236 +S'1934' +p290376 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ab4.jpg' +p290377 +sg225240 +g27 +sa(dp290378 +g225232 +S'David Hockney' +p290379 +sg225240 +g27 +sg225234 +S'lithograph in blue' +p290380 +sg225230 +S'Lithographic Water Made of Lines (Pool II-B)' +p290381 +sg225236 +S'1978' +p290382 +sa(dp290383 +g225232 +S'David Hockney' +p290384 +sg225240 +g27 +sg225234 +S'soft-ground and hard-ground etching in red and blue on Arches paper' +p290385 +sg225230 +S"Geography Book (F\xc3\xa9licit\xc3\xa9's only view from abroad)" +p290386 +sg225236 +S'1974' +p290387 +sa(dp290388 +g225232 +S'David Hockney' +p290389 +sg225240 +g27 +sg225234 +S'soft-ground and hard-ground etching in red and twoblues on Inveresk paper' +p290390 +sg225230 +S'Gregory' +p290391 +sg225236 +S'1974' +p290392 +sa(dp290393 +g225232 +S'David Hockney' +p290394 +sg225240 +g27 +sg225234 +S'5-color etching on Arches paper' +p290395 +sg225230 +S'Godetia' +p290396 +sg225236 +S'1973' +p290397 +sa(dp290398 +g225232 +S'Ed Ruscha' +p290399 +sg225240 +g27 +sg225234 +S'3-color screenprint on Panache paper' +p290400 +sg225230 +S'Home with Complete Electronic Security System' +p290401 +sg225236 +S'1982' +p290402 +sa(dp290403 +g225232 +S'Louis Lozowick' +p290404 +sg225240 +g27 +sg225234 +S'lithograph on wove paper' +p290405 +sg225230 +S'Above the City' +p290406 +sg225236 +S'1932' +p290407 +sa(dp290408 +g225232 +S'John Grazier' +p290409 +sg225240 +g27 +sg225234 +S'lithograph in black' +p290410 +sg225230 +S'Breaking Up' +p290411 +sg225236 +S'1976' +p290412 +sa(dp290413 +g225232 +S'John Grazier' +p290414 +sg225240 +g27 +sg225234 +S'lithograph in black' +p290415 +sg225230 +S'Memory of a Porch' +p290416 +sg225236 +S'1975' +p290417 +sa(dp290418 +g225232 +S'Artist Information (' +p290419 +sg225240 +g27 +sg225234 +S'(artist)' +p290420 +sg225230 +S'Differentes vues de quelques restes de trois grands edifices ... de Pesto' +p290421 +sg225236 +S'\n' +p290422 +sa(dp290423 +g225232 +S'Giovanni Battista Piranesi' +p290424 +sg225240 +g27 +sg225234 +S'etching, engraving, sulphur tint or open bite on laid paper' +p290425 +sg225230 +S'Title Plate' +p290426 +sg225236 +S'published 1761' +p290427 +sa(dp290428 +g225232 +S'Giovanni Battista Piranesi' +p290429 +sg225240 +g27 +sg225234 +S'etching and engraving on laid paper' +p290430 +sg225230 +S'The Man on the Rack' +p290431 +sg225236 +S'published 1761' +p290432 +sa(dp290433 +g225230 +S'The Round Tower' +p290434 +sg225232 +S'Giovanni Battista Piranesi' +p290435 +sg225234 +S'etching, engraving, sulphur tint or open bite, and burnishing on laid paper' +p290436 +sg225236 +S'published 1761' +p290437 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00054/a000548a.jpg' +p290438 +sg225240 +g27 +sa(dp290439 +g225232 +S'Giovanni Battista Piranesi' +p290440 +sg225240 +g27 +sg225234 +S'etching, engraving, sulphur tint or open bite, and burnishing on laid paper' +p290441 +sg225230 +S'The Grand Piazza' +p290442 +sg225236 +S'published 1761' +p290443 +sa(dp290444 +g225232 +S'Giovanni Battista Piranesi' +p290445 +sg225240 +g27 +sg225234 +S'etching and engraving on laid paper' +p290446 +sg225230 +S'The Lion Bas-Reliefs' +p290447 +sg225236 +S'published 1761' +p290448 +sa(dp290449 +g225232 +S'Giovanni Battista Piranesi' +p290450 +sg225240 +g27 +sg225234 +S'etching, engraving, sulphur tint or open bite, and burnishing on laid paper' +p290451 +sg225230 +S'The Smoking Fire' +p290452 +sg225236 +S'published 1761' +p290453 +sa(dp290454 +g225232 +S'Giovanni Battista Piranesi' +p290455 +sg225240 +g27 +sg225234 +S'etching and engraving with scratching on laid paper' +p290456 +sg225230 +S'The Drawbridge' +p290457 +sg225236 +S'published 1761' +p290458 +sa(dp290459 +g225232 +S'Giovanni Battista Piranesi' +p290460 +sg225240 +g27 +sg225234 +S'etching and engraving on laid paper' +p290461 +sg225230 +S'The Staircase with Trophies' +p290462 +sg225236 +S'published 1761' +p290463 +sa(dp290464 +g225232 +S'Giovanni Battista Piranesi' +p290465 +sg225240 +g27 +sg225234 +S'etching and engraving on laid paper' +p290466 +sg225230 +S'The Giant Wheel' +p290467 +sg225236 +S'published 1761' +p290468 +sa(dp290469 +g225232 +S'Giovanni Battista Piranesi' +p290470 +sg225240 +g27 +sg225234 +S'etching, engraving, sulphur tint or open bite, and burnishing on laid paper' +p290471 +sg225230 +S'Prisoners on a Projecting Platform' +p290472 +sg225236 +S'published 1761' +p290473 +sa(dp290474 +g225232 +S'Giovanni Battista Piranesi' +p290475 +sg225240 +g27 +sg225234 +S'etching, engraving, scratching, sulphur tint or open bite, and drypoint on laid paper' +p290476 +sg225230 +S'The Arch with a Shell Ornament' +p290477 +sg225236 +S'published 1761' +p290478 +sa(dp290479 +g225232 +S'Giovanni Battista Piranesi' +p290480 +sg225240 +g27 +sg225234 +S'etching, engraving, sulphur tint or open bite, and scratching on laid paper' +p290481 +sg225230 +S'The Sawhorse' +p290482 +sg225236 +S'published 1761' +p290483 +sa(dp290484 +g225232 +S'Giovanni Battista Piranesi' +p290485 +sg225240 +g27 +sg225234 +S'etching, engraving, scratching, burnishing, and lavis on laid paper' +p290486 +sg225230 +S'The Well' +p290487 +sg225236 +S'published 1761' +p290488 +sa(dp290489 +g225232 +S'Giovanni Battista Piranesi' +p290490 +sg225240 +g27 +sg225234 +S'etching, engraving, sulphur tint or open bite, and burnishing on laid paper' +p290491 +sg225230 +S'The Gothic Arch' +p290492 +sg225236 +S'published 1761' +p290493 +sa(dp290494 +g225232 +S'Giovanni Battista Piranesi' +p290495 +sg225240 +g27 +sg225234 +S'etching, engraving, sulphur tint or open bite, and burnishing on laid paper' +p290496 +sg225230 +S'The Pier with a Lamp' +p290497 +sg225236 +S'published 1761' +p290498 +sa(dp290499 +g225232 +S'Giovanni Battista Piranesi' +p290500 +sg225240 +g27 +sg225234 +S'etching, engraving, sulphur tint or open bite, and burnishing on laid paper' +p290501 +sg225230 +S'The Pier with Chains' +p290502 +sg225236 +S'published 1761' +p290503 +sa(dp290504 +g225232 +S'Artist Information (' +p290505 +sg225240 +g27 +sg225234 +S'(artist)' +p290506 +sg225230 +S'Villa Pamphilia eiusque Palatium cum suis prospectibus, statuae, fontes, vivaria, the' +p290507 +sg225236 +S'\n' +p290508 +sa(dp290509 +g225232 +S'Artist Information (' +p290510 +sg225240 +g27 +sg225234 +S'(artist after)' +p290511 +sg225230 +S'Camillus Pamphilius' +p290512 +sg225236 +S'\n' +p290513 +sa(dp290514 +g225232 +S'Dominique Barri\xc3\xa8re' +p290515 +sg225240 +g27 +sg225234 +S'etching' +p290516 +sg225230 +S'(Half-Title with a stone gate and garden view)' +p290517 +sg225236 +S'unknown date\n' +p290518 +sa(dp290519 +g225230 +S'Horseman and Attendants at the Edge of a Wood' +p290520 +sg225232 +S'Roelant Roghman' +p290521 +sg225234 +S'black chalk and gray wash on laid paper' +p290522 +sg225236 +S'unknown date\n' +p290523 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a000721a.jpg' +p290524 +sg225240 +g27 +sa(dp290525 +g225232 +S'Giorgio De Chirico' +p290526 +sg225240 +g27 +sg225234 +S'lithograph on wove paper' +p290527 +sg225230 +S'Bagni Misteriosi' +p290528 +sg225236 +S'unknown date\n' +p290529 +sa(dp290530 +g225232 +S'American 20th Century' +p290531 +sg225240 +g27 +sg225234 +S'overall: 49.3 x 75.8 cm (19 7/16 x 29 13/16 in.)' +p290532 +sg225230 +S'View of Constitution Avenue Entrance to the National Gallery' +p290533 +sg225236 +S'\npen and brown ink with gray wash' +p290534 +sa(dp290535 +g225230 +S'Lovers in a Thunderstorm' +p290536 +sg225232 +S'Daniel Nikolaus Chodowiecki' +p290537 +sg225234 +S'pen and black and brown ink with gray wash and white heightening over black chalk on buff laid paper' +p290538 +sg225236 +S'unknown date\n' +p290539 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f18.jpg' +p290540 +sg225240 +g27 +sa(dp290541 +g225230 +S'Fan Design [recto]' +p290542 +sg225232 +S'Lovis Corinth' +p290543 +sg225234 +S'graphite on green paper' +p290544 +sg225236 +S'probably 1906' +p290545 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00020/a0002026.jpg' +p290546 +sg225240 +g27 +sa(dp290547 +g225230 +S'Fan Design [verso]' +p290548 +sg225232 +S'Lovis Corinth' +p290549 +sg225234 +S'graphite on green paper' +p290550 +sg225236 +S'probably 1906' +p290551 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072ef.jpg' +p290552 +sg225240 +g27 +sa(dp290553 +g225230 +S'Seated Young Woman [recto]' +p290554 +sg225232 +S'Lovis Corinth' +p290555 +sg225234 +S'graphite on wove paper' +p290556 +sg225236 +S'1889' +p290557 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a0007283.jpg' +p290558 +sg225240 +g27 +sa(dp290559 +g225232 +S'Lovis Corinth' +p290560 +sg225240 +g27 +sg225234 +S'graphite on wove paper' +p290561 +sg225230 +S'Reclining Female; Seated Man in a Top Hat [verso]' +p290562 +sg225236 +S'probably c. 1889' +p290563 +sa(dp290564 +g225230 +S'The Nauwerk Family' +p290565 +sg225232 +S'Johan Christian Dahl' +p290566 +sg225234 +S'pen and brown ink over graphite on laid paper' +p290567 +sg225236 +S'1819' +p290568 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a57.jpg' +p290569 +sg225240 +g27 +sa(dp290570 +g225230 +S'Nude Woman' +p290571 +sg225232 +S'Arthur B. Davies' +p290572 +sg225234 +S'graphite over black crayon on light green paper' +p290573 +sg225236 +S'unknown date\n' +p290574 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008d0.jpg' +p290575 +sg225240 +g27 +sa(dp290576 +g225230 +S'Oriental in a Fantastic Headdress' +p290577 +sg225232 +S'Christian Wilhelm Ernst Dietrich' +p290578 +sg225234 +S'pen and brown ink on laid paper' +p290579 +sg225236 +S'1731/1732' +p290580 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d76.jpg' +p290581 +sg225240 +g27 +sa(dp290582 +g225230 +S'Two Men Resting near a Lake' +p290583 +sg225232 +S'Johann Christoph Dietzsch' +p290584 +sg225234 +S'black chalk with gray and black wash' +p290585 +sg225236 +S'unknown date\n' +p290586 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a00079a7.jpg' +p290587 +sg225240 +g27 +sa(dp290588 +g225230 +S'Travelers in a Rocky Wood' +p290589 +sg225232 +S'Johann Christoph Dietzsch' +p290590 +sg225234 +S'black chalk with gray and black wash' +p290591 +sg225236 +S'unknown date\n' +p290592 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a00079a8.jpg' +p290593 +sg225240 +g27 +sa(dp290594 +g225230 +S'The Assassination of King Wenzel III' +p290595 +sg225232 +S'Josef von F\xc3\xbchrich' +p290596 +sg225234 +S'pen and black ink with gray and light brown wash' +p290597 +sg225236 +S'unknown date\n' +p290598 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00069/a0006990.jpg' +p290599 +sg225240 +g27 +sa(dp290600 +g225230 +S'Studies for a Boatman' +p290601 +sg225232 +S'Otto Greiner' +p290602 +sg225234 +S'black and blue chalk on red-brown paper' +p290603 +sg225236 +S'unknown date\n' +p290604 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fe2.jpg' +p290605 +sg225240 +g27 +sa(dp290606 +g225230 +S'Studies of Men in Togas [recto]' +p290607 +sg225232 +S'Otto Greiner' +p290608 +sg225234 +S'black chalk on wove paper' +p290609 +sg225236 +S'unknown date\n' +p290610 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f88.jpg' +p290611 +sg225240 +g27 +sa(dp290612 +g225232 +S'Otto Greiner' +p290613 +sg225240 +g27 +sg225234 +S'black chalk on wove paper' +p290614 +sg225230 +S'Studies of Monks [verso]' +p290615 +sg225236 +S'unknown date\n' +p290616 +sa(dp290617 +g225230 +S'View of Trento' +p290618 +sg225232 +S'Albert Emil Kirchner' +p290619 +sg225234 +S'pen and brown ink with gouache heightened with white on brown paper' +p290620 +sg225236 +S'unknown date\n' +p290621 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006efa.jpg' +p290622 +sg225240 +g27 +sa(dp290623 +g225230 +S'Wallachian Wagoners Resting' +p290624 +sg225232 +S'Johann Adam Klein' +p290625 +sg225234 +S'graphite and pen and ink' +p290626 +sg225236 +S'probably c. 1813' +p290627 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d99.jpg' +p290628 +sg225240 +g27 +sa(dp290629 +g225230 +S'Satyrs and Nymphs' +p290630 +sg225232 +S'Martin Johann Schmidt' +p290631 +sg225234 +S'pen and brown ink with correction in lead white' +p290632 +sg225236 +S'c. 1765' +p290633 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00069/a0006984.jpg' +p290634 +sg225240 +g27 +sa(dp290635 +g225230 +S'Road through the Woods near Kresselbach' +p290636 +sg225232 +S'T. Lamey' +p290637 +sg225234 +S'pen and black ink with brown wash on laid paper' +p290638 +sg225236 +S'1805' +p290639 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a000716a.jpg' +p290640 +sg225240 +g27 +sa(dp290641 +g225230 +S'Flight of Stone Steps in a Garden' +p290642 +sg225232 +S'Adolph Menzel' +p290643 +sg225234 +S'graphite' +p290644 +sg225236 +S'unknown date\n' +p290645 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a000728b.jpg' +p290646 +sg225240 +g27 +sa(dp290647 +g225230 +S'A Young Couple Seated near a Massive Rock Formation' +p290648 +sg225232 +S'Johann August Nahl II' +p290649 +sg225234 +S'pen and brown ink with brown wash over graphite on laid paper' +p290650 +sg225236 +S'unknown date\n' +p290651 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a0007999.jpg' +p290652 +sg225240 +g27 +sa(dp290653 +g225230 +S'Head of a Young Woman' +p290654 +sg225232 +S'Moritz Daniel Oppenheim' +p290655 +sg225234 +S'graphite' +p290656 +sg225236 +S'unknown date\n' +p290657 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fc6.jpg' +p290658 +sg225240 +g27 +sa(dp290659 +g225230 +S'View of Capri' +p290660 +sg225232 +S'Gustaf Wilhelm Palm' +p290661 +sg225234 +S'graphite and gray wash' +p290662 +sg225236 +S'1841' +p290663 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006ab1.jpg' +p290664 +sg225240 +g27 +sa(dp290665 +g225232 +S'Max Pechstein' +p290666 +sg225240 +g27 +sg225234 +S'watercolor over graphite' +p290667 +sg225230 +S'Lovers by the Seashore' +p290668 +sg225236 +S'1919' +p290669 +sa(dp290670 +g225230 +S'Scene from Act IV from Goethe\'s "Gotz von Berlichingen"' +p290671 +sg225232 +S'Franz Pforr' +p290672 +sg225234 +S'pen and black ink with gray wash' +p290673 +sg225236 +S'c. 1810' +p290674 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ce1.jpg' +p290675 +sg225240 +g27 +sa(dp290676 +g225230 +S'View of Salzburg' +p290677 +sg225232 +S'Johann Georg von Dillis' +p290678 +sg225234 +S'pen and gray ink with gray and brown washes, heightened with pink, over graphite on blue paper' +p290679 +sg225236 +S'1820s' +p290680 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00065/a00065cb.jpg' +p290681 +sg225240 +g27 +sa(dp290682 +g225230 +S'Alpine Landscape' +p290683 +sg225232 +S'Friedrich Salath\xc3\xa9' +p290684 +sg225234 +S'gouache over graphite' +p290685 +sg225236 +S'unknown date\n' +p290686 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a28.jpg' +p290687 +sg225240 +g27 +sa(dp290688 +g225230 +S'Studies of Hands' +p290689 +sg225232 +S'John Singer Sargent' +p290690 +sg225234 +S'black chalk on gray paper' +p290691 +sg225236 +S'unknown date\n' +p290692 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004fcd.jpg' +p290693 +sg225240 +g27 +sa(dp290694 +g225230 +S'Figure Studies of a Nude Youth' +p290695 +sg225232 +S'John Singer Sargent' +p290696 +sg225234 +S'black chalk on laid paper' +p290697 +sg225236 +S'unknown date\n' +p290698 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004fce.jpg' +p290699 +sg225240 +g27 +sa(dp290700 +g225230 +S'Market Scene' +p290701 +sg225232 +S'Anton Wachsmann' +p290702 +sg225234 +S'pen and black ink with gray wash over graphite' +p290703 +sg225236 +S'c. 1800' +p290704 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00071/a0007156.jpg' +p290705 +sg225240 +g27 +sa(dp290706 +g225230 +S'Vincenzio Piombi' +p290707 +sg225232 +S'Jean-Baptiste Joseph Wicar' +p290708 +sg225234 +S'black chalk on laid paper' +p290709 +sg225236 +S'unknown date\n' +p290710 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e95.jpg' +p290711 +sg225240 +g27 +sa(dp290712 +g225230 +S'Portrait of a Girl' +p290713 +sg225232 +S'Adrian Zingg' +p290714 +sg225234 +S'graphite within an etched frame on laid paper' +p290715 +sg225236 +S'unknown date\n' +p290716 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a1d.jpg' +p290717 +sg225240 +g27 +sa(dp290718 +g225230 +S'Allegorical Female Figure in a Landscape [recto]' +p290719 +sg225232 +S'German 17th Century' +p290720 +sg225234 +S'overall: 14.7 x 20.4 cm (5 13/16 x 8 1/16 in.)' +p290721 +sg225236 +S'\npen and brown ink with gray and brown wash' +p290722 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dc2.jpg' +p290723 +sg225240 +g27 +sa(dp290724 +g225232 +S'German 17th Century' +p290725 +sg225240 +g27 +sg225234 +S'overall: 20.4 x 14.7 cm (8 1/16 x 5 13/16 in.)' +p290726 +sg225230 +S'Street Scene [verso]' +p290727 +sg225236 +S'\nred chalk' +p290728 +sa(dp290729 +g225230 +S'Water and Earth/Autumn and Winter' +p290730 +sg225232 +S'Swiss 16th Century' +p290731 +sg225234 +S'overall: 20.3 x 20.9 cm (8 x 8 1/4 in.)' +p290732 +sg225236 +S'\npen and black ink with gray wash' +p290733 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a12.jpg' +p290734 +sg225240 +g27 +sa(dp290735 +g225230 +S'Seated Girl in Peasant Costume' +p290736 +sg225232 +S'Swiss 19th Century' +p290737 +sg225234 +S'overall (approximate): 31.9 x 25.5 cm (12 9/16 x 10 1/16 in.)' +p290738 +sg225236 +S'\nblack crayon' +p290739 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a30.jpg' +p290740 +sg225240 +g27 +sa(dp290741 +g225230 +S'John Beale Bordley' +p290742 +sg225232 +S'Charles Willson Peale' +p290743 +sg225234 +S'oil on canvas' +p290744 +sg225236 +S'1770' +p290745 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00001/a00001a4.jpg' +p290746 +sg225240 +S"John Beale Bordley, a close friend of Charles Willson Peale, raised the funds\nin 1766 to send the young artist to London, where Peale trained under Benjamin West's\ntutelage. In the stormy years before the American Revolution, Bordley was a Maryland\nplanter, judge, and member of the Governor's Council. A fervent republican, he gave\nPeale his first major commission -- for life-size, symbolic portraits that were to\nbe exhibited in London as declarations of colonial opposition.\n The portrait addresses two political issues: America's agricultural self-sufficiency,\nand her fair treatment. The first of these concepts is referred to in the background,\nwhich depicts Bordley's plantation on Wye Island in the Chesapeake Bay. A peach\ntree and a packhorse signify America's abundance, while the grazing sheep speak\nfor freedom from imported, British woolens. The theme of tyranny dominates the foreground.\nBordley, trained as a lawyer, assumes an attitude of debate, raising his hand in\na gesture of argumentation. He points to a statue of British Liberty holding the\nscales of justice, reminding English viewers that the colonists lived under British\nlaw and, thus, were entitled to the rights it guaranteed. That Britain had violated\nthese rights is signified by the legal document, torn and discarded at Bordley's\nfeet. A poisonous plant at the statue's base -- the native American jimson weed --\nwarns of the deadly consequences of any attack on American civil liberties.\n " +p290747 +sa(dp290748 +g225230 +S'Cavalier with a Harlot' +p290749 +sg225232 +S'Netherlandish 17th Century' +p290750 +sg225234 +S'overall: 11.2 x 11.9 cm (4 7/16 x 4 11/16 in.)' +p290751 +sg225236 +S'\npen and brown ink' +p290752 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ec1.jpg' +p290753 +sg225240 +g27 +sa(dp290754 +g225230 +S'Head of an Old Man' +p290755 +sg225232 +S'Gerrit Claesz Bleker' +p290756 +sg225234 +S', unknown date' +p290757 +sg225236 +S'\n' +p290758 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a00070fb.jpg' +p290759 +sg225240 +g27 +sa(dp290760 +g225230 +S'The Risen Christ Surrounded by Saints' +p290761 +sg225232 +S'Jan Boeckhorst' +p290762 +sg225234 +S'colored wash with heightening' +p290763 +sg225236 +S'c. 1660' +p290764 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d7c.jpg' +p290765 +sg225240 +g27 +sa(dp290766 +g225230 +S'Seated Cavalier' +p290767 +sg225232 +S'Jan Philipz van Bouckhorst' +p290768 +sg225234 +S', c. 1630' +p290769 +sg225236 +S'\n' +p290770 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a000703d.jpg' +p290771 +sg225240 +g27 +sa(dp290772 +g225230 +S'Jacob Meyer-Heine' +p290773 +sg225232 +S'F\xc3\xa9lix Bracquemond' +p290774 +sg225234 +S'graphite with pen and black ink' +p290775 +sg225236 +S'1872' +p290776 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a0007062.jpg' +p290777 +sg225240 +g27 +sa(dp290778 +g225230 +S'Tomb of Plautius' +p290779 +sg225232 +S'Bartholomeus Breenbergh' +p290780 +sg225234 +S'brown wash on laid paper' +p290781 +sg225236 +S'unknown date\n' +p290782 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fdf.jpg' +p290783 +sg225240 +g27 +sa(dp290784 +g225230 +S'Erminia' +p290785 +sg225232 +S'Peter von Cornelius' +p290786 +sg225234 +S'pen and brown ink with gray wash over graphite on wove paper' +p290787 +sg225236 +S'unknown date\n' +p290788 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000b9/a000b954.jpg' +p290789 +sg225240 +g27 +sa(dp290790 +g225230 +S'View through the Trees at Tivoli [recto]' +p290791 +sg225232 +S'Jasper Francis Cropsey' +p290792 +sg225234 +S'graphite with brown wash on brown paper' +p290793 +sg225236 +S'1848' +p290794 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008ce.jpg' +p290795 +sg225240 +g27 +sa(dp290796 +g225232 +S'Jasper Francis Cropsey' +p290797 +sg225240 +g27 +sg225234 +S'graphite on brown paper' +p290798 +sg225230 +S'View of a Mountain [verso]' +p290799 +sg225236 +S'unknown date\n' +p290800 +sa(dp290801 +g225230 +S"The Poleman in the Ma'sh" +p290802 +sg225232 +S'Thomas Eakins' +p290803 +sg225234 +S'brown wash heightened with white over graphite and black chalk' +p290804 +sg225236 +S'c. 1881' +p290805 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00008/a00008da.jpg' +p290806 +sg225240 +g27 +sa(dp290807 +g225230 +S'The Angel of the Annunciation' +p290808 +sg225232 +S'Guercino' +p290809 +sg225234 +S', c. 1638/1639' +p290810 +sg225236 +S'\n' +p290811 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007461.jpg' +p290812 +sg225240 +g27 +sa(dp290813 +g225230 +S'Giovanni da Bologna' +p290814 +sg225232 +S'Joseph Heintz the Elder' +p290815 +sg225234 +S'black and red chalks on laid paper' +p290816 +sg225236 +S'c. 1587' +p290817 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00025/a0002553.jpg' +p290818 +sg225240 +g27 +sa(dp290819 +g225232 +S'Thomas Hovenden' +p290820 +sg225240 +g27 +sg225234 +S'charcoal on off-white laid paper' +p290821 +sg225230 +S'Standing Nude Girl' +p290822 +sg225236 +S'unknown date\n' +p290823 +sa(dp290824 +g225230 +S'"It is good candles which light the way"' +p290825 +sg225232 +S'Jacob Jordaens' +p290826 +sg225234 +S'pen and ink with brown wash and white heightening over black and red chalk on laid paper' +p290827 +sg225236 +S'1640s' +p290828 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00070/a00070aa.jpg' +p290829 +sg225240 +g27 +sa(dp290830 +g225230 +S'The Presentation in the Temple' +p290831 +sg225232 +S'Laurent de La Hyre' +p290832 +sg225234 +S'black chalk with gray wash on laid paper, with later framing line in black ink' +p290833 +sg225236 +S'c. 1648' +p290834 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f5c.jpg' +p290835 +sg225240 +g27 +sa(dp290836 +g225230 +S'Head of a Macedonian Soldier' +p290837 +sg225232 +S'Charles Le Brun' +p290838 +sg225234 +S', c. 1668' +p290839 +sg225236 +S'\n' +p290840 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f84.jpg' +p290841 +sg225240 +g27 +sa(dp290842 +g225230 +S'Head of a Bearded Man' +p290843 +sg225232 +S'Benedetto Luti' +p290844 +sg225234 +S'pastel on laid paper' +p290845 +sg225236 +S'1715' +p290846 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074b3.jpg' +p290847 +sg225240 +g27 +sa(dp290848 +g225230 +S'The Judgment of Solomon' +p290849 +sg225232 +S'Master of the Liechtenstein Adoration' +p290850 +sg225234 +S'pen and ink with gray wash and heightening over black chalk on prepared paper' +p290851 +sg225236 +S'c. 1550' +p290852 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00079/a0007992.jpg' +p290853 +sg225240 +g27 +sa(dp290854 +g225230 +S'Studies for Saint Anne in "Education of the Virgin"' +p290855 +sg225232 +S'Agostino Masucci' +p290856 +sg225234 +S'black, red and blue chalk on blue laid paper' +p290857 +sg225236 +S'unknown date\n' +p290858 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007431.jpg' +p290859 +sg225240 +g27 +sa(dp290860 +g225230 +S'Studies of a Man Drinking' +p290861 +sg225232 +S'Adolph Menzel' +p290862 +sg225234 +S'graphite on wove paper' +p290863 +sg225236 +S'1888' +p290864 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00072/a00072c2.jpg' +p290865 +sg225240 +g27 +sa(dp290866 +g225230 +S'Sunlit Garden' +p290867 +sg225232 +S'Jean-Baptiste Millet' +p290868 +sg225234 +S'black chalk with gray wash' +p290869 +sg225236 +S'unknown date\n' +p290870 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00073/a00073f7.jpg' +p290871 +sg225240 +g27 +sa(dp290872 +g225230 +S'Christ and the Virgin with Music-Making Angels' +p290873 +sg225232 +S'Johann Friedrich Overbeck' +p290874 +sg225234 +S'graphite on wove paper' +p290875 +sg225236 +S'unknown date\n' +p290876 +sg225238 +S'http://www.nga.gov:80/thumb-l/a000ba/a000bade.jpg' +p290877 +sg225240 +g27 +sa(dp290878 +g225230 +S'Caliph Aladin and His Counselors' +p290879 +sg225232 +S'Giovanni Battista Piazzetta' +p290880 +sg225234 +S'black chalk (with extraneous marks in red chalk) on laid paper' +p290881 +sg225236 +S'late 1730s' +p290882 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a0007432.jpg' +p290883 +sg225240 +g27 +sa(dp290884 +g225230 +S'Statue of a Female in a Toga' +p290885 +sg225232 +S'Hubert Robert' +p290886 +sg225234 +S'black chalk on laid paper' +p290887 +sg225236 +S'probably c. 1754/1765' +p290888 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061d5.jpg' +p290889 +sg225240 +g27 +sa(dp290890 +g225232 +S'Hubert Robert' +p290891 +sg225240 +g27 +sg225234 +S'bound volume with 46 pages of 38 chalk and graphite drawings' +p290892 +sg225230 +S'Album of Drawings' +p290893 +sg225236 +S'probably c. 1754/1763' +p290894 +sa(dp290895 +g225230 +S'Statue of Abundance [recto]' +p290896 +sg225232 +S'Hubert Robert' +p290897 +sg225234 +S'black chalk' +p290898 +sg225236 +S'probably c. 1754/1765' +p290899 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061d2.jpg' +p290900 +sg225240 +g27 +sa(dp290901 +g225230 +S'Statue of a Roman Woman (Female Deity?) Seen from the Side [verso]' +p290902 +sg225232 +S'Hubert Robert' +p290903 +sg225234 +S'black chalk' +p290904 +sg225236 +S'probably c. 1754/1765' +p290905 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061d3.jpg' +p290906 +sg225240 +g27 +sa(dp290907 +g225230 +S'A Decorative Sculpture with a Woman Seen from Behind' +p290908 +sg225232 +S'Hubert Robert' +p290909 +sg225234 +S'graphite on laid paper' +p290910 +sg225236 +S'1754/1765' +p290911 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00060/a000607e.jpg' +p290912 +sg225240 +g27 +sa(dp290913 +g225230 +S'Statue of a Male Nude with Hand on Hip' +p290914 +sg225232 +S'Hubert Robert' +p290915 +sg225234 +S'graphite on laid paper' +p290916 +sg225236 +S'probably c. 1754/1765' +p290917 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061c5.jpg' +p290918 +sg225240 +g27 +sa(dp290919 +g225230 +S'Figures on a Monumental Interior Stairway [recto]' +p290920 +sg225232 +S'Hubert Robert' +p290921 +sg225234 +S'graphite on laid paper' +p290922 +sg225236 +S'probably c. 1754/1765' +p290923 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061e2.jpg' +p290924 +sg225240 +g27 +sa(dp290925 +g225230 +S'Kneeling Figure in a Hooded Robe [verso]' +p290926 +sg225232 +S'Hubert Robert' +p290927 +sg225234 +S'graphite on laid paper' +p290928 +sg225236 +S'probably c. 1754/1765' +p290929 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061e3.jpg' +p290930 +sg225240 +g27 +sa(dp290931 +g225230 +S'Two Women Seen from Behind' +p290932 +sg225232 +S'Hubert Robert' +p290933 +sg225234 +S'black chalk on laid paper' +p290934 +sg225236 +S'probably c. 1754/1765' +p290935 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00060/a0006083.jpg' +p290936 +sg225240 +g27 +sa(dp290937 +g225230 +S'Man with a Walking Stick, Seen in Profile [recto]' +p290938 +sg225232 +S'Hubert Robert' +p290939 +sg225234 +S'black chalk on laid paper' +p290940 +sg225236 +S'probably c. 1754/1765' +p290941 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061de.jpg' +p290942 +sg225240 +g27 +sa(dp290943 +g225230 +S'Buildings along a Riverside [verso]' +p290944 +sg225232 +S'Hubert Robert' +p290945 +sg225234 +S'black chalk on laid paper' +p290946 +sg225236 +S'probably c. 1754/1765' +p290947 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061df.jpg' +p290948 +sg225240 +g27 +sa(dp290949 +g225230 +S'Statue of Alexander and Bucephalus [recto]' +p290950 +sg225232 +S'Hubert Robert' +p290951 +sg225234 +S'black chalk on laid paper' +p290952 +sg225236 +S'probably c. 1754/1765' +p290953 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061e1.jpg' +p290954 +sg225240 +g27 +sa(dp290955 +g225230 +S'Two Studies of the Statue of Alexander and Bucephalus [verso]' +p290956 +sg225232 +S'Hubert Robert' +p290957 +sg225234 +S'graphite and black chalk on laid paper' +p290958 +sg225236 +S'probably c. 1754/1765' +p290959 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061e0.jpg' +p290960 +sg225240 +g27 +sa(dp290961 +g225230 +S'Statue of Jupiter, Seated [recto]' +p290962 +sg225232 +S'Hubert Robert' +p290963 +sg225234 +S'black chalk on laid paper' +p290964 +sg225236 +S'1754/1765' +p290965 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00060/a0006082.jpg' +p290966 +sg225240 +g27 +sa(dp290967 +g225230 +S'Woman in Toga [verso]' +p290968 +sg225232 +S'Hubert Robert' +p290969 +sg225234 +S'graphite on laid paper' +p290970 +sg225236 +S'probably c. 1754/1765' +p290971 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061db.jpg' +p290972 +sg225240 +g27 +sa(dp290973 +g225230 +S'Woman and Smaller Male Figure on Grand Stairway [recto]' +p290974 +sg225232 +S'Hubert Robert' +p290975 +sg225234 +S'black chalk on laid paper' +p290976 +sg225236 +S'probably c. 1754/1765' +p290977 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061dd.jpg' +p290978 +sg225240 +g27 +sa(dp290979 +g225230 +S'Two Seated Women with Male Figure between Them [verso]' +p290980 +sg225232 +S'Hubert Robert' +p290981 +sg225234 +S'black chalk on laid paper' +p290982 +sg225236 +S'probably c. 1754/1765' +p290983 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061dc.jpg' +p290984 +sg225240 +g27 +sa(dp290985 +g225230 +S'Head of a Man' +p290986 +sg225232 +S'Hubert Robert' +p290987 +sg225234 +S'graphite on laid paper' +p290988 +sg225236 +S'probably c. 1754/1765' +p290989 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061da.jpg' +p290990 +sg225240 +g27 +sa(dp290991 +g225230 +S'Bust of a Roman Woman and Statue of a Roman Man' +p290992 +sg225232 +S'Hubert Robert' +p290993 +sg225234 +S'black chalk on laid paper' +p290994 +sg225236 +S'probably c. 1754/1765' +p290995 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061d4.jpg' +p290996 +sg225240 +g27 +sa(dp290997 +g225230 +S'Statue of a Nude before a Window View' +p290998 +sg225232 +S'Hubert Robert' +p290999 +sg225234 +S'black chalk on laid paper' +p291000 +sg225236 +S'probably c. 1754/1765' +p291001 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061d0.jpg' +p291002 +sg225240 +g27 +sa(dp291003 +g225230 +S'Two Statues of Male Nudes' +p291004 +sg225232 +S'Hubert Robert' +p291005 +sg225234 +S'black chalk on laid paper' +p291006 +sg225236 +S'probably c. 1754/1765' +p291007 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061cf.jpg' +p291008 +sg225240 +g27 +sa(dp291009 +g225230 +S'Statue of Zeus Holding a Thunderbolt' +p291010 +sg225232 +S'Hubert Robert' +p291011 +sg225234 +S'black chalk on laid paper' +p291012 +sg225236 +S'probably c. 1754/1765' +p291013 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061d6.jpg' +p291014 +sg225240 +g27 +sa(dp291015 +g225230 +S'Interior of a Roman Palace' +p291016 +sg225232 +S'Hubert Robert' +p291017 +sg225234 +S'black chalk on laid paper' +p291018 +sg225236 +S'1754/1765' +p291019 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00060/a0006081.jpg' +p291020 +sg225240 +g27 +sa(dp291021 +g225230 +S'Statue of Cleopatra' +p291022 +sg225232 +S'Hubert Robert' +p291023 +sg225234 +S'black chalk on laid paper' +p291024 +sg225236 +S'probably c. 1754/1765' +p291025 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061cd.jpg' +p291026 +sg225240 +g27 +sa(dp291027 +g225230 +S'Group of Male Figures Conversing' +p291028 +sg225232 +S'Hubert Robert' +p291029 +sg225234 +S'black chalk on laid paper' +p291030 +sg225236 +S'probably c. 1754/1765' +p291031 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061ce.jpg' +p291032 +sg225240 +g27 +sa(dp291033 +g225230 +S'S. Rocco' +p291034 +sg225232 +S'Hubert Robert' +p291035 +sg225234 +S'black chalk on laid paper' +p291036 +sg225236 +S'probably c. 1754/1765' +p291037 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061cb.jpg' +p291038 +sg225240 +g27 +sa(dp291039 +g225230 +S'Italian City Scene' +p291040 +sg225232 +S'Hubert Robert' +p291041 +sg225234 +S'black chalk on laid paper' +p291042 +sg225236 +S'probably c. 1754/1765' +p291043 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061cc.jpg' +p291044 +sg225240 +g27 +sa(dp291045 +g225230 +S'Seated Male Nude with Arm over Head, Seen from the Side' +p291046 +sg225232 +S'Hubert Robert' +p291047 +sg225234 +S'black chalk on laid paper' +p291048 +sg225236 +S'probably c. 1754/1765' +p291049 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061d8.jpg' +p291050 +sg225240 +g27 +sa(dp291051 +g225230 +S"Young Woman's Head in Profile" +p291052 +sg225232 +S'Hubert Robert' +p291053 +sg225234 +S'graphite on laid paper' +p291054 +sg225236 +S'probably c. 1754/1765' +p291055 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061d7.jpg' +p291056 +sg225240 +g27 +sa(dp291057 +g225230 +S'Little Girl with a Large Basket' +p291058 +sg225232 +S'Hubert Robert' +p291059 +sg225234 +S'black chalk on laid paper' +p291060 +sg225236 +S'probably c. 1754/1765' +p291061 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061d1.jpg' +p291062 +sg225240 +g27 +sa(dp291063 +g225230 +S'Statue of a Vestal Virgin' +p291064 +sg225232 +S'Hubert Robert' +p291065 +sg225234 +S'graphite on laid paper' +p291066 +sg225236 +S'probably c. 1754/1765' +p291067 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061d9.jpg' +p291068 +sg225240 +g27 +sa(dp291069 +g225230 +S'Villa Medici' +p291070 +sg225232 +S'Hubert Robert' +p291071 +sg225234 +S'graphite on laid paper' +p291072 +sg225236 +S'probably c. 1754/1765' +p291073 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061c8.jpg' +p291074 +sg225240 +g27 +sa(dp291075 +g225230 +S'View from a Ridge to a Village and Distant Mountain' +p291076 +sg225232 +S'Hubert Robert' +p291077 +sg225234 +S'graphite on laid paper' +p291078 +sg225236 +S'probably c. 1754/1765' +p291079 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061ca.jpg' +p291080 +sg225240 +g27 +sa(dp291081 +g225230 +S'Monumental Stairway' +p291082 +sg225232 +S'Hubert Robert' +p291083 +sg225234 +S'graphite on laid paper' +p291084 +sg225236 +S'probably c. 1754/1765' +p291085 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061c9.jpg' +p291086 +sg225240 +g27 +sa(dp291087 +g225230 +S"The Obelisk in Saint Peter's Square" +p291088 +sg225232 +S'Hubert Robert' +p291089 +sg225234 +S'graphite on laid paper' +p291090 +sg225236 +S'1754/1765' +p291091 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00060/a0006080.jpg' +p291092 +sg225240 +g27 +sa(dp291093 +g225230 +S'Capitoline Hill' +p291094 +sg225232 +S'Hubert Robert' +p291095 +sg225234 +S'graphite on laid paper' +p291096 +sg225236 +S'probably c. 1754/1765' +p291097 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061c7.jpg' +p291098 +sg225240 +g27 +sa(dp291099 +g225230 +S'One of the "Dioscuri" and a Barbarian Prisoner' +p291100 +sg225232 +S'Hubert Robert' +p291101 +sg225234 +S'black chalk and graphite on laid paper' +p291102 +sg225236 +S'1754/1765' +p291103 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00060/a000607f.jpg' +p291104 +sg225240 +g27 +sa(dp291105 +g225230 +S'Monumental Arch' +p291106 +sg225232 +S'Hubert Robert' +p291107 +sg225234 +S'black chalk on laid paper' +p291108 +sg225236 +S'probably c. 1754/1765' +p291109 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061c4.jpg' +p291110 +sg225240 +g27 +sa(dp291111 +g225230 +S'Housetops behind a Wall' +p291112 +sg225232 +S'Hubert Robert' +p291113 +sg225234 +S'black chalk on laid paper' +p291114 +sg225236 +S'probably c. 1754/1765' +p291115 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00061/a00061c6.jpg' +p291116 +sg225240 +g27 +sa(dp291117 +g225230 +S'Lady Hamilton Playing a Lyre' +p291118 +sg225232 +S'George Romney' +p291119 +sg225234 +S'pen and brown ink with brown wash over black chalk on wove paper' +p291120 +sg225236 +S'c. 1785' +p291121 +sg225238 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006eef.jpg' +p291122 +sg225240 +g27 +sa(dp291123 +g225230 +S'Man Playing a Lute [recto]' +p291124 +sg225232 +S'Matteo Rosselli' +p291125 +sg225234 +S'red chalk on laid paper' +p291126 +sg225236 +S'unknown date\n' +p291127 +sg225238 +S'http://www.nga.gov:80/thumb-l/a00074/a00074c6.jpg' +p291128 +sg225240 +g27 +sa(dp291129 +S'material' +p291130 +S'etching' +p291131 +sS'year' +p291132 +S'unknown date\n' +p291133 +sS'name' +p291134 +S'Woods Scene' +p291135 +sS'desc' +p291136 +g27 +sS'artist' +p291137 +S'Harry Newman Wickey' +p291138 +sa(dp291139 +g291130 +S'lithograph' +p291140 +sg291132 +S'1966' +p291141 +sg291134 +S'Diamond Shoals' +p291142 +sg291136 +g27 +sg291137 +S'Jerome Kaplan' +p291143 +sa(dp291144 +g291130 +S'lithograph in brown' +p291145 +sg291132 +S'1966' +p291146 +sg291134 +S'Since Then' +p291147 +sg291136 +g27 +sg291137 +S'Romas Viesulas' +p291148 +sa(dp291149 +g291130 +S'color lithograph printed from 4 stones' +p291150 +sg291132 +S'1967' +p291151 +sg291134 +S'Seasonal' +p291152 +sg291136 +g27 +sg291137 +S'George Bunker' +p291153 +sa(dp291154 +g291130 +S'lithograph' +p291155 +sg291132 +S'unknown date\n' +p291156 +sg291134 +S'Reclining Nude' +p291157 +sg291136 +g27 +sg291137 +S'Charles Despiau' +p291158 +sa(dp291159 +g291130 +S'drypoint' +p291160 +sg291132 +S'unknown date\n' +p291161 +sg291134 +S'Ferruccio Busoni' +p291162 +sg291136 +g27 +sg291137 +S'Max Oppenheimer' +p291163 +sa(dp291164 +g291130 +S'drypoint' +p291165 +sg291132 +S'unknown date\n' +p291166 +sg291134 +S'Head of a Man' +p291167 +sg291136 +g27 +sg291137 +S'Max Oppenheimer' +p291168 +sa(dp291169 +g291130 +S'drypoint' +p291170 +sg291132 +S'unknown date\n' +p291171 +sg291134 +S'Thomas Mann' +p291172 +sg291136 +g27 +sg291137 +S'Max Oppenheimer' +p291173 +sa(dp291174 +g291130 +S'drypoint' +p291175 +sg291132 +S'unknown date\n' +p291176 +sg291134 +S'Piet\xc3\xa0' +p291177 +sg291136 +g27 +sg291137 +S'Max Oppenheimer' +p291178 +sa(dp291179 +g291130 +S'color etching' +p291180 +sg291132 +S'unknown date\n' +p291181 +sg291134 +S'Untitled' +p291182 +sg291136 +g27 +sg291137 +S'Sonia Delaunay' +p291183 +sa(dp291184 +g291130 +S'color etching' +p291185 +sg291132 +S'1951' +p291186 +sg291134 +S'A-1' +p291187 +sg291136 +g27 +sg291137 +S'Leonard Edmondson' +p291188 +sa(dp291189 +g291130 +S'etching' +p291190 +sg291132 +S'unknown date\n' +p291191 +sg291134 +S'#6. 0. 7.' +p291192 +sg291136 +g27 +sg291137 +S'John Paul Jones' +p291193 +sa(dp291194 +g291130 +S'color lithograph' +p291195 +sg291132 +S'1953' +p291196 +sg291134 +S'Composition' +p291197 +sg291136 +g27 +sg291137 +S'Mikhail Larionov' +p291198 +sa(dp291199 +g291130 +S'color lithograph' +p291200 +sg291132 +S'1953' +p291201 +sg291134 +S'The Old City' +p291202 +sg291136 +g27 +sg291137 +S'Zao Wou-Ki' +p291203 +sa(dp291204 +g291130 +S'color screenprint on cardboard' +p291205 +sg291132 +S'1967' +p291206 +sg291134 +S'Untitled' +p291207 +sg291136 +g27 +sg291137 +S'Yvonne Thomas' +p291208 +sa(dp291209 +g291130 +S'Gift of Dr. and Mrs. Samuel Bogdonoff' +p291210 +sg291132 +S'\ndrypoint' +p291211 +sg291134 +S'Rothenberg O. Tauber' +p291212 +sg291136 +g27 +sg291137 +S'German 20th Century' +p291213 +sa(dp291214 +g291130 +S'lithograph' +p291215 +sg291132 +S'unknown date\n' +p291216 +sg291134 +S'Show Case Doll' +p291217 +sg291136 +g27 +sg291137 +S'Ivan Le Lorraine Albright' +p291218 +sa(dp291219 +g291130 +S'color silkscreen' +p291220 +sg291132 +S'1972' +p291221 +sg291134 +S'Oriental Cuisine' +p291222 +sg291136 +g27 +sg291137 +S'Richard Estes' +p291223 +sa(dp291224 +g291130 +S'etching' +p291225 +sg291132 +S'unknown date\n' +p291226 +sg291134 +S"Paysage d'arbres" +p291227 +sg291136 +g27 +sg291137 +S'Louis Valtat' +p291228 +sa(dp291229 +g291130 +S'etching and aquatint' +p291230 +sg291132 +S'unknown date\n' +p291231 +sg291134 +S'Gossip' +p291232 +sg291136 +g27 +sg291137 +S'Alfred Feinberg' +p291233 +sa(dp291234 +g291130 +S'screenprint' +p291235 +sg291132 +S'1971' +p291236 +sg291134 +S'Dedicated' +p291237 +sg291136 +g27 +sg291137 +S'Julian Stanczak' +p291238 +sa(dp291239 +g291130 +S'screenprint' +p291240 +sg291132 +S'1971' +p291241 +sg291134 +S'Dimensional' +p291242 +sg291136 +g27 +sg291137 +S'Julian Stanczak' +p291243 +sa(dp291244 +g291130 +S'screenprint' +p291245 +sg291132 +S'1973' +p291246 +sg291134 +S'Early Solar' +p291247 +sg291136 +g27 +sg291137 +S'Julian Stanczak' +p291248 +sa(dp291249 +g291130 +S'engraving' +p291250 +sg291132 +S'unknown date\n' +p291251 +sg291134 +S'Au pres de St. May' +p291252 +sg291136 +g27 +sg291137 +S'Sheigla Hartman' +p291253 +sa(dp291254 +g291130 +S'engraving' +p291255 +sg291132 +S'1972' +p291256 +sg291134 +S"L'haie de cloche" +p291257 +sg291136 +g27 +sg291137 +S'Sheigla Hartman' +p291258 +sa(dp291259 +g291130 +S'woodcut' +p291260 +sg291132 +S'1922' +p291261 +sg291134 +S'Cirque de Paris' +p291262 +sg291136 +g27 +sg291137 +S'Georg Alexander Mathey' +p291263 +sa(dp291264 +g291130 +S'etching' +p291265 +sg291132 +S'unknown date\n' +p291266 +sg291134 +S'Giants on Call' +p291267 +sg291136 +g27 +sg291137 +S'Otto August K\xc3\xbchler' +p291268 +sa(dp291269 +g291130 +S'etching' +p291270 +sg291132 +S'1923' +p291271 +sg291134 +S'The Valley of Work' +p291272 +sg291136 +g27 +sg291137 +S'Otto August K\xc3\xbchler' +p291273 +sa(dp291274 +g291130 +S'lithograph' +p291275 +sg291132 +S'unknown date\n' +p291276 +sg291134 +S'Grand Lake' +p291277 +sg291136 +g27 +sg291137 +S'Arnold R\xc3\xb6nnebeck' +p291278 +sa(dp291279 +g291130 +S'lithograph' +p291280 +sg291132 +S'1933' +p291281 +sg291134 +S'Silver Mine' +p291282 +sg291136 +g27 +sg291137 +S'Arnold R\xc3\xb6nnebeck' +p291283 +sa(dp291284 +g291130 +S'lithograph' +p291285 +sg291132 +S'1928' +p291286 +sg291134 +S'Skyline' +p291287 +sg291136 +g27 +sg291137 +S'Arnold R\xc3\xb6nnebeck' +p291288 +sa(dp291289 +g291130 +S'lithograph' +p291290 +sg291132 +S'unknown date\n' +p291291 +sg291134 +S'Shift' +p291292 +sg291136 +g27 +sg291137 +S'Clinton Adams' +p291293 +sa(dp291294 +g291130 +S'lithograph' +p291295 +sg291132 +S'1972' +p291296 +sg291134 +S'Untitled' +p291297 +sg291136 +g27 +sg291137 +S'Garo Zareh Antreasian' +p291298 +sa(dp291299 +g291130 +S'lithograph' +p291300 +sg291132 +S'1972' +p291301 +sg291134 +S'Untitled' +p291302 +sg291136 +g27 +sg291137 +S'Garo Zareh Antreasian' +p291303 +sa(dp291304 +g291130 +S'lithograph' +p291305 +sg291132 +S'1972' +p291306 +sg291134 +S'Severin' +p291307 +sg291136 +g27 +sg291137 +S'Robert H. Arber' +p291308 +sa(dp291309 +g291130 +S'lithograph' +p291310 +sg291132 +S'unknown date\n' +p291311 +sg291134 +S'Wonder no.392' +p291312 +sg291136 +g27 +sg291137 +S'Walter Miller Askin' +p291313 +sa(dp291314 +g291130 +S'lithograph' +p291315 +sg291132 +S'unknown date\n' +p291316 +sg291134 +S'Cyrenaica' +p291317 +sg291136 +g27 +sg291137 +S'Walter Miller Askin' +p291318 +sa(dp291319 +g291130 +S'lithograph' +p291320 +sg291132 +S'unknown date\n' +p291321 +sg291134 +S'Greek Gossips' +p291322 +sg291136 +g27 +sg291137 +S'Walter Miller Askin' +p291323 +sa(dp291324 +g291130 +S'lithograph' +p291325 +sg291132 +S'unknown date\n' +p291326 +sg291134 +S'Festive Rite' +p291327 +sg291136 +g27 +sg291137 +S'Walter Miller Askin' +p291328 +sa(dp291329 +g291130 +S'lithograph' +p291330 +sg291132 +S'unknown date\n' +p291331 +sg291134 +S'Garden of Delights' +p291332 +sg291136 +g27 +sg291137 +S'Walter Miller Askin' +p291333 +sa(dp291334 +g291130 +S'lithograph' +p291335 +sg291132 +S'unknown date\n' +p291336 +sg291134 +S'Gothic Procession' +p291337 +sg291136 +g27 +sg291137 +S'Walter Miller Askin' +p291338 +sa(dp291339 +g291130 +S'lithograph' +p291340 +sg291132 +S'1972' +p291341 +sg291134 +S'Bone Seed' +p291342 +sg291136 +g27 +sg291137 +S'Cheryl Olsen Bowers' +p291343 +sa(dp291344 +g291130 +S'lithograph' +p291345 +sg291132 +S'1972' +p291346 +sg291134 +S'Flesh Seed' +p291347 +sg291136 +g27 +sg291137 +S'Cheryl Olsen Bowers' +p291348 +sa(dp291349 +g291130 +S'lithograph' +p291350 +sg291132 +S'1972' +p291351 +sg291134 +S'Shadow Seed' +p291352 +sg291136 +g27 +sg291137 +S'Cheryl Olsen Bowers' +p291353 +sa(dp291354 +g291130 +S'lithograph' +p291355 +sg291132 +S'1972' +p291356 +sg291134 +S'Sense Seed' +p291357 +sg291136 +g27 +sg291137 +S'Cheryl Olsen Bowers' +p291358 +sa(dp291359 +g291130 +S'lithograph' +p291360 +sg291132 +S'1972' +p291361 +sg291134 +S'Spirit Seed' +p291362 +sg291136 +g27 +sg291137 +S'Cheryl Olsen Bowers' +p291363 +sa(dp291364 +g291130 +S'lithograph' +p291365 +sg291132 +S'unknown date\n' +p291366 +sg291134 +S'Santa Fe' +p291367 +sg291136 +g27 +sg291137 +S'Cheryl Olsen Bowers' +p291368 +sa(dp291369 +g291130 +S'lithograph' +p291370 +sg291132 +S'unknown date\n' +p291371 +sg291134 +S'Bownes Seed' +p291372 +sg291136 +g27 +sg291137 +S'Cheryl Olsen Bowers' +p291373 +sa(dp291374 +g291130 +S'lithograph' +p291375 +sg291132 +S'unknown date\n' +p291376 +sg291134 +S'Buffalo' +p291377 +sg291136 +g27 +sg291137 +S'Cheryl Olsen Bowers' +p291378 +sa(dp291379 +g291130 +S'lithograph' +p291380 +sg291132 +S'unknown date\n' +p291381 +sg291134 +S'Hide in Black' +p291382 +sg291136 +g27 +sg291137 +S'Cheryl Olsen Bowers' +p291383 +sa(dp291384 +g291130 +S'lithograph' +p291385 +sg291132 +S'unknown date\n' +p291386 +sg291134 +S'Earth License' +p291387 +sg291136 +g27 +sg291137 +S'Cheryl Olsen Bowers' +p291388 +sa(dp291389 +g291130 +S'color lithograph' +p291390 +sg291132 +S'unknown date\n' +p291391 +sg291134 +S'Untitled' +p291392 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291393 +sa(dp291394 +g291130 +S'color lithograph' +p291395 +sg291132 +S'unknown date\n' +p291396 +sg291134 +S'Untitled' +p291397 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291398 +sa(dp291399 +g291130 +S'color lithograph' +p291400 +sg291132 +S'unknown date\n' +p291401 +sg291134 +S'Untitled' +p291402 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291403 +sa(dp291404 +g291130 +S'color lithograph' +p291405 +sg291132 +S'unknown date\n' +p291406 +sg291134 +S'Untitled' +p291407 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291408 +sa(dp291409 +g291130 +S'color lithograph' +p291410 +sg291132 +S'unknown date\n' +p291411 +sg291134 +S'Untitled' +p291412 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291413 +sa(dp291414 +g291130 +S'lithograph' +p291415 +sg291132 +S'unknown date\n' +p291416 +sg291134 +S'Untitled' +p291417 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291418 +sa(dp291419 +g291130 +S'lithograph' +p291420 +sg291132 +S'unknown date\n' +p291421 +sg291134 +S'Untitled' +p291422 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291423 +sa(dp291424 +g291130 +S'lithograph' +p291425 +sg291132 +S'unknown date\n' +p291426 +sg291134 +S'Untitled' +p291427 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291428 +sa(dp291429 +g291130 +S'lithograph' +p291430 +sg291132 +S'unknown date\n' +p291431 +sg291134 +S'Untitled' +p291432 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291433 +sa(dp291434 +g291130 +S'lithograph' +p291435 +sg291132 +S'unknown date\n' +p291436 +sg291134 +S'Untitled' +p291437 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291438 +sa(dp291439 +g291130 +S'lithograph' +p291440 +sg291132 +S'unknown date\n' +p291441 +sg291134 +S'Untitled' +p291442 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291443 +sa(dp291444 +g291130 +S'color lithograph' +p291445 +sg291132 +S'unknown date\n' +p291446 +sg291134 +S'Untitled' +p291447 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291448 +sa(dp291449 +g291130 +S'color lithograph' +p291450 +sg291132 +S'unknown date\n' +p291451 +sg291134 +S'Untitled' +p291452 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291453 +sa(dp291454 +g291130 +S'color lithograph' +p291455 +sg291132 +S'unknown date\n' +p291456 +sg291134 +S'Untitled' +p291457 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291458 +sa(dp291459 +g291130 +S'color lithograph' +p291460 +sg291132 +S'unknown date\n' +p291461 +sg291134 +S'Untitled' +p291462 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291463 +sa(dp291464 +g291130 +S'color lithograph' +p291465 +sg291132 +S'unknown date\n' +p291466 +sg291134 +S'Untitled' +p291467 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291468 +sa(dp291469 +g291130 +S'color lithograph' +p291470 +sg291132 +S'unknown date\n' +p291471 +sg291134 +S'Untitled' +p291472 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291473 +sa(dp291474 +g291130 +S'color lithograph' +p291475 +sg291132 +S'unknown date\n' +p291476 +sg291134 +S'Untitled' +p291477 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291478 +sa(dp291479 +g291130 +S'color lithograph' +p291480 +sg291132 +S'unknown date\n' +p291481 +sg291134 +S'Untitled' +p291482 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291483 +sa(dp291484 +g291130 +S'color lithograph' +p291485 +sg291132 +S'unknown date\n' +p291486 +sg291134 +S'Untitled' +p291487 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291488 +sa(dp291489 +g291130 +S'color lithograph' +p291490 +sg291132 +S'unknown date\n' +p291491 +sg291134 +S'Untitled' +p291492 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291493 +sa(dp291494 +g291130 +S'color lithograph' +p291495 +sg291132 +S'unknown date\n' +p291496 +sg291134 +S'Untitled' +p291497 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291498 +sa(dp291499 +g291130 +S'color lithograph' +p291500 +sg291132 +S'unknown date\n' +p291501 +sg291134 +S'Untitled' +p291502 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291503 +sa(dp291504 +g291130 +S'color lithograph' +p291505 +sg291132 +S'unknown date\n' +p291506 +sg291134 +S'Untitled' +p291507 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291508 +sa(dp291509 +g291130 +S'color lithograph' +p291510 +sg291132 +S'unknown date\n' +p291511 +sg291134 +S'Untitled' +p291512 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291513 +sa(dp291514 +g291130 +S'color lithograph' +p291515 +sg291132 +S'unknown date\n' +p291516 +sg291134 +S'Untitled' +p291517 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291518 +sa(dp291519 +g291130 +S'color lithograph' +p291520 +sg291132 +S'unknown date\n' +p291521 +sg291134 +S'Untitled' +p291522 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291523 +sa(dp291524 +g291130 +S'lithograph' +p291525 +sg291132 +S'unknown date\n' +p291526 +sg291134 +S'Untitled' +p291527 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291528 +sa(dp291529 +g291130 +S'lithograph' +p291530 +sg291132 +S'unknown date\n' +p291531 +sg291134 +S'Untitled' +p291532 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291533 +sa(dp291534 +g291130 +S'lithograph' +p291535 +sg291132 +S'unknown date\n' +p291536 +sg291134 +S'Untitled' +p291537 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291538 +sa(dp291539 +g291130 +S'lithograph' +p291540 +sg291132 +S'unknown date\n' +p291541 +sg291134 +S'Untitled' +p291542 +sg291136 +g27 +sg291137 +S'Albert William Christ-Janer' +p291543 +sa(dp291544 +g291130 +S'color lithograph' +p291545 +sg291132 +S'1972' +p291546 +sg291134 +S'Nakabito' +p291547 +sg291136 +g27 +sg291137 +S'Pierre Clerk' +p291548 +sa(dp291549 +g291130 +S'color lithograph' +p291550 +sg291132 +S'1972' +p291551 +sg291134 +S'Navajo' +p291552 +sg291136 +g27 +sg291137 +S'Pierre Clerk' +p291553 +sa(dp291554 +g291130 +S'color lithograph' +p291555 +sg291132 +S'1972' +p291556 +sg291134 +S'Alamacordo' +p291557 +sg291136 +g27 +sg291137 +S'Pierre Clerk' +p291558 +sa(dp291559 +g291130 +S'lithograph' +p291560 +sg291132 +S'1972' +p291561 +sg291134 +S'When the Legend Dies' +p291562 +sg291136 +g27 +sg291137 +S'Christopher Cordes' +p291563 +sa(dp291564 +g291130 +S'lithograph' +p291565 +sg291132 +S'1971' +p291566 +sg291134 +S'Untitled' +p291567 +sg291136 +g27 +sg291137 +S'William Dole' +p291568 +sa(dp291569 +g291130 +S'lithograph' +p291570 +sg291132 +S'1971' +p291571 +sg291134 +S'Untitled' +p291572 +sg291136 +g27 +sg291137 +S'William Dole' +p291573 +sa(dp291574 +g291130 +S'lithograph' +p291575 +sg291132 +S'1971' +p291576 +sg291134 +S'Untitled' +p291577 +sg291136 +g27 +sg291137 +S'William Dole' +p291578 +sa(dp291579 +g291130 +S'lithograph' +p291580 +sg291132 +S'1971' +p291581 +sg291134 +S'Untitled' +p291582 +sg291136 +g27 +sg291137 +S'William Dole' +p291583 +sa(dp291584 +g291130 +S'lithograph' +p291585 +sg291132 +S'1971' +p291586 +sg291134 +S'Untitled' +p291587 +sg291136 +g27 +sg291137 +S'William Dole' +p291588 +sa(dp291589 +g291130 +S'lithograph' +p291590 +sg291132 +S'1971' +p291591 +sg291134 +S'Untitled' +p291592 +sg291136 +g27 +sg291137 +S'William Dole' +p291593 +sa(dp291594 +g291130 +S'lithograph' +p291595 +sg291132 +S'1971' +p291596 +sg291134 +S'Untitled' +p291597 +sg291136 +g27 +sg291137 +S'William Dole' +p291598 +sa(dp291599 +g291130 +S'lithograph' +p291600 +sg291132 +S'1971' +p291601 +sg291134 +S'Untitled' +p291602 +sg291136 +g27 +sg291137 +S'William Dole' +p291603 +sa(dp291604 +g291130 +S'lithograph' +p291605 +sg291132 +S'1971' +p291606 +sg291134 +S'Untitled' +p291607 +sg291136 +g27 +sg291137 +S'William Dole' +p291608 +sa(dp291609 +g291130 +S'lithograph' +p291610 +sg291132 +S'unknown date\n' +p291611 +sg291134 +S'Untitled' +p291612 +sg291136 +g27 +sg291137 +S'John Paul Jones' +p291613 +sa(dp291614 +g291130 +S'color lithograph' +p291615 +sg291132 +S'1972' +p291616 +sg291134 +S"Sorcerer's Holiday" +p291617 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p291618 +sa(dp291619 +g291130 +S'lithograph' +p291620 +sg291132 +S'unknown date\n' +p291621 +sg291134 +S'Isleta' +p291622 +sg291136 +g27 +sg291137 +S'Joyce Kozloff' +p291623 +sa(dp291624 +g291130 +S'lithograph' +p291625 +sg291132 +S'unknown date\n' +p291626 +sg291134 +S'Taos Pueblo' +p291627 +sg291136 +g27 +sg291137 +S'Joyce Kozloff' +p291628 +sa(dp291629 +g291130 +S'lithograph' +p291630 +sg291132 +S'unknown date\n' +p291631 +sg291134 +S'Untitled' +p291632 +sg291136 +g27 +sg291137 +S'Joyce Kozloff' +p291633 +sa(dp291634 +g291130 +S'lithograph' +p291635 +sg291132 +S'unknown date\n' +p291636 +sg291134 +S'Untitled' +p291637 +sg291136 +g27 +sg291137 +S'Bryn Manley' +p291638 +sa(dp291639 +g291130 +S'lithograph' +p291640 +sg291132 +S'unknown date\n' +p291641 +sg291134 +S'Untitled' +p291642 +sg291136 +g27 +sg291137 +S'Bryn Manley' +p291643 +sa(dp291644 +g291130 +S'lithograph' +p291645 +sg291132 +S'1972' +p291646 +sg291134 +S'Title Page' +p291647 +sg291136 +g27 +sg291137 +S'Leonard Lehrer' +p291648 +sa(dp291649 +g291130 +S'lithograph' +p291650 +sg291132 +S'1972' +p291651 +sg291134 +S'Viscaya' +p291652 +sg291136 +g27 +sg291137 +S'Leonard Lehrer' +p291653 +sa(dp291654 +g291130 +S'lithograph in black and cream' +p291655 +sg291132 +S'1972' +p291656 +sg291134 +S'Powis' +p291657 +sg291136 +g27 +sg291137 +S'Leonard Lehrer' +p291658 +sa(dp291659 +g291130 +S'lithograph' +p291660 +sg291132 +S'1972' +p291661 +sg291134 +S'St. James Park' +p291662 +sg291136 +g27 +sg291137 +S'Leonard Lehrer' +p291663 +sa(dp291664 +g291130 +S'lithograph' +p291665 +sg291132 +S'1972' +p291666 +sg291134 +S'Partal' +p291667 +sg291136 +g27 +sg291137 +S'Leonard Lehrer' +p291668 +sa(dp291669 +g291130 +S'lithograph' +p291670 +sg291132 +S'1972' +p291671 +sg291134 +S'Sabika' +p291672 +sg291136 +g27 +sg291137 +S'Leonard Lehrer' +p291673 +sa(dp291674 +g291130 +S'lithograph in black and cream' +p291675 +sg291132 +S'1972' +p291676 +sg291134 +S'Blenheim' +p291677 +sg291136 +g27 +sg291137 +S'Leonard Lehrer' +p291678 +sa(dp291679 +g291130 +S'lithograph' +p291680 +sg291132 +S'1972' +p291681 +sg291134 +S'Garden - After Ingres' +p291682 +sg291136 +g27 +sg291137 +S'Leonard Lehrer' +p291683 +sa(dp291684 +g291130 +S'lithograph' +p291685 +sg291132 +S'1972' +p291686 +sg291134 +S'Hidcote' +p291687 +sg291136 +g27 +sg291137 +S'Leonard Lehrer' +p291688 +sa(dp291689 +g291130 +S'lithograph' +p291690 +sg291132 +S'1972' +p291691 +sg291134 +S'Colophon' +p291692 +sg291136 +g27 +sg291137 +S'Leonard Lehrer' +p291693 +sa(dp291694 +g291130 +S'lithograph' +p291695 +sg291132 +S'probably 1970' +p291696 +sg291134 +S'Untitled' +p291697 +sg291136 +g27 +sg291137 +S'Charles Mattox' +p291698 +sa(dp291699 +g291130 +S'lithograph' +p291700 +sg291132 +S'1971' +p291701 +sg291134 +S'For the Lady' +p291702 +sg291136 +g27 +sg291137 +S'Nathan Oliveira' +p291703 +sa(dp291704 +g291130 +S'lithograph' +p291705 +sg291132 +S'unknown date\n' +p291706 +sg291134 +S'Rainbow Head' +p291707 +sg291136 +g27 +sg291137 +S'Nathan Oliveira' +p291708 +sa(dp291709 +g291130 +S'lithograph' +p291710 +sg291132 +S'1972' +p291711 +sg291134 +S'Composite Head' +p291712 +sg291136 +g27 +sg291137 +S'Nathan Oliveira' +p291713 +sa(dp291714 +g291130 +S'lithograph' +p291715 +sg291132 +S'1972' +p291716 +sg291134 +S'Untitled' +p291717 +sg291136 +g27 +sg291137 +S'Bruce Porter' +p291718 +sa(dp291719 +g291130 +S'lithograph' +p291720 +sg291132 +S'1970' +p291721 +sg291134 +S'Two Rotors, Two Cubes' +p291722 +sg291136 +g27 +sg291137 +S'George Rickey' +p291723 +sa(dp291724 +g291130 +S'lithograph' +p291725 +sg291132 +S'unknown date\n' +p291726 +sg291134 +S'Lysistrata I' +p291727 +sg291136 +g27 +sg291137 +S'Tom Rose' +p291728 +sa(dp291729 +g291130 +S'lithograph' +p291730 +sg291132 +S'unknown date\n' +p291731 +sg291134 +S'Lysistrata II' +p291732 +sg291136 +g27 +sg291137 +S'Tom Rose' +p291733 +sa(dp291734 +g291130 +S'lithograph' +p291735 +sg291132 +S'unknown date\n' +p291736 +sg291134 +S'Lysistrata III' +p291737 +sg291136 +g27 +sg291137 +S'Tom Rose' +p291738 +sa(dp291739 +g291130 +S'color lithograph' +p291740 +sg291132 +S'unknown date\n' +p291741 +sg291134 +S'Lysistrata IV' +p291742 +sg291136 +g27 +sg291137 +S'Tom Rose' +p291743 +sa(dp291744 +g291130 +S'color lithograph' +p291745 +sg291132 +S'unknown date\n' +p291746 +sg291134 +S'Lysistrata V' +p291747 +sg291136 +g27 +sg291137 +S'Tom Rose' +p291748 +sa(dp291749 +g291130 +S'color lithograph' +p291750 +sg291132 +S'unknown date\n' +p291751 +sg291134 +S'Lysistrata VI' +p291752 +sg291136 +g27 +sg291137 +S'Tom Rose' +p291753 +sa(dp291754 +g291130 +S'lithograph' +p291755 +sg291132 +S'unknown date\n' +p291756 +sg291134 +S'Romona' +p291757 +sg291136 +g27 +sg291137 +S'Fritz Scholder' +p291758 +sa(dp291759 +g291130 +S'color lithograph' +p291760 +sg291132 +S'unknown date\n' +p291761 +sg291134 +S'Sunrise' +p291762 +sg291136 +g27 +sg291137 +S'Arthur Secunda' +p291763 +sa(dp291764 +g291130 +S'color lithograph' +p291765 +sg291132 +S'unknown date\n' +p291766 +sg291134 +S'Canyons and Mesas' +p291767 +sg291136 +g27 +sg291137 +S'Arthur Secunda' +p291768 +sa(dp291769 +g291130 +S'lithograph' +p291770 +sg291132 +S'unknown date\n' +p291771 +sg291134 +S'Babel' +p291772 +sg291136 +g27 +sg291137 +S'Arthur Secunda' +p291773 +sa(dp291774 +g291130 +S'lithograph' +p291775 +sg291132 +S'unknown date\n' +p291776 +sg291134 +S'Forest Murmurs' +p291777 +sg291136 +g27 +sg291137 +S'Arthur Secunda' +p291778 +sa(dp291779 +g291130 +S'lithograph' +p291780 +sg291132 +S'unknown date\n' +p291781 +sg291134 +S'Sea Voices' +p291782 +sg291136 +g27 +sg291137 +S'Arthur Secunda' +p291783 +sa(dp291784 +g291130 +S'color lithograph' +p291785 +sg291132 +S'unknown date\n' +p291786 +sg291134 +S'Windy Day' +p291787 +sg291136 +g27 +sg291137 +S'Arthur Secunda' +p291788 +sa(dp291789 +g291130 +S'color lithograph' +p291790 +sg291132 +S'unknown date\n' +p291791 +sg291134 +S'Sun Dance' +p291792 +sg291136 +g27 +sg291137 +S'Arthur Secunda' +p291793 +sa(dp291794 +g291130 +S'lithograph' +p291795 +sg291132 +S'unknown date\n' +p291796 +sg291134 +S'Motorcycle Man' +p291797 +sg291136 +g27 +sg291137 +S'Arthur Secunda' +p291798 +sa(dp291799 +g291130 +S'color lithograph' +p291800 +sg291132 +S'unknown date\n' +p291801 +sg291134 +S'Prometheus' +p291802 +sg291136 +g27 +sg291137 +S'Arthur Secunda' +p291803 +sa(dp291804 +g291130 +S'lithograph' +p291805 +sg291132 +S'1972' +p291806 +sg291134 +S'Holy Chicken' +p291807 +sg291136 +g27 +sg291137 +S'Wayne Simpkins' +p291808 +sa(dp291809 +g291130 +S'lithograph' +p291810 +sg291132 +S'1972' +p291811 +sg291134 +S'Untitled' +p291812 +sg291136 +g27 +sg291137 +S'David Richard Smyth' +p291813 +sa(dp291814 +g291130 +S'lithograph' +p291815 +sg291132 +S'1972' +p291816 +sg291134 +S'Untitled' +p291817 +sg291136 +g27 +sg291137 +S'David Richard Smyth' +p291818 +sa(dp291819 +g291130 +S'lithograph' +p291820 +sg291132 +S'unknown date\n' +p291821 +sg291134 +S'Untitled' +p291822 +sg291136 +g27 +sg291137 +S'David Richard Smyth' +p291823 +sa(dp291824 +g291130 +S'lithograph' +p291825 +sg291132 +S'1972' +p291826 +sg291134 +S'Untitled' +p291827 +sg291136 +g27 +sg291137 +S'David Richard Smyth' +p291828 +sa(dp291829 +g291130 +S'lithograph' +p291830 +sg291132 +S'1972' +p291831 +sg291134 +S'Untitled' +p291832 +sg291136 +g27 +sg291137 +S'David Richard Smyth' +p291833 +sa(dp291834 +g291130 +S'lithograph' +p291835 +sg291132 +S'1972' +p291836 +sg291134 +S'Untitled' +p291837 +sg291136 +g27 +sg291137 +S'David Richard Smyth' +p291838 +sa(dp291839 +g291130 +S'lithograph' +p291840 +sg291132 +S'1972' +p291841 +sg291134 +S'Untitled' +p291842 +sg291136 +g27 +sg291137 +S'David Richard Smyth' +p291843 +sa(dp291844 +g291130 +S'lithograph' +p291845 +sg291132 +S'1972' +p291846 +sg291134 +S'Untitled' +p291847 +sg291136 +g27 +sg291137 +S'David Richard Smyth' +p291848 +sa(dp291849 +g291130 +S'color lithograph' +p291850 +sg291132 +S'1972' +p291851 +sg291134 +S'On a Scale of Six' +p291852 +sg291136 +g27 +sg291137 +S'John Sommers' +p291853 +sa(dp291854 +g291130 +S'color lithograph' +p291855 +sg291132 +S'unknown date\n' +p291856 +sg291134 +S'Untitled' +p291857 +sg291136 +g27 +sg291137 +S'Juergen Strunck' +p291858 +sa(dp291859 +g291130 +S'color lithograph' +p291860 +sg291132 +S'unknown date\n' +p291861 +sg291134 +S'Untitled' +p291862 +sg291136 +g27 +sg291137 +S'Juergen Strunck' +p291863 +sa(dp291864 +g291130 +S'color lithograph' +p291865 +sg291132 +S'1971' +p291866 +sg291134 +S'Sanchois Helper' +p291867 +sg291136 +g27 +sg291137 +S'Joyce Wahl Treiman' +p291868 +sa(dp291869 +g291130 +S'color lithograph' +p291870 +sg291132 +S'1971' +p291871 +sg291134 +S'Caldonia' +p291872 +sg291136 +g27 +sg291137 +S'Emerson Woelffer' +p291873 +sa(dp291874 +g291130 +S'color lithograph' +p291875 +sg291132 +S'1971' +p291876 +sg291134 +S'Caldonia' +p291877 +sg291136 +g27 +sg291137 +S'Emerson Woelffer' +p291878 +sa(dp291879 +g291130 +S'color lithograph' +p291880 +sg291132 +S'unknown date\n' +p291881 +sg291134 +S'Black Angel' +p291882 +sg291136 +g27 +sg291137 +S'Emerson Woelffer' +p291883 +sa(dp291884 +g291130 +S'color lithograph' +p291885 +sg291132 +S'1972' +p291886 +sg291134 +S'Hobbs' +p291887 +sg291136 +g27 +sg291137 +S'Pierre Clerk' +p291888 +sa(dp291889 +g291130 +S'color monotype' +p291890 +sg291132 +S'1964' +p291891 +sg291134 +S'The Group' +p291892 +sg291136 +g27 +sg291137 +S'Fritz Blumenthal' +p291893 +sa(dp291894 +g291130 +S'drypoint' +p291895 +sg291132 +S'1921' +p291896 +sg291134 +S'Briand' +p291897 +sg291136 +g27 +sg291137 +S'Walter Ernest Tittle' +p291898 +sa(dp291899 +g291130 +S'drypoint' +p291900 +sg291132 +S'1921/1922' +p291901 +sg291134 +S'Cavan' +p291902 +sg291136 +g27 +sg291137 +S'Walter Ernest Tittle' +p291903 +sa(dp291904 +g291130 +S'drypoint' +p291905 +sg291132 +S'1921/1922' +p291906 +sg291134 +S'Christian' +p291907 +sg291136 +g27 +sg291137 +S'Walter Ernest Tittle' +p291908 +sa(dp291909 +g291130 +S'drypoint' +p291910 +sg291132 +S'1921/1922' +p291911 +sg291134 +S'Garrett' +p291912 +sg291136 +g27 +sg291137 +S'Walter Ernest Tittle' +p291913 +sa(dp291914 +g291130 +S'drypoint' +p291915 +sg291132 +S'1921/1922' +p291916 +sg291134 +S'Geddes' +p291917 +sg291136 +g27 +sg291137 +S'Walter Ernest Tittle' +p291918 +sa(dp291919 +g291130 +S'drypoint' +p291920 +sg291132 +S'1921' +p291921 +sg291134 +S'Kato' +p291922 +sg291136 +g27 +sg291137 +S'Walter Ernest Tittle' +p291923 +sa(dp291924 +g291130 +S'drypoint' +p291925 +sg291132 +S'1921/1922' +p291926 +sg291134 +S'Lodge' +p291927 +sg291136 +g27 +sg291137 +S'Walter Ernest Tittle' +p291928 +sa(dp291929 +g291130 +S'drypoint' +p291930 +sg291132 +S'1921' +p291931 +sg291134 +S'Lord Riddell' +p291932 +sg291136 +g27 +sg291137 +S'Walter Ernest Tittle' +p291933 +sa(dp291934 +g291130 +S'lithograph' +p291935 +sg291132 +S'unknown date\n' +p291936 +sg291134 +S'Combat de Cerfs' +p291937 +sg291136 +g27 +sg291137 +S'Karl Bodmer' +p291938 +sa(dp291939 +g291130 +S'engraving' +p291940 +sg291132 +S'unknown date\n' +p291941 +sg291134 +S'Burns Creek' +p291942 +sg291136 +g27 +sg291137 +S'Sheigla Hartman' +p291943 +sa(dp291944 +g291130 +S'color aquatint and etching' +p291945 +sg291132 +S'1974' +p291946 +sg291134 +S'Michelangelo' +p291947 +sg291136 +g27 +sg291137 +S'Ivan Valtchev' +p291948 +sa(dp291949 +g291130 +S'intaglio' +p291950 +sg291132 +S'1970' +p291951 +sg291134 +S'Devoted' +p291952 +sg291136 +g27 +sg291137 +S'Mark Tobey' +p291953 +sa(dp291954 +g291130 +S'screenprint' +p291955 +sg291132 +S'1973' +p291956 +sg291134 +S'JHM-I' +p291957 +sg291136 +g27 +sg291137 +S'Josef Albers' +p291958 +sa(dp291959 +g291130 +S'screenprint' +p291960 +sg291132 +S'1973' +p291961 +sg291134 +S'JHM-II' +p291962 +sg291136 +g27 +sg291137 +S'Josef Albers' +p291963 +sa(dp291964 +g291130 +S'screenprint' +p291965 +sg291132 +S'1972' +p291966 +sg291134 +S'J.P.' +p291967 +sg291136 +g27 +sg291137 +S'Josef Albers' +p291968 +sa(dp291969 +g291130 +S'screenprint' +p291970 +sg291132 +S'1971' +p291971 +sg291134 +S'VVI' +p291972 +sg291136 +g27 +sg291137 +S'Josef Albers' +p291973 +sa(dp291974 +g291130 +S'screenprint' +p291975 +sg291132 +S'1971' +p291976 +sg291134 +S'VVII' +p291977 +sg291136 +g27 +sg291137 +S'Josef Albers' +p291978 +sa(dp291979 +g291130 +S'screenprint' +p291980 +sg291132 +S'1972' +p291981 +sg291134 +S'LXX IIa' +p291982 +sg291136 +g27 +sg291137 +S'Josef Albers' +p291983 +sa(dp291984 +g291130 +S'screenprint' +p291985 +sg291132 +S'1972' +p291986 +sg291134 +S'LXX IIb' +p291987 +sg291136 +g27 +sg291137 +S'Josef Albers' +p291988 +sa(dp291989 +g291130 +S'color collagraph' +p291990 +sg291132 +S'1976' +p291991 +sg291134 +S'Sixpac' +p291992 +sg291136 +g27 +sg291137 +S'Gerald Johnson' +p291993 +sa(dp291994 +g291130 +S'screenprint' +p291995 +sg291132 +S'1970' +p291996 +sg291134 +S'Untitled' +p291997 +sg291136 +g27 +sg291137 +S'Robert Goodnough' +p291998 +sa(dp291999 +g291130 +S'etching and drypoint' +p292000 +sg291132 +S'1975' +p292001 +sg291134 +S"L'ete" +p292002 +sg291136 +g27 +sg291137 +S'Philippe Mohlitz' +p292003 +sa(dp292004 +g291130 +S'etching and drypoint' +p292005 +sg291132 +S'unknown date\n' +p292006 +sg291134 +S'Seated Woman' +p292007 +sg291136 +g27 +sg291137 +S'Louis Valtat' +p292008 +sa(dp292009 +g291130 +S'etching' +p292010 +sg291132 +S'1809' +p292011 +sg291134 +S"Daniel's Vision" +p292012 +sg291136 +g27 +sg291137 +S'Luigi Sabatelli I' +p292013 +sa(dp292014 +g291130 +S'mixed media' +p292015 +sg291132 +S'unknown date\n' +p292016 +sg291134 +S'White Still Life' +p292017 +sg291136 +g27 +sg291137 +S'Keith Anden Achepohl' +p292018 +sa(dp292019 +g291130 +S'color lithograph' +p292020 +sg291132 +S'1976' +p292021 +sg291134 +S'Dragon' +p292022 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p292023 +sa(dp292024 +g291130 +S'color lithograph' +p292025 +sg291132 +S'1977' +p292026 +sg291134 +S'May Dream' +p292027 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p292028 +sa(dp292029 +g291130 +S'color lithograph' +p292030 +sg291132 +S'1977' +p292031 +sg291134 +S'Meditation' +p292032 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p292033 +sa(dp292034 +g291130 +S'color lithograph' +p292035 +sg291132 +S'1977' +p292036 +sg291134 +S'Night Flier' +p292037 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p292038 +sa(dp292039 +g291130 +S'color lithograph' +p292040 +sg291132 +S'1977' +p292041 +sg291134 +S'North Wind I' +p292042 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p292043 +sa(dp292044 +g291130 +S'color lithograph' +p292045 +sg291132 +S'1977' +p292046 +sg291134 +S'North Wind II' +p292047 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p292048 +sa(dp292049 +g291130 +S'color lithograph' +p292050 +sg291132 +S'1975' +p292051 +sg291134 +S'Santa Fe I' +p292052 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p292053 +sa(dp292054 +g291130 +S'color lithograph' +p292055 +sg291132 +S'1976' +p292056 +sg291134 +S'Santa Fe II' +p292057 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p292058 +sa(dp292059 +g291130 +S'color lithograph' +p292060 +sg291132 +S'1977' +p292061 +sg291134 +S'Spring I' +p292062 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p292063 +sa(dp292064 +g291130 +S'color lithograph' +p292065 +sg291132 +S'1977' +p292066 +sg291134 +S'Spring II' +p292067 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p292068 +sa(dp292069 +g291130 +S'color lithograph' +p292070 +sg291132 +S'1977' +p292071 +sg291134 +S'Spring III' +p292072 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p292073 +sa(dp292074 +g291130 +S'color lithograph' +p292075 +sg291132 +S'1977' +p292076 +sg291134 +S'Love Letter #II' +p292077 +sg291136 +g27 +sg291137 +S'Charles Wilbert White' +p292078 +sa(dp292079 +g291130 +S'color lithograph' +p292080 +sg291132 +S'1975' +p292081 +sg291134 +S'Prophet I' +p292082 +sg291136 +g27 +sg291137 +S'Charles Wilbert White' +p292083 +sa(dp292084 +g291130 +S'color lithograph' +p292085 +sg291132 +S'1976' +p292086 +sg291134 +S'Untitled' +p292087 +sg291136 +g27 +sg291137 +S'Emerson Woelffer' +p292088 +sa(dp292089 +g291130 +S'color lithograph' +p292090 +sg291132 +S'1977' +p292091 +sg291134 +S'Untitled' +p292092 +sg291136 +g27 +sg291137 +S'Emerson Woelffer' +p292093 +sa(dp292094 +g291130 +S'color lithograph' +p292095 +sg291132 +S'1977' +p292096 +sg291134 +S'Untitled' +p292097 +sg291136 +g27 +sg291137 +S'Emerson Woelffer' +p292098 +sa(dp292099 +g291130 +S'mezzotint' +p292100 +sg291132 +S'1978' +p292101 +sg291134 +S'Mura V' +p292102 +sg291136 +g27 +sg291137 +S'Keith Anden Achepohl' +p292103 +sa(dp292104 +g291130 +S'color collagraph' +p292105 +sg291132 +S'1976' +p292106 +sg291134 +S"Caruther's Countdown" +p292107 +sg291136 +g27 +sg291137 +S'Gerald Johnson' +p292108 +sa(dp292109 +g291130 +S'mezzotint and drypoint' +p292110 +sg291132 +S'1978' +p292111 +sg291134 +S'Mura V' +p292112 +sg291136 +g27 +sg291137 +S'Keith Anden Achepohl' +p292113 +sa(dp292114 +g291130 +S'mezzotint and drypoint' +p292115 +sg291132 +S'1978' +p292116 +sg291134 +S'Mura V' +p292117 +sg291136 +g27 +sg291137 +S'Keith Anden Achepohl' +p292118 +sa(dp292119 +g291130 +S'mezzotint and drypoint' +p292120 +sg291132 +S'1978' +p292121 +sg291134 +S'Mura V' +p292122 +sg291136 +g27 +sg291137 +S'Keith Anden Achepohl' +p292123 +sa(dp292124 +g291130 +S'mezzotint and drypoint' +p292125 +sg291132 +S'1978' +p292126 +sg291134 +S'Mura V' +p292127 +sg291136 +g27 +sg291137 +S'Keith Anden Achepohl' +p292128 +sa(dp292129 +g291130 +S'mezzotint and drypoint' +p292130 +sg291132 +S'1978' +p292131 +sg291134 +S'Mura V' +p292132 +sg291136 +g27 +sg291137 +S'Keith Anden Achepohl' +p292133 +sa(dp292134 +g291130 +S'mezzotint and drypoint' +p292135 +sg291132 +S'1978' +p292136 +sg291134 +S'Mura V' +p292137 +sg291136 +g27 +sg291137 +S'Keith Anden Achepohl' +p292138 +sa(dp292139 +g291130 +S'silkscreen' +p292140 +sg291132 +S'1979' +p292141 +sg291134 +S'Radiation from White' +p292142 +sg291136 +g27 +sg291137 +S'Max Bill' +p292143 +sa(dp292144 +g291134 +S'Man Leaning on a Rail [verso]' +p292145 +sg291137 +S'Matteo Rosselli' +p292146 +sg291130 +S'red chalk on laid paper' +p292147 +sg291132 +S'unknown date\n' +p292148 +sS'thumbnail' +p292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074c7.jpg' +p292150 +sg291136 +g27 +sa(dp292151 +g291134 +S'Battle of Nude Men' +p292152 +sg291137 +S'Sir Peter Paul Rubens' +p292153 +sg291130 +S'pen and brown ink over black chalk on three irregularly cut sheets of buff laid paper; laid down and with corner pieces added' +p292154 +sg291132 +S'unknown date\n' +p292155 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00027/a000279e.jpg' +p292156 +sg291136 +g27 +sa(dp292157 +g291134 +S'Saint George and the Dragon' +p292158 +sg291137 +S'Anthonis Sallaert' +p292159 +sg291130 +S'brown and white gouache' +p292160 +sg291132 +S'unknown date\n' +p292161 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a00072be.jpg' +p292162 +sg291136 +g27 +sa(dp292163 +g291134 +S'Dr. Ernst Wagner' +p292164 +sg291137 +S'Egon Schiele' +p292165 +sg291130 +S'black crayon on wove paper' +p292166 +sg291132 +S'1918' +p292167 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a000223b.jpg' +p292168 +sg291136 +g27 +sa(dp292169 +g291134 +S'The Virgin and Child with John the Baptist' +p292170 +sg291137 +S'Cornelis Schut I' +p292171 +sg291130 +S'black chalk' +p292172 +sg291132 +S'unknown date\n' +p292173 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d95.jpg' +p292174 +sg291136 +g27 +sa(dp292175 +g291134 +S'River God with Putti' +p292176 +sg291137 +S'Cornelis Schut I' +p292177 +sg291130 +S'pen and ink with gray wash' +p292178 +sg291132 +S'unknown date\n' +p292179 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dc5.jpg' +p292180 +sg291136 +g27 +sa(dp292181 +g291134 +S'Annunciation to the Shepherds' +p292182 +sg291137 +S'Gerrit Pietersz Sweelinck' +p292183 +sg291130 +S'pen and brown ink with brown wash, heightened with white' +p292184 +sg291132 +S'unknown date\n' +p292185 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a000729a.jpg' +p292186 +sg291136 +g27 +sa(dp292187 +g291134 +S'The Coronation of the Virgin' +p292188 +sg291137 +S'Bartolomeo Tarsia' +p292189 +sg291130 +S'pen and brown ink with brown wash over black chalk' +p292190 +sg291132 +S'1730s' +p292191 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a00071ec.jpg' +p292192 +sg291136 +g27 +sa(dp292193 +g291134 +S'Birth of Venus' +p292194 +sg291137 +S'Sir James Thornhill' +p292195 +sg291130 +S'pen and brown ink with gray wash on laid paper' +p292196 +sg291132 +S'c. 1710' +p292197 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cec.jpg' +p292198 +sg291136 +g27 +sa(dp292199 +g291134 +S'Tritons and Nymphs' +p292200 +sg291137 +S'Pellegrino Tibaldi' +p292201 +sg291130 +S', unknown date' +p292202 +sg291132 +S'\n' +p292203 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a000751b.jpg' +p292204 +sg291136 +g27 +sa(dp292205 +g291134 +S'God the Father Seated in Clouds Surrounded by Angels and Putti' +p292206 +sg291137 +S'Giovanni Domenico Tiepolo' +p292207 +sg291130 +S'pen and black ink with brown wash over black chalkon laid paper' +p292208 +sg291132 +S'unknown date\n' +p292209 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fc0.jpg' +p292210 +sg291136 +g27 +sa(dp292211 +g291134 +S'A Venetian Lawyer at His Desk' +p292212 +sg291137 +S'Giovanni Battista Tiepolo' +p292213 +sg291130 +S'pen and ink with gray wash on laid paper' +p292214 +sg291132 +S'c. 1760' +p292215 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a0002865.jpg' +p292216 +sg291136 +g27 +sa(dp292217 +g291134 +S'Head of a Matron' +p292218 +sg291137 +S'Anton Johann Tischbein' +p292219 +sg291130 +S'black and red chalk on laid paper' +p292220 +sg291132 +S'unknown date\n' +p292221 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e7c.jpg' +p292222 +sg291136 +g27 +sa(dp292223 +g291134 +S'Psyche Giving Her Coin to Charon' +p292224 +sg291137 +S'Henry Tresham' +p292225 +sg291130 +S', 1796' +p292226 +sg291132 +S'\n' +p292227 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a000723a.jpg' +p292228 +sg291136 +g27 +sa(dp292229 +g291134 +S'Saint John the Evangelist' +p292230 +sg291137 +S'Georg Anton Urlaub' +p292231 +sg291130 +S'pen and brown ink with brown wash, heightened with white, on blue paper' +p292232 +sg291132 +S'c. 1753' +p292233 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b9/a000b9a6.jpg' +p292234 +sg291136 +g27 +sa(dp292235 +g291134 +S'Three Revelers and a Gardner' +p292236 +sg291137 +S'Sebastian Vrancx' +p292237 +sg291130 +S'pen and brown ink with brown wash over black chalkon laid paper' +p292238 +sg291132 +S'unknown date\n' +p292239 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a0007288.jpg' +p292240 +sg291136 +g27 +sa(dp292241 +g291130 +S'pen and brown ink with brown wash and blue gouache heightened with white on wove paper mounted to board' +p292242 +sg291132 +S'1805' +p292243 +sg291134 +S'The Adoration of the Shepherds' +p292244 +sg291136 +g27 +sg291137 +S'Benjamin West' +p292245 +sa(dp292246 +g291134 +S'The Crucifixion' +p292247 +sg291137 +S'Benjamin West' +p292248 +sg291130 +S'pen and brown and black ink with blue, black, and red chalk on laid paper' +p292249 +sg291132 +S'1796/1797' +p292250 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e47b.jpg' +p292251 +sg291136 +g27 +sa(dp292252 +g291134 +S'The Disobedient Prophet' +p292253 +sg291137 +S'Benjamin West' +p292254 +sg291130 +S'pen and black ink with wash heightened with blue and cream oil paint over chalk' +p292255 +sg291132 +S'1793' +p292256 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009f4.jpg' +p292257 +sg291136 +g27 +sa(dp292258 +g291134 +S'Vagabond Family [recto]' +p292259 +sg291137 +S'Benjamin West' +p292260 +sg291130 +S'pen and brown ink with brown and blue wash on wove paper' +p292261 +sg291132 +S'1788' +p292262 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f09f.jpg' +p292263 +sg291136 +g27 +sa(dp292264 +g291130 +S'graphite and pen and brown ink' +p292265 +sg291132 +S'probably c. 1788' +p292266 +sg291134 +S'Cross Section of a Gothic Church [verso]' +p292267 +sg291136 +g27 +sg291137 +S'Benjamin West' +p292268 +sa(dp292269 +g291134 +S'Judgment of Paris' +p292270 +sg291137 +S'Jacob de Wit' +p292271 +sg291130 +S'red chalk on laid paper' +p292272 +sg291132 +S'unknown date\n' +p292273 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a00028ea.jpg' +p292274 +sg291136 +g27 +sa(dp292275 +g291134 +S'Martyrdom of Saint Margaret' +p292276 +sg291137 +S'Giuseppe Cesari' +p292277 +sg291130 +S', c. 1608/1611' +p292278 +sg291132 +S'\n' +p292279 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f0c.jpg' +p292280 +sg291136 +g27 +sa(dp292281 +g291134 +S'Christ Expelling the Moneychangers from the Temple' +p292282 +sg291137 +S'Giovanni Bernardi' +p292283 +sg291130 +S'engraved rock crystal' +p292284 +sg291132 +S'c. 1540/1549' +p292285 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c2c.jpg' +p292286 +sg291136 +g27 +sa(dp292287 +g291134 +S'The Virgin and Child Appearing to Saint Martina' +p292288 +sg291137 +S'Artist Information (' +p292289 +sg291130 +S'(artist after)' +p292290 +sg291132 +S'\n' +p292291 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b32.jpg' +p292292 +sg291136 +S"Cosimo Fancelli, from a family of stonemasons, sculpted the designs of key artists of the Italian baroque, including those of his friend, the Roman painter and architect Pietro da Cortona. Among Pietro's celebrated paintings are ceiling frescoes in the Barberini Palace, Rome, and the Pitti Palace, Florence. Smaller-scale sculptural works like this one, based on Pietro's design, reflect the same compositional balance and vitality.\n This work depicts Martina, the Christian daughter of a Roman consul who died for her refusal to worship the pagan gods. The palm of martyrdom appears at her feet along with an iron hook, one of the instruments of her torture. The Roman building in the background may be the temple of Apollo struck by lightning when Martina made the sign of the cross. As the Virgin and Child appear to her on a cloud, the excitement of the encounter is echoed by the swirling drapery patterns and the windblown sweep of distant trees.\n Pietro portrayed Saint Martina repeatedly after her remains were discovered in 1634 during reconstruction of the crypt in the church of the Academy of Saint Luke, which he was overseeing. In celebration, Pietro was commissioned to rebuild the entire church, renamed Saints Luke and Martina. He designed and collaborated with Fancelli on an alabaster and lapis lazuli relief version of the Martina image that still adorns the altar of her shrine in the crypt. This gilt bronze relief is among the best of the several other sculptural interpretations of the theme.\n " +p292293 +sa(dp292294 +g291130 +S'black crayon on orange-brown paper' +p292295 +sg291132 +S'1955' +p292296 +sg291134 +S'Indian Standing with Hand on Hip' +p292297 +sg291136 +g27 +sg291137 +S'Courtney Allen' +p292298 +sa(dp292299 +g291130 +S'black crayon on tan paper' +p292300 +sg291132 +S'1955' +p292301 +sg291134 +S'Nude Indian, Leaning on a Pole' +p292302 +sg291136 +g27 +sg291137 +S'Courtney Allen' +p292303 +sa(dp292304 +g291134 +S'Man in a Great Coat' +p292305 +sg291137 +S'Artist Information (' +p292306 +sg291130 +S'(artist)' +p292307 +sg291132 +S'\n' +p292308 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f09a.jpg' +p292309 +sg291136 +g27 +sa(dp292310 +g291130 +S'graphite on tracing paper' +p292311 +sg291132 +S'1924' +p292312 +sg291134 +S'Quai Vert, Bruges' +p292313 +sg291136 +g27 +sg291137 +S'John Taylor Arms' +p292314 +sa(dp292315 +g291130 +S'graphite on wove paper' +p292316 +sg291132 +S'1950' +p292317 +sg291134 +S'The Clock Tower, Tr\xc3\xa9brivan' +p292318 +sg291136 +g27 +sg291137 +S'John Taylor Arms' +p292319 +sa(dp292320 +g291130 +S'black chalk' +p292321 +sg291132 +S'1929' +p292322 +sg291134 +S'Sore Throat' +p292323 +sg291136 +g27 +sg291137 +S'Peggy Bacon' +p292324 +sa(dp292325 +g291130 +S'graphite on tracing paper' +p292326 +sg291132 +S'unknown date\n' +p292327 +sg291134 +S'Belinda' +p292328 +sg291136 +g27 +sg291137 +S'Peggy Bacon' +p292329 +sa(dp292330 +g291130 +S'black chalk on tracing paper' +p292331 +sg291132 +S'unknown date\n' +p292332 +sg291134 +S'Alfred Stieglitz' +p292333 +sg291136 +g27 +sg291137 +S'Peggy Bacon' +p292334 +sa(dp292335 +g291130 +S'pen and brown ink' +p292336 +sg291132 +S'1918' +p292337 +sg291134 +S'Newburgh on the Hudson' +p292338 +sg291136 +g27 +sg291137 +S'Gifford Beal' +p292339 +sa(dp292340 +g291130 +S'black chalk with blue and white gouache and gray wash over graphite' +p292341 +sg291132 +S'unknown date\n' +p292342 +sg291134 +S'After Deck' +p292343 +sg291136 +g27 +sg291137 +S'Carroll Bill' +p292344 +sa(dp292345 +g291134 +S'Koln, Maria-Capitol' +p292346 +sg291137 +S'Oscar F. Bluemner' +p292347 +sg291130 +S'pen and black ink over graphite' +p292348 +sg291132 +S'1892' +p292349 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e5/a000e568.jpg' +p292350 +sg291136 +g27 +sa(dp292351 +g291134 +S'The Bronx' +p292352 +sg291137 +S'Oscar F. Bluemner' +p292353 +sg291130 +S'charcoal' +p292354 +sg291132 +S'1902' +p292355 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e06b.jpg' +p292356 +sg291136 +g27 +sa(dp292357 +g291134 +S'The Arno in the Evening, Florence' +p292358 +sg291137 +S'Oscar F. Bluemner' +p292359 +sg291130 +S'pen and black ink with black wash' +p292360 +sg291132 +S'1912' +p292361 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e068.jpg' +p292362 +sg291136 +g27 +sa(dp292363 +g291134 +S'Fiesole, Cloister of S. Domenico' +p292364 +sg291137 +S'Oscar F. Bluemner' +p292365 +sg291130 +S'pen and black ink' +p292366 +sg291132 +S'1912' +p292367 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e067.jpg' +p292368 +sg291136 +g27 +sa(dp292369 +g291134 +S'Piazza S. Spirito, Florence' +p292370 +sg291137 +S'Oscar F. Bluemner' +p292371 +sg291130 +S'pen and black ink' +p292372 +sg291132 +S'1912' +p292373 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e066.jpg' +p292374 +sg291136 +g27 +sa(dp292375 +g291134 +S'Canal, Venice' +p292376 +sg291137 +S'Oscar F. Bluemner' +p292377 +sg291130 +S'pen and black ink and colored crayon, over graphite' +p292378 +sg291132 +S'1912' +p292379 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e06a.jpg' +p292380 +sg291136 +g27 +sa(dp292381 +g291134 +S'Venice, Boats' +p292382 +sg291137 +S'Oscar F. Bluemner' +p292383 +sg291130 +S'pen and black ink with black wash and blue, yellow and brown crayon' +p292384 +sg291132 +S'1912' +p292385 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e065.jpg' +p292386 +sg291136 +g27 +sa(dp292387 +g291134 +S'Street in the Bronx' +p292388 +sg291137 +S'Oscar F. Bluemner' +p292389 +sg291130 +S'crayon' +p292390 +sg291132 +S'1913' +p292391 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e069.jpg' +p292392 +sg291136 +g27 +sa(dp292393 +g291134 +S"Woman's Head" +p292394 +sg291137 +S'Adolph Borie' +p292395 +sg291130 +S'black chalk on gray paper' +p292396 +sg291132 +S'unknown date\n' +p292397 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e5/a000e56f.jpg' +p292398 +sg291136 +g27 +sa(dp292399 +g291130 +S'pen and black ink with gray wash on paperboard' +p292400 +sg291132 +S'unknown date\n' +p292401 +sg291134 +S'Illustration for "Bird Beast"' +p292402 +sg291136 +g27 +sg291137 +S'Charles Livingston Bull' +p292403 +sa(dp292404 +g291130 +S'black chalk' +p292405 +sg291132 +S'1927' +p292406 +sg291134 +S'Yosemite, Cathedral Rocks' +p292407 +sg291136 +g27 +sg291137 +S'Kenneth Callahan' +p292408 +sa(dp292409 +g291130 +S'black chalk' +p292410 +sg291132 +S'1927' +p292411 +sg291134 +S'Yosemite, Half Dome' +p292412 +sg291136 +g27 +sg291137 +S'Kenneth Callahan' +p292413 +sa(dp292414 +g291134 +S'San Remo' +p292415 +sg291137 +S'John William Casilear' +p292416 +sg291130 +S'graphite and pen and black ink' +p292417 +sg291132 +S'1888' +p292418 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e489.jpg' +p292419 +sg291136 +g27 +sa(dp292420 +g291130 +S'graphite' +p292421 +sg291132 +S'unknown date\n' +p292422 +sg291134 +S'Hospital, St. John, Bruges' +p292423 +sg291136 +g27 +sg291137 +S'Samuel Chamberlain' +p292424 +sa(dp292425 +g291134 +S'Moat at Fort Marion, Florida' +p292426 +sg291137 +S'James Wells Champney' +p292427 +sg291130 +S'graphite with gray wash on wove tan paper' +p292428 +sg291132 +S'c. 1874' +p292429 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0af.jpg' +p292430 +sg291136 +g27 +sa(dp292431 +g291134 +S'Fort Marion, Florida' +p292432 +sg291137 +S'James Wells Champney' +p292433 +sg291130 +S'graphite with gray wash on wove paper' +p292434 +sg291132 +S'c. 1874' +p292435 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0b0.jpg' +p292436 +sg291136 +g27 +sa(dp292437 +g291134 +S'Idyll' +p292438 +sg291137 +S'Frederick Stuart Church' +p292439 +sg291130 +S'graphite with gray wash and white heightening on brown paper' +p292440 +sg291132 +S'1886' +p292441 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e497.jpg' +p292442 +sg291136 +g27 +sa(dp292443 +g291130 +S'black crayon' +p292444 +sg291132 +S'unknown date\n' +p292445 +sg291134 +S'Harvest Time' +p292446 +sg291136 +g27 +sg291137 +S'John Edward Costigan' +p292447 +sa(dp292448 +g291130 +S'graphite' +p292449 +sg291132 +S'unknown date\n' +p292450 +sg291134 +S'Balinese Girl with Child' +p292451 +sg291136 +g27 +sg291137 +S'Miguel Covarrubias' +p292452 +sa(dp292453 +g291130 +S'pen and black ink' +p292454 +sg291132 +S'unknown date\n' +p292455 +sg291134 +S'Kid' +p292456 +sg291136 +g27 +sg291137 +S'Jos\xc3\xa9 De Creeft' +p292457 +sa(dp292458 +g291134 +S'Bernini Fountain, Rome [recto]' +p292459 +sg291137 +S'Felix Octavius Carr Darley' +p292460 +sg291130 +S'gouache over graphite on two sheets of joined wove paper' +p292461 +sg291132 +S'unknown date\n' +p292462 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0b4.jpg' +p292463 +sg291136 +g27 +sa(dp292464 +g291130 +S'graphite on two joined sheets' +p292465 +sg291132 +S'unknown date\n' +p292466 +sg291134 +S'Chef Tossing Pancakes and Group of Four Men [verso]' +p292467 +sg291136 +g27 +sg291137 +S'Felix Octavius Carr Darley' +p292468 +sa(dp292469 +g291134 +S'Mission Dolores, San Francisco' +p292470 +sg291137 +S'Arthur B. Davies' +p292471 +sg291130 +S'graphite' +p292472 +sg291132 +S'1913' +p292473 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e099.jpg' +p292474 +sg291136 +g27 +sa(dp292475 +g291134 +S'Josie' +p292476 +sg291137 +S'Arthur B. Davies' +p292477 +sg291130 +S'graphite' +p292478 +sg291132 +S'1892' +p292479 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e09c.jpg' +p292480 +sg291136 +g27 +sa(dp292481 +g291134 +S'Panther and Young Lion Studies' +p292482 +sg291137 +S'Arthur B. Davies' +p292483 +sg291130 +S'graphite' +p292484 +sg291132 +S'unknown date\n' +p292485 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e09b.jpg' +p292486 +sg291136 +g27 +sa(dp292487 +g291130 +S'brush and black ink on brown paper' +p292488 +sg291132 +S'c. 1929' +p292489 +sg291134 +S'In the Mountains' +p292490 +sg291136 +g27 +sg291137 +S'Adolf Arthur Dehn' +p292491 +sa(dp292492 +g291134 +S"Woman's Head" +p292493 +sg291137 +S'Charles Demuth' +p292494 +sg291130 +S'graphite' +p292495 +sg291132 +S'unknown date\n' +p292496 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e0a2.jpg' +p292497 +sg291136 +g27 +sa(dp292498 +g291130 +S'black crayon on blue paper' +p292499 +sg291132 +S'1938' +p292500 +sg291134 +S'Mexican Indian Woman' +p292501 +sg291136 +g27 +sg291137 +S'Olin Dows' +p292502 +sa(dp292503 +g291134 +S'Self-Portrait' +p292504 +sg291137 +S'John Whetten Ehninger' +p292505 +sg291130 +S'graphite on brown paper' +p292506 +sg291132 +S'1859' +p292507 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0b5.jpg' +p292508 +sg291136 +g27 +sa(dp292509 +g291130 +S'pen and black ink with black wash' +p292510 +sg291132 +S'1929' +p292511 +sg291134 +S'Reclining Nude' +p292512 +sg291136 +g27 +sg291137 +S'Ernest Fiene' +p292513 +sa(dp292514 +g291130 +S'black chalk' +p292515 +sg291132 +S'unknown date\n' +p292516 +sg291134 +S'Village Arrival of the Rabbi' +p292517 +sg291136 +g27 +sg291137 +S'Tully Filmus' +p292518 +sa(dp292519 +g291134 +S'Landscape near Washington, Connecticut' +p292520 +sg291137 +S'William Hamilton Gibson' +p292521 +sg291130 +S'graphite on laid paper' +p292522 +sg291132 +S'unknown date\n' +p292523 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4a1.jpg' +p292524 +sg291136 +g27 +sa(dp292525 +g291130 +S'black crayon with brown wash' +p292526 +sg291132 +S'unknown date\n' +p292527 +sg291134 +S'Fishing Wharfs' +p292528 +sg291136 +g27 +sg291137 +S'Gordon Hope Grant' +p292529 +sa(dp292530 +g291130 +S'graphite' +p292531 +sg291132 +S'unknown date\n' +p292532 +sg291134 +S'Street in Normandy' +p292533 +sg291136 +g27 +sg291137 +S'Frederick Garrison Hall' +p292534 +sa(dp292535 +g291130 +S'graphite' +p292536 +sg291132 +S'unknown date\n' +p292537 +sg291134 +S'Market in Algiers' +p292538 +sg291136 +g27 +sg291137 +S'Thomas Schofield Handforth' +p292539 +sa(dp292540 +g291134 +S'Market, Mexico, Indian Woman Buying Trinkets' +p292541 +sg291137 +S'George Overbury (Pop) Hart' +p292542 +sg291130 +S'pen and black ink with watercolor' +p292543 +sg291132 +S'unknown date\n' +p292544 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e9/a000e9c8.jpg' +p292545 +sg291136 +g27 +sa(dp292546 +g291134 +S'Pond Edge' +p292547 +sg291137 +S'James McDougal Hart' +p292548 +sg291130 +S'graphite' +p292549 +sg291132 +S'1858' +p292550 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0c1.jpg' +p292551 +sg291136 +g27 +sa(dp292552 +g291134 +S'Shipwreck in Storm' +p292553 +sg291137 +S'William Hart' +p292554 +sg291130 +S'pen and black ink with gray wash' +p292555 +sg291132 +S'unknown date\n' +p292556 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00068/a0006861.jpg' +p292557 +sg291136 +g27 +sa(dp292558 +g291134 +S'Deep Valley in Mountainous Landscape' +p292559 +sg291137 +S'William Hart' +p292560 +sg291130 +S'pen and brown ink with brown wash' +p292561 +sg291132 +S'unknown date\n' +p292562 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0bd.jpg' +p292563 +sg291136 +g27 +sa(dp292564 +g291134 +S'Hilly Landscape with Trees' +p292565 +sg291137 +S'William Hart' +p292566 +sg291130 +S'pen and brown ink with brown wash' +p292567 +sg291132 +S'1855' +p292568 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0bc.jpg' +p292569 +sg291136 +g27 +sa(dp292570 +g291130 +S'red chalk' +p292571 +sg291132 +S'unknown date\n' +p292572 +sg291134 +S"John Taylor Arms' Son, John" +p292573 +sg291136 +g27 +sg291137 +S'Arthur William Heintzelman' +p292574 +sa(dp292575 +g291130 +S'brown chalk' +p292576 +sg291132 +S'1962' +p292577 +sg291134 +S'Young Woman, Spain' +p292578 +sg291136 +g27 +sg291137 +S'Arthur William Heintzelman' +p292579 +sa(dp292580 +g291130 +S'pen and black ink with black wash' +p292581 +sg291132 +S'unknown date\n' +p292582 +sg291134 +S'Solitude' +p292583 +sg291136 +g27 +sg291137 +S'John Heliker' +p292584 +sa(dp292585 +g291134 +S'Girl Facing Left' +p292586 +sg291137 +S'Robert Henri' +p292587 +sg291130 +S'pen and blue ink' +p292588 +sg291132 +S'unknown date\n' +p292589 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e1/a000e1c7.jpg' +p292590 +sg291136 +g27 +sa(dp292591 +g291130 +S'graphite and black and color crayons' +p292592 +sg291132 +S'1920' +p292593 +sg291134 +S'John Taylor Arms in His Studio' +p292594 +sg291136 +g27 +sg291137 +S'Eugene Higgins' +p292595 +sa(dp292596 +g291130 +S'black and green crayon over black chalk' +p292597 +sg291132 +S'unknown date\n' +p292598 +sg291134 +S'Samson and Delilah' +p292599 +sg291136 +g27 +sg291137 +S'Eugene Higgins' +p292600 +sa(dp292601 +g291130 +S'black chalk on brown paper' +p292602 +sg291132 +S'unknown date\n' +p292603 +sg291134 +S'Two Men at a Table' +p292604 +sg291136 +g27 +sg291137 +S'Carl Robert Holty' +p292605 +sa(dp292606 +g291134 +S'Egmont and Hoorn' +p292607 +sg291137 +S'Artist Information (' +p292608 +sg291130 +S'(artist after)' +p292609 +sg291132 +S'\n' +p292610 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0c2.jpg' +p292611 +sg291136 +g27 +sa(dp292612 +g291134 +S'Illustration for Kensworth' +p292613 +sg291137 +S'Alfred E. Hubbard' +p292614 +sg291130 +S'brush and black ink with gray wash over graphite' +p292615 +sg291132 +S'unknown date\n' +p292616 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0bb.jpg' +p292617 +sg291136 +g27 +sa(dp292618 +g291134 +S'Title Page for Kensworth' +p292619 +sg291137 +S'Alfred E. Hubbard' +p292620 +sg291130 +S'graphite with gray wash' +p292621 +sg291132 +S'unknown date\n' +p292622 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0c3.jpg' +p292623 +sg291136 +g27 +sa(dp292624 +g291130 +S'graphite' +p292625 +sg291132 +S'1946' +p292626 +sg291134 +S'Bruce Herrick' +p292627 +sg291136 +g27 +sg291137 +S'Alfred Heber Hutty' +p292628 +sa(dp292629 +g291130 +S'graphite' +p292630 +sg291132 +S'unknown date\n' +p292631 +sg291134 +S'Magnolia Gardens, Charleston, South Carolina' +p292632 +sg291136 +g27 +sg291137 +S'Alfred Heber Hutty' +p292633 +sa(dp292634 +g291130 +S'graphite on wove paper' +p292635 +sg291132 +S'unknown date\n' +p292636 +sg291134 +S'Charleston Buildings' +p292637 +sg291136 +g27 +sg291137 +S'Alfred Heber Hutty' +p292638 +sa(dp292639 +g291130 +S'graphite' +p292640 +sg291132 +S'unknown date\n' +p292641 +sg291134 +S'Sketches of Street Figures, Charleston' +p292642 +sg291136 +g27 +sg291137 +S'Alfred Heber Hutty' +p292643 +sa(dp292644 +g291134 +S'Grover Cleveland [recto]' +p292645 +sg291137 +S'Eastman Johnson' +p292646 +sg291130 +S'graphite and black crayon on paperboard' +p292647 +sg291132 +S'unknown date\n' +p292648 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0d2.jpg' +p292649 +sg291136 +g27 +sa(dp292650 +g291130 +S'graphite on paperboard' +p292651 +sg291132 +S'unknown date\n' +p292652 +sg291134 +S'Grover Cleveland [verso]' +p292653 +sg291136 +g27 +sg291137 +S'Eastman Johnson' +p292654 +sa(dp292655 +g291130 +S'pen and brown ink heightened with white on dark gray paper' +p292656 +sg291132 +S'unknown date\n' +p292657 +sg291134 +S'Moses' +p292658 +sg291136 +g27 +sg291137 +S'Leo Katz' +p292659 +sa(dp292660 +g291130 +S'black chalk' +p292661 +sg291132 +S'unknown date\n' +p292662 +sg291134 +S'Post No.8, Korea' +p292663 +sg291136 +g27 +sg291137 +S'E.C. Kenney' +p292664 +sa(dp292665 +g291130 +S'graphite' +p292666 +sg291132 +S'unknown date\n' +p292667 +sg291134 +S'Sketch for Woodstock "Bather" I' +p292668 +sg291136 +g27 +sg291137 +S'Rockwell Kent' +p292669 +sa(dp292670 +g291130 +S'graphite' +p292671 +sg291132 +S'unknown date\n' +p292672 +sg291134 +S'Sketch for Woodstock "Bather" II' +p292673 +sg291136 +g27 +sg291137 +S'Rockwell Kent' +p292674 +sa(dp292675 +g291130 +S'black chalk on paperboard' +p292676 +sg291132 +S'unknown date\n' +p292677 +sg291134 +S'Doughboys Marching' +p292678 +sg291136 +g27 +sg291137 +S'Kerr Eby' +p292679 +sa(dp292680 +g291130 +S'watercolor' +p292681 +sg291132 +S'unknown date\n' +p292682 +sg291134 +S'Fishermen, Provincetown [recto]' +p292683 +sg291136 +g27 +sg291137 +S'Karl Knaths' +p292684 +sa(dp292685 +g291130 +S'graphite' +p292686 +sg291132 +S'unknown date\n' +p292687 +sg291134 +S'Still Life [verso]' +p292688 +sg291136 +g27 +sg291137 +S'Karl Knaths' +p292689 +sa(dp292690 +g291130 +S'pen and black ink with colored crayon' +p292691 +sg291132 +S'unknown date\n' +p292692 +sg291134 +S'Provincetown Fishermen' +p292693 +sg291136 +g27 +sg291137 +S'Karl Knaths' +p292694 +sa(dp292695 +g291130 +S'brush and black ink with gray wash over graphite on paperboard' +p292696 +sg291132 +S'unknown date\n' +p292697 +sg291134 +S'Ducktown Cab Company' +p292698 +sg291136 +g27 +sg291137 +S'Walt Kuhn' +p292699 +sa(dp292700 +g291130 +S'graphite on three joined sheets' +p292701 +sg291132 +S'1913' +p292702 +sg291134 +S'Cows [recto]' +p292703 +sg291136 +g27 +sg291137 +S'Walt Kuhn' +p292704 +sa(dp292705 +g291130 +S'graphite on three joined sheets' +p292706 +sg291132 +S'unknown date\n' +p292707 +sg291134 +S'Landscape [verso]' +p292708 +sg291136 +g27 +sg291137 +S'Walt Kuhn' +p292709 +sa(dp292710 +g291134 +S'Kneeling Figure' +p292711 +sg291137 +S'Thomas La Farge' +p292712 +sg291130 +S'black chalk on tracing paper' +p292713 +sg291132 +S'1937' +p292714 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ea/a000ea07.jpg' +p292715 +sg291136 +g27 +sa(dp292716 +g291134 +S'Male Figure, Bending Forward' +p292717 +sg291137 +S'Thomas La Farge' +p292718 +sg291130 +S'red chalk on tracing paper' +p292719 +sg291132 +S'unknown date\n' +p292720 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ea/a000ea08.jpg' +p292721 +sg291136 +g27 +sa(dp292722 +g291130 +S'pen and black ink with gray wash' +p292723 +sg291132 +S'unknown date\n' +p292724 +sg291134 +S'Solitude, Self-Portrait' +p292725 +sg291136 +g27 +sg291137 +S'Richard Lahey' +p292726 +sa(dp292727 +g291130 +S'black crayon' +p292728 +sg291132 +S'in or before 1938' +p292729 +sg291134 +S'Flying Squirrel' +p292730 +sg291136 +g27 +sg291137 +S'Dorothy Pulis Lathrop' +p292731 +sa(dp292732 +g291134 +S'Under the Trees' +p292733 +sg291137 +S'George Benjamin Luks' +p292734 +sg291130 +S'black crayon' +p292735 +sg291132 +S'unknown date\n' +p292736 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e1/a000e1e4.jpg' +p292737 +sg291136 +g27 +sa(dp292738 +g291134 +S'Standing Woman in Profile' +p292739 +sg291137 +S'Homer Dodge Martin' +p292740 +sg291130 +S'black crayon on gray-blue paper' +p292741 +sg291132 +S'unknown date\n' +p292742 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0db.jpg' +p292743 +sg291136 +g27 +sa(dp292744 +g291134 +S'Seine et Marne' +p292745 +sg291137 +S'Charles Frederick William Mielatz' +p292746 +sg291130 +S'graphite' +p292747 +sg291132 +S'unknown date\n' +p292748 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4bf.jpg' +p292749 +sg291136 +g27 +sa(dp292750 +g291130 +S'black chalk with touches of pen and black ink and graphite' +p292751 +sg291132 +S'1957' +p292752 +sg291134 +S'Oracle Mountains, Tucson, Arizona' +p292753 +sg291136 +g27 +sg291137 +S'Leo Meissner' +p292754 +sa(dp292755 +g291130 +S'wood engraving in black' +p292756 +sg291132 +S'unknown date\n' +p292757 +sg291134 +S'Oracle Mountains, Arizona' +p292758 +sg291136 +g27 +sg291137 +S'Leo Meissner' +p292759 +sa(dp292760 +g291134 +S'Staggering Body Blows' +p292761 +sg291137 +S'Francis Luis Mora' +p292762 +sg291130 +S'graphite on tracing paper' +p292763 +sg291132 +S'unknown date\n' +p292764 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ea/a000ea3b.jpg' +p292765 +sg291136 +g27 +sa(dp292766 +g291134 +S'Hunter and Fleeing Deer' +p292767 +sg291137 +S'Thomas Moran' +p292768 +sg291130 +S'graphite with blue wash' +p292769 +sg291132 +S'unknown date\n' +p292770 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0de.jpg' +p292771 +sg291136 +g27 +sa(dp292772 +g291130 +S'pen and black ink with watercolor' +p292773 +sg291132 +S'1940' +p292774 +sg291134 +S'Near Sheepshead Bay, Brooklyn' +p292775 +sg291136 +g27 +sg291137 +S'Ira Moskowitz' +p292776 +sa(dp292777 +g291130 +S'pen and brown ink over graphite' +p292778 +sg291132 +S'1931' +p292779 +sg291134 +S'Standing Female Nude' +p292780 +sg291136 +g27 +sg291137 +S'Ira Moskowitz' +p292781 +sa(dp292782 +g291130 +S'pen and black ink' +p292783 +sg291132 +S'1944' +p292784 +sg291134 +S'Seated Indian Woman' +p292785 +sg291136 +g27 +sg291137 +S'Ira Moskowitz' +p292786 +sa(dp292787 +g291134 +S'William Agur Tomlinson, M.D.' +p292788 +sg291137 +S'Reuben Moulthrop' +p292789 +sg291130 +S', second half of 18th century' +p292790 +sg291132 +S'\n' +p292791 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f098.jpg' +p292792 +sg291136 +g27 +sa(dp292793 +g291134 +S'East Side Market' +p292794 +sg291137 +S'Jerome Myers' +p292795 +sg291130 +S'black and colored chalk on gray paper' +p292796 +sg291132 +S'unknown date\n' +p292797 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4bd.jpg' +p292798 +sg291136 +g27 +sa(dp292799 +g291134 +S'The Gallery [recto]' +p292800 +sg291137 +S'Jerome Myers' +p292801 +sg291130 +S'black chalk' +p292802 +sg291132 +S'unknown date\n' +p292803 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e2/a000e26e.jpg' +p292804 +sg291136 +g27 +sa(dp292805 +g291130 +S'black chalk' +p292806 +sg291132 +S'unknown date\n' +p292807 +sg291134 +S'Dancing Figures [verso]' +p292808 +sg291136 +g27 +sg291137 +S'Jerome Myers' +p292809 +sa(dp292810 +g291130 +S'pen and brown ink with brown wash' +p292811 +sg291132 +S'unknown date\n' +p292812 +sg291134 +S'Standing Woman' +p292813 +sg291136 +g27 +sg291137 +S'Elie Nadelman' +p292814 +sa(dp292815 +g291130 +S'pen and black ink on light brown paper' +p292816 +sg291132 +S'unknown date\n' +p292817 +sg291134 +S'Central Park' +p292818 +sg291136 +g27 +sg291137 +S'E.G. Nelson' +p292819 +sa(dp292820 +g291130 +S'pen and brown ink over graphite on paperboard' +p292821 +sg291132 +S'unknown date\n' +p292822 +sg291134 +S'Low Tide, Yarmouth' +p292823 +sg291136 +g27 +sg291137 +S'Robert Hogg Nisbet' +p292824 +sa(dp292825 +g291130 +S'pen and brown and black ink over graphite heightened with white on paperboard' +p292826 +sg291132 +S'unknown date\n' +p292827 +sg291134 +S'Farm Buildings [recto]' +p292828 +sg291136 +g27 +sg291137 +S'Robert Hogg Nisbet' +p292829 +sa(dp292830 +g291130 +S'pen and black ink on paperboard' +p292831 +sg291132 +S'unknown date\n' +p292832 +sg291134 +S'Tree [verso]' +p292833 +sg291136 +g27 +sg291137 +S'Robert Hogg Nisbet' +p292834 +sa(dp292835 +g291130 +S'black, red and white chalk on brown laid paper' +p292836 +sg291132 +S'1942' +p292837 +sg291134 +S'William Henry Fox' +p292838 +sg291136 +g27 +sg291137 +S'Violet Oakley' +p292839 +sa(dp292840 +g291130 +S'pen and black ink with brown wash heightened with white on brown paper' +p292841 +sg291132 +S'1922' +p292842 +sg291134 +S'Dromedaries, London' +p292843 +sg291136 +g27 +sg291137 +S'Herman Palmer' +p292844 +sa(dp292845 +g291130 +S'pen and black ink with brown wash' +p292846 +sg291132 +S'1922' +p292847 +sg291134 +S'Two Studies of an Ocelot' +p292848 +sg291136 +g27 +sg291137 +S'Herman Palmer' +p292849 +sa(dp292850 +g291130 +S'pen and black ink with gray wash' +p292851 +sg291132 +S'1927' +p292852 +sg291134 +S'Mt. Shuksan, Washington' +p292853 +sg291136 +g27 +sg291137 +S'Roi Partridge' +p292854 +sa(dp292855 +g291130 +S'pen and brown ink with gray wash on paperboard' +p292856 +sg291132 +S'1925' +p292857 +sg291134 +S'Pines, Stewart Point, Monterey' +p292858 +sg291136 +g27 +sg291137 +S'Roi Partridge' +p292859 +sa(dp292860 +g291134 +S'The Harrow Inn' +p292861 +sg291137 +S'Joseph Pennell' +p292862 +sg291130 +S'graphite with gray wash' +p292863 +sg291132 +S'unknown date\n' +p292864 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4c3.jpg' +p292865 +sg291136 +g27 +sa(dp292866 +g291130 +S'pen and black ink and brush and black ink with gray wash over touches of graphite on paperboard' +p292867 +sg291132 +S'1957' +p292868 +sg291134 +S'Pittsburgh Point Bridge Forms' +p292869 +sg291136 +g27 +sg291137 +S'Norton Peterson' +p292870 +sa(dp292871 +g291130 +S'graphite' +p292872 +sg291132 +S'unknown date\n' +p292873 +sg291134 +S'Standing Girl' +p292874 +sg291136 +g27 +sg291137 +S'Henry Clarence Pitz' +p292875 +sa(dp292876 +g291130 +S'graphite' +p292877 +sg291132 +S'unknown date\n' +p292878 +sg291134 +S'Horse at Rest' +p292879 +sg291136 +g27 +sg291137 +S'C.S. Price' +p292880 +sa(dp292881 +g291130 +S'brush and black ink' +p292882 +sg291132 +S'unknown date\n' +p292883 +sg291134 +S'Guy Pene du Bois' +p292884 +sg291136 +g27 +sg291137 +S'Henry Raleigh' +p292885 +sa(dp292886 +g291134 +S'European Elk' +p292887 +sg291137 +S'Peter Rindisbacher' +p292888 +sg291130 +S'gouache on wove paper' +p292889 +sg291132 +S'unknown date\n' +p292890 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0da.jpg' +p292891 +sg291136 +g27 +sa(dp292892 +g291130 +S'graphite' +p292893 +sg291132 +S'1924' +p292894 +sg291134 +S'Charles W. Elliot' +p292895 +sg291136 +g27 +sg291137 +S'Boardman Robinson' +p292896 +sa(dp292897 +g291130 +S'pen and brown ink and graphite with brown wash' +p292898 +sg291132 +S'1945' +p292899 +sg291134 +S'Shipyard Workers' +p292900 +sg291136 +g27 +sg291137 +S'Louis Conrad Rosenberg' +p292901 +sa(dp292902 +g291130 +S'pen and black ink' +p292903 +sg291132 +S'unknown date\n' +p292904 +sg291134 +S'Strike! Boston' +p292905 +sg291136 +g27 +sg291137 +S'Lewis W. Rubenstein' +p292906 +sa(dp292907 +g291130 +S'black chalk and watercolor on four juxtaposed sheets' +p292908 +sg291132 +S'1900' +p292909 +sg291134 +S'Paris' +p292910 +sg291136 +g27 +sg291137 +S'Everett Shinn' +p292911 +sa(dp292912 +g291130 +S'pen and black ink with watercolor and gouache over black chalk' +p292913 +sg291132 +S'1942' +p292914 +sg291134 +S'Fish Pier' +p292915 +sg291136 +g27 +sg291137 +S'George H. Shorey' +p292916 +sa(dp292917 +g291130 +S'red crayon on brown paper' +p292918 +sg291132 +S'unknown date\n' +p292919 +sg291134 +S'Houses in France' +p292920 +sg291136 +g27 +sg291137 +S'John Sloan' +p292921 +sa(dp292922 +g291134 +S'Newport Mountain from Bald Porcupine' +p292923 +sg291137 +S'George Henry Smillie' +p292924 +sg291130 +S'black and white chalk and watercolor on blue paper' +p292925 +sg291132 +S'unknown date\n' +p292926 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009ce.jpg' +p292927 +sg291136 +g27 +sa(dp292928 +g291130 +S'pen and black ink with gray wash, squared with graphite' +p292929 +sg291132 +S'unknown date\n' +p292930 +sg291134 +S'East Lombard Street, Baltimore' +p292931 +sg291136 +g27 +sg291137 +S'Aaron Sopher' +p292932 +sa(dp292933 +g291130 +S'graphite on brown paper' +p292934 +sg291132 +S'c. 1900' +p292935 +sg291134 +S'Burlesque Theater' +p292936 +sg291136 +g27 +sg291137 +S'Joseph Stella' +p292937 +sa(dp292938 +g291130 +S'black chalk' +p292939 +sg291132 +S'unknown date\n' +p292940 +sg291134 +S'Seated Balinese Figure Seen from Behind' +p292941 +sg291136 +g27 +sg291137 +S'Maurice Sterne' +p292942 +sa(dp292943 +g291130 +S'charcoal' +p292944 +sg291132 +S'1920' +p292945 +sg291134 +S'Older Couple' +p292946 +sg291136 +g27 +sg291137 +S'Albert Edward Sterner' +p292947 +sa(dp292948 +g291130 +S'charcoal on brown paper' +p292949 +sg291132 +S'1946' +p292950 +sg291134 +S'J.D. Hatch' +p292951 +sg291136 +g27 +sg291137 +S'Albert Edward Sterner' +p292952 +sa(dp292953 +g291134 +S'Suffer the Little Children' +p292954 +sg291137 +S'Thomas Sully' +p292955 +sg291130 +S'gouache on blue paper' +p292956 +sg291132 +S'unknown date\n' +p292957 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009e1.jpg' +p292958 +sg291136 +g27 +sa(dp292959 +g291130 +S'gouache and watercolor over touches of graphite' +p292960 +sg291132 +S'unknown date\n' +p292961 +sg291134 +S'Self-Portrait' +p292962 +sg291136 +g27 +sg291137 +S'Thomas Sully' +p292963 +sa(dp292964 +g291130 +S'white chalk on brown paper' +p292965 +sg291132 +S'unknown date\n' +p292966 +sg291134 +S'Two Female Nudes' +p292967 +sg291136 +g27 +sg291137 +S'Augustus Vincent Tack' +p292968 +sa(dp292969 +g291134 +S'Mounted Arabs' +p292970 +sg291137 +S'Elihu Vedder' +p292971 +sg291130 +S'black chalk on folded blue paper' +p292972 +sg291132 +S'unknown date\n' +p292973 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f106.jpg' +p292974 +sg291136 +g27 +sa(dp292975 +g291130 +S'black chalk' +p292976 +sg291132 +S'1905' +p292977 +sg291134 +S'Standing Figure' +p292978 +sg291136 +g27 +sg291137 +S'Abraham Walkowitz' +p292979 +sa(dp292980 +g291134 +S'The Dalles of St. Louis' +p292981 +sg291137 +S'Alfred R. Waud' +p292982 +sg291130 +S'graphite (stumping in areas) and pen and black ink heightened with white' +p292983 +sg291132 +S'unknown date\n' +p292984 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0ef.jpg' +p292985 +sg291136 +g27 +sa(dp292986 +g291134 +S'Study for "The Bailey Family"' +p292987 +sg291137 +S'Robert Walter Weir' +p292988 +sg291130 +S'watercolor over graphite with touches of pen and black ink' +p292989 +sg291132 +S'unknown date\n' +p292990 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0ec.jpg' +p292991 +sg291136 +g27 +sa(dp292992 +g291134 +S'Wood Interior' +p292993 +sg291137 +S'Charles Herbert Woodbury' +p292994 +sg291130 +S'graphite' +p292995 +sg291132 +S'1920' +p292996 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000eb/a000eb93.jpg' +p292997 +sg291136 +g27 +sa(dp292998 +g291134 +S'St. Kitts' +p292999 +sg291137 +S'Charles Herbert Woodbury' +p293000 +sg291130 +S'graphite' +p293001 +sg291132 +S'unknown date\n' +p293002 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4dd.jpg' +p293003 +sg291136 +g27 +sa(dp293004 +g291134 +S'St. Vincent' +p293005 +sg291137 +S'Charles Herbert Woodbury' +p293006 +sg291130 +S'graphite' +p293007 +sg291132 +S'unknown date\n' +p293008 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4dc.jpg' +p293009 +sg291136 +g27 +sa(dp293010 +g291134 +S'Ogunquit Fisherman' +p293011 +sg291137 +S'Charles Herbert Woodbury' +p293012 +sg291130 +S'black crayon' +p293013 +sg291132 +S'unknown date\n' +p293014 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4db.jpg' +p293015 +sg291136 +g27 +sa(dp293016 +g291134 +S'Engine Trouble' +p293017 +sg291137 +S'Charles Herbert Woodbury' +p293018 +sg291130 +S'black crayon' +p293019 +sg291132 +S'unknown date\n' +p293020 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4de.jpg' +p293021 +sg291136 +g27 +sa(dp293022 +g291130 +S'pen and black ink with black wash on laid paper' +p293023 +sg291132 +S'1931' +p293024 +sg291134 +S'Ploughman and Horses' +p293025 +sg291136 +g27 +sg291137 +S'R. Stevens Wright' +p293026 +sa(dp293027 +g291130 +S'metalpoint on calendered paper' +p293028 +sg291132 +S'unknown date\n' +p293029 +sg291134 +S'Navaho Land' +p293030 +sg291136 +g27 +sg291137 +S'Mahonri MacKintosh Young' +p293031 +sa(dp293032 +g291130 +S'1 vol: very early issue, datable 1757, containing first printing of "Lettere di Giustificazione" (2 letters only); ill: 72 etchings including frontispiece' +p293033 +sg291132 +S'published 1757' +p293034 +sg291134 +S'Le Antichit\xc3\xa0 Romane (volume I)' +p293035 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p293036 +sa(dp293037 +g291130 +S'1 vol: very early issue, datable 1757; ill: 62 etchings including frontispiece' +p293038 +sg291132 +S'published 1757' +p293039 +sg291134 +S'Le Antichit\xc3\xa0 Romane (volume II)' +p293040 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p293041 +sa(dp293042 +g291130 +S'1 vol: very early issue, datable 1757; ill: 54 etchings (plates numbered I-LIV)' +p293043 +sg291132 +S'published 1757' +p293044 +sg291134 +S'Le Antichit\xc3\xa0 Romane (volume III)' +p293045 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p293046 +sa(dp293047 +g291130 +S'1 vol: very early issue, datable 1757; ill: 56 etchings including frontispiece' +p293048 +sg291132 +S'published 1757' +p293049 +sg291134 +S'Le Antichit\xc3\xa0 Romane (volume IV)' +p293050 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p293051 +sa(dp293052 +g291130 +S'etching on laid paper' +p293053 +sg291132 +S'1756' +p293054 +sg291134 +S'Foundations of the Mausoleum of Hadrian' +p293055 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p293056 +sa(dp293057 +g291134 +S'Varie vedute di Roma antica e moderna disegnate e intagliate da celebri autori' +p293058 +sg291137 +S'Artist Information (' +p293059 +sg291130 +S'(artist)' +p293060 +sg291132 +S'\n' +p293061 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d5b.jpg' +p293062 +sg291136 +g27 +sa(dp293063 +g291130 +S'1 vol: ill: etched frontispiece (Foc. 146), etched title page, 4 head- and 1 tail-piece and 8 etchings (1 folding, rest full-page, versos blank)' +p293064 +sg291132 +S'published 1757' +p293065 +sg291134 +S"Lettere di Giustificazione scritte a Milord Charlemont e a' di lui Agenti di Roma" +p293066 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p293067 +sa(dp293068 +g291130 +S'(artist)' +p293069 +sg291132 +S'\n' +p293070 +sg291134 +S"Il Campo Marzio dell'antica Roma" +p293071 +sg291136 +g27 +sg291137 +S'Artist Information (' +p293072 +sa(dp293073 +g291130 +S'(artist)' +p293074 +sg291132 +S'\n' +p293075 +sg291134 +S"Trofeo O Sia Magnifico Colonna Coclide De Marmo...; Colonna Traiana; Colonna dell' Aposteosi di Antonino e Faustina; Colonna Antonina" +p293076 +sg291136 +g27 +sg291137 +S'Artist Information (' +p293077 +sa(dp293078 +g291130 +S'(artist)' +p293079 +sg291132 +S'\n' +p293080 +sg291134 +S'[Album of Prints]' +p293081 +sg291136 +g27 +sg291137 +S'Artist Information (' +p293082 +sa(dp293083 +g291130 +S'1 vol: ill: engraved title page, preface plate, and 18 etched and engraved double page plates printed on 36 leaves' +p293084 +sg291132 +S'published 1748' +p293085 +sg291134 +S'Nova Pianta di Roma Data in Luce Da Giambattista Nolli...' +p293086 +sg291136 +g27 +sg291137 +S'Giovanni Battista Nolli' +p293087 +sa(dp293088 +g291130 +S'drypoint' +p293089 +sg291132 +S'1965' +p293090 +sg291134 +S'DE-6' +p293091 +sg291136 +g27 +sg291137 +S'Jir\xc3\xad Balcar' +p293092 +sa(dp293093 +g291130 +S'color lithograph' +p293094 +sg291132 +S'1980' +p293095 +sg291134 +S'The State Capital, Albany, NY' +p293096 +sg291136 +g27 +sg291137 +S'Richard John Haas' +p293097 +sa(dp293098 +g291130 +S'color lithograph' +p293099 +sg291132 +S'1982' +p293100 +sg291134 +S'View of the Mall from the Castle Tower' +p293101 +sg291136 +g27 +sg291137 +S'Richard John Haas' +p293102 +sa(dp293103 +g291134 +S'Christ Carrying the Cross' +p293104 +sg291137 +S'Italian 16th Century' +p293105 +sg291130 +S'overall (approximate): 51.5 x 41.6 cm (20 1/4 x 16 3/8 in.)' +p293106 +sg291132 +S'\nhand-colored woodcut' +p293107 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c89b.jpg' +p293108 +sg291136 +g27 +sa(dp293109 +g291134 +S'Mountain Landscape' +p293110 +sg291137 +S'Erhard Altdorfer' +p293111 +sg291130 +S'etching on laid paper' +p293112 +sg291132 +S'1510/1525' +p293113 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7a1.jpg' +p293114 +sg291136 +g27 +sa(dp293115 +g291134 +S'Venice' +p293116 +sg291137 +S'James McNeill Whistler' +p293117 +sg291130 +S'etching touched with gray wash on wove paper' +p293118 +sg291132 +S'1879/1880' +p293119 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab9d.jpg' +p293120 +sg291136 +g27 +sa(dp293121 +g291134 +S'Funeral Monument to the Daughters of Feuerabend' +p293122 +sg291137 +S'German 16th Century' +p293123 +sg291130 +S'plate: 50 x 35 cm (19 11/16 x 13 3/4 in.)' +p293124 +sg291132 +S'\nengraving on two joined sheets' +p293125 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b068.jpg' +p293126 +sg291136 +g27 +sa(dp293127 +g291130 +S'lithograph on heavy laid paper' +p293128 +sg291132 +S'unknown date\n' +p293129 +sg291134 +S'Angelica' +p293130 +sg291136 +g27 +sg291137 +S'Wilhelm Heise' +p293131 +sa(dp293132 +g291130 +S'lithograph on laid paper' +p293133 +sg291132 +S'unknown date\n' +p293134 +sg291134 +S"Frauenschuh (Lady's Slipper)" +p293135 +sg291136 +g27 +sg291137 +S'Wilhelm Heise' +p293136 +sa(dp293137 +g291130 +S'graphite on two joined sheets of tracing paper' +p293138 +sg291132 +S'1935' +p293139 +sg291134 +S'Frauenschuh' +p293140 +sg291136 +g27 +sg291137 +S'Wilhelm Heise' +p293141 +sa(dp293142 +g291134 +S'Allegory of Poverty Hindering Wit' +p293143 +sg291137 +S'Cornelis Cort' +p293144 +sg291130 +S'pen and brown ink on heavy laid paper' +p293145 +sg291132 +S'1565/1570' +p293146 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f99.jpg' +p293147 +sg291136 +g27 +sa(dp293148 +g291130 +S'reed pen and black ink' +p293149 +sg291132 +S'1912' +p293150 +sg291134 +S'Erna Lying on the Beach among Rocks' +p293151 +sg291136 +g27 +sg291137 +S'Ernst Ludwig Kirchner' +p293152 +sa(dp293153 +g291134 +S"Bouquet d'arbres au ruisseau (Stand of Trees on a River)" +p293154 +sg291137 +S'Henri-Joseph Harpignies' +p293155 +sg291130 +S'etching on oatmeal paper' +p293156 +sg291132 +S'1849' +p293157 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00098/a00098c3.jpg' +p293158 +sg291136 +g27 +sa(dp293159 +g291134 +S'Title-Border with Putti Holding the Pirckheimer Arms' +p293160 +sg291137 +S'Albrecht D\xc3\xbcrer' +p293161 +sg291130 +S'woodcut on laid paper' +p293162 +sg291132 +S'probably 1513' +p293163 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac5a.jpg' +p293164 +sg291136 +g27 +sa(dp293165 +g291134 +S'Head of an Elderly Woman with Upturned Eyes' +p293166 +sg291137 +S'Antonio del Castillo' +p293167 +sg291130 +S'black chalk on laid paper' +p293168 +sg291132 +S'unknown date\n' +p293169 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a00069fd.jpg' +p293170 +sg291136 +g27 +sa(dp293171 +g291134 +S'The Falconer' +p293172 +sg291137 +S'Jacques Callot' +p293173 +sg291130 +S'etching' +p293174 +sg291132 +S'unknown date\n' +p293175 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00083/a00083cc.jpg' +p293176 +sg291136 +g27 +sa(dp293177 +g291134 +S'A Spaniel Jumping' +p293178 +sg291137 +S'Jan Verkolje I' +p293179 +sg291130 +S'mezzotint on laid paper' +p293180 +sg291132 +S'1680' +p293181 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d456.jpg' +p293182 +sg291136 +g27 +sa(dp293183 +g291134 +S'The Entombment' +p293184 +sg291137 +S'Artist Information (' +p293185 +sg291130 +S'(artist after)' +p293186 +sg291132 +S'\n' +p293187 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d07f.jpg' +p293188 +sg291136 +g27 +sa(dp293189 +g291134 +S'Two Angels Holding a Coat of Arms' +p293190 +sg291137 +S'Jost Amman' +p293191 +sg291130 +S'pen and black ink with gray wash over chalk on two joined sheets' +p293192 +sg291132 +S'unknown date\n' +p293193 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a10.jpg' +p293194 +sg291136 +g27 +sa(dp293195 +g291134 +S'Anne of Austria' +p293196 +sg291137 +S'Artist Information (' +p293197 +sg291130 +S'(artist after)' +p293198 +sg291132 +S'\n' +p293199 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bc4.jpg' +p293200 +sg291136 +g27 +sa(dp293201 +g291134 +S'Anne of Austria' +p293202 +sg291137 +S'Artist Information (' +p293203 +sg291130 +S'(artist after)' +p293204 +sg291132 +S'\n' +p293205 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bc0.jpg' +p293206 +sg291136 +g27 +sa(dp293207 +g291134 +S"Arnauld d'Andilly" +p293208 +sg291137 +S'Artist Information (' +p293209 +sg291130 +S'(artist after)' +p293210 +sg291132 +S'\n' +p293211 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bc1.jpg' +p293212 +sg291136 +g27 +sa(dp293213 +g291134 +S"Charles de Valois, duc d'Angouleme" +p293214 +sg291137 +S'Artist Information (' +p293215 +sg291130 +S'(artist after)' +p293216 +sg291132 +S'\n' +p293217 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bbf.jpg' +p293218 +sg291136 +g27 +sa(dp293219 +g291134 +S'Saint Charles, Cardinal Borromeo' +p293220 +sg291137 +S'Artist Information (' +p293221 +sg291130 +S'(artist after)' +p293222 +sg291132 +S'\n' +p293223 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bc3.jpg' +p293224 +sg291136 +g27 +sa(dp293225 +g291134 +S'Saint Charles, Cardinal Borromeo' +p293226 +sg291137 +S'Artist Information (' +p293227 +sg291130 +S'(artist after)' +p293228 +sg291132 +S'\n' +p293229 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bbd.jpg' +p293230 +sg291136 +g27 +sa(dp293231 +g291134 +S'Honorine Grimberge, comtesse de Bossu' +p293232 +sg291137 +S'Jean Morin' +p293233 +sg291130 +S'etching, engraving, and stippling on laid paper' +p293234 +sg291132 +S'unknown date\n' +p293235 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bba.jpg' +p293236 +sg291136 +g27 +sa(dp293237 +g291134 +S'Armand de Bourbon-Conti' +p293238 +sg291137 +S'Artist Information (' +p293239 +sg291130 +S'(artist after)' +p293240 +sg291132 +S'\n' +p293241 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bc5.jpg' +p293242 +sg291136 +g27 +sa(dp293243 +g291134 +S'Theophile Brachet de la Milletiere' +p293244 +sg291137 +S'Artist Information (' +p293245 +sg291130 +S'(artist after)' +p293246 +sg291132 +S'\n' +p293247 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bbb.jpg' +p293248 +sg291136 +g27 +sa(dp293249 +g291134 +S'Anne Sophie Herbert, comtesse de Carnarvon' +p293250 +sg291137 +S'Artist Information (' +p293251 +sg291130 +S'(artist after)' +p293252 +sg291132 +S'\n' +p293253 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bbc.jpg' +p293254 +sg291136 +g27 +sa(dp293255 +g291134 +S'Gilbert de Choiseul du Plessis Praslin' +p293256 +sg291137 +S'Artist Information (' +p293257 +sg291130 +S'(artist after)' +p293258 +sg291132 +S'\n' +p293259 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bca.jpg' +p293260 +sg291136 +g27 +sa(dp293261 +g291134 +S'Gilbert de Choiseul du Plessis Praslin' +p293262 +sg291137 +S'Artist Information (' +p293263 +sg291130 +S'(artist after)' +p293264 +sg291132 +S'\n' +p293265 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bcc.jpg' +p293266 +sg291136 +g27 +sa(dp293267 +g291134 +S'Francois Potier, marquis de Gevres' +p293268 +sg291137 +S'Artist Information (' +p293269 +sg291130 +S'(artist after)' +p293270 +sg291132 +S'\n' +p293271 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bc7.jpg' +p293272 +sg291136 +g27 +sa(dp293273 +g291134 +S'Jean Francois Paul de Gondy' +p293274 +sg291137 +S'Artist Information (' +p293275 +sg291130 +S'(artist after)' +p293276 +sg291132 +S'\n' +p293277 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b545.jpg' +p293278 +sg291136 +g27 +sa(dp293279 +g291134 +S'Henri de Lorraine, duc de Guise' +p293280 +sg291137 +S'Artist Information (' +p293281 +sg291130 +S'(artist after)' +p293282 +sg291132 +S'\n' +p293283 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bcd.jpg' +p293284 +sg291136 +g27 +sa(dp293285 +g291134 +S"Henri de Lorraine, comte d'Harcourt" +p293286 +sg291137 +S'Artist Information (' +p293287 +sg291130 +S'(artist after)' +p293288 +sg291132 +S'\n' +p293289 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bc9.jpg' +p293290 +sg291136 +g27 +sa(dp293291 +g291134 +S'Jean du Verger de Hauranne' +p293292 +sg291137 +S'Artist Information (' +p293293 +sg291130 +S'(artist after)' +p293294 +sg291132 +S'\n' +p293295 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bc6.jpg' +p293296 +sg291136 +g27 +sa(dp293297 +g291134 +S'Jean Verger de Hauranne' +p293298 +sg291137 +S'Artist Information (' +p293299 +sg291130 +S'(artist after)' +p293300 +sg291132 +S'\n' +p293301 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bc8.jpg' +p293302 +sg291136 +g27 +sa(dp293303 +g291134 +S'Henry II' +p293304 +sg291137 +S'Artist Information (' +p293305 +sg291130 +S'(artist after)' +p293306 +sg291132 +S'\n' +p293307 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bcf.jpg' +p293308 +sg291136 +g27 +sa(dp293309 +g291134 +S'Henry IV' +p293310 +sg291137 +S'Artist Information (' +p293311 +sg291130 +S'(artist after)' +p293312 +sg291132 +S'\n' +p293313 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bd0.jpg' +p293314 +sg291136 +g27 +sa(dp293315 +g291134 +S'Corneille Jansenius, Bishop of Ypres' +p293316 +sg291137 +S'Jean Morin' +p293317 +sg291130 +S'etching, engraving, and stippling on laid paper' +p293318 +sg291132 +S'unknown date\n' +p293319 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b51c.jpg' +p293320 +sg291136 +g27 +sa(dp293321 +g291134 +S'Louis XI' +p293322 +sg291137 +S'Jean Morin' +p293323 +sg291130 +S'etching, engraving, and stippling on laid paper' +p293324 +sg291132 +S'unknown date\n' +p293325 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b560.jpg' +p293326 +sg291136 +g27 +sa(dp293327 +g291134 +S'Louis XIII' +p293328 +sg291137 +S'Artist Information (' +p293329 +sg291130 +S'(artist after)' +p293330 +sg291132 +S'\n' +p293331 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b522.jpg' +p293332 +sg291136 +g27 +sa(dp293333 +g291134 +S'Rene de Longueil, marquis de Maisons' +p293334 +sg291137 +S'Artist Information (' +p293335 +sg291130 +S'(artist after)' +p293336 +sg291132 +S'\n' +p293337 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b56c.jpg' +p293338 +sg291136 +g27 +sa(dp293339 +g291134 +S'Michel de Marillac' +p293340 +sg291137 +S'Artist Information (' +p293341 +sg291130 +S'(artist after)' +p293342 +sg291132 +S'\n' +p293343 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b569.jpg' +p293344 +sg291136 +g27 +sa(dp293345 +g291134 +S'Cardinal Mazarin' +p293346 +sg291137 +S'Artist Information (' +p293347 +sg291130 +S'(artist after)' +p293348 +sg291132 +S'\n' +p293349 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b516.jpg' +p293350 +sg291136 +g27 +sa(dp293351 +g291134 +S'Jacques le Mercier' +p293352 +sg291137 +S'Artist Information (' +p293353 +sg291130 +S'(artist after)' +p293354 +sg291132 +S'\n' +p293355 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b563.jpg' +p293356 +sg291136 +g27 +sa(dp293357 +g291134 +S'Philippe II, King of Spain' +p293358 +sg291137 +S'Artist Information (' +p293359 +sg291130 +S'(artist after)' +p293360 +sg291132 +S'\n' +p293361 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b540.jpg' +p293362 +sg291136 +g27 +sa(dp293363 +g291134 +S'Cardinal Richelieu' +p293364 +sg291137 +S'Artist Information (' +p293365 +sg291130 +S'(artist after)' +p293366 +sg291132 +S'\n' +p293367 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b542.jpg' +p293368 +sg291136 +g27 +sa(dp293369 +g291134 +S'Saint Francois de Sales' +p293370 +sg291137 +S'Jean Morin' +p293371 +sg291130 +S'etching, engraving, and stippling on laid paper' +p293372 +sg291132 +S'unknown date\n' +p293373 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bd1.jpg' +p293374 +sg291136 +g27 +sa(dp293375 +g291134 +S'Michel le Tellier' +p293376 +sg291137 +S'Artist Information (' +p293377 +sg291130 +S'(artist after)' +p293378 +sg291132 +S'\n' +p293379 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b513.jpg' +p293380 +sg291136 +g27 +sa(dp293381 +g291134 +S'Jacques Auguste de Thou' +p293382 +sg291137 +S'Artist Information (' +p293383 +sg291130 +S'(artist after)' +p293384 +sg291132 +S'\n' +p293385 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b548.jpg' +p293386 +sg291136 +g27 +sa(dp293387 +g291134 +S'Jacques Tuboeuf' +p293388 +sg291137 +S'Artist Information (' +p293389 +sg291130 +S'(artist after)' +p293390 +sg291132 +S'\n' +p293391 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b531.jpg' +p293392 +sg291136 +g27 +sa(dp293393 +g291134 +S'Jean Baptiste Amidor Vignerod' +p293394 +sg291137 +S'Artist Information (' +p293395 +sg291130 +S'(artist after)' +p293396 +sg291132 +S'\n' +p293397 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b53d.jpg' +p293398 +sg291136 +g27 +sa(dp293399 +g291134 +S'Francois de Villemontee' +p293400 +sg291137 +S'Artist Information (' +p293401 +sg291130 +S'(artist after)' +p293402 +sg291132 +S'\n' +p293403 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b52b.jpg' +p293404 +sg291136 +g27 +sa(dp293405 +g291134 +S'Nicholas de Neufville, marquis de Villeroy' +p293406 +sg291137 +S'Artist Information (' +p293407 +sg291130 +S'(artist after)' +p293408 +sg291132 +S'\n' +p293409 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b52e.jpg' +p293410 +sg291136 +g27 +sa(dp293411 +g291134 +S'Antoine Vitre' +p293412 +sg291137 +S'Artist Information (' +p293413 +sg291130 +S'(artist after)' +p293414 +sg291132 +S'\n' +p293415 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b537.jpg' +p293416 +sg291136 +g27 +sa(dp293417 +g291134 +S'A Meadow with Cattle and Deer' +p293418 +sg291137 +S'Francis Barlow' +p293419 +sg291130 +S'pen and brown ink with gray wash on laid paper' +p293420 +sg291132 +S'1684' +p293421 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a00072a5.jpg' +p293422 +sg291136 +g27 +sa(dp293423 +g291130 +S'bronze' +p293424 +sg291132 +S'probably c. 1918/1928' +p293425 +sg291134 +S'Torso of Venus' +p293426 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p293427 +sa(dp293428 +g291134 +S'The Martyrdom and Last Communion of Saint Lucy' +p293429 +sg291137 +S'Veronese' +p293430 +sg291130 +S'oil on canvas' +p293431 +sg291132 +S'c. 1582' +p293432 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00008/a0000832.jpg' +p293433 +sg291136 +S"While exposing her breast to the thrust of the dagger that will kill her, Saint\nLucy turns her head to accept communion from a priest. This unconventional addition\nof the sacrament to the scene of Lucy's martyrdom is a reminder of the Counter-Reformation\nclimate that shadowed Veronese's career. Twice, the artist had defended himself\nagainst allegations of impropriety in his treatment of religious subjects.\n Sketchily rendered in the background is a team of oxen; these are the beasts who\nhad failed to drag the chaste Lucy -- made miraculously immobile -- to the brothel where\nshe had been condemned for her Christian faith. A glimpse of fire behind Lucy alludes\nto another failed attempt to martyr this third-century saint.\n Veronese's own Venice, and not Lucy's ancient Syracuse, is made the backdrop to\nthis scene. A brilliant decorator, Veronese was celebrated for his sumptuous histories\nand mythologies which he translated into opulent present-day surroundings and dress.\nIf the artist was best known for the sparkling blond harmonies of his mature work,\nthe \n " +p293434 +sa(dp293435 +g291134 +S'Marble Mantel' +p293436 +sg291137 +S'Karl Knaths' +p293437 +sg291130 +S'oil on canvas' +p293438 +sg291132 +S'1966' +p293439 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000138.jpg' +p293440 +sg291136 +g27 +sa(dp293441 +g291134 +S'Gray Stallion' +p293442 +sg291137 +S'Artist Information (' +p293443 +sg291130 +S'French, 1791 - 1824' +p293444 +sg291132 +S'(artist after)' +p293445 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa5f.jpg' +p293446 +sg291136 +g27 +sa(dp293447 +g291134 +S'Standing Draped Man [recto]' +p293448 +sg291137 +S'Jacopo Chimenti' +p293449 +sg291130 +S', unknown date' +p293450 +sg291132 +S'\n' +p293451 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a0007535.jpg' +p293452 +sg291136 +g27 +sa(dp293453 +g291134 +S'Seated Draped Man [verso]' +p293454 +sg291137 +S'Jacopo Chimenti' +p293455 +sg291130 +S'red chalk on laid paper' +p293456 +sg291132 +S'unknown date\n' +p293457 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a0007536.jpg' +p293458 +sg291136 +g27 +sa(dp293459 +g291134 +S'Boats' +p293460 +sg291137 +S'Artist Information (' +p293461 +sg291130 +S'Italian, 1565 - 1644' +p293462 +sg291132 +S'(related artist)' +p293463 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a000747e.jpg' +p293464 +sg291136 +g27 +sa(dp293465 +g291134 +S'Young Man' +p293466 +sg291137 +S'Michel-Fran\xc3\xa7ois Dandr\xc3\xa9-Bardon' +p293467 +sg291130 +S'red chalk heightened with white on laid paper' +p293468 +sg291132 +S'unknown date\n' +p293469 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a0007280.jpg' +p293470 +sg291136 +g27 +sa(dp293471 +g291134 +S'Standing Man' +p293472 +sg291137 +S'Paul Gavarni' +p293473 +sg291130 +S'pen and brown ink with brown wash heightened with white on paper prepared with wash' +p293474 +sg291132 +S'unknown date\n' +p293475 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007364.jpg' +p293476 +sg291136 +g27 +sa(dp293477 +g291130 +S'wood engraving and woodcut in black, light brown and green, printed from three blocks' +p293478 +sg291132 +S'1947' +p293479 +sg291134 +S'Other World (Another World)' +p293480 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p293481 +sa(dp293482 +g291134 +S'Contrast (Order and Chaos)' +p293483 +sg291137 +S'M.C. Escher' +p293484 +sg291130 +S'lithograph' +p293485 +sg291132 +S'1950' +p293486 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b5f.jpg' +p293487 +sg291136 +S'Escher described this print as a symbol of order and chaos: order represented by the polyhedron and the translucent sphere; chaos depicted by the surrounding broken and crumpled cast-off objects of daily life. The artist believed the polyhedron (a solid figure with many sides) symbolized beauty, order, and harmony in the universe. Yet, he rendered chaos with equal care, as in the exquisitely drawn sardine can at upper left.\n ' +p293488 +sa(dp293489 +g291130 +S'drypoint, engraving and etching' +p293490 +sg291132 +S'unknown date\n' +p293491 +sg291134 +S'Nocturne IV' +p293492 +sg291136 +g27 +sg291137 +S'Evan David Summer' +p293493 +sa(dp293494 +g291130 +S'photo-sensitive ground etching and engraving' +p293495 +sg291132 +S'1984' +p293496 +sg291134 +S'Family Reunion' +p293497 +sg291136 +g27 +sg291137 +S'Peter Milton' +p293498 +sa(dp293499 +g291130 +g27 +sg291132 +S'(publisher)' +p293500 +sg291134 +S'Soot-Black Stone, #1' +p293501 +sg291136 +g27 +sg291137 +S'Artist Information (' +p293502 +sa(dp293503 +g291130 +g27 +sg291132 +S'(publisher)' +p293504 +sg291134 +S'Sweets, Meats, Sheets' +p293505 +sg291136 +g27 +sg291137 +S'Artist Information (' +p293506 +sa(dp293507 +g291130 +g27 +sg291132 +S'(publisher)' +p293508 +sg291134 +S'Don Cribb' +p293509 +sg291136 +g27 +sg291137 +S'Artist Information (' +p293510 +sa(dp293511 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p293512 +sg291132 +S'1970' +p293513 +sg291134 +S'Title Page' +p293514 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293515 +sa(dp293516 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p293517 +sg291132 +S'1970' +p293518 +sg291134 +S'Untitled' +p293519 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293520 +sa(dp293521 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p293522 +sg291132 +S'1970' +p293523 +sg291134 +S'Untitled' +p293524 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293525 +sa(dp293526 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p293527 +sg291132 +S'1970' +p293528 +sg291134 +S'Untitled' +p293529 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293530 +sa(dp293531 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p293532 +sg291132 +S'1970' +p293533 +sg291134 +S'Untitled' +p293534 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293535 +sa(dp293536 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p293537 +sg291132 +S'1970' +p293538 +sg291134 +S'Untitled' +p293539 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293540 +sa(dp293541 +g291130 +S'lithograph (stone) in black on undcalendered Rivespaper' +p293542 +sg291132 +S'1970' +p293543 +sg291134 +S'Untitled' +p293544 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293545 +sa(dp293546 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p293547 +sg291132 +S'1970' +p293548 +sg291134 +S'Untitled' +p293549 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293550 +sa(dp293551 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p293552 +sg291132 +S'1970' +p293553 +sg291134 +S'Untitled' +p293554 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293555 +sa(dp293556 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p293557 +sg291132 +S'1970' +p293558 +sg291134 +S'Untitled' +p293559 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293560 +sa(dp293561 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p293562 +sg291132 +S'1970' +p293563 +sg291134 +S'Untitled' +p293564 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293565 +sa(dp293566 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p293567 +sg291132 +S'1970' +p293568 +sg291134 +S'Untitled' +p293569 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293570 +sa(dp293571 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p293572 +sg291132 +S'1970' +p293573 +sg291134 +S'Untitled' +p293574 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293575 +sa(dp293576 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p293577 +sg291132 +S'1970' +p293578 +sg291134 +S'Untitled' +p293579 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293580 +sa(dp293581 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p293582 +sg291132 +S'1970' +p293583 +sg291134 +S'Untitled' +p293584 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293585 +sa(dp293586 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p293587 +sg291132 +S'1970' +p293588 +sg291134 +S'Untitled' +p293589 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293590 +sa(dp293591 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p293592 +sg291132 +S'1970' +p293593 +sg291134 +S'Untitled' +p293594 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293595 +sa(dp293596 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p293597 +sg291132 +S'1970' +p293598 +sg291134 +S'Untitled' +p293599 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293600 +sa(dp293601 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p293602 +sg291132 +S'1970' +p293603 +sg291134 +S'Untitled' +p293604 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293605 +sa(dp293606 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p293607 +sg291132 +S'1965' +p293608 +sg291134 +S'Tam. #1' +p293609 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293610 +sa(dp293611 +g291130 +S'lithograph (stone) in brownish-black on natural Nacre paper' +p293612 +sg291132 +S'1965' +p293613 +sg291134 +S'Tam. #2' +p293614 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293615 +sa(dp293616 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p293617 +sg291132 +S'1965' +p293618 +sg291134 +S'Tam. #3' +p293619 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293620 +sa(dp293621 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p293622 +sg291132 +S'1965' +p293623 +sg291134 +S'Salt and Lake' +p293624 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293625 +sa(dp293626 +g291130 +S'lithograph (stone and aluminum) in orange, red andblack on white Arches paper' +p293627 +sg291132 +S'1965' +p293628 +sg291134 +S'Tam. #9' +p293629 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293630 +sa(dp293631 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p293632 +sg291132 +S'1965' +p293633 +sg291134 +S'Tam. #5' +p293634 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293635 +sa(dp293636 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p293637 +sg291132 +S'1965' +p293638 +sg291134 +S'Tam. #12' +p293639 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293640 +sa(dp293641 +g291130 +S'lithograph (stone) in green-black on white Arches paper' +p293642 +sg291132 +S'1965' +p293643 +sg291134 +S'Tam. #8' +p293644 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293645 +sa(dp293646 +g291130 +S'lithograph (stone) in black on natural Nacre paper' +p293647 +sg291132 +S'1965' +p293648 +sg291134 +S'Tam. #10' +p293649 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293650 +sa(dp293651 +g291130 +S'lithograph (aluminum and stone) in green, red and two blacks on Copperplate Deluxe paper' +p293652 +sg291132 +S'1965' +p293653 +sg291134 +S'Tam. #11' +p293654 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293655 +sa(dp293656 +g291130 +S'lithograph (aluminum) in blue on white Arches paper' +p293657 +sg291132 +S'1965' +p293658 +sg291134 +S'Tam. #6' +p293659 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293660 +sa(dp293661 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p293662 +sg291132 +S'1965' +p293663 +sg291134 +S'Tam. #14' +p293664 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293665 +sa(dp293666 +g291130 +S'lithograph (stone) in black on Magnani Italia paper' +p293667 +sg291132 +S'1967' +p293668 +sg291134 +S'Silence' +p293669 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293670 +sa(dp293671 +g291130 +S'lithograph (stone) in black on white Arches paper' +p293672 +sg291132 +S'1967' +p293673 +sg291134 +S'Escape' +p293674 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293675 +sa(dp293676 +g291130 +S'lithograph (aluminum and stone) in pink, red, blueand brown-green on white Arches paper' +p293677 +sg291132 +S'1967' +p293678 +sg291134 +S'Escape II' +p293679 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293680 +sa(dp293681 +g291130 +S'lithograph (stone) in black on white Arches paper' +p293682 +sg291132 +S'1967' +p293683 +sg291134 +S'Birth' +p293684 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293685 +sa(dp293686 +g291130 +S'lithograph (aluminum and stone) in yellow, orange and black on German Etching paper' +p293687 +sg291132 +S'1968' +p293688 +sg291134 +S'In Memory of Visit' +p293689 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293690 +sa(dp293691 +g291130 +S'lithograph (stone) in black on calendered Rives paper' +p293692 +sg291132 +S'1969' +p293693 +sg291134 +S'Try Out' +p293694 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293695 +sa(dp293696 +g291130 +S'lithograph (stone) in yellow, pink-red, light violet and black on calendered Rives paper' +p293697 +sg291132 +S'1969' +p293698 +sg291134 +S'Homage to Jules Langsner' +p293699 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293700 +sa(dp293701 +g291130 +S'lithograph (stone) in black on calendered Rives paper' +p293702 +sg291132 +S'1969' +p293703 +sg291134 +S'So Long' +p293704 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293705 +sa(dp293706 +g291130 +S'lithograph (aluminum and stone) in orange and blueon Rives BFK paper' +p293707 +sg291132 +S'1970' +p293708 +sg291134 +S'Friday' +p293709 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293710 +sa(dp293711 +g291130 +S'lithograph (aluminum and stone) in orange and blueon Rives BFK paper' +p293712 +sg291132 +S'1970' +p293713 +sg291134 +S'Kiss' +p293714 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293715 +sa(dp293716 +g291130 +S'lithograph (aluminum and stone) in orange and blueon Rives BFK paper' +p293717 +sg291132 +S'1970' +p293718 +sg291134 +S'Somehow' +p293719 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293720 +sa(dp293721 +g291130 +S'lithograph (aluminum and stone) in orange and blueon Rives BFK paper' +p293722 +sg291132 +S'1970' +p293723 +sg291134 +S"Monday's Witch" +p293724 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293725 +sa(dp293726 +g291130 +S'lithograph (aluminum and stone) in orange and blueon calendered Rives paper' +p293727 +sg291132 +S'1970' +p293728 +sg291134 +S'Serge' +p293729 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293730 +sa(dp293731 +g291130 +S'lithograph (aluminum and stone) in orange and blueon Rives BFK paper' +p293732 +sg291132 +S'1970' +p293733 +sg291134 +S'Pacific' +p293734 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293735 +sa(dp293736 +g291130 +S'lithograph (stone) in blue-black on calendered Rives paper' +p293737 +sg291132 +S'1970' +p293738 +sg291134 +S'Forty-Eight' +p293739 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293740 +sa(dp293741 +g291130 +S'lithograph (aluminum and stone) in gray and black on calendered Rives paper' +p293742 +sg291132 +S'1970' +p293743 +sg291134 +S'Forty-Eight II' +p293744 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293745 +sa(dp293746 +g291130 +S'lithograph (stone) in black on calendered Rives paper' +p293747 +sg291132 +S'1970' +p293748 +sg291134 +S'Number Six State II' +p293749 +sg291136 +g27 +sg291137 +S'Matsumi Kanemitsu' +p293750 +sa(dp293751 +g291130 +S'lithograph (stone and zinc) in black, transparent red, blue and blue-green on uncalendered Rives paper' +p293752 +sg291132 +S'1968' +p293753 +sg291134 +S'Civitavecchia' +p293754 +sg291136 +g27 +sg291137 +S'Karl Kasten' +p293755 +sa(dp293756 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p293757 +sg291132 +S'1968' +p293758 +sg291134 +S'Civitavecchia II' +p293759 +sg291136 +g27 +sg291137 +S'Karl Kasten' +p293760 +sa(dp293761 +g291130 +S'lithograph (stone) in black on natural Nacre' +p293762 +sg291132 +S'1968' +p293763 +sg291134 +S'Lebanon' +p293764 +sg291136 +g27 +sg291137 +S'Karl Kasten' +p293765 +sa(dp293766 +g291130 +S'lithograph (aluminum and stone) in yellow and black on natural Nacre' +p293767 +sg291132 +S'1968' +p293768 +sg291134 +S'Tarquinia' +p293769 +sg291136 +g27 +sg291137 +S'Karl Kasten' +p293770 +sa(dp293771 +g291130 +S'lithograph (stone, zinc and aluminum) in black, red, blue and yellow on Copperplate Deluxe paper' +p293772 +sg291132 +S'1968' +p293773 +sg291134 +S'Reliquary Paimpont' +p293774 +sg291136 +g27 +sg291137 +S'Karl Kasten' +p293775 +sa(dp293776 +g291130 +S'lithograph (zinc, aluminum and stone) in two graysand black on Copperplate Deluxe paper' +p293777 +sg291132 +S'1968' +p293778 +sg291134 +S'Reliquary Paimpont II' +p293779 +sg291136 +g27 +sg291137 +S'Karl Kasten' +p293780 +sa(dp293781 +g291130 +S'lithograph (aluminum and stone) in blue, brown-orange and transparent black on calendered Rives paper' +p293782 +sg291132 +S'1968' +p293783 +sg291134 +S'Amalfi' +p293784 +sg291136 +g27 +sg291137 +S'Karl Kasten' +p293785 +sa(dp293786 +g291130 +S'lithograph (aluminum and stone) in blue-green, brown and black on German Etching paper' +p293787 +sg291132 +S'1968' +p293788 +sg291134 +S'Reliquary Lozingot' +p293789 +sg291136 +g27 +sg291137 +S'Karl Kasten' +p293790 +sa(dp293791 +g291130 +S'lithograph (aluminum and stone) in gray and black on German Etching paper' +p293792 +sg291132 +S'1968' +p293793 +sg291134 +S'Reliquary Ouest' +p293794 +sg291136 +g27 +sg291137 +S'Karl Kasten' +p293795 +sa(dp293796 +g291130 +S'lithograph (zinc and stone) in two blues and brownon calendered Rives paper' +p293797 +sg291132 +S'1968' +p293798 +sg291134 +S'Urbino' +p293799 +sg291136 +g27 +sg291137 +S'Karl Kasten' +p293800 +sa(dp293801 +g291130 +S'lithograph (aluminum and stone) in dark brown and blue-silver on J. Green paper' +p293802 +sg291132 +S'1968' +p293803 +sg291134 +S'Purple Egg' +p293804 +sg291136 +g27 +sg291137 +S'Karl Kasten' +p293805 +sa(dp293806 +g291130 +S'lithograph (stone) in gray on uncalendered Rives paper' +p293807 +sg291132 +S'1968' +p293808 +sg291134 +S'Ostia' +p293809 +sg291136 +g27 +sg291137 +S'Karl Kasten' +p293810 +sa(dp293811 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p293812 +sg291132 +S'1968' +p293813 +sg291134 +S'Star' +p293814 +sg291136 +g27 +sg291137 +S'Karl Kasten' +p293815 +sa(dp293816 +g291130 +S'lithograph (aluminum and stone) in yellow, blue and brown on German Etching paper' +p293817 +sg291132 +S'1968' +p293818 +sg291134 +S'Parma' +p293819 +sg291136 +g27 +sg291137 +S'Karl Kasten' +p293820 +sa(dp293821 +g291130 +S'lithograph (stone) in brown-gold on J. Green paper' +p293822 +sg291132 +S'1968' +p293823 +sg291134 +S'Aborum Dinarii' +p293824 +sg291136 +g27 +sg291137 +S'Karl Kasten' +p293825 +sa(dp293826 +g291130 +S'lithograph (stone) in black' +p293827 +sg291132 +S'1967' +p293828 +sg291134 +S'Resurrection Series I' +p293829 +sg291136 +g27 +sg291137 +S'Donald William Kelley' +p293830 +sa(dp293831 +g291130 +S'lithograph (aluminum and stone) in green, light blue and black on Copperplate Deluxe paper' +p293832 +sg291132 +S'1967' +p293833 +sg291134 +S'Untitled' +p293834 +sg291136 +g27 +sg291137 +S'Donald William Kelley' +p293835 +sa(dp293836 +g291130 +S'lithograph (stone) in black and three blended yellows on white Arches paper' +p293837 +sg291132 +S'1967' +p293838 +sg291134 +S'Untitled' +p293839 +sg291136 +g27 +sg291137 +S'Donald William Kelley' +p293840 +sa(dp293841 +g291130 +S'lithograph (aluminum and stone) in orange, pink, blue, red and black on Copperplate Deluxe paper' +p293842 +sg291132 +S'1968' +p293843 +sg291134 +S'Untitled' +p293844 +sg291136 +g27 +sg291137 +S'Donald William Kelley' +p293845 +sa(dp293846 +g291130 +S'lithograph (stone and aluminum) in blue, yellow-gray, red and black on German Etching paper' +p293847 +sg291132 +S'1968' +p293848 +sg291134 +S'Untitled' +p293849 +sg291136 +g27 +sg291137 +S'Donald William Kelley' +p293850 +sa(dp293851 +g291130 +S'lithograph (stone and aluminum) in blue, yellow-gray, red and black on German Etching paper' +p293852 +sg291132 +S'1968' +p293853 +sg291134 +S'Untitled' +p293854 +sg291136 +g27 +sg291137 +S'Donald William Kelley' +p293855 +sa(dp293856 +g291130 +S'lithograph (stone) in gray, red and black on whiteArches paper' +p293857 +sg291132 +S'1969' +p293858 +sg291134 +S'Untitled' +p293859 +sg291136 +g27 +sg291137 +S'Donald William Kelley' +p293860 +sa(dp293861 +g291130 +S'lithograph (stone) in gray, red and black on whiteArches paper' +p293862 +sg291132 +S'1969' +p293863 +sg291134 +S'Untitled' +p293864 +sg291136 +g27 +sg291137 +S'Donald William Kelley' +p293865 +sa(dp293866 +g291130 +S'lithograph (zinc and stone) in yellow and black onwhite Arches paper' +p293867 +sg291132 +S'1963' +p293868 +sg291134 +S'8 from 9 (Title Page)' +p293869 +sg291136 +g27 +sg291137 +S'James Kelly' +p293870 +sa(dp293871 +g291130 +S'portfolio w/ 8 color lithographs (zinc and stone) incl. title page and colophon plus a cover on whi te Arches paper' +p293872 +sg291132 +S'1963' +p293873 +sg291134 +S'8 from 9' +p293874 +sg291136 +g27 +sg291137 +S'James Kelly' +p293875 +sa(dp293876 +g291130 +S'lithograph (zinc and stone) in red and black on white Arches paper' +p293877 +sg291132 +S'1963' +p293878 +sg291134 +S'Cassius' +p293879 +sg291136 +g27 +sg291137 +S'James Kelly' +p293880 +sa(dp293881 +g291130 +S'lithograph (zinc and stone) in yellow and black onwhite Arches paper' +p293882 +sg291132 +S'1963' +p293883 +sg291134 +S'Aphrodite Resting' +p293884 +sg291136 +g27 +sg291137 +S'James Kelly' +p293885 +sa(dp293886 +g291130 +S'lithograph (zinc and stone) in yellow, red and black on white Arches paper' +p293887 +sg291132 +S'1963' +p293888 +sg291134 +S'Nightshade' +p293889 +sg291136 +g27 +sg291137 +S'James Kelly' +p293890 +sa(dp293891 +g291130 +S'lithograph (zinc and stone) in yellow, red and black on white Arches paper' +p293892 +sg291132 +S'1963' +p293893 +sg291134 +S"Tracy's Dilemma" +p293894 +sg291136 +g27 +sg291137 +S'James Kelly' +p293895 +sa(dp293896 +g291130 +S'lithograph (zinc) in yellow, blue, red and black on white Arches paper' +p293897 +sg291132 +S'1963' +p293898 +sg291134 +S'Flight over India' +p293899 +sg291136 +g27 +sg291137 +S'James Kelly' +p293900 +sa(dp293901 +g291130 +S'lithograph (zinc and stone) in blue, red, green and black on white Arches paper' +p293902 +sg291132 +S'1963' +p293903 +sg291134 +S'Green Hornet' +p293904 +sg291136 +g27 +sg291137 +S'James Kelly' +p293905 +sa(dp293906 +g291130 +S'lithograph (zinc and stone) in red and black on white Arches paper' +p293907 +sg291132 +S'1963' +p293908 +sg291134 +S'8 from 9 (Colophon)' +p293909 +sg291136 +g27 +sg291137 +S'James Kelly' +p293910 +sa(dp293911 +g291130 +S'lithograph (stone) in black on white Arches paper' +p293912 +sg291132 +S'1963' +p293913 +sg291134 +S'Untitled' +p293914 +sg291136 +g27 +sg291137 +S'James Kelly' +p293915 +sa(dp293916 +g291130 +S'lithograph (zinc and stone) in pink, red, yellow and black on white Arches paper' +p293917 +sg291132 +S'1963' +p293918 +sg291134 +S'Untitled' +p293919 +sg291136 +g27 +sg291137 +S'James Kelly' +p293920 +sa(dp293921 +g291130 +S'lithograph (zinc and stone) in red, yellow, blue and black on white Arches paper' +p293922 +sg291132 +S'1963' +p293923 +sg291134 +S'Untitled' +p293924 +sg291136 +g27 +sg291137 +S'James Kelly' +p293925 +sa(dp293926 +g291130 +S'lithograph (zinc) in black on white Nacre paper' +p293927 +sg291132 +S'1963' +p293928 +sg291134 +S'Untitled' +p293929 +sg291136 +g27 +sg291137 +S'James Kelly' +p293930 +sa(dp293931 +g291130 +S'lithograph (stone) in black on white Arches paper' +p293932 +sg291132 +S'1963' +p293933 +sg291134 +S'Untitled' +p293934 +sg291136 +g27 +sg291137 +S'James Kelly' +p293935 +sa(dp293936 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p293937 +sg291132 +S'1963' +p293938 +sg291134 +S'Untitled' +p293939 +sg291136 +g27 +sg291137 +S'James Kelly' +p293940 +sa(dp293941 +g291130 +S'lithograph (stone) in black on white Arches paper' +p293942 +sg291132 +S'1963' +p293943 +sg291134 +S'Twist Now' +p293944 +sg291136 +g27 +sg291137 +S'G. Ray Kerciu' +p293945 +sa(dp293946 +g291130 +S'lithograph (stone and zinc) in blue and red on white Arches paper' +p293947 +sg291132 +S'1964' +p293948 +sg291134 +S'Freedom Now' +p293949 +sg291136 +g27 +sg291137 +S'G. Ray Kerciu' +p293950 +sa(dp293951 +g291130 +S'lithograph (stone) in black on white Arches paper' +p293952 +sg291132 +S'1964' +p293953 +sg291134 +S'God Bless Mommy, Daddy, and the John Birch Society' +p293954 +sg291136 +g27 +sg291137 +S'G. Ray Kerciu' +p293955 +sa(dp293956 +g291130 +S'lithograph in black, white, red-green and gray' +p293957 +sg291132 +S'1964' +p293958 +sg291134 +S'Untitled' +p293959 +sg291136 +g27 +sg291137 +S'Kenneth Alvin Kerslake' +p293960 +sa(dp293961 +g291130 +S'lithograph (stone) in black on white Arches paper' +p293962 +sg291132 +S'1967' +p293963 +sg291134 +S'The King and His Princess' +p293964 +sg291136 +g27 +sg291137 +S'Anthony Ko' +p293965 +sa(dp293966 +g291130 +S'lithograph (aluminum) of blended blue, yellow, red, two greens, orange, three violets, brown and gray on Copperplate Deluxe paper' +p293967 +sg291132 +S'1967' +p293968 +sg291134 +S'The King and His Princess' +p293969 +sg291136 +g27 +sg291137 +S'Anthony Ko' +p293970 +sa(dp293971 +g291130 +S'lithograph (stone, aluminum and zinc) in beige, light brown and blue on white Arches paper' +p293972 +sg291132 +S'1967' +p293973 +sg291134 +S'January in Venice' +p293974 +sg291136 +g27 +sg291137 +S'Anthony Ko' +p293975 +sa(dp293976 +g291130 +S'lithograph (zinc and stone) in brown, blue, red, green and black on white Arches paper' +p293977 +sg291132 +S'1963' +p293978 +sg291134 +S'Untitled' +p293979 +sg291136 +g27 +sg291137 +S'Gabriel Kohn' +p293980 +sa(dp293981 +g291130 +S'lithograph (zinc and stone) in dark beige and black on white Arches paper' +p293982 +sg291132 +S'1963' +p293983 +sg291134 +S'Untitled' +p293984 +sg291136 +g27 +sg291137 +S'Gabriel Kohn' +p293985 +sa(dp293986 +g291130 +S'lithograph (stone) in black on white Arches paper' +p293987 +sg291132 +S'1963' +p293988 +sg291134 +S'Untitled' +p293989 +sg291136 +g27 +sg291137 +S'Gabriel Kohn' +p293990 +sa(dp293991 +g291130 +S'lithograph (stone and zinc) in dark beige, red andblack on white Arches paper' +p293992 +sg291132 +S'1963' +p293993 +sg291134 +S'Untitled' +p293994 +sg291136 +g27 +sg291137 +S'Gabriel Kohn' +p293995 +sa(dp293996 +g291134 +S'Untitled' +p293997 +sg291137 +S'Gabriel Kohn' +p293998 +sg291130 +S'lithograph (stone) in black on white Arches paper' +p293999 +sg291132 +S'1963' +p294000 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000af4.jpg' +p294001 +sg291136 +g27 +sa(dp294002 +g291130 +S'lithograph (stone) in black on white Arches paper' +p294003 +sg291132 +S'1963' +p294004 +sg291134 +S'Untitled' +p294005 +sg291136 +g27 +sg291137 +S'Gabriel Kohn' +p294006 +sa(dp294007 +g291134 +S'Untitled' +p294008 +sg291137 +S'Gabriel Kohn' +p294009 +sg291130 +S'lithograph (zinc) in gray and black on white Arches paper' +p294010 +sg291132 +S'1963' +p294011 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000af5.jpg' +p294012 +sg291136 +g27 +sa(dp294013 +g291130 +S'lithograph (stone) in black on white Arches paper' +p294014 +sg291132 +S'1963' +p294015 +sg291134 +S'Untitled' +p294016 +sg291136 +g27 +sg291137 +S'Gabriel Kohn' +p294017 +sa(dp294018 +g291130 +S'lithograph (stone) in black on natural Nacre paper' +p294019 +sg291132 +S'1963' +p294020 +sg291134 +S'Untitled' +p294021 +sg291136 +g27 +sg291137 +S'Gabriel Kohn' +p294022 +sa(dp294023 +g291130 +S'lithograph (stone) in black on white Arches paper' +p294024 +sg291132 +S'1963' +p294025 +sg291134 +S'Untitled' +p294026 +sg291136 +g27 +sg291137 +S'Gabriel Kohn' +p294027 +sa(dp294028 +g291134 +S'Untitled' +p294029 +sg291137 +S'Gabriel Kohn' +p294030 +sg291130 +S'lithograph (zinc) in blue and red on white Arches paper' +p294031 +sg291132 +S'1963' +p294032 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000af6.jpg' +p294033 +sg291136 +g27 +sa(dp294034 +g291130 +S'lithograph (stone) in black on white Arches paper' +p294035 +sg291132 +S'1963' +p294036 +sg291134 +S'Untitled' +p294037 +sg291136 +g27 +sg291137 +S'Gabriel Kohn' +p294038 +sa(dp294039 +g291134 +S'Untitled' +p294040 +sg291137 +S'Gabriel Kohn' +p294041 +sg291130 +S'lithograph (zinc) in blue, orange and black on white Arches paper' +p294042 +sg291132 +S'1963' +p294043 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000af7.jpg' +p294044 +sg291136 +g27 +sa(dp294045 +g291130 +S'lithograph (zinc and stone) in blue and red on white Arches paper' +p294046 +sg291132 +S'1963' +p294047 +sg291134 +S'Untitled' +p294048 +sg291136 +g27 +sg291137 +S'Gabriel Kohn' +p294049 +sa(dp294050 +g291130 +S'lithograph (stone) in dark green and black on Rives BFK paper' +p294051 +sg291132 +S'1963' +p294052 +sg291134 +S'Untitled' +p294053 +sg291136 +g27 +sg291137 +S'Gabriel Kohn' +p294054 +sa(dp294055 +g291130 +S'lithograph (aluminum) in red-orange and black on Copperplate Deluxe paper' +p294056 +sg291132 +S'1965' +p294057 +sg291134 +S'Untitled' +p294058 +sg291136 +g27 +sg291137 +S'Gabriel Kohn' +p294059 +sa(dp294060 +g291130 +S'lithograph (aluminum) in black on Copperplate Deluxe paper' +p294061 +sg291132 +S'1965' +p294062 +sg291134 +S'Untitled' +p294063 +sg291136 +g27 +sg291137 +S'Gabriel Kohn' +p294064 +sa(dp294065 +g291130 +S'lithograph (zinc and stone) in orange, yellow and violet on white Nacre paper' +p294066 +sg291132 +S'1961' +p294067 +sg291134 +S'Simon' +p294068 +sg291136 +g27 +sg291137 +S'Misch Kohn' +p294069 +sa(dp294070 +g291130 +S'lithograph in black on white Arches paper' +p294071 +sg291132 +S'1963' +p294072 +sg291134 +S'Theta, Fi, Omega' +p294073 +sg291136 +g27 +sg291137 +S'Aris Koutroulis' +p294074 +sa(dp294075 +g291130 +S'lithograph (zinc) in gray-green, transparent blackand brown on Rives BFK paper' +p294076 +sg291132 +S'1963' +p294077 +sg291134 +S'Pi, Psi' +p294078 +sg291136 +g27 +sg291137 +S'Aris Koutroulis' +p294079 +sa(dp294080 +g291130 +S'lithograph (zinc) in two blacks on white Arches paper' +p294081 +sg291132 +S'1964' +p294082 +sg291134 +S'Urn' +p294083 +sg291136 +g27 +sg291137 +S'Aris Koutroulis' +p294084 +sa(dp294085 +g291130 +S'lithograph (zinc and stone) in black and light violet-gray on white Arches paper' +p294086 +sg291132 +S'1963' +p294087 +sg291134 +S'Owl' +p294088 +sg291136 +g27 +sg291137 +S'Aris Koutroulis' +p294089 +sa(dp294090 +g291130 +S'lithograph (zinc and aluminum) in violet and blackon white Arches paper' +p294091 +sg291132 +S'1965' +p294092 +sg291134 +S'Untitled' +p294093 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p294094 +sa(dp294095 +g291130 +S'lithograph (zinc and stone) in yellow and black onwhite Arches paper' +p294096 +sg291132 +S'1965' +p294097 +sg291134 +S'Untitled' +p294098 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p294099 +sa(dp294100 +g291130 +S'lithograph (stone) in black on white Arches paper' +p294101 +sg291132 +S'1965' +p294102 +sg291134 +S'Untitled' +p294103 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p294104 +sa(dp294105 +g291130 +S'lithograph (zinc and stone) in black and silver onwhite Arches paper' +p294106 +sg291132 +S'1965' +p294107 +sg291134 +S'Silver Hispano Suiza' +p294108 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p294109 +sa(dp294110 +g291130 +S'lithograph (aluminum and stone) in violet and black on white Arches paper' +p294111 +sg291132 +S'1965' +p294112 +sg291134 +S'Untitled' +p294113 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p294114 +sa(dp294115 +g291130 +S'lithograph (zinc) in red-violet, blue and black onwhite Arches paper' +p294116 +sg291132 +S'1965' +p294117 +sg291134 +S'Stony Point' +p294118 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p294119 +sa(dp294120 +g291130 +S'lithograph (zinc) in orange, red, blue and black on natural Nacre paper' +p294121 +sg291132 +S'1965' +p294122 +sg291134 +S'Untitled' +p294123 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p294124 +sa(dp294125 +g291130 +S'lithograph (aluminum) in green, red-violet and black on white Arches paper' +p294126 +sg291132 +S'1965' +p294127 +sg291134 +S'Untitled' +p294128 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p294129 +sa(dp294130 +g291130 +S'lithograph (aluminum) in red-violet, orange and black on white Arches paper' +p294131 +sg291132 +S'1965' +p294132 +sg291134 +S'Untitled' +p294133 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p294134 +sa(dp294135 +g291130 +S'lithograph (aluminum) in yellow, red-violet and black on white Arches paper' +p294136 +sg291132 +S'1965' +p294137 +sg291134 +S'Purple Passion' +p294138 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p294139 +sa(dp294140 +g291130 +S'lithograph (aluminum and stone) in red-violet, blue and black on white Arches paper' +p294141 +sg291132 +S'1965' +p294142 +sg291134 +S'Untitled' +p294143 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p294144 +sa(dp294145 +g291130 +S'lithograph (aluminum) in yellow and black on whiteArches paper' +p294146 +sg291132 +S'1965' +p294147 +sg291134 +S'Untitled' +p294148 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p294149 +sa(dp294150 +g291130 +S'lithograph (aluminum) in violet and black on whiteArches paper' +p294151 +sg291132 +S'1965' +p294152 +sg291134 +S'Untitled' +p294153 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p294154 +sa(dp294155 +g291130 +S'lithograph (aluminum) in yellow, red-orange and black on white Arches paper' +p294156 +sg291132 +S'1965' +p294157 +sg291134 +S'Untitled' +p294158 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p294159 +sa(dp294160 +g291130 +S'lithograph (aluminum and stone) in blue, black andsilver on white Arches paper' +p294161 +sg291132 +S'1965' +p294162 +sg291134 +S'Untitled' +p294163 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p294164 +sa(dp294165 +g291130 +S'lithograph (aluminum) in orange, blue and black onwhite Arches paper' +p294166 +sg291132 +S'1965' +p294167 +sg291134 +S'Untitled' +p294168 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p294169 +sa(dp294170 +g291130 +S'lithograph (zinc and aluminum) in yellow, red and black on white Arches paper' +p294171 +sg291132 +S'1965' +p294172 +sg291134 +S'Untitled' +p294173 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p294174 +sa(dp294175 +g291130 +S'lithograph (zinc and aluminum) in blue and black on white Arches paper' +p294176 +sg291132 +S'1965' +p294177 +sg291134 +S'Untitled' +p294178 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p294179 +sa(dp294180 +g291130 +S'lithograph (aluminum) in orange, blue and black onwhite Arches paper' +p294181 +sg291132 +S'1965' +p294182 +sg291134 +S'Untitled' +p294183 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p294184 +sa(dp294185 +g291130 +S'lithograph (stone) in gold on natural Nacre paper' +p294186 +sg291132 +S'1965' +p294187 +sg291134 +S'Pile' +p294188 +sg291136 +g27 +sg291137 +S'Gerald Laing' +p294189 +sa(dp294190 +g291130 +S'lithograph (stone) in black on white Arches paper' +p294191 +sg291132 +S'1965' +p294192 +sg291134 +S'Untitled' +p294193 +sg291136 +g27 +sg291137 +S'Jacob Landau' +p294194 +sa(dp294195 +g291130 +S'portfolio w/ 10 black and white and color lithographs, plus title page and colophon, on Arches paper' +p294196 +sg291132 +S'1965' +p294197 +sg291134 +S'Charades' +p294198 +sg291136 +g27 +sg291137 +S'Jacob Landau' +p294199 +sa(dp294200 +g291130 +S'lithograph (stone) in black on white Arches paper' +p294201 +sg291132 +S'1965' +p294202 +sg291134 +S'Untitled' +p294203 +sg291136 +g27 +sg291137 +S'Jacob Landau' +p294204 +sa(dp294205 +g291130 +S'lithograph (stone) in black on white Arches paper' +p294206 +sg291132 +S'1965' +p294207 +sg291134 +S'Untitled' +p294208 +sg291136 +g27 +sg291137 +S'Jacob Landau' +p294209 +sa(dp294210 +g291130 +S'lithograph (stone) in black on white Arches paper' +p294211 +sg291132 +S'1965' +p294212 +sg291134 +S'Untitled' +p294213 +sg291136 +g27 +sg291137 +S'Jacob Landau' +p294214 +sa(dp294215 +g291130 +S'lithograph (stone) in black on white Arches paper' +p294216 +sg291132 +S'1965' +p294217 +sg291134 +S'Untitled' +p294218 +sg291136 +g27 +sg291137 +S'Jacob Landau' +p294219 +sa(dp294220 +g291130 +S'lithograph (stone) in black on white Arches paper' +p294221 +sg291132 +S'1965' +p294222 +sg291134 +S'Untitled' +p294223 +sg291136 +g27 +sg291137 +S'Jacob Landau' +p294224 +sa(dp294225 +g291130 +S'lithograph (stone) in black on white Arches paper' +p294226 +sg291132 +S'1965' +p294227 +sg291134 +S'Untitled' +p294228 +sg291136 +g27 +sg291137 +S'Jacob Landau' +p294229 +sa(dp294230 +g291130 +S'lithograph (stone) in brown-black on white Arches paper' +p294231 +sg291132 +S'1965' +p294232 +sg291134 +S'Untitled' +p294233 +sg291136 +g27 +sg291137 +S'Jacob Landau' +p294234 +sa(dp294235 +g291130 +S'lithograph (stone) in red-brown on white Arches paper' +p294236 +sg291132 +S'1965' +p294237 +sg291134 +S'Untitled' +p294238 +sg291136 +g27 +sg291137 +S'Jacob Landau' +p294239 +sa(dp294240 +g291130 +S'lithograph (stone) in red-black on white Arches paper' +p294241 +sg291132 +S'1965' +p294242 +sg291134 +S'Untitled' +p294243 +sg291136 +g27 +sg291137 +S'Jacob Landau' +p294244 +sa(dp294245 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p294246 +sg291132 +S'1964' +p294247 +sg291134 +S'Ritual Happening' +p294248 +sg291136 +g27 +sg291137 +S'Jacob Landau' +p294249 +sa(dp294250 +g291130 +S'lithograph in black and white' +p294251 +sg291132 +S'1963' +p294252 +sg291134 +S'David' +p294253 +sg291136 +g27 +sg291137 +S'Eugene Larkin' +p294254 +sa(dp294255 +g291130 +S'lithograph in black and yellow' +p294256 +sg291132 +S'1963' +p294257 +sg291134 +S'Ram' +p294258 +sg291136 +g27 +sg291137 +S'Eugene Larkin' +p294259 +sa(dp294260 +g291130 +S'lithograph in black and white' +p294261 +sg291132 +S'1963' +p294262 +sg291134 +S'Grun-Tu-Molairi' +p294263 +sg291136 +g27 +sg291137 +S'Eugene Larkin' +p294264 +sa(dp294265 +g291130 +S'lithograph in black and white' +p294266 +sg291132 +S'1963' +p294267 +sg291134 +S'Saul' +p294268 +sg291136 +g27 +sg291137 +S'Eugene Larkin' +p294269 +sa(dp294270 +g291130 +S'lithograph in blue, black and white' +p294271 +sg291132 +S'1963' +p294272 +sg291134 +S'Burning Bush 4' +p294273 +sg291136 +g27 +sg291137 +S'Eugene Larkin' +p294274 +sa(dp294275 +g291130 +S'lithograph in black and white' +p294276 +sg291132 +S'1963' +p294277 +sg291134 +S'Burning Bush' +p294278 +sg291136 +g27 +sg291137 +S'Eugene Larkin' +p294279 +sa(dp294280 +g291130 +S'lithograph in dark brown on Copperplate Deluxe paper' +p294281 +sg291132 +S'1969' +p294282 +sg291134 +S'Ta-Da' +p294283 +sg291136 +g27 +sg291137 +S'William Law III' +p294284 +sa(dp294285 +g291130 +S'lithograph (aluminum) in seven blues, two greens, yellow-beige, three pinks, red and brown on buff Arches paper' +p294286 +sg291132 +S'1970' +p294287 +sg291134 +S'Electric Tail' +p294288 +sg291136 +g27 +sg291137 +S'William Law III' +p294289 +sa(dp294290 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p294291 +sg291132 +S'1963' +p294292 +sg291134 +S'Les Batignolles' +p294293 +sg291136 +g27 +sg291137 +S'Jason Leese' +p294294 +sa(dp294295 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p294296 +sg291132 +S'1963' +p294297 +sg291134 +S'Locomotive' +p294298 +sg291136 +g27 +sg291137 +S'Jason Leese' +p294299 +sa(dp294300 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p294301 +sg291132 +S'1963' +p294302 +sg291134 +S'Repair Sheds' +p294303 +sg291136 +g27 +sg291137 +S'Jason Leese' +p294304 +sa(dp294305 +g291130 +S'lithograph (stone) in gray-green, blue-green and dark red on Rives BFK paper' +p294306 +sg291132 +S'1965' +p294307 +sg291134 +S'Image-12' +p294308 +sg291136 +g27 +sg291137 +S'Jack Lemon' +p294309 +sa(dp294310 +g291130 +S'lithograph (stone) in black and blue-black on white Arches paper' +p294311 +sg291132 +S'1965' +p294312 +sg291134 +S'Image-13' +p294313 +sg291136 +g27 +sg291137 +S'Jack Lemon' +p294314 +sa(dp294315 +g291130 +S'lithograph (stone and aluminum) in red, dark blue,light blue and light gray on German Etching paper' +p294316 +sg291132 +S'1969' +p294317 +sg291134 +S'L-69-#1' +p294318 +sg291136 +g27 +sg291137 +S'John H. Levee' +p294319 +sa(dp294320 +g291130 +S'lithograph (aluminum) in dark gray, blue, brown-green, two beiges on German Etching paper' +p294321 +sg291132 +S'1969' +p294322 +sg291134 +S'L-69-#3' +p294323 +sg291136 +g27 +sg291137 +S'John H. Levee' +p294324 +sa(dp294325 +g291130 +S'lithograph (aluminum) in blue, black, three grays and beige on German Etching paper' +p294326 +sg291132 +S'1969' +p294327 +sg291134 +S'L-69-#4' +p294328 +sg291136 +g27 +sg291137 +S'John H. Levee' +p294329 +sa(dp294330 +g291130 +S'lithograph (aluminum) in orange, four beiges, blueand two violetson uncalendered Rives paper' +p294331 +sg291132 +S'1969' +p294332 +sg291134 +S'L-69-#5' +p294333 +sg291136 +g27 +sg291137 +S'John H. Levee' +p294334 +sa(dp294335 +g291130 +S'lithograph (aluminum) in orange, blue and two violetson uncalendered Rives paper' +p294336 +sg291132 +S'1969' +p294337 +sg291134 +S'L-69-#6' +p294338 +sg291136 +g27 +sg291137 +S'John H. Levee' +p294339 +sa(dp294340 +g291130 +S'lithograph (aluminum) in red, blue, red-violet andorange on uncalendered Rives paper' +p294341 +sg291132 +S'1969' +p294342 +sg291134 +S'L-69-#7' +p294343 +sg291136 +g27 +sg291137 +S'John H. Levee' +p294344 +sa(dp294345 +g291130 +S'lithograph (aluminum) in four grays and red on Copperplate Deluxe paper' +p294346 +sg291132 +S'1969' +p294347 +sg291134 +S'L-69-#8' +p294348 +sg291136 +g27 +sg291137 +S'John H. Levee' +p294349 +sa(dp294350 +g291130 +S'lithograph (aluminum) in two blues and red on uncalendered Rives paper' +p294351 +sg291132 +S'1969' +p294352 +sg291134 +S'L-69-#9' +p294353 +sg291136 +g27 +sg291137 +S'John H. Levee' +p294354 +sa(dp294355 +g291130 +S'lithograph (aluminum) in two oranges and green on uncalendered Rives paper' +p294356 +sg291132 +S'1969' +p294357 +sg291134 +S'L-69-#10' +p294358 +sg291136 +g27 +sg291137 +S'John H. Levee' +p294359 +sa(dp294360 +g291130 +S'lithograph (stone) in black on Magnani Italia paper' +p294361 +sg291132 +S'1966' +p294362 +sg291134 +S'Untitled' +p294363 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294364 +sa(dp294365 +g291130 +S'lithograph (stone) in black on Magnanin Italia paper' +p294366 +sg291132 +S'1966' +p294367 +sg291134 +S'Untitled' +p294368 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294369 +sa(dp294370 +g291130 +S'lithograph (stone) in black on Magnani Italia paper' +p294371 +sg291132 +S'1966' +p294372 +sg291134 +S'Untitled' +p294373 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294374 +sa(dp294375 +g291130 +S'lithograph (stone) in black on Magnani Italia paper' +p294376 +sg291132 +S'1966' +p294377 +sg291134 +S'Untitled' +p294378 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294379 +sa(dp294380 +g291130 +S'lithograph (zinc and stone) in yellow, red, dark brown and black on Magnani Italia paper' +p294381 +sg291132 +S'1966' +p294382 +sg291134 +S'Untitled' +p294383 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294384 +sa(dp294385 +g291130 +S'lithograph (stone) in black on Magnani Italia paper' +p294386 +sg291132 +S'1966' +p294387 +sg291134 +S'Untitled' +p294388 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294389 +sa(dp294390 +g291130 +S'lithograph (stone) in black on Crisbrook Waterleafpaper' +p294391 +sg291132 +S'1966' +p294392 +sg291134 +S'Untitled' +p294393 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294394 +sa(dp294395 +g291130 +S'lithograph (stone) in black on Magnani Italia paper' +p294396 +sg291132 +S'1966' +p294397 +sg291134 +S'Untitled' +p294398 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294399 +sa(dp294400 +g291130 +S'lithograph (stone) in black on Magnani Italia paper' +p294401 +sg291132 +S'1966' +p294402 +sg291134 +S'Untitled' +p294403 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294404 +sa(dp294405 +g291130 +S'lithograph (stone) in yellow, green, orange, red and brown on Copperplate Deluxe paper' +p294406 +sg291132 +S'1966' +p294407 +sg291134 +S'Untitled' +p294408 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294409 +sa(dp294410 +g291130 +S'lithograph (stone) in black on Magnani Italia paper' +p294411 +sg291132 +S'1966' +p294412 +sg291134 +S'Untitled' +p294413 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294414 +sa(dp294415 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p294416 +sg291132 +S'1966' +p294417 +sg291134 +S'Untitled' +p294418 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294419 +sa(dp294420 +g291130 +S'lithograph (stone) in black on Magnani Italia paper' +p294421 +sg291132 +S'1966' +p294422 +sg291134 +S'Untitled' +p294423 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294424 +sa(dp294425 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p294426 +sg291132 +S'1966' +p294427 +sg291134 +S'Untitled' +p294428 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294429 +sa(dp294430 +g291130 +S'lithograph (stone) in orange, yellow, red, violet and black on Copperplate Deluxe paper' +p294431 +sg291132 +S'1966' +p294432 +sg291134 +S'Untitled' +p294433 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294434 +sa(dp294435 +g291130 +S'lithograph (zinc and stone) in gray, red and blackon Magnani Italia paper' +p294436 +sg291132 +S'1966' +p294437 +sg291134 +S'Untitled' +p294438 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294439 +sa(dp294440 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe' +p294441 +sg291132 +S'1966' +p294442 +sg291134 +S'Untitled' +p294443 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294444 +sa(dp294445 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p294446 +sg291132 +S'1966' +p294447 +sg291134 +S'Untitled' +p294448 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294449 +sa(dp294450 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p294451 +sg291132 +S'1966' +p294452 +sg291134 +S'Untitled' +p294453 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294454 +sa(dp294455 +g291130 +S'lithograph (stone) in blue-black on Copperplate Deluxe paper' +p294456 +sg291132 +S'1966' +p294457 +sg291134 +S'Untitled' +p294458 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294459 +sa(dp294460 +g291130 +S'lithograph (stone) in yellow, red, blue and black on Copperplate Deluxe paper' +p294461 +sg291132 +S'1966' +p294462 +sg291134 +S'Untitled' +p294463 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294464 +sa(dp294465 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294466 +sg291132 +S'1966' +p294467 +sg291134 +S'Untitled' +p294468 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294469 +sa(dp294470 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294471 +sg291132 +S'1966' +p294472 +sg291134 +S'Untitled' +p294473 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294474 +sa(dp294475 +g291130 +S'lithograph (stone) in black on Magnani Italia paper' +p294476 +sg291132 +S'1966' +p294477 +sg291134 +S'Untitled' +p294478 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294479 +sa(dp294480 +g291130 +S'lithograph (stone) in black on Magnani Italia paper' +p294481 +sg291132 +S'1966' +p294482 +sg291134 +S'Untitled' +p294483 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294484 +sa(dp294485 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294486 +sg291132 +S'1966' +p294487 +sg291134 +S'Untitled' +p294488 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294489 +sa(dp294490 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294491 +sg291132 +S'1966' +p294492 +sg291134 +S'Untitled' +p294493 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294494 +sa(dp294495 +g291130 +S'lithograph (stone) in gray, blue, black and yellowon two joined sheets of Crisbrook Waterleaf paper' +p294496 +sg291132 +S'1966' +p294497 +sg291134 +S'Untitled' +p294498 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294499 +sa(dp294500 +g291130 +S'lithograph (stone) in gray, blue, black and yellowon two joined sheets of Crisbrook Waterleaf paper' +p294501 +sg291132 +S'1966' +p294502 +sg291134 +S'Untitled' +p294503 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294504 +sa(dp294505 +g291130 +S'lithograph (stone) in black on Magnani Italia paper' +p294506 +sg291132 +S'1966' +p294507 +sg291134 +S'Untitled' +p294508 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294509 +sa(dp294510 +g291130 +S'lithograph (stone) in black on Magnani Italia paper' +p294511 +sg291132 +S'1966' +p294512 +sg291134 +S'Untitled' +p294513 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294514 +sa(dp294515 +g291130 +S'lithograph (stone) in black on Magnani Italia paper' +p294516 +sg291132 +S'1966' +p294517 +sg291134 +S'Untitled' +p294518 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294519 +sa(dp294520 +g291130 +S'lithograph (stone) in black on Magnani Italia paper' +p294521 +sg291132 +S'1966' +p294522 +sg291134 +S'Untitled' +p294523 +sg291136 +g27 +sg291137 +S'Frank Lobdell' +p294524 +sa(dp294525 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p294526 +sg291132 +S'1968' +p294527 +sg291134 +S'Ballet' +p294528 +sg291136 +g27 +sg291137 +S'Serge Lozingot' +p294529 +sa(dp294530 +g291130 +S'lithograph (stone) in brown on Rives BFK paper' +p294531 +sg291132 +S'1969' +p294532 +sg291134 +S'Laird-God-Army' +p294533 +sg291136 +g27 +sg291137 +S'Samuel Calman Maitin' +p294534 +sa(dp294535 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p294536 +sg291132 +S'1967' +p294537 +sg291134 +S'Untitled' +p294538 +sg291136 +g27 +sg291137 +S'Maryan' +p294539 +sa(dp294540 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294541 +sg291132 +S'1967' +p294542 +sg291134 +S'Untitled' +p294543 +sg291136 +g27 +sg291137 +S'Maryan' +p294544 +sa(dp294545 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294546 +sg291132 +S'1967' +p294547 +sg291134 +S'Untitled' +p294548 +sg291136 +g27 +sg291137 +S'Maryan' +p294549 +sa(dp294550 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294551 +sg291132 +S'1967' +p294552 +sg291134 +S'Untitled' +p294553 +sg291136 +g27 +sg291137 +S'Maryan' +p294554 +sa(dp294555 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294556 +sg291132 +S'1967' +p294557 +sg291134 +S'Untitled' +p294558 +sg291136 +g27 +sg291137 +S'Maryan' +p294559 +sa(dp294560 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p294561 +sg291132 +S'1967' +p294562 +sg291134 +S'Untitled' +p294563 +sg291136 +g27 +sg291137 +S'Maryan' +p294564 +sa(dp294565 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294566 +sg291132 +S'1967' +p294567 +sg291134 +S'Untitled' +p294568 +sg291136 +g27 +sg291137 +S'Maryan' +p294569 +sa(dp294570 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294571 +sg291132 +S'1967' +p294572 +sg291134 +S'Untitled' +p294573 +sg291136 +g27 +sg291137 +S'Maryan' +p294574 +sa(dp294575 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294576 +sg291132 +S'1967' +p294577 +sg291134 +S'Untitled' +p294578 +sg291136 +g27 +sg291137 +S'Maryan' +p294579 +sa(dp294580 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294581 +sg291132 +S'1967' +p294582 +sg291134 +S'Untitled' +p294583 +sg291136 +g27 +sg291137 +S'Maryan' +p294584 +sa(dp294585 +g291130 +S'lithograph (zinc) in black on Rives BFK paper' +p294586 +sg291132 +S'1967' +p294587 +sg291134 +S'Untitled' +p294588 +sg291136 +g27 +sg291137 +S'Maryan' +p294589 +sa(dp294590 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294591 +sg291132 +S'1967' +p294592 +sg291134 +S'Untitled' +p294593 +sg291136 +g27 +sg291137 +S'Maryan' +p294594 +sa(dp294595 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294596 +sg291132 +S'1967' +p294597 +sg291134 +S'Untitled' +p294598 +sg291136 +g27 +sg291137 +S'Maryan' +p294599 +sa(dp294600 +g291130 +S'lithograph (zinc) in two pinks, yellow, red, greenand black on German Etching paper' +p294601 +sg291132 +S'1967' +p294602 +sg291134 +S'Untitled' +p294603 +sg291136 +g27 +sg291137 +S'Maryan' +p294604 +sa(dp294605 +g291130 +S'lithograph (stone) black on German Etching paper' +p294606 +sg291132 +S'1967' +p294607 +sg291134 +S'Untitled' +p294608 +sg291136 +g27 +sg291137 +S'Maryan' +p294609 +sa(dp294610 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294611 +sg291132 +S'1967' +p294612 +sg291134 +S'Untitled' +p294613 +sg291136 +g27 +sg291137 +S'Maryan' +p294614 +sa(dp294615 +g291130 +S'lithograph (stone) black on German Etching paper' +p294616 +sg291132 +S'1967' +p294617 +sg291134 +S'Untitled' +p294618 +sg291136 +g27 +sg291137 +S'Maryan' +p294619 +sa(dp294620 +g291130 +S'lithograph (stone) black on German Etching paper' +p294621 +sg291132 +S'1967' +p294622 +sg291134 +S'Untitled' +p294623 +sg291136 +g27 +sg291137 +S'Maryan' +p294624 +sa(dp294625 +g291130 +S'lithograph (stone) black on German Etching paper' +p294626 +sg291132 +S'1967' +p294627 +sg291134 +S'Untitled' +p294628 +sg291136 +g27 +sg291137 +S'Maryan' +p294629 +sa(dp294630 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294631 +sg291132 +S'1967' +p294632 +sg291134 +S'Untitled' +p294633 +sg291136 +g27 +sg291137 +S'Maryan' +p294634 +sa(dp294635 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294636 +sg291132 +S'1967' +p294637 +sg291134 +S'Untitled' +p294638 +sg291136 +g27 +sg291137 +S'Maryan' +p294639 +sa(dp294640 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p294641 +sg291132 +S'1967' +p294642 +sg291134 +S'Untitled' +p294643 +sg291136 +g27 +sg291137 +S'Maryan' +p294644 +sa(dp294645 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294646 +sg291132 +S'1967' +p294647 +sg291134 +S'Untitled' +p294648 +sg291136 +g27 +sg291137 +S'Maryan' +p294649 +sa(dp294650 +g291130 +S'lithograph (stone) black on German Etching paper' +p294651 +sg291132 +S'1967' +p294652 +sg291134 +S'Untitled' +p294653 +sg291136 +g27 +sg291137 +S'Maryan' +p294654 +sa(dp294655 +g291130 +S'lithograph (zinc and stone) in ochre and black on German Etching paper' +p294656 +sg291132 +S'1967' +p294657 +sg291134 +S'Untitled' +p294658 +sg291136 +g27 +sg291137 +S'Maryan' +p294659 +sa(dp294660 +g291130 +S'lithograph (aluminum and stone) in yellow, pink, green, red and black on German Etching paper' +p294661 +sg291132 +S'1967' +p294662 +sg291134 +S'Untitled' +p294663 +sg291136 +g27 +sg291137 +S'Maryan' +p294664 +sa(dp294665 +g291130 +S'lithograph (aluminum) in black on red-brown Morikipaper' +p294666 +sg291132 +S'1967' +p294667 +sg291134 +S'Untitled' +p294668 +sg291136 +g27 +sg291137 +S'Maryan' +p294669 +sa(dp294670 +g291130 +S'lithograph (aluminum and stone) in pink, red and black on German Etching paper' +p294671 +sg291132 +S'1967' +p294672 +sg291134 +S'Untitled' +p294673 +sg291136 +g27 +sg291137 +S'Maryan' +p294674 +sa(dp294675 +g291130 +S'lithograph (stone) in ochre and black on German Etching paper' +p294676 +sg291132 +S'1967' +p294677 +sg291134 +S'Untitled' +p294678 +sg291136 +g27 +sg291137 +S'Maryan' +p294679 +sa(dp294680 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294681 +sg291132 +S'1967' +p294682 +sg291134 +S'Untitled' +p294683 +sg291136 +g27 +sg291137 +S'Maryan' +p294684 +sa(dp294685 +g291130 +S'lithograph (stone) in two blacks on uncalendered Rives paper' +p294686 +sg291132 +S'1969' +p294687 +sg291134 +S'Western Duo (Title Page)' +p294688 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294689 +sa(dp294690 +g291130 +S'portfolio w/ 10 lithographs (stone), including title page and colophon, in black on uncalendered Rives paper' +p294691 +sg291132 +S'1969' +p294692 +sg291134 +S'Western Duo' +p294693 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294694 +sa(dp294695 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p294696 +sg291132 +S'1969' +p294697 +sg291134 +S'Western Duo I' +p294698 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294699 +sa(dp294700 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p294701 +sg291132 +S'1969' +p294702 +sg291134 +S'Western Duo II' +p294703 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294704 +sa(dp294705 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p294706 +sg291132 +S'1969' +p294707 +sg291134 +S'Western Duo III' +p294708 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294709 +sa(dp294710 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p294711 +sg291132 +S'1969' +p294712 +sg291134 +S'Western Duo IV' +p294713 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294714 +sa(dp294715 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p294716 +sg291132 +S'1969' +p294717 +sg291134 +S'Western Duo V' +p294718 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294719 +sa(dp294720 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p294721 +sg291132 +S'1969' +p294722 +sg291134 +S'Western Duo VI' +p294723 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294724 +sa(dp294725 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p294726 +sg291132 +S'1969' +p294727 +sg291134 +S'Western Duo VII' +p294728 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294729 +sa(dp294730 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p294731 +sg291132 +S'1969' +p294732 +sg291134 +S'Western Duo VIII' +p294733 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294734 +sa(dp294735 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p294736 +sg291132 +S'1969' +p294737 +sg291134 +S'Western Duo (Colophon)' +p294738 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294739 +sa(dp294740 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294741 +sg291132 +S'1969' +p294742 +sg291134 +S'Tusche Brush' +p294743 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294744 +sa(dp294745 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p294746 +sg291132 +S'1969' +p294747 +sg291134 +S'Moon Maid' +p294748 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294749 +sa(dp294750 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p294751 +sg291132 +S'1969' +p294752 +sg291134 +S'Self Love' +p294753 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294754 +sa(dp294755 +g291130 +S'lithograph (stone) in black on uncalendered Rives paper' +p294756 +sg291132 +S'1969' +p294757 +sg291134 +S'Diet Soda' +p294758 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294759 +sa(dp294760 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p294761 +sg291132 +S'1969' +p294762 +sg291134 +S'Flower Girl' +p294763 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294764 +sa(dp294765 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p294766 +sg291132 +S'1969' +p294767 +sg291134 +S'Flower Girl II' +p294768 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294769 +sa(dp294770 +g291130 +S'lithograph (stone) in black on calendered Rives paper' +p294771 +sg291132 +S'1969' +p294772 +sg291134 +S'Ashtray' +p294773 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294774 +sa(dp294775 +g291130 +S'lithograph (stone) in black on Magnani Italia paper' +p294776 +sg291132 +S'1969' +p294777 +sg291134 +S'Brushes' +p294778 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294779 +sa(dp294780 +g291130 +S'lithograph (stone) in black on calendered Rives paper' +p294781 +sg291132 +S'1969' +p294782 +sg291134 +S'Wall Flowers' +p294783 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294784 +sa(dp294785 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p294786 +sg291132 +S'1969' +p294787 +sg291134 +S'Miss Mormont Pool' +p294788 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294789 +sa(dp294790 +g291130 +S'lithograph (stone) in black on Crisbrook Waterleafpaper' +p294791 +sg291132 +S'1969' +p294792 +sg291134 +S'Sunglasses' +p294793 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294794 +sa(dp294795 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p294796 +sg291132 +S'1969' +p294797 +sg291134 +S'Adam and Eve in Hollywood' +p294798 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294799 +sa(dp294800 +g291130 +S'lithograph (stone) in black on Crisbrook Waterleafpaper' +p294801 +sg291132 +S'1969' +p294802 +sg291134 +S'Diver' +p294803 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294804 +sa(dp294805 +g291130 +S'lithograph (stone) in black on calendered Rives paper' +p294806 +sg291132 +S'1969' +p294807 +sg291134 +S'Poolside' +p294808 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294809 +sa(dp294810 +g291130 +S'lithograph (stone) in black on Crisbrook Waterleafpaper' +p294811 +sg291132 +S'1969' +p294812 +sg291134 +S'Candle' +p294813 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294814 +sa(dp294815 +g291130 +S'lithograph (stone) in black on J. Green paper' +p294816 +sg291132 +S'1969' +p294817 +sg291134 +S'Coffee Cup' +p294818 +sg291136 +g27 +sg291137 +S'Gregory Masurovsky' +p294819 +sa(dp294820 +g291130 +S'lithograph (stone and aluminum) in two greens, tworeds and black on Rives BFK paper' +p294821 +sg291132 +S'1968/1969' +p294822 +sg291134 +S'Green Realeau Form with Red Cube' +p294823 +sg291136 +g27 +sg291137 +S'Charles Mattox' +p294824 +sa(dp294825 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294826 +sg291132 +S'1968' +p294827 +sg291134 +S'Melrose Avenue' +p294828 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294829 +sa(dp294830 +g291134 +S'The Mirror' +p294831 +sg291137 +S'Michael Mazur' +p294832 +sg291130 +S'lithograph (stone) in black on German Etching paper' +p294833 +sg291132 +S'1968' +p294834 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b2a.jpg' +p294835 +sg291136 +g27 +sa(dp294836 +g291130 +S'lithograph (zinc and stone) in pink and light grayon German Etching paper' +p294837 +sg291132 +S'1968' +p294838 +sg291134 +S'Venice Boulevard' +p294839 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294840 +sa(dp294841 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294842 +sg291132 +S'1968' +p294843 +sg291134 +S'Griffith Park #1' +p294844 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294845 +sa(dp294846 +g291130 +S'lithograph (aluminum and stone) in orange, pink and black on German Etching paper' +p294847 +sg291132 +S'1968' +p294848 +sg291134 +S'Griffith Park #2' +p294849 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294850 +sa(dp294851 +g291130 +S'lithograph (aluminum) in violet and black on Copperplate Deluxe paper' +p294852 +sg291132 +S'1968' +p294853 +sg291134 +S'Shadow Game' +p294854 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294855 +sa(dp294856 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294857 +sg291132 +S'1968' +p294858 +sg291134 +S'White Divisions #1' +p294859 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294860 +sa(dp294861 +g291130 +S'lithograph (stone) in black on German Etching paper' +p294862 +sg291132 +S'1968' +p294863 +sg291134 +S'Studio Views I' +p294864 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294865 +sa(dp294866 +g291130 +S'lithograph (stone) in black on cream Copperplate Deluxe paper' +p294867 +sg291132 +S'1968' +p294868 +sg291134 +S'Studio Views II' +p294869 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294870 +sa(dp294871 +g291134 +S'Studio Views III' +p294872 +sg291137 +S'Michael Mazur' +p294873 +sg291130 +S'lithograph (stone) in black on cream Copperplate Deluxe paper' +p294874 +sg291132 +S'1968' +p294875 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b2b.jpg' +p294876 +sg291136 +g27 +sa(dp294877 +g291130 +S'lithograph (aluminum and stone) in two light blues, pink and black on buff Arches paper' +p294878 +sg291132 +S'1968' +p294879 +sg291134 +S'Untitled' +p294880 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294881 +sa(dp294882 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p294883 +sg291132 +S'1968' +p294884 +sg291134 +S'Untitled' +p294885 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294886 +sa(dp294887 +g291130 +S'lithograph (stone) in beige on Copperplate Deluxe paper' +p294888 +sg291132 +S'1968' +p294889 +sg291134 +S'Untitled' +p294890 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294891 +sa(dp294892 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p294893 +sg291132 +S'1968' +p294894 +sg291134 +S'Untitled' +p294895 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294896 +sa(dp294897 +g291130 +S'lithograph (stone) in beige on Copperplate Deluxe paper' +p294898 +sg291132 +S'1968' +p294899 +sg291134 +S'Untitled' +p294900 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294901 +sa(dp294902 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p294903 +sg291132 +S'1968' +p294904 +sg291134 +S'White Divisions #2' +p294905 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294906 +sa(dp294907 +g291130 +S'lithograph (stone) in yellow-brown on German Etching paper' +p294908 +sg291132 +S'1968' +p294909 +sg291134 +S'Dark Division' +p294910 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294911 +sa(dp294912 +g291130 +S'lithograph (stone, aluminum and zinc) in two greens, two oranges and violet-pink on buff Arches paper' +p294913 +sg291132 +S'1968' +p294914 +sg291134 +S'Van Ness Avenue' +p294915 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294916 +sa(dp294917 +g291130 +S'lithograph (stone) in light red-violet on cream Copperplate Deluxe paper' +p294918 +sg291132 +S'1968' +p294919 +sg291134 +S'Her Emergence' +p294920 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294921 +sa(dp294922 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p294923 +sg291132 +S'1968' +p294924 +sg291134 +S"Angelina's Legs" +p294925 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294926 +sa(dp294927 +g291130 +S'lithograph (stone) in gray on Copperplate Deluxe paper' +p294928 +sg291132 +S'1968' +p294929 +sg291134 +S"Angelina's Legs A" +p294930 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294931 +sa(dp294932 +g291130 +S'lithograph (stone) in gray on Copperplate Deluxe paper' +p294933 +sg291132 +S'1968' +p294934 +sg291134 +S"Angelina's Legs B" +p294935 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294936 +sa(dp294937 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p294938 +sg291132 +S'1968' +p294939 +sg291134 +S'Self-Portrait' +p294940 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294941 +sa(dp294942 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p294943 +sg291132 +S'1968' +p294944 +sg291134 +S'Untitled' +p294945 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294946 +sa(dp294947 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p294948 +sg291132 +S'1968' +p294949 +sg291134 +S'Untitled' +p294950 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294951 +sa(dp294952 +g291130 +S'lithograph (aluminum and stone) in black and blue-black on Copperplate Deluxe paper' +p294953 +sg291132 +S'1968' +p294954 +sg291134 +S'Sunset Boulevard III' +p294955 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294956 +sa(dp294957 +g291130 +S'lithograph (aluminum) in light beige and light blue on Copperplate Deluxe paper' +p294958 +sg291132 +S'1968' +p294959 +sg291134 +S'Untitled' +p294960 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294961 +sa(dp294962 +g291130 +S'lithograph (aluminum) in gray and blue on buff Arches paper' +p294963 +sg291132 +S'1968' +p294964 +sg291134 +S'Untitled' +p294965 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294966 +sa(dp294967 +g291130 +S'lithograph (stone) in yellow-gray on Rives BFK paper' +p294968 +sg291132 +S'1968' +p294969 +sg291134 +S"Model's Entrance" +p294970 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294971 +sa(dp294972 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p294973 +sg291132 +S'1968' +p294974 +sg291134 +S'Shadow Interior' +p294975 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294976 +sa(dp294977 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p294978 +sg291132 +S'1968' +p294979 +sg291134 +S'Tamarind Avenue' +p294980 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294981 +sa(dp294982 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p294983 +sg291132 +S'1968' +p294984 +sg291134 +S'Self-Portrait II' +p294985 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294986 +sa(dp294987 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p294988 +sg291132 +S'1968' +p294989 +sg291134 +S'Self-Portrait III' +p294990 +sg291136 +g27 +sg291137 +S'Michael Mazur' +p294991 +sa(dp294992 +g291130 +S'lithograph (stone) in green-blue, yellow-green, pink and light blue on white Arches paper' +p294993 +sg291132 +S'1965' +p294994 +sg291134 +S'Monogatari' +p294995 +sg291136 +g27 +sg291137 +S'Byron Gordon McKeeby' +p294996 +sa(dp294997 +g291130 +S'lithograph (stone) in black on buff Arches paper' +p294998 +sg291132 +S'1965' +p294999 +sg291134 +S'Okina' +p295000 +sg291136 +g27 +sg291137 +S'Byron Gordon McKeeby' +p295001 +sa(dp295002 +g291130 +S'lithograph (stone) in light yellow on one of two hinged sheets of Magnani Italia paper' +p295003 +sg291132 +S'1968' +p295004 +sg291134 +S'Tablet Litho 1 [top sheet]' +p295005 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295006 +sa(dp295007 +g291130 +S'lithograph (stone) in light yellow on one of two hinged sheets of Magnani Italia paper' +p295008 +sg291132 +S'1968' +p295009 +sg291134 +S'Tablet Litho 1 [bottom sheet]' +p295010 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295011 +sa(dp295012 +g291130 +S'lithograph (stone) in light yellow and black on Rives BFK paper' +p295013 +sg291132 +S'1968' +p295014 +sg291134 +S'Tablet Litho 2' +p295015 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295016 +sa(dp295017 +g291130 +S'lithograph (stone) in beige and white on Copperplate Deluxe paper' +p295018 +sg291132 +S'1968' +p295019 +sg291134 +S'Tablet Litho 4' +p295020 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295021 +sa(dp295022 +g291130 +S'lithograph (stone) in black on German Etching paper' +p295023 +sg291132 +S'1968' +p295024 +sg291134 +S'Tablet Litho 5' +p295025 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295026 +sa(dp295027 +g291130 +S'lithograph (stone) in black on German Etching paper' +p295028 +sg291132 +S'1968' +p295029 +sg291134 +S'Tablet Litho 3' +p295030 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295031 +sa(dp295032 +g291130 +S'lithograph (stone) in black on white Nacre paper' +p295033 +sg291132 +S'1968' +p295034 +sg291134 +S'Tablet Litho 14' +p295035 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295036 +sa(dp295037 +g291130 +S'lithograph (aluminum) in yellow-gray on white Nacre paper' +p295038 +sg291132 +S'1968' +p295039 +sg291134 +S'Tablet Litho 7' +p295040 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295041 +sa(dp295042 +g291130 +S'lithograph (aluminum) in black and blue-black on white Nacre paper' +p295043 +sg291132 +S'1968' +p295044 +sg291134 +S'Tablet Litho 8' +p295045 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295046 +sa(dp295047 +g291130 +S'lithograph (stone) in black on one of two hinged sheets of white Nacre paper' +p295048 +sg291132 +S'1968' +p295049 +sg291134 +S'Tablet Litho 13 [left sheet]' +p295050 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295051 +sa(dp295052 +g291130 +S'lithograph (stone) in black and red on one of two hinged sheets of white Nacre paper' +p295053 +sg291132 +S'1968' +p295054 +sg291134 +S'Tablet Litho 13 [right sheet]' +p295055 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295056 +sa(dp295057 +g291130 +S'lithograph (aluminum) in blue-black on natural Nacre paper' +p295058 +sg291132 +S'1968' +p295059 +sg291134 +S'Tablet Litho 10' +p295060 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295061 +sa(dp295062 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p295063 +sg291132 +S'1968' +p295064 +sg291134 +S'Tablet Litho 11' +p295065 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295066 +sa(dp295067 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p295068 +sg291132 +S'1968' +p295069 +sg291134 +S'Tablet Litho 9' +p295070 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295071 +sa(dp295072 +g291130 +S'lithograph (stone) in blue on German Etching paper' +p295073 +sg291132 +S'1968' +p295074 +sg291134 +S'Tablet Litho 6' +p295075 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295076 +sa(dp295077 +g291130 +S'lithograph (onyx) in light beige on Copperplate Deluxe paper' +p295078 +sg291132 +S'1968' +p295079 +sg291134 +S'Tablet Litho 12' +p295080 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295081 +sa(dp295082 +g291130 +S'lithograph (stone) in two blacks on Copperplate Deluxe paper' +p295083 +sg291132 +S'1968' +p295084 +sg291134 +S'Tablet Litho 17' +p295085 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295086 +sa(dp295087 +g291130 +S'lithograph (stone) in white on white Nacre paper' +p295088 +sg291132 +S'1968' +p295089 +sg291134 +S'Tablet Litho 18' +p295090 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295091 +sa(dp295092 +g291130 +S'lithograph (aluminum) in black on Copperplate Deluxe paper' +p295093 +sg291132 +S'1968' +p295094 +sg291134 +S'Tablet Litho 15' +p295095 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295096 +sa(dp295097 +g291130 +S'lithograph (aluminum) in silver-black on Copperplate Deluxe paper' +p295098 +sg291132 +S'1968' +p295099 +sg291134 +S'Tablet Litho 16' +p295100 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295101 +sa(dp295102 +g291130 +S'lithograph (stone) in light-yellow, embossed on Copperplate Deluxe paper' +p295103 +sg291132 +S'1968' +p295104 +sg291134 +S'Tablet Litho 22' +p295105 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295106 +sa(dp295107 +g291130 +S'lithograph (aluminum) in silver-black on German Etching paper' +p295108 +sg291132 +S'1968' +p295109 +sg291134 +S'Tablet Litho 25' +p295110 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295111 +sa(dp295112 +g291130 +S'lithograph (stone) in black and blue-black on white Nacre paper' +p295113 +sg291132 +S'1968' +p295114 +sg291134 +S'Tablet Litho 19' +p295115 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295116 +sa(dp295117 +g291130 +S'lithograph (stone) in silver-black on German Etching paper' +p295118 +sg291132 +S'1968' +p295119 +sg291134 +S'Tablet Litho 23' +p295120 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295121 +sa(dp295122 +g291130 +S'lithograph (stone) in black and blue-black on white Nacre paper' +p295123 +sg291132 +S'1968' +p295124 +sg291134 +S'Tablet Litho 20' +p295125 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295126 +sa(dp295127 +g291130 +S'lithograph (stone) in silver-black on German Etching paper' +p295128 +sg291132 +S'1968' +p295129 +sg291134 +S'Tablet Litho 24' +p295130 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295131 +sa(dp295132 +g291130 +S'lithograph (stone) in violet-black and blue-black on one of two hinged sheets of white Inomachi Nacre paper' +p295133 +sg291132 +S'1968' +p295134 +sg291134 +S'Tablet Litho 26 [top sheet]' +p295135 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295136 +sa(dp295137 +g291130 +S'lithograph (stone) in violet-black and blue-black on one of two hinged sheets of white Inomachi Nacre paper' +p295138 +sg291132 +S'1968' +p295139 +sg291134 +S'Tablet Litho 26 [bottom sheet]' +p295140 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295141 +sa(dp295142 +g291130 +S'lithograph (stone) in beige on one of two hinged sheets of white Nacre paper' +p295143 +sg291132 +S'1968' +p295144 +sg291134 +S'Tablet Litho 29 [top sheet]' +p295145 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295146 +sa(dp295147 +g291130 +S'lithograph (stone) in beige on one of two hinged sheets of white Nacre paper' +p295148 +sg291132 +S'1968' +p295149 +sg291134 +S'Tablet Litho 29 [bottom sheet]' +p295150 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295151 +sa(dp295152 +g291130 +S'lithograph (aluminum) in light yellow-gray on German Etching paper' +p295153 +sg291132 +S'1968' +p295154 +sg291134 +S'Tablet Litho 28' +p295155 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295156 +sa(dp295157 +g291130 +S'lithograph (stone) in two blacks on Copperplate Deluxe paper' +p295158 +sg291132 +S'1968' +p295159 +sg291134 +S'Tablet Litho 27' +p295160 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295161 +sa(dp295162 +g291130 +S'lithograph (onyx) in gray on one of three hinged sheets of German Etching paper' +p295163 +sg291132 +S'1968' +p295164 +sg291134 +S'Tablet Litho 30 [left sheet]' +p295165 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295166 +sa(dp295167 +g291130 +S'lithograph (onyx) in white on one of three hinged sheets of German Etching paper' +p295168 +sg291132 +S'1968' +p295169 +sg291134 +S'Tablet Litho 30 [center sheet]' +p295170 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295171 +sa(dp295172 +g291130 +S'lithograph (onyx) in black on one of three hinged sheets of German Etching paper' +p295173 +sg291132 +S'1968' +p295174 +sg291134 +S'Tablet Litho 30 [right sheet]' +p295175 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295176 +sa(dp295177 +g291130 +S'lithograph (stone) in two blacks on Copperplate Deluxe paper' +p295178 +sg291132 +S'1968' +p295179 +sg291134 +S'Tablet Litho 21' +p295180 +sg291136 +g27 +sg291137 +S'Eleanore Mikus' +p295181 +sa(dp295182 +g291130 +S'lithograph (zinc and aluminum) in blue, pink, yellow and silver-blue on Copperplate Deluxe paper' +p295183 +sg291132 +S'1968' +p295184 +sg291134 +S'Equitorial Cloud at the Time of the Equinox' +p295185 +sg291136 +g27 +sg291137 +S'Jean Robert Milant' +p295186 +sa(dp295187 +g291130 +S'lithograph (aluminum) in pearly blue and light yellow on Copperplate Deluxe paper' +p295188 +sg291132 +S'1968' +p295189 +sg291134 +S'Vertical Eclipse' +p295190 +sg291136 +g27 +sg291137 +S'Jean Robert Milant' +p295191 +sa(dp295192 +g291130 +S'lithograph (stone) in pearly gray and pearly yellow on white Arches paper' +p295193 +sg291132 +S'1968' +p295194 +sg291134 +S'Joy over the Autumn Equinox' +p295195 +sg291136 +g27 +sg291137 +S'Jean Robert Milant' +p295196 +sa(dp295197 +g291130 +S'lithograph (aluminum) in pink and yellow on Rives BFK paper' +p295198 +sg291132 +S'1968' +p295199 +sg291134 +S'Great Day' +p295200 +sg291136 +g27 +sg291137 +S'Jean Robert Milant' +p295201 +sa(dp295202 +g291130 +S'lithograph (aluminum) in blended pink, yellow and blue on Rives BFK paper' +p295203 +sg291132 +S'1968' +p295204 +sg291134 +S'Sky Filled Cream Puffs' +p295205 +sg291136 +g27 +sg291137 +S'Jean Robert Milant' +p295206 +sa(dp295207 +g291130 +S'lithograph (aluminum) in blended pink, yellow and blue on Rives BFK paper' +p295208 +sg291132 +S'1968' +p295209 +sg291134 +S'X Marks the Spot' +p295210 +sg291136 +g27 +sg291137 +S'Jean Robert Milant' +p295211 +sa(dp295212 +g291130 +S'lithograph (aluminum) in blended pink, yellow and blue on Rives BFK paper' +p295213 +sg291132 +S'1968' +p295214 +sg291134 +S'100' +p295215 +sg291136 +g27 +sg291137 +S'Jean Robert Milant' +p295216 +sa(dp295217 +g291130 +S'lithograph (aluminum) in blended pink, yellow and blue on Rives BFK paper' +p295218 +sg291132 +S'1968' +p295219 +sg291134 +S'Paralogistic' +p295220 +sg291136 +g27 +sg291137 +S'Jean Robert Milant' +p295221 +sa(dp295222 +g291130 +S'lithograph (aluminum) in blended pink, yellow and blue on Rives BFK paper' +p295223 +sg291132 +S'1968' +p295224 +sg291134 +S'Ascending Nimbus' +p295225 +sg291136 +g27 +sg291137 +S'Jean Robert Milant' +p295226 +sa(dp295227 +g291130 +S'lithograph (aluminum) in blended pink, yellow and blue on Rives BFK paper' +p295228 +sg291132 +S'1968' +p295229 +sg291134 +S'Rose Twist' +p295230 +sg291136 +g27 +sg291137 +S'Jean Robert Milant' +p295231 +sa(dp295232 +g291130 +S'lithograph (aluminum) in blended pink, yellow and blue on Rives BFK paper' +p295233 +sg291132 +S'1968' +p295234 +sg291134 +S'Quad' +p295235 +sg291136 +g27 +sg291137 +S'Jean Robert Milant' +p295236 +sa(dp295237 +g291130 +S'lithograph (aluminum) in blended pink, yellow and blue on Rives BFK paper' +p295238 +sg291132 +S'1968' +p295239 +sg291134 +S'My Window' +p295240 +sg291136 +g27 +sg291137 +S'Jean Robert Milant' +p295241 +sa(dp295242 +g291130 +S'lithograph (aluminum) in blended pink, yellow and blue on Rives BFK paper' +p295243 +sg291132 +S'1968' +p295244 +sg291134 +S'Sunshine' +p295245 +sg291136 +g27 +sg291137 +S'Jean Robert Milant' +p295246 +sa(dp295247 +g291130 +S'lithograph (aluminum) in blended pink, yellow and blue on Rives BFK paper' +p295248 +sg291132 +S'1968' +p295249 +sg291134 +S'Fun' +p295250 +sg291136 +g27 +sg291137 +S'Jean Robert Milant' +p295251 +sa(dp295252 +g291130 +S'lithograph (aluminum) in blended pink, yellow and blue on Rives BFK paper' +p295253 +sg291132 +S'1968' +p295254 +sg291134 +S'Pop C-0-r-n' +p295255 +sg291136 +g27 +sg291137 +S'Jean Robert Milant' +p295256 +sa(dp295257 +g291130 +S'lithograph in two blended blues and white on Copperplate Deluxe paper' +p295258 +sg291132 +S'1969' +p295259 +sg291134 +S'Untitled' +p295260 +sg291136 +g27 +sg291137 +S'Jean Robert Milant' +p295261 +sa(dp295262 +g291130 +S'lithograph (aluminum and stone) in blended blue, yellow and white on German Etching paper' +p295263 +sg291132 +S'1969' +p295264 +sg291134 +S'Untitled' +p295265 +sg291136 +g27 +sg291137 +S'Jean Robert Milant' +p295266 +sa(dp295267 +g291130 +S'lithograph (aluminum and stone) in three blues on German Etching paper' +p295268 +sg291132 +S'1969' +p295269 +sg291134 +S'Untitled' +p295270 +sg291136 +g27 +sg291137 +S'Jean Robert Milant' +p295271 +sa(dp295272 +g291130 +S'lithograph (zinc and aluminum) in blue-green, silver-blue and two silvers on German Etching paper' +p295273 +sg291132 +S'1969' +p295274 +sg291134 +S'Untitled' +p295275 +sg291136 +g27 +sg291137 +S'Jean Robert Milant' +p295276 +sa(dp295277 +g291130 +S'lithograph (stone) in green-black on buff Arches paper' +p295278 +sg291132 +S'1965' +p295279 +sg291134 +S'Totem-2nd State' +p295280 +sg291136 +g27 +sg291137 +S'Thomas H. Minkler' +p295281 +sa(dp295282 +g291130 +S'lithograph (stone) in yellow, violet, blue, red and brown-black on white Arches paper' +p295283 +sg291132 +S'1965' +p295284 +sg291134 +S'Sisiutl Totem' +p295285 +sg291136 +g27 +sg291137 +S'Thomas H. Minkler' +p295286 +sa(dp295287 +g291130 +S'lithograph (stone) in brown-black on Rives BFK paper' +p295288 +sg291132 +S'1965' +p295289 +sg291134 +S'Owl Totem' +p295290 +sg291136 +g27 +sg291137 +S'Thomas H. Minkler' +p295291 +sa(dp295292 +g291130 +S'lithograph (stone) in green, two violets, blue andblue-black on white Arches paper' +p295293 +sg291132 +S'1965' +p295294 +sg291134 +S'Dark Totem' +p295295 +sg291136 +g27 +sg291137 +S'Thomas H. Minkler' +p295296 +sa(dp295297 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p295298 +sg291132 +S'1966' +p295299 +sg291134 +S'Assassination' +p295300 +sg291136 +g27 +sg291137 +S'Enrique E. Montenegro' +p295301 +sa(dp295302 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p295303 +sg291132 +S'1966' +p295304 +sg291134 +S'Head' +p295305 +sg291136 +g27 +sg291137 +S'Enrique E. Montenegro' +p295306 +sa(dp295307 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p295308 +sg291132 +S'1966' +p295309 +sg291134 +S'Manikins' +p295310 +sg291136 +g27 +sg291137 +S'Enrique E. Montenegro' +p295311 +sa(dp295312 +g291130 +S'lithograph (stone) in black, light violet-gray, light pink and light yellow on Copperplate Deluxe paper' +p295313 +sg291132 +S'1966' +p295314 +sg291134 +S'Woman on a Crosswalk' +p295315 +sg291136 +g27 +sg291137 +S'Enrique E. Montenegro' +p295316 +sa(dp295317 +g291130 +S'lithograph (aluminum and stone) in pink and green on Copperplate Deluxe paper' +p295318 +sg291132 +S'1968' +p295319 +sg291134 +S'Untitled' +p295320 +sg291136 +g27 +sg291137 +S'Ed Moses' +p295321 +sa(dp295322 +g291130 +S'lithograph (aluminum and stone) in pink and yellow on Copperplate Deluxe paper' +p295323 +sg291132 +S'1968' +p295324 +sg291134 +S'Untitled' +p295325 +sg291136 +g27 +sg291137 +S'Ed Moses' +p295326 +sa(dp295327 +g291130 +S'lithograph (stone and aluminum) in pink and beige on Copperplated Deluxe paper' +p295328 +sg291132 +S'1968' +p295329 +sg291134 +S'Untitled' +p295330 +sg291136 +g27 +sg291137 +S'Ed Moses' +p295331 +sa(dp295332 +g291130 +S'lithograph (zinc and stone) in gray and pink on Copperplate Deluxepaper' +p295333 +sg291132 +S'1968' +p295334 +sg291134 +S'Untitled' +p295335 +sg291136 +g27 +sg291137 +S'Ed Moses' +p295336 +sa(dp295337 +g291130 +S'lithograph (zinc, aluminum and stone) in blended pink, violet, blue and yellow on Copperplate Deluxepaper' +p295338 +sg291132 +S'1968' +p295339 +sg291134 +S'Memorial Edit' +p295340 +sg291136 +g27 +sg291137 +S'Ed Moses' +p295341 +sa(dp295342 +g291130 +S'lithograph (zinc, aluminum and stone) in yellow, two violets, red and pink on Copperplate Deluxe paper' +p295343 +sg291132 +S'1968' +p295344 +sg291134 +S'Untitled (Suite Number 2)' +p295345 +sg291136 +g27 +sg291137 +S'Ed Moses' +p295346 +sa(dp295347 +g291130 +S'lithograph (stone) in two yellows and blue on Copperplate Deluxe paper' +p295348 +sg291132 +S'1968' +p295349 +sg291134 +S'Untitled (Suite Number 2)' +p295350 +sg291136 +g27 +sg291137 +S'Ed Moses' +p295351 +sa(dp295352 +g291130 +S'lithograph (stone) in two yellows and blue on Copperplate Deluxe paper' +p295353 +sg291132 +S'1968' +p295354 +sg291134 +S'Untitled (Suite Number 2)' +p295355 +sg291136 +g27 +sg291137 +S'Ed Moses' +p295356 +sa(dp295357 +g291130 +S'lithograph (stone) in yellow and blended blue and pink on Copperplate Deluxe paper' +p295358 +sg291132 +S'1968' +p295359 +sg291134 +S'Untitled' +p295360 +sg291136 +g27 +sg291137 +S'Ed Moses' +p295361 +sa(dp295362 +g291130 +S'lithograph (stone) in pink and blended blue and yellow on Copperplate Deluxe paper' +p295363 +sg291132 +S'1968' +p295364 +sg291134 +S'Untitled (Suite Number 2)' +p295365 +sg291136 +g27 +sg291137 +S'Ed Moses' +p295366 +sa(dp295367 +g291130 +S'lithograph (stone) in white and blended light yellow, light pink and white on Copperplate Deluxe paper' +p295368 +sg291132 +S'1968' +p295369 +sg291134 +S'Untitled (Suite Number 2)' +p295370 +sg291136 +g27 +sg291137 +S'Ed Moses' +p295371 +sa(dp295372 +g291130 +S'lithograph (stone) in white and blended yellow-gray, pink and light orange on Copperplate Deluxe paper' +p295373 +sg291132 +S'1968' +p295374 +sg291134 +S'Untitled (Suite Number 2)' +p295375 +sg291136 +g27 +sg291137 +S'Ed Moses' +p295376 +sa(dp295377 +g291130 +S'lithograph (stone) in yellow and red on Magnani Italia paper' +p295378 +sg291132 +S'1968' +p295379 +sg291134 +S'Untitled' +p295380 +sg291136 +g27 +sg291137 +S'Ed Moses' +p295381 +sa(dp295382 +g291130 +S'lithograph (stone) in black and yellow on Copperplate Deluxe paper' +p295383 +sg291132 +S'1968' +p295384 +sg291134 +S'Untitled' +p295385 +sg291136 +g27 +sg291137 +S'Ed Moses' +p295386 +sa(dp295387 +g291130 +S'lithograph (aluminum) in blended pink, yellow and blue on Copperplate Deluxe paper' +p295388 +sg291132 +S'1968' +p295389 +sg291134 +S'Untitled' +p295390 +sg291136 +g27 +sg291137 +S'Ed Moses' +p295391 +sa(dp295392 +g291130 +S'lithograph (aluminum) in light yellow, light orange and light yellow-green on Copperplate Deluxe paper' +p295393 +sg291132 +S'1968' +p295394 +sg291134 +S'Untitled' +p295395 +sg291136 +g27 +sg291137 +S'Ed Moses' +p295396 +sa(dp295397 +g291130 +S'lithograph (stone and aluminum) in transparent blue and blue-black on white Arches paper' +p295398 +sg291132 +S'1964/1965' +p295399 +sg291134 +S'Hungry Ghosts (Title Page)' +p295400 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295401 +sa(dp295402 +g291130 +S'portfolio w/ 12 lithographs (stone, aluminum and zinc) including title page and colophon on white and buff Arches paper' +p295403 +sg291132 +S'1964/1965' +p295404 +sg291134 +S'Hungry Ghosts' +p295405 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295406 +sa(dp295407 +g291130 +S'lithograph (aluminum) in black on white Arches paper' +p295408 +sg291132 +S'1964' +p295409 +sg291134 +S'Hungry Ghosts I' +p295410 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295411 +sa(dp295412 +g291130 +S'lithograph (aluminum) in black on white Arches paper' +p295413 +sg291132 +S'1964' +p295414 +sg291134 +S'Hungry Ghosts II' +p295415 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295416 +sa(dp295417 +g291130 +S'lithograph (aluminum) in black on buff Arches paper' +p295418 +sg291132 +S'1964' +p295419 +sg291134 +S'Hungry Ghosts III' +p295420 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295421 +sa(dp295422 +g291130 +S'lithograph (aluminum) in black on buff Arches paper' +p295423 +sg291132 +S'1964' +p295424 +sg291134 +S'Hungry Ghosts IV' +p295425 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295426 +sa(dp295427 +g291130 +S'lithograph (aluminum) in orange, transparent violet and blue on white Arches paper' +p295428 +sg291132 +S'1964' +p295429 +sg291134 +S'Hungry Ghosts V' +p295430 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295431 +sa(dp295432 +g291130 +S'lithograph (aluminum) in black on white Arches paper' +p295433 +sg291132 +S'1964' +p295434 +sg291134 +S'Hungry Ghosts VI' +p295435 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295436 +sa(dp295437 +g291130 +S'lithograph (aluminum) in blue-black on white Arches paper' +p295438 +sg291132 +S'1964' +p295439 +sg291134 +S'Hungry Ghosts VII' +p295440 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295441 +sa(dp295442 +g291130 +S'lithograph (aluminum and zinc) in transparent violet, black and transparent blue-green on white Arches paper' +p295443 +sg291132 +S'1964' +p295444 +sg291134 +S'Hungry Ghosts VIII' +p295445 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295446 +sa(dp295447 +g291130 +S'lithograph (aluminum) in red-black on white Archespaper' +p295448 +sg291132 +S'1964' +p295449 +sg291134 +S'Hungry Ghosts IX' +p295450 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295451 +sa(dp295452 +g291130 +S'lithograph (aluminum) in green-black on white Arches paper' +p295453 +sg291132 +S'1965' +p295454 +sg291134 +S'Hungry Ghosts X' +p295455 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295456 +sa(dp295457 +g291130 +S'lithograph (stone) in pink and violet on white Arches paper' +p295458 +sg291132 +S'1965' +p295459 +sg291134 +S'Hungry Ghosts (Colophon)' +p295460 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295461 +sa(dp295462 +g291130 +S'lithograph (aluminum and stone) in two blacks on white Arches paper' +p295463 +sg291132 +S'1965' +p295464 +sg291134 +S'Fables (Title Page)' +p295465 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295466 +sa(dp295467 +g291130 +S'portfolio w/ 12 lithographs (aluminum and stone), including title page and colophon, in black on white Arches paper' +p295468 +sg291132 +S'1965' +p295469 +sg291134 +S'Fables' +p295470 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295471 +sa(dp295472 +g291130 +S'lithograph (aluminum) in black on white Arches paper' +p295473 +sg291132 +S'1965' +p295474 +sg291134 +S'Fables I' +p295475 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295476 +sa(dp295477 +g291130 +S'lithograph (aluminum) in black on white Arches paper' +p295478 +sg291132 +S'1965' +p295479 +sg291134 +S'Fables II' +p295480 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295481 +sa(dp295482 +g291130 +S'lithograph (aluminum) in black on white Arches paper' +p295483 +sg291132 +S'1965' +p295484 +sg291134 +S'Fables III' +p295485 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295486 +sa(dp295487 +g291130 +S'lithograph (aluminum) in red-black on white Archespaper' +p295488 +sg291132 +S'1965' +p295489 +sg291134 +S'Fables IV' +p295490 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295491 +sa(dp295492 +g291130 +S'lithograph (aluminum) in black on white Arches paper' +p295493 +sg291132 +S'1965' +p295494 +sg291134 +S'Fables V' +p295495 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295496 +sa(dp295497 +g291130 +S'lithograph (aluminum) in black on white Arches paper' +p295498 +sg291132 +S'1965' +p295499 +sg291134 +S'Fables VI' +p295500 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295501 +sa(dp295502 +g291130 +S'lithograph (aluminum) in black on white Arches paper' +p295503 +sg291132 +S'1965' +p295504 +sg291134 +S'Fables VII' +p295505 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295506 +sa(dp295507 +g291130 +S'lithograph (aluminum) in black on white Arches paper' +p295508 +sg291132 +S'1965' +p295509 +sg291134 +S'Fables VIII' +p295510 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295511 +sa(dp295512 +g291130 +S'lithograph (aluminum) in black on white Arches paper' +p295513 +sg291132 +S'1965' +p295514 +sg291134 +S'Fables IX' +p295515 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295516 +sa(dp295517 +g291130 +S'lithograph (stone) black and transparent gray on white Arches paper' +p295518 +sg291132 +S'1965' +p295519 +sg291134 +S'Fables X' +p295520 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295521 +sa(dp295522 +g291130 +S'lithograph (stone) black on white Arches paper' +p295523 +sg291132 +S'1965' +p295524 +sg291134 +S'Fables (Colophon)' +p295525 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295526 +sa(dp295527 +g291130 +S'lithograph (stone) in blue, black and transparent green on white Arches paper' +p295528 +sg291132 +S'1964' +p295529 +sg291134 +S'Sleeping Gypsy' +p295530 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295531 +sa(dp295532 +g291130 +S'lithograph (stone) in black on J. Green paper' +p295533 +sg291132 +S'1964' +p295534 +sg291134 +S'Crayon Country' +p295535 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295536 +sa(dp295537 +g291130 +S'lithograph (stone, zinc and aluminum) in orange, ochre, green-gold and pink on white Arches paper' +p295538 +sg291132 +S'1964' +p295539 +sg291134 +S'Meditations on a Landscape' +p295540 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295541 +sa(dp295542 +g291130 +S'lithograph (stone) in green-black on Crisbrook Waterleaf paper' +p295543 +sg291132 +S'1964' +p295544 +sg291134 +S'Tide Flight' +p295545 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295546 +sa(dp295547 +g291130 +S'lithograph (aluminum) in black on white Arches paper' +p295548 +sg291132 +S'1964' +p295549 +sg291134 +S'Pencil Head' +p295550 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295551 +sa(dp295552 +g291130 +S'lithograph (aluminum) in black on white Arches paper' +p295553 +sg291132 +S'1965' +p295554 +sg291134 +S'Jam Passage' +p295555 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295556 +sa(dp295557 +g291130 +S'lithograph (stone and aluminum) in transparent gray and green-black' +p295558 +sg291132 +S'1964' +p295559 +sg291134 +S'Feathered Presence' +p295560 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295561 +sa(dp295562 +g291130 +S'lithograph (aluminum) in black on white Nacre paper' +p295563 +sg291132 +S'1964' +p295564 +sg291134 +S'Meditations in Thin Air' +p295565 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295566 +sa(dp295567 +g291130 +S'lithograph (aluminum) in black on white Arches paper' +p295568 +sg291132 +S'1964' +p295569 +sg291134 +S'Transfigured Night' +p295570 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295571 +sa(dp295572 +g291130 +S'lithograph (aluminum) in black on white Nacre paper' +p295573 +sg291132 +S'1965' +p295574 +sg291134 +S'Feathered Passage' +p295575 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295576 +sa(dp295577 +g291130 +S'lithograph (stone and aluminum) in two blue-greens, three whites, orange, two yellows and two blues on German Etching paper' +p295578 +sg291132 +S'1969' +p295579 +sg291134 +S'The Wave' +p295580 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295581 +sa(dp295582 +g291130 +S'lithograph (stone and aluminum) in silver and blended white, gray, three violets, three blues and yellow on German Etching paper' +p295583 +sg291132 +S'1969' +p295584 +sg291134 +S'The Mountain' +p295585 +sg291136 +g27 +sg291137 +S'Lee Mullican' +p295586 +sa(dp295587 +g291130 +S'lithograph (aluminum) in green-brown and black' +p295588 +sg291132 +S'1965' +p295589 +sg291134 +S'Untitled' +p295590 +sg291136 +g27 +sg291137 +S'Robert Gray Murray' +p295591 +sa(dp295592 +g291130 +S'lithograph (zinc) in black and gray on buff Archespaper' +p295593 +sg291132 +S'1968' +p295594 +sg291134 +S'Broken Mirror' +p295595 +sg291136 +g27 +sg291137 +S'Kenjilo Nanao' +p295596 +sa(dp295597 +g291130 +S'lithograph (stone) in black on Magnani Italia paper' +p295598 +sg291132 +S'1968' +p295599 +sg291134 +S'Untitled' +p295600 +sg291136 +g27 +sg291137 +S'Kenjilo Nanao' +p295601 +sa(dp295602 +g291130 +S'lithograph in brown' +p295603 +sg291132 +S'1964' +p295604 +sg291134 +S'S. Decatur' +p295605 +sg291136 +g27 +sg291137 +S'Robert Allen Nelson' +p295606 +sa(dp295607 +g291130 +S'lithograph (stone and zinc) in black and red on white Arches paper' +p295608 +sg291132 +S'1963' +p295609 +sg291134 +S'Untitled' +p295610 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295611 +sa(dp295612 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p295613 +sg291132 +S'1963' +p295614 +sg291134 +S'Untitled' +p295615 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295616 +sa(dp295617 +g291130 +S'lithograph (zinc and stone) in brown and black on Rives BFK paper' +p295618 +sg291132 +S'1963' +p295619 +sg291134 +S'Untitled' +p295620 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295621 +sa(dp295622 +g291130 +S'lithograph (zinc) in black on Rives BFK paper' +p295623 +sg291132 +S'1963' +p295624 +sg291134 +S'Untitled' +p295625 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295626 +sa(dp295627 +g291130 +S'lithograph (zinc) in black on Rives BFK paper' +p295628 +sg291132 +S'1963' +p295629 +sg291134 +S'Untitled' +p295630 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295631 +sa(dp295632 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p295633 +sg291132 +S'1963' +p295634 +sg291134 +S'Untitled' +p295635 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295636 +sa(dp295637 +g291130 +S'lithograph (zinc) in black on Rives BFK paper' +p295638 +sg291132 +S'1963' +p295639 +sg291134 +S'Untitled' +p295640 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295641 +sa(dp295642 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p295643 +sg291132 +S'1963' +p295644 +sg291134 +S'Untitled' +p295645 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295646 +sa(dp295647 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p295648 +sg291132 +S'1963' +p295649 +sg291134 +S'Untitled' +p295650 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295651 +sa(dp295652 +g291130 +S'lithograph (zinc and stone) in brown and black on Rives BFK paper' +p295653 +sg291132 +S'1963' +p295654 +sg291134 +S'Untitled' +p295655 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295656 +sa(dp295657 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p295658 +sg291132 +S'1963' +p295659 +sg291134 +S'Untitled' +p295660 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295661 +sa(dp295662 +g291130 +S'lithograph (zinc) in green-black on white Arches paper' +p295663 +sg291132 +S'1963' +p295664 +sg291134 +S'Untitled' +p295665 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295666 +sa(dp295667 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p295668 +sg291132 +S'1963' +p295669 +sg291134 +S'Untitled' +p295670 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295671 +sa(dp295672 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p295673 +sg291132 +S'1963' +p295674 +sg291134 +S'Untitled' +p295675 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295676 +sa(dp295677 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p295678 +sg291132 +S'1963' +p295679 +sg291134 +S'Untitled' +p295680 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295681 +sa(dp295682 +g291130 +S'lithograph (zinc and stone) in blue and brown-black on Rives BFK paper' +p295683 +sg291132 +S'1963' +p295684 +sg291134 +S'Untitled' +p295685 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295686 +sa(dp295687 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p295688 +sg291132 +S'1963' +p295689 +sg291134 +S'Untitled' +p295690 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295691 +sa(dp295692 +g291130 +S'lithograph (stone) in black on white Nacre paper' +p295693 +sg291132 +S'1963' +p295694 +sg291134 +S'Untitled' +p295695 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295696 +sa(dp295697 +g291130 +S'lithograph (stone) in black on white Nacre paper' +p295698 +sg291132 +S'1963' +p295699 +sg291134 +S'Untitled' +p295700 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295701 +sa(dp295702 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p295703 +sg291132 +S'1963' +p295704 +sg291134 +S'Untitled' +p295705 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295706 +sa(dp295707 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p295708 +sg291132 +S'1963' +p295709 +sg291134 +S'Untitled' +p295710 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295711 +sa(dp295712 +g291130 +S'lithograph (stone) in gray and black on Rives BFK paper' +p295713 +sg291132 +S'1963' +p295714 +sg291134 +S'Untitled' +p295715 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295716 +sa(dp295717 +g291130 +S'lithograph (stone and zinc) in black and orange onRives BFK paper' +p295718 +sg291132 +S'1963' +p295719 +sg291134 +S'Untitled' +p295720 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295721 +sa(dp295722 +g291130 +S'lithograph (stone) in black on white Nacre paper' +p295723 +sg291132 +S'1963' +p295724 +sg291134 +S'Untitled' +p295725 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295726 +sa(dp295727 +g291130 +S'lithograph (zinc and stone) in green-beige and violet-black on white Arches paper' +p295728 +sg291132 +S'1963' +p295729 +sg291134 +S'Untitled' +p295730 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295731 +sa(dp295732 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p295733 +sg291132 +S'1963' +p295734 +sg291134 +S'Untitled' +p295735 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295736 +sa(dp295737 +g291130 +S'lithograph (stone) in black on German Etching paper' +p295738 +sg291132 +S'1967' +p295739 +sg291134 +S'Untitled' +p295740 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295741 +sa(dp295742 +g291130 +S'lithograph (stone and zinc) in black and red on two joined sheets of German Etching paper' +p295743 +sg291132 +S'1967' +p295744 +sg291134 +S'Untitled' +p295745 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295746 +sa(dp295747 +g291130 +S'lithograph (stone and aluminum) in black and red on two joined sheets of German Etching paper' +p295748 +sg291132 +S'1967' +p295749 +sg291134 +S'Untitled' +p295750 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295751 +sa(dp295752 +g291130 +S'lithograph (stone) in dark gray on Magnani Italia' +p295753 +sg291132 +S'1967' +p295754 +sg291134 +S'Untitled' +p295755 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295756 +sa(dp295757 +g291130 +S'lithograph (stone and aluminum) in black and red on two joined sheets of Copperplate Deluxe paper' +p295758 +sg291132 +S'1967/1968' +p295759 +sg291134 +S'Untitled' +p295760 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295761 +sa(dp295762 +g291130 +S'lithograph (stone and aluminum) in black and red with collage on three joined sheets of Copperplate Deluxe paper' +p295763 +sg291132 +S'1967' +p295764 +sg291134 +S'Untitled' +p295765 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295766 +sa(dp295767 +g291130 +S'lithograph (stone) in black and red on three joined sheets of German Etching paper' +p295768 +sg291132 +S'1967' +p295769 +sg291134 +S'Untitled' +p295770 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295771 +sa(dp295772 +g291130 +S'lithograph (stone and aluminum) in black and red on three joined sheets of German Etching paper' +p295773 +sg291132 +S'1967' +p295774 +sg291134 +S'Untitled' +p295775 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295776 +sa(dp295777 +g291130 +S'lithograph (stone and zinc) in black and red on three joined sheets of German Etching paper' +p295778 +sg291132 +S'1967' +p295779 +sg291134 +S'Untitled' +p295780 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295781 +sa(dp295782 +g291130 +S'lithograph (stone and aluminum) in black and red on two joined sheets of Magnani Italia paper' +p295783 +sg291132 +S'1967' +p295784 +sg291134 +S'Untitled' +p295785 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295786 +sa(dp295787 +g291130 +S'lithograph (stone) in two blacks on Copperplate Deluxe paper' +p295788 +sg291132 +S'1968' +p295789 +sg291134 +S'Untitled' +p295790 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295791 +sa(dp295792 +g291130 +S'lithograph (stone and zinc) in black and red on two joined sheets of Copperplate Deluxe paper' +p295793 +sg291132 +S'1967' +p295794 +sg291134 +S'Untitled' +p295795 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p295796 +sa(dp295797 +g291130 +S'lithograph (stone) in brown-black on white Arches paper' +p295798 +sg291132 +S'1965' +p295799 +sg291134 +S'Elizabeth' +p295800 +sg291136 +g27 +sg291137 +S'Francis Noel' +p295801 +sa(dp295802 +g291130 +S'lithograph (stone) in two blues and black on RivesBFK paper' +p295803 +sg291132 +S'1961' +p295804 +sg291134 +S'Untitled' +p295805 +sg291136 +g27 +sg291137 +S'Tetsuo Ochikubo' +p295806 +sa(dp295807 +g291130 +S'lithograph (stone) in two yellows, black, gray-brown and dark gray on white Nacre paper' +p295808 +sg291132 +S'1961' +p295809 +sg291134 +S'Untitled' +p295810 +sg291136 +g27 +sg291137 +S'Tetsuo Ochikubo' +p295811 +sa(dp295812 +g291130 +S'lithograph (zinc) in red, black, two beignes and blue on white Nacre paper' +p295813 +sg291132 +S'1961' +p295814 +sg291134 +S'Untitled' +p295815 +sg291136 +g27 +sg291137 +S'Tetsuo Ochikubo' +p295816 +sa(dp295817 +g291130 +S'lithograph (zinc and stone) in two reds, red-brownand two blacks on white Nacre paper' +p295818 +sg291132 +S'1961' +p295819 +sg291134 +S'Untitled' +p295820 +sg291136 +g27 +sg291137 +S'Tetsuo Ochikubo' +p295821 +sa(dp295822 +g291130 +S'lithograph (zinc and stone) in red, white and three blacks on white Nacre paper' +p295823 +sg291132 +S'1961' +p295824 +sg291134 +S'Untitled' +p295825 +sg291136 +g27 +sg291137 +S'Tetsuo Ochikubo' +p295826 +sa(dp295827 +g291130 +S'lithograph (zinc) in blue, two blacks, two reds and dark beige on white Nacre paper' +p295828 +sg291132 +S'1961' +p295829 +sg291134 +S'Untitled' +p295830 +sg291136 +g27 +sg291137 +S'Tetsuo Ochikubo' +p295831 +sa(dp295832 +g291130 +S'lithograph (stone) in violet and two blacks on white Nacre paper' +p295833 +sg291132 +S'1961' +p295834 +sg291134 +S'Untitled' +p295835 +sg291136 +g27 +sg291137 +S'Tetsuo Ochikubo' +p295836 +sa(dp295837 +g291130 +S'lithograph (zinc and stone) in ochre, brown and dark beige on white Nacre paper' +p295838 +sg291132 +S'1961' +p295839 +sg291134 +S'Untitled' +p295840 +sg291136 +g27 +sg291137 +S'Tetsuo Ochikubo' +p295841 +sa(dp295842 +g291130 +S'lithograph (zinc) in two yellow-ochres and black on white Nacre paper' +p295843 +sg291132 +S'1961' +p295844 +sg291134 +S'Untitled' +p295845 +sg291136 +g27 +sg291137 +S'Tetsuo Ochikubo' +p295846 +sa(dp295847 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p295848 +sg291132 +S'1964' +p295849 +sg291134 +S'Head' +p295850 +sg291136 +g27 +sg291137 +S"Thom O'Connor" +p295851 +sa(dp295852 +g291130 +S'lithograph (zinc) in black on natural Nacre paper' +p295853 +sg291132 +S'1964' +p295854 +sg291134 +S'Ezra Pound' +p295855 +sg291136 +g27 +sg291137 +S"Thom O'Connor" +p295856 +sa(dp295857 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p295858 +sg291132 +S'1964' +p295859 +sg291134 +S"Henry's Anne" +p295860 +sg291136 +g27 +sg291137 +S"Thom O'Connor" +p295861 +sa(dp295862 +g291130 +S'lithograph (stone) in black on J. Green paper' +p295863 +sg291132 +S'1964' +p295864 +sg291134 +S'Father Damion' +p295865 +sg291136 +g27 +sg291137 +S"Thom O'Connor" +p295866 +sa(dp295867 +g291130 +S'lithograph (zinc) in black on Rives BFK paper' +p295868 +sg291132 +S'1964' +p295869 +sg291134 +S'Little Head' +p295870 +sg291136 +g27 +sg291137 +S"Thom O'Connor" +p295871 +sa(dp295872 +g291130 +S'lithograph in black and white' +p295873 +sg291132 +S'1963' +p295874 +sg291134 +S'Morning Snow' +p295875 +sg291136 +g27 +sg291137 +S"Thom O'Connor" +p295876 +sa(dp295877 +g291130 +S'lithograph in black and white' +p295878 +sg291132 +S'1963' +p295879 +sg291134 +S'Figure' +p295880 +sg291136 +g27 +sg291137 +S"Thom O'Connor" +p295881 +sa(dp295882 +g291130 +S'lithograph in black and white' +p295883 +sg291132 +S'1963' +p295884 +sg291134 +S'Portal' +p295885 +sg291136 +g27 +sg291137 +S"Thom O'Connor" +p295886 +sa(dp295887 +g291130 +S'lithograph in four colors' +p295888 +sg291132 +S'1963' +p295889 +sg291134 +S'Summer Shower' +p295890 +sg291136 +g27 +sg291137 +S"Thom O'Connor" +p295891 +sa(dp295892 +g291130 +S'lithograph (stone) in black on white Arches paper' +p295893 +sg291132 +S'1963' +p295894 +sg291134 +S'Homage to Carriere' +p295895 +sg291136 +g27 +sg291137 +S'Nathan Oliveira' +p295896 +sa(dp295897 +g291130 +S'lithograph (zinc) in black and dark metallic red-violet on white Arches paper' +p295898 +sg291132 +S'1963' +p295899 +sg291134 +S'Black Christ II' +p295900 +sg291136 +g27 +sg291137 +S'Nathan Oliveira' +p295901 +sa(dp295902 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p295903 +sg291132 +S'1963' +p295904 +sg291134 +S'Black Christ I' +p295905 +sg291136 +g27 +sg291137 +S'Nathan Oliveira' +p295906 +sa(dp295907 +g291130 +S'lithograph (zinc) in black and blue on white Arches paper' +p295908 +sg291132 +S'1963' +p295909 +sg291134 +S'Head and Blue' +p295910 +sg291136 +g27 +sg291137 +S'Nathan Oliveira' +p295911 +sa(dp295912 +g291130 +S'lithograph (stone and zinc) in violet-red, black and ochre on white Arches paper' +p295913 +sg291132 +S'1963' +p295914 +sg291134 +S'Red Chief' +p295915 +sg291136 +g27 +sg291137 +S'Nathan Oliveira' +p295916 +sa(dp295917 +g291130 +S'lithograph (stone and zinc) in blue-black and red on white Arches paper' +p295918 +sg291132 +S'1963' +p295919 +sg291134 +S'November 22, 1963' +p295920 +sg291136 +g27 +sg291137 +S'Nathan Oliveira' +p295921 +sa(dp295922 +g291130 +S'lithograph (stone) in black on white Arches paper' +p295923 +sg291132 +S'1963' +p295924 +sg291134 +S"Georgia O'Keeffe" +p295925 +sg291136 +g27 +sg291137 +S'Nathan Oliveira' +p295926 +sa(dp295927 +g291130 +S'lithograph (stone) in black on white Arches paper' +p295928 +sg291132 +S'1963' +p295929 +sg291134 +S'Man Animal' +p295930 +sg291136 +g27 +sg291137 +S'Nathan Oliveira' +p295931 +sa(dp295932 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p295933 +sg291132 +S'1964' +p295934 +sg291134 +S'White Lady' +p295935 +sg291136 +g27 +sg291137 +S'Nathan Oliveira' +p295936 +sa(dp295937 +g291130 +S'lithograph (zinc) in pink, orange and black on Rives BFK paper' +p295938 +sg291132 +S'1964' +p295939 +sg291134 +S'Head and Shape I' +p295940 +sg291136 +g27 +sg291137 +S'Nathan Oliveira' +p295941 +sa(dp295942 +g291130 +S'lithograph (zinc) in black and orange on white Arches paper' +p295943 +sg291132 +S'1964' +p295944 +sg291134 +S'White Faced Owl I' +p295945 +sg291136 +g27 +sg291137 +S'Nathan Oliveira' +p295946 +sa(dp295947 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p295948 +sg291132 +S'1964' +p295949 +sg291134 +S'Spanish Woman' +p295950 +sg291136 +g27 +sg291137 +S'Nathan Oliveira' +p295951 +sa(dp295952 +g291130 +S'lithograph (zinc) in black on Rives BFK paper' +p295953 +sg291132 +S'1964' +p295954 +sg291134 +S'Variation on a Head I' +p295955 +sg291136 +g27 +sg291137 +S'Nathan Oliveira' +p295956 +sa(dp295957 +g291130 +S'lithograph (zinc) in black on Rives BFK paper' +p295958 +sg291132 +S'1964' +p295959 +sg291134 +S'Variation on a Head IV' +p295960 +sg291136 +g27 +sg291137 +S'Nathan Oliveira' +p295961 +sa(dp295962 +g291130 +S'lithograph (stone) in black on German Etching paper' +p295963 +sg291132 +S'1966' +p295964 +sg291134 +S'Oaxaca' +p295965 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p295966 +sa(dp295967 +g291130 +S'portfolio w/ 14 lithographs (stone, zinc and aluminum) plus title page and colophon on German Etching paper' +p295968 +sg291132 +S'1966' +p295969 +sg291134 +S'Oaxaca' +p295970 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p295971 +sa(dp295972 +g291130 +S'lithograph (zinc and stone) in ochre, light yellow, light blue and brown on German Etching paper' +p295973 +sg291132 +S'1966' +p295974 +sg291134 +S'Oaxaca' +p295975 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p295976 +sa(dp295977 +g291130 +S'lithograph (stone) in black on German Etching paper' +p295978 +sg291132 +S'1966' +p295979 +sg291134 +S'Flight' +p295980 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p295981 +sa(dp295982 +g291130 +S'lithograph (aluminum and stone) in two blues, light red-violet and red on German Etching paper' +p295983 +sg291132 +S'1966' +p295984 +sg291134 +S'Flight' +p295985 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p295986 +sa(dp295987 +g291130 +S'lithograph (stone) in black on German Etching paper' +p295988 +sg291132 +S'1966' +p295989 +sg291134 +S'Eye' +p295990 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p295991 +sa(dp295992 +g291130 +S'lithograph (zinc and stone) in three yellows and orange-brown on German Etching paper' +p295993 +sg291132 +S'1966' +p295994 +sg291134 +S'Eye' +p295995 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p295996 +sa(dp295997 +g291130 +S'lithograph (stone) in black on German Etching paper' +p295998 +sg291132 +S'1966' +p295999 +sg291134 +S'Monte Alban' +p296000 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p296001 +sa(dp296002 +g291130 +S'lithograph (zinc and stone) in red-orange and three reds on German Etching paper' +p296003 +sg291132 +S'1966' +p296004 +sg291134 +S'Monte Alban' +p296005 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p296006 +sa(dp296007 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296008 +sg291132 +S'1966' +p296009 +sg291134 +S'Dance of Life' +p296010 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p296011 +sa(dp296012 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296013 +sg291132 +S'1966' +p296014 +sg291134 +S'Dance of Life' +p296015 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p296016 +sa(dp296017 +g291130 +S'lithograph (zinc and stone) in three blues on German Etching paper' +p296018 +sg291132 +S'1966' +p296019 +sg291134 +S'Dance of Life' +p296020 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p296021 +sa(dp296022 +g291130 +S'lithograph (stone) in red on German Etching paper' +p296023 +sg291132 +S'1966' +p296024 +sg291134 +S'Red Print' +p296025 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p296026 +sa(dp296027 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296028 +sg291132 +S'1966' +p296029 +sg291134 +S'Two' +p296030 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p296031 +sa(dp296032 +g291130 +S'lithograph (zinc and stone) in four yellows on German Etching paper' +p296033 +sg291132 +S'1966' +p296034 +sg291134 +S'Two' +p296035 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p296036 +sa(dp296037 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296038 +sg291132 +S'1966' +p296039 +sg291134 +S'Five' +p296040 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p296041 +sa(dp296042 +g291130 +S'lithograph (zinc and stone) in three blues on German Etching paper' +p296043 +sg291132 +S'1966' +p296044 +sg291134 +S'Five' +p296045 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p296046 +sa(dp296047 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296048 +sg291132 +S'1966' +p296049 +sg291134 +S'Five' +p296050 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p296051 +sa(dp296052 +g291130 +S'lithograph (stone) in two grays on German Etching paper' +p296053 +sg291132 +S'1966' +p296054 +sg291134 +S'Landlock' +p296055 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p296056 +sa(dp296057 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296058 +sg291132 +S'1966' +p296059 +sg291134 +S'Sleep' +p296060 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p296061 +sa(dp296062 +g291130 +S'lithograph (stone) in red and red-orange on GermanEtching paper' +p296063 +sg291132 +S'1966' +p296064 +sg291134 +S'Sleep' +p296065 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p296066 +sa(dp296067 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296068 +sg291132 +S'1966' +p296069 +sg291134 +S'Cue Up' +p296070 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p296071 +sa(dp296072 +g291130 +S'lithograph (aluminum and stone) in yellow, brown-orange and black on German Etching paper' +p296073 +sg291132 +S'1966' +p296074 +sg291134 +S'Cue Up' +p296075 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p296076 +sa(dp296077 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296078 +sg291132 +S'1966' +p296079 +sg291134 +S'Signal' +p296080 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p296081 +sa(dp296082 +g291130 +S'lithograph (zinc and stone) in yellow, ochre and dark brown on German Etching paper' +p296083 +sg291132 +S'1966' +p296084 +sg291134 +S'Signal' +p296085 +sg291136 +g27 +sg291137 +S'George Earl Ortman' +p296086 +sa(dp296087 +g291130 +S'lithograph (aluminum and stone) in yellow, red, blue, and white on German Etching paper' +p296088 +sg291132 +S'1967' +p296089 +sg291134 +S'County Clare, Eire I' +p296090 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296091 +sa(dp296092 +g291130 +S'portfolio w/ 12 color lithographs (aluminum, stoneand zinc) on German Etching paper' +p296093 +sg291132 +S'1967' +p296094 +sg291134 +S'County Clare, Eire' +p296095 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296096 +sa(dp296097 +g291130 +S'lithograph (aluminum and stone) in yellow, red, blue, and white on German Etching paper' +p296098 +sg291132 +S'1967' +p296099 +sg291134 +S'County Clare, Eire II' +p296100 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296101 +sa(dp296102 +g291130 +S'lithograph (aluminum and stone) in yellow, red, blue, and white on German Etching paper' +p296103 +sg291132 +S'1967' +p296104 +sg291134 +S'County Clare, Eire III' +p296105 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296106 +sa(dp296107 +g291130 +S'lithograph (aluminum and stone) in yellow, red, blue, and white on German Etching paper' +p296108 +sg291132 +S'1967' +p296109 +sg291134 +S'County Clare, Eire IV' +p296110 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296111 +sa(dp296112 +g291130 +S'lithograph (aluminum and stone) in four grays on Copperplate Deluxe paper' +p296113 +sg291132 +S'1967' +p296114 +sg291134 +S'County Clare, Eire' +p296115 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296116 +sa(dp296117 +g291130 +S'lithograph (aluminum and stone) in four grays on Copperplate Deluxe' +p296118 +sg291132 +S'1967' +p296119 +sg291134 +S'County Clare, Eire VI' +p296120 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296121 +sa(dp296122 +g291130 +S'lithograph (aluminum and stone) in four grays on Copperplate Deluxe paper' +p296123 +sg291132 +S'1967' +p296124 +sg291134 +S'County Clare, Eire VII' +p296125 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296126 +sa(dp296127 +g291130 +S'lithograph (aluminum and stone) in four grays on Copperplate Deluxe paper' +p296128 +sg291132 +S'1967' +p296129 +sg291134 +S'County Clare, Eire VIII' +p296130 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296131 +sa(dp296132 +g291130 +S'lithograph (zinc and stone) in transparent green, two blues, and brown on German Etching paper' +p296133 +sg291132 +S'1967' +p296134 +sg291134 +S'County Clare, Eire IX' +p296135 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296136 +sa(dp296137 +g291130 +S'lithograph (zinc and stone) in transparent green, two blues, and brown on German Etching paper' +p296138 +sg291132 +S'1967' +p296139 +sg291134 +S'County Clare, Eire X' +p296140 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296141 +sa(dp296142 +g291130 +S'lithograph (zinc and stone) in transparent green, two blues, and brown on German Etching paper' +p296143 +sg291132 +S'1967' +p296144 +sg291134 +S'County Clare, Eire XI' +p296145 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296146 +sa(dp296147 +g291130 +S'lithograph (zinc and stone) in transparent green, two blues, and brown on German Etching paper' +p296148 +sg291132 +S'1967' +p296149 +sg291134 +S'County Clare, Eire XII' +p296150 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296151 +sa(dp296152 +g291130 +S'lithograph (zinc, aluminum and stone) in gray-green, red and red-brown on Rives BFK paper' +p296153 +sg291132 +S'1967' +p296154 +sg291134 +S'Squirrel Monkey' +p296155 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296156 +sa(dp296157 +g291130 +S'lithograph (stone) in black on white Arches paper' +p296158 +sg291132 +S'1967' +p296159 +sg291134 +S'Untitled' +p296160 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296161 +sa(dp296162 +g291130 +S'lithograph (stone and aluminum) in dark brown and blue on Rives BFK paper' +p296163 +sg291132 +S'1967' +p296164 +sg291134 +S'Barbary Ape' +p296165 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296166 +sa(dp296167 +g291130 +S'lithograph (zinc and stone) in orange-yellow, light brown and black on Rives BFK paper' +p296168 +sg291132 +S'1967' +p296169 +sg291134 +S'Proboscis Monkey' +p296170 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296171 +sa(dp296172 +g291130 +S'lithograph (stone) in red-black on Rives BFK paper' +p296173 +sg291132 +S'1967' +p296174 +sg291134 +S'Untitled' +p296175 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296176 +sa(dp296177 +g291130 +S'lithograph (stone) in blue-black on Copperplate Deluxe paper' +p296178 +sg291132 +S'1967' +p296179 +sg291134 +S'Hooray for Hollywood' +p296180 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296181 +sa(dp296182 +g291130 +S'lithograph (stone) in black' +p296183 +sg291132 +S'1967' +p296184 +sg291134 +S'Untitled' +p296185 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296186 +sa(dp296187 +g291130 +S'lithograph (zinc and stone) yellow-beige, blue, black and two browns on Rives BFK paper' +p296188 +sg291132 +S'1967' +p296189 +sg291134 +S'Baboon' +p296190 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296191 +sa(dp296192 +g291130 +S'lithograph (stone) in blue-black on Copperplate Deluxe paper' +p296193 +sg291132 +S'1967' +p296194 +sg291134 +S'Indian Lady III' +p296195 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296196 +sa(dp296197 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p296198 +sg291132 +S'1967' +p296199 +sg291134 +S'Indian Lady I' +p296200 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296201 +sa(dp296202 +g291130 +S'lithograph (aluminum) in black on Copperplate Deluxe paper' +p296203 +sg291132 +S'1967' +p296204 +sg291134 +S'Indian Lady II' +p296205 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296206 +sa(dp296207 +g291130 +S'lithograph (stone) in blue-black on Copperplate Deluxe paper' +p296208 +sg291132 +S'1967' +p296209 +sg291134 +S'Hollywood, Sleeping' +p296210 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296211 +sa(dp296212 +g291130 +S'lithograph (stone) in dark brown on white Nacre paper' +p296213 +sg291132 +S'1967' +p296214 +sg291134 +S'Hollywood' +p296215 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296216 +sa(dp296217 +g291130 +S'lithograph (stone) in brown on Magnani Italia paper' +p296218 +sg291132 +S'1967' +p296219 +sg291134 +S'Hollywood Beach II' +p296220 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296221 +sa(dp296222 +g291130 +S'lithograph (stone) in brown on Magnani Italia paper' +p296223 +sg291132 +S'1967' +p296224 +sg291134 +S'Beach - Hollywood Zoo II' +p296225 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296226 +sa(dp296227 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296228 +sg291132 +S'1967' +p296229 +sg291134 +S'Hollywood Zoo' +p296230 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296231 +sa(dp296232 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p296233 +sg291132 +S'1967' +p296234 +sg291134 +S'Hollywood - Tamarind' +p296235 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296236 +sa(dp296237 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296238 +sg291132 +S'1967' +p296239 +sg291134 +S'Hollywood - Beach III' +p296240 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296241 +sa(dp296242 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296243 +sg291132 +S'1967' +p296244 +sg291134 +S'Hollywood - Sleeping II' +p296245 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296246 +sa(dp296247 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296248 +sg291132 +S'1967' +p296249 +sg291134 +S'Hollywood - Sleeping III' +p296250 +sg291136 +g27 +sg291137 +S'Robert Andrew Parker' +p296251 +sa(dp296252 +g291130 +S'lithograph in black and white' +p296253 +sg291132 +S'1963' +p296254 +sg291134 +S'Tulips' +p296255 +sg291136 +g27 +sg291137 +S'Robert Partin' +p296256 +sa(dp296257 +g291130 +S'lithograph in black, white and buff' +p296258 +sg291132 +S'1963' +p296259 +sg291134 +S'Apple Book' +p296260 +sg291136 +g27 +sg291137 +S'Robert Partin' +p296261 +sa(dp296262 +g291130 +S'lithograph in olive, black and white' +p296263 +sg291132 +S'1963' +p296264 +sg291134 +S'Thunderhead' +p296265 +sg291136 +g27 +sg291137 +S'Robert Partin' +p296266 +sa(dp296267 +g291130 +S'lithograph in gray, blue, black and white' +p296268 +sg291132 +S'1963' +p296269 +sg291134 +S'Acropolis' +p296270 +sg291136 +g27 +sg291137 +S'Robert Partin' +p296271 +sa(dp296272 +g291130 +S'lithograph in black and white' +p296273 +sg291132 +S'1963' +p296274 +sg291134 +S'Arcade' +p296275 +sg291136 +g27 +sg291137 +S'Robert Partin' +p296276 +sa(dp296277 +g291130 +S'lithograph in black and white' +p296278 +sg291132 +S'1963' +p296279 +sg291134 +S'Touch Stone' +p296280 +sg291136 +g27 +sg291137 +S'Robert Partin' +p296281 +sa(dp296282 +g291130 +S'lithograph (zinc) in green-blue on Rives BFK paper' +p296283 +sg291132 +S'1964' +p296284 +sg291134 +S'Rime of the Ancient Mariner' +p296285 +sg291136 +g27 +sg291137 +S'Henry C. Pearson' +p296286 +sa(dp296287 +g291130 +S'portfolio with 59 lithographs: 14 ill., title page, colophon, 35 pages of text, 7 pgs. of roman numerals, chemise lining on Rives BFK paper' +p296288 +sg291132 +S'1964' +p296289 +sg291134 +S'Coleridge\'s "Rime of the Ancient Mariner"' +p296290 +sg291136 +g27 +sg291137 +S'Henry C. Pearson' +p296291 +sa(dp296292 +g291130 +S'lithograph (zinc) in violet and black on Rives BFKpaper' +p296293 +sg291132 +S'1964' +p296294 +sg291134 +S'Rime of the Ancient Mariner' +p296295 +sg291136 +g27 +sg291137 +S'Henry C. Pearson' +p296296 +sa(dp296297 +g291130 +S'lithograph (zinc) in yellow on Rives BFK paper' +p296298 +sg291132 +S'1964' +p296299 +sg291134 +S'Rime of the Ancient Mariner' +p296300 +sg291136 +g27 +sg291137 +S'Henry C. Pearson' +p296301 +sa(dp296302 +g291130 +S'lithograph (zinc) in brown-orange and light blue on Rives BFK paper' +p296303 +sg291132 +S'1964' +p296304 +sg291134 +S'"All in a hot and copper sky"' +p296305 +sg291136 +g27 +sg291137 +S'Henry C. Pearson' +p296306 +sa(dp296307 +g291130 +S'lithograph (zinc) in red-orange on Rives BFK paper' +p296308 +sg291132 +S'1964' +p296309 +sg291134 +S'"Almost upon the western wave Rested the broad bright Sun"' +p296310 +sg291136 +g27 +sg291137 +S'Henry C. Pearson' +p296311 +sa(dp296312 +g291130 +S'lithograph (zinc) in red, black and gray' +p296313 +sg291132 +S'1964' +p296314 +sg291134 +S'Rime of the Ancient Mariner' +p296315 +sg291136 +g27 +sg291137 +S'Henry C. Pearson' +p296316 +sa(dp296317 +g291130 +S'lithograph (zinc) in light brown on Rives BFK paper' +p296318 +sg291132 +S'1964' +p296319 +sg291134 +S'"As is the ribbed sea-sand"' +p296320 +sg291136 +g27 +sg291137 +S'Henry C. Pearson' +p296321 +sa(dp296322 +g291130 +S'lithograph (zinc) in yellow and black on Rives BFKpaper' +p296323 +sg291132 +S'1964' +p296324 +sg291134 +S'Rime of the Ancient Mariner' +p296325 +sg291136 +g27 +sg291137 +S'Henry C. Pearson' +p296326 +sa(dp296327 +g291130 +S'lithograph (zinc) in light brown-gray on Rives BFKpaper' +p296328 +sg291132 +S'1964' +p296329 +sg291134 +S'Rime of the Ancient Mariner' +p296330 +sg291136 +g27 +sg291137 +S'Henry C. Pearson' +p296331 +sa(dp296332 +g291130 +S'lithograph (zinc) in pink and gray on Rives BFK paper' +p296333 +sg291132 +S'1964' +p296334 +sg291134 +S'"For when it dawned - they dropped their arms, and clustered round the mast"' +p296335 +sg291136 +g27 +sg291137 +S'Henry C. Pearson' +p296336 +sa(dp296337 +g291130 +S'lithograph (zinc) in blue-green on Rives BFK paper' +p296338 +sg291132 +S'1964' +p296339 +sg291134 +S'"I viewed the ocean green, And looked far forth, yet little saw"' +p296340 +sg291136 +g27 +sg291137 +S'Henry C. Pearson' +p296341 +sa(dp296342 +g291130 +S'lithograph (zinc) in blue, red and black on Rives BFK paper' +p296343 +sg291132 +S'1964' +p296344 +sg291134 +S'"Full many shapes, that shadows were, in crimson colours came"' +p296345 +sg291136 +g27 +sg291137 +S'Henry C. Pearson' +p296346 +sa(dp296347 +g291130 +S'lithograph (zinc) in green on Rives BFK paper' +p296348 +sg291132 +S'1964' +p296349 +sg291134 +S'Rime of the Ancient Mariner' +p296350 +sg291136 +g27 +sg291137 +S'Henry C. Pearson' +p296351 +sa(dp296352 +g291130 +S'lithograph (zinc) in yellow, light violet and black on Rives BFK paper' +p296353 +sg291132 +S'1964' +p296354 +sg291134 +S'Rime of the Ancient Mariner' +p296355 +sg291136 +g27 +sg291137 +S'Henry C. Pearson' +p296356 +sa(dp296357 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p296358 +sg291132 +S'1964' +p296359 +sg291134 +S'Study for Albatross' +p296360 +sg291136 +g27 +sg291137 +S'Henry C. Pearson' +p296361 +sa(dp296362 +g291130 +S'lithograph (zinc) in black on Rives BFK paper' +p296363 +sg291132 +S'1964' +p296364 +sg291134 +S'Untitled' +p296365 +sg291136 +g27 +sg291137 +S'Henry C. Pearson' +p296366 +sa(dp296367 +g291130 +S'lithograph (zinc) in yellow and black on Rives BFKpaper' +p296368 +sg291132 +S'1964' +p296369 +sg291134 +S'Coleridge Poem I' +p296370 +sg291136 +g27 +sg291137 +S'Henry C. Pearson' +p296371 +sa(dp296372 +g291130 +S'lithograph (zinc) in red and black' +p296373 +sg291132 +S'1964' +p296374 +sg291134 +S'Untitled' +p296375 +sg291136 +g27 +sg291137 +S'Henry C. Pearson' +p296376 +sa(dp296377 +g291130 +S'lithograph (zinc) in red on Rives BFK paper' +p296378 +sg291132 +S'1964' +p296379 +sg291134 +S'Part III' +p296380 +sg291136 +g27 +sg291137 +S'Henry C. Pearson' +p296381 +sa(dp296382 +g291130 +S'lithograph (zinc) in red and blue on Rives BFK paper' +p296383 +sg291132 +S'1964' +p296384 +sg291134 +S'Untitled' +p296385 +sg291136 +g27 +sg291137 +S'Henry C. Pearson' +p296386 +sa(dp296387 +g291130 +S'lithograph (stone) in violet-gray, blue and green-yellow on German Etching paper' +p296388 +sg291132 +S'1968' +p296389 +sg291134 +S'Untitled' +p296390 +sg291136 +g27 +sg291137 +S'John Pearson' +p296391 +sa(dp296392 +g291130 +S'lithograph (stone) in light violet, light yellow-green and light blue-green on Rives BFK paper' +p296393 +sg291132 +S'1968' +p296394 +sg291134 +S'Untitled' +p296395 +sg291136 +g27 +sg291137 +S'John Pearson' +p296396 +sa(dp296397 +g291130 +S'lithograph (aluminum) in two yellows, gray-brown, dark pink and beige on buff Arches paper' +p296398 +sg291132 +S'1970' +p296399 +sg291134 +S'Untitled' +p296400 +sg291136 +g27 +sg291137 +S'William Pettet' +p296401 +sa(dp296402 +g291130 +S'lithograph (aluminum) in light green, red, gray-blue, green-yellow and red-brown on cream Copperplate Deluxe' +p296403 +sg291132 +S'1970' +p296404 +sg291134 +S'Untitled' +p296405 +sg291136 +g27 +sg291137 +S'William Pettet' +p296406 +sa(dp296407 +g291130 +S'lithograph (stone) in orange and blended light violet, yellow and two reds on white Arches paper' +p296408 +sg291132 +S'1970' +p296409 +sg291134 +S'Untitled' +p296410 +sg291136 +g27 +sg291137 +S'William Pettet' +p296411 +sa(dp296412 +g291130 +S'lithograph (aluminum) in two violets, light red, green and pink on German Etching paper' +p296413 +sg291132 +S'1970' +p296414 +sg291134 +S'Untitled' +p296415 +sg291136 +g27 +sg291137 +S'William Pettet' +p296416 +sa(dp296417 +g291130 +S'lithograph (aluminum) in two violets, orange, green and orange-red on German Etching paper' +p296418 +sg291132 +S'1970' +p296419 +sg291134 +S'Untitled' +p296420 +sg291136 +g27 +sg291137 +S'William Pettet' +p296421 +sa(dp296422 +g291130 +S'lithograph (aluminum) in two violets, light red, green and pink on German Etching paper' +p296423 +sg291132 +S'1970' +p296424 +sg291134 +S'Untitled' +p296425 +sg291136 +g27 +sg291137 +S'William Pettet' +p296426 +sa(dp296427 +g291130 +S'lithograph (aluminum) in two violets, light red, green and pink on German Etching paper' +p296428 +sg291132 +S'1970' +p296429 +sg291134 +S'Untitled' +p296430 +sg291136 +g27 +sg291137 +S'William Pettet' +p296431 +sa(dp296432 +g291130 +S'lithograph (aluminum) in two violets, light red, green and pink on German Etching paper' +p296433 +sg291132 +S'1970' +p296434 +sg291134 +S'Untitled' +p296435 +sg291136 +g27 +sg291137 +S'William Pettet' +p296436 +sa(dp296437 +g291130 +S'lithograph (aluminum) in two violets, orange, green and orange-red on German Etching paper' +p296438 +sg291132 +S'1970' +p296439 +sg291134 +S'Untitled' +p296440 +sg291136 +g27 +sg291137 +S'William Pettet' +p296441 +sa(dp296442 +g291130 +S'lithograph (aluminum) in light blue, green, violet-pink, two yellows and violet-brown on J. Green paper' +p296443 +sg291132 +S'1970' +p296444 +sg291134 +S'Untitled' +p296445 +sg291136 +g27 +sg291137 +S'William Pettet' +p296446 +sa(dp296447 +g291130 +S'lithograph (aluminum) in red, two red-browns, yellow-green and blue on Rives BFK paper' +p296448 +sg291132 +S'1970' +p296449 +sg291134 +S'Untitled' +p296450 +sg291136 +g27 +sg291137 +S'William Pettet' +p296451 +sa(dp296452 +g291130 +S'lithograph (stone) in blue-black on uncalendered Rives paper' +p296453 +sg291132 +S'1970' +p296454 +sg291134 +S'Untitled' +p296455 +sg291136 +g27 +sg291137 +S'William Pettet' +p296456 +sa(dp296457 +g291130 +S'lithograph (aluminum) in black on white Arches paper' +p296458 +sg291132 +S'1965' +p296459 +sg291134 +S'Custom Print #1' +p296460 +sg291136 +g27 +sg291137 +S'Peter Phillips' +p296461 +sa(dp296462 +g291130 +S'lithograph (aluminum and stone) in blended two oranges, two reds, yellow, yellow-green, blue, violet, red-violet and black on calendered Rives paper' +p296463 +sg291132 +S'1969' +p296464 +sg291134 +S'Title Page' +p296465 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296466 +sa(dp296467 +g291130 +S'lithograph (aluminum and stone) in black and yellow on calendered Rives paper' +p296468 +sg291132 +S'1969' +p296469 +sg291134 +S'Table of Contents' +p296470 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296471 +sa(dp296472 +g291130 +S'lithograph (aluminum) in black on calendered Rivespaper' +p296473 +sg291132 +S'1969' +p296474 +sg291134 +S'Flying' +p296475 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296476 +sa(dp296477 +g291130 +S'lithograph (aluminum) in black on calendered Rivespaper' +p296478 +sg291132 +S'1969' +p296479 +sg291134 +S'Looping' +p296480 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296481 +sa(dp296482 +g291130 +S'lithograph (aluminum) in black on calendered Rivespaper' +p296483 +sg291132 +S'1969' +p296484 +sg291134 +S'Manned Helium Sculpture' +p296485 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296486 +sa(dp296487 +g291130 +S'lithograph (aluminum) in black on calendered Rivespaper' +p296488 +sg291132 +S'1969' +p296489 +sg291134 +S'Y-O-U' +p296490 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296491 +sa(dp296492 +g291130 +S'lithograph (stone) in black on calendered Rives paper' +p296493 +sg291132 +S'1969' +p296494 +sg291134 +S'People People 1' +p296495 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296496 +sa(dp296497 +g291130 +S'lithograph (stone) in black on calendered Rives paper' +p296498 +sg291132 +S'1969' +p296499 +sg291134 +S'People People 2' +p296500 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296501 +sa(dp296502 +g291130 +S'lithograph (aluminum) in black on aluminum Fasson foil on calendered Rives paper' +p296503 +sg291132 +S'1969' +p296504 +sg291134 +S'Clouds on Silver 1' +p296505 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296506 +sa(dp296507 +g291130 +S'lithograph (aluminum) in black on aluminum Fasson foil on calendered Rives paper' +p296508 +sg291132 +S'1969' +p296509 +sg291134 +S'Clouds on Silver 2' +p296510 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296511 +sa(dp296512 +g291130 +S'lithograph (aluminum) in blue and black on calendered Rives paper' +p296513 +sg291132 +S'1969' +p296514 +sg291134 +S'New York Mirage' +p296515 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296516 +sa(dp296517 +g291130 +S'lithograph (aluminum) in black on calendered Rivespaper' +p296518 +sg291132 +S'1969' +p296519 +sg291134 +S'In and Over Mardi Gras' +p296520 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296521 +sa(dp296522 +g291130 +S'lithograph (aluminum) in black on calendered Rivespaper' +p296523 +sg291132 +S'1969' +p296524 +sg291134 +S'A Sequence of Equilibrium' +p296525 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296526 +sa(dp296527 +g291130 +S'lithograph (aluminum) in black on calendered Rivespaper' +p296528 +sg291132 +S'1969' +p296529 +sg291134 +S'Campus' +p296530 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296531 +sa(dp296532 +g291130 +S'lithograph (stone) in black on calendered Rives paper' +p296533 +sg291132 +S'1969' +p296534 +sg291134 +S'Imagine a City Below' +p296535 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296536 +sa(dp296537 +g291130 +S'lithograph (stone) in black on calendered Rives paper' +p296538 +sg291132 +S'1969' +p296539 +sg291134 +S'Imagine a City Below by Night' +p296540 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296541 +sa(dp296542 +g291130 +S'lithograph (aluminum) in black on calendered Rivespaper' +p296543 +sg291132 +S'1969' +p296544 +sg291134 +S'Mt. St. Michel and Above' +p296545 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296546 +sa(dp296547 +g291130 +S'lithograph (stone) in light blue on calendered Rives paper' +p296548 +sg291132 +S'1969' +p296549 +sg291134 +S'Theater in the Sky' +p296550 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296551 +sa(dp296552 +g291130 +S'lithograph (aluminum) in black on calendered Rivespaper' +p296553 +sg291132 +S'1969' +p296554 +sg291134 +S'Plain Sky Flower' +p296555 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296556 +sa(dp296557 +g291130 +S'lithograph (stone) in black on calendered Rives paper' +p296558 +sg291132 +S'1969' +p296559 +sg291134 +S'Boston Harbor Project' +p296560 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296561 +sa(dp296562 +g291130 +S'lithograph (aluminum and stone) in red-orange and black on calendered Rives paper' +p296563 +sg291132 +S'1969' +p296564 +sg291134 +S'Black Sun' +p296565 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296566 +sa(dp296567 +g291130 +S'lithograph (stone) in blended two violets, blue, three greens, yellow, orange and two reds on calendered paper' +p296568 +sg291132 +S'1969' +p296569 +sg291134 +S'Migrant Apparition' +p296570 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296571 +sa(dp296572 +g291130 +S'lithograph (aluminum and stone) in black and blue on calendered Rives paper' +p296573 +sg291132 +S'1969' +p296574 +sg291134 +S'Light Night' +p296575 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296576 +sa(dp296577 +g291130 +S'lithograph (aluminum) in black and yellow on calendered Rives paper' +p296578 +sg291132 +S'1969' +p296579 +sg291134 +S'Flaming Rainbow' +p296580 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296581 +sa(dp296582 +g291130 +S'lithograph (aluminum) in violet on calendered Rives paper' +p296583 +sg291132 +S'1969' +p296584 +sg291134 +S'Colophon with California Grapes' +p296585 +sg291136 +g27 +sg291137 +S'Otto Piene' +p296586 +sa(dp296587 +g291130 +S'lithograph (stone) in two yellows on German Etching paper' +p296588 +sg291132 +S'1967' +p296589 +sg291134 +S'Study for a Seal' +p296590 +sg291136 +g27 +sg291137 +S'Gio Pomodoro' +p296591 +sa(dp296592 +g291130 +S'portfolio with 14 lithographs (stone, aluminum, and zinc) on German etching paper' +p296593 +sg291132 +S'1967' +p296594 +sg291134 +S'Tamarind Squares' +p296595 +sg291136 +g27 +sg291137 +S'Gio Pomodoro' +p296596 +sa(dp296597 +g291130 +S'lithograph (aluminum and stone) in red and black on German Etching paper' +p296598 +sg291132 +S'1967' +p296599 +sg291134 +S'Black Seal' +p296600 +sg291136 +g27 +sg291137 +S'Gio Pomodoro' +p296601 +sa(dp296602 +g291130 +S'lithograph (stone and aluminum) in brown, red and black' +p296603 +sg291132 +S'1967' +p296604 +sg291134 +S'White Seal' +p296605 +sg291136 +g27 +sg291137 +S'Gio Pomodoro' +p296606 +sa(dp296607 +g291130 +S'lithograph (stone and aluminum) in three yellows and black on German Etching paper' +p296608 +sg291132 +S'1967' +p296609 +sg291134 +S'Square Against the Light' +p296610 +sg291136 +g27 +sg291137 +S'Gio Pomodoro' +p296611 +sa(dp296612 +g291130 +S'lithograph (stone and aluminum) in yellow, black and orange on German Etching paper' +p296613 +sg291132 +S'1967' +p296614 +sg291134 +S'Yellow Spiral' +p296615 +sg291136 +g27 +sg291137 +S'Gio Pomodoro' +p296616 +sa(dp296617 +g291130 +S'lithograph (stone and aluminum) in red and green on German Etching paper' +p296618 +sg291132 +S'1967' +p296619 +sg291134 +S'Double Green Seal' +p296620 +sg291136 +g27 +sg291137 +S'Gio Pomodoro' +p296621 +sa(dp296622 +g291130 +S'lithograph (stone and aluminum) in red and pink onGerman Etching paper' +p296623 +sg291132 +S'1967' +p296624 +sg291134 +S'Double Pink Seal' +p296625 +sg291136 +g27 +sg291137 +S'Gio Pomodoro' +p296626 +sa(dp296627 +g291130 +S'lithograph (aluminum and stone) in blue, silver and black on German Etching paper' +p296628 +sg291132 +S'1967' +p296629 +sg291134 +S'Blue Seal I' +p296630 +sg291136 +g27 +sg291137 +S'Gio Pomodoro' +p296631 +sa(dp296632 +g291130 +S'lithograph (aluminum and stone) in blue and black on German Etching paper' +p296633 +sg291132 +S'1967' +p296634 +sg291134 +S'Blue Seal II' +p296635 +sg291136 +g27 +sg291137 +S'Gio Pomodoro' +p296636 +sa(dp296637 +g291130 +S'lithograph (stone and aluminum) in two yellows on German Etching paper' +p296638 +sg291132 +S'1967' +p296639 +sg291134 +S'Four Squares' +p296640 +sg291136 +g27 +sg291137 +S'Gio Pomodoro' +p296641 +sa(dp296642 +g291130 +S'lithograph (stone and aluminum) in black and red on German Etching paper and yellow on acetate' +p296643 +sg291132 +S'1967' +p296644 +sg291134 +S'Male and Female Seal I' +p296645 +sg291136 +g27 +sg291137 +S'Gio Pomodoro' +p296646 +sa(dp296647 +g291130 +S'lithograph (stone and aluminum) in yellow and red on Copperplate Deluxe paper and yellow-orange on acetate' +p296648 +sg291132 +S'1967' +p296649 +sg291134 +S'Male and Female Seal II' +p296650 +sg291136 +g27 +sg291137 +S'Gio Pomodoro' +p296651 +sa(dp296652 +g291130 +S'lithograph (stone and zinc) in red and silver on German Etching paper' +p296653 +sg291132 +S'1967' +p296654 +sg291134 +S'Double Red Spiral' +p296655 +sg291136 +g27 +sg291137 +S'Gio Pomodoro' +p296656 +sa(dp296657 +g291130 +S'lithograph (stone) in violet and brown on German Etching paper' +p296658 +sg291132 +S'1967' +p296659 +sg291134 +S'Four Circles I' +p296660 +sg291136 +g27 +sg291137 +S'Gio Pomodoro' +p296661 +sa(dp296662 +g291130 +S'lithograph (stone) in red-black on white Arches paper' +p296663 +sg291132 +S'1965' +p296664 +sg291134 +S'Out-In' +p296665 +sg291136 +g27 +sg291137 +S'Gio Pomodoro' +p296666 +sa(dp296667 +g291130 +S'lithograph (aluminum) in blue, red and pink on German Etching paper' +p296668 +sg291132 +S'1970' +p296669 +sg291134 +S"Mr. Huff's Teeth in the Articulator" +p296670 +sg291136 +g27 +sg291137 +S'Clayton Pond' +p296671 +sa(dp296672 +g291130 +S'lithograph (aluminum) in black on buff Arches paper' +p296673 +sg291132 +S'1970' +p296674 +sg291134 +S"Mr. Huff's Teeth in the Articulator" +p296675 +sg291136 +g27 +sg291137 +S'Clayton Pond' +p296676 +sa(dp296677 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296678 +sg291132 +S'1970' +p296679 +sg291134 +S'Nude in the Dentist Chair' +p296680 +sg291136 +g27 +sg291137 +S'Clayton Pond' +p296681 +sa(dp296682 +g291130 +S'lithograph (aluminum and stone) in violet, green, red and two blues on Rives BFK paper' +p296683 +sg291132 +S'1968' +p296684 +sg291134 +S'Frog Cup' +p296685 +sg291136 +g27 +sg291137 +S'Kenneth Price' +p296686 +sa(dp296687 +g291130 +S'lithograph (aluminum and stone) in green, red, gray, blue, light orange and violet on German Etchingpaper' +p296688 +sg291132 +S'1968' +p296689 +sg291134 +S'Acrobatic Frog Cup' +p296690 +sg291136 +g27 +sg291137 +S'Kenneth Price' +p296691 +sa(dp296692 +g291130 +S'lithograph (aluminum and stone) in yellow, red, black and green on Copperplate Deluxe paper' +p296693 +sg291132 +S'1968' +p296694 +sg291134 +S'Jivaroland Frog Cup' +p296695 +sg291136 +g27 +sg291137 +S'Kenneth Price' +p296696 +sa(dp296697 +g291130 +S'lithograph (aluminum and stone) in violet, yellow,red and blue on Copperplate Deluxe paper' +p296698 +sg291132 +S'1968' +p296699 +sg291134 +S'Double Frog Cup' +p296700 +sg291136 +g27 +sg291137 +S'Kenneth Price' +p296701 +sa(dp296702 +g291130 +S'lithograph (aluminum and stone) in yellow, black, blue-gray, red and blue on Copperplate Deluxe paper' +p296703 +sg291132 +S'1968' +p296704 +sg291134 +S'Frog Cup' +p296705 +sg291136 +g27 +sg291137 +S'Kenneth Price' +p296706 +sa(dp296707 +g291130 +S'lithograph (aluminum) in green and blended gray, pink, red and black on German Etching paper' +p296708 +sg291132 +S'1969' +p296709 +sg291134 +S'Acrobatic Frog Cup II' +p296710 +sg291136 +g27 +sg291137 +S'Kenneth Price' +p296711 +sa(dp296712 +g291130 +S'lithograph (aluminum) in black on Copperplate Deluxe paper' +p296713 +sg291132 +S'1968' +p296714 +sg291134 +S'Cup Gets the Worm' +p296715 +sg291136 +g27 +sg291137 +S'Kenneth Price' +p296716 +sa(dp296717 +g291130 +S'lithograph (stone) in brown on Copperplate Deluxe paper' +p296718 +sg291132 +S'1968' +p296719 +sg291134 +S'Turtle Cup' +p296720 +sg291136 +g27 +sg291137 +S'Kenneth Price' +p296721 +sa(dp296722 +g291130 +S'lithograph (stone) in blue and brown on German Etching paper' +p296723 +sg291132 +S'1969' +p296724 +sg291134 +S'Sea Turtle Cup' +p296725 +sg291136 +g27 +sg291137 +S'Kenneth Price' +p296726 +sa(dp296727 +g291130 +S'(artist)' +p296728 +sg291132 +S'\n' +p296729 +sg291134 +S'Untitled' +p296730 +sg291136 +g27 +sg291137 +S'Artist Information (' +p296731 +sa(dp296732 +g291130 +S'lithograph (stone and zinc) in blue-gray, dark blue and transparent beige on white Arches paper' +p296733 +sg291132 +S'1965' +p296734 +sg291134 +S'Landscape' +p296735 +sg291136 +g27 +sg291137 +S'Krishna N. Reddy' +p296736 +sa(dp296737 +g291130 +S'portfolio of six lithographs with title page and colophon on German Etching paper, with cover of white Nacre' +p296738 +sg291132 +S'1966' +p296739 +sg291134 +S'e.g.a.' +p296740 +sg291136 +g27 +sg291137 +S'Jesse Reichek' +p296741 +sa(dp296742 +g291130 +S'portfolio of six lithographs with title page and colophon on German Etching paper, with white Nacre cover' +p296743 +sg291132 +S'1966' +p296744 +sg291134 +S'e.g.b.' +p296745 +sg291136 +g27 +sg291137 +S'Jesse Reichek' +p296746 +sa(dp296747 +g291130 +S'portfolio with 24 lithographs (stone) in black with title page and colophon on German Etching paper' +p296748 +sg291132 +S'1966' +p296749 +sg291134 +S'Homage to Kandinsky' +p296750 +sg291136 +g27 +sg291137 +S'Jesse Reichek' +p296751 +sa(dp296752 +g291130 +S'portfolio with 24 lithographs (stone) in yellow with title page and colophon' +p296753 +sg291132 +S'1966' +p296754 +sg291134 +S'Hommage a Klee' +p296755 +sg291136 +g27 +sg291137 +S'Jesse Reichek' +p296756 +sa(dp296757 +g291130 +S'portfolio w/ 24 lithographs (stone) in red and black with title page and colophon on Copperplate Deluxe paper' +p296758 +sg291132 +S'1966' +p296759 +sg291134 +S'Hommage a Mondrian' +p296760 +sg291136 +g27 +sg291137 +S'Jesse Reichek' +p296761 +sa(dp296762 +g291130 +S'lithograph (stone) in black on white Arches paper' +p296763 +sg291132 +S'1965' +p296764 +sg291134 +S'Untitled' +p296765 +sg291136 +g27 +sg291137 +S'Jesse Reichek' +p296766 +sa(dp296767 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296768 +sg291132 +S'1966' +p296769 +sg291134 +S'Untitled' +p296770 +sg291136 +g27 +sg291137 +S'Jesse Reichek' +p296771 +sa(dp296772 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296773 +sg291132 +S'1966' +p296774 +sg291134 +S'Untitled' +p296775 +sg291136 +g27 +sg291137 +S'Jesse Reichek' +p296776 +sa(dp296777 +g291130 +S'lithograph (stone and zinc) in orange and yellow on German Etching paper' +p296778 +sg291132 +S'1966' +p296779 +sg291134 +S'Untitled' +p296780 +sg291136 +g27 +sg291137 +S'Jesse Reichek' +p296781 +sa(dp296782 +g291130 +S'lithograph (aluminum) in black on German Etching paper' +p296783 +sg291132 +S'1966' +p296784 +sg291134 +S'Untitled' +p296785 +sg291136 +g27 +sg291137 +S'Jesse Reichek' +p296786 +sa(dp296787 +g291130 +S'lithograph (stone) in orange and black on German Etching paper' +p296788 +sg291132 +S'1966' +p296789 +sg291134 +S'Untitled' +p296790 +sg291136 +g27 +sg291137 +S'Jesse Reichek' +p296791 +sa(dp296792 +g291130 +S'lithograph (zinc) in black on Copperplate Deluxe paper' +p296793 +sg291132 +S'1966' +p296794 +sg291134 +S'Untitled' +p296795 +sg291136 +g27 +sg291137 +S'Jesse Reichek' +p296796 +sa(dp296797 +g291130 +S'lithograph (zinc) in red and black on German Etching paper' +p296798 +sg291132 +S'1966' +p296799 +sg291134 +S'Untitled' +p296800 +sg291136 +g27 +sg291137 +S'Jesse Reichek' +p296801 +sa(dp296802 +g291130 +S'lithograph (stone and aluminum) in red and black on German Etching paper' +p296803 +sg291132 +S'1966' +p296804 +sg291134 +S'Untitled' +p296805 +sg291136 +g27 +sg291137 +S'Jesse Reichek' +p296806 +sa(dp296807 +g291130 +S'lithograph (stone) in yellow and black on German Etching paper' +p296808 +sg291132 +S'1966' +p296809 +sg291134 +S'Untitled' +p296810 +sg291136 +g27 +sg291137 +S'Jesse Reichek' +p296811 +sa(dp296812 +g291130 +S'lithograph (zinc) in red-brown and white, embossedon Rives BFK paper' +p296813 +sg291132 +S'1969' +p296814 +sg291134 +S'Untitled' +p296815 +sg291136 +g27 +sg291137 +S'Charles Obert Ringness' +p296816 +sa(dp296817 +g291130 +S'lithograph (aluminum and zinc) in gray, orange, violet and orange-yellow on Rives BFK paper' +p296818 +sg291132 +S'1969' +p296819 +sg291134 +S'Untitled' +p296820 +sg291136 +g27 +sg291137 +S'Charles Obert Ringness' +p296821 +sa(dp296822 +g291130 +S'lithograph (aluminum) in yellow-white on white Nacre paper' +p296823 +sg291132 +S'1968' +p296824 +sg291134 +S'Sample' +p296825 +sg291136 +g27 +sg291137 +S'Robert Rogers' +p296826 +sa(dp296827 +g291130 +S'lithograph (aluminum) in yellow, green and pink-gray on German Etching paper' +p296828 +sg291132 +S'1968' +p296829 +sg291134 +S'Hard Edge Image at Least 22" x 30" in Size' +p296830 +sg291136 +g27 +sg291137 +S'Robert Rogers' +p296831 +sa(dp296832 +g291130 +S'lithograph (stone) in blue-black and orange on Copperplate Deluxe paper' +p296833 +sg291132 +S'1968' +p296834 +sg291134 +S'L.A. 737' +p296835 +sg291136 +g27 +sg291137 +S'Robert Rogers' +p296836 +sa(dp296837 +g291130 +S'lithograph (aluminum and stone) in blue, brown andgray on German Etching paper' +p296838 +sg291132 +S'1968' +p296839 +sg291134 +S'Untitled' +p296840 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296841 +sa(dp296842 +g291130 +S'lithograph (aluminum and stone) in two browns and yellow on German Etching paper' +p296843 +sg291132 +S'1968' +p296844 +sg291134 +S'Untitled' +p296845 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296846 +sa(dp296847 +g291130 +S'lithograph (aluminum and stone) in red, blue, green, brown and black on German Etching paper' +p296848 +sg291132 +S'1968' +p296849 +sg291134 +S'Untitled' +p296850 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296851 +sa(dp296852 +g291130 +S'lithograph (aluminum and stone) in light red-brownand black on German Etching paper' +p296853 +sg291132 +S'1968' +p296854 +sg291134 +S'Untitled' +p296855 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296856 +sa(dp296857 +g291130 +S'lithograph (aluminum and stone) in green and blackon German Etching paper' +p296858 +sg291132 +S'1968' +p296859 +sg291134 +S'Untitled' +p296860 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296861 +sa(dp296862 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296863 +sg291132 +S'1968' +p296864 +sg291134 +S'Untitled' +p296865 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296866 +sa(dp296867 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296868 +sg291132 +S'1968' +p296869 +sg291134 +S'Untitled' +p296870 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296871 +sa(dp296872 +g291130 +S'lithograph (aluminum and stone) in green-brown, yellow, red and black on German Etching paper' +p296873 +sg291132 +S'1968' +p296874 +sg291134 +S'Untitled' +p296875 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296876 +sa(dp296877 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p296878 +sg291132 +S'1968' +p296879 +sg291134 +S'Untitled' +p296880 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296881 +sa(dp296882 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296883 +sg291132 +S'1968' +p296884 +sg291134 +S'Untitled' +p296885 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296886 +sa(dp296887 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p296888 +sg291132 +S'1968' +p296889 +sg291134 +S'Untitled' +p296890 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296891 +sa(dp296892 +g291130 +S'lithograph (aluminum and stone) in silver and black on Copperplate Deluxe paper' +p296893 +sg291132 +S'1968' +p296894 +sg291134 +S'Untitled' +p296895 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296896 +sa(dp296897 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296898 +sg291132 +S'1968' +p296899 +sg291134 +S'Untitled' +p296900 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296901 +sa(dp296902 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296903 +sg291132 +S'1968' +p296904 +sg291134 +S'Untitled' +p296905 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296906 +sa(dp296907 +g291130 +S'lithograph (stone) in brown-red on cream Copperplate Deluxe paper' +p296908 +sg291132 +S'1968' +p296909 +sg291134 +S'Untitled' +p296910 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296911 +sa(dp296912 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296913 +sg291132 +S'1968' +p296914 +sg291134 +S'Untitled' +p296915 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296916 +sa(dp296917 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p296918 +sg291132 +S'1968' +p296919 +sg291134 +S'Untitled' +p296920 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296921 +sa(dp296922 +g291130 +S'lithograph (stone) in black on white Nacre paper' +p296923 +sg291132 +S'1968' +p296924 +sg291134 +S'Untitled' +p296925 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296926 +sa(dp296927 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p296928 +sg291132 +S'1968' +p296929 +sg291134 +S'Ce sont des bons imprimeurs' +p296930 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296931 +sa(dp296932 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296933 +sg291132 +S'1968' +p296934 +sg291134 +S'Untitled' +p296935 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296936 +sa(dp296937 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p296938 +sg291132 +S'1968' +p296939 +sg291134 +S'Untitled' +p296940 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296941 +sa(dp296942 +g291130 +S'lithograph (stone) in black on J. Green paper' +p296943 +sg291132 +S'1968' +p296944 +sg291134 +S'Untitled' +p296945 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296946 +sa(dp296947 +g291130 +S'lithograph (stone) in black on German Etching paper' +p296948 +sg291132 +S'1968' +p296949 +sg291134 +S'Untitled' +p296950 +sg291136 +g27 +sg291137 +S'Seymour Rosofsky' +p296951 +sa(dp296952 +g291130 +S'lithograph (stone and aluminum) in gray and red onGerman Etching paper' +p296953 +sg291132 +S'1969' +p296954 +sg291134 +S'Mint' +p296955 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p296956 +sa(dp296957 +g291130 +S'lithograph (stone) in green on Copperplate Deluxe paper' +p296958 +sg291132 +S'1969' +p296959 +sg291134 +S'Carp' +p296960 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p296961 +sa(dp296962 +g291130 +S'lithograph (stone and aluminum) in light gray, green, and dark brown on white Arches paper' +p296963 +sg291132 +S'1969' +p296964 +sg291134 +S'Carp with Shadow and Fly' +p296965 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p296966 +sa(dp296967 +g291130 +S'lithograph (stone) in blue on Rives BFK paper' +p296968 +sg291132 +S'1969' +p296969 +sg291134 +S'Eye' +p296970 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p296971 +sa(dp296972 +g291130 +S'lithograph (stone) in silver-brown and black on Rives BFK paper' +p296973 +sg291132 +S'1969' +p296974 +sg291134 +S'Rodeo' +p296975 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p296976 +sa(dp296977 +g291130 +S'lithograph (aluminum and stone) in light blue and black on calendered Rives paper' +p296978 +sg291132 +S'1969' +p296979 +sg291134 +S'Hollywood with Observatory' +p296980 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p296981 +sa(dp296982 +g291130 +S'lithograph (aluminum and stone) in light blue and black on calendered Rives paper' +p296983 +sg291132 +S'1969' +p296984 +sg291134 +S'Long Hollywood' +p296985 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p296986 +sa(dp296987 +g291130 +S'lithograph (aluminum and stone) in light blue and black on calendered Rives paper' +p296988 +sg291132 +S'1969' +p296989 +sg291134 +S'Short Hollywood' +p296990 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p296991 +sa(dp296992 +g291130 +S'lithograph (aluminum and stone) in yellow-green and gray on Rives BFK paper' +p296993 +sg291132 +S'1969' +p296994 +sg291134 +S'Air' +p296995 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p296996 +sa(dp296997 +g291130 +S'lithograph (aluminum and stone) in red, green and black on calendered Rives paper' +p296998 +sg291132 +S'1969' +p296999 +sg291134 +S'Sin' +p297000 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p297001 +sa(dp297002 +g291130 +S'lithograph (stone) in three blacks on calendered Rives paper' +p297003 +sg291132 +S'1969' +p297004 +sg291134 +S'Zoo' +p297005 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p297006 +sa(dp297007 +g291130 +S'lithograph (stone) in three blacks on calendered Rives paper' +p297008 +sg291132 +S'1969' +p297009 +sg291134 +S'Ooo' +p297010 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p297011 +sa(dp297012 +g291130 +S'lithograph (stone and aluminum) in black, red, green and gray on calendered Rives paper' +p297013 +sg291132 +S'1969' +p297014 +sg291134 +S'Olive and Screw' +p297015 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p297016 +sa(dp297017 +g291130 +S'lithograph (stone and aluminum) in black, red, red-orange, gray-green, blue and gray on calendered Rives paper' +p297018 +sg291132 +S'1969' +p297019 +sg291134 +S'Olive and Marble' +p297020 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p297021 +sa(dp297022 +g291130 +S'lithograph (aluminum and stone) in black, orange and red on uncalendered Rives paper' +p297023 +sg291132 +S'1969' +p297024 +sg291134 +S'Boiling Blood' +p297025 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p297026 +sa(dp297027 +g291130 +S'lithograph (aluminum and stone) in white and green-gray on uncalendered Rives paper' +p297028 +sg291132 +S'1969' +p297029 +sg291134 +S'Hey' +p297030 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p297031 +sa(dp297032 +g291130 +S'lithograph (aluminum and stone) in silver and light blue on uncalendered Rives paper' +p297033 +sg291132 +S'1969' +p297034 +sg291134 +S'Anchovy' +p297035 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p297036 +sa(dp297037 +g291130 +S'lithograph (zinc and stone) in yellow, orange and black on Copperplate Deluxe paper' +p297038 +sg291132 +S'1966' +p297039 +sg291134 +S'Ann and ...' +p297040 +sg291136 +g27 +sg291137 +S'Maurice Sanchez' +p297041 +sa(dp297042 +g291130 +S'lithograph (zinc and stone) in orange and dark gray on Copperplate Deluxe paper' +p297043 +sg291132 +S'1966' +p297044 +sg291134 +S'Ann and Ann' +p297045 +sg291136 +g27 +sg291137 +S'Maurice Sanchez' +p297046 +sa(dp297047 +g291130 +S'lithograph (stone) in brown on buff Arches paper' +p297048 +sg291132 +S'1967' +p297049 +sg291134 +S'Dottie, LA 196667' +p297050 +sg291136 +g27 +sg291137 +S'Maurice Sanchez' +p297051 +sa(dp297052 +g291130 +S'lithograph (stone and aluminum) in transparent pink and gray on buff Arches paper' +p297053 +sg291132 +S'1967' +p297054 +sg291134 +S'Hollywood Fuck-Me-Not' +p297055 +sg291136 +g27 +sg291137 +S'Maurice Sanchez' +p297056 +sa(dp297057 +g291130 +S'lithograph (aluminum) in blue and red on white Arches paper' +p297058 +sg291132 +S'1968' +p297059 +sg291134 +S'Number One' +p297060 +sg291136 +g27 +sg291137 +S'Maurice Sanchez' +p297061 +sa(dp297062 +g291130 +S'lithograph (aluminum) in red, yellow and black on Copperplate Deluxe paper' +p297063 +sg291132 +S'1968' +p297064 +sg291134 +S'Number Three' +p297065 +sg291136 +g27 +sg291137 +S'Maurice Sanchez' +p297066 +sa(dp297067 +g291130 +S'lithograph (stone) in red-black on natural Nacre paper' +p297068 +sg291132 +S'1964' +p297069 +sg291134 +S'Souvenir' +p297070 +sg291136 +g27 +sg291137 +S'Miriam Schapiro' +p297071 +sa(dp297072 +g291130 +S'lithograph (stone) in red-black on natural Nacre paper' +p297073 +sg291132 +S'1964' +p297074 +sg291134 +S'Untitled' +p297075 +sg291136 +g27 +sg291137 +S'Miriam Schapiro' +p297076 +sa(dp297077 +g291130 +S'lithograph (zinc and stone) in light beige, light gray and light brown on natural Nacre paper' +p297078 +sg291132 +S'1964' +p297079 +sg291134 +S'Poster' +p297080 +sg291136 +g27 +sg291137 +S'Miriam Schapiro' +p297081 +sa(dp297082 +g291130 +S'lithograph (aluminum) in two blended oranges and gray on calendered Rives paper' +p297083 +sg291132 +S'1970' +p297084 +sg291134 +S'Confrontation' +p297085 +sg291136 +g27 +sg291137 +S'Arthur Secunda' +p297086 +sa(dp297087 +g291130 +S'lithograph (aluminum) in gray on buff Arches paper' +p297088 +sg291132 +S'1970' +p297089 +sg291134 +S'Confrontation II' +p297090 +sg291136 +g27 +sg291137 +S'Arthur Secunda' +p297091 +sa(dp297092 +g291130 +S'lithograph (aluminum) in black on calendered Rivespaper' +p297093 +sg291132 +S'1970' +p297094 +sg291134 +S'Moon Mountain' +p297095 +sg291136 +g27 +sg291137 +S'Arthur Secunda' +p297096 +sa(dp297097 +g291130 +S'lithograph (stone) in blue-black on Copperplate Deluxe paper' +p297098 +sg291132 +S'1970' +p297099 +sg291134 +S'Night Man' +p297100 +sg291136 +g27 +sg291137 +S'Arthur Secunda' +p297101 +sa(dp297102 +g291130 +S'lithograph (stone) in beige, embossed on white Arches paper' +p297103 +sg291132 +S'1964' +p297104 +sg291134 +S'Arkhaios' +p297105 +sg291136 +g27 +sg291137 +S'Doris Seidler' +p297106 +sa(dp297107 +g291130 +S'lithograph (stone) in blue and red-violet on natural Nacre paper' +p297108 +sg291132 +S'1963' +p297109 +sg291134 +S'Untitled' +p297110 +sg291136 +g27 +sg291137 +S"Jun'ichiro Sekino" +p297111 +sa(dp297112 +g291130 +S'lithograph (zinc) in black on white Nacre paper' +p297113 +sg291132 +S'1963' +p297114 +sg291134 +S'Untitled' +p297115 +sg291136 +g27 +sg291137 +S"Jun'ichiro Sekino" +p297116 +sa(dp297117 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p297118 +sg291132 +S'1964' +p297119 +sg291134 +S'Untitled' +p297120 +sg291136 +g27 +sg291137 +S'Artemio Sepulveda' +p297121 +sa(dp297122 +g291130 +S'lithograph (zinc and stone) in red, green and black on Rives BFK paper' +p297123 +sg291132 +S'1967' +p297124 +sg291134 +S'Wedgewood' +p297125 +sg291136 +g27 +sg291137 +S'Irene Siegel' +p297126 +sa(dp297127 +g291130 +S'lithograph (aluminum and stone) in yellow, silver and black on Rives BFK paper' +p297128 +sg291132 +S'1967' +p297129 +sg291134 +S'Utensil' +p297130 +sg291136 +g27 +sg291137 +S'Irene Siegel' +p297131 +sa(dp297132 +g291130 +S'lithograph (zinc and stone) in silver, green, violet and black on Rives BFK paper' +p297133 +sg291132 +S'1967' +p297134 +sg291134 +S'His and Hers' +p297135 +sg291136 +g27 +sg291137 +S'Irene Siegel' +p297136 +sa(dp297137 +g291130 +S'lithograph (aluminum and stone) in two yellows, red, two greens, silver and black on Rives BFK paper' +p297138 +sg291132 +S'1967' +p297139 +sg291134 +S'Spoon' +p297140 +sg291136 +g27 +sg291137 +S'Irene Siegel' +p297141 +sa(dp297142 +g291130 +S'lithograph (aluminum and stone) in two yellows, two blues, pink, violet, brown and green on German Etching paper' +p297143 +sg291132 +S'1967' +p297144 +sg291134 +S'Hollywood Nap' +p297145 +sg291136 +g27 +sg291137 +S'Irene Siegel' +p297146 +sa(dp297147 +g291130 +S'lithograph (aluminum and stone) in blue, yellow, red and green on German Etching paper' +p297148 +sg291132 +S'1967' +p297149 +sg291134 +S'Space Face' +p297150 +sg291136 +g27 +sg291137 +S'Irene Siegel' +p297151 +sa(dp297152 +g291130 +S'lithograph (aluminum, zinc and stone) in light blue, light yellow and black on German Etching paper' +p297153 +sg291132 +S'1967' +p297154 +sg291134 +S'The Collection or La Nouvelle Middle Class' +p297155 +sg291136 +g27 +sg291137 +S'Irene Siegel' +p297156 +sa(dp297157 +g291130 +S'lithograph (aluminum and stone) in yellow, red andblack on German Etching paper' +p297158 +sg291132 +S'1967' +p297159 +sg291134 +S'Twin Beds, I Presume' +p297160 +sg291136 +g27 +sg291137 +S'Irene Siegel' +p297161 +sa(dp297162 +g291130 +S'lithograph (aluminum and stone) in brown, dark pink and black on German Etching paper' +p297163 +sg291132 +S'1967' +p297164 +sg291134 +S'Zog' +p297165 +sg291136 +g27 +sg291137 +S'Irene Siegel' +p297166 +sa(dp297167 +g291130 +S'lithograph (stone and aluminum) in gray-green, blended two reds with orange and black on German Etching paper' +p297168 +sg291132 +S'1967' +p297169 +sg291134 +S'Ogg' +p297170 +sg291136 +g27 +sg291137 +S'Irene Siegel' +p297171 +sa(dp297172 +g291130 +S'lithograph (aluminum and stone) in blue, blue-green and black on German Etching paper' +p297173 +sg291132 +S'1967' +p297174 +sg291134 +S'Zap' +p297175 +sg291136 +g27 +sg291137 +S'Irene Siegel' +p297176 +sa(dp297177 +g291130 +S'lithograph (stone) in black on German Etching paper' +p297178 +sg291132 +S'1967' +p297179 +sg291134 +S'Xis' +p297180 +sg291136 +g27 +sg291137 +S'Irene Siegel' +p297181 +sa(dp297182 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p297183 +sg291132 +S'1967' +p297184 +sg291134 +S'Wedgewood' +p297185 +sg291136 +g27 +sg291137 +S'Irene Siegel' +p297186 +sa(dp297187 +g291130 +S'lithograph (aluminum and stone) in two pinks, two reds, three greens , four blues and yellow on Copperplate Deluxe paper' +p297188 +sg291132 +S'1967' +p297189 +sg291134 +S'Module for a split level ranch house' +p297190 +sg291136 +g27 +sg291137 +S'Irene Siegel' +p297191 +sa(dp297192 +g291130 +S'lithograph (aluminum and stone) in ochre, violet, dark yellow, five greens and three blues on Copperplate Deluxe paper' +p297193 +sg291132 +S'1967' +p297194 +sg291134 +S'Module for a split level ranch house' +p297195 +sg291136 +g27 +sg291137 +S'Irene Siegel' +p297196 +sa(dp297197 +g291130 +S'lithograph (aluminum and stone) in yellow-green, pink, two blues, orange, violet, red-black and yellow' +p297198 +sg291132 +S'1967' +p297199 +sg291134 +S'Double Bed, I Presume' +p297200 +sg291136 +g27 +sg291137 +S'Irene Siegel' +p297201 +sa(dp297202 +g291130 +S'lithograph (stone) in black on German Etching paper' +p297203 +sg291132 +S'1967' +p297204 +sg291134 +S'Double Bed, I Presume' +p297205 +sg291136 +g27 +sg291137 +S'Irene Siegel' +p297206 +sa(dp297207 +g291130 +S'lithograph (stone) in black on German Etching paper' +p297208 +sg291132 +S'1967' +p297209 +sg291134 +S'Hollywood Nap' +p297210 +sg291136 +g27 +sg291137 +S'Irene Siegel' +p297211 +sa(dp297212 +g291130 +S'lithograph (stone and aluminum) in two blacks on German Etching paper' +p297213 +sg291132 +S'1967' +p297214 +sg291134 +S'Space Face' +p297215 +sg291136 +g27 +sg291137 +S'Irene Siegel' +p297216 +sa(dp297217 +g291130 +S'lithograph (stone and aluminum) in two blacks on German Etching paper' +p297218 +sg291132 +S'1967' +p297219 +sg291134 +S'The Collection, or La Nouvelle Middle Class' +p297220 +sg291136 +g27 +sg291137 +S'Irene Siegel' +p297221 +sa(dp297222 +g291130 +S'lithograph (aluminum and stone) in red, yellow andblack on German Etching paper' +p297223 +sg291132 +S'1967' +p297224 +sg291134 +S'Zippy Linnae, or the Collectors' +p297225 +sg291136 +g27 +sg291137 +S'Irene Siegel' +p297226 +sa(dp297227 +g291130 +S'lithograph (stone) in blue-gold on J. Green paper' +p297228 +sg291132 +S'1968' +p297229 +sg291134 +S'Split Image I' +p297230 +sg291136 +g27 +sg291137 +S'Noemi Smilansky' +p297231 +sa(dp297232 +g291130 +S'lithograph (aluminum and stone) in gold on buff Arches paper' +p297233 +sg291132 +S'1968' +p297234 +sg291134 +S'Split Image II' +p297235 +sg291136 +g27 +sg291137 +S'Noemi Smilansky' +p297236 +sa(dp297237 +g291130 +S'lithograph (stone) in black on buff Arches paper' +p297238 +sg291132 +S'1965' +p297239 +sg291134 +S'United Nations' +p297240 +sg291136 +g27 +sg291137 +S'Clifford Smith' +p297241 +sa(dp297242 +g291130 +S'lithograph (stone) in yellow, red-orange, two violets and red on white Arches paper' +p297243 +sg291132 +S'1965' +p297244 +sg291134 +S'Operation Redwing' +p297245 +sg291136 +g27 +sg291137 +S'Clifford Smith' +p297246 +sa(dp297247 +g291130 +S'lithograph (zinc and stone) in yellow-ochre and violet on white Arches paper' +p297248 +sg291132 +S'1965' +p297249 +sg291134 +S'Tonkin Gulf' +p297250 +sg291136 +g27 +sg291137 +S'Clifford Smith' +p297251 +sa(dp297252 +g291130 +S'lithograph (zinc) in transparent orange-beige and dark blue on white Arches paper' +p297253 +sg291132 +S'1965' +p297254 +sg291134 +S'Orbit' +p297255 +sg291136 +g27 +sg291137 +S'Clifford Smith' +p297256 +sa(dp297257 +g291130 +S'lithograph (zinc) in dark blue and dark red on white Arches paper' +p297258 +sg291132 +S'1965' +p297259 +sg291134 +S"Budapest '56" +p297260 +sg291136 +g27 +sg291137 +S'Clifford Smith' +p297261 +sa(dp297262 +g291130 +S'lithograph (zinc) in red, transparent light green,pink and blue-violet on white Arches paper' +p297263 +sg291132 +S'1965' +p297264 +sg291134 +S'Discotheque' +p297265 +sg291136 +g27 +sg291137 +S'Clifford Smith' +p297266 +sa(dp297267 +g291130 +S'lithograph (zinc) in yellow, red and blue on whiteArches paper' +p297268 +sg291132 +S'1965' +p297269 +sg291134 +S"Watt's Summer" +p297270 +sg291136 +g27 +sg291137 +S'Clifford Smith' +p297271 +sa(dp297272 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p297273 +sg291132 +S'1965' +p297274 +sg291134 +S'Unanimous Decision' +p297275 +sg291136 +g27 +sg291137 +S'Clifford Smith' +p297276 +sa(dp297277 +g291130 +S'lithograph (zinc) in three blacks on Copperplate Deluxe paper' +p297278 +sg291132 +S'1968' +p297279 +sg291134 +S'Black Spider Man' +p297280 +sg291136 +g27 +sg291137 +S'Clifford Smith' +p297281 +sa(dp297282 +g291130 +S'lithograph (stone) in gold-black on Fasson Foil oncream Copperplate Deluxe paper' +p297283 +sg291132 +S'1968' +p297284 +sg291134 +S'Habitable Sculpture, Series #1: Branch Bank' +p297285 +sg291136 +g27 +sg291137 +S'Clifford Smith' +p297286 +sa(dp297287 +g291130 +S'lithograph (aluminum and stone) in blue and black on gold Fasson Foil on German Etching paper' +p297288 +sg291132 +S'1968' +p297289 +sg291134 +S"Habitable Sculpture, Series #1: People's Pleasure Palace" +p297290 +sg291136 +g27 +sg291137 +S'Clifford Smith' +p297291 +sa(dp297292 +g291130 +S'lithograph (stone and aluminum) in violet and yellow on German Etching paper' +p297293 +sg291132 +S'1968' +p297294 +sg291134 +S'Habitable Sculpture, Series #1: Welfare Office' +p297295 +sg291136 +g27 +sg291137 +S'Clifford Smith' +p297296 +sa(dp297297 +g291130 +S'lithograph (stone) in green, orange, violet and blue on German Etching paper' +p297298 +sg291132 +S'1968' +p297299 +sg291134 +S'Habitable Sculpture, Series #1: Urban Renewal' +p297300 +sg291136 +g27 +sg291137 +S'Clifford Smith' +p297301 +sa(dp297302 +g291130 +S'lithograph (aluminum) in red and blue-green on white Arches paper' +p297303 +sg291132 +S'1968' +p297304 +sg291134 +S'Untitled' +p297305 +sg291136 +g27 +sg291137 +S'Leon Polk Smith' +p297306 +sa(dp297307 +g291130 +S'lithograph (aluminum) in violet on J. Green paper' +p297308 +sg291132 +S'1968' +p297309 +sg291134 +S'Untitled' +p297310 +sg291136 +g27 +sg291137 +S'Leon Polk Smith' +p297311 +sa(dp297312 +g291130 +S'lithograph (aluminum) in black on J. Green paper' +p297313 +sg291132 +S'1968' +p297314 +sg291134 +S'Untitled' +p297315 +sg291136 +g27 +sg291137 +S'Leon Polk Smith' +p297316 +sa(dp297317 +g291130 +S'lithograph (aluminum) in orange and blue on Rives BFK paper' +p297318 +sg291132 +S'1968' +p297319 +sg291134 +S'Untitled' +p297320 +sg291136 +g27 +sg291137 +S'Leon Polk Smith' +p297321 +sa(dp297322 +g291130 +S'lithograph (aluminum) in violet, green and black on J. Green paper' +p297323 +sg291132 +S'1968' +p297324 +sg291134 +S'Untitled' +p297325 +sg291136 +g27 +sg291137 +S'Leon Polk Smith' +p297326 +sa(dp297327 +g291130 +S'lithograph (aluminum and stone) in green, blue andblack on Copperplate Deluxe paper' +p297328 +sg291132 +S'1968' +p297329 +sg291134 +S'Untitled' +p297330 +sg291136 +g27 +sg291137 +S'Leon Polk Smith' +p297331 +sa(dp297332 +g291130 +S'lithograph (aluminum) in green and blue on Copperplate Deluxe paper' +p297333 +sg291132 +S'1968' +p297334 +sg291134 +S'Untitled' +p297335 +sg291136 +g27 +sg291137 +S'Leon Polk Smith' +p297336 +sa(dp297337 +g291130 +S'lithograph (aluminum) in green and blue on J. Green paper' +p297338 +sg291132 +S'1968' +p297339 +sg291134 +S'Untitled' +p297340 +sg291136 +g27 +sg291137 +S'Leon Polk Smith' +p297341 +sa(dp297342 +g291130 +S'lithograph (aluminum) in yellow and blue on Copperplate Deluxe paper' +p297343 +sg291132 +S'1968' +p297344 +sg291134 +S'Untitled' +p297345 +sg291136 +g27 +sg291137 +S'Leon Polk Smith' +p297346 +sa(dp297347 +g291130 +S'lithograph (aluminum) in yellow and blue on J. Green paper' +p297348 +sg291132 +S'1968' +p297349 +sg291134 +S'Untitled' +p297350 +sg291136 +g27 +sg291137 +S'Leon Polk Smith' +p297351 +sa(dp297352 +g291130 +S'lithograph (aluminum) in yellow on J. Green paper' +p297353 +sg291132 +S'1968' +p297354 +sg291134 +S'Untitled' +p297355 +sg291136 +g27 +sg291137 +S'Leon Polk Smith' +p297356 +sa(dp297357 +g291130 +S'lithograph (aluminum) in red and black on J. Greenpaper' +p297358 +sg291132 +S'1968' +p297359 +sg291134 +S'Untitled' +p297360 +sg291136 +g27 +sg291137 +S'Leon Polk Smith' +p297361 +sa(dp297362 +g291130 +S'lithograph (aluminum) in red and violet on German Etching paper' +p297363 +sg291132 +S'1968' +p297364 +sg291134 +S'Untitled' +p297365 +sg291136 +g27 +sg291137 +S'Leon Polk Smith' +p297366 +sa(dp297367 +g291130 +S'lithograph (aluminum) in yellow, red and blue on Copperplate Deluxe paper' +p297368 +sg291132 +S'1968' +p297369 +sg291134 +S'Untitled' +p297370 +sg291136 +g27 +sg291137 +S'Leon Polk Smith' +p297371 +sa(dp297372 +g291130 +S'lithograph (aluminum) in black on German Etching paper' +p297373 +sg291132 +S'1968' +p297374 +sg291134 +S'Untitled' +p297375 +sg291136 +g27 +sg291137 +S'Leon Polk Smith' +p297376 +sa(dp297377 +g291130 +S'lithograph (aluminum) in green and blue on Copperplate Deluxe paper' +p297378 +sg291132 +S'1968' +p297379 +sg291134 +S'Untitled' +p297380 +sg291136 +g27 +sg291137 +S'Leon Polk Smith' +p297381 +sa(dp297382 +g291130 +S'lithograph (stone) in black on German Etching paper' +p297383 +sg291132 +S'1968' +p297384 +sg291134 +S'Untitled' +p297385 +sg291136 +g27 +sg291137 +S'Daniel Socha' +p297386 +sa(dp297387 +g291130 +S'lithograph (stone and aluminum) in two violets, pink and gold on white Nacre paper' +p297388 +sg291132 +S'1969' +p297389 +sg291134 +S'Starlett' +p297390 +sg291136 +g27 +sg291137 +S'John Sommers' +p297391 +sa(dp297392 +g291130 +S'lithograph (zinc and aluminum) in silver-yellow and three blues on German Etching paper' +p297393 +sg291132 +S'1969' +p297394 +sg291134 +S'Women In' +p297395 +sg291136 +g27 +sg291137 +S'John Sommers' +p297396 +sa(dp297397 +g291130 +S'lithograph (zinc) in black on uncalendered Rives paper' +p297398 +sg291132 +S'1969' +p297399 +sg291134 +S'"Seck" Fantasy' +p297400 +sg291136 +g27 +sg291137 +S'John Sommers' +p297401 +sa(dp297402 +g291130 +S'lithograph (zinc) in white, light violet, pink andblack on buff Arches paper' +p297403 +sg291132 +S'1969' +p297404 +sg291134 +S'Divine is Dead' +p297405 +sg291136 +g27 +sg291137 +S'John Sommers' +p297406 +sa(dp297407 +g291130 +S'lithograph (stone) in yellow, green, and black on Copperplate Deluxe paper' +p297408 +sg291132 +S'1967' +p297409 +sg291134 +S'Untitled' +p297410 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297411 +sa(dp297412 +g291130 +S'portfolio w/ 9 lithographs (stone and aluminum) plus title page and colophon on natural Nacre, Copperplate Deluxe and German Etching paper' +p297413 +sg291132 +S'1967' +p297414 +sg291134 +S'Metaphores and Metamorphoses' +p297415 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297416 +sa(dp297417 +g291130 +S'lithograph (stone) in black on natural Nacre paper' +p297418 +sg291132 +S'1967' +p297419 +sg291134 +S'Untitled' +p297420 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297421 +sa(dp297422 +g291130 +S'lithograph (aluminum and stone) in violet, beige, black, and brown-gray on Copperplate Deluxe paper' +p297423 +sg291132 +S'1967' +p297424 +sg291134 +S'Untitled' +p297425 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297426 +sa(dp297427 +g291130 +S'lithograph (stone) in black on German Etching paper' +p297428 +sg291132 +S'1967' +p297429 +sg291134 +S'Untitled' +p297430 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297431 +sa(dp297432 +g291130 +S'lithograph (stone) in gray and green on German Etching paper' +p297433 +sg291132 +S'1967' +p297434 +sg291134 +S'Untitled' +p297435 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297436 +sa(dp297437 +g291130 +S'lithograph (stone) in gray and yellow-green on German Etching paper' +p297438 +sg291132 +S'1967' +p297439 +sg291134 +S'Untitled' +p297440 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297441 +sa(dp297442 +g291130 +S'lithograph (stone) in gray and silver on German Etching paper' +p297443 +sg291132 +S'1967' +p297444 +sg291134 +S'Untitled' +p297445 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297446 +sa(dp297447 +g291130 +S'lithograph (aluminum and stone) in two blues and ochre on German Etching paper' +p297448 +sg291132 +S'1967' +p297449 +sg291134 +S'Untitled' +p297450 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297451 +sa(dp297452 +g291130 +S'lithograph (stone) in dark green on German Etchingpaper' +p297453 +sg291132 +S'1967' +p297454 +sg291134 +S'Untitled' +p297455 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297456 +sa(dp297457 +g291134 +S'Untitled' +p297458 +sg291137 +S'Hedda Sterne' +p297459 +sg291130 +S'lithograph (stone) in black on German Etching paper' +p297460 +sg291132 +S'1967' +p297461 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000ba6.jpg' +p297462 +sg291136 +g27 +sa(dp297463 +g291134 +S'Untitled' +p297464 +sg291137 +S'Hedda Sterne' +p297465 +sg291130 +S'lithograph (stone) in black on German Etching paper' +p297466 +sg291132 +S'1967' +p297467 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000ba7.jpg' +p297468 +sg291136 +g27 +sa(dp297469 +g291134 +S'Untitled' +p297470 +sg291137 +S'Hedda Sterne' +p297471 +sg291130 +S'lithograph (stone) in black on German Etching paper' +p297472 +sg291132 +S'1967' +p297473 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000ba8.jpg' +p297474 +sg291136 +g27 +sa(dp297475 +g291134 +S'Untitled' +p297476 +sg291137 +S'Hedda Sterne' +p297477 +sg291130 +S'lithograph (stone) in black on German Etching paper' +p297478 +sg291132 +S'1967' +p297479 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000ba9.jpg' +p297480 +sg291136 +g27 +sa(dp297481 +g291134 +S'Untitled' +p297482 +sg291137 +S'Hedda Sterne' +p297483 +sg291130 +S'lithograph (stone) in black on German Etching paper' +p297484 +sg291132 +S'1967' +p297485 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000baa.jpg' +p297486 +sg291136 +g27 +sa(dp297487 +g291130 +S'lithograph (stone) in black on German Etching paper' +p297488 +sg291132 +S'1967' +p297489 +sg291134 +S'Untitled' +p297490 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297491 +sa(dp297492 +g291130 +S'lithograph (stone) in black on white Arches paper' +p297493 +sg291132 +S'1967' +p297494 +sg291134 +S'Untitled' +p297495 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297496 +sa(dp297497 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p297498 +sg291132 +S'1967' +p297499 +sg291134 +S'Untitled' +p297500 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297501 +sa(dp297502 +g291130 +S'lithograph (stone) in yellow on Rives BFK paper' +p297503 +sg291132 +S'1967' +p297504 +sg291134 +S'Untitled' +p297505 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297506 +sa(dp297507 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p297508 +sg291132 +S'1967' +p297509 +sg291134 +S'Untitled' +p297510 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297511 +sa(dp297512 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p297513 +sg291132 +S'1967' +p297514 +sg291134 +S'Untitled' +p297515 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297516 +sa(dp297517 +g291130 +S'lithograph (stone) in gray-blue on Copperplate Deluxe paper' +p297518 +sg291132 +S'1967' +p297519 +sg291134 +S'Untitled' +p297520 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297521 +sa(dp297522 +g291130 +S'lithograph (stone) in yellow, green-blue and blackon Copperplate Deluxe paper' +p297523 +sg291132 +S'1967' +p297524 +sg291134 +S'Untitled' +p297525 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297526 +sa(dp297527 +g291130 +S'lithograph (stone) in yellow, beige and black on German Etching paper' +p297528 +sg291132 +S'1967' +p297529 +sg291134 +S'Untitled' +p297530 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297531 +sa(dp297532 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p297533 +sg291132 +S'1967' +p297534 +sg291134 +S'Untitled' +p297535 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297536 +sa(dp297537 +g291130 +S'lithograph (stone) in red-violet on Copperplate Deluxe paper' +p297538 +sg291132 +S'1967' +p297539 +sg291134 +S'Untitled' +p297540 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297541 +sa(dp297542 +g291130 +S'lithograph (aluminum and stone) in pink and black on Copperplate Deluxe paper' +p297543 +sg291132 +S'1967' +p297544 +sg291134 +S'Untitled' +p297545 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297546 +sa(dp297547 +g291130 +S'lithograph (stone) in blue-violet on Copperplate Deluxe paper' +p297548 +sg291132 +S'1967' +p297549 +sg291134 +S'Untitled' +p297550 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297551 +sa(dp297552 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p297553 +sg291132 +S'1967' +p297554 +sg291134 +S'Untitled' +p297555 +sg291136 +g27 +sg291137 +S'Hedda Sterne' +p297556 +sa(dp297557 +g291130 +S'lithograph (zinc and stone) in green-gray and black on German Etching paper' +p297558 +sg291132 +S'1966' +p297559 +sg291134 +S'Untitled' +p297560 +sg291136 +g27 +sg291137 +S'Donn Horatio Steward' +p297561 +sa(dp297562 +g291130 +S'lithograph (zinc) in brown-yellow and black on Rives BFK paper' +p297563 +sg291132 +S'1967' +p297564 +sg291134 +S'Homage to K' +p297565 +sg291136 +g27 +sg291137 +S'Anthony Charles Stoeveken' +p297566 +sa(dp297567 +g291130 +S'lithograph (zinc) in black on Rives BFK paper' +p297568 +sg291132 +S'1967' +p297569 +sg291134 +S'Homage to G' +p297570 +sg291136 +g27 +sg291137 +S'Anthony Charles Stoeveken' +p297571 +sa(dp297572 +g291130 +S'lithograph (aluminum and stone) in orange-brown, yellow and black on white Arches paper' +p297573 +sg291132 +S'1967' +p297574 +sg291134 +S'Poor Old Marat' +p297575 +sg291136 +g27 +sg291137 +S'Anthony Charles Stoeveken' +p297576 +sa(dp297577 +g291130 +S'lithograph (aluminum and stone) in yellow, blue, violet and black on Copperplate Deluxe paper' +p297578 +sg291132 +S'1968' +p297579 +sg291134 +S'Jack a Moon' +p297580 +sg291136 +g27 +sg291137 +S'Anthony Charles Stoeveken' +p297581 +sa(dp297582 +g291130 +S'lithograph (aluminum) in black, gray-green, orangeand blue-green on silver foil on German Etching paper' +p297583 +sg291132 +S'1968' +p297584 +sg291134 +S'Man in Space' +p297585 +sg291136 +g27 +sg291137 +S'Anthony Charles Stoeveken' +p297586 +sa(dp297587 +g291130 +S'lithograph (aluminum) in black and blue-gray on silver Fasson foil, embossed, on white Arches paper' +p297588 +sg291132 +S'1968' +p297589 +sg291134 +S'Gray' +p297590 +sg291136 +g27 +sg291137 +S'Anthony Charles Stoeveken' +p297591 +sa(dp297592 +g291130 +S'lithograph (aluminum) in blue, brown-red and lightbeige on J. Green paper' +p297593 +sg291132 +S'1968' +p297594 +sg291134 +S'Totentanz' +p297595 +sg291136 +g27 +sg291137 +S'Anthony Charles Stoeveken' +p297596 +sa(dp297597 +g291130 +S'lithograph (aluminum and stone) in silver-black and brown on Copperplate Deluxe paper' +p297598 +sg291132 +S'1968' +p297599 +sg291134 +S'Title Page' +p297600 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297601 +sa(dp297602 +g291130 +S'portfolio w/ 11 lithographs including title page (aluminum, stone and zinc) plus colophon on Copperplate Deluxe paper' +p297603 +sg291132 +S'1968' +p297604 +sg291134 +S'Recognitions' +p297605 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297606 +sa(dp297607 +g291130 +S'lithograph (zinc and stone) in orange, blue, gray-green, and brown on Copperplate Deluxe paper' +p297608 +sg291132 +S'1968' +p297609 +sg291134 +S'Rally Round the Flag' +p297610 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297611 +sa(dp297612 +g291130 +S'lithograph (aluminum and stone) in light blue-green and silver-black on Copperplate Deluxe paper' +p297613 +sg291132 +S'1968' +p297614 +sg291134 +S'Co Co' +p297615 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297616 +sa(dp297617 +g291130 +S'lithograph (aluminum and stone) in yellow, orange, and gray-green on Copperplate Deluxe paper' +p297618 +sg291132 +S'1968' +p297619 +sg291134 +S'Asylum' +p297620 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297621 +sa(dp297622 +g291130 +S'lithograph (stone and zinc) in red, light-green, and pink on Copperplate Deluxe paper' +p297623 +sg291132 +S'1968' +p297624 +sg291134 +S'Pink' +p297625 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297626 +sa(dp297627 +g291130 +S'lithograph (stone) in black on cream Copperplate Deluxe paper' +p297628 +sg291132 +S'1968' +p297629 +sg291134 +S'Smokers' +p297630 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297631 +sa(dp297632 +g291130 +S'lithograph (stone and aluminum) in green-black andred on Copperplate Deluxe paper' +p297633 +sg291132 +S'1968' +p297634 +sg291134 +S'Military' +p297635 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297636 +sa(dp297637 +g291130 +S'lithograph (aluminum and stone) in yellow, red, brown, and blue-gray on Copperplate Deluxe paper' +p297638 +sg291132 +S'1968' +p297639 +sg291134 +S'Bird Lady' +p297640 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297641 +sa(dp297642 +g291130 +S'lithograph (aluminum and stone) in orange, pink, and gray-green on Copperplate Deluxe paper' +p297643 +sg291132 +S'1968' +p297644 +sg291134 +S'Big Henry' +p297645 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297646 +sa(dp297647 +g291130 +S'lithograph (aluminum and stone) in red, dark ochre,and brown on Copperplate Deluxe paper' +p297648 +sg291132 +S'1968' +p297649 +sg291134 +S'Ice Cream Cone' +p297650 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297651 +sa(dp297652 +g291130 +S'lithograph (aluminum and stone) in pink, red, gold, and brown on Copperplate Deluxe paper' +p297653 +sg291132 +S'1968' +p297654 +sg291134 +S'March' +p297655 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297656 +sa(dp297657 +g291130 +S'lithograph (stone) in black on white Arches paper' +p297658 +sg291132 +S'1963' +p297659 +sg291134 +S'Artist' +p297660 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297661 +sa(dp297662 +g291130 +S'lithograph (stone and zinc) in green-black and pink on white Arches paper' +p297663 +sg291132 +S'1963' +p297664 +sg291134 +S'The Incredible Nathan Irwin' +p297665 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297666 +sa(dp297667 +g291130 +S'lithograph (stone) in black on buff Arches paper' +p297668 +sg291132 +S'1965' +p297669 +sg291134 +S'The Window' +p297670 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297671 +sa(dp297672 +g291130 +S'lithograph (stone) in black on white Arches paper' +p297673 +sg291132 +S'1965' +p297674 +sg291134 +S'Grand Hotel' +p297675 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297676 +sa(dp297677 +g291130 +S'lithograph (stone and aluminum) in yellow and brown on white Arches paper' +p297678 +sg291132 +S'1965' +p297679 +sg291134 +S'Rod Random' +p297680 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297681 +sa(dp297682 +g291130 +S'lithograph (stone) in black on white Arches paper' +p297683 +sg291132 +S'1965' +p297684 +sg291134 +S'Kabuki' +p297685 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297686 +sa(dp297687 +g291130 +S'lithograph (stone) in black on white Arches paper' +p297688 +sg291132 +S'1965' +p297689 +sg291134 +S'Medusa' +p297690 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297691 +sa(dp297692 +g291130 +S'lithograph (stone and zine) in black and red on white Arches paper' +p297693 +sg291132 +S'1965' +p297694 +sg291134 +S'Love' +p297695 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297696 +sa(dp297697 +g291130 +S'lithograph (stone and zine) in green-black and yellow on white Arches paper' +p297698 +sg291132 +S'1965' +p297699 +sg291134 +S'Evening' +p297700 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297701 +sa(dp297702 +g291130 +S'lithograph (stone) in black on white Arches paper' +p297703 +sg291132 +S'1965' +p297704 +sg291134 +S'Family' +p297705 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297706 +sa(dp297707 +g291130 +S'lithograph (stone) in black on white Arches paper' +p297708 +sg291132 +S'1965' +p297709 +sg291134 +S'Flight' +p297710 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297711 +sa(dp297712 +g291130 +S'lithograph (aluminum and stone) in pink and blue-violet on white Arches paper' +p297713 +sg291132 +S'1965' +p297714 +sg291134 +S'Circus' +p297715 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297716 +sa(dp297717 +g291130 +S'lithograph (stone) in black on white Arches paper' +p297718 +sg291132 +S'1965' +p297719 +sg291134 +S'The Maze' +p297720 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297721 +sa(dp297722 +g291130 +S'lithograph (aluminum and stone) in light blue, pink and black on J. Green paper' +p297723 +sg291132 +S'1968' +p297724 +sg291134 +S'Gypsy' +p297725 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297726 +sa(dp297727 +g291130 +S'lithograph (zinc, aluminum and stone) in gold, black and brown on calendered Rives paper' +p297728 +sg291132 +S'1968' +p297729 +sg291134 +S'Self-Portrait' +p297730 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297731 +sa(dp297732 +g291130 +S'lithograph (zinc and stone) in red and black on German Etching paper' +p297733 +sg291132 +S'1968' +p297734 +sg291134 +S'Cowboy' +p297735 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297736 +sa(dp297737 +g291130 +S'lithograph (stone) in black on white Nacre paper' +p297738 +sg291132 +S'1968' +p297739 +sg291134 +S'Movies' +p297740 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297741 +sa(dp297742 +g291130 +S'lithograph (stone) in red-brown on natural Nacre paper' +p297743 +sg291132 +S'1968' +p297744 +sg291134 +S'W.C.' +p297745 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297746 +sa(dp297747 +g291130 +S'lithograph (stone) in brown-black on Rives BFK paper' +p297748 +sg291132 +S'1968' +p297749 +sg291134 +S'The Ladies' +p297750 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297751 +sa(dp297752 +g291130 +S'lithograph (stone) in black on German Etching paper' +p297753 +sg291132 +S'1968' +p297754 +sg291134 +S'Demented Truck' +p297755 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297756 +sa(dp297757 +g291130 +S'lithograph (stone) in red on German Etching paper' +p297758 +sg291132 +S'1968' +p297759 +sg291134 +S'Execution' +p297760 +sg291136 +g27 +sg291137 +S'James Strombotne' +p297761 +sa(dp297762 +g291130 +S'portfolio of 18 lithographs in black plus screenprinted cover' +p297763 +sg291132 +S'1970' +p297764 +sg291134 +S'A Family of Acrobatic Jugglers' +p297765 +sg291136 +g27 +sg291137 +S'Jan Stussy' +p297766 +sa(dp297767 +g291130 +S'American, 1945 - 2009' +p297768 +sg291132 +S'(printer)' +p297769 +sg291134 +S'9 of the 8 Views of Omi' +p297770 +sg291136 +g27 +sg291137 +S'Artist Information (' +p297771 +sa(dp297772 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p297773 +sg291132 +S'1970' +p297774 +sg291134 +S'Boxed Man in a Box' +p297775 +sg291136 +g27 +sg291137 +S'Jan Stussy' +p297776 +sa(dp297777 +g291130 +S'lithograph (zinc and stone) in red-brown and blackon Rives BFK paper' +p297778 +sg291132 +S'1970' +p297779 +sg291134 +S'Self-Contained Man' +p297780 +sg291136 +g27 +sg291137 +S'Jan Stussy' +p297781 +sa(dp297782 +g291130 +S'lithograph (stone) in black on buff Arches paper' +p297783 +sg291132 +S'1970' +p297784 +sg291134 +S'Impossible Act Performed by a Boxed Animal Posing as a Man' +p297785 +sg291136 +g27 +sg291137 +S'Jan Stussy' +p297786 +sa(dp297787 +g291130 +S'lithograph (stone) in black on buff Arches paper' +p297788 +sg291132 +S'1970' +p297789 +sg291134 +S'Second Impossible Act Performed by a Boxed Animal Posing as a Man' +p297790 +sg291136 +g27 +sg291137 +S'Jan Stussy' +p297791 +sa(dp297792 +g291130 +S'lithograph (aluminum and stone) in orange and black on white Arches paper' +p297793 +sg291132 +S'1970' +p297794 +sg291134 +S"Kim's Decision" +p297795 +sg291136 +g27 +sg291137 +S'Jan Stussy' +p297796 +sa(dp297797 +g291130 +S'lithograph (aluminum and stone) in black and gray on buff Arches paper' +p297798 +sg291132 +S'1970' +p297799 +sg291134 +S"Kim's Other Decision" +p297800 +sg291136 +g27 +sg291137 +S'Jan Stussy' +p297801 +sa(dp297802 +g291130 +S'lithograph (zinc) in black on Rives BFK paper' +p297803 +sg291132 +S'1970' +p297804 +sg291134 +S'Girl of My Dreams in a Peau de Crapaud' +p297805 +sg291136 +g27 +sg291137 +S'Jan Stussy' +p297806 +sa(dp297807 +g291130 +S'lithograph (stone) on uncalendered Rives paper' +p297808 +sg291132 +S'1970' +p297809 +sg291134 +S'Family of Acrobatic Jugglers' +p297810 +sg291136 +g27 +sg291137 +S'Jan Stussy' +p297811 +sa(dp297812 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p297813 +sg291132 +S'1970' +p297814 +sg291134 +S'9 of the 8 Views of Omi' +p297815 +sg291136 +g27 +sg291137 +S'Jan Stussy' +p297816 +sa(dp297817 +g291130 +S'lithograph (stone) in red on Crisbrook Waterleaf paper' +p297818 +sg291132 +S'1965' +p297819 +sg291134 +S'Red and White' +p297820 +sg291136 +g27 +sg291137 +S'George Sugarman' +p297821 +sa(dp297822 +g291130 +S'lithograph (aluminum) in white on buff Arches paper' +p297823 +sg291132 +S'1965' +p297824 +sg291134 +S'Poem' +p297825 +sg291136 +g27 +sg291137 +S'George Sugarman' +p297826 +sa(dp297827 +g291130 +S'lithograph (aluminum) in orange-beige on buff Arches paper' +p297828 +sg291132 +S'1965' +p297829 +sg291134 +S'Poem' +p297830 +sg291136 +g27 +sg291137 +S'George Sugarman' +p297831 +sa(dp297832 +g291130 +S'lithograph (aluminum) in orange and green on Crisbrook Waterleaf paper' +p297833 +sg291132 +S'1965' +p297834 +sg291134 +S'Green, White and Orange' +p297835 +sg291136 +g27 +sg291137 +S'George Sugarman' +p297836 +sa(dp297837 +g291130 +S'lithograph (aluminum) in red and blue on white Arches paper' +p297838 +sg291132 +S'1965' +p297839 +sg291134 +S'Red, White and Blue' +p297840 +sg291136 +g27 +sg291137 +S'George Sugarman' +p297841 +sa(dp297842 +g291130 +S'lithograph (aluminum) in orange and green on Crisbrook Waterleaf paper' +p297843 +sg291132 +S'1965' +p297844 +sg291134 +S'The Second Green, White and Orange' +p297845 +sg291136 +g27 +sg291137 +S'George Sugarman' +p297846 +sa(dp297847 +g291130 +S'lithograph (aluminum) in violet and yellow-orange on white Arches paper' +p297848 +sg291132 +S'1965' +p297849 +sg291134 +S'Yellow and Purple' +p297850 +sg291136 +g27 +sg291137 +S'George Sugarman' +p297851 +sa(dp297852 +g291130 +S'lithograph (aluminum) in red and gray on white Arches paper' +p297853 +sg291132 +S'1965' +p297854 +sg291134 +S'Red, White and Grey' +p297855 +sg291136 +g27 +sg291137 +S'George Sugarman' +p297856 +sa(dp297857 +g291130 +S'lithograph (aluminum) in yellow, pink, black and light green-gray on white Arches paper' +p297858 +sg291132 +S'1965' +p297859 +sg291134 +S'Litho Drawing II' +p297860 +sg291136 +g27 +sg291137 +S'George Sugarman' +p297861 +sa(dp297862 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p297863 +sg291132 +S'1965' +p297864 +sg291134 +S'Black and White' +p297865 +sg291136 +g27 +sg291137 +S'George Sugarman' +p297866 +sa(dp297867 +g291130 +S'lithograph (zinc and aluminum) in blue and black on Copperplate Deluxe paper' +p297868 +sg291132 +S'1965' +p297869 +sg291134 +S'Blue and Black' +p297870 +sg291136 +g27 +sg291137 +S'George Sugarman' +p297871 +sa(dp297872 +g291130 +S'lithograph (zinc and aluminum) in yellow and blackon Copperplate Deluxe paper' +p297873 +sg291132 +S'1965' +p297874 +sg291134 +S'Yellow and Black' +p297875 +sg291136 +g27 +sg291137 +S'George Sugarman' +p297876 +sa(dp297877 +g291130 +S'lithograph (aluminum) in red-orange, violet, brownand white on buff Arches paper' +p297878 +sg291132 +S'1965' +p297879 +sg291134 +S'Hope and Peace' +p297880 +sg291136 +g27 +sg291137 +S'George Sugarman' +p297881 +sa(dp297882 +g291130 +S'lithograph (aluminum) in green' +p297883 +sg291132 +S'1965' +p297884 +sg291134 +S'Green and White' +p297885 +sg291136 +g27 +sg291137 +S'George Sugarman' +p297886 +sa(dp297887 +g291130 +S'lithograph (aluminum) in orange, red-violet and blue on white Arches paper' +p297888 +sg291132 +S'1965' +p297889 +sg291134 +S'Orange, Magenta and Blue' +p297890 +sg291136 +g27 +sg291137 +S'George Sugarman' +p297891 +sa(dp297892 +g291130 +S'lithograph (stone) in red and yellow on Copperplate Deluxe paper' +p297893 +sg291132 +S'1965' +p297894 +sg291134 +S'Red, White and Yellow' +p297895 +sg291136 +g27 +sg291137 +S'George Sugarman' +p297896 +sa(dp297897 +g291130 +S'lithograph (aluminum) in black on white Arches paper' +p297898 +sg291132 +S'1965' +p297899 +sg291134 +S'Litho Drawing I' +p297900 +sg291136 +g27 +sg291137 +S'George Sugarman' +p297901 +sa(dp297902 +g291130 +S'lithograph (aluminum) in blue on Crisbrook Waterleaf paper' +p297903 +sg291132 +S'1965' +p297904 +sg291134 +S'Blue and White' +p297905 +sg291136 +g27 +sg291137 +S'George Sugarman' +p297906 +sa(dp297907 +g291130 +S'lithograph (aluminum) in orange on white Arches paper' +p297908 +sg291132 +S'1965' +p297909 +sg291134 +S'Orange and White' +p297910 +sg291136 +g27 +sg291137 +S'George Sugarman' +p297911 +sa(dp297912 +g291130 +S'lithograph (stone) in brown and black on Copperplate Deluxe paper' +p297913 +sg291132 +S'1965' +p297914 +sg291134 +S'Brown, Black and White' +p297915 +sg291136 +g27 +sg291137 +S'George Sugarman' +p297916 +sa(dp297917 +g291130 +S'lithograph (aluminum) in blue-violet on white Arches paper' +p297918 +sg291132 +S'1965' +p297919 +sg291134 +S'Purple and White' +p297920 +sg291136 +g27 +sg291137 +S'George Sugarman' +p297921 +sa(dp297922 +g291130 +S'lithograph (aluminum and zinc) in black and light violet on German Etching paper' +p297923 +sg291132 +S'1970' +p297924 +sg291134 +S'Untitled' +p297925 +sg291136 +g27 +sg291137 +S'Hitoshi Takatsuki' +p297926 +sa(dp297927 +g291130 +S'lithograph (stone) in green-black on Rives BFK paper' +p297928 +sg291132 +S'1964' +p297929 +sg291134 +S'Variations on a Man #1' +p297930 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p297931 +sa(dp297932 +g291130 +S'lithograph (zinc and stone) in pink, green, violet and gray-black on white Nacre paper' +p297933 +sg291132 +S'1964' +p297934 +sg291134 +S'Deux Fils' +p297935 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p297936 +sa(dp297937 +g291130 +S'lithograph (aluminum, zinc and stone) in beige, green-yellow, pink-brown and green-gray on Rives BFKpaper' +p297938 +sg291132 +S'1964' +p297939 +sg291134 +S'Variations on a Man #2' +p297940 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p297941 +sa(dp297942 +g291130 +S'lithograph (stone) in red-black on white Arches paper' +p297943 +sg291132 +S'1964' +p297944 +sg291134 +S'Man with Hat' +p297945 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p297946 +sa(dp297947 +g291130 +S'lithograph (stone) in green-black on white Arches paper' +p297948 +sg291132 +S'1964' +p297949 +sg291134 +S'Ghost' +p297950 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p297951 +sa(dp297952 +g291130 +S'lithograph (stone) in black on white Arches paper' +p297953 +sg291132 +S'1964' +p297954 +sg291134 +S'Woman' +p297955 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p297956 +sa(dp297957 +g291130 +S'lithograph (stone and zinc) in orange, ochre, two browns and red on white Arches paper' +p297958 +sg291132 +S'1964' +p297959 +sg291134 +S'Woman' +p297960 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p297961 +sa(dp297962 +g291130 +S'lithograph (stone) in black on white Arches paper' +p297963 +sg291132 +S'1964' +p297964 +sg291134 +S'Profile of a Man' +p297965 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p297966 +sa(dp297967 +g291130 +S'lithograph (stone and zinc) on violet, pink, green and dark brown on white Arches paper' +p297968 +sg291132 +S'1964' +p297969 +sg291134 +S'Profile of a Man' +p297970 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p297971 +sa(dp297972 +g291130 +S'lithograph (zinc) in transparent green and brown-green on white Arches paper' +p297973 +sg291132 +S'1964' +p297974 +sg291134 +S'Ghost' +p297975 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p297976 +sa(dp297977 +g291130 +S'lithograph (stone) in green-black on buff Arches paper' +p297978 +sg291132 +S'1964' +p297979 +sg291134 +S'Head' +p297980 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p297981 +sa(dp297982 +g291130 +S'lithograph (stone) in red-black on white Arches paper' +p297983 +sg291132 +S'1964' +p297984 +sg291134 +S'Moon Face' +p297985 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p297986 +sa(dp297987 +g291130 +S'lithograph (stone) in black on white Arches paper' +p297988 +sg291132 +S'1964' +p297989 +sg291134 +S'Head of Colossus' +p297990 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p297991 +sa(dp297992 +g291130 +S'lithograph (stone) in black on white Arches paper' +p297993 +sg291132 +S'1964' +p297994 +sg291134 +S'Transparent Man' +p297995 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p297996 +sa(dp297997 +g291130 +S'lithograph (zinc, stone and aluminum) in green-blue, violet and two blues on white Arches paper' +p297998 +sg291132 +S'1964' +p297999 +sg291134 +S'Full Moon' +p298000 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p298001 +sa(dp298002 +g291130 +S'lithograph (stone) in black on white Arches paper' +p298003 +sg291132 +S'1964' +p298004 +sg291134 +S'Head' +p298005 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p298006 +sa(dp298007 +g291130 +S'lithograph (stone) in black on white Arches paper' +p298008 +sg291132 +S'1964' +p298009 +sg291134 +S'Head' +p298010 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p298011 +sa(dp298012 +g291130 +S'lithograph (stone) in black on white Arches paper' +p298013 +sg291132 +S'1964' +p298014 +sg291134 +S'Head' +p298015 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p298016 +sa(dp298017 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p298018 +sg291132 +S'1964' +p298019 +sg291134 +S'Variations on a Man #3' +p298020 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p298021 +sa(dp298022 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p298023 +sg291132 +S'1964' +p298024 +sg291134 +S'Man in the Doorway #2' +p298025 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p298026 +sa(dp298027 +g291130 +S'lithograph (stone) in ochre, violet and red on white Arches paper' +p298028 +sg291132 +S'1964' +p298029 +sg291134 +S'Head of Colossus' +p298030 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p298031 +sa(dp298032 +g291130 +S'lithograph (stone) in black on white Arches paper' +p298033 +sg291132 +S'1964' +p298034 +sg291134 +S'Half-Moon' +p298035 +sg291136 +g27 +sg291137 +S'Rufino Tamayo' +p298036 +sa(dp298037 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p298038 +sg291132 +S'1964' +p298039 +sg291134 +S'Title Page' +p298040 +sg291136 +g27 +sg291137 +S'Walasse Ting' +p298041 +sa(dp298042 +g291130 +S'lithograph (stone and zinc) in yellow, red-violet,blue-green and violet-black on Rives BFK paper' +p298043 +sg291132 +S'1964' +p298044 +sg291134 +S'Hollywood Star' +p298045 +sg291136 +g27 +sg291137 +S'Walasse Ting' +p298046 +sa(dp298047 +g291130 +S'lithograph (aluminum) in green on Rives BFK paper' +p298048 +sg291132 +S'1964' +p298049 +sg291134 +S'Green Bombshell' +p298050 +sg291136 +g27 +sg291137 +S'Walasse Ting' +p298051 +sa(dp298052 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p298053 +sg291132 +S'1964' +p298054 +sg291134 +S'Black Orpheus' +p298055 +sg291136 +g27 +sg291137 +S'Walasse Ting' +p298056 +sa(dp298057 +g291130 +S'lithograph (zinc) in black on Rives BFK paper' +p298058 +sg291132 +S'1964' +p298059 +sg291134 +S'Dragon from China Sea' +p298060 +sg291136 +g27 +sg291137 +S'Walasse Ting' +p298061 +sa(dp298062 +g291130 +S'lithograph (stone and aluminum) in two blues and transparent green on Rives BFK paper' +p298063 +sg291132 +S'1964' +p298064 +sg291134 +S'Double Bubble Gum' +p298065 +sg291136 +g27 +sg291137 +S'Walasse Ting' +p298066 +sa(dp298067 +g291130 +S'lithograph (zinc and aluminum) in yellow, blue-green, red and blue on Rives BFK paper' +p298068 +sg291132 +S'1964' +p298069 +sg291134 +S'Hollywood Freeway' +p298070 +sg291136 +g27 +sg291137 +S'Walasse Ting' +p298071 +sa(dp298072 +g291130 +S'lithograph (stone) in red on Rives BFK paper' +p298073 +sg291132 +S'1964' +p298074 +sg291134 +S'Colophon' +p298075 +sg291136 +g27 +sg291137 +S'Walasse Ting' +p298076 +sa(dp298077 +g291130 +S'lithograph (zinc) in green on white Arches paper' +p298078 +sg291132 +S'1964' +p298079 +sg291134 +S'Title Page' +p298080 +sg291136 +g27 +sg291137 +S'Walasse Ting' +p298081 +sa(dp298082 +g291130 +S'lithograph (stone) in black on Shintori paper' +p298083 +sg291132 +S'1964' +p298084 +sg291134 +S'Untitled' +p298085 +sg291136 +g27 +sg291137 +S'Walasse Ting' +p298086 +sa(dp298087 +g291130 +S'lithograph (stone) in black on Shintori paper' +p298088 +sg291132 +S'1964' +p298089 +sg291134 +S'Untitled' +p298090 +sg291136 +g27 +sg291137 +S'Walasse Ting' +p298091 +sa(dp298092 +g291130 +S'lithograph (zinc) in blue-black on white Arches paper' +p298093 +sg291132 +S'1964' +p298094 +sg291134 +S'Blue Tango' +p298095 +sg291136 +g27 +sg291137 +S'Walasse Ting' +p298096 +sa(dp298097 +g291130 +S'lithograph (zinc and stone) in yellow and brown onwhite Arches paper' +p298098 +sg291132 +S'1964' +p298099 +sg291134 +S'Untitled' +p298100 +sg291136 +g27 +sg291137 +S'Walasse Ting' +p298101 +sa(dp298102 +g291130 +S'lithograph (stone) in red on white Arches paper' +p298103 +sg291132 +S'1964' +p298104 +sg291134 +S'Red Thing' +p298105 +sg291136 +g27 +sg291137 +S'Walasse Ting' +p298106 +sa(dp298107 +g291130 +S'lithograph (zinc) in black on Rives BFK paper' +p298108 +sg291132 +S'1964' +p298109 +sg291134 +S'Colophon' +p298110 +sg291136 +g27 +sg291137 +S'Walasse Ting' +p298111 +sa(dp298112 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p298113 +sg291132 +S'1969' +p298114 +sg291134 +S'The Magus I (Title Page)' +p298115 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298116 +sa(dp298117 +g291130 +S'portfolio w/ 12 lithographs (aluminum and stone) including title page and colophon on Rives BFK paper' +p298118 +sg291132 +S'1969' +p298119 +sg291134 +S'The Magus' +p298120 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298121 +sa(dp298122 +g291130 +S'lithograph (aluminum and stone) in two reds on Rives BFK paper' +p298123 +sg291132 +S'1969' +p298124 +sg291134 +S'The Magus II' +p298125 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298126 +sa(dp298127 +g291130 +S'lithograph (stone) in two blacks on Rives BFK paper' +p298128 +sg291132 +S'1969' +p298129 +sg291134 +S'The Magus III' +p298130 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298131 +sa(dp298132 +g291130 +S'lithograph (stone) in two reds on Rives BFK paper' +p298133 +sg291132 +S'1969' +p298134 +sg291134 +S'The Magus IV' +p298135 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298136 +sa(dp298137 +g291130 +S'lithograph (stone) in two blacks on Rives BFK paper' +p298138 +sg291132 +S'1969' +p298139 +sg291134 +S'The Magus V' +p298140 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298141 +sa(dp298142 +g291130 +S'lithograph (stone) in two reds on Rives BFK paper' +p298143 +sg291132 +S'1969' +p298144 +sg291134 +S'The Magus VI' +p298145 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298146 +sa(dp298147 +g291130 +S'lithograph (stone) in two reds on Rives BFK paper' +p298148 +sg291132 +S'1969' +p298149 +sg291134 +S'The Magus VII' +p298150 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298151 +sa(dp298152 +g291130 +S'lithograph (stone) in two blacks on Rives BFK paper' +p298153 +sg291132 +S'1969' +p298154 +sg291134 +S'The Magus VIII' +p298155 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298156 +sa(dp298157 +g291130 +S'lithograph (stone) in two reds on Rives BFK paper' +p298158 +sg291132 +S'1969' +p298159 +sg291134 +S'The Magus IX' +p298160 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298161 +sa(dp298162 +g291130 +S'lithograph (stone) in two blacks on Rives BFK paper' +p298163 +sg291132 +S'1969' +p298164 +sg291134 +S'The Magus X' +p298165 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298166 +sa(dp298167 +g291130 +S'lithograph (stone) in two reds on Rives BFK paper' +p298168 +sg291132 +S'1969' +p298169 +sg291134 +S'The Magus XI' +p298170 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298171 +sa(dp298172 +g291130 +S'lithograph (stone) in red and black on Rives BFK paper' +p298173 +sg291132 +S'1969' +p298174 +sg291134 +S'The Magus XII (Colophon)' +p298175 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298176 +sa(dp298177 +g291130 +S'portfolio w/ 13 lithographs (zinc) in black on buff Arches paper' +p298178 +sg291132 +S'1969' +p298179 +sg291134 +S'Seventy-Eight Spells' +p298180 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298181 +sa(dp298182 +g291130 +S'lithograph (stone) in light beige on Copperplate Deluxe paper' +p298183 +sg291132 +S'1969' +p298184 +sg291134 +S'Untitled' +p298185 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298186 +sa(dp298187 +g291130 +S'lithograph (stone) in black on Rives BFK paper' +p298188 +sg291132 +S'1969' +p298189 +sg291134 +S'Untitled' +p298190 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298191 +sa(dp298192 +g291130 +S'lithograph (stone) in two blacks on Rives BFK paper' +p298193 +sg291132 +S'1969' +p298194 +sg291134 +S'Untitled' +p298195 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298196 +sa(dp298197 +g291130 +S'lithograph (stone) in two blacks on Rives BFK paper' +p298198 +sg291132 +S'1969' +p298199 +sg291134 +S'Untitled' +p298200 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298201 +sa(dp298202 +g291130 +S'lithograph (stone) in two blacks on Rives BFK paper' +p298203 +sg291132 +S'1969' +p298204 +sg291134 +S'Untitled' +p298205 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298206 +sa(dp298207 +g291130 +S'lithograph (stone) in two reds on Rives BFK paper' +p298208 +sg291132 +S'1969' +p298209 +sg291134 +S'Untitled' +p298210 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298211 +sa(dp298212 +g291130 +S'lithograph (stone) in two reds on Rives BFK paper' +p298213 +sg291132 +S'1969' +p298214 +sg291134 +S'Untitled' +p298215 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298216 +sa(dp298217 +g291130 +S'lithograph (stone) in two reds on Rives BFK paper' +p298218 +sg291132 +S'1969' +p298219 +sg291134 +S'Untitled' +p298220 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298221 +sa(dp298222 +g291130 +S'lithograph (stone) in two reds on Rives BFK paper' +p298223 +sg291132 +S'1969' +p298224 +sg291134 +S'Untitled' +p298225 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298226 +sa(dp298227 +g291130 +S'lithograph (aluminum and stone) in two blacks on Rives BFK paper' +p298228 +sg291132 +S'1969' +p298229 +sg291134 +S'Untitled' +p298230 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298231 +sa(dp298232 +g291130 +S'lithograph (aluminum and stone) in two blacks on Rives BFK paper' +p298233 +sg291132 +S'1969' +p298234 +sg291134 +S'Untitled' +p298235 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298236 +sa(dp298237 +g291130 +S'lithograph (aluminum) in pearly white on natural Nacre paper' +p298238 +sg291132 +S'1969' +p298239 +sg291134 +S'Untitled' +p298240 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298241 +sa(dp298242 +g291130 +S'lithograph (aluminum and zinc) in pearly white andred-brown on natural Nacre paper' +p298243 +sg291132 +S'1969' +p298244 +sg291134 +S'Untitled' +p298245 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298246 +sa(dp298247 +g291130 +S'lithograph (stone) in two greens and blue on Copperplate Deluxe paper' +p298248 +sg291132 +S'1969' +p298249 +sg291134 +S'Untitled' +p298250 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298251 +sa(dp298252 +g291130 +S'lithograph (stone) in two greens and blue on Copperplate Deluxe paper' +p298253 +sg291132 +S'1969' +p298254 +sg291134 +S'Untitled' +p298255 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298256 +sa(dp298257 +g291130 +S'lithograph (zinc and aluminum) in blue, yellow andred on on stainless steel' +p298258 +sg291132 +S'1969' +p298259 +sg291134 +S'Untitled' +p298260 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298261 +sa(dp298262 +g291130 +S'lithograph (aluminum) in twelve colors on uncalendered Rives paper' +p298263 +sg291132 +S'1969' +p298264 +sg291134 +S'Untitled' +p298265 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298266 +sa(dp298267 +g291130 +S'lithograph (aluminum) in light beige on uncalendered Rives paper' +p298268 +sg291132 +S'1969' +p298269 +sg291134 +S'Untitled' +p298270 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298271 +sa(dp298272 +g291130 +S'lithograph (stone and aluminum) in pink and orangeon Copperplate Deluxe paper' +p298273 +sg291132 +S'1969' +p298274 +sg291134 +S'Untitled' +p298275 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298276 +sa(dp298277 +g291130 +S'lithograph (stone and aluminum) in yellow-green and light blue on uncalendered Rives paper' +p298278 +sg291132 +S'1969' +p298279 +sg291134 +S'Untitled' +p298280 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298281 +sa(dp298282 +g291130 +S'lithograph (stone and aluminum) in pink and red onCopperplate Deluxe paper' +p298283 +sg291132 +S'1969' +p298284 +sg291134 +S'Untitled' +p298285 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298286 +sa(dp298287 +g291130 +S'lithograph (stone and aluminum) in brown-black andblue-black on calendered Rives paper' +p298288 +sg291132 +S'1969' +p298289 +sg291134 +S'Untitled' +p298290 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298291 +sa(dp298292 +g291130 +S'lithograph (aluminum) in green-black and red-blackon calendered Rives paper' +p298293 +sg291132 +S'1969' +p298294 +sg291134 +S'Untitled' +p298295 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298296 +sa(dp298297 +g291130 +S'lithograph (aluminum) in brown-black on Fasson gold mylar' +p298298 +sg291132 +S'1969' +p298299 +sg291134 +S'Untitled' +p298300 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298301 +sa(dp298302 +g291130 +S'lithograph (zinc) in black on perforated Rives BFKpaper' +p298303 +sg291132 +S'1969' +p298304 +sg291134 +S'Untitled' +p298305 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298306 +sa(dp298307 +g291130 +S'lithograph (zinc) in beige on buff Arches paper' +p298308 +sg291132 +S'1969' +p298309 +sg291134 +S'Untitled' +p298310 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298311 +sa(dp298312 +g291130 +S'lithograph (zinc) in black on buff Arches paper' +p298313 +sg291132 +S'1969' +p298314 +sg291134 +S'Untitled' +p298315 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298316 +sa(dp298317 +g291130 +S'lithograph (aluminum) in gray-green on calendered Rives paper' +p298318 +sg291132 +S'1969' +p298319 +sg291134 +S'Untitled' +p298320 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298321 +sa(dp298322 +g291130 +S'lithograph (aluminum) in yellow on J. Green paper' +p298323 +sg291132 +S'1969' +p298324 +sg291134 +S'Untitled' +p298325 +sg291136 +g27 +sg291137 +S'Hugh Townley' +p298326 +sa(dp298327 +g291130 +S'lithograph (aluminum) in orange, pink, two greens and blue on white Arches paper' +p298328 +sg291132 +S'1967' +p298329 +sg291134 +S'Arcadian Night' +p298330 +sg291136 +g27 +sg291137 +S'Donna Tryon' +p298331 +sa(dp298332 +g291130 +S'lithograph (zinc) in white on Copperplate Deluxe paper' +p298333 +sg291132 +S'1966' +p298334 +sg291134 +S'White' +p298335 +sg291136 +g27 +sg291137 +S'William Turnbull' +p298336 +sa(dp298337 +g291130 +S'lithograph (aluminum and zinc) in two blues on Copperplate Deluxe paper' +p298338 +sg291132 +S'1966' +p298339 +sg291134 +S'Blue' +p298340 +sg291136 +g27 +sg291137 +S'William Turnbull' +p298341 +sa(dp298342 +g291130 +S'lithograph (aluminum and zinc) in dark gray and dark red-violet on Copperplate Deluxe paper' +p298343 +sg291132 +S'1966' +p298344 +sg291134 +S'Grey' +p298345 +sg291136 +g27 +sg291137 +S'William Turnbull' +p298346 +sa(dp298347 +g291130 +S'lithograph (zinc) in two yellows on German Etchingpaper' +p298348 +sg291132 +S'1966' +p298349 +sg291134 +S'Yellow' +p298350 +sg291136 +g27 +sg291137 +S'William Turnbull' +p298351 +sa(dp298352 +g291130 +S'lithograph (zinc) in two greens on Copperplate Deluxe paper' +p298353 +sg291132 +S'1966' +p298354 +sg291134 +S'Green' +p298355 +sg291136 +g27 +sg291137 +S'William Turnbull' +p298356 +sa(dp298357 +g291130 +S'lithograph (zinc) in orange on German Etching paper' +p298358 +sg291132 +S'1966' +p298359 +sg291134 +S'Orange' +p298360 +sg291136 +g27 +sg291137 +S'William Turnbull' +p298361 +sa(dp298362 +g291130 +S'lithograph (zinc and stone) in gold, ochre and brown-black on white Arches paper' +p298363 +sg291132 +S'1963' +p298364 +sg291134 +S'Head I' +p298365 +sg291136 +g27 +sg291137 +S'Kenneth Tyler' +p298366 +sa(dp298367 +g291130 +S'lithograph (aluminum and zinc) in yellow, two beiges and two greens on white Arches paper' +p298368 +sg291132 +S'1963' +p298369 +sg291134 +S'Head II' +p298370 +sg291136 +g27 +sg291137 +S'Kenneth Tyler' +p298371 +sa(dp298372 +g291130 +S'lithograph (aluminum and zinc) in two grays, green-black, blue-green, blue and violet on white Arches paper' +p298373 +sg291132 +S'1964' +p298374 +sg291134 +S'Reflection' +p298375 +sg291136 +g27 +sg291137 +S'Kenneth Tyler' +p298376 +sa(dp298377 +g291130 +S'lithograph (stone) in brown-gray and blue-black onwhite Arches paper' +p298378 +sg291132 +S'1964' +p298379 +sg291134 +S'Homage to Susan Jonas' +p298380 +sg291136 +g27 +sg291137 +S'Kenneth Tyler' +p298381 +sa(dp298382 +g291130 +S'lithograph (stone) in ochre and black on German Etching paper' +p298383 +sg291132 +S'1966' +p298384 +sg291134 +S'Untitled' +p298385 +sg291136 +g27 +sg291137 +S'Ernst Van Leyden' +p298386 +sa(dp298387 +g291130 +S'lithograph (stone) in black on German Etching paper' +p298388 +sg291132 +S'1966' +p298389 +sg291134 +S'Untitled' +p298390 +sg291136 +g27 +sg291137 +S'Ernst Van Leyden' +p298391 +sa(dp298392 +g291130 +S'lithograph (zinc) in yellow-green and orange on German Etching paper' +p298393 +sg291132 +S'1967' +p298394 +sg291134 +S'Whirl' +p298395 +sg291136 +g27 +sg291137 +S'Ernst Van Leyden' +p298396 +sa(dp298397 +g291130 +S'lithograph (stone) in yellow and two blues on Copperplate Deluxe paper' +p298398 +sg291132 +S'1967' +p298399 +sg291134 +S'Octavio Paz' +p298400 +sg291136 +g27 +sg291137 +S'Ernst Van Leyden' +p298401 +sa(dp298402 +g291130 +S'lithograph (stone) in yellow, two blues and pink on Copperplate Deluxe paper' +p298403 +sg291132 +S'1967' +p298404 +sg291134 +S'Here and Now I' +p298405 +sg291136 +g27 +sg291137 +S'Ernst Van Leyden' +p298406 +sa(dp298407 +g291130 +S'lithograph (stone) in yellow, two blues and white on Copperplate Deluxe paper' +p298408 +sg291132 +S'1967' +p298409 +sg291134 +S'Here and Now II' +p298410 +sg291136 +g27 +sg291137 +S'Ernst Van Leyden' +p298411 +sa(dp298412 +g291130 +S'lithograph (stone) in green, pink, blue-green and gray on white Arches paper' +p298413 +sg291132 +S'1967' +p298414 +sg291134 +S'A Constellation of Consideration I' +p298415 +sg291136 +g27 +sg291137 +S'Ernst Van Leyden' +p298416 +sa(dp298417 +g291130 +S'lithograph (stone) in gray and black on white Nacre paper' +p298418 +sg291132 +S'1967' +p298419 +sg291134 +S'A Constellation of Consideration II' +p298420 +sg291136 +g27 +sg291137 +S'Ernst Van Leyden' +p298421 +sa(dp298422 +g291130 +S'lithograph (zinc and stone) in orange, two yellowsand green on natural Nacre paper' +p298423 +sg291132 +S'1967' +p298424 +sg291134 +S'A Constellation of Consideration III' +p298425 +sg291136 +g27 +sg291137 +S'Ernst Van Leyden' +p298426 +sa(dp298427 +g291130 +S'lithograph (zinc and stone) in two blues, pink andviolet on Copperplate Deluxe paper' +p298428 +sg291132 +S'1967' +p298429 +sg291134 +S'Japanese Moon I' +p298430 +sg291136 +g27 +sg291137 +S'Ernst Van Leyden' +p298431 +sa(dp298432 +g291130 +S'lithograph (stone) in beige and orange on Copperplate Deluxe paper' +p298433 +sg291132 +S'1967' +p298434 +sg291134 +S'Japanese Moon II' +p298435 +sg291136 +g27 +sg291137 +S'Ernst Van Leyden' +p298436 +sa(dp298437 +g291130 +S'lithograph (stone) in beige and black on Copperplate Deluxe paper' +p298438 +sg291132 +S'1967' +p298439 +sg291134 +S'Japanese Moon III' +p298440 +sg291136 +g27 +sg291137 +S'Ernst Van Leyden' +p298441 +sa(dp298442 +g291130 +S'lithograph (stone and aluminum) in orange, green, yellow and violet on natural Nacre paper' +p298443 +sg291132 +S'1967' +p298444 +sg291134 +S'Rotation I' +p298445 +sg291136 +g27 +sg291137 +S'Ernst Van Leyden' +p298446 +sa(dp298447 +g291130 +S'lithograph (stone and aluminum) in yellow-green, yellow, red and blue on German Etching paper' +p298448 +sg291132 +S'1967' +p298449 +sg291134 +S'Green Apparition' +p298450 +sg291136 +g27 +sg291137 +S'Ernst Van Leyden' +p298451 +sa(dp298452 +g291130 +S'lithograph (stone and aluminum) in yellow-green, blue and brown on German Etching paper' +p298453 +sg291132 +S'1967' +p298454 +sg291134 +S'Baumgeist' +p298455 +sg291136 +g27 +sg291137 +S'Ernst Van Leyden' +p298456 +sa(dp298457 +g291130 +S'lithograph (stone) in yellow-beige on natural Nacre paper' +p298458 +sg291132 +S'1967' +p298459 +sg291134 +S'Golden Radiance' +p298460 +sg291136 +g27 +sg291137 +S'Ernst Van Leyden' +p298461 +sa(dp298462 +g291130 +S'lithograph (stone) in gray on white Arches paper' +p298463 +sg291132 +S'1967' +p298464 +sg291134 +S'Emaciated Owl II' +p298465 +sg291136 +g27 +sg291137 +S'Ernst Van Leyden' +p298466 +sa(dp298467 +g291130 +S'lithograph (stone) in blue and gray on white Arches paper' +p298468 +sg291132 +S'1967' +p298469 +sg291134 +S'Emaciated Owl III' +p298470 +sg291136 +g27 +sg291137 +S'Ernst Van Leyden' +p298471 +sa(dp298472 +g291130 +S'lithograph (zinc and stone) in pink, light blue and gray on white Arches paper' +p298473 +sg291132 +S'1967' +p298474 +sg291134 +S'Provo' +p298475 +sg291136 +g27 +sg291137 +S'Ernst Van Leyden' +p298476 +sa(dp298477 +g291130 +S'lithograph in black and white on Rives BFK paper' +p298478 +sg291132 +S'1964' +p298479 +sg291134 +S'Untitled' +p298480 +sg291136 +g27 +sg291137 +S'Dean Warnholtz' +p298481 +sa(dp298482 +g291130 +S'lithograph in black and white on Rives BFK paper' +p298483 +sg291132 +S'1964' +p298484 +sg291134 +S'Untitled' +p298485 +sg291136 +g27 +sg291137 +S'Dean Warnholtz' +p298486 +sa(dp298487 +g291130 +S'lithograph (zinc) in two blacks, ochre and white' +p298488 +sg291132 +S'1962/1963' +p298489 +sg291134 +S'Last Conversation' +p298490 +sg291136 +g27 +sg291137 +S'June Wayne' +p298491 +sa(dp298492 +g291130 +S'lithograph (zinc) in black and transparent gray onwhite Arches paper' +p298493 +sg291132 +S'1963' +p298494 +sg291134 +S'Dead Center II' +p298495 +sg291136 +g27 +sg291137 +S'June Wayne' +p298496 +sa(dp298497 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p298498 +sg291132 +S'1963' +p298499 +sg291134 +S'Dead Center I' +p298500 +sg291136 +g27 +sg291137 +S'June Wayne' +p298501 +sa(dp298502 +g291130 +S'lithograph (zinc) in gray-green and blue on white Arches paper' +p298503 +sg291132 +S'1963' +p298504 +sg291134 +S'Green Key' +p298505 +sg291136 +g27 +sg291137 +S'June Wayne' +p298506 +sa(dp298507 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p298508 +sg291132 +S'1963' +p298509 +sg291134 +S'First Key' +p298510 +sg291136 +g27 +sg291137 +S'June Wayne' +p298511 +sa(dp298512 +g291130 +S'lithograph (zinc) in dark beige, light blue and two browns on white Arches paper' +p298513 +sg291132 +S'1963' +p298514 +sg291134 +S'Three Observers' +p298515 +sg291136 +g27 +sg291137 +S'June Wayne' +p298516 +sa(dp298517 +g291130 +S'lithograph (zinc) in black' +p298518 +sg291132 +S'1963' +p298519 +sg291134 +S'Walk on the Rocks' +p298520 +sg291136 +g27 +sg291137 +S'June Wayne' +p298521 +sa(dp298522 +g291130 +S'lithograph (zinc) in black on Copperplate Deluxe paper' +p298523 +sg291132 +S'1965' +p298524 +sg291134 +S'At Last a Thousand I' +p298525 +sg291136 +g27 +sg291137 +S'June Wayne' +p298526 +sa(dp298527 +g291130 +S'lithograph (aluminum and zinc) in blue, orange, light green and black on white Nacre paper' +p298528 +sg291132 +S'1965' +p298529 +sg291134 +S'At Last a Thousand II' +p298530 +sg291136 +g27 +sg291137 +S'June Wayne' +p298531 +sa(dp298532 +g291130 +S'lithograph (zinc) in black on Copperplate Deluxe paper' +p298533 +sg291132 +S'1965' +p298534 +sg291134 +S'At Last a Thousand III' +p298535 +sg291136 +g27 +sg291137 +S'June Wayne' +p298536 +sa(dp298537 +g291130 +S'lithograph (zinc) in black on Copperplate Deluxe paper' +p298538 +sg291132 +S'1965' +p298539 +sg291134 +S'At Last a Thousand IV' +p298540 +sg291136 +g27 +sg291137 +S'June Wayne' +p298541 +sa(dp298542 +g291130 +S'lithograph (aluminum) in yellow-orange, light green and two reds on white Nacre paper' +p298543 +sg291132 +S'1967' +p298544 +sg291134 +S'Two Thousand Too Soon' +p298545 +sg291136 +g27 +sg291137 +S'June Wayne' +p298546 +sa(dp298547 +g291130 +S'lithograph (aluminum) in yellow, two greens, violet, orange, red and blue on Copperplate Deluxe paper' +p298548 +sg291132 +S'1967' +p298549 +sg291134 +S'Lemmings Crush' +p298550 +sg291136 +g27 +sg291137 +S'June Wayne' +p298551 +sa(dp298552 +g291130 +S'lithograph (stone and aluminum) in gray-green, black, orange-brown and pink on German Etching paper' +p298553 +sg291132 +S'1967' +p298554 +sg291134 +S'Stone Circle' +p298555 +sg291136 +g27 +sg291137 +S'June Wayne' +p298556 +sa(dp298557 +g291130 +S'lithograph (stone and aluminum) in two blacks on Copperplate Deluxe paper' +p298558 +sg291132 +S'1967' +p298559 +sg291134 +S'The Shelf' +p298560 +sg291136 +g27 +sg291137 +S'June Wayne' +p298561 +sa(dp298562 +g291130 +S'lithograph (stone) in gray, brown, ochre and whiteon buff Arches paper' +p298563 +sg291132 +S'1967' +p298564 +sg291134 +S'Thirteenth Memory' +p298565 +sg291136 +g27 +sg291137 +S'June Wayne' +p298566 +sa(dp298567 +g291130 +S'lithograph (stone) in yellow, two reds, orange andbrown-green on white Nacre paper' +p298568 +sg291132 +S'1967/1968' +p298569 +sg291134 +S"Lemmings' Choice" +p298570 +sg291136 +g27 +sg291137 +S'June Wayne' +p298571 +sa(dp298572 +g291130 +S'lithograph (aluminum and stone) in two blacks on Rives paper' +p298573 +sg291132 +S'1967/1968' +p298574 +sg291134 +S'To Get to the Other Side' +p298575 +sg291136 +g27 +sg291137 +S'June Wayne' +p298576 +sa(dp298577 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p298578 +sg291132 +S'1967/1968' +p298579 +sg291134 +S'Plus ca Change-' +p298580 +sg291136 +g27 +sg291137 +S'June Wayne' +p298581 +sa(dp298582 +g291130 +S'lithograph (stone) in brown-green, blue and two blacks on uncalendered Rives paper' +p298583 +sg291132 +S'1968/1969' +p298584 +sg291134 +S'Plus ca Reste--Meme' +p298585 +sg291136 +g27 +sg291137 +S'June Wayne' +p298586 +sa(dp298587 +g291130 +S'lithograph (stone) in light brown, gray and black on Copperplate Deluxe paper' +p298588 +sg291132 +S'1968' +p298589 +sg291134 +S"Lemmings' Night" +p298590 +sg291136 +g27 +sg291137 +S'June Wayne' +p298591 +sa(dp298592 +g291130 +S'lithograph (stone) in black on German Etching paper' +p298593 +sg291132 +S'1968' +p298594 +sg291134 +S'Wave Nineteen Twenty' +p298595 +sg291136 +g27 +sg291137 +S'June Wayne' +p298596 +sa(dp298597 +g291130 +S'lithograph (stone) in three blacks on calendered Rives paper' +p298598 +sg291132 +S'1969' +p298599 +sg291134 +S'One Up, One Down' +p298600 +sg291136 +g27 +sg291137 +S'June Wayne' +p298601 +sa(dp298602 +g291130 +S'lithograph (stone) in three blues, gray-green, ochre, orange and red on uncalendered Rives paper' +p298603 +sg291132 +S'1969' +p298604 +sg291134 +S"Because It's There" +p298605 +sg291136 +g27 +sg291137 +S'June Wayne' +p298606 +sa(dp298607 +g291130 +S'lithograph (stone and zinc) in two blacks on uncalendered Rives paper' +p298608 +sg291132 +S'1970' +p298609 +sg291134 +S'Tamarind Decade' +p298610 +sg291136 +g27 +sg291137 +S'June Wayne' +p298611 +sa(dp298612 +g291130 +S'lithograph (stone and zinc) in orange-brown, green, red, blue and brown-red on uncalendered Rives paper' +p298613 +sg291132 +S'1970' +p298614 +sg291134 +S"C'mona My House" +p298615 +sg291136 +g27 +sg291137 +S'June Wayne' +p298616 +sa(dp298617 +g291130 +S'lithograph (aluminum) in black-violet on calendered Rives paper' +p298618 +sg291132 +S'1970' +p298619 +sg291134 +S'The Great Roller Derby' +p298620 +sg291136 +g27 +sg291137 +S'June Wayne' +p298621 +sa(dp298622 +g291130 +S'lithograph (zinc) in blue and black on white Arches paper' +p298623 +sg291132 +S'1964' +p298624 +sg291134 +S'Untitled' +p298625 +sg291136 +g27 +sg291137 +S'Hugo Weber' +p298626 +sa(dp298627 +g291130 +S'lithograph (zinc) in light yellow an black on white Arches paper' +p298628 +sg291132 +S'1964' +p298629 +sg291134 +S'Black Punch' +p298630 +sg291136 +g27 +sg291137 +S'Hugo Weber' +p298631 +sa(dp298632 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p298633 +sg291132 +S'1964' +p298634 +sg291134 +S'Untitled' +p298635 +sg291136 +g27 +sg291137 +S'Hugo Weber' +p298636 +sa(dp298637 +g291130 +S'lithograph (zinc and stone) in orange-red and black on white Arches paper' +p298638 +sg291132 +S'1964' +p298639 +sg291134 +S'L.A. Sunset' +p298640 +sg291136 +g27 +sg291137 +S'Hugo Weber' +p298641 +sa(dp298642 +g291130 +S'lithograph (zinc) in blue-violet and light blue onwhite Arches paper' +p298643 +sg291132 +S'1964' +p298644 +sg291134 +S'Plum De De' +p298645 +sg291136 +g27 +sg291137 +S'Hugo Weber' +p298646 +sa(dp298647 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p298648 +sg291132 +S'1964' +p298649 +sg291134 +S'Untitled' +p298650 +sg291136 +g27 +sg291137 +S'Hugo Weber' +p298651 +sa(dp298652 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p298653 +sg291132 +S'1964' +p298654 +sg291134 +S'Untitled' +p298655 +sg291136 +g27 +sg291137 +S'Hugo Weber' +p298656 +sa(dp298657 +g291130 +S'lithograph (stone) in gray on white Arches paper' +p298658 +sg291132 +S'1964' +p298659 +sg291134 +S'La Grisaille' +p298660 +sg291136 +g27 +sg291137 +S'Hugo Weber' +p298661 +sa(dp298662 +g291130 +S'lithograph (zinc) in orange and black on natural Nacre paper' +p298663 +sg291132 +S'1964' +p298664 +sg291134 +S'Untitled' +p298665 +sg291136 +g27 +sg291137 +S'Hugo Weber' +p298666 +sa(dp298667 +g291130 +S'lithograph (stone) in blue on white Nacre paper' +p298668 +sg291132 +S'1964' +p298669 +sg291134 +S'Blue Up' +p298670 +sg291136 +g27 +sg291137 +S'Hugo Weber' +p298671 +sa(dp298672 +g291130 +S'lithograph (zinc) in black on natural Nacre paper' +p298673 +sg291132 +S'1964' +p298674 +sg291134 +S'P.L.' +p298675 +sg291136 +g27 +sg291137 +S'Hugo Weber' +p298676 +sa(dp298677 +g291130 +S'lithograph (zinc) in green on buff Arches paper' +p298678 +sg291132 +S'1964' +p298679 +sg291134 +S'Verdure' +p298680 +sg291136 +g27 +sg291137 +S'Hugo Weber' +p298681 +sa(dp298682 +g291130 +S'lithograph (stone) in black on white Arches paper' +p298683 +sg291132 +S'1964' +p298684 +sg291134 +S'Black II' +p298685 +sg291136 +g27 +sg291137 +S'Hugo Weber' +p298686 +sa(dp298687 +g291130 +S'lithograph (stone) in black on white Arches paper' +p298688 +sg291132 +S'1964' +p298689 +sg291134 +S'Spook Noir' +p298690 +sg291136 +g27 +sg291137 +S'Hugo Weber' +p298691 +sa(dp298692 +g291130 +S'lithograph (zinc) in black on Rives BFK paper' +p298693 +sg291132 +S'1964' +p298694 +sg291134 +S'Chez Elle' +p298695 +sg291136 +g27 +sg291137 +S'Hugo Weber' +p298696 +sa(dp298697 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p298698 +sg291132 +S'1968' +p298699 +sg291134 +S'See America First (Title Page and Colophon)' +p298700 +sg291136 +g27 +sg291137 +S'H.C. Westermann' +p298701 +sa(dp298702 +g291130 +S'portfolio w/ 18 lithographs (stone, zinc and aluminum) including title page and colophon on Copperplate Deluxe paper' +p298703 +sg291132 +S'1968' +p298704 +sg291134 +S'See America First' +p298705 +sg291136 +g27 +sg291137 +S'H.C. Westermann' +p298706 +sa(dp298707 +g291130 +S'lithograph (zinc and stone) in yellow, red and black on Copperplate Deluxe paper' +p298708 +sg291132 +S'1968' +p298709 +sg291134 +S'See America First 1' +p298710 +sg291136 +g27 +sg291137 +S'H.C. Westermann' +p298711 +sa(dp298712 +g291130 +S'lithograph (zinc and stone) in yellow, red, blue and black on Copperplate Deluxe paper' +p298713 +sg291132 +S'1968' +p298714 +sg291134 +S'See America First 2' +p298715 +sg291136 +g27 +sg291137 +S'H.C. Westermann' +p298716 +sa(dp298717 +g291130 +S'lithograph (zinc and stone) in yellow, red, blue and black on Copperplate Deluxe paper' +p298718 +sg291132 +S'1968' +p298719 +sg291134 +S'See America First 3' +p298720 +sg291136 +g27 +sg291137 +S'H.C. Westermann' +p298721 +sa(dp298722 +g291130 +S'lithograph (aluminum) in yellow and black on Copperplate Deluxe paper' +p298723 +sg291132 +S'1968' +p298724 +sg291134 +S'See America First 4' +p298725 +sg291136 +g27 +sg291137 +S'H.C. Westermann' +p298726 +sa(dp298727 +g291130 +S'lithograph (aluminum) in blue on Copperplate Deluxe paper' +p298728 +sg291132 +S'1968' +p298729 +sg291134 +S'See America First 5' +p298730 +sg291136 +g27 +sg291137 +S'H.C. Westermann' +p298731 +sa(dp298732 +g291130 +S'lithograph (aluminum and stone) in yellow, two blues and black on Copperplate Deluxe paper' +p298733 +sg291132 +S'1968' +p298734 +sg291134 +S'See America First 6' +p298735 +sg291136 +g27 +sg291137 +S'H.C. Westermann' +p298736 +sa(dp298737 +g291130 +S'lithograph (aluminum and stone) in two yellows, two pinks, two blues and black on Copperplate Deluxepaper' +p298738 +sg291132 +S'1968' +p298739 +sg291134 +S'See America First 7' +p298740 +sg291136 +g27 +sg291137 +S'H.C. Westermann' +p298741 +sa(dp298742 +g291130 +S'lithograph (zinc and aluminum) in yellow, two oranges, green and black on Copperplate Deluxe paper' +p298743 +sg291132 +S'1968' +p298744 +sg291134 +S'See America First 8' +p298745 +sg291136 +g27 +sg291137 +S'H.C. Westermann' +p298746 +sa(dp298747 +g291130 +S'lithograph (aluminum) in yellow, red, blue and black on Copperplate Deluxe paper' +p298748 +sg291132 +S'1968' +p298749 +sg291134 +S'See America First 9' +p298750 +sg291136 +g27 +sg291137 +S'H.C. Westermann' +p298751 +sa(dp298752 +g291130 +S'lithograph (aluminum) in yellow, orange, blue and black on Copperplate Deluxe paper' +p298753 +sg291132 +S'1968' +p298754 +sg291134 +S'See America First 10' +p298755 +sg291136 +g27 +sg291137 +S'H.C. Westermann' +p298756 +sa(dp298757 +g291130 +S'lithograph (aluminum) in pink and black on Copperplate Deluxe paper' +p298758 +sg291132 +S'1968' +p298759 +sg291134 +S'See America First 11' +p298760 +sg291136 +g27 +sg291137 +S'H.C. Westermann' +p298761 +sa(dp298762 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p298763 +sg291132 +S'1968' +p298764 +sg291134 +S'See America First 12' +p298765 +sg291136 +g27 +sg291137 +S'H.C. Westermann' +p298766 +sa(dp298767 +g291130 +S'lithograph (aluminum and stone) in yellow and black on Copperplate Deluxe paper' +p298768 +sg291132 +S'1968' +p298769 +sg291134 +S'See America First 13' +p298770 +sg291136 +g27 +sg291137 +S'H.C. Westermann' +p298771 +sa(dp298772 +g291130 +S'lithograph (aluminum and stone) in red and black on Copperplate Deluxe paper' +p298773 +sg291132 +S'1968' +p298774 +sg291134 +S'See America First 14' +p298775 +sg291136 +g27 +sg291137 +S'H.C. Westermann' +p298776 +sa(dp298777 +g291130 +S'lithograph (stone) in black on Copperplate Deluxe paper' +p298778 +sg291132 +S'1968' +p298779 +sg291134 +S'See America First 15' +p298780 +sg291136 +g27 +sg291137 +S'H.C. Westermann' +p298781 +sa(dp298782 +g291130 +S'lithograph (aluminum and stone) in green and blackon Copperplate Deluxe paper' +p298783 +sg291132 +S'1968' +p298784 +sg291134 +S'See America First 16' +p298785 +sg291136 +g27 +sg291137 +S'H.C. Westermann' +p298786 +sa(dp298787 +g291130 +S'lithograph (aluminum and stone) in yellow and black on Copperplate Deluxe paper' +p298788 +sg291132 +S'1968' +p298789 +sg291134 +S'See America First 17' +p298790 +sg291136 +g27 +sg291137 +S'H.C. Westermann' +p298791 +sa(dp298792 +g291130 +S'lithograph (aluminum and stone) in yellow and black on Copperplate Deluxe paper' +p298793 +sg291132 +S'1968' +p298794 +sg291134 +S'Untitled' +p298795 +sg291136 +g27 +sg291137 +S'H.C. Westermann' +p298796 +sa(dp298797 +g291130 +S'lithograph (aluminum) in black and blended green, blue and red on calendered Rives paper' +p298798 +sg291132 +S'1970' +p298799 +sg291134 +S'Untitled' +p298800 +sg291136 +g27 +sg291137 +S'Harry E. Westlund' +p298801 +sa(dp298802 +g291130 +S'lithograph (aluminum) in black and blended green and orange on buff Arches paper' +p298803 +sg291132 +S'1970' +p298804 +sg291134 +S'Untitled' +p298805 +sg291136 +g27 +sg291137 +S'Harry E. Westlund' +p298806 +sa(dp298807 +g291130 +S'lithograph (stone) in brown on buff Arches paper' +p298808 +sg291132 +S'1970' +p298809 +sg291134 +S'Untitled' +p298810 +sg291136 +g27 +sg291137 +S'Charles Wilbert White' +p298811 +sa(dp298812 +g291130 +S'lithograph (zinc and stone) in yellow and brown oncalendered Rives paper' +p298813 +sg291132 +S'1970' +p298814 +sg291134 +S'Untitled' +p298815 +sg291136 +g27 +sg291137 +S'Charles Wilbert White' +p298816 +sa(dp298817 +g291134 +S'Untitled' +p298818 +sg291137 +S'Charles Wilbert White' +p298819 +sg291130 +S'lithograph (stone) in brown on uncalendered Rives paper' +p298820 +sg291132 +S'1970' +p298821 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bc3.jpg' +p298822 +sg291136 +g27 +sa(dp298823 +g291130 +S'lithograph (aluminum) in dark pink, green and black on calendered Rives paper' +p298824 +sg291132 +S'1970' +p298825 +sg291134 +S'Untitled' +p298826 +sg291136 +g27 +sg291137 +S'Charles Wilbert White' +p298827 +sa(dp298828 +g291130 +S'lithograph (stone) in brown on buff Arches paper' +p298829 +sg291132 +S'1970' +p298830 +sg291134 +S'Untitled' +p298831 +sg291136 +g27 +sg291137 +S'Charles Wilbert White' +p298832 +sa(dp298833 +g291130 +S'lithograph (zinc and aluminum) in two greens, three blues, two grays and red-brown on buff Arches paper' +p298834 +sg291132 +S'1970' +p298835 +sg291134 +S'Alquipa' +p298836 +sg291136 +g27 +sg291137 +S'S. Tracy White' +p298837 +sa(dp298838 +g291130 +S'lithograph (stone and zinc) in blue and black on Rives BFK paper' +p298839 +sg291132 +S'1969' +p298840 +sg291134 +S'Figure' +p298841 +sg291136 +g27 +sg291137 +S'Emerson Woelffer' +p298842 +sa(dp298843 +g291130 +S'lithograph (stone and zinc) in red and black on Rives BFK paper' +p298844 +sg291132 +S'1969/1970' +p298845 +sg291134 +S'Head' +p298846 +sg291136 +g27 +sg291137 +S'Emerson Woelffer' +p298847 +sa(dp298848 +g291130 +S'lithograph (zinc and stone) in red, blue and blackon Rives BFK paper' +p298849 +sg291132 +S'1969/1970' +p298850 +sg291134 +S'Homage a Duchamp' +p298851 +sg291136 +g27 +sg291137 +S'Emerson Woelffer' +p298852 +sa(dp298853 +g291130 +S'lithograph (zinc and stone) in red, blue and dark brown on German Etching paper' +p298854 +sg291132 +S'1970' +p298855 +sg291134 +S'Pont Neuf' +p298856 +sg291136 +g27 +sg291137 +S'Emerson Woelffer' +p298857 +sa(dp298858 +g291130 +S'lithograph (zinc and stone) in green, black, orange and violet on Rives BFK paper' +p298859 +sg291132 +S'1970' +p298860 +sg291134 +S'Figure' +p298861 +sg291136 +g27 +sg291137 +S'Emerson Woelffer' +p298862 +sa(dp298863 +g291130 +S'lithograph (zinc) in two blues, green, gray and red on uncalendered Rives paper' +p298864 +sg291132 +S'1970' +p298865 +sg291134 +S'Portrait of Max Ernst' +p298866 +sg291136 +g27 +sg291137 +S'Emerson Woelffer' +p298867 +sa(dp298868 +g291130 +S'lithograph (stone and zinc) in red and blue on Copperplate Deluxe paper' +p298869 +sg291132 +S'1970' +p298870 +sg291134 +S'Tri-Color' +p298871 +sg291136 +g27 +sg291137 +S'Emerson Woelffer' +p298872 +sa(dp298873 +g291130 +S'lithograph (stone and zinc) in yellow, blue and black on German Etching paper' +p298874 +sg291132 +S'1970' +p298875 +sg291134 +S'Two Figures' +p298876 +sg291136 +g27 +sg291137 +S'Emerson Woelffer' +p298877 +sa(dp298878 +g291130 +S'lithograph (stone and zinc) in black and gray on white Arches paper' +p298879 +sg291132 +S'1970' +p298880 +sg291134 +S'Homage to Man Ray' +p298881 +sg291136 +g27 +sg291137 +S'Emerson Woelffer' +p298882 +sa(dp298883 +g291130 +S'lithograph (zinc) in black on Rives BFK paper' +p298884 +sg291132 +S'1964' +p298885 +sg291134 +S'Untitled' +p298886 +sg291136 +g27 +sg291137 +S'Dick Wray' +p298887 +sa(dp298888 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p298889 +sg291132 +S'1964' +p298890 +sg291134 +S'Untitled' +p298891 +sg291136 +g27 +sg291137 +S'Dick Wray' +p298892 +sa(dp298893 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p298894 +sg291132 +S'1964' +p298895 +sg291134 +S'Untitled' +p298896 +sg291136 +g27 +sg291137 +S'Dick Wray' +p298897 +sa(dp298898 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p298899 +sg291132 +S'1964' +p298900 +sg291134 +S'Untitled' +p298901 +sg291136 +g27 +sg291137 +S'Dick Wray' +p298902 +sa(dp298903 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p298904 +sg291132 +S'1964' +p298905 +sg291134 +S'Untitled' +p298906 +sg291136 +g27 +sg291137 +S'Dick Wray' +p298907 +sa(dp298908 +g291130 +S'lithograph (zinc) in black on Rives BFK paper' +p298909 +sg291132 +S'1964' +p298910 +sg291134 +S'Untitled' +p298911 +sg291136 +g27 +sg291137 +S'Dick Wray' +p298912 +sa(dp298913 +g291130 +S'lithograph (zinc) in black on Rives BFK paper' +p298914 +sg291132 +S'1964' +p298915 +sg291134 +S'Untitled' +p298916 +sg291136 +g27 +sg291137 +S'Dick Wray' +p298917 +sa(dp298918 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p298919 +sg291132 +S'1964' +p298920 +sg291134 +S'Untitled' +p298921 +sg291136 +g27 +sg291137 +S'Dick Wray' +p298922 +sa(dp298923 +g291130 +S'lithograph (zinc) in black on Rives BFK paper' +p298924 +sg291132 +S'1964' +p298925 +sg291134 +S'Untitled' +p298926 +sg291136 +g27 +sg291137 +S'Dick Wray' +p298927 +sa(dp298928 +g291130 +S'lithograph (zinc) in black on Rives BFK paper' +p298929 +sg291132 +S'1964' +p298930 +sg291134 +S'Untitled' +p298931 +sg291136 +g27 +sg291137 +S'Dick Wray' +p298932 +sa(dp298933 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p298934 +sg291132 +S'1964' +p298935 +sg291134 +S'Untitled' +p298936 +sg291136 +g27 +sg291137 +S'Dick Wray' +p298937 +sa(dp298938 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p298939 +sg291132 +S'1964' +p298940 +sg291134 +S'Untitled' +p298941 +sg291136 +g27 +sg291137 +S'Dick Wray' +p298942 +sa(dp298943 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p298944 +sg291132 +S'1964' +p298945 +sg291134 +S'Untitled' +p298946 +sg291136 +g27 +sg291137 +S'Dick Wray' +p298947 +sa(dp298948 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p298949 +sg291132 +S'1964' +p298950 +sg291134 +S'Untitled' +p298951 +sg291136 +g27 +sg291137 +S'Dick Wray' +p298952 +sa(dp298953 +g291130 +S'lithograph (zinc) in black on Rives BFK paper' +p298954 +sg291132 +S'1964' +p298955 +sg291134 +S'Untitled' +p298956 +sg291136 +g27 +sg291137 +S'Dick Wray' +p298957 +sa(dp298958 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p298959 +sg291132 +S'1964' +p298960 +sg291134 +S'Untitled' +p298961 +sg291136 +g27 +sg291137 +S'Dick Wray' +p298962 +sa(dp298963 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p298964 +sg291132 +S'1964' +p298965 +sg291134 +S'Untitled' +p298966 +sg291136 +g27 +sg291137 +S'Dick Wray' +p298967 +sa(dp298968 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p298969 +sg291132 +S'1964' +p298970 +sg291134 +S'Untitled' +p298971 +sg291136 +g27 +sg291137 +S'Dick Wray' +p298972 +sa(dp298973 +g291130 +S'lithograph (zinc) in orange and black on white Arches paper' +p298974 +sg291132 +S'1964' +p298975 +sg291134 +S'Untitled' +p298976 +sg291136 +g27 +sg291137 +S'Dick Wray' +p298977 +sa(dp298978 +g291130 +S'lithograph (zinc) in black on white Arches paper' +p298979 +sg291132 +S'1964' +p298980 +sg291134 +S'Untitled' +p298981 +sg291136 +g27 +sg291137 +S'Dick Wray' +p298982 +sa(dp298983 +g291130 +S'lithograph (aluminum) in black , light pearly grayand two light pearly pinks on white Nacre paper' +p298984 +sg291132 +S'1968' +p298985 +sg291134 +S'Grasshopper' +p298986 +sg291136 +g27 +sg291137 +S'Theo Wujcik' +p298987 +sa(dp298988 +g291130 +S'lithograph (stone and aluminum) in two blacks on Copperplate Deluxe paepr' +p298989 +sg291132 +S'1968' +p298990 +sg291134 +S'Harelip' +p298991 +sg291136 +g27 +sg291137 +S'Theo Wujcik' +p298992 +sa(dp298993 +g291130 +S'lithograph (stone and aluminum) in light pearly silver, light pearly yellow and orange on natural Nacre paper' +p298994 +sg291132 +S'1968' +p298995 +sg291134 +S'Homage to BAB' +p298996 +sg291136 +g27 +sg291137 +S'Theo Wujcik' +p298997 +sa(dp298998 +g291130 +S'lithograph (stone) in beige, two blues and black on white Arches paper' +p298999 +sg291132 +S'1967' +p299000 +sg291134 +S'Dunes' +p299001 +sg291136 +g27 +sg291137 +S'Alfred Young' +p299002 +sa(dp299003 +g291130 +S'lithograph (stone) in transparent blue, transparent red and transparent yellow on Copperplate Deluxepaper' +p299004 +sg291132 +S'1967' +p299005 +sg291134 +S'Untitled' +p299006 +sg291136 +g27 +sg291137 +S'Norman Zammitt' +p299007 +sa(dp299008 +g291130 +S'lithograph (stone) in six transparent grays, transparent blue, brown and black on Copperplate Deluxepaper' +p299009 +sg291132 +S'1967' +p299010 +sg291134 +S'Untitled' +p299011 +sg291136 +g27 +sg291137 +S'Norman Zammitt' +p299012 +sa(dp299013 +g291130 +S'lithograph (stone) in two blues and red on Rives BFK paper' +p299014 +sg291132 +S'1967' +p299015 +sg291134 +S'Untitled' +p299016 +sg291136 +g27 +sg291137 +S'Norman Zammitt' +p299017 +sa(dp299018 +g291130 +S'lithograph (aluminum and stone) in yellow, red andtransparent blue on Rives BFK paper' +p299019 +sg291132 +S'1967' +p299020 +sg291134 +S'Untitled' +p299021 +sg291136 +g27 +sg291137 +S'Norman Zammitt' +p299022 +sa(dp299023 +g291130 +S'lithograph (stone) in blue, red, yellow, violet and black on Rives BFK paper' +p299024 +sg291132 +S'1967' +p299025 +sg291134 +S'Untitled' +p299026 +sg291136 +g27 +sg291137 +S'Norman Zammitt' +p299027 +sa(dp299028 +g291130 +S'lithograph (stone) in light blue, light pink, light orange and yellow on Copperplate Deluxe paper' +p299029 +sg291132 +S'1967' +p299030 +sg291134 +S'Untitled' +p299031 +sg291136 +g27 +sg291137 +S'Norman Zammitt' +p299032 +sa(dp299033 +g291130 +S'lithograph (stone) in black and pink on Copperplate Deluxe paper' +p299034 +sg291132 +S'1967' +p299035 +sg291134 +S'Untitled' +p299036 +sg291136 +g27 +sg291137 +S'Norman Zammitt' +p299037 +sa(dp299038 +g291130 +S'lithograph (stone) in black, light blue and orange-red on Copperplate Deluxe paper' +p299039 +sg291132 +S'1967' +p299040 +sg291134 +S'Untitled' +p299041 +sg291136 +g27 +sg291137 +S'Norman Zammitt' +p299042 +sa(dp299043 +g291130 +S'lithograph (stone) in two blues, violet, violet-red, orange and yellow on German Etching paper' +p299044 +sg291132 +S'1967' +p299045 +sg291134 +S'Untitled' +p299046 +sg291136 +g27 +sg291137 +S'Norman Zammitt' +p299047 +sa(dp299048 +g291134 +S'The Martyrdom of Saint James (?)' +p299049 +sg291137 +S'Christoph Murer' +p299050 +sg291130 +S'woodcut on laid paper' +p299051 +sg291132 +S'published 1630' +p299052 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef70.jpg' +p299053 +sg291136 +g27 +sa(dp299054 +g291134 +S'The Martyrdom of Saint James (?)' +p299055 +sg291137 +S'Christoph Murer' +p299056 +sg291130 +S'woodcut on laid paper' +p299057 +sg291132 +S'published 1630' +p299058 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef71.jpg' +p299059 +sg291136 +g27 +sa(dp299060 +g291134 +S'Christ Tells His Disciples of the Last Judgment' +p299061 +sg291137 +S'Christoph Murer' +p299062 +sg291130 +S'woodcut on laid paper' +p299063 +sg291132 +S'published 1630' +p299064 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef72.jpg' +p299065 +sg291136 +g27 +sa(dp299066 +g291134 +S'Christ Tells His Disciples of the Last Judgment' +p299067 +sg291137 +S'Christoph Murer' +p299068 +sg291130 +S'woodcut on laid paper' +p299069 +sg291132 +S'published 1630' +p299070 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef73.jpg' +p299071 +sg291136 +g27 +sa(dp299072 +g291134 +S'Christ Tells His Disciples of the Last Judgment' +p299073 +sg291137 +S'Christoph Murer' +p299074 +sg291130 +S'woodcut on laid paper' +p299075 +sg291132 +S'published 1630' +p299076 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef74.jpg' +p299077 +sg291136 +g27 +sa(dp299078 +g291134 +S'Christ Tells His Disciples of the Last Judgment' +p299079 +sg291137 +S'Christoph Murer' +p299080 +sg291130 +S'woodcut on laid paper' +p299081 +sg291132 +S'published 1630' +p299082 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef75.jpg' +p299083 +sg291136 +g27 +sa(dp299084 +g291134 +S'Christ Tells His Disciples of the Last Judgment' +p299085 +sg291137 +S'Christoph Murer' +p299086 +sg291130 +S'woodcut on laid paper' +p299087 +sg291132 +S'published 1630' +p299088 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef76.jpg' +p299089 +sg291136 +g27 +sa(dp299090 +g291134 +S'Christ Tells His Disciples of the Last Judgment' +p299091 +sg291137 +S'Christoph Murer' +p299092 +sg291130 +S'woodcut on laid paper' +p299093 +sg291132 +S'published 1630' +p299094 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef77.jpg' +p299095 +sg291136 +g27 +sa(dp299096 +g291134 +S'Christ Tells His Disciples of the Last Judgment' +p299097 +sg291137 +S'Christoph Murer' +p299098 +sg291130 +S'woodcut on laid paper' +p299099 +sg291132 +S'published 1630' +p299100 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef78.jpg' +p299101 +sg291136 +g27 +sa(dp299102 +g291134 +S'Christ Tells His Disciples of the Last Judgment' +p299103 +sg291137 +S'Christoph Murer' +p299104 +sg291130 +S'woodcut on laid paper' +p299105 +sg291132 +S'published 1630' +p299106 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef79.jpg' +p299107 +sg291136 +g27 +sa(dp299108 +g291134 +S'Christ Tells His Disciples of the Last Judgment' +p299109 +sg291137 +S'Christoph Murer' +p299110 +sg291130 +S'woodcut on laid paper' +p299111 +sg291132 +S'published 1630' +p299112 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef7a.jpg' +p299113 +sg291136 +g27 +sa(dp299114 +g291134 +S'Christ Tells His Disciples of the Last Judgment' +p299115 +sg291137 +S'Christoph Murer' +p299116 +sg291130 +S'woodcut on laid paper' +p299117 +sg291132 +S'published 1630' +p299118 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef7b.jpg' +p299119 +sg291136 +g27 +sa(dp299120 +g291134 +S'Christ Tells His Disciples of the Last Judgment' +p299121 +sg291137 +S'Christoph Murer' +p299122 +sg291130 +S'woodcut on laid paper' +p299123 +sg291132 +S'published 1630' +p299124 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef7c.jpg' +p299125 +sg291136 +g27 +sa(dp299126 +g291134 +S'Christ Tells His Disciples of the Last Judgment' +p299127 +sg291137 +S'Christoph Murer' +p299128 +sg291130 +S'woodcut on laid paper' +p299129 +sg291132 +S'published 1630' +p299130 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef7d.jpg' +p299131 +sg291136 +g27 +sa(dp299132 +g291134 +S'Christ Tells His Disciples of the Last Judgment' +p299133 +sg291137 +S'Christoph Murer' +p299134 +sg291130 +S'woodcut on laid paper' +p299135 +sg291132 +S'published 1630' +p299136 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef7e.jpg' +p299137 +sg291136 +g27 +sa(dp299138 +g291134 +S'The Paralytic Healed by Christ Picks up His Pallet' +p299139 +sg291137 +S'Christoph Murer' +p299140 +sg291130 +S'woodcut on laid paper' +p299141 +sg291132 +S'unknown date\n' +p299142 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef7f.jpg' +p299143 +sg291136 +g27 +sa(dp299144 +g291134 +S'Christ Tells His Disciples of the Last Judgment' +p299145 +sg291137 +S'Christoph Murer' +p299146 +sg291130 +S'woodcut on laid paper' +p299147 +sg291132 +S'published 1630' +p299148 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef80.jpg' +p299149 +sg291136 +g27 +sa(dp299150 +g291134 +S'Christ Tells His Disciples of the Last Judgment' +p299151 +sg291137 +S'Christoph Murer' +p299152 +sg291130 +S'woodcut on laid paper' +p299153 +sg291132 +S'published 1630' +p299154 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef81.jpg' +p299155 +sg291136 +g27 +sa(dp299156 +g291134 +S'Christ Tells His Disciples of the Last Judgment' +p299157 +sg291137 +S'Christoph Murer' +p299158 +sg291130 +S'woodcut on laid paper' +p299159 +sg291132 +S'published 1630' +p299160 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef82.jpg' +p299161 +sg291136 +g27 +sa(dp299162 +g291134 +S'Christ Tells His Disciples of the Last Judgment' +p299163 +sg291137 +S'Christoph Murer' +p299164 +sg291130 +S'woodcut on laid paper' +p299165 +sg291132 +S'published 1630' +p299166 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef83.jpg' +p299167 +sg291136 +g27 +sa(dp299168 +g291134 +S'Christ Tells His Disciples of the Last Judgment' +p299169 +sg291137 +S'Christoph Murer' +p299170 +sg291130 +S'woodcut on laid paper' +p299171 +sg291132 +S'published 1630' +p299172 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef84.jpg' +p299173 +sg291136 +g27 +sa(dp299174 +g291134 +S'The Four Horsemen of the Apocalypse' +p299175 +sg291137 +S'Christoph Murer' +p299176 +sg291130 +S'woodcut on laid paper' +p299177 +sg291132 +S'published 1630' +p299178 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef85.jpg' +p299179 +sg291136 +g27 +sa(dp299180 +g291134 +S'The Four Horsemen of the Apocalypse' +p299181 +sg291137 +S'Christoph Murer' +p299182 +sg291130 +S'woodcut on laid paper' +p299183 +sg291132 +S'published 1630' +p299184 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef86.jpg' +p299185 +sg291136 +g27 +sa(dp299186 +g291134 +S'The Four Horsemen of the Apocalypse' +p299187 +sg291137 +S'Christoph Murer' +p299188 +sg291130 +S'woodcut on laid paper' +p299189 +sg291132 +S'published 1630' +p299190 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef87.jpg' +p299191 +sg291136 +g27 +sa(dp299192 +g291134 +S'The Four Horsemen of the Apocalypse' +p299193 +sg291137 +S'Christoph Murer' +p299194 +sg291130 +S'woodcut on laid paper' +p299195 +sg291132 +S'published 1630' +p299196 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef88.jpg' +p299197 +sg291136 +g27 +sa(dp299198 +g291134 +S'The Four Horsemen of the Apocalypse' +p299199 +sg291137 +S'Christoph Murer' +p299200 +sg291130 +S'woodcut on laid paper' +p299201 +sg291132 +S'published 1630' +p299202 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef89.jpg' +p299203 +sg291136 +g27 +sa(dp299204 +g291134 +S'The Waterfall and Town of Tivoli' +p299205 +sg291137 +S'Gaspar van Wittel' +p299206 +sg291130 +S'pen and brown ink with brown and gray wash over black chalk, squared for transfer with red chalk, onlaid paper' +p299207 +sg291132 +S'unknown date\n' +p299208 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a00070f1.jpg' +p299209 +sg291136 +g27 +sa(dp299210 +g291134 +S'Ruins by a Woodland Stream' +p299211 +sg291137 +S'Paulus van Liender' +p299212 +sg291130 +S'pen and black ink with gray wash on laid paper' +p299213 +sg291132 +S'unknown date\n' +p299214 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a000711d.jpg' +p299215 +sg291136 +g27 +sa(dp299216 +g291134 +S'Port of San Remo' +p299217 +sg291137 +S'Adolphe Appian' +p299218 +sg291130 +S'etching in black' +p299219 +sg291132 +S'1878' +p299220 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a000902c.jpg' +p299221 +sg291136 +g27 +sa(dp299222 +g291134 +S'The Blind Prince' +p299223 +sg291137 +S'Lambert Suavius' +p299224 +sg291130 +S'engraving' +p299225 +sg291132 +S'unknown date\n' +p299226 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d01d.jpg' +p299227 +sg291136 +g27 +sa(dp299228 +g291134 +S'Rooftops, St. Cloud' +p299229 +sg291137 +S'Thomas Anshutz' +p299230 +sg291130 +S'watercolor over graphite' +p299231 +sg291132 +S'unknown date\n' +p299232 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00008/a00008a2.jpg' +p299233 +sg291136 +g27 +sa(dp299234 +g291130 +S'oil on canvas' +p299235 +sg291132 +S'1962' +p299236 +sg291134 +S'Cobalt Night' +p299237 +sg291136 +g27 +sg291137 +S'Lee Krasner' +p299238 +sa(dp299239 +g291134 +S'Head of a Man' +p299240 +sg291137 +S'Jusepe de Ribera' +p299241 +sg291130 +S'red chalk on laid paper' +p299242 +sg291132 +S'unknown date\n' +p299243 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00037/a00037e4.jpg' +p299244 +sg291136 +g27 +sa(dp299245 +g291134 +S"Two Horses at a Watering Place (Les Deux chevaux a l'abreuvoir)" +p299246 +sg291137 +S'Charles-Fran\xc3\xa7ois Daubigny' +p299247 +sg291130 +S'cliche-verre (salt print) in brown' +p299248 +sg291132 +S'c. 1859/1862' +p299249 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00097/a00097f9.jpg' +p299250 +sg291136 +g27 +sa(dp299251 +g291134 +S'Pierrot' +p299252 +sg291137 +S'William Baziotes' +p299253 +sg291130 +S'oil on canvas' +p299254 +sg291132 +S'1947' +p299255 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00000/a0000013.jpg' +p299256 +sg291136 +g27 +sa(dp299257 +g291134 +S'Early Plan Study: Before the Site Had Been Chosen' +p299258 +sg291137 +S'John Russell Pope' +p299259 +sg291130 +S'graphite with gray wash' +p299260 +sg291132 +S'probably 1936' +p299261 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1bd.jpg' +p299262 +sg291136 +g27 +sa(dp299263 +g291134 +S'Early Elevation Study before the Site Had Been Chosen' +p299264 +sg291137 +S'John Russell Pope' +p299265 +sg291130 +S'graphite' +p299266 +sg291132 +S'probably 1936' +p299267 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1c0.jpg' +p299268 +sg291136 +g27 +sa(dp299269 +g291134 +S'Early Plan: Study for Site on Axis of the White House' +p299270 +sg291137 +S'John Russell Pope' +p299271 +sg291130 +S'graphite' +p299272 +sg291132 +S'probably 1936' +p299273 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1be.jpg' +p299274 +sg291136 +g27 +sa(dp299275 +g291134 +S'Half-Plan Study for Site on the Axis of the White House' +p299276 +sg291137 +S'John Russell Pope' +p299277 +sg291130 +S'graphite' +p299278 +sg291132 +S'probably 1936' +p299279 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1bf.jpg' +p299280 +sg291136 +g27 +sa(dp299281 +g291130 +S'graphite with red crayon' +p299282 +sg291132 +S'probably 1936' +p299283 +sg291134 +S'Early Section Study for Site on Axis of the White House' +p299284 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299285 +sa(dp299286 +g291130 +S'graphite' +p299287 +sg291132 +S'probably 1936' +p299288 +sg291134 +S'Early Elevation Study' +p299289 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299290 +sa(dp299291 +g291130 +S'graphite' +p299292 +sg291132 +S'1936' +p299293 +sg291134 +S'Plan of Scheme A: Axis on 6th Street' +p299294 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299295 +sa(dp299296 +g291130 +S'graphite' +p299297 +sg291132 +S'1936' +p299298 +sg291134 +S'Early Elevation Study on 6th Street Axis' +p299299 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299300 +sa(dp299301 +g291130 +S'graphite' +p299302 +sg291132 +S'1936' +p299303 +sg291134 +S'Early Plan Study: Three Unit Scheme 3rd to 7th Streets' +p299304 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299305 +sa(dp299306 +g291130 +S'graphite' +p299307 +sg291132 +S'1936' +p299308 +sg291134 +S'Early Elevation Study: Three Unit Building, 3rd and 7th Street' +p299309 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299310 +sa(dp299311 +g291130 +S'graphite' +p299312 +sg291132 +S'1936' +p299313 +sg291134 +S'Plan of Scheme C: Axis on 4 1/2 Street' +p299314 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299315 +sa(dp299316 +g291130 +S'graphite' +p299317 +sg291132 +S'1936' +p299318 +sg291134 +S'Early Elevation Study: Axis on 4 1/2 Street' +p299319 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299320 +sa(dp299321 +g291130 +S'graphite' +p299322 +sg291132 +S'1936' +p299323 +sg291134 +S'Early Elevation Study: Three Building Scheme' +p299324 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299325 +sa(dp299326 +g291130 +S'graphite' +p299327 +sg291132 +S'1936' +p299328 +sg291134 +S'Early Plan Study: Three Building Scheme' +p299329 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299330 +sa(dp299331 +g291130 +S'graphite' +p299332 +sg291132 +S'1936' +p299333 +sg291134 +S'Early Plan Study for Site on Axis of 6th Street' +p299334 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299335 +sa(dp299336 +g291130 +S'graphite' +p299337 +sg291132 +S'1936' +p299338 +sg291134 +S'Early Elevation Study: Axis on 6th Street' +p299339 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299340 +sa(dp299341 +g291134 +S'Early Plan Study: Two-Story Scheme' +p299342 +sg291137 +S'John Russell Pope' +p299343 +sg291130 +S'graphite with red crayon' +p299344 +sg291132 +S'probably 1936' +p299345 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1bc.jpg' +p299346 +sg291136 +g27 +sa(dp299347 +g291130 +S'graphite' +p299348 +sg291132 +S'unknown date\n' +p299349 +sg291134 +S'Early Study: Two Story Scheme' +p299350 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299351 +sa(dp299352 +g291134 +S'Early Plan Study' +p299353 +sg291137 +S'John Russell Pope' +p299354 +sg291130 +S'graphite' +p299355 +sg291132 +S'probably 1936' +p299356 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1ba.jpg' +p299357 +sg291136 +g27 +sa(dp299358 +g291130 +S'(architect)' +p299359 +sg291132 +S'\n' +p299360 +sg291134 +S'Early Perspective Study' +p299361 +sg291136 +g27 +sg291137 +S'Artist Information (' +p299362 +sa(dp299363 +g291134 +S'Early Plan Study: One of the First Schemes Showing the Central Dome' +p299364 +sg291137 +S'John Russell Pope' +p299365 +sg291130 +S'black chalk' +p299366 +sg291132 +S'probably 1936' +p299367 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1bb.jpg' +p299368 +sg291136 +g27 +sa(dp299369 +g291130 +S'graphite, cream and white gouache, ochre watercolor, and gray wash' +p299370 +sg291132 +S'unknown date\n' +p299371 +sg291134 +S'Early Study, Mall Facade' +p299372 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299373 +sa(dp299374 +g291130 +S'graphite, watercolor, and gouache on wove paper' +p299375 +sg291132 +S'probably early 1936' +p299376 +sg291134 +S'Early Study: Section Through Rotunda and Central Galleries' +p299377 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299378 +sa(dp299379 +g291130 +S'graphite with gray wash' +p299380 +sg291132 +S'unknown date\n' +p299381 +sg291134 +S'Study of Detail: Mall Approach' +p299382 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299383 +sa(dp299384 +g291130 +S'(architect)' +p299385 +sg291132 +S'\n' +p299386 +sg291134 +S'National Gallery of Art' +p299387 +sg291136 +g27 +sg291137 +S'Artist Information (' +p299388 +sa(dp299389 +g291134 +S'National Gallery, South Facade' +p299390 +sg291137 +S'Artist Information (' +p299391 +sg291130 +S'(architect)' +p299392 +sg291132 +S'\n' +p299393 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1c9.jpg' +p299394 +sg291136 +g27 +sa(dp299395 +g291130 +S'(architect)' +p299396 +sg291132 +S'\n' +p299397 +sg291134 +S'Early Study: Central Hall Scheme without Dome' +p299398 +sg291136 +g27 +sg291137 +S'Artist Information (' +p299399 +sa(dp299400 +g291134 +S'Preliminary Study: Central Gallery for the Exhibition of Sculpture' +p299401 +sg291137 +S'Artist Information (' +p299402 +sg291130 +S'(architect)' +p299403 +sg291132 +S'\n' +p299404 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00058/a00058a1.jpg' +p299405 +sg291136 +g27 +sa(dp299406 +g291130 +S'(architect)' +p299407 +sg291132 +S'\n' +p299408 +sg291134 +S'Preliminary Study: Rotunda without Central Feature' +p299409 +sg291136 +g27 +sg291137 +S'Artist Information (' +p299410 +sa(dp299411 +g291134 +S'Preliminary Study: Rotunda' +p299412 +sg291137 +S'Artist Information (' +p299413 +sg291130 +S'(architect)' +p299414 +sg291132 +S'\n' +p299415 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00058/a00058a0.jpg' +p299416 +sg291136 +g27 +sa(dp299417 +g291130 +S'(architect)' +p299418 +sg291132 +S'\n' +p299419 +sg291134 +S'Preliminary Study: Gallery Facing Garden Court' +p299420 +sg291136 +g27 +sg291137 +S'Artist Information (' +p299421 +sa(dp299422 +g291130 +S'(architect)' +p299423 +sg291132 +S'\n' +p299424 +sg291134 +S'Early Study of Exhibition Gallery off Central Gallery' +p299425 +sg291136 +g27 +sg291137 +S'Artist Information (' +p299426 +sa(dp299427 +g291134 +S'Study of Octagonal Gallery, Wood Panel Treatment' +p299428 +sg291137 +S'Artist Information (' +p299429 +sg291130 +S'(architect)' +p299430 +sg291132 +S'\n' +p299431 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ea/a000ea92.jpg' +p299432 +sg291136 +g27 +sa(dp299433 +g291130 +S'graphite' +p299434 +sg291132 +S'unknown date\n' +p299435 +sg291134 +S'Study of Wall Treatment, Octagonal Galleries' +p299436 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299437 +sa(dp299438 +g291134 +S'Early Study: Gallery Treatment' +p299439 +sg291137 +S'Artist Information (' +p299440 +sg291130 +S'(architect)' +p299441 +sg291132 +S'\n' +p299442 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f1c1.jpg' +p299443 +sg291136 +g27 +sa(dp299444 +g291130 +S'(architect)' +p299445 +sg291132 +S'\n' +p299446 +sg291134 +S'Oak Panelled Gallery' +p299447 +sg291136 +g27 +sg291137 +S'Artist Information (' +p299448 +sa(dp299449 +g291130 +S'graphite, brown chalk, gray wash, watercolor, and gold and cream gouache' +p299450 +sg291132 +S'unknown date\n' +p299451 +sg291134 +S'Early Study: Gallery Treatment' +p299452 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299453 +sa(dp299454 +g291130 +S'graphite, brown crayon, watercolor, and cream and orange gouache' +p299455 +sg291132 +S'unknown date\n' +p299456 +sg291134 +S'Early Study: Exhibition Gallery with Small Panelling' +p299457 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299458 +sa(dp299459 +g291130 +S'pen and black ink and gray wash over graphite' +p299460 +sg291132 +S'1937' +p299461 +sg291134 +S'Plan of the Mall and Vicinity Showing Existing and Proposed Buildings' +p299462 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299463 +sa(dp299464 +g291130 +S'graphite and brown wash over photo-reproductions' +p299465 +sg291132 +S'unknown date\n' +p299466 +sg291134 +S'Comparative Elevations from the Mall, National Gallery without Dome' +p299467 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299468 +sa(dp299469 +g291130 +S'graphite and brown wash over photo-reproductions' +p299470 +sg291132 +S'unknown date\n' +p299471 +sg291134 +S'Comparative Elevations from the Mall, National Gallery with Dome' +p299472 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299473 +sa(dp299474 +g291130 +S'graphite, gray wash, and pen and black ink' +p299475 +sg291132 +S'1937' +p299476 +sg291134 +S'Main Floor Plan, Scheme without Dome' +p299477 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299478 +sa(dp299479 +g291130 +S'brown wash over graphite' +p299480 +sg291132 +S'1937' +p299481 +sg291134 +S'Early Studies: Sections through Central Hall; Scheme without Dome' +p299482 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299483 +sa(dp299484 +g291130 +S'graphite with gray wash' +p299485 +sg291132 +S'1937' +p299486 +sg291134 +S'Sections for Scheme without Dome' +p299487 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299488 +sa(dp299489 +g291130 +S'brown wash over graphite' +p299490 +sg291132 +S'1937' +p299491 +sg291134 +S'End Elevation; Scheme without Dome' +p299492 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299493 +sa(dp299494 +g291130 +S'graphite, gray wash, and pen and black ink' +p299495 +sg291132 +S'1937' +p299496 +sg291134 +S'Elevation Study of Mall Facade without Dome' +p299497 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299498 +sa(dp299499 +g291130 +S'graphite, gray wash, and pen and black ink' +p299500 +sg291132 +S'1937' +p299501 +sg291134 +S'Main Floor Plan, Scheme with Dome' +p299502 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299503 +sa(dp299504 +g291130 +S'graphite with gray wash' +p299505 +sg291132 +S'1937' +p299506 +sg291134 +S'Transverse Section: Scheme with Dome' +p299507 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299508 +sa(dp299509 +g291130 +S'graphite' +p299510 +sg291132 +S'1937' +p299511 +sg291134 +S'Longitudinal Section, Preliminary Study' +p299512 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299513 +sa(dp299514 +g291130 +S'brown wash over graphite' +p299515 +sg291132 +S'1937' +p299516 +sg291134 +S'End Elevation; Scheme with Dome' +p299517 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299518 +sa(dp299519 +g291130 +S'gray wash over graphite' +p299520 +sg291132 +S'1937' +p299521 +sg291134 +S'National Gallery of Art' +p299522 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299523 +sa(dp299524 +g291130 +S'photo-reproduction with green watercolor, white gouache, and graphite' +p299525 +sg291132 +S'1938' +p299526 +sg291134 +S'Study of Detail: Mall Approach' +p299527 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299528 +sa(dp299529 +g291130 +S'(architect)' +p299530 +sg291132 +S'\n' +p299531 +sg291134 +S'The National Gallery of Art' +p299532 +sg291136 +g27 +sg291137 +S'Artist Information (' +p299533 +sa(dp299534 +g291130 +S'pen and black ink with yellow wash and graphite' +p299535 +sg291132 +S'1937' +p299536 +sg291134 +S'Working Drawing, Pile Plan' +p299537 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299538 +sa(dp299539 +g291130 +S'pen and black ink with yellow wash' +p299540 +sg291132 +S'1939/1940' +p299541 +sg291134 +S'Working Drawing, Ground Floor Plan' +p299542 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299543 +sa(dp299544 +g291130 +S'pen and black ink with yellow wash' +p299545 +sg291132 +S'1940' +p299546 +sg291134 +S'Working Drawing, Main Floor Plan' +p299547 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299548 +sa(dp299549 +g291130 +S'watercolor and graphite' +p299550 +sg291132 +S'1939' +p299551 +sg291134 +S'Italian Fourteenth and Fifteenth Centuries: Gallery 1' +p299552 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299553 +sa(dp299554 +g291130 +S'graphite, watercolor, and cream gouache' +p299555 +sg291132 +S'1939' +p299556 +sg291134 +S'Italian Fourteenth and Fifteenth Centuries: Gallery 1 (Alternate)' +p299557 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299558 +sa(dp299559 +g291130 +S'graphite, watercolor, and cream gouache' +p299560 +sg291132 +S'1939' +p299561 +sg291134 +S'Donatello Gallery 6 and 7' +p299562 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299563 +sa(dp299564 +g291130 +S'graphite and watercolor' +p299565 +sg291132 +S'1939' +p299566 +sg291134 +S'Raphael, Alba Madonna: Gallery 9' +p299567 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299568 +sa(dp299569 +g291130 +S'graphite, cream gouache, and watercolor' +p299570 +sg291132 +S'1939' +p299571 +sg291134 +S'Italian 16th and 18th Century: Gallery 34' +p299572 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299573 +sa(dp299574 +g291130 +S'graphite with watercolor and cream gouache' +p299575 +sg291132 +S'1939' +p299576 +sg291134 +S'Venetian Gallery 19' +p299577 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299578 +sa(dp299579 +g291130 +S'graphite' +p299580 +sg291132 +S'1939' +p299581 +sg291134 +S'Rembrandt Room' +p299582 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299583 +sa(dp299584 +g291130 +S'graphite with brown wash and cream gouache' +p299585 +sg291132 +S'1939' +p299586 +sg291134 +S'Rembrandt and Dutch Gallery 44' +p299587 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299588 +sa(dp299589 +g291130 +S'graphite, watercolor, and yellow gouache' +p299590 +sg291132 +S'1939' +p299591 +sg291134 +S'French and Spanish 18th Century Gallery 48' +p299592 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299593 +sa(dp299594 +g291130 +S'graphite' +p299595 +sg291132 +S'1939' +p299596 +sg291134 +S'English 18th Century: Gallery 52' +p299597 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299598 +sa(dp299599 +g291130 +S'graphite, watercolor, and cream and white gouache' +p299600 +sg291132 +S'1939' +p299601 +sg291134 +S'English 18th Century: Gallery 52' +p299602 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299603 +sa(dp299604 +g291130 +S'graphite, watercolor, and gouache' +p299605 +sg291132 +S'1939' +p299606 +sg291134 +S'American Eighteenth Century: Gallery 57' +p299607 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299608 +sa(dp299609 +g291130 +S'graphite' +p299610 +sg291132 +S'1939' +p299611 +sg291134 +S'Sculpture Gallery 8' +p299612 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299613 +sa(dp299614 +g291130 +S'graphite, watercolor, and gouache' +p299615 +sg291132 +S'1939' +p299616 +sg291134 +S'Sculpture Gallery 8' +p299617 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299618 +sa(dp299619 +g291130 +S'graphite, brown crayon, gray wash, and brown and cream gouache' +p299620 +sg291132 +S'1939' +p299621 +sg291134 +S'Sculpture Galleries 11, 12, 16' +p299622 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299623 +sa(dp299624 +g291130 +S'graphite with gray wash' +p299625 +sg291132 +S'1939' +p299626 +sg291134 +S'Sculpture Gallery 35' +p299627 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299628 +sa(dp299629 +g291130 +S'graphite, watercolor, and tan gouache' +p299630 +sg291132 +S'1939' +p299631 +sg291134 +S'Sculpture Gallery 35' +p299632 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299633 +sa(dp299634 +g291130 +S'(architect)' +p299635 +sg291132 +S'\n' +p299636 +sg291134 +S"Founder's Room" +p299637 +sg291136 +g27 +sg291137 +S'Artist Information (' +p299638 +sa(dp299639 +g291130 +S'graphite with white gouache and gray wash' +p299640 +sg291132 +S'1939' +p299641 +sg291134 +S'Study of Cafeteria: West Elevation' +p299642 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299643 +sa(dp299644 +g291130 +S'graphite' +p299645 +sg291132 +S'1939' +p299646 +sg291134 +S"Officers' Dining Room" +p299647 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299648 +sa(dp299649 +g291130 +S'graphite, cream gouache, and watercolor' +p299650 +sg291132 +S'1939' +p299651 +sg291134 +S'Cafeteria Dining Room' +p299652 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299653 +sa(dp299654 +g291130 +S'graphite, watercolor, and cream gouache' +p299655 +sg291132 +S'1939' +p299656 +sg291134 +S'Board Room: Ground Floor' +p299657 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299658 +sa(dp299659 +g291130 +S'graphite with white gouache' +p299660 +sg291132 +S'1940' +p299661 +sg291134 +S'Lecture Hall: Longitudinal Section' +p299662 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299663 +sa(dp299664 +g291130 +S'watercolor and cream gouache over graphite' +p299665 +sg291132 +S'1939' +p299666 +sg291134 +S'Treatment of Central Lobby Ground Floor Looking toward Entrance Lobby' +p299667 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299668 +sa(dp299669 +g291130 +S'(architect)' +p299670 +sg291132 +S'\n' +p299671 +sg291134 +S'Suggested Treatment for Constitution Avenue Lobby' +p299672 +sg291136 +g27 +sg291137 +S'Artist Information (' +p299673 +sa(dp299674 +g291130 +S'graphite with white gouache' +p299675 +sg291132 +S'1939' +p299676 +sg291134 +S'Suggestion for Marble Benches: Garden Court' +p299677 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299678 +sa(dp299679 +g291130 +S'graphite with gray wash and white gouache' +p299680 +sg291132 +S'1939' +p299681 +sg291134 +S'Suggestion for Marble Benches: Rotunda' +p299682 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299683 +sa(dp299684 +g291130 +S'graphite with gray wash and white gouache' +p299685 +sg291132 +S'1939' +p299686 +sg291134 +S'Suggestion for Marble Benches: Entrance Lobby, Ground Floor' +p299687 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299688 +sa(dp299689 +g291130 +S'(architect)' +p299690 +sg291132 +S'\n' +p299691 +sg291134 +S'Exterior Fountain: Scheme "A"' +p299692 +sg291136 +g27 +sg291137 +S'Artist Information (' +p299693 +sa(dp299694 +g291130 +S'(architect)' +p299695 +sg291132 +S'\n' +p299696 +sg291134 +S'Exterior Fountain: Scheme "B"' +p299697 +sg291136 +g27 +sg291137 +S'Artist Information (' +p299698 +sa(dp299699 +g291130 +S'(architect)' +p299700 +sg291132 +S'\n' +p299701 +sg291134 +S'Exterior Fountain: Scheme "C"' +p299702 +sg291136 +g27 +sg291137 +S'Artist Information (' +p299703 +sa(dp299704 +g291130 +S'graphite with cream gouache' +p299705 +sg291132 +S'1939' +p299706 +sg291134 +S'Exterior Fountain' +p299707 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299708 +sa(dp299709 +g291130 +S'(architect)' +p299710 +sg291132 +S'\n' +p299711 +sg291134 +S'Fountain in the Rotunda' +p299712 +sg291136 +g27 +sg291137 +S'Artist Information (' +p299713 +sa(dp299714 +g291130 +S'graphite with white gouache' +p299715 +sg291132 +S'1939' +p299716 +sg291134 +S'Constitution Avenue Flagpoles' +p299717 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299718 +sa(dp299719 +g291130 +S'graphite and gray gouache' +p299720 +sg291132 +S'1939' +p299721 +sg291134 +S'Bronze Lighting Standards (Exterior)' +p299722 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299723 +sa(dp299724 +g291130 +S'(architect)' +p299725 +sg291132 +S'\n' +p299726 +sg291134 +S'Proposed Development of the Adjoining Plot between Fourth and Third Streets' +p299727 +sg291136 +g27 +sg291137 +S'Artist Information (' +p299728 +sa(dp299729 +g291134 +S'National Gallery of Art' +p299730 +sg291137 +S'Artist Information (' +p299731 +sg291130 +S'(architect)' +p299732 +sg291132 +S'\n' +p299733 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00066/a0006636.jpg' +p299734 +sg291136 +g27 +sa(dp299735 +g291130 +S'(architect)' +p299736 +sg291132 +S'\n' +p299737 +sg291134 +S'National Gallery' +p299738 +sg291136 +g27 +sg291137 +S'Artist Information (' +p299739 +sa(dp299740 +g291130 +S'graphite with gray wash' +p299741 +sg291132 +S'1937' +p299742 +sg291134 +S'End Elevation: Scheme "M3"' +p299743 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299744 +sa(dp299745 +g291130 +S'graphite with gray wash' +p299746 +sg291132 +S'1937' +p299747 +sg291134 +S'End Elevation Scheme "G1"' +p299748 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299749 +sa(dp299750 +g291130 +S'graphite, gray wash, and pen and black ink' +p299751 +sg291132 +S'unknown date\n' +p299752 +sg291134 +S'Main Floor Plan' +p299753 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299754 +sa(dp299755 +g291130 +S'graphite and watercolor' +p299756 +sg291132 +S'unknown date\n' +p299757 +sg291134 +S'View from Rotunda Ceiling to Floor Below: Five Black Marble Columns Showing' +p299758 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299759 +sa(dp299760 +g291130 +S'graphite with brown and tan wash' +p299761 +sg291132 +S'unknown date\n' +p299762 +sg291134 +S'East and West Central Galleries: Lobbies "B" and "C"' +p299763 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299764 +sa(dp299765 +g291130 +S'graphite and watercolor' +p299766 +sg291132 +S'unknown date\n' +p299767 +sg291134 +S'Lobbies "B" and "C": East and West Garden Courts' +p299768 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299769 +sa(dp299770 +g291130 +S'graphite, brown and gray wash, and yellow and white gouache' +p299771 +sg291132 +S'1939' +p299772 +sg291134 +S'Bust of a Boy by Desiderio da Settignano, Gallery 6' +p299773 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299774 +sa(dp299775 +g291130 +S'graphite' +p299776 +sg291132 +S'unknown date\n' +p299777 +sg291134 +S'Central Lobby: Ground Floor, Scheme "B"' +p299778 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299779 +sa(dp299780 +g291130 +S'graphite and gray wash on paperboard' +p299781 +sg291132 +S'unknown date\n' +p299782 +sg291134 +S'Central Lobby: Ground Floor, Scheme "C"' +p299783 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p299784 +sa(dp299785 +g291134 +S'Central Lobby: Ground Floor, Scheme "D"' +p299786 +sg291137 +S'John Russell Pope' +p299787 +sg291130 +S'graphite and gray wash on paperboard' +p299788 +sg291132 +S'unknown date\n' +p299789 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00058/a000589f.jpg' +p299790 +sg291136 +g27 +sa(dp299791 +g291130 +S'graphite, watercolor, gouache, and wash' +p299792 +sg291132 +S'unknown date\n' +p299793 +sg291134 +S'Garden Court: Study of Fountain' +p299794 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299795 +sa(dp299796 +g291130 +S'graphite with white gouache' +p299797 +sg291132 +S'1940' +p299798 +sg291134 +S'Suggestion for Marble Benches: Garden Courts' +p299799 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299800 +sa(dp299801 +g291130 +S'gray wash and white gouache over graphite' +p299802 +sg291132 +S'1940' +p299803 +sg291134 +S'Suggestion for Marble Benches: Garden Courts' +p299804 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299805 +sa(dp299806 +g291130 +S'graphite with white gouache and gray wash' +p299807 +sg291132 +S'1940' +p299808 +sg291134 +S'Suggestion for Marble Benches: Garden Courts' +p299809 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299810 +sa(dp299811 +g291130 +S'(architect)' +p299812 +sg291132 +S'\n' +p299813 +sg291134 +S'Print Study Room' +p299814 +sg291136 +g27 +sg291137 +S'Artist Information (' +p299815 +sa(dp299816 +g291130 +S'(architect)' +p299817 +sg291132 +S'\n' +p299818 +sg291134 +S'Kress Bronze Rooms 1, 2, and 3' +p299819 +sg291136 +g27 +sg291137 +S'Artist Information (' +p299820 +sa(dp299821 +g291130 +S'graphite, watercolor, and cream gouache' +p299822 +sg291132 +S'1954' +p299823 +sg291134 +S'Kress Bronze Room' +p299824 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299825 +sa(dp299826 +g291130 +S'(architect)' +p299827 +sg291132 +S'\n' +p299828 +sg291134 +S'Kress Bronze Medal Case' +p299829 +sg291136 +g27 +sg291137 +S'Artist Information (' +p299830 +sa(dp299831 +g291130 +S'graphite and black chalk' +p299832 +sg291132 +S'probably 1954' +p299833 +sg291134 +S'Ceiling Painting in Gallery 25' +p299834 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299835 +sa(dp299836 +g291130 +S'graphite and ochre wash' +p299837 +sg291132 +S'unknown date\n' +p299838 +sg291134 +S"Benefactors' Panel for North Lobby" +p299839 +sg291136 +g27 +sg291137 +S'Eggers and Higgins, Architects' +p299840 +sa(dp299841 +g291134 +S'The Sacrifice of Marcus Curtius' +p299842 +sg291137 +S'Franz Cleyn' +p299843 +sg291130 +S'black chalk on laid paper' +p299844 +sg291132 +S'1640s' +p299845 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00079/a000799d.jpg' +p299846 +sg291136 +g27 +sa(dp299847 +g291134 +S'Fumette' +p299848 +sg291137 +S'James McNeill Whistler' +p299849 +sg291130 +S'etching in brown' +p299850 +sg291132 +S'c. 1857' +p299851 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9bc.jpg' +p299852 +sg291136 +g27 +sa(dp299853 +g291134 +S'Self-Portrait' +p299854 +sg291137 +S'Sir Peter Lely' +p299855 +sg291130 +S'black chalk with touches of red chalk on buff laid paper' +p299856 +sg291132 +S'c. 1641' +p299857 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cee.jpg' +p299858 +sg291136 +g27 +sa(dp299859 +g291134 +S'Head of a Young Woman' +p299860 +sg291137 +S'Hendrick Goltzius' +p299861 +sg291130 +S', c. 1605' +p299862 +sg291132 +S'\n' +p299863 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f0c.jpg' +p299864 +sg291136 +g27 +sa(dp299865 +g291134 +S'The Departure of the Prodigal Son' +p299866 +sg291137 +S'Karel van Mander I' +p299867 +sg291130 +S'pen and brown ink with brown wash heightened with white on laid paper' +p299868 +sg291132 +S'unknown date\n' +p299869 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a00072f6.jpg' +p299870 +sg291136 +g27 +sa(dp299871 +g291134 +S'The Apotheosis of San Vitale' +p299872 +sg291137 +S'Ubaldo Gandolfi' +p299873 +sg291130 +S'pen and brown ink with brown wash over black chalk on laid paper' +p299874 +sg291132 +S'1781' +p299875 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fa6.jpg' +p299876 +sg291136 +g27 +sa(dp299877 +g291134 +S'Saint Francis' +p299878 +sg291137 +S'Artist Information (' +p299879 +sg291130 +S'(artist after)' +p299880 +sg291132 +S'\n' +p299881 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d56d.jpg' +p299882 +sg291136 +g27 +sa(dp299883 +g291134 +S'Virgin and Angels Watching Over the Sleeping Infant Jesus' +p299884 +sg291137 +S'Francesco Cozza' +p299885 +sg291130 +S'etching in black' +p299886 +sg291132 +S'unknown date\n' +p299887 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067d0.jpg' +p299888 +sg291136 +g27 +sa(dp299889 +g291134 +S'Localization of Graphic Motifs II' +p299890 +sg291137 +S'Frantisek Kupka' +p299891 +sg291130 +S'oil on canvas' +p299892 +sg291132 +S'1912/1913' +p299893 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ed5.jpg' +p299894 +sg291136 +g27 +sa(dp299895 +g291130 +S'oil on canvas' +p299896 +sg291132 +S'c. 1945/1950' +p299897 +sg291134 +S'Via Appia Antica' +p299898 +sg291136 +g27 +sg291137 +S'Giorgio De Chirico' +p299899 +sa(dp299900 +g291134 +S'Battle of the Sea Gods [left half]' +p299901 +sg291137 +S'Andrea Mantegna' +p299902 +sg291130 +S'engraving on laid paper' +p299903 +sg291132 +S'c. 1485/1488' +p299904 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f59.jpg' +p299905 +sg291136 +S"The engravings of Andrea Mantegna were the most influential prints produced in 15th-century Italy. Motifs from his creations appear in works by every major early Italian printmaker, and it was through Mantegna's prints that Albrecht Dürer made his first acquaintance with the southern Renaissance. Mantegna developed a passion for ancient works of art early in his career when introduced to classical antiquity, and their study profoundly influenced his paintings and engravings. The idealized form of his figures, their monumental scale and dynamic movement, as well as their sculptural clarity and definition can all be traced to his involvement with ancient architecture and reliefs.\n This print is the left-hand portion of a two-sheet composition, intended to join the right half and create a unified image after printing. The subject appears to be an allegory of the destructive forces of human envy—perhaps between artists—and centers on the emaciated woman at the left. She clearly represents the vice of Envy (her tablet is inscribed with the Latin word for envy), a theme to which Mantegna would return later in a painting for Isabella d'Este's private study. The artist probably borrowed some of the specific motifs in the engraving from a fragmentary ancient relief now in the Villa Medici in Rome. The bold foreshortenings of the forms, the forceful movement of the figures, and the sophisticated light created by the subtle gradations of tone indicate that this is a fully mature invention by Mantegna.\n " +p299906 +sa(dp299907 +g291130 +S'bronze' +p299908 +sg291132 +S'1968/1969' +p299909 +sg291134 +S'Torso' +p299910 +sg291136 +g27 +sg291137 +S'Fritz Wotruba' +p299911 +sa(dp299912 +g291134 +S'Grotteschi' +p299913 +sg291137 +S'Pinturicchio' +p299914 +sg291130 +S'pen and brown ink' +p299915 +sg291132 +S'unknown date\n' +p299916 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074e0.jpg' +p299917 +sg291136 +g27 +sa(dp299918 +g291134 +S'Avarice' +p299919 +sg291137 +S'Jacopo Ligozzi' +p299920 +sg291130 +S'pen and brown ink with brown wash heightened with gold on laid paper' +p299921 +sg291132 +S'1590' +p299922 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a00025f1.jpg' +p299923 +sg291136 +g27 +sa(dp299924 +g291134 +S'Venus at the Forge of Vulcan' +p299925 +sg291137 +S'French 18th Century' +p299926 +sg291130 +S'overall (approximate): 36.7 x 16.6 cm (14 7/16 x 6 9/16 in.)' +p299927 +sg291132 +S'\npen and brown ink with brown wash and touches of white gouache' +p299928 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a000715e.jpg' +p299929 +sg291136 +g27 +sa(dp299930 +g291134 +S'Head of a Young Woman' +p299931 +sg291137 +S'Artist Information (' +p299932 +sg291130 +S'(artist after)' +p299933 +sg291132 +S'\n' +p299934 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d07.jpg' +p299935 +sg291136 +g27 +sa(dp299936 +g291134 +S'Eros and Psyche' +p299937 +sg291137 +S'Artist Information (' +p299938 +sg291130 +S'(artist after)' +p299939 +sg291132 +S'\n' +p299940 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00096/a000969b.jpg' +p299941 +sg291136 +g27 +sa(dp299942 +g291134 +S'On the Sands' +p299943 +sg291137 +S'Winslow Homer' +p299944 +sg291130 +S'watercolor and gouache with pen and black ink over graphite' +p299945 +sg291132 +S'1881' +p299946 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000906.jpg' +p299947 +sg291136 +g27 +sa(dp299948 +g291134 +S'Danger' +p299949 +sg291137 +S'Winslow Homer' +p299950 +sg291130 +S'watercolor and gouache over graphite' +p299951 +sg291132 +S'1883 and 1887' +p299952 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000eb/a000eba3.jpg' +p299953 +sg291136 +g27 +sa(dp299954 +g291134 +S'Mending the Nets' +p299955 +sg291137 +S'Winslow Homer' +p299956 +sg291130 +S'watercolor and gouache over graphite' +p299957 +sg291132 +S'1882' +p299958 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000907.jpg' +p299959 +sg291136 +S'In 1881 Winslow Homer began a series of \n Although large steam trawlers had begun to replace smaller boats as fishing craft in Cullercoats, Homer preferred to focus on the old ways. In \n The composition suggests Homer’s familiarity with classical sculpture. The overlapping figures of the women create a compact group in a relatively shallow space, recalling \n ' +p299960 +sa(dp299961 +g291134 +S'Santiago de Cuba' +p299962 +sg291137 +S'Winslow Homer' +p299963 +sg291130 +S'watercolor and pen and black ink over graphite' +p299964 +sg291132 +S'1885' +p299965 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000908.jpg' +p299966 +sg291136 +g27 +sa(dp299967 +g291134 +S'Palm Trees, Red' +p299968 +sg291137 +S'Winslow Homer' +p299969 +sg291130 +S'watercolor over graphite on wove paper' +p299970 +sg291132 +S'1890' +p299971 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4a8.jpg' +p299972 +sg291136 +g27 +sa(dp299973 +g291134 +S'Over the Audience' +p299974 +sg291137 +S'Everett Shinn' +p299975 +sg291130 +S'pastel on blue paper' +p299976 +sg291132 +S'1934-1940' +p299977 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009cb.jpg' +p299978 +sg291136 +g27 +sa(dp299979 +g291130 +S'gouache and pastel on paperboard' +p299980 +sg291132 +S'1902-1903' +p299981 +sg291134 +S'Boys Sliding, Washington Square' +p299982 +sg291136 +g27 +sg291137 +S'Everett Shinn' +p299983 +sa(dp299984 +g291130 +S'gouache over graphite on paperboard' +p299985 +sg291132 +S'1914' +p299986 +sg291134 +S'Joan of Arc Square, Paris' +p299987 +sg291136 +g27 +sg291137 +S'Everett Shinn' +p299988 +sa(dp299989 +g291134 +S'Fifth Avenue Bus, 23rd Street and Broadway' +p299990 +sg291137 +S'Everett Shinn' +p299991 +sg291130 +S'pastel on paperboard' +p299992 +sg291132 +S'1914' +p299993 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009cc.jpg' +p299994 +sg291136 +g27 +sa(dp299995 +g291130 +S'black chalk with gouache on brown paper' +p299996 +sg291132 +S'1914' +p299997 +sg291134 +S'Standing Nude' +p299998 +sg291136 +g27 +sg291137 +S'Max Klinger' +p299999 +sa(dp300000 +g291130 +S'woodcut block' +p300001 +sg291132 +S'1959' +p300002 +sg291134 +S'Circle Limit III' +p300003 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p300004 +sa(dp300005 +g291130 +S'woodcut block' +p300006 +sg291132 +S'1959' +p300007 +sg291134 +S'Circle Limit III' +p300008 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p300009 +sa(dp300010 +g291130 +S'woodcut block' +p300011 +sg291132 +S'1959' +p300012 +sg291134 +S'Circle Limit III' +p300013 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p300014 +sa(dp300015 +g291130 +S'woodcut block' +p300016 +sg291132 +S'1959' +p300017 +sg291134 +S'Circle Limit III' +p300018 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p300019 +sa(dp300020 +g291130 +S'woodcut block' +p300021 +sg291132 +S'1959' +p300022 +sg291134 +S'Circle Limit III' +p300023 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p300024 +sa(dp300025 +g291130 +S'pen with black and red ink' +p300026 +sg291132 +S'1959' +p300027 +sg291134 +S'Circle Limit III' +p300028 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p300029 +sa(dp300030 +g291130 +S'pen with black and red ink over graphite' +p300031 +sg291132 +S'1959' +p300032 +sg291134 +S'Circle Limit III' +p300033 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p300034 +sa(dp300035 +g291130 +S'pen with black and red ink over graphite' +p300036 +sg291132 +S'1959' +p300037 +sg291134 +S'Circle Limit III' +p300038 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p300039 +sa(dp300040 +g291130 +S'pen with black and red ink over graphite' +p300041 +sg291132 +S'1959' +p300042 +sg291134 +S'Circle Limit III' +p300043 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p300044 +sa(dp300045 +g291130 +S'woodcut in black' +p300046 +sg291132 +S'1959' +p300047 +sg291134 +S'Circle Limit III' +p300048 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p300049 +sa(dp300050 +g291130 +S'woodcut in black' +p300051 +sg291132 +S'1959' +p300052 +sg291134 +S'Circle Limit III' +p300053 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p300054 +sa(dp300055 +g291130 +S'woodcut in black' +p300056 +sg291132 +S'1959' +p300057 +sg291134 +S'Circle Limit III' +p300058 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p300059 +sa(dp300060 +g291130 +S'woodcut in black' +p300061 +sg291132 +S'1959' +p300062 +sg291134 +S'Circle Limit III' +p300063 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p300064 +sa(dp300065 +g291130 +S'woodcut in black' +p300066 +sg291132 +S'1959' +p300067 +sg291134 +S'Circle Limit III' +p300068 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p300069 +sa(dp300070 +g291130 +S'collage of woodcut proofs in four colors' +p300071 +sg291132 +S'1959' +p300072 +sg291134 +S'Circle Limit III' +p300073 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p300074 +sa(dp300075 +g291130 +S'woodcut in red' +p300076 +sg291132 +S'1959' +p300077 +sg291134 +S'Circle Limit III' +p300078 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p300079 +sa(dp300080 +g291130 +S'woodcut in blue' +p300081 +sg291132 +S'1959' +p300082 +sg291134 +S'Circle Limit III' +p300083 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p300084 +sa(dp300085 +g291130 +S'woodcut in gold' +p300086 +sg291132 +S'1959' +p300087 +sg291134 +S'Circle Limit III' +p300088 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p300089 +sa(dp300090 +g291130 +S'woodcut in green' +p300091 +sg291132 +S'1959' +p300092 +sg291134 +S'Circle Limit III' +p300093 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p300094 +sa(dp300095 +g291130 +S'woodcut in black' +p300096 +sg291132 +S'1959' +p300097 +sg291134 +S'Circle Limit III' +p300098 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p300099 +sa(dp300100 +g291130 +S'woodcut in black' +p300101 +sg291132 +S'1959' +p300102 +sg291134 +S'Circle Limit III' +p300103 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p300104 +sa(dp300105 +g291134 +S'Lion of the Colonne de Juillet' +p300106 +sg291137 +S'Antoine-Louis Barye' +p300107 +sg291130 +S'tinted terracotta' +p300108 +sg291132 +S'1836' +p300109 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00029/a00029b9.jpg' +p300110 +sg291136 +g27 +sa(dp300111 +g291134 +S'The Piazza San Marco' +p300112 +sg291137 +S'Maurice Brazil Prendergast' +p300113 +sg291130 +S'watercolor over graphite' +p300114 +sg291132 +S'1898' +p300115 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000985.jpg' +p300116 +sg291136 +g27 +sa(dp300117 +g291130 +S'pen and black ink over graphite on green paper' +p300118 +sg291132 +S'1949' +p300119 +sg291134 +S'Boulder, Colorado' +p300120 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300121 +sa(dp300122 +g291130 +S'pen and black ink over graphite' +p300123 +sg291132 +S'1949' +p300124 +sg291134 +S'Quappi and Cowboy' +p300125 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300126 +sa(dp300127 +g291130 +S'pen and blue ink over graphite' +p300128 +sg291132 +S'1947' +p300129 +sg291134 +S'The Rescue' +p300130 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300131 +sa(dp300132 +g291130 +S'black chalk' +p300133 +sg291132 +S'1929' +p300134 +sg291134 +S'Quappi with Cigarette' +p300135 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300136 +sa(dp300137 +g291130 +S'brush and brown ink' +p300138 +sg291132 +S'1909' +p300139 +sg291134 +S'Judith and Holofernes' +p300140 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300141 +sa(dp300142 +g291130 +S'pen and blue ink over graphite' +p300143 +sg291132 +S'1947' +p300144 +sg291134 +S'Christ in Limbo' +p300145 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300146 +sa(dp300147 +g291130 +S'drypoint in black' +p300148 +sg291132 +S'1918' +p300149 +sg291134 +S'Self-Portrait' +p300150 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300151 +sa(dp300152 +g291130 +S'woodcut in black' +p300153 +sg291132 +S'1920' +p300154 +sg291134 +S'Woman with Candle (Frau mit Kerze)' +p300155 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300156 +sa(dp300157 +g291130 +S'drypoint in black' +p300158 +sg291132 +S'1914' +p300159 +sg291134 +S'Weeping Woman (Weinende Frau)' +p300160 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300161 +sa(dp300162 +g291130 +S'drypoint in black' +p300163 +sg291132 +S'1918' +p300164 +sg291134 +S'Main River Landscape (Mainlandschaft)' +p300165 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300166 +sa(dp300167 +g291130 +S'drypoint in black' +p300168 +sg291132 +S'1921' +p300169 +sg291134 +S'The Barker (Self-Portrait) (Der Ausrufer)' +p300170 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300171 +sa(dp300172 +g291130 +S'portfolio with 10 drypoints' +p300173 +sg291132 +S'published 1922' +p300174 +sg291134 +S'Annual Fair (Jahrmarkt)' +p300175 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300176 +sa(dp300177 +g291130 +S'drypoint in black' +p300178 +sg291132 +S'1921' +p300179 +sg291134 +S'Dressing Room (Garderobe)' +p300180 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300181 +sa(dp300182 +g291130 +S'drypoint in black' +p300183 +sg291132 +S'1921' +p300184 +sg291134 +S'Behind the Scenes (Hinter den Kulissen)' +p300185 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300186 +sa(dp300187 +g291130 +S'drypoint in black' +p300188 +sg291132 +S'1921' +p300189 +sg291134 +S'Shooting Gallery (Schiessbude)' +p300190 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300191 +sa(dp300192 +g291130 +S'drypoint in black' +p300193 +sg291132 +S'1921' +p300194 +sg291134 +S'The Tall Man (Der grosse Mann)' +p300195 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300196 +sa(dp300197 +g291130 +S'drypoint in black' +p300198 +sg291132 +S'1921' +p300199 +sg291134 +S'The Negro (Der Neger)' +p300200 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300201 +sa(dp300202 +g291130 +S'drypoint in black' +p300203 +sg291132 +S'1921' +p300204 +sg291134 +S'Merry-Go-Round (Das Karussell)' +p300205 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300206 +sa(dp300207 +g291130 +S'drypoint in black' +p300208 +sg291132 +S'1921' +p300209 +sg291134 +S'The Tight Rope Walkers (Die Seilt\xc3\xa4nzer)' +p300210 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300211 +sa(dp300212 +g291130 +S'drypoint in black' +p300213 +sg291132 +S'1921' +p300214 +sg291134 +S'Negro Dance (Niggertanz)' +p300215 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300216 +sa(dp300217 +g291130 +S'drypoint in black' +p300218 +sg291132 +S'1921' +p300219 +sg291134 +S'Snake Lady (Schlangendame)' +p300220 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300221 +sa(dp300222 +g291130 +S'woodcut block with additions in crayon and ink' +p300223 +sg291132 +S'c. 1923' +p300224 +sg291134 +S'Self-Portrait with Naila as Circus Performers Holding Masks and Reclining on a Sea Monster' +p300225 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300226 +sa(dp300227 +g291130 +S'sketchbook with 4 sketches in graphite; 10 blank pages, and several missing sheets' +p300228 +sg291132 +S'unknown date\n' +p300229 +sg291134 +S'Beckmann Sketchbook' +p300230 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300231 +sa(dp300232 +g291130 +S'graphite' +p300233 +sg291132 +S'unknown date\n' +p300234 +sg291134 +S'M\xc3\xa4dchen mit Puppe (Girl with a Doll) [p. 7]' +p300235 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300236 +sa(dp300237 +g291130 +S'graphite' +p300238 +sg291132 +S'unknown date\n' +p300239 +sg291134 +S'M\xc3\xa4dchenbildnis (Portrait of a Girl) [p. 9]' +p300240 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300241 +sa(dp300242 +g291130 +S'graphite' +p300243 +sg291132 +S'unknown date\n' +p300244 +sg291134 +S'M\xc3\xa4dchenbildnis im Profil (Girl in Profile) [p. 11]' +p300245 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300246 +sa(dp300247 +g291130 +S'graphite' +p300248 +sg291132 +S'unknown date\n' +p300249 +sg291134 +S'M\xc3\xa4dchen mit geschlossenen Augen (Girl with Downcast Eyes) [p. 13]' +p300250 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300251 +sa(dp300252 +g291130 +S"sketchbook with 1 sketch in graphite and 1 sketch in pen and black ink; 61 blank pages; two pages of the artist's notations; and one page with a graphite test line. Sketchbook also has a charcoal impression from a (missing) sketch." +p300253 +sg291132 +S'unknown date\n' +p300254 +sg291134 +S'Beckmann Sketchbook' +p300255 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300256 +sa(dp300257 +g291130 +S'Sketchbook with 1 sketch in graphite with pen and black. Also contains 9 blank pages' +p300258 +sg291132 +S'unknown date\n' +p300259 +sg291134 +S'Beckmann Sketchbook' +p300260 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300261 +sa(dp300262 +g291130 +S'graphite with pen and black in' +p300263 +sg291132 +S'unknown date\n' +p300264 +sg291134 +S'Begonnene Stra enszene mit zerst\xc3\xb6rtem (Sketch of Street Scene) [p. 1]' +p300265 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300266 +sa(dp300267 +g291130 +S'sketchbook with 26 sketches in graphite, including one on the inside of the back cover, 11 blank pages and 3 missing sheets (6 pages)' +p300268 +sg291132 +S'unknown date\n' +p300269 +sg291134 +S'Beckmann Sketchbook' +p300270 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300271 +sa(dp300272 +g291130 +S'pen and brown ink' +p300273 +sg291132 +S'unknown date\n' +p300274 +sg291134 +S'Figuren in Interieur (Figural Group in Interior) [p. 1]' +p300275 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300276 +sa(dp300277 +g291130 +S'charcoal' +p300278 +sg291132 +S'unknown date\n' +p300279 +sg291134 +S'Begonnene Skizze (Unfinished Sketch) [p. 3]' +p300280 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300281 +sa(dp300282 +g291130 +S'graphite' +p300283 +sg291132 +S'unknown date\n' +p300284 +sg291134 +S'Vergewaltigungs- oder Mordszene und Skizze mit maskiertem Mann (Sketch of a Rape or Murder and Sketch with Masked Man) [p. 4]' +p300285 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300286 +sa(dp300287 +g291130 +S'graphite' +p300288 +sg291132 +S'unknown date\n' +p300289 +sg291134 +S'Stra\xc3\x9fenszene mit Passante (Figures Walking on t he Street) [p. 5]' +p300290 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300291 +sa(dp300292 +g291130 +S'graphite' +p300293 +sg291132 +S'unknown date\n' +p300294 +sg291134 +S'N\xc3\xa4chtliche Stadtszene (Nocturnal City Scene) [p. 6]' +p300295 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300296 +sa(dp300297 +g291130 +S'graphite' +p300298 +sg291132 +S'unknown date\n' +p300299 +sg291134 +S'Vier M\xc3\xa4nner in Uniform (?) (Four Men Wearing Uniforms) [p. 7]' +p300300 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300301 +sa(dp300302 +g291130 +S'graphite' +p300303 +sg291132 +S'unknown date\n' +p300304 +sg291134 +S'N\xc3\xa4chtliche Stadtszene (Nocturnal City scene) [p. 8]' +p300305 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300306 +sa(dp300307 +g291130 +S'graphite' +p300308 +sg291132 +S'unknown date\n' +p300309 +sg291134 +S'Zwei M\xc3\xa4nner (Two Men) [p. 9]' +p300310 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300311 +sa(dp300312 +g291130 +S'graphite' +p300313 +sg291132 +S'unknown date\n' +p300314 +sg291134 +S'Passanten vor H\xc3\xa4userfassade (Pedestrians in Front of a House) [p. 11]' +p300315 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300316 +sa(dp300317 +g291130 +S'graphite' +p300318 +sg291132 +S'unknown date\n' +p300319 +sg291134 +S'Weiblicher Akt in Str\xc3\xbcmpfen (Nude with Stockings) [p. 12]' +p300320 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300321 +sa(dp300322 +g291130 +S'graphite' +p300323 +sg291132 +S'unknown date\n' +p300324 +sg291134 +S'Weiblicher Akt in R\xc3\xbcckenansicht (Nude from Behind) [p. 13]' +p300325 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300326 +sa(dp300327 +g291130 +S'graphite' +p300328 +sg291132 +S'unknown date\n' +p300329 +sg291134 +S'Liegende Frau mit verborgenem Gesicht (Reclining Woman Hiding Her Face) [p. 14]' +p300330 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300331 +sa(dp300332 +g291130 +S'graphite' +p300333 +sg291132 +S'unknown date\n' +p300334 +sg291134 +S'Weiblicher Halbakt (Nude Torso) [p. 15]' +p300335 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300336 +sa(dp300337 +g291130 +S'graphite' +p300338 +sg291132 +S'unknown date\n' +p300339 +sg291134 +S'Zuschauerraum eines Theaters (Theater Auditorium) [p. 16]' +p300340 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300341 +sa(dp300342 +g291130 +S'graphite and pen & black ink' +p300343 +sg291132 +S'unknown date\n' +p300344 +sg291134 +S'Notizen und kleine Skizzen (Notes and Small Sketches) [p. 22]' +p300345 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300346 +sa(dp300347 +g291130 +S'graphite' +p300348 +sg291132 +S'unknown date\n' +p300349 +sg291134 +S'Figuren in Bahnhof [?] (Group of People in Station [?]) [p. 24]' +p300350 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300351 +sa(dp300352 +g291130 +S'graphite' +p300353 +sg291132 +S'unknown date\n' +p300354 +sg291134 +S'Interieur mit Figuren (Figures in an Interior) [p. 25]' +p300355 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300356 +sa(dp300357 +g291130 +S'graphite' +p300358 +sg291132 +S'unknown date\n' +p300359 +sg291134 +S'Interieur mit Figuren (Figures in an Interior) [p. 26]' +p300360 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300361 +sa(dp300362 +g291130 +S'graphite' +p300363 +sg291132 +S'unknown date\n' +p300364 +sg291134 +S'Landschaft mit Fabrikbauten (Landscape with Factory Buildings) [p. 27]' +p300365 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300366 +sa(dp300367 +g291130 +S'graphite' +p300368 +sg291132 +S'unknown date\n' +p300369 +sg291134 +S'Begonnene Skizze (Unfinished Sketch) [p. 28]' +p300370 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300371 +sa(dp300372 +g291130 +S'graphite' +p300373 +sg291132 +S'unknown date\n' +p300374 +sg291134 +S'Mehrfigurige Skizze in Interieur (Interior Scene) [p. 32]' +p300375 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300376 +sa(dp300377 +g291130 +S'graphite' +p300378 +sg291132 +S'unknown date\n' +p300379 +sg291134 +S'Drei Figuren (Three Figures) [p. 34]' +p300380 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300381 +sa(dp300382 +g291130 +S'graphite' +p300383 +sg291132 +S'unknown date\n' +p300384 +sg291134 +S'Landschaft mit Berg und Tannen (Landscape with Mountain and Fir Trees) [p. 35]' +p300385 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300386 +sa(dp300387 +g291130 +S'graphite, charcoal, and pen with brown ink' +p300388 +sg291132 +S'unknown date\n' +p300389 +sg291134 +S'Notizen und kleine Skizzen (Sketches and Notes) [p. 36]' +p300390 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300391 +sa(dp300392 +g291130 +S'sketchbook with 5 sketches in graphite and charcoal and 74 blank pages.' +p300393 +sg291132 +S'unknown date\n' +p300394 +sg291134 +S'Beckmann Sketchbook' +p300395 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300396 +sa(dp300397 +g291130 +S'graphite' +p300398 +sg291132 +S'unknown date\n' +p300399 +sg291134 +S'Strandlandschaft mit Badenden (Seascape with Bathers) [p. 1]' +p300400 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300401 +sa(dp300402 +g291130 +S'graphite' +p300403 +sg291132 +S'unknown date\n' +p300404 +sg291134 +S'Ballspielende M\xc3\xa4nner am Strand (A Ballgame at the Beach) [p. 3]' +p300405 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300406 +sa(dp300407 +g291130 +S'graphite' +p300408 +sg291132 +S'unknown date\n' +p300409 +sg291134 +S'Anlegendes Segelboot und Uferpromenade (Sailboat arriving at Embankment) [p. 5]' +p300410 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300411 +sa(dp300412 +g291130 +S'charcoal' +p300413 +sg291132 +S'unknown date\n' +p300414 +sg291134 +S'Weibliche Badende (Swimmer) [p. 7]' +p300415 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300416 +sa(dp300417 +g291130 +S'charcoal' +p300418 +sg291132 +S'unknown date\n' +p300419 +sg291134 +S'Weibliche Halbfigur und verworfenes groteskes Profil (Female Half Figure and Abandoned Grotesque Profile) [p. 80]' +p300420 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300421 +sa(dp300422 +g291130 +S'sketchbook with 23 sketches (including one on inside front cover) in graphite, pen and black, brown, and gray ink on lined paper; 4 sheets of writing and calculations; 23 blank page; four sheets are missing.' +p300423 +sg291132 +S'1943-1947' +p300424 +sg291134 +S'Beckmann Sketchbook' +p300425 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300426 +sa(dp300427 +g291130 +S'pen and brown ink on lined paper' +p300428 +sg291132 +S'unknown date\n' +p300429 +sg291134 +S'Seilt\xc3\xa4nzer (Tightrope Walker) [p. 1]' +p300430 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300431 +sa(dp300432 +g291130 +S'pen with black and brown ink on lined paper' +p300433 +sg291132 +S'unknown date\n' +p300434 +sg291134 +S'Mehrfigurige Szene (Figural Scene) [p. 3]' +p300435 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300436 +sa(dp300437 +g291130 +S'pen and brown ink on lined paper' +p300438 +sg291132 +S'unknown date\n' +p300439 +sg291134 +S'Drei Skizzen mit Bezeichnung (Three Sketches with Inscriptions) [p. 4]' +p300440 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300441 +sa(dp300442 +g291130 +S'pen with brown and gray ink on lined paper' +p300443 +sg291132 +S'unknown date\n' +p300444 +sg291134 +S'Zwei Skizzen mit Bezeichnung (Two Sketches with Inscriptions) [p. 5]' +p300445 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300446 +sa(dp300447 +g291130 +S'pen with brown and gray ink on lined paper' +p300448 +sg291132 +S'unknown date\n' +p300449 +sg291134 +S'Zwei Stehende Frauen (Two Standing Women) [p. 6]' +p300450 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300451 +sa(dp300452 +g291130 +S'pen with brown and gray ink on lined paper' +p300453 +sg291132 +S'unknown date\n' +p300454 +sg291134 +S'Frau hinter Baum (Woman Behind a Tree) [p. 7]' +p300455 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300456 +sa(dp300457 +g291130 +S'pen with brown and gray ink on lined paper' +p300458 +sg291132 +S'unknown date\n' +p300459 +sg291134 +S'Sitzende Figur mit verdecktem Gesicht (Seated Figure with Covered Face) [p. 8]' +p300460 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300461 +sa(dp300462 +g291130 +S'pen with brown and gray ink on lined paper' +p300463 +sg291132 +S'unknown date\n' +p300464 +sg291134 +S'Zwei bezeichnete Skizzen (Two Sketches with Inscriptions) [p. 9]' +p300465 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300466 +sa(dp300467 +g291130 +S'pen and brown ink on lined paper' +p300468 +sg291132 +S'unknown date\n' +p300469 +sg291134 +S'Skizze mit Fensterausblick (Sketch with View from Window) [p. 10]' +p300470 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300471 +sa(dp300472 +g291130 +S'pen and brown ink on lined paper' +p300473 +sg291132 +S'unknown date\n' +p300474 +sg291134 +S'Verworfene Skizze (Figure Crossed Out) [p. 11]' +p300475 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300476 +sa(dp300477 +g291130 +S'pen and brown ink on lined paper' +p300478 +sg291132 +S'unknown date\n' +p300479 +sg291134 +S'Skizze mit zwei Figuren (Sketch with Two Figures) [p. 12]' +p300480 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300481 +sa(dp300482 +g291130 +S'pen and brown ink on lined paper' +p300483 +sg291132 +S'unknown date\n' +p300484 +sg291134 +S'Mehrfigurige Szene (Figural Sketch) [p. 13]' +p300485 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300486 +sa(dp300487 +g291130 +S'pen and brown ink on lined paper' +p300488 +sg291132 +S'unknown date\n' +p300489 +sg291134 +S'Zirkusszene (Circus Scene) [p. 14]' +p300490 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300491 +sa(dp300492 +g291130 +S'pen and brown ink on lined paper' +p300493 +sg291132 +S'unknown date\n' +p300494 +sg291134 +S'Zwei Skizzen (Two Sketches) [p. 15]' +p300495 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300496 +sa(dp300497 +g291130 +S'pen and brown ink on lined paper' +p300498 +sg291132 +S'unknown date\n' +p300499 +sg291134 +S'Der echte Don Juan (The Real Don Juan) [p. 16]' +p300500 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300501 +sa(dp300502 +g291130 +S'graphite on lined paper' +p300503 +sg291132 +S'unknown date\n' +p300504 +sg291134 +S'Mehrfigurige Szene (Reclining Nude with Onlookers) [p. 18]' +p300505 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300506 +sa(dp300507 +g291130 +S'graphite on lined paper' +p300508 +sg291132 +S'unknown date\n' +p300509 +sg291134 +S'Figuren in einer Bar (Figures in a Bar) [p. 19]' +p300510 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300511 +sa(dp300512 +g291130 +S'graphite on lined paper' +p300513 +sg291132 +S'unknown date\n' +p300514 +sg291134 +S'Paar und gro\xc3\x9fe Figur (Couple and Large Figure) [p. 21]' +p300515 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300516 +sa(dp300517 +g291130 +S'graphite on lined paper' +p300518 +sg291132 +S'unknown date\n' +p300519 +sg291134 +S'Nicht identifizierte Kompositionsskizze (Not identified compositional Sketch) [p. 22]' +p300520 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300521 +sa(dp300522 +g291130 +S'graphite on lined paper' +p300523 +sg291132 +S'unknown date\n' +p300524 +sg291134 +S'Liebespaar (Lovers) [p. 23]' +p300525 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300526 +sa(dp300527 +g291130 +S'graphite on lined paper' +p300528 +sg291132 +S'unknown date\n' +p300529 +sg291134 +S'Skizze mit 9 Einzelszenen (Nine Vignettes in a Grid) [p. 32]' +p300530 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300531 +sa(dp300532 +g291130 +S'sketchbook with 16 sketches in graphite and charcoal on colored paper. Sketchbook also contains 42 blank pages and 2 pages of notations.' +p300533 +sg291132 +S'1933/1936' +p300534 +sg291134 +S'Beckmann Sketchbook' +p300535 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300536 +sa(dp300537 +g291130 +S'graphite' +p300538 +sg291132 +S'unknown date\n' +p300539 +sg291134 +S'Frau mit Fackel und Kind (Woman with Torch and Child) [p. 1]' +p300540 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300541 +sa(dp300542 +g291130 +S'charcoal' +p300543 +sg291132 +S'unknown date\n' +p300544 +sg291134 +S'gefl\xc3\xbcgelte Mischwesen, \xc3\xbcber Gebirge fliegend (Winged Creature Flying over Mountains) [p. 3]' +p300545 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300546 +sa(dp300547 +g291130 +S'graphite' +p300548 +sg291132 +S'unknown date\n' +p300549 +sg291134 +S'Einblick in ein Gew\xc3\xb6lbe (View into a Cellar) [p. 5]' +p300550 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300551 +sa(dp300552 +g291130 +S'graphite' +p300553 +sg291132 +S'unknown date\n' +p300554 +sg291134 +S'D\xc3\xa4monen und Fabelwesen (Demons and Fantastic Creature) [p. 9]' +p300555 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300556 +sa(dp300557 +g291130 +S'graphite' +p300558 +sg291132 +S'1936' +p300559 +sg291134 +S'Interieur mit Figuren (Interior with Figures) [p. 11]' +p300560 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300561 +sa(dp300562 +g291130 +S'graphite on red paper' +p300563 +sg291132 +S'unknown date\n' +p300564 +sg291134 +S'Zwergenk\xc3\xb6nig und Riese auf einer B\xc3\xbchne (Dwarf King and Giant on a Stage) [p. 13]' +p300565 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300566 +sa(dp300567 +g291130 +S'graphite on green paper' +p300568 +sg291132 +S'unknown date\n' +p300569 +sg291134 +S'schreitender Mann (Nude Male) [p. 15]' +p300570 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300571 +sa(dp300572 +g291130 +S'graphite on green paper' +p300573 +sg291132 +S'unknown date\n' +p300574 +sg291134 +S'mehrfigurige Skizze mit kriechenden Figuren (Figure Sketch) [p. 17]' +p300575 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300576 +sa(dp300577 +g291130 +S'charcoal' +p300578 +sg291132 +S'unknown date\n' +p300579 +sg291134 +S'Selbstportrait mit D\xc3\xa4mon (Self-Portrait with Demon) [p. 19]' +p300580 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300581 +sa(dp300582 +g291130 +S'charcoal' +p300583 +sg291132 +S'unknown date\n' +p300584 +sg291134 +S'fl\xc3\xbcchtige Skizze zweier Figuren (Rough Sketch with Two Figures) [p. 21]' +p300585 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300586 +sa(dp300587 +g291130 +S'graphite' +p300588 +sg291132 +S'1934' +p300589 +sg291134 +S'Selbstportrait mit Kerze (Self-Portrait with Candle) [p. 23]' +p300590 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300591 +sa(dp300592 +g291130 +S'charcoal' +p300593 +sg291132 +S'unknown date\n' +p300594 +sg291134 +S'Skizze, "Der Tod und die G\xc3\xb6tter" (Sketch of "Death and the Gods") [p. 24]' +p300595 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300596 +sa(dp300597 +g291130 +S'charcoal' +p300598 +sg291132 +S'unknown date\n' +p300599 +sg291134 +S'Skizze, "Fest in der W\xc3\xbcste" (Sketch of "Festival in the Desert") [p. 27]' +p300600 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300601 +sa(dp300602 +g291130 +S'charcoal' +p300603 +sg291132 +S'unknown date\n' +p300604 +sg291134 +S'Profil, "Auktion" (Profile, "Auction") [p. 29]' +p300605 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300606 +sa(dp300607 +g291130 +S'charcoal' +p300608 +sg291132 +S'unknown date\n' +p300609 +sg291134 +S'Drei stehende Frauenakte und Notizen (Three Standing Women and Documentation) [p. 33]' +p300610 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300611 +sa(dp300612 +g291130 +S'charcoal on beige paper' +p300613 +sg291132 +S'unknown date\n' +p300614 +sg291134 +S'sitzende Figur mit dickem Bauch (Sitting Figure with Belly) [p. 41]' +p300615 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300616 +sa(dp300617 +g291130 +S'sketchbook with 6 sketches in graphite on lined paper, 86 blank pages and 1 missing sheet (2 pages)' +p300618 +sg291132 +S'unknown date\n' +p300619 +sg291134 +S'Beckmann Sketchbook' +p300620 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300621 +sa(dp300622 +g291130 +S'graphite on lined paper' +p300623 +sg291132 +S'unknown date\n' +p300624 +sg291134 +S'umgekippter Schubkarren (Tilted Wheelbarrow) [p. 1]' +p300625 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300626 +sa(dp300627 +g291130 +S'graphite on lined paper' +p300628 +sg291132 +S'unknown date\n' +p300629 +sg291134 +S'Rad eines Schubkarrens (Wheel of a Wheelbarrow) [p. 3]' +p300630 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300631 +sa(dp300632 +g291130 +S'graphite on lined paper' +p300633 +sg291132 +S'unknown date\n' +p300634 +sg291134 +S'stehender Schubkarren vor Architektur (Wheelbarrow Standing by Architecture) [p. 5]' +p300635 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300636 +sa(dp300637 +g291130 +S'graphite on lined paper' +p300638 +sg291132 +S'unknown date\n' +p300639 +sg291134 +S'stehender Schubkarren (Wheelbarrow Standing) [p. 7]' +p300640 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300641 +sa(dp300642 +g291130 +S'graphite on lined paper' +p300643 +sg291132 +S'unknown date\n' +p300644 +sg291134 +S'stehendes Kalb (Standing Calf) [p. 9]' +p300645 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300646 +sa(dp300647 +g291130 +S'graphite on lined paper' +p300648 +sg291132 +S'unknown date\n' +p300649 +sg291134 +S'stehendes Kalb, weiter ausgef\xc3\xbchrt (Standing Calf) [p. 11]' +p300650 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300651 +sa(dp300652 +g291130 +S'sketchbook with 6 sketches; 4 in graphite and 2 in pen and black ink. Book additionally contains 12 blank pages.' +p300653 +sg291132 +S'unknown date\n' +p300654 +sg291134 +S'Beckmann Sketchbook' +p300655 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300656 +sa(dp300657 +g291130 +S'graphite on paper' +p300658 +sg291132 +S'unknown date\n' +p300659 +sg291134 +S'Study of Artillery Cannon (Begonnene Studie einer Artilleriekanone) [p. 1]' +p300660 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300661 +sa(dp300662 +g291130 +S'pen with black ink on paper' +p300663 +sg291132 +S'unknown date\n' +p300664 +sg291134 +S'Church Tower of St. M\xc3\xa9dard in Verwik (Turm der Kirche St. M\xc3\xa9dard in Verwik) [p. 2]' +p300665 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300666 +sa(dp300667 +g291130 +S'pen with black ink on paper' +p300668 +sg291132 +S'unknown date\n' +p300669 +sg291134 +S'Self-Portrait (Selbstbildnis) [p. 3]' +p300670 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300671 +sa(dp300672 +g291130 +S'graphite on paper' +p300673 +sg291132 +S'unknown date\n' +p300674 +sg291134 +S'Male Portrait Study (Mannliche Bildnisstudie, daruber Kohler...) [p. 7]' +p300675 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300676 +sa(dp300677 +g291130 +S'graphite on paper' +p300678 +sg291132 +S'unknown date\n' +p300679 +sg291134 +S'Portrait Study (Fl\xc3\xbcchtige Bildnisstudie) [p. 16]' +p300680 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300681 +sa(dp300682 +g291130 +S'graphite with black ink on paper' +p300683 +sg291132 +S'unknown date\n' +p300684 +sg291134 +S'Male Portrait Study and Notes (M\xc3\xa4nnerakte in R\xc3\xbcckenansicht in einem Bad) [p. 18]' +p300685 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300686 +sa(dp300687 +g291130 +S'sketchbook of 56 pages containing 6 blank pages, 16 pages of artist notations and 34 sketches, 19 in graphite, 2 in pen and black ink, 8 in graphite with pen and black ink; 5 in graphite, pen and black ink with red chalk.' +p300688 +sg291132 +S'unknown date\n' +p300689 +sg291134 +S'Beckmann Sketchbook' +p300690 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300691 +sa(dp300692 +g291130 +S'graphite' +p300693 +sg291132 +S'unknown date\n' +p300694 +sg291134 +S'Geometrische Skizze (Geometric Sketch) [p. 1]' +p300695 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300696 +sa(dp300697 +g291130 +S'graphite' +p300698 +sg291132 +S'unknown date\n' +p300699 +sg291134 +S'Notizen (Notation) [p. 3]' +p300700 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300701 +sa(dp300702 +g291130 +S'pen with black ink on paper' +p300703 +sg291132 +S'unknown date\n' +p300704 +sg291134 +S'Kost\xc3\xbcmstudien von Hebr\xc3\xa4ern (Hebrew Costume Studies) [p. 4]' +p300705 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300706 +sa(dp300707 +g291130 +S'graphite' +p300708 +sg291132 +S'unknown date\n' +p300709 +sg291134 +S'Kost\xc3\xbcmstudien von Hebr\xc3\xa4ern (Hebrew Costume Studies) [p. 5]' +p300710 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300711 +sa(dp300712 +g291130 +S'graphite' +p300713 +sg291132 +S'unknown date\n' +p300714 +sg291134 +S'Von Ochsen gezogener Heuwagen (Hay Cart pulled by Bullocks) [p. 6]' +p300715 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300716 +sa(dp300717 +g291130 +S'graphite' +p300718 +sg291132 +S'unknown date\n' +p300719 +sg291134 +S'Notizen (Notation) [p. 7]' +p300720 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300721 +sa(dp300722 +g291130 +S'graphite' +p300723 +sg291132 +S'unknown date\n' +p300724 +sg291134 +S'Zwei Studien eines Ochsen (Two Studies of a Bullock) [p. 8]' +p300725 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300726 +sa(dp300727 +g291130 +S'graphite' +p300728 +sg291132 +S'unknown date\n' +p300729 +sg291134 +S"Zwei Studien eines Ochsenkopfes, Notizen (Two Studies of a Bullock's Head, Notation) [p. 9]" +p300730 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300731 +sa(dp300732 +g291130 +S'graphite' +p300733 +sg291132 +S'unknown date\n' +p300734 +sg291134 +S'Detailstudien eines Ochsen, Notizen (Details of a Bullock, Notation) [p. 10]' +p300735 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300736 +sa(dp300737 +g291130 +S'graphite' +p300738 +sg291132 +S'unknown date\n' +p300739 +sg291134 +S'Notizen (Notation) [p. 11]' +p300740 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300741 +sa(dp300742 +g291130 +S'graphite' +p300743 +sg291132 +S'unknown date\n' +p300744 +sg291134 +S'Notizen (Notation) [p. 12]' +p300745 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300746 +sa(dp300747 +g291130 +S'graphite' +p300748 +sg291132 +S'unknown date\n' +p300749 +sg291134 +S'Mehrfigurige Kompositionsskizze (Figural Sketch) [p. 27]' +p300750 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300751 +sa(dp300752 +g291130 +S'graphite' +p300753 +sg291132 +S'unknown date\n' +p300754 +sg291134 +S'Mehrfigurige Kompositionsskizze (Figural Sketch) [p. 28]' +p300755 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300756 +sa(dp300757 +g291130 +S'graphite' +p300758 +sg291132 +S'unknown date\n' +p300759 +sg291134 +S'Mehrfigurige Kompositionsskizze (Figural Sketch) [p. 29]' +p300760 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300761 +sa(dp300762 +g291130 +S'graphite' +p300763 +sg291132 +S'unknown date\n' +p300764 +sg291134 +S'Notizen (Notation) [p. 32]' +p300765 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300766 +sa(dp300767 +g291130 +S'graphite with ink bleed through from verso' +p300768 +sg291132 +S'unknown date\n' +p300769 +sg291134 +S'Notizen (Notation) [p. 33]' +p300770 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300771 +sa(dp300772 +g291130 +S'pen with black ink and wash' +p300773 +sg291132 +S'unknown date\n' +p300774 +sg291134 +S'Zwei bezeichnete Skizzen (Two Sketches with Inscriptions) [p. 34]' +p300775 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300776 +sa(dp300777 +g291130 +S'graphite' +p300778 +sg291132 +S'unknown date\n' +p300779 +sg291134 +S'Notizen und kleine Skizze (Notation and Small Sketch) [p. 35]' +p300780 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300781 +sa(dp300782 +g291130 +S'graphite with pen and black ink' +p300783 +sg291132 +S'unknown date\n' +p300784 +sg291134 +S'Zwei bezeichnete Skizzen (Two Sketches with Inscription) [p. 36]' +p300785 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300786 +sa(dp300787 +g291130 +S'pen and black ink' +p300788 +sg291132 +S'unknown date\n' +p300789 +sg291134 +S'Skizze und leerer Rahmen mit Bezeichnung (Sketch and Empty Frame with Inscription) [p. 37]' +p300790 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300791 +sa(dp300792 +g291130 +S'graphite with pen and black ink' +p300793 +sg291132 +S'unknown date\n' +p300794 +sg291134 +S'Drei kleine Skizzen mit Bezeichnung (Three Small Sketches with Inscriptions) [p. 38]' +p300795 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300796 +sa(dp300797 +g291130 +S'graphite' +p300798 +sg291132 +S'unknown date\n' +p300799 +sg291134 +S'Zwei Skizzen, Bezeichnungen (Two Sketches with Inscriptions) [p. 39]' +p300800 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300801 +sa(dp300802 +g291130 +S'graphite with pen and black ink notations' +p300803 +sg291132 +S'unknown date\n' +p300804 +sg291134 +S'Notizen und kleine Skizze (Notations and Small Sketch) [p. 40]' +p300805 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300806 +sa(dp300807 +g291130 +S'graphite' +p300808 +sg291132 +S'unknown date\n' +p300809 +sg291134 +S'Meeresstudie (Seascape) [p. 41]' +p300810 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300811 +sa(dp300812 +g291130 +S'graphite with traces of black ink' +p300813 +sg291132 +S'unknown date\n' +p300814 +sg291134 +S'Landschaftsstudie (Landscape) [p. 42]' +p300815 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300816 +sa(dp300817 +g291130 +S'graphite with pen and black ink and wash' +p300818 +sg291132 +S'unknown date\n' +p300819 +sg291134 +S'Zwei Skizzen, Bezeichnungen (Two Sketches with Inscriptions) [p. 43]' +p300820 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300821 +sa(dp300822 +g291130 +S'pen and black ink with red chalk' +p300823 +sg291132 +S'unknown date\n' +p300824 +sg291134 +S'Zwei Skizzen, Bezeichnungen (Two Sketches with Inscriptions) [p. 44]' +p300825 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300826 +sa(dp300827 +g291130 +S'graphite under pen and black ink notation' +p300828 +sg291132 +S'unknown date\n' +p300829 +sg291134 +S'Notizen (Notations) [p. 45]' +p300830 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300831 +sa(dp300832 +g291130 +S'graphite under red chalk with black ink notations' +p300833 +sg291132 +S'unknown date\n' +p300834 +sg291134 +S'Notizen (Notations) [p. 46]' +p300835 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300836 +sa(dp300837 +g291130 +S'graphite under black ink' +p300838 +sg291132 +S'unknown date\n' +p300839 +sg291134 +S'Zwei bezeichnete Skizzen, Notizen (Two Inscribed Sketches, Notations) [p. 48]' +p300840 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300841 +sa(dp300842 +g291130 +S'pen and black ink' +p300843 +sg291132 +S'unknown date\n' +p300844 +sg291134 +S'Drei kleine Skizzen mit Bezeichnung (Three Small Sketches with Inscriptions) [p. 49]' +p300845 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300846 +sa(dp300847 +g291130 +S'pen and black ink with red chalk' +p300848 +sg291132 +S'unknown date\n' +p300849 +sg291134 +S'Drei kleine Skizzen mit Bezeichnung (Three Small Sketches with Inscriptions) [p. 50]' +p300850 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300851 +sa(dp300852 +g291130 +S'pen and black ink with red chalk and graphite' +p300853 +sg291132 +S'unknown date\n' +p300854 +sg291134 +S'Drei kleine Skizzen mit Bezeichnung (Three Small Sketches with Inscriptions) [p. 51]' +p300855 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300856 +sa(dp300857 +g291130 +S'pen and black ink with red chalk and graphite' +p300858 +sg291132 +S'unknown date\n' +p300859 +sg291134 +S'F\xc3\xbcnf kleine Skizzen mit Bezeichnung (Five Small Sketches with Inscriptions) [p. 52]' +p300860 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300861 +sa(dp300862 +g291130 +S'sketchbook with 5 sketches in graphite' +p300863 +sg291132 +S'unknown date\n' +p300864 +sg291134 +S'Beckmann Sketchbook' +p300865 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300866 +sa(dp300867 +g291130 +S'graphite' +p300868 +sg291132 +S'unknown date\n' +p300869 +sg291134 +S'Mittelalterlich gekleideter Mann, Trompete blasend mit Pferd (Medieval Trumpeter by His Horse) [p. 1]' +p300870 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300871 +sa(dp300872 +g291130 +S'graphite' +p300873 +sg291132 +S'unknown date\n' +p300874 +sg291134 +S'Begonnener Skizze eines Giebels (Beginning Sketch of Gables) [p. 5]' +p300875 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300876 +sa(dp300877 +g291130 +S'graphite' +p300878 +sg291132 +S'unknown date\n' +p300879 +sg291134 +S'Begonnener Pferdekopf (Beginning Sketch of Horse Head) [p. 7]' +p300880 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300881 +sa(dp300882 +g291130 +S'graphite' +p300883 +sg291132 +S'unknown date\n' +p300884 +sg291134 +S'Weiblich Bildnistudie, Sabine Hackenschmidt (Portrait of Sabine Hackenschmidt) [p. 14]' +p300885 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300886 +sa(dp300887 +g291130 +S'graphite' +p300888 +sg291132 +S'unknown date\n' +p300889 +sg291134 +S'M\xc3\xa4nnliche Bildnisstudie (Unknown Male Portrait Study) [p. 20]' +p300890 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300891 +sa(dp300892 +g291130 +S"sketchbook with 28 sketches in graphite, 15 pages of artist's notations, 11 blank pages, and 2 missing sheets (4 pages.)" +p300893 +sg291132 +S'unknown date\n' +p300894 +sg291134 +S'Beckmann Sketchbook' +p300895 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300896 +sa(dp300897 +g291130 +S'graphite' +p300898 +sg291132 +S'unknown date\n' +p300899 +sg291134 +S'\xc3\xa4lterer Mann in R\xc3\xbcckenansicht (Elderly Man Seen from Behind) [p. 3]' +p300900 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300901 +sa(dp300902 +g291130 +S'graphite' +p300903 +sg291132 +S'unknown date\n' +p300904 +sg291134 +S'Menschen [in einem Casino?] (People [in a Casino?]) [p. 5]' +p300905 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300906 +sa(dp300907 +g291130 +S'graphite' +p300908 +sg291132 +S'unknown date\n' +p300909 +sg291134 +S'begonnene Skizze eines Mannes mit Bart (Unfinished Sketch of a Man with Beard) [p. 6]' +p300910 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300911 +sa(dp300912 +g291130 +S'graphite' +p300913 +sg291132 +S'unknown date\n' +p300914 +sg291134 +S'Mann und Notizen (Man with Notations) [p. 7]' +p300915 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300916 +sa(dp300917 +g291130 +S'graphite' +p300918 +sg291132 +S'unknown date\n' +p300919 +sg291134 +S'fl\xc3\xbcchtige m\xc3\xa4nnliche Bildnisstudie (Male Portrait Sudy) [p. 8]' +p300920 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300921 +sa(dp300922 +g291130 +S'graphite' +p300923 +sg291132 +S'unknown date\n' +p300924 +sg291134 +S'Lageplan (Site Plan) [p. 9]' +p300925 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300926 +sa(dp300927 +g291130 +S'graphite' +p300928 +sg291132 +S'unknown date\n' +p300929 +sg291134 +S'm\xc3\xa4nnliche Bildnisstudie (Male Portrait Study) [p. 10]' +p300930 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300931 +sa(dp300932 +g291130 +S'graphite' +p300933 +sg291132 +S'unknown date\n' +p300934 +sg291134 +S'drei K\xc3\xb6pfe und Beschriftung (Three Heads, One Notation) [p. 11]' +p300935 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300936 +sa(dp300937 +g291130 +S'graphite' +p300938 +sg291132 +S'unknown date\n' +p300939 +sg291134 +S'hageres Gesicht (Slim Head) [p. 12]' +p300940 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300941 +sa(dp300942 +g291130 +S'graphite' +p300943 +sg291132 +S'unknown date\n' +p300944 +sg291134 +S'b\xc3\xa4rtiger Mann (Bearded Head) [p. 14]' +p300945 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300946 +sa(dp300947 +g291130 +S'graphite' +p300948 +sg291132 +S'unknown date\n' +p300949 +sg291134 +S'junger Mann mit aufgest\xc3\xbctztem Kopf (Young Man, Propped Up) [p. 15]' +p300950 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300951 +sa(dp300952 +g291130 +S'graphite' +p300953 +sg291132 +S'unknown date\n' +p300954 +sg291134 +S'Mann im Frack (Man in Dress Coat) [p. 16]' +p300955 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300956 +sa(dp300957 +g291130 +S'graphite' +p300958 +sg291132 +S'unknown date\n' +p300959 +sg291134 +S'junger Mann (Young Man) [p. 17]' +p300960 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300961 +sa(dp300962 +g291130 +S'graphite' +p300963 +sg291132 +S'unknown date\n' +p300964 +sg291134 +S'begonnene Skizze eines Mannes mit Bart (Sketch of a Man with a Beard) [p. 18]' +p300965 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300966 +sa(dp300967 +g291130 +S'graphite' +p300968 +sg291132 +S'unknown date\n' +p300969 +sg291134 +S'liegende Frau und sitzeder Mann (Reclining Female and Seated Male) [p. 19]' +p300970 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300971 +sa(dp300972 +g291130 +S'graphite' +p300973 +sg291132 +S'unknown date\n' +p300974 +sg291134 +S'ballspielnde M\xc3\xa4nner (Man Playing a Ballgame) [p. 21]' +p300975 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300976 +sa(dp300977 +g291130 +S'graphite' +p300978 +sg291132 +S'unknown date\n' +p300979 +sg291134 +S'sitzende Frau (Reclining Female) [p. 23]' +p300980 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300981 +sa(dp300982 +g291130 +S'graphite' +p300983 +sg291132 +S'unknown date\n' +p300984 +sg291134 +S'Zwei Frauen (Two Women) [p. 31]' +p300985 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300986 +sa(dp300987 +g291130 +S'graphite' +p300988 +sg291132 +S'unknown date\n' +p300989 +sg291134 +S'weibliche Bildnisstudie (Female Portrait) [p. 33]' +p300990 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300991 +sa(dp300992 +g291130 +S'graphite' +p300993 +sg291132 +S'unknown date\n' +p300994 +sg291134 +S'dieselbe Frau (Female Portrait) [p. 35]' +p300995 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p300996 +sa(dp300997 +g291130 +S'graphite' +p300998 +sg291132 +S'unknown date\n' +p300999 +sg291134 +S'Mann und Frau (Two Figures) [p. 37]' +p301000 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301001 +sa(dp301002 +g291130 +S'graphite' +p301003 +sg291132 +S'unknown date\n' +p301004 +sg291134 +S'weibliches Profil mit Hut, Notizen (Woman with Hat, Notations) [p. 39]' +p301005 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301006 +sa(dp301007 +g291130 +S'graphite' +p301008 +sg291132 +S'unknown date\n' +p301009 +sg291134 +S'Zwei Frauen (Two Women) [p. 40]' +p301010 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301011 +sa(dp301012 +g291130 +S'graphite' +p301013 +sg291132 +S'unknown date\n' +p301014 +sg291134 +S'Mann und Frau (Man and Woman) [p. 43]' +p301015 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301016 +sa(dp301017 +g291130 +S'graphite' +p301018 +sg291132 +S'unknown date\n' +p301019 +sg291134 +S'Studienk\xc3\xb6pfe (Portrait Studies) [p. 44]' +p301020 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301021 +sa(dp301022 +g291130 +S'graphite' +p301023 +sg291132 +S'unknown date\n' +p301024 +sg291134 +S'begonnene Skizze eines Gesichts (Initial Sketch of Profile) [p. 45]' +p301025 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301026 +sa(dp301027 +g291130 +S'graphite' +p301028 +sg291132 +S'unknown date\n' +p301029 +sg291134 +S'zwei Figuren in einer Loge (Two People in Box Seats) [p. 47]' +p301030 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301031 +sa(dp301032 +g291130 +S'graphite' +p301033 +sg291132 +S'unknown date\n' +p301034 +sg291134 +S'drei K\xc3\xb6pfe (Three Heads) [p. 51]' +p301035 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301036 +sa(dp301037 +g291130 +S"sketchbook with 26 sketches in graphite and charcoal and 1 sheet of artist's notations on white, blue and green laid paper. Sketchbook has 37 blank pages." +p301038 +sg291132 +S'unknown date\n' +p301039 +sg291134 +S'Beckmann Sketchbook' +p301040 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301041 +sa(dp301042 +g291130 +S'graphite' +p301043 +sg291132 +S'unknown date\n' +p301044 +sg291134 +S'Profil und Liste (Profile with Notations) [p. 1]' +p301045 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301046 +sa(dp301047 +g291130 +S'graphite' +p301048 +sg291132 +S'unknown date\n' +p301049 +sg291134 +S'balancierender Artist (Balancing Act of an Acrobat) [p. 2]' +p301050 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301051 +sa(dp301052 +g291130 +S'graphite' +p301053 +sg291132 +S'unknown date\n' +p301054 +sg291134 +S'Zirkusszene (Circus Scene) [p. 3]' +p301055 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301056 +sa(dp301057 +g291130 +S'graphite on blue paper' +p301058 +sg291132 +S'unknown date\n' +p301059 +sg291134 +S'm\xc3\xa4nnliche Bildnisstudie (Male Portrait Study) [p. 7]' +p301060 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301061 +sa(dp301062 +g291130 +S'graphite' +p301063 +sg291132 +S'unknown date\n' +p301064 +sg291134 +S'Zwei Personen an einer Bar (Two Figures at a Bar) [p. 12]' +p301065 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301066 +sa(dp301067 +g291130 +S'graphite' +p301068 +sg291132 +S'unknown date\n' +p301069 +sg291134 +S'Hallenarchitektur (Vaulted Architecture) [p. 14]' +p301070 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301071 +sa(dp301072 +g291130 +S'graphite' +p301073 +sg291132 +S'unknown date\n' +p301074 +sg291134 +S'Bahnhofs Halle (Railway Station) [p. 15]' +p301075 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301076 +sa(dp301077 +g291130 +S'graphite' +p301078 +sg291132 +S'unknown date\n' +p301079 +sg291134 +S'fl\xc3\xbcchtige Skizze von Akrobaten (Sketch of Acrobats) [p. 16]' +p301080 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301081 +sa(dp301082 +g291130 +S'graphite' +p301083 +sg291132 +S'unknown date\n' +p301084 +sg291134 +S'alter Mann mit Kneifer (Old Man with Spectacles) [p. 17]' +p301085 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301086 +sa(dp301087 +g291130 +S'graphite' +p301088 +sg291132 +S'unknown date\n' +p301089 +sg291134 +S'Hallenarchitektur (Vaulted Architecture) [p. 18]' +p301090 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301091 +sa(dp301092 +g291130 +S'graphite on green paper' +p301093 +sg291132 +S'unknown date\n' +p301094 +sg291134 +S'Hallenarchitektur (Vaulted Architecture) [p. 19]' +p301095 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301096 +sa(dp301097 +g291130 +S'graphite' +p301098 +sg291132 +S'unknown date\n' +p301099 +sg291134 +S'Zwei Figuren (Two Figures) [p. 20]' +p301100 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301101 +sa(dp301102 +g291130 +S'graphite' +p301103 +sg291132 +S'unknown date\n' +p301104 +sg291134 +S'Tanzende auf einer B\xc3\xbchne (Dancers on a Stage) [p. 21]' +p301105 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301106 +sa(dp301107 +g291130 +S'graphite' +p301108 +sg291132 +S'unknown date\n' +p301109 +sg291134 +S'alter Mann mit Kneifer (Male Portrait) [p. 23]' +p301110 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301111 +sa(dp301112 +g291130 +S'graphite' +p301113 +sg291132 +S'unknown date\n' +p301114 +sg291134 +S'drei Personen im Caf\xc3\xa9 (Three Figures in a Caf\xc3\xa9) [p. 25]' +p301115 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301116 +sa(dp301117 +g291130 +S'graphite' +p301118 +sg291132 +S'unknown date\n' +p301119 +sg291134 +S'Seilt\xc3\xa4nzer (Tightrope) [p. 26]' +p301120 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301121 +sa(dp301122 +g291130 +S'graphite on green paper' +p301123 +sg291132 +S'unknown date\n' +p301124 +sg291134 +S'Frau mit Hut (Woman with a Hat) [p. 33]' +p301125 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301126 +sa(dp301127 +g291130 +S'graphite on green paper' +p301128 +sg291132 +S'unknown date\n' +p301129 +sg291134 +S'Mann und Frau mit Sektgl\xc3\xa4sern (Couple with Champagne Glasses) [p. 37]' +p301130 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301131 +sa(dp301132 +g291130 +S'graphite on green paper' +p301133 +sg291132 +S'unknown date\n' +p301134 +sg291134 +S'Zwei K\xc3\xb6pfe (Two Heads) [p. 39]' +p301135 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301136 +sa(dp301137 +g291130 +S'graphite with charcoal on green paper' +p301138 +sg291132 +S'unknown date\n' +p301139 +sg291134 +S'mehrere Studienk\xc3\xb6pfe (Several Head Studies) [p. 41]' +p301140 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301141 +sa(dp301142 +g291130 +S'graphite on green paper' +p301143 +sg291132 +S'unknown date\n' +p301144 +sg291134 +S'Frau mit Hut im Gespr\xc3\xa4ch (Woman in Hat Talking) [p. 43]' +p301145 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301146 +sa(dp301147 +g291130 +S'graphite on green paper' +p301148 +sg291132 +S'unknown date\n' +p301149 +sg291134 +S'begonnene Figurenstudie (Figural Sketch) [p. 45]' +p301150 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301151 +sa(dp301152 +g291130 +S'graphite' +p301153 +sg291132 +S'unknown date\n' +p301154 +sg291134 +S'Zwerg (Small Man) [p. 47]' +p301155 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301156 +sa(dp301157 +g291130 +S'graphite' +p301158 +sg291132 +S'unknown date\n' +p301159 +sg291134 +S'Zwei Figuren (Two Figures [p. 51]' +p301160 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301161 +sa(dp301162 +g291130 +S'graphite' +p301163 +sg291132 +S'unknown date\n' +p301164 +sg291134 +S'fl\xc3\xbcchtiges Gesicht (Sketch of a Face) [p. 53]' +p301165 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301166 +sa(dp301167 +g291130 +S'graphite and charcoal' +p301168 +sg291132 +S'unknown date\n' +p301169 +sg291134 +S'Landschaftsskizze mit Notizen (Sketch with Inscription) [p. 64]' +p301170 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301171 +sa(dp301172 +g291130 +S'sketchbook with 17 sketches in graphite. Pages 1-26 are separated at perforated edge. Sketchbook is missing front and back covers and has many missing sheets at the back. Contains 89 blank pages.' +p301173 +sg291132 +S'unknown date\n' +p301174 +sg291134 +S'Beckmann Sketchbook' +p301175 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301176 +sa(dp301177 +g291130 +S'graphite on paper' +p301178 +sg291132 +S'unknown date\n' +p301179 +sg291134 +S'Akrobat in der Br\xc3\xbccke (Backbend) [p. 1]' +p301180 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301181 +sa(dp301182 +g291130 +S'graphite on paper' +p301183 +sg291132 +S'unknown date\n' +p301184 +sg291134 +S'Akrobat in der Br\xc3\xbccke und weitere Figur (Backbend with Onlooker) [p. 3]' +p301185 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301186 +sa(dp301187 +g291130 +S'graphite on paper' +p301188 +sg291132 +S'unknown date\n' +p301189 +sg291134 +S'Akrobat in der Br\xc3\xbccke (Backbend) [p. 5]' +p301190 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301191 +sa(dp301192 +g291130 +S'graphite on paper' +p301193 +sg291132 +S'unknown date\n' +p301194 +sg291134 +S'Singende Frau (Woman Singing) [p. 7]' +p301195 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301196 +sa(dp301197 +g291130 +S'graphite on paper' +p301198 +sg291132 +S'unknown date\n' +p301199 +sg291134 +S'Akrobat, in die Br\xc3\xbccke gehend (Acrobat Bending Backward) [p. 9]' +p301200 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301201 +sa(dp301202 +g291130 +S'graphite on paper' +p301203 +sg291132 +S'unknown date\n' +p301204 +sg291134 +S'Tanzende Figur (Dancing Figure) [p. 11]' +p301205 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301206 +sa(dp301207 +g291130 +S'graphite on paper' +p301208 +sg291132 +S'unknown date\n' +p301209 +sg291134 +S'Akrobat in der Br\xc3\xbccke (Backbend) [p. 13]' +p301210 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301211 +sa(dp301212 +g291130 +S'graphite on paper' +p301213 +sg291132 +S'unknown date\n' +p301214 +sg291134 +S'Akrobat in der Br\xc3\xbccke (Backbend) [p. 15]' +p301215 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301216 +sa(dp301217 +g291130 +S'graphite on paper' +p301218 +sg291132 +S'unknown date\n' +p301219 +sg291134 +S'Akrobat in der Br\xc3\xbccke, Detail (Backbend, Detail) [p. 17]' +p301220 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301221 +sa(dp301222 +g291130 +S'graphite on paper' +p301223 +sg291132 +S'unknown date\n' +p301224 +sg291134 +S'Akrobat im Handstand auf Bock (Chair Stand) [p. 19]' +p301225 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301226 +sa(dp301227 +g291130 +S'graphite on paper' +p301228 +sg291132 +S'unknown date\n' +p301229 +sg291134 +S'Seel\xc3\xb6we (Sea Lion) [p. 21]' +p301230 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301231 +sa(dp301232 +g291130 +S'graphite on paper' +p301233 +sg291132 +S'unknown date\n' +p301234 +sg291134 +S'Zirkusnummer mit zwei Seel\xc3\xb6wen (Two Performing Sea Lions) [p. 23]' +p301235 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301236 +sa(dp301237 +g291130 +S'graphite on paper' +p301238 +sg291132 +S'unknown date\n' +p301239 +sg291134 +S'Zirkusnummer mit zwei Seel\xc3\xb6wen (Two Performing Sea Lions) [p. 25]' +p301240 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301241 +sa(dp301242 +g291130 +S'graphite on paper' +p301243 +sg291132 +S'unknown date\n' +p301244 +sg291134 +S'Paar an der Bar (Couple at a Bar) [p. 27]' +p301245 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301246 +sa(dp301247 +g291130 +S'graphite on paper' +p301248 +sg291132 +S'unknown date\n' +p301249 +sg291134 +S'Paar an der Bar (Couple at a Bar) [p. 29]' +p301250 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301251 +sa(dp301252 +g291130 +S'graphite on paper' +p301253 +sg291132 +S'unknown date\n' +p301254 +sg291134 +S'M\xc3\xa4nnliche Bildnisstudie (Male Portrait Study) [p. 31]' +p301255 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301256 +sa(dp301257 +g291130 +S'graphite on paper' +p301258 +sg291132 +S'unknown date\n' +p301259 +sg291134 +S'Lachende Frau mit an den Kopf gelegten H\xc3\xa4nden (Woman Laughing with Hands at her Head) [p. 57]' +p301260 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301261 +sa(dp301262 +g291130 +S'Sketchbook with 32 sketches; 26 in graphite, 5 in charcoal, and 1 in purple colored pencil.' +p301263 +sg291132 +S'unknown date\n' +p301264 +sg291134 +S'Beckmann Sketchbook' +p301265 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301266 +sa(dp301267 +g291130 +S'graphite on paper' +p301268 +sg291132 +S'unknown date\n' +p301269 +sg291134 +S'Kahn (Ship) [p. 3]' +p301270 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301271 +sa(dp301272 +g291130 +S'graphite on paper' +p301273 +sg291132 +S'unknown date\n' +p301274 +sg291134 +S'Kahn, Detail (Ship, Detail) [p. 5]' +p301275 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301276 +sa(dp301277 +g291130 +S'graphite on paper' +p301278 +sg291132 +S'unknown date\n' +p301279 +sg291134 +S'H\xc3\xa4userdach (Rooftop) [p. 20]' +p301280 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301281 +sa(dp301282 +g291130 +S'graphite on paper' +p301283 +sg291132 +S'unknown date\n' +p301284 +sg291134 +S'Stra\xc3\x9fenlaterne (Lamppost) [p. 21]' +p301285 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301286 +sa(dp301287 +g291130 +S'graphite on paper' +p301288 +sg291132 +S'unknown date\n' +p301289 +sg291134 +S'Drei Figuren in Interieur (Three Figures in a Building) [p. 27]' +p301290 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301291 +sa(dp301292 +g291130 +S'charcoal on paper' +p301293 +sg291132 +S'unknown date\n' +p301294 +sg291134 +S'H\xc3\xa4userfassade (Facade) [p. 31]' +p301295 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301296 +sa(dp301297 +g291130 +S'charcoal on paper' +p301298 +sg291132 +S'unknown date\n' +p301299 +sg291134 +S'Details einer H\xc3\xa4userfassade (Details of a Facade) [p. 32]' +p301300 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301301 +sa(dp301302 +g291130 +S'charcoal on paper' +p301303 +sg291132 +S'unknown date\n' +p301304 +sg291134 +S'Details einer H\xc3\xa4userfassade (Details of a Facade) [p. 33]' +p301305 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301306 +sa(dp301307 +g291130 +S'charcoal on paper' +p301308 +sg291132 +S'unknown date\n' +p301309 +sg291134 +S'Spitze einer Stra\xc3\x9fenlaterne, zu .013 geh\xc3\xb6rend (Top of a Lamppost, belonging to .013) [p. 34]' +p301310 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301311 +sa(dp301312 +g291130 +S'charcoal on paper' +p301313 +sg291132 +S'unknown date\n' +p301314 +sg291134 +S'Laterne vor H\xc3\xa4userfassade (Lamppost in Front of Facade) [p. 35]' +p301315 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301316 +sa(dp301317 +g291130 +S'graphite on paper' +p301318 +sg291132 +S'unknown date\n' +p301319 +sg291134 +S'Kopf mit Hut, Gesicht verworfen (Head with a Hat) [p. 37]' +p301320 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301321 +sa(dp301322 +g291130 +S'graphite on paper' +p301323 +sg291132 +S'unknown date\n' +p301324 +sg291134 +S'Weibliche Bildnisstudie (Female Portrait Study) [p. 43]' +p301325 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301326 +sa(dp301327 +g291130 +S'graphite on paper' +p301328 +sg291132 +S'unknown date\n' +p301329 +sg291134 +S'Strommast, zu .018 geh\xc3\xb6rend (Power Pole, belonging to .018) [p. 46]' +p301330 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301331 +sa(dp301332 +g291130 +S'graphite on paper' +p301333 +sg291132 +S'unknown date\n' +p301334 +sg291134 +S'Aufsicht auf eine Stra\xc3\x9fenkreuzung (Top View on a crossing) [p. 47]' +p301335 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301336 +sa(dp301337 +g291130 +S'graphite on paper' +p301338 +sg291132 +S'unknown date\n' +p301339 +sg291134 +S'zwei Figuren (Two Figures) [p. 50]' +p301340 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301341 +sa(dp301342 +g291130 +S'graphite on paper' +p301343 +sg291132 +S'unknown date\n' +p301344 +sg291134 +S'begonnene Skizze (Initial Sketch) [p. 51]' +p301345 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301346 +sa(dp301347 +g291130 +S'graphite on paper' +p301348 +sg291132 +S'unknown date\n' +p301349 +sg291134 +S'Zirkusnummer mit B\xc3\xa4ren (Performing Bears) [p. 54]' +p301350 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301351 +sa(dp301352 +g291130 +S'graphite on paper' +p301353 +sg291132 +S'unknown date\n' +p301354 +sg291134 +S"Detail eines B\xc3\xa4renkopfes (Detail of a Bear's Head) [p. 56]" +p301355 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301356 +sa(dp301357 +g291130 +S'graphite on paper' +p301358 +sg291132 +S'unknown date\n' +p301359 +sg291134 +S'Paar durch ein Fenster gesehen (Distrought Couple Seen through a Window) [p. 57]' +p301360 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301361 +sa(dp301362 +g291130 +S'graphite on paper' +p301363 +sg291132 +S'unknown date\n' +p301364 +sg291134 +S'Frau unter Wasser (Woman Submerged) [p. 58]' +p301365 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301366 +sa(dp301367 +g291130 +S'purple colored pencil on paper' +p301368 +sg291132 +S'unknown date\n' +p301369 +sg291134 +S'Boote mit Menschen (Boats and Figures) [p. 59]' +p301370 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301371 +sa(dp301372 +g291130 +S'graphite on paper' +p301373 +sg291132 +S'unknown date\n' +p301374 +sg291134 +S'Drei Figuren (Three Figures) [p. 60]' +p301375 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301376 +sa(dp301377 +g291130 +S'graphite on paper' +p301378 +sg291132 +S'unknown date\n' +p301379 +sg291134 +S'Figur aus einer T\xc3\xbcr tretend (Figure Stepping through a Door) [p. 23]' +p301380 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301381 +sa(dp301382 +g291130 +S'graphite on paper' +p301383 +sg291132 +S'unknown date\n' +p301384 +sg291134 +S'Kopf mit Hut, Gesicht verworfen (Head with a Hat) [p. 64]' +p301385 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301386 +sa(dp301387 +g291130 +S'graphite on paper' +p301388 +sg291132 +S'unknown date\n' +p301389 +sg291134 +S'Gestalt mit erhobenem Glas (Figure with Raised Glass) [p. 65]' +p301390 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301391 +sa(dp301392 +g291130 +S'graphite on paper' +p301393 +sg291132 +S'unknown date\n' +p301394 +sg291134 +S'Zwei Frauen mit H\xc3\xbcten (Two Women with Hats) [p. 67]' +p301395 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301396 +sa(dp301397 +g291130 +S'graphite on paper' +p301398 +sg291132 +S'unknown date\n' +p301399 +sg291134 +S'M\xc3\xa4nnliche Bildnisstudie (Male Portrait Study) [p. 69]' +p301400 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301401 +sa(dp301402 +g291130 +S'graphite on paper' +p301403 +sg291132 +S'unknown date\n' +p301404 +sg291134 +S'verworfenes weibliches Gesicht (Discarded Female Face) [p. 80]' +p301405 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301406 +sa(dp301407 +g291130 +S'graphite on paper' +p301408 +sg291132 +S'unknown date\n' +p301409 +sg291134 +S"Frauenkopf mit Hut (Woman's Head with a Hat) [p. 82]" +p301410 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301411 +sa(dp301412 +g291130 +S'graphite on paper' +p301413 +sg291132 +S'unknown date\n' +p301414 +sg291134 +S'weibliche Bildnisstudie mit Hut (Woman in a Hat) [p. 84]' +p301415 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301416 +sa(dp301417 +g291130 +S'graphite on paper' +p301418 +sg291132 +S'unknown date\n' +p301419 +sg291134 +S'weibliche Bildhnisstudie, frontal (Portrait of a Woman) [p. 86]' +p301420 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301421 +sa(dp301422 +g291130 +S'graphite on paper' +p301423 +sg291132 +S'unknown date\n' +p301424 +sg291134 +S"weibliches Profil, Gesicht verworfen (Woman's Profile) [p. 87]" +p301425 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301426 +sa(dp301427 +g291130 +S'sketchbook with 13 sketches in graphite, 2 pages of artist notations in pen and brown ink, and 65 blank pages.' +p301428 +sg291132 +S'probably c. 1937' +p301429 +sg291134 +S'Beckmann Sketchbook' +p301430 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301431 +sa(dp301432 +g291130 +S'graphite on paper' +p301433 +sg291132 +S'unknown date\n' +p301434 +sg291134 +S'Seilt\xc3\xa4nzer (Tightrope Walker) [p. 2]' +p301435 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301436 +sa(dp301437 +g291130 +S'graphite on paper' +p301438 +sg291132 +S'unknown date\n' +p301439 +sg291134 +S'Kamel (Camel) [p. 3]' +p301440 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301441 +sa(dp301442 +g291130 +S'graphite on paper' +p301443 +sg291132 +S'unknown date\n' +p301444 +sg291134 +S'Zirkusnummer mit Seehunden (Seal Trainer) [p. 5]' +p301445 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301446 +sa(dp301447 +g291130 +S'graphite on paper' +p301448 +sg291132 +S'unknown date\n' +p301449 +sg291134 +S'Drei Figuren (Three Figures) [p. 7]' +p301450 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301451 +sa(dp301452 +g291130 +S'graphite on paper' +p301453 +sg291132 +S'unknown date\n' +p301454 +sg291134 +S'Vier Figuren (Four Figures) [p. 8]' +p301455 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301456 +sa(dp301457 +g291130 +S'graphite on paper' +p301458 +sg291132 +S'unknown date\n' +p301459 +sg291134 +S'Begonnenes Skizze (Sketch of Face) [p. 9]' +p301460 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301461 +sa(dp301462 +g291130 +S'graphite on paper' +p301463 +sg291132 +S'unknown date\n' +p301464 +sg291134 +S'Zirkusnummer mit Schlange (Animal Trainer) [p. 10]' +p301465 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301466 +sa(dp301467 +g291130 +S'graphite on paper' +p301468 +sg291132 +S'unknown date\n' +p301469 +sg291134 +S'Zirkusnummer mit Schlange (Animal Trainer) [p. 11]' +p301470 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301471 +sa(dp301472 +g291130 +S'graphite on paper' +p301473 +sg291132 +S'unknown date\n' +p301474 +sg291134 +S'Drei Figuren (Three Figures) [p. 12]' +p301475 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301476 +sa(dp301477 +g291130 +S'graphite on paper' +p301478 +sg291132 +S'unknown date\n' +p301479 +sg291134 +S'Benonnenes Gesicht (Sketch of Face) [p. 13]' +p301480 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301481 +sa(dp301482 +g291130 +S'graphite on paper' +p301483 +sg291132 +S'unknown date\n' +p301484 +sg291134 +S'Begonnene Figurenskizze (Figural Sketch) [p. 14]' +p301485 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301486 +sa(dp301487 +g291130 +S'graphite on paper' +p301488 +sg291132 +S'unknown date\n' +p301489 +sg291134 +S'Lesender Mann im Caf\xc3\xa9 (Reading Man in a Caf\xc3\xa9) [p. 22]' +p301490 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301491 +sa(dp301492 +g291130 +S'graphite on paper' +p301493 +sg291132 +S'unknown date\n' +p301494 +sg291134 +S'Barinterieur (Inside a Bar) [p. 23]' +p301495 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301496 +sa(dp301497 +g291130 +S'sketchbook with 28 sketches in graphite, pen and black ink, and blue ball-point pen; 21 blank pages including a half sheet, and at least 1.5 missing sheets.' +p301498 +sg291132 +S'1944-1949' +p301499 +sg291134 +S'Beckmann Sketchbook' +p301500 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301501 +sa(dp301502 +g291130 +S'graphite on paper' +p301503 +sg291132 +S'1944-1949' +p301504 +sg291134 +S'Interieur mit zwei Figuren (Interior with Two Figures) [p. 11]' +p301505 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301506 +sa(dp301507 +g291130 +S'graphite on paper' +p301508 +sg291132 +S'1944-1949' +p301509 +sg291134 +S'm\xc3\xa4nnliche Bildnisstudie (Male Profile) [p. 12]' +p301510 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301511 +sa(dp301512 +g291130 +S'graphite on paper' +p301513 +sg291132 +S'1944-1949' +p301514 +sg291134 +S'm\xc3\xa4nnliche Bildnisstudie (Male Portrait) [p. 13]' +p301515 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301516 +sa(dp301517 +g291130 +S'graphite on paper' +p301518 +sg291132 +S'1944-1949' +p301519 +sg291134 +S'zwei Figuren (Two Figures) [p. 15]' +p301520 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301521 +sa(dp301522 +g291130 +S'graphite on paper' +p301523 +sg291132 +S'1944-1949' +p301524 +sg291134 +S'm\xc3\xa4nnliches Profil (Profile) [p. 16]' +p301525 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301526 +sa(dp301527 +g291130 +S'graphite on paper' +p301528 +sg291132 +S'1944-1949' +p301529 +sg291134 +S'Portrait of Wolfgang Frommel [p. 17]' +p301530 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301531 +sa(dp301532 +g291130 +S'graphite on paper' +p301533 +sg291132 +S'1944-1949' +p301534 +sg291134 +S'drei Figurenstudien (Portrait Studies) [p. 18]' +p301535 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301536 +sa(dp301537 +g291130 +S'graphite on paper' +p301538 +sg291132 +S'1944-1949' +p301539 +sg291134 +S'drei Studienk\xc3\xb6pfe (Three Heads) [p. 19]' +p301540 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301541 +sa(dp301542 +g291130 +S'graphite on paper' +p301543 +sg291132 +S'1944-1949' +p301544 +sg291134 +S'weibliche Bildnisstudie (Woman) [p. 23]' +p301545 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301546 +sa(dp301547 +g291130 +S'graphite on paper' +p301548 +sg291132 +S'1944-1949' +p301549 +sg291134 +S'Portrait of Wolfgang Frommel [p. 25]' +p301550 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301551 +sa(dp301552 +g291130 +S'pen and blue ink with graphite on paper' +p301553 +sg291132 +S'1944-1949' +p301554 +sg291134 +S'Frau auf einer Leiter (Woman on a Ladder) [p. 27]' +p301555 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301556 +sa(dp301557 +g291130 +S'pen and blue ink on paper' +p301558 +sg291132 +S'1944-1949' +p301559 +sg291134 +S'Sitzende Frau im Umhang (Seated Figure with a Cape) [p. 29]' +p301560 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301561 +sa(dp301562 +g291130 +S'pen and blue ink on paper' +p301563 +sg291132 +S'1944-1949' +p301564 +sg291134 +S'Entwurf zu "Vogelspiel" (Sketch for "Birdplay") [p. 31]' +p301565 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301566 +sa(dp301567 +g291130 +S'pen with brown ink on paper' +p301568 +sg291132 +S'1944-1949' +p301569 +sg291134 +S'Paar (Couple) [p. 32]' +p301570 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301571 +sa(dp301572 +g291130 +S'pen with brown ink on paper' +p301573 +sg291132 +S'1944-1949' +p301574 +sg291134 +S'Paar Helene und Simon (Helene and Simon) [p. 33]' +p301575 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301576 +sa(dp301577 +g291130 +S'pen with brown ink on paper' +p301578 +sg291132 +S'1944-1949' +p301579 +sg291134 +S'Frau mit Hand vor dem Gesicht (Woman Covering her Face) [p. 34]' +p301580 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301581 +sa(dp301582 +g291130 +S'brown chalk with traces of black paint on paper' +p301583 +sg291132 +S'1944-1949' +p301584 +sg291134 +S'mehrfigurige Skizze (Group) [p. 35]' +p301585 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301586 +sa(dp301587 +g291130 +S'pen with brown and black ink on paper' +p301588 +sg291132 +S'1944-1949' +p301589 +sg291134 +S'Drei Frauen (Three Women) [p. 37]' +p301590 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301591 +sa(dp301592 +g291130 +S'pen and blue ink on paper' +p301593 +sg291132 +S'1944-1949' +p301594 +sg291134 +S'Katzenfrau und Mischwesen (Cat Woman) [p. 39]' +p301595 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301596 +sa(dp301597 +g291130 +S'graphite on paper' +p301598 +sg291132 +S'1944-1949' +p301599 +sg291134 +S'm\xc3\xa4nnliche Bildnisstudie (Male Profile) [p. 40]' +p301600 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301601 +sa(dp301602 +g291130 +S'pen and blue ink with notation in brown ink' +p301603 +sg291132 +S'1944-1949' +p301604 +sg291134 +S'Aktstudien - Athleten (Studies of Athletes) [p. 41]' +p301605 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301606 +sa(dp301607 +g291130 +S'graphite on paper' +p301608 +sg291132 +S'1944-1949' +p301609 +sg291134 +S'Skizze - Gesicht (Sketch of a Face) [p. 42]' +p301610 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301611 +sa(dp301612 +g291130 +S'pen with black and brown ink on paper' +p301613 +sg291132 +S'1944-1949' +p301614 +sg291134 +S'Selbstbildnis unter Wasser (Self-Portrait under Water) [p. 43]' +p301615 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301616 +sa(dp301617 +g291130 +S'pen with black ink' +p301618 +sg291132 +S'1944-1949' +p301619 +sg291134 +S'Mann unter Wasser und Stilleben mit Kerzen (Man under Water and Still life with Candles) [p. 45]' +p301620 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301621 +sa(dp301622 +g291130 +S'pen with diluted blue ink on paper' +p301623 +sg291132 +S'1944-1949' +p301624 +sg291134 +S'Zwei Skizzen unter Wasser (Two Under Water Sketch) [p. 47]' +p301625 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301626 +sa(dp301627 +g291130 +S'pen with black ink' +p301628 +sg291132 +S'1944-1949' +p301629 +sg291134 +S'Familienszene (Family Scene) [p. 49]' +p301630 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301631 +sa(dp301632 +g291130 +S'graphite on paper' +p301633 +sg291132 +S'1944-1949' +p301634 +sg291134 +S'Entwurf zu "Abst\xc3\xbcrzender" (Sketch for "Falling Man") [p. 50]' +p301635 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301636 +sa(dp301637 +g291130 +S'pen with black and brown ink with graphite and traces of red and blue paint' +p301638 +sg291132 +S'1944-1949' +p301639 +sg291134 +S'Entwurf zu "Abst\xc3\xbcrzender" (Sketch for "Falling Man") [p. 51]' +p301640 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301641 +sa(dp301642 +g291130 +S'sketchbook with 14 sketches in graphite, 38 blank pages and 88 pages of notation' +p301643 +sg291132 +S'unknown date\n' +p301644 +sg291134 +S'Beckmann Sketchbook' +p301645 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301646 +sa(dp301647 +g291130 +S'graphite on paper' +p301648 +sg291132 +S'unknown date\n' +p301649 +sg291134 +S'Interieurszene mit Hund (Domestic Scene with Dog) [p. 1]' +p301650 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301651 +sa(dp301652 +g291130 +S'graphite on paper' +p301653 +sg291132 +S'unknown date\n' +p301654 +sg291134 +S'Mann mit Pfeife (Man with a Pipe) [p. 3]' +p301655 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301656 +sa(dp301657 +g291130 +S'graphite on paper' +p301658 +sg291132 +S'unknown date\n' +p301659 +sg291134 +S'Junge mit Kappe (Boy with a Hat) [p. 5]' +p301660 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301661 +sa(dp301662 +g291130 +S'graphite on paper' +p301663 +sg291132 +S'unknown date\n' +p301664 +sg291134 +S'fl\xc3\xbcchtige Halbfigur mit Kopftuch (Woman with a Headscarf) [p. 7]' +p301665 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301666 +sa(dp301667 +g291130 +S'graphite on paper' +p301668 +sg291132 +S'unknown date\n' +p301669 +sg291134 +S'weibliche Figur mit Kopftuch und Profil im Hintergrund (Forlorn Figure with Headscarf and Profile) [p. 9]' +p301670 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301671 +sa(dp301672 +g291130 +S'graphite on paper' +p301673 +sg291132 +S'unknown date\n' +p301674 +sg291134 +S'\xc3\xa4ltere Frau (Elderly Woman) [p. 11]' +p301675 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301676 +sa(dp301677 +g291130 +S'graphite on paper' +p301678 +sg291132 +S'unknown date\n' +p301679 +sg291134 +S'junges M\xc3\xa4dchen und \xc3\xa4lterer Mann mit Petroleumlampe (Young Girl and Elderly Man with Lamp) [p. 13]' +p301680 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301681 +sa(dp301682 +g291130 +S'graphite on paper' +p301683 +sg291132 +S'unknown date\n' +p301684 +sg291134 +S'junger Mann mit Hund (Younger Man with Dog) [p. 15]' +p301685 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301686 +sa(dp301687 +g291130 +S'graphite on paper' +p301688 +sg291132 +S'unknown date\n' +p301689 +sg291134 +S'\xc3\xa4lterer Mann mit Schnurrbart (Elderly Man with Moustache) [p. 17]' +p301690 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301691 +sa(dp301692 +g291130 +S'graphite on paper' +p301693 +sg291132 +S'unknown date\n' +p301694 +sg291134 +S'zwei Frauen (Two Women) [p. 19]' +p301695 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301696 +sa(dp301697 +g291130 +S'graphite on paper' +p301698 +sg291132 +S'unknown date\n' +p301699 +sg291134 +S'Frau mit Kopftuch in T\xc3\xbcr\xc3\xb6ffnung (Woman with Headscarf in a Door) [p. 21]' +p301700 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301701 +sa(dp301702 +g291130 +S'graphite on paper' +p301703 +sg291132 +S'unknown date\n' +p301704 +sg291134 +S'junger Mann (Young Man) [p. 23]' +p301705 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301706 +sa(dp301707 +g291130 +S'graphite on paper' +p301708 +sg291132 +S'unknown date\n' +p301709 +sg291134 +S'Figur mit Hut (Figure with Hat) [p. 25]' +p301710 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301711 +sa(dp301712 +g291130 +S'graphite on paper' +p301713 +sg291132 +S'unknown date\n' +p301714 +sg291134 +S'Orchester (Orchestra) [p. 61]' +p301715 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301716 +sa(dp301717 +g291130 +S'graphite on paper' +p301718 +sg291132 +S'unknown date\n' +p301719 +sg291134 +S'in der Ecke: Teil der Orchesterskizze (Corner of sketch: Orchestra) [p. 62]' +p301720 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301721 +sa(dp301722 +g291130 +S'sketchbook with 16 sketches in graphite on cream perforated paper' +p301723 +sg291132 +S'1924' +p301724 +sg291134 +S'Beckmann Sketchbook' +p301725 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301726 +sa(dp301727 +g291130 +S'graphite on perforated cream paper' +p301728 +sg291132 +S'unknown date\n' +p301729 +sg291134 +S'Parklandschaft am Ufer mit Booten (Riverboat Dock in a Park) [p. 1]' +p301730 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301731 +sa(dp301732 +g291130 +S'graphite on perforated cream paper' +p301733 +sg291132 +S'unknown date\n' +p301734 +sg291134 +S'Liegende Frau mit Hut (Elegant Lady in a Hat) [p. 3]' +p301735 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301736 +sa(dp301737 +g291130 +S'graphite on perforated cream paper' +p301738 +sg291132 +S'unknown date\n' +p301739 +sg291134 +S'Zuschauer (At a Show) [p. 5]' +p301740 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301741 +sa(dp301742 +g291130 +S'graphite on perforated cream paper' +p301743 +sg291132 +S'unknown date\n' +p301744 +sg291134 +S'fl\xc3\xbcchtige Skizze zweier Tanzender (Two Dancers) [p. 9]' +p301745 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301746 +sa(dp301747 +g291130 +S'graphite on perforated cream paper' +p301748 +sg291132 +S'unknown date\n' +p301749 +sg291134 +S'fl\xc3\xbcchtige Skizze dreier Tanzender (Three Dancers) [p. 11]' +p301750 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301751 +sa(dp301752 +g291130 +S'graphite on perforated cream paper' +p301753 +sg291132 +S'unknown date\n' +p301754 +sg291134 +S'Tanzende Figur (Dancing Figure) [p. 13]' +p301755 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301756 +sa(dp301757 +g291130 +S'graphite on perforated cream paper' +p301758 +sg291132 +S'unknown date\n' +p301759 +sg291134 +S'Kircheninterieur (Church Interior) [p. 15]' +p301760 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301761 +sa(dp301762 +g291130 +S'graphite on perforated cream paper' +p301763 +sg291132 +S'unknown date\n' +p301764 +sg291134 +S'begonnene Skizze der Stadtansicht -010 (started sketch of Cityscape -010) [p. 17]' +p301765 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301766 +sa(dp301767 +g291130 +S'graphite on perforated cream paper' +p301768 +sg291132 +S'unknown date\n' +p301769 +sg291134 +S'Stadtansicht (Cityscape) [p. 19]' +p301770 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301771 +sa(dp301772 +g291130 +S'graphite on perforated cream paper' +p301773 +sg291132 +S'unknown date\n' +p301774 +sg291134 +S'Nase (Nose) [p. 23]' +p301775 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301776 +sa(dp301777 +g291130 +S'graphite on perforated cream paper' +p301778 +sg291132 +S'unknown date\n' +p301779 +sg291134 +S'Nase (Nose) [p. 25]' +p301780 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301781 +sa(dp301782 +g291130 +S'graphite on perforated cream paper' +p301783 +sg291132 +S'unknown date\n' +p301784 +sg291134 +S'weibliche Bildnisstudie im Profil (Woman in Profile) [p. 27]' +p301785 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301786 +sa(dp301787 +g291130 +S'graphite on perforated cream paper' +p301788 +sg291132 +S'unknown date\n' +p301789 +sg291134 +S'Skizze von Tanzenden (Sketch of Two Dancers) [p. 65]' +p301790 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301791 +sa(dp301792 +g291130 +S'graphite on perforated cream paper' +p301793 +sg291132 +S'unknown date\n' +p301794 +sg291134 +S'Skizze von Tanzenden (Sketch of Two Dancers) [p. 67]' +p301795 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301796 +sa(dp301797 +g291130 +S'graphite on perforated cream paper' +p301798 +sg291132 +S'unknown date\n' +p301799 +sg291134 +S'Drei Figuren, wohl T\xc3\xa4nzer (Three Figures) [p. 69]' +p301800 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301801 +sa(dp301802 +g291130 +S'graphite on perforated cream paper' +p301803 +sg291132 +S'unknown date\n' +p301804 +sg291134 +S'Drei Figuren, wohl T\xc3\xa4nzer (Three Figures) [p. 71]' +p301805 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301806 +sa(dp301807 +g291130 +S"sketchbook with 29 sketches in graphite, 1 in blue ball-point pen, 1 in both, 74 blank pages, and 4 pages of artist's notations." +p301808 +sg291132 +S'probably 1927' +p301809 +sg291134 +S'Beckmann Sketchbook' +p301810 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301811 +sa(dp301812 +g291130 +S'graphite on paper' +p301813 +sg291132 +S'1927' +p301814 +sg291134 +S'T\xc3\xa4nzer (Dancer) [p. 3]' +p301815 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301816 +sa(dp301817 +g291130 +S'graphite on paper' +p301818 +sg291132 +S'1927' +p301819 +sg291134 +S'Zwei Frauen (Two Women) [p. 5]' +p301820 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301821 +sa(dp301822 +g291130 +S'graphite on paper' +p301823 +sg291132 +S'1927' +p301824 +sg291134 +S'S\xc3\xa4ngerin vor Fl\xc3\xbcgel (Woman at Piano, Singing) [p. 15]' +p301825 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301826 +sa(dp301827 +g291130 +S'graphite on paper' +p301828 +sg291132 +S'1927' +p301829 +sg291134 +S'Zwei T\xc3\xa4nzer in Kost\xc3\xbcmen (Two Dancers in Costume) [p. 17]' +p301830 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301831 +sa(dp301832 +g291130 +S'graphite on paper' +p301833 +sg291132 +S'1927' +p301834 +sg291134 +S'weibliches Profilbildnis (Female Profile) [p. 19]' +p301835 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301836 +sa(dp301837 +g291130 +S'graphite on paper' +p301838 +sg291132 +S'1927' +p301839 +sg291134 +S'Line (Single Line) [p. 21]' +p301840 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301841 +sa(dp301842 +g291130 +S'graphite on paper' +p301843 +sg291132 +S'1927' +p301844 +sg291134 +S'Mann mit Kappe in zwei Ansichten (Two Views of a Man with a Cap) [p. 25]' +p301845 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301846 +sa(dp301847 +g291130 +S'graphite on paper' +p301848 +sg291132 +S'1927' +p301849 +sg291134 +S'derselbe Mann wie auf S. 25 (Man with a Cap ) [p. 27]' +p301850 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301851 +sa(dp301852 +g291130 +S'graphite on paper' +p301853 +sg291132 +S'1927' +p301854 +sg291134 +S'm\xc3\xa4nnliche Bildnisstudie (Male Portrait Study) [p. 31]' +p301855 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301856 +sa(dp301857 +g291130 +S'graphite on paper' +p301858 +sg291132 +S'1927' +p301859 +sg291134 +S'liegende Frau mit verborgenem Gesicht (Woman Laying Face Down) [p. 35]' +p301860 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301861 +sa(dp301862 +g291130 +S'graphite with blue ball-point pen' +p301863 +sg291132 +S'1927' +p301864 +sg291134 +S'liegende Frau mit verborgenem Gesicht (Woman Laying Face Down) [p. 37]' +p301865 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301866 +sa(dp301867 +g291130 +S'graphite on paper' +p301868 +sg291132 +S'1927' +p301869 +sg291134 +S'liegende Frau mit in Str\xc3\xbcmpfen (Woman in Stockings) [p. 39]' +p301870 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301871 +sa(dp301872 +g291130 +S'graphite on paper' +p301873 +sg291132 +S'1927' +p301874 +sg291134 +S'zwei M\xc3\xa4nner und eine Frau an der Bar (Three for Drinks) [p. 42]' +p301875 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301876 +sa(dp301877 +g291130 +S'graphite on paper' +p301878 +sg291132 +S'1927' +p301879 +sg291134 +S'drei zu Tisch sitzende Frauen (Three at a Table) [p. 45]' +p301880 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301881 +sa(dp301882 +g291130 +S'graphite on paper' +p301883 +sg291132 +S'1927' +p301884 +sg291134 +S'Tanzendes Paar (Couple) [p. 47]' +p301885 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301886 +sa(dp301887 +g291130 +S'graphite on paper' +p301888 +sg291132 +S'1927' +p301889 +sg291134 +S'Zwei M\xc3\xa4nner (Two Men) [p. 50]' +p301890 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301891 +sa(dp301892 +g291130 +S'graphite on paper' +p301893 +sg291132 +S'1927' +p301894 +sg291134 +S'sich k\xc3\xa4mmende Frau in W\xc3\xa4sche (Woman in a Corset Combing Her Hair) [p. 55]' +p301895 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301896 +sa(dp301897 +g291130 +S'graphite on paper' +p301898 +sg291132 +S'1927' +p301899 +sg291134 +S'Tanzendes Paar (Dancing Couple) [p. 62]' +p301900 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301901 +sa(dp301902 +g291130 +S'graphite on paper' +p301903 +sg291132 +S'1927' +p301904 +sg291134 +S'Stehende Frau in R\xc3\xbcckenansicht (Standing Woman Seen from Behind) [p. 67]' +p301905 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301906 +sa(dp301907 +g291130 +S'graphite on paper' +p301908 +sg291132 +S'1927' +p301909 +sg291134 +S'Liegende Frau in W\xc3\xa4sche (Woman in Corset Reclining ) [p. 70]' +p301910 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301911 +sa(dp301912 +g291130 +S'graphite on paper' +p301913 +sg291132 +S'1929' +p301914 +sg291134 +S'Frau mit aufgest\xc3\xbctztem Kopf (Woman with Head Rested on Hand) [p. 73]' +p301915 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301916 +sa(dp301917 +g291130 +S'graphite on paper' +p301918 +sg291132 +S'1927' +p301919 +sg291134 +S'Haare der Frau auf S. 77 (Hair Bun of Figure in p. 77) [p. 76]' +p301920 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301921 +sa(dp301922 +g291130 +S'graphite on paper' +p301923 +sg291132 +S'1927' +p301924 +sg291134 +S'Drei zu Tisch sitzende Figuren (Three Figures at a Table) [p. 77]' +p301925 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301926 +sa(dp301927 +g291130 +S'graphite on paper' +p301928 +sg291132 +S'1927' +p301929 +sg291134 +S'Drei Figuren (Three Figures) [p. 82]' +p301930 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301931 +sa(dp301932 +g291130 +S'graphite on paper' +p301933 +sg291132 +S'1927' +p301934 +sg291134 +S'Gesicht (Face) [p. 86]' +p301935 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301936 +sa(dp301937 +g291130 +S'graphite on paper' +p301938 +sg291132 +S'1927' +p301939 +sg291134 +S'\xc3\xa4lterer Mann (Elderly Face) [p. 91]' +p301940 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301941 +sa(dp301942 +g291130 +S'graphite on paper' +p301943 +sg291132 +S'1927' +p301944 +sg291134 +S'Tanzendes Paar und Zuschauer (Couple Dancing with Onlooker) [p. 94]' +p301945 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301946 +sa(dp301947 +g291130 +S'graphite on paper' +p301948 +sg291132 +S'1927' +p301949 +sg291134 +S'Frau mit Champagnerglas (Woman with a Glass of Champagne) [p. 96]' +p301950 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301951 +sa(dp301952 +g291130 +S'graphite on paper' +p301953 +sg291132 +S'1927' +p301954 +sg291134 +S'Tanzende Paare (A Dance) [p. 98]' +p301955 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301956 +sa(dp301957 +g291130 +S'graphite on paper' +p301958 +sg291132 +S'1927' +p301959 +sg291134 +S'Zuschauer (Spectators) [p. 100]' +p301960 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301961 +sa(dp301962 +g291130 +S'graphite on paper' +p301963 +sg291132 +S'1927' +p301964 +sg291134 +S'Tanzendes Paar (Dancing) [p. 102]' +p301965 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301966 +sa(dp301967 +g291130 +S'sketchbook with 17 sketches in graphite on perforated paper' +p301968 +sg291132 +S'probably 1927' +p301969 +sg291134 +S'Beckmann Sketchbook' +p301970 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301971 +sa(dp301972 +g291130 +S'graphite on perforated, cream paper' +p301973 +sg291132 +S'unknown date\n' +p301974 +sg291134 +S'D\xc3\xbcnenlandschaft, Farbangaben (Sketch with Notations) [p. 7]' +p301975 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301976 +sa(dp301977 +g291130 +S'graphite on perforated, cream paper' +p301978 +sg291132 +S'unknown date\n' +p301979 +sg291134 +S'Mann mit Brille (Man Wearing Spectacles) [p. 33]' +p301980 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301981 +sa(dp301982 +g291130 +S'graphite on perforated, cream paper' +p301983 +sg291132 +S'unknown date\n' +p301984 +sg291134 +S'Drei Studienk\xc3\xb6pfe (Study of Three Heads) p. 35]' +p301985 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301986 +sa(dp301987 +g291130 +S'graphite on perforated, cream paper' +p301988 +sg291132 +S'unknown date\n' +p301989 +sg291134 +S'Begonnenes Gesicht (Initial Sketch of a Face) [p. 37]' +p301990 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301991 +sa(dp301992 +g291130 +S'graphite on perforated, cream paper' +p301993 +sg291132 +S'unknown date\n' +p301994 +sg291134 +S'Zuschauer (Male Spectators) [p. 51]' +p301995 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p301996 +sa(dp301997 +g291130 +S'graphite on perforated, cream paper' +p301998 +sg291132 +S'unknown date\n' +p301999 +sg291134 +S'M\xc3\xa4nnliche Bildnisstudie im Profil (Man in Profile) [p. 56]' +p302000 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302001 +sa(dp302002 +g291130 +S'graphite on perforated, cream paper' +p302003 +sg291132 +S'unknown date\n' +p302004 +sg291134 +S'Zuschauer (Audience) [p. 58]' +p302005 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302006 +sa(dp302007 +g291130 +S'graphite on perforated, cream paper' +p302008 +sg291132 +S'unknown date\n' +p302009 +sg291134 +S'M\xc3\xa4nnliche Bildnisstudie (Male Portrait Study) [p. 60]' +p302010 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302011 +sa(dp302012 +g291130 +S'graphite on perforated, cream paper' +p302013 +sg291132 +S'unknown date\n' +p302014 +sg291134 +S'Mann im verlorenen Profil (Man Turned Away) [p. 62]' +p302015 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302016 +sa(dp302017 +g291130 +S'graphite on perforated, cream paper' +p302018 +sg291132 +S'unknown date\n' +p302019 +sg291134 +S'Profil eines Mannes mit Spitzbart (Portrait of a Man with a Pointed Beard) [p. 64]' +p302020 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302021 +sa(dp302022 +g291130 +S'graphite on perforated, cream paper' +p302023 +sg291132 +S'unknown date\n' +p302024 +sg291134 +S'Mann mit Spitzbart (Man with a Pointed Beard) [p. 66]' +p302025 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302026 +sa(dp302027 +g291130 +S'graphite on perforated, cream paper' +p302028 +sg291132 +S'unknown date\n' +p302029 +sg291134 +S'Mann mit erhobenem Arm (Man with a Raised Hand) [p. 68]' +p302030 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302031 +sa(dp302032 +g291130 +S'graphite on perforated, cream paper' +p302033 +sg291132 +S'unknown date\n' +p302034 +sg291134 +S'L\xc3\xa4chelnder Mann mit Spitzbart (Man with Pointed Beard, Smiling) [p. 70]' +p302035 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302036 +sa(dp302037 +g291130 +S'graphite on perforated, cream paper' +p302038 +sg291132 +S'unknown date\n' +p302039 +sg291134 +S'Meereslandschaft, Farbangaben (Seascape with Notations) [p. 100]' +p302040 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302041 +sa(dp302042 +g291130 +S'graphite on perforated, cream paper' +p302043 +sg291132 +S'unknown date\n' +p302044 +sg291134 +S'Meereslandschaft, Farbangaben (Seascape with Notations) [p. 108]' +p302045 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302046 +sa(dp302047 +g291130 +S'graphite on perforated, cream paper' +p302048 +sg291132 +S'unknown date\n' +p302049 +sg291134 +S'Blick aus dem Fenster, Notizen (View from a Window with Notations [p. 112]' +p302050 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302051 +sa(dp302052 +g291130 +S'graphite on perforated, cream paper' +p302053 +sg291132 +S'unknown date\n' +p302054 +sg291134 +S'Meereslandschaft, Farbangaben (Seascape with Notations) [p. 116]' +p302055 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302056 +sa(dp302057 +g291130 +S'perforated sketchbook with 7 sketches in graphite on wove paper' +p302058 +sg291132 +S'unknown date\n' +p302059 +sg291134 +S'Beckmann Sketchbook' +p302060 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302061 +sa(dp302062 +g291130 +S'graphite on perforated, wove paper' +p302063 +sg291132 +S'unknown date\n' +p302064 +sg291134 +S'zwei m\xc3\xa4nnliche Profile (Two Male Profiles) [p. 3]' +p302065 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302066 +sa(dp302067 +g291130 +S'graphite on perforated, wove paper' +p302068 +sg291132 +S'unknown date\n' +p302069 +sg291134 +S'Boxveranstaltung (Boxing Match) [p. 3]' +p302070 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302071 +sa(dp302072 +g291130 +S'graphite on perforated, wove paper' +p302073 +sg291132 +S'unknown date\n' +p302074 +sg291134 +S'Frau mit geschlossenen Augen (Woman with Eyes Closed) [p. 7]' +p302075 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302076 +sa(dp302077 +g291130 +S'graphite on perforated, wove paper' +p302078 +sg291132 +S'unknown date\n' +p302079 +sg291134 +S'Park [p. 8-9]' +p302080 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302081 +sa(dp302082 +g291130 +S'graphite on perforated, wove paper' +p302083 +sg291132 +S'unknown date\n' +p302084 +sg291134 +S'weibliche Bildnisstudie (Female Portrait) [p. 13]' +p302085 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302086 +sa(dp302087 +g291130 +S'graphite on perforated, wove paper' +p302088 +sg291132 +S'unknown date\n' +p302089 +sg291134 +S'weibliche Bildnisstudie (Female Portrait) [p. 15]' +p302090 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302091 +sa(dp302092 +g291130 +S'graphite on perforated, wove paper' +p302093 +sg291132 +S'unknown date\n' +p302094 +sg291134 +S'zwei m\xc3\xa4nnliche Profile (Two Male Profiles) [p. 1]' +p302095 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302096 +sa(dp302097 +g291130 +S"sketchbook with artist's notations and 1 sketch in graphite inserted on separate sheet" +p302098 +sg291132 +S'unknown date\n' +p302099 +sg291134 +S'Beckmann Sketchbook' +p302100 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302101 +sa(dp302102 +g291130 +S'sketchbook with 5 sketches in graphite on cream paper. Sketchbook contains multicolored paper as well.' +p302103 +sg291132 +S'unknown date\n' +p302104 +sg291134 +S'Beckmann Sketchbook' +p302105 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302106 +sa(dp302107 +g291130 +S'graphite on cream paper' +p302108 +sg291132 +S'unknown date\n' +p302109 +sg291134 +S'Zwei K\xc3\xb6pfe (Two Heads) [p. 13]' +p302110 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302111 +sa(dp302112 +g291130 +S'graphite on cream paper' +p302113 +sg291132 +S'unknown date\n' +p302114 +sg291134 +S'begonnene Skizze, wohl zweier K\xc3\xb6pfe (Initial Sketch) [p. 15]' +p302115 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302116 +sa(dp302117 +g291130 +S'graphite on cream paper' +p302118 +sg291132 +S'unknown date\n' +p302119 +sg291134 +S'mehrere Figuren (Group Composition) [p. 16]' +p302120 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302121 +sa(dp302122 +g291130 +S'graphite on cream paper' +p302123 +sg291132 +S'unknown date\n' +p302124 +sg291134 +S'Figur im weiten Mantel (Figure with Coat) [p. 18]' +p302125 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302126 +sa(dp302127 +g291130 +S'graphite on cream paper' +p302128 +sg291132 +S'unknown date\n' +p302129 +sg291134 +S'Notizen und Gesicht (Notation and Face) [p. 20]' +p302130 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302131 +sa(dp302132 +g291130 +S'sketchbook with 18 sketches in graphite on lined paper, and 14 blank pages.' +p302133 +sg291132 +S'unknown date\n' +p302134 +sg291134 +S'Beckmann Sketchbook' +p302135 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302136 +sa(dp302137 +g291130 +S'graphite on paper' +p302138 +sg291132 +S'unknown date\n' +p302139 +sg291134 +S'Zirkusartist im Kost\xc3\xbcm (Acrobat in Costume) [p. 1]' +p302140 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302141 +sa(dp302142 +g291130 +S'graphite on paper' +p302143 +sg291132 +S'unknown date\n' +p302144 +sg291134 +S'Weibliche Bildnistudie (Female Portrait) [p. 3]' +p302145 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302146 +sa(dp302147 +g291130 +S'graphite on paper' +p302148 +sg291132 +S'unknown date\n' +p302149 +sg291134 +S'Entwurf f\xc3\xbcr ein Triptychon (Sketch for a Tryptich) [p. 4]' +p302150 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302151 +sa(dp302152 +g291130 +S'graphite on paper' +p302153 +sg291132 +S'unknown date\n' +p302154 +sg291134 +S'Kleiner Mann mit Kappe (Small Man with a Hat) [p. 5]' +p302155 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302156 +sa(dp302157 +g291130 +S'graphite on paper' +p302158 +sg291132 +S'unknown date\n' +p302159 +sg291134 +S'Kamel, Nilpferd, Zebra (Camel, Hippo, Zebra) [p. 7]' +p302160 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302161 +sa(dp302162 +g291130 +S'graphite on paper' +p302163 +sg291132 +S'unknown date\n' +p302164 +sg291134 +S'Zwei Clowns mit H\xc3\xbcten (Two Clowns with Hats) [p. 9]' +p302165 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302166 +sa(dp302167 +g291130 +S'graphite on paper' +p302168 +sg291132 +S'unknown date\n' +p302169 +sg291134 +S'Linker Fl\xc3\xbcgel von Dream of Monte Carlo (Left leaf of Dream of Monte Carlo) [p. 10]' +p302170 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302171 +sa(dp302172 +g291130 +S'graphite on paper' +p302173 +sg291132 +S'unknown date\n' +p302174 +sg291134 +S'Stehender Clown (Standing Clown) [p. 11]' +p302175 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302176 +sa(dp302177 +g291130 +S'graphite on paper' +p302178 +sg291132 +S'unknown date\n' +p302179 +sg291134 +S'Artisten am Trapez (Balancing Act on Trapeze) [p. 12]' +p302180 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302181 +sa(dp302182 +g291130 +S'graphite on paper' +p302183 +sg291132 +S'unknown date\n' +p302184 +sg291134 +S'Artisten am Trapez (Balancing Act on Trapeze) [p. 13]' +p302185 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302186 +sa(dp302187 +g291130 +S'graphite on paper' +p302188 +sg291132 +S'unknown date\n' +p302189 +sg291134 +S'Clown [p. 15]' +p302190 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302191 +sa(dp302192 +g291130 +S'graphite on paper' +p302193 +sg291132 +S'unknown date\n' +p302194 +sg291134 +S'Paar (Couple) [p. 17]' +p302195 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302196 +sa(dp302197 +g291130 +S'graphite on paper' +p302198 +sg291132 +S'unknown date\n' +p302199 +sg291134 +S'Akrobat auf Schaukel (Acrobat in a Swing) [p. 19]' +p302200 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302201 +sa(dp302202 +g291130 +S'graphite on paper' +p302203 +sg291132 +S'unknown date\n' +p302204 +sg291134 +S'Zwei Akrobaten (Two Acrobats) [p. 21]' +p302205 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302206 +sa(dp302207 +g291130 +S'graphite on paper' +p302208 +sg291132 +S'unknown date\n' +p302209 +sg291134 +S'Zwei Akrobaten (Two Acrobats) [p. 23]' +p302210 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302211 +sa(dp302212 +g291130 +S'graphite on paper' +p302213 +sg291132 +S'unknown date\n' +p302214 +sg291134 +S'Zwei Akrobaten (Two Acrobats) [p. 24]' +p302215 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302216 +sa(dp302217 +g291130 +S'graphite on paper' +p302218 +sg291132 +S'unknown date\n' +p302219 +sg291134 +S'Zwei Akrobaten in der Schaukel (Two Acrobats in Swings) [p. 25]' +p302220 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302221 +sa(dp302222 +g291130 +S'graphite on paper' +p302223 +sg291132 +S'unknown date\n' +p302224 +sg291134 +S'Akrobat auf Schaukel (Acrobat on a Swing) [p. 27]' +p302225 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302226 +sa(dp302227 +g291130 +S'sketchbook with 27 sketches in graphite and charcoal on graph paper. Notations are in graphite, pen with blue or brown ink, and purple colored pencil.' +p302228 +sg291132 +S'1918/1919' +p302229 +sg291134 +S'Beckmann Sketchbook' +p302230 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302231 +sa(dp302232 +g291130 +S'graphite on graph paper' +p302233 +sg291132 +S'1918/1919' +p302234 +sg291134 +S'Mehrfigurige Kompositionsskizze (Figural Composition) [p. 9]' +p302235 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302236 +sa(dp302237 +g291130 +S'graphite on graph paper' +p302238 +sg291132 +S'1918/1919' +p302239 +sg291134 +S'Bezeichnete Skizze mit zwei sitzende Figuren (Two Seated Figures) [p. 10]' +p302240 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302241 +sa(dp302242 +g291130 +S'graphite on graph paper' +p302243 +sg291132 +S'1918/1919' +p302244 +sg291134 +S'Mehrfigurige Kompositionsskizze (Figural Composition) [p. 11]' +p302245 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302246 +sa(dp302247 +g291130 +S'graphite on graph paper' +p302248 +sg291132 +S'1918/1919' +p302249 +sg291134 +S'Skizze mit Bezeichnung (Sketch with Inscription) [p. 16]' +p302250 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302251 +sa(dp302252 +g291130 +S'graphite on graph paper' +p302253 +sg291132 +S'1918/1919' +p302254 +sg291134 +S'Tanzendes Paar, Notizen (Dancers, Notation) [p. 17]' +p302255 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302256 +sa(dp302257 +g291130 +S'graphite on graph paper' +p302258 +sg291132 +S'1918/1919' +p302259 +sg291134 +S'Architekturstudien (House Exterior Scene) [p. 19]' +p302260 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302261 +sa(dp302262 +g291130 +S'graphite on graph paper' +p302263 +sg291132 +S'1918/1919' +p302264 +sg291134 +S'M\xc3\xa4nnliche Bildnisstudie (Male Portrait) [p. 23]' +p302265 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302266 +sa(dp302267 +g291130 +S'charcoal on graph paper' +p302268 +sg291132 +S'1918/1919' +p302269 +sg291134 +S'Begonnene Studie, wohl Tanzende (Initial Sketch, Probably Dancers) [p. 25]' +p302270 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302271 +sa(dp302272 +g291130 +S'charcoal on graph paper' +p302273 +sg291132 +S'1918/1919' +p302274 +sg291134 +S'Figur mit H\xc3\xa4nden am Kopf (Figure with Hands at Head) [p. 26]' +p302275 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302276 +sa(dp302277 +g291130 +S'graphite on graph paper' +p302278 +sg291132 +S'1918/1919' +p302279 +sg291134 +S'Grundri\xc3\x9f (Floor Plan) [p. 29]' +p302280 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302281 +sa(dp302282 +g291130 +S'graphite on graph paper' +p302283 +sg291132 +S'1918/1919' +p302284 +sg291134 +S'Weibliche Bildnisstudie im Profil (Female Portrait Study, Profile) [p. 30]' +p302285 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302286 +sa(dp302287 +g291130 +S'graphite on graph paper' +p302288 +sg291132 +S'1918/1919' +p302289 +sg291134 +S'Weibliche Bildnisstudie im Profil (Female Portrait Study, Profile) [p. 31]' +p302290 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302291 +sa(dp302292 +g291130 +S'graphite on graph paper' +p302293 +sg291132 +S'1918/1919' +p302294 +sg291134 +S'Weibliche Bildnisstudie, Detail (Female Portrait Study, Detail) [p. 32]' +p302295 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302296 +sa(dp302297 +g291130 +S'graphite on graph paper' +p302298 +sg291132 +S'1918/1919' +p302299 +sg291134 +S'Weibliche Bildnisstudie im Profil (Female Portrait Study, Profile) [p. 33]' +p302300 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302301 +sa(dp302302 +g291130 +S'graphite on graph paper' +p302303 +sg291132 +S'1918/1919' +p302304 +sg291134 +S'Kirchturm (Steeple) [p. 35]' +p302305 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302306 +sa(dp302307 +g291130 +S'graphite on graph paper' +p302308 +sg291132 +S'1918/1919' +p302309 +sg291134 +S'Mehrfigurige Kompositionsskizze (Figural Composition) [p. 41]' +p302310 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302311 +sa(dp302312 +g291130 +S'graphite on graph paper' +p302313 +sg291132 +S'1918/1919' +p302314 +sg291134 +S'Tanzendes Paar (Dancing Couple) [p. 42]' +p302315 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302316 +sa(dp302317 +g291130 +S'charcoal on graph paper' +p302318 +sg291132 +S'1918/1919' +p302319 +sg291134 +S'Kompositionsskizze (Sketch) [p. 46]' +p302320 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302321 +sa(dp302322 +g291130 +S'graphite on graph paper' +p302323 +sg291132 +S'1918/1919' +p302324 +sg291134 +S'Zwei Figuren (Two Figures) [p. 50]' +p302325 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302326 +sa(dp302327 +g291130 +S'graphite on graph paper' +p302328 +sg291132 +S'1918/1919' +p302329 +sg291134 +S'Synagoge am B\xc3\xb6rneplatz (Synagogue at B\xc3\xb6rneplatz) [p. 52]' +p302330 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302331 +sa(dp302332 +g291130 +S'graphite on graph paper' +p302333 +sg291132 +S'1918/1919' +p302334 +sg291134 +S'M\xc3\xa4nnliche Bildnisstudie (Male Portrait Study) [p. 54]' +p302335 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302336 +sa(dp302337 +g291130 +S'graphite on graph paper' +p302338 +sg291132 +S'1918/1919' +p302339 +sg291134 +S'Mehrfigurige Kompositionsskizze (Figural Composition) [p. 60]' +p302340 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302341 +sa(dp302342 +g291130 +S'graphite on graph paper' +p302343 +sg291132 +S'1918/1919' +p302344 +sg291134 +S'Mehrfigurige Kompositionsskizze (Figural Composition) [p. 62]' +p302345 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302346 +sa(dp302347 +g291130 +S'graphite on graph paper' +p302348 +sg291132 +S'1918/1919' +p302349 +sg291134 +S'Ausschnitt aus einem Stadtplan (Detail of a Map) [p. 64]' +p302350 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302351 +sa(dp302352 +g291130 +S'graphite on graph paper' +p302353 +sg291132 +S'1918/1919' +p302354 +sg291134 +S'Mehrfigurige Kompositionsskizze (Figural Composition) [p. 68]' +p302355 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302356 +sa(dp302357 +g291130 +S'graphite on graph paper' +p302358 +sg291132 +S'1918/1919' +p302359 +sg291134 +S'Nicht identifizierte Skizze, Karussell? (Sketch of Merry-go-round, Perhaps) [p. 69]' +p302360 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302361 +sa(dp302362 +g291130 +S'graphite on graph paper' +p302363 +sg291132 +S'1918/1919' +p302364 +sg291134 +S'M\xc3\xa4nnliche Bildnisstudie im Profil (Male Portrait Study) [p. 70]' +p302365 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302366 +sa(dp302367 +g291130 +S'sketchbook with 12 sketches in graphite' +p302368 +sg291132 +S'unknown date\n' +p302369 +sg291134 +S'Beckmann Sketchbook' +p302370 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302371 +sa(dp302372 +g291130 +S'graphite on paper' +p302373 +sg291132 +S'unknown date\n' +p302374 +sg291134 +S'Zwei stehende Figuren (Two Standing Figures) [p. 7]' +p302375 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302376 +sa(dp302377 +g291130 +S'graphite on paper' +p302378 +sg291132 +S'unknown date\n' +p302379 +sg291134 +S'M\xc3\xa4nnliche Bildnisstudie (Male Portrait Study) [p. 19]' +p302380 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302381 +sa(dp302382 +g291130 +S'graphite on paper' +p302383 +sg291132 +S'unknown date\n' +p302384 +sg291134 +S'M\xc3\xa4nnliche Bildnisstudie (Male Portrait Study) [p. 20]' +p302385 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302386 +sa(dp302387 +g291130 +S'graphite on paper' +p302388 +sg291132 +S'unknown date\n' +p302389 +sg291134 +S'Frau im Profil (Woman in Profile) [p. 21]' +p302390 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302391 +sa(dp302392 +g291130 +S'graphite on paper' +p302393 +sg291132 +S'unknown date\n' +p302394 +sg291134 +S"weibliches Gesicht mit geschlossenen Augen (Woman's Face, Eyes Closed) [p. 23]" +p302395 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302396 +sa(dp302397 +g291130 +S'graphite on paper' +p302398 +sg291132 +S'unknown date\n' +p302399 +sg291134 +S"weibliches Gesicht (Woman's Face) [p. 25]" +p302400 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302401 +sa(dp302402 +g291130 +S'graphite on paper' +p302403 +sg291132 +S'unknown date\n' +p302404 +sg291134 +S'Zirkusartist im Kost\xc3\xbcm (Circus Performer in Costume) [?] [p. 29]' +p302405 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302406 +sa(dp302407 +g291130 +S'graphite on paper' +p302408 +sg291132 +S'unknown date\n' +p302409 +sg291134 +S'Pferde auf der Rennbahn (Horses on a Race Course) [p. 31]' +p302410 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302411 +sa(dp302412 +g291130 +S'graphite on paper' +p302413 +sg291132 +S'unknown date\n' +p302414 +sg291134 +S'Zuschauer (A Vista) [p. 33]' +p302415 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302416 +sa(dp302417 +g291130 +S'graphite on paper' +p302418 +sg291132 +S'unknown date\n' +p302419 +sg291134 +S'Pferd und Notizen (A Horse, Notations) [p. 35]' +p302420 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302421 +sa(dp302422 +g291130 +S'graphite on paper' +p302423 +sg291132 +S'unknown date\n' +p302424 +sg291134 +S'Zwei Figuren und ein Gesicht (Two Figures and a Face) [p. 47]' +p302425 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302426 +sa(dp302427 +g291130 +S'graphite on paper' +p302428 +sg291132 +S'unknown date\n' +p302429 +sg291134 +S'Initial Sketch [p. 49]' +p302430 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302431 +sa(dp302432 +g291130 +S'sketchbook with 39 sketches in graphite' +p302433 +sg291132 +S'c. 1914' +p302434 +sg291134 +S'Beckmann Sketchbook' +p302435 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302436 +sa(dp302437 +g291130 +S'graphite with pen and brown ink notations' +p302438 +sg291132 +S'unknown date\n' +p302439 +sg291134 +S'Begonnene Skizze, Notizen (Initial Sketch, Notation) [p. 1]' +p302440 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302441 +sa(dp302442 +g291130 +S'graphite on paper' +p302443 +sg291132 +S'unknown date\n' +p302444 +sg291134 +S'Zwei Passanten (Two Walking Figures) [p. 3]' +p302445 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302446 +sa(dp302447 +g291130 +S'graphite on paper' +p302448 +sg291132 +S'unknown date\n' +p302449 +sg291134 +S'Gehender Mann (Man Walking) [p. 5]' +p302450 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302451 +sa(dp302452 +g291130 +S'graphite on paper' +p302453 +sg291132 +S'unknown date\n' +p302454 +sg291134 +S'Stra\xc3\x9fenszene in der Gro\xc3\x9fstadt (Street Scene in Large City) [p. 7]' +p302455 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302456 +sa(dp302457 +g291130 +S'graphite on paper' +p302458 +sg291132 +S'unknown date\n' +p302459 +sg291134 +S'Interieur mit Liegendem (Interior with Reclining Figure) [p. 9]' +p302460 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302461 +sa(dp302462 +g291130 +S'graphite on paper' +p302463 +sg291132 +S'unknown date\n' +p302464 +sg291134 +S'Zelt(?)Architektur (Tent-like Architecture) [p. 10-11]' +p302465 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302466 +sa(dp302467 +g291130 +S'graphite on paper' +p302468 +sg291132 +S'unknown date\n' +p302469 +sg291134 +S'Architekturstudie (Architectural Study) [p. 12]' +p302470 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302471 +sa(dp302472 +g291130 +S'graphite on paper' +p302473 +sg291132 +S'unknown date\n' +p302474 +sg291134 +S'Drei balancierende Figuren (Three Figures Balancing) [p. 13]' +p302475 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302476 +sa(dp302477 +g291130 +S'graphite on paper' +p302478 +sg291132 +S'unknown date\n' +p302479 +sg291134 +S'Architekturstudie (City Blocks) [p. 14]' +p302480 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302481 +sa(dp302482 +g291130 +S'graphite on paper' +p302483 +sg291132 +S'unknown date\n' +p302484 +sg291134 +S'Zwei Figuren auf dem Trapez (Two Figures on a Trapeze) [p. 16]' +p302485 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302486 +sa(dp302487 +g291130 +S'graphite on paper' +p302488 +sg291132 +S'unknown date\n' +p302489 +sg291134 +S'Papagei (A Parrot) [p. 17]' +p302490 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302491 +sa(dp302492 +g291130 +S'graphite on paper' +p302493 +sg291132 +S'unknown date\n' +p302494 +sg291134 +S'Papagei (A Parrot) [p. 19]' +p302495 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302496 +sa(dp302497 +g291130 +S'graphite on paper' +p302498 +sg291132 +S'unknown date\n' +p302499 +sg291134 +S"Figur im Harlekinskost\xc3\xbcm (Figure in Harlequin's Costume) [p. 20]" +p302500 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302501 +sa(dp302502 +g291130 +S'graphite on paper' +p302503 +sg291132 +S'unknown date\n' +p302504 +sg291134 +S'begonnene Figurenskizze (Initial Sketch of a Figure) [p. 21]' +p302505 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302506 +sa(dp302507 +g291130 +S'graphite on paper' +p302508 +sg291132 +S'unknown date\n' +p302509 +sg291134 +S'Elefant (Elephant) [p. 23]' +p302510 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302511 +sa(dp302512 +g291130 +S'graphite on paper' +p302513 +sg291132 +S'unknown date\n' +p302514 +sg291134 +S'Elefanten (Elephants) [p. 25]' +p302515 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302516 +sa(dp302517 +g291130 +S'graphite on paper' +p302518 +sg291132 +S'unknown date\n' +p302519 +sg291134 +S'Elefant (Elephant) [p. 27]' +p302520 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302521 +sa(dp302522 +g291130 +S'graphite on paper' +p302523 +sg291132 +S'unknown date\n' +p302524 +sg291134 +S'begonnene Elefantenstudie (Initial Sketch of an Elephant) [p. 29]' +p302525 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302526 +sa(dp302527 +g291130 +S'graphite on paper' +p302528 +sg291132 +S'unknown date\n' +p302529 +sg291134 +S'begonnene Elefantenstudie (Initial Sketch of an Elephant) [p. 31]' +p302530 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302531 +sa(dp302532 +g291130 +S'graphite on paper' +p302533 +sg291132 +S'unknown date\n' +p302534 +sg291134 +S'Elefantenkopf (Elephant Head) [p. 33]' +p302535 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302536 +sa(dp302537 +g291130 +S'graphite on paper' +p302538 +sg291132 +S'unknown date\n' +p302539 +sg291134 +S'Gesicht in Profil (Profile) [p. 34]' +p302540 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302541 +sa(dp302542 +g291130 +S'graphite on paper' +p302543 +sg291132 +S'unknown date\n' +p302544 +sg291134 +S'Zirkusnummer mit Elefanten (Three Elephants in a Circus Act) [p. 35]' +p302545 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302546 +sa(dp302547 +g291130 +S'graphite on paper' +p302548 +sg291132 +S'unknown date\n' +p302549 +sg291134 +S'M\xc3\xa4nnliche Bildnisstudie (Male Portrait) [p. 36]' +p302550 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302551 +sa(dp302552 +g291130 +S'graphite on paper' +p302553 +sg291132 +S'unknown date\n' +p302554 +sg291134 +S'M\xc3\xa4nnliche Bildnisstudie (Male Portrait) [p. 37]' +p302555 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302556 +sa(dp302557 +g291130 +S'graphite on paper' +p302558 +sg291132 +S'unknown date\n' +p302559 +sg291134 +S'Artist oder Clown mit Tier (Performer with Animal) [p. 39]' +p302560 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302561 +sa(dp302562 +g291130 +S'graphite on paper' +p302563 +sg291132 +S'unknown date\n' +p302564 +sg291134 +S'M\xc3\xa4nnliche Bildnisstudie (Male Portrait) [p. 41]' +p302565 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302566 +sa(dp302567 +g291130 +S'graphite on paper' +p302568 +sg291132 +S'unknown date\n' +p302569 +sg291134 +S'M\xc3\xa4nnliche Bildnisstudie (Male Profile) [p. 43]' +p302570 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302571 +sa(dp302572 +g291130 +S'graphite on paper' +p302573 +sg291132 +S'unknown date\n' +p302574 +sg291134 +S'M\xc3\xa4nnliche Bildnisskizze (Male Portrait Sketch) [p. 45]' +p302575 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302576 +sa(dp302577 +g291130 +S'graphite on paper' +p302578 +sg291132 +S'unknown date\n' +p302579 +sg291134 +S'Pierrette (Pierette) [p. 48]' +p302580 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302581 +sa(dp302582 +g291130 +S'graphite on paper' +p302583 +sg291132 +S'unknown date\n' +p302584 +sg291134 +S'Pierrot [p. 49]' +p302585 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302586 +sa(dp302587 +g291130 +S'graphite on paper' +p302588 +sg291132 +S'unknown date\n' +p302589 +sg291134 +S'begonnene Studie (Intial Sketch) [p. 51]' +p302590 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302591 +sa(dp302592 +g291130 +S'graphite on paper' +p302593 +sg291132 +S'unknown date\n' +p302594 +sg291134 +S'M\xc3\xa4nnliche Bildnisstudie (Male Portrait with Beard) [p. 54]' +p302595 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302596 +sa(dp302597 +g291130 +S'graphite on paper' +p302598 +sg291132 +S'unknown date\n' +p302599 +sg291134 +S'Pierrot [p. 55]' +p302600 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302601 +sa(dp302602 +g291130 +S'graphite on paper' +p302603 +sg291132 +S'unknown date\n' +p302604 +sg291134 +S'Mann an der Bar (Man at the Bar) [p. 57]' +p302605 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302606 +sa(dp302607 +g291130 +S'graphite on paper' +p302608 +sg291132 +S'unknown date\n' +p302609 +sg291134 +S'M\xc3\xa4nnliches Profil (Male Profile) [p. 60]' +p302610 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302611 +sa(dp302612 +g291130 +S'graphite on paper' +p302613 +sg291132 +S'unknown date\n' +p302614 +sg291134 +S'Weibliche Bildnisstudie (Female Portrait Study) [p. 66]' +p302615 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302616 +sa(dp302617 +g291130 +S'graphite on paper' +p302618 +sg291132 +S'unknown date\n' +p302619 +sg291134 +S'Pierrot mit Pritsche (Performer) [p. 71]' +p302620 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302621 +sa(dp302622 +g291130 +S'graphite on paper' +p302623 +sg291132 +S'unknown date\n' +p302624 +sg291134 +S"Weibliches Gesicht, wohl Pierrette (Woman's Face, probably Pierrette) Face [p. 78]" +p302625 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302626 +sa(dp302627 +g291130 +S'graphite on paper' +p302628 +sg291132 +S'unknown date\n' +p302629 +sg291134 +S'Gesicht (Face) [p. 79]' +p302630 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302631 +sa(dp302632 +g291130 +S'graphite on paper' +p302633 +sg291132 +S'unknown date\n' +p302634 +sg291134 +S'M\xc3\xa4nner mit H\xc3\xbcten (Men Wearing Hats [p. 82]' +p302635 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302636 +sa(dp302637 +g291130 +S"sketchbook with 23 sketches in graphite, pen and black ink, and colored pencil on lined paper. Sketchbook contains 45 blank pages and 89 pages of artist's notations; some sketches are dated." +p302638 +sg291132 +S'1914/1915' +p302639 +sg291134 +S'Beckmann Sketchbook' +p302640 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302641 +sa(dp302642 +g291130 +S'pen and black ink on wove, lined paper' +p302643 +sg291132 +S'1914/1915' +p302644 +sg291134 +S'Zwei Skizzen und Notizen (Two Sketches with Notations) [p. 17]' +p302645 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302646 +sa(dp302647 +g291130 +S'pen and black ink on wove, lined paper' +p302648 +sg291132 +S'1914/1915' +p302649 +sg291134 +S'Drei Skizzen und Notizen (Three Sketches with Notations) [p. 18]' +p302650 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302651 +sa(dp302652 +g291130 +S'graphite on wove, lined paper' +p302653 +sg291132 +S'1914/1915' +p302654 +sg291134 +S'Zwei Skizzen mit Titeln (Two Sketches Titled) [p. 20]' +p302655 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302656 +sa(dp302657 +g291130 +S'pen and black ink on wove, lined paper' +p302658 +sg291132 +S'1914/1915' +p302659 +sg291134 +S'Drei Skizzen und Notizen (Three Sketches with Notations) [p. 19]' +p302660 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302661 +sa(dp302662 +g291130 +S'pen and black ink with graphic notations on lined paper' +p302663 +sg291132 +S'1914/1915' +p302664 +sg291134 +S'Zwei Skizzen und Notizen (Two Sketches with Notations) [p. 21]' +p302665 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302666 +sa(dp302667 +g291130 +S'pen and black ink on wove, lined paper' +p302668 +sg291132 +S'1914/1915' +p302669 +sg291134 +S'Zwei Skizzen und Notizen (Two Sketches with Notations) [p. 22]' +p302670 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302671 +sa(dp302672 +g291130 +S'pen and black ink on wove, lined paper' +p302673 +sg291132 +S'1914/1915' +p302674 +sg291134 +S'Zwei Skizzen (Two Sketches) [p. 26]' +p302675 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302676 +sa(dp302677 +g291130 +S'graphite and purple colored pencil on lined paper' +p302678 +sg291132 +S'1914/1915' +p302679 +sg291134 +S'Skizze (Sketch) [p. 35]' +p302680 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302681 +sa(dp302682 +g291130 +S'graphite on lined paper' +p302683 +sg291132 +S'1914/1915' +p302684 +sg291134 +S'Handstudien (Hands) [p. 62]' +p302685 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302686 +sa(dp302687 +g291130 +S'graphite on lined paper' +p302688 +sg291132 +S'1914/1915' +p302689 +sg291134 +S'Lageplan (Sketch of a Map) [p. 69]' +p302690 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302691 +sa(dp302692 +g291130 +S'pen and black ink on lined paper' +p302693 +sg291132 +S'1914/1915' +p302694 +sg291134 +S'Skizze und Notizen (Sketch with Notation) [p. 70]' +p302695 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302696 +sa(dp302697 +g291130 +S'pen and black ink on lined paper' +p302698 +sg291132 +S'1914/1915' +p302699 +sg291134 +S'Skizze mit vier Figuren (Titled Sketch with Four Figures) [p. 71]' +p302700 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302701 +sa(dp302702 +g291130 +S'graphite on lined paper' +p302703 +sg291132 +S'1914/1915' +p302704 +sg291134 +S'mehrfigurige Skizze (Figural Composition) [p. 73]' +p302705 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302706 +sa(dp302707 +g291130 +S'graphite on lined paper' +p302708 +sg291132 +S'1914/1915' +p302709 +sg291134 +S'Zwei Figuren (Two Figures) [p. 74]' +p302710 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302711 +sa(dp302712 +g291130 +S'pen and black ink on lined paper' +p302713 +sg291132 +S'1914/1915' +p302714 +sg291134 +S'mehrfigurige Skizze (Figural Composition) [p. 75]' +p302715 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302716 +sa(dp302717 +g291130 +S'graphite on lined paper' +p302718 +sg291132 +S'1914/1915' +p302719 +sg291134 +S"m\xc3\xa4nnlicher Kopf (Man's Head) [p. 96]" +p302720 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302721 +sa(dp302722 +g291130 +S'graphite on lined paper' +p302723 +sg291132 +S'1914/1915' +p302724 +sg291134 +S"Frauenbeine (Woman's Legs) [p. 103]" +p302725 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302726 +sa(dp302727 +g291130 +S'graphite on lined paper' +p302728 +sg291132 +S'1914/1915' +p302729 +sg291134 +S'Frau mit Hut (Woman with a Hat) [p. 104]' +p302730 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302731 +sa(dp302732 +g291130 +S'graphite on lined paper' +p302733 +sg291132 +S'1914/1915' +p302734 +sg291134 +S"Weibliches Gesicht (Woman's Face) [p. 106]" +p302735 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302736 +sa(dp302737 +g291130 +S'graphite on lined paper' +p302738 +sg291132 +S'1914/1915' +p302739 +sg291134 +S'Frau mit Hut (Woman with a Hat) [p. 107]' +p302740 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302741 +sa(dp302742 +g291130 +S'graphite on lined paper' +p302743 +sg291132 +S'1914/1915' +p302744 +sg291134 +S"Frauenkopf im Profil (Woman's Profile) [p. 109]" +p302745 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302746 +sa(dp302747 +g291130 +S'graphite and pink colored pencil on lined paper' +p302748 +sg291132 +S'1914/1915' +p302749 +sg291134 +S'Skizze und Notizen (Sketch with Notation) [p. 128]' +p302750 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302751 +sa(dp302752 +g291130 +S'graphite on lined paper' +p302753 +sg291132 +S'1914/1915' +p302754 +sg291134 +S'Skizze (Sketch) [p. 132]' +p302755 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302756 +sa(dp302757 +g291130 +S'sketchbook with 30 sketches in graphite and 3 pages of artist notes on laid paper' +p302758 +sg291132 +S'unknown date\n' +p302759 +sg291134 +S'Beckmann Sketchbook' +p302760 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302761 +sa(dp302762 +g291130 +S'graphite on laid paper' +p302763 +sg291132 +S'unknown date\n' +p302764 +sg291134 +S"Verworfenes weibliches Gesicht (Sketch of a Woman's Face) [p. 2]" +p302765 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302766 +sa(dp302767 +g291130 +S'graphite on laid paper' +p302768 +sg291132 +S'unknown date\n' +p302769 +sg291134 +S'Weibliche Bildnisstudie (Female Portrait Study) [p. 3]' +p302770 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302771 +sa(dp302772 +g291130 +S'graphite on laid paper' +p302773 +sg291132 +S'unknown date\n' +p302774 +sg291134 +S'Weibliche Bildnisstudie (Female Portrait Study) [p. 5]' +p302775 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302776 +sa(dp302777 +g291130 +S'graphite on laid paper' +p302778 +sg291132 +S'unknown date\n' +p302779 +sg291134 +S'Weibliche Bildnisstudie (Female Portrait Study) [p. 7]' +p302780 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302781 +sa(dp302782 +g291130 +S'graphite on laid paper' +p302783 +sg291132 +S'unknown date\n' +p302784 +sg291134 +S'Portrait Sabine Hackenschmidt (Portrait of Sabine Hackenschmidt) [p. 11]' +p302785 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302786 +sa(dp302787 +g291130 +S'graphite on laid paper' +p302788 +sg291132 +S'unknown date\n' +p302789 +sg291134 +S'Portrait Sabine Hackenschmidt (Portrait of Sabine Hackenschmidt) [p. 15]' +p302790 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302791 +sa(dp302792 +g291130 +S'graphite on laid paper' +p302793 +sg291132 +S'unknown date\n' +p302794 +sg291134 +S'Katze (Cat) [p. 17]' +p302795 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302796 +sa(dp302797 +g291130 +S'graphite on laid paper' +p302798 +sg291132 +S'unknown date\n' +p302799 +sg291134 +S'Begonnene Skizze (Sketch) [p. 20]' +p302800 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302801 +sa(dp302802 +g291130 +S'graphite on laid paper' +p302803 +sg291132 +S'unknown date\n' +p302804 +sg291134 +S'Schlafender Mandrill (Sleeping Mandrill) [p. 24]' +p302805 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302806 +sa(dp302807 +g291130 +S'graphite on laid paper' +p302808 +sg291132 +S'unknown date\n' +p302809 +sg291134 +S'Mandrill [p. 26]' +p302810 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302811 +sa(dp302812 +g291130 +S'graphite on laid paper' +p302813 +sg291132 +S'unknown date\n' +p302814 +sg291134 +S'Mandrill [p. 30]' +p302815 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302816 +sa(dp302817 +g291130 +S'graphite on laid paper' +p302818 +sg291132 +S'unknown date\n' +p302819 +sg291134 +S'Stehender weiblicher Akt (Standing Female Nude) [p. 33]' +p302820 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302821 +sa(dp302822 +g291130 +S'graphite on laid paper' +p302823 +sg291132 +S'unknown date\n' +p302824 +sg291134 +S'Mandrill [p. 34]' +p302825 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302826 +sa(dp302827 +g291130 +S'graphite on laid paper' +p302828 +sg291132 +S'unknown date\n' +p302829 +sg291134 +S'Sitzender Affe (Sitting Monkey) [p. 35]' +p302830 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302831 +sa(dp302832 +g291130 +S'graphite on laid paper' +p302833 +sg291132 +S'unknown date\n' +p302834 +sg291134 +S'Zuschauer (Spectators) [p. 37]' +p302835 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302836 +sa(dp302837 +g291130 +S'graphite on laid paper' +p302838 +sg291132 +S'unknown date\n' +p302839 +sg291134 +S'Schafender Tiger (Sleeping Tiger) [p. 38]' +p302840 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302841 +sa(dp302842 +g291130 +S'graphite on laid paper' +p302843 +sg291132 +S'unknown date\n' +p302844 +sg291134 +S'Schafender Tiger (Sleeping Tiger) [p. 39]' +p302845 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302846 +sa(dp302847 +g291130 +S'graphite on laid paper' +p302848 +sg291132 +S'unknown date\n' +p302849 +sg291134 +S'Liegende Frau mit Netzstr\xc3\xbcmpfen (Reclining Woman with Fishnet Stockings) [p. 40]' +p302850 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302851 +sa(dp302852 +g291130 +S'graphite on laid paper' +p302853 +sg291132 +S'unknown date\n' +p302854 +sg291134 +S'Schlafender Mann (Sleeping Man) [p. 43]' +p302855 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302856 +sa(dp302857 +g291130 +S'graphite on laid paper' +p302858 +sg291132 +S'unknown date\n' +p302859 +sg291134 +S'Schlafender Mann (Sleeping Man) [p. 44]' +p302860 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302861 +sa(dp302862 +g291130 +S'graphite on laid paper' +p302863 +sg291132 +S'unknown date\n' +p302864 +sg291134 +S'Raubkatze hinter Gitterst\xc3\xa4ben (Big Cat Behind Bars) [p. 48]' +p302865 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302866 +sa(dp302867 +g291130 +S'graphite on laid paper' +p302868 +sg291132 +S'unknown date\n' +p302869 +sg291134 +S'Zwei Frauen, die linke singend,(Two Women, the Left One Singing) [p. 49]' +p302870 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302871 +sa(dp302872 +g291130 +S'graphite on laid paper' +p302873 +sg291132 +S'unknown date\n' +p302874 +sg291134 +S'Zwei begonnene Studien von Gesichtern (Sketches of Faces) [p. 50]' +p302875 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302876 +sa(dp302877 +g291130 +S'graphite on laid paper' +p302878 +sg291132 +S'unknown date\n' +p302879 +sg291134 +S'Zwei Frauen (Two Women) [p. 52]' +p302880 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302881 +sa(dp302882 +g291130 +S'graphite on laid paper' +p302883 +sg291132 +S'unknown date\n' +p302884 +sg291134 +S'Kopf (Head) [p. 54]' +p302885 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302886 +sa(dp302887 +g291130 +S'graphite on laid paper' +p302888 +sg291132 +S'unknown date\n' +p302889 +sg291134 +S'Parklandschaft (A Park) [p. 56]' +p302890 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302891 +sa(dp302892 +g291130 +S'graphite on laid paper' +p302893 +sg291132 +S'unknown date\n' +p302894 +sg291134 +S'Parklandschaft (Cat Sleeping behind Bars)[p. 58]' +p302895 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302896 +sa(dp302897 +g291130 +S'graphite on laid paper' +p302898 +sg291132 +S'unknown date\n' +p302899 +sg291134 +S'Paar auf Bank im Park (Couple on a Park Bench) [p. 60]' +p302900 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302901 +sa(dp302902 +g291130 +S'graphite on laid paper' +p302903 +sg291132 +S'unknown date\n' +p302904 +sg291134 +S'Kopf im Profil (Profile) [p. 63]' +p302905 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302906 +sa(dp302907 +g291130 +S'sketchbook with 8 sketches in graphite on brown wove paper' +p302908 +sg291132 +S'unknown date\n' +p302909 +sg291134 +S'Beckmann Sketchbook' +p302910 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302911 +sa(dp302912 +g291130 +S'graphite on wove paper' +p302913 +sg291132 +S'unknown date\n' +p302914 +sg291134 +S'Flu\xc3\x9flandschaft mit Br\xc3\xbccke (Bridge over a River) [p. 1]' +p302915 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302916 +sa(dp302917 +g291130 +S'graphite on wove paper' +p302918 +sg291132 +S'unknown date\n' +p302919 +sg291134 +S'Blick in ein Interieur durch einen Vorhang (Curtains Drawn) [p. 5]' +p302920 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302921 +sa(dp302922 +g291130 +S'graphite on wove paper' +p302923 +sg291132 +S'unknown date\n' +p302924 +sg291134 +S'Sitzende Figuren (Seated Figures) [p. 7]' +p302925 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302926 +sa(dp302927 +g291130 +S'graphite on wove paper' +p302928 +sg291132 +S'unknown date\n' +p302929 +sg291134 +S'Singender (?) Mann und begonnene Studie (Two Figures, One Might Be Singing) [p. 15]' +p302930 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302931 +sa(dp302932 +g291130 +S'graphite on wove paper' +p302933 +sg291132 +S'unknown date\n' +p302934 +sg291134 +S'Drei Figuren (Three Figure Sketch) [p. 17]' +p302935 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302936 +sa(dp302937 +g291130 +S'graphite on wove paper' +p302938 +sg291132 +S'unknown date\n' +p302939 +sg291134 +S'Zwei M\xc3\xa4nner, der vordere im Profil (Two Men, one in Profile) [p. 19]' +p302940 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302941 +sa(dp302942 +g291130 +S'graphite on wove paper' +p302943 +sg291132 +S'unknown date\n' +p302944 +sg291134 +S'Zwei M\xc3\xa4nner, der vordere im Profil (Two Men, one in Profile) [p. 21]' +p302945 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302946 +sa(dp302947 +g291130 +S'graphite on wove paper' +p302948 +sg291132 +S'unknown date\n' +p302949 +sg291134 +S'Mann im Profil, re. R\xc3\xbcckenfigur (Man in Profile and Head seen from Behind) [p. 23]' +p302950 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302951 +sa(dp302952 +g291130 +S'graphite on wove paper' +p302953 +sg291132 +S'unknown date\n' +p302954 +sg291134 +S'Mann im Profil (Man in Profile) [p. 25]' +p302955 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302956 +sa(dp302957 +g291130 +S'sketchbook with 16 drawings in graphite on wove paper and 16 blank pages.' +p302958 +sg291132 +S'unknown date\n' +p302959 +sg291134 +S'Beckmann Sketchbook' +p302960 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302961 +sa(dp302962 +g291130 +S'graphite on wove paper' +p302963 +sg291132 +S'unknown date\n' +p302964 +sg291134 +S'Zwei Damen und ein Herr zu Tisch (Two Women and a Gentleman at a Table) [p. 1]' +p302965 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302966 +sa(dp302967 +g291130 +S'graphite on wove paper' +p302968 +sg291132 +S'unknown date\n' +p302969 +sg291134 +S'Paar am Caf\xc3\xa9haustisch (Couple at a Table) [p. 3]' +p302970 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302971 +sa(dp302972 +g291130 +S'graphite on wove paper' +p302973 +sg291132 +S'unknown date\n' +p302974 +sg291134 +S'Paar und Bedienung in Gasthausstube (Couple and Waitress in a Restaurant) [p. 5]' +p302975 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302976 +sa(dp302977 +g291130 +S'graphite on wove paper' +p302978 +sg291132 +S'unknown date\n' +p302979 +sg291134 +S'Menschen in einer Bar (Figures in a Bar) [p. 7]' +p302980 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302981 +sa(dp302982 +g291130 +S'graphite on wove paper' +p302983 +sg291132 +S'unknown date\n' +p302984 +sg291134 +S'Paar, Mann mit Zither (Couple, Man Plays a Zithar) Conversing [p. 9]' +p302985 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302986 +sa(dp302987 +g291130 +S'graphite on wove paper' +p302988 +sg291132 +S'unknown date\n' +p302989 +sg291134 +S'Interieur mit sechs Figuren (Interior with Six Figures) [p. 11]' +p302990 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302991 +sa(dp302992 +g291130 +S'graphite on wove paper' +p302993 +sg291132 +S'unknown date\n' +p302994 +sg291134 +S'Weibliche Bildnisstudie und m\xc3\xa4nnliches Gesicht (Study of Female and Male Face) [p. 13]' +p302995 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p302996 +sa(dp302997 +g291130 +S'graphite on wove paper' +p302998 +sg291132 +S'unknown date\n' +p302999 +sg291134 +S'Lachende Frau (Lady Laughing) [p. 15]' +p303000 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303001 +sa(dp303002 +g291130 +S'graphite on wove paper' +p303003 +sg291132 +S'unknown date\n' +p303004 +sg291134 +S'Zwei weibliche Bildnisstudien (Study of Two Ladies in Profile) [p. 17]' +p303005 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303006 +sa(dp303007 +g291130 +S'graphite on wove paper' +p303008 +sg291132 +S'unknown date\n' +p303009 +sg291134 +S'Szene in Tanzbar (Dancing in a Bar) [p. 19]' +p303010 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303011 +sa(dp303012 +g291130 +S'graphite on wove paper' +p303013 +sg291132 +S'unknown date\n' +p303014 +sg291134 +S'F\xc3\xbcnf Frauen an einem Tisch (Five Ladies at a Table) [p. 21]' +p303015 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303016 +sa(dp303017 +g291130 +S'graphite on wove paper' +p303018 +sg291132 +S'unknown date\n' +p303019 +sg291134 +S'Kleiderstudien (Studies of Dresses) [p. 23]' +p303020 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303021 +sa(dp303022 +g291130 +S'graphite on wove paper' +p303023 +sg291132 +S'unknown date\n' +p303024 +sg291134 +S'Kleiderstudien - Drei Frauen in Stra\xc3\x9fenkleidung (Studies of Dresses - Three Ladies Dressed Up) [p. 24]' +p303025 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303026 +sa(dp303027 +g291130 +S'graphite on wove paper' +p303028 +sg291132 +S'unknown date\n' +p303029 +sg291134 +S'Mann im Gespr\xc3\xa4ch mit zwei Frauen (Conversation of a Man with Two Ladies) [p. 25]' +p303030 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303031 +sa(dp303032 +g291130 +S'graphite on wove paper' +p303033 +sg291132 +S'unknown date\n' +p303034 +sg291134 +S'L\xc3\xa4chelnde Frau mit Zigarette (Smiling Lady Smoking with an Onlooker) [p. 26]' +p303035 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303036 +sa(dp303037 +g291130 +S'graphite on wove paper' +p303038 +sg291132 +S'unknown date\n' +p303039 +sg291134 +S'Frau und Mann an einer Bar (Two at a Bar) [p. 27]' +p303040 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303041 +sa(dp303042 +g291130 +S'folded sheets of paper stapled together with 7 loose sketches in graphite' +p303043 +sg291132 +S'unknown date\n' +p303044 +sg291134 +S'Beckmann Sketchbook' +p303045 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303046 +sa(dp303047 +g291130 +S'sketchbook with 27 sketches in graphite and/or pen and brown ink; 4 pages of artist notations and 13 blank pages.' +p303048 +sg291132 +S'unknown date\n' +p303049 +sg291134 +S'Beckmann Sketchbook' +p303050 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303051 +sa(dp303052 +g291130 +S'graphite with pen and brown ink' +p303053 +sg291132 +S'unknown date\n' +p303054 +sg291134 +S'Kompositionsskizze (Sketch with Inscription) [p. 3]' +p303055 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303056 +sa(dp303057 +g291130 +S'graphite with pen and brown ink' +p303058 +sg291132 +S'unknown date\n' +p303059 +sg291134 +S'Kompositionsskizze (Sketch with Inscription) [p. 5]' +p303060 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303061 +sa(dp303062 +g291130 +S'graphite on paper' +p303063 +sg291132 +S'unknown date\n' +p303064 +sg291134 +S'Kompositionsskizze mit Bezeichnung (Sketch with Inscription) [p. 7]' +p303065 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303066 +sa(dp303067 +g291130 +S'graphite on paper' +p303068 +sg291132 +S'unknown date\n' +p303069 +sg291134 +S'Fig\xc3\xbcrliche Kompositionsskizze mit Bezeichung (Figural Sketch with Inscription) [p. 9]' +p303070 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303071 +sa(dp303072 +g291130 +S'graphite on paper' +p303073 +sg291132 +S'unknown date\n' +p303074 +sg291134 +S'Kompositionsskizze mit zwei Figuren (Sketch with Two Figures) [p. 11]' +p303075 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303076 +sa(dp303077 +g291130 +S'graphite on paper' +p303078 +sg291132 +S'unknown date\n' +p303079 +sg291134 +S'Kompositionsskizze mit Bezeichnung (Sketch with Inscription) [p. 13]' +p303080 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303081 +sa(dp303082 +g291130 +S'graphite on paper' +p303083 +sg291132 +S'unknown date\n' +p303084 +sg291134 +S'Zweifigurige Kompositionsskizze mit Bezeichnung (Sketch with Two Figures) [p. 15]' +p303085 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303086 +sa(dp303087 +g291130 +S'graphite on paper' +p303088 +sg291132 +S'unknown date\n' +p303089 +sg291134 +S'Skizze mit liegendet Figur, Bezeichnung (Figure Reclining) [p. 17]' +p303090 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303091 +sa(dp303092 +g291130 +S'graphite on paper' +p303093 +sg291132 +S'unknown date\n' +p303094 +sg291134 +S'Kompositionsskizze mit Bezeichnung (Sketch for Triptych) [p. 18]' +p303095 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303096 +sa(dp303097 +g291130 +S'graphite on paper' +p303098 +sg291132 +S'unknown date\n' +p303099 +sg291134 +S'Kompositionsskizze mit Bezeichnung (Sketch with Inscription) [p. 19]' +p303100 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303101 +sa(dp303102 +g291130 +S'graphite on paper' +p303103 +sg291132 +S'unknown date\n' +p303104 +sg291134 +S'Kompositionsskizze mit Bezeichnung (Three Figures) [p. 21]' +p303105 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303106 +sa(dp303107 +g291130 +S'graphite on paper' +p303108 +sg291132 +S'unknown date\n' +p303109 +sg291134 +S'Kompositionsskizze mit Bezeichnung (Sketch with Inscription) [p. 23]' +p303110 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303111 +sa(dp303112 +g291130 +S'graphite on paper' +p303113 +sg291132 +S'unknown date\n' +p303114 +sg291134 +S'Kompositionsskizze mit Bezeichnung (Sketch with Inscription) [p. 25]' +p303115 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303116 +sa(dp303117 +g291130 +S'graphite with pen and brown ink on paper' +p303118 +sg291132 +S'unknown date\n' +p303119 +sg291134 +S'Kompositionsskizze mit Bezeichnung (Group Composition, Inscription) [p. 26]' +p303120 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303121 +sa(dp303122 +g291130 +S'pen and brown ink' +p303123 +sg291132 +S'unknown date\n' +p303124 +sg291134 +S'Zwei sich gegen\xc3\xbcbersitzende M\xc3\xa4nner, Bezeichnung (Two Men in Profile) [p. 27]' +p303125 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303126 +sa(dp303127 +g291130 +S'graphite on paper' +p303128 +sg291132 +S'unknown date\n' +p303129 +sg291134 +S'Balancierende Figuren auf B\xc3\xbchne, Bezeichnung (Sketch of Balancing Figures on a Stage, inscription) [p. 28]' +p303130 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303131 +sa(dp303132 +g291130 +S'graphite with pen and blue ink' +p303133 +sg291132 +S'unknown date\n' +p303134 +sg291134 +S'Sieben bezeichnete Skizzen (Seven Sketches with Inscriptions) [p. 29]' +p303135 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303136 +sa(dp303137 +g291130 +S'graphite with pen and brown ink' +p303138 +sg291132 +S'unknown date\n' +p303139 +sg291134 +S'Acht bezeichnete Skizzen (Eight Sketches with Inscriptions) [p. 30]' +p303140 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303141 +sa(dp303142 +g291130 +S'graphite' +p303143 +sg291132 +S'unknown date\n' +p303144 +sg291134 +S'Zwei bezeichnete Skizzen (Two Sketches with Inscriptions) [p. 31]' +p303145 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303146 +sa(dp303147 +g291130 +S'pen with brown ink' +p303148 +sg291132 +S'unknown date\n' +p303149 +sg291134 +S'Zwei mehrfigurige bezeichnete Skizzen (Two Sketches with Inscriptions) [p. 32]' +p303150 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303151 +sa(dp303152 +g291130 +S'graphite' +p303153 +sg291132 +S'unknown date\n' +p303154 +sg291134 +S'Hochrechteckige bezeichnete Skizze (Sketch with Inscription) [p. 33]' +p303155 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303156 +sa(dp303157 +g291130 +S'graphite and brown ink' +p303158 +sg291132 +S'unknown date\n' +p303159 +sg291134 +S'Liegender weiblicher Akt, Bezeichnung (Reclining Nude, Inscription) [p. 34]' +p303160 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303161 +sa(dp303162 +g291130 +S'graphite and brown ink' +p303163 +sg291132 +S'unknown date\n' +p303164 +sg291134 +S'Skizze mit Geb\xc3\xa4ude und Himmel, Bezeichnung (Vertical Sketch with Building and Sky, Inscription) [p. 35]' +p303165 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303166 +sa(dp303167 +g291130 +S'graphite' +p303168 +sg291132 +S'unknown date\n' +p303169 +sg291134 +S'Zwei kleine Skizzen mit Bezeichnung (Two Small Sketches) [p. 36]' +p303170 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303171 +sa(dp303172 +g291130 +S'graphite' +p303173 +sg291132 +S'unknown date\n' +p303174 +sg291134 +S'Mehrfigurige Skizze in Kneipe, Bezeichnung (Group Scene in Pub with Inscriptions) [p. 37]' +p303175 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303176 +sa(dp303177 +g291130 +S'graphite' +p303178 +sg291132 +S'unknown date\n' +p303179 +sg291134 +S'Figuren am Meer, Bezeichnung (Figures at the Sea, Inscriptions) [p. 38]' +p303180 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303181 +sa(dp303182 +g291130 +S'graphite' +p303183 +sg291132 +S'unknown date\n' +p303184 +sg291134 +S'Wald mit Pferden, Bezeichnung (Horses in Forest, Inscription) [p. 39]' +p303185 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303186 +sa(dp303187 +g291130 +S'sketchbook with 22 sketches in graphite, 1 sketch in brown chalk and 1 in blue chalk' +p303188 +sg291132 +S'c. 1937' +p303189 +sg291134 +S'Beckmann Sketchbook' +p303190 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303191 +sa(dp303192 +g291130 +S'graphite with blue and red ink residue on paper' +p303193 +sg291132 +S'unknown date\n' +p303194 +sg291134 +S'Skizze mit Bezeichnung (Sketch with Notations) [p. 1]' +p303195 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303196 +sa(dp303197 +g291130 +S'graphite on paper' +p303198 +sg291132 +S'unknown date\n' +p303199 +sg291134 +S'Notizen und zwei Kreisformen (Notations with Two Circles) [p. 2]' +p303200 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303201 +sa(dp303202 +g291130 +S'graphite on paper' +p303203 +sg291132 +S'unknown date\n' +p303204 +sg291134 +S'Zwei Skizzen und Notizen (Two Sketches with Notations) [p. 3]' +p303205 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303206 +sa(dp303207 +g291130 +S'graphite on paper' +p303208 +sg291132 +S'unknown date\n' +p303209 +sg291134 +S'Kompositionsskizze (Sketch with Man) [p. 7]' +p303210 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303211 +sa(dp303212 +g291130 +S'graphite on paper' +p303213 +sg291132 +S'unknown date\n' +p303214 +sg291134 +S'Skizze f\xc3\xbcr Fr\xc3\xbche Menschen (Sketch for Early Men) [p. 8]' +p303215 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303216 +sa(dp303217 +g291130 +S'graphite on paper' +p303218 +sg291132 +S'unknown date\n' +p303219 +sg291134 +S'Skizze f\xc3\xbcr Fr\xc3\xbche Menschen (Sketch for Early Men) [p. 9]' +p303220 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303221 +sa(dp303222 +g291130 +S'graphite on paper' +p303223 +sg291132 +S'unknown date\n' +p303224 +sg291134 +S'begonnene Skizze (Sketch) [p. 10]' +p303225 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303226 +sa(dp303227 +g291130 +S'graphite on paper' +p303228 +sg291132 +S'unknown date\n' +p303229 +sg291134 +S'Skizze f\xc3\xbcr Fr\xc3\xbche Menschen, Notizen (Sketch for Early Men with Notation) [p. 11]' +p303230 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303231 +sa(dp303232 +g291130 +S'charcoal with brush and blue ink' +p303233 +sg291132 +S'unknown date\n' +p303234 +sg291134 +S'Fl\xc3\xbcchtige Skizze (Sketch) [p. 12]' +p303235 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303236 +sa(dp303237 +g291130 +S'brown cont? crayon on paper' +p303238 +sg291132 +S'unknown date\n' +p303239 +sg291134 +S'Figuren in Interieur (Figures in Interior) [p. 13]' +p303240 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303241 +sa(dp303242 +g291130 +S'graphite on paper' +p303243 +sg291132 +S'unknown date\n' +p303244 +sg291134 +S'Geometrische Formen mit Notizen (Geometric Shapes with Notations) [p. 15]' +p303245 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303246 +sa(dp303247 +g291130 +S'graphite on paper' +p303248 +sg291132 +S'1937' +p303249 +sg291134 +S'Skizze mit Bezeichnung (Sketch with Inscriptions) [p. 17]' +p303250 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303251 +sa(dp303252 +g291130 +S'graphite on paper' +p303253 +sg291132 +S'unknown date\n' +p303254 +sg291134 +S'Drei Figuren in Interieur, Notizen (Three Figures with Inscriptions) [p. 22]' +p303255 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303256 +sa(dp303257 +g291130 +S'graphite on paper' +p303258 +sg291132 +S'unknown date\n' +p303259 +sg291134 +S'Bauern im Feld (Peasants in Field) [p. 23]' +p303260 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303261 +sa(dp303262 +g291130 +S'graphite on paper' +p303263 +sg291132 +S'unknown date\n' +p303264 +sg291134 +S'Bauern im Feld (Path in the Bavarian Mountains) [p. 25]' +p303265 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303266 +sa(dp303267 +g291130 +S'graphite on paper' +p303268 +sg291132 +S'unknown date\n' +p303269 +sg291134 +S'Landschaft in Bayern oder Schwarzwald (Landscape in Bavaria or Black Forest) [p. 27]' +p303270 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303271 +sa(dp303272 +g291130 +S'graphite on paper' +p303273 +sg291132 +S'unknown date\n' +p303274 +sg291134 +S'Mann mit Schurrbart und M\xc3\xbctze im Profil (Man with Moustache in Profile) [p. 29]' +p303275 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303276 +sa(dp303277 +g291130 +S'graphite on paper' +p303278 +sg291132 +S'unknown date\n' +p303279 +sg291134 +S'Skizze und Notizen (Small Sketches with Notations) [p. 31]' +p303280 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303281 +sa(dp303282 +g291130 +S'graphite on paper' +p303283 +sg291132 +S'unknown date\n' +p303284 +sg291134 +S'Skizze mit Bezeichnung (Sketch with Notation) [p. 32]' +p303285 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303286 +sa(dp303287 +g291130 +S'graphite on paper' +p303288 +sg291132 +S'unknown date\n' +p303289 +sg291134 +S'Skizze mit Bezeichnung (Sketch with Notation) [p. 33]' +p303290 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303291 +sa(dp303292 +g291130 +S'graphite on paper' +p303293 +sg291132 +S'unknown date\n' +p303294 +sg291134 +S'Skizze (Sketch) [p. 34]' +p303295 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303296 +sa(dp303297 +g291130 +S'graphite on paper' +p303298 +sg291132 +S'unknown date\n' +p303299 +sg291134 +S'Skizze (Sketch) [p. 35]' +p303300 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303301 +sa(dp303302 +g291130 +S'graphite with blue chalk on paper' +p303303 +sg291132 +S'unknown date\n' +p303304 +sg291134 +S'Skizze und Notizen (Sketch with Notations) [p. 36]' +p303305 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303306 +sa(dp303307 +g291130 +S'sketchbook with 18 sketches in graphite' +p303308 +sg291132 +S'unknown date\n' +p303309 +sg291134 +S'Beckmann Sketchbook' +p303310 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303311 +sa(dp303312 +g291130 +S'graphite with traces of red chalk on paper' +p303313 +sg291132 +S'unknown date\n' +p303314 +sg291134 +S'Zirkusartist (Male Performer) [p. 1]' +p303315 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303316 +sa(dp303317 +g291130 +S'graphite on paper' +p303318 +sg291132 +S'unknown date\n' +p303319 +sg291134 +S'T\xc3\xa4nzerin (Female Dancer) [p. 3]' +p303320 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303321 +sa(dp303322 +g291130 +S'graphite on paper' +p303323 +sg291132 +S'unknown date\n' +p303324 +sg291134 +S'zwei posierende Figuren (Two Posing Figures) [p. 5]' +p303325 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303326 +sa(dp303327 +g291130 +S'graphite on paper' +p303328 +sg291132 +S'unknown date\n' +p303329 +sg291134 +S'Zuschauer (Audience) [p. 7]' +p303330 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303331 +sa(dp303332 +g291130 +S'graphite on paper' +p303333 +sg291132 +S'unknown date\n' +p303334 +sg291134 +S'Paar unter den Zuschauern (A Couple in the Audience) [p. 9]' +p303335 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303336 +sa(dp303337 +g291130 +S'graphite on paper' +p303338 +sg291132 +S'unknown date\n' +p303339 +sg291134 +S'Mann mit Pferd (Man with a Horse) [p. 11]' +p303340 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303341 +sa(dp303342 +g291130 +S'graphite on paper' +p303343 +sg291132 +S'unknown date\n' +p303344 +sg291134 +S'Tischgesellschaft in einer Bar (Five People at a Table in a Bar) [p. 13]' +p303345 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303346 +sa(dp303347 +g291130 +S'graphite on paper' +p303348 +sg291132 +S'unknown date\n' +p303349 +sg291134 +S'zwei Frauen (Two Views of a Woman) [p. 15]' +p303350 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303351 +sa(dp303352 +g291130 +S'graphite on paper' +p303353 +sg291132 +S'unknown date\n' +p303354 +sg291134 +S'zwei weibliche Portraits (Two Portraits of a Woman )[p. 17]' +p303355 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303356 +sa(dp303357 +g291130 +S'graphite on paper' +p303358 +sg291132 +S'unknown date\n' +p303359 +sg291134 +S'weibliche Bildnisstudie (Woman in Profile) [p. 19]' +p303360 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303361 +sa(dp303362 +g291130 +S'graphite on paper' +p303363 +sg291132 +S'unknown date\n' +p303364 +sg291134 +S'l\xc3\xa4chelnde Frau (A Woman Smiling) [p. 21]' +p303365 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303366 +sa(dp303367 +g291130 +S'graphite on paper' +p303368 +sg291132 +S'unknown date\n' +p303369 +sg291134 +S'Studien eines Esels (Views of a Mule) [p. 23]' +p303370 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303371 +sa(dp303372 +g291130 +S'graphite on paper' +p303373 +sg291132 +S'unknown date\n' +p303374 +sg291134 +S'liegendes Pferd und Dompteur (Horse and Tamer) [p. 24]' +p303375 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303376 +sa(dp303377 +g291130 +S'graphite on paper' +p303378 +sg291132 +S'unknown date\n' +p303379 +sg291134 +S'Esel auf den Hinterbeinen und Dompteur (Mule on Back Legs and Tamer) [p. 25]' +p303380 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303381 +sa(dp303382 +g291130 +S'graphite on paper' +p303383 +sg291132 +S'unknown date\n' +p303384 +sg291134 +S'zwei weibliche Bildnisstudien (Two Views of a Woman) [p. 27]' +p303385 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303386 +sa(dp303387 +g291130 +S'graphite on paper' +p303388 +sg291132 +S'unknown date\n' +p303389 +sg291134 +S'Akrobaten am Trapez (Trapeze Artists) [p. 29]' +p303390 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303391 +sa(dp303392 +g291130 +S'graphite on paper' +p303393 +sg291132 +S'unknown date\n' +p303394 +sg291134 +S'weibliche Bildnisstudie und Notizen (Female Portrait and Notations) [p. 32]' +p303395 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303396 +sa(dp303397 +g291130 +S'graphite on paper' +p303398 +sg291132 +S'unknown date\n' +p303399 +sg291134 +S'Akrobaten am Trapez (Two Trapeze Artists) [p. 40]' +p303400 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303401 +sa(dp303402 +g291130 +S'sketchbook with 34 sketches in graphite, pen and ink and pink colored pencil' +p303403 +sg291132 +S'unknown date\n' +p303404 +sg291134 +S'Beckmann Sketchbook' +p303405 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303406 +sa(dp303407 +g291130 +S'graphite on paper' +p303408 +sg291132 +S'unknown date\n' +p303409 +sg291134 +S'Interieur (Interior) [p. 1]' +p303410 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303411 +sa(dp303412 +g291130 +S'graphite and pen with black ink on paper' +p303413 +sg291132 +S'unknown date\n' +p303414 +sg291134 +S'Liebespaar (Lovers) [p. 3]' +p303415 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303416 +sa(dp303417 +g291130 +S'graphite on paper' +p303418 +sg291132 +S'unknown date\n' +p303419 +sg291134 +S'Sitzende Frau (Seated Woman) [p. 4]' +p303420 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303421 +sa(dp303422 +g291130 +S'graphite on paper' +p303423 +sg291132 +S'unknown date\n' +p303424 +sg291134 +S'Kriechende Frau in W\xc3\xa4sche (Semi-Nude Woman Kneeling) [p. 5]' +p303425 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303426 +sa(dp303427 +g291130 +S'graphite and pen with black ink on paper' +p303428 +sg291132 +S'unknown date\n' +p303429 +sg291134 +S'Sitzender weiblicher Akt (Nude Seated) [p. 6]' +p303430 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303431 +sa(dp303432 +g291130 +S'graphite and pen with black ink on paper' +p303433 +sg291132 +S'unknown date\n' +p303434 +sg291134 +S'Sitzender weiblicher Akt (Nude Seated) [p. 7]' +p303435 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303436 +sa(dp303437 +g291130 +S'graphite with pen and black and green ink on paper' +p303438 +sg291132 +S'unknown date\n' +p303439 +sg291134 +S'Liegende Frau in Halbfigur (Half Length Reclining Woman) [p. 9]' +p303440 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303441 +sa(dp303442 +g291130 +S'graphite with pen and black ink on paper' +p303443 +sg291132 +S'unknown date\n' +p303444 +sg291134 +S'Weiblicher Akt in Str\xc3\xbcmpfen (Female Nude in Stockings) [p. 10]' +p303445 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303446 +sa(dp303447 +g291130 +S'graphite, pen with black and blue ink, and pink pencil on paper' +p303448 +sg291132 +S'unknown date\n' +p303449 +sg291134 +S'Liegende Frau in W\xc3\xa4sche (Half Nude Reclining) [p. 11]' +p303450 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303451 +sa(dp303452 +g291130 +S'graphite, charcoal, and brush with blue ink on paper' +p303453 +sg291132 +S'unknown date\n' +p303454 +sg291134 +S'Liegende Frau, lesend (Nude Reclining and Reading) [p. 12]' +p303455 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303456 +sa(dp303457 +g291130 +S'graphite and pen with blue ink on paper' +p303458 +sg291132 +S'unknown date\n' +p303459 +sg291134 +S'Stehender weiblicher Akt mit Turban (Standing Nude with Turban) [p. 13]' +p303460 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303461 +sa(dp303462 +g291130 +S'graphite and pen with black and blue ink on paper' +p303463 +sg291132 +S'unknown date\n' +p303464 +sg291134 +S'Liegender weiblicher Akt (Reclining Nude) [p. 14]' +p303465 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303466 +sa(dp303467 +g291130 +S'graphite and pen with black and blue ink on paper' +p303468 +sg291132 +S'unknown date\n' +p303469 +sg291134 +S'Sitzende Frau in W\xc3\xa4sche (Woman Seated in Profile) [p. 15]' +p303470 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303471 +sa(dp303472 +g291130 +S'graphite and pen with black ink on paper' +p303473 +sg291132 +S'unknown date\n' +p303474 +sg291134 +S'Sich nach vorne beugende Frau (Woman in Profile) [p. 16]' +p303475 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303476 +sa(dp303477 +g291130 +S'pen with black and blue ink on paper' +p303478 +sg291132 +S'unknown date\n' +p303479 +sg291134 +S'Sitzender weiblicher Akt (Seated Nude) [p. 17]' +p303480 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303481 +sa(dp303482 +g291130 +S'graphite and pen with black ink on paper' +p303483 +sg291132 +S'unknown date\n' +p303484 +sg291134 +S'Rauchender weiblicher Akt (Nude Smoking) [p. 18]' +p303485 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303486 +sa(dp303487 +g291130 +S'pen with black and blue ink on paper' +p303488 +sg291132 +S'unknown date\n' +p303489 +sg291134 +S'Kriechende Frau in R\xc3\xbcckenansicht (Woman on Hands and Knees, seen from Behind) [p. 19]' +p303490 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303491 +sa(dp303492 +g291130 +S'graphite and pen with black and blue ink on paper' +p303493 +sg291132 +S'unknown date\n' +p303494 +sg291134 +S'Frau in W\xc3\xa4sche in R\xc3\xbcckenansicht (Nude from Behind) [p. 20]' +p303495 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303496 +sa(dp303497 +g291130 +S'pen with black and blue ink on paper' +p303498 +sg291132 +S'unknown date\n' +p303499 +sg291134 +S'Liegende Frau in W\xc3\xa4sche (Half Nude Reclining) [p. 21]' +p303500 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303501 +sa(dp303502 +g291130 +S'pen with black and blue ink on paper' +p303503 +sg291132 +S'unknown date\n' +p303504 +sg291134 +S'Fl\xc3\xbcchtige Studien von Akten (Nude Sketches) [p. 22]' +p303505 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303506 +sa(dp303507 +g291130 +S'graphite with pen and black ink on paper' +p303508 +sg291132 +S'unknown date\n' +p303509 +sg291134 +S'Fl\xc3\xbcchtige Studie eines Aktes und eines Gesichtes (Nude Sketches) [p. 23]' +p303510 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303511 +sa(dp303512 +g291130 +S'pen and black ink on paper' +p303513 +sg291132 +S'unknown date\n' +p303514 +sg291134 +S'Sitzender Akt in R\xc3\xbcckenansicht (Seated Nude from Behind) [p. 24]' +p303515 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303516 +sa(dp303517 +g291130 +S'graphite with pen and black ink on paper' +p303518 +sg291132 +S'unknown date\n' +p303519 +sg291134 +S'Weibliche Bildnisstudie (Portrait of a Woman) [p. 25]' +p303520 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303521 +sa(dp303522 +g291130 +S'graphite with pen and black and blue ink on paper' +p303523 +sg291132 +S'unknown date\n' +p303524 +sg291134 +S'Fl\xc3\xbcchtige Aktstudien (Sketches of Three Women) [pp. 26-27]' +p303525 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303526 +sa(dp303527 +g291130 +S'graphite on paper' +p303528 +sg291132 +S'unknown date\n' +p303529 +sg291134 +S'Fl\xc3\xbcchtige Studie eines hockenden Aktes (Sketch of a Seated Nude)[p. 28]' +p303530 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303531 +sa(dp303532 +g291130 +S'pen and black ink on paper' +p303533 +sg291132 +S'unknown date\n' +p303534 +sg291134 +S'Liegende Frau in W\xc3\xa4sche (Partial Nude) [p. 29]' +p303535 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303536 +sa(dp303537 +g291130 +S'graphite on paper' +p303538 +sg291132 +S'unknown date\n' +p303539 +sg291134 +S'Frau in der Hocke (Kneeling Woman) [p. 30]' +p303540 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303541 +sa(dp303542 +g291130 +S'pen and black ink on paper' +p303543 +sg291132 +S'unknown date\n' +p303544 +sg291134 +S'Sitzende Frau in W\xc3\xa4sche (Half Nude, Seated) [p. 31]' +p303545 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303546 +sa(dp303547 +g291130 +S'graphite with notation in pen and black ink on paper' +p303548 +sg291132 +S'unknown date\n' +p303549 +sg291134 +S'Sitzende Frau in W\xc3\xa4sche (Half Nude, Seated) [p. 32-33]' +p303550 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303551 +sa(dp303552 +g291130 +S'pen and black ink on paper' +p303553 +sg291132 +S'unknown date\n' +p303554 +sg291134 +S'Liegender weiblicher Akt (Reclining Nude) [p. 34]' +p303555 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303556 +sa(dp303557 +g291130 +S'graphite on paper' +p303558 +sg291132 +S'unknown date\n' +p303559 +sg291134 +S'Hockender Akt in R\xc3\xbcckenansicht (Kneeling Woman from Behind) [p. 35]' +p303560 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303561 +sa(dp303562 +g291130 +S'graphite with pen and black ink on paper' +p303563 +sg291132 +S'unknown date\n' +p303564 +sg291134 +S'Sitzende Frau in W\xc3\xa4sche (Half Nude Seated) [p. 36]' +p303565 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303566 +sa(dp303567 +g291130 +S'graphite with pen mark on paper' +p303568 +sg291132 +S'unknown date\n' +p303569 +sg291134 +S'Bogensch\xc3\xbctze (Archer) [p. 37]' +p303570 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303571 +sa(dp303572 +g291130 +S'pen with black and green ink on paper' +p303573 +sg291132 +S'unknown date\n' +p303574 +sg291134 +S'Sich umarmendes Paar (Embracing Couple) [p. 38]' +p303575 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303576 +sa(dp303577 +g291130 +S'sketchbook with 23 sketches in graphite on paper' +p303578 +sg291132 +S'unknown date\n' +p303579 +sg291134 +S'Beckmann Sketchbook' +p303580 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303581 +sa(dp303582 +g291130 +S'graphite on paper' +p303583 +sg291132 +S'unknown date\n' +p303584 +sg291134 +S'W\xc3\xa4hrend der Vorstellung (During a performance) [p. 1]' +p303585 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303586 +sa(dp303587 +g291130 +S'graphite on paper' +p303588 +sg291132 +S'unknown date\n' +p303589 +sg291134 +S'Tanzendes Paar (Dancing Couple) [p. 3]' +p303590 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303591 +sa(dp303592 +g291130 +S'graphite on paper' +p303593 +sg291132 +S'unknown date\n' +p303594 +sg291134 +S'Tanzendes Paar (Dancing Couple) [p. 5]' +p303595 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303596 +sa(dp303597 +g291130 +S'graphite on paper' +p303598 +sg291132 +S'unknown date\n' +p303599 +sg291134 +S'Studien von Tanzenden (Studies of Dancers) [p. 7]' +p303600 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303601 +sa(dp303602 +g291130 +S'graphite on paper' +p303603 +sg291132 +S'unknown date\n' +p303604 +sg291134 +S'\xc3\x84ltere Frau und Artist im Hintergrund (Elderly Woman and a performer in the background) [p. 9]' +p303605 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303606 +sa(dp303607 +g291130 +S'graphite on paper' +p303608 +sg291132 +S'unknown date\n' +p303609 +sg291134 +S'Zwei M\xc3\xa4nner in einer Loge (Two Men in a Theater Box) [p. 11]' +p303610 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303611 +sa(dp303612 +g291130 +S'graphite on paper' +p303613 +sg291132 +S'unknown date\n' +p303614 +sg291134 +S'Ringk\xc3\xa4mpfer (Wrestlers) [p. 13]' +p303615 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303616 +sa(dp303617 +g291130 +S'graphite on paper' +p303618 +sg291132 +S'unknown date\n' +p303619 +sg291134 +S'Zwei Ringk\xc3\xa4mpfer (Two Wrestlers Close Up) [p. 16]' +p303620 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303621 +sa(dp303622 +g291130 +S'graphite on paper' +p303623 +sg291132 +S'unknown date\n' +p303624 +sg291134 +S'Zuschauer, rechts Ringk\xc3\xa4mpfer (Spectators and Wrestlers) [p. 17]' +p303625 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303626 +sa(dp303627 +g291130 +S'graphite on paper' +p303628 +sg291132 +S'unknown date\n' +p303629 +sg291134 +S'Zwei ineinander verschlungene Figuren (Two Figures Locked) [p. 19]' +p303630 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303631 +sa(dp303632 +g291130 +S'graphite on paper' +p303633 +sg291132 +S'unknown date\n' +p303634 +sg291134 +S'Zwei ineinander verschlungene Figuren (Two Wrestlers Locked) [p. 21]' +p303635 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303636 +sa(dp303637 +g291130 +S'graphite on paper' +p303638 +sg291132 +S'unknown date\n' +p303639 +sg291134 +S'M\xc3\xa4nnliche Halbfigur im Profil (Man in Profile) [p. 23]' +p303640 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303641 +sa(dp303642 +g291130 +S'graphite on paper' +p303643 +sg291132 +S'unknown date\n' +p303644 +sg291134 +S'Zwei ineinander verschlungene Ringk\xc3\xa4mpfer (Two Wrestlers Intertwined) [p. 25]' +p303645 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303646 +sa(dp303647 +g291130 +S'graphite on paper' +p303648 +sg291132 +S'unknown date\n' +p303649 +sg291134 +S'Begonnene Studie (Sketch) [p. 27]' +p303650 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303651 +sa(dp303652 +g291130 +S'graphite on paper' +p303653 +sg291132 +S'unknown date\n' +p303654 +sg291134 +S'Ringk\xc3\xa4mpfer im Profil (Wrestler in Profile) [p. 29]' +p303655 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303656 +sa(dp303657 +g291130 +S'graphite on paper' +p303658 +sg291132 +S'unknown date\n' +p303659 +sg291134 +S'Zwei ineinander verschlungene Ringk\xc3\xa4mpfer (Two Wrestlers Locked) [p. 31]' +p303660 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303661 +sa(dp303662 +g291130 +S'graphite on paper' +p303663 +sg291132 +S'unknown date\n' +p303664 +sg291134 +S'Begonnene Studie (Sketch) [p. 33]' +p303665 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303666 +sa(dp303667 +g291130 +S'graphite on paper' +p303668 +sg291132 +S'unknown date\n' +p303669 +sg291134 +S'Begonnene Studie (Sketch) [p. 35]' +p303670 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303671 +sa(dp303672 +g291130 +S'graphite on paper' +p303673 +sg291132 +S'unknown date\n' +p303674 +sg291134 +S'Zwei Gesichter (Sketches of Two Faces) [p. 37]' +p303675 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303676 +sa(dp303677 +g291130 +S'graphite on paper' +p303678 +sg291132 +S'unknown date\n' +p303679 +sg291134 +S'Landschaftsstudie mit Haus und B\xc3\xa4umen (Landscape with House and Trees) [p. 38]' +p303680 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303681 +sa(dp303682 +g291130 +S'graphite on paper' +p303683 +sg291132 +S'unknown date\n' +p303684 +sg291134 +S'Zwei Ringk\xc3\xa4mpfer, frontal (Two Wrestlers Facing Viewer) [p. 39]' +p303685 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303686 +sa(dp303687 +g291130 +S'graphite on paper' +p303688 +sg291132 +S'unknown date\n' +p303689 +sg291134 +S'Stadtlandschaft (Cityscape with Inscriptions) [p. 40]' +p303690 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303691 +sa(dp303692 +g291130 +S'sketchbook with 8 sketches in graphite' +p303693 +sg291132 +S'unknown date\n' +p303694 +sg291134 +S'Beckmann Sketchbook' +p303695 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303696 +sa(dp303697 +g291130 +S'graphite on paper' +p303698 +sg291132 +S'unknown date\n' +p303699 +sg291134 +S'Balancierende Artiste (Tightrope Walker) [p. 1]' +p303700 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303701 +sa(dp303702 +g291130 +S'graphite on paper' +p303703 +sg291132 +S'unknown date\n' +p303704 +sg291134 +S'Zirkusnummer mit Raubkatzen (Circus Act with Cats of Prey) [p. 2]' +p303705 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303706 +sa(dp303707 +g291130 +S'graphite on paper' +p303708 +sg291132 +S'unknown date\n' +p303709 +sg291134 +S'Tiger mit ge\xc3\xb6ffnetem Maul (Open Tiger Mouth) [p. 4]' +p303710 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303711 +sa(dp303712 +g291130 +S'graphite on paper' +p303713 +sg291132 +S'unknown date\n' +p303714 +sg291134 +S'Zirkusnummer mit Kunstreiter (Circus Act with Horse Master) [p. 6]' +p303715 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303716 +sa(dp303717 +g291130 +S'graphite on paper' +p303718 +sg291132 +S'unknown date\n' +p303719 +sg291134 +S'Akrobaten auf Wippe (Acrobats on See-saw) [p. 7]' +p303720 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303721 +sa(dp303722 +g291130 +S'graphite on paper' +p303723 +sg291132 +S'unknown date\n' +p303724 +sg291134 +S'Zwei Tigerstudien (Two Tiger Studies) [p. 8]' +p303725 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303726 +sa(dp303727 +g291130 +S'graphite on paper' +p303728 +sg291132 +S'unknown date\n' +p303729 +sg291134 +S'Hockender L\xc3\xb6we (Crouching Lion) [p. 9]' +p303730 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303731 +sa(dp303732 +g291130 +S'graphite on paper' +p303733 +sg291132 +S'unknown date\n' +p303734 +sg291134 +S'Zwei Kunstreiter (Two Circus Riders) [p. 10]' +p303735 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303736 +sa(dp303737 +g291130 +S'sketchbook with 4 sketches in graphite and 28 blank pages, bound with two staples' +p303738 +sg291132 +S'unknown date\n' +p303739 +sg291134 +S'Beckmann Sketchbook' +p303740 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303741 +sa(dp303742 +g291130 +S'graphite on paper' +p303743 +sg291132 +S'unknown date\n' +p303744 +sg291134 +S'Detailstudie eines Violoncello (Study of a Violin) [p. 1]' +p303745 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303746 +sa(dp303747 +g291130 +S'graphite on paper' +p303748 +sg291132 +S'unknown date\n' +p303749 +sg291134 +S'Detailstudie eines Violoncello (Study of a Violin) [p. 3]' +p303750 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303751 +sa(dp303752 +g291130 +S'graphite on paper' +p303753 +sg291132 +S'unknown date\n' +p303754 +sg291134 +S'Bildnis Heinrich George (Portrait of Heinrich George) [p. 7]' +p303755 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303756 +sa(dp303757 +g291130 +S'graphite on paper' +p303758 +sg291132 +S'unknown date\n' +p303759 +sg291134 +S'Bildnis Berta Drews-George (Portrait of Berta Drews-George) [p. 9]' +p303760 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303761 +sa(dp303762 +g291130 +S'sketchbook with 4 sketches in graphite' +p303763 +sg291132 +S'unknown date\n' +p303764 +sg291134 +S'Beckmann Sketchbook' +p303765 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303766 +sa(dp303767 +g291130 +S'graphite on paper' +p303768 +sg291132 +S'unknown date\n' +p303769 +sg291134 +S'Zuschauer bei einem Pferderennen (Spectators at a Horse Race) [p. 1]' +p303770 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303771 +sa(dp303772 +g291130 +S'graphite on paper' +p303773 +sg291132 +S'unknown date\n' +p303774 +sg291134 +S'Figuren in einer Hotellobby (Socialites in a Hotel Lobby) [p. 3]' +p303775 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303776 +sa(dp303777 +g291130 +S'graphite on paper' +p303778 +sg291132 +S'unknown date\n' +p303779 +sg291134 +S'Frau in einer T\xc3\xbcr\xc3\xb6ffnung (Woman in a Doorway) [p. 10]' +p303780 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303781 +sa(dp303782 +g291130 +S'graphite on paper' +p303783 +sg291132 +S'unknown date\n' +p303784 +sg291134 +S'Rennpferd und zwei M\xc3\xa4nner (Racehorse and Two Men) [p. 12]' +p303785 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303786 +sa(dp303787 +g291130 +S'sketchbook with 24 sketches in graphite on perforated paper' +p303788 +sg291132 +S'unknown date\n' +p303789 +sg291134 +S'Beckmann Sketchbook' +p303790 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303791 +sa(dp303792 +g291130 +S'graphite on perforated paper' +p303793 +sg291132 +S'unknown date\n' +p303794 +sg291134 +S'Studie einer Katze (Study of a Cat) [p. 3]' +p303795 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303796 +sa(dp303797 +g291130 +S'graphite on perforated paper' +p303798 +sg291132 +S'unknown date\n' +p303799 +sg291134 +S'Studie einer Katze (Study of a Cat) [p. 5]' +p303800 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303801 +sa(dp303802 +g291130 +S'graphite on perforated paper' +p303803 +sg291132 +S'unknown date\n' +p303804 +sg291134 +S'Fl\xc3\xbcchtige Studie zweier tanzender Figuren (Sketch of Dancing Figure) [p. 15]' +p303805 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303806 +sa(dp303807 +g291130 +S'graphite on perforated paper' +p303808 +sg291132 +S'unknown date\n' +p303809 +sg291134 +S'Fl\xc3\xbcchtige Studie zweier tanzender Figuren (Sketch of Dancing Figure)[p. 17]' +p303810 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303811 +sa(dp303812 +g291130 +S'graphite on perforated paper' +p303813 +sg291132 +S'unknown date\n' +p303814 +sg291134 +S'Stehende Akrobatin (Standing Female Acrobats) [p. 19]' +p303815 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303816 +sa(dp303817 +g291130 +S'graphite on perforated paper' +p303818 +sg291132 +S'unknown date\n' +p303819 +sg291134 +S'Skizze einer Figur und einer Katze (Sketches with Figure and Cat) [p. 21]' +p303820 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303821 +sa(dp303822 +g291130 +S'graphite on perforated paper' +p303823 +sg291132 +S'unknown date\n' +p303824 +sg291134 +S'begonnene Tierstudie (Animal Study) [p. 23]' +p303825 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303826 +sa(dp303827 +g291130 +S'graphite on perforated paper' +p303828 +sg291132 +S'unknown date\n' +p303829 +sg291134 +S'Springender Tiger (Tiger Leaping) [p. 24-25]' +p303830 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303831 +sa(dp303832 +g291130 +S'graphite on perforated paper' +p303833 +sg291132 +S'unknown date\n' +p303834 +sg291134 +S'Balancierende Akrobaten (Tightrope Walkers) [p. 27]' +p303835 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303836 +sa(dp303837 +g291130 +S'graphite on perforated paper' +p303838 +sg291132 +S'unknown date\n' +p303839 +sg291134 +S'Studie zweier tanzender Figuren (Study of Two Dancing Figures) [p. 29]' +p303840 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303841 +sa(dp303842 +g291130 +S'graphite on perforated paper' +p303843 +sg291132 +S'unknown date\n' +p303844 +sg291134 +S'Studie zweier tanzender Figuren (Study of Two Dancing Figures) [p. 31]' +p303845 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303846 +sa(dp303847 +g291130 +S'graphite on perforated paper' +p303848 +sg291132 +S'unknown date\n' +p303849 +sg291134 +S'Studie zweier tanzender Figuren (Study of Two Dancing Figures) [p. 33]' +p303850 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303851 +sa(dp303852 +g291130 +S'graphite on perforated paper' +p303853 +sg291132 +S'unknown date\n' +p303854 +sg291134 +S"Frau und m\xc3\xa4nnlicher Hinterkopf (Woman and the Back of a Man's Head) [p. 43]" +p303855 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303856 +sa(dp303857 +g291130 +S'graphite on perforated paper' +p303858 +sg291132 +S'unknown date\n' +p303859 +sg291134 +S'Liegendes oder gest\xc3\xbcrztes Pferd und Zuschauer (Reclining or Fallen Horse and Viewers) [p. 55]' +p303860 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303861 +sa(dp303862 +g291130 +S'graphite on perforated paper' +p303863 +sg291132 +S'unknown date\n' +p303864 +sg291134 +S'Manege mit Pferd und Clown (Circus Ring with a Horse and Clown) [p. 57]' +p303865 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303866 +sa(dp303867 +g291130 +S'graphite on perforated paper' +p303868 +sg291132 +S'unknown date\n' +p303869 +sg291134 +S'Manege mit Kunstreiter und Clown (Circus Ring with Rider and Clown) [p. 59]' +p303870 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303871 +sa(dp303872 +g291130 +S'graphite on perforated paper' +p303873 +sg291132 +S'unknown date\n' +p303874 +sg291134 +S'Kunstreiterin und Clown (Female Circus Rider and Clown) [p. 61]' +p303875 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303876 +sa(dp303877 +g291130 +S'graphite on perforated paper' +p303878 +sg291132 +S'unknown date\n' +p303879 +sg291134 +S'Begonnene Skizze (Unfinished Sketch) [p. 62]' +p303880 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303881 +sa(dp303882 +g291130 +S'graphite on perforated paper' +p303883 +sg291132 +S'unknown date\n' +p303884 +sg291134 +S'Elefantenkopf (Head of an Elephant) [p. 65]' +p303885 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303886 +sa(dp303887 +g291130 +S'graphite on perforated paper' +p303888 +sg291132 +S'unknown date\n' +p303889 +sg291134 +S'Zirkusnummer mit Elefanten (Circus Act with Elephants) [p. 67]' +p303890 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303891 +sa(dp303892 +g291130 +S'graphite on perforated paper' +p303893 +sg291132 +S'unknown date\n' +p303894 +sg291134 +S'Zirkusnummer mit Elefanten (Circus Act with Elephants from Behind) [p. 69]' +p303895 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303896 +sa(dp303897 +g291130 +S'graphite on perforated paper' +p303898 +sg291132 +S'unknown date\n' +p303899 +sg291134 +S'Zirkusnummer mit Elefanten (Circus Act with Elephants Reclining) [p. 71]' +p303900 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303901 +sa(dp303902 +g291130 +S'graphite on perforated paper' +p303903 +sg291132 +S'unknown date\n' +p303904 +sg291134 +S'Sitzender Elefant (Seated Elephant) [p. 73]' +p303905 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303906 +sa(dp303907 +g291130 +S'graphite on perforated paper' +p303908 +sg291132 +S'unknown date\n' +p303909 +sg291134 +S'Zirkusnummer mit Elefanten (Elephants Performing) [p. 75]' +p303910 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303911 +sa(dp303912 +g291130 +S'graphite on perforated paper' +p303913 +sg291132 +S'unknown date\n' +p303914 +sg291134 +S'Zirkusnummer mit Elefanten (Elephants Performing) [p. 77]' +p303915 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303916 +sa(dp303917 +g291130 +S"sketchbook with 165 sketches in graphite, pen and black ink, and watercolor, with 4 sheets of artist's notations" +p303918 +sg291132 +S'1899/1900' +p303919 +sg291134 +S'Beckmann Sketchbook' +p303920 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303921 +sa(dp303922 +g291130 +S'graphite with pen and black ink on wove paper' +p303923 +sg291132 +S'1899' +p303924 +sg291134 +S'Seated Man with a Drink, Berlin' +p303925 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303926 +sa(dp303927 +g291130 +S'graphite with pen and black ink and watercolor on wove paper' +p303928 +sg291132 +S'1899' +p303929 +sg291134 +S'Man Seated at a Dining Table, Smoking' +p303930 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303931 +sa(dp303932 +g291130 +S'graphite with pen and black ink and watercolor on wove paper' +p303933 +sg291132 +S'1899' +p303934 +sg291134 +S'Woman in Profile Wearing a Feathered Hat' +p303935 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303936 +sa(dp303937 +g291130 +S'graphite with pen and black ink and watercolor on wove paper' +p303938 +sg291132 +S'1899' +p303939 +sg291134 +S'Seated Woman seen from Behind, Wearing a Flowered Hat' +p303940 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303941 +sa(dp303942 +g291130 +S'graphite with touches of crayon on wove paper' +p303943 +sg291132 +S'1899' +p303944 +sg291134 +S'Woman in Profile to the Left' +p303945 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303946 +sa(dp303947 +g291130 +S'graphite with pen and brown ink on wove paper' +p303948 +sg291132 +S'1899' +p303949 +sg291134 +S'Man Reading at the Tiergarten Restaurant, Berlin' +p303950 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303951 +sa(dp303952 +g291130 +S'graphite with watercolor and crayon on wove paper' +p303953 +sg291132 +S'1899' +p303954 +sg291134 +S'Two Studies of Spectators at the Metropol Theater' +p303955 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303956 +sa(dp303957 +g291130 +S'graphite on wove paper' +p303958 +sg291132 +S'1899' +p303959 +sg291134 +S'Study of a Bearded Man in Profile to the Right' +p303960 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303961 +sa(dp303962 +g291130 +S'graphite with pen and brown ink and watercolor on wove paper' +p303963 +sg291132 +S'1899' +p303964 +sg291134 +S'Woman Seated in Loge at the Metropol Theater' +p303965 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303966 +sa(dp303967 +g291130 +S'graphite on wove paper' +p303968 +sg291132 +S'1899' +p303969 +sg291134 +S'Bearded Man at a Cafe Table, Smoking' +p303970 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303971 +sa(dp303972 +g291130 +S'graphite with crayon on wove paper' +p303973 +sg291132 +S'1899' +p303974 +sg291134 +S'Policeman on Friedrich Strasse' +p303975 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303976 +sa(dp303977 +g291130 +S'graphite with watercolor and crayon on wove paper' +p303978 +sg291132 +S'1899' +p303979 +sg291134 +S'Mythical Figure' +p303980 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303981 +sa(dp303982 +g291130 +S'pen and brown ink on wove paper' +p303983 +sg291132 +S'1899' +p303984 +sg291134 +S'Conductor with His Baton Raised' +p303985 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303986 +sa(dp303987 +g291130 +S'graphite with crayon on wove paper' +p303988 +sg291132 +S'1899' +p303989 +sg291134 +S'Woman with Opera Glasses' +p303990 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303991 +sa(dp303992 +g291130 +S'graphite with crayon on wove paper' +p303993 +sg291132 +S'1899' +p303994 +sg291134 +S'Woman in Profile to the Right' +p303995 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p303996 +sa(dp303997 +g291130 +S'graphite on wove paper' +p303998 +sg291132 +S'1899' +p303999 +sg291134 +S'Man Seated at a Dining Table' +p304000 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304001 +sa(dp304002 +g291130 +S'graphite with pen and brown ink and crayon on wove paper' +p304003 +sg291132 +S'1899' +p304004 +sg291134 +S'Head of a Woman in an Oval Frame' +p304005 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304006 +sa(dp304007 +g291130 +S'graphite with pen and brown ink, watercolor, and crayon on wove paper' +p304008 +sg291132 +S'1899' +p304009 +sg291134 +S'Two Studies of Men' +p304010 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304011 +sa(dp304012 +g291130 +S'graphite on wove paper' +p304013 +sg291132 +S'1899' +p304014 +sg291134 +S'Bearded Man Smoking' +p304015 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304016 +sa(dp304017 +g291130 +S'graphite with pen and brown ink on wove paper' +p304018 +sg291132 +S'1899' +p304019 +sg291134 +S"Two Studies of Women's Heads seen from Behind" +p304020 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304021 +sa(dp304022 +g291130 +S'graphite with crayon on wove paper' +p304023 +sg291132 +S'1899' +p304024 +sg291134 +S'Woman in Profile to the Left' +p304025 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304026 +sa(dp304027 +g291130 +S'graphite on wove paper' +p304028 +sg291132 +S'1899' +p304029 +sg291134 +S'Bearded Man in Profile to the Left' +p304030 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304031 +sa(dp304032 +g291130 +S'graphite with crayon on wove paper' +p304033 +sg291132 +S'1899' +p304034 +sg291134 +S'Woman in Profile to the Right' +p304035 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304036 +sa(dp304037 +g291130 +S'graphite with pen and brown ink on wove paper' +p304038 +sg291132 +S'1899' +p304039 +sg291134 +S'Gentleman Reading' +p304040 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304041 +sa(dp304042 +g291130 +S'graphite with crayon on wove paper' +p304043 +sg291132 +S'1899' +p304044 +sg291134 +S'Three Women at a Table' +p304045 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304046 +sa(dp304047 +g291130 +S'graphite with crayon on wove paper' +p304048 +sg291132 +S'1899' +p304049 +sg291134 +S'Woman in Hat with a Red Feather' +p304050 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304051 +sa(dp304052 +g291130 +S'graphite with crayon on wove paper' +p304053 +sg291132 +S'1899' +p304054 +sg291134 +S'Woman in Profile to the Left' +p304055 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304056 +sa(dp304057 +g291130 +S'graphite with crayon on wove paper' +p304058 +sg291132 +S'1899' +p304059 +sg291134 +S'Officer with Monocle' +p304060 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304061 +sa(dp304062 +g291130 +S'graphite with watercolor and crayon on wove paper' +p304063 +sg291132 +S'1899' +p304064 +sg291134 +S'Woman with Green Scarf' +p304065 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304066 +sa(dp304067 +g291130 +S'graphite and pen and black ink on wove paper' +p304068 +sg291132 +S'1899' +p304069 +sg291134 +S'Man and Woman Dining' +p304070 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304071 +sa(dp304072 +g291130 +S'graphite with watercolor and crayon on wove paper' +p304073 +sg291132 +S'1899' +p304074 +sg291134 +S'Chinese Man' +p304075 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304076 +sa(dp304077 +g291130 +S'graphite and crayon on wove paper' +p304078 +sg291132 +S'1899' +p304079 +sg291134 +S'Rooster and Pig' +p304080 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304081 +sa(dp304082 +g291130 +S'graphite on wove paper' +p304083 +sg291132 +S'1899' +p304084 +sg291134 +S'Sheep Grazing' +p304085 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304086 +sa(dp304087 +g291130 +S'graphite and crayons on wove paper' +p304088 +sg291132 +S'1899' +p304089 +sg291134 +S'Landscape with a Windmill' +p304090 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304091 +sa(dp304092 +g291130 +S'graphite and crayon on wove paper' +p304093 +sg291132 +S'1899' +p304094 +sg291134 +S'Woman Hanging Clothes on a Line' +p304095 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304096 +sa(dp304097 +g291130 +S'graphite on wove paper' +p304098 +sg291132 +S'1899' +p304099 +sg291134 +S'Pig' +p304100 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304101 +sa(dp304102 +g291130 +S'graphite on wove paper' +p304103 +sg291132 +S'1899' +p304104 +sg291134 +S'Man with Cane seen from Behind' +p304105 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304106 +sa(dp304107 +g291130 +S'graphite with crayon on wove paper' +p304108 +sg291132 +S'1899' +p304109 +sg291134 +S'Two Ducks' +p304110 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304111 +sa(dp304112 +g291130 +S'graphite with touches of crayon on wove paper' +p304113 +sg291132 +S'1899' +p304114 +sg291134 +S'Young Man Smiling, Seated before a Building' +p304115 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304116 +sa(dp304117 +g291130 +S'graphite on wove paper (two crayon slashes)' +p304118 +sg291132 +S'1899' +p304119 +sg291134 +S'Landscape with a Horse' +p304120 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304121 +sa(dp304122 +g291130 +S'graphite with touches of crayon on wove paper' +p304123 +sg291132 +S'1899' +p304124 +sg291134 +S'Revelry' +p304125 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304126 +sa(dp304127 +g291130 +S'graphite with touches of crayon on wove paper' +p304128 +sg291132 +S'1899' +p304129 +sg291134 +S'Nude Figure' +p304130 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304131 +sa(dp304132 +g291130 +S'graphite with touches of crayon on wove paper' +p304133 +sg291132 +S'1899' +p304134 +sg291134 +S'Young Man in Knickers Holding a Staff' +p304135 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304136 +sa(dp304137 +g291130 +S'graphite on wove paper' +p304138 +sg291132 +S'1899' +p304139 +sg291134 +S'Young Man in Knickers Holding a Staff' +p304140 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304141 +sa(dp304142 +g291130 +S'graphite on wove paper' +p304143 +sg291132 +S'1899' +p304144 +sg291134 +S'Young Boy Smiling' +p304145 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304146 +sa(dp304147 +g291130 +S'graphite on wove paper' +p304148 +sg291132 +S'1899' +p304149 +sg291134 +S'Face in Profile to the Left' +p304150 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304151 +sa(dp304152 +g291130 +S'graphite on wove paper' +p304153 +sg291132 +S'1899' +p304154 +sg291134 +S'Man Holding a Spear' +p304155 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304156 +sa(dp304157 +g291130 +S'graphite on wove paper' +p304158 +sg291132 +S'1899' +p304159 +sg291134 +S'Study of a Right Hand' +p304160 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304161 +sa(dp304162 +g291130 +S'graphite on wove paper' +p304163 +sg291132 +S'1899' +p304164 +sg291134 +S'Two Figure Studies' +p304165 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304166 +sa(dp304167 +g291130 +S'graphite with crayon on wove paper' +p304168 +sg291132 +S'1899' +p304169 +sg291134 +S'Church' +p304170 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304171 +sa(dp304172 +g291130 +S'graphite with crayons on wove paper' +p304173 +sg291132 +S'1899' +p304174 +sg291134 +S'Four Ducks in a Landscape' +p304175 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304176 +sa(dp304177 +g291130 +S'graphite on wove paper' +p304178 +sg291132 +S'1899' +p304179 +sg291134 +S'Study of a Left Hand' +p304180 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304181 +sa(dp304182 +g291130 +S'graphite on wove paper' +p304183 +sg291132 +S'1899' +p304184 +sg291134 +S'Man Seated on the Grass with a Cane' +p304185 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304186 +sa(dp304187 +g291130 +S'graphite on wove paper' +p304188 +sg291132 +S'1899' +p304189 +sg291134 +S'Study of a Right Hand' +p304190 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304191 +sa(dp304192 +g291130 +S'graphite on wove paper' +p304193 +sg291132 +S'1899' +p304194 +sg291134 +S'Rustic Building' +p304195 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304196 +sa(dp304197 +g291130 +S'graphite with crayon on wove paper' +p304198 +sg291132 +S'1899' +p304199 +sg291134 +S'Landcape with a Town in a Valley' +p304200 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304201 +sa(dp304202 +g291130 +S'graphite with pen and brown ink on wove paper' +p304203 +sg291132 +S'1899' +p304204 +sg291134 +S'Two Travelers in a Landscape' +p304205 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304206 +sa(dp304207 +g291130 +S'graphite on wove paper' +p304208 +sg291132 +S'1899' +p304209 +sg291134 +S'Barnyard Roosters' +p304210 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304211 +sa(dp304212 +g291130 +S'graphite on wove paper' +p304213 +sg291132 +S'1899' +p304214 +sg291134 +S'Boy Seated on Logs (Thomas Diestelmann)' +p304215 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304216 +sa(dp304217 +g291130 +S'graphite on wove paper' +p304218 +sg291132 +S'1899' +p304219 +sg291134 +S'Boy Seated on Rock with His Hand on His Chin (R. Diestelmann)' +p304220 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304221 +sa(dp304222 +g291130 +S'graphite with crayon on wove paper' +p304223 +sg291132 +S'1899' +p304224 +sg291134 +S'Two Men with Wine Bottles' +p304225 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304226 +sa(dp304227 +g291130 +S'graphite on wove paper' +p304228 +sg291132 +S'1899' +p304229 +sg291134 +S'Study of Folded Hands' +p304230 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304231 +sa(dp304232 +g291130 +S'graphite on wove paper' +p304233 +sg291132 +S'1899' +p304234 +sg291134 +S"Studies of a Man's Profile" +p304235 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304236 +sa(dp304237 +g291130 +S'graphite on wove paper' +p304238 +sg291132 +S'1899' +p304239 +sg291134 +S'Boy Reading' +p304240 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304241 +sa(dp304242 +g291130 +S'graphite on wove paper' +p304243 +sg291132 +S'1899' +p304244 +sg291134 +S"Woman's Profile to the Right" +p304245 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304246 +sa(dp304247 +g291130 +S'graphite with crayon on wove paper' +p304248 +sg291132 +S'1899' +p304249 +sg291134 +S'Numerous Studies of Faces' +p304250 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304251 +sa(dp304252 +g291130 +S'graphite on wove paper' +p304253 +sg291132 +S'1899' +p304254 +sg291134 +S'Study of a Right Hand' +p304255 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304256 +sa(dp304257 +g291130 +S'graphite on wove paper' +p304258 +sg291132 +S'1899' +p304259 +sg291134 +S'Boy in Profile to the Left' +p304260 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304261 +sa(dp304262 +g291130 +S'graphite on wove paper' +p304263 +sg291132 +S'1899' +p304264 +sg291134 +S'Boy in Profile to the Left' +p304265 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304266 +sa(dp304267 +g291130 +S'graphite on wove paper' +p304268 +sg291132 +S'1899' +p304269 +sg291134 +S'Young Man (with crossing out)' +p304270 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304271 +sa(dp304272 +g291130 +S'graphite with crayon on wove paper' +p304273 +sg291132 +S'1899' +p304274 +sg291134 +S'Young Girl with Red Hair' +p304275 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304276 +sa(dp304277 +g291130 +S'graphite on wove paper' +p304278 +sg291132 +S'1899' +p304279 +sg291134 +S"Studies of a Boy's Profile to the Left" +p304280 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304281 +sa(dp304282 +g291130 +S'graphite with crayon on wove paper' +p304283 +sg291132 +S'1899' +p304284 +sg291134 +S'Young Girl Standing beside a Tree' +p304285 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304286 +sa(dp304287 +g291130 +S'graphite with crayons on wove paper' +p304288 +sg291132 +S'1899' +p304289 +sg291134 +S'View of a Village' +p304290 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304291 +sa(dp304292 +g291130 +S'graphite with crayon on wove paper' +p304293 +sg291132 +S'1899' +p304294 +sg291134 +S"Two Studies of Women's Faces" +p304295 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304296 +sa(dp304297 +g291130 +S'graphite on wove paper' +p304298 +sg291132 +S'1899' +p304299 +sg291134 +S'Sketch of a Figure with His Head Resting on Hand' +p304300 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304301 +sa(dp304302 +g291130 +S'graphite with crayon on wove paper' +p304303 +sg291132 +S'1899' +p304304 +sg291134 +S'Marble Bust' +p304305 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304306 +sa(dp304307 +g291130 +S'pen and brown ink on wove paper' +p304308 +sg291132 +S'1899' +p304309 +sg291134 +S'Marble Bust' +p304310 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304311 +sa(dp304312 +g291130 +S'graphite on wove paper' +p304313 +sg291132 +S'1899' +p304314 +sg291134 +S'Boy Resting His Head' +p304315 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304316 +sa(dp304317 +g291130 +S'graphite on wove paper' +p304318 +sg291132 +S'1899' +p304319 +sg291134 +S'Study of Folded Arms' +p304320 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304321 +sa(dp304322 +g291130 +S'graphite with pen and brown ink and crayon on wove paper' +p304323 +sg291132 +S'1899' +p304324 +sg291134 +S'Two Studies of a Left Hand' +p304325 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304326 +sa(dp304327 +g291130 +S'graphite on wove paper' +p304328 +sg291132 +S'1899' +p304329 +sg291134 +S'Notations and a Study of a Left Hand' +p304330 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304331 +sa(dp304332 +g291130 +S'graphite with crayon on wove paper' +p304333 +sg291132 +S'1900' +p304334 +sg291134 +S'Two Boys Outside' +p304335 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304336 +sa(dp304337 +g291130 +S'graphite and watercolor on wove paper' +p304338 +sg291132 +S'1900' +p304339 +sg291134 +S'Young Girl Dressed in Blue seen from Behind' +p304340 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304341 +sa(dp304342 +g291130 +S'graphite with pen and brown ink on wove paper' +p304343 +sg291132 +S'1900' +p304344 +sg291134 +S'Man Walking with a Cane' +p304345 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304346 +sa(dp304347 +g291130 +S'graphite with pen and brown ink and crayon on wove paper' +p304348 +sg291132 +S'1900' +p304349 +sg291134 +S'Woman Outside, Looking in the Direction of a Young Girl' +p304350 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304351 +sa(dp304352 +g291130 +S'watercolor and graphite on wove paper' +p304353 +sg291132 +S'1900' +p304354 +sg291134 +S'Girl on a Hillside Looking toward a Town' +p304355 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304356 +sa(dp304357 +g291130 +S'graphite with pen and brown ink and crayon on wove paper' +p304358 +sg291132 +S'1900' +p304359 +sg291134 +S'Study of Nude Figures in Clouds' +p304360 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304361 +sa(dp304362 +g291130 +S'graphite with watercolor on wove paper' +p304363 +sg291132 +S'1900' +p304364 +sg291134 +S'Old Woman Knitting with a Child at Her Side' +p304365 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304366 +sa(dp304367 +g291130 +S'graphite with pen and black ink on wove paper' +p304368 +sg291132 +S'1900' +p304369 +sg291134 +S'Seated Figure Holding a Staff' +p304370 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304371 +sa(dp304372 +g291130 +S'graphite with watercolor on wove paper' +p304373 +sg291132 +S'1900' +p304374 +sg291134 +S'Man Digging' +p304375 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304376 +sa(dp304377 +g291130 +S'graphite with watercolor on wove paper' +p304378 +sg291132 +S'1900' +p304379 +sg291134 +S'Elegantly Dressed Woman on a Bench' +p304380 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304381 +sa(dp304382 +g291130 +S'graphite on wove paper' +p304383 +sg291132 +S'1900' +p304384 +sg291134 +S'Dog Resting before a Cart' +p304385 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304386 +sa(dp304387 +g291130 +S'graphite with watercolor on wove paper' +p304388 +sg291132 +S'1900' +p304389 +sg291134 +S'Man Standing before a Brick Wall' +p304390 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304391 +sa(dp304392 +g291130 +S'graphite on wove paper' +p304393 +sg291132 +S'1900' +p304394 +sg291134 +S'Man Walking in Top Hat and Long Coat' +p304395 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304396 +sa(dp304397 +g291130 +S'graphite on wove paper' +p304398 +sg291132 +S'1900' +p304399 +sg291134 +S'Unfinished Study of a Man Shoveling' +p304400 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304401 +sa(dp304402 +g291130 +S'graphite with watercolor on wove paper' +p304403 +sg291132 +S'1900' +p304404 +sg291134 +S'Soldier Aiming His Rifle' +p304405 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304406 +sa(dp304407 +g291130 +S'graphite with crayon on wove paper' +p304408 +sg291132 +S'1900' +p304409 +sg291134 +S'Soldier with a Rifle seen from Behind' +p304410 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304411 +sa(dp304412 +g291130 +S'watercolor over graphite on wove paper' +p304413 +sg291132 +S'1900' +p304414 +sg291134 +S'Riverscape with a Boy Fishing' +p304415 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304416 +sa(dp304417 +g291130 +S'graphite and crayon on wove paper' +p304418 +sg291132 +S'1900' +p304419 +sg291134 +S'Woman with Braided Hair' +p304420 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304421 +sa(dp304422 +g291130 +S'graphite with watercolor and touches of crayon on wove paper' +p304423 +sg291132 +S'1900' +p304424 +sg291134 +S'Black Swan' +p304425 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304426 +sa(dp304427 +g291130 +S'graphite on wove paper' +p304428 +sg291132 +S'1900' +p304429 +sg291134 +S'Rustic Building with a Walkway' +p304430 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304431 +sa(dp304432 +g291130 +S'graphite on wove paper' +p304433 +sg291132 +S'1900' +p304434 +sg291134 +S'Man with a Cigar in Profile to the Right' +p304435 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304436 +sa(dp304437 +g291130 +S'graphite on wove paper' +p304438 +sg291132 +S'1900' +p304439 +sg291134 +S'Man Seated at a Table seen from Behind' +p304440 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304441 +sa(dp304442 +g291130 +S'watercolor over graphite on wove paper' +p304443 +sg291132 +S'1900' +p304444 +sg291134 +S'Elegantly Dressed Woman Seated at a Table' +p304445 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304446 +sa(dp304447 +g291130 +S'graphite on wove paper' +p304448 +sg291132 +S'1900' +p304449 +sg291134 +S'Man with a Bundle under His Arm, Walking with a Cane' +p304450 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304451 +sa(dp304452 +g291130 +S'graphite on wove paper' +p304453 +sg291132 +S'1900' +p304454 +sg291134 +S'Two Studies of Feet with Drapery' +p304455 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304456 +sa(dp304457 +g291130 +S'graphite with crayon on wove paper' +p304458 +sg291132 +S'1900' +p304459 +sg291134 +S'Old Woman Crocheting' +p304460 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304461 +sa(dp304462 +g291130 +S'watercolor over graphite on wove paper' +p304463 +sg291132 +S'1900' +p304464 +sg291134 +S'Elegant Woman on a Cobblestone Walkway' +p304465 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304466 +sa(dp304467 +g291130 +S'graphite on wove paper' +p304468 +sg291132 +S'1900' +p304469 +sg291134 +S'Standing Man with His Hands in His Pockets' +p304470 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304471 +sa(dp304472 +g291130 +S'graphite on wove paper' +p304473 +sg291132 +S'1900' +p304474 +sg291134 +S'Boy with a Paper under His Arm' +p304475 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304476 +sa(dp304477 +g291130 +S'graphite with watercolor on wove paper' +p304478 +sg291132 +S'1900' +p304479 +sg291134 +S'Standing Man in a Jacket and Red Hat' +p304480 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304481 +sa(dp304482 +g291130 +S'graphite with watercolor on wove paper' +p304483 +sg291132 +S'1900' +p304484 +sg291134 +S'Two Men Conversing at a Wall' +p304485 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304486 +sa(dp304487 +g291130 +S'watercolor over graphite on wove paper' +p304488 +sg291132 +S'1900' +p304489 +sg291134 +S'Elegantly Dressed Gentleman with Top Hat and Spats' +p304490 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304491 +sa(dp304492 +g291130 +S'graphite on wove paper' +p304493 +sg291132 +S'1900' +p304494 +sg291134 +S'Man Seated at a Table, Reading a Newspaper' +p304495 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304496 +sa(dp304497 +g291130 +S'graphite with watercolor on wove paper' +p304498 +sg291132 +S'1900' +p304499 +sg291134 +S'Seated Man seen from Behind' +p304500 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304501 +sa(dp304502 +g291130 +S'watercolor over graphite on wove paper' +p304503 +sg291132 +S'1900' +p304504 +sg291134 +S'Woman with Braid seen from Behind' +p304505 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304506 +sa(dp304507 +g291130 +S'graphite with crayon on wove paper' +p304508 +sg291132 +S'1900' +p304509 +sg291134 +S'A Man and a Woman Conversing Outdoors' +p304510 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304511 +sa(dp304512 +g291130 +S'graphite on wove paper' +p304513 +sg291132 +S'1900' +p304514 +sg291134 +S"Man's Pants and Shoes" +p304515 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304516 +sa(dp304517 +g291130 +S'graphite on wove paper' +p304518 +sg291132 +S'1900' +p304519 +sg291134 +S'Man seen from Behind' +p304520 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304521 +sa(dp304522 +g291130 +S'graphite on wove paper' +p304523 +sg291132 +S'1900' +p304524 +sg291134 +S'Tree with Gnarled Roots' +p304525 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304526 +sa(dp304527 +g291130 +S'graphite on wove paper' +p304528 +sg291132 +S'1900' +p304529 +sg291134 +S'Three Ladies Seated' +p304530 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304531 +sa(dp304532 +g291130 +S'graphite on wove paper' +p304533 +sg291132 +S'1900' +p304534 +sg291134 +S'Ornate Tureen and Lampshade' +p304535 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304536 +sa(dp304537 +g291130 +S'graphite on wove paper' +p304538 +sg291132 +S'1900' +p304539 +sg291134 +S'Dish with a Spoon' +p304540 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304541 +sa(dp304542 +g291130 +S'graphite on wove paper' +p304543 +sg291132 +S'1900' +p304544 +sg291134 +S'Man Reading in a Lounge Chair' +p304545 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304546 +sa(dp304547 +g291130 +S'graphite on wove paper' +p304548 +sg291132 +S'1900' +p304549 +sg291134 +S'Seated Woman at a Table' +p304550 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304551 +sa(dp304552 +g291130 +S'graphite with pen and ink and watercolor on wove paper' +p304553 +sg291132 +S'1900' +p304554 +sg291134 +S"Portrait of the Artist's Mother Reading" +p304555 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304556 +sa(dp304557 +g291130 +S'graphite on wove paper' +p304558 +sg291132 +S'1900' +p304559 +sg291134 +S'Study of a Pair of Feet in Slippers' +p304560 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304561 +sa(dp304562 +g291130 +S'graphite with pen and black ink and crayon on wove paper' +p304563 +sg291132 +S'1900' +p304564 +sg291134 +S'Two Women Conversing at a Table' +p304565 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304566 +sa(dp304567 +g291130 +S'graphite on wove paper' +p304568 +sg291132 +S'1900' +p304569 +sg291134 +S'Dog Resting' +p304570 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304571 +sa(dp304572 +g291130 +S'graphite with pen and black ink on wove paper' +p304573 +sg291132 +S'1900' +p304574 +sg291134 +S'Two Seated Women Facing Left' +p304575 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304576 +sa(dp304577 +g291130 +S'graphite on wove paper' +p304578 +sg291132 +S'1900' +p304579 +sg291134 +S'Woman Seated at a Table' +p304580 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304581 +sa(dp304582 +g291130 +S'graphite with crayon on wove paper' +p304583 +sg291132 +S'1900' +p304584 +sg291134 +S'Man Seated on a Bench' +p304585 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304586 +sa(dp304587 +g291130 +S'graphite with crayon on wove paper' +p304588 +sg291132 +S'1900' +p304589 +sg291134 +S'Man Painting a Fence seen from Behind' +p304590 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304591 +sa(dp304592 +g291130 +S'graphite with crayon on wove paper' +p304593 +sg291132 +S'1900' +p304594 +sg291134 +S'Man Painting a Fence' +p304595 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304596 +sa(dp304597 +g291130 +S'graphite with crayon on wove paper' +p304598 +sg291132 +S'1900' +p304599 +sg291134 +S'Portrait of a Man with a Mustache' +p304600 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304601 +sa(dp304602 +g291130 +S'graphite with crayon on wove paper' +p304603 +sg291132 +S'1900' +p304604 +sg291134 +S'Four Women Seated at a Table' +p304605 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304606 +sa(dp304607 +g291130 +S'graphite with crayon on wove paper' +p304608 +sg291132 +S'1900' +p304609 +sg291134 +S'Man Looking out a Window' +p304610 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304611 +sa(dp304612 +g291130 +S'graphite on wove paper' +p304613 +sg291132 +S'1900' +p304614 +sg291134 +S'Bearded Man Smoking' +p304615 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304616 +sa(dp304617 +g291130 +S'graphite with crayon on wove paper' +p304618 +sg291132 +S'1900' +p304619 +sg291134 +S'Man Holding a Cane, Seated at a Bar' +p304620 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304621 +sa(dp304622 +g291130 +S'graphite with crayon on wove paper' +p304623 +sg291132 +S'1900' +p304624 +sg291134 +S'Two Women Seated at a Table' +p304625 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304626 +sa(dp304627 +g291130 +S'graphite on wove paper' +p304628 +sg291132 +S'1900' +p304629 +sg291134 +S'Portrait of a Man Smoking' +p304630 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304631 +sa(dp304632 +g291130 +S'graphite with crayon on wove paper' +p304633 +sg291132 +S'1900' +p304634 +sg291134 +S'Study of Gertrud Hirsenmann' +p304635 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304636 +sa(dp304637 +g291130 +S'graphite with crayon on wove paper' +p304638 +sg291132 +S'1900' +p304639 +sg291134 +S'Woman at a Table Drinking Tea' +p304640 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304641 +sa(dp304642 +g291130 +S'graphite on wove paper' +p304643 +sg291132 +S'1900' +p304644 +sg291134 +S'Seated Man Reading a Paper' +p304645 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304646 +sa(dp304647 +g291130 +S'graphite with touches of crayon on wove paper' +p304648 +sg291132 +S'1900' +p304649 +sg291134 +S'Woman Seated at a Table' +p304650 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304651 +sa(dp304652 +g291130 +S'graphite with crayon on wove paper' +p304653 +sg291132 +S'1900' +p304654 +sg291134 +S'Man Playing Cards' +p304655 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304656 +sa(dp304657 +g291130 +S'graphite on wove paper' +p304658 +sg291132 +S'1900' +p304659 +sg291134 +S'Man Playing Cards' +p304660 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304661 +sa(dp304662 +g291130 +S'graphite on wove paper' +p304663 +sg291132 +S'1900' +p304664 +sg291134 +S'Man Reclining on a Bench' +p304665 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304666 +sa(dp304667 +g291130 +S'graphite on wove paper' +p304668 +sg291132 +S'1900' +p304669 +sg291134 +S'Man Seated at a Table seen from Behind' +p304670 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304671 +sa(dp304672 +g291130 +S'graphite on wove paper' +p304673 +sg291132 +S'1900' +p304674 +sg291134 +S'Man with His Briefcase Seated at a Table' +p304675 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304676 +sa(dp304677 +g291130 +S'graphite on wove paper' +p304678 +sg291132 +S'1900' +p304679 +sg291134 +S'Two Men Conversing' +p304680 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304681 +sa(dp304682 +g291130 +S'graphite on wove paper' +p304683 +sg291132 +S'1900' +p304684 +sg291134 +S'Bearded Man in Profile to the Left' +p304685 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304686 +sa(dp304687 +g291130 +S'graphite on wove paper' +p304688 +sg291132 +S'1900' +p304689 +sg291134 +S'Man Seated' +p304690 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304691 +sa(dp304692 +g291130 +S'graphite on wove paper' +p304693 +sg291132 +S'1900' +p304694 +sg291134 +S"Study of a Woman's Hand with Rings" +p304695 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304696 +sa(dp304697 +g291130 +S'graphite on wove paper' +p304698 +sg291132 +S'1900' +p304699 +sg291134 +S'Man in a Dresden Restaurant, Smoking' +p304700 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304701 +sa(dp304702 +g291130 +S'graphite on wove paper' +p304703 +sg291132 +S'1900' +p304704 +sg291134 +S'Man in Profile to the Left' +p304705 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304706 +sa(dp304707 +g291130 +S'graphite with crayon on wove paper' +p304708 +sg291132 +S'1900' +p304709 +sg291134 +S'Man Wearing a Hat in Profile to the Left' +p304710 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304711 +sa(dp304712 +g291130 +S'graphite on wove paper' +p304713 +sg291132 +S'1900' +p304714 +sg291134 +S'Man Wearing a Hat Seated at a Table' +p304715 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304716 +sa(dp304717 +g291130 +S'graphite on wove paper' +p304718 +sg291132 +S'1900' +p304719 +sg291134 +S'Woman on a Bench Holding a Folded Umbrella' +p304720 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304721 +sa(dp304722 +g291130 +S'graphite on wove paper' +p304723 +sg291132 +S'1900' +p304724 +sg291134 +S'Man Seated at the End of a Bench, Reading' +p304725 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304726 +sa(dp304727 +g291130 +S'graphite with crayon on wove paper' +p304728 +sg291132 +S'1900' +p304729 +sg291134 +S'Woman in a Hat with Netting' +p304730 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304731 +sa(dp304732 +g291130 +S'graphite on wove paper' +p304733 +sg291132 +S'1900' +p304734 +sg291134 +S'Man at a Table Smoking' +p304735 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304736 +sa(dp304737 +g291130 +S'graphite on wove paper' +p304738 +sg291132 +S'1900' +p304739 +sg291134 +S'Candle Burning' +p304740 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304741 +sa(dp304742 +g291130 +S'graphite on wove paper' +p304743 +sg291132 +S'1900' +p304744 +sg291134 +S'Two Figures Facing Each Other (Finis)' +p304745 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304746 +sa(dp304747 +g291130 +S'sketchbook with 32 sketches in graphite on pink, cream, green, and blue laid paper' +p304748 +sg291132 +S'unknown date\n' +p304749 +sg291134 +S'Beckmann Sketchbook' +p304750 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304751 +sa(dp304752 +g291130 +S'graphite and purple pencil notations on pink laid paper' +p304753 +sg291132 +S'unknown date\n' +p304754 +sg291134 +S'L\xc3\xb6wenstudie, Notizen (Lion, Notation) [p. 1]' +p304755 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304756 +sa(dp304757 +g291130 +S'graphite on cream laid paper' +p304758 +sg291132 +S'unknown date\n' +p304759 +sg291134 +S'Liegender L\xc3\xb6we (Lion Reclining) [p. 3]' +p304760 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304761 +sa(dp304762 +g291130 +S'graphite on cream laid paper' +p304763 +sg291132 +S'unknown date\n' +p304764 +sg291134 +S'Begonnene Tierstudie (Unfinished Animal Study) [p. 5]' +p304765 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304766 +sa(dp304767 +g291130 +S'graphite on cream laid paper' +p304768 +sg291132 +S'unknown date\n' +p304769 +sg291134 +S'Fressender L\xc3\xb6we (Lion Eating) [p. 6]' +p304770 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304771 +sa(dp304772 +g291130 +S'graphite on green laid paper' +p304773 +sg291132 +S'unknown date\n' +p304774 +sg291134 +S'L\xc3\xb6wenkopf im Profil (Lion Profile) [p. 7]' +p304775 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304776 +sa(dp304777 +g291130 +S'graphite on green laid paper' +p304778 +sg291132 +S'unknown date\n' +p304779 +sg291134 +S'L\xc3\xb6wenkopf im Profil (Double Lion Profile) [p. 8]' +p304780 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304781 +sa(dp304782 +g291130 +S'graphite on green laid paper' +p304783 +sg291132 +S'unknown date\n' +p304784 +sg291134 +S'Sich aufrichtender L\xc3\xb6we (Lion Top View) [p. 9]' +p304785 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304786 +sa(dp304787 +g291130 +S'graphite on green laid paper' +p304788 +sg291132 +S'unknown date\n' +p304789 +sg291134 +S'Stehender L\xc3\xb6we (Lion Standing) [p. 10]' +p304790 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304791 +sa(dp304792 +g291130 +S'graphite on cream laid paper' +p304793 +sg291132 +S'unknown date\n' +p304794 +sg291134 +S'Begonnener L\xc3\xb6wenkopf (Sketch of Lion Face) [p. 11]' +p304795 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304796 +sa(dp304797 +g291130 +S'graphite on cream laid paper' +p304798 +sg291132 +S'unknown date\n' +p304799 +sg291134 +S'L\xc3\xb6we mit aufgerissenem Maul (Lion Baring Teeth) [p. 12]' +p304800 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304801 +sa(dp304802 +g291130 +S'graphite on cream laid paper' +p304803 +sg291132 +S'unknown date\n' +p304804 +sg291134 +S'L\xc3\xb6wenbeine (Lion Legs) [p. 13]' +p304805 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304806 +sa(dp304807 +g291130 +S'graphite on cream laid paper' +p304808 +sg291132 +S'unknown date\n' +p304809 +sg291134 +S'Stehender L\xc3\xb6we (Lion Standing) [p. 14]' +p304810 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304811 +sa(dp304812 +g291130 +S'graphite on pink laid paper' +p304813 +sg291132 +S'unknown date\n' +p304814 +sg291134 +S'Nilpferdkopf mit ge\xc3\xb6ffnetem Maul (Hippo with Open Mouth) [p. 15]' +p304815 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304816 +sa(dp304817 +g291130 +S'graphite on pink laid paper' +p304818 +sg291132 +S'unknown date\n' +p304819 +sg291134 +S'Nilpferdkopf (Hippo Head) [p. 16]' +p304820 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304821 +sa(dp304822 +g291130 +S'graphite on cream laid paper' +p304823 +sg291132 +S'unknown date\n' +p304824 +sg291134 +S'Nilpferdkopf im Profil (Hippo Head in Profile) [p. 17]' +p304825 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304826 +sa(dp304827 +g291130 +S'graphite on blue laid paper' +p304828 +sg291132 +S'unknown date\n' +p304829 +sg291134 +S'Nilpferdkopf im Profil (Hippo Head) [p. 19]' +p304830 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304831 +sa(dp304832 +g291130 +S'graphite on blue laid paper' +p304833 +sg291132 +S'unknown date\n' +p304834 +sg291134 +S'Zwei K\xc3\xb6pfe, Zuschauer (Two Spectators) [p. 20]' +p304835 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304836 +sa(dp304837 +g291130 +S'graphite on pink laid paper' +p304838 +sg291132 +S'unknown date\n' +p304839 +sg291134 +S'Skizze (Sketch) [p. 21]' +p304840 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304841 +sa(dp304842 +g291130 +S'graphite on pink laid paper' +p304843 +sg291132 +S'unknown date\n' +p304844 +sg291134 +S'Fressender L\xc3\xb6we (Lion Eating) [p. 22]' +p304845 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304846 +sa(dp304847 +g291130 +S'graphite on cream laid paper' +p304848 +sg291132 +S'unknown date\n' +p304849 +sg291134 +S'Zuschauer (Spectators) [p. 23]' +p304850 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304851 +sa(dp304852 +g291130 +S'graphite on cream laid paper' +p304853 +sg291132 +S'unknown date\n' +p304854 +sg291134 +S'Nilpferd in R\xc3\xbcckenansicht (Hippo from behind) [p. 24]' +p304855 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304856 +sa(dp304857 +g291130 +S'graphite on green laid paper' +p304858 +sg291132 +S'unknown date\n' +p304859 +sg291134 +S'Fressender L\xc3\xb6we (Lion Eating) [p. 25]' +p304860 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304861 +sa(dp304862 +g291130 +S'graphite on green laid paper' +p304863 +sg291132 +S'unknown date\n' +p304864 +sg291134 +S'Nilpferd, halb unter Wasser (Hippo Partially Submerged) [p. 26]' +p304865 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304866 +sa(dp304867 +g291130 +S'graphite on pink laid paper' +p304868 +sg291132 +S'unknown date\n' +p304869 +sg291134 +S'Nilpferdkopf mit ge\xc3\xb6ffnetem Maul (Hippo Mouth Open) [p. 27]' +p304870 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304871 +sa(dp304872 +g291130 +S'graphite on pink laid paper' +p304873 +sg291132 +S'unknown date\n' +p304874 +sg291134 +S'Akrobatin (Acrobat) [p. 28]' +p304875 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304876 +sa(dp304877 +g291130 +S'graphite on green laid paper' +p304878 +sg291132 +S'unknown date\n' +p304879 +sg291134 +S'Drei hagere Akte (Three Nude Figures) [p. 29]' +p304880 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304881 +sa(dp304882 +g291130 +S'graphite on green laid paper' +p304883 +sg291132 +S'unknown date\n' +p304884 +sg291134 +S'Akrobatin auf Seil (Acrobat on Tight Rope) [p. 30]' +p304885 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304886 +sa(dp304887 +g291130 +S'graphite on pink laid paper' +p304888 +sg291132 +S'unknown date\n' +p304889 +sg291134 +S'L\xc3\xb6we mit aufgerissenem Maul (Lion Mouth Open) [p. 31]' +p304890 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304891 +sa(dp304892 +g291130 +S'graphite on cream laid paper' +p304893 +sg291132 +S'unknown date\n' +p304894 +sg291134 +S'L\xc3\xb6wenkopf im Profil (Lion Profile) [p. 33]' +p304895 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304896 +sa(dp304897 +g291130 +S'graphite on cream laid paper' +p304898 +sg291132 +S'unknown date\n' +p304899 +sg291134 +S"M\xc3\xa4nnliches Gesicht (Man's Face) [p. 34]" +p304900 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304901 +sa(dp304902 +g291130 +S'graphite on blue laid paper' +p304903 +sg291132 +S'unknown date\n' +p304904 +sg291134 +S'Begonnene L\xc3\xb6wenstudie (Partial Lion) [p. 35]' +p304905 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304906 +sa(dp304907 +g291130 +S'graphite on cream laid paper' +p304908 +sg291132 +S'unknown date\n' +p304909 +sg291134 +S'Antiker Krieger mit Helm (Antique Warrior with Helmet) [p. 38]' +p304910 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304911 +sa(dp304912 +g291130 +S'volume with 27 hand-colored lithographs' +p304913 +sg291132 +S'executed 1941/1942; published 1943' +p304914 +sg291134 +S'The Apocalypse (Apokalypse)' +p304915 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304916 +sa(dp304917 +g291130 +S'1 vol: ill: 139 graphite drawings on the blank interleaves of a 1925 Bremer Presse (Munich) edition of Goethe\'s "Faust" (Zweite Teil)' +p304918 +sg291132 +S'in or after 1925' +p304919 +sg291134 +S'Sketches Illustrating Faust' +p304920 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304921 +sa(dp304922 +g291130 +S'lithograph in black' +p304923 +sg291132 +S'1946' +p304924 +sg291134 +S'Self-Portrait' +p304925 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304926 +sa(dp304927 +g291130 +S'portfolio w/ 15 lithographs plus 1 lithograph (Still Life with Globe) on wrapper; title page, table of contents, & colophon on folded single sheet' +p304928 +sg291132 +S'published 1946' +p304929 +sg291134 +S'Day and Dream (Tag und Traum)' +p304930 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304931 +sa(dp304932 +g291130 +S'lithograph in black' +p304933 +sg291132 +S'1946' +p304934 +sg291134 +S'Weather Vane (Wetterfahne)' +p304935 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304936 +sa(dp304937 +g291130 +S'lithograph in black' +p304938 +sg291132 +S'1946' +p304939 +sg291134 +S'Sleeping Athlete (Schlafender Athlet)' +p304940 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304941 +sa(dp304942 +g291130 +S'lithograph in black' +p304943 +sg291132 +S'1946' +p304944 +sg291134 +S'Tango' +p304945 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304946 +sa(dp304947 +g291130 +S'lithograph in black' +p304948 +sg291132 +S'1946' +p304949 +sg291134 +S'Crawling Woman (Kriechende Frau)' +p304950 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304951 +sa(dp304952 +g291130 +S'lithograph in black' +p304953 +sg291132 +S'1946' +p304954 +sg291134 +S"I don't want to eat my Soup (Ich esse meine Suppe nicht)" +p304955 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304956 +sa(dp304957 +g291130 +S'lithograph in black' +p304958 +sg291132 +S'1946' +p304959 +sg291134 +S'Dancing Couple (Tanzpaar)' +p304960 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304961 +sa(dp304962 +g291130 +S'lithograph in black' +p304963 +sg291132 +S'1946' +p304964 +sg291134 +S'King and Demagogue (K\xc3\xb6nig und Demagoge)' +p304965 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304966 +sa(dp304967 +g291130 +S'lithograph in black' +p304968 +sg291132 +S'1946' +p304969 +sg291134 +S'The Buck (Der Bock)' +p304970 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304971 +sa(dp304972 +g291130 +S'lithograph in black' +p304973 +sg291132 +S'1946' +p304974 +sg291134 +S'Dream of War (Der Traum vom Krieg)' +p304975 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304976 +sa(dp304977 +g291130 +S'lithograph in black' +p304978 +sg291132 +S'1946' +p304979 +sg291134 +S'Morning (Der Morgen)' +p304980 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304981 +sa(dp304982 +g291130 +S'lithograph in black' +p304983 +sg291132 +S'1946' +p304984 +sg291134 +S'Circus (Zirkus)' +p304985 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304986 +sa(dp304987 +g291130 +S'lithograph in black' +p304988 +sg291132 +S'1946' +p304989 +sg291134 +S'Magic Mirror (Zauberspiegel)' +p304990 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304991 +sa(dp304992 +g291130 +S'lithograph in black' +p304993 +sg291132 +S'1946' +p304994 +sg291134 +S'The Fall of Man (S\xc3\xbcdenfall)' +p304995 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p304996 +sa(dp304997 +g291130 +S'lithograph in black' +p304998 +sg291132 +S'1946' +p304999 +sg291134 +S'Christ and Pilate (Christus und Pilatus)' +p305000 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p305001 +sa(dp305002 +g291130 +S'(author)' +p305003 +sg291132 +S'\n' +p305004 +sg291134 +S'Stadtnacht (City Night)' +p305005 +sg291136 +g27 +sg291137 +S'Artist Information (' +p305006 +sa(dp305007 +g291130 +S'(author)' +p305008 +sg291132 +S'\n' +p305009 +sg291134 +S'Die F\xc3\xbcrstin' +p305010 +sg291136 +g27 +sg291137 +S'Artist Information (' +p305011 +sa(dp305012 +g291130 +S'drypoint in brown on laid paper' +p305013 +sg291132 +S'unknown date\n' +p305014 +sg291134 +S'Two Poplars on a Hilltop' +p305015 +sg291136 +g27 +sg291137 +S'Charles Winston Haberer' +p305016 +sa(dp305017 +g291134 +S'A Member of the Fr\xc3\xb6schl Family' +p305018 +sg291137 +S'Hans Mielich' +p305019 +sg291130 +S'oil on panel' +p305020 +sg291132 +S'c. 1539/1540' +p305021 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00004/a00004d3.jpg' +p305022 +sg291136 +S"Hans Mielich was the leading painter in Bavaria in the mid-sixteenth century.\nHis art was greatly influenced by Albrecht Altdorfer with whom he worked in Regensburg\nfrom about 1536 to 1538. After a trip to Rome in 1542, Mielich settled in his native\nMunich, becoming court painter to Albrecht V, the Duke of Bavaria.\n This sitter's identification with the Fröchl family derives from the presence of\ntheir coat-of-arms painted on the reverse of the panel. The man might Jakob Fröschl\nof Wasserburg. A grain merchant and city councilor in Wasserburg, he married in\n1539, and thus this may be his wedding portrait.\n The sitter's large scale, dignified bearing, and richly decorated padded black jacket\nall suggest someone of great power and importance. In the background, visible through\nthe wood-trimmed window, is a landscape with trees, a house, and a man and a horse\nplowing. Clearly, the man was a substantial landowner as well.\n Beyond its representational fascination, the portrait is a wonderful study in the\nabstract interplay of pattern, form, and outline. The massive, simple expanse of\nthe black jacket contrasts with the intricately marbleized decor of the wall which,\nin turn, mimics the irregular configurations of the trees.\n " +p305023 +sa(dp305024 +g291134 +S"Comedy and Tragedy: 'Sic Vita'" +p305025 +sg291137 +S'Sir Alfred Gilbert' +p305026 +sg291130 +S'bronze' +p305027 +sg291132 +S'model 1891-1892, cast probably 1902/1905' +p305028 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a0002441.jpg' +p305029 +sg291136 +g27 +sa(dp305030 +g291134 +S'Mountain Landscape with a Hollow' +p305031 +sg291137 +S'Alexander Cozens' +p305032 +sg291130 +S'pen and brown ink with brown wash on laid paper' +p305033 +sg291132 +S'c. 1770' +p305034 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a000242b.jpg' +p305035 +sg291136 +g27 +sa(dp305036 +g291134 +S'An Elderly Woman in a Striped Shawl' +p305037 +sg291137 +S'Giuseppe Nogari' +p305038 +sg291130 +S'pastel on two attached sheets' +p305039 +sg291132 +S'c. 1743' +p305040 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a000260f.jpg' +p305041 +sg291136 +g27 +sa(dp305042 +g291134 +S'A Lake in the Tyrol (Un lac du Tyrol)' +p305043 +sg291137 +S'Jean-Baptiste-Camille Corot' +p305044 +sg291130 +S'etching in red-brown on wove paper' +p305045 +sg291132 +S'1863' +p305046 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00098/a000981d.jpg' +p305047 +sg291136 +g27 +sa(dp305048 +g291134 +S'Studies of Legs and Drapery [recto]' +p305049 +sg291137 +S'Abraham Bloemaert' +p305050 +sg291130 +S'red chalk heightened with white' +p305051 +sg291132 +S'unknown date\n' +p305052 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a0007168.jpg' +p305053 +sg291136 +g27 +sa(dp305054 +g291134 +S'Studies of Hands and Bending Figures [verso]' +p305055 +sg291137 +S'Abraham Bloemaert' +p305056 +sg291130 +S'red chalk heightened with white' +p305057 +sg291132 +S'unknown date\n' +p305058 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a0007139.jpg' +p305059 +sg291136 +g27 +sa(dp305060 +g291130 +S'(author)' +p305061 +sg291132 +S'\n' +p305062 +sg291134 +S'Oeuvres de Moliere (volume I)' +p305063 +sg291136 +g27 +sg291137 +S'Artist Information (' +p305064 +sa(dp305065 +g291130 +S'(artist after)' +p305066 +sg291132 +S'\n' +p305067 +sg291134 +S'Moliere' +p305068 +sg291136 +g27 +sg291137 +S'Artist Information (' +p305069 +sa(dp305070 +g291130 +S'(author)' +p305071 +sg291132 +S'\n' +p305072 +sg291134 +S'Oeuvres de Moliere (volume II)' +p305073 +sg291136 +g27 +sg291137 +S'Artist Information (' +p305074 +sa(dp305075 +g291130 +S'(author)' +p305076 +sg291132 +S'\n' +p305077 +sg291134 +S'Oeuvres de Moliere (volume III)' +p305078 +sg291136 +g27 +sg291137 +S'Artist Information (' +p305079 +sa(dp305080 +g291130 +S'(author)' +p305081 +sg291132 +S'\n' +p305082 +sg291134 +S'Oeuvres de Moliere (volume IV)' +p305083 +sg291136 +g27 +sg291137 +S'Artist Information (' +p305084 +sa(dp305085 +g291130 +S'(author)' +p305086 +sg291132 +S'\n' +p305087 +sg291134 +S'Oeuvres de Moliere (volume V)' +p305088 +sg291136 +g27 +sg291137 +S'Artist Information (' +p305089 +sa(dp305090 +g291130 +S'(author)' +p305091 +sg291132 +S'\n' +p305092 +sg291134 +S'Oeuvres de Moliere (volume VI)' +p305093 +sg291136 +g27 +sg291137 +S'Artist Information (' +p305094 +sa(dp305095 +g291130 +S'bronze' +p305096 +sg291132 +S'unknown date\n' +p305097 +sg291134 +S'Temperance' +p305098 +sg291136 +g27 +sg291137 +S'Peter Fl\xc3\xb6tner' +p305099 +sa(dp305100 +g291130 +S'bronze' +p305101 +sg291132 +S'unknown date\n' +p305102 +sg291134 +S'Cacus Stealing the Oxen of Hercules' +p305103 +sg291136 +g27 +sg291137 +S'Moderno' +p305104 +sa(dp305105 +g291134 +S'Altar with a Female Bust' +p305106 +sg291137 +S'Andrea Briosco, called Riccio' +p305107 +sg291130 +S'bronze' +p305108 +sg291132 +S'unknown date\n' +p305109 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dd2.jpg' +p305110 +sg291136 +g27 +sa(dp305111 +g291134 +S'Peter and John at the Gate of the Temple' +p305112 +sg291137 +S'Artist Information (' +p305113 +sg291130 +S'(artist after)' +p305114 +sg291132 +S'\n' +p305115 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c853.jpg' +p305116 +sg291136 +g27 +sa(dp305117 +g291134 +S'The Look of Amber' +p305118 +sg291137 +S'Yves Tanguy' +p305119 +sg291130 +S'oil on canvas' +p305120 +sg291132 +S'1929' +p305121 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ee8.jpg' +p305122 +sg291136 +g27 +sa(dp305123 +g291134 +S'Urania' +p305124 +sg291137 +S'Hendrick Goltzius' +p305125 +sg291130 +S', unknown date' +p305126 +sg291132 +S'\n' +p305127 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d83.jpg' +p305128 +sg291136 +g27 +sa(dp305129 +g291134 +S'The Roman Courtesan (The Revenge of the Magician Virgil)' +p305130 +sg291137 +S'Albrecht Altdorfer' +p305131 +sg291130 +S'engraving' +p305132 +sg291132 +S'c. 1520/1526' +p305133 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a786.jpg' +p305134 +sg291136 +g27 +sa(dp305135 +g291134 +S'Trees Reflected in a Brook' +p305136 +sg291137 +S'Claude-Joseph Vernet' +p305137 +sg291130 +S'pen and brown ink' +p305138 +sg291132 +S'unknown date\n' +p305139 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a000538e.jpg' +p305140 +sg291136 +g27 +sa(dp305141 +g291134 +S'Aeneas Saving His Father from Troy' +p305142 +sg291137 +S'Artist Information (' +p305143 +sg291130 +S'(artist after)' +p305144 +sg291132 +S'\n' +p305145 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2d6.jpg' +p305146 +sg291136 +g27 +sa(dp305147 +g291134 +S'La Confidence' +p305148 +sg291137 +S'Artist Information (' +p305149 +sg291130 +S'(artist after)' +p305150 +sg291132 +S'\n' +p305151 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00096/a0009650.jpg' +p305152 +sg291136 +g27 +sa(dp305153 +g291130 +S'(artist)' +p305154 +sg291132 +S'\n' +p305155 +sg291134 +S'Lion Hunt' +p305156 +sg291136 +g27 +sg291137 +S'Artist Information (' +p305157 +sa(dp305158 +g291134 +S'The Holy Family with Saint John the Baptist' +p305159 +sg291137 +S'Annibale Carracci' +p305160 +sg291130 +S'etching and engraving' +p305161 +sg291132 +S'1590' +p305162 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8cf.jpg' +p305163 +sg291136 +g27 +sa(dp305164 +g291130 +S'(artist after)' +p305165 +sg291132 +S'\n' +p305166 +sg291134 +S'Monument to the Glory of Heroes' +p305167 +sg291136 +g27 +sg291137 +S'Artist Information (' +p305168 +sa(dp305169 +g291134 +S'The Finding of Moses' +p305170 +sg291137 +S'Artist Information (' +p305171 +sg291130 +S'(artist after)' +p305172 +sg291132 +S'\n' +p305173 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc4e.jpg' +p305174 +sg291136 +g27 +sa(dp305175 +g291134 +S'David and Abigail' +p305176 +sg291137 +S'Artist Information (' +p305177 +sg291130 +S'(artist after)' +p305178 +sg291132 +S'\n' +p305179 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc4f.jpg' +p305180 +sg291136 +g27 +sa(dp305181 +g291134 +S'Rebecca at the Well' +p305182 +sg291137 +S'Artist Information (' +p305183 +sg291130 +S'(artist after)' +p305184 +sg291132 +S'\n' +p305185 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc50.jpg' +p305186 +sg291136 +g27 +sa(dp305187 +g291134 +S'Moses Striking a Shepherd' +p305188 +sg291137 +S'Artist Information (' +p305189 +sg291130 +S'(artist after)' +p305190 +sg291132 +S'\n' +p305191 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc51.jpg' +p305192 +sg291136 +g27 +sa(dp305193 +g291134 +S'Abraham Kneeling before the Three Angels' +p305194 +sg291137 +S'Artist Information (' +p305195 +sg291130 +S'(artist after)' +p305196 +sg291132 +S'\n' +p305197 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc52.jpg' +p305198 +sg291136 +g27 +sa(dp305199 +g291134 +S"Jacob's Ladder" +p305200 +sg291137 +S'Artist Information (' +p305201 +sg291130 +S'(artist after)' +p305202 +sg291132 +S'\n' +p305203 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc53.jpg' +p305204 +sg291136 +g27 +sa(dp305205 +g291134 +S'Moses and the Burning Bush' +p305206 +sg291137 +S'Artist Information (' +p305207 +sg291130 +S'(artist after)' +p305208 +sg291132 +S'\n' +p305209 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc58.jpg' +p305210 +sg291136 +g27 +sa(dp305211 +g291134 +S'Jephthah and His Daughter' +p305212 +sg291137 +S'Artist Information (' +p305213 +sg291130 +S'(artist after)' +p305214 +sg291132 +S'\n' +p305215 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc57.jpg' +p305216 +sg291136 +g27 +sa(dp305217 +g291134 +S'Abraham Dismissing Hagar' +p305218 +sg291137 +S'Artist Information (' +p305219 +sg291130 +S'(artist after)' +p305220 +sg291132 +S'\n' +p305221 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc56.jpg' +p305222 +sg291136 +g27 +sa(dp305223 +g291134 +S'Joseph and His Brothers' +p305224 +sg291137 +S'Artist Information (' +p305225 +sg291130 +S'(artist after)' +p305226 +sg291132 +S'\n' +p305227 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc55.jpg' +p305228 +sg291136 +g27 +sa(dp305229 +g291134 +S'The Blind Tobias' +p305230 +sg291137 +S'Artist Information (' +p305231 +sg291130 +S'(artist after)' +p305232 +sg291132 +S'\n' +p305233 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc54.jpg' +p305234 +sg291136 +g27 +sa(dp305235 +g291134 +S"Jean d'Aire" +p305236 +sg291137 +S'Auguste Rodin' +p305237 +sg291130 +S'plaster' +p305238 +sg291132 +S'model 1884-1889, cast probably early 20th century' +p305239 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00029/a00029c5.jpg' +p305240 +sg291136 +g27 +sa(dp305241 +g291130 +S'oil on canvas' +p305242 +sg291132 +S'1970' +p305243 +sg291134 +S'Portrait of the Doyles' +p305244 +sg291136 +g27 +sg291137 +S'Jack Beal' +p305245 +sa(dp305246 +g291134 +S'Saint Michael with Lucifer' +p305247 +sg291137 +S'Giuseppe Porta' +p305248 +sg291130 +S'pen and brown ink with brown wash over black chalk' +p305249 +sg291132 +S'c. 1556/1560' +p305250 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a000757a.jpg' +p305251 +sg291136 +g27 +sa(dp305252 +g291134 +S'Stage Design' +p305253 +sg291137 +S'Mauro Antonio Tesi' +p305254 +sg291130 +S'pen and brown ink with brown wash over graphite' +p305255 +sg291132 +S'c. 1755' +p305256 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a000285a.jpg' +p305257 +sg291136 +g27 +sa(dp305258 +g291130 +S'(author)' +p305259 +sg291132 +S'\n' +p305260 +sg291134 +S'Templum Vaticanum' +p305261 +sg291136 +g27 +sg291137 +S'Artist Information (' +p305262 +sa(dp305263 +g291134 +S'The Adoration of the Shepherds' +p305264 +sg291137 +S'Hendrick Goltzius' +p305265 +sg291130 +S', 1594' +p305266 +sg291132 +S'\n' +p305267 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d068.jpg' +p305268 +sg291136 +g27 +sa(dp305269 +g291134 +S'The Merry Shoemaker' +p305270 +sg291137 +S'Cornelis Dusart' +p305271 +sg291130 +S'etching' +p305272 +sg291132 +S'1695' +p305273 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4f6.jpg' +p305274 +sg291136 +g27 +sa(dp305275 +g291134 +S'The Dog' +p305276 +sg291137 +S'Odilon Redon' +p305277 +sg291130 +S'lithograph in brown and black' +p305278 +sg291132 +S'1896' +p305279 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009c/a0009c9b.jpg' +p305280 +sg291136 +g27 +sa(dp305281 +g291134 +S'Diana Surprised by Actaeon' +p305282 +sg291137 +S'Artist Information (' +p305283 +sg291130 +S'(artist after)' +p305284 +sg291132 +S'\n' +p305285 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d078.jpg' +p305286 +sg291136 +g27 +sa(dp305287 +g291134 +S'The Mother' +p305288 +sg291137 +S'Cornelis Bega' +p305289 +sg291130 +S'etching' +p305290 +sg291132 +S'unknown date\n' +p305291 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d091.jpg' +p305292 +sg291136 +g27 +sa(dp305293 +g291134 +S'Crepuscule poetique (Poetical Twilight)' +p305294 +sg291137 +S'Charles \xc3\x89mile Jacque' +p305295 +sg291130 +S'lithograph in black and blue' +p305296 +sg291132 +S'unknown date\n' +p305297 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009af9.jpg' +p305298 +sg291136 +g27 +sa(dp305299 +g291130 +S'(author)' +p305300 +sg291132 +S'\n' +p305301 +sg291134 +S'The Georgicks of Virgil [translated and annotated by John Martyn]' +p305302 +sg291136 +g27 +sg291137 +S'Artist Information (' +p305303 +sa(dp305304 +g291130 +S'(author)' +p305305 +sg291132 +S'\n' +p305306 +sg291134 +S'The Bucolicks of Virgil [translated and annotated by John Martyn]' +p305307 +sg291136 +g27 +sg291137 +S'Artist Information (' +p305308 +sa(dp305309 +g291130 +S'British, 1745 - 1820' +p305310 +sg291132 +S'(author)' +p305311 +sg291134 +S'The Life of George Romney, Esq.' +p305312 +sg291136 +g27 +sg291137 +S'Artist Information (' +p305313 +sa(dp305314 +g291130 +S'(author)' +p305315 +sg291132 +S'\n' +p305316 +sg291134 +S"The Courtin'" +p305317 +sg291136 +g27 +sg291137 +S'Artist Information (' +p305318 +sa(dp305319 +g291134 +S'Young Woman with Donkeys Riding under a Natural Bridge' +p305320 +sg291137 +S'Hubert Robert' +p305321 +sg291130 +S'red chalk counterproof' +p305322 +sg291132 +S'unknown date\n' +p305323 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a0007155.jpg' +p305324 +sg291136 +g27 +sa(dp305325 +g291134 +S'Village Fair' +p305326 +sg291137 +S'Artist Information (' +p305327 +sg291130 +S'(artist after)' +p305328 +sg291132 +S'\n' +p305329 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00096/a00096b6.jpg' +p305330 +sg291136 +g27 +sa(dp305331 +g291134 +S'Head of a Faun' +p305332 +sg291137 +S'Artist Information (' +p305333 +sg291130 +S'(artist after)' +p305334 +sg291132 +S'\n' +p305335 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e66.jpg' +p305336 +sg291136 +g27 +sa(dp305337 +g291134 +S'T\xc3\xaate \xc3\xa0 T\xc3\xaate (La baigneuse surprise)' +p305338 +sg291137 +S'Artist Information (' +p305339 +sg291130 +S'(artist after)' +p305340 +sg291132 +S'\n' +p305341 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00096/a00096dc.jpg' +p305342 +sg291136 +g27 +sa(dp305343 +g291134 +S'Triton and Nymph' +p305344 +sg291137 +S'Artist Information (' +p305345 +sg291130 +S'(artist after)' +p305346 +sg291132 +S'\n' +p305347 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d10.jpg' +p305348 +sg291136 +g27 +sa(dp305349 +g291134 +S'Faith and Charity' +p305350 +sg291137 +S'Artist Information (' +p305351 +sg291130 +S'(artist after)' +p305352 +sg291132 +S'\n' +p305353 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f8f.jpg' +p305354 +sg291136 +g27 +sa(dp305355 +g291134 +S'Two Tritons and a Swan' +p305356 +sg291137 +S'Artist Information (' +p305357 +sg291130 +S'(artist after)' +p305358 +sg291132 +S'\n' +p305359 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cc9.jpg' +p305360 +sg291136 +g27 +sa(dp305361 +g291134 +S'Satyr, Nymph and River God' +p305362 +sg291137 +S'Artist Information (' +p305363 +sg291130 +S'(artist after)' +p305364 +sg291132 +S'\n' +p305365 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cca.jpg' +p305366 +sg291136 +g27 +sa(dp305367 +g291134 +S'Veue de quelques Grottes solitaires de la Thebaide' +p305368 +sg291137 +S'Artist Information (' +p305369 +sg291130 +S'(artist after)' +p305370 +sg291132 +S'\n' +p305371 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008ce9.jpg' +p305372 +sg291136 +g27 +sa(dp305373 +g291134 +S"Veue des ruines d'une Tour qu'on dit avoir ete batie par les Romains" +p305374 +sg291137 +S'Artist Information (' +p305375 +sg291130 +S'(artist after)' +p305376 +sg291132 +S'\n' +p305377 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008ce8.jpg' +p305378 +sg291136 +g27 +sa(dp305379 +g291134 +S'Francois Boucher' +p305380 +sg291137 +S'Artist Information (' +p305381 +sg291130 +S'(artist after)' +p305382 +sg291132 +S'\n' +p305383 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cea.jpg' +p305384 +sg291136 +g27 +sa(dp305385 +g291130 +S'pen and black ink on wove paper' +p305386 +sg291132 +S'1970' +p305387 +sg291134 +S'View of Stockholm' +p305388 +sg291136 +g27 +sg291137 +S'Hereward Lester Cooke' +p305389 +sa(dp305390 +g291134 +S'Maria Serre, Mater Hyacinth Rigaud' +p305391 +sg291137 +S'Artist Information (' +p305392 +sg291130 +S'(artist after)' +p305393 +sg291132 +S'\n' +p305394 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00096/a00096f6.jpg' +p305395 +sg291136 +g27 +sa(dp305396 +g291134 +S'Marquis de Marigny' +p305397 +sg291137 +S'Artist Information (' +p305398 +sg291130 +S'(artist after)' +p305399 +sg291132 +S'\n' +p305400 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b386.jpg' +p305401 +sg291136 +g27 +sa(dp305402 +g291134 +S'Elizabeth de Gouy, femme de Hyacinthe Rigaud' +p305403 +sg291137 +S'Artist Information (' +p305404 +sg291130 +S'(artist after)' +p305405 +sg291132 +S'\n' +p305406 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b387.jpg' +p305407 +sg291136 +g27 +sa(dp305408 +g291134 +S'Jean de Boullongne' +p305409 +sg291137 +S'Artist Information (' +p305410 +sg291130 +S'(artist after)' +p305411 +sg291132 +S'\n' +p305412 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b38a.jpg' +p305413 +sg291136 +g27 +sa(dp305414 +g291134 +S'Louis Phelypeaux, comte de Saint Florentin' +p305415 +sg291137 +S'Artist Information (' +p305416 +sg291130 +S'(artist after)' +p305417 +sg291132 +S'\n' +p305418 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b388.jpg' +p305419 +sg291136 +g27 +sa(dp305420 +g291134 +S'Marie Gallelise de la Fontaine' +p305421 +sg291137 +S'Artist Information (' +p305422 +sg291130 +S'(artist after)' +p305423 +sg291132 +S'\n' +p305424 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00096/a000965b.jpg' +p305425 +sg291136 +g27 +sa(dp305426 +g291134 +S'Charles Francois Paul Le Normant de Tournehem' +p305427 +sg291137 +S'Artist Information (' +p305428 +sg291130 +S'(artist after)' +p305429 +sg291132 +S'\n' +p305430 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00097/a0009702.jpg' +p305431 +sg291136 +g27 +sa(dp305432 +g291134 +S"Don Philippe, Infant d'Espagne" +p305433 +sg291137 +S'Artist Information (' +p305434 +sg291130 +S'(artist after)' +p305435 +sg291132 +S'\n' +p305436 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f32.jpg' +p305437 +sg291136 +g27 +sa(dp305438 +g291134 +S'Samuel Liber Baro de Cocceji' +p305439 +sg291137 +S'Artist Information (' +p305440 +sg291130 +S'(artist after)' +p305441 +sg291132 +S'\n' +p305442 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b371.jpg' +p305443 +sg291136 +g27 +sa(dp305444 +g291134 +S'Charles Duc Regnant de Brunswick' +p305445 +sg291137 +S'Artist Information (' +p305446 +sg291130 +S'(artist after)' +p305447 +sg291132 +S'\n' +p305448 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00096/a0009610.jpg' +p305449 +sg291136 +g27 +sa(dp305450 +g291134 +S'Jacques Benigne Bossuet' +p305451 +sg291137 +S'Artist Information (' +p305452 +sg291130 +S'(artist after)' +p305453 +sg291132 +S'\n' +p305454 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d503.jpg' +p305455 +sg291136 +g27 +sa(dp305456 +g291134 +S'Death of the Virgin' +p305457 +sg291137 +S'Artist Information (' +p305458 +sg291130 +S'(artist after)' +p305459 +sg291132 +S'\n' +p305460 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d67f.jpg' +p305461 +sg291136 +g27 +sa(dp305462 +g291134 +S"Louis Philippe d'Orl\xc3\xa9ans" +p305463 +sg291137 +S'Artist Information (' +p305464 +sg291130 +S'(artist after)' +p305465 +sg291132 +S'\n' +p305466 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00096/a00096bb.jpg' +p305467 +sg291136 +g27 +sa(dp305468 +g291130 +S'lithograph' +p305469 +sg291132 +S'1822' +p305470 +sg291134 +S'Un Benitier de la Basilique de Saint-Pierre' +p305471 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305472 +sa(dp305473 +g291130 +S'portfolio with thirty lithographs and a table of contents' +p305474 +sg291132 +S'published 1822' +p305475 +sg291134 +S'Voyage en Italie' +p305476 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305477 +sa(dp305478 +g291130 +S'lithograph' +p305479 +sg291132 +S'1822' +p305480 +sg291134 +S'Arcade du Colisee, premier etage' +p305481 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305482 +sa(dp305483 +g291130 +S'lithograph' +p305484 +sg291132 +S'1822' +p305485 +sg291134 +S"Le Colosse de l'Apennin; par Jean de Bologne" +p305486 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305487 +sa(dp305488 +g291130 +S'lithograph' +p305489 +sg291132 +S'1822' +p305490 +sg291134 +S'Le Cratere du Vesuve, apres la primiere Eruption de 1822' +p305491 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305492 +sa(dp305493 +g291130 +S'lithograph' +p305494 +sg291132 +S'1822' +p305495 +sg291134 +S'Le Tombeau de Virgile' +p305496 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305497 +sa(dp305498 +g291130 +S'lithograph' +p305499 +sg291132 +S'1822' +p305500 +sg291134 +S'La Tour penchee' +p305501 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305502 +sa(dp305503 +g291130 +S'lithograph' +p305504 +sg291132 +S'1822' +p305505 +sg291134 +S'Le Pont de Nesso' +p305506 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305507 +sa(dp305508 +g291130 +S'lithograph' +p305509 +sg291132 +S'1822' +p305510 +sg291134 +S'Cascade de la Marmora' +p305511 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305512 +sa(dp305513 +g291130 +S'lithograph' +p305514 +sg291132 +S'1822' +p305515 +sg291134 +S'Cour des Prisons' +p305516 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305517 +sa(dp305518 +g291130 +S'lithograph' +p305519 +sg291132 +S'1822' +p305520 +sg291134 +S'Saint Charles de Borome, sur le lac de Come' +p305521 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305522 +sa(dp305523 +g291130 +S'lithograph' +p305524 +sg291132 +S'1822' +p305525 +sg291134 +S"Interieur de l'Eglise de Saint Marc" +p305526 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305527 +sa(dp305528 +g291130 +S'lithograph' +p305529 +sg291132 +S'1822' +p305530 +sg291134 +S"Ruine d'un des Temples de Pestum" +p305531 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305532 +sa(dp305533 +g291130 +S'lithograph' +p305534 +sg291132 +S'1822' +p305535 +sg291134 +S'Vomitoir du Colisee' +p305536 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305537 +sa(dp305538 +g291130 +S'lithograph' +p305539 +sg291132 +S'1822' +p305540 +sg291134 +S'Entree de la Prison du Tasse' +p305541 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305542 +sa(dp305543 +g291130 +S'lithograph' +p305544 +sg291132 +S'1822' +p305545 +sg291134 +S'Bord du Lac Majeur' +p305546 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305547 +sa(dp305548 +g291130 +S'lithograph' +p305549 +sg291132 +S'1822' +p305550 +sg291134 +S'Grotte de Neptune' +p305551 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305552 +sa(dp305553 +g291130 +S'lithograph' +p305554 +sg291132 +S'1822' +p305555 +sg291134 +S'Port, entre Naples et Pestum' +p305556 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305557 +sa(dp305558 +g291130 +S'lithograph' +p305559 +sg291132 +S'1822' +p305560 +sg291134 +S'Salle Basse du Chateau de la Reine Jeanne' +p305561 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305562 +sa(dp305563 +g291130 +S'lithograph' +p305564 +sg291132 +S'1822' +p305565 +sg291134 +S'Le Campo Vaccino' +p305566 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305567 +sa(dp305568 +g291130 +S'lithograph' +p305569 +sg291132 +S'1822' +p305570 +sg291134 +S'Cascatelles de Messene' +p305571 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305572 +sa(dp305573 +g291130 +S'lithograph' +p305574 +sg291132 +S'1822' +p305575 +sg291134 +S'Fontaine du Jardin Borghese' +p305576 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305577 +sa(dp305578 +g291130 +S'lithograph' +p305579 +sg291132 +S'1822' +p305580 +sg291134 +S'Le Capo di Monti' +p305581 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305582 +sa(dp305583 +g291130 +S'lithograph' +p305584 +sg291132 +S'1822' +p305585 +sg291134 +S'Le Pont Alla Carrago' +p305586 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305587 +sa(dp305588 +g291130 +S'lithograph' +p305589 +sg291132 +S'1822' +p305590 +sg291134 +S"Le Chateau de l'Oeuf, pris du Quai de Sainte Lucie" +p305591 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305592 +sa(dp305593 +g291130 +S'lithograph' +p305594 +sg291132 +S'1822' +p305595 +sg291134 +S'Le Chateau de la Reine Jeanne' +p305596 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305597 +sa(dp305598 +g291130 +S'lithograph' +p305599 +sg291132 +S'1822' +p305600 +sg291134 +S"Le Temple d'Esculape, Jardin Borghese" +p305601 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305602 +sa(dp305603 +g291130 +S'lithograph' +p305604 +sg291132 +S'1822' +p305605 +sg291134 +S'Vue Prise du Chemin-Neuf' +p305606 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305607 +sa(dp305608 +g291130 +S'lithograph' +p305609 +sg291132 +S'1822' +p305610 +sg291134 +S'Route du Simplon' +p305611 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305612 +sa(dp305613 +g291130 +S'lithograph' +p305614 +sg291132 +S'1822' +p305615 +sg291134 +S'Vue Prise du Jardin de la Villa Somariva' +p305616 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305617 +sa(dp305618 +g291130 +S'lithograph' +p305619 +sg291132 +S'1822' +p305620 +sg291134 +S"Reste d'un grand Th\xc3\xa9\xc3\xa2tre, bati sur les Dessins de Vignole" +p305621 +sg291136 +g27 +sg291137 +S'Jean-Baptiste Isabey' +p305622 +sa(dp305623 +g291134 +S'Three Bathers in the Sea' +p305624 +sg291137 +S'Ernst Ludwig Kirchner' +p305625 +sg291130 +S'black crayon' +p305626 +sg291132 +S'c. 1914' +p305627 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00079/a0007928.jpg' +p305628 +sg291136 +g27 +sa(dp305629 +g291134 +S"McSorley's" +p305630 +sg291137 +S'John Sloan' +p305631 +sg291130 +S'monotype in brown' +p305632 +sg291132 +S'unknown date\n' +p305633 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b92.jpg' +p305634 +sg291136 +g27 +sa(dp305635 +g291130 +S'watercolor' +p305636 +sg291132 +S'1937' +p305637 +sg291134 +S'Along the Shore' +p305638 +sg291136 +g27 +sg291137 +S'Arthur Dove' +p305639 +sa(dp305640 +g291134 +S'Santa Severina, Calabria' +p305641 +sg291137 +S'M.C. Escher' +p305642 +sg291130 +S'graphite on blue-green laid paper' +p305643 +sg291132 +S'1930' +p305644 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004b3c.jpg' +p305645 +sg291136 +g27 +sa(dp305646 +g291130 +S'graphite on blue-green laid paper' +p305647 +sg291132 +S'1932' +p305648 +sg291134 +S'Caltavuturo in the Madonie Mountains, Sicily' +p305649 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p305650 +sa(dp305651 +g291134 +S'Coast of Amalfi' +p305652 +sg291137 +S'M.C. Escher' +p305653 +sg291130 +S'black crayon and graphite on wove paper' +p305654 +sg291132 +S'1931' +p305655 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00004/a0000469.jpg' +p305656 +sg291136 +g27 +sa(dp305657 +g291130 +S'graphite on blue-green laid paper' +p305658 +sg291132 +S'1930' +p305659 +sg291134 +S'Palizzi, Calabria' +p305660 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p305661 +sa(dp305662 +g291130 +S'graphite on wove paper' +p305663 +sg291132 +S'1932' +p305664 +sg291134 +S'Nicosia, Sicily' +p305665 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p305666 +sa(dp305667 +g291134 +S'Corte' +p305668 +sg291137 +S'M.C. Escher' +p305669 +sg291130 +S'graphite on wove paper' +p305670 +sg291132 +S'1933' +p305671 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00004/a000046a.jpg' +p305672 +sg291136 +g27 +sa(dp305673 +g291130 +S'watercolor over graphite' +p305674 +sg291132 +S'1959' +p305675 +sg291134 +S'The Stall' +p305676 +sg291136 +g27 +sg291137 +S'Andrew Wyeth' +p305677 +sa(dp305678 +g291130 +S'brown ink on wove paper' +p305679 +sg291132 +S'1958' +p305680 +sg291134 +S'Untitled' +p305681 +sg291136 +g27 +sg291137 +S'Robert Motherwell' +p305682 +sa(dp305683 +g291130 +S'lithograph (zinc) in 6 colors with collage on Hodgkinson Hand Made paper' +p305684 +sg291132 +S'1970' +p305685 +sg291134 +S'Four Dutch Hearts' +p305686 +sg291136 +g27 +sg291137 +S'Jim Dine' +p305687 +sa(dp305688 +g291130 +S'lithograph (zinc) in 6 colors with collage on Hodgkinson Hand Made paper' +p305689 +sg291132 +S'1970' +p305690 +sg291134 +S'Two Dutch Hearts' +p305691 +sg291136 +g27 +sg291137 +S'Jim Dine' +p305692 +sa(dp305693 +g291130 +S'(artist after)' +p305694 +sg291132 +S'\n' +p305695 +sg291134 +S'Village on a Riverbank' +p305696 +sg291136 +g27 +sg291137 +S'Artist Information (' +p305697 +sa(dp305698 +g291130 +S'beryllium copper with bronze weights' +p305699 +sg291132 +S'1977' +p305700 +sg291134 +S'Tonal Sculpture' +p305701 +sg291136 +g27 +sg291137 +S'Harry Bertoia' +p305702 +sa(dp305703 +g291130 +S'color silkscreen with lithography and hand-coloring' +p305704 +sg291132 +S'1980' +p305705 +sg291134 +S'Greetings from Afar' +p305706 +sg291136 +g27 +sg291137 +S'Susan Hall' +p305707 +sa(dp305708 +g291130 +S'color silkscreen with lithography and hand-coloring' +p305709 +sg291132 +S'1980' +p305710 +sg291134 +S'Pages from the Diaries' +p305711 +sg291136 +g27 +sg291137 +S'Susan Hall' +p305712 +sa(dp305713 +g291130 +S'8-color lithograph' +p305714 +sg291132 +S'1978' +p305715 +sg291134 +S'Untitled' +p305716 +sg291136 +g27 +sg291137 +S'Marisol' +p305717 +sa(dp305718 +g291130 +S'8-color lithograph' +p305719 +sg291132 +S'1978' +p305720 +sg291134 +S'Untitled' +p305721 +sg291136 +g27 +sg291137 +S'Marisol' +p305722 +sa(dp305723 +g291130 +S'lithograph in black and yellow' +p305724 +sg291132 +S'1978' +p305725 +sg291134 +S'Untitled' +p305726 +sg291136 +g27 +sg291137 +S'Marisol' +p305727 +sa(dp305728 +g291130 +S'8-color lithograph' +p305729 +sg291132 +S'1978' +p305730 +sg291134 +S'Untitled' +p305731 +sg291136 +g27 +sg291137 +S'Marisol' +p305732 +sa(dp305733 +g291130 +S'4-color lithograph' +p305734 +sg291132 +S'1978' +p305735 +sg291134 +S'Untitled' +p305736 +sg291136 +g27 +sg291137 +S'Marisol' +p305737 +sa(dp305738 +g291130 +S'8-color lithograph' +p305739 +sg291132 +S'1978' +p305740 +sg291134 +S'Untitled' +p305741 +sg291136 +g27 +sg291137 +S'Marisol' +p305742 +sa(dp305743 +g291130 +S'lithograph hand-colored with crayon and colored pencil' +p305744 +sg291132 +S'1980' +p305745 +sg291134 +S'The Underworld [half of diptych]' +p305746 +sg291136 +g27 +sg291137 +S'Ann McCoy' +p305747 +sa(dp305748 +g291130 +S'lithograph hand-colored with crayon and colored pencil' +p305749 +sg291132 +S'1980' +p305750 +sg291134 +S'The Underworld [half of diptych]' +p305751 +sg291136 +g27 +sg291137 +S'Ann McCoy' +p305752 +sa(dp305753 +g291130 +S'color silkscreen' +p305754 +sg291132 +S'1980' +p305755 +sg291134 +S'Untitled' +p305756 +sg291136 +g27 +sg291137 +S'Larry Poons' +p305757 +sa(dp305758 +g291130 +S'color silkscreen' +p305759 +sg291132 +S'1980' +p305760 +sg291134 +S'Untitled' +p305761 +sg291136 +g27 +sg291137 +S'Larry Poons' +p305762 +sa(dp305763 +g291130 +S'color silkscreen' +p305764 +sg291132 +S'1980' +p305765 +sg291134 +S'Untitled' +p305766 +sg291136 +g27 +sg291137 +S'Larry Poons' +p305767 +sa(dp305768 +g291130 +S'color silkscreen' +p305769 +sg291132 +S'1980' +p305770 +sg291134 +S'Untitled' +p305771 +sg291136 +g27 +sg291137 +S'Larry Poons' +p305772 +sa(dp305773 +g291130 +S'color silkscreen' +p305774 +sg291132 +S'1980' +p305775 +sg291134 +S'Star Space Nightlight, Milkyway Center by Earth Hour [left half]' +p305776 +sg291136 +g27 +sg291137 +S'Charles Ross' +p305777 +sa(dp305778 +g291130 +S'color silkscreen' +p305779 +sg291132 +S'1980' +p305780 +sg291134 +S'Star Space Nightlight, Milkyway Center by Earth Hour [right half]' +p305781 +sg291136 +g27 +sg291137 +S'Charles Ross' +p305782 +sa(dp305783 +g291130 +S'color silkscreen' +p305784 +sg291132 +S'1980' +p305785 +sg291134 +S'Star Space Daylight, Milkyway Center by Earth Hour [left half]' +p305786 +sg291136 +g27 +sg291137 +S'Charles Ross' +p305787 +sa(dp305788 +g291130 +S'color silkscreen' +p305789 +sg291132 +S'1980' +p305790 +sg291134 +S'Star Space Daylight, Milkyway Center by Earth Hour [right half]' +p305791 +sg291136 +g27 +sg291137 +S'Charles Ross' +p305792 +sa(dp305793 +g291130 +S'color silkscreen' +p305794 +sg291132 +S'1980' +p305795 +sg291134 +S'Star Space Daylight, Sun Center by Earth Degree [left half]' +p305796 +sg291136 +g27 +sg291137 +S'Charles Ross' +p305797 +sa(dp305798 +g291130 +S'color silkscreen' +p305799 +sg291132 +S'1980' +p305800 +sg291134 +S'Star Space Daylight, Sun Center by Earth Degree [right half]' +p305801 +sg291136 +g27 +sg291137 +S'Charles Ross' +p305802 +sa(dp305803 +g291130 +S'color silkscreen' +p305804 +sg291132 +S'1980' +p305805 +sg291134 +S'Star Space Nightlight, Sun Center by Earth Degree [left half]' +p305806 +sg291136 +g27 +sg291137 +S'Charles Ross' +p305807 +sa(dp305808 +g291130 +S'color silkscreen' +p305809 +sg291132 +S'1980' +p305810 +sg291134 +S'Star Space Nightlight, Sun Center by Earth Degree [right half]' +p305811 +sg291136 +g27 +sg291137 +S'Charles Ross' +p305812 +sa(dp305813 +g291130 +g27 +sg291132 +S'(artist)' +p305814 +sg291134 +S'Vote McGovern' +p305815 +sg291136 +g27 +sg291137 +S'Artist Information (' +p305816 +sa(dp305817 +g291134 +S'White Curve VIII' +p305818 +sg291137 +S'Ellsworth Kelly' +p305819 +sg291130 +S'oil on canvas' +p305820 +sg291132 +S'1976' +p305821 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000131.jpg' +p305822 +sg291136 +g27 +sa(dp305823 +g291130 +S'gray wash over graphite' +p305824 +sg291132 +S'unknown date\n' +p305825 +sg291134 +S'The National Gallery, Washington, D.C.' +p305826 +sg291136 +g27 +sg291137 +S'John Russell Pope' +p305827 +sa(dp305828 +g291134 +S'Young Girl Dressing' +p305829 +sg291137 +S'Laura Theresa Alma-Tadema' +p305830 +sg291130 +S'graphite on cream wove paper' +p305831 +sg291132 +S'c. 1889' +p305832 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c54.jpg' +p305833 +sg291136 +g27 +sa(dp305834 +g291134 +S'Portrait of a Lady' +p305835 +sg291137 +S'Jacopo Amigoni' +p305836 +sg291130 +S'pen and brush and black ink with gray wash and graphite on blue paper' +p305837 +sg291132 +S'unknown date\n' +p305838 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ea2.jpg' +p305839 +sg291136 +g27 +sa(dp305840 +g291134 +S'Design for an Architectural Framework' +p305841 +sg291137 +S'French 16th Century' +p305842 +sg291130 +S'overall: 39.5 x 26.2 cm (15 9/16 x 10 5/16 in.)' +p305843 +sg291132 +S'\npen and brown ink with brown wash over black chalk' +p305844 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006efb.jpg' +p305845 +sg291136 +g27 +sa(dp305846 +g291134 +S'Imperfectorum Academia (Academy of the Imperfects)' +p305847 +sg291137 +S'Claude D\xc3\xa9ruet' +p305848 +sg291130 +S'pen and brown ink with blue wash over black chalk, incised for transfer, on laid paper' +p305849 +sg291132 +S'c. 1619' +p305850 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005ffc.jpg' +p305851 +sg291136 +g27 +sa(dp305852 +g291134 +S'Two Seated Saints' +p305853 +sg291137 +S'French 17th Century' +p305854 +sg291130 +S'overall: 21.2 x 29.6 cm (8 3/8 x 11 5/8 in.)' +p305855 +sg291132 +S'\npen and brown ink with brown wash and white heightening over black chalk' +p305856 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006db7.jpg' +p305857 +sg291136 +g27 +sa(dp305858 +g291134 +S'Seated Woman' +p305859 +sg291137 +S'French 18th Century' +p305860 +sg291130 +S'overall: 48.4 x 38.7 cm (19 1/16 x 15 1/4 in.)' +p305861 +sg291132 +S'\nred and white chalk on gray laid paper' +p305862 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f03.jpg' +p305863 +sg291136 +g27 +sa(dp305864 +g291130 +S'overall: 16.9 x 66.2 cm (6 5/8 x 26 1/16 in.)' +p305865 +sg291132 +S'\npen and brown ink' +p305866 +sg291134 +S'The Triumph of Venus' +p305867 +sg291136 +g27 +sg291137 +S'Italian 16th Century' +p305868 +sa(dp305869 +g291134 +S'The Rest on the Flight into Egypt' +p305870 +sg291137 +S'Italian 16th Century' +p305871 +sg291130 +S'Overall: 17.2 x 19.3 cm (6 3/4 x 7 5/8 in.)\r\nsupport: 21.6 x 31.8 cm (8 1/2 x 12 1/2 in.)' +p305872 +sg291132 +S'\npen and brown ink with brown and gray wash' +p305873 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074ec.jpg' +p305874 +sg291136 +g27 +sa(dp305875 +g291134 +S'An Angel' +p305876 +sg291137 +S'Italian 17th Century' +p305877 +sg291130 +S'overall: 41.2 x 25.8 cm (16 1/4 x 10 3/16 in.)' +p305878 +sg291132 +S'\nbrush and brown ink, heightened with white, on laid paper' +p305879 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a000748e.jpg' +p305880 +sg291136 +g27 +sa(dp305881 +g291134 +S'The Massacre of the Innocents' +p305882 +sg291137 +S'Giovanni Antonio Pellegrini' +p305883 +sg291130 +S'pen and brown ink with gray wash and white heightening over red chalk' +p305884 +sg291132 +S'unknown date\n' +p305885 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a000742b.jpg' +p305886 +sg291136 +g27 +sa(dp305887 +g291134 +S'Allegory in Honor of a Gentleman' +p305888 +sg291137 +S'Dutch 17th Century' +p305889 +sg291130 +S'overall: 49.3 x 37.8 cm (19 7/16 x 14 7/8 in.)' +p305890 +sg291132 +S'\npen and brown ink with brown wash over graphite' +p305891 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a00071f8.jpg' +p305892 +sg291136 +g27 +sa(dp305893 +g291134 +S'Saint Nicolas of Bari' +p305894 +sg291137 +S'Cesare Aretusi' +p305895 +sg291130 +S', unknown date' +p305896 +sg291132 +S'\n' +p305897 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a000749b.jpg' +p305898 +sg291136 +g27 +sa(dp305899 +g291134 +S'The Ruins of the Colosseum' +p305900 +sg291137 +S'Jan Asselijn' +p305901 +sg291130 +S', unknown date' +p305902 +sg291132 +S'\n' +p305903 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f56.jpg' +p305904 +sg291136 +g27 +sa(dp305905 +g291134 +S'Woman Walking to the Right' +p305906 +sg291137 +S'Giovanni Baglione' +p305907 +sg291130 +S'black chalk with gray wash and white heightening on light brown paper' +p305908 +sg291132 +S'unknown date\n' +p305909 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00065/a000657b.jpg' +p305910 +sg291136 +g27 +sa(dp305911 +g291134 +S'Lady in Formal Dress' +p305912 +sg291137 +S'Salvador Barbudo Sanchez' +p305913 +sg291130 +S'watercolor over graphite on wove paper' +p305914 +sg291132 +S'1886' +p305915 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a02.jpg' +p305916 +sg291136 +g27 +sa(dp305917 +g291134 +S'Nude with Putto' +p305918 +sg291137 +S'Bertoia' +p305919 +sg291130 +S'pen and brown ink with brown wash and white heightening over black chalk, laid down' +p305920 +sg291132 +S'unknown date\n' +p305921 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074f3.jpg' +p305922 +sg291136 +g27 +sa(dp305923 +g291134 +S'The Trinity and the Virgin Appearing to Ecclesiastics' +p305924 +sg291137 +S'Theodor Boeyermans' +p305925 +sg291130 +S'pen and brown and black ink over black chalk' +p305926 +sg291132 +S'unknown date\n' +p305927 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a0007126.jpg' +p305928 +sg291136 +g27 +sa(dp305929 +g291134 +S'A Noble Lady of Pisa' +p305930 +sg291137 +S'Jean-Jacques Boissard' +p305931 +sg291130 +S'pen and brown ink with brown wash, indented with stylus for transfer' +p305932 +sg291132 +S'in or before 1581' +p305933 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00062/a00062ed.jpg' +p305934 +sg291136 +g27 +sa(dp305935 +g291134 +S'A Farmyard' +p305936 +sg291137 +S'Jean-Jacques de Boissieu' +p305937 +sg291130 +S'pen and black and brown ink with gray wash' +p305938 +sg291132 +S'unknown date\n' +p305939 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a0007018.jpg' +p305940 +sg291136 +g27 +sa(dp305941 +g291134 +S'Washerwomen on the Beach at Etretat' +p305942 +sg291137 +S'George Henry Boughton' +p305943 +sg291130 +S'watercolor over graphite on blue paper' +p305944 +sg291132 +S'unknown date\n' +p305945 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bec.jpg' +p305946 +sg291136 +g27 +sa(dp305947 +g291134 +S'Stellio Changed into a Lizard by Ceres' +p305948 +sg291137 +S'Leonard Bramer' +p305949 +sg291130 +S'brush and black ink with gray wash and white heightening' +p305950 +sg291132 +S'unknown date\n' +p305951 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f85.jpg' +p305952 +sg291136 +g27 +sa(dp305953 +g291134 +S'Title Page for a Bible' +p305954 +sg291137 +S'Augustin Braun' +p305955 +sg291130 +S'pen and brown ink with brown and blue wash over black chalk' +p305956 +sg291132 +S'unknown date\n' +p305957 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b9/a000b92d.jpg' +p305958 +sg291136 +g27 +sa(dp305959 +g291134 +S'Lady Picking Flowers' +p305960 +sg291137 +S'Sir Edward Coley Burne-Jones' +p305961 +sg291130 +S'pen and black ink over graphite' +p305962 +sg291132 +S'c. 1890' +p305963 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bf2.jpg' +p305964 +sg291136 +g27 +sa(dp305965 +g291134 +S'Coronation of the Virgin' +p305966 +sg291137 +S'Denys Calvaert' +p305967 +sg291130 +S'pen and brown ink on laid paper' +p305968 +sg291132 +S'unknown date\n' +p305969 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f57.jpg' +p305970 +sg291136 +g27 +sa(dp305971 +g291134 +S'Psyche Received on Mount Olympus' +p305972 +sg291137 +S'Vincenzo Camuccini' +p305973 +sg291130 +S'brown wash over graphite on laid paper' +p305974 +sg291132 +S'unknown date\n' +p305975 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a000713d.jpg' +p305976 +sg291136 +g27 +sa(dp305977 +g291134 +S'Galley under Construction' +p305978 +sg291137 +S'Pietro Ciafferi' +p305979 +sg291130 +S', unknown date' +p305980 +sg291132 +S'\n' +p305981 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074a9.jpg' +p305982 +sg291136 +g27 +sa(dp305983 +g291134 +S'Homer and Calliope' +p305984 +sg291137 +S'Tommaso Conca' +p305985 +sg291130 +S'black chalk with brown and gray wash and white andpink heightening, squared in graphite, on brown p aper' +p305986 +sg291132 +S'c. 1786' +p305987 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a00072bb.jpg' +p305988 +sg291136 +g27 +sa(dp305989 +g291134 +S'Masinissa and Sophonisba' +p305990 +sg291137 +S'Artist Information (' +p305991 +sg291130 +S'Italian, 1597 - 1669' +p305992 +sg291132 +S'(artist after)' +p305993 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074aa.jpg' +p305994 +sg291136 +g27 +sa(dp305995 +g291134 +S'Prince Charming in the Forest' +p305996 +sg291137 +S'Walter Crane' +p305997 +sg291130 +S'pen and brush and red ink' +p305998 +sg291132 +S'unknown date\n' +p305999 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c7c.jpg' +p306000 +sg291136 +g27 +sa(dp306001 +g291134 +S'Diana and Endymion' +p306002 +sg291137 +S'Gaspare Diziani' +p306003 +sg291130 +S'pen and brown ink with brown wash and red chalk' +p306004 +sg291132 +S'unknown date\n' +p306005 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f19.jpg' +p306006 +sg291136 +g27 +sa(dp306007 +g291134 +S'Scene from the Inferno (canto IX)' +p306008 +sg291137 +S'William Etty' +p306009 +sg291130 +S'pen and black ink with gray wash' +p306010 +sg291132 +S'unknown date\n' +p306011 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c9a.jpg' +p306012 +sg291136 +g27 +sa(dp306013 +g291134 +S"An Artist's Studio [recto]" +p306014 +sg291137 +S'Frans Francken the Younger' +p306015 +sg291130 +S'pen and brown ink with brown wash over black chalk on laid paper' +p306016 +sg291132 +S'unknown date\n' +p306017 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00066/a00066f0.jpg' +p306018 +sg291136 +g27 +sa(dp306019 +g291130 +S'black chalk on laid paper' +p306020 +sg291132 +S'unknown date\n' +p306021 +sg291134 +S'Study for "Allegory on the Abdication of Emperor Charles V in Brussels, 25 October 1555" [verso]' +p306022 +sg291136 +g27 +sg291137 +S'Frans Francken the Younger' +p306023 +sa(dp306024 +g291134 +S'Mountainous Landscape with Classical Temple' +p306025 +sg291137 +S'Felice Giani' +p306026 +sg291130 +S'pen and brown ink with brown wash' +p306027 +sg291132 +S'unknown date\n' +p306028 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e02.jpg' +p306029 +sg291136 +g27 +sa(dp306030 +g291134 +S'View of Scheveningen [recto]' +p306031 +sg291137 +S'Jan van Goyen' +p306032 +sg291130 +S'gray wash over black chalk on buff paper//border in pen and black ink added by later hand' +p306033 +sg291132 +S'probably c. 1650/1652' +p306034 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a0007107.jpg' +p306035 +sg291136 +g27 +sa(dp306036 +g291130 +S'black chalk with gray wash on buff paper' +p306037 +sg291132 +S'probably c. 1650/1652' +p306038 +sg291134 +S'Six Men [verso]' +p306039 +sg291136 +g27 +sg291137 +S'Jan van Goyen' +p306040 +sa(dp306041 +g291134 +S'Rustic House with a Well' +p306042 +sg291137 +S'Jan van Goyen' +p306043 +sg291130 +S'black chalk' +p306044 +sg291132 +S'unknown date\n' +p306045 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a00070d8.jpg' +p306046 +sg291136 +g27 +sa(dp306047 +g291134 +S'Five Saints' +p306048 +sg291137 +S'Pieter de Jode I' +p306049 +sg291130 +S'pen and brown ink with brown wash over black chalk' +p306050 +sg291132 +S'unknown date\n' +p306051 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a0007133.jpg' +p306052 +sg291136 +g27 +sa(dp306053 +g291134 +S'Religious Procession in Landeck' +p306054 +sg291137 +S'George Jones' +p306055 +sg291130 +S', 1820' +p306056 +sg291132 +S'\n' +p306057 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cab.jpg' +p306058 +sg291136 +g27 +sa(dp306059 +g291134 +S'Spanish Dancers' +p306060 +sg291137 +S'Pio Joris' +p306061 +sg291130 +S'pen and brown ink with brown wash and white heightening over graphite' +p306062 +sg291132 +S'1873' +p306063 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a0007027.jpg' +p306064 +sg291136 +g27 +sa(dp306065 +g291134 +S'Seated Peasant Woman' +p306066 +sg291137 +S'Francesco Londonio' +p306067 +sg291130 +S'charcoal with white chalk and gray wash on gray paper' +p306068 +sg291132 +S'unknown date\n' +p306069 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a0007425.jpg' +p306070 +sg291136 +g27 +sa(dp306071 +g291134 +S'Sleeping Peasant' +p306072 +sg291137 +S'Francesco Londonio' +p306073 +sg291130 +S'charcoal heightened with white on brown laid paper' +p306074 +sg291132 +S'unknown date\n' +p306075 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a0007426.jpg' +p306076 +sg291136 +g27 +sa(dp306077 +g291134 +S'Young Girl with a Red Bandana' +p306078 +sg291137 +S'Arcadio Mas y Fondevila' +p306079 +sg291130 +S'watercolor over graphite' +p306080 +sg291132 +S'unknown date\n' +p306081 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a00069ff.jpg' +p306082 +sg291136 +g27 +sa(dp306083 +g291134 +S'Lazarille de Tormes Stealing Drink from a Blind Man' +p306084 +sg291137 +S'Jean-Louis-Ernest Meissonier' +p306085 +sg291130 +S'graphite and white body color on boxwood' +p306086 +sg291132 +S'probably c. 1846' +p306087 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a0007293.jpg' +p306088 +sg291136 +g27 +sa(dp306089 +g291134 +S'Studies for Three Figures' +p306090 +sg291137 +S'Albert Joseph Moore' +p306091 +sg291130 +S', unknown date' +p306092 +sg291132 +S'\n' +p306093 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cba.jpg' +p306094 +sg291136 +g27 +sa(dp306095 +g291134 +S'Christ before Caiaphas' +p306096 +sg291137 +S'Crispen van den Broecke' +p306097 +sg291130 +S'pen and brown ink with blue wash, indented with stylus' +p306098 +sg291132 +S'unknown date\n' +p306099 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e9d.jpg' +p306100 +sg291136 +g27 +sa(dp306101 +g291134 +S'Saint Homobono' +p306102 +sg291137 +S'Avanzino Nucci' +p306103 +sg291130 +S', unknown date' +p306104 +sg291132 +S'\n' +p306105 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006787.jpg' +p306106 +sg291136 +g27 +sa(dp306107 +g291134 +S"Two Studies of an Elderly Man's Head" +p306108 +sg291137 +S'Artist Information (' +p306109 +sg291130 +S'(artist after)' +p306110 +sg291132 +S'\n' +p306111 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e1a.jpg' +p306112 +sg291136 +g27 +sa(dp306113 +g291134 +S'Cupid' +p306114 +sg291137 +S'Giulio Cesare Procaccini' +p306115 +sg291130 +S'pen and brown ink with brown wash' +p306116 +sg291132 +S'unknown date\n' +p306117 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a0007515.jpg' +p306118 +sg291136 +g27 +sa(dp306119 +g291134 +S'The Founding of Santa Maria Maggiore' +p306120 +sg291137 +S'Giovanni Battista Ricci' +p306121 +sg291130 +S'pen and brown ink with brown wash and white heightening over black chalk' +p306122 +sg291132 +S'unknown date\n' +p306123 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00065/a0006595.jpg' +p306124 +sg291136 +g27 +sa(dp306125 +g291134 +S'Allegory of Strength' +p306126 +sg291137 +S'Francesco Rosaspina' +p306127 +sg291130 +S'pen and brown ink with gray and brown wash, heightend with white, over black chalk' +p306128 +sg291132 +S'unknown date\n' +p306129 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a0007434.jpg' +p306130 +sg291136 +g27 +sa(dp306131 +g291134 +S'Three Herms' +p306132 +sg291137 +S'Giovanni Mauro della Rovere' +p306133 +sg291130 +S'pen and black ink with gray wash and white heightening over black chalk on gray laid paper' +p306134 +sg291132 +S'unknown date\n' +p306135 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074c5.jpg' +p306136 +sg291136 +g27 +sa(dp306137 +g291134 +S'A Young English Beauty' +p306138 +sg291137 +S'Thomas Rowlandson' +p306139 +sg291130 +S'pen and black ink with black, gray, and pink wash' +p306140 +sg291132 +S'c. 1790' +p306141 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026f6.jpg' +p306142 +sg291136 +g27 +sa(dp306143 +g291134 +S'Design for an Altar' +p306144 +sg291137 +S'Francesco Salviati' +p306145 +sg291130 +S'pen and brown ink with brown wash and white heightening over black chalk' +p306146 +sg291132 +S'unknown date\n' +p306147 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a0007582.jpg' +p306148 +sg291136 +g27 +sa(dp306149 +g291134 +S'Portrait of a Man' +p306150 +sg291137 +S'Pieter Claesz Soutman' +p306151 +sg291130 +S'black and red chalk with black wash and white heightening on laid paper' +p306152 +sg291132 +S'unknown date\n' +p306153 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d68.jpg' +p306154 +sg291136 +g27 +sa(dp306155 +g291134 +S'The Fair at Impruneta' +p306156 +sg291137 +S'Remigio Cantagallina' +p306157 +sg291130 +S'pen and brown ink with brown wash over black chalk, squared in red chalk' +p306158 +sg291132 +S'unknown date\n' +p306159 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074d0.jpg' +p306160 +sg291136 +g27 +sa(dp306161 +g291134 +S'The Virgin and Infant Jesus with Saints' +p306162 +sg291137 +S'Hans Rottenhammer' +p306163 +sg291130 +S'pen and brown ink with brown wash over red chalk' +p306164 +sg291132 +S'c. 1600' +p306165 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006782.jpg' +p306166 +sg291136 +g27 +sa(dp306167 +g291134 +S'Saint John on Patmos' +p306168 +sg291137 +S'Geoffroy Dumo\xc3\xbbtier' +p306169 +sg291130 +S'pen and black ink with brown wash over black chalk, corrected and heightened with white gouache, with border lines by the artist on laid paper' +p306170 +sg291132 +S'c. 1547' +p306171 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00060/a000607d.jpg' +p306172 +sg291136 +g27 +sa(dp306173 +g291134 +S'Antwerp Blessed with Abundance' +p306174 +sg291137 +S'Theodoor van Thulden' +p306175 +sg291130 +S'red chalk and brush and black ink with brown and gray wash' +p306176 +sg291132 +S'c. 1648' +p306177 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a000285c.jpg' +p306178 +sg291136 +g27 +sa(dp306179 +g291130 +S'red chalk on buff wove paper' +p306180 +sg291132 +S'unknown date\n' +p306181 +sg291134 +S'Pensive Girl Adrift in a Boat' +p306182 +sg291136 +g27 +sg291137 +S'James Jacques Joseph Tissot' +p306183 +sa(dp306184 +g291134 +S'River Bank with Cattle' +p306185 +sg291137 +S'Constant Troyon' +p306186 +sg291130 +S'black and white chalk on blue wove paper' +p306187 +sg291132 +S'probably after 1850' +p306188 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a000740b.jpg' +p306189 +sg291136 +g27 +sa(dp306190 +g291134 +S'View of Livorno' +p306191 +sg291137 +S'Angelo Uggeri' +p306192 +sg291130 +S'pen and black and brown ink with brown wash over graphite on laid paper' +p306193 +sg291132 +S'unknown date\n' +p306194 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a0007439.jpg' +p306195 +sg291136 +g27 +sa(dp306196 +g291134 +S'Tomb of Scipios' +p306197 +sg291137 +S'Angelo Uggeri' +p306198 +sg291130 +S'pen and brown ink with brown and green wash' +p306199 +sg291132 +S'1803' +p306200 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a0007437.jpg' +p306201 +sg291136 +g27 +sa(dp306202 +g291134 +S'A Roman Triumph' +p306203 +sg291137 +S'Maarten de Vos' +p306204 +sg291130 +S'pen and brown ink with brown and gray wash' +p306205 +sg291132 +S'unknown date\n' +p306206 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a00070ca.jpg' +p306207 +sg291136 +g27 +sa(dp306208 +g291134 +S'Fortitude' +p306209 +sg291137 +S'Maarten de Vos' +p306210 +sg291130 +S'pen and brown ink with brown wash over black chalk' +p306211 +sg291132 +S'unknown date\n' +p306212 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a00072e3.jpg' +p306213 +sg291136 +g27 +sa(dp306214 +g291134 +S'Study of an Elderly Woman for "Disobedience Discovered"' +p306215 +sg291137 +S'James Ward' +p306216 +sg291130 +S'black chalk with gray wash and white heightening on blue-green prepared paper' +p306217 +sg291132 +S'c. 1797' +p306218 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cd0.jpg' +p306219 +sg291136 +g27 +sa(dp306220 +g291134 +S'Standing Nude Binding Her Hair' +p306221 +sg291137 +S'John Dawson Watson' +p306222 +sg291130 +S'pen and brown ink over graphite' +p306223 +sg291132 +S'1879' +p306224 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cd6.jpg' +p306225 +sg291136 +g27 +sa(dp306226 +g291134 +S'Standing Nude with Crossed Arms' +p306227 +sg291137 +S'John Dawson Watson' +p306228 +sg291130 +S'pen and brown ink over graphite' +p306229 +sg291132 +S'1879' +p306230 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cd5.jpg' +p306231 +sg291136 +g27 +sa(dp306232 +g291134 +S'Two Girls under a Cloak' +p306233 +sg291137 +S'Sir David Wilkie' +p306234 +sg291130 +S'black chalk with pink wash on wove paper' +p306235 +sg291132 +S'unknown date\n' +p306236 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c51.jpg' +p306237 +sg291136 +g27 +sa(dp306238 +g291134 +S'An Old Water Mill' +p306239 +sg291137 +S'Cornelis Willaerts' +p306240 +sg291130 +S'pen and brown and black ink with gray and brown wash and blue and green chalk over graphite on laid paper' +p306241 +sg291132 +S'unknown date\n' +p306242 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d94.jpg' +p306243 +sg291136 +g27 +sa(dp306244 +g291134 +S'Gentleman with a Riding Crop' +p306245 +sg291137 +S'Pierre Alexandre Wille' +p306246 +sg291130 +S'red chalk on laid paper' +p306247 +sg291132 +S'unknown date\n' +p306248 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e71.jpg' +p306249 +sg291136 +g27 +sa(dp306250 +g291130 +S'1 vol: ill: 15 double-page plates (etchings)' +p306251 +sg291132 +S'published 1748/1749' +p306252 +sg291134 +S'Vedute di Roma' +p306253 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p306254 +sa(dp306255 +g291134 +S'The Cannon' +p306256 +sg291137 +S'Stefano Della Bella' +p306257 +sg291130 +S'etching' +p306258 +sg291132 +S'c. 1641' +p306259 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8fc.jpg' +p306260 +sg291136 +g27 +sa(dp306261 +g291134 +S'Baggage Train' +p306262 +sg291137 +S'Stefano Della Bella' +p306263 +sg291130 +S'etching' +p306264 +sg291132 +S'c. 1641' +p306265 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8fd.jpg' +p306266 +sg291136 +g27 +sa(dp306267 +g291134 +S'Officer Giving Orders to a Sentinel' +p306268 +sg291137 +S'Stefano Della Bella' +p306269 +sg291130 +S'etching' +p306270 +sg291132 +S'c. 1641' +p306271 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8fe.jpg' +p306272 +sg291136 +g27 +sa(dp306273 +g291134 +S'Soldier Playing a Drum' +p306274 +sg291137 +S'Stefano Della Bella' +p306275 +sg291130 +S'etching' +p306276 +sg291132 +S'c. 1641' +p306277 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8ff.jpg' +p306278 +sg291136 +g27 +sa(dp306279 +g291134 +S'Soldier in Armor and a Cannon' +p306280 +sg291137 +S'Stefano Della Bella' +p306281 +sg291130 +S'etching' +p306282 +sg291132 +S'c. 1641' +p306283 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c900.jpg' +p306284 +sg291136 +g27 +sa(dp306285 +g291134 +S'Firing the Cannons' +p306286 +sg291137 +S'Stefano Della Bella' +p306287 +sg291130 +S'etching' +p306288 +sg291132 +S'c. 1641' +p306289 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c901.jpg' +p306290 +sg291136 +g27 +sa(dp306291 +g291134 +S'The Flutist' +p306292 +sg291137 +S'Crescenzio Onofri' +p306293 +sg291130 +S'etching' +p306294 +sg291132 +S'1696' +p306295 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca12.jpg' +p306296 +sg291136 +g27 +sa(dp306297 +g291134 +S'The Withered Tree' +p306298 +sg291137 +S'Crescenzio Onofri' +p306299 +sg291130 +S'etching' +p306300 +sg291132 +S'1696' +p306301 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca0b.jpg' +p306302 +sg291136 +g27 +sa(dp306303 +g291134 +S'Two Men in Conversation' +p306304 +sg291137 +S'Crescenzio Onofri' +p306305 +sg291130 +S'etching' +p306306 +sg291132 +S'1696' +p306307 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca0c.jpg' +p306308 +sg291136 +g27 +sa(dp306309 +g291134 +S'Houses Beside a Mountain' +p306310 +sg291137 +S'Crescenzio Onofri' +p306311 +sg291130 +S'etching' +p306312 +sg291132 +S'1696' +p306313 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca0d.jpg' +p306314 +sg291136 +g27 +sa(dp306315 +g291134 +S'Double Arched Bridge' +p306316 +sg291137 +S'Crescenzio Onofri' +p306317 +sg291130 +S'etching' +p306318 +sg291132 +S'1696' +p306319 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca0e.jpg' +p306320 +sg291136 +g27 +sa(dp306321 +g291134 +S'A Waterfall' +p306322 +sg291137 +S'Crescenzio Onofri' +p306323 +sg291130 +S'etching' +p306324 +sg291132 +S'1696' +p306325 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca0f.jpg' +p306326 +sg291136 +g27 +sa(dp306327 +g291134 +S'The Stream' +p306328 +sg291137 +S'Crescenzio Onofri' +p306329 +sg291130 +S'etching' +p306330 +sg291132 +S'1696' +p306331 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca10.jpg' +p306332 +sg291136 +g27 +sa(dp306333 +g291134 +S"Mars's Revenge on Adonis" +p306334 +sg291137 +S'Crescenzio Onofri' +p306335 +sg291130 +S'etching' +p306336 +sg291132 +S'1696' +p306337 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca27.jpg' +p306338 +sg291136 +g27 +sa(dp306339 +g291134 +S'Apollo and a Nymph Leading a Lion' +p306340 +sg291137 +S'Crescenzio Onofri' +p306341 +sg291130 +S'etching' +p306342 +sg291132 +S'1696' +p306343 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca28.jpg' +p306344 +sg291136 +g27 +sa(dp306345 +g291134 +S'Balthus Turned to Stone' +p306346 +sg291137 +S'Crescenzio Onofri' +p306347 +sg291130 +S'etching' +p306348 +sg291132 +S'1696' +p306349 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca29.jpg' +p306350 +sg291136 +g27 +sa(dp306351 +g291134 +S'Jupiter in a Landscape' +p306352 +sg291137 +S'Crescenzio Onofri' +p306353 +sg291130 +S'etching' +p306354 +sg291132 +S'1696' +p306355 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca2a.jpg' +p306356 +sg291136 +g27 +sa(dp306357 +g291134 +S'A Man Showing Mercury the Eagle of Jupiter' +p306358 +sg291137 +S'Crescenzio Onofri' +p306359 +sg291130 +S'etching' +p306360 +sg291132 +S'1696' +p306361 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca2b.jpg' +p306362 +sg291136 +g27 +sa(dp306363 +g291134 +S'Shepherd in a Landscape' +p306364 +sg291137 +S'Salvator Rosa' +p306365 +sg291130 +S'etching and drypoint' +p306366 +sg291132 +S'c. 1660/1661' +p306367 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9ad.jpg' +p306368 +sg291136 +g27 +sa(dp306369 +g291130 +g27 +sg291132 +S'(publisher)' +p306370 +sg291134 +S'The Critic Smiles' +p306371 +sg291136 +g27 +sg291137 +S'Artist Information (' +p306372 +sa(dp306373 +g291134 +S'Portrait of a Boy' +p306374 +sg291137 +S'French 17th Century' +p306375 +sg291130 +S'overall: 29.6 x 21.5 cm (11 5/8 x 8 7/16 in.)' +p306376 +sg291132 +S'\nblack chalk heightened with white chalk on blue laid paper' +p306377 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006de6.jpg' +p306378 +sg291136 +g27 +sa(dp306379 +g291134 +S'Pan Reclining before a Large Vase' +p306380 +sg291137 +S'Giovanni Benedetto Castiglione' +p306381 +sg291130 +S'etching with tonal wiping on laid paper' +p306382 +sg291132 +S'1640/1645' +p306383 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00065/a0006579.jpg' +p306384 +sg291136 +g27 +sa(dp306385 +g291134 +S'The Washerwomen (Les laveuses)' +p306386 +sg291137 +S'Artist Information (' +p306387 +sg291130 +S'(artist)' +p306388 +sg291132 +S'\n' +p306389 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a6c.jpg' +p306390 +sg291136 +g27 +sa(dp306391 +g291134 +S'The Flight into Egypt' +p306392 +sg291137 +S'Giovanni Benedetto Castiglione' +p306393 +sg291130 +S'etching on laid paper' +p306394 +sg291132 +S'1640/1645' +p306395 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00065/a0006588.jpg' +p306396 +sg291136 +g27 +sa(dp306397 +g291134 +S'Still Life with Two Children Feeding Goats' +p306398 +sg291137 +S'Jan Fyt' +p306399 +sg291130 +S'black and white chalk on faded blue paper' +p306400 +sg291132 +S'unknown date\n' +p306401 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a0007276.jpg' +p306402 +sg291136 +g27 +sa(dp306403 +g291134 +S'Fortified Bridge against Distant Mountains' +p306404 +sg291137 +S'Pietro Giacomo Palmieri' +p306405 +sg291130 +S'pen and brown ink over black chalk' +p306406 +sg291132 +S'c. 1760' +p306407 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a000742c.jpg' +p306408 +sg291136 +g27 +sa(dp306409 +g291134 +S'Justice' +p306410 +sg291137 +S'Cherubino Alberti' +p306411 +sg291130 +S'pen and brown ink with gray wash over black chalk on laid paper' +p306412 +sg291132 +S'unknown date\n' +p306413 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00065/a0006566.jpg' +p306414 +sg291136 +g27 +sa(dp306415 +g291130 +S'1 vol: ill: etched title page, dedication, and 24 plates plus descriptive index and list of subscribers' +p306416 +sg291132 +S'published 1811' +p306417 +sg291134 +S'Etchings' +p306418 +sg291136 +g27 +sg291137 +S'John Sell Cotman' +p306419 +sa(dp306420 +g291130 +S'Italian, 1675 - 1762' +p306421 +sg291132 +S'(author)' +p306422 +sg291134 +S'De vita ac rebus gest beati Gregorii Barbadici ... libri tres' +p306423 +sg291136 +g27 +sg291137 +S'Artist Information (' +p306424 +sa(dp306425 +g291134 +S'A Great Oak Tree' +p306426 +sg291137 +S'John Constable' +p306427 +sg291130 +S'black chalk with gray wash' +p306428 +sg291132 +S'c. 1801' +p306429 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a000696d.jpg' +p306430 +sg291136 +g27 +sa(dp306431 +g291134 +S'Cupid Dancing with Two Allegorical Women' +p306432 +sg291137 +S'Paulus Moreelse' +p306433 +sg291130 +S'chiaroscuro woodcut printed from two blocks in black and gray on laid paper' +p306434 +sg291132 +S'1612' +p306435 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d11.jpg' +p306436 +sg291136 +g27 +sa(dp306437 +g291134 +S'Madonna and Child with Saint Elizabeth and Saint John the Baptist' +p306438 +sg291137 +S'Jacopino del Conte' +p306439 +sg291130 +S'oil on panel' +p306440 +sg291132 +S'c. 1535' +p306441 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00008/a0000814.jpg' +p306442 +sg291136 +S'Like the somewhat older Rosso and Pontormo, Jacopino was probably a\r\n student of Andrea del Sarto. His earliest works essentially paraphrased his\r\n teacher’s compositions, but here newer influences are evident. A hint of\r\n Pontormo’s style emerges in the longer, more elegant proportions of the\r\n figures and in the hard, polished color. Furthermore, the figures’\r\n monumental scale and almost sculptural mass signal Michelangelo’s\r\n influence.\n Images of the Virgin and Child with John the Baptist and his mother\r\n Elizabeth were popular in sixteenth-century Florence. Here, many elements\r\n of the composition play a symbolic role to extend the scene’s meaning. The\r\n cloth, just warmed over the brazier, foreshadows Jesus’ burial shroud, and\r\n the cradle at Mary’s feet, his tomb. The unseen future, with Christ’s\r\n passion and its promise of mankind’s salvation, is expressed in these\r\n signals and the linked gestures of the figures.\n ' +p306443 +sa(dp306444 +g291134 +S'Kneeling Satyr Supporting the Figure of an Emperor' +p306445 +sg291137 +S'Severo da Ravenna' +p306446 +sg291130 +S'bronze' +p306447 +sg291132 +S'c. 1500' +p306448 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d97.jpg' +p306449 +sg291136 +g27 +sa(dp306450 +g291134 +S'Serge Lifar' +p306451 +sg291137 +S'Louis Casimir Ladislas Marcoussis' +p306452 +sg291130 +S'etching and engraving in black on brown chine coll?' +p306453 +sg291132 +S'1933' +p306454 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a38a.jpg' +p306455 +sg291136 +g27 +sa(dp306456 +g291134 +S'The Fantastic Rocks and Castle at Bomarzo [recto]' +p306457 +sg291137 +S'Bartholomeus Breenbergh' +p306458 +sg291130 +S'pen and brown ink with brown and gray wash over black chalk on laid paper' +p306459 +sg291132 +S'c. 1625' +p306460 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a00071bf.jpg' +p306461 +sg291136 +g27 +sa(dp306462 +g291130 +S'pen and brown ink with brown wash over black chalk on laid paper' +p306463 +sg291132 +S'c. 1625' +p306464 +sg291134 +S'The Fantastic Rocks and Castle at Bomarzo [verso]' +p306465 +sg291136 +g27 +sg291137 +S'Bartholomeus Breenbergh' +p306466 +sa(dp306467 +g291134 +S'The Convalescent (La convalescente)' +p306468 +sg291137 +S'Edouard Manet' +p306469 +sg291130 +S'etching in dark brown on laid paper' +p306470 +sg291132 +S'1876/1878' +p306471 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00099/a0009951.jpg' +p306472 +sg291136 +g27 +sa(dp306473 +g291134 +S'Still Life with Ham' +p306474 +sg291137 +S'Gerret Willemsz Heda' +p306475 +sg291130 +S'oil on panel' +p306476 +sg291132 +S'1650' +p306477 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e60.jpg' +p306478 +sg291136 +g27 +sa(dp306479 +g291134 +S'The Edge of a Wood at Nohant' +p306480 +sg291137 +S'Eug\xc3\xa8ne Delacroix' +p306481 +sg291130 +S'watercolor' +p306482 +sg291132 +S'c. 1842/1843' +p306483 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00031/a00031b5.jpg' +p306484 +sg291136 +g27 +sa(dp306485 +g291134 +S'Satyr Leaning on a Column' +p306486 +sg291137 +S'Anton Domenico Gabbiani' +p306487 +sg291130 +S'black and white chalk' +p306488 +sg291132 +S'unknown date\n' +p306489 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074b2.jpg' +p306490 +sg291136 +g27 +sa(dp306491 +g291134 +S'Christ' +p306492 +sg291137 +S'John Bernard Flannagan' +p306493 +sg291130 +S'wood' +p306494 +sg291132 +S'1925' +p306495 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a0001672.jpg' +p306496 +sg291136 +g27 +sa(dp306497 +g291134 +S'Gorilla' +p306498 +sg291137 +S'John Bernard Flannagan' +p306499 +sg291130 +S'stone' +p306500 +sg291132 +S'1938' +p306501 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a0001673.jpg' +p306502 +sg291136 +g27 +sa(dp306503 +g291134 +S'Sketch-Model for Reclining Figure' +p306504 +sg291137 +S'Henry Moore' +p306505 +sg291130 +S'terracotta' +p306506 +sg291132 +S'1946' +p306507 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00043/a00043f4.jpg' +p306508 +sg291136 +g27 +sa(dp306509 +g291130 +S'pen and blue ink over graphite on paper with printed lines and letterhead of "Hotel Frankfurter Hof"' +p306510 +sg291132 +S'1932/1935' +p306511 +sg291134 +S'Study for Left Panel of "Departure"' +p306512 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306513 +sa(dp306514 +g291130 +S'pen and black ink on laid paper' +p306515 +sg291132 +S'1918' +p306516 +sg291134 +S'Sketch for "The Night"' +p306517 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306518 +sa(dp306519 +g291130 +S'pen and black ink on paper with printed lines' +p306520 +sg291132 +S'1946' +p306521 +sg291134 +S'Sketch for "Perseus\' (Hercules\') Last Duty"' +p306522 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306523 +sa(dp306524 +g291130 +S'graphite on paper with printed lines' +p306525 +sg291132 +S'unknown date\n' +p306526 +sg291134 +S'Nude Figures' +p306527 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306528 +sa(dp306529 +g291130 +S'pen with blue and black ink and graphite on paper with printed lines' +p306530 +sg291132 +S'1948' +p306531 +sg291134 +S'Sheet of Sketches including Triptych, Skyscrapers, and Nude Female Figure' +p306532 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306533 +sa(dp306534 +g291130 +S'graphite on light brown wove paper' +p306535 +sg291132 +S'1937' +p306536 +sg291134 +S'Study for "Birth"' +p306537 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306538 +sa(dp306539 +g291130 +S'graphite//on sheet of folded stationery from the "Hotel Esplanade Berlin," bearing date line "DEN...192"' +p306540 +sg291132 +S'unknown date\n' +p306541 +sg291134 +S'Still Life' +p306542 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306543 +sa(dp306544 +g291130 +S'pen and black ink on wove paper' +p306545 +sg291132 +S'1947' +p306546 +sg291134 +S'Soldier and Prostitute' +p306547 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306548 +sa(dp306549 +g291130 +S'graphite on paper with blue printed lines' +p306550 +sg291132 +S'1946' +p306551 +sg291134 +S'Figures in an Interior' +p306552 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306553 +sa(dp306554 +g291130 +S'pen and black ink on blue laid paper' +p306555 +sg291132 +S'1946' +p306556 +sg291134 +S'Triptych' +p306557 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306558 +sa(dp306559 +g291130 +S'black crayon' +p306560 +sg291132 +S'unknown date\n' +p306561 +sg291134 +S"Woman's Face" +p306562 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306563 +sa(dp306564 +g291130 +S'graphite on wove paper' +p306565 +sg291132 +S'unknown date\n' +p306566 +sg291134 +S'Wooded Landscape with Bridge' +p306567 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306568 +sa(dp306569 +g291130 +S'pen and brown ink on graph paper' +p306570 +sg291132 +S'1918' +p306571 +sg291134 +S'Crowd of People' +p306572 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306573 +sa(dp306574 +g291130 +S'graphite' +p306575 +sg291132 +S'in or after 1928' +p306576 +sg291134 +S'Audience Watching Stage' +p306577 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306578 +sa(dp306579 +g291130 +S'green crayon on back of printed document dated: "Dresden, den 13.September 1928."' +p306580 +sg291132 +S'1929' +p306581 +sg291134 +S'Sketch for "Death" and Two Unidentified Subjects' +p306582 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306583 +sa(dp306584 +g291130 +S'pen and black ink and graphite on paper with printed lines' +p306585 +sg291132 +S'1946 and 1950' +p306586 +sg291134 +S'Argonauts (Sketch for Triptych and Study for Center Panel)' +p306587 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306588 +sa(dp306589 +g291130 +S'pen with brown and blue ink' +p306590 +sg291132 +S'in or after 1937' +p306591 +sg291134 +S'Three Figures' +p306592 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306593 +sa(dp306594 +g291130 +S'pen and blue-black ink on paper with printed lines' +p306595 +sg291132 +S'1946' +p306596 +sg291134 +S'Triptych' +p306597 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306598 +sa(dp306599 +g291130 +S'graphite on graph paper with blue lines' +p306600 +sg291132 +S'1947' +p306601 +sg291134 +S'Reclining Female Nude' +p306602 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306603 +sa(dp306604 +g291130 +S'graphite on stationery of "Karl Buchholz, Buchhandlung Kunstausstellung"' +p306605 +sg291132 +S'in or after 1937' +p306606 +sg291134 +S'Figure Studies' +p306607 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306608 +sa(dp306609 +g291130 +S'graphite' +p306610 +sg291132 +S'unknown date\n' +p306611 +sg291134 +S'Figure in a Rowboat and Reclining Female Nude' +p306612 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306613 +sa(dp306614 +g291130 +S'pen and blue ink with watercolor over graphite on graph paper with blue lines' +p306615 +sg291132 +S'1947' +p306616 +sg291134 +S'Reclining Female' +p306617 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306618 +sa(dp306619 +g291130 +S'pen and black ink' +p306620 +sg291132 +S'unknown date\n' +p306621 +sg291134 +S'Sketches of Unidentified Subjects' +p306622 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306623 +sa(dp306624 +g291130 +S'graphite on wove paper' +p306625 +sg291132 +S'1920' +p306626 +sg291134 +S'Dancer and Man with Top Hat' +p306627 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306628 +sa(dp306629 +g291130 +S'pen and blue ink on page from account ledger' +p306630 +sg291132 +S'possibly 1950' +p306631 +sg291134 +S'Dancing Figures' +p306632 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306633 +sa(dp306634 +g291130 +S'pen and black ink over graphite on blue laid paper' +p306635 +sg291132 +S'1946' +p306636 +sg291134 +S'Two Sketches of Unidentified Subjects' +p306637 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306638 +sa(dp306639 +g291130 +S'graphite on wove paper' +p306640 +sg291132 +S'1945' +p306641 +sg291134 +S'Seated Woman and Woman Reading' +p306642 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306643 +sa(dp306644 +g291130 +S'pen and blue ink on wove paper' +p306645 +sg291132 +S'unknown date\n' +p306646 +sg291134 +S'Portrait of a Woman' +p306647 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306648 +sa(dp306649 +g291130 +S'graphite on wove paper' +p306650 +sg291132 +S'1922' +p306651 +sg291134 +S'Dancer and Male Audience' +p306652 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306653 +sa(dp306654 +g291130 +S'hand-colored lithograph on laid paper' +p306655 +sg291132 +S'1941/1942' +p306656 +sg291134 +S'John, Revelations (Chapter 1, Verses 12-20)' +p306657 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306658 +sa(dp306659 +g291130 +S'pen and blue ink, pink (crayon?), and graphite on wove paper' +p306660 +sg291132 +S'unknown date\n' +p306661 +sg291134 +S'Kneeling Female Nude' +p306662 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306663 +sa(dp306664 +g291130 +S'graphite on wove paper' +p306665 +sg291132 +S'unknown date\n' +p306666 +sg291134 +S'Two Nude Figures and Serpent' +p306667 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306668 +sa(dp306669 +g291130 +S'graphite on paperboard//back of menu with text printed in French ("Dimanches et Fetes")' +p306670 +sg291132 +S'unknown date\n' +p306671 +sg291134 +S'Sketch of Unidentified Subject' +p306672 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306673 +sa(dp306674 +g291130 +S'pen and black ink on paperboard (back of printed announcement for "Scheherezade: Cabaret, Variete")' +p306675 +sg291132 +S'possibly 1944' +p306676 +sg291134 +S'Studies of Heads and Figures' +p306677 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306678 +sa(dp306679 +g291130 +S'pen and black ink over graphite on laid paper' +p306680 +sg291132 +S'c. 1944' +p306681 +sg291134 +S'Sketch for Finished Drawing "In the Studio (Dutch Women)"' +p306682 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306683 +sa(dp306684 +g291130 +S'graphite on wove paper' +p306685 +sg291132 +S'1918' +p306686 +sg291134 +S'Two Bass Players' +p306687 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306688 +sa(dp306689 +g291130 +S'charcoal on wove paper' +p306690 +sg291132 +S'1908' +p306691 +sg291134 +S"Women's Orchestra" +p306692 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306693 +sa(dp306694 +g291130 +S'graphite on graph paper' +p306695 +sg291132 +S'possibly 1915' +p306696 +sg291134 +S'Compositional Sketch' +p306697 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306698 +sa(dp306699 +g291130 +S'pen and blue ink on back of telegram form with text printed in German, bearing date line "DEN.... 193...."' +p306700 +sg291132 +S'probably 1930s' +p306701 +sg291134 +S'Nude Figures' +p306702 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306703 +sa(dp306704 +g291130 +S'pen and black ink//on envelope' +p306705 +sg291132 +S'possibly 1944' +p306706 +sg291134 +S'Sketches of Unidentified Subjects' +p306707 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306708 +sa(dp306709 +g291130 +S'purple crayon on brown paper//envelope' +p306710 +sg291132 +S'unknown date\n' +p306711 +sg291134 +S'Les Trois' +p306712 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306713 +sa(dp306714 +g291130 +S'pen and black ink on paper with printed lines' +p306715 +sg291132 +S'unknown date\n' +p306716 +sg291134 +S'Kneeling Figure' +p306717 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306718 +sa(dp306719 +g291130 +S'pen and blue ink on back cover of a 1945 French booklet of instructions for playing baccarat' +p306720 +sg291132 +S'in or after 1945' +p306721 +sg291134 +S'Two Men on a Boardwalk' +p306722 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306723 +sa(dp306724 +g291130 +S'graphite on graph paper' +p306725 +sg291132 +S'unknown date\n' +p306726 +sg291134 +S'Ein Trommler und sein Weib' +p306727 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306728 +sa(dp306729 +g291130 +S'graphite on wove paper' +p306730 +sg291132 +S'c. 1923' +p306731 +sg291134 +S'Dancing Couple and Part of a Head' +p306732 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306733 +sa(dp306734 +g291130 +S'graphite//on back of printed receipt (German)' +p306735 +sg291132 +S'in or after 1934' +p306736 +sg291134 +S'Nude Figures' +p306737 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306738 +sa(dp306739 +g291130 +S'pen and black ink over black crayon on wove paper' +p306740 +sg291132 +S'1920' +p306741 +sg291134 +S'Sketch for "Carnival"' +p306742 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306743 +sa(dp306744 +g291130 +S'pen and black ink' +p306745 +sg291132 +S'1920' +p306746 +sg291134 +S'Sketch for "The Dream"' +p306747 +sg291136 +g27 +sg291137 +S'Max Beckmann' +p306748 +sa(dp306749 +g291130 +S'lithograph' +p306750 +sg291132 +S'1927' +p306751 +sg291134 +S'Self-Portrait (Selbstbildnis)' +p306752 +sg291136 +g27 +sg291137 +S'K\xc3\xa4the Kollwitz' +p306753 +sa(dp306754 +g291130 +S'lithograph' +p306755 +sg291132 +S'1920' +p306756 +sg291134 +S'Woman Meditating II (Nachdenkende Frau II)' +p306757 +sg291136 +g27 +sg291137 +S'K\xc3\xa4the Kollwitz' +p306758 +sa(dp306759 +g291130 +S'etching, aquatint, and soft-ground' +p306760 +sg291132 +S'1906' +p306761 +sg291134 +S'The Ploughmen' +p306762 +sg291136 +g27 +sg291137 +S'K\xc3\xa4the Kollwitz' +p306763 +sa(dp306764 +g291130 +S'etching' +p306765 +sg291132 +S'1935' +p306766 +sg291134 +S'Noon Hour' +p306767 +sg291136 +g27 +sg291137 +S'Isabel Bishop' +p306768 +sa(dp306769 +g291134 +S'Abigail Smith Babcock (Mrs. Adam Babcock)' +p306770 +sg291137 +S'John Singleton Copley' +p306771 +sg291130 +S'oil on canvas' +p306772 +sg291132 +S'c. 1774' +p306773 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00000/a0000066.jpg' +p306774 +sg291136 +S'The subject, Abigail Smith (1744-1777), was the wife of a wealthy New \r\n Haven, Connecticut, shipowner. Mrs. Babcock appears regal in her \r\n ermine-lined cape and pearl-studded girdle. Her portrait is possibly \r\n Copley’s last American work, finished just before he left for Europe, \r\n never to return.\n ' +p306775 +sa(dp306776 +g291134 +S'The Crucifixion of Polycrates' +p306777 +sg291137 +S'Salvator Rosa' +p306778 +sg291130 +S'etching and drypoint on laid paper' +p306779 +sg291132 +S'c. 1662' +p306780 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005a95.jpg' +p306781 +sg291136 +g27 +sa(dp306782 +g291130 +S'etching and drypoint on laid paper' +p306783 +sg291132 +S'1663' +p306784 +sg291134 +S'The Fall of the Giants' +p306785 +sg291136 +g27 +sg291137 +S'Salvator Rosa' +p306786 +sa(dp306787 +g291134 +S'Apostles Peter and John Healing the Paralytic' +p306788 +sg291137 +S'Lambert Suavius' +p306789 +sg291130 +S'etching and engraving' +p306790 +sg291132 +S'1553' +p306791 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d072.jpg' +p306792 +sg291136 +g27 +sa(dp306793 +g291134 +S'The Martyrdom of Saint Lawrence' +p306794 +sg291137 +S'Claude Vignon' +p306795 +sg291130 +S'etching on laid paper' +p306796 +sg291132 +S'unknown date\n' +p306797 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c47.jpg' +p306798 +sg291136 +g27 +sa(dp306799 +g291134 +S'Cavalryman Mounting a Horse' +p306800 +sg291137 +S'Luigi Sabatelli I' +p306801 +sg291130 +S'pen and brown ink on laid paper' +p306802 +sg291132 +S'unknown date\n' +p306803 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a00070b6.jpg' +p306804 +sg291136 +g27 +sa(dp306805 +g291130 +S'bronze' +p306806 +sg291132 +S'c. 1470/1480' +p306807 +sg291134 +S'Antique Sacrifice' +p306808 +sg291136 +g27 +sg291137 +S'Tommaso di Calisto' +p306809 +sa(dp306810 +g291134 +S'Europa' +p306811 +sg291137 +S'Paduan 16th Century' +p306812 +sg291130 +S'overall (with base): 16.1 x 12 x 8.6 cm (6 5/16 x 4 3/4 x 3 3/8 in.)\r\nbase: 6.7 x 7 x 7 cm (2 5/8 x 2 3/4 x 2 3/4 in.)' +p306813 +sg291132 +S'\ngilt bronze' +p306814 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d88.jpg' +p306815 +sg291136 +g27 +sa(dp306816 +g291134 +S'Sacrifice to Priapus' +p306817 +sg291137 +S'Artist Information (' +p306818 +sg291130 +S'(artist after)' +p306819 +sg291132 +S'\n' +p306820 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ffac.jpg' +p306821 +sg291136 +g27 +sa(dp306822 +g291134 +S'Mars and Venus' +p306823 +sg291137 +S"Jacopo de' Barbari" +p306824 +sg291130 +S'engraving' +p306825 +sg291132 +S'c. 1509/1516' +p306826 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00061/a0006116.jpg' +p306827 +sg291136 +g27 +sa(dp306828 +g291134 +S'Henri II, 1519-1559, King of France 1547 [obverse]' +p306829 +sg291137 +S'Etienne Delaune' +p306830 +sg291130 +S'gilt bronze' +p306831 +sg291132 +S'1552' +p306832 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002daa.jpg' +p306833 +sg291136 +g27 +sa(dp306834 +g291134 +S'Inscription in a Laurel Wreath [reverse]' +p306835 +sg291137 +S'Etienne Delaune' +p306836 +sg291130 +S'gilt bronze' +p306837 +sg291132 +S'1552' +p306838 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dab.jpg' +p306839 +sg291136 +g27 +sa(dp306840 +g291130 +S'mixed media on board' +p306841 +sg291132 +S'1979' +p306842 +sg291134 +S'Doric Circus' +p306843 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p306844 +sa(dp306845 +g291134 +S'Ships in Distress off a Rocky Coast' +p306846 +sg291137 +S'Ludolf Backhuysen' +p306847 +sg291130 +S'oil on canvas' +p306848 +sg291132 +S'1667' +p306849 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e7d.jpg' +p306850 +sg291136 +S'The three ships in this large painting are the wide-bellied,\r\n seagoing \r\n vessels that transported much of Holland’s mercantile cargo. They\r\n display \r\n the Dutch flag of orange, white, and blue. These symbols of\r\n national \r\n optimism, however, are in peril of crashing against rocks during a\r\n storm. \r\n Each ship has a broken mast and, in the lower right foreground,\r\n floating \r\n wreckage reveals that one vessel has already sunk. Amid the dark\r\n gray and \r\n steely blue clouds and water, the sun’s golden rays give hope that\r\n calmer \r\n weather will soon return. The subject may be considered a\r\n \n Although realistic in appearance, the painting combines\r\n imaginary \r\n elements that Backhuysen often used in his theatrical compositions.\r\n Complex \r\n shapes and sharp contrasts of light and shadow heighten the drama\r\n as do the \r\n massive cliffs and frothy spray.\n Backhuysen, German-born, moved to Amsterdam in 1649 to study\r\n marine \r\n painting. During the last quarter of the seventeenth century he was\r\n Holland’s leading seascape artist, with royal and noble patrons\r\n throughout \r\n Europe.\n ' +p306851 +sa(dp306852 +g291130 +S'cast bronze' +p306853 +sg291132 +S'1983' +p306854 +sg291134 +S'Olympic Torso (Female)' +p306855 +sg291136 +g27 +sg291137 +S'Robert Graham' +p306856 +sa(dp306857 +g291134 +S'Wooded Landscape with Two Country Carts and Figures' +p306858 +sg291137 +S'Thomas Gainsborough' +p306859 +sg291130 +S'soft-ground etching on laid paper' +p306860 +sg291132 +S'1779/1780' +p306861 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a00078aa.jpg' +p306862 +sg291136 +g27 +sa(dp306863 +g291134 +S'Self-Portrait (Selbstbildnis)' +p306864 +sg291137 +S'Lovis Corinth' +p306865 +sg291130 +S'soft-ground etching on wove paper' +p306866 +sg291132 +S'1921/1922' +p306867 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5e0.jpg' +p306868 +sg291136 +g27 +sa(dp306869 +g291134 +S'The Convalescent (La convalescente)' +p306870 +sg291137 +S'Edouard Manet' +p306871 +sg291130 +S'etching and aquatint in dark brown on laid paper' +p306872 +sg291132 +S'1876/1878' +p306873 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00099/a0009950.jpg' +p306874 +sg291136 +g27 +sa(dp306875 +g291130 +S'drypoint on wove paper' +p306876 +sg291132 +S'1913' +p306877 +sg291134 +S'Oriental Landscape with Two Riders' +p306878 +sg291136 +g27 +sg291137 +S'Hans Meid' +p306879 +sa(dp306880 +g291134 +S'French Fishing Boats off a Rocky Coast' +p306881 +sg291137 +S'William Callow' +p306882 +sg291130 +S'watercolor and white gouache over graphite on laid paper' +p306883 +sg291132 +S'1833' +p306884 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022cc.jpg' +p306885 +sg291136 +g27 +sa(dp306886 +g291134 +S'Studies of Soldiers in Camp' +p306887 +sg291137 +S'Georg Philipp Rugendas' +p306888 +sg291130 +S'graphite on laid paper' +p306889 +sg291132 +S'unknown date\n' +p306890 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00079/a00079b1.jpg' +p306891 +sg291136 +g27 +sa(dp306892 +g291130 +S'1 vol: ill: title page, dedication, and 25 etchings and drypoints mounted on 15 leaves' +p306893 +sg291132 +S'published 1845' +p306894 +sg291134 +S'A Series of Etchings from Nature Designed to Illustrate a Few of the Leading Features of English Scenery' +p306895 +sg291136 +g27 +sg291137 +S'David Charles Read' +p306896 +sa(dp306897 +g291134 +S'Three Ladies Chatting' +p306898 +sg291137 +S'Hubert Robert' +p306899 +sg291130 +S'pen and black ink with brown wash over graphite' +p306900 +sg291132 +S'unknown date\n' +p306901 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ebf.jpg' +p306902 +sg291136 +g27 +sa(dp306903 +g291134 +S'Marino and the Alban Hills' +p306904 +sg291137 +S'Charles Joseph Natoire' +p306905 +sg291130 +S'pen and brown ink with brown and gray wash, watercolor, and white gouache over black chalk on laid paper' +p306906 +sg291132 +S'1769' +p306907 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a0002607.jpg' +p306908 +sg291136 +g27 +sa(dp306909 +g291130 +S'cast bronze' +p306910 +sg291132 +S'1983' +p306911 +sg291134 +S'Olympic Torso (Male)' +p306912 +sg291136 +g27 +sg291137 +S'Robert Graham' +p306913 +sa(dp306914 +g291134 +S'Untitled (Seagram Mural sketch)' +p306915 +sg291137 +S'Mark Rothko' +p306916 +sg291130 +S'oil and acrylic on canvas' +p306917 +sg291132 +S'1958' +p306918 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a0001074.jpg' +p306919 +sg291136 +g27 +sa(dp306920 +g291134 +S'Untitled (Seagram Mural sketch)' +p306921 +sg291137 +S'Mark Rothko' +p306922 +sg291130 +S'oil and acrylic on canvas' +p306923 +sg291132 +S'1959' +p306924 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a0001075.jpg' +p306925 +sg291136 +g27 +sa(dp306926 +g291134 +S'Untitled (Seagram Mural sketch)' +p306927 +sg291137 +S'Mark Rothko' +p306928 +sg291130 +S'oil and acrylic on canvas' +p306929 +sg291132 +S'1959' +p306930 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a0001076.jpg' +p306931 +sg291136 +g27 +sa(dp306932 +g291134 +S'Untitled (Seagram Mural sketch)' +p306933 +sg291137 +S'Mark Rothko' +p306934 +sg291130 +S'oil and acrylic on canvas' +p306935 +sg291132 +S'1959' +p306936 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a0001077.jpg' +p306937 +sg291136 +g27 +sa(dp306938 +g291134 +S'Untitled (Seagram Mural)' +p306939 +sg291137 +S'Mark Rothko' +p306940 +sg291130 +S'oil and mixed media on canvas' +p306941 +sg291132 +S'1959' +p306942 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a0001078.jpg' +p306943 +sg291136 +g27 +sa(dp306944 +g291134 +S'Untitled (Seagram Mural sketch)' +p306945 +sg291137 +S'Mark Rothko' +p306946 +sg291130 +S'oil on canvas' +p306947 +sg291132 +S'1959' +p306948 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a0001079.jpg' +p306949 +sg291136 +g27 +sa(dp306950 +g291134 +S'Jules-David Cromot, Baron du Bourg' +p306951 +sg291137 +S'Jean-Baptiste Lemoyne II' +p306952 +sg291130 +S'marble' +p306953 +sg291132 +S'c. 1757' +p306954 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c14.jpg' +p306955 +sg291136 +S"Sweeping drapery and a taut twist of the head create movement and energy\r\n in this portrait bust. The slightly parted lips, drilled pupils, and\r\n carefully detailed features—the lines etched around eyes and mouth—animate the personality of the subject, who was a counselor to Louis XV and\r\n whose son fought in the American War of Independence. Both painted and\r\n sculpted portraits of the period sought to capture more than a sitter's\r\n likeness, and Lemoyne has conveyed a sense of Cromot's strong character and\r\n lively intelligence. His voluminous robes are a convention from ancient\r\n sculpture and partly cover his informal modern dress.\n " +p306956 +sa(dp306957 +g291134 +S'A Prophet Addressed by an Angel' +p306958 +sg291137 +S'Sebastiano del Piombo' +p306959 +sg291130 +S'black chalk with gray and brown wash, heightened with white on blue paper, squared in red chalk' +p306960 +sg291132 +S'1516/1517' +p306961 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00037/a00037f0.jpg' +p306962 +sg291136 +g27 +sa(dp306963 +g291134 +S'An Artist Seated at His Easel [recto]' +p306964 +sg291137 +S'Andries Both' +p306965 +sg291130 +S'pen and brown ink' +p306966 +sg291132 +S'possibly c. 1634' +p306967 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dda.jpg' +p306968 +sg291136 +g27 +sa(dp306969 +g291130 +S'pen and brown ink' +p306970 +sg291132 +S'possibly c. 1634' +p306971 +sg291134 +S'Fragmentary Studies for a Crucifixion [verso]' +p306972 +sg291136 +g27 +sg291137 +S'Andries Both' +p306973 +sa(dp306974 +g291134 +S'A Bellowing Stag' +p306975 +sg291137 +S'Sir Edwin Landseer' +p306976 +sg291130 +S'pen and brown ink over graphite on wove paper' +p306977 +sg291132 +S'probably 1840/1850' +p306978 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cb0.jpg' +p306979 +sg291136 +g27 +sa(dp306980 +g291130 +S'(artist)' +p306981 +sg291132 +S'\n' +p306982 +sg291134 +S'Bibliotheca Radcliviana: Or, A Short Description Of The Radcliffe Library At Oxford' +p306983 +sg291136 +g27 +sg291137 +S'Artist Information (' +p306984 +sa(dp306985 +g291130 +S'(artist)' +p306986 +sg291132 +S'\n' +p306987 +sg291134 +S'The Plans, Elevations, and Sections; Chimney-Pieces, and Cielings [sic] of Houghton in Norfolk;' +p306988 +sg291136 +g27 +sg291137 +S'Artist Information (' +p306989 +sa(dp306990 +g291130 +S'(author)' +p306991 +sg291132 +S'\n' +p306992 +sg291134 +S'Iules Obsequent des Prodiges. Plvs Trois Liures de Polydore Vergile sur la mesme matiere.' +p306993 +sg291136 +g27 +sg291137 +S'Artist Information (' +p306994 +sa(dp306995 +g291130 +S'(artist)' +p306996 +sg291132 +S'\n' +p306997 +sg291134 +S'De Veldgezangen Van Thyrsis; De Gestrafte Kupido; Alwarde; Batrachomyomachia' +p306998 +sg291136 +g27 +sg291137 +S'Artist Information (' +p306999 +sa(dp307000 +g291130 +S', published 1522' +p307001 +sg291132 +S'\n' +p307002 +sg291134 +S'M. Vitrvvii De Architectvra Libri decem nuper maxima diligentia castigati atq;' +p307003 +sg291136 +g27 +sg291137 +S'Marcus Vitruvius Pollio' +p307004 +sa(dp307005 +g291134 +S'Louis XIII' +p307006 +sg291137 +S'Artist Information (' +p307007 +sg291130 +g27 +sg291132 +S'(artist)' +p307008 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d265.jpg' +p307009 +sg291136 +g27 +sa(dp307010 +g291134 +S'Francois Maynard' +p307011 +sg291137 +S'Pierre Daret de Cazeneuve' +p307012 +sg291130 +S'engraving and etching on thin laid paper' +p307013 +sg291132 +S'1646' +p307014 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00088/a00088f9.jpg' +p307015 +sg291136 +g27 +sa(dp307016 +g291134 +S'Portrait of an Unknown Gentleman' +p307017 +sg291137 +S'Jean Lenfant' +p307018 +sg291130 +S'engraving on laid paper' +p307019 +sg291132 +S'1649' +p307020 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b34.jpg' +p307021 +sg291136 +g27 +sa(dp307022 +g291134 +S'Queen Christina of Sweden' +p307023 +sg291137 +S'Artist Information (' +p307024 +sg291130 +S'(artist after)' +p307025 +sg291132 +S'\n' +p307026 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00096/a0009644.jpg' +p307027 +sg291136 +g27 +sa(dp307028 +g291134 +S'Jean Restout' +p307029 +sg291137 +S'Artist Information (' +p307030 +sg291130 +S'(artist after)' +p307031 +sg291132 +S'\n' +p307032 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f0a.jpg' +p307033 +sg291136 +g27 +sa(dp307034 +g291134 +S'Le Comte de Caylus' +p307035 +sg291137 +S'Jean-Baptiste de Lorraine' +p307036 +sg291130 +S'engraving and etching on heavy laid paper' +p307037 +sg291132 +S'unknown date\n' +p307038 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f0b.jpg' +p307039 +sg291136 +g27 +sa(dp307040 +g291134 +S'Marie-Antoinette' +p307041 +sg291137 +S'Artist Information (' +p307042 +sg291130 +S'(artist after)' +p307043 +sg291132 +S'\n' +p307044 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d22.jpg' +p307045 +sg291136 +g27 +sa(dp307046 +g291134 +S'Marie-Antoinette' +p307047 +sg291137 +S'Artist Information (' +p307048 +sg291130 +S'(artist after)' +p307049 +sg291132 +S'\n' +p307050 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ea6.jpg' +p307051 +sg291136 +g27 +sa(dp307052 +g291134 +S'Antoine Coyzevox' +p307053 +sg291137 +S'Artist Information (' +p307054 +sg291130 +S'(artist after)' +p307055 +sg291132 +S'\n' +p307056 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f26.jpg' +p307057 +sg291136 +g27 +sa(dp307058 +g291134 +S'Nicholas Bertin' +p307059 +sg291137 +S'Artist Information (' +p307060 +sg291130 +S'(artist after)' +p307061 +sg291132 +S'\n' +p307062 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008efe.jpg' +p307063 +sg291136 +g27 +sa(dp307064 +g291134 +S'Carle Vanloo' +p307065 +sg291137 +S'Artist Information (' +p307066 +sg291130 +S'(artist after)' +p307067 +sg291132 +S'\n' +p307068 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b35f.jpg' +p307069 +sg291136 +g27 +sa(dp307070 +g291134 +S'Louis Michel Vanloo' +p307071 +sg291137 +S'Artist Information (' +p307072 +sg291130 +S'(artist after)' +p307073 +sg291132 +S'\n' +p307074 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00096/a0009611.jpg' +p307075 +sg291136 +g27 +sa(dp307076 +g291134 +S'Gaspard Duchange' +p307077 +sg291137 +S'Artist Information (' +p307078 +sg291130 +S'(artist after)' +p307079 +sg291132 +S'\n' +p307080 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ea9.jpg' +p307081 +sg291136 +g27 +sa(dp307082 +g291134 +S'Frontispiece' +p307083 +sg291137 +S'James Jacques Joseph Tissot' +p307084 +sg291130 +S'etching in brown on wove paper' +p307085 +sg291132 +S'1882' +p307086 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009feb.jpg' +p307087 +sg291136 +g27 +sa(dp307088 +g291134 +S'The Departure' +p307089 +sg291137 +S'James Jacques Joseph Tissot' +p307090 +sg291130 +S'etching on laid paper' +p307091 +sg291132 +S'1882' +p307092 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fef.jpg' +p307093 +sg291136 +g27 +sa(dp307094 +g291134 +S'In Foreign Climes' +p307095 +sg291137 +S'James Jacques Joseph Tissot' +p307096 +sg291130 +S'etching on laid paper' +p307097 +sg291132 +S'1882' +p307098 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009ff0.jpg' +p307099 +sg291136 +g27 +sa(dp307100 +g291134 +S'The Return' +p307101 +sg291137 +S'James Jacques Joseph Tissot' +p307102 +sg291130 +S'etching on laid paper' +p307103 +sg291132 +S'1882' +p307104 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fed.jpg' +p307105 +sg291136 +g27 +sa(dp307106 +g291134 +S'The Fatted Calf' +p307107 +sg291137 +S'James Jacques Joseph Tissot' +p307108 +sg291130 +S'etching on laid paper' +p307109 +sg291132 +S'1882' +p307110 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fec.jpg' +p307111 +sg291136 +g27 +sa(dp307112 +g291130 +S'transfer lithograph from zinc in three colors on wove paper' +p307113 +sg291132 +S'1963' +p307114 +sg291134 +S'Gray Sea' +p307115 +sg291136 +g27 +sg291137 +S'Milton Avery' +p307116 +sa(dp307117 +g291134 +S'Cuirassier retenant son cheval qui se cabre' +p307118 +sg291137 +S'Carle Vernet' +p307119 +sg291130 +S'lithograph on wove paper' +p307120 +sg291132 +S'in or after 1816' +p307121 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e99.jpg' +p307122 +sg291136 +g27 +sa(dp307123 +g291134 +S'Five Tarts (F\xc3\xbcnf Kokotten)' +p307124 +sg291137 +S'Ernst Ludwig Kirchner' +p307125 +sg291130 +S'woodcut on blotting paper' +p307126 +sg291132 +S'1914' +p307127 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00017/a000177e.jpg' +p307128 +sg291136 +g27 +sa(dp307129 +g291130 +g27 +sg291132 +S'(publisher)' +p307130 +sg291134 +S'TR III' +p307131 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307132 +sa(dp307133 +g291130 +g27 +sg291132 +S'(publisher)' +p307134 +sg291134 +S'White Line Square II' +p307135 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307136 +sa(dp307137 +g291134 +S'White Line Square III' +p307138 +sg291137 +S'Artist Information (' +p307139 +sg291130 +g27 +sg291132 +S'(publisher)' +p307140 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000926.jpg' +p307141 +sg291136 +g27 +sa(dp307142 +g291130 +g27 +sg291132 +S'(publisher)' +p307143 +sg291134 +S'White Line Square IV' +p307144 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307145 +sa(dp307146 +g291130 +g27 +sg291132 +S'(publisher)' +p307147 +sg291134 +S'White Line Square V' +p307148 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307149 +sa(dp307150 +g291130 +g27 +sg291132 +S'(publisher)' +p307151 +sg291134 +S'White Line Square VI' +p307152 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307153 +sa(dp307154 +g291130 +g27 +sg291132 +S'(publisher)' +p307155 +sg291134 +S'White Line Square VII' +p307156 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307157 +sa(dp307158 +g291130 +g27 +sg291132 +S'(publisher)' +p307159 +sg291134 +S'White Line Square VIII' +p307160 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307161 +sa(dp307162 +g291130 +g27 +sg291132 +S'(publisher)' +p307163 +sg291134 +S'White Line Square IX' +p307164 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307165 +sa(dp307166 +g291130 +g27 +sg291132 +S'(publisher)' +p307167 +sg291134 +S'White Line Square X' +p307168 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307169 +sa(dp307170 +g291130 +g27 +sg291132 +S'(publisher)' +p307171 +sg291134 +S'White Line Square XI' +p307172 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307173 +sa(dp307174 +g291130 +g27 +sg291132 +S'(publisher)' +p307175 +sg291134 +S'White Line Square XVI' +p307176 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307177 +sa(dp307178 +g291130 +g27 +sg291132 +S'(publisher)' +p307179 +sg291134 +S'White Line Square XVII' +p307180 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307181 +sa(dp307182 +g291130 +g27 +sg291132 +S'(publisher)' +p307183 +sg291134 +S'White Embossing on Gray I' +p307184 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307185 +sa(dp307186 +g291130 +g27 +sg291132 +S'(publisher)' +p307187 +sg291134 +S'White Embossing on Gray III' +p307188 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307189 +sa(dp307190 +g291130 +g27 +sg291132 +S'(publisher)' +p307191 +sg291134 +S'White Embossing on Gray VI' +p307192 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307193 +sa(dp307194 +g291130 +g27 +sg291132 +S'(publisher)' +p307195 +sg291134 +S'White Embossing on Gray VII' +p307196 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307197 +sa(dp307198 +g291130 +g27 +sg291132 +S'(publisher)' +p307199 +sg291134 +S'White Embossing on Gray VIII' +p307200 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307201 +sa(dp307202 +g291130 +g27 +sg291132 +S'(publisher)' +p307203 +sg291134 +S'White Embossing on Gray IX' +p307204 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307205 +sa(dp307206 +g291130 +g27 +sg291132 +S'(publisher)' +p307207 +sg291134 +S'White Embossing on Gray X' +p307208 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307209 +sa(dp307210 +g291130 +g27 +sg291132 +S'(publisher)' +p307211 +sg291134 +S'Buffalo Heads' +p307212 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307213 +sa(dp307214 +g291130 +g27 +sg291132 +S'(publisher)' +p307215 +sg291134 +S'Train on Bridge' +p307216 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307217 +sa(dp307218 +g291130 +g27 +sg291132 +S'(publisher)' +p307219 +sg291134 +S'Burning Mining Town' +p307220 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307221 +sa(dp307222 +g291130 +g27 +sg291132 +S'(publisher)' +p307223 +sg291134 +S'Cube I' +p307224 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307225 +sa(dp307226 +g291130 +g27 +sg291132 +S'(publisher)' +p307227 +sg291134 +S'Cube III' +p307228 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307229 +sa(dp307230 +g291130 +g27 +sg291132 +S'(publisher)' +p307231 +sg291134 +S'Four Circle' +p307232 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307233 +sa(dp307234 +g291130 +g27 +sg291132 +S'(publisher)' +p307235 +sg291134 +S'Two Circle' +p307236 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307237 +sa(dp307238 +g291130 +g27 +sg291132 +S'(publisher)' +p307239 +sg291134 +S'Two Bar' +p307240 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307241 +sa(dp307242 +g291130 +g27 +sg291132 +S'(publisher)' +p307243 +sg291134 +S'Triangle Slice' +p307244 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307245 +sa(dp307246 +g291130 +g27 +sg291132 +S'(publisher)' +p307247 +sg291134 +S'Six Frame' +p307248 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307249 +sa(dp307250 +g291130 +g27 +sg291132 +S'(publisher)' +p307251 +sg291134 +S'Six Prong' +p307252 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307253 +sa(dp307254 +g291130 +g27 +sg291132 +S'(publisher)' +p307255 +sg291134 +S'Six Prong - Color Notation' +p307256 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307257 +sa(dp307258 +g291130 +g27 +sg291132 +S'(publisher)' +p307259 +sg291134 +S'Six Prong - Perspective Line' +p307260 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307261 +sa(dp307262 +g291130 +g27 +sg291132 +S'(publisher)' +p307263 +sg291134 +S'Six Prong - Color' +p307264 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307265 +sa(dp307266 +g291130 +g27 +sg291132 +S'(publisher)' +p307267 +sg291134 +S'Six Prong - Grey' +p307268 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307269 +sa(dp307270 +g291130 +g27 +sg291132 +S'(publisher)' +p307271 +sg291134 +S'U-Shape' +p307272 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307273 +sa(dp307274 +g291130 +g27 +sg291132 +S'(publisher)' +p307275 +sg291134 +S'Five Block Row' +p307276 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307277 +sa(dp307278 +g291130 +g27 +sg291132 +S'(publisher)' +p307279 +sg291134 +S'Black Vent Beam' +p307280 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307281 +sa(dp307282 +g291130 +g27 +sg291132 +S'(publisher)' +p307283 +sg291134 +S'Of Vega' +p307284 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307285 +sa(dp307286 +g291134 +S'Burnout' +p307287 +sg291137 +S'Artist Information (' +p307288 +sg291130 +g27 +sg291132 +S'(publisher)' +p307289 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a95.jpg' +p307290 +sg291136 +g27 +sa(dp307291 +g291130 +g27 +sg291132 +S'(publisher)' +p307292 +sg291134 +S'Pointing to the Future' +p307293 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307294 +sa(dp307295 +g291130 +g27 +sg291132 +S'(publisher)' +p307296 +sg291134 +S'Deft and Sudden Gain' +p307297 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307298 +sa(dp307299 +g291130 +g27 +sg291132 +S'(publisher)' +p307300 +sg291134 +S'Living in Our Own Light [top left panel]' +p307301 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307302 +sa(dp307303 +g291130 +g27 +sg291132 +S'(publisher)' +p307304 +sg291134 +S'Living in Our Own Light [top center panel]' +p307305 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307306 +sa(dp307307 +g291130 +g27 +sg291132 +S'(publisher)' +p307308 +sg291134 +S'Living in Our Own Light [top right panel]' +p307309 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307310 +sa(dp307311 +g291130 +g27 +sg291132 +S'(publisher)' +p307312 +sg291134 +S'Living in Our Own Light [bottom left panel]' +p307313 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307314 +sa(dp307315 +g291130 +g27 +sg291132 +S'(publisher)' +p307316 +sg291134 +S'Living in Our Own Light [bottom center panel]' +p307317 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307318 +sa(dp307319 +g291130 +g27 +sg291132 +S'(publisher)' +p307320 +sg291134 +S'Living in Our Own Light [bottom right panel]' +p307321 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307322 +sa(dp307323 +g291130 +g27 +sg291132 +S'(publisher)' +p307324 +sg291134 +S'Pointing at the Future II [left panel]' +p307325 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307326 +sa(dp307327 +g291130 +g27 +sg291132 +S'(publisher)' +p307328 +sg291134 +S'Pointing at the Future II [right panel]' +p307329 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307330 +sa(dp307331 +g291130 +g27 +sg291132 +S'(publisher)' +p307332 +sg291134 +S'Pointing at the Future III [left panel]' +p307333 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307334 +sa(dp307335 +g291130 +g27 +sg291132 +S'(publisher)' +p307336 +sg291134 +S'Pointing at the Future III [right panel]' +p307337 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307338 +sa(dp307339 +g291130 +g27 +sg291132 +S'(publisher)' +p307340 +sg291134 +S'Untitled' +p307341 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307342 +sa(dp307343 +g291130 +g27 +sg291132 +S'(publisher)' +p307344 +sg291134 +S'Untitled' +p307345 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307346 +sa(dp307347 +g291130 +g27 +sg291132 +S'(publisher)' +p307348 +sg291134 +S'Untitled' +p307349 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307350 +sa(dp307351 +g291130 +g27 +sg291132 +S'(publisher)' +p307352 +sg291134 +S'Untitled' +p307353 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307354 +sa(dp307355 +g291130 +g27 +sg291132 +S'(publisher)' +p307356 +sg291134 +S'Untitled' +p307357 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307358 +sa(dp307359 +g291130 +g27 +sg291132 +S'(publisher)' +p307360 +sg291134 +S'Untitled' +p307361 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307362 +sa(dp307363 +g291130 +g27 +sg291132 +S'(publisher)' +p307364 +sg291134 +S'Untitled' +p307365 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307366 +sa(dp307367 +g291130 +g27 +sg291132 +S'(publisher)' +p307368 +sg291134 +S'Untitled' +p307369 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307370 +sa(dp307371 +g291130 +g27 +sg291132 +S'(publisher)' +p307372 +sg291134 +S'Mo McDermott' +p307373 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307374 +sa(dp307375 +g291130 +g27 +sg291132 +S'(publisher)' +p307376 +sg291134 +S'Sketch from Untitled I' +p307377 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307378 +sa(dp307379 +g291130 +g27 +sg291132 +S'(publisher)' +p307380 +sg291134 +S'Blue/White/Red' +p307381 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307382 +sa(dp307383 +g291130 +g27 +sg291132 +S'(publisher)' +p307384 +sg291134 +S'Black/Green II' +p307385 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307386 +sa(dp307387 +g291130 +g27 +sg291132 +S'(publisher)' +p307388 +sg291134 +S'Green/Black' +p307389 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307390 +sa(dp307391 +g291130 +g27 +sg291132 +S'(publisher)' +p307392 +sg291134 +S'Black Curve' +p307393 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307394 +sa(dp307395 +g291130 +g27 +sg291132 +S'(publisher)' +p307396 +sg291134 +S'Black/Yellow' +p307397 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307398 +sa(dp307399 +g291130 +g27 +sg291132 +S'(publisher)' +p307400 +sg291134 +S'Two Whites and Black' +p307401 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307402 +sa(dp307403 +g291130 +g27 +sg291132 +S'(publisher)' +p307404 +sg291134 +S'Two Blacks and White' +p307405 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307406 +sa(dp307407 +g291130 +g27 +sg291132 +S'(publisher)' +p307408 +sg291134 +S'White and Black' +p307409 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307410 +sa(dp307411 +g291130 +g27 +sg291132 +S'(publisher)' +p307412 +sg291134 +S'Black and White Pyramid' +p307413 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307414 +sa(dp307415 +g291130 +g27 +sg291132 +S'(publisher)' +p307416 +sg291134 +S'White Curve I (Black Curve I)' +p307417 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307418 +sa(dp307419 +g291130 +g27 +sg291132 +S'(publisher)' +p307420 +sg291134 +S'White Curve I' +p307421 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307422 +sa(dp307423 +g291130 +g27 +sg291132 +S'(publisher)' +p307424 +sg291134 +S'White Bar with Black' +p307425 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307426 +sa(dp307427 +g291130 +g27 +sg291132 +S'(publisher)' +p307428 +sg291134 +S'Peach Branch' +p307429 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307430 +sa(dp307431 +g291130 +g27 +sg291132 +S'(publisher)' +p307432 +sg291134 +S'Grape Leaves I' +p307433 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307434 +sa(dp307435 +g291130 +g27 +sg291132 +S'(publisher)' +p307436 +sg291134 +S'Grape Leaves II' +p307437 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307438 +sa(dp307439 +g291130 +g27 +sg291132 +S'(publisher)' +p307440 +sg291134 +S'Grape Leaves III' +p307441 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307442 +sa(dp307443 +g291130 +g27 +sg291132 +S'(publisher)' +p307444 +sg291134 +S'Blue with Black I' +p307445 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307446 +sa(dp307447 +g291130 +g27 +sg291132 +S'(publisher)' +p307448 +sg291134 +S'Two Yellows' +p307449 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307450 +sa(dp307451 +g291130 +g27 +sg291132 +S'(publisher)' +p307452 +sg291134 +S'Black Variation I' +p307453 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307454 +sa(dp307455 +g291130 +g27 +sg291132 +S'(publisher)' +p307456 +sg291134 +S'Black Variation II' +p307457 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307458 +sa(dp307459 +g291130 +g27 +sg291132 +S'(publisher)' +p307460 +sg291134 +S'Black Variation III' +p307461 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307462 +sa(dp307463 +g291130 +g27 +sg291132 +S'(publisher)' +p307464 +sg291134 +S'Black Variation IV' +p307465 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307466 +sa(dp307467 +g291130 +g27 +sg291132 +S'(publisher)' +p307468 +sg291134 +S'Black Variation V' +p307469 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307470 +sa(dp307471 +g291130 +g27 +sg291132 +S'(publisher)' +p307472 +sg291134 +S'Black Variation VI' +p307473 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307474 +sa(dp307475 +g291130 +g27 +sg291132 +S'(publisher)' +p307476 +sg291134 +S'Gray Variation' +p307477 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307478 +sa(dp307479 +g291130 +g27 +sg291132 +S'(publisher)' +p307480 +sg291134 +S'Poitiers' +p307481 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307482 +sa(dp307483 +g291130 +g27 +sg291132 +S'(publisher)' +p307484 +sg291134 +S'Corneilla' +p307485 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307486 +sa(dp307487 +g291130 +g27 +sg291132 +S'(publisher)' +p307488 +sg291134 +S'Talmont' +p307489 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307490 +sa(dp307491 +g291130 +g27 +sg291132 +S'(publisher)' +p307492 +sg291134 +S'Chauvigny' +p307493 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307494 +sa(dp307495 +g291130 +g27 +sg291132 +S'(publisher)' +p307496 +sg291134 +S'Caen' +p307497 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307498 +sa(dp307499 +g291130 +g27 +sg291132 +S'(publisher)' +p307500 +sg291134 +S'Fontenay' +p307501 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307502 +sa(dp307503 +g291130 +g27 +sg291132 +S'(publisher)' +p307504 +sg291134 +S'Angers' +p307505 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307506 +sa(dp307507 +g291130 +g27 +sg291132 +S'(publisher)' +p307508 +sg291134 +S'Tournus' +p307509 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307510 +sa(dp307511 +g291130 +g27 +sg291132 +S'(publisher)' +p307512 +sg291134 +S'Canigou' +p307513 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307514 +sa(dp307515 +g291130 +g27 +sg291132 +S'(publisher)' +p307516 +sg291134 +S'Saint-Savin' +p307517 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307518 +sa(dp307519 +g291130 +g27 +sg291132 +S'(publisher)' +p307520 +sg291134 +S'Montmorillon' +p307521 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307522 +sa(dp307523 +g291130 +g27 +sg291132 +S'(publisher)' +p307524 +sg291134 +S'Vic' +p307525 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307526 +sa(dp307527 +g291130 +g27 +sg291132 +S'(publisher)' +p307528 +sg291134 +S'Fontevrault' +p307529 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307530 +sa(dp307531 +g291130 +g27 +sg291132 +S'(publisher)' +p307532 +sg291134 +S'Souillac' +p307533 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307534 +sa(dp307535 +g291130 +g27 +sg291132 +S'(publisher)' +p307536 +sg291134 +S'Leaf I' +p307537 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307538 +sa(dp307539 +g291130 +g27 +sg291132 +S'(publisher)' +p307540 +sg291134 +S'Leaf II' +p307541 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307542 +sa(dp307543 +g291130 +g27 +sg291132 +S'(publisher)' +p307544 +sg291134 +S'Leaf III' +p307545 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307546 +sa(dp307547 +g291130 +g27 +sg291132 +S'(publisher)' +p307548 +sg291134 +S'Leaf V' +p307549 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307550 +sa(dp307551 +g291130 +g27 +sg291132 +S'(publisher)' +p307552 +sg291134 +S'Leaf VII' +p307553 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307554 +sa(dp307555 +g291130 +g27 +sg291132 +S'(publisher)' +p307556 +sg291134 +S'Leaf VIII' +p307557 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307558 +sa(dp307559 +g291130 +g27 +sg291132 +S'(publisher)' +p307560 +sg291134 +S'Leaf IX' +p307561 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307562 +sa(dp307563 +g291130 +g27 +sg291132 +S'(publisher)' +p307564 +sg291134 +S'Leaf X' +p307565 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307566 +sa(dp307567 +g291130 +g27 +sg291132 +S'(publisher)' +p307568 +sg291134 +S'Leaf XI' +p307569 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307570 +sa(dp307571 +g291130 +g27 +sg291132 +S'(publisher)' +p307572 +sg291134 +S'Cathedral #5' +p307573 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307574 +sa(dp307575 +g291130 +g27 +sg291132 +S'(publisher)' +p307576 +sg291134 +S'Cathedral #6, State II' +p307577 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307578 +sa(dp307579 +g291130 +g27 +sg291132 +S'(publisher)' +p307580 +sg291134 +S'Haystack #1' +p307581 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307582 +sa(dp307583 +g291130 +g27 +sg291132 +S'(publisher)' +p307584 +sg291134 +S'Haystack #2' +p307585 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307586 +sa(dp307587 +g291130 +g27 +sg291132 +S'(publisher)' +p307588 +sg291134 +S'Haystack #3' +p307589 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307590 +sa(dp307591 +g291130 +g27 +sg291132 +S'(publisher)' +p307592 +sg291134 +S'Haystack #4' +p307593 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307594 +sa(dp307595 +g291130 +g27 +sg291132 +S'(publisher)' +p307596 +sg291134 +S'Haystack #5' +p307597 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307598 +sa(dp307599 +g291130 +g27 +sg291132 +S'(publisher)' +p307600 +sg291134 +S'Haystack #6' +p307601 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307602 +sa(dp307603 +g291130 +g27 +sg291132 +S'(publisher)' +p307604 +sg291134 +S'Haystack #7' +p307605 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307606 +sa(dp307607 +g291130 +S'lithograph on Special Arjomari paper' +p307608 +sg291132 +S'1970' +p307609 +sg291134 +S'Litho/Litho' +p307610 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p307611 +sa(dp307612 +g291130 +S'line-cut and screenprint with embossing and collage on Arjomari paper' +p307613 +sg291132 +S'1972' +p307614 +sg291134 +S'Mirror #1' +p307615 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p307616 +sa(dp307617 +g291130 +g27 +sg291132 +S'(publisher)' +p307618 +sg291134 +S'Mirror #2' +p307619 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307620 +sa(dp307621 +g291130 +g27 +sg291132 +S'(publisher)' +p307622 +sg291134 +S'Mirror #4' +p307623 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307624 +sa(dp307625 +g291130 +g27 +sg291132 +S'(publisher)' +p307626 +sg291134 +S'Mirror #5' +p307627 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307628 +sa(dp307629 +g291130 +S'lithograph and screenprint on Special Arjomari paper' +p307630 +sg291132 +S'1972' +p307631 +sg291134 +S'Mirror #7' +p307632 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p307633 +sa(dp307634 +g291130 +g27 +sg291132 +S'(publisher)' +p307635 +sg291134 +S'Mirror #8' +p307636 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307637 +sa(dp307638 +g291130 +g27 +sg291132 +S'(publisher)' +p307639 +sg291134 +S'Harvest, with Blue Bottom' +p307640 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307641 +sa(dp307642 +g291130 +g27 +sg291132 +S'(publisher)' +p307643 +sg291134 +S'Soot-Black Stone, #2' +p307644 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307645 +sa(dp307646 +g291130 +g27 +sg291132 +S'(publisher)' +p307647 +sg291134 +S'Soot-Black Stone, #3' +p307648 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307649 +sa(dp307650 +g291130 +g27 +sg291132 +S'(publisher)' +p307651 +sg291134 +S'Soot-Black Stone, #4' +p307652 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307653 +sa(dp307654 +g291130 +g27 +sg291132 +S'(publisher)' +p307655 +sg291134 +S'Soot-Black Stone, #5' +p307656 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307657 +sa(dp307658 +g291130 +g27 +sg291132 +S'(publisher)' +p307659 +sg291134 +S'Soot-Black Stone, #6' +p307660 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307661 +sa(dp307662 +g291130 +g27 +sg291132 +S'(publisher)' +p307663 +sg291134 +S'Atascadero I' +p307664 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307665 +sa(dp307666 +g291130 +g27 +sg291132 +S'(publisher)' +p307667 +sg291134 +S'Suposter' +p307668 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307669 +sa(dp307670 +g291130 +g27 +sg291132 +S'(publisher)' +p307671 +sg291134 +S'Eat Death' +p307672 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307673 +sa(dp307674 +g291130 +g27 +sg291132 +S'(publisher)' +p307675 +sg291134 +S'Sugar/Ragus' +p307676 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307677 +sa(dp307678 +g291130 +g27 +sg291132 +S'(publisher)' +p307679 +sg291134 +S'Pay Attention' +p307680 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307681 +sa(dp307682 +g291130 +g27 +sg291132 +S'(publisher)' +p307683 +sg291134 +S'Suck Cuts' +p307684 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307685 +sa(dp307686 +g291130 +g27 +sg291132 +S'(publisher)' +p307687 +sg291134 +S'Vision' +p307688 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307689 +sa(dp307690 +g291130 +g27 +sg291132 +S'(publisher)' +p307691 +sg291134 +S'Dead' +p307692 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307693 +sa(dp307694 +g291130 +g27 +sg291132 +S'(publisher)' +p307695 +sg291134 +S'No Sweat' +p307696 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307697 +sa(dp307698 +g291130 +g27 +sg291132 +S'(publisher)' +p307699 +sg291134 +S'Silver Grotto/Yellow Grotto' +p307700 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307701 +sa(dp307702 +g291130 +g27 +sg291132 +S'(publisher)' +p307703 +sg291134 +S'Soft Screws, Tumbling - #1' +p307704 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307705 +sa(dp307706 +g291130 +g27 +sg291132 +S'(publisher)' +p307707 +sg291134 +S'Soft Screws, Tumbling - #2' +p307708 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307709 +sa(dp307710 +g291130 +g27 +sg291132 +S'(publisher)' +p307711 +sg291134 +S'Colossal Screw in Landscape - Type 2' +p307712 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307713 +sa(dp307714 +g291130 +g27 +sg291132 +S'(publisher)' +p307715 +sg291134 +S'Figurine Cup I' +p307716 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307717 +sa(dp307718 +g291130 +g27 +sg291132 +S'(publisher)' +p307719 +sg291134 +S'Figurine Cup II' +p307720 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307721 +sa(dp307722 +g291130 +g27 +sg291132 +S'(publisher)' +p307723 +sg291134 +S'Figurine Cup III' +p307724 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307725 +sa(dp307726 +g291130 +g27 +sg291132 +S'(publisher)' +p307727 +sg291134 +S'Figurine Cup IV' +p307728 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307729 +sa(dp307730 +g291130 +g27 +sg291132 +S'(publisher)' +p307731 +sg291134 +S'French Figurine Cup' +p307732 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307733 +sa(dp307734 +g291130 +g27 +sg291132 +S'(publisher)' +p307735 +sg291134 +S'Frog Cup' +p307736 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307737 +sa(dp307738 +g291130 +g27 +sg291132 +S'(publisher)' +p307739 +sg291134 +S'Boy Touching Man Touching Upper Lip' +p307740 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307741 +sa(dp307742 +g291130 +g27 +sg291132 +S'(publisher)' +p307743 +sg291134 +S'Test Stone #5A' +p307744 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307745 +sa(dp307746 +g291130 +g27 +sg291132 +S'(publisher)' +p307747 +sg291134 +S'Arena I State I' +p307748 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307749 +sa(dp307750 +g291130 +g27 +sg291132 +S'(publisher)' +p307751 +sg291134 +S'Arena II State II' +p307752 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307753 +sa(dp307754 +g291130 +g27 +sg291132 +S'(publisher)' +p307755 +sg291134 +S'Brake' +p307756 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307757 +sa(dp307758 +g291130 +g27 +sg291132 +S'(publisher)' +p307759 +sg291134 +S'Sky Rite' +p307760 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307761 +sa(dp307762 +g291130 +g27 +sg291132 +S'(publisher)' +p307763 +sg291134 +S'Fuse' +p307764 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307765 +sa(dp307766 +g291130 +g27 +sg291132 +S'(publisher)' +p307767 +sg291134 +S'Tracks' +p307768 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307769 +sa(dp307770 +g291130 +g27 +sg291132 +S'(publisher)' +p307771 +sg291134 +S'Strawboss' +p307772 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307773 +sa(dp307774 +g291130 +g27 +sg291132 +S'(publisher)' +p307775 +sg291134 +S'Score' +p307776 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307777 +sa(dp307778 +g291130 +g27 +sg291132 +S'(publisher)' +p307779 +sg291134 +S'Cardbird I' +p307780 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307781 +sa(dp307782 +g291130 +g27 +sg291132 +S'(publisher)' +p307783 +sg291134 +S'Cardbird III' +p307784 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307785 +sa(dp307786 +g291130 +g27 +sg291132 +S'(publisher)' +p307787 +sg291134 +S'Cardbird IV' +p307788 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307789 +sa(dp307790 +g291130 +g27 +sg291132 +S'(publisher)' +p307791 +sg291134 +S'Cardbird V' +p307792 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307793 +sa(dp307794 +g291130 +g27 +sg291132 +S'(publisher)' +p307795 +sg291134 +S'Cardbird VI' +p307796 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307797 +sa(dp307798 +g291130 +g27 +sg291132 +S'(publisher)' +p307799 +sg291134 +S'Cardbird VII' +p307800 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307801 +sa(dp307802 +g291130 +g27 +sg291132 +S'(publisher)' +p307803 +sg291134 +S'Horsefeathers Thirteen - III' +p307804 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307805 +sa(dp307806 +g291130 +g27 +sg291132 +S'(publisher)' +p307807 +sg291134 +S'Horsefeathers Thirteen - IV' +p307808 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307809 +sa(dp307810 +g291130 +g27 +sg291132 +S'(publisher)' +p307811 +sg291134 +S'Horsefeathers Thirteen - V' +p307812 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307813 +sa(dp307814 +g291130 +g27 +sg291132 +S'(publisher)' +p307815 +sg291134 +S'Horsefeathers Thirteen - VI' +p307816 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307817 +sa(dp307818 +g291130 +g27 +sg291132 +S'(publisher)' +p307819 +sg291134 +S'Horsefeathers Thirteen - VII' +p307820 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307821 +sa(dp307822 +g291130 +g27 +sg291132 +S'(publisher)' +p307823 +sg291134 +S'Horsefeathers Thirteen - VIII' +p307824 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307825 +sa(dp307826 +g291130 +g27 +sg291132 +S'(publisher)' +p307827 +sg291134 +S'Horsefeathers Thirteen - IX' +p307828 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307829 +sa(dp307830 +g291130 +g27 +sg291132 +S'(publisher)' +p307831 +sg291134 +S'Horsefeathers Thirteen - X' +p307832 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307833 +sa(dp307834 +g291130 +g27 +sg291132 +S'(publisher)' +p307835 +sg291134 +S'Horsefeathers Thirteen - XIII' +p307836 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307837 +sa(dp307838 +g291130 +g27 +sg291132 +S'(publisher)' +p307839 +sg291134 +S'Sub-Total' +p307840 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307841 +sa(dp307842 +g291130 +g27 +sg291132 +S'(publisher)' +p307843 +sg291134 +S'Cardbird Box I' +p307844 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307845 +sa(dp307846 +g291130 +g27 +sg291132 +S'(publisher)' +p307847 +sg291134 +S'Sand' +p307848 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307849 +sa(dp307850 +g291130 +g27 +sg291132 +S'(publisher)' +p307851 +sg291134 +S'Romances (Yoke)' +p307852 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307853 +sa(dp307854 +g291130 +g27 +sg291132 +S'(publisher)' +p307855 +sg291134 +S'Air Pocket' +p307856 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307857 +sa(dp307858 +g291130 +g27 +sg291132 +S'(publisher)' +p307859 +sg291134 +S'Air, Water, Fire' +p307860 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307861 +sa(dp307862 +g291130 +g27 +sg291132 +S'(publisher)' +p307863 +sg291134 +S'Closed' +p307864 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307865 +sa(dp307866 +g291134 +S'Music' +p307867 +sg291137 +S'Artist Information (' +p307868 +sg291130 +g27 +sg291132 +S'(publisher)' +p307869 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b7d.jpg' +p307870 +sg291136 +g27 +sa(dp307871 +g291130 +g27 +sg291132 +S'(publisher)' +p307872 +sg291134 +S'Eleven Pieces of Cheese' +p307873 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307874 +sa(dp307875 +g291130 +g27 +sg291132 +S'(publisher)' +p307876 +sg291134 +S'Cheese Crescent' +p307877 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307878 +sa(dp307879 +g291130 +g27 +sg291132 +S'(publisher)' +p307880 +sg291134 +S'Miracle' +p307881 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307882 +sa(dp307883 +g291130 +g27 +sg291132 +S'(publisher)' +p307884 +sg291134 +S'Double Ring II' +p307885 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307886 +sa(dp307887 +g291130 +g27 +sg291132 +S'(publisher)' +p307888 +sg291134 +S'Du Common' +p307889 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307890 +sa(dp307891 +g291130 +g27 +sg291132 +S'(publisher)' +p307892 +sg291134 +S'Spoleto Circle' +p307893 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307894 +sa(dp307895 +g291130 +g27 +sg291132 +S'(publisher)' +p307896 +sg291134 +S'Video Still Screen I' +p307897 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307898 +sa(dp307899 +g291130 +g27 +sg291132 +S'(publisher)' +p307900 +sg291134 +S'Video Still Screen II' +p307901 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307902 +sa(dp307903 +g291130 +g27 +sg291132 +S'(publisher)' +p307904 +sg291134 +S'Video Still Screen IV' +p307905 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307906 +sa(dp307907 +g291130 +g27 +sg291132 +S'(publisher)' +p307908 +sg291134 +S'Video Still Screen V' +p307909 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307910 +sa(dp307911 +g291130 +g27 +sg291132 +S'(publisher)' +p307912 +sg291134 +S'Control Scene' +p307913 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307914 +sa(dp307915 +g291130 +g27 +sg291132 +S'(publisher)' +p307916 +sg291134 +S'Toiny Orbit - State [right panel]' +p307917 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307918 +sa(dp307919 +g291130 +g27 +sg291132 +S'(publisher)' +p307920 +sg291134 +S'Toiny Orbit - State [left panel]' +p307921 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307922 +sa(dp307923 +g291130 +g27 +sg291132 +S'(publisher)' +p307924 +sg291134 +S'Orbit II' +p307925 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307926 +sa(dp307927 +g291130 +g27 +sg291132 +S'(publisher)' +p307928 +sg291134 +S'Clinton Plaza' +p307929 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307930 +sa(dp307931 +g291130 +g27 +sg291132 +S'(publisher)' +p307932 +sg291134 +S'Arundel Castle' +p307933 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307934 +sa(dp307935 +g291130 +g27 +sg291132 +S'(publisher)' +p307936 +sg291134 +S'Die Fahne Hoch!' +p307937 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307938 +sa(dp307939 +g291130 +g27 +sg291132 +S'(publisher)' +p307940 +sg291134 +S'Marriage of Reason and Squalor' +p307941 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307942 +sa(dp307943 +g291130 +g27 +sg291132 +S'(publisher)' +p307944 +sg291134 +S'Tomlinson Court Park' +p307945 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307946 +sa(dp307947 +g291130 +g27 +sg291132 +S'(publisher)' +p307948 +sg291134 +S'Getty Tomb' +p307949 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307950 +sa(dp307951 +g291130 +g27 +sg291132 +S'(publisher)' +p307952 +sg291134 +S"Bethlehem's Hospital" +p307953 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307954 +sa(dp307955 +g291130 +g27 +sg291132 +S'(publisher)' +p307956 +sg291134 +S'Tuxedo Park' +p307957 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307958 +sa(dp307959 +g291130 +g27 +sg291132 +S'(publisher)' +p307960 +sg291134 +S'Gezira' +p307961 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307962 +sa(dp307963 +g291130 +g27 +sg291132 +S'(publisher)' +p307964 +sg291134 +S'Point of Pines' +p307965 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307966 +sa(dp307967 +g291130 +g27 +sg291132 +S'(publisher)' +p307968 +sg291134 +S'Zambesi' +p307969 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307970 +sa(dp307971 +g291130 +g27 +sg291132 +S'(publisher)' +p307972 +sg291134 +S'Jill' +p307973 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307974 +sa(dp307975 +g291130 +g27 +sg291132 +S'(publisher)' +p307976 +sg291134 +S'Delphine and Hippolyte' +p307977 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307978 +sa(dp307979 +g291130 +g27 +sg291132 +S'(publisher)' +p307980 +sg291134 +S'Gavotte' +p307981 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307982 +sa(dp307983 +g291130 +g27 +sg291132 +S'(publisher)' +p307984 +sg291134 +S'Turkish Mambo' +p307985 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307986 +sa(dp307987 +g291130 +g27 +sg291132 +S'(publisher)' +p307988 +sg291134 +S'Creede II' +p307989 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307990 +sa(dp307991 +g291130 +g27 +sg291132 +S'(publisher)' +p307992 +sg291134 +S'Creede I' +p307993 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307994 +sa(dp307995 +g291130 +g27 +sg291132 +S'(publisher)' +p307996 +sg291134 +S'Telluride' +p307997 +sg291136 +g27 +sg291137 +S'Artist Information (' +p307998 +sa(dp307999 +g291130 +g27 +sg291132 +S'(publisher)' +p308000 +sg291134 +S'Pagosa Springs' +p308001 +sg291136 +g27 +sg291137 +S'Artist Information (' +p308002 +sa(dp308003 +g291130 +g27 +sg291132 +S'(publisher)' +p308004 +sg291134 +S'Ophir' +p308005 +sg291136 +g27 +sg291137 +S'Artist Information (' +p308006 +sa(dp308007 +g291130 +g27 +sg291132 +S'(publisher)' +p308008 +sg291134 +S'Kay Bearman' +p308009 +sg291136 +g27 +sg291137 +S'Artist Information (' +p308010 +sa(dp308011 +g291130 +g27 +sg291132 +S'(publisher)' +p308012 +sg291134 +S'Ileana Sonnabend' +p308013 +sg291136 +g27 +sg291137 +S'Artist Information (' +p308014 +sa(dp308015 +g291130 +g27 +sg291132 +S'(publisher)' +p308016 +sg291134 +S'Henry Garden' +p308017 +sg291136 +g27 +sg291137 +S'Artist Information (' +p308018 +sa(dp308019 +g291130 +g27 +sg291132 +S'(publisher)' +p308020 +sg291134 +S'D.' +p308021 +sg291136 +g27 +sg291137 +S'Artist Information (' +p308022 +sa(dp308023 +g291130 +g27 +sg291132 +S'(publisher)' +p308024 +sg291134 +S'Sidney Guberman' +p308025 +sg291136 +g27 +sg291137 +S'Artist Information (' +p308026 +sa(dp308027 +g291130 +g27 +sg291132 +S'(publisher)' +p308028 +sg291134 +S'Charlotte Tokayer' +p308029 +sg291136 +g27 +sg291137 +S'Artist Information (' +p308030 +sa(dp308031 +g291130 +g27 +sg291132 +S'(publisher)' +p308032 +sg291134 +S'Carl Andre' +p308033 +sg291136 +g27 +sg291137 +S'Artist Information (' +p308034 +sa(dp308035 +g291130 +g27 +sg291132 +S'(publisher)' +p308036 +sg291134 +S'Hollis Frampton' +p308037 +sg291136 +g27 +sg291137 +S'Artist Information (' +p308038 +sa(dp308039 +g291130 +g27 +sg291132 +S'(publisher)' +p308040 +sg291134 +S'Leo Castelli' +p308041 +sg291136 +g27 +sg291137 +S'Artist Information (' +p308042 +sa(dp308043 +g291130 +g27 +sg291132 +S'(publisher)' +p308044 +sg291134 +S'Del Mar' +p308045 +sg291136 +g27 +sg291137 +S'Artist Information (' +p308046 +sa(dp308047 +g291130 +g27 +sg291132 +S'(publisher)' +p308048 +sg291134 +S'Vote McGovern' +p308049 +sg291136 +g27 +sg291137 +S'Artist Information (' +p308050 +sa(dp308051 +g291130 +S'color lithograph (aluminum and stone) with collage on buff Arches Cover paper [cancellation proof]' +p308052 +sg291132 +S'1973' +p308053 +sg291134 +S'Untitled 1' +p308054 +sg291136 +g27 +sg291137 +S'Arakawa' +p308055 +sa(dp308056 +g291130 +S'color lithograph (aluminum) on Rives B.F.K. paper [cancellation proof]' +p308057 +sg291132 +S'1973' +p308058 +sg291134 +S'Untitled 2' +p308059 +sg291136 +g27 +sg291137 +S'Arakawa' +p308060 +sa(dp308061 +g291130 +S'color lithograph (stone and aluminum) on Arches Cover paper [cancellation proof]' +p308062 +sg291132 +S'1973' +p308063 +sg291134 +S'Untitled 3' +p308064 +sg291136 +g27 +sg291137 +S'Arakawa' +p308065 +sa(dp308066 +g291130 +S'color lithograph (aluminum) with collage on Arches Cover paper [cancellation proof]' +p308067 +sg291132 +S'1973' +p308068 +sg291134 +S'Untitled 4' +p308069 +sg291136 +g27 +sg291137 +S'Arakawa' +p308070 +sa(dp308071 +g291130 +S'color lithograph (aluminum) and silkscreen on Arches Cover paper [cancellation proof]' +p308072 +sg291132 +S'1973' +p308073 +sg291134 +S'Untitled 5' +p308074 +sg291136 +g27 +sg291137 +S'Arakawa' +p308075 +sa(dp308076 +g291130 +S'color lithograph (aluminum and stone) on Arches Cover paper [cancellation proof]' +p308077 +sg291132 +S'1973' +p308078 +sg291134 +S'Untitled 6' +p308079 +sg291136 +g27 +sg291137 +S'Arakawa' +p308080 +sa(dp308081 +g291130 +S'lithograph (aluminum) in black and neutral with a screenprinted varnish layer on Natsume 4007 Japanese paper [cancellation proof]' +p308082 +sg291132 +S'1974' +p308083 +sg291134 +S'The Plant Becomes a Fan #1' +p308084 +sg291136 +g27 +sg291137 +S'Jim Dine' +p308085 +sa(dp308086 +g291130 +S'lithograph (aluminum) in black and neutral with a screenprinted varnish layer on Natsume 4007 Japanese paper [cancellation proof]' +p308087 +sg291132 +S'1974/1975' +p308088 +sg291134 +S'The Plant Becomes a Fan #2' +p308089 +sg291136 +g27 +sg291137 +S'Jim Dine' +p308090 +sa(dp308091 +g291130 +S'lithograph (aluminum) in black and neutral with a screenprinted varnish layer on Natsume 4007 Japanese paper [cancellation proof]' +p308092 +sg291132 +S'1974' +p308093 +sg291134 +S'The Plant Becomes a Fan #3' +p308094 +sg291136 +g27 +sg291137 +S'Jim Dine' +p308095 +sa(dp308096 +g291130 +S'lithograph (aluminum) in black and neutral with a screenprinted varnish layer on Natsume 4007 Japanese paper [cancellation proof]' +p308097 +sg291132 +S'1974/1975' +p308098 +sg291134 +S'The Plant Becomes a Fan #4' +p308099 +sg291136 +g27 +sg291137 +S'Jim Dine' +p308100 +sa(dp308101 +g291130 +S'lithograph (aluminum) in black and neutral with a screenprinted varnish layer on Natsume 4007 Japanese paper [cancellation proof]' +p308102 +sg291132 +S'1974/1975' +p308103 +sg291134 +S'The Plant Becomes a Fan #5' +p308104 +sg291136 +g27 +sg291137 +S'Jim Dine' +p308105 +sa(dp308106 +g291130 +S'woodcut block [rejected printing element]' +p308107 +sg291132 +S'1974/1975' +p308108 +sg291134 +S'Bathrobe' +p308109 +sg291136 +g27 +sg291137 +S'Jim Dine' +p308110 +sa(dp308111 +g291130 +S'lithograph (stone) in black on Natsume 4007 Japanese paper [working proof]' +p308112 +sg291132 +S'1974/1975' +p308113 +sg291134 +S'The Woodcut Bathrobe' +p308114 +sg291136 +g27 +sg291137 +S'Jim Dine' +p308115 +sa(dp308116 +g291130 +S'color woodcut on Natsume 4007 Japanese paper [trial proof]' +p308117 +sg291132 +S'1974/1975' +p308118 +sg291134 +S'The Woodcut Bathrobe' +p308119 +sg291136 +g27 +sg291137 +S'Jim Dine' +p308120 +sa(dp308121 +g291130 +S'color woodcut on Natsume 4007 Japanese paper [trial proof]' +p308122 +sg291132 +S'1974/1975' +p308123 +sg291134 +S'The Woodcut Bathrobe' +p308124 +sg291136 +g27 +sg291137 +S'Jim Dine' +p308125 +sa(dp308126 +g291130 +S'color woodcut and lithograph in black on Natusume 4007 Japanese paper [trial proof]' +p308127 +sg291132 +S'1974/1975' +p308128 +sg291134 +S'The Woodcut Bathrobe' +p308129 +sg291136 +g27 +sg291137 +S'Jim Dine' +p308130 +sa(dp308131 +g291130 +S'color woodcut and lithograph in black on Natusume 4007 Japanese paper [trial proof]' +p308132 +sg291132 +S'1974/1975' +p308133 +sg291134 +S'The Woodcut Bathrobe' +p308134 +sg291136 +g27 +sg291137 +S'Jim Dine' +p308135 +sa(dp308136 +g291130 +S'watercolor over graphite' +p308137 +sg291132 +S'1969' +p308138 +sg291134 +S'Study for "Untitled"' +p308139 +sg291136 +g27 +sg291137 +S'Charles Hinman' +p308140 +sa(dp308141 +g291130 +S'watercolor over graphite' +p308142 +sg291132 +S'1969' +p308143 +sg291134 +S'Study for "Untitled"' +p308144 +sg291136 +g27 +sg291137 +S'Charles Hinman' +p308145 +sa(dp308146 +g291130 +S'graphite' +p308147 +sg291132 +S'1969' +p308148 +sg291134 +S'Study for "Untitled"' +p308149 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p308150 +sa(dp308151 +g291130 +S'sepia wash' +p308152 +sg291132 +S'1969' +p308153 +sg291134 +S'Study for "Untitled"' +p308154 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p308155 +sa(dp308156 +g291130 +S'graphite' +p308157 +sg291132 +S'1969' +p308158 +sg291134 +S'Study for "Untitled"' +p308159 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p308160 +sa(dp308161 +g291130 +S'graphite' +p308162 +sg291132 +S'1969' +p308163 +sg291134 +S'Study for "Untitled"' +p308164 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p308165 +sa(dp308166 +g291130 +S'graphite' +p308167 +sg291132 +S'1969' +p308168 +sg291134 +S'Study for "Untitled"' +p308169 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p308170 +sa(dp308171 +g291130 +S'graphite' +p308172 +sg291132 +S'1969' +p308173 +sg291134 +S'Study for "Untitled"' +p308174 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p308175 +sa(dp308176 +g291130 +S'graphite' +p308177 +sg291132 +S'1969' +p308178 +sg291134 +S'Study for "Untitled"' +p308179 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p308180 +sa(dp308181 +g291130 +S'graphite' +p308182 +sg291132 +S'1969' +p308183 +sg291134 +S'Study for "Untitled"' +p308184 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p308185 +sa(dp308186 +g291130 +S'graphite' +p308187 +sg291132 +S'1969' +p308188 +sg291134 +S'Study for "Untitled"' +p308189 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p308190 +sa(dp308191 +g291130 +S'gray wash' +p308192 +sg291132 +S'1969' +p308193 +sg291134 +S'Study for "Untitled"' +p308194 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p308195 +sa(dp308196 +g291130 +S'lithograph (aluminum) in black on Arches paper [cancellation proof]' +p308197 +sg291132 +S'1975' +p308198 +sg291134 +S'Two Female Models on Rocker and Stool' +p308199 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p308200 +sa(dp308201 +g291130 +S'cardboard [prototype]' +p308202 +sg291132 +S'1971' +p308203 +sg291134 +S'Tampa Clay Piece 1' +p308204 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p308205 +sa(dp308206 +g291130 +S'cardboard [prototype]' +p308207 +sg291132 +S'1971' +p308208 +sg291134 +S'Tampa Clay Piece 2' +p308209 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p308210 +sa(dp308211 +g291130 +S'cardboard [prototype]' +p308212 +sg291132 +S'1971' +p308213 +sg291134 +S'Tampa Clay Piece 3' +p308214 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p308215 +sa(dp308216 +g291130 +S'cardboard and mixed media in plexiglass box [prototype]' +p308217 +sg291132 +S'1971' +p308218 +sg291134 +S'Tampa Clay Piece 4' +p308219 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p308220 +sa(dp308221 +g291130 +S'lithograph (stone) in black' +p308222 +sg291132 +S'1972' +p308223 +sg291134 +S'Untitled' +p308224 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p308225 +sa(dp308226 +g291130 +S'color lithograph' +p308227 +sg291132 +S'1972' +p308228 +sg291134 +S'Untitled' +p308229 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p308230 +sa(dp308231 +g291130 +S'lithograph (stone and aluminum) in black with a varnish overprint on waterproof "tar" paper [cancellation proof]' +p308232 +sg291132 +S'1972' +p308233 +sg291134 +S'Tampa 1' +p308234 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p308235 +sa(dp308236 +g291130 +S'blueprint and lithograph (aluminum) in blue and green on Rives B.F.K. paper [cancellation proof]' +p308237 +sg291132 +S'1972/1973' +p308238 +sg291134 +S'Tampa 2' +p308239 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p308240 +sa(dp308241 +g291130 +S'lithograph (aluminum) in yellow, red, and blue on American Etching paper [cancellation proof for run 1 of "Seasonbags"]' +p308242 +sg291132 +S'1972' +p308243 +sg291134 +S'Tampa 7' +p308244 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p308245 +sa(dp308246 +g291130 +S'lithograph (aluminum) in yellow, red, and blue on American Etching paper [cancellation proof for run 2 of "Seasonbags"]' +p308247 +sg291132 +S'1972' +p308248 +sg291134 +S'Tampa 7' +p308249 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p308250 +sa(dp308251 +g291130 +S'lithograph (aluminum) and silkscreen in black and white with collage on Rives B.F.K. paper [cancellation proof]' +p308252 +sg291132 +S'1972/1973' +p308253 +sg291134 +S'Tampa 8' +p308254 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p308255 +sa(dp308256 +g291130 +S'lithograph (stone and aluminum) in black, beige, and white on Rives B.F.K. paper [cancellation proof]' +p308257 +sg291132 +S'1972/1973' +p308258 +sg291134 +S'Tampa 10' +p308259 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p308260 +sa(dp308261 +g291130 +S'lithograph (aluminum) in pink and brown sepia on Rives B.F.K. paper [cancellation proof]' +p308262 +sg291132 +S'1972/1973' +p308263 +sg291134 +S'Tampa 12' +p308264 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p308265 +sa(dp308266 +g291130 +S'lithograph [workshop proof]' +p308267 +sg291132 +S'unknown date\n' +p308268 +sg291134 +S'Untitled' +p308269 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p308270 +sa(dp308271 +g291130 +S'multi-color lithograph [proof]' +p308272 +sg291132 +S'unknown date\n' +p308273 +sg291134 +S'Untitled' +p308274 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p308275 +sa(dp308276 +g291130 +S'lithograph in black on Arches paper [cancellation [proof]' +p308277 +sg291132 +S'1975' +p308278 +sg291134 +S'Tampa - New York 1188' +p308279 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p308280 +sa(dp308281 +g291130 +S'lithograph in black on Arches paper [cancellation proof]' +p308282 +sg291132 +S'1975' +p308283 +sg291134 +S'Iris Lake' +p308284 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p308285 +sa(dp308286 +g291130 +S'lithograph in black on Arches paper [cancellation proof]' +p308287 +sg291132 +S'1975' +p308288 +sg291134 +S'Mirage Morning' +p308289 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p308290 +sa(dp308291 +g291130 +S'lithograph in black on Arches paper [cancellation proof]' +p308292 +sg291132 +S'1976' +p308293 +sg291134 +S'Rails' +p308294 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p308295 +sa(dp308296 +g291130 +S'lithograph in black on Arches paper [cancellation proof]' +p308297 +sg291132 +S'1975/1976' +p308298 +sg291134 +S'Pale Cradle' +p308299 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p308300 +sa(dp308301 +g291130 +S'color lithograph with collage' +p308302 +sg291132 +S'1983' +p308303 +sg291134 +S'Rococo' +p308304 +sg291136 +g27 +sg291137 +S'Miriam Schapiro' +p308305 +sa(dp308306 +g291130 +S'collage with printing and drawing' +p308307 +sg291132 +S'1983' +p308308 +sg291134 +S'Together' +p308309 +sg291136 +g27 +sg291137 +S'Miriam Schapiro' +p308310 +sa(dp308311 +g291130 +S'offset lithograph [poster]' +p308312 +sg291132 +S'1983' +p308313 +sg291134 +S'Rococo' +p308314 +sg291136 +g27 +sg291137 +S'Miriam Schapiro' +p308315 +sa(dp308316 +g291130 +S'pastel, graphite and watercolor' +p308317 +sg291132 +S'c. 1969' +p308318 +sg291134 +S'Study for "Evergloom"' +p308319 +sg291136 +g27 +sg291137 +S'Richard Smith' +p308320 +sa(dp308321 +g291130 +S'colored pencil and graphite on white wove paper underlayed with tinted paper; both papers cut and folded' +p308322 +sg291132 +S'c. 1969' +p308323 +sg291134 +S'Study for "Everglad"' +p308324 +sg291136 +g27 +sg291137 +S'Richard Smith' +p308325 +sa(dp308326 +g291130 +S'silver' +p308327 +sg291132 +S'c. 1661' +p308328 +sg291134 +S'William Laud, 1573-1645, Archbishop of Canterbury 1633 [obverse]' +p308329 +sg291136 +g27 +sg291137 +S'Jan Roettiers' +p308330 +sa(dp308331 +g291130 +S'silver' +p308332 +sg291132 +S'c. 1661' +p308333 +sg291134 +S'Allegorical Scene [reverse]' +p308334 +sg291136 +g27 +sg291137 +S'Jan Roettiers' +p308335 +sa(dp308336 +g291134 +S"The Testing of the King's Sons" +p308337 +sg291137 +S'Master MZ' +p308338 +sg291130 +S'engraving on laid paper' +p308339 +sg291132 +S'c. 1500' +p308340 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a3bb.jpg' +p308341 +sg291136 +g27 +sa(dp308342 +g291134 +S'Milo of Croton' +p308343 +sg291137 +S'Pierre Puget' +p308344 +sg291130 +S'bronze' +p308345 +sg291132 +S'marble original 1670-1682, bronze reduction late 17th/early 18th century' +p308346 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c1a.jpg' +p308347 +sg291136 +g27 +sa(dp308348 +g291134 +S'Gloria Victis' +p308349 +sg291137 +S'Marius-Jean-Antonin Merci\xc3\xa9' +p308350 +sg291130 +S'bronze' +p308351 +sg291132 +S'model c. 1874, cast after 1879' +p308352 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00029/a00029c2.jpg' +p308353 +sg291136 +g27 +sa(dp308354 +g291134 +S'A Villefranche-sur-Mer' +p308355 +sg291137 +S'Adolphe Appian' +p308356 +sg291130 +S'etching and monotype on thin laid paper' +p308357 +sg291132 +S'1882' +p308358 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00097/a0009755.jpg' +p308359 +sg291136 +g27 +sa(dp308360 +g291134 +S'The Holy Family Adored by Angels (The Large Nativity)' +p308361 +sg291137 +S'Bartolomeo Biscaino' +p308362 +sg291130 +S'etching on laid paper' +p308363 +sg291132 +S'c. 1655' +p308364 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d43f.jpg' +p308365 +sg291136 +g27 +sa(dp308366 +g291134 +S'The Mystic Marriage of Saint Catherine' +p308367 +sg291137 +S'Carlo Maratta' +p308368 +sg291130 +S'etching on laid paper' +p308369 +sg291132 +S'unknown date\n' +p308370 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9a0.jpg' +p308371 +sg291136 +g27 +sa(dp308372 +g291134 +S'Self-Portrait' +p308373 +sg291137 +S'Alessandro Longhi' +p308374 +sg291130 +S'etching on laid paper' +p308375 +sg291132 +S'published 1762' +p308376 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb3a.jpg' +p308377 +sg291136 +g27 +sa(dp308378 +g291130 +S'Italian, probably 1720 - probably 1790' +p308379 +sg291132 +S'(author)' +p308380 +sg291134 +S"Paesti qvod Posidoniam etiam dixere rvdera (Rovine della citta' di Pesto detta ancora Posidonia)" +p308381 +sg291136 +g27 +sg291137 +S'Artist Information (' +p308382 +sa(dp308383 +g291134 +S'White Line' +p308384 +sg291137 +S'Sam Francis' +p308385 +sg291130 +S'oil on canvas' +p308386 +sg291132 +S'1958/1959' +p308387 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00000/a00000c0.jpg' +p308388 +sg291136 +g27 +sa(dp308389 +g291134 +S'Jason and the Dragon' +p308390 +sg291137 +S'Salvator Rosa' +p308391 +sg291130 +S'etching and drypoint on laid paper' +p308392 +sg291132 +S'c. 1663/1664' +p308393 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca19.jpg' +p308394 +sg291136 +g27 +sa(dp308395 +g291134 +S'The Eritrean Sibyl' +p308396 +sg291137 +S'Artist Information (' +p308397 +sg291130 +S'(artist after)' +p308398 +sg291132 +S'\n' +p308399 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f3a.jpg' +p308400 +sg291136 +g27 +sa(dp308401 +g291134 +S'The Delphic Sibyl' +p308402 +sg291137 +S'Artist Information (' +p308403 +sg291130 +S'(artist after)' +p308404 +sg291132 +S'\n' +p308405 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8c3.jpg' +p308406 +sg291136 +g27 +sa(dp308407 +g291134 +S'The Prophet Jeremiah' +p308408 +sg291137 +S'Artist Information (' +p308409 +sg291130 +S'(artist after)' +p308410 +sg291132 +S'\n' +p308411 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8c4.jpg' +p308412 +sg291136 +g27 +sa(dp308413 +g291134 +S'The Prophet Joel' +p308414 +sg291137 +S'Artist Information (' +p308415 +sg291130 +S'(artist after)' +p308416 +sg291132 +S'\n' +p308417 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8c5.jpg' +p308418 +sg291136 +g27 +sa(dp308419 +g291134 +S'The Persian Sibyl' +p308420 +sg291137 +S'Artist Information (' +p308421 +sg291130 +S'(artist after)' +p308422 +sg291132 +S'\n' +p308423 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8c6.jpg' +p308424 +sg291136 +g27 +sa(dp308425 +g291134 +S'The Prophet Ezekiel' +p308426 +sg291137 +S'Artist Information (' +p308427 +sg291130 +S'(artist after)' +p308428 +sg291132 +S'\n' +p308429 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8c7.jpg' +p308430 +sg291136 +g27 +sa(dp308431 +g291134 +S'Lot and His Daughters' +p308432 +sg291137 +S'Artist Information (' +p308433 +sg291130 +S'(artist after)' +p308434 +sg291132 +S'\n' +p308435 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc59.jpg' +p308436 +sg291136 +g27 +sa(dp308437 +g291134 +S'Rubens Peale with a Geranium' +p308438 +sg291137 +S'Rembrandt Peale' +p308439 +sg291130 +S'oil on canvas' +p308440 +sg291132 +S'1801' +p308441 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a00001aa.jpg' +p308442 +sg291136 +S"Charles Willson Peale christened most of his seventeen children after famous\nartists and scientists; however, there is little consistency between the sons' and\ndaughters' namesakes and their adult careers. While Rembrandt Peale did become a\npainter and the portraitist of this work, Rubens Peale, who sat for this likeness\nat the age of seventeen, was a botanist.\n Painted in Philadelphia, the work could be described as a double portrait because\nthe geranium, reputed to be the first specimen of this exotic plant ever grown in\nthe New World, is as lovingly portrayed as the painter's brother is. The Peale family\noften collaborated in their endeavors, and here Rembrandt commemorated his brother's\nhorticultural triumph. Rembrandt's own skill is evident in the clearly defined pools\nof light on Rubens' cheeks. In a phenomenon familiar to all, his glasses focus the\nbeams passing through them, thereby forming the brighter disks of light under his\neyes.\n Rubens Peale with a Geranium\n " +p308443 +sa(dp308444 +g291134 +S'Fantastic Flowers with Peapod Leaves' +p308445 +sg291137 +S'Artist Information (' +p308446 +sg291130 +S'(artist after)' +p308447 +sg291132 +S'\n' +p308448 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000eee.jpg' +p308449 +sg291136 +g27 +sa(dp308450 +g291134 +S'Fantastic Flowers with Oyster-shell Blossoms' +p308451 +sg291137 +S'Artist Information (' +p308452 +sg291130 +S'(artist after)' +p308453 +sg291132 +S'\n' +p308454 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000eef.jpg' +p308455 +sg291136 +g27 +sa(dp308456 +g291130 +S'etching' +p308457 +sg291132 +S'probably 1747/1748' +p308458 +sg291134 +S'Title Plate' +p308459 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308460 +sa(dp308461 +g291130 +S'(artist)' +p308462 +sg291132 +S'\n' +p308463 +sg291134 +S'The Works in Architecture of Robert and James Adam Esquires (Volume 1)' +p308464 +sg291136 +g27 +sg291137 +S'Artist Information (' +p308465 +sa(dp308466 +g291130 +S'etching on laid paper' +p308467 +sg291132 +S'probably 1747/1748' +p308468 +sg291134 +S'Frontispiece with Statue of Minerva' +p308469 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308470 +sa(dp308471 +g291130 +S'etching on laid paper' +p308472 +sg291132 +S'probably 1747/1748' +p308473 +sg291134 +S'Veduta della Basilica, e Piazza de S. Pietro in Vaticano' +p308474 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308475 +sa(dp308476 +g291130 +S'etching on laid paper' +p308477 +sg291132 +S'probably 1748/1749' +p308478 +sg291134 +S'Veduta interna della Basilica di S. Pietro in Vaticano' +p308479 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308480 +sa(dp308481 +g291130 +S'etching on laid paper' +p308482 +sg291132 +S'1750/1751' +p308483 +sg291134 +S"Veduta dell'Esterno della gran Basilica di S. Pietro in Vaticano" +p308484 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308485 +sa(dp308486 +g291130 +S'etching on laid paper' +p308487 +sg291132 +S'probably 1757/1758' +p308488 +sg291134 +S'Veduta della Basilica di S. Paolo fuor delle mura' +p308489 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308490 +sa(dp308491 +g291130 +S'etching on laid paper' +p308492 +sg291132 +S'probably 1748/1749' +p308493 +sg291134 +S'Spaccato interno della Basilica di S. Paolo fuori delle Mura' +p308494 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308495 +sa(dp308496 +g291130 +S'etching on laid paper' +p308497 +sg291132 +S'probably 1747/1748' +p308498 +sg291134 +S'Veduta della Basilica di S. Giovanni Laterano' +p308499 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308500 +sa(dp308501 +g291130 +S'etching on laid paper' +p308502 +sg291132 +S'probably 1747/1748' +p308503 +sg291134 +S'Veduta della Basilica di Sta. Maria Maggiore' +p308504 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308505 +sa(dp308506 +g291130 +S'etching on laid paper' +p308507 +sg291132 +S'1756/1757' +p308508 +sg291134 +S'Veduta della Facciata di dietro della Basilica di S. Maria Maggiore' +p308509 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308510 +sa(dp308511 +g291130 +S'etching on laid paper' +p308512 +sg291132 +S'probably 1757/1758' +p308513 +sg291134 +S'Veduta della Facciata della Basilica di S. Croce in Gerusalemme' +p308514 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308515 +sa(dp308516 +g291130 +S'etching on laid paper' +p308517 +sg291132 +S'1760/1761' +p308518 +sg291134 +S'Veduta della Basilica di San Lorenzo fuor delle mura' +p308519 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308520 +sa(dp308521 +g291130 +S'etching on laid paper' +p308522 +sg291132 +S'1761' +p308523 +sg291134 +S'Veduta della Basilica di S. Sebastiano' +p308524 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308525 +sa(dp308526 +g291130 +S'etching on laid paper' +p308527 +sg291132 +S'probably 1747/1748' +p308528 +sg291134 +S'Veduta della Piazza del Popolo' +p308529 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308530 +sa(dp308531 +g291130 +S'etching on laid paper' +p308532 +sg291132 +S'probably 1747/1748' +p308533 +sg291134 +S'Veduta della Piazza di Monte Cavallo' +p308534 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308535 +sa(dp308536 +g291130 +S'etching on laid paper' +p308537 +sg291132 +S'probably 1747/1748' +p308538 +sg291134 +S'Veduta di Piazza Navona sopra le rovine del Circo Agonale' +p308539 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308540 +sa(dp308541 +g291130 +S'etching on laid paper' +p308542 +sg291132 +S'probably 1747/1748' +p308543 +sg291134 +S'Veduta della Piazza Rotonda' +p308544 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308545 +sa(dp308546 +g291130 +S'etching on laid paper' +p308547 +sg291132 +S'1750/1751' +p308548 +sg291134 +S'Veduta di Piazza di Spagna' +p308549 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308550 +sa(dp308551 +g291130 +S'etching on laid paper' +p308552 +sg291132 +S'probably 1747/1748' +p308553 +sg291134 +S'Veduta della vasta Fontana di Trevi ...' +p308554 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308555 +sa(dp308556 +g291130 +S'etching on laid paper' +p308557 +sg291132 +S'1760/1761' +p308558 +sg291134 +S"Veduta del Castello dell' Acqua Felice" +p308559 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308560 +sa(dp308561 +g291130 +S'etching on laid paper' +p308562 +sg291132 +S'1756/1757' +p308563 +sg291134 +S"Veduta del Castello dell' Acqua Paolo sul Monte Aureo" +p308564 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308565 +sa(dp308566 +g291130 +S'etching on laid paper' +p308567 +sg291132 +S'probably 1757/1758' +p308568 +sg291134 +S'Veduta del Palazzo fabbricato sul Quirinale per le Segreterie de Brevi e della Sacra Consulta' +p308569 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308570 +sa(dp308571 +g291130 +S'etching on laid paper' +p308572 +sg291132 +S'probably 1758/1759' +p308573 +sg291134 +S'Veduta della Gran Curia Innocenziana' +p308574 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308575 +sa(dp308576 +g291130 +S'etching on laid paper' +p308577 +sg291132 +S'probably 1757/1758' +p308578 +sg291134 +S"Veduta, nella Via del Corso, del Palazzo dell' Accademia" +p308579 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308580 +sa(dp308581 +g291130 +S'etching on laid paper' +p308582 +sg291132 +S'probably 1758/1759' +p308583 +sg291134 +S"Veduta sul Monte Quirinale del Palazzo dell'Eccellentissima Casa Barberini..." +p308584 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308585 +sa(dp308586 +g291130 +S'etching on laid paper' +p308587 +sg291132 +S'probably 1757/1758' +p308588 +sg291134 +S'Veduta del Palazzo Odescalchi' +p308589 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308590 +sa(dp308591 +g291130 +S'etching on laid paper' +p308592 +sg291132 +S'probably 1757/1758' +p308593 +sg291134 +S'Veduta del Porto di Ripa Grande' +p308594 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308595 +sa(dp308596 +g291130 +S'etching on laid paper' +p308597 +sg291132 +S'probably 1757/1758' +p308598 +sg291134 +S'Veduta del Porto di Ripa Grande' +p308599 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308600 +sa(dp308601 +g291130 +S'etching on laid paper' +p308602 +sg291132 +S'1750/1751' +p308603 +sg291134 +S'Veduta del Porto di Ripetta' +p308604 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308605 +sa(dp308606 +g291130 +S'etching on laid paper' +p308607 +sg291132 +S'1750/1751' +p308608 +sg291134 +S"Veduta del Ponte e Castello Sant'Angelo" +p308609 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308610 +sa(dp308611 +g291130 +S'etching on laid paper' +p308612 +sg291132 +S'1756/1757' +p308613 +sg291134 +S"Veduta del Masoleo d' Elio Adriano" +p308614 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308615 +sa(dp308616 +g291130 +S'etching on laid paper' +p308617 +sg291132 +S'1751/1753' +p308618 +sg291134 +S'Veduta del Ponte Salario' +p308619 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308620 +sa(dp308621 +g291130 +S'etching on laid paper' +p308622 +sg291132 +S'1749/1750' +p308623 +sg291134 +S'Veduta della Dogana di Terra' +p308624 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308625 +sa(dp308626 +g291130 +S'etching on laid paper' +p308627 +sg291132 +S'1749/1750' +p308628 +sg291134 +S'Teatro di Marcello' +p308629 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308630 +sa(dp308631 +g291130 +S'etching on laid paper' +p308632 +sg291132 +S'1751/1753' +p308633 +sg291134 +S"Veduta dell'avanzo del Castello" +p308634 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308635 +sa(dp308636 +g291130 +S'etching on laid paper' +p308637 +sg291132 +S'1761' +p308638 +sg291134 +S'Piramide di C. Cestio' +p308639 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308640 +sa(dp308641 +g291130 +S'etching on laid paper' +p308642 +sg291132 +S'probably 1747/1748' +p308643 +sg291134 +S'Veduta del Sepolcro di Cajo Cestio' +p308644 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308645 +sa(dp308646 +g291130 +S'etching on laid paper' +p308647 +sg291132 +S'probably 1749/1750' +p308648 +sg291134 +S'Veduta interna del Sepolocro di S. Costanza' +p308649 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308650 +sa(dp308651 +g291130 +S'etching on laid paper' +p308652 +sg291132 +S'1761' +p308653 +sg291134 +S"Veduta del Romano Campidoglio con Scalinata che va alla Chiesa d'Araceli" +p308654 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308655 +sa(dp308656 +g291130 +S'etching on laid paper' +p308657 +sg291132 +S'1761' +p308658 +sg291134 +S'Veduta del Campidoglio di Fianco' +p308659 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308660 +sa(dp308661 +g291130 +S'etching on laid paper' +p308662 +sg291132 +S'probably 1747/1748' +p308663 +sg291134 +S'Veduta di Campo Vaccino' +p308664 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308665 +sa(dp308666 +g291130 +S'etching on laid paper' +p308667 +sg291132 +S'probably 1749/1750' +p308668 +sg291134 +S"Veduta del Sito, ov'era l'antico Foro Romano" +p308669 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308670 +sa(dp308671 +g291130 +S'etching on laid paper' +p308672 +sg291132 +S'1756/1757' +p308673 +sg291134 +S'Veduta degli avanzi del Foro di Nerva' +p308674 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308675 +sa(dp308676 +g291130 +S'etching on laid paper' +p308677 +sg291132 +S'1750/1751' +p308678 +sg291134 +S'Veduta ... del Serraglio delle fiere fabbricato da Domiziano' +p308679 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308680 +sa(dp308681 +g291130 +S'etching on laid paper' +p308682 +sg291132 +S'1753/1754' +p308683 +sg291134 +S'Vedute del Tempio di Giove Tonante' +p308684 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308685 +sa(dp308686 +g291130 +S'etching on laid paper' +p308687 +sg291132 +S'probably 1749/1750' +p308688 +sg291134 +S'Veduta degli avanzi del Tablino della Casa Aurea di Nerone' +p308689 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308690 +sa(dp308691 +g291130 +S'etching on laid paper' +p308692 +sg291132 +S'1750/1751' +p308693 +sg291134 +S'Veduta del tempio della Fortuna Virile' +p308694 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308695 +sa(dp308696 +g291130 +S'etching on laid paper' +p308697 +sg291132 +S'1753/1754' +p308698 +sg291134 +S'Veduta del Tempio di Cibele' +p308699 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308700 +sa(dp308701 +g291130 +S'etching on laid paper' +p308702 +sg291132 +S'1756/1757' +p308703 +sg291134 +S'Veduta del tempio di Bacco' +p308704 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308705 +sa(dp308706 +g291130 +S'etching on laid paper' +p308707 +sg291132 +S'probably 1749/1750' +p308708 +sg291134 +S"Veduta del Tempio d'Antonio e Faustina in Campo Vaccino" +p308709 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308710 +sa(dp308711 +g291130 +S'etching on laid paper' +p308712 +sg291132 +S'probably 1748/1749' +p308713 +sg291134 +S'Veduta degli Avanzi di due Triclinj che appartenevano alla Casa aurea di Nerone' +p308714 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308715 +sa(dp308716 +g291130 +S'etching on laid paper' +p308717 +sg291132 +S'probably 1748/1749' +p308718 +sg291134 +S'Colonna Trajana' +p308719 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308720 +sa(dp308721 +g291130 +S'etching on laid paper' +p308722 +sg291132 +S'probably 1748/1749' +p308723 +sg291134 +S'Colonna Antonina' +p308724 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308725 +sa(dp308726 +g291130 +S'etching on laid paper' +p308727 +sg291132 +S'probably 1749/1750' +p308728 +sg291134 +S'Obelisco Egizio' +p308729 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308730 +sa(dp308731 +g291130 +S'etching on laid paper' +p308732 +sg291132 +S'probably 1749/1750' +p308733 +sg291134 +S'Arco di Settimio Severo' +p308734 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308735 +sa(dp308736 +g291130 +S'etching on laid paper' +p308737 +sg291132 +S'1756/1757' +p308738 +sg291134 +S"Veduta dell' Arco di Tito" +p308739 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308740 +sa(dp308741 +g291130 +S'etching on laid paper' +p308742 +sg291132 +S'probably 1747/1748' +p308743 +sg291134 +S"Veduta dell' Arco di Costantino, e ... il Colosseo" +p308744 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308745 +sa(dp308746 +g291130 +S'etching on laid paper' +p308747 +sg291132 +S'1761' +p308748 +sg291134 +S"Veduta dell' ... Colosseo" +p308749 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308750 +sa(dp308751 +g291130 +S'etching on laid paper' +p308752 +sg291132 +S'1750/1751' +p308753 +sg291134 +S"Veduta dell' ... Atrio del Portico di Ottavia" +p308754 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308755 +sa(dp308756 +g291130 +S'etching on laid paper' +p308757 +sg291132 +S'1750/1751' +p308758 +sg291134 +S"Veduta interna dell' Atrio del Portico di Ottavia" +p308759 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308760 +sa(dp308761 +g291130 +S'etching on laid paper' +p308762 +sg291132 +S'1761' +p308763 +sg291134 +S"Veduta del Pantheon d'Agrippa oggi Chiesa di S. Maria ad Martyres" +p308764 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308765 +sa(dp308766 +g291130 +S'etching on laid paper' +p308767 +sg291132 +S'1761' +p308768 +sg291134 +S'Veduta del tempio della Sibilla in Tivoli' +p308769 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308770 +sa(dp308771 +g291130 +S'etching on laid paper' +p308772 +sg291132 +S'1761' +p308773 +sg291134 +S'Altra Veduta del tempio della Sibilla in Tivoli' +p308774 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308775 +sa(dp308776 +g291130 +S'etching on laid paper' +p308777 +sg291132 +S'1761' +p308778 +sg291134 +S'Altra Veduta del tempio della Sibilla in Tivoli' +p308779 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308780 +sa(dp308781 +g291130 +S'etching on 3 sheet of joined laid paper' +p308782 +sg291132 +S'1778' +p308783 +sg291134 +S'Pianta di Roma e del Campo Marzo' +p308784 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308785 +sa(dp308786 +g291130 +S'etching on laid paper' +p308787 +sg291132 +S'probably 1747/1748' +p308788 +sg291134 +S'Frontispiece with Statue of Minerva' +p308789 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308790 +sa(dp308791 +g291130 +S'etching on laid paper' +p308792 +sg291132 +S'1762' +p308793 +sg291134 +S'Veduta del Ponte Molle' +p308794 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308795 +sa(dp308796 +g291130 +S'etching on laid paper' +p308797 +sg291132 +S'1763' +p308798 +sg291134 +S'Avanzi della Villa di Mecenate a Tivoli, construita di travertini a opera incerta' +p308799 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308800 +sa(dp308801 +g291130 +S'etching on laid paper' +p308802 +sg291132 +S'1762' +p308803 +sg291134 +S'Veduta delle due Chiese ... presso la Colonna a Trajana' +p308804 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308805 +sa(dp308806 +g291130 +S'etching on laid paper' +p308807 +sg291132 +S'1762' +p308808 +sg291134 +S'Sepolcro di Cecilia Metella' +p308809 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308810 +sa(dp308811 +g291130 +S'etching on laid paper' +p308812 +sg291132 +S'1763' +p308813 +sg291134 +S'Veduta del Ponte Lugano' +p308814 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308815 +sa(dp308816 +g291130 +S'etching on laid paper' +p308817 +sg291132 +S'1763' +p308818 +sg291134 +S'Veduta del Tempio detto della Tosse ... vicino a Tivoli' +p308819 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308820 +sa(dp308821 +g291130 +S'etching on laid paper' +p308822 +sg291132 +S'1764' +p308823 +sg291134 +S'Veduta interna del Tempio della Tosse' +p308824 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308825 +sa(dp308826 +g291130 +S'etching on laid paper' +p308827 +sg291132 +S'1763' +p308828 +sg291134 +S'Tempio antico volgarmente detto della Salute' +p308829 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308830 +sa(dp308831 +g291130 +S'etching on laid paper' +p308832 +sg291132 +S'1764' +p308833 +sg291134 +S'Vedute del Sepolcro di Pisone Liciniano' +p308834 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308835 +sa(dp308836 +g291130 +S'etching on laid paper' +p308837 +sg291132 +S'1764' +p308838 +sg291134 +S'Veduta interna della Villa di Mecenate' +p308839 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308840 +sa(dp308841 +g291130 +S'etching on laid paper' +p308842 +sg291132 +S'1764' +p308843 +sg291134 +S'Veduta del Tempio ottangolare di Miverva Medica' +p308844 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308845 +sa(dp308846 +g291130 +S'etching on laid paper' +p308847 +sg291132 +S'1766' +p308848 +sg291134 +S'Veduta della Cascata di Tivoli' +p308849 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308850 +sa(dp308851 +g291130 +S'etching on laid paper' +p308852 +sg291132 +S'1765' +p308853 +sg291134 +S'Rovine delle Terme Antoniniane' +p308854 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308855 +sa(dp308856 +g291130 +S'etching on laid paper' +p308857 +sg291132 +S'1765' +p308858 +sg291134 +S'Rovine del Sisto o sia della gran sala delle Terme Antoniniane' +p308859 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308860 +sa(dp308861 +g291130 +S'etching on laid paper' +p308862 +sg291132 +S'1766' +p308863 +sg291134 +S"Veduta dell'interno dell' ... Colosseo" +p308864 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308865 +sa(dp308866 +g291130 +S'etching on laid paper' +p308867 +sg291132 +S'1766' +p308868 +sg291134 +S"Avanzi d'un portico coperto, ... da Roma su la via di Frascati" +p308869 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308870 +sa(dp308871 +g291130 +S'etching on laid paper' +p308872 +sg291132 +S'1766' +p308873 +sg291134 +S"Veduta della fonte e delle Spelonche d'Egeri" +p308874 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308875 +sa(dp308876 +g291130 +S'etching on laid paper' +p308877 +sg291132 +S'1767' +p308878 +sg291134 +S"Veduta interna dell'antico Tempio di Bacco" +p308879 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308880 +sa(dp308881 +g291130 +S'etching on laid paper' +p308882 +sg291132 +S'1769' +p308883 +sg291134 +S'Veduta interna Pronao del Panteon' +p308884 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308885 +sa(dp308886 +g291130 +S'etching on laid paper' +p308887 +sg291132 +S'probably 1765/1769' +p308888 +sg291134 +S'Veduta ... della famiglia Plauzia' +p308889 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308890 +sa(dp308891 +g291130 +S'etching on laid paper' +p308892 +sg291132 +S'1767' +p308893 +sg291134 +S'Altra veduta interna della Villa di Mecenate in Tivoli' +p308894 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308895 +sa(dp308896 +g291130 +S'etching on laid paper' +p308897 +sg291132 +S'1768' +p308898 +sg291134 +S'Avanzi del Tempio detto di Apollo nella Villa Adriano vicino a Tivoli' +p308899 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308900 +sa(dp308901 +g291130 +S'etching on laid paper' +p308902 +sg291132 +S'1768' +p308903 +sg291134 +S'Veduta interna del Panteon' +p308904 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308905 +sa(dp308906 +g291130 +S'etching on laid paper' +p308907 +sg291132 +S'1768' +p308908 +sg291134 +S'Veduta interna della Basilica di S. Maria Maggiore' +p308909 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308910 +sa(dp308911 +g291130 +S'etching on laid paper' +p308912 +sg291132 +S'1768' +p308913 +sg291134 +S'Veduta interna della Basilica di S. Giovanni Laterano' +p308914 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308915 +sa(dp308916 +g291130 +S'etching on laid paper' +p308917 +sg291132 +S'1769' +p308918 +sg291134 +S'Veduta della Villa ... Albani' +p308919 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308920 +sa(dp308921 +g291130 +S'etching on laid paper' +p308922 +sg291132 +S'1768' +p308923 +sg291134 +S'Avanzi del Tempio del Dio Canopo nella Villa Adriana in Tivoli' +p308924 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308925 +sa(dp308926 +g291130 +S'etching on laid paper' +p308927 +sg291132 +S'1769' +p308928 +sg291134 +S'Veduta del Tempio di Ercole ... lontano da Velletri' +p308929 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308930 +sa(dp308931 +g291130 +S'etching on laid paper' +p308932 +sg291132 +S'1769' +p308933 +sg291134 +S'Veduta delle Cascatelle a Tivoli' +p308934 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308935 +sa(dp308936 +g291130 +S'etching on laid paper' +p308937 +sg291132 +S'1770' +p308938 +sg291134 +S"Rovine d'una Galleria di Statue nella Villa Adriana a Tivoli" +p308939 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308940 +sa(dp308941 +g291130 +S'etching on laid paper' +p308942 +sg291132 +S'1770' +p308943 +sg291134 +S'Veduta degli avanzi del Castro Pretorio nella Villa Adriana a Tivoli' +p308944 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308945 +sa(dp308946 +g291130 +S'etching on laid paper' +p308947 +sg291132 +S'1770' +p308948 +sg291134 +S'Veduta degli avanzi del Foro di Nerva' +p308949 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308950 +sa(dp308951 +g291130 +S'etching on laid paper' +p308952 +sg291132 +S'1771' +p308953 +sg291134 +S'Tempio detto volgarmente di Giano' +p308954 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308955 +sa(dp308956 +g291130 +S'etching on laid paper' +p308957 +sg291132 +S'1771' +p308958 +sg291134 +S"Veduta dell' Arco di Costantino" +p308959 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308960 +sa(dp308961 +g291130 +S'etching on laid paper' +p308962 +sg291132 +S'1771' +p308963 +sg291134 +S"Veduta dell' Arco di Tito" +p308964 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308965 +sa(dp308966 +g291130 +S'etching on laid paper' +p308967 +sg291132 +S'1772' +p308968 +sg291134 +S"Veduta dell' Arco di Settimio Severo" +p308969 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308970 +sa(dp308971 +g291130 +S'etching on laid paper' +p308972 +sg291132 +S'1772' +p308973 +sg291134 +S'Veduta di Campo Vaccino' +p308974 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308975 +sa(dp308976 +g291130 +S'etching on laid paper' +p308977 +sg291132 +S'1772' +p308978 +sg291134 +S'Veduta della gran Piazza e Basilica di S. Pietro' +p308979 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308980 +sa(dp308981 +g291130 +S'etching on laid paper' +p308982 +sg291132 +S'1773' +p308983 +sg291134 +S'Veduta interna della Basilica di S. Pietro in Vaticano vicino alla Tribuna' +p308984 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308985 +sa(dp308986 +g291130 +S'etching on laid paper' +p308987 +sg291132 +S'1773' +p308988 +sg291134 +S'Veduta della Piazza di Monte Cavallo' +p308989 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308990 +sa(dp308991 +g291130 +S'etching on laid paper' +p308992 +sg291132 +S'1773' +p308993 +sg291134 +S'Veduta ... della gran Fontana ... di Trevi' +p308994 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p308995 +sa(dp308996 +g291130 +S'etching on laid paper' +p308997 +sg291132 +S'1773' +p308998 +sg291134 +S'Veduta della Villa Estense in Tivoli' +p308999 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309000 +sa(dp309001 +g291130 +S'etching on laid paper' +p309002 +sg291132 +S'1773' +p309003 +sg291134 +S'Veduta del Tempio delle Camene' +p309004 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309005 +sa(dp309006 +g291130 +S'etching on laid paper' +p309007 +sg291132 +S'1773' +p309008 +sg291134 +S'Veduta del Palazzo Farnese' +p309009 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309010 +sa(dp309011 +g291130 +S'etching on laid paper' +p309012 +sg291132 +S'1773' +p309013 +sg291134 +S'Veduta di Piazza Navona spora le rovine del Circo Agonale' +p309014 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309015 +sa(dp309016 +g291130 +S'etching on laid paper' +p309017 +sg291132 +S'1774' +p309018 +sg291134 +S'Veduta del Tempio detto della Concordia' +p309019 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309020 +sa(dp309021 +g291130 +S'etching on laid paper' +p309022 +sg291132 +S'1774' +p309023 +sg291134 +S'Altra veduta degli avanzi del Pronao del Tempio della Concordia' +p309024 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309025 +sa(dp309026 +g291130 +S'etching on laid paper' +p309027 +sg291132 +S'1774' +p309028 +sg291134 +S'Veduta della Piazza del Campidoglio' +p309029 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309030 +sa(dp309031 +g291130 +S'etching on laid paper' +p309032 +sg291132 +S'1774' +p309033 +sg291134 +S'Avanzi di una Sala appartente ... nella Villa Adriana in Tivoli' +p309034 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309035 +sa(dp309036 +g291130 +S'etching on laid paper' +p309037 +sg291132 +S'1774' +p309038 +sg291134 +S"Rovina di uno degli allogiamente de' Soldati ... nella sua Villa in Tivoli" +p309039 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309040 +sa(dp309041 +g291130 +S'etching on laid paper' +p309042 +sg291132 +S'1774' +p309043 +sg291134 +S'Veduta degli avanzi del Tablino della Casa aurea di Nerone' +p309044 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309045 +sa(dp309046 +g291130 +S'etching on laid paper [touched proof]' +p309047 +sg291132 +S'1774' +p309048 +sg291134 +S'Veduta degli avanzi superiori delle Terme di Diocleziano' +p309049 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309050 +sa(dp309051 +g291130 +S'etching on laid paper' +p309052 +sg291132 +S'1774' +p309053 +sg291134 +S'Veduta degli avanzi superiori delle Terme di Diocleziano' +p309054 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309055 +sa(dp309056 +g291130 +S'etching on laid paper' +p309057 +sg291132 +S'1775' +p309058 +sg291134 +S'Veduta della Piazza e Basilica di S. Giovanni in Laterano' +p309059 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309060 +sa(dp309061 +g291130 +S'etching on laid paper' +p309062 +sg291132 +S'1775' +p309063 +sg291134 +S"Avanzi degl' Aquedotti Neroniani ..." +p309064 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309065 +sa(dp309066 +g291130 +S'etching on laid paper' +p309067 +sg291132 +S'1775' +p309068 +sg291134 +S"Veduta del Monumento eretto dall' Imperardor Tito Vespasiano" +p309069 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309070 +sa(dp309071 +g291130 +S'etching on laid paper' +p309072 +sg291132 +S'1775' +p309073 +sg291134 +S"Veduta dell' insigne Basilica Vaticana coll' ampio Portico, e Piazza adjacente" +p309074 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309075 +sa(dp309076 +g291130 +S'etching on laid paper' +p309077 +sg291132 +S'1775' +p309078 +sg291134 +S"Veduta dell' Isola Tiberina" +p309079 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309080 +sa(dp309081 +g291130 +S'etching on laid paper' +p309082 +sg291132 +S'1775' +p309083 +sg291134 +S'Veduta della Facciata della Basilica di S. Giovanni Laterano' +p309084 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309085 +sa(dp309086 +g291134 +S'Veduta delle Terme di Tito' +p309087 +sg291137 +S'Giovanni Battista Piranesi' +p309088 +sg291130 +S'etching on laid paper' +p309089 +sg291132 +S'1775' +p309090 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a348.jpg' +p309091 +sg291136 +g27 +sa(dp309092 +g291130 +S'etching on laid paper' +p309093 +sg291132 +S'1776' +p309094 +sg291134 +S'Villa Panfili' +p309095 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309096 +sa(dp309097 +g291130 +S'etching on laid paper' +p309098 +sg291132 +S'1776' +p309099 +sg291134 +S'Veduta delle antiche Sostruzioni ... le Cloache fin al Tevere' +p309100 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309101 +sa(dp309102 +g291130 +S'etching on laid paper' +p309103 +sg291132 +S'1776' +p309104 +sg291134 +S"Veduta dell' ... Colosseo" +p309105 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309106 +sa(dp309107 +g291134 +S'Veduta ... delle Terme di Tito' +p309108 +sg291137 +S'Giovanni Battista Piranesi' +p309109 +sg291130 +S'etching on laid paper' +p309110 +sg291132 +S'1776' +p309111 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000a3/a000a347.jpg' +p309112 +sg291136 +g27 +sa(dp309113 +g291130 +S'etching on laid paper' +p309114 +sg291132 +S'1776' +p309115 +sg291134 +S'Veduta del Palazzo Stopani' +p309116 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309117 +sa(dp309118 +g291130 +S'etching on laid paper' +p309119 +sg291132 +S'1776' +p309120 +sg291134 +S'Veduta interna della Chiesa della Madonna degli Angioli' +p309121 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309122 +sa(dp309123 +g291130 +S'etching on laid paper' +p309124 +sg291132 +S'1776' +p309125 +sg291134 +S'Avanzi di un antico Sepolcro ... dalla Porta di Capua per andar a Napoli' +p309126 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309127 +sa(dp309128 +g291130 +S'etching on laid paper' +p309129 +sg291132 +S'1776' +p309130 +sg291134 +S'Interno del Tempio d.o di Canopo nella Villa Adriana' +p309131 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309132 +sa(dp309133 +g291130 +S'etching on laid paper' +p309134 +sg291132 +S'1776' +p309135 +sg291134 +S"Veduta degli Avanzi della Circonferenzo ... chiamata Piazza d'oro" +p309136 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309137 +sa(dp309138 +g291130 +S'etching on laid paper' +p309139 +sg291132 +S'1777' +p309140 +sg291134 +S'Veduta di un Eliocamino ... per le Finestre' +p309141 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309142 +sa(dp309143 +g291130 +S'etching on laid paper' +p309144 +sg291132 +S'1777' +p309145 +sg291134 +S'Dieta, o sia Luogo ... esistente nella Villa Adriana' +p309146 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309147 +sa(dp309148 +g291130 +S'etching on laid paper' +p309149 +sg291132 +S'1778' +p309150 +sg291134 +S"Veduta dell' Arco di Benevento nel regno di Napoli" +p309151 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p309152 +sa(dp309153 +g291130 +S'etching on laid paper' +p309154 +sg291132 +S'c. 1778' +p309155 +sg291134 +S'Veduta interna del Panteon volgarmente detto la Rotonda' +p309156 +sg291136 +g27 +sg291137 +S'Francesco Piranesi' +p309157 +sa(dp309158 +g291130 +S'(artist)' +p309159 +sg291132 +S'\n' +p309160 +sg291134 +S'La Topografia di Roma' +p309161 +sg291136 +g27 +sg291137 +S'Artist Information (' +p309162 +sa(dp309163 +g291130 +S'pen and black ink on laid paper' +p309164 +sg291132 +S'c. 1943' +p309165 +sg291134 +S'Untitled' +p309166 +sg291136 +g27 +sg291137 +S'Jackson Pollock' +p309167 +sa(dp309168 +g291134 +S'Untitled' +p309169 +sg291137 +S'Jackson Pollock' +p309170 +sg291130 +S'black ink' +p309171 +sg291132 +S'c. 1950' +p309172 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000982.jpg' +p309173 +sg291136 +g27 +sa(dp309174 +g291130 +S'brush and black ink on wove paper' +p309175 +sg291132 +S'c. 1939/1942' +p309176 +sg291134 +S'Untitled' +p309177 +sg291136 +g27 +sg291137 +S'Jackson Pollock' +p309178 +sa(dp309179 +g291130 +S'pen and black ink on brown paper prepared with yellow gouache' +p309180 +sg291132 +S'c. 1945' +p309181 +sg291134 +S'Untitled' +p309182 +sg291136 +g27 +sg291137 +S'Jackson Pollock' +p309183 +sa(dp309184 +g291134 +S'Alexander in the Studio of Apelles' +p309185 +sg291137 +S'Salvator Rosa' +p309186 +sg291130 +S'etching and drypoint on laid paper' +p309187 +sg291132 +S'c. 1662' +p309188 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca15.jpg' +p309189 +sg291136 +g27 +sa(dp309190 +g291134 +S'The Ramparts at Aigues-Mortes' +p309191 +sg291137 +S'Fr\xc3\xa9d\xc3\xa9ric Bazille' +p309192 +sg291130 +S'oil on canvas' +p309193 +sg291132 +S'1867' +p309194 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00006/a00006ca.jpg' +p309195 +sg291136 +S'Beginning in mid-to-late May 1867, Bazille\r\nspent a month in Aigues-Mortes, a fortified\r\nmedieval town located about fifteen\r\nand one-half miles from Montpellier in\r\nthe Languedoc region of southern France.\r\nThis site held considerable appeal for the\r\nyoung artist because of its association\r\nwith local history and its proximity to the\r\nBazille family property at Méric, itself on\r\nthe outskirts of Montpellier.\n Bazille had already begun thinking\r\nabout painting at the site by the summer\r\nof 1866: "I will be back in Montpellier as\r\nquickly as possible after having finished a\r\nlarge nude study, and I will begin a study at\r\nAigues-Mortes," he informed his parents.\n Three paintings from Bazille\xe2\x80\x99s stay\r\nat Aigues-Mortes are extant: the \n Despite the apparent fluency in the\r\npainting\xe2\x80\x99s execution, it is clear that Bazille\r\nadopted a fairly methodical approach in\r\nits conception. A sketchbook in the Musée\r\ndu Louvre, Paris, is filled with preparatory\r\nstudies undertaken at Aigues-Mortes,\r\nincluding five of the ramparts themselves\r\nfrom differing angles. While none of the\r\narchitectural drawings relates directly to this\r\npainting, the number of drawings indicates\r\nthat Bazille did explore and subsequently\r\nabandon possible vantage points before settling on those he would ultimately paint.\r\nBazille\xe2\x80\x99s rigor may have been in response to\r\nhis father\xe2\x80\x99s own suggestion to depict such\r\na subject. In a letter to his son, Gaston\r\nBazille remarked upon the appeal of the\r\nsite, noting, "I have never seen a painting\r\nrepresenting Aigues-Mortes, and I am sufficiently\r\ninclined to believe that a landscape\r\nor a marine (because Aigues-Mortes with its\r\nlittle port, can furnish either subject) of this\r\nuncommon point of the Midi, would be of\r\ninterest."\n (Text by Kimberly Jones, \n Notes\n \n \n \n ' +p309196 +sa(dp309197 +g291134 +S'Edmond Ma\xc3\xaetre' +p309198 +sg291137 +S'Fr\xc3\xa9d\xc3\xa9ric Bazille' +p309199 +sg291130 +S'oil on canvas' +p309200 +sg291132 +S'1869' +p309201 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00006/a00006cb.jpg' +p309202 +sg291136 +S'Bazille first met Edmond Maître in 1865\r\nat a dinner hosted by Emile Blanche, a\r\ndoctor whose home was a favorite meeting\r\nplace of the Parisian avant-garde during\r\nthe 1860s. The two young men had much\r\nin common: both came from upper-class\r\nfamilies; both moved to Paris for their\r\nprofessional studies (medicine for Bazille,\r\nthe law for Maître), which they quickly\r\nabandoned in favor of more artistic pursuits.\r\nMost important was their shared\r\npassion for music. Both were competent\r\npianists—they would often play duets late\r\ninto the night—and admired the work of\r\nHector Berlioz and the German composers\r\nRichard Wagner and Robert Schumann.\r\nThe two friends frequently attended concerts\r\ntogether at the Pasdeloup as well as\r\nthe Conservatoire (Maître obtained season\r\npasses for them in 1865), occasionally\r\naccompanied by another friend and fellow\r\nWagner enthusiast, the painter Henri\r\nFantin-Latour.\n In a letter of January 1, 1869, Bazille\r\ntold his mother, "I have started to do\r\nanother portrait of Maître to replace the\r\none I gave him two years ago, and which\r\nI find simply too bad."\n One possible source of inspiration\r\nfor this painting is Edouard Manet\xe2\x80\x99s portrait\r\nof Emile Zola (Musée d\xe2\x80\x99Orsay, Paris).\r\nPainted the previous year, it is a work that\r\nBazille would have seen either in Manet\xe2\x80\x99s\r\nstudio or Zola\xe2\x80\x99s home. But while the pose\r\nis similar, Bazille\xe2\x80\x99s portrait is almost stark\r\nin comparison, lacking the accoutrements\r\nand clutter so integral to Manet\xe2\x80\x99s portrait.\r\nBazille might also have been thinking of\r\nthe realist portraits of Gustave Courbet,\r\nespecially the portrait of his patron Alfred\r\nBruyas, which had been donated to the\r\nMusée Fabre in Bazille\xe2\x80\x99s hometown of\r\nMontpellier in 1868. Whatever lessons\r\nBazille might have drawn from these works,\r\nhis portrait of Maître is uniquely his own.\n Bazille painted Maître a third time,\r\nincluding him in the large composition\r\n\n (Text by Kimberly Jones, \n Notes\n \n \n ' +p309203 +sa(dp309204 +g291134 +S'Concert at the Casino of Deauville' +p309205 +sg291137 +S'Eug\xc3\xa8ne Boudin' +p309206 +sg291130 +S'oil on canvas' +p309207 +sg291132 +S'1865' +p309208 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00006/a00006ee.jpg' +p309209 +sg291136 +g27 +sa(dp309210 +g291134 +S'The Trawlers' +p309211 +sg291137 +S'Eug\xc3\xa8ne Boudin' +p309212 +sg291130 +S'oil on wood' +p309213 +sg291132 +S'1885' +p309214 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005a75.jpg' +p309215 +sg291136 +g27 +sa(dp309216 +g291130 +S'oil on canvas' +p309217 +sg291132 +S'1952' +p309218 +sg291134 +S'The Garden Table' +p309219 +sg291136 +g27 +sg291137 +S'Georges Braque' +p309220 +sa(dp309221 +g291134 +S'Skiffs' +p309222 +sg291137 +S'Gustave Caillebotte' +p309223 +sg291130 +S'oil on canvas' +p309224 +sg291132 +S'1877' +p309225 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00006/a0000692.jpg' +p309226 +sg291136 +S'Gustave Caillebotte\xe2\x80\x99s association with the\r\ngroup of pioneering artists soon to be\r\ndubbed the impressionists began with their\r\nfirst exhibition in 1874. He did not exhibit\r\nthere, but served as one of the organizers.\r\nThis role, along with promoter and patron,\r\nwould nearly eclipse his accomplishments\r\nas a painter. Indeed, he is often referred\r\nto as the unknown impressionist. With the\r\nfinancial means to support both himself\r\nand his fellow painters, Caillebotte did not need to rely on the sale of his paintings\r\nto make a living. As a result, many of\r\nhis paintings remained in the collections\r\nof family and friends, out of public view,\r\nuntil 1951 when the first major exhibition\r\nof his work was presented at Wildenstein\xe2\x80\x99s\r\nGalerie Beaux-Arts in Paris.\n Of the eight impressionist exhibitions\r\nheld from 1874 to 1886, Caillebotte participated\r\nin five. He made his debut as a\r\npainter in 1876 in the second impressionist\r\nexhibition with a series of works depicting\r\nindoor and outdoor scenes of upper\r\nmiddle-class life that garnered quite a bit\r\nof attention in the press. Included among\r\nthe eight paintings he showed was \n Between 1877 and 1878, Caillebotte\r\nmade a series of paintings focusing on\r\nswimmers, fishermen, rowers, and canoers\r\nat his family estate in Yerres. In \n As an avid sailor and designer of boats,\r\nCaillebotte often drew upon his personal\r\nexperiences in his paintings (he is generally\r\nidentified as one of the figures—the\r\nman in the white jacket and straw boating hat—in Renoir\xe2\x80\x99s \n After the premature death of his\r\nyounger brother René in 1876, Caillebotte\r\naddressed his own mortality and drafted\r\nhis will in 1878 at the age of twenty-eight.\r\nIn it, he designated that funds be set aside\r\nfor the next exhibition of impressionist\r\nartists. He also bequeathed his prized\r\ncollection of paintings to the French government,\r\nstipulating "that these paintings\r\nnot end up in an attic (storage room) or\r\na provincial museum but rather in the\r\nLuxembourg and later in the Louvre, a\r\ncertain lapse of time [being] necessary\r\nbefore the execution of this clause, until\r\nthe public may, I do not say understand,\r\nbut admit this painting."\n (Text by Michelle Bird, \n Notes\n ' +p309227 +sa(dp309228 +g291134 +S'Harlequin' +p309229 +sg291137 +S'Paul C\xc3\xa9zanne' +p309230 +sg291130 +S'oil on canvas' +p309231 +sg291132 +S'1888-1890' +p309232 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00006/a00006b3.jpg' +p309233 +sg291136 +S'Cézanne painted the austere and elegant \n Pissarro brought Cézanne into the impressionist movement and Cézanne showed in the first and third exhibitions, but in the late 1870s he stopped exhibiting in Paris and withdrew to Aix. Through the patient scrutiny of nature that Pissarro had advised and which Cézanne pursued in virtual isolation there, the dark and expressionistic execution that characterized his early work was transformed into his profoundly meditative late style.\n ' +p309234 +sa(dp309235 +g291134 +S'The Bend in the Road' +p309236 +sg291137 +S'Paul C\xc3\xa9zanne' +p309237 +sg291130 +S'oil on canvas' +p309238 +sg291132 +S'1900/1906' +p309239 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00006/a00006b4.jpg' +p309240 +sg291136 +g27 +sa(dp309241 +g291134 +S'Young Girl Reading' +p309242 +sg291137 +S'Jean-Baptiste-Camille Corot' +p309243 +sg291130 +S'oil on paperboard on wood' +p309244 +sg291132 +S'c. 1868' +p309245 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000db3.jpg' +p309246 +sg291136 +g27 +sa(dp309247 +g291134 +S'Calm Sea' +p309248 +sg291137 +S'Gustave Courbet' +p309249 +sg291130 +S'oil on canvas' +p309250 +sg291132 +S'1866' +p309251 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dbb.jpg' +p309252 +sg291136 +g27 +sa(dp309253 +g291134 +S'Woman Viewed from Behind' +p309254 +sg291137 +S'Edgar Degas' +p309255 +sg291130 +S'oil on canvas' +p309256 +sg291132 +S'unknown date\n' +p309257 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00006/a00006c0.jpg' +p309258 +sg291136 +S"Degas unleashed his biting wit on many of his colleagues, but was \n impressed with the work of American artist \n Probably it is Cassatt we see here. Degas made a number of prints and \n pastels of Cassatt and her sister during visits to the Louvre -- where, in \n fact, she and Degas first met. These works make it possible to identify the \n setting of this work. Although painted freely, Degas' sketchy brushstrokes \n convey the surfaces of painted canvases in heavy gold frames and the pink \n columns still found in the Grande Galerie. The line of Mary Cassatt's \n silhouette and the tilt of her head are lively and energetic, but her \n expression is withheld from view.\n " +p309259 +sa(dp309260 +g291134 +S'View of the Thames' +p309261 +sg291137 +S'Andr\xc3\xa9 Derain' +p309262 +sg291130 +S'oil on canvas' +p309263 +sg291132 +S'1906' +p309264 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dfb.jpg' +p309265 +sg291136 +g27 +sa(dp309266 +g291134 +S'July 14 in Le Havre' +p309267 +sg291137 +S'Raoul Dufy' +p309268 +sg291130 +S'oil on canvas' +p309269 +sg291132 +S'1906' +p309270 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004a/a0004a0f.jpg' +p309271 +sg291136 +g27 +sa(dp309272 +g291130 +S'oil on canvas' +p309273 +sg291132 +S'1952' +p309274 +sg291134 +S'Music and the Pink Violin' +p309275 +sg291136 +g27 +sg291137 +S'Raoul Dufy' +p309276 +sa(dp309277 +g291134 +S'Study for "Negro Boy Dancing": The Boy' +p309278 +sg291137 +S'Thomas Eakins' +p309279 +sg291130 +S'oil on canvas' +p309280 +sg291132 +S'probably 1877' +p309281 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00000/a0000093.jpg' +p309282 +sg291136 +g27 +sa(dp309283 +g291134 +S'Study for "Negro Boy Dancing": The Banjo Player' +p309284 +sg291137 +S'Thomas Eakins' +p309285 +sg291130 +S'oil on canvas on cardboard' +p309286 +sg291132 +S'probably 1877' +p309287 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00000/a0000094.jpg' +p309288 +sg291136 +g27 +sa(dp309289 +g291134 +S'The Bicycle Race' +p309290 +sg291137 +S'Lyonel Feininger' +p309291 +sg291130 +S'oil on canvas' +p309292 +sg291132 +S'1912' +p309293 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00000/a00000b0.jpg' +p309294 +sg291136 +g27 +sa(dp309295 +g291134 +S'The Race Track' +p309296 +sg291137 +S'Jean-Louis Forain' +p309297 +sg291130 +S'oil on canvas' +p309298 +sg291132 +S'c. 1891' +p309299 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00006/a0000648.jpg' +p309300 +sg291136 +g27 +sa(dp309301 +g291134 +S"The Artist's Wife Fishing" +p309302 +sg291137 +S'Jean-Louis Forain' +p309303 +sg291130 +S'oil on canvas' +p309304 +sg291132 +S'1896' +p309305 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00006/a0000649.jpg' +p309306 +sg291136 +g27 +sa(dp309307 +g291134 +S'Self-Portrait Dedicated to Carri\xc3\xa8re' +p309308 +sg291137 +S'Paul Gauguin' +p309309 +sg291130 +S'oil on canvas' +p309310 +sg291132 +S'1888 or 1889' +p309311 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00006/a0000643.jpg' +p309312 +sg291136 +g27 +sa(dp309313 +g291134 +S'The Red School House' +p309314 +sg291137 +S'Winslow Homer' +p309315 +sg291130 +S'oil on canvas' +p309316 +sg291132 +S'1873' +p309317 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000105.jpg' +p309318 +sg291136 +g27 +sa(dp309319 +g291134 +S'Autumn' +p309320 +sg291137 +S'Winslow Homer' +p309321 +sg291130 +S'oil on canvas' +p309322 +sg291132 +S'1877' +p309323 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000106.jpg' +p309324 +sg291136 +g27 +sa(dp309325 +g291134 +S'View on the Outskirts of Caen' +p309326 +sg291137 +S'Stanislas L\xc3\xa9pine' +p309327 +sg291130 +S'oil on wood' +p309328 +sg291132 +S'1872/1875' +p309329 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b28.jpg' +p309330 +sg291136 +g27 +sa(dp309331 +g291130 +S'oil on canvas' +p309332 +sg291132 +S'1965' +p309333 +sg291134 +S'The Blank Signature' +p309334 +sg291136 +g27 +sg291137 +S'Ren\xc3\xa9 Magritte' +p309335 +sa(dp309336 +g291134 +S'Pianist and Checker Players' +p309337 +sg291137 +S'Henri Matisse' +p309338 +sg291130 +S'oil on canvas' +p309339 +sg291132 +S'1924' +p309340 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e0b.jpg' +p309341 +sg291136 +S'Through the 1920s, Matisse stayed in Nice from late fall to early spring of each year, while\n his wife and family remained in Issy-les-Moulineaux outside Paris. \n The possible psychological complexities of the painting are more than matched by those of\n its pictorial organization. In few paintings does Matisse manage to control such an extraordinary\n proliferation of pattern and ornamentation. To this decorative profusion Matisse adds an\n equivalent abundance of perspectival viewpoints: piano, chairs, floor, and bureau are each\n pictured from different angles. Despite the wealth of pictorial elements, a curious, calm order of\n structured harmony prevails. \n ' +p309342 +sa(dp309343 +g291134 +S'Still Life with Sleeping Woman' +p309344 +sg291137 +S'Henri Matisse' +p309345 +sg291130 +S'oil on canvas' +p309346 +sg291132 +S'1940' +p309347 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e00.jpg' +p309348 +sg291136 +g27 +sa(dp309349 +g291134 +S'Cliffs at Pourville' +p309350 +sg291137 +S'Claude Monet' +p309351 +sg291130 +S'oil on canvas' +p309352 +sg291132 +S'1882' +p309353 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00006/a000067f.jpg' +p309354 +sg291136 +g27 +sa(dp309355 +g291134 +S'Hanging the Laundry out to Dry' +p309356 +sg291137 +S'Berthe Morisot' +p309357 +sg291130 +S'oil on canvas' +p309358 +sg291132 +S'1875' +p309359 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00006/a000068f.jpg' +p309360 +sg291136 +g27 +sa(dp309361 +g291134 +S'A Creek in St. Thomas (Virgin Islands)' +p309362 +sg291137 +S'Camille Pissarro' +p309363 +sg291130 +S'oil on academy board' +p309364 +sg291132 +S'1856' +p309365 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00006/a0000660.jpg' +p309366 +sg291136 +g27 +sa(dp309367 +g291134 +S'Two Women Chatting by the Sea, St. Thomas' +p309368 +sg291137 +S'Camille Pissarro' +p309369 +sg291130 +S'oil on canvas' +p309370 +sg291132 +S'1856' +p309371 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00006/a00006a3.jpg' +p309372 +sg291136 +g27 +sa(dp309373 +g291134 +S'The Fence' +p309374 +sg291137 +S'Camille Pissarro' +p309375 +sg291130 +S'oil on canvas' +p309376 +sg291132 +S'1872' +p309377 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00006/a0000661.jpg' +p309378 +sg291136 +S'Pissarro, who was committed to socialist principles, identified strongly \n with the land and with the peasant farmers who worked it. He moved with his \n family from Paris in the 1860s to a number of small villages like \n Louveciennes. While many of his fellow impressionists chose subjects from \n modern life and leisure, sophisticated even if their settings were in the \n countryside, Pissarro preferred scenes of an older, more rural way of life like this garden fence and the small figures who pause in their work. \n Some contemporaries criticized Pissarro for his unadorned rusticity. About \n \n It was in the early 1870s that Pissarro made his most purely \n impressionist pictures, painted, as this one probably was, in a single \n session on the spot. The paint here is quickly applied, thick in some \n areas, much thinner in others. We can see, in the trees, for example, where \n one brushstroke has been pulled through an earlier one that still lay wet \n on the canvas.\n ' +p309379 +sa(dp309380 +g291134 +S'Charing Cross Bridge, London' +p309381 +sg291137 +S'Camille Pissarro' +p309382 +sg291130 +S'oil on canvas' +p309383 +sg291132 +S'1890' +p309384 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00006/a0000662.jpg' +p309385 +sg291136 +g27 +sa(dp309386 +g291134 +S'Salem Cove' +p309387 +sg291137 +S'Maurice Brazil Prendergast' +p309388 +sg291130 +S'oil on canvas' +p309389 +sg291132 +S'1916' +p309390 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a00001ce.jpg' +p309391 +sg291136 +S'Maurice Prendergast\'s optimistic temperament lends \n Prendergast\'s avant-garde style, with its colorful patches of paint\r\n outlined in darker shades, has been compared to Byzantine mosaics and\r\n Gothic tapestries. These emphatic decorative patterns owe as much, or more,\r\n to the Art Nouveau posters and book illustrations he designed in his youth\r\n as a graphic artist. Although Prendergast has been called a naive or\r\n untutored artist, his background included six extended trips to Europe,\r\n where he studied in Paris and sketched at museums and landmarks throughout\r\n France, Britain, and Italy. Moreover, he was conversant about the most\r\n radical trends, from the "art for art\'s sake" theories of James McNeill\r\n Whistler to the postimpressionism of Paul Cézanne.\n Born in Newfoundland, Canada, Maurice Prendergast had moved as a child\r\n to Boston. This shy artist, especially acclaimed for his technical\r\n experiments with monotype prints, worked in the studio of his younger\r\n brother, Charles Prendergast, a successful picture framer.\n ' +p309392 +sa(dp309393 +g291130 +S'oil on canvas' +p309394 +sg291132 +S'unknown date\n' +p309395 +sg291134 +S'Horses' +p309396 +sg291136 +g27 +sg291137 +S'Rene Pierre Charles Princeteau' +p309397 +sa(dp309398 +g291134 +S'Claude Monet' +p309399 +sg291137 +S'Auguste Renoir' +p309400 +sg291130 +S'oil on canvas' +p309401 +sg291132 +S'1872' +p309402 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00007/a000070e.jpg' +p309403 +sg291136 +g27 +sa(dp309404 +g291134 +S"Child with Toys - Gabrielle and the Artist's Son, Jean" +p309405 +sg291137 +S'Auguste Renoir' +p309406 +sg291130 +S'oil on canvas' +p309407 +sg291132 +S'1895-1896' +p309408 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00007/a0000727.jpg' +p309409 +sg291136 +g27 +sa(dp309410 +g291130 +S'oil on canvas' +p309411 +sg291132 +S'1937' +p309412 +sg291134 +S'The Breton Wedding' +p309413 +sg291136 +g27 +sg291137 +S'Georges Rouault' +p309414 +sa(dp309415 +g291134 +S'Flood at Port-Marly' +p309416 +sg291137 +S'Alfred Sisley' +p309417 +sg291130 +S'oil on canvas' +p309418 +sg291132 +S'1872' +p309419 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00007/a0000738.jpg' +p309420 +sg291136 +S"Flooding early in the spring of 1872 drew Sisley to Port–Marly, a village on the Seine near Louveciennes, the artist's home. The water here is calm and human activity is minimal. Rather than dramatic or picturesque incident, the artist's attention was engaged by purely visual effects of rain–laden clouds and water–covered streets. The tranquility of the painting and the directness and simplicity of Sisley's observation are qualities derived from Corot, whom Sisley had met in the 1860s.\n The composition is traditional. The Restaurant à Saint Nicolas at the left and the erect pylon on the right and its reflection establish a stable foreground and frame an opening at the center toward a stand of trees and distant hillside. The artist's handling, however, distinguishes \n Sisley painted the floods at Port–Marly again in 1876, echoing this 1872 composition in two virtually identical works. Such repetition was unusual for Sisley and suggests that he found the motif congenial and this painting successful.\n " +p309421 +sa(dp309422 +g291134 +S'A la Bastille (Jeanne Wenz)' +p309423 +sg291137 +S'Henri de Toulouse-Lautrec' +p309424 +sg291130 +S'oil on canvas' +p309425 +sg291132 +S'1888' +p309426 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00007/a000074e.jpg' +p309427 +sg291136 +g27 +sa(dp309428 +g291130 +S'oil on wood' +p309429 +sg291132 +S'c. 1908' +p309430 +sg291134 +S'The Pont Saint-Michel, Paris' +p309431 +sg291136 +g27 +sg291137 +S'Maurice Utrillo' +p309432 +sa(dp309433 +g291134 +S'The Wind' +p309434 +sg291137 +S'F\xc3\xa9lix Vallotton' +p309435 +sg291130 +S'oil on canvas' +p309436 +sg291132 +S'1910' +p309437 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f8a.jpg' +p309438 +sg291136 +g27 +sa(dp309439 +g291134 +S'On the Beach' +p309440 +sg291137 +S'Edouard Vuillard' +p309441 +sg291130 +S'glue on canvas' +p309442 +sg291132 +S'c. 1907' +p309443 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f52.jpg' +p309444 +sg291136 +g27 +sa(dp309445 +g291134 +S'Women Sewing' +p309446 +sg291137 +S'Edouard Vuillard' +p309447 +sg291130 +S'glue on paper on canvas' +p309448 +sg291132 +S'c. 1912' +p309449 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00007/a000075a.jpg' +p309450 +sg291136 +g27 +sa(dp309451 +g291130 +S'oil on carved board' +p309452 +sg291132 +S'1969' +p309453 +sg291134 +S'1969 (Holkham Sands No. 1)' +p309454 +sg291136 +g27 +sg291137 +S'Ben Nicholson' +p309455 +sa(dp309456 +g291134 +S'Picking Apples (Memorial, or Family Idyll)' +p309457 +sg291137 +S'Edgar Degas' +p309458 +sg291130 +S'red wax and plastiline on wood' +p309459 +sg291132 +S'c. 1881/possibly 1890s' +p309460 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00105/a00105e9.jpg' +p309461 +sg291136 +g27 +sa(dp309462 +g291134 +S'Study in the Nude of Little Dancer Aged Fourteen (Nude Little Dancer)' +p309463 +sg291137 +S'Edgar Degas' +p309464 +sg291130 +S'red wax and plastiline' +p309465 +sg291132 +S'c. 1878-1881' +p309466 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a00063b8.jpg' +p309467 +sg291136 +g27 +sa(dp309468 +g291134 +S'Dancer Adjusting the Shoulder Strap of Her Bodice' +p309469 +sg291137 +S'Edgar Degas' +p309470 +sg291130 +S'yellow brown wax and plastiline' +p309471 +sg291132 +S'1880s/1890s' +p309472 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c08.jpg' +p309473 +sg291136 +g27 +sa(dp309474 +g291134 +S'The Tub' +p309475 +sg291137 +S'Edgar Degas' +p309476 +sg291130 +S'brownish red wax, lead, plaster of Paris, cloth' +p309477 +sg291132 +S'c. 1889' +p309478 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c09.jpg' +p309479 +sg291136 +S'Degas exhibited only one sculpture during his lifetime, the wax\n\n In his other sculptures, not meant for exhibition, Degas worked less\nin pursuit of perfect forms than in restless exploration of movement\nand composition. Using soft, pliable materials, he built up his \nfigures on makeshift armatures reinforced with brush handles, \nmatches, or whatever else was at hand. The waxes, whose lumpish \nsurfaces leave his labor visible, have a translucent character that \nconveys an astonishing sense of life.\n Like the \n ' +p309480 +sa(dp309481 +g291134 +S'Fourth Position Front, on the Left Leg' +p309482 +sg291137 +S'Edgar Degas' +p309483 +sg291130 +S'yellow brown wax and plastiline' +p309484 +sg291132 +S'c. 1885/1890' +p309485 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005ede.jpg' +p309486 +sg291136 +g27 +sa(dp309487 +g291134 +S'The Bow' +p309488 +sg291137 +S'Edgar Degas' +p309489 +sg291130 +S'yellow wax and plastiline' +p309490 +sg291132 +S'1880s/1890s' +p309491 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00058/a00058ed.jpg' +p309492 +sg291136 +g27 +sa(dp309493 +g291134 +S'Woman Taken Unawares' +p309494 +sg291137 +S'Edgar Degas' +p309495 +sg291130 +S'yellow brown wax and plastiline' +p309496 +sg291132 +S'late 1880s/early 1890s' +p309497 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a00063b7.jpg' +p309498 +sg291136 +g27 +sa(dp309499 +g291130 +S'yellow brown wax and plastiline' +p309500 +sg291132 +S'1890s/1911' +p309501 +sg291134 +S'Dancer Putting on Her Stocking' +p309502 +sg291136 +g27 +sg291137 +S'Edgar Degas' +p309503 +sa(dp309504 +g291134 +S'Dancer Holding Her Right Foot in Her Right Hand' +p309505 +sg291137 +S'Edgar Degas' +p309506 +sg291130 +S'brown wax and plastiline' +p309507 +sg291132 +S'possibly 1900/1911' +p309508 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f58.jpg' +p309509 +sg291136 +g27 +sa(dp309510 +g291134 +S'Pregnant Woman' +p309511 +sg291137 +S'Edgar Degas' +p309512 +sg291130 +S'brown wax and plastiline' +p309513 +sg291132 +S'c. 1896/1911' +p309514 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a00063b6.jpg' +p309515 +sg291136 +g27 +sa(dp309516 +g291134 +S'Woman Stretching' +p309517 +sg291137 +S'Edgar Degas' +p309518 +sg291130 +S'red wax and plastiline' +p309519 +sg291132 +S'c. 1896/1911' +p309520 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f0e.jpg' +p309521 +sg291136 +g27 +sa(dp309522 +g291134 +S'Dancer Holding Her Right Foot in Her Right Hand' +p309523 +sg291137 +S'Edgar Degas' +p309524 +sg291130 +S'brown wax and plastiline' +p309525 +sg291132 +S'possibly 1900/1911' +p309526 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b6a.jpg' +p309527 +sg291136 +g27 +sa(dp309528 +g291134 +S'Woman Seated, Wiping Her Left Side' +p309529 +sg291137 +S'Edgar Degas' +p309530 +sg291130 +S'red wax and plastilene' +p309531 +sg291132 +S'1890s/1911' +p309532 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053df.jpg' +p309533 +sg291136 +g27 +sa(dp309534 +g291134 +S'Woman Seated in an Armchair, Wiping Her Neck' +p309535 +sg291137 +S'Edgar Degas' +p309536 +sg291130 +S'green wax and plastiline' +p309537 +sg291132 +S'1890s/c. 1905' +p309538 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053e1.jpg' +p309539 +sg291136 +g27 +sa(dp309540 +g291134 +S'Woman Seated, Wiping Her Left Hip' +p309541 +sg291137 +S'Edgar Degas' +p309542 +sg291130 +S'brown wax' +p309543 +sg291132 +S'1890s/1911' +p309544 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b69.jpg' +p309545 +sg291136 +g27 +sa(dp309546 +g291134 +S'Woman Seated in an Armchair, Wiping Her Left Armpit' +p309547 +sg291137 +S'Edgar Degas' +p309548 +sg291130 +S'brown wax and plastiline' +p309549 +sg291132 +S'c. 1890s' +p309550 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053e3.jpg' +p309551 +sg291136 +g27 +sa(dp309552 +g291134 +S'The Masseuse, Group' +p309553 +sg291137 +S'Edgar Degas' +p309554 +sg291130 +S'plastiline' +p309555 +sg291132 +S'mid 1890s' +p309556 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053e6.jpg' +p309557 +sg291136 +g27 +sa(dp309558 +g291134 +S'Little Dancer Aged Fourteen' +p309559 +sg291137 +S'Edgar Degas' +p309560 +sg291130 +S'plaster' +p309561 +sg291132 +S'original wax 1878-1881, plaster cast possibly 1920/1921' +p309562 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00043/a00043ed.jpg' +p309563 +sg291136 +g27 +sa(dp309564 +g291130 +S'bronze' +p309565 +sg291132 +S'original wax 1880s, cast 1920/1964' +p309566 +sg291134 +S'Dancer with a Tambourine' +p309567 +sg291136 +g27 +sg291137 +S'Edgar Degas' +p309568 +sa(dp309569 +g291130 +S'bronze' +p309570 +sg291132 +S'original wax 1880s/1890s, cast 1920/1949' +p309571 +sg291134 +S'Dancer Adjusting the Shoulder Strap of Her Bodice' +p309572 +sg291136 +g27 +sg291137 +S'Edgar Degas' +p309573 +sa(dp309574 +g291130 +S'bronze' +p309575 +sg291132 +S'original wax possibly late 1880s/1890s, cast 1920/1962' +p309576 +sg291134 +S'Woman Arranging Her Hair' +p309577 +sg291136 +g27 +sg291137 +S'Edgar Degas' +p309578 +sa(dp309579 +g291130 +S'bronze' +p309580 +sg291132 +S'original plastiline 1890s/c.1905, cast 1920/1952' +p309581 +sg291134 +S'Woman Seated in an Armchair, Wiping Her Neck' +p309582 +sg291136 +g27 +sg291137 +S'Edgar Degas' +p309583 +sa(dp309584 +g291134 +S'Study in the Nude of Little Dancer Aged Fourteen (Nude Little Dancer)' +p309585 +sg291137 +S'Edgar Degas' +p309586 +sg291130 +S'bronze' +p309587 +sg291132 +S'original wax c. 1878-1881, cast 1920/1926' +p309588 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c0a.jpg' +p309589 +sg291136 +g27 +sa(dp309590 +g291130 +S'bronze' +p309591 +sg291132 +S'1952-1954' +p309592 +sg291134 +S"The Concept of the Rider (L'Idea del Cavaliere)" +p309593 +sg291136 +g27 +sg291137 +S'Marino Marini' +p309594 +sa(dp309595 +g291134 +S'Hermit Thrush' +p309596 +sg291137 +S'John James Audubon' +p309597 +sg291130 +S'black chalk, watercolor, and gouache over graphite' +p309598 +sg291132 +S'1820' +p309599 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e480.jpg' +p309600 +sg291136 +g27 +sa(dp309601 +g291134 +S'Blue Yellow Back Warbler' +p309602 +sg291137 +S'John James Audubon' +p309603 +sg291130 +S'watercolor and gouache over graphite' +p309604 +sg291132 +S'1812' +p309605 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00008/a00008a5.jpg' +p309606 +sg291136 +g27 +sa(dp309607 +g291130 +S'watercolor and gouache over graphite' +p309608 +sg291132 +S'1828' +p309609 +sg291134 +S'English Black Cocks' +p309610 +sg291136 +g27 +sg291137 +S'John James Audubon' +p309611 +sa(dp309612 +g291134 +S'A Couple Seated on the Beach with Two Dogs' +p309613 +sg291137 +S'Eug\xc3\xa8ne Boudin' +p309614 +sg291130 +S'watercolor and graphite' +p309615 +sg291132 +S'c. 1865' +p309616 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00059/a00059e3.jpg' +p309617 +sg291136 +g27 +sa(dp309618 +g291134 +S'Ladies and Gentleman Walking on the Beach with Two Dogs' +p309619 +sg291137 +S'Eug\xc3\xa8ne Boudin' +p309620 +sg291130 +S'watercolor over graphite' +p309621 +sg291132 +S'1866' +p309622 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00059/a00059e2.jpg' +p309623 +sg291136 +g27 +sa(dp309624 +g291134 +S'Beach House with Flags at Trouville' +p309625 +sg291137 +S'Eug\xc3\xa8ne Boudin' +p309626 +sg291130 +S'watercolor over graphite' +p309627 +sg291132 +S'c. 1865' +p309628 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00059/a00059e5.jpg' +p309629 +sg291136 +g27 +sa(dp309630 +g291134 +S'Ladies and Gentlemen Seated on the Beach with a Dog' +p309631 +sg291137 +S'Eug\xc3\xa8ne Boudin' +p309632 +sg291130 +S'watercolor over graphite' +p309633 +sg291132 +S'1866' +p309634 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022c2.jpg' +p309635 +sg291136 +g27 +sa(dp309636 +g291134 +S'Ladies and Gentlemen on the Beach, in Two Registers' +p309637 +sg291137 +S'Eug\xc3\xa8ne Boudin' +p309638 +sg291130 +S'watercolor over graphite' +p309639 +sg291132 +S'c. 1865' +p309640 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f3c.jpg' +p309641 +sg291136 +g27 +sa(dp309642 +g291134 +S'Two Ladies Seated and a Couple Walking on the Beach' +p309643 +sg291137 +S'Eug\xc3\xa8ne Boudin' +p309644 +sg291130 +S'watercolor over graphite on wove paper' +p309645 +sg291132 +S'c. 1866' +p309646 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00059/a00059e4.jpg' +p309647 +sg291136 +g27 +sa(dp309648 +g291134 +S'A Couple Seated and a Couple Walking on the Beach' +p309649 +sg291137 +S'Eug\xc3\xa8ne Boudin' +p309650 +sg291130 +S'watercolor over graphite' +p309651 +sg291132 +S'1865' +p309652 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00059/a00059e1.jpg' +p309653 +sg291136 +g27 +sa(dp309654 +g291134 +S'Four Ladies Seated at Trouville' +p309655 +sg291137 +S'Eug\xc3\xa8ne Boudin' +p309656 +sg291130 +S'watercolor and graphite with black chalk over graphite' +p309657 +sg291132 +S'1866' +p309658 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a000714a.jpg' +p309659 +sg291136 +g27 +sa(dp309660 +g291134 +S'Four Ladies in Crinolines Walking at Trouville' +p309661 +sg291137 +S'Eug\xc3\xa8ne Boudin' +p309662 +sg291130 +S'watercolor over graphite on laid paper' +p309663 +sg291132 +S'1865' +p309664 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00031/a000319d.jpg' +p309665 +sg291136 +g27 +sa(dp309666 +g291134 +S'The Black Hat' +p309667 +sg291137 +S'Mary Cassatt' +p309668 +sg291130 +S'pastel' +p309669 +sg291132 +S'c. 1890' +p309670 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00008/a00008bd.jpg' +p309671 +sg291136 +g27 +sa(dp309672 +g291134 +S'Mont Sainte-Victoire Seen beyond the Wall of the Jas de Bouffan' +p309673 +sg291137 +S'Paul C\xc3\xa9zanne' +p309674 +sg291130 +S'watercolor and graphite on laid paper' +p309675 +sg291132 +S'c. 1885/1888' +p309676 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00031/a00031a9.jpg' +p309677 +sg291136 +g27 +sa(dp309678 +g291134 +S'The Little Bridge [recto]' +p309679 +sg291137 +S'Paul C\xc3\xa9zanne' +p309680 +sg291130 +S'graphite' +p309681 +sg291132 +S'c. 1880' +p309682 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00031/a00031aa.jpg' +p309683 +sg291136 +g27 +sa(dp309684 +g291134 +S'Bust of Madame C\xc3\xa9zanne [verso]' +p309685 +sg291137 +S'Paul C\xc3\xa9zanne' +p309686 +sg291130 +S'graphite' +p309687 +sg291132 +S'1884/1885' +p309688 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00031/a00031ab.jpg' +p309689 +sg291136 +g27 +sa(dp309690 +g291134 +S'Wash Basin and Scent Bottle [recto]' +p309691 +sg291137 +S'Paul C\xc3\xa9zanne' +p309692 +sg291130 +S'graphite' +p309693 +sg291132 +S'1877/1881' +p309694 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a000714b.jpg' +p309695 +sg291136 +g27 +sa(dp309696 +g291134 +S'Seated Bather [verso]' +p309697 +sg291137 +S'Paul C\xc3\xa9zanne' +p309698 +sg291130 +S'graphite' +p309699 +sg291132 +S'1882/1885' +p309700 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a00071b1.jpg' +p309701 +sg291136 +g27 +sa(dp309702 +g291134 +S'Self-Portrait [recto]' +p309703 +sg291137 +S'Paul C\xc3\xa9zanne' +p309704 +sg291130 +S'graphite on wove paper (sketchbook page)' +p309705 +sg291132 +S'c. 1880/1882' +p309706 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00031/a00031ac.jpg' +p309707 +sg291136 +g27 +sa(dp309708 +g291134 +S"The Artist's Father and Objects on a Mantel [verso]" +p309709 +sg291137 +S'Paul C\xc3\xa9zanne' +p309710 +sg291130 +S'graphite on wove paper (sketchbook page)' +p309711 +sg291132 +S'1877/1881' +p309712 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00031/a00031ad.jpg' +p309713 +sg291136 +g27 +sa(dp309714 +g291134 +S'Trees Leaning over Rocks' +p309715 +sg291137 +S'Paul C\xc3\xa9zanne' +p309716 +sg291130 +S'watercolor and black chalk' +p309717 +sg291132 +S'c. 1892' +p309718 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00031/a00031ae.jpg' +p309719 +sg291136 +g27 +sa(dp309720 +g291134 +S'Three Dancers Resting' +p309721 +sg291137 +S'Edgar Degas' +p309722 +sg291130 +S'black chalk and pastel on tan wove paper' +p309723 +sg291132 +S'c. 1880' +p309724 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a0002431.jpg' +p309725 +sg291136 +g27 +sa(dp309726 +g291134 +S'Three Studies of Ludovic Hal\xc3\xa9vy Standing' +p309727 +sg291137 +S'Edgar Degas' +p309728 +sg291130 +S'charcoal' +p309729 +sg291132 +S'c. 1880' +p309730 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a0002432.jpg' +p309731 +sg291136 +g27 +sa(dp309732 +g291130 +S'pastel on paper mounted on canvas' +p309733 +sg291132 +S'1895' +p309734 +sg291134 +S'The Farewell Dinner' +p309735 +sg291136 +g27 +sg291137 +S'Jean-Louis Forain' +p309736 +sa(dp309737 +g291134 +S'Crowd of Spectators at the Track, Deauville' +p309738 +sg291137 +S'Jean-Louis Forain' +p309739 +sg291130 +S'pen and brush with black ink, blue crayon, and white heightening on tracing paper' +p309740 +sg291132 +S'unknown date\n' +p309741 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a0007209.jpg' +p309742 +sg291136 +g27 +sa(dp309743 +g291134 +S'The Harvest' +p309744 +sg291137 +S'Vincent van Gogh' +p309745 +sg291130 +S'pen and brown ink over graphite' +p309746 +sg291132 +S'1888' +p309747 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00033/a00033e0.jpg' +p309748 +sg291136 +g27 +sa(dp309749 +g291134 +S'An Open Carriage' +p309750 +sg291137 +S'Constantin Guys' +p309751 +sg291130 +S'black wash on wove paper' +p309752 +sg291132 +S'unknown date\n' +p309753 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a00073a3.jpg' +p309754 +sg291136 +g27 +sa(dp309755 +g291134 +S'Military Parade' +p309756 +sg291137 +S'Constantin Guys' +p309757 +sg291130 +S'pen and brown ink with gray wash over graphite' +p309758 +sg291132 +S'unknown date\n' +p309759 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d30.jpg' +p309760 +sg291136 +g27 +sa(dp309761 +g291134 +S'Promenade in the Bois' +p309762 +sg291137 +S'Constantin Guys' +p309763 +sg291130 +S'pen and brown ink with watercolor over graphite' +p309764 +sg291132 +S'unknown date\n' +p309765 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a00073a5.jpg' +p309766 +sg291136 +g27 +sa(dp309767 +g291134 +S'Coachmen' +p309768 +sg291137 +S'Constantin Guys' +p309769 +sg291130 +S', unknown date' +p309770 +sg291132 +S'\n' +p309771 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a00073a2.jpg' +p309772 +sg291136 +g27 +sa(dp309773 +g291134 +S'The Brighton Coach' +p309774 +sg291137 +S'Constantin Guys' +p309775 +sg291130 +S'pen and brown ink with blue and green wash on wove paper' +p309776 +sg291132 +S'unknown date\n' +p309777 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a00072ea.jpg' +p309778 +sg291136 +g27 +sa(dp309779 +g291134 +S'The Strawberry Roans' +p309780 +sg291137 +S'Constantin Guys' +p309781 +sg291130 +S', unknown date' +p309782 +sg291132 +S'\n' +p309783 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a0007217.jpg' +p309784 +sg291136 +g27 +sa(dp309785 +g291134 +S'A Sprig of Plums' +p309786 +sg291137 +S'William Michael Harnett' +p309787 +sg291130 +S'charcoal and black chalk with stumping and scratching out on cream wove paper' +p309788 +sg291132 +S'1873' +p309789 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00008/a00008ef.jpg' +p309790 +sg291136 +g27 +sa(dp309791 +g291134 +S'Spectators at the Grand Prix' +p309792 +sg291137 +S'Childe Hassam' +p309793 +sg291130 +S'watercolor and gouache over graphite' +p309794 +sg291132 +S'1888' +p309795 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00008/a00008f6.jpg' +p309796 +sg291136 +g27 +sa(dp309797 +g291134 +S'Grenoble' +p309798 +sg291137 +S'Johan Barthold Jongkind' +p309799 +sg291130 +S'watercolor and gouache over black chalk' +p309800 +sg291132 +S'1883' +p309801 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a0007091.jpg' +p309802 +sg291136 +g27 +sa(dp309803 +g291134 +S'A Stream Running between Houses and a Road' +p309804 +sg291137 +S'Johan Barthold Jongkind' +p309805 +sg291130 +S'watercolor over graphite' +p309806 +sg291132 +S'unknown date\n' +p309807 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a00071d2.jpg' +p309808 +sg291136 +g27 +sa(dp309809 +g291134 +S'Two Apples' +p309810 +sg291137 +S'Edouard Manet' +p309811 +sg291130 +S'watercolor over graphite on wove paper' +p309812 +sg291132 +S'1880' +p309813 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00037/a00037be.jpg' +p309814 +sg291136 +g27 +sa(dp309815 +g291134 +S'Cucumber with Leaves' +p309816 +sg291137 +S'Edouard Manet' +p309817 +sg291130 +S'watercolor and gray wash on laid paper' +p309818 +sg291132 +S'c. 1880' +p309819 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00066/a0006610.jpg' +p309820 +sg291136 +g27 +sa(dp309821 +g291134 +S'Self-Portrait' +p309822 +sg291137 +S'Henri Matisse' +p309823 +sg291130 +S'charcoal on wove paper' +p309824 +sg291132 +S'1937' +p309825 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00029/a0002964.jpg' +p309826 +sg291136 +g27 +sa(dp309827 +g291134 +S'The Cup of Coffee' +p309828 +sg291137 +S'Pablo Picasso' +p309829 +sg291130 +S'collage with charcoal and white chalk' +p309830 +sg291132 +S'1913' +p309831 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00039/a00039a6.jpg' +p309832 +sg291136 +g27 +sa(dp309833 +g291134 +S'Ruth Dangler' +p309834 +sg291137 +S'Pablo Picasso' +p309835 +sg291130 +S'graphite' +p309836 +sg291132 +S'1922' +p309837 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00029/a0002968.jpg' +p309838 +sg291136 +g27 +sa(dp309839 +g291134 +S'The Road from Versailles to Louveciennes' +p309840 +sg291137 +S'Camille Pissarro' +p309841 +sg291130 +S'watercolor over graphite' +p309842 +sg291132 +S'c. 1872' +p309843 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00037/a00037d8.jpg' +p309844 +sg291136 +g27 +sa(dp309845 +g291134 +S'Bridge at Caracas' +p309846 +sg291137 +S'Camille Pissarro' +p309847 +sg291130 +S'watercolor over graphite' +p309848 +sg291132 +S'1854' +p309849 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00037/a00037d9.jpg' +p309850 +sg291136 +g27 +sa(dp309851 +g291134 +S'Factory on the Oise at Pontoise' +p309852 +sg291137 +S'Camille Pissarro' +p309853 +sg291130 +S'watercolor over graphite' +p309854 +sg291132 +S'1873' +p309855 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00037/a00037da.jpg' +p309856 +sg291136 +g27 +sa(dp309857 +g291134 +S'Parisian Omnibus' +p309858 +sg291137 +S'Maurice Brazil Prendergast' +p309859 +sg291130 +S'watercolor over graphite' +p309860 +sg291132 +S'1893/1894' +p309861 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000986.jpg' +p309862 +sg291136 +g27 +sa(dp309863 +g291134 +S'Figures on a Beach' +p309864 +sg291137 +S'Maurice Brazil Prendergast' +p309865 +sg291130 +S'watercolor over black chalk' +p309866 +sg291132 +S'1910/1915' +p309867 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000987.jpg' +p309868 +sg291136 +g27 +sa(dp309869 +g291134 +S'Revere Beach' +p309870 +sg291137 +S'Maurice Brazil Prendergast' +p309871 +sg291130 +S'watercolor' +p309872 +sg291132 +S'c. 1896' +p309873 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000988.jpg' +p309874 +sg291136 +g27 +sa(dp309875 +g291134 +S'Five Butterflies' +p309876 +sg291137 +S'Odilon Redon' +p309877 +sg291130 +S'watercolor on wove paper' +p309878 +sg291132 +S'c. 1912' +p309879 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00021/a0002189.jpg' +p309880 +sg291136 +g27 +sa(dp309881 +g291134 +S'Four Peonies and a Crown Imperial' +p309882 +sg291137 +S'Pierre Joseph Redout\xc3\xa9' +p309883 +sg291130 +S'watercolor and gouache over graphite on parchment mounted on board' +p309884 +sg291132 +S'unknown date\n' +p309885 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a0007401.jpg' +p309886 +sg291136 +g27 +sa(dp309887 +g291130 +S'pen and brush with black ink, watercolor, and gouache' +p309888 +sg291132 +S'1961' +p309889 +sg291134 +S'Fruits with a Vase of Flowers on a Table' +p309890 +sg291136 +g27 +sg291137 +S'Andr\xc3\xa9 Dunoyer de Segonzac' +p309891 +sa(dp309892 +g291134 +S'The Square' +p309893 +sg291137 +S'Edouard Vuillard' +p309894 +sg291130 +S'brush and black ink on thin brown wove paper' +p309895 +sg291132 +S'1910' +p309896 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00055/a0005507.jpg' +p309897 +sg291136 +g27 +sa(dp309898 +g291134 +S'Lanius rufus' +p309899 +sg291137 +S'American 19th Century' +p309900 +sg291130 +S'plate: 41 x 27.8 cm (16 1/8 x 10 15/16 in.)\r\nsheet: 54.3 x 36.1 cm (21 3/8 x 14 3/16 in.)' +p309901 +sg291132 +S'\nhand-colored etching on laid paper' +p309902 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa1a.jpg' +p309903 +sg291136 +g27 +sa(dp309904 +g291134 +S'Sitta europea' +p309905 +sg291137 +S'American 19th Century' +p309906 +sg291130 +S'plate: 35.5 x 23.9 cm (14 x 9 7/16 in.)\r\nsheet: 54.6 x 37.7 cm (21 1/2 x 14 13/16 in.)' +p309907 +sg291132 +S'\nhand-colored etching on laid paper' +p309908 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa19.jpg' +p309909 +sg291136 +g27 +sa(dp309910 +g291130 +S'hand-colored aquatint with touches of engraving on laid paper' +p309911 +sg291132 +S'published 1831' +p309912 +sg291134 +S'Baltimore Taken near Whetstone Point' +p309913 +sg291136 +g27 +sg291137 +S'William James Bennett' +p309914 +sa(dp309915 +g291130 +S'color aquatint with touches of etching, hand-colored, on wove paper' +p309916 +sg291132 +S'published 1831' +p309917 +sg291134 +S'Baltimore from Federal Hill' +p309918 +sg291136 +g27 +sg291137 +S'William James Bennett' +p309919 +sa(dp309920 +g291130 +S'color aquatint with touches of etching, hand-colored, on wove paper; laid down on heavy wove paper' +p309921 +sg291132 +S'unknown date\n' +p309922 +sg291134 +S'Boston: From City Point near Sea Street' +p309923 +sg291136 +g27 +sg291137 +S'William James Bennett' +p309924 +sa(dp309925 +g291130 +S'color aquatint with touches of engraving, hand-colored, on wove paper' +p309926 +sg291132 +S'published 1833' +p309927 +sg291134 +S'Boston: From the Ship House West End of the Navy Yard' +p309928 +sg291136 +g27 +sg291137 +S'William James Bennett' +p309929 +sa(dp309930 +g291134 +S'Buffalo, from Lake Erie' +p309931 +sg291137 +S'Artist Information (' +p309932 +sg291130 +S'(artist after)' +p309933 +sg291132 +S'\n' +p309934 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a2a.jpg' +p309935 +sg291136 +g27 +sa(dp309936 +g291130 +S'(artist after)' +p309937 +sg291132 +S'\n' +p309938 +sg291134 +S'City of Detroit, Michigan: Taken from the Canada Shore near the Ferry' +p309939 +sg291136 +g27 +sg291137 +S'Artist Information (' +p309940 +sa(dp309941 +g291134 +S'City of Washington: From beyond the Navy Yards' +p309942 +sg291137 +S'Artist Information (' +p309943 +sg291130 +S'(artist after)' +p309944 +sg291132 +S'\n' +p309945 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a2b.jpg' +p309946 +sg291136 +g27 +sa(dp309947 +g291130 +S'(artist after)' +p309948 +sg291132 +S'\n' +p309949 +sg291134 +S'New Orleans: Taken from the Opposite Side, a Short Distance above the Middle or Picayyune Ferry' +p309950 +sg291136 +g27 +sg291137 +S'Artist Information (' +p309951 +sa(dp309952 +g291134 +S'Niagara Falls from the American Side' +p309953 +sg291137 +S'Artist Information (' +p309954 +sg291130 +S'(artist after)' +p309955 +sg291132 +S'\n' +p309956 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a2c.jpg' +p309957 +sg291136 +g27 +sa(dp309958 +g291130 +S'hand-colored aquatint' +p309959 +sg291132 +S'published 1840' +p309960 +sg291134 +S'Niagara Falls from the Table Rock' +p309961 +sg291136 +g27 +sg291137 +S'William James Bennett' +p309962 +sa(dp309963 +g291130 +S'(artist after)' +p309964 +sg291132 +S'\n' +p309965 +sg291134 +S'Niagara Falls: Part of the American Fall, from the Foot of the Stair Case' +p309966 +sg291136 +g27 +sg291137 +S'Artist Information (' +p309967 +sa(dp309968 +g291130 +S'(artist after)' +p309969 +sg291132 +S'\n' +p309970 +sg291134 +S'Niagara Falls: Part of the British Fall, taken from under the Table Rock' +p309971 +sg291136 +g27 +sg291137 +S'Artist Information (' +p309972 +sa(dp309973 +g291130 +S'(artist after)' +p309974 +sg291132 +S'\n' +p309975 +sg291134 +S'Richmond: From the Hill above the Waterworks' +p309976 +sg291136 +g27 +sg291137 +S'Artist Information (' +p309977 +sa(dp309978 +g291130 +S'hand-colored aquatint with touches of engraving on wove paper' +p309979 +sg291132 +S'published 1838' +p309980 +sg291134 +S'Troy: Taken from the West Bank of the Hudson in front of the United States Arsenal' +p309981 +sg291136 +g27 +sg291137 +S'William James Bennett' +p309982 +sa(dp309983 +g291130 +S'color aquatint with hand-coloring on wove paper, mounted to canvas' +p309984 +sg291132 +S'published 1835' +p309985 +sg291134 +S'View of the High Falls of Trenton: West Canada Creek, N.Y.' +p309986 +sg291136 +g27 +sg291137 +S'William James Bennett' +p309987 +sa(dp309988 +g291134 +S'View of the Natural Bridge' +p309989 +sg291137 +S'Artist Information (' +p309990 +sg291130 +S'(artist after)' +p309991 +sg291132 +S'\n' +p309992 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a2d.jpg' +p309993 +sg291136 +g27 +sa(dp309994 +g291130 +S'hand-colored aquatint with touches of engraving onwove paper' +p309995 +sg291132 +S'published 1833' +p309996 +sg291134 +S'View of the New York Quarantine, Staten Island' +p309997 +sg291136 +g27 +sg291137 +S'William James Bennett' +p309998 +sa(dp309999 +g291130 +S'(artist after)' +p310000 +sg291132 +S'\n' +p310001 +sg291134 +S'West Point, from above Washington Valley: Looking down the River' +p310002 +sg291136 +g27 +sg291137 +S'Artist Information (' +p310003 +sa(dp310004 +g291130 +S'color aquatint with touches of engraving, hand-colored, on wove paper' +p310005 +sg291132 +S'published 1831' +p310006 +sg291134 +S'West Point, from Phillipstown' +p310007 +sg291136 +g27 +sg291137 +S'William James Bennett' +p310008 +sa(dp310009 +g291134 +S'Title Plate' +p310010 +sg291137 +S'Canaletto' +p310011 +sg291130 +S'etching on laid paper' +p310012 +sg291132 +S'c. 1735/1746' +p310013 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbda.jpg' +p310014 +sg291136 +g27 +sa(dp310015 +g291134 +S'La Torre di Malghera' +p310016 +sg291137 +S'Canaletto' +p310017 +sg291130 +S'etching on laid paper' +p310018 +sg291132 +S'c. 1735/1746' +p310019 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbdc.jpg' +p310020 +sg291136 +g27 +sa(dp310021 +g291134 +S'Mestre' +p310022 +sg291137 +S'Canaletto' +p310023 +sg291130 +S'etching on laid paper' +p310024 +sg291132 +S'c. 1735/1746' +p310025 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbdd.jpg' +p310026 +sg291136 +g27 +sa(dp310027 +g291134 +S'Al Dolo' +p310028 +sg291137 +S'Canaletto' +p310029 +sg291130 +S'etching on laid paper' +p310030 +sg291132 +S'c. 1735/1746' +p310031 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbdf.jpg' +p310032 +sg291136 +g27 +sa(dp310033 +g291134 +S'Ale Porte del Dolo' +p310034 +sg291137 +S'Canaletto' +p310035 +sg291130 +S'etching on laid paper' +p310036 +sg291132 +S'c. 1735/1746' +p310037 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbe1.jpg' +p310038 +sg291136 +g27 +sa(dp310039 +g291134 +S'Le Porte Del Dolo' +p310040 +sg291137 +S'Canaletto' +p310041 +sg291130 +S'etching on laid paper' +p310042 +sg291132 +S'c. 1735/1746' +p310043 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbe6.jpg' +p310044 +sg291136 +g27 +sa(dp310045 +g291134 +S'Pra della Valle' +p310046 +sg291137 +S'Canaletto' +p310047 +sg291130 +S'etching on laid paper' +p310048 +sg291132 +S'c. 1735/1746' +p310049 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbef.jpg' +p310050 +sg291136 +g27 +sa(dp310051 +g291134 +S'S. Giustina in pra della Vale' +p310052 +sg291137 +S'Canaletto' +p310053 +sg291130 +S'etching on laid paper' +p310054 +sg291132 +S'c. 1735/1746' +p310055 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbe5.jpg' +p310056 +sg291136 +g27 +sa(dp310057 +g291134 +S'View of a Town on a River Bank' +p310058 +sg291137 +S'Canaletto' +p310059 +sg291130 +S'etching on laid paper' +p310060 +sg291132 +S'c. 1735/1746' +p310061 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbee.jpg' +p310062 +sg291136 +g27 +sa(dp310063 +g291134 +S'The Portico with the Lantern' +p310064 +sg291137 +S'Canaletto' +p310065 +sg291130 +S'etching on laid paper' +p310066 +sg291132 +S'c. 1735/1746' +p310067 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbed.jpg' +p310068 +sg291136 +g27 +sa(dp310069 +g291134 +S'Imaginary View of Padua' +p310070 +sg291137 +S'Canaletto' +p310071 +sg291130 +S'etching on laid paper' +p310072 +sg291132 +S'c. 1735/1746' +p310073 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbeb.jpg' +p310074 +sg291136 +g27 +sa(dp310075 +g291134 +S'The House with the Inscription [left]' +p310076 +sg291137 +S'Canaletto' +p310077 +sg291130 +S'etching on laid paper' +p310078 +sg291132 +S'1741' +p310079 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbe7.jpg' +p310080 +sg291136 +g27 +sa(dp310081 +g291134 +S'The House with the Peristyle [right]' +p310082 +sg291137 +S'Canaletto' +p310083 +sg291130 +S'etching on laid paper' +p310084 +sg291132 +S'1741' +p310085 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbe8.jpg' +p310086 +sg291136 +g27 +sa(dp310087 +g291134 +S"View of a Town with a Bishop's Tomb" +p310088 +sg291137 +S'Canaletto' +p310089 +sg291130 +S'etching on laid paper' +p310090 +sg291132 +S'c. 1735/1746' +p310091 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbf2.jpg' +p310092 +sg291136 +g27 +sa(dp310093 +g291134 +S'La libreria. V. [upper left]' +p310094 +sg291137 +S'Canaletto' +p310095 +sg291130 +S'etching on laid paper' +p310096 +sg291132 +S'in or before 1742' +p310097 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbfb.jpg' +p310098 +sg291136 +g27 +sa(dp310099 +g291134 +S'Le Procuratie niove e S. Ziminian V. [upper right]' +p310100 +sg291137 +S'Canaletto' +p310101 +sg291130 +S'etching on laid paper' +p310102 +sg291132 +S'c. 1735/1746' +p310103 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbfc.jpg' +p310104 +sg291136 +g27 +sa(dp310105 +g291134 +S'La Piera del Bando. V. [lower right]' +p310106 +sg291137 +S'Canaletto' +p310107 +sg291130 +S'etching on laid paper' +p310108 +sg291132 +S'c. 1735/1746' +p310109 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbfd.jpg' +p310110 +sg291136 +g27 +sa(dp310111 +g291134 +S'Le Preson. V. [lower left]' +p310112 +sg291137 +S'Canaletto' +p310113 +sg291130 +S'etching on laid paper' +p310114 +sg291132 +S'c. 1735/1746' +p310115 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbfe.jpg' +p310116 +sg291136 +g27 +sa(dp310117 +g291134 +S'The Market on the Molo [upper left]' +p310118 +sg291137 +S'Canaletto' +p310119 +sg291130 +S'etching on laid paper' +p310120 +sg291132 +S'c. 1735/1746' +p310121 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbf7.jpg' +p310122 +sg291136 +g27 +sa(dp310123 +g291134 +S'Imaginary View of S. Giacomo di Rialto [upper right]' +p310124 +sg291137 +S'Canaletto' +p310125 +sg291130 +S'etching on laid paper' +p310126 +sg291132 +S'c. 1735/1746' +p310127 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbf8.jpg' +p310128 +sg291136 +g27 +sa(dp310129 +g291134 +S'The Terrace [lower right]' +p310130 +sg291137 +S'Canaletto' +p310131 +sg291130 +S'etching on laid paper' +p310132 +sg291132 +S'c. 1735/1746' +p310133 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbf9.jpg' +p310134 +sg291136 +g27 +sa(dp310135 +g291134 +S'The Market at Dolo [lower left]' +p310136 +sg291137 +S'Canaletto' +p310137 +sg291130 +S'etching on laid paper' +p310138 +sg291132 +S'c. 1735/1746' +p310139 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbfa.jpg' +p310140 +sg291136 +g27 +sa(dp310141 +g291134 +S'Landscape with the Pilgrim at Prayer [upper left]' +p310142 +sg291137 +S'Canaletto' +p310143 +sg291130 +S'etching on laid paper' +p310144 +sg291132 +S'c. 1735/1746' +p310145 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbf3.jpg' +p310146 +sg291136 +g27 +sa(dp310147 +g291134 +S'The Equestrian Monument [upper right]' +p310148 +sg291137 +S'Canaletto' +p310149 +sg291130 +S'etching on laid paper' +p310150 +sg291132 +S'c. 1735/1746' +p310151 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbf4.jpg' +p310152 +sg291136 +g27 +sa(dp310153 +g291134 +S'Mountain Landscape with Five Bridges [lower right]' +p310154 +sg291137 +S'Canaletto' +p310155 +sg291130 +S'etching on laid paper' +p310156 +sg291132 +S'c. 1735/1746' +p310157 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbf5.jpg' +p310158 +sg291136 +g27 +sa(dp310159 +g291134 +S'Landscape with a Woman at a Well [lower left]' +p310160 +sg291137 +S'Canaletto' +p310161 +sg291130 +S'etching on laid paper' +p310162 +sg291132 +S'c. 1735/1746' +p310163 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbf6.jpg' +p310164 +sg291136 +g27 +sa(dp310165 +g291134 +S'Landscape with Tower and Two Ruined Pillars [left]' +p310166 +sg291137 +S'Canaletto' +p310167 +sg291130 +S'etching on laid paper' +p310168 +sg291132 +S'c. 1735/1746' +p310169 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbff.jpg' +p310170 +sg291136 +g27 +sa(dp310171 +g291134 +S'Landscape with Ruined Monuments [right]' +p310172 +sg291137 +S'Canaletto' +p310173 +sg291130 +S'etching on laid paper' +p310174 +sg291132 +S'c. 1735/1746' +p310175 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc00.jpg' +p310176 +sg291136 +g27 +sa(dp310177 +g291134 +S'The Little Monument [left]' +p310178 +sg291137 +S'Canaletto' +p310179 +sg291130 +S'etching' +p310180 +sg291132 +S'c. 1735/1746' +p310181 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc01.jpg' +p310182 +sg291136 +g27 +sa(dp310183 +g291134 +S"The Bishop's Tomb [center]" +p310184 +sg291137 +S'Canaletto' +p310185 +sg291130 +S'etching' +p310186 +sg291132 +S'c. 1735/1746' +p310187 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc02.jpg' +p310188 +sg291136 +g27 +sa(dp310189 +g291134 +S'The Wagon Passing over a Bridge' +p310190 +sg291137 +S'Canaletto' +p310191 +sg291130 +S'etching' +p310192 +sg291132 +S'c. 1735/1746' +p310193 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc03.jpg' +p310194 +sg291136 +g27 +sa(dp310195 +g291130 +S'etching with softground and falsebite on Rives BFK' +p310196 +sg291132 +S'1970' +p310197 +sg291134 +S"C\xc3\xa9zanne's Father" +p310198 +sg291136 +g27 +sg291137 +S'Thomas Browne Cornell' +p310199 +sa(dp310200 +g291130 +S'(publisher)' +p310201 +sg291132 +S'\n' +p310202 +sg291134 +S'American Farm Scenes: No.4 (Winter)' +p310203 +sg291136 +g27 +sg291137 +S'Artist Information (' +p310204 +sa(dp310205 +g291134 +S'American Winter Scenes: Morning' +p310206 +sg291137 +S'Artist Information (' +p310207 +sg291130 +S'(publisher)' +p310208 +sg291132 +S'\n' +p310209 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b5a.jpg' +p310210 +sg291136 +g27 +sa(dp310211 +g291130 +S'(publisher)' +p310212 +sg291132 +S'\n' +p310213 +sg291134 +S'Peytona and Fashion: In Their Great Match for $20,000' +p310214 +sg291136 +g27 +sg291137 +S'Artist Information (' +p310215 +sa(dp310216 +g291130 +S'(artist)' +p310217 +sg291132 +S'\n' +p310218 +sg291134 +S'Across the Continent: "Westward the Course of Empire Takes its Way"' +p310219 +sg291136 +g27 +sg291137 +S'Artist Information (' +p310220 +sa(dp310221 +g291130 +S'hand-colored lithograph on wove paper' +p310222 +sg291132 +S'published 1875' +p310223 +sg291134 +S'Broadway, New York: From the Western Union Telegraph Building, Looking North' +p310224 +sg291136 +g27 +sg291137 +S'Currier and Ives (publishers)' +p310225 +sa(dp310226 +g291130 +S'(artist after)' +p310227 +sg291132 +S'\n' +p310228 +sg291134 +S'The Farm-Yard in Winter' +p310229 +sg291136 +g27 +sg291137 +S'Artist Information (' +p310230 +sa(dp310231 +g291134 +S'Home to Thanksgiving' +p310232 +sg291137 +S'Artist Information (' +p310233 +sg291130 +S'(artist)' +p310234 +sg291132 +S'\n' +p310235 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b88.jpg' +p310236 +sg291136 +g27 +sa(dp310237 +g291130 +S'(artist)' +p310238 +sg291132 +S'\n' +p310239 +sg291134 +S'Summer Scenes in New York Harbor' +p310240 +sg291136 +g27 +sg291137 +S'Artist Information (' +p310241 +sa(dp310242 +g291134 +S"The Bostonian's Paying the Excise-Man, or Tarring & Feathering" +p310243 +sg291137 +S'Philip Dawe' +p310244 +sg291130 +S', published 1774' +p310245 +sg291132 +S'\n' +p310246 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00077/a00077d0.jpg' +p310247 +sg291136 +g27 +sa(dp310248 +g291134 +S'Horse' +p310249 +sg291137 +S'Edgar Degas' +p310250 +sg291130 +S'chalk and pastel counterproof on wove paper' +p310251 +sg291132 +S'c. 1890' +p310252 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f19.jpg' +p310253 +sg291136 +g27 +sa(dp310254 +g291134 +S'Three Studies of Ludovic Hal\xc3\xa9vy Standing' +p310255 +sg291137 +S'Edgar Degas' +p310256 +sg291130 +S'charcoal counterproof' +p310257 +sg291132 +S'c. 1880' +p310258 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00034/a0003401.jpg' +p310259 +sg291136 +g27 +sa(dp310260 +g291134 +S'Woman by a Fireplace' +p310261 +sg291137 +S'Edgar Degas' +p310262 +sg291130 +S'monotype on heavy laid paper' +p310263 +sg291132 +S'1880/1890' +p310264 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00050/a000508a.jpg' +p310265 +sg291136 +g27 +sa(dp310266 +g291134 +S'Boxeurs (The Boxers)' +p310267 +sg291137 +S'Th\xc3\xa9odore Gericault' +p310268 +sg291130 +S'lithograph on wove paper' +p310269 +sg291132 +S'1818' +p310270 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f64.jpg' +p310271 +sg291136 +g27 +sa(dp310272 +g291134 +S'Le Coursier (The Race Horse)' +p310273 +sg291137 +S'Odilon Redon' +p310274 +sg291130 +S'lithograph on chine applique; laid down on heavy wove paper' +p310275 +sg291132 +S'1894' +p310276 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fca.jpg' +p310277 +sg291136 +g27 +sa(dp310278 +g291130 +S'hand-colored etching on laid paper' +p310279 +sg291132 +S'published 1790' +p310280 +sg291134 +S'New York' +p310281 +sg291136 +g27 +sg291137 +S'Archibald Robertson' +p310282 +sa(dp310283 +g291130 +S'lithograph in black and beige on wove paper' +p310284 +sg291132 +S'published 1845' +p310285 +sg291134 +S"Peytona and Fashion's Great Match" +p310286 +sg291136 +g27 +sg291137 +S'Charles Severin' +p310287 +sa(dp310288 +g291130 +S'hand-colored photogravure on wove paper' +p310289 +sg291132 +S'1906' +p310290 +sg291134 +S'Yale University' +p310291 +sg291136 +g27 +sg291137 +S'Richard Rummell' +p310292 +sa(dp310293 +g291130 +S'aquatinted and etched copper plate' +p310294 +sg291132 +S'published 1812' +p310295 +sg291134 +S'Brilliant Naval Victory' +p310296 +sg291136 +g27 +sg291137 +S'Samuel Seymour' +p310297 +sa(dp310298 +g291134 +S'Brilliant Naval Victory' +p310299 +sg291137 +S'Samuel Seymour' +p310300 +sg291130 +S'aquatint and etching [restrike] on wove paper' +p310301 +sg291132 +S'published 1812' +p310302 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00111/a0011182.jpg' +p310303 +sg291136 +g27 +sa(dp310304 +g291134 +S'At the Ambassadeurs (Aux Ambassadeurs)' +p310305 +sg291137 +S'Henri de Toulouse-Lautrec' +p310306 +sg291130 +S'color lithograph on wove paper' +p310307 +sg291132 +S'1894' +p310308 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e61.jpg' +p310309 +sg291136 +g27 +sa(dp310310 +g291134 +S'Sleep (Le sommeil)' +p310311 +sg291137 +S'Henri de Toulouse-Lautrec' +p310312 +sg291130 +S'lithograph in red on japan paper' +p310313 +sg291132 +S'1896' +p310314 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e61.jpg' +p310315 +sg291136 +g27 +sa(dp310316 +g291134 +S'Sleep (Le sommeil)' +p310317 +sg291137 +S'Henri de Toulouse-Lautrec' +p310318 +sg291130 +S'lithograph in red on laid paper' +p310319 +sg291132 +S'1896' +p310320 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009e/a0009e62.jpg' +p310321 +sg291136 +g27 +sa(dp310322 +g291130 +S'color etching and aquatint on wove paper' +p310323 +sg291132 +S'1900' +p310324 +sg291134 +S'The Sulker (Boudeuse)' +p310325 +sg291136 +g27 +sg291137 +S'Jacques Villon' +p310326 +sa(dp310327 +g291134 +S'The Cards (Les cartes)' +p310328 +sg291137 +S'Jacques Villon' +p310329 +sg291130 +S'color etching and aquatint on wove paper' +p310330 +sg291132 +S'1903' +p310331 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e03.jpg' +p310332 +sg291136 +g27 +sa(dp310333 +g291130 +S'color etching and aquatint on heavy laid paper' +p310334 +sg291132 +S'1903' +p310335 +sg291134 +S'An Entertainment (Com\xc3\xa9die de soci\xc3\xa9t\xc3\xa9)' +p310336 +sg291136 +g27 +sg291137 +S'Jacques Villon' +p310337 +sa(dp310338 +g291134 +S'La Nouvelle Parisienne (24)' +p310339 +sg291137 +S'Jacques Villon' +p310340 +sg291130 +S'color softground etching, drypoint, and aquatint printed from two plates on cream wove paper' +p310341 +sg291132 +S'1902/1903' +p310342 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00054/a0005456.jpg' +p310343 +sg291136 +g27 +sa(dp310344 +g291130 +S'4-color aquatint and drypoint on wove paper' +p310345 +sg291132 +S'1904' +p310346 +sg291134 +S'Nevers in Paris (Nevers \xc3\xa0 Paris)' +p310347 +sg291136 +g27 +sg291137 +S'Jacques Villon' +p310348 +sa(dp310349 +g291130 +S'7-color aquatint and drypoint on BFK Rives paper' +p310350 +sg291132 +S'1904' +p310351 +sg291134 +S'Nevers in Paris (Nevers \xc3\xa0 Paris)' +p310352 +sg291136 +g27 +sg291137 +S'Jacques Villon' +p310353 +sa(dp310354 +g291130 +S'drypoint in brown on Arches paper' +p310355 +sg291132 +S'1904' +p310356 +sg291134 +S'Gossip (Le potin)' +p310357 +sg291136 +g27 +sg291137 +S'Jacques Villon' +p310358 +sa(dp310359 +g291130 +S'drypoint in black on wove paper' +p310360 +sg291132 +S'1913' +p310361 +sg291134 +S'Yvonne D. in Profile (Yvonne Duchamp)' +p310362 +sg291136 +g27 +sg291137 +S'Jacques Villon' +p310363 +sa(dp310364 +g291130 +g27 +sg291132 +S'(sculptor)' +p310365 +sg291134 +S'Female Figure with Raised Arms (a Niobid?)' +p310366 +sg291136 +g27 +sg291137 +S'Artist Information (' +p310367 +sa(dp310368 +g291130 +S'etched plate glass and steel, with cable' +p310369 +sg291132 +S'1972' +p310370 +sg291134 +S'Clearing' +p310371 +sg291136 +g27 +sg291137 +S'Christopher Wilmarth' +p310372 +sa(dp310373 +g291134 +S'The Rest on the Return from Egypt' +p310374 +sg291137 +S'Artist Information (' +p310375 +sg291130 +S'(artist after)' +p310376 +sg291132 +S'\n' +p310377 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf4f.jpg' +p310378 +sg291136 +g27 +sa(dp310379 +g291134 +S'Door Knocker with Triton, Nereid, and Putti' +p310380 +sg291137 +S'Artist Information (' +p310381 +sg291130 +g27 +sg291132 +S'(artist)' +p310382 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00061/a0006118.jpg' +p310383 +sg291136 +g27 +sa(dp310384 +g291134 +S'Door Knocker with Zeus Vanguishing Giants' +p310385 +sg291137 +S'Artist Information (' +p310386 +sg291130 +g27 +sg291132 +S'(artist)' +p310387 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00061/a0006117.jpg' +p310388 +sg291136 +g27 +sa(dp310389 +g291130 +S'etching on laid paper [proof before letters]' +p310390 +sg291132 +S'1777/1778' +p310391 +sg291134 +S'View of the Remains of the Cella of the Temple of Neptune' +p310392 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p310393 +sa(dp310394 +g291134 +S'An Old Man with a Cape and a Rustic with a Backpack' +p310395 +sg291137 +S'Giovanni Battista Piranesi' +p310396 +sg291130 +S'pen and brown ink on laid paper' +p310397 +sg291132 +S'1750s' +p310398 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dde.jpg' +p310399 +sg291136 +g27 +sa(dp310400 +g291134 +S'A Pregnant Young Woman and a Young Man with a Staff' +p310401 +sg291137 +S'Giovanni Battista Piranesi' +p310402 +sg291130 +S'pen and brown ink on laid paper' +p310403 +sg291132 +S'1750s' +p310404 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006db0.jpg' +p310405 +sg291136 +g27 +sa(dp310406 +g291130 +S'black crayon and white chalk on gray paper' +p310407 +sg291132 +S'1939' +p310408 +sg291134 +S'Nieuwe Kerk, Delft' +p310409 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p310410 +sa(dp310411 +g291130 +S'black crayon and black ball-point pen on wove paper' +p310412 +sg291132 +S'1959' +p310413 +sg291134 +S'Tuscania, San Pietro' +p310414 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p310415 +sa(dp310416 +g291130 +S'black crayon and white chalk on gray paper' +p310417 +sg291132 +S'1950' +p310418 +sg291134 +S'Manourie' +p310419 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p310420 +sa(dp310421 +g291134 +S'Atrani, Coast of Amalfi' +p310422 +sg291137 +S'M.C. Escher' +p310423 +sg291130 +S'graphite and black crayon on wove paper' +p310424 +sg291132 +S'1931' +p310425 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00004/a000046b.jpg' +p310426 +sg291136 +S'Escher spent the early part of the summer of 1931 in Ravello and along the coast of Amalfi, Italy. With its dramatic mountains and ancient hill towns this was a particularly favorite region for Escher. Drawings from the trip, including this example, inspired 15 woodcuts, wood engravings, and lithographs. \n ' +p310427 +sa(dp310428 +g291134 +S'Carruba Tree (Ravello)' +p310429 +sg291137 +S'M.C. Escher' +p310430 +sg291130 +S'graphite on wove paper' +p310431 +sg291132 +S'1931' +p310432 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00004/a000046c.jpg' +p310433 +sg291136 +g27 +sa(dp310434 +g291130 +S'woodcut' +p310435 +sg291132 +S'1934' +p310436 +sg291134 +S'San Giorgio in Vellabro' +p310437 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p310438 +sa(dp310439 +g291130 +S'woodcut block' +p310440 +sg291132 +S'1932' +p310441 +sg291134 +S'Carruba Tree (Ravello) [recto]' +p310442 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p310443 +sa(dp310444 +g291130 +S'woodcut block' +p310445 +sg291132 +S'1932' +p310446 +sg291134 +S'Atrani, Coast of Amalfi [verso]' +p310447 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p310448 +sa(dp310449 +g291130 +S'woodcut block' +p310450 +sg291132 +S'1934' +p310451 +sg291134 +S'San Giorgio in Vellabro [recto]' +p310452 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p310453 +sa(dp310454 +g291130 +S'woodcut block' +p310455 +sg291132 +S'1932' +p310456 +sg291134 +S'Carruba Tree (Ravello) [verso]' +p310457 +sg291136 +g27 +sg291137 +S'M.C. Escher' +p310458 +sa(dp310459 +g291130 +S'lithograph on handmade Auvergne paper' +p310460 +sg291132 +S'1944' +p310461 +sg291134 +S'Plumeuse' +p310462 +sg291136 +g27 +sg291137 +S'Jean Dubuffet' +p310463 +sa(dp310464 +g291130 +S'screenprint in black and pink' +p310465 +sg291132 +S'1970' +p310466 +sg291134 +S'Features 55' +p310467 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310468 +sa(dp310469 +g291130 +S'screenprint in black and gray' +p310470 +sg291132 +S'1970' +p310471 +sg291134 +S'Features 56' +p310472 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310473 +sa(dp310474 +g291130 +S'screenprint in black and gray' +p310475 +sg291132 +S'1970' +p310476 +sg291134 +S'Features 57' +p310477 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310478 +sa(dp310479 +g291130 +S'screenprint in black and blue' +p310480 +sg291132 +S'1970' +p310481 +sg291134 +S'Features 58' +p310482 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310483 +sa(dp310484 +g291130 +S'screenprint in black and gray' +p310485 +sg291132 +S'1970' +p310486 +sg291134 +S'Features 59' +p310487 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310488 +sa(dp310489 +g291130 +S'screenprint in black and blue' +p310490 +sg291132 +S'1970' +p310491 +sg291134 +S'Features 60' +p310492 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310493 +sa(dp310494 +g291130 +S'screenprint in black and white' +p310495 +sg291132 +S'1970' +p310496 +sg291134 +S'Features 61' +p310497 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310498 +sa(dp310499 +g291130 +S'screenprint in black and cream' +p310500 +sg291132 +S'1970' +p310501 +sg291134 +S'Features 62' +p310502 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310503 +sa(dp310504 +g291130 +S'screenprint in black and cream' +p310505 +sg291132 +S'1970' +p310506 +sg291134 +S'Features 63' +p310507 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310508 +sa(dp310509 +g291130 +S'screenprint in black and gray' +p310510 +sg291132 +S'1970' +p310511 +sg291134 +S'Features 64' +p310512 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310513 +sa(dp310514 +g291130 +S'screenprint in black and blue' +p310515 +sg291132 +S'1970' +p310516 +sg291134 +S'Features 65' +p310517 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310518 +sa(dp310519 +g291130 +S'screenprint in black and pink' +p310520 +sg291132 +S'1970' +p310521 +sg291134 +S'Features 66' +p310522 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310523 +sa(dp310524 +g291130 +S'screenprint in black and yellow' +p310525 +sg291132 +S'1970' +p310526 +sg291134 +S'Features 67' +p310527 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310528 +sa(dp310529 +g291130 +S'screenprint in black and blue' +p310530 +sg291132 +S'1970' +p310531 +sg291134 +S'Features 68' +p310532 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310533 +sa(dp310534 +g291130 +S'screenprint in black and white' +p310535 +sg291132 +S'1970' +p310536 +sg291134 +S'Features 69' +p310537 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310538 +sa(dp310539 +g291130 +S'screenprint in black and white' +p310540 +sg291132 +S'1970' +p310541 +sg291134 +S'Features 70' +p310542 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310543 +sa(dp310544 +g291130 +S'screenprint in black and blue' +p310545 +sg291132 +S'1970' +p310546 +sg291134 +S'Features 71' +p310547 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310548 +sa(dp310549 +g291130 +S'screenprint in black and gray' +p310550 +sg291132 +S'1970' +p310551 +sg291134 +S'Features 72' +p310552 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310553 +sa(dp310554 +g291130 +S'screenprint in black and blue' +p310555 +sg291132 +S'1970' +p310556 +sg291134 +S'Features 73' +p310557 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310558 +sa(dp310559 +g291130 +S'screenprint in black and gray' +p310560 +sg291132 +S'1970' +p310561 +sg291134 +S'Features 74' +p310562 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310563 +sa(dp310564 +g291130 +S'screenprint in black' +p310565 +sg291132 +S'1970' +p310566 +sg291134 +S'Features 75' +p310567 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310568 +sa(dp310569 +g291130 +S'screenprint in black and pink' +p310570 +sg291132 +S'1970' +p310571 +sg291134 +S'Features 76' +p310572 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310573 +sa(dp310574 +g291130 +S'screenprint in black and yellow' +p310575 +sg291132 +S'1970' +p310576 +sg291134 +S'Features 77' +p310577 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310578 +sa(dp310579 +g291130 +S'screenprint in black and blue' +p310580 +sg291132 +S'1970' +p310581 +sg291134 +S'Features 78' +p310582 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310583 +sa(dp310584 +g291130 +S'screenprint in black and white' +p310585 +sg291132 +S'1970' +p310586 +sg291134 +S'Features 79' +p310587 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310588 +sa(dp310589 +g291130 +S'screenprint in black and cream' +p310590 +sg291132 +S'1970' +p310591 +sg291134 +S'Features 80' +p310592 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310593 +sa(dp310594 +g291130 +S'screenprint in flat black, white, and gloss black' +p310595 +sg291132 +S'1970' +p310596 +sg291134 +S'Surface Series 37' +p310597 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310598 +sa(dp310599 +g291130 +S'screenprint in flat black, white, and gloss black' +p310600 +sg291132 +S'1970' +p310601 +sg291134 +S'Surface Series 38' +p310602 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310603 +sa(dp310604 +g291130 +S'screenprint in flat black, white, and gloss black' +p310605 +sg291132 +S'1970' +p310606 +sg291134 +S'Surface Series 39' +p310607 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310608 +sa(dp310609 +g291130 +S'screenprint in flat black, white, and gloss black' +p310610 +sg291132 +S'1970' +p310611 +sg291134 +S'Surface Series 40' +p310612 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310613 +sa(dp310614 +g291130 +S'screenprint in flat black, white, and gloss black' +p310615 +sg291132 +S'1970' +p310616 +sg291134 +S'Surface Series 41' +p310617 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310618 +sa(dp310619 +g291130 +S'screenprint in flat black, white, and gloss black' +p310620 +sg291132 +S'1970' +p310621 +sg291134 +S'Surface Series 42' +p310622 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310623 +sa(dp310624 +g291130 +S'screenprint in flat black, white, and gloss black' +p310625 +sg291132 +S'1970' +p310626 +sg291134 +S'Surface Series 43' +p310627 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310628 +sa(dp310629 +g291130 +S'screenprint in flat black, white, and gloss black' +p310630 +sg291132 +S'1970' +p310631 +sg291134 +S'Surface Series 44' +p310632 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310633 +sa(dp310634 +g291130 +S'screenprint in flat black, white, and gloss black' +p310635 +sg291132 +S'1970' +p310636 +sg291134 +S'Surface Series 45' +p310637 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310638 +sa(dp310639 +g291130 +S'screenprint in flat black, white, and gloss black' +p310640 +sg291132 +S'1970' +p310641 +sg291134 +S'Surface Series 46' +p310642 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310643 +sa(dp310644 +g291130 +S'screenprint in flat black, white, and gloss black' +p310645 +sg291132 +S'1970' +p310646 +sg291134 +S'Surface Series 47' +p310647 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310648 +sa(dp310649 +g291130 +S'screenprint in flat black, white, and gloss black' +p310650 +sg291132 +S'1970' +p310651 +sg291134 +S'Surface Series 48' +p310652 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310653 +sa(dp310654 +g291130 +S'screenprint in flat black, white, and gloss black' +p310655 +sg291132 +S'1970' +p310656 +sg291134 +S'Surface Series 49' +p310657 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310658 +sa(dp310659 +g291130 +S'screenprint in flat black, white, and gloss black' +p310660 +sg291132 +S'1970' +p310661 +sg291134 +S'Surface Series 50' +p310662 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310663 +sa(dp310664 +g291130 +S'screenprint in flat black, white, and gloss black' +p310665 +sg291132 +S'1970' +p310666 +sg291134 +S'Surface Series 51' +p310667 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310668 +sa(dp310669 +g291130 +S'screenprint in flat black, white, and gloss black' +p310670 +sg291132 +S'1970' +p310671 +sg291134 +S'Surface Series 52' +p310672 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310673 +sa(dp310674 +g291130 +S'screenprint in flat black, white, and gloss black' +p310675 +sg291132 +S'1970' +p310676 +sg291134 +S'Surface Series 53' +p310677 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310678 +sa(dp310679 +g291130 +S'screenprint in flat black, white, and gloss black' +p310680 +sg291132 +S'1970' +p310681 +sg291134 +S'Surface Series 54' +p310682 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p310683 +sa(dp310684 +g291130 +S'color woodcut' +p310685 +sg291132 +S'1982' +p310686 +sg291134 +S'Morning' +p310687 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p310688 +sa(dp310689 +g291130 +S'soft-ground etching and aquatint in black, brown, blue, and green' +p310690 +sg291132 +S'1981' +p310691 +sg291134 +S'Blue Club' +p310692 +sg291136 +g27 +sg291137 +S'Richard Diebenkorn' +p310693 +sa(dp310694 +g291130 +S'drypoint on wove paper' +p310695 +sg291132 +S'1980' +p310696 +sg291134 +S'Self-Portrait' +p310697 +sg291136 +g27 +sg291137 +S'Richard Diebenkorn' +p310698 +sa(dp310699 +g291130 +S'drypoint on wove paper' +p310700 +sg291132 +S'1980' +p310701 +sg291134 +S'Affirmations V' +p310702 +sg291136 +g27 +sg291137 +S'Michael Heindorff' +p310703 +sa(dp310704 +g291130 +S'active second half 20th century' +p310705 +sg291132 +S'(painter)' +p310706 +sg291134 +S'Black Moonlight [left half]' +p310707 +sg291136 +g27 +sg291137 +S'Artist Information (' +p310708 +sa(dp310709 +g291130 +S'active second half 20th century' +p310710 +sg291132 +S'(painter)' +p310711 +sg291134 +S'Black Moonlight [right half]' +p310712 +sg291136 +g27 +sg291137 +S'Artist Information (' +p310713 +sa(dp310714 +g291130 +S'lithograph in gray and blue on black paper' +p310715 +sg291132 +S'1970' +p310716 +sg291134 +S'Tumbleweed' +p310717 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p310718 +sa(dp310719 +g291130 +S'lithograph in green and gray' +p310720 +sg291132 +S'1969' +p310721 +sg291134 +S'Air' +p310722 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p310723 +sa(dp310724 +g291130 +S'color monoprint' +p310725 +sg291132 +S'1978' +p310726 +sg291134 +S'O.T.P.A.G.' +p310727 +sg291136 +g27 +sg291137 +S'William T. Wiley' +p310728 +sa(dp310729 +g291130 +S'lithograph on wove paper' +p310730 +sg291132 +S'1923' +p310731 +sg291134 +S'Otto Klemperer' +p310732 +sg291136 +g27 +sg291137 +S'Otto Dix' +p310733 +sa(dp310734 +g291134 +S'Street Corner in Dresden (Strassenecke Dresden)' +p310735 +sg291137 +S'Ernst Ludwig Kirchner' +p310736 +sg291130 +S'drypoint on blotting paper' +p310737 +sg291132 +S'1909' +p310738 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b608.jpg' +p310739 +sg291136 +g27 +sa(dp310740 +g291134 +S'Bridge on Crown Prince Embankment (Brucke am Kronprinzenufer)' +p310741 +sg291137 +S'Ernst Ludwig Kirchner' +p310742 +sg291130 +S'drypoint with tonal etching on blotting paper' +p310743 +sg291132 +S'1909' +p310744 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b7c5.jpg' +p310745 +sg291136 +g27 +sa(dp310746 +g291130 +S'black and blue ink on rice paper' +p310747 +sg291132 +S'c. 1951' +p310748 +sg291134 +S'Untitled' +p310749 +sg291136 +g27 +sg291137 +S'Jackson Pollock' +p310750 +sa(dp310751 +g291130 +S'black and blue ink on rice paper' +p310752 +sg291132 +S'c. 1951' +p310753 +sg291134 +S'Untitled' +p310754 +sg291136 +g27 +sg291137 +S'Jackson Pollock' +p310755 +sa(dp310756 +g291134 +S'The Shipwreck (Le naufrage)' +p310757 +sg291137 +S'Claude Lorrain' +p310758 +sg291130 +S'etching' +p310759 +sg291132 +S'c. 1638/1641' +p310760 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a000890b.jpg' +p310761 +sg291136 +g27 +sa(dp310762 +g291134 +S'Pierre-Jean Mariette' +p310763 +sg291137 +S'Artist Information (' +p310764 +sg291130 +S'(artist after)' +p310765 +sg291132 +S'\n' +p310766 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c9c.jpg' +p310767 +sg291136 +g27 +sa(dp310768 +g291130 +S'gelatin silver print, 1980' +p310769 +sg291132 +S'1941' +p310770 +sg291134 +S'Moonrise, Hernandez, New Mexico' +p310771 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310772 +sa(dp310773 +g291130 +S'gelatin silver print, 1980' +p310774 +sg291132 +S'1927' +p310775 +sg291134 +S'Monolith, the Face of Half Dome, Yosemite National Park, California' +p310776 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310777 +sa(dp310778 +g291130 +S'gelatin silver print, 1980' +p310779 +sg291132 +S'1944' +p310780 +sg291134 +S'Mount Williamson, the Sierra Nevada, from Manzanar, California' +p310781 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310782 +sa(dp310783 +g291130 +S'gelatin silver print, 1980' +p310784 +sg291132 +S'1944' +p310785 +sg291134 +S'Winter Sunrise, the Sierra Nevada, from Lone Pine, California' +p310786 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310787 +sa(dp310788 +g291130 +S'gelatin silver print, 1980' +p310789 +sg291132 +S'1942' +p310790 +sg291134 +S'The Tetons and the Snake River, Grand Teton National Park, Wyoming' +p310791 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310792 +sa(dp310793 +g291130 +S'gelatin silver print, 1980' +p310794 +sg291132 +S'1958' +p310795 +sg291134 +S'Aspens, Northern New Mexico' +p310796 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310797 +sa(dp310798 +g291130 +S'gelatin silver print, 1980' +p310799 +sg291132 +S'1944' +p310800 +sg291134 +S'Clearing Winter Storm, Yosemite National Park, California' +p310801 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310802 +sa(dp310803 +g291130 +S'gelatin silver print, 1980' +p310804 +sg291132 +S'1932' +p310805 +sg291134 +S'Frozen Lake and Cliffs, the Sierra Nevada, Sequoia National Park, California' +p310806 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310807 +sa(dp310808 +g291130 +S'gelatin silver print, 1980' +p310809 +sg291132 +S'c. 1948' +p310810 +sg291134 +S'Sand Dunes, Sunrise, Death Valley National Monument, California' +p310811 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310812 +sa(dp310813 +g291130 +S'gelatin silver print, 1980' +p310814 +sg291132 +S'c. 1948' +p310815 +sg291134 +S'Tenaya Creek, Dogwood, Rain, Yosemite National Park, California' +p310816 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310817 +sa(dp310818 +g291130 +S'gelatin silver print, 1979' +p310819 +sg291132 +S'1921' +p310820 +sg291134 +S'Lodgepole Pines, Lyell Fork of the Merced River, Yosemite National Park, California' +p310821 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310822 +sa(dp310823 +g291130 +S'gelatin silver print, 1979' +p310824 +sg291132 +S'c. 1968' +p310825 +sg291134 +S'Eagle Peak and Middle Brother, Winter, Yosemite National Park, California' +p310826 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310827 +sa(dp310828 +g291130 +S'gelatin silver print, 1979' +p310829 +sg291132 +S'c. 1935' +p310830 +sg291134 +S'High Country Crags and Moon, Sunrise, Kings Canyon National Park, California' +p310831 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310832 +sa(dp310833 +g291130 +S'gelatin silver print, 1981' +p310834 +sg291132 +S'c. 1940' +p310835 +sg291134 +S'El Capitan Fall, Yosemite National Park, California' +p310836 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310837 +sa(dp310838 +g291130 +S'gelatin silver print, 1981' +p310839 +sg291132 +S'1939' +p310840 +sg291134 +S"Alfred Stieglitz and Painting by Georgia O'Keeffe, An American Place, New York City" +p310841 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310842 +sa(dp310843 +g291130 +S'gelatin silver print, 1981' +p310844 +sg291132 +S'1938' +p310845 +sg291134 +S'Dogwood, Yosemite National Park, California' +p310846 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310847 +sa(dp310848 +g291130 +S'gelatin silver print, 1981' +p310849 +sg291132 +S'1937' +p310850 +sg291134 +S'Spanish American Woman, near Chimayo, New Mexico' +p310851 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310852 +sa(dp310853 +g291130 +S'gelatin silver print, 1981' +p310854 +sg291132 +S'1937' +p310855 +sg291134 +S"Georgia O'Keeffe and Orville Cox, Canyon de Chelly National Monument, Arizona" +p310856 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310857 +sa(dp310858 +g291130 +S'gelatin silver print, 1979' +p310859 +sg291132 +S'1967' +p310860 +sg291134 +S'Cypress and Fog, Pebble Beach, California' +p310861 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310862 +sa(dp310863 +g291130 +S'gelatin silver print, 1981' +p310864 +sg291132 +S'c. 1927' +p310865 +sg291134 +S'Juniper Tree Detail, Sequoia National Park, California' +p310866 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310867 +sa(dp310868 +g291130 +S'gelatin silver print, 1981' +p310869 +sg291132 +S'c. 1937' +p310870 +sg291134 +S'Barn, Cape Cod, Massachusetts' +p310871 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310872 +sa(dp310873 +g291130 +S'gelatin silver print, 1981' +p310874 +sg291132 +S'1933' +p310875 +sg291134 +S'Jose Clemente Orozco, New York City' +p310876 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310877 +sa(dp310878 +g291130 +S'gelatin silver print, 1981' +p310879 +sg291132 +S'1944' +p310880 +sg291134 +S'Trailer Camp Children, Richmond, California' +p310881 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310882 +sa(dp310883 +g291130 +S'gelatin silver print, 1981' +p310884 +sg291132 +S'c. 1929' +p310885 +sg291134 +S'Winnowing Grain, Taos Pueblo, New Mexico' +p310886 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310887 +sa(dp310888 +g291130 +S'gelatin silver print, 1979' +p310889 +sg291132 +S'c. 1932' +p310890 +sg291134 +S'Rose and Driftwood, San Francisco, California' +p310891 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310892 +sa(dp310893 +g291130 +S'gelatin silver print, 1980' +p310894 +sg291132 +S'c. 1938' +p310895 +sg291134 +S'Half Dome, Merced River, Winter, Yosemite National Park, California' +p310896 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310897 +sa(dp310898 +g291130 +S'gelatin silver print, 1981' +p310899 +sg291132 +S'1959' +p310900 +sg291134 +S'White Mountain Range, Thunderclouds, from the Buttermilk Country, near Bishop, California' +p310901 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310902 +sa(dp310903 +g291130 +S'gelatin silver print, 1981' +p310904 +sg291132 +S'c. 1950' +p310905 +sg291134 +S'Sequoia Gigantea Roots, Yosemite National Park, California' +p310906 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310907 +sa(dp310908 +g291130 +S'gelatin silver print, 1981' +p310909 +sg291132 +S'c. 1932' +p310910 +sg291134 +S'Rock and Grass, Moraine Lake, Sequoia National Park, California' +p310911 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310912 +sa(dp310913 +g291130 +S'gelatin silver print, 1980' +p310914 +sg291132 +S'c. 1939' +p310915 +sg291134 +S'Merced River, Cliffs, Autumn, Yosemite Valley, California' +p310916 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310917 +sa(dp310918 +g291130 +S'gelatin silver print, 1981' +p310919 +sg291132 +S'c. 1927' +p310920 +sg291134 +S'Bridal Veil Fall, Yosemite National Park, California' +p310921 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310922 +sa(dp310923 +g291130 +S'gelatin silver print, 1981' +p310924 +sg291132 +S'1948' +p310925 +sg291134 +S'Oak Tree, Snowstorm, Yosemite National Park, California' +p310926 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310927 +sa(dp310928 +g291130 +S'gelatin silver print, 1981' +p310929 +sg291132 +S'c. 1958' +p310930 +sg291134 +S'Siesta Lake, Yosemite National Park, California' +p310931 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310932 +sa(dp310933 +g291130 +S'gelatin silver print, 1981' +p310934 +sg291132 +S'c. 1948' +p310935 +sg291134 +S'Vernal Fall, Yosemite Valley, California' +p310936 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310937 +sa(dp310938 +g291130 +S'gelatin silver print, 1980' +p310939 +sg291132 +S'1960' +p310940 +sg291134 +S'Moon and Half Dome, Yosemite National Park, California' +p310941 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310942 +sa(dp310943 +g291130 +S'gelatin silver print, 1981' +p310944 +sg291132 +S'1947' +p310945 +sg291134 +S'Mount McKinley and Wonder Lake, Denali National Park, Alaska' +p310946 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310947 +sa(dp310948 +g291130 +S'gelatin silver print, 1981' +p310949 +sg291132 +S'1947' +p310950 +sg291134 +S'Trailside, near Juneau, Alaska' +p310951 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310952 +sa(dp310953 +g291130 +S'gelatin silver print, 1981' +p310954 +sg291132 +S'1937' +p310955 +sg291134 +S'Ghost Ranch Hills, Chama Valley, Northern New Mexico' +p310956 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310957 +sa(dp310958 +g291130 +S'gelatin silver print, 1980' +p310959 +sg291132 +S'c. 1942' +p310960 +sg291134 +S'Zabriskie Point, Death Valley National Monument, California' +p310961 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310962 +sa(dp310963 +g291130 +S'gelatin silver print, 1981' +p310964 +sg291132 +S'c. 1950' +p310965 +sg291134 +S'Sand Dunes, Oceano, California' +p310966 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310967 +sa(dp310968 +g291130 +S'gelatin silver print, 1980' +p310969 +sg291132 +S'c. 1960' +p310970 +sg291134 +S'Redwoods, Bull Creek Flat, Northern California' +p310971 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310972 +sa(dp310973 +g291130 +S'gelatin silver print, 1980' +p310974 +sg291132 +S'c. 1940' +p310975 +sg291134 +S'Orchard, Portola Valley, California' +p310976 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310977 +sa(dp310978 +g291130 +S'gelatin silver print, 1981' +p310979 +sg291132 +S'c. 1929' +p310980 +sg291134 +S'Saint Francis Church, Ranchos de Taos, New Mexico' +p310981 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310982 +sa(dp310983 +g291130 +S'gelatin silver print, 1981' +p310984 +sg291132 +S'1958' +p310985 +sg291134 +S'Monument Valley, Arizona' +p310986 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310987 +sa(dp310988 +g291130 +S'gelatin silver print, 1981' +p310989 +sg291132 +S'1942' +p310990 +sg291134 +S'Old Faithful Geyser, Yellowstone National Park, Wyoming' +p310991 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310992 +sa(dp310993 +g291130 +S'gelatin silver print, 1981' +p310994 +sg291132 +S'c. 1942' +p310995 +sg291134 +S'Leaves, Mount Rainier National Park, Washington' +p310996 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p310997 +sa(dp310998 +g291130 +S'gelatin silver print, 1981' +p310999 +sg291132 +S'c. 1953' +p311000 +sg291134 +S'Church and Road, Bodega, California' +p311001 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311002 +sa(dp311003 +g291130 +S'gelatin silver print, 1980' +p311004 +sg291132 +S'c. 1960' +p311005 +sg291134 +S'Oak Tree, Rain, Sonoma County, California' +p311006 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311007 +sa(dp311008 +g291130 +S'gelatin silver print, 1981' +p311009 +sg291132 +S'c. 1956' +p311010 +sg291134 +S'Buddhist Grave Markers and Rainbow, Maui, Hawaii' +p311011 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311012 +sa(dp311013 +g291130 +S'gelatin silver print, 1981' +p311014 +sg291132 +S'1944' +p311015 +sg291134 +S'Mrs. Gunn on Porch, Independence, California' +p311016 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311017 +sa(dp311018 +g291130 +S'gelatin silver print, 1981' +p311019 +sg291132 +S'1942' +p311020 +sg291134 +S'Canyon de Chelly National Monument, Arizona' +p311021 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311022 +sa(dp311023 +g291130 +S'gelatin silver print, 1980' +p311024 +sg291132 +S'1947' +p311025 +sg291134 +S'Sand Bar, Rio Grande, Big Bend National Park, Texas' +p311026 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311027 +sa(dp311028 +g291130 +S'gelatin silver print, 1981' +p311029 +sg291132 +S'c. 1942' +p311030 +sg291134 +S'Dune, White Sands National Monument, New Mexico' +p311031 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311032 +sa(dp311033 +g291130 +S'gelatin silver print, 1980' +p311034 +sg291132 +S'1948' +p311035 +sg291134 +S'Mormon Temple, Manti, Utah' +p311036 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311037 +sa(dp311038 +g291130 +S'gelatin silver print, 1981' +p311039 +sg291132 +S'1948' +p311040 +sg291134 +S'Dawn, Autumn, Great Smoky Mountains National Park, Tennessee' +p311041 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311042 +sa(dp311043 +g291130 +S'gelatin silver print, 1981' +p311044 +sg291132 +S'1942' +p311045 +sg291134 +S'White House Ruin, Canyon de Chelly National Monument, Arizona' +p311046 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311047 +sa(dp311048 +g291130 +S'gelatin silver print, 1981' +p311049 +sg291132 +S'1951' +p311050 +sg291134 +S'Clearing Storm, Sonoma County Hills, California' +p311051 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311052 +sa(dp311053 +g291130 +S'gelatin silver print, 1980' +p311054 +sg291132 +S'c. 1942' +p311055 +sg291134 +S'Grand Canyon of the Colorado River, Grand Canyon National Park, Arizona' +p311056 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311057 +sa(dp311058 +g291130 +S'gelatin silver print, 1980' +p311059 +sg291132 +S'c. 1946' +p311060 +sg291134 +S'Tenaya Lake, Mount Conness, Yosemite Nationa l Park, California' +p311061 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311062 +sa(dp311063 +g291130 +S'gelatin silver print, 1980' +p311064 +sg291132 +S'c. 1962' +p311065 +sg291134 +S'Evening Clouds and Pool, East Side of the Sierra Nevada from the Owens Valley, Califonia' +p311066 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311067 +sa(dp311068 +g291130 +S'gelatin silver print, 1980' +p311069 +sg291132 +S'c. 1935' +p311070 +sg291134 +S'Grass and Pool, the Sierra Nevada, California' +p311071 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311072 +sa(dp311073 +g291130 +S'gelatin silver print, 1981' +p311074 +sg291132 +S'c. 1942' +p311075 +sg291134 +S'Pool, Acoma Pueblo, New Mexico' +p311076 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311077 +sa(dp311078 +g291130 +S'gelatin silver print, 1981' +p311079 +sg291132 +S'1945' +p311080 +sg291134 +S'Metamorphic Rock and Summer Grass, Foothills, the Sierra Nevada, California' +p311081 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311082 +sa(dp311083 +g291130 +S'gelatin silver print, 1981' +p311084 +sg291132 +S'c. 1958' +p311085 +sg291134 +S'Autumn Storm, Los Trampas, near Penasco, New Mexico' +p311086 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311087 +sa(dp311088 +g291130 +S'gelatin silver print, 1981' +p311089 +sg291132 +S'1937' +p311090 +sg291134 +S'Aspens, Dawn, Dolores River Canyon, Autumn, Colorado' +p311091 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311092 +sa(dp311093 +g291130 +S'gelatin silver print, 1981' +p311094 +sg291132 +S'c. 1947' +p311095 +sg291134 +S'Mono Lake, California' +p311096 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311097 +sa(dp311098 +g291130 +S'gelatin silver print, 1981' +p311099 +sg291132 +S'c. 1965' +p311100 +sg291134 +S'Trees, Slide Lake, Grand Teton National Park, Wyoming' +p311101 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311102 +sa(dp311103 +g291130 +S'gelatin silver print, 1980' +p311104 +sg291132 +S'1932' +p311105 +sg291134 +S'The Golden Gate before the Bridge, San Francisco, California' +p311106 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311107 +sa(dp311108 +g291130 +S'gelatin silver print, 1981' +p311109 +sg291132 +S'c. 1952' +p311110 +sg291134 +S'Manly Beacon, Death Valley National Monument, California' +p311111 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311112 +sa(dp311113 +g291130 +S'gelatin silver print, 1981' +p311114 +sg291132 +S'c. 1950' +p311115 +sg291134 +S'Penitente Moranda, Coyote, New Mexico' +p311116 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311117 +sa(dp311118 +g291130 +S'gelatin silver print, 1982' +p311119 +sg291132 +S'1940' +p311120 +sg291134 +S'Surf Sequence 1, San Mateo County Coast, California' +p311121 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311122 +sa(dp311123 +g291130 +S'gelatin silver print, 1982' +p311124 +sg291132 +S'1940' +p311125 +sg291134 +S'Surf Sequence 2, San Mateo County Coast, California' +p311126 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311127 +sa(dp311128 +g291130 +S'gelatin silver print, 1982' +p311129 +sg291132 +S'1940' +p311130 +sg291134 +S'Surf Sequence 3, San Mateo County Coast, California' +p311131 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311132 +sa(dp311133 +g291130 +S'gelatin silver print, 1982' +p311134 +sg291132 +S'1940' +p311135 +sg291134 +S'Surf Sequence 4, San Mateo County Coast, California' +p311136 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311137 +sa(dp311138 +g291130 +S'gelatin silver print, 1982' +p311139 +sg291132 +S'1940' +p311140 +sg291134 +S'Surf Sequence 5, San Mateo County Coast, California' +p311141 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p311142 +sa(dp311143 +g291134 +S"Winter: Cat on a Cushion (L'hiver: Chat sur un coussin)" +p311144 +sg291137 +S'Th\xc3\xa9ophile Alexandre Steinlen' +p311145 +sg291130 +S'color lithograph' +p311146 +sg291132 +S'unknown date\n' +p311147 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a00e.jpg' +p311148 +sg291136 +g27 +sa(dp311149 +g291134 +S'The Triumph of Marriage' +p311150 +sg291137 +S'Claude Gillot' +p311151 +sg291130 +S'pen and brown ink on laid paper' +p311152 +sg291132 +S'unknown date\n' +p311153 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a0007025.jpg' +p311154 +sg291136 +g27 +sa(dp311155 +g291134 +S'Architectural Fantasy with a Pyramidal Mausoleum' +p311156 +sg291137 +S'Charles Michel-Ange Challe' +p311157 +sg291130 +S'pen and brown ink with brown wash on laid paper' +p311158 +sg291132 +S'c. 1747' +p311159 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e18.jpg' +p311160 +sg291136 +g27 +sa(dp311161 +g291134 +S'Fantasy on an Ancient Campidoglio' +p311162 +sg291137 +S'Hubert Robert' +p311163 +sg291130 +S'pen and black ink with gray wash on laid paper' +p311164 +sg291132 +S'unknown date\n' +p311165 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006eee.jpg' +p311166 +sg291136 +g27 +sa(dp311167 +g291134 +S'The Holy Family under a Tree' +p311168 +sg291137 +S'Simone Cantarini' +p311169 +sg291130 +S'pen and brown ink on laid paper' +p311170 +sg291132 +S'unknown date\n' +p311171 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a0007498.jpg' +p311172 +sg291136 +g27 +sa(dp311173 +g291130 +S'etching, engraving, drypoint, burnishing' +p311174 +sg291132 +S'published 1747/1749' +p311175 +sg291134 +S'The Triumphal Arch' +p311176 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p311177 +sa(dp311178 +g291130 +S'etching, engraving, drypoint, scratching' +p311179 +sg291132 +S'published 1747/1749' +p311180 +sg291134 +S'The Monumental Tablet' +p311181 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p311182 +sa(dp311183 +g291130 +S'etching, engraving, drypoint, scratching' +p311184 +sg291132 +S'published 1747/1749' +p311185 +sg291134 +S'The Tomb of Nero' +p311186 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p311187 +sa(dp311188 +g291130 +S'etching, engraving, drypoint, burnishing' +p311189 +sg291132 +S'published 1747/1749' +p311190 +sg291134 +S'The Skeletons' +p311191 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p311192 +sa(dp311193 +g291130 +S'sculptured and knotted wool pile on cotton canvas' +p311194 +sg291132 +S'1982' +p311195 +sg291134 +S'Scarlet Yantra' +p311196 +sg291136 +g27 +sg291137 +S'Jack Youngerman' +p311197 +sa(dp311198 +g291134 +S'Landscape with Open Gate' +p311199 +sg291137 +S'Pieter Molijn' +p311200 +sg291130 +S'oil on panel' +p311201 +sg291132 +S'c. 1630' +p311202 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e72.jpg' +p311203 +sg291136 +g27 +sa(dp311204 +g291130 +S'mixed media and oil on canvas' +p311205 +sg291132 +S'1946' +p311206 +sg291134 +S'La dame au pompon' +p311207 +sg291136 +g27 +sg291137 +S'Jean Dubuffet' +p311208 +sa(dp311209 +g291134 +S'Sylvae' +p311210 +sg291137 +S'Cy Twombly' +p311211 +sg291130 +S'paint stick, flat paint, crayon, and graphite on paper' +p311212 +sg291132 +S'1981' +p311213 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009e5.jpg' +p311214 +sg291136 +g27 +sa(dp311215 +g291134 +S'Sylvae' +p311216 +sg291137 +S'Cy Twombly' +p311217 +sg291130 +S'paint stick, flat paint, crayon, and graphite on paper' +p311218 +sg291132 +S'1981' +p311219 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009e6.jpg' +p311220 +sg291136 +g27 +sa(dp311221 +g291134 +S'Nike' +p311222 +sg291137 +S'Cy Twombly' +p311223 +sg291130 +S'flat paint, crayon, and graphite on paper' +p311224 +sg291132 +S'1981' +p311225 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009e7.jpg' +p311226 +sg291136 +g27 +sa(dp311227 +g291134 +S'An Elegant Couple, a Gooseboy, and a Gentleman [recto]' +p311228 +sg291137 +S'Francesco Guardi' +p311229 +sg291130 +S'pen and brown ink with brown and gray wash over black chalk on laid paper' +p311230 +sg291132 +S'c. 1780' +p311231 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fb0.jpg' +p311232 +sg291136 +g27 +sa(dp311233 +g291134 +S'Two Elegant Couples [verso]' +p311234 +sg291137 +S'Francesco Guardi' +p311235 +sg291130 +S'pen and brown ink with brown and gray wash on laid paper' +p311236 +sg291132 +S'c. 1780' +p311237 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f82.jpg' +p311238 +sg291136 +g27 +sa(dp311239 +g291134 +S"The Little Girls' Tavern" +p311240 +sg291137 +S'Pierre Brebiette' +p311241 +sg291130 +S'etching on laid paper' +p311242 +sg291132 +S'c. 1620' +p311243 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00085/a0008522.jpg' +p311244 +sg291136 +g27 +sa(dp311245 +g291134 +S'Self-Portrait Wearing a Turban' +p311246 +sg291137 +S'Jonathan Richardson, Sr.' +p311247 +sg291130 +S'black chalk heightened with white on blue laid paper' +p311248 +sg291132 +S'1728' +p311249 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a0006965.jpg' +p311250 +sg291136 +g27 +sa(dp311251 +g291134 +S"Studies of Women's Heads" +p311252 +sg291137 +S'Michel Corneille' +p311253 +sg291130 +S'black and red chalk heightened with white chalk on light brown laid paper, with later framing line in brown ink' +p311254 +sg291132 +S'1680s or 1690s' +p311255 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005ffd.jpg' +p311256 +sg291136 +g27 +sa(dp311257 +g291134 +S'Amnon and Tamar' +p311258 +sg291137 +S'Guercino' +p311259 +sg291130 +S', 1649-1650' +p311260 +sg291132 +S'\n' +p311261 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00006/a0000613.jpg' +p311262 +sg291136 +g27 +sa(dp311263 +g291134 +S"Joseph and Potiphar's Wife" +p311264 +sg291137 +S'Guercino' +p311265 +sg291130 +S', 1649' +p311266 +sg291132 +S'\n' +p311267 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00006/a000062c.jpg' +p311268 +sg291136 +S"For this depiction of Joseph spurning the advances of his Egyptian employer's\nwife, as recounted in the Book of Genesis, Guercino chose a three-quarter length\nformat that presses the life-sized figures close to the spectator. He has filled\nthe scene with the bed -- all rumpled sheets and opulent curtains. As the temptress\nreaches for the strong and handsome Joseph, he struggles vigorously to extricate\nhimself. But she holds tight to the vivid blue cloak and sets Joseph spinning like\na top out of his garment. In panic, he turns his imploring eyes heavenward, seeming\nto realize that even if he escapes with his virtue unscathed, he is helplessly\nensnared in an evil plot; Potiphar's wife, bejeweled and confident, will later use\nthe cloak to support her denunciation of Joseph as the aggressor.\n With a delicate play of light on the seductress' profile, the artist shows the very\nmoment of lust shading into treachery. If Guercino's narration is clear and eloquent,\nhis presentation of the moral implications is more subtle: as this woman's beauty\nconceals her wickedness, so the visual lushness of Guercino's painting disguises\na serious lesson about righteous conduct.\n " +p311269 +sa(dp311270 +g291134 +S"Delilah Cutting Samson's Hair" +p311271 +sg291137 +S'Artist Information (' +p311272 +sg291130 +S'(artist after)' +p311273 +sg291132 +S'\n' +p311274 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d03e.jpg' +p311275 +sg291136 +g27 +sa(dp311276 +g291134 +S'Solomon Led to Idolatry by His Wives' +p311277 +sg291137 +S'Artist Information (' +p311278 +sg291130 +S'(artist after)' +p311279 +sg291132 +S'\n' +p311280 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d03f.jpg' +p311281 +sg291136 +g27 +sa(dp311282 +g291134 +S'Sardanapalus among the Concubines' +p311283 +sg291137 +S'Artist Information (' +p311284 +sg291130 +S'(artist after)' +p311285 +sg291132 +S'\n' +p311286 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d041.jpg' +p311287 +sg291136 +g27 +sa(dp311288 +g291134 +S'Heliogabalus and the Wise Women' +p311289 +sg291137 +S'Artist Information (' +p311290 +sg291130 +S'(artist after)' +p311291 +sg291132 +S'\n' +p311292 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d040.jpg' +p311293 +sg291136 +g27 +sa(dp311294 +g291130 +S'lithograph on wove paper' +p311295 +sg291132 +S'1808' +p311296 +sg291134 +S'Gothischer Kreuzgang (Gothic Cloister)' +p311297 +sg291136 +g27 +sg291137 +S'Domenico Quaglio' +p311298 +sa(dp311299 +g291130 +S'bronze with polychrome patina and glass enamel' +p311300 +sg291132 +S'1985' +p311301 +sg291134 +S'Spinner' +p311302 +sg291136 +g27 +sg291137 +S'Nancy Graves' +p311303 +sa(dp311304 +g291130 +S'etching on Rives BFK paper' +p311305 +sg291132 +S'1962' +p311306 +sg291134 +S'Goya' +p311307 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p311308 +sa(dp311309 +g291134 +S'The Thames at Battersea' +p311310 +sg291137 +S'David Cox' +p311311 +sg291130 +S'watercolor over graphite on wove paper' +p311312 +sg291132 +S'1824' +p311313 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00031/a00031b0.jpg' +p311314 +sg291136 +g27 +sa(dp311315 +g291134 +S"The Card Game (Der kleine l'Hombre Tisch)" +p311316 +sg291137 +S'Daniel Nikolaus Chodowiecki' +p311317 +sg291130 +S'etching and aquatint with engraving on laid paper' +p311318 +sg291132 +S'1758' +p311319 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b341.jpg' +p311320 +sg291136 +g27 +sa(dp311321 +g291134 +S'The Four Elements' +p311322 +sg291137 +S'Artist Information (' +p311323 +sg291130 +S'(artist after)' +p311324 +sg291132 +S'\n' +p311325 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d532.jpg' +p311326 +sg291136 +g27 +sa(dp311327 +g291134 +S'Eros and Anteros' +p311328 +sg291137 +S'Artist Information (' +p311329 +sg291130 +S'(artist after)' +p311330 +sg291132 +S'\n' +p311331 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d531.jpg' +p311332 +sg291136 +g27 +sa(dp311333 +g291134 +S'Venus, Bacchus, and Ceres' +p311334 +sg291137 +S'Artist Information (' +p311335 +sg291130 +S'(artist after)' +p311336 +sg291132 +S'\n' +p311337 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d530.jpg' +p311338 +sg291136 +g27 +sa(dp311339 +g291130 +S'(publisher)' +p311340 +sg291132 +S'\n' +p311341 +sg291134 +S'Voyages: Six Poems from White Buildings' +p311342 +sg291136 +g27 +sg291137 +S'Artist Information (' +p311343 +sa(dp311344 +g291130 +S'etching, aquatint and spitbite on gray wove paper' +p311345 +sg291132 +S'1977' +p311346 +sg291134 +S'Playground' +p311347 +sg291136 +g27 +sg291137 +S'Mark Stock' +p311348 +sa(dp311349 +g291130 +S'photo-etching in blue with embossing on White Rives BFK paper' +p311350 +sg291132 +S'1983' +p311351 +sg291134 +S'End Mask' +p311352 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p311353 +sa(dp311354 +g291130 +S'photo-etching in red with embossing on White Rives BFK paper' +p311355 +sg291132 +S'1983' +p311356 +sg291134 +S'Red Mask' +p311357 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p311358 +sa(dp311359 +g291130 +S'photo-etching in black with embossing on White Rives BFK paper' +p311360 +sg291132 +S'1983' +p311361 +sg291134 +S'People Mask' +p311362 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p311363 +sa(dp311364 +g291130 +S'multi-color photo-etching, soft-ground etching, hard-ground etching, and aquatint printed from 62 plates onto four sections of Arches Cover White paper joined to make two panels' +p311365 +sg291132 +S'1983/1985' +p311366 +sg291134 +S'Building-Blocks for a Doorway [2-part print]' +p311367 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p311368 +sa(dp311369 +g291130 +S'color lithograph' +p311370 +sg291132 +S'1972/1973' +p311371 +sg291134 +S'Clearwater' +p311372 +sg291136 +g27 +sg291137 +S'Richard Anuszkiewicz' +p311373 +sa(dp311374 +g291130 +S'color lithograph' +p311375 +sg291132 +S'1972/1973' +p311376 +sg291134 +S'Tampa Winter' +p311377 +sg291136 +g27 +sg291137 +S'Richard Anuszkiewicz' +p311378 +sa(dp311379 +g291130 +S'color lithograph' +p311380 +sg291132 +S'1972/1973' +p311381 +sg291134 +S'Largo' +p311382 +sg291136 +g27 +sg291137 +S'Richard Anuszkiewicz' +p311383 +sa(dp311384 +g291130 +S'color lithograph' +p311385 +sg291132 +S'1972/1973' +p311386 +sg291134 +S'Sun Coast [left sheet of triptych 1986.26.8-10]' +p311387 +sg291136 +g27 +sg291137 +S'Richard Anuszkiewicz' +p311388 +sa(dp311389 +g291130 +S'color lithograph' +p311390 +sg291132 +S'1972/1973' +p311391 +sg291134 +S'Sun Coast [center sheet of triptych 1986.26.8-10]' +p311392 +sg291136 +g27 +sg291137 +S'Richard Anuszkiewicz' +p311393 +sa(dp311394 +g291130 +S'color lithograph' +p311395 +sg291132 +S'1972/1973' +p311396 +sg291134 +S'Sun Coast [right sheet of triptych 1986.26.8-10]' +p311397 +sg291136 +g27 +sg291137 +S'Richard Anuszkiewicz' +p311398 +sa(dp311399 +g291130 +S'etching with watercolor additions' +p311400 +sg291132 +S'1981' +p311401 +sg291134 +S'Collected Ghost Stories from the Workhouse' +p311402 +sg291136 +g27 +sg291137 +S'Alice Aycock' +p311403 +sa(dp311404 +g291130 +S'photo-etching with pastel additions' +p311405 +sg291132 +S'1981' +p311406 +sg291134 +S'Collected Ghost Stories from the Workhouse' +p311407 +sg291136 +g27 +sg291137 +S'Alice Aycock' +p311408 +sa(dp311409 +g291130 +S'color Cirkut photograph' +p311410 +sg291132 +S'1982/1983' +p311411 +sg291134 +S'Woods, North Carolina' +p311412 +sg291136 +g27 +sg291137 +S'Oscar Bailey' +p311413 +sa(dp311414 +g291130 +S'color Cirkut photograph' +p311415 +sg291132 +S'1982/1983' +p311416 +sg291134 +S'Tampa X 2' +p311417 +sg291136 +g27 +sg291137 +S'Oscar Bailey' +p311418 +sa(dp311419 +g291130 +S'color Cirkut photograph' +p311420 +sg291132 +S'1982/1983' +p311421 +sg291134 +S'Biltmore Gardens, North Carolina' +p311422 +sg291136 +g27 +sg291137 +S'Oscar Bailey' +p311423 +sa(dp311424 +g291130 +S'color Cirkut photograph' +p311425 +sg291132 +S'1982/1983' +p311426 +sg291134 +S'Asheville, North Carolina' +p311427 +sg291136 +g27 +sg291137 +S'Oscar Bailey' +p311428 +sa(dp311429 +g291130 +S'color screenprint with flocking on wove paper' +p311430 +sg291132 +S'1974' +p311431 +sg291134 +S'Untitled #1' +p311432 +sg291136 +g27 +sg291137 +S'Larry Bell' +p311433 +sa(dp311434 +g291130 +S'color screenprint with flocking on wove paper' +p311435 +sg291132 +S'1974' +p311436 +sg291134 +S'Untitled #2' +p311437 +sg291136 +g27 +sg291137 +S'Larry Bell' +p311438 +sa(dp311439 +g291130 +S'color screenprint with flocking on wove paper' +p311440 +sg291132 +S'1974' +p311441 +sg291134 +S'Untitled #3' +p311442 +sg291136 +g27 +sg291137 +S'Larry Bell' +p311443 +sa(dp311444 +g291130 +S'color screenprint with flocking on wove paper' +p311445 +sg291132 +S'1974' +p311446 +sg291134 +S'Untitled #4' +p311447 +sg291136 +g27 +sg291137 +S'Larry Bell' +p311448 +sa(dp311449 +g291130 +S'color screenprint with flocking on wove paper' +p311450 +sg291132 +S'1974' +p311451 +sg291134 +S'Untitled #5' +p311452 +sg291136 +g27 +sg291137 +S'Larry Bell' +p311453 +sa(dp311454 +g291130 +S'color screenprint with flocking on wove paper' +p311455 +sg291132 +S'1974' +p311456 +sg291134 +S'Untitled #6' +p311457 +sg291136 +g27 +sg291137 +S'Larry Bell' +p311458 +sa(dp311459 +g291130 +S'direct gravure in black' +p311460 +sg291132 +S'1984/1985' +p311461 +sg291134 +S'Georgia/Fingerprint I' +p311462 +sg291136 +g27 +sg291137 +S'Chuck Close' +p311463 +sa(dp311464 +g291130 +S'direct gravure in black' +p311465 +sg291132 +S'1984/1985' +p311466 +sg291134 +S'Georgia/Fingerprint II' +p311467 +sg291136 +g27 +sg291137 +S'Chuck Close' +p311468 +sa(dp311469 +g291130 +S'direct gravure in black' +p311470 +sg291132 +S'1984/1986' +p311471 +sg291134 +S'Georgia' +p311472 +sg291136 +g27 +sg291137 +S'Chuck Close' +p311473 +sa(dp311474 +g291130 +S'etching, aquatint, and drypoint on Arches rolled paper' +p311475 +sg291132 +S'1982-1983' +p311476 +sg291134 +S'Swaying in the Florida Night' +p311477 +sg291136 +g27 +sg291137 +S'Jim Dine' +p311478 +sa(dp311479 +g291130 +S'cast concrete and aluminum with painted additions' +p311480 +sg291132 +S'1981/1985' +p311481 +sg291134 +S'Untitled Cast Concrete' +p311482 +sg291136 +g27 +sg291137 +S'Jim Dine' +p311483 +sa(dp311484 +g291130 +S'cast concrete and aluminum' +p311485 +sg291132 +S'1981/1985' +p311486 +sg291134 +S'Untitled Cast Concrete' +p311487 +sg291136 +g27 +sg291137 +S'Jim Dine' +p311488 +sa(dp311489 +g291130 +S'etching and offset lithograph' +p311490 +sg291132 +S'1984' +p311491 +sg291134 +S'Atom Struck Tile the Explosion Center Hiroshima Shade/Light' +p311492 +sg291136 +g27 +sg291137 +S'Robert Fichter' +p311493 +sa(dp311494 +g291130 +S'silver dye bleach print' +p311495 +sg291132 +S'1984' +p311496 +sg291134 +S'Hurricane Signal' +p311497 +sg291136 +g27 +sg291137 +S'Robert Fichter' +p311498 +sa(dp311499 +g291130 +S'cibachrome print' +p311500 +sg291132 +S'1984' +p311501 +sg291134 +S'Total Readymade, Small Version' +p311502 +sg291136 +g27 +sg291137 +S'Robert Fichter' +p311503 +sa(dp311504 +g291130 +S'cibachrome print' +p311505 +sg291132 +S'1984' +p311506 +sg291134 +S'Space Heater' +p311507 +sg291136 +g27 +sg291137 +S'Robert Fichter' +p311508 +sa(dp311509 +g291130 +S'cibachrome print' +p311510 +sg291132 +S'1984' +p311511 +sg291134 +S'Frog Biology' +p311512 +sg291136 +g27 +sg291137 +S'Robert Fichter' +p311513 +sa(dp311514 +g291130 +S'cibachrome print' +p311515 +sg291132 +S'1984' +p311516 +sg291134 +S'Nature Returns, Small Version' +p311517 +sg291136 +g27 +sg291137 +S'Robert Fichter' +p311518 +sa(dp311519 +g291130 +S'cibachrome print' +p311520 +sg291132 +S'1984' +p311521 +sg291134 +S'Durer with Red Flower' +p311522 +sg291136 +g27 +sg291137 +S'Robert Fichter' +p311523 +sa(dp311524 +g291130 +S'cibachrome print' +p311525 +sg291132 +S'1984' +p311526 +sg291134 +S'Nature Returns, Large Version' +p311527 +sg291136 +g27 +sg291137 +S'Robert Fichter' +p311528 +sa(dp311529 +g291130 +S'cibachrome print' +p311530 +sg291132 +S'1984' +p311531 +sg291134 +S'Total Readymade, Large Version' +p311532 +sg291136 +g27 +sg291137 +S'Robert Fichter' +p311533 +sa(dp311534 +g291130 +S'mixed-media etching' +p311535 +sg291132 +S'unknown date\n' +p311536 +sg291134 +S'Sitting' +p311537 +sg291136 +g27 +sg291137 +S'Mike Glier' +p311538 +sa(dp311539 +g291130 +S'mixed-media etching' +p311540 +sg291132 +S'unknown date\n' +p311541 +sg291134 +S'Mopping' +p311542 +sg291136 +g27 +sg291137 +S'Mike Glier' +p311543 +sa(dp311544 +g291130 +S'mixed-media etching' +p311545 +sg291132 +S'unknown date\n' +p311546 +sg291134 +S'Grooming' +p311547 +sg291136 +g27 +sg291137 +S'Mike Glier' +p311548 +sa(dp311549 +g291130 +S'mixed-media etching' +p311550 +sg291132 +S'unknown date\n' +p311551 +sg291134 +S'Entertaining' +p311552 +sg291136 +g27 +sg291137 +S'Mike Glier' +p311553 +sa(dp311554 +g291130 +S'mixed-media etching' +p311555 +sg291132 +S'unknown date\n' +p311556 +sg291134 +S'Necking' +p311557 +sg291136 +g27 +sg291137 +S'Mike Glier' +p311558 +sa(dp311559 +g291130 +S'etching [state proof]' +p311560 +sg291132 +S'unknown date\n' +p311561 +sg291134 +S'Necking' +p311562 +sg291136 +g27 +sg291137 +S'Mike Glier' +p311563 +sa(dp311564 +g291130 +S'etching [state proof]' +p311565 +sg291132 +S'unknown date\n' +p311566 +sg291134 +S'Necking' +p311567 +sg291136 +g27 +sg291137 +S'Mike Glier' +p311568 +sa(dp311569 +g291130 +S'etching [state proof]' +p311570 +sg291132 +S'unknown date\n' +p311571 +sg291134 +S'Necking' +p311572 +sg291136 +g27 +sg291137 +S'Mike Glier' +p311573 +sa(dp311574 +g291130 +S'etching [proof]' +p311575 +sg291132 +S'unknown date\n' +p311576 +sg291134 +S'Untitled (Telephone)' +p311577 +sg291136 +g27 +sg291137 +S'Mike Glier' +p311578 +sa(dp311579 +g291130 +S'etching [proof]' +p311580 +sg291132 +S'unknown date\n' +p311581 +sg291134 +S'Untitled (Telephone)' +p311582 +sg291136 +g27 +sg291137 +S'Mike Glier' +p311583 +sa(dp311584 +g291130 +S'etching [proof]' +p311585 +sg291132 +S'unknown date\n' +p311586 +sg291134 +S'Untitled (Telephone)' +p311587 +sg291136 +g27 +sg291137 +S'Mike Glier' +p311588 +sa(dp311589 +g291130 +S'felt-tip pen on mylar' +p311590 +sg291132 +S'unknown date\n' +p311591 +sg291134 +S'Sitting' +p311592 +sg291136 +g27 +sg291137 +S'Mike Glier' +p311593 +sa(dp311594 +g291130 +S'felt-tip pen on mylar' +p311595 +sg291132 +S'unknown date\n' +p311596 +sg291134 +S'Mopping' +p311597 +sg291136 +g27 +sg291137 +S'Mike Glier' +p311598 +sa(dp311599 +g291130 +S'felt-tip pen on mylar' +p311600 +sg291132 +S'unknown date\n' +p311601 +sg291134 +S'Grooming' +p311602 +sg291136 +g27 +sg291137 +S'Mike Glier' +p311603 +sa(dp311604 +g291130 +S'felt-tip pen on mylar' +p311605 +sg291132 +S'unknown date\n' +p311606 +sg291134 +S'Entertaining' +p311607 +sg291136 +g27 +sg291137 +S'Mike Glier' +p311608 +sa(dp311609 +g291130 +S'felt-tip pen on mylar' +p311610 +sg291132 +S'unknown date\n' +p311611 +sg291134 +S'Necking' +p311612 +sg291136 +g27 +sg291137 +S'Mike Glier' +p311613 +sa(dp311614 +g291130 +S'aquatint' +p311615 +sg291132 +S'1984' +p311616 +sg291134 +S'Female Head' +p311617 +sg291136 +g27 +sg291137 +S'Robert Gordy' +p311618 +sa(dp311619 +g291130 +S'aquatint' +p311620 +sg291132 +S'1984' +p311621 +sg291134 +S'Nude' +p311622 +sg291136 +g27 +sg291137 +S'Robert Gordy' +p311623 +sa(dp311624 +g291130 +S'color lithograph' +p311625 +sg291132 +S'1969' +p311626 +sg291134 +S'Untitled' +p311627 +sg291136 +g27 +sg291137 +S'Charles Hinman' +p311628 +sa(dp311629 +g291130 +S'color lithograph' +p311630 +sg291132 +S'1969' +p311631 +sg291134 +S'Untitled' +p311632 +sg291136 +g27 +sg291137 +S'Charles Hinman' +p311633 +sa(dp311634 +g291130 +S'embossing' +p311635 +sg291132 +S'1970' +p311636 +sg291134 +S'Untitled' +p311637 +sg291136 +g27 +sg291137 +S'Charles Hinman' +p311638 +sa(dp311639 +g291130 +S'embossing' +p311640 +sg291132 +S'1970' +p311641 +sg291134 +S'Untitled' +p311642 +sg291136 +g27 +sg291137 +S'Charles Hinman' +p311643 +sa(dp311644 +g291130 +S'4-color lithograph' +p311645 +sg291132 +S'1970' +p311646 +sg291134 +S'Untitled' +p311647 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p311648 +sa(dp311649 +g291130 +S'4-color lithograph' +p311650 +sg291132 +S'1970' +p311651 +sg291134 +S'Untitled' +p311652 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p311653 +sa(dp311654 +g291130 +S'4-color lithograph' +p311655 +sg291132 +S'1970' +p311656 +sg291134 +S'Untitled' +p311657 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p311658 +sa(dp311659 +g291130 +S'4-color lithograph' +p311660 +sg291132 +S'1978' +p311661 +sg291134 +S'Untitled' +p311662 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p311663 +sa(dp311664 +g291130 +S'4-color lithograph' +p311665 +sg291132 +S'1971' +p311666 +sg291134 +S'Untitled' +p311667 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p311668 +sa(dp311669 +g291130 +S'4-color lithograph' +p311670 +sg291132 +S'1971' +p311671 +sg291134 +S'Untitled' +p311672 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p311673 +sa(dp311674 +g291130 +S'5-color lithograph' +p311675 +sg291132 +S'1971' +p311676 +sg291134 +S'Untitled' +p311677 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p311678 +sa(dp311679 +g291130 +S'photogravure with screenprint' +p311680 +sg291132 +S'1985' +p311681 +sg291134 +S'Untitled #1' +p311682 +sg291136 +g27 +sg291137 +S'Robert Mapplethorpe' +p311683 +sa(dp311684 +g291130 +S'photogravure with screenprint' +p311685 +sg291132 +S'1985' +p311686 +sg291134 +S'Untitled #2' +p311687 +sg291136 +g27 +sg291137 +S'Robert Mapplethorpe' +p311688 +sa(dp311689 +g291130 +S'photogravure with screenprint' +p311690 +sg291132 +S'1985' +p311691 +sg291134 +S'Untitled #3' +p311692 +sg291136 +g27 +sg291137 +S'Robert Mapplethorpe' +p311693 +sa(dp311694 +g291130 +S'photogravure, hand-colored with watercolor' +p311695 +sg291132 +S'1985' +p311696 +sg291134 +S'Untitled #4' +p311697 +sg291136 +g27 +sg291137 +S'Robert Mapplethorpe' +p311698 +sa(dp311699 +g291130 +S'photogravure, hand-colored with watercolor, with flocking' +p311700 +sg291132 +S'1985' +p311701 +sg291134 +S'Untitled #5' +p311702 +sg291136 +g27 +sg291137 +S'Robert Mapplethorpe' +p311703 +sa(dp311704 +g291130 +S'photogravure [proof]' +p311705 +sg291132 +S'1985' +p311706 +sg291134 +S'Untitled' +p311707 +sg291136 +g27 +sg291137 +S'Robert Mapplethorpe' +p311708 +sa(dp311709 +g291130 +S'photogravure [proof]' +p311710 +sg291132 +S'1985' +p311711 +sg291134 +S'Untitled' +p311712 +sg291136 +g27 +sg291137 +S'Robert Mapplethorpe' +p311713 +sa(dp311714 +g291130 +S'photogravure [proof]' +p311715 +sg291132 +S'1985' +p311716 +sg291134 +S'Untitled' +p311717 +sg291136 +g27 +sg291137 +S'Robert Mapplethorpe' +p311718 +sa(dp311719 +g291130 +S'photogravure [proof]' +p311720 +sg291132 +S'1985' +p311721 +sg291134 +S'Untitled' +p311722 +sg291136 +g27 +sg291137 +S'Robert Mapplethorpe' +p311723 +sa(dp311724 +g291130 +S'etching' +p311725 +sg291132 +S'1985' +p311726 +sg291134 +S'Models with Mirror' +p311727 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p311728 +sa(dp311729 +g291130 +S'lithograph' +p311730 +sg291132 +S'1969' +p311731 +sg291134 +S'Nude on Folding Stool' +p311732 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p311733 +sa(dp311734 +g291130 +S'lithograph' +p311735 +sg291132 +S'1969' +p311736 +sg291134 +S'Nude Lying with Crossed Legs' +p311737 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p311738 +sa(dp311739 +g291130 +S'lithograph in black on wove paper' +p311740 +sg291132 +S'1975' +p311741 +sg291134 +S'Two Female Models on Rocker and Stool' +p311742 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p311743 +sa(dp311744 +g291130 +S'5-color lithograph on wove paper' +p311745 +sg291132 +S'1975' +p311746 +sg291134 +S'Two Female Models on Rocker and Stool' +p311747 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p311748 +sa(dp311749 +g291130 +S'color lithograph' +p311750 +sg291132 +S'1970' +p311751 +sg291134 +S'Llama' +p311752 +sg291136 +g27 +sg291137 +S'Mel Ramos' +p311753 +sa(dp311754 +g291130 +S'color lithograph' +p311755 +sg291132 +S'1970' +p311756 +sg291134 +S'Indian Rhinoceros' +p311757 +sg291136 +g27 +sg291137 +S'Mel Ramos' +p311758 +sa(dp311759 +g291130 +S'lithograph' +p311760 +sg291132 +S'1970' +p311761 +sg291134 +S'Standing Man' +p311762 +sg291136 +g27 +sg291137 +S'Frank Rampolla' +p311763 +sa(dp311764 +g291130 +S'color photograph' +p311765 +sg291132 +S'1983' +p311766 +sg291134 +S'Chinese Summerhall' +p311767 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311768 +sa(dp311769 +g291130 +S'lithograph and blueprint on Rives BFK White paper' +p311770 +sg291132 +S'1972/1973' +p311771 +sg291134 +S'Tampa 2' +p311772 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311773 +sa(dp311774 +g291130 +S'color lithograph' +p311775 +sg291132 +S'1972' +p311776 +sg291134 +S'Tampa 12' +p311777 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311778 +sa(dp311779 +g291130 +S'lithograph and collage with graphite lines on waterproof tar paper' +p311780 +sg291132 +S'1972' +p311781 +sg291134 +S'Tampa 3' +p311782 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311783 +sa(dp311784 +g291130 +S'color lithograph' +p311785 +sg291132 +S'1972' +p311786 +sg291134 +S'Tampa 5' +p311787 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311788 +sa(dp311789 +g291130 +S'color lithograph' +p311790 +sg291132 +S'1972' +p311791 +sg291134 +S'Tampa 4' +p311792 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311793 +sa(dp311794 +g291130 +S'color lithograph' +p311795 +sg291132 +S'1972' +p311796 +sg291134 +S'Tampa 6' +p311797 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311798 +sa(dp311799 +g291130 +S'lithograph' +p311800 +sg291132 +S'1972' +p311801 +sg291134 +S'Colophon Page' +p311802 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311803 +sa(dp311804 +g291130 +S'lithograph' +p311805 +sg291132 +S'1972' +p311806 +sg291134 +S'Title Page' +p311807 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311808 +sa(dp311809 +g291130 +S'lithograph' +p311810 +sg291132 +S'1972' +p311811 +sg291134 +S'Tampa 1' +p311812 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311813 +sa(dp311814 +g291130 +S'color lithograph' +p311815 +sg291132 +S'1972' +p311816 +sg291134 +S'Tampa 9' +p311817 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311818 +sa(dp311819 +g291130 +S'color lithograph' +p311820 +sg291132 +S'1972' +p311821 +sg291134 +S'Tampa 11' +p311822 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311823 +sa(dp311824 +g291130 +S'clay and fiberglass' +p311825 +sg291132 +S'1972' +p311826 +sg291134 +S'Tampa Clay Piece 1' +p311827 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311828 +sa(dp311829 +g291130 +S'clay and fiberglass' +p311830 +sg291132 +S'1972' +p311831 +sg291134 +S'Tampa Clay Piece 2' +p311832 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311833 +sa(dp311834 +g291130 +S'clay and fiberglass' +p311835 +sg291132 +S'1972' +p311836 +sg291134 +S'Tampa Clay Piece 3' +p311837 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311838 +sa(dp311839 +g291130 +S'multi-color screenprint and solvent transfer lithograph on wove paper [workshop proof]' +p311840 +sg291132 +S'1973' +p311841 +sg291134 +S'Mangrove' +p311842 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311843 +sa(dp311844 +g291130 +S'screenprint with solvent transfer lithograph on wove paper [workshop proof]' +p311845 +sg291132 +S'1973' +p311846 +sg291134 +S'Coconut' +p311847 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311848 +sa(dp311849 +g291130 +S'screenprint with solvent transfer' +p311850 +sg291132 +S'1973' +p311851 +sg291134 +S'Homage to Picasso' +p311852 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311853 +sa(dp311854 +g291130 +S'screenprint with solvent transfer' +p311855 +sg291132 +S'1973' +p311856 +sg291134 +S'Peanuts' +p311857 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311858 +sa(dp311859 +g291130 +S'color relief and intaglio on fabric with collage' +p311860 +sg291132 +S'1974' +p311861 +sg291134 +S'Cat Paws' +p311862 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311863 +sa(dp311864 +g291130 +S'color lithograph' +p311865 +sg291132 +S'1972' +p311866 +sg291134 +S'Tampa 7' +p311867 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311868 +sa(dp311869 +g291130 +S'lithograph in three shades of black and screenprint in white with transparent tape on white Rives BFK paper [workshop proof]' +p311870 +sg291132 +S'1972' +p311871 +sg291134 +S'Tampa 8' +p311872 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311873 +sa(dp311874 +g291130 +S'4-color lithograph on Rives BFK White paper' +p311875 +sg291132 +S'1972/1973' +p311876 +sg291134 +S'Tampa 10' +p311877 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311878 +sa(dp311879 +g291130 +S'clay and fiberglass' +p311880 +sg291132 +S'1972' +p311881 +sg291134 +S'Tampa Clay Piece 4' +p311882 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311883 +sa(dp311884 +g291130 +S'clay and fiberglass' +p311885 +sg291132 +S'1972' +p311886 +sg291134 +S'Tampa Clay Piece 5' +p311887 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311888 +sa(dp311889 +g291130 +S'multi-color screenprint and solvent transfer lithograph on wove paper[workshop proof]' +p311890 +sg291132 +S'1973' +p311891 +sg291134 +S'Cactus' +p311892 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311893 +sa(dp311894 +g291130 +S'screenprint with solvent transfer' +p311895 +sg291132 +S'1973' +p311896 +sg291134 +S'Watermelon' +p311897 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311898 +sa(dp311899 +g291130 +S'color relief and intaglio on fabric with collage' +p311900 +sg291132 +S'1974' +p311901 +sg291134 +S'Platter' +p311902 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311903 +sa(dp311904 +g291130 +S'color relief and intaglio on fabric with collage' +p311905 +sg291132 +S'1974' +p311906 +sg291134 +S'Switchboard' +p311907 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311908 +sa(dp311909 +g291130 +S'color relief and intaglio on fabric with collage' +p311910 +sg291132 +S'1974' +p311911 +sg291134 +S'Room Service' +p311912 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311913 +sa(dp311914 +g291130 +S'color relief and intaglio on fabric with collage' +p311915 +sg291132 +S'1974' +p311916 +sg291134 +S'Sheephead' +p311917 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311918 +sa(dp311919 +g291130 +S'color photograph' +p311920 +sg291132 +S'1983' +p311921 +sg291134 +S'Chinese Summerhall' +p311922 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311923 +sa(dp311924 +g291130 +S'color photograph' +p311925 +sg291132 +S'1983' +p311926 +sg291134 +S'Chinese Summerhall' +p311927 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311928 +sa(dp311929 +g291130 +S'color photograph' +p311930 +sg291132 +S'1983' +p311931 +sg291134 +S'Chinese Summerhall' +p311932 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311933 +sa(dp311934 +g291130 +S'color photograph' +p311935 +sg291132 +S'1983' +p311936 +sg291134 +S'Chinese Summerhall' +p311937 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311938 +sa(dp311939 +g291130 +S'color photograph' +p311940 +sg291132 +S'1983' +p311941 +sg291134 +S'Chinese Summerhall' +p311942 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311943 +sa(dp311944 +g291130 +S'color photograph' +p311945 +sg291132 +S'1983' +p311946 +sg291134 +S'Chinese Summerhall' +p311947 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311948 +sa(dp311949 +g291130 +S'color photograph' +p311950 +sg291132 +S'1983' +p311951 +sg291134 +S'Chinese Summerhall' +p311952 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311953 +sa(dp311954 +g291130 +S'color photograph' +p311955 +sg291132 +S'1983' +p311956 +sg291134 +S'Chinese Summerhall' +p311957 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311958 +sa(dp311959 +g291130 +S'color photograph' +p311960 +sg291132 +S'1983' +p311961 +sg291134 +S'Chinese Summerhall' +p311962 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311963 +sa(dp311964 +g291130 +S'color photograph' +p311965 +sg291132 +S'1983' +p311966 +sg291134 +S'Chinese Summerhall' +p311967 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311968 +sa(dp311969 +g291130 +S'color photograph' +p311970 +sg291132 +S'1983' +p311971 +sg291134 +S'Chinese Summerhall' +p311972 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311973 +sa(dp311974 +g291130 +S'color photograph' +p311975 +sg291132 +S'1983' +p311976 +sg291134 +S'Chinese Summerhall' +p311977 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311978 +sa(dp311979 +g291130 +S'color photograph' +p311980 +sg291132 +S'1983' +p311981 +sg291134 +S'Chinese Summerhall' +p311982 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311983 +sa(dp311984 +g291130 +S'color photograph' +p311985 +sg291132 +S'1983' +p311986 +sg291134 +S'Chinese Summerhall' +p311987 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311988 +sa(dp311989 +g291130 +S'color photograph' +p311990 +sg291132 +S'1983' +p311991 +sg291134 +S'Chinese Summerhall' +p311992 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311993 +sa(dp311994 +g291130 +S'color photograph' +p311995 +sg291132 +S'1983' +p311996 +sg291134 +S'Chinese Summerhall' +p311997 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p311998 +sa(dp311999 +g291130 +S'color photograph' +p312000 +sg291132 +S'1983' +p312001 +sg291134 +S'Chinese Summerhall' +p312002 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p312003 +sa(dp312004 +g291130 +S'color photograph' +p312005 +sg291132 +S'1983' +p312006 +sg291134 +S'Chinese Summerhall' +p312007 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p312008 +sa(dp312009 +g291130 +S'color photograph' +p312010 +sg291132 +S'1983' +p312011 +sg291134 +S'Chinese Summerhall' +p312012 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p312013 +sa(dp312014 +g291130 +S'color photograph' +p312015 +sg291132 +S'1983' +p312016 +sg291134 +S'Chinese Summerhall' +p312017 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p312018 +sa(dp312019 +g291130 +S'color photograph' +p312020 +sg291132 +S'1983' +p312021 +sg291134 +S'Chinese Summerhall' +p312022 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p312023 +sa(dp312024 +g291130 +S'color photograph' +p312025 +sg291132 +S'1983' +p312026 +sg291134 +S'Chinese Summerhall' +p312027 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p312028 +sa(dp312029 +g291130 +S'color photograph' +p312030 +sg291132 +S'1983' +p312031 +sg291134 +S'Chinese Summerhall' +p312032 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p312033 +sa(dp312034 +g291130 +S'color photograph' +p312035 +sg291132 +S'1983' +p312036 +sg291134 +S'Chinese Summerhall' +p312037 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p312038 +sa(dp312039 +g291130 +S'color photograph' +p312040 +sg291132 +S'1983' +p312041 +sg291134 +S'Chinese Summerhall' +p312042 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p312043 +sa(dp312044 +g291130 +S'color photograph' +p312045 +sg291132 +S'1983' +p312046 +sg291134 +S'Chinese Summerhall' +p312047 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p312048 +sa(dp312049 +g291130 +S'color photograph' +p312050 +sg291132 +S'1983' +p312051 +sg291134 +S'Chinese Summerhall' +p312052 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p312053 +sa(dp312054 +g291130 +S'color photograph' +p312055 +sg291132 +S'1983' +p312056 +sg291134 +S'Chinese Summerhall' +p312057 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p312058 +sa(dp312059 +g291130 +S'4-color lithograph' +p312060 +sg291132 +S'1970' +p312061 +sg291134 +S'Untitled' +p312062 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p312063 +sa(dp312064 +g291130 +S'lithograph' +p312065 +sg291132 +S'1981' +p312066 +sg291134 +S'Quarter Century' +p312067 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p312068 +sa(dp312069 +g291130 +S'lithograph' +p312070 +sg291132 +S'1971' +p312071 +sg291134 +S'Mirrored Flag' +p312072 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p312073 +sa(dp312074 +g291130 +S'lithograph' +p312075 +sg291132 +S'1971' +p312076 +sg291134 +S'Moon Beam Mistaken for the News' +p312077 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p312078 +sa(dp312079 +g291130 +S'lithograph' +p312080 +sg291132 +S'1971' +p312081 +sg291134 +S'Fedora' +p312082 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p312083 +sa(dp312084 +g291130 +S'lithograph' +p312085 +sg291132 +S'1971' +p312086 +sg291134 +S'Music School' +p312087 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p312088 +sa(dp312089 +g291130 +S'lithograph' +p312090 +sg291132 +S'1971' +p312091 +sg291134 +S'Mastaba' +p312092 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p312093 +sa(dp312094 +g291130 +S'lithograph' +p312095 +sg291132 +S'1971' +p312096 +sg291134 +S'Art Gallery' +p312097 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p312098 +sa(dp312099 +g291130 +S'9-color lithograph on Arches paper [workshop proof]' +p312100 +sg291132 +S'1975' +p312101 +sg291134 +S'Tampa - New York 1188' +p312102 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p312103 +sa(dp312104 +g291130 +S'9-color lithograph on Arches paper [workshop proof]' +p312105 +sg291132 +S'1975' +p312106 +sg291134 +S'Iris Lake' +p312107 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p312108 +sa(dp312109 +g291130 +S'lithograph and screenprint' +p312110 +sg291132 +S'1976' +p312111 +sg291134 +S'Pale Cradle' +p312112 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p312113 +sa(dp312114 +g291130 +S'screenprint' +p312115 +sg291132 +S'1975' +p312116 +sg291134 +S'Miles' +p312117 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p312118 +sa(dp312119 +g291130 +S'screenprint' +p312120 +sg291132 +S'1977' +p312121 +sg291134 +S'Miles II' +p312122 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p312123 +sa(dp312124 +g291130 +S'lithograph' +p312125 +sg291132 +S'1971' +p312126 +sg291134 +S'Delivery Hat' +p312127 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p312128 +sa(dp312129 +g291130 +S'lithograph' +p312130 +sg291132 +S'1971' +p312131 +sg291134 +S'Moon Box' +p312132 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p312133 +sa(dp312134 +g291130 +S'lithograph' +p312135 +sg291132 +S'1971' +p312136 +sg291134 +S'Cold Light' +p312137 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p312138 +sa(dp312139 +g291130 +S'lithograph' +p312140 +sg291132 +S'1971' +p312141 +sg291134 +S'Earth and Moon' +p312142 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p312143 +sa(dp312144 +g291130 +S'lithograph' +p312145 +sg291132 +S'1971' +p312146 +sg291134 +S'Water Spout' +p312147 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p312148 +sa(dp312149 +g291130 +S'color lithograph with plexiglas overlay and window shade attachments' +p312150 +sg291132 +S'1975' +p312151 +sg291134 +S'Mirage Morning' +p312152 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p312153 +sa(dp312154 +g291130 +S'lithograph' +p312155 +sg291132 +S'1976' +p312156 +sg291134 +S'Rails' +p312157 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p312158 +sa(dp312159 +g291130 +S'lithograph' +p312160 +sg291132 +S'1970' +p312161 +sg291134 +S'Various Small Fires' +p312162 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p312163 +sa(dp312164 +g291130 +S'lithograph' +p312165 +sg291132 +S'1971' +p312166 +sg291134 +S'Real Estate Opportunities' +p312167 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p312168 +sa(dp312169 +g291130 +S'lithograph' +p312170 +sg291132 +S'1970' +p312171 +sg291134 +S'Crackers' +p312172 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p312173 +sa(dp312174 +g291130 +S'lithograph' +p312175 +sg291132 +S'1970' +p312176 +sg291134 +S'Nine Swimming Pools' +p312177 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p312178 +sa(dp312179 +g291130 +S'lithograph' +p312180 +sg291132 +S'1970' +p312181 +sg291134 +S'Some Los Angeles Apartments' +p312182 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p312183 +sa(dp312184 +g291130 +S'lithograph' +p312185 +sg291132 +S'1971' +p312186 +sg291134 +S'Twenty-six Gasoline Stations' +p312187 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p312188 +sa(dp312189 +g291130 +S'lithograph' +p312190 +sg291132 +S'1971' +p312191 +sg291134 +S'Untitled' +p312192 +sg291136 +g27 +sg291137 +S'Donald Saff' +p312193 +sa(dp312194 +g291130 +S'lithograph and collage' +p312195 +sg291132 +S'1984' +p312196 +sg291134 +S'Children of Paradise' +p312197 +sg291136 +g27 +sg291137 +S'Miriam Schapiro' +p312198 +sa(dp312199 +g291130 +S'lithograph' +p312200 +sg291132 +S'1985' +p312201 +sg291134 +S'Shovel' +p312202 +sg291136 +g27 +sg291137 +S'Mark Stock' +p312203 +sa(dp312204 +g291130 +S'6-color folded lithograph with hand-out collage' +p312205 +sg291132 +S'1982' +p312206 +sg291134 +S'If She Could Free Her Heart to Her Wild Desires' +p312207 +sg291136 +g27 +sg291137 +S'Hollis Sigler' +p312208 +sa(dp312209 +g291130 +S'color lithograph printed on both sides of folded Arches Cover paper [workshop proof]' +p312210 +sg291132 +S'1969' +p312211 +sg291134 +S'Evergloom' +p312212 +sg291136 +g27 +sg291137 +S'Richard Smith' +p312213 +sa(dp312214 +g291130 +S'color lithograph printed on both sides of folded Arches Cover paper [workshop proof]' +p312215 +sg291132 +S'1969' +p312216 +sg291134 +S'Everglad' +p312217 +sg291136 +g27 +sg291137 +S'Richard Smith' +p312218 +sa(dp312219 +g291130 +S'American, born 1938' +p312220 +sg291132 +S'(printer)' +p312221 +sg291134 +S'Untitled' +p312222 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312223 +sa(dp312224 +g291130 +S'photogravure' +p312225 +sg291132 +S'1984' +p312226 +sg291134 +S'Ragazzo con quattro Braccia' +p312227 +sg291136 +g27 +sg291137 +S'Joel Peter Witkin' +p312228 +sa(dp312229 +g291130 +S'photogravure' +p312230 +sg291132 +S'1984' +p312231 +sg291134 +S'The Result of War: The Cornucopian Dog' +p312232 +sg291136 +g27 +sg291137 +S'Joel Peter Witkin' +p312233 +sa(dp312234 +g291130 +S'photogravure' +p312235 +sg291132 +S'1984' +p312236 +sg291134 +S'Man without Legs' +p312237 +sg291136 +g27 +sg291137 +S'Joel Peter Witkin' +p312238 +sa(dp312239 +g291130 +S'photogravure' +p312240 +sg291132 +S'1984' +p312241 +sg291134 +S'Portrait of Nan' +p312242 +sg291136 +g27 +sg291137 +S'Joel Peter Witkin' +p312243 +sa(dp312244 +g291130 +S'photogravure' +p312245 +sg291132 +S'1984' +p312246 +sg291134 +S'Harvest' +p312247 +sg291136 +g27 +sg291137 +S'Joel Peter Witkin' +p312248 +sa(dp312249 +g291130 +S'photogravure' +p312250 +sg291132 +S'1984' +p312251 +sg291134 +S'Helen Fourmant' +p312252 +sg291136 +g27 +sg291137 +S'Joel Peter Witkin' +p312253 +sa(dp312254 +g291130 +S'photogravure' +p312255 +sg291132 +S'1984' +p312256 +sg291134 +S'Venus, Pan and Time' +p312257 +sg291136 +g27 +sg291137 +S'Joel Peter Witkin' +p312258 +sa(dp312259 +g291130 +S'relief etching' +p312260 +sg291132 +S'1985' +p312261 +sg291134 +S'Jasper Johns' +p312262 +sg291136 +g27 +sg291137 +S'Theo Wujcik' +p312263 +sa(dp312264 +g291130 +S'American, born 1938' +p312265 +sg291132 +S'(printer)' +p312266 +sg291134 +S'Aegean IX 69' +p312267 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312268 +sa(dp312269 +g291130 +S'American, born 1938' +p312270 +sg291132 +S'(printer)' +p312271 +sg291134 +S'La Maison Dieu 69' +p312272 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312273 +sa(dp312274 +g291130 +S'screenprint on fabric' +p312275 +sg291132 +S'1973' +p312276 +sg291134 +S'Title Page' +p312277 +sg291136 +g27 +sg291137 +S'Arakawa' +p312278 +sa(dp312279 +g291130 +S'portfolio with 9 color lithographs, some with screenprint and offset, and collage additions, including title and colophon pages' +p312280 +sg291132 +S'1973/1974' +p312281 +sg291134 +S'"No!" Says the Signified' +p312282 +sg291136 +g27 +sg291137 +S'Arakawa' +p312283 +sa(dp312284 +g291130 +S'screenprint' +p312285 +sg291132 +S'1973' +p312286 +sg291134 +S'Colophon Page' +p312287 +sg291136 +g27 +sg291137 +S'Arakawa' +p312288 +sa(dp312289 +g291130 +S'screenprint on fabric covering portfolio box' +p312290 +sg291132 +S'1973' +p312291 +sg291134 +S'Title Page' +p312292 +sg291136 +g27 +sg291137 +S'Arakawa' +p312293 +sa(dp312294 +g291130 +S'color lithograph with collage' +p312295 +sg291132 +S'1972/1973' +p312296 +sg291134 +S'Untitled 1' +p312297 +sg291136 +g27 +sg291137 +S'Arakawa' +p312298 +sa(dp312299 +g291130 +S'color lithograph with screenprint' +p312300 +sg291132 +S'1972/1973' +p312301 +sg291134 +S'Untitled 2' +p312302 +sg291136 +g27 +sg291137 +S'Arakawa' +p312303 +sa(dp312304 +g291130 +S'color lithograph' +p312305 +sg291132 +S'1972/1973' +p312306 +sg291134 +S'Untitled 3' +p312307 +sg291136 +g27 +sg291137 +S'Arakawa' +p312308 +sa(dp312309 +g291130 +S'color lithograph with collage' +p312310 +sg291132 +S'1972/1973' +p312311 +sg291134 +S'Untitled 4' +p312312 +sg291136 +g27 +sg291137 +S'Arakawa' +p312313 +sa(dp312314 +g291130 +S'color lithograph with screenprint' +p312315 +sg291132 +S'1972/1973' +p312316 +sg291134 +S'Untitled 5' +p312317 +sg291136 +g27 +sg291137 +S'Arakawa' +p312318 +sa(dp312319 +g291130 +S'color lithograph' +p312320 +sg291132 +S'1972/1973' +p312321 +sg291134 +S'Untitled 6' +p312322 +sg291136 +g27 +sg291137 +S'Arakawa' +p312323 +sa(dp312324 +g291130 +S'gelatin silver print mounted on Harumi paper' +p312325 +sg291132 +S'1975' +p312326 +sg291134 +S'Wall of Potted Plants and Trees (Putney, Vermont, 1972)' +p312327 +sg291136 +g27 +sg291137 +S'Lee Friedlander' +p312328 +sa(dp312329 +g291130 +S'gelatin silver print mounted on Harumi paper' +p312330 +sg291132 +S'1975' +p312331 +sg291134 +S'Roses in Vase (New York City, 1974)' +p312332 +sg291136 +g27 +sg291137 +S'Lee Friedlander' +p312333 +sa(dp312334 +g291130 +S'gelatin silver print mounted on Harumi paper' +p312335 +sg291132 +S'1975' +p312336 +sg291134 +S'Rosebush with Leafy Background (Fort Lee, New Jersey, 1972)' +p312337 +sg291136 +g27 +sg291137 +S'Lee Friedlander' +p312338 +sa(dp312339 +g291130 +S'gelatin silver print mounted on Harumi paper' +p312340 +sg291132 +S'1975' +p312341 +sg291134 +S'Chrysanthemums at Flower Market (Paris, 1972)' +p312342 +sg291136 +g27 +sg291137 +S'Lee Friedlander' +p312343 +sa(dp312344 +g291130 +S'gelatin silver print mounted on Harumi paper' +p312345 +sg291132 +S'1975' +p312346 +sg291134 +S'Hollyhocks (Taos, New Mexico, 1972)' +p312347 +sg291136 +g27 +sg291137 +S'Lee Friedlander' +p312348 +sa(dp312349 +g291130 +S'photograph' +p312350 +sg291132 +S'1975' +p312351 +sg291134 +S'Roses with Eaten Leaves (Parc St. Cloud, France, 1973)' +p312352 +sg291136 +g27 +sg291137 +S'Lee Friedlander' +p312353 +sa(dp312354 +g291130 +S'photograph' +p312355 +sg291132 +S'1975' +p312356 +sg291134 +S'Cactus (Brooklyn Botanical Gardens, 1973)' +p312357 +sg291136 +g27 +sg291137 +S'Lee Friedlander' +p312358 +sa(dp312359 +g291130 +S'photograph' +p312360 +sg291132 +S'1975' +p312361 +sg291134 +S'Chrysanthemums in Garden Pot (Luxembourg Gardens, Paris, 1972)' +p312362 +sg291136 +g27 +sg291137 +S'Lee Friedlander' +p312363 +sa(dp312364 +g291130 +S'photograph' +p312365 +sg291132 +S'1975' +p312366 +sg291134 +S'Kerria Japonica Shrub (New City, New York, 1974)' +p312367 +sg291136 +g27 +sg291137 +S'Lee Friedlander' +p312368 +sa(dp312369 +g291130 +S'photograph' +p312370 +sg291132 +S'1975' +p312371 +sg291134 +S'Evergreen Tree (Northern France, 1972)' +p312372 +sg291136 +g27 +sg291137 +S'Lee Friedlander' +p312373 +sa(dp312374 +g291130 +S'photograph' +p312375 +sg291132 +S'1975' +p312376 +sg291134 +S'Single Rose Bloom in Formal Garden (BagatelleGardens, Paris, 1973)' +p312377 +sg291136 +g27 +sg291137 +S'Lee Friedlander' +p312378 +sa(dp312379 +g291130 +S'photograph' +p312380 +sg291132 +S'1975' +p312381 +sg291134 +S'Potted Fern (Mariposa, California, 1972)' +p312382 +sg291136 +g27 +sg291137 +S'Lee Friedlander' +p312383 +sa(dp312384 +g291130 +S'photograph' +p312385 +sg291132 +S'1975' +p312386 +sg291134 +S'Petunias (Salinas, California, 1972)' +p312387 +sg291136 +g27 +sg291137 +S'Lee Friedlander' +p312388 +sa(dp312389 +g291130 +S'photograph' +p312390 +sg291132 +S'1975' +p312391 +sg291134 +S'Climbing Rose Vines (Saratoga Springs, New York, 1973)' +p312392 +sg291136 +g27 +sg291137 +S'Lee Friedlander' +p312393 +sa(dp312394 +g291130 +S'photograph' +p312395 +sg291132 +S'1975' +p312396 +sg291134 +S'Potted Rose (Putney, Vermont, 1972)' +p312397 +sg291136 +g27 +sg291137 +S'Lee Friedlander' +p312398 +sa(dp312399 +g291130 +S'lithograph' +p312400 +sg291132 +S'1975' +p312401 +sg291134 +S'Colophon Page' +p312402 +sg291136 +g27 +sg291137 +S'Lee Friedlander' +p312403 +sa(dp312404 +g291130 +S'lithograph' +p312405 +sg291132 +S'1975' +p312406 +sg291134 +S'Title Page' +p312407 +sg291136 +g27 +sg291137 +S'Lee Friedlander' +p312408 +sa(dp312409 +g291130 +S'lithograph with screenprinted gloss varnish on Japanese Natsume paper' +p312410 +sg291132 +S'1974/1975' +p312411 +sg291134 +S'The Plant Becomes a Fan #1' +p312412 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312413 +sa(dp312414 +g291130 +S'lithograph with screenprinted gloss varnish on Japanese Natsume paper' +p312415 +sg291132 +S'1974/1975' +p312416 +sg291134 +S'The Plant Becomes a Fan #2' +p312417 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312418 +sa(dp312419 +g291130 +S'lithograph with screenprinted gloss varnish on Japanese Natsume paper' +p312420 +sg291132 +S'1974' +p312421 +sg291134 +S'The Plant Becomes a Fan #3' +p312422 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312423 +sa(dp312424 +g291130 +S'lithograph with screenprinted gloss varnish on Japanese Natsume paper' +p312425 +sg291132 +S'1974/1975' +p312426 +sg291134 +S'The Plant Becomes a Fan #4' +p312427 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312428 +sa(dp312429 +g291130 +S'lithograph with screenprinted gloss varnish on Japanese Natsume paper' +p312430 +sg291132 +S'1974/1975' +p312431 +sg291134 +S'The Plant Becomes a Fan #5' +p312432 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312433 +sa(dp312434 +g291130 +S'13-color woodcut and lithograph' +p312435 +sg291132 +S'1974/1975' +p312436 +sg291134 +S'The Woodcut Bathrobe' +p312437 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312438 +sa(dp312439 +g291130 +S'color lithograph (white on black)' +p312440 +sg291132 +S'1974/1975' +p312441 +sg291134 +S'Black and White Bathrobe' +p312442 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312443 +sa(dp312444 +g291130 +S'color aquatint and screenprint' +p312445 +sg291132 +S'1982-1983' +p312446 +sg291134 +S'The Robe Goes to Town' +p312447 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312448 +sa(dp312449 +g291130 +S'pastel' +p312450 +sg291132 +S'c. 1983' +p312451 +sg291134 +S'Heart and Wall' +p312452 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312453 +sa(dp312454 +g291130 +S'charcoal, crayon, and ink' +p312455 +sg291132 +S'unknown date\n' +p312456 +sg291134 +S'Untitled (Skull and Heart) [left half of 2-part drawing, see 1986.26.221-222]' +p312457 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312458 +sa(dp312459 +g291130 +S'charcoal, crayon, and ink' +p312460 +sg291132 +S'unknown date\n' +p312461 +sg291134 +S'Untitled (Skull and Heart) [right half of 2-part drawing, see 1986.26.221-222]' +p312462 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312463 +sa(dp312464 +g291130 +S'hand-colored etching' +p312465 +sg291132 +S'unknown date\n' +p312466 +sg291134 +S'Untitled' +p312467 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312468 +sa(dp312469 +g291130 +S'color intaglio [trial proof]' +p312470 +sg291132 +S'1983' +p312471 +sg291134 +S'Heart and Wall [upper left of 4-part print, see 1986.26.224-227]' +p312472 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312473 +sa(dp312474 +g291130 +S'color intaglio [trial proof]' +p312475 +sg291132 +S'1983' +p312476 +sg291134 +S'Heart and Wall [upper right of 4-part print,see 1986.26.224-227]' +p312477 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312478 +sa(dp312479 +g291130 +S'color intaglio [trial proof]' +p312480 +sg291132 +S'1983' +p312481 +sg291134 +S'Heart and Wall [lower left of 4-part print, see 1986.26.224-227]' +p312482 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312483 +sa(dp312484 +g291130 +S'color intaglio [trial proof]' +p312485 +sg291132 +S'1983' +p312486 +sg291134 +S'Heart and Wall [lower right of 4-part print,see 1986.26.224-227]' +p312487 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312488 +sa(dp312489 +g291130 +S'intaglio [state proof]' +p312490 +sg291132 +S'1983' +p312491 +sg291134 +S'The Heart and Wall [upper left of 4-part print, see 1986.26.228-231]' +p312492 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312493 +sa(dp312494 +g291130 +S'intaglio [state proof]' +p312495 +sg291132 +S'1983' +p312496 +sg291134 +S'The Heart and Wall [upper right of 4-part print,see 1986.26.228-231]' +p312497 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312498 +sa(dp312499 +g291130 +S'intaglio [state proof]' +p312500 +sg291132 +S'1983' +p312501 +sg291134 +S'The Heart and Wall [lower left of 4-part print, see 1986.26.228-231]' +p312502 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312503 +sa(dp312504 +g291130 +S'intaglio [state proof]' +p312505 +sg291132 +S'1983' +p312506 +sg291134 +S'The Heart and Wall [lower right of 4-part print,see 1986.26.228-231]' +p312507 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312508 +sa(dp312509 +g291130 +S'intaglio [state proof]' +p312510 +sg291132 +S'1983' +p312511 +sg291134 +S'The Heart and Wall [upper left]' +p312512 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312513 +sa(dp312514 +g291130 +S'intaglio [state proof]' +p312515 +sg291132 +S'1983' +p312516 +sg291134 +S'The Heart and Wall [upper right]' +p312517 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312518 +sa(dp312519 +g291130 +S'intaglio [state proof]' +p312520 +sg291132 +S'1983' +p312521 +sg291134 +S'The Heart and Wall [lower left]' +p312522 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312523 +sa(dp312524 +g291130 +S'intaglio [state proof]' +p312525 +sg291132 +S'1983' +p312526 +sg291134 +S'The Heart and Wall [upper right]' +p312527 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312528 +sa(dp312529 +g291130 +S'color intaglio [trial proof]' +p312530 +sg291132 +S'1983' +p312531 +sg291134 +S'Heart and Wall [upper left of 4-part print, see 1986.26.236-239]' +p312532 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312533 +sa(dp312534 +g291130 +S'color intaglio [trial proof]' +p312535 +sg291132 +S'1983' +p312536 +sg291134 +S'Heart and Wall [upper right of 4-part print,see 1986.26.236-239]' +p312537 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312538 +sa(dp312539 +g291130 +S'color intaglio [trial proof]' +p312540 +sg291132 +S'1983' +p312541 +sg291134 +S'Heart and Wall [lower left of 4-part print, see 1986.26.236-239]' +p312542 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312543 +sa(dp312544 +g291130 +S'color intaglio [trial proof]' +p312545 +sg291132 +S'1983' +p312546 +sg291134 +S'Heart and Wall [lower right of 4-part print,see 1986.26.236-239]' +p312547 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312548 +sa(dp312549 +g291130 +S'color soft-ground and spitbite etching with power tool drypoint and sanding on Somerset texture paper' +p312550 +sg291132 +S'1983' +p312551 +sg291134 +S'Heart and Wall [upper left of 4-part print, see 1986.26.240-243]' +p312552 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312553 +sa(dp312554 +g291130 +S'color soft-ground and spitbite etching with power tool drypoint and sanding on Somerset textured paper' +p312555 +sg291132 +S'1983' +p312556 +sg291134 +S'Heart and Wall [upper right of 4-part print,see 1986.26.240-243]' +p312557 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312558 +sa(dp312559 +g291130 +S'color soft-ground and spitbite etching with power tool drypoint and sanding on Somerset textured paper' +p312560 +sg291132 +S'1983' +p312561 +sg291134 +S'Heart and Wall [lower left of 4-part print, see 1986.26.240-243]' +p312562 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312563 +sa(dp312564 +g291130 +S'color soft-ground and spitbite etching with power tool drypoint and sanding on Somerset textured paper' +p312565 +sg291132 +S'1983' +p312566 +sg291134 +S'Heart and Wall [lower right of 4-part print, see 1986.26.240-243]' +p312567 +sg291136 +g27 +sg291137 +S'Jim Dine' +p312568 +sa(dp312569 +g291130 +S'lithograph' +p312570 +sg291132 +S'1969' +p312571 +sg291134 +S'Nude Curled Up' +p312572 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p312573 +sa(dp312574 +g291130 +S'lithograph' +p312575 +sg291132 +S'1969' +p312576 +sg291134 +S'Two Nudes' +p312577 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p312578 +sa(dp312579 +g291130 +S'color lithograph' +p312580 +sg291132 +S'1972/1973' +p312581 +sg291134 +S'Tampa Summer' +p312582 +sg291136 +g27 +sg291137 +S'Richard Anuszkiewicz' +p312583 +sa(dp312584 +g291134 +S'La Pens\xc3\xa9e' +p312585 +sg291137 +S'Henri-Michel-Antoine Chapu' +p312586 +sg291130 +S'marble' +p312587 +sg291132 +S'1877/1891' +p312588 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00054/a000541c.jpg' +p312589 +sg291136 +g27 +sa(dp312590 +g291130 +S'5-color etching from 2 plates on wove paper' +p312591 +sg291132 +S'1965' +p312592 +sg291134 +S'Untitled' +p312593 +sg291136 +g27 +sg291137 +S'Zao Wou-Ki' +p312594 +sa(dp312595 +g291130 +S'bronze' +p312596 +sg291132 +S'c. 1520/1530' +p312597 +sg291134 +S'Marco Mantova Benavides, 1489-1582, Lawyer and Collector [obverse]' +p312598 +sg291136 +g27 +sg291137 +S'Giovanni da Cavino' +p312599 +sa(dp312600 +g291130 +S'bronze' +p312601 +sg291132 +S'c. 1520/1530' +p312602 +sg291134 +S'Temple of Eternity [reverse]' +p312603 +sg291136 +g27 +sg291137 +S'Giovanni da Cavino' +p312604 +sa(dp312605 +g291130 +S'gilt bronze' +p312606 +sg291132 +S'1615' +p312607 +sg291134 +S"Marie de' Medici, 1573-1642, Queen Regent of France 1610-1617 [obverse]" +p312608 +sg291136 +g27 +sg291137 +S'Guillaume Dupr\xc3\xa9' +p312609 +sa(dp312610 +g291130 +S'gilt bronze' +p312611 +sg291132 +S'1615' +p312612 +sg291134 +S'The Queen at the Helm of a Ship in Stormy Seas [reverse]' +p312613 +sg291136 +g27 +sg291137 +S'Guillaume Dupr\xc3\xa9' +p312614 +sa(dp312615 +g291130 +S'bronze' +p312616 +sg291132 +S'1562-1566' +p312617 +sg291134 +S"Leonardo de' Marini, died 1572, Archbishop of Lanciano [obverse]" +p312618 +sg291136 +g27 +sg291137 +S'Pier Paolo Galeotti' +p312619 +sa(dp312620 +g291130 +S'bronze' +p312621 +sg291132 +S'1562-1566' +p312622 +sg291134 +S'Daphne Transformed into a Laurel Tree [reverse]' +p312623 +sg291136 +g27 +sg291137 +S'Pier Paolo Galeotti' +p312624 +sa(dp312625 +g291134 +S'Colonade et Jardins du Palais Medicis (Colonnade and Gardens of the Medici Palace)' +p312626 +sg291137 +S'Artist Information (' +p312627 +sg291130 +S'(artist after)' +p312628 +sg291132 +S'\n' +p312629 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f99.jpg' +p312630 +sg291136 +g27 +sa(dp312631 +g291130 +S'American, 1836 - 1910' +p312632 +sg291132 +S'(artist after)' +p312633 +sg291134 +S'Spring in the City' +p312634 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312635 +sa(dp312636 +g291130 +S'American, 1836 - 1910' +p312637 +sg291132 +S'(artist after)' +p312638 +sg291134 +S'Front View of the Great Elm [left]' +p312639 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312640 +sa(dp312641 +g291130 +S'American, 1836 - 1910' +p312642 +sg291132 +S'(artist after)' +p312643 +sg291134 +S'Rear View of the Great Elm [right]' +p312644 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312645 +sa(dp312646 +g291130 +S'American, 1836 - 1910' +p312647 +sg291132 +S'(artist after)' +p312648 +sg291134 +S'The Boston Common' +p312649 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312650 +sa(dp312651 +g291130 +S'American, 1836 - 1910' +p312652 +sg291132 +S'(artist after)' +p312653 +sg291134 +S'A Picnic by Land' +p312654 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312655 +sa(dp312656 +g291130 +S'American, 1836 - 1910' +p312657 +sg291132 +S'(artist after)' +p312658 +sg291134 +S'The Bathe at Newport' +p312659 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312660 +sa(dp312661 +g291130 +S'American, 1836 - 1910' +p312662 +sg291132 +S'(artist after)' +p312663 +sg291134 +S'Picnicking in the Woods' +p312664 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312665 +sa(dp312666 +g291130 +S'American, 1836 - 1910' +p312667 +sg291132 +S'(artist after)' +p312668 +sg291134 +S'Mademoiselle Piccolomini' +p312669 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312670 +sa(dp312671 +g291130 +S'American, 1836 - 1910' +p312672 +sg291132 +S'(artist after)' +p312673 +sg291134 +S'Husking the Corn in New England' +p312674 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312675 +sa(dp312676 +g291130 +S'American, 1836 - 1910' +p312677 +sg291132 +S'(artist after)' +p312678 +sg291134 +S'Driving Home the Corn [top]' +p312679 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312680 +sa(dp312681 +g291130 +S'American, 1836 - 1910' +p312682 +sg291132 +S'(artist after)' +p312683 +sg291134 +S'The Dance after the Husking [bottom]' +p312684 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312685 +sa(dp312686 +g291130 +S'American, 1836 - 1910' +p312687 +sg291132 +S'(artist after)' +p312688 +sg291134 +S'Thanksgiving Day - Ways and Means [top]' +p312689 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312690 +sa(dp312691 +g291130 +S'American, 1836 - 1910' +p312692 +sg291132 +S'(artist after)' +p312693 +sg291134 +S'Thanksgiving Day - Arrival at the Old Home [bottom]' +p312694 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312695 +sa(dp312696 +g291130 +S'American, 1836 - 1910' +p312697 +sg291132 +S'(artist after)' +p312698 +sg291134 +S'Thanksgiving Day - The Dinner [top]' +p312699 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312700 +sa(dp312701 +g291130 +S'American, 1836 - 1910' +p312702 +sg291132 +S'(artist after)' +p312703 +sg291134 +S'Thanksgiving Day - The Dance [bottom]' +p312704 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312705 +sa(dp312706 +g291130 +S'American, 1836 - 1910' +p312707 +sg291132 +S'(artist after)' +p312708 +sg291134 +S'Christmas - Gathering Evergreens [top]' +p312709 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312710 +sa(dp312711 +g291130 +S'American, 1836 - 1910' +p312712 +sg291132 +S'(artist after)' +p312713 +sg291134 +S'The Christmas-Tree [bottom]' +p312714 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312715 +sa(dp312716 +g291130 +S'American, 1836 - 1910' +p312717 +sg291132 +S'(artist after)' +p312718 +sg291134 +S'Santa Claus and His Presents [top]' +p312719 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312720 +sa(dp312721 +g291130 +S'American, 1836 - 1910' +p312722 +sg291132 +S'(artist after)' +p312723 +sg291134 +S'Christmas Out of Doors [bottom]' +p312724 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312725 +sa(dp312726 +g291130 +S'American, 1836 - 1910' +p312727 +sg291132 +S'(artist after)' +p312728 +sg291134 +S'Skating at Boston' +p312729 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312730 +sa(dp312731 +g291130 +S'American, 1836 - 1910' +p312732 +sg291132 +S'(artist after)' +p312733 +sg291134 +S'March Winds [top]' +p312734 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312735 +sa(dp312736 +g291130 +S'American, 1836 - 1910' +p312737 +sg291132 +S'(artist after)' +p312738 +sg291134 +S'April Showers [bottom]' +p312739 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312740 +sa(dp312741 +g291130 +S'American, 1836 - 1910' +p312742 +sg291132 +S'(artist after)' +p312743 +sg291134 +S'May-Day in the Country' +p312744 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312745 +sa(dp312746 +g291134 +S'August in the Country - The Sea Shore' +p312747 +sg291137 +S'Artist Information (' +p312748 +sg291130 +S'American, 1836 - 1910' +p312749 +sg291132 +S'(artist after)' +p312750 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ac4.jpg' +p312751 +sg291136 +g27 +sa(dp312752 +g291130 +S'American, 1836 - 1910' +p312753 +sg291132 +S'(artist after)' +p312754 +sg291134 +S'A Cadet Hop at West Point' +p312755 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312756 +sa(dp312757 +g291130 +S'American, 1836 - 1910' +p312758 +sg291132 +S'(artist after)' +p312759 +sg291134 +S'Fall Games - The Apple-Bee' +p312760 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312761 +sa(dp312762 +g291130 +S'American, 1836 - 1910' +p312763 +sg291132 +S'(artist after)' +p312764 +sg291134 +S'Union Meetings in the Open Air Outside the Academy of Music, December 19, 1859' +p312765 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312766 +sa(dp312767 +g291130 +S'American, 1836 - 1910' +p312768 +sg291132 +S'(artist after)' +p312769 +sg291134 +S'The Sleighing Season - The Upset' +p312770 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312771 +sa(dp312772 +g291130 +S'American, 1836 - 1910' +p312773 +sg291132 +S'(artist after)' +p312774 +sg291134 +S'A Snow Slide in the City' +p312775 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312776 +sa(dp312777 +g291130 +S'American, 1836 - 1910' +p312778 +sg291132 +S'(artist after)' +p312779 +sg291134 +S'Untitled [left]' +p312780 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312781 +sa(dp312782 +g291130 +S'American, 1836 - 1910' +p312783 +sg291132 +S'(artist after)' +p312784 +sg291134 +S'"Allow Me to Examine the Young Lady" [right]' +p312785 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312786 +sa(dp312787 +g291130 +S'American, 1836 - 1910' +p312788 +sg291132 +S'(artist after)' +p312789 +sg291134 +S'Hon. J.L.M. Curry of Alabama' +p312790 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312791 +sa(dp312792 +g291130 +S'American, 1836 - 1910' +p312793 +sg291132 +S'(artist after)' +p312794 +sg291134 +S'The Meeting after the Marriage' +p312795 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312796 +sa(dp312797 +g291130 +S'American, 1836 - 1910' +p312798 +sg291132 +S'(artist after)' +p312799 +sg291134 +S'The Buds [bottom]' +p312800 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312801 +sa(dp312802 +g291130 +S'American, 1836 - 1910' +p312803 +sg291132 +S'(artist after)' +p312804 +sg291134 +S'Mrs. Otcheson at the Piano [top]' +p312805 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312806 +sa(dp312807 +g291130 +S'American, 1836 - 1910' +p312808 +sg291132 +S'(artist after)' +p312809 +sg291134 +S'On the Beach' +p312810 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312811 +sa(dp312812 +g291130 +S'American, 1836 - 1910' +p312813 +sg291132 +S'(artist after)' +p312814 +sg291134 +S'The Lady in Black [top]' +p312815 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312816 +sa(dp312817 +g291130 +S'American, 1836 - 1910' +p312818 +sg291132 +S'(artist after)' +p312819 +sg291134 +S'Meadowbrook Parsonage [bottom]' +p312820 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312821 +sa(dp312822 +g291130 +S'American, 1836 - 1910' +p312823 +sg291132 +S'(artist after)' +p312824 +sg291134 +S'Hon. Elihu B. Washburne, of Illinois, Chairman of the Committee on Commerce' +p312825 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312826 +sa(dp312827 +g291130 +S'American, 1836 - 1910' +p312828 +sg291132 +S'(artist after)' +p312829 +sg291134 +S'Scene in Union Square, New York, on a March Day' +p312830 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312831 +sa(dp312832 +g291130 +S'American, 1836 - 1910' +p312833 +sg291132 +S'(artist after)' +p312834 +sg291134 +S'Chime of Thirteen Bells for Christ Church, Cambridge, Massachusetts, Manufactured by Messrs. Henry N. Hooper & Co., of Boston' +p312835 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312836 +sa(dp312837 +g291130 +S'American, 1836 - 1910' +p312838 +sg291132 +S'(artist after)' +p312839 +sg291134 +S'Kidnapping' +p312840 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312841 +sa(dp312842 +g291130 +S'American, 1836 - 1910' +p312843 +sg291132 +S'(artist after)' +p312844 +sg291134 +S'Young America Rising at the Ballot-Box and Strangling the Serpents: Disunion and Secession' +p312845 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312846 +sa(dp312847 +g291130 +S'American, 1836 - 1910' +p312848 +sg291132 +S'(artist after)' +p312849 +sg291134 +S'Columbia Making Her Toilet to Receive the Prince [top]' +p312850 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312851 +sa(dp312852 +g291130 +S'American, 1836 - 1910' +p312853 +sg291132 +S'(artist after)' +p312854 +sg291134 +S"Columbia's Welcome [bottom]" +p312855 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312856 +sa(dp312857 +g291130 +S'American, 1836 - 1910' +p312858 +sg291132 +S'(artist after)' +p312859 +sg291134 +S'Welcome to the Prince of Wales' +p312860 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312861 +sa(dp312862 +g291130 +S'American, 1836 - 1910' +p312863 +sg291132 +S'(artist after)' +p312864 +sg291134 +S'Hon. Abraham Lincoln, Born in Kentucky, February 12, 1809' +p312865 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312866 +sa(dp312867 +g291130 +S'American, 1836 - 1910' +p312868 +sg291132 +S'(artist after)' +p312869 +sg291134 +S'Too Many Cooks Spoil the Broth' +p312870 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312871 +sa(dp312872 +g291130 +S'American, 1836 - 1910' +p312873 +sg291132 +S'(artist after)' +p312874 +sg291134 +S'General Guiseppe Garibaldi and Two Favorite Volunteers' +p312875 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312876 +sa(dp312877 +g291130 +S'American, 1836 - 1910' +p312878 +sg291132 +S'(artist after)' +p312879 +sg291134 +S'Hon. Roger B. Taney, Chief-Justice of the United States' +p312880 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312881 +sa(dp312882 +g291130 +S'American, 1836 - 1910' +p312883 +sg291132 +S'(artist after)' +p312884 +sg291134 +S'Expulsion of Negroes and Abolitionists from Tremont Temple, Boston, Massachusetts, onDecember 3, 1860' +p312885 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312886 +sa(dp312887 +g291130 +S'American, 1836 - 1910' +p312888 +sg291132 +S'(artist after)' +p312889 +sg291134 +S'The Seceding South Carolina Delegation' +p312890 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312891 +sa(dp312892 +g291130 +S'American, 1836 - 1910' +p312893 +sg291132 +S'(artist after)' +p312894 +sg291134 +S'The Georgia Delegation in Congress' +p312895 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312896 +sa(dp312897 +g291130 +S'American, 1836 - 1910' +p312898 +sg291132 +S'(artist after)' +p312899 +sg291134 +S'The Seceding Mississippi Delegation in Congress' +p312900 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312901 +sa(dp312902 +g291130 +S'American, 1836 - 1910' +p312903 +sg291132 +S'(artist after)' +p312904 +sg291134 +S'The Seceding Alabama Delegation in Congress' +p312905 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312906 +sa(dp312907 +g291130 +S'American, 1836 - 1910' +p312908 +sg291132 +S'(artist after)' +p312909 +sg291134 +S'The Late Reverend Doctor Murray' +p312910 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312911 +sa(dp312912 +g291130 +S'American, 1836 - 1910' +p312913 +sg291132 +S'(artist after)' +p312914 +sg291134 +S'Lieutenant Slemmer, U.S.A., Commanding Fort Pickens [left]' +p312915 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312916 +sa(dp312917 +g291130 +S'American, 1836 - 1910' +p312918 +sg291132 +S'(artist after)' +p312919 +sg291134 +S'Lieutenant Gilman, U.S.A., of the Garrison at Fort Pickens [right]' +p312920 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312921 +sa(dp312922 +g291130 +S'American, 1836 - 1910' +p312923 +sg291132 +S'(artist after)' +p312924 +sg291134 +S'Abraham Lincoln, the President Elect, Addressing the People from the Astor House Balcony, February 19, 1861' +p312925 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312926 +sa(dp312927 +g291130 +S'American, 1836 - 1910' +p312928 +sg291132 +S'(artist after)' +p312929 +sg291134 +S'President Lincoln Hoisting the American Flag with Thirty-four Stars upon IndependenceHall' +p312930 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312931 +sa(dp312932 +g291130 +S'American, 1836 - 1910' +p312933 +sg291132 +S'(artist after)' +p312934 +sg291134 +S'Inauguration of President Jefferson Davis of the Southern Confederacy, at Montgomery,Alabama, February 18, 1861' +p312935 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312936 +sa(dp312937 +g291130 +S'American, 1836 - 1910' +p312938 +sg291132 +S'(artist after)' +p312939 +sg291134 +S'The Inaugural Procession at Washington Passing the Gate of the Capitol Grounds' +p312940 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312941 +sa(dp312942 +g291130 +S'American, 1836 - 1910' +p312943 +sg291132 +S'(artist after)' +p312944 +sg291134 +S'Presidents Buchanan and Lincoln Entering the Senate Chamber before the Inauguration' +p312945 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312946 +sa(dp312947 +g291130 +S'American, 1836 - 1910' +p312948 +sg291132 +S'(artist after)' +p312949 +sg291134 +S'United States Flying Artillery Going on Board the Steamship "Atlantic" at New York, April 6, 1861' +p312950 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312951 +sa(dp312952 +g291130 +S'American, 1836 - 1910' +p312953 +sg291132 +S'(artist after)' +p312954 +sg291134 +S'General Thomas Swearing in the Volunteers Called into the Service of the United States at Washington, D.C.' +p312955 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312956 +sa(dp312957 +g291130 +S'American, 1836 - 1910' +p312958 +sg291132 +S'(artist after)' +p312959 +sg291134 +S'General Beauregard' +p312960 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312961 +sa(dp312962 +g291130 +S'American, 1836 - 1910' +p312963 +sg291132 +S'(artist after)' +p312964 +sg291134 +S'The Great Meeting in Union Square, New York, to Support the Government, April 20,1861' +p312965 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312966 +sa(dp312967 +g291130 +S'American, 1836 - 1910' +p312968 +sg291132 +S'(artist after)' +p312969 +sg291134 +S'Massachusetts Volunteers: The Boston Regiments Embarking for Washington in the Jersey City Cars' +p312970 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312971 +sa(dp312972 +g291130 +S'American, 1836 - 1910' +p312973 +sg291132 +S'(artist after)' +p312974 +sg291134 +S"Colonel Wilson, of Wilson's Brigade" +p312975 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312976 +sa(dp312977 +g291130 +S'American, 1836 - 1910' +p312978 +sg291132 +S'(artist after)' +p312979 +sg291134 +S'Seventh Regiment on Board the "Boston", en Route for Annapolis' +p312980 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312981 +sa(dp312982 +g291130 +S'American, 1836 - 1910' +p312983 +sg291132 +S'(artist after)' +p312984 +sg291134 +S'The Seventy-ninth Regiment (Highlanders) New York State Militia' +p312985 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312986 +sa(dp312987 +g291130 +S'American, 1836 - 1910' +p312988 +sg291132 +S'(artist after)' +p312989 +sg291134 +S'The Advance Guard of the Grand Army of the United States Crossing the Long Bridge over the Potomac, at 2 A.M. on May 24, 1861' +p312990 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312991 +sa(dp312992 +g291130 +S'American, 1836 - 1910' +p312993 +sg291132 +S'(artist after)' +p312994 +sg291134 +S'The War - Making Havelocks for the Volunteers' +p312995 +sg291136 +g27 +sg291137 +S'Artist Information (' +p312996 +sa(dp312997 +g291130 +S'American, 1836 - 1910' +p312998 +sg291132 +S'(artist after)' +p312999 +sg291134 +S'Crew of the United States Steam-Sloop "Colorado", Shipped at Boston, June, 1861' +p313000 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313001 +sa(dp313002 +g291130 +S'American, 1836 - 1910' +p313003 +sg291132 +S'(artist after)' +p313004 +sg291134 +S'Filling Cartridges at the United States Arsenal, at Watertown, Massachusetts' +p313005 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313006 +sa(dp313007 +g291130 +S'American, 1836 - 1910' +p313008 +sg291132 +S'(artist after)' +p313009 +sg291134 +S'Presentation of a Flag to the Webster Regiment, Boston, Massachusetts, by Hon. Edward Everett, on Behalf of the Ladies of Boston' +p313010 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313011 +sa(dp313012 +g291130 +S'American, 1836 - 1910' +p313013 +sg291132 +S'(artist after)' +p313014 +sg291134 +S'A New Regiment of Massachusetts Volunteers Passing Faneuil Hall, Boston, on Their Wayto the War' +p313015 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313016 +sa(dp313017 +g291130 +S'American, 1836 - 1910' +p313018 +sg291132 +S'(artist after)' +p313019 +sg291134 +S'Flag-Officer Stringham' +p313020 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313021 +sa(dp313022 +g291130 +S'American, 1836 - 1910' +p313023 +sg291132 +S'(artist after)' +p313024 +sg291134 +S'A Night Reconnoissance on the Potomac' +p313025 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313026 +sa(dp313027 +g291130 +S'American, 1836 - 1910' +p313028 +sg291132 +S'(artist after)' +p313029 +sg291134 +S'Christmas Boxes in Camp - Christmas, 1861' +p313030 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313031 +sa(dp313032 +g291130 +S'American, 1836 - 1910' +p313033 +sg291132 +S'(artist after)' +p313034 +sg291134 +S'The Skating Season - 1862' +p313035 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313036 +sa(dp313037 +g291130 +S'American, 1836 - 1910' +p313038 +sg291132 +S'(artist after)' +p313039 +sg291134 +S'Rebels Outside Their Works at Yorktown Reconnoitring with Dark Lanterns' +p313040 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313041 +sa(dp313042 +g291130 +S'American, 1836 - 1910' +p313043 +sg291132 +S'(artist after)' +p313044 +sg291134 +S'The Union Cavalry and Artillery Starting in Pursuit of the Rebels up the Yorktown Turnpike' +p313045 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313046 +sa(dp313047 +g291130 +S'American, 1836 - 1910' +p313048 +sg291132 +S'(artist after)' +p313049 +sg291134 +S'Charge of the First Massachusetts Regiment on a Rebel Rifle Pit near Yorktown' +p313050 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313051 +sa(dp313052 +g291130 +S'American, 1836 - 1910' +p313053 +sg291132 +S'(artist after)' +p313054 +sg291134 +S'The Army of the Potomac - Our Outlying Picket in the Woods' +p313055 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313056 +sa(dp313057 +g291130 +S'American, 1836 - 1910' +p313058 +sg291132 +S'(artist after)' +p313059 +sg291134 +S'The Surgeon at Work at the Rear During an Engagement' +p313060 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313061 +sa(dp313062 +g291134 +S'The Army of the Potomac - A Sharp-Shooter on Picket Duty' +p313063 +sg291137 +S'Artist Information (' +p313064 +sg291130 +S'American, 1836 - 1910' +p313065 +sg291132 +S'(artist after)' +p313066 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000ac5.jpg' +p313067 +sg291136 +g27 +sa(dp313068 +g291134 +S'Thanksgiving in Camp' +p313069 +sg291137 +S'Artist Information (' +p313070 +sg291130 +S'American, 1836 - 1910' +p313071 +sg291132 +S'(artist after)' +p313072 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fa/a000faae.jpg' +p313073 +sg291136 +g27 +sa(dp313074 +g291130 +S'American, 1836 - 1910' +p313075 +sg291132 +S'(artist after)' +p313076 +sg291134 +S'A Shell in the Rebel Trenches' +p313077 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313078 +sa(dp313079 +g291130 +S'American, 1836 - 1910' +p313080 +sg291132 +S'(artist after)' +p313081 +sg291134 +S'Winter-Quarters in Camp - The Inside of a Hut' +p313082 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313083 +sa(dp313084 +g291130 +S'American, 1836 - 1910' +p313085 +sg291132 +S'(artist after)' +p313086 +sg291134 +S'Great Sumter Meeting in Union Square, New York, April 11, 1863' +p313087 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313088 +sa(dp313089 +g291130 +S'American, 1836 - 1910' +p313090 +sg291132 +S'(artist after)' +p313091 +sg291134 +S'The Approach of the British Pirate "Alabama"' +p313092 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313093 +sa(dp313094 +g291134 +S'Home from the War' +p313095 +sg291137 +S'Artist Information (' +p313096 +sg291130 +S'American, 1836 - 1910' +p313097 +sg291132 +S'(artist after)' +p313098 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fa/a000faad.jpg' +p313099 +sg291136 +g27 +sa(dp313100 +g291130 +S'American, 1836 - 1910' +p313101 +sg291132 +S'(artist after)' +p313102 +sg291134 +S'The Russian Ball - In the Supper-Room' +p313103 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313104 +sa(dp313105 +g291134 +S'"Any Thing for Me, If You Please?" - Post Office of the Brooklyn Fair in Aid of the Sanitary Commission' +p313106 +sg291137 +S'Artist Information (' +p313107 +sg291130 +S'American, 1836 - 1910' +p313108 +sg291132 +S'(artist after)' +p313109 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fa/a000faac.jpg' +p313110 +sg291136 +g27 +sa(dp313111 +g291130 +S'American, 1836 - 1910' +p313112 +sg291132 +S'(artist after)' +p313113 +sg291134 +S'Floral Department of the Great Fair' +p313114 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313115 +sa(dp313116 +g291130 +S'American, 1836 - 1910' +p313117 +sg291132 +S'(artist after)' +p313118 +sg291134 +S'The Fire Department in the Fair' +p313119 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313120 +sa(dp313121 +g291130 +S'American, 1836 - 1910' +p313122 +sg291132 +S'(artist after)' +p313123 +sg291134 +S'The Late Chief-Justice Roger B. Taney' +p313124 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313125 +sa(dp313126 +g291130 +S'American, 1836 - 1910' +p313127 +sg291132 +S'(artist after)' +p313128 +sg291134 +S'Thanksgiving-Day in the Army - After Dinner: The Wish-Bone' +p313129 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313130 +sa(dp313131 +g291130 +S'American, 1836 - 1910' +p313132 +sg291132 +S'(artist after)' +p313133 +sg291134 +S'Holiday in Camp - Soldiers Playing "Foot-Ball"' +p313134 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313135 +sa(dp313136 +g291130 +S'American, 1836 - 1910' +p313137 +sg291132 +S'(artist after)' +p313138 +sg291134 +S'Our Watering-Places - The Empty Sleeve at Newport' +p313139 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313140 +sa(dp313141 +g291130 +S'American, 1836 - 1910' +p313142 +sg291132 +S'(artist after)' +p313143 +sg291134 +S'Our Watering-Places - Horse-Racing at Saratoga' +p313144 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313145 +sa(dp313146 +g291130 +S'American, 1836 - 1910' +p313147 +sg291132 +S'(artist after)' +p313148 +sg291134 +S'A Parisian Ball - Dancing at the Mabille, Paris' +p313149 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313150 +sa(dp313151 +g291130 +S'American, 1836 - 1910' +p313152 +sg291132 +S'(artist after)' +p313153 +sg291134 +S'A Parisian Ball - Dancing at the Casino' +p313154 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313155 +sa(dp313156 +g291130 +S'American, 1836 - 1910' +p313157 +sg291132 +S'(artist after)' +p313158 +sg291134 +S'Art-Students and Copyists in the Louvre Gallery, Paris' +p313159 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313160 +sa(dp313161 +g291130 +S'American, 1836 - 1910' +p313162 +sg291132 +S'(artist after)' +p313163 +sg291134 +S'"Winter" - A Skating Scene' +p313164 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313165 +sa(dp313166 +g291130 +S'American, 1836 - 1910' +p313167 +sg291132 +S'(artist after)' +p313168 +sg291134 +S"St. Valentine's Day - The Old Story in All Lands" +p313169 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313170 +sa(dp313171 +g291130 +S'American, 1836 - 1910' +p313172 +sg291132 +S'(artist after)' +p313173 +sg291134 +S"The Morning Walk - Young Ladies' School Promenading the Avenue" +p313174 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313175 +sa(dp313176 +g291130 +S'American, 1836 - 1910' +p313177 +sg291132 +S'(artist after)' +p313178 +sg291134 +S'Fire-Works on the Night of the Fourth of July' +p313179 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313180 +sa(dp313181 +g291130 +S'American, 1836 - 1910' +p313182 +sg291132 +S'(artist after)' +p313183 +sg291134 +S'New England Factory Life - "Bell-Time"' +p313184 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313185 +sa(dp313186 +g291130 +S'American, 1836 - 1910' +p313187 +sg291132 +S'(artist after)' +p313188 +sg291134 +S'"Our Next President"' +p313189 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313190 +sa(dp313191 +g291130 +S'American, 1836 - 1910' +p313192 +sg291132 +S'(artist after)' +p313193 +sg291134 +S'Christmas Belles' +p313194 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313195 +sa(dp313196 +g291130 +S'American, 1836 - 1910' +p313197 +sg291132 +S'(artist after)' +p313198 +sg291134 +S'The New Year - 1869' +p313199 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313200 +sa(dp313201 +g291130 +S'American, 1836 - 1910' +p313202 +sg291132 +S'(artist after)' +p313203 +sg291134 +S'Winter at Sea - Taking in Sail Off the Coast' +p313204 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313205 +sa(dp313206 +g291130 +S'American, 1836 - 1910' +p313207 +sg291132 +S'(artist after)' +p313208 +sg291134 +S'Jurors Listening to Counsel, Supreme Court, New City Hall, New York' +p313209 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313210 +sa(dp313211 +g291130 +S'American, 1836 - 1910' +p313212 +sg291132 +S'(artist after)' +p313213 +sg291134 +S'The Summit of Mount Washington' +p313214 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313215 +sa(dp313216 +g291130 +S'American, 1836 - 1910' +p313217 +sg291132 +S'(artist after)' +p313218 +sg291134 +S'Tenth Commandment' +p313219 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313220 +sa(dp313221 +g291130 +S'American, 1836 - 1910' +p313222 +sg291132 +S'(artist after)' +p313223 +sg291134 +S'Spring Farm Work - Grafting' +p313224 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313225 +sa(dp313226 +g291130 +S'American, 1836 - 1910' +p313227 +sg291132 +S'(artist after)' +p313228 +sg291134 +S'Spring Blossoms' +p313229 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313230 +sa(dp313231 +g291130 +S'American, 1836 - 1910' +p313232 +sg291132 +S'(artist after)' +p313233 +sg291134 +S'The Dinner Horn' +p313234 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313235 +sa(dp313236 +g291130 +S'American, 1836 - 1910' +p313237 +sg291132 +S'(artist after)' +p313238 +sg291134 +S'On the Bluff at Long Branch, at the Bathing Hour' +p313239 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313240 +sa(dp313241 +g291130 +S'American, 1836 - 1910' +p313242 +sg291132 +S'(artist after)' +p313243 +sg291134 +S'Making Hay' +p313244 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313245 +sa(dp313246 +g291134 +S'On the Beach - Two are Company, Three are None' +p313247 +sg291137 +S'Artist Information (' +p313248 +sg291130 +S'American, 1836 - 1910' +p313249 +sg291132 +S'(artist after)' +p313250 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fabd.jpg' +p313251 +sg291136 +g27 +sa(dp313252 +g291130 +S'American, 1836 - 1910' +p313253 +sg291132 +S'(artist after)' +p313254 +sg291134 +S'Under the Falls, Catskill Mountains' +p313255 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313256 +sa(dp313257 +g291130 +S'American, 1836 - 1910' +p313258 +sg291132 +S'(artist after)' +p313259 +sg291134 +S'The Wreck of the "Atlantic" - Cast Up by the Sea' +p313260 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313261 +sa(dp313262 +g291130 +S'American, 1836 - 1910' +p313263 +sg291132 +S'(artist after)' +p313264 +sg291134 +S'The Noon Recess' +p313265 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313266 +sa(dp313267 +g291130 +S'(artist after)' +p313268 +sg291132 +S'\n' +p313269 +sg291134 +S'The Bathers' +p313270 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313271 +sa(dp313272 +g291134 +S'The Nooning' +p313273 +sg291137 +S'Artist Information (' +p313274 +sg291130 +S'American, 1836 - 1910' +p313275 +sg291132 +S'(artist after)' +p313276 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fab9.jpg' +p313277 +sg291136 +g27 +sa(dp313278 +g291130 +S'(artist after)' +p313279 +sg291132 +S'\n' +p313280 +sg291134 +S'Sea-Side Sketches - A Clam-Bake' +p313281 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313282 +sa(dp313283 +g291134 +S'Gloucester Harbor' +p313284 +sg291137 +S'Artist Information (' +p313285 +sg291130 +S'American, 1836 - 1910' +p313286 +sg291132 +S'(artist after)' +p313287 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fab7.jpg' +p313288 +sg291136 +g27 +sa(dp313289 +g291134 +S'Ship-Building, Gloucester Harbor' +p313290 +sg291137 +S'Artist Information (' +p313291 +sg291130 +S'American, 1836 - 1910' +p313292 +sg291132 +S'(artist after)' +p313293 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004bab.jpg' +p313294 +sg291136 +g27 +sa(dp313295 +g291134 +S'"Dad\'s Coming!"' +p313296 +sg291137 +S'Artist Information (' +p313297 +sg291130 +S'American, 1836 - 1910' +p313298 +sg291132 +S'(artist after)' +p313299 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fac4.jpg' +p313300 +sg291136 +g27 +sa(dp313301 +g291130 +S'American, 1836 - 1910' +p313302 +sg291132 +S'(artist after)' +p313303 +sg291134 +S'The Last Days of Harvest' +p313304 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313305 +sa(dp313306 +g291130 +S'American, 1836 - 1910' +p313307 +sg291132 +S'(artist after)' +p313308 +sg291134 +S'The Morning Bell' +p313309 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313310 +sa(dp313311 +g291130 +S'American, 1836 - 1910' +p313312 +sg291132 +S'(artist after)' +p313313 +sg291134 +S'Station-House Lodgers' +p313314 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313315 +sa(dp313316 +g291130 +S'American, 1836 - 1910' +p313317 +sg291132 +S'(artist after)' +p313318 +sg291134 +S'Watch-Tower, Corner of Spring and Varick Streets, New York' +p313319 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313320 +sa(dp313321 +g291130 +S'American, 1836 - 1910' +p313322 +sg291132 +S'(artist after)' +p313323 +sg291134 +S'The Chinese in New York - Scene in a Baxter Street Club-House' +p313324 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313325 +sa(dp313326 +g291130 +S'(artist after)' +p313327 +sg291132 +S'\n' +p313328 +sg291134 +S'New York Charities - St. Barnabas House, 304 Mulberry Street' +p313329 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313330 +sa(dp313331 +g291130 +S'(artist after)' +p313332 +sg291132 +S'\n' +p313333 +sg291134 +S'Raid on a Sand-Swallow Colony - "How Many Eggs?"' +p313334 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313335 +sa(dp313336 +g291130 +S'(artist after)' +p313337 +sg291132 +S'\n' +p313338 +sg291134 +S'Gathering Berries' +p313339 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313340 +sa(dp313341 +g291130 +S'(artist after)' +p313342 +sg291132 +S'\n' +p313343 +sg291134 +S"On the Beach at Long Branch - The Children's Hour" +p313344 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313345 +sa(dp313346 +g291130 +S'(artist after)' +p313347 +sg291132 +S'\n' +p313348 +sg291134 +S'Waiting for a Bite' +p313349 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313350 +sa(dp313351 +g291130 +S'American, 1836 - 1910' +p313352 +sg291132 +S'(artist after)' +p313353 +sg291134 +S'Seesaw - Gloucester, Massachusetts' +p313354 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313355 +sa(dp313356 +g291130 +S'American, 1836 - 1910' +p313357 +sg291132 +S'(artist after)' +p313358 +sg291134 +S'Flirting on the Sea-Shore and on the Meadow' +p313359 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313360 +sa(dp313361 +g291130 +S'(artist after)' +p313362 +sg291132 +S'\n' +p313363 +sg291134 +S'Camping Out in the Adirondack Mountains' +p313364 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313365 +sa(dp313366 +g291130 +S'American, 1836 - 1910' +p313367 +sg291132 +S'(artist after)' +p313368 +sg291134 +S"The Battle of Bunker-Hill - Watching the Fight from Copp's Hill, in Boston" +p313369 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313370 +sa(dp313371 +g291130 +S'(artist after)' +p313372 +sg291132 +S'\n' +p313373 +sg291134 +S'The Fishing Party' +p313374 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313375 +sa(dp313376 +g291130 +S'(artist after)' +p313377 +sg291132 +S'\n' +p313378 +sg291134 +S'Captain J.W. Watkins' +p313379 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313380 +sa(dp313381 +g291130 +S'(artist after)' +p313382 +sg291132 +S'\n' +p313383 +sg291134 +S'Corner of Winter, Washington and Summer Streets, Boston' +p313384 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313385 +sa(dp313386 +g291130 +S'(artist after)' +p313387 +sg291132 +S'\n' +p313388 +sg291134 +S'Hon. William Haile, Governor of New Hampshire' +p313389 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313390 +sa(dp313391 +g291130 +S'(artist after)' +p313392 +sg291132 +S'\n' +p313393 +sg291134 +S'The Fountain on Boston Common' +p313394 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313395 +sa(dp313396 +g291130 +S'American, 1836 - 1910' +p313397 +sg291132 +S'(artist after)' +p313398 +sg291134 +S'Pierre-Jean De Berranger' +p313399 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313400 +sa(dp313401 +g291130 +S'American, 1836 - 1910' +p313402 +sg291132 +S'(artist after)' +p313403 +sg291134 +S'A Boston Watering-Cart' +p313404 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313405 +sa(dp313406 +g291130 +S'(artist after)' +p313407 +sg291132 +S'\n' +p313408 +sg291134 +S'The Late William Wood' +p313409 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313410 +sa(dp313411 +g291130 +S'(artist after)' +p313412 +sg291132 +S'\n' +p313413 +sg291134 +S'View in South Market Street, Boston' +p313414 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313415 +sa(dp313416 +g291130 +S'(artist after)' +p313417 +sg291132 +S'\n' +p313418 +sg291134 +S'Hon. Robert I. Burbank' +p313419 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313420 +sa(dp313421 +g291130 +S'(artist after)' +p313422 +sg291132 +S'\n' +p313423 +sg291134 +S'Rembrandt Peale' +p313424 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313425 +sa(dp313426 +g291130 +S'(artist after)' +p313427 +sg291132 +S'\n' +p313428 +sg291134 +S'Emigrant Arrival at Constitution Wharf' +p313429 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313430 +sa(dp313431 +g291130 +S'American, 1836 - 1910' +p313432 +sg291132 +S'(artist after)' +p313433 +sg291134 +S'Boston Evening Street Scene, at the Corner of Court and Brattle Streets' +p313434 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313435 +sa(dp313436 +g291130 +S'American, 1836 - 1910' +p313437 +sg291132 +S'(artist after)' +p313438 +sg291134 +S"Blindman's Buff [top]" +p313439 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313440 +sa(dp313441 +g291130 +S'(artist after)' +p313442 +sg291132 +S'\n' +p313443 +sg291134 +S'Husking Party Finding the Red Ears [bottom]' +p313444 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313445 +sa(dp313446 +g291130 +S'(artist after)' +p313447 +sg291132 +S'\n' +p313448 +sg291134 +S'Family Party Playing at Fox and Geese [top]' +p313449 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313450 +sa(dp313451 +g291130 +S'(artist after)' +p313452 +sg291132 +S'\n' +p313453 +sg291134 +S'Coasting Out of Doors [bottom]' +p313454 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313455 +sa(dp313456 +g291130 +S'American, 1836 - 1910' +p313457 +sg291132 +S'(artist after)' +p313458 +sg291134 +S'The "Cold Term," Boston-Scene, Corner of Milk and Washington Streets' +p313459 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313460 +sa(dp313461 +g291130 +S'American, 1836 - 1910' +p313462 +sg291132 +S'(artist after)' +p313463 +sg291134 +S'Class Day, at Harvard University, Cambridge, Mass.' +p313464 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313465 +sa(dp313466 +g291130 +S'American, 1836 - 1910' +p313467 +sg291132 +S'(artist after)' +p313468 +sg291134 +S'Landing at the Cape [top]' +p313469 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313470 +sa(dp313471 +g291130 +S'(artist after)' +p313472 +sg291132 +S'\n' +p313473 +sg291134 +S'Morning Ablutions [bottom]' +p313474 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313475 +sa(dp313476 +g291130 +S'American, 1836 - 1910' +p313477 +sg291132 +S'(artist after)' +p313478 +sg291134 +S'Cooking [top]' +p313479 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313480 +sa(dp313481 +g291130 +S'American, 1836 - 1910' +p313482 +sg291132 +S'(artist after)' +p313483 +sg291134 +S'The Tent [bottom]' +p313484 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313485 +sa(dp313486 +g291130 +S'(artist after)' +p313487 +sg291132 +S'\n' +p313488 +sg291134 +S'Theodore Parker' +p313489 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313490 +sa(dp313491 +g291130 +S'(artist after)' +p313492 +sg291132 +S'\n' +p313493 +sg291134 +S'William E. Burton, Esq., Comedian' +p313494 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313495 +sa(dp313496 +g291130 +S'(artist after)' +p313497 +sg291132 +S'\n' +p313498 +sg291134 +S'Franklin Haven, Esq.' +p313499 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313500 +sa(dp313501 +g291130 +S'(artist after)' +p313502 +sg291132 +S'\n' +p313503 +sg291134 +S'Henry Wadsworth Longfellow' +p313504 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313505 +sa(dp313506 +g291130 +S'(artist after)' +p313507 +sg291132 +S'\n' +p313508 +sg291134 +S'Hon. Stephen A. Douglas' +p313509 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313510 +sa(dp313511 +g291130 +S'(artist after)' +p313512 +sg291132 +S'\n' +p313513 +sg291134 +S'Hon. Charles Hale, Speaker of the House, Massachusetts Legislature' +p313514 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313515 +sa(dp313516 +g291130 +S'(artist after)' +p313517 +sg291132 +S'\n' +p313518 +sg291134 +S'Skating on Jamaica Pond, near Boston' +p313519 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313520 +sa(dp313521 +g291130 +S'(artist after)' +p313522 +sg291132 +S'\n' +p313523 +sg291134 +S'Sleighing in Haymarket Square, Boston [top]' +p313524 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313525 +sa(dp313526 +g291130 +S'(artist after)' +p313527 +sg291132 +S'\n' +p313528 +sg291134 +S'Sleighing on the Road, Brighton, near Boston [bottom]' +p313529 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313530 +sa(dp313531 +g291130 +S'(artist after)' +p313532 +sg291132 +S'\n' +p313533 +sg291134 +S'Ralph Waldo Emerson' +p313534 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313535 +sa(dp313536 +g291130 +S'(artist after)' +p313537 +sg291132 +S'\n' +p313538 +sg291134 +S'Trotting on the Milldam, Boston' +p313539 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313540 +sa(dp313541 +g291130 +S'(artist after)' +p313542 +sg291132 +S'\n' +p313543 +sg291134 +S'Mrs. Cunningham, Boston Museum' +p313544 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313545 +sa(dp313546 +g291130 +S'(artist after)' +p313547 +sg291132 +S'\n' +p313548 +sg291134 +S'Maria Piccolomini' +p313549 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313550 +sa(dp313551 +g291130 +S'American, 1836 - 1910' +p313552 +sg291132 +S'(artist after)' +p313553 +sg291134 +S'Nahum Capen, Esq., Postmaster of Boston' +p313554 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313555 +sa(dp313556 +g291130 +S'American, 1836 - 1910' +p313557 +sg291132 +S'(artist after)' +p313558 +sg291134 +S'La Petite Angelina and Miss C. Thompson, at the Boston Museum [top]' +p313559 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313560 +sa(dp313561 +g291130 +S'American, 1836 - 1910' +p313562 +sg291132 +S'(artist after)' +p313563 +sg291134 +S'Evening Scene at the Skating Park, Boston [bottom]' +p313564 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313565 +sa(dp313566 +g291130 +S'(artist after)' +p313567 +sg291132 +S'\n' +p313568 +sg291134 +S'Fletcher Webster, Esq., Surveyor of Boston' +p313569 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313570 +sa(dp313571 +g291130 +S'(artist after)' +p313572 +sg291132 +S'\n' +p313573 +sg291134 +S'Samuel Masury, Daguerreotypist and Photographer' +p313574 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313575 +sa(dp313576 +g291130 +S'American, 1836 - 1910' +p313577 +sg291132 +S'(artist after)' +p313578 +sg291134 +S'Gen. Joseph Lane, U.S. Senator from Oregon' +p313579 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313580 +sa(dp313581 +g291130 +S'(artist after)' +p313582 +sg291132 +S'\n' +p313583 +sg291134 +S'A Superb Lion and Lioness, Now Exhibiting in Boston' +p313584 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313585 +sa(dp313586 +g291130 +S'American, 1836 - 1910' +p313587 +sg291132 +S'(artist after)' +p313588 +sg291134 +S'Hon. James A. Pearce, U.S. Senator from Maryland' +p313589 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313590 +sa(dp313591 +g291130 +S'(artist after)' +p313592 +sg291132 +S'\n' +p313593 +sg291134 +S'The New Town of Belmont, Massachusetts' +p313594 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313595 +sa(dp313596 +g291130 +S'(artist after)' +p313597 +sg291132 +S'\n' +p313598 +sg291134 +S'The Late Col. Samuel Jaques' +p313599 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313600 +sa(dp313601 +g291130 +S'(artist after)' +p313602 +sg291132 +S'\n' +p313603 +sg291134 +S'The Wonderful Dutton Children' +p313604 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313605 +sa(dp313606 +g291130 +S'(artist after)' +p313607 +sg291132 +S'\n' +p313608 +sg291134 +S'Scene on the Back Bay Lands, Boston' +p313609 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313610 +sa(dp313611 +g291130 +S'(artist after)' +p313612 +sg291132 +S'\n' +p313613 +sg291134 +S'The Aquarial Gardens, Bromfield Street, Boston' +p313614 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313615 +sa(dp313616 +g291130 +S'American, 1836 - 1910' +p313617 +sg291132 +S'(artist after)' +p313618 +sg291134 +S'Cricket Players on Boston Common' +p313619 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313620 +sa(dp313621 +g291130 +S'(artist after)' +p313622 +sg291132 +S'\n' +p313623 +sg291134 +S'Madame Laborde, the Prima Donna' +p313624 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313625 +sa(dp313626 +g291130 +S'(artist after)' +p313627 +sg291132 +S'\n' +p313628 +sg291134 +S'Paul Morphy, the Chess Champion' +p313629 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313630 +sa(dp313631 +g291130 +S'(artist after)' +p313632 +sg291132 +S'\n' +p313633 +sg291134 +S'Cambridge Cattle Market' +p313634 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313635 +sa(dp313636 +g291130 +S'American, 1836 - 1910' +p313637 +sg291132 +S'(artist after)' +p313638 +sg291134 +S'Fourth of July Scene, on Boston Common' +p313639 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313640 +sa(dp313641 +g291130 +S'American, 1836 - 1910' +p313642 +sg291132 +S'(artist after)' +p313643 +sg291134 +S'Boston Street Characters' +p313644 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313645 +sa(dp313646 +g291130 +S'(artist after)' +p313647 +sg291132 +S'\n' +p313648 +sg291134 +S'Captain Robert B. Forbes' +p313649 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313650 +sa(dp313651 +g291130 +S'(artist after)' +p313652 +sg291132 +S'\n' +p313653 +sg291134 +S'Hon. John F. Potter, of Wisconsin' +p313654 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313655 +sa(dp313656 +g291130 +S'American, 1836 - 1910' +p313657 +sg291132 +S'(artist after)' +p313658 +sg291134 +S'Class Day at Harvard 1870' +p313659 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313660 +sa(dp313661 +g291130 +S'American, 1836 - 1910' +p313662 +sg291132 +S'(artist after)' +p313663 +sg291134 +S'High Tide' +p313664 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313665 +sa(dp313666 +g291130 +S'(artist after)' +p313667 +sg291132 +S'\n' +p313668 +sg291134 +S'Low Tide' +p313669 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313670 +sa(dp313671 +g291130 +S'American, 1836 - 1910' +p313672 +sg291132 +S'(artist after)' +p313673 +sg291134 +S"The Robin's Note" +p313674 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313675 +sa(dp313676 +g291130 +S'(artist after)' +p313677 +sg291132 +S'\n' +p313678 +sg291134 +S'Chestnutting' +p313679 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313680 +sa(dp313681 +g291130 +S'(artist after)' +p313682 +sg291132 +S'\n' +p313683 +sg291134 +S'Trapping in the Adirondacks' +p313684 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313685 +sa(dp313686 +g291130 +S'(artist after)' +p313687 +sg291132 +S'\n' +p313688 +sg291134 +S'A Winter-Morning, - Shovelling Out' +p313689 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313690 +sa(dp313691 +g291130 +S'American, 1836 - 1910' +p313692 +sg291132 +S'(artist after)' +p313693 +sg291134 +S'Deer-Stalking in the Adirondacks in Winter' +p313694 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313695 +sa(dp313696 +g291130 +S'(artist after)' +p313697 +sg291132 +S'\n' +p313698 +sg291134 +S'Lumbering in Winter' +p313699 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313700 +sa(dp313701 +g291130 +S'(artist after)' +p313702 +sg291132 +S'\n' +p313703 +sg291134 +S'A Country Store - Getting Weighed' +p313704 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313705 +sa(dp313706 +g291130 +S'American, 1836 - 1910' +p313707 +sg291132 +S'(artist after)' +p313708 +sg291134 +S'At Sea, Signalling A Passing Steamer' +p313709 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313710 +sa(dp313711 +g291130 +S'(artist after)' +p313712 +sg291132 +S'\n' +p313713 +sg291134 +S'Bathing at Long Branch, - "Oh, Ain\'t It Cold!"' +p313714 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313715 +sa(dp313716 +g291130 +S'(artist after)' +p313717 +sg291132 +S'\n' +p313718 +sg291134 +S'The Cold Embrace' +p313719 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313720 +sa(dp313721 +g291130 +S'(artist after)' +p313722 +sg291132 +S'\n' +p313723 +sg291134 +S'Looking at the Eclipse' +p313724 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313725 +sa(dp313726 +g291130 +S'American, 1836 - 1910' +p313727 +sg291132 +S'(artist after)' +p313728 +sg291134 +S'The Veteran in a New Field' +p313729 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313730 +sa(dp313731 +g291130 +S'American, 1836 - 1910' +p313732 +sg291132 +S'(artist after)' +p313733 +sg291134 +S'The Fourth of July in Tompkins Square, New York - "The Sogers are Coming!"' +p313734 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313735 +sa(dp313736 +g291130 +S'American, 1836 - 1910' +p313737 +sg291132 +S'(artist after)' +p313738 +sg291134 +S'Fatima Enters the Forbidden Closet [top]' +p313739 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313740 +sa(dp313741 +g291130 +S'American, 1836 - 1910' +p313742 +sg291132 +S'(artist after)' +p313743 +sg291134 +S'What She Sees There [center]' +p313744 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313745 +sa(dp313746 +g291130 +S'American, 1836 - 1910' +p313747 +sg291132 +S'(artist after)' +p313748 +sg291134 +S'Disposition of the Bodies (Invisible to the Spectators) [bottom]' +p313749 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313750 +sa(dp313751 +g291130 +S'American, 1836 - 1910' +p313752 +sg291132 +S'(artist after)' +p313753 +sg291134 +S"Our Minister's Donation Party" +p313754 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313755 +sa(dp313756 +g291130 +S'American, 1836 - 1910' +p313757 +sg291132 +S'(artist after)' +p313758 +sg291134 +S"Waiting for Calls on New-Year's Day" +p313759 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313760 +sa(dp313761 +g291130 +S'American, 1836 - 1910' +p313762 +sg291132 +S'(artist after)' +p313763 +sg291134 +S'What Shall We Do Next?' +p313764 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313765 +sa(dp313766 +g291130 +S'American, 1836 - 1910' +p313767 +sg291132 +S'(artist after)' +p313768 +sg291134 +S'The Straw Ride' +p313769 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313770 +sa(dp313771 +g291130 +S'American, 1836 - 1910' +p313772 +sg291132 +S'(artist after)' +p313773 +sg291134 +S'Another Year by the Old Clock' +p313774 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313775 +sa(dp313776 +g291134 +S'The Coolest Spot in New England - Summit of Mount Washington' +p313777 +sg291137 +S'Artist Information (' +p313778 +sg291130 +S'American, 1836 - 1910' +p313779 +sg291132 +S'(artist after)' +p313780 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fac3.jpg' +p313781 +sg291136 +g27 +sa(dp313782 +g291130 +S'American, 1836 - 1910' +p313783 +sg291132 +S'(artist after)' +p313784 +sg291134 +S'On the Beach at Long Branch' +p313785 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313786 +sa(dp313787 +g291130 +S'American, 1836 - 1910' +p313788 +sg291132 +S'(artist after)' +p313789 +sg291134 +S'The Family Record' +p313790 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313791 +sa(dp313792 +g291130 +S'(artist after)' +p313793 +sg291132 +S'\n' +p313794 +sg291134 +S'At The Spring: Saratoga' +p313795 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313796 +sa(dp313797 +g291130 +S'(artist after)' +p313798 +sg291132 +S'\n' +p313799 +sg291134 +S'"All in the Gay and Golden Weather"' +p313800 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313801 +sa(dp313802 +g291130 +S'(artist after)' +p313803 +sg291132 +S'\n' +p313804 +sg291134 +S'The Artist in the Country' +p313805 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313806 +sa(dp313807 +g291130 +S'(artist after)' +p313808 +sg291132 +S'\n' +p313809 +sg291134 +S'Summer in the Country' +p313810 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313811 +sa(dp313812 +g291130 +S'American, 1836 - 1910' +p313813 +sg291132 +S'(artist after)' +p313814 +sg291134 +S'On the Road to Lake George' +p313815 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313816 +sa(dp313817 +g291130 +S'(artist after)' +p313818 +sg291132 +S'\n' +p313819 +sg291134 +S'The Last Load' +p313820 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313821 +sa(dp313822 +g291130 +S'American, 1836 - 1910' +p313823 +sg291132 +S'(artist after)' +p313824 +sg291134 +S'The Picnic Excursion' +p313825 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313826 +sa(dp313827 +g291130 +S'American, 1836 - 1910' +p313828 +sg291132 +S'(artist after)' +p313829 +sg291134 +S'Danger Ahead' +p313830 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313831 +sa(dp313832 +g291130 +S'(artist after)' +p313833 +sg291132 +S'\n' +p313834 +sg291134 +S'A Quiet Day in the Woods' +p313835 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313836 +sa(dp313837 +g291130 +S'(artist after)' +p313838 +sg291132 +S'\n' +p313839 +sg291134 +S'"She Turned Her Face to the Window"' +p313840 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313841 +sa(dp313842 +g291130 +S'American, 1836 - 1910' +p313843 +sg291132 +S'(artist after)' +p313844 +sg291134 +S'"You Are Really Picturesque, My Love"' +p313845 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313846 +sa(dp313847 +g291130 +S'American, 1836 - 1910' +p313848 +sg291132 +S'(artist after)' +p313849 +sg291134 +S'Jessie Remained Alone at the Table' +p313850 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313851 +sa(dp313852 +g291130 +S'American, 1836 - 1910' +p313853 +sg291132 +S'(artist after)' +p313854 +sg291134 +S'"Orrin, Make Haste, I am Perishing"' +p313855 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313856 +sa(dp313857 +g291130 +S'American, 1836 - 1910' +p313858 +sg291132 +S'(artist after)' +p313859 +sg291134 +S'"I Cannot! It Would Be a Sin, a Fearful Sin"' +p313860 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313861 +sa(dp313862 +g291130 +S'American, 1836 - 1910' +p313863 +sg291132 +S'(artist after)' +p313864 +sg291134 +S'"Hi! H-o-o-o! He Done Come. Jumboloro Tell You Fust"' +p313865 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313866 +sa(dp313867 +g291130 +S'American, 1836 - 1910' +p313868 +sg291132 +S'(artist after)' +p313869 +sg291134 +S'"Come!"' +p313870 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313871 +sa(dp313872 +g291130 +S'American, 1836 - 1910' +p313873 +sg291132 +S'(artist after)' +p313874 +sg291134 +S'"I Call Them My Children - To Myself, Susan."' +p313875 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313876 +sa(dp313877 +g291130 +S'American, 1836 - 1910' +p313878 +sg291132 +S'(artist after)' +p313879 +sg291134 +S'Weary and Dissatisfied with Everything' +p313880 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313881 +sa(dp313882 +g291130 +S'American, 1836 - 1910' +p313883 +sg291132 +S'(artist after)' +p313884 +sg291134 +S'In Came a Storm of Wind, Rain and Spray - andPortia' +p313885 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313886 +sa(dp313887 +g291130 +S'American, 1836 - 1910' +p313888 +sg291132 +S'(artist after)' +p313889 +sg291134 +S"George Blake's Letter" +p313890 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313891 +sa(dp313892 +g291130 +S'American, 1836 - 1910' +p313893 +sg291132 +S'(artist after)' +p313894 +sg291134 +S'The Bright Side' +p313895 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313896 +sa(dp313897 +g291130 +S'American, 1836 - 1910' +p313898 +sg291132 +S'(artist after)' +p313899 +sg291134 +S'Swinging on a Birch Tree' +p313900 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313901 +sa(dp313902 +g291130 +S'American, 1836 - 1910' +p313903 +sg291132 +S'(artist after)' +p313904 +sg291134 +S'The Bird-Catchers' +p313905 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313906 +sa(dp313907 +g291130 +S'(artist after)' +p313908 +sg291132 +S'\n' +p313909 +sg291134 +S'Watching the Crows' +p313910 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313911 +sa(dp313912 +g291130 +S'American, 1836 - 1910' +p313913 +sg291132 +S'(artist after)' +p313914 +sg291134 +S'The Strawberry Bed' +p313915 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313916 +sa(dp313917 +g291130 +S'American, 1836 - 1910' +p313918 +sg291132 +S'(artist after)' +p313919 +sg291134 +S'Green Apples' +p313920 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313921 +sa(dp313922 +g291130 +S'American, 1836 - 1910' +p313923 +sg291132 +S'(artist after)' +p313924 +sg291134 +S'The Playmates' +p313925 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313926 +sa(dp313927 +g291130 +S'(artist after)' +p313928 +sg291132 +S'\n' +p313929 +sg291134 +S'The Midnight Coast' +p313930 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313931 +sa(dp313932 +g291130 +S'American, 1836 - 1910' +p313933 +sg291132 +S'(artist after)' +p313934 +sg291134 +S'Bob: "Hallo! What\'s Up Now? Are Your Babies in Here?"' +p313935 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313936 +sa(dp313937 +g291130 +S'American, 1836 - 1910' +p313938 +sg291132 +S'(artist after)' +p313939 +sg291134 +S'The Sower' +p313940 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313941 +sa(dp313942 +g291130 +S'(artist after)' +p313943 +sg291132 +S'\n' +p313944 +sg291134 +S'Pumpkins Among the Corn' +p313945 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313946 +sa(dp313947 +g291130 +S'American, 1836 - 1910' +p313948 +sg291132 +S'(artist after)' +p313949 +sg291134 +S'A Littoral Tile' +p313950 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313951 +sa(dp313952 +g291130 +S'(artist after)' +p313953 +sg291132 +S'\n' +p313954 +sg291134 +S'Gathering Wild Blackberries' +p313955 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313956 +sa(dp313957 +g291130 +S'American, 1836 - 1910' +p313958 +sg291132 +S'(artist after)' +p313959 +sg291134 +S'Spring Lamb' +p313960 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313961 +sa(dp313962 +g291130 +S'American, 1836 - 1910' +p313963 +sg291132 +S'(artist after)' +p313964 +sg291134 +S'"Bossy"' +p313965 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313966 +sa(dp313967 +g291130 +S'American, 1836 - 1910' +p313968 +sg291132 +S'(artist after)' +p313969 +sg291134 +S'The Match between Sophs and Freshmen - The Opening [top]' +p313970 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313971 +sa(dp313972 +g291130 +S'American, 1836 - 1910' +p313973 +sg291132 +S'(artist after)' +p313974 +sg291134 +S'Freshmen [lower left]' +p313975 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313976 +sa(dp313977 +g291130 +S'American, 1836 - 1910' +p313978 +sg291132 +S'(artist after)' +p313979 +sg291134 +S'Sophs [lower left center]' +p313980 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313981 +sa(dp313982 +g291130 +S'American, 1836 - 1910' +p313983 +sg291132 +S'(artist after)' +p313984 +sg291134 +S'Juniors [lower right center]' +p313985 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313986 +sa(dp313987 +g291130 +S'American, 1836 - 1910' +p313988 +sg291132 +S'(artist after)' +p313989 +sg291134 +S'Seniors [lower right]' +p313990 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313991 +sa(dp313992 +g291130 +S'American, 1836 - 1910' +p313993 +sg291132 +S'(artist after)' +p313994 +sg291134 +S'The Grand View at Camp Massachusetts, Near Concord, September 9, 1859' +p313995 +sg291136 +g27 +sg291137 +S'Artist Information (' +p313996 +sa(dp313997 +g291130 +S'American, 1836 - 1910' +p313998 +sg291132 +S'(artist after)' +p313999 +sg291134 +S'A Merry Christmas and Happy New Year' +p314000 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314001 +sa(dp314002 +g291130 +S'American, 1836 - 1910' +p314003 +sg291132 +S'(artist after)' +p314004 +sg291134 +S"Skating on the Ladies' Skating-Pond in the Central Park, New York" +p314005 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314006 +sa(dp314007 +g291130 +S'American, 1836 - 1910' +p314008 +sg291132 +S'(artist after)' +p314009 +sg291134 +S'The Drive in the Central Park, New York, September, 1860' +p314010 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314011 +sa(dp314012 +g291130 +S'American, 1836 - 1910' +p314013 +sg291132 +S'(artist after)' +p314014 +sg291134 +S'Thanksgiving Day, 1860 - The Two Great Classes of Society' +p314015 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314016 +sa(dp314017 +g291130 +S'American, 1836 - 1910' +p314018 +sg291132 +S'(artist after)' +p314019 +sg291134 +S'Seeing the Old Year Out - Watch Night' +p314020 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314021 +sa(dp314022 +g291130 +S'American, 1836 - 1910' +p314023 +sg291132 +S'(artist after)' +p314024 +sg291134 +S'The Inauguration of Abraham Lincoln as President of the United States, at the Capital, Washington, March 4, 1861' +p314025 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314026 +sa(dp314027 +g291134 +S'The Songs of War' +p314028 +sg291137 +S'Artist Information (' +p314029 +sg291130 +S'American, 1836 - 1910' +p314030 +sg291132 +S'(artist after)' +p314031 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00111/a001113b.jpg' +p314032 +sg291136 +g27 +sa(dp314033 +g291130 +S'American, 1836 - 1910' +p314034 +sg291132 +S'(artist after)' +p314035 +sg291134 +S'A Bivouac Fire on the Potomac' +p314036 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314037 +sa(dp314038 +g291130 +S'American, 1836 - 1910' +p314039 +sg291132 +S'(artist after)' +p314040 +sg291134 +S'Great Fair Given at the City Assembly Rooms, New York, December 1861, in Aid of the City Poor' +p314041 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314042 +sa(dp314043 +g291130 +S'American, 1828 - 1891' +p314044 +sg291132 +S'(artist after)' +p314045 +sg291134 +S'Our Army Before Yorktown, Virginia' +p314046 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314047 +sa(dp314048 +g291134 +S'News from the War' +p314049 +sg291137 +S'Artist Information (' +p314050 +sg291130 +S'American, 1836 - 1910' +p314051 +sg291132 +S'(artist after)' +p314052 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00111/a0011139.jpg' +p314053 +sg291136 +g27 +sa(dp314054 +g291130 +S'American, 1836 - 1910' +p314055 +sg291132 +S'(artist after)' +p314056 +sg291134 +S'The War for the Union, 1862 - A Cavalry Charge' +p314057 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314058 +sa(dp314059 +g291130 +S'American, 1836 - 1910' +p314060 +sg291132 +S'(artist after)' +p314061 +sg291134 +S'The War for the Union, 1862 - A Bayonet Charge' +p314062 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314063 +sa(dp314064 +g291134 +S'Our Women and the War' +p314065 +sg291137 +S'Artist Information (' +p314066 +sg291130 +S'American, 1836 - 1910' +p314067 +sg291132 +S'(artist after)' +p314068 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00111/a001113d.jpg' +p314069 +sg291136 +g27 +sa(dp314070 +g291130 +S'American, 1836 - 1910' +p314071 +sg291132 +S'(artist after)' +p314072 +sg291134 +S'Pay-Day in the Army of the Potomac' +p314073 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314074 +sa(dp314075 +g291130 +S'American, 1836 - 1910' +p314076 +sg291132 +S'(artist after)' +p314077 +sg291134 +S'The Great Russian Ball at the Academy of Music, November 5, 1863' +p314078 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314079 +sa(dp314080 +g291130 +S'American, 1836 - 1910' +p314081 +sg291132 +S'(artist after)' +p314082 +sg291134 +S'Halt of a Wagon Train' +p314083 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314084 +sa(dp314085 +g291130 +S'American, 1836 - 1910' +p314086 +sg291132 +S'(artist after)' +p314087 +sg291134 +S'Army of the Potomac - Sleeping on their Arms' +p314088 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314089 +sa(dp314090 +g291130 +S'American, 1836 - 1910' +p314091 +sg291132 +S'(artist after)' +p314092 +sg291134 +S'Homeward-Bound' +p314093 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314094 +sa(dp314095 +g291134 +S'1860-1870' +p314096 +sg291137 +S'Artist Information (' +p314097 +sg291130 +S'American, 1836 - 1910' +p314098 +sg291132 +S'(artist after)' +p314099 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ff88.jpg' +p314100 +sg291136 +g27 +sa(dp314101 +g291134 +S'Snap-the-Whip' +p314102 +sg291137 +S'Artist Information (' +p314103 +sg291130 +S'(artist after)' +p314104 +sg291132 +S'\n' +p314105 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ff85.jpg' +p314106 +sg291136 +g27 +sa(dp314107 +g291130 +S'(artist after)' +p314108 +sg291132 +S'\n' +p314109 +sg291134 +S'The Beach at Long Branch' +p314110 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314111 +sa(dp314112 +g291130 +S'(artist after)' +p314113 +sg291132 +S'\n' +p314114 +sg291134 +S'Cutting a Figure' +p314115 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314116 +sa(dp314117 +g291130 +S'American, 1836 - 1910' +p314118 +sg291132 +S'(artist after)' +p314119 +sg291134 +S'Opening Day in New York' +p314120 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314121 +sa(dp314122 +g291130 +S'American, 1836 - 1910' +p314123 +sg291132 +S'(artist after)' +p314124 +sg291134 +S'Thanksgiving Day - Hanging up the Musket [left]' +p314125 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314126 +sa(dp314127 +g291130 +S'American, 1836 - 1910' +p314128 +sg291132 +S'(artist after)' +p314129 +sg291134 +S'Thanksgiving Day - The Church Porch [right]' +p314130 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314131 +sa(dp314132 +g291130 +S'American, 1836 - 1910' +p314133 +sg291132 +S'(artist after)' +p314134 +sg291134 +S'Our National Winter Exercise-Skating' +p314135 +sg291136 +g27 +sg291137 +S'Artist Information (' +p314136 +sa(dp314137 +g291134 +S'Fantasy on a Magnificent Triumphal Artch' +p314138 +sg291137 +S'Giovanni Battista Piranesi' +p314139 +sg291130 +S'pen and reed pen and brown ink with brown wash on laid paper' +p314140 +sg291132 +S'1765' +p314141 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026d1.jpg' +p314142 +sg291136 +g27 +sa(dp314143 +g291134 +S'The Madonna and Child with Saint John the Baptist' +p314144 +sg291137 +S'Raphael' +p314145 +sg291130 +S'black chalk with traces of white chalk, outlines pricked for transfer; laid down' +p314146 +sg291132 +S'c. 1507' +p314147 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026de.jpg' +p314148 +sg291136 +g27 +sa(dp314149 +g291134 +S'Mrs. Francis Howard' +p314150 +sg291137 +S'Ambrose McEvoy' +p314151 +sg291130 +S'oil on canvas' +p314152 +sg291132 +S'c. 1916/1918' +p314153 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dd7.jpg' +p314154 +sg291136 +g27 +sa(dp314155 +g291130 +S'bronze' +p314156 +sg291132 +S'c. 1590/1600' +p314157 +sg291134 +S'The Adoration of the Shepherds' +p314158 +sg291136 +g27 +sg291137 +S'Paulus van Vianen I' +p314159 +sa(dp314160 +g291134 +S'Ship on the Touques' +p314161 +sg291137 +S'Eug\xc3\xa8ne Boudin' +p314162 +sg291130 +S'oil on wood' +p314163 +sg291132 +S'c. 1888/1895' +p314164 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005a62.jpg' +p314165 +sg291136 +g27 +sa(dp314166 +g291134 +S'Untitled (two women at the window)' +p314167 +sg291137 +S'Mark Rothko' +p314168 +sg291130 +S'oil on canvas' +p314169 +sg291132 +S'c. 1937' +p314170 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00012/a0001203.jpg' +p314171 +sg291136 +g27 +sa(dp314172 +g291134 +S'A Party in a Roman Villa [recto]' +p314173 +sg291137 +S'Pirro Ligorio' +p314174 +sg291130 +S'pen and brown ink on laid paper' +p314175 +sg291132 +S'unknown date\n' +p314176 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a0007569.jpg' +p314177 +sg291136 +g27 +sa(dp314178 +g291134 +S'Studies for the Rape of the Sabine Women [verso]' +p314179 +sg291137 +S'Pirro Ligorio' +p314180 +sg291130 +S'pen and brown ink on laid paper' +p314181 +sg291132 +S'unknown date\n' +p314182 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a000756a.jpg' +p314183 +sg291136 +g27 +sa(dp314184 +g291134 +S'Guardian Angel' +p314185 +sg291137 +S'Girolamo Imperiale I' +p314186 +sg291130 +S'etching with engraving' +p314187 +sg291132 +S'1622' +p314188 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c82f.jpg' +p314189 +sg291136 +g27 +sa(dp314190 +g291130 +S'charcoal in black (and gray?) on laid paper' +p314191 +sg291132 +S'c. 1901' +p314192 +sg291134 +S'Jimmy Corsini' +p314193 +sg291136 +g27 +sg291137 +S'Edward Hopper' +p314194 +sa(dp314195 +g291134 +S'Sheep at the Watering Place (Abreuvoir aux moutons)' +p314196 +sg291137 +S'Charles \xc3\x89mile Jacque' +p314197 +sg291130 +S'etching on imitation vellum paper' +p314198 +sg291132 +S'1888' +p314199 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f72.jpg' +p314200 +sg291136 +g27 +sa(dp314201 +g291134 +S'The Enrollment of the Troops' +p314202 +sg291137 +S'Jacques Callot' +p314203 +sg291130 +S'engraving' +p314204 +sg291132 +S'c. 1614' +p314205 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a9e.jpg' +p314206 +sg291136 +g27 +sa(dp314207 +g291134 +S'Untitled' +p314208 +sg291137 +S'Mark Rothko' +p314209 +sg291130 +S'oil on canvas' +p314210 +sg291132 +S'1947' +p314211 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a000107a.jpg' +p314212 +sg291136 +g27 +sa(dp314213 +g291134 +S'No. 22' +p314214 +sg291137 +S'Mark Rothko' +p314215 +sg291130 +S'oil on canvas' +p314216 +sg291132 +S'1948' +p314217 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014d4.jpg' +p314218 +sg291136 +g27 +sa(dp314219 +g291134 +S'No. 3' +p314220 +sg291137 +S'Mark Rothko' +p314221 +sg291130 +S'oil on canvas' +p314222 +sg291132 +S'1947' +p314223 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014bf.jpg' +p314224 +sg291136 +g27 +sa(dp314225 +g291134 +S'Untitled' +p314226 +sg291137 +S'Mark Rothko' +p314227 +sg291130 +S'oil on canvas' +p314228 +sg291132 +S'1948' +p314229 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014db.jpg' +p314230 +sg291136 +g27 +sa(dp314231 +g291134 +S'Fantasy at Dawn [recto]' +p314232 +sg291137 +S'Mark Rothko' +p314233 +sg291130 +S'oil on canvas' +p314234 +sg291132 +S'1946' +p314235 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014df.jpg' +p314236 +sg291136 +g27 +sa(dp314237 +g291134 +S'Fantasy at Dawn [verso]' +p314238 +sg291137 +S'Mark Rothko' +p314239 +sg291130 +S'oil on canvas' +p314240 +sg291132 +S'1947' +p314241 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014e0.jpg' +p314242 +sg291136 +g27 +sa(dp314243 +g291134 +S'Phalanx of the Mind' +p314244 +sg291137 +S'Mark Rothko' +p314245 +sg291130 +S'oil on canvas' +p314246 +sg291132 +S'1945' +p314247 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014f6.jpg' +p314248 +sg291136 +g27 +sa(dp314249 +g291134 +S'Ceremonial' +p314250 +sg291137 +S'Mark Rothko' +p314251 +sg291130 +S'oil on canvas' +p314252 +sg291132 +S'1945' +p314253 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001501.jpg' +p314254 +sg291136 +g27 +sa(dp314255 +g291134 +S'Sea Fantasy' +p314256 +sg291137 +S'Mark Rothko' +p314257 +sg291130 +S'oil on canvas' +p314258 +sg291132 +S'1946' +p314259 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014c9.jpg' +p314260 +sg291136 +g27 +sa(dp314261 +g291134 +S'Horizontal Vision' +p314262 +sg291137 +S'Mark Rothko' +p314263 +sg291130 +S'oil and chalk on canvas' +p314264 +sg291132 +S'1946' +p314265 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014b6.jpg' +p314266 +sg291136 +g27 +sa(dp314267 +g291134 +S'Aquatic Drama' +p314268 +sg291137 +S'Mark Rothko' +p314269 +sg291130 +S'oil on canvas' +p314270 +sg291132 +S'1946' +p314271 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00012/a0001204.jpg' +p314272 +sg291136 +g27 +sa(dp314273 +g291134 +S'Archaic Phantasy' +p314274 +sg291137 +S'Mark Rothko' +p314275 +sg291130 +S'oil on canvas' +p314276 +sg291132 +S'1945' +p314277 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a0001084.jpg' +p314278 +sg291136 +g27 +sa(dp314279 +g291134 +S'Personage Two' +p314280 +sg291137 +S'Mark Rothko' +p314281 +sg291130 +S'oil on canvas' +p314282 +sg291132 +S'1946' +p314283 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a000108a.jpg' +p314284 +sg291136 +g27 +sa(dp314285 +g291134 +S'Vision at End of Day' +p314286 +sg291137 +S'Mark Rothko' +p314287 +sg291130 +S'oil on canvas' +p314288 +sg291132 +S'1946' +p314289 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00012/a0001209.jpg' +p314290 +sg291136 +g27 +sa(dp314291 +g291134 +S'Untitled' +p314292 +sg291137 +S'Mark Rothko' +p314293 +sg291130 +S'oil on canvas' +p314294 +sg291132 +S'1947' +p314295 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014ec.jpg' +p314296 +sg291136 +g27 +sa(dp314297 +g291134 +S'Untitled' +p314298 +sg291137 +S'Mark Rothko' +p314299 +sg291130 +S'oil on canvas' +p314300 +sg291132 +S'1947' +p314301 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001518.jpg' +p314302 +sg291136 +g27 +sa(dp314303 +g291134 +S'Untitled' +p314304 +sg291137 +S'Mark Rothko' +p314305 +sg291130 +S'oil on canvas' +p314306 +sg291132 +S'1947' +p314307 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001522.jpg' +p314308 +sg291136 +g27 +sa(dp314309 +g291134 +S'Untitled' +p314310 +sg291137 +S'Mark Rothko' +p314311 +sg291130 +S'oil on canvas' +p314312 +sg291132 +S'1946' +p314313 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00012/a000120d.jpg' +p314314 +sg291136 +g27 +sa(dp314315 +g291134 +S'Untitled' +p314316 +sg291137 +S'Mark Rothko' +p314317 +sg291130 +S'oil on canvas' +p314318 +sg291132 +S'1947' +p314319 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a00016a2.jpg' +p314320 +sg291136 +g27 +sa(dp314321 +g291134 +S'Rural Scene' +p314322 +sg291137 +S'Mark Rothko' +p314323 +sg291130 +S'oil on canvas' +p314324 +sg291132 +S'c. 1936' +p314325 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053a0.jpg' +p314326 +sg291136 +g27 +sa(dp314327 +g291134 +S'Hierarchical Birds' +p314328 +sg291137 +S'Mark Rothko' +p314329 +sg291130 +S'oil on canvas' +p314330 +sg291132 +S'1944' +p314331 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014d5.jpg' +p314332 +sg291136 +g27 +sa(dp314333 +g291134 +S'Street Scene' +p314334 +sg291137 +S'Mark Rothko' +p314335 +sg291130 +S'oil on canvas' +p314336 +sg291132 +S'c. 1937' +p314337 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014d6.jpg' +p314338 +sg291136 +g27 +sa(dp314339 +g291134 +S'Birth of Cephalopods' +p314340 +sg291137 +S'Mark Rothko' +p314341 +sg291130 +S'oil on canvas' +p314342 +sg291132 +S'1944' +p314343 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014d7.jpg' +p314344 +sg291136 +g27 +sa(dp314345 +g291134 +S'Untitled (two seated women)' +p314346 +sg291137 +S'Mark Rothko' +p314347 +sg291130 +S'oil on canvas' +p314348 +sg291132 +S'c. 1934' +p314349 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053d3.jpg' +p314350 +sg291136 +g27 +sa(dp314351 +g291134 +S'Untitled (three women and a child with mannequins)' +p314352 +sg291137 +S'Mark Rothko' +p314353 +sg291130 +S'oil on canvas' +p314354 +sg291132 +S'1936/1937' +p314355 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053a1.jpg' +p314356 +sg291136 +g27 +sa(dp314357 +g291134 +S'The Proposal' +p314358 +sg291137 +S'Mark Rothko' +p314359 +sg291130 +S'oil on canvas' +p314360 +sg291132 +S'1932/1933' +p314361 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014d8.jpg' +p314362 +sg291136 +g27 +sa(dp314363 +g291134 +S'Interior' +p314364 +sg291137 +S'Mark Rothko' +p314365 +sg291130 +S'oil on hardboard' +p314366 +sg291132 +S'1936' +p314367 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053a2.jpg' +p314368 +sg291136 +g27 +sa(dp314369 +g291134 +S'Portrait of a Young Girl' +p314370 +sg291137 +S'Mark Rothko' +p314371 +sg291130 +S'oil on canvas on board' +p314372 +sg291132 +S'c. 1932' +p314373 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014d9.jpg' +p314374 +sg291136 +g27 +sa(dp314375 +g291134 +S'Woman Sewing' +p314376 +sg291137 +S'Mark Rothko' +p314377 +sg291130 +S'oil on hardboard' +p314378 +sg291132 +S'c. 1934' +p314379 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053a3.jpg' +p314380 +sg291136 +g27 +sa(dp314381 +g291134 +S'Seated Nude' +p314382 +sg291137 +S'Mark Rothko' +p314383 +sg291130 +S'oil on hardboard' +p314384 +sg291132 +S'c. 1934' +p314385 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014da.jpg' +p314386 +sg291136 +g27 +sa(dp314387 +g291134 +S'Untitled (String Quartet)' +p314388 +sg291137 +S'Mark Rothko' +p314389 +sg291130 +S'oil on hardboard' +p314390 +sg291132 +S'1935' +p314391 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014c0.jpg' +p314392 +sg291136 +g27 +sa(dp314393 +g291134 +S'Untitled' +p314394 +sg291137 +S'Mark Rothko' +p314395 +sg291130 +S'oil on canvas' +p314396 +sg291132 +S'c. 1941' +p314397 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014c1.jpg' +p314398 +sg291136 +g27 +sa(dp314399 +g291134 +S'Untitled' +p314400 +sg291137 +S'Mark Rothko' +p314401 +sg291130 +S'oil on canvas' +p314402 +sg291132 +S'1940/1941' +p314403 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014c2.jpg' +p314404 +sg291136 +g27 +sa(dp314405 +g291134 +S'Untitled' +p314406 +sg291137 +S'Mark Rothko' +p314407 +sg291130 +S'oil on canvas' +p314408 +sg291132 +S'1941/1942' +p314409 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014c3.jpg' +p314410 +sg291136 +g27 +sa(dp314411 +g291134 +S'Untitled' +p314412 +sg291137 +S'Mark Rothko' +p314413 +sg291130 +S'oil on canvas' +p314414 +sg291132 +S'1941/1942' +p314415 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00012/a0001201.jpg' +p314416 +sg291136 +g27 +sa(dp314417 +g291134 +S'Untitled' +p314418 +sg291137 +S'Mark Rothko' +p314419 +sg291130 +S'oil on canvas' +p314420 +sg291132 +S'1941/1942' +p314421 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014c4.jpg' +p314422 +sg291136 +g27 +sa(dp314423 +g291134 +S'Untitled' +p314424 +sg291137 +S'Mark Rothko' +p314425 +sg291130 +S'oil on canvas' +p314426 +sg291132 +S'1940/1941' +p314427 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014c5.jpg' +p314428 +sg291136 +g27 +sa(dp314429 +g291134 +S'Untitled (still life in front of window)' +p314430 +sg291137 +S'Mark Rothko' +p314431 +sg291130 +S'oil on canvas' +p314432 +sg291132 +S'1937/1938' +p314433 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014c6.jpg' +p314434 +sg291136 +g27 +sa(dp314435 +g291134 +S'Contemplation' +p314436 +sg291137 +S'Mark Rothko' +p314437 +sg291130 +S'oil on canvas' +p314438 +sg291132 +S'1937/1938' +p314439 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014c7.jpg' +p314440 +sg291136 +g27 +sa(dp314441 +g291134 +S'Man Smoking' +p314442 +sg291137 +S'Mark Rothko' +p314443 +sg291130 +S'oil on canvas' +p314444 +sg291132 +S'1933' +p314445 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014c8.jpg' +p314446 +sg291136 +g27 +sa(dp314447 +g291134 +S'Nude' +p314448 +sg291137 +S'Mark Rothko' +p314449 +sg291130 +S'oil on canvas' +p314450 +sg291132 +S'1933' +p314451 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053a4.jpg' +p314452 +sg291136 +g27 +sa(dp314453 +g291134 +S'Untitled (three girls in a landscape)' +p314454 +sg291137 +S'Mark Rothko' +p314455 +sg291130 +S'oil on canvas' +p314456 +sg291132 +S'1933/1934' +p314457 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014dc.jpg' +p314458 +sg291136 +g27 +sa(dp314459 +g291134 +S'Untitled (man and woman holding hands)' +p314460 +sg291137 +S'Mark Rothko' +p314461 +sg291130 +S'oil on canvas' +p314462 +sg291132 +S'1936/1937' +p314463 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053d4.jpg' +p314464 +sg291136 +g27 +sa(dp314465 +g291134 +S'Irene' +p314466 +sg291137 +S'Mark Rothko' +p314467 +sg291130 +S'oil on canvas' +p314468 +sg291132 +S'1933' +p314469 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053d5.jpg' +p314470 +sg291136 +g27 +sa(dp314471 +g291134 +S'Portrait' +p314472 +sg291137 +S'Mark Rothko' +p314473 +sg291130 +S'oil on canvas' +p314474 +sg291132 +S'1936' +p314475 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014dd.jpg' +p314476 +sg291136 +g27 +sa(dp314477 +g291134 +S'Street Scene' +p314478 +sg291137 +S'Mark Rothko' +p314479 +sg291130 +S'oil on canvas' +p314480 +sg291132 +S'1936/1937' +p314481 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014de.jpg' +p314482 +sg291136 +g27 +sa(dp314483 +g291134 +S'Untitled (sculptress)' +p314484 +sg291137 +S'Mark Rothko' +p314485 +sg291130 +S'oil on canvas' +p314486 +sg291132 +S'1934/1935' +p314487 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053a5.jpg' +p314488 +sg291136 +g27 +sa(dp314489 +g291134 +S'Woman and Cat' +p314490 +sg291137 +S'Mark Rothko' +p314491 +sg291130 +S'oil on canvas' +p314492 +sg291132 +S'1933' +p314493 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053a6.jpg' +p314494 +sg291136 +g27 +sa(dp314495 +g291134 +S'Untitled (woman and girl by a window)' +p314496 +sg291137 +S'Mark Rothko' +p314497 +sg291130 +S'oil on canvas' +p314498 +sg291132 +S'1936/1937' +p314499 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053d6.jpg' +p314500 +sg291136 +g27 +sa(dp314501 +g291134 +S'Untitled (figure lying on park bench)' +p314502 +sg291137 +S'Mark Rothko' +p314503 +sg291130 +S'oil on canvas' +p314504 +sg291132 +S'c. 1936' +p314505 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053a7.jpg' +p314506 +sg291136 +g27 +sa(dp314507 +g291134 +S'Untitled (reclining nude)' +p314508 +sg291137 +S'Mark Rothko' +p314509 +sg291130 +S'oil on canvas' +p314510 +sg291132 +S'1937/1938' +p314511 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053a8.jpg' +p314512 +sg291136 +g27 +sa(dp314513 +g291134 +S'Figure Composition' +p314514 +sg291137 +S'Mark Rothko' +p314515 +sg291130 +S'oil on canvas' +p314516 +sg291132 +S'1936/1937' +p314517 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014e1.jpg' +p314518 +sg291136 +g27 +sa(dp314519 +g291134 +S'Untitled (two women before a cityscape)' +p314520 +sg291137 +S'Mark Rothko' +p314521 +sg291130 +S'oil on canvas' +p314522 +sg291132 +S'1936/1937' +p314523 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053a9.jpg' +p314524 +sg291136 +g27 +sa(dp314525 +g291134 +S'Untitled (man and two women in a pastoral setting)' +p314526 +sg291137 +S'Mark Rothko' +p314527 +sg291130 +S'oil and graphite on canvas' +p314528 +sg291132 +S'c. 1940' +p314529 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014e2.jpg' +p314530 +sg291136 +g27 +sa(dp314531 +g291134 +S'The Party' +p314532 +sg291137 +S'Mark Rothko' +p314533 +sg291130 +S'oil on canvas' +p314534 +sg291132 +S'1938' +p314535 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014e3.jpg' +p314536 +sg291136 +g27 +sa(dp314537 +g291134 +S'Untitled (women in a hat shop)' +p314538 +sg291137 +S'Mark Rothko' +p314539 +sg291130 +S'oil on canvas' +p314540 +sg291132 +S'c. 1936' +p314541 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053d7.jpg' +p314542 +sg291136 +g27 +sa(dp314543 +g291134 +S'Untitled (three women)' +p314544 +sg291137 +S'Mark Rothko' +p314545 +sg291130 +S'oil on canvas' +p314546 +sg291132 +S'c. 1935' +p314547 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014e4.jpg' +p314548 +sg291136 +g27 +sa(dp314549 +g291134 +S'Untitled (woman with sculpture)' +p314550 +sg291137 +S'Mark Rothko' +p314551 +sg291130 +S'oil on linen' +p314552 +sg291132 +S'1934/1935' +p314553 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053aa.jpg' +p314554 +sg291136 +g27 +sa(dp314555 +g291134 +S'Landscape' +p314556 +sg291137 +S'Mark Rothko' +p314557 +sg291130 +S'oil and graphite on canvas' +p314558 +sg291132 +S'1944' +p314559 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014e5.jpg' +p314560 +sg291136 +g27 +sa(dp314561 +g291134 +S'Untitled' +p314562 +sg291137 +S'Mark Rothko' +p314563 +sg291130 +S'oil on canvas' +p314564 +sg291132 +S'1942' +p314565 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00012/a0001202.jpg' +p314566 +sg291136 +g27 +sa(dp314567 +g291134 +S'Untitled' +p314568 +sg291137 +S'Mark Rothko' +p314569 +sg291130 +S'oil and chalk on canvas' +p314570 +sg291132 +S'1943' +p314571 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014f7.jpg' +p314572 +sg291136 +g27 +sa(dp314573 +g291134 +S'Untitled' +p314574 +sg291137 +S'Mark Rothko' +p314575 +sg291130 +S'oil on canvas' +p314576 +sg291132 +S'1944' +p314577 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014f8.jpg' +p314578 +sg291136 +g27 +sa(dp314579 +g291134 +S'Untitled' +p314580 +sg291137 +S'Mark Rothko' +p314581 +sg291130 +S'oil on canvas' +p314582 +sg291132 +S'1943' +p314583 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014f9.jpg' +p314584 +sg291136 +g27 +sa(dp314585 +g291134 +S'Untitled' +p314586 +sg291137 +S'Mark Rothko' +p314587 +sg291130 +S'oil on canvas' +p314588 +sg291132 +S'1945' +p314589 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014fa.jpg' +p314590 +sg291136 +g27 +sa(dp314591 +g291134 +S'Untitled' +p314592 +sg291137 +S'Mark Rothko' +p314593 +sg291130 +S'oil on canvas' +p314594 +sg291132 +S'1946' +p314595 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014fb.jpg' +p314596 +sg291136 +g27 +sa(dp314597 +g291134 +S'Memory' +p314598 +sg291137 +S'Mark Rothko' +p314599 +sg291130 +S'oil on canvas' +p314600 +sg291132 +S'1946' +p314601 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014fc.jpg' +p314602 +sg291136 +g27 +sa(dp314603 +g291134 +S'Untitled' +p314604 +sg291137 +S'Mark Rothko' +p314605 +sg291130 +S'oil on canvas' +p314606 +sg291132 +S'1946' +p314607 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014fd.jpg' +p314608 +sg291136 +g27 +sa(dp314609 +g291134 +S'Untitled' +p314610 +sg291137 +S'Mark Rothko' +p314611 +sg291130 +S'oil on canvas' +p314612 +sg291132 +S'1945/1946' +p314613 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014fe.jpg' +p314614 +sg291136 +g27 +sa(dp314615 +g291134 +S'Untitled' +p314616 +sg291137 +S'Mark Rothko' +p314617 +sg291130 +S'oil on canvas' +p314618 +sg291132 +S'1945/1946' +p314619 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014ff.jpg' +p314620 +sg291136 +g27 +sa(dp314621 +g291134 +S'The Source' +p314622 +sg291137 +S'Mark Rothko' +p314623 +sg291130 +S'oil on canvas' +p314624 +sg291132 +S'1945/1946' +p314625 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001500.jpg' +p314626 +sg291136 +g27 +sa(dp314627 +g291134 +S'Untitled' +p314628 +sg291137 +S'Mark Rothko' +p314629 +sg291130 +S'oil on canvas' +p314630 +sg291132 +S'1945' +p314631 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001502.jpg' +p314632 +sg291136 +g27 +sa(dp314633 +g291134 +S'Vibrations of Aurora' +p314634 +sg291137 +S'Mark Rothko' +p314635 +sg291130 +S'oil and chalk on canvas' +p314636 +sg291132 +S'1944' +p314637 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001503.jpg' +p314638 +sg291136 +g27 +sa(dp314639 +g291134 +S'Olympian Play' +p314640 +sg291137 +S'Mark Rothko' +p314641 +sg291130 +S'oil on canvas' +p314642 +sg291132 +S'1943/1944' +p314643 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001504.jpg' +p314644 +sg291136 +g27 +sa(dp314645 +g291134 +S'Untitled' +p314646 +sg291137 +S'Mark Rothko' +p314647 +sg291130 +S'oil and charcoal on canvas' +p314648 +sg291132 +S'1945' +p314649 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001505.jpg' +p314650 +sg291136 +g27 +sa(dp314651 +g291134 +S'Sacrificial Moment' +p314652 +sg291137 +S'Mark Rothko' +p314653 +sg291130 +S'oil on canvas' +p314654 +sg291132 +S'1945' +p314655 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001506.jpg' +p314656 +sg291136 +g27 +sa(dp314657 +g291134 +S'Untitled' +p314658 +sg291137 +S'Mark Rothko' +p314659 +sg291130 +S'oil and tempera on canvas' +p314660 +sg291132 +S'1945/1946' +p314661 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001507.jpg' +p314662 +sg291136 +g27 +sa(dp314663 +g291134 +S'Untitled' +p314664 +sg291137 +S'Mark Rothko' +p314665 +sg291130 +S'oil on canvas' +p314666 +sg291132 +S'1947' +p314667 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001508.jpg' +p314668 +sg291136 +g27 +sa(dp314669 +g291134 +S'Untitled' +p314670 +sg291137 +S'Mark Rothko' +p314671 +sg291130 +S'oil on canvas' +p314672 +sg291132 +S'1947' +p314673 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014b4.jpg' +p314674 +sg291136 +g27 +sa(dp314675 +g291134 +S'Untitled' +p314676 +sg291137 +S'Mark Rothko' +p314677 +sg291130 +S'oil on canvas' +p314678 +sg291132 +S'1948' +p314679 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014b5.jpg' +p314680 +sg291136 +g27 +sa(dp314681 +g291134 +S'Untitled' +p314682 +sg291137 +S'Mark Rothko' +p314683 +sg291130 +S'oil on canvas' +p314684 +sg291132 +S'1947' +p314685 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001509.jpg' +p314686 +sg291136 +g27 +sa(dp314687 +g291134 +S'Untitled' +p314688 +sg291137 +S'Mark Rothko' +p314689 +sg291130 +S'oil on canvas' +p314690 +sg291132 +S'1946' +p314691 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014ca.jpg' +p314692 +sg291136 +g27 +sa(dp314693 +g291134 +S'Untitled' +p314694 +sg291137 +S'Mark Rothko' +p314695 +sg291130 +S'oil on canvas' +p314696 +sg291132 +S'1947' +p314697 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014cb.jpg' +p314698 +sg291136 +g27 +sa(dp314699 +g291134 +S'Untitled' +p314700 +sg291137 +S'Mark Rothko' +p314701 +sg291130 +S'oil on canvas' +p314702 +sg291132 +S'1947' +p314703 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014cc.jpg' +p314704 +sg291136 +g27 +sa(dp314705 +g291134 +S'Untitled' +p314706 +sg291137 +S'Mark Rothko' +p314707 +sg291130 +S'oil on canvas' +p314708 +sg291132 +S'1946' +p314709 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014cd.jpg' +p314710 +sg291136 +g27 +sa(dp314711 +g291134 +S'Untitled' +p314712 +sg291137 +S'Mark Rothko' +p314713 +sg291130 +S'oil on canvas' +p314714 +sg291132 +S'1947' +p314715 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014ce.jpg' +p314716 +sg291136 +g27 +sa(dp314717 +g291134 +S'Untitled' +p314718 +sg291137 +S'Mark Rothko' +p314719 +sg291130 +S'oil on canvas' +p314720 +sg291132 +S'1945' +p314721 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014cf.jpg' +p314722 +sg291136 +g27 +sa(dp314723 +g291134 +S'Untitled' +p314724 +sg291137 +S'Mark Rothko' +p314725 +sg291130 +S'oil on canvas' +p314726 +sg291132 +S'1945' +p314727 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014d0.jpg' +p314728 +sg291136 +g27 +sa(dp314729 +g291134 +S'Untitled' +p314730 +sg291137 +S'Mark Rothko' +p314731 +sg291130 +S'oil on canvas' +p314732 +sg291132 +S'1945' +p314733 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014d1.jpg' +p314734 +sg291136 +g27 +sa(dp314735 +g291134 +S'Untitled' +p314736 +sg291137 +S'Mark Rothko' +p314737 +sg291130 +S'oil on canvas' +p314738 +sg291132 +S'1945' +p314739 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014d2.jpg' +p314740 +sg291136 +g27 +sa(dp314741 +g291134 +S'Untitled' +p314742 +sg291137 +S'Mark Rothko' +p314743 +sg291130 +S'oil on canvas' +p314744 +sg291132 +S'1945' +p314745 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014d3.jpg' +p314746 +sg291136 +g27 +sa(dp314747 +g291134 +S'Untitled (girl with pigtails)' +p314748 +sg291137 +S'Mark Rothko' +p314749 +sg291130 +S'oil on canvas' +p314750 +sg291132 +S'c. 1934' +p314751 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014e6.jpg' +p314752 +sg291136 +g27 +sa(dp314753 +g291134 +S'Head of Bayard' +p314754 +sg291137 +S'Mark Rothko' +p314755 +sg291130 +S'oil on linen' +p314756 +sg291132 +S'c. 1932' +p314757 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014e7.jpg' +p314758 +sg291136 +g27 +sa(dp314759 +g291134 +S'Untitled (woman arranging flowers)' +p314760 +sg291137 +S'Mark Rothko' +p314761 +sg291130 +S'oil on canvas' +p314762 +sg291132 +S'c. 1935' +p314763 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053d8.jpg' +p314764 +sg291136 +g27 +sa(dp314765 +g291134 +S'The Pugilist' +p314766 +sg291137 +S'Mark Rothko' +p314767 +sg291130 +S'oil on canvas' +p314768 +sg291132 +S'1933' +p314769 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014e8.jpg' +p314770 +sg291136 +g27 +sa(dp314771 +g291134 +S'Untitled (three nudes)' +p314772 +sg291137 +S'Mark Rothko' +p314773 +sg291130 +S'oil on black cloth' +p314774 +sg291132 +S'1933/1934' +p314775 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014e9.jpg' +p314776 +sg291136 +g27 +sa(dp314777 +g291134 +S'Mother and Child' +p314778 +sg291137 +S'Mark Rothko' +p314779 +sg291130 +S'oil on canvas' +p314780 +sg291132 +S'c. 1934' +p314781 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014ea.jpg' +p314782 +sg291136 +g27 +sa(dp314783 +g291134 +S'Music' +p314784 +sg291137 +S'Mark Rothko' +p314785 +sg291130 +S'oil on canvas' +p314786 +sg291132 +S'1936' +p314787 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053ab.jpg' +p314788 +sg291136 +g27 +sa(dp314789 +g291134 +S'Family' +p314790 +sg291137 +S'Mark Rothko' +p314791 +sg291130 +S'oil on canvas' +p314792 +sg291132 +S'c. 1936' +p314793 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053ac.jpg' +p314794 +sg291136 +g27 +sa(dp314795 +g291134 +S'Woman Reading' +p314796 +sg291137 +S'Mark Rothko' +p314797 +sg291130 +S'oil on canvas' +p314798 +sg291132 +S'c. 1933' +p314799 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014eb.jpg' +p314800 +sg291136 +g27 +sa(dp314801 +g291134 +S'Minna [or] The Blue Dress' +p314802 +sg291137 +S'Mark Rothko' +p314803 +sg291130 +S'oil on linen' +p314804 +sg291132 +S'c. 1932' +p314805 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014bd.jpg' +p314806 +sg291136 +g27 +sa(dp314807 +g291134 +S'Untitled (man with green face)' +p314808 +sg291137 +S'Mark Rothko' +p314809 +sg291130 +S'oil on canvas' +p314810 +sg291132 +S'1934/1935' +p314811 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a000107b.jpg' +p314812 +sg291136 +g27 +sa(dp314813 +g291134 +S'Seated Woman' +p314814 +sg291137 +S'Mark Rothko' +p314815 +sg291130 +S'oil on canvas' +p314816 +sg291132 +S'1933' +p314817 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a000107c.jpg' +p314818 +sg291136 +g27 +sa(dp314819 +g291134 +S'Untitled' +p314820 +sg291137 +S'Mark Rothko' +p314821 +sg291130 +S'oil on canvas' +p314822 +sg291132 +S'1945/1946' +p314823 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a000107d.jpg' +p314824 +sg291136 +g27 +sa(dp314825 +g291134 +S'Untitled' +p314826 +sg291137 +S'Mark Rothko' +p314827 +sg291130 +S'oil on canvas' +p314828 +sg291132 +S'1945/1946' +p314829 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a000107e.jpg' +p314830 +sg291136 +g27 +sa(dp314831 +g291134 +S'Untitled' +p314832 +sg291137 +S'Mark Rothko' +p314833 +sg291130 +S'oil on canvas' +p314834 +sg291132 +S'1942' +p314835 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053d0.jpg' +p314836 +sg291136 +g27 +sa(dp314837 +g291134 +S'Untitled' +p314838 +sg291137 +S'Mark Rothko' +p314839 +sg291130 +S'oil on canvas' +p314840 +sg291132 +S'1942' +p314841 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a000107f.jpg' +p314842 +sg291136 +g27 +sa(dp314843 +g291134 +S'Untitled' +p314844 +sg291137 +S'Mark Rothko' +p314845 +sg291130 +S'oil on canvas' +p314846 +sg291132 +S'1942' +p314847 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a0001080.jpg' +p314848 +sg291136 +g27 +sa(dp314849 +g291134 +S'The Omen of the Eagle' +p314850 +sg291137 +S'Mark Rothko' +p314851 +sg291130 +S'oil and graphite on canvas' +p314852 +sg291132 +S'1942' +p314853 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a0001081.jpg' +p314854 +sg291136 +g27 +sa(dp314855 +g291134 +S'Untitled' +p314856 +sg291137 +S'Mark Rothko' +p314857 +sg291130 +S'oil on canvas' +p314858 +sg291132 +S'1943/1944' +p314859 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a0001082.jpg' +p314860 +sg291136 +g27 +sa(dp314861 +g291134 +S'Untitled' +p314862 +sg291137 +S'Mark Rothko' +p314863 +sg291130 +S'oil on canvas' +p314864 +sg291132 +S'1942' +p314865 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a0001083.jpg' +p314866 +sg291136 +g27 +sa(dp314867 +g291134 +S'Untitled (head)' +p314868 +sg291137 +S'Mark Rothko' +p314869 +sg291130 +S'oil on canvas' +p314870 +sg291132 +S'1938/1941' +p314871 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00012/a0001205.jpg' +p314872 +sg291136 +g27 +sa(dp314873 +g291134 +S'Untitled (female nude standing by a fireplace)' +p314874 +sg291137 +S'Mark Rothko' +p314875 +sg291130 +S'oil on canvas' +p314876 +sg291132 +S'1937/1938' +p314877 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00012/a0001206.jpg' +p314878 +sg291136 +g27 +sa(dp314879 +g291134 +S'Untitled (four figures in a plaza)' +p314880 +sg291137 +S'Mark Rothko' +p314881 +sg291130 +S'oil on linen' +p314882 +sg291132 +S'1935/1939' +p314883 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053d1.jpg' +p314884 +sg291136 +g27 +sa(dp314885 +g291134 +S'Untitled (subway)' +p314886 +sg291137 +S'Mark Rothko' +p314887 +sg291130 +S'oil on canvas' +p314888 +sg291132 +S'c. 1937' +p314889 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a0001085.jpg' +p314890 +sg291136 +g27 +sa(dp314891 +g291134 +S'Untitled (still life with vase and two statues)' +p314892 +sg291137 +S'Mark Rothko' +p314893 +sg291130 +S'oil on linen' +p314894 +sg291132 +S'1937/1938' +p314895 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a0001086.jpg' +p314896 +sg291136 +g27 +sa(dp314897 +g291134 +S'Untitled (nude)' +p314898 +sg291137 +S'Mark Rothko' +p314899 +sg291130 +S'oil on canvas' +p314900 +sg291132 +S'1937/1938' +p314901 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a0001087.jpg' +p314902 +sg291136 +g27 +sa(dp314903 +g291134 +S'Untitled (four figures in a plaza)' +p314904 +sg291137 +S'Mark Rothko' +p314905 +sg291130 +S'oil on canvas' +p314906 +sg291132 +S'c. 1937' +p314907 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a000539f.jpg' +p314908 +sg291136 +g27 +sa(dp314909 +g291134 +S'Untitled (still life) [recto]' +p314910 +sg291137 +S'Mark Rothko' +p314911 +sg291130 +S'oil on canvas' +p314912 +sg291132 +S'c. 1938' +p314913 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00012/a0001207.jpg' +p314914 +sg291136 +g27 +sa(dp314915 +g291134 +S'Untitled (nude) [verso]' +p314916 +sg291137 +S'Mark Rothko' +p314917 +sg291130 +S'oil on canvas' +p314918 +sg291132 +S'1937/1938' +p314919 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a0001088.jpg' +p314920 +sg291136 +g27 +sa(dp314921 +g291134 +S'Untitled (woman standing by a window)' +p314922 +sg291137 +S'Mark Rothko' +p314923 +sg291130 +S'oil on linen' +p314924 +sg291132 +S'1937/1938' +p314925 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00012/a0001208.jpg' +p314926 +sg291136 +g27 +sa(dp314927 +g291134 +S'Antigone' +p314928 +sg291137 +S'Mark Rothko' +p314929 +sg291130 +S'oil and charcoal on canvas' +p314930 +sg291132 +S'c. 1941' +p314931 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a0001089.jpg' +p314932 +sg291136 +g27 +sa(dp314933 +g291134 +S'Untitled' +p314934 +sg291137 +S'Mark Rothko' +p314935 +sg291130 +S'oil on canvas' +p314936 +sg291132 +S'1948' +p314937 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a000108b.jpg' +p314938 +sg291136 +g27 +sa(dp314939 +g291134 +S'Untitled (musicians)' +p314940 +sg291137 +S'Mark Rothko' +p314941 +sg291130 +S'oil on hardboard' +p314942 +sg291132 +S'1935' +p314943 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a000108c.jpg' +p314944 +sg291136 +g27 +sa(dp314945 +g291134 +S'Untitled (street scene with walking man)' +p314946 +sg291137 +S'Mark Rothko' +p314947 +sg291130 +S'oil on hardboard' +p314948 +sg291132 +S'c. 1934' +p314949 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053d2.jpg' +p314950 +sg291136 +g27 +sa(dp314951 +g291134 +S'Untitled' +p314952 +sg291137 +S'Mark Rothko' +p314953 +sg291130 +S'oil on canvas' +p314954 +sg291132 +S'1942' +p314955 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a000108d.jpg' +p314956 +sg291136 +g27 +sa(dp314957 +g291134 +S'Untitled' +p314958 +sg291137 +S'Mark Rothko' +p314959 +sg291130 +S'oil on canvas' +p314960 +sg291132 +S'1943/1944' +p314961 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00010/a000108e.jpg' +p314962 +sg291136 +g27 +sa(dp314963 +g291134 +S'Untitled' +p314964 +sg291137 +S'Mark Rothko' +p314965 +sg291130 +S'oil on canvas' +p314966 +sg291132 +S'1945' +p314967 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a000150a.jpg' +p314968 +sg291136 +g27 +sa(dp314969 +g291134 +S'Untitled' +p314970 +sg291137 +S'Mark Rothko' +p314971 +sg291130 +S'oil on canvas' +p314972 +sg291132 +S'1944' +p314973 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a000150b.jpg' +p314974 +sg291136 +g27 +sa(dp314975 +g291134 +S'Untitled' +p314976 +sg291137 +S'Mark Rothko' +p314977 +sg291130 +S'oil on canvas' +p314978 +sg291132 +S'1945' +p314979 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a000150c.jpg' +p314980 +sg291136 +g27 +sa(dp314981 +g291134 +S'The Omen' +p314982 +sg291137 +S'Mark Rothko' +p314983 +sg291130 +S'oil on canvas' +p314984 +sg291132 +S'1943' +p314985 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a000150d.jpg' +p314986 +sg291136 +g27 +sa(dp314987 +g291134 +S'Untitled' +p314988 +sg291137 +S'Mark Rothko' +p314989 +sg291130 +S'oil on canvas' +p314990 +sg291132 +S'1945' +p314991 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a000150e.jpg' +p314992 +sg291136 +g27 +sa(dp314993 +g291134 +S'Underground Fantasy' +p314994 +sg291137 +S'Mark Rothko' +p314995 +sg291130 +S'oil on canvas' +p314996 +sg291132 +S'c. 1940' +p314997 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a000150f.jpg' +p314998 +sg291136 +g27 +sa(dp314999 +g291134 +S'No. 2' +p315000 +sg291137 +S'Mark Rothko' +p315001 +sg291130 +S'oil on canvas' +p315002 +sg291132 +S'1947' +p315003 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001510.jpg' +p315004 +sg291136 +g27 +sa(dp315005 +g291134 +S'No. 18' +p315006 +sg291137 +S'Mark Rothko' +p315007 +sg291130 +S'oil on canvas' +p315008 +sg291132 +S'1946' +p315009 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001511.jpg' +p315010 +sg291136 +g27 +sa(dp315011 +g291134 +S'No. 5' +p315012 +sg291137 +S'Mark Rothko' +p315013 +sg291130 +S'oil, acrylic and mixed media on canvas' +p315014 +sg291132 +S'1964' +p315015 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001512.jpg' +p315016 +sg291136 +g27 +sa(dp315017 +g291134 +S'No. 7' +p315018 +sg291137 +S'Mark Rothko' +p315019 +sg291130 +S'mixed media on canvas' +p315020 +sg291132 +S'1964' +p315021 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001513.jpg' +p315022 +sg291136 +g27 +sa(dp315023 +g291134 +S'Untitled' +p315024 +sg291137 +S'Mark Rothko' +p315025 +sg291130 +S'mixed media on canvas' +p315026 +sg291132 +S'1953' +p315027 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001514.jpg' +p315028 +sg291136 +g27 +sa(dp315029 +g291134 +S'No. 10' +p315030 +sg291137 +S'Mark Rothko' +p315031 +sg291130 +S'oil on canvas' +p315032 +sg291132 +S'1948' +p315033 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001515.jpg' +p315034 +sg291136 +g27 +sa(dp315035 +g291134 +S'Untitled' +p315036 +sg291137 +S'Mark Rothko' +p315037 +sg291130 +S'oil and mixed media on canvas' +p315038 +sg291132 +S'1964' +p315039 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001516.jpg' +p315040 +sg291136 +g27 +sa(dp315041 +g291134 +S'Untitled' +p315042 +sg291137 +S'Mark Rothko' +p315043 +sg291130 +S'oil on canvas' +p315044 +sg291132 +S'1949' +p315045 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00011/a00011ff.jpg' +p315046 +sg291136 +g27 +sa(dp315047 +g291134 +S'No. 8' +p315048 +sg291137 +S'Mark Rothko' +p315049 +sg291130 +S'oil, acrylic and mixed media on canvas' +p315050 +sg291132 +S'1964' +p315051 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001517.jpg' +p315052 +sg291136 +g27 +sa(dp315053 +g291134 +S'No. 6 (?)' +p315054 +sg291137 +S'Mark Rothko' +p315055 +sg291130 +S'oil, acrylic and mixed media on canvas' +p315056 +sg291132 +S'1964' +p315057 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014ed.jpg' +p315058 +sg291136 +g27 +sa(dp315059 +g291134 +S'Untitled' +p315060 +sg291137 +S'Mark Rothko' +p315061 +sg291130 +S'oil on canvas' +p315062 +sg291132 +S'1957' +p315063 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00012/a000120a.jpg' +p315064 +sg291136 +g27 +sa(dp315065 +g291134 +S'No. 17 [or] No. 15' +p315066 +sg291137 +S'Mark Rothko' +p315067 +sg291130 +S'oil on canvas' +p315068 +sg291132 +S'1949' +p315069 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014ee.jpg' +p315070 +sg291136 +g27 +sa(dp315071 +g291134 +S'No. 9' +p315072 +sg291137 +S'Mark Rothko' +p315073 +sg291130 +S'oil and mixed media on canvas' +p315074 +sg291132 +S'1948' +p315075 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014ef.jpg' +p315076 +sg291136 +g27 +sa(dp315077 +g291134 +S'No. 7 [or] No. 11' +p315078 +sg291137 +S'Mark Rothko' +p315079 +sg291130 +S'oil on canvas' +p315080 +sg291132 +S'1949' +p315081 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014f0.jpg' +p315082 +sg291136 +g27 +sa(dp315083 +g291134 +S'No. 10' +p315084 +sg291137 +S'Mark Rothko' +p315085 +sg291130 +S'oil on canvas' +p315086 +sg291132 +S'1949' +p315087 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014f1.jpg' +p315088 +sg291136 +g27 +sa(dp315089 +g291134 +S'Untitled' +p315090 +sg291137 +S'Mark Rothko' +p315091 +sg291130 +S'oil, acrylic and mixed media on canvas' +p315092 +sg291132 +S'1958, reworked 1964/1965' +p315093 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014f2.jpg' +p315094 +sg291136 +g27 +sa(dp315095 +g291134 +S'No. 8' +p315096 +sg291137 +S'Mark Rothko' +p315097 +sg291130 +S'oil and mixed media on canvas' +p315098 +sg291132 +S'1949' +p315099 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014f3.jpg' +p315100 +sg291136 +g27 +sa(dp315101 +g291134 +S'Untitled' +p315102 +sg291137 +S'Mark Rothko' +p315103 +sg291130 +S'oil and acrylic on canvas' +p315104 +sg291132 +S'1956' +p315105 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014f4.jpg' +p315106 +sg291136 +g27 +sa(dp315107 +g291134 +S'Untitled (Harvard Mural sketch)' +p315108 +sg291137 +S'Mark Rothko' +p315109 +sg291130 +S'oil, acrylic and mixed media on canvas' +p315110 +sg291132 +S'1962' +p315111 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014f5.jpg' +p315112 +sg291136 +g27 +sa(dp315113 +g291134 +S'Untitled' +p315114 +sg291137 +S'Mark Rothko' +p315115 +sg291130 +S'oil and acrylic on canvas' +p315116 +sg291132 +S'1958' +p315117 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001519.jpg' +p315118 +sg291136 +g27 +sa(dp315119 +g291134 +S'No. 1' +p315120 +sg291137 +S'Mark Rothko' +p315121 +sg291130 +S'oil and acrylic on canvas' +p315122 +sg291132 +S'1961' +p315123 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a000151a.jpg' +p315124 +sg291136 +g27 +sa(dp315125 +g291134 +S'No. 4' +p315126 +sg291137 +S'Mark Rothko' +p315127 +sg291130 +S'mixed media on canvas' +p315128 +sg291132 +S'1964' +p315129 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a000151b.jpg' +p315130 +sg291136 +g27 +sa(dp315131 +g291134 +S'Untitled' +p315132 +sg291137 +S'Mark Rothko' +p315133 +sg291130 +S'oil on canvas' +p315134 +sg291132 +S'1956' +p315135 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a000151c.jpg' +p315136 +sg291136 +g27 +sa(dp315137 +g291134 +S'Untitled' +p315138 +sg291137 +S'Mark Rothko' +p315139 +sg291130 +S'oil on canvas' +p315140 +sg291132 +S'1957' +p315141 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00012/a000120b.jpg' +p315142 +sg291136 +g27 +sa(dp315143 +g291134 +S'Red Band' +p315144 +sg291137 +S'Mark Rothko' +p315145 +sg291130 +S'oil on canvas' +p315146 +sg291132 +S'1955' +p315147 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a000151d.jpg' +p315148 +sg291136 +g27 +sa(dp315149 +g291134 +S'Untitled (Seagram Mural sketch)' +p315150 +sg291137 +S'Mark Rothko' +p315151 +sg291130 +S'oil and mixed media on canvas' +p315152 +sg291132 +S'1959' +p315153 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a000151e.jpg' +p315154 +sg291136 +g27 +sa(dp315155 +g291134 +S'Untitled' +p315156 +sg291137 +S'Mark Rothko' +p315157 +sg291130 +S'oil on canvas' +p315158 +sg291132 +S'1951' +p315159 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a000151f.jpg' +p315160 +sg291136 +g27 +sa(dp315161 +g291134 +S'Untitled' +p315162 +sg291137 +S'Mark Rothko' +p315163 +sg291130 +S'oil and mixed media on canvas' +p315164 +sg291132 +S'1949' +p315165 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001520.jpg' +p315166 +sg291136 +g27 +sa(dp315167 +g291134 +S'Untitled' +p315168 +sg291137 +S'Mark Rothko' +p315169 +sg291130 +S'oil on canvas' +p315170 +sg291132 +S'1950' +p315171 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001521.jpg' +p315172 +sg291136 +g27 +sa(dp315173 +g291134 +S'Untitled' +p315174 +sg291137 +S'Mark Rothko' +p315175 +sg291130 +S'oil on canvas' +p315176 +sg291132 +S'1956' +p315177 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00012/a000120c.jpg' +p315178 +sg291136 +g27 +sa(dp315179 +g291134 +S'Untitled' +p315180 +sg291137 +S'Mark Rothko' +p315181 +sg291130 +S'oil on canvas' +p315182 +sg291132 +S'1952' +p315183 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001523.jpg' +p315184 +sg291136 +g27 +sa(dp315185 +g291134 +S'No. 5' +p315186 +sg291137 +S'Mark Rothko' +p315187 +sg291130 +S'oil and acrylic on canvas' +p315188 +sg291132 +S'1958' +p315189 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001524.jpg' +p315190 +sg291136 +g27 +sa(dp315191 +g291134 +S'Untitled' +p315192 +sg291137 +S'Mark Rothko' +p315193 +sg291130 +S'acrylic on canvas' +p315194 +sg291132 +S'1969' +p315195 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001525.jpg' +p315196 +sg291136 +g27 +sa(dp315197 +g291134 +S'Untitled' +p315198 +sg291137 +S'Mark Rothko' +p315199 +sg291130 +S'acrylic on canvas' +p315200 +sg291132 +S'1969' +p315201 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001526.jpg' +p315202 +sg291136 +g27 +sa(dp315203 +g291134 +S'Untitled' +p315204 +sg291137 +S'Mark Rothko' +p315205 +sg291130 +S'acrylic on canvas' +p315206 +sg291132 +S'1969' +p315207 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001527.jpg' +p315208 +sg291136 +g27 +sa(dp315209 +g291134 +S'Untitled' +p315210 +sg291137 +S'Mark Rothko' +p315211 +sg291130 +S'acrylic on canvas' +p315212 +sg291132 +S'1969' +p315213 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001528.jpg' +p315214 +sg291136 +g27 +sa(dp315215 +g291134 +S'Untitled (Seagram Mural)' +p315216 +sg291137 +S'Mark Rothko' +p315217 +sg291130 +S'oil on canvas' +p315218 +sg291132 +S'1959' +p315219 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00012/a0001200.jpg' +p315220 +sg291136 +g27 +sa(dp315221 +g291134 +S'Untitled (Harvard Mural sketch)' +p315222 +sg291137 +S'Mark Rothko' +p315223 +sg291130 +S'oil on canvas' +p315224 +sg291132 +S'1962' +p315225 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001529.jpg' +p315226 +sg291136 +g27 +sa(dp315227 +g291134 +S'Untitled (Harvard Mural sketch)' +p315228 +sg291137 +S'Mark Rothko' +p315229 +sg291130 +S'oil and mixed media on canvas' +p315230 +sg291132 +S'1962' +p315231 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a000152a.jpg' +p315232 +sg291136 +g27 +sa(dp315233 +g291134 +S'Untitled (Seagram Mural sketch)' +p315234 +sg291137 +S'Mark Rothko' +p315235 +sg291130 +S'oil on canvas' +p315236 +sg291132 +S'1958' +p315237 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a000152b.jpg' +p315238 +sg291136 +g27 +sa(dp315239 +g291134 +S'Untitled' +p315240 +sg291137 +S'Mark Rothko' +p315241 +sg291130 +S'oil, acrylic and mixed media on canvas' +p315242 +sg291132 +S'1963' +p315243 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a000152c.jpg' +p315244 +sg291136 +g27 +sa(dp315245 +g291134 +S'Untitled (Harvard Mural sketch)' +p315246 +sg291137 +S'Mark Rothko' +p315247 +sg291130 +S'oil on canvas' +p315248 +sg291132 +S'1962' +p315249 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a000152d.jpg' +p315250 +sg291136 +g27 +sa(dp315251 +g291134 +S'Untitled' +p315252 +sg291137 +S'Mark Rothko' +p315253 +sg291130 +S'acrylic on canvas' +p315254 +sg291132 +S'1970' +p315255 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a000152e.jpg' +p315256 +sg291136 +g27 +sa(dp315257 +g291130 +S'watercolor, ink, and graphite on paper' +p315258 +sg291132 +S'1944' +p315259 +sg291134 +S'Untitled' +p315260 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315261 +sa(dp315262 +g291134 +S'Untitled' +p315263 +sg291137 +S'Mark Rothko' +p315264 +sg291130 +S'watercolor and black ink on paper' +p315265 +sg291132 +S'1945/1946' +p315266 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a000098e.jpg' +p315267 +sg291136 +g27 +sa(dp315268 +g291130 +S'pen and black ink, watercolor, and gouache on wove paper' +p315269 +sg291132 +S'c. 1944' +p315270 +sg291134 +S'Abstraction' +p315271 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315272 +sa(dp315273 +g291130 +S'watercolor, pen and black ink, and brush and blackink over graphite on wove paper' +p315274 +sg291132 +S'c. 1944' +p315275 +sg291134 +S'Abstract Composition in Brown, Green, Blue, Black, and Orange [recto]' +p315276 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315277 +sa(dp315278 +g291130 +S'watercolor, pen and black ink, and brush and blackink over graphite on wove paper' +p315279 +sg291132 +S'c. 1944' +p315280 +sg291134 +S'Abstract Composition in Blue, Black, Red, and Yellow [verso]' +p315281 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315282 +sa(dp315283 +g291130 +S'watercolor, pen and black ink, and brush and blackink over graphite on wove paper' +p315284 +sg291132 +S'c. 1944/1946' +p315285 +sg291134 +S'Abstract Composition in Blue, Black, Gray, Red, and Yellow' +p315286 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315287 +sa(dp315288 +g291134 +S'Untitled' +p315289 +sg291137 +S'Mark Rothko' +p315290 +sg291130 +S'watercolor, black ink, and graphite on wove paper' +p315291 +sg291132 +S'1945/1946' +p315292 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f2/a000f213.jpg' +p315293 +sg291136 +g27 +sa(dp315294 +g291134 +S'Untitled' +p315295 +sg291137 +S'Mark Rothko' +p315296 +sg291130 +S'watercolor, tempera, graphite, and black ink on wove paper' +p315297 +sg291132 +S'1945/1946' +p315298 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f2/a000f214.jpg' +p315299 +sg291136 +g27 +sa(dp315300 +g291134 +S'Untitled [recto]' +p315301 +sg291137 +S'Mark Rothko' +p315302 +sg291130 +S'brush and black ink on wove papr' +p315303 +sg291132 +S'1944/1945' +p315304 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000990.jpg' +p315305 +sg291136 +g27 +sa(dp315306 +g291130 +S'watercolor and brush and black ink on wove paper' +p315307 +sg291132 +S'1944/1945' +p315308 +sg291134 +S'Untitled [verso]' +p315309 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315310 +sa(dp315311 +g291134 +S'Untitled' +p315312 +sg291137 +S'Mark Rothko' +p315313 +sg291130 +S'ink on paper hinged to cardboard' +p315314 +sg291132 +S'1944/1945' +p315315 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000991.jpg' +p315316 +sg291136 +g27 +sa(dp315317 +g291130 +S'watercolor, pen and black ink, and brush and blackink over graphite on wove paper' +p315318 +sg291132 +S'c. 1944' +p315319 +sg291134 +S'Abstract Composition in Brown, Black, Green, Yellow, Orange, and Blue [recto]' +p315320 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315321 +sa(dp315322 +g291130 +S'watercolor, pen and black ink, and brush and blackink over graphite on wove paper' +p315323 +sg291132 +S'c. 1944' +p315324 +sg291134 +S'Abstract Composition [verso]' +p315325 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315326 +sa(dp315327 +g291130 +S'watercolor, gouache, pen and black ink, and brush and black ink over graphite on wove paper' +p315328 +sg291132 +S'c. 1944' +p315329 +sg291134 +S'Abstract Composition in Black, Gray, Pink, Orange, Blue, and Tan [recto]' +p315330 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315331 +sa(dp315332 +g291130 +S'watercolor, gouache, pen and black ink, and brush and black ink over graphite on wove paper' +p315333 +sg291132 +S'c. 1944' +p315334 +sg291134 +S'Abstract Composition in Black, Gray, Pink, Blue, and Green [verso]' +p315335 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315336 +sa(dp315337 +g291130 +S'watercolor, gouache, pen and black ink, and brush and black ink over graphite on wove paper' +p315338 +sg291132 +S'c. 1944' +p315339 +sg291134 +S'Abstract Composition in Blue, Gray, Green, Black, and Red' +p315340 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315341 +sa(dp315342 +g291130 +S'watercolor and brush and black ink on wove paper' +p315343 +sg291132 +S'c. 1944/1946' +p315344 +sg291134 +S'Abstract Composition in Black, Brown, and Orange' +p315345 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315346 +sa(dp315347 +g291130 +S'watercolor, gouache, and pen and black ink on wove paper' +p315348 +sg291132 +S'c. 1944' +p315349 +sg291134 +S'Abstract Composition in Blue, Green, Black, and Brown' +p315350 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315351 +sa(dp315352 +g291130 +S'watercolor with touches of gouache, with scratching, scraping, and rubbing on handmade paper' +p315353 +sg291132 +S'c. 1944/1946' +p315354 +sg291134 +S'Abstraction [recto]' +p315355 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315356 +sa(dp315357 +g291130 +S'pen and black ink (and sponge or dry brush and black ink) over graphite on handmade paper' +p315358 +sg291132 +S'c. 1944/1946' +p315359 +sg291134 +S'Untitled [verso]' +p315360 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315361 +sa(dp315362 +g291130 +S'watercolor and brush and black ink over graphite on wove paper' +p315363 +sg291132 +S'1944/1945' +p315364 +sg291134 +S'Abstraction [recto]' +p315365 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315366 +sa(dp315367 +g291130 +S'watercolor and brush and black ink on wove paper' +p315368 +sg291132 +S'c. 1944' +p315369 +sg291134 +S'Abstract Composition in Black, Blue, Green, Red, Yellow, and Gray [verso]' +p315370 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315371 +sa(dp315372 +g291130 +S'watercolor, gouache, and brush and black ink over graphite on wove paper' +p315373 +sg291132 +S'c. 1944/1946' +p315374 +sg291134 +S'Untitled [recto]' +p315375 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315376 +sa(dp315377 +g291130 +S'watercolor, gouache, and pen and black ink over graphite on laid paper' +p315378 +sg291132 +S'c. 1944/1946' +p315379 +sg291134 +S'Untitled [verso]' +p315380 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315381 +sa(dp315382 +g291130 +S'graphite and chalk on paper' +p315383 +sg291132 +S'1933' +p315384 +sg291134 +S'City Street' +p315385 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315386 +sa(dp315387 +g291130 +S'watercolor on heavy wove paper' +p315388 +sg291132 +S'c. 1929' +p315389 +sg291134 +S'Cows in a Landscape' +p315390 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315391 +sa(dp315392 +g291130 +S'watercolor and graphite on wove paper' +p315393 +sg291132 +S'c. 1929' +p315394 +sg291134 +S'Horses in a Landscape' +p315395 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315396 +sa(dp315397 +g291134 +S'Untitled (Farm scene horses and barn)' +p315398 +sg291137 +S'Mark Rothko' +p315399 +sg291130 +S'watercolor, graphite, and ink on paper' +p315400 +sg291132 +S'c. 1930' +p315401 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000992.jpg' +p315402 +sg291136 +g27 +sa(dp315403 +g291130 +S'gouache on dark brown wove paper' +p315404 +sg291132 +S'c. 1930' +p315405 +sg291134 +S'Standing Woman in a Green Dress with a Child' +p315406 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315407 +sa(dp315408 +g291130 +S'gouache and watercolor on gray wove paper' +p315409 +sg291132 +S'c. 1930' +p315410 +sg291134 +S'Seated Man Facing Left' +p315411 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315412 +sa(dp315413 +g291130 +S'gouache and graphite on black wove paper' +p315414 +sg291132 +S'c. 1930' +p315415 +sg291134 +S"Man Kissing Woman's Hand [recto]" +p315416 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315417 +sa(dp315418 +g291130 +S'gouache on black wove paper' +p315419 +sg291132 +S'c. 1930' +p315420 +sg291134 +S'Two Figures [verso]' +p315421 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315422 +sa(dp315423 +g291130 +S'gouache on tan wove paper' +p315424 +sg291132 +S'c. 1930' +p315425 +sg291134 +S'Rear View of a Woman Seated at a Desk' +p315426 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315427 +sa(dp315428 +g291130 +S'tempera on paper' +p315429 +sg291132 +S'c. 1930' +p315430 +sg291134 +S'The Bathers' +p315431 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315432 +sa(dp315433 +g291130 +S'gouache and watercolor over graphite on gray wove paper' +p315434 +sg291132 +S'c. 1930' +p315435 +sg291134 +S'Figures on a Beach' +p315436 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315437 +sa(dp315438 +g291130 +S'tempera on light grey construction paper' +p315439 +sg291132 +S'c. 1930' +p315440 +sg291134 +S'Seated Black Girl' +p315441 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315442 +sa(dp315443 +g291130 +S'watercolor and gouache on gray wove paper' +p315444 +sg291132 +S'c. 1930' +p315445 +sg291134 +S'Three Girls Seated' +p315446 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315447 +sa(dp315448 +g291130 +S'watercolor and gouache on brown wove paper' +p315449 +sg291132 +S'c. 1930' +p315450 +sg291134 +S'Woman Seated on a Green Chair' +p315451 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315452 +sa(dp315453 +g291130 +S'gouache on brown wove paper' +p315454 +sg291132 +S'c. 1930' +p315455 +sg291134 +S'Portrait of a Woman [recto]' +p315456 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315457 +sa(dp315458 +g291130 +S'gouache and brush and black ink on brown wove paper' +p315459 +sg291132 +S'c. 1930' +p315460 +sg291134 +S'Neighborhood Scene [verso]' +p315461 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315462 +sa(dp315463 +g291134 +S'Untitled' +p315464 +sg291137 +S'Mark Rothko' +p315465 +sg291130 +S'watercolor and ink on paper' +p315466 +sg291132 +S'late 1920s' +p315467 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000993.jpg' +p315468 +sg291136 +g27 +sa(dp315469 +g291130 +S'watercolor on wove paper' +p315470 +sg291132 +S'c. 1929' +p315471 +sg291134 +S'Landscape with Trees and Hills [recto]' +p315472 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315473 +sa(dp315474 +g291130 +S'watercolor on wove paper' +p315475 +sg291132 +S'c. 1925' +p315476 +sg291134 +S'Landscape [verso]' +p315477 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315478 +sa(dp315479 +g291130 +S'watercolor over graphite on wove paper' +p315480 +sg291132 +S'c. 1930' +p315481 +sg291134 +S'Woman Seated on a Red Sofa [recto]' +p315482 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315483 +sa(dp315484 +g291130 +S'watercolor and graphite on wove paper' +p315485 +sg291132 +S'c. 1929' +p315486 +sg291134 +S'Figures in a Seascape [verso]' +p315487 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315488 +sa(dp315489 +g291130 +S'watercolor, brush and black ink, and graphite on wove paper' +p315490 +sg291132 +S'c. 1929' +p315491 +sg291134 +S'Figures Reclining on a Beach' +p315492 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315493 +sa(dp315494 +g291130 +S'brush and black ink and watercolor on wove paper' +p315495 +sg291132 +S'c. 1944/1946' +p315496 +sg291134 +S'Abstraction' +p315497 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315498 +sa(dp315499 +g291130 +S'watercolor, gouache, and pen and black ink on pinkwove paper' +p315500 +sg291132 +S'c. 1944' +p315501 +sg291134 +S'Abstraction' +p315502 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315503 +sa(dp315504 +g291134 +S'Untitled [recto]' +p315505 +sg291137 +S'Mark Rothko' +p315506 +sg291130 +S'watercolor, gouache, pen and black ink over graphite on wove paper' +p315507 +sg291132 +S'c. 1944/1946' +p315508 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005ee1.jpg' +p315509 +sg291136 +g27 +sa(dp315510 +g291134 +S'Untitled [verso]' +p315511 +sg291137 +S'Mark Rothko' +p315512 +sg291130 +S'watercolor, gouache, pen and black ink over graphite on wove paper' +p315513 +sg291132 +S'c. 1944/1946' +p315514 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000994.jpg' +p315515 +sg291136 +g27 +sa(dp315516 +g291130 +S'watercolor and brush and black ink over graphite on wove paper' +p315517 +sg291132 +S'c. 1944' +p315518 +sg291134 +S'Untitled' +p315519 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315520 +sa(dp315521 +g291134 +S'Untitled' +p315522 +sg291137 +S'Mark Rothko' +p315523 +sg291130 +S'watercolor, tempera, and ink on paper' +p315524 +sg291132 +S'1944/1945' +p315525 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000995.jpg' +p315526 +sg291136 +g27 +sa(dp315527 +g291130 +S'watercolor, gouache, and pen and black ink on wovepaper' +p315528 +sg291132 +S'c. 1944' +p315529 +sg291134 +S'Untitled [recto]' +p315530 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315531 +sa(dp315532 +g291130 +S'watercolor and gouache on wove paper' +p315533 +sg291132 +S'c. 1944' +p315534 +sg291134 +S'Untitled [verso]' +p315535 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315536 +sa(dp315537 +g291130 +S'watercolor on wove paper' +p315538 +sg291132 +S'c. 1929' +p315539 +sg291134 +S'Landscape with River' +p315540 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315541 +sa(dp315542 +g291130 +S'watercolor, pen and black ink, and brush and black ink on wove paper' +p315543 +sg291132 +S'c. 1944' +p315544 +sg291134 +S'Untitled' +p315545 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315546 +sa(dp315547 +g291130 +S'watercolor, gouache, and brush and black ink on wove paper' +p315548 +sg291132 +S'c. 1944' +p315549 +sg291134 +S'Untitled' +p315550 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315551 +sa(dp315552 +g291134 +S'Untitled' +p315553 +sg291137 +S'Mark Rothko' +p315554 +sg291130 +S'watercolor with pen and black ink over graphite' +p315555 +sg291132 +S'1944/1945' +p315556 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00058/a0005823.jpg' +p315557 +sg291136 +g27 +sa(dp315558 +g291134 +S'Untitled' +p315559 +sg291137 +S'Mark Rothko' +p315560 +sg291130 +S'watercolor, graphite, and ink on paper' +p315561 +sg291132 +S'c. 1945' +p315562 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00058/a000581d.jpg' +p315563 +sg291136 +g27 +sa(dp315564 +g291130 +S'watercolor, gouache, and brush and black ink on wove paper' +p315565 +sg291132 +S'c. 1944' +p315566 +sg291134 +S'Untitled' +p315567 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315568 +sa(dp315569 +g291130 +S'watercolor and brush and black ink over graphite on wove paper' +p315570 +sg291132 +S'c. 1944' +p315571 +sg291134 +S'Untitled' +p315572 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315573 +sa(dp315574 +g291134 +S'Untitled' +p315575 +sg291137 +S'Mark Rothko' +p315576 +sg291130 +S'watercolor, tempera, graphite, and ink on paper' +p315577 +sg291132 +S'1944/1945' +p315578 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000996.jpg' +p315579 +sg291136 +g27 +sa(dp315580 +g291134 +S'Untitled' +p315581 +sg291137 +S'Mark Rothko' +p315582 +sg291130 +S'watercolor and charcoal on paper' +p315583 +sg291132 +S'1944/1945' +p315584 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000997.jpg' +p315585 +sg291136 +g27 +sa(dp315586 +g291130 +S'watercolor over graphite on wove paper' +p315587 +sg291132 +S'c. 1944/1946' +p315588 +sg291134 +S'Untitled' +p315589 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315590 +sa(dp315591 +g291130 +S'watercolor and gouache over graphite on wove paper' +p315592 +sg291132 +S'c. 1944/1946' +p315593 +sg291134 +S'Untitled' +p315594 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315595 +sa(dp315596 +g291130 +S'watercolor, brush and black ink, and gouache on wove paper' +p315597 +sg291132 +S'c. 1944/1945' +p315598 +sg291134 +S'Abstraction' +p315599 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315600 +sa(dp315601 +g291134 +S'Untitled' +p315602 +sg291137 +S'Mark Rothko' +p315603 +sg291130 +S'watercolor and black ink on wove paper' +p315604 +sg291132 +S'1945/1946' +p315605 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000998.jpg' +p315606 +sg291136 +g27 +sa(dp315607 +g291130 +S'watercolor, graphite, and ink on paper' +p315608 +sg291132 +S'1944/1946' +p315609 +sg291134 +S'Untitled' +p315610 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315611 +sa(dp315612 +g291130 +S'watercolor, pen and black ink, brush and black ink, and graphite on wove paper' +p315613 +sg291132 +S'c. 1944' +p315614 +sg291134 +S'Abstract Composition in Purple, Blue, Pink, Black, and Gray' +p315615 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315616 +sa(dp315617 +g291130 +S'watercolor, gouache, and pen and black ink on wove paper' +p315618 +sg291132 +S'c. 1944/1946' +p315619 +sg291134 +S'Abstract Composition in Blue, Black, Gray, and Tan' +p315620 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315621 +sa(dp315622 +g291130 +S'watercolor, pen and black ink, and brush and black ink over graphite on wove paper' +p315623 +sg291132 +S'c. 1944/1946' +p315624 +sg291134 +S'Abstract Composition' +p315625 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315626 +sa(dp315627 +g291130 +S'watercolor, pen and black ink, and brush and black ink over graphite on wove paper' +p315628 +sg291132 +S'c. 1944/1946' +p315629 +sg291134 +S'Abstraction' +p315630 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315631 +sa(dp315632 +g291130 +S'watercolor, pen and black ink, and brush and blackink over graphite on wove paper' +p315633 +sg291132 +S'c. 1944' +p315634 +sg291134 +S'Abstract Composition' +p315635 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315636 +sa(dp315637 +g291130 +S'watercolor, pen and black ink, and gouache over graphite on wove paper' +p315638 +sg291132 +S'c. 1944' +p315639 +sg291134 +S'Abstract Composition' +p315640 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315641 +sa(dp315642 +g291134 +S'Untitled [recto]' +p315643 +sg291137 +S'Mark Rothko' +p315644 +sg291130 +S'watercolor over graphite on wove paper' +p315645 +sg291132 +S'c. 1944/1946' +p315646 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000999.jpg' +p315647 +sg291136 +g27 +sa(dp315648 +g291134 +S'Untitled [verso]' +p315649 +sg291137 +S'Mark Rothko' +p315650 +sg291130 +S'watercolor and brush and black ink on wove paper' +p315651 +sg291132 +S'c. 1944/1946' +p315652 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005ee9.jpg' +p315653 +sg291136 +g27 +sa(dp315654 +g291130 +S'watercolor, gouache, and brush and black ink over graphite on wove paper' +p315655 +sg291132 +S'unknown date\n' +p315656 +sg291134 +S'Untitled [recto]' +p315657 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315658 +sa(dp315659 +g291130 +S'watercolor and gouache over graphite on wove paper' +p315660 +sg291132 +S'unknown date\n' +p315661 +sg291134 +S'Untitled [verso]' +p315662 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315663 +sa(dp315664 +g291130 +S'acrylic on paper' +p315665 +sg291132 +S'1968' +p315666 +sg291134 +S'Untitled' +p315667 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315668 +sa(dp315669 +g291130 +S'acrylic on paper' +p315670 +sg291132 +S'1968' +p315671 +sg291134 +S'Untitled' +p315672 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315673 +sa(dp315674 +g291130 +S'acrylic on paper mounted on hardboard panel' +p315675 +sg291132 +S'1968' +p315676 +sg291134 +S'Untitled' +p315677 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315678 +sa(dp315679 +g291130 +S'acrylic on paper mounted on hardboard panel' +p315680 +sg291132 +S'1968' +p315681 +sg291134 +S'Untitled' +p315682 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315683 +sa(dp315684 +g291130 +S'acrylic on paper mounted on hardboard panel' +p315685 +sg291132 +S'1968' +p315686 +sg291134 +S'Untitled' +p315687 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315688 +sa(dp315689 +g291134 +S'Untitled' +p315690 +sg291137 +S'Mark Rothko' +p315691 +sg291130 +S'acrylic on paper mounted on hardboard panel' +p315692 +sg291132 +S'1968' +p315693 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a000099a.jpg' +p315694 +sg291136 +g27 +sa(dp315695 +g291130 +S'acrylic on paper mounted on linen' +p315696 +sg291132 +S'1968' +p315697 +sg291134 +S'Untitled' +p315698 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315699 +sa(dp315700 +g291130 +S'acrylic on paper' +p315701 +sg291132 +S'1968' +p315702 +sg291134 +S'Untitled' +p315703 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315704 +sa(dp315705 +g291130 +S'acrylic on paper mounted on hardboard panel' +p315706 +sg291132 +S'1968' +p315707 +sg291134 +S'Untitled' +p315708 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315709 +sa(dp315710 +g291130 +S'acrylic on paper mounted on hardboard panel' +p315711 +sg291132 +S'1968' +p315712 +sg291134 +S'Untitled' +p315713 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315714 +sa(dp315715 +g291130 +S'acrylic on paper mounted on hardboard panel' +p315716 +sg291132 +S'1968' +p315717 +sg291134 +S'Untitled' +p315718 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315719 +sa(dp315720 +g291130 +S'acrylic on paper mounted on hardboard panel' +p315721 +sg291132 +S'1968' +p315722 +sg291134 +S'Untitled' +p315723 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315724 +sa(dp315725 +g291130 +S'acrylic on paper' +p315726 +sg291132 +S'1968' +p315727 +sg291134 +S'Untitled' +p315728 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315729 +sa(dp315730 +g291134 +S'Untitled' +p315731 +sg291137 +S'Mark Rothko' +p315732 +sg291130 +S'acrylic on paper' +p315733 +sg291132 +S'1968' +p315734 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00058/a0005819.jpg' +p315735 +sg291136 +g27 +sa(dp315736 +g291134 +S'Untitled' +p315737 +sg291137 +S'Mark Rothko' +p315738 +sg291130 +S'acrylic on paper' +p315739 +sg291132 +S'1968' +p315740 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a000099b.jpg' +p315741 +sg291136 +g27 +sa(dp315742 +g291130 +S'acrylic on paper' +p315743 +sg291132 +S'1968' +p315744 +sg291134 +S'Untitled' +p315745 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315746 +sa(dp315747 +g291134 +S'Untitled' +p315748 +sg291137 +S'Mark Rothko' +p315749 +sg291130 +S'acrylic on paper' +p315750 +sg291132 +S'1968' +p315751 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a000099c.jpg' +p315752 +sg291136 +g27 +sa(dp315753 +g291130 +S'acrylic on paper' +p315754 +sg291132 +S'1968' +p315755 +sg291134 +S'Untitled' +p315756 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315757 +sa(dp315758 +g291130 +S'acrylic on paper' +p315759 +sg291132 +S'1968' +p315760 +sg291134 +S'Untitled' +p315761 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315762 +sa(dp315763 +g291134 +S'Untitled' +p315764 +sg291137 +S'Mark Rothko' +p315765 +sg291130 +S'acrylic on paper mounted on hardboard panel' +p315766 +sg291132 +S'1968' +p315767 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a000099d.jpg' +p315768 +sg291136 +g27 +sa(dp315769 +g291134 +S'Untitled' +p315770 +sg291137 +S'Mark Rothko' +p315771 +sg291130 +S'watercolor and tempera on paper' +p315772 +sg291132 +S'1949' +p315773 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a000099e.jpg' +p315774 +sg291136 +g27 +sa(dp315775 +g291134 +S'Untitled' +p315776 +sg291137 +S'Mark Rothko' +p315777 +sg291130 +S'watercolor on paper' +p315778 +sg291132 +S'1949' +p315779 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a000099f.jpg' +p315780 +sg291136 +g27 +sa(dp315781 +g291134 +S'Untitled' +p315782 +sg291137 +S'Mark Rothko' +p315783 +sg291130 +S'watercolor and tempera on paper' +p315784 +sg291132 +S'1949' +p315785 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b4aa.jpg' +p315786 +sg291136 +g27 +sa(dp315787 +g291130 +S'acrylic on paper mounted on hardboard panel' +p315788 +sg291132 +S'1967' +p315789 +sg291134 +S'Untitled' +p315790 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315791 +sa(dp315792 +g291134 +S'Untitled' +p315793 +sg291137 +S'Mark Rothko' +p315794 +sg291130 +S'acrylic on paper mounted on hardboard panel' +p315795 +sg291132 +S'1967' +p315796 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009a1.jpg' +p315797 +sg291136 +g27 +sa(dp315798 +g291130 +S'acrylic on paper' +p315799 +sg291132 +S'1969' +p315800 +sg291134 +S'Untitled' +p315801 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315802 +sa(dp315803 +g291130 +S'acrylic on paper mounted on hardboard panel' +p315804 +sg291132 +S'1969' +p315805 +sg291134 +S'Untitled' +p315806 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315807 +sa(dp315808 +g291134 +S'Untitled' +p315809 +sg291137 +S'Mark Rothko' +p315810 +sg291130 +S'acrylic on paper mounted on hardboard panel' +p315811 +sg291132 +S'1968' +p315812 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009a2.jpg' +p315813 +sg291136 +g27 +sa(dp315814 +g291134 +S'Untitled' +p315815 +sg291137 +S'Mark Rothko' +p315816 +sg291130 +S'acrylic on paper mounted on hardboard panel' +p315817 +sg291132 +S'1968' +p315818 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009a3.jpg' +p315819 +sg291136 +g27 +sa(dp315820 +g291134 +S'Untitled' +p315821 +sg291137 +S'Mark Rothko' +p315822 +sg291130 +S'acrylic on paper mounted on hardboard panel' +p315823 +sg291132 +S'1968' +p315824 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009a4.jpg' +p315825 +sg291136 +g27 +sa(dp315826 +g291130 +S'watercolor and pen and black ink on wove paper' +p315827 +sg291132 +S'c. 1944/1946' +p315828 +sg291134 +S'Untitled' +p315829 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315830 +sa(dp315831 +g291130 +S'acrylic on paper mounted on hardboard panel' +p315832 +sg291132 +S'1969' +p315833 +sg291134 +S'Untitled' +p315834 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315835 +sa(dp315836 +g291130 +S'acrylic on paper' +p315837 +sg291132 +S'1969' +p315838 +sg291134 +S'Untitled' +p315839 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315840 +sa(dp315841 +g291134 +S'Untitled' +p315842 +sg291137 +S'Mark Rothko' +p315843 +sg291130 +S'acrylic on paper' +p315844 +sg291132 +S'1969' +p315845 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009a5.jpg' +p315846 +sg291136 +g27 +sa(dp315847 +g291134 +S'Untitled' +p315848 +sg291137 +S'Mark Rothko' +p315849 +sg291130 +S'acrylic on paper' +p315850 +sg291132 +S'1969' +p315851 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009a6.jpg' +p315852 +sg291136 +g27 +sa(dp315853 +g291130 +S'acrylic and ink on paper' +p315854 +sg291132 +S'1969' +p315855 +sg291134 +S'Untitled' +p315856 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315857 +sa(dp315858 +g291134 +S'Untitled' +p315859 +sg291137 +S'Mark Rothko' +p315860 +sg291130 +S'acrylic on paper' +p315861 +sg291132 +S'1969' +p315862 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009a7.jpg' +p315863 +sg291136 +g27 +sa(dp315864 +g291130 +S'acrylic and ink on paper' +p315865 +sg291132 +S'1969' +p315866 +sg291134 +S'Untitled' +p315867 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315868 +sa(dp315869 +g291130 +S'acrylic and ink on paper' +p315870 +sg291132 +S'1969' +p315871 +sg291134 +S'Untitled' +p315872 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315873 +sa(dp315874 +g291134 +S'Untitled' +p315875 +sg291137 +S'Mark Rothko' +p315876 +sg291130 +S'acrylic on paper' +p315877 +sg291132 +S'1969' +p315878 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009a8.jpg' +p315879 +sg291136 +g27 +sa(dp315880 +g291134 +S'Untitled' +p315881 +sg291137 +S'Mark Rothko' +p315882 +sg291130 +S'acrylic on paper' +p315883 +sg291132 +S'1969' +p315884 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009a9.jpg' +p315885 +sg291136 +g27 +sa(dp315886 +g291130 +S'acrylic on paper' +p315887 +sg291132 +S'1969' +p315888 +sg291134 +S'Untitled' +p315889 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315890 +sa(dp315891 +g291134 +S'Untitled' +p315892 +sg291137 +S'Mark Rothko' +p315893 +sg291130 +S'acrylic on paper' +p315894 +sg291132 +S'1969' +p315895 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00058/a000581f.jpg' +p315896 +sg291136 +g27 +sa(dp315897 +g291130 +S'acrylic on paper' +p315898 +sg291132 +S'1969' +p315899 +sg291134 +S'Untitled' +p315900 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315901 +sa(dp315902 +g291130 +S'acrylic on paper' +p315903 +sg291132 +S'1969' +p315904 +sg291134 +S'Untitled (Brown and gray)' +p315905 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315906 +sa(dp315907 +g291130 +S'acrylic on paper' +p315908 +sg291132 +S'1969' +p315909 +sg291134 +S'Untitled (Brown and gray)' +p315910 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315911 +sa(dp315912 +g291130 +S'acrylic on paper' +p315913 +sg291132 +S'1969' +p315914 +sg291134 +S'Untitled (Brown and gray)' +p315915 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315916 +sa(dp315917 +g291130 +S'acrylic on paper' +p315918 +sg291132 +S'1969' +p315919 +sg291134 +S'Untitled (Brown and gray)' +p315920 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315921 +sa(dp315922 +g291130 +S'acrylic on paper' +p315923 +sg291132 +S'1969' +p315924 +sg291134 +S'Untitled (brown and gray)' +p315925 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315926 +sa(dp315927 +g291134 +S'Untitled (brown and gray)' +p315928 +sg291137 +S'Mark Rothko' +p315929 +sg291130 +S'acrylic on paper' +p315930 +sg291132 +S'1969' +p315931 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009aa.jpg' +p315932 +sg291136 +g27 +sa(dp315933 +g291130 +S'acrylic on paper' +p315934 +sg291132 +S'1969' +p315935 +sg291134 +S'Untitled (brown and gray)' +p315936 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315937 +sa(dp315938 +g291134 +S'Untitled (brown and gray)' +p315939 +sg291137 +S'Mark Rothko' +p315940 +sg291130 +S'acrylic on paper' +p315941 +sg291132 +S'1969' +p315942 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009ab.jpg' +p315943 +sg291136 +g27 +sa(dp315944 +g291134 +S'Untitled (brown and gray)' +p315945 +sg291137 +S'Mark Rothko' +p315946 +sg291130 +S'acrylic on paper' +p315947 +sg291132 +S'1969' +p315948 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00058/a000581e.jpg' +p315949 +sg291136 +g27 +sa(dp315950 +g291134 +S'Untitled (brown and gray)' +p315951 +sg291137 +S'Mark Rothko' +p315952 +sg291130 +S'acrylic on paper' +p315953 +sg291132 +S'1969' +p315954 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009ac.jpg' +p315955 +sg291136 +g27 +sa(dp315956 +g291130 +S'acrylic on paper' +p315957 +sg291132 +S'1969' +p315958 +sg291134 +S'Untitled (brown and gray)' +p315959 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315960 +sa(dp315961 +g291130 +S'acrylic on paper' +p315962 +sg291132 +S'1969' +p315963 +sg291134 +S'Untitled (brown and gray)' +p315964 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315965 +sa(dp315966 +g291130 +S'acrylic on paper' +p315967 +sg291132 +S'1969' +p315968 +sg291134 +S'Untitled' +p315969 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315970 +sa(dp315971 +g291130 +S'ink on paper' +p315972 +sg291132 +S'1969' +p315973 +sg291134 +S'1969' +p315974 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315975 +sa(dp315976 +g291130 +S'ink on paper' +p315977 +sg291132 +S'1969' +p315978 +sg291134 +S'Untitled' +p315979 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p315980 +sa(dp315981 +g291134 +S'Untitled' +p315982 +sg291137 +S'Mark Rothko' +p315983 +sg291130 +S'acrylic on paper' +p315984 +sg291132 +S'1969' +p315985 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009ad.jpg' +p315986 +sg291136 +g27 +sa(dp315987 +g291130 +S'(artist after)' +p315988 +sg291132 +S'\n' +p315989 +sg291134 +S'Paradigmata graphices variorum artificum' +p315990 +sg291136 +g27 +sg291137 +S'Artist Information (' +p315991 +sa(dp315992 +g291134 +S'A Boy on a Sled' +p315993 +sg291137 +S'Jost Amman' +p315994 +sg291130 +S'pen and black ink with brown, blue, and pink wash on laid paper' +p315995 +sg291132 +S'late 1560s' +p315996 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00030/a000302e.jpg' +p315997 +sg291136 +g27 +sa(dp315998 +g291134 +S'Village atop a River Cliff [recto]' +p315999 +sg291137 +S'Master of the Blue Landscapes' +p316000 +sg291130 +S'pen and brown ink and wash over traces of black chalk on blue laid paper' +p316001 +sg291132 +S'unknown date\n' +p316002 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a0007479.jpg' +p316003 +sg291136 +g27 +sa(dp316004 +g291134 +S'Buildings on a River Bank [verso]' +p316005 +sg291137 +S'Master of the Blue Landscapes' +p316006 +sg291130 +S'pen and brown ink and wash over traces of black chalk on blue laid paper' +p316007 +sg291132 +S'unknown date\n' +p316008 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a000747a.jpg' +p316009 +sg291136 +g27 +sa(dp316010 +g291134 +S'Bacchanal' +p316011 +sg291137 +S'John Hamilton Mortimer' +p316012 +sg291130 +S'pen and black ink over graphite on laid paper' +p316013 +sg291132 +S'1770/1775' +p316014 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a0006962.jpg' +p316015 +sg291136 +g27 +sa(dp316016 +g291134 +S'The Ploughman' +p316017 +sg291137 +S'Peter Moran' +p316018 +sg291130 +S'etching on wove paper' +p316019 +sg291132 +S'published 1886' +p316020 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b3b.jpg' +p316021 +sg291136 +g27 +sa(dp316022 +g291130 +S'(artist after)' +p316023 +sg291132 +S'\n' +p316024 +sg291134 +S'Susanna Surprised by the Two Elders' +p316025 +sg291136 +g27 +sg291137 +S'Artist Information (' +p316026 +sa(dp316027 +g291134 +S'J.B. Cardon' +p316028 +sg291137 +S'Charles-Nicolas Cochin II' +p316029 +sg291130 +S'black chalk' +p316030 +sg291132 +S'1782' +p316031 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a000716b.jpg' +p316032 +sg291136 +g27 +sa(dp316033 +g291134 +S'P.J. Marco' +p316034 +sg291137 +S'Charles-Nicolas Cochin II' +p316035 +sg291130 +S'black chalk' +p316036 +sg291132 +S'1784' +p316037 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00061/a000613d.jpg' +p316038 +sg291136 +g27 +sa(dp316039 +g291134 +S'A Man with a Turban and Striped Shirt' +p316040 +sg291137 +S'Thomas Frye' +p316041 +sg291130 +S'mezzotint with some engraving on laid paper' +p316042 +sg291132 +S'1760' +p316043 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a00078a9.jpg' +p316044 +sg291136 +g27 +sa(dp316045 +g291130 +S'etching on wove paper [restrike printed by the Regia Calcografia, Rome]' +p316046 +sg291132 +S'1633' +p316047 +sg291134 +S'Title Page for "Entry into Rome of His Excellency the Polish Ambassador"' +p316048 +sg291136 +g27 +sg291137 +S'Stefano Della Bella' +p316049 +sa(dp316050 +g291130 +S'etching on wove paper [restrike printed by the Regia Calcografia, Rome]' +p316051 +sg291132 +S'1633' +p316052 +sg291134 +S'Thirty Archers and Pages' +p316053 +sg291136 +g27 +sg291137 +S'Stefano Della Bella' +p316054 +sa(dp316055 +g291130 +S'etching on wove paper [restrike printed by the Regia Calcografia, Rome]' +p316056 +sg291132 +S'1633' +p316057 +sg291134 +S'Twenty Pages and Five Turkish Horses' +p316058 +sg291136 +g27 +sg291137 +S'Stefano Della Bella' +p316059 +sa(dp316060 +g291130 +S'etching on wove paper [restrike printed by the Regia Calcografia, Rome]' +p316061 +sg291132 +S'1633' +p316062 +sg291134 +S"Master of His Excellency's Stables and Twenty Servants" +p316063 +sg291136 +g27 +sg291137 +S'Stefano Della Bella' +p316064 +sa(dp316065 +g291130 +S'etching on wove paper [restrike printed by the Regia Calcografia, Rome]' +p316066 +sg291132 +S'1633' +p316067 +sg291134 +S'Spanish Gentlemen, Polish and French Horsemen' +p316068 +sg291136 +g27 +sg291137 +S'Stefano Della Bella' +p316069 +sa(dp316070 +g291130 +S'etching on wove paper [restrike printed by the Regia Calcografia, Rome]' +p316071 +sg291132 +S'1633' +p316072 +sg291134 +S'Polish Nobles, His Excellency the Ambassador,and His Carriage' +p316073 +sg291136 +g27 +sg291137 +S'Stefano Della Bella' +p316074 +sa(dp316075 +g291134 +S'The Drunken Silenus' +p316076 +sg291137 +S'Jusepe de Ribera' +p316077 +sg291130 +S'etching with engraving in brown on heavy wove paper [restrike printed by the Regia Calcografia, Rome]' +p316078 +sg291132 +S'1628' +p316079 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067c9.jpg' +p316080 +sg291136 +g27 +sa(dp316081 +g291130 +S'engraving and etching on wove paper' +p316082 +sg291132 +S'1850' +p316083 +sg291134 +S'Veduta dei Conicoli in Tivoli' +p316084 +sg291136 +g27 +sg291137 +S'Augusto Marchetti' +p316085 +sa(dp316086 +g291130 +S'engraving and etching on wove paper' +p316087 +sg291132 +S'1816' +p316088 +sg291134 +S'La Cascata del Velino a Terni' +p316089 +sg291136 +g27 +sg291137 +S'Wilhelm Friedrich Gmelin' +p316090 +sa(dp316091 +g291130 +S'1 vol: 88 etchings on 35 sheets of wove paper [restrikes printed by the Regia Calcografia, Rome]' +p316092 +sg291132 +S'unknown date\n' +p316093 +sg291134 +S'Volume of Etchings by Salvator Rosa' +p316094 +sg291136 +g27 +sg291137 +S'Salvator Rosa' +p316095 +sa(dp316096 +g291134 +S'Le Nozze degli Dei: Frontispiece' +p316097 +sg291137 +S'Stefano Della Bella' +p316098 +sg291130 +S'etching on laid paper [restrike]' +p316099 +sg291132 +S'1637' +p316100 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca3f.jpg' +p316101 +sg291136 +g27 +sa(dp316102 +g291134 +S'Prima Scena Representanta Firenza' +p316103 +sg291137 +S'Stefano Della Bella' +p316104 +sg291130 +S'etching on laid paper [restrike]' +p316105 +sg291132 +S'1637' +p316106 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca40.jpg' +p316107 +sg291136 +g27 +sa(dp316108 +g291134 +S'Seconda Scena Selva di Diana' +p316109 +sg291137 +S'Stefano Della Bella' +p316110 +sg291130 +S'etching on laid paper [restrike]' +p316111 +sg291132 +S'1637' +p316112 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca41.jpg' +p316113 +sg291136 +g27 +sa(dp316114 +g291134 +S'Terza Scena Giardins di Venere' +p316115 +sg291137 +S'Stefano Della Bella' +p316116 +sg291130 +S'etching on laid paper [restrike]' +p316117 +sg291132 +S'1637' +p316118 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca42.jpg' +p316119 +sg291136 +g27 +sa(dp316120 +g291134 +S'Quarta Scena di Mare' +p316121 +sg291137 +S'Stefano Della Bella' +p316122 +sg291130 +S'etching on laid paper [restrike]' +p316123 +sg291132 +S'1637' +p316124 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca43.jpg' +p316125 +sg291136 +g27 +sa(dp316126 +g291134 +S"Scena Quinta di'Inferno" +p316127 +sg291137 +S'Stefano Della Bella' +p316128 +sg291130 +S'etching on laid paper [restrike]' +p316129 +sg291132 +S'1637' +p316130 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca44.jpg' +p316131 +sg291136 +g27 +sa(dp316132 +g291134 +S'Sesta Scena di Tutto Cielo' +p316133 +sg291137 +S'Stefano Della Bella' +p316134 +sg291130 +S'etching on laid paper [restrike]' +p316135 +sg291132 +S'1637' +p316136 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca45.jpg' +p316137 +sg291136 +g27 +sa(dp316138 +g291134 +S"Scena Grotto d'Vulcano" +p316139 +sg291137 +S'Stefano Della Bella' +p316140 +sg291130 +S'etching on laid paper [restrike]' +p316141 +sg291132 +S'1637' +p316142 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca46.jpg' +p316143 +sg291136 +g27 +sa(dp316144 +g291134 +S'The Great Stair-Case' +p316145 +sg291137 +S'Stefano Della Bella' +p316146 +sg291130 +S'etching on laid paper [restrike]' +p316147 +sg291132 +S'probably 1653' +p316148 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca47.jpg' +p316149 +sg291136 +g27 +sa(dp316150 +g291134 +S'Colossal Statue of the Apennines' +p316151 +sg291137 +S'Stefano Della Bella' +p316152 +sg291130 +S'etching on laid paper [restrike]' +p316153 +sg291132 +S'probably 1653' +p316154 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca48.jpg' +p316155 +sg291136 +g27 +sa(dp316156 +g291134 +S'The Water Spray' +p316157 +sg291137 +S'Stefano Della Bella' +p316158 +sg291130 +S'etching on laid paper [restrike]' +p316159 +sg291132 +S'probably 1653' +p316160 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca49.jpg' +p316161 +sg291136 +g27 +sa(dp316162 +g291134 +S'A Grotto Seen from Two Different View Points' +p316163 +sg291137 +S'Stefano Della Bella' +p316164 +sg291130 +S'etching on laid paper [restrike]' +p316165 +sg291132 +S'probably 1653' +p316166 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca4a.jpg' +p316167 +sg291136 +g27 +sa(dp316168 +g291134 +S'The Avenue of Fountains' +p316169 +sg291137 +S'Stefano Della Bella' +p316170 +sg291130 +S'etching on laid paper [restrike]' +p316171 +sg291132 +S'probably 1653' +p316172 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca4b.jpg' +p316173 +sg291136 +g27 +sa(dp316174 +g291134 +S'The Inhabited Tree' +p316175 +sg291137 +S'Stefano Della Bella' +p316176 +sg291130 +S'etching on laid paper [restrike]' +p316177 +sg291132 +S'probably 1653' +p316178 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca4c.jpg' +p316179 +sg291136 +g27 +sa(dp316180 +g291134 +S'Tournament Executed in Florence for the Marriage of Grand Duke Ferdinand I' +p316181 +sg291137 +S'Stefano Della Bella' +p316182 +sg291130 +S'etching on laid paper [restrike]' +p316183 +sg291132 +S'1637' +p316184 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca4d.jpg' +p316185 +sg291136 +g27 +sa(dp316186 +g291134 +S'Parade with a Chariot Having the Form of a Ship' +p316187 +sg291137 +S'Stefano Della Bella' +p316188 +sg291130 +S'etching on laid paper [restrike]' +p316189 +sg291132 +S'1652' +p316190 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca4e.jpg' +p316191 +sg291136 +g27 +sa(dp316192 +g291134 +S'Entrance of the Prince of Tuscany' +p316193 +sg291137 +S'Stefano Della Bella' +p316194 +sg291130 +S'etching on laid paper [restrike]' +p316195 +sg291132 +S'1661' +p316196 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca4f.jpg' +p316197 +sg291136 +g27 +sa(dp316198 +g291134 +S'The Prince of Tuscany, His Horse Troops and Carriages around Mount Atlas' +p316199 +sg291137 +S'Stefano Della Bella' +p316200 +sg291130 +S'etching on laid paper [restrike]' +p316201 +sg291132 +S'1661' +p316202 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca50.jpg' +p316203 +sg291136 +g27 +sa(dp316204 +g291134 +S'The Banquet of the Piacevoli' +p316205 +sg291137 +S'Stefano Della Bella' +p316206 +sg291130 +S'etching on laid paper [restrike]' +p316207 +sg291132 +S'1627' +p316208 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca51.jpg' +p316209 +sg291136 +g27 +sa(dp316210 +g291134 +S'Clovis and Clotilda' +p316211 +sg291137 +S'Stefano Della Bella' +p316212 +sg291130 +S'etching and engraving on laid paper [restrike]' +p316213 +sg291132 +S'unknown date\n' +p316214 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca52.jpg' +p316215 +sg291136 +g27 +sa(dp316216 +g291134 +S'Death on the Battle Field' +p316217 +sg291137 +S'Stefano Della Bella' +p316218 +sg291130 +S'etching on laid paper [restrike]' +p316219 +sg291132 +S'unknown date\n' +p316220 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca53.jpg' +p316221 +sg291136 +g27 +sa(dp316222 +g291134 +S'The Flight into Egypt' +p316223 +sg291137 +S'Stefano Della Bella' +p316224 +sg291130 +S'etching on laid paper [restrike]' +p316225 +sg291132 +S'unknown date\n' +p316226 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca54.jpg' +p316227 +sg291136 +g27 +sa(dp316228 +g291134 +S'The Flight into Egypt' +p316229 +sg291137 +S'Stefano Della Bella' +p316230 +sg291130 +S'etching on laid paper [restrike]' +p316231 +sg291132 +S'probably 1662' +p316232 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca55.jpg' +p316233 +sg291136 +g27 +sa(dp316234 +g291134 +S'Standing Sailor Talking with a Seated Levantine' +p316235 +sg291137 +S'Stefano Della Bella' +p316236 +sg291130 +S'etching on laid paper [restrike]' +p316237 +sg291132 +S'unknown date\n' +p316238 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca56.jpg' +p316239 +sg291136 +g27 +sa(dp316240 +g291134 +S'Seated White Sailor and a Standing Negro Sailor' +p316241 +sg291137 +S'Stefano Della Bella' +p316242 +sg291130 +S'etching on laid paper [restrike]' +p316243 +sg291132 +S'unknown date\n' +p316244 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca57.jpg' +p316245 +sg291136 +g27 +sa(dp316246 +g291134 +S'Hungarian Cavalier' +p316247 +sg291137 +S'Stefano Della Bella' +p316248 +sg291130 +S'etching on laid paper [restrike]' +p316249 +sg291132 +S'unknown date\n' +p316250 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca58.jpg' +p316251 +sg291136 +g27 +sa(dp316252 +g291134 +S'Polish Cavalier' +p316253 +sg291137 +S'Stefano Della Bella' +p316254 +sg291130 +S'etching on laid paper [restrike]' +p316255 +sg291132 +S'unknown date\n' +p316256 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca59.jpg' +p316257 +sg291136 +g27 +sa(dp316258 +g291134 +S'Two Polish Cavaliers' +p316259 +sg291137 +S'Stefano Della Bella' +p316260 +sg291130 +S'etching on laid paper [restrike]' +p316261 +sg291132 +S'unknown date\n' +p316262 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca5a.jpg' +p316263 +sg291136 +g27 +sa(dp316264 +g291134 +S'Hungarian Cavalier' +p316265 +sg291137 +S'Stefano Della Bella' +p316266 +sg291130 +S'etching on laid paper [restrike]' +p316267 +sg291132 +S'unknown date\n' +p316268 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca5b.jpg' +p316269 +sg291136 +g27 +sa(dp316270 +g291134 +S'Negro Cavalier' +p316271 +sg291137 +S'Stefano Della Bella' +p316272 +sg291130 +S'etching on laid paper [restrike]' +p316273 +sg291132 +S'unknown date\n' +p316274 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca5c.jpg' +p316275 +sg291136 +g27 +sa(dp316276 +g291134 +S'Polish Hussar' +p316277 +sg291137 +S'Stefano Della Bella' +p316278 +sg291130 +S'etching on laid paper [restrike]' +p316279 +sg291132 +S'unknown date\n' +p316280 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca5d.jpg' +p316281 +sg291136 +g27 +sa(dp316282 +g291134 +S'Hungarian Cavalier' +p316283 +sg291137 +S'Stefano Della Bella' +p316284 +sg291130 +S'etching on laid paper [restrike]' +p316285 +sg291132 +S'unknown date\n' +p316286 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca5e.jpg' +p316287 +sg291136 +g27 +sa(dp316288 +g291130 +S'etching on laid paper [restrike]' +p316289 +sg291132 +S'unknown date\n' +p316290 +sg291134 +S'Hungarian Cavalier' +p316291 +sg291136 +g27 +sg291137 +S'Stefano Della Bella' +p316292 +sa(dp316293 +g291134 +S'Polish Cavalier' +p316294 +sg291137 +S'Stefano Della Bella' +p316295 +sg291130 +S'etching on laid paper [restrike]' +p316296 +sg291132 +S'unknown date\n' +p316297 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca5f.jpg' +p316298 +sg291136 +g27 +sa(dp316299 +g291134 +S'Negro Cavalier' +p316300 +sg291137 +S'Stefano Della Bella' +p316301 +sg291130 +S'etching on laid paper [restrike]' +p316302 +sg291132 +S'unknown date\n' +p316303 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca60.jpg' +p316304 +sg291136 +g27 +sa(dp316305 +g291134 +S'Moorish Cavalier' +p316306 +sg291137 +S'Stefano Della Bella' +p316307 +sg291130 +S'etching on laid paper [restrike]' +p316308 +sg291132 +S'unknown date\n' +p316309 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca61.jpg' +p316310 +sg291136 +g27 +sa(dp316311 +g291134 +S'Satyrs and Faun' +p316312 +sg291137 +S'Stefano Della Bella' +p316313 +sg291130 +S'etching on laid paper [restrike]' +p316314 +sg291132 +S'unknown date\n' +p316315 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca62.jpg' +p316316 +sg291136 +g27 +sa(dp316317 +g291130 +S'etching on laid paper [restrike]' +p316318 +sg291132 +S'unknown date\n' +p316319 +sg291134 +S'Herd of Cows and Two Peasants' +p316320 +sg291136 +g27 +sg291137 +S'Stefano Della Bella' +p316321 +sa(dp316322 +g291134 +S'Cow and Young Shepherd at a Fountain' +p316323 +sg291137 +S'Stefano Della Bella' +p316324 +sg291130 +S'etching on laid paper [restrike]' +p316325 +sg291132 +S'unknown date\n' +p316326 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca63.jpg' +p316327 +sg291136 +g27 +sa(dp316328 +g291134 +S'Peasant Seated on a Horse with Cows, Sheep, and Goats' +p316329 +sg291137 +S'Stefano Della Bella' +p316330 +sg291130 +S'etching on laid paper [restrike]' +p316331 +sg291132 +S'unknown date\n' +p316332 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca64.jpg' +p316333 +sg291136 +g27 +sa(dp316334 +g291134 +S'Shepherd on a Horse Driving a Herd of Various Animals' +p316335 +sg291137 +S'Stefano Della Bella' +p316336 +sg291130 +S'etching on laid paper [restrike]' +p316337 +sg291132 +S'unknown date\n' +p316338 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca65.jpg' +p316339 +sg291136 +g27 +sa(dp316340 +g291134 +S'Two Women Fording a Creek with a Herd of Cows' +p316341 +sg291137 +S'Stefano Della Bella' +p316342 +sg291130 +S'etching on laid paper [restrike]' +p316343 +sg291132 +S'unknown date\n' +p316344 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca66.jpg' +p316345 +sg291136 +g27 +sa(dp316346 +g291134 +S"Cosimo de Medici, Prince of Tuscany and Marguerite Louise d'Orl\xc3\xa9ans" +p316347 +sg291137 +S'Stefano Della Bella' +p316348 +sg291130 +S'etching on laid paper [restrike]' +p316349 +sg291132 +S'unknown date\n' +p316350 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca67.jpg' +p316351 +sg291136 +g27 +sa(dp316352 +g291134 +S'Nymph Holding a Large Dog by a Collar' +p316353 +sg291137 +S'Stefano Della Bella' +p316354 +sg291130 +S'etching on laid paper [restrike]' +p316355 +sg291132 +S'unknown date\n' +p316356 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca68.jpg' +p316357 +sg291136 +g27 +sa(dp316358 +g291134 +S'Woman Seated on a Stool' +p316359 +sg291137 +S'Stefano Della Bella' +p316360 +sg291130 +S'etching on laid paper [restrike]' +p316361 +sg291132 +S'unknown date\n' +p316362 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca69.jpg' +p316363 +sg291136 +g27 +sa(dp316364 +g291134 +S'The Toilette of a Bride' +p316365 +sg291137 +S'Stefano Della Bella' +p316366 +sg291130 +S'etching on laid paper [restrike]' +p316367 +sg291132 +S'unknown date\n' +p316368 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca6a.jpg' +p316369 +sg291136 +g27 +sa(dp316370 +g291134 +S'Woman with a Young Bull' +p316371 +sg291137 +S'Stefano Della Bella' +p316372 +sg291130 +S'etching on laid paper [restrike]' +p316373 +sg291132 +S'unknown date\n' +p316374 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca6b.jpg' +p316375 +sg291136 +g27 +sa(dp316376 +g291134 +S'Child Holding a Puppy' +p316377 +sg291137 +S'Stefano Della Bella' +p316378 +sg291130 +S'etching on laid paper [restrike]' +p316379 +sg291132 +S'unknown date\n' +p316380 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca6c.jpg' +p316381 +sg291136 +g27 +sa(dp316382 +g291134 +S'Bear Running to the Left' +p316383 +sg291137 +S'Stefano Della Bella' +p316384 +sg291130 +S'etching on laid paper [restrike]' +p316385 +sg291132 +S'unknown date\n' +p316386 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca6d.jpg' +p316387 +sg291136 +g27 +sa(dp316388 +g291134 +S'Doe in a Marsh Attacked by Two Dogs' +p316389 +sg291137 +S'Stefano Della Bella' +p316390 +sg291130 +S'etching on laid paper [restrike]' +p316391 +sg291132 +S'unknown date\n' +p316392 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca6e.jpg' +p316393 +sg291136 +g27 +sa(dp316394 +g291134 +S'Bear Chased by a Dog' +p316395 +sg291137 +S'Stefano Della Bella' +p316396 +sg291130 +S'etching on laid paper [restrike]' +p316397 +sg291132 +S'unknown date\n' +p316398 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca6f.jpg' +p316399 +sg291136 +g27 +sa(dp316400 +g291134 +S'Deer Chased by Two Cavaliers' +p316401 +sg291137 +S'Stefano Della Bella' +p316402 +sg291130 +S'etching on laid paper [restrike]' +p316403 +sg291132 +S'unknown date\n' +p316404 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca70.jpg' +p316405 +sg291136 +g27 +sa(dp316406 +g291134 +S'Small Deer Chased by a Cavalier' +p316407 +sg291137 +S'Stefano Della Bella' +p316408 +sg291130 +S'etching on laid paper [restrike]' +p316409 +sg291132 +S'unknown date\n' +p316410 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca71.jpg' +p316411 +sg291136 +g27 +sa(dp316412 +g291134 +S'Deer Chased by a Dog to the Right' +p316413 +sg291137 +S'Stefano Della Bella' +p316414 +sg291130 +S'etching on laid paper [restrike]' +p316415 +sg291132 +S'unknown date\n' +p316416 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca72.jpg' +p316417 +sg291136 +g27 +sa(dp316418 +g291134 +S'Deer Chased by Two Dogs to the Left' +p316419 +sg291137 +S'Stefano Della Bella' +p316420 +sg291130 +S'etching on laid paper [restrike]' +p316421 +sg291132 +S'unknown date\n' +p316422 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca73.jpg' +p316423 +sg291136 +g27 +sa(dp316424 +g291134 +S'Stag at Bay' +p316425 +sg291137 +S'Stefano Della Bella' +p316426 +sg291130 +S'etching on laid paper [restrike]' +p316427 +sg291132 +S'unknown date\n' +p316428 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca74.jpg' +p316429 +sg291136 +g27 +sa(dp316430 +g291134 +S'Ostrich Hunt' +p316431 +sg291137 +S'Stefano Della Bella' +p316432 +sg291130 +S'etching on laid paper [restrike]' +p316433 +sg291132 +S'unknown date\n' +p316434 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca75.jpg' +p316435 +sg291136 +g27 +sa(dp316436 +g291134 +S'Two Eagles with Tower in Background' +p316437 +sg291137 +S'Stefano Della Bella' +p316438 +sg291130 +S'etching on laid paper [restrike]' +p316439 +sg291132 +S'unknown date\n' +p316440 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca76.jpg' +p316441 +sg291136 +g27 +sa(dp316442 +g291134 +S'Two Eagles on a Promitory' +p316443 +sg291137 +S'Stefano Della Bella' +p316444 +sg291130 +S'etching on laid paper [restrike]' +p316445 +sg291132 +S'unknown date\n' +p316446 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca77.jpg' +p316447 +sg291136 +g27 +sa(dp316448 +g291134 +S'Two Eagles, One Eating a Small Lamb' +p316449 +sg291137 +S'Stefano Della Bella' +p316450 +sg291130 +S'etching on laid paper [restrike]' +p316451 +sg291132 +S'unknown date\n' +p316452 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca78.jpg' +p316453 +sg291136 +g27 +sa(dp316454 +g291134 +S'Two Eagles, Both with Heads Turned to the Left' +p316455 +sg291137 +S'Stefano Della Bella' +p316456 +sg291130 +S'etching on laid paper [restrike]' +p316457 +sg291132 +S'unknown date\n' +p316458 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca79.jpg' +p316459 +sg291136 +g27 +sa(dp316460 +g291134 +S'Two Eagles, Both with Heads Turned to the Right' +p316461 +sg291137 +S'Stefano Della Bella' +p316462 +sg291130 +S'etching on laid paper [restrike]' +p316463 +sg291132 +S'unknown date\n' +p316464 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca7a.jpg' +p316465 +sg291136 +g27 +sa(dp316466 +g291134 +S'Two Eagles, Both with Heads Turned to the Left, On a High Cliff' +p316467 +sg291137 +S'Stefano Della Bella' +p316468 +sg291130 +S'etching on laid paper [restrike]' +p316469 +sg291132 +S'unknown date\n' +p316470 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca7b.jpg' +p316471 +sg291136 +g27 +sa(dp316472 +g291134 +S'Head of a Stag Turned Right' +p316473 +sg291137 +S'Stefano Della Bella' +p316474 +sg291130 +S'etching on laid paper [restrike]' +p316475 +sg291132 +S'unknown date\n' +p316476 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca7c.jpg' +p316477 +sg291136 +g27 +sa(dp316478 +g291134 +S'Child Playing with a Dog' +p316479 +sg291137 +S'Stefano Della Bella' +p316480 +sg291130 +S'etching on laid paper [restrike]' +p316481 +sg291132 +S'unknown date\n' +p316482 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca7d.jpg' +p316483 +sg291136 +g27 +sa(dp316484 +g291134 +S'Child Wearing a Mask' +p316485 +sg291137 +S'Stefano Della Bella' +p316486 +sg291130 +S'etching on laid paper [restrike]' +p316487 +sg291132 +S'unknown date\n' +p316488 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca7e.jpg' +p316489 +sg291136 +g27 +sa(dp316490 +g291134 +S'Academy of a Young Man' +p316491 +sg291137 +S'Stefano Della Bella' +p316492 +sg291130 +S'etching on laid paper [restrike]' +p316493 +sg291132 +S'unknown date\n' +p316494 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca7f.jpg' +p316495 +sg291136 +g27 +sa(dp316496 +g291134 +S'Four Turks Wearing Turbans' +p316497 +sg291137 +S'Stefano Della Bella' +p316498 +sg291130 +S'etching on laid paper [restrike]' +p316499 +sg291132 +S'unknown date\n' +p316500 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca80.jpg' +p316501 +sg291136 +g27 +sa(dp316502 +g291134 +S'Four Turks and a Negro' +p316503 +sg291137 +S'Stefano Della Bella' +p316504 +sg291130 +S'etching on laid paper [restrike]' +p316505 +sg291132 +S'unknown date\n' +p316506 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca81.jpg' +p316507 +sg291136 +g27 +sa(dp316508 +g291134 +S'Polish Attendant Holding the Bridle of a Horse' +p316509 +sg291137 +S'Stefano Della Bella' +p316510 +sg291130 +S'etching on laid paper [restrike]' +p316511 +sg291132 +S'unknown date\n' +p316512 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca82.jpg' +p316513 +sg291136 +g27 +sa(dp316514 +g291134 +S'Pole Holding the Bridle of a Horse while Speaking with Two Other Men' +p316515 +sg291137 +S'Stefano Della Bella' +p316516 +sg291130 +S'etching on laid paper [restrike]' +p316517 +sg291132 +S'unknown date\n' +p316518 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca83.jpg' +p316519 +sg291136 +g27 +sa(dp316520 +g291134 +S'Negro Feeding a Horse' +p316521 +sg291137 +S'Stefano Della Bella' +p316522 +sg291130 +S'etching on laid paper [restrike]' +p316523 +sg291132 +S'probably 1662' +p316524 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca84.jpg' +p316525 +sg291136 +g27 +sa(dp316526 +g291134 +S'Suicide of Dido' +p316527 +sg291137 +S'Stefano Della Bella' +p316528 +sg291130 +S'etching on laid paper [restrike]' +p316529 +sg291132 +S'unknown date\n' +p316530 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca85.jpg' +p316531 +sg291136 +g27 +sa(dp316532 +g291134 +S'Polish Attendant with Two Horses' +p316533 +sg291137 +S'Stefano Della Bella' +p316534 +sg291130 +S'etching on laid paper [restrike]' +p316535 +sg291132 +S'unknown date\n' +p316536 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca86.jpg' +p316537 +sg291136 +g27 +sa(dp316538 +g291134 +S'An Old Turk with Turban Seated on a Rock' +p316539 +sg291137 +S'Stefano Della Bella' +p316540 +sg291130 +S'etching on laid paper [restrike]' +p316541 +sg291132 +S'unknown date\n' +p316542 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca87.jpg' +p316543 +sg291136 +g27 +sa(dp316544 +g291134 +S'Soldier Holding a Fowl by the Feet' +p316545 +sg291137 +S'Stefano Della Bella' +p316546 +sg291130 +S'etching on laid paper [restrike]' +p316547 +sg291132 +S'unknown date\n' +p316548 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca88.jpg' +p316549 +sg291136 +g27 +sa(dp316550 +g291134 +S'Pole Holding a Hatchet with His Left Hand' +p316551 +sg291137 +S'Stefano Della Bella' +p316552 +sg291130 +S'etching on laid paper [restrike]' +p316553 +sg291132 +S'unknown date\n' +p316554 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca89.jpg' +p316555 +sg291136 +g27 +sa(dp316556 +g291134 +S'Study of Heads, One Turned to the Right and the Other Turned Left' +p316557 +sg291137 +S'Stefano Della Bella' +p316558 +sg291130 +S'etching on laid paper [restrike]' +p316559 +sg291132 +S'unknown date\n' +p316560 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca8a.jpg' +p316561 +sg291136 +g27 +sa(dp316562 +g291134 +S'Frightened Soldier and Man with Fur Cap' +p316563 +sg291137 +S'Stefano Della Bella' +p316564 +sg291130 +S'etching on laid paper [restrike]' +p316565 +sg291132 +S'unknown date\n' +p316566 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca8b.jpg' +p316567 +sg291136 +g27 +sa(dp316568 +g291134 +S'Portrait of a Man' +p316569 +sg291137 +S'Stefano Della Bella' +p316570 +sg291130 +S'etching on laid paper [restrike]' +p316571 +sg291132 +S'unknown date\n' +p316572 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca8c.jpg' +p316573 +sg291136 +g27 +sa(dp316574 +g291134 +S'Head of a Man Turned Left' +p316575 +sg291137 +S'Stefano Della Bella' +p316576 +sg291130 +S'etching on laid paper [restrike]' +p316577 +sg291132 +S'unknown date\n' +p316578 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca8d.jpg' +p316579 +sg291136 +g27 +sa(dp316580 +g291134 +S'Head of a Horse Seen in Profile and in Three-Quarters' +p316581 +sg291137 +S'Stefano Della Bella' +p316582 +sg291130 +S'etching on laid paper [restrike]' +p316583 +sg291132 +S'unknown date\n' +p316584 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca8e.jpg' +p316585 +sg291136 +g27 +sa(dp316586 +g291134 +S'Two Turks' +p316587 +sg291137 +S'Stefano Della Bella' +p316588 +sg291130 +S'etching on laid paper [restrike]' +p316589 +sg291132 +S'unknown date\n' +p316590 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca8f.jpg' +p316591 +sg291136 +g27 +sa(dp316592 +g291134 +S'Three Hungarians' +p316593 +sg291137 +S'Stefano Della Bella' +p316594 +sg291130 +S'etching on laid paper [restrike]' +p316595 +sg291132 +S'unknown date\n' +p316596 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca90.jpg' +p316597 +sg291136 +g27 +sa(dp316598 +g291134 +S'Sailors Seated on a Bank' +p316599 +sg291137 +S'Stefano Della Bella' +p316600 +sg291130 +S'etching on laid paper [restrike]' +p316601 +sg291132 +S'unknown date\n' +p316602 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca91.jpg' +p316603 +sg291136 +g27 +sa(dp316604 +g291134 +S'Two Sailors Standing near a Large Bale of Merchandise' +p316605 +sg291137 +S'Stefano Della Bella' +p316606 +sg291130 +S'etching on laid paper [restrike]' +p316607 +sg291132 +S'unknown date\n' +p316608 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca92.jpg' +p316609 +sg291136 +g27 +sa(dp316610 +g291134 +S'Two Children Embracing [upper half]' +p316611 +sg291137 +S'Stefano Della Bella' +p316612 +sg291130 +S'two etchings on one sheet of laid paper [restrikes]' +p316613 +sg291132 +S'unknown date\n' +p316614 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca93.jpg' +p316615 +sg291136 +g27 +sa(dp316616 +g291134 +S'Arms with a Dedication to Grand Duke Ferdinand II' +p316617 +sg291137 +S'Stefano Della Bella' +p316618 +sg291130 +S'etching on laid paper [restrike]' +p316619 +sg291132 +S'unknown date\n' +p316620 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca94.jpg' +p316621 +sg291136 +g27 +sa(dp316622 +g291134 +S'Emperor Ferdinand II' +p316623 +sg291137 +S'Stefano Della Bella' +p316624 +sg291130 +S'etching on laid paper [restrike]' +p316625 +sg291132 +S'unknown date\n' +p316626 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca95.jpg' +p316627 +sg291136 +g27 +sa(dp316628 +g291134 +S'Facade of the Church of San Lorenzo, Florence' +p316629 +sg291137 +S'Stefano Della Bella' +p316630 +sg291130 +S'etching on laid paper [restrike]' +p316631 +sg291132 +S'1637' +p316632 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca96.jpg' +p316633 +sg291136 +g27 +sa(dp316634 +g291134 +S'Funeral of Prince Francesco de Medici' +p316635 +sg291137 +S'Stefano Della Bella' +p316636 +sg291130 +S'etching on laid paper [restrike]' +p316637 +sg291132 +S'unknown date\n' +p316638 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca97.jpg' +p316639 +sg291136 +g27 +sa(dp316640 +g291134 +S'Francesco de Medici, Prince of Tuscany' +p316641 +sg291137 +S'Stefano Della Bella' +p316642 +sg291130 +S'etching on laid paper [restrike]' +p316643 +sg291132 +S'unknown date\n' +p316644 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca98.jpg' +p316645 +sg291136 +g27 +sa(dp316646 +g291134 +S'Four Emblems for the Funeral of Prince Francesco de Medici' +p316647 +sg291137 +S'Stefano Della Bella' +p316648 +sg291130 +S'4 etchings on one sheet of laid paper [restrikes]' +p316649 +sg291132 +S'unknown date\n' +p316650 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca99.jpg' +p316651 +sg291136 +g27 +sa(dp316652 +g291134 +S'Four Emblems for the Funeral of Prince Francesco de Medici' +p316653 +sg291137 +S'Stefano Della Bella' +p316654 +sg291130 +S'4 etchings on one sheet of laid paper [restrikes]' +p316655 +sg291132 +S'unknown date\n' +p316656 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca9a.jpg' +p316657 +sg291136 +g27 +sa(dp316658 +g291134 +S'Emblem' +p316659 +sg291137 +S'Stefano Della Bella' +p316660 +sg291130 +S'etching on laid paper [restrike]' +p316661 +sg291132 +S'unknown date\n' +p316662 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca9b.jpg' +p316663 +sg291136 +g27 +sa(dp316664 +g291134 +S'Screen Depicting the Italian Rebus of Fortune' +p316665 +sg291137 +S'Stefano Della Bella' +p316666 +sg291130 +S'etching on laid paper [restrike]' +p316667 +sg291132 +S'unknown date\n' +p316668 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca9c.jpg' +p316669 +sg291136 +g27 +sa(dp316670 +g291134 +S'Screen Depicting the Italian Rebus of Love' +p316671 +sg291137 +S'Stefano Della Bella' +p316672 +sg291130 +S'etching on laid paper [restrike]' +p316673 +sg291132 +S'unknown date\n' +p316674 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca9d.jpg' +p316675 +sg291136 +g27 +sa(dp316676 +g291134 +S'Soldiers' +p316677 +sg291137 +S'Stefano Della Bella' +p316678 +sg291130 +S'5 etchings on 1 sheet of laid paper [restrikes]' +p316679 +sg291132 +S'unknown date\n' +p316680 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca9e.jpg' +p316681 +sg291136 +g27 +sa(dp316682 +g291134 +S'The Marriage of Ferdinando and Christine of Lorraine' +p316683 +sg291137 +S'Jacques Callot' +p316684 +sg291130 +S'engraving on laid paper [restrike]' +p316685 +sg291132 +S'c. 1614' +p316686 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008de3.jpg' +p316687 +sg291136 +g27 +sa(dp316688 +g291134 +S'Grand Duchess at the Procession of the Young Girls' +p316689 +sg291137 +S'Jacques Callot' +p316690 +sg291130 +S'engraving on laid paper [restrike]' +p316691 +sg291132 +S'c. 1614' +p316692 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008de4.jpg' +p316693 +sg291136 +g27 +sa(dp316694 +g291134 +S'Restoration of the Duomo, Florence' +p316695 +sg291137 +S'Jacques Callot' +p316696 +sg291130 +S'engraving on laid paper [restrike]' +p316697 +sg291132 +S'c. 1614' +p316698 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008de5.jpg' +p316699 +sg291136 +g27 +sa(dp316700 +g291134 +S'Construction and Fortification of the Port of Livorno' +p316701 +sg291137 +S'Jacques Callot' +p316702 +sg291130 +S'engraving on laid paper [restrike]' +p316703 +sg291132 +S'c. 1614' +p316704 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008de6.jpg' +p316705 +sg291136 +g27 +sa(dp316706 +g291134 +S'The Hiring of the Troops' +p316707 +sg291137 +S'Jacques Callot' +p316708 +sg291130 +S'engraving on laid paper [restrike]' +p316709 +sg291132 +S'c. 1614' +p316710 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008de7.jpg' +p316711 +sg291136 +g27 +sa(dp316712 +g291134 +S'The Troops on the March' +p316713 +sg291137 +S'Jacques Callot' +p316714 +sg291130 +S'engraving on laid paper [restrike]' +p316715 +sg291132 +S'c. 1614' +p316716 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008de8.jpg' +p316717 +sg291136 +g27 +sa(dp316718 +g291134 +S'Restoration of the Aquaduct at Pisa' +p316719 +sg291137 +S'Jacques Callot' +p316720 +sg291130 +S'engraving on laid paper [restrike]' +p316721 +sg291132 +S'c. 1614' +p316722 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008de9.jpg' +p316723 +sg291136 +g27 +sa(dp316724 +g291134 +S'Assault on Two Fortresses' +p316725 +sg291137 +S'Jacques Callot' +p316726 +sg291130 +S'engraving on laid paper [restrike]' +p316727 +sg291132 +S'c. 1614' +p316728 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dea.jpg' +p316729 +sg291136 +g27 +sa(dp316730 +g291134 +S'The Re-embarkation of the Turks' +p316731 +sg291137 +S'Jacques Callot' +p316732 +sg291130 +S'engraving on laid paper [restrike]' +p316733 +sg291132 +S'c. 1614' +p316734 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008deb.jpg' +p316735 +sg291136 +g27 +sa(dp316736 +g291134 +S'The Troops Forcing the Gate of a Town' +p316737 +sg291137 +S'Jacques Callot' +p316738 +sg291130 +S'engraving on laid paper [restrike]' +p316739 +sg291132 +S'c. 1614' +p316740 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dec.jpg' +p316741 +sg291136 +g27 +sa(dp316742 +g291134 +S'Taking of Bone' +p316743 +sg291137 +S'Jacques Callot' +p316744 +sg291130 +S'engraving on laid paper [restrike]' +p316745 +sg291132 +S'c. 1614' +p316746 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008ded.jpg' +p316747 +sg291136 +g27 +sa(dp316748 +g291134 +S'Assault on the Outer Forts of Bone' +p316749 +sg291137 +S'Jacques Callot' +p316750 +sg291130 +S'engraving on laid paper [restrike]' +p316751 +sg291132 +S'c. 1614' +p316752 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dee.jpg' +p316753 +sg291136 +g27 +sa(dp316754 +g291134 +S'The Defeat of the Turkish Cavalry' +p316755 +sg291137 +S'Jacques Callot' +p316756 +sg291130 +S'engraving on laid paper [restrike]' +p316757 +sg291132 +S'c. 1614' +p316758 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008def.jpg' +p316759 +sg291136 +g27 +sa(dp316760 +g291134 +S'The First Naval Battle' +p316761 +sg291137 +S'Jacques Callot' +p316762 +sg291130 +S'engraving on laid paper [restrike]' +p316763 +sg291132 +S'c. 1614' +p316764 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008df0.jpg' +p316765 +sg291136 +g27 +sa(dp316766 +g291134 +S'The Second Naval Battle' +p316767 +sg291137 +S'Jacques Callot' +p316768 +sg291130 +S'engraving on laid paper [restrike]' +p316769 +sg291132 +S'c. 1614' +p316770 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008df1.jpg' +p316771 +sg291136 +g27 +sa(dp316772 +g291134 +S'First Intermezzo' +p316773 +sg291137 +S'Jacques Callot' +p316774 +sg291130 +S'etching on laid paper [restrike]' +p316775 +sg291132 +S'1617' +p316776 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008df2.jpg' +p316777 +sg291136 +g27 +sa(dp316778 +g291134 +S'Second Intermezzo' +p316779 +sg291137 +S'Jacques Callot' +p316780 +sg291130 +S'etching on laid paper [restrike]' +p316781 +sg291132 +S'1617' +p316782 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008df3.jpg' +p316783 +sg291136 +g27 +sa(dp316784 +g291134 +S'Third Intermezzo' +p316785 +sg291137 +S'Jacques Callot' +p316786 +sg291130 +S'etching on laid paper [restrike]' +p316787 +sg291132 +S'1617' +p316788 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008df4.jpg' +p316789 +sg291136 +g27 +sa(dp316790 +g291134 +S'Storm Off the Coast of Barcelona' +p316791 +sg291137 +S'Jacques Callot' +p316792 +sg291130 +S'etching on laid paper [restrike]' +p316793 +sg291132 +S'1612' +p316794 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008df5.jpg' +p316795 +sg291136 +g27 +sa(dp316796 +g291134 +S'Baptism of the Prince of Spain' +p316797 +sg291137 +S'Jacques Callot' +p316798 +sg291130 +S'etching on laid paper [restrike]' +p316799 +sg291132 +S'1612' +p316800 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008df6.jpg' +p316801 +sg291136 +g27 +sa(dp316802 +g291134 +S'Marriage of Margaret of Austria and Philip III' +p316803 +sg291137 +S'Jacques Callot' +p316804 +sg291130 +S'etching on laid paper [restrike]' +p316805 +sg291132 +S'1612' +p316806 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008df7.jpg' +p316807 +sg291136 +g27 +sa(dp316808 +g291134 +S'The Envoy of Tuscany Thanking the Queen' +p316809 +sg291137 +S'Jacques Callot' +p316810 +sg291130 +S'etching on laid paper [restrike]' +p316811 +sg291132 +S'1612' +p316812 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008df8.jpg' +p316813 +sg291136 +g27 +sa(dp316814 +g291134 +S'Entry Into the Town of Ferrara' +p316815 +sg291137 +S'Jacques Callot' +p316816 +sg291130 +S'etching on laid paper [restrike]' +p316817 +sg291132 +S'1612' +p316818 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008df9.jpg' +p316819 +sg291136 +g27 +sa(dp316820 +g291134 +S'A Capucio Bringing Thanks of the King of Bavaria' +p316821 +sg291137 +S'Jacques Callot' +p316822 +sg291130 +S'etching on laid paper [restrike]' +p316823 +sg291132 +S'1612' +p316824 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dfa.jpg' +p316825 +sg291136 +g27 +sa(dp316826 +g291134 +S'The Death of the Queen' +p316827 +sg291137 +S'Jacques Callot' +p316828 +sg291130 +S'etching on laid paper [restrike]' +p316829 +sg291132 +S'1612' +p316830 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dfb.jpg' +p316831 +sg291136 +g27 +sa(dp316832 +g291134 +S'Reception of the Envoy of Poland' +p316833 +sg291137 +S'Jacques Callot' +p316834 +sg291130 +S'etching on laid paper [restrike]' +p316835 +sg291132 +S'1612' +p316836 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e01.jpg' +p316837 +sg291136 +g27 +sa(dp316838 +g291134 +S'King and Queen in Consultation about the Turks' +p316839 +sg291137 +S'Jacques Callot' +p316840 +sg291130 +S'etching on laid paper [restrike]' +p316841 +sg291132 +S'1612' +p316842 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e02.jpg' +p316843 +sg291136 +g27 +sa(dp316844 +g291134 +S'Meeting of Margaret of Austria and Philip III' +p316845 +sg291137 +S'Jacques Callot' +p316846 +sg291130 +S'etching on laid paper [restrike]' +p316847 +sg291132 +S'1612' +p316848 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e06.jpg' +p316849 +sg291136 +g27 +sa(dp316850 +g291134 +S'Arrival at Valencia' +p316851 +sg291137 +S'Jacques Callot' +p316852 +sg291130 +S'etching on laid paper [restrike]' +p316853 +sg291132 +S'1612' +p316854 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e0a.jpg' +p316855 +sg291136 +g27 +sa(dp316856 +g291134 +S'Embarkation at Genoa' +p316857 +sg291137 +S'Jacques Callot' +p316858 +sg291130 +S'etching on laid paper [restrike]' +p316859 +sg291132 +S'1612' +p316860 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e03.jpg' +p316861 +sg291136 +g27 +sa(dp316862 +g291134 +S'Reception at Mantua' +p316863 +sg291137 +S'Jacques Callot' +p316864 +sg291130 +S'etching on laid paper [restrike]' +p316865 +sg291132 +S'1612' +p316866 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e08.jpg' +p316867 +sg291136 +g27 +sa(dp316868 +g291134 +S'Papal Audience' +p316869 +sg291137 +S'Jacques Callot' +p316870 +sg291130 +S'etching on laid paper [restrike]' +p316871 +sg291132 +S'1612' +p316872 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e00.jpg' +p316873 +sg291136 +g27 +sa(dp316874 +g291134 +S'Margaret of Austria Receiving the Homage of Cardinals and Prelates' +p316875 +sg291137 +S'Raffaello Schiaminossi' +p316876 +sg291130 +S'etching on laid paper [restrike]' +p316877 +sg291132 +S'1612' +p316878 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e07.jpg' +p316879 +sg291136 +g27 +sa(dp316880 +g291134 +S'The Betrothal of Margaret of Austria to Philip III, King of Spain' +p316881 +sg291137 +S'Raffaello Schiaminossi' +p316882 +sg291130 +S'etching on laid paper [restrike]' +p316883 +sg291132 +S'1612' +p316884 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e04.jpg' +p316885 +sg291136 +g27 +sa(dp316886 +g291134 +S'Margaret of Austria Being Carried in a Chaise' +p316887 +sg291137 +S'Raffaello Schiaminossi' +p316888 +sg291130 +S'etching on laid paper [restrike]' +p316889 +sg291132 +S'1612' +p316890 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e05.jpg' +p316891 +sg291136 +g27 +sa(dp316892 +g291134 +S'Margaret of Austria on Horseback' +p316893 +sg291137 +S'Raffaello Schiaminossi' +p316894 +sg291130 +S'etching on laid paper [restrike]' +p316895 +sg291132 +S'1612' +p316896 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e0b.jpg' +p316897 +sg291136 +g27 +sa(dp316898 +g291134 +S'Philip of Spain Before Margaret of Austria' +p316899 +sg291137 +S'Antonio Tempesta' +p316900 +sg291130 +S'etching on laid paper [restrike]' +p316901 +sg291132 +S'1612' +p316902 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067c8.jpg' +p316903 +sg291136 +g27 +sa(dp316904 +g291134 +S'Philip II of Spain on His Throne' +p316905 +sg291137 +S'Antonio Tempesta' +p316906 +sg291130 +S'etching on laid paper [restrike]' +p316907 +sg291132 +S'1612' +p316908 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067c7.jpg' +p316909 +sg291136 +g27 +sa(dp316910 +g291134 +S'Triumphal Entry of Margaret of Austria' +p316911 +sg291137 +S'Antonio Tempesta' +p316912 +sg291130 +S'etching on laid paper [restrike]' +p316913 +sg291132 +S'1612' +p316914 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067c6.jpg' +p316915 +sg291136 +g27 +sa(dp316916 +g291134 +S'Italian Prince before Margaret of Austria' +p316917 +sg291137 +S'Antonio Tempesta' +p316918 +sg291130 +S'etching on laid paper [restrike]' +p316919 +sg291132 +S'1612' +p316920 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067c5.jpg' +p316921 +sg291136 +g27 +sa(dp316922 +g291134 +S'Spanish Duke before Margaret of Austria' +p316923 +sg291137 +S'Antonio Tempesta' +p316924 +sg291130 +S'etching on laid paper [restrike]' +p316925 +sg291132 +S'1612' +p316926 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067c4.jpg' +p316927 +sg291136 +g27 +sa(dp316928 +g291134 +S'Margaret of Austria Giving Audience to a Nobleman' +p316929 +sg291137 +S'Raffaello Schiaminossi' +p316930 +sg291130 +S'etching on laid paper [restrike]' +p316931 +sg291132 +S'1612' +p316932 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e09.jpg' +p316933 +sg291136 +g27 +sa(dp316934 +g291134 +S'Philip as a Boy before Margaret of Austria' +p316935 +sg291137 +S'Antonio Tempesta' +p316936 +sg291130 +S'etching on laid paper [restrike]' +p316937 +sg291132 +S'1612' +p316938 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067c3.jpg' +p316939 +sg291136 +g27 +sa(dp316940 +g291134 +S'Duel of Two Dwarfs' +p316941 +sg291137 +S'Stefano Della Bella' +p316942 +sg291130 +S'etching on laid paper [restrike]' +p316943 +sg291132 +S'unknown date\n' +p316944 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dff.jpg' +p316945 +sg291136 +g27 +sa(dp316946 +g291134 +S'Dwarf Riding an Ass' +p316947 +sg291137 +S'Stefano Della Bella' +p316948 +sg291130 +S'etching on laid paper [restrike]' +p316949 +sg291132 +S'unknown date\n' +p316950 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dfe.jpg' +p316951 +sg291136 +g27 +sa(dp316952 +g291134 +S'A Lady Greeted by a Dwarf' +p316953 +sg291137 +S'Stefano Della Bella' +p316954 +sg291130 +S'etching on laid paper [restrike]' +p316955 +sg291132 +S'unknown date\n' +p316956 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dfd.jpg' +p316957 +sg291136 +g27 +sa(dp316958 +g291134 +S'Mercury Chasing a Satyr Holding a Book' +p316959 +sg291137 +S'Stefano Della Bella' +p316960 +sg291130 +S'etching on laid paper [restrike]' +p316961 +sg291132 +S'unknown date\n' +p316962 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dfc.jpg' +p316963 +sg291136 +g27 +sa(dp316964 +g291134 +S'The Fan' +p316965 +sg291137 +S'Jacques Callot' +p316966 +sg291130 +S'etching and engraving on laid paper [restrike]' +p316967 +sg291132 +S'1619' +p316968 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e10.jpg' +p316969 +sg291136 +g27 +sa(dp316970 +g291134 +S'Fan' +p316971 +sg291137 +S'Artist Information (' +p316972 +sg291130 +S'French, 1592 - 1635' +p316973 +sg291132 +S'(related artist)' +p316974 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e11.jpg' +p316975 +sg291136 +g27 +sa(dp316976 +g291134 +S'Sheet of Etchings' +p316977 +sg291137 +S'Artist Information (' +p316978 +sg291130 +S'French, 1592 - 1635' +p316979 +sg291132 +S'(related artist)' +p316980 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009003.jpg' +p316981 +sg291136 +g27 +sa(dp316982 +g291134 +S'Sheet of Etchings' +p316983 +sg291137 +S'Artist Information (' +p316984 +sg291130 +S'French, 1592 - 1635' +p316985 +sg291132 +S'(related artist)' +p316986 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009006.jpg' +p316987 +sg291136 +g27 +sa(dp316988 +g291134 +S'Sheet of Etchings' +p316989 +sg291137 +S'Artist Information (' +p316990 +sg291130 +S'French, 1592 - 1635' +p316991 +sg291132 +S'(related artist)' +p316992 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009005.jpg' +p316993 +sg291136 +g27 +sa(dp316994 +g291134 +S'Plan of the Spelunche Regee' +p316995 +sg291137 +S'Jacques Callot' +p316996 +sg291130 +S'etching and engraving on laid paper [restrike]' +p316997 +sg291132 +S'1619' +p316998 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e0f.jpg' +p316999 +sg291136 +g27 +sa(dp317000 +g291134 +S'Plan and Elevation of the Church near the House of Caiaphas' +p317001 +sg291137 +S'Jacques Callot' +p317002 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317003 +sg291132 +S'1619' +p317004 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e0c.jpg' +p317005 +sg291136 +g27 +sa(dp317006 +g291134 +S"Plan and Elevation of the Church of the Madonna's Sepulchre" +p317007 +sg291137 +S'Jacques Callot' +p317008 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317009 +sg291132 +S'1619' +p317010 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e0e.jpg' +p317011 +sg291136 +g27 +sa(dp317012 +g291134 +S'Second Part of the Via Dolorosa' +p317013 +sg291137 +S'Jacques Callot' +p317014 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317015 +sg291132 +S'1619' +p317016 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e0d.jpg' +p317017 +sg291136 +g27 +sa(dp317018 +g291134 +S'Aerial View of the City of Jerusalem' +p317019 +sg291137 +S'Jacques Callot' +p317020 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317021 +sg291132 +S'1619' +p317022 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e12.jpg' +p317023 +sg291136 +g27 +sa(dp317024 +g291134 +S'Plan of the Holy Sepulchre and Mount Calvary' +p317025 +sg291137 +S'Jacques Callot' +p317026 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317027 +sg291132 +S'1619' +p317028 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e17.jpg' +p317029 +sg291136 +g27 +sa(dp317030 +g291134 +S'Elevation of the Church of the Holy Sepulchre' +p317031 +sg291137 +S'Jacques Callot' +p317032 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317033 +sg291132 +S'1619' +p317034 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e14.jpg' +p317035 +sg291136 +g27 +sa(dp317036 +g291134 +S'Cross-Section of the Church of the Holy Sepulchre' +p317037 +sg291137 +S'Jacques Callot' +p317038 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317039 +sg291132 +S'1619' +p317040 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e1a.jpg' +p317041 +sg291136 +g27 +sa(dp317042 +g291134 +S'Four Parts of the Via Dolorosa' +p317043 +sg291137 +S'Jacques Callot' +p317044 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317045 +sg291132 +S'1619' +p317046 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e21.jpg' +p317047 +sg291136 +g27 +sa(dp317048 +g291134 +S'Plan of the Church of the Holy Nativity' +p317049 +sg291137 +S'Jacques Callot' +p317050 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317051 +sg291132 +S'1619' +p317052 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e1b.jpg' +p317053 +sg291136 +g27 +sa(dp317054 +g291134 +S'Plan of the Church near the House of Annas' +p317055 +sg291137 +S'Jacques Callot' +p317056 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317057 +sg291132 +S'1619' +p317058 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e1c.jpg' +p317059 +sg291136 +g27 +sa(dp317060 +g291134 +S'House of Pilate' +p317061 +sg291137 +S'Jacques Callot' +p317062 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317063 +sg291132 +S'1619' +p317064 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e1d.jpg' +p317065 +sg291136 +g27 +sa(dp317066 +g291134 +S'Elevation of the Church of the Holy Sepulchre' +p317067 +sg291137 +S'Jacques Callot' +p317068 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317069 +sg291132 +S'1619' +p317070 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e20.jpg' +p317071 +sg291136 +g27 +sa(dp317072 +g291134 +S'Plan of the Church of the Holy Sepulchre' +p317073 +sg291137 +S'Jacques Callot' +p317074 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317075 +sg291132 +S'1619' +p317076 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e22.jpg' +p317077 +sg291136 +g27 +sa(dp317078 +g291134 +S'Third Part of the Via Dolorosa' +p317079 +sg291137 +S'Jacques Callot' +p317080 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317081 +sg291132 +S'1619' +p317082 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e1f.jpg' +p317083 +sg291136 +g27 +sa(dp317084 +g291134 +S'Plan and Elevation of the Church of Saints James and John' +p317085 +sg291137 +S'Jacques Callot' +p317086 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317087 +sg291132 +S'1619' +p317088 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e24.jpg' +p317089 +sg291136 +g27 +sa(dp317090 +g291134 +S'Cross-Section of a Church' +p317091 +sg291137 +S'Jacques Callot' +p317092 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317093 +sg291132 +S'1619' +p317094 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e1e.jpg' +p317095 +sg291136 +g27 +sa(dp317096 +g291134 +S'Elevations of the Holy Manger and the Sepulchre of Rachel' +p317097 +sg291137 +S'Jacques Callot' +p317098 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317099 +sg291132 +S'1619' +p317100 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e23.jpg' +p317101 +sg291136 +g27 +sa(dp317102 +g291134 +S'Plan of the Church of the Holy Manger' +p317103 +sg291137 +S'Jacques Callot' +p317104 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317105 +sg291132 +S'1619' +p317106 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e25.jpg' +p317107 +sg291136 +g27 +sa(dp317108 +g291134 +S'Plan and Elevation of the Church of S. Iacoma' +p317109 +sg291137 +S'Jacques Callot' +p317110 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317111 +sg291132 +S'1619' +p317112 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e29.jpg' +p317113 +sg291136 +g27 +sa(dp317114 +g291134 +S'Effigy of St. Jerome' +p317115 +sg291137 +S'Jacques Callot' +p317116 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317117 +sg291132 +S'1619' +p317118 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e27.jpg' +p317119 +sg291136 +g27 +sa(dp317120 +g291134 +S'Elevation of the Church of the Holy Manger' +p317121 +sg291137 +S'Jacques Callot' +p317122 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317123 +sg291132 +S'1619' +p317124 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e26.jpg' +p317125 +sg291136 +g27 +sa(dp317126 +g291134 +S'Plan and Elevation of the Church near the House of Annas' +p317127 +sg291137 +S'Jacques Callot' +p317128 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317129 +sg291132 +S'1619' +p317130 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e28.jpg' +p317131 +sg291136 +g27 +sa(dp317132 +g291134 +S'Plan of All the Important Places in Bethlehem' +p317133 +sg291137 +S'Jacques Callot' +p317134 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317135 +sg291132 +S'1619' +p317136 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e18.jpg' +p317137 +sg291136 +g27 +sa(dp317138 +g291134 +S'Elevation of a Church' +p317139 +sg291137 +S'Jacques Callot' +p317140 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317141 +sg291132 +S'1619' +p317142 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e19.jpg' +p317143 +sg291136 +g27 +sa(dp317144 +g291134 +S'Elevation of Churches including the Holy Manger' +p317145 +sg291137 +S'Jacques Callot' +p317146 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317147 +sg291132 +S'1619' +p317148 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e13.jpg' +p317149 +sg291136 +g27 +sa(dp317150 +g291134 +S'Plan and Elevation of the Church of the Holy Sepulchre' +p317151 +sg291137 +S'Jacques Callot' +p317152 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317153 +sg291132 +S'1619' +p317154 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e15.jpg' +p317155 +sg291136 +g27 +sa(dp317156 +g291134 +S'Elevation of a Church' +p317157 +sg291137 +S'Jacques Callot' +p317158 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317159 +sg291132 +S'1619' +p317160 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e16.jpg' +p317161 +sg291136 +g27 +sa(dp317162 +g291134 +S'Plan and Elevation of the Church of the Ascension' +p317163 +sg291137 +S'Jacques Callot' +p317164 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317165 +sg291132 +S'1619' +p317166 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e2a.jpg' +p317167 +sg291136 +g27 +sa(dp317168 +g291134 +S'Elevation of the Chapel of the Invention of the Cross' +p317169 +sg291137 +S'Jacques Callot' +p317170 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317171 +sg291132 +S'1619' +p317172 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e2d.jpg' +p317173 +sg291136 +g27 +sa(dp317174 +g291134 +S'Elevation of a Passage Plan' +p317175 +sg291137 +S'Jacques Callot' +p317176 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317177 +sg291132 +S'1619' +p317178 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e32.jpg' +p317179 +sg291136 +g27 +sa(dp317180 +g291134 +S'Church in Cairo' +p317181 +sg291137 +S'Jacques Callot' +p317182 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317183 +sg291132 +S'1619' +p317184 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e31.jpg' +p317185 +sg291136 +g27 +sa(dp317186 +g291134 +S'Plan and Elevation of the Chapel of Godefroy de Bouillon' +p317187 +sg291137 +S'Jacques Callot' +p317188 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317189 +sg291132 +S'1619' +p317190 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e30.jpg' +p317191 +sg291136 +g27 +sa(dp317192 +g291134 +S'Plan and Elevation of the Church of the Holy Nativity' +p317193 +sg291137 +S'Jacques Callot' +p317194 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317195 +sg291132 +S'1619' +p317196 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e2e.jpg' +p317197 +sg291136 +g27 +sa(dp317198 +g291134 +S'Plan and Part of the Elevation of the Church of the Holy Sepulchre of the Madonna' +p317199 +sg291137 +S'Jacques Callot' +p317200 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317201 +sg291132 +S'1619' +p317202 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e2f.jpg' +p317203 +sg291136 +g27 +sa(dp317204 +g291134 +S'Plan and Rendering of the Temple of Solomon' +p317205 +sg291137 +S'Jacques Callot' +p317206 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317207 +sg291132 +S'1619' +p317208 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e2b.jpg' +p317209 +sg291136 +g27 +sa(dp317210 +g291134 +S'Dedication Plate' +p317211 +sg291137 +S'Theodor Verkruis' +p317212 +sg291130 +S'etching on laid paper [restrike]' +p317213 +sg291132 +S'unknown date\n' +p317214 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e2c.jpg' +p317215 +sg291136 +g27 +sa(dp317216 +g291134 +S'Il Greco in Troia: Plate 1' +p317217 +sg291137 +S'Arnold von Westerhout' +p317218 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317219 +sg291132 +S'unknown date\n' +p317220 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e38.jpg' +p317221 +sg291136 +g27 +sa(dp317222 +g291134 +S'Il Greco in Troia: Plate 2' +p317223 +sg291137 +S'Arnold von Westerhout' +p317224 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317225 +sg291132 +S'unknown date\n' +p317226 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e33.jpg' +p317227 +sg291136 +g27 +sa(dp317228 +g291134 +S'Il Greco in Troia: Plate 3' +p317229 +sg291137 +S'Arnold von Westerhout' +p317230 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317231 +sg291132 +S'unknown date\n' +p317232 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e34.jpg' +p317233 +sg291136 +g27 +sa(dp317234 +g291134 +S'Il Greco in Troia: Plate 4' +p317235 +sg291137 +S'Arnold von Westerhout' +p317236 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317237 +sg291132 +S'unknown date\n' +p317238 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e35.jpg' +p317239 +sg291136 +g27 +sa(dp317240 +g291134 +S'Il Greco in Troia: Plate 5' +p317241 +sg291137 +S'Arnold von Westerhout' +p317242 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317243 +sg291132 +S'unknown date\n' +p317244 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e3c.jpg' +p317245 +sg291136 +g27 +sa(dp317246 +g291134 +S'Il Greco in Troia: Plate 6' +p317247 +sg291137 +S'Arnold von Westerhout' +p317248 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317249 +sg291132 +S'unknown date\n' +p317250 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e36.jpg' +p317251 +sg291136 +g27 +sa(dp317252 +g291134 +S'Il Greco in Troia: Plate 7' +p317253 +sg291137 +S'Arnold von Westerhout' +p317254 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317255 +sg291132 +S'unknown date\n' +p317256 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e3a.jpg' +p317257 +sg291136 +g27 +sa(dp317258 +g291134 +S'Il Greco in Troia: Plate 8' +p317259 +sg291137 +S'Arnold von Westerhout' +p317260 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317261 +sg291132 +S'unknown date\n' +p317262 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e39.jpg' +p317263 +sg291136 +g27 +sa(dp317264 +g291134 +S'Il Greco in Troia: Plate 9' +p317265 +sg291137 +S'Arnold von Westerhout' +p317266 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317267 +sg291132 +S'unknown date\n' +p317268 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e37.jpg' +p317269 +sg291136 +g27 +sa(dp317270 +g291134 +S'Il Greco in Troia: Plate 10' +p317271 +sg291137 +S'Arnold von Westerhout' +p317272 +sg291130 +S'etching and engraving on laid paper [restrike]' +p317273 +sg291132 +S'unknown date\n' +p317274 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e3b.jpg' +p317275 +sg291136 +g27 +sa(dp317276 +g291130 +S'1 vol: 78 etched plates and 18 etched head-pieces [restrikes]' +p317277 +sg291132 +S'possibly 1756/1784' +p317278 +sg291134 +S'Le Antichit\xc3\xa0 Romane (volume I)' +p317279 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p317280 +sa(dp317281 +g291130 +S'1 vol: 64 etchings [restrikes]' +p317282 +sg291132 +S'possibly 1756/1784' +p317283 +sg291134 +S'Le Antichit\xc3\xa0 Romane (volume II)' +p317284 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p317285 +sa(dp317286 +g291130 +S'1 vol: 55 etchings [restrikes]' +p317287 +sg291132 +S'possibly 1756/1784' +p317288 +sg291134 +S'Le Antichit\xc3\xa0 Romane (volume III)' +p317289 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p317290 +sa(dp317291 +g291130 +S'1 vol: 65 etchings [restrikes]' +p317292 +sg291132 +S'possibly 1756/1784' +p317293 +sg291134 +S'Le Antichit\xc3\xa0 Romane (volume IV)' +p317294 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p317295 +sa(dp317296 +g291130 +S'1 vol: 6 etched plates and 7 etched head-pieces and vignettes [restrikes]' +p317297 +sg291132 +S'published 1785' +p317298 +sg291134 +S'Monumenti degli Scipione (Supplement to "Le Antichit\xc3\xa0 Romane")' +p317299 +sg291136 +g27 +sg291137 +S'Francesco Piranesi' +p317300 +sa(dp317301 +g291130 +S'1 vol: 52 etched plates and 11 etched head-pieces and vignettes [restrikes]' +p317302 +sg291132 +S'published 1780' +p317303 +sg291134 +S'Raccolta de\'Tempi Antichi (Supplement to "Le Antichit\xc3\xa0 Romane")' +p317304 +sg291136 +g27 +sg291137 +S'Francesco Piranesi' +p317305 +sa(dp317306 +g291130 +S'1 vol: 57 etched plates and 34 etched head-pieces and vignettes [restrikes]' +p317307 +sg291132 +S'published 1761' +p317308 +sg291134 +S"Della Magnificenza ed Archittetura de'Romani" +p317309 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p317310 +sa(dp317311 +g291130 +S'1 vol: 95 etchings [restrikes]' +p317312 +sg291132 +S'unknown date\n' +p317313 +sg291134 +S'Prima Parte; Carceri; Alcune Vedute ...; Trofei di Ottaviano Augusto' +p317314 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p317315 +sa(dp317316 +g291130 +S'1 vol: 37 etched plates and 41 etched head-pieces and vignettes [restrikes]' +p317317 +sg291132 +S'published 1761/1764' +p317318 +sg291134 +S"Lapides Capitolini; Le Rovine dell Castello dell'Acqua Giula; Antichit\xc3\xa0 di Cora" +p317319 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p317320 +sa(dp317321 +g291130 +S'(artist)' +p317322 +sg291132 +S'\n' +p317323 +sg291134 +S"Il Campo Marzio dell'Antica Roma" +p317324 +sg291136 +g27 +sg291137 +S'Artist Information (' +p317325 +sa(dp317326 +g291130 +S'1 vol: 55 etched plates and 12 etched head-pieces and vignettes [restrikes]' +p317327 +sg291132 +S'unknown date\n' +p317328 +sg291134 +S"Antichit\xc3\xa0 d'Albano; Descrizione ... del'Emmissario; Di due Spelonche" +p317329 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p317330 +sa(dp317331 +g291130 +S'(artist)' +p317332 +sg291132 +S'\n' +p317333 +sg291134 +S'Vasi, candelabri, cippi ... (volume I)' +p317334 +sg291136 +g27 +sg291137 +S'Artist Information (' +p317335 +sa(dp317336 +g291130 +S'(artist)' +p317337 +sg291132 +S'\n' +p317338 +sg291134 +S'Vasi, candelabri, cippi ... (volume II)' +p317339 +sg291136 +g27 +sg291137 +S'Artist Information (' +p317340 +sa(dp317341 +g291130 +S'1 vol: 48 etchings [restrikes]' +p317342 +sg291132 +S'in or after 1775' +p317343 +sg291134 +S'Le Colonne Trajana e Antonina' +p317344 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p317345 +sa(dp317346 +g291130 +S'(artist)' +p317347 +sg291132 +S'\n' +p317348 +sg291134 +S'Differentes vues de quelques Restes ...' +p317349 +sg291136 +g27 +sg291137 +S'Artist Information (' +p317350 +sa(dp317351 +g291130 +S'1 vol: 71 etchings [restrikes]' +p317352 +sg291132 +S'published 1748' +p317353 +sg291134 +S'Le Vedute di Roma (volume I)' +p317354 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p317355 +sa(dp317356 +g291130 +S'(artist)' +p317357 +sg291132 +S'\n' +p317358 +sg291134 +S'Le Vedute di Roma (volume II)' +p317359 +sg291136 +g27 +sg291137 +S'Artist Information (' +p317360 +sa(dp317361 +g291130 +S'(artist after)' +p317362 +sg291132 +S'\n' +p317363 +sg291134 +S'Statue Antichi' +p317364 +sg291136 +g27 +sg291137 +S'Artist Information (' +p317365 +sa(dp317366 +g291130 +S'1 vol: 10 etched plates and 2 etched head-pieces [restrikes]' +p317367 +sg291132 +S'published 1785' +p317368 +sg291134 +S"Il Teatro d'Ercolano" +p317369 +sg291136 +g27 +sg291137 +S'Francesco Piranesi' +p317370 +sa(dp317371 +g291130 +S'1 vol: 85 etched plates and 6 etched head-pieces and vignettes [restrikes]' +p317372 +sg291132 +S'published 1769' +p317373 +sg291134 +S"Diverse maniere d'ardornare i Cammini; Diversi ornati delle pareti" +p317374 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p317375 +sa(dp317376 +g291130 +S'(artist)' +p317377 +sg291132 +S'\n' +p317378 +sg291134 +S'Raccolta di Alcuni Disegni del ... Guercino' +p317379 +sg291136 +g27 +sg291137 +S'Artist Information (' +p317380 +sa(dp317381 +g291130 +S'Italian, c. 1758 - 1810' +p317382 +sg291132 +S'(publisher)' +p317383 +sg291134 +S'La Scuola Italiana' +p317384 +sg291136 +g27 +sg291137 +S'Artist Information (' +p317385 +sa(dp317386 +g291130 +S'(artist after)' +p317387 +sg291132 +S'\n' +p317388 +sg291134 +S'Soggetti Diversi e Prospettive delle piazze di Padova' +p317389 +sg291136 +g27 +sg291137 +S'Artist Information (' +p317390 +sa(dp317391 +g291130 +S'(artist after)' +p317392 +sg291132 +S'\n' +p317393 +sg291134 +S'Antiquites de la Grande-Grece (volume I)' +p317394 +sg291136 +g27 +sg291137 +S'Artist Information (' +p317395 +sa(dp317396 +g291130 +S'(artist after)' +p317397 +sg291132 +S'\n' +p317398 +sg291134 +S'Antiquites de la Grande-Grece (volume II)' +p317399 +sg291136 +g27 +sg291137 +S'Artist Information (' +p317400 +sa(dp317401 +g291130 +S'(artist after)' +p317402 +sg291132 +S'\n' +p317403 +sg291134 +S'Antiquites de la Grande-Grece (Table des usages civils et militares ...)' +p317404 +sg291136 +g27 +sg291137 +S'Artist Information (' +p317405 +sa(dp317406 +g291130 +S'(publisher)' +p317407 +sg291132 +S'\n' +p317408 +sg291134 +S'Amorini e Trofei nella Villa Lante' +p317409 +sg291136 +g27 +sg291137 +S'Artist Information (' +p317410 +sa(dp317411 +g291134 +S'Torso of Christ on the Cross' +p317412 +sg291137 +S'Guido Reni' +p317413 +sg291130 +S', probably c. 1616' +p317414 +sg291132 +S'\n' +p317415 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006784.jpg' +p317416 +sg291136 +g27 +sa(dp317417 +g291134 +S"The Eagle's Nest in the Forest of Fontainebleau (Le nid de l'aigle dans la Foret de Fontainebleau" +p317418 +sg291137 +S'Charles-Fran\xc3\xa7ois Daubigny' +p317419 +sg291130 +S'etching on wove paper' +p317420 +sg291132 +S'in or before 1844' +p317421 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00098/a000982c.jpg' +p317422 +sg291136 +g27 +sa(dp317423 +g291134 +S'The Embroiderers (Les brodeuses)' +p317424 +sg291137 +S'Henri Fantin-Latour' +p317425 +sg291130 +S'chine colle lithograph' +p317426 +sg291132 +S'1898' +p317427 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00095/a00095d1.jpg' +p317428 +sg291136 +g27 +sa(dp317429 +g291130 +S'oil on canvas' +p317430 +sg291132 +S'c. 1900' +p317431 +sg291134 +S'Winter Landscape' +p317432 +sg291136 +g27 +sg291137 +S'John Marin' +p317433 +sa(dp317434 +g291130 +S'oil on canvas board' +p317435 +sg291132 +S'1928' +p317436 +sg291134 +S'Buildings with Snowbank, Cliffside, New Jersey' +p317437 +sg291136 +g27 +sg291137 +S'John Marin' +p317438 +sa(dp317439 +g291130 +S'oil on canvas board' +p317440 +sg291132 +S'c. 1928' +p317441 +sg291134 +S'House with Dutch Roof' +p317442 +sg291136 +g27 +sg291137 +S'John Marin' +p317443 +sa(dp317444 +g291130 +S'oil on canvas on cardboard' +p317445 +sg291132 +S'1931' +p317446 +sg291134 +S'Landscape with Houses and Trees' +p317447 +sg291136 +g27 +sg291137 +S'John Marin' +p317448 +sa(dp317449 +g291130 +S'oil on canvas on cardboard' +p317450 +sg291132 +S'1931' +p317451 +sg291134 +S'Houses and Trees' +p317452 +sg291136 +g27 +sg291137 +S'John Marin' +p317453 +sa(dp317454 +g291130 +S'oil on canvas on cardboard' +p317455 +sg291132 +S'1931' +p317456 +sg291134 +S'Old Swedish Church, New Castle, Delaware: Close View' +p317457 +sg291136 +g27 +sg291137 +S'John Marin' +p317458 +sa(dp317459 +g291130 +S'oil on canvas on cardboard' +p317460 +sg291132 +S'1931' +p317461 +sg291134 +S'Old Swedish Church, New Castle, Delaware: Distant View' +p317462 +sg291136 +g27 +sg291137 +S'John Marin' +p317463 +sa(dp317464 +g291130 +S'oil on canvas' +p317465 +sg291132 +S'c. 1944' +p317466 +sg291134 +S'Mrs. John Marin' +p317467 +sg291136 +g27 +sg291137 +S'John Marin' +p317468 +sa(dp317469 +g291130 +S'oil on canvas board' +p317470 +sg291132 +S'1948' +p317471 +sg291134 +S'Tunk Mountains, Maine' +p317472 +sg291136 +g27 +sg291137 +S'John Marin' +p317473 +sa(dp317474 +g291130 +S'oil on canvas on board' +p317475 +sg291132 +S'c. 1950' +p317476 +sg291134 +S'Sketch of Two Bison' +p317477 +sg291136 +g27 +sg291137 +S'John Marin' +p317478 +sa(dp317479 +g291130 +S'oil on canvas' +p317480 +sg291132 +S'1951' +p317481 +sg291134 +S'Bather Seated on Rocks' +p317482 +sg291136 +g27 +sg291137 +S'John Marin' +p317483 +sa(dp317484 +g291130 +S'oil on canvas' +p317485 +sg291132 +S'c. 1953' +p317486 +sg291134 +S'Untitled: Circus' +p317487 +sg291136 +g27 +sg291137 +S'John Marin' +p317488 +sa(dp317489 +g291130 +S'watercolor over graphite on wove paper' +p317490 +sg291132 +S'c. 1890' +p317491 +sg291134 +S'West New York and Vicinity' +p317492 +sg291136 +g27 +sg291137 +S'John Marin' +p317493 +sa(dp317494 +g291130 +S'watercolor over graphite on wove paper' +p317495 +sg291132 +S'c. 1895/1900' +p317496 +sg291134 +S'House' +p317497 +sg291136 +g27 +sg291137 +S'John Marin' +p317498 +sa(dp317499 +g291130 +S'watercolor and graphite on wove paper' +p317500 +sg291132 +S'c. 1895/1900' +p317501 +sg291134 +S'House with Figures in Front [recto]' +p317502 +sg291136 +g27 +sg291137 +S'John Marin' +p317503 +sa(dp317504 +g291130 +S'watercolor and graphite on wove paper' +p317505 +sg291132 +S'c. 1895/1900' +p317506 +sg291134 +S'House Set in Landscape [verso]' +p317507 +sg291136 +g27 +sg291137 +S'John Marin' +p317508 +sa(dp317509 +g291130 +S'watercolor and graphite on heavy wove paper' +p317510 +sg291132 +S'c. 1895/1900' +p317511 +sg291134 +S'House with Figures Walking By [recto]' +p317512 +sg291136 +g27 +sg291137 +S'John Marin' +p317513 +sa(dp317514 +g291130 +S'watercolor' +p317515 +sg291132 +S'c. 1895/1900' +p317516 +sg291134 +S'House Set in Wooded Landscape [verso]' +p317517 +sg291136 +g27 +sg291137 +S'John Marin' +p317518 +sa(dp317519 +g291130 +S'watercolor on wove paper' +p317520 +sg291132 +S'c. 1895/1900' +p317521 +sg291134 +S'Landscape' +p317522 +sg291136 +g27 +sg291137 +S'John Marin' +p317523 +sa(dp317524 +g291130 +S'watercolor over graphite on wove paper' +p317525 +sg291132 +S'c. 1895/1900' +p317526 +sg291134 +S'Landscape' +p317527 +sg291136 +g27 +sg291137 +S'John Marin' +p317528 +sa(dp317529 +g291130 +S'watercolor, graphite, and red pencil (pastel?) on wove paper' +p317530 +sg291132 +S'c. 1895/1900' +p317531 +sg291134 +S'Landscape' +p317532 +sg291136 +g27 +sg291137 +S'John Marin' +p317533 +sa(dp317534 +g291130 +S'watercolor and graphite on wove paper' +p317535 +sg291132 +S'c. 1895/1900' +p317536 +sg291134 +S'Landscape' +p317537 +sg291136 +g27 +sg291137 +S'John Marin' +p317538 +sa(dp317539 +g291130 +S'watercolor on wove paper' +p317540 +sg291132 +S'c. 1895/1900' +p317541 +sg291134 +S'Street Scene' +p317542 +sg291136 +g27 +sg291137 +S'John Marin' +p317543 +sa(dp317544 +g291130 +S'watercolor over graphite on wove paper' +p317545 +sg291132 +S'c. 1911' +p317546 +sg291134 +S'River Scene, Weehawken, New Jersey' +p317547 +sg291136 +g27 +sg291137 +S'John Marin' +p317548 +sa(dp317549 +g291130 +S'watercolor on wove paper' +p317550 +sg291132 +S'probably c. 1911' +p317551 +sg291134 +S'River Scene, Weehawken, New Jersey' +p317552 +sg291136 +g27 +sg291137 +S'John Marin' +p317553 +sa(dp317554 +g291130 +S'watercolor and gouache (?) over graphite on thin wove paper' +p317555 +sg291132 +S'1923' +p317556 +sg291134 +S'Landscape' +p317557 +sg291136 +g27 +sg291137 +S'John Marin' +p317558 +sa(dp317559 +g291130 +S'watercolor and charcoal on strathmore drawing board' +p317560 +sg291132 +S'probably 1921/1928' +p317561 +sg291134 +S'A Seeing, New York' +p317562 +sg291136 +g27 +sg291137 +S'John Marin' +p317563 +sa(dp317564 +g291130 +S'watercolor, charcoal, graphite, and scratching out on smooth wove paper; laminated to a second sheet' +p317565 +sg291132 +S'c. 1925' +p317566 +sg291134 +S'Downtown New York No. 2' +p317567 +sg291136 +g27 +sg291137 +S'John Marin' +p317568 +sa(dp317569 +g291130 +S'watercolor, gouache, and charcoal over graphite, with scratching out, on smooth wove paper' +p317570 +sg291132 +S'c. 1925' +p317571 +sg291134 +S'Downtown New York No. 5' +p317572 +sg291136 +g27 +sg291137 +S'John Marin' +p317573 +sa(dp317574 +g291130 +S'watercolor, graphite, and charcoal on Strathmore drawing board' +p317575 +sg291132 +S'c. 1925' +p317576 +sg291134 +S'Downtown New York' +p317577 +sg291136 +g27 +sg291137 +S'John Marin' +p317578 +sa(dp317579 +g291130 +S'watercolor and charcoal on strathmore drawing board' +p317580 +sg291132 +S'probably 1921/1928' +p317581 +sg291134 +S'Movement New York' +p317582 +sg291136 +g27 +sg291137 +S'John Marin' +p317583 +sa(dp317584 +g291130 +S'watercolor, graphite, and charcoal on board' +p317585 +sg291132 +S'probably 1921/1928' +p317586 +sg291134 +S'New York' +p317587 +sg291136 +g27 +sg291137 +S'John Marin' +p317588 +sa(dp317589 +g291130 +S'watercolor on thin wove paper' +p317590 +sg291132 +S'possibly 1945' +p317591 +sg291134 +S'Sunset' +p317592 +sg291136 +g27 +sg291137 +S'John Marin' +p317593 +sa(dp317594 +g291130 +S'watercolor and graphite on thin wove paper' +p317595 +sg291132 +S'possibly 1949' +p317596 +sg291134 +S'Sunset' +p317597 +sg291136 +g27 +sg291137 +S'John Marin' +p317598 +sa(dp317599 +g291130 +S'watercolor' +p317600 +sg291132 +S'1888' +p317601 +sg291134 +S'White Lake, New York' +p317602 +sg291136 +g27 +sg291137 +S'John Marin' +p317603 +sa(dp317604 +g291130 +S'pen and black ink over graphite on tracing paper; mounted to paper board' +p317605 +sg291132 +S'1893' +p317606 +sg291134 +S'Study for a Seaside Grouping' +p317607 +sg291136 +g27 +sg291137 +S'John Marin' +p317608 +sa(dp317609 +g291130 +S'watercolor' +p317610 +sg291132 +S'1892' +p317611 +sg291134 +S'West New York, New Jersey' +p317612 +sg291136 +g27 +sg291137 +S'John Marin' +p317613 +sa(dp317614 +g291130 +S'watercolor and graphite on J Whatman wove paper' +p317615 +sg291132 +S'c. 1907' +p317616 +sg291134 +S'Notre Dame' +p317617 +sg291136 +g27 +sg291137 +S'John Marin' +p317618 +sa(dp317619 +g291130 +S'watercolor over graphite on wove paper' +p317620 +sg291132 +S'c. 1907' +p317621 +sg291134 +S'The Seine, Paris' +p317622 +sg291136 +g27 +sg291137 +S'John Marin' +p317623 +sa(dp317624 +g291130 +S'watercolor over graphite on wove paper' +p317625 +sg291132 +S'c. 1908' +p317626 +sg291134 +S'Bridge' +p317627 +sg291136 +g27 +sg291137 +S'John Marin' +p317628 +sa(dp317629 +g291130 +S'watercolor on wove paper' +p317630 +sg291132 +S'1908' +p317631 +sg291134 +S'The Seine after the Storm' +p317632 +sg291136 +g27 +sg291137 +S'John Marin' +p317633 +sa(dp317634 +g291130 +S'watercolor on wove paper' +p317635 +sg291132 +S'1909' +p317636 +sg291134 +S'France' +p317637 +sg291136 +g27 +sg291137 +S'John Marin' +p317638 +sa(dp317639 +g291130 +S'watercolor' +p317640 +sg291132 +S'1909' +p317641 +sg291134 +S'Middle Atlantic' +p317642 +sg291136 +g27 +sg291137 +S'John Marin' +p317643 +sa(dp317644 +g291134 +S'Middle of Atlantic' +p317645 +sg291137 +S'John Marin' +p317646 +sg291130 +S'watercolor on wove paper' +p317647 +sg291132 +S'1909' +p317648 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000969.jpg' +p317649 +sg291136 +g27 +sa(dp317650 +g291130 +S'watercolor on wove paper' +p317651 +sg291132 +S'1910' +p317652 +sg291134 +S'Hudson River, Region of Peekskill' +p317653 +sg291136 +g27 +sg291137 +S'John Marin' +p317654 +sa(dp317655 +g291130 +S'watercolor over graphite on wove paper' +p317656 +sg291132 +S'1910' +p317657 +sg291134 +S'Tyrol Series' +p317658 +sg291136 +g27 +sg291137 +S'John Marin' +p317659 +sa(dp317660 +g291130 +S'watercolor on wove paper' +p317661 +sg291132 +S'1910' +p317662 +sg291134 +S'Tyrol Series' +p317663 +sg291136 +g27 +sg291137 +S'John Marin' +p317664 +sa(dp317665 +g291130 +S'watercolor over graphite on wove paper' +p317666 +sg291132 +S'1911' +p317667 +sg291134 +S'Mrs. Haviland' +p317668 +sg291136 +g27 +sg291137 +S'John Marin' +p317669 +sa(dp317670 +g291130 +S'watercolor over graphite on wove paper' +p317671 +sg291132 +S'c. 1911' +p317672 +sg291134 +S'Mrs. Haviland' +p317673 +sg291136 +g27 +sg291137 +S'John Marin' +p317674 +sa(dp317675 +g291130 +S'watercolor over graphite on wove paper' +p317676 +sg291132 +S'c. 1912' +p317677 +sg291134 +S'Grain Elevators at Weehawken' +p317678 +sg291136 +g27 +sg291137 +S'John Marin' +p317679 +sa(dp317680 +g291130 +S'watercolor over graphite on wove paper' +p317681 +sg291132 +S'1912' +p317682 +sg291134 +S'Weehawken Docks, New Jersey' +p317683 +sg291136 +g27 +sg291137 +S'John Marin' +p317684 +sa(dp317685 +g291130 +S'watercolor over graphite on wove paper' +p317686 +sg291132 +S'1913' +p317687 +sg291134 +S'Castorland, New York' +p317688 +sg291136 +g27 +sg291137 +S'John Marin' +p317689 +sa(dp317690 +g291130 +S'watercolor over graphite on wove paper' +p317691 +sg291132 +S'1913' +p317692 +sg291134 +S'Castorland, New York' +p317693 +sg291136 +g27 +sg291137 +S'John Marin' +p317694 +sa(dp317695 +g291130 +S'watercolor and graphite on wove paper' +p317696 +sg291132 +S'1913' +p317697 +sg291134 +S'Castorland, New York' +p317698 +sg291136 +g27 +sg291137 +S'John Marin' +p317699 +sa(dp317700 +g291130 +S'watercolor over graphite on wove paper' +p317701 +sg291132 +S'1915' +p317702 +sg291134 +S'Landscape' +p317703 +sg291136 +g27 +sg291137 +S'John Marin' +p317704 +sa(dp317705 +g291130 +S'watercolor and graphite on wove paper' +p317706 +sg291132 +S'1915' +p317707 +sg291134 +S'Tall Buildings, Downtown, New York' +p317708 +sg291136 +g27 +sg291137 +S'John Marin' +p317709 +sa(dp317710 +g291130 +S'watercolor and graphite on wove paper' +p317711 +sg291132 +S'c. 1915' +p317712 +sg291134 +S'The Branch, Small Point, Maine' +p317713 +sg291136 +g27 +sg291137 +S'John Marin' +p317714 +sa(dp317715 +g291130 +S'watercolor over graphite on wove paper' +p317716 +sg291132 +S'c. 1915' +p317717 +sg291134 +S'Tree, Small Point, Maine' +p317718 +sg291136 +g27 +sg291137 +S'John Marin' +p317719 +sa(dp317720 +g291130 +S'watercolor on wove paper' +p317721 +sg291132 +S'1916' +p317722 +sg291134 +S'Echo Lake District, Pennsylvania' +p317723 +sg291136 +g27 +sg291137 +S'John Marin' +p317724 +sa(dp317725 +g291130 +S'watercolor over graphite on wove paper' +p317726 +sg291132 +S'c. 1917' +p317727 +sg291134 +S'Camouflaged Vessel in River' +p317728 +sg291136 +g27 +sg291137 +S'John Marin' +p317729 +sa(dp317730 +g291130 +S'watercolor and graphite on wove paper' +p317731 +sg291132 +S'1918' +p317732 +sg291134 +S'A Little Yearling, Ayrshire Bull, Rowe, Massachusetts' +p317733 +sg291136 +g27 +sg291137 +S'John Marin' +p317734 +sa(dp317735 +g291130 +S'watercolor and graphite on wove paper' +p317736 +sg291132 +S'1918' +p317737 +sg291134 +S'Cow Feeding' +p317738 +sg291136 +g27 +sg291137 +S'John Marin' +p317739 +sa(dp317740 +g291130 +S'watercolor and graphite on wove paper' +p317741 +sg291132 +S'1918' +p317742 +sg291134 +S"Cow's Head" +p317743 +sg291136 +g27 +sg291137 +S'John Marin' +p317744 +sa(dp317745 +g291130 +S'watercolor over graphite on wove paper' +p317746 +sg291132 +S'1918' +p317747 +sg291134 +S'Profile, Rowe, Massachusetts' +p317748 +sg291136 +g27 +sg291137 +S'John Marin' +p317749 +sa(dp317750 +g291130 +S'watercolor and charcoal on heavy wove paper' +p317751 +sg291132 +S'1918' +p317752 +sg291134 +S'Rowe, Massachusetts' +p317753 +sg291136 +g27 +sg291137 +S'John Marin' +p317754 +sa(dp317755 +g291130 +S'watercolor and charcoal on heavy wove paper' +p317756 +sg291132 +S'1918' +p317757 +sg291134 +S'Rowe, Massachusetts' +p317758 +sg291136 +g27 +sg291137 +S'John Marin' +p317759 +sa(dp317760 +g291130 +S'watercolor and graphite on wove paper' +p317761 +sg291132 +S'1918' +p317762 +sg291134 +S'Rowe, Massachusetts' +p317763 +sg291136 +g27 +sg291137 +S'John Marin' +p317764 +sa(dp317765 +g291130 +S'watercolor over graphite on wove paper' +p317766 +sg291132 +S'1915' +p317767 +sg291134 +S'Tree Forms, Maine' +p317768 +sg291136 +g27 +sg291137 +S'John Marin' +p317769 +sa(dp317770 +g291130 +S'watercolor over graphite on wove paper' +p317771 +sg291132 +S'1918' +p317772 +sg291134 +S'Rowe, Massachusetts' +p317773 +sg291136 +g27 +sg291137 +S'John Marin' +p317774 +sa(dp317775 +g291130 +S'watercolor over graphite on wove paper' +p317776 +sg291132 +S'1919' +p317777 +sg291134 +S'Deer Isle (Birch Tree), Maine' +p317778 +sg291136 +g27 +sg291137 +S'John Marin' +p317779 +sa(dp317780 +g291130 +S'watercolor, charcoal, and graphite on wove paper' +p317781 +sg291132 +S'1919' +p317782 +sg291134 +S'Northern New Jersey' +p317783 +sg291136 +g27 +sg291137 +S'John Marin' +p317784 +sa(dp317785 +g291130 +S'watercolor and charcoal on wove paper' +p317786 +sg291132 +S'1920' +p317787 +sg291134 +S'Stonington Harbor, Maine' +p317788 +sg291136 +g27 +sg291137 +S'John Marin' +p317789 +sa(dp317790 +g291130 +S'watercolor and graphite on heavy wove paper' +p317791 +sg291132 +S'possibly 1920' +p317792 +sg291134 +S'Crotch Island Granite Quarry' +p317793 +sg291136 +g27 +sg291137 +S'John Marin' +p317794 +sa(dp317795 +g291130 +S'watercolor and graphite on heavy wove paper' +p317796 +sg291132 +S'possibly c. 1920' +p317797 +sg291134 +S'Untitled' +p317798 +sg291136 +g27 +sg291137 +S'John Marin' +p317799 +sa(dp317800 +g291130 +S'watercolor and charcoal over graphite on wove paper' +p317801 +sg291132 +S'1921' +p317802 +sg291134 +S'Deer Isle, Maine' +p317803 +sg291136 +g27 +sg291137 +S'John Marin' +p317804 +sa(dp317805 +g291130 +S'watercolor and charcoal over graphite on wove paper' +p317806 +sg291132 +S'1921' +p317807 +sg291134 +S'From Deer Isle, Maine' +p317808 +sg291136 +g27 +sg291137 +S'John Marin' +p317809 +sa(dp317810 +g291130 +S'watercolor, charcoal, and graphite on wove paper' +p317811 +sg291132 +S'1922' +p317812 +sg291134 +S'Deer Isle, Maine' +p317813 +sg291136 +g27 +sg291137 +S'John Marin' +p317814 +sa(dp317815 +g291130 +S'watercolor and charcoal on wove paper' +p317816 +sg291132 +S'1922' +p317817 +sg291134 +S'Three Houses, Barn and Chicken Coop, Stonington, Deer Isle, Maine' +p317818 +sg291136 +g27 +sg291137 +S'John Marin' +p317819 +sa(dp317820 +g291130 +S'watercolor over graphite on wove paper' +p317821 +sg291132 +S'1922' +p317822 +sg291134 +S'Three Houses, Barn and Chicken Coop, Stonington, Maine' +p317823 +sg291136 +g27 +sg291137 +S'John Marin' +p317824 +sa(dp317825 +g291130 +S'watercolor and charcoal on thin wove paper' +p317826 +sg291132 +S'1923' +p317827 +sg291134 +S'Deer Isle, Maine' +p317828 +sg291136 +g27 +sg291137 +S'John Marin' +p317829 +sa(dp317830 +g291130 +S'watercolor and charcoal on wove paper' +p317831 +sg291132 +S'1923' +p317832 +sg291134 +S'Deer Isle, Maine' +p317833 +sg291136 +g27 +sg291137 +S'John Marin' +p317834 +sa(dp317835 +g291130 +S'watercolor and charcoal over graphite on wove paper with wove paper collage element' +p317836 +sg291132 +S'1923' +p317837 +sg291134 +S'Old House, Waterfront, Stonington, Maine' +p317838 +sg291136 +g27 +sg291137 +S'John Marin' +p317839 +sa(dp317840 +g291130 +S'watercolor on wove paper' +p317841 +sg291132 +S'c. 1922/1925' +p317842 +sg291134 +S'Sea and Island, Maine' +p317843 +sg291136 +g27 +sg291137 +S'John Marin' +p317844 +sa(dp317845 +g291130 +S'watercolor over graphite on wove paper' +p317846 +sg291132 +S'1926' +p317847 +sg291134 +S'Deer Isle, Maine' +p317848 +sg291136 +g27 +sg291137 +S'John Marin' +p317849 +sa(dp317850 +g291130 +S'watercolor, charcoal, and graphite on wove paper' +p317851 +sg291132 +S'1931' +p317852 +sg291134 +S'Old Court House, New Castle, Delaware' +p317853 +sg291136 +g27 +sg291137 +S'John Marin' +p317854 +sa(dp317855 +g291130 +S'watercolor over charcoal on wove paper with deckle edges' +p317856 +sg291132 +S'c. 1931' +p317857 +sg291134 +S'Small Point, Maine' +p317858 +sg291136 +g27 +sg291137 +S'John Marin' +p317859 +sa(dp317860 +g291130 +S'pen and black ink on Whatman wove paper' +p317861 +sg291132 +S'c. 1888' +p317862 +sg291134 +S'Entablature - Doric Order' +p317863 +sg291136 +g27 +sg291137 +S'John Marin' +p317864 +sa(dp317865 +g291130 +S'pen and black and blue ink on wove paper' +p317866 +sg291132 +S'c. 1888' +p317867 +sg291134 +S'Gothic Profiles' +p317868 +sg291136 +g27 +sg291137 +S'John Marin' +p317869 +sa(dp317870 +g291130 +S'pen and ink on J Whatman paper' +p317871 +sg291132 +S'c. 1888' +p317872 +sg291134 +S'Grecian Mouldings' +p317873 +sg291136 +g27 +sg291137 +S'John Marin' +p317874 +sa(dp317875 +g291130 +S'pen and ink and graphite on J Whatman paper' +p317876 +sg291132 +S'c. 1888' +p317877 +sg291134 +S'Roman Mouldings' +p317878 +sg291136 +g27 +sg291137 +S'John Marin' +p317879 +sa(dp317880 +g291130 +S'graphite on canvas' +p317881 +sg291132 +S'unknown date\n' +p317882 +sg291134 +S'Untitled' +p317883 +sg291136 +g27 +sg291137 +S'John Marin' +p317884 +sa(dp317885 +g291130 +S'watercolor on wove paper' +p317886 +sg291132 +S'1909' +p317887 +sg291134 +S'French Landscape' +p317888 +sg291136 +g27 +sg291137 +S'John Marin' +p317889 +sa(dp317890 +g291130 +S'watercolor on wove paper' +p317891 +sg291132 +S'1910' +p317892 +sg291134 +S'Hudson River near Alpine' +p317893 +sg291136 +g27 +sg291137 +S'John Marin' +p317894 +sa(dp317895 +g291130 +S'watercolor on wove paper; laid down' +p317896 +sg291132 +S'1912' +p317897 +sg291134 +S'Hudson River at Peekskill' +p317898 +sg291136 +g27 +sg291137 +S'John Marin' +p317899 +sa(dp317900 +g291130 +S'watercolor over graphite on wove paper' +p317901 +sg291132 +S'1913' +p317902 +sg291134 +S'Castorland, New York' +p317903 +sg291136 +g27 +sg291137 +S'John Marin' +p317904 +sa(dp317905 +g291130 +S'watercolor over graphite on wove paper' +p317906 +sg291132 +S'1913' +p317907 +sg291134 +S'Castorland, New York' +p317908 +sg291136 +g27 +sg291137 +S'John Marin' +p317909 +sa(dp317910 +g291130 +S'watercolor over graphite on wove paper' +p317911 +sg291132 +S'1914' +p317912 +sg291134 +S'West Point, Maine' +p317913 +sg291136 +g27 +sg291137 +S'John Marin' +p317914 +sa(dp317915 +g291130 +S'watercolor over graphite on wove paper' +p317916 +sg291132 +S'1916' +p317917 +sg291134 +S'Echo Lake District, Pennsylvania' +p317918 +sg291136 +g27 +sg291137 +S'John Marin' +p317919 +sa(dp317920 +g291130 +S'watercolor over graphite on wove paper' +p317921 +sg291132 +S'1916' +p317922 +sg291134 +S'Echo Lake, Pennsylvania' +p317923 +sg291136 +g27 +sg291137 +S'John Marin' +p317924 +sa(dp317925 +g291130 +S'watercolor over graphite on wove paper' +p317926 +sg291132 +S'1917' +p317927 +sg291134 +S'Abstraction' +p317928 +sg291136 +g27 +sg291137 +S'John Marin' +p317929 +sa(dp317930 +g291130 +S'watercolor over graphite on wove paper' +p317931 +sg291132 +S'1917' +p317932 +sg291134 +S'Abstraction' +p317933 +sg291136 +g27 +sg291137 +S'John Marin' +p317934 +sa(dp317935 +g291130 +S'watercolor over graphite on wove paper' +p317936 +sg291132 +S'1917' +p317937 +sg291134 +S'Movement C' +p317938 +sg291136 +g27 +sg291137 +S'John Marin' +p317939 +sa(dp317940 +g291130 +S'watercolor over graphite on wove paper' +p317941 +sg291132 +S'1917' +p317942 +sg291134 +S'Small Point, Maine' +p317943 +sg291136 +g27 +sg291137 +S'John Marin' +p317944 +sa(dp317945 +g291130 +S'watercolor and graphite on wove paper' +p317946 +sg291132 +S'1918' +p317947 +sg291134 +S'Cow Feeding' +p317948 +sg291136 +g27 +sg291137 +S'John Marin' +p317949 +sa(dp317950 +g291130 +S'watercolor over graphite on wove paper' +p317951 +sg291132 +S'1918' +p317952 +sg291134 +S'Rowe, Massachusetts' +p317953 +sg291136 +g27 +sg291137 +S'John Marin' +p317954 +sa(dp317955 +g291130 +S'watercolor over graphite' +p317956 +sg291132 +S'1918' +p317957 +sg291134 +S'Rowe, Massachusetts' +p317958 +sg291136 +g27 +sg291137 +S'John Marin' +p317959 +sa(dp317960 +g291130 +S'watercolor and charcoal over graphite on wove paper' +p317961 +sg291132 +S'1919' +p317962 +sg291134 +S'Deer Isle, Maine' +p317963 +sg291136 +g27 +sg291137 +S'John Marin' +p317964 +sa(dp317965 +g291130 +S'watercolor and charcoal over graphite on wove paper' +p317966 +sg291132 +S'1919' +p317967 +sg291134 +S'From Deer Isle, Maine No. 1' +p317968 +sg291136 +g27 +sg291137 +S'John Marin' +p317969 +sa(dp317970 +g291130 +S'watercolor and charcoal over graphite on wove paper' +p317971 +sg291132 +S'1919' +p317972 +sg291134 +S'Looking Toward Isle Au Haut, Maine, from Deer Isle' +p317973 +sg291136 +g27 +sg291137 +S'John Marin' +p317974 +sa(dp317975 +g291130 +S'watercolor, charcoal, and graphite on wove paper' +p317976 +sg291132 +S'1921' +p317977 +sg291134 +S'Deer Isle, Maine' +p317978 +sg291136 +g27 +sg291137 +S'John Marin' +p317979 +sa(dp317980 +g291130 +S'watercolor and charcoal on wove paper' +p317981 +sg291132 +S'1922' +p317982 +sg291134 +S'Deer Isle, Maine' +p317983 +sg291136 +g27 +sg291137 +S'John Marin' +p317984 +sa(dp317985 +g291130 +S'watercolor and charcoal over graphite on wove paper' +p317986 +sg291132 +S'1922' +p317987 +sg291134 +S'Deer Isle, Maine' +p317988 +sg291136 +g27 +sg291137 +S'John Marin' +p317989 +sa(dp317990 +g291130 +S'watercolor, gouache, charcoal, and graphite on wove paper' +p317991 +sg291132 +S'1922' +p317992 +sg291134 +S'From Deer Isle, Maine' +p317993 +sg291136 +g27 +sg291137 +S'John Marin' +p317994 +sa(dp317995 +g291130 +S'watercolor over graphite on wove paper' +p317996 +sg291132 +S'1922' +p317997 +sg291134 +S'Small Point, Maine No. 3' +p317998 +sg291136 +g27 +sg291137 +S'John Marin' +p317999 +sa(dp318000 +g291130 +S'watercolor and charcoal on wove paper' +p318001 +sg291132 +S'1923' +p318002 +sg291134 +S"End of Andrew's Island, Maine" +p318003 +sg291136 +g27 +sg291137 +S'John Marin' +p318004 +sa(dp318005 +g291130 +S'watercolor, charcoal, and graphite on wove paper' +p318006 +sg291132 +S'1924' +p318007 +sg291134 +S'Deer Isle, Maine' +p318008 +sg291136 +g27 +sg291137 +S'John Marin' +p318009 +sa(dp318010 +g291130 +S'watercolor and charcoal on wove paper' +p318011 +sg291132 +S'1925' +p318012 +sg291134 +S'Berkshires, Massachusetts' +p318013 +sg291136 +g27 +sg291137 +S'John Marin' +p318014 +sa(dp318015 +g291130 +S'watercolor and charcoal on wove paper' +p318016 +sg291132 +S'1925' +p318017 +sg291134 +S'Berkshires, Massachusetts' +p318018 +sg291136 +g27 +sg291137 +S'John Marin' +p318019 +sa(dp318020 +g291130 +S'watercolor over graphite on wove paper' +p318021 +sg291132 +S'1926' +p318022 +sg291134 +S'Little Maple, Deer Isle No. 1' +p318023 +sg291136 +g27 +sg291137 +S'John Marin' +p318024 +sa(dp318025 +g291130 +S'watercolor and collage on wove paper' +p318026 +sg291132 +S'1926' +p318027 +sg291134 +S'Partridge in Flight, Deer Isle' +p318028 +sg291136 +g27 +sg291137 +S'John Marin' +p318029 +sa(dp318030 +g291130 +S'watercolor and charcoal on wove paper1' +p318031 +sg291132 +S'1927' +p318032 +sg291134 +S'Deer Isle Series' +p318033 +sg291136 +g27 +sg291137 +S'John Marin' +p318034 +sa(dp318035 +g291130 +S'watercolor, charcoal, and graphite on wove paper' +p318036 +sg291132 +S'1928' +p318037 +sg291134 +S'Coming Up the Reach, Stonington, Deer Isle' +p318038 +sg291136 +g27 +sg291137 +S'John Marin' +p318039 +sa(dp318040 +g291130 +S'watercolor, charcoal, and graphite on wove paper' +p318041 +sg291132 +S'1931' +p318042 +sg291134 +S'Small Point, Maine' +p318043 +sg291136 +g27 +sg291137 +S'John Marin' +p318044 +sa(dp318045 +g291130 +S'watercolor, graphite, and charcoal on wove paper' +p318046 +sg291132 +S'1935' +p318047 +sg291134 +S'Upper East River, New York' +p318048 +sg291136 +g27 +sg291137 +S'John Marin' +p318049 +sa(dp318050 +g291130 +S'watercolor and charcoal on wove paper' +p318051 +sg291132 +S'c. 1940' +p318052 +sg291134 +S'Dancing Female Nudes [left half]' +p318053 +sg291136 +g27 +sg291137 +S'John Marin' +p318054 +sa(dp318055 +g291130 +S'watercolor and charcoal on wove paper' +p318056 +sg291132 +S'c. 1940' +p318057 +sg291134 +S'Dancing Female Nudes [right half]' +p318058 +sg291136 +g27 +sg291137 +S'John Marin' +p318059 +sa(dp318060 +g291130 +S'watercolor over graphite on wove paper' +p318061 +sg291132 +S'c. 1914' +p318062 +sg291134 +S'Carrying Place Head (Casco Bay), Maine' +p318063 +sg291136 +g27 +sg291137 +S'John Marin' +p318064 +sa(dp318065 +g291130 +S'watercolor and charcoal on thin wove paper' +p318066 +sg291132 +S'c. 1923' +p318067 +sg291134 +S'Untitled' +p318068 +sg291136 +g27 +sg291137 +S'John Marin' +p318069 +sa(dp318070 +g291130 +S'watercolor over graphite on wove paper' +p318071 +sg291132 +S'unknown date\n' +p318072 +sg291134 +S'Untitled' +p318073 +sg291136 +g27 +sg291137 +S'John Marin' +p318074 +sa(dp318075 +g291130 +S'watercolor, charcoal, and graphite on wove paper laid down on wove paper' +p318076 +sg291132 +S'1940' +p318077 +sg291134 +S'Sea and Rocks, Maine' +p318078 +sg291136 +g27 +sg291137 +S'John Marin' +p318079 +sa(dp318080 +g291130 +S'watercolor over graphite on wove paper' +p318081 +sg291132 +S'unknown date\n' +p318082 +sg291134 +S'Untitled' +p318083 +sg291136 +g27 +sg291137 +S'John Marin' +p318084 +sa(dp318085 +g291130 +S'pastel on wove paper' +p318086 +sg291132 +S'c. 1905' +p318087 +sg291134 +S'Untitled (Church and Figures on Park Benches)' +p318088 +sg291136 +g27 +sg291137 +S'John Marin' +p318089 +sa(dp318090 +g291130 +S'watercolor and graphite on wove paper' +p318091 +sg291132 +S'unknown date\n' +p318092 +sg291134 +S'Untitled (Harbor Scene)' +p318093 +sg291136 +g27 +sg291137 +S'John Marin' +p318094 +sa(dp318095 +g291130 +S'pastel on gray-brown wove paper' +p318096 +sg291132 +S'c. 1907' +p318097 +sg291134 +S'Venetian Canal' +p318098 +sg291136 +g27 +sg291137 +S'John Marin' +p318099 +sa(dp318100 +g291130 +S'pastel on gray-brown wove paper' +p318101 +sg291132 +S'c. 1907' +p318102 +sg291134 +S'Venetian Canal' +p318103 +sg291136 +g27 +sg291137 +S'John Marin' +p318104 +sa(dp318105 +g291130 +S'pastel on gray-brown wove paper' +p318106 +sg291132 +S'c. 1907' +p318107 +sg291134 +S'Buildings, Venice' +p318108 +sg291136 +g27 +sg291137 +S'John Marin' +p318109 +sa(dp318110 +g291130 +S'pastel on gray-brown wove paper' +p318111 +sg291132 +S'c. 1907' +p318112 +sg291134 +S'Venetian Canal' +p318113 +sg291136 +g27 +sg291137 +S'John Marin' +p318114 +sa(dp318115 +g291130 +S'pastel and graphite on tan wove paper' +p318116 +sg291132 +S'c. 1907' +p318117 +sg291134 +S'Street Scene (Venice?)' +p318118 +sg291136 +g27 +sg291137 +S'John Marin' +p318119 +sa(dp318120 +g291130 +S'pastel and graphite on gray-brown wove paper' +p318121 +sg291132 +S'c. 1907' +p318122 +sg291134 +S'Buildings, Venice' +p318123 +sg291136 +g27 +sg291137 +S'John Marin' +p318124 +sa(dp318125 +g291130 +S'pastel with some graphite on gray-brown wove paper' +p318126 +sg291132 +S'c. 1907' +p318127 +sg291134 +S'Venetian Canal' +p318128 +sg291136 +g27 +sg291137 +S'John Marin' +p318129 +sa(dp318130 +g291130 +S'etching on japan paper' +p318131 +sg291132 +S'1906' +p318132 +sg291134 +S'Bridge over Canal, Amsterdam' +p318133 +sg291136 +g27 +sg291137 +S'John Marin' +p318134 +sa(dp318135 +g291130 +S'etching on thin japan paper' +p318136 +sg291132 +S'1906' +p318137 +sg291134 +S'Rue Mouffetard, Paris' +p318138 +sg291136 +g27 +sg291137 +S'John Marin' +p318139 +sa(dp318140 +g291130 +S'etching on japan paper' +p318141 +sg291132 +S'1907' +p318142 +sg291134 +S'Santa Maria Della Salute, Venice' +p318143 +sg291136 +g27 +sg291137 +S'John Marin' +p318144 +sa(dp318145 +g291130 +S'etching on thin japan paper' +p318146 +sg291132 +S'1907' +p318147 +sg291134 +S'Bridge, Venice' +p318148 +sg291136 +g27 +sg291137 +S'John Marin' +p318149 +sa(dp318150 +g291130 +S'etching on Whatman paper' +p318151 +sg291132 +S'1908' +p318152 +sg291134 +S'Notre Dame, Paris' +p318153 +sg291136 +g27 +sg291137 +S'John Marin' +p318154 +sa(dp318155 +g291130 +S'etching on japan paper' +p318156 +sg291132 +S'1909' +p318157 +sg291134 +S'St. Ouen, Rouen' +p318158 +sg291136 +g27 +sg291137 +S'John Marin' +p318159 +sa(dp318160 +g291130 +S'etching on vellum-finish wove paper' +p318161 +sg291132 +S'1914' +p318162 +sg291134 +S"St. Paul's at Broadway, No. 3" +p318163 +sg291136 +g27 +sg291137 +S'John Marin' +p318164 +sa(dp318165 +g291130 +S'etching on Whatman paper' +p318166 +sg291132 +S'1942' +p318167 +sg291134 +S'John Marin, Jr.' +p318168 +sg291136 +g27 +sg291137 +S'John Marin' +p318169 +sa(dp318170 +g291130 +S'etching on laid paper' +p318171 +sg291132 +S'1948' +p318172 +sg291134 +S'The Lobster Fishermen (Third Version)' +p318173 +sg291136 +g27 +sg291137 +S'John Marin' +p318174 +sa(dp318175 +g291130 +S'etching on Whatman paper' +p318176 +sg291132 +S'1948' +p318177 +sg291134 +S'The Lobster Fishermen' +p318178 +sg291136 +g27 +sg291137 +S'John Marin' +p318179 +sa(dp318180 +g291130 +S'etching on wove paper' +p318181 +sg291132 +S'1951' +p318182 +sg291134 +S'Ye Old Dutch Church, Upper Saddle River, No. 2' +p318183 +sg291136 +g27 +sg291137 +S'John Marin' +p318184 +sa(dp318185 +g291130 +S'etching on wove paper' +p318186 +sg291132 +S'1951' +p318187 +sg291134 +S'Ye Old Dutch Church, Upper Saddle River, No. 2' +p318188 +sg291136 +g27 +sg291137 +S'John Marin' +p318189 +sa(dp318190 +g291130 +S'etching on wove paper' +p318191 +sg291132 +S'1951' +p318192 +sg291134 +S'Ye Old Dutch Church, Upper Saddle River, No. 2' +p318193 +sg291136 +g27 +sg291137 +S'John Marin' +p318194 +sa(dp318195 +g291130 +S'lino-cut in red on wove paper' +p318196 +sg291132 +S'1935/1936' +p318197 +sg291134 +S'Merry Christmas - Happy New Year' +p318198 +sg291136 +g27 +sg291137 +S'John Marin' +p318199 +sa(dp318200 +g291130 +S'lino-cut on wove paper' +p318201 +sg291132 +S'1935/1936' +p318202 +sg291134 +S'Merry Christmas - Happy New Year' +p318203 +sg291136 +g27 +sg291137 +S'John Marin' +p318204 +sa(dp318205 +g291130 +S'etching with hand coloring in watercolor on thin wove paper' +p318206 +sg291132 +S'1940' +p318207 +sg291134 +S'Merry Christmas 1939 Happy New Year' +p318208 +sg291136 +g27 +sg291137 +S'John Marin' +p318209 +sa(dp318210 +g291130 +S'etching with hand coloring in gold paint on wove paper hinged to heavy card' +p318211 +sg291132 +S'1942/1943' +p318212 +sg291134 +S'Merry Christmas and Happy New Year' +p318213 +sg291136 +g27 +sg291137 +S'John Marin' +p318214 +sa(dp318215 +g291130 +S'etching on wove paper' +p318216 +sg291132 +S'1942/1943' +p318217 +sg291134 +S'Merry Christmas and Happy New Year' +p318218 +sg291136 +g27 +sg291137 +S'John Marin' +p318219 +sa(dp318220 +g291130 +S'etching on wove paper' +p318221 +sg291132 +S'1943' +p318222 +sg291134 +S'1943 - Greetings to You All - 1944' +p318223 +sg291136 +g27 +sg291137 +S'John Marin' +p318224 +sa(dp318225 +g291130 +S'etching with hand coloring in watercolor on wove paper' +p318226 +sg291132 +S'1944/1945' +p318227 +sg291134 +S'Cape Split and the House, Maine' +p318228 +sg291136 +g27 +sg291137 +S'John Marin' +p318229 +sa(dp318230 +g291130 +S'watercolor and charcoal on three joined sheets of wove paper' +p318231 +sg291132 +S'1928' +p318232 +sg291134 +S'Wall Picture Figures' +p318233 +sg291136 +g27 +sg291137 +S'John Marin' +p318234 +sa(dp318235 +g291130 +S'sketchbook with 25 drawings in graphite, 1 in watercolor (23 leaves)' +p318236 +sg291132 +S'unknown date\n' +p318237 +sg291134 +S'Marin Sketchbook' +p318238 +sg291136 +g27 +sg291137 +S'John Marin' +p318239 +sa(dp318240 +g291130 +S'graphite on blue wove paper' +p318241 +sg291132 +S'c. 1890' +p318242 +sg291134 +S'Ridgefield, Connecticut' +p318243 +sg291136 +g27 +sg291137 +S'John Marin' +p318244 +sa(dp318245 +g291130 +S'graphite on wove paper' +p318246 +sg291132 +S'c. 1890' +p318247 +sg291134 +S'Teaneck, New Jersey' +p318248 +sg291136 +g27 +sg291137 +S'John Marin' +p318249 +sa(dp318250 +g291130 +S'graphite on blue wove paper' +p318251 +sg291132 +S'c. 1890' +p318252 +sg291134 +S'Three Views of a House' +p318253 +sg291136 +g27 +sg291137 +S'John Marin' +p318254 +sa(dp318255 +g291130 +S'graphite on wove paper' +p318256 +sg291132 +S'c. 1890' +p318257 +sg291134 +S'House at Hackensack, New Jersey' +p318258 +sg291136 +g27 +sg291137 +S'John Marin' +p318259 +sa(dp318260 +g291130 +S'graphite on wove paper' +p318261 +sg291132 +S'c. 1890' +p318262 +sg291134 +S'Edgewater, New Jersey' +p318263 +sg291136 +g27 +sg291137 +S'John Marin' +p318264 +sa(dp318265 +g291130 +S'graphite on wove paper' +p318266 +sg291132 +S'c. 1890' +p318267 +sg291134 +S'House with Tree at Right' +p318268 +sg291136 +g27 +sg291137 +S'John Marin' +p318269 +sa(dp318270 +g291130 +S'graphite on green wove paper' +p318271 +sg291132 +S'c. 1890' +p318272 +sg291134 +S'Mill at Alpine, New York' +p318273 +sg291136 +g27 +sg291137 +S'John Marin' +p318274 +sa(dp318275 +g291130 +S'graphite on green wove paper' +p318276 +sg291132 +S'c. 1890' +p318277 +sg291134 +S'Two Sketches, Country Road and House on Lake' +p318278 +sg291136 +g27 +sg291137 +S'John Marin' +p318279 +sa(dp318280 +g291130 +S'graphite on green wove paper' +p318281 +sg291132 +S'c. 1890' +p318282 +sg291134 +S'On Edgewater Road' +p318283 +sg291136 +g27 +sg291137 +S'John Marin' +p318284 +sa(dp318285 +g291130 +S'graphite on green wove paper' +p318286 +sg291132 +S'c. 1890' +p318287 +sg291134 +S'Edgewater, New Jersey' +p318288 +sg291136 +g27 +sg291137 +S'John Marin' +p318289 +sa(dp318290 +g291130 +S'graphite on blue wove paper' +p318291 +sg291132 +S'c. 1890' +p318292 +sg291134 +S'Hackensack Turnpike' +p318293 +sg291136 +g27 +sg291137 +S'John Marin' +p318294 +sa(dp318295 +g291130 +S'graphite on wove paper' +p318296 +sg291132 +S'c. 1890' +p318297 +sg291134 +S'Ridgewood, New Jersey' +p318298 +sg291136 +g27 +sg291137 +S'John Marin' +p318299 +sa(dp318300 +g291130 +S'graphite on green wove paper' +p318301 +sg291132 +S'c. 1890' +p318302 +sg291134 +S'Teaneck Road' +p318303 +sg291136 +g27 +sg291137 +S'John Marin' +p318304 +sa(dp318305 +g291130 +S'graphite on green wove paper' +p318306 +sg291132 +S'c. 1890' +p318307 +sg291134 +S'Teaneck Road, New Jersey' +p318308 +sg291136 +g27 +sg291137 +S'John Marin' +p318309 +sa(dp318310 +g291130 +S'graphite on green wove paper' +p318311 +sg291132 +S'c. 1890' +p318312 +sg291134 +S'House with Picket Fence' +p318313 +sg291136 +g27 +sg291137 +S'John Marin' +p318314 +sa(dp318315 +g291130 +S'graphite on green wove paper' +p318316 +sg291132 +S'c. 1890' +p318317 +sg291134 +S'Hackensack, New Jersey' +p318318 +sg291136 +g27 +sg291137 +S'John Marin' +p318319 +sa(dp318320 +g291130 +S'graphite on wove paper' +p318321 +sg291132 +S'c. 1890' +p318322 +sg291134 +S'Rocky Glen' +p318323 +sg291136 +g27 +sg291137 +S'John Marin' +p318324 +sa(dp318325 +g291130 +S'graphite on wove paper' +p318326 +sg291132 +S'c. 1890' +p318327 +sg291134 +S'Lake Scene' +p318328 +sg291136 +g27 +sg291137 +S'John Marin' +p318329 +sa(dp318330 +g291130 +S'graphite on blue wove paper' +p318331 +sg291132 +S'c. 1890' +p318332 +sg291134 +S'Lake Shore' +p318333 +sg291136 +g27 +sg291137 +S'John Marin' +p318334 +sa(dp318335 +g291130 +S'graphite on wove paper' +p318336 +sg291132 +S'c. 1890' +p318337 +sg291134 +S'House on Lake' +p318338 +sg291136 +g27 +sg291137 +S'John Marin' +p318339 +sa(dp318340 +g291130 +S'graphite on Whatman wove paper' +p318341 +sg291132 +S'c. 1890' +p318342 +sg291134 +S"World's Fair, Chicago, Illinois" +p318343 +sg291136 +g27 +sg291137 +S'John Marin' +p318344 +sa(dp318345 +g291130 +S'watercolor and graphite on green wove paper' +p318346 +sg291132 +S'c. 1890' +p318347 +sg291134 +S'Wooded Landscape with Waterfall' +p318348 +sg291136 +g27 +sg291137 +S'John Marin' +p318349 +sa(dp318350 +g291130 +S'graphite on green wove paper' +p318351 +sg291132 +S'c. 1890' +p318352 +sg291134 +S'House in Field' +p318353 +sg291136 +g27 +sg291137 +S'John Marin' +p318354 +sa(dp318355 +g291130 +S'graphite on green wove paper' +p318356 +sg291132 +S'c. 1890' +p318357 +sg291134 +S'Two Houses' +p318358 +sg291136 +g27 +sg291137 +S'John Marin' +p318359 +sa(dp318360 +g291130 +S'graphite on green wove paper' +p318361 +sg291132 +S'c. 1890' +p318362 +sg291134 +S'Shore Scene' +p318363 +sg291136 +g27 +sg291137 +S'John Marin' +p318364 +sa(dp318365 +g291130 +S'sketchbook with 24 drawings in various media (53 leaves)' +p318366 +sg291132 +S'1920s' +p318367 +sg291134 +S'Marin Sketchbook' +p318368 +sg291136 +g27 +sg291137 +S'John Marin' +p318369 +sa(dp318370 +g291130 +S'colored pencil over graphite on wove paper' +p318371 +sg291132 +S'unknown date\n' +p318372 +sg291134 +S'Chinese Junk' +p318373 +sg291136 +g27 +sg291137 +S'John Marin' +p318374 +sa(dp318375 +g291130 +S'colored pencil over graphite on wove paper' +p318376 +sg291132 +S'unknown date\n' +p318377 +sg291134 +S'Chinese Junk' +p318378 +sg291136 +g27 +sg291137 +S'John Marin' +p318379 +sa(dp318380 +g291130 +S'colored pencil on wove paper' +p318381 +sg291132 +S'unknown date\n' +p318382 +sg291134 +S'Boats on a River' +p318383 +sg291136 +g27 +sg291137 +S'John Marin' +p318384 +sa(dp318385 +g291130 +S'colored pencil on wove paper' +p318386 +sg291132 +S'unknown date\n' +p318387 +sg291134 +S'Ship with Two Smokestacks Billowing Smoke' +p318388 +sg291136 +g27 +sg291137 +S'John Marin' +p318389 +sa(dp318390 +g291130 +S'colored pencil on wove paper' +p318391 +sg291132 +S'unknown date\n' +p318392 +sg291134 +S'Tugboat on River' +p318393 +sg291136 +g27 +sg291137 +S'John Marin' +p318394 +sa(dp318395 +g291130 +S'colored pencil and graphite on wove paper' +p318396 +sg291132 +S'unknown date\n' +p318397 +sg291134 +S'New York Street Scene' +p318398 +sg291136 +g27 +sg291137 +S'John Marin' +p318399 +sa(dp318400 +g291130 +S'colored pencil on wove paper' +p318401 +sg291132 +S'unknown date\n' +p318402 +sg291134 +S'Frenetic Street Scene' +p318403 +sg291136 +g27 +sg291137 +S'John Marin' +p318404 +sa(dp318405 +g291130 +S'colored pencil over graphite on wove paper' +p318406 +sg291132 +S'unknown date\n' +p318407 +sg291134 +S'Figures on a City Street' +p318408 +sg291136 +g27 +sg291137 +S'John Marin' +p318409 +sa(dp318410 +g291130 +S'colored pencil over graphite on wove paper' +p318411 +sg291132 +S'unknown date\n' +p318412 +sg291134 +S'Bustling City Street' +p318413 +sg291136 +g27 +sg291137 +S'John Marin' +p318414 +sa(dp318415 +g291130 +S'colored pencil over graphite on wove paper' +p318416 +sg291132 +S'unknown date\n' +p318417 +sg291134 +S'City Street' +p318418 +sg291136 +g27 +sg291137 +S'John Marin' +p318419 +sa(dp318420 +g291130 +S'colored pencil over graphite on wove paper' +p318421 +sg291132 +S'unknown date\n' +p318422 +sg291134 +S'City Street, Policeman at Center' +p318423 +sg291136 +g27 +sg291137 +S'John Marin' +p318424 +sa(dp318425 +g291130 +S'colored pencil over graphite on wove paper' +p318426 +sg291132 +S'unknown date\n' +p318427 +sg291134 +S'Couple Walking on City Street' +p318428 +sg291136 +g27 +sg291137 +S'John Marin' +p318429 +sa(dp318430 +g291130 +S'colored pencil over graphite on wove paper' +p318431 +sg291132 +S'unknown date\n' +p318432 +sg291134 +S'City Street Canyon' +p318433 +sg291136 +g27 +sg291137 +S'John Marin' +p318434 +sa(dp318435 +g291130 +S'colored pencil over graphite on wove paper' +p318436 +sg291132 +S'unknown date\n' +p318437 +sg291134 +S'City Street' +p318438 +sg291136 +g27 +sg291137 +S'John Marin' +p318439 +sa(dp318440 +g291130 +S'colored pencil on wove paper' +p318441 +sg291132 +S'unknown date\n' +p318442 +sg291134 +S'Abstract Landscape' +p318443 +sg291136 +g27 +sg291137 +S'John Marin' +p318444 +sa(dp318445 +g291130 +S'colored pencil on wove paper' +p318446 +sg291132 +S'unknown date\n' +p318447 +sg291134 +S'Landscape' +p318448 +sg291136 +g27 +sg291137 +S'John Marin' +p318449 +sa(dp318450 +g291130 +S'colored pencil on wove paper' +p318451 +sg291132 +S'unknown date\n' +p318452 +sg291134 +S'Landscape' +p318453 +sg291136 +g27 +sg291137 +S'John Marin' +p318454 +sa(dp318455 +g291130 +S'colored pencil on wove paper' +p318456 +sg291132 +S'unknown date\n' +p318457 +sg291134 +S'House and Tree' +p318458 +sg291136 +g27 +sg291137 +S'John Marin' +p318459 +sa(dp318460 +g291130 +S'colored pencil on wove paper' +p318461 +sg291132 +S'unknown date\n' +p318462 +sg291134 +S'Blue Hills' +p318463 +sg291136 +g27 +sg291137 +S'John Marin' +p318464 +sa(dp318465 +g291130 +S'colored pencil on wove paper' +p318466 +sg291132 +S'unknown date\n' +p318467 +sg291134 +S'Abstract Harbor' +p318468 +sg291136 +g27 +sg291137 +S'John Marin' +p318469 +sa(dp318470 +g291130 +S'colored pencil on wove paper' +p318471 +sg291132 +S'unknown date\n' +p318472 +sg291134 +S'Lake Scene' +p318473 +sg291136 +g27 +sg291137 +S'John Marin' +p318474 +sa(dp318475 +g291130 +S'colored pencil and graphite on wove paper' +p318476 +sg291132 +S'unknown date\n' +p318477 +sg291134 +S'Harbor Abstraction' +p318478 +sg291136 +g27 +sg291137 +S'John Marin' +p318479 +sa(dp318480 +g291130 +S'colored pencil on wove paper' +p318481 +sg291132 +S'unknown date\n' +p318482 +sg291134 +S'Abstracted Boat on Drydock' +p318483 +sg291136 +g27 +sg291137 +S'John Marin' +p318484 +sa(dp318485 +g291130 +S'colored pencil on wove paper' +p318486 +sg291132 +S'unknown date\n' +p318487 +sg291134 +S'Boat on Drydock' +p318488 +sg291136 +g27 +sg291137 +S'John Marin' +p318489 +sa(dp318490 +g291130 +S'sketchbook with 22 drawings in graphite (20 leaves)' +p318491 +sg291132 +S'unknown date\n' +p318492 +sg291134 +S'Marin Sketchbook' +p318493 +sg291136 +g27 +sg291137 +S'John Marin' +p318494 +sa(dp318495 +g291130 +S'graphite on wove paper' +p318496 +sg291132 +S'unknown date\n' +p318497 +sg291134 +S'Germantown' +p318498 +sg291136 +g27 +sg291137 +S'John Marin' +p318499 +sa(dp318500 +g291130 +S'graphite on wove paper' +p318501 +sg291132 +S'unknown date\n' +p318502 +sg291134 +S'Wooded Landscape with Houses' +p318503 +sg291136 +g27 +sg291137 +S'John Marin' +p318504 +sa(dp318505 +g291130 +S'graphite on wove paper' +p318506 +sg291132 +S'unknown date\n' +p318507 +sg291134 +S'Minneapolis, Minnesota' +p318508 +sg291136 +g27 +sg291137 +S'John Marin' +p318509 +sa(dp318510 +g291130 +S'graphite on wove paper' +p318511 +sg291132 +S'unknown date\n' +p318512 +sg291134 +S'Bit of Creek, Mississippi Basin' +p318513 +sg291136 +g27 +sg291137 +S'John Marin' +p318514 +sa(dp318515 +g291130 +S'graphite on wove paper' +p318516 +sg291132 +S'unknown date\n' +p318517 +sg291134 +S'Source of Creek, Mississippi Basin' +p318518 +sg291136 +g27 +sg291137 +S'John Marin' +p318519 +sa(dp318520 +g291130 +S'graphite on wove paper' +p318521 +sg291132 +S'unknown date\n' +p318522 +sg291134 +S'Mississippi Basin' +p318523 +sg291136 +g27 +sg291137 +S'John Marin' +p318524 +sa(dp318525 +g291130 +S'graphite on wove paper' +p318526 +sg291132 +S'unknown date\n' +p318527 +sg291134 +S'Minneapolis, Minnesota' +p318528 +sg291136 +g27 +sg291137 +S'John Marin' +p318529 +sa(dp318530 +g291130 +S'graphite on wove paper' +p318531 +sg291132 +S'unknown date\n' +p318532 +sg291134 +S'Mississippi' +p318533 +sg291136 +g27 +sg291137 +S'John Marin' +p318534 +sa(dp318535 +g291130 +S'graphite on wove paper' +p318536 +sg291132 +S'unknown date\n' +p318537 +sg291134 +S'St. Paul, Minnesota' +p318538 +sg291136 +g27 +sg291137 +S'John Marin' +p318539 +sa(dp318540 +g291130 +S'graphite on wove paper' +p318541 +sg291132 +S'unknown date\n' +p318542 +sg291134 +S'Minneapolis [recto]' +p318543 +sg291136 +g27 +sg291137 +S'John Marin' +p318544 +sa(dp318545 +g291130 +S'graphite on wove paper' +p318546 +sg291132 +S'unknown date\n' +p318547 +sg291134 +S'Cityscape with Bridge in Foreground' +p318548 +sg291136 +g27 +sg291137 +S'John Marin' +p318549 +sa(dp318550 +g291130 +S'graphite on wove paper' +p318551 +sg291132 +S'unknown date\n' +p318552 +sg291134 +S'Cityscape' +p318553 +sg291136 +g27 +sg291137 +S'John Marin' +p318554 +sa(dp318555 +g291130 +S'graphite on wove paper' +p318556 +sg291132 +S'unknown date\n' +p318557 +sg291134 +S'St. Paul, Minnesota [recto]' +p318558 +sg291136 +g27 +sg291137 +S'John Marin' +p318559 +sa(dp318560 +g291130 +S'graphite on wove paper' +p318561 +sg291132 +S'unknown date\n' +p318562 +sg291134 +S'St. Paul, Minnesota [verso]' +p318563 +sg291136 +g27 +sg291137 +S'John Marin' +p318564 +sa(dp318565 +g291130 +S'graphite on wove paper' +p318566 +sg291132 +S'unknown date\n' +p318567 +sg291134 +S'Distant View of a Church' +p318568 +sg291136 +g27 +sg291137 +S'John Marin' +p318569 +sa(dp318570 +g291130 +S'graphite on wove paper' +p318571 +sg291132 +S'unknown date\n' +p318572 +sg291134 +S'St. Paul, Minnesota' +p318573 +sg291136 +g27 +sg291137 +S'John Marin' +p318574 +sa(dp318575 +g291130 +S'graphite on wove paper' +p318576 +sg291132 +S'unknown date\n' +p318577 +sg291134 +S'Formation in Wisconsin' +p318578 +sg291136 +g27 +sg291137 +S'John Marin' +p318579 +sa(dp318580 +g291130 +S'graphite on wove paper' +p318581 +sg291132 +S'unknown date\n' +p318582 +sg291134 +S'Milwaukee, Wisconsin' +p318583 +sg291136 +g27 +sg291137 +S'John Marin' +p318584 +sa(dp318585 +g291130 +S'graphite on wove paper' +p318586 +sg291132 +S'unknown date\n' +p318587 +sg291134 +S'Sand Dunes Near Milwaukee, Wisconsin' +p318588 +sg291136 +g27 +sg291137 +S'John Marin' +p318589 +sa(dp318590 +g291130 +S'graphite on wove paper' +p318591 +sg291132 +S'unknown date\n' +p318592 +sg291134 +S'On Lake Michigan, Near Milwaukee, Wisconsin' +p318593 +sg291136 +g27 +sg291137 +S'John Marin' +p318594 +sa(dp318595 +g291130 +S'graphite on wove paper' +p318596 +sg291132 +S'unknown date\n' +p318597 +sg291134 +S'Houses in the Woods' +p318598 +sg291136 +g27 +sg291137 +S'John Marin' +p318599 +sa(dp318600 +g291130 +S'graphite on wove paper' +p318601 +sg291132 +S'unknown date\n' +p318602 +sg291134 +S'House in a Grove' +p318603 +sg291136 +g27 +sg291137 +S'John Marin' +p318604 +sa(dp318605 +g291130 +S'sketchbook with 19 drawings in various media (20 leaves)' +p318606 +sg291132 +S'c. 1950' +p318607 +sg291134 +S'Marin Sketchbook' +p318608 +sg291136 +g27 +sg291137 +S'John Marin' +p318609 +sa(dp318610 +g291130 +S'black chalk, graphite, and watercolor on wove paper' +p318611 +sg291132 +S'c. 1950' +p318612 +sg291134 +S'Circus Scene' +p318613 +sg291136 +g27 +sg291137 +S'John Marin' +p318614 +sa(dp318615 +g291130 +S'black chalk, graphite, and watercolor on wove paper' +p318616 +sg291132 +S'c. 1950' +p318617 +sg291134 +S'Circus Scene' +p318618 +sg291136 +g27 +sg291137 +S'John Marin' +p318619 +sa(dp318620 +g291130 +S'watercolor over graphite on wove paper' +p318621 +sg291132 +S'c. 1950' +p318622 +sg291134 +S'Sunset, Cape Split, Maine' +p318623 +sg291136 +g27 +sg291137 +S'John Marin' +p318624 +sa(dp318625 +g291130 +S'black chalk, graphite, and watercolor on wove paper' +p318626 +sg291132 +S'c. 1950' +p318627 +sg291134 +S'Circus Scene' +p318628 +sg291136 +g27 +sg291137 +S'John Marin' +p318629 +sa(dp318630 +g291130 +S'black chalk, watercolor, and graphite on wove paper' +p318631 +sg291132 +S'c. 1950' +p318632 +sg291134 +S'Circus Scene' +p318633 +sg291136 +g27 +sg291137 +S'John Marin' +p318634 +sa(dp318635 +g291130 +S'black chalk on wove paper' +p318636 +sg291132 +S'c. 1940' +p318637 +sg291134 +S'Flying Trapese Abstraction' +p318638 +sg291136 +g27 +sg291137 +S'John Marin' +p318639 +sa(dp318640 +g291130 +S'black chalk on wove paper' +p318641 +sg291132 +S'c. 1950' +p318642 +sg291134 +S'Circus Abstraction' +p318643 +sg291136 +g27 +sg291137 +S'John Marin' +p318644 +sa(dp318645 +g291130 +S'watercolor over graphite, and black chalk on wove paper' +p318646 +sg291132 +S'c. 1950' +p318647 +sg291134 +S'Circus Scene' +p318648 +sg291136 +g27 +sg291137 +S'John Marin' +p318649 +sa(dp318650 +g291130 +S'black chalk and watercolor on wove paper' +p318651 +sg291132 +S'c. 1940' +p318652 +sg291134 +S'Circus Scene, High Wire Act' +p318653 +sg291136 +g27 +sg291137 +S'John Marin' +p318654 +sa(dp318655 +g291130 +S'watercolor, black chalk, and graphite on wove paper' +p318656 +sg291132 +S'c. 1950' +p318657 +sg291134 +S'Circus Scene' +p318658 +sg291136 +g27 +sg291137 +S'John Marin' +p318659 +sa(dp318660 +g291130 +S'black chalk and graphite on wove paper' +p318661 +sg291132 +S'c. 1950' +p318662 +sg291134 +S'Circus Horses Performing' +p318663 +sg291136 +g27 +sg291137 +S'John Marin' +p318664 +sa(dp318665 +g291130 +S'black chalk and graphite on wove paper' +p318666 +sg291132 +S'c. 1950' +p318667 +sg291134 +S'Circus Scene' +p318668 +sg291136 +g27 +sg291137 +S'John Marin' +p318669 +sa(dp318670 +g291130 +S'black chalk and graphite on wove paper' +p318671 +sg291132 +S'c. 1950' +p318672 +sg291134 +S'Circus Abstraction' +p318673 +sg291136 +g27 +sg291137 +S'John Marin' +p318674 +sa(dp318675 +g291130 +S'black chalk and watercolor on wove paper' +p318676 +sg291132 +S'c. 1950' +p318677 +sg291134 +S'Circus Scene' +p318678 +sg291136 +g27 +sg291137 +S'John Marin' +p318679 +sa(dp318680 +g291130 +S'black chalk and graphite on wove paper' +p318681 +sg291132 +S'c. 1950' +p318682 +sg291134 +S'Performing Circus Horses' +p318683 +sg291136 +g27 +sg291137 +S'John Marin' +p318684 +sa(dp318685 +g291130 +S'black chalk and graphite on wove paper' +p318686 +sg291132 +S'c. 1950' +p318687 +sg291134 +S'Abstracted Circus Performer' +p318688 +sg291136 +g27 +sg291137 +S'John Marin' +p318689 +sa(dp318690 +g291130 +S'black chalk and graphite on wove paper' +p318691 +sg291132 +S'c. 1950' +p318692 +sg291134 +S'Group of Circus People' +p318693 +sg291136 +g27 +sg291137 +S'John Marin' +p318694 +sa(dp318695 +g291130 +S'black chalk and graphite on wove paper' +p318696 +sg291132 +S'c. 1950' +p318697 +sg291134 +S'Studies of Circus Figures' +p318698 +sg291136 +g27 +sg291137 +S'John Marin' +p318699 +sa(dp318700 +g291130 +S'watercolor over graphite and black chalk on wove paper' +p318701 +sg291132 +S'c. 1950' +p318702 +sg291134 +S'Landscape' +p318703 +sg291136 +g27 +sg291137 +S'John Marin' +p318704 +sa(dp318705 +g291130 +S'sketchbook with 13 drawings in graphite and 1 drawing in watercolor (13 leaves)' +p318706 +sg291132 +S'1890/1891' +p318707 +sg291134 +S'Marin Sketchbook' +p318708 +sg291136 +g27 +sg291137 +S'John Marin' +p318709 +sa(dp318710 +g291130 +S'graphite on wove paper' +p318711 +sg291132 +S'1890/1891' +p318712 +sg291134 +S'Untitled' +p318713 +sg291136 +g27 +sg291137 +S'John Marin' +p318714 +sa(dp318715 +g291130 +S'graphite on wove paper' +p318716 +sg291132 +S'1890' +p318717 +sg291134 +S'White Lake' +p318718 +sg291136 +g27 +sg291137 +S'John Marin' +p318719 +sa(dp318720 +g291130 +S'graphite on wove paper' +p318721 +sg291132 +S'1890/1891' +p318722 +sg291134 +S'Lake Scene' +p318723 +sg291136 +g27 +sg291137 +S'John Marin' +p318724 +sa(dp318725 +g291130 +S'graphite on wove paper' +p318726 +sg291132 +S'1890/1891' +p318727 +sg291134 +S'Lakeshore Scene' +p318728 +sg291136 +g27 +sg291137 +S'John Marin' +p318729 +sa(dp318730 +g291130 +S'graphite on wove paper' +p318731 +sg291132 +S'1890/1891' +p318732 +sg291134 +S'Wooded Scene' +p318733 +sg291136 +g27 +sg291137 +S'John Marin' +p318734 +sa(dp318735 +g291130 +S'graphite on wove paper' +p318736 +sg291132 +S'1890/1891' +p318737 +sg291134 +S'Farmhouse in Field' +p318738 +sg291136 +g27 +sg291137 +S'John Marin' +p318739 +sa(dp318740 +g291130 +S'watercolor over graphite on wove paper' +p318741 +sg291132 +S'1890/1891' +p318742 +sg291134 +S'Yellow Perch' +p318743 +sg291136 +g27 +sg291137 +S'John Marin' +p318744 +sa(dp318745 +g291130 +S'graphite on wove paper' +p318746 +sg291132 +S'1891' +p318747 +sg291134 +S'Rye, New York' +p318748 +sg291136 +g27 +sg291137 +S'John Marin' +p318749 +sa(dp318750 +g291130 +S'graphite on wove paper' +p318751 +sg291132 +S'1890/1891' +p318752 +sg291134 +S'House in Woods' +p318753 +sg291136 +g27 +sg291137 +S'John Marin' +p318754 +sa(dp318755 +g291130 +S'graphite on wove paper' +p318756 +sg291132 +S'1890/1891' +p318757 +sg291134 +S'House in Woods' +p318758 +sg291136 +g27 +sg291137 +S'John Marin' +p318759 +sa(dp318760 +g291130 +S'graphite on wove paper' +p318761 +sg291132 +S'1891' +p318762 +sg291134 +S'Rye Bay, Long Island Sound, New York' +p318763 +sg291136 +g27 +sg291137 +S'John Marin' +p318764 +sa(dp318765 +g291130 +S'graphite on wove paper' +p318766 +sg291132 +S'1890/1891' +p318767 +sg291134 +S'Study of a Rock' +p318768 +sg291136 +g27 +sg291137 +S'John Marin' +p318769 +sa(dp318770 +g291130 +S'graphite on wove paper' +p318771 +sg291132 +S'1890/1891' +p318772 +sg291134 +S'Bridge and Pylons in Water' +p318773 +sg291136 +g27 +sg291137 +S'John Marin' +p318774 +sa(dp318775 +g291130 +S'graphite on wove paper' +p318776 +sg291132 +S'1890/1891' +p318777 +sg291134 +S'Untitled' +p318778 +sg291136 +g27 +sg291137 +S'John Marin' +p318779 +sa(dp318780 +g291130 +S'sketchbook with 36 drawings in various media (67 leaves)' +p318781 +sg291132 +S'unknown date\n' +p318782 +sg291134 +S'Marin Sketchbook' +p318783 +sg291136 +g27 +sg291137 +S'John Marin' +p318784 +sa(dp318785 +g291130 +S'colored pencil on wove paper' +p318786 +sg291132 +S'c. 1924' +p318787 +sg291134 +S'Village Sketch' +p318788 +sg291136 +g27 +sg291137 +S'John Marin' +p318789 +sa(dp318790 +g291130 +S'colored pencil on wove paper' +p318791 +sg291132 +S'c. 1924' +p318792 +sg291134 +S'Cityscape' +p318793 +sg291136 +g27 +sg291137 +S'John Marin' +p318794 +sa(dp318795 +g291130 +S'colored pencil on wove paper' +p318796 +sg291132 +S'c. 1924' +p318797 +sg291134 +S'Village Scene with Color Notations' +p318798 +sg291136 +g27 +sg291137 +S'John Marin' +p318799 +sa(dp318800 +g291130 +S'colored pencil on wove paper' +p318801 +sg291132 +S'c. 1924' +p318802 +sg291134 +S'Landscape in Black and Red' +p318803 +sg291136 +g27 +sg291137 +S'John Marin' +p318804 +sa(dp318805 +g291130 +S'colored pencil on wove paper' +p318806 +sg291132 +S'c. 1924' +p318807 +sg291134 +S'Harbor Scene with Color Notations' +p318808 +sg291136 +g27 +sg291137 +S'John Marin' +p318809 +sa(dp318810 +g291130 +S'colored pencil on wove paper' +p318811 +sg291132 +S'c. 1924' +p318812 +sg291134 +S'Mountainous Landscape' +p318813 +sg291136 +g27 +sg291137 +S'John Marin' +p318814 +sa(dp318815 +g291130 +S'colored pencil on wove paper' +p318816 +sg291132 +S'c. 1924' +p318817 +sg291134 +S'Tamarack' +p318818 +sg291136 +g27 +sg291137 +S'John Marin' +p318819 +sa(dp318820 +g291130 +S'colored pencil and graphite on wove paper' +p318821 +sg291132 +S'c. 1924' +p318822 +sg291134 +S'Mountains and Lake' +p318823 +sg291136 +g27 +sg291137 +S'John Marin' +p318824 +sa(dp318825 +g291130 +S'colored pencil on wove paper' +p318826 +sg291132 +S'c. 1924' +p318827 +sg291134 +S'Houses on Shore with Color Notations' +p318828 +sg291136 +g27 +sg291137 +S'John Marin' +p318829 +sa(dp318830 +g291130 +S'colored pencil on wove paper' +p318831 +sg291132 +S'c. 1924' +p318832 +sg291134 +S'Hilly Landscape' +p318833 +sg291136 +g27 +sg291137 +S'John Marin' +p318834 +sa(dp318835 +g291130 +S'colored pencil on wove paper' +p318836 +sg291132 +S'c. 1924' +p318837 +sg291134 +S'Village Scene with Color Notations' +p318838 +sg291136 +g27 +sg291137 +S'John Marin' +p318839 +sa(dp318840 +g291130 +S'colored pencil on wove paper' +p318841 +sg291132 +S'c. 1924' +p318842 +sg291134 +S'Town View with Color Notations' +p318843 +sg291136 +g27 +sg291137 +S'John Marin' +p318844 +sa(dp318845 +g291130 +S'colored pencil on wove paper' +p318846 +sg291132 +S'c. 1924' +p318847 +sg291134 +S'Street Scene' +p318848 +sg291136 +g27 +sg291137 +S'John Marin' +p318849 +sa(dp318850 +g291130 +S'colored pencil on wove paper' +p318851 +sg291132 +S'c. 1924' +p318852 +sg291134 +S'City Scene' +p318853 +sg291136 +g27 +sg291137 +S'John Marin' +p318854 +sa(dp318855 +g291130 +S'colored pencil on wove paper' +p318856 +sg291132 +S'c. 1924' +p318857 +sg291134 +S'Small House with Color Notations' +p318858 +sg291136 +g27 +sg291137 +S'John Marin' +p318859 +sa(dp318860 +g291130 +S'colored pencil on wove paper' +p318861 +sg291132 +S'c. 1924' +p318862 +sg291134 +S'Ship with Color Notations' +p318863 +sg291136 +g27 +sg291137 +S'John Marin' +p318864 +sa(dp318865 +g291130 +S'colored pencil on wove paper' +p318866 +sg291132 +S'c. 1924' +p318867 +sg291134 +S'Abstracted Street Scene' +p318868 +sg291136 +g27 +sg291137 +S'John Marin' +p318869 +sa(dp318870 +g291130 +S'colored pencil on wove paper' +p318871 +sg291132 +S'c. 1924' +p318872 +sg291134 +S'Building' +p318873 +sg291136 +g27 +sg291137 +S'John Marin' +p318874 +sa(dp318875 +g291130 +S'colored pencil on wove paper' +p318876 +sg291132 +S'c. 1924' +p318877 +sg291134 +S'Street Scene with Color Notations' +p318878 +sg291136 +g27 +sg291137 +S'John Marin' +p318879 +sa(dp318880 +g291130 +S'colored pencil on wove paper' +p318881 +sg291132 +S'c. 1924' +p318882 +sg291134 +S'Untitled' +p318883 +sg291136 +g27 +sg291137 +S'John Marin' +p318884 +sa(dp318885 +g291130 +S'colored pencil on wove paper' +p318886 +sg291132 +S'c. 1924' +p318887 +sg291134 +S'Town View' +p318888 +sg291136 +g27 +sg291137 +S'John Marin' +p318889 +sa(dp318890 +g291130 +S'colored pencil on wove paper' +p318891 +sg291132 +S'c. 1924' +p318892 +sg291134 +S'Town Street with Color Notations' +p318893 +sg291136 +g27 +sg291137 +S'John Marin' +p318894 +sa(dp318895 +g291130 +S'colored pencil on wove paper' +p318896 +sg291132 +S'c. 1924' +p318897 +sg291134 +S'Town View with Color Notations' +p318898 +sg291136 +g27 +sg291137 +S'John Marin' +p318899 +sa(dp318900 +g291130 +S'colored pencil on wove paper' +p318901 +sg291132 +S'c. 1924' +p318902 +sg291134 +S'Cluster of Houses' +p318903 +sg291136 +g27 +sg291137 +S'John Marin' +p318904 +sa(dp318905 +g291130 +S'colored pencil on wove paper' +p318906 +sg291132 +S'c. 1924' +p318907 +sg291134 +S'Mountains' +p318908 +sg291136 +g27 +sg291137 +S'John Marin' +p318909 +sa(dp318910 +g291130 +S'colored pencil on wove paper' +p318911 +sg291132 +S'c. 1924' +p318912 +sg291134 +S'Landscape' +p318913 +sg291136 +g27 +sg291137 +S'John Marin' +p318914 +sa(dp318915 +g291130 +S'colored pencil on wove paper' +p318916 +sg291132 +S'c. 1924' +p318917 +sg291134 +S'Landscape' +p318918 +sg291136 +g27 +sg291137 +S'John Marin' +p318919 +sa(dp318920 +g291130 +S'colored pencil on wove paper' +p318921 +sg291132 +S'c. 1924' +p318922 +sg291134 +S'Sketch of a House' +p318923 +sg291136 +g27 +sg291137 +S'John Marin' +p318924 +sa(dp318925 +g291130 +S'colored pencil on wove paper' +p318926 +sg291132 +S'c. 1924' +p318927 +sg291134 +S'Portsmouth, New Hampshire' +p318928 +sg291136 +g27 +sg291137 +S'John Marin' +p318929 +sa(dp318930 +g291130 +S'colored pencil on wove paper' +p318931 +sg291132 +S'c. 1924' +p318932 +sg291134 +S'Untitled' +p318933 +sg291136 +g27 +sg291137 +S'John Marin' +p318934 +sa(dp318935 +g291130 +S'colored pencil on wove paper' +p318936 +sg291132 +S'c. 1924' +p318937 +sg291134 +S'Shore Scene' +p318938 +sg291136 +g27 +sg291137 +S'John Marin' +p318939 +sa(dp318940 +g291130 +S'colored pencil on wove paper' +p318941 +sg291132 +S'c. 1924' +p318942 +sg291134 +S'Shore Scene' +p318943 +sg291136 +g27 +sg291137 +S'John Marin' +p318944 +sa(dp318945 +g291130 +S'colored pencil on wove paper' +p318946 +sg291132 +S'c. 1924' +p318947 +sg291134 +S'Landscape in Blue' +p318948 +sg291136 +g27 +sg291137 +S'John Marin' +p318949 +sa(dp318950 +g291130 +S'colored pencil on wove paper' +p318951 +sg291132 +S'c. 1924' +p318952 +sg291134 +S'Abstracted City Scene in Blue' +p318953 +sg291136 +g27 +sg291137 +S'John Marin' +p318954 +sa(dp318955 +g291130 +S'colored pencil on wove paper' +p318956 +sg291132 +S'c. 1924' +p318957 +sg291134 +S'Untitled' +p318958 +sg291136 +g27 +sg291137 +S'John Marin' +p318959 +sa(dp318960 +g291130 +S'colored pencil on wove paper' +p318961 +sg291132 +S'c. 1924' +p318962 +sg291134 +S'Cityscape' +p318963 +sg291136 +g27 +sg291137 +S'John Marin' +p318964 +sa(dp318965 +g291130 +S'sketchbook with 15 drawings in various media (91 leaves)' +p318966 +sg291132 +S'unknown date\n' +p318967 +sg291134 +S'Marin Sketchbook' +p318968 +sg291136 +g27 +sg291137 +S'John Marin' +p318969 +sa(dp318970 +g291130 +S'colored pencil on wove paper' +p318971 +sg291132 +S'unknown date\n' +p318972 +sg291134 +S'City Seen Across River' +p318973 +sg291136 +g27 +sg291137 +S'John Marin' +p318974 +sa(dp318975 +g291130 +S'colored pencil on wove paper' +p318976 +sg291132 +S'unknown date\n' +p318977 +sg291134 +S'Harbor Scene with Ships' +p318978 +sg291136 +g27 +sg291137 +S'John Marin' +p318979 +sa(dp318980 +g291130 +S'colored pencil on wove paper' +p318981 +sg291132 +S'unknown date\n' +p318982 +sg291134 +S'City Skyline' +p318983 +sg291136 +g27 +sg291137 +S'John Marin' +p318984 +sa(dp318985 +g291130 +S'colored pencil on wove paper' +p318986 +sg291132 +S'unknown date\n' +p318987 +sg291134 +S'City Skyline' +p318988 +sg291136 +g27 +sg291137 +S'John Marin' +p318989 +sa(dp318990 +g291130 +S'colored pencil on wove paper' +p318991 +sg291132 +S'unknown date\n' +p318992 +sg291134 +S'Telephone Building, New York' +p318993 +sg291136 +g27 +sg291137 +S'John Marin' +p318994 +sa(dp318995 +g291130 +S'colored pencil on wove paper' +p318996 +sg291132 +S'unknown date\n' +p318997 +sg291134 +S'Telephone Building, New York' +p318998 +sg291136 +g27 +sg291137 +S'John Marin' +p318999 +sa(dp319000 +g291130 +S'colored pencil on wove paper' +p319001 +sg291132 +S'unknown date\n' +p319002 +sg291134 +S'Telephone Building, New York' +p319003 +sg291136 +g27 +sg291137 +S'John Marin' +p319004 +sa(dp319005 +g291130 +S'colored pencil on wove paper' +p319006 +sg291132 +S'unknown date\n' +p319007 +sg291134 +S'Telephone Building, New York' +p319008 +sg291136 +g27 +sg291137 +S'John Marin' +p319009 +sa(dp319010 +g291130 +S'colored pencil on wove paper' +p319011 +sg291132 +S'unknown date\n' +p319012 +sg291134 +S'Skyscrapers' +p319013 +sg291136 +g27 +sg291137 +S'John Marin' +p319014 +sa(dp319015 +g291130 +S'colored pencil on wove paper' +p319016 +sg291132 +S'unknown date\n' +p319017 +sg291134 +S'Telephone Building, New York' +p319018 +sg291136 +g27 +sg291137 +S'John Marin' +p319019 +sa(dp319020 +g291130 +S'colored pencil on wove paper' +p319021 +sg291132 +S'unknown date\n' +p319022 +sg291134 +S'Shore Scene in Blue' +p319023 +sg291136 +g27 +sg291137 +S'John Marin' +p319024 +sa(dp319025 +g291130 +S'colored pencil on wove paper' +p319026 +sg291132 +S'unknown date\n' +p319027 +sg291134 +S'Landscape with Color Notations' +p319028 +sg291136 +g27 +sg291137 +S'John Marin' +p319029 +sa(dp319030 +g291130 +S'colored pencil on wove paper' +p319031 +sg291132 +S'unknown date\n' +p319032 +sg291134 +S'Cityscape' +p319033 +sg291136 +g27 +sg291137 +S'John Marin' +p319034 +sa(dp319035 +g291130 +S'colored pencil on wove paper' +p319036 +sg291132 +S'unknown date\n' +p319037 +sg291134 +S'Landscape' +p319038 +sg291136 +g27 +sg291137 +S'John Marin' +p319039 +sa(dp319040 +g291130 +S'graphite on wove paper' +p319041 +sg291132 +S'unknown date\n' +p319042 +sg291134 +S'Studies of Birds' +p319043 +sg291136 +g27 +sg291137 +S'John Marin' +p319044 +sa(dp319045 +g291130 +S'sketchbook with 6 drawings in various media (73 leaves)' +p319046 +sg291132 +S'unknown date\n' +p319047 +sg291134 +S'Marin Sketchbook' +p319048 +sg291136 +g27 +sg291137 +S'John Marin' +p319049 +sa(dp319050 +g291130 +S'colored pencil on wove paper' +p319051 +sg291132 +S'unknown date\n' +p319052 +sg291134 +S'William and Liberty Streets, New York' +p319053 +sg291136 +g27 +sg291137 +S'John Marin' +p319054 +sa(dp319055 +g291130 +S'colored pencil on wove paper' +p319056 +sg291132 +S'unknown date\n' +p319057 +sg291134 +S'William and Liberty, Looking South on William, New York' +p319058 +sg291136 +g27 +sg291137 +S'John Marin' +p319059 +sa(dp319060 +g291130 +S'colored pencil and graphite on wove paper' +p319061 +sg291132 +S'unknown date\n' +p319062 +sg291134 +S'Hillside' +p319063 +sg291136 +g27 +sg291137 +S'John Marin' +p319064 +sa(dp319065 +g291130 +S'colored pencil and graphite on wove paper' +p319066 +sg291132 +S'unknown date\n' +p319067 +sg291134 +S'Hillside' +p319068 +sg291136 +g27 +sg291137 +S'John Marin' +p319069 +sa(dp319070 +g291130 +S'colored pencil on wove paper' +p319071 +sg291132 +S'unknown date\n' +p319072 +sg291134 +S'Barn' +p319073 +sg291136 +g27 +sg291137 +S'John Marin' +p319074 +sa(dp319075 +g291130 +S'colored pencil on wove paper' +p319076 +sg291132 +S'unknown date\n' +p319077 +sg291134 +S'Dutch Church' +p319078 +sg291136 +g27 +sg291137 +S'John Marin' +p319079 +sa(dp319080 +g291130 +S'sketchbook with 14 drawings in various media (16 leaves)' +p319081 +sg291132 +S'unknown date\n' +p319082 +sg291134 +S'Marin Sketchbook' +p319083 +sg291136 +g27 +sg291137 +S'John Marin' +p319084 +sa(dp319085 +g291130 +S'colored pencil on wove paper' +p319086 +sg291132 +S'unknown date\n' +p319087 +sg291134 +S'Circus Figures in Blue' +p319088 +sg291136 +g27 +sg291137 +S'John Marin' +p319089 +sa(dp319090 +g291130 +S'colored pencil on wove paper' +p319091 +sg291132 +S'unknown date\n' +p319092 +sg291134 +S'Abstraction in Blue' +p319093 +sg291136 +g27 +sg291137 +S'John Marin' +p319094 +sa(dp319095 +g291130 +S'colored pencil on wove paper' +p319096 +sg291132 +S'unknown date\n' +p319097 +sg291134 +S'Circus Scene' +p319098 +sg291136 +g27 +sg291137 +S'John Marin' +p319099 +sa(dp319100 +g291130 +S'colored pencil and graphite on wove paper' +p319101 +sg291132 +S'unknown date\n' +p319102 +sg291134 +S'Circus Scene' +p319103 +sg291136 +g27 +sg291137 +S'John Marin' +p319104 +sa(dp319105 +g291130 +S'colored pencil on wove paper' +p319106 +sg291132 +S'unknown date\n' +p319107 +sg291134 +S'Circus Scene' +p319108 +sg291136 +g27 +sg291137 +S'John Marin' +p319109 +sa(dp319110 +g291130 +S'colored pencil and graphite on wove paper' +p319111 +sg291132 +S'unknown date\n' +p319112 +sg291134 +S'Two Ring Circus Scene' +p319113 +sg291136 +g27 +sg291137 +S'John Marin' +p319114 +sa(dp319115 +g291130 +S'graphite and colored pencil on wove paper' +p319116 +sg291132 +S'unknown date\n' +p319117 +sg291134 +S'Circus Scene, Three Riders in Orange' +p319118 +sg291136 +g27 +sg291137 +S'John Marin' +p319119 +sa(dp319120 +g291130 +S'graphite and colored pencil on wove paper' +p319121 +sg291132 +S'unknown date\n' +p319122 +sg291134 +S'Circus Scene' +p319123 +sg291136 +g27 +sg291137 +S'John Marin' +p319124 +sa(dp319125 +g291130 +S'colored pencil and graphite on wove paper' +p319126 +sg291132 +S'unknown date\n' +p319127 +sg291134 +S'Circus Scene, High Wire Act' +p319128 +sg291136 +g27 +sg291137 +S'John Marin' +p319129 +sa(dp319130 +g291130 +S'colored pencil and graphite on wove paper' +p319131 +sg291132 +S'unknown date\n' +p319132 +sg291134 +S'Circus Scene' +p319133 +sg291136 +g27 +sg291137 +S'John Marin' +p319134 +sa(dp319135 +g291130 +S'graphite and colored pencil on wove paper' +p319136 +sg291132 +S'unknown date\n' +p319137 +sg291134 +S'Horse' +p319138 +sg291136 +g27 +sg291137 +S'John Marin' +p319139 +sa(dp319140 +g291130 +S'graphite on wove paper' +p319141 +sg291132 +S'unknown date\n' +p319142 +sg291134 +S'Circus Elephants' +p319143 +sg291136 +g27 +sg291137 +S'John Marin' +p319144 +sa(dp319145 +g291130 +S'graphite on wove paper' +p319146 +sg291132 +S'unknown date\n' +p319147 +sg291134 +S'Elephant' +p319148 +sg291136 +g27 +sg291137 +S'John Marin' +p319149 +sa(dp319150 +g291130 +S'graphite on wove paper' +p319151 +sg291132 +S'unknown date\n' +p319152 +sg291134 +S'Circus Elephants' +p319153 +sg291136 +g27 +sg291137 +S'John Marin' +p319154 +sa(dp319155 +g291130 +S'sketchbook with 18 drawings in various media (19 leaves)' +p319156 +sg291132 +S'unknown date\n' +p319157 +sg291134 +S'Marin Sketchbook' +p319158 +sg291136 +g27 +sg291137 +S'John Marin' +p319159 +sa(dp319160 +g291130 +S'colored pencil and graphite on wove paper' +p319161 +sg291132 +S'c. 1945' +p319162 +sg291134 +S'Landscape' +p319163 +sg291136 +g27 +sg291137 +S'John Marin' +p319164 +sa(dp319165 +g291130 +S'graphite on wove paper laid down on sketchbook sheet' +p319166 +sg291132 +S'c. 1945' +p319167 +sg291134 +S'Buffalo' +p319168 +sg291136 +g27 +sg291137 +S'John Marin' +p319169 +sa(dp319170 +g291130 +S'colored pencil on wove paper' +p319171 +sg291132 +S'c. 1945' +p319172 +sg291134 +S'Landscape' +p319173 +sg291136 +g27 +sg291137 +S'John Marin' +p319174 +sa(dp319175 +g291130 +S'colored pencil on wove paper' +p319176 +sg291132 +S'c. 1945' +p319177 +sg291134 +S'Shore Scene' +p319178 +sg291136 +g27 +sg291137 +S'John Marin' +p319179 +sa(dp319180 +g291130 +S'colored pencil and graphite on wove paper' +p319181 +sg291132 +S'c. 1945' +p319182 +sg291134 +S'Grove of Trees' +p319183 +sg291136 +g27 +sg291137 +S'John Marin' +p319184 +sa(dp319185 +g291130 +S'colored pencil and graphite on wove paper' +p319186 +sg291132 +S'c. 1945' +p319187 +sg291134 +S'Landscape' +p319188 +sg291136 +g27 +sg291137 +S'John Marin' +p319189 +sa(dp319190 +g291130 +S'colored pencil on wove paper' +p319191 +sg291132 +S'c. 1945' +p319192 +sg291134 +S'Grove of Trees and Blue Hills' +p319193 +sg291136 +g27 +sg291137 +S'John Marin' +p319194 +sa(dp319195 +g291130 +S'colored pencil and graphite on wove paper' +p319196 +sg291132 +S'c. 1945' +p319197 +sg291134 +S'Blue Hills' +p319198 +sg291136 +g27 +sg291137 +S'John Marin' +p319199 +sa(dp319200 +g291130 +S'colored pencil and graphite on wove paper' +p319201 +sg291132 +S'c. 1945' +p319202 +sg291134 +S'Circus Scene' +p319203 +sg291136 +g27 +sg291137 +S'John Marin' +p319204 +sa(dp319205 +g291130 +S'graphite and colored pencil on wove paper' +p319206 +sg291132 +S'c. 1945' +p319207 +sg291134 +S'Circus Scene, High Wire Act' +p319208 +sg291136 +g27 +sg291137 +S'John Marin' +p319209 +sa(dp319210 +g291130 +S'graphite and colored pencil on wove paper' +p319211 +sg291132 +S'c. 1945' +p319212 +sg291134 +S'Circus Elephants' +p319213 +sg291136 +g27 +sg291137 +S'John Marin' +p319214 +sa(dp319215 +g291130 +S'graphite and colored pencil on wove paper' +p319216 +sg291132 +S'c. 1945' +p319217 +sg291134 +S'Circus Scene' +p319218 +sg291136 +g27 +sg291137 +S'John Marin' +p319219 +sa(dp319220 +g291130 +S'graphite and colored pencil on wove paper' +p319221 +sg291132 +S'c. 1945' +p319222 +sg291134 +S'Circus Scene' +p319223 +sg291136 +g27 +sg291137 +S'John Marin' +p319224 +sa(dp319225 +g291130 +S'colored pencil and graphite on wove paper' +p319226 +sg291132 +S'c. 1945' +p319227 +sg291134 +S'Circus Performers' +p319228 +sg291136 +g27 +sg291137 +S'John Marin' +p319229 +sa(dp319230 +g291130 +S'graphite and colored pencil on wove paper' +p319231 +sg291132 +S'c. 1945' +p319232 +sg291134 +S'Circus Parade' +p319233 +sg291136 +g27 +sg291137 +S'John Marin' +p319234 +sa(dp319235 +g291130 +S'graphite and colored pencil on wove paper' +p319236 +sg291132 +S'c. 1945' +p319237 +sg291134 +S'Circus Trapeze Act' +p319238 +sg291136 +g27 +sg291137 +S'John Marin' +p319239 +sa(dp319240 +g291130 +S'graphite on wove paper' +p319241 +sg291132 +S'c. 1945' +p319242 +sg291134 +S'Circus Riders on Horseback' +p319243 +sg291136 +g27 +sg291137 +S'John Marin' +p319244 +sa(dp319245 +g291130 +S'graphite on wove paper' +p319246 +sg291132 +S'c. 1945' +p319247 +sg291134 +S'Elephant' +p319248 +sg291136 +g27 +sg291137 +S'John Marin' +p319249 +sa(dp319250 +g291130 +S'sketchbook with 28 drawings in various media (29 leaves)' +p319251 +sg291132 +S'unknown date\n' +p319252 +sg291134 +S'Marin Sketchbook' +p319253 +sg291136 +g27 +sg291137 +S'John Marin' +p319254 +sa(dp319255 +g291130 +S'colored pencil, graphite, and black chalk on wove paper' +p319256 +sg291132 +S'c. 1950' +p319257 +sg291134 +S'Hilly Landscape' +p319258 +sg291136 +g27 +sg291137 +S'John Marin' +p319259 +sa(dp319260 +g291130 +S'colored pencil and graphite on wove paper' +p319261 +sg291132 +S'unknown date\n' +p319262 +sg291134 +S'Shore Scene' +p319263 +sg291136 +g27 +sg291137 +S'John Marin' +p319264 +sa(dp319265 +g291130 +S'watercolor, graphite, and black chalk on wove paper' +p319266 +sg291132 +S'c. 1950' +p319267 +sg291134 +S'Tan Fields and Blue Mountains' +p319268 +sg291136 +g27 +sg291137 +S'John Marin' +p319269 +sa(dp319270 +g291130 +S'graphite on wove paper' +p319271 +sg291132 +S'unknown date\n' +p319272 +sg291134 +S'Sketch of a Church' +p319273 +sg291136 +g27 +sg291137 +S'John Marin' +p319274 +sa(dp319275 +g291130 +S'watercolor over graphite and black chalk on wove paper' +p319276 +sg291132 +S'c. 1950' +p319277 +sg291134 +S'Mountainous Landscape with Green and Pink Fields' +p319278 +sg291136 +g27 +sg291137 +S'John Marin' +p319279 +sa(dp319280 +g291130 +S'watercolor, black chalk, colored pencil, and graphite on wove paper' +p319281 +sg291132 +S'c. 1950' +p319282 +sg291134 +S'Side of a Mountain' +p319283 +sg291136 +g27 +sg291137 +S'John Marin' +p319284 +sa(dp319285 +g291130 +S'colored pencil over graphite, touched with black chalk on wove paper' +p319286 +sg291132 +S'c. 1950' +p319287 +sg291134 +S'Green Field' +p319288 +sg291136 +g27 +sg291137 +S'John Marin' +p319289 +sa(dp319290 +g291130 +S'colored pencil and graphite, touched with black chalk on wove paper' +p319291 +sg291132 +S'c. 1950' +p319292 +sg291134 +S'Abstracted Field' +p319293 +sg291136 +g27 +sg291137 +S'John Marin' +p319294 +sa(dp319295 +g291130 +S'colored pencil and graphite on wove paper' +p319296 +sg291132 +S'c. 1950' +p319297 +sg291134 +S'Circus Scene' +p319298 +sg291136 +g27 +sg291137 +S'John Marin' +p319299 +sa(dp319300 +g291130 +S'colored pencil and graphite on wove paper' +p319301 +sg291132 +S'c. 1950' +p319302 +sg291134 +S'Circus Performers, Four Views' +p319303 +sg291136 +g27 +sg291137 +S'John Marin' +p319304 +sa(dp319305 +g291130 +S'colored pencil and graphite on wove paper' +p319306 +sg291132 +S'c. 1950' +p319307 +sg291134 +S'Circus Scene with Three Elephants' +p319308 +sg291136 +g27 +sg291137 +S'John Marin' +p319309 +sa(dp319310 +g291130 +S'colored pencil on wove paper' +p319311 +sg291132 +S'c. 1950' +p319312 +sg291134 +S'Circus Act with Horses' +p319313 +sg291136 +g27 +sg291137 +S'John Marin' +p319314 +sa(dp319315 +g291130 +S'gray-blue colored pencil on wove paper' +p319316 +sg291132 +S'c. 1950' +p319317 +sg291134 +S'Circus Performer and Horse' +p319318 +sg291136 +g27 +sg291137 +S'John Marin' +p319319 +sa(dp319320 +g291130 +S'colored pencil and graphite on wove paper' +p319321 +sg291132 +S'c. 1950' +p319322 +sg291134 +S'Various Views of Circus Performers' +p319323 +sg291136 +g27 +sg291137 +S'John Marin' +p319324 +sa(dp319325 +g291130 +S'graphite on wove paper' +p319326 +sg291132 +S'c. 1950' +p319327 +sg291134 +S'Studies of Circus Performers' +p319328 +sg291136 +g27 +sg291137 +S'John Marin' +p319329 +sa(dp319330 +g291130 +S'colored pencil and graphite on wove paper' +p319331 +sg291132 +S'c. 1950' +p319332 +sg291134 +S'Under the Big Top' +p319333 +sg291136 +g27 +sg291137 +S'John Marin' +p319334 +sa(dp319335 +g291130 +S'graphite and colored pencil on wove paper' +p319336 +sg291132 +S'c. 1950' +p319337 +sg291134 +S'Balancing Act' +p319338 +sg291136 +g27 +sg291137 +S'John Marin' +p319339 +sa(dp319340 +g291130 +S'graphite and colored pencil on wove paper' +p319341 +sg291132 +S'c. 1950' +p319342 +sg291134 +S'Circus Horse Act' +p319343 +sg291136 +g27 +sg291137 +S'John Marin' +p319344 +sa(dp319345 +g291130 +S'graphite on wove paper' +p319346 +sg291132 +S'c. 1950' +p319347 +sg291134 +S'Circus Parade' +p319348 +sg291136 +g27 +sg291137 +S'John Marin' +p319349 +sa(dp319350 +g291130 +S'colored pencil and graphite on wove paper' +p319351 +sg291132 +S'c. 1950' +p319352 +sg291134 +S'Circus Performers Riding' +p319353 +sg291136 +g27 +sg291137 +S'John Marin' +p319354 +sa(dp319355 +g291130 +S'colored pencil and graphite on wove paper' +p319356 +sg291132 +S'c. 1950' +p319357 +sg291134 +S'Circus Rider' +p319358 +sg291136 +g27 +sg291137 +S'John Marin' +p319359 +sa(dp319360 +g291130 +S'colored pencil and graphite on wove paper' +p319361 +sg291132 +S'c. 1950' +p319362 +sg291134 +S'Circus Abstraction' +p319363 +sg291136 +g27 +sg291137 +S'John Marin' +p319364 +sa(dp319365 +g291130 +S'colored pencil and graphite on wove paper' +p319366 +sg291132 +S'c. 1950' +p319367 +sg291134 +S'Circus Performers' +p319368 +sg291136 +g27 +sg291137 +S'John Marin' +p319369 +sa(dp319370 +g291130 +S'graphite and colored pencil on wove paper' +p319371 +sg291132 +S'c. 1950' +p319372 +sg291134 +S'Circus Rider, Four Views' +p319373 +sg291136 +g27 +sg291137 +S'John Marin' +p319374 +sa(dp319375 +g291130 +S'graphite and colored pencil on wove paper' +p319376 +sg291132 +S'c. 1950' +p319377 +sg291134 +S'Two Circus Riders' +p319378 +sg291136 +g27 +sg291137 +S'John Marin' +p319379 +sa(dp319380 +g291130 +S'tan colored pencil on wove paper' +p319381 +sg291132 +S'c. 1950' +p319382 +sg291134 +S'Circus Rider' +p319383 +sg291136 +g27 +sg291137 +S'John Marin' +p319384 +sa(dp319385 +g291130 +S'graphite and black chalk on wove paper' +p319386 +sg291132 +S'c. 1950' +p319387 +sg291134 +S'Two Circus Elephants' +p319388 +sg291136 +g27 +sg291137 +S'John Marin' +p319389 +sa(dp319390 +g291130 +S'graphite and black chalk on wove paper' +p319391 +sg291132 +S'c. 1950' +p319392 +sg291134 +S'Circus Elephant' +p319393 +sg291136 +g27 +sg291137 +S'John Marin' +p319394 +sa(dp319395 +g291130 +S'sketchbook with 22 drawings in graphite (18 leaves)' +p319396 +sg291132 +S'unknown date\n' +p319397 +sg291134 +S'Marin Sketchbook' +p319398 +sg291136 +g27 +sg291137 +S'John Marin' +p319399 +sa(dp319400 +g291130 +S'graphite on wove paper' +p319401 +sg291132 +S'1897' +p319402 +sg291134 +S'Scene on Potomac River' +p319403 +sg291136 +g27 +sg291137 +S'John Marin' +p319404 +sa(dp319405 +g291130 +S'graphite on wove paper' +p319406 +sg291132 +S'1897' +p319407 +sg291134 +S'Bit of Capitol, Washington, D.C.' +p319408 +sg291136 +g27 +sg291137 +S'John Marin' +p319409 +sa(dp319410 +g291130 +S'graphite on wove paper' +p319411 +sg291132 +S'1897' +p319412 +sg291134 +S'Sketch of a House' +p319413 +sg291136 +g27 +sg291137 +S'John Marin' +p319414 +sa(dp319415 +g291130 +S'graphite on wove paper' +p319416 +sg291132 +S'1897' +p319417 +sg291134 +S'Studies of a Dog' +p319418 +sg291136 +g27 +sg291137 +S'John Marin' +p319419 +sa(dp319420 +g291130 +S'graphite on wove paper' +p319421 +sg291132 +S'1897' +p319422 +sg291134 +S'Sketch of a House' +p319423 +sg291136 +g27 +sg291137 +S'John Marin' +p319424 +sa(dp319425 +g291130 +S'pen and black ink over graphite on wove paper' +p319426 +sg291132 +S'1897' +p319427 +sg291134 +S'Red Lion Inn, Between Philadelphia and New York' +p319428 +sg291136 +g27 +sg291137 +S'John Marin' +p319429 +sa(dp319430 +g291130 +S'graphite on wove paper' +p319431 +sg291132 +S'1897' +p319432 +sg291134 +S'Country House' +p319433 +sg291136 +g27 +sg291137 +S'John Marin' +p319434 +sa(dp319435 +g291130 +S'graphite on wove paper' +p319436 +sg291132 +S'1897' +p319437 +sg291134 +S'Scene in Virginia' +p319438 +sg291136 +g27 +sg291137 +S'John Marin' +p319439 +sa(dp319440 +g291130 +S'graphite on wove paper' +p319441 +sg291132 +S'1897' +p319442 +sg291134 +S'Train Track Overpass' +p319443 +sg291136 +g27 +sg291137 +S'John Marin' +p319444 +sa(dp319445 +g291130 +S'graphite on wove paper' +p319446 +sg291132 +S'1897' +p319447 +sg291134 +S'Landscape' +p319448 +sg291136 +g27 +sg291137 +S'John Marin' +p319449 +sa(dp319450 +g291130 +S'graphite on wove paper' +p319451 +sg291132 +S'1897' +p319452 +sg291134 +S'Sleeping Dog' +p319453 +sg291136 +g27 +sg291137 +S'John Marin' +p319454 +sa(dp319455 +g291130 +S'graphite on wove paper' +p319456 +sg291132 +S'1897' +p319457 +sg291134 +S'Sketch of Two Women on Bench' +p319458 +sg291136 +g27 +sg291137 +S'John Marin' +p319459 +sa(dp319460 +g291130 +S'graphite on wove paper' +p319461 +sg291132 +S'1897' +p319462 +sg291134 +S'Sketch of a House' +p319463 +sg291136 +g27 +sg291137 +S'John Marin' +p319464 +sa(dp319465 +g291130 +S'graphite on wove paper' +p319466 +sg291132 +S'1897' +p319467 +sg291134 +S'Short Bits of Waterford' +p319468 +sg291136 +g27 +sg291137 +S'John Marin' +p319469 +sa(dp319470 +g291130 +S'graphite on wove paper' +p319471 +sg291132 +S'1897' +p319472 +sg291134 +S'Sketch of a House' +p319473 +sg291136 +g27 +sg291137 +S'John Marin' +p319474 +sa(dp319475 +g291130 +S'graphite on wove paper' +p319476 +sg291132 +S'1897' +p319477 +sg291134 +S'Sketch of a Little Girl and Birds' +p319478 +sg291136 +g27 +sg291137 +S'John Marin' +p319479 +sa(dp319480 +g291130 +S'graphite on wove paper' +p319481 +sg291132 +S'1897' +p319482 +sg291134 +S'Landscape' +p319483 +sg291136 +g27 +sg291137 +S'John Marin' +p319484 +sa(dp319485 +g291130 +S'graphite on wove paper' +p319486 +sg291132 +S'1897' +p319487 +sg291134 +S'Seated Woman' +p319488 +sg291136 +g27 +sg291137 +S'John Marin' +p319489 +sa(dp319490 +g291130 +S'graphite on wove paper' +p319491 +sg291132 +S'1897' +p319492 +sg291134 +S'Wooded Grove' +p319493 +sg291136 +g27 +sg291137 +S'John Marin' +p319494 +sa(dp319495 +g291130 +S'graphite on wove paper' +p319496 +sg291132 +S'1897' +p319497 +sg291134 +S'Will Morton' +p319498 +sg291136 +g27 +sg291137 +S'John Marin' +p319499 +sa(dp319500 +g291130 +S'graphite on two sheets of wove paper' +p319501 +sg291132 +S'1897' +p319502 +sg291134 +S'Sand Dunes' +p319503 +sg291136 +g27 +sg291137 +S'John Marin' +p319504 +sa(dp319505 +g291130 +S'graphite on wove paper' +p319506 +sg291132 +S'1897' +p319507 +sg291134 +S'Landscape' +p319508 +sg291136 +g27 +sg291137 +S'John Marin' +p319509 +sa(dp319510 +g291130 +S'sketchbook with 56 drawings in various media (84 leaves)' +p319511 +sg291132 +S'unknown date\n' +p319512 +sg291134 +S'Marin Sketchbook' +p319513 +sg291136 +g27 +sg291137 +S'John Marin' +p319514 +sa(dp319515 +g291130 +S'black colored pencil on wove paper' +p319516 +sg291132 +S'c. 1925' +p319517 +sg291134 +S'Telephone Building, New York' +p319518 +sg291136 +g27 +sg291137 +S'John Marin' +p319519 +sa(dp319520 +g291130 +S'graphite on wove paper' +p319521 +sg291132 +S'c. 1925' +p319522 +sg291134 +S'Sketch of a Building' +p319523 +sg291136 +g27 +sg291137 +S'John Marin' +p319524 +sa(dp319525 +g291130 +S'black colored pencil on wove paper' +p319526 +sg291132 +S'c. 1925' +p319527 +sg291134 +S'New York Skyline' +p319528 +sg291136 +g27 +sg291137 +S'John Marin' +p319529 +sa(dp319530 +g291130 +S'black colored pencil on wove paper' +p319531 +sg291132 +S'c. 1925' +p319532 +sg291134 +S'Rooftops, New York' +p319533 +sg291136 +g27 +sg291137 +S'John Marin' +p319534 +sa(dp319535 +g291130 +S'black colored pencil on wove paper' +p319536 +sg291132 +S'c. 1925' +p319537 +sg291134 +S'Telephone Building, New York' +p319538 +sg291136 +g27 +sg291137 +S'John Marin' +p319539 +sa(dp319540 +g291130 +S'black colored pencil on wove paper' +p319541 +sg291132 +S'c. 1925' +p319542 +sg291134 +S'Untitled' +p319543 +sg291136 +g27 +sg291137 +S'John Marin' +p319544 +sa(dp319545 +g291130 +S'black colored pencil on wove paper' +p319546 +sg291132 +S'c. 1925' +p319547 +sg291134 +S'New York City Skyline' +p319548 +sg291136 +g27 +sg291137 +S'John Marin' +p319549 +sa(dp319550 +g291130 +S'black colored pencil on wove paper' +p319551 +sg291132 +S'c. 1925' +p319552 +sg291134 +S'Telephone Building, New York' +p319553 +sg291136 +g27 +sg291137 +S'John Marin' +p319554 +sa(dp319555 +g291130 +S'black colored pencil on wove paper' +p319556 +sg291132 +S'c. 1925' +p319557 +sg291134 +S'Untitled' +p319558 +sg291136 +g27 +sg291137 +S'John Marin' +p319559 +sa(dp319560 +g291130 +S'black colored pencil on wove paper' +p319561 +sg291132 +S'c. 1925' +p319562 +sg291134 +S'Ocean Liner' +p319563 +sg291136 +g27 +sg291137 +S'John Marin' +p319564 +sa(dp319565 +g291130 +S'black colored pencil on wove paper' +p319566 +sg291132 +S'c. 1925' +p319567 +sg291134 +S'Telephone Building, New York' +p319568 +sg291136 +g27 +sg291137 +S'John Marin' +p319569 +sa(dp319570 +g291130 +S'black colored pencil on wove paper' +p319571 +sg291132 +S'c. 1925' +p319572 +sg291134 +S'New York Telephone Building' +p319573 +sg291136 +g27 +sg291137 +S'John Marin' +p319574 +sa(dp319575 +g291130 +S'black colored pencil on wove paper' +p319576 +sg291132 +S'c. 1925' +p319577 +sg291134 +S'New York Skyline with Color Notations' +p319578 +sg291136 +g27 +sg291137 +S'John Marin' +p319579 +sa(dp319580 +g291130 +S'black colored pencil on wove paper' +p319581 +sg291132 +S'c. 1925' +p319582 +sg291134 +S'Sketch of a Building' +p319583 +sg291136 +g27 +sg291137 +S'John Marin' +p319584 +sa(dp319585 +g291130 +S'black colored pencil on wove paper' +p319586 +sg291132 +S'c. 1925' +p319587 +sg291134 +S'City Skyline' +p319588 +sg291136 +g27 +sg291137 +S'John Marin' +p319589 +sa(dp319590 +g291130 +S'black colored pencil on wove paper' +p319591 +sg291132 +S'c. 1925' +p319592 +sg291134 +S'Telephone Building, New York' +p319593 +sg291136 +g27 +sg291137 +S'John Marin' +p319594 +sa(dp319595 +g291130 +S'black colored pencil on wove paper' +p319596 +sg291132 +S'c. 1925' +p319597 +sg291134 +S'Untitled' +p319598 +sg291136 +g27 +sg291137 +S'John Marin' +p319599 +sa(dp319600 +g291130 +S'black colored pencil on wove paper' +p319601 +sg291132 +S'c. 1925' +p319602 +sg291134 +S'Telephone and Woolworth Buildings, New York' +p319603 +sg291136 +g27 +sg291137 +S'John Marin' +p319604 +sa(dp319605 +g291130 +S'black colored pencil on wove paper' +p319606 +sg291132 +S'c. 1925' +p319607 +sg291134 +S'Telephone Building, New York' +p319608 +sg291136 +g27 +sg291137 +S'John Marin' +p319609 +sa(dp319610 +g291130 +S'black colored pencil on wove paper' +p319611 +sg291132 +S'c. 1925' +p319612 +sg291134 +S'Sketch of a Building' +p319613 +sg291136 +g27 +sg291137 +S'John Marin' +p319614 +sa(dp319615 +g291130 +S'black colored pencil on wove paper' +p319616 +sg291132 +S'c. 1925' +p319617 +sg291134 +S'Telephone Building, New York' +p319618 +sg291136 +g27 +sg291137 +S'John Marin' +p319619 +sa(dp319620 +g291130 +S'black colored pencil on wove paper' +p319621 +sg291132 +S'c. 1925' +p319622 +sg291134 +S'Telephone Building, New York' +p319623 +sg291136 +g27 +sg291137 +S'John Marin' +p319624 +sa(dp319625 +g291130 +S'black colored pencil on wove paper' +p319626 +sg291132 +S'c. 1925' +p319627 +sg291134 +S'Telephone Building, New York' +p319628 +sg291136 +g27 +sg291137 +S'John Marin' +p319629 +sa(dp319630 +g291130 +S'black colored pencil on wove paper' +p319631 +sg291132 +S'c. 1925' +p319632 +sg291134 +S'Telephone Building, New York' +p319633 +sg291136 +g27 +sg291137 +S'John Marin' +p319634 +sa(dp319635 +g291130 +S'black colored pencil on wove paper' +p319636 +sg291132 +S'c. 1925' +p319637 +sg291134 +S'New York Skyline' +p319638 +sg291136 +g27 +sg291137 +S'John Marin' +p319639 +sa(dp319640 +g291130 +S'black colored pencil on wove paper' +p319641 +sg291132 +S'c. 1925' +p319642 +sg291134 +S'Untitled' +p319643 +sg291136 +g27 +sg291137 +S'John Marin' +p319644 +sa(dp319645 +g291130 +S'black colored pencil on wove paper' +p319646 +sg291132 +S'c. 1925' +p319647 +sg291134 +S'New York Skyline from River' +p319648 +sg291136 +g27 +sg291137 +S'John Marin' +p319649 +sa(dp319650 +g291130 +S'black colored pencil on wove paper' +p319651 +sg291132 +S'c. 1925' +p319652 +sg291134 +S'New York Skyline' +p319653 +sg291136 +g27 +sg291137 +S'John Marin' +p319654 +sa(dp319655 +g291130 +S'black colored pencil on wove paper' +p319656 +sg291132 +S'c. 1925' +p319657 +sg291134 +S'Telephone Building, New York' +p319658 +sg291136 +g27 +sg291137 +S'John Marin' +p319659 +sa(dp319660 +g291130 +S'black colored pencil on wove paper' +p319661 +sg291132 +S'c. 1925' +p319662 +sg291134 +S'New York Skyline from River' +p319663 +sg291136 +g27 +sg291137 +S'John Marin' +p319664 +sa(dp319665 +g291130 +S'black colored pencil on wove paper' +p319666 +sg291132 +S'c. 1925' +p319667 +sg291134 +S'Telephone Building, New York' +p319668 +sg291136 +g27 +sg291137 +S'John Marin' +p319669 +sa(dp319670 +g291130 +S'black colored pencil on wove paper' +p319671 +sg291132 +S'c. 1925' +p319672 +sg291134 +S'Telephone Building, New York' +p319673 +sg291136 +g27 +sg291137 +S'John Marin' +p319674 +sa(dp319675 +g291130 +S'black colored pencil on wove paper' +p319676 +sg291132 +S'c. 1925' +p319677 +sg291134 +S'Telephone Building, New York' +p319678 +sg291136 +g27 +sg291137 +S'John Marin' +p319679 +sa(dp319680 +g291130 +S'black colored pencil on wove paper' +p319681 +sg291132 +S'c. 1925' +p319682 +sg291134 +S'Telephone Building, New York' +p319683 +sg291136 +g27 +sg291137 +S'John Marin' +p319684 +sa(dp319685 +g291130 +S'black colored pencil on wove paper' +p319686 +sg291132 +S'c. 1925' +p319687 +sg291134 +S'Telephone Building, New York' +p319688 +sg291136 +g27 +sg291137 +S'John Marin' +p319689 +sa(dp319690 +g291130 +S'graphite on wove paper' +p319691 +sg291132 +S'c. 1925' +p319692 +sg291134 +S'New York Skyscrapers' +p319693 +sg291136 +g27 +sg291137 +S'John Marin' +p319694 +sa(dp319695 +g291130 +S'black colored pencil on wove paper' +p319696 +sg291132 +S'c. 1925' +p319697 +sg291134 +S'Telephone Building, New York' +p319698 +sg291136 +g27 +sg291137 +S'John Marin' +p319699 +sa(dp319700 +g291130 +S'black colored pencil on wove paper' +p319701 +sg291132 +S'c. 1925' +p319702 +sg291134 +S'Telephone Building, New York' +p319703 +sg291136 +g27 +sg291137 +S'John Marin' +p319704 +sa(dp319705 +g291130 +S'black colored pencil on wove paper' +p319706 +sg291132 +S'c. 1925' +p319707 +sg291134 +S'Telephone Building, New York' +p319708 +sg291136 +g27 +sg291137 +S'John Marin' +p319709 +sa(dp319710 +g291130 +S'graphite on wove paper' +p319711 +sg291132 +S'c. 1925' +p319712 +sg291134 +S'Telephone Building, New York' +p319713 +sg291136 +g27 +sg291137 +S'John Marin' +p319714 +sa(dp319715 +g291130 +S'graphite on wove paper' +p319716 +sg291132 +S'c. 1925' +p319717 +sg291134 +S'Sketches of a Building' +p319718 +sg291136 +g27 +sg291137 +S'John Marin' +p319719 +sa(dp319720 +g291130 +S'black colored pencil and graphite on wove paper' +p319721 +sg291132 +S'c. 1925' +p319722 +sg291134 +S'Telephone Building, New York' +p319723 +sg291136 +g27 +sg291137 +S'John Marin' +p319724 +sa(dp319725 +g291130 +S'black colored pencil on wove paper' +p319726 +sg291132 +S'c. 1925' +p319727 +sg291134 +S'Telephone Building, New York' +p319728 +sg291136 +g27 +sg291137 +S'John Marin' +p319729 +sa(dp319730 +g291130 +S'black colored pencil on wove paper' +p319731 +sg291132 +S'c. 1925' +p319732 +sg291134 +S'Sketch of a Building' +p319733 +sg291136 +g27 +sg291137 +S'John Marin' +p319734 +sa(dp319735 +g291130 +S'black colored pencil on wove paper' +p319736 +sg291132 +S'c. 1925' +p319737 +sg291134 +S'Sketch of a Building' +p319738 +sg291136 +g27 +sg291137 +S'John Marin' +p319739 +sa(dp319740 +g291130 +S'black colored pencil on wove paper' +p319741 +sg291132 +S'c. 1925' +p319742 +sg291134 +S'New York with Telephone Building in Background' +p319743 +sg291136 +g27 +sg291137 +S'John Marin' +p319744 +sa(dp319745 +g291130 +S'graphite on wove paper' +p319746 +sg291132 +S'c. 1925' +p319747 +sg291134 +S'Ships on the River, New York' +p319748 +sg291136 +g27 +sg291137 +S'John Marin' +p319749 +sa(dp319750 +g291130 +S'black colored pencil on wove paper' +p319751 +sg291132 +S'c. 1925' +p319752 +sg291134 +S'Telephone Building, New York' +p319753 +sg291136 +g27 +sg291137 +S'John Marin' +p319754 +sa(dp319755 +g291130 +S'graphite on wove paper' +p319756 +sg291132 +S'c. 1925' +p319757 +sg291134 +S'New York Skyline from River' +p319758 +sg291136 +g27 +sg291137 +S'John Marin' +p319759 +sa(dp319760 +g291130 +S'black colored pencil on wove paper' +p319761 +sg291132 +S'c. 1925' +p319762 +sg291134 +S'Telephone Building, New York' +p319763 +sg291136 +g27 +sg291137 +S'John Marin' +p319764 +sa(dp319765 +g291130 +S'graphite on wove paper' +p319766 +sg291132 +S'c. 1925' +p319767 +sg291134 +S'New York Skyline' +p319768 +sg291136 +g27 +sg291137 +S'John Marin' +p319769 +sa(dp319770 +g291130 +S'black colored pencil on wove paper' +p319771 +sg291132 +S'c. 1925' +p319772 +sg291134 +S'New York Skyline' +p319773 +sg291136 +g27 +sg291137 +S'John Marin' +p319774 +sa(dp319775 +g291130 +S'graphite on wove paper' +p319776 +sg291132 +S'c. 1925' +p319777 +sg291134 +S'Skyling with Telephone Building, New York' +p319778 +sg291136 +g27 +sg291137 +S'John Marin' +p319779 +sa(dp319780 +g291130 +S'black colored pencil on wove paper' +p319781 +sg291132 +S'c. 1925' +p319782 +sg291134 +S'New York Skyline' +p319783 +sg291136 +g27 +sg291137 +S'John Marin' +p319784 +sa(dp319785 +g291130 +S'graphite on wove paper' +p319786 +sg291132 +S'c. 1925' +p319787 +sg291134 +S'Telephone Building, New York' +p319788 +sg291136 +g27 +sg291137 +S'John Marin' +p319789 +sa(dp319790 +g291130 +S'black colored pencil on wove paper' +p319791 +sg291132 +S'c. 1925' +p319792 +sg291134 +S'Untitled' +p319793 +sg291136 +g27 +sg291137 +S'John Marin' +p319794 +sa(dp319795 +g291130 +S'sketchbook with 22 drawings in graphite (15 leaves)' +p319796 +sg291132 +S'unknown date\n' +p319797 +sg291134 +S'Marin Sketchbook' +p319798 +sg291136 +g27 +sg291137 +S'John Marin' +p319799 +sa(dp319800 +g291130 +S'graphite on wove paper' +p319801 +sg291132 +S'c. 1890' +p319802 +sg291134 +S'Ruins' +p319803 +sg291136 +g27 +sg291137 +S'John Marin' +p319804 +sa(dp319805 +g291130 +S'graphite on wove paper' +p319806 +sg291132 +S'c. 1890' +p319807 +sg291134 +S'House in Germantown' +p319808 +sg291136 +g27 +sg291137 +S'John Marin' +p319809 +sa(dp319810 +g291130 +S'graphite on wove paper' +p319811 +sg291132 +S'c. 1890' +p319812 +sg291134 +S'Bit of Germantown' +p319813 +sg291136 +g27 +sg291137 +S'John Marin' +p319814 +sa(dp319815 +g291130 +S'graphite on wove paper' +p319816 +sg291132 +S'c. 1890' +p319817 +sg291134 +S'Ruins' +p319818 +sg291136 +g27 +sg291137 +S'John Marin' +p319819 +sa(dp319820 +g291130 +S'graphite on wove paper' +p319821 +sg291132 +S'c. 1890' +p319822 +sg291134 +S'Landscape' +p319823 +sg291136 +g27 +sg291137 +S'John Marin' +p319824 +sa(dp319825 +g291130 +S'graphite on wove paper' +p319826 +sg291132 +S'c. 1890' +p319827 +sg291134 +S'Country Lane' +p319828 +sg291136 +g27 +sg291137 +S'John Marin' +p319829 +sa(dp319830 +g291130 +S'graphite on wove paper' +p319831 +sg291132 +S'c. 1890' +p319832 +sg291134 +S'Landscape' +p319833 +sg291136 +g27 +sg291137 +S'John Marin' +p319834 +sa(dp319835 +g291130 +S'graphite on wove paper' +p319836 +sg291132 +S'c. 1890' +p319837 +sg291134 +S'Tree' +p319838 +sg291136 +g27 +sg291137 +S'John Marin' +p319839 +sa(dp319840 +g291130 +S'graphite on wove paper' +p319841 +sg291132 +S'c. 1890' +p319842 +sg291134 +S'Harbor Scene' +p319843 +sg291136 +g27 +sg291137 +S'John Marin' +p319844 +sa(dp319845 +g291130 +S'graphite on wove paper' +p319846 +sg291132 +S'c. 1890' +p319847 +sg291134 +S'Landscape' +p319848 +sg291136 +g27 +sg291137 +S'John Marin' +p319849 +sa(dp319850 +g291130 +S'graphite on wove paper' +p319851 +sg291132 +S'c. 1890' +p319852 +sg291134 +S'Landscape' +p319853 +sg291136 +g27 +sg291137 +S'John Marin' +p319854 +sa(dp319855 +g291130 +S'graphite on wove paper' +p319856 +sg291132 +S'c. 1890' +p319857 +sg291134 +S'Landscape' +p319858 +sg291136 +g27 +sg291137 +S'John Marin' +p319859 +sa(dp319860 +g291130 +S'graphite on wove paper' +p319861 +sg291132 +S'c. 1890' +p319862 +sg291134 +S'Sailboat on Calm Water' +p319863 +sg291136 +g27 +sg291137 +S'John Marin' +p319864 +sa(dp319865 +g291130 +S'graphite on wove paper' +p319866 +sg291132 +S'c. 1890' +p319867 +sg291134 +S'Dally Town Road' +p319868 +sg291136 +g27 +sg291137 +S'John Marin' +p319869 +sa(dp319870 +g291130 +S'graphite on wove paper' +p319871 +sg291132 +S'c. 1890' +p319872 +sg291134 +S'Edgewater, New Jersey' +p319873 +sg291136 +g27 +sg291137 +S'John Marin' +p319874 +sa(dp319875 +g291130 +S'graphite on wove paper' +p319876 +sg291132 +S'c. 1890' +p319877 +sg291134 +S'Harbor Scene' +p319878 +sg291136 +g27 +sg291137 +S'John Marin' +p319879 +sa(dp319880 +g291130 +S'graphite on wove paper' +p319881 +sg291132 +S'c. 1890' +p319882 +sg291134 +S'Landscape' +p319883 +sg291136 +g27 +sg291137 +S'John Marin' +p319884 +sa(dp319885 +g291130 +S'graphite on wove paper' +p319886 +sg291132 +S'c. 1890' +p319887 +sg291134 +S'Landscape' +p319888 +sg291136 +g27 +sg291137 +S'John Marin' +p319889 +sa(dp319890 +g291130 +S'graphite on wove paper' +p319891 +sg291132 +S'c. 1890' +p319892 +sg291134 +S'Landscape' +p319893 +sg291136 +g27 +sg291137 +S'John Marin' +p319894 +sa(dp319895 +g291130 +S'graphite on wove paper' +p319896 +sg291132 +S'c. 1890' +p319897 +sg291134 +S'Landscape with Train' +p319898 +sg291136 +g27 +sg291137 +S'John Marin' +p319899 +sa(dp319900 +g291130 +S'graphite on wove paper' +p319901 +sg291132 +S'c. 1890' +p319902 +sg291134 +S'Country Lane' +p319903 +sg291136 +g27 +sg291137 +S'John Marin' +p319904 +sa(dp319905 +g291130 +S'graphite on wove paper' +p319906 +sg291132 +S'c. 1890' +p319907 +sg291134 +S'Country House' +p319908 +sg291136 +g27 +sg291137 +S'John Marin' +p319909 +sa(dp319910 +g291130 +S'sketchbook with 94 drawings in graphite (56 leaves)' +p319911 +sg291132 +S'unknown date\n' +p319912 +sg291134 +S'Marin Sketchbook' +p319913 +sg291136 +g27 +sg291137 +S'John Marin' +p319914 +sa(dp319915 +g291130 +S'graphite on wove paper' +p319916 +sg291132 +S'c. 1890' +p319917 +sg291134 +S'Rocky Field' +p319918 +sg291136 +g27 +sg291137 +S'John Marin' +p319919 +sa(dp319920 +g291130 +S'graphite on wove paper' +p319921 +sg291132 +S'c. 1890' +p319922 +sg291134 +S'Hay Stack' +p319923 +sg291136 +g27 +sg291137 +S'John Marin' +p319924 +sa(dp319925 +g291130 +S'pen and ink on wove paper' +p319926 +sg291132 +S'c. 1890' +p319927 +sg291134 +S'Landscape' +p319928 +sg291136 +g27 +sg291137 +S'John Marin' +p319929 +sa(dp319930 +g291130 +S'graphite on wove paper' +p319931 +sg291132 +S'c. 1890' +p319932 +sg291134 +S'House with Horse Tied to Tree at Front Gate' +p319933 +sg291136 +g27 +sg291137 +S'John Marin' +p319934 +sa(dp319935 +g291130 +S'graphite on wove paper' +p319936 +sg291132 +S'c. 1890' +p319937 +sg291134 +S'Caboose' +p319938 +sg291136 +g27 +sg291137 +S'John Marin' +p319939 +sa(dp319940 +g291130 +S'graphite on wove paper' +p319941 +sg291132 +S'c. 1890' +p319942 +sg291134 +S'Field' +p319943 +sg291136 +g27 +sg291137 +S'John Marin' +p319944 +sa(dp319945 +g291130 +S'graphite on wove paper' +p319946 +sg291132 +S'c. 1890' +p319947 +sg291134 +S'House on Coast' +p319948 +sg291136 +g27 +sg291137 +S'John Marin' +p319949 +sa(dp319950 +g291130 +S'graphite on wove paper' +p319951 +sg291132 +S'c. 1890' +p319952 +sg291134 +S'Cows Grazing Under Tree' +p319953 +sg291136 +g27 +sg291137 +S'John Marin' +p319954 +sa(dp319955 +g291130 +S'graphite on wove paper' +p319956 +sg291132 +S'c. 1890' +p319957 +sg291134 +S'Farm Scene' +p319958 +sg291136 +g27 +sg291137 +S'John Marin' +p319959 +sa(dp319960 +g291130 +S'graphite on wove paper' +p319961 +sg291132 +S'c. 1890' +p319962 +sg291134 +S'Wooded Grove' +p319963 +sg291136 +g27 +sg291137 +S'John Marin' +p319964 +sa(dp319965 +g291130 +S'graphite on wove paper' +p319966 +sg291132 +S'c. 1890' +p319967 +sg291134 +S'Landscape' +p319968 +sg291136 +g27 +sg291137 +S'John Marin' +p319969 +sa(dp319970 +g291130 +S'graphite on wove paper' +p319971 +sg291132 +S'c. 1890' +p319972 +sg291134 +S'Field' +p319973 +sg291136 +g27 +sg291137 +S'John Marin' +p319974 +sa(dp319975 +g291130 +S'graphite on wove paper' +p319976 +sg291132 +S'c. 1890' +p319977 +sg291134 +S'High Bridge over Harlem River, New York' +p319978 +sg291136 +g27 +sg291137 +S'John Marin' +p319979 +sa(dp319980 +g291130 +S'graphite on wove paper' +p319981 +sg291132 +S'c. 1890' +p319982 +sg291134 +S'Harbor Scene' +p319983 +sg291136 +g27 +sg291137 +S'John Marin' +p319984 +sa(dp319985 +g291130 +S'graphite on wove paper' +p319986 +sg291132 +S'c. 1890' +p319987 +sg291134 +S'Landscape' +p319988 +sg291136 +g27 +sg291137 +S'John Marin' +p319989 +sa(dp319990 +g291130 +S'graphite on wove paper' +p319991 +sg291132 +S'c. 1890' +p319992 +sg291134 +S'Ship and Tug on River' +p319993 +sg291136 +g27 +sg291137 +S'John Marin' +p319994 +sa(dp319995 +g291130 +S'graphite on wove paper' +p319996 +sg291132 +S'c. 1890' +p319997 +sg291134 +S'Warehouse at Weehawken, New Jersey' +p319998 +sg291136 +g27 +sg291137 +S'John Marin' +p319999 +sa(dp320000 +g291130 +S'graphite on wove paper' +p320001 +sg291132 +S'c. 1890' +p320002 +sg291134 +S'Ship on River' +p320003 +sg291136 +g27 +sg291137 +S'John Marin' +p320004 +sa(dp320005 +g291130 +S'graphite on wove paper' +p320006 +sg291132 +S'c. 1890' +p320007 +sg291134 +S'House with Horses Grazing' +p320008 +sg291136 +g27 +sg291137 +S'John Marin' +p320009 +sa(dp320010 +g291130 +S'graphite on wove paper' +p320011 +sg291132 +S'c. 1890' +p320012 +sg291134 +S'Field' +p320013 +sg291136 +g27 +sg291137 +S'John Marin' +p320014 +sa(dp320015 +g291130 +S'graphite on wove paper' +p320016 +sg291132 +S'c. 1890' +p320017 +sg291134 +S'Rural Farm Scene' +p320018 +sg291136 +g27 +sg291137 +S'John Marin' +p320019 +sa(dp320020 +g291130 +S'graphite on wove paper' +p320021 +sg291132 +S'c. 1890' +p320022 +sg291134 +S'Grain Elevators at Shore' +p320023 +sg291136 +g27 +sg291137 +S'John Marin' +p320024 +sa(dp320025 +g291130 +S'graphite on wove paper' +p320026 +sg291132 +S'c. 1890' +p320027 +sg291134 +S'Landscape' +p320028 +sg291136 +g27 +sg291137 +S'John Marin' +p320029 +sa(dp320030 +g291130 +S'graphite on wove paper' +p320031 +sg291132 +S'c. 1890' +p320032 +sg291134 +S'Meadow' +p320033 +sg291136 +g27 +sg291137 +S'John Marin' +p320034 +sa(dp320035 +g291130 +S'graphite on wove paper' +p320036 +sg291132 +S'c. 1890' +p320037 +sg291134 +S'Mill' +p320038 +sg291136 +g27 +sg291137 +S'John Marin' +p320039 +sa(dp320040 +g291130 +S'graphite on wove paper' +p320041 +sg291132 +S'c. 1890' +p320042 +sg291134 +S'Harbor Scene' +p320043 +sg291136 +g27 +sg291137 +S'John Marin' +p320044 +sa(dp320045 +g291130 +S'graphite on wove paper' +p320046 +sg291132 +S'c. 1890' +p320047 +sg291134 +S'Landscape' +p320048 +sg291136 +g27 +sg291137 +S'John Marin' +p320049 +sa(dp320050 +g291130 +S'graphite on wove paper' +p320051 +sg291132 +S'c. 1890' +p320052 +sg291134 +S'Country Train Station' +p320053 +sg291136 +g27 +sg291137 +S'John Marin' +p320054 +sa(dp320055 +g291130 +S'graphite on wove paper' +p320056 +sg291132 +S'c. 1890' +p320057 +sg291134 +S'Cliff' +p320058 +sg291136 +g27 +sg291137 +S'John Marin' +p320059 +sa(dp320060 +g291130 +S'graphite on wove paper' +p320061 +sg291132 +S'c. 1890' +p320062 +sg291134 +S'Industrial Docks at Weehawken, New Jersey' +p320063 +sg291136 +g27 +sg291137 +S'John Marin' +p320064 +sa(dp320065 +g291130 +S'graphite on wove paper' +p320066 +sg291132 +S'c. 1890' +p320067 +sg291134 +S'Street Scene' +p320068 +sg291136 +g27 +sg291137 +S'John Marin' +p320069 +sa(dp320070 +g291130 +S'graphite on wove paper' +p320071 +sg291132 +S'c. 1890' +p320072 +sg291134 +S'Landscape' +p320073 +sg291136 +g27 +sg291137 +S'John Marin' +p320074 +sa(dp320075 +g291130 +S'graphite on wove paper' +p320076 +sg291132 +S'c. 1890' +p320077 +sg291134 +S'Landscape' +p320078 +sg291136 +g27 +sg291137 +S'John Marin' +p320079 +sa(dp320080 +g291130 +S'graphite on wove paper' +p320081 +sg291132 +S'c. 1890' +p320082 +sg291134 +S'River Scene' +p320083 +sg291136 +g27 +sg291137 +S'John Marin' +p320084 +sa(dp320085 +g291130 +S'graphite on wove paper' +p320086 +sg291132 +S'c. 1890' +p320087 +sg291134 +S'Harbor Scene' +p320088 +sg291136 +g27 +sg291137 +S'John Marin' +p320089 +sa(dp320090 +g291130 +S'graphite on wove paper' +p320091 +sg291132 +S'c. 1890' +p320092 +sg291134 +S'Village and Harbor' +p320093 +sg291136 +g27 +sg291137 +S'John Marin' +p320094 +sa(dp320095 +g291130 +S'graphite on wove paper' +p320096 +sg291132 +S'c. 1890' +p320097 +sg291134 +S'Landscape' +p320098 +sg291136 +g27 +sg291137 +S'John Marin' +p320099 +sa(dp320100 +g291130 +S'graphite on wove paper' +p320101 +sg291132 +S'c. 1890' +p320102 +sg291134 +S'Quarry' +p320103 +sg291136 +g27 +sg291137 +S'John Marin' +p320104 +sa(dp320105 +g291130 +S'graphite on wove paper' +p320106 +sg291132 +S'c. 1890' +p320107 +sg291134 +S'Grain Elevators at Shore' +p320108 +sg291136 +g27 +sg291137 +S'John Marin' +p320109 +sa(dp320110 +g291130 +S'graphite on wove paper' +p320111 +sg291132 +S'c. 1890' +p320112 +sg291134 +S'Warehouse at Weehauken, New Jersey' +p320113 +sg291136 +g27 +sg291137 +S'John Marin' +p320114 +sa(dp320115 +g291130 +S'graphite on wove paper' +p320116 +sg291132 +S'c. 1890' +p320117 +sg291134 +S'Wooded Landscape' +p320118 +sg291136 +g27 +sg291137 +S'John Marin' +p320119 +sa(dp320120 +g291130 +S'graphite on wove paper' +p320121 +sg291132 +S'c. 1890' +p320122 +sg291134 +S'Coastal Road' +p320123 +sg291136 +g27 +sg291137 +S'John Marin' +p320124 +sa(dp320125 +g291130 +S'graphite on wove paper' +p320126 +sg291132 +S'c. 1890' +p320127 +sg291134 +S'Village Street' +p320128 +sg291136 +g27 +sg291137 +S'John Marin' +p320129 +sa(dp320130 +g291130 +S'graphite on wove paper' +p320131 +sg291132 +S'c. 1890' +p320132 +sg291134 +S'Shore Scene' +p320133 +sg291136 +g27 +sg291137 +S'John Marin' +p320134 +sa(dp320135 +g291130 +S'graphite on wove paper' +p320136 +sg291132 +S'c. 1890' +p320137 +sg291134 +S'Warehouse at Weehawken, New Jersey' +p320138 +sg291136 +g27 +sg291137 +S'John Marin' +p320139 +sa(dp320140 +g291130 +S'graphite on wove paper' +p320141 +sg291132 +S'c. 1890' +p320142 +sg291134 +S'Village Scene' +p320143 +sg291136 +g27 +sg291137 +S'John Marin' +p320144 +sa(dp320145 +g291130 +S'graphite on wove paper' +p320146 +sg291132 +S'c. 1890' +p320147 +sg291134 +S'House and Fence' +p320148 +sg291136 +g27 +sg291137 +S'John Marin' +p320149 +sa(dp320150 +g291130 +S'graphite on wove paper' +p320151 +sg291132 +S'c. 1890' +p320152 +sg291134 +S'Landscape' +p320153 +sg291136 +g27 +sg291137 +S'John Marin' +p320154 +sa(dp320155 +g291130 +S'pen and black ink on wove paper' +p320156 +sg291132 +S'c. 1890' +p320157 +sg291134 +S'Mill' +p320158 +sg291136 +g27 +sg291137 +S'John Marin' +p320159 +sa(dp320160 +g291130 +S'graphite on wove paper' +p320161 +sg291132 +S'c. 1890' +p320162 +sg291134 +S'Village Scene' +p320163 +sg291136 +g27 +sg291137 +S'John Marin' +p320164 +sa(dp320165 +g291130 +S'graphite on wove paper' +p320166 +sg291132 +S'c. 1890' +p320167 +sg291134 +S'Wooded Grove' +p320168 +sg291136 +g27 +sg291137 +S'John Marin' +p320169 +sa(dp320170 +g291130 +S'graphite on wove paper' +p320171 +sg291132 +S'c. 1890' +p320172 +sg291134 +S'Coastal Road' +p320173 +sg291136 +g27 +sg291137 +S'John Marin' +p320174 +sa(dp320175 +g291130 +S'graphite on wove paper' +p320176 +sg291132 +S'c. 1890' +p320177 +sg291134 +S'Country Road' +p320178 +sg291136 +g27 +sg291137 +S'John Marin' +p320179 +sa(dp320180 +g291130 +S'graphite on wove paper' +p320181 +sg291132 +S'c. 1890' +p320182 +sg291134 +S'Landscape' +p320183 +sg291136 +g27 +sg291137 +S'John Marin' +p320184 +sa(dp320185 +g291130 +S'graphite on wove paper' +p320186 +sg291132 +S'c. 1890' +p320187 +sg291134 +S'House in Country' +p320188 +sg291136 +g27 +sg291137 +S'John Marin' +p320189 +sa(dp320190 +g291130 +S'graphite on wove paper' +p320191 +sg291132 +S'c. 1890' +p320192 +sg291134 +S'Country House' +p320193 +sg291136 +g27 +sg291137 +S'John Marin' +p320194 +sa(dp320195 +g291130 +S'graphite on wove paper' +p320196 +sg291132 +S'c. 1890' +p320197 +sg291134 +S'House' +p320198 +sg291136 +g27 +sg291137 +S'John Marin' +p320199 +sa(dp320200 +g291130 +S'graphite on wove paper' +p320201 +sg291132 +S'c. 1890' +p320202 +sg291134 +S'Coastal Scene' +p320203 +sg291136 +g27 +sg291137 +S'John Marin' +p320204 +sa(dp320205 +g291130 +S'graphite on wove paper' +p320206 +sg291132 +S'c. 1890' +p320207 +sg291134 +S'House at Shore' +p320208 +sg291136 +g27 +sg291137 +S'John Marin' +p320209 +sa(dp320210 +g291130 +S'graphite on wove paper' +p320211 +sg291132 +S'c. 1890' +p320212 +sg291134 +S'Rustic House' +p320213 +sg291136 +g27 +sg291137 +S'John Marin' +p320214 +sa(dp320215 +g291130 +S'graphite on wove paper' +p320216 +sg291132 +S'c. 1890' +p320217 +sg291134 +S'Shore Scene' +p320218 +sg291136 +g27 +sg291137 +S'John Marin' +p320219 +sa(dp320220 +g291130 +S'graphite on wove paper' +p320221 +sg291132 +S'c. 1890' +p320222 +sg291134 +S'Industrial Dock' +p320223 +sg291136 +g27 +sg291137 +S'John Marin' +p320224 +sa(dp320225 +g291130 +S'graphite on wove paper' +p320226 +sg291132 +S'c. 1890' +p320227 +sg291134 +S'Landscape' +p320228 +sg291136 +g27 +sg291137 +S'John Marin' +p320229 +sa(dp320230 +g291130 +S'graphite on wove paper' +p320231 +sg291132 +S'c. 1890' +p320232 +sg291134 +S'Landscape' +p320233 +sg291136 +g27 +sg291137 +S'John Marin' +p320234 +sa(dp320235 +g291130 +S'graphite on wove paper' +p320236 +sg291132 +S'c. 1890' +p320237 +sg291134 +S'Village Scene' +p320238 +sg291136 +g27 +sg291137 +S'John Marin' +p320239 +sa(dp320240 +g291130 +S'pen and black ink on wove paper' +p320241 +sg291132 +S'c. 1890' +p320242 +sg291134 +S'Figure Study' +p320243 +sg291136 +g27 +sg291137 +S'John Marin' +p320244 +sa(dp320245 +g291130 +S'graphite on wove paper' +p320246 +sg291132 +S'c. 1890' +p320247 +sg291134 +S'Country Road' +p320248 +sg291136 +g27 +sg291137 +S'John Marin' +p320249 +sa(dp320250 +g291130 +S'graphite on wove paper' +p320251 +sg291132 +S'c. 1890' +p320252 +sg291134 +S'Farm Scene' +p320253 +sg291136 +g27 +sg291137 +S'John Marin' +p320254 +sa(dp320255 +g291130 +S'graphite on wove paper' +p320256 +sg291132 +S'c. 1890' +p320257 +sg291134 +S'Ships at Dock' +p320258 +sg291136 +g27 +sg291137 +S'John Marin' +p320259 +sa(dp320260 +g291130 +S'graphite on wove paper' +p320261 +sg291132 +S'c. 1890' +p320262 +sg291134 +S'Landscape' +p320263 +sg291136 +g27 +sg291137 +S'John Marin' +p320264 +sa(dp320265 +g291130 +S'graphite on wove paper' +p320266 +sg291132 +S'c. 1890' +p320267 +sg291134 +S'Landscape' +p320268 +sg291136 +g27 +sg291137 +S'John Marin' +p320269 +sa(dp320270 +g291130 +S'graphite on wove paper' +p320271 +sg291132 +S'c. 1890' +p320272 +sg291134 +S'Landscape' +p320273 +sg291136 +g27 +sg291137 +S'John Marin' +p320274 +sa(dp320275 +g291130 +S'graphite on wove paper' +p320276 +sg291132 +S'c. 1890' +p320277 +sg291134 +S'Tree' +p320278 +sg291136 +g27 +sg291137 +S'John Marin' +p320279 +sa(dp320280 +g291130 +S'graphite on wove paper' +p320281 +sg291132 +S'c. 1890' +p320282 +sg291134 +S'House and Trees' +p320283 +sg291136 +g27 +sg291137 +S'John Marin' +p320284 +sa(dp320285 +g291130 +S'graphite on wove paper' +p320286 +sg291132 +S'c. 1890' +p320287 +sg291134 +S'Landscape' +p320288 +sg291136 +g27 +sg291137 +S'John Marin' +p320289 +sa(dp320290 +g291130 +S'graphite on wove paper' +p320291 +sg291132 +S'c. 1890' +p320292 +sg291134 +S'Landscape' +p320293 +sg291136 +g27 +sg291137 +S'John Marin' +p320294 +sa(dp320295 +g291130 +S'graphite on wove paper' +p320296 +sg291132 +S'c. 1890' +p320297 +sg291134 +S'Landscape' +p320298 +sg291136 +g27 +sg291137 +S'John Marin' +p320299 +sa(dp320300 +g291130 +S'graphite on wove paper' +p320301 +sg291132 +S'c. 1890' +p320302 +sg291134 +S'Grain Elevators' +p320303 +sg291136 +g27 +sg291137 +S'John Marin' +p320304 +sa(dp320305 +g291130 +S'graphite on wove paper' +p320306 +sg291132 +S'c. 1890' +p320307 +sg291134 +S'Farm House' +p320308 +sg291136 +g27 +sg291137 +S'John Marin' +p320309 +sa(dp320310 +g291130 +S'graphite on wove paper' +p320311 +sg291132 +S'c. 1890' +p320312 +sg291134 +S'Shore Scene' +p320313 +sg291136 +g27 +sg291137 +S'John Marin' +p320314 +sa(dp320315 +g291130 +S'graphite on wove paper' +p320316 +sg291132 +S'c. 1890' +p320317 +sg291134 +S'Sailboat in Harbor' +p320318 +sg291136 +g27 +sg291137 +S'John Marin' +p320319 +sa(dp320320 +g291130 +S'graphite on wove paper' +p320321 +sg291132 +S'c. 1890' +p320322 +sg291134 +S'West New York, New Jersey' +p320323 +sg291136 +g27 +sg291137 +S'John Marin' +p320324 +sa(dp320325 +g291130 +S'graphite on wove paper' +p320326 +sg291132 +S'c. 1890' +p320327 +sg291134 +S'Country Lane with Horse in Pasture' +p320328 +sg291136 +g27 +sg291137 +S'John Marin' +p320329 +sa(dp320330 +g291130 +S'graphite on wove paper' +p320331 +sg291132 +S'c. 1890' +p320332 +sg291134 +S'Landscape' +p320333 +sg291136 +g27 +sg291137 +S'John Marin' +p320334 +sa(dp320335 +g291130 +S'graphite on wove paper' +p320336 +sg291132 +S'c. 1890' +p320337 +sg291134 +S'Landscape' +p320338 +sg291136 +g27 +sg291137 +S'John Marin' +p320339 +sa(dp320340 +g291130 +S'graphite on wove paper' +p320341 +sg291132 +S'c. 1890' +p320342 +sg291134 +S'Rustic Scene' +p320343 +sg291136 +g27 +sg291137 +S'John Marin' +p320344 +sa(dp320345 +g291130 +S'pen and ink on wove paper' +p320346 +sg291132 +S'c. 1890' +p320347 +sg291134 +S'Farm Animals in Field' +p320348 +sg291136 +g27 +sg291137 +S'John Marin' +p320349 +sa(dp320350 +g291130 +S'graphite on wove paper' +p320351 +sg291132 +S'c. 1890' +p320352 +sg291134 +S'Weehawken, New Jersey' +p320353 +sg291136 +g27 +sg291137 +S'John Marin' +p320354 +sa(dp320355 +g291130 +S'graphite on wove paper' +p320356 +sg291132 +S'c. 1890' +p320357 +sg291134 +S'Landscape' +p320358 +sg291136 +g27 +sg291137 +S'John Marin' +p320359 +sa(dp320360 +g291130 +S'graphite on wove paper' +p320361 +sg291132 +S'c. 1890' +p320362 +sg291134 +S'House' +p320363 +sg291136 +g27 +sg291137 +S'John Marin' +p320364 +sa(dp320365 +g291130 +S'graphite on wove paper' +p320366 +sg291132 +S'c. 1890' +p320367 +sg291134 +S'House' +p320368 +sg291136 +g27 +sg291137 +S'John Marin' +p320369 +sa(dp320370 +g291130 +S'graphite on wove paper' +p320371 +sg291132 +S'c. 1890' +p320372 +sg291134 +S'House' +p320373 +sg291136 +g27 +sg291137 +S'John Marin' +p320374 +sa(dp320375 +g291130 +S'graphite on wove paper' +p320376 +sg291132 +S'c. 1890' +p320377 +sg291134 +S'Warehouse at Weehawken, New Jersey' +p320378 +sg291136 +g27 +sg291137 +S'John Marin' +p320379 +sa(dp320380 +g291130 +S'graphite on wove paper' +p320381 +sg291132 +S'c. 1890' +p320382 +sg291134 +S'Grain Silos' +p320383 +sg291136 +g27 +sg291137 +S'John Marin' +p320384 +sa(dp320385 +g291130 +S'sketchbook with 5 drawings in various media (12 leaves)' +p320386 +sg291132 +S'unknown date\n' +p320387 +sg291134 +S'Marin Sketchbook' +p320388 +sg291136 +g27 +sg291137 +S'John Marin' +p320389 +sa(dp320390 +g291130 +S'colored pencil and graphite on wove paper' +p320391 +sg291132 +S'c. 1939' +p320392 +sg291134 +S'Sunset' +p320393 +sg291136 +g27 +sg291137 +S'John Marin' +p320394 +sa(dp320395 +g291130 +S'graphite and colored pencil on wove paper' +p320396 +sg291132 +S'c. 1939' +p320397 +sg291134 +S'Seated Woman Reading Newspaper' +p320398 +sg291136 +g27 +sg291137 +S'John Marin' +p320399 +sa(dp320400 +g291130 +S'colored pencil and graphite on wove paper' +p320401 +sg291132 +S'c. 1939' +p320402 +sg291134 +S'Seated Female' +p320403 +sg291136 +g27 +sg291137 +S'John Marin' +p320404 +sa(dp320405 +g291130 +S'colored pencil and graphite on wove paper' +p320406 +sg291132 +S'1939' +p320407 +sg291134 +S'Nassau Street, New York City' +p320408 +sg291136 +g27 +sg291137 +S'John Marin' +p320409 +sa(dp320410 +g291130 +S'colored pencil on wove paper' +p320411 +sg291132 +S'c. 1939' +p320412 +sg291134 +S'Normandie' +p320413 +sg291136 +g27 +sg291137 +S'John Marin' +p320414 +sa(dp320415 +g291130 +S'lithograph on wove paper' +p320416 +sg291132 +S'1933' +p320417 +sg291134 +S'Fish Market (Fulton Street Fish Market)' +p320418 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320419 +sa(dp320420 +g291130 +S'lithograph on Rives paper' +p320421 +sg291132 +S'1935' +p320422 +sg291134 +S"Little Joe (Miner's Son)" +p320423 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320424 +sa(dp320425 +g291130 +S'burnished aquatint and etching with touches of graphite on wove paper [proof]' +p320426 +sg291132 +S'1935' +p320427 +sg291134 +S'Make-Shift Kitchen' +p320428 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320429 +sa(dp320430 +g291130 +S'aquatint and etching on laid paper' +p320431 +sg291132 +S'1935' +p320432 +sg291134 +S'Cotton Pickers' +p320433 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320434 +sa(dp320435 +g291130 +S'aquatint, (soft-ground etching?), and etching on Rives paper' +p320436 +sg291132 +S'1937' +p320437 +sg291134 +S'Summer in the Park' +p320438 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320439 +sa(dp320440 +g291130 +S'lithograph on Rives paper' +p320441 +sg291132 +S'1937' +p320442 +sg291134 +S'My Wife' +p320443 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320444 +sa(dp320445 +g291130 +S'burnished aquatint and etching on wove paper' +p320446 +sg291132 +S'1935' +p320447 +sg291134 +S'My Father (version 2)' +p320448 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320449 +sa(dp320450 +g291130 +S'hand-colored woodcut on japan paper' +p320451 +sg291132 +S'1937' +p320452 +sg291134 +S'Shoemaker' +p320453 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320454 +sa(dp320455 +g291130 +S'burnished aquatint with drypoint on Arches paper' +p320456 +sg291132 +S'1939' +p320457 +sg291134 +S'Night' +p320458 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320459 +sa(dp320460 +g291130 +S'woodcut on japan paper' +p320461 +sg291132 +S'1939' +p320462 +sg291134 +S'At the Seashore' +p320463 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320464 +sa(dp320465 +g291130 +S'woodcut on gray japan paper' +p320466 +sg291132 +S'1939' +p320467 +sg291134 +S'Under the Table' +p320468 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320469 +sa(dp320470 +g291130 +S'woodcut in black on japan paper [proof]' +p320471 +sg291132 +S'1940' +p320472 +sg291134 +S'Peter and Toy Bird' +p320473 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320474 +sa(dp320475 +g291130 +S'7-color woodcut on japan paper' +p320476 +sg291132 +S'1940' +p320477 +sg291134 +S'Peter and Toy Bird (Peter on Chair)' +p320478 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320479 +sa(dp320480 +g291130 +S'hand-colored woodcut on japan paper' +p320481 +sg291132 +S'1940' +p320482 +sg291134 +S'Child Reaching' +p320483 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320484 +sa(dp320485 +g291130 +S'6-color woodcut on japan paper' +p320486 +sg291132 +S'1942' +p320487 +sg291134 +S'Children Drawing' +p320488 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320489 +sa(dp320490 +g291130 +S'color screenprint on laid paper' +p320491 +sg291132 +S'1947' +p320492 +sg291134 +S'Go-Go' +p320493 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320494 +sa(dp320495 +g291130 +S'lithograph on red wove paper' +p320496 +sg291132 +S'1947' +p320497 +sg291134 +S'Strange Bird' +p320498 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320499 +sa(dp320500 +g291130 +S'lithograph on wove paper' +p320501 +sg291132 +S'c. 1947' +p320502 +sg291134 +S'Strange Bird' +p320503 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320504 +sa(dp320505 +g291130 +S'lithograph in black and gray on Arches paper [trial proof]' +p320506 +sg291132 +S'1951' +p320507 +sg291134 +S'Child Alone' +p320508 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320509 +sa(dp320510 +g291130 +S'lithograph in tan and black on Arches paper [trial proof]' +p320511 +sg291132 +S'1951' +p320512 +sg291134 +S'Child Alone' +p320513 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320514 +sa(dp320515 +g291130 +S'color lithograph on wove paper [trial proof?]' +p320516 +sg291132 +S'1951' +p320517 +sg291134 +S'Awareness of Dawn' +p320518 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320519 +sa(dp320520 +g291130 +S'lithograph in orange, blue, and green on Arches paper' +p320521 +sg291132 +S'1951' +p320522 +sg291134 +S'Infant (Enfant)' +p320523 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320524 +sa(dp320525 +g291130 +S'5-color lithograph on Arches paper' +p320526 +sg291132 +S'1957' +p320527 +sg291134 +S'Call it Winter' +p320528 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320529 +sa(dp320530 +g291130 +S'7-color linoleum cut on japan paper' +p320531 +sg291132 +S'1958' +p320532 +sg291134 +S'Wine, Women, and Song' +p320533 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320534 +sa(dp320535 +g291130 +S'color woodcut on japan paper' +p320536 +sg291132 +S'1959' +p320537 +sg291134 +S'Province by the Sea' +p320538 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320539 +sa(dp320540 +g291130 +S'color lithograph on BFK Rives paper' +p320541 +sg291132 +S'1968' +p320542 +sg291134 +S'Silent Seasons - Winter' +p320543 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320544 +sa(dp320545 +g291130 +S'color lithograph on BFK Rives paper' +p320546 +sg291132 +S'1969' +p320547 +sg291134 +S'Silent Seasons - Autumn' +p320548 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320549 +sa(dp320550 +g291130 +S'7-color screenprint on BFK Rives paper' +p320551 +sg291132 +S'1970' +p320552 +sg291134 +S'Woman Reading' +p320553 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320554 +sa(dp320555 +g291130 +S'screenprint on wove paper' +p320556 +sg291132 +S'1971' +p320557 +sg291134 +S'Woman and White Cat' +p320558 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320559 +sa(dp320560 +g291130 +S'aquatint with etching in black, blue, and rust on Arches paper' +p320561 +sg291132 +S'1971' +p320562 +sg291134 +S'Blue Robe' +p320563 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320564 +sa(dp320565 +g291130 +S'etching and aquatint in black on wove paper [trial proof]' +p320566 +sg291132 +S'1971' +p320567 +sg291134 +S'Blue Robe' +p320568 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320569 +sa(dp320570 +g291130 +S'aquatint with etching in black, blue, and rust on wove paper' +p320571 +sg291132 +S'1971' +p320572 +sg291134 +S'Blue Robe' +p320573 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320574 +sa(dp320575 +g291130 +S'color lithograph on wove paper' +p320576 +sg291132 +S'1973' +p320577 +sg291134 +S'Woman by the Sea' +p320578 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320579 +sa(dp320580 +g291130 +S'color lithograph on Arches paper' +p320581 +sg291132 +S'1975' +p320582 +sg291134 +S'Dawn' +p320583 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320584 +sa(dp320585 +g291130 +S'color lithograph and screenprint on wove paper' +p320586 +sg291132 +S'1975' +p320587 +sg291134 +S'Waiting' +p320588 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320589 +sa(dp320590 +g291130 +S'color lithograph and screenprint on wove paper' +p320591 +sg291132 +S'1976' +p320592 +sg291134 +S'Summer Idyll' +p320593 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320594 +sa(dp320595 +g291130 +S'aquatint in brown, black, and red on wove paper' +p320596 +sg291132 +S'1982' +p320597 +sg291134 +S'Woman and Cat Play' +p320598 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320599 +sa(dp320600 +g291130 +S'color screenprint on wove paper' +p320601 +sg291132 +S'1985' +p320602 +sg291134 +S'Spring Morning' +p320603 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320604 +sa(dp320605 +g291130 +S'color lithograph on Arches white paper' +p320606 +sg291132 +S'1981' +p320607 +sg291134 +S'The Bannister' +p320608 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320609 +sa(dp320610 +g291130 +S'color lithograph on tan wove paper [deluxe edition]' +p320611 +sg291132 +S'1981' +p320612 +sg291134 +S'The Bannister' +p320613 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320614 +sa(dp320615 +g291130 +S'hand-colored (oil paint and crayon) lithograph on Arches paper [proof]' +p320616 +sg291132 +S'1981' +p320617 +sg291134 +S'The Bannister' +p320618 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320619 +sa(dp320620 +g291130 +S'color lithograph with additional hand-coloring in oil paint on Arches paper [proof]' +p320621 +sg291132 +S'1981' +p320622 +sg291134 +S'The Bannister' +p320623 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320624 +sa(dp320625 +g291130 +S'charcoal and chalk over graphite on wove paper' +p320626 +sg291132 +S'1974' +p320627 +sg291134 +S'First Sketch for "Waiting"' +p320628 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320629 +sa(dp320630 +g291130 +S'charcoal on wove paper' +p320631 +sg291132 +S'1974' +p320632 +sg291134 +S'No. 1 Idea for "Waiting"' +p320633 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320634 +sa(dp320635 +g291130 +S'graphite on tracing paper' +p320636 +sg291132 +S'1975' +p320637 +sg291134 +S'Study for Woman in Hammock ("Summer Idyll")' +p320638 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320639 +sa(dp320640 +g291130 +S'carbon on heavy tracing paper' +p320641 +sg291132 +S'1981' +p320642 +sg291134 +S'Drawing for "The Bannister"' +p320643 +sg291136 +g27 +sg291137 +S'Will Barnet' +p320644 +sa(dp320645 +g291130 +S'graphite on wove paper' +p320646 +sg291132 +S'unknown date\n' +p320647 +sg291134 +S'Seated Nude Leaning to the Right, Head Lowered' +p320648 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320649 +sa(dp320650 +g291130 +S'graphite on wove paper' +p320651 +sg291132 +S'unknown date\n' +p320652 +sg291134 +S'Seated Boy with Lute' +p320653 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320654 +sa(dp320655 +g291130 +S'graphite on wove paper' +p320656 +sg291132 +S'unknown date\n' +p320657 +sg291134 +S'Woman in Hat, Seated in Wing Chair' +p320658 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320659 +sa(dp320660 +g291130 +S'graphite on wove paper' +p320661 +sg291132 +S'unknown date\n' +p320662 +sg291134 +S'Woman Curled Up in Chair, Reading' +p320663 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320664 +sa(dp320665 +g291130 +S'graphite on wove paper' +p320666 +sg291132 +S'unknown date\n' +p320667 +sg291134 +S'Nude, Bending Forward, Arms Relaxed' +p320668 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320669 +sa(dp320670 +g291130 +S'graphite on wove paper' +p320671 +sg291132 +S'unknown date\n' +p320672 +sg291134 +S'Still Life with Bread and Sugar Bowl' +p320673 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320674 +sa(dp320675 +g291130 +S'graphite on wove paper' +p320676 +sg291132 +S'unknown date\n' +p320677 +sg291134 +S'Reclining Nude Leaning to the Right, Head Turned Away' +p320678 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320679 +sa(dp320680 +g291130 +S'graphite on wove paper' +p320681 +sg291132 +S'unknown date\n' +p320682 +sg291134 +S'Standing Nude Turned to the Right, Arms Raised to Head' +p320683 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320684 +sa(dp320685 +g291130 +S'graphite on wove paper' +p320686 +sg291132 +S'unknown date\n' +p320687 +sg291134 +S'Seated Woman, Head Tilted to the Right' +p320688 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320689 +sa(dp320690 +g291130 +S'graphite on wove paper' +p320691 +sg291132 +S'unknown date\n' +p320692 +sg291134 +S'Seated Woman Leaning Back, Arms Supporting Head [recto]' +p320693 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320694 +sa(dp320695 +g291130 +S'graphite on wove paper' +p320696 +sg291132 +S'unknown date\n' +p320697 +sg291134 +S'Untitled [verso]' +p320698 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320699 +sa(dp320700 +g291130 +S'graphite on wove paper' +p320701 +sg291132 +S'unknown date\n' +p320702 +sg291134 +S'Standing Nude Turned to the Left, Arms Raised and Head Lowered' +p320703 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320704 +sa(dp320705 +g291130 +S'graphite on wove paper' +p320706 +sg291132 +S'unknown date\n' +p320707 +sg291134 +S'Standing Nude Turned to the Right, Arms Raised to Head' +p320708 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320709 +sa(dp320710 +g291130 +S'graphite on wove paper' +p320711 +sg291132 +S'unknown date\n' +p320712 +sg291134 +S'Figure Seated in Front of Object' +p320713 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320714 +sa(dp320715 +g291130 +S'graphite on wove paper' +p320716 +sg291132 +S'unknown date\n' +p320717 +sg291134 +S'Three-quarter Length Nude, Seen from the Back [recto]' +p320718 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320719 +sa(dp320720 +g291130 +S'graphite on wove paper' +p320721 +sg291132 +S'unknown date\n' +p320722 +sg291134 +S'Untitled [verso]' +p320723 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320724 +sa(dp320725 +g291130 +S'graphite on wove paper' +p320726 +sg291132 +S'unknown date\n' +p320727 +sg291134 +S'Nude Seated on the Ground, Facing Front' +p320728 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320729 +sa(dp320730 +g291130 +S'graphite on wove paper' +p320731 +sg291132 +S'unknown date\n' +p320732 +sg291134 +S'Seated Nude, Arms Crossed, Feet Turned In' +p320733 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320734 +sa(dp320735 +g291130 +S'graphite on wove paper' +p320736 +sg291132 +S'unknown date\n' +p320737 +sg291134 +S'Seated Nude Leaning to the Right, Arm Resting on Thigh' +p320738 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320739 +sa(dp320740 +g291130 +S'graphite on wove paper' +p320741 +sg291132 +S'unknown date\n' +p320742 +sg291134 +S'Standing Nude Looking to the Left, Hands Crossed in Front' +p320743 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320744 +sa(dp320745 +g291130 +S'graphite on wove paper' +p320746 +sg291132 +S'unknown date\n' +p320747 +sg291134 +S'Two Nudes in an Imaginary Setting [recto]' +p320748 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320749 +sa(dp320750 +g291130 +S'graphite on wove paper' +p320751 +sg291132 +S'1930s' +p320752 +sg291134 +S'Figure in a Landscape [verso]' +p320753 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320754 +sa(dp320755 +g291130 +S'oil on canvas' +p320756 +sg291132 +S'unknown date\n' +p320757 +sg291134 +S'Color Test in Crimson, Black, and Umber' +p320758 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320759 +sa(dp320760 +g291130 +S'graphite on wove paper' +p320761 +sg291132 +S'unknown date\n' +p320762 +sg291134 +S'Standing Nude, Three-quarter View Facing Right, Head Turned to Viewer [recto]' +p320763 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320764 +sa(dp320765 +g291130 +S'graphite on wove paper' +p320766 +sg291132 +S'unknown date\n' +p320767 +sg291134 +S'Untitled [verso]' +p320768 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320769 +sa(dp320770 +g291130 +S'graphite on wove paper' +p320771 +sg291132 +S'unknown date\n' +p320772 +sg291134 +S'Large Standing Female Nude Facing Front, Hand on Hip' +p320773 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320774 +sa(dp320775 +g291130 +S'graphite on wove paper' +p320776 +sg291132 +S'unknown date\n' +p320777 +sg291134 +S'Standing Nude Leaning Forward, Head Lowered, Arms Raised' +p320778 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320779 +sa(dp320780 +g291130 +S'graphite on wove paper' +p320781 +sg291132 +S'unknown date\n' +p320782 +sg291134 +S'Side View of Seated Nude Facing Left' +p320783 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320784 +sa(dp320785 +g291130 +S'graphite on wove paper' +p320786 +sg291132 +S'unknown date\n' +p320787 +sg291134 +S'Side View of Seated Female Nude Turned to the Right, Leaning Forward' +p320788 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320789 +sa(dp320790 +g291130 +S'graphite on wove paper' +p320791 +sg291132 +S'unknown date\n' +p320792 +sg291134 +S'Seated Man Looking Down, Eyeglasses in Hand' +p320793 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320794 +sa(dp320795 +g291130 +S'graphite on wove paper' +p320796 +sg291132 +S'unknown date\n' +p320797 +sg291134 +S'Seated Woman Leaning to Left, Man in Chair behind Her' +p320798 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320799 +sa(dp320800 +g291130 +S'graphite on wove paper' +p320801 +sg291132 +S'unknown date\n' +p320802 +sg291134 +S'Seated Female Nude Seen from Behind, Leaning Right with Head Resting in Arms' +p320803 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320804 +sa(dp320805 +g291130 +S'graphite on wove paper' +p320806 +sg291132 +S'unknown date\n' +p320807 +sg291134 +S'Two Women Lounging on Sofa' +p320808 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320809 +sa(dp320810 +g291130 +S'graphite on wove paper' +p320811 +sg291132 +S'unknown date\n' +p320812 +sg291134 +S'Side View of Seated Nude Turned to the Left, Right Leg Tucked Under' +p320813 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320814 +sa(dp320815 +g291130 +S'graphite on wove paper' +p320816 +sg291132 +S'unknown date\n' +p320817 +sg291134 +S'Kneeling Nude Seen from the Back' +p320818 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320819 +sa(dp320820 +g291130 +S'graphite on wove paper' +p320821 +sg291132 +S'unknown date\n' +p320822 +sg291134 +S'Female Nude Seated on the Ground, Facing Right' +p320823 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320824 +sa(dp320825 +g291130 +S'graphite on wove paper' +p320826 +sg291132 +S'unknown date\n' +p320827 +sg291134 +S'Seated Female Nude Turned to the Right, Leaning Forward' +p320828 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320829 +sa(dp320830 +g291130 +S'graphite on wove paper' +p320831 +sg291132 +S'unknown date\n' +p320832 +sg291134 +S'Standing Female Nude Turned to the Left, Arms Raised, Head Lowered' +p320833 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320834 +sa(dp320835 +g291130 +S'graphite on wove paper' +p320836 +sg291132 +S'unknown date\n' +p320837 +sg291134 +S'Female Nude Seated on the Ground, Left Arm Supporting Torso, Right Arm Raised' +p320838 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320839 +sa(dp320840 +g291130 +S'graphite on wove paper' +p320841 +sg291132 +S'unknown date\n' +p320842 +sg291134 +S'Still Life with Vase and Potted Plant' +p320843 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320844 +sa(dp320845 +g291130 +S'graphite on wove paper' +p320846 +sg291132 +S'unknown date\n' +p320847 +sg291134 +S'Woman Reading, Right Hand Covering Mouth' +p320848 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320849 +sa(dp320850 +g291130 +S'graphite on wove paper' +p320851 +sg291132 +S'unknown date\n' +p320852 +sg291134 +S'Seated Nude Turned to the Left, Arms Crossed' +p320853 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320854 +sa(dp320855 +g291130 +S'graphite on wove paper' +p320856 +sg291132 +S'unknown date\n' +p320857 +sg291134 +S'Seated Man Wearing Eyeglasses' +p320858 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320859 +sa(dp320860 +g291130 +S'pen and brush and black ink on wove paper' +p320861 +sg291132 +S'unknown date\n' +p320862 +sg291134 +S'Head of a Man in Profile to the Right' +p320863 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320864 +sa(dp320865 +g291130 +S'pen and black ink on wove paper' +p320866 +sg291132 +S'unknown date\n' +p320867 +sg291134 +S'Half-Length Portrait of a Woman Seated in an Upholstered Chair' +p320868 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320869 +sa(dp320870 +g291130 +S'pen and black ink on wove paper' +p320871 +sg291132 +S'unknown date\n' +p320872 +sg291134 +S'Man Seated in a Rocker, Right Arm Raised' +p320873 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320874 +sa(dp320875 +g291130 +S'pen and black ink on wove paper' +p320876 +sg291132 +S'unknown date\n' +p320877 +sg291134 +S'Stylishly Dressed Women Outdoors, One Holding the Arm of a Child' +p320878 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320879 +sa(dp320880 +g291130 +S'brush and black ink on wove paper' +p320881 +sg291132 +S'unknown date\n' +p320882 +sg291134 +S'Woman Playing the Violin' +p320883 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320884 +sa(dp320885 +g291130 +S'brush and black ink with scratching out on wove paper' +p320886 +sg291132 +S'unknown date\n' +p320887 +sg291134 +S'Nude Woman Outdoors' +p320888 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320889 +sa(dp320890 +g291130 +S'pen and black ink on wove paper' +p320891 +sg291132 +S'unknown date\n' +p320892 +sg291134 +S'Standing Nude Leaning to the Right, Head Resting on Hand' +p320893 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320894 +sa(dp320895 +g291130 +S'pen and black ink on wove paper' +p320896 +sg291132 +S'unknown date\n' +p320897 +sg291134 +S'Seated Female Nude Supporting Head, Right Leg Resting on Left' +p320898 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320899 +sa(dp320900 +g291130 +S'pen and black ink on wove paper' +p320901 +sg291132 +S'unknown date\n' +p320902 +sg291134 +S'Young Girl Seated Erectly in Wing Chair' +p320903 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320904 +sa(dp320905 +g291130 +S'pen and black ink on wove paper' +p320906 +sg291132 +S'unknown date\n' +p320907 +sg291134 +S'Woman Seated in Wing Chair, Legs Crossed' +p320908 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320909 +sa(dp320910 +g291130 +S'pen and black ink on wove paper' +p320911 +sg291132 +S'unknown date\n' +p320912 +sg291134 +S'Woman Dozing with Book Turned Over' +p320913 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320914 +sa(dp320915 +g291130 +S'pen and black ink on wove paper' +p320916 +sg291132 +S'unknown date\n' +p320917 +sg291134 +S'Head and Shoulders of a Woman, Eyes Cast Downward' +p320918 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320919 +sa(dp320920 +g291130 +S'pen and black ink on wove paper' +p320921 +sg291132 +S'unknown date\n' +p320922 +sg291134 +S'Head and Shoulders of a Figure Wearing Eyeglasses' +p320923 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320924 +sa(dp320925 +g291130 +S'pen and black ink on wove paper' +p320926 +sg291132 +S'unknown date\n' +p320927 +sg291134 +S'Young Girl Seated, Head Leaning to the Right, Hands Crossed' +p320928 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320929 +sa(dp320930 +g291130 +S'graphite on wove paper' +p320931 +sg291132 +S'unknown date\n' +p320932 +sg291134 +S'Seated Nude Leaning to the Right, Legs Crossed at Ankles' +p320933 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320934 +sa(dp320935 +g291130 +S'pen and black ink on wove paper' +p320936 +sg291132 +S'unknown date\n' +p320937 +sg291134 +S'Half-Length Study of a Woman Turned to the Right' +p320938 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320939 +sa(dp320940 +g291130 +S'graphite on wove paper' +p320941 +sg291132 +S'unknown date\n' +p320942 +sg291134 +S'Seated Man Wearing Hat and Large Coat' +p320943 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320944 +sa(dp320945 +g291130 +S'pen and black ink on wove paper' +p320946 +sg291132 +S'unknown date\n' +p320947 +sg291134 +S'Seated Female Nude Seen from the Back, Left Elbow Extended' +p320948 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320949 +sa(dp320950 +g291130 +S'(drawing)' +p320951 +sg291132 +S'unknown date\n' +p320952 +sg291134 +S'Woman in a Hammock, Reading' +p320953 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320954 +sa(dp320955 +g291130 +S'graphite on wove paper' +p320956 +sg291132 +S'unknown date\n' +p320957 +sg291134 +S'Half-Length Study of a Woman, Arms Raised to Head' +p320958 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320959 +sa(dp320960 +g291130 +S'(drawing)' +p320961 +sg291132 +S'unknown date\n' +p320962 +sg291134 +S"Half-Length Study of a Figure Wearing a Ruffled Collar and Sketch of a Boy's Head" +p320963 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320964 +sa(dp320965 +g291130 +S'(drawing)' +p320966 +sg291132 +S'unknown date\n' +p320967 +sg291134 +S'Standing Female Nude, Hands Raised to Shoulders' +p320968 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320969 +sa(dp320970 +g291130 +S'graphite on wove paper' +p320971 +sg291132 +S'unknown date\n' +p320972 +sg291134 +S'Woman Resting, Hands Tucked under Head' +p320973 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320974 +sa(dp320975 +g291130 +S'(drawing)' +p320976 +sg291132 +S'unknown date\n' +p320977 +sg291134 +S'Woman Seated with Jacket Worn over Shoulders' +p320978 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320979 +sa(dp320980 +g291130 +S'pen and black ink on wove paper' +p320981 +sg291132 +S'unknown date\n' +p320982 +sg291134 +S'Woman Seated Sideways in Upholstered Chair' +p320983 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320984 +sa(dp320985 +g291130 +S'(drawing)' +p320986 +sg291132 +S'unknown date\n' +p320987 +sg291134 +S'Female Nude Seen from Her Left Side, Leaning Back, Head Turned to the Viewer' +p320988 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320989 +sa(dp320990 +g291130 +S'pen and black ink on wove paper' +p320991 +sg291132 +S'unknown date\n' +p320992 +sg291134 +S'Woman Seated Sideways in Upholstered Chair, Left Leg Tucked Under' +p320993 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320994 +sa(dp320995 +g291130 +S'(drawing)' +p320996 +sg291132 +S'unknown date\n' +p320997 +sg291134 +S'Woman in Profile to the Right, Reading' +p320998 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p320999 +sa(dp321000 +g291130 +S'(drawing)' +p321001 +sg291132 +S'unknown date\n' +p321002 +sg291134 +S'Reclining Female Nude, Resting on Left Elbow, Head in Three-quarters Profile' +p321003 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321004 +sa(dp321005 +g291130 +S'(drawing)' +p321006 +sg291132 +S'unknown date\n' +p321007 +sg291134 +S'Seated Nude Leaning Back and to the Right, Left Hand on Hip, Ankles Crossed' +p321008 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321009 +sa(dp321010 +g291130 +S'(drawing)' +p321011 +sg291132 +S'unknown date\n' +p321012 +sg291134 +S'Pensive Woman Seated at a Table, Cup and Saucer to the Left' +p321013 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321014 +sa(dp321015 +g291130 +S'pen and black ink on wove paper' +p321016 +sg291132 +S'unknown date\n' +p321017 +sg291134 +S'Sheet with Two Landscape Sketches' +p321018 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321019 +sa(dp321020 +g291130 +S'(drawing)' +p321021 +sg291132 +S'unknown date\n' +p321022 +sg291134 +S'Frontal Nude Seated on a Fabric Draped Chair' +p321023 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321024 +sa(dp321025 +g291130 +S'(drawing)' +p321026 +sg291132 +S'unknown date\n' +p321027 +sg291134 +S'Seated Young Girl Wearing a Locket, Bow in Hair' +p321028 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321029 +sa(dp321030 +g291130 +S'(drawing)' +p321031 +sg291132 +S'unknown date\n' +p321032 +sg291134 +S'Sheet with Figure Sketches: Youngster; Woman Reaching toward Man; Additional Studies' +p321033 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321034 +sa(dp321035 +g291130 +S'pen and black ink on wove paper' +p321036 +sg291132 +S'unknown date\n' +p321037 +sg291134 +S'Seated Ballerina Holding Open Box' +p321038 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321039 +sa(dp321040 +g291130 +S'pen and black ink on wove paper' +p321041 +sg291132 +S'unknown date\n' +p321042 +sg291134 +S'Study of Seated Woman with Cubist Design' +p321043 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321044 +sa(dp321045 +g291130 +S'pen and black ink on wove paper' +p321046 +sg291132 +S'unknown date\n' +p321047 +sg291134 +S'Seated Woman Turned to the Left, Hands Folded on Lap' +p321048 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321049 +sa(dp321050 +g291130 +S'(drawing)' +p321051 +sg291132 +S'unknown date\n' +p321052 +sg291134 +S'Seated Nude Leaning to Left, Torso Bent at Waist' +p321053 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321054 +sa(dp321055 +g291130 +S'graphite on wove paper' +p321056 +sg291132 +S'unknown date\n' +p321057 +sg291134 +S'Nude Man and Woman' +p321058 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321059 +sa(dp321060 +g291130 +S'(drawing)' +p321061 +sg291132 +S'unknown date\n' +p321062 +sg291134 +S'Woman in a Long Dress' +p321063 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321064 +sa(dp321065 +g291130 +S'graphite on wove paper' +p321066 +sg291132 +S'unknown date\n' +p321067 +sg291134 +S'Man Standing, Looking to the Right, Hand on Chair' +p321068 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321069 +sa(dp321070 +g291130 +S'graphite on wove paper' +p321071 +sg291132 +S'unknown date\n' +p321072 +sg291134 +S'Woman Wearing Loose Robe, Crouching' +p321073 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321074 +sa(dp321075 +g291130 +S'graphite on wove paper' +p321076 +sg291132 +S'unknown date\n' +p321077 +sg291134 +S'Seated Woman, Head Turned to Viewer, Arms Crossed' +p321078 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321079 +sa(dp321080 +g291130 +S'graphite on wove paper' +p321081 +sg291132 +S'unknown date\n' +p321082 +sg291134 +S'Figure Studies' +p321083 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321084 +sa(dp321085 +g291130 +S'graphite on wove paper' +p321086 +sg291132 +S'unknown date\n' +p321087 +sg291134 +S'Standing Female Nude Turned to the Right, Hands on Hips' +p321088 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321089 +sa(dp321090 +g291130 +S'graphite on wove paper' +p321091 +sg291132 +S'unknown date\n' +p321092 +sg291134 +S'Seated Female Nude Turned to the Left, Left Leg Raised onto Bench' +p321093 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321094 +sa(dp321095 +g291130 +S'graphite on wove paper' +p321096 +sg291132 +S'unknown date\n' +p321097 +sg291134 +S'Reclining Nude, Right Arm Supporting Torso' +p321098 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321099 +sa(dp321100 +g291130 +S'graphite on wove paper' +p321101 +sg291132 +S'unknown date\n' +p321102 +sg291134 +S'Seated Woman with Eyeglasses Turned to the Left, Hands on Lap' +p321103 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321104 +sa(dp321105 +g291130 +S'graphite on wove paper' +p321106 +sg291132 +S'unknown date\n' +p321107 +sg291134 +S'Sleeping Woman, Head Resting on Arms' +p321108 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321109 +sa(dp321110 +g291130 +S'graphite on wove paper' +p321111 +sg291132 +S'unknown date\n' +p321112 +sg291134 +S'Man Leaning Back and to the Left, Right Hand Raised to Mouth' +p321113 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321114 +sa(dp321115 +g291130 +S'graphite on wove paper' +p321116 +sg291132 +S'unknown date\n' +p321117 +sg291134 +S'Seated Female Nude, Turned to the Right' +p321118 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321119 +sa(dp321120 +g291130 +S'graphite on wove paper' +p321121 +sg291132 +S'unknown date\n' +p321122 +sg291134 +S'Young Girl Seated, Hair Falling over Left Shoulder' +p321123 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321124 +sa(dp321125 +g291130 +S'graphite on wove paper' +p321126 +sg291132 +S'unknown date\n' +p321127 +sg291134 +S'Seated Figure Reading' +p321128 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321129 +sa(dp321130 +g291130 +S'graphite on wove paper' +p321131 +sg291132 +S'unknown date\n' +p321132 +sg291134 +S'Standing Female Nude Turned to the Right, Arms Raised to Head' +p321133 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321134 +sa(dp321135 +g291130 +S'graphite on wove paper' +p321136 +sg291132 +S'unknown date\n' +p321137 +sg291134 +S'Nude Figure Seen from the Back, Right Arm Supporting Torso' +p321138 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321139 +sa(dp321140 +g291130 +S'pen and black ink on wove paper' +p321141 +sg291132 +S'unknown date\n' +p321142 +sg291134 +S'Seated Woman Leaning Back, Arms Raised to Head [recto]' +p321143 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321144 +sa(dp321145 +g291130 +S'pen and black ink on wove paper' +p321146 +sg291132 +S'unknown date\n' +p321147 +sg291134 +S'Seated Figure with Eyeglasses, Leaning Back [verso]' +p321148 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321149 +sa(dp321150 +g291130 +S'pen and black ink on wove paper' +p321151 +sg291132 +S'unknown date\n' +p321152 +sg291134 +S'Man Seated in Wicker Chair, Turned to the Left' +p321153 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321154 +sa(dp321155 +g291130 +S'pen and black ink on wove paper' +p321156 +sg291132 +S'unknown date\n' +p321157 +sg291134 +S'Standing Female Nude Turned to the Left, Head Turned to Viewer' +p321158 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321159 +sa(dp321160 +g291130 +S'pen and black ink on wove paper' +p321161 +sg291132 +S'unknown date\n' +p321162 +sg291134 +S'Reclining Nude Leaning to the Left, Right Arm Supporting Torso' +p321163 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321164 +sa(dp321165 +g291130 +S'pen and black ink on wove paper' +p321166 +sg291132 +S'unknown date\n' +p321167 +sg291134 +S'Seated Woman Wearing Checked Top' +p321168 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321169 +sa(dp321170 +g291130 +S'pen and black ink on wove paper' +p321171 +sg291132 +S'unknown date\n' +p321172 +sg291134 +S'Face in Profile to Right' +p321173 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321174 +sa(dp321175 +g291130 +S'pen and black ink on wove paper' +p321176 +sg291132 +S'unknown date\n' +p321177 +sg291134 +S'Seated Female Nude Turned to the Right, Head Turned to the Left' +p321178 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321179 +sa(dp321180 +g291130 +S'pen and black ink on wove paper' +p321181 +sg291132 +S'unknown date\n' +p321182 +sg291134 +S'Reclining Female Nude Leaning to Left, Right Arm Supporting Torso' +p321183 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321184 +sa(dp321185 +g291130 +S'pen and black ink on wove paper' +p321186 +sg291132 +S'unknown date\n' +p321187 +sg291134 +S'Seated Woman Turned to the Right, Painting' +p321188 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321189 +sa(dp321190 +g291130 +S'pen and black ink on wove paper' +p321191 +sg291132 +S'unknown date\n' +p321192 +sg291134 +S'Nude Lying on Stomach, Head Raised to Viewer' +p321193 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321194 +sa(dp321195 +g291130 +S'pen and black ink on wove paper' +p321196 +sg291132 +S'unknown date\n' +p321197 +sg291134 +S'Seated Female Nude Facing Front, Left Hand Touching Right Knee' +p321198 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321199 +sa(dp321200 +g291130 +S'pen and black ink on wove paper' +p321201 +sg291132 +S'unknown date\n' +p321202 +sg291134 +S'Seated Woman with Striped Top and other Study' +p321203 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321204 +sa(dp321205 +g291130 +S'pen and black ink on wove paper' +p321206 +sg291132 +S'unknown date\n' +p321207 +sg291134 +S'Woman Wearing Hat, Standing before a Window' +p321208 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321209 +sa(dp321210 +g291130 +S'pen and black ink on wove paper' +p321211 +sg291132 +S'unknown date\n' +p321212 +sg291134 +S'Female Nude Lying on Back, Leaning to the Right' +p321213 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321214 +sa(dp321215 +g291130 +S'pen and black ink on wove paper' +p321216 +sg291132 +S'unknown date\n' +p321217 +sg291134 +S'Two Nudes Standing in an Architectural Setting' +p321218 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321219 +sa(dp321220 +g291130 +S'pen and black ink on wove paper' +p321221 +sg291132 +S'unknown date\n' +p321222 +sg291134 +S'Female Nude Lying on Stomach' +p321223 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321224 +sa(dp321225 +g291130 +S'pen and black ink on wove paper' +p321226 +sg291132 +S'unknown date\n' +p321227 +sg291134 +S'Standing Nude, Three-quarter View Facing Left' +p321228 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321229 +sa(dp321230 +g291130 +S'pen and black ink on wove paper' +p321231 +sg291132 +S'unknown date\n' +p321232 +sg291134 +S'Seated Female Nude Leaning Back, Left Leg Raised at Knee' +p321233 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321234 +sa(dp321235 +g291130 +S'pen and black ink on wove paper' +p321236 +sg291132 +S'unknown date\n' +p321237 +sg291134 +S'Seated Nude in Straight Back Chair' +p321238 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321239 +sa(dp321240 +g291130 +S'graphite on wove paper' +p321241 +sg291132 +S'unknown date\n' +p321242 +sg291134 +S'Seated Nude Facing Front with Hands Crossed' +p321243 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321244 +sa(dp321245 +g291130 +S'graphite on wove paper' +p321246 +sg291132 +S'unknown date\n' +p321247 +sg291134 +S'Young Girl Seated Facing Front, Head Propped on Arm' +p321248 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321249 +sa(dp321250 +g291130 +S'graphite on wove paper' +p321251 +sg291132 +S'unknown date\n' +p321252 +sg291134 +S'Half-Length Portrait of a Man in Profile to the Right' +p321253 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321254 +sa(dp321255 +g291130 +S'graphite on wove paper' +p321256 +sg291132 +S'unknown date\n' +p321257 +sg291134 +S'Nude Seated on the Ground, Leaning to the Right, Legs Bent' +p321258 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321259 +sa(dp321260 +g291130 +S'graphite on wove paper' +p321261 +sg291132 +S'unknown date\n' +p321262 +sg291134 +S'Large Standing Female Nude Turned to the Left, Hand on Hip' +p321263 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321264 +sa(dp321265 +g291130 +S'graphite on wove paper' +p321266 +sg291132 +S'unknown date\n' +p321267 +sg291134 +S'Standing Female Nude Facing Front, Head Lowered, Legs Crossed' +p321268 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321269 +sa(dp321270 +g291130 +S'graphite on wove paper' +p321271 +sg291132 +S'unknown date\n' +p321272 +sg291134 +S'Standing Woman in Floor-length Robe Seen from the Back' +p321273 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321274 +sa(dp321275 +g291130 +S'graphite on wove paper' +p321276 +sg291132 +S'unknown date\n' +p321277 +sg291134 +S'Seated Woman in Robe, Arms Crossed' +p321278 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321279 +sa(dp321280 +g291130 +S'graphite on wove paper' +p321281 +sg291132 +S'unknown date\n' +p321282 +sg291134 +S'Large Woman Lying on Stomach, Head Resting on Left Arm' +p321283 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321284 +sa(dp321285 +g291130 +S'graphite on wove paper' +p321286 +sg291132 +S'unknown date\n' +p321287 +sg291134 +S'Standing Female Nude Gesturing to the Left' +p321288 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321289 +sa(dp321290 +g291130 +S'graphite on wove paper' +p321291 +sg291132 +S'unknown date\n' +p321292 +sg291134 +S'Still Life with Sculpture on Bureau' +p321293 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321294 +sa(dp321295 +g291130 +S'pen and black ink on wove paper' +p321296 +sg291132 +S'unknown date\n' +p321297 +sg291134 +S"Portrait of a Balding Man with Woman's Face Behind" +p321298 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321299 +sa(dp321300 +g291130 +S'blue pen on wove paper' +p321301 +sg291132 +S'unknown date\n' +p321302 +sg291134 +S'Seated Woman, Head Propped against Right Hand, Eyes Cast Downward' +p321303 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321304 +sa(dp321305 +g291130 +S'pen and black ink on wove paper' +p321306 +sg291132 +S'unknown date\n' +p321307 +sg291134 +S'Two Figures behind a Railing, Room Interior with Beam [recto]' +p321308 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321309 +sa(dp321310 +g291130 +S'pen and black ink on wove paper' +p321311 +sg291132 +S'unknown date\n' +p321312 +sg291134 +S'Figure Studies [verso]' +p321313 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321314 +sa(dp321315 +g291130 +S'pen and black ink on wove paper' +p321316 +sg291132 +S'unknown date\n' +p321317 +sg291134 +S'Half-Length Portrait of a Seated Woman, Turned to the Left, Eyes Cast Downward' +p321318 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321319 +sa(dp321320 +g291130 +S'pen and black ink on wove paper' +p321321 +sg291132 +S'unknown date\n' +p321322 +sg291134 +S'Five Figures in a Park, Three Conversing' +p321323 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321324 +sa(dp321325 +g291130 +S'blue pen on wove paper' +p321326 +sg291132 +S'unknown date\n' +p321327 +sg291134 +S'Seated Woman, Leaning to the Right' +p321328 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321329 +sa(dp321330 +g291130 +S'pen and black ink on wove paper' +p321331 +sg291132 +S'unknown date\n' +p321332 +sg291134 +S'Reclining Male and Seated Female [recto]' +p321333 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321334 +sa(dp321335 +g291130 +S'pen and black ink on wove paper' +p321336 +sg291132 +S'unknown date\n' +p321337 +sg291134 +S'Figue Studies [verso]' +p321338 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321339 +sa(dp321340 +g291130 +S'pen and black ink on wove paper' +p321341 +sg291132 +S'unknown date\n' +p321342 +sg291134 +S'Seated Nude Woman Leaning Forward, Elbows on Knees' +p321343 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321344 +sa(dp321345 +g291130 +S'graphite on wove paper' +p321346 +sg291132 +S'unknown date\n' +p321347 +sg291134 +S'Standing Nude Turned to the Right, Arms Raised to Head' +p321348 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321349 +sa(dp321350 +g291130 +S'graphite on wove paper' +p321351 +sg291132 +S'unknown date\n' +p321352 +sg291134 +S'Nude Resting on One Knee, Seen from the Back' +p321353 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321354 +sa(dp321355 +g291130 +S'graphite on wove paper' +p321356 +sg291132 +S'unknown date\n' +p321357 +sg291134 +S'Standing Nude Turned to the Left, Arms at Side' +p321358 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321359 +sa(dp321360 +g291130 +S'graphite on wove paper' +p321361 +sg291132 +S'unknown date\n' +p321362 +sg291134 +S'Standing Nude, Side View Facing Right, Head Turned Away' +p321363 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321364 +sa(dp321365 +g291130 +S'graphite on wove paper' +p321366 +sg291132 +S'unknown date\n' +p321367 +sg291134 +S'Seated Woman, Head Turned to the Left, Hand Raised to Cheek' +p321368 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321369 +sa(dp321370 +g291130 +S'graphite on wove paper' +p321371 +sg291132 +S'unknown date\n' +p321372 +sg291134 +S'Seated Woman Leaning Back and to the Right, Looking Down at Her Hands' +p321373 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321374 +sa(dp321375 +g291130 +S'pen and black ink on wove paper' +p321376 +sg291132 +S'unknown date\n' +p321377 +sg291134 +S'Standing Nude Turned to the Right, Hands on Hips' +p321378 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321379 +sa(dp321380 +g291130 +S'graphite on wove paper' +p321381 +sg291132 +S'unknown date\n' +p321382 +sg291134 +S'Seated Figure Looking Down, Arms Folded' +p321383 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321384 +sa(dp321385 +g291130 +S'graphite on wove paper' +p321386 +sg291132 +S'unknown date\n' +p321387 +sg291134 +S'Nude Man, Standing with Arms Crossed and Raised to Shoulders' +p321388 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321389 +sa(dp321390 +g291130 +S'graphite on wove paper' +p321391 +sg291132 +S'unknown date\n' +p321392 +sg291134 +S'Standing Nude, Three-quarter View Facing Right, Arms Back' +p321393 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321394 +sa(dp321395 +g291130 +S'graphite on wove paper' +p321396 +sg291132 +S'unknown date\n' +p321397 +sg291134 +S'Woman Curled Up in Large Chair, Reading' +p321398 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321399 +sa(dp321400 +g291130 +S'graphite on wove paper' +p321401 +sg291132 +S'unknown date\n' +p321402 +sg291134 +S'Standing Nude, Three-quarter View Facing Right, Eyes Closed' +p321403 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321404 +sa(dp321405 +g291130 +S'graphite on wove paper' +p321406 +sg291132 +S'unknown date\n' +p321407 +sg291134 +S'Large Seated Nude, Three-quarter View Facing Right, Seen from Behind' +p321408 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321409 +sa(dp321410 +g291130 +S'graphite on wove paper' +p321411 +sg291132 +S'unknown date\n' +p321412 +sg291134 +S'Woman Lying on Right Side, Left Arm Tucked beneath Face' +p321413 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321414 +sa(dp321415 +g291130 +S'graphite on wove paper' +p321416 +sg291132 +S'unknown date\n' +p321417 +sg291134 +S'Seated Nude Facing Front, Head Turned to the Left' +p321418 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321419 +sa(dp321420 +g291130 +S'graphite on wove paper' +p321421 +sg291132 +S'unknown date\n' +p321422 +sg291134 +S'Standing Nude Man Turned to the Left, Arms at Side' +p321423 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321424 +sa(dp321425 +g291130 +S'graphite on wove paper' +p321426 +sg291132 +S'unknown date\n' +p321427 +sg291134 +S'Side View of Seated Nude Turned to the Left, Head Turned to Viewer' +p321428 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321429 +sa(dp321430 +g291130 +S'graphite on wove paper' +p321431 +sg291132 +S'unknown date\n' +p321432 +sg291134 +S'Standing Nude Turned to the Left, Head Sideways' +p321433 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321434 +sa(dp321435 +g291130 +S'graphite on wove paper' +p321436 +sg291132 +S'unknown date\n' +p321437 +sg291134 +S'Side View of Standing Nude Turned to the Left, Arms Raised to Head' +p321438 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321439 +sa(dp321440 +g291130 +S'graphite on wove paper' +p321441 +sg291132 +S'unknown date\n' +p321442 +sg291134 +S'Nude Reclining to the Left, Right Hand Touching Foot' +p321443 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321444 +sa(dp321445 +g291130 +S'graphite on wove paper' +p321446 +sg291132 +S'unknown date\n' +p321447 +sg291134 +S'Seated man Seen from Above, Hands Folded' +p321448 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321449 +sa(dp321450 +g291130 +S'graphite on wove paper' +p321451 +sg291132 +S'unknown date\n' +p321452 +sg291134 +S'Woman Reclining to the Left, Pillow at Hand' +p321453 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321454 +sa(dp321455 +g291130 +S'(drawing)' +p321456 +sg291132 +S'unknown date\n' +p321457 +sg291134 +S'Rear View of Kneeling Figure with Head Turned Left' +p321458 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321459 +sa(dp321460 +g291130 +S'graphite on wove paper' +p321461 +sg291132 +S'unknown date\n' +p321462 +sg291134 +S'Standing Nude Three-quarter View to the Right, Arms at Side' +p321463 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321464 +sa(dp321465 +g291130 +S'graphite on wove paper' +p321466 +sg291132 +S'unknown date\n' +p321467 +sg291134 +S'Side View of Seated Nude, Right Leg Extended, Left Leg Tucked Under' +p321468 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321469 +sa(dp321470 +g291130 +S'graphite on wove paper' +p321471 +sg291132 +S'unknown date\n' +p321472 +sg291134 +S'Frontal View of Standing Nude, Arms Behind' +p321473 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321474 +sa(dp321475 +g291130 +S'graphite on wove paper' +p321476 +sg291132 +S'unknown date\n' +p321477 +sg291134 +S'Seated Figure Turned Three-quarters to the Right, Hands on Lap' +p321478 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321479 +sa(dp321480 +g291130 +S'graphite on wove paper' +p321481 +sg291132 +S'unknown date\n' +p321482 +sg291134 +S'Seated Woman Seen from Below, Knitting [recto]' +p321483 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321484 +sa(dp321485 +g291130 +S'graphite on wove paper' +p321486 +sg291132 +S'unknown date\n' +p321487 +sg291134 +S'Untitled [verso]' +p321488 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321489 +sa(dp321490 +g291130 +S'(drawing)' +p321491 +sg291132 +S'unknown date\n' +p321492 +sg291134 +S'Seated Man and Woman' +p321493 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321494 +sa(dp321495 +g291130 +S'(drawing)' +p321496 +sg291132 +S'unknown date\n' +p321497 +sg291134 +S'Woman Seated at a Table' +p321498 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321499 +sa(dp321500 +g291130 +S'graphite on wove paper' +p321501 +sg291132 +S'unknown date\n' +p321502 +sg291134 +S'Large Standing Nude, Face Turned to Viewer, Arms Behind' +p321503 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321504 +sa(dp321505 +g291130 +S'(drawing)' +p321506 +sg291132 +S'unknown date\n' +p321507 +sg291134 +S'Figure Seated at a Round Table' +p321508 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321509 +sa(dp321510 +g291130 +S'(drawing)' +p321511 +sg291132 +S'unknown date\n' +p321512 +sg291134 +S'Seated Figure Turned to Right' +p321513 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321514 +sa(dp321515 +g291130 +S'graphite on wove paper' +p321516 +sg291132 +S'unknown date\n' +p321517 +sg291134 +S'Three Nudes (or Nude in Motion) with Trees to the Left' +p321518 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321519 +sa(dp321520 +g291130 +S'graphite on wove paper' +p321521 +sg291132 +S'unknown date\n' +p321522 +sg291134 +S'Abstract Composition' +p321523 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321524 +sa(dp321525 +g291130 +S'graphite and black crayon on wove paper' +p321526 +sg291132 +S'unknown date\n' +p321527 +sg291134 +S'Stylized Study of a Figure Reading a Newspaper' +p321528 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321529 +sa(dp321530 +g291130 +S'graphite on wove paper' +p321531 +sg291132 +S'unknown date\n' +p321532 +sg291134 +S'Woman with Long Hair Seen from the Back, Folding Screen to the Left' +p321533 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321534 +sa(dp321535 +g291130 +S'pen and black ink on wove paper' +p321536 +sg291132 +S'unknown date\n' +p321537 +sg291134 +S'Young Girl Seated in Wing Chair, Hands Folded' +p321538 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321539 +sa(dp321540 +g291130 +S'pen and black ink on wove paper' +p321541 +sg291132 +S'unknown date\n' +p321542 +sg291134 +S'Torso of a Standing Nude Turned to the Right [recto]' +p321543 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321544 +sa(dp321545 +g291130 +S'pen and black ink on wove paper' +p321546 +sg291132 +S'unknown date\n' +p321547 +sg291134 +S'Untitled [verso]' +p321548 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321549 +sa(dp321550 +g291130 +S'pen and black ink on wove paper' +p321551 +sg291132 +S'unknown date\n' +p321552 +sg291134 +S'Two Women on Sofa, Knitting' +p321553 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321554 +sa(dp321555 +g291130 +S'graphite on wove paper' +p321556 +sg291132 +S'unknown date\n' +p321557 +sg291134 +S'Woman Seated with Legs Crossed, Reading' +p321558 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321559 +sa(dp321560 +g291130 +S'graphite on wove paper' +p321561 +sg291132 +S'unknown date\n' +p321562 +sg291134 +S'Woman Seated and Looking Down to Lap' +p321563 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321564 +sa(dp321565 +g291130 +S'graphite on wove paper' +p321566 +sg291132 +S'unknown date\n' +p321567 +sg291134 +S'Woman Seated and Reclining Back, Hat Placed at an Angle' +p321568 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321569 +sa(dp321570 +g291130 +S'charcoal on wove paper' +p321571 +sg291132 +S'unknown date\n' +p321572 +sg291134 +S'Untitled' +p321573 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321574 +sa(dp321575 +g291130 +S'graphite on wove paper' +p321576 +sg291132 +S'unknown date\n' +p321577 +sg291134 +S'Woman in Long Robe, Painting' +p321578 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321579 +sa(dp321580 +g291130 +S'graphite on wove paper' +p321581 +sg291132 +S'unknown date\n' +p321582 +sg291134 +S'Woman Reclining to the Left, Hands Raised to Head' +p321583 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321584 +sa(dp321585 +g291130 +S'graphite on wove paper' +p321586 +sg291132 +S'unknown date\n' +p321587 +sg291134 +S'Woman Reclining on Sofa' +p321588 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321589 +sa(dp321590 +g291130 +S'graphite on wove paper' +p321591 +sg291132 +S'unknown date\n' +p321592 +sg291134 +S'Seated Woman, Three-quarters View to the Left, Hands on Lap' +p321593 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321594 +sa(dp321595 +g291130 +S'graphite on wove paper' +p321596 +sg291132 +S'unknown date\n' +p321597 +sg291134 +S'Seated Figure Modeling Sculpture on Stand' +p321598 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321599 +sa(dp321600 +g291130 +S'pen and black ink on wove paper' +p321601 +sg291132 +S'unknown date\n' +p321602 +sg291134 +S'Frontal Nude, Left Arm Raised above Head' +p321603 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321604 +sa(dp321605 +g291130 +S'graphite on wove paper' +p321606 +sg291132 +S'unknown date\n' +p321607 +sg291134 +S'Nude Turned to the Left, Kneeling on One leg, Seen from the Back' +p321608 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321609 +sa(dp321610 +g291130 +S'graphite on wove paper' +p321611 +sg291132 +S'unknown date\n' +p321612 +sg291134 +S'Half-Length Portrait of Seated Woman Facing Front' +p321613 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321614 +sa(dp321615 +g291130 +S'graphite on wove paper' +p321616 +sg291132 +S'unknown date\n' +p321617 +sg291134 +S'A Nude Seen from the Back and Two Studies of Female Heads' +p321618 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321619 +sa(dp321620 +g291130 +S'graphite on wove paper' +p321621 +sg291132 +S'unknown date\n' +p321622 +sg291134 +S'Frontal Nude, Right Leg Slightly Raised, Hands Behind' +p321623 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321624 +sa(dp321625 +g291130 +S'graphite on wove paper' +p321626 +sg291132 +S'unknown date\n' +p321627 +sg291134 +S'Woman on Seat Cushion, Knitting' +p321628 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321629 +sa(dp321630 +g291130 +S'graphite on wove paper' +p321631 +sg291132 +S'unknown date\n' +p321632 +sg291134 +S'Nude Turned to the Left, Three-quarter View, Seen from the Back' +p321633 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321634 +sa(dp321635 +g291130 +S'pen and black ink on wove paper' +p321636 +sg291132 +S'unknown date\n' +p321637 +sg291134 +S'Seated Nude, Three-quarter View, Turned to the Right' +p321638 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321639 +sa(dp321640 +g291130 +S'pen and black ink on wove paper' +p321641 +sg291132 +S'unknown date\n' +p321642 +sg291134 +S'Frontal Nude, Right Leg Bent at Knee, Hands Behind' +p321643 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321644 +sa(dp321645 +g291130 +S'pen and black ink on wove paper' +p321646 +sg291132 +S'unknown date\n' +p321647 +sg291134 +S'Standing Nude with Right Leg Raised, Seen from the Back' +p321648 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321649 +sa(dp321650 +g291130 +S'pen and black ink on wove paper' +p321651 +sg291132 +S'unknown date\n' +p321652 +sg291134 +S'Elderly Woman Seated in Chair' +p321653 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321654 +sa(dp321655 +g291130 +S'pen and black ink on wove paper' +p321656 +sg291132 +S'unknown date\n' +p321657 +sg291134 +S'Nude Reclining to the Right, Arms beneath Head, Vertically Posed' +p321658 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321659 +sa(dp321660 +g291130 +S'pen and black ink on wove paper' +p321661 +sg291132 +S'unknown date\n' +p321662 +sg291134 +S'Frontal Nude Standing with Left Arm behind Back' +p321663 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321664 +sa(dp321665 +g291130 +S'pen and black ink on wove paper' +p321666 +sg291132 +S'unknown date\n' +p321667 +sg291134 +S'Boy Standing with Lute' +p321668 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321669 +sa(dp321670 +g291130 +S'pen and black ink on wove paper' +p321671 +sg291132 +S'unknown date\n' +p321672 +sg291134 +S'Frontal Nude Seated with Legs Apart' +p321673 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321674 +sa(dp321675 +g291130 +S'pen and black ink on wove paper' +p321676 +sg291132 +S'unknown date\n' +p321677 +sg291134 +S'Young Boy Seated, Playing Lute' +p321678 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321679 +sa(dp321680 +g291130 +S'pen and black ink on wove paper' +p321681 +sg291132 +S'unknown date\n' +p321682 +sg291134 +S'Head and Shoulders of a Woman with Short Hair' +p321683 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321684 +sa(dp321685 +g291130 +S'pen and black ink on wove paper' +p321686 +sg291132 +S'unknown date\n' +p321687 +sg291134 +S'Two Women Leaning Back in Sofa, Knitting' +p321688 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321689 +sa(dp321690 +g291130 +S'pen and black ink on wove paper' +p321691 +sg291132 +S'unknown date\n' +p321692 +sg291134 +S'Barefoot Woman with Eyeglasses, Knitting' +p321693 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321694 +sa(dp321695 +g291130 +S'pen and black ink on wove paper' +p321696 +sg291132 +S'unknown date\n' +p321697 +sg291134 +S'Standing Nude, Three-quarter View from the Back, Right Arm Extended' +p321698 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321699 +sa(dp321700 +g291130 +S'pen and black ink on wove paper' +p321701 +sg291132 +S'unknown date\n' +p321702 +sg291134 +S'Seated Female Examining Her Hands' +p321703 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321704 +sa(dp321705 +g291130 +S'pen and black ink on wove paper' +p321706 +sg291132 +S'unknown date\n' +p321707 +sg291134 +S'Nude Sideways on a Chair, Right Leg Extended to Ground' +p321708 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321709 +sa(dp321710 +g291130 +S'pen and black ink on wove paper' +p321711 +sg291132 +S'unknown date\n' +p321712 +sg291134 +S'Frontal Nude Seated, Arms at Side' +p321713 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321714 +sa(dp321715 +g291130 +S'graphite on wove paper' +p321716 +sg291132 +S'unknown date\n' +p321717 +sg291134 +S'Nude Reclining on a Rug' +p321718 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321719 +sa(dp321720 +g291130 +S'pen and black ink on wove paper' +p321721 +sg291132 +S'unknown date\n' +p321722 +sg291134 +S'Man with Mustache, Seated with Legs Crossed, Writing' +p321723 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321724 +sa(dp321725 +g291130 +S'pen and black ink on wove paper' +p321726 +sg291132 +S'unknown date\n' +p321727 +sg291134 +S'Nude Reclining to the Right, Head Propped on Left Hand' +p321728 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321729 +sa(dp321730 +g291130 +S'pen and black ink on wove paper' +p321731 +sg291132 +S'unknown date\n' +p321732 +sg291134 +S'Nude Reclining on Back, Torso Arched' +p321733 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321734 +sa(dp321735 +g291130 +S'pen and black ink on wove paper' +p321736 +sg291132 +S'unknown date\n' +p321737 +sg291134 +S'Nude Seated on Folding Stool, Turned to the Right' +p321738 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321739 +sa(dp321740 +g291130 +S'pen and black ink on wove paper' +p321741 +sg291132 +S'unknown date\n' +p321742 +sg291134 +S'Study of Trees' +p321743 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321744 +sa(dp321745 +g291130 +S'pen and black ink on wove paper' +p321746 +sg291132 +S'unknown date\n' +p321747 +sg291134 +S'Seated Nude Turned to the Right, Arms Resting on Thighs' +p321748 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321749 +sa(dp321750 +g291130 +S'pen and black ink on wove paper' +p321751 +sg291132 +S'unknown date\n' +p321752 +sg291134 +S'Young Girl Leaning Forward in a Chair, Looking to the Right' +p321753 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321754 +sa(dp321755 +g291130 +S'pen and black ink on wove paper' +p321756 +sg291132 +S'unknown date\n' +p321757 +sg291134 +S'Two Groups of Figure Sketches [recto]' +p321758 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321759 +sa(dp321760 +g291130 +S'pen and black ink on wove paper' +p321761 +sg291132 +S'unknown date\n' +p321762 +sg291134 +S'Two Sketches: Nude in an Interior and Still Life with Bottles and Vase [verso]' +p321763 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321764 +sa(dp321765 +g291130 +S'pen and black ink on wove paper' +p321766 +sg291132 +S'unknown date\n' +p321767 +sg291134 +S'Frontal Nude Standing, Arms Raised and Folded behind Head' +p321768 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321769 +sa(dp321770 +g291130 +S'pen and black ink on wove paper' +p321771 +sg291132 +S'unknown date\n' +p321772 +sg291134 +S'Pregnant Woman Seated in Chair' +p321773 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321774 +sa(dp321775 +g291130 +S'pen and black ink on wove paper' +p321776 +sg291132 +S'unknown date\n' +p321777 +sg291134 +S'Woman in Checked Sun-Suit, Propped on Elbow' +p321778 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321779 +sa(dp321780 +g291130 +S'pen and black ink on wove paper' +p321781 +sg291132 +S'unknown date\n' +p321782 +sg291134 +S'Woman Reclining on Slatted Lounge Chair' +p321783 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321784 +sa(dp321785 +g291130 +S'pen and black ink on wove paper' +p321786 +sg291132 +S'unknown date\n' +p321787 +sg291134 +S'Woman in Rocker, Left Leg on Seat, Head Tilted Sideways [recto]' +p321788 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321789 +sa(dp321790 +g291130 +S'pen and black ink on wove paper' +p321791 +sg291132 +S'unknown date\n' +p321792 +sg291134 +S'Untitled [verso]' +p321793 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321794 +sa(dp321795 +g291130 +S'pen and black ink on wove paper' +p321796 +sg291132 +S'unknown date\n' +p321797 +sg291134 +S'Frontal Nude Standing with Left Arm Raised High' +p321798 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321799 +sa(dp321800 +g291130 +S'pen and black ink on wove paper' +p321801 +sg291132 +S'unknown date\n' +p321802 +sg291134 +S'Study of a Tree' +p321803 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321804 +sa(dp321805 +g291130 +S'pen and black ink on wove paper' +p321806 +sg291132 +S'unknown date\n' +p321807 +sg291134 +S'Frontal Nude Standing with Left Arm Behind Back, Head Tilted to the Left' +p321808 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321809 +sa(dp321810 +g291130 +S'pen and black ink on wove paper' +p321811 +sg291132 +S'unknown date\n' +p321812 +sg291134 +S'Side View of Standing Nude, Turned to the Right, Hands Folded in Front' +p321813 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321814 +sa(dp321815 +g291130 +S'pen and black ink on wove paper' +p321816 +sg291132 +S'unknown date\n' +p321817 +sg291134 +S'Frontal Nude Standing with Legs Crossed' +p321818 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321819 +sa(dp321820 +g291130 +S'pen and black ink on wove paper' +p321821 +sg291132 +S'unknown date\n' +p321822 +sg291134 +S'Standing Nude, Three-quarter View to the Right, Hands behind Back' +p321823 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321824 +sa(dp321825 +g291130 +S'(drawing)' +p321826 +sg291132 +S'unknown date\n' +p321827 +sg291134 +S'Portrait of a Woman Turned Left' +p321828 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321829 +sa(dp321830 +g291130 +S'pen and black ink on wove paper' +p321831 +sg291132 +S'unknown date\n' +p321832 +sg291134 +S'Man with Mustache Seated, Window and Walls Behind' +p321833 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321834 +sa(dp321835 +g291130 +S'pen and black ink on wove paper' +p321836 +sg291132 +S'unknown date\n' +p321837 +sg291134 +S'Two sketches of Figures on Horses' +p321838 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321839 +sa(dp321840 +g291130 +S'pen and black ink on wove paper' +p321841 +sg291132 +S'unknown date\n' +p321842 +sg291134 +S'Frontal Nude Seated in a Rocker, Right Hand on Leg' +p321843 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321844 +sa(dp321845 +g291130 +S'pen and black ink on lined paper' +p321846 +sg291132 +S'unknown date\n' +p321847 +sg291134 +S'Still Life with Sandwich, Glass, Salt & Pepper Shakers' +p321848 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321849 +sa(dp321850 +g291130 +S'pen and black ink on wove paper' +p321851 +sg291132 +S'unknown date\n' +p321852 +sg291134 +S'Three Figures under Cover Outdoors' +p321853 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321854 +sa(dp321855 +g291130 +S'pen and black ink on wove paper' +p321856 +sg291132 +S'unknown date\n' +p321857 +sg291134 +S'Three Figures: Two Standing, One Seated' +p321858 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321859 +sa(dp321860 +g291130 +S'pen and black ink on wove paper' +p321861 +sg291132 +S'unknown date\n' +p321862 +sg291134 +S'Three Figures under Cover Outdoors' +p321863 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321864 +sa(dp321865 +g291130 +S'pen and black ink on wove paper' +p321866 +sg291132 +S'unknown date\n' +p321867 +sg291134 +S'Two Figures Standing Underneath a Shelter [recto]' +p321868 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321869 +sa(dp321870 +g291130 +S'pen and black ink on wove paper' +p321871 +sg291132 +S'unknown date\n' +p321872 +sg291134 +S'Untitled [verso]' +p321873 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321874 +sa(dp321875 +g291130 +S'pen and black ink on wove paper' +p321876 +sg291132 +S'unknown date\n' +p321877 +sg291134 +S'Woman Seated in a Rocker Outdoors, Reading' +p321878 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321879 +sa(dp321880 +g291130 +S'pen and black ink on wove paper' +p321881 +sg291132 +S'unknown date\n' +p321882 +sg291134 +S'Quarter-length Portrait of a Woman, Facing Front' +p321883 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321884 +sa(dp321885 +g291130 +S'pen and black ink on wove paper' +p321886 +sg291132 +S'unknown date\n' +p321887 +sg291134 +S'Woman Wearing Hat, Seated with Other Figures' +p321888 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321889 +sa(dp321890 +g291130 +S'(drawing)' +p321891 +sg291132 +S'unknown date\n' +p321892 +sg291134 +S'Woman Seated at a Table' +p321893 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321894 +sa(dp321895 +g291130 +S'pen and black ink on wove paper' +p321896 +sg291132 +S'unknown date\n' +p321897 +sg291134 +S'Outdoor Scene with Canoes on Shore' +p321898 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321899 +sa(dp321900 +g291130 +S'(drawing)' +p321901 +sg291132 +S'unknown date\n' +p321902 +sg291134 +S'Woman Seated in a Rocker, Sewing' +p321903 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321904 +sa(dp321905 +g291130 +S'pen and ink on wove paper' +p321906 +sg291132 +S'mid-1930s' +p321907 +sg291134 +S'Woman Seated on a Balcony' +p321908 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321909 +sa(dp321910 +g291130 +S'pen and black ink on wove paper' +p321911 +sg291132 +S'unknown date\n' +p321912 +sg291134 +S'Vase of Flowers with Window View Behind' +p321913 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321914 +sa(dp321915 +g291130 +S'pen and black ink on wove paper' +p321916 +sg291132 +S'unknown date\n' +p321917 +sg291134 +S'Study of Wooded Area' +p321918 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321919 +sa(dp321920 +g291130 +S'graphite on wove paper' +p321921 +sg291132 +S'unknown date\n' +p321922 +sg291134 +S'Boats at a Pier' +p321923 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321924 +sa(dp321925 +g291130 +S'watercolor over graphite on wove paper' +p321926 +sg291132 +S'unknown date\n' +p321927 +sg291134 +S'Alligators in a Pool' +p321928 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321929 +sa(dp321930 +g291130 +S'(drawing)' +p321931 +sg291132 +S'unknown date\n' +p321932 +sg291134 +S'Two Standing Figures' +p321933 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321934 +sa(dp321935 +g291130 +S'(drawing)' +p321936 +sg291132 +S'unknown date\n' +p321937 +sg291134 +S'(Untitled)' +p321938 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321939 +sa(dp321940 +g291130 +S'(drawing)' +p321941 +sg291132 +S'unknown date\n' +p321942 +sg291134 +S'(Untitled)' +p321943 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321944 +sa(dp321945 +g291130 +S'watercolor and gouache over graphite on wove paper' +p321946 +sg291132 +S'unknown date\n' +p321947 +sg291134 +S'Bust of a Woman [recto]' +p321948 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321949 +sa(dp321950 +g291130 +S'graphite on wove paper' +p321951 +sg291132 +S'unknown date\n' +p321952 +sg291134 +S'(Untitled) [verso]' +p321953 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321954 +sa(dp321955 +g291130 +S'watercolor on wove paper' +p321956 +sg291132 +S'unknown date\n' +p321957 +sg291134 +S'Still Life [recto]' +p321958 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321959 +sa(dp321960 +g291130 +S'watercolor on wove paper' +p321961 +sg291132 +S'unknown date\n' +p321962 +sg291134 +S'(Untitled) [verso]' +p321963 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321964 +sa(dp321965 +g291130 +S'graphite on wove paper' +p321966 +sg291132 +S'unknown date\n' +p321967 +sg291134 +S"Sketch of a Woman's Face and a Leaf [recto]" +p321968 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321969 +sa(dp321970 +g291130 +S'pen and black ink on wove paper' +p321971 +sg291132 +S'unknown date\n' +p321972 +sg291134 +S'Untitled [verso]' +p321973 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321974 +sa(dp321975 +g291130 +S'pen and black ink on wove paper' +p321976 +sg291132 +S'unknown date\n' +p321977 +sg291134 +S'Woman Reclining on Floor, Pointing at Paper' +p321978 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321979 +sa(dp321980 +g291130 +S'pen and black ink on wove paper' +p321981 +sg291132 +S'unknown date\n' +p321982 +sg291134 +S'Sketch of Rocks(?)' +p321983 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321984 +sa(dp321985 +g291130 +S'pen and black ink on wove paper' +p321986 +sg291132 +S'unknown date\n' +p321987 +sg291134 +S'Ivy on a Trellis' +p321988 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321989 +sa(dp321990 +g291130 +S'pen and black ink on wove paper' +p321991 +sg291132 +S'unknown date\n' +p321992 +sg291134 +S'Two Figures Sunbathing on Waterside Dock' +p321993 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321994 +sa(dp321995 +g291130 +S'pen and black ink on wove paper' +p321996 +sg291132 +S'unknown date\n' +p321997 +sg291134 +S'Two Boats' +p321998 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p321999 +sa(dp322000 +g291130 +S'pen and black ink on wove paper' +p322001 +sg291132 +S'unknown date\n' +p322002 +sg291134 +S'Two Figures under Cover, Outdoors' +p322003 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322004 +sa(dp322005 +g291130 +S'pen and black ink on wove paper' +p322006 +sg291132 +S'unknown date\n' +p322007 +sg291134 +S'Woman with Hat Standing in an Interior, Turned to the Left' +p322008 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322009 +sa(dp322010 +g291130 +S'(drawing)' +p322011 +sg291132 +S'unknown date\n' +p322012 +sg291134 +S'Landscape with Trees' +p322013 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322014 +sa(dp322015 +g291130 +S'pen and black ink on wove paper' +p322016 +sg291132 +S'unknown date\n' +p322017 +sg291134 +S'Sketch of Plants' +p322018 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322019 +sa(dp322020 +g291130 +S'pen and black ink on wove paper' +p322021 +sg291132 +S'unknown date\n' +p322022 +sg291134 +S'Still Life with a Bowl of Fruit' +p322023 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322024 +sa(dp322025 +g291130 +S'pen and black ink on wove paper' +p322026 +sg291132 +S'unknown date\n' +p322027 +sg291134 +S'Still Life with Hat on Dresser Shelf' +p322028 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322029 +sa(dp322030 +g291130 +S'pen and black ink on wove paper' +p322031 +sg291132 +S'unknown date\n' +p322032 +sg291134 +S'Standing Woman Looking Out of a Window with Right Hand Raised' +p322033 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322034 +sa(dp322035 +g291130 +S'pen and black ink on wove paper' +p322036 +sg291132 +S'unknown date\n' +p322037 +sg291134 +S'Outdoor Scene with Picket Fence' +p322038 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322039 +sa(dp322040 +g291130 +S'pen and black ink on wove paper' +p322041 +sg291132 +S'1937/1938' +p322042 +sg291134 +S'Untitled (Interior with Standing Woman)' +p322043 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322044 +sa(dp322045 +g291130 +S'graphite on wove paper' +p322046 +sg291132 +S'unknown date\n' +p322047 +sg291134 +S'Trees Near Stone Wall and Shed' +p322048 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322049 +sa(dp322050 +g291130 +S'pen and black ink on wove paper' +p322051 +sg291132 +S'unknown date\n' +p322052 +sg291134 +S'Seated Woman in Striped Shirt Holding Pad of Paper' +p322053 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322054 +sa(dp322055 +g291130 +S'graphite on wove paper' +p322056 +sg291132 +S'unknown date\n' +p322057 +sg291134 +S'Untitled' +p322058 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322059 +sa(dp322060 +g291130 +S'graphite on wove paper' +p322061 +sg291132 +S'unknown date\n' +p322062 +sg291134 +S'Nude Standing before a Table, Plant to the Right' +p322063 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322064 +sa(dp322065 +g291130 +S'graphite on wove paper' +p322066 +sg291132 +S'unknown date\n' +p322067 +sg291134 +S'Figure Standing at a Table with Plant' +p322068 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322069 +sa(dp322070 +g291130 +S'graphite on wove paper' +p322071 +sg291132 +S'unknown date\n' +p322072 +sg291134 +S'Untitled' +p322073 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322074 +sa(dp322075 +g291130 +S'graphite on wove paper' +p322076 +sg291132 +S'unknown date\n' +p322077 +sg291134 +S'Half-Length Portrait of a Woman Wearing a Hat' +p322078 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322079 +sa(dp322080 +g291130 +S'graphite on wove paper' +p322081 +sg291132 +S'unknown date\n' +p322082 +sg291134 +S'Untitled' +p322083 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322084 +sa(dp322085 +g291130 +S'graphite on wove paper' +p322086 +sg291132 +S'unknown date\n' +p322087 +sg291134 +S'Grassy Peninsula with City Seen Across River' +p322088 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322089 +sa(dp322090 +g291130 +S'pen and black ink on wove paper' +p322091 +sg291132 +S'unknown date\n' +p322092 +sg291134 +S'Woman Turned to the Right, Standing before a Table with a Bowl of Fruit' +p322093 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322094 +sa(dp322095 +g291130 +S'pen and black ink on wove paper' +p322096 +sg291132 +S'unknown date\n' +p322097 +sg291134 +S'Woman Outdoors, Standing between a Tree and a Building' +p322098 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322099 +sa(dp322100 +g291130 +S'pen and black ink on wove paper' +p322101 +sg291132 +S'unknown date\n' +p322102 +sg291134 +S'Vase of Flowers' +p322103 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322104 +sa(dp322105 +g291130 +S'pen and black ink on wove paper' +p322106 +sg291132 +S'c. 1937' +p322107 +sg291134 +S'Head of a Male, with Mustache and Glasses' +p322108 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322109 +sa(dp322110 +g291130 +S'pen and black ink on wove paper' +p322111 +sg291132 +S'unknown date\n' +p322112 +sg291134 +S'Mountainous Landscape' +p322113 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322114 +sa(dp322115 +g291130 +S'pen and black ink on wove paper' +p322116 +sg291132 +S'unknown date\n' +p322117 +sg291134 +S'Boats on Shore and Docked at a Pier' +p322118 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322119 +sa(dp322120 +g291130 +S'graphite on wove paper' +p322121 +sg291132 +S'unknown date\n' +p322122 +sg291134 +S'Seated Woman, Bare Breasted with Left Arm Raised' +p322123 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322124 +sa(dp322125 +g291130 +S'pen and black ink and graphite on tan wove paper' +p322126 +sg291132 +S'unknown date\n' +p322127 +sg291134 +S'Standing Woman Looking Out Window, Next to Table with Fruit' +p322128 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322129 +sa(dp322130 +g291130 +S'brush and black ink on wove paper' +p322131 +sg291132 +S'unknown date\n' +p322132 +sg291134 +S'Two Women Seated at Round Table [recto]' +p322133 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322134 +sa(dp322135 +g291130 +S'pen and black ink on wove paper' +p322136 +sg291132 +S'unknown date\n' +p322137 +sg291134 +S'Standing Male Figure [verso]' +p322138 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322139 +sa(dp322140 +g291130 +S'watercolor on wove paper' +p322141 +sg291132 +S'unknown date\n' +p322142 +sg291134 +S'Paris Street Scene with Arch at Left' +p322143 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322144 +sa(dp322145 +g291130 +S'watercolor on wove paper' +p322146 +sg291132 +S'unknown date\n' +p322147 +sg291134 +S'Portrait Head of a Woman with Brown Hair' +p322148 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322149 +sa(dp322150 +g291130 +S'pen and black ink on wove paper' +p322151 +sg291132 +S'unknown date\n' +p322152 +sg291134 +S'Couple Seated on Bench' +p322153 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322154 +sa(dp322155 +g291130 +S'pen and black ink on wove paper' +p322156 +sg291132 +S'unknown date\n' +p322157 +sg291134 +S'Woman Seated in Armchair, Right Hand on Armrest, Left Hand in Lap' +p322158 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322159 +sa(dp322160 +g291130 +S'(drawing)' +p322161 +sg291132 +S'unknown date\n' +p322162 +sg291134 +S'Seated Man with Left Arm on Table' +p322163 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322164 +sa(dp322165 +g291130 +S'pen and black ink on wove paper' +p322166 +sg291132 +S'unknown date\n' +p322167 +sg291134 +S'Portrait Head of a Man Looking Left' +p322168 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322169 +sa(dp322170 +g291130 +S'pen and black ink on wove paper' +p322171 +sg291132 +S'unknown date\n' +p322172 +sg291134 +S'Bust Length Portrait of Woman in Arm Chair' +p322173 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322174 +sa(dp322175 +g291130 +S'pen and black ink on wove paper' +p322176 +sg291132 +S'unknown date\n' +p322177 +sg291134 +S'Abstraction' +p322178 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322179 +sa(dp322180 +g291130 +S'graphite on wove paper' +p322181 +sg291132 +S'unknown date\n' +p322182 +sg291134 +S'Two Heads, One with Hat, and Small Boat at Dock [recto]' +p322183 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322184 +sa(dp322185 +g291130 +S'graphite on wove paper' +p322186 +sg291132 +S'unknown date\n' +p322187 +sg291134 +S'Untitled [verso]' +p322188 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322189 +sa(dp322190 +g291130 +S'pen and black ink on wove paper' +p322191 +sg291132 +S'unknown date\n' +p322192 +sg291134 +S'Two Small Boats Docked, and Sketch of a Small Boat' +p322193 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322194 +sa(dp322195 +g291130 +S'pen and black ink on wove paper' +p322196 +sg291132 +S'unknown date\n' +p322197 +sg291134 +S'Two Abstract Figures Entwined' +p322198 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322199 +sa(dp322200 +g291130 +S'(drawing)' +p322201 +sg291132 +S'unknown date\n' +p322202 +sg291134 +S'Abstract Composition of Arms, Legs and Heads' +p322203 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322204 +sa(dp322205 +g291130 +S'pen and black ink on wove paper' +p322206 +sg291132 +S'unknown date\n' +p322207 +sg291134 +S'Two-headed Abstract Figure' +p322208 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322209 +sa(dp322210 +g291130 +S'pen and black ink on wove paper' +p322211 +sg291132 +S'unknown date\n' +p322212 +sg291134 +S'(Untitled) [recto]' +p322213 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322214 +sa(dp322215 +g291130 +S'pen and black ink on wove paper' +p322216 +sg291132 +S'unknown date\n' +p322217 +sg291134 +S'(Untitled) [verso]' +p322218 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322219 +sa(dp322220 +g291130 +S'pen and black ink on wove paper' +p322221 +sg291132 +S'unknown date\n' +p322222 +sg291134 +S'Figure Studies (Crucifixions)' +p322223 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322224 +sa(dp322225 +g291130 +S'pen and black ink on wove paper' +p322226 +sg291132 +S'unknown date\n' +p322227 +sg291134 +S'Untitled' +p322228 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322229 +sa(dp322230 +g291130 +S'graphite on wove paper' +p322231 +sg291132 +S'unknown date\n' +p322232 +sg291134 +S'Untitled' +p322233 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322234 +sa(dp322235 +g291130 +S'watercolor on wove paper' +p322236 +sg291132 +S'unknown date\n' +p322237 +sg291134 +S'Mountains and Lake [recto]' +p322238 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322239 +sa(dp322240 +g291130 +S'watercolor on wove paper' +p322241 +sg291132 +S'unknown date\n' +p322242 +sg291134 +S'Untitled [verso]' +p322243 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322244 +sa(dp322245 +g291130 +S'(drawing)' +p322246 +sg291132 +S'unknown date\n' +p322247 +sg291134 +S'Seated Nude with Head Turned Right [recto]' +p322248 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322249 +sa(dp322250 +g291130 +S'(drawing)' +p322251 +sg291132 +S'unknown date\n' +p322252 +sg291134 +S'Study of Head Facing Right [verso]' +p322253 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322254 +sa(dp322255 +g291130 +S'(drawing)' +p322256 +sg291132 +S'unknown date\n' +p322257 +sg291134 +S'Female Nude Standing with Arms Above Head' +p322258 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322259 +sa(dp322260 +g291130 +S'graphite on wove paper' +p322261 +sg291132 +S'unknown date\n' +p322262 +sg291134 +S'Seated Female Nude, Torso Twisted to Right, Leaning on Fists' +p322263 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322264 +sa(dp322265 +g291130 +S'graphite on wove paper' +p322266 +sg291132 +S'unknown date\n' +p322267 +sg291134 +S'Reclining Female, Leaning on Left Elbow' +p322268 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322269 +sa(dp322270 +g291130 +S'pen and black ink on wove paper' +p322271 +sg291132 +S'unknown date\n' +p322272 +sg291134 +S'Reclining Female Nude, Legs Bent, Head Leaning on Right Hand' +p322273 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322274 +sa(dp322275 +g291130 +S'pen and black ink on wove paper' +p322276 +sg291132 +S'unknown date\n' +p322277 +sg291134 +S'Woman Seated with Pad in Lap and Holding Paper in Each Hand' +p322278 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322279 +sa(dp322280 +g291130 +S'brush and black ink on textured wove paper' +p322281 +sg291132 +S'unknown date\n' +p322282 +sg291134 +S'Long-haired Woman Seated with Left Leg Crossed and Hands on Ankle' +p322283 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322284 +sa(dp322285 +g291130 +S'(drawing)' +p322286 +sg291132 +S'unknown date\n' +p322287 +sg291134 +S'Man Wearing Glasses, Smoking a Pipe' +p322288 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322289 +sa(dp322290 +g291130 +S'brush and black ink on textured wove paper' +p322291 +sg291132 +S'unknown date\n' +p322292 +sg291134 +S'Seated Woman with Left Leg Tucked Under and Head Resting on Left Arm' +p322293 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322294 +sa(dp322295 +g291130 +S'brush and black ink on textured wove paper' +p322296 +sg291132 +S'unknown date\n' +p322297 +sg291134 +S'Wooded Pathway' +p322298 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322299 +sa(dp322300 +g291130 +S'(drawing)' +p322301 +sg291132 +S'unknown date\n' +p322302 +sg291134 +S'Woman Playing the Piano' +p322303 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322304 +sa(dp322305 +g291130 +S'(drawing)' +p322306 +sg291132 +S'unknown date\n' +p322307 +sg291134 +S'(Untitled)' +p322308 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322309 +sa(dp322310 +g291130 +S'brush and black ink on textured wove paper' +p322311 +sg291132 +S'unknown date\n' +p322312 +sg291134 +S'Bust Length Portrait of a Young Girl [recto]' +p322313 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322314 +sa(dp322315 +g291130 +S'graphite on textured wove paper' +p322316 +sg291132 +S'unknown date\n' +p322317 +sg291134 +S'Seated Figure with Hands Clasped [verso]' +p322318 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322319 +sa(dp322320 +g291130 +S'brush and black ink with gouache on textured wove paper' +p322321 +sg291132 +S'unknown date\n' +p322322 +sg291134 +S'Seated Figure in Armchair with Hands in Lap' +p322323 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322324 +sa(dp322325 +g291130 +S'(drawing)' +p322326 +sg291132 +S'unknown date\n' +p322327 +sg291134 +S'View of a Harbor with Factories' +p322328 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322329 +sa(dp322330 +g291130 +S'(drawing)' +p322331 +sg291132 +S'unknown date\n' +p322332 +sg291134 +S'Landscape with Trees' +p322333 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322334 +sa(dp322335 +g291130 +S'pen and black ink on wove paper' +p322336 +sg291132 +S'unknown date\n' +p322337 +sg291134 +S'Half-Length Woman Reclining, Looking Right' +p322338 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322339 +sa(dp322340 +g291130 +S'pen and black ink on wove paper' +p322341 +sg291132 +S'unknown date\n' +p322342 +sg291134 +S'Woman Seated on Rocking Chair with Puppy in Lap' +p322343 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322344 +sa(dp322345 +g291130 +S'pen and black ink on wove paper' +p322346 +sg291132 +S'unknown date\n' +p322347 +sg291134 +S'Reading Woman in Chair with Right Hand near Mouth' +p322348 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322349 +sa(dp322350 +g291130 +S'pen and black ink on wove paper' +p322351 +sg291132 +S'unknown date\n' +p322352 +sg291134 +S'Three Figures, One Smoking a Pipe' +p322353 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322354 +sa(dp322355 +g291130 +S'pen and ink and graphite on wove paper' +p322356 +sg291132 +S'1961' +p322357 +sg291134 +S'Untitled' +p322358 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322359 +sa(dp322360 +g291130 +S'pen and ink and watercolor on wove paper' +p322361 +sg291132 +S'c. 1961' +p322362 +sg291134 +S'Untitled (Sketch for Harvard Mural)' +p322363 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322364 +sa(dp322365 +g291130 +S'pen and black ink on wove paper' +p322366 +sg291132 +S'unknown date\n' +p322367 +sg291134 +S'Seated Man in Overcoat and Hat, with Hands Clasped' +p322368 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322369 +sa(dp322370 +g291130 +S'pen and black ink on wove paper' +p322371 +sg291132 +S'unknown date\n' +p322372 +sg291134 +S'Bust-length Sketch of Man in Overcoat and Hat' +p322373 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322374 +sa(dp322375 +g291130 +S'pen and black ink on wove paper' +p322376 +sg291132 +S'unknown date\n' +p322377 +sg291134 +S'Seated Man with Arms and Legs Crossed' +p322378 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322379 +sa(dp322380 +g291130 +S'pen and black ink on wove paper' +p322381 +sg291132 +S'unknown date\n' +p322382 +sg291134 +S'Bust-length sketch of Young Woman Resting Chin on Left Hand, in Profile' +p322383 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322384 +sa(dp322385 +g291130 +S'pen and black ink on wove paper' +p322386 +sg291132 +S'unknown date\n' +p322387 +sg291134 +S'Three-quarters View of Gentleman in Overcoat and Hat, Looking Right' +p322388 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322389 +sa(dp322390 +g291130 +S'pen and black ink on wove paper' +p322391 +sg291132 +S'unknown date\n' +p322392 +sg291134 +S'Bust-length Sketch of Woman in Fancy Hat with Bow' +p322393 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322394 +sa(dp322395 +g291130 +S'pen and black ink on wove paper' +p322396 +sg291132 +S'unknown date\n' +p322397 +sg291134 +S'Bust-length Sketch of Woman in Coat and Scarf' +p322398 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322399 +sa(dp322400 +g291130 +S'pen and black ink on wove paper' +p322401 +sg291132 +S'unknown date\n' +p322402 +sg291134 +S'Seated Woman in Profile with Hands Clasped in Lap' +p322403 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322404 +sa(dp322405 +g291130 +S'pen and black ink on wove paper' +p322406 +sg291132 +S'unknown date\n' +p322407 +sg291134 +S'Seated Man in Overcoat and Hat, Right Hand Pointing' +p322408 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322409 +sa(dp322410 +g291130 +S'(drawing)' +p322411 +sg291132 +S'unknown date\n' +p322412 +sg291134 +S'Still Life' +p322413 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322414 +sa(dp322415 +g291130 +S'pen and black ink on wove paper' +p322416 +sg291132 +S'unknown date\n' +p322417 +sg291134 +S'Seated Figure, Arms Crossed, Left Hand Tucked under Chin' +p322418 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322419 +sa(dp322420 +g291130 +S'pen and black ink on wove paper' +p322421 +sg291132 +S'unknown date\n' +p322422 +sg291134 +S'Bust of Woman with Hat, Face in Profile to Right' +p322423 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322424 +sa(dp322425 +g291130 +S'pen and black ink on wove paper' +p322426 +sg291132 +S'unknown date\n' +p322427 +sg291134 +S'Seated Woman in Hat, Facing Left in Profile' +p322428 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322429 +sa(dp322430 +g291130 +S'pen and black ink on wove paper' +p322431 +sg291132 +S'unknown date\n' +p322432 +sg291134 +S'Seated Man in Overcoat and Hat Reading Book in Lap' +p322433 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322434 +sa(dp322435 +g291130 +S'pen and black ink on wove paper' +p322436 +sg291132 +S'unknown date\n' +p322437 +sg291134 +S'Seated Headless Figure with Hands Crossed in Lap' +p322438 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322439 +sa(dp322440 +g291130 +S'(drawing)' +p322441 +sg291132 +S'unknown date\n' +p322442 +sg291134 +S'Seated Woman Wearing a Hat, Turned to Right' +p322443 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322444 +sa(dp322445 +g291130 +S'pen and black ink on wove paper' +p322446 +sg291132 +S'unknown date\n' +p322447 +sg291134 +S'Seated Woman with Hat, Holding Purse in Lap' +p322448 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322449 +sa(dp322450 +g291130 +S'pen and black ink on wove paper' +p322451 +sg291132 +S'unknown date\n' +p322452 +sg291134 +S'Still Life on Table, Bottle and Vase' +p322453 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322454 +sa(dp322455 +g291130 +S'pen and black ink on wove paper' +p322456 +sg291132 +S'unknown date\n' +p322457 +sg291134 +S'Two Seated Female Figures with Hats, Right Figure in Profile to Left' +p322458 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322459 +sa(dp322460 +g291130 +S'(drawing)' +p322461 +sg291132 +S'unknown date\n' +p322462 +sg291134 +S'Seated Figure with Elbows on Table' +p322463 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322464 +sa(dp322465 +g291130 +S'pen and black ink on wove paper' +p322466 +sg291132 +S'unknown date\n' +p322467 +sg291134 +S'Woman in Dress Seated on Armchair with Left Arm Raised' +p322468 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322469 +sa(dp322470 +g291130 +S'pen and black ink on wove paper' +p322471 +sg291132 +S'unknown date\n' +p322472 +sg291134 +S'Seated Figure with Legs and Hands Crossed' +p322473 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322474 +sa(dp322475 +g291130 +S'pen and black ink on wove paper' +p322476 +sg291132 +S'unknown date\n' +p322477 +sg291134 +S'Seated Man in Coat and Hat, Legs and Hands Crossed' +p322478 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322479 +sa(dp322480 +g291130 +S'pen and black ink on wove paper' +p322481 +sg291132 +S'unknown date\n' +p322482 +sg291134 +S'Standing Female Nude in Contraposto Stance with Hands Behind Head' +p322483 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322484 +sa(dp322485 +g291130 +S'(drawing)' +p322486 +sg291132 +S'unknown date\n' +p322487 +sg291134 +S'Figure in a Landscape' +p322488 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322489 +sa(dp322490 +g291130 +S'(drawing)' +p322491 +sg291132 +S'unknown date\n' +p322492 +sg291134 +S'Studies of Still Lifes' +p322493 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322494 +sa(dp322495 +g291130 +S'pen and black ink on wove paper' +p322496 +sg291132 +S'unknown date\n' +p322497 +sg291134 +S'Standing Female Nude, Leaning against Wall with Hands Clasped and Raised' +p322498 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322499 +sa(dp322500 +g291130 +S'pen and black ink on wove paper' +p322501 +sg291132 +S'unknown date\n' +p322502 +sg291134 +S'Seated Female on Couch Knitting (?)' +p322503 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322504 +sa(dp322505 +g291130 +S'pen and black ink and graphite on wove paper' +p322506 +sg291132 +S'unknown date\n' +p322507 +sg291134 +S'Standing Female Nude, Back Turned, Looking to Right' +p322508 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322509 +sa(dp322510 +g291130 +S'pen and black ink on wove paper' +p322511 +sg291132 +S'unknown date\n' +p322512 +sg291134 +S'Standing Female Nude, Right Knee and Left Arm Bent, Three-quarters View to Right' +p322513 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322514 +sa(dp322515 +g291130 +S'pen and black ink on wove paper' +p322516 +sg291132 +S'unknown date\n' +p322517 +sg291134 +S'Seated Female Nude, Crossed Arms Resting on Knees' +p322518 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322519 +sa(dp322520 +g291130 +S'pen and black ink on wove paper' +p322521 +sg291132 +S'unknown date\n' +p322522 +sg291134 +S'Reclining Female Nude Resting on Right Elbow, Legs Crossed' +p322523 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322524 +sa(dp322525 +g291130 +S'pen and black ink on wove paper' +p322526 +sg291132 +S'unknown date\n' +p322527 +sg291134 +S'Standing Female Nude Gazing Down, Hands Clasped Behind Back' +p322528 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322529 +sa(dp322530 +g291130 +S'(drawing)' +p322531 +sg291132 +S'unknown date\n' +p322532 +sg291134 +S'Reclining Female Nude' +p322533 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322534 +sa(dp322535 +g291130 +S'pen and black ink on wove paper' +p322536 +sg291132 +S'unknown date\n' +p322537 +sg291134 +S'Grove of Trees [recto]' +p322538 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322539 +sa(dp322540 +g291130 +S'pen and black ink on wove paper' +p322541 +sg291132 +S'unknown date\n' +p322542 +sg291134 +S'Untitled [verso]' +p322543 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322544 +sa(dp322545 +g291130 +S'pen and black ink on wove paper' +p322546 +sg291132 +S'unknown date\n' +p322547 +sg291134 +S'Reclining Female Nude, Right Hand Resting on Stomach, Left Foot Tucked Under Right Knee' +p322548 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322549 +sa(dp322550 +g291130 +S'pen and black ink on wove paper' +p322551 +sg291132 +S'unknown date\n' +p322552 +sg291134 +S'Seated Female with Hat, Shirt Draped on Shoulders, Hugging Right Knee' +p322553 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322554 +sa(dp322555 +g291130 +S'pen and black ink on wove paper' +p322556 +sg291132 +S'unknown date\n' +p322557 +sg291134 +S'Standing Female Nude Seen from Behind in Three-Quarters View, Left Hand at Chin' +p322558 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322559 +sa(dp322560 +g291130 +S'pen and black ink on wove paper' +p322561 +sg291132 +S'unknown date\n' +p322562 +sg291134 +S'Seated Boy in Armchair, Chin Resting on Right Hand' +p322563 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322564 +sa(dp322565 +g291130 +S'pen and black ink on wove paper' +p322566 +sg291132 +S'unknown date\n' +p322567 +sg291134 +S'Seated Female Nude, Right Hand on Right Thigh, Frontal View' +p322568 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322569 +sa(dp322570 +g291130 +S'(drawing)' +p322571 +sg291132 +S'unknown date\n' +p322572 +sg291134 +S'Portrait of a Woman' +p322573 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322574 +sa(dp322575 +g291130 +S'brush and black ink on wove paper' +p322576 +sg291132 +S'unknown date\n' +p322577 +sg291134 +S'Seated Boy in Armchair, Hands Clasped on Stomach, Left Leg Crossed over Right Leg' +p322578 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322579 +sa(dp322580 +g291130 +S'(drawing)' +p322581 +sg291132 +S'unknown date\n' +p322582 +sg291134 +S'Seated Man Wearing a Jacket' +p322583 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322584 +sa(dp322585 +g291130 +S'brush and black ink on wove paper' +p322586 +sg291132 +S'unknown date\n' +p322587 +sg291134 +S'Bust-length Portrait of Bearded Man, Chin Resting on Right Hand' +p322588 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322589 +sa(dp322590 +g291130 +S'pen and black ink on wove paper' +p322591 +sg291132 +S'unknown date\n' +p322592 +sg291134 +S'Seated Female Nude, Half-Length, Arms Folded, Right Hand Holding Left Elbow' +p322593 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322594 +sa(dp322595 +g291130 +S'graphite on wove paper' +p322596 +sg291132 +S'unknown date\n' +p322597 +sg291134 +S'Standing Female Nude, Right Knee Raised, in Profile to Right' +p322598 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322599 +sa(dp322600 +g291130 +S'(drawing)' +p322601 +sg291132 +S'unknown date\n' +p322602 +sg291134 +S'Standing Female Nude with Hands on Hips' +p322603 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322604 +sa(dp322605 +g291130 +S'graphite on wove paper' +p322606 +sg291132 +S'unknown date\n' +p322607 +sg291134 +S'Caricature Head of Man with Mustache [recto]' +p322608 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322609 +sa(dp322610 +g291130 +S'graphite on wove paper' +p322611 +sg291132 +S'unknown date\n' +p322612 +sg291134 +S'Four Studies of Heads [verso]' +p322613 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322614 +sa(dp322615 +g291130 +S'(drawing)' +p322616 +sg291132 +S'unknown date\n' +p322617 +sg291134 +S'Standing Female Nude Facing Left [recto]' +p322618 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322619 +sa(dp322620 +g291130 +S'(drawing)' +p322621 +sg291132 +S'unknown date\n' +p322622 +sg291134 +S'Study of Standing Female Nude [verso]' +p322623 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322624 +sa(dp322625 +g291130 +S'graphite on wove paper' +p322626 +sg291132 +S'unknown date\n' +p322627 +sg291134 +S'Standing Female Nude, Feet Apart, Right Arm Raised in Fist' +p322628 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322629 +sa(dp322630 +g291130 +S'graphite on wove paper' +p322631 +sg291132 +S'unknown date\n' +p322632 +sg291134 +S'Standing Female Nude, Eyes Cast Down to Left' +p322633 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322634 +sa(dp322635 +g291130 +S'graphite on wove paper' +p322636 +sg291132 +S'unknown date\n' +p322637 +sg291134 +S'Rear View of Standing Female Nude, Right Arm Bent, Looking Left' +p322638 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322639 +sa(dp322640 +g291130 +S'(drawing)' +p322641 +sg291132 +S'unknown date\n' +p322642 +sg291134 +S'Female Nude Seated in a Chair' +p322643 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322644 +sa(dp322645 +g291130 +S'pen and black ink on wove paper' +p322646 +sg291132 +S'unknown date\n' +p322647 +sg291134 +S'Seated Female Nude, Legs Spread, Hands on Chair Seat' +p322648 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322649 +sa(dp322650 +g291130 +S'pen and black ink on wove paper' +p322651 +sg291132 +S'unknown date\n' +p322652 +sg291134 +S'Rear View of Reclining Female Nude, Leaning on Left Elbow' +p322653 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322654 +sa(dp322655 +g291130 +S'pen and black ink on wove paper' +p322656 +sg291132 +S'unknown date\n' +p322657 +sg291134 +S'Crouching Female Nude Seen from Behind, Face Looking Down to Right' +p322658 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322659 +sa(dp322660 +g291130 +S'pen and black ink on wove paper' +p322661 +sg291132 +S'unknown date\n' +p322662 +sg291134 +S'Standing Female Nude, Arms Behind Back, Gazing Down to Right' +p322663 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322664 +sa(dp322665 +g291130 +S'pen and black ink on wove paper' +p322666 +sg291132 +S'unknown date\n' +p322667 +sg291134 +S'Female Nude Standing on Carpet, Hands Behind Head' +p322668 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322669 +sa(dp322670 +g291130 +S'pen and black ink on wove paper' +p322671 +sg291132 +S'unknown date\n' +p322672 +sg291134 +S'Reclining Female Nude, Ankles Crossed, Hands on Hips' +p322673 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322674 +sa(dp322675 +g291130 +S'graphite on wove paper' +p322676 +sg291132 +S'unknown date\n' +p322677 +sg291134 +S'Three Women Seated on a Bench' +p322678 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322679 +sa(dp322680 +g291130 +S'graphite on wove paper' +p322681 +sg291132 +S'unknown date\n' +p322682 +sg291134 +S'Figure in Coat Seen from Behind, Looking Back to Left' +p322683 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322684 +sa(dp322685 +g291130 +S'pen and black ink on wove paper' +p322686 +sg291132 +S'unknown date\n' +p322687 +sg291134 +S'Bust-length Portrait of Woman in Profile to Left' +p322688 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322689 +sa(dp322690 +g291130 +S'pen and black ink on wove paper' +p322691 +sg291132 +S'unknown date\n' +p322692 +sg291134 +S'Young Girl Seated on Armchair, Leaning on Left Elbow' +p322693 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322694 +sa(dp322695 +g291130 +S'(drawing)' +p322696 +sg291132 +S'unknown date\n' +p322697 +sg291134 +S'Landscape with Trees' +p322698 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322699 +sa(dp322700 +g291130 +S'(drawing)' +p322701 +sg291132 +S'unknown date\n' +p322702 +sg291134 +S'Two Women' +p322703 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322704 +sa(dp322705 +g291130 +S'(drawing)' +p322706 +sg291132 +S'unknown date\n' +p322707 +sg291134 +S'Seated Woman' +p322708 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322709 +sa(dp322710 +g291130 +S'(drawing)' +p322711 +sg291132 +S'unknown date\n' +p322712 +sg291134 +S'Three Seated Figures' +p322713 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322714 +sa(dp322715 +g291130 +S'(drawing)' +p322716 +sg291132 +S'unknown date\n' +p322717 +sg291134 +S'Standing Nude Facing Right, Arms Folded on Top of Head' +p322718 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322719 +sa(dp322720 +g291130 +S'(drawing)' +p322721 +sg291132 +S'unknown date\n' +p322722 +sg291134 +S'Standing Figure, Head Turned Left' +p322723 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322724 +sa(dp322725 +g291130 +S'(drawing)' +p322726 +sg291132 +S'unknown date\n' +p322727 +sg291134 +S'Rear View of Nude Figure' +p322728 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322729 +sa(dp322730 +g291130 +S'(drawing)' +p322731 +sg291132 +S'unknown date\n' +p322732 +sg291134 +S'Seated Female Nude Facing Right, Head Turned Left' +p322733 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322734 +sa(dp322735 +g291130 +S'(drawing)' +p322736 +sg291132 +S'unknown date\n' +p322737 +sg291134 +S'Abstraction' +p322738 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322739 +sa(dp322740 +g291130 +S'(drawing)' +p322741 +sg291132 +S'unknown date\n' +p322742 +sg291134 +S'Seated Woman with Head Resting in Hand' +p322743 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322744 +sa(dp322745 +g291130 +S'(drawing)' +p322746 +sg291132 +S'unknown date\n' +p322747 +sg291134 +S'Standing Female Nude Facing Left, Hands Clasped Behind Back' +p322748 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322749 +sa(dp322750 +g291130 +S'(drawing)' +p322751 +sg291132 +S'unknown date\n' +p322752 +sg291134 +S'Reclining Nude Leaning Left, Head Turned Right' +p322753 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322754 +sa(dp322755 +g291130 +S'(drawing)' +p322756 +sg291132 +S'unknown date\n' +p322757 +sg291134 +S'Standing Figure in a Long Dress, Left Hand on Hip' +p322758 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322759 +sa(dp322760 +g291130 +S'(drawing)' +p322761 +sg291132 +S'unknown date\n' +p322762 +sg291134 +S'Seated Nude, Head Turned Right, Hands on Ankles' +p322763 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322764 +sa(dp322765 +g291130 +S'(drawing)' +p322766 +sg291132 +S'unknown date\n' +p322767 +sg291134 +S'Nude Figure' +p322768 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322769 +sa(dp322770 +g291130 +S'(drawing)' +p322771 +sg291132 +S'unknown date\n' +p322772 +sg291134 +S'Seated Woman Wearing a Hat, Left Hand to Chin' +p322773 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322774 +sa(dp322775 +g291130 +S'(drawing)' +p322776 +sg291132 +S'unknown date\n' +p322777 +sg291134 +S'Standing Nude Looking Up, Left Hand at Chin' +p322778 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322779 +sa(dp322780 +g291130 +S'(drawing)' +p322781 +sg291132 +S'unknown date\n' +p322782 +sg291134 +S'Seated Woman, Hands Clasping Object in Lap' +p322783 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322784 +sa(dp322785 +g291130 +S'(drawing)' +p322786 +sg291132 +S'unknown date\n' +p322787 +sg291134 +S'Standing Nude Facing Left, Right Hand above Head' +p322788 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322789 +sa(dp322790 +g291130 +S'(drawing)' +p322791 +sg291132 +S'unknown date\n' +p322792 +sg291134 +S'Seated Nude Leaning Right' +p322793 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322794 +sa(dp322795 +g291130 +S'(drawing)' +p322796 +sg291132 +S'unknown date\n' +p322797 +sg291134 +S'Reclining Female Reading a Book, Head Resting on Hand' +p322798 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322799 +sa(dp322800 +g291130 +S'(drawing)' +p322801 +sg291132 +S'unknown date\n' +p322802 +sg291134 +S'Profile of a Woman Facing Right, Left Arm Extended' +p322803 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322804 +sa(dp322805 +g291130 +S'(drawing)' +p322806 +sg291132 +S'unknown date\n' +p322807 +sg291134 +S'Standing Woman Looking Down, Hands Clasped' +p322808 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322809 +sa(dp322810 +g291130 +S'(drawing)' +p322811 +sg291132 +S'unknown date\n' +p322812 +sg291134 +S'Seated Woman in Long Dress, Hands Clasped in Lap' +p322813 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322814 +sa(dp322815 +g291130 +S'(drawing)' +p322816 +sg291132 +S'unknown date\n' +p322817 +sg291134 +S'Seated Woman Reading' +p322818 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322819 +sa(dp322820 +g291130 +S'(drawing)' +p322821 +sg291132 +S'unknown date\n' +p322822 +sg291134 +S'Seated Woman, Head Turned Right' +p322823 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322824 +sa(dp322825 +g291130 +S'(drawing)' +p322826 +sg291132 +S'unknown date\n' +p322827 +sg291134 +S'Seated Figure with Right Ankle Crossed Over Left Knee' +p322828 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322829 +sa(dp322830 +g291130 +S'(drawing)' +p322831 +sg291132 +S'unknown date\n' +p322832 +sg291134 +S'Female Figure Seated in a Chair [recto]' +p322833 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322834 +sa(dp322835 +g291130 +S'(drawing)' +p322836 +sg291132 +S'unknown date\n' +p322837 +sg291134 +S'Landscape with Mountains [verso]' +p322838 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322839 +sa(dp322840 +g291130 +S'(drawing)' +p322841 +sg291132 +S'unknown date\n' +p322842 +sg291134 +S'Seated Figure Reading' +p322843 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322844 +sa(dp322845 +g291130 +S'(drawing)' +p322846 +sg291132 +S'unknown date\n' +p322847 +sg291134 +S'Reclining Figure with Arms Extended Over Head, Knees Bent' +p322848 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322849 +sa(dp322850 +g291130 +S'(drawing)' +p322851 +sg291132 +S'unknown date\n' +p322852 +sg291134 +S'Seated Figure Facing Right' +p322853 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322854 +sa(dp322855 +g291130 +S'(drawing)' +p322856 +sg291132 +S'unknown date\n' +p322857 +sg291134 +S'Woman Reclining, Hands Clasped on Stomach, Feet on Floor' +p322858 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322859 +sa(dp322860 +g291130 +S'(drawing)' +p322861 +sg291132 +S'unknown date\n' +p322862 +sg291134 +S'Woman Seated in Arm Chair' +p322863 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322864 +sa(dp322865 +g291130 +S'(drawing)' +p322866 +sg291132 +S'unknown date\n' +p322867 +sg291134 +S'Rear View of Standing Nude' +p322868 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322869 +sa(dp322870 +g291130 +S'(drawing)' +p322871 +sg291132 +S'unknown date\n' +p322872 +sg291134 +S'Seated Woman' +p322873 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322874 +sa(dp322875 +g291130 +S'(drawing)' +p322876 +sg291132 +S'unknown date\n' +p322877 +sg291134 +S'Woman Reclining, Knees Bent' +p322878 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322879 +sa(dp322880 +g291130 +S'(drawing)' +p322881 +sg291132 +S'unknown date\n' +p322882 +sg291134 +S'Woman Sitting in Chair with Hands Clasped in Front' +p322883 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322884 +sa(dp322885 +g291130 +S'(drawing)' +p322886 +sg291132 +S'unknown date\n' +p322887 +sg291134 +S'Still Life with Figure Studies' +p322888 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322889 +sa(dp322890 +g291130 +S'(drawing)' +p322891 +sg291132 +S'unknown date\n' +p322892 +sg291134 +S'Seated Girl' +p322893 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322894 +sa(dp322895 +g291130 +S'pen and black ink on wove paper' +p322896 +sg291132 +S'unknown date\n' +p322897 +sg291134 +S'Seated Figure Playing a Lute [recto]' +p322898 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322899 +sa(dp322900 +g291130 +S'graphite on wove paper' +p322901 +sg291132 +S'unknown date\n' +p322902 +sg291134 +S'Study of a Head [verso]' +p322903 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322904 +sa(dp322905 +g291130 +S'(drawing)' +p322906 +sg291132 +S'unknown date\n' +p322907 +sg291134 +S'Nude Woman Seated in a Chair' +p322908 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322909 +sa(dp322910 +g291130 +S'(drawing)' +p322911 +sg291132 +S'unknown date\n' +p322912 +sg291134 +S'Seated Female Figure with Arms Crossed [recto]' +p322913 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322914 +sa(dp322915 +g291130 +S'(drawing)' +p322916 +sg291132 +S'unknown date\n' +p322917 +sg291134 +S'Reclining Female Figure, Head Turned Left [verso]' +p322918 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322919 +sa(dp322920 +g291130 +S'(drawing)' +p322921 +sg291132 +S'unknown date\n' +p322922 +sg291134 +S'Seated Female Nude' +p322923 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322924 +sa(dp322925 +g291130 +S'(drawing)' +p322926 +sg291132 +S'unknown date\n' +p322927 +sg291134 +S'Studies of a Female Nude' +p322928 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322929 +sa(dp322930 +g291130 +S'(drawing)' +p322931 +sg291132 +S'unknown date\n' +p322932 +sg291134 +S'Seated Figure Reading' +p322933 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322934 +sa(dp322935 +g291130 +S'(drawing)' +p322936 +sg291132 +S'unknown date\n' +p322937 +sg291134 +S'Figure Facing Right [recto]' +p322938 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322939 +sa(dp322940 +g291130 +S'(drawing)' +p322941 +sg291132 +S'unknown date\n' +p322942 +sg291134 +S'Standing Man with Hand in Pocket [verso]' +p322943 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322944 +sa(dp322945 +g291130 +S'(drawing)' +p322946 +sg291132 +S'unknown date\n' +p322947 +sg291134 +S'Reclining Man [recto]' +p322948 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322949 +sa(dp322950 +g291130 +S'(drawing)' +p322951 +sg291132 +S'unknown date\n' +p322952 +sg291134 +S'Reclining Man [verso]' +p322953 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322954 +sa(dp322955 +g291130 +S'(drawing)' +p322956 +sg291132 +S'unknown date\n' +p322957 +sg291134 +S'Figure Playing a Lute' +p322958 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322959 +sa(dp322960 +g291130 +S'(drawing)' +p322961 +sg291132 +S'unknown date\n' +p322962 +sg291134 +S'Reclining Nude' +p322963 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322964 +sa(dp322965 +g291130 +S'(drawing)' +p322966 +sg291132 +S'unknown date\n' +p322967 +sg291134 +S'Young Boy Seated Facing Left' +p322968 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322969 +sa(dp322970 +g291130 +S'(drawing)' +p322971 +sg291132 +S'unknown date\n' +p322972 +sg291134 +S'Reclining Female Nude with Left Arm Above Head' +p322973 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322974 +sa(dp322975 +g291130 +S'(drawing)' +p322976 +sg291132 +S'unknown date\n' +p322977 +sg291134 +S'Two Seated Boys, One Plaing a Stringed Musical Instrument' +p322978 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322979 +sa(dp322980 +g291130 +S'(drawing)' +p322981 +sg291132 +S'unknown date\n' +p322982 +sg291134 +S'Female Nude Reclining' +p322983 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322984 +sa(dp322985 +g291130 +S'(drawing)' +p322986 +sg291132 +S'unknown date\n' +p322987 +sg291134 +S'Studies of a Seated Figure Using a Hammer' +p322988 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322989 +sa(dp322990 +g291130 +S'(drawing)' +p322991 +sg291132 +S'unknown date\n' +p322992 +sg291134 +S'Seated Woman Looking Right' +p322993 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322994 +sa(dp322995 +g291130 +S'(drawing)' +p322996 +sg291132 +S'unknown date\n' +p322997 +sg291134 +S'Two Seated Girls' +p322998 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p322999 +sa(dp323000 +g291130 +S'(drawing)' +p323001 +sg291132 +S'unknown date\n' +p323002 +sg291134 +S'Seated Female with Hands Clasped in Lap' +p323003 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323004 +sa(dp323005 +g291130 +S'(drawing)' +p323006 +sg291132 +S'unknown date\n' +p323007 +sg291134 +S'Seated Figure Playing a Lute' +p323008 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323009 +sa(dp323010 +g291130 +S'(drawing)' +p323011 +sg291132 +S'unknown date\n' +p323012 +sg291134 +S'Two Women Reclining' +p323013 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323014 +sa(dp323015 +g291130 +S'(drawing)' +p323016 +sg291132 +S'unknown date\n' +p323017 +sg291134 +S'Woman Seated in a Chair, Hands Clasped in Lap' +p323018 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323019 +sa(dp323020 +g291130 +S'(drawing)' +p323021 +sg291132 +S'unknown date\n' +p323022 +sg291134 +S'Rear View of Two Seated Figures, One Wearing a Hat' +p323023 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323024 +sa(dp323025 +g291130 +S'(drawing)' +p323026 +sg291132 +S'unknown date\n' +p323027 +sg291134 +S'Seated Man' +p323028 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323029 +sa(dp323030 +g291130 +S'(drawing)' +p323031 +sg291132 +S'unknown date\n' +p323032 +sg291134 +S'Two Seated Women Wearing Bathing Suits' +p323033 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323034 +sa(dp323035 +g291130 +S'(drawing)' +p323036 +sg291132 +S'unknown date\n' +p323037 +sg291134 +S'Three Figures on a Sofa' +p323038 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323039 +sa(dp323040 +g291130 +S'(drawing)' +p323041 +sg291132 +S'unknown date\n' +p323042 +sg291134 +S'Woman in a Rocking Chair Reading' +p323043 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323044 +sa(dp323045 +g291130 +S'(drawing)' +p323046 +sg291132 +S'unknown date\n' +p323047 +sg291134 +S'Two Seated Men' +p323048 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323049 +sa(dp323050 +g291130 +S'(drawing)' +p323051 +sg291132 +S'unknown date\n' +p323052 +sg291134 +S'Standing Female with Arms Clasped Behind Back' +p323053 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323054 +sa(dp323055 +g291130 +S'(drawing)' +p323056 +sg291132 +S'unknown date\n' +p323057 +sg291134 +S'Seated Woman Looking Right' +p323058 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323059 +sa(dp323060 +g291130 +S'(drawing)' +p323061 +sg291132 +S'unknown date\n' +p323062 +sg291134 +S'Seated Woman with Right Ankle Under Left Knee' +p323063 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323064 +sa(dp323065 +g291130 +S'(drawing)' +p323066 +sg291132 +S'unknown date\n' +p323067 +sg291134 +S'Reclining Female with Head Supported by Right Hand' +p323068 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323069 +sa(dp323070 +g291130 +S'(drawing)' +p323071 +sg291132 +S'unknown date\n' +p323072 +sg291134 +S'Abstract Composition in Blue, Black, Gray, and Red' +p323073 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323074 +sa(dp323075 +g291130 +S'(drawing)' +p323076 +sg291132 +S'unknown date\n' +p323077 +sg291134 +S'Young Boy in Overalls' +p323078 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323079 +sa(dp323080 +g291130 +S'(drawing)' +p323081 +sg291132 +S'unknown date\n' +p323082 +sg291134 +S'Seated Woman with Object in Her Lap' +p323083 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323084 +sa(dp323085 +g291130 +S'(drawing)' +p323086 +sg291132 +S'unknown date\n' +p323087 +sg291134 +S'Seated Woman with Legs Extended and Hands Clasped in Lap' +p323088 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323089 +sa(dp323090 +g291130 +S'(drawing)' +p323091 +sg291132 +S'unknown date\n' +p323092 +sg291134 +S'Seated Male Wearing Overalls' +p323093 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323094 +sa(dp323095 +g291130 +S'(drawing)' +p323096 +sg291132 +S'unknown date\n' +p323097 +sg291134 +S'Seated Woman Wearing a Bathing Suit' +p323098 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323099 +sa(dp323100 +g291130 +S'(drawing)' +p323101 +sg291132 +S'unknown date\n' +p323102 +sg291134 +S'Seated Woman Facing Left' +p323103 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323104 +sa(dp323105 +g291130 +S'(drawing)' +p323106 +sg291132 +S'unknown date\n' +p323107 +sg291134 +S'Seated Woman Reading a Book [recto]' +p323108 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323109 +sa(dp323110 +g291130 +S'(drawing)' +p323111 +sg291132 +S'unknown date\n' +p323112 +sg291134 +S'Studies of Tree Trunks and Limbs [verso]' +p323113 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323114 +sa(dp323115 +g291130 +S'(drawing)' +p323116 +sg291132 +S'unknown date\n' +p323117 +sg291134 +S'Reclining Female' +p323118 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323119 +sa(dp323120 +g291130 +S'(drawing)' +p323121 +sg291132 +S'unknown date\n' +p323122 +sg291134 +S'Seated Woman with Crossed Legs [recto]' +p323123 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323124 +sa(dp323125 +g291130 +S'(drawing)' +p323126 +sg291132 +S'unknown date\n' +p323127 +sg291134 +S'Seated Woman with Crossed Legs [verso]' +p323128 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323129 +sa(dp323130 +g291130 +S'(drawing)' +p323131 +sg291132 +S'unknown date\n' +p323132 +sg291134 +S'Two Reclining Females' +p323133 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323134 +sa(dp323135 +g291130 +S'(drawing)' +p323136 +sg291132 +S'unknown date\n' +p323137 +sg291134 +S'Two Boys Seated' +p323138 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323139 +sa(dp323140 +g291130 +S'(drawing)' +p323141 +sg291132 +S'unknown date\n' +p323142 +sg291134 +S'Seated Woman Looking Right' +p323143 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323144 +sa(dp323145 +g291130 +S'(drawing)' +p323146 +sg291132 +S'unknown date\n' +p323147 +sg291134 +S'Two Seated Woman' +p323148 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323149 +sa(dp323150 +g291130 +S'(drawing)' +p323151 +sg291132 +S'unknown date\n' +p323152 +sg291134 +S'Standing Nude Facing Right' +p323153 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323154 +sa(dp323155 +g291130 +S'(drawing)' +p323156 +sg291132 +S'unknown date\n' +p323157 +sg291134 +S'Reclining Nude' +p323158 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323159 +sa(dp323160 +g291130 +S'gouache' +p323161 +sg291132 +S'1934/1936' +p323162 +sg291134 +S'Untitled (seated woman with short hair wearing an orange shirt)' +p323163 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323164 +sa(dp323165 +g291130 +S'(drawing)' +p323166 +sg291132 +S'unknown date\n' +p323167 +sg291134 +S'Woman Running Fingers Through the Hair of Another Woman' +p323168 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323169 +sa(dp323170 +g291130 +S'(drawing)' +p323171 +sg291132 +S'unknown date\n' +p323172 +sg291134 +S'Study of Five Heads [recto]' +p323173 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323174 +sa(dp323175 +g291130 +S'(drawing)' +p323176 +sg291132 +S'unknown date\n' +p323177 +sg291134 +S'Woman Seated in a Chair [verso]' +p323178 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323179 +sa(dp323180 +g291130 +S'(drawing - oil on paper)' +p323181 +sg291132 +S'unknown date\n' +p323182 +sg291134 +S'Still Life with Glass, Pitcher, and Orange' +p323183 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323184 +sa(dp323185 +g291130 +S'(drawing)' +p323186 +sg291132 +S'unknown date\n' +p323187 +sg291134 +S'Figures Walking Down the Street at Night' +p323188 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323189 +sa(dp323190 +g291130 +S'(drawing)' +p323191 +sg291132 +S'unknown date\n' +p323192 +sg291134 +S'Portrait of a Man Wearing Glasses' +p323193 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323194 +sa(dp323195 +g291130 +S'opaque watercolor' +p323196 +sg291132 +S'c. 1938' +p323197 +sg291134 +S'Untitled (Interior with Figures)' +p323198 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323199 +sa(dp323200 +g291130 +S'(drawing)' +p323201 +sg291132 +S'unknown date\n' +p323202 +sg291134 +S'Two Figures Standing Near a Fence at Night' +p323203 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323204 +sa(dp323205 +g291130 +S'watercolor on wove paper' +p323206 +sg291132 +S'1933/1934' +p323207 +sg291134 +S'Man Wearing Overalls and Hat Sitting in a Rocking Chair' +p323208 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323209 +sa(dp323210 +g291130 +S'(drawing)' +p323211 +sg291132 +S'unknown date\n' +p323212 +sg291134 +S'Abstract Composition in Black, Gray, and Blue' +p323213 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323214 +sa(dp323215 +g291134 +S'Untitled (Figure Standing at a Portal)' +p323216 +sg291137 +S'Mark Rothko' +p323217 +sg291130 +S'gouache on paper' +p323218 +sg291132 +S'1938/1939' +p323219 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00058/a0005822.jpg' +p323220 +sg291136 +g27 +sa(dp323221 +g291130 +S'(drawing)' +p323222 +sg291132 +S'unknown date\n' +p323223 +sg291134 +S'Figure with Arm Resting on Table' +p323224 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323225 +sa(dp323226 +g291130 +S'(drawing)' +p323227 +sg291132 +S'unknown date\n' +p323228 +sg291134 +S'Seated Woman in a Blue Dress' +p323229 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323230 +sa(dp323231 +g291130 +S'(drawing)' +p323232 +sg291132 +S'unknown date\n' +p323233 +sg291134 +S'Abstract Composition in Yellow, Green, Blue, Black, and Brown' +p323234 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323235 +sa(dp323236 +g291130 +S'(drawing)' +p323237 +sg291132 +S'unknown date\n' +p323238 +sg291134 +S'Two Standing Figures' +p323239 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323240 +sa(dp323241 +g291130 +S'(drawing)' +p323242 +sg291132 +S'unknown date\n' +p323243 +sg291134 +S'Figures Standing Near a Door' +p323244 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323245 +sa(dp323246 +g291130 +S'(drawing)' +p323247 +sg291132 +S'unknown date\n' +p323248 +sg291134 +S'Seated Figure Behind a Desk and Two Standing Figures' +p323249 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323250 +sa(dp323251 +g291130 +S'(drawing)' +p323252 +sg291132 +S'unknown date\n' +p323253 +sg291134 +S'Seated Female Nude' +p323254 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323255 +sa(dp323256 +g291130 +S'(drawing)' +p323257 +sg291132 +S'unknown date\n' +p323258 +sg291134 +S'Abstract Composition in Black, Orange, Green, Blue, Gray, and White' +p323259 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323260 +sa(dp323261 +g291130 +S'(drawing)' +p323262 +sg291132 +S'unknown date\n' +p323263 +sg291134 +S'Abstract Composition' +p323264 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323265 +sa(dp323266 +g291130 +S'(drawing)' +p323267 +sg291132 +S'unknown date\n' +p323268 +sg291134 +S'Abstract Composition' +p323269 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323270 +sa(dp323271 +g291130 +S'(drawing)' +p323272 +sg291132 +S'unknown date\n' +p323273 +sg291134 +S'Abstract Composition in Red, Brown, Black, Blue, and White' +p323274 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323275 +sa(dp323276 +g291130 +S'(drawing)' +p323277 +sg291132 +S'unknown date\n' +p323278 +sg291134 +S'Portrait of a Man, Head Turned Slightly to Left' +p323279 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323280 +sa(dp323281 +g291130 +S'(drawing)' +p323282 +sg291132 +S'unknown date\n' +p323283 +sg291134 +S'Seated Nude with Hands Resting on Knees' +p323284 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323285 +sa(dp323286 +g291134 +S'Untitled (Seated Woman with Crossed Legs)' +p323287 +sg291137 +S'Mark Rothko' +p323288 +sg291130 +S'gouache on paper' +p323289 +sg291132 +S'c. 1935' +p323290 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00058/a0005821.jpg' +p323291 +sg291136 +g27 +sa(dp323292 +g291130 +S'(drawing)' +p323293 +sg291132 +S'unknown date\n' +p323294 +sg291134 +S'Standing Female Nude Facing Left' +p323295 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323296 +sa(dp323297 +g291130 +S'(drawing)' +p323298 +sg291132 +S'unknown date\n' +p323299 +sg291134 +S'Standing Female Nude [recto]' +p323300 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323301 +sa(dp323302 +g291130 +S'(drawing)' +p323303 +sg291132 +S'unknown date\n' +p323304 +sg291134 +S'Standing Female Nude Facing Right [verso]' +p323305 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323306 +sa(dp323307 +g291130 +S'graphite on wove paper' +p323308 +sg291132 +S'unknown date\n' +p323309 +sg291134 +S'Portrait of a Man in a Cap and Jacket [recto]' +p323310 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323311 +sa(dp323312 +g291130 +S'graphite on wove paper' +p323313 +sg291132 +S'unknown date\n' +p323314 +sg291134 +S'Untitled [verso]' +p323315 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323316 +sa(dp323317 +g291130 +S'(drawing)' +p323318 +sg291132 +S'unknown date\n' +p323319 +sg291134 +S'Man Seated on a Sofa' +p323320 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323321 +sa(dp323322 +g291130 +S'(drawing)' +p323323 +sg291132 +S'unknown date\n' +p323324 +sg291134 +S'Studies of a Head of a Woman [recto]' +p323325 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323326 +sa(dp323327 +g291130 +S'(drawing)' +p323328 +sg291132 +S'unknown date\n' +p323329 +sg291134 +S'Studies of a Head [verso]' +p323330 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323331 +sa(dp323332 +g291130 +S'pen and black ink on wove paper' +p323333 +sg291132 +S'unknown date\n' +p323334 +sg291134 +S'Portrait of a Figure with Arms Bent [recto]' +p323335 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323336 +sa(dp323337 +g291130 +S'pen and black ink on wove paper' +p323338 +sg291132 +S'unknown date\n' +p323339 +sg291134 +S'Untitled [verso]' +p323340 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323341 +sa(dp323342 +g291130 +S'(drawing)' +p323343 +sg291132 +S'unknown date\n' +p323344 +sg291134 +S'Seated Woman Holding a Glass [recto]' +p323345 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323346 +sa(dp323347 +g291130 +S'(drawing)' +p323348 +sg291132 +S'unknown date\n' +p323349 +sg291134 +S'Study of a Head [verso]' +p323350 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323351 +sa(dp323352 +g291130 +S'(drawing)' +p323353 +sg291132 +S'unknown date\n' +p323354 +sg291134 +S'Studies of a Head of a Woman [recto]' +p323355 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323356 +sa(dp323357 +g291130 +S'(drawing)' +p323358 +sg291132 +S'unknown date\n' +p323359 +sg291134 +S"Studies of a Woman's Hair [verso]" +p323360 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323361 +sa(dp323362 +g291130 +S'(drawing)' +p323363 +sg291132 +S'unknown date\n' +p323364 +sg291134 +S'Abstraction' +p323365 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323366 +sa(dp323367 +g291130 +S'(drawing)' +p323368 +sg291132 +S'unknown date\n' +p323369 +sg291134 +S'Abstract Figural Composition' +p323370 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323371 +sa(dp323372 +g291130 +S'(drawing)' +p323373 +sg291132 +S'unknown date\n' +p323374 +sg291134 +S'Study of Hands' +p323375 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323376 +sa(dp323377 +g291130 +S'(drawing)' +p323378 +sg291132 +S'unknown date\n' +p323379 +sg291134 +S'Figures Walking in an Urban Landscape [recto]' +p323380 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323381 +sa(dp323382 +g291130 +S'graphite on wove paper' +p323383 +sg291132 +S'unknown date\n' +p323384 +sg291134 +S'Urban Landscape [verso]' +p323385 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323386 +sa(dp323387 +g291130 +S'(drawing)' +p323388 +sg291132 +S'unknown date\n' +p323389 +sg291134 +S'Interior with Figure Sitting Behind a Desk [recto]' +p323390 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323391 +sa(dp323392 +g291130 +S'(drawing)' +p323393 +sg291132 +S'unknown date\n' +p323394 +sg291134 +S'Untitled [verso]' +p323395 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323396 +sa(dp323397 +g291130 +S'(drawing)' +p323398 +sg291132 +S'unknown date\n' +p323399 +sg291134 +S'Woman Standing Near a Table' +p323400 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323401 +sa(dp323402 +g291134 +S'Untitled (Seated Figure)' +p323403 +sg291137 +S'Mark Rothko' +p323404 +sg291130 +S'gouache on paper' +p323405 +sg291132 +S'1938/1939' +p323406 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00058/a0005820.jpg' +p323407 +sg291136 +g27 +sa(dp323408 +g291130 +S'(drawing)' +p323409 +sg291132 +S'unknown date\n' +p323410 +sg291134 +S'Standing Female Nude, Head Tilted Left' +p323411 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323412 +sa(dp323413 +g291130 +S'(drawing)' +p323414 +sg291132 +S'unknown date\n' +p323415 +sg291134 +S'Standing Female Nude with Head Turned Left' +p323416 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323417 +sa(dp323418 +g291130 +S'(drawing)' +p323419 +sg291132 +S'unknown date\n' +p323420 +sg291134 +S'Reclining Nude' +p323421 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323422 +sa(dp323423 +g291130 +S'(drawing)' +p323424 +sg291132 +S'unknown date\n' +p323425 +sg291134 +S'Landscape with Trees' +p323426 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323427 +sa(dp323428 +g291130 +S'(drawing)' +p323429 +sg291132 +S'unknown date\n' +p323430 +sg291134 +S'Portrait of a Figure with Head Tilted Left' +p323431 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323432 +sa(dp323433 +g291130 +S'(drawing)' +p323434 +sg291132 +S'unknown date\n' +p323435 +sg291134 +S'Portrait of a Man' +p323436 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323437 +sa(dp323438 +g291130 +S'(drawing)' +p323439 +sg291132 +S'unknown date\n' +p323440 +sg291134 +S'Abstract Composition with Figures' +p323441 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323442 +sa(dp323443 +g291130 +S'(drawing)' +p323444 +sg291132 +S'unknown date\n' +p323445 +sg291134 +S'Female Figure Reclining [recto]' +p323446 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323447 +sa(dp323448 +g291130 +S'(drawing)' +p323449 +sg291132 +S'unknown date\n' +p323450 +sg291134 +S'Abstract Composition in Black [verso]' +p323451 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323452 +sa(dp323453 +g291130 +S'gouache on black construction paper' +p323454 +sg291132 +S'unknown date\n' +p323455 +sg291134 +S'Mythological Scene (Sword Fight between a Woman and a Man)' +p323456 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323457 +sa(dp323458 +g291130 +S'(drawing)' +p323459 +sg291132 +S'unknown date\n' +p323460 +sg291134 +S'Five Female Heads' +p323461 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323462 +sa(dp323463 +g291130 +S'(drawing)' +p323464 +sg291132 +S'unknown date\n' +p323465 +sg291134 +S'Untitled' +p323466 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323467 +sa(dp323468 +g291130 +S'(drawing)' +p323469 +sg291132 +S'unknown date\n' +p323470 +sg291134 +S'Untitled' +p323471 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323472 +sa(dp323473 +g291130 +S'(drawing)' +p323474 +sg291132 +S'unknown date\n' +p323475 +sg291134 +S'Figure Studies' +p323476 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323477 +sa(dp323478 +g291130 +S'(drawing)' +p323479 +sg291132 +S'unknown date\n' +p323480 +sg291134 +S'Abstract Composition' +p323481 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323482 +sa(dp323483 +g291130 +S'(drawing)' +p323484 +sg291132 +S'unknown date\n' +p323485 +sg291134 +S'Man Wearing a Brown Suit and Standing in an Urban Setting' +p323486 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323487 +sa(dp323488 +g291130 +S'(drawing)' +p323489 +sg291132 +S'unknown date\n' +p323490 +sg291134 +S'Two Figures Seated at a Red Table' +p323491 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323492 +sa(dp323493 +g291130 +S'(drawing)' +p323494 +sg291132 +S'unknown date\n' +p323495 +sg291134 +S'Three Figures Seated on a Blanket' +p323496 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323497 +sa(dp323498 +g291130 +S'(drawing)' +p323499 +sg291132 +S'unknown date\n' +p323500 +sg291134 +S'Kunstmuseum Basel Architectural Plan' +p323501 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323502 +sa(dp323503 +g291134 +S'Untitled [recto]' +p323504 +sg291137 +S'Mark Rothko' +p323505 +sg291130 +S'colored crayons and traces of pastel on red construction paper' +p323506 +sg291132 +S'1958/1959' +p323507 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009ae.jpg' +p323508 +sg291136 +g27 +sa(dp323509 +g291134 +S'Untitled [verso]' +p323510 +sg291137 +S'Mark Rothko' +p323511 +sg291130 +S'black crayon on red construction paper' +p323512 +sg291132 +S'1958/1959' +p323513 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000bd/a000bdd1.jpg' +p323514 +sg291136 +g27 +sa(dp323515 +g291130 +S'(drawing)' +p323516 +sg291132 +S'unknown date\n' +p323517 +sg291134 +S'Urban Landscape' +p323518 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323519 +sa(dp323520 +g291130 +S'(drawing)' +p323521 +sg291132 +S'unknown date\n' +p323522 +sg291134 +S'Seated Woman Holding a Child' +p323523 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323524 +sa(dp323525 +g291130 +S'(drawing)' +p323526 +sg291132 +S'unknown date\n' +p323527 +sg291134 +S'Woman Reclining on a Sofa' +p323528 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323529 +sa(dp323530 +g291130 +S'(drawing)' +p323531 +sg291132 +S'unknown date\n' +p323532 +sg291134 +S'Chair' +p323533 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323534 +sa(dp323535 +g291130 +S'(drawing)' +p323536 +sg291132 +S'unknown date\n' +p323537 +sg291134 +S'Portrait of a Man Wearing a Black Hat' +p323538 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323539 +sa(dp323540 +g291130 +S'watercolor on brown wove paper' +p323541 +sg291132 +S'late 1930s' +p323542 +sg291134 +S'Landscape with Mountains [recto]' +p323543 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323544 +sa(dp323545 +g291130 +S'(drawing)' +p323546 +sg291132 +S'unknown date\n' +p323547 +sg291134 +S'Rear View of a Seated Figure with Arms Raised Above Head [verso]' +p323548 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323549 +sa(dp323550 +g291130 +S'(drawing)' +p323551 +sg291132 +S'unknown date\n' +p323552 +sg291134 +S'Various Flowers' +p323553 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323554 +sa(dp323555 +g291130 +S'(drawing)' +p323556 +sg291132 +S'unknown date\n' +p323557 +sg291134 +S'Two Figures Near the Waterfront [recto]' +p323558 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323559 +sa(dp323560 +g291130 +S'(drawing)' +p323561 +sg291132 +S'unknown date\n' +p323562 +sg291134 +S'Landscape Scene with a Docked Boat [verso]' +p323563 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323564 +sa(dp323565 +g291130 +S'(drawing)' +p323566 +sg291132 +S'unknown date\n' +p323567 +sg291134 +S'Figure Wearing a Bathing Suit' +p323568 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323569 +sa(dp323570 +g291130 +S'(drawing)' +p323571 +sg291132 +S'unknown date\n' +p323572 +sg291134 +S'Seated Boy Wearing Overalls' +p323573 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323574 +sa(dp323575 +g291130 +S'(drawing)' +p323576 +sg291132 +S'unknown date\n' +p323577 +sg291134 +S'Boy Wearing Overalls' +p323578 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323579 +sa(dp323580 +g291130 +S'(drawing)' +p323581 +sg291132 +S'unknown date\n' +p323582 +sg291134 +S'Standing Woman in a Bathing Suit' +p323583 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323584 +sa(dp323585 +g291130 +S'(drawing)' +p323586 +sg291132 +S'unknown date\n' +p323587 +sg291134 +S'Young Man Seated, Playing a Lute' +p323588 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323589 +sa(dp323590 +g291130 +S'(drawing)' +p323591 +sg291132 +S'unknown date\n' +p323592 +sg291134 +S'Standing Female Nude Facing Right' +p323593 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323594 +sa(dp323595 +g291130 +S'(drawing)' +p323596 +sg291132 +S'unknown date\n' +p323597 +sg291134 +S'Seated Man' +p323598 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323599 +sa(dp323600 +g291130 +S'(drawing)' +p323601 +sg291132 +S'unknown date\n' +p323602 +sg291134 +S'Seated Boy with Chin in Hand' +p323603 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323604 +sa(dp323605 +g291130 +S'(drawing)' +p323606 +sg291132 +S'unknown date\n' +p323607 +sg291134 +S'Two Seated Boys' +p323608 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323609 +sa(dp323610 +g291130 +S'(drawing)' +p323611 +sg291132 +S'unknown date\n' +p323612 +sg291134 +S'Seated Woman Wearing a Bathing Suit' +p323613 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323614 +sa(dp323615 +g291130 +S'(drawing)' +p323616 +sg291132 +S'unknown date\n' +p323617 +sg291134 +S'Seated Woman Wearing a Bathing Suit' +p323618 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323619 +sa(dp323620 +g291130 +S'(drawing)' +p323621 +sg291132 +S'unknown date\n' +p323622 +sg291134 +S'Standing Figure with Right Hand on Chest' +p323623 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323624 +sa(dp323625 +g291130 +S'graphite on wove paper' +p323626 +sg291132 +S'unknown date\n' +p323627 +sg291134 +S'Seated Female Facing Right [recto]' +p323628 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323629 +sa(dp323630 +g291130 +S'graphite on wove paper' +p323631 +sg291132 +S'unknown date\n' +p323632 +sg291134 +S'Untitled [verso]' +p323633 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323634 +sa(dp323635 +g291130 +S'(drawing)' +p323636 +sg291132 +S'unknown date\n' +p323637 +sg291134 +S'Two Figures Seated at a Table' +p323638 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323639 +sa(dp323640 +g291130 +S'(drawing)' +p323641 +sg291132 +S'unknown date\n' +p323642 +sg291134 +S'Seated Woman Holding a Child in Her Lap' +p323643 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323644 +sa(dp323645 +g291130 +S'(drawing)' +p323646 +sg291132 +S'unknown date\n' +p323647 +sg291134 +S'Seated Female Facing Right' +p323648 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323649 +sa(dp323650 +g291130 +S'(drawing)' +p323651 +sg291132 +S'unknown date\n' +p323652 +sg291134 +S'Seated Female with Hands on Lap' +p323653 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323654 +sa(dp323655 +g291130 +S'(drawing)' +p323656 +sg291132 +S'unknown date\n' +p323657 +sg291134 +S'Woman Seated on a Sofa with a Child on Her Lap' +p323658 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323659 +sa(dp323660 +g291130 +S'(drawing)' +p323661 +sg291132 +S'unknown date\n' +p323662 +sg291134 +S'Standing Female' +p323663 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323664 +sa(dp323665 +g291130 +S'(drawing)' +p323666 +sg291132 +S'unknown date\n' +p323667 +sg291134 +S'Standing Woman Looking Right' +p323668 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323669 +sa(dp323670 +g291130 +S'(drawing)' +p323671 +sg291132 +S'unknown date\n' +p323672 +sg291134 +S'Woman Playing a Violin' +p323673 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323674 +sa(dp323675 +g291130 +S'(drawing)' +p323676 +sg291132 +S'unknown date\n' +p323677 +sg291134 +S'Seated Woman with Long Hair' +p323678 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323679 +sa(dp323680 +g291130 +S'(drawing)' +p323681 +sg291132 +S'unknown date\n' +p323682 +sg291134 +S'Female Nude Standing Near a Window' +p323683 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323684 +sa(dp323685 +g291130 +S'(drawing)' +p323686 +sg291132 +S'unknown date\n' +p323687 +sg291134 +S'Woman Seated on a Sofa Reading' +p323688 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323689 +sa(dp323690 +g291130 +S'(drawing)' +p323691 +sg291132 +S'unknown date\n' +p323692 +sg291134 +S'Woman Seated on the Arm of a Green Sofa' +p323693 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323694 +sa(dp323695 +g291130 +S'(drawing)' +p323696 +sg291132 +S'unknown date\n' +p323697 +sg291134 +S'Woman Seated on a Green Chair' +p323698 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323699 +sa(dp323700 +g291130 +S'(drawing)' +p323701 +sg291132 +S'unknown date\n' +p323702 +sg291134 +S'Nude Woman Bending Over' +p323703 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323704 +sa(dp323705 +g291130 +S'(drawing)' +p323706 +sg291132 +S'unknown date\n' +p323707 +sg291134 +S'Two Figures Seated on a Sofa' +p323708 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323709 +sa(dp323710 +g291130 +S'(drawing)' +p323711 +sg291132 +S'unknown date\n' +p323712 +sg291134 +S'Standing Woman Holding a Child' +p323713 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323714 +sa(dp323715 +g291130 +S'(drawing)' +p323716 +sg291132 +S'unknown date\n' +p323717 +sg291134 +S'Two Seated Children' +p323718 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323719 +sa(dp323720 +g291130 +S'(drawing)' +p323721 +sg291132 +S'unknown date\n' +p323722 +sg291134 +S'Two Seated Women Conversing' +p323723 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323724 +sa(dp323725 +g291130 +S'(drawing)' +p323726 +sg291132 +S'unknown date\n' +p323727 +sg291134 +S'Figures in a Landscape' +p323728 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323729 +sa(dp323730 +g291130 +S'(drawing)' +p323731 +sg291132 +S'unknown date\n' +p323732 +sg291134 +S'(Untitled)' +p323733 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323734 +sa(dp323735 +g291130 +S'(drawing)' +p323736 +sg291132 +S'unknown date\n' +p323737 +sg291134 +S'Standing Woman Holding a Child' +p323738 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323739 +sa(dp323740 +g291130 +S'(drawing)' +p323741 +sg291132 +S'unknown date\n' +p323742 +sg291134 +S'Figure at a Beach' +p323743 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323744 +sa(dp323745 +g291130 +S'(drawing)' +p323746 +sg291132 +S'unknown date\n' +p323747 +sg291134 +S'Nude Bathers at the Beach' +p323748 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323749 +sa(dp323750 +g291130 +S'graphite on wove paper' +p323751 +sg291132 +S'unknown date\n' +p323752 +sg291134 +S'Seated Woman with Arms Crossed [recto]' +p323753 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323754 +sa(dp323755 +g291130 +S'graphite on wove paper' +p323756 +sg291132 +S'unknown date\n' +p323757 +sg291134 +S'Head of a Man [verso]' +p323758 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323759 +sa(dp323760 +g291130 +S'(drawing)' +p323761 +sg291132 +S'unknown date\n' +p323762 +sg291134 +S'Young Boy Standing' +p323763 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323764 +sa(dp323765 +g291130 +S'(drawing)' +p323766 +sg291132 +S'unknown date\n' +p323767 +sg291134 +S'Seated Woman' +p323768 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323769 +sa(dp323770 +g291130 +S'(drawing)' +p323771 +sg291132 +S'unknown date\n' +p323772 +sg291134 +S'Seated Woman' +p323773 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323774 +sa(dp323775 +g291130 +S'(drawing)' +p323776 +sg291132 +S'unknown date\n' +p323777 +sg291134 +S'Two Seated Figures' +p323778 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323779 +sa(dp323780 +g291130 +S'(drawing)' +p323781 +sg291132 +S'unknown date\n' +p323782 +sg291134 +S'Two Seated Women' +p323783 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323784 +sa(dp323785 +g291130 +S'(drawing)' +p323786 +sg291132 +S'unknown date\n' +p323787 +sg291134 +S'Seated Woman with Arms Crossed in Lap [recto]' +p323788 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323789 +sa(dp323790 +g291130 +S'(drawing)' +p323791 +sg291132 +S'unknown date\n' +p323792 +sg291134 +S'City Landscape [verso]' +p323793 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323794 +sa(dp323795 +g291130 +S'(drawing)' +p323796 +sg291132 +S'unknown date\n' +p323797 +sg291134 +S'Seated Woman with Curly Hair' +p323798 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323799 +sa(dp323800 +g291130 +S'(drawing)' +p323801 +sg291132 +S'unknown date\n' +p323802 +sg291134 +S'Reclining Figure with Left Hand Behind Head' +p323803 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323804 +sa(dp323805 +g291130 +S'graphite on wove paper' +p323806 +sg291132 +S'unknown date\n' +p323807 +sg291134 +S'Man with Moustache, Seated at Table' +p323808 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323809 +sa(dp323810 +g291130 +S'(drawing)' +p323811 +sg291132 +S'unknown date\n' +p323812 +sg291134 +S'Reclining Figure Looking Right' +p323813 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323814 +sa(dp323815 +g291130 +S'(drawing)' +p323816 +sg291132 +S'unknown date\n' +p323817 +sg291134 +S'Seated Woman with Hands Together in Lap' +p323818 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323819 +sa(dp323820 +g291130 +S'(drawing)' +p323821 +sg291132 +S'unknown date\n' +p323822 +sg291134 +S'Young Girl' +p323823 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323824 +sa(dp323825 +g291130 +S'(drawing)' +p323826 +sg291132 +S'unknown date\n' +p323827 +sg291134 +S'Study of a Standing Female Figure' +p323828 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323829 +sa(dp323830 +g291130 +S'(drawing)' +p323831 +sg291132 +S'unknown date\n' +p323832 +sg291134 +S'Seated Woman in Heels' +p323833 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323834 +sa(dp323835 +g291130 +S'(drawing)' +p323836 +sg291132 +S'unknown date\n' +p323837 +sg291134 +S'Reclining Figure' +p323838 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323839 +sa(dp323840 +g291130 +S'(drawing)' +p323841 +sg291132 +S'unknown date\n' +p323842 +sg291134 +S'Figures Standing on a Roof Top' +p323843 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323844 +sa(dp323845 +g291130 +S'watercolor on construction paper' +p323846 +sg291132 +S'mid-1930s' +p323847 +sg291134 +S'View of a Street in an Urban Landscape' +p323848 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323849 +sa(dp323850 +g291130 +S'(drawing)' +p323851 +sg291132 +S'unknown date\n' +p323852 +sg291134 +S'Figure Standing Near a Counter' +p323853 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323854 +sa(dp323855 +g291130 +S'watercolor on construction paper' +p323856 +sg291132 +S'1930s' +p323857 +sg291134 +S'Portrait of a Woman and Child' +p323858 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323859 +sa(dp323860 +g291130 +S'opaque watercolor' +p323861 +sg291132 +S'c. 1932' +p323862 +sg291134 +S'Untitled (Seated Couple)' +p323863 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323864 +sa(dp323865 +g291134 +S'Landscape' +p323866 +sg291137 +S'Mark Rothko' +p323867 +sg291130 +S'watercolor on paper' +p323868 +sg291132 +S'late 1920s/early 1930s' +p323869 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00058/a000581b.jpg' +p323870 +sg291136 +g27 +sa(dp323871 +g291130 +S'(drawing)' +p323872 +sg291132 +S'unknown date\n' +p323873 +sg291134 +S'View of a Waterfront' +p323874 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323875 +sa(dp323876 +g291130 +S'(drawing)' +p323877 +sg291132 +S'unknown date\n' +p323878 +sg291134 +S'Figures' +p323879 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323880 +sa(dp323881 +g291130 +S'(drawing)' +p323882 +sg291132 +S'unknown date\n' +p323883 +sg291134 +S'Two Reclining Figures Near the Waterfront [recto]' +p323884 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323885 +sa(dp323886 +g291130 +S'(drawing)' +p323887 +sg291132 +S'unknown date\n' +p323888 +sg291134 +S'Couple in Bed [verso]' +p323889 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323890 +sa(dp323891 +g291130 +S'(drawing)' +p323892 +sg291132 +S'unknown date\n' +p323893 +sg291134 +S'Reclining Figures in a Landscape [recto]' +p323894 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323895 +sa(dp323896 +g291130 +S'(drawing)' +p323897 +sg291132 +S'unknown date\n' +p323898 +sg291134 +S'Man Playing a Stringed Instrument [verso]' +p323899 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323900 +sa(dp323901 +g291130 +S'(drawing)' +p323902 +sg291132 +S'unknown date\n' +p323903 +sg291134 +S'Two Figures Seated on the Beach' +p323904 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323905 +sa(dp323906 +g291130 +S'(drawing)' +p323907 +sg291132 +S'unknown date\n' +p323908 +sg291134 +S'Woman in an Arm Chair' +p323909 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323910 +sa(dp323911 +g291134 +S'Untitled (Portrait of a Woman Wearing a Hat)' +p323912 +sg291137 +S'Mark Rothko' +p323913 +sg291130 +S'opaque watercolor on paper' +p323914 +sg291132 +S'c. 1932' +p323915 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00058/a000581a.jpg' +p323916 +sg291136 +g27 +sa(dp323917 +g291130 +S'(drawing)' +p323918 +sg291132 +S'unknown date\n' +p323919 +sg291134 +S'Woman in a Large Blue Chair' +p323920 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323921 +sa(dp323922 +g291130 +S'(drawing)' +p323923 +sg291132 +S'unknown date\n' +p323924 +sg291134 +S'Landscape' +p323925 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323926 +sa(dp323927 +g291130 +S'(drawing)' +p323928 +sg291132 +S'unknown date\n' +p323929 +sg291134 +S'Three Figures Wearing Hats' +p323930 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323931 +sa(dp323932 +g291130 +S'(drawing)' +p323933 +sg291132 +S'unknown date\n' +p323934 +sg291134 +S'View of a Pier' +p323935 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323936 +sa(dp323937 +g291130 +S'(drawing)' +p323938 +sg291132 +S'unknown date\n' +p323939 +sg291134 +S'Two Figures' +p323940 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323941 +sa(dp323942 +g291130 +S'(drawing)' +p323943 +sg291132 +S'unknown date\n' +p323944 +sg291134 +S'White Cat' +p323945 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323946 +sa(dp323947 +g291130 +S'(drawing)' +p323948 +sg291132 +S'unknown date\n' +p323949 +sg291134 +S'Landscape [recto]' +p323950 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323951 +sa(dp323952 +g291130 +S'(drawing)' +p323953 +sg291132 +S'unknown date\n' +p323954 +sg291134 +S'Harbor with Sail Boats [verso]' +p323955 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323956 +sa(dp323957 +g291130 +S'(drawing)' +p323958 +sg291132 +S'unknown date\n' +p323959 +sg291134 +S'Abstract Composition [recto]' +p323960 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323961 +sa(dp323962 +g291130 +S'(drawing)' +p323963 +sg291132 +S'unknown date\n' +p323964 +sg291134 +S'Study of Heads [verso]' +p323965 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323966 +sa(dp323967 +g291130 +S'(drawing)' +p323968 +sg291132 +S'unknown date\n' +p323969 +sg291134 +S'Abstract Composition' +p323970 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323971 +sa(dp323972 +g291130 +S'(drawing)' +p323973 +sg291132 +S'unknown date\n' +p323974 +sg291134 +S'Head of a Figure Facing Left [recto]' +p323975 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323976 +sa(dp323977 +g291130 +S'(drawing)' +p323978 +sg291132 +S'unknown date\n' +p323979 +sg291134 +S'Abstract Composition [verso]' +p323980 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323981 +sa(dp323982 +g291130 +S'(drawing)' +p323983 +sg291132 +S'unknown date\n' +p323984 +sg291134 +S'Untitled' +p323985 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323986 +sa(dp323987 +g291130 +S'(drawing)' +p323988 +sg291132 +S'unknown date\n' +p323989 +sg291134 +S'Two Figures Wearing Black [recto]' +p323990 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323991 +sa(dp323992 +g291130 +S'(drawing)' +p323993 +sg291132 +S'unknown date\n' +p323994 +sg291134 +S'Woman Tying Her Shoelace [verso]' +p323995 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p323996 +sa(dp323997 +g291130 +S'gouache' +p323998 +sg291132 +S'c. 1935' +p323999 +sg291134 +S'Untitled [recto]' +p324000 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324001 +sa(dp324002 +g291130 +S'(drawing)' +p324003 +sg291132 +S'unknown date\n' +p324004 +sg291134 +S'Portrait of a Woman [verso]' +p324005 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324006 +sa(dp324007 +g291130 +S'(drawing)' +p324008 +sg291132 +S'unknown date\n' +p324009 +sg291134 +S'Seated Woman with Long Hair' +p324010 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324011 +sa(dp324012 +g291130 +S'(drawing)' +p324013 +sg291132 +S'unknown date\n' +p324014 +sg291134 +S'Young Boy Standing [recto]' +p324015 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324016 +sa(dp324017 +g291130 +S'(drawing)' +p324018 +sg291132 +S'unknown date\n' +p324019 +sg291134 +S'Reclining Figure Reading [verso]' +p324020 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324021 +sa(dp324022 +g291130 +S'(drawing)' +p324023 +sg291132 +S'unknown date\n' +p324024 +sg291134 +S'Young Boy in Overalls [recto]' +p324025 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324026 +sa(dp324027 +g291130 +S'(drawing)' +p324028 +sg291132 +S'unknown date\n' +p324029 +sg291134 +S'Landscape [verso]' +p324030 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324031 +sa(dp324032 +g291130 +S'(drawing)' +p324033 +sg291132 +S'unknown date\n' +p324034 +sg291134 +S'Two Figures Near the Waterfront [recto]' +p324035 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324036 +sa(dp324037 +g291130 +S'(drawing)' +p324038 +sg291132 +S'unknown date\n' +p324039 +sg291134 +S'Landscape [verso]' +p324040 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324041 +sa(dp324042 +g291130 +S'(drawing)' +p324043 +sg291132 +S'unknown date\n' +p324044 +sg291134 +S'Figures Near a Cornfield' +p324045 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324046 +sa(dp324047 +g291130 +S'(drawing)' +p324048 +sg291132 +S'unknown date\n' +p324049 +sg291134 +S'Figures Playing on the Beach' +p324050 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324051 +sa(dp324052 +g291130 +S'(drawing)' +p324053 +sg291132 +S'unknown date\n' +p324054 +sg291134 +S'Standing Woman Wearing a Pleated Skirt' +p324055 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324056 +sa(dp324057 +g291130 +S'(drawing)' +p324058 +sg291132 +S'unknown date\n' +p324059 +sg291134 +S'(Untitled)' +p324060 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324061 +sa(dp324062 +g291130 +S'(drawing)' +p324063 +sg291132 +S'unknown date\n' +p324064 +sg291134 +S'(Untitled)' +p324065 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324066 +sa(dp324067 +g291130 +S'(drawing)' +p324068 +sg291132 +S'unknown date\n' +p324069 +sg291134 +S'Standing Man [recto]' +p324070 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324071 +sa(dp324072 +g291130 +S'brush and black ink on wove paper' +p324073 +sg291132 +S'1930s' +p324074 +sg291134 +S'Standing Man [verso]' +p324075 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324076 +sa(dp324077 +g291130 +S'(drawing)' +p324078 +sg291132 +S'unknown date\n' +p324079 +sg291134 +S'Woman Walking' +p324080 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324081 +sa(dp324082 +g291130 +S'(drawing)' +p324083 +sg291132 +S'unknown date\n' +p324084 +sg291134 +S'Seated Woman with Hands Folded in Lap' +p324085 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324086 +sa(dp324087 +g291130 +S'(drawing)' +p324088 +sg291132 +S'unknown date\n' +p324089 +sg291134 +S'Seated Woman with Hands on Knees' +p324090 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324091 +sa(dp324092 +g291130 +S'(drawing)' +p324093 +sg291132 +S'unknown date\n' +p324094 +sg291134 +S'Standing Female Figure' +p324095 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324096 +sa(dp324097 +g291134 +S'Untitled (Sketch for Harvard Mural)' +p324098 +sg291137 +S'Mark Rothko' +p324099 +sg291130 +S'pen and ink on wove paper' +p324100 +sg291132 +S'c. 1961' +p324101 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009af.jpg' +p324102 +sg291136 +g27 +sa(dp324103 +g291134 +S'Untitled (Sketch for Harvard Mural)' +p324104 +sg291137 +S'Mark Rothko' +p324105 +sg291130 +S'pen and ink and watercolor with graphite annotation on wove paper' +p324106 +sg291132 +S'c. 1961' +p324107 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009b0.jpg' +p324108 +sg291136 +g27 +sa(dp324109 +g291134 +S'Seated Woman' +p324110 +sg291137 +S'Mark Rothko' +p324111 +sg291130 +S'watercolor and gouache on blue wove paper' +p324112 +sg291132 +S'1930s' +p324113 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009b1.jpg' +p324114 +sg291136 +g27 +sa(dp324115 +g291130 +S'colored crayons with graphite and touches of pastel on red construction paper' +p324116 +sg291132 +S'1958/1959' +p324117 +sg291134 +S'Untitled' +p324118 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324119 +sa(dp324120 +g291134 +S'Untitled' +p324121 +sg291137 +S'Mark Rothko' +p324122 +sg291130 +S'gouache and watercolor on wove paper' +p324123 +sg291132 +S'1958/1959' +p324124 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009b2.jpg' +p324125 +sg291136 +g27 +sa(dp324126 +g291134 +S'(Untitled) [recto]' +p324127 +sg291137 +S'Mark Rothko' +p324128 +sg291130 +S'watercolor and pencil on wove paper' +p324129 +sg291132 +S'early 1940s' +p324130 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009b3.jpg' +p324131 +sg291136 +g27 +sa(dp324132 +g291134 +S'(Untitled) [verso]' +p324133 +sg291137 +S'Mark Rothko' +p324134 +sg291130 +S'pen and black ink on wove paper' +p324135 +sg291132 +S'early 1940s' +p324136 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e44c.jpg' +p324137 +sg291136 +g27 +sa(dp324138 +g291134 +S'Untitled (Related to \xe2\x80\x9cAntigone\xe2\x80\x9d).' +p324139 +sg291137 +S'Mark Rothko' +p324140 +sg291130 +S'watercolor on wove paper' +p324141 +sg291132 +S'early 1940s' +p324142 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009b4.jpg' +p324143 +sg291136 +g27 +sa(dp324144 +g291134 +S'Figure Composition with Grid [recto]' +p324145 +sg291137 +S'Mark Rothko' +p324146 +sg291130 +S'(drawing)' +p324147 +sg291132 +S'1941/1942' +p324148 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009b5.jpg' +p324149 +sg291136 +g27 +sa(dp324150 +g291134 +S'Untitled [verso]' +p324151 +sg291137 +S'Mark Rothko' +p324152 +sg291130 +S'pen and black ink on wove paper' +p324153 +sg291132 +S'unknown date\n' +p324154 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f23.jpg' +p324155 +sg291136 +g27 +sa(dp324156 +g291134 +S'Untitled' +p324157 +sg291137 +S'Mark Rothko' +p324158 +sg291130 +S'pen and ink and wash on wove paper' +p324159 +sg291132 +S'1961' +p324160 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009b6.jpg' +p324161 +sg291136 +g27 +sa(dp324162 +g291134 +S'Untitled' +p324163 +sg291137 +S'Mark Rothko' +p324164 +sg291130 +S'pen and ink and wash on wove paper' +p324165 +sg291132 +S'1961' +p324166 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009bb.jpg' +p324167 +sg291136 +g27 +sa(dp324168 +g291134 +S'Untitled' +p324169 +sg291137 +S'Mark Rothko' +p324170 +sg291130 +S'pen and ink and wash on wove paper' +p324171 +sg291132 +S'1961' +p324172 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009bc.jpg' +p324173 +sg291136 +g27 +sa(dp324174 +g291134 +S'Untitled' +p324175 +sg291137 +S'Mark Rothko' +p324176 +sg291130 +S'pen and ink and wash on wove paper' +p324177 +sg291132 +S'1961' +p324178 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009bd.jpg' +p324179 +sg291136 +g27 +sa(dp324180 +g291134 +S'(Untitled)' +p324181 +sg291137 +S'Mark Rothko' +p324182 +sg291130 +S'watercolor and pencil on wove paper' +p324183 +sg291132 +S'1930s' +p324184 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009be.jpg' +p324185 +sg291136 +g27 +sa(dp324186 +g291130 +S'sketchbook with 27 drawings on 20 sheets of paper' +p324187 +sg291132 +S'unknown date\n' +p324188 +sg291134 +S'Sketchbook' +p324189 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324190 +sa(dp324191 +g291130 +S'sketchbook' +p324192 +sg291132 +S'unknown date\n' +p324193 +sg291134 +S'Sketchbook' +p324194 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324195 +sa(dp324196 +g291130 +S'(drawing)' +p324197 +sg291132 +S'unknown date\n' +p324198 +sg291134 +S'Cityscape' +p324199 +sg291136 +g27 +sg291137 +S'Mark Rothko' +p324200 +sa(dp324201 +g291134 +S'Untitled' +p324202 +sg291137 +S'Mark Rothko' +p324203 +sg291130 +S'gouache on red construction paper' +p324204 +sg291132 +S'1958/1959' +p324205 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009bf.jpg' +p324206 +sg291136 +g27 +sa(dp324207 +g291134 +S'Untitled' +p324208 +sg291137 +S'Mark Rothko' +p324209 +sg291130 +S'gouache and watercolor on red construction paper' +p324210 +sg291132 +S'1958/1959' +p324211 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009c0.jpg' +p324212 +sg291136 +g27 +sa(dp324213 +g291134 +S'Untitled (vase of flowers) [recto]' +p324214 +sg291137 +S'Mark Rothko' +p324215 +sg291130 +S'oil on hardboard' +p324216 +sg291132 +S'1937/1938' +p324217 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014b7.jpg' +p324218 +sg291136 +g27 +sa(dp324219 +g291134 +S'Untitled (woman under tree) [verso]' +p324220 +sg291137 +S'Mark Rothko' +p324221 +sg291130 +S'oil on hardboard' +p324222 +sg291132 +S'1937/1938' +p324223 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014b8.jpg' +p324224 +sg291136 +g27 +sa(dp324225 +g291134 +S'Sketch in the Shade' +p324226 +sg291137 +S'Mark Rothko' +p324227 +sg291130 +S'oil on canvas board' +p324228 +sg291132 +S'1925' +p324229 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014be.jpg' +p324230 +sg291136 +g27 +sa(dp324231 +g291134 +S'Women Talking' +p324232 +sg291137 +S'Mark Rothko' +p324233 +sg291130 +S'oil on canvas on board' +p324234 +sg291132 +S'1929/1932' +p324235 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a000152f.jpg' +p324236 +sg291136 +g27 +sa(dp324237 +g291134 +S'Conversation' +p324238 +sg291137 +S'Mark Rothko' +p324239 +sg291130 +S'oil on linen' +p324240 +sg291132 +S'c. 1932' +p324241 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014b9.jpg' +p324242 +sg291136 +g27 +sa(dp324243 +g291134 +S'Thru the Window' +p324244 +sg291137 +S'Mark Rothko' +p324245 +sg291130 +S'oil on gesso board' +p324246 +sg291132 +S'1938/1939' +p324247 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001530.jpg' +p324248 +sg291136 +g27 +sa(dp324249 +g291134 +S'Untitled (figure with a racket)' +p324250 +sg291137 +S'Mark Rothko' +p324251 +sg291130 +S'oil and graphite on gesso board' +p324252 +sg291132 +S'1938/1939' +p324253 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001531.jpg' +p324254 +sg291136 +g27 +sa(dp324255 +g291134 +S'Untitled (still life with mallet, scissors and glove)' +p324256 +sg291137 +S'Mark Rothko' +p324257 +sg291130 +S'oil on gesso board' +p324258 +sg291132 +S'1938/1939' +p324259 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053ad.jpg' +p324260 +sg291136 +g27 +sa(dp324261 +g291134 +S'Untitled (still life with vase and bottle)' +p324262 +sg291137 +S'Mark Rothko' +p324263 +sg291130 +S'oil on gesso board' +p324264 +sg291132 +S'1937/1938' +p324265 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001532.jpg' +p324266 +sg291136 +g27 +sa(dp324267 +g291134 +S'Untitled (woman in subway)' +p324268 +sg291137 +S'Mark Rothko' +p324269 +sg291130 +S'oil on gesso board' +p324270 +sg291132 +S'c. 1938' +p324271 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001533.jpg' +p324272 +sg291136 +g27 +sa(dp324273 +g291134 +S'Untitled (man with racket and ball)' +p324274 +sg291137 +S'Mark Rothko' +p324275 +sg291130 +S'oil on gesso board' +p324276 +sg291132 +S'1939' +p324277 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001534.jpg' +p324278 +sg291136 +g27 +sa(dp324279 +g291134 +S'Untitled (still life with mallet, scissors and two gloves)' +p324280 +sg291137 +S'Mark Rothko' +p324281 +sg291130 +S'oil on gesso board' +p324282 +sg291132 +S'1938/1939' +p324283 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053ae.jpg' +p324284 +sg291136 +g27 +sa(dp324285 +g291134 +S'Head of Woman (Sonia Rothkowitz)' +p324286 +sg291137 +S'Mark Rothko' +p324287 +sg291130 +S'oil on canvas' +p324288 +sg291132 +S'c. 1932' +p324289 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014ba.jpg' +p324290 +sg291136 +g27 +sa(dp324291 +g291134 +S'Untitled (scene with nude figures)' +p324292 +sg291137 +S'Mark Rothko' +p324293 +sg291130 +S'oil on canvas on board' +p324294 +sg291132 +S'1933/1934' +p324295 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014bb.jpg' +p324296 +sg291136 +g27 +sa(dp324297 +g291134 +S'Untitled (nude)' +p324298 +sg291137 +S'Mark Rothko' +p324299 +sg291130 +S'oil on canvas' +p324300 +sg291132 +S'1937/1938' +p324301 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053af.jpg' +p324302 +sg291136 +g27 +sa(dp324303 +g291134 +S'Untitled (still life with pitcher)' +p324304 +sg291137 +S'Mark Rothko' +p324305 +sg291130 +S'oil on canvas board' +p324306 +sg291132 +S'c. 1926' +p324307 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00014/a00014bc.jpg' +p324308 +sg291136 +g27 +sa(dp324309 +g291130 +S'lithograph in black with red letterpress text on Okawara 60 gsm mold made kozo paper' +p324310 +sg291132 +S'published 1986' +p324311 +sg291134 +S'The Departure of the Argonaut, Chapter I (1)' +p324312 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324313 +sa(dp324314 +g291130 +S'(author)' +p324315 +sg291132 +S'\n' +p324316 +sg291134 +S'The Departure of the Argonaut' +p324317 +sg291136 +g27 +sg291137 +S'Artist Information (' +p324318 +sa(dp324319 +g291130 +S'lithograph in white with letterpress text on Okawara 60 gsm mold made kozo paper' +p324320 +sg291132 +S'published 1986' +p324321 +sg291134 +S'The Departure of the Argonaut, Chapter I (2)' +p324322 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324323 +sa(dp324324 +g291130 +S'lithograph in blue and orange with letterpress text on Okawara 60 gsm mold made kozo paper' +p324325 +sg291132 +S'published 1986' +p324326 +sg291134 +S'The Departure of the Argonaut, Chapter I (3)' +p324327 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324328 +sa(dp324329 +g291130 +S'lithograph in yellow and blue with letterpress text on Okawara 60 gsm mold made kozo paper' +p324330 +sg291132 +S'published 1986' +p324331 +sg291134 +S'The Departure of the Argonaut, Chapter I (4)' +p324332 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324333 +sa(dp324334 +g291130 +S'lithograph in orange, white, blue, and yellow with letterpress text on Okawara 60 gsm mold made kozo paper' +p324335 +sg291132 +S'published 1986' +p324336 +sg291134 +S'The Departure of the Argonaut, Chapter I (5)' +p324337 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324338 +sa(dp324339 +g291130 +S'lithograph in black with red letterpress text on Okawara 60 gsm mold made kozo paper' +p324340 +sg291132 +S'published 1986' +p324341 +sg291134 +S'The Departure of the Argonaut, Chapter II (6)' +p324342 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324343 +sa(dp324344 +g291130 +S'lithograph in black, white, and two browns with letterpress text on Okawara 60 gsm mold made kozo paper' +p324345 +sg291132 +S'published 1986' +p324346 +sg291134 +S'The Departure of the Argonaut, Chapter II (7)' +p324347 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324348 +sa(dp324349 +g291130 +S'lithograph in black, white, and two browns with letterpress text on Okawara 60 gsm mold made kozo paper' +p324350 +sg291132 +S'published 1986' +p324351 +sg291134 +S'The Departure of the Argonaut, Chapter II (8)' +p324352 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324353 +sa(dp324354 +g291130 +S'lithograph in black, white, and two browns with letterpress text on Okawara 60 gsm mold made kozo paper' +p324355 +sg291132 +S'published 1986' +p324356 +sg291134 +S'The Departure of the Argonaut, Chapter II (9)' +p324357 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324358 +sa(dp324359 +g291130 +S'lithograph in black and pale yellow with letterpress text on Okawara 60 gsm mold made kozo paper' +p324360 +sg291132 +S'published 1986' +p324361 +sg291134 +S'The Departure of the Argonaut, Chapter II (10)' +p324362 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324363 +sa(dp324364 +g291130 +S'lithograph in black, white, and two browns with letterpress text on Okawara 60 gsm mold made kozo paper' +p324365 +sg291132 +S'published 1986' +p324366 +sg291134 +S'The Departure of the Argonaut, Chapter II (11)' +p324367 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324368 +sa(dp324369 +g291130 +S'lithograph in black, white, and two browns with letterpress text on Okawara 60 gsm mold made kozo paper' +p324370 +sg291132 +S'published 1986' +p324371 +sg291134 +S'The Departure of the Argonaut, Chapter II (12)' +p324372 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324373 +sa(dp324374 +g291130 +S'lithograph in black, white, and two browns with letterpress text on Okawara 60 gsm mold made kozo paper' +p324375 +sg291132 +S'published 1986' +p324376 +sg291134 +S'The Departure of the Argonaut, Chapter II (13)' +p324377 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324378 +sa(dp324379 +g291130 +S'lithograph in black with red letterpress text on Okawara 60 gsm mold made kozo paper' +p324380 +sg291132 +S'published 1986' +p324381 +sg291134 +S'The Departure of the Argonaut, Chapter III (14)' +p324382 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324383 +sa(dp324384 +g291130 +S'lithograph in black and orange with letterpress text on Okawara 60 gsm mold made kozo paper' +p324385 +sg291132 +S'published 1986' +p324386 +sg291134 +S'The Departure of the Argonaut, Chapter III (15)' +p324387 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324388 +sa(dp324389 +g291130 +S'lithograph in black and orange with letterpress text on Okawara 60 gsm mold made kozo paper' +p324390 +sg291132 +S'published 1986' +p324391 +sg291134 +S'The Departure of the Argonaut, Chapter III (16)' +p324392 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324393 +sa(dp324394 +g291130 +S'lithograph in black and orange with letterpress text on Okawara 60 gsm mold made kozo paper' +p324395 +sg291132 +S'published 1986' +p324396 +sg291134 +S'The Departure of the Argonaut, Chapter III (17)' +p324397 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324398 +sa(dp324399 +g291130 +S'lithograph in white and orange with letterpress text on Okawara 60 gsm mold made kozo paper' +p324400 +sg291132 +S'published 1986' +p324401 +sg291134 +S'The Departure of the Argonaut, Chapter III (18)' +p324402 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324403 +sa(dp324404 +g291130 +S'lithograph in beige and dark gray with red letterpress text on Okawara 60 gsm mold made kozo paper' +p324405 +sg291132 +S'published 1986' +p324406 +sg291134 +S'The Departure of the Argonaut, Chapter IV (19)' +p324407 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324408 +sa(dp324409 +g291130 +S'lithograph in yellow and dark gray with letterpress text on Okawara 60 gsm mold made kozo paper' +p324410 +sg291132 +S'published 1986' +p324411 +sg291134 +S'The Departure of the Argonaut, Chapter IV (20)' +p324412 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324413 +sa(dp324414 +g291130 +S'lithograph in orange and black with letterpress text on Okawara 60 gsm mold made kozo paper' +p324415 +sg291132 +S'published 1986' +p324416 +sg291134 +S'The Departure of the Argonaut, Chapter IV (21)' +p324417 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324418 +sa(dp324419 +g291130 +S'lithograph in red and black with letterpress text on Okawara 60 gsm mold made kozo paper' +p324420 +sg291132 +S'published 1986' +p324421 +sg291134 +S'The Departure of the Argonaut, Chapter IV (22)' +p324422 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324423 +sa(dp324424 +g291130 +S'lithograph in green and black with letterpress text on Okawara 60 gsm mold made kozo paper' +p324425 +sg291132 +S'published 1986' +p324426 +sg291134 +S'The Departure of the Argonaut, Chapter IV (23)' +p324427 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324428 +sa(dp324429 +g291130 +S'lithograph in blue and black with letterpress text on Okawara 60 gsm mold made kozo paper' +p324430 +sg291132 +S'published 1986' +p324431 +sg291134 +S'The Departure of the Argonaut, Chapter IV (24)' +p324432 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324433 +sa(dp324434 +g291130 +S'lithograph in black, white, blue, orange, and yellow with letterpress text on Okawara 60 gsm mold made kozo paper' +p324435 +sg291132 +S'published 1986' +p324436 +sg291134 +S'The Departure of the Argonaut, Chapter V (25)' +p324437 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324438 +sa(dp324439 +g291130 +S'lithograph in black, white, blue, orange, and yellow with letterpress text on Okawara 60 gsm mold made kozo paper' +p324440 +sg291132 +S'published 1986' +p324441 +sg291134 +S'The Departure of the Argonaut, Chapter V (26)' +p324442 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324443 +sa(dp324444 +g291130 +S'lithograph in black, white, blue, orange, and yellow with letterpress text on Okawara 60 gsm mold made kozo paper' +p324445 +sg291132 +S'published 1986' +p324446 +sg291134 +S'The Departure of the Argonaut, Chapter V (27)' +p324447 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324448 +sa(dp324449 +g291130 +S'lithograph in black, white, blue, orange, and yellow with letterpress text on Okawara 60 gsm mold made kozo paper' +p324450 +sg291132 +S'published 1986' +p324451 +sg291134 +S'The Departure of the Argonaut, Chapter V (28)' +p324452 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324453 +sa(dp324454 +g291130 +S'lithograph in black, white, blue, orange, and yellow with letterpress text on Okawara 60 gsm mold made kozo paper' +p324455 +sg291132 +S'published 1986' +p324456 +sg291134 +S'The Departure of the Argonaut, Chapter V (29)' +p324457 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324458 +sa(dp324459 +g291130 +S'lithograph in black, white, blue, orange, and yellow with letterpress text on Okawara 60 gsm mold made kozo paper' +p324460 +sg291132 +S'published 1986' +p324461 +sg291134 +S'The Departure of the Argonaut, Chapter V (30)' +p324462 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324463 +sa(dp324464 +g291130 +S'lithograph in black, white, blue, orange, and yellow with letterpress text on Okawara 60 gsm mold made kozo paper' +p324465 +sg291132 +S'published 1986' +p324466 +sg291134 +S'The Departure of the Argonaut, Chapter V (31)' +p324467 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324468 +sa(dp324469 +g291130 +S'lithograph in black, white, blue, orange, and yellow with letterpress text on Okawara 60 gsm mold made kozo paper' +p324470 +sg291132 +S'published 1986' +p324471 +sg291134 +S'The Departure of the Argonaut, Chapter V (32)' +p324472 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324473 +sa(dp324474 +g291130 +S'lithograph in black, white, blue, orange, and yellow with letterpress text on Okawara 60 gsm mold made kozo paper' +p324475 +sg291132 +S'published 1986' +p324476 +sg291134 +S'The Departure of the Argonaut, Chapter V (33)' +p324477 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324478 +sa(dp324479 +g291130 +S'lithograph in dark gray, black, white, blue, orange, and yellow with letterpress text on Okawara 60 gsm mold made kozo paper' +p324480 +sg291132 +S'published 1986' +p324481 +sg291134 +S'The Departure of the Argonaut, Chapter V (34)' +p324482 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324483 +sa(dp324484 +g291130 +S'lithograph in dark gray, black, white, blue, orange, and yellow with letterpress text on Okawara 60 gsm mold made kozo paper' +p324485 +sg291132 +S'published 1986' +p324486 +sg291134 +S'The Departure of the Argonaut, Chapter V (35)' +p324487 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324488 +sa(dp324489 +g291130 +S'lithograph in black with red letterpress text on Okawara 60 gsm mold made kozo paper' +p324490 +sg291132 +S'published 1986' +p324491 +sg291134 +S'The Departure of the Argonaut, Epilogue (36)' +p324492 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324493 +sa(dp324494 +g291130 +S'lithograph in black with letterpress text on Okawara 60 gsm mold made kozo paper' +p324495 +sg291132 +S'published 1986' +p324496 +sg291134 +S'The Departure of the Argonaut, Epilogue (37)' +p324497 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324498 +sa(dp324499 +g291130 +S'lithograph in black, orange, and blue with letterpress text on Okawara 60 gsm mold made kozo paper' +p324500 +sg291132 +S'published 1986' +p324501 +sg291134 +S'The Departure of the Argonaut, Epilogue (38)' +p324502 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324503 +sa(dp324504 +g291130 +S'lithograph in yellow and black with letterpress text on Okawara 60 gsm mold made kozo paper' +p324505 +sg291132 +S'published 1986' +p324506 +sg291134 +S'The Departure of the Argonaut, Epilogue (39)' +p324507 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324508 +sa(dp324509 +g291130 +S'lithograph in orange and black with letterpress text on Okawara 60 gsm mold made kozo paper' +p324510 +sg291132 +S'published 1986' +p324511 +sg291134 +S'The Departure of the Argonaut, Epilogue (40)' +p324512 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324513 +sa(dp324514 +g291130 +S'lithograph in green, black and orange with letterpress text on Okawara 60 gsm mold made kozo paper' +p324515 +sg291132 +S'published 1986' +p324516 +sg291134 +S'The Departure of the Argonaut, Epilogue (41)' +p324517 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324518 +sa(dp324519 +g291130 +S'lithograph in black, green, and orange with letterpress text on Okawara 60 gsm mold made kozo paper' +p324520 +sg291132 +S'published 1986' +p324521 +sg291134 +S'The Departure of the Argonaut, Epilogue (42)' +p324522 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324523 +sa(dp324524 +g291130 +S'lithograph in green and orange with letterpress text on Okawara 60 gsm mold made kozo paper' +p324525 +sg291132 +S'published 1986' +p324526 +sg291134 +S'The Departure of the Argonaut, Epilogue (43)' +p324527 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324528 +sa(dp324529 +g291130 +S'lithograph in green and orange with letterpress text on Okawara 60 gsm mold made kozo paper' +p324530 +sg291132 +S'published 1986' +p324531 +sg291134 +S'The Departure of the Argonaut, Epilogue (44)' +p324532 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324533 +sa(dp324534 +g291130 +S'lithograph in black and orange with letterpress text on Okawara 60 gsm mold made kozo paper' +p324535 +sg291132 +S'published 1986' +p324536 +sg291134 +S'The Departure of the Argonaut, Epilogue (45)' +p324537 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324538 +sa(dp324539 +g291130 +S'lithograph in black and orange with letterpress text on Okawara 60 gsm mold made kozo paper' +p324540 +sg291132 +S'published 1986' +p324541 +sg291134 +S'The Departure of the Argonaut, Epilogue (46)' +p324542 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324543 +sa(dp324544 +g291130 +S'lithograph in green, black, white, and orange with letterpress text on Okawara 60 gsm mold made kozo paper' +p324545 +sg291132 +S'published 1986' +p324546 +sg291134 +S'The Departure of the Argonaut, Epilogue (47)' +p324547 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324548 +sa(dp324549 +g291130 +S'lithograph in green and orange with letterpress text on Okawara 60 gsm mold made kozo paper' +p324550 +sg291132 +S'published 1986' +p324551 +sg291134 +S'The Departure of the Argonaut, Epilogue (48)' +p324552 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324553 +sa(dp324554 +g291130 +S'lithograph in black with letterpress text on Okawara 60 gsm mold made kozo paper' +p324555 +sg291132 +S'published 1986' +p324556 +sg291134 +S'Colophon Page' +p324557 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p324558 +sa(dp324559 +g291134 +S'Field Hand [recto]' +p324560 +sg291137 +S'Andrew Wyeth' +p324561 +sg291130 +S'dry brush watercolor on wove paper' +p324562 +sg291132 +S'1985' +p324563 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a03.jpg' +p324564 +sg291136 +g27 +sa(dp324565 +g291130 +S'graphite on wove paper' +p324566 +sg291132 +S'1985' +p324567 +sg291134 +S'Field Hand [verso]' +p324568 +sg291136 +g27 +sg291137 +S'Andrew Wyeth' +p324569 +sa(dp324570 +g291134 +S'Shepherds Peering into a Chasm' +p324571 +sg291137 +S'Guercino' +p324572 +sg291130 +S', 1620s' +p324573 +sg291132 +S'\n' +p324574 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074b4.jpg' +p324575 +sg291136 +g27 +sa(dp324576 +g291134 +S'Valley of the Lledr, North Wales (no.1)' +p324577 +sg291137 +S'George Elbert Burr' +p324578 +sg291130 +S'drypoint on laid paper' +p324579 +sg291132 +S'probably c. 1900' +p324580 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f3/a000f3b1.jpg' +p324581 +sg291136 +g27 +sa(dp324582 +g291134 +S'On Lake Como' +p324583 +sg291137 +S'George Elbert Burr' +p324584 +sg291130 +S'etching in brown on laid paper' +p324585 +sg291132 +S'probably c. 1900' +p324586 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f3/a000f3a8.jpg' +p324587 +sg291136 +g27 +sa(dp324588 +g291134 +S'Sentinel Pine' +p324589 +sg291137 +S'George Elbert Burr' +p324590 +sg291130 +S'etching and drypoint on laid paper' +p324591 +sg291132 +S'in or before 1938' +p324592 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fd/a000fd8d.jpg' +p324593 +sg291136 +g27 +sa(dp324594 +g291134 +S'Snow' +p324595 +sg291137 +S'George Elbert Burr' +p324596 +sg291130 +S'drypoint on wove paper' +p324597 +sg291132 +S'unknown date\n' +p324598 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f3/a000f3a9.jpg' +p324599 +sg291136 +g27 +sa(dp324600 +g291134 +S'Palm Canyon (no.1)' +p324601 +sg291137 +S'George Elbert Burr' +p324602 +sg291130 +S'drypoint on wove paper' +p324603 +sg291132 +S'in or before 1921' +p324604 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f3/a000f3ab.jpg' +p324605 +sg291136 +g27 +sa(dp324606 +g291134 +S'Palo Verde Trees' +p324607 +sg291137 +S'George Elbert Burr' +p324608 +sg291130 +S'soft-ground etching in red on wove paper' +p324609 +sg291132 +S'in or before 1921' +p324610 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f3/a000f3ac.jpg' +p324611 +sg291136 +g27 +sa(dp324612 +g291134 +S'Desert Sunset (Sunset)' +p324613 +sg291137 +S'George Elbert Burr' +p324614 +sg291130 +S'etching with plate tone in greenish-black on wove paper' +p324615 +sg291132 +S'1921' +p324616 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fd/a000fd8e.jpg' +p324617 +sg291136 +g27 +sa(dp324618 +g291134 +S'Dawn in the Land of Buttes' +p324619 +sg291137 +S'George Elbert Burr' +p324620 +sg291130 +S'etching on wove paper' +p324621 +sg291132 +S'in or before 1921' +p324622 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f3/a000f3b2.jpg' +p324623 +sg291136 +g27 +sa(dp324624 +g291134 +S'Superstition Mountain, Apache Trail, Arizona (no.1)' +p324625 +sg291137 +S'George Elbert Burr' +p324626 +sg291130 +S'etching in greenish-black on japan paper' +p324627 +sg291132 +S'in or before 1929' +p324628 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fd/a000fd83.jpg' +p324629 +sg291136 +g27 +sa(dp324630 +g291134 +S'Road to Paradise Valley, Arizona' +p324631 +sg291137 +S'George Elbert Burr' +p324632 +sg291130 +S'etching with drypoint in brown on laid paper' +p324633 +sg291132 +S'in or before 1926' +p324634 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f3/a000f3b3.jpg' +p324635 +sg291136 +g27 +sa(dp324636 +g291134 +S'Summer Cloud, Apache Trail, Arizona' +p324637 +sg291137 +S'George Elbert Burr' +p324638 +sg291130 +S'drypoint and aquatint in greenish-black on wove paper' +p324639 +sg291132 +S'unknown date\n' +p324640 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fd/a000fd84.jpg' +p324641 +sg291136 +g27 +sa(dp324642 +g291134 +S'The First Snow (no.2)' +p324643 +sg291137 +S'George Elbert Burr' +p324644 +sg291130 +S'drypoint on wove paper' +p324645 +sg291132 +S'unknown date\n' +p324646 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f3/a000f3aa.jpg' +p324647 +sg291136 +g27 +sa(dp324648 +g291134 +S"Misty Day, Paul's Wharf, London" +p324649 +sg291137 +S'George Elbert Burr' +p324650 +sg291130 +S'drypoint in greenish-black on laid paper' +p324651 +sg291132 +S'in or before 1928' +p324652 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fd/a000fd85.jpg' +p324653 +sg291136 +g27 +sa(dp324654 +g291134 +S'Coast at Monterey, California' +p324655 +sg291137 +S'George Elbert Burr' +p324656 +sg291130 +S'etching, drypoint, and plate tone in greenish-black on laid paper' +p324657 +sg291132 +S'in or after 1906' +p324658 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fd/a000fd86.jpg' +p324659 +sg291136 +g27 +sa(dp324660 +g291134 +S'Whirlwinds, Dead Mountains, Mojave Desert' +p324661 +sg291137 +S'George Elbert Burr' +p324662 +sg291130 +S'drypoint with plate tone in green on wove paper' +p324663 +sg291132 +S'in or before 1928' +p324664 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fd/a000fd87.jpg' +p324665 +sg291136 +g27 +sa(dp324666 +g291134 +S'The Edge of the Desert, Arizona' +p324667 +sg291137 +S'George Elbert Burr' +p324668 +sg291130 +S'etching and drypoint in greenish-black on laid paper' +p324669 +sg291132 +S'in or after 1924' +p324670 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a35.jpg' +p324671 +sg291136 +g27 +sa(dp324672 +g291134 +S'A Mirage, Arizona' +p324673 +sg291137 +S'George Elbert Burr' +p324674 +sg291130 +S'drypoint on laid paper' +p324675 +sg291132 +S'in or before 1921' +p324676 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a36.jpg' +p324677 +sg291136 +g27 +sa(dp324678 +g291134 +S'Sketch on Apache Trail' +p324679 +sg291137 +S'George Elbert Burr' +p324680 +sg291130 +S'etching with drypoint in brown on laid paper' +p324681 +sg291132 +S'unknown date\n' +p324682 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f3/a000f3ad.jpg' +p324683 +sg291136 +g27 +sa(dp324684 +g291134 +S'The Etcher' +p324685 +sg291137 +S'George Elbert Burr' +p324686 +sg291130 +S'drypoint in greenish-black on laid paper' +p324687 +sg291132 +S'c. 1919' +p324688 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f3/a000f3ae.jpg' +p324689 +sg291136 +g27 +sa(dp324690 +g291134 +S'Whirlwinds, Mojave Desert, California (no.3)' +p324691 +sg291137 +S'George Elbert Burr' +p324692 +sg291130 +S'drypoint and aquatint in greenish-black on laid paper' +p324693 +sg291132 +S'unknown date\n' +p324694 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fd/a000fd8c.jpg' +p324695 +sg291136 +g27 +sa(dp324696 +g291134 +S'Arizona Night (Near Needles, Arizona)' +p324697 +sg291137 +S'George Elbert Burr' +p324698 +sg291130 +S'drypoint and aquatint in green on wove paper' +p324699 +sg291132 +S'in or before 1930' +p324700 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a37.jpg' +p324701 +sg291136 +g27 +sa(dp324702 +g291134 +S'Mesa Encantada, New Mexico (no.2)' +p324703 +sg291137 +S'George Elbert Burr' +p324704 +sg291130 +S'drypoint on laid paper' +p324705 +sg291132 +S'unknown date\n' +p324706 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f3/a000f3b4.jpg' +p324707 +sg291136 +g27 +sa(dp324708 +g291134 +S'Verde River, Apache Reservation, Arizona' +p324709 +sg291137 +S'George Elbert Burr' +p324710 +sg291130 +S'drypoint and soft-ground etching in green on wove paper' +p324711 +sg291132 +S'in or after 1920' +p324712 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fd/a000fd88.jpg' +p324713 +sg291136 +g27 +sa(dp324714 +g291134 +S'Verde River, Arizona (Verde River, Apache Reservation, Arizona)' +p324715 +sg291137 +S'George Elbert Burr' +p324716 +sg291130 +S'drypoint and soft-ground etching in green on wove paper' +p324717 +sg291132 +S'in or after 1920' +p324718 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fd/a000fd89.jpg' +p324719 +sg291136 +g27 +sa(dp324720 +g291134 +S'Dunes near Palm Springs, California (no.2)' +p324721 +sg291137 +S'George Elbert Burr' +p324722 +sg291130 +S'drypoint in brownish-black on wove paper' +p324723 +sg291132 +S'unknown date\n' +p324724 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f3/a000f3af.jpg' +p324725 +sg291136 +g27 +sa(dp324726 +g291134 +S'Harlech Castle, Wales' +p324727 +sg291137 +S'George Elbert Burr' +p324728 +sg291130 +S'drypoint on laid paper' +p324729 +sg291132 +S'unknown date\n' +p324730 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fd/a000fd8a.jpg' +p324731 +sg291136 +g27 +sa(dp324732 +g291134 +S'Sketch of Florence' +p324733 +sg291137 +S'George Elbert Burr' +p324734 +sg291130 +S'drypoint on laid paper' +p324735 +sg291132 +S'unknown date\n' +p324736 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fd/a000fd8b.jpg' +p324737 +sg291136 +g27 +sa(dp324738 +g291134 +S'Evening, Arizona' +p324739 +sg291137 +S'George Elbert Burr' +p324740 +sg291130 +S'etching, drypoint, and aquatint on wove paper' +p324741 +sg291132 +S'in or before 1930' +p324742 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f3/a000f3b0.jpg' +p324743 +sg291136 +g27 +sa(dp324744 +g291134 +S'Juno with Her Peacock' +p324745 +sg291137 +S'Antoine-Louis Barye' +p324746 +sg291130 +S'bronze' +p324747 +sg291132 +S'model c. 1840, cast after 1855' +p324748 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00029/a00029ba.jpg' +p324749 +sg291136 +g27 +sa(dp324750 +g291134 +S'God the Father' +p324751 +sg291137 +S'Artist Information (' +p324752 +sg291130 +S'French, 1612 - 1695' +p324753 +sg291132 +S'(related artist)' +p324754 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005ab2.jpg' +p324755 +sg291136 +g27 +sa(dp324756 +g291134 +S'A Fantastic Vase' +p324757 +sg291137 +S'Giovanni Battista Piranesi' +p324758 +sg291130 +S'pen and black ink with gray wash over black chalk on laid paper' +p324759 +sg291132 +S'1745/1747' +p324760 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00059/a000596b.jpg' +p324761 +sg291136 +g27 +sa(dp324762 +g291134 +S'Three Studies of Hands Clasped in Prayer' +p324763 +sg291137 +S'Jacopo Guarana' +p324764 +sg291130 +S'black chalk heightened with white on reddish-brown laid paper' +p324765 +sg291132 +S'unknown date\n' +p324766 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006eea.jpg' +p324767 +sg291136 +g27 +sa(dp324768 +g291134 +S'A Capriccio of Ruins by the Lagoon' +p324769 +sg291137 +S'Francesco Guardi' +p324770 +sg291130 +S'pen and brown ink with brown and gray wash on laid paper; laid down' +p324771 +sg291132 +S'unknown date\n' +p324772 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a000709a.jpg' +p324773 +sg291136 +g27 +sa(dp324774 +g291134 +S'First Station' +p324775 +sg291137 +S'Barnett Newman' +p324776 +sg291130 +S'Magna on canvas' +p324777 +sg291132 +S'1958' +p324778 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000177.jpg' +p324779 +sg291136 +g27 +sa(dp324780 +g291134 +S'Second Station' +p324781 +sg291137 +S'Barnett Newman' +p324782 +sg291130 +S'Magna on canvas' +p324783 +sg291132 +S'1958' +p324784 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a000017e.jpg' +p324785 +sg291136 +g27 +sa(dp324786 +g291134 +S'Third Station' +p324787 +sg291137 +S'Barnett Newman' +p324788 +sg291130 +S'oil on canvas' +p324789 +sg291132 +S'1960' +p324790 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a000017f.jpg' +p324791 +sg291136 +g27 +sa(dp324792 +g291134 +S'Fourth Station' +p324793 +sg291137 +S'Barnett Newman' +p324794 +sg291130 +S'oil on canvas' +p324795 +sg291132 +S'1960' +p324796 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000180.jpg' +p324797 +sg291136 +g27 +sa(dp324798 +g291134 +S'Fifth Station' +p324799 +sg291137 +S'Barnett Newman' +p324800 +sg291130 +S'oil on canvas' +p324801 +sg291132 +S'1962' +p324802 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000181.jpg' +p324803 +sg291136 +g27 +sa(dp324804 +g291134 +S'Sixth Station' +p324805 +sg291137 +S'Barnett Newman' +p324806 +sg291130 +S'oil on canvas' +p324807 +sg291132 +S'1962' +p324808 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a00001b1.jpg' +p324809 +sg291136 +g27 +sa(dp324810 +g291134 +S'Seventh Station' +p324811 +sg291137 +S'Barnett Newman' +p324812 +sg291130 +S'oil on canvas' +p324813 +sg291132 +S'1964' +p324814 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000182.jpg' +p324815 +sg291136 +g27 +sa(dp324816 +g291134 +S'Eighth Station' +p324817 +sg291137 +S'Barnett Newman' +p324818 +sg291130 +S'oil on canvas' +p324819 +sg291132 +S'1964' +p324820 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000183.jpg' +p324821 +sg291136 +g27 +sa(dp324822 +g291134 +S'Ninth Station' +p324823 +sg291137 +S'Barnett Newman' +p324824 +sg291130 +S'acrylic on canvas' +p324825 +sg291132 +S'1964' +p324826 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000184.jpg' +p324827 +sg291136 +g27 +sa(dp324828 +g291134 +S'Tenth Station' +p324829 +sg291137 +S'Barnett Newman' +p324830 +sg291130 +S'Magna on canvas' +p324831 +sg291132 +S'1965' +p324832 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000178.jpg' +p324833 +sg291136 +g27 +sa(dp324834 +g291134 +S'Eleventh Station' +p324835 +sg291137 +S'Barnett Newman' +p324836 +sg291130 +S'acrylic on canvas' +p324837 +sg291132 +S'1965' +p324838 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000179.jpg' +p324839 +sg291136 +g27 +sa(dp324840 +g291134 +S'Twelfth Station' +p324841 +sg291137 +S'Barnett Newman' +p324842 +sg291130 +S'acrylic on canvas' +p324843 +sg291132 +S'1965' +p324844 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a000017a.jpg' +p324845 +sg291136 +g27 +sa(dp324846 +g291134 +S'Thirteenth Station' +p324847 +sg291137 +S'Barnett Newman' +p324848 +sg291130 +S'acrylic on canvas' +p324849 +sg291132 +S'1965/1966' +p324850 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a000017b.jpg' +p324851 +sg291136 +g27 +sa(dp324852 +g291134 +S'Fourteenth Station' +p324853 +sg291137 +S'Barnett Newman' +p324854 +sg291130 +S'acrylic and Duco on canvas' +p324855 +sg291132 +S'1965/1966' +p324856 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a000017c.jpg' +p324857 +sg291136 +g27 +sa(dp324858 +g291134 +S'Be II' +p324859 +sg291137 +S'Barnett Newman' +p324860 +sg291130 +S'acrylic and oil on canvas' +p324861 +sg291132 +S'1961/1964' +p324862 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a000017d.jpg' +p324863 +sg291136 +g27 +sa(dp324864 +g291134 +S'Head of a Man Wearing a Plumed Turban' +p324865 +sg291137 +S'Artist Information (' +p324866 +sg291130 +S'(artist after)' +p324867 +sg291132 +S'\n' +p324868 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d0e.jpg' +p324869 +sg291136 +g27 +sa(dp324870 +g291134 +S'Madonna and Child' +p324871 +sg291137 +S'Dirck Bouts' +p324872 +sg291130 +S'oil on panel' +p324873 +sg291132 +S'c. 1465' +p324874 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00005/a000059e.jpg' +p324875 +sg291136 +S"Dirck Bouts was a member of the second generation of artists who \n followed and pursued the style of \n Small enough to fit in the palm of the hand, this tiny work was \n evidently an item of personal devotion. The light that falls on the Virgin \n and Child, their expressions, and their postures are subtly manipulated to \n make the infant appear bright and alert while the Madonna seems pensive and \n somber, her face darkened by sadness. Fifteenth-century viewers would have \n immediately interpreted this difference as evidence that Mary was \n foreseeing the future of Christ on the cross. They believed that the Virgin \n had suffered along with her son, actually experiencing the same pain. This \n kind of empathetic identification was an important element of religious \n life in the north during the fifteenth century. By meditating on such \n dramatic closeups of great immediacy, the worshiper also could experience \n Jesus' life and suffering in a direct and personal way.\n " +p324876 +sa(dp324877 +g291134 +S'Berkeley No. 52' +p324878 +sg291137 +S'Richard Diebenkorn' +p324879 +sg291130 +S'oil on canvas' +p324880 +sg291132 +S'1955' +p324881 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00000/a000007c.jpg' +p324882 +sg291136 +g27 +sa(dp324883 +g291130 +S'Italian, 1475 - 1564' +p324884 +sg291132 +S'(artist after)' +p324885 +sg291134 +S'Damned Soul' +p324886 +sg291136 +g27 +sg291137 +S'Artist Information (' +p324887 +sa(dp324888 +g291134 +S'River Landscape with Cows' +p324889 +sg291137 +S'Aelbert Cuyp' +p324890 +sg291130 +S'oil on panel' +p324891 +sg291132 +S'1645/1650' +p324892 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e56.jpg' +p324893 +sg291136 +g27 +sa(dp324894 +g291134 +S'Thomas Jefferson' +p324895 +sg291137 +S'Gilbert Stuart' +p324896 +sg291130 +S'oil on wood' +p324897 +sg291132 +S'c. 1821' +p324898 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00002/a0000259.jpg' +p324899 +sg291136 +S'Stuart painted the third president from life three times during his administration of 1801 to 1809. This Gibbs-Coolidge rendition was most likely based on other pictures Stuart had painted from life that where either in his possession or accessible to him.\n ' +p324900 +sa(dp324901 +g291134 +S'New York' +p324902 +sg291137 +S'George Bellows' +p324903 +sg291130 +S'oil on canvas' +p324904 +sg291132 +S'1911' +p324905 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00000/a0000023.jpg' +p324906 +sg291136 +g27 +sa(dp324907 +g291134 +S'The Harbor of St. Malo at Low Tide' +p324908 +sg291137 +S'William Callow' +p324909 +sg291130 +S'watercolor with gouache over graphite on wove paper' +p324910 +sg291132 +S'c. 1850' +p324911 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c7d.jpg' +p324912 +sg291136 +g27 +sa(dp324913 +g291134 +S'The School Walk' +p324914 +sg291137 +S'David Cox' +p324915 +sg291130 +S'watercolor over graphite on wove paper' +p324916 +sg291132 +S'unknown date\n' +p324917 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00031/a00031b1.jpg' +p324918 +sg291136 +g27 +sa(dp324919 +g291134 +S"View of the Governor's House in St. Helena" +p324920 +sg291137 +S'Thomas Daniell' +p324921 +sg291130 +S'gray wash over graphite on laid paper' +p324922 +sg291132 +S'1794' +p324923 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a000696b.jpg' +p324924 +sg291136 +g27 +sa(dp324925 +g291134 +S'Evening on the Foss Dyke near Lincoln' +p324926 +sg291137 +S'Peter De Wint' +p324927 +sg291130 +S'watercolor over graphite on wove paper' +p324928 +sg291132 +S'unknown date\n' +p324929 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c8e.jpg' +p324930 +sg291136 +g27 +sa(dp324931 +g291134 +S'A Meadow with Cattle near Glastonbury' +p324932 +sg291137 +S'Peter De Wint' +p324933 +sg291130 +S'watercolor over graphite on wove paper' +p324934 +sg291132 +S'unknown date\n' +p324935 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c90.jpg' +p324936 +sg291136 +g27 +sa(dp324937 +g291134 +S'Comfort the Afflicted' +p324938 +sg291137 +S'John Flaxman' +p324939 +sg291130 +S'pen and gray ink with gray and brown wash over graphite on laid paper' +p324940 +sg291132 +S'c. 1790' +p324941 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a00072c5.jpg' +p324942 +sg291136 +g27 +sa(dp324943 +g291134 +S"St. James' Park with a View of Westminster Abbey" +p324944 +sg291137 +S'Thomas Girtin' +p324945 +sg291130 +S'watercolor over graphite on oatmeal paper' +p324946 +sg291132 +S'unknown date\n' +p324947 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a0006963.jpg' +p324948 +sg291136 +g27 +sa(dp324949 +g291134 +S'Travelers Resting by a Fallen Tree' +p324950 +sg291137 +S'John Linnell' +p324951 +sg291130 +S'watercolor and gouache with pen and brown ink over graphite on wove paper' +p324952 +sg291132 +S'1852' +p324953 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cb3.jpg' +p324954 +sg291136 +g27 +sa(dp324955 +g291134 +S'Sailboats on Southampton River' +p324956 +sg291137 +S'John Linnell' +p324957 +sg291130 +S'watercolor on wove paper' +p324958 +sg291132 +S'1819' +p324959 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a00025ec.jpg' +p324960 +sg291136 +g27 +sa(dp324961 +g291134 +S'Gleaners in the Wheat Field' +p324962 +sg291137 +S'John Martin' +p324963 +sg291130 +S'watercolor with gouache on wove paper' +p324964 +sg291132 +S'1847' +p324965 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c32.jpg' +p324966 +sg291136 +g27 +sa(dp324967 +g291134 +S'Harvesters by Firelight' +p324968 +sg291137 +S'Samuel Palmer' +p324969 +sg291130 +S'pen and black ink with watercolor and gouache on wove paper' +p324970 +sg291132 +S'1830' +p324971 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a0002612.jpg' +p324972 +sg291136 +g27 +sa(dp324973 +g291134 +S'The Naval College from the River at Greenwich' +p324974 +sg291137 +S'David Roberts' +p324975 +sg291130 +S'watercolor and gouache over graphite on wove paper' +p324976 +sg291132 +S'1861' +p324977 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cce.jpg' +p324978 +sg291136 +g27 +sa(dp324979 +g291134 +S'A Funeral Procession' +p324980 +sg291137 +S'Thomas Rowlandson' +p324981 +sg291130 +S'pen and brown and gray ink with watercolor over graphite on wove paper' +p324982 +sg291132 +S'1805/1810' +p324983 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e96.jpg' +p324984 +sg291136 +g27 +sa(dp324985 +g291134 +S'The Peep Show' +p324986 +sg291137 +S'Thomas Rowlandson' +p324987 +sg291130 +S'pen and brown ink with watercolor over graphite on laid paper' +p324988 +sg291132 +S'unknown date\n' +p324989 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a0007237.jpg' +p324990 +sg291136 +g27 +sa(dp324991 +g291134 +S'Market Day at Richmond in Yorkshire' +p324992 +sg291137 +S'Thomas Rowlandson' +p324993 +sg291130 +S'pen and brown and gray ink with watercolor over graphite on wove paper' +p324994 +sg291132 +S'c. 1818' +p324995 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ec0.jpg' +p324996 +sg291136 +g27 +sa(dp324997 +g291134 +S'The Bridge at Bridgnorth in Shropshire' +p324998 +sg291137 +S'Paul Sandby' +p324999 +sg291130 +S'pen and gray ink with watercolor over graphite on laid paper' +p325000 +sg291132 +S'unknown date\n' +p325001 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a0006966.jpg' +p325002 +sg291136 +g27 +sa(dp325003 +g291134 +S'A Packet Boat off Dover' +p325004 +sg291137 +S'Joseph Mallord William Turner' +p325005 +sg291130 +S'watercolor and gouache with touches of black chalk on wove paper' +p325006 +sg291132 +S'c. 1836' +p325007 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cd1.jpg' +p325008 +sg291136 +g27 +sa(dp325009 +g291134 +S'A Yorkshire River' +p325010 +sg291137 +S'Joseph Mallord William Turner' +p325011 +sg291130 +S'watercolor on wove paper' +p325012 +sg291132 +S'c. 1827' +p325013 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00050/a0005095.jpg' +p325014 +sg291136 +g27 +sa(dp325015 +g291134 +S'Conway in North Wales' +p325016 +sg291137 +S'John Varley' +p325017 +sg291130 +S'watercolor over graphite on wove paper' +p325018 +sg291132 +S'1803' +p325019 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cdd.jpg' +p325020 +sg291136 +g27 +sa(dp325021 +g291134 +S'Looking under the Bridge' +p325022 +sg291137 +S'John Varley' +p325023 +sg291130 +S'watercolor over graphite on wove paper' +p325024 +sg291132 +S'unknown date\n' +p325025 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00037/a00037fa.jpg' +p325026 +sg291136 +g27 +sa(dp325027 +g291134 +S'Landing Place near Tintern Abbey' +p325028 +sg291137 +S'James Ward' +p325029 +sg291130 +S'watercolor and graphite on paper' +p325030 +sg291132 +S'probably c. 1802' +p325031 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c49.jpg' +p325032 +sg291136 +g27 +sa(dp325033 +g291130 +S'oil on canvas' +p325034 +sg291132 +S'1977' +p325035 +sg291134 +S'Contact' +p325036 +sg291136 +g27 +sg291137 +S'Richard Lindner' +p325037 +sa(dp325038 +g291134 +S'Pluto and Persephone (Allegory of Fire)' +p325039 +sg291137 +S'Fran\xc3\xa7ois Girardon' +p325040 +sg291130 +S'bronze' +p325041 +sg291132 +S'original marble 1677/1699, bronze cast c. 1693-1716' +p325042 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a0006914.jpg' +p325043 +sg291136 +g27 +sa(dp325044 +g291134 +S'Boreas and Orithyia (Allegory of Air)' +p325045 +sg291137 +S'Artist Information (' +p325046 +sg291130 +S'(artist)' +p325047 +sg291132 +S'\n' +p325048 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c16.jpg' +p325049 +sg291136 +g27 +sa(dp325050 +g291130 +S'welded Monel' +p325051 +sg291132 +S'1981' +p325052 +sg291134 +S'Maquette for "Threshold"' +p325053 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325054 +sa(dp325055 +g291130 +S'welded Monel' +p325056 +sg291132 +S'1975' +p325057 +sg291134 +S'Maquette for "Thorn Mill"' +p325058 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325059 +sa(dp325060 +g291130 +S'welded Monel' +p325061 +sg291132 +S'1976' +p325062 +sg291134 +S'Maquette for "Sailing"' +p325063 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325064 +sa(dp325065 +g291130 +S'crayon on wove paper' +p325066 +sg291132 +S'1952' +p325067 +sg291134 +S'Untitled' +p325068 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325069 +sa(dp325070 +g291130 +S'crayon on wove paper' +p325071 +sg291132 +S'1953' +p325072 +sg291134 +S'Untitled' +p325073 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325074 +sa(dp325075 +g291130 +S'crayon on wove paper' +p325076 +sg291132 +S'1954' +p325077 +sg291134 +S'Untitled' +p325078 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325079 +sa(dp325080 +g291130 +S'crayon on wove paper' +p325081 +sg291132 +S'1957' +p325082 +sg291134 +S'Untitled' +p325083 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325084 +sa(dp325085 +g291130 +S'crayon on wove paper' +p325086 +sg291132 +S'1957' +p325087 +sg291134 +S'Untitled' +p325088 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325089 +sa(dp325090 +g291130 +S'crayon on wove paper' +p325091 +sg291132 +S'1958' +p325092 +sg291134 +S'Untitled' +p325093 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325094 +sa(dp325095 +g291130 +S'crayon on wove paper' +p325096 +sg291132 +S'1959' +p325097 +sg291134 +S'Untitled' +p325098 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325099 +sa(dp325100 +g291130 +S'crayon on wove paper' +p325101 +sg291132 +S'1957' +p325102 +sg291134 +S'Untitled' +p325103 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325104 +sa(dp325105 +g291130 +S'crayon on wove paper' +p325106 +sg291132 +S'1959' +p325107 +sg291134 +S'Untitled' +p325108 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325109 +sa(dp325110 +g291130 +S'crayon on wove paper' +p325111 +sg291132 +S'1961' +p325112 +sg291134 +S'Untitled' +p325113 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325114 +sa(dp325115 +g291130 +S'crayon on wove paper' +p325116 +sg291132 +S'1962' +p325117 +sg291134 +S'Untitled' +p325118 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325119 +sa(dp325120 +g291130 +S'crayon on wove paper' +p325121 +sg291132 +S'1962' +p325122 +sg291134 +S'Untitled' +p325123 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325124 +sa(dp325125 +g291130 +S'crayon on wove paper' +p325126 +sg291132 +S'1962' +p325127 +sg291134 +S'Untitled' +p325128 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325129 +sa(dp325130 +g291130 +S'crayon on wove paper' +p325131 +sg291132 +S'probably 1962' +p325132 +sg291134 +S'Untitled' +p325133 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325134 +sa(dp325135 +g291130 +S'crayon on wove paper' +p325136 +sg291132 +S'1962' +p325137 +sg291134 +S'Untitled' +p325138 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325139 +sa(dp325140 +g291130 +S'crayon on wove paper' +p325141 +sg291132 +S'1962' +p325142 +sg291134 +S'Untitled' +p325143 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325144 +sa(dp325145 +g291130 +S'crayon on wove paper' +p325146 +sg291132 +S'1962' +p325147 +sg291134 +S'Untitled' +p325148 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325149 +sa(dp325150 +g291130 +S'crayon on wove paper' +p325151 +sg291132 +S'1966' +p325152 +sg291134 +S'Untitled' +p325153 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325154 +sa(dp325155 +g291130 +S'crayon on wove paper' +p325156 +sg291132 +S'1966' +p325157 +sg291134 +S'Untitled' +p325158 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325159 +sa(dp325160 +g291130 +S'crayon on wove paper' +p325161 +sg291132 +S'1966' +p325162 +sg291134 +S'Untitled' +p325163 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325164 +sa(dp325165 +g291130 +S'crayon on wove paper' +p325166 +sg291132 +S'1967' +p325167 +sg291134 +S'Untitled' +p325168 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325169 +sa(dp325170 +g291130 +S'crayon on wove paper' +p325171 +sg291132 +S'1967' +p325172 +sg291134 +S'Untitled' +p325173 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325174 +sa(dp325175 +g291130 +S'crayon on wove paper' +p325176 +sg291132 +S'1967' +p325177 +sg291134 +S'Untitled' +p325178 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325179 +sa(dp325180 +g291130 +S'crayon on wove paper' +p325181 +sg291132 +S'1967' +p325182 +sg291134 +S'Untitled' +p325183 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325184 +sa(dp325185 +g291130 +S'crayon on wove paper' +p325186 +sg291132 +S'1967' +p325187 +sg291134 +S'Untitled' +p325188 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325189 +sa(dp325190 +g291130 +S'crayon on wove paper' +p325191 +sg291132 +S'1968' +p325192 +sg291134 +S'Untitled' +p325193 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325194 +sa(dp325195 +g291130 +S'crayon on wove paper' +p325196 +sg291132 +S'1968' +p325197 +sg291134 +S'Untitled' +p325198 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325199 +sa(dp325200 +g291130 +S'crayon on wove paper' +p325201 +sg291132 +S'1969' +p325202 +sg291134 +S'Untitled' +p325203 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325204 +sa(dp325205 +g291130 +S'crayon on wove paper' +p325206 +sg291132 +S'1975' +p325207 +sg291134 +S'Untitled' +p325208 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325209 +sa(dp325210 +g291130 +S'crayon on wove paper' +p325211 +sg291132 +S'1979' +p325212 +sg291134 +S'Untitled' +p325213 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325214 +sa(dp325215 +g291130 +S'crayon on wove paper' +p325216 +sg291132 +S'1980' +p325217 +sg291134 +S'Untitled' +p325218 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325219 +sa(dp325220 +g291130 +S'crayon on wove paper' +p325221 +sg291132 +S'1980' +p325222 +sg291134 +S'Untitled' +p325223 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325224 +sa(dp325225 +g291130 +S'crayon on wove paper' +p325226 +sg291132 +S'1983' +p325227 +sg291134 +S'Untitled' +p325228 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325229 +sa(dp325230 +g291130 +S'crayon on wove paper' +p325231 +sg291132 +S'1983' +p325232 +sg291134 +S'Untitled' +p325233 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325234 +sa(dp325235 +g291130 +S'crayon on wove paper' +p325236 +sg291132 +S'1984' +p325237 +sg291134 +S'Untitled' +p325238 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325239 +sa(dp325240 +g291130 +S'crayon on wove paper' +p325241 +sg291132 +S'1952' +p325242 +sg291134 +S'Untitled' +p325243 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325244 +sa(dp325245 +g291130 +S'crayon on wove paper' +p325246 +sg291132 +S'1957' +p325247 +sg291134 +S'Untitled' +p325248 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325249 +sa(dp325250 +g291130 +S'crayon on wove paper' +p325251 +sg291132 +S'1963' +p325252 +sg291134 +S'Untitled' +p325253 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325254 +sa(dp325255 +g291130 +S'crayon on wove paper' +p325256 +sg291132 +S'1980' +p325257 +sg291134 +S'Untitled' +p325258 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325259 +sa(dp325260 +g291130 +S'nickel silver on Monel' +p325261 +sg291132 +S'1964' +p325262 +sg291134 +S'Gateway' +p325263 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p325264 +sa(dp325265 +g291134 +S'Venetian Party in a Chateau Garden' +p325266 +sg291137 +S'David Vinckboons' +p325267 +sg291130 +S'pen and brown ink, brown and gray wash, heightened with white on two sheets of paper joined vertically; incised for transfer; laid down' +p325268 +sg291132 +S'c. 1602' +p325269 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a00028e0.jpg' +p325270 +sg291136 +g27 +sa(dp325271 +g291134 +S'Landscape' +p325272 +sg291137 +S'Lodewijk de Vadder' +p325273 +sg291130 +S'black, yellow, and red chalks with white heightening over gray wash on laid paper' +p325274 +sg291132 +S'unknown date\n' +p325275 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a00028db.jpg' +p325276 +sg291136 +g27 +sa(dp325277 +g291134 +S'John Beale Bordley' +p325278 +sg291137 +S'Charles Willson Peale' +p325279 +sg291130 +S'watercolor on ivory' +p325280 +sg291132 +S'c. 1770' +p325281 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a000097c.jpg' +p325282 +sg291136 +g27 +sa(dp325283 +g291134 +S'Susanna and the Elders' +p325284 +sg291137 +S'Sebald Beham' +p325285 +sg291130 +S', unknown date' +p325286 +sg291132 +S'\n' +p325287 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00079/a0007959.jpg' +p325288 +sg291136 +g27 +sa(dp325289 +g291134 +S'A Young Lady in a Yellow Gown with Blue Ribbons' +p325290 +sg291137 +S'Jean-Baptiste Perronneau' +p325291 +sg291130 +S'pastel on blue paper mounted to canvas' +p325292 +sg291132 +S'c. 1767' +p325293 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005fad.jpg' +p325294 +sg291136 +g27 +sa(dp325295 +g291130 +S'pen and brown ink and gray wash with white heightening on blue laid paper' +p325296 +sg291132 +S'unknown date\n' +p325297 +sg291134 +S'Dunckel Fuchs mit duncklen haaren (Chestnut Bay)' +p325298 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325299 +sa(dp325300 +g291130 +S'bound volume with thirty-seven drawings' +p325301 +sg291132 +S'c. 1718/1757' +p325302 +sg291134 +S'Album of Horse Drawings by Johann Elias Ridinger' +p325303 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325304 +sa(dp325305 +g291130 +S'pen and brown ink and gray wash on blue laid paper' +p325306 +sg291132 +S'unknown date\n' +p325307 +sg291134 +S'Schwartz Braun geapffelt (Black and Brown Dappled Horse)' +p325308 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325309 +sa(dp325310 +g291130 +S'graphite on laid paper' +p325311 +sg291132 +S'1718' +p325312 +sg291134 +S'Horse Walking in Profile to Left' +p325313 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325314 +sa(dp325315 +g291130 +S'graphite on laid paper' +p325316 +sg291132 +S'unknown date\n' +p325317 +sg291134 +S'Horse Seen from Behind Walking to Right' +p325318 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325319 +sa(dp325320 +g291130 +S'graphite on laid paper' +p325321 +sg291132 +S'unknown date\n' +p325322 +sg291134 +S'Studies of Two Horses and a Lioness(?)' +p325323 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325324 +sa(dp325325 +g291130 +S'graphite on laid paper' +p325326 +sg291132 +S'1718' +p325327 +sg291134 +S'Horse Carrying a Load' +p325328 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325329 +sa(dp325330 +g291130 +S'brush and brown ink over graphite on laid paper' +p325331 +sg291132 +S'1722' +p325332 +sg291134 +S'Head of a Horse with Braided Mane, Facing Left' +p325333 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325334 +sa(dp325335 +g291130 +S'brush and brown ink over graphite on laid paper' +p325336 +sg291132 +S'1722' +p325337 +sg291134 +S'Head of a Horse with Braided Mane, Facing Right' +p325338 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325339 +sa(dp325340 +g291130 +S'brush and brown ink with brown wash over graphite on laid paper' +p325341 +sg291132 +S'1722' +p325342 +sg291134 +S'Head of a Horse, Facing Left' +p325343 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325344 +sa(dp325345 +g291130 +S'brush and brown ink with brown wash over graphite on laid paper' +p325346 +sg291132 +S'1722' +p325347 +sg291134 +S'Head of a Horse, with Flowing Mane, Facing Left' +p325348 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325349 +sa(dp325350 +g291130 +S'brush and brown ink with brown wash over graphite on laid paper' +p325351 +sg291132 +S'1722' +p325352 +sg291134 +S'Head of a Horse, Facing Front' +p325353 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325354 +sa(dp325355 +g291130 +S'brush and brown ink over graphite on laid paper' +p325356 +sg291132 +S'1722' +p325357 +sg291134 +S'Head of a Horse, Facing Right' +p325358 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325359 +sa(dp325360 +g291130 +S'brush and brown ink with brown wash over graphite on laid paper' +p325361 +sg291132 +S'1722' +p325362 +sg291134 +S'Head of a Horse, with Bridle, Facing Right' +p325363 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325364 +sa(dp325365 +g291130 +S'brush and brown ink and pen and brown ink with gray wash over graphite on laid paper' +p325366 +sg291132 +S'1721' +p325367 +sg291134 +S'Head of a Horse, with Bridle, Facing Left' +p325368 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325369 +sa(dp325370 +g291130 +S'brush and brown ink and pen and brown ink with gray wash over graphite on laid paper' +p325371 +sg291132 +S'1721' +p325372 +sg291134 +S'Two Heads of Horses, One with Bridle' +p325373 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325374 +sa(dp325375 +g291130 +S'pen and brown ink and brush and brown ink with gray wash over graphite on laid paper' +p325376 +sg291132 +S'1721' +p325377 +sg291134 +S"Two Studies of a Horse's Head, Facing Right and Facing Left" +p325378 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325379 +sa(dp325380 +g291130 +S'brush and brown ink and pen and brown ink with brown wash over graphite on laid paper' +p325381 +sg291132 +S'1721' +p325382 +sg291134 +S'Two Heads of Horses, Facing Right' +p325383 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325384 +sa(dp325385 +g291130 +S'brush and brown ink and pen and brown ink with brown wash over graphite on laid paper' +p325386 +sg291132 +S'1721' +p325387 +sg291134 +S"Three Studies of a Horse's Head, One Facing Front, the Others Facing Left" +p325388 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325389 +sa(dp325390 +g291130 +S'pen and brown ink over graphite on laid paper' +p325391 +sg291132 +S'1722' +p325392 +sg291134 +S"Two Studies of a Horse's Head, One Facing Front, the Other Facing Left" +p325393 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325394 +sa(dp325395 +g291130 +S'pen and brown ink over graphite on laid paper' +p325396 +sg291132 +S'1722' +p325397 +sg291134 +S'Two Heads of Horses, Both Facing Left' +p325398 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325399 +sa(dp325400 +g291130 +S'pen and brown ink over graphite on laid paper' +p325401 +sg291132 +S'1750' +p325402 +sg291134 +S'Horse in a Landscape' +p325403 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325404 +sa(dp325405 +g291130 +S'brush and brown ink with gray wash over graphite on laid paper' +p325406 +sg291132 +S'1722' +p325407 +sg291134 +S'Two Horses, One Facing Left, the Other Seen from Behind' +p325408 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325409 +sa(dp325410 +g291130 +S'pen and brown ink over graphite on laid paper' +p325411 +sg291132 +S'unknown date\n' +p325412 +sg291134 +S'Horse in a Wooded Landscape' +p325413 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325414 +sa(dp325415 +g291130 +S'graphite on laid paper' +p325416 +sg291132 +S'unknown date\n' +p325417 +sg291134 +S'Head of a Horse, with Bridle, Facing Left' +p325418 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325419 +sa(dp325420 +g291130 +S'pen and brown ink over graphite on laid paper' +p325421 +sg291132 +S'1735' +p325422 +sg291134 +S'Horse in a Panoramic Landscape' +p325423 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325424 +sa(dp325425 +g291130 +S'graphite on laid paper' +p325426 +sg291132 +S'unknown date\n' +p325427 +sg291134 +S'Head of a Horse, with Bridle, Facing Right' +p325428 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325429 +sa(dp325430 +g291130 +S'pen and brown ink over graphite on laid paper' +p325431 +sg291132 +S'1757' +p325432 +sg291134 +S'Horse with Rider' +p325433 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325434 +sa(dp325435 +g291130 +S'graphite on laid paper' +p325436 +sg291132 +S'unknown date\n' +p325437 +sg291134 +S'Head of a Horse, with Bridle, Facing Left' +p325438 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325439 +sa(dp325440 +g291130 +S'graphite on laid paper' +p325441 +sg291132 +S'unknown date\n' +p325442 +sg291134 +S'Horse in Profile to Right' +p325443 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325444 +sa(dp325445 +g291130 +S'graphite on laid paper' +p325446 +sg291132 +S'unknown date\n' +p325447 +sg291134 +S'Horse Walking in Profile to Left' +p325448 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325449 +sa(dp325450 +g291130 +S'graphite on laid paper' +p325451 +sg291132 +S'unknown date\n' +p325452 +sg291134 +S'Horse Walking in Profile to Right' +p325453 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325454 +sa(dp325455 +g291130 +S'graphite on laid paper' +p325456 +sg291132 +S'unknown date\n' +p325457 +sg291134 +S'Horse Walking in Profile to Left' +p325458 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325459 +sa(dp325460 +g291130 +S'graphite on laid paper' +p325461 +sg291132 +S'unknown date\n' +p325462 +sg291134 +S'Horse Walking in Profile to Left' +p325463 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325464 +sa(dp325465 +g291130 +S'graphite on laid paper' +p325466 +sg291132 +S'unknown date\n' +p325467 +sg291134 +S'Horse Rearing in Profile to Right' +p325468 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325469 +sa(dp325470 +g291130 +S'graphite on laid paper' +p325471 +sg291132 +S'unknown date\n' +p325472 +sg291134 +S'Horse Walking in Profile to Left' +p325473 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325474 +sa(dp325475 +g291130 +S'graphite on laid paper' +p325476 +sg291132 +S'unknown date\n' +p325477 +sg291134 +S'Horse with Bridle in Profile to Left' +p325478 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325479 +sa(dp325480 +g291130 +S'graphite on laid paper' +p325481 +sg291132 +S'unknown date\n' +p325482 +sg291134 +S'Horse in Profile to Right' +p325483 +sg291136 +g27 +sg291137 +S'Johann Elias Ridinger' +p325484 +sa(dp325485 +g291134 +S'De Smaek (Taste)' +p325486 +sg291137 +S'Artist Information (' +p325487 +sg291130 +S'(artist after)' +p325488 +sg291132 +S'\n' +p325489 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0af.jpg' +p325490 +sg291136 +g27 +sa(dp325491 +g291134 +S'Landscape with Ruined Monuments' +p325492 +sg291137 +S'Canaletto' +p325493 +sg291130 +S'etching on laid paper' +p325494 +sg291132 +S'c. 1740' +p325495 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000cab7.jpg' +p325496 +sg291136 +g27 +sa(dp325497 +g291134 +S'La paresse (Laziness)' +p325498 +sg291137 +S'F\xc3\xa9lix Vallotton' +p325499 +sg291130 +S'woodcut on cream wove paper' +p325500 +sg291132 +S'1896' +p325501 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef64.jpg' +p325502 +sg291136 +g27 +sa(dp325503 +g291134 +S'Study for Nude with Hexagonal Quilt' +p325504 +sg291137 +S'George Bellows' +p325505 +sg291130 +S'charcoal and black crayon on wove paper; laid down' +p325506 +sg291132 +S'1924' +p325507 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00008/a00008ad.jpg' +p325508 +sg291136 +g27 +sa(dp325509 +g291134 +S'La Scala di Ferro (The Iron Ladder)' +p325510 +sg291137 +S'Saul Steinberg' +p325511 +sg291130 +S'graphite, pen and ink, colored pencil, rubber stamp, and collage on Ingres Canson paper' +p325512 +sg291132 +S'1967' +p325513 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009da.jpg' +p325514 +sg291136 +g27 +sa(dp325515 +g291130 +S'5-color woodcut printed from two blocks, with hand-coloring on the oar, on DPA-2 Asian paper' +p325516 +sg291132 +S'1981' +p325517 +sg291134 +S'Polar Bear' +p325518 +sg291136 +g27 +sg291137 +S'Richard Bosman' +p325519 +sa(dp325520 +g291130 +S'8-color lithograph on Arches paper' +p325521 +sg291132 +S'1971' +p325522 +sg291134 +S'Guggenheim' +p325523 +sg291136 +g27 +sg291137 +S'Red Grooms' +p325524 +sa(dp325525 +g291130 +S'American, active 20th century' +p325526 +sg291132 +S'(printer)' +p325527 +sg291134 +S'Wedge 5' +p325528 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325529 +sa(dp325530 +g291130 +S'American, active 20th century' +p325531 +sg291132 +S'(printer)' +p325532 +sg291134 +S'Wedge 7' +p325533 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325534 +sa(dp325535 +g291130 +S'7-color lithograph on wove paper' +p325536 +sg291132 +S'1972' +p325537 +sg291134 +S'1-2-3 Outside' +p325538 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p325539 +sa(dp325540 +g291130 +S'acidtint lithograph in black on John Koller handmade paper' +p325541 +sg291132 +S'1980/1983' +p325542 +sg291134 +S'Four Rays' +p325543 +sg291136 +g27 +sg291137 +S'Susan Rothenberg' +p325544 +sa(dp325545 +g291130 +S'wash with charcoal over graphite on wove paper' +p325546 +sg291132 +S'1980' +p325547 +sg291134 +S'Artist in Her Studio' +p325548 +sg291136 +g27 +sg291137 +S'Ruth Ellen Weisberg' +p325549 +sa(dp325550 +g291130 +S'etching in blue-black and brown with plate tone on wove paper' +p325551 +sg291132 +S'1980' +p325552 +sg291134 +S'Chicken Basket' +p325553 +sg291136 +g27 +sg291137 +S'James Browning Wyeth' +p325554 +sa(dp325555 +g291130 +S'portfolio with four prints' +p325556 +sg291132 +S'1980' +p325557 +sg291134 +S'The Farm' +p325558 +sg291136 +g27 +sg291137 +S'James Browning Wyeth' +p325559 +sa(dp325560 +g291130 +S'etching with drypoint in sepia on wove paper' +p325561 +sg291132 +S'1980' +p325562 +sg291134 +S'Bee Shadows' +p325563 +sg291136 +g27 +sg291137 +S'James Browning Wyeth' +p325564 +sa(dp325565 +g291130 +S'etching in brown-blue on wove paper' +p325566 +sg291132 +S'1980' +p325567 +sg291134 +S'91, 75, 93, 84' +p325568 +sg291136 +g27 +sg291137 +S'James Browning Wyeth' +p325569 +sa(dp325570 +g291130 +S'etching in blue and brown-black on wove paper' +p325571 +sg291132 +S'1980' +p325572 +sg291134 +S'Runaway Pig' +p325573 +sg291136 +g27 +sg291137 +S'James Browning Wyeth' +p325574 +sa(dp325575 +g291130 +S'4-color soft-ground, lift-ground aquatint, and roulette on Nideggin paper [progressive proof no.1]' +p325576 +sg291132 +S'1982' +p325577 +sg291134 +S'Evenfall' +p325578 +sg291136 +g27 +sg291137 +S'Leonardo Lasansky' +p325579 +sa(dp325580 +g291130 +S'11-color soft-ground, lift-ground aquatint, and roulette, w/ scraping and burnishing, printed from two plates on Nideggin paper [progressive proof no.2]' +p325581 +sg291132 +S'1982' +p325582 +sg291134 +S'Evenfall' +p325583 +sg291136 +g27 +sg291137 +S'Leonardo Lasansky' +p325584 +sa(dp325585 +g291130 +S'21-color soft-ground, lift-ground aquatint, roulette, and etching, w/ scraping and burnishing, printed from three plates on Nideggin paper [progressive proof no.3]' +p325586 +sg291132 +S'1982' +p325587 +sg291134 +S'Evenfall' +p325588 +sg291136 +g27 +sg291137 +S'Leonardo Lasansky' +p325589 +sa(dp325590 +g291130 +S'engraving, soft-ground, lift-ground aquatint, etching, drypoint, and roulette, w/ scraping and burnishing, in black on Nideggin paper [progressive progressive proof no.4]' +p325591 +sg291132 +S'1982' +p325592 +sg291134 +S'Evenfall' +p325593 +sg291136 +g27 +sg291137 +S'Leonardo Lasansky' +p325594 +sa(dp325595 +g291130 +S'22-color soft-ground, engraving, lift-ground aquatint, etching, drypoint, and roulette, w/ scraping and burnishing, printed from four plates on Nideggin paper' +p325596 +sg291132 +S'1982' +p325597 +sg291134 +S'Evenfall' +p325598 +sg291136 +g27 +sg291137 +S'Leonardo Lasansky' +p325599 +sa(dp325600 +g291134 +S'Louis XV, King of France' +p325601 +sg291137 +S'Artist Information (' +p325602 +sg291130 +S'(artist after)' +p325603 +sg291132 +S'\n' +p325604 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f2f.jpg' +p325605 +sg291136 +g27 +sa(dp325606 +g291134 +S'Eustache Le Sueur' +p325607 +sg291137 +S'Charles-Nicolas Cochin I' +p325608 +sg291130 +S'etching on laid paper' +p325609 +sg291132 +S'1731' +p325610 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e3e.jpg' +p325611 +sg291136 +g27 +sa(dp325612 +g291134 +S'Jacques Sarazin the Elder' +p325613 +sg291137 +S'Charles-Nicolas Cochin I' +p325614 +sg291130 +S'engraving over etching on laid paper' +p325615 +sg291132 +S'1731' +p325616 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e3d.jpg' +p325617 +sg291136 +g27 +sa(dp325618 +g291134 +S'I.F.A. Brunet de Neuilly' +p325619 +sg291137 +S'Charles-Nicolas Cochin II' +p325620 +sg291130 +S'etching on laid paper' +p325621 +sg291132 +S'unknown date\n' +p325622 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cf9.jpg' +p325623 +sg291136 +g27 +sa(dp325624 +g291134 +S'Ph.Cl.A. de Thubieres, Comte de Caylus' +p325625 +sg291137 +S'Charles-Nicolas Cochin II' +p325626 +sg291130 +S'engraving over etching on laid paper' +p325627 +sg291132 +S'1752' +p325628 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cf3.jpg' +p325629 +sg291136 +g27 +sa(dp325630 +g291134 +S'Le Marquis Scipion Maffei' +p325631 +sg291137 +S'Charles-Nicolas Cochin II' +p325632 +sg291130 +S'crayon manner etching on laid paper' +p325633 +sg291132 +S'1750' +p325634 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cf5.jpg' +p325635 +sg291136 +g27 +sa(dp325636 +g291134 +S'Henry Philippe Chauvelin' +p325637 +sg291137 +S'Charles-Nicolas Cochin II' +p325638 +sg291130 +S'etching on laid paper' +p325639 +sg291132 +S'1752' +p325640 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cf6.jpg' +p325641 +sg291136 +g27 +sa(dp325642 +g291134 +S'Louis XVI, King of France' +p325643 +sg291137 +S'Charles-Eugene Duponchel' +p325644 +sg291130 +S'engraving on laid paper' +p325645 +sg291132 +S'unknown date\n' +p325646 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ea7.jpg' +p325647 +sg291136 +g27 +sa(dp325648 +g291134 +S'Marie-Antoinette' +p325649 +sg291137 +S'Charles-Eugene Duponchel' +p325650 +sg291130 +S'engraving on laid paper' +p325651 +sg291132 +S'unknown date\n' +p325652 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ea5.jpg' +p325653 +sg291136 +g27 +sa(dp325654 +g291134 +S'Fontenelle' +p325655 +sg291137 +S'Artist Information (' +p325656 +sg291130 +S'(artist after)' +p325657 +sg291132 +S'\n' +p325658 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d14.jpg' +p325659 +sg291136 +g27 +sa(dp325660 +g291134 +S'Fontenelle' +p325661 +sg291137 +S'Artist Information (' +p325662 +sg291130 +S'(artist after)' +p325663 +sg291132 +S'\n' +p325664 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d17.jpg' +p325665 +sg291136 +g27 +sa(dp325666 +g291134 +S'Robert le Lorrain' +p325667 +sg291137 +S'Artist Information (' +p325668 +sg291130 +S'(artist after)' +p325669 +sg291132 +S'\n' +p325670 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00097/a000971d.jpg' +p325671 +sg291136 +g27 +sa(dp325672 +g291134 +S'Philippe Cayeux' +p325673 +sg291137 +S'Artist Information (' +p325674 +sg291130 +S'(artist after)' +p325675 +sg291132 +S'\n' +p325676 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d41.jpg' +p325677 +sg291136 +g27 +sa(dp325678 +g291134 +S'Self-Portrait' +p325679 +sg291137 +S'Antoine de Marcenay de Ghuy' +p325680 +sg291130 +S'etching on laid paper' +p325681 +sg291132 +S'unknown date\n' +p325682 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00096/a000960f.jpg' +p325683 +sg291136 +g27 +sa(dp325684 +g291134 +S'Edme-Sebastien Jeaurat' +p325685 +sg291137 +S'Artist Information (' +p325686 +sg291130 +S'(artist after)' +p325687 +sg291132 +S'\n' +p325688 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d669.jpg' +p325689 +sg291136 +g27 +sa(dp325690 +g291134 +S'M. Clicot de Clerval' +p325691 +sg291137 +S'Artist Information (' +p325692 +sg291130 +S'(artist after)' +p325693 +sg291132 +S'\n' +p325694 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d42.jpg' +p325695 +sg291136 +g27 +sa(dp325696 +g291134 +S'Francois de Troy' +p325697 +sg291137 +S'Artist Information (' +p325698 +sg291130 +S'(artist after)' +p325699 +sg291132 +S'\n' +p325700 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00096/a000965d.jpg' +p325701 +sg291136 +g27 +sa(dp325702 +g291134 +S'Louis XVI, King of France' +p325703 +sg291137 +S'Artist Information (' +p325704 +sg291130 +S'(artist after)' +p325705 +sg291132 +S'\n' +p325706 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00096/a0009664.jpg' +p325707 +sg291136 +g27 +sa(dp325708 +g291134 +S'Charles-Georges Coqueley de Chaussepierre' +p325709 +sg291137 +S'Artist Information (' +p325710 +sg291130 +S'(artist after)' +p325711 +sg291132 +S'\n' +p325712 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c77.jpg' +p325713 +sg291136 +g27 +sa(dp325714 +g291134 +S'Comte de Buffon' +p325715 +sg291137 +S'Artist Information (' +p325716 +sg291130 +S'(artist after)' +p325717 +sg291132 +S'\n' +p325718 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c87.jpg' +p325719 +sg291136 +g27 +sa(dp325720 +g291134 +S'Joseph Pellerin' +p325721 +sg291137 +S'Augustin de Saint-Aubin' +p325722 +sg291130 +S'engraving over etching on laid paper' +p325723 +sg291132 +S'1777' +p325724 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008ca6.jpg' +p325725 +sg291136 +g27 +sa(dp325726 +g291134 +S'Antoine De Parcieux' +p325727 +sg291137 +S'Artist Information (' +p325728 +sg291130 +S'(artist after)' +p325729 +sg291132 +S'\n' +p325730 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c89.jpg' +p325731 +sg291136 +g27 +sa(dp325732 +g291134 +S'Charles Le Brun' +p325733 +sg291137 +S'Augustin de Saint-Aubin' +p325734 +sg291130 +S'engraving over etching on laid paper' +p325735 +sg291132 +S'1805' +p325736 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c96.jpg' +p325737 +sg291136 +g27 +sa(dp325738 +g291134 +S'Pierre Corneille' +p325739 +sg291137 +S'Augustin de Saint-Aubin' +p325740 +sg291130 +S'engraving over etching on laid paper' +p325741 +sg291132 +S'1799' +p325742 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c8d.jpg' +p325743 +sg291136 +g27 +sa(dp325744 +g291134 +S'Jean-Baptiste Rousseau' +p325745 +sg291137 +S'Augustin de Saint-Aubin' +p325746 +sg291130 +S'engraving over etching on laid paper' +p325747 +sg291132 +S'1802' +p325748 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bf0.jpg' +p325749 +sg291136 +g27 +sa(dp325750 +g291134 +S'Prosper Jolyot de Crebillon' +p325751 +sg291137 +S'Augustin de Saint-Aubin' +p325752 +sg291130 +S'engraving over etching on laid paper' +p325753 +sg291132 +S'unknown date\n' +p325754 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c92.jpg' +p325755 +sg291136 +g27 +sa(dp325756 +g291134 +S'Charles Henri de Heineken' +p325757 +sg291137 +S'Augustin de Saint-Aubin' +p325758 +sg291130 +S'engraving over etching on laid paper' +p325759 +sg291132 +S'1770' +p325760 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008ca0.jpg' +p325761 +sg291136 +g27 +sa(dp325762 +g291134 +S'Gerard de Lairesse' +p325763 +sg291137 +S'Artist Information (' +p325764 +sg291130 +S'(artist after)' +p325765 +sg291132 +S'\n' +p325766 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d665.jpg' +p325767 +sg291136 +g27 +sa(dp325768 +g291134 +S'Jacques Delille' +p325769 +sg291137 +S'Artist Information (' +p325770 +sg291130 +S'(artist after)' +p325771 +sg291132 +S'\n' +p325772 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb5f.jpg' +p325773 +sg291136 +g27 +sa(dp325774 +g291130 +S'burnished aquatint (zinc) on B.F.K. Rives paper' +p325775 +sg291132 +S'1963' +p325776 +sg291134 +S'The Prisoner' +p325777 +sg291136 +g27 +sg291137 +S'Jack Levine' +p325778 +sa(dp325779 +g291134 +S"I dreamed I was having my photograph taken with a group of people. Suddenly, I began to rise up and fly around the room. Half way around, I tried to get out the door. When I couldn't get out, I continued to fly around the room until I landed and sat down next to my mother who said I had done a good job!" +p325780 +sg291137 +S'Artist Information (' +p325781 +sg291130 +g27 +sg291132 +S'(publisher)' +p325782 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a32.jpg' +p325783 +sg291136 +g27 +sa(dp325784 +g291130 +g27 +sg291132 +S'(publisher)' +p325785 +sg291134 +S'Flying Man with Briefcase No. 2816948' +p325786 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325787 +sa(dp325788 +g291130 +g27 +sg291132 +S'(publisher)' +p325789 +sg291134 +S'Strata' +p325790 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325791 +sa(dp325792 +g291130 +g27 +sg291132 +S'(publisher)' +p325793 +sg291134 +S'Brick' +p325794 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325795 +sa(dp325796 +g291130 +g27 +sg291132 +S'(publisher)' +p325797 +sg291134 +S"Untitled (from Club/Spade Group '81-2)" +p325798 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325799 +sa(dp325800 +g291130 +g27 +sg291132 +S'(publisher)' +p325801 +sg291134 +S'Untitled' +p325802 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325803 +sa(dp325804 +g291130 +g27 +sg291132 +S'(publisher)' +p325805 +sg291134 +S'Rising (For Walt Whitman)' +p325806 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325807 +sa(dp325808 +g291130 +g27 +sg291132 +S'(publisher)' +p325809 +sg291134 +S'Yunan' +p325810 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325811 +sa(dp325812 +g291134 +S'First Subject' +p325813 +sg291137 +S'Artist Information (' +p325814 +sg291130 +g27 +sg291132 +S'(publisher)' +p325815 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a96.jpg' +p325816 +sg291136 +g27 +sa(dp325817 +g291130 +g27 +sg291132 +S'(publisher)' +p325818 +sg291134 +S'Indigo Wood' +p325819 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325820 +sa(dp325821 +g291130 +g27 +sg291132 +S'(publisher)' +p325822 +sg291134 +S'Swiss Survey #1' +p325823 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325824 +sa(dp325825 +g291130 +g27 +sg291132 +S'(publisher)' +p325826 +sg291134 +S'Jerry Sohn' +p325827 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325828 +sa(dp325829 +g291130 +g27 +sg291132 +S'(publisher)' +p325830 +sg291134 +S'Big Celiaprint #2' +p325831 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325832 +sa(dp325833 +g291130 +g27 +sg291132 +S'(publisher)' +p325834 +sg291134 +S'Cicada' +p325835 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325836 +sa(dp325837 +g291130 +g27 +sg291132 +S'(publisher)' +p325838 +sg291134 +S'"18 Colors (Cincinnati)"' +p325839 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325840 +sa(dp325841 +g291130 +g27 +sg291132 +S'(publisher)' +p325842 +sg291134 +S'Concorde I (State)' +p325843 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325844 +sa(dp325845 +g291134 +S'Light Green Panel' +p325846 +sg291137 +S'Artist Information (' +p325847 +sg291130 +g27 +sg291132 +S'(publisher)' +p325848 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a0001681.jpg' +p325849 +sg291136 +g27 +sa(dp325850 +g291130 +g27 +sg291132 +S'(publisher)' +p325851 +sg291134 +S'Dark Red-Violet Panel' +p325852 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325853 +sa(dp325854 +g291130 +g27 +sg291132 +S'(publisher)' +p325855 +sg291134 +S'Modern Head Relief' +p325856 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325857 +sa(dp325858 +g291130 +g27 +sg291132 +S'(publisher)' +p325859 +sg291134 +S'Painting in Gold Frame' +p325860 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325861 +sa(dp325862 +g291130 +S'woodcut, lithograph, screenprint, and collage on Arches 88 paper' +p325863 +sg291132 +S'1984' +p325864 +sg291134 +S'Two Paintings' +p325865 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p325866 +sa(dp325867 +g291130 +g27 +sg291132 +S'(publisher)' +p325868 +sg291134 +S'Violins/Violence' +p325869 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325870 +sa(dp325871 +g291134 +S'Cloud Mountain' +p325872 +sg291137 +S'Artist Information (' +p325873 +sg291130 +g27 +sg291132 +S'(publisher)' +p325874 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a0001698.jpg' +p325875 +sg291136 +g27 +sa(dp325876 +g291134 +S"Giacometti's Shadow" +p325877 +sg291137 +S'Artist Information (' +p325878 +sg291130 +g27 +sg291132 +S'(publisher)' +p325879 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a0001699.jpg' +p325880 +sg291136 +g27 +sa(dp325881 +g291134 +S'Soft Screw in Waterfall' +p325882 +sg291137 +S'Artist Information (' +p325883 +sg291130 +g27 +sg291132 +S'(publisher)' +p325884 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b57.jpg' +p325885 +sg291136 +g27 +sa(dp325886 +g291130 +g27 +sg291132 +S'(publisher)' +p325887 +sg291134 +S'American Pewter with Burroughs I' +p325888 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325889 +sa(dp325890 +g291130 +g27 +sg291132 +S'(publisher)' +p325891 +sg291134 +S'Truth' +p325892 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325893 +sa(dp325894 +g291130 +g27 +sg291132 +S'(publisher)' +p325895 +sg291134 +S'Radiance' +p325896 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325897 +sa(dp325898 +g291130 +g27 +sg291132 +S'(publisher)' +p325899 +sg291134 +S'Plume' +p325900 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325901 +sa(dp325902 +g291134 +S'Girls' +p325903 +sg291137 +S'Artist Information (' +p325904 +sg291130 +g27 +sg291132 +S'(publisher)' +p325905 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b7e.jpg' +p325906 +sg291136 +g27 +sa(dp325907 +g291130 +g27 +sg291132 +S'(publisher)' +p325908 +sg291134 +S'Still Life with Shell' +p325909 +sg291136 +g27 +sg291137 +S'Artist Information (' +p325910 +sa(dp325911 +g291134 +S'To Bobby Sands' +p325912 +sg291137 +S'Artist Information (' +p325913 +sg291130 +g27 +sg291132 +S'(publisher)' +p325914 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b89.jpg' +p325915 +sg291136 +g27 +sa(dp325916 +g291134 +S'Left Square Into Left Corner' +p325917 +sg291137 +S'Artist Information (' +p325918 +sg291130 +g27 +sg291132 +S'(publisher)' +p325919 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a00016a7.jpg' +p325920 +sg291136 +g27 +sa(dp325921 +g291134 +S'Abaca Code-Circles' +p325922 +sg291137 +S'Artist Information (' +p325923 +sg291130 +g27 +sg291132 +S'(publisher)' +p325924 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b94.jpg' +p325925 +sg291136 +g27 +sa(dp325926 +g291134 +S'The Temple of Antoninus and Faustina' +p325927 +sg291137 +S'Francesco Piranesi' +p325928 +sg291130 +S'black chalk on paper' +p325929 +sg291132 +S'unknown date\n' +p325930 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d7f.jpg' +p325931 +sg291136 +g27 +sa(dp325932 +g291134 +S'Head of a Siren' +p325933 +sg291137 +S'Hendrick Goltzius' +p325934 +sg291130 +S', 1609' +p325935 +sg291132 +S'\n' +p325936 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00065/a00065a2.jpg' +p325937 +sg291136 +g27 +sa(dp325938 +g291134 +S'Mr. George Cotton Smith' +p325939 +sg291137 +S'Robert Henri' +p325940 +sg291130 +S'oil on canvas' +p325941 +sg291132 +S'1908' +p325942 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00000/a00000f3.jpg' +p325943 +sg291136 +g27 +sa(dp325944 +g291134 +S'Mrs. George Cotton Smith' +p325945 +sg291137 +S'Robert Henri' +p325946 +sg291130 +S'oil on canvas' +p325947 +sg291132 +S'1908' +p325948 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00000/a00000f4.jpg' +p325949 +sg291136 +g27 +sa(dp325950 +g291130 +S'lithograph on china paper' +p325951 +sg291132 +S'1923' +p325952 +sg291134 +S"Young Girl in Flowered Dress with Organdy Collar (Jeune fille en robe fleurie au col d'organdi)" +p325953 +sg291136 +g27 +sg291137 +S'Henri Matisse' +p325954 +sa(dp325955 +g291130 +S'lithograph on china paper' +p325956 +sg291132 +S'1923' +p325957 +sg291134 +S'Little Aurore (Petite Aurore)' +p325958 +sg291136 +g27 +sg291137 +S'Henri Matisse' +p325959 +sa(dp325960 +g291130 +S'lithograph on china paper' +p325961 +sg291132 +S'1925' +p325962 +sg291134 +S'Odalisque in Red Satin Pantaloons (Odalisque \xc3\xa0 la culotte de satin rouge)' +p325963 +sg291136 +g27 +sg291137 +S'Henri Matisse' +p325964 +sa(dp325965 +g291134 +S'Reclining Nude (Liegender Akt)' +p325966 +sg291137 +S'Ernst Ludwig Kirchner' +p325967 +sg291130 +S'lithograph on wove paper' +p325968 +sg291132 +S'1907-1908' +p325969 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c438.jpg' +p325970 +sg291136 +g27 +sa(dp325971 +g291134 +S'Dancing Couple (Tanzpaar)' +p325972 +sg291137 +S'Ernst Ludwig Kirchner' +p325973 +sg291130 +S'lithograph on yellow wove paper' +p325974 +sg291132 +S'1909' +p325975 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00017/a000177f.jpg' +p325976 +sg291136 +g27 +sa(dp325977 +g291134 +S'Naked Girls in the Studio (Nackte Madchen im Atelier)' +p325978 +sg291137 +S'Ernst Ludwig Kirchner' +p325979 +sg291130 +S'lithograph on wove paper' +p325980 +sg291132 +S'1911' +p325981 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005ef1.jpg' +p325982 +sg291136 +g27 +sa(dp325983 +g291134 +S'Russian Dancers (Russisches T\xc3\xa4nzerpaar)' +p325984 +sg291137 +S'Ernst Ludwig Kirchner' +p325985 +sg291130 +S'lithograph in red, blue, yellow, and black on wove paper' +p325986 +sg291132 +S'1909' +p325987 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00017/a0001780.jpg' +p325988 +sg291136 +g27 +sa(dp325989 +g291134 +S'Three Bathers by Stones (Drei Badende an Steinen)' +p325990 +sg291137 +S'Ernst Ludwig Kirchner' +p325991 +sg291130 +S'lithograph in pink, blue, red, and black on calendered paper' +p325992 +sg291132 +S'1913' +p325993 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00017/a0001781.jpg' +p325994 +sg291136 +g27 +sa(dp325995 +g291134 +S'Saint John at the Foot of the Cross' +p325996 +sg291137 +S'Maso Finiguerra' +p325997 +sg291130 +S'pen and brown ink and brown wash on laid paper; laid down' +p325998 +sg291132 +S'c. 1460/1470' +p325999 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074dc.jpg' +p326000 +sg291136 +g27 +sa(dp326001 +g291134 +S'Road along a Winding River' +p326002 +sg291137 +S'Nicolas Poussin' +p326003 +sg291130 +S'pen and brown ink, squared in black chalk, on laid paper' +p326004 +sg291132 +S'c. 1648?' +p326005 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005c/a0005cc6.jpg' +p326006 +sg291136 +g27 +sa(dp326007 +g291130 +S'(author)' +p326008 +sg291132 +S'\n' +p326009 +sg291134 +S'Imagines deorum qui ab antiquis colebantur' +p326010 +sg291136 +g27 +sg291137 +S'Artist Information (' +p326011 +sa(dp326012 +g291134 +S'The Entombment' +p326013 +sg291137 +S'Andrea Mantegna' +p326014 +sg291130 +S'engraving in brown; laid down' +p326015 +sg291132 +S'1465/1470' +p326016 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f16.jpg' +p326017 +sg291136 +g27 +sa(dp326018 +g291130 +S'screenprint in black on J. Green paper' +p326019 +sg291132 +S'1974' +p326020 +sg291134 +S'Flowers I' +p326021 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326022 +sa(dp326023 +g291130 +S'screenprint in black on J. Green paper' +p326024 +sg291132 +S'1974' +p326025 +sg291134 +S'Flowers II' +p326026 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326027 +sa(dp326028 +g291130 +S'screenprint in black on J. Green paper' +p326029 +sg291132 +S'1974' +p326030 +sg291134 +S'Flowers III' +p326031 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326032 +sa(dp326033 +g291130 +S'screenprint in black on J. Green paper' +p326034 +sg291132 +S'1974' +p326035 +sg291134 +S'Flowers IV' +p326036 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326037 +sa(dp326038 +g291130 +S'screenprint in black on J. Green paper' +p326039 +sg291132 +S'1974' +p326040 +sg291134 +S'Flowers V' +p326041 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326042 +sa(dp326043 +g291130 +S'screenprint in black on J. Green paper' +p326044 +sg291132 +S'1974' +p326045 +sg291134 +S'Flowers VI' +p326046 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326047 +sa(dp326048 +g291130 +S'screenprint in black on J. Green paper' +p326049 +sg291132 +S'1974' +p326050 +sg291134 +S'Flowers VII' +p326051 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326052 +sa(dp326053 +g291130 +S'screenprint in black on J. Green paper' +p326054 +sg291132 +S'1974' +p326055 +sg291134 +S'Flowers VIII' +p326056 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326057 +sa(dp326058 +g291130 +S'screenprint in black on J. Green paper' +p326059 +sg291132 +S'1974' +p326060 +sg291134 +S'Flowers IX' +p326061 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326062 +sa(dp326063 +g291130 +S'screenprint in black on J. Green paper' +p326064 +sg291132 +S'1974' +p326065 +sg291134 +S'Flowers X' +p326066 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326067 +sa(dp326068 +g291130 +S'hand-colored screenprint on J. Green paper' +p326069 +sg291132 +S'1974' +p326070 +sg291134 +S'Flowers I' +p326071 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326072 +sa(dp326073 +g291130 +S'hand-colored screenprint on J. Green paper' +p326074 +sg291132 +S'1974' +p326075 +sg291134 +S'Flowers II' +p326076 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326077 +sa(dp326078 +g291130 +S'hand-colored screenprint on J. Green paper' +p326079 +sg291132 +S'1974' +p326080 +sg291134 +S'Flowers III' +p326081 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326082 +sa(dp326083 +g291130 +S'hand-colored screenprint on J. Green paper' +p326084 +sg291132 +S'1974' +p326085 +sg291134 +S'Flowers IV' +p326086 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326087 +sa(dp326088 +g291130 +S'hand-colored screenprint on J. Green paper' +p326089 +sg291132 +S'1974' +p326090 +sg291134 +S'Flowers V' +p326091 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326092 +sa(dp326093 +g291130 +S'hand-colored screenprint on J. Green paper' +p326094 +sg291132 +S'1974' +p326095 +sg291134 +S'Flowers VI' +p326096 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326097 +sa(dp326098 +g291130 +S'hand-colored screenprint on J. Green paper' +p326099 +sg291132 +S'1974' +p326100 +sg291134 +S'Flowers VII' +p326101 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326102 +sa(dp326103 +g291130 +S'hand-colored screenprint on J. Green paper' +p326104 +sg291132 +S'1974' +p326105 +sg291134 +S'Flowers VIII' +p326106 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326107 +sa(dp326108 +g291130 +S'hand-colored screenprint on J. Green paper' +p326109 +sg291132 +S'1974' +p326110 +sg291134 +S'Flowers IX' +p326111 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326112 +sa(dp326113 +g291130 +S'hand-colored screenprint on J. Green paper' +p326114 +sg291132 +S'1974' +p326115 +sg291134 +S'Flowers X' +p326116 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326117 +sa(dp326118 +g291130 +S'color screenprint on calendered paper' +p326119 +sg291132 +S'1972' +p326120 +sg291134 +S'Mao Tse-Tung' +p326121 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326122 +sa(dp326123 +g291130 +S'color screenprint on calendered paper' +p326124 +sg291132 +S'1972' +p326125 +sg291134 +S'Mao Tse-Tung' +p326126 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326127 +sa(dp326128 +g291130 +S'color screenprint on calendered paper' +p326129 +sg291132 +S'1972' +p326130 +sg291134 +S'Mao Tse-Tung' +p326131 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326132 +sa(dp326133 +g291130 +S'color screenprint on calendered paper' +p326134 +sg291132 +S'1972' +p326135 +sg291134 +S'Mao Tse-Tung' +p326136 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326137 +sa(dp326138 +g291130 +S'color screenprint on calendered paper' +p326139 +sg291132 +S'1972' +p326140 +sg291134 +S'Mao Tse-Tung' +p326141 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326142 +sa(dp326143 +g291130 +S'color screenprint on calendered paper' +p326144 +sg291132 +S'1972' +p326145 +sg291134 +S'Mao Tse-Tung' +p326146 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326147 +sa(dp326148 +g291130 +S'color screenprint on calendered paper' +p326149 +sg291132 +S'1972' +p326150 +sg291134 +S'Mao Tse-Tung' +p326151 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326152 +sa(dp326153 +g291130 +S'color screenprint on calendered paper' +p326154 +sg291132 +S'1972' +p326155 +sg291134 +S'Mao Tse-Tung' +p326156 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326157 +sa(dp326158 +g291130 +S'color screenprint on calendered paper' +p326159 +sg291132 +S'1972' +p326160 +sg291134 +S'Mao Tse-Tung' +p326161 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326162 +sa(dp326163 +g291130 +S'color screenprint on calendered paper' +p326164 +sg291132 +S'1972' +p326165 +sg291134 +S'Mao Tse-Tung' +p326166 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p326167 +sa(dp326168 +g291134 +S'The Baptism of Christ, Set in a Mountainous Landscape' +p326169 +sg291137 +S'Giovanni Francesco Grimaldi' +p326170 +sg291130 +S'etching on laid paper' +p326171 +sg291132 +S'unknown date\n' +p326172 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca24.jpg' +p326173 +sg291136 +g27 +sa(dp326174 +g291134 +S'Juno' +p326175 +sg291137 +S'Angelica Kauffmann' +p326176 +sg291130 +S'etching and aquatint in brown on laid paper' +p326177 +sg291132 +S'published 1780' +p326178 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ef/a000ef9f.jpg' +p326179 +sg291136 +g27 +sa(dp326180 +g291134 +S'Fanny/Fingerpainting' +p326181 +sg291137 +S'Chuck Close' +p326182 +sg291130 +S'oil on canvas' +p326183 +sg291132 +S'1985' +p326184 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00000/a000004f.jpg' +p326185 +sg291136 +S"Fanny/Fingerpainting\n Seen from a distance, the painting looks like a giant, silver-toned photograph that\r\n unrelentingly reveals every crack and crevice of the sitter's face. Closer up, the paint surface\r\n dissolves into a sea of fingerprints that have an abstract beauty, even as they metaphorically\r\n suggest the withering of the sitter's skin with age. The fingerpaintings provide a far more literal\r\n record of the artist's touch than most abstract expressionist brushwork -- but are at the same time\r\n dictated by an abstract, distinctly impersonal system.\n " +p326186 +sa(dp326187 +g291134 +S'The Madonna and Child Enthroned, with Saints Corbinian and Sigismund' +p326188 +sg291137 +S'German 15th Century' +p326189 +sg291130 +S'sheet: 21.8 x 13.7 cm (8 9/16 x 5 3/8 in.)' +p326190 +sg291132 +S'\nwoodcut, hand-colored in red lake, red-orange, green, blue, and yellow on laid paper' +p326191 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000a5/a000a5a2.jpg' +p326192 +sg291136 +g27 +sa(dp326193 +g291134 +S'The Ruins of Netley Abbey' +p326194 +sg291137 +S'John Constable' +p326195 +sg291130 +S'etching on wove paper [1st state]' +p326196 +sg291132 +S'c. 1826' +p326197 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d25.jpg' +p326198 +sg291136 +g27 +sa(dp326199 +g291134 +S'Milford Bridge' +p326200 +sg291137 +S'John Constable' +p326201 +sg291130 +S'etching on wove paper [1st state]' +p326202 +sg291132 +S'c. 1826' +p326203 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cee.jpg' +p326204 +sg291136 +g27 +sa(dp326205 +g291134 +S'Little Girl with a Large Hat' +p326206 +sg291137 +S'Gwen John' +p326207 +sg291130 +S'gouache over graphite on wove paper' +p326208 +sg291132 +S'probably 1915/1920' +p326209 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bbf.jpg' +p326210 +sg291136 +g27 +sa(dp326211 +g291134 +S'Shepherd with Goats (Les ch\xc3\xa8vres)' +p326212 +sg291137 +S'Claude Lorrain' +p326213 +sg291130 +S'etching from two plates on two sheets of laid paper; attached' +p326214 +sg291132 +S'c. 1630/1633' +p326215 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008af7.jpg' +p326216 +sg291136 +g27 +sa(dp326217 +g291134 +S'Lady and Gentlemen Riding in a Park' +p326218 +sg291137 +S'Jean-Michel Moreau the Younger' +p326219 +sg291130 +S', unknown date' +p326220 +sg291132 +S'\n' +p326221 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006da0.jpg' +p326222 +sg291136 +g27 +sa(dp326223 +g291134 +S'A Capriccio View of Roman Ruins along the Tiber' +p326224 +sg291137 +S'Jacob van der Ulft' +p326225 +sg291130 +S'pen and brush and iron gall ink on laid paper; laid down' +p326226 +sg291132 +S'unknown date\n' +p326227 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a0007221.jpg' +p326228 +sg291136 +g27 +sa(dp326229 +g291134 +S'The Angel Appearing to Hagar and Ishmael' +p326230 +sg291137 +S'Sebastiano Ricci' +p326231 +sg291130 +S'pen and brown ink and brown wash over black and red chalk on laid paper' +p326232 +sg291132 +S'1726/1727' +p326233 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a000723f.jpg' +p326234 +sg291136 +g27 +sa(dp326235 +g291134 +S'Hunt of the Calydonian Boar' +p326236 +sg291137 +S'Guglielmo della Porta' +p326237 +sg291130 +S'bronze relief' +p326238 +sg291132 +S'c. 1553/1555' +p326239 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dd0.jpg' +p326240 +sg291136 +g27 +sa(dp326241 +g291134 +S'Vulcan Capturing Mars and Venus' +p326242 +sg291137 +S'Guglielmo della Porta' +p326243 +sg291130 +S'bronze relief' +p326244 +sg291132 +S'c. 1553/1555' +p326245 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dd1.jpg' +p326246 +sg291136 +S'\r\n Plaquettes were meant to be enjoyed for intellectual and tactile pleasures. It is easy to imagine owners and their guests passing them to each other and discussing the interpretation of the scenes depicted. Often, as in this example, the subjects were from classical mythology.\r\n\n ' +p326247 +sa(dp326248 +g291130 +S'bronze relief' +p326249 +sg291132 +S'c. 1553/1555' +p326250 +sg291134 +S'Diana and Callisto' +p326251 +sg291136 +g27 +sg291137 +S'Guglielmo della Porta' +p326252 +sa(dp326253 +g291134 +S'A Boy Smiling' +p326254 +sg291137 +S'Francesco Zuccarelli' +p326255 +sg291130 +S'black and gray chalk on laid paper' +p326256 +sg291132 +S'c. 1748' +p326257 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00059/a000596c.jpg' +p326258 +sg291136 +g27 +sa(dp326259 +g291134 +S'An Italianate Garden with a Parrot, a Poodle, and a Man' +p326260 +sg291137 +S'Isaac de Moucheron' +p326261 +sg291130 +S'watercolor and pen and brown ink over black chalk on laid paper' +p326262 +sg291132 +S'1730s' +p326263 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a0002604.jpg' +p326264 +sg291136 +g27 +sa(dp326265 +g291134 +S'Four Ladies with Fancy Hats' +p326266 +sg291137 +S'Edouard Vuillard' +p326267 +sg291130 +S'watercolor over graphite on wove paper' +p326268 +sg291132 +S'1892/1893' +p326269 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a00028e2.jpg' +p326270 +sg291136 +g27 +sa(dp326271 +g291130 +S'pen and ink on heavy wove paper' +p326272 +sg291132 +S'1980/1982' +p326273 +sg291134 +S'Avoda' +p326274 +sg291136 +g27 +sg291137 +S'Jacob El Hanani' +p326275 +sa(dp326276 +g291130 +S'pen and ink on heavy wove paper' +p326277 +sg291132 +S'1985' +p326278 +sg291134 +S'Arad' +p326279 +sg291136 +g27 +sg291137 +S'Jacob El Hanani' +p326280 +sa(dp326281 +g291134 +S'The Emperor Ferdinand II' +p326282 +sg291137 +S'Stefano Della Bella' +p326283 +sg291130 +S'etching and engraving on laid paper' +p326284 +sg291132 +S'1637' +p326285 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c8e6.jpg' +p326286 +sg291136 +g27 +sa(dp326287 +g291134 +S'Il Tedeschino' +p326288 +sg291137 +S'Stefano Della Bella' +p326289 +sg291130 +S'etching on laid paper' +p326290 +sg291132 +S'1637' +p326291 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9b3.jpg' +p326292 +sg291136 +g27 +sa(dp326293 +g291134 +S'Saint Prosper' +p326294 +sg291137 +S'Stefano Della Bella' +p326295 +sg291130 +S'etching and engraving on laid paper' +p326296 +sg291132 +S'possibly 1652' +p326297 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9b2.jpg' +p326298 +sg291136 +g27 +sa(dp326299 +g291134 +S'Fastose Aguglie e Mausolei vetusti' +p326300 +sg291137 +S'Giovanni Francesco Costa' +p326301 +sg291130 +S'etching on laid paper' +p326302 +sg291132 +S'published 1767/1770' +p326303 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca3c.jpg' +p326304 +sg291136 +g27 +sa(dp326305 +g291134 +S'The Marriage of Europe and China' +p326306 +sg291137 +S'Pietro Antonio Novelli' +p326307 +sg291130 +S'pen and brown and gray ink with gray wash on laid paper' +p326308 +sg291132 +S'c. 1780' +p326309 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a000260b.jpg' +p326310 +sg291136 +g27 +sa(dp326311 +g291134 +S"Bouquet d'arbres aux rochers (Stand of Trees with Rocks)" +p326312 +sg291137 +S'Henri-Joseph Harpignies' +p326313 +sg291130 +S'drypoint on oatmeal paper' +p326314 +sg291132 +S'1847' +p326315 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00098/a00098ba.jpg' +p326316 +sg291136 +g27 +sa(dp326317 +g291134 +S'The Farm' +p326318 +sg291137 +S'Joan Mir\xc3\xb3' +p326319 +sg291130 +S'oil on canvas' +p326320 +sg291132 +S'1921-1922' +p326321 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000ddc.jpg' +p326322 +sg291136 +S"Miró moved from Barcelona to Paris in 1920, determined to participate in the artistic\n vanguard of the French capital. Nevertheless, he remained deeply attached to his native\n Catalonia, and returned each summer to his family's farm in the village of Montroig. In 1921, he\n determined to make a painting of this farm, a painting that he came to regard as one of the key\n works in his career.\n The Farm\n By the mid-1920s, Miró had abandoned the realist manner of \n " +p326323 +sa(dp326324 +g291130 +S'oil on canvas' +p326325 +sg291132 +S'1938' +p326326 +sg291134 +S'Grey Sea' +p326327 +sg291136 +g27 +sg291137 +S'John Marin' +p326328 +sa(dp326329 +g291130 +S'watercolor on wove paper' +p326330 +sg291132 +S'c. 1911' +p326331 +sg291134 +S'Woolworth Building under Construction [recto]' +p326332 +sg291136 +g27 +sg291137 +S'John Marin' +p326333 +sa(dp326334 +g291130 +S'watercolor on wove paper' +p326335 +sg291132 +S'c. 1913' +p326336 +sg291134 +S'View of New York [verso]' +p326337 +sg291136 +g27 +sg291137 +S'John Marin' +p326338 +sa(dp326339 +g291134 +S'Head of Saint John the Baptist' +p326340 +sg291137 +S'Francesco Marmitta' +p326341 +sg291130 +S'metalpoint heightened with white on blue paper' +p326342 +sg291132 +S'15th century' +p326343 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074e3.jpg' +p326344 +sg291136 +g27 +sa(dp326345 +g291130 +S'charcoal on wove paper' +p326346 +sg291132 +S'1919' +p326347 +sg291134 +S'Woman Sewing' +p326348 +sg291136 +g27 +sg291137 +S'Julius Thiengen Bloch' +p326349 +sa(dp326350 +g291134 +S'Edmond de Goncourt' +p326351 +sg291137 +S'F\xc3\xa9lix Bracquemond' +p326352 +sg291130 +S'etching in black on japan paper' +p326353 +sg291132 +S'1882' +p326354 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00057/a0005725.jpg' +p326355 +sg291136 +g27 +sa(dp326356 +g291134 +S'Landscape with Large Rock' +p326357 +sg291137 +S'Allart van Everdingen' +p326358 +sg291130 +S'pen and brown ink with brown wash on laid paper' +p326359 +sg291132 +S'unknown date\n' +p326360 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a00071cd.jpg' +p326361 +sg291136 +g27 +sa(dp326362 +g291130 +S'1 vol: ill: 79 drawings (incl.title page) in watercolor and gouache, with gold oval borders, on vellum, alternating w/ ms text on paper; 2 plates (III, IV) with gold border only' +p326363 +sg291132 +S'c. 1575/1580' +p326364 +sg291134 +S'Animalia Rationalia et Insecta (Ignis), volume I' +p326365 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326366 +sa(dp326367 +g291134 +S'Animalia Rationalia et Insecta (Ignis): Title Page' +p326368 +sg291137 +S'Joris Hoefnagel' +p326369 +sg291130 +S'watercolor and gouache with gold on vellum' +p326370 +sg291132 +S'c. 1575/1580' +p326371 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00102/a0010215.jpg' +p326372 +sg291136 +g27 +sa(dp326373 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326374 +sg291132 +S'c. 1575/1580' +p326375 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate IX' +p326376 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326377 +sa(dp326378 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326379 +sg291132 +S'c. 1575/1580' +p326380 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate X' +p326381 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326382 +sa(dp326383 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326384 +sg291132 +S'c. 1575/1580' +p326385 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XI' +p326386 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326387 +sa(dp326388 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326389 +sg291132 +S'c. 1575/1580' +p326390 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XII' +p326391 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326392 +sa(dp326393 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326394 +sg291132 +S'c. 1575/1580' +p326395 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XIII' +p326396 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326397 +sa(dp326398 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326399 +sg291132 +S'c. 1575/1580' +p326400 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XIV' +p326401 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326402 +sa(dp326403 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326404 +sg291132 +S'c. 1575/1580' +p326405 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XV' +p326406 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326407 +sa(dp326408 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326409 +sg291132 +S'c. 1575/1580' +p326410 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XVI' +p326411 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326412 +sa(dp326413 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326414 +sg291132 +S'c. 1575/1580' +p326415 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XVII' +p326416 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326417 +sa(dp326418 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326419 +sg291132 +S'c. 1575/1580' +p326420 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XVIII' +p326421 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326422 +sa(dp326423 +g291134 +S'Animalia Rationalia et Insecta (Ignis): Plate I' +p326424 +sg291137 +S'Joris Hoefnagel' +p326425 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326426 +sg291132 +S'c. 1575/1580' +p326427 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00033/a00033e7.jpg' +p326428 +sg291136 +g27 +sa(dp326429 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326430 +sg291132 +S'c. 1575/1580' +p326431 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XIX' +p326432 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326433 +sa(dp326434 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326435 +sg291132 +S'c. 1575/1580' +p326436 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XX' +p326437 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326438 +sa(dp326439 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326440 +sg291132 +S'c. 1575/1580' +p326441 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XXI' +p326442 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326443 +sa(dp326444 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326445 +sg291132 +S'c. 1575/1580' +p326446 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XXII' +p326447 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326448 +sa(dp326449 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326450 +sg291132 +S'c. 1575/1580' +p326451 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XXIII' +p326452 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326453 +sa(dp326454 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326455 +sg291132 +S'c. 1575/1580' +p326456 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XXIV' +p326457 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326458 +sa(dp326459 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326460 +sg291132 +S'c. 1575/1580' +p326461 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XXV' +p326462 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326463 +sa(dp326464 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326465 +sg291132 +S'c. 1575/1580' +p326466 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XXVI' +p326467 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326468 +sa(dp326469 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326470 +sg291132 +S'c. 1575/1580' +p326471 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XXVII' +p326472 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326473 +sa(dp326474 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326475 +sg291132 +S'c. 1575/1580' +p326476 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XXVIII' +p326477 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326478 +sa(dp326479 +g291134 +S'Animalia Rationalia et Insecta (Ignis): Plate II' +p326480 +sg291137 +S'Joris Hoefnagel' +p326481 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326482 +sg291132 +S'c. 1575/1580' +p326483 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f20.jpg' +p326484 +sg291136 +g27 +sa(dp326485 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326486 +sg291132 +S'c. 1575/1580' +p326487 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XXIX' +p326488 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326489 +sa(dp326490 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326491 +sg291132 +S'c. 1575/1580' +p326492 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XXX' +p326493 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326494 +sa(dp326495 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326496 +sg291132 +S'c. 1575/1580' +p326497 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XXXI' +p326498 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326499 +sa(dp326500 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326501 +sg291132 +S'c. 1575/1580' +p326502 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XXXII' +p326503 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326504 +sa(dp326505 +g291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XXXIII' +p326506 +sg291137 +S'Joris Hoefnagel' +p326507 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326508 +sg291132 +S'c. 1575/1580' +p326509 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00033/a00033e8.jpg' +p326510 +sg291136 +g27 +sa(dp326511 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326512 +sg291132 +S'c. 1575/1580' +p326513 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XXXIV' +p326514 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326515 +sa(dp326516 +g291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XXXV' +p326517 +sg291137 +S'Joris Hoefnagel' +p326518 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326519 +sg291132 +S'c. 1575/1580' +p326520 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00033/a00033e9.jpg' +p326521 +sg291136 +g27 +sa(dp326522 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326523 +sg291132 +S'c. 1575/1580' +p326524 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XXXVI' +p326525 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326526 +sa(dp326527 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326528 +sg291132 +S'c. 1575/1580' +p326529 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XXXVII' +p326530 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326531 +sa(dp326532 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326533 +sg291132 +S'c. 1575/1580' +p326534 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XXXVIII' +p326535 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326536 +sa(dp326537 +g291130 +S'gold border only' +p326538 +sg291132 +S'c. 1575/1580' +p326539 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate III' +p326540 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326541 +sa(dp326542 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326543 +sg291132 +S'c. 1575/1580' +p326544 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XXXIX' +p326545 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326546 +sa(dp326547 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326548 +sg291132 +S'c. 1575/1580' +p326549 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XL' +p326550 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326551 +sa(dp326552 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326553 +sg291132 +S'c. 1575/1580' +p326554 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XLI' +p326555 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326556 +sa(dp326557 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326558 +sg291132 +S'c. 1575/1580' +p326559 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XLII' +p326560 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326561 +sa(dp326562 +g291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XLIII' +p326563 +sg291137 +S'Joris Hoefnagel' +p326564 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326565 +sg291132 +S'c. 1575/1580' +p326566 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00033/a00033ea.jpg' +p326567 +sg291136 +g27 +sa(dp326568 +g291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XLIV' +p326569 +sg291137 +S'Joris Hoefnagel' +p326570 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326571 +sg291132 +S'c. 1575/1580' +p326572 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00033/a00033eb.jpg' +p326573 +sg291136 +g27 +sa(dp326574 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326575 +sg291132 +S'c. 1575/1580' +p326576 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XLV' +p326577 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326578 +sa(dp326579 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326580 +sg291132 +S'c. 1575/1580' +p326581 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XLVI' +p326582 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326583 +sa(dp326584 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326585 +sg291132 +S'c. 1575/1580' +p326586 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XLVII' +p326587 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326588 +sa(dp326589 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326590 +sg291132 +S'c. 1575/1580' +p326591 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XLVIII' +p326592 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326593 +sa(dp326594 +g291130 +S'gold border only' +p326595 +sg291132 +S'c. 1575/1580' +p326596 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate IV' +p326597 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326598 +sa(dp326599 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326600 +sg291132 +S'c. 1575/1580' +p326601 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate XLIX' +p326602 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326603 +sa(dp326604 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326605 +sg291132 +S'c. 1575/1580' +p326606 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate L' +p326607 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326608 +sa(dp326609 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326610 +sg291132 +S'c. 1575/1580' +p326611 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LI' +p326612 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326613 +sa(dp326614 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326615 +sg291132 +S'c. 1575/1580' +p326616 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LII' +p326617 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326618 +sa(dp326619 +g291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LIII' +p326620 +sg291137 +S'Joris Hoefnagel' +p326621 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326622 +sg291132 +S'c. 1575/1580' +p326623 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00033/a00033ec.jpg' +p326624 +sg291136 +g27 +sa(dp326625 +g291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LIV' +p326626 +sg291137 +S'Joris Hoefnagel' +p326627 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326628 +sg291132 +S'c. 1575/1580' +p326629 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00033/a00033ed.jpg' +p326630 +sg291136 +g27 +sa(dp326631 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326632 +sg291132 +S'c. 1575/1580' +p326633 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LV' +p326634 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326635 +sa(dp326636 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326637 +sg291132 +S'c. 1575/1580' +p326638 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LVI' +p326639 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326640 +sa(dp326641 +g291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LVII' +p326642 +sg291137 +S'Joris Hoefnagel' +p326643 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326644 +sg291132 +S'c. 1575/1580' +p326645 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00033/a00033ee.jpg' +p326646 +sg291136 +g27 +sa(dp326647 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326648 +sg291132 +S'c. 1575/1580' +p326649 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LVIII' +p326650 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326651 +sa(dp326652 +g291134 +S'Animalia Rationalia et Insecta (Ignis): Plate V' +p326653 +sg291137 +S'Joris Hoefnagel' +p326654 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326655 +sg291132 +S'c. 1575/1580' +p326656 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00033/a00033ef.jpg' +p326657 +sg291136 +g27 +sa(dp326658 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326659 +sg291132 +S'c. 1575/1580' +p326660 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LIX' +p326661 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326662 +sa(dp326663 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326664 +sg291132 +S'c. 1575/1580' +p326665 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LX' +p326666 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326667 +sa(dp326668 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326669 +sg291132 +S'c. 1575/1580' +p326670 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LXI' +p326671 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326672 +sa(dp326673 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326674 +sg291132 +S'c. 1575/1580' +p326675 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LXII' +p326676 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326677 +sa(dp326678 +g291130 +S'watercolor and gouache, with oval border,in gold, on vellum' +p326679 +sg291132 +S'c. 1575/1580' +p326680 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LXIII' +p326681 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326682 +sa(dp326683 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326684 +sg291132 +S'c. 1575/1580' +p326685 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LXIV' +p326686 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326687 +sa(dp326688 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326689 +sg291132 +S'c. 1575/1580' +p326690 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LXV' +p326691 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326692 +sa(dp326693 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326694 +sg291132 +S'c. 1575/1580' +p326695 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LXVI' +p326696 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326697 +sa(dp326698 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326699 +sg291132 +S'c. 1575/1580' +p326700 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LXVII' +p326701 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326702 +sa(dp326703 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326704 +sg291132 +S'c. 1575/1580' +p326705 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LXVIII' +p326706 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326707 +sa(dp326708 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326709 +sg291132 +S'c. 1575/1580' +p326710 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate VI' +p326711 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326712 +sa(dp326713 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326714 +sg291132 +S'c. 1575/1580' +p326715 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LXIX' +p326716 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326717 +sa(dp326718 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326719 +sg291132 +S'c. 1575/1580' +p326720 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LXX' +p326721 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326722 +sa(dp326723 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326724 +sg291132 +S'c. 1575/1580' +p326725 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LXXI' +p326726 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326727 +sa(dp326728 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326729 +sg291132 +S'c. 1575/1580' +p326730 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LXXII' +p326731 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326732 +sa(dp326733 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326734 +sg291132 +S'c. 1575/1580' +p326735 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LXXIII' +p326736 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326737 +sa(dp326738 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326739 +sg291132 +S'c. 1575/1580' +p326740 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LXXIV' +p326741 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326742 +sa(dp326743 +g291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LXXV' +p326744 +sg291137 +S'Joris Hoefnagel' +p326745 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326746 +sg291132 +S'c. 1575/1580' +p326747 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00033/a00033f0.jpg' +p326748 +sg291136 +g27 +sa(dp326749 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326750 +sg291132 +S'c. 1575/1580' +p326751 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LXXVI' +p326752 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326753 +sa(dp326754 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326755 +sg291132 +S'c. 1575/1580' +p326756 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LXXVII' +p326757 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326758 +sa(dp326759 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326760 +sg291132 +S'c. 1575/1580' +p326761 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LXXVIII' +p326762 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326763 +sa(dp326764 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326765 +sg291132 +S'c. 1575/1580' +p326766 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate VII' +p326767 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326768 +sa(dp326769 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326770 +sg291132 +S'c. 1575/1580' +p326771 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LXXIX' +p326772 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326773 +sa(dp326774 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326775 +sg291132 +S'c. 1575/1580' +p326776 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate LXXX' +p326777 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326778 +sa(dp326779 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326780 +sg291132 +S'c. 1575/1580' +p326781 +sg291134 +S'Animalia Rationalia et Insecta (Ignis): Plate VIII' +p326782 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326783 +sa(dp326784 +g291130 +S'1 vol: ill: 71 drawings (incl.title page) in watercolor and gouache, with gold oval borders, on vellum, alternating w/ ms text on paper; 1 plate (LXXI) with gold border only' +p326785 +sg291132 +S'c. 1575/1580' +p326786 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra), volume II' +p326787 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326788 +sa(dp326789 +g291130 +S'watercolor and gouache with gold on vellum' +p326790 +sg291132 +S'c. 1575/1580' +p326791 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Title Page' +p326792 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326793 +sa(dp326794 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326795 +sg291132 +S'c. 1575/1580' +p326796 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate IX' +p326797 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326798 +sa(dp326799 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326800 +sg291132 +S'c. 1575/1580' +p326801 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate X' +p326802 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326803 +sa(dp326804 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326805 +sg291132 +S'c. 1575/1580' +p326806 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XI' +p326807 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326808 +sa(dp326809 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326810 +sg291132 +S'c. 1575/1580' +p326811 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XII' +p326812 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326813 +sa(dp326814 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326815 +sg291132 +S'c. 1575/1580' +p326816 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XIII' +p326817 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326818 +sa(dp326819 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326820 +sg291132 +S'c. 1575/1580' +p326821 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XIV' +p326822 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326823 +sa(dp326824 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326825 +sg291132 +S'c. 1575/1580' +p326826 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XV' +p326827 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326828 +sa(dp326829 +g291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XVI' +p326830 +sg291137 +S'Joris Hoefnagel' +p326831 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326832 +sg291132 +S'c. 1575/1580' +p326833 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00033/a00033f1.jpg' +p326834 +sg291136 +g27 +sa(dp326835 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326836 +sg291132 +S'c. 1575/1580' +p326837 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XVII' +p326838 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326839 +sa(dp326840 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326841 +sg291132 +S'c. 1575/1580' +p326842 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XVIII' +p326843 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326844 +sa(dp326845 +g291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate I' +p326846 +sg291137 +S'Joris Hoefnagel' +p326847 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326848 +sg291132 +S'c. 1575/1580' +p326849 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00066/a00066f1.jpg' +p326850 +sg291136 +g27 +sa(dp326851 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326852 +sg291132 +S'c. 1575/1580' +p326853 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XIX' +p326854 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326855 +sa(dp326856 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326857 +sg291132 +S'c. 1575/1580' +p326858 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XX' +p326859 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326860 +sa(dp326861 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326862 +sg291132 +S'c. 1575/1580' +p326863 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XXI' +p326864 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326865 +sa(dp326866 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326867 +sg291132 +S'c. 1575/1580' +p326868 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XXII' +p326869 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326870 +sa(dp326871 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326872 +sg291132 +S'c. 1575/1580' +p326873 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XXIII' +p326874 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326875 +sa(dp326876 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326877 +sg291132 +S'c. 1575/1580' +p326878 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XXIV' +p326879 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326880 +sa(dp326881 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326882 +sg291132 +S'c. 1575/1580' +p326883 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XXV' +p326884 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326885 +sa(dp326886 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326887 +sg291132 +S'c. 1575/1580' +p326888 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XXVI' +p326889 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326890 +sa(dp326891 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326892 +sg291132 +S'c. 1575/1580' +p326893 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XXVII' +p326894 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326895 +sa(dp326896 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326897 +sg291132 +S'c. 1575/1580' +p326898 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XXVIII' +p326899 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326900 +sa(dp326901 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326902 +sg291132 +S'c. 1575/1580' +p326903 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate II' +p326904 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326905 +sa(dp326906 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326907 +sg291132 +S'c. 1575/1580' +p326908 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XXIX' +p326909 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326910 +sa(dp326911 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326912 +sg291132 +S'c. 1575/1580' +p326913 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XXX' +p326914 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326915 +sa(dp326916 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326917 +sg291132 +S'c. 1575/1580' +p326918 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XXXI' +p326919 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326920 +sa(dp326921 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326922 +sg291132 +S'c. 1575/1580' +p326923 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XXXII' +p326924 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326925 +sa(dp326926 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326927 +sg291132 +S'c. 1575/1580' +p326928 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XXXIII' +p326929 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326930 +sa(dp326931 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326932 +sg291132 +S'c. 1575/1580' +p326933 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XXXIV' +p326934 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326935 +sa(dp326936 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326937 +sg291132 +S'c. 1575/1580' +p326938 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XXXV' +p326939 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326940 +sa(dp326941 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326942 +sg291132 +S'c. 1575/1580' +p326943 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XXXVI' +p326944 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326945 +sa(dp326946 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326947 +sg291132 +S'c. 1575/1580' +p326948 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XXXVII' +p326949 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326950 +sa(dp326951 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326952 +sg291132 +S'c. 1575/1580' +p326953 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XXXVIII' +p326954 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326955 +sa(dp326956 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326957 +sg291132 +S'c. 1575/1580' +p326958 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate III' +p326959 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326960 +sa(dp326961 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326962 +sg291132 +S'c. 1575/1580' +p326963 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XXXIX' +p326964 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326965 +sa(dp326966 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326967 +sg291132 +S'c. 1575/1580' +p326968 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XL' +p326969 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326970 +sa(dp326971 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326972 +sg291132 +S'c. 1575/1580' +p326973 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XLI' +p326974 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326975 +sa(dp326976 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326977 +sg291132 +S'c. 1575/1580' +p326978 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XLII' +p326979 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326980 +sa(dp326981 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326982 +sg291132 +S'c. 1575/1580' +p326983 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XLIII' +p326984 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326985 +sa(dp326986 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326987 +sg291132 +S'c. 1575/1580' +p326988 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XLIV' +p326989 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326990 +sa(dp326991 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326992 +sg291132 +S'c. 1575/1580' +p326993 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XLV' +p326994 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p326995 +sa(dp326996 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p326997 +sg291132 +S'c. 1575/1580' +p326998 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XLVI' +p326999 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327000 +sa(dp327001 +g291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XLVII' +p327002 +sg291137 +S'Joris Hoefnagel' +p327003 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327004 +sg291132 +S'c. 1575/1580' +p327005 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00033/a00033f2.jpg' +p327006 +sg291136 +g27 +sa(dp327007 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327008 +sg291132 +S'c. 1575/1580' +p327009 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XLVIII' +p327010 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327011 +sa(dp327012 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327013 +sg291132 +S'c. 1575/1580' +p327014 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate IV' +p327015 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327016 +sa(dp327017 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327018 +sg291132 +S'c. 1575/1580' +p327019 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate XLIX' +p327020 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327021 +sa(dp327022 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327023 +sg291132 +S'c. 1575/1580' +p327024 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate L' +p327025 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327026 +sa(dp327027 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327028 +sg291132 +S'c. 1575/1580' +p327029 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate LI' +p327030 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327031 +sa(dp327032 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327033 +sg291132 +S'c. 1575/1580' +p327034 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate LII' +p327035 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327036 +sa(dp327037 +g291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate LIII' +p327038 +sg291137 +S'Joris Hoefnagel' +p327039 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327040 +sg291132 +S'c. 1575/1580' +p327041 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00033/a00033f3.jpg' +p327042 +sg291136 +g27 +sa(dp327043 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327044 +sg291132 +S'c. 1575/1580' +p327045 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate LIV' +p327046 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327047 +sa(dp327048 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327049 +sg291132 +S'c. 1575/1580' +p327050 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate LV' +p327051 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327052 +sa(dp327053 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327054 +sg291132 +S'c. 1575/1580' +p327055 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate LVI' +p327056 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327057 +sa(dp327058 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327059 +sg291132 +S'c. 1575/1580' +p327060 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate LVII' +p327061 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327062 +sa(dp327063 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327064 +sg291132 +S'c. 1575/1580' +p327065 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate LVIII' +p327066 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327067 +sa(dp327068 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327069 +sg291132 +S'c. 1575/1580' +p327070 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate V' +p327071 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327072 +sa(dp327073 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327074 +sg291132 +S'c. 1575/1580' +p327075 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate LIX' +p327076 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327077 +sa(dp327078 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327079 +sg291132 +S'c. 1575/1580' +p327080 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate LX' +p327081 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327082 +sa(dp327083 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327084 +sg291132 +S'c. 1575/1580' +p327085 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate LXI' +p327086 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327087 +sa(dp327088 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327089 +sg291132 +S'c. 1575/1580' +p327090 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate LXII' +p327091 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327092 +sa(dp327093 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327094 +sg291132 +S'c. 1575/1580' +p327095 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate LXIV' +p327096 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327097 +sa(dp327098 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327099 +sg291132 +S'c. 1575/1580' +p327100 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate LXIV' +p327101 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327102 +sa(dp327103 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327104 +sg291132 +S'c. 1575/1580' +p327105 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate LXV' +p327106 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327107 +sa(dp327108 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327109 +sg291132 +S'c. 1575/1580' +p327110 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate LXVI' +p327111 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327112 +sa(dp327113 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327114 +sg291132 +S'c. 1575/1580' +p327115 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate LXVII' +p327116 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327117 +sa(dp327118 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327119 +sg291132 +S'c. 1575/1580' +p327120 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate LXVIII' +p327121 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327122 +sa(dp327123 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327124 +sg291132 +S'c. 1575/1580' +p327125 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate VI' +p327126 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327127 +sa(dp327128 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327129 +sg291132 +S'c. 1575/1580' +p327130 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate LXIX' +p327131 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327132 +sa(dp327133 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327134 +sg291132 +S'c. 1575/1580' +p327135 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate LXX' +p327136 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327137 +sa(dp327138 +g291130 +S'gold border only' +p327139 +sg291132 +S'c. 1575/1580' +p327140 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate LXXI' +p327141 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327142 +sa(dp327143 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327144 +sg291132 +S'c. 1575/1580' +p327145 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate VII' +p327146 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327147 +sa(dp327148 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327149 +sg291132 +S'c. 1575/1580' +p327150 +sg291134 +S'Animalia Qvadrvpedia et Reptilia (Terra): Plate VIII' +p327151 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327152 +sa(dp327153 +g291130 +S'1 vol: ill: 58 drawings (incl.title page) in watercolor and gouache, with gold oval borders, on vellum, alternating w/ ms text on paper; 1 plate (VII) with gold border only' +p327154 +sg291132 +S'c. 1575/1580' +p327155 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva), volume III' +p327156 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327157 +sa(dp327158 +g291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Title Page' +p327159 +sg291137 +S'Joris Hoefnagel' +p327160 +sg291130 +S'watercolor and gouache with gold' +p327161 +sg291132 +S'c. 1575/1580' +p327162 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00033/a00033f4.jpg' +p327163 +sg291136 +g27 +sa(dp327164 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327165 +sg291132 +S'c. 1575/1580' +p327166 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate IX' +p327167 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327168 +sa(dp327169 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327170 +sg291132 +S'c. 1575/1580' +p327171 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate X' +p327172 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327173 +sa(dp327174 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327175 +sg291132 +S'c. 1575/1580' +p327176 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XI' +p327177 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327178 +sa(dp327179 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327180 +sg291132 +S'c. 1575/1580' +p327181 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XII' +p327182 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327183 +sa(dp327184 +g291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XXIV' +p327185 +sg291137 +S'Joris Hoefnagel' +p327186 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327187 +sg291132 +S'c. 1575/1580' +p327188 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00034/a000340a.jpg' +p327189 +sg291136 +g27 +sa(dp327190 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327191 +sg291132 +S'c. 1575/1580' +p327192 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XIV' +p327193 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327194 +sa(dp327195 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327196 +sg291132 +S'c. 1575/1580' +p327197 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XV' +p327198 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327199 +sa(dp327200 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327201 +sg291132 +S'c. 1575/1580' +p327202 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XVI' +p327203 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327204 +sa(dp327205 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327206 +sg291132 +S'c. 1575/1580' +p327207 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XVII' +p327208 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327209 +sa(dp327210 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327211 +sg291132 +S'c. 1575/1580' +p327212 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XVIII' +p327213 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327214 +sa(dp327215 +g291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate I' +p327216 +sg291137 +S'Joris Hoefnagel' +p327217 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327218 +sg291132 +S'c. 1575/1580' +p327219 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00033/a00033f5.jpg' +p327220 +sg291136 +g27 +sa(dp327221 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327222 +sg291132 +S'c. 1575/1580' +p327223 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XIX' +p327224 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327225 +sa(dp327226 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327227 +sg291132 +S'c. 1575/1580' +p327228 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XX' +p327229 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327230 +sa(dp327231 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327232 +sg291132 +S'c. 1575/1580' +p327233 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XXI' +p327234 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327235 +sa(dp327236 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327237 +sg291132 +S'c. 1575/1580' +p327238 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XXII' +p327239 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327240 +sa(dp327241 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327242 +sg291132 +S'c. 1575/1580' +p327243 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XXIII' +p327244 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327245 +sa(dp327246 +g291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XXIV' +p327247 +sg291137 +S'Joris Hoefnagel' +p327248 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327249 +sg291132 +S'c. 1575/1580' +p327250 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00034/a000341c.jpg' +p327251 +sg291136 +g27 +sa(dp327252 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327253 +sg291132 +S'c. 1575/1580' +p327254 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XXV' +p327255 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327256 +sa(dp327257 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327258 +sg291132 +S'c. 1575/1580' +p327259 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XXVI' +p327260 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327261 +sa(dp327262 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327263 +sg291132 +S'c. 1575/1580' +p327264 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XXVII' +p327265 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327266 +sa(dp327267 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327268 +sg291132 +S'c. 1575/1580' +p327269 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XXVIII' +p327270 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327271 +sa(dp327272 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327273 +sg291132 +S'c. 1575/1580' +p327274 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate II' +p327275 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327276 +sa(dp327277 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327278 +sg291132 +S'c. 1575/1580' +p327279 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XXIX' +p327280 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327281 +sa(dp327282 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327283 +sg291132 +S'c. 1575/1580' +p327284 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XXX' +p327285 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327286 +sa(dp327287 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327288 +sg291132 +S'c. 1575/1580' +p327289 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XXXI' +p327290 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327291 +sa(dp327292 +g291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XXXII' +p327293 +sg291137 +S'Joris Hoefnagel' +p327294 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327295 +sg291132 +S'c. 1575/1580' +p327296 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00034/a000340b.jpg' +p327297 +sg291136 +g27 +sa(dp327298 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327299 +sg291132 +S'c. 1575/1580' +p327300 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XXXIII' +p327301 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327302 +sa(dp327303 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327304 +sg291132 +S'c. 1575/1580' +p327305 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XXXIV' +p327306 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327307 +sa(dp327308 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327309 +sg291132 +S'c. 1575/1580' +p327310 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XXXV' +p327311 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327312 +sa(dp327313 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327314 +sg291132 +S'c. 1575/1580' +p327315 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XXXVI' +p327316 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327317 +sa(dp327318 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327319 +sg291132 +S'c. 1575/1580' +p327320 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XXXVII' +p327321 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327322 +sa(dp327323 +g291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XXXVIII' +p327324 +sg291137 +S'Joris Hoefnagel' +p327325 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327326 +sg291132 +S'c. 1575/1580' +p327327 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0003b/a0003b4e.jpg' +p327328 +sg291136 +g27 +sa(dp327329 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327330 +sg291132 +S'c. 1575/1580' +p327331 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate III' +p327332 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327333 +sa(dp327334 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327335 +sg291132 +S'c. 1575/1580' +p327336 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XXXIX' +p327337 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327338 +sa(dp327339 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327340 +sg291132 +S'c. 1575/1580' +p327341 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XL' +p327342 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327343 +sa(dp327344 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327345 +sg291132 +S'c. 1575/1580' +p327346 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XLI' +p327347 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327348 +sa(dp327349 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327350 +sg291132 +S'c. 1575/1580' +p327351 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XLII' +p327352 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327353 +sa(dp327354 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327355 +sg291132 +S'c. 1575/1580' +p327356 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XLIII' +p327357 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327358 +sa(dp327359 +g291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XLIV' +p327360 +sg291137 +S'Joris Hoefnagel' +p327361 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327362 +sg291132 +S'c. 1575/1580' +p327363 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00034/a000340d.jpg' +p327364 +sg291136 +g27 +sa(dp327365 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327366 +sg291132 +S'c. 1575/1580' +p327367 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XLV' +p327368 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327369 +sa(dp327370 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327371 +sg291132 +S'c. 1575/1580' +p327372 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XLVI' +p327373 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327374 +sa(dp327375 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327376 +sg291132 +S'c. 1575/1580' +p327377 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XLVII' +p327378 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327379 +sa(dp327380 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327381 +sg291132 +S'c. 1575/1580' +p327382 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XLVIII' +p327383 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327384 +sa(dp327385 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327386 +sg291132 +S'c. 1575/1580' +p327387 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate IV' +p327388 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327389 +sa(dp327390 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327391 +sg291132 +S'c. 1575/1580' +p327392 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate XLIX' +p327393 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327394 +sa(dp327395 +g291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate L' +p327396 +sg291137 +S'Joris Hoefnagel' +p327397 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327398 +sg291132 +S'c. 1575/1580' +p327399 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00034/a000340e.jpg' +p327400 +sg291136 +g27 +sa(dp327401 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327402 +sg291132 +S'c. 1575/1580' +p327403 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate LI' +p327404 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327405 +sa(dp327406 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327407 +sg291132 +S'c. 1575/1580' +p327408 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate LII' +p327409 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327410 +sa(dp327411 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327412 +sg291132 +S'c. 1575/1580' +p327413 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate LIII' +p327414 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327415 +sa(dp327416 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327417 +sg291132 +S'c. 1575/1580' +p327418 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate LIV' +p327419 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327420 +sa(dp327421 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327422 +sg291132 +S'c. 1575/1580' +p327423 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate LV' +p327424 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327425 +sa(dp327426 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327427 +sg291132 +S'c. 1575/1580' +p327428 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate LVI' +p327429 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327430 +sa(dp327431 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327432 +sg291132 +S'c. 1575/1580' +p327433 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate LVII' +p327434 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327435 +sa(dp327436 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327437 +sg291132 +S'c. 1575/1580' +p327438 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate LVIII' +p327439 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327440 +sa(dp327441 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327442 +sg291132 +S'c. 1575/1580' +p327443 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate V' +p327444 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327445 +sa(dp327446 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327447 +sg291132 +S'c. 1575/1580' +p327448 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate VI' +p327449 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327450 +sa(dp327451 +g291130 +S'gold border only' +p327452 +sg291132 +S'c. 1575/1580' +p327453 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate VII' +p327454 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327455 +sa(dp327456 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327457 +sg291132 +S'c. 1575/1580' +p327458 +sg291134 +S'Animalia Aqvatilia et Cochiliata (Aqva): Plate VIII' +p327459 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327460 +sa(dp327461 +g291130 +S'1 vol: ill: 70 drawings (incl.title page) in watercolor and gouache, with gold oval borders, on vellum, alternating with ms text on paper; 2 plates (LXX and LXXI) with gold border only' +p327462 +sg291132 +S'c. 1575/1580' +p327463 +sg291134 +S'Animalia Volatilia et Amphibia (Aier), volume IV' +p327464 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327465 +sa(dp327466 +g291130 +S'watercolor and gouache with gold' +p327467 +sg291132 +S'c. 1575/1580' +p327468 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Title Page' +p327469 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327470 +sa(dp327471 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327472 +sg291132 +S'c. 1575/1580' +p327473 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate IX' +p327474 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327475 +sa(dp327476 +g291134 +S'Animalia Volatilia et Amphibia (Aier): Plate X' +p327477 +sg291137 +S'Joris Hoefnagel' +p327478 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327479 +sg291132 +S'c. 1575/1580' +p327480 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00066/a00066f2.jpg' +p327481 +sg291136 +g27 +sa(dp327482 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327483 +sg291132 +S'c. 1575/1580' +p327484 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XI' +p327485 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327486 +sa(dp327487 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327488 +sg291132 +S'c. 1575/1580' +p327489 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XII' +p327490 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327491 +sa(dp327492 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327493 +sg291132 +S'c. 1575/1580' +p327494 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XIII' +p327495 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327496 +sa(dp327497 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327498 +sg291132 +S'c. 1575/1580' +p327499 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XIV' +p327500 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327501 +sa(dp327502 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327503 +sg291132 +S'c. 1575/1580' +p327504 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XV' +p327505 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327506 +sa(dp327507 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327508 +sg291132 +S'c. 1575/1580' +p327509 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XVI' +p327510 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327511 +sa(dp327512 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327513 +sg291132 +S'c. 1575/1580' +p327514 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XVII' +p327515 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327516 +sa(dp327517 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327518 +sg291132 +S'c. 1575/1580' +p327519 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XVIII' +p327520 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327521 +sa(dp327522 +g291134 +S'Animalia Volatilia et Amphibia (Aier): Plate I' +p327523 +sg291137 +S'Joris Hoefnagel' +p327524 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327525 +sg291132 +S'c. 1575/1580' +p327526 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00034/a000341d.jpg' +p327527 +sg291136 +g27 +sa(dp327528 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327529 +sg291132 +S'c. 1575/1580' +p327530 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XIX' +p327531 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327532 +sa(dp327533 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327534 +sg291132 +S'c. 1575/1580' +p327535 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XX' +p327536 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327537 +sa(dp327538 +g291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XXI' +p327539 +sg291137 +S'Joris Hoefnagel' +p327540 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327541 +sg291132 +S'c. 1575/1580' +p327542 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00034/a000340f.jpg' +p327543 +sg291136 +g27 +sa(dp327544 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327545 +sg291132 +S'c. 1575/1580' +p327546 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XXII' +p327547 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327548 +sa(dp327549 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327550 +sg291132 +S'c. 1575/1580' +p327551 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XXIII' +p327552 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327553 +sa(dp327554 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327555 +sg291132 +S'c. 1575/1580' +p327556 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XXIV' +p327557 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327558 +sa(dp327559 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327560 +sg291132 +S'c. 1575/1580' +p327561 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XXV' +p327562 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327563 +sa(dp327564 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327565 +sg291132 +S'c. 1575/1580' +p327566 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XXVI' +p327567 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327568 +sa(dp327569 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327570 +sg291132 +S'c. 1575/1580' +p327571 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XXVII' +p327572 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327573 +sa(dp327574 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327575 +sg291132 +S'c. 1575/1580' +p327576 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XXVIII' +p327577 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327578 +sa(dp327579 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327580 +sg291132 +S'c. 1575/1580' +p327581 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate II' +p327582 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327583 +sa(dp327584 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327585 +sg291132 +S'c. 1575/1580' +p327586 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XXIX' +p327587 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327588 +sa(dp327589 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327590 +sg291132 +S'c. 1575/1580' +p327591 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XXX' +p327592 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327593 +sa(dp327594 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327595 +sg291132 +S'c. 1575/1580' +p327596 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XXXI' +p327597 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327598 +sa(dp327599 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327600 +sg291132 +S'c. 1575/1580' +p327601 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XXXII' +p327602 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327603 +sa(dp327604 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327605 +sg291132 +S'c. 1575/1580' +p327606 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XXXIII' +p327607 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327608 +sa(dp327609 +g291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XXXIV' +p327610 +sg291137 +S'Joris Hoefnagel' +p327611 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327612 +sg291132 +S'c. 1575/1580' +p327613 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00034/a000341e.jpg' +p327614 +sg291136 +g27 +sa(dp327615 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327616 +sg291132 +S'c. 1575/1580' +p327617 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XXXV' +p327618 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327619 +sa(dp327620 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327621 +sg291132 +S'c. 1575/1580' +p327622 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XXXVI' +p327623 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327624 +sa(dp327625 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327626 +sg291132 +S'c. 1575/1580' +p327627 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XXXVII' +p327628 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327629 +sa(dp327630 +g291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XXXVIII' +p327631 +sg291137 +S'Joris Hoefnagel' +p327632 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327633 +sg291132 +S'c. 1575/1580' +p327634 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00034/a000341f.jpg' +p327635 +sg291136 +g27 +sa(dp327636 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327637 +sg291132 +S'c. 1575/1580' +p327638 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate III' +p327639 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327640 +sa(dp327641 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327642 +sg291132 +S'c. 1575/1580' +p327643 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XXXIX' +p327644 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327645 +sa(dp327646 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327647 +sg291132 +S'c. 1575/1580' +p327648 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XL' +p327649 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327650 +sa(dp327651 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327652 +sg291132 +S'c. 1575/1580' +p327653 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XLI' +p327654 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327655 +sa(dp327656 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327657 +sg291132 +S'c. 1575/1580' +p327658 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XLII' +p327659 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327660 +sa(dp327661 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327662 +sg291132 +S'c. 1575/1580' +p327663 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XLIII' +p327664 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327665 +sa(dp327666 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327667 +sg291132 +S'c. 1575/1580' +p327668 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XLIV' +p327669 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327670 +sa(dp327671 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327672 +sg291132 +S'c. 1575/1580' +p327673 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XLV' +p327674 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327675 +sa(dp327676 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327677 +sg291132 +S'c. 1575/1580' +p327678 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XLVI' +p327679 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327680 +sa(dp327681 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327682 +sg291132 +S'c. 1575/1580' +p327683 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XLVII' +p327684 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327685 +sa(dp327686 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327687 +sg291132 +S'c. 1575/1580' +p327688 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XLVIII' +p327689 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327690 +sa(dp327691 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327692 +sg291132 +S'c. 1575/1580' +p327693 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate IV' +p327694 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327695 +sa(dp327696 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327697 +sg291132 +S'c. 1575/1580' +p327698 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate XLIX' +p327699 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327700 +sa(dp327701 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327702 +sg291132 +S'c. 1575/1580' +p327703 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate L' +p327704 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327705 +sa(dp327706 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327707 +sg291132 +S'c. 1575/1580' +p327708 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate LI' +p327709 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327710 +sa(dp327711 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327712 +sg291132 +S'c. 1575/1580' +p327713 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate LII' +p327714 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327715 +sa(dp327716 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327717 +sg291132 +S'c. 1575/1580' +p327718 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate LIII' +p327719 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327720 +sa(dp327721 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327722 +sg291132 +S'c. 1575/1580' +p327723 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate LIV' +p327724 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327725 +sa(dp327726 +g291134 +S'Animalia Volatilia et Amphibia (Aier): Plate LV' +p327727 +sg291137 +S'Joris Hoefnagel' +p327728 +sg291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327729 +sg291132 +S'c. 1575/1580' +p327730 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e018.jpg' +p327731 +sg291136 +g27 +sa(dp327732 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327733 +sg291132 +S'c. 1575/1580' +p327734 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate LVI' +p327735 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327736 +sa(dp327737 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327738 +sg291132 +S'c. 1575/1580' +p327739 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate LVII' +p327740 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327741 +sa(dp327742 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327743 +sg291132 +S'c. 1575/1580' +p327744 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate LVIII' +p327745 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327746 +sa(dp327747 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327748 +sg291132 +S'c. 1575/1580' +p327749 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate V' +p327750 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327751 +sa(dp327752 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327753 +sg291132 +S'c. 1575/1580' +p327754 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate LIX' +p327755 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327756 +sa(dp327757 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327758 +sg291132 +S'c. 1575/1580' +p327759 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate LX' +p327760 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327761 +sa(dp327762 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327763 +sg291132 +S'c. 1575/1580' +p327764 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate LXI' +p327765 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327766 +sa(dp327767 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327768 +sg291132 +S'c. 1575/1580' +p327769 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate LXII' +p327770 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327771 +sa(dp327772 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327773 +sg291132 +S'c. 1575/1580' +p327774 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate LXIII' +p327775 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327776 +sa(dp327777 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327778 +sg291132 +S'c. 1575/1580' +p327779 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate LXIV' +p327780 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327781 +sa(dp327782 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327783 +sg291132 +S'c. 1575/1580' +p327784 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate LXV' +p327785 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327786 +sa(dp327787 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327788 +sg291132 +S'c. 1575/1580' +p327789 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate LXVI' +p327790 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327791 +sa(dp327792 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327793 +sg291132 +S'c. 1575/1580' +p327794 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate LXVII' +p327795 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327796 +sa(dp327797 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327798 +sg291132 +S'c. 1575/1580' +p327799 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate LXVIII' +p327800 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327801 +sa(dp327802 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327803 +sg291132 +S'c. 1575/1580' +p327804 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate VI' +p327805 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327806 +sa(dp327807 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327808 +sg291132 +S'c. 1575/1580' +p327809 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate LXIX' +p327810 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327811 +sa(dp327812 +g291130 +S'gold border only' +p327813 +sg291132 +S'c. 1575/1580' +p327814 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate LXX' +p327815 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327816 +sa(dp327817 +g291130 +S'gold border only' +p327818 +sg291132 +S'c. 1575/1580' +p327819 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate LXXI' +p327820 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327821 +sa(dp327822 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327823 +sg291132 +S'c. 1575/1580' +p327824 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate VII' +p327825 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327826 +sa(dp327827 +g291130 +S'watercolor and gouache, with oval border in gold, on vellum' +p327828 +sg291132 +S'c. 1575/1580' +p327829 +sg291134 +S'Animalia Volatilia et Amphibia (Aier): Plate VIII' +p327830 +sg291136 +g27 +sg291137 +S'Joris Hoefnagel' +p327831 +sa(dp327832 +g291134 +S'Archetypa studiaque patris Georgii Hoefnagelii' +p327833 +sg291137 +S'Artist Information (' +p327834 +sg291130 +S'(artist after)' +p327835 +sg291132 +S'\n' +p327836 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004cc8.jpg' +p327837 +sg291136 +g27 +sa(dp327838 +g291130 +S'gouache and india ink on wove paper' +p327839 +sg291132 +S'1961' +p327840 +sg291134 +S'Der Weg zur Quelle' +p327841 +sg291136 +g27 +sg291137 +S'Imre Reiner' +p327842 +sa(dp327843 +g291134 +S'Head of an Old Man (recto)' +p327844 +sg291137 +S'Rembrandt van Rijn' +p327845 +sg291130 +S'red chalk, with touches of black chalk, on laid paper' +p327846 +sg291132 +S'c. 1631' +p327847 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00034/a0003417.jpg' +p327848 +sg291136 +g27 +sa(dp327849 +g291134 +S'A Lioness' +p327850 +sg291137 +S'Joseph Pennell' +p327851 +sg291130 +S'lithograph on wove paper' +p327852 +sg291132 +S'unknown date\n' +p327853 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bc6.jpg' +p327854 +sg291136 +g27 +sa(dp327855 +g291130 +S'lithograph on wove paper; laid down' +p327856 +sg291132 +S'c. 1803/1804' +p327857 +sg291134 +S'Self-Portrait' +p327858 +sg291136 +g27 +sg291137 +S'John Vanderlyn' +p327859 +sa(dp327860 +g291130 +S'oil on wove paper' +p327861 +sg291132 +S'1948' +p327862 +sg291134 +S'Untitled' +p327863 +sg291136 +g27 +sg291137 +S'Harold Shapinsky' +p327864 +sa(dp327865 +g291130 +S'color screenprint on J. Green paper' +p327866 +sg291132 +S'1973' +p327867 +sg291134 +S'A Miro' +p327868 +sg291136 +g27 +sg291137 +S'Adja Yunkers' +p327869 +sa(dp327870 +g291134 +S'Apollo Standing in a River Landscape' +p327871 +sg291137 +S'Donato Creti' +p327872 +sg291130 +S'pen and brown and black ink on laid paper; laid down' +p327873 +sg291132 +S'1720/1730' +p327874 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a000242d.jpg' +p327875 +sg291136 +g27 +sa(dp327876 +g291134 +S'The Centaur Family' +p327877 +sg291137 +S'Albrecht D\xc3\xbcrer' +p327878 +sg291130 +S'pen and brown ink on laid paper' +p327879 +sg291132 +S'1505' +p327880 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a0002449.jpg' +p327881 +sg291136 +g27 +sa(dp327882 +g291134 +S'A Sacrifice to Pan' +p327883 +sg291137 +S'Andrea Sacchi' +p327884 +sg291130 +S'pen and brown ink and wash over red chalk on laid paper; laid down' +p327885 +sg291132 +S'early 1630s' +p327886 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00027/a00027a4.jpg' +p327887 +sg291136 +g27 +sa(dp327888 +g291134 +S'Studies for Judith and Holofernes, David and Goliath, and Other Compositions [recto]' +p327889 +sg291137 +S'Veronese' +p327890 +sg291130 +S'pen and brown ink with brown wash on laid paper' +p327891 +sg291132 +S'c. 1582' +p327892 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00029/a0002952.jpg' +p327893 +sg291136 +g27 +sa(dp327894 +g291134 +S'Studies for the Raising of Lazarus and Other Compositions [verso]' +p327895 +sg291137 +S'Veronese' +p327896 +sg291130 +S'pen and brown ink and wash on laid paper' +p327897 +sg291132 +S'c. 1582' +p327898 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a00028df.jpg' +p327899 +sg291136 +g27 +sa(dp327900 +g291134 +S'Amazon Preparing for Battle (Queen Antiope or Hippolyta?), or Armed Venus' +p327901 +sg291137 +S'Pierre-Eug\xc3\xa8ne-Emile H\xc3\xa9bert' +p327902 +sg291130 +S'bronze' +p327903 +sg291132 +S'model c. 1860/1872, cast by 1882' +p327904 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00039/a00039a7.jpg' +p327905 +sg291136 +g27 +sa(dp327906 +g291134 +S'Kupfer-Bibel, volume I' +p327907 +sg291137 +S'Artist Information (' +p327908 +sg291130 +S'(artist after)' +p327909 +sg291132 +S'\n' +p327910 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c93.jpg' +p327911 +sg291136 +g27 +sa(dp327912 +g291130 +S'(artist after)' +p327913 +sg291132 +S'\n' +p327914 +sg291134 +S'Kupfer-Bibel, volume II' +p327915 +sg291136 +g27 +sg291137 +S'Artist Information (' +p327916 +sa(dp327917 +g291130 +S'(artist after)' +p327918 +sg291132 +S'\n' +p327919 +sg291134 +S'Kupfer-Bibel, volume III' +p327920 +sg291136 +g27 +sg291137 +S'Artist Information (' +p327921 +sa(dp327922 +g291130 +S'(artist after)' +p327923 +sg291132 +S'\n' +p327924 +sg291134 +S'Kupfer-Bibel, volume IV' +p327925 +sg291136 +g27 +sg291137 +S'Artist Information (' +p327926 +sa(dp327927 +g291134 +S'Village along a River Estuary in Devon' +p327928 +sg291137 +S'Thomas Girtin' +p327929 +sg291130 +S'watercolor over graphite on oatmeal paper' +p327930 +sg291132 +S'1797/1798' +p327931 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a0002544.jpg' +p327932 +sg291136 +g27 +sa(dp327933 +g291130 +S'etching, engraving, and drypoint on three attached sheets of heavy laid paper' +p327934 +sg291132 +S'unknown date\n' +p327935 +sg291134 +S'Pianta di Roma e del Campo Marzo' +p327936 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p327937 +sa(dp327938 +g291130 +S'etching, engraving, and drypoint on heavy laid paper [incorrect orientation of subject and caption plates]' +p327939 +sg291132 +S'1751/1753' +p327940 +sg291134 +S'Veduta della Dogana di Terra' +p327941 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p327942 +sa(dp327943 +g291134 +S'Architectural Fantasy with a Triumphal Bridge' +p327944 +sg291137 +S'Hubert Robert' +p327945 +sg291130 +S'red chalk on laid paper' +p327946 +sg291132 +S'c. 1760' +p327947 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026f2.jpg' +p327948 +sg291136 +g27 +sa(dp327949 +g291134 +S'Gaiety and Grief' +p327950 +sg291137 +S'Charles-Nicolas Cochin II' +p327951 +sg291130 +S'red chalk with touches of black chalk on laid paper, laid down, with border lines drawn by the artist' +p327952 +sg291132 +S'1774/1775' +p327953 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022da.jpg' +p327954 +sg291136 +g27 +sa(dp327955 +g291134 +S'Friendship, Useless Friendship, and Hate' +p327956 +sg291137 +S'Charles-Nicolas Cochin II' +p327957 +sg291130 +S'red chalk with touches of black chalk on laid paper, laid down, with border lines drawn by the artist' +p327958 +sg291132 +S'1774/1775' +p327959 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022db.jpg' +p327960 +sg291136 +g27 +sa(dp327961 +g291134 +S"The Celebrated Vincent Lunardi Esq. Accompanied by Two Friends in His Third Aerial Excursion, Taken from St. George's Fields, in London" +p327962 +sg291137 +S'Artist Information (' +p327963 +sg291130 +S'(artist after)' +p327964 +sg291132 +S'\n' +p327965 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ef5.jpg' +p327966 +sg291136 +g27 +sa(dp327967 +g291134 +S'Judith and Holofernes' +p327968 +sg291137 +S'Hans von Aachen' +p327969 +sg291130 +S'pen and brown ink with brown and gray wash on laid paper; laid down' +p327970 +sg291132 +S'unknown date\n' +p327971 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000bb/a000bb2d.jpg' +p327972 +sg291136 +g27 +sa(dp327973 +g291134 +S'In the Hague Woods' +p327974 +sg291137 +S'Simon de Vlieger' +p327975 +sg291130 +S'black chalk with gray wash heightened with white on blue laid paper' +p327976 +sg291132 +S'unknown date\n' +p327977 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a00028e1.jpg' +p327978 +sg291136 +g27 +sa(dp327979 +g291134 +S'Salome' +p327980 +sg291137 +S'Hans Baldung Grien' +p327981 +sg291130 +S'woodcut on laid paper' +p327982 +sg291132 +S'c. 1511/1512' +p327983 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000a7/a000a7ee.jpg' +p327984 +sg291136 +g27 +sa(dp327985 +g291130 +S'bronze' +p327986 +sg291132 +S'1551' +p327987 +sg291134 +S'Ippolita Gonzaga, 1535-1563, daughter of Ferrante Gonzaga [obverse]' +p327988 +sg291136 +g27 +sg291137 +S'Leone Leoni' +p327989 +sa(dp327990 +g291130 +S'bronze' +p327991 +sg291132 +S'1551' +p327992 +sg291134 +S'Ippolita as Diana with Hunting Dogs in a Landscape; behind her Pluto and Cerberus [reverse]' +p327993 +sg291136 +g27 +sg291137 +S'Leone Leoni' +p327994 +sa(dp327995 +g291134 +S"Lorenzo de' Medici, il Magnifico, 1449-1492 [obverse]" +p327996 +sg291137 +S'Niccol\xc3\xb2 Fiorentino' +p327997 +sg291130 +S'bronze' +p327998 +sg291132 +S'c. 1490' +p327999 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dd7.jpg' +p328000 +sg291136 +g27 +sa(dp328001 +g291134 +S'Florence under a Laurel(?) Tree, Holding Three Lilies [reverse]' +p328002 +sg291137 +S'Niccol\xc3\xb2 Fiorentino' +p328003 +sg291130 +S'bronze' +p328004 +sg291132 +S'c. 1490' +p328005 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dd8.jpg' +p328006 +sg291136 +g27 +sa(dp328007 +g291130 +S'nickel silver on Monel' +p328008 +sg291132 +S'1960' +p328009 +sg291134 +S'Sower' +p328010 +sg291136 +g27 +sg291137 +S'Seymour Lipton' +p328011 +sa(dp328012 +g291134 +S'A Young Man Warming Himself at a Brazier' +p328013 +sg291137 +S'Gaetano Gandolfi' +p328014 +sg291130 +S'red chalk heightened with white on laid paper' +p328015 +sg291132 +S'unknown date\n' +p328016 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006da7.jpg' +p328017 +sg291136 +g27 +sa(dp328018 +g291134 +S'Head of a Boy' +p328019 +sg291137 +S'Edme Bouchardon' +p328020 +sg291130 +S'red chalk on laid paper' +p328021 +sg291132 +S'c. 1740' +p328022 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00031/a0003196.jpg' +p328023 +sg291136 +g27 +sa(dp328024 +g291134 +S'A View of Dovedale' +p328025 +sg291137 +S'John Glover' +p328026 +sg291130 +S'watercolor over graphite on wove paper' +p328027 +sg291132 +S'c. 1825' +p328028 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c9b.jpg' +p328029 +sg291136 +g27 +sa(dp328030 +g291134 +S'The Rest on the Flight into Egypt' +p328031 +sg291137 +S'Camillo Procaccini' +p328032 +sg291130 +S'etching on laid paper' +p328033 +sg291132 +S'1587/1590' +p328034 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c85c.jpg' +p328035 +sg291136 +g27 +sa(dp328036 +g291134 +S'The Madonna on the Crescent' +p328037 +sg291137 +S'Albrecht D\xc3\xbcrer' +p328038 +sg291130 +S'woodcut on laid paper' +p328039 +sg291132 +S'1510/1511' +p328040 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b12a.jpg' +p328041 +sg291136 +g27 +sa(dp328042 +g291134 +S'Studies for an Annunciation [recto]' +p328043 +sg291137 +S'Jacopo Palma il Giovane' +p328044 +sg291130 +S'pen and brown ink on laid paper' +p328045 +sg291132 +S'unknown date\n' +p328046 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a0007574.jpg' +p328047 +sg291136 +g27 +sa(dp328048 +g291134 +S'Nude Man Seen from Behind [verso]' +p328049 +sg291137 +S'Jacopo Palma il Giovane' +p328050 +sg291130 +S'pen and brown ink on laid paper' +p328051 +sg291132 +S'unknown date\n' +p328052 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a0007575.jpg' +p328053 +sg291136 +g27 +sa(dp328054 +g291130 +S'(author)' +p328055 +sg291132 +S'\n' +p328056 +sg291134 +S'Daphnis and Chlo\xc3\xa9' +p328057 +sg291136 +g27 +sg291137 +S'Artist Information (' +p328058 +sa(dp328059 +g291130 +S'woodcut on handmade paper' +p328060 +sg291132 +S'published 1937' +p328061 +sg291134 +S'Title Page: Daphnis Bathing' +p328062 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328063 +sa(dp328064 +g291130 +S'woodcut on handmade paper' +p328065 +sg291132 +S'published 1937' +p328066 +sg291134 +S'Frontispiece: Daphnis and Chloe (Daphnis et Chloe enlaces)' +p328067 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328068 +sa(dp328069 +g291130 +S'woodcut on handmade paper' +p328070 +sg291132 +S'published 1937' +p328071 +sg291134 +S'First Book: Three Goats, First Plate (Chevreaux, premiere planche)' +p328072 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328073 +sa(dp328074 +g291130 +S'woodcut on handmade paper' +p328075 +sg291132 +S'published 1937' +p328076 +sg291134 +S'First Book: Three Goats, First Plate (Chevreaux, premiere planche)' +p328077 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328078 +sa(dp328079 +g291130 +S'woodcut on handmade paper' +p328080 +sg291132 +S'published 1937' +p328081 +sg291134 +S'First Book: Two Nymphs Dancing (Les nymphs de la grotte)' +p328082 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328083 +sa(dp328084 +g291130 +S'woodcut on handmade paper' +p328085 +sg291132 +S'published 1937' +p328086 +sg291134 +S'First Book: Two Nymphs Dancing (Les nymphs de la grotte)' +p328087 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328088 +sa(dp328089 +g291130 +S'woodcut on handmade paper' +p328090 +sg291132 +S'published 1937' +p328091 +sg291134 +S'First Book: Daphnis and Chloe Picking Flowers(Daphnis et Chloe rammassant des fleurs)' +p328092 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328093 +sa(dp328094 +g291130 +S'woodcut on handmade paper' +p328095 +sg291132 +S'published 1937' +p328096 +sg291134 +S"First Book: Daphnis Playing His Pipe for Chloe (Daphnis jouant de l'harmonica pour Chloe)" +p328097 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328098 +sa(dp328099 +g291130 +S'woodcut on handmade paper' +p328100 +sg291132 +S'published 1937' +p328101 +sg291134 +S"First Book: Daphnis Playing His Pipe for Chloe (Daphnis jouant de l'harmonica pour Chloe)" +p328102 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328103 +sa(dp328104 +g291130 +S'woodcut on handmade paper' +p328105 +sg291132 +S'published 1937' +p328106 +sg291134 +S'First Book: Chloe Washing Daphnis in the Cave of the Nymphs (Chloe lave Daphnis dansla caverne des nymphes)' +p328107 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328108 +sa(dp328109 +g291130 +S'woodcut on handmade paper' +p328110 +sg291132 +S'published 1937' +p328111 +sg291134 +S'First Book: Chloe Kisses Daphnis (Chloe donne un baiser a Daphnis de preference a dorcon)' +p328112 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328113 +sa(dp328114 +g291130 +S'woodcut on handmade paper' +p328115 +sg291132 +S'published 1937' +p328116 +sg291134 +S'First Book: Chloe Washing Her Naked Limbs (Chloe se baignant dans une fontaine)' +p328117 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328118 +sa(dp328119 +g291130 +S'woodcut on handmade paper' +p328120 +sg291132 +S'published 1937' +p328121 +sg291134 +S"First Book: Chloe Puts a Chaplet Upon Daphnis' Head (Chloe met une couronne sur le tete de Daphnis)" +p328122 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328123 +sa(dp328124 +g291130 +S'woodcut on handmade paper' +p328125 +sg291132 +S'published 1937' +p328126 +sg291134 +S'First Book: Daphnis Teaches Chloe to Play on the Pipe (Daphnis apprend a Chloe a jouer de la flute)' +p328127 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328128 +sa(dp328129 +g291130 +S'woodcut on handmade paper' +p328130 +sg291132 +S'published 1937' +p328131 +sg291134 +S'First Book: Daphnis Observes the Sleeping Chloe (Daphnis regarde Chloe dormir)' +p328132 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328133 +sa(dp328134 +g291130 +S'woodcut on handmade paper' +p328135 +sg291132 +S'published 1937' +p328136 +sg291134 +S"First Book: Daphnis Draws the Grasshopper from Chloe's Bosom (Daphnis met la main dans le sein de Chloe pour en retirer une cigale)" +p328137 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328138 +sa(dp328139 +g291130 +S'woodcut on handmade paper' +p328140 +sg291132 +S'published 1937' +p328141 +sg291134 +S'First Book: Chloe Casting Daphnis into Her Arms (Daphnis et Chloe se lavent ensemble dans la caverne des nymphes)' +p328142 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328143 +sa(dp328144 +g291130 +S'woodcut on handmade paper' +p328145 +sg291132 +S'published 1937' +p328146 +sg291134 +S'First Book: Chloe Bathing (Chloe au milieu des roseaux)' +p328147 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328148 +sa(dp328149 +g291130 +S'woodcut on handmade paper' +p328150 +sg291132 +S'published 1937' +p328151 +sg291134 +S'Second Book: The Vintage (Pendant les vendanges)' +p328152 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328153 +sa(dp328154 +g291130 +S'woodcut on handmade paper' +p328155 +sg291132 +S'published 1937' +p328156 +sg291134 +S'Second Book: Philetas Speaking to Daphnis and Chloe (Le discours de Philetas a Daphnis et Chloe)' +p328157 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328158 +sa(dp328159 +g291130 +S'woodcut on handmade paper' +p328160 +sg291132 +S'published 1937' +p328161 +sg291134 +S'Second Book: Goats, Second Plate (Chevreaux, deuxieme planche)' +p328162 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328163 +sa(dp328164 +g291130 +S'woodcut on handmade paper' +p328165 +sg291132 +S'published 1937' +p328166 +sg291134 +S"Second Book: Daphnis and Chloe Run Smiling Together (Daphnis et Chloe courent l'un vers l'autre)" +p328167 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328168 +sa(dp328169 +g291130 +S'woodcut on handmade paper' +p328170 +sg291132 +S'published 1937' +p328171 +sg291134 +S"Second Book: Daphnis and Chloe Run Smiling Together (Daphnis et Chloe courent l'un vers l'autre)" +p328172 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328173 +sa(dp328174 +g291130 +S'woodcut on handmade paper' +p328175 +sg291132 +S'published 1937' +p328176 +sg291134 +S'Second Book: Three Goats, Third Plate (Chevreaux, troisieme planche)' +p328177 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328178 +sa(dp328179 +g291130 +S'woodcut on handmade paper' +p328180 +sg291132 +S'published 1937' +p328181 +sg291134 +S'Second Book: Daphnis and Chloe Embrace One Another (Daphnis et Chloe apres le depart des Methymniens)' +p328182 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328183 +sa(dp328184 +g291130 +S'woodcut on handmade paper' +p328185 +sg291132 +S'published 1937' +p328186 +sg291134 +S'Second Book: Daphnis and Chloe Playing (Daphnis poursuivant Chloe)' +p328187 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328188 +sa(dp328189 +g291130 +S'woodcut on handmade paper' +p328190 +sg291132 +S'published 1937' +p328191 +sg291134 +S'Second Book: Daphnis and Chloe Playing (Daphnis poursuivant Chloe)' +p328192 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328193 +sa(dp328194 +g291130 +S'woodcut on handmade paper' +p328195 +sg291132 +S'published 1937' +p328196 +sg291134 +S'Second Book: Methymnaean Carrying Chloe Away (Chloe enlevee par le Methymnien)' +p328197 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328198 +sa(dp328199 +g291130 +S'woodcut on handmade paper' +p328200 +sg291132 +S'published 1937' +p328201 +sg291134 +S'Second Book: Daphnis Rushing into the Embraces of Chloe (Daphnis et Chloe se retrouvent apres la captivite de Chloe)' +p328202 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328203 +sa(dp328204 +g291130 +S'woodcut on handmade paper' +p328205 +sg291132 +S'published 1937' +p328206 +sg291134 +S'Second Book: Daphnis and Chloe Sacrificing a Crowned Goat (Daphnis et Chloe emmenant le bouc, chef du troupeau, pour le sacrificier a Pan)' +p328207 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328208 +sa(dp328209 +g291130 +S'woodcut on handmade paper' +p328210 +sg291132 +S'published 1937' +p328211 +sg291134 +S'Second Book: Syrinx Disappears in a Grove of Reeds (Syringe, poursuivie par Pan, se jette dans un marais et des parait dans les roseaux)' +p328212 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328213 +sa(dp328214 +g291130 +S'woodcut on handmade paper' +p328215 +sg291132 +S'published 1937' +p328216 +sg291134 +S"Second Book: Daphnis Driving Home His Flock (Daphnis ramene ses betes a l'etable)" +p328217 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328218 +sa(dp328219 +g291130 +S'woodcut on handmade paper' +p328220 +sg291132 +S'published 1937' +p328221 +sg291134 +S'Second Book: Three Goats Resting, Fourth Plate (Trois chevreaux couches, quatrieme planche)' +p328222 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328223 +sa(dp328224 +g291130 +S'woodcut on handmade paper' +p328225 +sg291132 +S'published 1937' +p328226 +sg291134 +S"Second Book: Daphnis and Chloe Remember Their Sweet Conversation (L'hiver, Daphnis et Chloe s'entrelacent et s'embrassent)" +p328227 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328228 +sa(dp328229 +g291130 +S'woodcut on handmade paper' +p328230 +sg291132 +S'published 1937' +p328231 +sg291134 +S"Third Book: Daphnis and Chloe in Dryas' House (Daphnis et Chloe dans la maison de Dryas)" +p328232 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328233 +sa(dp328234 +g291130 +S'woodcut on handmade paper' +p328235 +sg291132 +S'published 1937' +p328236 +sg291134 +S'Third Book: Daphnis Lifts Chloe Up (Daphnis soulevant Chloe)' +p328237 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328238 +sa(dp328239 +g291130 +S'woodcut on handmade paper' +p328240 +sg291132 +S'published 1937' +p328241 +sg291134 +S"Third Book: Lycaenium Teaches Daphnis the Secret of Love (Lycenion donne une lecon d'amour a Daphnis)" +p328242 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328243 +sa(dp328244 +g291130 +S'woodcut on handmade paper' +p328245 +sg291132 +S'published 1937' +p328246 +sg291134 +S'Third Book: The Echo, Daughter of a Nymph (La nymphe Echo)' +p328247 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328248 +sa(dp328249 +g291130 +S'woodcut on handmade paper' +p328250 +sg291132 +S'published 1937' +p328251 +sg291134 +S'Third Book: Chloe Embraces Daphnis (Chloe embrasse Daphnis)' +p328252 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328253 +sa(dp328254 +g291130 +S'woodcut on handmade paper' +p328255 +sg291132 +S'published 1937' +p328256 +sg291134 +S'Third Book: Three Goats, Fifth Plate (Chevreaux, cinquieme planche)' +p328257 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328258 +sa(dp328259 +g291130 +S'woodcut on handmade paper' +p328260 +sg291132 +S'published 1937' +p328261 +sg291134 +S'Third Book: Daphnis Pulls an Apple for Chloe (Daphnis donne la pomme a Chloe)' +p328262 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328263 +sa(dp328264 +g291130 +S'woodcut on handmade paper' +p328265 +sg291132 +S'published 1937' +p328266 +sg291134 +S"Third Book: Daphnis Puts the Apple into Chloe's Bosom (Daphnis met la pomme entre lesseins de Chloe)" +p328267 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328268 +sa(dp328269 +g291130 +S'woodcut on handmade paper' +p328270 +sg291132 +S'published 1937' +p328271 +sg291134 +S"Third Book: Daphnis Puts the Apple into Chloe's Bosom, First Conception (Daphnis met la pomme entre les seins de Chloe, variante)" +p328272 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328273 +sa(dp328274 +g291130 +S'woodcut on handmade paper' +p328275 +sg291132 +S'published 1937' +p328276 +sg291134 +S'Fourth Book: Daphnis and Chloe at Play (Daphnis mente sur le dos de Chloe)' +p328277 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328278 +sa(dp328279 +g291130 +S'woodcut on handmade paper' +p328280 +sg291132 +S'published 1937' +p328281 +sg291134 +S'Fourth Book: Chloe Helps Daphnis with His Goats (Chloe trait une chevre de Daphnis)' +p328282 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328283 +sa(dp328284 +g291130 +S'woodcut on handmade paper' +p328285 +sg291132 +S'published 1937' +p328286 +sg291134 +S'Fourth Book: Daphnis Plays to His Goats (Daphnis joue de la flute au milieu de ses chevres)' +p328287 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328288 +sa(dp328289 +g291130 +S'woodcut on handmade paper' +p328290 +sg291132 +S'published 1937' +p328291 +sg291134 +S'Fourth Book: Daphnis and Chloe (Groupe de Daphnis et Chloe)' +p328292 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328293 +sa(dp328294 +g291130 +S'woodcut on handmade paper' +p328295 +sg291132 +S'published 1937' +p328296 +sg291134 +S'Fourth Book: Daphnis and Chloe (Groupe de Daphne et Chloe)' +p328297 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328298 +sa(dp328299 +g291130 +S'woodcut on handmade paper' +p328300 +sg291132 +S'published 1937' +p328301 +sg291134 +S'Fourth Book: Lampis Ravishing Chloe Away (Le bouvier Lampis enleve Chloe)' +p328302 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328303 +sa(dp328304 +g291130 +S'woodcut on handmade paper' +p328305 +sg291132 +S'published 1937' +p328306 +sg291134 +S'Fourth Book: Chloe is Given to Daphnis (Chloe unie a Daphnis)' +p328307 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328308 +sa(dp328309 +g291130 +S'woodcut on handmade paper' +p328310 +sg291132 +S'published 1937' +p328311 +sg291134 +S'Fourth Book: Daphnis and Chloe Lying Together, First Variant (Daphnis et Chloe couches ensemble, premier variante)' +p328312 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328313 +sa(dp328314 +g291130 +S'woodcut on handmade paper' +p328315 +sg291132 +S'published 1937' +p328316 +sg291134 +S'Fourth Book: Daphnis and Chloe Lying Together, Second Variant (Daphnis et Chloe couches ensemble, deuxieme variante)' +p328317 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328318 +sa(dp328319 +g291130 +S'woodcut on handmade paper' +p328320 +sg291132 +S'published 1937' +p328321 +sg291134 +S'Fourth Book: Daphnis and Chloe Lying Together, Second Variant (Daphnis et Chloe couches ensemble, deuxieme variante)' +p328322 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328323 +sa(dp328324 +g291130 +S'woodcut on handmade paper' +p328325 +sg291132 +S'published 1937' +p328326 +sg291134 +S'Fourth Book: Chloe Bathing in the Cave of the Nymphs (Chloe se baignant dans la grottte des nymphes)' +p328327 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p328328 +sa(dp328329 +g291130 +S'(author)' +p328330 +sg291132 +S'\n' +p328331 +sg291134 +S'Les Georgiques (volume I)' +p328332 +sg291136 +g27 +sg291137 +S'Artist Information (' +p328333 +sa(dp328334 +g291130 +S'(author)' +p328335 +sg291132 +S'\n' +p328336 +sg291134 +S'Les Georgiques (volume II)' +p328337 +sg291136 +g27 +sg291137 +S'Artist Information (' +p328338 +sa(dp328339 +g291130 +S'bound MS with 32 p. of calligraphy examples and related drwgs. in pen and brown ink, some with gold ink, and many w/ initial, head-, and tail-piece illustrations' +p328340 +sg291132 +S'1653' +p328341 +sg291134 +S'Regolo (dello scrivere)' +p328342 +sg291136 +g27 +sg291137 +S'Valerio Spada' +p328343 +sa(dp328344 +g291134 +S'Self-Portrait - 55 Division Street' +p328345 +sg291137 +S'Ivan Le Lorraine Albright' +p328346 +sg291130 +S'lithograph on wove paper' +p328347 +sg291132 +S'1948' +p328348 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000927.jpg' +p328349 +sg291136 +g27 +sa(dp328350 +g291130 +S'aquatint with burnishing and etching on Rives paper' +p328351 +sg291132 +S'1940' +p328352 +sg291134 +S'August' +p328353 +sg291136 +g27 +sg291137 +S'Will Barnet' +p328354 +sa(dp328355 +g291130 +S'lithograph on wove paper' +p328356 +sg291132 +S'unknown date\n' +p328357 +sg291134 +S'The Sight of the Town' +p328358 +sg291136 +g27 +sg291137 +S'Peggy Bacon' +p328359 +sa(dp328360 +g291130 +S'lithograph on wove paper' +p328361 +sg291132 +S'1945' +p328362 +sg291134 +S'Loading Corn' +p328363 +sg291136 +g27 +sg291137 +S'Thomas Hart Benton' +p328364 +sa(dp328365 +g291134 +S'Island Hay' +p328366 +sg291137 +S'Thomas Hart Benton' +p328367 +sg291130 +S'lithograph on wove paper' +p328368 +sg291132 +S'1945' +p328369 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a2f.jpg' +p328370 +sg291136 +g27 +sa(dp328371 +g291130 +S'lithograph on wove paper' +p328372 +sg291132 +S'1946' +p328373 +sg291134 +S'After the Blow' +p328374 +sg291136 +g27 +sg291137 +S'Thomas Hart Benton' +p328375 +sa(dp328376 +g291130 +S'lithograph on wove paper' +p328377 +sg291132 +S'1944' +p328378 +sg291134 +S'Fire in the Barn Yard' +p328379 +sg291136 +g27 +sg291137 +S'Thomas Hart Benton' +p328380 +sa(dp328381 +g291134 +S'Letter from Overseas' +p328382 +sg291137 +S'Thomas Hart Benton' +p328383 +sg291130 +S'lithograph on wove paper' +p328384 +sg291132 +S'1943' +p328385 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a30.jpg' +p328386 +sg291136 +g27 +sa(dp328387 +g291130 +S'lithograph on wove paper' +p328388 +sg291132 +S'1943' +p328389 +sg291134 +S'Night Firing' +p328390 +sg291136 +g27 +sg291137 +S'Thomas Hart Benton' +p328391 +sa(dp328392 +g291130 +S'lithograph on wove paper' +p328393 +sg291132 +S'1945' +p328394 +sg291134 +S'White Calf' +p328395 +sg291136 +g27 +sg291137 +S'Thomas Hart Benton' +p328396 +sa(dp328397 +g291130 +S'lithograph on wove paper' +p328398 +sg291132 +S'1939' +p328399 +sg291134 +S'The Wood Pile' +p328400 +sg291136 +g27 +sg291137 +S'Thomas Hart Benton' +p328401 +sa(dp328402 +g291130 +S'lithograph in red-brown on laid paper' +p328403 +sg291132 +S'1917' +p328404 +sg291134 +S'Ellen Mary Cassatt' +p328405 +sg291136 +g27 +sg291137 +S'George Biddle' +p328406 +sa(dp328407 +g291130 +S'lithograph on wove paper' +p328408 +sg291132 +S'1932' +p328409 +sg291134 +S'Profile of a Young Man' +p328410 +sg291136 +g27 +sg291137 +S'George Biddle' +p328411 +sa(dp328412 +g291130 +S'lithograph on wove paper' +p328413 +sg291132 +S'1945' +p328414 +sg291134 +S'Summertime' +p328415 +sg291136 +g27 +sg291137 +S'Aaron Bohrod' +p328416 +sa(dp328417 +g291130 +S'lithograph on wove paper' +p328418 +sg291132 +S'unknown date\n' +p328419 +sg291134 +S'Pennsylvania Highway' +p328420 +sg291136 +g27 +sg291137 +S'Aaron Bohrod' +p328421 +sa(dp328422 +g291130 +S'lithograph on wove paper' +p328423 +sg291132 +S'c. 1946' +p328424 +sg291134 +S'Church in Luxembourg' +p328425 +sg291136 +g27 +sg291137 +S'Aaron Bohrod' +p328426 +sa(dp328427 +g291130 +S'lithograph on heavy wove paper' +p328428 +sg291132 +S'c. 1940' +p328429 +sg291134 +S'The Bride' +p328430 +sg291136 +g27 +sg291137 +S'Federico Castell\xc3\xb3n' +p328431 +sa(dp328432 +g291130 +S'etching in brown on wove paper' +p328433 +sg291132 +S'unknown date\n' +p328434 +sg291134 +S'Couple and Son' +p328435 +sg291136 +g27 +sg291137 +S'Federico Castell\xc3\xb3n' +p328436 +sa(dp328437 +g291130 +S'wood engraving on wove paper' +p328438 +sg291132 +S'c. 1947' +p328439 +sg291134 +S'Late Afternoon, Vermont' +p328440 +sg291136 +g27 +sg291137 +S'Asa Cheffetz' +p328441 +sa(dp328442 +g291134 +S'Winter Weather' +p328443 +sg291137 +S'Asa Cheffetz' +p328444 +sg291130 +S'wood engraving on heavy wove paper' +p328445 +sg291132 +S'c. 1951' +p328446 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a61.jpg' +p328447 +sg291136 +g27 +sa(dp328448 +g291130 +S'lithograph on Rives BFK paper' +p328449 +sg291132 +S'1943' +p328450 +sg291134 +S'Stallion and Jack Fighting' +p328451 +sg291136 +g27 +sg291137 +S'John Steuart Curry' +p328452 +sa(dp328453 +g291130 +S'lithograph on Rives BFK paper' +p328454 +sg291132 +S'1945' +p328455 +sg291134 +S'Valley of the Wisconsin' +p328456 +sg291136 +g27 +sg291137 +S'John Steuart Curry' +p328457 +sa(dp328458 +g291130 +S'lithograph on Rives BFK paper' +p328459 +sg291132 +S'1944' +p328460 +sg291134 +S'Sanctuary' +p328461 +sg291136 +g27 +sg291137 +S'John Steuart Curry' +p328462 +sa(dp328463 +g291130 +S'lithograph on wove paper' +p328464 +sg291132 +S'1955' +p328465 +sg291134 +S'Central Park' +p328466 +sg291136 +g27 +sg291137 +S'Adolf Arthur Dehn' +p328467 +sa(dp328468 +g291130 +S'lithograph on wove paper' +p328469 +sg291132 +S'unknown date\n' +p328470 +sg291134 +S'For the Love of Barbara Allen' +p328471 +sg291136 +g27 +sg291137 +S'John Stockton De Martelly' +p328472 +sa(dp328473 +g291130 +S'lithograph on wove paper' +p328474 +sg291132 +S'unknown date\n' +p328475 +sg291134 +S'White Pastures' +p328476 +sg291136 +g27 +sg291137 +S'John Stockton De Martelly' +p328477 +sa(dp328478 +g291134 +S'Farm Yard' +p328479 +sg291137 +S'Artist Information (' +p328480 +sg291130 +S'American' +p328481 +sg291132 +S'(printer)' +p328482 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a8f.jpg' +p328483 +sg291136 +g27 +sa(dp328484 +g291130 +S'lithograph on wove paper' +p328485 +sg291132 +S'unknown date\n' +p328486 +sg291134 +S'Rush Hour' +p328487 +sg291136 +g27 +sg291137 +S'Richard A. Florsheim' +p328488 +sa(dp328489 +g291130 +S'lithograph on wove paper' +p328490 +sg291132 +S'unknown date\n' +p328491 +sg291134 +S'Joshua Fought the Battle of Jericho' +p328492 +sg291136 +g27 +sg291137 +S'William Gropper' +p328493 +sa(dp328494 +g291130 +S'lithograph on heavy wove paper' +p328495 +sg291132 +S'1941' +p328496 +sg291134 +S'Johnny Appleseed' +p328497 +sg291136 +g27 +sg291137 +S'William Gropper' +p328498 +sa(dp328499 +g291130 +S'etching and drypoint on wove paper' +p328500 +sg291132 +S'm949' +p328501 +sg291134 +S'Dunes and Grass (Dunen und Strandgraser)' +p328502 +sg291136 +g27 +sg291137 +S'George Grosz' +p328503 +sa(dp328504 +g291134 +S"The Lovers' Walk, No.2" +p328505 +sg291137 +S'Francis Seymour Haden' +p328506 +sg291130 +S'etching and drypoint on laid paper' +p328507 +sg291132 +S'1864' +p328508 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cab.jpg' +p328509 +sg291136 +g27 +sa(dp328510 +g291130 +S'etching and aquatint on heavy wove paper' +p328511 +sg291132 +S'unknown date\n' +p328512 +sg291134 +S'Place Setting' +p328513 +sg291136 +g27 +sg291137 +S'Nona Hershey' +p328514 +sa(dp328515 +g291130 +S'lithograph on wove paper' +p328516 +sg291132 +S'1946' +p328517 +sg291134 +S'Farm at Sunset' +p328518 +sg291136 +g27 +sg291137 +S'Victoria Hutson Huntley' +p328519 +sa(dp328520 +g291130 +S'lithograph on wove paper' +p328521 +sg291132 +S'1942' +p328522 +sg291134 +S'Do\xc3\xb1a Nestorita' +p328523 +sg291136 +g27 +sg291137 +S'Peter Hurd' +p328524 +sa(dp328525 +g291130 +S'etching on heavy wove paper' +p328526 +sg291132 +S'unknown date\n' +p328527 +sg291134 +S'Mont St. Michel' +p328528 +sg291136 +g27 +sg291137 +S'Andrew B. Karoly' +p328529 +sa(dp328530 +g291130 +S'lithograph on wove paper' +p328531 +sg291132 +S'unknown date\n' +p328532 +sg291134 +S'The Plaza' +p328533 +sg291136 +g27 +sg291137 +S'Ezra Jack Keats' +p328534 +sa(dp328535 +g291134 +S'Along the Waterway' +p328536 +sg291137 +S'Doris Lee' +p328537 +sg291130 +S'lithograph on wove paper' +p328538 +sg291132 +S'unknown date\n' +p328539 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b00.jpg' +p328540 +sg291136 +g27 +sa(dp328541 +g291130 +S'lithograph on wove paper' +p328542 +sg291132 +S'unknown date\n' +p328543 +sg291134 +S'Afternoon Tea' +p328544 +sg291136 +g27 +sg291137 +S'Doris Lee' +p328545 +sa(dp328546 +g291130 +S'etching in brown on wove paper' +p328547 +sg291132 +S'1958' +p328548 +sg291134 +S'Pine in the Birches' +p328549 +sg291136 +g27 +sg291137 +S'Luigi Lucioni' +p328550 +sa(dp328551 +g291130 +S'etching in brown on wove paper' +p328552 +sg291132 +S'1946' +p328553 +sg291134 +S'Route 7' +p328554 +sg291136 +g27 +sg291137 +S'Luigi Lucioni' +p328555 +sa(dp328556 +g291130 +S'etching on wove paper' +p328557 +sg291132 +S'1940' +p328558 +sg291134 +S'Leaning Silo' +p328559 +sg291136 +g27 +sg291137 +S'Luigi Lucioni' +p328560 +sa(dp328561 +g291130 +S'etching on wove paper' +p328562 +sg291132 +S'1942' +p328563 +sg291134 +S'Two Silos' +p328564 +sg291136 +g27 +sg291137 +S'Luigi Lucioni' +p328565 +sa(dp328566 +g291130 +S'etching on wove paper' +p328567 +sg291132 +S'1934' +p328568 +sg291134 +S'Lake Pastures' +p328569 +sg291136 +g27 +sg291137 +S'Luigi Lucioni' +p328570 +sa(dp328571 +g291130 +S'etching on wove paper' +p328572 +sg291132 +S'1939' +p328573 +sg291134 +S'My Birthplace' +p328574 +sg291136 +g27 +sg291137 +S'Luigi Lucioni' +p328575 +sa(dp328576 +g291130 +S'lithograph on wove paper' +p328577 +sg291132 +S'unknown date\n' +p328578 +sg291134 +S"Tomorrow's Bread" +p328579 +sg291136 +g27 +sg291137 +S'Peppino Mangravite' +p328580 +sa(dp328581 +g291134 +S'League Print' +p328582 +sg291137 +S'Reginald Marsh' +p328583 +sg291130 +S'engraving on wove paper' +p328584 +sg291132 +S'1949' +p328585 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b29.jpg' +p328586 +sg291136 +g27 +sa(dp328587 +g291130 +S'etching on wove paper' +p328588 +sg291132 +S'unknown date\n' +p328589 +sg291134 +S'Two Ladies in a Dress Shop' +p328590 +sg291136 +g27 +sg291137 +S'Kenneth Hayes Miller' +p328591 +sa(dp328592 +g291130 +S'etching and drypoint on wove paper' +p328593 +sg291132 +S'1954' +p328594 +sg291134 +S'Moor Lodge' +p328595 +sg291136 +g27 +sg291137 +S'Norma Gloria Morgan' +p328596 +sa(dp328597 +g291130 +S'wood engraving on wove paper' +p328598 +sg291132 +S'1951' +p328599 +sg291134 +S'A New England Stream' +p328600 +sg291136 +g27 +sg291137 +S'Thomas Willoughby Nason' +p328601 +sa(dp328602 +g291130 +S'wood engraving on wove paper' +p328603 +sg291132 +S'1955' +p328604 +sg291134 +S'Little Farm' +p328605 +sg291136 +g27 +sg291137 +S'Thomas Willoughby Nason' +p328606 +sa(dp328607 +g291130 +S'wood engraving on wove paper' +p328608 +sg291132 +S'1949' +p328609 +sg291134 +S'Haystacks' +p328610 +sg291136 +g27 +sg291137 +S'Thomas Willoughby Nason' +p328611 +sa(dp328612 +g291130 +S'drypoint in green on wove paper' +p328613 +sg291132 +S'1959' +p328614 +sg291134 +S'The Triumph of Weed' +p328615 +sg291136 +g27 +sg291137 +S'Gabor Peterdi' +p328616 +sa(dp328617 +g291130 +S'lithograph on heavy wove paper' +p328618 +sg291132 +S'unknown date\n' +p328619 +sg291134 +S'In Tennessee' +p328620 +sg291136 +g27 +sg291137 +S'Georges Schreiber' +p328621 +sa(dp328622 +g291130 +S'lithograph on wove paper' +p328623 +sg291132 +S'unknown date\n' +p328624 +sg291134 +S'Haying' +p328625 +sg291136 +g27 +sg291137 +S'Georges Schreiber' +p328626 +sa(dp328627 +g291130 +S'lithograph on heavy wove paper' +p328628 +sg291132 +S'unknown date\n' +p328629 +sg291134 +S'Loggers at Sunrise' +p328630 +sg291136 +g27 +sg291137 +S'Georges Schreiber' +p328631 +sa(dp328632 +g291130 +S'etching on wove paper' +p328633 +sg291132 +S'1949' +p328634 +sg291134 +S'Wake on the Ferry' +p328635 +sg291136 +g27 +sg291137 +S'John Sloan' +p328636 +sa(dp328637 +g291130 +S'lithograph on wove paper' +p328638 +sg291132 +S'1944' +p328639 +sg291134 +S'In the Studio' +p328640 +sg291136 +g27 +sg291137 +S'Raphael Soyer' +p328641 +sa(dp328642 +g291134 +S'Little Arthur' +p328643 +sg291137 +S'James McNeill Whistler' +p328644 +sg291130 +S'etching on wove paper' +p328645 +sg291132 +S'c. 1857/1858' +p328646 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9c5.jpg' +p328647 +sg291136 +g27 +sa(dp328648 +g291134 +S'Liverdun' +p328649 +sg291137 +S'James McNeill Whistler' +p328650 +sg291130 +S'etching' +p328651 +sg291132 +S'1858' +p328652 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aabf.jpg' +p328653 +sg291136 +g27 +sa(dp328654 +g291134 +S'La Vieille aux Loques' +p328655 +sg291137 +S'James McNeill Whistler' +p328656 +sg291130 +S'etching and drypoint on laid paper' +p328657 +sg291132 +S'1858' +p328658 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9d3.jpg' +p328659 +sg291136 +g27 +sa(dp328660 +g291134 +S"The Rag Gatherers'" +p328661 +sg291137 +S'James McNeill Whistler' +p328662 +sg291130 +S'etching in brown' +p328663 +sg291132 +S'c. 1858' +p328664 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9cf.jpg' +p328665 +sg291136 +g27 +sa(dp328666 +g291134 +S'Greenwich Pensioner' +p328667 +sg291137 +S'James McNeill Whistler' +p328668 +sg291130 +S'etching on laid paper' +p328669 +sg291132 +S'1859' +p328670 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aabd.jpg' +p328671 +sg291136 +g27 +sa(dp328672 +g291134 +S'Limehouse' +p328673 +sg291137 +S'James McNeill Whistler' +p328674 +sg291130 +S'etching' +p328675 +sg291132 +S'1859' +p328676 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a99b.jpg' +p328677 +sg291136 +g27 +sa(dp328678 +g291134 +S'The Lime-Burner' +p328679 +sg291137 +S'James McNeill Whistler' +p328680 +sg291130 +S'etching' +p328681 +sg291132 +S'1859' +p328682 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a99e.jpg' +p328683 +sg291136 +g27 +sa(dp328684 +g291134 +S'Isle de la Cite, Paris' +p328685 +sg291137 +S'James McNeill Whistler' +p328686 +sg291130 +S'etching [cancelled plate]' +p328687 +sg291132 +S'1859' +p328688 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aac7.jpg' +p328689 +sg291136 +g27 +sa(dp328690 +g291134 +S'Rotherhithe' +p328691 +sg291137 +S'James McNeill Whistler' +p328692 +sg291130 +S'etching and drypoint' +p328693 +sg291132 +S'1860' +p328694 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab60.jpg' +p328695 +sg291136 +g27 +sa(dp328696 +g291134 +S'Speke Hall, No.1' +p328697 +sg291137 +S'James McNeill Whistler' +p328698 +sg291130 +S'etching and drypoint' +p328699 +sg291132 +S'1870' +p328700 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab62.jpg' +p328701 +sg291136 +g27 +sa(dp328702 +g291134 +S'Little Smithfield' +p328703 +sg291137 +S'James McNeill Whistler' +p328704 +sg291130 +S'etching in brown' +p328705 +sg291132 +S'c. 1877' +p328706 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa1d.jpg' +p328707 +sg291136 +g27 +sa(dp328708 +g291134 +S'St. James Street' +p328709 +sg291137 +S'James McNeill Whistler' +p328710 +sg291130 +S'etching and drypoint' +p328711 +sg291132 +S'1878' +p328712 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab36.jpg' +p328713 +sg291136 +g27 +sa(dp328714 +g291134 +S'Swan and Iris' +p328715 +sg291137 +S'James McNeill Whistler' +p328716 +sg291130 +S'etching in brown on laid paper' +p328717 +sg291132 +S'published 1883' +p328718 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa3d.jpg' +p328719 +sg291136 +g27 +sa(dp328720 +g291134 +S'A Sketch on the Embankment' +p328721 +sg291137 +S'James McNeill Whistler' +p328722 +sg291130 +S'etching in brown on laid paper' +p328723 +sg291132 +S'unknown date\n' +p328724 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa08.jpg' +p328725 +sg291136 +g27 +sa(dp328726 +g291134 +S'The Fish Shop, Busy Chelsea' +p328727 +sg291137 +S'James McNeill Whistler' +p328728 +sg291130 +S'etching in brown' +p328729 +sg291132 +S'1887' +p328730 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa32.jpg' +p328731 +sg291136 +g27 +sa(dp328732 +g291134 +S'Bucking Horse' +p328733 +sg291137 +S'James McNeill Whistler' +p328734 +sg291130 +S'etching in brown on laid paper' +p328735 +sg291132 +S'unknown date\n' +p328736 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa71.jpg' +p328737 +sg291136 +g27 +sa(dp328738 +g291134 +S'Steps, Amsterdam' +p328739 +sg291137 +S'James McNeill Whistler' +p328740 +sg291130 +S'etching and drypoint in brown' +p328741 +sg291132 +S'1889' +p328742 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab8e.jpg' +p328743 +sg291136 +g27 +sa(dp328744 +g291130 +S'lithograph on wove paper' +p328745 +sg291132 +S'unknown date\n' +p328746 +sg291134 +S"Lobsterman's Wharf, Maine" +p328747 +sg291136 +g27 +sg291137 +S'Malvin Marr Albright' +p328748 +sa(dp328749 +g291130 +S'lithograph on wove paper' +p328750 +sg291132 +S'published 1947' +p328751 +sg291134 +S'Victoria' +p328752 +sg291136 +g27 +sg291137 +S'Malvin Marr Albright' +p328753 +sa(dp328754 +g291134 +S'Untitled' +p328755 +sg291137 +S'Alexander Calder' +p328756 +sg291130 +S'5-color lithograph on wove paper' +p328757 +sg291132 +S'unknown date\n' +p328758 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a38.jpg' +p328759 +sg291136 +g27 +sa(dp328760 +g291130 +S'1 vol: ill: 18 wood engravings on Mokuroku paper' +p328761 +sg291132 +S'published 1956' +p328762 +sg291134 +S'Blake and the Youthful Ancients' +p328763 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328764 +sa(dp328765 +g291130 +S'wood engraving on Mokuroku paper' +p328766 +sg291132 +S'1956' +p328767 +sg291134 +S'Blake after a Drawing by John Linnell' +p328768 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328769 +sa(dp328770 +g291130 +S'wood engraving on Mokuroku paper' +p328771 +sg291132 +S'1956' +p328772 +sg291134 +S'Blake: A Fragment' +p328773 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328774 +sa(dp328775 +g291130 +S'wood engraving on Mokuroku paper' +p328776 +sg291132 +S'1956' +p328777 +sg291134 +S'An Adamite Vision of Blake' +p328778 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328779 +sa(dp328780 +g291130 +S'wood engraving on Mokuroku paper' +p328781 +sg291132 +S'1956' +p328782 +sg291134 +S'Blake after His Visionary Self-Portrait' +p328783 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328784 +sa(dp328785 +g291130 +S'wood engraving on Mokuroku paper' +p328786 +sg291132 +S'1956' +p328787 +sg291134 +S'Blake from the Life Mask by Deville' +p328788 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328789 +sa(dp328790 +g291130 +S'wood engraving on Mokuroku paper' +p328791 +sg291132 +S'1956' +p328792 +sg291134 +S'Blake: An Imagined Death Mask' +p328793 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328794 +sa(dp328795 +g291130 +S'wood engraving on Mokuroku paper' +p328796 +sg291132 +S'1956' +p328797 +sg291134 +S'Samuel Palmer When He First Met Blake' +p328798 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328799 +sa(dp328800 +g291130 +S'wood engraving on Mokuroku paper' +p328801 +sg291132 +S'1956' +p328802 +sg291134 +S'Samuel Palmer after the Watercolor by Walter' +p328803 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328804 +sa(dp328805 +g291130 +S'wood engraving on Mokuroku paper' +p328806 +sg291132 +S'1956' +p328807 +sg291134 +S'Samuel Palmer' +p328808 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328809 +sa(dp328810 +g291130 +S'wood engraving on Mokuroku paper' +p328811 +sg291132 +S'1956' +p328812 +sg291134 +S'Samuel Palmer after a Photograph' +p328813 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328814 +sa(dp328815 +g291130 +S'wood engraving on Mokuroku paper' +p328816 +sg291132 +S'1956' +p328817 +sg291134 +S'A Visionary Portrait of Henry Walter' +p328818 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328819 +sa(dp328820 +g291130 +S'wood engraving on Mokuroku paper' +p328821 +sg291132 +S'1956' +p328822 +sg291134 +S'Edward Calvert' +p328823 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328824 +sa(dp328825 +g291130 +S'wood engraving on Mokuroku paper' +p328826 +sg291132 +S'1956' +p328827 +sg291134 +S'Calvert Preparing to Sacrifice a Lamb' +p328828 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328829 +sa(dp328830 +g291130 +S'wood engraving on Mokuroku paper' +p328831 +sg291132 +S'1956' +p328832 +sg291134 +S'Edward Calvert after a Portrait by His Third Son' +p328833 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328834 +sa(dp328835 +g291130 +S'wood engraving on Mokuroku paper' +p328836 +sg291132 +S'1956' +p328837 +sg291134 +S'Frederick Tathem from a Little Known Photograph' +p328838 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328839 +sa(dp328840 +g291130 +S'wood engraving on Mokuroku paper' +p328841 +sg291132 +S'1956' +p328842 +sg291134 +S'George Richmond Engraving "The Shepard"' +p328843 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328844 +sa(dp328845 +g291130 +S'wood engraving on Mokuroku paper' +p328846 +sg291132 +S'1956' +p328847 +sg291134 +S'George Richmond in His Engraving Costume' +p328848 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328849 +sa(dp328850 +g291130 +S'wood engraving on Mokuroku paper' +p328851 +sg291132 +S'1956' +p328852 +sg291134 +S'Francis Finch' +p328853 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328854 +sa(dp328855 +g291130 +S'1 vol: ill: 3 wood engravings' +p328856 +sg291132 +S'published 1957' +p328857 +sg291134 +S'A Letter from Ernst Barlach' +p328858 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328859 +sa(dp328860 +g291130 +S'wood engraving' +p328861 +sg291132 +S'1957' +p328862 +sg291134 +S'Ernst Barlach' +p328863 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328864 +sa(dp328865 +g291130 +S'wood engraving' +p328866 +sg291132 +S'1957' +p328867 +sg291134 +S'Ernst Barlach' +p328868 +sg291136 +g27 +sg291137 +S'Leonard Baskin' +p328869 +sa(dp328870 +g291130 +S'engraving in green-black on wove paper' +p328871 +sg291132 +S'1959' +p328872 +sg291134 +S'Woman Seated in Interior' +p328873 +sg291136 +g27 +sg291137 +S'Gabriel Laderman' +p328874 +sa(dp328875 +g291130 +S'photo-mechanical lithograph in color on wove paper' +p328876 +sg291132 +S'1984' +p328877 +sg291134 +S'U.N. Print for R.O.C.I.' +p328878 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p328879 +sa(dp328880 +g291130 +S'35-color screenprint on heavy wove paper' +p328881 +sg291132 +S'1987' +p328882 +sg291134 +S'In Celebration' +p328883 +sg291136 +g27 +sg291137 +S'Sam Gilliam' +p328884 +sa(dp328885 +g291134 +S'Acrobat on a Horse (Voltigeuse zu Pferd)' +p328886 +sg291137 +S'Ernst Ludwig Kirchner' +p328887 +sg291130 +S'drypoint on blotting paper' +p328888 +sg291132 +S'1913' +p328889 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c433.jpg' +p328890 +sg291136 +g27 +sa(dp328891 +g291134 +S'Female Nude (Weiblicher Akt)' +p328892 +sg291137 +S'Ernst Ludwig Kirchner' +p328893 +sg291130 +S'woodcut on blotting paper' +p328894 +sg291132 +S'1908' +p328895 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c440.jpg' +p328896 +sg291136 +g27 +sa(dp328897 +g291130 +S'pen and black ink on Arches paper' +p328898 +sg291132 +S'1973' +p328899 +sg291134 +S"Lincoln at Ford's Theater" +p328900 +sg291136 +g27 +sg291137 +S'Warrington Colescott' +p328901 +sa(dp328902 +g291130 +S'color etching, aquatint, soft-ground etching, and drypoint printed from two plates on wove paper' +p328903 +sg291132 +S'1972' +p328904 +sg291134 +S"Lincoln at Ford's Theater" +p328905 +sg291136 +g27 +sg291137 +S'Warrington Colescott' +p328906 +sa(dp328907 +g291130 +S'color linoleum cut on wove paper' +p328908 +sg291132 +S'1982' +p328909 +sg291134 +S"We're Having a Heat Wave" +p328910 +sg291136 +g27 +sg291137 +S'Phoebe Cole' +p328911 +sa(dp328912 +g291134 +S'A Young Girl Looking Upward' +p328913 +sg291137 +S'Jean-Baptiste Greuze' +p328914 +sg291130 +S'red chalk on laid paper' +p328915 +sg291132 +S'c. 1778' +p328916 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00033/a00033e4.jpg' +p328917 +sg291136 +g27 +sa(dp328918 +g291134 +S'Christ Leading Peter, James, and John to the High Mountain for the Transfiguration' +p328919 +sg291137 +S'Giovanni Domenico Tiepolo' +p328920 +sg291130 +S'pen and black ink, gray wash, and a variety of brown washes over black chalk on laid paper' +p328921 +sg291132 +S'1770s/1780s' +p328922 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00037/a00037f4.jpg' +p328923 +sg291136 +g27 +sa(dp328924 +g291134 +S'A Shepherd Family Resting' +p328925 +sg291137 +S'Giovanni Battista Piazzetta' +p328926 +sg291130 +S'red chalk over graphite on laid paper' +p328927 +sg291132 +S'1740s' +p328928 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00037/a00037d1.jpg' +p328929 +sg291136 +g27 +sa(dp328930 +g291130 +S'color lithograph on paper' +p328931 +sg291132 +S'1985' +p328932 +sg291134 +S'Dover' +p328933 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p328934 +sa(dp328935 +g291134 +S'A Bridge in Auvergne (Un pont en Auvergne)' +p328936 +sg291137 +S'Paul Huet' +p328937 +sg291130 +S'etching and roulette on chine applique' +p328938 +sg291132 +S'1834' +p328939 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f6d.jpg' +p328940 +sg291136 +g27 +sa(dp328941 +g291130 +S'(artist)' +p328942 +sg291132 +S'\n' +p328943 +sg291134 +S'Transitional Planes' +p328944 +sg291136 +g27 +sg291137 +S'Artist Information (' +p328945 +sa(dp328946 +g291130 +S'pen and brush and black ink on wove paper' +p328947 +sg291132 +S'1891/1893' +p328948 +sg291134 +S'Sketches including "A Promenade in Fancy Hats"' +p328949 +sg291136 +g27 +sg291137 +S'Pierre Bonnard' +p328950 +sa(dp328951 +g291134 +S'Christ on the Mount of Olives' +p328952 +sg291137 +S'Sebald Beham' +p328953 +sg291130 +S'woodcut on laid paper' +p328954 +sg291132 +S'1522' +p328955 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8c2.jpg' +p328956 +sg291136 +g27 +sa(dp328957 +g291134 +S'Ecce Homo' +p328958 +sg291137 +S'Sebald Beham' +p328959 +sg291130 +S'woodcut on laid paper' +p328960 +sg291132 +S'1522' +p328961 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8c6.jpg' +p328962 +sg291136 +g27 +sa(dp328963 +g291134 +S'La condition humaine' +p328964 +sg291137 +S'Ren\xc3\xa9 Magritte' +p328965 +sg291130 +S'oil on canvas' +p328966 +sg291132 +S'1933' +p328967 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000eb1.jpg' +p328968 +sg291136 +S"Two of Magritte's favored themes were the "window painting" and the\n "painting within a painting." \n The Human Condition\n " +p328969 +sa(dp328970 +g291134 +S'Monsieur and Madame Blizet with Monsieur Le Roy the Actor' +p328971 +sg291137 +S'Louis Carrogis, called Carmontelle' +p328972 +sg291130 +S'watercolor and gouache over red and black chalks with touches of graphite on laid paper; laid down' +p328973 +sg291132 +S'c. 1765' +p328974 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005fb4.jpg' +p328975 +sg291136 +g27 +sa(dp328976 +g291134 +S'Poppy in Bloom' +p328977 +sg291137 +S'Jean-Baptiste H\xc3\xbcet' +p328978 +sg291130 +S', mid 1760s' +p328979 +sg291132 +S'\n' +p328980 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f44.jpg' +p328981 +sg291136 +g27 +sa(dp328982 +g291134 +S'Poppy in Bloom' +p328983 +sg291137 +S'Jean-Baptiste H\xc3\xbcet' +p328984 +sg291130 +S', mid 1760s' +p328985 +sg291132 +S'\n' +p328986 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f73.jpg' +p328987 +sg291136 +g27 +sa(dp328988 +g291134 +S'Poppies with Seed Pods' +p328989 +sg291137 +S'Jean-Baptiste H\xc3\xbcet' +p328990 +sg291130 +S', mid 1760s' +p328991 +sg291132 +S'\n' +p328992 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fa2.jpg' +p328993 +sg291136 +g27 +sa(dp328994 +g291134 +S'Flowering Plant with Grass' +p328995 +sg291137 +S'Jean-Baptiste H\xc3\xbcet' +p328996 +sg291130 +S', mid 1760s' +p328997 +sg291132 +S'\n' +p328998 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f62.jpg' +p328999 +sg291136 +g27 +sa(dp329000 +g291134 +S'Flowering Plant with Buds' +p329001 +sg291137 +S'Jean-Baptiste H\xc3\xbcet' +p329002 +sg291130 +S', mid 1760s' +p329003 +sg291132 +S'\n' +p329004 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f5b.jpg' +p329005 +sg291136 +g27 +sa(dp329006 +g291134 +S'Jack-in-Pulpit - No. 2' +p329007 +sg291137 +S"Georgia O'Keeffe" +p329008 +sg291130 +S'oil on canvas' +p329009 +sg291132 +S'1930' +p329010 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000194.jpg' +p329011 +sg291136 +g27 +sa(dp329012 +g291134 +S'Jack-in-the-Pulpit No. 3' +p329013 +sg291137 +S"Georgia O'Keeffe" +p329014 +sg291130 +S'oil on canvas' +p329015 +sg291132 +S'1930' +p329016 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000195.jpg' +p329017 +sg291136 +g27 +sa(dp329018 +g291134 +S'Jack-in-the-Pulpit No. IV' +p329019 +sg291137 +S"Georgia O'Keeffe" +p329020 +sg291130 +S'oil on canvas' +p329021 +sg291132 +S'1930' +p329022 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000196.jpg' +p329023 +sg291136 +S"In 1930, Georgia O'Keeffe painted a series of six canvases depicting a jack-in-the-pulpit. The\n series begins with the striped and hooded bloom rendered with a botanist's care, continues with\n successively more abstract and tightly focused depictions, and ends with the essence of the\n jack-in-the-pulpit, a haloed black pistil standing alone against a black, purple, and gray\n field.\n Jack-in-the-Pulpit No. IV\n O'Keeffe bequeathed \n " +p329024 +sa(dp329025 +g291134 +S'Jack-in-Pulpit Abstraction - No. 5' +p329026 +sg291137 +S"Georgia O'Keeffe" +p329027 +sg291130 +S'oil on canvas' +p329028 +sg291132 +S'1930' +p329029 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000197.jpg' +p329030 +sg291136 +g27 +sa(dp329031 +g291134 +S'Jack-in-the-Pulpit No. VI' +p329032 +sg291137 +S"Georgia O'Keeffe" +p329033 +sg291130 +S'oil on canvas' +p329034 +sg291132 +S'1930' +p329035 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000198.jpg' +p329036 +sg291136 +g27 +sa(dp329037 +g291134 +S'Line and Curve' +p329038 +sg291137 +S"Georgia O'Keeffe" +p329039 +sg291130 +S'oil on canvas' +p329040 +sg291132 +S'1927' +p329041 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000199.jpg' +p329042 +sg291136 +g27 +sa(dp329043 +g291134 +S'Shell No. I' +p329044 +sg291137 +S"Georgia O'Keeffe" +p329045 +sg291130 +S'oil on canvas' +p329046 +sg291132 +S'1928' +p329047 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a000019a.jpg' +p329048 +sg291136 +g27 +sa(dp329049 +g291134 +S'Sky with Flat White Cloud' +p329050 +sg291137 +S"Georgia O'Keeffe" +p329051 +sg291130 +S'oil on canvas' +p329052 +sg291132 +S'1962' +p329053 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a000019b.jpg' +p329054 +sg291136 +g27 +sa(dp329055 +g291134 +S'Pont Aberglaslyn' +p329056 +sg291137 +S'John Varley' +p329057 +sg291130 +S'watercolor over graphite on wove paper' +p329058 +sg291132 +S'1812' +p329059 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cda.jpg' +p329060 +sg291136 +g27 +sa(dp329061 +g291134 +S'Untitled' +p329062 +sg291137 +S'Aleksandr Mikhailovich Rodchenko' +p329063 +sg291130 +S'oil on wood' +p329064 +sg291132 +S'1919' +p329065 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ee5.jpg' +p329066 +sg291136 +g27 +sa(dp329067 +g291134 +S'Portrait of a Standing Lady' +p329068 +sg291137 +S'John Vanderbank' +p329069 +sg291130 +S'pen and brown ink on laid paper' +p329070 +sg291132 +S'1734' +p329071 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d20.jpg' +p329072 +sg291136 +g27 +sa(dp329073 +g291134 +S'Portrait of a Standing Lady' +p329074 +sg291137 +S'John Vanderbank' +p329075 +sg291130 +S'pen and brown ink on laid paper' +p329076 +sg291132 +S'1734' +p329077 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d4d.jpg' +p329078 +sg291136 +g27 +sa(dp329079 +g291134 +S'Aerial View of Theatre' +p329080 +sg291137 +S'Stefano Della Bella' +p329081 +sg291130 +S'etching and engraving on laid paper' +p329082 +sg291132 +S'1652' +p329083 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca1f.jpg' +p329084 +sg291136 +g27 +sa(dp329085 +g291130 +S'etching and engraving on laid paper' +p329086 +sg291132 +S'1652' +p329087 +sg291134 +S'Entrance Procession [left half of 2-part print, see 1987.62.3]' +p329088 +sg291136 +g27 +sg291137 +S'Stefano Della Bella' +p329089 +sa(dp329090 +g291130 +S'etching and engraving on laid paper' +p329091 +sg291132 +S'1652' +p329092 +sg291134 +S'Entrance Procession [right half of 2-part print, see 1987.62.2]' +p329093 +sg291136 +g27 +sg291137 +S'Stefano Della Bella' +p329094 +sa(dp329095 +g291134 +S'The Rock of Aeolus' +p329096 +sg291137 +S'Stefano Della Bella' +p329097 +sg291130 +S'etching on laid paper' +p329098 +sg291132 +S'1652' +p329099 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9bf.jpg' +p329100 +sg291136 +g27 +sa(dp329101 +g291134 +S'Twenty-Four Cavorting Cavaliers' +p329102 +sg291137 +S'Stefano Della Bella' +p329103 +sg291130 +S'etching on laid paper' +p329104 +sg291132 +S'1652' +p329105 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9c2.jpg' +p329106 +sg291136 +g27 +sa(dp329107 +g291134 +S'Fighting Cavaliers' +p329108 +sg291137 +S'Stefano Della Bella' +p329109 +sg291130 +S'etching on laid paper' +p329110 +sg291132 +S'1652' +p329111 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9c3.jpg' +p329112 +sg291136 +g27 +sa(dp329113 +g291134 +S'Twenty-Four Cavaliers in an Oval' +p329114 +sg291137 +S'Stefano Della Bella' +p329115 +sg291130 +S'etching on laid paper' +p329116 +sg291132 +S'1652' +p329117 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9c4.jpg' +p329118 +sg291136 +g27 +sa(dp329119 +g291134 +S'Cavaliers Fighting with Swords' +p329120 +sg291137 +S'Stefano Della Bella' +p329121 +sg291130 +S'etching on laid paper' +p329122 +sg291132 +S'1652' +p329123 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9c1.jpg' +p329124 +sg291136 +g27 +sa(dp329125 +g291134 +S'Twenty-Four Cavaliers in Double S Formation' +p329126 +sg291137 +S'Stefano Della Bella' +p329127 +sg291130 +S'etching on laid paper' +p329128 +sg291132 +S'1652' +p329129 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9c0.jpg' +p329130 +sg291136 +g27 +sa(dp329131 +g291134 +S'Cavaliers Fighting in Two Columns' +p329132 +sg291137 +S'Stefano Della Bella' +p329133 +sg291130 +S'etching on laid paper' +p329134 +sg291132 +S'1652' +p329135 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9c5.jpg' +p329136 +sg291136 +g27 +sa(dp329137 +g291134 +S'Ten Cavaliers with Large Plumed Helmets' +p329138 +sg291137 +S'Stefano Della Bella' +p329139 +sg291130 +S'etching on laid paper' +p329140 +sg291132 +S'1652' +p329141 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9c6.jpg' +p329142 +sg291136 +g27 +sa(dp329143 +g291134 +S'Ten Cavaliers in a Circle' +p329144 +sg291137 +S'Stefano Della Bella' +p329145 +sg291130 +S'etching on laid paper' +p329146 +sg291132 +S'1652' +p329147 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9c7.jpg' +p329148 +sg291136 +g27 +sa(dp329149 +g291134 +S'A Procession of Sixty Cavaliers and Torch Bearers' +p329150 +sg291137 +S'Stefano Della Bella' +p329151 +sg291130 +S'etching on laid paper' +p329152 +sg291132 +S'1652' +p329153 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca23.jpg' +p329154 +sg291136 +g27 +sa(dp329155 +g291134 +S'Thirty-Six Jugglers Standing in Pyramids' +p329156 +sg291137 +S'Stefano Della Bella' +p329157 +sg291130 +S'etching on laid paper' +p329158 +sg291132 +S'1652' +p329159 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9be.jpg' +p329160 +sg291136 +g27 +sa(dp329161 +g291134 +S'Pyramids of Jugglers' +p329162 +sg291137 +S'Stefano Della Bella' +p329163 +sg291130 +S'etching on laid paper' +p329164 +sg291132 +S'1652' +p329165 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9bb.jpg' +p329166 +sg291136 +g27 +sa(dp329167 +g291130 +S'etching on chine applique [unique proof]' +p329168 +sg291132 +S'1845' +p329169 +sg291134 +S'The Forest of Fontainebleau' +p329170 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Bl\xc3\xa9ry' +p329171 +sa(dp329172 +g291134 +S'Early Morning' +p329173 +sg291137 +S'Sigmund Freudenberger' +p329174 +sg291130 +S'pen and black ink with gray wash and graphite with touches of white gouache on laid paper, with border line in black ink drawn by the artist' +p329175 +sg291132 +S'c. 1774' +p329176 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00060/a00060d3.jpg' +p329177 +sg291136 +g27 +sa(dp329178 +g291134 +S'Hans Bol' +p329179 +sg291137 +S'Hendrick Goltzius' +p329180 +sg291130 +S', 1593' +p329181 +sg291132 +S'\n' +p329182 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce23.jpg' +p329183 +sg291136 +g27 +sa(dp329184 +g291134 +S'Mountain Landscape' +p329185 +sg291137 +S'Artist Information (' +p329186 +sg291130 +S'(artist after)' +p329187 +sg291132 +S'\n' +p329188 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00077/a0007728.jpg' +p329189 +sg291136 +g27 +sa(dp329190 +g291134 +S'Venus Entrusting Cupid to Time' +p329191 +sg291137 +S'Artist Information (' +p329192 +sg291130 +S'(artist after)' +p329193 +sg291132 +S'\n' +p329194 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc46.jpg' +p329195 +sg291136 +g27 +sa(dp329196 +g291130 +S'woodcut on heavy blue-gray laid paper' +p329197 +sg291132 +S'1907' +p329198 +sg291134 +S'Hockender (Crouching Figure)' +p329199 +sg291136 +g27 +sg291137 +S'Erich Heckel' +p329200 +sa(dp329201 +g291134 +S'Hector Posing Nude' +p329202 +sg291137 +S'Ferdinand Hodler' +p329203 +sg291130 +S'graphite, squared, on wove paper' +p329204 +sg291132 +S'1901' +p329205 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a39.jpg' +p329206 +sg291136 +g27 +sa(dp329207 +g291134 +S'Ecce Homo' +p329208 +sg291137 +S'Hans Weiner' +p329209 +sg291130 +S'engraving on laid paper' +p329210 +sg291132 +S'unknown date\n' +p329211 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b2/a000b2d8.jpg' +p329212 +sg291136 +g27 +sa(dp329213 +g291134 +S'Trees at Beddington' +p329214 +sg291137 +S'Robert Hills' +p329215 +sg291130 +S'graphite over watercolor on wove paper' +p329216 +sg291132 +S'possibly c. 1805' +p329217 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c9d.jpg' +p329218 +sg291136 +g27 +sa(dp329219 +g291130 +S'watercolor on wove paper' +p329220 +sg291132 +S'probably 1841' +p329221 +sg291134 +S'Waterfall in the Dingle at Badger Hall' +p329222 +sg291136 +g27 +sg291137 +S'Peter De Wint' +p329223 +sa(dp329224 +g291134 +S'Draped Female Figure' +p329225 +sg291137 +S'Daniel Chester French' +p329226 +sg291130 +S'bronze' +p329227 +sg291132 +S'c. 1922/1929, cast 1932' +p329228 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a00016ed.jpg' +p329229 +sg291136 +g27 +sa(dp329230 +g291134 +S'Ren\xc3\xa9 Descartes' +p329231 +sg291137 +S'Jacques Lubin' +p329232 +sg291130 +S'engraving on laid paper' +p329233 +sg291132 +S'unknown date\n' +p329234 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d38.jpg' +p329235 +sg291136 +g27 +sa(dp329236 +g291134 +S'Nicolas Poussin' +p329237 +sg291137 +S'Albert Clouet' +p329238 +sg291130 +S'engraving on laid paper' +p329239 +sg291132 +S'unknown date\n' +p329240 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0c4.jpg' +p329241 +sg291136 +g27 +sa(dp329242 +g291134 +S'Marc Rene de Montalembert' +p329243 +sg291137 +S'Artist Information (' +p329244 +sg291130 +S'(artist after)' +p329245 +sg291132 +S'\n' +p329246 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008ca1.jpg' +p329247 +sg291136 +g27 +sa(dp329248 +g291134 +S'Frederick II' +p329249 +sg291137 +S'Artist Information (' +p329250 +sg291130 +S'(artist after)' +p329251 +sg291132 +S'\n' +p329252 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c95.jpg' +p329253 +sg291136 +g27 +sa(dp329254 +g291134 +S'Catherine II' +p329255 +sg291137 +S'Augustin de Saint-Aubin' +p329256 +sg291130 +S'engraving over etching on laid paper' +p329257 +sg291132 +S'1802' +p329258 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c8f.jpg' +p329259 +sg291136 +g27 +sa(dp329260 +g291134 +S'Isaac Newton' +p329261 +sg291137 +S'Augustin de Saint-Aubin' +p329262 +sg291130 +S'engraving over etching on laid paper' +p329263 +sg291132 +S'1801' +p329264 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008ca8.jpg' +p329265 +sg291136 +g27 +sa(dp329266 +g291134 +S'Pierre Corneille' +p329267 +sg291137 +S'Augustin de Saint-Aubin' +p329268 +sg291130 +S'engraving over etching on laid paper' +p329269 +sg291132 +S'1799' +p329270 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c8c.jpg' +p329271 +sg291136 +g27 +sa(dp329272 +g291134 +S'Thomas Corneille' +p329273 +sg291137 +S'Augustin de Saint-Aubin' +p329274 +sg291130 +S'engraving over etching on laid paper' +p329275 +sg291132 +S'1805' +p329276 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c8b.jpg' +p329277 +sg291136 +g27 +sa(dp329278 +g291134 +S'Antoinette du Ligier de La Garde Deshoulieres' +p329279 +sg291137 +S'Artist Information (' +p329280 +sg291130 +S'(artist after)' +p329281 +sg291132 +S'\n' +p329282 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c8e.jpg' +p329283 +sg291136 +g27 +sa(dp329284 +g291134 +S'Jean de La Bruyere' +p329285 +sg291137 +S'Augustin de Saint-Aubin' +p329286 +sg291130 +S'engraving over etching on laid paper' +p329287 +sg291132 +S'1805' +p329288 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c98.jpg' +p329289 +sg291136 +g27 +sa(dp329290 +g291134 +S'Jean-Jacques Rousseau' +p329291 +sg291137 +S'Artist Information (' +p329292 +sg291130 +S'(artist after)' +p329293 +sg291132 +S'\n' +p329294 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005a94.jpg' +p329295 +sg291136 +g27 +sa(dp329296 +g291134 +S'Despreaux-Nicolas Boileau' +p329297 +sg291137 +S'Artist Information (' +p329298 +sg291130 +S'(artist after)' +p329299 +sg291132 +S'\n' +p329300 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c88.jpg' +p329301 +sg291136 +g27 +sa(dp329302 +g291134 +S'Charles Louis de Secondat Montesquieu' +p329303 +sg291137 +S'Augustin de Saint-Aubin' +p329304 +sg291130 +S'engraving over etching on laid paper' +p329305 +sg291132 +S'1803' +p329306 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008ca4.jpg' +p329307 +sg291136 +g27 +sa(dp329308 +g291134 +S'Salomon Gessner' +p329309 +sg291137 +S'Artist Information (' +p329310 +sg291130 +S'(artist after)' +p329311 +sg291132 +S'\n' +p329312 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c97.jpg' +p329313 +sg291136 +g27 +sa(dp329314 +g291134 +S'Commentaire sur la Henriade' +p329315 +sg291137 +S'Artist Information (' +p329316 +sg291130 +S'(artist after)' +p329317 +sg291132 +S'\n' +p329318 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bee.jpg' +p329319 +sg291136 +g27 +sa(dp329320 +g291134 +S'Simon-Nicolas-Henri Linguet' +p329321 +sg291137 +S'Artist Information (' +p329322 +sg291130 +S'(artist after)' +p329323 +sg291132 +S'\n' +p329324 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008ca2.jpg' +p329325 +sg291136 +g27 +sa(dp329326 +g291134 +S'Francois Marie Arouet de Voltaire' +p329327 +sg291137 +S'Artist Information (' +p329328 +sg291130 +S'(artist after)' +p329329 +sg291132 +S'\n' +p329330 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bec.jpg' +p329331 +sg291136 +g27 +sa(dp329332 +g291134 +S'Peter the Great' +p329333 +sg291137 +S'Augustin de Saint-Aubin' +p329334 +sg291130 +S'engraving over etching on laid paper' +p329335 +sg291132 +S'1800' +p329336 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008ca3.jpg' +p329337 +sg291136 +g27 +sa(dp329338 +g291134 +S'Simon-Nicolas-Henri Linguet' +p329339 +sg291137 +S'Augustin de Saint-Aubin' +p329340 +sg291130 +S'engraving over etching on laid paper' +p329341 +sg291132 +S'1780' +p329342 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c9e.jpg' +p329343 +sg291136 +g27 +sa(dp329344 +g291130 +S'(artist after)' +p329345 +sg291132 +S'\n' +p329346 +sg291134 +S'Samuel Bernard' +p329347 +sg291136 +g27 +sg291137 +S'Artist Information (' +p329348 +sa(dp329349 +g291134 +S'The Garden Gate' +p329350 +sg291137 +S'Hubert Robert' +p329351 +sg291130 +S'red chalk on laid paper' +p329352 +sg291132 +S'1760/1765' +p329353 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006306.jpg' +p329354 +sg291136 +g27 +sa(dp329355 +g291134 +S'The Virgin Swooning [recto]' +p329356 +sg291137 +S'Ford Madox Brown' +p329357 +sg291130 +S'black chalk on laid paper' +p329358 +sg291132 +S'1844' +p329359 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c5f.jpg' +p329360 +sg291136 +g27 +sa(dp329361 +g291134 +S'Two Drapery Studies [verso]' +p329362 +sg291137 +S'Ford Madox Brown' +p329363 +sg291130 +S'black chalk on laid paper' +p329364 +sg291132 +S'c. 1844' +p329365 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c60.jpg' +p329366 +sg291136 +g27 +sa(dp329367 +g291134 +S'Tower of the Cathedral at Sens' +p329368 +sg291137 +S'John Ruskin' +p329369 +sg291130 +S'pen and brown ink, brush and black ink, black chalk, and watercolor over graphite on brown paper' +p329370 +sg291132 +S'c. 1845' +p329371 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00027/a000279f.jpg' +p329372 +sg291136 +g27 +sa(dp329373 +g291134 +S'A Leaf from the Kelmscott Chaucer' +p329374 +sg291137 +S'William Morris' +p329375 +sg291130 +S'set in Chaucer and Troy types in black and red with decorative initials by William Morris, on laid paper' +p329376 +sg291132 +S'published 1896' +p329377 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cd6.jpg' +p329378 +sg291136 +g27 +sa(dp329379 +g291134 +S'Trees by a Rail Fence' +p329380 +sg291137 +S'John Frederick Kensett' +p329381 +sg291130 +S', unknown date' +p329382 +sg291132 +S'\n' +p329383 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00068/a000685f.jpg' +p329384 +sg291136 +g27 +sa(dp329385 +g291130 +S'woodcut on japan paper' +p329386 +sg291132 +S'1923' +p329387 +sg291134 +S'Herb Woman' +p329388 +sg291136 +g27 +sg291137 +S'Gerhard Marcks' +p329389 +sa(dp329390 +g291130 +S'4-color woodcut on japan paper' +p329391 +sg291132 +S'1920' +p329392 +sg291134 +S'The Shepherd' +p329393 +sg291136 +g27 +sg291137 +S'Heinrich Campendonk' +p329394 +sa(dp329395 +g291130 +S'woodcut on wove paper' +p329396 +sg291132 +S'1923/1926' +p329397 +sg291134 +S'Seated Woman' +p329398 +sg291136 +g27 +sg291137 +S'Hans Haffenrichter' +p329399 +sa(dp329400 +g291130 +S'woodcut on wove paper' +p329401 +sg291132 +S'1920' +p329402 +sg291134 +S'Girl with Cat' +p329403 +sg291136 +g27 +sg291137 +S'Hans Orlowski' +p329404 +sa(dp329405 +g291130 +S'lithograph on imitation vellum paper' +p329406 +sg291132 +S'1947' +p329407 +sg291134 +S'Morning' +p329408 +sg291136 +g27 +sg291137 +S'Mac Zimmermann' +p329409 +sa(dp329410 +g291130 +S'watercolor with colored pencil on Arches heavy wove paper' +p329411 +sg291132 +S'1984' +p329412 +sg291134 +S'Tondo VII' +p329413 +sg291136 +g27 +sg291137 +S'Keith Anden Achepohl' +p329414 +sa(dp329415 +g291130 +S'color lithograph and screenprint with embossing' +p329416 +sg291132 +S'1984/1986' +p329417 +sg291134 +S'The Sharing of Nameless' +p329418 +sg291136 +g27 +sg291137 +S'Arakawa' +p329419 +sa(dp329420 +g291130 +S'color aquatint and etching with embossing' +p329421 +sg291132 +S'1984/1986' +p329422 +sg291134 +S'The Sharing of Nameless' +p329423 +sg291136 +g27 +sg291137 +S'Arakawa' +p329424 +sa(dp329425 +g291130 +S'direct gravure in black' +p329426 +sg291132 +S'1986' +p329427 +sg291134 +S'Emily/Fingerprint' +p329428 +sg291136 +g27 +sg291137 +S'Chuck Close' +p329429 +sa(dp329430 +g291130 +S'direct gravure in black' +p329431 +sg291132 +S'1986' +p329432 +sg291134 +S'Marta/Fingerprint' +p329433 +sg291136 +g27 +sg291137 +S'Chuck Close' +p329434 +sa(dp329435 +g291130 +S'direct gravure in black' +p329436 +sg291132 +S'1986' +p329437 +sg291134 +S'Leslie/Fingerprint' +p329438 +sg291136 +g27 +sg291137 +S'Chuck Close' +p329439 +sa(dp329440 +g291130 +S'direct gravure with silk coll?' +p329441 +sg291132 +S'1986' +p329442 +sg291134 +S'Emily/Fingerprint/Silk Coll\xc3\xa9' +p329443 +sg291136 +g27 +sg291137 +S'Chuck Close' +p329444 +sa(dp329445 +g291130 +S'direct gravure with silk colle' +p329446 +sg291132 +S'1986' +p329447 +sg291134 +S'Marta/Fingerprint/Silk Colle' +p329448 +sg291136 +g27 +sg291137 +S'Chuck Close' +p329449 +sa(dp329450 +g291130 +S'direct gravure with silk colle' +p329451 +sg291132 +S'1986' +p329452 +sg291134 +S'Leslie/Fingerprint/Silk Colle' +p329453 +sg291136 +g27 +sg291137 +S'Chuck Close' +p329454 +sa(dp329455 +g291130 +S'hand-colored etching, soft-ground etching, and power tool drypoint with painted additions' +p329456 +sg291132 +S'1985/1987' +p329457 +sg291134 +S'A Side View in Florida' +p329458 +sg291136 +g27 +sg291137 +S'Jim Dine' +p329459 +sa(dp329460 +g291130 +S'etching and power tool drypoint' +p329461 +sg291132 +S'1985/1987' +p329462 +sg291134 +S'A Side View in Florida' +p329463 +sg291136 +g27 +sg291137 +S'Jim Dine' +p329464 +sa(dp329465 +g291130 +S'color direct gravure and soft-ground etching' +p329466 +sg291132 +S'1985/1987' +p329467 +sg291134 +S'Yellowheart and a Devil' +p329468 +sg291136 +g27 +sg291137 +S'Jim Dine' +p329469 +sa(dp329470 +g291130 +S'hand-colored direct gravure and power tool drypoint with painted additions' +p329471 +sg291132 +S'1986' +p329472 +sg291134 +S'Hand Painting on the Mandala' +p329473 +sg291136 +g27 +sg291137 +S'Jim Dine' +p329474 +sa(dp329475 +g291130 +S'direct gravure, etching, soft-ground etching, spitbite aquatint, and power tool drypoint' +p329476 +sg291132 +S'1985/1987' +p329477 +sg291134 +S'My Nights in Santa Monica' +p329478 +sg291136 +g27 +sg291137 +S'Jim Dine' +p329479 +sa(dp329480 +g291130 +S'direct gravure, etching, and power tool drypoint' +p329481 +sg291132 +S'1985/1987' +p329482 +sg291134 +S'My Nights in Santa Monica (The Bistre Version)' +p329483 +sg291136 +g27 +sg291137 +S'Jim Dine' +p329484 +sa(dp329485 +g291130 +S'hand-colored direct gravure, spitbite aquatint, and power tool drypoint with painted additions' +p329486 +sg291132 +S'1985/1986' +p329487 +sg291134 +S'Shellac on a Hand' +p329488 +sg291136 +g27 +sg291137 +S'Jim Dine' +p329489 +sa(dp329490 +g291130 +S'direct gravure, etching, spitbite aquatint, and power tool drypoint' +p329491 +sg291132 +S'1986' +p329492 +sg291134 +S'Black and White Blossom' +p329493 +sg291136 +g27 +sg291137 +S'Jim Dine' +p329494 +sa(dp329495 +g291130 +S'color lithograph and etching' +p329496 +sg291132 +S'1986' +p329497 +sg291134 +S'Two Florida Bathrobes' +p329498 +sg291136 +g27 +sg291137 +S'Jim Dine' +p329499 +sa(dp329500 +g291130 +S'soft-ground etching in red-brown on T.H. Saunders paper' +p329501 +sg291132 +S'1985/1986' +p329502 +sg291134 +S'Folded Constance Pregnant' +p329503 +sg291136 +g27 +sg291137 +S'Alfred Leslie' +p329504 +sa(dp329505 +g291130 +S'photogravure and screenprint' +p329506 +sg291132 +S'1986' +p329507 +sg291134 +S'Tampa Orchid' +p329508 +sg291136 +g27 +sg291137 +S'Robert Mapplethorpe' +p329509 +sa(dp329510 +g291130 +S'photogravure' +p329511 +sg291132 +S'1987' +p329512 +sg291134 +S'Irises' +p329513 +sg291136 +g27 +sg291137 +S'Robert Mapplethorpe' +p329514 +sa(dp329515 +g291130 +S'photogravure on silk colle' +p329516 +sg291132 +S'1987' +p329517 +sg291134 +S'Irises' +p329518 +sg291136 +g27 +sg291137 +S'Robert Mapplethorpe' +p329519 +sa(dp329520 +g291130 +S'photogravure' +p329521 +sg291132 +S'1987' +p329522 +sg291134 +S'Hyacinth' +p329523 +sg291136 +g27 +sg291137 +S'Robert Mapplethorpe' +p329524 +sa(dp329525 +g291130 +S'photogravure on silk coll?' +p329526 +sg291132 +S'1987' +p329527 +sg291134 +S'Hyacinth' +p329528 +sg291136 +g27 +sg291137 +S'Robert Mapplethorpe' +p329529 +sa(dp329530 +g291130 +S'photogravure' +p329531 +sg291132 +S'1987' +p329532 +sg291134 +S'Orchid' +p329533 +sg291136 +g27 +sg291137 +S'Robert Mapplethorpe' +p329534 +sa(dp329535 +g291130 +S'photogravure on silk colle' +p329536 +sg291132 +S'1987' +p329537 +sg291134 +S'Orchid' +p329538 +sg291136 +g27 +sg291137 +S'Robert Mapplethorpe' +p329539 +sa(dp329540 +g291130 +S'direct gravure, aquatint, and roulette work' +p329541 +sg291132 +S'1986' +p329542 +sg291134 +S'View of Rome' +p329543 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p329544 +sa(dp329545 +g291130 +S'monoprint and lithograph' +p329546 +sg291132 +S'1986' +p329547 +sg291134 +S'Shriek' +p329548 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p329549 +sa(dp329550 +g291130 +S'pen and brush and black ink, colored chalks, and watercolor on wove paper' +p329551 +sg291132 +S'1941' +p329552 +sg291134 +S'Figures in an Underground Shelter' +p329553 +sg291136 +g27 +sg291137 +S'Henry Moore' +p329554 +sa(dp329555 +g291134 +S'Mercury' +p329556 +sg291137 +S'Parmigianino' +p329557 +sg291130 +S'black chalk on laid paper' +p329558 +sg291132 +S'c. 1523/1524' +p329559 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a0007504.jpg' +p329560 +sg291136 +g27 +sa(dp329561 +g291130 +S'graphite on tracing paper' +p329562 +sg291132 +S'1976' +p329563 +sg291134 +S'Masonry Enclosure: Project for a Doorway' +p329564 +sg291136 +g27 +sg291137 +S'Alice Aycock' +p329565 +sa(dp329566 +g291130 +S'graphite on tracing paper' +p329567 +sg291132 +S'1976' +p329568 +sg291134 +S'Masonry Enclosure: Project for a Doorway' +p329569 +sg291136 +g27 +sg291137 +S'Alice Aycock' +p329570 +sa(dp329571 +g291130 +S'(author)' +p329572 +sg291132 +S'\n' +p329573 +sg291134 +S"Idees d'un Militaire pour la Disposition des Troupes" +p329574 +sg291136 +g27 +sg291137 +S'Artist Information (' +p329575 +sa(dp329576 +g291134 +S'Skaters on the Serpentine in Hyde Park' +p329577 +sg291137 +S'Julius Caesar Ibbetson' +p329578 +sg291130 +S'pen and black ink and watercolor on laid paper; laid down' +p329579 +sg291132 +S'1786' +p329580 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00050/a000508f.jpg' +p329581 +sg291136 +g27 +sa(dp329582 +g291130 +S'portfolio of text with 121 woodcuts and wood engravings' +p329583 +sg291132 +S'published 1939' +p329584 +sg291134 +S'Woodcuts + Wood Engravings: How I Make Them' +p329585 +sg291136 +g27 +sg291137 +S'Hans Alexander Mueller' +p329586 +sa(dp329587 +g291130 +S'page size: 47.8 x 34.8 cm (18 13/16 x 13 11/16 in.)' +p329588 +sg291132 +S'\n1 vol: ill: 18 lithographs by Argentinean artists' +p329589 +sg291134 +S'Di\xc3\xa9z y ocho' +p329590 +sg291136 +g27 +sg291137 +S'Various Artists' +p329591 +sa(dp329592 +g291130 +S'lithograph on wove paper' +p329593 +sg291132 +S'1954' +p329594 +sg291134 +S'El deseo' +p329595 +sg291136 +g27 +sg291137 +S'Libero Badii' +p329596 +sa(dp329597 +g291130 +S'4-color lithograph on wove paper' +p329598 +sg291132 +S'1954' +p329599 +sg291134 +S'El deseo' +p329600 +sg291136 +g27 +sg291137 +S'Libero Badii' +p329601 +sa(dp329602 +g291130 +S'lithograph on wove paper' +p329603 +sg291132 +S'published 1955' +p329604 +sg291134 +S'Tema en rect\xc3\xa1ngulo' +p329605 +sg291136 +g27 +sg291137 +S'Jos\xc3\xa9 Antonio Fern\xc3\xa1ndez-Muro' +p329606 +sa(dp329607 +g291130 +S'4-color lithograph on wove paper' +p329608 +sg291132 +S'published 1955' +p329609 +sg291134 +S'Verticales' +p329610 +sg291136 +g27 +sg291137 +S'Jos\xc3\xa9 Antonio Fern\xc3\xa1ndez-Muro' +p329611 +sa(dp329612 +g291130 +S'lithograph on wove paper' +p329613 +sg291132 +S'published 1955' +p329614 +sg291134 +S'Tema en grises' +p329615 +sg291136 +g27 +sg291137 +S'Sarah Grilo' +p329616 +sa(dp329617 +g291130 +S'4-color lithograph on wove paper' +p329618 +sg291132 +S'published 1955' +p329619 +sg291134 +S'Sobre violeta' +p329620 +sg291136 +g27 +sg291137 +S'Sarah Grilo' +p329621 +sa(dp329622 +g291130 +S'lithograph on wove paper' +p329623 +sg291132 +S'published 1955' +p329624 +sg291134 +S'9 elementos decrecientes' +p329625 +sg291136 +g27 +sg291137 +S'Alfredo Hlito' +p329626 +sa(dp329627 +g291130 +S'4-color lithograph on wove paper' +p329628 +sg291132 +S'published 1955' +p329629 +sg291134 +S'Funci\xc3\xb3n de dos c\xc3\xadrculos' +p329630 +sg291136 +g27 +sg291137 +S'Alfredo Hlito' +p329631 +sa(dp329632 +g291130 +S'lithograph on wove paper' +p329633 +sg291132 +S'published 1955' +p329634 +sg291134 +S'Formas' +p329635 +sg291136 +g27 +sg291137 +S'Jose Maria Lanus' +p329636 +sa(dp329637 +g291130 +S'4-color lithograph on wove paper' +p329638 +sg291132 +S'1954' +p329639 +sg291134 +S'Proyecto para decoracion' +p329640 +sg291136 +g27 +sg291137 +S'Jose Maria Lanus' +p329641 +sa(dp329642 +g291130 +S'lithograph on wove paper' +p329643 +sg291132 +S'published 1955' +p329644 +sg291134 +S'Composici\xc3\xb3n' +p329645 +sg291136 +g27 +sg291137 +S'Miguel Ocampo' +p329646 +sa(dp329647 +g291130 +S'4-color lithograph on wove paper' +p329648 +sg291132 +S'published 1955' +p329649 +sg291134 +S'Composici\xc3\xb3n' +p329650 +sg291136 +g27 +sg291137 +S'Miguel Ocampo' +p329651 +sa(dp329652 +g291130 +S'lithograph on wove paper' +p329653 +sg291132 +S'1955' +p329654 +sg291134 +S'Dos estampas para una mitolog\xc3\xada de lo cotidiano' +p329655 +sg291136 +g27 +sg291137 +S'Leopoldo Presas' +p329656 +sa(dp329657 +g291130 +S'4-color lithograph on wove paper' +p329658 +sg291132 +S'1954' +p329659 +sg291134 +S'Dos estampas para una mitolog\xc3\xada de lo cotidiano' +p329660 +sg291136 +g27 +sg291137 +S'Leopoldo Presas' +p329661 +sa(dp329662 +g291130 +S'lithograph on wove paper' +p329663 +sg291132 +S'1955' +p329664 +sg291134 +S'Figura' +p329665 +sg291136 +g27 +sg291137 +S'Ideal Sanchez' +p329666 +sa(dp329667 +g291130 +S'4-color lithograph on wove paper' +p329668 +sg291132 +S'1954' +p329669 +sg291134 +S'Composici\xc3\xb3n' +p329670 +sg291136 +g27 +sg291137 +S'Ideal Sanchez' +p329671 +sa(dp329672 +g291130 +S'lithograph on wove paper' +p329673 +sg291132 +S'1955' +p329674 +sg291134 +S'Paisaje de talamuyuna' +p329675 +sg291136 +g27 +sg291137 +S'Leopoldo Torres Aguero' +p329676 +sa(dp329677 +g291130 +S'4-color lithograph on wove paper' +p329678 +sg291132 +S'1955' +p329679 +sg291134 +S'Alfaroninas' +p329680 +sg291136 +g27 +sg291137 +S'Leopoldo Torres Aguero' +p329681 +sa(dp329682 +g291134 +S'A F\xc3\xaate Galante with Falconers' +p329683 +sg291137 +S'Antoine Watteau' +p329684 +sg291130 +S'red chalk over graphite on laid paper' +p329685 +sg291132 +S'c. 1711-1712' +p329686 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e0f.jpg' +p329687 +sg291136 +g27 +sa(dp329688 +g291134 +S'Going Out in the Morning' +p329689 +sg291137 +S'Thomas Rowlandson' +p329690 +sg291130 +S'hand-colored etching and aquatint on J. Whatman paper' +p329691 +sg291132 +S'published 1786' +p329692 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d1a.jpg' +p329693 +sg291136 +g27 +sa(dp329694 +g291134 +S'The Chase' +p329695 +sg291137 +S'Thomas Rowlandson' +p329696 +sg291130 +S'hand-colored etching and aquatint on J. Whatman paper' +p329697 +sg291132 +S'published 1787' +p329698 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d0c.jpg' +p329699 +sg291136 +g27 +sa(dp329700 +g291134 +S'The Death of the Fox' +p329701 +sg291137 +S'Thomas Rowlandson' +p329702 +sg291130 +S'hand-colored etching and aquatint on J. Whatman paper' +p329703 +sg291132 +S'published 1786' +p329704 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cfe.jpg' +p329705 +sg291136 +g27 +sa(dp329706 +g291134 +S'The Dinner' +p329707 +sg291137 +S'Thomas Rowlandson' +p329708 +sg291130 +S'hand-colored etching and aquatint on (J. Whatman paper?)' +p329709 +sg291132 +S'1787' +p329710 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cf1.jpg' +p329711 +sg291136 +g27 +sa(dp329712 +g291134 +S'Saint Paul Preaching' +p329713 +sg291137 +S'Agostino Carracci' +p329714 +sg291130 +S', unknown date' +p329715 +sg291132 +S'\n' +p329716 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a000753a.jpg' +p329717 +sg291136 +g27 +sa(dp329718 +g291134 +S'The Assumption of the Virgin' +p329719 +sg291137 +S'Charles Parrocel' +p329720 +sg291130 +S'red chalk on laid paper; laid down' +p329721 +sg291132 +S'1742' +p329722 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f5a.jpg' +p329723 +sg291136 +g27 +sa(dp329724 +g291134 +S'A Mastiff with a Gold-Tooled Collar' +p329725 +sg291137 +S'Jakob Walther' +p329726 +sg291130 +S'pen and black ink with gray and brown wash, with touches of gold ink, over traces of black chalk on laid paper' +p329727 +sg291132 +S'unknown date\n' +p329728 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00079/a000796a.jpg' +p329729 +sg291136 +g27 +sa(dp329730 +g291134 +S'Alexander Setting Fire to Persepolis' +p329731 +sg291137 +S'Bernhard Rode' +p329732 +sg291130 +S'pen and brown ink with brown wash over graphite on laid paper' +p329733 +sg291132 +S'unknown date\n' +p329734 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a00072d5.jpg' +p329735 +sg291136 +g27 +sa(dp329736 +g291134 +S'Mary Magdalene Praying in the Wilderness' +p329737 +sg291137 +S'Johan Wierix' +p329738 +sg291130 +S'pen and brown ink on vellum; laid down' +p329739 +sg291132 +S'unknown date\n' +p329740 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a00071d5.jpg' +p329741 +sg291136 +g27 +sa(dp329742 +g291134 +S'A Seated Man Holding a Tablet' +p329743 +sg291137 +S'Carlo Maratta' +p329744 +sg291130 +S'red chalk with white heightening on blue laid paper' +p329745 +sg291132 +S'unknown date\n' +p329746 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074c0.jpg' +p329747 +sg291136 +g27 +sa(dp329748 +g291134 +S'The Great Hercules' +p329749 +sg291137 +S'Hendrick Goltzius' +p329750 +sg291130 +S', 1589' +p329751 +sg291132 +S'\n' +p329752 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d06f.jpg' +p329753 +sg291136 +g27 +sa(dp329754 +g291134 +S'Gemischt' +p329755 +sg291137 +S'Paul Klee' +p329756 +sg291130 +S'reed pen and black ink over traces of graphite' +p329757 +sg291132 +S'1927' +p329758 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a40.jpg' +p329759 +sg291136 +g27 +sa(dp329760 +g291134 +S'Portrait of a Man' +p329761 +sg291137 +S'Thomas de Keyser' +p329762 +sg291130 +S'black chalk on vellum' +p329763 +sg291132 +S'1657' +p329764 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a0007020.jpg' +p329765 +sg291136 +g27 +sa(dp329766 +g291134 +S'The Swallows' +p329767 +sg291137 +S'F\xc3\xa9lix Bracquemond' +p329768 +sg291130 +S'etching on laid paper printed c. 1900 by David Keppel, under the auspices of the artist' +p329769 +sg291132 +S'c. 1884' +p329770 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00091/a0009145.jpg' +p329771 +sg291136 +g27 +sa(dp329772 +g291134 +S'The Oriental Merchant' +p329773 +sg291137 +S'Thomas Wyck' +p329774 +sg291130 +S'etching on laid paper' +p329775 +sg291132 +S'unknown date\n' +p329776 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d452.jpg' +p329777 +sg291136 +g27 +sa(dp329778 +g291134 +S'Ruined Towers Overlooking the Rhine' +p329779 +sg291137 +S'Karl Bodmer' +p329780 +sg291130 +S'pen and black ink and brush and gray ink with gray wash and graphite on wove paper' +p329781 +sg291132 +S'c. 1835' +p329782 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00031/a0003195.jpg' +p329783 +sg291136 +g27 +sa(dp329784 +g291134 +S"Belshazzar's Feast" +p329785 +sg291137 +S'Artist Information (' +p329786 +sg291130 +S'(artist after)' +p329787 +sg291132 +S'\n' +p329788 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d01e.jpg' +p329789 +sg291136 +g27 +sa(dp329790 +g291134 +S'Still Life with Game Birds' +p329791 +sg291137 +S'Artist Information (' +p329792 +sg291130 +S'(artist after)' +p329793 +sg291132 +S'\n' +p329794 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d667.jpg' +p329795 +sg291136 +g27 +sa(dp329796 +g291134 +S'A Bouquet of Flowers with Insects' +p329797 +sg291137 +S'Pierre Joseph Redout\xc3\xa9' +p329798 +sg291130 +S'watercolor with gold on vellum; laid down' +p329799 +sg291132 +S'unknown date\n' +p329800 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026df.jpg' +p329801 +sg291136 +g27 +sa(dp329802 +g291130 +S'pastel on laid paper' +p329803 +sg291132 +S'c. 1898' +p329804 +sg291134 +S'Landscape with a Lady in a Striped Dress' +p329805 +sg291136 +g27 +sg291137 +S'Ker Xavier Roussel' +p329806 +sa(dp329807 +g291134 +S'The Attitudes of Lady Hamilton' +p329808 +sg291137 +S'Pietro Antonio Novelli' +p329809 +sg291130 +S'pen and brown ink on laid paper' +p329810 +sg291132 +S'unknown date\n' +p329811 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00062/a00062f2.jpg' +p329812 +sg291136 +g27 +sa(dp329813 +g291134 +S"Bust of a Man Wearing a High Cap, Three-Quarters Right (The Artist's Father?)" +p329814 +sg291137 +S'Rembrandt van Rijn' +p329815 +sg291130 +S'etching on laid paper' +p329816 +sg291132 +S'1630' +p329817 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d384.jpg' +p329818 +sg291136 +g27 +sa(dp329819 +g291134 +S'Ancient Triumphal Procession' +p329820 +sg291137 +S'Daniel Lindtmayer' +p329821 +sg291130 +S'pen and black ink with gray wash on laid paper' +p329822 +sg291132 +S'unknown date\n' +p329823 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a09.jpg' +p329824 +sg291136 +g27 +sa(dp329825 +g291134 +S'Portrait of a Man in a Tricorn Hat' +p329826 +sg291137 +S'Georg Friedrich Schmidt' +p329827 +sg291130 +S'red chalk on laid paper; laid down' +p329828 +sg291132 +S'unknown date\n' +p329829 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00079/a00079b0.jpg' +p329830 +sg291136 +g27 +sa(dp329831 +g291134 +S'Joachim and the Angel' +p329832 +sg291137 +S'Albrecht D\xc3\xbcrer' +p329833 +sg291130 +S'woodcut on blue laid paper; laid down' +p329834 +sg291132 +S'c. 1504' +p329835 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b128.jpg' +p329836 +sg291136 +g27 +sa(dp329837 +g291134 +S'The Baptism of Christ' +p329838 +sg291137 +S'Martin Johann Schmidt' +p329839 +sg291130 +S'etching on laid paper' +p329840 +sg291132 +S'1773' +p329841 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d775.jpg' +p329842 +sg291136 +g27 +sa(dp329843 +g291134 +S'Andrea Odoni' +p329844 +sg291137 +S'Artist Information (' +p329845 +sg291130 +S'(artist after)' +p329846 +sg291132 +S'\n' +p329847 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5e2.jpg' +p329848 +sg291136 +g27 +sa(dp329849 +g291134 +S'The Tide Rising at Briton Ferry' +p329850 +sg291137 +S'Paul Sandby' +p329851 +sg291130 +S'watercolor over graphite; laid down' +p329852 +sg291132 +S'1773' +p329853 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a000284e.jpg' +p329854 +sg291136 +g27 +sa(dp329855 +g291130 +S'oil on canvas' +p329856 +sg291132 +S'c. 1670/1680' +p329857 +sg291134 +S'John Eldred' +p329858 +sg291136 +g27 +sg291137 +S'John Riley' +p329859 +sa(dp329860 +g291134 +S'Madonna and Child with a Bishop' +p329861 +sg291137 +S'Artist Information (' +p329862 +sg291130 +S'(artist after)' +p329863 +sg291132 +S'\n' +p329864 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c821.jpg' +p329865 +sg291136 +g27 +sa(dp329866 +g291134 +S'At Donderen, in the Woods of Drenthe' +p329867 +sg291137 +S'Egbert van Drielst' +p329868 +sg291130 +S'watercolor over black chalk on wove paper' +p329869 +sg291132 +S'1799' +p329870 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a00072bd.jpg' +p329871 +sg291136 +g27 +sa(dp329872 +g291134 +S'Federico Barocci' +p329873 +sg291137 +S'Artist Information (' +p329874 +sg291130 +S'(artist after)' +p329875 +sg291132 +S'\n' +p329876 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cbe.jpg' +p329877 +sg291136 +g27 +sa(dp329878 +g291134 +S'Figures in a Landscape [recto]' +p329879 +sg291137 +S'Thomas Barker' +p329880 +sg291130 +S'pen and brown ink on laid paper' +p329881 +sg291132 +S'unknown date\n' +p329882 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006be8.jpg' +p329883 +sg291136 +g27 +sa(dp329884 +g291134 +S'Figures in a Landscape [verso]' +p329885 +sg291137 +S'Thomas Barker' +p329886 +sg291130 +S'pen and brown ink on laid paper' +p329887 +sg291132 +S'unknown date\n' +p329888 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006be9.jpg' +p329889 +sg291136 +g27 +sa(dp329890 +g291134 +S'Head of a Cock' +p329891 +sg291137 +S'F\xc3\xa9lix Bracquemond' +p329892 +sg291130 +S'etching on laid paper' +p329893 +sg291132 +S'unknown date\n' +p329894 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00091/a000913c.jpg' +p329895 +sg291136 +g27 +sa(dp329896 +g291134 +S'Coral Buntings and Their Nest in a Holly Tree' +p329897 +sg291137 +S'Harry Bright' +p329898 +sg291130 +S'watercolor and gouache over graphite on wove paper' +p329899 +sg291132 +S'1878' +p329900 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c64.jpg' +p329901 +sg291136 +g27 +sa(dp329902 +g291134 +S'Gold Finches and Their Nest in an Apple Tree' +p329903 +sg291137 +S'Harry Bright' +p329904 +sg291130 +S'watercolor and gouache over gaphite on wove paper' +p329905 +sg291132 +S'1878' +p329906 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c63.jpg' +p329907 +sg291136 +g27 +sa(dp329908 +g291134 +S'Monument in a Church Cemetery' +p329909 +sg291137 +S'John Chessell Buckler' +p329910 +sg291130 +S'watercolor over graphite on wove paper' +p329911 +sg291132 +S'1816' +p329912 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c66.jpg' +p329913 +sg291136 +g27 +sa(dp329914 +g291134 +S'Woman and a Crane (Vigilance?)' +p329915 +sg291137 +S'Frederick Stuart Church' +p329916 +sg291130 +S'soft-ground etching, drypoint, and graphite on thin wove paper' +p329917 +sg291132 +S'1892' +p329918 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a64.jpg' +p329919 +sg291136 +g27 +sa(dp329920 +g291134 +S'Trees and Buildings with a Low Tower' +p329921 +sg291137 +S'John Clerk, of Eldin' +p329922 +sg291130 +S'etching and aquatint with scraping on laid paper' +p329923 +sg291132 +S'unknown date\n' +p329924 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00076/a000763d.jpg' +p329925 +sg291136 +g27 +sa(dp329926 +g291134 +S'Ely Cathedral, Cambridgeshire, S.W. View' +p329927 +sg291137 +S'John Coney' +p329928 +sg291130 +S'graphite on heavy wove paper' +p329929 +sg291132 +S'1820' +p329930 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a000696e.jpg' +p329931 +sg291136 +g27 +sa(dp329932 +g291134 +S'Welsh Hovel at Machynllaeth' +p329933 +sg291137 +S'George Cuitt the Younger' +p329934 +sg291130 +S'etching on chine applique' +p329935 +sg291132 +S'1814' +p329936 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cd3.jpg' +p329937 +sg291136 +g27 +sa(dp329938 +g291134 +S'Children in a Cart' +p329939 +sg291137 +S'Myles Birket Foster' +p329940 +sg291130 +S'watercolor on paperboard' +p329941 +sg291132 +S'unknown date\n' +p329942 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c10.jpg' +p329943 +sg291136 +g27 +sa(dp329944 +g291134 +S'View of Ullswater' +p329945 +sg291137 +S'William Gilpin' +p329946 +sg291130 +S'brush and black ink with gray washes over graphite on laid paper' +p329947 +sg291132 +S'unknown date\n' +p329948 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a00071ed.jpg' +p329949 +sg291136 +g27 +sa(dp329950 +g291134 +S'Five Sheep' +p329951 +sg291137 +S'Robert Hills' +p329952 +sg291130 +S'graphite on wove paper' +p329953 +sg291132 +S'unknown date\n' +p329954 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c19.jpg' +p329955 +sg291136 +g27 +sa(dp329956 +g291134 +S'Studies of Sheep' +p329957 +sg291137 +S'Robert Hills' +p329958 +sg291130 +S'graphite on wove paper' +p329959 +sg291132 +S'unknown date\n' +p329960 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c9f.jpg' +p329961 +sg291136 +g27 +sa(dp329962 +g291134 +S'Studies of Cattle' +p329963 +sg291137 +S'Robert Hills' +p329964 +sg291130 +S'graphite on laid paper' +p329965 +sg291132 +S'unknown date\n' +p329966 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c9e.jpg' +p329967 +sg291136 +g27 +sa(dp329968 +g291134 +S'Three Horses in a Field' +p329969 +sg291137 +S'Pieter van Laer' +p329970 +sg291130 +S'etching and engraving on laid paper' +p329971 +sg291132 +S'1636' +p329972 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d273.jpg' +p329973 +sg291136 +g27 +sa(dp329974 +g291134 +S'Rade de Bordeaux' +p329975 +sg291137 +S'Maxime Lalanne' +p329976 +sg291130 +S'etching on laid paper' +p329977 +sg291132 +S'1868' +p329978 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00098/a00098d0.jpg' +p329979 +sg291136 +g27 +sa(dp329980 +g291134 +S'Way into Abergavenny from Llanfoist' +p329981 +sg291137 +S'Roberto Angelo Kittermaster Marshall' +p329982 +sg291130 +S'watercolor on wove paper' +p329983 +sg291132 +S'unknown date\n' +p329984 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cb8.jpg' +p329985 +sg291136 +g27 +sa(dp329986 +g291134 +S'Squirrel Lane, near Magham Down, Sussex' +p329987 +sg291137 +S'Roberto Angelo Kittermaster Marshall' +p329988 +sg291130 +S'watercolor on wove paper' +p329989 +sg291132 +S'unknown date\n' +p329990 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cb9.jpg' +p329991 +sg291136 +g27 +sa(dp329992 +g291134 +S'Cardinal de Bouillon' +p329993 +sg291137 +S'Claude Mellan' +p329994 +sg291130 +S'engraving on heavy laid paper' +p329995 +sg291132 +S'1673' +p329996 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067c2.jpg' +p329997 +sg291136 +g27 +sa(dp329998 +g291134 +S'Self-Portrait' +p329999 +sg291137 +S'Mortimer Menpes' +p330000 +sg291130 +S'drypoint in blue-black on laid paper' +p330001 +sg291132 +S'unknown date\n' +p330002 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00081/a0008158.jpg' +p330003 +sg291136 +g27 +sa(dp330004 +g291134 +S'Le Pont-au-Change, Paris' +p330005 +sg291137 +S'Charles Meryon' +p330006 +sg291130 +S'etching on laid paper' +p330007 +sg291132 +S'1854' +p330008 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d1e.jpg' +p330009 +sg291136 +g27 +sa(dp330010 +g291134 +S'Aldenham Church, Hertfordshire' +p330011 +sg291137 +S'Henry Monro' +p330012 +sg291130 +S'pen and brown ink with black chalk and white heightening on blue wove paper' +p330013 +sg291132 +S'1812' +p330014 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cb6.jpg' +p330015 +sg291136 +g27 +sa(dp330016 +g291134 +S'Spring' +p330017 +sg291137 +S'Joseph Rubens Powell' +p330018 +sg291130 +S'watercolor and gouache over graphite on wove paper' +p330019 +sg291132 +S'unknown date\n' +p330020 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cc0.jpg' +p330021 +sg291136 +g27 +sa(dp330022 +g291134 +S'Summer' +p330023 +sg291137 +S'Joseph Rubens Powell' +p330024 +sg291130 +S'watercolor with gouache over graphite on wove paper' +p330025 +sg291132 +S'unknown date\n' +p330026 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cbf.jpg' +p330027 +sg291136 +g27 +sa(dp330028 +g291134 +S'Autumn' +p330029 +sg291137 +S'Joseph Rubens Powell' +p330030 +sg291130 +S'watercolor over graphite on wove paper' +p330031 +sg291132 +S'unknown date\n' +p330032 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cc1.jpg' +p330033 +sg291136 +g27 +sa(dp330034 +g291134 +S'Winter' +p330035 +sg291137 +S'Joseph Rubens Powell' +p330036 +sg291130 +S'watercolor and gouache over graphite on wove paper' +p330037 +sg291132 +S'unknown date\n' +p330038 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cc2.jpg' +p330039 +sg291136 +g27 +sa(dp330040 +g291134 +S'Bamberg' +p330041 +sg291137 +S'Samuel Prout' +p330042 +sg291130 +S'lithograph touched with white gouache on wove paper' +p330043 +sg291132 +S'unknown date\n' +p330044 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00081/a00081e9.jpg' +p330045 +sg291136 +g27 +sa(dp330046 +g291134 +S'Zwinger Palace, Dresden' +p330047 +sg291137 +S'Samuel Prout' +p330048 +sg291130 +S'lithograph touched with white gouache on wove paper' +p330049 +sg291132 +S'unknown date\n' +p330050 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00081/a00081ea.jpg' +p330051 +sg291136 +g27 +sa(dp330052 +g291134 +S'Chateau de Martinsbourg, Mayence' +p330053 +sg291137 +S'Samuel Prout' +p330054 +sg291130 +S'lithograph touched with white gouache on wove paper' +p330055 +sg291132 +S'unknown date\n' +p330056 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00081/a00081e8.jpg' +p330057 +sg291136 +g27 +sa(dp330058 +g291134 +S'French Street Scene with a Medieval Turret' +p330059 +sg291137 +S'Samuel Prout' +p330060 +sg291130 +S'watercolor on wove paper; laid down' +p330061 +sg291132 +S'unknown date\n' +p330062 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cc7.jpg' +p330063 +sg291136 +g27 +sa(dp330064 +g291134 +S'Laundresses before the Wasserturm, Nuremberg' +p330065 +sg291137 +S'Samuel Prout' +p330066 +sg291130 +S'watercolor on wove paper; laid down' +p330067 +sg291132 +S'unknown date\n' +p330068 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cc8.jpg' +p330069 +sg291136 +g27 +sa(dp330070 +g291134 +S'Cattle' +p330071 +sg291137 +S'Thomas Rowlandson' +p330072 +sg291130 +S'graphite on wove paper' +p330073 +sg291132 +S'unknown date\n' +p330074 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a0007101.jpg' +p330075 +sg291136 +g27 +sa(dp330076 +g291134 +S'Antique Figure' +p330077 +sg291137 +S'Thomas Rowlandson' +p330078 +sg291130 +S'pen and black ink with brown watercolor and gray wash over graphite on wove paper' +p330079 +sg291132 +S'1821' +p330080 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a000712e.jpg' +p330081 +sg291136 +g27 +sa(dp330082 +g291134 +S'Tree Study' +p330083 +sg291137 +S'John Ruskin' +p330084 +sg291130 +S'pen and black ink with blue-gray and gray washes over graphite on wove paper' +p330085 +sg291132 +S'unknown date\n' +p330086 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ccb.jpg' +p330087 +sg291136 +g27 +sa(dp330088 +g291130 +S'aquatint on laid paper [later version with the plate trimmed to a reduced size]' +p330089 +sg291132 +S'1899' +p330090 +sg291134 +S"Sunrise o'er Whitby Scaur (No. 2)" +p330091 +sg291136 +g27 +sg291137 +S'Sir Frank Short' +p330092 +sa(dp330093 +g291130 +S'4-color linocut (printed from 4 blocks) on buff oriental laid tissue paper' +p330094 +sg291132 +S'1929' +p330095 +sg291134 +S'Wet Afternoon' +p330096 +sg291136 +g27 +sg291137 +S'Ethel Spowers' +p330097 +sa(dp330098 +g291134 +S'Self-Portrait' +p330099 +sg291137 +S'Wilhelm Unger' +p330100 +sg291130 +S'etching on laid paper' +p330101 +sg291132 +S'unknown date\n' +p330102 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b4/a000b46f.jpg' +p330103 +sg291136 +g27 +sa(dp330104 +g291134 +S'View of an Estate' +p330105 +sg291137 +S'John William Upham' +p330106 +sg291130 +S'watercolor over graphite on wove paper' +p330107 +sg291132 +S'unknown date\n' +p330108 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a0006979.jpg' +p330109 +sg291136 +g27 +sa(dp330110 +g291134 +S'View of an Estate' +p330111 +sg291137 +S'John William Upham' +p330112 +sg291130 +S'watercolor over graphite on wove paper' +p330113 +sg291132 +S'unknown date\n' +p330114 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a0006978.jpg' +p330115 +sg291136 +g27 +sa(dp330116 +g291134 +S'Tally Llyn from Llyn Trigrain' +p330117 +sg291137 +S'Cornelius Varley' +p330118 +sg291130 +S'graphite on wove paper; laid down' +p330119 +sg291132 +S'1803' +p330120 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cd8.jpg' +p330121 +sg291136 +g27 +sa(dp330122 +g291134 +S'Isle de la Cite, Paris' +p330123 +sg291137 +S'James McNeill Whistler' +p330124 +sg291130 +S'etching on wove paper' +p330125 +sg291132 +S'1859' +p330126 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aac8.jpg' +p330127 +sg291136 +g27 +sa(dp330128 +g291130 +S'lithograph on laid paper' +p330129 +sg291132 +S'1897' +p330130 +sg291134 +S'Sir Frederick Pollock' +p330131 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p330132 +sa(dp330133 +g291130 +S'lithograph on laid paper' +p330134 +sg291132 +S'1896' +p330135 +sg291134 +S'Mauritz Rothenstein' +p330136 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p330137 +sa(dp330138 +g291130 +S'lithograph on laid paper' +p330139 +sg291132 +S'1921' +p330140 +sg291134 +S'Sir Frank Short' +p330141 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p330142 +sa(dp330143 +g291130 +S'lithograph on wove paper' +p330144 +sg291132 +S'1896' +p330145 +sg291134 +S'Two Studies of Alice Mary Knewstub (later Mrs. Rothenstein)' +p330146 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p330147 +sa(dp330148 +g291130 +S'lithograph on wove paper' +p330149 +sg291132 +S'1897' +p330150 +sg291134 +S'Alice Mary Knewstub (later Mrs. Rothenstein)' +p330151 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p330152 +sa(dp330153 +g291130 +S'brush and black ink on letterhead stationery' +p330154 +sg291132 +S'c. 1959' +p330155 +sg291134 +S'The Artist (drawn on a letter to Mrs. Lessing J. Rosenwald)' +p330156 +sg291136 +g27 +sg291137 +S'Alfred Bendiner' +p330157 +sa(dp330158 +g291134 +S'River Landscape with a Castle' +p330159 +sg291137 +S'Robert Adam' +p330160 +sg291130 +S'pen and black ink and watercolor over graphite on laid paper' +p330161 +sg291132 +S'1780s' +p330162 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a0002222.jpg' +p330163 +sg291136 +g27 +sa(dp330164 +g291134 +S'Monte Circeo at Sunset' +p330165 +sg291137 +S'John Robert Cozens' +p330166 +sg291130 +S'watercolor on paper; laid down on original presentation mount' +p330167 +sg291132 +S'1780s' +p330168 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a0006955.jpg' +p330169 +sg291136 +g27 +sa(dp330170 +g291134 +S'River Landscape with Ruins' +p330171 +sg291137 +S'William Gilpin' +p330172 +sg291130 +S'pen and black ink with gray wash over graphite on laid paper' +p330173 +sg291132 +S'1770s' +p330174 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a000717c.jpg' +p330175 +sg291136 +g27 +sa(dp330176 +g291134 +S'The Crucifixion' +p330177 +sg291137 +S'Netherlandish 16th Century' +p330178 +sg291130 +S'overall: 29.3 x 20.3 cm (11 9/16 x 8 in.)' +p330179 +sg291132 +S'\npen and brown ink over black chalk on laid paper' +p330180 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a0007081.jpg' +p330181 +sg291136 +g27 +sa(dp330182 +g291130 +S'minton ware ceramic' +p330183 +sg291132 +S'1875' +p330184 +sg291134 +S'Candlestick with Masks and Cupids (copy of "Henri Deux" ware)' +p330185 +sg291136 +g27 +sg291137 +S'Charles Toft' +p330186 +sa(dp330187 +g291134 +S'A Fortified Village along a River' +p330188 +sg291137 +S'Marco Ricci' +p330189 +sg291130 +S'pen and brown ink over traces of graphite; Zanetti mount' +p330190 +sg291132 +S'1720s' +p330191 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026f0.jpg' +p330192 +sg291136 +g27 +sa(dp330193 +g291134 +S'Portrait of a Lady Sewing' +p330194 +sg291137 +S'Daniel Nikolaus Chodowiecki' +p330195 +sg291130 +S'watercolor and gouache on laid paper' +p330196 +sg291132 +S'unknown date\n' +p330197 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00065/a00065fc.jpg' +p330198 +sg291136 +g27 +sa(dp330199 +g291134 +S'Hans Felbbier' +p330200 +sg291137 +S'Hendrick Goltzius' +p330201 +sg291130 +S', 1582' +p330202 +sg291132 +S'\n' +p330203 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce30.jpg' +p330204 +sg291136 +g27 +sa(dp330205 +g291134 +S'Jane Morris' +p330206 +sg291137 +S'Dante Gabriel Rossetti' +p330207 +sg291130 +S'pen and iron gall ink with brown wash on laid paper; laid down on paperboard' +p330208 +sg291132 +S'1870' +p330209 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005ab3.jpg' +p330210 +sg291136 +g27 +sa(dp330211 +g291134 +S'Emperor Claudius, 10 B.C.-54 A.D., Emperor 41-54 [obverse]' +p330212 +sg291137 +S'Varrone Belferdino' +p330213 +sg291130 +S'bronze' +p330214 +sg291132 +S'c. 1440s/1450s' +p330215 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067e7.jpg' +p330216 +sg291136 +g27 +sa(dp330217 +g291134 +S'Claudius, Attended by Minerva and Liberalitas, Distributing Largesse [obverse]' +p330218 +sg291137 +S'Varrone Belferdino' +p330219 +sg291130 +S'bronze' +p330220 +sg291132 +S'c. 1440s/1450s' +p330221 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067e5.jpg' +p330222 +sg291136 +g27 +sa(dp330223 +g291134 +S"Lorenzo de' Medici, il Magnifico, 1449-1492 (The Pazzi Conspiracy Medal) [obverse]" +p330224 +sg291137 +S'Bertoldo di Giovanni' +p330225 +sg291130 +S'bronze' +p330226 +sg291132 +S'1478' +p330227 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c6/a000c6a9.jpg' +p330228 +sg291136 +g27 +sa(dp330229 +g291130 +S'bronze' +p330230 +sg291132 +S'1478' +p330231 +sg291134 +S"The Murder of Giuliano I de' Medici (The Pazzi Consiracy Medal) [reverse]" +p330232 +sg291136 +g27 +sg291137 +S'Bertoldo di Giovanni' +p330233 +sa(dp330234 +g291134 +S'Marcantonio Flaminio, 1498-1550, poet [obverse]' +p330235 +sg291137 +S'Giulio della Torre' +p330236 +sg291130 +S'bronze' +p330237 +sg291132 +S'1520s' +p330238 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00062/a00062ce.jpg' +p330239 +sg291136 +g27 +sa(dp330240 +g291134 +S'The Muse Calliope [reverse]' +p330241 +sg291137 +S'Giulio della Torre' +p330242 +sg291130 +S'bronze' +p330243 +sg291132 +S'1520s' +p330244 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00062/a00062cf.jpg' +p330245 +sg291136 +g27 +sa(dp330246 +g291130 +S'bronze' +p330247 +sg291132 +S'1481' +p330248 +sg291134 +S'Alfonso II of Aragon, 1448-1495, Duke of Calabria 1458, afterwards King of Naples 1494-1495 [obverse]' +p330249 +sg291136 +g27 +sg291137 +S'Andrea Guacialoti' +p330250 +sa(dp330251 +g291130 +S'bronze' +p330252 +sg291132 +S'1481' +p330253 +sg291134 +S"Alfonso's Triumphal Entry into Naples [reverse]" +p330254 +sg291136 +g27 +sg291137 +S'Andrea Guacialoti' +p330255 +sa(dp330256 +g291130 +S'Italian, 1467 - 1528' +p330257 +sg291132 +S'(artist)' +p330258 +sg291134 +S'F. Francina, lived late fifteenth century [obverse]' +p330259 +sg291136 +g27 +sg291137 +S'Artist Information (' +p330260 +sa(dp330261 +g291130 +S'(artist)' +p330262 +sg291132 +S'\n' +p330263 +sg291134 +S'Phoenix on a Burning Pyre [reverse]' +p330264 +sg291136 +g27 +sg291137 +S'Artist Information (' +p330265 +sa(dp330266 +g291130 +S'bronze' +p330267 +sg291132 +S'1555' +p330268 +sg291134 +S'Mary Tudor, 1516-1558, Queen of England 1552 [obverse]' +p330269 +sg291136 +g27 +sg291137 +S'Jacopo Nizzola da Trezzo' +p330270 +sa(dp330271 +g291130 +S'bronze' +p330272 +sg291132 +S'1555' +p330273 +sg291134 +S'Mary as Peace Setting Fire to Arms [reverse]' +p330274 +sg291136 +g27 +sg291137 +S'Jacopo Nizzola da Trezzo' +p330275 +sa(dp330276 +g291134 +S'Bacchus' +p330277 +sg291137 +S'Hendrick Goltzius' +p330278 +sg291130 +S', c. 1595' +p330279 +sg291132 +S'\n' +p330280 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce3d.jpg' +p330281 +sg291136 +g27 +sa(dp330282 +g291134 +S'Hesbeen' +p330283 +sg291137 +S'Roelant Roghman' +p330284 +sg291130 +S'etching on laid paper' +p330285 +sg291132 +S'unknown date\n' +p330286 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3ac.jpg' +p330287 +sg291136 +g27 +sa(dp330288 +g291134 +S'Allegory on the Death of the Dauphin' +p330289 +sg291137 +S'Artist Information (' +p330290 +sg291130 +S'(artist after)' +p330291 +sg291132 +S'\n' +p330292 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e6a.jpg' +p330293 +sg291136 +g27 +sa(dp330294 +g291134 +S'An der Haidnaab' +p330295 +sg291137 +S'Max Joseph Wagenbauer' +p330296 +sg291130 +S'lithograph on wove paper' +p330297 +sg291132 +S'1806' +p330298 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3e1.jpg' +p330299 +sg291136 +g27 +sa(dp330300 +g291134 +S'Waldstrom bey Teissnach' +p330301 +sg291137 +S'Max Joseph Wagenbauer' +p330302 +sg291130 +S'lithograph on wove paper' +p330303 +sg291132 +S'c. 1810' +p330304 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b3e2.jpg' +p330305 +sg291136 +g27 +sa(dp330306 +g291134 +S'Altarpiece of the Madonna and Child with Saints, in Its Architectural Setting' +p330307 +sg291137 +S'Perino del Vaga' +p330308 +sg291130 +S'pen and brown ink on laid paper' +p330309 +sg291132 +S'1528/1537' +p330310 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a0007514.jpg' +p330311 +sg291136 +g27 +sa(dp330312 +g291134 +S'Title Page' +p330313 +sg291137 +S'Artist Information (' +p330314 +sg291130 +S'(artist after)' +p330315 +sg291132 +S'\n' +p330316 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cdb.jpg' +p330317 +sg291136 +g27 +sa(dp330318 +g291134 +S'Figure Studies including Woman with a Kettle' +p330319 +sg291137 +S'Artist Information (' +p330320 +sg291130 +S'(artist after)' +p330321 +sg291132 +S'\n' +p330322 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008ce1.jpg' +p330323 +sg291136 +g27 +sa(dp330324 +g291134 +S'Figure Studies including Two Seated Peasants' +p330325 +sg291137 +S'Artist Information (' +p330326 +sg291130 +S'(artist after)' +p330327 +sg291132 +S'\n' +p330328 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cde.jpg' +p330329 +sg291136 +g27 +sa(dp330330 +g291134 +S'Figures in a Landscape' +p330331 +sg291137 +S'Artist Information (' +p330332 +sg291130 +S'(artist after)' +p330333 +sg291132 +S'\n' +p330334 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cdc.jpg' +p330335 +sg291136 +g27 +sa(dp330336 +g291134 +S'Figure Studies including Reclining Boy' +p330337 +sg291137 +S'Artist Information (' +p330338 +sg291130 +S'(artist after)' +p330339 +sg291132 +S'\n' +p330340 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ffaa.jpg' +p330341 +sg291136 +g27 +sa(dp330342 +g291134 +S'Seated Mother and Child, Two Standing Peasants' +p330343 +sg291137 +S'Artist Information (' +p330344 +sg291130 +S'(artist after)' +p330345 +sg291132 +S'\n' +p330346 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cdf.jpg' +p330347 +sg291136 +g27 +sa(dp330348 +g291134 +S'Figure Studies including Standing Boy Holding a Pitcher' +p330349 +sg291137 +S'Artist Information (' +p330350 +sg291130 +S'(artist after)' +p330351 +sg291132 +S'\n' +p330352 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008ce0.jpg' +p330353 +sg291136 +g27 +sa(dp330354 +g291134 +S'Seated Shepherd Boys' +p330355 +sg291137 +S'Artist Information (' +p330356 +sg291130 +S'(artist after)' +p330357 +sg291132 +S'\n' +p330358 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008ce2.jpg' +p330359 +sg291136 +g27 +sa(dp330360 +g291134 +S'Figure Studies including Bearded Face of an Old Man' +p330361 +sg291137 +S'Artist Information (' +p330362 +sg291130 +S'(artist after)' +p330363 +sg291132 +S'\n' +p330364 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cda.jpg' +p330365 +sg291136 +g27 +sa(dp330366 +g291134 +S'Seated Woman with Peasant Boy Holding a Basket' +p330367 +sg291137 +S'Artist Information (' +p330368 +sg291130 +S'(artist after)' +p330369 +sg291132 +S'\n' +p330370 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008ce4.jpg' +p330371 +sg291136 +g27 +sa(dp330372 +g291134 +S'Figure Studies including Seated Mother and Child' +p330373 +sg291137 +S'Artist Information (' +p330374 +sg291130 +S'(artist after)' +p330375 +sg291132 +S'\n' +p330376 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008ce3.jpg' +p330377 +sg291136 +g27 +sa(dp330378 +g291134 +S'Reclining Shepherd Boys' +p330379 +sg291137 +S'Artist Information (' +p330380 +sg291130 +S'(artist after)' +p330381 +sg291132 +S'\n' +p330382 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cdd.jpg' +p330383 +sg291136 +g27 +sa(dp330384 +g291130 +S'color aquatint on wove paper' +p330385 +sg291132 +S'1980' +p330386 +sg291134 +S'Still-Life' +p330387 +sg291136 +g27 +sg291137 +S'Annapia Antonini' +p330388 +sa(dp330389 +g291134 +S'Sketch of Boats near a Cliff' +p330390 +sg291137 +S'British 19th Century' +p330391 +sg291130 +S'overall: 23 x 32.1 cm (9 1/16 x 12 5/8 in.)' +p330392 +sg291132 +S'\npen and black ink and brush and gray wash with white gouache over graphite' +p330393 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c5a.jpg' +p330394 +sg291136 +g27 +sa(dp330395 +g291134 +S'Spread Thy Wings and Away!' +p330396 +sg291137 +S'Albert Newsam' +p330397 +sg291130 +S'lithograph on wove paper' +p330398 +sg291132 +S'unknown date\n' +p330399 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fae8.jpg' +p330400 +sg291136 +g27 +sa(dp330401 +g291134 +S'Crucifixion' +p330402 +sg291137 +S'Mexican 18th Century' +p330403 +sg291130 +S'plate: 17.4 x 12 cm (6 7/8 x 4 3/4 in.)\r\nsheet: 21.3 x 15.5 cm (8 3/8 x 6 1/8 in.)' +p330404 +sg291132 +S'\nengraving in green printed on 20th cent.(?) imitation laid paper [restrike]' +p330405 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000dd/a000ddf9.jpg' +p330406 +sg291136 +g27 +sa(dp330407 +g291130 +S'wood engraving on laid paper' +p330408 +sg291132 +S'unknown date\n' +p330409 +sg291134 +S'Man in Patterned Robe, Wearing Turban' +p330410 +sg291136 +g27 +sg291137 +S'Russian 20th Century' +p330411 +sa(dp330412 +g291130 +S'woodcut on laid paper' +p330413 +sg291132 +S'unknown date\n' +p330414 +sg291134 +S'Two Children Playing Instruments' +p330415 +sg291136 +g27 +sg291137 +S'Russian 20th Century' +p330416 +sa(dp330417 +g291134 +S'Rape of the Sabine Women' +p330418 +sg291137 +S'Artist Information (' +p330419 +sg291130 +S'(artist after)' +p330420 +sg291132 +S'\n' +p330421 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d638.jpg' +p330422 +sg291136 +g27 +sa(dp330423 +g291130 +S'etching on wove paper' +p330424 +sg291132 +S'probably 1974' +p330425 +sg291134 +S'Abstraction' +p330426 +sg291136 +g27 +sg291137 +S'Lenz Klotz' +p330427 +sa(dp330428 +g291130 +S'screenprint in blue, green, and pink on wove paper' +p330429 +sg291132 +S'1975' +p330430 +sg291134 +S'Abstraction' +p330431 +sg291136 +g27 +sg291137 +S'Bridget Riley' +p330432 +sa(dp330433 +g291134 +S"Gezicht van't Koningsplein naar de Reguliers of Munts-Tooren, Te Amsterdam" +p330434 +sg291137 +S'Artist Information (' +p330435 +sg291130 +S'(artist after)' +p330436 +sg291132 +S'\n' +p330437 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d68e.jpg' +p330438 +sg291136 +g27 +sa(dp330439 +g291130 +S'color etching on wove paper' +p330440 +sg291132 +S'1970' +p330441 +sg291134 +S'Meandering' +p330442 +sg291136 +g27 +sg291137 +S'Albert Edgar Yersin' +p330443 +sa(dp330444 +g291130 +S'lithograph on wove paper' +p330445 +sg291132 +S'1974' +p330446 +sg291134 +S'Still-Life with Reproductions' +p330447 +sg291136 +g27 +sg291137 +S'Catherine E. Murphy' +p330448 +sa(dp330449 +g291130 +S'lithograph in brown and green on wove paper' +p330450 +sg291132 +S'probably 1975' +p330451 +sg291134 +S"L'aube" +p330452 +sg291136 +g27 +sg291137 +S'Andr\xc3\xa9 Beaudin' +p330453 +sa(dp330454 +g291130 +S'etching and aquatint on wove paper' +p330455 +sg291132 +S'1974' +p330456 +sg291134 +S'Still-Life' +p330457 +sg291136 +g27 +sg291137 +S'Friedrich Meckseper' +p330458 +sa(dp330459 +g291134 +S'The Daughters of Minyas' +p330460 +sg291137 +S'Jean Lepautre' +p330461 +sg291130 +S'etching and engraving on laid paper' +p330462 +sg291132 +S'published 1676' +p330463 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a00089df.jpg' +p330464 +sg291136 +g27 +sa(dp330465 +g291134 +S'Minerva Changing Arachne into a Spider' +p330466 +sg291137 +S'Jean Lepautre' +p330467 +sg291130 +S'etching and engraving on laid paper' +p330468 +sg291132 +S'published 1676' +p330469 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a00089e0.jpg' +p330470 +sg291136 +g27 +sa(dp330471 +g291134 +S'Amphion' +p330472 +sg291137 +S'Jean Lepautre' +p330473 +sg291130 +S'etching and engraving on laid paper' +p330474 +sg291132 +S'published 1676' +p330475 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a00089e3.jpg' +p330476 +sg291136 +g27 +sa(dp330477 +g291134 +S'Midas with Apollo and Pan' +p330478 +sg291137 +S'Jean Lepautre' +p330479 +sg291130 +S'etching and engraving on laid paper' +p330480 +sg291132 +S'published 1676' +p330481 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a00089e1.jpg' +p330482 +sg291136 +g27 +sa(dp330483 +g291134 +S'Funeral Pyre of Memnon' +p330484 +sg291137 +S'Jean Lepautre' +p330485 +sg291130 +S'etching and engraving on laid paper' +p330486 +sg291132 +S'published 1676' +p330487 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a00089e2.jpg' +p330488 +sg291136 +g27 +sa(dp330489 +g291134 +S'Hippolytus and the Sea Monster' +p330490 +sg291137 +S'Jean Lepautre' +p330491 +sg291130 +S'etching and engraving on laid paper' +p330492 +sg291132 +S'published 1676' +p330493 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a00089e4.jpg' +p330494 +sg291136 +g27 +sa(dp330495 +g291130 +S'(author)' +p330496 +sg291132 +S'\n' +p330497 +sg291134 +S"Metamorphoses d'Ovide en Rondeaux" +p330498 +sg291136 +g27 +sg291137 +S'Artist Information (' +p330499 +sa(dp330500 +g291130 +S'etching and roulette in light brown and red on chine applique' +p330501 +sg291132 +S'1929' +p330502 +sg291134 +S'Boy with Striped Shirt' +p330503 +sg291136 +g27 +sg291137 +S'Tsugouharu Foujita' +p330504 +sa(dp330505 +g291130 +S'portfolio with 10 color etchings with roulette and aquatint on chine applique' +p330506 +sg291132 +S'c. 1929' +p330507 +sg291134 +S'Les enfants' +p330508 +sg291136 +g27 +sg291137 +S'Tsugouharu Foujita' +p330509 +sa(dp330510 +g291130 +S'etching and roulette in light and dark brown on chine applique' +p330511 +sg291132 +S'c. 1929' +p330512 +sg291134 +S'Girl Facing Right' +p330513 +sg291136 +g27 +sg291137 +S'Tsugouharu Foujita' +p330514 +sa(dp330515 +g291130 +S'etching and roulette in light and dark brown and green on chine applique' +p330516 +sg291132 +S'c. 1929' +p330517 +sg291134 +S'Baby with Bows' +p330518 +sg291136 +g27 +sg291137 +S'Tsugouharu Foujita' +p330519 +sa(dp330520 +g291130 +S'4-color etching and roulette on chine applique' +p330521 +sg291132 +S'c. 1929' +p330522 +sg291134 +S'Sleeping Girl with Doll' +p330523 +sg291136 +g27 +sg291137 +S'Tsugouharu Foujita' +p330524 +sa(dp330525 +g291130 +S'etching, roulette, and aquatint in green, brown, and red' +p330526 +sg291132 +S'c. 1929' +p330527 +sg291134 +S'Hooded Girl' +p330528 +sg291136 +g27 +sg291137 +S'Tsugouharu Foujita' +p330529 +sa(dp330530 +g291130 +S'5-color etching and roulette on chine applique' +p330531 +sg291132 +S'c. 1929' +p330532 +sg291134 +S'Two Children' +p330533 +sg291136 +g27 +sg291137 +S'Tsugouharu Foujita' +p330534 +sa(dp330535 +g291130 +S'etching and roulette in green, red, and brown on chine applique' +p330536 +sg291132 +S'c. 1929' +p330537 +sg291134 +S'Child with Green Wrap' +p330538 +sg291136 +g27 +sg291137 +S'Tsugouharu Foujita' +p330539 +sa(dp330540 +g291130 +S'4-color etching and roulette on chine applique' +p330541 +sg291132 +S'c. 1929' +p330542 +sg291134 +S'Girl with Cat' +p330543 +sg291136 +g27 +sg291137 +S'Tsugouharu Foujita' +p330544 +sa(dp330545 +g291130 +S'etching and roulette in yellow, green, and red' +p330546 +sg291132 +S'c. 1929' +p330547 +sg291134 +S'Girl with Bird' +p330548 +sg291136 +g27 +sg291137 +S'Tsugouharu Foujita' +p330549 +sa(dp330550 +g291130 +S'etching and roulette in green, brown, and red on chine applique' +p330551 +sg291132 +S'c. 1929' +p330552 +sg291134 +S'Girl with Flower' +p330553 +sg291136 +g27 +sg291137 +S'Tsugouharu Foujita' +p330554 +sa(dp330555 +g291130 +S'1 vol: ill: 70 engravings with accompanying verses in Italian and French by Ludovico Dolce and others, and engraved title and dedication pages' +p330556 +sg291132 +S'published 1583' +p330557 +sg291134 +S'Imprese Nobili' +p330558 +sg291136 +g27 +sg291137 +S'Giovanni Battista Pittoni' +p330559 +sa(dp330560 +g291134 +S'Madame de Maintenon' +p330561 +sg291137 +S'Augustin de Saint-Aubin' +p330562 +sg291130 +S'engraving over etching on laid paper' +p330563 +sg291132 +S'1801' +p330564 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c94.jpg' +p330565 +sg291136 +g27 +sa(dp330566 +g291134 +S'Le Grand-Conde' +p330567 +sg291137 +S'Augustin de Saint-Aubin' +p330568 +sg291130 +S'engraving over etching on laid paper' +p330569 +sg291132 +S'1800' +p330570 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c91.jpg' +p330571 +sg291136 +g27 +sa(dp330572 +g291134 +S'Buffon' +p330573 +sg291137 +S'Artist Information (' +p330574 +sg291130 +S'(artist after)' +p330575 +sg291132 +S'\n' +p330576 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c90.jpg' +p330577 +sg291136 +g27 +sa(dp330578 +g291134 +S'Jean Racine' +p330579 +sg291137 +S'Augustin de Saint-Aubin' +p330580 +sg291130 +S'engraving over etching on laid paper' +p330581 +sg291132 +S'1806' +p330582 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bef.jpg' +p330583 +sg291136 +g27 +sa(dp330584 +g291134 +S'Jean-Baptiste-Louis Gresset' +p330585 +sg291137 +S'Augustin de Saint-Aubin' +p330586 +sg291130 +S'engraving over etching on laid paper' +p330587 +sg291132 +S'1803' +p330588 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c9a.jpg' +p330589 +sg291136 +g27 +sa(dp330590 +g291134 +S'Francois de Malherbe' +p330591 +sg291137 +S'Augustin de Saint-Aubin' +p330592 +sg291130 +S'engraving over etching on laid paper' +p330593 +sg291132 +S'1805' +p330594 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008ca7.jpg' +p330595 +sg291136 +g27 +sa(dp330596 +g291134 +S'Jean de La Fontaine' +p330597 +sg291137 +S'Augustin de Saint-Aubin' +p330598 +sg291130 +S'engraving over etching on laid paper' +p330599 +sg291132 +S'1801' +p330600 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c99.jpg' +p330601 +sg291136 +g27 +sa(dp330602 +g291130 +S'black chalk on wove paper' +p330603 +sg291132 +S'unknown date\n' +p330604 +sg291134 +S'Self-Portrait' +p330605 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p330606 +sa(dp330607 +g291130 +S'lithograph on laid paper' +p330608 +sg291132 +S'1897' +p330609 +sg291134 +S'George Gissing' +p330610 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p330611 +sa(dp330612 +g291130 +S'lithograph on laid paper' +p330613 +sg291132 +S'1897' +p330614 +sg291134 +S'Arthur Wing Pinero' +p330615 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p330616 +sa(dp330617 +g291130 +S'lithograph on laid paper' +p330618 +sg291132 +S'1897' +p330619 +sg291134 +S'William Henley' +p330620 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p330621 +sa(dp330622 +g291134 +S'Portrait of Whistler with a Paintbrush' +p330623 +sg291137 +S'Harper Pennington' +p330624 +sg291130 +S'pen and ink over graphite on wove paper; laid down' +p330625 +sg291132 +S'unknown date\n' +p330626 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a000097f.jpg' +p330627 +sg291136 +g27 +sa(dp330628 +g291134 +S'Victoria Sackville-West, Lady Sackville' +p330629 +sg291137 +S'Auguste Rodin' +p330630 +sg291130 +S'plaster' +p330631 +sg291132 +S'1913-1914' +p330632 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f3e.jpg' +p330633 +sg291136 +g27 +sa(dp330634 +g291130 +S'white birch veneer, paint, and varnish' +p330635 +sg291132 +S'1986-1988' +p330636 +sg291134 +S'Brushstroke Chair, Wood' +p330637 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p330638 +sa(dp330639 +g291130 +S'white birch veneer, paint, and varnish' +p330640 +sg291132 +S'1986-1988' +p330641 +sg291134 +S'Brushstroke Ottoman, Wood' +p330642 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p330643 +sa(dp330644 +g291134 +S'Subway Portrait' +p330645 +sg291137 +S'Walker Evans' +p330646 +sg291130 +S'gelatin silver print' +p330647 +sg291132 +S'1938-1941' +p330648 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006361.jpg' +p330649 +sg291136 +g27 +sa(dp330650 +g291134 +S'Subway Portrait' +p330651 +sg291137 +S'Walker Evans' +p330652 +sg291130 +S'gelatin silver print' +p330653 +sg291132 +S'1938-1941' +p330654 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006347.jpg' +p330655 +sg291136 +g27 +sa(dp330656 +g291134 +S'Subway Portrait' +p330657 +sg291137 +S'Walker Evans' +p330658 +sg291130 +S'gelatin silver print' +p330659 +sg291132 +S'1938-1941' +p330660 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006359.jpg' +p330661 +sg291136 +g27 +sa(dp330662 +g291134 +S'Subway Portrait' +p330663 +sg291137 +S'Walker Evans' +p330664 +sg291130 +S'gelatin silver print' +p330665 +sg291132 +S'1938-1941' +p330666 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006350.jpg' +p330667 +sg291136 +g27 +sa(dp330668 +g291134 +S'Subway Portrait' +p330669 +sg291137 +S'Walker Evans' +p330670 +sg291130 +S'gelatin silver print' +p330671 +sg291132 +S'1938-1941' +p330672 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006341.jpg' +p330673 +sg291136 +g27 +sa(dp330674 +g291134 +S'Subway Portrait' +p330675 +sg291137 +S'Walker Evans' +p330676 +sg291130 +S'gelatin silver print' +p330677 +sg291132 +S'1938-1941' +p330678 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006348.jpg' +p330679 +sg291136 +g27 +sa(dp330680 +g291134 +S'Subway Portrait' +p330681 +sg291137 +S'Walker Evans' +p330682 +sg291130 +S'gelatin silver print' +p330683 +sg291132 +S'1938-1941' +p330684 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00057/a0005718.jpg' +p330685 +sg291136 +g27 +sa(dp330686 +g291134 +S'Subway Portrait' +p330687 +sg291137 +S'Walker Evans' +p330688 +sg291130 +S'gelatin silver print' +p330689 +sg291132 +S'1938-1941' +p330690 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006362.jpg' +p330691 +sg291136 +g27 +sa(dp330692 +g291134 +S'Subway Portrait' +p330693 +sg291137 +S'Walker Evans' +p330694 +sg291130 +S'gelatin silver print' +p330695 +sg291132 +S'1938-1941' +p330696 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a000634f.jpg' +p330697 +sg291136 +g27 +sa(dp330698 +g291134 +S'Subway Portrait' +p330699 +sg291137 +S'Walker Evans' +p330700 +sg291130 +S'gelatin silver print' +p330701 +sg291132 +S'1938-1941' +p330702 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a000633a.jpg' +p330703 +sg291136 +g27 +sa(dp330704 +g291134 +S'Subway Portrait' +p330705 +sg291137 +S'Walker Evans' +p330706 +sg291130 +S'gelatin silver print' +p330707 +sg291132 +S'1938-1941' +p330708 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a000633f.jpg' +p330709 +sg291136 +g27 +sa(dp330710 +g291134 +S'Subway Portrait' +p330711 +sg291137 +S'Walker Evans' +p330712 +sg291130 +S'gelatin silver print' +p330713 +sg291132 +S'1938-1941' +p330714 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006349.jpg' +p330715 +sg291136 +g27 +sa(dp330716 +g291134 +S'Subway Portrait' +p330717 +sg291137 +S'Walker Evans' +p330718 +sg291130 +S'gelatin silver print' +p330719 +sg291132 +S'1938-1941' +p330720 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a000634a.jpg' +p330721 +sg291136 +g27 +sa(dp330722 +g291134 +S'Subway Portrait' +p330723 +sg291137 +S'Walker Evans' +p330724 +sg291130 +S'gelatin silver print' +p330725 +sg291132 +S'1938-1941' +p330726 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a000633d.jpg' +p330727 +sg291136 +g27 +sa(dp330728 +g291134 +S'Subway Portrait' +p330729 +sg291137 +S'Walker Evans' +p330730 +sg291130 +S'gelatin silver print' +p330731 +sg291132 +S'1938-1941' +p330732 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a000633c.jpg' +p330733 +sg291136 +g27 +sa(dp330734 +g291134 +S'Subway Portrait' +p330735 +sg291137 +S'Walker Evans' +p330736 +sg291130 +S'gelatin silver print' +p330737 +sg291132 +S'1938-1941' +p330738 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006365.jpg' +p330739 +sg291136 +g27 +sa(dp330740 +g291134 +S'Subway Portrait' +p330741 +sg291137 +S'Walker Evans' +p330742 +sg291130 +S'gelatin silver print' +p330743 +sg291132 +S'1938-1941' +p330744 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006358.jpg' +p330745 +sg291136 +g27 +sa(dp330746 +g291134 +S'Subway Portrait' +p330747 +sg291137 +S'Walker Evans' +p330748 +sg291130 +S'gelatin silver print' +p330749 +sg291132 +S'1938-1941' +p330750 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006339.jpg' +p330751 +sg291136 +g27 +sa(dp330752 +g291134 +S'Subway Portrait' +p330753 +sg291137 +S'Walker Evans' +p330754 +sg291130 +S'gelatin silver print' +p330755 +sg291132 +S'1938' +p330756 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006360.jpg' +p330757 +sg291136 +g27 +sa(dp330758 +g291134 +S'Subway Portrait' +p330759 +sg291137 +S'Walker Evans' +p330760 +sg291130 +S'gelatin silver print' +p330761 +sg291132 +S'1938-1941' +p330762 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006357.jpg' +p330763 +sg291136 +g27 +sa(dp330764 +g291134 +S'Subway Portrait' +p330765 +sg291137 +S'Walker Evans' +p330766 +sg291130 +S'gelatin silver print' +p330767 +sg291132 +S'1938-1941' +p330768 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006356.jpg' +p330769 +sg291136 +g27 +sa(dp330770 +g291134 +S'Subway Portrait' +p330771 +sg291137 +S'Walker Evans' +p330772 +sg291130 +S'gelatin silver print' +p330773 +sg291132 +S'1938-1941' +p330774 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006355.jpg' +p330775 +sg291136 +g27 +sa(dp330776 +g291134 +S'Subway Portrait' +p330777 +sg291137 +S'Walker Evans' +p330778 +sg291130 +S'gelatin silver print' +p330779 +sg291132 +S'1938-1941' +p330780 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006346.jpg' +p330781 +sg291136 +g27 +sa(dp330782 +g291134 +S'Subway Portrait' +p330783 +sg291137 +S'Walker Evans' +p330784 +sg291130 +S'gelatin silver print' +p330785 +sg291132 +S'1938-1941' +p330786 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006366.jpg' +p330787 +sg291136 +g27 +sa(dp330788 +g291134 +S'Subway Portrait' +p330789 +sg291137 +S'Walker Evans' +p330790 +sg291130 +S'gelatin silver print' +p330791 +sg291132 +S'1938-1941' +p330792 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a000633e.jpg' +p330793 +sg291136 +g27 +sa(dp330794 +g291134 +S'Subway Portrait' +p330795 +sg291137 +S'Walker Evans' +p330796 +sg291130 +S'gelatin silver print' +p330797 +sg291132 +S'1938-1941' +p330798 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a000635f.jpg' +p330799 +sg291136 +g27 +sa(dp330800 +g291134 +S'Subway Portrait' +p330801 +sg291137 +S'Walker Evans' +p330802 +sg291130 +S'gelatin silver print' +p330803 +sg291132 +S'1938-1941' +p330804 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006354.jpg' +p330805 +sg291136 +g27 +sa(dp330806 +g291134 +S'Subway Portrait' +p330807 +sg291137 +S'Walker Evans' +p330808 +sg291130 +S'gelatin silver print' +p330809 +sg291132 +S'1938-1941' +p330810 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006353.jpg' +p330811 +sg291136 +g27 +sa(dp330812 +g291134 +S'Subway Portrait' +p330813 +sg291137 +S'Walker Evans' +p330814 +sg291130 +S'gelatin silver print' +p330815 +sg291132 +S'1938-1941' +p330816 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006352.jpg' +p330817 +sg291136 +g27 +sa(dp330818 +g291134 +S'Subway Portrait' +p330819 +sg291137 +S'Walker Evans' +p330820 +sg291130 +S'gelatin silver print' +p330821 +sg291132 +S'1938-1941' +p330822 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a000635d.jpg' +p330823 +sg291136 +g27 +sa(dp330824 +g291134 +S'Subway Portrait' +p330825 +sg291137 +S'Walker Evans' +p330826 +sg291130 +S'gelatin silver print' +p330827 +sg291132 +S'1938-1941' +p330828 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a000634b.jpg' +p330829 +sg291136 +g27 +sa(dp330830 +g291134 +S'Subway Portrait' +p330831 +sg291137 +S'Walker Evans' +p330832 +sg291130 +S'gelatin silver print' +p330833 +sg291132 +S'1938-1941' +p330834 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a000634e.jpg' +p330835 +sg291136 +g27 +sa(dp330836 +g291134 +S'Subway Portrait' +p330837 +sg291137 +S'Walker Evans' +p330838 +sg291130 +S'gelatin silver print' +p330839 +sg291132 +S'1938-1941' +p330840 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a000633b.jpg' +p330841 +sg291136 +g27 +sa(dp330842 +g291134 +S'Subway Portrait' +p330843 +sg291137 +S'Walker Evans' +p330844 +sg291130 +S'gelatin silver print' +p330845 +sg291132 +S'1938-1941' +p330846 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006345.jpg' +p330847 +sg291136 +g27 +sa(dp330848 +g291134 +S'Subway Portrait' +p330849 +sg291137 +S'Walker Evans' +p330850 +sg291130 +S'gelatin silver print' +p330851 +sg291132 +S'1938-1941' +p330852 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006343.jpg' +p330853 +sg291136 +g27 +sa(dp330854 +g291134 +S'Subway Portrait' +p330855 +sg291137 +S'Walker Evans' +p330856 +sg291130 +S'gelatin silver print' +p330857 +sg291132 +S'1938-1941' +p330858 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006367.jpg' +p330859 +sg291136 +g27 +sa(dp330860 +g291134 +S'Subway Portrait' +p330861 +sg291137 +S'Walker Evans' +p330862 +sg291130 +S'gelatin silver print' +p330863 +sg291132 +S'1938-1941' +p330864 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a000634d.jpg' +p330865 +sg291136 +g27 +sa(dp330866 +g291134 +S'Subway Portrait' +p330867 +sg291137 +S'Walker Evans' +p330868 +sg291130 +S'gelatin silver print' +p330869 +sg291132 +S'1938-1941' +p330870 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a000635e.jpg' +p330871 +sg291136 +g27 +sa(dp330872 +g291130 +S'gelatin silver print' +p330873 +sg291132 +S'1938' +p330874 +sg291134 +S'Subway Portrait' +p330875 +sg291136 +g27 +sg291137 +S'Walker Evans' +p330876 +sa(dp330877 +g291134 +S'Subway Portrait' +p330878 +sg291137 +S'Walker Evans' +p330879 +sg291130 +S'gelatin silver print' +p330880 +sg291132 +S'1938-1941' +p330881 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a000634c.jpg' +p330882 +sg291136 +g27 +sa(dp330883 +g291134 +S'Subway Portrait' +p330884 +sg291137 +S'Walker Evans' +p330885 +sg291130 +S'gelatin silver print' +p330886 +sg291132 +S'1938-1941' +p330887 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a000635c.jpg' +p330888 +sg291136 +g27 +sa(dp330889 +g291134 +S'Subway Portrait' +p330890 +sg291137 +S'Walker Evans' +p330891 +sg291130 +S'gelatin silver print' +p330892 +sg291132 +S'1938-1941' +p330893 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006344.jpg' +p330894 +sg291136 +g27 +sa(dp330895 +g291134 +S'Subway Portrait' +p330896 +sg291137 +S'Walker Evans' +p330897 +sg291130 +S'gelatin silver print' +p330898 +sg291132 +S'1938-1941' +p330899 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006364.jpg' +p330900 +sg291136 +g27 +sa(dp330901 +g291134 +S'Subway Portrait' +p330902 +sg291137 +S'Walker Evans' +p330903 +sg291130 +S'gelatin silver print' +p330904 +sg291132 +S'1938-1941' +p330905 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006342.jpg' +p330906 +sg291136 +g27 +sa(dp330907 +g291134 +S'Subway Portrait' +p330908 +sg291137 +S'Walker Evans' +p330909 +sg291130 +S'gelatin silver print' +p330910 +sg291132 +S'1938-1941' +p330911 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006363.jpg' +p330912 +sg291136 +g27 +sa(dp330913 +g291134 +S'Subway Portrait' +p330914 +sg291137 +S'Walker Evans' +p330915 +sg291130 +S'gelatin silver print' +p330916 +sg291132 +S'1938-1941' +p330917 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006351.jpg' +p330918 +sg291136 +g27 +sa(dp330919 +g291134 +S'Subway Portrait' +p330920 +sg291137 +S'Walker Evans' +p330921 +sg291130 +S'gelatin silver print' +p330922 +sg291132 +S'1938-1941' +p330923 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a000635b.jpg' +p330924 +sg291136 +g27 +sa(dp330925 +g291134 +S'Subway Portrait' +p330926 +sg291137 +S'Walker Evans' +p330927 +sg291130 +S'gelatin silver print' +p330928 +sg291132 +S'1938-1941' +p330929 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a000635a.jpg' +p330930 +sg291136 +g27 +sa(dp330931 +g291134 +S'Subway Portrait' +p330932 +sg291137 +S'Walker Evans' +p330933 +sg291130 +S'gelatin silver print' +p330934 +sg291132 +S'1938-1941' +p330935 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a0006340.jpg' +p330936 +sg291136 +g27 +sa(dp330937 +g291134 +S'Subway Portrait' +p330938 +sg291137 +S'Walker Evans' +p330939 +sg291130 +S'gelatin silver print' +p330940 +sg291132 +S'1938-1941' +p330941 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064a1.jpg' +p330942 +sg291136 +g27 +sa(dp330943 +g291134 +S'Subway Portrait' +p330944 +sg291137 +S'Walker Evans' +p330945 +sg291130 +S'gelatin silver print' +p330946 +sg291132 +S'1938-1941' +p330947 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064a6.jpg' +p330948 +sg291136 +g27 +sa(dp330949 +g291134 +S'Subway Portrait' +p330950 +sg291137 +S'Walker Evans' +p330951 +sg291130 +S'gelatin silver print' +p330952 +sg291132 +S'1938-1941' +p330953 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064a5.jpg' +p330954 +sg291136 +g27 +sa(dp330955 +g291134 +S'Subway Portrait' +p330956 +sg291137 +S'Walker Evans' +p330957 +sg291130 +S'gelatin silver print' +p330958 +sg291132 +S'1938-1941' +p330959 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064a2.jpg' +p330960 +sg291136 +g27 +sa(dp330961 +g291134 +S'Subway Portrait' +p330962 +sg291137 +S'Walker Evans' +p330963 +sg291130 +S'gelatin silver print' +p330964 +sg291132 +S'1938-1941' +p330965 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064a7.jpg' +p330966 +sg291136 +g27 +sa(dp330967 +g291130 +S'gelatin silver print' +p330968 +sg291132 +S'1938' +p330969 +sg291134 +S'Subway Portrait' +p330970 +sg291136 +g27 +sg291137 +S'Walker Evans' +p330971 +sa(dp330972 +g291134 +S'Subway Portrait' +p330973 +sg291137 +S'Walker Evans' +p330974 +sg291130 +S'gelatin silver print' +p330975 +sg291132 +S'1938-1941' +p330976 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a000649d.jpg' +p330977 +sg291136 +g27 +sa(dp330978 +g291134 +S'Subway Portrait' +p330979 +sg291137 +S'Walker Evans' +p330980 +sg291130 +S'gelatin silver print' +p330981 +sg291132 +S'1938-1941' +p330982 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064a3.jpg' +p330983 +sg291136 +g27 +sa(dp330984 +g291134 +S'Pagan Void' +p330985 +sg291137 +S'Barnett Newman' +p330986 +sg291130 +S'oil on canvas' +p330987 +sg291132 +S'1946' +p330988 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000185.jpg' +p330989 +sg291136 +g27 +sa(dp330990 +g291134 +S'Dionysius' +p330991 +sg291137 +S'Barnett Newman' +p330992 +sg291130 +S'oil on canvas' +p330993 +sg291132 +S'1949' +p330994 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000186.jpg' +p330995 +sg291136 +g27 +sa(dp330996 +g291134 +S'Yellow Painting' +p330997 +sg291137 +S'Barnett Newman' +p330998 +sg291130 +S'oil on canvas' +p330999 +sg291132 +S'1949' +p331000 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000187.jpg' +p331001 +sg291136 +g27 +sa(dp331002 +g291134 +S'The Name II' +p331003 +sg291137 +S'Barnett Newman' +p331004 +sg291130 +S'Magna and oil on canvas' +p331005 +sg291132 +S'1950' +p331006 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000188.jpg' +p331007 +sg291136 +g27 +sa(dp331008 +g291134 +S'Achilles' +p331009 +sg291137 +S'Barnett Newman' +p331010 +sg291130 +S'oil and acrylic resin on canvas' +p331011 +sg291132 +S'1952' +p331012 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000189.jpg' +p331013 +sg291136 +S'Barnett Newman is best known for the monumental paintings he began making in the late\n 1940s which incorporate unified fields of color that have been demarcated into zones by vertical,\n or occasionally, horizontal, stripes the artist called "zips." The zip was a\n compositional fulcrum, a source of movement, division, and measurement, as well as a carrier of\n often metaphysical meaning.\n Achilles\n It was not unusual for Newman to use titles from the Bible or Greek mythology. He likened\n the "red and fiery" shape in \n ' +p331014 +sa(dp331015 +g291130 +S'black ink and lithograph on paper glued to sheets of foamcore' +p331016 +sg291132 +S'1983' +p331017 +sg291134 +S'Maquette for "La Scienza della Fiacca"' +p331018 +sg291136 +g27 +sg291137 +S'Frank Stella' +p331019 +sa(dp331020 +g291130 +S'French, 1699 - 1773' +p331021 +sg291132 +S'(artist after)' +p331022 +sg291134 +S'Almanach iconologique: Les arts (volume I)' +p331023 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331024 +sa(dp331025 +g291130 +S'(artist after)' +p331026 +sg291132 +S'\n' +p331027 +sg291134 +S'Title Page' +p331028 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331029 +sa(dp331030 +g291130 +S'(artist after)' +p331031 +sg291132 +S'\n' +p331032 +sg291134 +S'Frontispiece' +p331033 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331034 +sa(dp331035 +g291130 +S'(artist after)' +p331036 +sg291132 +S'\n' +p331037 +sg291134 +S'Agriculture' +p331038 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331039 +sa(dp331040 +g291130 +S'(artist after)' +p331041 +sg291132 +S'\n' +p331042 +sg291134 +S'Poesie' +p331043 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331044 +sa(dp331045 +g291130 +S'(artist after)' +p331046 +sg291132 +S'\n' +p331047 +sg291134 +S'Musique' +p331048 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331049 +sa(dp331050 +g291130 +S'(artist after)' +p331051 +sg291132 +S'\n' +p331052 +sg291134 +S'Danse' +p331053 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331054 +sa(dp331055 +g291130 +S'(artist after)' +p331056 +sg291132 +S'\n' +p331057 +sg291134 +S'Eloquence' +p331058 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331059 +sa(dp331060 +g291130 +S'(artist after)' +p331061 +sg291132 +S'\n' +p331062 +sg291134 +S'Ecriture' +p331063 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331064 +sa(dp331065 +g291130 +S'(artist after)' +p331066 +sg291132 +S'\n' +p331067 +sg291134 +S'Architecture' +p331068 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331069 +sa(dp331070 +g291130 +S'(artist)' +p331071 +sg291132 +S'\n' +p331072 +sg291134 +S'Sculpture' +p331073 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331074 +sa(dp331075 +g291130 +S'(artist after)' +p331076 +sg291132 +S'\n' +p331077 +sg291134 +S'Peinture' +p331078 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331079 +sa(dp331080 +g291130 +S'(artist after)' +p331081 +sg291132 +S'\n' +p331082 +sg291134 +S'Navigation' +p331083 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331084 +sa(dp331085 +g291130 +S'(artist after)' +p331086 +sg291132 +S'\n' +p331087 +sg291134 +S'Art militaire' +p331088 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331089 +sa(dp331090 +g291130 +S'(artist after)' +p331091 +sg291132 +S'\n' +p331092 +sg291134 +S'Chirurgie' +p331093 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331094 +sa(dp331095 +g291130 +S'French, 1699 - 1773' +p331096 +sg291132 +S'(artist after)' +p331097 +sg291134 +S'Almanach iconologique: Les arts (volume II)' +p331098 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331099 +sa(dp331100 +g291130 +S'(artist after)' +p331101 +sg291132 +S'\n' +p331102 +sg291134 +S'Title Page' +p331103 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331104 +sa(dp331105 +g291130 +S'(artist after)' +p331106 +sg291132 +S'\n' +p331107 +sg291134 +S'Frontispiece' +p331108 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331109 +sa(dp331110 +g291130 +S'(artist after)' +p331111 +sg291132 +S'\n' +p331112 +sg291134 +S'Agriculture' +p331113 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331114 +sa(dp331115 +g291130 +S'(artist after)' +p331116 +sg291132 +S'\n' +p331117 +sg291134 +S'Poesie' +p331118 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331119 +sa(dp331120 +g291130 +S'(artist after)' +p331121 +sg291132 +S'\n' +p331122 +sg291134 +S'Musique' +p331123 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331124 +sa(dp331125 +g291130 +S'(artist after)' +p331126 +sg291132 +S'\n' +p331127 +sg291134 +S'Danse' +p331128 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331129 +sa(dp331130 +g291130 +S'(artist after)' +p331131 +sg291132 +S'\n' +p331132 +sg291134 +S'Eloquence' +p331133 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331134 +sa(dp331135 +g291130 +S'(artist after)' +p331136 +sg291132 +S'\n' +p331137 +sg291134 +S'Ecriture' +p331138 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331139 +sa(dp331140 +g291130 +S'(artist after)' +p331141 +sg291132 +S'\n' +p331142 +sg291134 +S'Architecture' +p331143 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331144 +sa(dp331145 +g291130 +S'(artist)' +p331146 +sg291132 +S'\n' +p331147 +sg291134 +S'Sculpture' +p331148 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331149 +sa(dp331150 +g291130 +S'(artist after)' +p331151 +sg291132 +S'\n' +p331152 +sg291134 +S'Peinture' +p331153 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331154 +sa(dp331155 +g291130 +S'(artist after)' +p331156 +sg291132 +S'\n' +p331157 +sg291134 +S'Navigation' +p331158 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331159 +sa(dp331160 +g291130 +S'(artist after)' +p331161 +sg291132 +S'\n' +p331162 +sg291134 +S'Art militaire' +p331163 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331164 +sa(dp331165 +g291130 +S'(artist after)' +p331166 +sg291132 +S'\n' +p331167 +sg291134 +S'Chirurgie' +p331168 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331169 +sa(dp331170 +g291130 +S'French, 1699 - 1773' +p331171 +sg291132 +S'(artist after)' +p331172 +sg291134 +S'Almanach iconologique: Les sciences (volume III)' +p331173 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331174 +sa(dp331175 +g291130 +S'(artist after)' +p331176 +sg291132 +S'\n' +p331177 +sg291134 +S'Title Page' +p331178 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331179 +sa(dp331180 +g291130 +S'(artist after)' +p331181 +sg291132 +S'\n' +p331182 +sg291134 +S"L'etude" +p331183 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331184 +sa(dp331185 +g291130 +S'(artist after)' +p331186 +sg291132 +S'\n' +p331187 +sg291134 +S'Grammaire' +p331188 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331189 +sa(dp331190 +g291130 +S'(artist after)' +p331191 +sg291132 +S'\n' +p331192 +sg291134 +S'Logique' +p331193 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331194 +sa(dp331195 +g291130 +S'(artist after)' +p331196 +sg291132 +S'\n' +p331197 +sg291134 +S'Mathematique' +p331198 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331199 +sa(dp331200 +g291130 +S'(artist after)' +p331201 +sg291132 +S'\n' +p331202 +sg291134 +S"L'histoire" +p331203 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331204 +sa(dp331205 +g291130 +S'(artist after)' +p331206 +sg291132 +S'\n' +p331207 +sg291134 +S'Medecine' +p331208 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331209 +sa(dp331210 +g291130 +S'(artist after)' +p331211 +sg291132 +S'\n' +p331212 +sg291134 +S'Theologie' +p331213 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331214 +sa(dp331215 +g291130 +S'sheet: 11.2 x 6.6 cm (4 7/16 x 2 5/8 in.)' +p331216 +sg291132 +S'\netching and engraving on laid paper' +p331217 +sg291134 +S'Tail-piece' +p331218 +sg291136 +g27 +sg291137 +S'French 18th Century' +p331219 +sa(dp331220 +g291130 +S'French, 1699 - 1773' +p331221 +sg291132 +S'(artist after)' +p331222 +sg291134 +S'Almanach iconologique: Les vertus (volume IV)' +p331223 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331224 +sa(dp331225 +g291130 +S'sheet: 11.2 x 6.6 cm (4 7/16 x 2 5/8 in.)' +p331226 +sg291132 +S'\netching and engraving on laid paper' +p331227 +sg291134 +S'Title Page' +p331228 +sg291136 +g27 +sg291137 +S'French 18th Century' +p331229 +sa(dp331230 +g291130 +S'French, 1699 - 1773' +p331231 +sg291132 +S'(artist after)' +p331232 +sg291134 +S'Verite' +p331233 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331234 +sa(dp331235 +g291130 +S'(artist after)' +p331236 +sg291132 +S'\n' +p331237 +sg291134 +S'Raison' +p331238 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331239 +sa(dp331240 +g291130 +S'(artist after)' +p331241 +sg291132 +S'\n' +p331242 +sg291134 +S'Liberte' +p331243 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331244 +sa(dp331245 +g291130 +S'(artist after)' +p331246 +sg291132 +S'\n' +p331247 +sg291134 +S'Sagesse' +p331248 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331249 +sa(dp331250 +g291130 +S'(artist after)' +p331251 +sg291132 +S'\n' +p331252 +sg291134 +S'Loy' +p331253 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331254 +sa(dp331255 +g291130 +S'(artist after)' +p331256 +sg291132 +S'\n' +p331257 +sg291134 +S'Justice' +p331258 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331259 +sa(dp331260 +g291130 +S'(artist after)' +p331261 +sg291132 +S'\n' +p331262 +sg291134 +S'Force' +p331263 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331264 +sa(dp331265 +g291130 +S'(artist after)' +p331266 +sg291132 +S'\n' +p331267 +sg291134 +S'Prudence' +p331268 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331269 +sa(dp331270 +g291130 +S'(artist after)' +p331271 +sg291132 +S'\n' +p331272 +sg291134 +S'Religion' +p331273 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331274 +sa(dp331275 +g291130 +S'(artist after)' +p331276 +sg291132 +S'\n' +p331277 +sg291134 +S'Foy' +p331278 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331279 +sa(dp331280 +g291130 +S'(artist after)' +p331281 +sg291132 +S'\n' +p331282 +sg291134 +S'Esperance' +p331283 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331284 +sa(dp331285 +g291130 +S'(artist after)' +p331286 +sg291132 +S'\n' +p331287 +sg291134 +S'Charite' +p331288 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331289 +sa(dp331290 +g291130 +S'French, 1699 - 1773' +p331291 +sg291132 +S'(artist after)' +p331292 +sg291134 +S'Almanach iconologique: Les etres metaphisiques (volume V)' +p331293 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331294 +sa(dp331295 +g291130 +S'(artist after)' +p331296 +sg291132 +S'\n' +p331297 +sg291134 +S'Hubert Francois Gravelot' +p331298 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331299 +sa(dp331300 +g291130 +S'(artist after)' +p331301 +sg291132 +S'\n' +p331302 +sg291134 +S'Title Page' +p331303 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331304 +sa(dp331305 +g291130 +S'(artist after)' +p331306 +sg291132 +S'\n' +p331307 +sg291134 +S'Nature' +p331308 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331309 +sa(dp331310 +g291130 +S'(artist after)' +p331311 +sg291132 +S'\n' +p331312 +sg291134 +S'Instinct' +p331313 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331314 +sa(dp331315 +g291130 +S'(artist after)' +p331316 +sg291132 +S'\n' +p331317 +sg291134 +S'Genie' +p331318 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331319 +sa(dp331320 +g291130 +S'(artist after)' +p331321 +sg291132 +S'\n' +p331322 +sg291134 +S'Art' +p331323 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331324 +sa(dp331325 +g291130 +S'(artist after)' +p331326 +sg291132 +S'\n' +p331327 +sg291134 +S'Theorie' +p331328 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331329 +sa(dp331330 +g291130 +S'(artist after)' +p331331 +sg291132 +S'\n' +p331332 +sg291134 +S'Pratique' +p331333 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331334 +sa(dp331335 +g291130 +S'(artist after)' +p331336 +sg291132 +S'\n' +p331337 +sg291134 +S'Memoire' +p331338 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331339 +sa(dp331340 +g291130 +S'(artist after)' +p331341 +sg291132 +S'\n' +p331342 +sg291134 +S'Jugement' +p331343 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331344 +sa(dp331345 +g291130 +S'(artist after)' +p331346 +sg291132 +S'\n' +p331347 +sg291134 +S'Imagination' +p331348 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331349 +sa(dp331350 +g291130 +S'(artist after)' +p331351 +sg291132 +S'\n' +p331352 +sg291134 +S'Doctrine' +p331353 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331354 +sa(dp331355 +g291130 +S'(artist after)' +p331356 +sg291132 +S'\n' +p331357 +sg291134 +S'Science' +p331358 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331359 +sa(dp331360 +g291130 +S'(artist after)' +p331361 +sg291132 +S'\n' +p331362 +sg291134 +S'Societe' +p331363 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331364 +sa(dp331365 +g291130 +S'French, 1699 - 1773' +p331366 +sg291132 +S'(artist after)' +p331367 +sg291134 +S'Almanach iconologique: Les muses (volume VI)' +p331368 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331369 +sa(dp331370 +g291130 +S'(artist after)' +p331371 +sg291132 +S'\n' +p331372 +sg291134 +S'Hubert Francois Gravelot' +p331373 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331374 +sa(dp331375 +g291130 +S'(artist after)' +p331376 +sg291132 +S'\n' +p331377 +sg291134 +S'Title Page' +p331378 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331379 +sa(dp331380 +g291130 +S'(artist after)' +p331381 +sg291132 +S'\n' +p331382 +sg291134 +S'Les muses' +p331383 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331384 +sa(dp331385 +g291130 +S'(artist after)' +p331386 +sg291132 +S'\n' +p331387 +sg291134 +S'Apollon' +p331388 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331389 +sa(dp331390 +g291130 +S'(artist after)' +p331391 +sg291132 +S'\n' +p331392 +sg291134 +S'Clio' +p331393 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331394 +sa(dp331395 +g291130 +S'(artist after)' +p331396 +sg291132 +S'\n' +p331397 +sg291134 +S'Melpomene' +p331398 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331399 +sa(dp331400 +g291130 +S'(artist after)' +p331401 +sg291132 +S'\n' +p331402 +sg291134 +S'Thalie' +p331403 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331404 +sa(dp331405 +g291130 +S'(artist after)' +p331406 +sg291132 +S'\n' +p331407 +sg291134 +S'Euterpe' +p331408 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331409 +sa(dp331410 +g291130 +S'(artist after)' +p331411 +sg291132 +S'\n' +p331412 +sg291134 +S'Terpsicore' +p331413 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331414 +sa(dp331415 +g291130 +S'(artist after)' +p331416 +sg291132 +S'\n' +p331417 +sg291134 +S'Erato' +p331418 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331419 +sa(dp331420 +g291130 +S'(artist after)' +p331421 +sg291132 +S'\n' +p331422 +sg291134 +S'Calliope' +p331423 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331424 +sa(dp331425 +g291130 +S'(artist after)' +p331426 +sg291132 +S'\n' +p331427 +sg291134 +S'Vranie' +p331428 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331429 +sa(dp331430 +g291130 +S'(artist after)' +p331431 +sg291132 +S'\n' +p331432 +sg291134 +S'Polymnie' +p331433 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331434 +sa(dp331435 +g291130 +S'French, 1699 - 1773' +p331436 +sg291132 +S'(artist after)' +p331437 +sg291134 +S'Almanach iconologique: Les elemens (volume VII)' +p331438 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331439 +sa(dp331440 +g291130 +S'(artist after)' +p331441 +sg291132 +S'\n' +p331442 +sg291134 +S'Title Page' +p331443 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331444 +sa(dp331445 +g291130 +S'(artist after)' +p331446 +sg291132 +S'\n' +p331447 +sg291134 +S"L'air" +p331448 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331449 +sa(dp331450 +g291130 +S'(artist after)' +p331451 +sg291132 +S'\n' +p331452 +sg291134 +S"L'eau" +p331453 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331454 +sa(dp331455 +g291130 +S'(artist after)' +p331456 +sg291132 +S'\n' +p331457 +sg291134 +S'La terre' +p331458 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331459 +sa(dp331460 +g291130 +S'(artist after)' +p331461 +sg291132 +S'\n' +p331462 +sg291134 +S'Le feu' +p331463 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331464 +sa(dp331465 +g291130 +S'(artist after)' +p331466 +sg291132 +S'\n' +p331467 +sg291134 +S"L'asie" +p331468 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331469 +sa(dp331470 +g291130 +S'(artist after)' +p331471 +sg291132 +S'\n' +p331472 +sg291134 +S"L'afrique" +p331473 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331474 +sa(dp331475 +g291130 +S'(artist after)' +p331476 +sg291132 +S'\n' +p331477 +sg291134 +S"L'europe" +p331478 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331479 +sa(dp331480 +g291130 +S'(artist after)' +p331481 +sg291132 +S'\n' +p331482 +sg291134 +S"L'amerique" +p331483 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331484 +sa(dp331485 +g291130 +S'(artist after)' +p331486 +sg291132 +S'\n' +p331487 +sg291134 +S'Le printems' +p331488 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331489 +sa(dp331490 +g291130 +S'(artist after)' +p331491 +sg291132 +S'\n' +p331492 +sg291134 +S"L'ete" +p331493 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331494 +sa(dp331495 +g291130 +S'(artist after)' +p331496 +sg291132 +S'\n' +p331497 +sg291134 +S"L'automne" +p331498 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331499 +sa(dp331500 +g291130 +S'(artist after)' +p331501 +sg291132 +S'\n' +p331502 +sg291134 +S"L'hiver" +p331503 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331504 +sa(dp331505 +g291130 +S'French, 1699 - 1773' +p331506 +sg291132 +S'(artist after)' +p331507 +sg291134 +S'Almanach iconologique: Les XII. mois (volume VIII)' +p331508 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331509 +sa(dp331510 +g291130 +S'(artist after)' +p331511 +sg291132 +S'\n' +p331512 +sg291134 +S'Title Page' +p331513 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331514 +sa(dp331515 +g291130 +S'(artist after)' +p331516 +sg291132 +S'\n' +p331517 +sg291134 +S'Janvier' +p331518 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331519 +sa(dp331520 +g291130 +S'(artist after)' +p331521 +sg291132 +S'\n' +p331522 +sg291134 +S'Fevrier' +p331523 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331524 +sa(dp331525 +g291130 +S'(artist after)' +p331526 +sg291132 +S'\n' +p331527 +sg291134 +S'Mars' +p331528 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331529 +sa(dp331530 +g291130 +S'(artist after)' +p331531 +sg291132 +S'\n' +p331532 +sg291134 +S'Avril' +p331533 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331534 +sa(dp331535 +g291130 +S'(artist after)' +p331536 +sg291132 +S'\n' +p331537 +sg291134 +S'May' +p331538 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331539 +sa(dp331540 +g291130 +S'(artist after)' +p331541 +sg291132 +S'\n' +p331542 +sg291134 +S'Juin' +p331543 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331544 +sa(dp331545 +g291130 +S'French, 1699 - 1773' +p331546 +sg291132 +S'(artist after)' +p331547 +sg291134 +S'Juillet' +p331548 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331549 +sa(dp331550 +g291130 +S'(artist after)' +p331551 +sg291132 +S'\n' +p331552 +sg291134 +S'Aoust' +p331553 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331554 +sa(dp331555 +g291130 +S'(artist after)' +p331556 +sg291132 +S'\n' +p331557 +sg291134 +S'Septembre' +p331558 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331559 +sa(dp331560 +g291130 +S'(artist after)' +p331561 +sg291132 +S'\n' +p331562 +sg291134 +S'Octobre' +p331563 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331564 +sa(dp331565 +g291130 +S'(artist after)' +p331566 +sg291132 +S'\n' +p331567 +sg291134 +S'Novembre' +p331568 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331569 +sa(dp331570 +g291130 +S'(artist after)' +p331571 +sg291132 +S'\n' +p331572 +sg291134 +S'Decembre' +p331573 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331574 +sa(dp331575 +g291130 +S'French, 1699 - 1773' +p331576 +sg291132 +S'(artist after)' +p331577 +sg291134 +S"Almanach iconologique: L'homme (volume IX)" +p331578 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331579 +sa(dp331580 +g291130 +S'sheet: 11.2 x 6.6 cm (4 7/16 x 2 5/8 in.)' +p331581 +sg291132 +S'\netching and engraving on laid paper' +p331582 +sg291134 +S'Title Page' +p331583 +sg291136 +g27 +sg291137 +S'French 18th Century' +p331584 +sa(dp331585 +g291130 +S'(artist after)' +p331586 +sg291132 +S'\n' +p331587 +sg291134 +S'La vue' +p331588 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331589 +sa(dp331590 +g291130 +S'(artist after)' +p331591 +sg291132 +S'\n' +p331592 +sg291134 +S"L'ouie" +p331593 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331594 +sa(dp331595 +g291130 +S'(artist after)' +p331596 +sg291132 +S'\n' +p331597 +sg291134 +S"L'odorat" +p331598 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331599 +sa(dp331600 +g291130 +S'(artist after)' +p331601 +sg291132 +S'\n' +p331602 +sg291134 +S'Le gout' +p331603 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331604 +sa(dp331605 +g291130 +S'(artist after)' +p331606 +sg291132 +S'\n' +p331607 +sg291134 +S'Le toucher' +p331608 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331609 +sa(dp331610 +g291130 +S'(artist after)' +p331611 +sg291132 +S'\n' +p331612 +sg291134 +S'Le plaiser' +p331613 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331614 +sa(dp331615 +g291130 +S'(artist after)' +p331616 +sg291132 +S'\n' +p331617 +sg291134 +S'Douleur' +p331618 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331619 +sa(dp331620 +g291130 +S'(artist after)' +p331621 +sg291132 +S'\n' +p331622 +sg291134 +S'Experience' +p331623 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331624 +sa(dp331625 +g291130 +S'(artist after)' +p331626 +sg291132 +S'\n' +p331627 +sg291134 +S'Le colerique' +p331628 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331629 +sa(dp331630 +g291130 +S'(artist after)' +p331631 +sg291132 +S'\n' +p331632 +sg291134 +S'Le sanguin' +p331633 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331634 +sa(dp331635 +g291130 +S'(artist after)' +p331636 +sg291132 +S'\n' +p331637 +sg291134 +S'Le flegmatique' +p331638 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331639 +sa(dp331640 +g291130 +S'(artist after)' +p331641 +sg291132 +S'\n' +p331642 +sg291134 +S'Le melancholique' +p331643 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331644 +sa(dp331645 +g291130 +S'French, 1699 - 1773' +p331646 +sg291132 +S'(artist after)' +p331647 +sg291134 +S'Almanach iconologique: Les etres moraux (volume X)' +p331648 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331649 +sa(dp331650 +g291130 +S'(artist after)' +p331651 +sg291132 +S'\n' +p331652 +sg291134 +S'Title Page' +p331653 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331654 +sa(dp331655 +g291130 +S'(artist after)' +p331656 +sg291132 +S'\n' +p331657 +sg291134 +S'Intelligence' +p331658 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331659 +sa(dp331660 +g291130 +S'(artist after)' +p331661 +sg291132 +S'\n' +p331662 +sg291134 +S'Occasion' +p331663 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331664 +sa(dp331665 +g291130 +S'(artist after)' +p331666 +sg291132 +S'\n' +p331667 +sg291134 +S'Fortune' +p331668 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331669 +sa(dp331670 +g291130 +S'(artist after)' +p331671 +sg291132 +S'\n' +p331672 +sg291134 +S'Noblesse' +p331673 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331674 +sa(dp331675 +g291130 +S'(artist after)' +p331676 +sg291132 +S'\n' +p331677 +sg291134 +S'Gloire' +p331678 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331679 +sa(dp331680 +g291130 +S'(artist after)' +p331681 +sg291132 +S'\n' +p331682 +sg291134 +S'Renomee' +p331683 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331684 +sa(dp331685 +g291130 +S'(artist after)' +p331686 +sg291132 +S'\n' +p331687 +sg291134 +S'Paix' +p331688 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331689 +sa(dp331690 +g291130 +S'(artist after)' +p331691 +sg291132 +S'\n' +p331692 +sg291134 +S'Abondance' +p331693 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331694 +sa(dp331695 +g291130 +S'(artist after)' +p331696 +sg291132 +S'\n' +p331697 +sg291134 +S'Amitie' +p331698 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331699 +sa(dp331700 +g291130 +S'(artist after)' +p331701 +sg291132 +S'\n' +p331702 +sg291134 +S'Fidelite' +p331703 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331704 +sa(dp331705 +g291130 +S'(artist after)' +p331706 +sg291132 +S'\n' +p331707 +sg291134 +S'Secret' +p331708 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331709 +sa(dp331710 +g291130 +S'(artist after)' +p331711 +sg291132 +S'\n' +p331712 +sg291134 +S'Indigence' +p331713 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331714 +sa(dp331715 +g291130 +S'French, 1715 - 1790' +p331716 +sg291132 +S'(artist after)' +p331717 +sg291134 +S'Almanach iconologique: Les sciences (volume XI)' +p331718 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331719 +sa(dp331720 +g291130 +S'sheet: 11.2 x 6.6 cm (4 7/16 x 2 5/8 in.)' +p331721 +sg291132 +S'\netching and engraving on laid paper' +p331722 +sg291134 +S'Title Page' +p331723 +sg291136 +g27 +sg291137 +S'French 18th Century' +p331724 +sa(dp331725 +g291130 +S'(artist after)' +p331726 +sg291132 +S'\n' +p331727 +sg291134 +S'Theologie' +p331728 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331729 +sa(dp331730 +g291130 +S'(artist after)' +p331731 +sg291132 +S'\n' +p331732 +sg291134 +S'La metaphysique' +p331733 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331734 +sa(dp331735 +g291130 +S'(artist after)' +p331736 +sg291132 +S'\n' +p331737 +sg291134 +S'Rhetorique' +p331738 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331739 +sa(dp331740 +g291130 +S'(artist after)' +p331741 +sg291132 +S'\n' +p331742 +sg291134 +S'La physique' +p331743 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331744 +sa(dp331745 +g291130 +S'(artist after)' +p331746 +sg291132 +S'\n' +p331747 +sg291134 +S"L'astronomie" +p331748 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331749 +sa(dp331750 +g291130 +S'(artist after)' +p331751 +sg291132 +S'\n' +p331752 +sg291134 +S"L'arithmetique" +p331753 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331754 +sa(dp331755 +g291130 +S'(artist after)' +p331756 +sg291132 +S'\n' +p331757 +sg291134 +S'Geometrie' +p331758 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331759 +sa(dp331760 +g291130 +S'(artist after)' +p331761 +sg291132 +S'\n' +p331762 +sg291134 +S'La chimie' +p331763 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331764 +sa(dp331765 +g291130 +S'(artist after)' +p331766 +sg291132 +S'\n' +p331767 +sg291134 +S'La botanique' +p331768 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331769 +sa(dp331770 +g291130 +S'(artist after)' +p331771 +sg291132 +S'\n' +p331772 +sg291134 +S"L'optique" +p331773 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331774 +sa(dp331775 +g291130 +S'(artist after)' +p331776 +sg291132 +S'\n' +p331777 +sg291134 +S'La perspective' +p331778 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331779 +sa(dp331780 +g291130 +S'(artist after)' +p331781 +sg291132 +S'\n' +p331782 +sg291134 +S'La mechanique' +p331783 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331784 +sa(dp331785 +g291130 +S'French, 1715 - 1790' +p331786 +sg291132 +S'(artist after)' +p331787 +sg291134 +S'Almanach iconologique: Les vertus et les vices (volume XII)' +p331788 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331789 +sa(dp331790 +g291130 +S'sheet: 11.2 x 6.6 cm (4 7/16 x 2 5/8 in.)' +p331791 +sg291132 +S'\netching and engraving on laid paper' +p331792 +sg291134 +S'Title Page' +p331793 +sg291136 +g27 +sg291137 +S'French 18th Century' +p331794 +sa(dp331795 +g291130 +S'(artist after)' +p331796 +sg291132 +S'\n' +p331797 +sg291134 +S"L'abstinence" +p331798 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331799 +sa(dp331800 +g291130 +S'(artist after)' +p331801 +sg291132 +S'\n' +p331802 +sg291134 +S"L'affabilite" +p331803 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331804 +sa(dp331805 +g291130 +S'(artist after)' +p331806 +sg291132 +S'\n' +p331807 +sg291134 +S"L'affection" +p331808 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331809 +sa(dp331810 +g291130 +S'(artist after)' +p331811 +sg291132 +S'\n' +p331812 +sg291134 +S"L'amitie" +p331813 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331814 +sa(dp331815 +g291130 +S'(artist after)' +p331816 +sg291132 +S'\n' +p331817 +sg291134 +S"L'allegresse" +p331818 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331819 +sa(dp331820 +g291130 +S'(artist after)' +p331821 +sg291132 +S'\n' +p331822 +sg291134 +S'La benignite' +p331823 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331824 +sa(dp331825 +g291130 +S'(artist after)' +p331826 +sg291132 +S'\n' +p331827 +sg291134 +S'La celerite' +p331828 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331829 +sa(dp331830 +g291130 +S'(artist after)' +p331831 +sg291132 +S'\n' +p331832 +sg291134 +S'La chastete' +p331833 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331834 +sa(dp331835 +g291130 +S'(artist after)' +p331836 +sg291132 +S'\n' +p331837 +sg291134 +S'La clemence' +p331838 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331839 +sa(dp331840 +g291130 +S'(artist after)' +p331841 +sg291132 +S'\n' +p331842 +sg291134 +S'La concorde' +p331843 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331844 +sa(dp331845 +g291130 +S'(artist after)' +p331846 +sg291132 +S'\n' +p331847 +sg291134 +S'La confiance' +p331848 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331849 +sa(dp331850 +g291130 +S'(artist after)' +p331851 +sg291132 +S'\n' +p331852 +sg291134 +S'La constance' +p331853 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331854 +sa(dp331855 +g291130 +S'French, 1715 - 1790' +p331856 +sg291132 +S'(artist after)' +p331857 +sg291134 +S'Almanach iconologique: Les vertus et les vices (volume XIII)' +p331858 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331859 +sa(dp331860 +g291130 +S'sheet: 11.2 x 6.6 cm (4 7/16 x 2 5/8 in.)' +p331861 +sg291132 +S'\netching and engraving on laid paper' +p331862 +sg291134 +S'Title Page' +p331863 +sg291136 +g27 +sg291137 +S'French 18th Century' +p331864 +sa(dp331865 +g291130 +S'(artist after)' +p331866 +sg291132 +S'\n' +p331867 +sg291134 +S'Le courage' +p331868 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331869 +sa(dp331870 +g291130 +S'(artist after)' +p331871 +sg291132 +S'\n' +p331872 +sg291134 +S'Le desir' +p331873 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331874 +sa(dp331875 +g291130 +S'(artist after)' +p331876 +sg291132 +S'\n' +p331877 +sg291134 +S'La devotion' +p331878 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331879 +sa(dp331880 +g291130 +S'(artist after)' +p331881 +sg291132 +S'\n' +p331882 +sg291134 +S'La discretion' +p331883 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331884 +sa(dp331885 +g291130 +S'(artist after)' +p331886 +sg291132 +S'\n' +p331887 +sg291134 +S'La docilite' +p331888 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331889 +sa(dp331890 +g291130 +S'(artist after)' +p331891 +sg291132 +S'\n' +p331892 +sg291134 +S'La douceur' +p331893 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331894 +sa(dp331895 +g291130 +S'(artist after)' +p331896 +sg291132 +S'\n' +p331897 +sg291134 +S"L'economie" +p331898 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331899 +sa(dp331900 +g291130 +S'(artist after)' +p331901 +sg291132 +S'\n' +p331902 +sg291134 +S"L'education" +p331903 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331904 +sa(dp331905 +g291130 +S'(artist after)' +p331906 +sg291132 +S'\n' +p331907 +sg291134 +S"L'emulation" +p331908 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331909 +sa(dp331910 +g291130 +S'(artist after)' +p331911 +sg291132 +S'\n' +p331912 +sg291134 +S"L'equite" +p331913 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331914 +sa(dp331915 +g291130 +S'(artist after)' +p331916 +sg291132 +S'\n' +p331917 +sg291134 +S"L'esperance" +p331918 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331919 +sa(dp331920 +g291130 +S'(artist after)' +p331921 +sg291132 +S'\n' +p331922 +sg291134 +S"L'eternite" +p331923 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331924 +sa(dp331925 +g291130 +S'French, 1715 - 1790' +p331926 +sg291132 +S'(artist after)' +p331927 +sg291134 +S'Almanach iconologique: Les vertus et les vices (volume XIV)' +p331928 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331929 +sa(dp331930 +g291130 +S'sheet: 11.2 x 6.6 cm (4 7/16 x 2 5/8 in.)' +p331931 +sg291132 +S'\netching and engraving on laid paper' +p331932 +sg291134 +S'Title Page' +p331933 +sg291136 +g27 +sg291137 +S'French 18th Century' +p331934 +sa(dp331935 +g291130 +S'(artist after)' +p331936 +sg291132 +S'\n' +p331937 +sg291134 +S'Fecondite' +p331938 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331939 +sa(dp331940 +g291130 +S'(artist after)' +p331941 +sg291132 +S'\n' +p331942 +sg291134 +S'La felicite' +p331943 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331944 +sa(dp331945 +g291130 +S'(artist after)' +p331946 +sg291132 +S'\n' +p331947 +sg291134 +S'La fidelite' +p331948 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331949 +sa(dp331950 +g291130 +S'(artist after)' +p331951 +sg291132 +S'\n' +p331952 +sg291134 +S'La finesse' +p331953 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331954 +sa(dp331955 +g291130 +S'(artist after)' +p331956 +sg291132 +S'\n' +p331957 +sg291134 +S'La generosite' +p331958 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331959 +sa(dp331960 +g291130 +S'(artist after)' +p331961 +sg291132 +S'\n' +p331962 +sg291134 +S'La genie' +p331963 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331964 +sa(dp331965 +g291130 +S'(artist after)' +p331966 +sg291132 +S'\n' +p331967 +sg291134 +S'Gouvernemens' +p331968 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331969 +sa(dp331970 +g291130 +S'(artist after)' +p331971 +sg291132 +S'\n' +p331972 +sg291134 +S'La grace' +p331973 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331974 +sa(dp331975 +g291130 +S'(artist after)' +p331976 +sg291132 +S'\n' +p331977 +sg291134 +S'Les graces' +p331978 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331979 +sa(dp331980 +g291130 +S'(artist after)' +p331981 +sg291132 +S'\n' +p331982 +sg291134 +S'La gratitude' +p331983 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331984 +sa(dp331985 +g291130 +S'(artist after)' +p331986 +sg291132 +S'\n' +p331987 +sg291134 +S'La gravite' +p331988 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331989 +sa(dp331990 +g291130 +S'(artist after)' +p331991 +sg291132 +S'\n' +p331992 +sg291134 +S'La guerre' +p331993 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331994 +sa(dp331995 +g291130 +S'French, 1715 - 1790' +p331996 +sg291132 +S'(artist after)' +p331997 +sg291134 +S'Almanach iconologique: Les vertus et les vices (volume XV)' +p331998 +sg291136 +g27 +sg291137 +S'Artist Information (' +p331999 +sa(dp332000 +g291130 +S'sheet: 11.2 x 6.6 cm (4 7/16 x 2 5/8 in.)' +p332001 +sg291132 +S'\netching and engraving on laid paper' +p332002 +sg291134 +S'Title Page' +p332003 +sg291136 +g27 +sg291137 +S'French 18th Century' +p332004 +sa(dp332005 +g291130 +S'(artist after)' +p332006 +sg291132 +S'\n' +p332007 +sg291134 +S"L'himen" +p332008 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332009 +sa(dp332010 +g291130 +S'(artist after)' +p332011 +sg291132 +S'\n' +p332012 +sg291134 +S"L'humanite" +p332013 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332014 +sa(dp332015 +g291130 +S'(artist after)' +p332016 +sg291132 +S'\n' +p332017 +sg291134 +S"L'humilite" +p332018 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332019 +sa(dp332020 +g291130 +S'(artist after)' +p332021 +sg291132 +S'\n' +p332022 +sg291134 +S"L'impetuosite" +p332023 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332024 +sa(dp332025 +g291130 +S'(artist after)' +p332026 +sg291132 +S'\n' +p332027 +sg291134 +S"L'inclination" +p332028 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332029 +sa(dp332030 +g291130 +S'(artist after)' +p332031 +sg291132 +S'\n' +p332032 +sg291134 +S"L'indulgence" +p332033 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332034 +sa(dp332035 +g291130 +S'French, 1715 - 1790' +p332036 +sg291132 +S'(artist after)' +p332037 +sg291134 +S"L'industrie" +p332038 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332039 +sa(dp332040 +g291130 +S'(artist after)' +p332041 +sg291132 +S'\n' +p332042 +sg291134 +S"L'innocence" +p332043 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332044 +sa(dp332045 +g291130 +S'(artist after)' +p332046 +sg291132 +S'\n' +p332047 +sg291134 +S"L'intrepidite" +p332048 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332049 +sa(dp332050 +g291130 +S'(artist after)' +p332051 +sg291132 +S'\n' +p332052 +sg291134 +S'La liberte' +p332053 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332054 +sa(dp332055 +g291130 +S'(artist after)' +p332056 +sg291132 +S'\n' +p332057 +sg291134 +S'Le libre-arbitre' +p332058 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332059 +sa(dp332060 +g291130 +S'(artist after)' +p332061 +sg291132 +S'\n' +p332062 +sg291134 +S'La louange' +p332063 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332064 +sa(dp332065 +g291130 +S'French, 1715 - 1790' +p332066 +sg291132 +S'(artist after)' +p332067 +sg291134 +S'Almanach iconologique: Les vertus et les vices (volume XVI)' +p332068 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332069 +sa(dp332070 +g291130 +S'sheet: 11.2 x 6.6 cm (4 7/16 x 2 5/8 in.)' +p332071 +sg291132 +S'\netching and engraving on laid paper' +p332072 +sg291134 +S'Title Page' +p332073 +sg291136 +g27 +sg291137 +S'French 18th Century' +p332074 +sa(dp332075 +g291130 +S'(artist after)' +p332076 +sg291132 +S'\n' +p332077 +sg291134 +S'La magnanimite' +p332078 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332079 +sa(dp332080 +g291130 +S'(artist after)' +p332081 +sg291132 +S'\n' +p332082 +sg291134 +S'La magnificence' +p332083 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332084 +sa(dp332085 +g291130 +S'(artist after)' +p332086 +sg291132 +S'\n' +p332087 +sg291134 +S'La modestie' +p332088 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332089 +sa(dp332090 +g291130 +S'(artist after)' +p332091 +sg291132 +S'\n' +p332092 +sg291134 +S'La meditation' +p332093 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332094 +sa(dp332095 +g291130 +S'(artist after)' +p332096 +sg291132 +S'\n' +p332097 +sg291134 +S"L'obeissance" +p332098 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332099 +sa(dp332100 +g291130 +S'(artist after)' +p332101 +sg291132 +S'\n' +p332102 +sg291134 +S"L'opinion" +p332103 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332104 +sa(dp332105 +g291130 +S'(artist after)' +p332106 +sg291132 +S'\n' +p332107 +sg291134 +S"L'oraison" +p332108 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332109 +sa(dp332110 +g291130 +S'(artist after)' +p332111 +sg291132 +S'\n' +p332112 +sg291134 +S'La partialite' +p332113 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332114 +sa(dp332115 +g291130 +S'(artist after)' +p332116 +sg291132 +S'\n' +p332117 +sg291134 +S'La patience' +p332118 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332119 +sa(dp332120 +g291130 +S'(artist after)' +p332121 +sg291132 +S'\n' +p332122 +sg291134 +S'La penitence' +p332123 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332124 +sa(dp332125 +g291130 +S'(artist after)' +p332126 +sg291132 +S'\n' +p332127 +sg291134 +S'La penser' +p332128 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332129 +sa(dp332130 +g291130 +S'(artist after)' +p332131 +sg291132 +S'\n' +p332132 +sg291134 +S'La perfection' +p332133 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332134 +sa(dp332135 +g291130 +S'French, 1715 - 1790' +p332136 +sg291132 +S'(artist after)' +p332137 +sg291134 +S'Almanach iconologique: Les vertus et les vices (volume XVII)' +p332138 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332139 +sa(dp332140 +g291130 +S'sheet: 11.2 x 6.6 cm (4 7/16 x 2 5/8 in.)' +p332141 +sg291132 +S'\netching and engraving on laid paper' +p332142 +sg291134 +S'Title Page' +p332143 +sg291136 +g27 +sg291137 +S'French 18th Century' +p332144 +sa(dp332145 +g291130 +S'(artist after)' +p332146 +sg291132 +S'\n' +p332147 +sg291134 +S'La philosophie' +p332148 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332149 +sa(dp332150 +g291130 +S'(artist after)' +p332151 +sg291132 +S'\n' +p332152 +sg291134 +S'La piete' +p332153 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332154 +sa(dp332155 +g291130 +S'(artist after)' +p332156 +sg291132 +S'\n' +p332157 +sg291134 +S'La prosperite' +p332158 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332159 +sa(dp332160 +g291130 +S'(artist after)' +p332161 +sg291132 +S'\n' +p332162 +sg291134 +S'La providence' +p332163 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332164 +sa(dp332165 +g291130 +S'(artist after)' +p332166 +sg291132 +S'\n' +p332167 +sg291134 +S'La prudence' +p332168 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332169 +sa(dp332170 +g291130 +S'(artist after)' +p332171 +sg291132 +S'\n' +p332172 +sg291134 +S'La purete' +p332173 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332174 +sa(dp332175 +g291130 +S'(artist after)' +p332176 +sg291132 +S'\n' +p332177 +sg291134 +S'La raison' +p332178 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332179 +sa(dp332180 +g291130 +S'(artist after)' +p332181 +sg291132 +S'\n' +p332182 +sg291134 +S'La recompense' +p332183 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332184 +sa(dp332185 +g291130 +S'(artist after)' +p332186 +sg291132 +S'\n' +p332187 +sg291134 +S'La religion' +p332188 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332189 +sa(dp332190 +g291130 +S'(artist after)' +p332191 +sg291132 +S'\n' +p332192 +sg291134 +S'Le repentir' +p332193 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332194 +sa(dp332195 +g291130 +S'(artist after)' +p332196 +sg291132 +S'\n' +p332197 +sg291134 +S'La reputation' +p332198 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332199 +sa(dp332200 +g291130 +S'(artist after)' +p332201 +sg291132 +S'\n' +p332202 +sg291134 +S'La richesse' +p332203 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332204 +sa(dp332205 +g291130 +S'French, 1715 - 1790' +p332206 +sg291132 +S'(artist after)' +p332207 +sg291134 +S'Almanach iconologique: Les vertus et les vices (volume XVIII)' +p332208 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332209 +sa(dp332210 +g291130 +S'sheet: 11.2 x 6.6 cm (4 7/16 x 2 5/8 in.)' +p332211 +sg291132 +S'\netching and engraving on laid paper' +p332212 +sg291134 +S'Title Page' +p332213 +sg291136 +g27 +sg291137 +S'French 18th Century' +p332214 +sa(dp332215 +g291130 +S'(artist after)' +p332216 +sg291132 +S'\n' +p332217 +sg291134 +S'La sagesse' +p332218 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332219 +sa(dp332220 +g291130 +S'(artist after)' +p332221 +sg291132 +S'\n' +p332222 +sg291134 +S'La sante' +p332223 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332224 +sa(dp332225 +g291130 +S'(artist after)' +p332226 +sg291132 +S'\n' +p332227 +sg291134 +S'La silence' +p332228 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332229 +sa(dp332230 +g291130 +S'(artist after)' +p332231 +sg291132 +S'\n' +p332232 +sg291134 +S'La simplicite' +p332233 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332234 +sa(dp332235 +g291130 +S'(artist after)' +p332236 +sg291132 +S'\n' +p332237 +sg291134 +S'La sincerite' +p332238 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332239 +sa(dp332240 +g291130 +S'(artist after)' +p332241 +sg291132 +S'\n' +p332242 +sg291134 +S'La sobriete' +p332243 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332244 +sa(dp332245 +g291130 +S'(artist after)' +p332246 +sg291132 +S'\n' +p332247 +sg291134 +S'Le sommeil' +p332248 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332249 +sa(dp332250 +g291130 +S'(artist after)' +p332251 +sg291132 +S'\n' +p332252 +sg291134 +S'Le surete' +p332253 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332254 +sa(dp332255 +g291130 +S'(artist after)' +p332256 +sg291132 +S'\n' +p332257 +sg291134 +S'La temperance' +p332258 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332259 +sa(dp332260 +g291130 +S'(artist after)' +p332261 +sg291132 +S'\n' +p332262 +sg291134 +S'La verite' +p332263 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332264 +sa(dp332265 +g291130 +S'(artist after)' +p332266 +sg291132 +S'\n' +p332267 +sg291134 +S'La vigilance' +p332268 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332269 +sa(dp332270 +g291130 +S'French, 1715 - 1790' +p332271 +sg291132 +S'(artist after)' +p332272 +sg291134 +S'Le zele' +p332273 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332274 +sa(dp332275 +g291134 +S'Untitled' +p332276 +sg291137 +S'Ad Reinhardt' +p332277 +sg291130 +S'oil on canvas' +p332278 +sg291132 +S'1947' +p332279 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a00001f4.jpg' +p332280 +sg291136 +g27 +sa(dp332281 +g291130 +S'drypoint in black on laid paper' +p332282 +sg291132 +S'1909' +p332283 +sg291134 +S"The Hatpin (L'\xc3\xa9pingle \xc3\xa0 chapeau)" +p332284 +sg291136 +g27 +sg291137 +S'Jacques Villon' +p332285 +sa(dp332286 +g291134 +S'The Nativity with God the Father and the Holy Spirit' +p332287 +sg291137 +S'Giovanni Benedetto Castiglione' +p332288 +sg291130 +S'etching on laid paper' +p332289 +sg291132 +S'c. 1645' +p332290 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00065/a0006596.jpg' +p332291 +sg291136 +g27 +sa(dp332292 +g291134 +S'Au ravin de la faille, Auvergne (The Ravine at Auvergne)' +p332293 +sg291137 +S'Eug\xc3\xa8ne Bl\xc3\xa9ry' +p332294 +sg291130 +S'etching on chine applique [proof]' +p332295 +sg291132 +S'1846' +p332296 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00097/a00097a1.jpg' +p332297 +sg291136 +g27 +sa(dp332298 +g291134 +S'Death and the Woodman in a Coastal Landscape with Ruins' +p332299 +sg291137 +S'Ercole Bazicaluva' +p332300 +sg291130 +S'pen and brown ink over black chalk on laid paper' +p332301 +sg291132 +S'unknown date\n' +p332302 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022a6.jpg' +p332303 +sg291136 +g27 +sa(dp332304 +g291134 +S'The Holy Family with Two Saints' +p332305 +sg291137 +S'Artist Information (' +p332306 +sg291130 +S'(artist after)' +p332307 +sg291132 +S'\n' +p332308 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9ee.jpg' +p332309 +sg291136 +g27 +sa(dp332310 +g291134 +S'The Holy Family with Two Saints' +p332311 +sg291137 +S'Artist Information (' +p332312 +sg291130 +S'(artist after)' +p332313 +sg291132 +S'\n' +p332314 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9ef.jpg' +p332315 +sg291136 +g27 +sa(dp332316 +g291134 +S'The Martyrdom of Two Saints [recto]' +p332317 +sg291137 +S'Artist Information (' +p332318 +sg291130 +S'(artist after)' +p332319 +sg291132 +S'\n' +p332320 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c895.jpg' +p332321 +sg291136 +g27 +sa(dp332322 +g291130 +S'(artist after)' +p332323 +sg291132 +S'\n' +p332324 +sg291134 +S'The Martyrdom of Two Saints [verso]' +p332325 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332326 +sa(dp332327 +g291134 +S'Nancy Cock - Clear Starcher' +p332328 +sg291137 +S'Thomas Rowlandson' +p332329 +sg291130 +S'pen and gray ink with watercolor over graphite on wove paper' +p332330 +sg291132 +S'c. 1815' +p332331 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a000718f.jpg' +p332332 +sg291136 +g27 +sa(dp332333 +g291130 +S'engraving and softground etching retouched with black chalk, graphite, and metallic gold paint on heavy wove paper [trial proof]' +p332334 +sg291132 +S'1903' +p332335 +sg291134 +S'Woman with Dead Child (Frau mit totem Kind)' +p332336 +sg291136 +g27 +sg291137 +S'K\xc3\xa4the Kollwitz' +p332337 +sa(dp332338 +g291130 +S'granite' +p332339 +sg291132 +S'1988' +p332340 +sg291134 +S'Rock Settee' +p332341 +sg291136 +g27 +sg291137 +S'Scott Burton' +p332342 +sa(dp332343 +g291130 +S'granite' +p332344 +sg291132 +S'1988' +p332345 +sg291134 +S'Rock Settee' +p332346 +sg291136 +g27 +sg291137 +S'Scott Burton' +p332347 +sa(dp332348 +g291130 +S'engraving in dark brown on heavy wove paper' +p332349 +sg291132 +S'unknown date\n' +p332350 +sg291134 +S'Lother Greene Calling Card' +p332351 +sg291136 +g27 +sg291137 +S'Salvador Dal\xc3\xad' +p332352 +sa(dp332353 +g291134 +S'Studies of a Male Nude' +p332354 +sg291137 +S'Giovanni Battista Naldini' +p332355 +sg291130 +S'red chalk on laid paper' +p332356 +sg291132 +S'c. 1550' +p332357 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a0002606.jpg' +p332358 +sg291136 +g27 +sa(dp332359 +g291134 +S'Seated Female Figure after the Antique' +p332360 +sg291137 +S'Baldassare Peruzzi' +p332361 +sg291130 +S'pen and brown ink on laid paper; laid down' +p332362 +sg291132 +S'c. 1533' +p332363 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a0007510.jpg' +p332364 +sg291136 +g27 +sa(dp332365 +g291134 +S'Palazzo della Consulata' +p332366 +sg291137 +S'Francesco Piranesi' +p332367 +sg291130 +S'graphite on laid paper (marked with stylus)' +p332368 +sg291132 +S'unknown date\n' +p332369 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e0a.jpg' +p332370 +sg291136 +g27 +sa(dp332371 +g291134 +S'Philippe Cayeux' +p332372 +sg291137 +S'Artist Information (' +p332373 +sg291130 +S'(artist after)' +p332374 +sg291132 +S'\n' +p332375 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d43.jpg' +p332376 +sg291136 +g27 +sa(dp332377 +g291134 +S'Louis-Rene de Caradeuc de la Chalotais' +p332378 +sg291137 +S'Artist Information (' +p332379 +sg291130 +S'(artist after)' +p332380 +sg291132 +S'\n' +p332381 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d46.jpg' +p332382 +sg291136 +g27 +sa(dp332383 +g291134 +S'Guillaume Coustou' +p332384 +sg291137 +S'Artist Information (' +p332385 +sg291130 +S'(artist after)' +p332386 +sg291132 +S'\n' +p332387 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c8a.jpg' +p332388 +sg291136 +g27 +sa(dp332389 +g291134 +S'L. Bay de Curys' +p332390 +sg291137 +S'Artist Information (' +p332391 +sg291130 +S'(artist after)' +p332392 +sg291132 +S'\n' +p332393 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c4b.jpg' +p332394 +sg291136 +g27 +sa(dp332395 +g291134 +S'Charles Duclos' +p332396 +sg291137 +S'Charles-Nicolas Cochin II' +p332397 +sg291130 +S'engraving over etching on laid paper' +p332398 +sg291132 +S'1763' +p332399 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cf7.jpg' +p332400 +sg291136 +g27 +sa(dp332401 +g291134 +S'Charles Jean Francois Henault' +p332402 +sg291137 +S'Artist Information (' +p332403 +sg291130 +S'(artist after)' +p332404 +sg291132 +S'\n' +p332405 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d1c.jpg' +p332406 +sg291136 +g27 +sa(dp332407 +g291134 +S'Pierre Jeliote' +p332408 +sg291137 +S'Artist Information (' +p332409 +sg291130 +S'(artist after)' +p332410 +sg291132 +S'\n' +p332411 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c9d.jpg' +p332412 +sg291136 +g27 +sa(dp332413 +g291134 +S'N.B. Lepicie' +p332414 +sg291137 +S'Artist Information (' +p332415 +sg291130 +S'(artist after)' +p332416 +sg291132 +S'\n' +p332417 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c74.jpg' +p332418 +sg291136 +g27 +sa(dp332419 +g291134 +S'P.J. Marco' +p332420 +sg291137 +S'Artist Information (' +p332421 +sg291130 +S'(artist after)' +p332422 +sg291132 +S'\n' +p332423 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c93.jpg' +p332424 +sg291136 +g27 +sa(dp332425 +g291130 +S'oil on canvas' +p332426 +sg291132 +S'1933' +p332427 +sg291134 +S'Variations on a Rhythm--U' +p332428 +sg291136 +g27 +sg291137 +S'Raymond Jonson' +p332429 +sa(dp332430 +g291130 +S'36-color screenprint on Bainbridge 2-ply Rag paper' +p332431 +sg291132 +S'1988' +p332432 +sg291134 +S'Tunis (Tunis on My Mind)' +p332433 +sg291136 +g27 +sg291137 +S'Willem De Looper' +p332434 +sa(dp332435 +g291130 +g27 +sg291132 +S'(publisher)' +p332436 +sg291134 +S'Stick Man' +p332437 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332438 +sa(dp332439 +g291130 +g27 +sg291132 +S'(publisher)' +p332440 +sg291134 +S'Space Head' +p332441 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332442 +sa(dp332443 +g291130 +g27 +sg291132 +S'(publisher)' +p332444 +sg291134 +S'In Search of the Truth' +p332445 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332446 +sa(dp332447 +g291130 +g27 +sg291132 +S'(publisher)' +p332448 +sg291134 +S'I Dreamed I Found a Red Ruby' +p332449 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332450 +sa(dp332451 +g291130 +g27 +sg291132 +S'(publisher)' +p332452 +sg291134 +S'Self-Portrait' +p332453 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332454 +sa(dp332455 +g291130 +g27 +sg291132 +S'(publisher)' +p332456 +sg291134 +S'Subway Dream' +p332457 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332458 +sa(dp332459 +g291130 +g27 +sg291132 +S'(publisher)' +p332460 +sg291134 +S"I dreamed I was having my photograph taken with a group of people. Suddenly, I beganto rise up and fly around the room. Half way around, I tried to get out the door. When I couldn't get out, I continued to fly around the room until I landed and sat down next to my mother who said I had done a good job!" +p332461 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332462 +sa(dp332463 +g291130 +g27 +sg291132 +S'(publisher)' +p332464 +sg291134 +S'People Running' +p332465 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332466 +sa(dp332467 +g291130 +g27 +sg291132 +S'(publisher)' +p332468 +sg291134 +S'I Dreamed I Found a Red Ruby' +p332469 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332470 +sa(dp332471 +g291130 +g27 +sg291132 +S'(publisher)' +p332472 +sg291134 +S'All is One, All is One [top of 2-panel print (see lower panel 1988.74.11]' +p332473 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332474 +sa(dp332475 +g291130 +g27 +sg291132 +S'(publisher)' +p332476 +sg291134 +S'All is One, All is One [bottom of 2-panel print (see top panel 1988.74.10]' +p332477 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332478 +sa(dp332479 +g291130 +g27 +sg291132 +S'(publisher)' +p332480 +sg291134 +S'Molecule Men' +p332481 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332482 +sa(dp332483 +g291130 +g27 +sg291132 +S'(publisher)' +p332484 +sg291134 +S'Alliance' +p332485 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332486 +sa(dp332487 +g291130 +g27 +sg291132 +S'(publisher)' +p332488 +sg291134 +S'Jupiter Moon - Constellation' +p332489 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332490 +sa(dp332491 +g291130 +g27 +sg291132 +S'(publisher)' +p332492 +sg291134 +S'Constellation - Uccello' +p332493 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332494 +sa(dp332495 +g291130 +g27 +sg291132 +S'(publisher)' +p332496 +sg291134 +S'Drypoint - Ocean Surface' +p332497 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332498 +sa(dp332499 +g291130 +g27 +sg291132 +S'(publisher)' +p332500 +sg291134 +S'Green Disc' +p332501 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332502 +sa(dp332503 +g291130 +g27 +sg291132 +S'(publisher)' +p332504 +sg291134 +S'Black Disc' +p332505 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332506 +sa(dp332507 +g291130 +g27 +sg291132 +S'(publisher)' +p332508 +sg291134 +S'Yellow Brick' +p332509 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332510 +sa(dp332511 +g291130 +g27 +sg291132 +S'(publisher)' +p332512 +sg291134 +S'Red Brick' +p332513 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332514 +sa(dp332515 +g291130 +g27 +sg291132 +S'(publisher)' +p332516 +sg291134 +S'Disc Slab' +p332517 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332518 +sa(dp332519 +g291130 +g27 +sg291132 +S'(publisher)' +p332520 +sg291134 +S'Disc Slab (Black State)' +p332521 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332522 +sa(dp332523 +g291130 +g27 +sg291132 +S'(publisher)' +p332524 +sg291134 +S'Copper Block' +p332525 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332526 +sa(dp332527 +g291130 +g27 +sg291132 +S'(publisher)' +p332528 +sg291134 +S'Yellow Slab' +p332529 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332530 +sa(dp332531 +g291130 +g27 +sg291132 +S'(publisher)' +p332532 +sg291134 +S'Blue Slab' +p332533 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332534 +sa(dp332535 +g291130 +g27 +sg291132 +S'(publisher)' +p332536 +sg291134 +S'Red Slab' +p332537 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332538 +sa(dp332539 +g291130 +g27 +sg291132 +S'(publisher)' +p332540 +sg291134 +S"Samson's Lizard" +p332541 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332542 +sa(dp332543 +g291130 +g27 +sg291132 +S'(publisher)' +p332544 +sg291134 +S'Tri-Box and Grid' +p332545 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332546 +sa(dp332547 +g291130 +g27 +sg291132 +S'(publisher)' +p332548 +sg291134 +S'Block' +p332549 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332550 +sa(dp332551 +g291130 +g27 +sg291132 +S'(publisher)' +p332552 +sg291134 +S'Generated' +p332553 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332554 +sa(dp332555 +g291130 +g27 +sg291132 +S'(publisher)' +p332556 +sg291134 +S'Generated' +p332557 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332558 +sa(dp332559 +g291130 +g27 +sg291132 +S'(publisher)' +p332560 +sg291134 +S'Dark and Fast' +p332561 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332562 +sa(dp332563 +g291134 +S'Vorstellung' +p332564 +sg291137 +S'Artist Information (' +p332565 +sg291130 +g27 +sg291132 +S'(publisher)' +p332566 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a97.jpg' +p332567 +sg291136 +g27 +sa(dp332568 +g291130 +g27 +sg291132 +S'(publisher)' +p332569 +sg291134 +S'Totem' +p332570 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332571 +sa(dp332572 +g291130 +g27 +sg291132 +S'(publisher)' +p332573 +sg291134 +S'Second Mother' +p332574 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332575 +sa(dp332576 +g291130 +g27 +sg291132 +S'(publisher)' +p332577 +sg291134 +S'Falling Star' +p332578 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332579 +sa(dp332580 +g291130 +g27 +sg291132 +S'(publisher)' +p332581 +sg291134 +S'Forest Fire Aftermath' +p332582 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332583 +sa(dp332584 +g291130 +g27 +sg291132 +S'(publisher)' +p332585 +sg291134 +S'Sea Group' +p332586 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332587 +sa(dp332588 +g291130 +g27 +sg291132 +S'(publisher)' +p332589 +sg291134 +S'Studio Corner' +p332590 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332591 +sa(dp332592 +g291130 +g27 +sg291132 +S'(publisher)' +p332593 +sg291134 +S'Agean' +p332594 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332595 +sa(dp332596 +g291130 +g27 +sg291132 +S'(publisher)' +p332597 +sg291134 +S'Gulf' +p332598 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332599 +sa(dp332600 +g291130 +g27 +sg291132 +S'(publisher)' +p332601 +sg291134 +S'Studio Forms' +p332602 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332603 +sa(dp332604 +g291130 +g27 +sg291132 +S'(publisher)' +p332605 +sg291134 +S'Painter' +p332606 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332607 +sa(dp332608 +g291130 +g27 +sg291132 +S'(publisher)' +p332609 +sg291134 +S'View' +p332610 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332611 +sa(dp332612 +g291130 +g27 +sg291132 +S'(publisher)' +p332613 +sg291134 +S'Curtain' +p332614 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332615 +sa(dp332616 +g291130 +g27 +sg291132 +S'(publisher)' +p332617 +sg291134 +S'Group' +p332618 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332619 +sa(dp332620 +g291130 +g27 +sg291132 +S'(publisher)' +p332621 +sg291134 +S'Scene' +p332622 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332623 +sa(dp332624 +g291130 +g27 +sg291132 +S'(publisher)' +p332625 +sg291134 +S'Pile Up' +p332626 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332627 +sa(dp332628 +g291130 +g27 +sg291132 +S'(publisher)' +p332629 +sg291134 +S'Door' +p332630 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332631 +sa(dp332632 +g291130 +g27 +sg291132 +S'(publisher)' +p332633 +sg291134 +S'Shoes' +p332634 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332635 +sa(dp332636 +g291130 +g27 +sg291132 +S'(publisher)' +p332637 +sg291134 +S'Objects' +p332638 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332639 +sa(dp332640 +g291130 +g27 +sg291132 +S'(publisher)' +p332641 +sg291134 +S'Easel' +p332642 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332643 +sa(dp332644 +g291130 +g27 +sg291132 +S'(publisher)' +p332645 +sg291134 +S'Sky' +p332646 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332647 +sa(dp332648 +g291130 +g27 +sg291132 +S'(publisher)' +p332649 +sg291134 +S'William Burroughs' +p332650 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332651 +sa(dp332652 +g291130 +g27 +sg291132 +S'(publisher)' +p332653 +sg291134 +S'John Hockney' +p332654 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332655 +sa(dp332656 +g291130 +g27 +sg291132 +S'(publisher)' +p332657 +sg291134 +S'James' +p332658 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332659 +sa(dp332660 +g291130 +g27 +sg291132 +S'(publisher)' +p332661 +sg291134 +S'Celia in a Polka Dot Skirt' +p332662 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332663 +sa(dp332664 +g291130 +g27 +sg291132 +S'(publisher)' +p332665 +sg291134 +S'Celia in an Armchair' +p332666 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332667 +sa(dp332668 +g291130 +g27 +sg291132 +S'(publisher)' +p332669 +sg291134 +S'Celia with Green Plant' +p332670 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332671 +sa(dp332672 +g291130 +g27 +sg291132 +S'(publisher)' +p332673 +sg291134 +S'Celia - Reclining' +p332674 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332675 +sa(dp332676 +g291130 +g27 +sg291132 +S'(publisher)' +p332677 +sg291134 +S'Celia - Adjusting Her Eyelash' +p332678 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332679 +sa(dp332680 +g291130 +g27 +sg291132 +S'(publisher)' +p332681 +sg291134 +S'Big Celiaprint #1' +p332682 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332683 +sa(dp332684 +g291130 +g27 +sg291132 +S'(publisher)' +p332685 +sg291134 +S'Two Vases of Cut Flowers and a Liriope Plant' +p332686 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332687 +sa(dp332688 +g291130 +g27 +sg291132 +S'(publisher)' +p332689 +sg291134 +S"Celia in the Director's Chair" +p332690 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332691 +sa(dp332692 +g291130 +g27 +sg291132 +S'(publisher)' +p332693 +sg291134 +S'Celia (La Bergere)' +p332694 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332695 +sa(dp332696 +g291130 +g27 +sg291132 +S'(publisher)' +p332697 +sg291134 +S'MOCA Print' +p332698 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332699 +sa(dp332700 +g291130 +g27 +sg291132 +S'(publisher)' +p332701 +sg291134 +S'Cicada' +p332702 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332703 +sa(dp332704 +g291130 +g27 +sg291132 +S'(publisher)' +p332705 +sg291134 +S'Two Flags (Whitney Anniversary)' +p332706 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332707 +sa(dp332708 +g291130 +g27 +sg291132 +S'(publisher)' +p332709 +sg291134 +S'Two Flags' +p332710 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332711 +sa(dp332712 +g291130 +g27 +sg291132 +S'(publisher)' +p332713 +sg291134 +S'Two Flags (Whitney Anniversary)' +p332714 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332715 +sa(dp332716 +g291130 +g27 +sg291132 +S'(publisher)' +p332717 +sg291134 +S'Untitled' +p332718 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332719 +sa(dp332720 +g291130 +g27 +sg291132 +S'(publisher)' +p332721 +sg291134 +S'Concorde II' +p332722 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332723 +sa(dp332724 +g291130 +g27 +sg291132 +S'(publisher)' +p332725 +sg291134 +S'Concorde II (State)' +p332726 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332727 +sa(dp332728 +g291130 +g27 +sg291132 +S'(publisher)' +p332729 +sg291134 +S'Square with Black' +p332730 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332731 +sa(dp332732 +g291130 +g27 +sg291132 +S'(publisher)' +p332733 +sg291134 +S'Square with Black (State)' +p332734 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332735 +sa(dp332736 +g291130 +g27 +sg291132 +S'(publisher)' +p332737 +sg291134 +S'Diagonal with Black' +p332738 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332739 +sa(dp332740 +g291130 +g27 +sg291132 +S'(publisher)' +p332741 +sg291134 +S'Diagonal with Black (State)' +p332742 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332743 +sa(dp332744 +g291130 +g27 +sg291132 +S'(publisher)' +p332745 +sg291134 +S'Concorde V' +p332746 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332747 +sa(dp332748 +g291130 +g27 +sg291132 +S'(publisher)' +p332749 +sg291134 +S'Concorde V (State)' +p332750 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332751 +sa(dp332752 +g291130 +g27 +sg291132 +S'(publisher)' +p332753 +sg291134 +S'Concorde IV (State)' +p332754 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332755 +sa(dp332756 +g291130 +g27 +sg291132 +S'(publisher)' +p332757 +sg291134 +S'Concorde IV' +p332758 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332759 +sa(dp332760 +g291130 +g27 +sg291132 +S'(publisher)' +p332761 +sg291134 +S'Concorde I' +p332762 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332763 +sa(dp332764 +g291130 +g27 +sg291132 +S'(publisher)' +p332765 +sg291134 +S'Concorde III' +p332766 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332767 +sa(dp332768 +g291130 +g27 +sg291132 +S'(publisher)' +p332769 +sg291134 +S'Concorde III (State)' +p332770 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332771 +sa(dp332772 +g291130 +g27 +sg291132 +S'(publisher)' +p332773 +sg291134 +S'Untitled (MOCA Print)' +p332774 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332775 +sa(dp332776 +g291130 +g27 +sg291132 +S'(publisher)' +p332777 +sg291134 +S'Saint Martin Tropical Plant' +p332778 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332779 +sa(dp332780 +g291130 +g27 +sg291132 +S'(publisher)' +p332781 +sg291134 +S'Vertical Displacement' +p332782 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332783 +sa(dp332784 +g291130 +g27 +sg291132 +S'(publisher)' +p332785 +sg291134 +S'Montana Survey #1' +p332786 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332787 +sa(dp332788 +g291130 +g27 +sg291132 +S'(publisher)' +p332789 +sg291134 +S'Montana Survey #2' +p332790 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332791 +sa(dp332792 +g291130 +g27 +sg291132 +S'(publisher)' +p332793 +sg291134 +S'Montana Survey #3' +p332794 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332795 +sa(dp332796 +g291130 +g27 +sg291132 +S'(publisher)' +p332797 +sg291134 +S'Two Paintings: Green Lamp' +p332798 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332799 +sa(dp332800 +g291130 +g27 +sg291132 +S'(publisher)' +p332801 +sg291134 +S'Painting on Canvas' +p332802 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332803 +sa(dp332804 +g291130 +g27 +sg291132 +S'(publisher)' +p332805 +sg291134 +S'Two Paintings: Sleeping Muse' +p332806 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332807 +sa(dp332808 +g291130 +g27 +sg291132 +S'(publisher)' +p332809 +sg291134 +S'Two Paintings: Beach Ball' +p332810 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332811 +sa(dp332812 +g291130 +S'woodcut and lithograph on Arches 88 paper' +p332813 +sg291132 +S'1984' +p332814 +sg291134 +S'Two Paintings: Dagwood' +p332815 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p332816 +sa(dp332817 +g291130 +g27 +sg291132 +S'(publisher)' +p332818 +sg291134 +S'Painting on Blue and Yellow Wall' +p332819 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332820 +sa(dp332821 +g291130 +g27 +sg291132 +S'(publisher)' +p332822 +sg291134 +S'Pearl Masque' +p332823 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332824 +sa(dp332825 +g291130 +g27 +sg291132 +S'(publisher)' +p332826 +sg291134 +S'Life Mask' +p332827 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332828 +sa(dp332829 +g291130 +g27 +sg291132 +S'(publisher)' +p332830 +sg291134 +S'Double Face' +p332831 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332832 +sa(dp332833 +g291130 +g27 +sg291132 +S'(publisher)' +p332834 +sg291134 +S'No' +p332835 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332836 +sa(dp332837 +g291130 +g27 +sg291132 +S'(publisher)' +p332838 +sg291134 +S'No - State' +p332839 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332840 +sa(dp332841 +g291130 +g27 +sg291132 +S'(publisher)' +p332842 +sg291134 +S'Suspended Chair' +p332843 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332844 +sa(dp332845 +g291130 +g27 +sg291132 +S'(publisher)' +p332846 +sg291134 +S'Floor Drain' +p332847 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332848 +sa(dp332849 +g291130 +g27 +sg291132 +S'(publisher)' +p332850 +sg291134 +S'House Divided' +p332851 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332852 +sa(dp332853 +g291130 +g27 +sg291132 +S'(publisher)' +p332854 +sg291134 +S'Shit and Die' +p332855 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332856 +sa(dp332857 +g291130 +g27 +sg291132 +S'(publisher)' +p332858 +sg291134 +S'Human Companionship, Human Drain' +p332859 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332860 +sa(dp332861 +g291130 +g27 +sg291132 +S'(publisher)' +p332862 +sg291134 +S'American Pewter with Burroughs III' +p332863 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332864 +sa(dp332865 +g291130 +g27 +sg291132 +S'(publisher)' +p332866 +sg291134 +S'American Pewter with Burroughs V' +p332867 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332868 +sa(dp332869 +g291130 +g27 +sg291132 +S'(publisher)' +p332870 +sg291134 +S'American Pewter with Burroughs II' +p332871 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332872 +sa(dp332873 +g291130 +g27 +sg291132 +S'(publisher)' +p332874 +sg291134 +S'American Pewter with Burroughs VI' +p332875 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332876 +sa(dp332877 +g291130 +g27 +sg291132 +S'(publisher)' +p332878 +sg291134 +S'American Pewter with Burroughs IV' +p332879 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332880 +sa(dp332881 +g291130 +g27 +sg291132 +S'(publisher)' +p332882 +sg291134 +S"L.A. Flakes - 10,000', and Rising" +p332883 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332884 +sa(dp332885 +g291130 +g27 +sg291132 +S'(publisher)' +p332886 +sg291134 +S"L.A. Flakes - 2,003', and Falling" +p332887 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332888 +sa(dp332889 +g291130 +g27 +sg291132 +S'(publisher)' +p332890 +sg291134 +S"L.A. Flakes - 11,000', and Rising" +p332891 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332892 +sa(dp332893 +g291130 +g27 +sg291132 +S'(publisher)' +p332894 +sg291134 +S"L.A. Flakes - 13,000', and Rising" +p332895 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332896 +sa(dp332897 +g291130 +g27 +sg291132 +S'(publisher)' +p332898 +sg291134 +S"L.A. Flakes - 400', and Falling" +p332899 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332900 +sa(dp332901 +g291130 +g27 +sg291132 +S'(publisher)' +p332902 +sg291134 +S"L.A. Flakes - 19,000', Still" +p332903 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332904 +sa(dp332905 +g291130 +g27 +sg291132 +S'(publisher)' +p332906 +sg291134 +S"L.A. Flakes - 400', and Rising" +p332907 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332908 +sa(dp332909 +g291130 +g27 +sg291132 +S'(publisher)' +p332910 +sg291134 +S'Lily Scent' +p332911 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332912 +sa(dp332913 +g291130 +g27 +sg291132 +S'(publisher)' +p332914 +sg291134 +S'Individual' +p332915 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332916 +sa(dp332917 +g291130 +g27 +sg291132 +S'(publisher)' +p332918 +sg291134 +S'Change' +p332919 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332920 +sa(dp332921 +g291130 +g27 +sg291132 +S'(publisher)' +p332922 +sg291134 +S'Howl' +p332923 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332924 +sa(dp332925 +g291130 +g27 +sg291132 +S'(publisher)' +p332926 +sg291134 +S'Light' +p332927 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332928 +sa(dp332929 +g291130 +g27 +sg291132 +S'(publisher)' +p332930 +sg291134 +S'Trunk' +p332931 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332932 +sa(dp332933 +g291130 +g27 +sg291132 +S'(publisher)' +p332934 +sg291134 +S'Red Heart' +p332935 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332936 +sa(dp332937 +g291130 +g27 +sg291132 +S'(publisher)' +p332938 +sg291134 +S"L.A. Flakes - 22,469', Still" +p332939 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332940 +sa(dp332941 +g291130 +g27 +sg291132 +S'(publisher)' +p332942 +sg291134 +S'Melencolia' +p332943 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332944 +sa(dp332945 +g291130 +g27 +sg291132 +S'(publisher)' +p332946 +sg291134 +S'Devine Ray' +p332947 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332948 +sa(dp332949 +g291130 +g27 +sg291132 +S'(publisher)' +p332950 +sg291134 +S'Uriel' +p332951 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332952 +sa(dp332953 +g291130 +g27 +sg291132 +S'(publisher)' +p332954 +sg291134 +S'Amusement Stops' +p332955 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332956 +sa(dp332957 +g291130 +g27 +sg291132 +S'(publisher)' +p332958 +sg291134 +S'Paper Head on a Nuclear Pillow' +p332959 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332960 +sa(dp332961 +g291130 +g27 +sg291132 +S'(publisher)' +p332962 +sg291134 +S"L'Amour" +p332963 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332964 +sa(dp332965 +g291130 +g27 +sg291132 +S'(publisher)' +p332966 +sg291134 +S'While the Earth Revolves at Night' +p332967 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332968 +sa(dp332969 +g291130 +g27 +sg291132 +S'(publisher)' +p332970 +sg291134 +S'Appearance' +p332971 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332972 +sa(dp332973 +g291130 +g27 +sg291132 +S'(publisher)' +p332974 +sg291134 +S"Krapp's Banana" +p332975 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332976 +sa(dp332977 +g291130 +g27 +sg291132 +S'(publisher)' +p332978 +sg291134 +S'Blood in Warm Water' +p332979 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332980 +sa(dp332981 +g291130 +g27 +sg291132 +S'(publisher)' +p332982 +sg291134 +S'On Stage' +p332983 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332984 +sa(dp332985 +g291130 +g27 +sg291132 +S'(publisher)' +p332986 +sg291134 +S'Beach' +p332987 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332988 +sa(dp332989 +g291130 +g27 +sg291132 +S'(publisher)' +p332990 +sg291134 +S'Leaky Neck' +p332991 +sg291136 +g27 +sg291137 +S'Artist Information (' +p332992 +sa(dp332993 +g291134 +S"It's Recreational" +p332994 +sg291137 +S'Artist Information (' +p332995 +sg291130 +g27 +sg291132 +S'(publisher)' +p332996 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b7f.jpg' +p332997 +sg291136 +g27 +sa(dp332998 +g291130 +g27 +sg291132 +S'(publisher)' +p332999 +sg291134 +S'People Yawning' +p333000 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333001 +sa(dp333002 +g291130 +g27 +sg291132 +S'(publisher)' +p333003 +sg291134 +S'Cities' +p333004 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333005 +sa(dp333006 +g291130 +g27 +sg291132 +S'(publisher)' +p333007 +sg291134 +S'Thermometers' +p333008 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333009 +sa(dp333010 +g291130 +g27 +sg291132 +S'(publisher)' +p333011 +sg291134 +S'Sketch 1' +p333012 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333013 +sa(dp333014 +g291130 +g27 +sg291132 +S'(publisher)' +p333015 +sg291134 +S'Sketch 2' +p333016 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333017 +sa(dp333018 +g291130 +g27 +sg291132 +S'(publisher)' +p333019 +sg291134 +S'Sketch 3' +p333020 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333021 +sa(dp333022 +g291130 +g27 +sg291132 +S'(publisher)' +p333023 +sg291134 +S'Sketch 4' +p333024 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333025 +sa(dp333026 +g291130 +g27 +sg291132 +S'(publisher)' +p333027 +sg291134 +S'Sketch 5' +p333028 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333029 +sa(dp333030 +g291130 +g27 +sg291132 +S'(publisher)' +p333031 +sg291134 +S'Sketch 6' +p333032 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333033 +sa(dp333034 +g291130 +g27 +sg291132 +S'(publisher)' +p333035 +sg291134 +S'Sketch 7' +p333036 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333037 +sa(dp333038 +g291130 +g27 +sg291132 +S'(publisher)' +p333039 +sg291134 +S'Goslar' +p333040 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333041 +sa(dp333042 +g291130 +g27 +sg291132 +S'(publisher)' +p333043 +sg291134 +S'Back to Black' +p333044 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333045 +sa(dp333046 +g291130 +g27 +sg291132 +S'(publisher)' +p333047 +sg291134 +S'Malcolm X' +p333048 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333049 +sa(dp333050 +g291130 +g27 +sg291132 +S'(publisher)' +p333051 +sg291134 +S'The Moral Majority Sucks' +p333052 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333053 +sa(dp333054 +g291130 +g27 +sg291132 +S'(publisher)' +p333055 +sg291134 +S'Bad Water' +p333056 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333057 +sa(dp333058 +g291130 +g27 +sg291132 +S'(publisher)' +p333059 +sg291134 +S'Out the Window at the Square Diner' +p333060 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333061 +sa(dp333062 +g291130 +g27 +sg291132 +S'(publisher)' +p333063 +sg291134 +S'Paradise of Ash [ (left half of 2-panel print, see right half 1988.]' +p333064 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333065 +sa(dp333066 +g291130 +g27 +sg291132 +S'(publisher)' +p333067 +sg291134 +S'Paradise of Ash [ (right half of 2-panel print, see left half 1988.]' +p333068 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333069 +sa(dp333070 +g291134 +S'Three Feminine Heads' +p333071 +sg291137 +S'Parmigianino' +p333072 +sg291130 +S'red chalk on laid paper; laid down' +p333073 +sg291132 +S'c. 1522/1524' +p333074 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00055/a0005569.jpg' +p333075 +sg291136 +g27 +sa(dp333076 +g291134 +S'Ariadne' +p333077 +sg291137 +S'Sir Edward Coley Burne-Jones' +p333078 +sg291130 +S'watercolor and gouache over graphite on smooth wove paper' +p333079 +sg291132 +S'1863/1864' +p333080 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00031/a000319e.jpg' +p333081 +sg291136 +g27 +sa(dp333082 +g291134 +S'Hunting in the Pontine Marshes' +p333083 +sg291137 +S'Horace Vernet' +p333084 +sg291130 +S'oil on canvas' +p333085 +sg291132 +S'1833' +p333086 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d9c.jpg' +p333087 +sg291136 +S'Though less well-known than other painters on this tour, Horace Vernet was regarded by many in his day as one of the greatest French artists of all time. Horace\'s forthright and accurate reporting of facts was already being disparaged by some romantic critics before his death -- and more recently he has been compared to Norman Rockwell. Increasingly, however, his naturalism is appreciated as foreshadowing the work of realists like Courbet.\n This painting was made in Italy after Vernet had been appointed director of the French Academy in Rome. Following the July Revolution of 1830, which installed "Citizen King" Louis Philippe, Vernet found himself the most senior French official in the city -- an uncomfortable post, given the antipathy of the pope and Italian public toward a more liberal French monarchy. It was often advantageous to be out of town, and the painter\'s love of hunting offered frequent opportunities.\n Here, tiny figures are overshadowed by the wild landscape -- an ancient wooded marsh some forty kilometers from Rome. Vernet described it as a majestic place, where the presence of man did not interrupt the order of nature.\n ' +p333088 +sa(dp333089 +g291134 +S'Penelope and Her Maids Weaving' +p333090 +sg291137 +S'Artist Information (' +p333091 +sg291130 +S'(artist after)' +p333092 +sg291132 +S'\n' +p333093 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ad/a000adc1.jpg' +p333094 +sg291136 +g27 +sa(dp333095 +g291134 +S'The Divertissement from Voltaire\'s "La princesse de Navarre"' +p333096 +sg291137 +S'Gabriel de Saint-Aubin' +p333097 +sg291130 +S', 1745' +p333098 +sg291132 +S'\n' +p333099 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00027/a00027a7.jpg' +p333100 +sg291136 +g27 +sa(dp333101 +g291134 +S'Architectural Fantasies with Temples and Pyramids' +p333102 +sg291137 +S'Filippo Juvarra' +p333103 +sg291130 +S'pen and iron gall ink with blue and brown wash on laid paper' +p333104 +sg291132 +S'1704' +p333105 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00034/a0003426.jpg' +p333106 +sg291136 +g27 +sa(dp333107 +g291134 +S'Classical Figures Gathered around an Urn' +p333108 +sg291137 +S'Giovanni Battista Tiepolo' +p333109 +sg291130 +S'pen and brown ink on laid paper; black chalk sketches of mostly architecture on verso' +p333110 +sg291132 +S'1724/1729' +p333111 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a000743d.jpg' +p333112 +sg291136 +g27 +sa(dp333113 +g291134 +S'Mountain Heights, Cader Idris' +p333114 +sg291137 +S'David Cox' +p333115 +sg291130 +S'watercolor over chalk on oatmeal paper; laid down' +p333116 +sg291132 +S'c. 1850' +p333117 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005ecb.jpg' +p333118 +sg291136 +g27 +sa(dp333119 +g291134 +S"Moses Delivering God's Commandments to the Israelites" +p333120 +sg291137 +S'Jan Swart van Groningen' +p333121 +sg291130 +S'pen and black ink and brown wash on laid paper' +p333122 +sg291132 +S'unknown date\n' +p333123 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a00072d0.jpg' +p333124 +sg291136 +g27 +sa(dp333125 +g291134 +S'Machine tournez vite (Machine Turn Quickly)' +p333126 +sg291137 +S'Francis Picabia' +p333127 +sg291130 +S'brush and ink with watercolor and shell gold on paper; laid down on canvas' +p333128 +sg291132 +S'1916/1918' +p333129 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00021/a0002182.jpg' +p333130 +sg291136 +g27 +sa(dp333131 +g291134 +S'Subway Portrait' +p333132 +sg291137 +S'Walker Evans' +p333133 +sg291130 +S'gelatin silver print' +p333134 +sg291132 +S'1938-1941' +p333135 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a000649e.jpg' +p333136 +sg291136 +g27 +sa(dp333137 +g291134 +S'Subway Portrait' +p333138 +sg291137 +S'Walker Evans' +p333139 +sg291130 +S'gelatin silver print' +p333140 +sg291132 +S'1938-1941' +p333141 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005a59.jpg' +p333142 +sg291136 +g27 +sa(dp333143 +g291134 +S'Subway Portrait' +p333144 +sg291137 +S'Walker Evans' +p333145 +sg291130 +S'gelatin silver print' +p333146 +sg291132 +S'1938-1941' +p333147 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a000649f.jpg' +p333148 +sg291136 +g27 +sa(dp333149 +g291134 +S'Subway Portrait' +p333150 +sg291137 +S'Walker Evans' +p333151 +sg291130 +S'gelatin silver print' +p333152 +sg291132 +S'1938-1941' +p333153 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064a4.jpg' +p333154 +sg291136 +g27 +sa(dp333155 +g291134 +S'Subway Portrait' +p333156 +sg291137 +S'Walker Evans' +p333157 +sg291130 +S'gelatin silver print' +p333158 +sg291132 +S'1938-1941' +p333159 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064a0.jpg' +p333160 +sg291136 +g27 +sa(dp333161 +g291134 +S'Subway Portrait' +p333162 +sg291137 +S'Walker Evans' +p333163 +sg291130 +S'gelatin silver print' +p333164 +sg291132 +S'1938-1941' +p333165 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064ac.jpg' +p333166 +sg291136 +g27 +sa(dp333167 +g291134 +S'Subway Portrait' +p333168 +sg291137 +S'Walker Evans' +p333169 +sg291130 +S'gelatin silver print' +p333170 +sg291132 +S'1938-1941' +p333171 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064ad.jpg' +p333172 +sg291136 +g27 +sa(dp333173 +g291134 +S'Subway Portrait' +p333174 +sg291137 +S'Walker Evans' +p333175 +sg291130 +S'gelatin silver print' +p333176 +sg291132 +S'1938' +p333177 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064ae.jpg' +p333178 +sg291136 +g27 +sa(dp333179 +g291134 +S'The Expulsion of Adam and Eve from Paradise' +p333180 +sg291137 +S'Benjamin West' +p333181 +sg291130 +S'oil on canvas' +p333182 +sg291132 +S'1791' +p333183 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00008/a0000882.jpg' +p333184 +sg291136 +S"By 1779, Benjamin West had conceived his life's "great work," intending to rebuild the Royal Chapel at Windsor Castle as a shrine to Revealed Religion. After sponsoring the elaborate scheme for two decades, George III abruptly canceled it in 1801. Though the overall project was abandoned, many individual paintings, including this nine–foot–long \n The Book of Genesis does not state how the first man and woman were expelled from Eden, but artists usually portray the Archangel Michael as the agent of the Lord's wrath. The sinners wear fur robes because God clothed them in "coats of skins" so that they could stand unashamed in his presence. The serpent, now cursed among creatures, slithers away on its belly to eat dust. The sharp beam of light overhead refers to the "flaming sword" in Genesis.\n West's \n " +p333185 +sa(dp333186 +g291134 +S'Natural Arch at Capri' +p333187 +sg291137 +S'William Stanley Haseltine' +p333188 +sg291130 +S'oil on canvas' +p333189 +sg291132 +S'1871' +p333190 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00000/a00000e3.jpg' +p333191 +sg291136 +g27 +sa(dp333192 +g291134 +S'Amnon and Tamar' +p333193 +sg291137 +S'Guercino' +p333194 +sg291130 +S', 1649' +p333195 +sg291132 +S'\n' +p333196 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074b5.jpg' +p333197 +sg291136 +g27 +sa(dp333198 +g291130 +S'(artist)' +p333199 +sg291132 +S'\n' +p333200 +sg291134 +S'Camera ed Inscrizioni Sepulcrali' +p333201 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333202 +sa(dp333203 +g291130 +S'(artist after)' +p333204 +sg291132 +S'\n' +p333205 +sg291134 +S'Palmi Romani' +p333206 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333207 +sa(dp333208 +g291130 +S'(artist after)' +p333209 +sg291132 +S'\n' +p333210 +sg291134 +S'Palmi Romani' +p333211 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333212 +sa(dp333213 +g291130 +S'(artist after)' +p333214 +sg291132 +S'\n' +p333215 +sg291134 +S'Palmi Romani' +p333216 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333217 +sa(dp333218 +g291130 +S'charcoal, chalk, and brushed washes with scratching out on wove paper' +p333219 +sg291132 +S'unknown date\n' +p333220 +sg291134 +S'A Woodland River with a Fisherman' +p333221 +sg291136 +g27 +sg291137 +S'Adolphe Appian' +p333222 +sa(dp333223 +g291134 +S'The Blind Hurdy Gurdy Player' +p333224 +sg291137 +S'Jacques de Bellange' +p333225 +sg291130 +S', unknown date' +p333226 +sg291132 +S'\n' +p333227 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a4b.jpg' +p333228 +sg291136 +g27 +sa(dp333229 +g291134 +S'Saint Jerome' +p333230 +sg291137 +S"Jacopo de' Barbari" +p333231 +sg291130 +S'engraving on laid paper' +p333232 +sg291132 +S'c. 1501/1504' +p333233 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c797.jpg' +p333234 +sg291136 +g27 +sa(dp333235 +g291134 +S'The Holy Family with Saint Elizabeth and Saint John the Baptist' +p333236 +sg291137 +S'Hendrick Goltzius' +p333237 +sg291130 +S', 1595' +p333238 +sg291132 +S'\n' +p333239 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00033/a00033e1.jpg' +p333240 +sg291136 +g27 +sa(dp333241 +g291130 +S'sketchbook with 23 pen and ink drawings and one graphite sketch' +p333242 +sg291132 +S'1885/1887' +p333243 +sg291134 +S'Burnand Sketchbook' +p333244 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333245 +sa(dp333246 +g291130 +S'pen and brown ink over graphite on wove paper' +p333247 +sg291132 +S'1885' +p333248 +sg291134 +S'Sepey' +p333249 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333250 +sa(dp333251 +g291130 +S'pen and brown ink over graphite on wove paper' +p333252 +sg291132 +S'probably 1885' +p333253 +sg291134 +S'Untitled (Cottage)' +p333254 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333255 +sa(dp333256 +g291130 +S'pen and brown ink on wove paper' +p333257 +sg291132 +S'1885' +p333258 +sg291134 +S'Voulez-vous me faire aller? (Will You Give Me a Push?)' +p333259 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333260 +sa(dp333261 +g291130 +S'pen and brown ink over graphite on wove paper' +p333262 +sg291132 +S'1885' +p333263 +sg291134 +S'Arrangements du Grand-pre (Ways to Grand-pre)' +p333264 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333265 +sa(dp333266 +g291130 +S'pen and brown ink over graphite on wove paper' +p333267 +sg291132 +S'1885' +p333268 +sg291134 +S'Retour de Surpierre (Return from Surpierre)' +p333269 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333270 +sa(dp333271 +g291130 +S'pen and brown ink over graphite on wove paper' +p333272 +sg291132 +S'1885' +p333273 +sg291134 +S"L'arrivee du Modele (premier acte) (The Arrival of the Model, Act I)" +p333274 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333275 +sa(dp333276 +g291130 +S'pen and brown ink over graphite on wove paper' +p333277 +sg291132 +S'1885' +p333278 +sg291134 +S"L'arrivee du modele (second acte) (The Arrival of the Model, Act II)" +p333279 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333280 +sa(dp333281 +g291130 +S'pen and brown ink over graphite on wove paper' +p333282 +sg291132 +S'1885' +p333283 +sg291134 +S'La Seance (The Sitting)' +p333284 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333285 +sa(dp333286 +g291130 +S'pen and brown ink over graphite on wove paper' +p333287 +sg291132 +S'1885' +p333288 +sg291134 +S'Untitled (The Artist at Work)' +p333289 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333290 +sa(dp333291 +g291130 +S'pen and brown ink over graphite on wove paper' +p333292 +sg291132 +S'1885' +p333293 +sg291134 +S'Apres le Travail (After Work)' +p333294 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333295 +sa(dp333296 +g291130 +S'pen and brown ink over graphite on wove paper' +p333297 +sg291132 +S'probably 1885' +p333298 +sg291134 +S'Untitled (Mr. de Cocs... and the Duc de B...)' +p333299 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333300 +sa(dp333301 +g291130 +S'pen and brown ink over graphite on wove paper' +p333302 +sg291132 +S'1885' +p333303 +sg291134 +S'Retour du Grand-pre (Return from Grand-pre)' +p333304 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333305 +sa(dp333306 +g291130 +S'pen and brown ink over graphite on wove paper' +p333307 +sg291132 +S'probably 1885' +p333308 +sg291134 +S'A present les petits la-bas, un peu dranguiles! (The Little Ones Over There for Now, a Little Quiet!' +p333309 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333310 +sa(dp333311 +g291130 +S'pen and brown ink over graphite on wove paper' +p333312 +sg291132 +S'probably 1885' +p333313 +sg291134 +S'Untitled (Packing Up)' +p333314 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333315 +sa(dp333316 +g291130 +S'pen and brown ink over graphite on wove paper' +p333317 +sg291132 +S'probably 1885' +p333318 +sg291134 +S"Le lit de mes neveux, Songe d'une nuit d'ete (My Nephews' Bed, Dream of a Summer Night)" +p333319 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333320 +sa(dp333321 +g291130 +S'graphite on wove paper' +p333322 +sg291132 +S'1885/1887' +p333323 +sg291134 +S'Untitled (Man with Child)' +p333324 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333325 +sa(dp333326 +g291130 +S'pen and brown ink over graphite on wove paper' +p333327 +sg291132 +S'probably 1885' +p333328 +sg291134 +S'Souvenir du Jura (Memories of the Jura)' +p333329 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333330 +sa(dp333331 +g291130 +S'pen and brown ink over graphite on wove paper' +p333332 +sg291132 +S'1885' +p333333 +sg291134 +S'Depart de la Grande Tour (Departure on the Grand Tour)' +p333334 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333335 +sa(dp333336 +g291130 +S'pen and brown ink over graphite on wove paper' +p333337 +sg291132 +S'1887' +p333338 +sg291134 +S"Attends, Franz, je vais te boquer! (Just Wait, Franz, I'm Going to Bonk You!)" +p333339 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333340 +sa(dp333341 +g291130 +S'pen and black ink over graphite on wove paper' +p333342 +sg291132 +S'1887' +p333343 +sg291134 +S'Untitled (The Troop Departs)' +p333344 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333345 +sa(dp333346 +g291130 +S'pen and black ink with gray wash over graphite on wove paper' +p333347 +sg291132 +S'1887' +p333348 +sg291134 +S"L'Atelier de Sepey, la jour du bapteme de Marcel (The Studio at Sepey on the Day of Marcel's Baptism)" +p333349 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333350 +sa(dp333351 +g291130 +S'pen and black ink over graphite on wove paper' +p333352 +sg291132 +S'probably 1887' +p333353 +sg291134 +S"En collaboration - la recherche d'un ton (In Collaboration, the Search for a Tone)" +p333354 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333355 +sa(dp333356 +g291130 +S'pen and black ink over graphite on wove paper' +p333357 +sg291132 +S'probably 1887' +p333358 +sg291134 +S'Untitled (Horses in Tow)' +p333359 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333360 +sa(dp333361 +g291130 +S'pen and black ink over graphite with blue tracing on wove paper' +p333362 +sg291132 +S'probably 1887' +p333363 +sg291134 +S'Untitled (Man Seated, Waiting to be Served)' +p333364 +sg291136 +g27 +sg291137 +S'Eug\xc3\xa8ne Burnand' +p333365 +sa(dp333366 +g291134 +S'At Venice' +p333367 +sg291137 +S'Adolphe Appian' +p333368 +sg291130 +S'etching on thin laid paper' +p333369 +sg291132 +S'1878' +p333370 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009028.jpg' +p333371 +sg291136 +g27 +sa(dp333372 +g291134 +S'Landscape with the Flight into Egypt' +p333373 +sg291137 +S'Roelandt Savery' +p333374 +sg291130 +S'oil on panel' +p333375 +sg291132 +S'1624' +p333376 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000da/a000dab4.jpg' +p333377 +sg291136 +g27 +sa(dp333378 +g291134 +S'Still Life with Fruit, Fish, and a Nest' +p333379 +sg291137 +S'Abraham Mignon' +p333380 +sg291130 +S'oil on canvas' +p333381 +sg291132 +S'c. 1675' +p333382 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e70.jpg' +p333383 +sg291136 +S"Many Dutch still-life painters silhouetted their carefully arranged foreground objects against neutral, blank backgrounds. Similarly, the forest\r\nbackdrop here is so dark it nearly conceals a stone archway. The abundance of the sea and the land is suggested by the fishing rod, bait box, and catch of fish that surround a wicker basket overflowing with fruit and vegetables.\n The work forms an allegory on the cycles of life. A nest of birds' eggs implies birth. Full blossoms and ripe fruit suggest maturity. The gnarled tree stump characterizes old age. Ultimately, death appears with the fish and a lizard, being eaten by ants. The wheat and grapes offer salvation by symbolizing Jesus' blessing of bread and wine at the Last Supper.\n An early biographer noted that Mignon was "especially diligent," a quality that this stunning array of textures certainly proves. After training in\r\nhis native Germany, Mignon moved to Utrecht. While there he probably worked in the studio of \n " +p333384 +sa(dp333385 +g291134 +S'Sunrise in the Catskills' +p333386 +sg291137 +S'Thomas Cole' +p333387 +sg291130 +S'oil on canvas' +p333388 +sg291132 +S'1826' +p333389 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00000/a0000068.jpg' +p333390 +sg291136 +g27 +sa(dp333391 +g291134 +S'Blond Figure' +p333392 +sg291137 +S'Raphael Soyer' +p333393 +sg291130 +S'oil on canvas' +p333394 +sg291132 +S'1940s' +p333395 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00002/a000021f.jpg' +p333396 +sg291136 +g27 +sa(dp333397 +g291130 +S'watercolor over graphite on wove paper' +p333398 +sg291132 +S'1914' +p333399 +sg291134 +S'New England Landscape' +p333400 +sg291136 +g27 +sg291137 +S'John Marin' +p333401 +sa(dp333402 +g291134 +S'Hercules Resting from His Labors' +p333403 +sg291137 +S'Giorgio Ghisi' +p333404 +sg291130 +S', 1567' +p333405 +sg291132 +S'\n' +p333406 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbbc.jpg' +p333407 +sg291136 +g27 +sa(dp333408 +g291134 +S'Grotesque' +p333409 +sg291137 +S'Cornelis Floris II' +p333410 +sg291130 +S'engraving on laid paper' +p333411 +sg291132 +S'published 1557' +p333412 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf67.jpg' +p333413 +sg291136 +g27 +sa(dp333414 +g291134 +S'Study of a Mustang' +p333415 +sg291137 +S'Edgar Degas' +p333416 +sg291130 +S'bronze' +p333417 +sg291132 +S'original wax 1860s, cast by 1921' +p333418 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c0b.jpg' +p333419 +sg291136 +g27 +sa(dp333420 +g291134 +S'Horse Walking' +p333421 +sg291137 +S'Edgar Degas' +p333422 +sg291130 +S'bronze' +p333423 +sg291132 +S'original wax possibly early 1870s, cast c. 1920/1921' +p333424 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c0c.jpg' +p333425 +sg291136 +g27 +sa(dp333426 +g291134 +S'Autumn' +p333427 +sg291137 +S'Artist Information (' +p333428 +sg291130 +S'(artist after)' +p333429 +sg291132 +S'\n' +p333430 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cff9.jpg' +p333431 +sg291136 +g27 +sa(dp333432 +g291134 +S'Afternoon Tea Party' +p333433 +sg291137 +S'Mary Cassatt' +p333434 +sg291130 +S'drypoint and aquatint with touches of gold paint on wove paper' +p333435 +sg291132 +S'1890/1891' +p333436 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa4b.jpg' +p333437 +sg291136 +g27 +sa(dp333438 +g291134 +S'Woman Bathing' +p333439 +sg291137 +S'Mary Cassatt' +p333440 +sg291130 +S'color drypoint and aquatint on heavy laid paper' +p333441 +sg291132 +S'1890-1891' +p333442 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006714.jpg' +p333443 +sg291136 +g27 +sa(dp333444 +g291134 +S'The Fitting' +p333445 +sg291137 +S'Mary Cassatt' +p333446 +sg291130 +S'drypoint and aquatint on heavy laid paper' +p333447 +sg291132 +S'1890/1891' +p333448 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fa40.jpg' +p333449 +sg291136 +g27 +sa(dp333450 +g291134 +S"Fairy Connoisseurs Inspecting Mr. Frederick Locker's Collection of Drawings" +p333451 +sg291137 +S'George Cruikshank' +p333452 +sg291130 +S'watercolor and graphite on wove paper' +p333453 +sg291132 +S'1867' +p333454 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c0c.jpg' +p333455 +sg291136 +g27 +sa(dp333456 +g291134 +S"Fairy Connoisseurs Inspecting Mr. Frederick Locker's Collection of Drawings" +p333457 +sg291137 +S'George Cruikshank' +p333458 +sg291130 +S'etching in black on wove paper' +p333459 +sg291132 +S'1868' +p333460 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cc6.jpg' +p333461 +sg291136 +g27 +sa(dp333462 +g291134 +S'Fantastic Vases' +p333463 +sg291137 +S'Stefano Della Bella' +p333464 +sg291130 +S'etching on laid paper' +p333465 +sg291132 +S'probably 1646' +p333466 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c808.jpg' +p333467 +sg291136 +g27 +sa(dp333468 +g291134 +S'Fantastic Vases' +p333469 +sg291137 +S'Stefano Della Bella' +p333470 +sg291130 +S'etching on laid paper' +p333471 +sg291132 +S'probably 1646' +p333472 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c806.jpg' +p333473 +sg291136 +g27 +sa(dp333474 +g291134 +S'Fantastic Vases' +p333475 +sg291137 +S'Stefano Della Bella' +p333476 +sg291130 +S'etching on laid paper' +p333477 +sg291132 +S'probably 1646' +p333478 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c804.jpg' +p333479 +sg291136 +g27 +sa(dp333480 +g291134 +S'Fantastic Vases' +p333481 +sg291137 +S'Stefano Della Bella' +p333482 +sg291130 +S'etching on laid paper' +p333483 +sg291132 +S'probably 1646' +p333484 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c80e.jpg' +p333485 +sg291136 +g27 +sa(dp333486 +g291134 +S'Ballet Dancer' +p333487 +sg291137 +S'Jean-Louis Forain' +p333488 +sg291130 +S'pastel on blue wove paper; laid down' +p333489 +sg291132 +S'unknown date\n' +p333490 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d17.jpg' +p333491 +sg291136 +g27 +sa(dp333492 +g291130 +S'watercolor over graphite on wove paper' +p333493 +sg291132 +S'1947' +p333494 +sg291134 +S'Willow and Pool in Spring' +p333495 +sg291136 +g27 +sg291137 +S'Arthur Mayger Hind' +p333496 +sa(dp333497 +g291130 +S'brown wash over graphite on laid paper' +p333498 +sg291132 +S'1928' +p333499 +sg291134 +S'Landscape near Meersburg' +p333500 +sg291136 +g27 +sg291137 +S'Arthur Mayger Hind' +p333501 +sa(dp333502 +g291130 +S'pen and black ink with brown wash over graphite on wove paper' +p333503 +sg291132 +S'1929' +p333504 +sg291134 +S'Barn near Henley-on-Thames' +p333505 +sg291136 +g27 +sg291137 +S'Arthur Mayger Hind' +p333506 +sa(dp333507 +g291134 +S'Landscape with High Cliffs, River, and City' +p333508 +sg291137 +S'Augustin Hirschvogel' +p333509 +sg291130 +S'etching on laid paper' +p333510 +sg291132 +S'1546' +p333511 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ab/a000abbf.jpg' +p333512 +sg291136 +g27 +sa(dp333513 +g291130 +S'color mezzotint on wove paper' +p333514 +sg291132 +S'unknown date\n' +p333515 +sg291134 +S'Still Life with Apple and Walnuts' +p333516 +sg291136 +g27 +sg291137 +S'Wako Ito' +p333517 +sa(dp333518 +g291130 +S'color mezzotint on Arches wove paper' +p333519 +sg291132 +S'unknown date\n' +p333520 +sg291134 +S'Still Life with Strawberries' +p333521 +sg291136 +g27 +sg291137 +S'Wako Ito' +p333522 +sa(dp333523 +g291130 +S'lithograph in blue and light brown on beige wove paper' +p333524 +sg291132 +S'1903' +p333525 +sg291134 +S'Peasant Woman in a Blue Shawl' +p333526 +sg291136 +g27 +sg291137 +S'K\xc3\xa4the Kollwitz' +p333527 +sa(dp333528 +g291130 +S'drypoint and roulette in black on wove paper' +p333529 +sg291132 +S'1966' +p333530 +sg291134 +S'Island' +p333531 +sg291136 +g27 +sg291137 +S'Leonard Lehrer' +p333532 +sa(dp333533 +g291130 +S'lithograph in black on Rives BFK paper' +p333534 +sg291132 +S'1971' +p333535 +sg291134 +S'Welshpool' +p333536 +sg291136 +g27 +sg291137 +S'Leonard Lehrer' +p333537 +sa(dp333538 +g291130 +S'roulette in black on Rives BFK paper' +p333539 +sg291132 +S'1966' +p333540 +sg291134 +S'Inlet' +p333541 +sg291136 +g27 +sg291137 +S'Leonard Lehrer' +p333542 +sa(dp333543 +g291130 +S'lithograph in black on Rives BFK paper' +p333544 +sg291132 +S'1972' +p333545 +sg291134 +S'Sabika' +p333546 +sg291136 +g27 +sg291137 +S'Leonard Lehrer' +p333547 +sa(dp333548 +g291130 +S'watercolor on wove paper' +p333549 +sg291132 +S'1926' +p333550 +sg291134 +S'Antwerp' +p333551 +sg291136 +g27 +sg291137 +S'James McBey' +p333552 +sa(dp333553 +g291130 +S'aquatint with etching, scraping, and burnishing in black on wove paper' +p333554 +sg291132 +S'1978' +p333555 +sg291134 +S'Alverthorpe Park, Jenkintown, Pa.' +p333556 +sg291136 +g27 +sg291137 +S'Tony Rosati' +p333557 +sa(dp333558 +g291134 +S'Winter in Prague' +p333559 +sg291137 +S'T. Frantisek Simon' +p333560 +sg291130 +S'color etching and aquatint with roulette on laid paper' +p333561 +sg291132 +S'unknown date\n' +p333562 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000db/a000db7e.jpg' +p333563 +sg291136 +g27 +sa(dp333564 +g291130 +S'lithograph on wove paper' +p333565 +sg291132 +S'unknown date\n' +p333566 +sg291134 +S'Mision San Luis Rey de Francia' +p333567 +sg291136 +g27 +sg291137 +S'James Jones' +p333568 +sa(dp333569 +g291130 +S'lithograph on wove paper' +p333570 +sg291132 +S'unknown date\n' +p333571 +sg291134 +S'Mision San Diego de Alcala' +p333572 +sg291136 +g27 +sg291137 +S'James Jones' +p333573 +sa(dp333574 +g291130 +S'lithograph on wove paper' +p333575 +sg291132 +S'unknown date\n' +p333576 +sg291134 +S'Mision Nuestra Senora La Reina de Los Angeles' +p333577 +sg291136 +g27 +sg291137 +S'James Jones' +p333578 +sa(dp333579 +g291130 +S'lithograph on wove paper' +p333580 +sg291132 +S'unknown date\n' +p333581 +sg291134 +S'Mision San Carlos de Monterey' +p333582 +sg291136 +g27 +sg291137 +S'James Jones' +p333583 +sa(dp333584 +g291130 +S'lithograph on wove paper' +p333585 +sg291132 +S'unknown date\n' +p333586 +sg291134 +S'Mision San Carlos de Borromeo de Carmelo' +p333587 +sg291136 +g27 +sg291137 +S'James Jones' +p333588 +sa(dp333589 +g291130 +S'lithograph on wove paper' +p333590 +sg291132 +S'unknown date\n' +p333591 +sg291134 +S'Mision San Francisco de Solano' +p333592 +sg291136 +g27 +sg291137 +S'James Jones' +p333593 +sa(dp333594 +g291130 +S'lithograph on wove paper' +p333595 +sg291132 +S'unknown date\n' +p333596 +sg291134 +S'Mision San Antonio de Padua' +p333597 +sg291136 +g27 +sg291137 +S'James Jones' +p333598 +sa(dp333599 +g291130 +S'lithograph on wove paper' +p333600 +sg291132 +S'unknown date\n' +p333601 +sg291134 +S'Mision San Francisco de Asis' +p333602 +sg291136 +g27 +sg291137 +S'James Jones' +p333603 +sa(dp333604 +g291130 +S'lithograph on wove paper' +p333605 +sg291132 +S'unknown date\n' +p333606 +sg291134 +S'Mision Santa Clara' +p333607 +sg291136 +g27 +sg291137 +S'James Jones' +p333608 +sa(dp333609 +g291130 +S'lithograph on wove paper' +p333610 +sg291132 +S'unknown date\n' +p333611 +sg291134 +S'Mision de Santa Cruz' +p333612 +sg291136 +g27 +sg291137 +S'James Jones' +p333613 +sa(dp333614 +g291130 +S'lithograph on wove paper' +p333615 +sg291132 +S'unknown date\n' +p333616 +sg291134 +S'Mision San Jose' +p333617 +sg291136 +g27 +sg291137 +S'James Jones' +p333618 +sa(dp333619 +g291130 +S'lithograph on wove paper' +p333620 +sg291132 +S'unknown date\n' +p333621 +sg291134 +S'Mision Santa Margarita' +p333622 +sg291136 +g27 +sg291137 +S'James Jones' +p333623 +sa(dp333624 +g291130 +S'lithograph on wove paper' +p333625 +sg291132 +S'unknown date\n' +p333626 +sg291134 +S'Mision San Fernando Rey de Espana' +p333627 +sg291136 +g27 +sg291137 +S'James Jones' +p333628 +sa(dp333629 +g291130 +S'wood' +p333630 +sg291132 +S'1968' +p333631 +sg291134 +S'Schwamengang Hills' +p333632 +sg291136 +g27 +sg291137 +S'Raoul Hague' +p333633 +sa(dp333634 +g291134 +S'Woman Seated in an Armchair' +p333635 +sg291137 +S'Henri Matisse' +p333636 +sg291130 +S'oil on canvas' +p333637 +sg291132 +S'1940' +p333638 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e01.jpg' +p333639 +sg291136 +g27 +sa(dp333640 +g291134 +S'Harlequin Musician' +p333641 +sg291137 +S'Pablo Picasso' +p333642 +sg291130 +S'oil on canvas' +p333643 +sg291132 +S'1924' +p333644 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000df1.jpg' +p333645 +sg291136 +g27 +sa(dp333646 +g291130 +S'brass, cast stone, and wood' +p333647 +sg291132 +S'1927' +p333648 +sg291134 +S'Bird in Space' +p333649 +sg291136 +g27 +sg291137 +S'Constantin Brancusi' +p333650 +sa(dp333651 +g291134 +S'Marie-Rosalie Vanloo' +p333652 +sg291137 +S'Artist Information (' +p333653 +sg291130 +S'(artist after)' +p333654 +sg291132 +S'\n' +p333655 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00055/a00055ad.jpg' +p333656 +sg291136 +g27 +sa(dp333657 +g291134 +S'Seated Cavalier with His Arm Akimbo' +p333658 +sg291137 +S'Jan Miel' +p333659 +sg291130 +S'black chalk and brush and black ink with white heightening on blue paper; laid down' +p333660 +sg291132 +S'unknown date\n' +p333661 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a00070b0.jpg' +p333662 +sg291136 +g27 +sa(dp333663 +g291134 +S'Landscape with a Waterfall' +p333664 +sg291137 +S'Guercino' +p333665 +sg291130 +S', unknown date' +p333666 +sg291132 +S'\n' +p333667 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a000254e.jpg' +p333668 +sg291136 +g27 +sa(dp333669 +g291134 +S'Spotted Bull and Three Sheep' +p333670 +sg291137 +S'Adriaen van de Velde' +p333671 +sg291130 +S'etching on laid paper' +p333672 +sg291132 +S'1670' +p333673 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d45e.jpg' +p333674 +sg291136 +g27 +sa(dp333675 +g291130 +S'(artist)' +p333676 +sg291132 +S'\n' +p333677 +sg291134 +S'Opticorum Libri Sex' +p333678 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333679 +sa(dp333680 +g291130 +S'(artist after)' +p333681 +sg291132 +S'\n' +p333682 +sg291134 +S'Title page for Opticorum Libri Sex' +p333683 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333684 +sa(dp333685 +g291130 +S'(artist after)' +p333686 +sg291132 +S'\n' +p333687 +sg291134 +S'Organo, Obiecto, Natvraq. Visvs.' +p333688 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333689 +sa(dp333690 +g291130 +S'(artist after)' +p333691 +sg291132 +S'\n' +p333692 +sg291134 +S'Radio Optico et Horoptere' +p333693 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333694 +sa(dp333695 +g291130 +S'(artist after)' +p333696 +sg291132 +S'\n' +p333697 +sg291134 +S'Commvnivm Obiectorvm Cognitione' +p333698 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333699 +sa(dp333700 +g291130 +S'(artist after)' +p333701 +sg291132 +S'\n' +p333702 +sg291134 +S'Fallaciis Aspectvs' +p333703 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333704 +sa(dp333705 +g291130 +S'(artist after)' +p333706 +sg291132 +S'\n' +p333707 +sg291134 +S'Lvminoso et Opaco' +p333708 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333709 +sa(dp333710 +g291130 +S'(artist after)' +p333711 +sg291132 +S'\n' +p333712 +sg291134 +S'Proiectionibvs' +p333713 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333714 +sa(dp333715 +g291134 +S'A Loch in Scotland' +p333716 +sg291137 +S'George Fennel Robson' +p333717 +sg291130 +S'watercolor over graphite on wove paper' +p333718 +sg291132 +S'unknown date\n' +p333719 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005adf.jpg' +p333720 +sg291136 +g27 +sa(dp333721 +g291134 +S'Ladies and Gentlemen in a Country Park' +p333722 +sg291137 +S'Paul Sandby' +p333723 +sg291130 +S'pen and black ink and graphite on laid paper' +p333724 +sg291132 +S'unknown date\n' +p333725 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a00072d1.jpg' +p333726 +sg291136 +g27 +sa(dp333727 +g291134 +S'A Young Man with Flowing Hair' +p333728 +sg291137 +S'Jacob Matthias Schmutzer' +p333729 +sg291130 +S'red and brown chalk on laid paper' +p333730 +sg291132 +S'1777' +p333731 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b9/a000b97c.jpg' +p333732 +sg291136 +g27 +sa(dp333733 +g291130 +S'(artist)' +p333734 +sg291132 +S'\n' +p333735 +sg291134 +S'Album Amicorum' +p333736 +sg291136 +g27 +sg291137 +S'Artist Information (' +p333737 +sa(dp333738 +g291130 +S'watercolor over graphite on laid paper' +p333739 +sg291132 +S'c. 1789' +p333740 +sg291134 +S'Father Time by a Tombstone' +p333741 +sg291136 +g27 +sg291137 +S'C. del Sasso' +p333742 +sa(dp333743 +g291130 +S'page size: 11.5 x 19 cm (4 1/2 x 7 1/2 in.)' +p333744 +sg291132 +S'\nwatercolor on laid paper' +p333745 +sg291134 +S'Garden Design with a Pavilion and Stream' +p333746 +sg291136 +g27 +sg291137 +S'German 18th Century' +p333747 +sa(dp333748 +g291130 +S'page size: 11.5 x 19 cm (4 1/2 x 7 1/2 in.)' +p333749 +sg291132 +S'\ngraphite on laid paper' +p333750 +sg291134 +S'Architectural Sketch of an Interior' +p333751 +sg291136 +g27 +sg291137 +S'German 18th Century' +p333752 +sa(dp333753 +g291130 +S'page size: 11.5 x 19 cm (4 1/2 x 7 1/2 in.)' +p333754 +sg291132 +S'\nwatercolor on laid paper' +p333755 +sg291134 +S'Distressed Woman in a Cemetery' +p333756 +sg291136 +g27 +sg291137 +S'German 18th Century' +p333757 +sa(dp333758 +g291130 +S'page size: 11.5 x 19 cm (4 1/2 x 7 1/2 in.)' +p333759 +sg291132 +S'\nwatercolor on laid paper' +p333760 +sg291134 +S'Ruins and Resting Goatherders' +p333761 +sg291136 +g27 +sg291137 +S'German 18th Century' +p333762 +sa(dp333763 +g291130 +S'page size: 11.5 x 19 cm (4 1/2 x 7 1/2 in.)' +p333764 +sg291132 +S'\nwatercolor on laid paper' +p333765 +sg291134 +S'Landscape with Village near a Lake' +p333766 +sg291136 +g27 +sg291137 +S'German 18th Century' +p333767 +sa(dp333768 +g291130 +S'watercolor on laid paper' +p333769 +sg291132 +S'1788' +p333770 +sg291134 +S'Young Men and a Dog Wading in a Pond' +p333771 +sg291136 +g27 +sg291137 +S'Domenico Artaria' +p333772 +sa(dp333773 +g291130 +S'gouache on laid paper' +p333774 +sg291132 +S'1788' +p333775 +sg291134 +S'A Young Lady Inviting Gentlemen to Tea' +p333776 +sg291136 +g27 +sg291137 +S'Johann Meyrl' +p333777 +sa(dp333778 +g291134 +S'Saint Anthony of Padua' +p333779 +sg291137 +S'Guercino' +p333780 +sg291130 +S', unknown date' +p333781 +sg291132 +S'\n' +p333782 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9a2.jpg' +p333783 +sg291136 +g27 +sa(dp333784 +g291134 +S'A Country Road across an Ancient Bridge' +p333785 +sg291137 +S'Jean-Jacques de Boissieu' +p333786 +sg291130 +S'brown wash over graphite on wove paper' +p333787 +sg291132 +S'unknown date\n' +p333788 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a0007017.jpg' +p333789 +sg291136 +g27 +sa(dp333790 +g291134 +S'Saint John the Baptist' +p333791 +sg291137 +S'Fran\xc3\xa7ois Le Moyne' +p333792 +sg291130 +S'black chalk with white heightening on brown paper; laid down' +p333793 +sg291132 +S'c. 1717' +p333794 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a00025eb.jpg' +p333795 +sg291136 +g27 +sa(dp333796 +g291134 +S'Rococo Cartouche with Allegorical Figures' +p333797 +sg291137 +S'Johann Daniel Herz the Elder' +p333798 +sg291130 +S'red and black chalk on laid paper' +p333799 +sg291132 +S'unknown date\n' +p333800 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00079/a00079a6.jpg' +p333801 +sg291136 +g27 +sa(dp333802 +g291134 +S'Ceres Searching for Persephone' +p333803 +sg291137 +S'Michel Anguier' +p333804 +sg291130 +S'bronze' +p333805 +sg291132 +S'model 1652, cast probably 1652/1670s' +p333806 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002bff.jpg' +p333807 +sg291136 +g27 +sa(dp333808 +g291134 +S'The Holy Family' +p333809 +sg291137 +S'Artist Information (' +p333810 +sg291130 +S'(artist after)' +p333811 +sg291132 +S'\n' +p333812 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce44.jpg' +p333813 +sg291136 +g27 +sa(dp333814 +g291134 +S'Robert Dudley, Earl of Leicester' +p333815 +sg291137 +S'Hendrick Goltzius' +p333816 +sg291130 +S', 1586' +p333817 +sg291132 +S'\n' +p333818 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce31.jpg' +p333819 +sg291136 +g27 +sa(dp333820 +g291130 +S'engraving on three sheets of laid paper; laid down' +p333821 +sg291132 +S'1592' +p333822 +sg291134 +S'The Table of Cebes' +p333823 +sg291136 +g27 +sg291137 +S'Jacob Matham' +p333824 +sa(dp333825 +g291134 +S'Mountainous Coast with Travelers' +p333826 +sg291137 +S'Paul Sandby' +p333827 +sg291130 +S'etching and aquatint in brown on wove paper' +p333828 +sg291132 +S'1762/1774' +p333829 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d77.jpg' +p333830 +sg291136 +g27 +sa(dp333831 +g291134 +S'An Arcadian Landscape' +p333832 +sg291137 +S'George Barret, Jr.' +p333833 +sg291130 +S'watercolor on wove paper' +p333834 +sg291132 +S'unknown date\n' +p333835 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f2e.jpg' +p333836 +sg291136 +g27 +sa(dp333837 +g291134 +S'Sigbert Marzynski' +p333838 +sg291137 +S'Max Liebermann' +p333839 +sg291130 +S'drypoint on wove paper [before steel facing]' +p333840 +sg291132 +S'unknown date\n' +p333841 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b722.jpg' +p333842 +sg291136 +g27 +sa(dp333843 +g291134 +S'Sigbert Marzynski' +p333844 +sg291137 +S'Max Liebermann' +p333845 +sg291130 +S'drypoint on wove paper [after steel facing]' +p333846 +sg291132 +S'unknown date\n' +p333847 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00059/a0005922.jpg' +p333848 +sg291136 +g27 +sa(dp333849 +g291134 +S'Hyman Marzynski' +p333850 +sg291137 +S'Max Liebermann' +p333851 +sg291130 +S'drypoint on wove paper' +p333852 +sg291132 +S'unknown date\n' +p333853 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00058/a00058df.jpg' +p333854 +sg291136 +g27 +sa(dp333855 +g291130 +S'watercolor over graphite on wove paper' +p333856 +sg291132 +S'1935' +p333857 +sg291134 +S'Striker' +p333858 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p333859 +sa(dp333860 +g291130 +S'pen and black ink and brush and black ink over graphite on wove paper' +p333861 +sg291132 +S'1950' +p333862 +sg291134 +S'Chance' +p333863 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p333864 +sa(dp333865 +g291130 +S'colored crayon on folded sheet of japan paper' +p333866 +sg291132 +S'1951' +p333867 +sg291134 +S'Dance I [one of two drawings on folded sheet]' +p333868 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p333869 +sa(dp333870 +g291130 +S'crayon on folded sheet of japan paper' +p333871 +sg291132 +S'1951' +p333872 +sg291134 +S'Dance II [one of two drawings on folded sheet]' +p333873 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p333874 +sa(dp333875 +g291130 +S'watercolor and acrylic paint on laid paper' +p333876 +sg291132 +S'1968' +p333877 +sg291134 +S'Midsummer Night' +p333878 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p333879 +sa(dp333880 +g291130 +S'watercolor and graphite on laid paper' +p333881 +sg291132 +S'1973' +p333882 +sg291134 +S'Night Wanderer' +p333883 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p333884 +sa(dp333885 +g291130 +S'watercolor and pastel with ink marker and pen and black ink on wove paper' +p333886 +sg291132 +S'1977' +p333887 +sg291134 +S'Nova' +p333888 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p333889 +sa(dp333890 +g291130 +S'brush and black ink over watercolor on wove paper' +p333891 +sg291132 +S'1979' +p333892 +sg291134 +S'Standard Bearer' +p333893 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p333894 +sa(dp333895 +g291130 +S'watercolor and pastel on laid paper' +p333896 +sg291132 +S'1982' +p333897 +sg291134 +S'Interaction' +p333898 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p333899 +sa(dp333900 +g291130 +S'brush and black ink over graphite on wove paper' +p333901 +sg291132 +S'1934' +p333902 +sg291134 +S'Protest' +p333903 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p333904 +sa(dp333905 +g291130 +S'watercolor, black chalk, and graphite on wove paper' +p333906 +sg291132 +S'1951' +p333907 +sg291134 +S'Argo' +p333908 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p333909 +sa(dp333910 +g291130 +S'ink and watercolor on wove paper' +p333911 +sg291132 +S'1954' +p333912 +sg291134 +S'City Night' +p333913 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p333914 +sa(dp333915 +g291130 +S'pen and black ink with brush and black and blue-gray inks on laminated wove paper' +p333916 +sg291132 +S'1956' +p333917 +sg291134 +S'Summer [recto]' +p333918 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p333919 +sa(dp333920 +g291130 +S'pen and black ink with gray and blue-gray washes over graphite on laminated wove paper' +p333921 +sg291132 +S'1961' +p333922 +sg291134 +S'Untitled (Reclining Nude) [verso]' +p333923 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p333924 +sa(dp333925 +g291130 +S'oil and crayon on laid paper' +p333926 +sg291132 +S'1973' +p333927 +sg291134 +S'Peter the Great' +p333928 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p333929 +sa(dp333930 +g291130 +S'watercolor, pastel, ink marker, and ballpoint pen on wove paper' +p333931 +sg291132 +S'1975' +p333932 +sg291134 +S'Grand Master' +p333933 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p333934 +sa(dp333935 +g291130 +S'watercolor, gouache, chalk, graphite, and collage on wove paper' +p333936 +sg291132 +S'1977' +p333937 +sg291134 +S'Night Guard' +p333938 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p333939 +sa(dp333940 +g291130 +S'watercolor and pastel on Rives BFK paper' +p333941 +sg291132 +S'1983' +p333942 +sg291134 +S'Cressida' +p333943 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p333944 +sa(dp333945 +g291130 +S'5-color lithograph with woodcut overlay and hand-coloring on Rives BFK paper' +p333946 +sg291132 +S'1989' +p333947 +sg291134 +S'Bright Surround' +p333948 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p333949 +sa(dp333950 +g291130 +S'drypoint in black on Rives BFK paper' +p333951 +sg291132 +S'probably c. 1988' +p333952 +sg291134 +S'The Australian Scapegoat' +p333953 +sg291136 +g27 +sg291137 +S'Arthur Boyd' +p333954 +sa(dp333955 +g291130 +S'Overall (Each sheet approx): 55.8 x 76.2 cm (21 15/16 x 30 in.)\r\naccessory size: 57.8 x 80 x 2.5 cm (22 3/4 x 31 1/2 x 1 in.)' +p333956 +sg291132 +S'\nportfolio with ten prints in various media, plus two introductory sheets with text, illustrations, and artist biographies' +p333957 +sg291134 +S'The Australian Legal Group Contemporary Print Collection' +p333958 +sg291136 +g27 +sg291137 +S'Various Artists' +p333959 +sa(dp333960 +g291130 +S'10-color screenprint on Fabriano paper' +p333961 +sg291132 +S'probably c. 1988' +p333962 +sg291134 +S'The Glasshouse Mountains' +p333963 +sg291136 +g27 +sg291137 +S'Lawrence Daws' +p333964 +sa(dp333965 +g291130 +S'etching and open bite with aquatint in brown and blue-green on Velin Arches paper' +p333966 +sg291132 +S'1987' +p333967 +sg291134 +S'Cranes' +p333968 +sg291136 +g27 +sg291137 +S'Robert Juniper' +p333969 +sa(dp333970 +g291130 +S'5-color lithograph on Arches paper' +p333971 +sg291132 +S'1988' +p333972 +sg291134 +S'South Coast Garden' +p333973 +sg291136 +g27 +sg291137 +S'Colin Lanceley' +p333974 +sa(dp333975 +g291130 +S'4-color linocut on Rives BFK paper' +p333976 +sg291132 +S'1987' +p333977 +sg291134 +S'Wawulak Wulay Ga Wititji (The Two Wawulak Sisters and the Freshwater Python/Rainbow Serpent' +p333978 +sg291136 +g27 +sg291137 +S'Banduk Marika' +p333979 +sa(dp333980 +g291130 +S'4-color lithograph on wove paper' +p333981 +sg291132 +S'probably c. 1988' +p333982 +sg291134 +S'Shakespeare Sonnet Lithograph No. 1' +p333983 +sg291136 +g27 +sg291137 +S'Sidney Nolan' +p333984 +sa(dp333985 +g291130 +S'5-color lithograph on Rives BFK paper' +p333986 +sg291132 +S'1988' +p333987 +sg291134 +S'Echidna Upside Down' +p333988 +sg291136 +g27 +sg291137 +S'John Olsen' +p333989 +sa(dp333990 +g291130 +S'4-color screen print on Rives BFK paper' +p333991 +sg291132 +S'1988' +p333992 +sg291134 +S'Port Liardet' +p333993 +sg291136 +g27 +sg291137 +S'Jan Senbergs' +p333994 +sa(dp333995 +g291130 +S'4-color lithograph on Arches paper' +p333996 +sg291132 +S'1988' +p333997 +sg291134 +S'Saddle' +p333998 +sg291136 +g27 +sg291137 +S'Tim Storrier' +p333999 +sa(dp334000 +g291130 +S'4-color etching, soft-ground etching, aquatint, and scraping on Rives BFK paper' +p334001 +sg291132 +S'1988' +p334002 +sg291134 +S'Shaft' +p334003 +sg291136 +g27 +sg291137 +S'Ann Thomson' +p334004 +sa(dp334005 +g291130 +S'softground etching and aquatint on Rives BFK paper' +p334006 +sg291132 +S'1980' +p334007 +sg291134 +S'Drawing Boards' +p334008 +sg291136 +g27 +sg291137 +S'Richard Smith' +p334009 +sa(dp334010 +g291130 +g27 +sg291132 +S'(publisher)' +p334011 +sg291134 +S'What is Dragging Me' +p334012 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334013 +sa(dp334014 +g291130 +g27 +sg291132 +S'(publisher)' +p334015 +sg291134 +S'Berlin Dream Stamp' +p334016 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334017 +sa(dp334018 +g291130 +g27 +sg291132 +S'(publisher)' +p334019 +sg291134 +S'Foot Print (Left)' +p334020 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334021 +sa(dp334022 +g291130 +g27 +sg291132 +S'(publisher)' +p334023 +sg291134 +S'Foot Print (Right)' +p334024 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334025 +sa(dp334026 +g291130 +g27 +sg291132 +S'(publisher)' +p334027 +sg291134 +S'Half Foot' +p334028 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334029 +sa(dp334030 +g291130 +g27 +sg291132 +S'(publisher)' +p334031 +sg291134 +S'Male Aggression' +p334032 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334033 +sa(dp334034 +g291130 +g27 +sg291132 +S'(publisher)' +p334035 +sg291134 +S'Berlin Dream' +p334036 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334037 +sa(dp334038 +g291130 +g27 +sg291132 +S'(publisher)' +p334039 +sg291134 +S'Berlin Dream' +p334040 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334041 +sa(dp334042 +g291130 +g27 +sg291132 +S'(publisher)' +p334043 +sg291134 +S'Concentric Bearings, B' +p334044 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334045 +sa(dp334046 +g291130 +g27 +sg291132 +S'(publisher)' +p334047 +sg291134 +S'Concentric Bearings, D' +p334048 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334049 +sa(dp334050 +g291130 +g27 +sg291132 +S'(publisher)' +p334051 +sg291134 +S'Concentric Bearings, C' +p334052 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334053 +sa(dp334054 +g291130 +g27 +sg291132 +S'(publisher)' +p334055 +sg291134 +S'December 1984' +p334056 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334057 +sa(dp334058 +g291130 +g27 +sg291132 +S'(publisher)' +p334059 +sg291134 +S'Pyramid and Cube' +p334060 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334061 +sa(dp334062 +g291130 +g27 +sg291132 +S'(publisher)' +p334063 +sg291134 +S'Nebula One' +p334064 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334065 +sa(dp334066 +g291130 +g27 +sg291132 +S'(publisher)' +p334067 +sg291134 +S'Nebula Two' +p334068 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334069 +sa(dp334070 +g291130 +g27 +sg291132 +S'(publisher)' +p334071 +sg291134 +S'Scrabbling' +p334072 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334073 +sa(dp334074 +g291130 +g27 +sg291132 +S'(publisher)' +p334075 +sg291134 +S'Greyland' +p334076 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334077 +sa(dp334078 +g291130 +g27 +sg291132 +S'(publisher)' +p334079 +sg291134 +S'Serge' +p334080 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334081 +sa(dp334082 +g291130 +g27 +sg291132 +S'(publisher)' +p334083 +sg291134 +S'Black & Grey' +p334084 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334085 +sa(dp334086 +g291130 +g27 +sg291132 +S'(publisher)' +p334087 +sg291134 +S'Twelve' +p334088 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334089 +sa(dp334090 +g291130 +g27 +sg291132 +S'(publisher)' +p334091 +sg291134 +S"Mountain's Gate" +p334092 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334093 +sa(dp334094 +g291130 +g27 +sg291132 +S'(publisher)' +p334095 +sg291134 +S'Double Room' +p334096 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334097 +sa(dp334098 +g291130 +g27 +sg291132 +S'(publisher)' +p334099 +sg291134 +S'Not Deceived' +p334100 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334101 +sa(dp334102 +g291130 +g27 +sg291132 +S'(publisher)' +p334103 +sg291134 +S'Fragrant Breath' +p334104 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334105 +sa(dp334106 +g291134 +S'Deep Ground' +p334107 +sg291137 +S'Artist Information (' +p334108 +sg291130 +g27 +sg291132 +S'(publisher)' +p334109 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a98.jpg' +p334110 +sg291136 +g27 +sa(dp334111 +g291130 +g27 +sg291132 +S'(publisher)' +p334112 +sg291134 +S'Green Buddha' +p334113 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334114 +sa(dp334115 +g291130 +g27 +sg291132 +S'(publisher)' +p334116 +sg291134 +S'Swiss Survey #2' +p334117 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334118 +sa(dp334119 +g291130 +g27 +sg291132 +S'(publisher)' +p334120 +sg291134 +S'Swiss Survey #3' +p334121 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334122 +sa(dp334123 +g291130 +g27 +sg291132 +S'(publisher)' +p334124 +sg291134 +S'Platform #3' +p334125 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334126 +sa(dp334127 +g291130 +g27 +sg291132 +S'(publisher)' +p334128 +sg291134 +S'Platform #1' +p334129 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334130 +sa(dp334131 +g291130 +g27 +sg291132 +S'(publisher)' +p334132 +sg291134 +S'The Marriage in Hawaii of David and Ann' +p334133 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334134 +sa(dp334135 +g291130 +g27 +sg291132 +S'(publisher)' +p334136 +sg291134 +S'House Doodle' +p334137 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334138 +sa(dp334139 +g291130 +g27 +sg291132 +S'(publisher)' +p334140 +sg291134 +S'Mexican Hotel Garden' +p334141 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334142 +sa(dp334143 +g291130 +g27 +sg291132 +S'(publisher)' +p334144 +sg291134 +S'Ann in the Studio' +p334145 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334146 +sa(dp334147 +g291130 +g27 +sg291132 +S'(publisher)' +p334148 +sg291134 +S'Cupecoy' +p334149 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334150 +sa(dp334151 +g291130 +g27 +sg291132 +S'(publisher)' +p334152 +sg291134 +S'Cul de Sac' +p334153 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334154 +sa(dp334155 +g291130 +g27 +sg291132 +S'(publisher)' +p334156 +sg291134 +S'Baie Rouge' +p334157 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334158 +sa(dp334159 +g291130 +g27 +sg291132 +S'(publisher)' +p334160 +sg291134 +S'Orient Beach' +p334161 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334162 +sa(dp334163 +g291130 +g27 +sg291132 +S'(publisher)' +p334164 +sg291134 +S'Philodendron I' +p334165 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334166 +sa(dp334167 +g291130 +g27 +sg291132 +S'(publisher)' +p334168 +sg291134 +S'Philodendron II' +p334169 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334170 +sa(dp334171 +g291130 +g27 +sg291132 +S'(publisher)' +p334172 +sg291134 +S'Calla Lily II' +p334173 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334174 +sa(dp334175 +g291130 +g27 +sg291132 +S'(publisher)' +p334176 +sg291134 +S'Calla Lily III' +p334177 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334178 +sa(dp334179 +g291130 +g27 +sg291132 +S'(publisher)' +p334180 +sg291134 +S'Calla Lily I' +p334181 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334182 +sa(dp334183 +g291130 +g27 +sg291132 +S'(publisher)' +p334184 +sg291134 +S'Dracena II' +p334185 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334186 +sa(dp334187 +g291130 +g27 +sg291132 +S'(publisher)' +p334188 +sg291134 +S'Dracena I' +p334189 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334190 +sa(dp334191 +g291130 +g27 +sg291132 +S'(publisher)' +p334192 +sg291134 +S'Seascape' +p334193 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334194 +sa(dp334195 +g291130 +g27 +sg291132 +S'(publisher)' +p334196 +sg291134 +S'Road Before the Forest' +p334197 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334198 +sa(dp334199 +g291130 +g27 +sg291132 +S'(publisher)' +p334200 +sg291134 +S'The River' +p334201 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334202 +sa(dp334203 +g291130 +S'lithograph, woodcut, and screenprint on Arches 88 paper' +p334204 +sg291132 +S'1985' +p334205 +sg291134 +S'Sunshine through the Clouds' +p334206 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p334207 +sa(dp334208 +g291130 +g27 +sg291132 +S'(publisher)' +p334209 +sg291134 +S'Yellow Brushstroke' +p334210 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334211 +sa(dp334212 +g291130 +g27 +sg291132 +S'(publisher)' +p334213 +sg291134 +S'"When a Leak..."' +p334214 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334215 +sa(dp334216 +g291130 +g27 +sg291132 +S'(publisher)' +p334217 +sg291134 +S'When a Leak.... B+W' +p334218 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334219 +sa(dp334220 +g291130 +g27 +sg291132 +S'(publisher)' +p334221 +sg291134 +S'Red Dance' +p334222 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334223 +sa(dp334224 +g291130 +g27 +sg291132 +S'(publisher)' +p334225 +sg291134 +S'Spinning' +p334226 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334227 +sa(dp334228 +g291130 +g27 +sg291132 +S'(publisher)' +p334229 +sg291134 +S'Tilting' +p334230 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334231 +sa(dp334232 +g291130 +g27 +sg291132 +S'(publisher)' +p334233 +sg291134 +S'Breath-Man' +p334234 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334235 +sa(dp334236 +g291130 +g27 +sg291132 +S'(publisher)' +p334237 +sg291134 +S'The Horizon is a Biological Line' +p334238 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334239 +sa(dp334240 +g291130 +g27 +sg291132 +S'(publisher)' +p334241 +sg291134 +S'Trophy for Chiang Yee' +p334242 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334243 +sa(dp334244 +g291130 +g27 +sg291132 +S'(publisher)' +p334245 +sg291134 +S'Xian in the Evening' +p334246 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334247 +sa(dp334248 +g291130 +g27 +sg291132 +S'(publisher)' +p334249 +sg291134 +S'A Gift for R.R.' +p334250 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334251 +sa(dp334252 +g291130 +g27 +sg291132 +S'(publisher)' +p334253 +sg291134 +S"Lytton's Prologue" +p334254 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334255 +sa(dp334256 +g291130 +g27 +sg291132 +S'(publisher)' +p334257 +sg291134 +S'Morning in Jing Xian' +p334258 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334259 +sa(dp334260 +g291130 +g27 +sg291132 +S'(publisher)' +p334261 +sg291134 +S"L'Imagerie Parisienne" +p334262 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334263 +sa(dp334264 +g291130 +g27 +sg291132 +S'(publisher)' +p334265 +sg291134 +S"Ernie's Mark" +p334266 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334267 +sa(dp334268 +g291130 +g27 +sg291132 +S'(publisher)' +p334269 +sg291134 +S'Robeson' +p334270 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334271 +sa(dp334272 +g291130 +g27 +sg291132 +S'(publisher)' +p334273 +sg291134 +S'Clara' +p334274 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334275 +sa(dp334276 +g291130 +g27 +sg291132 +S'(publisher)' +p334277 +sg291134 +S'Alberta Hunter' +p334278 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334279 +sa(dp334280 +g291130 +g27 +sg291132 +S'(publisher)' +p334281 +sg291134 +S'Glenda Lough' +p334282 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334283 +sa(dp334284 +g291130 +g27 +sg291132 +S'(publisher)' +p334285 +sg291134 +S'Patience' +p334286 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334287 +sa(dp334288 +g291130 +g27 +sg291132 +S'(publisher)' +p334289 +sg291134 +S'Tujunga Blacktop' +p334290 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334291 +sa(dp334292 +g291130 +g27 +sg291132 +S'(publisher)' +p334293 +sg291134 +S'Clara Clara I' +p334294 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334295 +sa(dp334296 +g291130 +g27 +sg291132 +S'(publisher)' +p334297 +sg291134 +S'Clara Clara II' +p334298 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334299 +sa(dp334300 +g291130 +g27 +sg291132 +S'(publisher)' +p334301 +sg291134 +S'Sphynx' +p334302 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334303 +sa(dp334304 +g291130 +g27 +sg291132 +S'(publisher)' +p334305 +sg291134 +S'Provincetown' +p334306 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334307 +sa(dp334308 +g291130 +g27 +sg291132 +S'(publisher)' +p334309 +sg291134 +S'North Dakota' +p334310 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334311 +sa(dp334312 +g291130 +g27 +sg291132 +S'(publisher)' +p334313 +sg291134 +S'Rabbit' +p334314 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334315 +sa(dp334316 +g291130 +g27 +sg291132 +S'(publisher)' +p334317 +sg291134 +S'Gogol I' +p334318 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334319 +sa(dp334320 +g291130 +g27 +sg291132 +S'(publisher)' +p334321 +sg291134 +S'Gogol II' +p334322 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334323 +sa(dp334324 +g291130 +g27 +sg291132 +S'(publisher)' +p334325 +sg291134 +S'Gogol V' +p334326 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334327 +sa(dp334328 +g291130 +g27 +sg291132 +S'(publisher)' +p334329 +sg291134 +S'Gogol IV' +p334330 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334331 +sa(dp334332 +g291130 +S'chine colle woodcut in black on cold pressed Saunders Waterford paper' +p334333 +sg291132 +S'1987/1989' +p334334 +sg291134 +S'The Mead of Poetry #1' +p334335 +sg291136 +g27 +sg291137 +S'Jim Dine' +p334336 +sa(dp334337 +g291130 +S'chine colle woodcut in black on cold pressed Saunders Waterford paper' +p334338 +sg291132 +S'1987/1989' +p334339 +sg291134 +S'The Mead of Poetry #2' +p334340 +sg291136 +g27 +sg291137 +S'Jim Dine' +p334341 +sa(dp334342 +g291130 +S'chine colle woodcut in black on cold pressed Saunders paper' +p334343 +sg291132 +S'1987/1989' +p334344 +sg291134 +S'The Mead of Poetry #3' +p334345 +sg291136 +g27 +sg291137 +S'Jim Dine' +p334346 +sa(dp334347 +g291130 +S'multi-colored etching and woodcut on Arches Cover White paper' +p334348 +sg291132 +S'1987' +p334349 +sg291134 +S'The Oil of Gladness' +p334350 +sg291136 +g27 +sg291137 +S'Jim Dine' +p334351 +sa(dp334352 +g291130 +S'color waxtype, woodcut, lithograph, and screenprint on Saunders Waterford paper' +p334353 +sg291132 +S'1987/1989' +p334354 +sg291134 +S'Blue Face' +p334355 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p334356 +sa(dp334357 +g291130 +S'lithograph, waxtype, woodcut, screenprint, and collage on 638-g/m2 cold-pressed Saunders Waterford paper' +p334358 +sg291132 +S'1989' +p334359 +sg291134 +S'The Mask' +p334360 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p334361 +sa(dp334362 +g291130 +S'color waxtype, woodcut, lithograph, and screenprint on Saunders Waterford paper' +p334363 +sg291132 +S'1987/1989' +p334364 +sg291134 +S'Roads Collar' +p334365 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p334366 +sa(dp334367 +g291130 +S'color waxtype, woodcut, lithograph, and screenprint on Saunders Waterford paper' +p334368 +sg291132 +S'1987/1989' +p334369 +sg291134 +S'Portrait' +p334370 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p334371 +sa(dp334372 +g291130 +S'color waxtype, woodcut, lithograph, and screenprint on Saunders Waterford paper' +p334373 +sg291132 +S'1987/1989' +p334374 +sg291134 +S'Blonde' +p334375 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p334376 +sa(dp334377 +g291130 +S'color waxtype, woodcut, lithograph, and screenprint on Saunders Waterford paper' +p334378 +sg291132 +S'1987/1989' +p334379 +sg291134 +S'Grandpa' +p334380 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p334381 +sa(dp334382 +g291130 +S'color waxtype, woodcut, lithograph, and screenprint on Saunders Waterford paper' +p334383 +sg291132 +S'1987/1989' +p334384 +sg291134 +S'Nude' +p334385 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p334386 +sa(dp334387 +g291130 +S'color lithograph with monoprint collage on Chiri Kozo paper (collage elements on White Somerset Satin paper)' +p334388 +sg291132 +S'1986' +p334389 +sg291134 +S'The Kabuki Blushes' +p334390 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p334391 +sa(dp334392 +g291130 +S'monotype with color lithograph collage on Arches Cover White (collage elements on Arches 88 paper)' +p334393 +sg291132 +S'1986' +p334394 +sg291134 +S'Crosshatch and Mutation' +p334395 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p334396 +sa(dp334397 +g291134 +S'Pieta' +p334398 +sg291137 +S'South German 16th Century' +p334399 +sg291130 +S'bronze' +p334400 +sg291132 +S'c. 1580' +p334401 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dc9.jpg' +p334402 +sg291136 +g27 +sa(dp334403 +g291134 +S'Saint Barbara' +p334404 +sg291137 +S'Sir Edward Coley Burne-Jones' +p334405 +sg291130 +S'egg tempera with oil glazes (?) and shell gold over charcoal and graphite on paper; mounted to canvas' +p334406 +sg291132 +S'1866/1870' +p334407 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022c9.jpg' +p334408 +sg291136 +g27 +sa(dp334409 +g291134 +S'Another Time: 1830 (Autre Temps: 1830)' +p334410 +sg291137 +S'Jacques Villon' +p334411 +sg291130 +S'drypoint in black and color aquatint with some hand-coloring (necklace) on Arches paper' +p334412 +sg291132 +S'1904' +p334413 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e41.jpg' +p334414 +sg291136 +g27 +sa(dp334415 +g291134 +S'Dance Hall Bellevue' +p334416 +sg291137 +S'Ernst Ludwig Kirchner' +p334417 +sg291130 +S'oil on canvas' +p334418 +sg291132 +S'1909/1910' +p334419 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e1a.jpg' +p334420 +sg291136 +g27 +sa(dp334421 +g291134 +S'The Visit - Couple and Newcomer' +p334422 +sg291137 +S'Ernst Ludwig Kirchner' +p334423 +sg291130 +S'oil on canvas' +p334424 +sg291132 +S'1922' +p334425 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e24.jpg' +p334426 +sg291136 +g27 +sa(dp334427 +g291130 +S'4-color lithograph on Japan paper' +p334428 +sg291132 +S'1913' +p334429 +sg291134 +S'Puppets (Hampelmanner)' +p334430 +sg291136 +g27 +sg291137 +S'Emil Nolde' +p334431 +sa(dp334432 +g291134 +S'Voyageurs appr\xc3\xa9ciant de moins en moins les wagons de troisi\xc3\xa8me classe...' +p334433 +sg291137 +S'Honor\xc3\xa9 Daumier' +p334434 +sg291130 +S'lithograph on wove paper' +p334435 +sg291132 +S'published 1856' +p334436 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00057/a00057fe.jpg' +p334437 +sg291136 +g27 +sa(dp334438 +g291134 +S'Danger de porter des jupons-ballons...' +p334439 +sg291137 +S'Honor\xc3\xa9 Daumier' +p334440 +sg291130 +S'lithograph on wove paper' +p334441 +sg291132 +S'published 1857' +p334442 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00094/a00094d1.jpg' +p334443 +sg291136 +g27 +sa(dp334444 +g291134 +S'Ad\xc3\xa9laide...Ad\xc3\xa9laide...il me semble que je vois deja venir la com\xc3\xa8te !!...' +p334445 +sg291137 +S'Honor\xc3\xa9 Daumier' +p334446 +sg291130 +S'lithograph on wove paper' +p334447 +sg291132 +S'published 1857' +p334448 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00094/a00094cf.jpg' +p334449 +sg291136 +g27 +sa(dp334450 +g291134 +S"\xc3\xa7a n'est rien \xc3\x89l\xc3\xa9onore...ca n'est rien..." +p334451 +sg291137 +S'Honor\xc3\xa9 Daumier' +p334452 +sg291130 +S'lithograph on wove paper' +p334453 +sg291132 +S'published 1857' +p334454 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00094/a00094cb.jpg' +p334455 +sg291136 +g27 +sa(dp334456 +g291134 +S'Fragment of the Old City Wall at San Giovanni Laterano' +p334457 +sg291137 +S'Franz Edmund Weirotter' +p334458 +sg291130 +S'etching on laid paper [proof state]' +p334459 +sg291132 +S'1764' +p334460 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d78b.jpg' +p334461 +sg291136 +g27 +sa(dp334462 +g291134 +S'The Pyramid of Sesto near the Gates of St. Pauli in Rome' +p334463 +sg291137 +S'Franz Edmund Weirotter' +p334464 +sg291130 +S'etching on laid paper [proof state]' +p334465 +sg291132 +S'c. 1764' +p334466 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d78c.jpg' +p334467 +sg291136 +g27 +sa(dp334468 +g291134 +S'The Old Palace at Tivoli' +p334469 +sg291137 +S'Franz Edmund Weirotter' +p334470 +sg291130 +S'etching on laid paper [proof state]' +p334471 +sg291132 +S'c. 1764' +p334472 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d78d.jpg' +p334473 +sg291136 +g27 +sa(dp334474 +g291134 +S'The Outskirts of Florence, on the Way to Rome' +p334475 +sg291137 +S'Franz Edmund Weirotter' +p334476 +sg291130 +S'etching on laid paper [proof state]' +p334477 +sg291132 +S'c. 1764' +p334478 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d78e.jpg' +p334479 +sg291136 +g27 +sa(dp334480 +g291134 +S'The Road Crossing Mount Praco, from Ricci to Genoa' +p334481 +sg291137 +S'Franz Edmund Weirotter' +p334482 +sg291130 +S'etching on laid paper [proof state]' +p334483 +sg291132 +S'c. 1764' +p334484 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d78f.jpg' +p334485 +sg291136 +g27 +sa(dp334486 +g291134 +S'Harbor at Livorno' +p334487 +sg291137 +S'Franz Edmund Weirotter' +p334488 +sg291130 +S'etching on laid paper [proof state]' +p334489 +sg291132 +S'c. 1764' +p334490 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d790.jpg' +p334491 +sg291136 +g27 +sa(dp334492 +g291134 +S'Harbor at Livorno' +p334493 +sg291137 +S'Franz Edmund Weirotter' +p334494 +sg291130 +S'etching on laid paper' +p334495 +sg291132 +S'c. 1764' +p334496 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d791.jpg' +p334497 +sg291136 +g27 +sa(dp334498 +g291134 +S'Mythological Figures' +p334499 +sg291137 +S'Taddeo Zuccaro' +p334500 +sg291130 +S'pen and brown ink and brown wash over red chalk, heightened with white, on laid paper; laid down' +p334501 +sg291132 +S'c. 1561' +p334502 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a000751c.jpg' +p334503 +sg291136 +g27 +sa(dp334504 +g291134 +S'Seated Faun' +p334505 +sg291137 +S'Antoine Coypel' +p334506 +sg291130 +S'red and black chalk heightened with white chalk on blue paper' +p334507 +sg291132 +S'1700/1705' +p334508 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a0002429.jpg' +p334509 +sg291136 +g27 +sa(dp334510 +g291134 +S'The Carrying of the Cross' +p334511 +sg291137 +S'Giovanni Battista Piranesi' +p334512 +sg291130 +S'pen and gray-brown ink with gray-brown wash over black chalk on laid paper; laid down' +p334513 +sg291132 +S'1747' +p334514 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00068/a0006826.jpg' +p334515 +sg291136 +g27 +sa(dp334516 +g291134 +S'Head of a Man' +p334517 +sg291137 +S'Artist Information (' +p334518 +sg291130 +S'(artist after)' +p334519 +sg291132 +S'\n' +p334520 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00096/a00096dd.jpg' +p334521 +sg291136 +g27 +sa(dp334522 +g291130 +S'(author)' +p334523 +sg291132 +S'\n' +p334524 +sg291134 +S'Les Chats' +p334525 +sg291136 +g27 +sg291137 +S'Artist Information (' +p334526 +sa(dp334527 +g291134 +S'Manhattan' +p334528 +sg291137 +S'Walker Evans' +p334529 +sg291130 +S'gelatin silver print' +p334530 +sg291132 +S'c. 1928' +p334531 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064aa.jpg' +p334532 +sg291136 +g27 +sa(dp334533 +g291134 +S'New York City' +p334534 +sg291137 +S'Walker Evans' +p334535 +sg291130 +S'gelatin silver print' +p334536 +sg291132 +S'1928-1929' +p334537 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064a9.jpg' +p334538 +sg291136 +g27 +sa(dp334539 +g291130 +S'gelatin silver print' +p334540 +sg291132 +S'1931' +p334541 +sg291134 +S'New Bedford, Massachusetts' +p334542 +sg291136 +g27 +sg291137 +S'Walker Evans' +p334543 +sa(dp334544 +g291134 +S'Coffee Bags, Havana' +p334545 +sg291137 +S'Walker Evans' +p334546 +sg291130 +S'gelatin silver print' +p334547 +sg291132 +S'1933' +p334548 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e46.jpg' +p334549 +sg291136 +g27 +sa(dp334550 +g291134 +S'Breakfast Room, Belle Grove Plantation, White Chapel, Louisiana' +p334551 +sg291137 +S'Walker Evans' +p334552 +sg291130 +S'gelatin silver print' +p334553 +sg291132 +S'1935' +p334554 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e2e.jpg' +p334555 +sg291136 +g27 +sa(dp334556 +g291134 +S'Sidewalk in Vicksburg, Mississippi' +p334557 +sg291137 +S'Walker Evans' +p334558 +sg291130 +S'gelatin silver print' +p334559 +sg291132 +S'1936' +p334560 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064ab.jpg' +p334561 +sg291136 +g27 +sa(dp334562 +g291134 +S'Billboard, Birmingham, Alabama' +p334563 +sg291137 +S'Walker Evans' +p334564 +sg291130 +S'gelatin silver print' +p334565 +sg291132 +S'1936' +p334566 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e45.jpg' +p334567 +sg291136 +g27 +sa(dp334568 +g291134 +S'Barber Shop Interior, Atlanta' +p334569 +sg291137 +S'Walker Evans' +p334570 +sg291130 +S'gelatin silver print' +p334571 +sg291132 +S'1936' +p334572 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d05.jpg' +p334573 +sg291136 +g27 +sa(dp334574 +g291130 +S'gelatin silver print' +p334575 +sg291132 +S'1936' +p334576 +sg291134 +S"Fireplace, Burrough's Bedroom, Hale County, Alabama" +p334577 +sg291136 +g27 +sg291137 +S'Walker Evans' +p334578 +sa(dp334579 +g291134 +S'Tupelo, Mississippi' +p334580 +sg291137 +S'Walker Evans' +p334581 +sg291130 +S'gelatin silver print' +p334582 +sg291132 +S'1936' +p334583 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e2f.jpg' +p334584 +sg291136 +g27 +sa(dp334585 +g291130 +S'gelatin silver print' +p334586 +sg291132 +S'1936' +p334587 +sg291134 +S'Abandoned Ante-Bellum Plantation House, Vicksburg, Mississippi' +p334588 +sg291136 +g27 +sg291137 +S'Walker Evans' +p334589 +sa(dp334590 +g291134 +S'Doorbell' +p334591 +sg291137 +S'Walker Evans' +p334592 +sg291130 +S'gelatin silver print' +p334593 +sg291132 +S'1958' +p334594 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d06.jpg' +p334595 +sg291136 +g27 +sa(dp334596 +g291134 +S'The Fall of the Rebel Angels [recto]' +p334597 +sg291137 +S'Parmigianino' +p334598 +sg291130 +S'pen and brown ink with brown wash on thin laid paper' +p334599 +sg291132 +S'c. 1524/1527' +p334600 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a0007508.jpg' +p334601 +sg291136 +g27 +sa(dp334602 +g291134 +S'Jael and Cisera? [verso]' +p334603 +sg291137 +S'Parmigianino' +p334604 +sg291130 +S'red chalk on thin laid paper' +p334605 +sg291132 +S'c. 1524/1527' +p334606 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a0007509.jpg' +p334607 +sg291136 +g27 +sa(dp334608 +g291134 +S'Lever No. 3' +p334609 +sg291137 +S'Martin Puryear' +p334610 +sg291130 +S'carved and painted wood' +p334611 +sg291132 +S'1989' +p334612 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004a/a0004adf.jpg' +p334613 +sg291136 +S'In the sweeping silhouette of \n While the central form of \n Puryear was born in Washington, DC, in 1941. After earning his BA there from Catholic University, he joined the Peace Corps in Sierra Leone, Africa, where he had the chance to study woodworking techniques such as basketry and carpentry. Puryear then attended the Swedish Royal Academy of Arts in Stockholm and independently continued his studies in woodworking. He received an MFA in sculpture from Yale University, New Haven, Connecticut. In 2007 the Museum of Modern Art, New York, organized a thirty-year retrospective exhibition of his work. Puryear lives and works outside New York City.\n ' +p334614 +sa(dp334615 +g291134 +S'New York Milk Counter' +p334616 +sg291137 +S'Walker Evans' +p334617 +sg291130 +S'gelatin silver print' +p334618 +sg291132 +S'1929-1930' +p334619 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e43.jpg' +p334620 +sg291136 +g27 +sa(dp334621 +g291130 +S'gelatin silver print' +p334622 +sg291132 +S'July 1935' +p334623 +sg291134 +S'Mining Store Company, Westmoreland County, Pennsylvania' +p334624 +sg291136 +g27 +sg291137 +S'Walker Evans' +p334625 +sa(dp334626 +g291134 +S'Signs, Beaufort, South Carolina' +p334627 +sg291137 +S'Walker Evans' +p334628 +sg291130 +S'gelatin silver print' +p334629 +sg291132 +S'March 1936' +p334630 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d31.jpg' +p334631 +sg291136 +g27 +sa(dp334632 +g291130 +S'gelatin silver print' +p334633 +sg291132 +S'c. 1936' +p334634 +sg291134 +S'Vicksburg, Mississippi' +p334635 +sg291136 +g27 +sg291137 +S'Walker Evans' +p334636 +sa(dp334637 +g291130 +S'gelatin silver print' +p334638 +sg291132 +S'c. 1946' +p334639 +sg291134 +S'Labor Anonymous' +p334640 +sg291136 +g27 +sg291137 +S'Walker Evans' +p334641 +sa(dp334642 +g291130 +S'gelatin silver print' +p334643 +sg291132 +S'1946' +p334644 +sg291134 +S'Chicago' +p334645 +sg291136 +g27 +sg291137 +S'Walker Evans' +p334646 +sa(dp334647 +g291134 +S'Chicago' +p334648 +sg291137 +S'Walker Evans' +p334649 +sg291130 +S'gelatin silver print' +p334650 +sg291132 +S'1946' +p334651 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064bc.jpg' +p334652 +sg291136 +g27 +sa(dp334653 +g291130 +S'gelatin silver print' +p334654 +sg291132 +S'c. 1965' +p334655 +sg291134 +S'Debris' +p334656 +sg291136 +g27 +sg291137 +S'Walker Evans' +p334657 +sa(dp334658 +g291130 +S'gelatin silver print' +p334659 +sg291132 +S'1962' +p334660 +sg291134 +S'Upstairs Room, Walpole, Maine' +p334661 +sg291136 +g27 +sg291137 +S'Walker Evans' +p334662 +sa(dp334663 +g291134 +S'Mirrored Cell' +p334664 +sg291137 +S'Lucas Samaras' +p334665 +sg291130 +S'mirror over wood' +p334666 +sg291132 +S'drawn 1969, constructed 1988' +p334667 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a00016a4.jpg' +p334668 +sg291136 +g27 +sa(dp334669 +g291130 +S'paintstik and turpentine on Arches heavy wove paper' +p334670 +sg291132 +S'1986' +p334671 +sg291134 +S'Scheherazade' +p334672 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p334673 +sa(dp334674 +g291134 +S'Dodo and an Older Woman Reclining before a Mirror' +p334675 +sg291137 +S'Ernst Ludwig Kirchner' +p334676 +sg291130 +S'pen and black ink on heavy gray-green paper' +p334677 +sg291132 +S'1909' +p334678 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00021/a0002171.jpg' +p334679 +sg291136 +g27 +sa(dp334680 +g291134 +S'Head of a Woman' +p334681 +sg291137 +S'Federico Barocci' +p334682 +sg291130 +S'colored chalks with some stumping on blue laid paper' +p334683 +sg291132 +S'c. 1584' +p334684 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022a3.jpg' +p334685 +sg291136 +g27 +sa(dp334686 +g291134 +S'Angels and Putti' +p334687 +sg291137 +S'Giovanni Battista Crosato' +p334688 +sg291130 +S'pen and brown ink with gray wash over charcoal; laid down' +p334689 +sg291132 +S'unknown date\n' +p334690 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a000703b.jpg' +p334691 +sg291136 +g27 +sa(dp334692 +g291130 +S'etching on wove paper' +p334693 +sg291132 +S'1904' +p334694 +sg291134 +S'Sir Edmund William Gosse' +p334695 +sg291136 +g27 +sg291137 +S'Sylvia Gosse' +p334696 +sa(dp334697 +g291134 +S'Caresses' +p334698 +sg291137 +S'Charles Haslewood Shannon' +p334699 +sg291130 +S', unknown date' +p334700 +sg291132 +S'\n' +p334701 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a1f.jpg' +p334702 +sg291136 +g27 +sa(dp334703 +g291134 +S'Mother and Children' +p334704 +sg291137 +S'Charles Haslewood Shannon' +p334705 +sg291130 +S', unknown date' +p334706 +sg291132 +S'\n' +p334707 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a24.jpg' +p334708 +sg291136 +g27 +sa(dp334709 +g291130 +S'pen and black ink on wove paper' +p334710 +sg291132 +S'1920' +p334711 +sg291134 +S'Portrait of a Bearded Man' +p334712 +sg291136 +g27 +sg291137 +S'Albert Marquet' +p334713 +sa(dp334714 +g291134 +S'Madchen (Girl)' +p334715 +sg291137 +S'Walter Gramatt\xc3\xa9' +p334716 +sg291130 +S'drypoint in black on wove paper' +p334717 +sg291132 +S'1921' +p334718 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b796.jpg' +p334719 +sg291136 +g27 +sa(dp334720 +g291134 +S'The Fall into Infinity' +p334721 +sg291137 +S'Walter Gramatt\xc3\xa9' +p334722 +sg291130 +S'drypoint in black on laid paper' +p334723 +sg291132 +S'1918' +p334724 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5fd.jpg' +p334725 +sg291136 +g27 +sa(dp334726 +g291134 +S'Die Grosse Angst (The Great Anxiety)' +p334727 +sg291137 +S'Walter Gramatt\xc3\xa9' +p334728 +sg291130 +S'drypoint in black on wove paper, similar to japan paper' +p334729 +sg291132 +S'1918' +p334730 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b794.jpg' +p334731 +sg291136 +g27 +sa(dp334732 +g291134 +S'Burial (Begrabnis)' +p334733 +sg291137 +S'Walter Gramatt\xc3\xa9' +p334734 +sg291130 +S'linocut in black on thin japan paper' +p334735 +sg291132 +S'1916' +p334736 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b798.jpg' +p334737 +sg291136 +g27 +sa(dp334738 +g291134 +S'Sonia' +p334739 +sg291137 +S'Walter Gramatt\xc3\xa9' +p334740 +sg291130 +S'etching in black on wove paper' +p334741 +sg291132 +S'1923' +p334742 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b795.jpg' +p334743 +sg291136 +g27 +sa(dp334744 +g291134 +S'The Couple (Das Paar)' +p334745 +sg291137 +S'Walter Gramatt\xc3\xa9' +p334746 +sg291130 +S'etching and abrasion in blue-green on japan paper' +p334747 +sg291132 +S'1922' +p334748 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b797.jpg' +p334749 +sg291136 +g27 +sa(dp334750 +g291134 +S'Three People in an Atelier' +p334751 +sg291137 +S'Walter Gramatt\xc3\xa9' +p334752 +sg291130 +S'drypoint on cream wove paper' +p334753 +sg291132 +S'1920' +p334754 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b793.jpg' +p334755 +sg291136 +g27 +sa(dp334756 +g291134 +S'Self-Portrait' +p334757 +sg291137 +S'Walter Gramatt\xc3\xa9' +p334758 +sg291130 +S'lithograph in black on cream wove paper' +p334759 +sg291132 +S'1922' +p334760 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c514.jpg' +p334761 +sg291136 +g27 +sa(dp334762 +g291134 +S'Qual (Torment)' +p334763 +sg291137 +S'Walter Gramatt\xc3\xa9' +p334764 +sg291130 +S'lithograph in black, yellow, red, and gray-green on blotting paper' +p334765 +sg291132 +S'1920/1921' +p334766 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c518.jpg' +p334767 +sg291136 +g27 +sa(dp334768 +g291130 +S'lithograph in black on Rives paper' +p334769 +sg291132 +S'1965' +p334770 +sg291134 +S'Inca Sanctuary' +p334771 +sg291136 +g27 +sg291137 +S'Louis Lozowick' +p334772 +sa(dp334773 +g291130 +S'lithograph in black on wove paper' +p334774 +sg291132 +S'1926' +p334775 +sg291134 +S'Luna Park' +p334776 +sg291136 +g27 +sg291137 +S'Louis Lozowick' +p334777 +sa(dp334778 +g291134 +S'Still Life #2' +p334779 +sg291137 +S'Louis Lozowick' +p334780 +sg291130 +S'lithograph in black on wove paper' +p334781 +sg291132 +S'1929' +p334782 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b1c.jpg' +p334783 +sg291136 +g27 +sa(dp334784 +g291130 +S'lithograph in black on wove paper' +p334785 +sg291132 +S'1929' +p334786 +sg291134 +S'Crane' +p334787 +sg291136 +g27 +sg291137 +S'Louis Lozowick' +p334788 +sa(dp334789 +g291134 +S'Construction' +p334790 +sg291137 +S'Louis Lozowick' +p334791 +sg291130 +S'lithograph in black on wove paper' +p334792 +sg291132 +S'1930' +p334793 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b1d.jpg' +p334794 +sg291136 +g27 +sa(dp334795 +g291130 +S'lithograph in black on wove paper' +p334796 +sg291132 +S'1956' +p334797 +sg291134 +S'Sky Overcast' +p334798 +sg291136 +g27 +sg291137 +S'Louis Lozowick' +p334799 +sa(dp334800 +g291134 +S'Performer Bowing (Beifallheischende Artistin)' +p334801 +sg291137 +S'Ernst Ludwig Kirchner' +p334802 +sg291130 +S'lithograph in red, black, and blue on wove paper' +p334803 +sg291132 +S'1909' +p334804 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00061/a0006135.jpg' +p334805 +sg291136 +g27 +sa(dp334806 +g291134 +S'The Blond Painter Stirner (Blonder Maler Stirner)' +p334807 +sg291137 +S'Ernst Ludwig Kirchner' +p334808 +sg291130 +S'color woodcut on oriental paper' +p334809 +sg291132 +S'1919' +p334810 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00017/a0001782.jpg' +p334811 +sg291136 +g27 +sa(dp334812 +g291134 +S'Self-portrait with extra large paper hat' +p334813 +sg291137 +S'Red Grooms' +p334814 +sg291130 +S'pen and black ink and yellow watercolor with applied black ink and washes on wove paper' +p334815 +sg291132 +S'1955' +p334816 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00008/a00008ed.jpg' +p334817 +sg291136 +g27 +sa(dp334818 +g291134 +S'Numbers' +p334819 +sg291137 +S'Jasper Johns' +p334820 +sg291130 +S'graphite powder and graphite wash on polyester fabric' +p334821 +sg291132 +S'1966' +p334822 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000953.jpg' +p334823 +sg291136 +g27 +sa(dp334824 +g291130 +S'lithograph in black and pink on wove paper' +p334825 +sg291132 +S'1895' +p334826 +sg291134 +S'Woman with an Umbrella (Femme au Parapluie)' +p334827 +sg291136 +g27 +sg291137 +S'Pierre Bonnard' +p334828 +sa(dp334829 +g291134 +S'Portrait of an Abbot' +p334830 +sg291137 +S'Artist Information (' +p334831 +sg291130 +S'(artist after)' +p334832 +sg291132 +S'\n' +p334833 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c4c.jpg' +p334834 +sg291136 +g27 +sa(dp334835 +g291134 +S'S.C. Boutin' +p334836 +sg291137 +S'Artist Information (' +p334837 +sg291130 +S'(artist after)' +p334838 +sg291132 +S'\n' +p334839 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c4f.jpg' +p334840 +sg291136 +g27 +sa(dp334841 +g291134 +S'Brunet de Neuilly' +p334842 +sg291137 +S'Charles-Nicolas Cochin II' +p334843 +sg291130 +S'etching on laid paper' +p334844 +sg291132 +S'unknown date\n' +p334845 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cf8.jpg' +p334846 +sg291136 +g27 +sa(dp334847 +g291134 +S"J. D'Alembert" +p334848 +sg291137 +S'Artist Information (' +p334849 +sg291130 +S'(artist after)' +p334850 +sg291132 +S'\n' +p334851 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c4e.jpg' +p334852 +sg291136 +g27 +sa(dp334853 +g291134 +S'J. Gosseaume' +p334854 +sg291137 +S'Artist Information (' +p334855 +sg291130 +S'(artist after)' +p334856 +sg291132 +S'\n' +p334857 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008ce5.jpg' +p334858 +sg291136 +g27 +sa(dp334859 +g291134 +S'Edme-Sebastien Jeaurat' +p334860 +sg291137 +S'Artist Information (' +p334861 +sg291130 +S'(artist after)' +p334862 +sg291132 +S'\n' +p334863 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d66a.jpg' +p334864 +sg291136 +g27 +sa(dp334865 +g291134 +S'Louis Cesar de La Baume-le-Blanc' +p334866 +sg291137 +S'Charles-Nicolas Cochin II' +p334867 +sg291130 +S'etching on laid paper' +p334868 +sg291132 +S'unknown date\n' +p334869 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cfa.jpg' +p334870 +sg291136 +g27 +sa(dp334871 +g291134 +S'Louis Cesar de La Baume-le-Blanc' +p334872 +sg291137 +S'Charles-Nicolas Cochin II' +p334873 +sg291130 +S'etching on laid paper' +p334874 +sg291132 +S'1757' +p334875 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cf4.jpg' +p334876 +sg291136 +g27 +sa(dp334877 +g291134 +S"Jean Denis L'Empereur" +p334878 +sg291137 +S'Artist Information (' +p334879 +sg291130 +S'(artist after)' +p334880 +sg291132 +S'\n' +p334881 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d1b.jpg' +p334882 +sg291136 +g27 +sa(dp334883 +g291134 +S'Jean Monnet' +p334884 +sg291137 +S'Artist Information (' +p334885 +sg291130 +S'(artist after)' +p334886 +sg291132 +S'\n' +p334887 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008ca9.jpg' +p334888 +sg291136 +g27 +sa(dp334889 +g291134 +S'Francois de Regny' +p334890 +sg291137 +S'Artist Information (' +p334891 +sg291130 +S'French, 1715 - 1790' +p334892 +sg291132 +S'(artist after)' +p334893 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cfb.jpg' +p334894 +sg291136 +g27 +sa(dp334895 +g291134 +S'J. Trevilliers' +p334896 +sg291137 +S'Artist Information (' +p334897 +sg291130 +S'(artist after)' +p334898 +sg291132 +S'\n' +p334899 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008ce6.jpg' +p334900 +sg291136 +g27 +sa(dp334901 +g291134 +S'Jean-Charles-Philibert Trudaine' +p334902 +sg291137 +S'Artist Information (' +p334903 +sg291130 +S'(artist after)' +p334904 +sg291132 +S'\n' +p334905 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008bed.jpg' +p334906 +sg291136 +g27 +sa(dp334907 +g291134 +S'Carle Vanloo' +p334908 +sg291137 +S'Artist Information (' +p334909 +sg291130 +S'(artist after)' +p334910 +sg291132 +S'\n' +p334911 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d06.jpg' +p334912 +sg291136 +g27 +sa(dp334913 +g291134 +S'Claude Joseph Vernet' +p334914 +sg291137 +S'Artist Information (' +p334915 +sg291130 +S'(artist after)' +p334916 +sg291132 +S'\n' +p334917 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a000538d.jpg' +p334918 +sg291136 +g27 +sa(dp334919 +g291134 +S'N. Beaujeon' +p334920 +sg291137 +S'Artist Information (' +p334921 +sg291130 +S'(artist after)' +p334922 +sg291132 +S'\n' +p334923 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d3b.jpg' +p334924 +sg291136 +g27 +sa(dp334925 +g291130 +S'gouache and watercolor over black chalk on wove paper' +p334926 +sg291132 +S'1915' +p334927 +sg291134 +S'F\xc3\xa9la and Odilon' +p334928 +sg291136 +g27 +sg291137 +S'Marc Chagall' +p334929 +sa(dp334930 +g291130 +S'gelatin silver print, 1957/1961' +p334931 +sg291132 +S'1942' +p334932 +sg291134 +S'The Tetons and the Snake River' +p334933 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p334934 +sa(dp334935 +g291134 +S'1951-N' +p334936 +sg291137 +S'Clyfford Still' +p334937 +sg291130 +S'oil on canvas' +p334938 +sg291132 +S'1951' +p334939 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00002/a0000228.jpg' +p334940 +sg291136 +g27 +sa(dp334941 +g291134 +S'Untitled' +p334942 +sg291137 +S'Ellsworth Kelly' +p334943 +sg291130 +S'bronze' +p334944 +sg291132 +S'1988' +p334945 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a0001683.jpg' +p334946 +sg291136 +g27 +sa(dp334947 +g291134 +S'Coney Island, New York' +p334948 +sg291137 +S'Walker Evans' +p334949 +sg291130 +S'gelatin silver print' +p334950 +sg291132 +S'1928 or 1929' +p334951 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d2b.jpg' +p334952 +sg291136 +g27 +sa(dp334953 +g291130 +S'gelatin silver print' +p334954 +sg291132 +S'1928 or 1929' +p334955 +sg291134 +S'Coney Island, New York' +p334956 +sg291136 +g27 +sg291137 +S'Walker Evans' +p334957 +sa(dp334958 +g291130 +S'gelatin silver print' +p334959 +sg291132 +S'1929-1930' +p334960 +sg291134 +S'"Manhattan Melodrama"' +p334961 +sg291136 +g27 +sg291137 +S'Walker Evans' +p334962 +sa(dp334963 +g291134 +S'Painted Sign on Fence, Cedar Point, Ohio' +p334964 +sg291137 +S'Walker Evans' +p334965 +sg291130 +S'gelatin silver print' +p334966 +sg291132 +S'1930s' +p334967 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064b9.jpg' +p334968 +sg291136 +g27 +sa(dp334969 +g291134 +S'Berenice Abbott, New York City' +p334970 +sg291137 +S'Walker Evans' +p334971 +sg291130 +S'gelatin silver print' +p334972 +sg291132 +S'c. 1930' +p334973 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d2a.jpg' +p334974 +sg291136 +g27 +sa(dp334975 +g291130 +S'gelatin silver print' +p334976 +sg291132 +S'c. 1934' +p334977 +sg291134 +S'Buildings, New York City' +p334978 +sg291136 +g27 +sg291137 +S'Walker Evans' +p334979 +sa(dp334980 +g291134 +S'Barber Shop, New Orleans' +p334981 +sg291137 +S'Walker Evans' +p334982 +sg291130 +S'gelatin silver print' +p334983 +sg291132 +S'1936' +p334984 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e31.jpg' +p334985 +sg291136 +g27 +sa(dp334986 +g291134 +S"Photographer's Display Window, Birmingham, Alabama" +p334987 +sg291137 +S'Walker Evans' +p334988 +sg291130 +S'gelatin silver print' +p334989 +sg291132 +S'1936' +p334990 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d32.jpg' +p334991 +sg291136 +g27 +sa(dp334992 +g291130 +S'gelatin silver print' +p334993 +sg291132 +S'1938-1941' +p334994 +sg291134 +S'Subway Portrait' +p334995 +sg291136 +g27 +sg291137 +S'Walker Evans' +p334996 +sa(dp334997 +g291134 +S'Chicago' +p334998 +sg291137 +S'Walker Evans' +p334999 +sg291130 +S'gelatin silver print' +p335000 +sg291132 +S'1946' +p335001 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064a8.jpg' +p335002 +sg291136 +g27 +sa(dp335003 +g291134 +S'Blind Man with Guitar' +p335004 +sg291137 +S'Walker Evans' +p335005 +sg291130 +S'gelatin silver print' +p335006 +sg291132 +S'c. 1941' +p335007 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064af.jpg' +p335008 +sg291136 +g27 +sa(dp335009 +g291130 +S'basswood heliorelief, acrylic paint, gum plywood, and gold leaf' +p335010 +sg291132 +S'1987/1989' +p335011 +sg291134 +S'Flowers Fight' +p335012 +sg291136 +g27 +sg291137 +S'Sandro Chia' +p335013 +sa(dp335014 +g291130 +S'multi-color woodcut with roulette work on two sheets of joined Rives BFK White paper' +p335015 +sg291132 +S'1987/1989' +p335016 +sg291134 +S'Jerusalem, Kidron Valley' +p335017 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p335018 +sa(dp335019 +g291130 +S'color woodcut with roulette work on Rives BFK White paper' +p335020 +sg291132 +S'1987/1989' +p335021 +sg291134 +S'Jerusalem, Temple Mount' +p335022 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p335023 +sa(dp335024 +g291130 +S'aquatint in black with burnishing on folded sheet of T.H. Saunders paper' +p335025 +sg291132 +S'1987/1989' +p335026 +sg291134 +S'The Prickly Dark' +p335027 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p335028 +sa(dp335029 +g291130 +S'multi-color monoprint and lithograph collage on T.H. Saunders Watercolor paper; mounted elements are Arches 88 paper' +p335030 +sg291132 +S'1986' +p335031 +sg291134 +S'Flowers and Females' +p335032 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p335033 +sa(dp335034 +g291130 +S'multi-color monoprint and lithograph collage on Arches Cover White paper; elements are Arches 88 paper' +p335035 +sg291132 +S'1987/1989' +p335036 +sg291134 +S'Sister Shrieks' +p335037 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p335038 +sa(dp335039 +g291134 +S'Standing Hercules with the Nemean Lion' +p335040 +sg291137 +S'Moderno' +p335041 +sg291130 +S'bronze' +p335042 +sg291132 +S'c. 1488/1489' +p335043 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dba.jpg' +p335044 +sg291136 +g27 +sa(dp335045 +g291134 +S'Bacchante with a Goat' +p335046 +sg291137 +S'Philippe-Laurent Roland' +p335047 +sg291130 +S'bronze' +p335048 +sg291132 +S'1796, cast 1798' +p335049 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c20.jpg' +p335050 +sg291136 +g27 +sa(dp335051 +g291134 +S'The Fall of Phaeton' +p335052 +sg291137 +S'Sir Peter Paul Rubens' +p335053 +sg291130 +S'oil on canvas' +p335054 +sg291132 +S'c. 1604/1605, probably reworked c. 1606/1608' +p335055 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e3e.jpg' +p335056 +sg291136 +S"Phaeton, Apollo\xe2\x80\x99s son, begged his father to allow him to drive the chariot of the sun across the sky. In the hands of the rash youth, who had neither the strength nor the experience to control the chariot, the horses bolted, scorching everything in their path with the sun's heat. The butterfly–winged female figures, personifying the seasons and hours, react in terror as the earth below bursts into flame. Even the great astrological bands that arch through the heavens are disrupted. To save the universe from destruction, Zeus, king of the gods, throws a thunderbolt, represented here by a blinding shaft of light. As the chariot disintegrates, Phaeton plunges to his death.\n Rubens painted \n " +p335057 +sa(dp335058 +g291130 +S'etching with graphite additions on wove paper [trial proof]' +p335059 +sg291132 +S'1983' +p335060 +sg291134 +S'In the North Greenhouse' +p335061 +sg291136 +g27 +sg291137 +S'Mark Alan Leithauser' +p335062 +sa(dp335063 +g291130 +S'etching on wove paper' +p335064 +sg291132 +S'1983' +p335065 +sg291134 +S'In the North Greenhouse' +p335066 +sg291136 +g27 +sg291137 +S'Mark Alan Leithauser' +p335067 +sa(dp335068 +g291134 +S'Dedication Page with Statue of Fama' +p335069 +sg291137 +S'Ercole Bazicaluva' +p335070 +sg291130 +S'etching on laid paper' +p335071 +sg291132 +S'1638' +p335072 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca00.jpg' +p335073 +sg291136 +g27 +sa(dp335074 +g291134 +S'Rustic Landscape with Peasants and Horses' +p335075 +sg291137 +S'Ercole Bazicaluva' +p335076 +sg291130 +S'etching with engraving on laid paper' +p335077 +sg291132 +S'1638' +p335078 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9ff.jpg' +p335079 +sg291136 +g27 +sa(dp335080 +g291134 +S'Coastal Landscape with Anchored Vessels' +p335081 +sg291137 +S'Ercole Bazicaluva' +p335082 +sg291130 +S'etching on laid paper' +p335083 +sg291132 +S'1638' +p335084 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9fe.jpg' +p335085 +sg291136 +g27 +sa(dp335086 +g291134 +S'Herdsman and Cows Crossing a River' +p335087 +sg291137 +S'Ercole Bazicaluva' +p335088 +sg291130 +S'etching on laid paper' +p335089 +sg291132 +S'1638' +p335090 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9fd.jpg' +p335091 +sg291136 +g27 +sa(dp335092 +g291134 +S'Landscape with Runaway Horses' +p335093 +sg291137 +S'Ercole Bazicaluva' +p335094 +sg291130 +S'etching on laid paper' +p335095 +sg291132 +S'1638' +p335096 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9fc.jpg' +p335097 +sg291136 +g27 +sa(dp335098 +g291134 +S'Rustic Seaport' +p335099 +sg291137 +S'Ercole Bazicaluva' +p335100 +sg291130 +S'etching on laid paper' +p335101 +sg291132 +S'1638' +p335102 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9f7.jpg' +p335103 +sg291136 +g27 +sa(dp335104 +g291134 +S'Seaport with Anchored Vessels' +p335105 +sg291137 +S'Ercole Bazicaluva' +p335106 +sg291130 +S'etching on laid paper' +p335107 +sg291132 +S'1638' +p335108 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9f6.jpg' +p335109 +sg291136 +g27 +sa(dp335110 +g291134 +S'Lakeside Village with Herdsmen' +p335111 +sg291137 +S'Ercole Bazicaluva' +p335112 +sg291130 +S'etching on laid paper' +p335113 +sg291132 +S'1638' +p335114 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9fb.jpg' +p335115 +sg291136 +g27 +sa(dp335116 +g291134 +S'Men Fighting in a Landscape' +p335117 +sg291137 +S'Ercole Bazicaluva' +p335118 +sg291130 +S'etching on laid paper' +p335119 +sg291132 +S'1638' +p335120 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9fa.jpg' +p335121 +sg291136 +g27 +sa(dp335122 +g291134 +S'Landscape with a Traveler before a Cottage' +p335123 +sg291137 +S'Ercole Bazicaluva' +p335124 +sg291130 +S'etching on laid paper' +p335125 +sg291132 +S'1638' +p335126 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9f9.jpg' +p335127 +sg291136 +g27 +sa(dp335128 +g291134 +S'Landscape and River with Anchored Vessels' +p335129 +sg291137 +S'Ercole Bazicaluva' +p335130 +sg291130 +S'etching on laid paper' +p335131 +sg291132 +S'1638' +p335132 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9f5.jpg' +p335133 +sg291136 +g27 +sa(dp335134 +g291134 +S'Landscape with Resting Herdsmen' +p335135 +sg291137 +S'Ercole Bazicaluva' +p335136 +sg291130 +S'etching and engraving on laid paper' +p335137 +sg291132 +S'1638' +p335138 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9f8.jpg' +p335139 +sg291136 +g27 +sa(dp335140 +g291134 +S"Mezzetin and Harlequin, Disguised as the Captain, Disrupt Pantaloon's Dinner" +p335141 +sg291137 +S'Johann Jacob Sch\xc3\xbcbler' +p335142 +sg291130 +S'pen and black ink and gray wash on laid paper; scored for transfer' +p335143 +sg291132 +S'c. 1729' +p335144 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a00070fe.jpg' +p335145 +sg291136 +g27 +sa(dp335146 +g291134 +S'Mezzetin "Paints" a Portrait of Cupid by Cutting the Canvas to Reveal Harlequin' +p335147 +sg291137 +S'Johann Jacob Sch\xc3\xbcbler' +p335148 +sg291130 +S'pen and black ink and gray wash on laid paper; scored for transfer' +p335149 +sg291132 +S'c. 1729' +p335150 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a00070ce.jpg' +p335151 +sg291136 +g27 +sa(dp335152 +g291134 +S'Mezzetin and Harlequin Use the Picture Frame to Catch Pantaloon and Pierrot' +p335153 +sg291137 +S'Johann Jacob Sch\xc3\xbcbler' +p335154 +sg291130 +S'pen and black ink and gray wash on laid paper; scored for transfer' +p335155 +sg291132 +S'c. 1729' +p335156 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a00070a1.jpg' +p335157 +sg291136 +g27 +sa(dp335158 +g291134 +S'Pantaloon and the Doctor Fighting with Columbine and Brigatella in the Garden' +p335159 +sg291137 +S'Johann Jacob Sch\xc3\xbcbler' +p335160 +sg291130 +S'pen and black ink and gray wash on laid paper; scored for transfer' +p335161 +sg291132 +S'c. 1729' +p335162 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a000706f.jpg' +p335163 +sg291136 +g27 +sa(dp335164 +g291134 +S'Seated Sibyl' +p335165 +sg291137 +S'Bartolomeo Guidobono' +p335166 +sg291130 +S'brush and brown, blue, and gray ink over black chalk and graphite, heightened with white on laid paper' +p335167 +sg291132 +S'c. 1690' +p335168 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074b1.jpg' +p335169 +sg291136 +g27 +sa(dp335170 +g291134 +S'Moonlit Landscape with Bridge' +p335171 +sg291137 +S'Aert van der Neer' +p335172 +sg291130 +S'oil on panel' +p335173 +sg291132 +S'probably 1648/1650' +p335174 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e73.jpg' +p335175 +sg291136 +S'Van der Neer was in his late twenties when he decided to become\r\n an \r\n artist. He first painted winter scenes, partly under the influence\r\n of \r\n Hendrick Avercamp. By the late 1640s, however, Van der Neer\r\n developed his \r\n own specialty of nocturnes, or night scenes. These mysteriously\r\n dark, \r\n moonlit pictures belong to the early monochrome period in Dutch\r\n art, much \r\n as Avercamp’s cool grays or Jan van Goyen’s warm tans.\n Here, luminous clouds float before a full moon. Reflecting the \r\n moonlight, a stream runs through the center of the scene and\r\n directs \r\n attention toward a church. A village and a walled estate close the \r\n symmetrically composed space at either side. Beams from the moon\r\n glint off \r\n window panes, glow upon a fashionable couple conversing by the\r\n estate’s \r\n ornate gateway, and silhouette a poor family crossing a bridge.\n This nocturne’s radiance is created by multiple layers of\r\n translucent and \r\n opaque paint applied with consummate technical skill. Using the\r\n handle of \r\n his brush or a palette knife, Van der Neer scraped away top layers\r\n of dark \r\n color to reveal underlying pinks, golds, and blues in the\r\n clouds.\n ' +p335176 +sa(dp335177 +g291134 +S'Fruit Still Life with Chinese Export Basket' +p335178 +sg291137 +S'James Peale' +p335179 +sg291130 +S'oil on wood' +p335180 +sg291132 +S'1824' +p335181 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a00001a5.jpg' +p335182 +sg291136 +g27 +sa(dp335183 +g291130 +S'aluminum' +p335184 +sg291132 +S'1968' +p335185 +sg291134 +S'Wall' +p335186 +sg291136 +g27 +sg291137 +S'Adolph Gottlieb' +p335187 +sa(dp335188 +g291134 +S'Magnificent Catafalque for a Deceased Noble' +p335189 +sg291137 +S'Francesco Galli Bibiena' +p335190 +sg291130 +S'pen and brown ink with brown and gray washes over graphite on laid paper' +p335191 +sg291132 +S'unknown date\n' +p335192 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022a8.jpg' +p335193 +sg291136 +g27 +sa(dp335194 +g291134 +S'Ancient Roman Warriors Riding into Battle' +p335195 +sg291137 +S'Antoine Caron' +p335196 +sg291130 +S'black chalk with brown wash, heightened with white gouache on light brown laid paper, with later framing line in brown ink' +p335197 +sg291132 +S'c. 1597' +p335198 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00060/a0006007.jpg' +p335199 +sg291136 +g27 +sa(dp335200 +g291134 +S'Saint Jerome in the Wilderness' +p335201 +sg291137 +S'Paul Troger' +p335202 +sg291130 +S'pen and iron gall ink and gray wash over black chalk on laid paper' +p335203 +sg291132 +S'unknown date\n' +p335204 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a0006985.jpg' +p335205 +sg291136 +g27 +sa(dp335206 +g291134 +S'The Baptism of Christ' +p335207 +sg291137 +S'Paul Troger' +p335208 +sg291130 +S'pen and iron gall ink and gray wash over black chalk on laid paper' +p335209 +sg291132 +S'unknown date\n' +p335210 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a0006986.jpg' +p335211 +sg291136 +g27 +sa(dp335212 +g291134 +S'A Desert Hermit Adoring the Crucifix' +p335213 +sg291137 +S'Paul Troger' +p335214 +sg291130 +S'pen and iron gall ink and gray wash over black chalk on laid paper' +p335215 +sg291132 +S'unknown date\n' +p335216 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a0006987.jpg' +p335217 +sg291136 +g27 +sa(dp335218 +g291134 +S'The Dead Christ with Angels' +p335219 +sg291137 +S'Paul Troger' +p335220 +sg291130 +S'pen and iron gall ink and gray wash over black chalk on laid paper' +p335221 +sg291132 +S'unknown date\n' +p335222 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a0006988.jpg' +p335223 +sg291136 +g27 +sa(dp335224 +g291134 +S'A Crouching Man Holding a Staff [recto]' +p335225 +sg291137 +S'Domenico Tintoretto' +p335226 +sg291130 +S'black chalk heightened with white on blue laid paper' +p335227 +sg291132 +S'unknown date\n' +p335228 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074cb.jpg' +p335229 +sg291136 +g27 +sa(dp335230 +g291134 +S'A Female Nude [verso]' +p335231 +sg291137 +S'Domenico Tintoretto' +p335232 +sg291130 +S'black chalk on blue laid paper' +p335233 +sg291132 +S'unknown date\n' +p335234 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074cc.jpg' +p335235 +sg291136 +g27 +sa(dp335236 +g291130 +S'pen and brown ink and brown wash over graphite on laid paper' +p335237 +sg291132 +S'1789' +p335238 +sg291134 +S'Orlando Rescuing Oliver from the Lion' +p335239 +sg291136 +g27 +sg291137 +S'Raphael Lamar West' +p335240 +sa(dp335241 +g291134 +S'Saint Jerome in the Cave' +p335242 +sg291137 +S'Ferdinand Bol' +p335243 +sg291130 +S'etching and drypoint on laid paper' +p335244 +sg291132 +S'1644' +p335245 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4cd.jpg' +p335246 +sg291136 +g27 +sa(dp335247 +g291134 +S'Villa Madama a Rome' +p335248 +sg291137 +S'Artist Information (' +p335249 +sg291130 +S'(artist)' +p335250 +sg291132 +S'\n' +p335251 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a00072ec.jpg' +p335252 +sg291136 +g27 +sa(dp335253 +g291134 +S'Piet\xc3\xa0' +p335254 +sg291137 +S'South Netherlandish 15th Century' +p335255 +sg291130 +S'overall: 42 x 50 x 23.5 cm (16 9/16 x 19 11/16 x 9 1/4 in.)' +p335256 +sg291132 +S'\nalabaster with traces of polychromy' +p335257 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d8a.jpg' +p335258 +sg291136 +g27 +sa(dp335259 +g291130 +S'woodcut in black with painted additions in black oil paint on offset paper' +p335260 +sg291132 +S'1982' +p335261 +sg291134 +S'Man Reading (Lesender Mann)' +p335262 +sg291136 +g27 +sg291137 +S'Georg Baselitz' +p335263 +sa(dp335264 +g291134 +S'Bust of a Man Facing Right' +p335265 +sg291137 +S'Hendrick Goltzius' +p335266 +sg291130 +S', 1579' +p335267 +sg291132 +S'\n' +p335268 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce46.jpg' +p335269 +sg291136 +g27 +sa(dp335270 +g291134 +S'The Holy Family' +p335271 +sg291137 +S'Hendrick Goltzius' +p335272 +sg291130 +S', unknown date' +p335273 +sg291132 +S'\n' +p335274 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cd/a000cdfc.jpg' +p335275 +sg291136 +g27 +sa(dp335276 +g291130 +S'(artist after)' +p335277 +sg291132 +S'\n' +p335278 +sg291134 +S'The Wedding of Cupid and Psyche' +p335279 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335280 +sa(dp335281 +g291134 +S'The Port of Monaco' +p335282 +sg291137 +S'Adolphe Appian' +p335283 +sg291130 +S'charcoal, black chalk, and gray wash heightened with white chalk on blue wove paper' +p335284 +sg291132 +S'1873' +p335285 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a00071d4.jpg' +p335286 +sg291136 +g27 +sa(dp335287 +g291134 +S'The Port of Monaco' +p335288 +sg291137 +S'Adolphe Appian' +p335289 +sg291130 +S'etching and drypoint on heavy laid paper' +p335290 +sg291132 +S'1873' +p335291 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009027.jpg' +p335292 +sg291136 +g27 +sa(dp335293 +g291134 +S'A Singular Rock in Dove-Dale named the Pickerell' +p335294 +sg291137 +S'William Day' +p335295 +sg291130 +S'graphite and watercolor on laid paper; laid down on original mount' +p335296 +sg291132 +S'1789' +p335297 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a000695c.jpg' +p335298 +sg291136 +g27 +sa(dp335299 +g291134 +S'Christ on the Cross' +p335300 +sg291137 +S'German 15th Century' +p335301 +sg291130 +S'sheet: 32 x 19.8 cm (12 5/8 x 7 13/16 in.)' +p335302 +sg291132 +S'\nwoodcut with gouache and gold leaf (incised and stamped) on vellum' +p335303 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f2d.jpg' +p335304 +sg291136 +g27 +sa(dp335305 +g291134 +S'A Venetian Courtyard, in the Procuratie Nuove' +p335306 +sg291137 +S'Canaletto' +p335307 +sg291130 +S'pen and brown ink with gray wash on laid paper' +p335308 +sg291132 +S'c. 1760' +p335309 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022ce.jpg' +p335310 +sg291136 +g27 +sa(dp335311 +g291134 +S'Evening' +p335312 +sg291137 +S'William Blake' +p335313 +sg291130 +S'watercolor and chalk on wood' +p335314 +sg291132 +S'c. 1820/1825' +p335315 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00004/a00004ea.jpg' +p335316 +sg291136 +g27 +sa(dp335317 +g291130 +S'watercolor (applied recto and verso) on japan paper' +p335318 +sg291132 +S'c. 1930/1940' +p335319 +sg291134 +S'Red and Yellow Poppies with a Blue Delphinium' +p335320 +sg291136 +g27 +sg291137 +S'Emil Nolde' +p335321 +sa(dp335322 +g291134 +S'Arnoud van Beresteyn' +p335323 +sg291137 +S'Hendrick Goltzius' +p335324 +sg291130 +S', c. 1579' +p335325 +sg291132 +S'\n' +p335326 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce32.jpg' +p335327 +sg291136 +g27 +sa(dp335328 +g291134 +S'The Turret-Ship' +p335329 +sg291137 +S'James McNeill Whistler' +p335330 +sg291130 +S'etching in black on laid paper' +p335331 +sg291132 +S'1887' +p335332 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000aa/a000aa5c.jpg' +p335333 +sg291136 +g27 +sa(dp335334 +g291134 +S'The Kiss' +p335335 +sg291137 +S'Edvard Munch' +p335336 +sg291130 +S'woodcut printed from two blocks in black and gray on heavy brown paper [1902 printing]' +p335337 +sg291132 +S'1898' +p335338 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022e8.jpg' +p335339 +sg291136 +g27 +sa(dp335340 +g291130 +S'color lithograph and woodcut [1902 printing] on oriental paper: lithograph printed from 3 stones in beige, red, and black; woodcut printed from 1 block in blue' +p335341 +sg291132 +S'1895' +p335342 +sg291134 +S'Madonna' +p335343 +sg291136 +g27 +sg291137 +S'Edvard Munch' +p335344 +sa(dp335345 +g291130 +g27 +sg291132 +S'(publisher)' +p335346 +sg291134 +S'Edward G. Robinson' +p335347 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335348 +sa(dp335349 +g291130 +g27 +sg291132 +S'(publisher)' +p335350 +sg291134 +S'Ira Gershwin' +p335351 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335352 +sa(dp335353 +g291130 +g27 +sg291132 +S'(publisher)' +p335354 +sg291134 +S'(to Don Judd, colorist) 1' +p335355 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335356 +sa(dp335357 +g291130 +g27 +sg291132 +S'(publisher)' +p335358 +sg291134 +S'(to Don Judd, colorist) 2' +p335359 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335360 +sa(dp335361 +g291130 +g27 +sg291132 +S'(publisher)' +p335362 +sg291134 +S'(to Don Judd, colorist) 3' +p335363 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335364 +sa(dp335365 +g291130 +g27 +sg291132 +S'(publisher)' +p335366 +sg291134 +S'(to Don Judd, colorist) 4' +p335367 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335368 +sa(dp335369 +g291134 +S'(to Don Judd, colorist) 5' +p335370 +sg291137 +S'Artist Information (' +p335371 +sg291130 +g27 +sg291132 +S'(publisher)' +p335372 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a90.jpg' +p335373 +sg291136 +g27 +sa(dp335374 +g291130 +g27 +sg291132 +S'(publisher)' +p335375 +sg291134 +S'(to Don Judd, colorist) 6' +p335376 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335377 +sa(dp335378 +g291130 +g27 +sg291132 +S'(publisher)' +p335379 +sg291134 +S'(to Don Judd, colorist) 7' +p335380 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335381 +sa(dp335382 +g291130 +g27 +sg291132 +S'(publisher)' +p335383 +sg291134 +S'(for Gina and DeWain) 1 [recto]' +p335384 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335385 +sa(dp335386 +g291130 +S'Twinrocker Willow Green paper' +p335387 +sg291132 +S'published 1987' +p335388 +sg291134 +S'(for Gina and DeWain) 1 [verso]' +p335389 +sg291136 +g27 +sg291137 +S'Dan Flavin' +p335390 +sa(dp335391 +g291130 +g27 +sg291132 +S'(publisher)' +p335392 +sg291134 +S'(for Gina and DeWain) 2 [recto]' +p335393 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335394 +sa(dp335395 +g291130 +g27 +sg291132 +S'(publisher)' +p335396 +sg291134 +S'(for Gina and DeWain) 2 [verso]' +p335397 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335398 +sa(dp335399 +g291130 +g27 +sg291132 +S'(publisher)' +p335400 +sg291134 +S'Beaudelaire' +p335401 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335402 +sa(dp335403 +g291130 +g27 +sg291132 +S'(publisher)' +p335404 +sg291134 +S'Remains' +p335405 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335406 +sa(dp335407 +g291130 +g27 +sg291132 +S'(publisher)' +p335408 +sg291134 +S'Edition One' +p335409 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335410 +sa(dp335411 +g291130 +g27 +sg291132 +S'(publisher)' +p335412 +sg291134 +S'Edition Two' +p335413 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335414 +sa(dp335415 +g291130 +g27 +sg291132 +S'(publisher)' +p335416 +sg291134 +S'Edition Three' +p335417 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335418 +sa(dp335419 +g291130 +g27 +sg291132 +S'(publisher)' +p335420 +sg291134 +S'Edition Four' +p335421 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335422 +sa(dp335423 +g291130 +g27 +sg291132 +S'(publisher)' +p335424 +sg291134 +S'Edition Five' +p335425 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335426 +sa(dp335427 +g291130 +g27 +sg291132 +S'(publisher)' +p335428 +sg291134 +S'Gregory Evans' +p335429 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335430 +sa(dp335431 +g291130 +g27 +sg291132 +S'(publisher)' +p335432 +sg291134 +S'Gregory with Gym Socks' +p335433 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335434 +sa(dp335435 +g291130 +g27 +sg291132 +S'(publisher)' +p335436 +sg291134 +S'Gregory Reclining' +p335437 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335438 +sa(dp335439 +g291130 +g27 +sg291132 +S'(publisher)' +p335440 +sg291134 +S'Ann Putting on Lipstick' +p335441 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335442 +sa(dp335443 +g291130 +g27 +sg291132 +S'(publisher)' +p335444 +sg291134 +S'Henry' +p335445 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335446 +sa(dp335447 +g291130 +g27 +sg291132 +S'(publisher)' +p335448 +sg291134 +S'Good Time Charley' +p335449 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335450 +sa(dp335451 +g291130 +g27 +sg291132 +S'(publisher)' +p335452 +sg291134 +S"#1 (after 'Untitled 1975'), 1976" +p335453 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335454 +sa(dp335455 +g291130 +g27 +sg291132 +S'(publisher)' +p335456 +sg291134 +S"#3 (after 'Untitled 1975'), 1976" +p335457 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335458 +sa(dp335459 +g291130 +g27 +sg291132 +S'(publisher)' +p335460 +sg291134 +S"#4 (after 'Untitled 1975'), 1976" +p335461 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335462 +sa(dp335463 +g291130 +g27 +sg291132 +S'(publisher)' +p335464 +sg291134 +S"#5 (after 'Untitled 1975'), 1976" +p335465 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335466 +sa(dp335467 +g291130 +g27 +sg291132 +S'(publisher)' +p335468 +sg291134 +S'Blue 1' +p335469 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335470 +sa(dp335471 +g291130 +g27 +sg291132 +S'(publisher)' +p335472 +sg291134 +S'Serrabone' +p335473 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335474 +sa(dp335475 +g291130 +g27 +sg291132 +S'(publisher)' +p335476 +sg291134 +S'Tavant' +p335477 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335478 +sa(dp335479 +g291130 +g27 +sg291132 +S'(publisher)' +p335480 +sg291134 +S'Cluny' +p335481 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335482 +sa(dp335483 +g291130 +g27 +sg291132 +S'(publisher)' +p335484 +sg291134 +S'Cuxa' +p335485 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335486 +sa(dp335487 +g291130 +g27 +sg291132 +S'(publisher)' +p335488 +sg291134 +S'Brioude' +p335489 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335490 +sa(dp335491 +g291130 +g27 +sg291132 +S'(publisher)' +p335492 +sg291134 +S'Untitled (Red State I)' +p335493 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335494 +sa(dp335495 +g291130 +g27 +sg291132 +S'(publisher)' +p335496 +sg291134 +S'Untitled (Gray State I)' +p335497 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335498 +sa(dp335499 +g291130 +g27 +sg291132 +S'(publisher)' +p335500 +sg291134 +S'Aviator' +p335501 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335502 +sa(dp335503 +g291130 +g27 +sg291132 +S'(publisher)' +p335504 +sg291134 +S'Nude on Beach' +p335505 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335506 +sa(dp335507 +g291130 +S'lithograph on Arches 88 paper' +p335508 +sg291132 +S'1978' +p335509 +sg291134 +S'A Bright Night' +p335510 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p335511 +sa(dp335512 +g291130 +g27 +sg291132 +S'(publisher)' +p335513 +sg291134 +S'Palo Alto' +p335514 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335515 +sa(dp335516 +g291130 +g27 +sg291132 +S'(publisher)' +p335517 +sg291134 +S'Eve Born of Adam' +p335518 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335519 +sa(dp335520 +g291130 +g27 +sg291132 +S'(publisher)' +p335521 +sg291134 +S'Eve Born of Adam (State)' +p335522 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335523 +sa(dp335524 +g291130 +g27 +sg291132 +S'(publisher)' +p335525 +sg291134 +S'Proof of Pudding' +p335526 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335527 +sa(dp335528 +g291130 +g27 +sg291132 +S'(publisher)' +p335529 +sg291134 +S'Colossal Screw in Landscape - Type 1' +p335530 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335531 +sa(dp335532 +g291130 +g27 +sg291132 +S'(publisher)' +p335533 +sg291134 +S'Horsefeathers Thirteen - XI' +p335534 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335535 +sa(dp335536 +g291130 +g27 +sg291132 +S'(publisher)' +p335537 +sg291134 +S'Horsefeathers Thirteen - XII' +p335538 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335539 +sa(dp335540 +g291130 +g27 +sg291132 +S'(publisher)' +p335541 +sg291134 +S'Ballot' +p335542 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335543 +sa(dp335544 +g291130 +g27 +sg291132 +S'(publisher)' +p335545 +sg291134 +S'Romances (Elopement)' +p335546 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335547 +sa(dp335548 +g291130 +g27 +sg291132 +S'(publisher)' +p335549 +sg291134 +S'Romances (Elysian)' +p335550 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335551 +sa(dp335552 +g291130 +g27 +sg291132 +S'(publisher)' +p335553 +sg291134 +S'Romances (Castle)' +p335554 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335555 +sa(dp335556 +g291130 +g27 +sg291132 +S'(publisher)' +p335557 +sg291134 +S'Untitled [left panel of triptych, see 1990.27.52 and 1990.2]' +p335558 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335559 +sa(dp335560 +g291130 +g27 +sg291132 +S'(publisher)' +p335561 +sg291134 +S'Untitled [ (middle panel of triptych, see 1990.27.51 and 199]' +p335562 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335563 +sa(dp335564 +g291130 +g27 +sg291132 +S'(publisher)' +p335565 +sg291134 +S'Untitled [right panel of triptych, see 1990.27.51 and 1990.]' +p335566 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335567 +sa(dp335568 +g291130 +g27 +sg291132 +S'(publisher)' +p335569 +sg291134 +S'Air to Air' +p335570 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335571 +sa(dp335572 +g291130 +g27 +sg291132 +S'(publisher)' +p335573 +sg291134 +S'Air to Air' +p335574 +sg291136 +g27 +sg291137 +S'Artist Information (' +p335575 +sa(dp335576 +g291134 +S'Untitled' +p335577 +sg291137 +S'Joel Shapiro' +p335578 +sg291130 +S'bronze' +p335579 +sg291132 +S'1989' +p335580 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a00016a8.jpg' +p335581 +sg291136 +g27 +sa(dp335582 +g291134 +S'The Church of Souain' +p335583 +sg291137 +S'F\xc3\xa9lix Vallotton' +p335584 +sg291130 +S'oil on canvas' +p335585 +sg291132 +S'1917' +p335586 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000eea.jpg' +p335587 +sg291136 +g27 +sa(dp335588 +g291134 +S'Charles Stewart Butler and Lawrence Smith Butler' +p335589 +sg291137 +S'Augustus Saint-Gaudens' +p335590 +sg291130 +S'plaster' +p335591 +sg291132 +S'1880-1881' +p335592 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a00016b1.jpg' +p335593 +sg291136 +g27 +sa(dp335594 +g291134 +S'Altar of the Christian Faith' +p335595 +sg291137 +S'Hermann tom Ring' +p335596 +sg291130 +S'pen and black ink with gray wash and blue watercolor on laid paper mounted and folded to form miniature design for a triptych alterpiece; script in pen and brown ink' +p335597 +sg291132 +S'1561' +p335598 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00079/a000795f.jpg' +p335599 +sg291136 +g27 +sa(dp335600 +g291134 +S"Apollo and Studies of the Artist's Own Hand [recto]" +p335601 +sg291137 +S'Francesco Fontebasso' +p335602 +sg291130 +S'black chalk and pen and brown ink on laid paper' +p335603 +sg291132 +S'c. 1740' +p335604 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a000252e.jpg' +p335605 +sg291136 +g27 +sa(dp335606 +g291130 +S'pen and brown ink and black chalk on laid paper' +p335607 +sg291132 +S'unknown date\n' +p335608 +sg291134 +S'Head of a Woman and Studies of a Male Nude [verso]' +p335609 +sg291136 +g27 +sg291137 +S'Francesco Fontebasso' +p335610 +sa(dp335611 +g291134 +S'Portrait of a Woman' +p335612 +sg291137 +S'Paula Modersohn-Becker' +p335613 +sg291130 +S'charcoal and graphite on wove paper' +p335614 +sg291132 +S'1898' +p335615 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022e2.jpg' +p335616 +sg291136 +g27 +sa(dp335617 +g291134 +S'The Judgment of Paris' +p335618 +sg291137 +S'Joachim Anthonisz Wtewael' +p335619 +sg291130 +S'pen and brown ink with gray washes over black chalk on laid paper' +p335620 +sg291132 +S'c. 1615' +p335621 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ce5.jpg' +p335622 +sg291136 +g27 +sa(dp335623 +g291130 +S'etching and aquatint in black with scraping and burnishing on heavy wove paper' +p335624 +sg291132 +S'1918' +p335625 +sg291134 +S'Der Graf (The Count)' +p335626 +sg291136 +g27 +sg291137 +S'Emil Nolde' +p335627 +sa(dp335628 +g291134 +S'Sketches of a Horse and a Nobleman' +p335629 +sg291137 +S'French 19th Century' +p335630 +sg291130 +S'sheet: 36.2 x 27.9 cm (14 1/4 x 11 in.)' +p335631 +sg291132 +S'\nlithograph in black on wove paper' +p335632 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009017.jpg' +p335633 +sg291136 +g27 +sa(dp335634 +g291134 +S'Philip Galle' +p335635 +sg291137 +S'Hendrick Goltzius' +p335636 +sg291130 +S', 1582' +p335637 +sg291132 +S'\n' +p335638 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce2a.jpg' +p335639 +sg291136 +g27 +sa(dp335640 +g291130 +S'gelatin silver print' +p335641 +sg291132 +S'1929-1930' +p335642 +sg291134 +S'New York City' +p335643 +sg291136 +g27 +sg291137 +S'Walker Evans' +p335644 +sa(dp335645 +g291130 +S'gelatin silver print' +p335646 +sg291132 +S'1929-1930' +p335647 +sg291134 +S'New York City' +p335648 +sg291136 +g27 +sg291137 +S'Walker Evans' +p335649 +sa(dp335650 +g291134 +S'Hart Crane' +p335651 +sg291137 +S'Walker Evans' +p335652 +sg291130 +S'gelatin silver print' +p335653 +sg291132 +S'c. 1930' +p335654 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064b8.jpg' +p335655 +sg291136 +g27 +sa(dp335656 +g291130 +S'gelatin silver print' +p335657 +sg291132 +S'1931' +p335658 +sg291134 +S'House, Upstate New York' +p335659 +sg291136 +g27 +sg291137 +S'Walker Evans' +p335660 +sa(dp335661 +g291134 +S'Coal Dock Workers' +p335662 +sg291137 +S'Walker Evans' +p335663 +sg291130 +S'gelatin silver print, 1960s' +p335664 +sg291132 +S'1933' +p335665 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e30.jpg' +p335666 +sg291136 +g27 +sa(dp335667 +g291134 +S'Chicago' +p335668 +sg291137 +S'Walker Evans' +p335669 +sg291130 +S'gelatin silver print' +p335670 +sg291132 +S'1946' +p335671 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e47.jpg' +p335672 +sg291136 +g27 +sa(dp335673 +g291130 +S'gelatin silver print' +p335674 +sg291132 +S'1941' +p335675 +sg291134 +S'Ringling Bandwagon' +p335676 +sg291136 +g27 +sg291137 +S'Walker Evans' +p335677 +sa(dp335678 +g291134 +S'New York' +p335679 +sg291137 +S'Walker Evans' +p335680 +sg291130 +S'gelatin silver print mounted on board' +p335681 +sg291132 +S'1940-1950' +p335682 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064bb.jpg' +p335683 +sg291136 +g27 +sa(dp335684 +g291134 +S'Sunday in an Alley' +p335685 +sg291137 +S'Walker Evans' +p335686 +sg291130 +S'gelatin silver print' +p335687 +sg291132 +S'1947' +p335688 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d30.jpg' +p335689 +sg291136 +g27 +sa(dp335690 +g291134 +S'Saint Christopher' +p335691 +sg291137 +S'Orazio Borgianni' +p335692 +sg291130 +S'engraving on laid paper' +p335693 +sg291132 +S'c. 1615' +p335694 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00065/a000656b.jpg' +p335695 +sg291136 +g27 +sa(dp335696 +g291134 +S'The Street Sweeper (Le Cantonnier)' +p335697 +sg291137 +S'Paul Gavarni' +p335698 +sg291130 +S'watercolor, gouache, and red chalk on wove paper' +p335699 +sg291132 +S'c. 1848/1852' +p335700 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a000253f.jpg' +p335701 +sg291136 +g27 +sa(dp335702 +g291134 +S'Look Mickey' +p335703 +sg291137 +S'Roy Lichtenstein' +p335704 +sg291130 +S'oil on canvas' +p335705 +sg291132 +S'1961' +p335706 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a000014d.jpg' +p335707 +sg291136 +S'One of the key figures in the history of so-called pop art, Roy Lichtenstein shared with his contemporary Andy Warhol a fascination for the visual languages of printed mass media and consumer culture during the 1960s. Lichtenstein was especially preoccupied with cheap newspaper advertising and cartoon or comic book illustration, which he enlarged and transposed—making subtle alterations—directly into paint on canvas. At the time the simplistic narratives and boldly graphic visual mannerisms of comics and advertising were understood to resist the powerful postwar legacy of abstract expressionist painting—the highly subjective processes and grand claims for psychic content that characterized the work of \n ' +p335708 +sa(dp335709 +g291134 +S'Mount Cairo from across the Melfa River' +p335710 +sg291137 +S'Jean-Jacques de Boissieu' +p335711 +sg291130 +S'brush and gray wash on laid paper; laid down' +p335712 +sg291132 +S'c. 1765/1766' +p335713 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022b6.jpg' +p335714 +sg291136 +g27 +sa(dp335715 +g291134 +S'Death Stalking a Woman' +p335716 +sg291137 +S'Carl Gotthard Langhans' +p335717 +sg291130 +S'pen and black ink with gray wash on laid paper' +p335718 +sg291132 +S'unknown date\n' +p335719 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a000729f.jpg' +p335720 +sg291136 +g27 +sa(dp335721 +g291134 +S'The Madonna and Child with Saints in a Landscape (Sacra Conversazione)' +p335722 +sg291137 +S'Vittore Carpaccio' +p335723 +sg291130 +S'pen and brown ink (iron gall) on laid paper (cut vertically at center); laid down' +p335724 +sg291132 +S'c. 1500' +p335725 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022cf.jpg' +p335726 +sg291136 +g27 +sa(dp335727 +g291130 +S'satista print' +p335728 +sg291132 +S'1916' +p335729 +sg291134 +S'Farmer, Connecticut' +p335730 +sg291136 +g27 +sg291137 +S'Paul Strand' +p335731 +sa(dp335732 +g291130 +S'gelatin silver print, 1920s' +p335733 +sg291132 +S'1916' +p335734 +sg291134 +S'The White Fence' +p335735 +sg291136 +g27 +sg291137 +S'Paul Strand' +p335736 +sa(dp335737 +g291130 +S'gelatin silver print' +p335738 +sg291132 +S'1922' +p335739 +sg291134 +S"Truckman's House, New York" +p335740 +sg291136 +g27 +sg291137 +S'Paul Strand' +p335741 +sa(dp335742 +g291130 +S'gelatin silver print' +p335743 +sg291132 +S'1927' +p335744 +sg291134 +S'Wild Iris, Maine [recto]' +p335745 +sg291136 +g27 +sg291137 +S'Paul Strand' +p335746 +sa(dp335747 +g291130 +S'gelatin silver print' +p335748 +sg291132 +S'1923' +p335749 +sg291134 +S'Lathe, New York [verso]' +p335750 +sg291136 +g27 +sg291137 +S'Paul Strand' +p335751 +sa(dp335752 +g291130 +S'platinum print' +p335753 +sg291132 +S'1931' +p335754 +sg291134 +S'Rebecca, New Mexico' +p335755 +sg291136 +g27 +sg291137 +S'Paul Strand' +p335756 +sa(dp335757 +g291130 +S'gelatin silver print' +p335758 +sg291132 +S'1944' +p335759 +sg291134 +S'Toward the Sugar House, Vermont' +p335760 +sg291136 +g27 +sg291137 +S'Paul Strand' +p335761 +sa(dp335762 +g291130 +S'aluminum relief' +p335763 +sg291132 +S'1973/1974' +p335764 +sg291134 +S'The Tampa Tool Reliefs (1)' +p335765 +sg291136 +g27 +sg291137 +S'Jim Dine' +p335766 +sa(dp335767 +g291130 +S'cast aluminum in five parts' +p335768 +sg291132 +S'1974' +p335769 +sg291134 +S'The Tampa Tool Reliefs [series of 5 reliefs]' +p335770 +sg291136 +g27 +sg291137 +S'Jim Dine' +p335771 +sa(dp335772 +g291130 +S'aluminum relief' +p335773 +sg291132 +S'1973/1974' +p335774 +sg291134 +S'The Tampa Tool Reliefs (2)' +p335775 +sg291136 +g27 +sg291137 +S'Jim Dine' +p335776 +sa(dp335777 +g291130 +S'aluminum relief' +p335778 +sg291132 +S'1973/1974' +p335779 +sg291134 +S'The Tampa Tool Reliefs (3)' +p335780 +sg291136 +g27 +sg291137 +S'Jim Dine' +p335781 +sa(dp335782 +g291130 +S'aluminum relief' +p335783 +sg291132 +S'1973/1974' +p335784 +sg291134 +S'The Tampa Tool Reliefs (4)' +p335785 +sg291136 +g27 +sg291137 +S'Jim Dine' +p335786 +sa(dp335787 +g291130 +S'aluminum relief' +p335788 +sg291132 +S'1973/1974' +p335789 +sg291134 +S'The Tampa Tool Reliefs (5)' +p335790 +sg291136 +g27 +sg291137 +S'Jim Dine' +p335791 +sa(dp335792 +g291134 +S'Putti Playing in a Fanciful Landscape' +p335793 +sg291137 +S'Jean Cousin the Younger' +p335794 +sg291130 +S'etching on laid paper' +p335795 +sg291132 +S'unknown date\n' +p335796 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00083/a0008302.jpg' +p335797 +sg291136 +g27 +sa(dp335798 +g291134 +S'Clump of Trees at Civita Castellana' +p335799 +sg291137 +S'Jean-Baptiste-Camille Corot' +p335800 +sg291130 +S'pen and brown ink and graphite with white heightening on brown wove paper' +p335801 +sg291132 +S'1826' +p335802 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022dc.jpg' +p335803 +sg291136 +g27 +sa(dp335804 +g291134 +S'Thirius de Pautrizel' +p335805 +sg291137 +S'Jacques-Louis David' +p335806 +sg291130 +S'pen and gray ink with gray wash and pale brown wash (on the face) over touches of graphite, heightened with white gouache on laid paper, laid down on an old circular mount' +p335807 +sg291132 +S'June or July 1795' +p335808 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a0002430.jpg' +p335809 +sg291136 +g27 +sa(dp335810 +g291134 +S'The Triumph of Job' +p335811 +sg291137 +S'Maerten van Heemskerck' +p335812 +sg291130 +S'pen and brown ink with traces of chalk on laid paper' +p335813 +sg291132 +S'1559' +p335814 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a0002552.jpg' +p335815 +sg291136 +g27 +sa(dp335816 +g291130 +S'polaroid photograph mounted on board with masking tape border; squared in ink for transfer' +p335817 +sg291132 +S'1984' +p335818 +sg291134 +S'Fanny' +p335819 +sg291136 +g27 +sg291137 +S'Chuck Close' +p335820 +sa(dp335821 +g291134 +S"Two Men Contemplating a Bust of a Woman's Head" +p335822 +sg291137 +S'Pablo Picasso' +p335823 +sg291130 +S'graphite on wove paper' +p335824 +sg291132 +S'1931' +p335825 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00021/a0002185.jpg' +p335826 +sg291136 +g27 +sa(dp335827 +g291134 +S'Six Circus Horses with Riders' +p335828 +sg291137 +S'Pablo Picasso' +p335829 +sg291130 +S'pen and black ink on wove paper; laid down on cardboard' +p335830 +sg291132 +S'1905' +p335831 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a0002230.jpg' +p335832 +sg291136 +g27 +sa(dp335833 +g291134 +S'Lake Lucerne' +p335834 +sg291137 +S'Albert Bierstadt' +p335835 +sg291130 +S'oil on canvas' +p335836 +sg291132 +S'1858' +p335837 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00000/a0000026.jpg' +p335838 +sg291136 +S"Best known for his panoramic views of the Rocky Mountains, Albert Bierstadt began his career as a painter of European landscapes. In 1856, during a period of study abroad, he spent time in Switzerland and completed the plein air sketches he would later use to compose \n In the spring of 1858 he sent the painting to New York for the annual exhibition at the National Academy of Design. The picture caused a sensation. Bierstadt was hailed as a bright new star on the American art stage and was elected an honorary member of the Academy.\n Bierstadt's painting offers a sweeping view of Lake Lucerne with the village of Brunnen in the middle distance and the alpine peaks Ematten, Oberbauen, Uri–Rotstock and St. Gotthard in the distance. Though an image of mountain grandeur, \n One year after completing \n " +p335839 +sa(dp335840 +g291134 +S'Peasants Fighting in a Tavern' +p335841 +sg291137 +S'Artist Information (' +p335842 +sg291130 +S'(artist)' +p335843 +sg291132 +S'\n' +p335844 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a0002610.jpg' +p335845 +sg291136 +g27 +sa(dp335846 +g291134 +S'Italian Coastal Landscape with a Thunderstorm' +p335847 +sg291137 +S'Friedrich Preller the Elder' +p335848 +sg291130 +S'pen and red-brown ink with red-brown and gray washes, heightened with white, over graphite on paper; mounted on board' +p335849 +sg291132 +S'1828/1831' +p335850 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b9/a000b92c.jpg' +p335851 +sg291136 +g27 +sa(dp335852 +g291130 +S'sketchbook with 54 drawings (in various states of completion) in graphite on wove paper' +p335853 +sg291132 +S'unknown date\n' +p335854 +sg291134 +S'Sketchbook of Landscape Drawings' +p335855 +sg291136 +g27 +sg291137 +S'Winckworth Allan Gay' +p335856 +sa(dp335857 +g291134 +S'Roadside Sign' +p335858 +sg291137 +S'Walker Evans' +p335859 +sg291130 +S'gelatin silver print' +p335860 +sg291132 +S'1929' +p335861 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e44.jpg' +p335862 +sg291136 +g27 +sa(dp335863 +g291134 +S'Hudson Street Boarding House Detail, New York' +p335864 +sg291137 +S'Walker Evans' +p335865 +sg291130 +S'gelatin silver print' +p335866 +sg291132 +S'1931' +p335867 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e32.jpg' +p335868 +sg291136 +g27 +sa(dp335869 +g291130 +S'gelatin silver print' +p335870 +sg291132 +S'July 1935' +p335871 +sg291134 +S'Independence Day, Terra Alta, West Virginia' +p335872 +sg291136 +g27 +sg291137 +S'Walker Evans' +p335873 +sa(dp335874 +g291134 +S'Street Scene, New York City' +p335875 +sg291137 +S'Walker Evans' +p335876 +sg291130 +S'gelatin silver print' +p335877 +sg291132 +S'Summer 1938' +p335878 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e39.jpg' +p335879 +sg291136 +g27 +sa(dp335880 +g291130 +S'red chalk on laid paper' +p335881 +sg291132 +S'c. 1925' +p335882 +sg291134 +S'Florence Beerbohm' +p335883 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p335884 +sa(dp335885 +g291134 +S'Charles Goldoni' +p335886 +sg291137 +S'Artist Information (' +p335887 +sg291130 +S'(artist after)' +p335888 +sg291132 +S'\n' +p335889 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d1d.jpg' +p335890 +sg291136 +g27 +sa(dp335891 +g291134 +S'M. David Hume' +p335892 +sg291137 +S'Artist Information (' +p335893 +sg291130 +S'(artist after)' +p335894 +sg291132 +S'\n' +p335895 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d3f.jpg' +p335896 +sg291136 +g27 +sa(dp335897 +g291134 +S'M. David Hume' +p335898 +sg291137 +S'Artist Information (' +p335899 +sg291130 +S'(artist after)' +p335900 +sg291132 +S'\n' +p335901 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d40.jpg' +p335902 +sg291136 +g27 +sa(dp335903 +g291134 +S'Louis XV' +p335904 +sg291137 +S'Artist Information (' +p335905 +sg291130 +S'(artist after)' +p335906 +sg291132 +S'\n' +p335907 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c68.jpg' +p335908 +sg291136 +g27 +sa(dp335909 +g291134 +S'Antoine Fran\xc3\xa7ois Prevost' +p335910 +sg291137 +S'Georg Friedrich Schmidt' +p335911 +sg291130 +S'engraving on laid paper' +p335912 +sg291132 +S'1745' +p335913 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b336.jpg' +p335914 +sg291136 +g27 +sa(dp335915 +g291134 +S'Guillaume Thomas Raynal' +p335916 +sg291137 +S'Artist Information (' +p335917 +sg291130 +S'(artist after)' +p335918 +sg291132 +S'\n' +p335919 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d08.jpg' +p335920 +sg291136 +g27 +sa(dp335921 +g291134 +S'D. Pineau, Sculpteur' +p335922 +sg291137 +S'Artist Information (' +p335923 +sg291130 +S'(artist after)' +p335924 +sg291132 +S'\n' +p335925 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c66.jpg' +p335926 +sg291136 +g27 +sa(dp335927 +g291134 +S'Jean George Wille' +p335928 +sg291137 +S'Artist Information (' +p335929 +sg291130 +S'(artist after)' +p335930 +sg291132 +S'\n' +p335931 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d18.jpg' +p335932 +sg291136 +g27 +sa(dp335933 +g291134 +S'Diderot' +p335934 +sg291137 +S'Thomas Ryder' +p335935 +sg291130 +S'engraving on laid paper' +p335936 +sg291132 +S'unknown date\n' +p335937 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a00053b8.jpg' +p335938 +sg291136 +g27 +sa(dp335939 +g291134 +S'Glorification of the Host' +p335940 +sg291137 +S'Italian 18th Century' +p335941 +sg291130 +S'overall: 29.5 x 26.3 cm (11 5/8 x 10 3/8 in.)' +p335942 +sg291132 +S'\npen and iron gall ink on laid paper' +p335943 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d92.jpg' +p335944 +sg291136 +g27 +sa(dp335945 +g291134 +S'Male Nude Seated on Rocks' +p335946 +sg291137 +S'Louis de Boullogne the Younger' +p335947 +sg291130 +S'black chalk, heightened with white chalk, on brown laid paper' +p335948 +sg291132 +S'c. 1710' +p335949 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00060/a00060cf.jpg' +p335950 +sg291136 +g27 +sa(dp335951 +g291134 +S'Briare' +p335952 +sg291137 +S'Henri-Joseph Harpignies' +p335953 +sg291130 +S'watercolor over graphite on wove paper' +p335954 +sg291132 +S'1902' +p335955 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00021/a000216f.jpg' +p335956 +sg291136 +g27 +sa(dp335957 +g291134 +S'Figures Seated Around a Fountain' +p335958 +sg291137 +S'Jean-Baptiste Lallemand' +p335959 +sg291130 +S'black chalk on laid paper; laid down' +p335960 +sg291132 +S'c. 1755' +p335961 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a00071df.jpg' +p335962 +sg291136 +g27 +sa(dp335963 +g291134 +S'The Serpentine, London' +p335964 +sg291137 +S'Walter Richard Sickert' +p335965 +sg291130 +S'pen and black and brown ink, squared for transfer, on lined wove paper' +p335966 +sg291132 +S'c. 1920' +p335967 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bba.jpg' +p335968 +sg291136 +g27 +sa(dp335969 +g291134 +S'The Flight into Egypt' +p335970 +sg291137 +S'Benjamin West' +p335971 +sg291130 +S'pen and brown ink and wash, heightened with white gouache, on laid paper' +p335972 +sg291132 +S'c. 1800' +p335973 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f09c.jpg' +p335974 +sg291136 +g27 +sa(dp335975 +g291134 +S'Allegory of Peace' +p335976 +sg291137 +S'Artist Information (' +p335977 +sg291130 +S'Italian, 1511 - 1574' +p335978 +sg291132 +S'(artist after)' +p335979 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a0007526.jpg' +p335980 +sg291136 +g27 +sa(dp335981 +g291130 +S'collage with colored paper and gouache mounted on board' +p335982 +sg291132 +S'probably 1960/1970' +p335983 +sg291134 +S'Untitled' +p335984 +sg291136 +g27 +sg291137 +S'Herman Cherry' +p335985 +sa(dp335986 +g291130 +S'collage with colored paper and gouache mounted on board' +p335987 +sg291132 +S'probably 1960/1970' +p335988 +sg291134 +S'Untitled' +p335989 +sg291136 +g27 +sg291137 +S'Herman Cherry' +p335990 +sa(dp335991 +g291130 +S'collage with colored papers' +p335992 +sg291132 +S'1967' +p335993 +sg291134 +S'Untitled' +p335994 +sg291136 +g27 +sg291137 +S'Ellsworth Kelly' +p335995 +sa(dp335996 +g291130 +S'lithograph in black and yellow touched with graphite, mounted with tape onto red backing paper' +p335997 +sg291132 +S'probably 1960/1970' +p335998 +sg291134 +S'Red Boiling Springs #2' +p335999 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p336000 +sa(dp336001 +g291130 +S'collage with burlap and paper mounted to painted paper' +p336002 +sg291132 +S'probably 1960/1970' +p336003 +sg291134 +S'Untitled' +p336004 +sg291136 +g27 +sg291137 +S'Conrad Marca-Relli' +p336005 +sa(dp336006 +g291130 +S'collage with burlap and canvas mounted on gray construction paper' +p336007 +sg291132 +S'probably 1960/1970' +p336008 +sg291134 +S'Untitled' +p336009 +sg291136 +g27 +sg291137 +S'Conrad Marca-Relli' +p336010 +sa(dp336011 +g291130 +S'collage with graphite on graph paper mounted on black construction paper' +p336012 +sg291132 +S'1946' +p336013 +sg291134 +S'Untitled' +p336014 +sg291136 +g27 +sg291137 +S'Isamu Noguchi' +p336015 +sa(dp336016 +g291130 +S'red, white, and black gouache printed "a la poupee" on wove paper' +p336017 +sg291132 +S'probably 1960/1970' +p336018 +sg291134 +S'Untitled' +p336019 +sg291136 +g27 +sg291137 +S'Arnaldo Pomodoro' +p336020 +sa(dp336021 +g291130 +S'gray, white, and black gouache printed "a la poupee" on wove paper' +p336022 +sg291132 +S'probably 1960/1970' +p336023 +sg291134 +S'Untitled' +p336024 +sg291136 +g27 +sg291137 +S'Arnaldo Pomodoro' +p336025 +sa(dp336026 +g291130 +S'red gouache printed "a la poupee" on wove paper' +p336027 +sg291132 +S'probably 1960/1970' +p336028 +sg291134 +S'Untitled' +p336029 +sg291136 +g27 +sg291137 +S'Arnaldo Pomodoro' +p336030 +sa(dp336031 +g291130 +S'red and black gouache printed "a la poupee" on wove paper' +p336032 +sg291132 +S'probably 1960/1970' +p336033 +sg291134 +S'Untitled' +p336034 +sg291136 +g27 +sg291137 +S'Arnaldo Pomodoro' +p336035 +sa(dp336036 +g291130 +S'collage with colored papers mounted on board' +p336037 +sg291132 +S'1973-1975' +p336038 +sg291134 +S'Infinity Field' +p336039 +sg291136 +g27 +sg291137 +S'Theodoros Stamos' +p336040 +sa(dp336041 +g291130 +S'gouache and graphite on blotting paper' +p336042 +sg291132 +S'1973-1975' +p336043 +sg291134 +S'Red and Green on Blue Field' +p336044 +sg291136 +g27 +sg291137 +S'Theodoros Stamos' +p336045 +sa(dp336046 +g291130 +S'collage with colored papers mounted on board' +p336047 +sg291132 +S'probably 1960/1970' +p336048 +sg291134 +S'Portrait Head' +p336049 +sg291136 +g27 +sg291137 +S'Ernest Tino Trova' +p336050 +sa(dp336051 +g291130 +S'collage with colored papers and colored tissue papers mounted on styrofoam board' +p336052 +sg291132 +S'probably 1960/1970' +p336053 +sg291134 +S'Daytime' +p336054 +sg291136 +g27 +sg291137 +S'Esteban Vicente' +p336055 +sa(dp336056 +g291130 +S'collage with colored papers' +p336057 +sg291132 +S'1980' +p336058 +sg291134 +S'Blue Island' +p336059 +sg291136 +g27 +sg291137 +S'Emerson Woelffer' +p336060 +sa(dp336061 +g291130 +S'collage with colored papers' +p336062 +sg291132 +S'1979' +p336063 +sg291134 +S'Blue Island' +p336064 +sg291136 +g27 +sg291137 +S'Emerson Woelffer' +p336065 +sa(dp336066 +g291130 +S'collage with colored papers' +p336067 +sg291132 +S'1979' +p336068 +sg291134 +S'Orange is Day' +p336069 +sg291136 +g27 +sg291137 +S'Emerson Woelffer' +p336070 +sa(dp336071 +g291130 +S'collage with colored papers' +p336072 +sg291132 +S'1980' +p336073 +sg291134 +S'White Rain' +p336074 +sg291136 +g27 +sg291137 +S'Emerson Woelffer' +p336075 +sa(dp336076 +g291130 +S'colored pencil and graphite on graph paper' +p336077 +sg291132 +S'1965' +p336078 +sg291134 +S'Untitled' +p336079 +sg291136 +g27 +sg291137 +S'Larry Zox' +p336080 +sa(dp336081 +g291130 +S'gouache on wove paper' +p336082 +sg291132 +S'probably 1960/1970' +p336083 +sg291134 +S'Angel Stone' +p336084 +sg291136 +g27 +sg291137 +S'Lee Gatch' +p336085 +sa(dp336086 +g291130 +S'gouache on wove paper' +p336087 +sg291132 +S'1967' +p336088 +sg291134 +S'Totem Blue' +p336089 +sg291136 +g27 +sg291137 +S'Jack Youngerman' +p336090 +sa(dp336091 +g291134 +S'Sainte-Adresse' +p336092 +sg291137 +S'Claude Monet' +p336093 +sg291130 +S'oil on canvas' +p336094 +sg291132 +S'1867' +p336095 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004bad.jpg' +p336096 +sg291136 +S'In June 1867, at the urging of his father,\r\nClaude Monet went to Sainte-Adresse, a\r\npopular resort town on the Normandy\r\ncoast, for an extended stay in the home\r\nof his aunt, Sophie Lecadre. His visit\r\nlasted almost until winter and proved to\r\nbe a period of intense activity, despite\r\nthe complications of his personal life\r\nat the time. &Quot;I have my work cut out for\r\nme,&Quot; Monet wrote to his friend and fellow\r\npainter Frédéric Bazille shortly after\r\nhis arrival. "I have about twenty canvases\r\nwell under way, some stunning seascapes\r\nand some figures and gardens, everything\r\nin short."\n Sainte-Adresse\n In stylistic terms, this painting is consistent\r\nwith the seascapes Monet produced\r\nduring the summer and fall of 1867. A new\r\nawareness of the particular atmospheric\r\ncharacter of the scene reflects Monet\xe2\x80\x99s\r\ngrowing acuity as a landscape painter. The\r\novercast day is skillfully captured through\r\nthe grayish tonalities of the sky, the water,\r\nand the beach. A stronger emphasis is also\r\ngiven to the paint surface, with rapidly\r\napplied touches of color that help characterize\r\nrather than carefully delineate the\r\nscene. The relative simplicity of the composition,\r\nthe elimination of detail, and\r\nthe fresh, varied quality of the brushwork\r\nall suggest that this painting was executed\r\nat least partly on site rather than entirely\r\nin the studio.\n The most salient characteristic, however,\r\nis the treatment of the subject itself.\r\nAlthough Sainte-Adresse was a resort\r\nsuburb, located two and one-half miles\r\nnorthwest of Le Havre, Monet made no\r\nallusion in the painting to the influx of\r\ntourists who visited the Normandy coast\r\nevery summer. In this painting, as in the 1867 \n (Text by Kimberly Jones, \n Notes\n ' +p336097 +sa(dp336098 +g291134 +S'Persische Nachtigallen (Persian Nightingales)' +p336099 +sg291137 +S'Paul Klee' +p336100 +sg291130 +S'gouache, watercolor, and pen and black ink over graphite on laid paper, mounted on cardboard; the sheet bordered at the top with yellow paper strip mounted to support' +p336101 +sg291132 +S'1917' +p336102 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00021/a0002174.jpg' +p336103 +sg291136 +S"Literary references permeate the works\r\n of Swiss artist Paul Klee, whose \n Johann Wolfgang von Goethe introduced\r\n the Persian writer to Germanspeaking\r\n audiences in his \n A pink rose appears in the lower left\r\n quadrant of Klee's watercolor, cradled\r\n by two sharply pointed leaves whose\r\n forms mirror the nightingales' heads.\r\n Above and to the left of the flower is\r\n the letter \n Klee further alludes to Persian\r\n miniature painting in the drawing's\r\n gemlike delicacy, ornamentation, and\r\n lustrous color, as well as its disregard for\r\n scale and perspective. Even the structure\r\n of the composition, which one\r\n seems to enter through an arched niche\r\n or parted curtains, recalls the format\r\n of many Persian miniatures. While Klee\r\n was living in Germany, from 1898 to\r\n 1933, he would have had ample opportunity\r\n to see Persian art in public collections,\r\n such as the Kaiser-Friedrich-Museum in Berlin (now Bode Museum),\r\n as well as the Bayerisches Nationalmuseum\r\n and the Staatsbibliothek in\r\n Munich. He no doubt also saw an\r\n important 1910 exhibition of Islamic art\r\n in Munich that featured more than\r\n 3,500 objects, including, as Klee's friend\r\n and colleagueWassily Kandinsky wrote\r\n in a published review, "carpets, majolica,\r\n weapons, ceramics, textiles, and finally\xc3\xa2\xc2\x80\xc2\x94the most arresting and closest to us\r\n today\xc3\xa2\xc2\x80\xc2\x94Persian miniatures." \n This radiant watercolor reflects in\r\n miniature a wondrous, microcosmic\r\n universe, one that even grants status to\r\n lowly consonants. Indeed, the letters\r\n R and N are fully integrated within the\r\n composition; they are scaled to the size\r\n of the nightingales and juxtaposed in\r\n the same indeterminate space. As is\r\n often the case in Persian art and particularly\r\n in Hafiz's poetry, the earthly and\r\n the divine are poised in a delicate and\r\n ambiguous balance. Individual shapes\r\n shift one against the other, each within\r\n the confines of Klee's wiry line and\r\n each flooded with thin washes of color.\r\n Although perfectly balanced for the\r\n moment, one senses that a tiny slip\r\n of a line in one direction or another\r\n might set the whole creation tumbling. \n " +p336104 +sa(dp336105 +g291134 +S'Blackboard' +p336106 +sg291137 +S'Winslow Homer' +p336107 +sg291130 +S'watercolor on wove paper' +p336108 +sg291132 +S'1877' +p336109 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a0002243.jpg' +p336110 +sg291136 +g27 +sa(dp336111 +g291134 +S'The Martyrdom of Two Saints' +p336112 +sg291137 +S'Artist Information (' +p336113 +sg291130 +S'(artist after)' +p336114 +sg291132 +S'\n' +p336115 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c896.jpg' +p336116 +sg291136 +g27 +sa(dp336117 +g291134 +S'View of an Italian Port' +p336118 +sg291137 +S'Nicolaes Pietersz Berchem' +p336119 +sg291130 +S'oil on canvas' +p336120 +sg291132 +S'early 1660s' +p336121 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e52.jpg' +p336122 +sg291136 +g27 +sa(dp336123 +g291134 +S'Abraham Entertaining the Angels' +p336124 +sg291137 +S'Jan Tengnagel' +p336125 +sg291130 +S'pen and brown ink with wash over black chalk and graphite on laid paper; laid down' +p336126 +sg291132 +S'1610/1620' +p336127 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a0002859.jpg' +p336128 +sg291136 +g27 +sa(dp336129 +g291130 +S'oil on canvas' +p336130 +sg291132 +S'c. 1912' +p336131 +sg291134 +S'Large Vase with Flowers' +p336132 +sg291136 +g27 +sg291137 +S'Odilon Redon' +p336133 +sa(dp336134 +g291134 +S'Polichinelle' +p336135 +sg291137 +S'Edouard Manet' +p336136 +sg291130 +S'lithograph in black hand-colored with gouache and watercolor on wove paper' +p336137 +sg291132 +S'1874' +p336138 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f56.jpg' +p336139 +sg291136 +g27 +sa(dp336140 +g291134 +S'Harmonica Player (Mundharmonikaspielerin)' +p336141 +sg291137 +S'Ernst Ludwig Kirchner' +p336142 +sg291130 +S'lithograph in red and deep violet on blotting paper' +p336143 +sg291132 +S'1919' +p336144 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b7bc.jpg' +p336145 +sg291136 +g27 +sa(dp336146 +g291134 +S'Mountains (Berge)' +p336147 +sg291137 +S'Ernst Ludwig Kirchner' +p336148 +sg291130 +S'etching and tonal etching in black, touched with gray ink, on blotting paper' +p336149 +sg291132 +S'1920' +p336150 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c432.jpg' +p336151 +sg291136 +g27 +sa(dp336152 +g291134 +S'Landscape with the Taming of a Horse' +p336153 +sg291137 +S'Guercino' +p336154 +sg291130 +S', 1620/1630' +p336155 +sg291132 +S'\n' +p336156 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a000254f.jpg' +p336157 +sg291136 +g27 +sa(dp336158 +g291134 +S'The Repentant Magdalen' +p336159 +sg291137 +S'Gerard Seghers' +p336160 +sg291130 +S'oil on canvas' +p336161 +sg291132 +S'c. 1627/1630' +p336162 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e47.jpg' +p336163 +sg291136 +g27 +sa(dp336164 +g291134 +S'The Espousal (The Passage of the Rhine)' +p336165 +sg291137 +S'Aim\xc3\xa9-Jules Dalou' +p336166 +sg291130 +S'bronze' +p336167 +sg291132 +S'model 1890/1892, cast c. 1907' +p336168 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00029/a0002958.jpg' +p336169 +sg291136 +g27 +sa(dp336170 +g291130 +S'graphite on brown wove paper' +p336171 +sg291132 +S'1948' +p336172 +sg291134 +S'Nude Girl Stretched Out on a Chair [recto]' +p336173 +sg291136 +g27 +sg291137 +S'Balthus' +p336174 +sa(dp336175 +g291130 +S'black chalk on wove paper' +p336176 +sg291132 +S'1948' +p336177 +sg291134 +S'Figure Studies [verso]' +p336178 +sg291136 +g27 +sg291137 +S'Balthus' +p336179 +sa(dp336180 +g291134 +S'Drawbridge - Long Branch R. R.' +p336181 +sg291137 +S'Theodore Robinson' +p336182 +sg291130 +S'oil on canvas' +p336183 +sg291132 +S'1894' +p336184 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a00001f8.jpg' +p336185 +sg291136 +g27 +sa(dp336186 +g291130 +g27 +sg291132 +S'(publisher)' +p336187 +sg291134 +S'Berlin Dream with Steel Window Frame at 2978899' +p336188 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336189 +sa(dp336190 +g291130 +g27 +sg291132 +S'(publisher)' +p336191 +sg291134 +S'Concentric Bearings, A' +p336192 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336193 +sa(dp336194 +g291130 +g27 +sg291132 +S'(publisher)' +p336195 +sg291134 +S'Trip on the Ground' +p336196 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336197 +sa(dp336198 +g291134 +S'King Corpse' +p336199 +sg291137 +S'Artist Information (' +p336200 +sg291130 +g27 +sg291132 +S'(publisher)' +p336201 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a99.jpg' +p336202 +sg291136 +g27 +sa(dp336203 +g291130 +g27 +sg291132 +S'(publisher)' +p336204 +sg291134 +S'Platform #2' +p336205 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336206 +sa(dp336207 +g291130 +g27 +sg291132 +S'(publisher)' +p336208 +sg291134 +S'Celia' +p336209 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336210 +sa(dp336211 +g291134 +S'Figure 0' +p336212 +sg291137 +S'Artist Information (' +p336213 +sg291130 +g27 +sg291132 +S'(publisher)' +p336214 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000adf.jpg' +p336215 +sg291136 +g27 +sa(dp336216 +g291130 +g27 +sg291132 +S'(publisher)' +p336217 +sg291134 +S'Figure 9' +p336218 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336219 +sa(dp336220 +g291130 +g27 +sg291132 +S'(publisher)' +p336221 +sg291134 +S'Red Curve' +p336222 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336223 +sa(dp336224 +g291130 +g27 +sg291132 +S'(publisher)' +p336225 +sg291134 +S'Rite of Passage' +p336226 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336227 +sa(dp336228 +g291130 +g27 +sg291132 +S'(publisher)' +p336229 +sg291134 +S'Ringer (State)' +p336230 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336231 +sa(dp336232 +g291134 +S'Boneman' +p336233 +sg291137 +S'Artist Information (' +p336234 +sg291130 +g27 +sg291132 +S'(publisher)' +p336235 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b7c.jpg' +p336236 +sg291136 +g27 +sa(dp336237 +g291134 +S'Muddy Waters' +p336238 +sg291137 +S'Artist Information (' +p336239 +sg291130 +g27 +sg291132 +S'(publisher)' +p336240 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b8a.jpg' +p336241 +sg291136 +g27 +sa(dp336242 +g291130 +S'heliorelief and woodcut on hot-pressed T.H. Saunders paper, with painted oak and gum plywood frame and assemblage' +p336243 +sg291132 +S'1987/1989' +p336244 +sg291134 +S'Father and Son Song' +p336245 +sg291136 +g27 +sg291137 +S'Sandro Chia' +p336246 +sa(dp336247 +g291130 +S'woodcut, heliorelief woodcut, softground and spitbite etching, and drypoint with painted additions on wove paper' +p336248 +sg291132 +S'1987/1988' +p336249 +sg291134 +S'Youth and the Maiden [left sheet of 3-part print]' +p336250 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336251 +sa(dp336252 +g291130 +S'woodcut, heliorelief woodcut, softground and spitbite etching, and drypoint, with painted additions on wove paper' +p336253 +sg291132 +S'1987/1988' +p336254 +sg291134 +S'Youth and the Maiden [center sheet of 3-part print]' +p336255 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336256 +sa(dp336257 +g291130 +S'woodcut, heliorelief woodcut, softground and spitbite etching, and drypoint, with painted additions on wove paper' +p336258 +sg291132 +S'1987/1988' +p336259 +sg291134 +S'Youth and the Maiden [right sheet of 3-part print]' +p336260 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336261 +sa(dp336262 +g291130 +S'brushed stainless steel, aluminum mesh, cast resin, cast paper, aluminum panels, cast epoxy, and color lithograph' +p336263 +sg291132 +S'1990' +p336264 +sg291134 +S'Canoptic Legerdemain' +p336265 +sg291136 +g27 +sg291137 +S'Nancy Graves' +p336266 +sa(dp336267 +g291130 +S'lithograph, woodcut, and screenprint with encaustic and waxtype on wove paper' +p336268 +sg291132 +S'1989' +p336269 +sg291134 +S'Green Face' +p336270 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p336271 +sa(dp336272 +g291130 +S'bronze, Xerox transfer on silk, thread, shot' +p336273 +sg291132 +S'1986' +p336274 +sg291134 +S'Fifth-Force' +p336275 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p336276 +sa(dp336277 +g291130 +S'aquatint on wove paper' +p336278 +sg291132 +S'1987' +p336279 +sg291134 +S'Welcome to the Water Planet' +p336280 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p336281 +sa(dp336282 +g291130 +S'watercolor (applied recto and verso) on japan paper' +p336283 +sg291132 +S'c. 1930/1940' +p336284 +sg291134 +S'Sunflowers, Pink and White Dahlias, and a Blue Delphinium' +p336285 +sg291136 +g27 +sg291137 +S'Emil Nolde' +p336286 +sa(dp336287 +g291134 +S'U.S. Thread Company Mills, Willimantic, Connecticut' +p336288 +sg291137 +S'Julian Alden Weir' +p336289 +sg291130 +S'oil on canvas' +p336290 +sg291132 +S'c. 1893/1897' +p336291 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00105/a00105d8.jpg' +p336292 +sg291136 +g27 +sa(dp336293 +g291134 +S'Soft Drainpipe - Red (Hot) Version' +p336294 +sg291137 +S'Claes Oldenburg' +p336295 +sg291130 +S'vinyl lined with canvas, filled with expanded polystyrene chips, on painted metal stand' +p336296 +sg291132 +S'1967' +p336297 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a00016a0.jpg' +p336298 +sg291136 +g27 +sa(dp336299 +g291134 +S'Mountain Landscape with Washerwomen and a Fisherman' +p336300 +sg291137 +S'Francesco Zuccarelli' +p336301 +sg291130 +S'gouache on paper' +p336302 +sg291132 +S'1760s' +p336303 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a00028ed.jpg' +p336304 +sg291136 +g27 +sa(dp336305 +g291130 +S'charcoal, black chalk, and pastel on laid paper' +p336306 +sg291132 +S'1894/1895' +p336307 +sg291134 +S'Reclining Nude [recto]' +p336308 +sg291136 +g27 +sg291137 +S'Paul Gauguin' +p336309 +sa(dp336310 +g291130 +S'charcoal, black chalk, and pastel on paper worked over with brush and water' +p336311 +sg291132 +S'c. 1894' +p336312 +sg291134 +S'Study for Aita tamari vahine Judith te parari [verso]' +p336313 +sg291136 +g27 +sg291137 +S'Paul Gauguin' +p336314 +sa(dp336315 +g291134 +S'Interior of the Fourth Dimension' +p336316 +sg291137 +S'Max Weber' +p336317 +sg291130 +S'oil on canvas' +p336318 +sg291132 +S'1913' +p336319 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00002/a000028e.jpg' +p336320 +sg291136 +g27 +sa(dp336321 +g291134 +S'Warrior in Renaissance Armor on a Rearing Horse' +p336322 +sg291137 +S'Peter Vischer the Younger' +p336323 +sg291130 +S', c. 1530/1540' +p336324 +sg291132 +S'\n' +p336325 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00079/a0007968.jpg' +p336326 +sg291136 +g27 +sa(dp336327 +g291130 +S'etching in black on japan paper' +p336328 +sg291132 +S'1909' +p336329 +sg291134 +S'Old House, Rue des Arpents, Rouen, I' +p336330 +sg291136 +g27 +sg291137 +S'John Marin' +p336331 +sa(dp336332 +g291130 +S'etching in black with plate tone on japan paper' +p336333 +sg291132 +S'1909' +p336334 +sg291134 +S'Old House, Rue des Arpents, Rouen, I' +p336335 +sg291136 +g27 +sg291137 +S'John Marin' +p336336 +sa(dp336337 +g291134 +S'Figure Costumed as Hercules' +p336338 +sg291137 +S'French 16th Century' +p336339 +sg291130 +S'sheet: 41.5 x 29 cm (16 5/16 x 11 7/16 in.)' +p336340 +sg291132 +S'\netching on laid paper' +p336341 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00083/a0008347.jpg' +p336342 +sg291136 +g27 +sa(dp336343 +g291134 +S'Miss Kitty Dressing' +p336344 +sg291137 +S'Artist Information (' +p336345 +sg291130 +S'(artist after)' +p336346 +sg291132 +S'\n' +p336347 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d3c.jpg' +p336348 +sg291136 +g27 +sa(dp336349 +g291134 +S'Zim Zum' +p336350 +sg291137 +S'Anselm Kiefer' +p336351 +sg291130 +S'acrylic, emulsion, crayon, shellac, ashes, and canvas on lead' +p336352 +sg291132 +S'1990' +p336353 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f9b.jpg' +p336354 +sg291136 +g27 +sa(dp336355 +g291130 +S'gelatin silver print' +p336356 +sg291132 +S'1949' +p336357 +sg291134 +S'Eleanor, Chicago' +p336358 +sg291136 +g27 +sg291137 +S'Harry Callahan' +p336359 +sa(dp336360 +g291130 +S'gelatin silver print mounted on paperboard' +p336361 +sg291132 +S'1959' +p336362 +sg291134 +S'Grasses, Wisconsin' +p336363 +sg291136 +g27 +sg291137 +S'Harry Callahan' +p336364 +sa(dp336365 +g291130 +S'gelatin silver print' +p336366 +sg291132 +S'c. 1943' +p336367 +sg291134 +S'Store Front and Reflections' +p336368 +sg291136 +g27 +sg291137 +S'Harry Callahan' +p336369 +sa(dp336370 +g291130 +S'gelatin silver print mounted on paperboard' +p336371 +sg291132 +S'1947' +p336372 +sg291134 +S'Eleanor, Chicago' +p336373 +sg291136 +g27 +sg291137 +S'Harry Callahan' +p336374 +sa(dp336375 +g291130 +S'platinum print' +p336376 +sg291132 +S'1916' +p336377 +sg291134 +S'People, Streets of New York, 83rd and West End Avenue' +p336378 +sg291136 +g27 +sg291137 +S'Paul Strand' +p336379 +sa(dp336380 +g291130 +S'(artist after)' +p336381 +sg291132 +S'\n' +p336382 +sg291134 +S'The Grotto of Posilipo' +p336383 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336384 +sa(dp336385 +g291134 +S'View on the River Wye, Looking towards Chepstow' +p336386 +sg291137 +S'John Martin' +p336387 +sg291130 +S'watercolor, gouache, and touches of oil paint (?) over graphite with scraping out, heightened with varnish and/or gum arabic, on wove paper' +p336388 +sg291132 +S'1844' +p336389 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a00025fa.jpg' +p336390 +sg291136 +g27 +sa(dp336391 +g291130 +S'hand-colored etching, engraving, aquatint, and soft-ground on laid paper [proof]' +p336392 +sg291132 +S'1953/1955' +p336393 +sg291134 +S'Magic Garden' +p336394 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p336395 +sa(dp336396 +g291130 +S'etching, engraving, aquatint, and soft-ground in green-black on Rives BFK wove paper [printed 1965/1966 at Hollander Graphic Workshop, New York]' +p336397 +sg291132 +S'1953/1955' +p336398 +sg291134 +S'Magic Garden' +p336399 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p336400 +sa(dp336401 +g291130 +S'lithograph in black on Arches paper' +p336402 +sg291132 +S'1977' +p336403 +sg291134 +S'Nancy' +p336404 +sg291136 +g27 +sg291137 +S'Alice Neel' +p336405 +sa(dp336406 +g291130 +S'soft-ground etching in black, orange, and green on Richard de Bas paper' +p336407 +sg291132 +S'1989' +p336408 +sg291134 +S'Pages, 1' +p336409 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p336410 +sa(dp336411 +g291130 +S'portfolio with twelve intaglio prints and title page' +p336412 +sg291132 +S'published 1989' +p336413 +sg291134 +S'Pages' +p336414 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p336415 +sa(dp336416 +g291130 +S'drypoint in black on Fabriano Esportazione paper' +p336417 +sg291132 +S'1989' +p336418 +sg291134 +S'Pages, 2' +p336419 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p336420 +sa(dp336421 +g291130 +S'drypoint in black on Richard de Bas paper' +p336422 +sg291132 +S'1989' +p336423 +sg291134 +S'Pages, 3' +p336424 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p336425 +sa(dp336426 +g291130 +S'etching and soft-ground etching in black and red on Fabriano Esportazione paper' +p336427 +sg291132 +S'1989' +p336428 +sg291134 +S'Pages, 4' +p336429 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p336430 +sa(dp336431 +g291130 +S"drypoint in black and aquatint in gray on D'Arches paper" +p336432 +sg291132 +S'1989' +p336433 +sg291134 +S'Pages, 5' +p336434 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p336435 +sa(dp336436 +g291130 +S'etching, soft-ground etching, and aquatint in black, gold, and pale red on Richard de Bas paper' +p336437 +sg291132 +S'1989' +p336438 +sg291134 +S'Pages, 6' +p336439 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p336440 +sa(dp336441 +g291130 +S'drypoint in black-brown on Fabriano Esportazione paper' +p336442 +sg291132 +S'1989' +p336443 +sg291134 +S'Pages, 7' +p336444 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p336445 +sa(dp336446 +g291130 +S"drypoint in black and red on D'Arches paper" +p336447 +sg291132 +S'1989' +p336448 +sg291134 +S'Pages, 8' +p336449 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p336450 +sa(dp336451 +g291130 +S'drypoint in black and aquatint and soft-ground etching in two shades of red on Fabriano Esportazione paper' +p336452 +sg291132 +S'1989' +p336453 +sg291134 +S'Pages, 9' +p336454 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p336455 +sa(dp336456 +g291130 +S'etching, soft-ground etching, and aquatint in green, brown, and black on Goya paper' +p336457 +sg291132 +S'1989' +p336458 +sg291134 +S'Pages, 10' +p336459 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p336460 +sa(dp336461 +g291130 +S'drypoint in black on Twinrocker White paper' +p336462 +sg291132 +S'1989' +p336463 +sg291134 +S'Pages, 11' +p336464 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p336465 +sa(dp336466 +g291130 +S'drypoint, etching, and soft-ground etching in black and red-brown on Richard de Bas paper' +p336467 +sg291132 +S'1989' +p336468 +sg291134 +S'Pages, 12' +p336469 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p336470 +sa(dp336471 +g291130 +S'hand-colored etching, engraving, aquatint, and soft-ground on wove paper [proof]' +p336472 +sg291132 +S'1953/1955' +p336473 +sg291134 +S'Magic Garden' +p336474 +sg291136 +g27 +sg291137 +S'Louise Nevelson' +p336475 +sa(dp336476 +g291134 +S'The Ruins of Saint Nicolai Church in Hamburg' +p336477 +sg291137 +S'Martin Gensler' +p336478 +sg291130 +S'watercolor and pen and brown ink, heightened with white, on wove paper' +p336479 +sg291132 +S'1871' +p336480 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a0002540.jpg' +p336481 +sg291136 +g27 +sa(dp336482 +g291130 +S'platinum print' +p336483 +sg291132 +S'1911' +p336484 +sg291134 +S'England' +p336485 +sg291136 +g27 +sg291137 +S'Paul Strand' +p336486 +sa(dp336487 +g291134 +S'Studies of Trees' +p336488 +sg291137 +S'Auguste Renoir' +p336489 +sg291130 +S'pen and black ink, watercolor, and graphite on J. Whatman wove paper' +p336490 +sg291132 +S'1886' +p336491 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026e9.jpg' +p336492 +sg291136 +g27 +sa(dp336493 +g291134 +S'Too Demanding (Exigeante)' +p336494 +sg291137 +S'Albert Besnard' +p336495 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336496 +sg291132 +S'1900' +p336497 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a000906e.jpg' +p336498 +sg291136 +g27 +sa(dp336499 +g291134 +S'In the Crowd (Dans la foule)' +p336500 +sg291137 +S'Albert Besnard' +p336501 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336502 +sg291132 +S'1900' +p336503 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a000906f.jpg' +p336504 +sg291136 +g27 +sa(dp336505 +g291134 +S"The Accident (L'accident)" +p336506 +sg291137 +S'Albert Besnard' +p336507 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336508 +sg291132 +S'1900' +p336509 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009067.jpg' +p336510 +sg291136 +g27 +sa(dp336511 +g291134 +S"The Obstacle (L'obstacle)" +p336512 +sg291137 +S'Albert Besnard' +p336513 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336514 +sg291132 +S'1900' +p336515 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a000906d.jpg' +p336516 +sg291136 +g27 +sa(dp336517 +g291134 +S'Danger Passed (Danger passe)' +p336518 +sg291137 +S'Albert Besnard' +p336519 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336520 +sg291132 +S'1900' +p336521 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009070.jpg' +p336522 +sg291136 +g27 +sa(dp336523 +g291134 +S"The Unknown Woman (L'inconnue)" +p336524 +sg291137 +S'Albert Besnard' +p336525 +sg291130 +S'etching and aquatint in black on Van Gelder Zonen wove paper' +p336526 +sg291132 +S'1900' +p336527 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009065.jpg' +p336528 +sg291136 +g27 +sa(dp336529 +g291134 +S'Importunate (Importune)' +p336530 +sg291137 +S'Albert Besnard' +p336531 +sg291130 +S'etching and aquatint in black on Van Gelder Zonen wove paper' +p336532 +sg291132 +S'1900' +p336533 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009069.jpg' +p336534 +sg291136 +g27 +sa(dp336535 +g291134 +S"The Enigma (L'\xc3\xa9nigme)" +p336536 +sg291137 +S'Albert Besnard' +p336537 +sg291130 +S'etching and aquatint in black on Van Gelder Zonen wove paper' +p336538 +sg291132 +S'1900' +p336539 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a000906c.jpg' +p336540 +sg291136 +g27 +sa(dp336541 +g291134 +S'The Mystery (Le myst\xc3\xa8re)' +p336542 +sg291137 +S'Albert Besnard' +p336543 +sg291130 +S'etching and aquatint in black on Van Gelder Zonen wove paper' +p336544 +sg291132 +S'1900' +p336545 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a000906a.jpg' +p336546 +sg291136 +g27 +sa(dp336547 +g291134 +S'After the Visit (Apr\xc3\xa8s sa visite)' +p336548 +sg291137 +S'Albert Besnard' +p336549 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336550 +sg291132 +S'1900' +p336551 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009068.jpg' +p336552 +sg291136 +g27 +sa(dp336553 +g291134 +S'Punctual (Ponctuelle)' +p336554 +sg291137 +S'Albert Besnard' +p336555 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336556 +sg291132 +S'1900' +p336557 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009071.jpg' +p336558 +sg291136 +g27 +sa(dp336559 +g291134 +S'On the Lookout (Aux aguets)' +p336560 +sg291137 +S'Albert Besnard' +p336561 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336562 +sg291132 +S'1900' +p336563 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a000906b.jpg' +p336564 +sg291136 +g27 +sa(dp336565 +g291134 +S'The Haul (Le coup de filet)' +p336566 +sg291137 +S'Albert Besnard' +p336567 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336568 +sg291132 +S'1900' +p336569 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009066.jpg' +p336570 +sg291136 +g27 +sa(dp336571 +g291134 +S'Musician (Musicienne)' +p336572 +sg291137 +S'Albert Besnard' +p336573 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336574 +sg291132 +S'1900' +p336575 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009073.jpg' +p336576 +sg291136 +g27 +sa(dp336577 +g291134 +S'Vertigo (Le vertige)' +p336578 +sg291137 +S'Albert Besnard' +p336579 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336580 +sg291132 +S'1900' +p336581 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009074.jpg' +p336582 +sg291136 +g27 +sa(dp336583 +g291134 +S'Which One? (Lequel?)' +p336584 +sg291137 +S'Albert Besnard' +p336585 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336586 +sg291132 +S'1900' +p336587 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009072.jpg' +p336588 +sg291136 +g27 +sa(dp336589 +g291134 +S'Possession (La possession)' +p336590 +sg291137 +S'Albert Besnard' +p336591 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336592 +sg291132 +S'1900' +p336593 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a000907a.jpg' +p336594 +sg291136 +g27 +sa(dp336595 +g291134 +S'Discreet (Discr\xc3\xa8te)' +p336596 +sg291137 +S'Albert Besnard' +p336597 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336598 +sg291132 +S'1900' +p336599 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009078.jpg' +p336600 +sg291136 +g27 +sa(dp336601 +g291134 +S'The Duel (Le duel)' +p336602 +sg291137 +S'Albert Besnard' +p336603 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336604 +sg291132 +S'1900' +p336605 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009079.jpg' +p336606 +sg291136 +g27 +sa(dp336607 +g291134 +S'The Presentation (La pr\xc3\xa9sentation)' +p336608 +sg291137 +S'Albert Besnard' +p336609 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336610 +sg291132 +S'1900' +p336611 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009075.jpg' +p336612 +sg291136 +g27 +sa(dp336613 +g291134 +S"The Orgy (L'orgie)" +p336614 +sg291137 +S'Albert Besnard' +p336615 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336616 +sg291132 +S'1900' +p336617 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009076.jpg' +p336618 +sg291136 +g27 +sa(dp336619 +g291134 +S'Charitable' +p336620 +sg291137 +S'Albert Besnard' +p336621 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336622 +sg291132 +S'1900' +p336623 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a000907e.jpg' +p336624 +sg291136 +g27 +sa(dp336625 +g291134 +S'Coquette' +p336626 +sg291137 +S'Albert Besnard' +p336627 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336628 +sg291132 +S'1900' +p336629 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a000907d.jpg' +p336630 +sg291136 +g27 +sa(dp336631 +g291134 +S"The Warning (L'avertissement)" +p336632 +sg291137 +S'Albert Besnard' +p336633 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336634 +sg291132 +S'1900' +p336635 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009077.jpg' +p336636 +sg291136 +g27 +sa(dp336637 +g291134 +S"Love Consecrated (Elle consacre l'amour)" +p336638 +sg291137 +S'Albert Besnard' +p336639 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336640 +sg291132 +S'1900' +p336641 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a000907c.jpg' +p336642 +sg291136 +g27 +sa(dp336643 +g291134 +S'Indifferent (Indiff\xc3\xa9rente)' +p336644 +sg291137 +S'Albert Besnard' +p336645 +sg291130 +S'etching in black on Van Gelder Zonen wove paper' +p336646 +sg291132 +S'1900' +p336647 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a000907b.jpg' +p336648 +sg291136 +g27 +sa(dp336649 +g291134 +S'Amorous Conversation (Conversation amoreuse)' +p336650 +sg291137 +S'Albert Besnard' +p336651 +sg291130 +S'etching in black on laid paper' +p336652 +sg291132 +S'1913' +p336653 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00097/a0009782.jpg' +p336654 +sg291136 +g27 +sa(dp336655 +g291134 +S'Getting Up (Le lever)' +p336656 +sg291137 +S'Albert Besnard' +p336657 +sg291130 +S'etching in black on Canson laid paper' +p336658 +sg291132 +S'1913' +p336659 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00097/a0009788.jpg' +p336660 +sg291136 +g27 +sa(dp336661 +g291134 +S'Getting Up (Le lever)' +p336662 +sg291137 +S'Albert Besnard' +p336663 +sg291130 +S'etching in black on wove paper' +p336664 +sg291132 +S'1913' +p336665 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00097/a0009787.jpg' +p336666 +sg291136 +g27 +sa(dp336667 +g291134 +S'Going to Bed (Le coucher)' +p336668 +sg291137 +S'Albert Besnard' +p336669 +sg291130 +S'etching in black on laid paper' +p336670 +sg291132 +S'1913' +p336671 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00097/a0009786.jpg' +p336672 +sg291136 +g27 +sa(dp336673 +g291134 +S'Going to Bed (Le coucher)' +p336674 +sg291137 +S'Albert Besnard' +p336675 +sg291130 +S'etching in black on green-tinted laid paper' +p336676 +sg291132 +S'1913' +p336677 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00097/a0009783.jpg' +p336678 +sg291136 +g27 +sa(dp336679 +g291134 +S'Leda Bathing (L\xc3\xa9da au bain)' +p336680 +sg291137 +S'Albert Besnard' +p336681 +sg291130 +S'etching in black on laid paper' +p336682 +sg291132 +S'1913' +p336683 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00097/a0009784.jpg' +p336684 +sg291136 +g27 +sa(dp336685 +g291134 +S"Leda Sleeping (L\xc3\xa9da s'endort)" +p336686 +sg291137 +S'Albert Besnard' +p336687 +sg291130 +S'etching in brown-black on laid paper' +p336688 +sg291132 +S'1913' +p336689 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00097/a0009785.jpg' +p336690 +sg291136 +g27 +sa(dp336691 +g291134 +S'Coriolanus before the Women of Rome' +p336692 +sg291137 +S'Giuseppe Bernardino Bison' +p336693 +sg291130 +S'pen and brown ink and brown wash over black chalk on laid paper' +p336694 +sg291132 +S'late 1780s' +p336695 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022aa.jpg' +p336696 +sg291136 +g27 +sa(dp336697 +g291134 +S'Christ on the Cross' +p336698 +sg291137 +S'German 16th Century' +p336699 +sg291130 +S'image: 23.5 x 16.8 cm (9 1/4 x 6 5/8 in.)\r\nsheet: 32 x 22.3 cm (12 5/8 x 8 3/4 in.)' +p336700 +sg291132 +S'\nwoodcut with gouache and gold leaf on laid paper' +p336701 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f2e.jpg' +p336702 +sg291136 +g27 +sa(dp336703 +g291130 +S'etching and aquatint in red and pale yellow on Rives BFK paper' +p336704 +sg291132 +S'1980' +p336705 +sg291134 +S'Drawing Boards' +p336706 +sg291136 +g27 +sg291137 +S'Richard Smith' +p336707 +sa(dp336708 +g291134 +S'A Design for Illuminations to Celebrate the Birthday of King George III' +p336709 +sg291137 +S'Robert Adam' +p336710 +sg291130 +S'watercolor over graphite heightened with white on laid paper' +p336711 +sg291132 +S'1763' +p336712 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a0002223.jpg' +p336713 +sg291136 +g27 +sa(dp336714 +g291134 +S'Still Life: Cigarette Butts and Glasses' +p336715 +sg291137 +S'Richard Diebenkorn' +p336716 +sg291130 +S'black ink, conte crayon, charcoal, and ball-point pen on wove paper' +p336717 +sg291132 +S'1967' +p336718 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00008/a00008d3.jpg' +p336719 +sg291136 +g27 +sa(dp336720 +g291130 +S'acrylic on paper' +p336721 +sg291132 +S'1983' +p336722 +sg291134 +S'Untitled' +p336723 +sg291136 +g27 +sg291137 +S'Helen Frankenthaler' +p336724 +sa(dp336725 +g291130 +S'mixed media with chromogenic prints and thermal transfer prints' +p336726 +sg291132 +S'1989' +p336727 +sg291134 +S'Mute/Blind' +p336728 +sg291136 +g27 +sg291137 +S'Robert Frank' +p336729 +sa(dp336730 +g291130 +S'mixed media with gelatin silver prints and thermal transfer prints' +p336731 +sg291132 +S'1989' +p336732 +sg291134 +S'Untitled' +p336733 +sg291136 +g27 +sg291137 +S'Robert Frank' +p336734 +sa(dp336735 +g291130 +g27 +sg291132 +S'(publisher)' +p336736 +sg291134 +S"#6 (after 'Untitled 1975'), 1976" +p336737 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336738 +sa(dp336739 +g291130 +g27 +sg291132 +S'(publisher)' +p336740 +sg291134 +S"#6 (after 'Untitled 1975'), 1976" +p336741 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336742 +sa(dp336743 +g291130 +g27 +sg291132 +S'(publisher)' +p336744 +sg291134 +S"#6 (after 'Untitled 1975'), 1976" +p336745 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336746 +sa(dp336747 +g291130 +g27 +sg291132 +S'(publisher)' +p336748 +sg291134 +S"#6 (after 'Untitled 1975'), 1976" +p336749 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336750 +sa(dp336751 +g291130 +g27 +sg291132 +S'(publisher)' +p336752 +sg291134 +S"#6 (after 'Untitled 1975'), 1976" +p336753 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336754 +sa(dp336755 +g291130 +g27 +sg291132 +S'(publisher)' +p336756 +sg291134 +S"#6 (after 'Untitled 1975'), 1976" +p336757 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336758 +sa(dp336759 +g291130 +g27 +sg291132 +S'(publisher)' +p336760 +sg291134 +S"#6 (after 'Untitled 1975'), 1976" +p336761 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336762 +sa(dp336763 +g291130 +g27 +sg291132 +S'(publisher)' +p336764 +sg291134 +S"#6 (after 'Untitled 1975'), 1976" +p336765 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336766 +sa(dp336767 +g291130 +g27 +sg291132 +S'(publisher)' +p336768 +sg291134 +S"#6 (after 'Untitled 1975'), 1976" +p336769 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336770 +sa(dp336771 +g291130 +g27 +sg291132 +S'(publisher)' +p336772 +sg291134 +S"#6 (after 'Untitled 1975'), 1976" +p336773 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336774 +sa(dp336775 +g291130 +g27 +sg291132 +S'(publisher)' +p336776 +sg291134 +S"#6 (after 'Untitled 1975'), 1976" +p336777 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336778 +sa(dp336779 +g291130 +g27 +sg291132 +S'(publisher)' +p336780 +sg291134 +S"#6 (after 'Untitled 1975'), 1976" +p336781 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336782 +sa(dp336783 +g291130 +g27 +sg291132 +S'(publisher)' +p336784 +sg291134 +S"#6 (after 'Untitled 1975'), 1976" +p336785 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336786 +sa(dp336787 +g291130 +g27 +sg291132 +S'(publisher)' +p336788 +sg291134 +S"#6 (after 'Untitled 1975'), 1976" +p336789 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336790 +sa(dp336791 +g291130 +g27 +sg291132 +S'(publisher)' +p336792 +sg291134 +S"#6 (after 'Untitled 1975'), 1976" +p336793 +sg291136 +g27 +sg291137 +S'Artist Information (' +p336794 +sa(dp336795 +g291130 +S'aluminum and wood' +p336796 +sg291132 +S'1970' +p336797 +sg291134 +S'Study for "Untitled Head II"' +p336798 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p336799 +sa(dp336800 +g291134 +S'Profiterole' +p336801 +sg291137 +S'Artist Information (' +p336802 +sg291130 +g27 +sg291132 +S'(publisher)' +p336803 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a000169f.jpg' +p336804 +sg291136 +g27 +sa(dp336805 +g291134 +S'Convoi Fun\xc3\xa8bre au Boulevard de Clichy (Funeral Procession on the Boulevard de Clichy)' +p336806 +sg291137 +S'F\xc3\xa9lix-Hilaire Buhot' +p336807 +sg291130 +S'etching, aquatint, drypoint, soft-ground etching and roulette with burnishing over heliogravure in blue-green, blue, black, and brown-red on japan paper' +p336808 +sg291132 +S'1887' +p336809 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00091/a000916e.jpg' +p336810 +sg291136 +g27 +sa(dp336811 +g291134 +S'La Falaise: Baie de Saint-Malo (The Cliff: Saint-Malo Bay)' +p336812 +sg291137 +S'F\xc3\xa9lix-Hilaire Buhot' +p336813 +sg291130 +S'heliogravure, etching, drypoint, roulette, spit bite, aquatint, and burnishing in brown-black (central plate) and black (margin plate)' +p336814 +sg291132 +S'1886/1890' +p336815 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f03.jpg' +p336816 +sg291136 +g27 +sa(dp336817 +g291134 +S'Un D\xc3\xa9barquement en Angleterre (Landing in England)' +p336818 +sg291137 +S'F\xc3\xa9lix-Hilaire Buhot' +p336819 +sg291130 +S"etching, drypoint, aquatint (dust ground and spirit ground), softground etching, and roulette in black with the artist's revisions in graphite on moderately thick cream wove paper" +p336820 +sg291132 +S'1879' +p336821 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f04.jpg' +p336822 +sg291136 +g27 +sa(dp336823 +g291134 +S'Une Jet\xc3\xa9e en Angleterre (A Pier in England)' +p336824 +sg291137 +S'F\xc3\xa9lix-Hilaire Buhot' +p336825 +sg291130 +S'drypoint and roulette in black on 18th-century laid paper' +p336826 +sg291132 +S'1879' +p336827 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f05.jpg' +p336828 +sg291136 +g27 +sa(dp336829 +g291134 +S'Une Jet\xc3\xa9e en Angleterre (A Pier in England)' +p336830 +sg291137 +S'F\xc3\xa9lix-Hilaire Buhot' +p336831 +sg291130 +S'drypoint, roulette, aquatint, spit-bite, softground with sandpaper, and etching (?) in black on laid paper' +p336832 +sg291132 +S'1879' +p336833 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00057/a000575f.jpg' +p336834 +sg291136 +g27 +sa(dp336835 +g291134 +S'Une Jet\xc3\xa9e en Angleterre (A Pier in England)' +p336836 +sg291137 +S'F\xc3\xa9lix-Hilaire Buhot' +p336837 +sg291130 +S'etching, drypoint, roulette, and aquatint in black on wove paper' +p336838 +sg291132 +S'1879' +p336839 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f06.jpg' +p336840 +sg291136 +g27 +sa(dp336841 +g291134 +S'Nude with Long Torso (Reclining Nude)' +p336842 +sg291137 +S'Milton Avery' +p336843 +sg291130 +S'drypoint, black ink on wove paper' +p336844 +sg291132 +S'1948' +p336845 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a0d.jpg' +p336846 +sg291136 +g27 +sa(dp336847 +g291130 +S'portfolio with five drypoints, title page, and an appreciation page by the artist Joseph Solman' +p336848 +sg291132 +S'published 1948' +p336849 +sg291134 +S'Laurels Number Four' +p336850 +sg291136 +g27 +sg291137 +S'Milton Avery' +p336851 +sa(dp336852 +g291130 +S'drypoint on cream wove paper' +p336853 +sg291132 +S'1948' +p336854 +sg291134 +S'March at a Table' +p336855 +sg291136 +g27 +sg291137 +S'Milton Avery' +p336856 +sa(dp336857 +g291130 +S'drypoint, black ink on wove paper' +p336858 +sg291132 +S'1948' +p336859 +sg291134 +S'By the Sea' +p336860 +sg291136 +g27 +sg291137 +S'Milton Avery' +p336861 +sa(dp336862 +g291130 +S'drypoint, black ink on wove paper' +p336863 +sg291132 +S'1934' +p336864 +sg291134 +S'Riders in the Park' +p336865 +sg291136 +g27 +sg291137 +S'Milton Avery' +p336866 +sa(dp336867 +g291134 +S'Head of a Man' +p336868 +sg291137 +S'Milton Avery' +p336869 +sg291130 +S'drypoint, black ink on wove paper' +p336870 +sg291132 +S'1935' +p336871 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a0e.jpg' +p336872 +sg291136 +g27 +sa(dp336873 +g291130 +S'1 vol: ill: 29 woodcuts in black on ivory wove Auvergne Richard de Bas paper with text from the 1611 King James Version of the Bible; 64 unnumbered pages including title and colophon' +p336874 +sg291132 +S'published 1982' +p336875 +sg291134 +S'The Apocalypse: The Revelation of Saint John the Divine' +p336876 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336877 +sa(dp336878 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336879 +sg291132 +S'published 1982' +p336880 +sg291134 +S'The Artist as Narrator' +p336881 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336882 +sa(dp336883 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336884 +sg291132 +S'published 1982' +p336885 +sg291134 +S'There Shall Be No More Death' +p336886 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336887 +sa(dp336888 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336889 +sg291132 +S'published 1982' +p336890 +sg291134 +S'Candlesticks' +p336891 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336892 +sa(dp336893 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336894 +sg291132 +S'published 1982' +p336895 +sg291134 +S'Every Several Gate was of One Pearl' +p336896 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336897 +sa(dp336898 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336899 +sg291132 +S'published 1982' +p336900 +sg291134 +S'Feet as if They Burned in a Furnace' +p336901 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336902 +sa(dp336903 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336904 +sg291132 +S'published 1982' +p336905 +sg291134 +S'I Jesus' +p336906 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336907 +sa(dp336908 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336909 +sg291132 +S'published 1982' +p336910 +sg291134 +S'The Mystery of the Seven Stars' +p336911 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336912 +sa(dp336913 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336914 +sg291132 +S'published 1982' +p336915 +sg291134 +S'Which Thou Sawest in My Right Hand' +p336916 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336917 +sa(dp336918 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336919 +sg291132 +S'published 1982' +p336920 +sg291134 +S'The Morning Star' +p336921 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336922 +sa(dp336923 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336924 +sg291132 +S'published 1982' +p336925 +sg291134 +S'Eagle' +p336926 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336927 +sa(dp336928 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336929 +sg291132 +S'published 1982' +p336930 +sg291134 +S'And I Saw' +p336931 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336932 +sa(dp336933 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336934 +sg291132 +S'published 1982' +p336935 +sg291134 +S'Robes were Given unto Every One' +p336936 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336937 +sa(dp336938 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336939 +sg291132 +S'published 1982' +p336940 +sg291134 +S'Arrayed in White Robes' +p336941 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336942 +sa(dp336943 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336944 +sg291132 +S'published 1982' +p336945 +sg291134 +S"Smoke of the Incense out of the Angel's Hand" +p336946 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336947 +sa(dp336948 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336949 +sg291132 +S'published 1982' +p336950 +sg291134 +S'The Bottomless Pit' +p336951 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336952 +sa(dp336953 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336954 +sg291132 +S'published 1982' +p336955 +sg291134 +S'Men Killed' +p336956 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336957 +sa(dp336958 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336959 +sg291132 +S'published 1982' +p336960 +sg291134 +S'My Two Witnesses' +p336961 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336962 +sa(dp336963 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336964 +sg291132 +S'published 1982' +p336965 +sg291134 +S'The Two Olive Trees' +p336966 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336967 +sa(dp336968 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336969 +sg291132 +S'published 1982' +p336970 +sg291134 +S'That Old Serpent, Called the Devil' +p336971 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336972 +sa(dp336973 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336974 +sg291132 +S'published 1982' +p336975 +sg291134 +S'The Beast' +p336976 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336977 +sa(dp336978 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336979 +sg291132 +S'published 1982' +p336980 +sg291134 +S'Pruning Shears' +p336981 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336982 +sa(dp336983 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336984 +sg291132 +S'published 1982' +p336985 +sg291134 +S'Smoke from the Glory of God' +p336986 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336987 +sa(dp336988 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336989 +sg291132 +S'published 1982' +p336990 +sg291134 +S'Scorched with a Great Heat' +p336991 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336992 +sa(dp336993 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336994 +sg291132 +S'published 1982' +p336995 +sg291134 +S'I Saw Another Angel' +p336996 +sg291136 +g27 +sg291137 +S'Jim Dine' +p336997 +sa(dp336998 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p336999 +sg291132 +S'published 1982' +p337000 +sg291134 +S'Come Down from Heaven' +p337001 +sg291136 +g27 +sg291137 +S'Jim Dine' +p337002 +sa(dp337003 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p337004 +sg291132 +S'published 1982' +p337005 +sg291134 +S'Babylon' +p337006 +sg291136 +g27 +sg291137 +S'Jim Dine' +p337007 +sa(dp337008 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p337009 +sg291132 +S'published 1982' +p337010 +sg291134 +S'The Voice of the Bridegroom and of the Bride' +p337011 +sg291136 +g27 +sg291137 +S'Jim Dine' +p337012 +sa(dp337013 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p337014 +sg291132 +S'published 1982' +p337015 +sg291134 +S'Behold a White Horse' +p337016 +sg291136 +g27 +sg291137 +S'Jim Dine' +p337017 +sa(dp337018 +g291130 +S'woodcut on Richard DeBas Apta Velin paper' +p337019 +sg291132 +S'published 1982' +p337020 +sg291134 +S'Death and Hell Delivered Up the Dead' +p337021 +sg291136 +g27 +sg291137 +S'Jim Dine' +p337022 +sa(dp337023 +g291134 +S'La Villette' +p337024 +sg291137 +S'Stanley William Hayter' +p337025 +sg291130 +S'drypoint and engraving on BFK Rives paper' +p337026 +sg291132 +S'1930' +p337027 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00080/a000809f.jpg' +p337028 +sg291136 +g27 +sa(dp337029 +g291134 +S'Paysages Urbains (Urban Landscapes)' +p337030 +sg291137 +S'Stanley William Hayter' +p337031 +sg291130 +S'portfolio of six prints' +p337032 +sg291132 +S'published 1930' +p337033 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00084/a00084a1.jpg' +p337034 +sg291136 +g27 +sa(dp337035 +g291134 +S'P\xc3\xa8re Lachaise' +p337036 +sg291137 +S'Stanley William Hayter' +p337037 +sg291130 +S'drypoint and engraving on BFK Rives paper' +p337038 +sg291132 +S'1930' +p337039 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00080/a00080a2.jpg' +p337040 +sg291136 +g27 +sa(dp337041 +g291134 +S"Rue d'Assas" +p337042 +sg291137 +S'Stanley William Hayter' +p337043 +sg291130 +S'drypoint, engraving, and mezzotint on BFK Rives paper' +p337044 +sg291132 +S'1930' +p337045 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a0001643.jpg' +p337046 +sg291136 +g27 +sa(dp337047 +g291134 +S'Place Falguiere' +p337048 +sg291137 +S'Stanley William Hayter' +p337049 +sg291130 +S'drypoint, engraving, and roulette on BFK Rives paper' +p337050 +sg291132 +S'1930' +p337051 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00080/a000809e.jpg' +p337052 +sg291136 +g27 +sa(dp337053 +g291134 +S'Rue de Repos' +p337054 +sg291137 +S'Stanley William Hayter' +p337055 +sg291130 +S'engraving, etching, and drypoint on BFK Rives paper' +p337056 +sg291132 +S'1930' +p337057 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a0001642.jpg' +p337058 +sg291136 +g27 +sa(dp337059 +g291134 +S'Rue de la Villette' +p337060 +sg291137 +S'Stanley William Hayter' +p337061 +sg291130 +S'drypoint and engraving on BFK Rives paper' +p337062 +sg291132 +S'1930' +p337063 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00080/a00080a1.jpg' +p337064 +sg291136 +g27 +sa(dp337065 +g291130 +S'watercolor and brush and black ink on Fabriano paper' +p337066 +sg291132 +S'1981' +p337067 +sg291134 +S'Chignon' +p337068 +sg291136 +g27 +sg291137 +S'Red Grooms' +p337069 +sa(dp337070 +g291130 +S'etching and aquatint in black printed from 5 plates on wove paper' +p337071 +sg291132 +S'1961' +p337072 +sg291134 +S'Gretchen and the Snurl' +p337073 +sg291136 +g27 +sg291137 +S'David Hockney' +p337074 +sa(dp337075 +g291130 +S'lithograph in blue on wove paper' +p337076 +sg291132 +S'1978' +p337077 +sg291134 +S'Swimming Pool' +p337078 +sg291136 +g27 +sg291137 +S'David Hockney' +p337079 +sa(dp337080 +g291130 +S'lift-ground etching and engraving on Arches Cover Buff paper' +p337081 +sg291132 +S'1967' +p337082 +sg291134 +S"Victoria's Children" +p337083 +sg291136 +g27 +sg291137 +S'Peter Milton' +p337084 +sa(dp337085 +g291130 +g27 +sg291132 +S'(printer)' +p337086 +sg291134 +S'Red Sea II' +p337087 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337088 +sa(dp337089 +g291130 +S'linocut in gray, black, red, brown, and yellow on Fabriano Rosaspina paper' +p337090 +sg291132 +S'1984' +p337091 +sg291134 +S'Dedalus' +p337092 +sg291136 +g27 +sg291137 +S'Mimmo Paladino' +p337093 +sa(dp337094 +g291130 +S'handbound book w/ 20 lithographs mounted to and interleaved with handmade papers; bound in leather with beads and paper collage set in resin on cover' +p337095 +sg291132 +S'1980/1981' +p337096 +sg291134 +S'B.M.F.V.V. (Bene Merente Fecit Vivus Vivo)' +p337097 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p337098 +sa(dp337099 +g291130 +S'lithograph in black on japan paper' +p337100 +sg291132 +S'1980' +p337101 +sg291134 +S'Arms into Hands to Trees' +p337102 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p337103 +sa(dp337104 +g291130 +S'lithograph in black on japan paper' +p337105 +sg291132 +S'1980' +p337106 +sg291134 +S'A Primitive must have drawn this' +p337107 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p337108 +sa(dp337109 +g291130 +S'lithograph in black on japan paper' +p337110 +sg291132 +S'1980' +p337111 +sg291134 +S'For those who still would' +p337112 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p337113 +sa(dp337114 +g291130 +S'lithograph in black on japan paper' +p337115 +sg291132 +S'1980' +p337116 +sg291134 +S'The Game of Rummy' +p337117 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p337118 +sa(dp337119 +g291130 +S'lithograph in black on japan paper' +p337120 +sg291132 +S'1980' +p337121 +sg291134 +S'Just what is Nature anymore?' +p337122 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p337123 +sa(dp337124 +g291130 +S'lithograph in black on japan paper' +p337125 +sg291132 +S'1980' +p337126 +sg291134 +S'A table feigning a fawn (from a time when fruit had seeds)' +p337127 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p337128 +sa(dp337129 +g291130 +S'lithograph in black on japan paper' +p337130 +sg291132 +S'1980' +p337131 +sg291134 +S'Like a weight you do not remove or lift' +p337132 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p337133 +sa(dp337134 +g291130 +S'lithograph in black on japan paper' +p337135 +sg291132 +S'unknown date\n' +p337136 +sg291134 +S'A Modern place for you and me' +p337137 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p337138 +sa(dp337139 +g291130 +S'lithograph in black on japan paper' +p337140 +sg291132 +S'1980/1981' +p337141 +sg291134 +S'Kisses As Handshakes and Handshakes Like Kisses' +p337142 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p337143 +sa(dp337144 +g291130 +S'lithograph in black on wood veneer sheet' +p337145 +sg291132 +S'1981' +p337146 +sg291134 +S'Faiyum Portrait' +p337147 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p337148 +sa(dp337149 +g291130 +S'lithograph in black on japan paper' +p337150 +sg291132 +S'1981' +p337151 +sg291134 +S'That Hurt My Feelings' +p337152 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p337153 +sa(dp337154 +g291130 +S'lithograph in black on japan paper' +p337155 +sg291132 +S'1981' +p337156 +sg291134 +S'Doubt in Thomas' +p337157 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p337158 +sa(dp337159 +g291130 +S'lithograph in black on tissue paper' +p337160 +sg291132 +S'1981' +p337161 +sg291134 +S'Vanity Mirrors' +p337162 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p337163 +sa(dp337164 +g291130 +S'lithograph in black on tissue paper' +p337165 +sg291132 +S'1981' +p337166 +sg291134 +S'Marriage A.F.I.' +p337167 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p337168 +sa(dp337169 +g291130 +S'lithograph in black on tissue paper' +p337170 +sg291132 +S'1981' +p337171 +sg291134 +S"Arlequin's Fountain" +p337172 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p337173 +sa(dp337174 +g291130 +S'lithograph in black on tissue paper' +p337175 +sg291132 +S'1981' +p337176 +sg291134 +S'"Empty Pockets" Means Freedom!' +p337177 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p337178 +sa(dp337179 +g291130 +S'lithograph in black on tissue paper' +p337180 +sg291132 +S'1981' +p337181 +sg291134 +S'If you don\'t... :"Bomb Notes"!' +p337182 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p337183 +sa(dp337184 +g291130 +S'lithograph in black on japan paper' +p337185 +sg291132 +S'1981' +p337186 +sg291134 +S'Nature.Made.Man' +p337187 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p337188 +sa(dp337189 +g291130 +S'lithograph in black on japan paper' +p337190 +sg291132 +S'1980/1981' +p337191 +sg291134 +S'Unclear Nuclear [Trial Proof; State III]' +p337192 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p337193 +sa(dp337194 +g291130 +S'lithograph in black on japan paper' +p337195 +sg291132 +S'1980/1981' +p337196 +sg291134 +S'Unclear Nuclear [Trial Edition; State III]' +p337197 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p337198 +sa(dp337199 +g291130 +S'lithograph in black on wove paper' +p337200 +sg291132 +S'c. 1968' +p337201 +sg291134 +S'Portfolio Cover' +p337202 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337203 +sa(dp337204 +g291130 +S'portfolio of 25 lithographs, frontispiece, and table of contents, on Arches wove paper' +p337205 +sg291132 +S'1965/1968' +p337206 +sg291134 +S'A Bestiary and Some Correspondences' +p337207 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337208 +sa(dp337209 +g291130 +S'lithograph in green and black on Arches wove paper' +p337210 +sg291132 +S'1968' +p337211 +sg291134 +S'Frontispiece to a Bestiary' +p337212 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337213 +sa(dp337214 +g291130 +S'lithograph in black, violet, and three shades of green on Arches wove paper' +p337215 +sg291132 +S'1967' +p337216 +sg291134 +S'Beetles I' +p337217 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337218 +sa(dp337219 +g291130 +S'lithograph in black, brown, and two shades of green on Arches wove paper' +p337220 +sg291132 +S'1968' +p337221 +sg291134 +S'Beetles II (with electric lamp)' +p337222 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337223 +sa(dp337224 +g291130 +S'lithograph in black on Arches wove paper' +p337225 +sg291132 +S'1968' +p337226 +sg291134 +S'Lion' +p337227 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337228 +sa(dp337229 +g291130 +S'lithograph in black and violet on Arches wove paper' +p337230 +sg291132 +S'1968' +p337231 +sg291134 +S"Ram's Head (full face)" +p337232 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337233 +sa(dp337234 +g291130 +S'lithograph in black and ochre on Arches wove paper' +p337235 +sg291132 +S'1968' +p337236 +sg291134 +S"Ram's Head (facing left)" +p337237 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337238 +sa(dp337239 +g291130 +S'lithograph in black, violet, and pale orange on Arches wove paper' +p337240 +sg291132 +S'1968' +p337241 +sg291134 +S"Ram's Head (with rocks and skeletons)" +p337242 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337243 +sa(dp337244 +g291130 +S'lithograph in black, brown, yellow and two shades of pink on Arches wove paper' +p337245 +sg291132 +S'1968' +p337246 +sg291134 +S'Armadillo' +p337247 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337248 +sa(dp337249 +g291130 +S'lithograph in black, green, blue-green, and violet on Arches wove paper' +p337250 +sg291132 +S'1967' +p337251 +sg291134 +S'Toad' +p337252 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337253 +sa(dp337254 +g291130 +S'lithograph in black, gray, blue, and yellow on Arches wove paper' +p337255 +sg291132 +S'1968' +p337256 +sg291134 +S'Bird and Mouse' +p337257 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337258 +sa(dp337259 +g291130 +S'lithograph in black and yellow on Arches wove paper' +p337260 +sg291132 +S'1968' +p337261 +sg291134 +S'Ants' +p337262 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337263 +sa(dp337264 +g291130 +S'lithograph in gray, black, pink, orange, red, and blue on Arches wove paper' +p337265 +sg291132 +S'1968' +p337266 +sg291134 +S'Cynocephalus' +p337267 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337268 +sa(dp337269 +g291130 +S'lithograph in black, green, blue, and two shades of yellow on Arches wove paper' +p337270 +sg291132 +S'1968' +p337271 +sg291134 +S'Bird About to Take Flight' +p337272 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337273 +sa(dp337274 +g291130 +S'lithograph in black, gray, yellow, and violet on Arches wove paper' +p337275 +sg291132 +S'1967' +p337276 +sg291134 +S'Chauves Souris (interior)' +p337277 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337278 +sa(dp337279 +g291130 +S'lithograph in black, gray, and violet on Arches wove paper' +p337280 +sg291132 +S'1968' +p337281 +sg291134 +S'Chauves Souris (in a looking glass against a window)' +p337282 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337283 +sa(dp337284 +g291130 +S'lithograph in black and yellow on Arches wove paper' +p337285 +sg291132 +S'1968' +p337286 +sg291134 +S'Sheet of Studies (heads)' +p337287 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337288 +sa(dp337289 +g291130 +S'lithograph in black and pink on Arches wove paper' +p337290 +sg291132 +S'1968' +p337291 +sg291134 +S'Sheet of Studies (organic forms)' +p337292 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337293 +sa(dp337294 +g291130 +S'lithograph in black and yellow on Arches wove paper' +p337295 +sg291132 +S'1968' +p337296 +sg291134 +S'Sheet of Studies (comparisons: organic and machine forms)' +p337297 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337298 +sa(dp337299 +g291130 +S'lithograph in gray, black, pink, orange, and yellow on Arches wove paper' +p337300 +sg291132 +S'1968' +p337301 +sg291134 +S'Owl (rose ground)' +p337302 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337303 +sa(dp337304 +g291130 +S'lithograph in green, yellow, black, orange, and two shades of pink on Arches wove paper' +p337305 +sg291132 +S'1968' +p337306 +sg291134 +S'Emerging Insect' +p337307 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337308 +sa(dp337309 +g291130 +S'lithograph in black on Arches wove paper' +p337310 +sg291132 +S'1968' +p337311 +sg291134 +S'Three Organic Forms' +p337312 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337313 +sa(dp337314 +g291130 +S'lithograph in orange, pink, green, yellow, black, and two shades of blue on Arches wove paper' +p337315 +sg291132 +S'1968' +p337316 +sg291134 +S'Insect (simulating seeds)' +p337317 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337318 +sa(dp337319 +g291130 +S'lithograph in black and blue on Arches wove paper' +p337320 +sg291132 +S'1968' +p337321 +sg291134 +S'Bird Form (full face)' +p337322 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337323 +sa(dp337324 +g291130 +S'lithograph in yellow, black, and green on Arches wove paper' +p337325 +sg291132 +S'1968' +p337326 +sg291134 +S'Submerged Form' +p337327 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337328 +sa(dp337329 +g291130 +S'lithograph in black, gray, yellow, and violet on Arches wove paper' +p337330 +sg291132 +S'1967' +p337331 +sg291134 +S'Chained Beast' +p337332 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337333 +sa(dp337334 +g291130 +S'lithograph in black and orange on Arches wove paper' +p337335 +sg291132 +S'1968' +p337336 +sg291134 +S'Hybrid' +p337337 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p337338 +sa(dp337339 +g291130 +S'monotype in brown-black, green, and red on Rives BFK paper' +p337340 +sg291132 +S'1985' +p337341 +sg291134 +S'Wardour in Sunlight' +p337342 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p337343 +sa(dp337344 +g291130 +S'etching in black on blue-green F.G. Head & Co. handmade laid paper' +p337345 +sg291132 +S'1923' +p337346 +sg291134 +S'Le penseur de Notre Dame' +p337347 +sg291136 +g27 +sg291137 +S'John Taylor Arms' +p337348 +sa(dp337349 +g291130 +S"etching in brown on Whatman's yellow laid paper" +p337350 +sg291132 +S'1935' +p337351 +sg291134 +S'Venetian Mirror' +p337352 +sg291136 +g27 +sg291137 +S'John Taylor Arms' +p337353 +sa(dp337354 +g291130 +S'etching, aquatint, drypoint, and softground etching on Don Farnsworth handmade chine coll? mounted on Arches 88 paper' +p337355 +sg291132 +S'1981' +p337356 +sg291134 +S'Telemone #2' +p337357 +sg291136 +g27 +sg291137 +S'Francesco Clemente' +p337358 +sa(dp337359 +g291130 +S'lithograph in black on Rives BFK paper' +p337360 +sg291132 +S'1932' +p337361 +sg291134 +S'Viva Zapata' +p337362 +sg291136 +g27 +sg291137 +S'Diego Rivera' +p337363 +sa(dp337364 +g291130 +S'woodcut in black on Rives Lightweight paper' +p337365 +sg291132 +S'1980' +p337366 +sg291134 +S'Head and Bones' +p337367 +sg291136 +g27 +sg291137 +S'Susan Rothenberg' +p337368 +sa(dp337369 +g291130 +S'lithograph in black on Richard de Bas paper' +p337370 +sg291132 +S'1984' +p337371 +sg291134 +S'Monkey in a Tree' +p337372 +sg291136 +g27 +sg291137 +S'Susan Rothenberg' +p337373 +sa(dp337374 +g291134 +S'Old Woman at a Stove (Vielle Femme au Fourneau)' +p337375 +sg291137 +S'Edouard Vuillard' +p337376 +sg291130 +S'lithograph in black on tan wove paper; laid down' +p337377 +sg291132 +S'1893' +p337378 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f1b.jpg' +p337379 +sg291136 +g27 +sa(dp337380 +g291130 +S'3-color lithograph on Arches Cover paper' +p337381 +sg291132 +S'1971' +p337382 +sg291134 +S'The Sky is Cryin' +p337383 +sg291136 +g27 +sg291137 +S'John E. Dowell, Jr.' +p337384 +sa(dp337385 +g291130 +S'portfolio with 8 color lithographs, title page, and colophon page' +p337386 +sg291132 +S'1970/1971' +p337387 +sg291134 +S'Visual Poems' +p337388 +sg291136 +g27 +sg291137 +S'John E. Dowell, Jr.' +p337389 +sa(dp337390 +g291130 +S'2-color lithograph on Arches Cover paper' +p337391 +sg291132 +S'1970' +p337392 +sg291134 +S'Ponte' +p337393 +sg291136 +g27 +sg291137 +S'John E. Dowell, Jr.' +p337394 +sa(dp337395 +g291130 +S'3-color lithograph on Arches Cover paper' +p337396 +sg291132 +S'1970' +p337397 +sg291134 +S'Gregorio' +p337398 +sg291136 +g27 +sg291137 +S'John E. Dowell, Jr.' +p337399 +sa(dp337400 +g291130 +S'3-color lithograph on Arches Cover paper' +p337401 +sg291132 +S'1970' +p337402 +sg291134 +S'Drownin on Dry Land' +p337403 +sg291136 +g27 +sg291137 +S'John E. Dowell, Jr.' +p337404 +sa(dp337405 +g291130 +S'3-color lithograph on Arches Cover paper' +p337406 +sg291132 +S'1971' +p337407 +sg291134 +S'Love Vibrations' +p337408 +sg291136 +g27 +sg291137 +S'John E. Dowell, Jr.' +p337409 +sa(dp337410 +g291130 +S'3-color lithograph on Arches Cover paper' +p337411 +sg291132 +S'1971' +p337412 +sg291134 +S'Just Heard Bessie' +p337413 +sg291136 +g27 +sg291137 +S'John E. Dowell, Jr.' +p337414 +sa(dp337415 +g291130 +S'2-color lithograph on Arches Cover paper' +p337416 +sg291132 +S'1971' +p337417 +sg291134 +S'Coltrane Sonnet' +p337418 +sg291136 +g27 +sg291137 +S'John E. Dowell, Jr.' +p337419 +sa(dp337420 +g291130 +S'3-color lithograph on Arches Cover paper' +p337421 +sg291132 +S'1971' +p337422 +sg291134 +S'Um, Um,...Um!' +p337423 +sg291136 +g27 +sg291137 +S'John E. Dowell, Jr.' +p337424 +sa(dp337425 +g291130 +S'pen and black ink on wove paper' +p337426 +sg291132 +S'1971' +p337427 +sg291134 +S'The to All Wish' +p337428 +sg291136 +g27 +sg291137 +S'John E. Dowell, Jr.' +p337429 +sa(dp337430 +g291134 +S'Untitled (from Untitled 1972)' +p337431 +sg291137 +S'Jasper Johns' +p337432 +sg291130 +S'pastel and graphite on gray Japanese paper' +p337433 +sg291132 +S'1975/1976' +p337434 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000954.jpg' +p337435 +sg291136 +g27 +sa(dp337436 +g291130 +S'oil on canvas' +p337437 +sg291132 +S'1961' +p337438 +sg291134 +S'Staccato in Blue' +p337439 +sg291136 +g27 +sg291137 +S'Hans Hofmann' +p337440 +sa(dp337441 +g291134 +S'Miss Frances Beresford' +p337442 +sg291137 +S'John Hoppner' +p337443 +sg291130 +S'black, red, and white chalks over graphite on pink washed paper' +p337444 +sg291132 +S'c. 1784/1785' +p337445 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a0002556.jpg' +p337446 +sg291136 +g27 +sa(dp337447 +g291130 +S'gelatin silver print' +p337448 +sg291132 +S'1935' +p337449 +sg291134 +S'Legionnaire, Bethlehem, Pennsylvania' +p337450 +sg291136 +g27 +sg291137 +S'Walker Evans' +p337451 +sa(dp337452 +g291130 +S'gelatin silver print' +p337453 +sg291132 +S'1938-1941' +p337454 +sg291134 +S'Subway Portrait' +p337455 +sg291136 +g27 +sg291137 +S'Walker Evans' +p337456 +sa(dp337457 +g291130 +S'gelatin silver print' +p337458 +sg291132 +S'1935' +p337459 +sg291134 +S"Nutt's Folly" +p337460 +sg291136 +g27 +sg291137 +S'Walker Evans' +p337461 +sa(dp337462 +g291134 +S'Telfair Academy of the Arts and Sciences, Savannah, Georgia' +p337463 +sg291137 +S'Walker Evans' +p337464 +sg291130 +S'gelatin silver print' +p337465 +sg291132 +S'1935' +p337466 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f94.jpg' +p337467 +sg291136 +g27 +sa(dp337468 +g291134 +S'Nineteenth-Century Greek House, Cambridge' +p337469 +sg291137 +S'Walker Evans' +p337470 +sg291130 +S'gelatin silver print' +p337471 +sg291132 +S'1931' +p337472 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064b6.jpg' +p337473 +sg291136 +g27 +sa(dp337474 +g291130 +S'gelatin silver print' +p337475 +sg291132 +S'1931' +p337476 +sg291134 +S'Nineteenth-Century Greek House, Dedham' +p337477 +sg291136 +g27 +sg291137 +S'Walker Evans' +p337478 +sa(dp337479 +g291130 +S'gelatin silver print' +p337480 +sg291132 +S'1971' +p337481 +sg291134 +S"Laundry Drying, Frank's House" +p337482 +sg291136 +g27 +sg291137 +S'Walker Evans' +p337483 +sa(dp337484 +g291134 +S'Mount Pleasant, Pennsylvania' +p337485 +sg291137 +S'Walker Evans' +p337486 +sg291130 +S'gelatin silver print' +p337487 +sg291132 +S'July 1935' +p337488 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e42.jpg' +p337489 +sg291136 +g27 +sa(dp337490 +g291130 +S'gelatin silver print' +p337491 +sg291132 +S'c. 1958' +p337492 +sg291134 +S'London Street Corner' +p337493 +sg291136 +g27 +sg291137 +S'Walker Evans' +p337494 +sa(dp337495 +g291134 +S'Company Houses, Gormania, West Virginia' +p337496 +sg291137 +S'Walker Evans' +p337497 +sg291130 +S'gelatin silver print' +p337498 +sg291132 +S'1935' +p337499 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064b2.jpg' +p337500 +sg291136 +g27 +sa(dp337501 +g291134 +S'Heliker House, Cranberry Island, Maine' +p337502 +sg291137 +S'Walker Evans' +p337503 +sg291130 +S'gelatin silver print' +p337504 +sg291132 +S'1969' +p337505 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e41.jpg' +p337506 +sg291136 +g27 +sa(dp337507 +g291130 +S'gelatin silver print' +p337508 +sg291132 +S'1941' +p337509 +sg291134 +S'Bridgeport' +p337510 +sg291136 +g27 +sg291137 +S'Walker Evans' +p337511 +sa(dp337512 +g291134 +S'Tod und K\xc3\xbcnstler (Death and the Artist)' +p337513 +sg291137 +S'Lovis Corinth' +p337514 +sg291130 +S'softground etching and drypoint in black on japan paper' +p337515 +sg291132 +S'1921' +p337516 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f92.jpg' +p337517 +sg291136 +g27 +sa(dp337518 +g291134 +S'Totentanz (Dance of Death)' +p337519 +sg291137 +S'Lovis Corinth' +p337520 +sg291130 +S'portfolio with title page and five prints' +p337521 +sg291132 +S'published 1922' +p337522 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b696.jpg' +p337523 +sg291136 +g27 +sa(dp337524 +g291134 +S'Tod und J\xc3\xbcngling (Death and the Young Man)' +p337525 +sg291137 +S'Lovis Corinth' +p337526 +sg291130 +S'softground etching in gray-black on japan paper' +p337527 +sg291132 +S'1921' +p337528 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b697.jpg' +p337529 +sg291136 +g27 +sa(dp337530 +g291134 +S'Tod und Greis (Death and the Old Man)' +p337531 +sg291137 +S'Lovis Corinth' +p337532 +sg291130 +S'softground etching in black on japan paper' +p337533 +sg291132 +S'1921' +p337534 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a0001632.jpg' +p337535 +sg291136 +g27 +sa(dp337536 +g291134 +S'Tod und Weib (Death and the Woman)' +p337537 +sg291137 +S'Lovis Corinth' +p337538 +sg291130 +S'softground etching in black on japan paper' +p337539 +sg291132 +S'1921' +p337540 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b698.jpg' +p337541 +sg291136 +g27 +sa(dp337542 +g291134 +S'Tod bei Strucks (Death Visits the Strucks)' +p337543 +sg291137 +S'Lovis Corinth' +p337544 +sg291130 +S'softground etching in black on japan paper' +p337545 +sg291132 +S'1921' +p337546 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b699.jpg' +p337547 +sg291136 +g27 +sa(dp337548 +g291134 +S'Dancer (Die T\xc3\xa4nzerin)' +p337549 +sg291137 +S'Egon Schiele' +p337550 +sg291130 +S'watercolor and gouache over graphite on wove paper' +p337551 +sg291132 +S'1913' +p337552 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00021/a000218b.jpg' +p337553 +sg291136 +g27 +sa(dp337554 +g291130 +S'1 vol: ill: 16 photogravures on wove paper' +p337555 +sg291132 +S'published 1895' +p337556 +sg291134 +S'Marsh Leaves' +p337557 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p337558 +sa(dp337559 +g291130 +S'photogravure on wove paper' +p337560 +sg291132 +S'in or before 1895' +p337561 +sg291134 +S"A Winter's Sunrise" +p337562 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p337563 +sa(dp337564 +g291130 +S'photogravure on wove paper' +p337565 +sg291132 +S'in or before 1895' +p337566 +sg291134 +S'The Lone Lagoon' +p337567 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p337568 +sa(dp337569 +g291130 +S'photogravure on wove paper' +p337570 +sg291132 +S'in or before 1895' +p337571 +sg291134 +S'The Fetters of Winter' +p337572 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p337573 +sa(dp337574 +g291130 +S'photogravure on wove paper' +p337575 +sg291132 +S'in or before 1895' +p337576 +sg291134 +S'A Waterside Inn' +p337577 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p337578 +sa(dp337579 +g291130 +S'photogravure on wove paper' +p337580 +sg291132 +S'in or before 1895' +p337581 +sg291134 +S'A Winter Pastoral' +p337582 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p337583 +sa(dp337584 +g291130 +S'photogravure on wove paper' +p337585 +sg291132 +S'in or before 1895' +p337586 +sg291134 +S'Marsh Weeds' +p337587 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p337588 +sa(dp337589 +g291130 +S'photogravure on wove paper' +p337590 +sg291132 +S'in or before 1895' +p337591 +sg291134 +S'Gnarled Thorn-Trees' +p337592 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p337593 +sa(dp337594 +g291130 +S'photogravure on wove paper' +p337595 +sg291132 +S'in or before 1895' +p337596 +sg291134 +S'The Misty River' +p337597 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p337598 +sa(dp337599 +g291130 +S'photogravure on wove paper' +p337600 +sg291132 +S'in or before 1895' +p337601 +sg291134 +S'Bleak Winter' +p337602 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p337603 +sa(dp337604 +g291130 +S'photogravure on wove paper' +p337605 +sg291132 +S'in or before 1895' +p337606 +sg291134 +S'The Waking River' +p337607 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p337608 +sa(dp337609 +g291130 +S'photogravure on wove paper' +p337610 +sg291132 +S'in or before 1895' +p337611 +sg291134 +S'The Bridge' +p337612 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p337613 +sa(dp337614 +g291130 +S'photogravure on wove paper' +p337615 +sg291132 +S'in or before 1895' +p337616 +sg291134 +S'The Snow Garden' +p337617 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p337618 +sa(dp337619 +g291130 +S'photogravure on wove paper' +p337620 +sg291132 +S'in or before 1895' +p337621 +sg291134 +S'A Corner of the Farm-Yard' +p337622 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p337623 +sa(dp337624 +g291130 +S'photogravure on wove paper' +p337625 +sg291132 +S'in or before 1895' +p337626 +sg291134 +S'Rime Crystals' +p337627 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p337628 +sa(dp337629 +g291130 +S'photogravure on wove paper' +p337630 +sg291132 +S'in or before 1895' +p337631 +sg291134 +S'The Lonely Fisher' +p337632 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p337633 +sa(dp337634 +g291130 +S'photogravure on wove paper' +p337635 +sg291132 +S'in or before 1895' +p337636 +sg291134 +S'The Last Gate' +p337637 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p337638 +sa(dp337639 +g291134 +S'Subway Portrait' +p337640 +sg291137 +S'Walker Evans' +p337641 +sg291130 +S'gelatin silver print' +p337642 +sg291132 +S'1938-1941' +p337643 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064b0.jpg' +p337644 +sg291136 +g27 +sa(dp337645 +g291134 +S'Subway Portrait' +p337646 +sg291137 +S'Walker Evans' +p337647 +sg291130 +S'gelatin silver print' +p337648 +sg291132 +S'1938-1941' +p337649 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064b5.jpg' +p337650 +sg291136 +g27 +sa(dp337651 +g291134 +S'Subway Portrait' +p337652 +sg291137 +S'Walker Evans' +p337653 +sg291130 +S'gelatin silver print' +p337654 +sg291132 +S'1938-1941' +p337655 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064b4.jpg' +p337656 +sg291136 +g27 +sa(dp337657 +g291134 +S'Subway Portrait' +p337658 +sg291137 +S'Walker Evans' +p337659 +sg291130 +S'gelatin silver print' +p337660 +sg291132 +S'1938-1941' +p337661 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064b3.jpg' +p337662 +sg291136 +g27 +sa(dp337663 +g291134 +S'Subway Portrait' +p337664 +sg291137 +S'Walker Evans' +p337665 +sg291130 +S'gelatin silver print' +p337666 +sg291132 +S'1938-1941' +p337667 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064b7.jpg' +p337668 +sg291136 +g27 +sa(dp337669 +g291130 +S'gelatin silver print' +p337670 +sg291132 +S'January 1941' +p337671 +sg291134 +S'Subway Portrait' +p337672 +sg291136 +g27 +sg291137 +S'Walker Evans' +p337673 +sa(dp337674 +g291134 +S'Subway Portrait' +p337675 +sg291137 +S'Walker Evans' +p337676 +sg291130 +S'gelatin silver print mounted on paperboard' +p337677 +sg291132 +S'January 1941' +p337678 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005abf.jpg' +p337679 +sg291136 +g27 +sa(dp337680 +g291134 +S'Subway Portrait' +p337681 +sg291137 +S'Walker Evans' +p337682 +sg291130 +S'gelatin silver print' +p337683 +sg291132 +S'1938-1941' +p337684 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a000649c.jpg' +p337685 +sg291136 +g27 +sa(dp337686 +g291134 +S'Subway Portrait' +p337687 +sg291137 +S'Walker Evans' +p337688 +sg291130 +S'gelatin silver print' +p337689 +sg291132 +S'1938-1941' +p337690 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a0006498.jpg' +p337691 +sg291136 +g27 +sa(dp337692 +g291134 +S'Subway Portrait' +p337693 +sg291137 +S'Walker Evans' +p337694 +sg291130 +S'gelatin silver print' +p337695 +sg291132 +S'1938-1941' +p337696 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a0006497.jpg' +p337697 +sg291136 +g27 +sa(dp337698 +g291134 +S'Subway Portrait' +p337699 +sg291137 +S'Walker Evans' +p337700 +sg291130 +S'gelatin silver print' +p337701 +sg291132 +S'1938-1941' +p337702 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a000649b.jpg' +p337703 +sg291136 +g27 +sa(dp337704 +g291134 +S'Subway Portrait' +p337705 +sg291137 +S'Walker Evans' +p337706 +sg291130 +S'gelatin silver print' +p337707 +sg291132 +S'1938-1941' +p337708 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a000649a.jpg' +p337709 +sg291136 +g27 +sa(dp337710 +g291134 +S'Subway Portrait' +p337711 +sg291137 +S'Walker Evans' +p337712 +sg291130 +S'gelatin silver print' +p337713 +sg291132 +S'1938' +p337714 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d1e.jpg' +p337715 +sg291136 +S'Although he resisted the term "art photographer" throughout his life, Walker Evans was instrumental in establishing photography as an artistic profession in the United States. Ten years after making his first serious photographs, Evans had published three books with noted writers and had as many one-person shows at the Museum of Modern Art. The last of these, \n For his "subway portraits," which Evans began to make immediately after the appearance of \n ' +p337716 +sa(dp337717 +g291134 +S'Subway Portrait' +p337718 +sg291137 +S'Walker Evans' +p337719 +sg291130 +S'gelatin silver print' +p337720 +sg291132 +S'1938-1941' +p337721 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a0006499.jpg' +p337722 +sg291136 +g27 +sa(dp337723 +g291134 +S'Subway Portrait' +p337724 +sg291137 +S'Walker Evans' +p337725 +sg291130 +S'gelatin silver print mounted on paperboard' +p337726 +sg291132 +S'1938-1941' +p337727 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a0006496.jpg' +p337728 +sg291136 +g27 +sa(dp337729 +g291130 +S'Italian, 1467 - 1528' +p337730 +sg291132 +S'(related artist)' +p337731 +sg291134 +S'Standing Leda and the Swan [obverse]' +p337732 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337733 +sa(dp337734 +g291130 +S'Italian, 1467 - 1528' +p337735 +sg291132 +S'(related artist)' +p337736 +sg291134 +S'Hercules and the Nemean Lion [reverse]' +p337737 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337738 +sa(dp337739 +g291130 +S'5-color sugar-lift aquatint on wove paper' +p337740 +sg291132 +S'1937' +p337741 +sg291134 +S'Laquais (Footman)' +p337742 +sg291136 +g27 +sg291137 +S'Georges Rouault' +p337743 +sa(dp337744 +g291130 +S'4-color sugar-lift aquatint on wove paper' +p337745 +sg291132 +S'1938' +p337746 +sg291134 +S'Christ de Face' +p337747 +sg291136 +g27 +sg291137 +S'Georges Rouault' +p337748 +sa(dp337749 +g291130 +S'gelatin silver print mounted on paperboard' +p337750 +sg291132 +S'1918' +p337751 +sg291134 +S"Georgia O'Keeffe" +p337752 +sg291136 +g27 +sg291137 +S'Alfred Stieglitz' +p337753 +sa(dp337754 +g291134 +S"Georgia O'Keeffe--Hands" +p337755 +sg291137 +S'Alfred Stieglitz' +p337756 +sg291130 +S'palladium print' +p337757 +sg291132 +S'1919' +p337758 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00057/a0005717.jpg' +p337759 +sg291136 +S'Alfred Stieglitz (1864–1946) spent much of his career establishing a dialogue between advanced photography, painting, and sculpture, and his more than three hundred photographs of the painter Georgia O\'Keeffe (1887–1986) count as a signal contribution to this long-term enterprise. Two years after opening an exhibition space, the Little Galleries of the Photo-Secession (Gallery "291"), in 1905, Stieglitz began showing modern art there as well. Drawings, paintings, and sculpture by Auguste Rodin, Henri Matisse, Pablo Picasso, and Constantin Brancusi, among others, influenced Stieglitz in his thinking about photography. These artists, significantly, all made or worked from photographs.\n Stieglitz\'s decision to consider his photographs of O\'Keeffe\'s hands "portraits" of her in their own right, rather than simply studies for a larger composition, is certainly indebted to the sculptural fragments made by Rodin and pursued to the point of abstraction by Rodin\'s one-time assistant Brancusi. Yet Stieglitz cultivated here above all the sense of photography as fragmentary, a partial viewing that lends itself to juxtaposition and serial development. Stieglitz called his ongoing studies of O\'Keeffe a "composite portrait," meaning one that developed over time, piece by piece. This closely framed view of ecstatically clawing hands, sinewy fingers pressing into flesh, gives just one aspect of O\'Keeffe\'s multifaceted personality as shaped through this portrait series.\n ' +p337760 +sa(dp337761 +g291134 +S'Saint Anthony Abbot and Saint Bernardino of Siena' +p337762 +sg291137 +S'Jacopo Bellini' +p337763 +sg291130 +S'tempera on panel' +p337764 +sg291132 +S'1459' +p337765 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00008/a0000851.jpg' +p337766 +sg291136 +g27 +sa(dp337767 +g291130 +S'gelatin silver print' +p337768 +sg291132 +S'c. 1955' +p337769 +sg291134 +S'Reflections, New York' +p337770 +sg291136 +g27 +sg291137 +S'Lisette Model' +p337771 +sa(dp337772 +g291130 +S'gelatin silver print' +p337773 +sg291132 +S'1933/1938' +p337774 +sg291134 +S'Man with Pamphlets' +p337775 +sg291136 +g27 +sg291137 +S'Lisette Model' +p337776 +sa(dp337777 +g291130 +S'gelatin silver print' +p337778 +sg291132 +S'1934' +p337779 +sg291134 +S'Promenade des Anglais' +p337780 +sg291136 +g27 +sg291137 +S'Lisette Model' +p337781 +sa(dp337782 +g291130 +S'gelatin silver print, 1950s' +p337783 +sg291132 +S'1929' +p337784 +sg291134 +S'The Bricklayer' +p337785 +sg291136 +g27 +sg291137 +S'August Sander' +p337786 +sa(dp337787 +g291130 +S'linocut with painted additions on offset paper' +p337788 +sg291132 +S'1983' +p337789 +sg291134 +S'consequences (folgen)' +p337790 +sg291136 +g27 +sg291137 +S'J\xc3\xb6rg Immendorff' +p337791 +sa(dp337792 +g291130 +S'screenprint on stained canvas with painted additions' +p337793 +sg291132 +S'1983' +p337794 +sg291134 +S'The Last Supper (Das letzte Abendmahl)' +p337795 +sg291136 +g27 +sg291137 +S'Hermann Nitsch' +p337796 +sa(dp337797 +g291134 +S'Study for a Prophet' +p337798 +sg291137 +S'Lattanzio Gambara' +p337799 +sg291130 +S'black chalk with white heightening on laid paper; squared for transfer' +p337800 +sg291132 +S'1567/1573' +p337801 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a000253c.jpg' +p337802 +sg291136 +g27 +sa(dp337803 +g291130 +S'(artist after)' +p337804 +sg291132 +S'\n' +p337805 +sg291134 +S'The English Dance of Death (volume I)' +p337806 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337807 +sa(dp337808 +g291130 +S'(artist after)' +p337809 +sg291132 +S'\n' +p337810 +sg291134 +S'The English Dance of Death (volume II)' +p337811 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337812 +sa(dp337813 +g291130 +S'(artist after)' +p337814 +sg291132 +S'\n' +p337815 +sg291134 +S'The Dance of Life' +p337816 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337817 +sa(dp337818 +g291130 +S'(artist)' +p337819 +sg291132 +S'\n' +p337820 +sg291134 +S'The Vicar of Wakefield' +p337821 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337822 +sa(dp337823 +g291130 +S'(artist)' +p337824 +sg291132 +S'\n' +p337825 +sg291134 +S'The Tour of Doctor Syntax in Search of the Picturesque: A Poem (volume I)' +p337826 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337827 +sa(dp337828 +g291130 +S'(artist after)' +p337829 +sg291132 +S'\n' +p337830 +sg291134 +S'The Second Tour of Doctor Syntax, in Search of Consolation: A Poem (volume II)' +p337831 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337832 +sa(dp337833 +g291130 +S'(artist after)' +p337834 +sg291132 +S'\n' +p337835 +sg291134 +S'The Third Tour of Doctor Syntax, in Search of a Wife: A Poem (volume III)' +p337836 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337837 +sa(dp337838 +g291130 +S'(artist after)' +p337839 +sg291132 +S'\n' +p337840 +sg291134 +S'The History of Johnny Quae Genus, the Foundling of the Late Doctor Syntax: A Poem' +p337841 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337842 +sa(dp337843 +g291134 +S'Le Cabinet des plus beaux Portraits ... faits par le fameux Antoine van Dyck' +p337844 +sg291137 +S'Artist Information (' +p337845 +sg291130 +S'(artist)' +p337846 +sg291132 +S'\n' +p337847 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00034/a0003404.jpg' +p337848 +sg291136 +g27 +sa(dp337849 +g291134 +S'Self-Portrait' +p337850 +sg291137 +S'Artist Information (' +p337851 +sg291130 +S'(artist)' +p337852 +sg291132 +S'\n' +p337853 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00054/a0005460.jpg' +p337854 +sg291136 +g27 +sa(dp337855 +g291130 +S'(artist after)' +p337856 +sg291132 +S'\n' +p337857 +sg291134 +S"Gaston d'Orl\xc3\xa9ans" +p337858 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337859 +sa(dp337860 +g291130 +S'(artist after)' +p337861 +sg291132 +S'\n' +p337862 +sg291134 +S'Hendrick van Balen' +p337863 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337864 +sa(dp337865 +g291130 +S'(artist after)' +p337866 +sg291132 +S'\n' +p337867 +sg291134 +S'Hubert van den Eynden' +p337868 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337869 +sa(dp337870 +g291130 +S'(artist after)' +p337871 +sg291132 +S'\n' +p337872 +sg291134 +S'Andre Colyns de Nole' +p337873 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337874 +sa(dp337875 +g291130 +S'Flemish, 1599 - 1641' +p337876 +sg291132 +S'(artist after)' +p337877 +sg291134 +S'Anthony van Opstal' +p337878 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337879 +sa(dp337880 +g291130 +S'(artist after)' +p337881 +sg291132 +S'\n' +p337882 +sg291134 +S'Theodore Rogiers' +p337883 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337884 +sa(dp337885 +g291130 +S'Flemish, 1599 - 1641' +p337886 +sg291132 +S'(artist after)' +p337887 +sg291134 +S'Peter Symen' +p337888 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337889 +sa(dp337890 +g291130 +S'(artist)' +p337891 +sg291132 +S'\n' +p337892 +sg291134 +S'Willem de Vos' +p337893 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337894 +sa(dp337895 +g291130 +S'(artist)' +p337896 +sg291132 +S'\n' +p337897 +sg291134 +S'Frans Snyders' +p337898 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337899 +sa(dp337900 +g291130 +S'etching and engraving on laid paper' +p337901 +sg291132 +S'probably 1626/1641' +p337902 +sg291134 +S'Adam van Noort' +p337903 +sg291136 +g27 +sg291137 +S'Sir Anthony van Dyck' +p337904 +sa(dp337905 +g291130 +S'etching on laid paper' +p337906 +sg291132 +S'probably 1626/1641' +p337907 +sg291134 +S'Justus Suttermans' +p337908 +sg291136 +g27 +sg291137 +S'Sir Anthony van Dyck' +p337909 +sa(dp337910 +g291130 +S'(artist after)' +p337911 +sg291132 +S'\n' +p337912 +sg291134 +S'Christian, Duke of Brunswick' +p337913 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337914 +sa(dp337915 +g291134 +S'Jodocus de Momper' +p337916 +sg291137 +S'Sir Anthony van Dyck' +p337917 +sg291130 +S'etching on laid paper' +p337918 +sg291132 +S'probably 1626/1641' +p337919 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00033/a00033ca.jpg' +p337920 +sg291136 +g27 +sa(dp337921 +g291130 +S'etching on laid paper' +p337922 +sg291132 +S'probably 1626/1641' +p337923 +sg291134 +S'Pieter Bruegel the Younger' +p337924 +sg291136 +g27 +sg291137 +S'Sir Anthony van Dyck' +p337925 +sa(dp337926 +g291130 +S'etching on laid paper' +p337927 +sg291132 +S'probably 1626/1641' +p337928 +sg291134 +S'Lucas Vorsterman' +p337929 +sg291136 +g27 +sg291137 +S'Sir Anthony van Dyck' +p337930 +sa(dp337931 +g291130 +S'etching and engraving on laid paper' +p337932 +sg291132 +S'probably 1626/1641' +p337933 +sg291134 +S'Paulus Pontius' +p337934 +sg291136 +g27 +sg291137 +S'Sir Anthony van Dyck' +p337935 +sa(dp337936 +g291130 +S'etching and engraving on laid paper' +p337937 +sg291132 +S'probably 1626/1641' +p337938 +sg291134 +S'Frans Francken II' +p337939 +sg291136 +g27 +sg291137 +S'Sir Anthony van Dyck' +p337940 +sa(dp337941 +g291134 +S'Jan Bruegel the Elder' +p337942 +sg291137 +S'Sir Anthony van Dyck' +p337943 +sg291130 +S'etching and engraving on laid paper' +p337944 +sg291132 +S'probably 1626/1641' +p337945 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d6d.jpg' +p337946 +sg291136 +g27 +sa(dp337947 +g291130 +S'(artist after)' +p337948 +sg291132 +S'\n' +p337949 +sg291134 +S'Erasmus of Rotterdam' +p337950 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337951 +sa(dp337952 +g291130 +S'etching and engraving on laid paper' +p337953 +sg291132 +S'probably 1626/1641' +p337954 +sg291134 +S'Jan de Wael' +p337955 +sg291136 +g27 +sg291137 +S'Sir Anthony van Dyck' +p337956 +sa(dp337957 +g291130 +S'etching on laid paper' +p337958 +sg291132 +S'probably 1626/1641' +p337959 +sg291134 +S'Jan Snellinx' +p337960 +sg291136 +g27 +sg291137 +S'Sir Anthony van Dyck' +p337961 +sa(dp337962 +g291130 +S'(artist after)' +p337963 +sg291132 +S'\n' +p337964 +sg291134 +S'Hieronymus de Bran' +p337965 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337966 +sa(dp337967 +g291130 +S'(artist after)' +p337968 +sg291132 +S'\n' +p337969 +sg291134 +S'Ambrosius Spinola' +p337970 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337971 +sa(dp337972 +g291130 +S'(artist after)' +p337973 +sg291132 +S'\n' +p337974 +sg291134 +S'Nicolaus Rockox' +p337975 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337976 +sa(dp337977 +g291130 +S'(artist after)' +p337978 +sg291132 +S'\n' +p337979 +sg291134 +S'Francis Thomas of Savoy-Carignan' +p337980 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337981 +sa(dp337982 +g291130 +S'(artist after)' +p337983 +sg291132 +S'\n' +p337984 +sg291134 +S'Frederick Henry, Price of Nassau-Orange' +p337985 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337986 +sa(dp337987 +g291130 +S'(artist after)' +p337988 +sg291132 +S'\n' +p337989 +sg291134 +S'Philip IV, King of Spain' +p337990 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337991 +sa(dp337992 +g291130 +S'(artist after)' +p337993 +sg291132 +S'\n' +p337994 +sg291134 +S'Elisabeth de Bourbon, Wife of Philip IV' +p337995 +sg291136 +g27 +sg291137 +S'Artist Information (' +p337996 +sa(dp337997 +g291130 +S'(artist after)' +p337998 +sg291132 +S'\n' +p337999 +sg291134 +S'Francois Villani' +p338000 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338001 +sa(dp338002 +g291130 +S'(artist after)' +p338003 +sg291132 +S'\n' +p338004 +sg291134 +S'Don Alvar Bazan, Marquis de Santa-Cruz' +p338005 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338006 +sa(dp338007 +g291130 +S'(artist after)' +p338008 +sg291132 +S'\n' +p338009 +sg291134 +S'Wolfgang William, Duke Palatine-Neuburg' +p338010 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338011 +sa(dp338012 +g291130 +S'(artist after)' +p338013 +sg291132 +S'\n' +p338014 +sg291134 +S'Don Diego Philip de Gusman' +p338015 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338016 +sa(dp338017 +g291130 +S'(artist after)' +p338018 +sg291132 +S'\n' +p338019 +sg291134 +S'John, Count of Nassau' +p338020 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338021 +sa(dp338022 +g291130 +S'(artist after)' +p338023 +sg291132 +S'\n' +p338024 +sg291134 +S'Carolus de Colonna' +p338025 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338026 +sa(dp338027 +g291130 +S'(artist after)' +p338028 +sg291132 +S'\n' +p338029 +sg291134 +S'Frai Lelio Blancaccio' +p338030 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338031 +sa(dp338032 +g291130 +S'(artist after)' +p338033 +sg291132 +S'\n' +p338034 +sg291134 +S'Albert Count Wallenstein, Duke of Friedland' +p338035 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338036 +sa(dp338037 +g291130 +S'(artist after)' +p338038 +sg291132 +S'\n' +p338039 +sg291134 +S'Isabella Clara Eugenia, Infanta of Spain' +p338040 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338041 +sa(dp338042 +g291130 +S'(artist after)' +p338043 +sg291132 +S'\n' +p338044 +sg291134 +S'Philip Herbert, 4th Earl of Pembroke and Montgomery' +p338045 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338046 +sa(dp338047 +g291130 +S'(artist after)' +p338048 +sg291132 +S'\n' +p338049 +sg291134 +S'Franciscus de Moncada' +p338050 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338051 +sa(dp338052 +g291130 +S'(artist after)' +p338053 +sg291132 +S'\n' +p338054 +sg291134 +S"Genevieve d'Urfe" +p338055 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338056 +sa(dp338057 +g291130 +S'(artist after)' +p338058 +sg291132 +S'\n' +p338059 +sg291134 +S'Margaret, Princess of Lorraine' +p338060 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338061 +sa(dp338062 +g291130 +S'(artist after)' +p338063 +sg291132 +S'\n' +p338064 +sg291134 +S'Alathea Talbot, Countess of Arundel' +p338065 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338066 +sa(dp338067 +g291130 +S'(artist after)' +p338068 +sg291132 +S'\n' +p338069 +sg291134 +S"Jacques Leroy d'Herbaix" +p338070 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338071 +sa(dp338072 +g291130 +S'(artist after)' +p338073 +sg291132 +S'\n' +p338074 +sg291134 +S'James, Duke of Hamilton' +p338075 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338076 +sa(dp338077 +g291130 +S'(artist after)' +p338078 +sg291132 +S'\n' +p338079 +sg291134 +S'Charles Emanuel, Duke of Savoy' +p338080 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338081 +sa(dp338082 +g291130 +S'(artist after)' +p338083 +sg291132 +S'\n' +p338084 +sg291134 +S'Antonio de Zuniga, Marquis de Mirabella' +p338085 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338086 +sa(dp338087 +g291130 +S'(artist after)' +p338088 +sg291132 +S'\n' +p338089 +sg291134 +S'Justus Lipsius' +p338090 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338091 +sa(dp338092 +g291130 +S'(artist after)' +p338093 +sg291132 +S'\n' +p338094 +sg291134 +S'Maria de Medici' +p338095 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338096 +sa(dp338097 +g291130 +S'(artist after)' +p338098 +sg291132 +S'\n' +p338099 +sg291134 +S'Diodorus Tulden' +p338100 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338101 +sa(dp338102 +g291130 +S'(artist after)' +p338103 +sg291132 +S'\n' +p338104 +sg291134 +S'Caesar Alexander Scaglia' +p338105 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338106 +sa(dp338107 +g291130 +S'(artist after)' +p338108 +sg291132 +S'\n' +p338109 +sg291134 +S'Sir Kenelm Digby' +p338110 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338111 +sa(dp338112 +g291130 +S'(artist)' +p338113 +sg291132 +S'\n' +p338114 +sg291134 +S'Antoine Triest' +p338115 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338116 +sa(dp338117 +g291130 +S'(artist after)' +p338118 +sg291132 +S'\n' +p338119 +sg291134 +S'Antonius de Tassis' +p338120 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338121 +sa(dp338122 +g291130 +S'(artist after)' +p338123 +sg291132 +S'\n' +p338124 +sg291134 +S'Alexander de la Faille' +p338125 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338126 +sa(dp338127 +g291130 +S'(artist after)' +p338128 +sg291132 +S'\n' +p338129 +sg291134 +S'Johannes Carolus de la Faille' +p338130 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338131 +sa(dp338132 +g291130 +S'(artist after)' +p338133 +sg291132 +S'\n' +p338134 +sg291134 +S'Nicolas Fabricius de Peirese' +p338135 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338136 +sa(dp338137 +g291130 +S'(artist after)' +p338138 +sg291132 +S'\n' +p338139 +sg291134 +S'Aubertus Miraeus' +p338140 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338141 +sa(dp338142 +g291130 +S'(artist after)' +p338143 +sg291132 +S'\n' +p338144 +sg291134 +S'Wenceslaus Coeberger' +p338145 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338146 +sa(dp338147 +g291130 +S'(artist after)' +p338148 +sg291132 +S'\n' +p338149 +sg291134 +S'Ferdinand of Austria, Infante of Spain' +p338150 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338151 +sa(dp338152 +g291130 +S'(artist after)' +p338153 +sg291132 +S'\n' +p338154 +sg291134 +S'Jacobus de Breuck' +p338155 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338156 +sa(dp338157 +g291130 +S'(artist after)' +p338158 +sg291132 +S'\n' +p338159 +sg291134 +S'Erycius Puteanus' +p338160 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338161 +sa(dp338162 +g291130 +S'(artist after)' +p338163 +sg291132 +S'\n' +p338164 +sg291134 +S'Inigo Jones' +p338165 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338166 +sa(dp338167 +g291130 +S'(artist after)' +p338168 +sg291132 +S'\n' +p338169 +sg291134 +S'Paul Halmalius' +p338170 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338171 +sa(dp338172 +g291130 +S'(artist after)' +p338173 +sg291132 +S'\n' +p338174 +sg291134 +S'Constantijn Huygens' +p338175 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338176 +sa(dp338177 +g291130 +S'(artist after)' +p338178 +sg291132 +S'\n' +p338179 +sg291134 +S'Gaspar Gevartius' +p338180 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338181 +sa(dp338182 +g291130 +S'(artist)' +p338183 +sg291132 +S'\n' +p338184 +sg291134 +S'Jan van der Wouwer' +p338185 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338186 +sa(dp338187 +g291130 +S'(artist after)' +p338188 +sg291132 +S'\n' +p338189 +sg291134 +S'Petrus Stevens' +p338190 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338191 +sa(dp338192 +g291130 +S'(artist after)' +p338193 +sg291132 +S'\n' +p338194 +sg291134 +S'Deodat Delmont' +p338195 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338196 +sa(dp338197 +g291130 +S'(artist after)' +p338198 +sg291132 +S'\n' +p338199 +sg291134 +S'Henry Liberti' +p338200 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338201 +sa(dp338202 +g291130 +S'(artist after)' +p338203 +sg291132 +S'\n' +p338204 +sg291134 +S'Gustavus Adolphus, King of Sweden' +p338205 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338206 +sa(dp338207 +g291130 +S'(artist after)' +p338208 +sg291132 +S'\n' +p338209 +sg291134 +S'Peter Paul Rubens' +p338210 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338211 +sa(dp338212 +g291130 +S'(artist after)' +p338213 +sg291132 +S'\n' +p338214 +sg291134 +S'Anthony van Dyck' +p338215 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338216 +sa(dp338217 +g291130 +S'(artist after)' +p338218 +sg291132 +S'\n' +p338219 +sg291134 +S'Mary Ruthven, Wife of Anthony van Dyck' +p338220 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338221 +sa(dp338222 +g291130 +S'(artist after)' +p338223 +sg291132 +S'\n' +p338224 +sg291134 +S'Gerard Seghers' +p338225 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338226 +sa(dp338227 +g291130 +S'(artist after)' +p338228 +sg291132 +S'\n' +p338229 +sg291134 +S'Jacob Jordaens' +p338230 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338231 +sa(dp338232 +g291130 +S'(artist after)' +p338233 +sg291132 +S'\n' +p338234 +sg291134 +S'Adriaen Brouwer' +p338235 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338236 +sa(dp338237 +g291130 +S'(artist after)' +p338238 +sg291132 +S'\n' +p338239 +sg291134 +S'Gaspar de Crayer' +p338240 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338241 +sa(dp338242 +g291130 +S'(artist after)' +p338243 +sg291132 +S'\n' +p338244 +sg291134 +S'Simon de Vos' +p338245 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338246 +sa(dp338247 +g291130 +S'(artist after)' +p338248 +sg291132 +S'\n' +p338249 +sg291134 +S'Adriaen Stalbemt' +p338250 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338251 +sa(dp338252 +g291130 +S'(artist after)' +p338253 +sg291132 +S'\n' +p338254 +sg291134 +S'Jan Lievens' +p338255 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338256 +sa(dp338257 +g291130 +S'(artist after)' +p338258 +sg291132 +S'\n' +p338259 +sg291134 +S'Albert, Count of Aremberg' +p338260 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338261 +sa(dp338262 +g291130 +S'(artist after)' +p338263 +sg291132 +S'\n' +p338264 +sg291134 +S'Martin Pepyn' +p338265 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338266 +sa(dp338267 +g291130 +S'(artist after)' +p338268 +sg291132 +S'\n' +p338269 +sg291134 +S'Cornelis Schut' +p338270 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338271 +sa(dp338272 +g291130 +S'(artist after)' +p338273 +sg291132 +S'\n' +p338274 +sg291134 +S'Jan Snellinx' +p338275 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338276 +sa(dp338277 +g291130 +S'(artist after)' +p338278 +sg291132 +S'\n' +p338279 +sg291134 +S'Jodocus de Momper' +p338280 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338281 +sa(dp338282 +g291130 +S'(artist after)' +p338283 +sg291132 +S'\n' +p338284 +sg291134 +S'Michel Miereveld' +p338285 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338286 +sa(dp338287 +g291130 +S'(artist after)' +p338288 +sg291132 +S'\n' +p338289 +sg291134 +S'Artus Wolfart' +p338290 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338291 +sa(dp338292 +g291130 +S'(artist after)' +p338293 +sg291132 +S'\n' +p338294 +sg291134 +S'Paul de Vos' +p338295 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338296 +sa(dp338297 +g291130 +S'(artist after)' +p338298 +sg291132 +S'\n' +p338299 +sg291134 +S'Sebastian Vrancx' +p338300 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338301 +sa(dp338302 +g291130 +S'(artist after)' +p338303 +sg291132 +S'\n' +p338304 +sg291134 +S'Peter Snayers' +p338305 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338306 +sa(dp338307 +g291130 +S'(artist after)' +p338308 +sg291132 +S'\n' +p338309 +sg291134 +S'Orazio Gentileschi' +p338310 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338311 +sa(dp338312 +g291130 +S'(artist after)' +p338313 +sg291132 +S'\n' +p338314 +sg291134 +S'Francis Thomas of Savoy-Carignan' +p338315 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338316 +sa(dp338317 +g291130 +S'(artist)' +p338318 +sg291132 +S'\n' +p338319 +sg291134 +S'Anthony Cornelissen' +p338320 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338321 +sa(dp338322 +g291130 +S'(artist)' +p338323 +sg291132 +S'\n' +p338324 +sg291134 +S'Frans Francken II' +p338325 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338326 +sa(dp338327 +g291130 +S'(artist after)' +p338328 +sg291132 +S'\n' +p338329 +sg291134 +S'Daniel Mytens' +p338330 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338331 +sa(dp338332 +g291130 +S'(artist after)' +p338333 +sg291132 +S'\n' +p338334 +sg291134 +S'Simon Vouet' +p338335 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338336 +sa(dp338337 +g291130 +S'(artist after)' +p338338 +sg291132 +S'\n' +p338339 +sg291134 +S'Hendrik Steenwyck' +p338340 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338341 +sa(dp338342 +g291130 +S'(artist after)' +p338343 +sg291132 +S'\n' +p338344 +sg291134 +S'Cornelis de Vos' +p338345 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338346 +sa(dp338347 +g291130 +S'(artist after)' +p338348 +sg291132 +S'\n' +p338349 +sg291134 +S'Jacques de Cachiopin' +p338350 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338351 +sa(dp338352 +g291130 +S'(artist after)' +p338353 +sg291132 +S'\n' +p338354 +sg291134 +S'Jan Christoph van der Lamen' +p338355 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338356 +sa(dp338357 +g291130 +S'(artist after)' +p338358 +sg291132 +S'\n' +p338359 +sg291134 +S'Andreas van Ertvelt' +p338360 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338361 +sa(dp338362 +g291130 +S'(artist)' +p338363 +sg291132 +S'\n' +p338364 +sg291134 +S'Cornelis van Poelenburgh' +p338365 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338366 +sa(dp338367 +g291130 +S'(artist after)' +p338368 +sg291132 +S'\n' +p338369 +sg291134 +S"Joannes Cornelius T'Serclaes de Tilly" +p338370 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338371 +sa(dp338372 +g291130 +S'(artist after)' +p338373 +sg291132 +S'\n' +p338374 +sg291134 +S'Jan van Mildert' +p338375 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338376 +sa(dp338377 +g291130 +S'(artist after)' +p338378 +sg291132 +S'\n' +p338379 +sg291134 +S'Joannes van Ravesteyn' +p338380 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338381 +sa(dp338382 +g291130 +S'(artist after)' +p338383 +sg291132 +S'\n' +p338384 +sg291134 +S'Adam de Coster' +p338385 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338386 +sa(dp338387 +g291130 +S'(artist after)' +p338388 +sg291132 +S'\n' +p338389 +sg291134 +S'Lucas van Uden' +p338390 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338391 +sa(dp338392 +g291130 +S'(artist after)' +p338393 +sg291132 +S'\n' +p338394 +sg291134 +S'Palamedes Palamedesz.' +p338395 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338396 +sa(dp338397 +g291130 +S'(artist after)' +p338398 +sg291132 +S'\n' +p338399 +sg291134 +S'Willem Hondius' +p338400 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338401 +sa(dp338402 +g291130 +S'(artist after)' +p338403 +sg291132 +S'\n' +p338404 +sg291134 +S'Theodore Rombouts' +p338405 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338406 +sa(dp338407 +g291130 +S'(artist after)' +p338408 +sg291132 +S'\n' +p338409 +sg291134 +S'Theodorus van Loon' +p338410 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338411 +sa(dp338412 +g291130 +S'(artist after)' +p338413 +sg291132 +S'\n' +p338414 +sg291134 +S'Robert van Voerst' +p338415 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338416 +sa(dp338417 +g291130 +S'(artist after)' +p338418 +sg291132 +S'\n' +p338419 +sg291134 +S'Gerrit van Honthorst' +p338420 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338421 +sa(dp338422 +g291130 +S'(artist after)' +p338423 +sg291132 +S'\n' +p338424 +sg291134 +S'Don Emanuel Frockas Pinyra et Piementel, Count Feria' +p338425 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338426 +sa(dp338427 +g291130 +S'(artist after)' +p338428 +sg291132 +S'\n' +p338429 +sg291134 +S'Cornelis Saftleven' +p338430 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338431 +sa(dp338432 +g291130 +S'(artist after)' +p338433 +sg291132 +S'\n' +p338434 +sg291134 +S'Cornelis van der Geest' +p338435 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338436 +sa(dp338437 +g291130 +S'(artist after)' +p338438 +sg291132 +S'\n' +p338439 +sg291134 +S'Peter de Jode the Elder' +p338440 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338441 +sa(dp338442 +g291130 +S'(artist after)' +p338443 +sg291132 +S'\n' +p338444 +sg291134 +S'Peter de Jode the Younger' +p338445 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338446 +sa(dp338447 +g291130 +S'(artist after)' +p338448 +sg291132 +S'\n' +p338449 +sg291134 +S'Lucas Vorsterman the Elder' +p338450 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338451 +sa(dp338452 +g291130 +S'(artist after)' +p338453 +sg291132 +S'\n' +p338454 +sg291134 +S'Karel de Mallery' +p338455 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338456 +sa(dp338457 +g291130 +S'(artist after)' +p338458 +sg291132 +S'\n' +p338459 +sg291134 +S'Jan Baptista Barbe' +p338460 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338461 +sa(dp338462 +g291130 +S'(artist after)' +p338463 +sg291132 +S'\n' +p338464 +sg291134 +S'Paulus Pontius' +p338465 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338466 +sa(dp338467 +g291130 +S'(artist after)' +p338468 +sg291132 +S'\n' +p338469 +sg291134 +S'Theodor Galle' +p338470 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338471 +sa(dp338472 +g291130 +S'(artist after)' +p338473 +sg291132 +S'\n' +p338474 +sg291134 +S'Jacques Callot' +p338475 +sg291136 +g27 +sg291137 +S'Artist Information (' +p338476 +sa(dp338477 +g291134 +S"I Think I'll..." +p338478 +sg291137 +S'Ed Ruscha' +p338479 +sg291130 +S'oil on canvas' +p338480 +sg291132 +S'1983' +p338481 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a00001fb.jpg' +p338482 +sg291136 +g27 +sa(dp338483 +g291130 +S'oil on canvas' +p338484 +sg291132 +S'1951' +p338485 +sg291134 +S'Untitled' +p338486 +sg291136 +g27 +sg291137 +S'Clyfford Still' +p338487 +sa(dp338488 +g291134 +S'Marcelle Lender Dancing the Bolero in "Chilp\xc3\xa9ric"' +p338489 +sg291137 +S'Henri de Toulouse-Lautrec' +p338490 +sg291130 +S'oil on canvas' +p338491 +sg291132 +S'1895-1896' +p338492 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004cc3.jpg' +p338493 +sg291136 +S"Henri de Toulouse-Lautrec had a passion for the theater in all its forms, from the popular dance halls and cabarets to the avant-garde theaters of Paris. He was both a keen spectator and an active participant, designing posters, theater programs, scenery, and costumes for a number of theaters and stage productions. Although he was drawn to the spectacle of the performance, it was the performers who most fascinated him.\n Among Toulouse-Lautrec's favorite subjects was the red-headed actress Marcelle Lender. He first encountered her in 1893, the year he began to attend the theater on a regular basis. His infatuation with her reached its peak two years later when she starred in the revival of the French librettist and composer Herv\xc3\xa9's \n One of the largest and most elaborate paintings Toulouse-Lautrec ever created, \n " +p338494 +sa(dp338495 +g291134 +S'A Lady' +p338496 +sg291137 +S'Joseph Chinard' +p338497 +sg291130 +S'terracotta' +p338498 +sg291132 +S'1810' +p338499 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00029/a00029be.jpg' +p338500 +sg291136 +g27 +sa(dp338501 +g291134 +S"The Oval Fountain in the Gardens of the Villa d'Este, Tivoli" +p338502 +sg291137 +S'Hubert Robert' +p338503 +sg291130 +S'red chalk over graphite on laid paper' +p338504 +sg291132 +S'1760' +p338505 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026f3.jpg' +p338506 +sg291136 +g27 +sa(dp338507 +g291130 +S'cast aluminum' +p338508 +sg291132 +S'1974' +p338509 +sg291134 +S'Metamorphosis of a Plant Into a Fan' +p338510 +sg291136 +g27 +sg291137 +S'Jim Dine' +p338511 +sa(dp338512 +g291134 +S'Metamorphosis of a Plant Into a Fan' +p338513 +sg291137 +S'Jim Dine' +p338514 +sg291130 +S'cast aluminum' +p338515 +sg291132 +S'1974' +p338516 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a0001666.jpg' +p338517 +sg291136 +g27 +sa(dp338518 +g291130 +S'cast aluminum' +p338519 +sg291132 +S'1974' +p338520 +sg291134 +S'Metamorphosis of a Plant Into a Fan' +p338521 +sg291136 +g27 +sg291137 +S'Jim Dine' +p338522 +sa(dp338523 +g291130 +S'cast aluminum' +p338524 +sg291132 +S'1974' +p338525 +sg291134 +S'Metamorphosis of a Plant Into a Fan' +p338526 +sg291136 +g27 +sg291137 +S'Jim Dine' +p338527 +sa(dp338528 +g291130 +S'cast aluminum' +p338529 +sg291132 +S'1974' +p338530 +sg291134 +S'Metamorphosis of a Plant Into a Fan' +p338531 +sg291136 +g27 +sg291137 +S'Jim Dine' +p338532 +sa(dp338533 +g291130 +S'brush and black ink over graphite on wove paper' +p338534 +sg291132 +S'c. 1900' +p338535 +sg291134 +S'Caricature of Prince del Drago' +p338536 +sg291136 +g27 +sg291137 +S'Carlo De Fornaro' +p338537 +sa(dp338538 +g291134 +S'The Prophets Hosea and Jonah' +p338539 +sg291137 +S'Artist Information (' +p338540 +sg291130 +S'(artist after)' +p338541 +sg291132 +S'\n' +p338542 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a00071a7.jpg' +p338543 +sg291136 +g27 +sa(dp338544 +g291134 +S'Marie-Antoinette' +p338545 +sg291137 +S'Artist Information (' +p338546 +sg291130 +S'(artist after)' +p338547 +sg291132 +S'\n' +p338548 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f38.jpg' +p338549 +sg291136 +g27 +sa(dp338550 +g291134 +S'A un peuple libre' +p338551 +sg291137 +S'Artist Information (' +p338552 +sg291130 +S'(artist after)' +p338553 +sg291132 +S'\n' +p338554 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e55.jpg' +p338555 +sg291136 +g27 +sa(dp338556 +g291134 +S'Louis XIII' +p338557 +sg291137 +S'Pierre Daret de Cazeneuve' +p338558 +sg291130 +S'etching and engraving on laid paper [first state]' +p338559 +sg291132 +S'1643' +p338560 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b14.jpg' +p338561 +sg291136 +g27 +sa(dp338562 +g291134 +S'Louis XIII' +p338563 +sg291137 +S'Pierre Daret de Cazeneuve' +p338564 +sg291130 +S'etching and engraving on laid paper [second state]' +p338565 +sg291132 +S'1643' +p338566 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b0e.jpg' +p338567 +sg291136 +g27 +sa(dp338568 +g291130 +S'oil and nails on cardboard and wood' +p338569 +sg291132 +S'1958' +p338570 +sg291134 +S'Them Apples' +p338571 +sg291136 +g27 +sg291137 +S'Frank Stella' +p338572 +sa(dp338573 +g291130 +S'color lithograph on Arches Cover paper' +p338574 +sg291132 +S'1969' +p338575 +sg291134 +S'Untitled' +p338576 +sg291136 +g27 +sg291137 +S'Charles Hinman' +p338577 +sa(dp338578 +g291130 +S'color lithograph printed on both sides of folded Arches Cover paper' +p338579 +sg291132 +S'1969' +p338580 +sg291134 +S'Evergloom' +p338581 +sg291136 +g27 +sg291137 +S'Richard Smith' +p338582 +sa(dp338583 +g291130 +S'color lithograph printed on both sides of folded Arches Cover paper' +p338584 +sg291132 +S'1969' +p338585 +sg291134 +S'Everglad' +p338586 +sg291136 +g27 +sg291137 +S'Richard Smith' +p338587 +sa(dp338588 +g291134 +S'Thirteen Studies of Heads' +p338589 +sg291137 +S'Jean-Jacques de Boissieu' +p338590 +sg291130 +S'etching in black on thin wove paper' +p338591 +sg291132 +S'1770' +p338592 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f51.jpg' +p338593 +sg291136 +g27 +sa(dp338594 +g291134 +S'Seven Studies of Heads' +p338595 +sg291137 +S'Jean-Jacques de Boissieu' +p338596 +sg291130 +S'etching in black on laid paper' +p338597 +sg291132 +S'1793' +p338598 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f50.jpg' +p338599 +sg291136 +g27 +sa(dp338600 +g291134 +S'A Donkey by a Water Well' +p338601 +sg291137 +S'Jean-Louis Demarne' +p338602 +sg291130 +S'etching in black on laid paper' +p338603 +sg291132 +S'unknown date\n' +p338604 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d03.jpg' +p338605 +sg291136 +g27 +sa(dp338606 +g291134 +S'Two Cows and a Woman Lying Down' +p338607 +sg291137 +S'Jean-Louis Demarne' +p338608 +sg291130 +S'etching in black on laid paper' +p338609 +sg291132 +S'unknown date\n' +p338610 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008d05.jpg' +p338611 +sg291136 +g27 +sa(dp338612 +g291134 +S'Les Pecheurs (The Fishermen)' +p338613 +sg291137 +S'Jean-Baptiste Le Prince' +p338614 +sg291130 +S'etching and aquatint printed in brown ink' +p338615 +sg291132 +S'1771' +p338616 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008efd.jpg' +p338617 +sg291136 +g27 +sa(dp338618 +g291134 +S'Rococo Fountain with Lovers and the Four Elements' +p338619 +sg291137 +S'Johann Esaias Nilson' +p338620 +sg291130 +S'pen and black ink with gray wash on laid paper' +p338621 +sg291132 +S'unknown date\n' +p338622 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a0007233.jpg' +p338623 +sg291136 +g27 +sa(dp338624 +g291130 +S"pen and black ink and watercolor on laid paper, on Klee's original mount" +p338625 +sg291132 +S'1925' +p338626 +sg291134 +S'Junger Wald (Young Forest)' +p338627 +sg291136 +g27 +sg291137 +S'Paul Klee' +p338628 +sa(dp338629 +g291134 +S'The Martyrdom of Saint Bartholomew' +p338630 +sg291137 +S'Jusepe de Ribera' +p338631 +sg291130 +S'oil on canvas' +p338632 +sg291132 +S'1634' +p338633 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00004/a00004ae.jpg' +p338634 +sg291136 +S"A popular subject in Counter–Reformation Italy and Spain, Ribera's profoundly moving work portrays the apostle's final moments before he is to be flayed alive. The viewer is meant to empathize with Bartholomew, whose body seemingly bursts through the surface of the canvas, and whose outstretched arms embrace a mystical light that illuminates his flesh. His piercing eyes, open mouth, and petitioning left hand bespeak an intense communion with the divine; yet this same hand draws our attention to the instruments of his torture, symbolically positioned in the shape of a cross. Transfixed by Bartholomew's active faith, the executioner seems to have stopped short in his actions, and his furrowed brow and partially illuminated face suggest a moment of doubt, with the possibility of conversion.\n The use of sharp light–dark contrasts and extreme naturalism reveal the influence of Caravaggio, whose work Ribera would have seen both in Rome and in Naples, where he lived from 1616 until the end of his life. Yet unlike Caravaggio, Ribera has enlivened the canvas with a variety of brushstrokes and textures, allowing the viewer to become further involved with this psychologically charged painting.\n " +p338635 +sa(dp338636 +g291134 +S'Torione Anticho Fori di Roma' +p338637 +sg291137 +S'Claude Lorrain' +p338638 +sg291130 +S'red chalk on laid paper' +p338639 +sg291132 +S'c. 1630/1635' +p338640 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a00072d6.jpg' +p338641 +sg291136 +g27 +sa(dp338642 +g291134 +S'Green Marilyn' +p338643 +sg291137 +S'Andy Warhol' +p338644 +sg291130 +S'silkscreen on synthetic polymer paint on canvas' +p338645 +sg291132 +S'1962' +p338646 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00002/a000028a.jpg' +p338647 +sg291136 +g27 +sa(dp338648 +g291134 +S'Cakes' +p338649 +sg291137 +S'Wayne Thiebaud' +p338650 +sg291130 +S'oil on canvas' +p338651 +sg291132 +S'1963' +p338652 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00002/a0000274.jpg' +p338653 +sg291136 +g27 +sa(dp338654 +g291134 +S'Portrait of a Young Boy (Henry Ebenezer Bingham?)' +p338655 +sg291137 +S'Aim\xc3\xa9-Jules Dalou' +p338656 +sg291130 +S'marble' +p338657 +sg291132 +S'1871/1879' +p338658 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a000242f.jpg' +p338659 +sg291136 +S"Dalou infused this marble portrait bust with subtle movement and energy: rather than maintaining a strictly formal pose, Dalou's young boy tips his head slightly, jostling his collar and tie, as if pausing only briefly before running on to play. The variety of textures—the soft creaminess of the boy's cheeks, his crisply drilled eyes, the chiseled matte finish of the sailor suit—enable light and shadow to alternate across the bust's surfaces. Like his contemporary \n Dalou created several busts of young children while living in England in the 1870s. Scholars speculate that this is five-year-old Henry Ebenezer Bingham, the son and grandson of English master marble- and stonemasons. Dalou taught sculptural modeling in London in the 1870s and had a studio near the Bingham family stone business. Henry's father, Edward Bingham, may have engaged Dalou to make this bust; in fact, the choice of material, "noble" statuary marble rather than the more popular terracotta that Dalou used at the time, may hint at the Binghams' social aspirations, as well as being a reference to the material basis of the family business.\n Traditional stone-carving tools were used for this work: a variety of chisels to work the face, hair, tie, and collar of the slightly disheveled suit; a drill for the pupil and iris; and files (and perhaps emery and pumice, but not wax or polish) to smooth the work and soften the boy's cheeks.\n " +p338660 +sa(dp338661 +g291134 +S'The Vaccine' +p338662 +sg291137 +S'Louis-L\xc3\xa9opold Boilly' +p338663 +sg291130 +S'pen and black ink and wash on laid paper' +p338664 +sg291132 +S'1806' +p338665 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022c1.jpg' +p338666 +sg291136 +g27 +sa(dp338667 +g291134 +S'A Stand of Cypresses in an Italian Park' +p338668 +sg291137 +S'Jean-Honor\xc3\xa9 Fragonard' +p338669 +sg291130 +S'red chalk on laid paper' +p338670 +sg291132 +S'c. 1760' +p338671 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a0002533.jpg' +p338672 +sg291136 +g27 +sa(dp338673 +g291130 +S'watercolor over graphite on laid paper' +p338674 +sg291132 +S'c. 1921 (dated 1927)' +p338675 +sg291134 +S'Abstract Composition' +p338676 +sg291136 +g27 +sg291137 +S'Stuart Davis' +p338677 +sa(dp338678 +g291134 +S'Land' +p338679 +sg291137 +S'Joan Mitchell' +p338680 +sg291130 +S'oil on canvas' +p338681 +sg291132 +S'1989' +p338682 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a000016a.jpg' +p338683 +sg291136 +g27 +sa(dp338684 +g291134 +S'Liber Chronicarum (Nuremberg Chronicle)' +p338685 +sg291137 +S'Artist Information (' +p338686 +sg291130 +S'(artist)' +p338687 +sg291132 +S'\n' +p338688 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e020.jpg' +p338689 +sg291136 +g27 +sa(dp338690 +g291134 +S'Violet [Note?]...The Return of the Fishing Boats' +p338691 +sg291137 +S'James McNeill Whistler' +p338692 +sg291130 +S'watercolor on paperboard' +p338693 +sg291132 +S'c. 1885' +p338694 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009fa.jpg' +p338695 +sg291136 +g27 +sa(dp338696 +g291134 +S'Beach Scene' +p338697 +sg291137 +S'James McNeill Whistler' +p338698 +sg291130 +S'watercolor on off-white paper mounted on paperboard' +p338699 +sg291132 +S'probably 1885' +p338700 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009fb.jpg' +p338701 +sg291136 +g27 +sa(dp338702 +g291134 +S'Village Shop, Chelsea' +p338703 +sg291137 +S'James McNeill Whistler' +p338704 +sg291130 +S'watercolor and gouache on paperboard' +p338705 +sg291132 +S'1883/1884' +p338706 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009fc.jpg' +p338707 +sg291136 +g27 +sa(dp338708 +g291134 +S"Study in Black and Gold (Madge O'Donoghue)" +p338709 +sg291137 +S'James McNeill Whistler' +p338710 +sg291130 +S'watercolor on white laid paper mounted on paperboard' +p338711 +sg291132 +S'1883/1884' +p338712 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009fd.jpg' +p338713 +sg291136 +g27 +sa(dp338714 +g291130 +S'sheet metal' +p338715 +sg291132 +S'1970' +p338716 +sg291134 +S'Crinkly Taureau' +p338717 +sg291136 +g27 +sg291137 +S'Alexander Calder' +p338718 +sa(dp338719 +g291134 +S'La Vache' +p338720 +sg291137 +S'Alexander Calder' +p338721 +sg291130 +S'sheet metal' +p338722 +sg291132 +S'1970' +p338723 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a000165c.jpg' +p338724 +sg291136 +g27 +sa(dp338725 +g291134 +S'Deux Angles Droits' +p338726 +sg291137 +S'Alexander Calder' +p338727 +sg291130 +S'sheet metal' +p338728 +sg291132 +S'1971' +p338729 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a000165d.jpg' +p338730 +sg291136 +g27 +sa(dp338731 +g291134 +S'Horse' +p338732 +sg291137 +S'Alexander Calder' +p338733 +sg291130 +S'sheet metal' +p338734 +sg291132 +S'1970' +p338735 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a000165e.jpg' +p338736 +sg291136 +g27 +sa(dp338737 +g291134 +S'Crinkly Worm' +p338738 +sg291137 +S'Alexander Calder' +p338739 +sg291130 +S'sheet metal' +p338740 +sg291132 +S'1971' +p338741 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a0001655.jpg' +p338742 +sg291136 +g27 +sa(dp338743 +g291134 +S'Red and Yellow Bull with Blue Head' +p338744 +sg291137 +S'Alexander Calder' +p338745 +sg291130 +S'sheet metal' +p338746 +sg291132 +S'1971' +p338747 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a0001656.jpg' +p338748 +sg291136 +g27 +sa(dp338749 +g291134 +S'Blue and Red Bull with Yellow Head' +p338750 +sg291137 +S'Alexander Calder' +p338751 +sg291130 +S'sheet metal' +p338752 +sg291132 +S'1971' +p338753 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a0001657.jpg' +p338754 +sg291136 +g27 +sa(dp338755 +g291134 +S'Black Camel with Blue Head and Red Tongue' +p338756 +sg291137 +S'Alexander Calder' +p338757 +sg291130 +S'sheet metal' +p338758 +sg291132 +S'1971' +p338759 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a0001658.jpg' +p338760 +sg291136 +g27 +sa(dp338761 +g291134 +S'Red Cow with Black Head' +p338762 +sg291137 +S'Alexander Calder' +p338763 +sg291130 +S'sheet metal' +p338764 +sg291132 +S'1971' +p338765 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a0001659.jpg' +p338766 +sg291136 +g27 +sa(dp338767 +g291134 +S'Les Fl\xc3\xa8ches' +p338768 +sg291137 +S'Alexander Calder' +p338769 +sg291130 +S'sheet metal' +p338770 +sg291132 +S'1976' +p338771 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a000165a.jpg' +p338772 +sg291136 +g27 +sa(dp338773 +g291134 +S'Pourville-sur-Mer' +p338774 +sg291137 +S'Artist Information (' +p338775 +sg291130 +S'American, 1834 - 1903' +p338776 +sg291132 +S'(related artist)' +p338777 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0fa.jpg' +p338778 +sg291136 +g27 +sa(dp338779 +g291134 +S'Bust of a Youth Looking Upward [recto]' +p338780 +sg291137 +S'Luca Signorelli' +p338781 +sg291130 +S'black chalk partially indented with a stylus on tan laid paper' +p338782 +sg291132 +S'c. 1500' +p338783 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a0002853.jpg' +p338784 +sg291136 +g27 +sa(dp338785 +g291134 +S'Two Nude Figures [verso]' +p338786 +sg291137 +S'Luca Signorelli' +p338787 +sg291130 +S'black chalk on tan laid paper' +p338788 +sg291132 +S'c. 1500' +p338789 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a0002854.jpg' +p338790 +sg291136 +g27 +sa(dp338791 +g291134 +S'A Deathbed Scene [recto]' +p338792 +sg291137 +S'Polidoro da Caravaggio' +p338793 +sg291130 +S'red chalk on laid paper' +p338794 +sg291132 +S'c. 1521/1522' +p338795 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026d6.jpg' +p338796 +sg291136 +g27 +sa(dp338797 +g291134 +S'Woman Seated with a Piece of Cloth [verso]' +p338798 +sg291137 +S'Polidoro da Caravaggio' +p338799 +sg291130 +S'red chalk on laid paper' +p338800 +sg291132 +S'c. 1521/1522' +p338801 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026d7.jpg' +p338802 +sg291136 +g27 +sa(dp338803 +g291134 +S'Landscape with the Baptism of Christ' +p338804 +sg291137 +S'Pieter Cornelisz Kunst' +p338805 +sg291130 +S', c. 1530' +p338806 +sg291132 +S'\n' +p338807 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a0002561.jpg' +p338808 +sg291136 +g27 +sa(dp338809 +g291130 +S'sheet: 41 x 29.5 cm (16 1/8 x 11 5/8 in.)' +p338810 +sg291132 +S'\nchiaroscuro woodcut printed from four blocks: black line block and three red-brown tone blocks' +p338811 +sg291134 +S'Presentation in the Temple' +p338812 +sg291136 +g27 +sg291137 +S'Italian 16th Century' +p338813 +sa(dp338814 +g291130 +S'woodcut in black on japan paper' +p338815 +sg291132 +S'1913' +p338816 +sg291134 +S'Young Woman (Junges M\xc3\xa4dchen)' +p338817 +sg291136 +g27 +sg291137 +S'Erich Heckel' +p338818 +sa(dp338819 +g291134 +S'Portrait of a Bearded Man with a Beret' +p338820 +sg291137 +S'Heinrich Aldegrever' +p338821 +sg291130 +S'colored chalks on laid paper; laid down' +p338822 +sg291132 +S'c. 1540' +p338823 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a0002224.jpg' +p338824 +sg291136 +g27 +sa(dp338825 +g291134 +S'David and Bathsheba' +p338826 +sg291137 +S'Virgil Solis' +p338827 +sg291130 +S'pen and black ink and gray wash on laid paper' +p338828 +sg291132 +S'1540/1550' +p338829 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a0002855.jpg' +p338830 +sg291136 +g27 +sa(dp338831 +g291130 +S', published 1568' +p338832 +sg291132 +S'\n' +p338833 +sg291134 +S"Vita de' gran Michelagnolo Buonarroti" +p338834 +sg291136 +g27 +sg291137 +S'Giorgio Vasari' +p338835 +sa(dp338836 +g291134 +S'Portrait of a Member of the Quaratesi Family' +p338837 +sg291137 +S'French 16th Century' +p338838 +sg291130 +S'overall: 103.5 x 87 cm (40 3/4 x 34 1/4 in.)\r\nframed: 129.5 x 113.7 x 6.4 cm (51 x 44 3/4 x 2 1/2 in.)' +p338839 +sg291132 +S'\noil on probably oak' +p338840 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005ad1.jpg' +p338841 +sg291136 +g27 +sa(dp338842 +g291134 +S'Winter Landscape with Skaters' +p338843 +sg291137 +S'Hans Bol' +p338844 +sg291130 +S'pen and brown ink and wash on laid paper' +p338845 +sg291132 +S'c. 1584/1586' +p338846 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022b7.jpg' +p338847 +sg291136 +g27 +sa(dp338848 +g291134 +S'Christ Crucified' +p338849 +sg291137 +S'Giovanni Bologna' +p338850 +sg291130 +S'bronze' +p338851 +sg291132 +S'probably before 1588' +p338852 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002ae8.jpg' +p338853 +sg291136 +g27 +sa(dp338854 +g291134 +S'Landscape with Figures by an Estuary with Sailing Boats' +p338855 +sg291137 +S'Annibale Carracci' +p338856 +sg291130 +S'pen and brown ink on laid paper; laid down' +p338857 +sg291132 +S'c. 1590/1595' +p338858 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00031/a00031a6.jpg' +p338859 +sg291136 +g27 +sa(dp338860 +g291130 +S'overall: 28.1 x 29 x 6.8 cm (11 1/16 x 11 7/16 x 2 11/16 in.)\r\naccessory size: 2 x 24.7 x 11.4 cm (13/16 x 9 3/4 x 4 1/2 in.)' +p338861 +sg291132 +S'\nbronze' +p338862 +sg291134 +S'Striding Stag' +p338863 +sg291136 +g27 +sg291137 +S'South German 16th Century' +p338864 +sa(dp338865 +g291134 +S'Lamentation' +p338866 +sg291137 +S'Jacopo Palma il Giovane' +p338867 +sg291130 +S'oil on canvas' +p338868 +sg291132 +S'c. 1620' +p338869 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00008/a000081a.jpg' +p338870 +sg291136 +g27 +sa(dp338871 +g291134 +S'Diana and Endymion' +p338872 +sg291137 +S'Luca Giordano' +p338873 +sg291130 +S'oil on canvas' +p338874 +sg291132 +S'c. 1675/1680' +p338875 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00006/a000060a.jpg' +p338876 +sg291136 +g27 +sa(dp338877 +g291134 +S'Inleyding tot de Hooge Schoole de Schilderkonst (Introduction to the Noble School of Painting)' +p338878 +sg291137 +S'Samuel van Hoogstraten' +p338879 +sg291130 +S'1 vol: ill: 20 etchings and engravings' +p338880 +sg291132 +S'published 1678' +p338881 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d53.jpg' +p338882 +sg291136 +g27 +sa(dp338883 +g291134 +S'The March of Silenus [recto]' +p338884 +sg291137 +S'Antoine Watteau' +p338885 +sg291130 +S'red, black, and white chalks on brown laid paper' +p338886 +sg291132 +S'c. 1715/1716' +p338887 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a00028e6.jpg' +p338888 +sg291136 +g27 +sa(dp338889 +g291134 +S'Figure Sketches and a Copy After a Sculpted Head [verso]' +p338890 +sg291137 +S'Antoine Watteau' +p338891 +sg291130 +S'red chalk on brown laid paper, the sculpted head likely not by Watteau' +p338892 +sg291132 +S'c. 1715/1716' +p338893 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cf0.jpg' +p338894 +sg291136 +g27 +sa(dp338895 +g291134 +S'La malheureuse famille Calas (The Unfortunate Calas Family)' +p338896 +sg291137 +S'Artist Information (' +p338897 +sg291130 +S'(artist after)' +p338898 +sg291132 +S'\n' +p338899 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00096/a00096ce.jpg' +p338900 +sg291136 +g27 +sa(dp338901 +g291134 +S'Head of a Gentleman [recto]' +p338902 +sg291137 +S'Joseph Ducreux' +p338903 +sg291130 +S'red, black, and white chalks with stumping on brown paper' +p338904 +sg291132 +S'1770/1780' +p338905 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d31.jpg' +p338906 +sg291136 +g27 +sa(dp338907 +g291130 +S'red and black chalks with stumping on brown paper' +p338908 +sg291132 +S'1770/1780' +p338909 +sg291134 +S'Head of a Gentleman [verso]' +p338910 +sg291136 +g27 +sg291137 +S'Joseph Ducreux' +p338911 +sa(dp338912 +g291134 +S'Antoine Coypel and His Son' +p338913 +sg291137 +S'Artist Information (' +p338914 +sg291130 +S'(artist after)' +p338915 +sg291132 +S'\n' +p338916 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ea3.jpg' +p338917 +sg291136 +g27 +sa(dp338918 +g291134 +S'Joseph Parrocel' +p338919 +sg291137 +S'Artist Information (' +p338920 +sg291130 +S'(artist after)' +p338921 +sg291132 +S'\n' +p338922 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b370.jpg' +p338923 +sg291136 +g27 +sa(dp338924 +g291134 +S'Louis Tocque' +p338925 +sg291137 +S'Artist Information (' +p338926 +sg291130 +S'(artist after)' +p338927 +sg291132 +S'\n' +p338928 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f57.jpg' +p338929 +sg291136 +g27 +sa(dp338930 +g291134 +S'Francois Verdier' +p338931 +sg291137 +S'Artist Information (' +p338932 +sg291130 +S'(artist after)' +p338933 +sg291132 +S'\n' +p338934 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e9d.jpg' +p338935 +sg291136 +g27 +sa(dp338936 +g291134 +S'Joseph Vernet' +p338937 +sg291137 +S'Artist Information (' +p338938 +sg291130 +S'(artist after)' +p338939 +sg291132 +S'\n' +p338940 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f5b.jpg' +p338941 +sg291136 +g27 +sa(dp338942 +g291134 +S'Nicholas Boileau' +p338943 +sg291137 +S'Artist Information (' +p338944 +sg291130 +S'(artist after)' +p338945 +sg291132 +S'\n' +p338946 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008f/a0008f53.jpg' +p338947 +sg291136 +g27 +sa(dp338948 +g291134 +S'Pierre Louis Moreau de Maupertuis' +p338949 +sg291137 +S'Artist Information (' +p338950 +sg291130 +S'(artist after)' +p338951 +sg291132 +S'\n' +p338952 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00096/a00096bd.jpg' +p338953 +sg291136 +g27 +sa(dp338954 +g291134 +S'A Young Man with a Staff' +p338955 +sg291137 +S'Giovanni Battista Piranesi' +p338956 +sg291130 +S'pen and brown ink with brown wash on laid paper' +p338957 +sg291132 +S'c. 1765' +p338958 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026d3.jpg' +p338959 +sg291136 +g27 +sa(dp338960 +g291130 +S'watercolor, graphite, and charcoal on wove paper' +p338961 +sg291132 +S'1803' +p338962 +sg291134 +S'The Death of Saint Joseph' +p338963 +sg291136 +g27 +sg291137 +S'William Blake' +p338964 +sa(dp338965 +g291130 +S', published 1869' +p338966 +sg291132 +S'\n' +p338967 +sg291134 +S'Sonnets et Eaux-Fortes (Sonnets and Etchings)' +p338968 +sg291136 +g27 +sg291137 +S'Alphonse Lemerre' +p338969 +sa(dp338970 +g291130 +S'etching on laid paper (facing _La Mer_ by Jean Aicard)' +p338971 +sg291132 +S'in or before 1869' +p338972 +sg291134 +S'La Mer (The Sea)' +p338973 +sg291136 +g27 +sg291137 +S'L\xc3\xa9on Gaucherel' +p338974 +sa(dp338975 +g291130 +S'etching in black on laid paper (facing _La Pivoine_ by Judith Mendes)' +p338976 +sg291132 +S'in or before 1869' +p338977 +sg291134 +S'La Pivoine (The Peony)' +p338978 +sg291136 +g27 +sg291137 +S'Jules-Ferdinand Jacquemart' +p338979 +sa(dp338980 +g291130 +S'etching in black on laid paper (facing _Le Masque_ by Autran)' +p338981 +sg291132 +S'in or before 1869' +p338982 +sg291134 +S'Le Masque (The Mask)' +p338983 +sg291136 +g27 +sg291137 +S'Emile Levy' +p338984 +sa(dp338985 +g291130 +S'etching in black on laid paper (facing _Theodora_ by Catulle Mendes)' +p338986 +sg291132 +S'in or before 1869' +p338987 +sg291134 +S'Theodora' +p338988 +sg291136 +g27 +sg291137 +S'Ingomar Frankel' +p338989 +sa(dp338990 +g291130 +S'etching in black on laid paper (facing _Promenade Galante_ by Theodore de Banville)' +p338991 +sg291132 +S'in or before 1869' +p338992 +sg291134 +S'Promenade Galante (Galant Walk)' +p338993 +sg291136 +g27 +sg291137 +S'Edmond Morin' +p338994 +sa(dp338995 +g291134 +S'Composition de F. Millet (Composition by F. Millet)' +p338996 +sg291137 +S'Jean-Fran\xc3\xa7ois Millet' +p338997 +sg291130 +S'etching in black on laid paper (facing _Composition de F. Millet_ by Albert Merat)' +p338998 +sg291132 +S'in or before 1869' +p338999 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f63.jpg' +p339000 +sg291136 +g27 +sa(dp339001 +g291130 +S'etching in black on laid paper (facing _To Kaaon_ by Auguste Barbier)' +p339002 +sg291132 +S'in or before 1869' +p339003 +sg291134 +S'To Kaaon' +p339004 +sg291136 +g27 +sg291137 +S'Felix-Henri Giacomotti' +p339005 +sa(dp339006 +g291134 +S"L'Eclair (Lightning)" +p339007 +sg291137 +S'Victor Hugo' +p339008 +sg291130 +S"etching in black on laid paper (facing _L'Eclair_ by Paul Meurice)" +p339009 +sg291132 +S'1868' +p339010 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f42.jpg' +p339011 +sg291136 +g27 +sa(dp339012 +g291130 +S'etching in black on laid paper (facing _Le Sang des Geants_ by Louis Bouilhet)' +p339013 +sg291132 +S'in or before 1869' +p339014 +sg291134 +S'Le Sang des Geants (The Blood of Giants)' +p339015 +sg291136 +g27 +sg291137 +S'C\xc3\xa9lestin Nanteuil' +p339016 +sa(dp339017 +g291130 +S'etching in black on laid paper (facing _Le DernierAmour de Charlemagne_ by Claudius Popelin)' +p339018 +sg291132 +S'in or before 1869' +p339019 +sg291134 +S'Le Dernier Amour de Charlemagne (The Last Love of Charlemagne)' +p339020 +sg291136 +g27 +sg291137 +S'Francois Emile Ehrmann' +p339021 +sa(dp339022 +g291130 +S'etching in black on laid paper (facing _Le Sphinx_ by Henri Cazalis)' +p339023 +sg291132 +S'in or before 1869' +p339024 +sg291134 +S'Le Sphinx (The Sphinx)' +p339025 +sg291136 +g27 +sg291137 +S'Armand Queyroy' +p339026 +sa(dp339027 +g291134 +S'Fleur Exotique (Exotic Flower)' +p339028 +sg291137 +S'Edouard Manet' +p339029 +sg291130 +S'etching and aquatint in black on laid paper (facing _Fleur Exotique_ by Armand Renaud)' +p339030 +sg291132 +S'in or before 1869' +p339031 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f57.jpg' +p339032 +sg291136 +g27 +sa(dp339033 +g291130 +S'etching in black on laid paper (facing _Le Lion_ by Leon Cladel)' +p339034 +sg291132 +S'in or before 1869' +p339035 +sg291134 +S'Le Lion (The Lion)' +p339036 +sg291136 +g27 +sg291137 +S'Gustave Dor\xc3\xa9' +p339037 +sa(dp339038 +g291130 +S'etching in black on laid paper (facing _Theroigne de Merincourt_ by Louis-Xavier de Ricard)' +p339039 +sg291132 +S'in or before 1869' +p339040 +sg291134 +S'Theroigne de Merincourt' +p339041 +sg291136 +g27 +sg291137 +S'Victor Giraud' +p339042 +sa(dp339043 +g291130 +S'etching in black on laid paper (facing _Le Fils de Louis XI_ by Francois Coppee)' +p339044 +sg291132 +S'in or before 1869' +p339045 +sg291134 +S'Le Fils de Louis XI (The Son of Louis XI)' +p339046 +sg291136 +g27 +sg291137 +S'Charles Courtry' +p339047 +sa(dp339048 +g291130 +S'etching in black on laid paper (facing _Le Pont des Arts_ by Sainte-Beuve)' +p339049 +sg291132 +S'in or before 1869' +p339050 +sg291134 +S'Le Pont des Arts (The Bridge of the Arts)' +p339051 +sg291136 +g27 +sg291137 +S'Maxime Lalanne' +p339052 +sa(dp339053 +g291130 +S"etching in black on laid paper (facing _La Supplice de Judas dans L'Enfer_ by Antoni Deschamps)" +p339054 +sg291132 +S'in or before 1869' +p339055 +sg291134 +S"Supplice de Judas dans L'Enfer (The Agony of Judas in Hell)" +p339056 +sg291136 +g27 +sg291137 +S'Jules Jacques Veyrassat' +p339057 +sa(dp339058 +g291130 +S'etching in black on laid paper (facing _Une Grande Douleur_ by Josephin Soulary)' +p339059 +sg291132 +S'in or before 1869' +p339060 +sg291134 +S'Une Grande Douleur (Sorrow)' +p339061 +sg291136 +g27 +sg291137 +S'Augustin Th\xc3\xa9odule Ribot' +p339062 +sa(dp339063 +g291130 +S'etching in black on laid paper (facing _Dernier Mirage_ by Emile Deschamps)' +p339064 +sg291132 +S'in or before 1869' +p339065 +sg291134 +S'Dernier Mirage (The Last Mirage)' +p339066 +sg291136 +g27 +sg291137 +S'Joseph Victor Ranvier' +p339067 +sa(dp339068 +g291130 +S'etching in black on laid paper (facing _Silence et Nuit des Bois_ by Sully Prudhomme)' +p339069 +sg291132 +S'in or before 1869' +p339070 +sg291134 +S'Silence et Nuit des Bois (Silence and Night in the Forest)' +p339071 +sg291136 +g27 +sg291137 +S'Edmond Hedouin' +p339072 +sa(dp339073 +g291130 +S'etching in black on laid paper (facing _Revolte_ by Leon Dierx)' +p339074 +sg291132 +S'in or before 1869' +p339075 +sg291134 +S'R\xc3\xa9volte (Revolt)' +p339076 +sg291136 +g27 +sg291137 +S'George Howard, 9th earl of Carlisle' +p339077 +sa(dp339078 +g291130 +S'etching in black on laid paper (facing _Nenuphars_ by Armand Silvestre)' +p339079 +sg291132 +S'in or before 1869' +p339080 +sg291134 +S'Nenuphars (Waterlilies)' +p339081 +sg291136 +g27 +sg291137 +S'Francois-Nicolas Auguste Feyen-Perrin' +p339082 +sa(dp339083 +g291130 +S'etching in black on laid paper (facing _Les Incroyables_ by Emmanuel des Essarts)' +p339084 +sg291132 +S'in or before 1869' +p339085 +sg291134 +S'Les Incroyables (The Dandies)' +p339086 +sg291136 +g27 +sg291137 +S'Gustave Adolphe Jundt' +p339087 +sa(dp339088 +g291130 +S'etching in black on laid paper (facing _Souvenir du Bas-Breau_ by Andre Theuriet)' +p339089 +sg291132 +S'1868' +p339090 +sg291134 +S'Souvenir du Bas-Breau (Souvenir from Bas-Breaux)' +p339091 +sg291136 +g27 +sg291137 +S'Jules Michelin' +p339092 +sa(dp339093 +g291130 +S'etching in black on laid paper (facing _Un Senateur Romain_ by Anatole France)' +p339094 +sg291132 +S'in or before 1869' +p339095 +sg291134 +S'Un Senateur Romain (A Roman Senator)' +p339096 +sg291136 +g27 +sg291137 +S'Jean-L\xc3\xa9on G\xc3\xa9r\xc3\xb4me' +p339097 +sa(dp339098 +g291130 +S"etching in black on laid paper (facing _L'Eclipse_ by Auguste Vacquerie)" +p339099 +sg291132 +S'in or before 1869' +p339100 +sg291134 +S"L'Eclipse (The Eclipse)" +p339101 +sg291136 +g27 +sg291137 +S'F\xc3\xa9lix Bracquemond' +p339102 +sa(dp339103 +g291130 +S'etching in black on laid paper (facing _Promenade Hors des Murs_ by Theophile Gautier)' +p339104 +sg291132 +S'in or before 1869' +p339105 +sg291134 +S'Promenade Hors des Murs (Walk Outside the Walls)' +p339106 +sg291136 +g27 +sg291137 +S'Henri Leys' +p339107 +sa(dp339108 +g291130 +S'French, 1835 - 1913' +p339109 +sg291132 +S'(artist after)' +p339110 +sg291134 +S'La Chute (The Fall)' +p339111 +sg291136 +g27 +sg291137 +S'Artist Information (' +p339112 +sa(dp339113 +g291130 +S'etching in black on laid paper (facing _Le Roman Comique_ by Albert Glatigny)' +p339114 +sg291132 +S'in or before 1869' +p339115 +sg291134 +S'Le Roman Comique (The Comic Novel)' +p339116 +sg291136 +g27 +sg291137 +S'Felix R\xc3\xa9gamey' +p339117 +sa(dp339118 +g291130 +S'etching in black on laid paper (facing _Le Pitre_ by Paul Verlaine)' +p339119 +sg291132 +S'in or before 1869' +p339120 +sg291134 +S'Le Pitre (The Clown)' +p339121 +sg291136 +g27 +sg291137 +S'Paul Adolphe Rajon' +p339122 +sa(dp339123 +g291130 +S'etching in black on laid paper (facing _La Sulina_ by Edouard Grenier)' +p339124 +sg291132 +S'1868' +p339125 +sg291134 +S'La Sulina' +p339126 +sg291136 +g27 +sg291137 +S'Edwin Edwards' +p339127 +sa(dp339128 +g291130 +S'etching in black on laid paper (facing _Apres La Harangue_ by Jean Vireton)' +p339129 +sg291132 +S'in or before 1869' +p339130 +sg291134 +S'Apres La Harangue (After the Speech)' +p339131 +sg291136 +g27 +sg291137 +S'\xc3\x89mile Boilvin' +p339132 +sa(dp339133 +g291130 +S'etching in black on laid paper (facing _Les Conquerants_ by Jose Maria de Heredia)' +p339134 +sg291132 +S'in or before 1869' +p339135 +sg291134 +S'Les Conquerants (The Conquerors)' +p339136 +sg291136 +g27 +sg291137 +S'Claudius Popelin' +p339137 +sa(dp339138 +g291130 +S"etching in black on laid paper (facing _La Rookery_ by Ernest d'Hervilly)" +p339139 +sg291132 +S'in or before 1869' +p339140 +sg291134 +S'La Rookery' +p339141 +sg291136 +g27 +sg291137 +S'Francis Seymour Haden' +p339142 +sa(dp339143 +g291130 +S'etching in black on laid paper (facing _Le Pays Inconnu_ by Arsene Houssaye)' +p339144 +sg291132 +S'in or before 1869' +p339145 +sg291134 +S'Le Pays Inconnu (The Unknown Country)' +p339146 +sg291136 +g27 +sg291137 +S'Tancr\xc3\xa8de Abraham' +p339147 +sa(dp339148 +g291130 +S'(artist after)' +p339149 +sg291132 +S'\n' +p339150 +sg291134 +S'La Fontaine (The Fountain)' +p339151 +sg291136 +g27 +sg291137 +S'Artist Information (' +p339152 +sa(dp339153 +g291130 +S'etching in black on laid paper (facing _Au Bord de Puits_ by Victor de Laprade)' +p339154 +sg291132 +S'in or before 1869' +p339155 +sg291134 +S'Au Bord du Puits (At the Edge of the Well)' +p339156 +sg291136 +g27 +sg291137 +S'Francois-Louis Francais' +p339157 +sa(dp339158 +g291130 +S'etching in black on laid paper (facing _Reverie_ by Laurent-Pichat)' +p339159 +sg291132 +S'in or before 1869' +p339160 +sg291134 +S'Reverie (Dreaming)' +p339161 +sg291136 +g27 +sg291137 +S'Jules Hereau' +p339162 +sa(dp339163 +g291130 +S'etching in black on laid paper (facing _Le Combat Homerique_ by Leonte de Lisle)' +p339164 +sg291132 +S'in or before 1869' +p339165 +sg291134 +S'Le Combat Homerique (Homeric Combat)' +p339166 +sg291136 +g27 +sg291137 +S'Leopold Flameng' +p339167 +sa(dp339168 +g291130 +S'etching in black on laid paper (facing _Paysage Normande_ by Andre Lemoyne)' +p339169 +sg291132 +S'in or before 1869' +p339170 +sg291134 +S'Paysage Normande (Norman Landscape)' +p339171 +sg291136 +g27 +sg291137 +S'Jean-Baptiste-Camille Corot' +p339172 +sa(dp339173 +g291130 +S'(artist after)' +p339174 +sg291132 +S'\n' +p339175 +sg291134 +S'Batavia' +p339176 +sg291136 +g27 +sg291137 +S'Artist Information (' +p339177 +sa(dp339178 +g291130 +S'etching in black on laid paper (facing _Le Verger_ by Gabriel Marc)' +p339179 +sg291132 +S'1868' +p339180 +sg291134 +S'Le Verger (The Orchard)' +p339181 +sg291136 +g27 +sg291137 +S'Charles-Fran\xc3\xa7ois Daubigny' +p339182 +sa(dp339183 +g291130 +S'etching, drypoint, and electric tools, hand-colored with pastel, on red-brown wove paper' +p339184 +sg291132 +S'1979' +p339185 +sg291134 +S'Me in Horn-Rimmed Glasses' +p339186 +sg291136 +g27 +sg291137 +S'Jim Dine' +p339187 +sa(dp339188 +g291134 +S"The Artist's Garden in Argenteuil (A Corner of the Garden with Dahlias)" +p339189 +sg291137 +S'Claude Monet' +p339190 +sg291130 +S'oil on canvas' +p339191 +sg291132 +S'1873' +p339192 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004b/a0004bae.jpg' +p339193 +sg291136 +g27 +sa(dp339194 +g291134 +S'The End (La Fin de Tout)' +p339195 +sg291137 +S'Albert Besnard' +p339196 +sg291130 +S'etching in black touched with red chalk on laid paper' +p339197 +sg291132 +S'1883' +p339198 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d7a.jpg' +p339199 +sg291136 +g27 +sa(dp339200 +g291134 +S'The End (La Fin de Tout)' +p339201 +sg291137 +S'Albert Besnard' +p339202 +sg291130 +S'etching in black on laid paper' +p339203 +sg291132 +S'1883' +p339204 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f094.jpg' +p339205 +sg291136 +g27 +sa(dp339206 +g291134 +S'The Suicide (Le Suicide)' +p339207 +sg291137 +S'Albert Besnard' +p339208 +sg291130 +S'etching in black with plate tone on laid paper' +p339209 +sg291132 +S'c. 1886' +p339210 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009055.jpg' +p339211 +sg291136 +g27 +sa(dp339212 +g291134 +S'The Suicide (Le Suicide)' +p339213 +sg291137 +S'Albert Besnard' +p339214 +sg291130 +S'etching and aquatint in black on laid paper' +p339215 +sg291132 +S'c. 1886' +p339216 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d78.jpg' +p339217 +sg291136 +g27 +sa(dp339218 +g291134 +S'The Dancer of Tanjore (La bayad\xc3\xa8re de Tanjore)' +p339219 +sg291137 +S'Albert Besnard' +p339220 +sg291130 +S'etching in brown-red with plate tone on wove paper' +p339221 +sg291132 +S'1914' +p339222 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009084.jpg' +p339223 +sg291136 +g27 +sa(dp339224 +g291134 +S'The Dancer of Tanjore (La bayad\xc3\xa8re de Tanjore)' +p339225 +sg291137 +S'Albert Besnard' +p339226 +sg291130 +S'etching in red-brown with plate tone on wove paper' +p339227 +sg291132 +S'1914' +p339228 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009085.jpg' +p339229 +sg291136 +g27 +sa(dp339230 +g291134 +S'The Dancer of Tanjore (La bayad\xc3\xa8re de Tanjore)' +p339231 +sg291137 +S'Albert Besnard' +p339232 +sg291130 +S'etching in black on wove paper' +p339233 +sg291132 +S'1914' +p339234 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009087.jpg' +p339235 +sg291136 +g27 +sa(dp339236 +g291134 +S'The Dancer of Tanjore (La bayad\xc3\xa8re de Tanjore)' +p339237 +sg291137 +S'Albert Besnard' +p339238 +sg291130 +S'etching in black on wove paper' +p339239 +sg291132 +S'1914' +p339240 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009083.jpg' +p339241 +sg291136 +g27 +sa(dp339242 +g291134 +S'Queen Elisabeth of Belgium (La Reine \xc3\x89lisabeth de Belgique)' +p339243 +sg291137 +S'Albert Besnard' +p339244 +sg291130 +S'etching in brown-black on laid paper' +p339245 +sg291132 +S'1917' +p339246 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a000908e.jpg' +p339247 +sg291136 +g27 +sa(dp339248 +g291134 +S'Queen Elisabeth of Belgium (La Reine \xc3\x89lisabeth de Belgique)' +p339249 +sg291137 +S'Albert Besnard' +p339250 +sg291130 +S'etching and aquatint in black on laid paper' +p339251 +sg291132 +S'1917' +p339252 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009093.jpg' +p339253 +sg291136 +g27 +sa(dp339254 +g291134 +S'Queen Elisabeth of Belgium (La Reine \xc3\x89lisabeth de Belgique)' +p339255 +sg291137 +S'Albert Besnard' +p339256 +sg291130 +S'etching and aquatint in black on laid paper' +p339257 +sg291132 +S'1917' +p339258 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009092.jpg' +p339259 +sg291136 +g27 +sa(dp339260 +g291134 +S'Queen Elisabeth of Belgium (La Reine \xc3\x89lisabeth de Belgique)' +p339261 +sg291137 +S'Albert Besnard' +p339262 +sg291130 +S'etching and aquatint in brown-black on laid paper' +p339263 +sg291132 +S'1917' +p339264 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a000908f.jpg' +p339265 +sg291136 +g27 +sa(dp339266 +g291134 +S'Pope Benedict XV (Benoit XV)' +p339267 +sg291137 +S'Albert Besnard' +p339268 +sg291130 +S'etching in black on wove paper' +p339269 +sg291132 +S'1917' +p339270 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a00090a3.jpg' +p339271 +sg291136 +g27 +sa(dp339272 +g291134 +S"Gabriele D'Annunzio" +p339273 +sg291137 +S'Albert Besnard' +p339274 +sg291130 +S'etching in black with plate tone on laid paper' +p339275 +sg291132 +S'1917' +p339276 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a00090a4.jpg' +p339277 +sg291136 +g27 +sa(dp339278 +g291134 +S'A Nude Woman in a Fur Wrap' +p339279 +sg291137 +S'Albert Besnard' +p339280 +sg291130 +S'etching in black on cream wove paper (proof impression from an earlier state)' +p339281 +sg291132 +S'unknown date\n' +p339282 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009099.jpg' +p339283 +sg291136 +g27 +sa(dp339284 +g291134 +S'A Nude Woman in a Fur Wrap' +p339285 +sg291137 +S'Albert Besnard' +p339286 +sg291130 +S'etching in black on cream laid paper (proof impression from a later state)' +p339287 +sg291132 +S'unknown date\n' +p339288 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a000909a.jpg' +p339289 +sg291136 +g27 +sa(dp339290 +g291134 +S'By the Lamp (Sous la Lampe)' +p339291 +sg291137 +S'Albert Besnard' +p339292 +sg291130 +S'etching in black on laid paper (proof impression of the first state)' +p339293 +sg291132 +S'c. 1926' +p339294 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a000909c.jpg' +p339295 +sg291136 +g27 +sa(dp339296 +g291134 +S'By the Lamp (Sous la Lampe)' +p339297 +sg291137 +S'Albert Besnard' +p339298 +sg291130 +S'etching in black on laid paper (proof impression of the first state)' +p339299 +sg291132 +S'c. 1926' +p339300 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a00090a1.jpg' +p339301 +sg291136 +g27 +sa(dp339302 +g291134 +S'By the Lamp (Sous la Lampe)' +p339303 +sg291137 +S'Albert Besnard' +p339304 +sg291130 +S'etching in black on laid paper (proof impression of the second? state)' +p339305 +sg291132 +S'c. 1926' +p339306 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a000909e.jpg' +p339307 +sg291136 +g27 +sa(dp339308 +g291134 +S'By the Lamp (Sous la Lampe)' +p339309 +sg291137 +S'Albert Besnard' +p339310 +sg291130 +S"etching in black, touched with white highlight on the child's face, on cream wove paper (proof impression of the second? state)" +p339311 +sg291132 +S'c. 1926' +p339312 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a000909f.jpg' +p339313 +sg291136 +g27 +sa(dp339314 +g291134 +S'By the Lamp (Sous la Lampe)' +p339315 +sg291137 +S'Albert Besnard' +p339316 +sg291130 +S'etching in black on laid paper (proof impression from the cut plate)' +p339317 +sg291132 +S'c. 1926' +p339318 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009096.jpg' +p339319 +sg291136 +g27 +sa(dp339320 +g291134 +S"Baigneuses, gardeuses d'oies (Bathers Tending Geese)" +p339321 +sg291137 +S'Camille Pissarro' +p339322 +sg291130 +S'color etching and drypoint with aquatint' +p339323 +sg291132 +S'c. 1895' +p339324 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f69.jpg' +p339325 +sg291136 +g27 +sa(dp339326 +g291134 +S'Seated Clowness (La Clownesse assise)' +p339327 +sg291137 +S'Artist Information (' +p339328 +sg291130 +S'French, 1858 - 1936' +p339329 +sg291132 +S'(printer)' +p339330 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000fab.jpg' +p339331 +sg291136 +g27 +sa(dp339332 +g291134 +S'Two Women on the Shore (Frauen am Meeresufer)' +p339333 +sg291137 +S'Edvard Munch' +p339334 +sg291130 +S'woodcut in blue, green, black, and ocher with green crayon on japan paper' +p339335 +sg291132 +S'1898' +p339336 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022e9.jpg' +p339337 +sg291136 +g27 +sa(dp339338 +g291130 +S'woodcut in black, green, and red on japan paper' +p339339 +sg291132 +S'1899' +p339340 +sg291134 +S'Girl with the Heart (Das Madchen und das Herz)' +p339341 +sg291136 +g27 +sg291137 +S'Edvard Munch' +p339342 +sa(dp339343 +g291134 +S'Rear Admiral George W. Melville' +p339344 +sg291137 +S'Thomas Eakins' +p339345 +sg291130 +S'oil on canvas' +p339346 +sg291132 +S'1905' +p339347 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00000/a0000095.jpg' +p339348 +sg291136 +g27 +sa(dp339349 +g291134 +S'The Chaperone' +p339350 +sg291137 +S'Thomas Eakins' +p339351 +sg291130 +S'oil on canvas' +p339352 +sg291132 +S'c. 1908' +p339353 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00000/a0000096.jpg' +p339354 +sg291136 +g27 +sa(dp339355 +g291130 +S'charcoal on laid paper' +p339356 +sg291132 +S'1920' +p339357 +sg291134 +S'Head of a Woman' +p339358 +sg291136 +g27 +sg291137 +S'Andr\xc3\xa9 Derain' +p339359 +sa(dp339360 +g291130 +S'graphite on wove paper' +p339361 +sg291132 +S'1927' +p339362 +sg291134 +S'Plums and Pears' +p339363 +sg291136 +g27 +sg291137 +S'Marsden Hartley' +p339364 +sa(dp339365 +g291134 +S'Self-Portrait' +p339366 +sg291137 +S'Egon Schiele' +p339367 +sg291130 +S'bronze' +p339368 +sg291132 +S'c. 1917, cast c. 1925-1928' +p339369 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002df8.jpg' +p339370 +sg291136 +g27 +sa(dp339371 +g291134 +S'Two Women' +p339372 +sg291137 +S'Fernand L\xc3\xa9ger' +p339373 +sg291130 +S'oil on canvas' +p339374 +sg291132 +S'1922' +p339375 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f38.jpg' +p339376 +sg291136 +S"Fernand Léger originated a distinct\r\n cubist style in the twentieth century. In\r\n the early 1920s he both embraced and\r\n influenced the aesthetic of Purism as\r\n espoused by his friends Le Corbusier\r\n and Amedée Ozenfant. The clean, geometric\r\n forms of mechanized industry\r\n and mass production were prized as the\r\n harbingers of a renewed social and aesthetic\r\n order. Many of Léger's paintings\r\n took mechanical devices as their subject,\r\n and all of his paintings were\r\n informed by a style of cool precision\r\n and exacting workmanship. \n Women occupied a traditional place\r\n within Léger's ideal new order. Counterpoints\r\n to the urban world of industry\r\n and work, Léger's many depictions\r\n of women embody a domestic realm\r\n of tranquility and leisure.1 He treated\r\n his depictions of women no differently\r\n than the most austere mechanical form:\r\n edges are sharp, colors are distinct, and\r\n modeling follows a conspicuously\r\n stylized formula.\n Léger often produced more than\r\n one version of his important compositions,\r\n and \n \n The first major work by Léger to\r\n enter the National Gallery collection,\r\n \n " +p339377 +sa(dp339378 +g291134 +S'Gr\xc3\xbcne Pflanzen Blutlaus (Green Plant-Blood-Louse)' +p339379 +sg291137 +S'Paul Klee' +p339380 +sg291130 +S"watercolor with pen and black ink on gessoed cloth, on Klee's original mount" +p339381 +sg291132 +S'1924' +p339382 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00021/a0002175.jpg' +p339383 +sg291136 +g27 +sa(dp339384 +g291130 +S'lead' +p339385 +sg291132 +S'1930-1938' +p339386 +sg291134 +S'The Three Nymphs' +p339387 +sg291136 +g27 +sg291137 +S'Aristide Maillol' +p339388 +sa(dp339389 +g291130 +S'marble, wood, and bronze' +p339390 +sg291132 +S'1931-1932' +p339391 +sg291134 +S'No More Play' +p339392 +sg291136 +g27 +sg291137 +S'Alberto Giacometti' +p339393 +sa(dp339394 +g291130 +S'gelatin silver print' +p339395 +sg291132 +S'1936' +p339396 +sg291134 +S'Dunes, Oceano' +p339397 +sg291136 +g27 +sg291137 +S'Edward Weston' +p339398 +sa(dp339399 +g291134 +S'Interior' +p339400 +sg291137 +S'Horace Pippin' +p339401 +sg291130 +S'oil on canvas' +p339402 +sg291132 +S'1944' +p339403 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a00001c0.jpg' +p339404 +sg291136 +S'Interior\n ' +p339405 +sa(dp339406 +g291134 +S'Virginia Landscape' +p339407 +sg291137 +S'Arshile Gorky' +p339408 +sg291130 +S'graphite and wax crayon on wove paper' +p339409 +sg291132 +S'1944' +p339410 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00008/a00008e8.jpg' +p339411 +sg291136 +g27 +sa(dp339412 +g291130 +S'oil on canvas board' +p339413 +sg291132 +S'1945' +p339414 +sg291134 +S'Personnage' +p339415 +sg291136 +g27 +sg291137 +S'Robert Motherwell' +p339416 +sa(dp339417 +g291134 +S'Untitled' +p339418 +sg291137 +S'Isamu Noguchi' +p339419 +sg291130 +S'wood' +p339420 +sg291132 +S'1945' +p339421 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a000169a.jpg' +p339422 +sg291136 +g27 +sa(dp339423 +g291134 +S'Young Woman in a Striped Blouse' +p339424 +sg291137 +S'Pablo Picasso' +p339425 +sg291130 +S'lithograph in black on wove paper' +p339426 +sg291132 +S'1949' +p339427 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e2a.jpg' +p339428 +sg291136 +g27 +sa(dp339429 +g291134 +S'Counterpoint' +p339430 +sg291137 +S'Charles Sheeler' +p339431 +sg291130 +S'cont? crayon on wove paper' +p339432 +sg291132 +S'1949' +p339433 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009ca.jpg' +p339434 +sg291136 +g27 +sa(dp339435 +g291130 +S'graphite on wove paper' +p339436 +sg291132 +S'1950' +p339437 +sg291134 +S'The Table before the Dormer Window' +p339438 +sg291136 +g27 +sg291137 +S'Alberto Giacometti' +p339439 +sa(dp339440 +g291130 +S'sketchbook with 29 drawings in various media (29 leaves)' +p339441 +sg291132 +S'1951' +p339442 +sg291134 +S'Marin Sketchbook' +p339443 +sg291136 +g27 +sg291137 +S'John Marin' +p339444 +sa(dp339445 +g291130 +S'watercolor and graphite on wove paper' +p339446 +sg291132 +S'1951' +p339447 +sg291134 +S'Centerville, Maine' +p339448 +sg291136 +g27 +sg291137 +S'John Marin' +p339449 +sa(dp339450 +g291130 +S'watercolor and blue felt tip pen on wove paper' +p339451 +sg291132 +S'1951' +p339452 +sg291134 +S'Cattle Stream, St. Johns River Country' +p339453 +sg291136 +g27 +sg291137 +S'John Marin' +p339454 +sa(dp339455 +g291130 +S'watercolor and graphite on wove paper' +p339456 +sg291132 +S'1951' +p339457 +sg291134 +S'From Sheep Island, Maine' +p339458 +sg291136 +g27 +sg291137 +S'John Marin' +p339459 +sa(dp339460 +g291130 +S'blue felt tip pen on wove paper' +p339461 +sg291132 +S'1951' +p339462 +sg291134 +S'Old Church, St. Andrews, New Brunswick, Canada' +p339463 +sg291136 +g27 +sg291137 +S'John Marin' +p339464 +sa(dp339465 +g291130 +S'watercolor and graphite on wove paper' +p339466 +sg291132 +S'1951' +p339467 +sg291134 +S'Near Calais, Maine' +p339468 +sg291136 +g27 +sg291137 +S'John Marin' +p339469 +sa(dp339470 +g291130 +S'graphite on wove paper' +p339471 +sg291132 +S'1951' +p339472 +sg291134 +S'Old Church, Newburyport, Massachusetts' +p339473 +sg291136 +g27 +sg291137 +S'John Marin' +p339474 +sa(dp339475 +g291130 +S'watercolor and graphite on wove paper' +p339476 +sg291132 +S'1951' +p339477 +sg291134 +S'Near St. Stephens, New Brunswick, Canada' +p339478 +sg291136 +g27 +sg291137 +S'John Marin' +p339479 +sa(dp339480 +g291130 +S'watercolor and graphite on wove paper' +p339481 +sg291132 +S'1951' +p339482 +sg291134 +S"Ship's Stern Island, Maine" +p339483 +sg291136 +g27 +sg291137 +S'John Marin' +p339484 +sa(dp339485 +g291130 +S'graphite on wove paper' +p339486 +sg291132 +S'1951' +p339487 +sg291134 +S"Ship's Stern Island, Maine" +p339488 +sg291136 +g27 +sg291137 +S'John Marin' +p339489 +sa(dp339490 +g291130 +S'graphite on wove paper' +p339491 +sg291132 +S'1951' +p339492 +sg291134 +S'Movement, Machais River, Maine' +p339493 +sg291136 +g27 +sg291137 +S'John Marin' +p339494 +sa(dp339495 +g291130 +S'watercolor and graphite on wove paper' +p339496 +sg291132 +S'1951' +p339497 +sg291134 +S'Saco Falls, Maine' +p339498 +sg291136 +g27 +sg291137 +S'John Marin' +p339499 +sa(dp339500 +g291130 +S'watercolor and graphite on wove paper' +p339501 +sg291132 +S'1951' +p339502 +sg291134 +S'Machais, Maine' +p339503 +sg291136 +g27 +sg291137 +S'John Marin' +p339504 +sa(dp339505 +g291130 +S'watercolor and graphite on wove paper' +p339506 +sg291132 +S'1951' +p339507 +sg291134 +S'St. Johns, New Brunswick, Canada' +p339508 +sg291136 +g27 +sg291137 +S'John Marin' +p339509 +sa(dp339510 +g291130 +S'graphite on wove paper' +p339511 +sg291132 +S'1951' +p339512 +sg291134 +S'St. Johns, New Brunswick, Canada' +p339513 +sg291136 +g27 +sg291137 +S'John Marin' +p339514 +sa(dp339515 +g291130 +S'graphite on wove paper' +p339516 +sg291132 +S'1951' +p339517 +sg291134 +S'St. Johns, New Brunswick, Canada' +p339518 +sg291136 +g27 +sg291137 +S'John Marin' +p339519 +sa(dp339520 +g291130 +S'blue felt tip pen on wove paper' +p339521 +sg291132 +S'1951' +p339522 +sg291134 +S'St. Johns, New Brunswick, Canada' +p339523 +sg291136 +g27 +sg291137 +S'John Marin' +p339524 +sa(dp339525 +g291130 +S'graphite on wove paper' +p339526 +sg291132 +S'1951' +p339527 +sg291134 +S'St. Johns, New Brunswick, Canada' +p339528 +sg291136 +g27 +sg291137 +S'John Marin' +p339529 +sa(dp339530 +g291130 +S'graphite on wove paper' +p339531 +sg291132 +S'1951' +p339532 +sg291134 +S'St. Johns, New Brunswick, Canada' +p339533 +sg291136 +g27 +sg291137 +S'John Marin' +p339534 +sa(dp339535 +g291130 +S'graphite on wove paper' +p339536 +sg291132 +S'1951' +p339537 +sg291134 +S'First Landing in St. Johns, New Brunswick' +p339538 +sg291136 +g27 +sg291137 +S'John Marin' +p339539 +sa(dp339540 +g291130 +S'graphite on wove paper' +p339541 +sg291132 +S'1951' +p339542 +sg291134 +S'St. Johns, New Brunswick, Canada' +p339543 +sg291136 +g27 +sg291137 +S'John Marin' +p339544 +sa(dp339545 +g291130 +S'graphite on wove paper' +p339546 +sg291132 +S'1951' +p339547 +sg291134 +S'St. Johns, New Brunswick, Canada' +p339548 +sg291136 +g27 +sg291137 +S'John Marin' +p339549 +sa(dp339550 +g291130 +S'watercolor and graphite on wove paper' +p339551 +sg291132 +S'1951' +p339552 +sg291134 +S'St. Johns River, New Brunswick, Canada' +p339553 +sg291136 +g27 +sg291137 +S'John Marin' +p339554 +sa(dp339555 +g291130 +S'graphite on wove paper' +p339556 +sg291132 +S'1951' +p339557 +sg291134 +S'St. Johns River, New Brunswick, Canada' +p339558 +sg291136 +g27 +sg291137 +S'John Marin' +p339559 +sa(dp339560 +g291130 +S'graphite on wove paper' +p339561 +sg291132 +S'1951' +p339562 +sg291134 +S'St. Johns River, New Brunswick, Canada' +p339563 +sg291136 +g27 +sg291137 +S'John Marin' +p339564 +sa(dp339565 +g291130 +S'graphite on wove paper' +p339566 +sg291132 +S'1951' +p339567 +sg291134 +S'St. Johns River, New Brunswick, Canada' +p339568 +sg291136 +g27 +sg291137 +S'John Marin' +p339569 +sa(dp339570 +g291130 +S'blue felt tip pen on wove paper' +p339571 +sg291132 +S'1951' +p339572 +sg291134 +S'St. Johns River, New Brunswick, Canada' +p339573 +sg291136 +g27 +sg291137 +S'John Marin' +p339574 +sa(dp339575 +g291130 +S'blue felt tip pen on wove paper' +p339576 +sg291132 +S'1951' +p339577 +sg291134 +S'St. Johns River Country, New Brunswick, Canada' +p339578 +sg291136 +g27 +sg291137 +S'John Marin' +p339579 +sa(dp339580 +g291130 +S'blue felt tip pen on wove paper' +p339581 +sg291132 +S'1951' +p339582 +sg291134 +S'St. Johns River, New Brunswick, Canada' +p339583 +sg291136 +g27 +sg291137 +S'John Marin' +p339584 +sa(dp339585 +g291130 +S'blue felt tip pen on wove paper' +p339586 +sg291132 +S'1951' +p339587 +sg291134 +S'St. Johns River Country, New Brunswick, Canada' +p339588 +sg291136 +g27 +sg291137 +S'John Marin' +p339589 +sa(dp339590 +g291130 +S'sketchbook with 12 drawings in various media (20 leaves)' +p339591 +sg291132 +S'1952' +p339592 +sg291134 +S'Marin Sketchbook' +p339593 +sg291136 +g27 +sg291137 +S'John Marin' +p339594 +sa(dp339595 +g291130 +S'watercolor and graphite on wove paper' +p339596 +sg291132 +S'1952' +p339597 +sg291134 +S'Sunset, Maine' +p339598 +sg291136 +g27 +sg291137 +S'John Marin' +p339599 +sa(dp339600 +g291130 +S'watercolor and graphite on wove paper' +p339601 +sg291132 +S'1952' +p339602 +sg291134 +S'Sunset, Maine' +p339603 +sg291136 +g27 +sg291137 +S'John Marin' +p339604 +sa(dp339605 +g291130 +S'watercolor and graphite on wove paper' +p339606 +sg291132 +S'1952' +p339607 +sg291134 +S'Sunset, Maine' +p339608 +sg291136 +g27 +sg291137 +S'John Marin' +p339609 +sa(dp339610 +g291130 +S'colored pencil and graphite on wove paper' +p339611 +sg291132 +S'1952' +p339612 +sg291134 +S'Shoreline' +p339613 +sg291136 +g27 +sg291137 +S'John Marin' +p339614 +sa(dp339615 +g291130 +S'watercolor and graphite on wove paper' +p339616 +sg291132 +S'1952' +p339617 +sg291134 +S"Yawl in Full Sail off Norton's Island, Maine" +p339618 +sg291136 +g27 +sg291137 +S'John Marin' +p339619 +sa(dp339620 +g291130 +S'graphite on wove paper on separate sheet laid down on sketchbook page' +p339621 +sg291132 +S'1952' +p339622 +sg291134 +S'Lubec, Maine' +p339623 +sg291136 +g27 +sg291137 +S'John Marin' +p339624 +sa(dp339625 +g291130 +S'graphite on wove paper' +p339626 +sg291132 +S'1952' +p339627 +sg291134 +S'Prospect Harbor, Maine' +p339628 +sg291136 +g27 +sg291137 +S'John Marin' +p339629 +sa(dp339630 +g291130 +S'graphite on wove paper' +p339631 +sg291132 +S'1952' +p339632 +sg291134 +S'Saco Falls, Maine' +p339633 +sg291136 +g27 +sg291137 +S'John Marin' +p339634 +sa(dp339635 +g291130 +S'watercolor and graphite on wove paper' +p339636 +sg291132 +S'1952' +p339637 +sg291134 +S'Tunk Mountains, Maine' +p339638 +sg291136 +g27 +sg291137 +S'John Marin' +p339639 +sa(dp339640 +g291130 +S'watercolor and graphite on wove paper' +p339641 +sg291132 +S'1952' +p339642 +sg291134 +S'Machais, Maine' +p339643 +sg291136 +g27 +sg291137 +S'John Marin' +p339644 +sa(dp339645 +g291130 +S'watercolor and graphite on wove paper' +p339646 +sg291132 +S'1952' +p339647 +sg291134 +S'Autumn Color' +p339648 +sg291136 +g27 +sg291137 +S'John Marin' +p339649 +sa(dp339650 +g291130 +S'watercolor, pen and black ink, and graphite on wove paper' +p339651 +sg291132 +S'1952' +p339652 +sg291134 +S'Autumn Color' +p339653 +sg291136 +g27 +sg291137 +S'John Marin' +p339654 +sa(dp339655 +g291130 +S'graphite on plastic' +p339656 +sg291132 +S'c. 1950' +p339657 +sg291134 +S'Ye Old Dutch Church, Upper Saddle River, New Jersey' +p339658 +sg291136 +g27 +sg291137 +S'John Marin' +p339659 +sa(dp339660 +g291130 +S'graphite on plastic' +p339661 +sg291132 +S'c. 1950' +p339662 +sg291134 +S'Ye Old Dutch Church, Upper Saddle River, New Jersey' +p339663 +sg291136 +g27 +sg291137 +S'John Marin' +p339664 +sa(dp339665 +g291130 +S'graphite on plastic' +p339666 +sg291132 +S'1950' +p339667 +sg291134 +S'Ye Old Dutch Church, Upper Saddle River, New Jersey' +p339668 +sg291136 +g27 +sg291137 +S'John Marin' +p339669 +sa(dp339670 +g291130 +S'graphite on plastic' +p339671 +sg291132 +S'1951' +p339672 +sg291134 +S'Ye Old Dutch Church, Upper Saddle River, New Jersey' +p339673 +sg291136 +g27 +sg291137 +S'John Marin' +p339674 +sa(dp339675 +g291130 +S'graphite on plastic' +p339676 +sg291132 +S'1951' +p339677 +sg291134 +S'Ye Old Dutch Church, Upper Saddle River, New Jersey' +p339678 +sg291136 +g27 +sg291137 +S'John Marin' +p339679 +sa(dp339680 +g291130 +S'graphite on plastic' +p339681 +sg291132 +S'1952' +p339682 +sg291134 +S'Prospect Harbor, Maine' +p339683 +sg291136 +g27 +sg291137 +S'John Marin' +p339684 +sa(dp339685 +g291130 +S'brush and black ink on plastic' +p339686 +sg291132 +S'1952' +p339687 +sg291134 +S'Machias, Maine' +p339688 +sg291136 +g27 +sg291137 +S'John Marin' +p339689 +sa(dp339690 +g291130 +S'graphite on plastic' +p339691 +sg291132 +S'c. 1953' +p339692 +sg291134 +S'Study for "Untitled (Mrs. Marin)" [upper half]' +p339693 +sg291136 +g27 +sg291137 +S'John Marin' +p339694 +sa(dp339695 +g291130 +S'graphite on plastic' +p339696 +sg291132 +S'c. 1953' +p339697 +sg291134 +S'Study for "Untitled (Mrs. Marin)" [lower half]' +p339698 +sg291136 +g27 +sg291137 +S'John Marin' +p339699 +sa(dp339700 +g291130 +S'graphite on plastic' +p339701 +sg291132 +S'unknown date\n' +p339702 +sg291134 +S'New York Skyline' +p339703 +sg291136 +g27 +sg291137 +S'John Marin' +p339704 +sa(dp339705 +g291130 +S'graphite on plastic' +p339706 +sg291132 +S'1951' +p339707 +sg291134 +S'New York Skyline' +p339708 +sg291136 +g27 +sg291137 +S'John Marin' +p339709 +sa(dp339710 +g291130 +S'graphite on plastic' +p339711 +sg291132 +S'1951' +p339712 +sg291134 +S'New York Skyline' +p339713 +sg291136 +g27 +sg291137 +S'John Marin' +p339714 +sa(dp339715 +g291130 +S'graphite on plastic' +p339716 +sg291132 +S'1951' +p339717 +sg291134 +S'New York Skyline' +p339718 +sg291136 +g27 +sg291137 +S'John Marin' +p339719 +sa(dp339720 +g291130 +S'graphite on plastic' +p339721 +sg291132 +S'1951' +p339722 +sg291134 +S'New York Skyline' +p339723 +sg291136 +g27 +sg291137 +S'John Marin' +p339724 +sa(dp339725 +g291130 +S'black chalk on plastic' +p339726 +sg291132 +S'unknown date\n' +p339727 +sg291134 +S'Seascape with Four Figures' +p339728 +sg291136 +g27 +sg291137 +S'John Marin' +p339729 +sa(dp339730 +g291130 +S'black chalk on plastic' +p339731 +sg291132 +S'unknown date\n' +p339732 +sg291134 +S'Seascape with Four Figures' +p339733 +sg291136 +g27 +sg291137 +S'John Marin' +p339734 +sa(dp339735 +g291130 +S'graphite on plastic' +p339736 +sg291132 +S'unknown date\n' +p339737 +sg291134 +S'Seascape with Three Figures' +p339738 +sg291136 +g27 +sg291137 +S'John Marin' +p339739 +sa(dp339740 +g291130 +S'graphite on plastic' +p339741 +sg291132 +S'unknown date\n' +p339742 +sg291134 +S'Seascape with Boat' +p339743 +sg291136 +g27 +sg291137 +S'John Marin' +p339744 +sa(dp339745 +g291130 +S'black chalk on plastic' +p339746 +sg291132 +S'unknown date\n' +p339747 +sg291134 +S'Seascape with Boat' +p339748 +sg291136 +g27 +sg291137 +S'John Marin' +p339749 +sa(dp339750 +g291130 +S'black chalk on plastic' +p339751 +sg291132 +S'unknown date\n' +p339752 +sg291134 +S'Linear Configuration with Birds' +p339753 +sg291136 +g27 +sg291137 +S'John Marin' +p339754 +sa(dp339755 +g291130 +S'black chalk on plastic' +p339756 +sg291132 +S'unknown date\n' +p339757 +sg291134 +S'Linear Configuration with Birds' +p339758 +sg291136 +g27 +sg291137 +S'John Marin' +p339759 +sa(dp339760 +g291130 +S'graphite on plastic' +p339761 +sg291132 +S'unknown date\n' +p339762 +sg291134 +S'Sea with Sailing Vessel' +p339763 +sg291136 +g27 +sg291137 +S'John Marin' +p339764 +sa(dp339765 +g291130 +S'oil over black chalk on plastic' +p339766 +sg291132 +S'unknown date\n' +p339767 +sg291134 +S'Seascape' +p339768 +sg291136 +g27 +sg291137 +S'John Marin' +p339769 +sa(dp339770 +g291130 +S'graphite on plastic' +p339771 +sg291132 +S'unknown date\n' +p339772 +sg291134 +S'Female Heads in Profile' +p339773 +sg291136 +g27 +sg291137 +S'John Marin' +p339774 +sa(dp339775 +g291130 +S'graphite on plastic' +p339776 +sg291132 +S'unknown date\n' +p339777 +sg291134 +S'Female Heads in Profile' +p339778 +sg291136 +g27 +sg291137 +S'John Marin' +p339779 +sa(dp339780 +g291130 +S'graphite on plastic' +p339781 +sg291132 +S'unknown date\n' +p339782 +sg291134 +S'Head in Circular Format' +p339783 +sg291136 +g27 +sg291137 +S'John Marin' +p339784 +sa(dp339785 +g291130 +S'black chalk on plastic' +p339786 +sg291132 +S'unknown date\n' +p339787 +sg291134 +S'Figure Playing a Violin' +p339788 +sg291136 +g27 +sg291137 +S'John Marin' +p339789 +sa(dp339790 +g291130 +S'graphite on plastic' +p339791 +sg291132 +S'unknown date\n' +p339792 +sg291134 +S'Street Scene' +p339793 +sg291136 +g27 +sg291137 +S'John Marin' +p339794 +sa(dp339795 +g291130 +S'gelatin silver print, early 1970s' +p339796 +sg291132 +S'1955' +p339797 +sg291134 +S'Paint Rock Post Office, Alabama' +p339798 +sg291136 +g27 +sg291137 +S'Robert Frank' +p339799 +sa(dp339800 +g291130 +S'gelatin silver print' +p339801 +sg291132 +S'1955' +p339802 +sg291134 +S'Drugstore--Detroit' +p339803 +sg291136 +g27 +sg291137 +S'Robert Frank' +p339804 +sa(dp339805 +g291130 +S'gelatin silver print' +p339806 +sg291132 +S'1961' +p339807 +sg291134 +S'Platte River, Tennessee' +p339808 +sg291136 +g27 +sg291137 +S'Robert Frank' +p339809 +sa(dp339810 +g291134 +S'Mountain and Meadow' +p339811 +sg291137 +S'Milton Avery' +p339812 +sg291130 +S'oil on canvas' +p339813 +sg291132 +S'1960' +p339814 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00000/a0000009.jpg' +p339815 +sg291136 +g27 +sa(dp339816 +g291130 +S'ebony' +p339817 +sg291132 +S'1961' +p339818 +sg291134 +S'Le Jouvenceau' +p339819 +sg291136 +g27 +sg291137 +S'Ossip Zadkine' +p339820 +sa(dp339821 +g291130 +S'ebony' +p339822 +sg291132 +S'1963' +p339823 +sg291134 +S'Torso' +p339824 +sg291136 +g27 +sg291137 +S'Ossip Zadkine' +p339825 +sa(dp339826 +g291134 +S'Glass Case with Pies (Assorted Pies in a Case)' +p339827 +sg291137 +S'Claes Oldenburg' +p339828 +sg291130 +S'burlap soaked in plaster, painted with enamel, with pie tins, in glass-and-metal case' +p339829 +sg291132 +S'1962' +p339830 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a00016a1.jpg' +p339831 +sg291136 +g27 +sa(dp339832 +g291134 +S'Maquette for "Atom Piece"' +p339833 +sg291137 +S'Henry Moore' +p339834 +sg291130 +S'bronze' +p339835 +sg291132 +S'1964, cast 1970' +p339836 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002de8.jpg' +p339837 +sg291136 +g27 +sa(dp339838 +g291130 +S'enamel on canvas' +p339839 +sg291132 +S'1964' +p339840 +sg291134 +S'Untitled' +p339841 +sg291136 +g27 +sg291137 +S'David Smith' +p339842 +sa(dp339843 +g291130 +S'pen and black ink over graphite on laid paper' +p339844 +sg291132 +S'1933' +p339845 +sg291134 +S'Untitled (Virgin Islands)' +p339846 +sg291136 +g27 +sg291137 +S'David Smith' +p339847 +sa(dp339848 +g291130 +S'brush and black ink and gouache on wove paper' +p339849 +sg291132 +S'1951' +p339850 +sg291134 +S'Untitled (Oct 4 1951)' +p339851 +sg291136 +g27 +sg291137 +S'David Smith' +p339852 +sa(dp339853 +g291130 +S'brush and black ink on wove paper' +p339854 +sg291132 +S'1959' +p339855 +sg291134 +S'Untitled (9/3/59)' +p339856 +sg291136 +g27 +sg291137 +S'David Smith' +p339857 +sa(dp339858 +g291130 +S'brush and black ink and egg yolk on laid paper' +p339859 +sg291132 +S'1958' +p339860 +sg291134 +S'Untitled (11-22-58)' +p339861 +sg291136 +g27 +sg291137 +S'David Smith' +p339862 +sa(dp339863 +g291130 +S'black ink with egg yolk, white gouache, and graphite on wove paper' +p339864 +sg291132 +S'1958' +p339865 +sg291134 +S'Untitled (September 13, 1958)' +p339866 +sg291136 +g27 +sg291137 +S'David Smith' +p339867 +sa(dp339868 +g291130 +S'enamel spray paint on wove paper' +p339869 +sg291132 +S'1963' +p339870 +sg291134 +S'Untitled' +p339871 +sg291136 +g27 +sg291137 +S'David Smith' +p339872 +sa(dp339873 +g291130 +S'enamel spray paint on wove paper' +p339874 +sg291132 +S'1962' +p339875 +sg291134 +S'Untitled' +p339876 +sg291136 +g27 +sg291137 +S'David Smith' +p339877 +sa(dp339878 +g291130 +S'offset lithograph in black on wove paper' +p339879 +sg291132 +S'1969' +p339880 +sg291134 +S'Untitled' +p339881 +sg291136 +g27 +sg291137 +S'Gerhard Richter' +p339882 +sa(dp339883 +g291130 +S'portfolio with 9 offset lithographs on wove paper with cover and title page' +p339884 +sg291132 +S'published 1969' +p339885 +sg291134 +S'9 Objekte' +p339886 +sg291136 +g27 +sg291137 +S'Gerhard Richter' +p339887 +sa(dp339888 +g291130 +S'offset lithograph in black on wove paper' +p339889 +sg291132 +S'1969' +p339890 +sg291134 +S'Untitled' +p339891 +sg291136 +g27 +sg291137 +S'Gerhard Richter' +p339892 +sa(dp339893 +g291130 +S'offset lithograph in black on wove paper' +p339894 +sg291132 +S'1969' +p339895 +sg291134 +S'Untitled' +p339896 +sg291136 +g27 +sg291137 +S'Gerhard Richter' +p339897 +sa(dp339898 +g291130 +S'offset lithograph in black on wove paper' +p339899 +sg291132 +S'1969' +p339900 +sg291134 +S'Untitled' +p339901 +sg291136 +g27 +sg291137 +S'Gerhard Richter' +p339902 +sa(dp339903 +g291130 +S'offset lithograph in black on wove paper' +p339904 +sg291132 +S'1969' +p339905 +sg291134 +S'Untitled' +p339906 +sg291136 +g27 +sg291137 +S'Gerhard Richter' +p339907 +sa(dp339908 +g291130 +S'offset lithograph in black on wove paper' +p339909 +sg291132 +S'1969' +p339910 +sg291134 +S'Untitled' +p339911 +sg291136 +g27 +sg291137 +S'Gerhard Richter' +p339912 +sa(dp339913 +g291130 +S'offset lithograph in black on wove paper' +p339914 +sg291132 +S'1969' +p339915 +sg291134 +S'Untitled' +p339916 +sg291136 +g27 +sg291137 +S'Gerhard Richter' +p339917 +sa(dp339918 +g291130 +S'offset lithograph in black on wove paper' +p339919 +sg291132 +S'1969' +p339920 +sg291134 +S'Untitled' +p339921 +sg291136 +g27 +sg291137 +S'Gerhard Richter' +p339922 +sa(dp339923 +g291130 +S'offset lithograph in black on wove paper' +p339924 +sg291132 +S'1969' +p339925 +sg291134 +S'Untitled' +p339926 +sg291136 +g27 +sg291137 +S'Gerhard Richter' +p339927 +sa(dp339928 +g291130 +S'offset lithograph in black on wove paper' +p339929 +sg291132 +S'1972' +p339930 +sg291134 +S'Cologne Beggars I (K\xc3\xb6lner Bettler I)' +p339931 +sg291136 +g27 +sg291137 +S'Sigmar Polke' +p339932 +sa(dp339933 +g291130 +S'offset lithograph in black on wove paper' +p339934 +sg291132 +S'1972' +p339935 +sg291134 +S'Cologne Beggars II (K\xc3\xb6lner Bettler II)' +p339936 +sg291136 +g27 +sg291137 +S'Sigmar Polke' +p339937 +sa(dp339938 +g291130 +S'offset lithograph in black on wove paper' +p339939 +sg291132 +S'1972' +p339940 +sg291134 +S'Cologne Beggars III (K\xc3\xb6lner Bettler III)' +p339941 +sg291136 +g27 +sg291137 +S'Sigmar Polke' +p339942 +sa(dp339943 +g291130 +S'offset lithograph in black on wove paper' +p339944 +sg291132 +S'1972' +p339945 +sg291134 +S'Cologne Beggars IV (K\xc3\xb6lner Bettler IV)' +p339946 +sg291136 +g27 +sg291137 +S'Sigmar Polke' +p339947 +sa(dp339948 +g291130 +S'offset lithograph in black on blue paper with lizard-skin design' +p339949 +sg291132 +S'1973' +p339950 +sg291134 +S'Figure with Hand (Figur mit Hand)' +p339951 +sg291136 +g27 +sg291137 +S'Sigmar Polke' +p339952 +sa(dp339953 +g291130 +S'woodcut in black on handmade wove paper' +p339954 +sg291132 +S'1981' +p339955 +sg291134 +S'Number 1 from 8 Erfahrungen' +p339956 +sg291136 +g27 +sg291137 +S'A.R. Penck' +p339957 +sa(dp339958 +g291130 +S'portfolio with 8 woodcuts and title page on handmade wove paper' +p339959 +sg291132 +S'published 1981' +p339960 +sg291134 +S'8 Erfahrungen (8 Experiences)' +p339961 +sg291136 +g27 +sg291137 +S'A.R. Penck' +p339962 +sa(dp339963 +g291130 +S'woodcut in black on handmade wove paper' +p339964 +sg291132 +S'1981' +p339965 +sg291134 +S'Number 2 from 8 Erfahrungen' +p339966 +sg291136 +g27 +sg291137 +S'A.R. Penck' +p339967 +sa(dp339968 +g291130 +S'woodcut in black on handmade wove paper' +p339969 +sg291132 +S'1981' +p339970 +sg291134 +S'Number 3 from 8 Erfahrungen' +p339971 +sg291136 +g27 +sg291137 +S'A.R. Penck' +p339972 +sa(dp339973 +g291130 +S'woodcut in black on handmade wove paper' +p339974 +sg291132 +S'1981' +p339975 +sg291134 +S'Number 4 from 8 Erfahrungen' +p339976 +sg291136 +g27 +sg291137 +S'A.R. Penck' +p339977 +sa(dp339978 +g291130 +S'woodcut in black on handmade wove paper' +p339979 +sg291132 +S'1981' +p339980 +sg291134 +S'Number 5 from 8 Erfahrungen' +p339981 +sg291136 +g27 +sg291137 +S'A.R. Penck' +p339982 +sa(dp339983 +g291130 +S'woodcut in black on handmade wove paper' +p339984 +sg291132 +S'1981' +p339985 +sg291134 +S'Number 6 from 8 Erfahrungen' +p339986 +sg291136 +g27 +sg291137 +S'A.R. Penck' +p339987 +sa(dp339988 +g291130 +S'woodcut in black on handmade wove paper' +p339989 +sg291132 +S'1981' +p339990 +sg291134 +S'Number 7 from 8 Erfahrungen' +p339991 +sg291136 +g27 +sg291137 +S'A.R. Penck' +p339992 +sa(dp339993 +g291130 +S'woodcut in black on handmade wove paper' +p339994 +sg291132 +S'1981' +p339995 +sg291134 +S'Number 8 from 8 Erfahrungen' +p339996 +sg291136 +g27 +sg291137 +S'A.R. Penck' +p339997 +sa(dp339998 +g291130 +S'woodcut in black on a fragment of commercially-made heart-patterned paper' +p339999 +sg291132 +S'1982' +p340000 +sg291134 +S'Glocke (Bell)' +p340001 +sg291136 +g27 +sg291137 +S'Felix Droese' +p340002 +sa(dp340003 +g291130 +S'woodcut in black on the verso of a purple-colored book cover touched with a rectangle of orange' +p340004 +sg291132 +S'1982' +p340005 +sg291134 +S'Glocke (Bell)' +p340006 +sg291136 +g27 +sg291137 +S'Felix Droese' +p340007 +sa(dp340008 +g291130 +S'woodcut in black with red rectangle on commercially-made paper packaging for organically grown rye flour' +p340009 +sg291132 +S'1982' +p340010 +sg291134 +S'Glocke (Bell)' +p340011 +sg291136 +g27 +sg291137 +S'Felix Droese' +p340012 +sa(dp340013 +g291130 +S'screenprint in black, red, and yellow on wove paper' +p340014 +sg291132 +S'1985' +p340015 +sg291134 +S'Fish' +p340016 +sg291136 +g27 +sg291137 +S'Lothar Baumgarten' +p340017 +sa(dp340018 +g291130 +S'color woodcut on wove paper' +p340019 +sg291132 +S'1987' +p340020 +sg291134 +S'Studio--Head and Feet' +p340021 +sg291136 +g27 +sg291137 +S'Matthias Mansen' +p340022 +sa(dp340023 +g291134 +S'Untitled' +p340024 +sg291137 +S'Vija Celmins' +p340025 +sg291130 +S'graphite on wove paper' +p340026 +sg291132 +S'1973' +p340027 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00008/a00008be.jpg' +p340028 +sg291136 +g27 +sa(dp340029 +g291130 +S'oil, charcoal and paper on canvas' +p340030 +sg291132 +S'1976' +p340031 +sg291134 +S'Imperative' +p340032 +sg291136 +g27 +sg291137 +S'Lee Krasner' +p340033 +sa(dp340034 +g291130 +S'softground etching and aquatint in red and blue (printed from 2 copper plates) on wove paper' +p340035 +sg291132 +S'1976/1977' +p340036 +sg291134 +S'The Blue Guitar' +p340037 +sg291136 +g27 +sg291137 +S'David Hockney' +p340038 +sa(dp340039 +g291130 +S'portfolio with 20 etchings and double-sided title page' +p340040 +sg291132 +S'published 1977' +p340041 +sg291134 +S'The Blue Guitar' +p340042 +sg291136 +g27 +sg291137 +S'David Hockney' +p340043 +sa(dp340044 +g291130 +S'etching and aquatint in blue, red, and green (printed from 2 copper plates) on wove paper' +p340045 +sg291132 +S'1976/1977' +p340046 +sg291134 +S'The Old Guitarist' +p340047 +sg291136 +g27 +sg291137 +S'David Hockney' +p340048 +sa(dp340049 +g291130 +S'etching and aquatint in red, yellow, blue, green, and black (printed from 2 copper plates) on wove paper' +p340050 +sg291132 +S'1976/1977' +p340051 +sg291134 +S'A Tune' +p340052 +sg291136 +g27 +sg291137 +S'David Hockney' +p340053 +sa(dp340054 +g291130 +S'etching, softground etching, and aquatint in red and blue (printed from 2 copper plates) on wove paper' +p340055 +sg291132 +S'1976/1977' +p340056 +sg291134 +S'It Picks Its Way' +p340057 +sg291136 +g27 +sg291137 +S'David Hockney' +p340058 +sa(dp340059 +g291130 +S'etching, softground etching, and aquatint in red, blue, and black (printed from 2 copper plates) on wove paper' +p340060 +sg291132 +S'1976/1977' +p340061 +sg291134 +S'Franco-American Mail' +p340062 +sg291136 +g27 +sg291137 +S'David Hockney' +p340063 +sa(dp340064 +g291130 +S'etching, softground etching, and aquatint in red, blue, green, and black (printed from 2 copper plates) on wove paper' +p340065 +sg291132 +S'1976/1977' +p340066 +sg291134 +S'Parade' +p340067 +sg291136 +g27 +sg291137 +S'David Hockney' +p340068 +sa(dp340069 +g291130 +S'etching, softground etching, and aquatint in red, blue, and green (printed from 2 copper plates) on wove paper' +p340070 +sg291132 +S'1976/1977' +p340071 +sg291134 +S'Discord Merely Magnifies' +p340072 +sg291136 +g27 +sg291137 +S'David Hockney' +p340073 +sa(dp340074 +g291130 +S'etching and softground etching in red, blue, and green (printed from 2 copper plates) on wove paper' +p340075 +sg291132 +S'1976/1977' +p340076 +sg291134 +S'The Buzzing of the Blue Guitar' +p340077 +sg291136 +g27 +sg291137 +S'David Hockney' +p340078 +sa(dp340079 +g291130 +S'etching, softground etching and aquatint in red, blue, and green (printed from 2 copper plates) on wove paper' +p340080 +sg291132 +S'1976/1977' +p340081 +sg291134 +S'In a Chiaroscuro' +p340082 +sg291136 +g27 +sg291137 +S'David Hockney' +p340083 +sa(dp340084 +g291130 +S'etching, softground etching, and drypoint in red and blue (printed from 2 copper plates) on wove paper' +p340085 +sg291132 +S'1976/1977' +p340086 +sg291134 +S'Figures with Still Life' +p340087 +sg291136 +g27 +sg291137 +S'David Hockney' +p340088 +sa(dp340089 +g291130 +S'softground etching and aquatint in red and blue (printed from 2 copper plates) on wove paper' +p340090 +sg291132 +S'1976/1977' +p340091 +sg291134 +S'Made in April' +p340092 +sg291136 +g27 +sg291137 +S'David Hockney' +p340093 +sa(dp340094 +g291130 +S'etching and aquatint in red, blue, and green (printed from 2 copper plates) on wove paper' +p340095 +sg291132 +S'1976/1977' +p340096 +sg291134 +S'A Picture of Ourselves' +p340097 +sg291136 +g27 +sg291137 +S'David Hockney' +p340098 +sa(dp340099 +g291130 +S'etching and aquatint in red, blue, green, yellow, and black (printed from 2 copper plates) on wove paper' +p340100 +sg291132 +S'1976/1977' +p340101 +sg291134 +S'The Poet' +p340102 +sg291136 +g27 +sg291137 +S'David Hockney' +p340103 +sa(dp340104 +g291130 +S'etching, softground etching and aquatint in red, blue, and green (printed from 2 copper plates) on wove paper' +p340105 +sg291132 +S'1976/1977' +p340106 +sg291134 +S'Etching is the Subject' +p340107 +sg291136 +g27 +sg291137 +S'David Hockney' +p340108 +sa(dp340109 +g291130 +S'etching, softground etching, and aquatint in red, blue, green, and black (printed from 2 copper plates) on wove paper' +p340110 +sg291132 +S'1976/1977' +p340111 +sg291134 +S'Tick it, Tock it, Turn it True' +p340112 +sg291136 +g27 +sg291137 +S'David Hockney' +p340113 +sa(dp340114 +g291130 +S'etching and aquatint in red, blue, yellow, green, and black (printed from 2 copper plates) on wove paper' +p340115 +sg291132 +S'1976/1977' +p340116 +sg291134 +S'I Say They Are' +p340117 +sg291136 +g27 +sg291137 +S'David Hockney' +p340118 +sa(dp340119 +g291130 +S'etching, softground etching, and aquatint in red, blue, green, and yellow (printed from 2 copper plates) on wove paper' +p340120 +sg291132 +S'1976/1977' +p340121 +sg291134 +S'On it May Stay His Eye' +p340122 +sg291136 +g27 +sg291137 +S'David Hockney' +p340123 +sa(dp340124 +g291130 +S'etching, softground etching, and aquatint in red, blue, green, and yellow (printed from 2 copper plates) on wove paper' +p340125 +sg291132 +S'1976/1977' +p340126 +sg291134 +S'A Moving Still Life' +p340127 +sg291136 +g27 +sg291137 +S'David Hockney' +p340128 +sa(dp340129 +g291130 +S'etching, softground etching, and aquatint in red, blue, green, and yellow (printed from 2 copper plates) on wove paper' +p340130 +sg291132 +S'1976/1977' +p340131 +sg291134 +S'Serenade' +p340132 +sg291136 +g27 +sg291137 +S'David Hockney' +p340133 +sa(dp340134 +g291130 +S'etching, softground etching, and aquatint in red, blue, and green (printed from 2 copper plates) on wove paper' +p340135 +sg291132 +S'1976/1977' +p340136 +sg291134 +S'What is this Picasso?' +p340137 +sg291136 +g27 +sg291137 +S'David Hockney' +p340138 +sa(dp340139 +g291134 +S'The Gate, Goodbye Vermont' +p340140 +sg291137 +S'Jim Dine' +p340141 +sg291130 +S'steel, tools, wood' +p340142 +sg291132 +S'1985' +p340143 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a000166f.jpg' +p340144 +sg291136 +g27 +sa(dp340145 +g291134 +S'An Eagle' +p340146 +sg291137 +S'Titian' +p340147 +sg291130 +S'pen and brown ink on laid paper; laid down on decorated mount' +p340148 +sg291132 +S'c. 1515' +p340149 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a000286a.jpg' +p340150 +sg291136 +g27 +sa(dp340151 +g291134 +S'Hercules Killing Cacus' +p340152 +sg291137 +S'Hendrick Goltzius' +p340153 +sg291130 +S', 1588' +p340154 +sg291132 +S'\n' +p340155 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f32.jpg' +p340156 +sg291136 +g27 +sa(dp340157 +g291134 +S'The Return of the Prodigal Son' +p340158 +sg291137 +S'Rembrandt van Rijn' +p340159 +sg291130 +S'etching on laid paper' +p340160 +sg291132 +S'1636' +p340161 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f77.jpg' +p340162 +sg291136 +g27 +sa(dp340163 +g291134 +S'Workmen before an Inn' +p340164 +sg291137 +S'Isack van Ostade' +p340165 +sg291130 +S'oil on panel' +p340166 +sg291132 +S'1645' +p340167 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e77.jpg' +p340168 +sg291136 +S'Tavern drinkers and idlers frequently appear in Dutch genre scenes of daily life, but depictions of workers restocking an inn are very unusual. Two laborers here are yoked together to haul beer kegs off a sledge. Their overworked, underfed horse bears the scars of a hard existence. At the cellar door a small boy carries a jug of ale, while the street teems with beggars, peddlers, and fighting dogs.\n Like one other Isack van Ostade painting, \n Isack was trained in Haarlem by his older brother \n ' +p340169 +sa(dp340170 +g291130 +S'(artist)' +p340171 +sg291132 +S'\n' +p340172 +sg291134 +S'Historiae Biblicae Veteris et Novi Testamenti' +p340173 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340174 +sa(dp340175 +g291134 +S'Weathered Boulders' +p340176 +sg291137 +S'Franz Edmund Weirotter' +p340177 +sg291130 +S'red chalk on laid paper' +p340178 +sg291132 +S'c. 1769' +p340179 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a00028e7.jpg' +p340180 +sg291136 +g27 +sa(dp340181 +g291134 +S'Fan with Wildflowers and Butterflies against the Norman Coast' +p340182 +sg291137 +S'F\xc3\xa9lix-Hilaire Buhot' +p340183 +sg291130 +S'tempera and gouache with gold highlights over graphite on silk; laid down' +p340184 +sg291132 +S'c. 1875' +p340185 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022c7.jpg' +p340186 +sg291136 +g27 +sa(dp340187 +g291134 +S'Roses' +p340188 +sg291137 +S'Vincent van Gogh' +p340189 +sg291130 +S'oil on canvas' +p340190 +sg291132 +S'1890' +p340191 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004a/a0004a15.jpg' +p340192 +sg291136 +S'In May 1889, following bouts of depression\r\nand erratic behavior that culminated\r\nin the mutilation of his left ear, Van Gogh\r\ntraveled from Arles to the nearby village\r\nof Saint-Rémy, where he voluntarily\r\ncommitted himself to the asylum Saint-\r\nPaul-de-Mausole. As had always been true\r\nduring the bleaker periods in the artist\xe2\x80\x99s\r\nlife, art was both his therapy and his salvation.\r\nVincent\xe2\x80\x99s time at Saint-R\xc3\xa9my was\r\nno exception. His doctor observed that "between his attacks the patient was perfectly\r\nquiet and devoted himself with ardor\r\nto his painting."\n Vincent\xe2\x80\x99s final weeks at the asylum\r\nwere marked by both intense productivity\r\nand emotional stability. Looking back on\r\nthose days, Vincent would tell his sister that\r\nhe "worked as in a frenzy. Great bunches\r\nof flowers, violet irises, big bouquets of\r\nroses, landscapes."\n Vincent\xe2\x80\x99s newfound confidence is palpable\r\nin this painting, in which an enormous\r\nbouquet of roses seems to spill\r\nout from a stoneware vase, with fragrant\r\nblooms filling virtually the entire composition.\r\nAlthough Vincent was known to\r\nassign meanings to the flowers he painted,\r\nhis correspondence makes no mention of\r\nany deeper significance associated with the\r\nroses depicted here. Instead, \n The artist\xe2\x80\x99s exuberance is equally evident\r\nin his use of color and brushwork.\r\nVincent selected a palette dominated by the\r\ncomplementary colors red and green, juxtaposed\r\nin order to heighten each color\xe2\x80\x99s\r\nvibrancy. Unfortunately in the case of \n (Text by Kimberly Jones, \n Notes\n 2. Letter from Vincent to his sister, beginning of\r\nJune 1890. The Complete Letters of Vincent van Gogh, 3 vols., 2nd\r\ned. (Boston, 1978), 3:469, letter W. 21.\n \n \n ' +p340193 +sa(dp340194 +g291130 +S'charcoal on laid paper' +p340195 +sg291132 +S'1939' +p340196 +sg291134 +S"The Oriental (L'Asiatique)" +p340197 +sg291136 +g27 +sg291137 +S'Henri Matisse' +p340198 +sa(dp340199 +g291130 +S'oil on canvas' +p340200 +sg291132 +S'1973' +p340201 +sg291134 +S"Painter's Table" +p340202 +sg291136 +g27 +sg291137 +S'Philip Guston' +p340203 +sa(dp340204 +g291130 +g27 +sg291132 +S'(artist)' +p340205 +sg291134 +S'Bowl with a Shield of Arms' +p340206 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340207 +sa(dp340208 +g291130 +S'oil on canvas' +p340209 +sg291132 +S'1908' +p340210 +sg291134 +S'Maine Woods' +p340211 +sg291136 +g27 +sg291137 +S'Marsden Hartley' +p340212 +sa(dp340213 +g291130 +S'1 vol: ill: 11 woodcuts in black on wove paper (woodcut VII repeated on cover); text by Gabrielle Buffet-Picabia; intro. by Max Bill; poem by Jean Arp' +p340214 +sg291132 +S'published 1945' +p340215 +sg291134 +S'11 configurations' +p340216 +sg291136 +g27 +sg291137 +S'Jean Arp' +p340217 +sa(dp340218 +g291130 +S'lithograph from zinc in black on brown-red laid paper' +p340219 +sg291132 +S'1951' +p340220 +sg291134 +S'Head of March' +p340221 +sg291136 +g27 +sg291137 +S'Milton Avery' +p340222 +sa(dp340223 +g291130 +S'gelatin silver print' +p340224 +sg291132 +S'1951' +p340225 +sg291134 +S'London' +p340226 +sg291136 +g27 +sg291137 +S'Robert Frank' +p340227 +sa(dp340228 +g291130 +g27 +sg291132 +S'(publisher)' +p340229 +sg291134 +S'White Line Square XV' +p340230 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340231 +sa(dp340232 +g291130 +g27 +sg291132 +S'(publisher)' +p340233 +sg291134 +S'White Embossing on Gray XI' +p340234 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340235 +sa(dp340236 +g291130 +g27 +sg291132 +S'(publisher)' +p340237 +sg291134 +S'White Embossing on Gray V' +p340238 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340239 +sa(dp340240 +g291130 +g27 +sg291132 +S'(publisher)' +p340241 +sg291134 +S'Assembled Relief' +p340242 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340243 +sa(dp340244 +g291130 +g27 +sg291132 +S'(publisher)' +p340245 +sg291134 +S'Assembled Relief' +p340246 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340247 +sa(dp340248 +g291130 +g27 +sg291132 +S'(publisher)' +p340249 +sg291134 +S'Mirage Construction' +p340250 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340251 +sa(dp340252 +g291130 +g27 +sg291132 +S'(publisher)' +p340253 +sg291134 +S'Male Aggression' +p340254 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340255 +sa(dp340256 +g291130 +g27 +sg291132 +S'(publisher)' +p340257 +sg291134 +S'Male Aggression' +p340258 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340259 +sa(dp340260 +g291130 +g27 +sg291132 +S'(publisher)' +p340261 +sg291134 +S'Flowers at No. 2984212' +p340262 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340263 +sa(dp340264 +g291130 +g27 +sg291132 +S'(publisher)' +p340265 +sg291134 +S'Dancing Clown at No. 2964782' +p340266 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340267 +sa(dp340268 +g291130 +g27 +sg291132 +S'(publisher)' +p340269 +sg291134 +S'Berlin Dream (Closeup) at No. 2947854' +p340270 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340271 +sa(dp340272 +g291130 +g27 +sg291132 +S'(publisher)' +p340273 +sg291134 +S'Drypoint - Ocean Surface (Second State)' +p340274 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340275 +sa(dp340276 +g291130 +g27 +sg291132 +S'(publisher)' +p340277 +sg291134 +S'Covered Wagons' +p340278 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340279 +sa(dp340280 +g291130 +g27 +sg291132 +S'(publisher)' +p340281 +sg291134 +S'Art & Technology' +p340282 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340283 +sa(dp340284 +g291130 +g27 +sg291132 +S'(publisher)' +p340285 +sg291134 +S'Fire Engine' +p340286 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340287 +sa(dp340288 +g291130 +g27 +sg291132 +S'(publisher)' +p340289 +sg291134 +S'Clipper Ship' +p340290 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340291 +sa(dp340292 +g291130 +g27 +sg291132 +S'(publisher)' +p340293 +sg291134 +S'Tawny Owl (State I)' +p340294 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340295 +sa(dp340296 +g291130 +g27 +sg291132 +S'(publisher)' +p340297 +sg291134 +S'Old Jenny' +p340298 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340299 +sa(dp340300 +g291130 +g27 +sg291132 +S'(publisher)' +p340301 +sg291134 +S'Single Divider' +p340302 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340303 +sa(dp340304 +g291130 +g27 +sg291132 +S'(publisher)' +p340305 +sg291134 +S'Dodecagon Cylinder and Cube' +p340306 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340307 +sa(dp340308 +g291130 +g27 +sg291132 +S'(publisher)' +p340309 +sg291134 +S'M' +p340310 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340311 +sa(dp340312 +g291130 +g27 +sg291132 +S'(publisher)' +p340313 +sg291134 +S'White Bone' +p340314 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340315 +sa(dp340316 +g291130 +g27 +sg291132 +S'(publisher)' +p340317 +sg291134 +S'Spun for James Kirsch' +p340318 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340319 +sa(dp340320 +g291130 +g27 +sg291132 +S'(publisher)' +p340321 +sg291134 +S'Firewood' +p340322 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340323 +sa(dp340324 +g291130 +g27 +sg291132 +S'(publisher)' +p340325 +sg291134 +S'Web' +p340326 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340327 +sa(dp340328 +g291130 +g27 +sg291132 +S'(publisher)' +p340329 +sg291134 +S'Coral Lyre Nine' +p340330 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340331 +sa(dp340332 +g291130 +g27 +sg291132 +S'(publisher)' +p340333 +sg291134 +S"Ariel's Ring" +p340334 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340335 +sa(dp340336 +g291130 +g27 +sg291132 +S'(publisher)' +p340337 +sg291134 +S'Red Again' +p340338 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340339 +sa(dp340340 +g291130 +g27 +sg291132 +S'(publisher)' +p340341 +sg291134 +S'Five Coral Screen' +p340342 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340343 +sa(dp340344 +g291130 +g27 +sg291132 +S'(publisher)' +p340345 +sg291134 +S'Ting' +p340346 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340347 +sa(dp340348 +g291130 +g27 +sg291132 +S'(publisher)' +p340349 +sg291134 +S'Yunan State II' +p340350 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340351 +sa(dp340352 +g291130 +g27 +sg291132 +S'(publisher)' +p340353 +sg291134 +S'Lyre Eight' +p340354 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340355 +sa(dp340356 +g291130 +g27 +sg291132 +S'(publisher)' +p340357 +sg291134 +S'Yunan State I' +p340358 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340359 +sa(dp340360 +g291130 +g27 +sg291132 +S'(publisher)' +p340361 +sg291134 +S'Freshet' +p340362 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340363 +sa(dp340364 +g291130 +g27 +sg291132 +S'(publisher)' +p340365 +sg291134 +S'Yunan State III' +p340366 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340367 +sa(dp340368 +g291130 +g27 +sg291132 +S'(publisher)' +p340369 +sg291134 +S'Toward Disappearance' +p340370 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340371 +sa(dp340372 +g291130 +g27 +sg291132 +S'(publisher)' +p340373 +sg291134 +S'Untitled' +p340374 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340375 +sa(dp340376 +g291130 +g27 +sg291132 +S'(publisher)' +p340377 +sg291134 +S'Untitled' +p340378 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340379 +sa(dp340380 +g291130 +g27 +sg291132 +S'(publisher)' +p340381 +sg291134 +S'Meteorite' +p340382 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340383 +sa(dp340384 +g291130 +g27 +sg291132 +S'(publisher)' +p340385 +sg291134 +S'Untitled' +p340386 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340387 +sa(dp340388 +g291130 +g27 +sg291132 +S'(publisher)' +p340389 +sg291134 +S'Untitled' +p340390 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340391 +sa(dp340392 +g291130 +g27 +sg291132 +S'(publisher)' +p340393 +sg291134 +S'Untitled' +p340394 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340395 +sa(dp340396 +g291130 +g27 +sg291132 +S'(publisher)' +p340397 +sg291134 +S'Spoon Upper Middle - Glass Middle Right' +p340398 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340399 +sa(dp340400 +g291130 +g27 +sg291132 +S'(publisher)' +p340401 +sg291134 +S'Glass and Spoon Lower Left' +p340402 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340403 +sa(dp340404 +g291130 +g27 +sg291132 +S'(publisher)' +p340405 +sg291134 +S'Glass Lower Right - Spoon Upper Left' +p340406 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340407 +sa(dp340408 +g291130 +g27 +sg291132 +S'(publisher)' +p340409 +sg291134 +S'Glass at Top - Spoon on Bottom' +p340410 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340411 +sa(dp340412 +g291130 +g27 +sg291132 +S'(publisher)' +p340413 +sg291134 +S'Glass Middle Left - Spoon Middle Right' +p340414 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340415 +sa(dp340416 +g291130 +g27 +sg291132 +S'(publisher)' +p340417 +sg291134 +S'State Edition Six' +p340418 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340419 +sa(dp340420 +g291130 +g27 +sg291132 +S'(publisher)' +p340421 +sg291134 +S'State Edition One' +p340422 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340423 +sa(dp340424 +g291130 +g27 +sg291132 +S'(publisher)' +p340425 +sg291134 +S'State Edition Three' +p340426 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340427 +sa(dp340428 +g291130 +g27 +sg291132 +S'(publisher)' +p340429 +sg291134 +S'State Edition Five' +p340430 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340431 +sa(dp340432 +g291130 +g27 +sg291132 +S'(publisher)' +p340433 +sg291134 +S'State Edition Four' +p340434 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340435 +sa(dp340436 +g291130 +g27 +sg291132 +S'(publisher)' +p340437 +sg291134 +S'State Edition Two' +p340438 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340439 +sa(dp340440 +g291130 +g27 +sg291132 +S'(publisher)' +p340441 +sg291134 +S'The Master Printer of Los Angeles' +p340442 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340443 +sa(dp340444 +g291130 +g27 +sg291132 +S'(publisher)' +p340445 +sg291134 +S'Dark Mist' +p340446 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340447 +sa(dp340448 +g291130 +g27 +sg291132 +S'(publisher)' +p340449 +sg291134 +S'Slightly Damaged Chair, Malibu' +p340450 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340451 +sa(dp340452 +g291130 +g27 +sg291132 +S'(publisher)' +p340453 +sg291134 +S'Chair - 38 The Colony, Malibu' +p340454 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340455 +sa(dp340456 +g291130 +g27 +sg291132 +S'(publisher)' +p340457 +sg291134 +S'Smaller Study of Lightning' +p340458 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340459 +sa(dp340460 +g291130 +g27 +sg291132 +S'(publisher)' +p340461 +sg291134 +S'Study of Lightning' +p340462 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340463 +sa(dp340464 +g291130 +g27 +sg291132 +S'(publisher)' +p340465 +sg291134 +S'Portrait of Rolf Nelson' +p340466 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340467 +sa(dp340468 +g291130 +g27 +sg291132 +S'(publisher)' +p340469 +sg291134 +S'Nicholas Wilder' +p340470 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340471 +sa(dp340472 +g291130 +g27 +sg291132 +S'(publisher)' +p340473 +sg291134 +S'Billy Wilder' +p340474 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340475 +sa(dp340476 +g291130 +g27 +sg291132 +S'(publisher)' +p340477 +sg291134 +S'Joe McDonald' +p340478 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340479 +sa(dp340480 +g291130 +g27 +sg291132 +S'(publisher)' +p340481 +sg291134 +S'Small Head of Gregory' +p340482 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340483 +sa(dp340484 +g291130 +g27 +sg291132 +S'(publisher)' +p340485 +sg291134 +S'Henry Reading Newspaper' +p340486 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340487 +sa(dp340488 +g291130 +g27 +sg291132 +S'(publisher)' +p340489 +sg291134 +S'Gregory Thinking of Henry' +p340490 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340491 +sa(dp340492 +g291130 +g27 +sg291132 +S'(publisher)' +p340493 +sg291134 +S'Ann Combing Her Hair' +p340494 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340495 +sa(dp340496 +g291130 +g27 +sg291132 +S'(publisher)' +p340497 +sg291134 +S'Untitled (Coca-Cola and Grid)' +p340498 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340499 +sa(dp340500 +g291130 +g27 +sg291132 +S'(publisher)' +p340501 +sg291134 +S'"M"' +p340502 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340503 +sa(dp340504 +g291130 +g27 +sg291132 +S'(publisher)' +p340505 +sg291134 +S'Viola' +p340506 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340507 +sa(dp340508 +g291130 +g27 +sg291132 +S'(publisher)' +p340509 +sg291134 +S'Untitled' +p340510 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340511 +sa(dp340512 +g291130 +g27 +sg291132 +S'(publisher)' +p340513 +sg291134 +S'Bread' +p340514 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340515 +sa(dp340516 +g291130 +g27 +sg291132 +S'(publisher)' +p340517 +sg291134 +S'High School Days' +p340518 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340519 +sa(dp340520 +g291130 +g27 +sg291132 +S'(publisher)' +p340521 +sg291134 +S'Light Bulb' +p340522 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340523 +sa(dp340524 +g291130 +g27 +sg291132 +S'(publisher)' +p340525 +sg291134 +S'Embossed Alphabet' +p340526 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340527 +sa(dp340528 +g291130 +g27 +sg291132 +S'(publisher)' +p340529 +sg291134 +S'Figure 0' +p340530 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340531 +sa(dp340532 +g291130 +g27 +sg291132 +S'(publisher)' +p340533 +sg291134 +S'Figure 2' +p340534 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340535 +sa(dp340536 +g291130 +g27 +sg291132 +S'(publisher)' +p340537 +sg291134 +S'Figure 3' +p340538 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340539 +sa(dp340540 +g291130 +g27 +sg291132 +S'(publisher)' +p340541 +sg291134 +S'Figure 4' +p340542 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340543 +sa(dp340544 +g291130 +g27 +sg291132 +S'(publisher)' +p340545 +sg291134 +S'Figure 5' +p340546 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340547 +sa(dp340548 +g291130 +g27 +sg291132 +S'(publisher)' +p340549 +sg291134 +S'Figure 6' +p340550 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340551 +sa(dp340552 +g291130 +g27 +sg291132 +S'(publisher)' +p340553 +sg291134 +S'Figure 8' +p340554 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340555 +sa(dp340556 +g291130 +g27 +sg291132 +S'(publisher)' +p340557 +sg291134 +S'Figure 9' +p340558 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340559 +sa(dp340560 +g291130 +g27 +sg291132 +S'(publisher)' +p340561 +sg291134 +S'Figure 3' +p340562 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340563 +sa(dp340564 +g291130 +g27 +sg291132 +S'(publisher)' +p340565 +sg291134 +S'Figure 4' +p340566 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340567 +sa(dp340568 +g291130 +g27 +sg291132 +S'(publisher)' +p340569 +sg291134 +S'Figure 6' +p340570 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340571 +sa(dp340572 +g291130 +g27 +sg291132 +S'(publisher)' +p340573 +sg291134 +S'Figure 8' +p340574 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340575 +sa(dp340576 +g291130 +g27 +sg291132 +S'(publisher)' +p340577 +sg291134 +S'Ale Cans (I)' +p340578 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340579 +sa(dp340580 +g291130 +g27 +sg291132 +S'(publisher)' +p340581 +sg291134 +S'Ale Cans (II)' +p340582 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340583 +sa(dp340584 +g291130 +g27 +sg291132 +S'(publisher)' +p340585 +sg291134 +S'Ale Cans (IV)' +p340586 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340587 +sa(dp340588 +g291130 +g27 +sg291132 +S'(publisher)' +p340589 +sg291134 +S'Untitled (Bookplate for David Grainger Whitney)' +p340590 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340591 +sa(dp340592 +g291130 +g27 +sg291132 +S'(publisher)' +p340593 +sg291134 +S'Zone' +p340594 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340595 +sa(dp340596 +g291130 +g27 +sg291132 +S'(publisher)' +p340597 +sg291134 +S'Black/Brown' +p340598 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340599 +sa(dp340600 +g291130 +g27 +sg291132 +S'(publisher)' +p340601 +sg291134 +S'Blue/Red-Orange' +p340602 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340603 +sa(dp340604 +g291130 +g27 +sg291132 +S'(publisher)' +p340605 +sg291134 +S'Four Panels' +p340606 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340607 +sa(dp340608 +g291130 +g27 +sg291132 +S'(publisher)' +p340609 +sg291134 +S'Yellow/Red-Orange' +p340610 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340611 +sa(dp340612 +g291130 +g27 +sg291132 +S'(publisher)' +p340613 +sg291134 +S'Black/White/Black' +p340614 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340615 +sa(dp340616 +g291130 +g27 +sg291132 +S'(publisher)' +p340617 +sg291134 +S'Red-Orange/Yellow/Blue' +p340618 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340619 +sa(dp340620 +g291130 +g27 +sg291132 +S'(publisher)' +p340621 +sg291134 +S'Blue/Yellow/Red' +p340622 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340623 +sa(dp340624 +g291130 +g27 +sg291132 +S'(publisher)' +p340625 +sg291134 +S'Bandol (State)' +p340626 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340627 +sa(dp340628 +g291130 +g27 +sg291132 +S'(publisher)' +p340629 +sg291134 +S'Braunwald (State)' +p340630 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340631 +sa(dp340632 +g291130 +g27 +sg291132 +S'(publisher)' +p340633 +sg291134 +S'Amden (State)' +p340634 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340635 +sa(dp340636 +g291130 +g27 +sg291132 +S'(publisher)' +p340637 +sg291134 +S'Grand Case (State)' +p340638 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340639 +sa(dp340640 +g291130 +g27 +sg291132 +S'(publisher)' +p340641 +sg291134 +S'Jacmel (State)' +p340642 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340643 +sa(dp340644 +g291130 +g27 +sg291132 +S'(publisher)' +p340645 +sg291134 +S'Marigot (State)' +p340646 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340647 +sa(dp340648 +g291130 +g27 +sg291132 +S'(publisher)' +p340649 +sg291134 +S'Bordrouant (State)' +p340650 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340651 +sa(dp340652 +g291130 +g27 +sg291132 +S'(publisher)' +p340653 +sg291134 +S'Orange/Green' +p340654 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340655 +sa(dp340656 +g291130 +g27 +sg291132 +S'(publisher)' +p340657 +sg291134 +S'Blue/Green' +p340658 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340659 +sa(dp340660 +g291130 +g27 +sg291132 +S'(publisher)' +p340661 +sg291134 +S'Black/Green' +p340662 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340663 +sa(dp340664 +g291130 +g27 +sg291132 +S'(publisher)' +p340665 +sg291134 +S'Large Black Curve' +p340666 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340667 +sa(dp340668 +g291130 +g27 +sg291132 +S'(publisher)' +p340669 +sg291134 +S"Red Curve (Radius of 8')" +p340670 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340671 +sa(dp340672 +g291130 +g27 +sg291132 +S'(publisher)' +p340673 +sg291134 +S'Conques' +p340674 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340675 +sa(dp340676 +g291130 +g27 +sg291132 +S'(publisher)' +p340677 +sg291134 +S'Germigny' +p340678 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340679 +sa(dp340680 +g291130 +g27 +sg291132 +S'(publisher)' +p340681 +sg291134 +S'Blue Curve' +p340682 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340683 +sa(dp340684 +g291130 +g27 +sg291132 +S'(publisher)' +p340685 +sg291134 +S'Red Curve (State I)' +p340686 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340687 +sa(dp340688 +g291130 +g27 +sg291132 +S'(publisher)' +p340689 +sg291134 +S'Red Curve (State II)' +p340690 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340691 +sa(dp340692 +g291130 +g27 +sg291132 +S'(publisher)' +p340693 +sg291134 +S'Blue Curve (State I)' +p340694 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340695 +sa(dp340696 +g291130 +g27 +sg291132 +S'(publisher)' +p340697 +sg291134 +S'Blue Curve (State II)' +p340698 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340699 +sa(dp340700 +g291130 +g27 +sg291132 +S'(publisher)' +p340701 +sg291134 +S'Green Curve' +p340702 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340703 +sa(dp340704 +g291130 +g27 +sg291132 +S'(publisher)' +p340705 +sg291134 +S'Green Curve (State I)' +p340706 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340707 +sa(dp340708 +g291130 +g27 +sg291132 +S'(publisher)' +p340709 +sg291134 +S'Green Curve (State II)' +p340710 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340711 +sa(dp340712 +g291130 +g27 +sg291132 +S'(publisher)' +p340713 +sg291134 +S'Untitled (Red)' +p340714 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340715 +sa(dp340716 +g291130 +g27 +sg291132 +S'(publisher)' +p340717 +sg291134 +S'Untitled (Purple)' +p340718 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340719 +sa(dp340720 +g291130 +g27 +sg291132 +S'(publisher)' +p340721 +sg291134 +S'Untitled (Purple State I)' +p340722 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340723 +sa(dp340724 +g291130 +g27 +sg291132 +S'(publisher)' +p340725 +sg291134 +S'Untitled (Orange)' +p340726 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340727 +sa(dp340728 +g291130 +g27 +sg291132 +S'(publisher)' +p340729 +sg291134 +S'Untitled (Orange State I)' +p340730 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340731 +sa(dp340732 +g291130 +g27 +sg291132 +S'(publisher)' +p340733 +sg291134 +S'Untitled (Gray)' +p340734 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340735 +sa(dp340736 +g291130 +g27 +sg291132 +S'(publisher)' +p340737 +sg291134 +S'Black Curve' +p340738 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340739 +sa(dp340740 +g291130 +g27 +sg291132 +S'(publisher)' +p340741 +sg291134 +S'Dark Gray Curve' +p340742 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340743 +sa(dp340744 +g291130 +g27 +sg291132 +S'(publisher)' +p340745 +sg291134 +S'Dark Gray Curve (State I)' +p340746 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340747 +sa(dp340748 +g291130 +g27 +sg291132 +S'(publisher)' +p340749 +sg291134 +S'Gray Curve' +p340750 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340751 +sa(dp340752 +g291130 +g27 +sg291132 +S'(publisher)' +p340753 +sg291134 +S'Yellow Curve' +p340754 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340755 +sa(dp340756 +g291130 +g27 +sg291132 +S'(publisher)' +p340757 +sg291134 +S'Documentation Book: Five Car Stud and Sawdy' +p340758 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340759 +sa(dp340760 +g291130 +g27 +sg291132 +S'(publisher)' +p340761 +sg291134 +S'Souvenir License Plate for Sawdy' +p340762 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340763 +sa(dp340764 +g291130 +g27 +sg291132 +S'(publisher)' +p340765 +sg291134 +S'Modern Print' +p340766 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340767 +sa(dp340768 +g291130 +g27 +sg291132 +S'(publisher)' +p340769 +sg291134 +S'Haystack #6 - State I' +p340770 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340771 +sa(dp340772 +g291130 +g27 +sg291132 +S'(publisher)' +p340773 +sg291134 +S'Haystack #6 - State II' +p340774 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340775 +sa(dp340776 +g291130 +g27 +sg291132 +S'(publisher)' +p340777 +sg291134 +S'Haystack #6 - State III' +p340778 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340779 +sa(dp340780 +g291130 +g27 +sg291132 +S'(publisher)' +p340781 +sg291134 +S'Chem IA' +p340782 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340783 +sa(dp340784 +g291130 +g27 +sg291132 +S'(publisher)' +p340785 +sg291134 +S'Peace Through Chemistry IV' +p340786 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340787 +sa(dp340788 +g291130 +S'lithograph on Special Arjomari paper' +p340789 +sg291132 +S'1969' +p340790 +sg291134 +S'Cathedral #2' +p340791 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p340792 +sa(dp340793 +g291130 +g27 +sg291132 +S'(publisher)' +p340794 +sg291134 +S'Mirror #6' +p340795 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340796 +sa(dp340797 +g291130 +g27 +sg291132 +S'(publisher)' +p340798 +sg291134 +S'Mirror #3' +p340799 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340800 +sa(dp340801 +g291130 +g27 +sg291132 +S'(publisher)' +p340802 +sg291134 +S'Cathedral #6' +p340803 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340804 +sa(dp340805 +g291130 +g27 +sg291132 +S'(publisher)' +p340806 +sg291134 +S'Blonde' +p340807 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340808 +sa(dp340809 +g291130 +g27 +sg291132 +S'(publisher)' +p340810 +sg291134 +S'At the Beach' +p340811 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340812 +sa(dp340813 +g291130 +g27 +sg291132 +S'(publisher)' +p340814 +sg291134 +S'Figures' +p340815 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340816 +sa(dp340817 +g291130 +g27 +sg291132 +S'(publisher)' +p340818 +sg291134 +S'Mermaid' +p340819 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340820 +sa(dp340821 +g291130 +g27 +sg291132 +S'(publisher)' +p340822 +sg291134 +S'Imperfect Print for B.A.M.' +p340823 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340824 +sa(dp340825 +g291130 +g27 +sg291132 +S'(publisher)' +p340826 +sg291134 +S'Imperfect Diptych 46 1/4" x 91 3/8"' +p340827 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340828 +sa(dp340829 +g291130 +g27 +sg291132 +S'(publisher)' +p340830 +sg291134 +S'Imperfect 58" x 92 3/8"' +p340831 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340832 +sa(dp340833 +g291130 +g27 +sg291132 +S'(publisher)' +p340834 +sg291134 +S'Imperfect 67" x 79 7/8"' +p340835 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340836 +sa(dp340837 +g291130 +g27 +sg291132 +S'(publisher)' +p340838 +sg291134 +S'Imperfect 63 3/8" x 88 7/8"' +p340839 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340840 +sa(dp340841 +g291130 +g27 +sg291132 +S'(publisher)' +p340842 +sg291134 +S'Imperfect 57 7/8" x 93 3/4"' +p340843 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340844 +sa(dp340845 +g291130 +g27 +sg291132 +S'(publisher)' +p340846 +sg291134 +S'Moonscape' +p340847 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340848 +sa(dp340849 +g291130 +g27 +sg291132 +S'(publisher)' +p340850 +sg291134 +S'Wind Surfers' +p340851 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340852 +sa(dp340853 +g291130 +g27 +sg291132 +S'(publisher)' +p340854 +sg291134 +S'Kite on Gibson Beach' +p340855 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340856 +sa(dp340857 +g291130 +g27 +sg291132 +S'(publisher)' +p340858 +sg291134 +S'Our Tramp Steamer Hugging the Horizon Off Coconut Island I' +p340859 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340860 +sa(dp340861 +g291130 +g27 +sg291132 +S'(publisher)' +p340862 +sg291134 +S'Our Tramp Steamer Hugging the Horizon Off Coconut Island II' +p340863 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340864 +sa(dp340865 +g291130 +g27 +sg291132 +S'(publisher)' +p340866 +sg291134 +S'Black Rainbow Over Oedipus at Thebes I' +p340867 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340868 +sa(dp340869 +g291130 +g27 +sg291132 +S'(publisher)' +p340870 +sg291134 +S'Black Rainbow Over Oedipus at Thebes II' +p340871 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340872 +sa(dp340873 +g291130 +g27 +sg291132 +S'(publisher)' +p340874 +sg291134 +S'Black Rainbow Over Oedipus at Thebes III' +p340875 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340876 +sa(dp340877 +g291130 +g27 +sg291132 +S'(publisher)' +p340878 +sg291134 +S'Devon Mare with Foal with Lake Tahoe Above' +p340879 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340880 +sa(dp340881 +g291130 +g27 +sg291132 +S'(publisher)' +p340882 +sg291134 +S'Jazz' +p340883 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340884 +sa(dp340885 +g291130 +g27 +sg291132 +S'(publisher)' +p340886 +sg291134 +S'Harvest, with Leaf' +p340887 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340888 +sa(dp340889 +g291130 +g27 +sg291132 +S'(publisher)' +p340890 +sg291134 +S'Harvest, with Orange Stripe' +p340891 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340892 +sa(dp340893 +g291130 +g27 +sg291132 +S'(publisher)' +p340894 +sg291134 +S'Harvest, with Blue Shadow' +p340895 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340896 +sa(dp340897 +g291130 +g27 +sg291132 +S'(publisher)' +p340898 +sg291134 +S'Harvest, with Two White Stripes' +p340899 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340900 +sa(dp340901 +g291130 +g27 +sg291132 +S'(publisher)' +p340902 +sg291134 +S'Pauillac, #4' +p340903 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340904 +sa(dp340905 +g291130 +g27 +sg291132 +S'(publisher)' +p340906 +sg291134 +S'Pauillac, #3' +p340907 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340908 +sa(dp340909 +g291130 +g27 +sg291132 +S'(publisher)' +p340910 +sg291134 +S'Pauillac, #2' +p340911 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340912 +sa(dp340913 +g291130 +g27 +sg291132 +S'(publisher)' +p340914 +sg291134 +S'False Passage' +p340915 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340916 +sa(dp340917 +g291130 +g27 +sg291132 +S'(publisher)' +p340918 +sg291134 +S'Underground Passage * - * - *' +p340919 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340920 +sa(dp340921 +g291130 +g27 +sg291132 +S'(publisher)' +p340922 +sg291134 +S'Underground Passage * * *' +p340923 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340924 +sa(dp340925 +g291130 +g27 +sg291132 +S'(publisher)' +p340926 +sg291134 +S'Soft Toilet #1' +p340927 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340928 +sa(dp340929 +g291130 +g27 +sg291132 +S'(publisher)' +p340930 +sg291134 +S'Soft Drum Set' +p340931 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340932 +sa(dp340933 +g291130 +g27 +sg291132 +S'(publisher)' +p340934 +sg291134 +S'Bread Slice in Sunlight #1 - King David' +p340935 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340936 +sa(dp340937 +g291130 +g27 +sg291132 +S'(publisher)' +p340938 +sg291134 +S'Ice Bag' +p340939 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340940 +sa(dp340941 +g291130 +g27 +sg291132 +S'(publisher)' +p340942 +sg291134 +S'Soft Drum Set - on Chalk Board' +p340943 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340944 +sa(dp340945 +g291130 +g27 +sg291132 +S'(publisher)' +p340946 +sg291134 +S'Soft Toilet #3 - on Chalk Board' +p340947 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340948 +sa(dp340949 +g291130 +g27 +sg291132 +S'(publisher)' +p340950 +sg291134 +S'Profile Airflow - Test Mold, Front End' +p340951 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340952 +sa(dp340953 +g291130 +g27 +sg291132 +S'(publisher)' +p340954 +sg291134 +S'Typewriter Eraser' +p340955 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340956 +sa(dp340957 +g291130 +g27 +sg291132 +S'(publisher)' +p340958 +sg291134 +S'Arch in the Form of a Screw, for Times Square NYC' +p340959 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340960 +sa(dp340961 +g291130 +g27 +sg291132 +S'(publisher)' +p340962 +sg291134 +S'Texas Turtle Cup' +p340963 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340964 +sa(dp340965 +g291130 +g27 +sg291132 +S'(publisher)' +p340966 +sg291134 +S'Figurine Cup V' +p340967 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340968 +sa(dp340969 +g291130 +g27 +sg291132 +S'(publisher)' +p340970 +sg291134 +S'Untitled' +p340971 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340972 +sa(dp340973 +g291130 +g27 +sg291132 +S'(publisher)' +p340974 +sg291134 +S'1984' +p340975 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340976 +sa(dp340977 +g291130 +g27 +sg291132 +S'(publisher)' +p340978 +sg291134 +S'Call Me Ishmael' +p340979 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340980 +sa(dp340981 +g291130 +g27 +sg291132 +S'(publisher)' +p340982 +sg291134 +S"Ishmael's Edge" +p340983 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340984 +sa(dp340985 +g291130 +g27 +sg291132 +S'(publisher)' +p340986 +sg291134 +S'Penn. Ship' +p340987 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340988 +sa(dp340989 +g291130 +g27 +sg291132 +S'(publisher)' +p340990 +sg291134 +S'Olson' +p340991 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340992 +sa(dp340993 +g291130 +g27 +sg291132 +S'(publisher)' +p340994 +sg291134 +S'Pasolini' +p340995 +sg291136 +g27 +sg291137 +S'Artist Information (' +p340996 +sa(dp340997 +g291130 +g27 +sg291132 +S'(publisher)' +p340998 +sg291134 +S'Rosa Parks' +p340999 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341000 +sa(dp341001 +g291130 +g27 +sg291132 +S'(publisher)' +p341002 +sg291134 +S'Core' +p341003 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341004 +sa(dp341005 +g291130 +g27 +sg291132 +S'(publisher)' +p341006 +sg291134 +S'"My Curves are not Mad"' +p341007 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341008 +sa(dp341009 +g291130 +g27 +sg291132 +S'(publisher)' +p341010 +sg291134 +S'Paris' +p341011 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341012 +sa(dp341013 +g291130 +g27 +sg291132 +S'(publisher)' +p341014 +sg291134 +S'Levana' +p341015 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341016 +sa(dp341017 +g291130 +g27 +sg291132 +S'(publisher)' +p341018 +sg291134 +S'Wax-Wan (State)' +p341019 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341020 +sa(dp341021 +g291130 +g27 +sg291132 +S'(publisher)' +p341022 +sg291134 +S'Irving Blum Memorial Edition' +p341023 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341024 +sa(dp341025 +g291130 +g27 +sg291132 +S'(publisher)' +p341026 +sg291134 +S'Casa Cornu (First Version)' +p341027 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341028 +sa(dp341029 +g291130 +g27 +sg291132 +S'(publisher)' +p341030 +sg291134 +S'Empress of India II' +p341031 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341032 +sa(dp341033 +g291130 +g27 +sg291132 +S'(publisher)' +p341034 +sg291134 +S'Tetuan III' +p341035 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341036 +sa(dp341037 +g291130 +g27 +sg291132 +S'(publisher)' +p341038 +sg291134 +S'Union Pacific' +p341039 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341040 +sa(dp341041 +g291130 +g27 +sg291132 +S'(publisher)' +p341042 +sg291134 +S'Six Mile Bottom' +p341043 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341044 +sa(dp341045 +g291130 +g27 +sg291132 +S'(publisher)' +p341046 +sg291134 +S'Marquis de Portago' +p341047 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341048 +sa(dp341049 +g291130 +g27 +sg291132 +S'(publisher)' +p341050 +sg291134 +S'Averroes' +p341051 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341052 +sa(dp341053 +g291130 +g27 +sg291132 +S'(publisher)' +p341054 +sg291134 +S'Casa Cornu' +p341055 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341056 +sa(dp341057 +g291130 +g27 +sg291132 +S'(publisher)' +p341058 +sg291134 +S'Luis Miguel Dominguin' +p341059 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341060 +sa(dp341061 +g291130 +g27 +sg291132 +S'(publisher)' +p341062 +sg291134 +S'Avicenna' +p341063 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341064 +sa(dp341065 +g291130 +g27 +sg291132 +S'(publisher)' +p341066 +sg291134 +S'Kingsbury Run' +p341067 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341068 +sa(dp341069 +g291130 +g27 +sg291132 +S'(publisher)' +p341070 +sg291134 +S'Agua Caliente' +p341071 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341072 +sa(dp341073 +g291130 +g27 +sg291132 +S'(publisher)' +p341074 +sg291134 +S'York Factory I' +p341075 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341076 +sa(dp341077 +g291130 +g27 +sg291132 +S'(publisher)' +p341078 +sg291134 +S'Untitled (Angriff)' +p341079 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341080 +sa(dp341081 +g291130 +g27 +sg291132 +S'(publisher)' +p341082 +sg291134 +S'Palmito Ranch' +p341083 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341084 +sa(dp341085 +g291130 +g27 +sg291132 +S'(publisher)' +p341086 +sg291134 +S'Hampton Roads' +p341087 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341088 +sa(dp341089 +g291130 +g27 +sg291132 +S'(publisher)' +p341090 +sg291134 +S'New Madrid' +p341091 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341092 +sa(dp341093 +g291130 +g27 +sg291132 +S'(publisher)' +p341094 +sg291134 +S'Island No. 10' +p341095 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341096 +sa(dp341097 +g291130 +g27 +sg291132 +S'(publisher)' +p341098 +sg291134 +S'River of Ponds IV' +p341099 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341100 +sa(dp341101 +g291130 +g27 +sg291132 +S'(publisher)' +p341102 +sg291134 +S'River of Ponds III' +p341103 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341104 +sa(dp341105 +g291130 +g27 +sg291132 +S'(publisher)' +p341106 +sg291134 +S'Ouray' +p341107 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341108 +sa(dp341109 +g291130 +g27 +sg291132 +S'(publisher)' +p341110 +sg291134 +S'Lake City' +p341111 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341112 +sa(dp341113 +g291130 +g27 +sg291132 +S'(publisher)' +p341114 +sg291134 +S"Referendum '70" +p341115 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341116 +sa(dp341117 +g291130 +g27 +sg291132 +S'(publisher)' +p341118 +sg291134 +S'Empress of India I' +p341119 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341120 +sa(dp341121 +g291130 +g27 +sg291132 +S'(publisher)' +p341122 +sg291134 +S'Quathlamba II' +p341123 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341124 +sa(dp341125 +g291130 +g27 +sg291132 +S'(publisher)' +p341126 +sg291134 +S'Quathlamba I' +p341127 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341128 +sa(dp341129 +g291130 +g27 +sg291132 +S'(publisher)' +p341130 +sg291134 +S'Black Adder' +p341131 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341132 +sa(dp341133 +g291130 +g27 +sg291132 +S'(publisher)' +p341134 +sg291134 +S'Itata' +p341135 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341136 +sa(dp341137 +g291130 +g27 +sg291132 +S'(publisher)' +p341138 +sg291134 +S'Ifafa I' +p341139 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341140 +sa(dp341141 +g291130 +g27 +sg291132 +S'(publisher)' +p341142 +sg291134 +S'Furg' +p341143 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341144 +sa(dp341145 +g291130 +g27 +sg291132 +S'(publisher)' +p341146 +sg291134 +S'Suckers (State II)' +p341147 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341148 +sa(dp341149 +g291130 +g27 +sg291132 +S'(publisher)' +p341150 +sg291134 +S'Post' +p341151 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341152 +sa(dp341153 +g291130 +g27 +sg291132 +S'(publisher)' +p341154 +sg291134 +S'Bait' +p341155 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341156 +sa(dp341157 +g291130 +g27 +sg291132 +S'(publisher)' +p341158 +sg291134 +S'Earth Tie' +p341159 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341160 +sa(dp341161 +g291130 +g27 +sg291132 +S'(publisher)' +p341162 +sg291134 +S'Studies for Chinese Summerhall I' +p341163 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341164 +sa(dp341165 +g291130 +g27 +sg291132 +S'(publisher)' +p341166 +sg291134 +S'Studies for Chinese Summerhall IV' +p341167 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341168 +sa(dp341169 +g291130 +g27 +sg291132 +S'(publisher)' +p341170 +sg291134 +S'Studies for Chinese Summerhall V' +p341171 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341172 +sa(dp341173 +g291130 +g27 +sg291132 +S'(publisher)' +p341174 +sg291134 +S'Studies for Chinese Summerhall III' +p341175 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341176 +sa(dp341177 +g291130 +g27 +sg291132 +S'(publisher)' +p341178 +sg291134 +S'Studies for Chinese Summerhall II' +p341179 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341180 +sa(dp341181 +g291130 +g27 +sg291132 +S'(publisher)' +p341182 +sg291134 +S'Horn' +p341183 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341184 +sa(dp341185 +g291130 +g27 +sg291132 +S'(publisher)' +p341186 +sg291134 +S'Ape' +p341187 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341188 +sa(dp341189 +g291130 +g27 +sg291132 +S'(publisher)' +p341190 +sg291134 +S'Trust Zone' +p341191 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341192 +sa(dp341193 +g291130 +g27 +sg291132 +S'(publisher)' +p341194 +sg291134 +S'Earth Crust' +p341195 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341196 +sa(dp341197 +g291130 +g27 +sg291132 +S'(publisher)' +p341198 +sg291134 +S'Spore' +p341199 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341200 +sa(dp341201 +g291130 +g27 +sg291132 +S'(publisher)' +p341202 +sg291134 +S'Test Stone #7' +p341203 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341204 +sa(dp341205 +g291130 +g27 +sg291132 +S'(publisher)' +p341206 +sg291134 +S'Test Stone #2' +p341207 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341208 +sa(dp341209 +g291130 +g27 +sg291132 +S'(publisher)' +p341210 +sg291134 +S'Test Stone #4' +p341211 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341212 +sa(dp341213 +g291130 +g27 +sg291132 +S'(publisher)' +p341214 +sg291134 +S'Test Stone #3' +p341215 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341216 +sa(dp341217 +g291130 +g27 +sg291132 +S'(publisher)' +p341218 +sg291134 +S'Still' +p341219 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341220 +sa(dp341221 +g291130 +g27 +sg291132 +S'(publisher)' +p341222 +sg291134 +S'Waves' +p341223 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341224 +sa(dp341225 +g291130 +g27 +sg291132 +S'(publisher)' +p341226 +sg291134 +S'Banner' +p341227 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341228 +sa(dp341229 +g291130 +g27 +sg291132 +S'(publisher)' +p341230 +sg291134 +S'Moon Rose' +p341231 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341232 +sa(dp341233 +g291130 +g27 +sg291132 +S'(publisher)' +p341234 +sg291134 +S'Sky Hook' +p341235 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341236 +sa(dp341237 +g291130 +g27 +sg291132 +S'(publisher)' +p341238 +sg291134 +S'Sack' +p341239 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341240 +sa(dp341241 +g291130 +g27 +sg291132 +S'(publisher)' +p341242 +sg291134 +S'Shell' +p341243 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341244 +sa(dp341245 +g291130 +g27 +sg291132 +S'(publisher)' +p341246 +sg291134 +S'Medallion' +p341247 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341248 +sa(dp341249 +g291130 +g27 +sg291132 +S'(publisher)' +p341250 +sg291134 +S'Marsh' +p341251 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341252 +sa(dp341253 +g291130 +g27 +sg291132 +S'(publisher)' +p341254 +sg291134 +S'Horsefeathers Thirteen - I' +p341255 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341256 +sa(dp341257 +g291130 +g27 +sg291132 +S'(publisher)' +p341258 +sg291134 +S'Horsefeathers Thirteen - II' +p341259 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341260 +sa(dp341261 +g291130 +g27 +sg291132 +S'(publisher)' +p341262 +sg291134 +S'Hind' +p341263 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341264 +sa(dp341265 +g291130 +g27 +sg291132 +S'(publisher)' +p341266 +sg291134 +S'Vale' +p341267 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341268 +sa(dp341269 +g291130 +g27 +sg291132 +S'(publisher)' +p341270 +sg291134 +S'Roan' +p341271 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341272 +sa(dp341273 +g291130 +g27 +sg291132 +S'(publisher)' +p341274 +sg291134 +S'Page 4' +p341275 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341276 +sa(dp341277 +g291130 +g27 +sg291132 +S'(publisher)' +p341278 +sg291134 +S'Page 3' +p341279 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341280 +sa(dp341281 +g291130 +g27 +sg291132 +S'(publisher)' +p341282 +sg291134 +S'Page 1' +p341283 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341284 +sa(dp341285 +g291130 +g27 +sg291132 +S'(publisher)' +p341286 +sg291134 +S'White Walk' +p341287 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341288 +sa(dp341289 +g291130 +g27 +sg291132 +S'(publisher)' +p341290 +sg291134 +S'Scow' +p341291 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341292 +sa(dp341293 +g291130 +g27 +sg291132 +S'(publisher)' +p341294 +sg291134 +S'Mule' +p341295 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341296 +sa(dp341297 +g291130 +g27 +sg291132 +S'(publisher)' +p341298 +sg291134 +S'Plus Fours' +p341299 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341300 +sa(dp341301 +g291130 +g27 +sg291132 +S'(publisher)' +p341302 +sg291134 +S'Scent' +p341303 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341304 +sa(dp341305 +g291130 +g27 +sg291132 +S'(publisher)' +p341306 +sg291134 +S'Snake Eyes' +p341307 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341308 +sa(dp341309 +g291130 +g27 +sg291132 +S'(publisher)' +p341310 +sg291134 +S'Hard Eight' +p341311 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341312 +sa(dp341313 +g291130 +g27 +sg291132 +S'(publisher)' +p341314 +sg291134 +S'Box Cars' +p341315 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341316 +sa(dp341317 +g291130 +g27 +sg291132 +S'(publisher)' +p341318 +sg291134 +S'Junction' +p341319 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341320 +sa(dp341321 +g291130 +g27 +sg291132 +S'(publisher)' +p341322 +sg291134 +S'Charter' +p341323 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341324 +sa(dp341325 +g291130 +g27 +sg291132 +S'(publisher)' +p341326 +sg291134 +S'Quorum' +p341327 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341328 +sa(dp341329 +g291130 +g27 +sg291132 +S'(publisher)' +p341330 +sg291134 +S'Romances (Pomegranate)' +p341331 +sg291136 +g27 +sg291137 +S'Artist Information (' +p341332 +sa(dp341333 +g291130 +S'graphite, felt-tip marker, colored pencil, and ball-point pen on tracing paper and wove paper; attached with staples' +p341334 +sg291132 +S'c. 1983/1985' +p341335 +sg291134 +S'Sketch for "Building - Blocks for a Doorway"' +p341336 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341337 +sa(dp341338 +g291130 +S'graphite on graph paper' +p341339 +sg291132 +S'c. 1983/1985' +p341340 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (P)' +p341341 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341342 +sa(dp341343 +g291130 +S'graphite on graph paper' +p341344 +sg291132 +S'c. 1983/1985' +p341345 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (O)' +p341346 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341347 +sa(dp341348 +g291130 +S'graphite on graph paper' +p341349 +sg291132 +S'c. 1983/1985' +p341350 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (P)' +p341351 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341352 +sa(dp341353 +g291130 +S'graphite on graph paper' +p341354 +sg291132 +S'c. 1983/1985' +p341355 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (O)' +p341356 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341357 +sa(dp341358 +g291130 +S'graphite on graph paper' +p341359 +sg291132 +S'c. 1983/1985' +p341360 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (C)' +p341361 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341362 +sa(dp341363 +g291130 +S'graphite on graph paper' +p341364 +sg291132 +S'c. 1983/1985' +p341365 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (D)' +p341366 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341367 +sa(dp341368 +g291130 +S'graphite on graph paper' +p341369 +sg291132 +S'c. 1983/1985' +p341370 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (A)' +p341371 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341372 +sa(dp341373 +g291130 +S'graphite on graph paper' +p341374 +sg291132 +S'c. 1983/1985' +p341375 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (U)' +p341376 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341377 +sa(dp341378 +g291130 +S'graphite on graph paper' +p341379 +sg291132 +S'c. 1983/1985' +p341380 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (T)' +p341381 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341382 +sa(dp341383 +g291130 +S'graphite on graph paper' +p341384 +sg291132 +S'c. 1983/1985' +p341385 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (P)' +p341386 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341387 +sa(dp341388 +g291130 +S'felt-tip pen on graph paper' +p341389 +sg291132 +S'c. 1983/1985' +p341390 +sg291134 +S'Sketch for "Building - Blocks for a Doorway"' +p341391 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341392 +sa(dp341393 +g291130 +S'ball-point pen on graph paper' +p341394 +sg291132 +S'c. 1983/1985' +p341395 +sg291134 +S'Sketch for "Building - Blocks for a Doorway"' +p341396 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341397 +sa(dp341398 +g291130 +S'ball-point pen on graph paper' +p341399 +sg291132 +S'c. 1983/1985' +p341400 +sg291134 +S'Sketch for "Building - Blocks for a Doorway"' +p341401 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341402 +sa(dp341403 +g291130 +S'ball-point pen, felt-tip pen, and graphite on graph paper' +p341404 +sg291132 +S'c. 1983/1985' +p341405 +sg291134 +S'Sketch for "Building - Blocks for a Doorway"' +p341406 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341407 +sa(dp341408 +g291130 +S'ball-point pen on graph paper' +p341409 +sg291132 +S'c. 1983/1985' +p341410 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (Doorway)' +p341411 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341412 +sa(dp341413 +g291130 +S'ball-point pen and graphite on graph paper' +p341414 +sg291132 +S'c. 1983/1985' +p341415 +sg291134 +S'Sketch for "Building - Blocks for a Doorway"' +p341416 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341417 +sa(dp341418 +g291130 +S'felt-tip pen, red and black ball-point pen, and graphite on graph paper' +p341419 +sg291132 +S'c. 1983/1985' +p341420 +sg291134 +S'Sketch for "Building - Blocks for a Doorway"' +p341421 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341422 +sa(dp341423 +g291130 +S'graphite, ball-point pen, and red colored pencil on graph paper' +p341424 +sg291132 +S'c. 1983/1985' +p341425 +sg291134 +S'Sketch for "Building - Blocks for a Doorway"' +p341426 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341427 +sa(dp341428 +g291130 +S'felt-tip pen, graphite, and White-Out on tracing paper' +p341429 +sg291132 +S'c. 1983/1985' +p341430 +sg291134 +S'Sketch for "Building - Blocks for a Doorway"' +p341431 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341432 +sa(dp341433 +g291130 +S'felt-tip pen and graphite on tracing paper' +p341434 +sg291132 +S'c. 1983/1985' +p341435 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (B)' +p341436 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341437 +sa(dp341438 +g291130 +S'graphite on tracing paper' +p341439 +sg291132 +S'c. 1983/1985' +p341440 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (C)' +p341441 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341442 +sa(dp341443 +g291130 +S'graphite on tracing paper' +p341444 +sg291132 +S'c. 1983/1985' +p341445 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (F)' +p341446 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341447 +sa(dp341448 +g291130 +S'graphite on tracing paper' +p341449 +sg291132 +S'c. 1983/1985' +p341450 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (I)' +p341451 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341452 +sa(dp341453 +g291130 +S'felt-tip pen and graphite on tracing paper' +p341454 +sg291132 +S'c. 1983/1985' +p341455 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (B)' +p341456 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341457 +sa(dp341458 +g291130 +S'graphite on tracing paper' +p341459 +sg291132 +S'c. 1983/1985' +p341460 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (F)' +p341461 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341462 +sa(dp341463 +g291130 +S'felt-tip pen, graphite, and White-Out on tracing paper' +p341464 +sg291132 +S'c. 1983/1985' +p341465 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (E)' +p341466 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341467 +sa(dp341468 +g291130 +S'graphite on graph paper' +p341469 +sg291132 +S'c. 1983/1985' +p341470 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (H)' +p341471 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341472 +sa(dp341473 +g291130 +S'graphite on graph paper' +p341474 +sg291132 +S'c. 1983/1985' +p341475 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (A)' +p341476 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341477 +sa(dp341478 +g291130 +S'graphite on tracing paper' +p341479 +sg291132 +S'c. 1983/1985' +p341480 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (M)' +p341481 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341482 +sa(dp341483 +g291130 +S'graphite on graph paper' +p341484 +sg291132 +S'c. 1983/1985' +p341485 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (B)' +p341486 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341487 +sa(dp341488 +g291130 +S'graphite on tracing paper' +p341489 +sg291132 +S'c. 1983/1985' +p341490 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (B)' +p341491 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341492 +sa(dp341493 +g291130 +S'graphite on tracing paper' +p341494 +sg291132 +S'c. 1983/1985' +p341495 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (S)' +p341496 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341497 +sa(dp341498 +g291130 +S'felt-tip and graphite on tracing paper' +p341499 +sg291132 +S'c. 1983/1985' +p341500 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (C)' +p341501 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341502 +sa(dp341503 +g291130 +S'graphite on tracing paper' +p341504 +sg291132 +S'c. 1983/1985' +p341505 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (C)' +p341506 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341507 +sa(dp341508 +g291130 +S'graphite on tracing paper' +p341509 +sg291132 +S'c. 1983/1985' +p341510 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (P)' +p341511 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341512 +sa(dp341513 +g291130 +S'graphite on tracing paper' +p341514 +sg291132 +S'c. 1983/1985' +p341515 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (A)' +p341516 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341517 +sa(dp341518 +g291130 +S'graphite on tracing paper' +p341519 +sg291132 +S'c. 1983/1985' +p341520 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (E)' +p341521 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341522 +sa(dp341523 +g291130 +S'graphite on tracing paper' +p341524 +sg291132 +S'c. 1983/1985' +p341525 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (P)' +p341526 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341527 +sa(dp341528 +g291130 +S'graphite on tracing paper' +p341529 +sg291132 +S'c. 1983/1985' +p341530 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (T)' +p341531 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341532 +sa(dp341533 +g291130 +S'felt-tip pen and graphite on tracing paper' +p341534 +sg291132 +S'c. 1983/1985' +p341535 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (A)' +p341536 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341537 +sa(dp341538 +g291130 +S'graphite on tracing paper' +p341539 +sg291132 +S'c. 1983/1985' +p341540 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (D)' +p341541 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341542 +sa(dp341543 +g291130 +S'felt-tip pen and graphite on tracing paper' +p341544 +sg291132 +S'c. 1983/1985' +p341545 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (E)' +p341546 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341547 +sa(dp341548 +g291130 +S'graphite on tracing paper' +p341549 +sg291132 +S'c. 1983/1985' +p341550 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (G)' +p341551 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341552 +sa(dp341553 +g291130 +S'graphite on tracing paper' +p341554 +sg291132 +S'c. 1983/1985' +p341555 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (I)' +p341556 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341557 +sa(dp341558 +g291130 +S'graphite on tracing paper' +p341559 +sg291132 +S'c. 1983/1985' +p341560 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (O)' +p341561 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341562 +sa(dp341563 +g291130 +S'graphite on tracing paper' +p341564 +sg291132 +S'c. 1983/1985' +p341565 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (P)' +p341566 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341567 +sa(dp341568 +g291130 +S'graphite on tracing paper' +p341569 +sg291132 +S'c. 1983/1985' +p341570 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (U)' +p341571 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341572 +sa(dp341573 +g291130 +S'graphite on tracing paper' +p341574 +sg291132 +S'c. 1983/1985' +p341575 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (H)' +p341576 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341577 +sa(dp341578 +g291130 +S'felt-tip pen and graphite on tracing paper' +p341579 +sg291132 +S'c. 1983/1985' +p341580 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (D)' +p341581 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341582 +sa(dp341583 +g291130 +S'felt-tip pen and graphite on two sheets of tracing paper taped together' +p341584 +sg291132 +S'c. 1983/1985' +p341585 +sg291134 +S'Sketch for "Building - Blocks for a Doorway" (B)' +p341586 +sg291136 +g27 +sg291137 +S'Vito Acconci' +p341587 +sa(dp341588 +g291130 +S'graphite on wove paper' +p341589 +sg291132 +S'c. 1984/1986' +p341590 +sg291134 +S'Sketch for "The Sharing of Nameless"' +p341591 +sg291136 +g27 +sg291137 +S'Arakawa' +p341592 +sa(dp341593 +g291130 +S'graphite on wove paper' +p341594 +sg291132 +S'c. 1984/1986' +p341595 +sg291134 +S'Sketch for "The Sharing of Nameless"' +p341596 +sg291136 +g27 +sg291137 +S'Arakawa' +p341597 +sa(dp341598 +g291130 +S'graphite on wove paper' +p341599 +sg291132 +S'c. 1984/1986' +p341600 +sg291134 +S'Sketch for "The Sharing of Nameless"' +p341601 +sg291136 +g27 +sg291137 +S'Arakawa' +p341602 +sa(dp341603 +g291130 +S'graphite on wove paper' +p341604 +sg291132 +S'c. 1984/1986' +p341605 +sg291134 +S'Sketch for "The Sharing of Nameless"' +p341606 +sg291136 +g27 +sg291137 +S'Arakawa' +p341607 +sa(dp341608 +g291130 +S'graphite on wove paper' +p341609 +sg291132 +S'c. 1984/1986' +p341610 +sg291134 +S'Sketch for "The Sharing of Nameless"' +p341611 +sg291136 +g27 +sg291137 +S'Arakawa' +p341612 +sa(dp341613 +g291130 +S'graphite on wove paper' +p341614 +sg291132 +S'c. 1984/1986' +p341615 +sg291134 +S'Sketch for "The Sharing of Nameless"' +p341616 +sg291136 +g27 +sg291137 +S'Arakawa' +p341617 +sa(dp341618 +g291130 +S'color heliorelief woodcut with painted additions in acrylic on Rives BFK White paper' +p341619 +sg291132 +S'1987/1989' +p341620 +sg291134 +S'Surprising Novel: Chapter One' +p341621 +sg291136 +g27 +sg291137 +S'Sandro Chia' +p341622 +sa(dp341623 +g291130 +S'color heliorelief woodcut with painted additions in acrylic on Rives BFK White paper' +p341624 +sg291132 +S'1987/1989' +p341625 +sg291134 +S'Surprising Novel: Chapter Two' +p341626 +sg291136 +g27 +sg291137 +S'Sandro Chia' +p341627 +sa(dp341628 +g291130 +S'color heliorelief woodcut with painted additions in acrylic on Rives BFK White paper' +p341629 +sg291132 +S'1987/1989' +p341630 +sg291134 +S'Surprising Novel: Chapter Three' +p341631 +sg291136 +g27 +sg291137 +S'Sandro Chia' +p341632 +sa(dp341633 +g291130 +S'color heliorelief woodcut with painted additions in acrylic on Rives BFK White paper' +p341634 +sg291132 +S'1987/1989' +p341635 +sg291134 +S'Surprising Novel: Chapter Four' +p341636 +sg291136 +g27 +sg291137 +S'Sandro Chia' +p341637 +sa(dp341638 +g291130 +S'color heliorelief woodcut with painted additions in acrylic on Rives BFK White paper' +p341639 +sg291132 +S'1987/1989' +p341640 +sg291134 +S'Surprising Novel: Chapter Five' +p341641 +sg291136 +g27 +sg291137 +S'Sandro Chia' +p341642 +sa(dp341643 +g291130 +S'color heliorelief woodcut with painted additions in acrylic on Rives BFK White paper' +p341644 +sg291132 +S'1987/1989' +p341645 +sg291134 +S'Surprising Novel: Chapter Six' +p341646 +sg291136 +g27 +sg291137 +S'Sandro Chia' +p341647 +sa(dp341648 +g291130 +S'color heliorelief woodcut with painted additions in acrylic on Rives BFK White paper' +p341649 +sg291132 +S'1987/1989' +p341650 +sg291134 +S'Surprising Novel: Chapter Seven' +p341651 +sg291136 +g27 +sg291137 +S'Sandro Chia' +p341652 +sa(dp341653 +g291130 +S'color heliorelief and handcarved woodcut on T.H. Saunders hot pressed paper [Bon a Tirer proof]' +p341654 +sg291132 +S'1987/1989' +p341655 +sg291134 +S'Father and Son Song' +p341656 +sg291136 +g27 +sg291137 +S'Sandro Chia' +p341657 +sa(dp341658 +g291130 +S'black felt-tip marker and pen and black ink on mylar' +p341659 +sg291132 +S'c. 1987/1989' +p341660 +sg291134 +S'Untitled' +p341661 +sg291136 +g27 +sg291137 +S'Sandro Chia' +p341662 +sa(dp341663 +g291130 +S'black felt-tip marker and graphite on mylar' +p341664 +sg291132 +S'1987' +p341665 +sg291134 +S'Drawing for "Flowers Fight"' +p341666 +sg291136 +g27 +sg291137 +S'Sandro Chia' +p341667 +sa(dp341668 +g291130 +S'black felt-tip marker, pen and black ink, and graphite on mylar' +p341669 +sg291132 +S'1987/1989' +p341670 +sg291134 +S'Drawing for "Surprising Novel: Chapter One" and "Surprising Novel: Chapter Five"' +p341671 +sg291136 +g27 +sg291137 +S'Sandro Chia' +p341672 +sa(dp341673 +g291130 +S'black felt-tip marker and graphite on mylar' +p341674 +sg291132 +S'1987/1989' +p341675 +sg291134 +S'Drawing for "Surprising Novel: Chapter Two"' +p341676 +sg291136 +g27 +sg291137 +S'Sandro Chia' +p341677 +sa(dp341678 +g291130 +S'black felt-tip marker, pen and black ink, and graphite on mylar' +p341679 +sg291132 +S'1987/1989' +p341680 +sg291134 +S'Drawing for "Surprising Novel: Chapter Three" and unidentified image' +p341681 +sg291136 +g27 +sg291137 +S'Sandro Chia' +p341682 +sa(dp341683 +g291130 +S'black felt-tip marker, pen and black ink, and graphite on mylar' +p341684 +sg291132 +S'1987/1989' +p341685 +sg291134 +S'Drawing for "Surprising Novel: Chapter Four"' +p341686 +sg291136 +g27 +sg291137 +S'Sandro Chia' +p341687 +sa(dp341688 +g291130 +S'black felt-tip marker, pen and black ink, and graphite on mylar' +p341689 +sg291132 +S'1987/1989' +p341690 +sg291134 +S'Drawing for "Surprising Novel: Chapter Six"' +p341691 +sg291136 +g27 +sg291137 +S'Sandro Chia' +p341692 +sa(dp341693 +g291130 +S'black felt-tip marker and graphite on mylar' +p341694 +sg291132 +S'1987/1989' +p341695 +sg291134 +S'Drawing for "Surprising Novel: Chapter Seven"' +p341696 +sg291136 +g27 +sg291137 +S'Sandro Chia' +p341697 +sa(dp341698 +g291130 +S'color felt-tip markers on mylar' +p341699 +sg291132 +S'1987' +p341700 +sg291134 +S'Drawing for "Father and Son Song" [left half]' +p341701 +sg291136 +g27 +sg291137 +S'Sandro Chia' +p341702 +sa(dp341703 +g291130 +S'color felt-tip markers on two sheets of joined mylar' +p341704 +sg291132 +S'1987' +p341705 +sg291134 +S'Drawing for "Father and Son Song" [right half]' +p341706 +sg291136 +g27 +sg291137 +S'Sandro Chia' +p341707 +sa(dp341708 +g291130 +S'lithograph in yellow, brown, black, and blue on German etching paper [workshop proof]' +p341709 +sg291132 +S'1970' +p341710 +sg291134 +S'Yellow Arch' +p341711 +sg291136 +g27 +sg291137 +S'Harrison Covington' +p341712 +sa(dp341713 +g291130 +S'etching in red and woodcut in black on two sheets of joined Arches Cover White paper' +p341714 +sg291132 +S'1987/1989' +p341715 +sg291134 +S'Red Dancer on the Western Shore' +p341716 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341717 +sa(dp341718 +g291130 +S'etching and woodcut with sandpapered highlights and handpainting in acrylic on Arches Cover White paper' +p341719 +sg291132 +S'1987/1989' +p341720 +sg291134 +S'The Foreign Plowman [part 1 of 5-part print]' +p341721 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341722 +sa(dp341723 +g291130 +S'etching and woodcut with sandpapered highlights and handpainting in acrylic on Arches Cover White paper' +p341724 +sg291132 +S'1987/1989' +p341725 +sg291134 +S'The Foreign Plowman [part 2 of 5-part print]' +p341726 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341727 +sa(dp341728 +g291130 +S'etching and woodcut with handpainting in acrylic on Arches Cover White paper' +p341729 +sg291132 +S'1987/1989' +p341730 +sg291134 +S'The Foreign Plowman [part 3 of 5-part print]' +p341731 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341732 +sa(dp341733 +g291130 +S'etching and woodcut with handpainting in acrylic on Arches Cover White paper' +p341734 +sg291132 +S'1987/1989' +p341735 +sg291134 +S'The Foreign Plowman [part 4 of 5-part print]' +p341736 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341737 +sa(dp341738 +g291130 +S'etching and woodcut with handpainting in acrylic on Arches Cover White paper' +p341739 +sg291132 +S'1987/1989' +p341740 +sg291134 +S'The Foreign Plowman [part 5 of 5-part print]' +p341741 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341742 +sa(dp341743 +g291130 +S'etching and woodcut in black with spitbite in gray-blue and hand-coloring in white acrylic on three sheets of joined Arches Cover White paper' +p341744 +sg291132 +S'1987/1989' +p341745 +sg291134 +S'Ravenna in November' +p341746 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341747 +sa(dp341748 +g291130 +S'ball-point pen on thin wove paper' +p341749 +sg291132 +S'c. 1987/1989' +p341750 +sg291134 +S'Sketch for mural project "The Foreign Plowman"' +p341751 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341752 +sa(dp341753 +g291130 +S'graphite on wove paper' +p341754 +sg291132 +S'c. 1987/1989' +p341755 +sg291134 +S'Sketch for folding screen "The Foreign Plowman"' +p341756 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341757 +sa(dp341758 +g291130 +S'color screenprint on buff Arches Cover paper' +p341759 +sg291132 +S'1982-1983' +p341760 +sg291134 +S'Background for "The Robe Goes to Town"' +p341761 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341762 +sa(dp341763 +g291130 +S'aquatint in black on wove paper [state proof]' +p341764 +sg291132 +S'1985/1987' +p341765 +sg291134 +S'Yellowheart and a Devil' +p341766 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341767 +sa(dp341768 +g291130 +S'aquatint in black on wove paper [separation proof]' +p341769 +sg291132 +S'1986' +p341770 +sg291134 +S'Hand Painting on the Mandala' +p341771 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341772 +sa(dp341773 +g291130 +S'aquatint and power tool drypoint in yellow, red, green, and blue on wove paper [state proof]' +p341774 +sg291132 +S'1986' +p341775 +sg291134 +S'Hand Painting on the Mandala' +p341776 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341777 +sa(dp341778 +g291130 +S'aquatint and power tool drypoint in black, red, yellow, green, and blue on wove paper [state proof]' +p341779 +sg291132 +S'1986' +p341780 +sg291134 +S'Hand Painting on the Mandala' +p341781 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341782 +sa(dp341783 +g291130 +S"brush and black ink with white paint on mylar; paper scrap with artist's note attached with masking tape; heart-shaped area removed from center" +p341784 +sg291132 +S'1985/1986' +p341785 +sg291134 +S'Mylar drawing for "Shellac on a Hand"' +p341786 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341787 +sa(dp341788 +g291130 +S'etching, aquatint, power tool drypoint in black with burnishing and gray wash on wove paper [state proof]' +p341789 +sg291132 +S'1985/1986' +p341790 +sg291134 +S'Black and White Blossom' +p341791 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341792 +sa(dp341793 +g291130 +S'etching, aquatint, and power tool drypoint in black with burnishing on wove paper [state proof]' +p341794 +sg291132 +S'1985/1986' +p341795 +sg291134 +S'Black and White Blossom' +p341796 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341797 +sa(dp341798 +g291130 +S'etching, aquatint, and power tool drypoint in black with burnishing on Arches Cover White paper [state proof]' +p341799 +sg291132 +S'1985/1987' +p341800 +sg291134 +S'My Nights in Santa Monica' +p341801 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341802 +sa(dp341803 +g291130 +S'etching and aquatint in black, green, and yellow with blue watercolor on Arches Cover White paper [state proof]' +p341804 +sg291132 +S'1985/1987' +p341805 +sg291134 +S'My Nights in Santa Monica' +p341806 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341807 +sa(dp341808 +g291130 +S'etching and aquatint in black with burnishing on Arches Cover White paper [state proof]' +p341809 +sg291132 +S'1985/1987' +p341810 +sg291134 +S'My Nights in Santa Monica' +p341811 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341812 +sa(dp341813 +g291130 +S'aquatint in black with burnishing on Arches Cover White paper [state proof]' +p341814 +sg291132 +S'1985/1987' +p341815 +sg291134 +S'My Nights in Santa Monica' +p341816 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341817 +sa(dp341818 +g291130 +S'etching and aquatint in black, blue, green, and yellow on Arches Cover Buff paper [working trial proof]' +p341819 +sg291132 +S'1985/1987' +p341820 +sg291134 +S'My Nights in Santa Monica' +p341821 +sg291136 +g27 +sg291137 +S'Jim Dine' +p341822 +sa(dp341823 +g291130 +S'graphite on 5 sheets of joined graph paper' +p341824 +sg291132 +S'c. 1974' +p341825 +sg291134 +S'Workshop drawing for Jim Dine\'s "Metamorphosis of a Plant into a Fan"' +p341826 +sg291136 +g27 +sg291137 +S'Graphicstudio, U.S.F.' +p341827 +sa(dp341828 +g291130 +S'soft-ground etching and aquatint in black on wove paper' +p341829 +sg291132 +S'1984' +p341830 +sg291134 +S'Untitled' +p341831 +sg291136 +g27 +sg291137 +S'Robert Fichter' +p341832 +sa(dp341833 +g291130 +S'color lithograph on wove paper' +p341834 +sg291132 +S'1984' +p341835 +sg291134 +S'Mutant Magic #1: Baby Gene Pool Takes the Stage' +p341836 +sg291136 +g27 +sg291137 +S'Robert Fichter' +p341837 +sa(dp341838 +g291130 +S'soft-ground etching and aquatint in black on Arches Cover White paper [trial proof]' +p341839 +sg291132 +S'1984' +p341840 +sg291134 +S'Pyramid Enigma' +p341841 +sg291136 +g27 +sg291137 +S'Robert Fichter' +p341842 +sa(dp341843 +g291130 +S'lithographic crayon with turpentine wash on mylar' +p341844 +sg291132 +S'c. 1984/1985' +p341845 +sg291134 +S'Untitled' +p341846 +sg291136 +g27 +sg291137 +S'Mike Glier' +p341847 +sa(dp341848 +g291130 +S'lithograph crayon with turpentine wash on mylar' +p341849 +sg291132 +S'c. 1984/1985' +p341850 +sg291134 +S'Untitled' +p341851 +sg291136 +g27 +sg291137 +S'Mike Glier' +p341852 +sa(dp341853 +g291130 +S"multi-color aquatint and drypoint with burnishing on Arches paper [artist's proof]" +p341854 +sg291132 +S'1984' +p341855 +sg291134 +S'Nude' +p341856 +sg291136 +g27 +sg291137 +S'Robert Gordy' +p341857 +sa(dp341858 +g291130 +S"multi-color aquatint and drypoint with burnishing on Rives BFK paper [artist's proof]" +p341859 +sg291132 +S'1984' +p341860 +sg291134 +S'Nude' +p341861 +sg291136 +g27 +sg291137 +S'Robert Gordy' +p341862 +sa(dp341863 +g291130 +S"multi-color aquatint and drypoint with burnishing on Rives BFK paper [artist's proof]" +p341864 +sg291132 +S'1984' +p341865 +sg291134 +S'Nude' +p341866 +sg291136 +g27 +sg291137 +S'Robert Gordy' +p341867 +sa(dp341868 +g291130 +S"multi-color aquatint and drypoint with burnishing on Rives BFK paper [artist's proof]" +p341869 +sg291132 +S'1984' +p341870 +sg291134 +S'Nude' +p341871 +sg291136 +g27 +sg291137 +S'Robert Gordy' +p341872 +sa(dp341873 +g291130 +S"multi-color aquatint with burnishing on Rives BFK paper [artist's proof]" +p341874 +sg291132 +S'1984' +p341875 +sg291134 +S'Nude' +p341876 +sg291136 +g27 +sg291137 +S'Robert Gordy' +p341877 +sa(dp341878 +g291130 +S"aquatint and drypoint in black with burnishing on Rives BFK paper [artist's proof]" +p341879 +sg291132 +S'1984' +p341880 +sg291134 +S'Nude' +p341881 +sg291136 +g27 +sg291137 +S'Robert Gordy' +p341882 +sa(dp341883 +g291130 +S'graphite on tracing paper' +p341884 +sg291132 +S'1984' +p341885 +sg291134 +S'Drawing for "Nude"' +p341886 +sg291136 +g27 +sg291137 +S'Robert Gordy' +p341887 +sa(dp341888 +g291130 +S"aquatint in black on Rives BFK paper [artist's proof]" +p341889 +sg291132 +S'1984' +p341890 +sg291134 +S'Female Head' +p341891 +sg291136 +g27 +sg291137 +S'Robert Gordy' +p341892 +sa(dp341893 +g291130 +S"aquatint in black with burnishing on Rives BFK paper [artist's proof]" +p341894 +sg291132 +S'1984' +p341895 +sg291134 +S'Female Head' +p341896 +sg291136 +g27 +sg291137 +S'Robert Gordy' +p341897 +sa(dp341898 +g291130 +S"aquatint in black with burnishing on Rives BFK paper [artist's proof]" +p341899 +sg291132 +S'1984' +p341900 +sg291134 +S'Female Head' +p341901 +sg291136 +g27 +sg291137 +S'Robert Gordy' +p341902 +sa(dp341903 +g291130 +S"aquatint in black with burnishing on Rives BFK paper [artist's proof]" +p341904 +sg291132 +S'1984' +p341905 +sg291134 +S'Female Head' +p341906 +sg291136 +g27 +sg291137 +S'Robert Gordy' +p341907 +sa(dp341908 +g291130 +S"aquatint in shades of black with burnishing on wove paper [artist's proof]" +p341909 +sg291132 +S'1984' +p341910 +sg291134 +S'Female Head' +p341911 +sg291136 +g27 +sg291137 +S'Robert Gordy' +p341912 +sa(dp341913 +g291130 +S"aquatint in shades of black with burnishing on Rives BFK paper [artist's proof]" +p341914 +sg291132 +S'1984' +p341915 +sg291134 +S'Female Head' +p341916 +sg291136 +g27 +sg291137 +S'Robert Gordy' +p341917 +sa(dp341918 +g291130 +S'graphite on tracing paper' +p341919 +sg291132 +S'1984' +p341920 +sg291134 +S'Drawing for "Female Head"' +p341921 +sg291136 +g27 +sg291137 +S'Robert Gordy' +p341922 +sa(dp341923 +g291130 +S'5-color lithograph on German Etching paper [workshop proof]' +p341924 +sg291132 +S'1970' +p341925 +sg291134 +S'Truck' +p341926 +sg291136 +g27 +sg291137 +S'Jeff Kronsnoble' +p341927 +sa(dp341928 +g291130 +S'soft-ground etching and etching in gray on wove paper [Bon a Tirer proof]' +p341929 +sg291132 +S'1988' +p341930 +sg291134 +S'Friendship Page' +p341931 +sg291136 +g27 +sg291137 +S'Alfred Leslie' +p341932 +sa(dp341933 +g291130 +S'soft-ground etching in gray on wove paper [Bon a Tirer proof]' +p341934 +sg291132 +S'1985' +p341935 +sg291134 +S"Sophia's Page" +p341936 +sg291136 +g27 +sg291137 +S'Alfred Leslie' +p341937 +sa(dp341938 +g291130 +S'graphite on wove paper' +p341939 +sg291132 +S'unknown date\n' +p341940 +sg291134 +S'Practice Signatures' +p341941 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p341942 +sa(dp341943 +g291130 +S'graphite and colored pencil in red and blue on mylar' +p341944 +sg291132 +S'c. 1986/1988' +p341945 +sg291134 +S'Workshop drawing for Roy Lichtenstein\'s "Brushstroke Chair"' +p341946 +sg291136 +g27 +sg291137 +S'Graphicstudio, U.S.F.' +p341947 +sa(dp341948 +g291130 +S'graphite and colored pencil in red, green, and blue on mylar' +p341949 +sg291132 +S'c. 1986/1988' +p341950 +sg291134 +S'Workshop drawing for Roy Lichtenstein\'s "Brushstroke Chair"' +p341951 +sg291136 +g27 +sg291137 +S'Graphicstudio, U.S.F.' +p341952 +sa(dp341953 +g291130 +S'graphite and colored pencil in red and blue on mylar' +p341954 +sg291132 +S'c. 1986/1988' +p341955 +sg291134 +S'Workshop drawing for Roy Lichtenstein\'s "Brushstroke Ottoman"' +p341956 +sg291136 +g27 +sg291137 +S'Graphicstudio, U.S.F.' +p341957 +sa(dp341958 +g291130 +S'graphite and colored pencil in blue, red, and green on mylar' +p341959 +sg291132 +S'c. 1986/1988' +p341960 +sg291134 +S'Workshop drawing for Roy Lichtenstein\'s "Brushstroke Ottoman"' +p341961 +sg291136 +g27 +sg291137 +S'Graphicstudio, U.S.F.' +p341962 +sa(dp341963 +g291130 +S'6-color lithograph on German Etching paper [workshop proof]' +p341964 +sg291132 +S'1969' +p341965 +sg291134 +S'A Predestined Meeting' +p341966 +sg291136 +g27 +sg291137 +S'Bryn Manley' +p341967 +sa(dp341968 +g291130 +S'photogravure in black on Rives BFK White paper [trial proof]' +p341969 +sg291132 +S'unknown date\n' +p341970 +sg291134 +S'Untitled' +p341971 +sg291136 +g27 +sg291137 +S'Robert Mapplethorpe' +p341972 +sa(dp341973 +g291130 +S'lithograph in black on German Etching paper [workshop proof]' +p341974 +sg291132 +S'1970/1971' +p341975 +sg291134 +S'Untitled' +p341976 +sg291136 +g27 +sg291137 +S'Bruce Marsh' +p341977 +sa(dp341978 +g291130 +S'lithograph in black, pink, and gold with embossing on German Etching paper [workshop proof]' +p341979 +sg291132 +S'1969/1970' +p341980 +sg291134 +S'Untitled' +p341981 +sg291136 +g27 +sg291137 +S'George Pappas' +p341982 +sa(dp341983 +g291130 +S'multi-color woodcut on Rives BFK White paper [color trial proof]' +p341984 +sg291132 +S'1987' +p341985 +sg291134 +S'Jerusalem, Temple Mount' +p341986 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p341987 +sa(dp341988 +g291130 +S'brush and black ink with graphite on mylar' +p341989 +sg291132 +S'1987' +p341990 +sg291134 +S'Drawing for "Jerusalem, Temple Mount"' +p341991 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p341992 +sa(dp341993 +g291130 +S'colored pencil and graphite on mylar' +p341994 +sg291132 +S'1987' +p341995 +sg291134 +S'Drawing for "Jerusalem, Temple Mount"' +p341996 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p341997 +sa(dp341998 +g291130 +S'brush and black ink with graphite on mylar' +p341999 +sg291132 +S'1987' +p342000 +sg291134 +S'Drawing for "Jerusalem, Temple Mount"' +p342001 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342002 +sa(dp342003 +g291130 +S'brush and black ink with graphite on mylar' +p342004 +sg291132 +S'1987' +p342005 +sg291134 +S'Drawing for "Jerusalem, Temple Mount"' +p342006 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342007 +sa(dp342008 +g291130 +S'brush and black ink on mylar' +p342009 +sg291132 +S'1987' +p342010 +sg291134 +S'Drawing for "Jerusalem, Temple Mount"' +p342011 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342012 +sa(dp342013 +g291130 +S'brush and black ink with graphite on mylar' +p342014 +sg291132 +S'1987' +p342015 +sg291134 +S'Drawing for "Jerusalem, Temple Mount"' +p342016 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342017 +sa(dp342018 +g291130 +S'brush and black ink with graphite and scratching on mylar' +p342019 +sg291132 +S'1987' +p342020 +sg291134 +S'Drawing for "Jerusalem, Temple Mount"' +p342021 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342022 +sa(dp342023 +g291130 +S'brush and black ink with graphite on mylar' +p342024 +sg291132 +S'1987' +p342025 +sg291134 +S'Drawing for "Jerusalem, Temple Mount"' +p342026 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342027 +sa(dp342028 +g291130 +S'brush and black ink with graphite on mylar' +p342029 +sg291132 +S'1987' +p342030 +sg291134 +S'Drawing for "Jerusalem, Temple Mount"' +p342031 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342032 +sa(dp342033 +g291130 +S'kodalith with drawn additions in felt-tip pen and brush and black ink on mylar' +p342034 +sg291132 +S'1987' +p342035 +sg291134 +S'Study for "Jerusalem, Temple Mount"' +p342036 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342037 +sa(dp342038 +g291130 +S'kodalith with drawn additions in felt-tip pen and brush and black ink on mylar' +p342039 +sg291132 +S'1987' +p342040 +sg291134 +S'Study for "Jerusalem, Temple Mount"' +p342041 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342042 +sa(dp342043 +g291130 +S'brush and black ink with graphite on mylar' +p342044 +sg291132 +S'1986' +p342045 +sg291134 +S'Drawing for "View of Rome"' +p342046 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342047 +sa(dp342048 +g291130 +S'brush and black ink with graphite on mylar' +p342049 +sg291132 +S'1986' +p342050 +sg291134 +S'Drawing for "View of Rome"' +p342051 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342052 +sa(dp342053 +g291130 +S'brush and black ink and pen and black ink with graphite on mylar' +p342054 +sg291132 +S'1986' +p342055 +sg291134 +S'Drawing for "View of Rome"' +p342056 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342057 +sa(dp342058 +g291130 +S'brush and black ink with graphite on mylar' +p342059 +sg291132 +S'1986' +p342060 +sg291134 +S'Drawing for "View of Rome"' +p342061 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342062 +sa(dp342063 +g291130 +S'aquatint in black on wove paper [working proof]' +p342064 +sg291132 +S'1986' +p342065 +sg291134 +S'View of Rome' +p342066 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342067 +sa(dp342068 +g291130 +S'multi-color direct gravure and aquatint with roulette work on Arches Cover White paper [color trial proof 2]' +p342069 +sg291132 +S'1986' +p342070 +sg291134 +S'View of Rome' +p342071 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342072 +sa(dp342073 +g291130 +S'multi-color aquatint with roulette work on wove paper [color working proof]' +p342074 +sg291132 +S'1986' +p342075 +sg291134 +S'View of Rome' +p342076 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342077 +sa(dp342078 +g291130 +S'multi-color aquatint on wove paper [color working proof]' +p342079 +sg291132 +S'1986' +p342080 +sg291134 +S'View of Rome' +p342081 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342082 +sa(dp342083 +g291130 +S'multi-color aquatint on wove paper (color trial proof]' +p342084 +sg291132 +S'1986' +p342085 +sg291134 +S'View of Rome' +p342086 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342087 +sa(dp342088 +g291130 +S'multi-color aquatint on wove paper [color working proof]' +p342089 +sg291132 +S'1986' +p342090 +sg291134 +S'View of Rome' +p342091 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342092 +sa(dp342093 +g291130 +S'multi-color direct gravure and aquatint with roulette work on Arches Cover white paper [color trial proof 7]' +p342094 +sg291132 +S'1986' +p342095 +sg291134 +S'View of Rome' +p342096 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342097 +sa(dp342098 +g291130 +S'etching and aquatint in gray in two shades of red-brown on T.H. Saunders paper [trial proof]' +p342099 +sg291132 +S'1983/1985' +p342100 +sg291134 +S'Models with Mirror' +p342101 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342102 +sa(dp342103 +g291130 +S'drawing on mylar' +p342104 +sg291132 +S'1987/1989' +p342105 +sg291134 +S'Drawing for "Jerusalem, Kidron Valley"' +p342106 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342107 +sa(dp342108 +g291130 +S'drawing on mylar' +p342109 +sg291132 +S'1987/1989' +p342110 +sg291134 +S'Drawing for "Jerusalem, Kidron Valley"' +p342111 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342112 +sa(dp342113 +g291130 +S'drawing on mylar' +p342114 +sg291132 +S'1987/1989' +p342115 +sg291134 +S'Drawing for "Jerusalem, Kidron Valley"' +p342116 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342117 +sa(dp342118 +g291130 +S'drawing on mylar' +p342119 +sg291132 +S'1987/1989' +p342120 +sg291134 +S'Drawing for "Jerusalem, Kidron Valley"' +p342121 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342122 +sa(dp342123 +g291130 +S'drawing on mylar' +p342124 +sg291132 +S'1987/1989' +p342125 +sg291134 +S'Drawing for "Jerusalem, Kidron Valley"' +p342126 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342127 +sa(dp342128 +g291130 +S'drawing on mylar' +p342129 +sg291132 +S'1987/1989' +p342130 +sg291134 +S'Drawing for "Jerusalem, Kidron Valley"' +p342131 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342132 +sa(dp342133 +g291130 +S'drawing on mylar' +p342134 +sg291132 +S'1987/1989' +p342135 +sg291134 +S'Drawing for "Jerusalem, Kidron Valley"' +p342136 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342137 +sa(dp342138 +g291130 +S'drawing on mylar' +p342139 +sg291132 +S'1987/1989' +p342140 +sg291134 +S'Drawing for "Jerusalem, Kidron Valley"' +p342141 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342142 +sa(dp342143 +g291130 +S'drawing on mylar' +p342144 +sg291132 +S'1987/1989' +p342145 +sg291134 +S'Drawing for "Jerusalem, Kidron Valley"' +p342146 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342147 +sa(dp342148 +g291130 +S'drawing on mylar' +p342149 +sg291132 +S'1987/1989' +p342150 +sg291134 +S'Drawing for "Jerusalem, Kidron Valley"' +p342151 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p342152 +sa(dp342153 +g291130 +S'acrylic and graphite on mylar' +p342154 +sg291132 +S'1986' +p342155 +sg291134 +S'Template for "The Kabuki Blushes"' +p342156 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p342157 +sa(dp342158 +g291130 +S'acrylic, graphite, and felt-tip marker on mylar' +p342159 +sg291132 +S'1986' +p342160 +sg291134 +S'Template for "Crosshatch and Mutation"' +p342161 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p342162 +sa(dp342163 +g291130 +S'acrylic and graphite on two sheets of joined mylar' +p342164 +sg291132 +S'1987' +p342165 +sg291134 +S'Template for "Sister Shrieks"' +p342166 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p342167 +sa(dp342168 +g291130 +S'acrylic and graphite on two sheets of joined mylar' +p342169 +sg291132 +S'1986' +p342170 +sg291134 +S'Template for "Flowers and Females"' +p342171 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p342172 +sa(dp342173 +g291130 +S'monotype in acrylic with lithographed collage additions on wove paper [Bon a Tirer proof]' +p342174 +sg291132 +S'1986' +p342175 +sg291134 +S'Untitled (BAT for an abandoned project)' +p342176 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p342177 +sa(dp342178 +g291130 +S'lithograph in black on wove paper [trial proof]' +p342179 +sg291132 +S'c. 1984' +p342180 +sg291134 +S'Theo Wujcik' +p342181 +sg291136 +g27 +sg291137 +S'Mark Stock' +p342182 +sa(dp342183 +g291130 +S'lithograph in black on wove paper [trial proof]' +p342184 +sg291132 +S'1984' +p342185 +sg291134 +S'Don Saff' +p342186 +sg291136 +g27 +sg291137 +S'Mark Stock' +p342187 +sa(dp342188 +g291130 +S'lithograph in black on wove paper [trial proof]' +p342189 +sg291132 +S'1984' +p342190 +sg291134 +S'Self-Portrait' +p342191 +sg291136 +g27 +sg291137 +S'Mark Stock' +p342192 +sa(dp342193 +g291130 +S'lithograph in black on wove paper [trial proof]' +p342194 +sg291132 +S'c. 1984' +p342195 +sg291134 +S'Brenda Woodward' +p342196 +sg291136 +g27 +sg291137 +S'Mark Stock' +p342197 +sa(dp342198 +g291130 +S'woodcut in black on Saunders Waterford paper' +p342199 +sg291132 +S'1987/1989' +p342200 +sg291134 +S'The Mead of Poetry #1' +p342201 +sg291136 +g27 +sg291137 +S'Jim Dine' +p342202 +sa(dp342203 +g291130 +S'woodcut in black on Saunders Waterford paper' +p342204 +sg291132 +S'1987/1989' +p342205 +sg291134 +S'The Mead of Poetry #2' +p342206 +sg291136 +g27 +sg291137 +S'Jim Dine' +p342207 +sa(dp342208 +g291130 +S'woodcut in black on Saunders Waterford paper' +p342209 +sg291132 +S'1987/1989' +p342210 +sg291134 +S'The Mead of Poetry #3' +p342211 +sg291136 +g27 +sg291137 +S'Jim Dine' +p342212 +sa(dp342213 +g291130 +S'23-color lithograph on chine colle with applied cast paper on Arches White paper; chine colle of Sekishu paper; bird cast from Arches pulp' +p342214 +sg291132 +S'1990' +p342215 +sg291134 +S'Canoptic Prestidigitation' +p342216 +sg291136 +g27 +sg291137 +S'Nancy Graves' +p342217 +sa(dp342218 +g291130 +S'watercolor, graphite, gouache, and gold leaf on cut paper mounted to foamcore' +p342219 +sg291132 +S'1990' +p342220 +sg291134 +S'Maquette for "Canoptic Legerdemain"' +p342221 +sg291136 +g27 +sg291137 +S'Nancy Graves' +p342222 +sa(dp342223 +g291130 +S'photogravure in three blacks on T.H. Saunders paper' +p342224 +sg291132 +S'1986/1990' +p342225 +sg291134 +S'John I' +p342226 +sg291136 +g27 +sg291137 +S'Chuck Close' +p342227 +sa(dp342228 +g291130 +S'color photographs mounted on mylar with transparent tape' +p342229 +sg291132 +S'1983' +p342230 +sg291134 +S'Study for "Chinese Summerhall"' +p342231 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342232 +sa(dp342233 +g291130 +S'9 x 8 inch glass carrier containing photographic negative' +p342234 +sg291132 +S'c. 1982' +p342235 +sg291134 +S'Negative for "Chinese Summerhall"' +p342236 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342237 +sa(dp342238 +g291130 +S'9 x 8 inch glass carrier containing photographic negative' +p342239 +sg291132 +S'c. 1982' +p342240 +sg291134 +S'Negative for "Chinese Summerhall"' +p342241 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342242 +sa(dp342243 +g291130 +S'9 x 8 inch glass carrier containing photographic negative' +p342244 +sg291132 +S'c. 1982' +p342245 +sg291134 +S'Negative for "Chinese Summerhall"' +p342246 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342247 +sa(dp342248 +g291130 +S'9 x 8 inch glass carrier containing photographic negative' +p342249 +sg291132 +S'c. 1982' +p342250 +sg291134 +S'Negative for "Chinese Summerhall"' +p342251 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342252 +sa(dp342253 +g291130 +S'9 x 8 inch glass carrier containing photographic negative' +p342254 +sg291132 +S'c. 1982' +p342255 +sg291134 +S'Negative for "Chinese Summerhall"' +p342256 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342257 +sa(dp342258 +g291130 +S'9 x 8 inch glass carrier containing photographic negative' +p342259 +sg291132 +S'c. 1982' +p342260 +sg291134 +S'Negative for "Chinese Summerhall"' +p342261 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342262 +sa(dp342263 +g291130 +S'9 x 8 inch glass carrier containing photographic negative' +p342264 +sg291132 +S'c. 1982' +p342265 +sg291134 +S'Negative for "Chinese Summerhall"' +p342266 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342267 +sa(dp342268 +g291130 +S'9 x 8 inch glass carrier containing photographic negative' +p342269 +sg291132 +S'c. 1982' +p342270 +sg291134 +S'Negative for "Chinese Summerhall"' +p342271 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342272 +sa(dp342273 +g291130 +S'9 x 8 inch glass carrier containing photographic negative' +p342274 +sg291132 +S'c. 1982' +p342275 +sg291134 +S'Negative for "Chinese Summerhall"' +p342276 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342277 +sa(dp342278 +g291130 +S'9 x 8 inch glass carrier containing photographic negative' +p342279 +sg291132 +S'c. 1982' +p342280 +sg291134 +S'Negative for "Chinese Summerhall"' +p342281 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342282 +sa(dp342283 +g291130 +S'9 x 8 inch glass carrier containing photographic negative' +p342284 +sg291132 +S'c. 1982' +p342285 +sg291134 +S'Negative for "Chinese Summerhall"' +p342286 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342287 +sa(dp342288 +g291130 +S'9 x 8 inch glass carrier containing photographic negative' +p342289 +sg291132 +S'c. 1982' +p342290 +sg291134 +S'Negative for "Chinese Summerhall"' +p342291 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342292 +sa(dp342293 +g291130 +S'9 x 8 inch glass carrier containing photographic negative' +p342294 +sg291132 +S'c. 1982' +p342295 +sg291134 +S'Negative for "Chinese Summerhall"' +p342296 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342297 +sa(dp342298 +g291130 +S'9 x 8 inch glass carrier containing photographic negative' +p342299 +sg291132 +S'c. 1982' +p342300 +sg291134 +S'Negative for "Chinese Summerhall"' +p342301 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342302 +sa(dp342303 +g291130 +S'9 x 8 inch glass carrier containing photographic negative' +p342304 +sg291132 +S'c. 1982' +p342305 +sg291134 +S'Negative for "Chinese Summerhall"' +p342306 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342307 +sa(dp342308 +g291130 +S'9 x 8 inch glass carrier containing photographic negative' +p342309 +sg291132 +S'c. 1982' +p342310 +sg291134 +S'Negative for "Chinese Summerhall"' +p342311 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342312 +sa(dp342313 +g291130 +S'5 x 5 inch glass carrier containing photographic negative' +p342314 +sg291132 +S'c. 1982' +p342315 +sg291134 +S'Negative for "Chinese Summerhall"' +p342316 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342317 +sa(dp342318 +g291130 +S'5 x 5 inch glass carrier containing photographic negative' +p342319 +sg291132 +S'c. 1982' +p342320 +sg291134 +S'Negative for "Chinese Summerhall"' +p342321 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342322 +sa(dp342323 +g291130 +S'5 x 5 inch glass carrier containing photographic negative' +p342324 +sg291132 +S'c. 1982' +p342325 +sg291134 +S'Negative for "Chinese Summerhall"' +p342326 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342327 +sa(dp342328 +g291130 +S'5 x 5 inch glass carrier containing photographic negative' +p342329 +sg291132 +S'c. 1982' +p342330 +sg291134 +S'Negative for "Chinese Summerhall"' +p342331 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342332 +sa(dp342333 +g291130 +S'5 x 5 inch glass carrier containing photographic negative' +p342334 +sg291132 +S'c. 1982' +p342335 +sg291134 +S'Negative for "Chinese Summerhall"' +p342336 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342337 +sa(dp342338 +g291130 +S'5 x 5 inch glass carrier containing photographic negative' +p342339 +sg291132 +S'c. 1982' +p342340 +sg291134 +S'Negative for "Chinese Summerhall"' +p342341 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342342 +sa(dp342343 +g291130 +S'5 x 5 inch glass carrier containing photographic negative' +p342344 +sg291132 +S'c. 1982' +p342345 +sg291134 +S'Negative for "Chinese Summerhall"' +p342346 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342347 +sa(dp342348 +g291130 +S'5 x 5 inch glass carrier containing photographic negative' +p342349 +sg291132 +S'c. 1982' +p342350 +sg291134 +S'Negative for "Chinese Summerhall"' +p342351 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342352 +sa(dp342353 +g291130 +S'5 x 5 inch glass carrier containing photographic negative' +p342354 +sg291132 +S'c. 1982' +p342355 +sg291134 +S'Negative for "Chinese Summerhall"' +p342356 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342357 +sa(dp342358 +g291130 +S'5 x 5 inch glass carrier containing photographic negative' +p342359 +sg291132 +S'c. 1982' +p342360 +sg291134 +S'Negative for "Chinese Summerhall"' +p342361 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342362 +sa(dp342363 +g291130 +S'4 x 5 inch Beseler carrier containing photographic negative' +p342364 +sg291132 +S'c. 1982' +p342365 +sg291134 +S'Negative for "Chinese Summerhall"' +p342366 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342367 +sa(dp342368 +g291130 +S'4 x 5 inch Beseler carrier containing photographic negative' +p342369 +sg291132 +S'c. 1982' +p342370 +sg291134 +S'Negative for "Chinese Summerhall"' +p342371 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342372 +sa(dp342373 +g291130 +S'4 x 5 inch Beseler carrier containing photographic negative' +p342374 +sg291132 +S'c. 1982' +p342375 +sg291134 +S'Negative for "Chinese Summerhall"' +p342376 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342377 +sa(dp342378 +g291130 +S'4 x 5 inch Beseler carrier containing photographic negative' +p342379 +sg291132 +S'c. 1982' +p342380 +sg291134 +S'Negative for "Chinese Summerhall"' +p342381 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342382 +sa(dp342383 +g291130 +S'4 x 5 inch Beseler carrier containing photographic negative' +p342384 +sg291132 +S'c. 1982' +p342385 +sg291134 +S'Negative for "Chinese Summerhall"' +p342386 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342387 +sa(dp342388 +g291130 +S'4 x 5 inch Beseler carrier containing photographic negative' +p342389 +sg291132 +S'c. 1982' +p342390 +sg291134 +S'Negative for "Chinese Summerhall"' +p342391 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342392 +sa(dp342393 +g291130 +S'4 x 5 inch Beseler carrier containing photographic negative' +p342394 +sg291132 +S'c. 1982' +p342395 +sg291134 +S'Negative for "Chinese Summerhall"' +p342396 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342397 +sa(dp342398 +g291130 +S'4 x 5 inch Beseler carrier containing photographic negative' +p342399 +sg291132 +S'c. 1982' +p342400 +sg291134 +S'Negative for "Chinese Summerhall"' +p342401 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342402 +sa(dp342403 +g291130 +S"cello, chrome-plated washtub, glycerine, Chinese scrollmaker's brush, mirrored Plexiglas" +p342404 +sg291132 +S'1985-1986' +p342405 +sg291134 +S'Tibetan Garden Song/ROCI TIBET' +p342406 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342407 +sa(dp342408 +g291130 +S'screenprinted enamel with painted additions on polished natural aluminum over a plywood substructure, with sterling silver and lapis lazuli' +p342409 +sg291132 +S'1985-1986' +p342410 +sg291134 +S'Araucan Mastaba' +p342411 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342412 +sa(dp342413 +g291130 +S'square bamboo, neon lights, brass electrical box, fittings, and cable' +p342414 +sg291132 +S'1986-1987' +p342415 +sg291134 +S'Bamhue' +p342416 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342417 +sa(dp342418 +g291130 +S'acrylic on canvas with aluminum frame plus object of aluminum and tin' +p342419 +sg291132 +S'1985' +p342420 +sg291134 +S'Altar Peace/ROCI MEXICO' +p342421 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342422 +sa(dp342423 +g291134 +S'Copperhead Grande/ROCI CHILE' +p342424 +sg291137 +S'Robert Rauschenberg' +p342425 +sg291130 +S'acrylic and tarnishes on copper' +p342426 +sg291132 +S'1985' +p342427 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a00001db.jpg' +p342428 +sg291136 +g27 +sa(dp342429 +g291130 +S'acrylic and collage on plywood panel with objects' +p342430 +sg291132 +S'1985' +p342431 +sg291134 +S'Urban/Interior Network/ROCI VENEZUELA' +p342432 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342433 +sa(dp342434 +g291130 +S'acrylic and fabric collages on fabric laminated paper mounted on aluminum support with objects' +p342435 +sg291132 +S'1986' +p342436 +sg291134 +S'Sino-Trolley/ROCI CHINA' +p342437 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342438 +sa(dp342439 +g291130 +S'acrylic and fabric collage on canvas' +p342440 +sg291132 +S'1987' +p342441 +sg291134 +S'Wall-Eyed Carp/ROCI JAPAN' +p342442 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342443 +sa(dp342444 +g291130 +S'enamel and acrylic on galvanized steel' +p342445 +sg291132 +S'1988' +p342446 +sg291134 +S'Cuban Acre/ROCI CUBA' +p342447 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342448 +sa(dp342449 +g291130 +S'acrylic and fabric collage on plywood panels' +p342450 +sg291132 +S'1990' +p342451 +sg291134 +S"Bach's Rocks (Bachs Steine)/ROCI BERLIN" +p342452 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342453 +sa(dp342454 +g291134 +S'Malaysian Flower Cave/ROCI MALAYSIA' +p342455 +sg291137 +S'Robert Rauschenberg' +p342456 +sg291130 +S'acrylic and fabric on galvanized steel' +p342457 +sg291132 +S'1990' +p342458 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a00001e0.jpg' +p342459 +sg291136 +g27 +sa(dp342460 +g291130 +g27 +sg291132 +S'(publisher)' +p342461 +sg291134 +S'Samarkand Stitches #1' +p342462 +sg291136 +g27 +sg291137 +S'Artist Information (' +p342463 +sa(dp342464 +g291130 +S'sewn fabric collage with screenprint' +p342465 +sg291132 +S'1988' +p342466 +sg291134 +S'Samarkand Stitches #2' +p342467 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342468 +sa(dp342469 +g291130 +g27 +sg291132 +S'(publisher)' +p342470 +sg291134 +S'Samarkand Stitches #3' +p342471 +sg291136 +g27 +sg291137 +S'Artist Information (' +p342472 +sa(dp342473 +g291130 +S'sewn fabric collage with screenprint' +p342474 +sg291132 +S'1988' +p342475 +sg291134 +S'Samarkand Stitches #4' +p342476 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342477 +sa(dp342478 +g291130 +S'sewn fabric collage with screenprint' +p342479 +sg291132 +S'1988' +p342480 +sg291134 +S'Samarkand Stitches #5' +p342481 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342482 +sa(dp342483 +g291130 +S'sewn fabric collage with screenprint' +p342484 +sg291132 +S'1988' +p342485 +sg291134 +S'Samarkand Stitches #6' +p342486 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342487 +sa(dp342488 +g291130 +S'sewn fabric collage with screenprint' +p342489 +sg291132 +S'1988' +p342490 +sg291134 +S'Samarkand Stitches #7' +p342491 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342492 +sa(dp342493 +g291130 +S'photogravure on chine coll? of rice paper on T.H. Saunders paper' +p342494 +sg291132 +S'1988' +p342495 +sg291134 +S'Soviet/American Array I' +p342496 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342497 +sa(dp342498 +g291130 +S'photogravure on chine coll? of Mulberry paper on T.H. Saunders paper' +p342499 +sg291132 +S'1988' +p342500 +sg291134 +S'Soviet/American Array II' +p342501 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342502 +sa(dp342503 +g291130 +S'photogravure on T.H. Saunders paper' +p342504 +sg291132 +S'1988' +p342505 +sg291134 +S'Soviet/American Array III' +p342506 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342507 +sa(dp342508 +g291130 +S'photogravure on T.H. Saunders paper' +p342509 +sg291132 +S'1988' +p342510 +sg291134 +S'Soviet/American Array IV' +p342511 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342512 +sa(dp342513 +g291130 +S'photogravure on T.H. Saunders paper' +p342514 +sg291132 +S'1988' +p342515 +sg291134 +S'Soviet/American Array V' +p342516 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342517 +sa(dp342518 +g291130 +S'photogravure on T.H. Saunders paper' +p342519 +sg291132 +S'1988' +p342520 +sg291134 +S'Soviet/American Array VI' +p342521 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342522 +sa(dp342523 +g291130 +S'photogravure' +p342524 +sg291132 +S'1988' +p342525 +sg291134 +S'Soviet/American Array VII' +p342526 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342527 +sa(dp342528 +g291130 +S'acrylic, fire wax, and chair on stainless steel' +p342529 +sg291132 +S'1990' +p342530 +sg291134 +S'Pegasits/ROCI USA (Wax Fire Works)' +p342531 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342532 +sa(dp342533 +g291130 +S'acrylic, enamel, and fire wax on stainless steel' +p342534 +sg291132 +S'1990' +p342535 +sg291134 +S'Narcissus/ROCI USA (Wax Fire Works)' +p342536 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342537 +sa(dp342538 +g291130 +S'acrylic, fire wax, and variegated brass leaf on stainless steel' +p342539 +sg291132 +S'1990' +p342540 +sg291134 +S'Swim/ROCI USA (Wax Fire Works)' +p342541 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342542 +sa(dp342543 +g291130 +S'acrylic and fire wax on stainless steel' +p342544 +sg291132 +S'1990' +p342545 +sg291134 +S'Seminole Host/ROCI USA (Wax Fire Works)' +p342546 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p342547 +sa(dp342548 +g291130 +S'6-color screenprint on PTI Supra paper' +p342549 +sg291132 +S'1990' +p342550 +sg291134 +S'For the Blue Sons of the Air' +p342551 +sg291136 +g27 +sg291137 +S'Sam Francis' +p342552 +sa(dp342553 +g291134 +S'Lesson Study on Jersey Coast' +p342554 +sg291137 +S'John La Farge' +p342555 +sg291130 +S'watercolor and gouache on wove paper' +p342556 +sg291132 +S'1881' +p342557 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a000095a.jpg' +p342558 +sg291136 +g27 +sa(dp342559 +g291134 +S'Bacchus and Ariadne' +p342560 +sg291137 +S'Giovanni Battista Tiepolo' +p342561 +sg291130 +S'pen and brown ink and brown wash over black chalk on laid paper' +p342562 +sg291132 +S'c. 1745' +p342563 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a0002861.jpg' +p342564 +sg291136 +g27 +sa(dp342565 +g291134 +S'Two Men in Masquerade Costumes: The Earth and a Parade Helmet' +p342566 +sg291137 +S'Stefano Della Bella' +p342567 +sg291130 +S'pen and brown ink over graphite on laid paper; laid down' +p342568 +sg291132 +S'c. 1645' +p342569 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a0002436.jpg' +p342570 +sg291136 +g27 +sa(dp342571 +g291134 +S'A Coffered Dome with Apollo and Phaeton' +p342572 +sg291137 +S'Felice Giani' +p342573 +sg291130 +S'pen and brown ink with gray, blue, and pink washes over black chalk on wove paper' +p342574 +sg291132 +S'c. 1787' +p342575 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e91.jpg' +p342576 +sg291136 +g27 +sa(dp342577 +g291130 +S'gelatin silver print' +p342578 +sg291132 +S'1951' +p342579 +sg291134 +S'City of London' +p342580 +sg291136 +g27 +sg291137 +S'Robert Frank' +p342581 +sa(dp342582 +g291130 +S'gelatin silver print' +p342583 +sg291132 +S'1952' +p342584 +sg291134 +S'London' +p342585 +sg291136 +g27 +sg291137 +S'Robert Frank' +p342586 +sa(dp342587 +g291130 +S'gelatin silver print' +p342588 +sg291132 +S'1951' +p342589 +sg291134 +S'London' +p342590 +sg291136 +g27 +sg291137 +S'Robert Frank' +p342591 +sa(dp342592 +g291130 +S'gelatin silver print' +p342593 +sg291132 +S'1953' +p342594 +sg291134 +S'Approaching New York Harbor' +p342595 +sg291136 +g27 +sg291137 +S'Robert Frank' +p342596 +sa(dp342597 +g291130 +S'gelatin silver print, 1977' +p342598 +sg291132 +S'1955' +p342599 +sg291134 +S'Parade--Hoboken, New Jersey' +p342600 +sg291136 +g27 +sg291137 +S'Robert Frank' +p342601 +sa(dp342602 +g291134 +S'An Allegory in Honor of Innocent X' +p342603 +sg291137 +S'Pietro Testa' +p342604 +sg291130 +S'etching on laid paper' +p342605 +sg291132 +S'1644' +p342606 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca33.jpg' +p342607 +sg291136 +g27 +sa(dp342608 +g291134 +S'Allegory of Africa' +p342609 +sg291137 +S'Fr\xc3\xa9d\xc3\xa9ric-Auguste Bartholdi' +p342610 +sg291130 +S'bronze' +p342611 +sg291132 +S'conceived 1863/1865, cast date unknown' +p342612 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00030/a0003031.jpg' +p342613 +sg291136 +g27 +sa(dp342614 +g291130 +S'woodcut on wove paper' +p342615 +sg291132 +S'1899' +p342616 +sg291134 +S'A Young Woman with Long Hair' +p342617 +sg291136 +g27 +sg291137 +S'Louis Valtat' +p342618 +sa(dp342619 +g291134 +S'Frederick North, Later Fifth Earl of Guilford, in Rome' +p342620 +sg291137 +S'Hugh Douglas Hamilton' +p342621 +sg291130 +S'pastel on paper mounted to canvas' +p342622 +sg291132 +S'late 1780s' +p342623 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a0002551.jpg' +p342624 +sg291136 +g27 +sa(dp342625 +g291134 +S'Banquet Piece with Mince Pie' +p342626 +sg291137 +S'Willem Claesz Heda' +p342627 +sg291130 +S'oil on canvas' +p342628 +sg291132 +S'1635' +p342629 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e61.jpg' +p342630 +sg291136 +S'Heda\'s largest known painting appears, at first sight, to extend the hospitality of a sumptuous feast. Yet platters and knives teeter precariously over the table\'s edge, while goblets and compotes already have toppled. Perishable or expended items symbolize life\'s transience: a snuffed–out candle, spilled olives, half–eaten minced pie, and a lemon, only half–peeled.\n From the 1620s to the late 1640s, Dutch artists preferred monochromatic tones for their still lifes and landscapes. Heda was a master of such cool gray or warm tan color schemes. Here, the gold, silver, pewter, and Venetian glass play against a neutral setting and a white tablecloth. Somewhat later in the mid–1600s, brighter colors would characterize the classical period of Dutch painting.\n A specialist in banquet still lifes, Heda also painted "breakfast pieces" and, as a writer in 1648 noted, "fruit, and all kinds of knick–knacks." Willem Claesz Heda taught several apprentices including his son, Gerrit Willemsz Heda (the sz at the end of many Dutch names is an abbreviation for szoon, meaning "son of"). Gerrit\'s \n ' +p342631 +sa(dp342632 +g291134 +S'The Garden of San Miniato near Florence' +p342633 +sg291137 +S'John Ruskin' +p342634 +sg291130 +S'watercolor and pen and black ink, heightened with white gouache, over graphite on wove paper laid down on thick, white paper' +p342635 +sg291132 +S'1845' +p342636 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00027/a00027a0.jpg' +p342637 +sg291136 +g27 +sa(dp342638 +g291134 +S'Martin Desjardins' +p342639 +sg291137 +S'Artist Information (' +p342640 +sg291130 +S'(artist after)' +p342641 +sg291132 +S'\n' +p342642 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d60a.jpg' +p342643 +sg291136 +g27 +sa(dp342644 +g291134 +S'Jan Maurits Quinkhard' +p342645 +sg291137 +S'Artist Information (' +p342646 +sg291130 +S'(artist after)' +p342647 +sg291132 +S'\n' +p342648 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d684.jpg' +p342649 +sg291136 +g27 +sa(dp342650 +g291134 +S'Francesco Bartolozzi' +p342651 +sg291137 +S'Artist Information (' +p342652 +sg291130 +S'(artist after)' +p342653 +sg291132 +S'\n' +p342654 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007838.jpg' +p342655 +sg291136 +g27 +sa(dp342656 +g291134 +S'Study for The Battle of La Hogue [recto]' +p342657 +sg291137 +S'Benjamin West' +p342658 +sg291130 +S'pen and brown ink on laid paper' +p342659 +sg291132 +S'1778' +p342660 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009f5.jpg' +p342661 +sg291136 +g27 +sa(dp342662 +g291134 +S'Study of Moses Striking the Rock and a Procession [verso]' +p342663 +sg291137 +S'Benjamin West' +p342664 +sg291130 +S'black chalk on laid paper' +p342665 +sg291132 +S'1778' +p342666 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009f6.jpg' +p342667 +sg291136 +g27 +sa(dp342668 +g291134 +S'The Ungrateful Son' +p342669 +sg291137 +S'Jean-Baptiste Greuze' +p342670 +sg291130 +S'red chalk on brown laid paper with framing line in black ink' +p342671 +sg291132 +S'c. 1770' +p342672 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a000254b.jpg' +p342673 +sg291136 +g27 +sa(dp342674 +g291134 +S"The Apostles' Creed" +p342675 +sg291137 +S'Giovanni Domenico Tiepolo' +p342676 +sg291130 +S'pen and brown ink and wash over charcoal on laid paper' +p342677 +sg291132 +S'1770s/1780s' +p342678 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00037/a00037f5.jpg' +p342679 +sg291136 +g27 +sa(dp342680 +g291130 +S'stainless steel' +p342681 +sg291132 +S'1981' +p342682 +sg291134 +S'Divided Square Oblique II' +p342683 +sg291136 +g27 +sg291137 +S'George Rickey' +p342684 +sa(dp342685 +g291130 +S'oil on paper' +p342686 +sg291132 +S'1966' +p342687 +sg291134 +S'Woman with a Hat' +p342688 +sg291136 +g27 +sg291137 +S'Willem de Kooning' +p342689 +sa(dp342690 +g291134 +S'Fran\xc3\xa7ois-Pascal-Simon, Baron G\xc3\xa9rard' +p342691 +sg291137 +S"Pierre-Jean David d'Angers" +p342692 +sg291130 +S'plaster' +p342693 +sg291132 +S'1836-c. 1838' +p342694 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a000243d.jpg' +p342695 +sg291136 +g27 +sa(dp342696 +g291134 +S'Pastoral Landscape' +p342697 +sg291137 +S'Asher Brown Durand' +p342698 +sg291130 +S'oil on canvas' +p342699 +sg291132 +S'1861' +p342700 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00000/a0000088.jpg' +p342701 +sg291136 +g27 +sa(dp342702 +g291134 +S'Saint George and the Dragon' +p342703 +sg291137 +S'Israhel van Meckenem' +p342704 +sg291130 +S'engraving on laid paper' +p342705 +sg291132 +S'c. 1465/1470' +p342706 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f60.jpg' +p342707 +sg291136 +g27 +sa(dp342708 +g291134 +S'The Adoration of the Shepherds' +p342709 +sg291137 +S'Master of the Adoration of the Shepherds' +p342710 +sg291130 +S'woodcut printed from two blocks on two sheets (joined) of laid paper' +p342711 +sg291132 +S'probably 1530/1540' +p342712 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ad/a000adad.jpg' +p342713 +sg291136 +g27 +sa(dp342714 +g291134 +S'Fortitude' +p342715 +sg291137 +S'Artist Information (' +p342716 +sg291130 +S'(artist after)' +p342717 +sg291132 +S'\n' +p342718 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac68.jpg' +p342719 +sg291136 +g27 +sa(dp342720 +g291130 +S'polyester resin' +p342721 +sg291132 +S'1969-1984' +p342722 +sg291134 +S"Site \xc3\xa0 l'homme assis" +p342723 +sg291136 +g27 +sg291137 +S'Jean Dubuffet' +p342724 +sa(dp342725 +g291130 +S'oil on canvas' +p342726 +sg291132 +S'1868' +p342727 +sg291134 +S'Landscape at Les P\xc3\xa2tis, Pontoise' +p342728 +sg291136 +g27 +sg291137 +S'Camille Pissarro' +p342729 +sa(dp342730 +g291134 +S'The Deliverance of the Demoniac of Constantinople by Saint John Chrysostom' +p342731 +sg291137 +S'Elisabetta Sirani' +p342732 +sg291130 +S'pen and brown ink and brown washes heightened with white over graphite on laid paper' +p342733 +sg291132 +S'c. 1659' +p342734 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a000747b.jpg' +p342735 +sg291136 +g27 +sa(dp342736 +g291130 +S'(artist)' +p342737 +sg291132 +S'\n' +p342738 +sg291134 +S'Les Memoires de Michel de Marolles, Abbe de Villeloin' +p342739 +sg291136 +g27 +sg291137 +S'Artist Information (' +p342740 +sa(dp342741 +g291134 +S'Michel de Marolles' +p342742 +sg291137 +S'Claude Mellan' +p342743 +sg291130 +S'engraving on laid paper' +p342744 +sg291132 +S'1648' +p342745 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00066/a00066d7.jpg' +p342746 +sg291136 +g27 +sa(dp342747 +g291134 +S'Claude de Marolles' +p342748 +sg291137 +S'Claude Mellan' +p342749 +sg291130 +S'engraving on laid paper' +p342750 +sg291132 +S'in or before 1656' +p342751 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00066/a00066d8.jpg' +p342752 +sg291136 +g27 +sa(dp342753 +g291130 +S'engraving on laid paper' +p342754 +sg291132 +S'in or before 1656' +p342755 +sg291134 +S'Equestrian Design' +p342756 +sg291136 +g27 +sg291137 +S'Michel Lasne' +p342757 +sa(dp342758 +g291130 +S'engraving on laid paper' +p342759 +sg291132 +S'1657' +p342760 +sg291134 +S'Michel de Marolles' +p342761 +sg291136 +g27 +sg291137 +S'Robert Nanteuil' +p342762 +sa(dp342763 +g291134 +S'The Discovery of the Tomb of Punchinello' +p342764 +sg291137 +S'Giovanni Battista Tiepolo' +p342765 +sg291130 +S'etching on laid paper tinted with yellow-green watercolor' +p342766 +sg291132 +S'early 1750s' +p342767 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000fa8.jpg' +p342768 +sg291136 +g27 +sa(dp342769 +g291134 +S'Study after Old Master' +p342770 +sg291137 +S'Elihu Vedder' +p342771 +sg291130 +S'pen and ink on wove paper' +p342772 +sg291132 +S'c. 1858' +p342773 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009eb.jpg' +p342774 +sg291136 +g27 +sa(dp342775 +g291134 +S'Study after Domenichino' +p342776 +sg291137 +S'Elihu Vedder' +p342777 +sg291130 +S'pen and brown ink on wove paper' +p342778 +sg291132 +S'c. 1858' +p342779 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009ed.jpg' +p342780 +sg291136 +g27 +sa(dp342781 +g291134 +S'Study after Old Master' +p342782 +sg291137 +S'Elihu Vedder' +p342783 +sg291130 +S'pen and brown ink and watercolor on wove paper' +p342784 +sg291132 +S'c. 1858' +p342785 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f108.jpg' +p342786 +sg291136 +g27 +sa(dp342787 +g291134 +S'Study after Gozzoli' +p342788 +sg291137 +S'Elihu Vedder' +p342789 +sg291130 +S'graphite and colored pencil on wove paper' +p342790 +sg291132 +S'1858' +p342791 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f105.jpg' +p342792 +sg291136 +g27 +sa(dp342793 +g291134 +S'Study of Hunter with Dogs' +p342794 +sg291137 +S'Elihu Vedder' +p342795 +sg291130 +S'graphite on laid paper' +p342796 +sg291132 +S'c. 1858' +p342797 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f104.jpg' +p342798 +sg291136 +g27 +sa(dp342799 +g291134 +S'Study of a Girl Reading' +p342800 +sg291137 +S'Elihu Vedder' +p342801 +sg291130 +S'graphite on wove paper' +p342802 +sg291132 +S'c. 1858' +p342803 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f103.jpg' +p342804 +sg291136 +g27 +sa(dp342805 +g291134 +S"Study of a Girl's Head" +p342806 +sg291137 +S'Elihu Vedder' +p342807 +sg291130 +S'graphite on wove paper' +p342808 +sg291132 +S'c. 1858' +p342809 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f101.jpg' +p342810 +sg291136 +g27 +sa(dp342811 +g291134 +S'Students in the Latin Quarter, Paris' +p342812 +sg291137 +S'Elihu Vedder' +p342813 +sg291130 +S'graphite and red colored pencil on green wove paper' +p342814 +sg291132 +S'c. 1858' +p342815 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009f2.jpg' +p342816 +sg291136 +g27 +sa(dp342817 +g291134 +S'Rome' +p342818 +sg291137 +S'Elihu Vedder' +p342819 +sg291130 +S'graphite on wove paper' +p342820 +sg291132 +S'1857' +p342821 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f102.jpg' +p342822 +sg291136 +g27 +sa(dp342823 +g291134 +S'Tuscany' +p342824 +sg291137 +S'Elihu Vedder' +p342825 +sg291130 +S'pen and black ink on blue wove paper' +p342826 +sg291132 +S'c. 1858' +p342827 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009ec.jpg' +p342828 +sg291136 +g27 +sa(dp342829 +g291134 +S'The Son and the Donkey' +p342830 +sg291137 +S'Elihu Vedder' +p342831 +sg291130 +S'graphite on wove paper laid down' +p342832 +sg291132 +S'1863' +p342833 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f107.jpg' +p342834 +sg291136 +g27 +sa(dp342835 +g291134 +S'Son and Donkey' +p342836 +sg291137 +S'Elihu Vedder' +p342837 +sg291130 +S'graphite on wove paper' +p342838 +sg291132 +S'c. 1859' +p342839 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0fe.jpg' +p342840 +sg291136 +g27 +sa(dp342841 +g291134 +S'The Parable of the Miller and the Donkey' +p342842 +sg291137 +S'Elihu Vedder' +p342843 +sg291130 +S'graphite on wove paper' +p342844 +sg291132 +S'c. 1859' +p342845 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f1/a000f100.jpg' +p342846 +sg291136 +g27 +sa(dp342847 +g291134 +S'Father and Son' +p342848 +sg291137 +S'Elihu Vedder' +p342849 +sg291130 +S'graphite on wove paper' +p342850 +sg291132 +S'c. 1859' +p342851 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0ff.jpg' +p342852 +sg291136 +g27 +sa(dp342853 +g291134 +S'Father and Son' +p342854 +sg291137 +S'Elihu Vedder' +p342855 +sg291130 +S'graphite on wove paper' +p342856 +sg291132 +S'c. 1859' +p342857 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e02f.jpg' +p342858 +sg291136 +g27 +sa(dp342859 +g291134 +S'Son and Donkey' +p342860 +sg291137 +S'Elihu Vedder' +p342861 +sg291130 +S'graphite on wove paper' +p342862 +sg291132 +S'c. 1859' +p342863 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e033.jpg' +p342864 +sg291136 +g27 +sa(dp342865 +g291134 +S'Father, Son, and Donkey' +p342866 +sg291137 +S'Elihu Vedder' +p342867 +sg291130 +S'graphite on wove paper' +p342868 +sg291132 +S'c. 1859' +p342869 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e035.jpg' +p342870 +sg291136 +g27 +sa(dp342871 +g291134 +S'Village Scene' +p342872 +sg291137 +S'Elihu Vedder' +p342873 +sg291130 +S'graphite on wove paper' +p342874 +sg291132 +S'c. 1859' +p342875 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e032.jpg' +p342876 +sg291136 +g27 +sa(dp342877 +g291134 +S'Son and the Donkey' +p342878 +sg291137 +S'Elihu Vedder' +p342879 +sg291130 +S'graphite on wove paper' +p342880 +sg291132 +S'c. 1859' +p342881 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e031.jpg' +p342882 +sg291136 +g27 +sa(dp342883 +g291134 +S'Ground Floor Plan for Torre Quatro Venti' +p342884 +sg291137 +S'Elihu Vedder' +p342885 +sg291130 +S'pen and ink and colored pencil on wove paper' +p342886 +sg291132 +S'c. 1905' +p342887 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4e3.jpg' +p342888 +sg291136 +g27 +sa(dp342889 +g291134 +S'Orte' +p342890 +sg291137 +S'Elihu Vedder' +p342891 +sg291130 +S'watercolor and graphite on wove paper; laid down' +p342892 +sg291132 +S'c. 1887' +p342893 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009ee.jpg' +p342894 +sg291136 +g27 +sa(dp342895 +g291134 +S'The Shipwreck' +p342896 +sg291137 +S'Elihu Vedder' +p342897 +sg291130 +S'charcoal, watercolor, and gouache on blue laid paper' +p342898 +sg291132 +S'c. 1880' +p342899 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009ef.jpg' +p342900 +sg291136 +g27 +sa(dp342901 +g291134 +S'Roman Landscape' +p342902 +sg291137 +S'Elihu Vedder' +p342903 +sg291130 +S'colored chalks on green wove paper' +p342904 +sg291132 +S'c. 1900' +p342905 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009f0.jpg' +p342906 +sg291136 +g27 +sa(dp342907 +g291134 +S'Sketch of a Fragment from a Wall in Capri' +p342908 +sg291137 +S'Elihu Vedder' +p342909 +sg291130 +S'graphite on brown wove paper' +p342910 +sg291132 +S'c. 1897' +p342911 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e030.jpg' +p342912 +sg291136 +g27 +sa(dp342913 +g291134 +S'Arco Oscuro--Over the Via Fiaminia' +p342914 +sg291137 +S'Elihu Vedder' +p342915 +sg291130 +S'graphite on wove paper' +p342916 +sg291132 +S'c. 1890' +p342917 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e034.jpg' +p342918 +sg291136 +g27 +sa(dp342919 +g291134 +S'From the Rub\xc3\xa1iy\xc3\xa1t' +p342920 +sg291137 +S'Elihu Vedder' +p342921 +sg291130 +S'graphite on wove paper' +p342922 +sg291132 +S'c. 1887' +p342923 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009f1.jpg' +p342924 +sg291136 +g27 +sa(dp342925 +g291134 +S'Detail of the Marriage of the Daughter of the Vine' +p342926 +sg291137 +S'Elihu Vedder' +p342927 +sg291130 +S'colored pencil on wove paper' +p342928 +sg291132 +S'c. 1890' +p342929 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e4/a000e4e7.jpg' +p342930 +sg291136 +g27 +sa(dp342931 +g291134 +S'Study for the mural "Music"' +p342932 +sg291137 +S'Elihu Vedder' +p342933 +sg291130 +S'charcoal and pastel over graphite on gray wove paper' +p342934 +sg291132 +S'c. 1890' +p342935 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e038.jpg' +p342936 +sg291136 +g27 +sa(dp342937 +g291134 +S'Five Heads' +p342938 +sg291137 +S'Elihu Vedder' +p342939 +sg291130 +S'pen and ink and watercolor on 5 sheets of wove paper, matted together' +p342940 +sg291132 +S'c. 1918' +p342941 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e03a.jpg' +p342942 +sg291136 +g27 +sa(dp342943 +g291134 +S'Self-Portrait: Caricatures' +p342944 +sg291137 +S'Elihu Vedder' +p342945 +sg291130 +S'charcoal and pastel on wove paper' +p342946 +sg291132 +S'c. 1918' +p342947 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000e0/a000e039.jpg' +p342948 +sg291136 +g27 +sa(dp342949 +g291134 +S'Dawn' +p342950 +sg291137 +S'Elihu Vedder' +p342951 +sg291130 +S'crayon, gouache, gold paint, and graphite over silver gelatin developed-out print mounted to board' +p342952 +sg291132 +S'1898' +p342953 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bcc.jpg' +p342954 +sg291136 +g27 +sa(dp342955 +g291130 +S'silver gelatin developed-out print on wove paper' +p342956 +sg291132 +S'unknown date\n' +p342957 +sg291134 +S'Into the Universe' +p342958 +sg291136 +g27 +sg291137 +S'Elihu Vedder' +p342959 +sa(dp342960 +g291134 +S'Au coq des bruyeres' +p342961 +sg291137 +S'Artist Information (' +p342962 +sg291130 +S'(artist after)' +p342963 +sg291132 +S'\n' +p342964 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fbc.jpg' +p342965 +sg291136 +g27 +sa(dp342966 +g291130 +S'1 vol: ill: 24 lithographs, with text by F. York Powell and others' +p342967 +sg291132 +S'published 1896' +p342968 +sg291134 +S'Oxford Characters' +p342969 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p342970 +sa(dp342971 +g291130 +S'lithograph in black on laid paper' +p342972 +sg291132 +S'1893' +p342973 +sg291134 +S'Sir Henry Acland, Bart.' +p342974 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p342975 +sa(dp342976 +g291130 +S'lithograph in black on laid paper' +p342977 +sg291132 +S'1893' +p342978 +sg291134 +S'W.A.L. Fletcher' +p342979 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p342980 +sa(dp342981 +g291130 +S'lithograph in black on laid paper' +p342982 +sg291132 +S'1893' +p342983 +sg291134 +S'Robinson Ellis' +p342984 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p342985 +sa(dp342986 +g291130 +S'lithograph in black on laid paper' +p342987 +sg291132 +S'1896' +p342988 +sg291134 +S'Viscount St. Cyres' +p342989 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p342990 +sa(dp342991 +g291130 +S'lithograph in black on laid paper' +p342992 +sg291132 +S'1893' +p342993 +sg291134 +S'W.R. Morfill' +p342994 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p342995 +sa(dp342996 +g291130 +S'lithograph in black on laid paper' +p342997 +sg291132 +S'1893' +p342998 +sg291134 +S'C.B. Fry' +p342999 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p343000 +sa(dp343001 +g291130 +S'lithograph in black on laid paper' +p343002 +sg291132 +S'1893' +p343003 +sg291134 +S'Friedrich Max Muller' +p343004 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p343005 +sa(dp343006 +g291130 +S'lithograph in black on laid paper' +p343007 +sg291132 +S'1893' +p343008 +sg291134 +S'Earl Beauchamp' +p343009 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p343010 +sa(dp343011 +g291130 +S'lithograph in black on laid paper' +p343012 +sg291132 +S'1893' +p343013 +sg291134 +S'James A.H. Murray' +p343014 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p343015 +sa(dp343016 +g291130 +S'lithograph in black on laid paper' +p343017 +sg291132 +S'1893' +p343018 +sg291134 +S'Mr. J. Conway-Rees' +p343019 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p343020 +sa(dp343021 +g291130 +S'lithograph in black on laid paper' +p343022 +sg291132 +S'1894' +p343023 +sg291134 +S'Walter Horatio Pater' +p343024 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p343025 +sa(dp343026 +g291130 +S'lithograph in black on laid paper' +p343027 +sg291132 +S'1893' +p343028 +sg291134 +S'Mr. F.W. Bussell' +p343029 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p343030 +sa(dp343031 +g291130 +S'lithograph in black on laid paper' +p343032 +sg291132 +S'1893' +p343033 +sg291134 +S'Professor Margoliouth' +p343034 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p343035 +sa(dp343036 +g291130 +S'lithograph in black on laid paper' +p343037 +sg291132 +S'1893' +p343038 +sg291134 +S'Mr. Max Beerbohm' +p343039 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p343040 +sa(dp343041 +g291130 +S'lithograph in black on laid paper' +p343042 +sg291132 +S'1896' +p343043 +sg291134 +S'Ingram Bywater' +p343044 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p343045 +sa(dp343046 +g291130 +S'lithograph in black on laid paper' +p343047 +sg291132 +S'1896' +p343048 +sg291134 +S'Hilaire Belloc' +p343049 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p343050 +sa(dp343051 +g291130 +S'lithograph in black on laid paper' +p343052 +sg291132 +S'1896' +p343053 +sg291134 +S'The Rev. Charles Henry Olive Daniel' +p343054 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p343055 +sa(dp343056 +g291130 +S'lithograph in black on laid paper' +p343057 +sg291132 +S'1893' +p343058 +sg291134 +S'Mr. Hartwell de la Garde Grissell' +p343059 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p343060 +sa(dp343061 +g291130 +S'lithograph in black on laid paper' +p343062 +sg291132 +S'1893' +p343063 +sg291134 +S'E. Ray Lankester, F.R.S.' +p343064 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p343065 +sa(dp343066 +g291130 +S'lithograph in black on laid paper' +p343067 +sg291132 +S'1896' +p343068 +sg291134 +S'Mr. James Hearn' +p343069 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p343070 +sa(dp343071 +g291130 +S'lithograph in black on laid paper' +p343072 +sg291132 +S'1896' +p343073 +sg291134 +S'John Scott Burdon Sanderson, D.M.' +p343074 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p343075 +sa(dp343076 +g291130 +S'lithograph in black on laid paper' +p343077 +sg291132 +S'1896' +p343078 +sg291134 +S'Arthur Sidgwick' +p343079 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p343080 +sa(dp343081 +g291130 +S'lithograph in black on laid paper' +p343082 +sg291132 +S'1893' +p343083 +sg291134 +S'Mr. Joseph Wells, M.A.' +p343084 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p343085 +sa(dp343086 +g291130 +S'lithograph in black on laid paper' +p343087 +sg291132 +S'1896' +p343088 +sg291134 +S'Frederick York Powell, M.A.' +p343089 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p343090 +sa(dp343091 +g291134 +S'Groupe de paysans (Group of Peasants)' +p343092 +sg291137 +S'Camille Pissarro' +p343093 +sg291130 +S'chine coll? lithograph in black on Ingres de couleur paper' +p343094 +sg291132 +S'c. 1899' +p343095 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f68.jpg' +p343096 +sg291136 +g27 +sa(dp343097 +g291134 +S'Rail Fence' +p343098 +sg291137 +S'Charles Burchfield' +p343099 +sg291130 +S'watercolor and graphite on wove paper' +p343100 +sg291132 +S'1916' +p343101 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00008/a00008b5.jpg' +p343102 +sg291136 +g27 +sa(dp343103 +g291130 +S'black crayon and watercolor over graphite on cardboard' +p343104 +sg291132 +S'probably 1925/1930' +p343105 +sg291134 +S'Corpus Christi Procession, Santiago' +p343106 +sg291136 +g27 +sg291137 +S'Sir Muirhead Bone' +p343107 +sa(dp343108 +g291130 +S'graphite on wove paper; laid down on cardboard' +p343109 +sg291132 +S'probably 1925/1930' +p343110 +sg291134 +S'An Arch of Old Waterloo Bridge' +p343111 +sg291136 +g27 +sg291137 +S'Sir Muirhead Bone' +p343112 +sa(dp343113 +g291130 +S'charcoal on laid paper' +p343114 +sg291132 +S'c. 1910/1915' +p343115 +sg291134 +S"Pope's Casino, Vatican Gardens" +p343116 +sg291136 +g27 +sg291137 +S'Sir Muirhead Bone' +p343117 +sa(dp343118 +g291130 +S'charcoal, pen and black ink, and brush and black ink with violet-blue wash on laid paper' +p343119 +sg291132 +S'probably 1925/1930' +p343120 +sg291134 +S'Bilboa' +p343121 +sg291136 +g27 +sg291137 +S'Sir Muirhead Bone' +p343122 +sa(dp343123 +g291130 +S'watercolor on wove paper' +p343124 +sg291132 +S'probably 1920/1930' +p343125 +sg291134 +S'Calm on the Mediterranean' +p343126 +sg291136 +g27 +sg291137 +S'Sir Muirhead Bone' +p343127 +sa(dp343128 +g291130 +S'graphite, charcoal, and white gouache on wove paper' +p343129 +sg291132 +S'probably 1910/1915' +p343130 +sg291134 +S"Portico of Saint Peter's, Rome" +p343131 +sg291136 +g27 +sg291137 +S'Sir Muirhead Bone' +p343132 +sa(dp343133 +g291130 +S'charcoal and blue wash on wove paper' +p343134 +sg291132 +S'c. 1923' +p343135 +sg291134 +S'New York at Dusk' +p343136 +sg291136 +g27 +sg291137 +S'Sir Muirhead Bone' +p343137 +sa(dp343138 +g291130 +S'(author)' +p343139 +sg291132 +S'\n' +p343140 +sg291134 +S'Ulysses' +p343141 +sg291136 +g27 +sg291137 +S'Artist Information (' +p343142 +sa(dp343143 +g291130 +S'soft-ground etching in black on wove paper' +p343144 +sg291132 +S'published 1935' +p343145 +sg291134 +S'Calypso' +p343146 +sg291136 +g27 +sg291137 +S'Henri Matisse' +p343147 +sa(dp343148 +g291130 +S'soft-ground etching in black on wove paper' +p343149 +sg291132 +S'published 1935' +p343150 +sg291134 +S'\xc3\x89ole' +p343151 +sg291136 +g27 +sg291137 +S'Henri Matisse' +p343152 +sa(dp343153 +g291130 +S'soft-ground etching in black on wove paper' +p343154 +sg291132 +S'published 1935' +p343155 +sg291134 +S'Polyph\xc3\xa8me' +p343156 +sg291136 +g27 +sg291137 +S'Henri Matisse' +p343157 +sa(dp343158 +g291130 +S'soft-ground etching in black on wove paper' +p343159 +sg291132 +S'published 1935' +p343160 +sg291134 +S'Nausicaa' +p343161 +sg291136 +g27 +sg291137 +S'Henri Matisse' +p343162 +sa(dp343163 +g291130 +S'soft-ground etching in black on wove paper' +p343164 +sg291132 +S'published 1935' +p343165 +sg291134 +S'Circ\xc3\xa9' +p343166 +sg291136 +g27 +sg291137 +S'Henri Matisse' +p343167 +sa(dp343168 +g291130 +S'soft-ground etching in black on wove paper' +p343169 +sg291132 +S'published 1935' +p343170 +sg291134 +S'Ithaque' +p343171 +sg291136 +g27 +sg291137 +S'Henri Matisse' +p343172 +sa(dp343173 +g291130 +S'gelatin silver print, 1970s' +p343174 +sg291132 +S'c. 1945' +p343175 +sg291134 +S'Moro Rock, Sequoia National Park and Sierra Foothills' +p343176 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p343177 +sa(dp343178 +g291130 +S'gelatin silver (parmelian) print' +p343179 +sg291132 +S'1927' +p343180 +sg291134 +S'Mount Galen Clark, Yosemite Park' +p343181 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p343182 +sa(dp343183 +g291130 +S'book dummy (or maquette for _Many Are Called_) with 46 reproductions of photographs' +p343184 +sg291132 +S'1958-1966' +p343185 +sg291134 +S'The Passengers' +p343186 +sg291136 +g27 +sg291137 +S'Walker Evans' +p343187 +sa(dp343188 +g291130 +S'book dummy (or maquette for _Many Are Called_)' +p343189 +sg291132 +S'c. 1965' +p343190 +sg291134 +S'Lexington Avenue Local' +p343191 +sg291136 +g27 +sg291137 +S'Walker Evans' +p343192 +sa(dp343193 +g291130 +S'1 vol: ill: 40 intaglio prints on Zerkall Litho paper' +p343194 +sg291132 +S'published 1988' +p343195 +sg291134 +S'Glyptotek' +p343196 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343197 +sa(dp343198 +g291130 +S'(author)' +p343199 +sg291132 +S'\n' +p343200 +sg291134 +S'Mabel: A Story' +p343201 +sg291136 +g27 +sg291137 +S'Artist Information (' +p343202 +sa(dp343203 +g291130 +S'28 drypoint-engravings on Rives BFK paper with botanical notes and poetry selected by Glenn Todd and Nancy Dine (136 pages, unpaginated)' +p343204 +sg291132 +S'published 1984' +p343205 +sg291134 +S'The Temple of Flora' +p343206 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343207 +sa(dp343208 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper' +p343209 +sg291132 +S'1984' +p343210 +sg291134 +S"Details from Nancy's Garden" +p343211 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343212 +sa(dp343213 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _Shell Ginger_ by John Ashberry)' +p343214 +sg291132 +S'1984' +p343215 +sg291134 +S'Shell Ginger' +p343216 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343217 +sa(dp343218 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _Paradise Enough_ by Andrew Hoyem)' +p343219 +sg291132 +S'1984' +p343220 +sg291134 +S'Bird-of-Paradise' +p343221 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343222 +sa(dp343223 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _Soaring Clouds_ by Huang O, translated by Kenneth Rexroth and Lin Chung)' +p343224 +sg291132 +S'1984' +p343225 +sg291134 +S'Sacred Lotus of the East' +p343226 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343227 +sa(dp343228 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _Iris_ by Hilda Doolittle)' +p343229 +sg291132 +S'1984' +p343230 +sg291134 +S'Iris' +p343231 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343232 +sa(dp343233 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _Orchids_ by Theodore Roethke)' +p343234 +sg291132 +S'1984' +p343235 +sg291134 +S'Chinese Limodorum' +p343236 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343237 +sa(dp343238 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _Tulips_ by Sylvia Plath)' +p343239 +sg291132 +S'1984' +p343240 +sg291134 +S'Tulip' +p343241 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343242 +sa(dp343243 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _For C._ by Philip Whalen)' +p343244 +sg291132 +S'1984' +p343245 +sg291134 +S'Pontic Rhododendron' +p343246 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343247 +sa(dp343248 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _The Snowdrop_ by James Schuyler)' +p343249 +sg291132 +S'1984' +p343250 +sg291134 +S'Snowdrop' +p343251 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343252 +sa(dp343253 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _To a Lovely Old Bitch_ by William Carlos Williams)' +p343254 +sg291132 +S'1984' +p343255 +sg291134 +S"Lady's Slipper" +p343256 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343257 +sa(dp343258 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _The Spring_ by Ezra Pound)' +p343259 +sg291132 +S'1984' +p343260 +sg291134 +S'Persian Cyclamen' +p343261 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343262 +sa(dp343263 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _The Superb Lily_ by Robert Pinsky)' +p343264 +sg291132 +S'1984' +p343265 +sg291134 +S'Superb Lily' +p343266 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343267 +sa(dp343268 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _Yellow Pitcher Plant_ by Thom Gunn)' +p343269 +sg291132 +S'1984' +p343270 +sg291134 +S'Yellow Pitcher Plant' +p343271 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343272 +sa(dp343273 +g291130 +S"drypoint, engraving, and electric tool work on Rives BFK paper (facing _Van Stapel's Vision_ by Robert Creeley)" +p343274 +sg291132 +S'1984' +p343275 +sg291134 +S'Carrion Flower' +p343276 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343277 +sa(dp343278 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _Spring_ by Edith Sitwell)' +p343279 +sg291132 +S'1984' +p343280 +sg291134 +S'Auricula' +p343281 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343282 +sa(dp343283 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _The Freeing of the Dust_ by Denise Levertov)' +p343284 +sg291132 +S'1984' +p343285 +sg291134 +S'Blue Egyptian Water Lily' +p343286 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343287 +sa(dp343288 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _Kalmia angustifolia_ by Jonathan Williams)' +p343289 +sg291132 +S'1984' +p343290 +sg291134 +S'Narrow-Leaved Kalmia' +p343291 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343292 +sa(dp343293 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _The Poems of Our Climate_ by Wallace Stevens)' +p343294 +sg291132 +S'1984' +p343295 +sg291134 +S'Carnation' +p343296 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343297 +sa(dp343298 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _Vanity_ by Robert Graves)' +p343299 +sg291132 +S'1984' +p343300 +sg291134 +S'Dragon Arum' +p343301 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343302 +sa(dp343303 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _American Cowslip_ by Ron Padgett)' +p343304 +sg291132 +S'1984' +p343305 +sg291134 +S'Shooting-Star' +p343306 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343307 +sa(dp343308 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _Sonnet_ by E.E. Cummings)' +p343309 +sg291132 +S'1984' +p343310 +sg291134 +S'Madonna Lily' +p343311 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343312 +sa(dp343313 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _The Day Lily_ by Ronald Johnson)' +p343314 +sg291132 +S'1984' +p343315 +sg291134 +S'Daylily' +p343316 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343317 +sa(dp343318 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _Moment Fugue_ by Hart Crane)' +p343319 +sg291132 +S'1984' +p343320 +sg291134 +S'Hyacinth' +p343321 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343322 +sa(dp343323 +g291130 +S"drypoint, engraving, and electric tool work on Rives BFK paper (facing _How Roses Get Black_ by Frank O'Hara)" +p343324 +sg291132 +S'1984' +p343325 +sg291134 +S'Rose' +p343326 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343327 +sa(dp343328 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper' +p343329 +sg291132 +S'1984' +p343330 +sg291134 +S'Winged Passionflower' +p343331 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343332 +sa(dp343333 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper' +p343334 +sg291132 +S'1984' +p343335 +sg291134 +S'Blue Passionflower' +p343336 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343337 +sa(dp343338 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _Passiflora_ by Robert Hass)' +p343339 +sg291132 +S'1984' +p343340 +sg291134 +S'Quadrangular Passionflower' +p343341 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343342 +sa(dp343343 +g291130 +S'drypoint, engraving, and electric tool work on Rives BFK paper (facing _Calliandra grandiflora_ by Josephine Miles and Dick Barnes)' +p343344 +sg291132 +S'1984' +p343345 +sg291134 +S'Powder-Puff Tree' +p343346 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343347 +sa(dp343348 +g291130 +S'(author)' +p343349 +sg291132 +S'\n' +p343350 +sg291134 +S'Swiat / The World' +p343351 +sg291136 +g27 +sg291137 +S'Artist Information (' +p343352 +sa(dp343353 +g291130 +S'drypoint, engraving, and electric tool work on chine colle laid to Rives BFK paper' +p343354 +sg291132 +S'1984' +p343355 +sg291134 +S"Details from Nancy's Garden" +p343356 +sg291136 +g27 +sg291137 +S'Jim Dine' +p343357 +sa(dp343358 +g291130 +S'bronze' +p343359 +sg291132 +S'c. 1500' +p343360 +sg291134 +S'Saint Jerome in the Wilderness' +p343361 +sg291136 +g27 +sg291137 +S'Master of the Passion of Christ' +p343362 +sa(dp343363 +g291130 +S'etching and aquatint in black on wove paper' +p343364 +sg291132 +S'1978' +p343365 +sg291134 +S'Itchenwater' +p343366 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p343367 +sa(dp343368 +g291130 +S'aquatint in black, gray, yellow, and orange on Rives BFK paper' +p343369 +sg291132 +S'1979' +p343370 +sg291134 +S'Spilling Cloud' +p343371 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p343372 +sa(dp343373 +g291130 +S'photoetching in black with burnishing on wove paper' +p343374 +sg291132 +S'1983' +p343375 +sg291134 +S'Wharfdale in Snow' +p343376 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p343377 +sa(dp343378 +g291130 +S'etching in black with plate tone on wove paper' +p343379 +sg291132 +S'1919' +p343380 +sg291134 +S'The Chimera, Notre Dame' +p343381 +sg291136 +g27 +sg291137 +S'Stanley Anderson' +p343382 +sa(dp343383 +g291130 +S'etching in black on laid paper' +p343384 +sg291132 +S'1942' +p343385 +sg291134 +S'Boving, Bucks' +p343386 +sg291136 +g27 +sg291137 +S'John Taylor Arms' +p343387 +sa(dp343388 +g291130 +S'etching in black on blue laid paper' +p343389 +sg291132 +S'1947' +p343390 +sg291134 +S'Une Chim\xc3\xa8re' +p343391 +sg291136 +g27 +sg291137 +S'John Taylor Arms' +p343392 +sa(dp343393 +g291130 +S'etching with stippling in black on laid paper' +p343394 +sg291132 +S'1922' +p343395 +sg291134 +S'The Gothic Spirit' +p343396 +sg291136 +g27 +sg291137 +S'John Taylor Arms' +p343397 +sa(dp343398 +g291130 +S'etching in black on blue laid paper' +p343399 +sg291132 +S'1921' +p343400 +sg291134 +S'Guardians of the Spire' +p343401 +sg291136 +g27 +sg291137 +S'John Taylor Arms' +p343402 +sa(dp343403 +g291130 +S'etching in black on blue laid paper' +p343404 +sg291132 +S'1922' +p343405 +sg291134 +S'Through Wind and Weather' +p343406 +sg291136 +g27 +sg291137 +S'John Taylor Arms' +p343407 +sa(dp343408 +g291130 +S'etching with stippling in black on wove paper' +p343409 +sg291132 +S'1924' +p343410 +sg291134 +S'Ugly Devil' +p343411 +sg291136 +g27 +sg291137 +S'John Taylor Arms' +p343412 +sa(dp343413 +g291130 +S'etching in black on laid paper' +p343414 +sg291132 +S'1946' +p343415 +sg291134 +S'Sketch, Princeton' +p343416 +sg291136 +g27 +sg291137 +S'John Taylor Arms' +p343417 +sa(dp343418 +g291130 +S'etching in brown black on yellow laid paper' +p343419 +sg291132 +S'1934' +p343420 +sg291134 +S'Valley of the Savery, Wyoming' +p343421 +sg291136 +g27 +sg291137 +S'John Taylor Arms' +p343422 +sa(dp343423 +g291130 +S'etching in black on Japanese vellum' +p343424 +sg291132 +S'1922' +p343425 +sg291134 +S'Sentinels' +p343426 +sg291136 +g27 +sg291137 +S'John Taylor Arms' +p343427 +sa(dp343428 +g291130 +S'woodcut in black on japan paper' +p343429 +sg291132 +S'1953' +p343430 +sg291134 +S'Flight' +p343431 +sg291136 +g27 +sg291137 +S'Milton Avery' +p343432 +sa(dp343433 +g291130 +S'mezzotint and etching in blue-black on Arches paper' +p343434 +sg291132 +S'1975' +p343435 +sg291134 +S'Frontier I' +p343436 +sg291136 +g27 +sg291137 +S'Mark Balakjian' +p343437 +sa(dp343438 +g291134 +S'Goat in a Landscape' +p343439 +sg291137 +S'Adam von Bartsch' +p343440 +sg291130 +S'etching on wove paper' +p343441 +sg291132 +S'1805' +p343442 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d796.jpg' +p343443 +sg291136 +g27 +sa(dp343444 +g291130 +S'etching in black on Rives BFK paper' +p343445 +sg291132 +S'1973' +p343446 +sg291134 +S'In a Dark Time' +p343447 +sg291136 +g27 +sg291137 +S'David Becker' +p343448 +sa(dp343449 +g291130 +S'etching in black on Somerset paper' +p343450 +sg291132 +S'1985' +p343451 +sg291134 +S'A Foregone Conclusion' +p343452 +sg291136 +g27 +sg291137 +S'David Becker' +p343453 +sa(dp343454 +g291130 +S'etching and engraving in black on wove paper [trial proof]' +p343455 +sg291132 +S'1979' +p343456 +sg291134 +S'Monuments' +p343457 +sg291136 +g27 +sg291137 +S'David Becker' +p343458 +sa(dp343459 +g291130 +S'etching and engraving in black on wove paper [final state proof II]' +p343460 +sg291132 +S'1979' +p343461 +sg291134 +S'Monuments' +p343462 +sg291136 +g27 +sg291137 +S'David Becker' +p343463 +sa(dp343464 +g291130 +S'drypoint in black on laid paper' +p343465 +sg291132 +S'unknown date\n' +p343466 +sg291134 +S'Through the Storm' +p343467 +sg291136 +g27 +sg291137 +S'Edmund Blampied' +p343468 +sa(dp343469 +g291130 +S'drypoint in black on wove paper' +p343470 +sg291132 +S'1913' +p343471 +sg291134 +S'Rainy Night in Rome' +p343472 +sg291136 +g27 +sg291137 +S'Sir Muirhead Bone' +p343473 +sa(dp343474 +g291130 +S'drypoint in black on laid paper' +p343475 +sg291132 +S'unknown date\n' +p343476 +sg291134 +S'Railway Sheds, Marseilles' +p343477 +sg291136 +g27 +sg291137 +S'Sir Muirhead Bone' +p343478 +sa(dp343479 +g291130 +S'sugar-lift etching in black on T.H. Saunders paper' +p343480 +sg291132 +S'1983' +p343481 +sg291134 +S'Revenge of the Cat' +p343482 +sg291136 +g27 +sg291137 +S'Richard Bosman' +p343483 +sa(dp343484 +g291130 +S'drypoint in black on laid paper' +p343485 +sg291132 +S'1931' +p343486 +sg291134 +S'Tarff' +p343487 +sg291136 +g27 +sg291137 +S'David Young Cameron' +p343488 +sa(dp343489 +g291130 +S'etching and drypoint in black on laid paper' +p343490 +sg291132 +S'1911' +p343491 +sg291134 +S'The Wingless Chimera' +p343492 +sg291136 +g27 +sg291137 +S'David Young Cameron' +p343493 +sa(dp343494 +g291130 +S'etching and drypoint in black on laid paper' +p343495 +sg291132 +S'1910' +p343496 +sg291134 +S'The Wingless Chimera' +p343497 +sg291136 +g27 +sg291137 +S'David Young Cameron' +p343498 +sa(dp343499 +g291130 +S'lithograph in black on Rives BFK paper' +p343500 +sg291132 +S'1932' +p343501 +sg291134 +S'Ajax' +p343502 +sg291136 +g27 +sg291137 +S'John Steuart Curry' +p343503 +sa(dp343504 +g291130 +S'lithograph in black on wove paper' +p343505 +sg291132 +S'1936' +p343506 +sg291134 +S'Elephants' +p343507 +sg291136 +g27 +sg291137 +S'John Steuart Curry' +p343508 +sa(dp343509 +g291130 +S'lithograph in black on wove paper' +p343510 +sg291132 +S'1927' +p343511 +sg291134 +S'Coyotes Stealing a Pig' +p343512 +sg291136 +g27 +sg291137 +S'John Steuart Curry' +p343513 +sa(dp343514 +g291130 +S'etching in brown-black on laid paper' +p343515 +sg291132 +S'c. 1905' +p343516 +sg291134 +S'Eagle' +p343517 +sg291136 +g27 +sg291137 +S'Edward Julius Detmold' +p343518 +sa(dp343519 +g291130 +S'offset lithograph in two shades of blue on Arches paper' +p343520 +sg291132 +S'1980' +p343521 +sg291134 +S'Doucement' +p343522 +sg291136 +g27 +sg291137 +S'John E. Dowell, Jr.' +p343523 +sa(dp343524 +g291130 +S'aquatint in two shades of red with hand-coloring on wove paper' +p343525 +sg291132 +S'1981' +p343526 +sg291134 +S'Philadelphia Song' +p343527 +sg291136 +g27 +sg291137 +S'John E. Dowell, Jr.' +p343528 +sa(dp343529 +g291130 +S'offset lithograph in black reworked with colored pencils on wove paper' +p343530 +sg291132 +S'1981' +p343531 +sg291134 +S"Saskia's Dream" +p343532 +sg291136 +g27 +sg291137 +S'John E. Dowell, Jr.' +p343533 +sa(dp343534 +g291130 +S'aquatint in black on Arches paper' +p343535 +sg291132 +S'unknown date\n' +p343536 +sg291134 +S'Fourmillante Cite, Cite Pleine de Reves' +p343537 +sg291136 +g27 +sg291137 +S'Peter Freeth' +p343538 +sa(dp343539 +g291130 +S'aquatint in black on Arches paper' +p343540 +sg291132 +S'1980' +p343541 +sg291134 +S'Shoptalk on Parnassus (Le chat de M. Manet rencontre le chien de M. Seurat)' +p343542 +sg291136 +g27 +sg291137 +S'Peter Freeth' +p343543 +sa(dp343544 +g291130 +S'lithograph in black on japan paper mounted to blue handmade paper' +p343545 +sg291132 +S'1981' +p343546 +sg291134 +S'"Empty Pockets" Means Freedom' +p343547 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p343548 +sa(dp343549 +g291130 +S'black and white chalk on marbleized paper, with geometric cuts, mounted to heavy laid paper painted with white gouache and drawn with graphite' +p343550 +sg291132 +S'1989' +p343551 +sg291134 +S'A House Built on Sand: Homeless in a Land of Plenty' +p343552 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p343553 +sa(dp343554 +g291130 +S'lithograph in black, brown, and red on two sheets of japan paper attached with clear tape' +p343555 +sg291132 +S'1976/1980' +p343556 +sg291134 +S'Magpie Caliper' +p343557 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p343558 +sa(dp343559 +g291130 +S'lithograph in black on tissue paper mounted to green handmade paper' +p343560 +sg291132 +S'1981' +p343561 +sg291134 +S"If you don't...Bomb Notes" +p343562 +sg291136 +g27 +sg291137 +S'Anthony Peter Gorny' +p343563 +sa(dp343564 +g291130 +g27 +sg291132 +S'(publisher)' +p343565 +sg291134 +S"Franklin's Reception at the Court of France" +p343566 +sg291136 +g27 +sg291137 +S'Artist Information (' +p343567 +sa(dp343568 +g291130 +S'drypoint in black on wove paper' +p343569 +sg291132 +S'1976' +p343570 +sg291134 +S'Rodin' +p343571 +sg291136 +g27 +sg291137 +S'Red Grooms' +p343572 +sa(dp343573 +g291134 +S'The Cabin' +p343574 +sg291137 +S'Francis Seymour Haden' +p343575 +sg291130 +S'drypoint in black on laid paper' +p343576 +sg291132 +S'1877' +p343577 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c8f.jpg' +p343578 +sg291136 +g27 +sa(dp343579 +g291134 +S'The Three Cows' +p343580 +sg291137 +S'Francis Seymour Haden' +p343581 +sg291130 +S'drypoint in black on laid paper' +p343582 +sg291132 +S'1877' +p343583 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c61.jpg' +p343584 +sg291136 +g27 +sa(dp343585 +g291130 +S'intaglio in blue-green reworked with colored pencils and graphite on wove paper' +p343586 +sg291132 +S'1982' +p343587 +sg291134 +S'Folding Chairs Blue' +p343588 +sg291136 +g27 +sg291137 +S'Paul Harcharik' +p343589 +sa(dp343590 +g291134 +S'Falling Figure' +p343591 +sg291137 +S'Stanley William Hayter' +p343592 +sg291130 +S'color viscosity print with soft ground and areas of deep intaglio printing as white relief, retouched with white gouache, on wove paper' +p343593 +sg291132 +S'1947' +p343594 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00082/a000826e.jpg' +p343595 +sg291136 +g27 +sa(dp343596 +g291134 +S'Maternit\xc3\xa9 Ail\xc3\xa9e' +p343597 +sg291137 +S'Stanley William Hayter' +p343598 +sg291130 +S'color viscosity print with soft ground and areas of deep intaglio printing as white relief, retouched with white gouache, on Rives BFK paper' +p343599 +sg291132 +S'1948' +p343600 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00081/a00081c6.jpg' +p343601 +sg291136 +g27 +sa(dp343602 +g291134 +S'Tropic of Cancer' +p343603 +sg291137 +S'Stanley William Hayter' +p343604 +sg291130 +S'engraving in black with burnishing on laid paper' +p343605 +sg291132 +S'1949' +p343606 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00060/a00060fa.jpg' +p343607 +sg291136 +g27 +sa(dp343608 +g291130 +S'engraving in black with graphite on blue laid paper' +p343609 +sg291132 +S'c. 1930' +p343610 +sg291134 +S'Vicuna (Vigogne)' +p343611 +sg291136 +g27 +sg291137 +S'Joseph Hecht' +p343612 +sa(dp343613 +g291130 +S'engraving in black on laid paper' +p343614 +sg291132 +S'1934' +p343615 +sg291134 +S'Chasse avec elephantes' +p343616 +sg291136 +g27 +sg291137 +S'Joseph Hecht' +p343617 +sa(dp343618 +g291130 +S'engraving in brown on laid paper' +p343619 +sg291132 +S'1933' +p343620 +sg291134 +S'Hog (Cochon)' +p343621 +sg291136 +g27 +sg291137 +S'Joseph Hecht' +p343622 +sa(dp343623 +g291130 +S'engraving in black on laid paper' +p343624 +sg291132 +S'1931' +p343625 +sg291134 +S'Lion Defending Her Prey (Lion defandant sa proie)' +p343626 +sg291136 +g27 +sg291137 +S'Joseph Hecht' +p343627 +sa(dp343628 +g291130 +S'engraving in black on laid paper' +p343629 +sg291132 +S'c. 1923' +p343630 +sg291134 +S'Phenomenon (Phenomene)' +p343631 +sg291136 +g27 +sg291137 +S'Joseph Hecht' +p343632 +sa(dp343633 +g291130 +S'engraving in black on laid paper' +p343634 +sg291132 +S'1933' +p343635 +sg291134 +S'Tour Eiffel' +p343636 +sg291136 +g27 +sg291137 +S'Joseph Hecht' +p343637 +sa(dp343638 +g291130 +S'aquatint in black on Fabriano paper' +p343639 +sg291132 +S'1977' +p343640 +sg291134 +S'Rome, Space' +p343641 +sg291136 +g27 +sg291137 +S'Nona Hershey' +p343642 +sa(dp343643 +g291130 +S'etching and aquatint in black on Hodgkinson handmade paper' +p343644 +sg291132 +S'1969' +p343645 +sg291134 +S'Cold water about to hit the Prince' +p343646 +sg291136 +g27 +sg291137 +S'David Hockney' +p343647 +sa(dp343648 +g291130 +S'sugarlift aquatint in black on Inveresk paper' +p343649 +sg291132 +S'1975' +p343650 +sg291134 +S'Reclining Figure' +p343651 +sg291136 +g27 +sg291137 +S'David Hockney' +p343652 +sa(dp343653 +g291130 +g27 +sg291132 +S'(publisher)' +p343654 +sg291134 +S'Thinking Aloud in the Museum of Modern Art' +p343655 +sg291136 +g27 +sg291137 +S'Artist Information (' +p343656 +sa(dp343657 +g291130 +S'aquatint and softground etching in blue-gray, orange, and black on Rives BFK paper' +p343658 +sg291132 +S'1977' +p343659 +sg291134 +S'Night Guard' +p343660 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p343661 +sa(dp343662 +g291130 +S'10-color screenprint and lithograph on Arches White Cover paper' +p343663 +sg291132 +S'1979' +p343664 +sg291134 +S'Polka Dot Blouse (I)' +p343665 +sg291136 +g27 +sg291137 +S'Alex Katz' +p343666 +sa(dp343667 +g291130 +S'10-color screenprint and lithograph on Arches White Cover paper' +p343668 +sg291132 +S'1979' +p343669 +sg291134 +S'Polka Dot Blouse (II)' +p343670 +sg291136 +g27 +sg291137 +S'Alex Katz' +p343671 +sa(dp343672 +g291130 +S'10-color screenprint and lithograph on Arches White Cover paper' +p343673 +sg291132 +S'1979' +p343674 +sg291134 +S'Polka Dot Blouse (III)' +p343675 +sg291136 +g27 +sg291137 +S'Alex Katz' +p343676 +sa(dp343677 +g291130 +S'10-color screenprint and lithograph on Arches White Cover paper' +p343678 +sg291132 +S'1979' +p343679 +sg291134 +S'Polka Dot Blouse (IV)' +p343680 +sg291136 +g27 +sg291137 +S'Alex Katz' +p343681 +sa(dp343682 +g291130 +S'lithograph in black on wove paper' +p343683 +sg291132 +S'1937' +p343684 +sg291134 +S'Solar Fade-Out' +p343685 +sg291136 +g27 +sg291137 +S'Rockwell Kent' +p343686 +sa(dp343687 +g291130 +S'lithograph in black on wove paper' +p343688 +sg291132 +S'1937' +p343689 +sg291134 +S'Degravitation' +p343690 +sg291136 +g27 +sg291137 +S'Rockwell Kent' +p343691 +sa(dp343692 +g291130 +S'lithograph in black on wove paper' +p343693 +sg291132 +S'1937' +p343694 +sg291134 +S'Lunar Disintegration' +p343695 +sg291136 +g27 +sg291137 +S'Rockwell Kent' +p343696 +sa(dp343697 +g291130 +S'lithograph in black on wove paper' +p343698 +sg291132 +S'1937' +p343699 +sg291134 +S'Solar Flare-Up' +p343700 +sg291136 +g27 +sg291137 +S'Rockwell Kent' +p343701 +sa(dp343702 +g291130 +S'lithograph in black on Rives paper' +p343703 +sg291132 +S'1933' +p343704 +sg291134 +S'Mala (Danseuse)' +p343705 +sg291136 +g27 +sg291137 +S'Rockwell Kent' +p343706 +sa(dp343707 +g291134 +S'The Large Cow Lying Down (Grosse Liegende Kuh)' +p343708 +sg291137 +S'Ernst Ludwig Kirchner' +p343709 +sg291130 +S'woodcut in black on blotting paper' +p343710 +sg291132 +S'1929' +p343711 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c448.jpg' +p343712 +sg291136 +g27 +sa(dp343713 +g291130 +g27 +sg291132 +S'(publisher)' +p343714 +sg291134 +S'Boys and Girls!' +p343715 +sg291136 +g27 +sg291137 +S'Artist Information (' +p343716 +sa(dp343717 +g291130 +S'British, 20th century' +p343718 +sg291132 +S'(printer)' +p343719 +sg291134 +S'Photo-Eye (El Lissitzky)' +p343720 +sg291136 +g27 +sg291137 +S'Artist Information (' +p343721 +sa(dp343722 +g291130 +S'8 color screenprint, photo-screenprint, collage, and coating on wove paper' +p343723 +sg291132 +S'1969' +p343724 +sg291134 +S'W.H. Auden' +p343725 +sg291136 +g27 +sg291137 +S'R.B. Kitaj' +p343726 +sa(dp343727 +g291130 +S'lithograph in black on laid paper' +p343728 +sg291132 +S'1922' +p343729 +sg291134 +S'Lily Christiansen-Agoston' +p343730 +sg291136 +g27 +sg291137 +S'Oskar Kokoschka' +p343731 +sa(dp343732 +g291130 +g27 +sg291132 +S'(printer)' +p343733 +sg291134 +S'Manhattan Vista' +p343734 +sg291136 +g27 +sg291137 +S'Artist Information (' +p343735 +sa(dp343736 +g291130 +S'etching and aquatint in brown and black on wove paper' +p343737 +sg291132 +S'unknown date\n' +p343738 +sg291134 +S'Anatomie comparee; Le vaisseau du desert' +p343739 +sg291136 +g27 +sg291137 +S'Louis Auguste Mathieu Legrand' +p343740 +sa(dp343741 +g291130 +S'etching in black on wove paper' +p343742 +sg291132 +S'1980' +p343743 +sg291134 +S'Birches' +p343744 +sg291136 +g27 +sg291137 +S'Mark Alan Leithauser' +p343745 +sa(dp343746 +g291130 +S'etching in black on wove paper' +p343747 +sg291132 +S'1978' +p343748 +sg291134 +S'King George' +p343749 +sg291136 +g27 +sg291137 +S'Mark Alan Leithauser' +p343750 +sa(dp343751 +g291130 +S'etching in black-brown on laid paper' +p343752 +sg291132 +S'1922' +p343753 +sg291134 +S'Old Kashmir' +p343754 +sg291136 +g27 +sg291137 +S'Ernest Stephen Lumsden' +p343755 +sa(dp343756 +g291130 +S'etching in black on Whatman paper' +p343757 +sg291132 +S'1948' +p343758 +sg291134 +S'The Lobster Fisherman' +p343759 +sg291136 +g27 +sg291137 +S'John Marin' +p343760 +sa(dp343761 +g291134 +S'Jackdaws of Chartres' +p343762 +sg291137 +S'George Marples' +p343763 +sg291130 +S'etching in black on laid paper' +p343764 +sg291132 +S'1917' +p343765 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00080/a00080bf.jpg' +p343766 +sg291136 +g27 +sa(dp343767 +g291130 +S'engraving in black on wove paper' +p343768 +sg291132 +S'1941' +p343769 +sg291134 +S'Bathers in the Hudson' +p343770 +sg291136 +g27 +sg291137 +S'Reginald Marsh' +p343771 +sa(dp343772 +g291134 +S'Glenfinnan' +p343773 +sg291137 +S'Mortimer Menpes' +p343774 +sg291130 +S'color etching on wove paper' +p343775 +sg291132 +S'unknown date\n' +p343776 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00081/a000815f.jpg' +p343777 +sg291136 +g27 +sa(dp343778 +g291134 +S'Coll\xc3\xa8ge Henri IV, Paris, ou Lyc\xc3\xa9e Napol\xc3\xa9on (Henry IV College or Napoleon School)' +p343779 +sg291137 +S'Charles Meryon' +p343780 +sg291130 +S'etching in black on laid paper' +p343781 +sg291132 +S'1863/1864' +p343782 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d88.jpg' +p343783 +sg291136 +g27 +sa(dp343784 +g291130 +S'direct photographic transfer and engraving in black on wove paper' +p343785 +sg291132 +S'1975' +p343786 +sg291134 +S"April's August" +p343787 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343788 +sa(dp343789 +g291130 +S'lift-ground etching in black on wove paper' +p343790 +sg291132 +S'1963' +p343791 +sg291134 +S'Botanical Garden' +p343792 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343793 +sa(dp343794 +g291130 +S'lift-ground etching in black on wove paper' +p343795 +sg291132 +S'1964' +p343796 +sg291134 +S'Brueghelscape #1' +p343797 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343798 +sa(dp343799 +g291130 +S'lift-ground etching in black on cream wove paper' +p343800 +sg291132 +S'1964' +p343801 +sg291134 +S'Brueghelscape #2' +p343802 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343803 +sa(dp343804 +g291130 +S'lift-ground etching in black on wove paper' +p343805 +sg291132 +S'1965' +p343806 +sg291134 +S'Clap Hands! Here Comes Charlie' +p343807 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343808 +sa(dp343809 +g291130 +S'photosensitive-ground etching, engraving, and direct photographic transfer in black on cream wove paper' +p343810 +sg291132 +S'1974' +p343811 +sg291134 +S'The First Gate' +p343812 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343813 +sa(dp343814 +g291130 +S'lift-ground etching and engraving in black on Rives paper' +p343815 +sg291132 +S'1968' +p343816 +sg291134 +S'Free Fall' +p343817 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343818 +sa(dp343819 +g291130 +S'lift-ground etching in black on wove paper' +p343820 +sg291132 +S'1967' +p343821 +sg291134 +S'The Hill' +p343822 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343823 +sa(dp343824 +g291130 +S'lift-ground etching and engraving in black on wove paper' +p343825 +sg291132 +S'1968' +p343826 +sg291134 +S'Mornings with Judd' +p343827 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343828 +sa(dp343829 +g291130 +S'lift-ground etching, hard-ground etching, and engraving in black on cream wove paper' +p343830 +sg291132 +S'1970' +p343831 +sg291134 +S'Mornings with Judd (Second State)' +p343832 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343833 +sa(dp343834 +g291130 +S'lift-ground etching in black on cream wove paper' +p343835 +sg291132 +S'1965' +p343836 +sg291134 +S'Parade' +p343837 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343838 +sa(dp343839 +g291130 +S'lift-ground etching and aquatint in black on wove paper' +p343840 +sg291132 +S'1967' +p343841 +sg291134 +S'Parade (Second State)' +p343842 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343843 +sa(dp343844 +g291130 +S'photosensitive-ground etching and engraving in black on cream wove paper' +p343845 +sg291132 +S'1971' +p343846 +sg291134 +S'Passage I' +p343847 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343848 +sa(dp343849 +g291130 +S'photosensitive-ground etching and engraving in black on wove paper' +p343850 +sg291132 +S'1972' +p343851 +sg291134 +S'Passage III (state proof)' +p343852 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343853 +sa(dp343854 +g291130 +S'photosensitive-ground etching and engraving in black on wove paper printed from 3 plates' +p343855 +sg291132 +S'1972' +p343856 +sg291134 +S'Passage III' +p343857 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343858 +sa(dp343859 +g291130 +S'photosensitive-ground etching, engraving, and direct photographic transfer in black on wove paper printed from 2 plates' +p343860 +sg291132 +S'1973' +p343861 +sg291134 +S'Passage IV' +p343862 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343863 +sa(dp343864 +g291130 +S'lift-ground etching and engraving in black on cream wove paper' +p343865 +sg291132 +S'1965' +p343866 +sg291134 +S'Street Scene' +p343867 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343868 +sa(dp343869 +g291130 +S'lift-ground and hard-ground etching in black on wove paper' +p343870 +sg291132 +S'1961' +p343871 +sg291134 +S'Summer Landscape' +p343872 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343873 +sa(dp343874 +g291130 +S'lift-ground etching in black on wove paper' +p343875 +sg291132 +S'1963' +p343876 +sg291134 +S'Summer Landscape IV' +p343877 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343878 +sa(dp343879 +g291130 +S'lift-ground etching in black on wove paper' +p343880 +sg291132 +S'1963' +p343881 +sg291134 +S'Summer Landscape V' +p343882 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343883 +sa(dp343884 +g291130 +S'lift-ground etching and engraving on chine coll?' +p343885 +sg291132 +S'1961' +p343886 +sg291134 +S'Trees and Snow II' +p343887 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343888 +sa(dp343889 +g291130 +S'lift-ground etching and aquatint in black on wove paper' +p343890 +sg291132 +S'1967' +p343891 +sg291134 +S'Winterscape VII' +p343892 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343893 +sa(dp343894 +g291130 +S'lift-ground etching, photosensitive-ground etching, and engraving in black on Rives paper' +p343895 +sg291132 +S'1979' +p343896 +sg291134 +S'The Couple' +p343897 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343898 +sa(dp343899 +g291130 +S'lift-ground etching , photosensitive-ground etching, and engraving in black on Rives paper' +p343900 +sg291132 +S'1979' +p343901 +sg291134 +S'In the Park' +p343902 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343903 +sa(dp343904 +g291130 +S'lift-ground etching on cream wove paper' +p343905 +sg291132 +S'1981' +p343906 +sg291134 +S"Sanctuary's Edge" +p343907 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343908 +sa(dp343909 +g291130 +S'photosensitive-ground etching, engraving, and direct photographic transfer in black on cream wove paper' +p343910 +sg291132 +S'1975' +p343911 +sg291134 +S'Card House' +p343912 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343913 +sa(dp343914 +g291130 +S'photosensitive-ground etching, engraving, and direct photographic transfer in black on cream wove paper' +p343915 +sg291132 +S'1975' +p343916 +sg291134 +S'Daylilies' +p343917 +sg291136 +g27 +sg291137 +S'Peter Milton' +p343918 +sa(dp343919 +g291130 +S'color woodcut on wove paper' +p343920 +sg291132 +S'1980' +p343921 +sg291134 +S'Battleship Butte' +p343922 +sg291136 +g27 +sg291137 +S'Gordon Mortensen' +p343923 +sa(dp343924 +g291130 +S'American' +p343925 +sg291132 +S'(printer)' +p343926 +sg291134 +S'Manchester' +p343927 +sg291136 +g27 +sg291137 +S'Artist Information (' +p343928 +sa(dp343929 +g291130 +S'etching in black and spitbite etching in green, yellow, and blue on Arches paper' +p343930 +sg291132 +S'1980' +p343931 +sg291134 +S'Acqua Di Stagno' +p343932 +sg291136 +g27 +sg291137 +S'Mimmo Paladino' +p343933 +sa(dp343934 +g291130 +S'screenprint on wove paper' +p343935 +sg291132 +S'1961' +p343936 +sg291134 +S'Inkwells' +p343937 +sg291136 +g27 +sg291137 +S'Eduardo Paolozzi' +p343938 +sa(dp343939 +g291130 +S'screenprint on wove paper' +p343940 +sg291132 +S'1971' +p343941 +sg291134 +S'Untitled' +p343942 +sg291136 +g27 +sg291137 +S'Eduardo Paolozzi' +p343943 +sa(dp343944 +g291130 +S'screenprint poster on wove paper' +p343945 +sg291132 +S'1971' +p343946 +sg291134 +S'Untitled' +p343947 +sg291136 +g27 +sg291137 +S'Eduardo Paolozzi' +p343948 +sa(dp343949 +g291130 +S'4-color lithograph on wove paper' +p343950 +sg291132 +S'1977' +p343951 +sg291134 +S'Nude on Eames Stool' +p343952 +sg291136 +g27 +sg291137 +S'Philip Pearlstein' +p343953 +sa(dp343954 +g291134 +S"L'Ane (The Donkey)" +p343955 +sg291137 +S'Pablo Picasso' +p343956 +sg291130 +S'aquatint in black on wove paper' +p343957 +sg291132 +S'1941/1942' +p343958 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee96.jpg' +p343959 +sg291136 +g27 +sa(dp343960 +g291134 +S"L'Autriche (The Ostrich)" +p343961 +sg291137 +S'Pablo Picasso' +p343962 +sg291130 +S'aquatint in black on wove paper' +p343963 +sg291132 +S'1941/1942' +p343964 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee97.jpg' +p343965 +sg291136 +g27 +sa(dp343966 +g291134 +S'Le Chat (The Cat)' +p343967 +sg291137 +S'Pablo Picasso' +p343968 +sg291130 +S'aquatint in black on laid paper' +p343969 +sg291132 +S'1941/1942' +p343970 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee95.jpg' +p343971 +sg291136 +g27 +sa(dp343972 +g291134 +S'Le Dindon (The Turkey)' +p343973 +sg291137 +S'Pablo Picasso' +p343974 +sg291130 +S'aquatint in black laid paper' +p343975 +sg291132 +S'1941/1942' +p343976 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee94.jpg' +p343977 +sg291136 +g27 +sa(dp343978 +g291134 +S'Le Taureau (The Bull)' +p343979 +sg291137 +S'Pablo Picasso' +p343980 +sg291130 +S'aquatint in black on laid paper' +p343981 +sg291132 +S'1941/1942' +p343982 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee93.jpg' +p343983 +sg291136 +g27 +sa(dp343984 +g291130 +S'lithograph in black on Arches cream paper' +p343985 +sg291132 +S'1983' +p343986 +sg291134 +S"Fingerspan: For Climber's Rock, Fairmount Park" +p343987 +sg291136 +g27 +sg291137 +S'Jody Pinto' +p343988 +sa(dp343989 +g291130 +S'lithograph in blue and black on Rives paper' +p343990 +sg291132 +S'1965' +p343991 +sg291134 +S'Visitation I' +p343992 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p343993 +sa(dp343994 +g291134 +S'A Horse, Buffalo, Sheep, and Goat in an Italian Landscape' +p343995 +sg291137 +S'Artist Information (' +p343996 +sg291130 +S'(artist after)' +p343997 +sg291132 +S'\n' +p343998 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b376.jpg' +p343999 +sg291136 +g27 +sa(dp344000 +g291130 +S'lithograph in black on Rives paper' +p344001 +sg291132 +S'c. 1935' +p344002 +sg291134 +S'Elephant Act' +p344003 +sg291136 +g27 +sg291137 +S'Robert Riggs' +p344004 +sa(dp344005 +g291130 +S'aquatint with scraping and burnishing in black on Arches paper' +p344006 +sg291132 +S'1977' +p344007 +sg291134 +S'Elkins Park View' +p344008 +sg291136 +g27 +sg291137 +S'Tony Rosati' +p344009 +sa(dp344010 +g291130 +S'4-color screenprint on wove paper' +p344011 +sg291132 +S'1978' +p344012 +sg291134 +S'Nude Leaning Over Chair' +p344013 +sg291136 +g27 +sg291137 +S'George Segal' +p344014 +sa(dp344015 +g291130 +S'screenprint in black on Unbleached Arnold paper' +p344016 +sg291132 +S'1953' +p344017 +sg291134 +S'TV Antennae' +p344018 +sg291136 +g27 +sg291137 +S'Ben Shahn' +p344019 +sa(dp344020 +g291130 +S'lithograph in black on wove paper' +p344021 +sg291132 +S'unknown date\n' +p344022 +sg291134 +S'Dog' +p344023 +sg291136 +g27 +sg291137 +S'David Alfaro Siqueiros' +p344024 +sa(dp344025 +g291130 +S'etching in blue-black on japan paper' +p344026 +sg291132 +S'1982' +p344027 +sg291134 +S'Big Bend Trail' +p344028 +sg291136 +g27 +sg291137 +S'Provoslav Sov\xc3\xa1k' +p344029 +sa(dp344030 +g291130 +S'hand-colored etching on wove paper' +p344031 +sg291132 +S'unknown date\n' +p344032 +sg291134 +S'Blue Mountains' +p344033 +sg291136 +g27 +sg291137 +S'Provoslav Sov\xc3\xa1k' +p344034 +sa(dp344035 +g291130 +S'hand-colored photo-etching on Rives BFK paper' +p344036 +sg291132 +S'1978' +p344037 +sg291134 +S'East Asian Museum' +p344038 +sg291136 +g27 +sg291137 +S'Provoslav Sov\xc3\xa1k' +p344039 +sa(dp344040 +g291130 +S'hand-colored etching on Rives BFK paper' +p344041 +sg291132 +S'1979' +p344042 +sg291134 +S'Montezuma Creek' +p344043 +sg291136 +g27 +sg291137 +S'Provoslav Sov\xc3\xa1k' +p344044 +sa(dp344045 +g291130 +S'hand-colored photo-etching on Rives BFK paper' +p344046 +sg291132 +S'1978' +p344047 +sg291134 +S'Piero' +p344048 +sg291136 +g27 +sg291137 +S'Provoslav Sov\xc3\xa1k' +p344049 +sa(dp344050 +g291130 +S'softground etching and etching in black and colors with hand-coloring in watercolor on Rives BFK paper' +p344051 +sg291132 +S'1970' +p344052 +sg291134 +S'Print Club Interior' +p344053 +sg291136 +g27 +sg291137 +S'Provoslav Sov\xc3\xa1k' +p344054 +sa(dp344055 +g291130 +S'drypoint and roulette in black on wove paper' +p344056 +sg291132 +S'1958' +p344057 +sg291134 +S'Street Scene' +p344058 +sg291136 +g27 +sg291137 +S'Provoslav Sov\xc3\xa1k' +p344059 +sa(dp344060 +g291130 +S'photo-etching and etching in black, blue, and red on wove paper' +p344061 +sg291132 +S'1968' +p344062 +sg291134 +S'Students' +p344063 +sg291136 +g27 +sg291137 +S'Provoslav Sov\xc3\xa1k' +p344064 +sa(dp344065 +g291130 +S'woodcut in black on japan paper' +p344066 +sg291132 +S'1984' +p344067 +sg291134 +S'Reservoir' +p344068 +sg291136 +g27 +sg291137 +S'Hester Stinnett' +p344069 +sa(dp344070 +g291134 +S"Le jouer d'orgue (The Organ Grinder)" +p344071 +sg291137 +S'James Jacques Joseph Tissot' +p344072 +sg291130 +S'drypoint and etching in black on laid paper' +p344073 +sg291132 +S'1878' +p344074 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009b/a0009bbb.jpg' +p344075 +sg291136 +g27 +sa(dp344076 +g291134 +S'Rhinoceros' +p344077 +sg291137 +S'Artist Information (' +p344078 +sg291130 +S'(artist after)' +p344079 +sg291132 +S'\n' +p344080 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c891.jpg' +p344081 +sg291136 +g27 +sa(dp344082 +g291130 +S'engraving in black on laid paper' +p344083 +sg291132 +S'1944' +p344084 +sg291134 +S'Le cheval de la nuit' +p344085 +sg291136 +g27 +sg291137 +S'Roger Vieillard' +p344086 +sa(dp344087 +g291130 +S'engraving and softground etching in black on Auvergne a la Main laid paper' +p344088 +sg291132 +S'1935' +p344089 +sg291134 +S"Jacob et l'ange" +p344090 +sg291136 +g27 +sg291137 +S'Roger Vieillard' +p344091 +sa(dp344092 +g291130 +S'engraving in black on cream Auvergne a la Main laid paper' +p344093 +sg291132 +S'1949' +p344094 +sg291134 +S'Musique et danse' +p344095 +sg291136 +g27 +sg291137 +S'Roger Vieillard' +p344096 +sa(dp344097 +g291130 +S'etching and aquatint in black, two shades of green, blue, gray, and orange on wove paper' +p344098 +sg291132 +S'1988' +p344099 +sg291134 +S'Loon' +p344100 +sg291136 +g27 +sg291137 +S'Neil Welliver' +p344101 +sa(dp344102 +g291134 +S'The Dog on the Kennel' +p344103 +sg291137 +S'James McNeill Whistler' +p344104 +sg291130 +S'etching in black on wove paper' +p344105 +sg291132 +S'unknown date\n' +p344106 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000a9/a000a9c2.jpg' +p344107 +sg291136 +g27 +sa(dp344108 +g291130 +S'etching and aquatint in black on Japanese mould-made paper' +p344109 +sg291132 +S'1973' +p344110 +sg291134 +S'Landscape' +p344111 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p344112 +sa(dp344113 +g291130 +S'(author)' +p344114 +sg291132 +S'\n' +p344115 +sg291134 +S'Landscapes & Figures' +p344116 +sg291136 +g27 +sg291137 +S'Artist Information (' +p344117 +sa(dp344118 +g291130 +S'etching and aquatint in black on Japanese mould-made paper' +p344119 +sg291132 +S'1973' +p344120 +sg291134 +S'Landscape' +p344121 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p344122 +sa(dp344123 +g291130 +S'etching and aquatint in black on Japanese mould-made paper' +p344124 +sg291132 +S'1973' +p344125 +sg291134 +S'Landscape' +p344126 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p344127 +sa(dp344128 +g291130 +S'etching and aquatint in black on Japanese mould-made paper' +p344129 +sg291132 +S'1973' +p344130 +sg291134 +S'Landscape' +p344131 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p344132 +sa(dp344133 +g291130 +S'etching and aquatint in black on Japanese mould-made paper' +p344134 +sg291132 +S'1973' +p344135 +sg291134 +S'Landscape' +p344136 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p344137 +sa(dp344138 +g291130 +S'etching and aquatint in black on Japanese mould-made paper' +p344139 +sg291132 +S'1973' +p344140 +sg291134 +S'Landscape' +p344141 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p344142 +sa(dp344143 +g291130 +S'etching and aquatint in black on Japanese mould-made paper' +p344144 +sg291132 +S'1973' +p344145 +sg291134 +S'Landscape' +p344146 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p344147 +sa(dp344148 +g291130 +S'etching and aquatint in black on Japanese mould-made paper' +p344149 +sg291132 +S'1973' +p344150 +sg291134 +S'Landscape' +p344151 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p344152 +sa(dp344153 +g291130 +S'aquatint and etching in black on Lana Pur Fil paper' +p344154 +sg291132 +S'1988' +p344155 +sg291134 +S'Falkland Palace' +p344156 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p344157 +sa(dp344158 +g291130 +S'(author)' +p344159 +sg291132 +S'\n' +p344160 +sg291134 +S'Falkland Palace' +p344161 +sg291136 +g27 +sg291137 +S'Artist Information (' +p344162 +sa(dp344163 +g291130 +S'aquatint and softground etching in black on Lana Pur Fil paper' +p344164 +sg291132 +S'1988' +p344165 +sg291134 +S"Creich Tower and Norman's Law" +p344166 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p344167 +sa(dp344168 +g291130 +S'aquatint in black on Lana Pur Fil paper' +p344169 +sg291132 +S'1988' +p344170 +sg291134 +S'Tay Bridge' +p344171 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p344172 +sa(dp344173 +g291130 +S'aquatint in black on Lana Pur Fil paper' +p344174 +sg291132 +S'1988' +p344175 +sg291134 +S'Bass Rock' +p344176 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p344177 +sa(dp344178 +g291130 +S'aquatint in black on Lana Pur Fil paper' +p344179 +sg291132 +S'1988' +p344180 +sg291134 +S'Loch Leven - rain' +p344181 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p344182 +sa(dp344183 +g291130 +S'aquatint in black on Lana Pur Fil paper' +p344184 +sg291132 +S'1988' +p344185 +sg291134 +S'Isle of May' +p344186 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p344187 +sa(dp344188 +g291130 +S'aquatint in black on Lana Pur Fil paper' +p344189 +sg291132 +S'1988' +p344190 +sg291134 +S'Largo Law' +p344191 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p344192 +sa(dp344193 +g291130 +S'aquatint in black on Lana Pur Fil paper' +p344194 +sg291132 +S'1988' +p344195 +sg291134 +S'From Lomond Hill' +p344196 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p344197 +sa(dp344198 +g291130 +S'aquatint in black on Lana Pur Fil paper' +p344199 +sg291132 +S'1988' +p344200 +sg291134 +S'Buddon Ness' +p344201 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p344202 +sa(dp344203 +g291130 +S'aquatint in black on Lana Pur Fil paper' +p344204 +sg291132 +S'1988' +p344205 +sg291134 +S'Lindores Abbey' +p344206 +sg291136 +g27 +sg291137 +S'Norman Ackroyd' +p344207 +sa(dp344208 +g291130 +S'screenprint in black and yellow with gold paper collaged onto laid paper' +p344209 +sg291132 +S'1970' +p344210 +sg291134 +S'Owl Feathers: page 1' +p344211 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344212 +sa(dp344213 +g291130 +S'portfolio of fifty-three screenprints with cover design, additional title page, introduction, and colophon page' +p344214 +sg291132 +S'published 1970' +p344215 +sg291134 +S'Owl Feathers' +p344216 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344217 +sa(dp344218 +g291130 +S'screenprint in black on laid paper' +p344219 +sg291132 +S'1970' +p344220 +sg291134 +S'Owl Feathers: page 4' +p344221 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344222 +sa(dp344223 +g291130 +S'screenprint in black on laid paper' +p344224 +sg291132 +S'1970' +p344225 +sg291134 +S'Owl Feathers: page 5' +p344226 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344227 +sa(dp344228 +g291130 +S'screenprint in black and two shades of yellow on laid paper' +p344229 +sg291132 +S'1970' +p344230 +sg291134 +S'Owl Feathers: page 6' +p344231 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344232 +sa(dp344233 +g291130 +S'screenprint in black on laid paper' +p344234 +sg291132 +S'1970' +p344235 +sg291134 +S'Owl Feathers: page 7' +p344236 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344237 +sa(dp344238 +g291130 +S'screenprint in black and yellow on laid paper' +p344239 +sg291132 +S'1970' +p344240 +sg291134 +S'Owl Feathers: page 8' +p344241 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344242 +sa(dp344243 +g291130 +S'screenprint in black and yellow on laid paper' +p344244 +sg291132 +S'1970' +p344245 +sg291134 +S'Owl Feathers: page 9' +p344246 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344247 +sa(dp344248 +g291130 +S'screenprint in black on laid paper' +p344249 +sg291132 +S'1970' +p344250 +sg291134 +S'Owl Feathers: page 10' +p344251 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344252 +sa(dp344253 +g291130 +S'screenprint in black and two shades of yellow on laid paper' +p344254 +sg291132 +S'1970' +p344255 +sg291134 +S'Owl Feathers: page 11' +p344256 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344257 +sa(dp344258 +g291130 +S'screenprint in black on laid paper' +p344259 +sg291132 +S'1970' +p344260 +sg291134 +S'Owl Feathers: page 12' +p344261 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344262 +sa(dp344263 +g291130 +S'screenprint in black and yellow on laid paper' +p344264 +sg291132 +S'1970' +p344265 +sg291134 +S'Owl Feathers: page 13' +p344266 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344267 +sa(dp344268 +g291130 +S'screenprint in black and two shades of yellow on laid paper' +p344269 +sg291132 +S'1970' +p344270 +sg291134 +S'Owl Feathers: page 14' +p344271 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344272 +sa(dp344273 +g291130 +S'screenprint in black on laid paper' +p344274 +sg291132 +S'1970' +p344275 +sg291134 +S'Owl Feathers: page 15' +p344276 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344277 +sa(dp344278 +g291130 +S'screenprint in black and yellow on wove paper' +p344279 +sg291132 +S'1970' +p344280 +sg291134 +S'Owl Feathers: page 16' +p344281 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344282 +sa(dp344283 +g291130 +S'screenprint in black and yellow on wove paper' +p344284 +sg291132 +S'1970' +p344285 +sg291134 +S'Owl Feathers: page 17' +p344286 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344287 +sa(dp344288 +g291130 +S'screenprint in black and yellow on laid paper' +p344289 +sg291132 +S'1970' +p344290 +sg291134 +S'Owl Feathers: page 18' +p344291 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344292 +sa(dp344293 +g291130 +S'screenprint in black on laid paper' +p344294 +sg291132 +S'1970' +p344295 +sg291134 +S'Owl Feathers: page 19' +p344296 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344297 +sa(dp344298 +g291130 +S'screenprint in black and yellow on laid paper' +p344299 +sg291132 +S'1970' +p344300 +sg291134 +S'Owl Feathers: page 20' +p344301 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344302 +sa(dp344303 +g291130 +S'screenprint in black on laid paper' +p344304 +sg291132 +S'1970' +p344305 +sg291134 +S'Owl Feathers: page 21' +p344306 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344307 +sa(dp344308 +g291130 +S'screenprint in black and yellow on wove paper' +p344309 +sg291132 +S'1970' +p344310 +sg291134 +S'Owl Feathers: page 22' +p344311 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344312 +sa(dp344313 +g291130 +S'screenprint in black and yellow on laid paper' +p344314 +sg291132 +S'1970' +p344315 +sg291134 +S'Owl Feathers: page 23' +p344316 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344317 +sa(dp344318 +g291130 +S'screenprint in black and yellow on laid paper' +p344319 +sg291132 +S'1970' +p344320 +sg291134 +S'Owl Feathers: page 24' +p344321 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344322 +sa(dp344323 +g291130 +S'screenprint in black and yellow on laid paper' +p344324 +sg291132 +S'1970' +p344325 +sg291134 +S'Owl Feathers: page 25' +p344326 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344327 +sa(dp344328 +g291130 +S'screenprint in black on laid paper' +p344329 +sg291132 +S'1970' +p344330 +sg291134 +S'Owl Feathers: page 26' +p344331 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344332 +sa(dp344333 +g291130 +S'screenprint in black and yellow on laid paper' +p344334 +sg291132 +S'1970' +p344335 +sg291134 +S'Owl Feathers: page 27' +p344336 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344337 +sa(dp344338 +g291130 +S'screenprint in black and yellow on laid paper' +p344339 +sg291132 +S'1970' +p344340 +sg291134 +S'Owl Feathers: page 28' +p344341 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344342 +sa(dp344343 +g291130 +S'screenprint in black on laid paper' +p344344 +sg291132 +S'1970' +p344345 +sg291134 +S'Owl Feathers: page 29' +p344346 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344347 +sa(dp344348 +g291130 +S'screenprint in black and yellow on laid paper' +p344349 +sg291132 +S'1970' +p344350 +sg291134 +S'Owl Feathers: page 30' +p344351 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344352 +sa(dp344353 +g291130 +S'screenprint in black on wove paper' +p344354 +sg291132 +S'1970' +p344355 +sg291134 +S'Owl Feathers: page 31' +p344356 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344357 +sa(dp344358 +g291130 +S'screenprint in black and yellow on laid paper' +p344359 +sg291132 +S'1970' +p344360 +sg291134 +S'Owl Feathers: page 32' +p344361 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344362 +sa(dp344363 +g291130 +S'screenprint in black on laid paper' +p344364 +sg291132 +S'1970' +p344365 +sg291134 +S'Owl Feathers: page 33' +p344366 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344367 +sa(dp344368 +g291130 +S'screenprint in black and yellow on laid paper' +p344369 +sg291132 +S'1970' +p344370 +sg291134 +S'Owl Feathers: page 34' +p344371 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344372 +sa(dp344373 +g291130 +S'screenprint in black and two shades of yellow on laid paper' +p344374 +sg291132 +S'1970' +p344375 +sg291134 +S'Owl Feathers: page 35' +p344376 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344377 +sa(dp344378 +g291130 +S'screenprint in black and yellow on laid paper' +p344379 +sg291132 +S'1970' +p344380 +sg291134 +S'Owl Feathers: page 36' +p344381 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344382 +sa(dp344383 +g291130 +S'screenprint in black and yellow on laid paper' +p344384 +sg291132 +S'1970' +p344385 +sg291134 +S'Owl Feathers: page 37' +p344386 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344387 +sa(dp344388 +g291130 +S'screenprint in black and two shades of yellow on laid paper' +p344389 +sg291132 +S'1970' +p344390 +sg291134 +S'Owl Feathers: page 38' +p344391 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344392 +sa(dp344393 +g291130 +S'screenprint in black and yellow on laid paper' +p344394 +sg291132 +S'1970' +p344395 +sg291134 +S'Owl Feathers: page 39' +p344396 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344397 +sa(dp344398 +g291130 +S'screenprint in black and yellow on laid paper' +p344399 +sg291132 +S'1970' +p344400 +sg291134 +S'Owl Feathers: page 40' +p344401 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344402 +sa(dp344403 +g291130 +S'screenprint in black on laid paper' +p344404 +sg291132 +S'1970' +p344405 +sg291134 +S'Owl Feathers: page 41' +p344406 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344407 +sa(dp344408 +g291130 +S'screenprint in black and yellow on laid paper' +p344409 +sg291132 +S'1970' +p344410 +sg291134 +S'Owl Feathers: page 42' +p344411 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344412 +sa(dp344413 +g291130 +S'screenprint in black and yellow on laid paper' +p344414 +sg291132 +S'1970' +p344415 +sg291134 +S'Owl Feathers: page 43' +p344416 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344417 +sa(dp344418 +g291130 +S'screenprint in black on laid paper' +p344419 +sg291132 +S'1970' +p344420 +sg291134 +S'Owl Feathers: page 44' +p344421 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344422 +sa(dp344423 +g291130 +S'screenprint in black and yellow on laid paper' +p344424 +sg291132 +S'1970' +p344425 +sg291134 +S'Owl Feathers: page 45' +p344426 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344427 +sa(dp344428 +g291130 +S'screenprint in black and yellow on laid paper' +p344429 +sg291132 +S'1970' +p344430 +sg291134 +S'Owl Feathers: page 46' +p344431 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344432 +sa(dp344433 +g291130 +S'screenprint in black and yellow on laid paper' +p344434 +sg291132 +S'1970' +p344435 +sg291134 +S'Owl Feathers: page 47' +p344436 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344437 +sa(dp344438 +g291130 +S'screenprint in black and two shades of yellow on laid paper' +p344439 +sg291132 +S'1970' +p344440 +sg291134 +S'Owl Feathers: page 48' +p344441 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344442 +sa(dp344443 +g291130 +S'screenprint in black on laid paper' +p344444 +sg291132 +S'1970' +p344445 +sg291134 +S'Owl Feathers: page 49' +p344446 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344447 +sa(dp344448 +g291130 +S'screenprint in black and yellow on laid paper' +p344449 +sg291132 +S'1970' +p344450 +sg291134 +S'Owl Feathers: page 50' +p344451 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344452 +sa(dp344453 +g291130 +S'screenprint in black and yellow on laid paper' +p344454 +sg291132 +S'1970' +p344455 +sg291134 +S'Owl Feathers: page 51' +p344456 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344457 +sa(dp344458 +g291130 +S'screenprint in black and yellow on laid paper' +p344459 +sg291132 +S'1970' +p344460 +sg291134 +S'Owl Feathers: page 52' +p344461 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344462 +sa(dp344463 +g291130 +S'screenprint in black and yellow on laid paper' +p344464 +sg291132 +S'1970' +p344465 +sg291134 +S'Owl Feathers: page 53' +p344466 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344467 +sa(dp344468 +g291130 +S'screenprint in black and yellow on laid paper' +p344469 +sg291132 +S'1970' +p344470 +sg291134 +S'Owl Feathers: page 54' +p344471 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344472 +sa(dp344473 +g291130 +S'screenprint in black and yellow on laid paper' +p344474 +sg291132 +S'1970' +p344475 +sg291134 +S'Owl Feathers: page 55' +p344476 +sg291136 +g27 +sg291137 +S'William Crutchfield' +p344477 +sa(dp344478 +g291130 +S'(author)' +p344479 +sg291132 +S'\n' +p344480 +sg291134 +S'Fourteen poems by C.P. Cavafy chosen and illustrated with twelve etchings by David Hockney' +p344481 +sg291136 +g27 +sg291137 +S'Artist Information (' +p344482 +sa(dp344483 +g291130 +S'etching and aquatint in black on Hevisier Art Drawing paper by H.V. Seir Limited' +p344484 +sg291132 +S'1966' +p344485 +sg291134 +S'C.P. Cavafy in Alexandria' +p344486 +sg291136 +g27 +sg291137 +S'David Hockney' +p344487 +sa(dp344488 +g291130 +S'etching and aquatint in black on Hevisier Art Drawing paper by H.V. Seir Limited' +p344489 +sg291132 +S'1966' +p344490 +sg291134 +S'Two boys aged 23 or 24' +p344491 +sg291136 +g27 +sg291137 +S'David Hockney' +p344492 +sa(dp344493 +g291130 +S'etching and aquatint in black on Hevisier Art Drawing paper by H.V. Seir Limited' +p344494 +sg291132 +S'1966' +p344495 +sg291134 +S'He enquired after the quality' +p344496 +sg291136 +g27 +sg291137 +S'David Hockney' +p344497 +sa(dp344498 +g291130 +S'etching and aquatint in black on Hevisier Art Drawing paper by H.V. Seir Limited' +p344499 +sg291132 +S'1966' +p344500 +sg291134 +S'To remain' +p344501 +sg291136 +g27 +sg291137 +S'David Hockney' +p344502 +sa(dp344503 +g291130 +S'etching in black on Hevisier Art Drawing paper by H.V. Seir Limited' +p344504 +sg291132 +S'1966' +p344505 +sg291134 +S'According to prescriptions of ancient magicians' +p344506 +sg291136 +g27 +sg291137 +S'David Hockney' +p344507 +sa(dp344508 +g291130 +S'etching in black on Hevisier Art Drawing paper by H.V. Seir Limited' +p344509 +sg291132 +S'1966' +p344510 +sg291134 +S'In an old book' +p344511 +sg291136 +g27 +sg291137 +S'David Hockney' +p344512 +sa(dp344513 +g291130 +S'etching and aquatint in black on Hevisier Art Drawing paper by H.V. Seir Limited' +p344514 +sg291132 +S'1966' +p344515 +sg291134 +S'The shop window of a tobacco store' +p344516 +sg291136 +g27 +sg291137 +S'David Hockney' +p344517 +sa(dp344518 +g291130 +S'etching in black on Hevisier Art Drawing paper by H.V. Seir Limited' +p344519 +sg291132 +S'1966' +p344520 +sg291134 +S'In the dull village' +p344521 +sg291136 +g27 +sg291137 +S'David Hockney' +p344522 +sa(dp344523 +g291130 +S'etching with scraping in black on Hevisier Art Drawing paper by H.V. Seir Limited' +p344524 +sg291132 +S'1966' +p344525 +sg291134 +S'The beginning' +p344526 +sg291136 +g27 +sg291137 +S'David Hockney' +p344527 +sa(dp344528 +g291130 +S'etching and aquatint in black on Hevisier Art Drawing paper by H.V. Seir Limited' +p344529 +sg291132 +S'1966' +p344530 +sg291134 +S'One night' +p344531 +sg291136 +g27 +sg291137 +S'David Hockney' +p344532 +sa(dp344533 +g291130 +S'etching in black on Hevisier Art Drawing paper by H.V. Seir Limited' +p344534 +sg291132 +S'1966' +p344535 +sg291134 +S'In despair' +p344536 +sg291136 +g27 +sg291137 +S'David Hockney' +p344537 +sa(dp344538 +g291130 +S'etching and aquatint in black on Hevisier Art Drawing paper by H.V. Seir Limited' +p344539 +sg291132 +S'1966' +p344540 +sg291134 +S'Beautiful and white flowers' +p344541 +sg291136 +g27 +sg291137 +S'David Hockney' +p344542 +sa(dp344543 +g291130 +S"etching in black on d'Auvergne du Moulin Richard-de-Bas paper" +p344544 +sg291132 +S'1950' +p344545 +sg291134 +S'Rest (Le repos)' +p344546 +sg291136 +g27 +sg291137 +S'Marino Marini' +p344547 +sa(dp344548 +g291130 +S'portfolio with 12 etchings, title page, table of contents, and introduction by G. di San Lazzaro' +p344549 +sg291132 +S'published 1968' +p344550 +sg291134 +S"L'Album No. 1" +p344551 +sg291136 +g27 +sg291137 +S'Marino Marini' +p344552 +sa(dp344553 +g291130 +S"etching in black on d'Auvergne du Moulin Richard-de-Bas paper" +p344554 +sg291132 +S'1950' +p344555 +sg291134 +S"Perception (L'Id\xc3\xa9e)" +p344556 +sg291136 +g27 +sg291137 +S'Marino Marini' +p344557 +sa(dp344558 +g291130 +S"etching in black on d'Auvergne du Moulin Richard-de-Bas paper" +p344559 +sg291132 +S'1954' +p344560 +sg291134 +S'Horseman (Un cavalier)' +p344561 +sg291136 +g27 +sg291137 +S'Marino Marini' +p344562 +sa(dp344563 +g291130 +S"etching in black on d'Auvergne du Moulin Richard-de-Bas paper" +p344564 +sg291132 +S'1954' +p344565 +sg291134 +S'Trio' +p344566 +sg291136 +g27 +sg291137 +S'Marino Marini' +p344567 +sa(dp344568 +g291130 +S"etching in black on d'Auvergne du Moulin Richard-de-Bas paper" +p344569 +sg291132 +S'1955' +p344570 +sg291134 +S"Invocation (L'Invocation)" +p344571 +sg291136 +g27 +sg291137 +S'Marino Marini' +p344572 +sa(dp344573 +g291130 +S"etching in black on d'Auvergne du Moulin Richard-de-Bas paper" +p344574 +sg291132 +S'1956' +p344575 +sg291134 +S'Theatre of Masks (Th\xc3\xa9\xc3\xa2tre des masques)' +p344576 +sg291136 +g27 +sg291137 +S'Marino Marini' +p344577 +sa(dp344578 +g291130 +S"etching in black on d'Auvergne du Moulin Richard-de-Bas paper" +p344579 +sg291132 +S'1956' +p344580 +sg291134 +S'Tumblers (Jongleurs)' +p344581 +sg291136 +g27 +sg291137 +S'Marino Marini' +p344582 +sa(dp344583 +g291130 +S"etching in black on d'Auvergne du Moulin Richard-de-Bas paper" +p344584 +sg291132 +S'1958' +p344585 +sg291134 +S"The Horseman's View (L'Id\xc3\xa9e du cavalier)" +p344586 +sg291136 +g27 +sg291137 +S'Marino Marini' +p344587 +sa(dp344588 +g291130 +S"etching in black on d'Auvergne du Moulin Richard-de-Bas paper" +p344589 +sg291132 +S'1958' +p344590 +sg291134 +S"The Annunciation (L'Annonciation)" +p344591 +sg291136 +g27 +sg291137 +S'Marino Marini' +p344592 +sa(dp344593 +g291130 +S"etching in black on d'Auvergne du Moulin Richard-de-Bas paper" +p344594 +sg291132 +S'1960' +p344595 +sg291134 +S'The Miracle (Le miracle)' +p344596 +sg291136 +g27 +sg291137 +S'Marino Marini' +p344597 +sa(dp344598 +g291130 +S"etching in black on d'Auvergne du Moulin Richard-de-Bas paper" +p344599 +sg291132 +S'1960' +p344600 +sg291134 +S"The Horseman's Dream (Le songe du cavalier)" +p344601 +sg291136 +g27 +sg291137 +S'Marino Marini' +p344602 +sa(dp344603 +g291130 +S"etching in black on d'Auvergne du Moulin Richard-de-Bas paper" +p344604 +sg291132 +S'1961' +p344605 +sg291134 +S'Composition' +p344606 +sg291136 +g27 +sg291137 +S'Marino Marini' +p344607 +sa(dp344608 +g291130 +S"etching in black on d'Auvergne du Moulin Richard-de-Bas paper" +p344609 +sg291132 +S'1962' +p344610 +sg291134 +S'Warrior (Guerrier)' +p344611 +sg291136 +g27 +sg291137 +S'Marino Marini' +p344612 +sa(dp344613 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Arches Buff paper' +p344614 +sg291132 +S'1971' +p344615 +sg291134 +S'The Jolly Corner I:1' +p344616 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344617 +sa(dp344618 +g291130 +S'"Preferred Portfolio Edition" with 21 etchings, half-title page, frontispiece, title page, copyright page, another half-title page, cancelled plate, and text by Henry James; this "Preferred Portfolio Edition" also includes an identical suite (unsignedwith the exception of 1 print) of 21 prints, see 1991.116.307-327' +p344619 +sg291132 +S'published 1971' +p344620 +sg291134 +S'The Jolly Corner' +p344621 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344622 +sa(dp344623 +g291130 +S'photosensitive-ground etching, engraving, and hard-ground etching in black with gray-brown tone plate on Arches Buff paper' +p344624 +sg291132 +S'1971' +p344625 +sg291134 +S'The Jolly Corner I:2' +p344626 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344627 +sa(dp344628 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Arches Buff paper' +p344629 +sg291132 +S'1971' +p344630 +sg291134 +S'The Jolly Corner I:3' +p344631 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344632 +sa(dp344633 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Arches Buff paper' +p344634 +sg291132 +S'1971' +p344635 +sg291134 +S'The Jolly Corner I:4' +p344636 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344637 +sa(dp344638 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Arches Buff paper' +p344639 +sg291132 +S'1971' +p344640 +sg291134 +S'The Jolly Corner I:5' +p344641 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344642 +sa(dp344643 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Arches Buff paper' +p344644 +sg291132 +S'1971' +p344645 +sg291134 +S'The Jolly Corner I:6' +p344646 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344647 +sa(dp344648 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Arches Buff paper' +p344649 +sg291132 +S'1971' +p344650 +sg291134 +S'The Jolly Corner I:7' +p344651 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344652 +sa(dp344653 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Arches Buff paper' +p344654 +sg291132 +S'1971' +p344655 +sg291134 +S'The Jolly Corner II:1' +p344656 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344657 +sa(dp344658 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Arches Buff paper' +p344659 +sg291132 +S'1971' +p344660 +sg291134 +S'The Jolly Corner II:2' +p344661 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344662 +sa(dp344663 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Arches Buff paper' +p344664 +sg291132 +S'1971' +p344665 +sg291134 +S'The Jolly Corner II:3' +p344666 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344667 +sa(dp344668 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Arches Buff paper' +p344669 +sg291132 +S'1971' +p344670 +sg291134 +S'The Jolly Corner II:4' +p344671 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344672 +sa(dp344673 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Arches Buff paper' +p344674 +sg291132 +S'1971' +p344675 +sg291134 +S'The Jolly Corner II:5' +p344676 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344677 +sa(dp344678 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Arches Buff paper' +p344679 +sg291132 +S'1971' +p344680 +sg291134 +S'The Jolly Corner II:6' +p344681 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344682 +sa(dp344683 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Arches Buff paper' +p344684 +sg291132 +S'1971' +p344685 +sg291134 +S'The Jolly Corner II:7' +p344686 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344687 +sa(dp344688 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Arches Buff paper' +p344689 +sg291132 +S'1971' +p344690 +sg291134 +S'The Jolly Corner III:1' +p344691 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344692 +sa(dp344693 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Arches Buff paper' +p344694 +sg291132 +S'1971' +p344695 +sg291134 +S'The Jolly Corner III:2' +p344696 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344697 +sa(dp344698 +g291130 +S'photosensitive-ground etching, engraving, aquatint, and direct photographic transfer in black with gray-brown tone plate on Arches Buff paper' +p344699 +sg291132 +S'1971' +p344700 +sg291134 +S'The Jolly Corner III:3' +p344701 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344702 +sa(dp344703 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Arches Buff paper' +p344704 +sg291132 +S'1971' +p344705 +sg291134 +S'The Jolly Corner III:4' +p344706 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344707 +sa(dp344708 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Arches Buff paper' +p344709 +sg291132 +S'1971' +p344710 +sg291134 +S'The Jolly Corner III:5' +p344711 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344712 +sa(dp344713 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Arches Buff paper' +p344714 +sg291132 +S'1971' +p344715 +sg291134 +S'The Jolly Corner III:6' +p344716 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344717 +sa(dp344718 +g291130 +S'photosensitive-ground etching, engraving, aquatint, and direct photographic transfer in black with gray-brown tone plate on Arches Buff paper' +p344719 +sg291132 +S'1971' +p344720 +sg291134 +S'The Jolly Corner III:7' +p344721 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344722 +sa(dp344723 +g291130 +S'copper plate' +p344724 +sg291132 +S'1971' +p344725 +sg291134 +S'Cancelled copper plate for The Jolly Corner III:4' +p344726 +sg291136 +g27 +sg291137 +S'Peter Milton' +p344727 +sa(dp344728 +g291130 +S'linocut in black and yellow on Hahnemuhle paper' +p344729 +sg291132 +S'1986' +p344730 +sg291134 +S'Untitled' +p344731 +sg291136 +g27 +sg291137 +S'Mimmo Paladino' +p344732 +sa(dp344733 +g291130 +S'portfolio with linocut frontispiece and 12 woodcuts (one with etching); folded and contained in a portfolio designed by the artist' +p344734 +sg291132 +S'published 1986' +p344735 +sg291134 +S'Lacrimose' +p344736 +sg291136 +g27 +sg291137 +S'Mimmo Paladino' +p344737 +sa(dp344738 +g291130 +S'2 woodcuts on Hahnemuhle paper' +p344739 +sg291132 +S'1986' +p344740 +sg291134 +S'Untitled' +p344741 +sg291136 +g27 +sg291137 +S'Mimmo Paladino' +p344742 +sa(dp344743 +g291130 +S'woodcut in black on Hahnemuhle paper' +p344744 +sg291132 +S'1986' +p344745 +sg291134 +S'Untitled' +p344746 +sg291136 +g27 +sg291137 +S'Mimmo Paladino' +p344747 +sa(dp344748 +g291130 +S'two woodcuts on Hahnemuhle paper' +p344749 +sg291132 +S'1986' +p344750 +sg291134 +S'Untitled' +p344751 +sg291136 +g27 +sg291137 +S'Mimmo Paladino' +p344752 +sa(dp344753 +g291130 +S'woodcut in red-brown on Hahnemuhle paper' +p344754 +sg291132 +S'1986' +p344755 +sg291134 +S'Untitled' +p344756 +sg291136 +g27 +sg291137 +S'Mimmo Paladino' +p344757 +sa(dp344758 +g291130 +S'2 woodcuts on Hahnemuhle paper' +p344759 +sg291132 +S'1986' +p344760 +sg291134 +S'Untitled' +p344761 +sg291136 +g27 +sg291137 +S'Mimmo Paladino' +p344762 +sa(dp344763 +g291130 +S'woodcut in red on hahnemuhle paper' +p344764 +sg291132 +S'1986' +p344765 +sg291134 +S'Untitled' +p344766 +sg291136 +g27 +sg291137 +S'Mimmo Paladino' +p344767 +sa(dp344768 +g291130 +S'2 woodcuts, one with etching and drypoint, on Hahnemuhle paper' +p344769 +sg291132 +S'1986' +p344770 +sg291134 +S'Untitled' +p344771 +sg291136 +g27 +sg291137 +S'Mimmo Paladino' +p344772 +sa(dp344773 +g291130 +S'woodcut in red on Hahnemuhle paper' +p344774 +sg291132 +S'1986' +p344775 +sg291134 +S'Untitled' +p344776 +sg291136 +g27 +sg291137 +S'Mimmo Paladino' +p344777 +sa(dp344778 +g291130 +S'2 woodcuts on Hahnemuhle paper' +p344779 +sg291132 +S'1986' +p344780 +sg291134 +S'Untitled' +p344781 +sg291136 +g27 +sg291137 +S'Mimmo Paladino' +p344782 +sa(dp344783 +g291130 +S'woodcut in red on Hahnemuhle paper' +p344784 +sg291132 +S'1986' +p344785 +sg291134 +S'Untitled' +p344786 +sg291136 +g27 +sg291137 +S'Mimmo Paladino' +p344787 +sa(dp344788 +g291130 +S'2 woodcuts on Hahnemuhle paper' +p344789 +sg291132 +S'1986' +p344790 +sg291134 +S'Untitled' +p344791 +sg291136 +g27 +sg291137 +S'Mimmo Paladino' +p344792 +sa(dp344793 +g291130 +S'woodcut in black on Hahnemuhle paper' +p344794 +sg291132 +S'1986' +p344795 +sg291134 +S'Untitled' +p344796 +sg291136 +g27 +sg291137 +S'Mimmo Paladino' +p344797 +sa(dp344798 +g291130 +S'color intaglio on Rives BFK paper' +p344799 +sg291132 +S'1969' +p344800 +sg291134 +S'Komposition I' +p344801 +sg291136 +g27 +sg291137 +S'Provoslav Sov\xc3\xa1k' +p344802 +sa(dp344803 +g291130 +S'portfolio with 10 color intaglios, title page, introductions by Manuel Gasser and Pavel Kohout,and colophon page' +p344804 +sg291132 +S'published 1969' +p344805 +sg291134 +S'Graphisches Tagebuch' +p344806 +sg291136 +g27 +sg291137 +S'Provoslav Sov\xc3\xa1k' +p344807 +sa(dp344808 +g291130 +S'color intaglio on Rives BFK paper' +p344809 +sg291132 +S'1969' +p344810 +sg291134 +S'Ende des Krieges 1945' +p344811 +sg291136 +g27 +sg291137 +S'Provoslav Sov\xc3\xa1k' +p344812 +sa(dp344813 +g291130 +S'color intaglio on Rives BFK paper' +p344814 +sg291132 +S'1969' +p344815 +sg291134 +S'Nachkriegszeit - Aufbau' +p344816 +sg291136 +g27 +sg291137 +S'Provoslav Sov\xc3\xa1k' +p344817 +sa(dp344818 +g291130 +S'color intaglio on Rives BFK paper' +p344819 +sg291132 +S'1969' +p344820 +sg291134 +S'Kafig der Welt' +p344821 +sg291136 +g27 +sg291137 +S'Provoslav Sov\xc3\xa1k' +p344822 +sa(dp344823 +g291130 +S'color intaglio on Rives BFK paper' +p344824 +sg291132 +S'1969' +p344825 +sg291134 +S'Prager Fruhling - Dubcek' +p344826 +sg291136 +g27 +sg291137 +S'Provoslav Sov\xc3\xa1k' +p344827 +sa(dp344828 +g291130 +S'color intaglio on Rives BFK paper' +p344829 +sg291132 +S'1969' +p344830 +sg291134 +S'Komposition II' +p344831 +sg291136 +g27 +sg291137 +S'Provoslav Sov\xc3\xa1k' +p344832 +sa(dp344833 +g291130 +S'color intaglio on Rives BFK paper' +p344834 +sg291132 +S'1969' +p344835 +sg291134 +S'Prager Fruhling - Perugia' +p344836 +sg291136 +g27 +sg291137 +S'Provoslav Sov\xc3\xa1k' +p344837 +sa(dp344838 +g291130 +S'color intaglio on Rives BFK paper' +p344839 +sg291132 +S'1969' +p344840 +sg291134 +S'21.August 1968 - I' +p344841 +sg291136 +g27 +sg291137 +S'Provoslav Sov\xc3\xa1k' +p344842 +sa(dp344843 +g291130 +S'color intaglio on Rives BFK paper' +p344844 +sg291132 +S'1969' +p344845 +sg291134 +S'21.August 1968 - II' +p344846 +sg291136 +g27 +sg291137 +S'Provoslav Sov\xc3\xa1k' +p344847 +sa(dp344848 +g291130 +S'color intaglio on Rives BFK paper' +p344849 +sg291132 +S'1969' +p344850 +sg291134 +S'In Memoriam "Jan Palach"' +p344851 +sg291136 +g27 +sg291137 +S'Provoslav Sov\xc3\xa1k' +p344852 +sa(dp344853 +g291130 +S'photogravure in black on Rives BFK paper, 1967' +p344854 +sg291132 +S'1932' +p344855 +sg291134 +S'Near Saltillo' +p344856 +sg291136 +g27 +sg291137 +S'Paul Strand' +p344857 +sa(dp344858 +g291130 +S'portfolio of twenty photogravures with introductions by Leo Hurwitz, David Alfaro Siqueiros, and the artist' +p344859 +sg291132 +S'published 1967' +p344860 +sg291134 +S'The Mexican Portfolio' +p344861 +sg291136 +g27 +sg291137 +S'Paul Strand' +p344862 +sa(dp344863 +g291130 +S'photogravure in black on Rives BFK paper, 1967' +p344864 +sg291132 +S'1933' +p344865 +sg291134 +S'Church, Coapiaxtla' +p344866 +sg291136 +g27 +sg291137 +S'Paul Strand' +p344867 +sa(dp344868 +g291130 +S'photogravure in black on Rives BFK paper, 1967' +p344869 +sg291132 +S'1933' +p344870 +sg291134 +S'Virgin, San Felipe, Oaxaca' +p344871 +sg291136 +g27 +sg291137 +S'Paul Strand' +p344872 +sa(dp344873 +g291130 +S'photogravure in black on Rives BFK paper, 1967' +p344874 +sg291132 +S'1933' +p344875 +sg291134 +S'Women of Santa Anna, Michoacan' +p344876 +sg291136 +g27 +sg291137 +S'Paul Strand' +p344877 +sa(dp344878 +g291130 +S'photogravure in black on Rives BFK paper, 1967' +p344879 +sg291132 +S'1933' +p344880 +sg291134 +S'Men of Santa Anna, Michoacan' +p344881 +sg291136 +g27 +sg291137 +S'Paul Strand' +p344882 +sa(dp344883 +g291130 +S'photogravure in black on Rives BFK paper, 1967' +p344884 +sg291132 +S'1933' +p344885 +sg291134 +S'Woman, Patzcuaro' +p344886 +sg291136 +g27 +sg291137 +S'Paul Strand' +p344887 +sa(dp344888 +g291130 +S'photogravure in black on Rives BFK paper, 1967' +p344889 +sg291132 +S'1933' +p344890 +sg291134 +S'Boy, Uruapan' +p344891 +sg291136 +g27 +sg291137 +S'Paul Strand' +p344892 +sa(dp344893 +g291130 +S'photogravure in black on Rives BFK paper, 1967' +p344894 +sg291132 +S'1933' +p344895 +sg291134 +S'Cristo, Oaxaca' +p344896 +sg291136 +g27 +sg291137 +S'Paul Strand' +p344897 +sa(dp344898 +g291130 +S'photogravure in black on Rives BFK paper, 1967' +p344899 +sg291132 +S'1933' +p344900 +sg291134 +S'Woman and Boy, Tenancingo' +p344901 +sg291136 +g27 +sg291137 +S'Paul Strand' +p344902 +sa(dp344903 +g291130 +S'photogravure in black on Rives BFK paper, 1967' +p344904 +sg291132 +S'1933' +p344905 +sg291134 +S'Plaza, State of Puebla' +p344906 +sg291136 +g27 +sg291137 +S'Paul Strand' +p344907 +sa(dp344908 +g291130 +S'photogravure in black on Rives BFK paper, 1967' +p344909 +sg291132 +S'1933' +p344910 +sg291134 +S'Man with a Hoe, Los Remedios' +p344911 +sg291136 +g27 +sg291137 +S'Paul Strand' +p344912 +sa(dp344913 +g291130 +S'photogravure in black on Rives BFK paper, 1967' +p344914 +sg291132 +S'1933' +p344915 +sg291134 +S'Calvario, Patzcuaro' +p344916 +sg291136 +g27 +sg291137 +S'Paul Strand' +p344917 +sa(dp344918 +g291130 +S'photogravure in black on Rives BFK paper, 1967' +p344919 +sg291132 +S'1933' +p344920 +sg291134 +S'Cristo, Tlacochoaya, Oaxaca' +p344921 +sg291136 +g27 +sg291137 +S'Paul Strand' +p344922 +sa(dp344923 +g291130 +S'photogravure in black on Rives BFK paper, 1967' +p344924 +sg291132 +S'1933' +p344925 +sg291134 +S'Boy, Hidalgo' +p344926 +sg291136 +g27 +sg291137 +S'Paul Strand' +p344927 +sa(dp344928 +g291130 +S'photogravure in black on Rives BFK paper, 1967' +p344929 +sg291132 +S'1933' +p344930 +sg291134 +S'Woman and Baby, Hidalgo' +p344931 +sg291136 +g27 +sg291137 +S'Paul Strand' +p344932 +sa(dp344933 +g291130 +S'photogravure in black on Rives BFK paper, 1967' +p344934 +sg291132 +S'1933' +p344935 +sg291134 +S'Girl and Child, Toluca' +p344936 +sg291136 +g27 +sg291137 +S'Paul Strand' +p344937 +sa(dp344938 +g291130 +S'photogravure in black on Rives BFK paper, 1967' +p344939 +sg291132 +S'1933' +p344940 +sg291134 +S'Cristo with Thorns, Huexotla' +p344941 +sg291136 +g27 +sg291137 +S'Paul Strand' +p344942 +sa(dp344943 +g291130 +S'photogravure in black on Rives BFK paper, 1967' +p344944 +sg291132 +S'1933' +p344945 +sg291134 +S'Man, Tenancingo' +p344946 +sg291136 +g27 +sg291137 +S'Paul Strand' +p344947 +sa(dp344948 +g291130 +S'photogravure in black on Rives BFK paper, 1967' +p344949 +sg291132 +S'1933' +p344950 +sg291134 +S'Young Woman and Boy, Toluca' +p344951 +sg291136 +g27 +sg291137 +S'Paul Strand' +p344952 +sa(dp344953 +g291130 +S'photogravure in black on Rives BFK paper, 1967' +p344954 +sg291132 +S'1933' +p344955 +sg291134 +S'Gateway, Hidalgo' +p344956 +sg291136 +g27 +sg291137 +S'Paul Strand' +p344957 +sa(dp344958 +g291130 +S'color lithograph on Rives paper' +p344959 +sg291132 +S'1970' +p344960 +sg291134 +S'The Song of Solomon (I:16)' +p344961 +sg291136 +g27 +sg291137 +S'Paul Wunderlich' +p344962 +sa(dp344963 +g291130 +S'portfolio with 10 color lithographs, title page, colophon page, and text' +p344964 +sg291132 +S'published 1970' +p344965 +sg291134 +S"The Song of Songs which is Solomon's" +p344966 +sg291136 +g27 +sg291137 +S'Paul Wunderlich' +p344967 +sa(dp344968 +g291130 +S'color lithograph on Rives paper' +p344969 +sg291132 +S'1970' +p344970 +sg291134 +S'The Song of Solomon (II:3)' +p344971 +sg291136 +g27 +sg291137 +S'Paul Wunderlich' +p344972 +sa(dp344973 +g291130 +S'color lithograph on Rives paper' +p344974 +sg291132 +S'1970' +p344975 +sg291134 +S'The Song of Solomon (II:9)' +p344976 +sg291136 +g27 +sg291137 +S'Paul Wunderlich' +p344977 +sa(dp344978 +g291130 +S'color lithograph on Rives paper' +p344979 +sg291132 +S'1970' +p344980 +sg291134 +S'The Song of Solomon (IV:1)' +p344981 +sg291136 +g27 +sg291137 +S'Paul Wunderlich' +p344982 +sa(dp344983 +g291130 +S'color lithograph on Rives paper' +p344984 +sg291132 +S'1970' +p344985 +sg291134 +S'The Song of Solomon (IV:5)' +p344986 +sg291136 +g27 +sg291137 +S'Paul Wunderlich' +p344987 +sa(dp344988 +g291130 +S'color lithograph on Rives paper' +p344989 +sg291132 +S'1970' +p344990 +sg291134 +S'The Song of Solomon (IV:9)' +p344991 +sg291136 +g27 +sg291137 +S'Paul Wunderlich' +p344992 +sa(dp344993 +g291130 +S'color lithograph on Rives paper' +p344994 +sg291132 +S'1970' +p344995 +sg291134 +S'The Song of Solomon (V:4)' +p344996 +sg291136 +g27 +sg291137 +S'Paul Wunderlich' +p344997 +sa(dp344998 +g291130 +S'color lithograph on Rives paper' +p344999 +sg291132 +S'1970' +p345000 +sg291134 +S'The Song of Solomon (VII:1)' +p345001 +sg291136 +g27 +sg291137 +S'Paul Wunderlich' +p345002 +sa(dp345003 +g291130 +S'color lithograph on Rives paper' +p345004 +sg291132 +S'1970' +p345005 +sg291134 +S'The Song of Solomon (VII:2)' +p345006 +sg291136 +g27 +sg291137 +S'Paul Wunderlich' +p345007 +sa(dp345008 +g291130 +S'color lithograph on Rives paper' +p345009 +sg291132 +S'1970' +p345010 +sg291134 +S'The Song of Solomon (VII:7)' +p345011 +sg291136 +g27 +sg291137 +S'Paul Wunderlich' +p345012 +sa(dp345013 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Rives paper' +p345014 +sg291132 +S'1971' +p345015 +sg291134 +S'The Jolly Corner I:1' +p345016 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345017 +sa(dp345018 +g291130 +S'suite of 21 etchings on Rives paper' +p345019 +sg291132 +S'published 1971' +p345020 +sg291134 +S'The Jolly Corner' +p345021 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345022 +sa(dp345023 +g291130 +S'photosensitive-ground etching, engraving, and hard-ground etching in black with gray-brown tone plate on Rives paper' +p345024 +sg291132 +S'1971' +p345025 +sg291134 +S'The Jolly Corner I:2' +p345026 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345027 +sa(dp345028 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Rives paper' +p345029 +sg291132 +S'1971' +p345030 +sg291134 +S'The Jolly Corner I:3' +p345031 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345032 +sa(dp345033 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Rives paper' +p345034 +sg291132 +S'1971' +p345035 +sg291134 +S'The Jolly Corner I:4' +p345036 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345037 +sa(dp345038 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Rives paper' +p345039 +sg291132 +S'1971' +p345040 +sg291134 +S'The Jolly Corner I:5' +p345041 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345042 +sa(dp345043 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Rives paper' +p345044 +sg291132 +S'1971' +p345045 +sg291134 +S'The Jolly Corner I:6' +p345046 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345047 +sa(dp345048 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Rives paper' +p345049 +sg291132 +S'1971' +p345050 +sg291134 +S'The Jolly Corner I:7' +p345051 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345052 +sa(dp345053 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Rives paper' +p345054 +sg291132 +S'1971' +p345055 +sg291134 +S'The Jolly Corner II:1' +p345056 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345057 +sa(dp345058 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Rives paper' +p345059 +sg291132 +S'1971' +p345060 +sg291134 +S'The Jolly Corner II:2' +p345061 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345062 +sa(dp345063 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Rives paper' +p345064 +sg291132 +S'1971' +p345065 +sg291134 +S'The Jolly Corner II:3' +p345066 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345067 +sa(dp345068 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Rives paper' +p345069 +sg291132 +S'1971' +p345070 +sg291134 +S'The Jolly Corner II:4' +p345071 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345072 +sa(dp345073 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Rives paper' +p345074 +sg291132 +S'1971' +p345075 +sg291134 +S'The Jolly Corner II:5' +p345076 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345077 +sa(dp345078 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Rives paper' +p345079 +sg291132 +S'1971' +p345080 +sg291134 +S'The Jolly Corner II:6' +p345081 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345082 +sa(dp345083 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Rives paper' +p345084 +sg291132 +S'1971' +p345085 +sg291134 +S'The Jolly Corner II:7' +p345086 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345087 +sa(dp345088 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Rives paper' +p345089 +sg291132 +S'1971' +p345090 +sg291134 +S'The Jolly Corner III:1' +p345091 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345092 +sa(dp345093 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Rives paper' +p345094 +sg291132 +S'1971' +p345095 +sg291134 +S'The Jolly Corner III:2' +p345096 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345097 +sa(dp345098 +g291130 +S'photosensitive-ground etching, engraving, aquatint, and direct photographic transfer in black with gray-brown tone plate on Rives paper' +p345099 +sg291132 +S'1971' +p345100 +sg291134 +S'The Jolly Corner III:3' +p345101 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345102 +sa(dp345103 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Rives paper' +p345104 +sg291132 +S'1971' +p345105 +sg291134 +S'The Jolly Corner III:4' +p345106 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345107 +sa(dp345108 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Rives paper' +p345109 +sg291132 +S'1971' +p345110 +sg291134 +S'The Jolly Corner III:5' +p345111 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345112 +sa(dp345113 +g291130 +S'photosensitive-ground etching and engraving in black with gray-brown tone plate on Rives paper' +p345114 +sg291132 +S'1971' +p345115 +sg291134 +S'The Jolly Corner III:6' +p345116 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345117 +sa(dp345118 +g291130 +S'photosensitive-ground etching, engraving, aquatint, and direct photographic transfer in black with gray-brown tone plate on Rives paper' +p345119 +sg291132 +S'1971' +p345120 +sg291134 +S'The Jolly Corner III:7' +p345121 +sg291136 +g27 +sg291137 +S'Peter Milton' +p345122 +sa(dp345123 +g291134 +S'The Yellow and Black Pye (Oriolus Icterus)' +p345124 +sg291137 +S'Mark Catesby' +p345125 +sg291130 +S'hand-colored etching on wove paper' +p345126 +sg291132 +S'published 1731-1743' +p345127 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007896.jpg' +p345128 +sg291136 +g27 +sa(dp345129 +g291130 +S'(artist after)' +p345130 +sg291132 +S'\n' +p345131 +sg291134 +S'Brown Lark' +p345132 +sg291136 +g27 +sg291137 +S'Artist Information (' +p345133 +sa(dp345134 +g291130 +S'etching in black on laid paper' +p345135 +sg291132 +S'1769' +p345136 +sg291134 +S'Veduta delle Cascatelle a Tivoli' +p345137 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p345138 +sa(dp345139 +g291130 +S'etching in black on laid paper' +p345140 +sg291132 +S'1764' +p345141 +sg291134 +S'Veduta interna della Villa di Mecenate' +p345142 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p345143 +sa(dp345144 +g291134 +S"Portrait of the Artist's Father" +p345145 +sg291137 +S'Artist Information (' +p345146 +sg291130 +S'(artist after)' +p345147 +sg291132 +S'\n' +p345148 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008e52.jpg' +p345149 +sg291136 +g27 +sa(dp345150 +g291134 +S'Peter the Great of Russia' +p345151 +sg291137 +S'Carl Guttenberg' +p345152 +sg291130 +S'graphite with gray wash on laid paper' +p345153 +sg291132 +S'unknown date\n' +p345154 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00079/a00079a5.jpg' +p345155 +sg291136 +g27 +sa(dp345156 +g291134 +S'Mask, Makonde, Wamuera' +p345157 +sg291137 +S'Walker Evans' +p345158 +sg291130 +S'gelatin silver print' +p345159 +sg291132 +S'1935' +p345160 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d33.jpg' +p345161 +sg291136 +g27 +sa(dp345162 +g291130 +S'gelatin silver print' +p345163 +sg291132 +S'1935' +p345164 +sg291134 +S'Eight Scalpels' +p345165 +sg291136 +g27 +sg291137 +S'Walker Evans' +p345166 +sa(dp345167 +g291130 +S'gelatin silver print' +p345168 +sg291132 +S'1935' +p345169 +sg291134 +S'Five Knives' +p345170 +sg291136 +g27 +sg291137 +S'Walker Evans' +p345171 +sa(dp345172 +g291130 +S'gelatin silver print' +p345173 +sg291132 +S'1935' +p345174 +sg291134 +S'Polychrome Double Mask, BaLuba, Belgian Congo' +p345175 +sg291136 +g27 +sg291137 +S'Walker Evans' +p345176 +sa(dp345177 +g291134 +S'Head Rest, WaZimba, MaNyema' +p345178 +sg291137 +S'Walker Evans' +p345179 +sg291130 +S'gelatin silver print' +p345180 +sg291132 +S'1935' +p345181 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a0006494.jpg' +p345182 +sg291136 +g27 +sa(dp345183 +g291130 +S'gelatin silver print' +p345184 +sg291132 +S'1935' +p345185 +sg291134 +S'Polychrome Mask' +p345186 +sg291136 +g27 +sg291137 +S'Walker Evans' +p345187 +sa(dp345188 +g291134 +S'Figure of a Woman, Pahouin, Okak' +p345189 +sg291137 +S'Walker Evans' +p345190 +sg291130 +S'gelatin silver print' +p345191 +sg291132 +S'1935' +p345192 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a0006493.jpg' +p345193 +sg291136 +g27 +sa(dp345194 +g291134 +S'Figure of a Young Woman, Pahouin, Border of Spanish Guinea' +p345195 +sg291137 +S'Walker Evans' +p345196 +sg291130 +S'gelatin silver print' +p345197 +sg291132 +S'1935' +p345198 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a0006492.jpg' +p345199 +sg291136 +g27 +sa(dp345200 +g291134 +S'Figure of a Woman with Hands across Abdomen, Pahouin, Okak' +p345201 +sg291137 +S'Walker Evans' +p345202 +sg291130 +S'gelatin silver print' +p345203 +sg291132 +S'1935' +p345204 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a0006491.jpg' +p345205 +sg291136 +g27 +sa(dp345206 +g291134 +S'Figure of a Young Woman, Pahouin, Border of Spanish Guinea' +p345207 +sg291137 +S'Walker Evans' +p345208 +sg291130 +S'gelatin silver print' +p345209 +sg291132 +S'1935' +p345210 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a0006490.jpg' +p345211 +sg291136 +g27 +sa(dp345212 +g291130 +S'gelatin silver print' +p345213 +sg291132 +S'1935' +p345214 +sg291134 +S'Detail of a Seat' +p345215 +sg291136 +g27 +sg291137 +S'Walker Evans' +p345216 +sa(dp345217 +g291134 +S'Cover of a Receptacle, WaRuanda' +p345218 +sg291137 +S'Walker Evans' +p345219 +sg291130 +S'gelatin silver print' +p345220 +sg291132 +S'1935' +p345221 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a000648f.jpg' +p345222 +sg291136 +g27 +sa(dp345223 +g291130 +S'gelatin silver print' +p345224 +sg291132 +S'1935' +p345225 +sg291134 +S'Three Spoons, WaRegga' +p345226 +sg291136 +g27 +sg291137 +S'Walker Evans' +p345227 +sa(dp345228 +g291134 +S'White Mask, Pangwe' +p345229 +sg291137 +S'Walker Evans' +p345230 +sg291130 +S'gelatin silver print' +p345231 +sg291132 +S'1935' +p345232 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a000648e.jpg' +p345233 +sg291136 +g27 +sa(dp345234 +g291130 +S'gelatin silver print' +p345235 +sg291132 +S'1935' +p345236 +sg291134 +S'Polychrome Mask, French Congo' +p345237 +sg291136 +g27 +sg291137 +S'Walker Evans' +p345238 +sa(dp345239 +g291134 +S'Figure of a Woman, Sibiti?' +p345240 +sg291137 +S'Walker Evans' +p345241 +sg291130 +S'gelatin silver print' +p345242 +sg291132 +S'1935' +p345243 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a000648d.jpg' +p345244 +sg291136 +g27 +sa(dp345245 +g291134 +S'Figure of a Woman, Laongo' +p345246 +sg291137 +S'Walker Evans' +p345247 +sg291130 +S'gelatin silver print' +p345248 +sg291132 +S'1935' +p345249 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a000648b.jpg' +p345250 +sg291136 +g27 +sa(dp345251 +g291134 +S'Figure' +p345252 +sg291137 +S'Walker Evans' +p345253 +sg291130 +S'gelatin silver print' +p345254 +sg291132 +S'1935' +p345255 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a000648a.jpg' +p345256 +sg291136 +g27 +sa(dp345257 +g291134 +S'Figure of a Woman, Sibiti?' +p345258 +sg291137 +S'Walker Evans' +p345259 +sg291130 +S'gelatin silver print' +p345260 +sg291132 +S'1935' +p345261 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a0006489.jpg' +p345262 +sg291136 +g27 +sa(dp345263 +g291134 +S'Figure, Pahouin' +p345264 +sg291137 +S'Walker Evans' +p345265 +sg291130 +S'gelatin silver print' +p345266 +sg291132 +S'1935' +p345267 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a0006488.jpg' +p345268 +sg291136 +g27 +sa(dp345269 +g291134 +S'Bust, Pahouin' +p345270 +sg291137 +S'Walker Evans' +p345271 +sg291130 +S'gelatin silver print' +p345272 +sg291132 +S'1935' +p345273 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a0006487.jpg' +p345274 +sg291136 +g27 +sa(dp345275 +g291134 +S'Seated Figure, Pahouin' +p345276 +sg291137 +S'Walker Evans' +p345277 +sg291130 +S'gelatin silver print' +p345278 +sg291132 +S'1935' +p345279 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a0006486.jpg' +p345280 +sg291136 +g27 +sa(dp345281 +g291134 +S'Figure with Clenched Fists, Pahouin' +p345282 +sg291137 +S'Walker Evans' +p345283 +sg291130 +S'gelatin silver print' +p345284 +sg291132 +S'1935' +p345285 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a0006485.jpg' +p345286 +sg291136 +g27 +sa(dp345287 +g291134 +S'Figure Holding a Knife, Pahouin' +p345288 +sg291137 +S'Walker Evans' +p345289 +sg291130 +S'gelatin silver print' +p345290 +sg291132 +S'1935' +p345291 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a0006484.jpg' +p345292 +sg291136 +g27 +sa(dp345293 +g291134 +S'Figure with Clasped Hands, Pahouin' +p345294 +sg291137 +S'Walker Evans' +p345295 +sg291130 +S'gelatin silver print' +p345296 +sg291132 +S'1935' +p345297 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a000648c.jpg' +p345298 +sg291136 +g27 +sa(dp345299 +g291130 +S'gelatin silver print' +p345300 +sg291132 +S'1935' +p345301 +sg291134 +S'Amulet, Figure with Two Masks, and Amulet, Two Figures Embracing, WaRegga' +p345302 +sg291136 +g27 +sg291137 +S'Walker Evans' +p345303 +sa(dp345304 +g291130 +S'etching and drypoint in black on wove paper' +p345305 +sg291132 +S'1948' +p345306 +sg291134 +S'The Walk' +p345307 +sg291136 +g27 +sg291137 +S'Jacob Kainen' +p345308 +sa(dp345309 +g291130 +S'1 vol: ill: 10 lithographs in red, brown, blue, and black on wove paper' +p345310 +sg291132 +S'published 1986' +p345311 +sg291134 +S'Zwischenraumgespenster (The Phantom of the Intermediate Space)' +p345312 +sg291136 +g27 +sg291137 +S'Markus L\xc3\xbcpertz' +p345313 +sa(dp345314 +g291130 +S"lithograph in green and black on Fabriano Zeichenpapier [artist's proof]" +p345315 +sg291132 +S'1990' +p345316 +sg291134 +S'Grunes Tuch' +p345317 +sg291136 +g27 +sg291137 +S'Georg Baselitz' +p345318 +sa(dp345319 +g291130 +S"woodcut in orange and three shades of green on Aqaba paper (artist's proof)" +p345320 +sg291132 +S'1990' +p345321 +sg291134 +S'Camp' +p345322 +sg291136 +g27 +sg291137 +S'Alex Katz' +p345323 +sa(dp345324 +g291130 +S"17-color encaustic wax and screenprint in Magna on Saunders Waterford paper (artist's proof)" +p345325 +sg291132 +S'1990' +p345326 +sg291134 +S'Reflections on Expressionist Painting' +p345327 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p345328 +sa(dp345329 +g291130 +S"5-color lithograph on Fabriano paper (artist's proof)" +p345330 +sg291132 +S'1990' +p345331 +sg291134 +S'Champs' +p345332 +sg291136 +g27 +sg291137 +S'Joan Mitchell' +p345333 +sa(dp345334 +g291130 +S"color screenprint on Coventry Rag paper (artist's proof)" +p345335 +sg291132 +S'1990' +p345336 +sg291134 +S'Carnegie Hall Print' +p345337 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p345338 +sa(dp345339 +g291130 +S"color screenprint on Arches two-ply Archival Museum Board (artist's proof)" +p345340 +sg291132 +S'1990' +p345341 +sg291134 +S'Sky Music at Carnegie Hall' +p345342 +sg291136 +g27 +sg291137 +S'Larry Rivers' +p345343 +sa(dp345344 +g291130 +S"lithograph in blue-black on Rives BFK paper (artist's proof)" +p345345 +sg291132 +S'1990' +p345346 +sg291134 +S'Now' +p345347 +sg291136 +g27 +sg291137 +S'Ed Ruscha' +p345348 +sa(dp345349 +g291130 +S'Italian, 1467 - 1528' +p345350 +sg291132 +S'(related artist)' +p345351 +sg291134 +S'Elvira, Daughter of Consalvo de C\xc3\xb3rdoba [obverse]' +p345352 +sg291136 +g27 +sg291137 +S'Artist Information (' +p345353 +sa(dp345354 +g291130 +S'Italian, 1467 - 1528' +p345355 +sg291132 +S'(related artist)' +p345356 +sg291134 +S'Time Carrying a Scythe [reverse]' +p345357 +sg291136 +g27 +sg291137 +S'Artist Information (' +p345358 +sa(dp345359 +g291134 +S'A Flagellator of Christ' +p345360 +sg291137 +S'Alessandro Algardi' +p345361 +sg291130 +S'silver' +p345362 +sg291132 +S'c. 1630s' +p345363 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d9d.jpg' +p345364 +sg291136 +g27 +sa(dp345365 +g291134 +S'Winged Victory' +p345366 +sg291137 +S'Artist Information (' +p345367 +sg291130 +S'(artist after)' +p345368 +sg291132 +S'\n' +p345369 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d74.jpg' +p345370 +sg291136 +g27 +sa(dp345371 +g291134 +S"Rauenstein Castle Seen from the River's Edge" +p345372 +sg291137 +S'Adrian Zingg' +p345373 +sg291130 +S'pen and brown ink and brown wash on wove paper' +p345374 +sg291132 +S'c. 1800' +p345375 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a00028ec.jpg' +p345376 +sg291136 +g27 +sa(dp345377 +g291134 +S'The Holy Family with Saints [recto]' +p345378 +sg291137 +S'Hermann Weyer' +p345379 +sg291130 +S'pen and black ink and gray wash over black chalk, heightened with white, on laid paper prepared with pink wash' +p345380 +sg291132 +S'c. 1616/1617' +p345381 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a00028e8.jpg' +p345382 +sg291136 +g27 +sa(dp345383 +g291134 +S'Tobias and the Angel [verso]' +p345384 +sg291137 +S'Hermann Weyer' +p345385 +sg291130 +S'pen and black ink on laid paper' +p345386 +sg291132 +S'c. 1616/1617' +p345387 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ba/a000ba6c.jpg' +p345388 +sg291136 +g27 +sa(dp345389 +g291134 +S'Man with a Pipe (Self-Portrait)' +p345390 +sg291137 +S'Emil Nolde' +p345391 +sg291130 +S'lithograph in black on calendered paper' +p345392 +sg291132 +S'1907' +p345393 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0001d/a0001df4.jpg' +p345394 +sg291136 +g27 +sa(dp345395 +g291134 +S'Young Woman Holding a Fan' +p345396 +sg291137 +S'Thomas Frye' +p345397 +sg291130 +S'mezzotint on laid paper' +p345398 +sg291132 +S'1760' +p345399 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a00078a5.jpg' +p345400 +sg291136 +g27 +sa(dp345401 +g291134 +S'Three Cherubs and a Beribboned Staff' +p345402 +sg291137 +S'Giovanni Battista Tiepolo' +p345403 +sg291130 +S'red and white chalks on blue paper' +p345404 +sg291132 +S'c. 1750' +p345405 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a0002866.jpg' +p345406 +sg291136 +g27 +sa(dp345407 +g291134 +S'Max Slevogt' +p345408 +sg291137 +S'Emil Orlik' +p345409 +sg291130 +S'drypoint and rocker with graphite and white heightening on laid paper [working proof]' +p345410 +sg291132 +S'1917' +p345411 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b751.jpg' +p345412 +sg291136 +g27 +sa(dp345413 +g291134 +S'The Entrance of a Temple' +p345414 +sg291137 +S'Pierre Moreau' +p345415 +sg291130 +S'etching in brown-black on laid paper' +p345416 +sg291132 +S'unknown date\n' +p345417 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c5f.jpg' +p345418 +sg291136 +g27 +sa(dp345419 +g291134 +S'Self-Portrait, Drawing' +p345420 +sg291137 +S'Georg Friedrich Schmidt' +p345421 +sg291130 +S'etching and engraving on laid paper' +p345422 +sg291132 +S'1752' +p345423 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b335.jpg' +p345424 +sg291136 +g27 +sa(dp345425 +g291134 +S'Self-Portrait with a Spider in the Window' +p345426 +sg291137 +S'Georg Friedrich Schmidt' +p345427 +sg291130 +S'etching on laid paper' +p345428 +sg291132 +S'1758' +p345429 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b337.jpg' +p345430 +sg291136 +g27 +sa(dp345431 +g291134 +S'Nicolas de Largilli\xc3\xa8re' +p345432 +sg291137 +S'Artist Information (' +p345433 +sg291130 +S'(artist after)' +p345434 +sg291132 +S'\n' +p345435 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00096/a00096b4.jpg' +p345436 +sg291136 +g27 +sa(dp345437 +g291134 +S'Gertrude van Veen' +p345438 +sg291137 +S'Lucas Emil Vorsterman' +p345439 +sg291130 +S'engraving on laid paper' +p345440 +sg291132 +S'unknown date\n' +p345441 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d5e5.jpg' +p345442 +sg291136 +g27 +sa(dp345443 +g291134 +S'Self-Portrait' +p345444 +sg291137 +S'Gwen John' +p345445 +sg291130 +S'black chalk on laid paper' +p345446 +sg291132 +S'probably 1907/1909' +p345447 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00021/a0002170.jpg' +p345448 +sg291136 +g27 +sa(dp345449 +g291130 +S'British, born Armenia, 1940' +p345450 +sg291132 +S'(printer)' +p345451 +sg291134 +S'Head and Shoulders of a Girl' +p345452 +sg291136 +g27 +sg291137 +S'Artist Information (' +p345453 +sa(dp345454 +g291134 +S'Small Oriental Head' +p345455 +sg291137 +S'Giovanni Benedetto Castiglione' +p345456 +sg291130 +S'etching on laid paper (a later impression)' +p345457 +sg291132 +S'probably 1645/1650' +p345458 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00065/a0006572.jpg' +p345459 +sg291136 +g27 +sa(dp345460 +g291134 +S'Small Oriental Head' +p345461 +sg291137 +S'Giovanni Benedetto Castiglione' +p345462 +sg291130 +S'etching on laid paper (an early impression)' +p345463 +sg291132 +S'c. 1650' +p345464 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00065/a0006573.jpg' +p345465 +sg291136 +g27 +sa(dp345466 +g291134 +S'Italian Peasant Woman with a Broom' +p345467 +sg291137 +S'Johann Caspar Weidenmann' +p345468 +sg291130 +S'graphite on wove paper' +p345469 +sg291132 +S'unknown date\n' +p345470 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a35.jpg' +p345471 +sg291136 +g27 +sa(dp345472 +g291130 +S'gelatin silver print' +p345473 +sg291132 +S'1952' +p345474 +sg291134 +S'Barcelona' +p345475 +sg291136 +g27 +sg291137 +S'Robert Frank' +p345476 +sa(dp345477 +g291130 +S'gelatin silver print' +p345478 +sg291132 +S'1952' +p345479 +sg291134 +S'Pablo in Valencia' +p345480 +sg291136 +g27 +sg291137 +S'Robert Frank' +p345481 +sa(dp345482 +g291130 +S'gelatin silver print' +p345483 +sg291132 +S'1952' +p345484 +sg291134 +S'Valencia' +p345485 +sg291136 +g27 +sg291137 +S'Robert Frank' +p345486 +sa(dp345487 +g291130 +S'gelatin silver print' +p345488 +sg291132 +S'1952' +p345489 +sg291134 +S'Spain' +p345490 +sg291136 +g27 +sg291137 +S'Robert Frank' +p345491 +sa(dp345492 +g291130 +S'gelatin silver print' +p345493 +sg291132 +S'1952' +p345494 +sg291134 +S'Majorca, Spain' +p345495 +sg291136 +g27 +sg291137 +S'Robert Frank' +p345496 +sa(dp345497 +g291130 +S'gelatin silver print' +p345498 +sg291132 +S'1953' +p345499 +sg291134 +S'Caerau, Wales' +p345500 +sg291136 +g27 +sg291137 +S'Robert Frank' +p345501 +sa(dp345502 +g291130 +S'gelatin silver print' +p345503 +sg291132 +S'1953' +p345504 +sg291134 +S'Caerau, Wales' +p345505 +sg291136 +g27 +sg291137 +S'Robert Frank' +p345506 +sa(dp345507 +g291130 +S'gelatin silver print mounted on hardboard' +p345508 +sg291132 +S'1953' +p345509 +sg291134 +S'Welsh Miners' +p345510 +sg291136 +g27 +sg291137 +S'Robert Frank' +p345511 +sa(dp345512 +g291130 +S'gelatin silver print' +p345513 +sg291132 +S'1951' +p345514 +sg291134 +S'Near Victoria Station, London' +p345515 +sg291136 +g27 +sg291137 +S'Robert Frank' +p345516 +sa(dp345517 +g291134 +S'Deer Resting in Albury Park' +p345518 +sg291137 +S'Anthony Devis' +p345519 +sg291130 +S'watercolor over graphite on Whatman laid paper' +p345520 +sg291132 +S'after 1780' +p345521 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a000695f.jpg' +p345522 +sg291136 +g27 +sa(dp345523 +g291130 +S'gelatin silver print mounted on paperboard' +p345524 +sg291132 +S'c. 1942' +p345525 +sg291134 +S'Multiple Exposure Trees, Detroit' +p345526 +sg291136 +g27 +sg291137 +S'Harry Callahan' +p345527 +sa(dp345528 +g291130 +S'gelatin silver print' +p345529 +sg291132 +S'1956' +p345530 +sg291134 +S'Multiple Exposure Tree, Chicago' +p345531 +sg291136 +g27 +sg291137 +S'Harry Callahan' +p345532 +sa(dp345533 +g291130 +S'gelatin silver print' +p345534 +sg291132 +S'c. 1948' +p345535 +sg291134 +S'Lincoln Park, Chicago' +p345536 +sg291136 +g27 +sg291137 +S'Harry Callahan' +p345537 +sa(dp345538 +g291130 +S'gelatin silver print' +p345539 +sg291132 +S'c. 1948' +p345540 +sg291134 +S'Lincoln Park, Chicago' +p345541 +sg291136 +g27 +sg291137 +S'Harry Callahan' +p345542 +sa(dp345543 +g291130 +S'gelatin silver print' +p345544 +sg291132 +S'c. 1948' +p345545 +sg291134 +S'Lincoln Park, Chicago' +p345546 +sg291136 +g27 +sg291137 +S'Harry Callahan' +p345547 +sa(dp345548 +g291130 +S'gelatin silver print' +p345549 +sg291132 +S'1962' +p345550 +sg291134 +S'Maine' +p345551 +sg291136 +g27 +sg291137 +S'Harry Callahan' +p345552 +sa(dp345553 +g291130 +S'gelatin silver print mounted on paperboard' +p345554 +sg291132 +S'1958' +p345555 +sg291134 +S'Chicago' +p345556 +sg291136 +g27 +sg291137 +S'Harry Callahan' +p345557 +sa(dp345558 +g291134 +S'Peasants in a Tavern' +p345559 +sg291137 +S'David Teniers the Younger' +p345560 +sg291130 +S'oil on panel' +p345561 +sg291132 +S'c. 1633' +p345562 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e4a.jpg' +p345563 +sg291136 +g27 +sa(dp345564 +g291134 +S'Sketch for The Copley Family' +p345565 +sg291137 +S'John Singleton Copley' +p345566 +sg291130 +S'oil on canvas' +p345567 +sg291132 +S'1776' +p345568 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00000/a0000067.jpg' +p345569 +sg291136 +g27 +sa(dp345570 +g291134 +S'Warwick Castle, England' +p345571 +sg291137 +S'Jasper Francis Cropsey' +p345572 +sg291130 +S'oil on canvas' +p345573 +sg291132 +S'1857' +p345574 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00000/a0000071.jpg' +p345575 +sg291136 +g27 +sa(dp345576 +g291130 +S'oil on canvas' +p345577 +sg291132 +S'1970' +p345578 +sg291134 +S'Loneliness' +p345579 +sg291136 +g27 +sg291137 +S'Alice Neel' +p345580 +sa(dp345581 +g291130 +S'oil on canvas' +p345582 +sg291132 +S'1966' +p345583 +sg291134 +S'Hartley' +p345584 +sg291136 +g27 +sg291137 +S'Alice Neel' +p345585 +sa(dp345586 +g291134 +S'Schooner' +p345587 +sg291137 +S'American 19th Century' +p345588 +sg291130 +S'overall: 58.7 x 91.4 cm (23 1/8 x 36 in.)\r\nframed: 69.9 x 102.6 x 6.7 cm (27 1/2 x 40 3/8 x 2 5/8 in.)' +p345589 +sg291132 +S'\noil on canvas' +p345590 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00004/a000044c.jpg' +p345591 +sg291136 +g27 +sa(dp345592 +g291134 +S'Andiron with Putto Finial' +p345593 +sg291137 +S'Nicol\xc3\xb2 Roccatagliata' +p345594 +sg291130 +S'bronze' +p345595 +sg291132 +S'model c. 1600, cast probably 17th/18th century' +p345596 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002d93.jpg' +p345597 +sg291136 +g27 +sa(dp345598 +g291130 +S'bronze' +p345599 +sg291132 +S'model c. 1600, cast probably 17th/18th century' +p345600 +sg291134 +S'Andiron with Putto Finial' +p345601 +sg291136 +g27 +sg291137 +S'Nicol\xc3\xb2 Roccatagliata' +p345602 +sa(dp345603 +g291130 +S'lead' +p345604 +sg291132 +S'c. 1540' +p345605 +sg291134 +S'The Continence of Scipio [original sense]' +p345606 +sg291136 +g27 +sg291137 +S'Giovanni Bernardi' +p345607 +sa(dp345608 +g291130 +S'lead' +p345609 +sg291132 +S'c. 1540' +p345610 +sg291134 +S'Eliezer and Rebecca at the Well' +p345611 +sg291136 +g27 +sg291137 +S'Giovanni Bernardi' +p345612 +sa(dp345613 +g291130 +S'bronze' +p345614 +sg291132 +S'c. 1540' +p345615 +sg291134 +S'Eliezer and Rebecca at the Well' +p345616 +sg291136 +g27 +sg291137 +S'Giovanni Bernardi' +p345617 +sa(dp345618 +g291130 +S'white felt with blue velvet appliqu?' +p345619 +sg291132 +S'1919' +p345620 +sg291134 +S'Mourner Costume' +p345621 +sg291136 +g27 +sg291137 +S'Henri Matisse' +p345622 +sa(dp345623 +g291130 +S'saffron yellow satin with applied gold lam? disks, each surrounded by a black, handpainted motif; lined with hand-stitched cotton batting' +p345624 +sg291132 +S'1919' +p345625 +sg291134 +S'Mandarin Costume' +p345626 +sg291136 +g27 +sg291137 +S'Henri Matisse' +p345627 +sa(dp345628 +g291130 +S'Perspex with nylon monofilament' +p345629 +sg291132 +S'1954' +p345630 +sg291134 +S'Linear Construction in Space No. 2' +p345631 +sg291136 +g27 +sg291137 +S'Naum Gabo' +p345632 +sa(dp345633 +g291134 +S'Prudence [recto]' +p345634 +sg291137 +S'Cherubino Alberti' +p345635 +sg291130 +S'red chalk on laid paper' +p345636 +sg291132 +S'c. 1601' +p345637 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a000223c.jpg' +p345638 +sg291136 +g27 +sa(dp345639 +g291134 +S'Prudence [verso]' +p345640 +sg291137 +S'Giovanni Alberti' +p345641 +sg291130 +S'red chalk on laid paper' +p345642 +sg291132 +S'1596/1601' +p345643 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e42.jpg' +p345644 +sg291136 +g27 +sa(dp345645 +g291134 +S'Head of a Youth' +p345646 +sg291137 +S'Alessandro Allori' +p345647 +sg291130 +S'red chalk on laid paper; laid down' +p345648 +sg291132 +S'unknown date\n' +p345649 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074e5.jpg' +p345650 +sg291136 +g27 +sa(dp345651 +g291134 +S'Two Nudes Fighting' +p345652 +sg291137 +S'Michelangelo' +p345653 +sg291130 +S'pen and brown ink on laid paper; laid down' +p345654 +sg291132 +S'unknown date\n' +p345655 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a0007503.jpg' +p345656 +sg291136 +g27 +sa(dp345657 +g291134 +S'Landscape with a Man and a Dog' +p345658 +sg291137 +S'Artist Information (' +p345659 +sg291130 +S'(artist after)' +p345660 +sg291132 +S'\n' +p345661 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074ea.jpg' +p345662 +sg291136 +g27 +sa(dp345663 +g291134 +S'Sketches of Heads and Hands' +p345664 +sg291137 +S'Pompeo Batoni' +p345665 +sg291130 +S'red and black chalks on orange prepared laid paper' +p345666 +sg291132 +S'unknown date\n' +p345667 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e13.jpg' +p345668 +sg291136 +g27 +sa(dp345669 +g291134 +S'Designs for Palatial Staircases [recto]' +p345670 +sg291137 +S'Lorenzo Sacchetti' +p345671 +sg291130 +S'pen and brown ink and graphite on wove paper' +p345672 +sg291132 +S'c. 1800' +p345673 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00027/a00027a2.jpg' +p345674 +sg291136 +g27 +sa(dp345675 +g291134 +S'Designs for Palatial Arches [verso]' +p345676 +sg291137 +S'Lorenzo Sacchetti' +p345677 +sg291130 +S'pen and brown ink and graphite on wove paper' +p345678 +sg291132 +S'c. 1800' +p345679 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00027/a00027a3.jpg' +p345680 +sg291136 +g27 +sa(dp345681 +g291134 +S'Prophet and Sybil' +p345682 +sg291137 +S'Artist Information (' +p345683 +sg291130 +S'Italian, 1544 - 1573/1574' +p345684 +sg291132 +S'(artist after)' +p345685 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a000749a.jpg' +p345686 +sg291136 +g27 +sa(dp345687 +g291134 +S'A Mythological Scene with Sea Gods' +p345688 +sg291137 +S'Giuseppe Bernardino Bison' +p345689 +sg291130 +S'brown wash and pen and brown ink over graphite, heightened with white, on brown wove paper' +p345690 +sg291132 +S'unknown date\n' +p345691 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ed6.jpg' +p345692 +sg291136 +g27 +sa(dp345693 +g291134 +S'Sacrifice [recto]' +p345694 +sg291137 +S'Giuseppe Cades' +p345695 +sg291130 +S'pen and brown ink and brown wash on laid paper' +p345696 +sg291132 +S'unknown date\n' +p345697 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a00070be.jpg' +p345698 +sg291136 +g27 +sa(dp345699 +g291134 +S'Designs for Vases [verso]' +p345700 +sg291137 +S'Giuseppe Cades' +p345701 +sg291130 +S'pen and brown ink over graphite on laid paper' +p345702 +sg291132 +S'unknown date\n' +p345703 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a0007090.jpg' +p345704 +sg291136 +g27 +sa(dp345705 +g291134 +S'Travelers on a Road in a Wooded Landscape' +p345706 +sg291137 +S'Jean Baptiste Claude Chatelain' +p345707 +sg291130 +S'black chalk and graphite on laid paper' +p345708 +sg291132 +S'unknown date\n' +p345709 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e48.jpg' +p345710 +sg291136 +g27 +sa(dp345711 +g291134 +S'Standing Man' +p345712 +sg291137 +S'Jacopo Chimenti' +p345713 +sg291130 +S'red chalk on laid paper' +p345714 +sg291132 +S'unknown date\n' +p345715 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022d9.jpg' +p345716 +sg291136 +g27 +sa(dp345717 +g291134 +S'Two Standing Putti [recto]' +p345718 +sg291137 +S'Italian 17th Century' +p345719 +sg291130 +S'overall: 15 x 17.2 cm (5 7/8 x 6 3/4 in.)' +p345720 +sg291132 +S'\npen and brown ink on laid paper' +p345721 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a0007467.jpg' +p345722 +sg291136 +g27 +sa(dp345723 +g291130 +S'overall: 15 x 17.2 cm (5 7/8 x 6 3/4 in.)' +p345724 +sg291132 +S'\npen and brown ink and graphite on laid paper' +p345725 +sg291134 +S'Plant Study [verso]' +p345726 +sg291136 +g27 +sg291137 +S'Italian 17th Century' +p345727 +sa(dp345728 +g291134 +S'Roman Ruins with a Sepulchre' +p345729 +sg291137 +S'Charles Louis Cl\xc3\xa9risseau' +p345730 +sg291130 +S'pen and gray ink with watercolor on laid paper' +p345731 +sg291132 +S'unknown date\n' +p345732 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d5f.jpg' +p345733 +sg291136 +g27 +sa(dp345734 +g291134 +S'Head of a Young Man [recto]' +p345735 +sg291137 +S'Dutch 17th Century' +p345736 +sg291130 +S'overall: 19.9 x 20.4 cm (7 13/16 x 8 1/16 in.)' +p345737 +sg291132 +S'\nblack chalk on laid paper' +p345738 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a000244c.jpg' +p345739 +sg291136 +g27 +sa(dp345740 +g291130 +S'overall: 19.9 x 20.4 cm (7 13/16 x 8 1/16 in.)' +p345741 +sg291132 +S'\nblack and red chalks on laid paper' +p345742 +sg291134 +S'Figure Sketches with Christ Appearing to Mary Magdalen [verso]' +p345743 +sg291136 +g27 +sg291137 +S'Dutch 17th Century' +p345744 +sa(dp345745 +g291134 +S'A Woodland Pond' +p345746 +sg291137 +S'Charles-Fran\xc3\xa7ois Daubigny' +p345747 +sg291130 +S'charcoal and gray wash on laid paper' +p345748 +sg291132 +S'c. 1870' +p345749 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000731e.jpg' +p345750 +sg291136 +g27 +sa(dp345751 +g291134 +S'A Man Looking Out a Window' +p345752 +sg291137 +S"Bonifacio de' Pitati" +p345753 +sg291130 +S'pen and brown ink with brown wash over black chalk, heightened with white on laid paper' +p345754 +sg291132 +S'unknown date\n' +p345755 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a0007516.jpg' +p345756 +sg291136 +g27 +sa(dp345757 +g291134 +S'Study for a Ceiling: Allegory of the Harvest with Dionysus and Ceres' +p345758 +sg291137 +S'Jacob de Wit' +p345759 +sg291130 +S'pen and black and brown inks with gray and brown washes on laid paper' +p345760 +sg291132 +S'unknown date\n' +p345761 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f55.jpg' +p345762 +sg291136 +g27 +sa(dp345763 +g291134 +S'Cleopatra' +p345764 +sg291137 +S'Gustave Dor\xc3\xa9' +p345765 +sg291130 +S'graphite on wove paper' +p345766 +sg291132 +S'unknown date\n' +p345767 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f8d.jpg' +p345768 +sg291136 +g27 +sa(dp345769 +g291134 +S'Christian Martyrs' +p345770 +sg291137 +S'Gustave Dor\xc3\xa9' +p345771 +sg291130 +S'black chalk and brown washes, heightened with white, on wove paper' +p345772 +sg291132 +S'1869/1871' +p345773 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a000243f.jpg' +p345774 +sg291136 +g27 +sa(dp345775 +g291134 +S'The Council of Trent with Saint Thomas Vanquishing the Heretics' +p345776 +sg291137 +S'Biagio Falcieri' +p345777 +sg291130 +S'pen and black and brown ink and gray wash over black chalk on laid paper' +p345778 +sg291132 +S'c. 1680' +p345779 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a000244e.jpg' +p345780 +sg291136 +g27 +sa(dp345781 +g291134 +S'Timotheus Playing the Lyre before Alexander and Tha\xc3\xafs in the Hall of the Palace at Persepolis' +p345782 +sg291137 +S'Pietro Fancelli' +p345783 +sg291130 +S'pen and brown ink with gray wash over black chalk and graphite, squared for transfer, on two joined sheets of wove paper' +p345784 +sg291132 +S'c. 1820' +p345785 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a000244f.jpg' +p345786 +sg291136 +g27 +sa(dp345787 +g291134 +S'Women Dancing' +p345788 +sg291137 +S'Pietro Fancelli' +p345789 +sg291130 +S'black chalk on wove paper' +p345790 +sg291132 +S'c. 1820' +p345791 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a000251c.jpg' +p345792 +sg291136 +g27 +sa(dp345793 +g291134 +S'Four Standing Warriors' +p345794 +sg291137 +S'Pietro Fancelli' +p345795 +sg291130 +S'black chalk on laid paper, pricked and squared for transfer' +p345796 +sg291132 +S'c. 1820' +p345797 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a000251d.jpg' +p345798 +sg291136 +g27 +sa(dp345799 +g291134 +S'Two Standing Courtiers' +p345800 +sg291137 +S'Pietro Fancelli' +p345801 +sg291130 +S'black chalk on thin wove paper, pricked for tranfer' +p345802 +sg291132 +S'c. 1820' +p345803 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fc9.jpg' +p345804 +sg291136 +g27 +sa(dp345805 +g291134 +S'Wooded Landscape with Putti Helping a Woman Undress' +p345806 +sg291137 +S'William Perkins Babcock' +p345807 +sg291130 +S'cont? crayon on laid paper' +p345808 +sg291132 +S'unknown date\n' +p345809 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0a5.jpg' +p345810 +sg291136 +g27 +sa(dp345811 +g291134 +S'Woman at a Counter' +p345812 +sg291137 +S'Jean-Louis Forain' +p345813 +sg291130 +S'brush and black ink with black chalk on wove paper' +p345814 +sg291132 +S'unknown date\n' +p345815 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f2c.jpg' +p345816 +sg291136 +g27 +sa(dp345817 +g291134 +S'Design for Entrance to a Hall' +p345818 +sg291137 +S'Fabrizio Galliari' +p345819 +sg291130 +S'pen and brown ink and brown wash over graphite on laid paper' +p345820 +sg291132 +S'unknown date\n' +p345821 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a0007060.jpg' +p345822 +sg291136 +g27 +sa(dp345823 +g291134 +S'Stage Design' +p345824 +sg291137 +S'Gasparo Galliari' +p345825 +sg291130 +S'pen and brown ink with gray wash over graphite on laid paper' +p345826 +sg291132 +S'unknown date\n' +p345827 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fdd.jpg' +p345828 +sg291136 +g27 +sa(dp345829 +g291134 +S'Stage Design: A Piazza with a Domed Church and an Obelisk' +p345830 +sg291137 +S'Giuseppino Galliari' +p345831 +sg291130 +S'pen and brown ink with brown wash over graphite on laid paper' +p345832 +sg291132 +S'1783' +p345833 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fff.jpg' +p345834 +sg291136 +g27 +sa(dp345835 +g291130 +S'graphite on wove paper' +p345836 +sg291132 +S'unknown date\n' +p345837 +sg291134 +S'Costume Design' +p345838 +sg291136 +g27 +sg291137 +S'Natalija Sergeevna Goncharova' +p345839 +sa(dp345840 +g291134 +S'Captives before a Commander' +p345841 +sg291137 +S'Hubert Fran\xc3\xa7ois Gravelot' +p345842 +sg291130 +S'pen and black ink and graphite on laid paper' +p345843 +sg291132 +S'unknown date\n' +p345844 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e25.jpg' +p345845 +sg291136 +g27 +sa(dp345846 +g291134 +S"Hob Surprised by Sir Thomas with Mr. Friendly's Letter" +p345847 +sg291137 +S'Hubert Fran\xc3\xa7ois Gravelot' +p345848 +sg291130 +S'pen and black ink, red chalk, and graphite, incised for transfer, on laid paper' +p345849 +sg291132 +S'unknown date\n' +p345850 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e54.jpg' +p345851 +sg291136 +g27 +sa(dp345852 +g291134 +S'Interior of a Church with a Wall Tomb and Medieval Font' +p345853 +sg291137 +S'Louis Haghe' +p345854 +sg291130 +S'watercolor and graphite on wove paper' +p345855 +sg291132 +S'unknown date\n' +p345856 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ca0.jpg' +p345857 +sg291136 +g27 +sa(dp345858 +g291134 +S'Road at H\xc3\xa9risson' +p345859 +sg291137 +S'Henri-Joseph Harpignies' +p345860 +sg291130 +S'brush with black and gray inks over charcoal on wove paper' +p345861 +sg291132 +S'1911' +p345862 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a00073ac.jpg' +p345863 +sg291136 +g27 +sa(dp345864 +g291134 +S'An Artist Holding a Book and Compass' +p345865 +sg291137 +S'Artist Information (' +p345866 +sg291130 +S'Dutch, active c. 1650 - active 1655' +p345867 +sg291132 +S'(artist after)' +p345868 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d54.jpg' +p345869 +sg291136 +g27 +sa(dp345870 +g291134 +S'Landscape with Trees and Craggy Rocks' +p345871 +sg291137 +S'Franz Innocenz Josef Kobell' +p345872 +sg291130 +S'pen and brown ink on laid paper' +p345873 +sg291132 +S'unknown date\n' +p345874 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a0007265.jpg' +p345875 +sg291136 +g27 +sa(dp345876 +g291134 +S'Landscape' +p345877 +sg291137 +S'Franz Innocenz Josef Kobell' +p345878 +sg291130 +S'pen and brown ink on laid paper' +p345879 +sg291132 +S'unknown date\n' +p345880 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d47.jpg' +p345881 +sg291136 +g27 +sa(dp345882 +g291134 +S'Study of Heads [recto]' +p345883 +sg291137 +S'French 17th Century' +p345884 +sg291130 +S'overall: 19.6 x 26.6 cm (7 11/16 x 10 1/2 in.)' +p345885 +sg291132 +S'\nblack and red chalks heightened with white on blue laid paper' +p345886 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d86.jpg' +p345887 +sg291136 +g27 +sa(dp345888 +g291134 +S'Two Reclining Figures [verso]' +p345889 +sg291137 +S'French 17th Century' +p345890 +sg291130 +S'overall: 19.6 x 26.6 cm (7 11/16 x 10 1/2 in.)' +p345891 +sg291132 +S'\nblack chalk heightened with white on blue laid paper' +p345892 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d58.jpg' +p345893 +sg291136 +g27 +sa(dp345894 +g291134 +S'Turkish Stage Design' +p345895 +sg291137 +S'Karl Ferdinand Langhans' +p345896 +sg291130 +S'pen and gray ink with watercolor over graphite on wove paper' +p345897 +sg291132 +S'1815' +p345898 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a0002563.jpg' +p345899 +sg291136 +g27 +sa(dp345900 +g291134 +S'An Allegorical Female Figure' +p345901 +sg291137 +S'Artist Information (' +p345902 +sg291130 +S'French, 1619 - 1690' +p345903 +sg291132 +S'(related artist)' +p345904 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a0007132.jpg' +p345905 +sg291136 +g27 +sa(dp345906 +g291134 +S"Portal of the H\xc3\xb4tel d'Uz\xc3\xa8s, rue Montmartre, Paris" +p345907 +sg291137 +S'Artist Information (' +p345908 +sg291130 +S'French, 1736 - 1806' +p345909 +sg291132 +S'(related artist)' +p345910 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a00025e9.jpg' +p345911 +sg291136 +g27 +sa(dp345912 +g291134 +S'A Trophy of Arms' +p345913 +sg291137 +S'Jean Lepautre' +p345914 +sg291130 +S'pen and black ink with gray wash on laid paper' +p345915 +sg291132 +S'unknown date\n' +p345916 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a0007157.jpg' +p345917 +sg291136 +g27 +sa(dp345918 +g291134 +S'A Judge and Two Gentlemen Lawyers' +p345919 +sg291137 +S'Eustache Le Sueur' +p345920 +sg291130 +S', unknown date' +p345921 +sg291132 +S'\n' +p345922 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d2a.jpg' +p345923 +sg291136 +g27 +sa(dp345924 +g291134 +S'Piazza by Moonlight' +p345925 +sg291137 +S'Thomas Wyck' +p345926 +sg291130 +S'pen and brown ink with brown wash, heightened with white gouache, on blue prepared laid paper' +p345927 +sg291132 +S'1650s?' +p345928 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a00028eb.jpg' +p345929 +sg291136 +g27 +sa(dp345930 +g291134 +S'Battle of the Gods and Giants from Mount Olympus and Mount Othrys' +p345931 +sg291137 +S'Jan Luyken' +p345932 +sg291130 +S'pen and brown ink with brown wash on laid paper' +p345933 +sg291132 +S'unknown date\n' +p345934 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dc0.jpg' +p345935 +sg291136 +g27 +sa(dp345936 +g291134 +S'Study of a Young Boy' +p345937 +sg291137 +S'Carlo Maratta' +p345938 +sg291130 +S'red chalk on blue laid paper' +p345939 +sg291132 +S'unknown date\n' +p345940 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074c3.jpg' +p345941 +sg291136 +g27 +sa(dp345942 +g291134 +S'A Scene from the Life of Trajan' +p345943 +sg291137 +S'Conrad Metz' +p345944 +sg291130 +S'pen and brown ink with brown wash over black chalk, heightened with white on laid paper' +p345945 +sg291132 +S'1817' +p345946 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e9f.jpg' +p345947 +sg291136 +g27 +sa(dp345948 +g291134 +S'Pastoral Scene' +p345949 +sg291137 +S'Italian 18th Century' +p345950 +sg291130 +S'overall: 20.1 x 14.8 cm (7 15/16 x 5 13/16 in.)' +p345951 +sg291132 +S'\npen and brown ink with gray wash over black chalk on laid paper' +p345952 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d5a.jpg' +p345953 +sg291136 +g27 +sa(dp345954 +g291134 +S'Design for a State Bedroom' +p345955 +sg291137 +S'Francesco Nicoletti' +p345956 +sg291130 +S'pen and brown ink with colored washes on laid paper' +p345957 +sg291132 +S'c. 1730' +p345958 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a000742a.jpg' +p345959 +sg291136 +g27 +sa(dp345960 +g291134 +S'Figure Studies' +p345961 +sg291137 +S'Jacopo Palma il Giovane' +p345962 +sg291130 +S'pen and brown ink on blue wove paper; laid down' +p345963 +sg291132 +S'unknown date\n' +p345964 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a0002611.jpg' +p345965 +sg291136 +g27 +sa(dp345966 +g291130 +S'pen and brown ink on wove paper' +p345967 +sg291132 +S'1955' +p345968 +sg291134 +S'Street Scene, Venice' +p345969 +sg291136 +g27 +sg291137 +S'Romano Parmeggiani' +p345970 +sa(dp345971 +g291134 +S'Male Nude with a Lamp (Diogenes)' +p345972 +sg291137 +S'Bernard Picart' +p345973 +sg291130 +S'red chalk on laid paper' +p345974 +sg291132 +S'1724' +p345975 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026cd.jpg' +p345976 +sg291136 +g27 +sa(dp345977 +g291134 +S'A Kneeling Woman with an Incense Burner and a Page Holding a Crown and Scepter' +p345978 +sg291137 +S'Artist Information (' +p345979 +sg291130 +S'(artist after)' +p345980 +sg291132 +S'\n' +p345981 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ba/a000badf.jpg' +p345982 +sg291136 +g27 +sa(dp345983 +g291134 +S'Resting Horse' +p345984 +sg291137 +S'Paulus Potter' +p345985 +sg291130 +S', unknown date' +p345986 +sg291132 +S'\n' +p345987 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d8e.jpg' +p345988 +sg291136 +g27 +sa(dp345989 +g291134 +S'Ladies and Gentlemen Enjoying a Dutch Garden' +p345990 +sg291137 +S'Cornelis Pronk' +p345991 +sg291130 +S'pen and gray ink with gray wash on laid paper' +p345992 +sg291132 +S'1739' +p345993 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006db2.jpg' +p345994 +sg291136 +g27 +sa(dp345995 +g291134 +S'Presentation of the Virgin in the Temple [recto]' +p345996 +sg291137 +S'Antonio Zanchi' +p345997 +sg291130 +S'pen and brown ink and brown wash over black chalk, squared for transfer, on laid paper' +p345998 +sg291132 +S'1698/1700' +p345999 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026ea.jpg' +p346000 +sg291136 +g27 +sa(dp346001 +g291134 +S'Presentation of the Virgin in the Temple [verso]' +p346002 +sg291137 +S'Antonio Zanchi' +p346003 +sg291130 +S'pen and brown ink on laid paper' +p346004 +sg291132 +S'c. 1620' +p346005 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a04.jpg' +p346006 +sg291136 +g27 +sa(dp346007 +g291134 +S'Flight of Meriones, with Dead Coeranos Being Dragged from the Chariot' +p346008 +sg291137 +S'Artist Information (' +p346009 +sg291130 +S'Italian, 1499 - 1546' +p346010 +sg291132 +S'(artist after)' +p346011 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a0007542.jpg' +p346012 +sg291136 +g27 +sa(dp346013 +g291134 +S'Figures Carrying a Body' +p346014 +sg291137 +S'Italian 17th Century' +p346015 +sg291130 +S'overall: 15.9 x 14.2 cm (6 1/4 x 5 9/16 in.)' +p346016 +sg291132 +S'\npen and brown ink on laid paper' +p346017 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a0007465.jpg' +p346018 +sg291136 +g27 +sa(dp346019 +g291134 +S'Standing Man Wearing a Cloak and Hat' +p346020 +sg291137 +S'Matteo Rosselli' +p346021 +sg291130 +S'red chalk on laid paper' +p346022 +sg291132 +S'c. 1602' +p346023 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026f5.jpg' +p346024 +sg291136 +g27 +sa(dp346025 +g291134 +S'A Flock of Sheep before a Farmhouse' +p346026 +sg291137 +S'Th\xc3\xa9odore Rousseau' +p346027 +sg291130 +S'graphite on wove paper' +p346028 +sg291132 +S'unknown date\n' +p346029 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d82.jpg' +p346030 +sg291136 +g27 +sa(dp346031 +g291134 +S'Gleaners' +p346032 +sg291137 +S'Th\xc3\xa9odore Rousseau' +p346033 +sg291130 +S'graphite on wove paper' +p346034 +sg291132 +S'unknown date\n' +p346035 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d55.jpg' +p346036 +sg291136 +g27 +sa(dp346037 +g291134 +S'Landscape I' +p346038 +sg291137 +S'Th\xc3\xa9odore Rousseau' +p346039 +sg291130 +S'graphite on wove paper' +p346040 +sg291132 +S'unknown date\n' +p346041 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d26.jpg' +p346042 +sg291136 +g27 +sa(dp346043 +g291134 +S'Landscape II' +p346044 +sg291137 +S'Th\xc3\xa9odore Rousseau' +p346045 +sg291130 +S'black chalk on laid paper' +p346046 +sg291132 +S'unknown date\n' +p346047 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cf9.jpg' +p346048 +sg291136 +g27 +sa(dp346049 +g291134 +S'Design for a Vaulted Hall' +p346050 +sg291137 +S'Lorenzo Sacchetti' +p346051 +sg291130 +S'pen and brown ink with brown wash over black chalk on laid paper' +p346052 +sg291132 +S'unknown date\n' +p346053 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a0007436.jpg' +p346054 +sg291136 +g27 +sa(dp346055 +g291134 +S'Stage Design: A Sepulchral Vault' +p346056 +sg291137 +S'Karl Friedrich Schinkel' +p346057 +sg291130 +S'pen and brown ink with gray washes and watercolor on laid paper' +p346058 +sg291132 +S'c. 1820' +p346059 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e10.jpg' +p346060 +sg291136 +g27 +sa(dp346061 +g291134 +S'The Triumph of the Trinity (The Gloria)' +p346062 +sg291137 +S'Francesco Solimena' +p346063 +sg291130 +S'black chalk on laid paper' +p346064 +sg291132 +S'unknown date\n' +p346065 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a0007199.jpg' +p346066 +sg291136 +g27 +sa(dp346067 +g291134 +S'Renderings of an Ivory Carving of Ariadne from the 6th Century and an Ivory Plaque from the 9th Century' +p346068 +sg291137 +S'Herman Wilhelm Soltau' +p346069 +sg291130 +S'watercolor and graphite, heightened with white on heavy card' +p346070 +sg291132 +S'unknown date\n' +p346071 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a00072ca.jpg' +p346072 +sg291136 +g27 +sa(dp346073 +g291134 +S'A Saint Holding a Book' +p346074 +sg291137 +S'Gioacchino Assereto' +p346075 +sg291130 +S', c. 1640' +p346076 +sg291132 +S'\n' +p346077 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a0007485.jpg' +p346078 +sg291136 +g27 +sa(dp346079 +g291134 +S'Ecclesia Surrounded by Angels Holding the Instruments of the Passion' +p346080 +sg291137 +S'Bernardo Strozzi' +p346081 +sg291130 +S', unknown date' +p346082 +sg291132 +S'\n' +p346083 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074ce.jpg' +p346084 +sg291136 +g27 +sa(dp346085 +g291134 +S'A Classical Temple' +p346086 +sg291137 +S'Louis Gustave Taraval' +p346087 +sg291130 +S'pen and black ink with gray, brown, and green washes on laid paper' +p346088 +sg291132 +S'c. 1780' +p346089 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a0002858.jpg' +p346090 +sg291136 +g27 +sa(dp346091 +g291130 +S'pen and brown ink with brown wash on laid paper' +p346092 +sg291132 +S'1931' +p346093 +sg291134 +S'Les P\xc3\xaacheurs' +p346094 +sg291136 +g27 +sg291137 +S'Pavel Tchelitchew' +p346095 +sa(dp346096 +g291134 +S'Capriccio with a Palladian Villa' +p346097 +sg291137 +S'Mauro Antonio Tesi' +p346098 +sg291130 +S'pen and brown ink with brown wash and watercolor over graphite on laid paper' +p346099 +sg291132 +S'c. 1760' +p346100 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a000285b.jpg' +p346101 +sg291136 +g27 +sa(dp346102 +g291134 +S'The Adoration of the Shepherds' +p346103 +sg291137 +S'Giuseppe Passeri' +p346104 +sg291130 +S'pen and brown ink with brown wash over red chalk, heightened with white on laid paper, squared for transfer' +p346105 +sg291132 +S'unknown date\n' +p346106 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074b9.jpg' +p346107 +sg291136 +g27 +sa(dp346108 +g291134 +S'Ceremony of Consecration' +p346109 +sg291137 +S'French 18th Century' +p346110 +sg291130 +S'overall: 22.5 x 35.4 cm (8 7/8 x 13 15/16 in.)' +p346111 +sg291132 +S'\nred chalk over graphite, squared and incised for transfer on laid paper' +p346112 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a0007047.jpg' +p346113 +sg291136 +g27 +sa(dp346114 +g291134 +S'Design for a Wall of a Music Room [recto]' +p346115 +sg291137 +S'Italian 18th Century' +p346116 +sg291130 +S'overall: 21.8 x 32.7 cm (8 9/16 x 12 7/8 in.)' +p346117 +sg291132 +S'\nwatercolor, gouache, pen and brown ink, and graphite on wove paper' +p346118 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dc3.jpg' +p346119 +sg291136 +g27 +sa(dp346120 +g291130 +S'overall: 21.8 x 32.7 cm (8 9/16 x 12 7/8 in.)' +p346121 +sg291132 +S'\ngraphite on wove paper' +p346122 +sg291134 +S'Ornamental Design [verso]' +p346123 +sg291136 +g27 +sg291137 +S'Italian 18th Century' +p346124 +sa(dp346125 +g291134 +S'Entablature' +p346126 +sg291137 +S'Auguste Delacouture' +p346127 +sg291130 +S'pen and black ink with gray wash on laid paper' +p346128 +sg291132 +S'1822' +p346129 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000731c.jpg' +p346130 +sg291136 +g27 +sa(dp346131 +g291134 +S'The Flagellation of Christ' +p346132 +sg291137 +S'Artist Information (' +p346133 +sg291130 +S'Flemish, c. 1570 - 1630' +p346134 +sg291132 +S'(artist after)' +p346135 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e9c.jpg' +p346136 +sg291136 +g27 +sa(dp346137 +g291134 +S'Men Throwing Dice' +p346138 +sg291137 +S'German 19th Century' +p346139 +sg291130 +S'overall: 15.5 x 18.6 cm (6 1/8 x 7 5/16 in.)' +p346140 +sg291132 +S'\ngraphite on laid paper' +p346141 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d6c.jpg' +p346142 +sg291136 +g27 +sa(dp346143 +g291134 +S'The Rescue of Deianeira' +p346144 +sg291137 +S'Austrian 18th Century' +p346145 +sg291130 +S'overall: 30.3 x 19.5 cm (11 15/16 x 7 11/16 in.)' +p346146 +sg291132 +S'\npen and brown ink with brown wash over black chalk on laid paper' +p346147 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a000694a.jpg' +p346148 +sg291136 +g27 +sa(dp346149 +g291134 +S'Stage Design' +p346150 +sg291137 +S'Italian 19th Century' +p346151 +sg291130 +S'overall: 9.4 x 15.6 cm (3 11/16 x 6 1/8 in.)' +p346152 +sg291132 +S'\npen and gray ink with brown and gray washes over graphite on laid paper' +p346153 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a0007236.jpg' +p346154 +sg291136 +g27 +sa(dp346155 +g291134 +S'Study for an Altar and a Reredos' +p346156 +sg291137 +S'German 18th Century' +p346157 +sg291130 +S'overall: 40.4 x 23.9 cm (15 7/8 x 9 7/16 in.)' +p346158 +sg291132 +S'\npen and brown ink with brown wash over graphite on laid paper' +p346159 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00079/a00079a2.jpg' +p346160 +sg291136 +g27 +sa(dp346161 +g291134 +S'Tempio della Fortuna Virile with the Tempio di Vesta in the Distance' +p346162 +sg291137 +S'Italian 18th Century' +p346163 +sg291130 +S'overall: 10.1 x 14.6 cm (4 x 5 3/4 in.)' +p346164 +sg291132 +S'\ngouache on laid paper' +p346165 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d2c.jpg' +p346166 +sg291136 +g27 +sa(dp346167 +g291134 +S'Two Fountains' +p346168 +sg291137 +S'Italian 17th Century' +p346169 +sg291130 +S'overall: 16.2 x 20.6 cm (6 3/8 x 8 1/8 in.)' +p346170 +sg291132 +S'\npen and gray ink with gray wash on laid paper' +p346171 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a000746b.jpg' +p346172 +sg291136 +g27 +sa(dp346173 +g291134 +S'Apollo and the Muses' +p346174 +sg291137 +S'Giuseppe Valeriani' +p346175 +sg291130 +S'pen and black ink with gray wash over graphite on laid paper' +p346176 +sg291132 +S'unknown date\n' +p346177 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a000743a.jpg' +p346178 +sg291136 +g27 +sa(dp346179 +g291134 +S'The Raising of Lazarus' +p346180 +sg291137 +S'Jean-Baptiste Van Loo' +p346181 +sg291130 +S'pen and brown ink with gray wash over black chalk on laid paper' +p346182 +sg291132 +S'unknown date\n' +p346183 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ec9.jpg' +p346184 +sg291136 +g27 +sa(dp346185 +g291134 +S'The Baths of Caracalla, Rome' +p346186 +sg291137 +S'Willem van Nieuwlandt II' +p346187 +sg291130 +S'pen and brown ink with gray wash on laid paper' +p346188 +sg291132 +S'unknown date\n' +p346189 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e49.jpg' +p346190 +sg291136 +g27 +sa(dp346191 +g291134 +S'Diana and Endymion' +p346192 +sg291137 +S'Charles-Antoine Coypel' +p346193 +sg291130 +S'black chalk heightened with white and squared for transfer on brown paper' +p346194 +sg291132 +S'1720s' +p346195 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a000242a.jpg' +p346196 +sg291136 +g27 +sa(dp346197 +g291134 +S'A Bearded Man with a Staff' +p346198 +sg291137 +S'Simon Vouet' +p346199 +sg291130 +S', unknown date' +p346200 +sg291132 +S'\n' +p346201 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00065/a0006580.jpg' +p346202 +sg291136 +g27 +sa(dp346203 +g291134 +S"Odoratus, L'Ordorat" +p346204 +sg291137 +S'Abraham Bosse' +p346205 +sg291130 +S'engraving in black on laid paper' +p346206 +sg291132 +S'unknown date\n' +p346207 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a6c.jpg' +p346208 +sg291136 +g27 +sa(dp346209 +g291134 +S'The Valet' +p346210 +sg291137 +S'Abraham Bosse' +p346211 +sg291130 +S'engraving in black on laid paper' +p346212 +sg291132 +S'unknown date\n' +p346213 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a6b.jpg' +p346214 +sg291136 +g27 +sa(dp346215 +g291134 +S"Ah! il pr\xc3\xa9tend m'emp\xc3\xaacher d'aller..." +p346216 +sg291137 +S'Honor\xc3\xa9 Daumier' +p346217 +sg291130 +S'lithograph in black on newsprint' +p346218 +sg291132 +S'1849' +p346219 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00094/a000945b.jpg' +p346220 +sg291136 +g27 +sa(dp346221 +g291134 +S"C'est-y emb\xc3\xaatant de brosser ces machines l\xc3\xa0..." +p346222 +sg291137 +S'Honor\xc3\xa9 Daumier' +p346223 +sg291130 +S'lithograph in black on newsprint' +p346224 +sg291132 +S'unknown date\n' +p346225 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00095/a0009563.jpg' +p346226 +sg291136 +g27 +sa(dp346227 +g291134 +S'Oui, ma ch\xc3\xa8re, mon mari a raval\xc3\xa9 ma dignit\xc3\xa9...' +p346228 +sg291137 +S'Honor\xc3\xa9 Daumier' +p346229 +sg291130 +S'lithograph in black on newsprint' +p346230 +sg291132 +S'1849' +p346231 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00094/a0009451.jpg' +p346232 +sg291136 +g27 +sa(dp346233 +g291134 +S'Ah! vous \xc3\xaates mon mari, ah! vous \xc3\xaates le ma\xc3\xaetre...' +p346234 +sg291137 +S'Honor\xc3\xa9 Daumier' +p346235 +sg291130 +S'lithograph in black on newsprint' +p346236 +sg291132 +S'1849' +p346237 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00094/a0009450.jpg' +p346238 +sg291136 +g27 +sa(dp346239 +g291134 +S'Inconv\xc3\xa9nient... des domestiques qui ont servi chez M. Duprez' +p346240 +sg291137 +S'Honor\xc3\xa9 Daumier' +p346241 +sg291130 +S'lithograph in black on newsprint' +p346242 +sg291132 +S'1850' +p346243 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00094/a0009405.jpg' +p346244 +sg291136 +g27 +sa(dp346245 +g291130 +S'etching in black on wove paper' +p346246 +sg291132 +S'1907' +p346247 +sg291134 +S'Tree in a Landscape' +p346248 +sg291136 +g27 +sg291137 +S'Jean Fr\xc3\xa9laut' +p346249 +sa(dp346250 +g291134 +S'Banks of the Tamise' +p346251 +sg291137 +S'Maxime Lalanne' +p346252 +sg291130 +S'etching in black on laid paper' +p346253 +sg291132 +S'unknown date\n' +p346254 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00098/a00098c5.jpg' +p346255 +sg291136 +g27 +sa(dp346256 +g291134 +S'The Early Ploughman' +p346257 +sg291137 +S'Samuel Palmer' +p346258 +sg291130 +S'etching in black on laid paper' +p346259 +sg291132 +S'in or before 1861' +p346260 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007cfd.jpg' +p346261 +sg291136 +g27 +sa(dp346262 +g291130 +S'linoleum cut on japan paper' +p346263 +sg291132 +S'unknown date\n' +p346264 +sg291134 +S'Abstract' +p346265 +sg291136 +g27 +sg291137 +S'Charles William Smith' +p346266 +sa(dp346267 +g291130 +S'linoleum cut on laid paper' +p346268 +sg291132 +S'unknown date\n' +p346269 +sg291134 +S'Fish and Bottle' +p346270 +sg291136 +g27 +sg291137 +S'Charles William Smith' +p346271 +sa(dp346272 +g291134 +S'The Sacrifice of Abraham' +p346273 +sg291137 +S'Artist Information (' +p346274 +sg291130 +S'Italian, 1503 - 1540' +p346275 +sg291132 +S'(artist after)' +p346276 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c8/a000c87a.jpg' +p346277 +sg291136 +g27 +sa(dp346278 +g291130 +S'etching in black on laid paper' +p346279 +sg291132 +S'1928' +p346280 +sg291134 +S'The Meadow Chapel' +p346281 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p346282 +sa(dp346283 +g291130 +S'(author)' +p346284 +sg291132 +S'\n' +p346285 +sg291134 +S'The Beaux Stratagem' +p346286 +sg291136 +g27 +sg291137 +S'Artist Information (' +p346287 +sa(dp346288 +g291130 +S'British' +p346289 +sg291132 +S'(printer)' +p346290 +sg291134 +S'Genesis' +p346291 +sg291136 +g27 +sg291137 +S'Artist Information (' +p346292 +sa(dp346293 +g291130 +S'(artist)' +p346294 +sg291132 +S'\n' +p346295 +sg291134 +S'Carmen' +p346296 +sg291136 +g27 +sg291137 +S'Artist Information (' +p346297 +sa(dp346298 +g291130 +S'(author)' +p346299 +sg291132 +S'\n' +p346300 +sg291134 +S'The Rape of the Lock' +p346301 +sg291136 +g27 +sg291137 +S'Artist Information (' +p346302 +sa(dp346303 +g291130 +S'(author)' +p346304 +sg291132 +S'\n' +p346305 +sg291134 +S'A Sentimental Journey Through France and Italy' +p346306 +sg291136 +g27 +sg291137 +S'Artist Information (' +p346307 +sa(dp346308 +g291130 +S'(author)' +p346309 +sg291132 +S'\n' +p346310 +sg291134 +S"Wagner's Music Drama of the Ring" +p346311 +sg291136 +g27 +sg291137 +S'Artist Information (' +p346312 +sa(dp346313 +g291134 +S'Elisha Watching Elijah in the Fiery Chariot' +p346314 +sg291137 +S'Hans Jakob N\xc3\xbcscheler' +p346315 +sg291130 +S'pen and brown ink on laid paper' +p346316 +sg291132 +S'c. 1600' +p346317 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a11.jpg' +p346318 +sg291136 +g27 +sa(dp346319 +g291134 +S'Woods Near a Village with Rabbit Catchers and Their Greyhounds' +p346320 +sg291137 +S'Thomas Gainsborough' +p346321 +sg291130 +S'graphite on laid paper' +p346322 +sg291132 +S'late 1750s' +p346323 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a0007225.jpg' +p346324 +sg291136 +g27 +sa(dp346325 +g291134 +S'An Egyptian Stage Design' +p346326 +sg291137 +S'Pietro Gonzaga' +p346327 +sg291130 +S'pen and brown ink with gray and brown wash on laid paper' +p346328 +sg291132 +S'c. 1815' +p346329 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a0002546.jpg' +p346330 +sg291136 +g27 +sa(dp346331 +g291134 +S'Murder Scene' +p346332 +sg291137 +S'Thomas Bewick' +p346333 +sg291130 +S'engraving in red on wove paper' +p346334 +sg291132 +S'unknown date\n' +p346335 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d33.jpg' +p346336 +sg291136 +g27 +sa(dp346337 +g291134 +S'Scene in a Cave' +p346338 +sg291137 +S'George Cumberland' +p346339 +sg291130 +S'watercolor on wove paper' +p346340 +sg291132 +S'unknown date\n' +p346341 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bfd.jpg' +p346342 +sg291136 +g27 +sa(dp346343 +g291134 +S'Christ Trampling Satan' +p346344 +sg291137 +S'Artist Information (' +p346345 +sg291130 +S'(artist after)' +p346346 +sg291132 +S'\n' +p346347 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007caa.jpg' +p346348 +sg291136 +g27 +sa(dp346349 +g291134 +S'Conscience and the Recording Angel' +p346350 +sg291137 +S'Artist Information (' +p346351 +sg291130 +S'(artist after)' +p346352 +sg291132 +S'\n' +p346353 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007dfe.jpg' +p346354 +sg291136 +g27 +sa(dp346355 +g291134 +S'The Bellman' +p346356 +sg291137 +S'Samuel Palmer' +p346357 +sg291130 +S'etching in black on japan paper' +p346358 +sg291132 +S'1879' +p346359 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00079/a00079f4.jpg' +p346360 +sg291136 +g27 +sa(dp346361 +g291134 +S'The Lonely Tower' +p346362 +sg291137 +S'Samuel Palmer' +p346363 +sg291130 +S'etching in black on laid paper' +p346364 +sg291132 +S'1879' +p346365 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00079/a00079f6.jpg' +p346366 +sg291136 +g27 +sa(dp346367 +g291134 +S'Sheep at Noon' +p346368 +sg291137 +S'John Linnell' +p346369 +sg291130 +S'etching on laid paper' +p346370 +sg291132 +S'1818' +p346371 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d7f.jpg' +p346372 +sg291136 +g27 +sa(dp346373 +g291134 +S'John Martin' +p346374 +sg291137 +S'John Linnell' +p346375 +sg291130 +S'engraving in black on chine coll? on wove paper' +p346376 +sg291132 +S'1817' +p346377 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d44.jpg' +p346378 +sg291136 +g27 +sa(dp346379 +g291130 +S'1 vol: ill: 13 lithographs' +p346380 +sg291132 +S'published 1826' +p346381 +sg291134 +S'Reliquiae Conservatae' +p346382 +sg291136 +g27 +sg291137 +S'George Cumberland' +p346383 +sa(dp346384 +g291134 +S'Bacchante' +p346385 +sg291137 +S'Artist Information (' +p346386 +sg291130 +S'(artist after)' +p346387 +sg291132 +S'\n' +p346388 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007a/a0007a1e.jpg' +p346389 +sg291136 +g27 +sa(dp346390 +g291134 +S'Tower of a Fortified House [recto]' +p346391 +sg291137 +S'Friedrich Salath\xc3\xa9' +p346392 +sg291130 +S'pen and black ink with watercolor over graphite on wove paper' +p346393 +sg291132 +S'1814/1815' +p346394 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00027/a00027a8.jpg' +p346395 +sg291136 +g27 +sa(dp346396 +g291130 +S'pen and black ink and graphite on wove paper' +p346397 +sg291132 +S'1814/1815' +p346398 +sg291134 +S'Study of a Tree [verso]' +p346399 +sg291136 +g27 +sg291137 +S'Friedrich Salath\xc3\xa9' +p346400 +sa(dp346401 +g291134 +S'View of the Islands of Nisida and Capri' +p346402 +sg291137 +S'Friedrich Salath\xc3\xa9' +p346403 +sg291130 +S'graphite and brown wash on laid paper' +p346404 +sg291132 +S'probably 1819' +p346405 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a000284c.jpg' +p346406 +sg291136 +g27 +sa(dp346407 +g291134 +S'Corner of a Garden Court' +p346408 +sg291137 +S'Friedrich Salath\xc3\xa9' +p346409 +sg291130 +S'graphite on laid paper' +p346410 +sg291132 +S'1815/1821' +p346411 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a000284d.jpg' +p346412 +sg291136 +g27 +sa(dp346413 +g291134 +S'Windmill near Burg on Fehmarn (Windm\xc3\xbchle bei Burg auf Fehmarn)' +p346414 +sg291137 +S'Ernst Ludwig Kirchner' +p346415 +sg291130 +S'lithograph in black on thin japan paper' +p346416 +sg291132 +S'1908' +p346417 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00017/a0001783.jpg' +p346418 +sg291136 +g27 +sa(dp346419 +g291134 +S'Girls from Fehmarn (Fehmarn M\xc3\xa4dchen)' +p346420 +sg291137 +S'Ernst Ludwig Kirchner' +p346421 +sg291130 +S'woodcut in black on yellow paper' +p346422 +sg291132 +S'1913' +p346423 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00017/a0001784.jpg' +p346424 +sg291136 +g27 +sa(dp346425 +g291134 +S'Fanny Wocke' +p346426 +sg291137 +S'Ernst Ludwig Kirchner' +p346427 +sg291130 +S'woodcut in black on blotting paper' +p346428 +sg291132 +S'1916' +p346429 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00017/a0001785.jpg' +p346430 +sg291136 +g27 +sa(dp346431 +g291134 +S'The Wife of Professor Goldstein (Frau Professor Goldstein)' +p346432 +sg291137 +S'Ernst Ludwig Kirchner' +p346433 +sg291130 +S'woodcut in black on blotting paper' +p346434 +sg291132 +S'1916' +p346435 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c43b.jpg' +p346436 +sg291136 +g27 +sa(dp346437 +g291134 +S'Mountains with a Mountain Hut' +p346438 +sg291137 +S'Ernst Ludwig Kirchner' +p346439 +sg291130 +S'woodcut touched with black ink on wove paper' +p346440 +sg291132 +S'1921' +p346441 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00017/a0001786.jpg' +p346442 +sg291136 +g27 +sa(dp346443 +g291130 +S'lithograph in black on pink paper' +p346444 +sg291132 +S'1921' +p346445 +sg291134 +S"Portrait of a Girl (L's Daughter)" +p346446 +sg291136 +g27 +sg291137 +S'Ernst Ludwig Kirchner' +p346447 +sa(dp346448 +g291134 +S'Pianist and Singer (Pianist und S\xc3\xa4ngerin)' +p346449 +sg291137 +S'Ernst Ludwig Kirchner' +p346450 +sg291130 +S'woodcut in black on blue blotting paper' +p346451 +sg291132 +S'1928' +p346452 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00017/a0001787.jpg' +p346453 +sg291136 +g27 +sa(dp346454 +g291134 +S"Mary Wigman's Dance (Mary Wigman-Tanz)" +p346455 +sg291137 +S'Ernst Ludwig Kirchner' +p346456 +sg291130 +S'woodcut in black touched with black ink on wove paper' +p346457 +sg291132 +S'1933' +p346458 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00017/a0001788.jpg' +p346459 +sg291136 +g27 +sa(dp346460 +g291134 +S'Old Man Reckoning (Rechnender Greis)' +p346461 +sg291137 +S'Paul Klee' +p346462 +sg291130 +S'etching in black on japan paper' +p346463 +sg291132 +S'1929' +p346464 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00017/a0001789.jpg' +p346465 +sg291136 +g27 +sa(dp346466 +g291134 +S'Two Nudes Resting (Femmes se Reposant)' +p346467 +sg291137 +S'Pablo Picasso' +p346468 +sg291130 +S'drypoint on laid paper [printed 1939]' +p346469 +sg291132 +S'1931' +p346470 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eec9.jpg' +p346471 +sg291136 +g27 +sa(dp346472 +g291134 +S"Sculptor, Model, and Boy with a Sculpture Representing the Abduction of Europa (Sculpteur, gar\xc3\xa7on et mod\xc3\xa8le avec un groupe sculpt\xc3\xa9 repr\xc3\xa9sentant le rapt d'Europe)" +p346473 +sg291137 +S'Pablo Picasso' +p346474 +sg291130 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p346475 +sg291132 +S'1933' +p346476 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee46.jpg' +p346477 +sg291136 +g27 +sa(dp346478 +g291134 +S'Marie-Th\xc3\xa9r\xc3\xa8se, the Sculptor at Work, and a Sculpture Representing a Greek Athlete (Marie-Th\xc3\xa9r\xc3\xa8se, sculpteur au travail et sculpture repr\xc3\xa9sentant un athl\xc3\xa8te grec' +p346479 +sg291137 +S'Pablo Picasso' +p346480 +sg291130 +S'etching in black on Montval laid paper [printed in 1939 by Roger Lacouri?re]' +p346481 +sg291132 +S'1933' +p346482 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee5b.jpg' +p346483 +sg291136 +g27 +sa(dp346484 +g291130 +S'gelatin silver print' +p346485 +sg291132 +S'1968' +p346486 +sg291134 +S'Coast South of Saint Sebastian, Oregon' +p346487 +sg291136 +g27 +sg291137 +S'Ansel Adams' +p346488 +sa(dp346489 +g291130 +S'charcoal and graphite on wove paper' +p346490 +sg291132 +S'1965' +p346491 +sg291134 +S'Circles of Confusion' +p346492 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p346493 +sa(dp346494 +g291130 +S'offset color lithograph and etching on handmade wove paper' +p346495 +sg291132 +S'1988/1990' +p346496 +sg291134 +S'Her Story 1' +p346497 +sg291136 +g27 +sg291137 +S'Elizabeth Murray' +p346498 +sa(dp346499 +g291130 +S'(author)' +p346500 +sg291132 +S'\n' +p346501 +sg291134 +S'Her Story' +p346502 +sg291136 +g27 +sg291137 +S'Artist Information (' +p346503 +sa(dp346504 +g291130 +S'offset color lithograph and etching on handmade wove paper' +p346505 +sg291132 +S'1988/1990' +p346506 +sg291134 +S'Her Story 2' +p346507 +sg291136 +g27 +sg291137 +S'Elizabeth Murray' +p346508 +sa(dp346509 +g291130 +S'offset color lithograph and etching on handmade wove paper' +p346510 +sg291132 +S'1988/1990' +p346511 +sg291134 +S'Her Story 3' +p346512 +sg291136 +g27 +sg291137 +S'Elizabeth Murray' +p346513 +sa(dp346514 +g291130 +S'offset color lithograph and etching on handmade wove paper' +p346515 +sg291132 +S'1988/1990' +p346516 +sg291134 +S'Her Story 4' +p346517 +sg291136 +g27 +sg291137 +S'Elizabeth Murray' +p346518 +sa(dp346519 +g291130 +S'offset color lithograph and etching on handmade wove paper' +p346520 +sg291132 +S'1988/1990' +p346521 +sg291134 +S'Her Story 5' +p346522 +sg291136 +g27 +sg291137 +S'Elizabeth Murray' +p346523 +sa(dp346524 +g291130 +S'offset color lithograph and etching on handmade wove paper' +p346525 +sg291132 +S'1988/1990' +p346526 +sg291134 +S'Her Story 6' +p346527 +sg291136 +g27 +sg291137 +S'Elizabeth Murray' +p346528 +sa(dp346529 +g291130 +S'offset color lithograph and etching on handmade wove paper' +p346530 +sg291132 +S'1988/1990' +p346531 +sg291134 +S'Her Story 7' +p346532 +sg291136 +g27 +sg291137 +S'Elizabeth Murray' +p346533 +sa(dp346534 +g291130 +S'offset color lithograph and etching on handmade wove paper' +p346535 +sg291132 +S'1988/1990' +p346536 +sg291134 +S'Her Story 8' +p346537 +sg291136 +g27 +sg291137 +S'Elizabeth Murray' +p346538 +sa(dp346539 +g291130 +S'offset color lithograph and etching on handmade wove paper' +p346540 +sg291132 +S'1988/1990' +p346541 +sg291134 +S'Her Story 9' +p346542 +sg291136 +g27 +sg291137 +S'Elizabeth Murray' +p346543 +sa(dp346544 +g291130 +S'offset color lithograph and etching on handmade wove paper' +p346545 +sg291132 +S'1988/1990' +p346546 +sg291134 +S'Her Story 10' +p346547 +sg291136 +g27 +sg291137 +S'Elizabeth Murray' +p346548 +sa(dp346549 +g291130 +S'offset color lithograph and etching on handmade wove paper' +p346550 +sg291132 +S'1988/1990' +p346551 +sg291134 +S'Her Story 11' +p346552 +sg291136 +g27 +sg291137 +S'Elizabeth Murray' +p346553 +sa(dp346554 +g291130 +S'offset color lithograph and etching on handmade wove paper' +p346555 +sg291132 +S'1988/1990' +p346556 +sg291134 +S'Her Story 12' +p346557 +sg291136 +g27 +sg291137 +S'Elizabeth Murray' +p346558 +sa(dp346559 +g291130 +S'offset color lithograph and etching on handmade wove paper' +p346560 +sg291132 +S'1988/1990' +p346561 +sg291134 +S'Her Story 13' +p346562 +sg291136 +g27 +sg291137 +S'Elizabeth Murray' +p346563 +sa(dp346564 +g291130 +S'etching, soft-ground etching, aquatint and machine work on Arches paper' +p346565 +sg291132 +S'1985' +p346566 +sg291134 +S'Safe Places' +p346567 +sg291136 +g27 +sg291137 +S'Aaron Fink' +p346568 +sa(dp346569 +g291130 +S'(author)' +p346570 +sg291132 +S'\n' +p346571 +sg291134 +S'Perhaps' +p346572 +sg291136 +g27 +sg291137 +S'Artist Information (' +p346573 +sa(dp346574 +g291130 +S'etching, soft-ground etching, and aquatint on Arches paper' +p346575 +sg291132 +S'1985' +p346576 +sg291134 +S'Perhaps a Castle' +p346577 +sg291136 +g27 +sg291137 +S'Aaron Fink' +p346578 +sa(dp346579 +g291130 +S'etching and soft-ground etching on Arches paper' +p346580 +sg291132 +S'1985' +p346581 +sg291134 +S'Fat Silence' +p346582 +sg291136 +g27 +sg291137 +S'Aaron Fink' +p346583 +sa(dp346584 +g291130 +S'etching, soft-ground etching, aquatint and machine work on Arches paper' +p346585 +sg291132 +S'1985' +p346586 +sg291134 +S'The Self-Made Man and the Moon' +p346587 +sg291136 +g27 +sg291137 +S'Aaron Fink' +p346588 +sa(dp346589 +g291130 +S'aquatint on Arches paper' +p346590 +sg291132 +S'1985' +p346591 +sg291134 +S"The Father's Room" +p346592 +sg291136 +g27 +sg291137 +S'Aaron Fink' +p346593 +sa(dp346594 +g291130 +S'etching, soft-ground etching, aquatint and machine work on Arches paper' +p346595 +sg291132 +S'1985' +p346596 +sg291134 +S'Postcards from Silence' +p346597 +sg291136 +g27 +sg291137 +S'Aaron Fink' +p346598 +sa(dp346599 +g291130 +S'etching and aquatint on Arches paper' +p346600 +sg291132 +S'1985' +p346601 +sg291134 +S'I Lifted the Lid on the Black Enameled Box...' +p346602 +sg291136 +g27 +sg291137 +S'Aaron Fink' +p346603 +sa(dp346604 +g291134 +S'Strasbourg: A Toll House' +p346605 +sg291137 +S'Wenceslaus Hollar' +p346606 +sg291130 +S'etching on laid paper' +p346607 +sg291132 +S'c. 1632' +p346608 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d88e.jpg' +p346609 +sg291136 +g27 +sa(dp346610 +g291134 +S'Rudesheim' +p346611 +sg291137 +S'Wenceslaus Hollar' +p346612 +sg291130 +S'etching on laid paper' +p346613 +sg291132 +S'c. 1632/1636' +p346614 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d88d.jpg' +p346615 +sg291136 +g27 +sa(dp346616 +g291134 +S'Gelderspach' +p346617 +sg291137 +S'Wenceslaus Hollar' +p346618 +sg291130 +S'etching on laid paper' +p346619 +sg291132 +S'c. 1632/1636' +p346620 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d88c.jpg' +p346621 +sg291136 +g27 +sa(dp346622 +g291134 +S'Schenkenschanz' +p346623 +sg291137 +S'Wenceslaus Hollar' +p346624 +sg291130 +S'etching on laid paper' +p346625 +sg291132 +S'c. 1632' +p346626 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d88b.jpg' +p346627 +sg291136 +g27 +sa(dp346628 +g291134 +S'Roerort' +p346629 +sg291137 +S'Wenceslaus Hollar' +p346630 +sg291130 +S'etching on laid paper' +p346631 +sg291132 +S'c. 1632' +p346632 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d88a.jpg' +p346633 +sg291136 +g27 +sa(dp346634 +g291134 +S'Emmerich' +p346635 +sg291137 +S'Wenceslaus Hollar' +p346636 +sg291130 +S'etching on laid paper' +p346637 +sg291132 +S'c. 1632/1635' +p346638 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d889.jpg' +p346639 +sg291136 +g27 +sa(dp346640 +g291134 +S'Kampen' +p346641 +sg291137 +S'Wenceslaus Hollar' +p346642 +sg291130 +S'etching on laid paper' +p346643 +sg291132 +S'c. 1632' +p346644 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d888.jpg' +p346645 +sg291136 +g27 +sa(dp346646 +g291134 +S'Lillo' +p346647 +sg291137 +S'Wenceslaus Hollar' +p346648 +sg291130 +S'etching on laid paper' +p346649 +sg291132 +S'c. 1632' +p346650 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d887.jpg' +p346651 +sg291136 +g27 +sa(dp346652 +g291134 +S'Title Page for "Views of the Ports of the Sea"' +p346653 +sg291137 +S'Stefano Della Bella' +p346654 +sg291130 +S'etching on laid paper' +p346655 +sg291132 +S'1647' +p346656 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7da.jpg' +p346657 +sg291136 +g27 +sa(dp346658 +g291134 +S'Red-winged Starling, Female Red-winged Starling, Black-poll Warbler, and Lesser Red-poll' +p346659 +sg291137 +S'Artist Information (' +p346660 +sg291130 +S'(artist after)' +p346661 +sg291132 +S'\n' +p346662 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fae0.jpg' +p346663 +sg291136 +g27 +sa(dp346664 +g291134 +S'Pinnated Grous, Blue-green Warbler, and Nashville Warbler' +p346665 +sg291137 +S'Artist Information (' +p346666 +sg291130 +S'(artist after)' +p346667 +sg291132 +S'\n' +p346668 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fadf.jpg' +p346669 +sg291136 +g27 +sa(dp346670 +g291134 +S'Carolina Cuckoo, Black-billed Cuckoo, Blue Yellow-backed Warbler, and Yellow Red-poll Warbler' +p346671 +sg291137 +S'Artist Information (' +p346672 +sg291130 +S'(artist after)' +p346673 +sg291132 +S'\n' +p346674 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fade.jpg' +p346675 +sg291136 +g27 +sa(dp346676 +g291134 +S'Passenger Pigeon, Blue-mountain Warbler, and Hemlock Warbler' +p346677 +sg291137 +S'Artist Information (' +p346678 +sg291130 +S'(artist after)' +p346679 +sg291132 +S'\n' +p346680 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fb/a000fb24.jpg' +p346681 +sg291136 +g27 +sa(dp346682 +g291134 +S'The Red Bellied Woodpecker (Picus Carolinus)' +p346683 +sg291137 +S'Artist Information (' +p346684 +sg291130 +S'(artist after)' +p346685 +sg291132 +S'\n' +p346686 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b391.jpg' +p346687 +sg291136 +g27 +sa(dp346688 +g291134 +S'The Tropic Bird (Phaeton aethereus)' +p346689 +sg291137 +S'Artist Information (' +p346690 +sg291130 +S'(artist after)' +p346691 +sg291132 +S'\n' +p346692 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b392.jpg' +p346693 +sg291136 +g27 +sa(dp346694 +g291134 +S'The Nuthatch (Sitta Europaea)' +p346695 +sg291137 +S'Mark Catesby' +p346696 +sg291130 +S'hand-colored engraving on laid paper' +p346697 +sg291132 +S'published 1754' +p346698 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00077/a00077e8.jpg' +p346699 +sg291136 +g27 +sa(dp346700 +g291134 +S'The Purple Martin (Hirundo purpurea)' +p346701 +sg291137 +S'Mark Catesby' +p346702 +sg291130 +S'hand-colored engraving on laid paper' +p346703 +sg291132 +S'published 1731-1743' +p346704 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007815.jpg' +p346705 +sg291136 +g27 +sa(dp346706 +g291134 +S'The Blue Heron (Ardea coerulea)' +p346707 +sg291137 +S'Mark Catesby' +p346708 +sg291130 +S'hand-colored engraving on laid paper' +p346709 +sg291132 +S'published 1731-1743' +p346710 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00077/a00077ff.jpg' +p346711 +sg291136 +g27 +sa(dp346712 +g291134 +S'The Round Crested Duck (Mergus cucullatus)' +p346713 +sg291137 +S'Mark Catesby' +p346714 +sg291130 +S'hand-colored engraving on laid paper' +p346715 +sg291132 +S'published 1731-1743' +p346716 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000782b.jpg' +p346717 +sg291136 +g27 +sa(dp346718 +g291134 +S"The Buffel's Head Duck (Anas bucephala)" +p346719 +sg291137 +S'Mark Catesby' +p346720 +sg291130 +S'hand-colored engraving on laid paper' +p346721 +sg291132 +S'published 1731-1743' +p346722 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007825.jpg' +p346723 +sg291136 +g27 +sa(dp346724 +g291134 +S'The Rock Fish (Perca venenosa)' +p346725 +sg291137 +S'Mark Catesby' +p346726 +sg291130 +S'hand-colored engraving on laid paper' +p346727 +sg291132 +S'published 1754' +p346728 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007841.jpg' +p346729 +sg291136 +g27 +sa(dp346730 +g291134 +S'The Yellow-breasted Chat' +p346731 +sg291137 +S'Mark Catesby' +p346732 +sg291130 +S'hand-colored engraving on laid paper' +p346733 +sg291132 +S'published 1754' +p346734 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007811.jpg' +p346735 +sg291136 +g27 +sa(dp346736 +g291134 +S'The Soree (Rallus Virginianus)' +p346737 +sg291137 +S'Mark Catesby' +p346738 +sg291130 +S'hand-colored engraving' +p346739 +sg291132 +S'published 1731-1743' +p346740 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007807.jpg' +p346741 +sg291136 +g27 +sa(dp346742 +g291134 +S'The Oyster-catcher (Hoematopus ostralegus)' +p346743 +sg291137 +S'Mark Catesby' +p346744 +sg291130 +S'hand-colored engraving on laid paper' +p346745 +sg291132 +S'published 1731-1743' +p346746 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000781f.jpg' +p346747 +sg291136 +g27 +sa(dp346748 +g291134 +S'The Green Lizard of Jamaica (Lacerta bullaris)' +p346749 +sg291137 +S'Mark Catesby' +p346750 +sg291130 +S'hand-colored engraving on laid paper' +p346751 +sg291132 +S'published 1731-1743' +p346752 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007880.jpg' +p346753 +sg291136 +g27 +sa(dp346754 +g291134 +S'The Lyon Lizard (Lacerta 6-lineata)' +p346755 +sg291137 +S'Mark Catesby' +p346756 +sg291130 +S'hand-colored engraving on laid paper' +p346757 +sg291132 +S'published 1731-1743' +p346758 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000787a.jpg' +p346759 +sg291136 +g27 +sa(dp346760 +g291134 +S'The Lyon Lizard (Lacerta 6-lineata)' +p346761 +sg291137 +S'Mark Catesby' +p346762 +sg291130 +S'hand-colored engraving on laid paper' +p346763 +sg291132 +S'published 1731-1743' +p346764 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000787e.jpg' +p346765 +sg291136 +g27 +sa(dp346766 +g291134 +S'The Land Frog (Rana)' +p346767 +sg291137 +S'Mark Catesby' +p346768 +sg291130 +S'hand-colored engraving on laid paper' +p346769 +sg291132 +S'published 1731-1743' +p346770 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007886.jpg' +p346771 +sg291136 +g27 +sa(dp346772 +g291134 +S'The Bahama Coney (Mus Monax)' +p346773 +sg291137 +S'Mark Catesby' +p346774 +sg291130 +S'hand-colored engraving on laid paper' +p346775 +sg291132 +S'published 1754' +p346776 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000788c.jpg' +p346777 +sg291136 +g27 +sa(dp346778 +g291134 +S'Golden Pheasant (Chrysolophus pictus)' +p346779 +sg291137 +S'British 18th Century' +p346780 +sg291130 +S'sheet: 34.3 x 28.3 cm (13 1/2 x 11 1/8 in.)' +p346781 +sg291132 +S'\nwatercolor over graphite on laid paper' +p346782 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f5c.jpg' +p346783 +sg291136 +g27 +sa(dp346784 +g291134 +S'Green Heron, Night Heron, Young Heron, and Great White Heron' +p346785 +sg291137 +S'Artist Information (' +p346786 +sg291130 +S'(artist after)' +p346787 +sg291132 +S'\n' +p346788 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fb/a000fb25.jpg' +p346789 +sg291136 +g27 +sa(dp346790 +g291134 +S'Louisiana Heron, Pied Oyster-catcher, Hooping Crane, and Long-billed Curlew' +p346791 +sg291137 +S'Artist Information (' +p346792 +sg291130 +S'(artist after)' +p346793 +sg291132 +S'\n' +p346794 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fb/a000fb28.jpg' +p346795 +sg291136 +g27 +sa(dp346796 +g291134 +S'The Swallow Tail Hawk (Falco furcatus)' +p346797 +sg291137 +S'Mark Catesby' +p346798 +sg291130 +S'hand-colored engraving on laid paper' +p346799 +sg291132 +S'published 1754' +p346800 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00077/a00077fc.jpg' +p346801 +sg291136 +g27 +sa(dp346802 +g291134 +S'The Red Winged Starling (Oriolus phoeniceus)' +p346803 +sg291137 +S'Mark Catesby' +p346804 +sg291130 +S'hand-colored engraving on laid paper' +p346805 +sg291132 +S'published 1754' +p346806 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00077/a00077f8.jpg' +p346807 +sg291136 +g27 +sa(dp346808 +g291134 +S'The Fieldfare of Carolina (Turdus migratorius)' +p346809 +sg291137 +S'Mark Catesby' +p346810 +sg291130 +S'hand-colored engraving on laid paper' +p346811 +sg291132 +S'published 1731-1743' +p346812 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00077/a00077f2.jpg' +p346813 +sg291136 +g27 +sa(dp346814 +g291134 +S'The Flamingo (Phoenicopterus ruber)' +p346815 +sg291137 +S'Mark Catesby' +p346816 +sg291130 +S'hand-colored engraving on laid paper' +p346817 +sg291132 +S'published 1731-1743' +p346818 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007805.jpg' +p346819 +sg291136 +g27 +sa(dp346820 +g291134 +S'The Hooping Crane (Ardea Americana)' +p346821 +sg291137 +S'Mark Catesby' +p346822 +sg291130 +S'hand-colored engraving on laid paper' +p346823 +sg291132 +S'published 1731-1743' +p346824 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007803.jpg' +p346825 +sg291136 +g27 +sa(dp346826 +g291134 +S'The Blue Winged Shoveler (Anas clypeata foemina)' +p346827 +sg291137 +S'Mark Catesby' +p346828 +sg291130 +S'hand-colored engraving on laid paper' +p346829 +sg291132 +S'published 1731-1743' +p346830 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007829.jpg' +p346831 +sg291136 +g27 +sa(dp346832 +g291134 +S'The Globe Fish (Tetrodon lagocephalus)' +p346833 +sg291137 +S'Mark Catesby' +p346834 +sg291130 +S'hand-colored engraving on laid paper' +p346835 +sg291132 +S'published 1731-1743' +p346836 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007859.jpg' +p346837 +sg291136 +g27 +sa(dp346838 +g291134 +S'The Vanelloe (Epidendrum Vanilla)' +p346839 +sg291137 +S'Mark Catesby' +p346840 +sg291130 +S'hand-colored engraving on laid paper' +p346841 +sg291132 +S'published 1731-1743' +p346842 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007898.jpg' +p346843 +sg291136 +g27 +sa(dp346844 +g291134 +S'The Laughing Gull (Larus articilla)' +p346845 +sg291137 +S'Mark Catesby' +p346846 +sg291130 +S'hand-colored engraving on laid paper' +p346847 +sg291132 +S'published 1731-1743' +p346848 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007823.jpg' +p346849 +sg291136 +g27 +sa(dp346850 +g291134 +S'Red Frangipanni (Plumeria rubra)' +p346851 +sg291137 +S'Mark Catesby' +p346852 +sg291130 +S'hand-colored engraving on laid paper' +p346853 +sg291132 +S'published 1731-1743' +p346854 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000788f.jpg' +p346855 +sg291136 +g27 +sa(dp346856 +g291134 +S"Cat's Claw (Mimosa circinalis)" +p346857 +sg291137 +S'Mark Catesby' +p346858 +sg291130 +S'hand-colored engraving on laid paper' +p346859 +sg291132 +S'published 1731-1743' +p346860 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007891.jpg' +p346861 +sg291136 +g27 +sa(dp346862 +g291134 +S'Cross-vine (Bignonia capreolata)' +p346863 +sg291137 +S'Mark Catesby' +p346864 +sg291130 +S'hand-colored engraving on laid paper' +p346865 +sg291132 +S'published 1754' +p346866 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000788e.jpg' +p346867 +sg291136 +g27 +sa(dp346868 +g291134 +S'The Lane-snapper (Sparus synagris)' +p346869 +sg291137 +S'Mark Catesby' +p346870 +sg291130 +S'hand-colored engraving on laid paper' +p346871 +sg291132 +S'published 1731-1743' +p346872 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007831.jpg' +p346873 +sg291136 +g27 +sa(dp346874 +g291134 +S'The Land-crab (Cancer ruricola)' +p346875 +sg291137 +S'Mark Catesby' +p346876 +sg291130 +S'hand-colored engraving on laid paper' +p346877 +sg291132 +S'published 1731-1743' +p346878 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000785f.jpg' +p346879 +sg291136 +g27 +sa(dp346880 +g291134 +S'The Hawks-bill Turtle (Testudo caretta)' +p346881 +sg291137 +S'Mark Catesby' +p346882 +sg291130 +S'hand-colored engraving on laid paper' +p346883 +sg291132 +S'published 1731-1743' +p346884 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000785d.jpg' +p346885 +sg291136 +g27 +sa(dp346886 +g291134 +S'The Hog-nose Snake (Boa contortrix)' +p346887 +sg291137 +S'Mark Catesby' +p346888 +sg291130 +S'hand-colored engraving on laid paper' +p346889 +sg291132 +S'published 1731-1743' +p346890 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007882.jpg' +p346891 +sg291136 +g27 +sa(dp346892 +g291134 +S'Centipede (Scolopendra morsitans)' +p346893 +sg291137 +S'Mark Catesby' +p346894 +sg291130 +S'hand-colored engraving on laid paper' +p346895 +sg291132 +S'published 1731-1743' +p346896 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007893.jpg' +p346897 +sg291136 +g27 +sa(dp346898 +g291134 +S'Argus Pheasant (Argusianus Argus)' +p346899 +sg291137 +S'W. Hart' +p346900 +sg291130 +S'hand-colored lithograph on wove paper' +p346901 +sg291132 +S'published 1850-1883' +p346902 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00081/a00081d9.jpg' +p346903 +sg291136 +g27 +sa(dp346904 +g291134 +S'Rufous-breasted Bamboo Partridge (Bambusicola Hyperythra)' +p346905 +sg291137 +S'Artist Information (' +p346906 +sg291130 +S'(artist)' +p346907 +sg291132 +S'\n' +p346908 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00081/a00081d3.jpg' +p346909 +sg291136 +g27 +sa(dp346910 +g291134 +S'Hydrochelidon nigra' +p346911 +sg291137 +S'Artist Information (' +p346912 +sg291130 +S'(artist)' +p346913 +sg291132 +S'\n' +p346914 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00081/a00081d7.jpg' +p346915 +sg291136 +g27 +sa(dp346916 +g291134 +S'Caprimulgus Ruficollis' +p346917 +sg291137 +S'Artist Information (' +p346918 +sg291130 +S'(artist)' +p346919 +sg291132 +S'\n' +p346920 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00081/a00081d6.jpg' +p346921 +sg291136 +g27 +sa(dp346922 +g291134 +S'Lampornis prevosti' +p346923 +sg291137 +S'Artist Information (' +p346924 +sg291130 +S'(artist)' +p346925 +sg291132 +S'\n' +p346926 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00081/a00081d5.jpg' +p346927 +sg291136 +g27 +sa(dp346928 +g291134 +S'Great Black Woodpecker (Dryocopus martius)' +p346929 +sg291137 +S'Artist Information (' +p346930 +sg291130 +S'(artist)' +p346931 +sg291132 +S'\n' +p346932 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00081/a00081d8.jpg' +p346933 +sg291136 +g27 +sa(dp346934 +g291134 +S'Lesbia Amaryllis' +p346935 +sg291137 +S'Artist Information (' +p346936 +sg291130 +S'(artist)' +p346937 +sg291132 +S'\n' +p346938 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00081/a00081da.jpg' +p346939 +sg291136 +g27 +sa(dp346940 +g291134 +S'Calothorax heliodori' +p346941 +sg291137 +S'Artist Information (' +p346942 +sg291130 +S'(artist)' +p346943 +sg291132 +S'\n' +p346944 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00081/a00081d4.jpg' +p346945 +sg291136 +g27 +sa(dp346946 +g291134 +S'Osculant Toucan (Ramphastos osculans)' +p346947 +sg291137 +S'Artist Information (' +p346948 +sg291130 +S'(artist)' +p346949 +sg291132 +S'\n' +p346950 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00081/a00081d2.jpg' +p346951 +sg291136 +g27 +sa(dp346952 +g291134 +S'Bird of Paradise (Paradisea apoda)' +p346953 +sg291137 +S'Artist Information (' +p346954 +sg291130 +S'(artist)' +p346955 +sg291132 +S'\n' +p346956 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00081/a00081dc.jpg' +p346957 +sg291136 +g27 +sa(dp346958 +g291134 +S'White Headed Eagle (Haliaetus leucocephalus)' +p346959 +sg291137 +S'Edward Lear' +p346960 +sg291130 +S'hand-colored lithograph on wove paper' +p346961 +sg291132 +S'published 1832-37' +p346962 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00081/a00081de.jpg' +p346963 +sg291136 +g27 +sa(dp346964 +g291134 +S'The Crested Flycatcher (Muscicapa cristata)' +p346965 +sg291137 +S'Mark Catesby' +p346966 +sg291130 +S'hand-colored engraving on laid paper' +p346967 +sg291132 +S'published 1754' +p346968 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000780d.jpg' +p346969 +sg291136 +g27 +sa(dp346970 +g291134 +S'The Yellow Throated Creeper' +p346971 +sg291137 +S'Mark Catesby' +p346972 +sg291130 +S'hand-colored engraving on laid paper' +p346973 +sg291132 +S'published 1754' +p346974 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007817.jpg' +p346975 +sg291136 +g27 +sa(dp346976 +g291134 +S'The Spotted Ribbon Snake (Coluber nebulosus?)' +p346977 +sg291137 +S'Mark Catesby' +p346978 +sg291130 +S'hand-colored engraving on laid paper' +p346979 +sg291132 +S'published 1731-1743' +p346980 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000784f.jpg' +p346981 +sg291136 +g27 +sa(dp346982 +g291134 +S'The Coach-whip Snake (Coluber flagellum)' +p346983 +sg291137 +S'Mark Catesby' +p346984 +sg291130 +S'hand-colored engraving on laid paper' +p346985 +sg291132 +S'published 1731-1743' +p346986 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000787c.jpg' +p346987 +sg291136 +g27 +sa(dp346988 +g291134 +S'The Hog-nose Snake (Boa contortrix)' +p346989 +sg291137 +S'Mark Catesby' +p346990 +sg291130 +S'hand-colored engraving on laid paper' +p346991 +sg291132 +S'published 1731-1743' +p346992 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007872.jpg' +p346993 +sg291136 +g27 +sa(dp346994 +g291134 +S'The Glass Snake (Anguis ventralis)' +p346995 +sg291137 +S'Mark Catesby' +p346996 +sg291130 +S'hand-colored engraving on laid paper' +p346997 +sg291132 +S'published 1731-1743' +p346998 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000786d.jpg' +p346999 +sg291136 +g27 +sa(dp347000 +g291134 +S'The Pole Cat (Viverra putorius)' +p347001 +sg291137 +S'Mark Catesby' +p347002 +sg291130 +S'hand-colored engraving on laid paper' +p347003 +sg291132 +S'published 1731-1743' +p347004 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007884.jpg' +p347005 +sg291136 +g27 +sa(dp347006 +g291134 +S'The Hawks-bill Turtle (Testudo caretta)' +p347007 +sg291137 +S'Mark Catesby' +p347008 +sg291130 +S'hand-colored engraving on laid paper' +p347009 +sg291132 +S'published 1731-1743' +p347010 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007855.jpg' +p347011 +sg291136 +g27 +sa(dp347012 +g291134 +S'The Yellow Titmouse (Motacilla trochilus)' +p347013 +sg291137 +S'Mark Catesby' +p347014 +sg291130 +S'hand-colored engraving on laid paper' +p347015 +sg291132 +S'published 1754' +p347016 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000780f.jpg' +p347017 +sg291136 +g27 +sa(dp347018 +g291134 +S'The Blue Winged Shoveler (Anas clypeata foemina)' +p347019 +sg291137 +S'Mark Catesby' +p347020 +sg291130 +S'hand-colored engraving on laid paper' +p347021 +sg291132 +S'published 1754' +p347022 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007827.jpg' +p347023 +sg291136 +g27 +sa(dp347024 +g291134 +S'The Mangrove Snapper (Labrus griseus)' +p347025 +sg291137 +S'Mark Catesby' +p347026 +sg291130 +S'hand-colored engraving on laid paper' +p347027 +sg291132 +S'published 1754' +p347028 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007847.jpg' +p347029 +sg291136 +g27 +sa(dp347030 +g291134 +S'The Porgy (Sparus chrysops)' +p347031 +sg291137 +S'Mark Catesby' +p347032 +sg291130 +S'hand-colored engraving on laid paper' +p347033 +sg291132 +S'published 1754' +p347034 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007845.jpg' +p347035 +sg291136 +g27 +sa(dp347036 +g291134 +S'The Muray (Muraena helena)' +p347037 +sg291137 +S'Mark Catesby' +p347038 +sg291130 +S'hand-colored engraving on laid paper' +p347039 +sg291132 +S'published 1754' +p347040 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000784b.jpg' +p347041 +sg291136 +g27 +sa(dp347042 +g291134 +S'The Black Muray (Muraenae helenae varietas)' +p347043 +sg291137 +S'Mark Catesby' +p347044 +sg291130 +S'hand-colored engraving on laid paper' +p347045 +sg291132 +S'published 1754' +p347046 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000783d.jpg' +p347047 +sg291136 +g27 +sa(dp347048 +g291134 +S'The Cat Fish (Silurus catus)' +p347049 +sg291137 +S'Mark Catesby' +p347050 +sg291130 +S'hand-colored engraving on laid paper' +p347051 +sg291132 +S'published 1754' +p347052 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000783f.jpg' +p347053 +sg291136 +g27 +sa(dp347054 +g291134 +S'The Ribbon Snake (Coluber saurita)' +p347055 +sg291137 +S'Mark Catesby' +p347056 +sg291130 +S'hand-colored engraving on laid paper' +p347057 +sg291132 +S'published 1731-1743' +p347058 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000785b.jpg' +p347059 +sg291136 +g27 +sa(dp347060 +g291134 +S'The Ribbon Snake (Coluber saurita)' +p347061 +sg291137 +S'Mark Catesby' +p347062 +sg291130 +S'hand-colored engraving on laid paper' +p347063 +sg291132 +S'published 1731-1743' +p347064 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007853.jpg' +p347065 +sg291136 +g27 +sa(dp347066 +g291134 +S'The Ribbon Snake (Coluber saurita)' +p347067 +sg291137 +S'Mark Catesby' +p347068 +sg291130 +S'hand-colored engraving on laid paper' +p347069 +sg291132 +S'published 1731-1743' +p347070 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007851.jpg' +p347071 +sg291136 +g27 +sa(dp347072 +g291134 +S'The Barracuda (Esox barracuda)' +p347073 +sg291137 +S'Mark Catesby' +p347074 +sg291130 +S'hand-colored engraving on laid paper' +p347075 +sg291132 +S'published 1754' +p347076 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007849.jpg' +p347077 +sg291136 +g27 +sa(dp347078 +g291134 +S'The Croker (Perca undulata)' +p347079 +sg291137 +S'Mark Catesby' +p347080 +sg291130 +S'hand-colored engraving on laid paper' +p347081 +sg291132 +S'published 1731-1743' +p347082 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007843.jpg' +p347083 +sg291136 +g27 +sa(dp347084 +g291134 +S'The Pilchard (Argentina carolina)' +p347085 +sg291137 +S'Mark Catesby' +p347086 +sg291130 +S'hand-colored engraving on laid paper' +p347087 +sg291132 +S'published 1731-1743' +p347088 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007837.jpg' +p347089 +sg291136 +g27 +sa(dp347090 +g291134 +S'The Sucking Fish (Echeneis naucratis)' +p347091 +sg291137 +S'Mark Catesby' +p347092 +sg291130 +S'hand-colored engraving on laid paper' +p347093 +sg291132 +S'published 1731-1743' +p347094 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007839.jpg' +p347095 +sg291136 +g27 +sa(dp347096 +g291134 +S'The Sole (Pleuronectes lunatus)' +p347097 +sg291137 +S'Mark Catesby' +p347098 +sg291130 +S'hand-colored engraving on wove paper' +p347099 +sg291132 +S'published 1731-1743' +p347100 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007857.jpg' +p347101 +sg291136 +g27 +sa(dp347102 +g291134 +S'Centipede (Scolopendra morsitans)' +p347103 +sg291137 +S'Mark Catesby' +p347104 +sg291130 +S'hand-colored engraving on laid paper' +p347105 +sg291132 +S'published 1731-1743' +p347106 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007895.jpg' +p347107 +sg291136 +g27 +sa(dp347108 +g291134 +S'The Ground Dove (Columba passerina)' +p347109 +sg291137 +S'Mark Catesby' +p347110 +sg291130 +S'hand-colored engraving on laid paper' +p347111 +sg291132 +S'published 1731-1743' +p347112 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00077/a00077f4.jpg' +p347113 +sg291136 +g27 +sa(dp347114 +g291134 +S'The Towhe Bird (Fringilla erythrophthalma)' +p347115 +sg291137 +S'Mark Catesby' +p347116 +sg291130 +S'hand-colored engraving on laid paper' +p347117 +sg291132 +S'published 1754' +p347118 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00077/a00077f0.jpg' +p347119 +sg291136 +g27 +sa(dp347120 +g291134 +S'The Little Brown Flycatcher' +p347121 +sg291137 +S'Mark Catesby' +p347122 +sg291130 +S'hand-colored engraving on laid paper' +p347123 +sg291132 +S'published 1731-1743' +p347124 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000780b.jpg' +p347125 +sg291136 +g27 +sa(dp347126 +g291134 +S'The Finch Creeper (Parus americanus)' +p347127 +sg291137 +S'Mark Catesby' +p347128 +sg291130 +S'hand-colored engraving on laid paper' +p347129 +sg291132 +S'published 1731-1743' +p347130 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007809.jpg' +p347131 +sg291136 +g27 +sa(dp347132 +g291134 +S'The Bald Eagle (Falco leucocephalus)' +p347133 +sg291137 +S'Artist Information (' +p347134 +sg291130 +S'(artist after)' +p347135 +sg291132 +S'\n' +p347136 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b38e.jpg' +p347137 +sg291136 +g27 +sa(dp347138 +g291134 +S'The Muray (Muraena helena)' +p347139 +sg291137 +S'Mark Catesby' +p347140 +sg291130 +S'hand-colored engraving on laid paper' +p347141 +sg291132 +S'published 1731-1743' +p347142 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000784d.jpg' +p347143 +sg291136 +g27 +sa(dp347144 +g291134 +S'The Grey Fox Squirrel (Sciurus cinereus)' +p347145 +sg291137 +S'Mark Catesby' +p347146 +sg291130 +S'hand-colored engraving on laid paper' +p347147 +sg291132 +S'published 1731-1743' +p347148 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000788a.jpg' +p347149 +sg291136 +g27 +sa(dp347150 +g291134 +S'The Red Legged Thrush (Turdus plumbeus)' +p347151 +sg291137 +S'Mark Catesby' +p347152 +sg291130 +S'hand-colored engraving on laid paper' +p347153 +sg291132 +S'published 1731-1743' +p347154 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00077/a00077ea.jpg' +p347155 +sg291136 +g27 +sa(dp347156 +g291134 +S'The Little Brown Duck (Anas rustica)' +p347157 +sg291137 +S'Mark Catesby' +p347158 +sg291130 +S'hand-colored engraving on laid paper' +p347159 +sg291132 +S'published 1754' +p347160 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a0007819.jpg' +p347161 +sg291136 +g27 +sa(dp347162 +g291134 +S'The Fishing Hawk (Falco haliaetus)' +p347163 +sg291137 +S'Mark Catesby' +p347164 +sg291130 +S'hand-colored engraving on laid paper' +p347165 +sg291132 +S'published 1754' +p347166 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00077/a00077fd.jpg' +p347167 +sg291136 +g27 +sa(dp347168 +g291134 +S'The Small Bittern (Ardea virescens)' +p347169 +sg291137 +S'Mark Catesby' +p347170 +sg291130 +S'hand-colored engraving on laid paper' +p347171 +sg291132 +S'published 1754' +p347172 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000781d.jpg' +p347173 +sg291136 +g27 +sa(dp347174 +g291134 +S'The Wood Pelican (Tantalus Loculator)' +p347175 +sg291137 +S'Mark Catesby' +p347176 +sg291130 +S'hand-colored engraving on laid paper' +p347177 +sg291132 +S'published 1731-1743' +p347178 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000782f.jpg' +p347179 +sg291136 +g27 +sa(dp347180 +g291134 +S'The Viper-mouth (Silurus cataphractus)' +p347181 +sg291137 +S'Mark Catesby' +p347182 +sg291130 +S'hand-colored engraving on laid paper' +p347183 +sg291132 +S'published 1731-1743' +p347184 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000789c.jpg' +p347185 +sg291136 +g27 +sa(dp347186 +g291134 +S'The Rice-bird (Emberiza oryzivora)' +p347187 +sg291137 +S'Mark Catesby' +p347188 +sg291130 +S'hand-colored engraving on laid paper' +p347189 +sg291132 +S'published 1731-1743' +p347190 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000789a.jpg' +p347191 +sg291136 +g27 +sa(dp347192 +g291134 +S'Trichoparadisea Gulielmi' +p347193 +sg291137 +S'W. Hart' +p347194 +sg291130 +S'hand-colored lithograph on wove paper' +p347195 +sg291132 +S'published 1875-1888' +p347196 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00081/a00081db.jpg' +p347197 +sg291136 +g27 +sa(dp347198 +g291134 +S'Haemanthus' +p347199 +sg291137 +S'Artist Information (' +p347200 +sg291130 +S'(artist)' +p347201 +sg291132 +S'\n' +p347202 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b3/a000b380.jpg' +p347203 +sg291136 +g27 +sa(dp347204 +g291134 +S'Passenger Pigeon, Blue-mountain Warbler, and Hemlock Warbler' +p347205 +sg291137 +S'Artist Information (' +p347206 +sg291130 +S'(artist after)' +p347207 +sg291132 +S'\n' +p347208 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fb/a000fb26.jpg' +p347209 +sg291136 +g27 +sa(dp347210 +g291134 +S"Swallow-tailed Flycatcher, Arkansas Flycatcher, Say's Flycatcher, and Female Golden-crested Wren" +p347211 +sg291137 +S'Artist Information (' +p347212 +sg291130 +S'(artist after)' +p347213 +sg291132 +S'\n' +p347214 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fadc.jpg' +p347215 +sg291136 +g27 +sa(dp347216 +g291134 +S'Fork-tailed Flycatcher, Rocky Mountain Anteater, and Female Golden-winged Warbler' +p347217 +sg291137 +S'Artist Information (' +p347218 +sg291130 +S'(artist after)' +p347219 +sg291132 +S'\n' +p347220 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fadb.jpg' +p347221 +sg291136 +g27 +sa(dp347222 +g291134 +S'Young Yellow-bellied Woodpeckers and Band-tailed Pigeon' +p347223 +sg291137 +S'Artist Information (' +p347224 +sg291130 +S'(artist after)' +p347225 +sg291132 +S'\n' +p347226 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fada.jpg' +p347227 +sg291136 +g27 +sa(dp347228 +g291134 +S'Yellow-headed Blackbird, Female Blackbird, and Female Cape May Warbler' +p347229 +sg291137 +S'Artist Information (' +p347230 +sg291130 +S'(artist after)' +p347231 +sg291132 +S'\n' +p347232 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fa/a000fad9.jpg' +p347233 +sg291136 +g27 +sa(dp347234 +g291134 +S'Wood Ibis, Scarlet Ibis, Flamingo, and White Ibis' +p347235 +sg291137 +S'Artist Information (' +p347236 +sg291130 +S'(artist after)' +p347237 +sg291132 +S'\n' +p347238 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000fb/a000fb27.jpg' +p347239 +sg291136 +g27 +sa(dp347240 +g291134 +S'Self-Portrait' +p347241 +sg291137 +S'Claude Mellan' +p347242 +sg291130 +S'engraving on laid paper' +p347243 +sg291132 +S'1635' +p347244 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a000678b.jpg' +p347245 +sg291136 +g27 +sa(dp347246 +g291134 +S'Self-Portrait' +p347247 +sg291137 +S'Claude Mellan' +p347248 +sg291130 +S'engraving on laid paper' +p347249 +sg291132 +S'1635' +p347250 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006789.jpg' +p347251 +sg291136 +g27 +sa(dp347252 +g291134 +S'Nicolas-Claude Fabri de Peiresc' +p347253 +sg291137 +S'Claude Mellan' +p347254 +sg291130 +S'engraving on laid paper' +p347255 +sg291132 +S'1637' +p347256 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a000679c.jpg' +p347257 +sg291136 +g27 +sa(dp347258 +g291134 +S'Nicolas-Claude Fabri de Peiresc' +p347259 +sg291137 +S'Artist Information (' +p347260 +sg291130 +S'French, 1598 - 1688' +p347261 +sg291132 +S'(artist after)' +p347262 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a00089ef.jpg' +p347263 +sg291136 +g27 +sa(dp347264 +g291134 +S'Nicolas-Claude Fabri de Peiresc' +p347265 +sg291137 +S'Artist Information (' +p347266 +sg291130 +S'French, 1598 - 1688' +p347267 +sg291132 +S'(artist after)' +p347268 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a00089f0.jpg' +p347269 +sg291136 +g27 +sa(dp347270 +g291134 +S'Girolamo Frescobaldi' +p347271 +sg291137 +S'Claude Mellan' +p347272 +sg291130 +S'engraving on laid paper' +p347273 +sg291132 +S'1619' +p347274 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a00089ed.jpg' +p347275 +sg291136 +g27 +sa(dp347276 +g291134 +S'Urban VIII' +p347277 +sg291137 +S'Artist Information (' +p347278 +sg291130 +S'(artist after)' +p347279 +sg291132 +S'\n' +p347280 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067b2.jpg' +p347281 +sg291136 +g27 +sa(dp347282 +g291134 +S'Virginia da Vezzo' +p347283 +sg291137 +S'Claude Mellan' +p347284 +sg291130 +S'engraving on laid paper' +p347285 +sg291132 +S'1626' +p347286 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067a3.jpg' +p347287 +sg291136 +g27 +sa(dp347288 +g291134 +S'Anna Maria Vaiani' +p347289 +sg291137 +S'Claude Mellan' +p347290 +sg291130 +S'engraving on laid paper' +p347291 +sg291132 +S'unknown date\n' +p347292 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067a1.jpg' +p347293 +sg291136 +g27 +sa(dp347294 +g291134 +S'Maddalena Corvina' +p347295 +sg291137 +S'Claude Mellan' +p347296 +sg291130 +S'engraving on laid paper' +p347297 +sg291132 +S'1636' +p347298 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067a2.jpg' +p347299 +sg291136 +g27 +sa(dp347300 +g291134 +S'Charles I de Crequi, Duke of Lesdigui\xc3\xa8res' +p347301 +sg291137 +S'Claude Mellan' +p347302 +sg291130 +S'engraving on laid paper' +p347303 +sg291132 +S'1633' +p347304 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067af.jpg' +p347305 +sg291136 +g27 +sa(dp347306 +g291134 +S'Alphonse du Plessis Richelieu, Cardinal of Lyon' +p347307 +sg291137 +S'Claude Mellan' +p347308 +sg291130 +S'engraving on laid paper' +p347309 +sg291132 +S'1636' +p347310 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a000679d.jpg' +p347311 +sg291136 +g27 +sa(dp347312 +g291134 +S'Fran\xc3\xa7ois Le Clerc Du Tremblay, Known as P\xc3\xa8re Joseph' +p347313 +sg291137 +S'Claude Mellan' +p347314 +sg291130 +S'engraving on laid paper; laid down' +p347315 +sg291132 +S'in or after 1638' +p347316 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006794.jpg' +p347317 +sg291136 +g27 +sa(dp347318 +g291134 +S'Guido Bentivoglio' +p347319 +sg291137 +S'Claude Mellan' +p347320 +sg291130 +S'engraving on laid paper' +p347321 +sg291132 +S'unknown date\n' +p347322 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a000678c.jpg' +p347323 +sg291136 +g27 +sa(dp347324 +g291134 +S'Gabriel Naude' +p347325 +sg291137 +S'Claude Mellan' +p347326 +sg291130 +S'engraving on laid paper' +p347327 +sg291132 +S'unknown date\n' +p347328 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a000679a.jpg' +p347329 +sg291136 +g27 +sa(dp347330 +g291134 +S'Henri II, Duke of Montmorency' +p347331 +sg291137 +S'Claude Mellan' +p347332 +sg291130 +S'engraving on laid paper' +p347333 +sg291132 +S'unknown date\n' +p347334 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006798.jpg' +p347335 +sg291136 +g27 +sa(dp347336 +g291134 +S'Jean-Louis Guez de Balzac' +p347337 +sg291137 +S'Claude Mellan' +p347338 +sg291130 +S'engraving on laid paper' +p347339 +sg291132 +S'probably 1637' +p347340 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006790.jpg' +p347341 +sg291136 +g27 +sa(dp347342 +g291134 +S'Jean-Louis Guez de Balzac' +p347343 +sg291137 +S'Claude Mellan' +p347344 +sg291130 +S'engraving on laid paper' +p347345 +sg291132 +S'probably 1637' +p347346 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a000678f.jpg' +p347347 +sg291136 +g27 +sa(dp347348 +g291134 +S'Charles de Condren' +p347349 +sg291137 +S'Claude Mellan' +p347350 +sg291130 +S'engraving on laid paper' +p347351 +sg291132 +S'unknown date\n' +p347352 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a000678e.jpg' +p347353 +sg291136 +g27 +sa(dp347354 +g291134 +S'Claude de Lingendes' +p347355 +sg291137 +S'Claude Mellan' +p347356 +sg291130 +S'engraving on laid paper' +p347357 +sg291132 +S'1661' +p347358 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006799.jpg' +p347359 +sg291136 +g27 +sa(dp347360 +g291134 +S'Jean Pierre Camus' +p347361 +sg291137 +S'Claude Mellan' +p347362 +sg291130 +S'engraving on laid paper' +p347363 +sg291132 +S'unknown date\n' +p347364 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006793.jpg' +p347365 +sg291136 +g27 +sa(dp347366 +g291134 +S'Victor Le Bouthillier' +p347367 +sg291137 +S'Claude Mellan' +p347368 +sg291130 +S'engraving on laid paper' +p347369 +sg291132 +S'unknown date\n' +p347370 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006792.jpg' +p347371 +sg291136 +g27 +sa(dp347372 +g291134 +S'Leonardos Philaras' +p347373 +sg291137 +S'Claude Mellan' +p347374 +sg291130 +S'engraving on laid paper' +p347375 +sg291132 +S'unknown date\n' +p347376 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a000679f.jpg' +p347377 +sg291136 +g27 +sa(dp347378 +g291134 +S'Raffaello Menicucci' +p347379 +sg291137 +S'Claude Mellan' +p347380 +sg291130 +S'engraving on laid paper' +p347381 +sg291132 +S'unknown date\n' +p347382 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a00089ee.jpg' +p347383 +sg291136 +g27 +sa(dp347384 +g291134 +S'Raffaello Menicucci' +p347385 +sg291137 +S'Claude Mellan' +p347386 +sg291130 +S'engraving on laid paper' +p347387 +sg291132 +S'unknown date\n' +p347388 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006797.jpg' +p347389 +sg291136 +g27 +sa(dp347390 +g291134 +S'Raffaello Menicucci' +p347391 +sg291137 +S'Claude Mellan' +p347392 +sg291130 +S'engraving on laid paper' +p347393 +sg291132 +S'unknown date\n' +p347394 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006796.jpg' +p347395 +sg291136 +g27 +sa(dp347396 +g291134 +S'Raffaello Menicucci' +p347397 +sg291137 +S'Claude Mellan' +p347398 +sg291130 +S'engraving on laid paper' +p347399 +sg291132 +S'unknown date\n' +p347400 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006795.jpg' +p347401 +sg291136 +g27 +sa(dp347402 +g291134 +S'Louis Berryer' +p347403 +sg291137 +S'Claude Mellan' +p347404 +sg291130 +S'engraving on laid paper' +p347405 +sg291132 +S'1667' +p347406 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a000678d.jpg' +p347407 +sg291136 +g27 +sa(dp347408 +g291134 +S'Henriette Anne of England, Duchess of Orl\xc3\xa9ans' +p347409 +sg291137 +S'Claude Mellan' +p347410 +sg291130 +S'engraving on laid paper' +p347411 +sg291132 +S'unknown date\n' +p347412 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067b0.jpg' +p347413 +sg291136 +g27 +sa(dp347414 +g291134 +S'Abel Servien' +p347415 +sg291137 +S'Claude Mellan' +p347416 +sg291130 +S'engraving on laid paper' +p347417 +sg291132 +S'in or after 1659' +p347418 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067b1.jpg' +p347419 +sg291136 +g27 +sa(dp347420 +g291134 +S'Philippe Thibaud' +p347421 +sg291137 +S'Claude Mellan' +p347422 +sg291130 +S'engraving on laid paper' +p347423 +sg291132 +S'1638' +p347424 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067a0.jpg' +p347425 +sg291136 +g27 +sa(dp347426 +g291134 +S'Claude de Marolles' +p347427 +sg291137 +S'Claude Mellan' +p347428 +sg291130 +S'engraving on laid paper' +p347429 +sg291132 +S'1633' +p347430 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067ae.jpg' +p347431 +sg291136 +g27 +sa(dp347432 +g291134 +S'Nicolas Coeffeteau' +p347433 +sg291137 +S'Artist Information (' +p347434 +sg291130 +S'(artist after)' +p347435 +sg291132 +S'\n' +p347436 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067ad.jpg' +p347437 +sg291136 +g27 +sa(dp347438 +g291134 +S'Jean-Fran\xc3\xa7ois Paul de Gondi, Cardinal of Retz' +p347439 +sg291137 +S'Claude Mellan' +p347440 +sg291130 +S'engraving on laid paper' +p347441 +sg291132 +S'unknown date\n' +p347442 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067aa.jpg' +p347443 +sg291136 +g27 +sa(dp347444 +g291134 +S'Armand Jean du Plessis, Cardinal Richelieu' +p347445 +sg291137 +S'Claude Mellan' +p347446 +sg291130 +S'engraving on laid paper' +p347447 +sg291132 +S'unknown date\n' +p347448 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008ba4.jpg' +p347449 +sg291136 +g27 +sa(dp347450 +g291134 +S'Henri-Louis Habert de Montmor' +p347451 +sg291137 +S'Claude Mellan' +p347452 +sg291130 +S'engraving on laid paper' +p347453 +sg291132 +S'1640' +p347454 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067a7.jpg' +p347455 +sg291136 +g27 +sa(dp347456 +g291134 +S'Mathieu Mole' +p347457 +sg291137 +S'Claude Mellan' +p347458 +sg291130 +S'engraving on laid paper' +p347459 +sg291132 +S'in or after 1656' +p347460 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067b6.jpg' +p347461 +sg291136 +g27 +sa(dp347462 +g291134 +S'Claude de Rebe' +p347463 +sg291137 +S'Claude Mellan' +p347464 +sg291130 +S'engraving on laid paper' +p347465 +sg291132 +S'unknown date\n' +p347466 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067b4.jpg' +p347467 +sg291136 +g27 +sa(dp347468 +g291134 +S'Alphonse III Delbene, Bishop of Orl\xc3\xa9ans' +p347469 +sg291137 +S'Claude Mellan' +p347470 +sg291130 +S'engraving on laid paper' +p347471 +sg291132 +S'unknown date\n' +p347472 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067ab.jpg' +p347473 +sg291136 +g27 +sa(dp347474 +g291134 +S'Pierre Seguier' +p347475 +sg291137 +S'Claude Mellan' +p347476 +sg291130 +S'engraving on laid paper' +p347477 +sg291132 +S'1639' +p347478 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067b5.jpg' +p347479 +sg291136 +g27 +sa(dp347480 +g291134 +S'Vincenzo Giustiniani' +p347481 +sg291137 +S'Claude Mellan' +p347482 +sg291130 +S'engraving on laid paper' +p347483 +sg291132 +S'1631' +p347484 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067ac.jpg' +p347485 +sg291136 +g27 +sa(dp347486 +g291134 +S'Omer Talon' +p347487 +sg291137 +S'Claude Mellan' +p347488 +sg291130 +S'engraving on laid paper' +p347489 +sg291132 +S'unknown date\n' +p347490 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067b3.jpg' +p347491 +sg291136 +g27 +sa(dp347492 +g291134 +S'Anne of Austria' +p347493 +sg291137 +S'Claude Mellan' +p347494 +sg291130 +S'engraving on laid paper' +p347495 +sg291132 +S'unknown date\n' +p347496 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067ba.jpg' +p347497 +sg291136 +g27 +sa(dp347498 +g291134 +S'Henri de Mesmes' +p347499 +sg291137 +S'Claude Mellan' +p347500 +sg291130 +S'engraving on laid paper' +p347501 +sg291132 +S'unknown date\n' +p347502 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067b7.jpg' +p347503 +sg291136 +g27 +sa(dp347504 +g291134 +S'Fran\xc3\xa7ois-Th\xc3\xa9odore de Nesmond' +p347505 +sg291137 +S'Claude Mellan' +p347506 +sg291130 +S'engraving on laid paper' +p347507 +sg291132 +S'unknown date\n' +p347508 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067b8.jpg' +p347509 +sg291136 +g27 +sa(dp347510 +g291134 +S'Ren\xc3\xa9 de Longueil' +p347511 +sg291137 +S'Claude Mellan' +p347512 +sg291130 +S'engraving on laid paper' +p347513 +sg291132 +S'unknown date\n' +p347514 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067a9.jpg' +p347515 +sg291136 +g27 +sa(dp347516 +g291134 +S'Cardinal Jules Mazarin' +p347517 +sg291137 +S'Claude Mellan' +p347518 +sg291130 +S'engraving on laid paper' +p347519 +sg291132 +S'unknown date\n' +p347520 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067a6.jpg' +p347521 +sg291136 +g27 +sa(dp347522 +g291134 +S'Louis XIV' +p347523 +sg291137 +S'Claude Mellan' +p347524 +sg291130 +S'engraving on laid paper' +p347525 +sg291132 +S'1667' +p347526 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a000679e.jpg' +p347527 +sg291136 +g27 +sa(dp347528 +g291134 +S'Allegory in Honor of Anne of Austria' +p347529 +sg291137 +S'Claude Mellan' +p347530 +sg291130 +S'engraving on laid paper' +p347531 +sg291132 +S'unknown date\n' +p347532 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067bb.jpg' +p347533 +sg291136 +g27 +sa(dp347534 +g291134 +S'Henri de Savoie, Duc de Nemours' +p347535 +sg291137 +S'Claude Mellan' +p347536 +sg291130 +S'engraving on laid paper' +p347537 +sg291132 +S'unknown date\n' +p347538 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067b9.jpg' +p347539 +sg291136 +g27 +sa(dp347540 +g291134 +S'Armand de Bourbon, Prince de Condi' +p347541 +sg291137 +S'Claude Mellan' +p347542 +sg291130 +S'engraving on laid paper' +p347543 +sg291132 +S'unknown date\n' +p347544 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067a5.jpg' +p347545 +sg291136 +g27 +sa(dp347546 +g291134 +S'Armand de Bourbon, Prince de Condi' +p347547 +sg291137 +S'Claude Mellan' +p347548 +sg291130 +S'engraving on laid paper' +p347549 +sg291132 +S'unknown date\n' +p347550 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067a4.jpg' +p347551 +sg291136 +g27 +sa(dp347552 +g291134 +S'Nicolas Grillet' +p347553 +sg291137 +S'Claude Mellan' +p347554 +sg291130 +S'engraving on laid paper' +p347555 +sg291132 +S'unknown date\n' +p347556 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a00067a8.jpg' +p347557 +sg291136 +g27 +sa(dp347558 +g291134 +S'Nicolas Ysambert' +p347559 +sg291137 +S'Michel Lasne' +p347560 +sg291130 +S'engraving on laid paper' +p347561 +sg291132 +S'in or after 1642' +p347562 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b22.jpg' +p347563 +sg291136 +g27 +sa(dp347564 +g291134 +S'J.-B. A. Vignerod' +p347565 +sg291137 +S'Michel Lasne' +p347566 +sg291130 +S'engraving on laid paper' +p347567 +sg291132 +S'unknown date\n' +p347568 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b1e.jpg' +p347569 +sg291136 +g27 +sa(dp347570 +g291134 +S'Barthelemy Tremblay' +p347571 +sg291137 +S'Michel Lasne' +p347572 +sg291130 +S'engraving on laid paper; laid down' +p347573 +sg291132 +S'1639' +p347574 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b26.jpg' +p347575 +sg291136 +g27 +sa(dp347576 +g291134 +S'Jean Saint Bonnet de Toiras' +p347577 +sg291137 +S'Michel Lasne' +p347578 +sg291130 +S'engraving on laid paper' +p347579 +sg291132 +S'unknown date\n' +p347580 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b20.jpg' +p347581 +sg291136 +g27 +sa(dp347582 +g291134 +S'Jacques Thubeuf' +p347583 +sg291137 +S'Artist Information (' +p347584 +sg291130 +S'(artist after)' +p347585 +sg291132 +S'\n' +p347586 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b1f.jpg' +p347587 +sg291136 +g27 +sa(dp347588 +g291134 +S'Nicolas Brulart' +p347589 +sg291137 +S'Michel Lasne' +p347590 +sg291130 +S'engraving on laid paper' +p347591 +sg291132 +S'unknown date\n' +p347592 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b23.jpg' +p347593 +sg291136 +g27 +sa(dp347594 +g291134 +S'Pierre Seguier' +p347595 +sg291137 +S'Michel Lasne' +p347596 +sg291130 +S'engraving on laid paper' +p347597 +sg291132 +S'1633' +p347598 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b25.jpg' +p347599 +sg291136 +g27 +sa(dp347600 +g291134 +S'Pierre Seguier' +p347601 +sg291137 +S'Michel Lasne' +p347602 +sg291130 +S'engraving on laid paper; laid down' +p347603 +sg291132 +S'1635' +p347604 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b24.jpg' +p347605 +sg291136 +g27 +sa(dp347606 +g291134 +S'Pierre de Ronsard' +p347607 +sg291137 +S'Michel Lasne' +p347608 +sg291130 +S'engraving on laid paper' +p347609 +sg291132 +S'unknown date\n' +p347610 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a0008943.jpg' +p347611 +sg291136 +g27 +sa(dp347612 +g291134 +S'Armand Jean du Plessis, Cardinal Richelieu' +p347613 +sg291137 +S'Michel Lasne' +p347614 +sg291130 +S'engraving on laid paper' +p347615 +sg291132 +S'unknown date\n' +p347616 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b21.jpg' +p347617 +sg291136 +g27 +sa(dp347618 +g291134 +S'Armand Jean du Plessis, Cardinal Richelieu' +p347619 +sg291137 +S'Michel Lasne' +p347620 +sg291130 +S'engraving on laid paper' +p347621 +sg291132 +S'unknown date\n' +p347622 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b2c.jpg' +p347623 +sg291136 +g27 +sa(dp347624 +g291134 +S'Fran\xc3\xa7ois La Rochefoucauld' +p347625 +sg291137 +S'Artist Information (' +p347626 +sg291130 +S'(artist after)' +p347627 +sg291132 +S'\n' +p347628 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b2d.jpg' +p347629 +sg291136 +g27 +sa(dp347630 +g291134 +S'Armand Jean du Plessis, Cardinal Richelieu' +p347631 +sg291137 +S'Michel Lasne' +p347632 +sg291130 +S'engraving on laid paper' +p347633 +sg291132 +S'unknown date\n' +p347634 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b27.jpg' +p347635 +sg291136 +g27 +sa(dp347636 +g291134 +S'Armand Jean du Plessis, Cardinal Richelieu' +p347637 +sg291137 +S'Michel Lasne' +p347638 +sg291130 +S'engraving on laid paper; laid down' +p347639 +sg291132 +S'unknown date\n' +p347640 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a0008948.jpg' +p347641 +sg291136 +g27 +sa(dp347642 +g291134 +S'Fran\xc3\xa7ois La Rochefoucauld' +p347643 +sg291137 +S'Michel Lasne' +p347644 +sg291130 +S'engraving on laid paper; laid down' +p347645 +sg291132 +S'unknown date\n' +p347646 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a0008940.jpg' +p347647 +sg291136 +g27 +sa(dp347648 +g291134 +S'Fran\xc3\xa7ois La Rochefoucauld' +p347649 +sg291137 +S'Michel Lasne' +p347650 +sg291130 +S'engraving on laid paper' +p347651 +sg291132 +S'unknown date\n' +p347652 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b30.jpg' +p347653 +sg291136 +g27 +sa(dp347654 +g291134 +S'N. Paget' +p347655 +sg291137 +S'Michel Lasne' +p347656 +sg291130 +S'engraving on laid paper' +p347657 +sg291132 +S'1658' +p347658 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b32.jpg' +p347659 +sg291136 +g27 +sa(dp347660 +g291134 +S'Ren\xc3\xa9 Moreau' +p347661 +sg291137 +S'Michel Lasne' +p347662 +sg291130 +S'engraving on laid paper' +p347663 +sg291132 +S'unknown date\n' +p347664 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a0008947.jpg' +p347665 +sg291136 +g27 +sa(dp347666 +g291134 +S'Henry II, Duke of Montmorency' +p347667 +sg291137 +S'Michel Lasne' +p347668 +sg291130 +S'engraving on laid paper' +p347669 +sg291132 +S'unknown date\n' +p347670 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a0008944.jpg' +p347671 +sg291136 +g27 +sa(dp347672 +g291134 +S'Jacques de Charron' +p347673 +sg291137 +S'Michel Lasne' +p347674 +sg291130 +S'engraving on laid paper' +p347675 +sg291132 +S'unknown date\n' +p347676 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b29.jpg' +p347677 +sg291136 +g27 +sa(dp347678 +g291134 +S'Charles Bernard' +p347679 +sg291137 +S'Michel Lasne' +p347680 +sg291130 +S'engraving on laid paper' +p347681 +sg291132 +S'unknown date\n' +p347682 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b2f.jpg' +p347683 +sg291136 +g27 +sa(dp347684 +g291134 +S'Etienne Binet' +p347685 +sg291137 +S'Artist Information (' +p347686 +sg291130 +S'(artist after)' +p347687 +sg291132 +S'\n' +p347688 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a0008946.jpg' +p347689 +sg291136 +g27 +sa(dp347690 +g291134 +S'Fran\xc3\xa7ois de Beauvillier' +p347691 +sg291137 +S'Michel Lasne' +p347692 +sg291130 +S'engraving on laid paper' +p347693 +sg291132 +S'in or before 1656' +p347694 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a0008942.jpg' +p347695 +sg291136 +g27 +sa(dp347696 +g291134 +S'Henri de Beringhen' +p347697 +sg291137 +S'Michel Lasne' +p347698 +sg291130 +S'engraving on laid paper' +p347699 +sg291132 +S'unknown date\n' +p347700 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b2e.jpg' +p347701 +sg291136 +g27 +sa(dp347702 +g291134 +S'Anne of Austria' +p347703 +sg291137 +S'Artist Information (' +p347704 +sg291130 +S'(artist after)' +p347705 +sg291132 +S'\n' +p347706 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b31.jpg' +p347707 +sg291136 +g27 +sa(dp347708 +g291134 +S'Michel de Marillac' +p347709 +sg291137 +S'Michel Lasne' +p347710 +sg291130 +S'engraving on laid paper' +p347711 +sg291132 +S'unknown date\n' +p347712 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b2b.jpg' +p347713 +sg291136 +g27 +sa(dp347714 +g291134 +S'Louis de Marillac, Duke of Beaufort' +p347715 +sg291137 +S'Michel Lasne' +p347716 +sg291130 +S'engraving on laid paper; laid down' +p347717 +sg291132 +S'unknown date\n' +p347718 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b2a.jpg' +p347719 +sg291136 +g27 +sa(dp347720 +g291134 +S'Pierre de Marcassus' +p347721 +sg291137 +S'Artist Information (' +p347722 +sg291130 +S'(artist after)' +p347723 +sg291132 +S'\n' +p347724 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a0008945.jpg' +p347725 +sg291136 +g27 +sa(dp347726 +g291134 +S'Louis Sieur de Maine' +p347727 +sg291137 +S'Artist Information (' +p347728 +sg291130 +S'(artist after)' +p347729 +sg291132 +S'\n' +p347730 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a000894a.jpg' +p347731 +sg291136 +g27 +sa(dp347732 +g291134 +S'Jean Loret' +p347733 +sg291137 +S'Michel Lasne' +p347734 +sg291130 +S'engraving on laid paper' +p347735 +sg291132 +S'1656' +p347736 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a000894c.jpg' +p347737 +sg291136 +g27 +sa(dp347738 +g291134 +S"Fran\xc3\xa7ois de l'Hospital du Hallier" +p347739 +sg291137 +S'Michel Lasne' +p347740 +sg291130 +S'engraving on laid paper; laid down' +p347741 +sg291132 +S'unknown date\n' +p347742 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a000894b.jpg' +p347743 +sg291136 +g27 +sa(dp347744 +g291134 +S'Jean Charles Doria' +p347745 +sg291137 +S'Artist Information (' +p347746 +sg291130 +S'(artist after)' +p347747 +sg291132 +S'\n' +p347748 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00089/a0008949.jpg' +p347749 +sg291136 +g27 +sa(dp347750 +g291134 +S'Louis II de Bourbon' +p347751 +sg291137 +S'Michel Lasne' +p347752 +sg291130 +S'engraving on laid paper' +p347753 +sg291132 +S'unknown date\n' +p347754 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b33.jpg' +p347755 +sg291136 +g27 +sa(dp347756 +g291134 +S'Mathieu Mole' +p347757 +sg291137 +S'Michel Lasne' +p347758 +sg291130 +S'engraving on laid paper' +p347759 +sg291132 +S'unknown date\n' +p347760 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b28.jpg' +p347761 +sg291136 +g27 +sa(dp347762 +g291134 +S'Portrait of a Man' +p347763 +sg291137 +S'Emil Orlik' +p347764 +sg291130 +S'lithograph on laid paper' +p347765 +sg291132 +S'1930' +p347766 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b7/a000b74b.jpg' +p347767 +sg291136 +g27 +sa(dp347768 +g291134 +S"Miner's Home, West Virginia" +p347769 +sg291137 +S'Walker Evans' +p347770 +sg291130 +S'gelatin silver print, 1960s' +p347771 +sg291132 +S'1935' +p347772 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e3f.jpg' +p347773 +sg291136 +g27 +sa(dp347774 +g291130 +S'black and brown chalks on pressboard' +p347775 +sg291132 +S'1947' +p347776 +sg291134 +S'Study of Judas' +p347777 +sg291136 +g27 +sg291137 +S'Ivan Mestrovic' +p347778 +sa(dp347779 +g291130 +S'(author)' +p347780 +sg291132 +S'\n' +p347781 +sg291134 +S'XXXIII Sonnets Compos\xc3\xa9s au Secret' +p347782 +sg291136 +g27 +sg291137 +S'Artist Information (' +p347783 +sa(dp347784 +g291130 +S'collage of colored papers over graphite on paper mounted to pressed board' +p347785 +sg291132 +S'c. 1977' +p347786 +sg291134 +S'Circe' +p347787 +sg291136 +g27 +sg291137 +S'Romare Bearden' +p347788 +sa(dp347789 +g291130 +S'tempera over graphite on board' +p347790 +sg291132 +S'1979' +p347791 +sg291134 +S'Outromer' +p347792 +sg291136 +g27 +sg291137 +S'Ilya Bolotowsky' +p347793 +sa(dp347794 +g291130 +S'tempera over graphite on heavy wove paper' +p347795 +sg291132 +S'unknown date\n' +p347796 +sg291134 +S'Yellow Tondo' +p347797 +sg291136 +g27 +sg291137 +S'Ilya Bolotowsky' +p347798 +sa(dp347799 +g291130 +S'collage of colored papers and graphite' +p347800 +sg291132 +S'unknown date\n' +p347801 +sg291134 +S'Desert Saw' +p347802 +sg291136 +g27 +sg291137 +S'Ivan Chermayeff' +p347803 +sa(dp347804 +g291130 +S'collage of lithograph in black and yellow mounted onto blue backing paper' +p347805 +sg291132 +S'unknown date\n' +p347806 +sg291134 +S'Untitled' +p347807 +sg291136 +g27 +sg291137 +S'Nicholas Krushenick' +p347808 +sa(dp347809 +g291130 +S'colored pencil and black crayon over graphite on wove paper' +p347810 +sg291132 +S'1979' +p347811 +sg291134 +S'Diagram 1 - Amerind Landscape' +p347812 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p347813 +sa(dp347814 +g291130 +S'hand-colored aquatint and etching on wove paper' +p347815 +sg291132 +S'unknown date\n' +p347816 +sg291134 +S'Poster Variation' +p347817 +sg291136 +g27 +sg291137 +S'Kenneth Noland' +p347818 +sa(dp347819 +g291130 +S'tempera, graphite, and ball-point pen on heavy wove paper' +p347820 +sg291132 +S'1973-1975' +p347821 +sg291134 +S'Untitled (blue with orange lines)' +p347822 +sg291136 +g27 +sg291137 +S'Theodoros Stamos' +p347823 +sa(dp347824 +g291130 +S'colored pencil over graphite on graph paper' +p347825 +sg291132 +S'1967' +p347826 +sg291134 +S'Diamond Cut' +p347827 +sg291136 +g27 +sg291137 +S'Larry Zox' +p347828 +sa(dp347829 +g291130 +S'graphite and brush and black ink on graph paper' +p347830 +sg291132 +S'1961' +p347831 +sg291134 +S'Plant to Fan Growth' +p347832 +sg291136 +g27 +sg291137 +S'Jim Dine' +p347833 +sa(dp347834 +g291130 +S'monoprint woodcut' +p347835 +sg291132 +S'1990' +p347836 +sg291134 +S'Untitled' +p347837 +sg291136 +g27 +sg291137 +S'Charles Arnoldi' +p347838 +sa(dp347839 +g291130 +S'monoprint woodcut' +p347840 +sg291132 +S'1989' +p347841 +sg291134 +S'Untitled' +p347842 +sg291136 +g27 +sg291137 +S'Charles Arnoldi' +p347843 +sa(dp347844 +g291130 +S'colored and pressed paper pulp' +p347845 +sg291132 +S'1982' +p347846 +sg291134 +S'Untitled' +p347847 +sg291136 +g27 +sg291137 +S'Friedel Dzubas' +p347848 +sa(dp347849 +g291130 +S'colored and pressed paper pulp' +p347850 +sg291132 +S'1982' +p347851 +sg291134 +S'Untitled' +p347852 +sg291136 +g27 +sg291137 +S'Friedel Dzubas' +p347853 +sa(dp347854 +g291134 +S'The Ecstasy of Saint Francis [recto]' +p347855 +sg291137 +S'Sebastiano Ricci' +p347856 +sg291130 +S'pen and brown ink and brown wash on laid paper' +p347857 +sg291132 +S'1720/1730' +p347858 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026f1.jpg' +p347859 +sg291136 +g27 +sa(dp347860 +g291130 +S'graphite on laid paper' +p347861 +sg291132 +S'1720/1730' +p347862 +sg291134 +S'Biblical Scene [verso]' +p347863 +sg291136 +g27 +sg291137 +S'Sebastiano Ricci' +p347864 +sa(dp347865 +g291134 +S'The Breadline' +p347866 +sg291137 +S'Walker Evans' +p347867 +sg291130 +S'gelatin silver print' +p347868 +sg291132 +S'1933' +p347869 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d45.jpg' +p347870 +sg291136 +g27 +sa(dp347871 +g291130 +S'gelatin silver print' +p347872 +sg291132 +S'1935' +p347873 +sg291134 +S'Young Girl' +p347874 +sg291136 +g27 +sg291137 +S'Walker Evans' +p347875 +sa(dp347876 +g291130 +S'monoprint in black and white on wove paper' +p347877 +sg291132 +S'1990' +p347878 +sg291134 +S'Untitled' +p347879 +sg291136 +g27 +sg291137 +S'Nancy Haynes' +p347880 +sa(dp347881 +g291130 +S'monoprint in black on wove paper' +p347882 +sg291132 +S'1990' +p347883 +sg291134 +S'Untitled' +p347884 +sg291136 +g27 +sg291137 +S'Nancy Haynes' +p347885 +sa(dp347886 +g291134 +S'Seated Figure with Hat' +p347887 +sg291137 +S'Richard Diebenkorn' +p347888 +sg291130 +S'oil on canvas' +p347889 +sg291132 +S'1967' +p347890 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00000/a000007d.jpg' +p347891 +sg291136 +S"Several times throughout his career, Richard Diebenkorn shifted between abstract and representational modes—each critical to his work. In 1983 an interviewer remarked to Diebenkorn of his "capacity to move back and forth between figuration and abstraction." Such a description, the artist replied, "makes it sound as though 'I know how to do it' and this is very far from the case." Rather he proceeded with "the utmost trepidation and great difficulty." \n When the artist shifted from one idiom to the other, he was invariably looking for a new challenge or for the next step in the formal progression of his work. For example, after Diebenkorn rose to acclaim with the Berkeley paintings, his brilliant series of abstract landscapes made from 1953 to 1956, the artist chose the subject of the figure to provide him with a new set of pictorial problems:\n The artist developed his mature figurative works from 1956 to 1967. By the end of that period, Diebenkorn began to flatten the pictorial space in his work, a direction that eventually led back to abstraction in the windowlike apertures of the Ocean Park series. Despite these shifts from representation to abstraction, Diebenkorn continued to work from the figure throughout his career, often using family members as models.\n Seated Figure with Hat\n Diebenkorn's formal concern with discrete areas of color and a simplified composition also prefigures the abstract mode he was about to enter. With regard to composition and refinement of color, the painting \n (Text by Molly Donovan, published in the National Gallery of Art exhibition catalogue, \n Notes\n \n\n \n\n " +p347892 +sa(dp347893 +g291134 +S'Valdemosa, Majorca: Thistles and Herbage on a Hillside' +p347894 +sg291137 +S'John Singer Sargent' +p347895 +sg291130 +S'oil on canvas' +p347896 +sg291132 +S'1908' +p347897 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00002/a0000208.jpg' +p347898 +sg291136 +g27 +sa(dp347899 +g291134 +S'The Triumph of Caesar: The Senators' +p347900 +sg291137 +S'Artist Information (' +p347901 +sg291130 +S'Italian, c. 1431 - 1506' +p347902 +sg291132 +S'(related artist)' +p347903 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00068/a000681a.jpg' +p347904 +sg291136 +g27 +sa(dp347905 +g291130 +S'(artist)' +p347906 +sg291132 +S'\n' +p347907 +sg291134 +S'Der Zee-Vaert Lof' +p347908 +sg291136 +g27 +sg291137 +S'Artist Information (' +p347909 +sa(dp347910 +g291130 +S"etching on laid paper, on page 97 of Herckman's _Der Zee-Vaert Lof_, published 1634" +p347911 +sg291132 +S'1633' +p347912 +sg291134 +S'The Ship of Fortune' +p347913 +sg291136 +g27 +sg291137 +S'Rembrandt van Rijn' +p347914 +sa(dp347915 +g291134 +S'Young Woman with Braided Hair and a Veil' +p347916 +sg291137 +S'Ottavio Leoni' +p347917 +sg291130 +S'black chalk heightened with white on blue paper' +p347918 +sg291132 +S'c. 1610' +p347919 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a00025f0.jpg' +p347920 +sg291136 +g27 +sa(dp347921 +g291134 +S'Mountainous Landscape with the Parable of the Sower' +p347922 +sg291137 +S'Giovanni Battista Fontana' +p347923 +sg291130 +S'etching on laid paper' +p347924 +sg291132 +S'c. 1572/1573' +p347925 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cbb2.jpg' +p347926 +sg291136 +g27 +sa(dp347927 +g291134 +S'Alexander the Great and Bucephalus' +p347928 +sg291137 +S'Taddeo Zuccaro' +p347929 +sg291130 +S'pen and brown ink with brown wash over traces of graphite on laid paper' +p347930 +sg291132 +S'c. 1553' +p347931 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a00028ef.jpg' +p347932 +sg291136 +g27 +sa(dp347933 +g291134 +S'The Meeting of Antony and Cleopatra' +p347934 +sg291137 +S'Giovanni Battista Tiepolo' +p347935 +sg291130 +S'pen and brown ink with brown wash over black chalk on buff paper' +p347936 +sg291132 +S'1740/1745' +p347937 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a000285e.jpg' +p347938 +sg291136 +g27 +sa(dp347939 +g291134 +S'The Lamentation' +p347940 +sg291137 +S'Hans Baldung Grien' +p347941 +sg291130 +S'brush and black ink, heightened with white, on dark brown prepared paper; the surface varnished' +p347942 +sg291132 +S'c. 1515' +p347943 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022a0.jpg' +p347944 +sg291136 +g27 +sa(dp347945 +g291134 +S'Portrait of a Man Wearing a Hat with a Medallion' +p347946 +sg291137 +S'German 16th century (Augsburg)' +p347947 +sg291130 +S'overall: 20.4 x 20.3 cm (8 1/16 x 8 in.)' +p347948 +sg291132 +S'\nblack, red, and yellow chalks on laid paper' +p347949 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00079/a0007970.jpg' +p347950 +sg291136 +g27 +sa(dp347951 +g291134 +S'Red Squirrel' +p347952 +sg291137 +S'Hans Hoffmann' +p347953 +sg291130 +S'watercolor and gouache over traces of graphite on vellum' +p347954 +sg291132 +S'1578' +p347955 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a0002555.jpg' +p347956 +sg291136 +g27 +sa(dp347957 +g291134 +S'Study of Trees' +p347958 +sg291137 +S'Lucas van Uden' +p347959 +sg291130 +S'pen and brown ink with gray wash, yellow and white chalks over traces of graphite on laid paper; laid down' +p347960 +sg291132 +S'1640s' +p347961 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a00028da.jpg' +p347962 +sg291136 +g27 +sa(dp347963 +g291134 +S'Portrait of a Man' +p347964 +sg291137 +S'Jean-Baptiste Perronneau' +p347965 +sg291130 +S'pastel on blue laid paper, mounted on board' +p347966 +sg291132 +S'c. 1757' +p347967 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026cb.jpg' +p347968 +sg291136 +g27 +sa(dp347969 +g291134 +S'The Public in the Salon of the Louvre, Viewing the Painting of the "Sacre"' +p347970 +sg291137 +S'Louis-L\xc3\xa9opold Boilly' +p347971 +sg291130 +S'pen and black ink with gray wash and watercolor over traces of graphite on laid paper' +p347972 +sg291132 +S'begun 1808' +p347973 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022b5.jpg' +p347974 +sg291136 +g27 +sa(dp347975 +g291134 +S'Madame Ditte' +p347976 +sg291137 +S'Henri Fantin-Latour' +p347977 +sg291130 +S'black cont? crayon, black chalk and blue pastel, stumping and erasure, with touches of white on laid paper' +p347978 +sg291132 +S'1867' +p347979 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a000251e.jpg' +p347980 +sg291136 +g27 +sa(dp347981 +g291134 +S'Mascaras crueles (Cruel Masks) [recto]' +p347982 +sg291137 +S'Francisco de Goya' +p347983 +sg291130 +S'brush and black ink and gray wash with scraping on laid paper' +p347984 +sg291132 +S'1796/1797' +p347985 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a0002547.jpg' +p347986 +sg291136 +g27 +sa(dp347987 +g291134 +S'Brujas \xc3\xa0 volar (Witches Preparing to Fly) [verso]' +p347988 +sg291137 +S'Francisco de Goya' +p347989 +sg291130 +S'brush and black ink and gray wash on laid paper' +p347990 +sg291132 +S'1796/1797' +p347991 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a0002548.jpg' +p347992 +sg291136 +g27 +sa(dp347993 +g291134 +S'Male Nude Holding a Mirror [recto]' +p347994 +sg291137 +S'Albrecht D\xc3\xbcrer' +p347995 +sg291130 +S'pen and brown ink on laid paper; the paper has been pricked in several places with the points of a pair of compasses and indented lightly with a stylus' +p347996 +sg291132 +S'c. 1500' +p347997 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00079/a000798d.jpg' +p347998 +sg291136 +g27 +sa(dp347999 +g291134 +S'Male Nude with a Lion [verso]' +p348000 +sg291137 +S'Albrecht D\xc3\xbcrer' +p348001 +sg291130 +S'pen and brown ink on laid paper' +p348002 +sg291132 +S'c. 1500' +p348003 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00079/a000798e.jpg' +p348004 +sg291136 +g27 +sa(dp348005 +g291134 +S'Joseph Recounting His Dreams' +p348006 +sg291137 +S'Rembrandt van Rijn' +p348007 +sg291130 +S'reed pen and brown ink with brown wash, heightened with white, on laid paper' +p348008 +sg291132 +S'early 1640s' +p348009 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026e7.jpg' +p348010 +sg291136 +g27 +sa(dp348011 +g291134 +S'Archer Drawing a Bow' +p348012 +sg291137 +S'Artist Information (' +p348013 +sg291130 +S'Italian, c. 1450 - 1523' +p348014 +sg291132 +S'(related artist)' +p348015 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026cc.jpg' +p348016 +sg291136 +g27 +sa(dp348017 +g291134 +S'Head of Saint John the Baptist' +p348018 +sg291137 +S'Andrea del Sarto' +p348019 +sg291130 +S'black chalk on paper laid down on panel' +p348020 +sg291132 +S'c. 1523' +p348021 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a000284f.jpg' +p348022 +sg291136 +g27 +sa(dp348023 +g291134 +S'Martyrdom of the Ten Thousand [recto]' +p348024 +sg291137 +S'Vittore Carpaccio' +p348025 +sg291130 +S'red chalk on laid paper' +p348026 +sg291132 +S'c. 1513' +p348027 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022d0.jpg' +p348028 +sg291136 +g27 +sa(dp348029 +g291134 +S'Groups of Figures [verso]' +p348030 +sg291137 +S'Vittore Carpaccio' +p348031 +sg291130 +S'red chalk with pen and brown ink on laid paper' +p348032 +sg291132 +S'c. 1513/1514' +p348033 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022d1.jpg' +p348034 +sg291136 +g27 +sa(dp348035 +g291134 +S'Head of a Bearded Man' +p348036 +sg291137 +S'Federico Barocci' +p348037 +sg291130 +S'red, black, white, and ochre chalks on blue laid paper; laid down' +p348038 +sg291132 +S'1579/1582' +p348039 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005faf.jpg' +p348040 +sg291136 +g27 +sa(dp348041 +g291134 +S'Fantasy of a Fa\xc3\xa7ade with Bizarre Ornaments' +p348042 +sg291137 +S'Giovanni Battista Piranesi' +p348043 +sg291130 +S'pen and brown ink with brown wash over black chalk on laid paper' +p348044 +sg291132 +S'1764/1766' +p348045 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026d2.jpg' +p348046 +sg291136 +g27 +sa(dp348047 +g291134 +S'Portrait of a Woman [recto]' +p348048 +sg291137 +S'Hans Holbein the Elder' +p348049 +sg291130 +S'silverpoint, brush and black and brown ink, and black chalk heightened with white on white prepared paper' +p348050 +sg291132 +S'c. 1508' +p348051 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a000532f.jpg' +p348052 +sg291136 +g27 +sa(dp348053 +g291134 +S'Study of a Bearded Man [verso]' +p348054 +sg291137 +S'Hans Holbein the Elder' +p348055 +sg291130 +S'silverpoint and black chalk heightened with white on white prepared paper' +p348056 +sg291132 +S'c. 1508/1510' +p348057 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a0005330.jpg' +p348058 +sg291136 +g27 +sa(dp348059 +g291134 +S'Head of a Bearded Man' +p348060 +sg291137 +S'Jost Amman' +p348061 +sg291130 +S'brush and black ink with white wash on blue prepared paper' +p348062 +sg291132 +S'1572' +p348063 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a000229e.jpg' +p348064 +sg291136 +g27 +sa(dp348065 +g291134 +S'The Backplate of a Suit of Parade Armor' +p348066 +sg291137 +S'Etienne Delaune' +p348067 +sg291130 +S'pen and black ink with gray wash and faint traces of black chalk on laid paper' +p348068 +sg291132 +S'c. 1557' +p348069 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a0002435.jpg' +p348070 +sg291136 +g27 +sa(dp348071 +g291134 +S'Philippe Mengin de Bionval' +p348072 +sg291137 +S'Jean-Auguste-Dominique Ingres' +p348073 +sg291130 +S'graphite on wove paper' +p348074 +sg291132 +S'1812' +p348075 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a000255a.jpg' +p348076 +sg291136 +g27 +sa(dp348077 +g291130 +S'pen and black ink and gray wash with touches of red-brown crayon, surface scraping on Bristol board' +p348078 +sg291132 +S'1853' +p348079 +sg291134 +S'Fantasy Farmhouse' +p348080 +sg291136 +g27 +sg291137 +S'Rodolphe Bresdin' +p348081 +sa(dp348082 +g291134 +S'Self-Portrait' +p348083 +sg291137 +S'Edgar Degas' +p348084 +sg291130 +S'red chalk on laid paper' +p348085 +sg291132 +S'c. 1855' +p348086 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a0002433.jpg' +p348087 +sg291136 +g27 +sa(dp348088 +g291134 +S"The Age of Bronze (L'Age d'Airain)" +p348089 +sg291137 +S'Auguste Rodin' +p348090 +sg291130 +S'plaster' +p348091 +sg291132 +S'model 1875-1876, cast 1898' +p348092 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c45.jpg' +p348093 +sg291136 +S'The splendid image of Rodin\'s \n Such a contemporaneous interpretation of this great work, as the idealized self-image of a warrior of a new age, endows with a particular weight its insistently realistic style, especially given Rodin\'s choice of model. Concerned as he was to achieve a wholly new and intensely expressive figural form, Rodin was anxious to avoid using professional models, whose stock poses he felt would be inimical to his aspirations. He sought out a soldier as an exemplar of well-conditioned male anatomy.\n This hauntingly veristic sculpture\'s intense naturalism, coupled with its original lack of an allegorical or historicizing title, served principally to baffle and offend its first observers. The Salon reviewer Charles Tardieu (rather astonishingly) called it a "slavish likeness of a model with neither character nor beauty, an...exact copy of a most commonplace individual."\n Three or four early plaster casts of \n This entry is based on initial acquisition research by Alison Luchs and the writer, as well as (by kind permission) on Ruth Butler\'s essay for the National Gallery\'s systematic catalogue \n (Text by Douglas Lewis, published in the National Gallery of Art exhibition catalogue, \n Notes\n \n \n \n \n \n \n ' +p348094 +sa(dp348095 +g291134 +S'Erotic Blando Fruto' +p348096 +sg291137 +S'Malcolm Morley' +p348097 +sg291130 +S'oil on canvas' +p348098 +sg291132 +S'1989' +p348099 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000be/a000be77.jpg' +p348100 +sg291136 +g27 +sa(dp348101 +g291134 +S'Perspective View of the Interior of a Metropolitan Church' +p348102 +sg291137 +S'Etienne-Louis Boull\xc3\xa9e' +p348103 +sg291130 +S'pen and black ink with gray and brown wash over graphite on laid paper, with framing line in brown chalk' +p348104 +sg291132 +S'1780/1781' +p348105 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022c3.jpg' +p348106 +sg291136 +g27 +sa(dp348107 +g291134 +S'Title Page for New Suite of Chinese Arabesques' +p348108 +sg291137 +S'Artist Information (' +p348109 +sg291130 +S'(artist after)' +p348110 +sg291132 +S'\n' +p348111 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cc8.jpg' +p348112 +sg291136 +g27 +sa(dp348113 +g291134 +S'Chinese Arabesque with a Double Parasol' +p348114 +sg291137 +S'Artist Information (' +p348115 +sg291130 +S'(artist after)' +p348116 +sg291132 +S'\n' +p348117 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ef0.jpg' +p348118 +sg291136 +g27 +sa(dp348119 +g291134 +S'Chinese Arabesque with a Monkey' +p348120 +sg291137 +S'Artist Information (' +p348121 +sg291130 +S'(artist after)' +p348122 +sg291132 +S'\n' +p348123 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000ef1.jpg' +p348124 +sg291136 +g27 +sa(dp348125 +g291134 +S'Chinese Arabesque with a Boat' +p348126 +sg291137 +S'Artist Information (' +p348127 +sg291130 +S'(artist after)' +p348128 +sg291132 +S'\n' +p348129 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00052/a0005227.jpg' +p348130 +sg291136 +g27 +sa(dp348131 +g291134 +S'Chinese Arabesque with a Tightrope Walker' +p348132 +sg291137 +S'Artist Information (' +p348133 +sg291130 +S'(artist after)' +p348134 +sg291132 +S'\n' +p348135 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00052/a0005228.jpg' +p348136 +sg291136 +g27 +sa(dp348137 +g291134 +S'The Dead Caesar' +p348138 +sg291137 +S'Jean-L\xc3\xa9on G\xc3\xa9r\xc3\xb4me' +p348139 +sg291130 +S'graphite on wove paper' +p348140 +sg291132 +S'c. 1859' +p348141 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a0002543.jpg' +p348142 +sg291136 +g27 +sa(dp348143 +g291130 +S'aquatint and spitbite aquatint on Somerset Textured paper' +p348144 +sg291132 +S'1988' +p348145 +sg291134 +S'Laboratory Still Life No. 2, State 2' +p348146 +sg291136 +g27 +sg291137 +S'Tony Cragg' +p348147 +sa(dp348148 +g291130 +S'softground etching in two shades of blue-green on wove paper' +p348149 +sg291132 +S'1990' +p348150 +sg291134 +S'Suburbs (Softground Series) I' +p348151 +sg291136 +g27 +sg291137 +S'Tony Cragg' +p348152 +sa(dp348153 +g291130 +S'softground etching in gray and brown on wove paper' +p348154 +sg291132 +S'1990' +p348155 +sg291134 +S'Suburbs (Softground Series) II' +p348156 +sg291136 +g27 +sg291137 +S'Tony Cragg' +p348157 +sa(dp348158 +g291130 +S'softground etching in yellow and black on wove paper' +p348159 +sg291132 +S'1990' +p348160 +sg291134 +S'Suburbs (Softground Series) III' +p348161 +sg291136 +g27 +sg291137 +S'Tony Cragg' +p348162 +sa(dp348163 +g291130 +S'softground etching in gray and pink on wove paper' +p348164 +sg291132 +S'1990' +p348165 +sg291134 +S'Suburbs (Softground Series) IV' +p348166 +sg291136 +g27 +sg291137 +S'Tony Cragg' +p348167 +sa(dp348168 +g291130 +S'softground etching in gray and brown on wove paper' +p348169 +sg291132 +S'1990' +p348170 +sg291134 +S'Suburbs (Softground Series) V' +p348171 +sg291136 +g27 +sg291137 +S'Tony Cragg' +p348172 +sa(dp348173 +g291130 +S'spitbite etching in brown on wove paper' +p348174 +sg291132 +S'1990' +p348175 +sg291134 +S'Suburbs (Spitbite Series) I' +p348176 +sg291136 +g27 +sg291137 +S'Tony Cragg' +p348177 +sa(dp348178 +g291130 +S'spitbite etching in brown-yellow on wove paper' +p348179 +sg291132 +S'1990' +p348180 +sg291134 +S'Suburbs (Spitbite Series) II' +p348181 +sg291136 +g27 +sg291137 +S'Tony Cragg' +p348182 +sa(dp348183 +g291130 +S'spitbite etching in red on wove paper' +p348184 +sg291132 +S'1990' +p348185 +sg291134 +S'Suburbs (Spitbite Series) III' +p348186 +sg291136 +g27 +sg291137 +S'Tony Cragg' +p348187 +sa(dp348188 +g291130 +S'spitbite etching in blue and blue-green on wove paper' +p348189 +sg291132 +S'1990' +p348190 +sg291134 +S'Suburbs (Spitbite Series) IV' +p348191 +sg291136 +g27 +sg291137 +S'Tony Cragg' +p348192 +sa(dp348193 +g291130 +S'spitbite etching in brown and red-brown on wove paper' +p348194 +sg291132 +S'1990' +p348195 +sg291134 +S'Suburbs (Spitbite Series) V' +p348196 +sg291136 +g27 +sg291137 +S'Tony Cragg' +p348197 +sa(dp348198 +g291130 +S'color lithograph on wove paper' +p348199 +sg291132 +S'1981' +p348200 +sg291134 +S'Bedford II' +p348201 +sg291136 +g27 +sg291137 +S'Joan Mitchell' +p348202 +sa(dp348203 +g291130 +S'color lithograph on wove paper' +p348204 +sg291132 +S'1981' +p348205 +sg291134 +S'Flower I' +p348206 +sg291136 +g27 +sg291137 +S'Joan Mitchell' +p348207 +sa(dp348208 +g291134 +S'A Satyr' +p348209 +sg291137 +S'Benvenuto Cellini' +p348210 +sg291130 +S'pen and brown ink with brown wash over black chalk on laid paper; laid down, with framing line in brown ink' +p348211 +sg291132 +S'1544/1545' +p348212 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00017/a000177a.jpg' +p348213 +sg291136 +g27 +sa(dp348214 +g291130 +S'oil on canvas' +p348215 +sg291132 +S'1939' +p348216 +sg291134 +S'Cobalt Green' +p348217 +sg291136 +g27 +sg291137 +S'Ilya Bolotowsky' +p348218 +sa(dp348219 +g291130 +S'oil on canvas' +p348220 +sg291132 +S'1940' +p348221 +sg291134 +S'Artist and Nude' +p348222 +sg291136 +g27 +sg291137 +S'Milton Avery' +p348223 +sa(dp348224 +g291134 +S'Corner of a Rustic Barn' +p348225 +sg291137 +S'Sigmund Freudenberger' +p348226 +sg291130 +S'black chalk on laid paper' +p348227 +sg291132 +S'1770' +p348228 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a21.jpg' +p348229 +sg291136 +g27 +sa(dp348230 +g291130 +S'pastel on dark brown wove paper' +p348231 +sg291132 +S'1897' +p348232 +sg291134 +S'A Dock Harmony-Fishing Boats' +p348233 +sg291136 +g27 +sg291137 +S'Charles Fromuth' +p348234 +sa(dp348235 +g291130 +S'lithograph on wove paper' +p348236 +sg291132 +S'1970' +p348237 +sg291134 +S'Partially Buried Woodshed' +p348238 +sg291136 +g27 +sg291137 +S'Robert Smithson' +p348239 +sa(dp348240 +g291130 +S'graphite and felt-tip pen on wove paper' +p348241 +sg291132 +S'1969' +p348242 +sg291134 +S'Mud Flow (F-14)' +p348243 +sg291136 +g27 +sg291137 +S'Robert Smithson' +p348244 +sa(dp348245 +g291130 +S'sketchbook with 24 drawings (in various states of completion) in graphite on wove paper' +p348246 +sg291132 +S'1859' +p348247 +sg291134 +S'Lake George Sketchbook' +p348248 +sg291136 +g27 +sg291137 +S'Winckworth Allan Gay' +p348249 +sa(dp348250 +g291130 +S'sketchbook with 60 drawings (in various states of completion) in graphite on wove paper' +p348251 +sg291132 +S'1860/1870' +p348252 +sg291134 +S'New England Sketchbook' +p348253 +sg291136 +g27 +sg291137 +S'Winckworth Allan Gay' +p348254 +sa(dp348255 +g291130 +S'crayon and graphite on graph paper' +p348256 +sg291132 +S'c. 1965' +p348257 +sg291134 +S'Untitled' +p348258 +sg291136 +g27 +sg291137 +S'Frank Stella' +p348259 +sa(dp348260 +g291130 +S'bronze' +p348261 +sg291132 +S'c. 1485' +p348262 +sg291134 +S'Girolamo Ridolfi of San Gimignano, 1465-1526, Apostolic Secretary, Consistorial Advocate, and Knight of the Golden Spur [obverse]' +p348263 +sg291136 +g27 +sg291137 +S'Niccol\xc3\xb2 Fiorentino' +p348264 +sa(dp348265 +g291134 +S'Pegasus [reverse]' +p348266 +sg291137 +S'Niccol\xc3\xb2 Fiorentino' +p348267 +sg291130 +S'bronze' +p348268 +sg291132 +S'c. 1485' +p348269 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dc2.jpg' +p348270 +sg291136 +g27 +sa(dp348271 +g291134 +S'George Washington' +p348272 +sg291137 +S'Jean-Antoine Houdon' +p348273 +sg291130 +S'plaster' +p348274 +sg291132 +S'1786/1793' +p348275 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002c/a0002c11.jpg' +p348276 +sg291136 +g27 +sa(dp348277 +g291134 +S'Holofernes Interrogating Achior' +p348278 +sg291137 +S'French 16th Century' +p348279 +sg291130 +S'sheet: 38.5 x 49.5 cm (15 3/16 x 19 1/2 in.)' +p348280 +sg291132 +S'\nhand-colored woodcut on laid paper' +p348281 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00084/a00084bf.jpg' +p348282 +sg291136 +g27 +sa(dp348283 +g291134 +S'Judith Goes to the Camp of Holofernes' +p348284 +sg291137 +S'French 16th Century' +p348285 +sg291130 +S'sheet: 38.5 x 49 cm (15 3/16 x 19 5/16 in.)' +p348286 +sg291132 +S'\nhand-colored woodcut on laid paper' +p348287 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00084/a00084be.jpg' +p348288 +sg291136 +g27 +sa(dp348289 +g291134 +S'Saint Mary Magdalene Pray for Us' +p348290 +sg291137 +S'French 19th Century' +p348291 +sg291130 +S'sheet: 31 x 39.4 cm (12 3/16 x 15 1/2 in.)' +p348292 +sg291132 +S'\nhand-colored woodcut on laid paper' +p348293 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009018.jpg' +p348294 +sg291136 +g27 +sa(dp348295 +g291134 +S'Saint John the Baptist Pray for Us' +p348296 +sg291137 +S'French 19th Century' +p348297 +sg291130 +S'image: 34.5 x 26.1 cm (13 9/16 x 10 1/4 in.)\r\nsheet: 39.7 x 30.2 cm (15 5/8 x 11 7/8 in.)' +p348298 +sg291132 +S'\nhand-colored woodcut on blue laid paper' +p348299 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00090/a0009015.jpg' +p348300 +sg291136 +g27 +sa(dp348301 +g291134 +S'Chancellor Pierre Seguier' +p348302 +sg291137 +S'Gr\xc3\xa9goire Huret' +p348303 +sg291130 +S'engraving on laid paper' +p348304 +sg291132 +S'unknown date\n' +p348305 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b0d.jpg' +p348306 +sg291136 +g27 +sa(dp348307 +g291134 +S'The Pater Familias' +p348308 +sg291137 +S'Adriaen van Ostade' +p348309 +sg291130 +S'etching on laid paper' +p348310 +sg291132 +S'1648' +p348311 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2a4.jpg' +p348312 +sg291136 +g27 +sa(dp348313 +g291134 +S'Eyeglass Peddlar' +p348314 +sg291137 +S'Adriaen van Ostade' +p348315 +sg291130 +S'etching on laid paper' +p348316 +sg291132 +S'c. 1646' +p348317 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2a7.jpg' +p348318 +sg291136 +g27 +sa(dp348319 +g291134 +S'The Judgment of Solomon' +p348320 +sg291137 +S'Georg Pencz' +p348321 +sg291130 +S'engraving on laid paper' +p348322 +sg291132 +S'unknown date\n' +p348323 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad53.jpg' +p348324 +sg291136 +g27 +sa(dp348325 +g291134 +S'Portrait of a Gentleman' +p348326 +sg291137 +S'Jacobus Houbraken' +p348327 +sg291130 +S'engraving on laid paper' +p348328 +sg291132 +S'unknown date\n' +p348329 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d688.jpg' +p348330 +sg291136 +g27 +sa(dp348331 +g291134 +S'Algernon Percy, Earl of Northumberland' +p348332 +sg291137 +S'Artist Information (' +p348333 +sg291130 +S'(artist after)' +p348334 +sg291132 +S'\n' +p348335 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d68d.jpg' +p348336 +sg291136 +g27 +sa(dp348337 +g291134 +S'James, Earl of Morton' +p348338 +sg291137 +S'Jacobus Houbraken' +p348339 +sg291130 +S'engraving and etching on laid paper' +p348340 +sg291132 +S'1740' +p348341 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d689.jpg' +p348342 +sg291136 +g27 +sa(dp348343 +g291134 +S'William Trumbull' +p348344 +sg291137 +S'Artist Information (' +p348345 +sg291130 +S'(artist after)' +p348346 +sg291132 +S'\n' +p348347 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a000782e.jpg' +p348348 +sg291136 +g27 +sa(dp348349 +g291134 +S'Pierre Mignard' +p348350 +sg291137 +S'Artist Information (' +p348351 +sg291130 +S'(artist after)' +p348352 +sg291132 +S'\n' +p348353 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d62c.jpg' +p348354 +sg291136 +g27 +sa(dp348355 +g291134 +S'Pierre Ignace de Braux' +p348356 +sg291137 +S'Artist Information (' +p348357 +sg291130 +S'(artist after)' +p348358 +sg291132 +S'\n' +p348359 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d68f.jpg' +p348360 +sg291136 +g27 +sa(dp348361 +g291134 +S'Hendrik Casimir II, Count of Nassau-Dietz' +p348362 +sg291137 +S'Abraham Blooteling' +p348363 +sg291130 +S'mezzotint on laid paper' +p348364 +sg291132 +S'unknown date\n' +p348365 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4cb.jpg' +p348366 +sg291136 +g27 +sa(dp348367 +g291134 +S'Johan de Wit' +p348368 +sg291137 +S'Artist Information (' +p348369 +sg291130 +S'(artist after)' +p348370 +sg291132 +S'\n' +p348371 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4c6.jpg' +p348372 +sg291136 +g27 +sa(dp348373 +g291134 +S'The Martyr of Equality' +p348374 +sg291137 +S'Isaac Cruikshank' +p348375 +sg291130 +S'hand-colored etching on laid paper' +p348376 +sg291132 +S'1793' +p348377 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007c/a0007c2f.jpg' +p348378 +sg291136 +g27 +sa(dp348379 +g291134 +S'Clio' +p348380 +sg291137 +S'Crispijn van de Passe I' +p348381 +sg291130 +S', unknown date' +p348382 +sg291132 +S'\n' +p348383 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ceb4.jpg' +p348384 +sg291136 +g27 +sa(dp348385 +g291134 +S'Interior of a Kitchen' +p348386 +sg291137 +S'David Teniers the Younger' +p348387 +sg291130 +S'etching on laid paper' +p348388 +sg291132 +S'unknown date\n' +p348389 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d449.jpg' +p348390 +sg291136 +g27 +sa(dp348391 +g291134 +S"The Cat's Concert" +p348392 +sg291137 +S'Artist Information (' +p348393 +sg291130 +S'(artist after)' +p348394 +sg291132 +S'\n' +p348395 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4c9.jpg' +p348396 +sg291136 +g27 +sa(dp348397 +g291134 +S'Section of the Church of Saint John the Baptist' +p348398 +sg291137 +S'Valerien Regnard' +p348399 +sg291130 +S'engraving on laid paper' +p348400 +sg291132 +S'unknown date\n' +p348401 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c2b.jpg' +p348402 +sg291136 +g27 +sa(dp348403 +g291134 +S'Ground Plan of the Church of Saint John the Baptist' +p348404 +sg291137 +S'Valerien Regnard' +p348405 +sg291130 +S'engraving on laid paper' +p348406 +sg291132 +S'unknown date\n' +p348407 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c2c.jpg' +p348408 +sg291136 +g27 +sa(dp348409 +g291134 +S"Moses Brought to Pharaoh's Daughter" +p348410 +sg291137 +S'Artist Information (' +p348411 +sg291130 +S'(artist)' +p348412 +sg291132 +S'\n' +p348413 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a00078ed.jpg' +p348414 +sg291136 +g27 +sa(dp348415 +g291134 +S'Design for a Baldaquin' +p348416 +sg291137 +S'French 18th Century' +p348417 +sg291130 +S'overall: 39.2 x 23.7 cm (15 7/16 x 9 5/16 in.)' +p348418 +sg291132 +S'\npen and black and brown ink over graphite on laid paper' +p348419 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a0007077.jpg' +p348420 +sg291136 +g27 +sa(dp348421 +g291134 +S'Design for a Catafalque' +p348422 +sg291137 +S'French 18th Century' +p348423 +sg291130 +S'overall: 39.1 x 24.5 cm (15 3/8 x 9 5/8 in.)' +p348424 +sg291132 +S'\npen and black and brown ink over graphite on laid paper' +p348425 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a00070d6.jpg' +p348426 +sg291136 +g27 +sa(dp348427 +g291134 +S'The Tomb of Death' +p348428 +sg291137 +S'Artist Information (' +p348429 +sg291130 +S'(artist after)' +p348430 +sg291132 +S'\n' +p348431 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca38.jpg' +p348432 +sg291136 +g27 +sa(dp348433 +g291134 +S'Johann Winckelmann' +p348434 +sg291137 +S'Angelica Kauffmann' +p348435 +sg291130 +S'engraving and etching in brown on laid paper' +p348436 +sg291132 +S'1780' +p348437 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00065/a0006511.jpg' +p348438 +sg291136 +g27 +sa(dp348439 +g291134 +S'Sepulcher for the Kings of France' +p348440 +sg291137 +S'Artist Information (' +p348441 +sg291130 +S'(artist after)' +p348442 +sg291132 +S'\n' +p348443 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc49.jpg' +p348444 +sg291136 +g27 +sa(dp348445 +g291130 +S'lithograph in black on Rives paper' +p348446 +sg291132 +S'1929' +p348447 +sg291134 +S'Breakfast' +p348448 +sg291136 +g27 +sg291137 +S'Louis Lozowick' +p348449 +sa(dp348450 +g291134 +S'Corner of Steel Plant' +p348451 +sg291137 +S'Louis Lozowick' +p348452 +sg291130 +S'lithograph in black on wove paper' +p348453 +sg291132 +S'1929' +p348454 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00052/a0005206.jpg' +p348455 +sg291136 +g27 +sa(dp348456 +g291130 +S'lithograph in black on Rives paper' +p348457 +sg291132 +S'1930' +p348458 +sg291134 +S'Self-Portrait' +p348459 +sg291136 +g27 +sg291137 +S'Louis Lozowick' +p348460 +sa(dp348461 +g291130 +S'lithograph in black on Rives paper' +p348462 +sg291132 +S'1930' +p348463 +sg291134 +S'Squash' +p348464 +sg291136 +g27 +sg291137 +S'Louis Lozowick' +p348465 +sa(dp348466 +g291130 +S'lithograph in black on wove paper' +p348467 +sg291132 +S'1936' +p348468 +sg291134 +S'Granite Quarries' +p348469 +sg291136 +g27 +sg291137 +S'Louis Lozowick' +p348470 +sa(dp348471 +g291130 +S'lithograph in black on wove paper' +p348472 +sg291132 +S'1965' +p348473 +sg291134 +S'Aerial Landscape' +p348474 +sg291136 +g27 +sg291137 +S'Louis Lozowick' +p348475 +sa(dp348476 +g291134 +S'Yellow Moon' +p348477 +sg291137 +S'Louis Lozowick' +p348478 +sg291130 +S'lithograph in blue and yellow on wove paper' +p348479 +sg291132 +S'1967' +p348480 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b1e.jpg' +p348481 +sg291136 +g27 +sa(dp348482 +g291130 +S'lithograph in black on wove paper' +p348483 +sg291132 +S'1950' +p348484 +sg291134 +S'The Retreat' +p348485 +sg291136 +g27 +sg291137 +S'June Wayne' +p348486 +sa(dp348487 +g291130 +S'lithograph in black on wove paper' +p348488 +sg291132 +S'1950' +p348489 +sg291134 +S'The Sanctified' +p348490 +sg291136 +g27 +sg291137 +S'June Wayne' +p348491 +sa(dp348492 +g291130 +S'lithograph in black on wove paper' +p348493 +sg291132 +S'1951' +p348494 +sg291134 +S'The Target' +p348495 +sg291136 +g27 +sg291137 +S'June Wayne' +p348496 +sa(dp348497 +g291130 +S'lithograph in black on wove paper' +p348498 +sg291132 +S'1951' +p348499 +sg291134 +S'Strange Moon' +p348500 +sg291136 +g27 +sg291137 +S'June Wayne' +p348501 +sa(dp348502 +g291130 +S'lithograph in black on wove paper' +p348503 +sg291132 +S'1958' +p348504 +sg291134 +S'Memory of a Tanagra--The Woman' +p348505 +sg291136 +g27 +sg291137 +S'June Wayne' +p348506 +sa(dp348507 +g291130 +S'lithograph in black on wove paper' +p348508 +sg291132 +S'1959' +p348509 +sg291134 +S'Homage \xc3\xa0 Autun' +p348510 +sg291136 +g27 +sg291137 +S'June Wayne' +p348511 +sa(dp348512 +g291130 +S'lithograph in black on Rives paper' +p348513 +sg291132 +S'published 1979' +p348514 +sg291134 +S'Star Dust' +p348515 +sg291136 +g27 +sg291137 +S'June Wayne' +p348516 +sa(dp348517 +g291130 +S'portfolio with 11 lithographs on wove paper and colophon page' +p348518 +sg291132 +S'published 1979' +p348519 +sg291134 +S'Stellar Winds' +p348520 +sg291136 +g27 +sg291137 +S'June Wayne' +p348521 +sa(dp348522 +g291130 +S'lithograph in black on Rives paper' +p348523 +sg291132 +S'published 1979' +p348524 +sg291134 +S'Wind Veil' +p348525 +sg291136 +g27 +sg291137 +S'June Wayne' +p348526 +sa(dp348527 +g291130 +S'lithograph in black on Rives paper' +p348528 +sg291132 +S'published 1979' +p348529 +sg291134 +S'Stellar Roil' +p348530 +sg291136 +g27 +sg291137 +S'June Wayne' +p348531 +sa(dp348532 +g291130 +S'lithograph in gray on Rives paper' +p348533 +sg291132 +S'published 1979' +p348534 +sg291134 +S'Astral Wave/White' +p348535 +sg291136 +g27 +sg291137 +S'June Wayne' +p348536 +sa(dp348537 +g291130 +S'lithograph in black and gray on Rives paper' +p348538 +sg291132 +S'published 1979' +p348539 +sg291134 +S'Astral Wave' +p348540 +sg291136 +g27 +sg291137 +S'June Wayne' +p348541 +sa(dp348542 +g291130 +S'color lithograph on Rives paper' +p348543 +sg291132 +S'published 1979' +p348544 +sg291134 +S'Stellar Edge State II' +p348545 +sg291136 +g27 +sg291137 +S'June Wayne' +p348546 +sa(dp348547 +g291130 +S'lithograph in black, blue, and red on Rives paper' +p348548 +sg291132 +S'published 1979' +p348549 +sg291134 +S'Double Current' +p348550 +sg291136 +g27 +sg291137 +S'June Wayne' +p348551 +sa(dp348552 +g291130 +S'color lithograph on Rives paper' +p348553 +sg291132 +S'published 1979' +p348554 +sg291134 +S'Star Shower' +p348555 +sg291136 +g27 +sg291137 +S'June Wayne' +p348556 +sa(dp348557 +g291130 +S'lithograph in green and purple on Rives paper' +p348558 +sg291132 +S'published 1979' +p348559 +sg291134 +S'Scintillae' +p348560 +sg291136 +g27 +sg291137 +S'June Wayne' +p348561 +sa(dp348562 +g291130 +S'lithograph in blue and black on Rives paper' +p348563 +sg291132 +S'published 1979' +p348564 +sg291134 +S'Debristream' +p348565 +sg291136 +g27 +sg291137 +S'June Wayne' +p348566 +sa(dp348567 +g291130 +S'lithograph in gray and black on Rives paper' +p348568 +sg291132 +S'published 1979' +p348569 +sg291134 +S'Magna Wind' +p348570 +sg291136 +g27 +sg291137 +S'June Wayne' +p348571 +sa(dp348572 +g291130 +S'American, active 20th century' +p348573 +sg291132 +S'(printer)' +p348574 +sg291134 +S'Feather' +p348575 +sg291136 +g27 +sg291137 +S'Artist Information (' +p348576 +sa(dp348577 +g291130 +S'American, active 20th century' +p348578 +sg291132 +S'(printer)' +p348579 +sg291134 +S'A Day Off' +p348580 +sg291136 +g27 +sg291137 +S'Artist Information (' +p348581 +sa(dp348582 +g291130 +S'American, active 20th century' +p348583 +sg291132 +S'(printer)' +p348584 +sg291134 +S'Studio Keys' +p348585 +sg291136 +g27 +sg291137 +S'Artist Information (' +p348586 +sa(dp348587 +g291130 +S'American, active 20th century' +p348588 +sg291132 +S'(printer)' +p348589 +sg291134 +S'High Noon' +p348590 +sg291136 +g27 +sg291137 +S'Artist Information (' +p348591 +sa(dp348592 +g291130 +S'American, active 20th century' +p348593 +sg291132 +S'(printer)' +p348594 +sg291134 +S'Three Piece Set' +p348595 +sg291136 +g27 +sg291137 +S'Artist Information (' +p348596 +sa(dp348597 +g291130 +S'American, active 20th century' +p348598 +sg291132 +S'(printer)' +p348599 +sg291134 +S'Dusk' +p348600 +sg291136 +g27 +sg291137 +S'Artist Information (' +p348601 +sa(dp348602 +g291130 +S'American, active 20th century' +p348603 +sg291132 +S'(printer)' +p348604 +sg291134 +S'Exacto' +p348605 +sg291136 +g27 +sg291137 +S'Artist Information (' +p348606 +sa(dp348607 +g291130 +S'American, active 20th century' +p348608 +sg291132 +S'(printer)' +p348609 +sg291134 +S'Solar Flame' +p348610 +sg291136 +g27 +sg291137 +S'Artist Information (' +p348611 +sa(dp348612 +g291130 +S'American, active 20th century' +p348613 +sg291132 +S'(printer)' +p348614 +sg291134 +S'Solar Flares' +p348615 +sg291136 +g27 +sg291137 +S'Artist Information (' +p348616 +sa(dp348617 +g291130 +S'American, active 20th century' +p348618 +sg291132 +S'(printer)' +p348619 +sg291134 +S'Solar Burst' +p348620 +sg291136 +g27 +sg291137 +S'Artist Information (' +p348621 +sa(dp348622 +g291130 +S'American, active 20th century' +p348623 +sg291132 +S'(printer)' +p348624 +sg291134 +S'Solar Flash' +p348625 +sg291136 +g27 +sg291137 +S'Artist Information (' +p348626 +sa(dp348627 +g291130 +S'American, active 20th century' +p348628 +sg291132 +S'(printer)' +p348629 +sg291134 +S'Solar Wave' +p348630 +sg291136 +g27 +sg291137 +S'Artist Information (' +p348631 +sa(dp348632 +g291130 +S'American, active 20th century' +p348633 +sg291132 +S'(printer)' +p348634 +sg291134 +S'Solar Refraction' +p348635 +sg291136 +g27 +sg291137 +S'Artist Information (' +p348636 +sa(dp348637 +g291130 +S'color lithograph on Rives paper' +p348638 +sg291132 +S'1984' +p348639 +sg291134 +S'Meridian' +p348640 +sg291136 +g27 +sg291137 +S'June Wayne' +p348641 +sa(dp348642 +g291130 +S'American, active 20th century' +p348643 +sg291132 +S'(printer)' +p348644 +sg291134 +S'My Palomar' +p348645 +sg291136 +g27 +sg291137 +S'Artist Information (' +p348646 +sa(dp348647 +g291130 +S'color lithograph on Rives paper' +p348648 +sg291132 +S'1984' +p348649 +sg291134 +S'Night Field' +p348650 +sg291136 +g27 +sg291137 +S'June Wayne' +p348651 +sa(dp348652 +g291130 +S'color lithograph on Rives paper' +p348653 +sg291132 +S'1984' +p348654 +sg291134 +S'Cool Take' +p348655 +sg291136 +g27 +sg291137 +S'June Wayne' +p348656 +sa(dp348657 +g291130 +S'color lithograph on Rives paper' +p348658 +sg291132 +S'1984' +p348659 +sg291134 +S'Twinight' +p348660 +sg291136 +g27 +sg291137 +S'June Wayne' +p348661 +sa(dp348662 +g291130 +S'color lithograph on Rives paper' +p348663 +sg291132 +S'1984' +p348664 +sg291134 +S'Ablaze' +p348665 +sg291136 +g27 +sg291137 +S'June Wayne' +p348666 +sa(dp348667 +g291130 +S'color lithograph on Rives paper' +p348668 +sg291132 +S'1984' +p348669 +sg291134 +S'Stetsun' +p348670 +sg291136 +g27 +sg291137 +S'June Wayne' +p348671 +sa(dp348672 +g291130 +S'color lithograph on Rives paper' +p348673 +sg291132 +S'1984' +p348674 +sg291134 +S'Solstice' +p348675 +sg291136 +g27 +sg291137 +S'June Wayne' +p348676 +sa(dp348677 +g291130 +S'color lithograph on Rives paper' +p348678 +sg291132 +S'1984' +p348679 +sg291134 +S'Earthscan' +p348680 +sg291136 +g27 +sg291137 +S'June Wayne' +p348681 +sa(dp348682 +g291130 +S'color lithograph on Rives paper' +p348683 +sg291132 +S'1984' +p348684 +sg291134 +S'Over and Out' +p348685 +sg291136 +g27 +sg291137 +S'June Wayne' +p348686 +sa(dp348687 +g291130 +S'color lithograph on Rives paper' +p348688 +sg291132 +S'1984' +p348689 +sg291134 +S'Ablaze' +p348690 +sg291136 +g27 +sg291137 +S'June Wayne' +p348691 +sa(dp348692 +g291130 +g27 +sg291132 +S'(publisher)' +p348693 +sg291134 +S'Combination' +p348694 +sg291136 +g27 +sg291137 +S'Artist Information (' +p348695 +sa(dp348696 +g291130 +g27 +sg291132 +S'(publisher)' +p348697 +sg291134 +S'Tiffany Cares' +p348698 +sg291136 +g27 +sg291137 +S'Artist Information (' +p348699 +sa(dp348700 +g291134 +S'Raimond Poisson as Crispin' +p348701 +sg291137 +S'Artist Information (' +p348702 +sg291130 +S'(artist after)' +p348703 +sg291132 +S'\n' +p348704 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d604.jpg' +p348705 +sg291136 +g27 +sa(dp348706 +g291134 +S'The Birth of the Virgin' +p348707 +sg291137 +S'Giovanni Battista Fontana' +p348708 +sg291130 +S'etching on laid paper' +p348709 +sg291132 +S'unknown date\n' +p348710 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c738.jpg' +p348711 +sg291136 +g27 +sa(dp348712 +g291134 +S'The Annunciation' +p348713 +sg291137 +S'Giovanni Battista Fontana' +p348714 +sg291130 +S'etching on laid paper' +p348715 +sg291132 +S'unknown date\n' +p348716 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c739.jpg' +p348717 +sg291136 +g27 +sa(dp348718 +g291134 +S'The Baptism of Christ' +p348719 +sg291137 +S'Giovanni Battista Fontana' +p348720 +sg291130 +S'etching on laid paper' +p348721 +sg291132 +S'unknown date\n' +p348722 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c73a.jpg' +p348723 +sg291136 +g27 +sa(dp348724 +g291134 +S'The Angel Appearing to Joseph' +p348725 +sg291137 +S'Giovanni Battista Fontana' +p348726 +sg291130 +S'etching on laid paper' +p348727 +sg291132 +S'unknown date\n' +p348728 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c73b.jpg' +p348729 +sg291136 +g27 +sa(dp348730 +g291134 +S'The Flight into Egypt' +p348731 +sg291137 +S'Giovanni Battista Fontana' +p348732 +sg291130 +S'etching on laid paper' +p348733 +sg291132 +S'unknown date\n' +p348734 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c73c.jpg' +p348735 +sg291136 +g27 +sa(dp348736 +g291134 +S'Figure Dressed as a Griffin' +p348737 +sg291137 +S'Alfred Gr\xc3\xa9vin' +p348738 +sg291130 +S'graphite on wove paper; laid down' +p348739 +sg291132 +S'unknown date\n' +p348740 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a0007171.jpg' +p348741 +sg291136 +g27 +sa(dp348742 +g291130 +S'etching in black on hand-made laid paper' +p348743 +sg291132 +S'c. 1956' +p348744 +sg291134 +S'Fish Skeletons' +p348745 +sg291136 +g27 +sg291137 +S'Hyman Bloom' +p348746 +sa(dp348747 +g291130 +S'drypoint and roulette in black on laid paper' +p348748 +sg291132 +S'1893' +p348749 +sg291134 +S'Female Nude on a Chair (Weiblicher Akt auf einem Stuhl)' +p348750 +sg291136 +g27 +sg291137 +S'Lovis Corinth' +p348751 +sa(dp348752 +g291130 +S'drypoint in black on cream wove paper' +p348753 +sg291132 +S'1896' +p348754 +sg291134 +S'Standing Girl (Stehendes M\xc3\xa4dchen)' +p348755 +sg291136 +g27 +sg291137 +S'Lovis Corinth' +p348756 +sa(dp348757 +g291134 +S'Seated Male Nude (Sitzender M\xc3\xa4nnlicher Akt)' +p348758 +sg291137 +S'Lovis Corinth' +p348759 +sg291130 +S'etching in black on laid paper' +p348760 +sg291132 +S'1908' +p348761 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b636.jpg' +p348762 +sg291136 +g27 +sa(dp348763 +g291134 +S'Young Male Nude (J\xc3\xbcnglingsakt)' +p348764 +sg291137 +S'Lovis Corinth' +p348765 +sg291130 +S'drypoint in black on Strathmore japan paper' +p348766 +sg291132 +S'1905' +p348767 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b63b.jpg' +p348768 +sg291136 +g27 +sa(dp348769 +g291134 +S'Two Nudes (Zwei Menschen)' +p348770 +sg291137 +S'Lovis Corinth' +p348771 +sg291130 +S'drypoint in brown on heavy japan paper' +p348772 +sg291132 +S'1908' +p348773 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b63d.jpg' +p348774 +sg291136 +g27 +sa(dp348775 +g291134 +S'Wife of the Artist (Gattin des K\xc3\xbcnstlers)' +p348776 +sg291137 +S'Lovis Corinth' +p348777 +sg291130 +S'drypoint in black on japan paper' +p348778 +sg291132 +S'1909' +p348779 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b637.jpg' +p348780 +sg291136 +g27 +sa(dp348781 +g291134 +S'Cows (K\xc3\xbche)' +p348782 +sg291137 +S'Lovis Corinth' +p348783 +sg291130 +S'lithograph in black on wove paper' +p348784 +sg291132 +S'1910' +p348785 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b642.jpg' +p348786 +sg291136 +g27 +sa(dp348787 +g291130 +S'etching and drypoint in black on laid paper' +p348788 +sg291132 +S'1910' +p348789 +sg291134 +S'Reclining Female Nude, Half-Length Portrait (Liegender Weiblicher Halbakt, Brustbild)' +p348790 +sg291136 +g27 +sg291137 +S'Lovis Corinth' +p348791 +sa(dp348792 +g291134 +S'Head of Woman (Frauenkopf)' +p348793 +sg291137 +S'Lovis Corinth' +p348794 +sg291130 +S'etching in black on wove paper' +p348795 +sg291132 +S'1911' +p348796 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b635.jpg' +p348797 +sg291136 +g27 +sa(dp348798 +g291134 +S'Mother and Child (Mutter und Kind)' +p348799 +sg291137 +S'Lovis Corinth' +p348800 +sg291130 +S'soft-ground etching in black on wove paper' +p348801 +sg291132 +S'1911' +p348802 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b63c.jpg' +p348803 +sg291136 +g27 +sa(dp348804 +g291130 +S'drypoint in black on laid paper' +p348805 +sg291132 +S'1911' +p348806 +sg291134 +S'Mother and Child in a Garden (Mutter und Kind im Garten)' +p348807 +sg291136 +g27 +sg291137 +S'Lovis Corinth' +p348808 +sa(dp348809 +g291134 +S'Girl Reading (Lesendes M\xc3\xa4dchen)' +p348810 +sg291137 +S'Lovis Corinth' +p348811 +sg291130 +S'lithograph in black on japan paper' +p348812 +sg291132 +S'1911' +p348813 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b640.jpg' +p348814 +sg291136 +g27 +sa(dp348815 +g291134 +S'Self-Portrait (Selbstbildnis)' +p348816 +sg291137 +S'Lovis Corinth' +p348817 +sg291130 +S'soft-ground etching in black on wove paper' +p348818 +sg291132 +S'1912' +p348819 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b638.jpg' +p348820 +sg291136 +g27 +sa(dp348821 +g291134 +S'Reclining Female Nude - I (Liegender Weiblicher Akt I)' +p348822 +sg291137 +S'Lovis Corinth' +p348823 +sg291130 +S'drypoint in black on wove paper' +p348824 +sg291132 +S'1912' +p348825 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b63e.jpg' +p348826 +sg291136 +g27 +sa(dp348827 +g291134 +S'Reclining Female Nude - II (Liegender Weiblicher Akt II)' +p348828 +sg291137 +S'Lovis Corinth' +p348829 +sg291130 +S'drypoint in black on laid paper' +p348830 +sg291132 +S'1912' +p348831 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b63f.jpg' +p348832 +sg291136 +g27 +sa(dp348833 +g291134 +S'Head of a Steer (Stierkopf)' +p348834 +sg291137 +S'Lovis Corinth' +p348835 +sg291130 +S'lithograph in black on laid paper' +p348836 +sg291132 +S'1912' +p348837 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b64b.jpg' +p348838 +sg291136 +g27 +sa(dp348839 +g291134 +S'Calves (K\xc3\xa4lber)' +p348840 +sg291137 +S'Lovis Corinth' +p348841 +sg291130 +S'lithograph in black on japan paper' +p348842 +sg291132 +S'1912' +p348843 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b643.jpg' +p348844 +sg291136 +g27 +sa(dp348845 +g291130 +S'drypoint in black on wove paper' +p348846 +sg291132 +S'1912' +p348847 +sg291134 +S'Bench in a Forest (Bank im Walde)' +p348848 +sg291136 +g27 +sg291137 +S'Lovis Corinth' +p348849 +sa(dp348850 +g291134 +S'In the Country (Auf dem Lande)' +p348851 +sg291137 +S'Lovis Corinth' +p348852 +sg291130 +S'drypoint on japan paper' +p348853 +sg291132 +S'1912' +p348854 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c510.jpg' +p348855 +sg291136 +g27 +sa(dp348856 +g291134 +S'Rams (Schafb\xc3\xb6cke)' +p348857 +sg291137 +S'Lovis Corinth' +p348858 +sg291130 +S'lithograph in black on laid paper' +p348859 +sg291132 +S'1912' +p348860 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b645.jpg' +p348861 +sg291136 +g27 +sa(dp348862 +g291134 +S'Sleeping Woman (Schlafende)' +p348863 +sg291137 +S'Lovis Corinth' +p348864 +sg291130 +S'drypoint in black on wove paper' +p348865 +sg291132 +S'1912' +p348866 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b648.jpg' +p348867 +sg291136 +g27 +sa(dp348868 +g291134 +S'Fruit Garden in Autumn (Obstgarten im Herbst)' +p348869 +sg291137 +S'Lovis Corinth' +p348870 +sg291130 +S'drypoint in black on laid paper' +p348871 +sg291132 +S'1912' +p348872 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b646.jpg' +p348873 +sg291136 +g27 +sa(dp348874 +g291130 +S'drypoint in black on wove paper' +p348875 +sg291132 +S'1912' +p348876 +sg291134 +S'Woman with Kitten (Frau mit K\xc3\xa4tzchen)' +p348877 +sg291136 +g27 +sg291137 +S'Lovis Corinth' +p348878 +sa(dp348879 +g291134 +S'Woman with Needlework (Frau mit Handarbeit)' +p348880 +sg291137 +S'Lovis Corinth' +p348881 +sg291130 +S'drypoint in black on wove paper' +p348882 +sg291132 +S'1912' +p348883 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b649.jpg' +p348884 +sg291136 +g27 +sa(dp348885 +g291130 +S'drypoint in black on laid paper' +p348886 +sg291132 +S'1913' +p348887 +sg291134 +S'Self-Portrait (Selbstbildnis)' +p348888 +sg291136 +g27 +sg291137 +S'Lovis Corinth' +p348889 +sa(dp348890 +g291134 +S'Self-Portrait in a Fur Coat (Selbstbildnis im Pelz)' +p348891 +sg291137 +S'Lovis Corinth' +p348892 +sg291130 +S'drypoint in black on laid paper' +p348893 +sg291132 +S'1913' +p348894 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b64a.jpg' +p348895 +sg291136 +g27 +sa(dp348896 +g291130 +S'drypoint in black on laid paper' +p348897 +sg291132 +S'1913' +p348898 +sg291134 +S'Portrait of a Man (Mannliches Bildnis)' +p348899 +sg291136 +g27 +sg291137 +S'Lovis Corinth' +p348900 +sa(dp348901 +g291130 +S'drypoint in black on laid paper' +p348902 +sg291132 +S'1913' +p348903 +sg291134 +S'Sketches of Horses (Pferdestudie)' +p348904 +sg291136 +g27 +sg291137 +S'Lovis Corinth' +p348905 +sa(dp348906 +g291130 +S'drypoint in black on wove paper' +p348907 +sg291132 +S'1913' +p348908 +sg291134 +S'Dogs (Hunde)' +p348909 +sg291136 +g27 +sg291137 +S'Lovis Corinth' +p348910 +sa(dp348911 +g291130 +S'drypoint in black on laid paper' +p348912 +sg291132 +S'1913' +p348913 +sg291134 +S'Dog (Hunde)' +p348914 +sg291136 +g27 +sg291137 +S'Lovis Corinth' +p348915 +sa(dp348916 +g291134 +S'Thomas Corinth' +p348917 +sg291137 +S'Lovis Corinth' +p348918 +sg291130 +S'lithograph in black on white wove paper' +p348919 +sg291132 +S'1913' +p348920 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b644.jpg' +p348921 +sg291136 +g27 +sa(dp348922 +g291134 +S'Reclining Female Nude - III (Liegender Weiblicher Akt III)' +p348923 +sg291137 +S'Lovis Corinth' +p348924 +sg291130 +S'drypoint in black on laid paper' +p348925 +sg291132 +S'1913' +p348926 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b651.jpg' +p348927 +sg291136 +g27 +sa(dp348928 +g291134 +S'Female Nude Defending Herself (Weiblicher Akt in Abwehr)' +p348929 +sg291137 +S'Lovis Corinth' +p348930 +sg291130 +S'lithograph in black on white wove paper' +p348931 +sg291132 +S'1913' +p348932 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c50d.jpg' +p348933 +sg291136 +g27 +sa(dp348934 +g291130 +S'drypoint in black on laid paper' +p348935 +sg291132 +S'1914' +p348936 +sg291134 +S'Sick Woman (Kranke Frau)' +p348937 +sg291136 +g27 +sg291137 +S'Lovis Corinth' +p348938 +sa(dp348939 +g291134 +S'Bacchanal (Bacchanale)' +p348940 +sg291137 +S'Lovis Corinth' +p348941 +sg291130 +S'drypoint in black on laid paper' +p348942 +sg291132 +S'1914' +p348943 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b64d.jpg' +p348944 +sg291136 +g27 +sa(dp348945 +g291130 +S'drypoint in black on white wove paper' +p348946 +sg291132 +S'1914' +p348947 +sg291134 +S'Half-Length Female Nude with Tambourine (Weiblicher Halbakt mit Tamburin)' +p348948 +sg291136 +g27 +sg291137 +S'Lovis Corinth' +p348949 +sa(dp348950 +g291134 +S'Prophecy (Weissagung)' +p348951 +sg291137 +S'Lovis Corinth' +p348952 +sg291130 +S'drypoint in black on laid paper' +p348953 +sg291132 +S'1914' +p348954 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b653.jpg' +p348955 +sg291136 +g27 +sa(dp348956 +g291134 +S'Self-Portrait (Selbstbildnis)' +p348957 +sg291137 +S'Lovis Corinth' +p348958 +sg291130 +S'lithograph in black on laid paper' +p348959 +sg291132 +S'1914' +p348960 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b652.jpg' +p348961 +sg291136 +g27 +sa(dp348962 +g291134 +S'Heads of Children (Kinderk\xc3\xb6pfe)' +p348963 +sg291137 +S'Lovis Corinth' +p348964 +sg291130 +S'lithograph in black on laid paper' +p348965 +sg291132 +S'1914' +p348966 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b650.jpg' +p348967 +sg291136 +g27 +sa(dp348968 +g291134 +S'Susanna in the Bath (Susanna im Bade)' +p348969 +sg291137 +S'Lovis Corinth' +p348970 +sg291130 +S'drypoint in black on laid paper' +p348971 +sg291132 +S'1914' +p348972 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5af.jpg' +p348973 +sg291136 +g27 +sa(dp348974 +g291134 +S"Joseph and Potiphar's Wife - I (Joseph und Potiphars Weib I)" +p348975 +sg291137 +S'Lovis Corinth' +p348976 +sg291130 +S'drypoint in black on wove paper' +p348977 +sg291132 +S'1914' +p348978 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b654.jpg' +p348979 +sg291136 +g27 +sa(dp348980 +g291134 +S'Harem (Der Harem)' +p348981 +sg291137 +S'Lovis Corinth' +p348982 +sg291130 +S'drypoint in black on laid paper' +p348983 +sg291132 +S'1914' +p348984 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b657.jpg' +p348985 +sg291136 +g27 +sa(dp348986 +g291134 +S'The Actor Rudolf Rittner in the Role of Florian Geyer' +p348987 +sg291137 +S'Lovis Corinth' +p348988 +sg291130 +S'drypoint in black on laid paper' +p348989 +sg291132 +S'1914' +p348990 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b655.jpg' +p348991 +sg291136 +g27 +sa(dp348992 +g291134 +S'Odysseus and the Suitor (Odysseus und die Freier)' +p348993 +sg291137 +S'Lovis Corinth' +p348994 +sg291130 +S'drypoint in black on laid paper' +p348995 +sg291132 +S'1914' +p348996 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b64e.jpg' +p348997 +sg291136 +g27 +sa(dp348998 +g291134 +S'The Knight (Der Ritter)' +p348999 +sg291137 +S'Lovis Corinth' +p349000 +sg291130 +S'etching in black on laid paper' +p349001 +sg291132 +S'1914' +p349002 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5ac.jpg' +p349003 +sg291136 +g27 +sa(dp349004 +g291134 +S'Abduction - III (Frauenraub III)' +p349005 +sg291137 +S'Lovis Corinth' +p349006 +sg291130 +S'drypoint in black on laid paper' +p349007 +sg291132 +S'1914' +p349008 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b64f.jpg' +p349009 +sg291136 +g27 +sa(dp349010 +g291134 +S'Kneeling Warrior - I (Kniender Krieger in Abwehr I)' +p349011 +sg291137 +S'Lovis Corinth' +p349012 +sg291130 +S'lithograph in black on laid paper' +p349013 +sg291132 +S'1914' +p349014 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b65d.jpg' +p349015 +sg291136 +g27 +sa(dp349016 +g291134 +S'Cow Barn - II (Kuhstall II)' +p349017 +sg291137 +S'Lovis Corinth' +p349018 +sg291130 +S'drypoint in black on laid paper' +p349019 +sg291132 +S'1914' +p349020 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5aa.jpg' +p349021 +sg291136 +g27 +sa(dp349022 +g291134 +S'Nurse (Pflegerin)' +p349023 +sg291137 +S'Lovis Corinth' +p349024 +sg291130 +S'drypoint in black on laid paper' +p349025 +sg291132 +S'1914' +p349026 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b659.jpg' +p349027 +sg291136 +g27 +sa(dp349028 +g291134 +S'Nurse (Krankenschwester)' +p349029 +sg291137 +S'Lovis Corinth' +p349030 +sg291130 +S'drypoint in black on laid paper' +p349031 +sg291132 +S'1914' +p349032 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5b0.jpg' +p349033 +sg291136 +g27 +sa(dp349034 +g291134 +S'Standard Bearer (Bannertr\xc3\xa4ger)' +p349035 +sg291137 +S'Lovis Corinth' +p349036 +sg291130 +S'lithograph in black on japan paper' +p349037 +sg291132 +S'1915' +p349038 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b65f.jpg' +p349039 +sg291136 +g27 +sa(dp349040 +g291134 +S'Boy with Dog (Knabe mit Hund)' +p349041 +sg291137 +S'Lovis Corinth' +p349042 +sg291130 +S'drypoint in black on wove paper' +p349043 +sg291132 +S'1915' +p349044 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5a5.jpg' +p349045 +sg291136 +g27 +sa(dp349046 +g291134 +S'Boy Wearing Bathing-Trunks and Straw Hat (Knabe mit Badehose und Strohhut)' +p349047 +sg291137 +S'Lovis Corinth' +p349048 +sg291130 +S'drypoint in black on laid paper' +p349049 +sg291132 +S'1915' +p349050 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b65a.jpg' +p349051 +sg291136 +g27 +sa(dp349052 +g291134 +S'Reclining Female Nude - Study for "Joseph and Potiphar\'s Wife" (Liegender Weiblicher Akt. Studie zu Joseph und Potiphar)' +p349053 +sg291137 +S'Lovis Corinth' +p349054 +sg291130 +S'drypoint in brown-black on laid paper' +p349055 +sg291132 +S'1915' +p349056 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b65b.jpg' +p349057 +sg291136 +g27 +sa(dp349058 +g291134 +S"Joseph and Potiphar's Wife - II (Joseph und Potiphars Weib II)" +p349059 +sg291137 +S'Lovis Corinth' +p349060 +sg291130 +S'drypoint in black on laid paper' +p349061 +sg291132 +S'1915' +p349062 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b65c.jpg' +p349063 +sg291136 +g27 +sa(dp349064 +g291134 +S'Self-Portrait (Selbstbildnis)' +p349065 +sg291137 +S'Lovis Corinth' +p349066 +sg291130 +S'drypoint in black on wove paper' +p349067 +sg291132 +S'1915' +p349068 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5a4.jpg' +p349069 +sg291136 +g27 +sa(dp349070 +g291134 +S'Sketch of Two Male Heads (Self-Portraits) (Zwei M\xc3\xa4nnliche Studienk\xc3\xb6pfe (Selbstbildnisse))' +p349071 +sg291137 +S'Lovis Corinth' +p349072 +sg291130 +S'drypoint in black on wove paper' +p349073 +sg291132 +S'1915' +p349074 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5a6.jpg' +p349075 +sg291136 +g27 +sa(dp349076 +g291134 +S'Assorted Heads and Self-Portrait (Verschiedene K\xc3\xb6pfe und Selbstbildnis)' +p349077 +sg291137 +S'Lovis Corinth' +p349078 +sg291130 +S'drypoint in black on laid paper' +p349079 +sg291132 +S'1915' +p349080 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b660.jpg' +p349081 +sg291136 +g27 +sa(dp349082 +g291134 +S'Self-Portrait (Selbstbildnis (Kopf))' +p349083 +sg291137 +S'Lovis Corinth' +p349084 +sg291130 +S'drypoint in black on laid paper' +p349085 +sg291132 +S'1916' +p349086 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5a2.jpg' +p349087 +sg291136 +g27 +sa(dp349088 +g291134 +S'Study of a Model (Modellstudie)' +p349089 +sg291137 +S'Lovis Corinth' +p349090 +sg291130 +S'drypoint in black on laid paper' +p349091 +sg291132 +S'1916' +p349092 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5ad.jpg' +p349093 +sg291136 +g27 +sa(dp349094 +g291134 +S'Salome' +p349095 +sg291137 +S'Lovis Corinth' +p349096 +sg291130 +S'drypoint in black on wove paper' +p349097 +sg291132 +S'1916' +p349098 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5a3.jpg' +p349099 +sg291136 +g27 +sa(dp349100 +g291134 +S'Portrait of a Man Smoking (M\xc3\xa4nnliches Bildnis mit Aufgest\xc3\xbctztem Arm)' +p349101 +sg291137 +S'Lovis Corinth' +p349102 +sg291130 +S'drypoint in black on wove paper' +p349103 +sg291132 +S'1916' +p349104 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5ae.jpg' +p349105 +sg291136 +g27 +sa(dp349106 +g291134 +S'The Artist and Death - II (Der K\xc3\xbcnstler und der Tod II)' +p349107 +sg291137 +S'Lovis Corinth' +p349108 +sg291130 +S'drypoint in black on wove paper' +p349109 +sg291132 +S'1916' +p349110 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5a7.jpg' +p349111 +sg291136 +g27 +sa(dp349112 +g291134 +S'Roses in a Glass of Water (Rosen in einem Wasserglas)' +p349113 +sg291137 +S'Lovis Corinth' +p349114 +sg291130 +S'drypoint in black on white wove paper' +p349115 +sg291132 +S'1916' +p349116 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5cb.jpg' +p349117 +sg291136 +g27 +sa(dp349118 +g291134 +S'Female Nude (Weiblicher Akt)' +p349119 +sg291137 +S'Lovis Corinth' +p349120 +sg291130 +S'drypoint in black on laid paper' +p349121 +sg291132 +S'1916' +p349122 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5d3.jpg' +p349123 +sg291136 +g27 +sa(dp349124 +g291134 +S'Seascape (K\xc3\xbcste)' +p349125 +sg291137 +S'Lovis Corinth' +p349126 +sg291130 +S'drypoint in black on white wove paper' +p349127 +sg291132 +S'1916' +p349128 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5cd.jpg' +p349129 +sg291136 +g27 +sa(dp349130 +g291134 +S'Bridge with Sign (Br\xc3\xbccke mit Tafel)' +p349131 +sg291137 +S'Lovis Corinth' +p349132 +sg291130 +S'drypoint in black on wove paper' +p349133 +sg291132 +S'1916' +p349134 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5d1.jpg' +p349135 +sg291136 +g27 +sa(dp349136 +g291134 +S'Riding-Horse (Reitpferd)' +p349137 +sg291137 +S'Lovis Corinth' +p349138 +sg291130 +S'lithograph in black on laid paper' +p349139 +sg291132 +S'1916' +p349140 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b662.jpg' +p349141 +sg291136 +g27 +sa(dp349142 +g291134 +S'Cemetery (Kirchhof)' +p349143 +sg291137 +S'Lovis Corinth' +p349144 +sg291130 +S'lithograph in black on laid paper' +p349145 +sg291132 +S'1916' +p349146 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b664.jpg' +p349147 +sg291136 +g27 +sa(dp349148 +g291134 +S'Christ Bearing the Cross (Kreuztragung)' +p349149 +sg291137 +S'Lovis Corinth' +p349150 +sg291130 +S'drypoint in black on wove paper' +p349151 +sg291132 +S'1916' +p349152 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b661.jpg' +p349153 +sg291136 +g27 +sa(dp349154 +g291134 +S'Statue of an Amazon at the Alte Museum (Amazonenstatue auf der Freitreppe des Alten Museums)' +p349155 +sg291137 +S'Lovis Corinth' +p349156 +sg291130 +S'lithograph in black on laid paper' +p349157 +sg291132 +S'1916' +p349158 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b665.jpg' +p349159 +sg291136 +g27 +sa(dp349160 +g291134 +S'Couple from East Prussia (Ostpreussisches Ehepaar)' +p349161 +sg291137 +S'Lovis Corinth' +p349162 +sg291130 +S'drypoint in black on wove paper' +p349163 +sg291132 +S'1916' +p349164 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5d5.jpg' +p349165 +sg291136 +g27 +sa(dp349166 +g291134 +S'Horseman - II (Reiter II)' +p349167 +sg291137 +S'Lovis Corinth' +p349168 +sg291130 +S'drypoint in black on wove paper' +p349169 +sg291132 +S'1916' +p349170 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5d6.jpg' +p349171 +sg291136 +g27 +sa(dp349172 +g291134 +S'Grazing Sheep (Weidende Schafe)' +p349173 +sg291137 +S'Lovis Corinth' +p349174 +sg291130 +S'drypoint in black on wove paper' +p349175 +sg291132 +S'1916' +p349176 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5ca.jpg' +p349177 +sg291136 +g27 +sa(dp349178 +g291134 +S'Double Portrait with Skeleton (Doppelbildnis mit Skelett)' +p349179 +sg291137 +S'Lovis Corinth' +p349180 +sg291130 +S'drypoint in black on japan paper' +p349181 +sg291132 +S'1916' +p349182 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5d4.jpg' +p349183 +sg291136 +g27 +sa(dp349184 +g291134 +S'Interior with Floor Lamp (Interieur mit Stehlampe)' +p349185 +sg291137 +S'Lovis Corinth' +p349186 +sg291130 +S'drypoint in black on laid paper' +p349187 +sg291132 +S'1916' +p349188 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b66c.jpg' +p349189 +sg291136 +g27 +sa(dp349190 +g291134 +S'Mother-in-Law (Schwiegermutter)' +p349191 +sg291137 +S'Lovis Corinth' +p349192 +sg291130 +S'drypoint in black on laid paper' +p349193 +sg291132 +S'1916' +p349194 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b671.jpg' +p349195 +sg291136 +g27 +sa(dp349196 +g291134 +S'Nude Bending Forward (Gebeugter Akt)' +p349197 +sg291137 +S'Lovis Corinth' +p349198 +sg291130 +S'lithograph in black on textured wove paper' +p349199 +sg291132 +S'1916' +p349200 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b666.jpg' +p349201 +sg291136 +g27 +sa(dp349202 +g291134 +S'Old Man (Alter Mann)' +p349203 +sg291137 +S'Lovis Corinth' +p349204 +sg291130 +S'drypoint in black on laid paper' +p349205 +sg291132 +S'1916' +p349206 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b66d.jpg' +p349207 +sg291136 +g27 +sa(dp349208 +g291134 +S'Monk Gazing Upward (M\xc3\xb6nch mit Erhobenem Blick)' +p349209 +sg291137 +S'Lovis Corinth' +p349210 +sg291130 +S'drypoint in black on wove paper' +p349211 +sg291132 +S'1916' +p349212 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5cc.jpg' +p349213 +sg291136 +g27 +sa(dp349214 +g291134 +S'Interior (Unter dem Kronleuchter)' +p349215 +sg291137 +S'Lovis Corinth' +p349216 +sg291130 +S'drypoint in black on laid paper' +p349217 +sg291132 +S'1916' +p349218 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b66e.jpg' +p349219 +sg291136 +g27 +sa(dp349220 +g291134 +S'Animal Studies (Verschiedene Tierstudien)' +p349221 +sg291137 +S'Lovis Corinth' +p349222 +sg291130 +S'drypoint in black on laid paper' +p349223 +sg291132 +S'1917' +p349224 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b670.jpg' +p349225 +sg291136 +g27 +sa(dp349226 +g291134 +S'Animal Studies (Verschiedene Tierstudien)' +p349227 +sg291137 +S'Lovis Corinth' +p349228 +sg291130 +S'drypoint in black on laid paper' +p349229 +sg291132 +S'1917' +p349230 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b66a.jpg' +p349231 +sg291136 +g27 +sa(dp349232 +g291134 +S'Animal Studies (Verschiedene Tierstudien)' +p349233 +sg291137 +S'Lovis Corinth' +p349234 +sg291130 +S'drypoint in black on laid paper' +p349235 +sg291132 +S'1917' +p349236 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5d2.jpg' +p349237 +sg291136 +g27 +sa(dp349238 +g291134 +S'Gerhart Hauptmann' +p349239 +sg291137 +S'Lovis Corinth' +p349240 +sg291130 +S'drypoint in black on laid paper' +p349241 +sg291132 +S'1917' +p349242 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b66b.jpg' +p349243 +sg291136 +g27 +sa(dp349244 +g291134 +S'Landscape with Dunes (D\xc3\xbcnenlandschaft)' +p349245 +sg291137 +S'Lovis Corinth' +p349246 +sg291130 +S'drypoint in black on white wove paper' +p349247 +sg291132 +S'1917' +p349248 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b669.jpg' +p349249 +sg291136 +g27 +sa(dp349250 +g291134 +S'Landscape with Cows (Landschaft mit K\xc3\xbchen)' +p349251 +sg291137 +S'Lovis Corinth' +p349252 +sg291130 +S'drypoint in black on laid paper' +p349253 +sg291132 +S'1917' +p349254 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b66f.jpg' +p349255 +sg291136 +g27 +sa(dp349256 +g291134 +S'Interior with Woman (Interieur mit Frau)' +p349257 +sg291137 +S'Lovis Corinth' +p349258 +sg291130 +S'drypoint in black on laid paper' +p349259 +sg291132 +S'1917' +p349260 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b667.jpg' +p349261 +sg291136 +g27 +sa(dp349262 +g291134 +S'Wife of the Artist (Die Gattin)' +p349263 +sg291137 +S'Lovis Corinth' +p349264 +sg291130 +S'drypoint in black on laid paper' +p349265 +sg291132 +S'1918' +p349266 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b677.jpg' +p349267 +sg291136 +g27 +sa(dp349268 +g291134 +S'The Sick Child (Das Kranke Kind)' +p349269 +sg291137 +S'Lovis Corinth' +p349270 +sg291130 +S'drypoint in black on laid paper' +p349271 +sg291132 +S'1918' +p349272 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b672.jpg' +p349273 +sg291136 +g27 +sa(dp349274 +g291134 +S'Self-Portrait with Easel (Selbstbildnis an der Staffelei)' +p349275 +sg291137 +S'Lovis Corinth' +p349276 +sg291130 +S'drypoint in black on laid paper' +p349277 +sg291132 +S'1918' +p349278 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b675.jpg' +p349279 +sg291136 +g27 +sa(dp349280 +g291134 +S'Chess Players (Schachspiel)' +p349281 +sg291137 +S'Lovis Corinth' +p349282 +sg291130 +S'drypoint in black on laid paper' +p349283 +sg291132 +S'1918' +p349284 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5cf.jpg' +p349285 +sg291136 +g27 +sa(dp349286 +g291130 +S'etching and aquatint [printed 1931]' +p349287 +sg291132 +S'1892' +p349288 +sg291134 +S'Praying Girl' +p349289 +sg291136 +g27 +sg291137 +S'K\xc3\xa4the Kollwitz' +p349290 +sa(dp349291 +g291130 +S'etching and aquatint [printed 1931]' +p349292 +sg291132 +S'1897' +p349293 +sg291134 +S"The Weavers' March" +p349294 +sg291136 +g27 +sg291137 +S'K\xc3\xa4the Kollwitz' +p349295 +sa(dp349296 +g291130 +S'etching and aquatint [printed 1931]' +p349297 +sg291132 +S'1900' +p349298 +sg291134 +S'Standing Female Nude' +p349299 +sg291136 +g27 +sg291137 +S'K\xc3\xa4the Kollwitz' +p349300 +sa(dp349301 +g291130 +S'etching and aquatint [the plate cut and printed 1931]' +p349302 +sg291132 +S'1900' +p349303 +sg291134 +S'The Downtrodden' +p349304 +sg291136 +g27 +sg291137 +S'K\xc3\xa4the Kollwitz' +p349305 +sa(dp349306 +g291130 +S'chromogenic print, c. 1972' +p349307 +sg291132 +S'1951' +p349308 +sg291134 +S'Ohio Clay Kilns' +p349309 +sg291136 +g27 +sg291137 +S'Walker Evans' +p349310 +sa(dp349311 +g291130 +S'chromogenic print' +p349312 +sg291132 +S'1970' +p349313 +sg291134 +S'Trash' +p349314 +sg291136 +g27 +sg291137 +S'Walker Evans' +p349315 +sa(dp349316 +g291134 +S'Trash' +p349317 +sg291137 +S'Walker Evans' +p349318 +sg291130 +S'chromogenic print, scored at margins with graphite' +p349319 +sg291132 +S'1970' +p349320 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e40.jpg' +p349321 +sg291136 +g27 +sa(dp349322 +g291134 +S'Connecticut Clapboard' +p349323 +sg291137 +S'Walker Evans' +p349324 +sg291130 +S'chromogenic print' +p349325 +sg291132 +S'1945' +p349326 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00064/a00064ba.jpg' +p349327 +sg291136 +g27 +sa(dp349328 +g291130 +S'chromogenic print' +p349329 +sg291132 +S'1973' +p349330 +sg291134 +S'London' +p349331 +sg291136 +g27 +sg291137 +S'Walker Evans' +p349332 +sa(dp349333 +g291130 +S'chromogenic print, c. 1972' +p349334 +sg291132 +S'1962' +p349335 +sg291134 +S'Truck and Hubcaps' +p349336 +sg291136 +g27 +sg291137 +S'Walker Evans' +p349337 +sa(dp349338 +g291134 +S'Tractor' +p349339 +sg291137 +S'Walker Evans' +p349340 +sg291130 +S'chromogenic print, c. 1972' +p349341 +sg291132 +S'1962' +p349342 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e3b.jpg' +p349343 +sg291136 +g27 +sa(dp349344 +g291130 +S'dye imbibition print, printed c. 1980' +p349345 +sg291132 +S'1957' +p349346 +sg291134 +S'Venice' +p349347 +sg291136 +g27 +sg291137 +S'Harry Callahan' +p349348 +sa(dp349349 +g291130 +S'dye imbibition print' +p349350 +sg291132 +S'1977' +p349351 +sg291134 +S'Providence' +p349352 +sg291136 +g27 +sg291137 +S'Harry Callahan' +p349353 +sa(dp349354 +g291134 +S'A Young Woman Sewing [recto]' +p349355 +sg291137 +S'Baron Dominique Vivant Denon' +p349356 +sg291130 +S'pen and brown ink over graphite on gray-blue paper' +p349357 +sg291132 +S'c. 1790' +p349358 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a0002437.jpg' +p349359 +sg291136 +g27 +sa(dp349360 +g291134 +S'A Horseman Wearing a Grande Cockade [verso]' +p349361 +sg291137 +S'Baron Dominique Vivant Denon' +p349362 +sg291130 +S'graphite on gray-blue paper' +p349363 +sg291132 +S'c. 1790' +p349364 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a0002438.jpg' +p349365 +sg291136 +g27 +sa(dp349366 +g291130 +S'gelatin silver print, 1920s' +p349367 +sg291132 +S'1916' +p349368 +sg291134 +S'Blind Woman, New York' +p349369 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349370 +sa(dp349371 +g291130 +S'gelatin silver print, 1920s' +p349372 +sg291132 +S'1916' +p349373 +sg291134 +S'Bowls' +p349374 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349375 +sa(dp349376 +g291130 +S'palladium print' +p349377 +sg291132 +S'1922' +p349378 +sg291134 +S'Alfred Stieglitz' +p349379 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349380 +sa(dp349381 +g291130 +S'gelatin silver print' +p349382 +sg291132 +S'1922' +p349383 +sg291134 +S'Alfred Stieglitz and Rebecca Strand at Lake George' +p349384 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349385 +sa(dp349386 +g291130 +S'gelatin silver print' +p349387 +sg291132 +S'1922' +p349388 +sg291134 +S'Looking Down, New York' +p349389 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349390 +sa(dp349391 +g291134 +S'Rebecca' +p349392 +sg291137 +S'Paul Strand' +p349393 +sg291130 +S'platinum print' +p349394 +sg291132 +S'1922' +p349395 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a0005341.jpg' +p349396 +sg291136 +S"Paul Strand (1890–1976) first studied photography with Lewis Hine (1874–1940), a teacher at the Ethical Culture School in New York who used the camera as a means to document the disadvantaged and effect social reforms on their behalf. Hine's photographs of immigrants arriving at Ellis Island, taken in 1904, included sympathetic, individuated portraits of these otherwise anonymous and impoverished newcomers to American society. Strand refined his own photographic technique in the following years, taking inspiration from the exhibitions at Alfred Stieglitz's Gallery "291," and from 1915 through contact with Stieglitz himself.\n In 1922 Strand married Rebecca Salsbury (1891–1968), a self-taught artist who was friendly with Stieglitz as well. One year earlier, Stieglitz had exhibited a large group of his portrait studies of O'Keeffe, including many of her nude, placing them boldly in counterpoint to his more conventional portraits of male friends and colleagues. The open sensuality of Stieglitz's work with O'Keeffe clearly influenced Strand, who used his habitual emphasis on deep, warm print tones to accentuate an impression of frank intimacy between photographer and sitter.\n " +p349397 +sa(dp349398 +g291130 +S'gelatin silver print' +p349399 +sg291132 +S'1922' +p349400 +sg291134 +S'The Docks, New York' +p349401 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349402 +sa(dp349403 +g291130 +S'gelatin silver print' +p349404 +sg291132 +S'1923' +p349405 +sg291134 +S'Lathe #1, New York' +p349406 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349407 +sa(dp349408 +g291130 +S'gelatin silver print' +p349409 +sg291132 +S'1925' +p349410 +sg291134 +S'Apartment Repainted, New York [recto]' +p349411 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349412 +sa(dp349413 +g291130 +S'gelatin silver print' +p349414 +sg291132 +S'probably 1925' +p349415 +sg291134 +S'Untitled [verso]' +p349416 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349417 +sa(dp349418 +g291130 +S'platinum print' +p349419 +sg291132 +S'1927' +p349420 +sg291134 +S'Driftwood [recto]' +p349421 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349422 +sa(dp349423 +g291130 +S'platinum print' +p349424 +sg291132 +S'unknown date\n' +p349425 +sg291134 +S'Broken Twigs, Georgetown, Maine [verso]' +p349426 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349427 +sa(dp349428 +g291130 +S'gelatin silver print' +p349429 +sg291132 +S'1927' +p349430 +sg291134 +S'Rock [recto]' +p349431 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349432 +sa(dp349433 +g291130 +S'gelatin silver print' +p349434 +sg291132 +S'1927' +p349435 +sg291134 +S'Cobweb in Rain, Georgetown, Maine [verso]' +p349436 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349437 +sa(dp349438 +g291130 +S'gelatin silver print' +p349439 +sg291132 +S'1927' +p349440 +sg291134 +S'Rock, Georgetown, Maine' +p349441 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349442 +sa(dp349443 +g291130 +S'platinum print' +p349444 +sg291132 +S'1927' +p349445 +sg291134 +S'Woods, Maine [recto]' +p349446 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349447 +sa(dp349448 +g291130 +S'platinum print' +p349449 +sg291132 +S'probably 1927' +p349450 +sg291134 +S'Mrs. Sheridan [verso]' +p349451 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349452 +sa(dp349453 +g291130 +S'gelatin silver print' +p349454 +sg291132 +S'1928' +p349455 +sg291134 +S'Driftwood, Dark Roots, Georgetown, Maine' +p349456 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349457 +sa(dp349458 +g291130 +S'platinum print' +p349459 +sg291132 +S'1928' +p349460 +sg291134 +S'Driftwood, Maine' +p349461 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349462 +sa(dp349463 +g291130 +S'gelatin silver print' +p349464 +sg291132 +S'1928' +p349465 +sg291134 +S'Toadstool and Grasses, Georgetown, Maine' +p349466 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349467 +sa(dp349468 +g291130 +S'gelatin silver print' +p349469 +sg291132 +S'1929' +p349470 +sg291134 +S'Fence and Houses, Gasp\xc3\xa9' +p349471 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349472 +sa(dp349473 +g291130 +S'platinum print' +p349474 +sg291132 +S'1929' +p349475 +sg291134 +S'Houses, Gasp\xc3\xa9' +p349476 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349477 +sa(dp349478 +g291130 +S'gelatin silver print' +p349479 +sg291132 +S'1929' +p349480 +sg291134 +S'Perc\xc3\xa9 Harbor, Gasp\xc3\xa9' +p349481 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349482 +sa(dp349483 +g291130 +S'platinum print' +p349484 +sg291132 +S'1930' +p349485 +sg291134 +S'Hacienda, near Taos, New Mexico' +p349486 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349487 +sa(dp349488 +g291130 +S'gelatin silver print' +p349489 +sg291132 +S'1931' +p349490 +sg291134 +S'City Hall, Colorado [recto]' +p349491 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349492 +sa(dp349493 +g291130 +S'gelatin silver print' +p349494 +sg291132 +S'1931' +p349495 +sg291134 +S'Deserted Building, New Mexico [verso]' +p349496 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349497 +sa(dp349498 +g291130 +S'gelatin silver print' +p349499 +sg291132 +S'1931' +p349500 +sg291134 +S'Deserted Building, New Mexico [recto]' +p349501 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349502 +sa(dp349503 +g291130 +S'gelatin silver print' +p349504 +sg291132 +S'1931' +p349505 +sg291134 +S'Red River, New Mexico [verso]' +p349506 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349507 +sa(dp349508 +g291130 +S'platinum print' +p349509 +sg291132 +S'1931' +p349510 +sg291134 +S'Near Ranchos de Taos, New Mexico' +p349511 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349512 +sa(dp349513 +g291130 +S'gelatin silver print' +p349514 +sg291132 +S'1931' +p349515 +sg291134 +S'Ranchos de Taos Church, New Mexico [recto]' +p349516 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349517 +sa(dp349518 +g291130 +S'gelatin silver print' +p349519 +sg291132 +S'probably 1927/1928' +p349520 +sg291134 +S'Maine [verso]' +p349521 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349522 +sa(dp349523 +g291130 +S'gelatin silver print' +p349524 +sg291132 +S'1931' +p349525 +sg291134 +S'Red River, New Mexico [recto]' +p349526 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349527 +sa(dp349528 +g291130 +S'gelatin silver print' +p349529 +sg291132 +S'1931' +p349530 +sg291134 +S'Deserted Building, New Mexico [verso]' +p349531 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349532 +sa(dp349533 +g291130 +S'platinum print mounted on paperboard' +p349534 +sg291132 +S'1932' +p349535 +sg291134 +S'Near Rinconada, New Mexico' +p349536 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349537 +sa(dp349538 +g291130 +S'platinum print' +p349539 +sg291132 +S'1932' +p349540 +sg291134 +S'Rebecca, New Mexico' +p349541 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349542 +sa(dp349543 +g291130 +S'platinum print' +p349544 +sg291132 +S'1933' +p349545 +sg291134 +S'Boy, Hidalgo' +p349546 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349547 +sa(dp349548 +g291130 +S'platinum print' +p349549 +sg291132 +S'1933' +p349550 +sg291134 +S'Christo, Tlacochoaya, Oaxaca' +p349551 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349552 +sa(dp349553 +g291130 +S'platinum print' +p349554 +sg291132 +S'1933' +p349555 +sg291134 +S'Man with Sombrero, Mexico' +p349556 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349557 +sa(dp349558 +g291130 +S'platinum print' +p349559 +sg291132 +S'1933' +p349560 +sg291134 +S'Man, Tenancingo [recto]' +p349561 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349562 +sa(dp349563 +g291130 +S'platinum print' +p349564 +sg291132 +S'probably 1931' +p349565 +sg291134 +S'Hacienda, New Mexico [verso]' +p349566 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349567 +sa(dp349568 +g291130 +S'platinum print' +p349569 +sg291132 +S'1933' +p349570 +sg291134 +S'Virgin, San Felipe, Oaxaca [recto]' +p349571 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349572 +sa(dp349573 +g291130 +S'platinum print' +p349574 +sg291132 +S'1933' +p349575 +sg291134 +S'Virgin [verso]' +p349576 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349577 +sa(dp349578 +g291130 +S'gelatin silver print' +p349579 +sg291132 +S'1943' +p349580 +sg291134 +S'Iron Latch, East Jamaica, Vermont' +p349581 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349582 +sa(dp349583 +g291130 +S'gelatin silver print' +p349584 +sg291132 +S'1944' +p349585 +sg291134 +S'Mr. Bennett, Vermont' +p349586 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349587 +sa(dp349588 +g291130 +S'gelatin silver print' +p349589 +sg291132 +S'1946' +p349590 +sg291134 +S'Burying Ground, Vermont' +p349591 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349592 +sa(dp349593 +g291130 +S'gelatin silver print' +p349594 +sg291132 +S'1946' +p349595 +sg291134 +S'Parlor, Prospect Harbor, Maine' +p349596 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349597 +sa(dp349598 +g291130 +S'gelatin silver print' +p349599 +sg291132 +S'1946' +p349600 +sg291134 +S'Side Porch' +p349601 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349602 +sa(dp349603 +g291130 +S'gelatin silver print' +p349604 +sg291132 +S'1946' +p349605 +sg291134 +S'Tombstone, Winged Skull' +p349606 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349607 +sa(dp349608 +g291130 +S'gelatin silver print' +p349609 +sg291132 +S'1946' +p349610 +sg291134 +S'Town Hall' +p349611 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349612 +sa(dp349613 +g291130 +S'gelatin silver print' +p349614 +sg291132 +S'1950' +p349615 +sg291134 +S'Levens, Alpes-Maritimes, Provence, France' +p349616 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349617 +sa(dp349618 +g291130 +S'gelatin silver print' +p349619 +sg291132 +S'1950' +p349620 +sg291134 +S'Wheatfield, France' +p349621 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349622 +sa(dp349623 +g291130 +S'gelatin silver print' +p349624 +sg291132 +S'1951' +p349625 +sg291134 +S'Camargue, France' +p349626 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349627 +sa(dp349628 +g291130 +S'gelatin silver print' +p349629 +sg291132 +S'1951' +p349630 +sg291134 +S'Man, Gondeville, Charente, France' +p349631 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349632 +sa(dp349633 +g291130 +S'gelatin silver print' +p349634 +sg291132 +S'1951' +p349635 +sg291134 +S'Midi-Libre, France' +p349636 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349637 +sa(dp349638 +g291130 +S'gelatin silver print' +p349639 +sg291132 +S'1952' +p349640 +sg291134 +S'Port, Adriatic, Italy' +p349641 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349642 +sa(dp349643 +g291130 +S'gelatin silver print' +p349644 +sg291132 +S'1953' +p349645 +sg291134 +S'Lusetti Family, Luzzara, Italy' +p349646 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349647 +sa(dp349648 +g291130 +S'gelatin silver print' +p349649 +sg291132 +S'1953' +p349650 +sg291134 +S'Place to Meet, Luzzara, Italy' +p349651 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349652 +sa(dp349653 +g291130 +S'gelatin silver print' +p349654 +sg291132 +S'1953' +p349655 +sg291134 +S'The Affianced, Luzzara, Italy' +p349656 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349657 +sa(dp349658 +g291130 +S'gelatin silver print' +p349659 +sg291132 +S'1953' +p349660 +sg291134 +S'The Market, Luzzara, Italy' +p349661 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349662 +sa(dp349663 +g291130 +S'gelatin silver print' +p349664 +sg291132 +S'1954' +p349665 +sg291134 +S'Alex MacDonald, South Uist, Hebrides' +p349666 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349667 +sa(dp349668 +g291130 +S'gelatin silver print' +p349669 +sg291132 +S'1954' +p349670 +sg291134 +S'Ewan MacLeod, South Uist, Hebrides' +p349671 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349672 +sa(dp349673 +g291130 +S'gelatin silver print' +p349674 +sg291132 +S'1954' +p349675 +sg291134 +S'Loch, South Uist, Hebrides' +p349676 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349677 +sa(dp349678 +g291130 +S'gelatin silver print' +p349679 +sg291132 +S'1954' +p349680 +sg291134 +S'Tide Going Out, South Uist, Hebrides' +p349681 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349682 +sa(dp349683 +g291130 +S'gelatin silver print' +p349684 +sg291132 +S'1959' +p349685 +sg291134 +S'The Market, Aswan, Egypt' +p349686 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349687 +sa(dp349688 +g291130 +S'gelatin silver print' +p349689 +sg291132 +S'1974' +p349690 +sg291134 +S'Orgeval' +p349691 +sg291136 +g27 +sg291137 +S'Paul Strand' +p349692 +sa(dp349693 +g291134 +S'Tuft of Cowslips' +p349694 +sg291137 +S'Albrecht D\xc3\xbcrer' +p349695 +sg291130 +S'gouache on vellum' +p349696 +sg291132 +S'1526' +p349697 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a000244a.jpg' +p349698 +sg291136 +g27 +sa(dp349699 +g291134 +S'Sheet of Studies [recto]' +p349700 +sg291137 +S'Leonardo da Vinci' +p349701 +sg291130 +S'pen and brown ink over black chalk on laid paper' +p349702 +sg291132 +S'probably 1470/1480' +p349703 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a00025ef.jpg' +p349704 +sg291136 +g27 +sa(dp349705 +g291134 +S'Study of a Madonna [verso]' +p349706 +sg291137 +S'Leonardo da Vinci' +p349707 +sg291130 +S'black chalk on laid paper' +p349708 +sg291132 +S'probably 1470/1480' +p349709 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004fc6.jpg' +p349710 +sg291136 +g27 +sa(dp349711 +g291134 +S'Male Nude [recto]' +p349712 +sg291137 +S'Michelangelo' +p349713 +sg291130 +S'black chalk on laid paper' +p349714 +sg291132 +S'c. 1560' +p349715 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00037/a00037c2.jpg' +p349716 +sg291136 +g27 +sa(dp349717 +g291134 +S'Male Nude [verso]' +p349718 +sg291137 +S'Michelangelo' +p349719 +sg291130 +S'black chalk on laid paper' +p349720 +sg291132 +S'c. 1560' +p349721 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004fc7.jpg' +p349722 +sg291136 +g27 +sa(dp349723 +g291134 +S'The Prophets Hosea and Jonah' +p349724 +sg291137 +S'Raphael' +p349725 +sg291130 +S'pen and brown ink with brown wash over black chalk, heightened with white and squared for transfer on laid paper' +p349726 +sg291132 +S'c. 1510' +p349727 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00037/a00037dd.jpg' +p349728 +sg291136 +g27 +sa(dp349729 +g291134 +S'Head of a Woman' +p349730 +sg291137 +S'Andrea del Sarto' +p349731 +sg291130 +S'black chalk on laid paper' +p349732 +sg291132 +S'c. 1515' +p349733 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004fcf.jpg' +p349734 +sg291136 +g27 +sa(dp349735 +g291134 +S'Study for the "Madonna della Scodella" [recto]' +p349736 +sg291137 +S'Correggio' +p349737 +sg291130 +S'pen and brown ink, brown wash, and red chalk on laid paper' +p349738 +sg291132 +S'1523/1524' +p349739 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a0002428.jpg' +p349740 +sg291136 +g27 +sa(dp349741 +g291134 +S'Saint Matthew and Saint Jerome [verso]' +p349742 +sg291137 +S'Correggio' +p349743 +sg291130 +S'pen and brown ink, brown wash, and red chalk on laid paper' +p349744 +sg291132 +S'1523/1524' +p349745 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074f7.jpg' +p349746 +sg291136 +g27 +sa(dp349747 +g291134 +S'Beggar Man and Woman' +p349748 +sg291137 +S'Rembrandt van Rijn' +p349749 +sg291130 +S'pen and brown ink on laid paper; laid down' +p349750 +sg291132 +S'c. 1630/1631' +p349751 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00051/a0005179.jpg' +p349752 +sg291136 +g27 +sa(dp349753 +g291134 +S'Esther before Ahasuerus' +p349754 +sg291137 +S'Rembrandt van Rijn' +p349755 +sg291130 +S'pen and brown ink with brown wash on laid paper' +p349756 +sg291132 +S'1655/1660' +p349757 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00050/a0005092.jpg' +p349758 +sg291136 +g27 +sa(dp349759 +g291134 +S'Saint Jerome in the Desert Listening to the Angels' +p349760 +sg291137 +S'Giovanni Battista Tiepolo' +p349761 +sg291130 +S'pen and brown ink with brown wash over black chalk, heightened with white, on laid paper' +p349762 +sg291132 +S'1728/1735' +p349763 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a0002860.jpg' +p349764 +sg291136 +g27 +sa(dp349765 +g291134 +S'The Virgin and Child Adored by Bishops, Monks, and Women' +p349766 +sg291137 +S'Giovanni Battista Tiepolo' +p349767 +sg291130 +S'pen and brown ink with brown wash over black chalk on laid paper' +p349768 +sg291132 +S'1735/1740' +p349769 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a000285f.jpg' +p349770 +sg291136 +g27 +sa(dp349771 +g291134 +S'Seated Woman Looking Down' +p349772 +sg291137 +S'Antoine Watteau' +p349773 +sg291130 +S'red and black chalk with stumping on laid paper, with later framing line in brown ink' +p349774 +sg291132 +S'c. 1720/1721' +p349775 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a00028e5.jpg' +p349776 +sg291136 +g27 +sa(dp349777 +g291134 +S'A Man Reclining and a Woman Seated on the Ground' +p349778 +sg291137 +S'Antoine Watteau' +p349779 +sg291130 +S'red, black, and white chalk on brown laid paper' +p349780 +sg291132 +S'c. 1716' +p349781 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0001d/a0001d83.jpg' +p349782 +sg291136 +g27 +sa(dp349783 +g291134 +S'Landscape with a Rustic Bridge' +p349784 +sg291137 +S'Fran\xc3\xa7ois Boucher' +p349785 +sg291130 +S'black chalk heightened with white on cream laid paper' +p349786 +sg291132 +S'c. 1740' +p349787 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00050/a00050d9.jpg' +p349788 +sg291136 +g27 +sa(dp349789 +g291134 +S'Venus Reclining on a Dolphin' +p349790 +sg291137 +S'Fran\xc3\xa7ois Boucher' +p349791 +sg291130 +S'black chalk heightened with white on brown laid paper' +p349792 +sg291132 +S'c. 1745' +p349793 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00055/a0005559.jpg' +p349794 +sg291136 +g27 +sa(dp349795 +g291134 +S'A Tired Woman with Two Children' +p349796 +sg291137 +S'Jean-Baptiste Greuze' +p349797 +sg291130 +S'pen and brown ink with brown wash over black chalk on laid paper; laid down' +p349798 +sg291132 +S'1750/1761' +p349799 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00050/a00050df.jpg' +p349800 +sg291136 +g27 +sa(dp349801 +g291134 +S'The Reading' +p349802 +sg291137 +S'Jean-Honor\xc3\xa9 Fragonard' +p349803 +sg291130 +S'brown wash on wove paper' +p349804 +sg291132 +S'c. 1765/1775' +p349805 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7cf.jpg' +p349806 +sg291136 +g27 +sa(dp349807 +g291134 +S'A Prayer for Grandpapa' +p349808 +sg291137 +S'Jean-Honor\xc3\xa9 Fragonard' +p349809 +sg291130 +S'brown wash over black chalk on laid paper' +p349810 +sg291132 +S'late 1770s' +p349811 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a0002534.jpg' +p349812 +sg291136 +g27 +sa(dp349813 +g291134 +S'The Little Preacher' +p349814 +sg291137 +S'Jean-Honor\xc3\xa9 Fragonard' +p349815 +sg291130 +S'brown wash over black chalk on laid paper' +p349816 +sg291132 +S'late 1770s' +p349817 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a0002532.jpg' +p349818 +sg291136 +g27 +sa(dp349819 +g291134 +S'Visit to the Nurse' +p349820 +sg291137 +S'Jean-Honor\xc3\xa9 Fragonard' +p349821 +sg291130 +S'gray wash and watercolor over black chalk on laid paper' +p349822 +sg291132 +S'c. 1780/1790' +p349823 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a0002535.jpg' +p349824 +sg291136 +g27 +sa(dp349825 +g291134 +S'Mrs. Charles Badham' +p349826 +sg291137 +S'Jean-Auguste-Dominique Ingres' +p349827 +sg291130 +S'graphite on wove paper' +p349828 +sg291132 +S'1816' +p349829 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00037/a00037ba.jpg' +p349830 +sg291136 +g27 +sa(dp349831 +g291134 +S'Pea Harvesters [recto]' +p349832 +sg291137 +S'Camille Pissarro' +p349833 +sg291130 +S'charcoal and watercolor on heavy wove paper' +p349834 +sg291132 +S'c. 1880' +p349835 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a00073ff.jpg' +p349836 +sg291136 +g27 +sa(dp349837 +g291134 +S"The Artist's Son Georges [verso]" +p349838 +sg291137 +S'Camille Pissarro' +p349839 +sg291130 +S'watercolor and graphite on heavy wove paper' +p349840 +sg291132 +S'c. 1880' +p349841 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a0007400.jpg' +p349842 +sg291136 +g27 +sa(dp349843 +g291134 +S'Montmorency Road' +p349844 +sg291137 +S'Camille Pissarro' +p349845 +sg291130 +S'graphite on wove paper' +p349846 +sg291132 +S'c. 1850/1860' +p349847 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00050/a00050e7.jpg' +p349848 +sg291136 +g27 +sa(dp349849 +g291134 +S'Man Wearing a Cloak [recto]' +p349850 +sg291137 +S'Edouard Manet' +p349851 +sg291130 +S'charcoal on wove paper' +p349852 +sg291132 +S'1852/1858' +p349853 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00050/a00050e3.jpg' +p349854 +sg291136 +g27 +sa(dp349855 +g291134 +S'Man Wearing a Cloak [verso]' +p349856 +sg291137 +S'Edouard Manet' +p349857 +sg291130 +S'charcoal on wove paper' +p349858 +sg291132 +S'1852/1858' +p349859 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00050/a00050e4.jpg' +p349860 +sg291136 +g27 +sa(dp349861 +g291134 +S'Laundress Carrying Linen' +p349862 +sg291137 +S'Edgar Degas' +p349863 +sg291130 +S'charcoal on laid paper' +p349864 +sg291132 +S'c. 1885/1895' +p349865 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00050/a00050da.jpg' +p349866 +sg291136 +g27 +sa(dp349867 +g291134 +S'Girlhood' +p349868 +sg291137 +S'Auguste Renoir' +p349869 +sg291130 +S'graphite on laid paper' +p349870 +sg291132 +S'c. 1890' +p349871 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00050/a0005093.jpg' +p349872 +sg291136 +g27 +sa(dp349873 +g291134 +S'Study of the "Ecorch\xc3\xa9" [recto]' +p349874 +sg291137 +S'Paul C\xc3\xa9zanne' +p349875 +sg291130 +S'graphite on wove paper' +p349876 +sg291132 +S'c. 1865/1870' +p349877 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c7ce.jpg' +p349878 +sg291136 +g27 +sa(dp349879 +g291134 +S'Father of the Artist [verso]' +p349880 +sg291137 +S'Paul C\xc3\xa9zanne' +p349881 +sg291130 +S'graphite on wove paper' +p349882 +sg291132 +S'c. 1865/1870' +p349883 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022d6.jpg' +p349884 +sg291136 +g27 +sa(dp349885 +g291134 +S'Mont Sainte-Victoire [recto]' +p349886 +sg291137 +S'Paul C\xc3\xa9zanne' +p349887 +sg291130 +S'watercolor over graphite on wove paper' +p349888 +sg291132 +S'c. 1895' +p349889 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a00028d4.jpg' +p349890 +sg291136 +g27 +sa(dp349891 +g291134 +S'Bedpost [verso]' +p349892 +sg291137 +S'Paul C\xc3\xa9zanne' +p349893 +sg291130 +S'graphite and watercolor on wove paper' +p349894 +sg291132 +S'c. 1895' +p349895 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ced.jpg' +p349896 +sg291136 +g27 +sa(dp349897 +g291134 +S'Landscape at Pont-Aven' +p349898 +sg291137 +S'Paul Gauguin' +p349899 +sg291130 +S'brush and black ink on brown textured wove paper' +p349900 +sg291132 +S'c. 1888' +p349901 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a0007163.jpg' +p349902 +sg291136 +g27 +sa(dp349903 +g291134 +S'Parau No Te Varau Ino (left); Tahitian Legend (right)' +p349904 +sg291137 +S'Paul Gauguin' +p349905 +sg291130 +S'pen and brown ink, gray wash, and black chalk on J. Whatman paper' +p349906 +sg291132 +S'c. 1890/1895' +p349907 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004fba.jpg' +p349908 +sg291136 +g27 +sa(dp349909 +g291134 +S'Tahitian Heads' +p349910 +sg291137 +S'Paul Gauguin' +p349911 +sg291130 +S'graphite on wove paper' +p349912 +sg291132 +S'c. 1891/1893' +p349913 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a00071de.jpg' +p349914 +sg291136 +g27 +sa(dp349915 +g291134 +S'Geese; Girls in Bonnets, Geese [recto]' +p349916 +sg291137 +S'Paul Gauguin' +p349917 +sg291130 +S'graphite on wove paper' +p349918 +sg291132 +S'1884-1888' +p349919 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006726.jpg' +p349920 +sg291136 +g27 +sa(dp349921 +g291134 +S'Trees; Sketch of Breton Boy [verso]' +p349922 +sg291137 +S'Paul Gauguin' +p349923 +sg291130 +S'crayon on wove paper [counterproof]' +p349924 +sg291132 +S'1884-1888' +p349925 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006727.jpg' +p349926 +sg291136 +g27 +sa(dp349927 +g291134 +S'Monkey and Cottage; Little Breton Boy [recto]' +p349928 +sg291137 +S'Paul Gauguin' +p349929 +sg291130 +S'graphite and crayon on wove paper' +p349930 +sg291132 +S'1884-1888' +p349931 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006724.jpg' +p349932 +sg291136 +g27 +sa(dp349933 +g291134 +S'Woman with Cow, and Goose; Counterproof [verso]' +p349934 +sg291137 +S'Paul Gauguin' +p349935 +sg291130 +S'crayon on wove paper [counterproof]' +p349936 +sg291132 +S'1884-1888' +p349937 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006725.jpg' +p349938 +sg291136 +g27 +sa(dp349939 +g291134 +S"Two Studies of a Child's Head; Two Studies of a Child's Head, a Woman in Profile, and a Man Wrestling an Animal [recto]" +p349940 +sg291137 +S'Paul Gauguin' +p349941 +sg291130 +S'pen and brown ink on wove paper' +p349942 +sg291132 +S'1884-1888' +p349943 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007376.jpg' +p349944 +sg291136 +g27 +sa(dp349945 +g291134 +S'Five Studies of Heads; A Boy in Profile with Studies of Hands and Feet [verso]' +p349946 +sg291137 +S'Paul Gauguin' +p349947 +sg291130 +S'pen and brown ink and graphite on wove paper' +p349948 +sg291132 +S'1884-1888' +p349949 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007377.jpg' +p349950 +sg291136 +g27 +sa(dp349951 +g291134 +S'Address List; Manuscript Page [recto]' +p349952 +sg291137 +S'Paul Gauguin' +p349953 +sg291130 +S'page of notes; pen and brown ink , crayon, and graphite on wove paper' +p349954 +sg291132 +S'1884-1888' +p349955 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006722.jpg' +p349956 +sg291136 +g27 +sa(dp349957 +g291134 +S'Manuscript Pages [verso]' +p349958 +sg291137 +S'Paul Gauguin' +p349959 +sg291130 +S'page of notes; pen and brown ink on wove paper' +p349960 +sg291132 +S'1884-1888' +p349961 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006723.jpg' +p349962 +sg291136 +g27 +sa(dp349963 +g291134 +S'"Neige" (Snow); Itinerary [recto]' +p349964 +sg291137 +S'Paul Gauguin' +p349965 +sg291130 +S'page of notes; graphite on wove paper' +p349966 +sg291132 +S'1884-1888' +p349967 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007374.jpg' +p349968 +sg291136 +g27 +sa(dp349969 +g291134 +S'Head of a Monkey; Inventory of Bottles and Beverages [verso]' +p349970 +sg291137 +S'Paul Gauguin' +p349971 +sg291130 +S'graphite, crayon, and pen and brown ink on wove paper' +p349972 +sg291132 +S'1884-1888' +p349973 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007375.jpg' +p349974 +sg291136 +g27 +sa(dp349975 +g291134 +S'Four Fantastic Forms [recto]' +p349976 +sg291137 +S'Paul Gauguin' +p349977 +sg291130 +S'graphite on wove paper' +p349978 +sg291132 +S'1884-1888' +p349979 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007372.jpg' +p349980 +sg291136 +g27 +sa(dp349981 +g291134 +S'Color Chart with Annotations [verso]' +p349982 +sg291137 +S'Paul Gauguin' +p349983 +sg291130 +S'pen and brown ink on wove paper' +p349984 +sg291132 +S'1884-1888' +p349985 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007373.jpg' +p349986 +sg291136 +g27 +sa(dp349987 +g291134 +S'Profile of a Boy and Self-Portrait [recto]' +p349988 +sg291137 +S'Paul Gauguin' +p349989 +sg291130 +S'pen and brown ink on wove paper' +p349990 +sg291132 +S'1884-1888' +p349991 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006720.jpg' +p349992 +sg291136 +g27 +sa(dp349993 +g291134 +S'Heads of a Boy and a Man (Self-Portrait?) [verso]' +p349994 +sg291137 +S'Paul Gauguin' +p349995 +sg291130 +S'pen and brown ink on wove paper' +p349996 +sg291132 +S'1884-1888' +p349997 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006721.jpg' +p349998 +sg291136 +g27 +sa(dp349999 +g291134 +S'Three Studies of a Man Wearing a Hat [recto]' +p350000 +sg291137 +S'Paul Gauguin' +p350001 +sg291130 +S'crayon on wove paper' +p350002 +sg291132 +S'1884-1888' +p350003 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007370.jpg' +p350004 +sg291136 +g27 +sa(dp350005 +g291134 +S'A Person Holding an Umbrella and a Seated Man with a Hat and a Glass [verso]' +p350006 +sg291137 +S'Paul Gauguin' +p350007 +sg291130 +S'crayon on wove paper' +p350008 +sg291132 +S'1884-1888' +p350009 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007371.jpg' +p350010 +sg291136 +g27 +sa(dp350011 +g291134 +S'Head of a Cow [recto]' +p350012 +sg291137 +S'Paul Gauguin' +p350013 +sg291130 +S'graphite on wove paper' +p350014 +sg291132 +S'1884-1888' +p350015 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000736e.jpg' +p350016 +sg291136 +g27 +sa(dp350017 +g291134 +S"Two Cow's Heads [verso]" +p350018 +sg291137 +S'Paul Gauguin' +p350019 +sg291130 +S'graphite on wove paper' +p350020 +sg291132 +S'1884-1888' +p350021 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000736f.jpg' +p350022 +sg291136 +g27 +sa(dp350023 +g291134 +S'Head of a Bearded Man with a Head of a Dog [recto]' +p350024 +sg291137 +S'Paul Gauguin' +p350025 +sg291130 +S'graphite on wove paper' +p350026 +sg291132 +S'1884-1888' +p350027 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000736d.jpg' +p350028 +sg291136 +g27 +sa(dp350029 +g291134 +S'A Bearded Man and a Man in Profile [verso]' +p350030 +sg291137 +S'Paul Gauguin' +p350031 +sg291130 +S'graphite and crayon on wove paper' +p350032 +sg291132 +S'1884-1888' +p350033 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000736c.jpg' +p350034 +sg291136 +g27 +sa(dp350035 +g291134 +S'Figure Seated on the Ground [recto]' +p350036 +sg291137 +S'Paul Gauguin' +p350037 +sg291130 +S'graphite on wove paper' +p350038 +sg291132 +S'1884-1888' +p350039 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000736b.jpg' +p350040 +sg291136 +g27 +sa(dp350041 +g291134 +S'Studies of a Cow [verso]' +p350042 +sg291137 +S'Paul Gauguin' +p350043 +sg291130 +S'graphite on wove paper' +p350044 +sg291132 +S'1884-1888' +p350045 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000736a.jpg' +p350046 +sg291136 +g27 +sa(dp350047 +g291134 +S'A Man Leaning on a Wall with Five Other Studies; Two Bearded Men Wearing Hats, and Five Other Studies [recto]' +p350048 +sg291137 +S'Paul Gauguin' +p350049 +sg291130 +S'graphite on wove paper' +p350050 +sg291132 +S'1884-1888' +p350051 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007379.jpg' +p350052 +sg291136 +g27 +sa(dp350053 +g291134 +S"Three Studies of Men's Heads, One with Spectacles; Dogs, Children, and Two Bearded Men in Profile [verso]" +p350054 +sg291137 +S'Paul Gauguin' +p350055 +sg291130 +S'graphite on wove paper' +p350056 +sg291132 +S'1884-1888' +p350057 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000737a.jpg' +p350058 +sg291136 +g27 +sa(dp350059 +g291134 +S"Two Figures and a Bench; Three Studies of Men's Heads and One of a Hand [recto]" +p350060 +sg291137 +S'Paul Gauguin' +p350061 +sg291130 +S'graphite, crayon, and pen and brown ink on wove paper' +p350062 +sg291132 +S'1884-1888' +p350063 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000737b.jpg' +p350064 +sg291136 +g27 +sa(dp350065 +g291134 +S'A Breton Woman Walking; Sketch with Stairs [verso]' +p350066 +sg291137 +S'Paul Gauguin' +p350067 +sg291130 +S'crayon on wove paper' +p350068 +sg291132 +S'1884-1888' +p350069 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000737c.jpg' +p350070 +sg291136 +g27 +sa(dp350071 +g291134 +S"Two Head Studies and a Crouching Nude Woman; Two Women's Heads and a Head of Child [recto]" +p350072 +sg291137 +S'Paul Gauguin' +p350073 +sg291130 +S'pen and brown ink on wove paper' +p350074 +sg291132 +S'1884-1888' +p350075 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000737d.jpg' +p350076 +sg291136 +g27 +sa(dp350077 +g291134 +S'Landscape with a Cottage; Profile of Boy, Profile of Man, Two Women in a Landscape, and Five Other Studies [verso]' +p350078 +sg291137 +S'Paul Gauguin' +p350079 +sg291130 +S'pen and brown ink on wove paper' +p350080 +sg291132 +S'1884-1888' +p350081 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000737e.jpg' +p350082 +sg291136 +g27 +sa(dp350083 +g291134 +S'Landscape and Head of Man; Head of Monkey Inside a Square [recto]' +p350084 +sg291137 +S'Paul Gauguin' +p350085 +sg291130 +S'graphite on wove paper' +p350086 +sg291132 +S'1884-1888' +p350087 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000737f.jpg' +p350088 +sg291136 +g27 +sa(dp350089 +g291134 +S'Four Heads and Two Figures [verso]' +p350090 +sg291137 +S'Paul Gauguin' +p350091 +sg291130 +S'crayon on wove paper' +p350092 +sg291132 +S'1884-1888' +p350093 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007380.jpg' +p350094 +sg291136 +g27 +sa(dp350095 +g291134 +S'Little Breton Boy; A Pig and a Washerwoman [recto]' +p350096 +sg291137 +S'Paul Gauguin' +p350097 +sg291130 +S'crayon on wove paper' +p350098 +sg291132 +S'1884-1888' +p350099 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007381.jpg' +p350100 +sg291136 +g27 +sa(dp350101 +g291134 +S'A Pig; Breton Peasant Kneeling [verso]' +p350102 +sg291137 +S'Paul Gauguin' +p350103 +sg291130 +S'crayon and graphite on wove paper' +p350104 +sg291132 +S'1884-1888' +p350105 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007382.jpg' +p350106 +sg291136 +g27 +sa(dp350107 +g291134 +S'Manuscript Pages [recto]' +p350108 +sg291137 +S'Paul Gauguin' +p350109 +sg291130 +S'page of notes; pen and brown ink on wove paper' +p350110 +sg291132 +S'1884-1888' +p350111 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007383.jpg' +p350112 +sg291136 +g27 +sa(dp350113 +g291134 +S'Manuscript Pages [verso]' +p350114 +sg291137 +S'Paul Gauguin' +p350115 +sg291130 +S'page of notes; pen and brown ink on wove paper' +p350116 +sg291132 +S'1884-1888' +p350117 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007384.jpg' +p350118 +sg291136 +g27 +sa(dp350119 +g291134 +S'Two Breton Figures; Bridge at Pont-Aven [recto]' +p350120 +sg291137 +S'Paul Gauguin' +p350121 +sg291130 +S'crayon on wove paper' +p350122 +sg291132 +S'1884-1888' +p350123 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007385.jpg' +p350124 +sg291136 +g27 +sa(dp350125 +g291134 +S'Two Breton Figures and Studies of Two Geese; Man Wearing Hat [verso]' +p350126 +sg291137 +S'Paul Gauguin' +p350127 +sg291130 +S'crayon on wove paper' +p350128 +sg291132 +S'1884-1888' +p350129 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007386.jpg' +p350130 +sg291136 +g27 +sa(dp350131 +g291134 +S'Manuscript Pages [recto]' +p350132 +sg291137 +S'Paul Gauguin' +p350133 +sg291130 +S'page of notes; pen and brown ink on wove paper' +p350134 +sg291132 +S'1884-1888' +p350135 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007387.jpg' +p350136 +sg291136 +g27 +sa(dp350137 +g291134 +S'Manuscript Pages [verso]' +p350138 +sg291137 +S'Paul Gauguin' +p350139 +sg291130 +S'page of notes; pen and brown ink on wove paper' +p350140 +sg291132 +S'1884-1888' +p350141 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007388.jpg' +p350142 +sg291136 +g27 +sa(dp350143 +g291134 +S'Eye and Part of Face; A Breton Woman and Two Men [recto]' +p350144 +sg291137 +S'Paul Gauguin' +p350145 +sg291130 +S'graphite and crayon on wove paper' +p350146 +sg291132 +S'1884-1888' +p350147 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007389.jpg' +p350148 +sg291136 +g27 +sa(dp350149 +g291134 +S'A Caricature and Five Forms; A Man in Profile, a Winged Creature and a Boy [verso]' +p350150 +sg291137 +S'Paul Gauguin' +p350151 +sg291130 +S'graphite on wove paper' +p350152 +sg291132 +S'1884-1888' +p350153 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000738a.jpg' +p350154 +sg291136 +g27 +sa(dp350155 +g291134 +S'Three Studies of a Pig; Breton Boy Walking with a Jug [recto]' +p350156 +sg291137 +S'Paul Gauguin' +p350157 +sg291130 +S'crayon and graphite on wove paper' +p350158 +sg291132 +S'1884-1888' +p350159 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a000672f.jpg' +p350160 +sg291136 +g27 +sa(dp350161 +g291134 +S'A Breton Boy with a Jug; Five Animal Forms [verso]' +p350162 +sg291137 +S'Paul Gauguin' +p350163 +sg291130 +S'crayon and graphite on wove paper' +p350164 +sg291132 +S'1884-1888' +p350165 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006728.jpg' +p350166 +sg291136 +g27 +sa(dp350167 +g291134 +S'Group of Human Forms; A Man Seated [recto]' +p350168 +sg291137 +S'Paul Gauguin' +p350169 +sg291130 +S'crayon on wove paper' +p350170 +sg291132 +S'1884-1888' +p350171 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000738b.jpg' +p350172 +sg291136 +g27 +sa(dp350173 +g291134 +S'Figure Studies; Studies of Soldiers [verso]' +p350174 +sg291137 +S'Paul Gauguin' +p350175 +sg291130 +S'crayon on wove paper' +p350176 +sg291132 +S'1884-1888' +p350177 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000738c.jpg' +p350178 +sg291136 +g27 +sa(dp350179 +g291134 +S'Circles and Numbers; Self-Portrait [recto]' +p350180 +sg291137 +S'Paul Gauguin' +p350181 +sg291130 +S'crayon and graphite on wove paper' +p350182 +sg291132 +S'1884-1888' +p350183 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006729.jpg' +p350184 +sg291136 +g27 +sa(dp350185 +g291134 +S'Breton Boy in a Landscape; Study of an Arm [verso]' +p350186 +sg291137 +S'Paul Gauguin' +p350187 +sg291130 +S'pen and brown ink and graphite on wove paper' +p350188 +sg291132 +S'1884-1888' +p350189 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a000672a.jpg' +p350190 +sg291136 +g27 +sa(dp350191 +g291134 +S'Two Heads; Studies of Sheep [recto]' +p350192 +sg291137 +S'Paul Gauguin' +p350193 +sg291130 +S'pen and brown ink and graphite on wove paper' +p350194 +sg291132 +S'1884-1888' +p350195 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000738d.jpg' +p350196 +sg291136 +g27 +sa(dp350197 +g291134 +S'Five Sheep; Four Head Studies [verso]' +p350198 +sg291137 +S'Paul Gauguin' +p350199 +sg291130 +S'pen and brown ink and graphite on wove paper' +p350200 +sg291132 +S'1884-1888' +p350201 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000738e.jpg' +p350202 +sg291136 +g27 +sa(dp350203 +g291134 +S'Head of a Man with a Study of His Back; Various Sketches with a Peasant Woman and a Goose [recto]' +p350204 +sg291137 +S'Paul Gauguin' +p350205 +sg291130 +S'graphite and crayon on wove paper' +p350206 +sg291132 +S'1884-1888' +p350207 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ff8a.jpg' +p350208 +sg291136 +g27 +sa(dp350209 +g291134 +S'A Grazing Cow; Head of a Woman with Her Hand on Her Cheek, and Head of a Man with His Hand on His Ear [verso]' +p350210 +sg291137 +S'Paul Gauguin' +p350211 +sg291130 +S'pen and brown ink and graphite on wove paper' +p350212 +sg291132 +S'1884-1888' +p350213 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ff8b.jpg' +p350214 +sg291136 +g27 +sa(dp350215 +g291134 +S'A Breton Woman and a Standing Man; Head and Hand of a Monkey [recto]' +p350216 +sg291137 +S'Paul Gauguin' +p350217 +sg291130 +S'crayon and graphite on wove paper' +p350218 +sg291132 +S'1884-1888' +p350219 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000738f.jpg' +p350220 +sg291136 +g27 +sa(dp350221 +g291134 +S'Breton Boy Tending Geese; Cows and a Figure Leaning on a Ledge [verso]' +p350222 +sg291137 +S'Paul Gauguin' +p350223 +sg291130 +S'crayon and graphite on wove paper' +p350224 +sg291132 +S'1884-1888' +p350225 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007390.jpg' +p350226 +sg291136 +g27 +sa(dp350227 +g291134 +S'Two Breton Women; Landscape [recto]' +p350228 +sg291137 +S'Paul Gauguin' +p350229 +sg291130 +S'crayon on wove paper' +p350230 +sg291132 +S'1884-1888' +p350231 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007391.jpg' +p350232 +sg291136 +g27 +sa(dp350233 +g291134 +S'Two Cows; A Seated Breton Woman [verso]' +p350234 +sg291137 +S'Paul Gauguin' +p350235 +sg291130 +S'crayon on wove paper' +p350236 +sg291132 +S'1884-1888' +p350237 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007392.jpg' +p350238 +sg291136 +g27 +sa(dp350239 +g291134 +S'Five Sheep; Head of a Woman and Head of a Bearded Man [recto]' +p350240 +sg291137 +S'Paul Gauguin' +p350241 +sg291130 +S'pen and brown ink and graphite on wove paper' +p350242 +sg291132 +S'1884-1888' +p350243 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007393.jpg' +p350244 +sg291136 +g27 +sa(dp350245 +g291134 +S'Man Playing Piano; Two Sheep [verso]' +p350246 +sg291137 +S'Paul Gauguin' +p350247 +sg291130 +S'pen and brown ink and graphite on wove paper' +p350248 +sg291132 +S'1884-1888' +p350249 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007394.jpg' +p350250 +sg291136 +g27 +sa(dp350251 +g291134 +S'A Head of Man with Hat, Seen from Behind; A Standing Woman [recto]' +p350252 +sg291137 +S'Paul Gauguin' +p350253 +sg291130 +S'crayon, graphite, and pen and brown ink on wove paper' +p350254 +sg291132 +S'1884-1888' +p350255 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007395.jpg' +p350256 +sg291136 +g27 +sa(dp350257 +g291134 +S"Crouching Monkey and Man's Head; Bones and Muscles [verso]" +p350258 +sg291137 +S'Paul Gauguin' +p350259 +sg291130 +S'graphite on wove paper' +p350260 +sg291132 +S'1884-1888' +p350261 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007396.jpg' +p350262 +sg291136 +g27 +sa(dp350263 +g291134 +S'Studies of Jugs and Vases; A Man with Moustache and a Boy with a Hat [recto]' +p350264 +sg291137 +S'Paul Gauguin' +p350265 +sg291130 +S'graphite and crayon on wove paper' +p350266 +sg291132 +S'1884-1888' +p350267 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007397.jpg' +p350268 +sg291136 +g27 +sa(dp350269 +g291134 +S'Four Studies of Breton Women; Shapes and Vases [verso]' +p350270 +sg291137 +S'Paul Gauguin' +p350271 +sg291130 +S'graphite and crayon on wove paper' +p350272 +sg291132 +S'1884-1888' +p350273 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004fbb.jpg' +p350274 +sg291136 +g27 +sa(dp350275 +g291134 +S"Five Studies of Soldiers and a Woman's Face; Two Figures [recto]" +p350276 +sg291137 +S'Paul Gauguin' +p350277 +sg291130 +S'crayon on wove paper' +p350278 +sg291132 +S'1884-1888' +p350279 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007398.jpg' +p350280 +sg291136 +g27 +sa(dp350281 +g291134 +S'Soldiers; Four Soldiers and a Seated Figure [verso]' +p350282 +sg291137 +S'Paul Gauguin' +p350283 +sg291130 +S'crayon on wove paper' +p350284 +sg291132 +S'1884-1888' +p350285 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a0007399.jpg' +p350286 +sg291136 +g27 +sa(dp350287 +g291134 +S'Church Tower; A Sketch of a Fan [recto]' +p350288 +sg291137 +S'Paul Gauguin' +p350289 +sg291130 +S'graphite on wove paper' +p350290 +sg291132 +S'1884-1888' +p350291 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000739a.jpg' +p350292 +sg291136 +g27 +sa(dp350293 +g291134 +S"Boy's Face; Two Sheep [verso]" +p350294 +sg291137 +S'Paul Gauguin' +p350295 +sg291130 +S'pen and brown ink and graphite on wove paper' +p350296 +sg291132 +S'1884-1888' +p350297 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000739b.jpg' +p350298 +sg291136 +g27 +sa(dp350299 +g291134 +S"A Profile and Four Shapes; Sketch of a Man's Head [recto]" +p350300 +sg291137 +S'Paul Gauguin' +p350301 +sg291130 +S'crayon, graphite, and pen and brown ink on wove paper' +p350302 +sg291132 +S'1884-1888' +p350303 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000739c.jpg' +p350304 +sg291136 +g27 +sa(dp350305 +g291134 +S'Scribbles; Two Shapes [verso]' +p350306 +sg291137 +S'Paul Gauguin' +p350307 +sg291130 +S'crayon on wove paper' +p350308 +sg291132 +S'1884-1888' +p350309 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a000739d.jpg' +p350310 +sg291136 +g27 +sa(dp350311 +g291134 +S'The Magrot House, Cuesmes' +p350312 +sg291137 +S'Vincent van Gogh' +p350313 +sg291130 +S'charcoal over graphite on wove paper' +p350314 +sg291132 +S'c. 1879/1880' +p350315 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00050/a00050dd.jpg' +p350316 +sg291136 +g27 +sa(dp350317 +g291134 +S'The Zandmennik House' +p350318 +sg291137 +S'Vincent van Gogh' +p350319 +sg291130 +S'charcoal over graphite on wove paper' +p350320 +sg291132 +S'c. 1879/1880' +p350321 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00050/a00050de.jpg' +p350322 +sg291136 +g27 +sa(dp350323 +g291134 +S'Old Man Carrying a Bucket' +p350324 +sg291137 +S'Vincent van Gogh' +p350325 +sg291130 +S'graphite with gray and black wash on brown wove paper' +p350326 +sg291132 +S'1882' +p350327 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c0e.jpg' +p350328 +sg291136 +g27 +sa(dp350329 +g291134 +S'Man Polishing a Boot' +p350330 +sg291137 +S'Vincent van Gogh' +p350331 +sg291130 +S'black chalk, graphite, and gray wash, heightened with white on wove paper' +p350332 +sg291132 +S'1882' +p350333 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c0f.jpg' +p350334 +sg291136 +g27 +sa(dp350335 +g291134 +S'Study after "The Models"' +p350336 +sg291137 +S'Georges Seurat' +p350337 +sg291130 +S'pen and brown ink over graphite on wove paper' +p350338 +sg291132 +S'1888' +p350339 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00050/a0005094.jpg' +p350340 +sg291136 +g27 +sa(dp350341 +g291130 +S'graphite on wove paper' +p350342 +sg291132 +S'c. 1920/1930' +p350343 +sg291134 +S'Girl Putting on Her Stocking' +p350344 +sg291136 +g27 +sg291137 +S'Pierre Bonnard' +p350345 +sa(dp350346 +g291134 +S'Female Nude [recto]' +p350347 +sg291137 +S'Pablo Picasso' +p350348 +sg291130 +S'graphite on wove paper' +p350349 +sg291132 +S'c. 1906' +p350350 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00050/a00050e5.jpg' +p350351 +sg291136 +g27 +sa(dp350352 +g291134 +S'Young Man [verso]' +p350353 +sg291137 +S'Pablo Picasso' +p350354 +sg291130 +S'pen and black ink on wove paper' +p350355 +sg291132 +S'c. 1906' +p350356 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00050/a00050e6.jpg' +p350357 +sg291136 +g27 +sa(dp350358 +g291134 +S'Brandywine Valley' +p350359 +sg291137 +S'Andrew Wyeth' +p350360 +sg291130 +S'watercolor on wove paper' +p350361 +sg291132 +S'1940' +p350362 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d8e7.jpg' +p350363 +sg291136 +g27 +sa(dp350364 +g291134 +S"Margot Leaning against Reine's Knee" +p350365 +sg291137 +S'Mary Cassatt' +p350366 +sg291130 +S'graphite on wove paper; graphite sketch of female figure on verso' +p350367 +sg291132 +S'c. 1902' +p350368 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004f/a0004fb9.jpg' +p350369 +sg291136 +g27 +sa(dp350370 +g291134 +S'Smiling Margot Wearing a Ruffled Bonnet' +p350371 +sg291137 +S'Mary Cassatt' +p350372 +sg291130 +S'graphite over red chalk on wove paper' +p350373 +sg291132 +S'c. 1902' +p350374 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00051/a0005174.jpg' +p350375 +sg291136 +g27 +sa(dp350376 +g291134 +S'A Landscape with Farm Buildings among Trees' +p350377 +sg291137 +S'Rembrandt van Rijn' +p350378 +sg291130 +S'pen and brown ink with brown wash on laid paper' +p350379 +sg291132 +S'c. 1650/1655' +p350380 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00050/a00050e9.jpg' +p350381 +sg291136 +g27 +sa(dp350382 +g291134 +S'Sand Fountain' +p350383 +sg291137 +S'Joseph Cornell' +p350384 +sg291130 +S'construction' +p350385 +sg291132 +S'1948' +p350386 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a0001662.jpg' +p350387 +sg291136 +g27 +sa(dp350388 +g291134 +S'Les Constellations Voisines du P\xc3\xb4le' +p350389 +sg291137 +S'Joseph Cornell' +p350390 +sg291130 +S'construction' +p350391 +sg291132 +S'1961' +p350392 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00016/a0001663.jpg' +p350393 +sg291136 +g27 +sa(dp350394 +g291130 +S'welded steel' +p350395 +sg291132 +S'1974' +p350396 +sg291134 +S'Scheherazade' +p350397 +sg291136 +g27 +sg291137 +S'Anthony Caro' +p350398 +sa(dp350399 +g291130 +S'painted and stained wood' +p350400 +sg291132 +S'1979' +p350401 +sg291134 +S'Noatauk' +p350402 +sg291136 +g27 +sg291137 +S'Martin Puryear' +p350403 +sa(dp350404 +g291134 +S'Noah Leading the Animals into the Ark' +p350405 +sg291137 +S'Giovanni Benedetto Castiglione' +p350406 +sg291130 +S'brush and oil paint on brown laid paper' +p350407 +sg291132 +S'c. 1645' +p350408 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022d3.jpg' +p350409 +sg291136 +g27 +sa(dp350410 +g291134 +S'Italian Park with a Tempietto' +p350411 +sg291137 +S'Hubert Robert' +p350412 +sg291130 +S'red chalk on laid paper; laid down' +p350413 +sg291132 +S'1763' +p350414 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026f4.jpg' +p350415 +sg291136 +g27 +sa(dp350416 +g291130 +S'graphite on wove paper' +p350417 +sg291132 +S'1935' +p350418 +sg291134 +S'Reclining Nude' +p350419 +sg291136 +g27 +sg291137 +S'Henri Matisse' +p350420 +sa(dp350421 +g291130 +S'watercolor and pen and black ink on wove paper' +p350422 +sg291132 +S'1937' +p350423 +sg291134 +S'From Cows' +p350424 +sg291136 +g27 +sg291137 +S'Arthur Dove' +p350425 +sa(dp350426 +g291134 +S'Moodna Quadrants' +p350427 +sg291137 +S'Robert Smithson' +p350428 +sg291130 +S'graphite and blue pencil on wove paper' +p350429 +sg291132 +S'1972' +p350430 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009d8.jpg' +p350431 +sg291136 +g27 +sa(dp350432 +g291130 +S'graphite on wove paper' +p350433 +sg291132 +S'1972' +p350434 +sg291134 +S'Moodna Quadrants' +p350435 +sg291136 +g27 +sg291137 +S'Robert Smithson' +p350436 +sa(dp350437 +g291130 +S'graphite and ball-point pen on laid paper' +p350438 +sg291132 +S'1972' +p350439 +sg291134 +S'Moodna Quadrants' +p350440 +sg291136 +g27 +sg291137 +S'Robert Smithson' +p350441 +sa(dp350442 +g291134 +S'Study of Cakes' +p350443 +sg291137 +S'Wayne Thiebaud' +p350444 +sg291130 +S'brush and black ink and chinese white on wove paper' +p350445 +sg291132 +S'c. 1965' +p350446 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a00009e2.jpg' +p350447 +sg291136 +g27 +sa(dp350448 +g291130 +S'charcoal on wove paper' +p350449 +sg291132 +S'1991' +p350450 +sg291134 +S'Untitled' +p350451 +sg291136 +g27 +sg291137 +S'Eric Fischl' +p350452 +sa(dp350453 +g291134 +S'Le Ventre L\xc3\xa9gislatif (The Legislative Belly)' +p350454 +sg291137 +S'Honor\xc3\xa9 Daumier' +p350455 +sg291130 +S'lithograph on wove paper' +p350456 +sg291132 +S'1834' +p350457 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009f34.jpg' +p350458 +sg291136 +g27 +sa(dp350459 +g291134 +S'Grrrrand D\xc3\xa9m\xc3\xa9nagement du Constitutionnel' +p350460 +sg291137 +S'Honor\xc3\xa9 Daumier' +p350461 +sg291130 +S'lithograph on wove paper' +p350462 +sg291132 +S'1846' +p350463 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00093/a0009386.jpg' +p350464 +sg291136 +g27 +sa(dp350465 +g291130 +S'etching in black on Rives BFK paper' +p350466 +sg291132 +S'1964' +p350467 +sg291134 +S'Bacon and Eggs' +p350468 +sg291136 +g27 +sg291137 +S'Wayne Thiebaud' +p350469 +sa(dp350470 +g291130 +S'(author)' +p350471 +sg291132 +S'\n' +p350472 +sg291134 +S'Andr\xc3\xa9 the Savoyard (vol.I)' +p350473 +sg291136 +g27 +sg291137 +S'Artist Information (' +p350474 +sa(dp350475 +g291130 +S'(author)' +p350476 +sg291132 +S'\n' +p350477 +sg291134 +S'Andr\xc3\xa9 the Savoyard (vol.II)' +p350478 +sg291136 +g27 +sg291137 +S'Artist Information (' +p350479 +sa(dp350480 +g291130 +S'(author)' +p350481 +sg291132 +S'\n' +p350482 +sg291134 +S'Monsieur Cherami (vol.I)' +p350483 +sg291136 +g27 +sg291137 +S'Artist Information (' +p350484 +sa(dp350485 +g291130 +S'(author)' +p350486 +sg291132 +S'\n' +p350487 +sg291134 +S'Monsieur Cherami (vol.II)' +p350488 +sg291136 +g27 +sg291137 +S'Artist Information (' +p350489 +sa(dp350490 +g291130 +S'(author)' +p350491 +sg291132 +S'\n' +p350492 +sg291134 +S'The Flower Girl (vol.I)' +p350493 +sg291136 +g27 +sg291137 +S'Artist Information (' +p350494 +sa(dp350495 +g291130 +S'(author)' +p350496 +sg291132 +S'\n' +p350497 +sg291134 +S'The Flower Girl (vol.II)' +p350498 +sg291136 +g27 +sg291137 +S'Artist Information (' +p350499 +sa(dp350500 +g291130 +S', published 1906' +p350501 +sg291132 +S'\n' +p350502 +sg291134 +S'Mustache (vol.I)' +p350503 +sg291136 +g27 +sg291137 +S'Charles Paul de Kock' +p350504 +sa(dp350505 +g291130 +S', published 1906' +p350506 +sg291132 +S'\n' +p350507 +sg291134 +S'Mustache (vol.II)' +p350508 +sg291136 +g27 +sg291137 +S'Charles Paul de Kock' +p350509 +sa(dp350510 +g291130 +S', published 1907' +p350511 +sg291132 +S'\n' +p350512 +sg291134 +S'Fr\xc3\xa9d\xc3\xa9rique (vol.I)' +p350513 +sg291136 +g27 +sg291137 +S'Charles Paul de Kock' +p350514 +sa(dp350515 +g291130 +S', published 1907' +p350516 +sg291132 +S'\n' +p350517 +sg291134 +S'Fr\xc3\xa9d\xc3\xa9rique (vol.II)' +p350518 +sg291136 +g27 +sg291137 +S'Charles Paul de Kock' +p350519 +sa(dp350520 +g291130 +S'(author)' +p350521 +sg291132 +S'\n' +p350522 +sg291134 +S'The Girl and the Faun' +p350523 +sg291136 +g27 +sg291137 +S'Artist Information (' +p350524 +sa(dp350525 +g291130 +S'drypoint in black on wove paper' +p350526 +sg291132 +S'1933' +p350527 +sg291134 +S'Nursing Baby' +p350528 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350529 +sa(dp350530 +g291130 +S'drypoint, black ink on laid paper' +p350531 +sg291132 +S'1933' +p350532 +sg291134 +S'Mother and Child' +p350533 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350534 +sa(dp350535 +g291130 +S'drypoint, black ink on wove paper' +p350536 +sg291132 +S'1933' +p350537 +sg291134 +S'Baby Avery' +p350538 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350539 +sa(dp350540 +g291130 +S'drypoint, brown-black ink on wove paper' +p350541 +sg291132 +S'1933' +p350542 +sg291134 +S'Sleeping Baby' +p350543 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350544 +sa(dp350545 +g291130 +S'drypoint, brown ink on wove paper' +p350546 +sg291132 +S'1934' +p350547 +sg291134 +S'My Wife Sally' +p350548 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350549 +sa(dp350550 +g291130 +S'drypoint, brown ink on wove paper' +p350551 +sg291132 +S'1935' +p350552 +sg291134 +S'Young Girl Nude' +p350553 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350554 +sa(dp350555 +g291130 +S'drypoint, brown ink on wove paper' +p350556 +sg291132 +S'1936' +p350557 +sg291134 +S'Child Cutting' +p350558 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350559 +sa(dp350560 +g291130 +S'drypoint, brown-black ink on wove paper' +p350561 +sg291132 +S'1936' +p350562 +sg291134 +S'Drawbridge' +p350563 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350564 +sa(dp350565 +g291130 +S'drypoint, black ink on wove paper' +p350566 +sg291132 +S'1936' +p350567 +sg291134 +S'Little Girl' +p350568 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350569 +sa(dp350570 +g291130 +S'drypoint, black ink on wove paper' +p350571 +sg291132 +S'1937' +p350572 +sg291134 +S'Self-Portrait' +p350573 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350574 +sa(dp350575 +g291130 +S'drypoint in black on wove paper' +p350576 +sg291132 +S'1938' +p350577 +sg291134 +S'Man with Pipe' +p350578 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350579 +sa(dp350580 +g291130 +S'drypoint, brown-black ink on wove paper' +p350581 +sg291132 +S'1939' +p350582 +sg291134 +S'Japanese Landscape' +p350583 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350584 +sa(dp350585 +g291130 +S'drypoint, black ink on wove paper' +p350586 +sg291132 +S'1939' +p350587 +sg291134 +S'Nude Reclining' +p350588 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350589 +sa(dp350590 +g291130 +S'drypoint, black ink on wove paper' +p350591 +sg291132 +S'1939' +p350592 +sg291134 +S'Rosalie' +p350593 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350594 +sa(dp350595 +g291130 +S'drypoint, brown ink on wove paper' +p350596 +sg291132 +S'1939' +p350597 +sg291134 +S'Sally with Beret' +p350598 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350599 +sa(dp350600 +g291130 +S'drypoint, black ink on laid paper' +p350601 +sg291132 +S'1939' +p350602 +sg291134 +S'Summer Holiday' +p350603 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350604 +sa(dp350605 +g291130 +S'lithograph from stone in black on wove paper' +p350606 +sg291132 +S'1939' +p350607 +sg291134 +S'Tirca' +p350608 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350609 +sa(dp350610 +g291130 +S'drypoint, brown ink on wove paper' +p350611 +sg291132 +S'1941' +p350612 +sg291134 +S'Bathers' +p350613 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350614 +sa(dp350615 +g291130 +S'drypoint, brown-black ink on wove paper' +p350616 +sg291132 +S'1941' +p350617 +sg291134 +S'Standing Nude' +p350618 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350619 +sa(dp350620 +g291130 +S'drypoint in brown-black on wove paper' +p350621 +sg291132 +S'1941' +p350622 +sg291134 +S'Reclining Nude' +p350623 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350624 +sa(dp350625 +g291130 +S'drypoint, black ink on wove paper' +p350626 +sg291132 +S'1941' +p350627 +sg291134 +S'Helen and Lily' +p350628 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350629 +sa(dp350630 +g291130 +S'drypoint, brown-black ink on wove paper' +p350631 +sg291132 +S'1941' +p350632 +sg291134 +S'Window by the Sea' +p350633 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350634 +sa(dp350635 +g291130 +S'drypoint, brown-black ink on wove paper' +p350636 +sg291132 +S'1943' +p350637 +sg291134 +S'Twisted Tree' +p350638 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350639 +sa(dp350640 +g291130 +S'drypoint, brown ink on wove paper' +p350641 +sg291132 +S'1948' +p350642 +sg291134 +S'March with Babushka (Head of March)' +p350643 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350644 +sa(dp350645 +g291130 +S'drypoint, brown ink on wove paper' +p350646 +sg291132 +S'1948' +p350647 +sg291134 +S'March at a Table (March on Terrace)' +p350648 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350649 +sa(dp350650 +g291130 +S'drypoint, brown ink on wove paper' +p350651 +sg291132 +S'1948' +p350652 +sg291134 +S'Nude with Long Torso (Reclining Nude)' +p350653 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350654 +sa(dp350655 +g291130 +S'drypoint, black ink on wove paper' +p350656 +sg291132 +S'1950' +p350657 +sg291134 +S'Nude Combing Hair' +p350658 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350659 +sa(dp350660 +g291130 +S'lithograph in black on green laid paper' +p350661 +sg291132 +S'1950' +p350662 +sg291134 +S'Seated Nude' +p350663 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350664 +sa(dp350665 +g291130 +S'4-color lithograph on wove laid paper' +p350666 +sg291132 +S'1952' +p350667 +sg291134 +S'Child' +p350668 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350669 +sa(dp350670 +g291130 +S'lithograph in black on rose wove paper' +p350671 +sg291132 +S'1952' +p350672 +sg291134 +S'Soaring Bird' +p350673 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350674 +sa(dp350675 +g291130 +S'woodcut in black on japan paper' +p350676 +sg291132 +S'1952' +p350677 +sg291134 +S'Dawn' +p350678 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350679 +sa(dp350680 +g291130 +S'woodcut, yellow and black ink on japan paper' +p350681 +sg291132 +S'1952' +p350682 +sg291134 +S'Dawn' +p350683 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350684 +sa(dp350685 +g291130 +S'woodcut in blue on japan paper' +p350686 +sg291132 +S'1952' +p350687 +sg291134 +S'Fish' +p350688 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350689 +sa(dp350690 +g291130 +S'woodcut, black ink on japan paper' +p350691 +sg291132 +S'1952' +p350692 +sg291134 +S'Pilot Fish' +p350693 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350694 +sa(dp350695 +g291130 +S'woodcut in blue and black on japan paper' +p350696 +sg291132 +S'1952' +p350697 +sg291134 +S'Pilot Fish' +p350698 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350699 +sa(dp350700 +g291130 +S'woodcut, black ink on japan paper' +p350701 +sg291132 +S'1952' +p350702 +sg291134 +S'Three Birds' +p350703 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350704 +sa(dp350705 +g291130 +S'woodcut, yellow and black ink on japan paper' +p350706 +sg291132 +S'1952' +p350707 +sg291134 +S'Three Birds' +p350708 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350709 +sa(dp350710 +g291130 +S'woodcut, blue and black ink on japan paper' +p350711 +sg291132 +S'1952' +p350712 +sg291134 +S'Three Birds' +p350713 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350714 +sa(dp350715 +g291130 +S"woodcut in black on japan paper [artist's proof]" +p350716 +sg291132 +S'1952' +p350717 +sg291134 +S'Two Birds' +p350718 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350719 +sa(dp350720 +g291130 +S'woodcut in green on japan paper' +p350721 +sg291132 +S'1952' +p350722 +sg291134 +S'Two Birds' +p350723 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350724 +sa(dp350725 +g291130 +S'woodcut in blue on japan paper' +p350726 +sg291132 +S'1952' +p350727 +sg291134 +S'Two Birds' +p350728 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350729 +sa(dp350730 +g291130 +S'lithograph in black on blue laid paper' +p350731 +sg291132 +S'1953' +p350732 +sg291134 +S'Fish' +p350733 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350734 +sa(dp350735 +g291130 +S'lithograph in black on blue laid paper' +p350736 +sg291132 +S'1953' +p350737 +sg291134 +S'Fantail Pigeon' +p350738 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350739 +sa(dp350740 +g291130 +S"linoleum cut in black on japan paper [artist's proof]" +p350741 +sg291132 +S'1953' +p350742 +sg291134 +S'Hooded Owl' +p350743 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350744 +sa(dp350745 +g291130 +S'woodcut in black on japan paper' +p350746 +sg291132 +S'1953' +p350747 +sg291134 +S'Strange Bird' +p350748 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350749 +sa(dp350750 +g291130 +S'woodcut in yellow and black on japan paper' +p350751 +sg291132 +S'1953' +p350752 +sg291134 +S'Strange Bird' +p350753 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350754 +sa(dp350755 +g291130 +S'woodcut in blue on japan paper' +p350756 +sg291132 +S'1953' +p350757 +sg291134 +S'Fancy Bird' +p350758 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350759 +sa(dp350760 +g291130 +S'woodcut, yellow-brown and black ink on japan paper' +p350761 +sg291132 +S'1953' +p350762 +sg291134 +S'Fancy Bird' +p350763 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350764 +sa(dp350765 +g291130 +S'woodcut in green and black on japan paper' +p350766 +sg291132 +S'1953' +p350767 +sg291134 +S'Fancy Bird' +p350768 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350769 +sa(dp350770 +g291130 +S'woodcut in black on japan paper' +p350771 +sg291132 +S'1953' +p350772 +sg291134 +S'Fantail Pigeon' +p350773 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350774 +sa(dp350775 +g291130 +S"woodcut in brown and black on japan paper [artist's proof]" +p350776 +sg291132 +S'1953' +p350777 +sg291134 +S'Fantail Pigeon' +p350778 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350779 +sa(dp350780 +g291130 +S'woodcut, blue and black ink on japan paper' +p350781 +sg291132 +S'1953' +p350782 +sg291134 +S'Fantail Pigeon' +p350783 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350784 +sa(dp350785 +g291130 +S'woodcut, black ink on japan paper' +p350786 +sg291132 +S'1953' +p350787 +sg291134 +S'Night Nude' +p350788 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350789 +sa(dp350790 +g291130 +S'woodcut, blue and black ink on japan paper' +p350791 +sg291132 +S'1953' +p350792 +sg291134 +S'Night Nude' +p350793 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350794 +sa(dp350795 +g291130 +S"woodcut in black on japan paper [artist's proof]" +p350796 +sg291132 +S'1953' +p350797 +sg291134 +S'Nude' +p350798 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350799 +sa(dp350800 +g291130 +S"woodcut in light blue on japan paper [artist's proof]" +p350801 +sg291132 +S'1953' +p350802 +sg291134 +S'Nude' +p350803 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350804 +sa(dp350805 +g291130 +S'woodcut in blue and black on japan paper' +p350806 +sg291132 +S'1953' +p350807 +sg291134 +S'Nude' +p350808 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350809 +sa(dp350810 +g291130 +S"woodcut in gray on japan paper [artist's proof]" +p350811 +sg291132 +S'1953' +p350812 +sg291134 +S'Nude' +p350813 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350814 +sa(dp350815 +g291130 +S"woodcut in dark green on japan paper [artist's proof]" +p350816 +sg291132 +S'1953' +p350817 +sg291134 +S'Nude' +p350818 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350819 +sa(dp350820 +g291130 +S'woodcut in black on japan paper' +p350821 +sg291132 +S'1953' +p350822 +sg291134 +S'Rooster' +p350823 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350824 +sa(dp350825 +g291130 +S'woodcut in gray on japan paper' +p350826 +sg291132 +S'1953' +p350827 +sg291134 +S'Rooster' +p350828 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350829 +sa(dp350830 +g291130 +S"woodcut in blue and black on japan paper [artist's proof]" +p350831 +sg291132 +S'1953' +p350832 +sg291134 +S'Rooster' +p350833 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350834 +sa(dp350835 +g291130 +S'woodcut, black ink on japan paper' +p350836 +sg291132 +S'1953' +p350837 +sg291134 +S'Flight' +p350838 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350839 +sa(dp350840 +g291130 +S'woodcut, blue and black ink on japan paper' +p350841 +sg291132 +S'1953' +p350842 +sg291134 +S'Flight' +p350843 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350844 +sa(dp350845 +g291130 +S"woodcut in gray on japan paper [artist's proof]" +p350846 +sg291132 +S'1953' +p350847 +sg291134 +S'Silly Hen' +p350848 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350849 +sa(dp350850 +g291130 +S"woodcut in yellow and black on japan paper [artist's proof]" +p350851 +sg291132 +S'1953' +p350852 +sg291134 +S'Silly Hen' +p350853 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350854 +sa(dp350855 +g291130 +S"woodcut in black on japan paper [artist's proof]" +p350856 +sg291132 +S'1953' +p350857 +sg291134 +S'Trees by the Sea' +p350858 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350859 +sa(dp350860 +g291130 +S'woodcut, brown and black ink on japan paper' +p350861 +sg291132 +S'1953' +p350862 +sg291134 +S'Trees by the Sea' +p350863 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350864 +sa(dp350865 +g291130 +S'woodcut, black ink on japan paper' +p350866 +sg291132 +S'1954' +p350867 +sg291134 +S'Sailboat' +p350868 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350869 +sa(dp350870 +g291130 +S'woodcut, black ink on japan paper' +p350871 +sg291132 +S'1954' +p350872 +sg291134 +S'Beach Birds' +p350873 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350874 +sa(dp350875 +g291130 +S'woodcut, blue ink on japan paper' +p350876 +sg291132 +S'1954' +p350877 +sg291134 +S'Beach Birds' +p350878 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350879 +sa(dp350880 +g291130 +S'woodcut in black on japan paper' +p350881 +sg291132 +S'1954' +p350882 +sg291134 +S'Dancer' +p350883 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350884 +sa(dp350885 +g291130 +S'woodcut, red and black ink on japan paper' +p350886 +sg291132 +S'1954' +p350887 +sg291134 +S'Dancer' +p350888 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350889 +sa(dp350890 +g291130 +S'woodcut in black on japan paper' +p350891 +sg291132 +S'1954' +p350892 +sg291134 +S'Hen' +p350893 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350894 +sa(dp350895 +g291130 +S'woodcut, yellow and black ink on japan paper' +p350896 +sg291132 +S'1954' +p350897 +sg291134 +S'Hen' +p350898 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350899 +sa(dp350900 +g291130 +S'woodcut, black ink on japan paper' +p350901 +sg291132 +S'1954' +p350902 +sg291134 +S'Lamb' +p350903 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350904 +sa(dp350905 +g291130 +S'woodcut, blue and black ink on japan paper' +p350906 +sg291132 +S'1954' +p350907 +sg291134 +S'Lamb' +p350908 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350909 +sa(dp350910 +g291130 +S'woodcut, red and black ink on japan paper' +p350911 +sg291132 +S'1954' +p350912 +sg291134 +S'Lamb' +p350913 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350914 +sa(dp350915 +g291130 +S'woodcut, yellow and black ink on japan paper' +p350916 +sg291132 +S'1954' +p350917 +sg291134 +S'Lamb' +p350918 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350919 +sa(dp350920 +g291130 +S'woodcut, blue ink on japan paper' +p350921 +sg291132 +S'1955' +p350922 +sg291134 +S'Head' +p350923 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350924 +sa(dp350925 +g291134 +S'Birds and Sea' +p350926 +sg291137 +S'Milton Avery' +p350927 +sg291130 +S'woodcut, black ink on japan paper' +p350928 +sg291132 +S'1955' +p350929 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a0f.jpg' +p350930 +sg291136 +g27 +sa(dp350931 +g291134 +S'Birds and Sea' +p350932 +sg291137 +S'Milton Avery' +p350933 +sg291130 +S'woodcut, blue ink on japan paper' +p350934 +sg291132 +S'1955' +p350935 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a10.jpg' +p350936 +sg291136 +g27 +sa(dp350937 +g291134 +S'Birds and Sea' +p350938 +sg291137 +S'Milton Avery' +p350939 +sg291130 +S'woodcut, brown and black ink on japan paper' +p350940 +sg291132 +S'1955' +p350941 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000a/a0000a11.jpg' +p350942 +sg291136 +g27 +sa(dp350943 +g291130 +S'transfer lithograph in black, red, and green on Arches wove paper' +p350944 +sg291132 +S'1963' +p350945 +sg291134 +S'Gray Sea' +p350946 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350947 +sa(dp350948 +g291130 +S'steel-faced copper' +p350949 +sg291132 +S'1933' +p350950 +sg291134 +S'Nursing Baby [zinc plate]' +p350951 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350952 +sa(dp350953 +g291130 +S'zinc plate' +p350954 +sg291132 +S'1933' +p350955 +sg291134 +S'Baby Avery [zinc plate]' +p350956 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350957 +sa(dp350958 +g291130 +S'zinc plate' +p350959 +sg291132 +S'1933' +p350960 +sg291134 +S'Sleeping Baby [zinc plate]' +p350961 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350962 +sa(dp350963 +g291130 +S'copper plate' +p350964 +sg291132 +S'1934' +p350965 +sg291134 +S'My Wife Sally [copper plate]' +p350966 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350967 +sa(dp350968 +g291130 +S'copper plate' +p350969 +sg291132 +S'1935' +p350970 +sg291134 +S'Young Girl Nude [copper plate]' +p350971 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350972 +sa(dp350973 +g291130 +S'zinc plate' +p350974 +sg291132 +S'1936' +p350975 +sg291134 +S'Child Cutting [zinc plate]' +p350976 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350977 +sa(dp350978 +g291130 +S'zinc plate' +p350979 +sg291132 +S'1936' +p350980 +sg291134 +S'Drawbridge [zinc plate]' +p350981 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350982 +sa(dp350983 +g291130 +S'zinc plate' +p350984 +sg291132 +S'1936' +p350985 +sg291134 +S'Little Girl [zinc plate]' +p350986 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350987 +sa(dp350988 +g291130 +S'zinc plate' +p350989 +sg291132 +S'1936' +p350990 +sg291134 +S'Rothko with Pipe [zinc plate]' +p350991 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350992 +sa(dp350993 +g291130 +S'copper plate' +p350994 +sg291132 +S'1937' +p350995 +sg291134 +S'Self-Portrait [copper plate]' +p350996 +sg291136 +g27 +sg291137 +S'Milton Avery' +p350997 +sa(dp350998 +g291130 +S'zinc plate' +p350999 +sg291132 +S'1938' +p351000 +sg291134 +S'Man with Pipe [zinc plate]' +p351001 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351002 +sa(dp351003 +g291130 +S'copper plate' +p351004 +sg291132 +S'1939' +p351005 +sg291134 +S'Japanese Landscape [copper plate]' +p351006 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351007 +sa(dp351008 +g291130 +S'zinc plate' +p351009 +sg291132 +S'1939' +p351010 +sg291134 +S'Nude Reclining [zinc plate]' +p351011 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351012 +sa(dp351013 +g291130 +S'copper plate' +p351014 +sg291132 +S'1939' +p351015 +sg291134 +S'Rosalie [copper plate]' +p351016 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351017 +sa(dp351018 +g291130 +S'copper plate' +p351019 +sg291132 +S'1939' +p351020 +sg291134 +S'Sally with Beret [copper plate]' +p351021 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351022 +sa(dp351023 +g291130 +S'copper plate' +p351024 +sg291132 +S'1941' +p351025 +sg291134 +S'Bathers [copper plate]' +p351026 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351027 +sa(dp351028 +g291130 +S'zinc plate' +p351029 +sg291132 +S'1941' +p351030 +sg291134 +S'Standing Nude [zinc plate]' +p351031 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351032 +sa(dp351033 +g291130 +S'zinc plate' +p351034 +sg291132 +S'1941' +p351035 +sg291134 +S'Reclining Nude [zinc plate]' +p351036 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351037 +sa(dp351038 +g291130 +S'copper plate' +p351039 +sg291132 +S'1941' +p351040 +sg291134 +S'Helen and Lily [copper plate]' +p351041 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351042 +sa(dp351043 +g291130 +S'copper plate' +p351044 +sg291132 +S'1941' +p351045 +sg291134 +S'Windows by the Sea [copper plate]' +p351046 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351047 +sa(dp351048 +g291130 +S'zinc plate' +p351049 +sg291132 +S'1943' +p351050 +sg291134 +S'Twisted Trees [zinc plate]' +p351051 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351052 +sa(dp351053 +g291130 +S'steel-faced copper' +p351054 +sg291132 +S'1948' +p351055 +sg291134 +S'March with Babushka (Head of March) [zinc plate]' +p351056 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351057 +sa(dp351058 +g291130 +S'zinc plate' +p351059 +sg291132 +S'1950' +p351060 +sg291134 +S'Nude Combing Hair [zinc plate]' +p351061 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351062 +sa(dp351063 +g291130 +S'woodblock' +p351064 +sg291132 +S'1952' +p351065 +sg291134 +S'Dawn [woodblock]' +p351066 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351067 +sa(dp351068 +g291130 +S'woodblock' +p351069 +sg291132 +S'1952' +p351070 +sg291134 +S'Fish [woodblock]' +p351071 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351072 +sa(dp351073 +g291130 +S'woodblock' +p351074 +sg291132 +S'1952' +p351075 +sg291134 +S'Pilot Fish [woodblock]' +p351076 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351077 +sa(dp351078 +g291130 +S'woodblock' +p351079 +sg291132 +S'1952' +p351080 +sg291134 +S'Three Birds [woodblock]' +p351081 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351082 +sa(dp351083 +g291130 +S'woodblock' +p351084 +sg291132 +S'1952' +p351085 +sg291134 +S'Two Birds [woodblock]' +p351086 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351087 +sa(dp351088 +g291130 +S'woodblock' +p351089 +sg291132 +S'1953' +p351090 +sg291134 +S'Strange Bird [woodblock]' +p351091 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351092 +sa(dp351093 +g291130 +S'woodblock' +p351094 +sg291132 +S'1953' +p351095 +sg291134 +S'Fancy Bird [woodblock]' +p351096 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351097 +sa(dp351098 +g291130 +S'woodblock' +p351099 +sg291132 +S'1953' +p351100 +sg291134 +S'Fantail Pigeon [woodblock]' +p351101 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351102 +sa(dp351103 +g291130 +S'linoleum mounted to wood' +p351104 +sg291132 +S'1953' +p351105 +sg291134 +S'Hooded Owl [linoleum block]' +p351106 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351107 +sa(dp351108 +g291130 +S'woodblock' +p351109 +sg291132 +S'1953' +p351110 +sg291134 +S'Night Nude [recto of woodblock]' +p351111 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351112 +sa(dp351113 +g291130 +S'woodblock' +p351114 +sg291132 +S'1955' +p351115 +sg291134 +S'Birds and Sea [verso of woodblock]' +p351116 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351117 +sa(dp351118 +g291130 +S'woodblock' +p351119 +sg291132 +S'1953' +p351120 +sg291134 +S'Nude [woodblock]' +p351121 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351122 +sa(dp351123 +g291130 +S'woodblock' +p351124 +sg291132 +S'1953' +p351125 +sg291134 +S'Rooster [woodblock]' +p351126 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351127 +sa(dp351128 +g291130 +S'woodblock' +p351129 +sg291132 +S'1953' +p351130 +sg291134 +S'Flight [woodblock]' +p351131 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351132 +sa(dp351133 +g291130 +S'woodblock' +p351134 +sg291132 +S'1953' +p351135 +sg291134 +S'Silly Hen [woodblock]' +p351136 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351137 +sa(dp351138 +g291130 +S'woodblock' +p351139 +sg291132 +S'1954' +p351140 +sg291134 +S'Sailboat [recto of woodblock]' +p351141 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351142 +sa(dp351143 +g291130 +S'woodblock' +p351144 +sg291132 +S'1954' +p351145 +sg291134 +S'Beach Birds [verso of woodblock]' +p351146 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351147 +sa(dp351148 +g291130 +S'woodblock' +p351149 +sg291132 +S'1954' +p351150 +sg291134 +S'Dancer [recto of woodblock]' +p351151 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351152 +sa(dp351153 +g291130 +S'woodblock' +p351154 +sg291132 +S'1954' +p351155 +sg291134 +S'Hen [verso of woodblock]' +p351156 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351157 +sa(dp351158 +g291130 +S'woodblock' +p351159 +sg291132 +S'1954' +p351160 +sg291134 +S'Lamb [recto of woodblock]' +p351161 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351162 +sa(dp351163 +g291130 +S'woodblock' +p351164 +sg291132 +S'1953' +p351165 +sg291134 +S'Trees by the Sea [verso of woodblock]' +p351166 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351167 +sa(dp351168 +g291130 +S'woodblock' +p351169 +sg291132 +S'1955' +p351170 +sg291134 +S'Head [woodblock]' +p351171 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351172 +sa(dp351173 +g291130 +S'woodblock' +p351174 +sg291132 +S'unknown date\n' +p351175 +sg291134 +S'Abstraction [woodblock]' +p351176 +sg291136 +g27 +sg291137 +S'Milton Avery' +p351177 +sa(dp351178 +g291130 +S"lithograph in black on wove paper [artist's proof]" +p351179 +sg291132 +S'1973' +p351180 +sg291134 +S'Self-Portrait' +p351181 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351182 +sa(dp351183 +g291130 +S"lithograph on japan paper [artist's proof]" +p351184 +sg291132 +S'1973' +p351185 +sg291134 +S'Self-Portrait' +p351186 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351187 +sa(dp351188 +g291130 +S"lithograph on cream Arches paper [artist's proof]" +p351189 +sg291132 +S'1973' +p351190 +sg291134 +S'Self-Portrait' +p351191 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351192 +sa(dp351193 +g291130 +S'lithograph in black on Rives BFK paper' +p351194 +sg291132 +S'1973' +p351195 +sg291134 +S'Self-Portrait' +p351196 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351197 +sa(dp351198 +g291130 +S"lithograph in black on wove paper [artist's proof]" +p351199 +sg291132 +S'1973' +p351200 +sg291134 +S'Self-Portrait' +p351201 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351202 +sa(dp351203 +g291130 +S"lithograph in yellow on wove paper [artist's proof]" +p351204 +sg291132 +S'1973' +p351205 +sg291134 +S'Self-Portrait' +p351206 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351207 +sa(dp351208 +g291130 +S"lithograph in black on wove paper [artist's proof]" +p351209 +sg291132 +S'1973' +p351210 +sg291134 +S'Self-Portrait' +p351211 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351212 +sa(dp351213 +g291130 +S'lithograph in black on Rives BFK paper' +p351214 +sg291132 +S'1973' +p351215 +sg291134 +S'Self-Portrait' +p351216 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351217 +sa(dp351218 +g291130 +S'lithograph in black on wove paper' +p351219 +sg291132 +S'1973' +p351220 +sg291134 +S'Self-Portrait' +p351221 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351222 +sa(dp351223 +g291130 +S'lithograph in black on Rives BFK paper' +p351224 +sg291132 +S'1973' +p351225 +sg291134 +S'Self-Portrait' +p351226 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351227 +sa(dp351228 +g291130 +S'lithograph in blue and tan on wove paper' +p351229 +sg291132 +S'1973' +p351230 +sg291134 +S'Self-Portrait' +p351231 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351232 +sa(dp351233 +g291130 +S"lithograph in blue-black on wove paper [artist's proof]" +p351234 +sg291132 +S'1973' +p351235 +sg291134 +S'Self-Portrait' +p351236 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351237 +sa(dp351238 +g291130 +S'lithograph in green-black on Rives BFK paper' +p351239 +sg291132 +S'1973' +p351240 +sg291134 +S'Self-Portrait' +p351241 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351242 +sa(dp351243 +g291130 +S'lithograph in black on wove paper' +p351244 +sg291132 +S'1973' +p351245 +sg291134 +S'Self-Portrait' +p351246 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351247 +sa(dp351248 +g291130 +S'lithograph in black on wove paper' +p351249 +sg291132 +S'1973' +p351250 +sg291134 +S'Self-Portrait' +p351251 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351252 +sa(dp351253 +g291130 +S'photolithograph in black on Rives BFK paper' +p351254 +sg291132 +S'1973' +p351255 +sg291134 +S'Self-Portrait' +p351256 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351257 +sa(dp351258 +g291130 +S'photolithograph in black on wove paper' +p351259 +sg291132 +S'1973' +p351260 +sg291134 +S'Self-Portrait' +p351261 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351262 +sa(dp351263 +g291130 +S'lithograph in black and tan on wove paper' +p351264 +sg291132 +S'1973' +p351265 +sg291134 +S'Self-Portrait' +p351266 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351267 +sa(dp351268 +g291130 +S"lithograph in black on Rives BFK paper [artist's proof]" +p351269 +sg291132 +S'1973' +p351270 +sg291134 +S'Self-Portrait' +p351271 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351272 +sa(dp351273 +g291130 +S'lithograph in black on wove paper' +p351274 +sg291132 +S'1973' +p351275 +sg291134 +S'Self-Portrait' +p351276 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351277 +sa(dp351278 +g291130 +S"lithograph in black on wove paper [artist's proof]" +p351279 +sg291132 +S'1973' +p351280 +sg291134 +S'Self-Portrait' +p351281 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351282 +sa(dp351283 +g291130 +S'lithograph in black on Rives BFK paper' +p351284 +sg291132 +S'1973' +p351285 +sg291134 +S'Self-Portrait' +p351286 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351287 +sa(dp351288 +g291130 +S'lithograph in black on Rives BFK paper' +p351289 +sg291132 +S'1973' +p351290 +sg291134 +S'Self-Portrait' +p351291 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351292 +sa(dp351293 +g291130 +S'lithograph in black on Rives BFK paper' +p351294 +sg291132 +S'1973' +p351295 +sg291134 +S'Self-Portrait' +p351296 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351297 +sa(dp351298 +g291130 +S"photolithograph in brown-black on Fabriano paper [artist's proof]" +p351299 +sg291132 +S'1973' +p351300 +sg291134 +S'Self-Portrait' +p351301 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351302 +sa(dp351303 +g291130 +S'lithograph in black on Rives BFK paper' +p351304 +sg291132 +S'1973' +p351305 +sg291134 +S'Self-Portrait' +p351306 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351307 +sa(dp351308 +g291130 +S'lithograph in green and tan on Fabriano paper' +p351309 +sg291132 +S'1973' +p351310 +sg291134 +S'Self-Portrait' +p351311 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351312 +sa(dp351313 +g291130 +S'lithograph in black on wove paper' +p351314 +sg291132 +S'1973' +p351315 +sg291134 +S'Self-Portrait' +p351316 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351317 +sa(dp351318 +g291130 +S"lithograph in red on Fabriano wove paper [artist's proof]" +p351319 +sg291132 +S'1973' +p351320 +sg291134 +S'Self-Portrait' +p351321 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351322 +sa(dp351323 +g291130 +S'lithograph in black on Japanese chine coll? mounted to Rives BFK paper' +p351324 +sg291132 +S'1973' +p351325 +sg291134 +S'Self-Portrait' +p351326 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351327 +sa(dp351328 +g291130 +S"lithograph in black on buff Rives BFK wove paper [artist's proof]" +p351329 +sg291132 +S'1973' +p351330 +sg291134 +S'Self-Portrait' +p351331 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351332 +sa(dp351333 +g291130 +S'photolithograph in brown on wove paper' +p351334 +sg291132 +S'1973' +p351335 +sg291134 +S'Self-Portrait' +p351336 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351337 +sa(dp351338 +g291130 +S"lithograph in gray on Rives BFK paper [artist's proof]" +p351339 +sg291132 +S'1973' +p351340 +sg291134 +S'Self-Portrait' +p351341 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351342 +sa(dp351343 +g291130 +S'lithograph in black on wove paper' +p351344 +sg291132 +S'1973' +p351345 +sg291134 +S'Self-Portrait' +p351346 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351347 +sa(dp351348 +g291130 +S"lithograph in black on wove paper [artist's proof]" +p351349 +sg291132 +S'1973' +p351350 +sg291134 +S'Self-Portrait' +p351351 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351352 +sa(dp351353 +g291130 +S"lithograph in red-brown on Rives BFK paper [artist's proof]" +p351354 +sg291132 +S'1974' +p351355 +sg291134 +S'Self-Portrait' +p351356 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351357 +sa(dp351358 +g291130 +S"lithograph in gray on Rives BFK paper [artist's proof]" +p351359 +sg291132 +S'1974' +p351360 +sg291134 +S'Self-Portrait' +p351361 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351362 +sa(dp351363 +g291130 +S"lithograph in gray on buff Rives BFK wove paper [artist's proof]" +p351364 +sg291132 +S'1974' +p351365 +sg291134 +S'Self-Portrait' +p351366 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351367 +sa(dp351368 +g291130 +S"lithograph in black-silver on Rives BFK wove paper [artist's proof]" +p351369 +sg291132 +S'1974' +p351370 +sg291134 +S'Self-Portrait' +p351371 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351372 +sa(dp351373 +g291130 +S"lithograph in gray on Rives BFK paper [artist's proof]" +p351374 +sg291132 +S'1974' +p351375 +sg291134 +S'Self-Portrait' +p351376 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351377 +sa(dp351378 +g291130 +S"lithograph in gray on Rives BFK wove paper [artist's proof]" +p351379 +sg291132 +S'1974' +p351380 +sg291134 +S'Self-Portrait' +p351381 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351382 +sa(dp351383 +g291130 +S"lithograph in gray on Rives BFK paper [artist's proof]" +p351384 +sg291132 +S'1974' +p351385 +sg291134 +S'Self-Portrait' +p351386 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351387 +sa(dp351388 +g291130 +S"lithograph in red on Arches Cover paper [artist's proof]" +p351389 +sg291132 +S'1974' +p351390 +sg291134 +S'Self-Portrait' +p351391 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351392 +sa(dp351393 +g291130 +S'lithograph in light tan and gray on Rives BFK wove paper' +p351394 +sg291132 +S'1974' +p351395 +sg291134 +S'Self-Portrait' +p351396 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351397 +sa(dp351398 +g291130 +S'lithograph in black on Rives BFK paper' +p351399 +sg291132 +S'1975' +p351400 +sg291134 +S'Untitled' +p351401 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351402 +sa(dp351403 +g291130 +S'lithograph in black on Rives BFK paper' +p351404 +sg291132 +S'1976' +p351405 +sg291134 +S'Untitled' +p351406 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351407 +sa(dp351408 +g291130 +S"sugarlift in black on Fabriano Tiepolo wove paper [artist's proof]" +p351409 +sg291132 +S'1982' +p351410 +sg291134 +S'Self-Portrait' +p351411 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351412 +sa(dp351413 +g291130 +S"sugarlift and spitbite in black on Fabriano Tiepolo wove paper [artist's proof]" +p351414 +sg291132 +S'1982' +p351415 +sg291134 +S'Self-Portrait' +p351416 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351417 +sa(dp351418 +g291130 +S"sugarlift in black on Fabriano Tiepolo paper [artist's proof]" +p351419 +sg291132 +S'1982' +p351420 +sg291134 +S'Self-Portrait' +p351421 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351422 +sa(dp351423 +g291130 +S"etching in black on Fabriano Tiepolo wove paper [artist's proof]" +p351424 +sg291132 +S'1982' +p351425 +sg291134 +S'Self-Portrait' +p351426 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351427 +sa(dp351428 +g291130 +S'etching in black on Fabriano Tiepolo wove paper' +p351429 +sg291132 +S'1982' +p351430 +sg291134 +S'Self-Portrait' +p351431 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351432 +sa(dp351433 +g291130 +S'etching in black on Fabriano Tiepolo wove paper' +p351434 +sg291132 +S'1982' +p351435 +sg291134 +S'Self-Portrait' +p351436 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351437 +sa(dp351438 +g291130 +S"sugarlift in black on Fabriano Tiepolo wove paper [artist's proof]" +p351439 +sg291132 +S'1982' +p351440 +sg291134 +S'Self-Portrait' +p351441 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351442 +sa(dp351443 +g291130 +S"sugarlift in black on Fabriano Tiepolo wove paper [artist's proof]" +p351444 +sg291132 +S'published 1982' +p351445 +sg291134 +S'Self-Portrait' +p351446 +sg291136 +g27 +sg291137 +S'Sam Francis' +p351447 +sa(dp351448 +g291130 +S'American, born 1939' +p351449 +sg291132 +S'(printer)' +p351450 +sg291134 +S'Untitled' +p351451 +sg291136 +g27 +sg291137 +S'Artist Information (' +p351452 +sa(dp351453 +g291130 +S'aquatint with crayon additions on wove paper' +p351454 +sg291132 +S'1981' +p351455 +sg291134 +S'Combination (working proof 1)' +p351456 +sg291136 +g27 +sg291137 +S'Richard Diebenkorn' +p351457 +sa(dp351458 +g291130 +S'color spitbite etching and aquatint with graphite and collage on wove paper' +p351459 +sg291132 +S'1981' +p351460 +sg291134 +S'Combination (working proof 4)' +p351461 +sg291136 +g27 +sg291137 +S'Richard Diebenkorn' +p351462 +sa(dp351463 +g291130 +S'color spitbite etching and aquatint with crayon on wove paper' +p351464 +sg291132 +S'1981' +p351465 +sg291134 +S'Combination (working proof 10)' +p351466 +sg291136 +g27 +sg291137 +S'Richard Diebenkorn' +p351467 +sa(dp351468 +g291130 +S'color spitbite etching and aquatint on wove paper' +p351469 +sg291132 +S'1981' +p351470 +sg291134 +S'Combination (working proof 15)' +p351471 +sg291136 +g27 +sg291137 +S'Richard Diebenkorn' +p351472 +sa(dp351473 +g291130 +S'color spitbite etching and aquatint on wove paper' +p351474 +sg291132 +S'1981' +p351475 +sg291134 +S'Combination (working proof 16)' +p351476 +sg291136 +g27 +sg291137 +S'Richard Diebenkorn' +p351477 +sa(dp351478 +g291130 +S'color spitbite etching and aquatint on wove paper' +p351479 +sg291132 +S'1981' +p351480 +sg291134 +S'Combination (working proof 17)' +p351481 +sg291136 +g27 +sg291137 +S'Richard Diebenkorn' +p351482 +sa(dp351483 +g291130 +S'color spitbite etching and aquatint on wove paper' +p351484 +sg291132 +S'1981' +p351485 +sg291134 +S'Combination (working proof 19)' +p351486 +sg291136 +g27 +sg291137 +S'Richard Diebenkorn' +p351487 +sa(dp351488 +g291130 +S'aquatint with photo-lithograph on wove paper' +p351489 +sg291132 +S'1981' +p351490 +sg291134 +S'Blue Club (working proof 7)' +p351491 +sg291136 +g27 +sg291137 +S'Richard Diebenkorn' +p351492 +sa(dp351493 +g291130 +S'aquatint with photo-lithograph on wove paper' +p351494 +sg291132 +S'1981' +p351495 +sg291134 +S'Blue Club (working proof 8)' +p351496 +sg291136 +g27 +sg291137 +S'Richard Diebenkorn' +p351497 +sa(dp351498 +g291130 +S'color woodcut on Echizen Kozo paper' +p351499 +sg291132 +S'1989' +p351500 +sg291134 +S'Pachinko' +p351501 +sg291136 +g27 +sg291137 +S'Al Held' +p351502 +sa(dp351503 +g291130 +S'color woodcut on Echizen Kozo paper' +p351504 +sg291132 +S'1989' +p351505 +sg291134 +S'Pachinko (working proof 7)' +p351506 +sg291136 +g27 +sg291137 +S'Al Held' +p351507 +sa(dp351508 +g291130 +S'color woodcut on Echizen Kozo paper' +p351509 +sg291132 +S'1989' +p351510 +sg291134 +S'Pachinko (working proof 8)' +p351511 +sg291136 +g27 +sg291137 +S'Al Held' +p351512 +sa(dp351513 +g291130 +S'color woodcut on Echizen Kozo paper' +p351514 +sg291132 +S'1989' +p351515 +sg291134 +S'Pachinko (working proof 9)' +p351516 +sg291136 +g27 +sg291137 +S'Al Held' +p351517 +sa(dp351518 +g291130 +S'etching and aquatint in black on wove paper' +p351519 +sg291132 +S'1990' +p351520 +sg291134 +S'Straits of Pohai' +p351521 +sg291136 +g27 +sg291137 +S'Al Held' +p351522 +sa(dp351523 +g291130 +S'etching and aquatint in black on wove paper' +p351524 +sg291132 +S'1990' +p351525 +sg291134 +S'Straits of Pohai (working proof 4)' +p351526 +sg291136 +g27 +sg291137 +S'Al Held' +p351527 +sa(dp351528 +g291134 +S'The Direction of Water' +p351529 +sg291137 +S'Pat Steir' +p351530 +sg291130 +S'color spitbite, soapground, soft-ground aquatint, and drypoint on Somerset textured paper' +p351531 +sg291132 +S'1991' +p351532 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a0005366.jpg' +p351533 +sg291136 +g27 +sa(dp351534 +g291130 +S'spitbite, soapground and soft-ground aquatint in black, touched with graphite on Somerset textured paper' +p351535 +sg291132 +S'1991' +p351536 +sg291134 +S'The Direction of Water (working proof 13)' +p351537 +sg291136 +g27 +sg291137 +S'Pat Steir' +p351538 +sa(dp351539 +g291130 +S'spitbite and soapground aquatint in black, gray, and pink on Somerset textured paper' +p351540 +sg291132 +S'1991' +p351541 +sg291134 +S'The Direction of Water (working proof 14)' +p351542 +sg291136 +g27 +sg291137 +S'Pat Steir' +p351543 +sa(dp351544 +g291130 +S'spitbite and soapground aquatint in gray on Somerset paper' +p351545 +sg291132 +S'1991' +p351546 +sg291134 +S'The Direction of Water (working proof 15)' +p351547 +sg291136 +g27 +sg291137 +S'Pat Steir' +p351548 +sa(dp351549 +g291130 +S'spitbite, soapground aquatint in gray and red, and drypoint in red on Somerset textured paper' +p351550 +sg291132 +S'1991' +p351551 +sg291134 +S'The Direction of Water (working proof 16)' +p351552 +sg291136 +g27 +sg291137 +S'Pat Steir' +p351553 +sa(dp351554 +g291130 +S'color spitbite and soapground aquatint on Somerset textured paper' +p351555 +sg291132 +S'1991' +p351556 +sg291134 +S'The Direction of Water (working proof 17)' +p351557 +sg291136 +g27 +sg291137 +S'Pat Steir' +p351558 +sa(dp351559 +g291130 +S'color spitbite, soapground aquatint and drypoint on Somerset textured paper' +p351560 +sg291132 +S'1991' +p351561 +sg291134 +S'The Direction of Water (working proof 18)' +p351562 +sg291136 +g27 +sg291137 +S'Pat Steir' +p351563 +sa(dp351564 +g291130 +S'color spitbite, soapground aquatint and drypoint on Somerset textured paper' +p351565 +sg291132 +S'1991' +p351566 +sg291134 +S'The Direction of Water (working proof 19)' +p351567 +sg291136 +g27 +sg291137 +S'Pat Steir' +p351568 +sa(dp351569 +g291130 +S'color spitbite, soapground, soft-ground aquatint and drypoint on Somerset textured paper' +p351570 +sg291132 +S'1991' +p351571 +sg291134 +S'The Direction of Water (working proof 20)' +p351572 +sg291136 +g27 +sg291137 +S'Pat Steir' +p351573 +sa(dp351574 +g291134 +S'Rainclouds' +p351575 +sg291137 +S'Pat Steir' +p351576 +sg291130 +S'color spitbite, soapground and soft-ground aquatint etching with drypoint in blue-green on wove paper' +p351577 +sg291132 +S'1991' +p351578 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00052/a000524a.jpg' +p351579 +sg291136 +g27 +sa(dp351580 +g291130 +S'spitbite, soapground, and soft-ground aquatint etching with drypoint in brown on wove paper' +p351581 +sg291132 +S'1991' +p351582 +sg291134 +S'Rainclouds (working proof 2)' +p351583 +sg291136 +g27 +sg291137 +S'Pat Steir' +p351584 +sa(dp351585 +g291130 +S'chinese watercolor woodcut on Mulberry paper laid down on Somerset textured paper' +p351586 +sg291132 +S'1990' +p351587 +sg291134 +S'Beloved Ghost Waterfall/Beijing' +p351588 +sg291136 +g27 +sg291137 +S'Pat Steir' +p351589 +sa(dp351590 +g291134 +S"Now Who's Got the Blueprints" +p351591 +sg291137 +S'Artist Information (' +p351592 +sg291130 +g27 +sg291132 +S'(publisher)' +p351593 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000bc4.jpg' +p351594 +sg291136 +g27 +sa(dp351595 +g291130 +S'color aquatint and soft-ground etching with burnishing and drypoint on wove paper' +p351596 +sg291132 +S'1989' +p351597 +sg291134 +S"Now Who's Got the Blueprints (working proof 6)" +p351598 +sg291136 +g27 +sg291137 +S'William T. Wiley' +p351599 +sa(dp351600 +g291130 +S'aquatint and soft-ground etching with burnishing and drypoint in black on wove paper' +p351601 +sg291132 +S'1989' +p351602 +sg291134 +S"Now Who's Got the Blueprints (working proof 7)" +p351603 +sg291136 +g27 +sg291137 +S'William T. Wiley' +p351604 +sa(dp351605 +g291130 +S'aquatint and soft-ground etching with burnishing and drypoint on wove paper' +p351606 +sg291132 +S'1989' +p351607 +sg291134 +S"Now Who's Got the Blueprints (working proof 8)" +p351608 +sg291136 +g27 +sg291137 +S'William T. Wiley' +p351609 +sa(dp351610 +g291130 +S'etching in black on Rives paper' +p351611 +sg291132 +S'1969' +p351612 +sg291134 +S'October Piece' +p351613 +sg291136 +g27 +sg291137 +S'Peter Milton' +p351614 +sa(dp351615 +g291130 +S'lithograph in yellow and black on wove paper' +p351616 +sg291132 +S'1973' +p351617 +sg291134 +S'Silhouette Figures with Border Designs' +p351618 +sg291136 +g27 +sg291137 +S'Henry Moore' +p351619 +sa(dp351620 +g291130 +S'lithograph in yellow, gray, and black on wove paper' +p351621 +sg291132 +S'1975' +p351622 +sg291134 +S'Three Heads' +p351623 +sg291136 +g27 +sg291137 +S'Henry Moore' +p351624 +sa(dp351625 +g291130 +S'1 vol: ill: 10 lithographs in yellow, red, and black plus images on cover and front leaf' +p351626 +sg291132 +S'published 1982' +p351627 +sg291134 +S'Ich Stand vor der Mauer aus Glas (I Stood before the Glass Wall)' +p351628 +sg291136 +g27 +sg291137 +S'Markus L\xc3\xbcpertz' +p351629 +sa(dp351630 +g291130 +S'screenprint on blown vinyl mounted to heavy wove paper' +p351631 +sg291132 +S'1965' +p351632 +sg291134 +S'Cut-out Nude' +p351633 +sg291136 +g27 +sg291137 +S'Tom Wesselmann' +p351634 +sa(dp351635 +g291130 +S'Gift of Francine Schear Linde, in Honor of the 50th Anniversary of the National Gallery of Art' +p351636 +sg291132 +S'\nportfolio with 11 prints with title and colophon pages' +p351637 +sg291134 +S'11 Pop Artists' +p351638 +sg291136 +g27 +sg291137 +S'Various Artists' +p351639 +sa(dp351640 +g291130 +S'screenprint in silver on wove paper' +p351641 +sg291132 +S'1965' +p351642 +sg291134 +S'Jacqueline Kennedy I' +p351643 +sg291136 +g27 +sg291137 +S'Andy Warhol' +p351644 +sa(dp351645 +g291130 +S'screenprint on blue Rowlux' +p351646 +sg291132 +S'1965' +p351647 +sg291134 +S'Moonscape' +p351648 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p351649 +sa(dp351650 +g291130 +S'screenprint on wove paper' +p351651 +sg291132 +S'1965' +p351652 +sg291134 +S'Landscape I' +p351653 +sg291136 +g27 +sg291137 +S"Allan D'Arcangelo" +p351654 +sa(dp351655 +g291130 +S'screenprint in black and red on wove paper' +p351656 +sg291132 +S'1965' +p351657 +sg291134 +S'Awl' +p351658 +sg291136 +g27 +sg291137 +S'Jim Dine' +p351659 +sa(dp351660 +g291130 +S'screenprint on alufoil' +p351661 +sg291132 +S'1965' +p351662 +sg291134 +S'Custom Print I' +p351663 +sg291136 +g27 +sg291137 +S'Peter Phillips' +p351664 +sa(dp351665 +g291130 +S'screenprint on wove paper' +p351666 +sg291132 +S'1965' +p351667 +sg291134 +S'Maiden' +p351668 +sg291136 +g27 +sg291137 +S'John Wesley' +p351669 +sa(dp351670 +g291130 +S'screenprint on wove paper' +p351671 +sg291132 +S'1965' +p351672 +sg291134 +S'Circles of Confusion' +p351673 +sg291136 +g27 +sg291137 +S'James Rosenquist' +p351674 +sa(dp351675 +g291130 +S'screenprint on wove paper' +p351676 +sg291132 +S'1965' +p351677 +sg291134 +S'Chic' +p351678 +sg291136 +g27 +sg291137 +S'Mel Ramos' +p351679 +sa(dp351680 +g291130 +S'screenprint with mylar collage elements on wove paper' +p351681 +sg291132 +S'1965' +p351682 +sg291134 +S'Compact' +p351683 +sg291136 +g27 +sg291137 +S'Gerald Laing' +p351684 +sa(dp351685 +g291130 +S'color lithograph on wove paper' +p351686 +sg291132 +S'1965' +p351687 +sg291134 +S'Miss America' +p351688 +sg291136 +g27 +sg291137 +S'Allen Jones' +p351689 +sa(dp351690 +g291130 +S'acrylic on canvas' +p351691 +sg291132 +S'1970' +p351692 +sg291134 +S"Dawn's Road" +p351693 +sg291136 +g27 +sg291137 +S'Kenneth Noland' +p351694 +sa(dp351695 +g291130 +S'blued steel sheet (25 unit row, side by side)' +p351696 +sg291132 +S'1974' +p351697 +sg291134 +S'25 Blue Deck' +p351698 +sg291136 +g27 +sg291137 +S'Carl Andre' +p351699 +sa(dp351700 +g291130 +S'copper sheet (49 unit square)' +p351701 +sg291132 +S'1975' +p351702 +sg291134 +S'Forty-Nine Small Copper Cardinal' +p351703 +sg291136 +g27 +sg291137 +S'Carl Andre' +p351704 +sa(dp351705 +g291130 +S'ivory (six units)' +p351706 +sg291132 +S'1977' +p351707 +sg291134 +S'Little Wide Ivory Equivalent' +p351708 +sg291136 +g27 +sg291137 +S'Carl Andre' +p351709 +sa(dp351710 +g291130 +S'ivory (six units)' +p351711 +sg291132 +S'1977' +p351712 +sg291134 +S'Little, Long, Ivory Equivalent' +p351713 +sg291136 +g27 +sg291137 +S'Carl Andre' +p351714 +sa(dp351715 +g291130 +S'ivory (six units)' +p351716 +sg291132 +S'1977' +p351717 +sg291134 +S'Little, Long, Ivory Equivalent' +p351718 +sg291136 +g27 +sg291137 +S'Carl Andre' +p351719 +sa(dp351720 +g291130 +S'hot rolled steel (nine units)' +p351721 +sg291132 +S'1977' +p351722 +sg291134 +S'Nine Steel Rectangles' +p351723 +sg291136 +g27 +sg291137 +S'Carl Andre' +p351724 +sa(dp351725 +g291130 +S'polished metal (23-unit line, end to end)' +p351726 +sg291132 +S'1978' +p351727 +sg291134 +S'23 Steel Mirror Line' +p351728 +sg291136 +g27 +sg291137 +S'Carl Andre' +p351729 +sa(dp351730 +g291130 +S'steel (9 units)' +p351731 +sg291132 +S'1978' +p351732 +sg291134 +S'9 Pierced Steel Squares' +p351733 +sg291136 +g27 +sg291137 +S'Carl Andre' +p351734 +sa(dp351735 +g291130 +S'rusted and unrusted metal (eight units)' +p351736 +sg291132 +S'1978' +p351737 +sg291134 +S'Rust and Bright Ripple' +p351738 +sg291136 +g27 +sg291137 +S'Carl Andre' +p351739 +sa(dp351740 +g291130 +S'Formica and wood' +p351741 +sg291132 +S'1965' +p351742 +sg291134 +S'Piano #1' +p351743 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351744 +sa(dp351745 +g291130 +S'Formica and wood' +p351746 +sg291132 +S'1966' +p351747 +sg291134 +S'Shadow' +p351748 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351749 +sa(dp351750 +g291130 +S'rubberized horsehair' +p351751 +sg291132 +S'1969' +p351752 +sg291134 +S'Hair Sculpture - Shallow Recess Box' +p351753 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351754 +sa(dp351755 +g291130 +S'rubberized horsehair' +p351756 +sg291132 +S'1969' +p351757 +sg291134 +S'Hair Sculpture - Shallow Recess Box' +p351758 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351759 +sa(dp351760 +g291130 +S'charcoal on laid paper' +p351761 +sg291132 +S'1969' +p351762 +sg291134 +S'Untitled' +p351763 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351764 +sa(dp351765 +g291130 +S'pen and black ink over graphite on wove paper' +p351766 +sg291132 +S'1974' +p351767 +sg291134 +S'Basket, Table, Door, Window, Mirror, Rug #25' +p351768 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351769 +sa(dp351770 +g291130 +S'graphite on wove paper' +p351771 +sg291132 +S'1974' +p351772 +sg291134 +S'Basket, Table, Door, Window, Mirror, Rug #39 [recto]' +p351773 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351774 +sa(dp351775 +g291130 +S'graphite on wove paper' +p351776 +sg291132 +S'1974' +p351777 +sg291134 +S'Basket, Table, Door, Window, Mirror, Rug #40 [verso]' +p351778 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351779 +sa(dp351780 +g291130 +S'pen and black ink over graphite on wove paper' +p351781 +sg291132 +S'1974' +p351782 +sg291134 +S'Basket, Table, Door, Window, Mirror, Rug #45' +p351783 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351784 +sa(dp351785 +g291130 +S'pen and black ink and graphite on wove paper' +p351786 +sg291132 +S'1974' +p351787 +sg291134 +S'Basket, Table, Door, Window, Mirror, Rug #47' +p351788 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351789 +sa(dp351790 +g291130 +S'pen and black ink over graphite on wove paper' +p351791 +sg291132 +S'1974' +p351792 +sg291134 +S'Basket, Table, Door, Window, Mirror, Rug #27' +p351793 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351794 +sa(dp351795 +g291130 +S'pen and black ink over graphite on wove paper' +p351796 +sg291132 +S'1974' +p351797 +sg291134 +S'Basket, Table, Door, Window, Mirror, Rug #23' +p351798 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351799 +sa(dp351800 +g291130 +S'pen and black ink over graphite on wove paper' +p351801 +sg291132 +S'1974' +p351802 +sg291134 +S'Basket, Table, Door, Window, Mirror, Rug #21' +p351803 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351804 +sa(dp351805 +g291130 +S'pen and black ink over graphite on wove paper' +p351806 +sg291132 +S'1974' +p351807 +sg291134 +S'Basket, Table, Door, Window, Mirror, Rug #32' +p351808 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351809 +sa(dp351810 +g291130 +S'pen and black ink over graphite on wove paper' +p351811 +sg291132 +S'1974' +p351812 +sg291134 +S'Basket, Table, Door, Window, Mirror, Rug #33' +p351813 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351814 +sa(dp351815 +g291130 +S'pen and black ink over graphite on wove paper' +p351816 +sg291132 +S'1974' +p351817 +sg291134 +S'Basket, Table, Door, Window, Mirror, Rug #41 [recto]' +p351818 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351819 +sa(dp351820 +g291130 +S'pen and black ink over graphite on wove paper' +p351821 +sg291132 +S'1974' +p351822 +sg291134 +S'Basket, Table, Door, Window, Mirror, Rug [verso]' +p351823 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351824 +sa(dp351825 +g291130 +S'pen and black ink over graphite on wove paper' +p351826 +sg291132 +S'1974' +p351827 +sg291134 +S'Basket, Table, Door, Window, Mirror, Rug #7 [recto]' +p351828 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351829 +sa(dp351830 +g291130 +S'graphite on wove paper' +p351831 +sg291132 +S'1974' +p351832 +sg291134 +S'Basket, Table, Door, Window, Mirror, Rug #8 [verso]' +p351833 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351834 +sa(dp351835 +g291130 +S'brush and black ink over graphite on wove paper' +p351836 +sg291132 +S'1974' +p351837 +sg291134 +S'Basket, Table, Door, Window, Mirror, Rug #29' +p351838 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351839 +sa(dp351840 +g291130 +S'pen and black ink and graphite on wove paper' +p351841 +sg291132 +S'1975' +p351842 +sg291134 +S'Basket, Table, Door, Window, Mirror, Rug #42 [recto]' +p351843 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351844 +sa(dp351845 +g291130 +S'graphite on wove paper' +p351846 +sg291132 +S'1975' +p351847 +sg291134 +S'Basket, Table, Door, Window, Mirror, Rug #42 [verso]' +p351848 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351849 +sa(dp351850 +g291130 +S'pen and black ink over graphite on wove paper' +p351851 +sg291132 +S'1975' +p351852 +sg291134 +S'Basket, Table, Door, Window, Mirror, Rug #43' +p351853 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351854 +sa(dp351855 +g291130 +S'pen and ink, felt-tip pen, and graphite on wove paper' +p351856 +sg291132 +S'1977' +p351857 +sg291134 +S'In and Under the Mirror' +p351858 +sg291136 +g27 +sg291137 +S'Richard Artschwager' +p351859 +sa(dp351860 +g291130 +S'beeswax, dammer resin, crystals, and glass on wood' +p351861 +sg291132 +S'1968' +p351862 +sg291134 +S'Untitled' +p351863 +sg291136 +g27 +sg291137 +S'Lynda Benglis' +p351864 +sa(dp351865 +g291130 +S'beeswax, dammar resin, pigment, and gesso on wood' +p351866 +sg291132 +S'1971' +p351867 +sg291134 +S'Untitled' +p351868 +sg291136 +g27 +sg291137 +S'Lynda Benglis' +p351869 +sa(dp351870 +g291130 +S'collage of tissue paper, fabric, string, mylar, metallic paper, wash, acrylic, and felt-tip pen on hand-made paper' +p351871 +sg291132 +S'1979' +p351872 +sg291134 +S'Number 27' +p351873 +sg291136 +g27 +sg291137 +S'Lynda Benglis' +p351874 +sa(dp351875 +g291130 +S'plaster over wire mesh, with gold leaf and oil paint' +p351876 +sg291132 +S'1979' +p351877 +sg291134 +S'Pour Daum' +p351878 +sg291136 +g27 +sg291137 +S'Lynda Benglis' +p351879 +sa(dp351880 +g291130 +S'gold leaf and red and blue paint over wire frame' +p351881 +sg291132 +S'1979' +p351882 +sg291134 +S'Untitled' +p351883 +sg291136 +g27 +sg291137 +S'Lynda Benglis' +p351884 +sa(dp351885 +g291130 +S'plaster, bronze wire, and gold leaf' +p351886 +sg291132 +S'1980' +p351887 +sg291134 +S'Fool' +p351888 +sg291136 +g27 +sg291137 +S'Lynda Benglis' +p351889 +sa(dp351890 +g291130 +S'watercolor and acrylic with stamping and stenciling on hand-made textured wove paper' +p351891 +sg291132 +S'1980' +p351892 +sg291134 +S'Pani Rang 21' +p351893 +sg291136 +g27 +sg291137 +S'Lynda Benglis' +p351894 +sa(dp351895 +g291130 +S'watercolor and acrylic with stamping and stenciling on hand-made textured wove paper' +p351896 +sg291132 +S'1981' +p351897 +sg291134 +S'Pani Rang 17' +p351898 +sg291136 +g27 +sg291137 +S'Lynda Benglis' +p351899 +sa(dp351900 +g291130 +S'watercolor, acrylic, and graphite with stamping and stenciling on hand-made textured wove paper' +p351901 +sg291132 +S'1981' +p351902 +sg291134 +S'Untitled' +p351903 +sg291136 +g27 +sg291137 +S'Lynda Benglis' +p351904 +sa(dp351905 +g291130 +S'pen and black ink on wove paper' +p351906 +sg291132 +S'unknown date\n' +p351907 +sg291134 +S'Atlas Eclipticalis (Mixer Manipulation)' +p351908 +sg291136 +g27 +sg291137 +S'John Cage' +p351909 +sa(dp351910 +g291130 +S'pen and black ink, red and black ball-point pen, and blue pencil on tracing paper' +p351911 +sg291132 +S'unknown date\n' +p351912 +sg291134 +S'Bassoon Chart for HPSCHD (with Lejaren Hiller)' +p351913 +sg291136 +g27 +sg291137 +S'John Cage' +p351914 +sa(dp351915 +g291130 +S'ink on graph paper mounted on paperboard' +p351916 +sg291132 +S'1961' +p351917 +sg291134 +S'Music for Carillon #4, Page 1' +p351918 +sg291136 +g27 +sg291137 +S'John Cage' +p351919 +sa(dp351920 +g291130 +S'pen and black ink on lined paper' +p351921 +sg291132 +S'unknown date\n' +p351922 +sg291134 +S'Music Walk (Notation Plan)' +p351923 +sg291136 +g27 +sg291137 +S'John Cage' +p351924 +sa(dp351925 +g291130 +S'graphite on paper' +p351926 +sg291132 +S'1957-1958' +p351927 +sg291134 +S'Solo for Flute (Concert for Piano and Orchestra): Sketch' +p351928 +sg291136 +g27 +sg291137 +S'John Cage' +p351929 +sa(dp351930 +g291130 +S'graphite on wove paper' +p351931 +sg291132 +S'unknown date\n' +p351932 +sg291134 +S'Solo for Violin (Concert for Piano and Orchestra): Sketch' +p351933 +sg291136 +g27 +sg291137 +S'John Cage' +p351934 +sa(dp351935 +g291130 +S'graphite on wove paper' +p351936 +sg291132 +S'unknown date\n' +p351937 +sg291134 +S'Solo for Violin (Concert for Piano and Orchestra): Sketch' +p351938 +sg291136 +g27 +sg291137 +S'John Cage' +p351939 +sa(dp351940 +g291130 +S'black ball-point pen and computer printing on lined computer paper' +p351941 +sg291132 +S'1973' +p351942 +sg291134 +S'Music Composed and Performed During Performance of Merce Cunningham and Dance Company' +p351943 +sg291136 +g27 +sg291137 +S'John Cage' +p351944 +sa(dp351945 +g291130 +S'book, canvas, and rope' +p351946 +sg291132 +S'1972' +p351947 +sg291134 +S'Wrapped Book' +p351948 +sg291136 +g27 +sg291137 +S'Christo' +p351949 +sa(dp351950 +g291130 +S'wax crayon and graphite on wove paper' +p351951 +sg291132 +S'1977' +p351952 +sg291134 +S'Abu Dhabi Mastaba, Project for the United Arab Emirates' +p351953 +sg291136 +g27 +sg291137 +S'Christo' +p351954 +sa(dp351955 +g291130 +S'galvanized iron and PLEXIGLAS acrylic sheet' +p351956 +sg291132 +S'1965' +p351957 +sg291134 +S'Untitled' +p351958 +sg291136 +g27 +sg291137 +S'Donald Judd' +p351959 +sa(dp351960 +g291130 +S'black felt-tip pen on wove paper' +p351961 +sg291132 +S'1965' +p351962 +sg291134 +S'Untitled' +p351963 +sg291136 +g27 +sg291137 +S'Donald Judd' +p351964 +sa(dp351965 +g291130 +S'oil on wood' +p351966 +sg291132 +S'1968' +p351967 +sg291134 +S'Untitled' +p351968 +sg291136 +g27 +sg291137 +S'Donald Judd' +p351969 +sa(dp351970 +g291130 +S'black felt-tip pen on yellow wove paper' +p351971 +sg291132 +S'1966-1968' +p351972 +sg291134 +S'Untitled' +p351973 +sg291136 +g27 +sg291137 +S'Donald Judd' +p351974 +sa(dp351975 +g291134 +S'Floor Structure Black' +p351976 +sg291137 +S'Sol LeWitt' +p351977 +sg291130 +S'painted wood' +p351978 +sg291132 +S'1965' +p351979 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00050/a000502c.jpg' +p351980 +sg291136 +g27 +sa(dp351981 +g291130 +S'pen and black ink and graphite on brown laid paper' +p351982 +sg291132 +S'1968' +p351983 +sg291134 +S'123/ Six Three-Part Variations Using Each Kind of Cube Once' +p351984 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p351985 +sa(dp351986 +g291134 +S'Series 1-2-3: 47 3-Part Variations on Three Different Kinds of Cubes' +p351987 +sg291137 +S'Sol LeWitt' +p351988 +sg291130 +S'painted wood' +p351989 +sg291132 +S'1968' +p351990 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00056/a000560e.jpg' +p351991 +sg291136 +g27 +sa(dp351992 +g291130 +S'baked enamel on aluminum (three parts)' +p351993 +sg291132 +S'1969' +p351994 +sg291134 +S'Serial Project No. 1 B5' +p351995 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p351996 +sa(dp351997 +g291130 +S'black pencil' +p351998 +sg291132 +S'1969' +p351999 +sg291134 +S'Wall Drawing No. 26 / A one-inch (2.5 cm) grid covering a 36" (90 cm) square. Within each one-inch (2.5 cm) square, there is a line in one of the four directions.' +p352000 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352001 +sa(dp352002 +g291134 +S'Untitled' +p352003 +sg291137 +S'Sol LeWitt' +p352004 +sg291130 +S'painted wood' +p352005 +sg291132 +S'1971' +p352006 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00056/a0005611.jpg' +p352007 +sg291136 +g27 +sa(dp352008 +g291130 +S'graphite on wove paper' +p352009 +sg291132 +S'1971' +p352010 +sg291134 +S'Untitled' +p352011 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352012 +sa(dp352013 +g291130 +S'graphite and pen and black ink on wove paper' +p352014 +sg291132 +S'1972' +p352015 +sg291134 +S'Alternate Ink and Pencil Straight, Parallel Lines, of Random Length, Not Touching the Sides' +p352016 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352017 +sa(dp352018 +g291130 +S'pen and black ink on wove paper' +p352019 +sg291132 +S'1972' +p352020 +sg291134 +S'Alternate Straight, Not-Straight and Broken Lines, of Random Length Not Drawn to the Sides of the Page' +p352021 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352022 +sa(dp352023 +g291130 +S'graphite on wove paper' +p352024 +sg291132 +S'1972' +p352025 +sg291134 +S'Short Straight Lines, Not Touching, Drawn at Random and Evenly Distributed Over the Area' +p352026 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352027 +sa(dp352028 +g291130 +S'pen and black ink over graphite on wove paper' +p352029 +sg291132 +S'1972' +p352030 +sg291134 +S'Untitled' +p352031 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352032 +sa(dp352033 +g291130 +S'pen and black ink over graphite on wove paper' +p352034 +sg291132 +S'1974' +p352035 +sg291134 +S'Incomplete Cube' +p352036 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352037 +sa(dp352038 +g291130 +S'pen and black ink over graphite on tracing paper' +p352039 +sg291132 +S'1974' +p352040 +sg291134 +S'Incomplete Cube' +p352041 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352042 +sa(dp352043 +g291130 +S'graphite and blue, yellow, and red felt-tip pens on wove paper' +p352044 +sg291132 +S'1975' +p352045 +sg291134 +S'The Location of a Yellow, Red and Blue Circle' +p352046 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352047 +sa(dp352048 +g291130 +S'commercial map with cutout pentagon' +p352049 +sg291132 +S'1976' +p352050 +sg291134 +S'Map of Amsterdam with the Area between Emma-Plein, Europa-Plein, Ooster Park, Nieuwmarkt, and Bus Station Removed' +p352051 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352052 +sa(dp352053 +g291130 +S'gelatin silver print' +p352054 +sg291132 +S'1976' +p352055 +sg291134 +S'Photo of Florence, The Area Between Piazza San Marco, Via Covour, Via Guelfa, Via de Ginori, Borgo S. Lorenzo, Via Roma, Via de Posinghi, Via Calgarioli, Via Por. S. Maria, Piazza de Pese, Lunguarno Archibuse' +p352056 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352057 +sa(dp352058 +g291130 +S'gelatin silver print with triangle cut out of center' +p352059 +sg291132 +S'1977' +p352060 +sg291134 +S'A Photo of Central Manhattan with the Area between Columbus Circle, the McGraw-Hill Building, and Tompkins Square Cut Out' +p352061 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352062 +sa(dp352063 +g291130 +S'gelatin silver print with triangle cut out of center' +p352064 +sg291132 +S'1977' +p352065 +sg291134 +S'A Photo of Central Manhattan with the Area between the Central Park Zoo, the Main Library Branch, and the Central Post Office Cut Out' +p352066 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352067 +sa(dp352068 +g291130 +S'gelatin silver print with triangle cut out of center' +p352069 +sg291132 +S'1977' +p352070 +sg291134 +S'A Photo of Central Manhattan with the Area between the Plaza Hotel, the Chelsea Hotel, and the Gramercy Park Hotel Cut Out' +p352071 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352072 +sa(dp352073 +g291130 +S'gelatin silver print' +p352074 +sg291132 +S'1977' +p352075 +sg291134 +S'The Area of Manhattan between the Chelsea Hotel, the Plaza Hotel, and the Gramercy Park Hotel' +p352076 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352077 +sa(dp352078 +g291130 +S'gelatin silver print' +p352079 +sg291132 +S'1977' +p352080 +sg291134 +S'The Area of Manhattan between the McGraw-Hill Building, Columbus Circle, and Tompkins Square' +p352081 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352082 +sa(dp352083 +g291130 +S'gelatin silver print' +p352084 +sg291132 +S'1977' +p352085 +sg291134 +S'The Area of Manhattan Between 117 Hester St. and the Three Galleries where Sol LeWitt has had Exhibitions of His Work: The John Weber Gallery, 420 West Broadway, the Divan Gallery, the John Daniels Gallery' +p352086 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352087 +sa(dp352088 +g291130 +S'yellow felt-tip pen and graphite on wove paper' +p352089 +sg291132 +S'1978' +p352090 +sg291134 +S'Yellow Lines, Not Straight, Not Touching' +p352091 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352092 +sa(dp352093 +g291130 +S'colored pencil' +p352094 +sg291132 +S'1977' +p352095 +sg291134 +S'Wall Drawing No. 307 / Blue circles, red grid, yellow arcs from four corners, black arcs from the midpoints of four sides.' +p352096 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352097 +sa(dp352098 +g291130 +S'gelatin silver print with rectangle cut out of center' +p352099 +sg291132 +S'1978' +p352100 +sg291134 +S'A Circle of Manhattan without a Rectangle' +p352101 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352102 +sa(dp352103 +g291130 +S'gelatin silver print with rectangle cut out of center' +p352104 +sg291132 +S'1978' +p352105 +sg291134 +S'A Parallelogram of Manhattan without a Rectangle' +p352106 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352107 +sa(dp352108 +g291130 +S'gelatin silver print with rectangle cut out of center' +p352109 +sg291132 +S'1978' +p352110 +sg291134 +S'A Rectangle of Manhattan without a Rectangle' +p352111 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352112 +sa(dp352113 +g291130 +S'gelatin silver print with trapezoid cut out of center' +p352114 +sg291132 +S'1978' +p352115 +sg291134 +S'A Square of Florence without a Trapezoid' +p352116 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352117 +sa(dp352118 +g291130 +S'gelatin silver print with rectangle cut out of center' +p352119 +sg291132 +S'1978' +p352120 +sg291134 +S'A Square of Manhattan without a Rectangle' +p352121 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352122 +sa(dp352123 +g291130 +S'gelatin silver print with rectangle cut out of center' +p352124 +sg291132 +S'1978' +p352125 +sg291134 +S'A Trapezoid of Manhattan without a Rectangle' +p352126 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352127 +sa(dp352128 +g291130 +S'gelatin silver print with rectangle cut out of center' +p352129 +sg291132 +S'1978' +p352130 +sg291134 +S'A Triangle of Manhattan without a Rectangle' +p352131 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352132 +sa(dp352133 +g291130 +S'crayon' +p352134 +sg291132 +S'1978' +p352135 +sg291134 +S'Wall Drawing No. 309 / A wall is divided vertically into three equal parts, one red, one yellow and one blue. 1st part: On the red part, a yellow straight, a yellow not straight, and a yellow broken line; and a blue straight, a blue not straight, and a blue broken line; 2nd part: On the yellow part, a blue straight, a blue not straight, and a blue broken line; and a red straight, a red not straight, and a red broken line; 3rd part: On the blue part, a red straight, a red not straight, and a red broken line; and a yellow broken line. The lines are horizontal and equally spaced.\r\xe2\x80\xa6' +p352136 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p352137 +sa(dp352138 +g291134 +S'Light - Neutral Area' +p352139 +sg291137 +S'Robert Mangold' +p352140 +sg291130 +S'oil and flat lacquer on hardboard' +p352141 +sg291132 +S'1966' +p352142 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b2e.jpg' +p352143 +sg291136 +g27 +sa(dp352144 +g291134 +S'1/2 W Series (Medium Scale)' +p352145 +sg291137 +S'Robert Mangold' +p352146 +sg291130 +S'acrylic on wood fiberboard panels' +p352147 +sg291132 +S'1968' +p352148 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00056/a0005610.jpg' +p352149 +sg291136 +g27 +sa(dp352150 +g291134 +S'1/2 V Series (Medium Scale)' +p352151 +sg291137 +S'Robert Mangold' +p352152 +sg291130 +S'acrylic on wood fiberboard panels' +p352153 +sg291132 +S'1969' +p352154 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b1f.jpg' +p352155 +sg291136 +g27 +sa(dp352156 +g291130 +S'graphite and pen and black ink on wove paper' +p352157 +sg291132 +S'1970' +p352158 +sg291134 +S'WVX Series' +p352159 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p352160 +sa(dp352161 +g291134 +S'Distorted Red Square-Circle' +p352162 +sg291137 +S'Robert Mangold' +p352163 +sg291130 +S'acrylic and graphite on hardboard' +p352164 +sg291132 +S'1971' +p352165 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b20.jpg' +p352166 +sg291136 +g27 +sa(dp352167 +g291134 +S'Green Distorted Square-Circle' +p352168 +sg291137 +S'Robert Mangold' +p352169 +sg291130 +S'acrylic and graphite on hardboard' +p352170 +sg291132 +S'1971' +p352171 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b1e.jpg' +p352172 +sg291136 +g27 +sa(dp352173 +g291134 +S'Orange Distorted Square-Circle' +p352174 +sg291137 +S'Robert Mangold' +p352175 +sg291130 +S'acrylic and graphite on hardboard' +p352176 +sg291132 +S'1971' +p352177 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b21.jpg' +p352178 +sg291136 +g27 +sa(dp352179 +g291134 +S'Untitled' +p352180 +sg291137 +S'Robert Mangold' +p352181 +sg291130 +S'acrylic and graphite on hardboard' +p352182 +sg291132 +S'1972' +p352183 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b23.jpg' +p352184 +sg291136 +g27 +sa(dp352185 +g291134 +S'Untitled II' +p352186 +sg291137 +S'Robert Mangold' +p352187 +sg291130 +S'acrylic and graphite on hardboard' +p352188 +sg291132 +S'1972' +p352189 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b22.jpg' +p352190 +sg291136 +g27 +sa(dp352191 +g291134 +S'Model for Painting: Circle in and out of a Polygon II' +p352192 +sg291137 +S'Robert Mangold' +p352193 +sg291130 +S'oil on wood' +p352194 +sg291132 +S'1973' +p352195 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b24.jpg' +p352196 +sg291136 +g27 +sa(dp352197 +g291134 +S'Untitled' +p352198 +sg291137 +S'Robert Mangold' +p352199 +sg291130 +S'acrylic and colored pencil on wood fiberboard panel' +p352200 +sg291132 +S'1973' +p352201 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b1c.jpg' +p352202 +sg291136 +g27 +sa(dp352203 +g291134 +S'Untitled' +p352204 +sg291137 +S'Robert Mangold' +p352205 +sg291130 +S'acrylic and colored pencil on wood fiberboard panel' +p352206 +sg291132 +S'1973' +p352207 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b25.jpg' +p352208 +sg291136 +g27 +sa(dp352209 +g291130 +S'yellow pencil over graphite on brown wove paper' +p352210 +sg291132 +S'1974' +p352211 +sg291134 +S'Four Triangles Within a Square # 2' +p352212 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p352213 +sa(dp352214 +g291130 +S'orange crayon and graphite on graph paper' +p352215 +sg291132 +S'1974' +p352216 +sg291134 +S'Square within a Square' +p352217 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p352218 +sa(dp352219 +g291130 +S'graphite on wove paper' +p352220 +sg291132 +S'1974' +p352221 +sg291134 +S'Two Variations on Blue-Gray Painting with Light and Dark Lines' +p352222 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p352223 +sa(dp352224 +g291134 +S'Untitled' +p352225 +sg291137 +S'Robert Mangold' +p352226 +sg291130 +S'acrylic and colored pencil on wood fiberboard panel' +p352227 +sg291132 +S'1974' +p352228 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b26.jpg' +p352229 +sg291136 +g27 +sa(dp352230 +g291130 +S'purple acrylic paint and yellow pencil on paper mounted to wove paper' +p352231 +sg291132 +S'1975' +p352232 +sg291134 +S'A Square Not Totally within a Triangle' +p352233 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p352234 +sa(dp352235 +g291134 +S'A Square Not Totally within a Triangle' +p352236 +sg291137 +S'Robert Mangold' +p352237 +sg291130 +S'acrylic and graphite on hardboard' +p352238 +sg291132 +S'1975' +p352239 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b27.jpg' +p352240 +sg291136 +g27 +sa(dp352241 +g291130 +S'graphite, yellow pencil, and gray felt-tip pen on wove paper' +p352242 +sg291132 +S'1975' +p352243 +sg291134 +S'A Triangle and a Circle within a Square' +p352244 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p352245 +sa(dp352246 +g291130 +S'graphite and white pencil on orange laid paper' +p352247 +sg291132 +S'1975' +p352248 +sg291134 +S'A Triangle and a Square within a Square' +p352249 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p352250 +sa(dp352251 +g291130 +S'blue and yellow pencil and graphite on blue laid paper' +p352252 +sg291132 +S'1975' +p352253 +sg291134 +S'An Arc and a Circle within a Square' +p352254 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p352255 +sa(dp352256 +g291134 +S'Two Triangles within a Square #2' +p352257 +sg291137 +S'Robert Mangold' +p352258 +sg291130 +S'acrylic and colored pencil on canvas' +p352259 +sg291132 +S'1975' +p352260 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b28.jpg' +p352261 +sg291136 +g27 +sa(dp352262 +g291130 +S'graphite and yellow pencil on brown wove paper' +p352263 +sg291132 +S'1975' +p352264 +sg291134 +S'Two Triangles within a Square #3' +p352265 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p352266 +sa(dp352267 +g291134 +S'Two Squares within a Square and Two Triangles' +p352268 +sg291137 +S'Robert Mangold' +p352269 +sg291130 +S'acrylic and colored pencil on wood fiberboard panels' +p352270 +sg291132 +S'1976' +p352271 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b29.jpg' +p352272 +sg291136 +g27 +sa(dp352273 +g291134 +S'A Triangle within Two Rectangles Violet' +p352274 +sg291137 +S'Robert Mangold' +p352275 +sg291130 +S'oil and marker on hardboard' +p352276 +sg291132 +S'1977' +p352277 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b2c.jpg' +p352278 +sg291136 +g27 +sa(dp352279 +g291130 +S'watercolor, graphite, and felt-tip pen on wove paper' +p352280 +sg291132 +S'1978' +p352281 +sg291134 +S'Four Paintings' +p352282 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p352283 +sa(dp352284 +g291134 +S'Two Triangles within Three Rectangles' +p352285 +sg291137 +S'Robert Mangold' +p352286 +sg291130 +S'acrylic and colored pencil on wood fiberboard panels' +p352287 +sg291132 +S'1978' +p352288 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b2a.jpg' +p352289 +sg291136 +g27 +sa(dp352290 +g291130 +S'acrylic paint, graphite, and felt-tip pen on three sheets of paper mounted to white wove paper, scored for folding' +p352291 +sg291132 +S'1979' +p352292 +sg291134 +S'Untitled' +p352293 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p352294 +sa(dp352295 +g291130 +S'acrylic and graphite on four joined sheets of wove paper mounted to board' +p352296 +sg291132 +S'1980' +p352297 +sg291134 +S'X within X Pink' +p352298 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p352299 +sa(dp352300 +g291130 +S'graphite and acrylic on paper collage, mounted to wove paper' +p352301 +sg291132 +S'1980' +p352302 +sg291134 +S'Untitled' +p352303 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p352304 +sa(dp352305 +g291134 +S'+ Within + Painting' +p352306 +sg291137 +S'Robert Mangold' +p352307 +sg291130 +S'acrylic on hardboard' +p352308 +sg291132 +S'1983' +p352309 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b2d.jpg' +p352310 +sg291136 +g27 +sa(dp352311 +g291130 +S'acrylic and graphite on three joined sheets of paper mounted to illustration board' +p352312 +sg291132 +S'1985/1986' +p352313 +sg291134 +S'Three Color Frame Painting' +p352314 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p352315 +sa(dp352316 +g291134 +S'Grey Irregular Area with a Drawn Ellipse (model)' +p352317 +sg291137 +S'Robert Mangold' +p352318 +sg291130 +S'acrylic and crayon pencil on hardboard' +p352319 +sg291132 +S'1986' +p352320 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b1d.jpg' +p352321 +sg291136 +g27 +sa(dp352322 +g291130 +S'watercolor and graphite, with scraping, on wove paper' +p352323 +sg291132 +S'1987' +p352324 +sg291134 +S'Red Frame' +p352325 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p352326 +sa(dp352327 +g291130 +S'crayon and black ball-point pen on wove paper' +p352328 +sg291132 +S'1987' +p352329 +sg291134 +S'Untitled' +p352330 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p352331 +sa(dp352332 +g291130 +S'acrylic and graphite on textured wove paper' +p352333 +sg291132 +S'1987' +p352334 +sg291134 +S'Untitled' +p352335 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p352336 +sa(dp352337 +g291130 +S'graphite on paperboard' +p352338 +sg291132 +S'1971' +p352339 +sg291134 +S'Untitled' +p352340 +sg291136 +g27 +sg291137 +S'Sylvia Plimack Mangold' +p352341 +sa(dp352342 +g291130 +S'acrylic and graphite on Strathmore paper' +p352343 +sg291132 +S'1973' +p352344 +sg291134 +S'Opposite Corners' +p352345 +sg291136 +g27 +sg291137 +S'Sylvia Plimack Mangold' +p352346 +sa(dp352347 +g291130 +S'watercolor, colored pencil, and graphite on wove paper' +p352348 +sg291132 +S'1975' +p352349 +sg291134 +S'3 Different 12" Rulers' +p352350 +sg291136 +g27 +sg291137 +S'Sylvia Plimack Mangold' +p352351 +sa(dp352352 +g291130 +S'acrylic and graphite on wove paper' +p352353 +sg291132 +S'1975' +p352354 +sg291134 +S'Untitled' +p352355 +sg291136 +g27 +sg291137 +S'Sylvia Plimack Mangold' +p352356 +sa(dp352357 +g291130 +S'acrylic and graphite on Strathmore paper' +p352358 +sg291132 +S'1977' +p352359 +sg291134 +S'Untitled' +p352360 +sg291136 +g27 +sg291137 +S'Sylvia Plimack Mangold' +p352361 +sa(dp352362 +g291130 +S'oil on hardboard' +p352363 +sg291132 +S'1979' +p352364 +sg291134 +S'Untitled' +p352365 +sg291136 +g27 +sg291137 +S'Sylvia Plimack Mangold' +p352366 +sa(dp352367 +g291130 +S'oil on canvas' +p352368 +sg291132 +S'1979' +p352369 +sg291134 +S'Untitled' +p352370 +sg291136 +g27 +sg291137 +S'Sylvia Plimack Mangold' +p352371 +sa(dp352372 +g291130 +S'oil on canvas' +p352373 +sg291132 +S'1981' +p352374 +sg291134 +S'Untitled' +p352375 +sg291136 +g27 +sg291137 +S'Sylvia Plimack Mangold' +p352376 +sa(dp352377 +g291130 +S'oil on canvas' +p352378 +sg291132 +S'1982' +p352379 +sg291134 +S'Untitled (B)' +p352380 +sg291136 +g27 +sg291137 +S'Sylvia Plimack Mangold' +p352381 +sa(dp352382 +g291130 +S'black ink applied with finger tips on wove paper' +p352383 +sg291132 +S'1969' +p352384 +sg291134 +S'Finger Print Drawing' +p352385 +sg291136 +g27 +sg291137 +S'Joel Shapiro' +p352386 +sa(dp352387 +g291130 +S'bass wood' +p352388 +sg291132 +S'1974' +p352389 +sg291134 +S'Untitled' +p352390 +sg291136 +g27 +sg291137 +S'Joel Shapiro' +p352391 +sa(dp352392 +g291130 +S'cast iron' +p352393 +sg291132 +S'1975' +p352394 +sg291134 +S'Untitled' +p352395 +sg291136 +g27 +sg291137 +S'Joel Shapiro' +p352396 +sa(dp352397 +g291130 +S'cast iron' +p352398 +sg291132 +S'1975' +p352399 +sg291134 +S'Untitled' +p352400 +sg291136 +g27 +sg291137 +S'Joel Shapiro' +p352401 +sa(dp352402 +g291130 +S'watercolor over graphite on wove paper' +p352403 +sg291132 +S'1965' +p352404 +sg291134 +S'Drawing for Wood Piece II' +p352405 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352406 +sa(dp352407 +g291130 +S'watercolor over graphite on wove paper' +p352408 +sg291132 +S'1965' +p352409 +sg291134 +S'Drawing for Wood Piece I' +p352410 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352411 +sa(dp352412 +g291130 +S'galvanized metal' +p352413 +sg291132 +S'1966' +p352414 +sg291134 +S'Tin Arrow' +p352415 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352416 +sa(dp352417 +g291130 +S'watercolor over graphite on wove paper' +p352418 +sg291132 +S'1967' +p352419 +sg291134 +S'Drawing for Cloth Piece' +p352420 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352421 +sa(dp352422 +g291130 +S'watercolor over graphite on wove paper' +p352423 +sg291132 +S'1967' +p352424 +sg291134 +S'Study for Cloth Piece' +p352425 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352426 +sa(dp352427 +g291130 +S'galvanized steel' +p352428 +sg291132 +S'1967' +p352429 +sg291134 +S'Untitled' +p352430 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352431 +sa(dp352432 +g291130 +S'watercolor over graphite on light brown wove paper' +p352433 +sg291132 +S'1967' +p352434 +sg291134 +S'Untitled' +p352435 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352436 +sa(dp352437 +g291130 +S'watercolor over graphite on wove paper' +p352438 +sg291132 +S'1967' +p352439 +sg291134 +S'Untitled' +p352440 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352441 +sa(dp352442 +g291130 +S'watercolor over graphite on wove paper' +p352443 +sg291132 +S'1969' +p352444 +sg291134 +S'A Cat' +p352445 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352446 +sa(dp352447 +g291130 +S'watercolor over graphite on wove paper' +p352448 +sg291132 +S'1969' +p352449 +sg291134 +S'E.T. on the Farm' +p352450 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352451 +sa(dp352452 +g291130 +S'watercolor over graphite on wove paper' +p352453 +sg291132 +S'1970' +p352454 +sg291134 +S'Not a Window, Not a Door' +p352455 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352456 +sa(dp352457 +g291130 +S'black ink over graphite on wove paper' +p352458 +sg291132 +S'1970' +p352459 +sg291134 +S'Preliminary Drawing for Schematic Drawing #3 Included in Dallas Show Catalogue' +p352460 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352461 +sa(dp352462 +g291130 +S'acrylic, ink, and watercolor on Hamilton bond paper' +p352463 +sg291132 +S'1970' +p352464 +sg291134 +S'Purple Wash Drawing/First of the Group...' +p352465 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352466 +sa(dp352467 +g291130 +S'acrylic over graphite on Hamilton bond paper' +p352468 +sg291132 +S'1970' +p352469 +sg291134 +S'Rendering of Cobalt Wall Painting' +p352470 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352471 +sa(dp352472 +g291130 +S'watercolor and acrylic over graphite on Hamilton bond paper' +p352473 +sg291132 +S'1970' +p352474 +sg291134 +S'Study for 3rd Wall Painting' +p352475 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352476 +sa(dp352477 +g291130 +S'brush and black ink on Hamilton bond paper' +p352478 +sg291132 +S'1970' +p352479 +sg291134 +S'Study for 4th Wall Painting' +p352480 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352481 +sa(dp352482 +g291130 +S'orange, blue, and green felt-tip pen on verso of colophon page from portfolio "2 Books", 1969' +p352483 +sg291132 +S'1970' +p352484 +sg291134 +S'Three Triangles and Three Colors' +p352485 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352486 +sa(dp352487 +g291130 +S'black felt-tip pen and graphite on wove paper' +p352488 +sg291132 +S'1971' +p352489 +sg291134 +S'Onion Sketch Treatise' +p352490 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352491 +sa(dp352492 +g291130 +S'watercolor over graphite on wove paper' +p352493 +sg291132 +S'1971' +p352494 +sg291134 +S'Stacked Color Drawing with Arch of Egg Shaped Form Painted' +p352495 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352496 +sa(dp352497 +g291130 +S'watercolor and graphite on Hamilton bond paper' +p352498 +sg291132 +S'1971' +p352499 +sg291134 +S'Stacked Color Drawing with Nine Pencil Lines Joined by Eight Colors' +p352500 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352501 +sa(dp352502 +g291130 +S'watercolor over graphite on wove paper' +p352503 +sg291132 +S'1971' +p352504 +sg291134 +S'Stacked Color with Wavy and Straight Side' +p352505 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352506 +sa(dp352507 +g291130 +S'brush and white ink on black construction paper' +p352508 +sg291132 +S'1972' +p352509 +sg291134 +S'Night' +p352510 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352511 +sa(dp352512 +g291130 +S'watercolor over graphite on wove paper' +p352513 +sg291132 +S'1972' +p352514 +sg291134 +S'Red and Gold Hook' +p352515 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352516 +sa(dp352517 +g291130 +S'watercolor over graphite on wove paper' +p352518 +sg291132 +S'1972' +p352519 +sg291134 +S'Summer Notebook Drawing (July & August 1972) No. 1' +p352520 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352521 +sa(dp352522 +g291130 +S'red watercolor and graphite on wove paper' +p352523 +sg291132 +S'1972' +p352524 +sg291134 +S'Summer Notebook Drawing (July & August 1972) No. 2' +p352525 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352526 +sa(dp352527 +g291130 +S'brush and white ink on black construction paper' +p352528 +sg291132 +S'1972' +p352529 +sg291134 +S'Two Triangles Intersecting' +p352530 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352531 +sa(dp352532 +g291130 +S'watercolor and graphite on wove paper' +p352533 +sg291132 +S'1973' +p352534 +sg291134 +S'1st Rendering for Yale Piece' +p352535 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352536 +sa(dp352537 +g291130 +S'watercolor and graphite on wove paper' +p352538 +sg291132 +S'1973' +p352539 +sg291134 +S'2nd Rendering for Yale Piece' +p352540 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352541 +sa(dp352542 +g291130 +S'watercolor and graphite on wove paper' +p352543 +sg291132 +S'1973' +p352544 +sg291134 +S'3rd Rendering for Yale Piece' +p352545 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352546 +sa(dp352547 +g291130 +S'brush and black and white ink over graphite on wove paper' +p352548 +sg291132 +S'1973' +p352549 +sg291134 +S'Acropolis' +p352550 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352551 +sa(dp352552 +g291130 +S'watercolor over graphite on wove paper' +p352553 +sg291132 +S'1973' +p352554 +sg291134 +S'Black & Gray with Diagonal' +p352555 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352556 +sa(dp352557 +g291130 +S'brush and black ink and graphite on wove paper' +p352558 +sg291132 +S'1973' +p352559 +sg291134 +S'Black Diamond with Pencil Line' +p352560 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352561 +sa(dp352562 +g291130 +S'acrylic on laid paper' +p352563 +sg291132 +S'1973' +p352564 +sg291134 +S'Blue E' +p352565 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352566 +sa(dp352567 +g291130 +S'red, yellow, blue, and black felt-tip pen over graphite on wove paper' +p352568 +sg291132 +S'1973' +p352569 +sg291134 +S'Blue, Yellow, and Red Fused under Diagonal' +p352570 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352571 +sa(dp352572 +g291130 +S'felt-tip pen on wove paper' +p352573 +sg291132 +S'1973' +p352574 +sg291134 +S'Dot for Dot' +p352575 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352576 +sa(dp352577 +g291130 +S'acrylic over graphite on wove paper' +p352578 +sg291132 +S'1973' +p352579 +sg291134 +S'Marriage Mirage' +p352580 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352581 +sa(dp352582 +g291130 +S'watercolor over graphite on wove paper' +p352583 +sg291132 +S'1973' +p352584 +sg291134 +S'Red Spiral Drawing (2)' +p352585 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352586 +sa(dp352587 +g291130 +S'brush and black ink over graphite on wove paper' +p352588 +sg291132 +S'1973' +p352589 +sg291134 +S'Rendering for the Twelfth of Thirteen Spiral Drawings' +p352590 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352591 +sa(dp352592 +g291130 +S'felt-tip pen over graphite on tracing paper' +p352593 +sg291132 +S'1973' +p352594 +sg291134 +S'Monument 13' +p352595 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352596 +sa(dp352597 +g291130 +S'graphite on wove paper' +p352598 +sg291132 +S'1973' +p352599 +sg291134 +S'Walking' +p352600 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352601 +sa(dp352602 +g291130 +S'watercolor over graphite on wove paper' +p352603 +sg291132 +S'1974' +p352604 +sg291134 +S'Black Horizontal (Arles)' +p352605 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352606 +sa(dp352607 +g291130 +S'pen and black ink on wove paper' +p352608 +sg291132 +S'1974' +p352609 +sg291134 +S'Diagonal/Right Angle 1 Diagonal of Two Fused Straight Lines; Right Angle of Straight Lines' +p352610 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352611 +sa(dp352612 +g291130 +S'pen and black ink on Nekoosa bond paper' +p352613 +sg291132 +S'1974' +p352614 +sg291134 +S'Diagonal/Right Angle 2 Diagonal of Two Straight Lines; Right Angle Hand Drawn' +p352615 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352616 +sa(dp352617 +g291130 +S'pen and black ink on wove paper' +p352618 +sg291132 +S'1974' +p352619 +sg291134 +S'Diagonal/Right Angle 3 Diagonal of Two Hand Drawn Lines; Right Angle of Straight Lines' +p352620 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352621 +sa(dp352622 +g291130 +S'pen and black ink on wove paper' +p352623 +sg291132 +S'1974' +p352624 +sg291134 +S'Diagonal/Right Angle 4 Diagonal of Two Hand Drawn Lines; Right Angle Hand Drawn' +p352625 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352626 +sa(dp352627 +g291130 +S'watercolor over graphite on wove paper' +p352628 +sg291132 +S'1974' +p352629 +sg291134 +S'Pink Horizontal (Paris)' +p352630 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352631 +sa(dp352632 +g291130 +S'watercolor and graphite on wove paper' +p352633 +sg291132 +S'1974' +p352634 +sg291134 +S'Plane Brought Back as Reflection' +p352635 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352636 +sa(dp352637 +g291130 +S'colored pencil and graphite on museum board mounted on wood construction' +p352638 +sg291132 +S'1981' +p352639 +sg291134 +S'2;Brown Bar #1' +p352640 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352641 +sa(dp352642 +g291130 +S'watercolor and colored pencil on museum board mounted on wood construction' +p352643 +sg291132 +S'1981' +p352644 +sg291134 +S'2;Brown Bar #10' +p352645 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352646 +sa(dp352647 +g291130 +S'colored pencil, graphite, and watercolor on museum board mounted on wood construction' +p352648 +sg291132 +S'1981' +p352649 +sg291134 +S'2;Brown Bar #2' +p352650 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352651 +sa(dp352652 +g291130 +S'colored pencil on museum board mounted on wood construction' +p352653 +sg291132 +S'1981' +p352654 +sg291134 +S'2;Brown Bar #3' +p352655 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352656 +sa(dp352657 +g291130 +S'watercolor and graphite on museum board mounted on wood construction' +p352658 +sg291132 +S'1981' +p352659 +sg291134 +S'2;Brown Bar #4' +p352660 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352661 +sa(dp352662 +g291130 +S'watercolor, colored pencil, and graphite on museum board mounted on wood construction' +p352663 +sg291132 +S'1981' +p352664 +sg291134 +S'2;Brown Bar #5' +p352665 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352666 +sa(dp352667 +g291130 +S'watercolor, colored pencil, and graphite on museum board mounted on wood construction' +p352668 +sg291132 +S'1981' +p352669 +sg291134 +S'2;Brown Bar #6' +p352670 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352671 +sa(dp352672 +g291130 +S'graphite and colored pencil on museum board mounted on wood construction' +p352673 +sg291132 +S'1981' +p352674 +sg291134 +S'2;Brown Bar #7' +p352675 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352676 +sa(dp352677 +g291130 +S'watercolor and colored pencil on museum board mounted on wood construction' +p352678 +sg291132 +S'1981' +p352679 +sg291134 +S'2;Brown Bar #8' +p352680 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352681 +sa(dp352682 +g291130 +S'colored pencil and watercolor on museum board mounted on wood construction' +p352683 +sg291132 +S'1981' +p352684 +sg291134 +S'2;Brown Bar #9' +p352685 +sg291136 +g27 +sg291137 +S'Richard Tuttle' +p352686 +sa(dp352687 +g291134 +S'Venus and Cupid' +p352688 +sg291137 +S'Artist Information (' +p352689 +sg291130 +S'Flemish, 1529 - 1608' +p352690 +sg291132 +S'(related artist)' +p352691 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00034/a0003400.jpg' +p352692 +sg291136 +S"The most important Renaissance bronze statue to enter the collections since the founding of the National Gallery of Art, \n The lithe Venus, wringing water from her long hair, is a close variant of Giambologna's \n The style and the pronounced links with works in Florence suggest that this is the creation of an artist who had access to Giambologna's workshop, and thus was a close collaborator. Since a model for the Medici \n (Text by Alison Luchs, published in the National Gallery of Art exhibition catalogue, \n " +p352693 +sa(dp352694 +g291134 +S'Orchard (Obstgarten)' +p352695 +sg291137 +S'Lovis Corinth' +p352696 +sg291130 +S'drypoint in black on laid paper' +p352697 +sg291132 +S'1918' +p352698 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b676.jpg' +p352699 +sg291136 +g27 +sa(dp352700 +g291134 +S'Corner of a House (Hausecke)' +p352701 +sg291137 +S'Lovis Corinth' +p352702 +sg291130 +S'drypoint in black on laid paper' +p352703 +sg291132 +S'1918' +p352704 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5df.jpg' +p352705 +sg291136 +g27 +sa(dp352706 +g291134 +S'Anneliese Halbe (Bildnis einer Jungen Dame (Anneliese Halbe))' +p352707 +sg291137 +S'Lovis Corinth' +p352708 +sg291130 +S'drypoint in black on laid paper' +p352709 +sg291132 +S'1918' +p352710 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5db.jpg' +p352711 +sg291136 +g27 +sa(dp352712 +g291134 +S'The Cat of the Prophet (Die Katze des Propheten)' +p352713 +sg291137 +S'Lovis Corinth' +p352714 +sg291130 +S'drypoint in black on wove paper' +p352715 +sg291132 +S'1919' +p352716 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5de.jpg' +p352717 +sg291136 +g27 +sa(dp352718 +g291134 +S'Adhba the Camel (Adhba die Kamelin)' +p352719 +sg291137 +S'Lovis Corinth' +p352720 +sg291130 +S'drypoint in black on wove paper' +p352721 +sg291132 +S'1919' +p352722 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5dc.jpg' +p352723 +sg291136 +g27 +sa(dp352724 +g291134 +S'Count Keyserling (Bildnis des Grafen Keyserling)' +p352725 +sg291137 +S'Lovis Corinth' +p352726 +sg291130 +S'drypoint and roulette in black on japan paper' +p352727 +sg291132 +S'1919' +p352728 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b679.jpg' +p352729 +sg291136 +g27 +sa(dp352730 +g291134 +S'Bathing Place (Badeanstalt)' +p352731 +sg291137 +S'Lovis Corinth' +p352732 +sg291130 +S'drypoint in black on japan paper' +p352733 +sg291132 +S'1919' +p352734 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b673.jpg' +p352735 +sg291136 +g27 +sa(dp352736 +g291134 +S'Andreas Weissgaerber-I (Bildnis Andreas Weissgaerber)' +p352737 +sg291137 +S'Lovis Corinth' +p352738 +sg291130 +S'drypoint in black on laid paper' +p352739 +sg291132 +S'1919' +p352740 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b67d.jpg' +p352741 +sg291136 +g27 +sa(dp352742 +g291134 +S'Andreas Weissgaerber-II (Bildnis Andreas Weissgaerber)' +p352743 +sg291137 +S'Lovis Corinth' +p352744 +sg291130 +S'drypoint in black on laid paper' +p352745 +sg291132 +S'1919' +p352746 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b683.jpg' +p352747 +sg291136 +g27 +sa(dp352748 +g291134 +S'The Banquet of Trimalchio: pl.I' +p352749 +sg291137 +S'Lovis Corinth' +p352750 +sg291130 +S'drypoint in black on wove paper' +p352751 +sg291132 +S'1919' +p352752 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5e2.jpg' +p352753 +sg291136 +g27 +sa(dp352754 +g291134 +S'The Banquet of Trimalchio: pl.II' +p352755 +sg291137 +S'Lovis Corinth' +p352756 +sg291130 +S'drypoint in black on wove paper' +p352757 +sg291132 +S'1919' +p352758 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b686.jpg' +p352759 +sg291136 +g27 +sa(dp352760 +g291134 +S'The Banquet of Trimalchio: pl.V' +p352761 +sg291137 +S'Lovis Corinth' +p352762 +sg291130 +S'drypoint in black on white wove paper' +p352763 +sg291132 +S'1919' +p352764 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5dd.jpg' +p352765 +sg291136 +g27 +sa(dp352766 +g291134 +S'The Banquet of Trimalchio: pl.VII' +p352767 +sg291137 +S'Lovis Corinth' +p352768 +sg291130 +S'drypoint in black on white wove paper' +p352769 +sg291132 +S'1919' +p352770 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b685.jpg' +p352771 +sg291136 +g27 +sa(dp352772 +g291134 +S'The Banquet of Trimalchio: pl.XI' +p352773 +sg291137 +S'Lovis Corinth' +p352774 +sg291130 +S'drypoint in black on white wove paper' +p352775 +sg291132 +S'1919' +p352776 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b684.jpg' +p352777 +sg291136 +g27 +sa(dp352778 +g291134 +S'The Sacrifice of Isaac (Die Opferung Isaacs)' +p352779 +sg291137 +S'Artist Information (' +p352780 +sg291130 +S'(artist after)' +p352781 +sg291132 +S'\n' +p352782 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b67f.jpg' +p352783 +sg291136 +g27 +sa(dp352784 +g291134 +S'Der Fahnentr\xc3\xa4ger (The Standard Bearer)' +p352785 +sg291137 +S'Lovis Corinth' +p352786 +sg291130 +S'drypoint and roulette in black on wove paper' +p352787 +sg291132 +S'1920' +p352788 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b67e.jpg' +p352789 +sg291136 +g27 +sa(dp352790 +g291134 +S'View of the Tiergarten (Aus dem Tiergarten)' +p352791 +sg291137 +S'Lovis Corinth' +p352792 +sg291130 +S'drypoint in black on wove paper' +p352793 +sg291132 +S'1920' +p352794 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f93.jpg' +p352795 +sg291136 +g27 +sa(dp352796 +g291134 +S'The Poet (Der Dichter)' +p352797 +sg291137 +S'Lovis Corinth' +p352798 +sg291130 +S'drypoint and roulette in black on wove paper' +p352799 +sg291132 +S'1920' +p352800 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b681.jpg' +p352801 +sg291136 +g27 +sa(dp352802 +g291134 +S'Sunday Riders (Sonntagsreiter)' +p352803 +sg291137 +S'Lovis Corinth' +p352804 +sg291130 +S'drypoint in black on laid paper' +p352805 +sg291132 +S'1920' +p352806 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b68a.jpg' +p352807 +sg291136 +g27 +sa(dp352808 +g291134 +S"The Artist's Mother-in-Law (Des K\xc3\xbcnstlers Schwiegermutter)" +p352809 +sg291137 +S'Lovis Corinth' +p352810 +sg291130 +S'drypoint in black on laid paper' +p352811 +sg291132 +S'1920' +p352812 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5da.jpg' +p352813 +sg291136 +g27 +sa(dp352814 +g291134 +S'Self-Portrait (Selbstbildnis)' +p352815 +sg291137 +S'Lovis Corinth' +p352816 +sg291130 +S'drypoint in black on laid paper' +p352817 +sg291132 +S'1920' +p352818 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5e4.jpg' +p352819 +sg291136 +g27 +sa(dp352820 +g291134 +S'Karl Schwarz (Bildnis K.S.)' +p352821 +sg291137 +S'Lovis Corinth' +p352822 +sg291130 +S'drypoint in black on wove paper' +p352823 +sg291132 +S'1920' +p352824 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5e3.jpg' +p352825 +sg291136 +g27 +sa(dp352826 +g291134 +S'Hermann Struck (Bildnisstudie H. St.)' +p352827 +sg291137 +S'Lovis Corinth' +p352828 +sg291130 +S'drypoint in black on wove paper' +p352829 +sg291132 +S'1920' +p352830 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b5e7.jpg' +p352831 +sg291136 +g27 +sa(dp352832 +g291134 +S'Cats (Katzenstudie)' +p352833 +sg291137 +S'Lovis Corinth' +p352834 +sg291130 +S'drypoint and open-bite etching on laid paper' +p352835 +sg291132 +S'1920' +p352836 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b688.jpg' +p352837 +sg291136 +g27 +sa(dp352838 +g291134 +S'Henny Porten' +p352839 +sg291137 +S'Lovis Corinth' +p352840 +sg291130 +S'soft-ground etching on laid paper' +p352841 +sg291132 +S'1923' +p352842 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b69b.jpg' +p352843 +sg291136 +g27 +sa(dp352844 +g291130 +S'lithograph' +p352845 +sg291132 +S'1923' +p352846 +sg291134 +S'Sigbert Marzynski' +p352847 +sg291136 +g27 +sg291137 +S'Lovis Corinth' +p352848 +sa(dp352849 +g291130 +S'lithograph in black on laid paper' +p352850 +sg291132 +S'1923' +p352851 +sg291134 +S'Sigbert Marzynski' +p352852 +sg291136 +g27 +sg291137 +S'Lovis Corinth' +p352853 +sa(dp352854 +g291130 +S'lithograph in black on laid paper' +p352855 +sg291132 +S'1923' +p352856 +sg291134 +S'Sigbert Marzynski' +p352857 +sg291136 +g27 +sg291137 +S'Lovis Corinth' +p352858 +sa(dp352859 +g291130 +S'lithograph in black on laid paper' +p352860 +sg291132 +S'1923' +p352861 +sg291134 +S'Sigbert Marzynski' +p352862 +sg291136 +g27 +sg291137 +S'Lovis Corinth' +p352863 +sa(dp352864 +g291130 +S'lithograph in black on laid paper' +p352865 +sg291132 +S'1923' +p352866 +sg291134 +S'Sigbert Marzynski' +p352867 +sg291136 +g27 +sg291137 +S'Lovis Corinth' +p352868 +sa(dp352869 +g291130 +S'lithograph in black on laid paper' +p352870 +sg291132 +S'1923' +p352871 +sg291134 +S'Sigbert Marzynski' +p352872 +sg291136 +g27 +sg291137 +S'Lovis Corinth' +p352873 +sa(dp352874 +g291134 +S'Title Page for "Wallensteins Lager" ("Wallenstein\'s Camp")' +p352875 +sg291137 +S'Lovis Corinth' +p352876 +sg291130 +S'etching in black on laid paper' +p352877 +sg291132 +S'1923' +p352878 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b6a4.jpg' +p352879 +sg291136 +g27 +sa(dp352880 +g291134 +S'"Vater, es wird nicht gut ablaufen, bleiben wir von dem soldatenhaufen" ("Father, this won\'t end well, we\'d better stay away from that hoard of soldiers")' +p352881 +sg291137 +S'Lovis Corinth' +p352882 +sg291130 +S'etching in black on laid paper' +p352883 +sg291132 +S'1923' +p352884 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b6a5.jpg' +p352885 +sg291136 +g27 +sa(dp352886 +g291134 +S'"Einer dirne sch\xc3\xb6n gesicht muss allgemein sein wie\'s sonnenlicht" ("A pretty girl\'s face must be as common as sunlight")' +p352887 +sg291137 +S'Lovis Corinth' +p352888 +sg291130 +S'etching in black on laid paper' +p352889 +sg291132 +S'1923' +p352890 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b6a6.jpg' +p352891 +sg291136 +g27 +sa(dp352892 +g291134 +S'"Was der blitz! Das ist ja die gustel von blasewitz" ("How she flashes! Ya, it\'s Gustel von Blasewitz")' +p352893 +sg291137 +S'Lovis Corinth' +p352894 +sg291130 +S'etching in black on laid paper' +p352895 +sg291132 +S'1923' +p352896 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b6a7.jpg' +p352897 +sg291136 +g27 +sa(dp352898 +g291134 +S'Kapuzinerpredigt "Hetzt sich lieber herum mit der Dirn\'" (Sermon of the Capuchin Monk "It\'s better to bother yourself with the pursuit of women")' +p352899 +sg291137 +S'Lovis Corinth' +p352900 +sg291130 +S'etching in black on laid paper' +p352901 +sg291132 +S'1923' +p352902 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b6a8.jpg' +p352903 +sg291136 +g27 +sa(dp352904 +g291134 +S'"Wohl auf, kameraden, aufs pferd, aufs pferd! Ins feld, in die freiheit gezogen!" ("Come on comrades, to horse, to horse! To action, freedom beckons us")' +p352905 +sg291137 +S'Lovis Corinth' +p352906 +sg291130 +S'etching in black on laid paper' +p352907 +sg291132 +S'1923' +p352908 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b6/a000b6a9.jpg' +p352909 +sg291136 +g27 +sa(dp352910 +g291134 +S'Herd of Sheep Under Trees' +p352911 +sg291137 +S'Max Liebermann' +p352912 +sg291130 +S'etching and soft-ground etching on japan paper' +p352913 +sg291132 +S'1891' +p352914 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00058/a00058e0.jpg' +p352915 +sg291136 +g27 +sa(dp352916 +g291130 +S'lithograph on wove paper' +p352917 +sg291132 +S'1924' +p352918 +sg291134 +S'Never Again War (Nie Wieder Krieg)' +p352919 +sg291136 +g27 +sg291137 +S'K\xc3\xa4the Kollwitz' +p352920 +sa(dp352921 +g291134 +S'Harbor' +p352922 +sg291137 +S'Georges Braque' +p352923 +sg291130 +S'oil on canvas' +p352924 +sg291132 +S'1909' +p352925 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dc3.jpg' +p352926 +sg291136 +g27 +sa(dp352927 +g291134 +S'Sacrifice of Abraham' +p352928 +sg291137 +S'Hieronymus Cock' +p352929 +sg291130 +S'etching on laid paper' +p352930 +sg291132 +S'1551' +p352931 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cf3e.jpg' +p352932 +sg291136 +g27 +sa(dp352933 +g291130 +S'etching on laid paper' +p352934 +sg291132 +S'1924' +p352935 +sg291134 +S'Mountain Landscape' +p352936 +sg291136 +g27 +sg291137 +S'Erich Heckel' +p352937 +sa(dp352938 +g291134 +S'Lamech and Cain' +p352939 +sg291137 +S'Lucas van Leyden' +p352940 +sg291130 +S'engraving on laid paper' +p352941 +sg291132 +S'1524' +p352942 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce47.jpg' +p352943 +sg291136 +g27 +sa(dp352944 +g291134 +S'Battlefield' +p352945 +sg291137 +S'Karel Dujardin' +p352946 +sg291130 +S'etching and drypoint on laid paper' +p352947 +sg291132 +S'1652' +p352948 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0da.jpg' +p352949 +sg291136 +g27 +sa(dp352950 +g291134 +S'The Portrait Bust' +p352951 +sg291137 +S'Hubert Robert' +p352952 +sg291130 +S'etching on laid paper' +p352953 +sg291132 +S'1764' +p352954 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c84.jpg' +p352955 +sg291136 +g27 +sa(dp352956 +g291134 +S'The Ancient Temple' +p352957 +sg291137 +S'Hubert Robert' +p352958 +sg291130 +S'etching on laid paper' +p352959 +sg291132 +S'1763/1764' +p352960 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c86.jpg' +p352961 +sg291136 +g27 +sa(dp352962 +g291134 +S'The Sarcophagus' +p352963 +sg291137 +S'Hubert Robert' +p352964 +sg291130 +S'etching on laid paper' +p352965 +sg291132 +S'1763/1764' +p352966 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c81.jpg' +p352967 +sg291136 +g27 +sa(dp352968 +g291134 +S'The Triumphal Arch' +p352969 +sg291137 +S'Hubert Robert' +p352970 +sg291130 +S'etching on laid paper' +p352971 +sg291132 +S'1763/1764' +p352972 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c85.jpg' +p352973 +sg291136 +g27 +sa(dp352974 +g291134 +S'The Post' +p352975 +sg291137 +S'Hubert Robert' +p352976 +sg291130 +S'etching on laid paper' +p352977 +sg291132 +S'1763/1764' +p352978 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c82.jpg' +p352979 +sg291136 +g27 +sa(dp352980 +g291134 +S'Two Scouts' +p352981 +sg291137 +S'Winslow Homer' +p352982 +sg291130 +S'watercolor over graphite on wove paper' +p352983 +sg291132 +S'1887' +p352984 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a000090a.jpg' +p352985 +sg291136 +g27 +sa(dp352986 +g291134 +S'Valley Curtain, Project for Colorado, Grand Hogback' +p352987 +sg291137 +S'Christo' +p352988 +sg291130 +S'collage with photostat by Harry Shunk, fabric, two diazo prints, enamel paint, graphite, colored pencil, wax crayon, tape, and staples on paperboard' +p352989 +sg291132 +S'1971' +p352990 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00054/a00054c7.jpg' +p352991 +sg291136 +g27 +sa(dp352992 +g291130 +S'collage with wax crayon, graphite, ball-point pen, brown wove paper and typed description on paperboard' +p352993 +sg291132 +S'1972' +p352994 +sg291134 +S'Running Fence, Project for the West Coast - USA' +p352995 +sg291136 +g27 +sg291137 +S'Christo' +p352996 +sa(dp352997 +g291134 +S'Package 1974' +p352998 +sg291137 +S'Christo' +p352999 +sg291130 +S'tarpaulin, rope, and wood' +p353000 +sg291132 +S'1974' +p353001 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00052/a0005276.jpg' +p353002 +sg291136 +S'Christo made his first packages and wrapped objects as part of a group called \n The critic David Bourdon called Christo\'s work "revelation through concealment",\n By extension, the fabric also alludes to the human body and to Christo\'s anthropological concerns. In discussing the medium, the artist cited a more contemporary and personal referent when relating the use of fabric to his Marxist background. He commented, "Friedrich Engels said that fabric made [modern] man different from primitive man...fabric is almost like an extension of our skin."\n Fabric has been the common denominator in Christo and Jeanne-Claude\'s work for over forty years, and has ranged in type from found materials to custom industrial weaves. The artists\' formalist concerns embrace the properties of fabric: its folds, pleats, and drape, which are created by the ropes or lines that bind or support it. Beyond these physical dimensions, however, Christo and Jeanne-Claude\'s work infiltrates the social fabric of the time and place where it is created.\n\n Package 1974\n In making \n (Text by Molly Donovan, published in the National Gallery of Art exhibition catalogue, \n Notes\n \n\n \n\n \n\n ' +p353003 +sa(dp353004 +g291130 +S'black felt-tip pen and graphite on blue laid paper' +p353005 +sg291132 +S'1969' +p353006 +sg291134 +S'Drawing Series I, II, III, IIII/IA [recto]' +p353007 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p353008 +sa(dp353009 +g291130 +S'black felt-tip pen and graphite on blue laid paper' +p353010 +sg291132 +S'1969' +p353011 +sg291134 +S'Untitled [verso]' +p353012 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p353013 +sa(dp353014 +g291130 +S'pen and black ink over graphite on wove paper' +p353015 +sg291132 +S'1969' +p353016 +sg291134 +S'Pen and Ink Drawing of Diagonal, Horizontal and Vertical Lines, Black on White' +p353017 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p353018 +sa(dp353019 +g291134 +S'Untitled' +p353020 +sg291137 +S'Sol LeWitt' +p353021 +sg291130 +S'painted wood' +p353022 +sg291132 +S'1971' +p353023 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00056/a000560f.jpg' +p353024 +sg291136 +g27 +sa(dp353025 +g291130 +S'colored felt-tip pen on wove paper' +p353026 +sg291132 +S'1972' +p353027 +sg291134 +S'Red Grid, Blue Circles, Black Arcs from Four Sides and Yellow Arcs from Four Corners' +p353028 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p353029 +sa(dp353030 +g291130 +S'red and blue felt-tip pens with graphite on wove paper' +p353031 +sg291132 +S'1975' +p353032 +sg291134 +S'Red Lines from the Midpoint of the Left Side and Blue Lines from the Midpoint of the Bottom Side' +p353033 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p353034 +sa(dp353035 +g291130 +S'red and blue felt-tip pens with graphite on wove paper' +p353036 +sg291132 +S'1975' +p353037 +sg291134 +S'Red Lines from Midpoint of the Left Side and the Upper Left Corner, Blue Lines from the Midpoint of the Bottom Side and the Lower Right Corner' +p353038 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p353039 +sa(dp353040 +g291134 +S'1/2 X Series (Medium Scale)' +p353041 +sg291137 +S'Robert Mangold' +p353042 +sg291130 +S'acrylic on incised hardboard' +p353043 +sg291132 +S'1968' +p353044 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b2f.jpg' +p353045 +sg291136 +g27 +sa(dp353046 +g291130 +S'acrylic and graphite on wove paper mounted on paperboard' +p353047 +sg291132 +S'1981' +p353048 +sg291134 +S'Red/Green X Within X' +p353049 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p353050 +sa(dp353051 +g291130 +S'acrylic and graphite on four sheets of joined paper mounted to illustration board' +p353052 +sg291132 +S'1984' +p353053 +sg291134 +S'Four Color Frame Painting #1' +p353054 +sg291136 +g27 +sg291137 +S'Robert Mangold' +p353055 +sa(dp353056 +g291134 +S'Albert Einstein' +p353057 +sg291137 +S'Max Liebermann' +p353058 +sg291130 +S'lithograph on wove paper' +p353059 +sg291132 +S'1922' +p353060 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00058/a00058e1.jpg' +p353061 +sg291136 +g27 +sa(dp353062 +g291134 +S'The Japanese Footbridge' +p353063 +sg291137 +S'Claude Monet' +p353064 +sg291130 +S'oil on canvas' +p353065 +sg291132 +S'1899' +p353066 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00006/a0000671.jpg' +p353067 +sg291136 +S"In 1883 Monet moved his household, his two sons along with Alice Hoschedé and her children, to the rural community of Giverny, where he leased a house that he was able to purchase seven years later. In early 1893, he acquired a swampy area across the railroad tracks abutting his property and petitioned the village council for permission to divert a small stream into it. But it was only toward the end of that decade that he turned to the garden he had created there as a rich source of artistic inspiration.\n In 1899, Monet painted 12 works from a single vantage point, focusing on the arching blue–green bridge and the microcosm of his water garden. Among the 12 works was the National Gallery's \n When Monet exhibited these paintings at Durand–Ruel's gallery in 1900, a number of critics mentioned his debt to Japanese art. More telling, the impenetrable green enclosure—heightened in the National Gallery painting by the placement of the top of the bridge's arch just below the painting's top edge—harkens back to the \n " +p353068 +sa(dp353069 +g291134 +S'Saint Sebastian' +p353070 +sg291137 +S'Artist Information (' +p353071 +sg291130 +S'Netherlandish, 1540/1550 - 1620' +p353072 +sg291132 +S'(related artist)' +p353073 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002da4.jpg' +p353074 +sg291136 +S'A creation of supreme refinement as well as dramatic intensity, this \n Saint Sebastian, a Roman soldier martyred as a Christian, appears frequently in painting and sculpture from the fifteenth to the eighteenth centuries. According to legend, he was bound to a tree and shot full of arrows (an ordeal he survived, only to be clubbed to death later). The affliction with arrows led to his veneration as a protector against the comparable agonies of the plague, but his story also allowed artists to demonstrate to connoisseurs their ability to display an ideal young male nude in a pose full of expressive tension. The sculptor of this version was evidently familiar with the pose in paintings by artists such as Hans von Aachen (1552 - 1615), whose \n The sculptor imagined the saint with a short but strongly articulated torso, muscular shoulders, expansive rib cage, narrow waist, and heavy buttocks, one of which had to be flattened in the wax model to permit attachment to a tree-shaped support. With one leg bent back, and the foot of the straight leg barely grazing the ground, the figure appears in almost weightless suspension. His face turns upward and his forehead wrinkles in an agony that searches the heavens for help. His long, fleecy curls, sinuously modeled, suggest the flow of melting wax.\n\n This \n (Text by Alison Luchs, published in the National Gallery of Art exhibition catalogue, \n Notes\n \n \n \n \n \n \n ' +p353075 +sa(dp353076 +g291134 +S'Moonrise on an Empty Shore' +p353077 +sg291137 +S'Caspar David Friedrich' +p353078 +sg291130 +S'sepia washes over graphite on wove paper (with original black ink border)' +p353079 +sg291132 +S'1837/1839' +p353080 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a000253b.jpg' +p353081 +sg291136 +g27 +sa(dp353082 +g291134 +S'A Triumphal Procession in Ancient Rome' +p353083 +sg291137 +S'Gaetano Gandolfi' +p353084 +sg291130 +S'pen and brown ink with brown wash over graphite and black chalk' +p353085 +sg291132 +S'c. 1780' +p353086 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a000253d.jpg' +p353087 +sg291136 +g27 +sa(dp353088 +g291130 +S'1 vol: ill: 10 lithographs in yellow, red, and black plus images on cover and front leaf; this copy contains 1 hand-colored page' +p353089 +sg291132 +S'published 1982' +p353090 +sg291134 +S'Ich Stand vor der Mauer aus Glas (I Stood before the Glass Wall)' +p353091 +sg291136 +g27 +sg291137 +S'Markus L\xc3\xbcpertz' +p353092 +sa(dp353093 +g291134 +S'La promenade du Critique influent' +p353094 +sg291137 +S'Honor\xc3\xa9 Daumier' +p353095 +sg291130 +S'lithograph on wove paper' +p353096 +sg291132 +S'published 1865' +p353097 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00094/a00094e7.jpg' +p353098 +sg291136 +g27 +sa(dp353099 +g291134 +S'Alpheus and Arethusa' +p353100 +sg291137 +S'Jacopo Guarana' +p353101 +sg291130 +S'etching and engraving on heavy laid paper' +p353102 +sg291132 +S'1770/1780' +p353103 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc0d.jpg' +p353104 +sg291136 +g27 +sa(dp353105 +g291134 +S'The Death of Priam' +p353106 +sg291137 +S'Michael Lukas Leopold Willmann' +p353107 +sg291130 +S'pen and brown ink with brown washes over graphite on tan laid paper' +p353108 +sg291132 +S'c. 1660' +p353109 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a00028e9.jpg' +p353110 +sg291136 +g27 +sa(dp353111 +g291134 +S'Shell (Vasum ceramicum)' +p353112 +sg291137 +S'Wenceslaus Hollar' +p353113 +sg291130 +S'etching on laid paper' +p353114 +sg291132 +S'c. 1645' +p353115 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000db/a000db1e.jpg' +p353116 +sg291136 +g27 +sa(dp353117 +g291134 +S'Shell (Murex brandaris)' +p353118 +sg291137 +S'Wenceslaus Hollar' +p353119 +sg291130 +S'etching on laid paper' +p353120 +sg291132 +S'c. 1645' +p353121 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f40.jpg' +p353122 +sg291136 +g27 +sa(dp353123 +g291134 +S'The Martyrdom of Saint Sebastian' +p353124 +sg291137 +S'Aegidius Sadeler II' +p353125 +sg291130 +S'black chalk with brown and gray wash heightened with white on laid paper' +p353126 +sg291132 +S'c. 1620' +p353127 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00027/a00027a5.jpg' +p353128 +sg291136 +g27 +sa(dp353129 +g291134 +S'The Martyrdom of Saint Sebastian' +p353130 +sg291137 +S'Aegidius Sadeler II' +p353131 +sg291130 +S'engraving on laid paper' +p353132 +sg291132 +S'c. 1620' +p353133 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d076.jpg' +p353134 +sg291136 +g27 +sa(dp353135 +g291134 +S'Cetara on the Gulf of Salerno' +p353136 +sg291137 +S'John Robert Cozens' +p353137 +sg291130 +S'watercolor over graphite on wove paper' +p353138 +sg291132 +S'1790' +p353139 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a000242c.jpg' +p353140 +sg291136 +g27 +sa(dp353141 +g291134 +S'Slum Gardens No. 3' +p353142 +sg291137 +S'Joseph Norman' +p353143 +sg291130 +S'charcoal on wove paper' +p353144 +sg291132 +S'1990' +p353145 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00060/a0006064.jpg' +p353146 +sg291136 +S"The densely layered image of \n Joseph Norman frequently uses landscape imagery to convey meaning. For this work he drew on his experiences growing up in the ghettos of Chicago and on a trip in 1990 to Costa Rica, where he witnessed the affects of poverty on various neighborhoods. \n Norman was born in Chicago in 1957. He received a BS is art education from the University of Arkansas, Little Rock, in 1980 and an MFA six years later from the University of Cincinnati. After teaching drawing for nine years at the Rhode Island School of Design, Providence, he took a professorship at the Lamar Dodd School of Art at the University of Georgia, Athens, in 2001. He currently serves as the school's chairman of drawing and painting.\n " +p353147 +sa(dp353148 +g291130 +S'lithograph on Arches paper' +p353149 +sg291132 +S'1990' +p353150 +sg291134 +S'Notorious' +p353151 +sg291136 +g27 +sg291137 +S'Joseph Norman' +p353152 +sa(dp353153 +g291130 +S'painted steel' +p353154 +sg291132 +S'model 1962, fabricated 1992' +p353155 +sg291134 +S'The Snake Is Out' +p353156 +sg291136 +g27 +sg291137 +S'Tony Smith' +p353157 +sa(dp353158 +g291134 +S'Joseph Vien' +p353159 +sg291137 +S'Artist Information (' +p353160 +sg291130 +S'(artist after)' +p353161 +sg291132 +S'\n' +p353162 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ff/a000ffa0.jpg' +p353163 +sg291136 +g27 +sa(dp353164 +g291134 +S'Saint Christopher Giving His Hand to the Infant Jesus' +p353165 +sg291137 +S'Francesco Amato' +p353166 +sg291130 +S'etching on laid paper' +p353167 +sg291132 +S'1650s' +p353168 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c9/a000c9af.jpg' +p353169 +sg291136 +g27 +sa(dp353170 +g291134 +S"T\xc3\xaate de Putiphar (Potiphar's Wife)" +p353171 +sg291137 +S'Artist Information (' +p353172 +sg291130 +S'(artist after)' +p353173 +sg291132 +S'\n' +p353174 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00096/a00096a5.jpg' +p353175 +sg291136 +g27 +sa(dp353176 +g291134 +S'Saint Gregoire I Delivering Souls from Purgatory' +p353177 +sg291137 +S'Artist Information (' +p353178 +sg291130 +S'(artist after)' +p353179 +sg291132 +S'\n' +p353180 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cc/a000cc0a.jpg' +p353181 +sg291136 +g27 +sa(dp353182 +g291134 +S'Flora and Mercury' +p353183 +sg291137 +S'Giuseppe Diamantini' +p353184 +sg291130 +S'etching on laid paper' +p353185 +sg291132 +S'1690/1700' +p353186 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ca/a000ca0a.jpg' +p353187 +sg291136 +g27 +sa(dp353188 +g291134 +S'Self-Portrait' +p353189 +sg291137 +S'Thomas Frye' +p353190 +sg291130 +S'mezzotint on laid paper' +p353191 +sg291132 +S'1760' +p353192 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00078/a00078ab.jpg' +p353193 +sg291136 +g27 +sa(dp353194 +g291134 +S'The Visitation' +p353195 +sg291137 +S'Lucas van Leyden' +p353196 +sg291130 +S'engraving on laid paper' +p353197 +sg291132 +S'1520' +p353198 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ce5d.jpg' +p353199 +sg291136 +g27 +sa(dp353200 +g291134 +S'Hands Holding Empty Gloves' +p353201 +sg291137 +S'Bernardo Strozzi' +p353202 +sg291130 +S'red chalk on beige oatmeal paper' +p353203 +sg291132 +S'c. 1618' +p353204 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00059/a0005980.jpg' +p353205 +sg291136 +g27 +sa(dp353206 +g291134 +S'Two Peasants with a Glass of Wine' +p353207 +sg291137 +S'David Teniers the Younger' +p353208 +sg291130 +S'oil on panel' +p353209 +sg291132 +S'c. 1645' +p353210 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e40.jpg' +p353211 +sg291136 +g27 +sa(dp353212 +g291134 +S'Henry, Duke of Lorrain' +p353213 +sg291137 +S'European 17th Century' +p353214 +sg291130 +S'Overall: 7.4 x 5.9 cm (2 15/16 x 2 5/16 in.)\r\noverall: 24.3 x 19.5 cm (9 9/16 x 7 11/16 in.)' +p353215 +sg291132 +S'\ngouache on parchment, mounted to wood' +p353216 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c5a0.jpg' +p353217 +sg291136 +g27 +sa(dp353218 +g291130 +S'oil on hardboard' +p353219 +sg291132 +S'1950' +p353220 +sg291134 +S'Study for Homage to the Square: Light Rising' +p353221 +sg291136 +g27 +sg291137 +S'Josef Albers' +p353222 +sa(dp353223 +g291130 +S'oil on canvas' +p353224 +sg291132 +S'1950' +p353225 +sg291134 +S'Untitled (Yellow and White)' +p353226 +sg291136 +g27 +sg291137 +S'Ad Reinhardt' +p353227 +sa(dp353228 +g291130 +S'oil on canvas' +p353229 +sg291132 +S'1950' +p353230 +sg291134 +S'Untitled (Red and Gray)' +p353231 +sg291136 +g27 +sg291137 +S'Ad Reinhardt' +p353232 +sa(dp353233 +g291130 +S'mixed media collage' +p353234 +sg291132 +S'1970' +p353235 +sg291134 +S'Penny Arcade' +p353236 +sg291136 +g27 +sg291137 +S'Joseph Cornell' +p353237 +sa(dp353238 +g291130 +S'felt, paper and canvas collage on canvas' +p353239 +sg291132 +S'1971' +p353240 +sg291134 +S'Chodorow II' +p353241 +sg291136 +g27 +sg291137 +S'Frank Stella' +p353242 +sa(dp353243 +g291130 +S'acrylic and graphite on canvas' +p353244 +sg291132 +S'1981' +p353245 +sg291134 +S'Untitled #2' +p353246 +sg291136 +g27 +sg291137 +S'Agnes Martin' +p353247 +sa(dp353248 +g291130 +S'oil on canvas' +p353249 +sg291132 +S'1985' +p353250 +sg291134 +S'Saigon, Minnesota' +p353251 +sg291136 +g27 +sg291137 +S'Eric Fischl' +p353252 +sa(dp353253 +g291130 +S'watercolor over graphite on wove paper' +p353254 +sg291132 +S'1987' +p353255 +sg291134 +S'Untitled' +p353256 +sg291136 +g27 +sg291137 +S'David Salle' +p353257 +sa(dp353258 +g291130 +S'varnished steel' +p353259 +sg291132 +S'c. 1967/1968' +p353260 +sg291134 +S'Table Piece LXX' +p353261 +sg291136 +g27 +sg291137 +S'Anthony Caro' +p353262 +sa(dp353263 +g291134 +S'Three Oriental Heads' +p353264 +sg291137 +S'John Hamilton Mortimer' +p353265 +sg291130 +S'pen and black ink on laid paper; laid down' +p353266 +sg291132 +S'1770/1775' +p353267 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d45.jpg' +p353268 +sg291136 +g27 +sa(dp353269 +g291134 +S'Three Oriental Heads' +p353270 +sg291137 +S'John Hamilton Mortimer' +p353271 +sg291130 +S'pen and black ink on laid paper; laid down' +p353272 +sg291132 +S'1770/1775' +p353273 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d74.jpg' +p353274 +sg291136 +g27 +sa(dp353275 +g291134 +S'Three Oriental Heads' +p353276 +sg291137 +S'John Hamilton Mortimer' +p353277 +sg291130 +S'pen and black ink on laid paper; laid down' +p353278 +sg291132 +S'1770/1775' +p353279 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d19.jpg' +p353280 +sg291136 +g27 +sa(dp353281 +g291134 +S'Two Oriental Heads' +p353282 +sg291137 +S'John Hamilton Mortimer' +p353283 +sg291130 +S'pen and black ink on laid paper; laid down' +p353284 +sg291132 +S'1770/1775' +p353285 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ce6.jpg' +p353286 +sg291136 +g27 +sa(dp353287 +g291134 +S'Nude with Her Hands Raised' +p353288 +sg291137 +S'Gaston Lachaise' +p353289 +sg291130 +S'graphite on wove paper' +p353290 +sg291132 +S'c. 1928/1934' +p353291 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a000728d.jpg' +p353292 +sg291136 +g27 +sa(dp353293 +g291130 +S'graphite and black and red chalks on tracing paper; laid down' +p353294 +sg291132 +S'c. 1938' +p353295 +sg291134 +S'Two Girls Reading' +p353296 +sg291136 +g27 +sg291137 +S'Isabel Bishop' +p353297 +sa(dp353298 +g291130 +S'color screenprint on wove paper' +p353299 +sg291132 +S'1948' +p353300 +sg291134 +S'La L\xc3\xadnea en Funci\xc3\xb3n del Plano' +p353301 +sg291136 +g27 +sg291137 +S'Raul Lozza' +p353302 +sa(dp353303 +g291130 +S'gouache, graphite, and collage on wove paper' +p353304 +sg291132 +S'1947' +p353305 +sg291134 +S'La L\xc3\xadnea en Funci\xc3\xb3n del Plano' +p353306 +sg291136 +g27 +sg291137 +S'Raul Lozza' +p353307 +sa(dp353308 +g291130 +S'acrylic and pen and black ink over graphite on wove paper' +p353309 +sg291132 +S'1976' +p353310 +sg291134 +S'Charting the Future' +p353311 +sg291136 +g27 +sg291137 +S'Herbert Bayer' +p353312 +sa(dp353313 +g291130 +S'(artist after)' +p353314 +sg291132 +S'\n' +p353315 +sg291134 +S'The Heart of the Andes' +p353316 +sg291136 +g27 +sg291137 +S'Artist Information (' +p353317 +sa(dp353318 +g291130 +S'drypoint in brown-black on heavy wove paper' +p353319 +sg291132 +S'1911' +p353320 +sg291134 +S'Head of a Girl (M\xc3\xa4dchenkopf)' +p353321 +sg291136 +g27 +sg291137 +S'Joseph Uhl' +p353322 +sa(dp353323 +g291130 +S'drypoint on laid paper' +p353324 +sg291132 +S'1922' +p353325 +sg291134 +S'Pokrowa Street, Vitebsk' +p353326 +sg291136 +g27 +sg291137 +S'Marc Chagall' +p353327 +sa(dp353328 +g291130 +S'drypoint on laid paper' +p353329 +sg291132 +S'1922' +p353330 +sg291134 +S'Birth' +p353331 +sg291136 +g27 +sg291137 +S'Marc Chagall' +p353332 +sa(dp353333 +g291130 +S'crayon and felt-tip pen over graphite on wove paper' +p353334 +sg291132 +S'1969' +p353335 +sg291134 +S'Mud Flow (1000 Tons of Yellow Mud)' +p353336 +sg291136 +g27 +sg291137 +S'Robert Smithson' +p353337 +sa(dp353338 +g291130 +S'graphite and black pencil on wove paper' +p353339 +sg291132 +S'1972' +p353340 +sg291134 +S'Granite Crystal' +p353341 +sg291136 +g27 +sg291137 +S'Robert Smithson' +p353342 +sa(dp353343 +g291134 +S'Alexander VI (Rodrigo Borgia, c. 1431-1503), Pope 1492 [obverse]' +p353344 +sg291137 +S'Artist Information (' +p353345 +sg291130 +g27 +sg291132 +S'(artist)' +p353346 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dd3.jpg' +p353347 +sg291136 +g27 +sa(dp353348 +g291134 +S"Castel Sant' Angelo [reverse]" +p353349 +sg291137 +S'Artist Information (' +p353350 +sg291130 +g27 +sg291132 +S'(artist)' +p353351 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002dd4.jpg' +p353352 +sg291136 +g27 +sa(dp353353 +g291130 +S', c. 1550' +p353354 +sg291132 +S'\n' +p353355 +sg291134 +S'Gian Lodovico Battaglia [obverse]' +p353356 +sg291136 +g27 +sg291137 +S'Danese Cattaneo' +p353357 +sa(dp353358 +g291134 +S'Horse Pawing the Earth [reverse]' +p353359 +sg291137 +S'Danese Cattaneo' +p353360 +sg291130 +S', c. 1550' +p353361 +sg291132 +S'\n' +p353362 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00055/a0005563.jpg' +p353363 +sg291136 +g27 +sa(dp353364 +g291134 +S'Four Evangelists in a Scriptorium' +p353365 +sg291137 +S'Master I.K.' +p353366 +sg291130 +S'pen and brown ink with brown wash over red chalk on laid paper' +p353367 +sg291132 +S'1539' +p353368 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a00025fc.jpg' +p353369 +sg291136 +g27 +sa(dp353370 +g291134 +S'Christ on the Cross' +p353371 +sg291137 +S'Alessandro Algardi' +p353372 +sg291130 +S'pen and brown ink over red chalk on laid paper' +p353373 +sg291132 +S'1647' +p353374 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a0002225.jpg' +p353375 +sg291136 +g27 +sa(dp353376 +g291134 +S'Saint Jerome in a Cave' +p353377 +sg291137 +S'Albrecht D\xc3\xbcrer' +p353378 +sg291130 +S'woodcut on laid paper' +p353379 +sg291132 +S'1512' +p353380 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ac/a000ac47.jpg' +p353381 +sg291136 +g27 +sa(dp353382 +g291130 +S'acrylic on canvas' +p353383 +sg291132 +S'1960' +p353384 +sg291134 +S'Blue Broadjump' +p353385 +sg291136 +g27 +sg291137 +S'Gene Davis' +p353386 +sa(dp353387 +g291130 +S'gouache and ink over graphite on Arches paper' +p353388 +sg291132 +S'1972' +p353389 +sg291134 +S'Sabine DM Region of the Moon' +p353390 +sg291136 +g27 +sg291137 +S'Nancy Graves' +p353391 +sa(dp353392 +g291130 +S'gouache and ink with gold felt-tip marker over graphite on Arches paper' +p353393 +sg291132 +S'1972' +p353394 +sg291134 +S'Riphaeus Mountain Region of the Moon' +p353395 +sg291136 +g27 +sg291137 +S'Nancy Graves' +p353396 +sa(dp353397 +g291130 +S'gouache and ink over graphite on Arches paper' +p353398 +sg291132 +S'1972' +p353399 +sg291134 +S'Fra Mauro Region of the Moon' +p353400 +sg291136 +g27 +sg291137 +S'Nancy Graves' +p353401 +sa(dp353402 +g291130 +S'gouache and ink over graphite on Arches paper' +p353403 +sg291132 +S'1972' +p353404 +sg291134 +S'Part of Sabine D Region of the Moon, Southwest Mare Tranquilitatis' +p353405 +sg291136 +g27 +sg291137 +S'Nancy Graves' +p353406 +sa(dp353407 +g291130 +S'gouache and ink over graphite on Arches paper' +p353408 +sg291132 +S'1972' +p353409 +sg291134 +S'Julius Caesar Quadrangle of the Moon' +p353410 +sg291136 +g27 +sg291137 +S'Nancy Graves' +p353411 +sa(dp353412 +g291130 +S'gouache and ink over graphite on Arches paper' +p353413 +sg291132 +S'1972' +p353414 +sg291134 +S'Maestlin G Region of the Moon' +p353415 +sg291136 +g27 +sg291137 +S'Nancy Graves' +p353416 +sa(dp353417 +g291130 +S'gouache and ink over graphite on Arches paper' +p353418 +sg291132 +S'1972' +p353419 +sg291134 +S'Maskelyne DA Region of the Moon' +p353420 +sg291136 +g27 +sg291137 +S'Nancy Graves' +p353421 +sa(dp353422 +g291130 +S'gouache and ink over graphite on Arches paper' +p353423 +sg291132 +S'1972' +p353424 +sg291134 +S'Sabine D Region of the Moon, Lunar Orbiter Site II P-6 Southwest Mare Tranquilitatis' +p353425 +sg291136 +g27 +sg291137 +S'Nancy Graves' +p353426 +sa(dp353427 +g291130 +S'gouache and ink over graphite on Arches paper' +p353428 +sg291132 +S'1972' +p353429 +sg291134 +S'Geological Map of the Sinus Iridum Quadrangle of the Moon' +p353430 +sg291136 +g27 +sg291137 +S'Nancy Graves' +p353431 +sa(dp353432 +g291130 +S'gouache and ink over graphite on Arches paper' +p353433 +sg291132 +S'1972' +p353434 +sg291134 +S'Montes Apenninus Region of the Moon' +p353435 +sg291136 +g27 +sg291137 +S'Nancy Graves' +p353436 +sa(dp353437 +g291136 +g27 +sg291134 +S'Pitcher' +p353438 +sg291137 +S'Manuel G. Runyan' +p353439 +sa(dp353440 +g291136 +g27 +sg291134 +S'"Westward Ho" Compote' +p353441 +sg291137 +S'Paul Kelly' +p353442 +sa(dp353443 +g291136 +g27 +sg291134 +S'Coffee Pot' +p353444 +sg291137 +S'Roberta Elvis' +p353445 +sa(dp353446 +g291136 +g27 +sg291134 +S'Wallpaper' +p353447 +sg291137 +S'American 20th Century' +p353448 +sa(dp353449 +g291136 +g27 +sg291134 +S'Flask' +p353450 +sg291137 +S'William Kieckhofel' +p353451 +sa(dp353452 +g291136 +g27 +sg291134 +S'Circus Wagon Figure: "Dancing Girl"' +p353453 +sg291137 +S'John Matulis' +p353454 +sa(dp353455 +g291130 +S'watercolor, gouache, and graphite on gray wove paper' +p353456 +sg291132 +S'c. 1914/1918' +p353457 +sg291134 +S'Railway Station [recto]' +p353458 +sg291136 +g27 +sg291137 +S'Charles Hoffbauer' +p353459 +sa(dp353460 +g291130 +S'graphite on gray wove paper' +p353461 +sg291132 +S'c. 1914/1918' +p353462 +sg291134 +S'Battlefield Scenes [verso]' +p353463 +sg291136 +g27 +sg291137 +S'Charles Hoffbauer' +p353464 +sa(dp353465 +g291134 +S'A Boy Wearing a Military Cap' +p353466 +sg291137 +S'French 18th Century' +p353467 +sg291130 +S'overall: 24.3 x 20.3 cm (9 9/16 x 8 in.)' +p353468 +sg291132 +S'\nblack chalk heightened with white on blue laid paper' +p353469 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a00070a8.jpg' +p353470 +sg291136 +g27 +sa(dp353471 +g291134 +S'A Young Man Embracing a Girl' +p353472 +sg291137 +S'Giovanni Battista Piazzetta' +p353473 +sg291130 +S'black chalk, heightened with white on blue paper faded to gray' +p353474 +sg291132 +S'c. 1743' +p353475 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b56f.jpg' +p353476 +sg291136 +S'During the brilliant artistic flowering\r\nin 18th-century Venice, the two\r\nmost important figure painters were\r\nGiovanni Battista Tiepolo (1696–1770)\r\nand Giovanni Battista Piazzetta. In his early years, Tiepolo\r\nwas strongly influenced by Piazzetta,\r\nthough his fiery and luminous fantasy later diverged from Piazzetta\xe2\x80\x99s contemplative\r\nand elegant naturalism.\n Piazzetta\xe2\x80\x99s art was wide-ranging, and included\r\nintensely felt religious works, images\r\nfrom ancient history, illustrations\r\nfor books of all types, and idyllic\r\ngenre scenes. The latter were characterized\r\nby sensitive portrayals of\r\nyoung men and women, usually in\r\npastoral or other ordinary costumes and\r\nfrequently with tender romantic overtones.\r\nLike John Donne and other\r\nBritish 17th-century poets,\r\nPiazzetta created works of profound\r\nand deeply moving spirituality but\r\nalso of light-hearted dalliance.\n Piazzetta first became famous for his\r\ndrawings, and among his many works on paper,\r\nhe was well-known for his nearly\r\nlife-sized heads and busts rendered in black\r\nand white chalk on Venetian blue\r\npaper. We know from inventories\r\nand other records that these character\r\nheads were immediately prized\r\nby his contemporaries and were\r\nframed and glazed to hang in rooms\r\nlike finished paintings. In fact, these\r\nworks were perhaps the earliest\r\ntype of drawings to be so consistently\r\ncollected and displayed, which also\r\nexplains why their paper has changed\r\ncolor from extended exposure to light, softening from blue to gray-green or tan.\n A Young Man Embracing a Girl\n At the time, this drawing was recognized as a masterpiece. It was immediately made into a full-sized engraving by \r\n\r\nGiovanni Cattini, a prominent Venetian printmaker, which was then copied by an Augsburg artist in mezzotint, later \r\n\r\nrecreated as an engraving by an artist in Munich, and finally rendered as a color woodcut by an English artist living in \r\n\r\nVenice. The renown of this drawing today is enhanced by its superb condition, with the whites brilliant and the blacks \r\n\r\npreserved with a thick, velvety richness.\n ' +p353477 +sa(dp353478 +g291130 +g27 +sg291132 +S'(medalist)' +p353479 +sg291134 +S'Achilles Seizing Troilus' +p353480 +sg291136 +g27 +sg291137 +S'Artist Information (' +p353481 +sa(dp353482 +g291130 +S'active 1980' +p353483 +sg291132 +S'(printer)' +p353484 +sg291134 +S'13 Etchings' +p353485 +sg291136 +g27 +sg291137 +S'Artist Information (' +p353486 +sa(dp353487 +g291134 +S'Norwegian Coast During a Storm' +p353488 +sg291137 +S'Johan Christian Dahl' +p353489 +sg291130 +S'etching with bitten tone on wove paper' +p353490 +sg291132 +S'1819' +p353491 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000de/a000de56.jpg' +p353492 +sg291136 +g27 +sa(dp353493 +g291134 +S'Plan and Three Views of a Circular Church' +p353494 +sg291137 +S'Pierre Varin' +p353495 +sg291130 +S'pen and black and gray ink with gray, pink, and blue washes on laid paper' +p353496 +sg291132 +S'c. 1750' +p353497 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f58.jpg' +p353498 +sg291136 +g27 +sa(dp353499 +g291134 +S'Three Views and a Plan of a Triangular Parish Church' +p353500 +sg291137 +S'Pierre Varin' +p353501 +sg291130 +S'pen and black and gray ink with gray, pink, and blue washes on laid paper' +p353502 +sg291132 +S'c. 1750' +p353503 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fe1.jpg' +p353504 +sg291136 +g27 +sa(dp353505 +g291134 +S'Interior of a Temple' +p353506 +sg291137 +S'Pierre Varin' +p353507 +sg291130 +S'pen and black and gray ink with gray wash on laid paper' +p353508 +sg291132 +S'c. 1750' +p353509 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fb3.jpg' +p353510 +sg291136 +g27 +sa(dp353511 +g291134 +S'Plan for a Decorated Ceiling' +p353512 +sg291137 +S'Pierre Varin' +p353513 +sg291130 +S'pen and black and gray ink with gray and black wash on laid paper' +p353514 +sg291132 +S'c. 1750' +p353515 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f87.jpg' +p353516 +sg291136 +g27 +sa(dp353517 +g291130 +g27 +sg291132 +S'(publisher)' +p353518 +sg291134 +S'City Edge' +p353519 +sg291136 +g27 +sg291137 +S'Artist Information (' +p353520 +sa(dp353521 +g291130 +S'painted wood and bronze' +p353522 +sg291132 +S'drawn 1960, executed 1964' +p353523 +sg291134 +S'Racconto alla strega no. 1' +p353524 +sg291136 +g27 +sg291137 +S'Pietro Consagra' +p353525 +sa(dp353526 +g291134 +S'Untitled (from Club/Spade Group 1981-82)' +p353527 +sg291137 +S'Richard Diebenkorn' +p353528 +sg291130 +S'gouache, crayon, and graphite on calendered paper' +p353529 +sg291132 +S'1982' +p353530 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00054/a000548c.jpg' +p353531 +sg291136 +g27 +sa(dp353532 +g291130 +S'color screenprint on wove paper' +p353533 +sg291132 +S'1970' +p353534 +sg291134 +S'Horizontal Composite' +p353535 +sg291136 +g27 +sg291137 +S'Sol LeWitt' +p353536 +sa(dp353537 +g291130 +S'etching' +p353538 +sg291132 +S'1881' +p353539 +sg291134 +S'Highway (Chaussee): pl. 4' +p353540 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353541 +sa(dp353542 +g291130 +S'etching' +p353543 +sg291132 +S'1889' +p353544 +sg291134 +S'Night (Nacht): pl.1' +p353545 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353546 +sa(dp353547 +g291130 +S'etching and aquatint' +p353548 +sg291132 +S'1915' +p353549 +sg291134 +S'The Swan Prince (Der Schwanenprinz): pl. 7' +p353550 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353551 +sa(dp353552 +g291130 +S'etching' +p353553 +sg291132 +S'published 1881' +p353554 +sg291134 +S'Simplicius in the Solitude of the Forest (Simplicius in der Waldein\xc3\xb6de): pl. 10' +p353555 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353556 +sa(dp353557 +g291130 +S'print' +p353558 +sg291132 +S'1881' +p353559 +sg291134 +S'Love, Death, and the Hereafter (Amor Tod und Jenseits): pl.12' +p353560 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353561 +sa(dp353562 +g291130 +S'etching' +p353563 +sg291132 +S'1889' +p353564 +sg291134 +S'Child (Kind): pl. 5' +p353565 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353566 +sa(dp353567 +g291130 +S'etching and aquatint' +p353568 +sg291132 +S'1915' +p353569 +sg291134 +S'By the Sea (Am Zee): pl. 3' +p353570 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353571 +sa(dp353572 +g291130 +S'etching and aquatint' +p353573 +sg291132 +S'1915' +p353574 +sg291134 +S'The Swans (Die Schw\xc3\xa4ne): pl. 4' +p353575 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353576 +sa(dp353577 +g291130 +S'etching and aquatint' +p353578 +sg291132 +S'1915' +p353579 +sg291134 +S'The Bull (Der Stier): pl. 6' +p353580 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353581 +sa(dp353582 +g291130 +S'etching and aquatint' +p353583 +sg291132 +S'1915' +p353584 +sg291134 +S'The Camp (Das Lager): pl. 5' +p353585 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353586 +sa(dp353587 +g291130 +S'etching' +p353588 +sg291132 +S'published 1881' +p353589 +sg291134 +S'Simplicius among the Soldiers (Simplicius unter den Soldaten): pl. 9' +p353590 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353591 +sa(dp353592 +g291130 +S'etching' +p353593 +sg291132 +S'1889' +p353594 +sg291134 +S'Sea (Meer): pl.3' +p353595 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353596 +sa(dp353597 +g291130 +S'etching and aquatint' +p353598 +sg291132 +S'1915' +p353599 +sg291134 +S'Girl and Archer (M\xc3\xa4dchen und Sch\xc3\xbctze): pl. 9' +p353600 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353601 +sa(dp353602 +g291130 +S'etching and aquatint' +p353603 +sg291132 +S'1915' +p353604 +sg291134 +S'The Shot (Der Schuss): pl. 10' +p353605 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353606 +sa(dp353607 +g291130 +S'etching' +p353608 +sg291132 +S'1889' +p353609 +sg291134 +S'Seafarers (Seeleute): pl.2' +p353610 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353611 +sa(dp353612 +g291134 +S'Moonlit Night (Mondnacht): pl. 4' +p353613 +sg291137 +S'Max Klinger' +p353614 +sg291130 +S'etching and aquatint' +p353615 +sg291132 +S'published 1881' +p353616 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d9f.jpg' +p353617 +sg291136 +g27 +sa(dp353618 +g291130 +S'etching' +p353619 +sg291132 +S'1889' +p353620 +sg291134 +S'On the Rails (Auf den Schienen): pl. 8' +p353621 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353622 +sa(dp353623 +g291130 +S'etching and aquatint' +p353624 +sg291132 +S'published 1881' +p353625 +sg291134 +S'By the Sea (Am Meer): pl. 2' +p353626 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353627 +sa(dp353628 +g291134 +S'Bear and Elf (B\xc3\xa4r und Elfe): pl.1' +p353629 +sg291137 +S'Max Klinger' +p353630 +sg291130 +S'etching and aquatint' +p353631 +sg291132 +S'published 1881' +p353632 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005dd1.jpg' +p353633 +sg291136 +g27 +sa(dp353634 +g291130 +S'etching and aquatint' +p353635 +sg291132 +S'1915' +p353636 +sg291134 +S'Rape (Vergewaltigung): pl. 8' +p353637 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353638 +sa(dp353639 +g291130 +S'etching' +p353640 +sg291132 +S'published 1881' +p353641 +sg291134 +S'Fallen Rider (Gefallener Reiter): pl. 11' +p353642 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353643 +sa(dp353644 +g291130 +S'etching' +p353645 +sg291132 +S'1889' +p353646 +sg291134 +S'Death as Saviour (Der Tod als Heiland):pl. 10' +p353647 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353648 +sa(dp353649 +g291130 +S'etching' +p353650 +sg291132 +S'1889' +p353651 +sg291134 +S'Countryman (Landmann): pl. 7' +p353652 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353653 +sa(dp353654 +g291130 +S'etching and aquatint' +p353655 +sg291132 +S'published 1881' +p353656 +sg291134 +S'Hunted Centaur (Verfolgter Centaur): pl. 3' +p353657 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353658 +sa(dp353659 +g291130 +S'etching' +p353660 +sg291132 +S'published 1881' +p353661 +sg291134 +S"Simplicius at the Hermit's Grave (Simplicius am Grabe des Einsiedlers); pl. 8" +p353662 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353663 +sa(dp353664 +g291130 +S'etching and aquatint' +p353665 +sg291132 +S'published 1881' +p353666 +sg291134 +S'Fighting Centaurs (K\xc3\xa4mpfende Centauren): pl. 5' +p353667 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353668 +sa(dp353669 +g291130 +S'etching' +p353670 +sg291132 +S'1889' +p353671 +sg291134 +S'Poor Family (Arme Familie): pl.9' +p353672 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353673 +sa(dp353674 +g291130 +S'etching and aquatint' +p353675 +sg291132 +S'1915' +p353676 +sg291134 +S'Introduction (Vorspiel): pl. 1' +p353677 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353678 +sa(dp353679 +g291130 +S'etching and aquatint' +p353680 +sg291132 +S'published 1881' +p353681 +sg291134 +S'Avalanche (Bergsturz):p l. 6' +p353682 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353683 +sa(dp353684 +g291130 +S'etching and aquatint' +p353685 +sg291132 +S'published 1881' +p353686 +sg291134 +S"Simplicius's Writing Lesson (Simplici Schreibstunde): pl. 7" +p353687 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353688 +sa(dp353689 +g291130 +S'etching' +p353690 +sg291132 +S'1889' +p353691 +sg291134 +S'Herod (Herodes): pl. 6' +p353692 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353693 +sa(dp353694 +g291130 +S'etching and aquatint' +p353695 +sg291132 +S'1915' +p353696 +sg291134 +S'Before the Queen (Vor der K\xc3\xb6nigin): pl. 24' +p353697 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353698 +sa(dp353699 +g291130 +S'etching and aquatint' +p353700 +sg291132 +S'1915' +p353701 +sg291134 +S'Preparation for the Dance (Bereitung zum Tanz): pl. 25' +p353702 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353703 +sa(dp353704 +g291130 +S'etching and aquatint' +p353705 +sg291132 +S'1915' +p353706 +sg291134 +S'Gratitude (Dank): pl. 11' +p353707 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353708 +sa(dp353709 +g291130 +S'etching and aquatint' +p353710 +sg291132 +S'1915' +p353711 +sg291134 +S'Found (Gefunden): pl. 41' +p353712 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353713 +sa(dp353714 +g291130 +S'etching and aquatint' +p353715 +sg291132 +S'1915' +p353716 +sg291134 +S'Through the Mountains (Durchs Gebirge): pl. 19' +p353717 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353718 +sa(dp353719 +g291130 +S'etching and aquatint' +p353720 +sg291132 +S'1915' +p353721 +sg291134 +S'Condition (Bedingung): pl. 38' +p353722 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353723 +sa(dp353724 +g291130 +S'etching and aquatint' +p353725 +sg291132 +S'1915' +p353726 +sg291134 +S'The Foot (Der Fuss): pl. 16' +p353727 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353728 +sa(dp353729 +g291130 +S'etching and aquatint' +p353730 +sg291132 +S'1915' +p353731 +sg291134 +S'Dance (Tanz): pl. 27' +p353732 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353733 +sa(dp353734 +g291130 +S'etching and aquatint' +p353735 +sg291132 +S'1915' +p353736 +sg291134 +S'The Expedition (Der Zug): pl. 13' +p353737 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353738 +sa(dp353739 +g291130 +S'etching and aquatint' +p353740 +sg291132 +S'1915' +p353741 +sg291134 +S'Flight (Flucht): pl. 21' +p353742 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353743 +sa(dp353744 +g291130 +S'etching and aquatint' +p353745 +sg291132 +S'1915' +p353746 +sg291134 +S'Queen and Goddess (K\xc3\xb6ningin und G\xc3\xb6ttin): pl. 32' +p353747 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353748 +sa(dp353749 +g291130 +S'etching and aquatint' +p353750 +sg291132 +S'1915' +p353751 +sg291134 +S'Assault (Best\xc3\xbcrmung): pl. 28' +p353752 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353753 +sa(dp353754 +g291130 +S'etching and aquatint' +p353755 +sg291132 +S'1915' +p353756 +sg291134 +S'Horror (Entsetzen): pl. 44' +p353757 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353758 +sa(dp353759 +g291130 +S'etching and aquatint' +p353760 +sg291132 +S'1915' +p353761 +sg291134 +S'Murder (Mord): pl. 39' +p353762 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353763 +sa(dp353764 +g291130 +S'etching and aquatint' +p353765 +sg291132 +S'1915' +p353766 +sg291134 +S'Night in the Forest (Waldnacht): pl. 42' +p353767 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353768 +sa(dp353769 +g291130 +S'etching and aquatint' +p353770 +sg291132 +S'1915' +p353771 +sg291134 +S'Avalanche (Bergsturz): pl. 20' +p353772 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353773 +sa(dp353774 +g291130 +S'etching and aquatint' +p353775 +sg291132 +S'1915' +p353776 +sg291134 +S'The Bowl (Die Schale): pl. 15' +p353777 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353778 +sa(dp353779 +g291130 +S'etching and aquatint' +p353780 +sg291132 +S'1915' +p353781 +sg291134 +S"Before the Tower (Vor'm Turm): pl. 36" +p353782 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353783 +sa(dp353784 +g291130 +S'etching and aquatint' +p353785 +sg291132 +S'1915' +p353786 +sg291134 +S'Magician and Knight (Zauberer und Ritter): pl. 34' +p353787 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353788 +sa(dp353789 +g291130 +S'etching and aquatint' +p353790 +sg291132 +S'1915' +p353791 +sg291134 +S'The Great Goddess (Die Grosse G\xc3\xb6ttin): pl. 26' +p353792 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353793 +sa(dp353794 +g291130 +S'etching and aquatint' +p353795 +sg291132 +S'1915' +p353796 +sg291134 +S"In One's Own Country (Im eigenem Land): pl. 43" +p353797 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353798 +sa(dp353799 +g291130 +S'etching and aquatint' +p353800 +sg291132 +S'1915' +p353801 +sg291134 +S'On the Tower (Auf dem Turm): pl. 30' +p353802 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353803 +sa(dp353804 +g291130 +S'etching and aquatint' +p353805 +sg291132 +S'1915' +p353806 +sg291134 +S'At the Gate (Am Tor): pl. 23' +p353807 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353808 +sa(dp353809 +g291130 +S'etching and aquatint' +p353810 +sg291132 +S'1915' +p353811 +sg291134 +S'Voyage in Space (Luftfahrt): pl. 40' +p353812 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353813 +sa(dp353814 +g291130 +S'etching and aquatint' +p353815 +sg291132 +S'1915' +p353816 +sg291134 +S'Captured (Gefangen): pl. 22' +p353817 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353818 +sa(dp353819 +g291130 +S'etching and aquatint' +p353820 +sg291132 +S'1915' +p353821 +sg291134 +S'The Tent (Zelt): pl. 2' +p353822 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353823 +sa(dp353824 +g291130 +S'etching and aquatint' +p353825 +sg291132 +S'1915' +p353826 +sg291134 +S'The Cave (Die H\xc3\xb6hle): pl. 37' +p353827 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353828 +sa(dp353829 +g291130 +S'etching and aquatint' +p353830 +sg291132 +S'1889' +p353831 +sg291134 +S'Dream Path (Traumweg): pl. 35' +p353832 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353833 +sa(dp353834 +g291130 +S'etching and aquatint' +p353835 +sg291132 +S'1915' +p353836 +sg291134 +S'Murder and Abduction (Mord und Entf\xc3\xbchrung): pl. 17' +p353837 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353838 +sa(dp353839 +g291130 +S'etching and aquatint' +p353840 +sg291132 +S'1915' +p353841 +sg291134 +S'Threat (Drohung): pl. 31' +p353842 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353843 +sa(dp353844 +g291130 +S'etching and aquatint' +p353845 +sg291132 +S'1915' +p353846 +sg291134 +S'Gifts (Geschenke): pl. 29' +p353847 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353848 +sa(dp353849 +g291130 +S'etching and aquatint' +p353850 +sg291132 +S'1915' +p353851 +sg291134 +S'Goddess and Magician (G\xc3\xb6ttin und Zauberer): pl. 33' +p353852 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353853 +sa(dp353854 +g291130 +S'etching and aquatint' +p353855 +sg291132 +S'1915' +p353856 +sg291134 +S'Invasion (Einbruch): pl. 14' +p353857 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353858 +sa(dp353859 +g291130 +S'etching and aquatint' +p353860 +sg291132 +S'1915' +p353861 +sg291134 +S'Night (Nacht): pl. 12' +p353862 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353863 +sa(dp353864 +g291130 +S'etching and aquatint' +p353865 +sg291132 +S'1915' +p353866 +sg291134 +S'Through the Swamps (Durch S\xc3\xbcmpfe): pl. 18' +p353867 +sg291136 +g27 +sg291137 +S'Max Klinger' +p353868 +sa(dp353869 +g291134 +S'Page from "Libro de\' Disegni"' +p353870 +sg291137 +S'Artist Information (' +p353871 +sg291130 +S'(artist)' +p353872 +sg291132 +S'\n' +p353873 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e17.jpg' +p353874 +sg291136 +g27 +sa(dp353875 +g291134 +S'Head of a Youth Wearing a Cap; a Right Forearm with the Hand Clutching a Stone; and a Left Hand Holding a Drapery' +p353876 +sg291137 +S'Sandro Botticelli' +p353877 +sg291130 +S'metalpoint heightened with white gouache on mauve-prepared paper' +p353878 +sg291132 +S'1480/1485' +p353879 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002a/a0002af9.jpg' +p353880 +sg291136 +g27 +sa(dp353881 +g291134 +S'Standing Nude Youth' +p353882 +sg291137 +S'Filippino Lippi' +p353883 +sg291130 +S'metalpoint heightened with white on gray-prepared paper' +p353884 +sg291132 +S'c. 1496' +p353885 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a00025ed.jpg' +p353886 +sg291136 +g27 +sa(dp353887 +g291134 +S'Man with a Stick' +p353888 +sg291137 +S'Filippino Lippi' +p353889 +sg291130 +S'metalpoint heightened with white on gray-prepared paper' +p353890 +sg291132 +S'c. 1500' +p353891 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a00025f2.jpg' +p353892 +sg291136 +g27 +sa(dp353893 +g291134 +S'Various Figure Studies' +p353894 +sg291137 +S'Filippino Lippi' +p353895 +sg291130 +S'metalpoint heightened with white on ochre-prepared paper with borders by Vasari in brown ink' +p353896 +sg291132 +S'c. 1493/1495' +p353897 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a000260d.jpg' +p353898 +sg291136 +g27 +sa(dp353899 +g291134 +S'Dancing Putto Holding a Drapery' +p353900 +sg291137 +S'Filippino Lippi' +p353901 +sg291130 +S'pen and brown ink on laid paper' +p353902 +sg291132 +S'c. 1493/1497' +p353903 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a00025f3.jpg' +p353904 +sg291136 +g27 +sa(dp353905 +g291134 +S'An Angel Carrying a Torch' +p353906 +sg291137 +S'Filippino Lippi' +p353907 +sg291130 +S'pen and brown ink and gray wash on laid paper' +p353908 +sg291132 +S'c. 1500/1504' +p353909 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000be/a000be78.jpg' +p353910 +sg291136 +g27 +sa(dp353911 +g291134 +S'Two Angels Carrying Torches' +p353912 +sg291137 +S'Filippino Lippi' +p353913 +sg291130 +S'pen and brown ink and brown wash on laid paper, pricked for transfer' +p353914 +sg291132 +S'c. 1501' +p353915 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000be/a000be79.jpg' +p353916 +sg291136 +g27 +sa(dp353917 +g291134 +S'Saint Roch between Saints Anthony Abbot and Catherine of Alexandria' +p353918 +sg291137 +S'Raffaellino del Garbo' +p353919 +sg291130 +S'gouache and brown wash heightened with white on laid paper' +p353920 +sg291132 +S'c. 1485/1495' +p353921 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022b9.jpg' +p353922 +sg291136 +g27 +sa(dp353923 +g291134 +S'Standing Woman with Her Hands Clasped in Prayer' +p353924 +sg291137 +S'Filippino Lippi' +p353925 +sg291130 +S'metalpoint heightened with white on gray-prepared paper' +p353926 +sg291132 +S'c. 1488' +p353927 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a00025f5.jpg' +p353928 +sg291136 +g27 +sa(dp353929 +g291134 +S'Two Draped Women Standing on Either Side of a Herm' +p353930 +sg291137 +S'Filippino Lippi' +p353931 +sg291130 +S'metalpoint heightened with white on light green-prepared paper' +p353932 +sg291132 +S'1488/1493' +p353933 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a00025ee.jpg' +p353934 +sg291136 +g27 +sa(dp353935 +g291130 +S'album with title page, introductory page, illustrated preface, 39 hand-colored woodcuts, and 2 drawings' +p353936 +sg291132 +S'c. 1970' +p353937 +sg291134 +S'The Dream of Abu-Said' +p353938 +sg291136 +g27 +sg291137 +S'Ilya Kabakov' +p353939 +sa(dp353940 +g291134 +S'View of Bozen with a Painter' +p353941 +sg291137 +S'Jules Coignet' +p353942 +sg291130 +S'oil on paper on canvas' +p353943 +sg291132 +S'1837' +p353944 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002b/a0002b19.jpg' +p353945 +sg291136 +g27 +sa(dp353946 +g291134 +S'View of Lake Nemi' +p353947 +sg291137 +S'Jules Coignet' +p353948 +sg291130 +S'oil on paper on canvas' +p353949 +sg291132 +S'1843' +p353950 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000dad.jpg' +p353951 +sg291136 +g27 +sa(dp353952 +g291134 +S'Forest Interior with a Painter, Civita Castellana' +p353953 +sg291137 +S'Andr\xc3\xa9 Giroux' +p353954 +sg291130 +S'oil on paper' +p353955 +sg291132 +S'1825/1830' +p353956 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f30.jpg' +p353957 +sg291136 +g27 +sa(dp353958 +g291134 +S'Forest Interior with a Waterfall, Papigno' +p353959 +sg291137 +S'Andr\xc3\xa9 Giroux' +p353960 +sg291130 +S'oil on paper' +p353961 +sg291132 +S'1825/1830' +p353962 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e9c.jpg' +p353963 +sg291136 +g27 +sa(dp353964 +g291134 +S'Kellergarten im Rosenheim' +p353965 +sg291137 +S'Max Liebermann' +p353966 +sg291130 +S'etching on wove paper' +p353967 +sg291132 +S'1895' +p353968 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00059/a0005921.jpg' +p353969 +sg291136 +g27 +sa(dp353970 +g291134 +S'Self-Portrait' +p353971 +sg291137 +S'Max Liebermann' +p353972 +sg291130 +S'etching on laid paper' +p353973 +sg291132 +S'1906' +p353974 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00059/a0005920.jpg' +p353975 +sg291136 +g27 +sa(dp353976 +g291134 +S'Margaret ("Gretchen") Strong' +p353977 +sg291137 +S'Frank Weston Benson' +p353978 +sg291130 +S'oil on canvas' +p353979 +sg291132 +S'c. 1909' +p353980 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004d/a0004d31.jpg' +p353981 +sg291136 +S'An instructor at the Boston Museum school, Frank Benson created lovely\r\n daydreams of women and children frolicking outdoors. One of his daughters\r\n recalled their family vacations in North Haven, Maine: "Papa would often\r\n have us put on our best white dresses and then ask us to sit in the grass\r\n or play in the woods. We thought it was so silly and the maids made such a\r\n fuss when they saw the clothes afterwards."\n These modeling sessions resulted in such idyllic works as \n In a very daring maneuver for a commissioned portrait, Benson left\r\n Margaret\'s face still turned away from the sun. He did modify the design by\r\n raising the beach line of the distant cape so that, here, it would not cut\r\n across her profile. Her striking, coppery red hair frames her head, keys\r\n into the warm tan grass, and complements the blue Atlantic and the cool,\r\n iridescent shadows. Above all, the dazzling virtuosity of Benson\'s rapid\r\n brushwork captures attention.\n ' +p353982 +sa(dp353983 +g291130 +S'cast bronze' +p353984 +sg291132 +S'model 1889, cast 1983' +p353985 +sg291134 +S'La Douleur (de la Porte)' +p353986 +sg291136 +g27 +sg291137 +S'Auguste Rodin' +p353987 +sa(dp353988 +g291130 +S'French, 1840 - 1917' +p353989 +sg291132 +S'(artist after)' +p353990 +sg291134 +S'Lost-Wax Casting Display: plaster model [first of ten steps]' +p353991 +sg291136 +g27 +sg291137 +S'Artist Information (' +p353992 +sa(dp353993 +g291130 +S'offset lithograph on calendered paper' +p353994 +sg291132 +S'1969' +p353995 +sg291134 +S'Autobiography [top or left panel]' +p353996 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p353997 +sa(dp353998 +g291130 +S'offset lithograph on calendered paper' +p353999 +sg291132 +S'1969' +p354000 +sg291134 +S'Autobiography [top or left panel]' +p354001 +sg291136 +g27 +sg291137 +S'Robert Rauschenberg' +p354002 +sa(dp354003 +g291130 +S'oil on canvas' +p354004 +sg291132 +S'1794' +p354005 +sg291134 +S'John Jay' +p354006 +sg291136 +S'The classical column, crimson drapery, legal tome, and robes of state in this impressive portrait recall the "Grand Manner" tradition Stuart had used to emphasize the social status of British aristocrats.\n As a framer of the Constitution and the first Chief Justice of the \n United States from 1789 to 1795, John Jay was the first American statesman \n of international reputation whom Stuart ever painted. The success of this \n likeness of the chief justice, painted in New York in 1794, introduced \n Stuart to an appreciative clientele in America.\n The forty-nine-year-old Jay could spare time to pose only for the head. \n His nephew modeled the judicial robe so that Stuart could complete the \n body. Broadly painted strokes suggest the robe\'s gleaming scarlet, black, \n and white satin, setting off by contrast the careful execution of Jay\'s \n handsome features.\n Stuart rendered Jay\'s complexion with deftly executed highlights in opaque \n paint on top of translucent glazes of thinned oils. Later the artist \n explained his methods for painting such lively skin tones: "Good flesh \n color partook of all colors, not mixed so as to combine in one tint, but \n shining through each other, like blood through natural skin."\n ' +p354007 +sg291137 +S'Gilbert Stuart' +p354008 +sa(dp354009 +g291134 +S'Mound of Butter' +p354010 +sg291137 +S'Antoine Vollon' +p354011 +sg291130 +S'oil on canvas' +p354012 +sg291132 +S'1875/1885' +p354013 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00007/a0000750.jpg' +p354014 +sg291136 +g27 +sa(dp354015 +g291134 +S'Bottles' +p354016 +sg291137 +S'Stanley William Hayter' +p354017 +sg291130 +S'softground etching and aquatint in black on wove paper' +p354018 +sg291132 +S'1926' +p354019 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00080/a00080a7.jpg' +p354020 +sg291136 +g27 +sa(dp354021 +g291134 +S'Combat' +p354022 +sg291137 +S'Stanley William Hayter' +p354023 +sg291130 +S'color engraving and softground etching on wove paper' +p354024 +sg291132 +S'1953' +p354025 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e22.jpg' +p354026 +sg291136 +g27 +sa(dp354027 +g291134 +S'Unstable Woman' +p354028 +sg291137 +S'Stanley William Hayter' +p354029 +sg291130 +S'color engraving and softground etching with embossed open bite areas on laid paper' +p354030 +sg291132 +S'1946-1947' +p354031 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00082/a0008270.jpg' +p354032 +sg291136 +g27 +sa(dp354033 +g291134 +S'Cronos' +p354034 +sg291137 +S'Stanley William Hayter' +p354035 +sg291130 +S'engraving and softground etching in black with embossed open bite areas on wove paper' +p354036 +sg291132 +S'1944' +p354037 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00060/a00060fb.jpg' +p354038 +sg291136 +g27 +sa(dp354039 +g291134 +S'Onde Verte' +p354040 +sg291137 +S'Stanley William Hayter' +p354041 +sg291130 +S'color softground etching, etching, and scorper on wove paper' +p354042 +sg291132 +S'1965' +p354043 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0001e/a0001e23.jpg' +p354044 +sg291136 +g27 +sa(dp354045 +g291130 +S'hand-made folding book with 12 double-page acrylics on board' +p354046 +sg291132 +S'1977' +p354047 +sg291134 +S'Opposite without Opposition' +p354048 +sg291136 +g27 +sg291137 +S'Ming Wang' +p354049 +sa(dp354050 +g291134 +S'Tiger' +p354051 +sg291137 +S'Ellsworth Kelly' +p354052 +sg291130 +S'oil on canvas (five joined panels)' +p354053 +sg291132 +S'1953' +p354054 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00053/a0005332.jpg' +p354055 +sg291136 +S'Ellsworth Kelly realized his first abstractions during his stay in France from 1948 to 1954. In these extremely productive years, he created a body of work whose refinement of line, form, and color remains the fundamental language of his art. \n In November 1951, Kelly left Paris for the Mediterranean fishing village of Sanary, where he remained until May of the following year. There Kelly produced his first monochrome polyptychs and studies for related works that he executed later. \n The colors for \n During this period, Kelly spent a lot of time looking at art and architecture in Europe. The geometric structures he saw probably provided source material for \n Kelly\'s works from his years in France are characterized chiefly by his use of multiple rectangular planes, most of which are uniform in size within a given work. In \n (Text by Molly Donovan, published in the National Gallery of Art exhibition catalogue,\n Notes\n \n \n \n \n \n ' +p354056 +sa(dp354057 +g291134 +S'The Erpingham Gate, Norwich' +p354058 +sg291137 +S'John Carter' +p354059 +sg291130 +S'pen and black ink, gray wash, and watercolor on laid paper' +p354060 +sg291132 +S'1791' +p354061 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a0006953.jpg' +p354062 +sg291136 +g27 +sa(dp354063 +g291134 +S'Cosimo II, Grand Duke of Tuscany' +p354064 +sg291137 +S'Adriaen Haelwegh' +p354065 +sg291130 +S'engraving on laid paper' +p354066 +sg291132 +S'before 1691' +p354067 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d521.jpg' +p354068 +sg291136 +g27 +sa(dp354069 +g291134 +S'Sebastian Le Clerc' +p354070 +sg291137 +S'Claude Duflos' +p354071 +sg291130 +S'engraving on laid paper' +p354072 +sg291132 +S'c. 1714' +p354073 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008e/a0008ea8.jpg' +p354074 +sg291136 +g27 +sa(dp354075 +g291130 +S'charcoal on laid paper' +p354076 +sg291132 +S'1915' +p354077 +sg291134 +S'Second, Out of My Head' +p354078 +sg291136 +g27 +sg291137 +S"Georgia O'Keeffe" +p354079 +sa(dp354080 +g291130 +S'charcoal on laid paper' +p354081 +sg291132 +S'1915' +p354082 +sg291134 +S'No. 12-Special' +p354083 +sg291136 +g27 +sg291137 +S"Georgia O'Keeffe" +p354084 +sa(dp354085 +g291130 +S'charcoal on laid paper' +p354086 +sg291132 +S'1916' +p354087 +sg291134 +S'I-Special' +p354088 +sg291136 +g27 +sg291137 +S"Georgia O'Keeffe" +p354089 +sa(dp354090 +g291130 +S'charcoal on laid paper' +p354091 +sg291132 +S'1915' +p354092 +sg291134 +S'No. 2-Special' +p354093 +sg291136 +g27 +sg291137 +S"Georgia O'Keeffe" +p354094 +sa(dp354095 +g291130 +S'charcoal on laid paper' +p354096 +sg291132 +S'1915' +p354097 +sg291134 +S'No. 3-Special' +p354098 +sg291136 +g27 +sg291137 +S"Georgia O'Keeffe" +p354099 +sa(dp354100 +g291130 +S'charcoal on laid paper' +p354101 +sg291132 +S'1915' +p354102 +sg291134 +S'No. 4 Special' +p354103 +sg291136 +g27 +sg291137 +S"Georgia O'Keeffe" +p354104 +sa(dp354105 +g291130 +S'charcoal on laid paper' +p354106 +sg291132 +S'1915' +p354107 +sg291134 +S'No. 5 Special' +p354108 +sg291136 +g27 +sg291137 +S"Georgia O'Keeffe" +p354109 +sa(dp354110 +g291130 +S'charcoal on laid paper' +p354111 +sg291132 +S'1915' +p354112 +sg291134 +S'No. 7 Special' +p354113 +sg291136 +g27 +sg291137 +S"Georgia O'Keeffe" +p354114 +sa(dp354115 +g291130 +S'charcoal on laid paper' +p354116 +sg291132 +S'1916' +p354117 +sg291134 +S'No. 14 Special' +p354118 +sg291136 +g27 +sg291137 +S"Georgia O'Keeffe" +p354119 +sa(dp354120 +g291130 +S'charcoal on laid paper' +p354121 +sg291132 +S'1915' +p354122 +sg291134 +S'No. 20-From Music-Special' +p354123 +sg291136 +g27 +sg291137 +S"Georgia O'Keeffe" +p354124 +sa(dp354125 +g291130 +S'charcoal on laid paper' +p354126 +sg291132 +S'1916' +p354127 +sg291134 +S'First Drawing of the Blue Lines' +p354128 +sg291136 +g27 +sg291137 +S"Georgia O'Keeffe" +p354129 +sa(dp354130 +g291130 +S'charcoal on laid paper' +p354131 +sg291132 +S'1918' +p354132 +sg291134 +S'No. 16 Special' +p354133 +sg291136 +g27 +sg291137 +S"Georgia O'Keeffe" +p354134 +sa(dp354135 +g291130 +S'charcoal on laid paper' +p354136 +sg291132 +S'1916/1917' +p354137 +sg291134 +S'Untitled (Abstraction)' +p354138 +sg291136 +g27 +sg291137 +S"Georgia O'Keeffe" +p354139 +sa(dp354140 +g291130 +S'gelatin silver print' +p354141 +sg291132 +S'1957' +p354142 +sg291134 +S'Washington D.C. Inauguration Day' +p354143 +sg291136 +g27 +sg291137 +S'Robert Frank' +p354144 +sa(dp354145 +g291130 +S'gelatin silver print' +p354146 +sg291132 +S'1952' +p354147 +sg291134 +S'City of London' +p354148 +sg291136 +g27 +sg291137 +S'Robert Frank' +p354149 +sa(dp354150 +g291130 +S'gelatin silver print' +p354151 +sg291132 +S'1952' +p354152 +sg291134 +S'City of London' +p354153 +sg291136 +g27 +sg291137 +S'Robert Frank' +p354154 +sa(dp354155 +g291130 +S'gelatin silver print' +p354156 +sg291132 +S'1952' +p354157 +sg291134 +S'City of London' +p354158 +sg291136 +g27 +sg291137 +S'Robert Frank' +p354159 +sa(dp354160 +g291134 +S'Pallas Athene in the Form of a Bird Leaving Nestor and Telemachus' +p354161 +sg291137 +S'Jean-Jacques-Fran\xc3\xa7ois Le Barbier I' +p354162 +sg291130 +S'pen and black ink with gray and brown washes over graphite, heightened with white, on laid paper' +p354163 +sg291132 +S'c. 1780' +p354164 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a0007117.jpg' +p354165 +sg291136 +g27 +sa(dp354166 +g291134 +S'An Ancient Sacrifice' +p354167 +sg291137 +S'Cl\xc3\xa9ment-Pierre Marillier' +p354168 +sg291130 +S'pen and black ink with gray wash, heightened with white, on laid paper' +p354169 +sg291132 +S'c. 1800' +p354170 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e2b.jpg' +p354171 +sg291136 +g27 +sa(dp354172 +g291134 +S'Mythological Composition with Chronos and Harpies [recto]' +p354173 +sg291137 +S'Giovanni Battista Cipriani' +p354174 +sg291130 +S'red chalk on laid paper' +p354175 +sg291132 +S'unknown date\n' +p354176 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a000721e.jpg' +p354177 +sg291136 +g27 +sa(dp354178 +g291134 +S'Study of Two Putti and a Draped Arm [verso]' +p354179 +sg291137 +S'Giovanni Battista Cipriani' +p354180 +sg291130 +S'black chalk on laid paper' +p354181 +sg291132 +S'unknown date\n' +p354182 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a00071e5.jpg' +p354183 +sg291136 +g27 +sa(dp354184 +g291134 +S'The Storm' +p354185 +sg291137 +S'Charles Fromuth' +p354186 +sg291130 +S'charcoal heightened with white on tan wove paper mounted to board' +p354187 +sg291132 +S'1908' +p354188 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ec/a000ec35.jpg' +p354189 +sg291136 +g27 +sa(dp354190 +g291134 +S'Piano m\xc3\xa9canique' +p354191 +sg291137 +S'Joan Mitchell' +p354192 +sg291130 +S'oil on canvas' +p354193 +sg291132 +S'1958' +p354194 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00051/a0005176.jpg' +p354195 +sg291136 +g27 +sa(dp354196 +g291130 +g27 +sg291132 +S'\nBritish, born 1940' +p354197 +sg291134 +S'S.M.S. (February 1968)' +p354198 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354199 +sa(dp354200 +g291134 +S'The Levite at Gibeah' +p354201 +sg291137 +S'Gerbrand van den Eeckhout' +p354202 +sg291130 +S'oil on canvas' +p354203 +sg291132 +S'probably late 1650s' +p354204 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00037/a00037f9.jpg' +p354205 +sg291136 +S"Gerbrand van den Eeckhout, one of \n The subject of this painting, the story of the Levite and his concubine, is taken from the Old Testament book of Judges. After the Levite had brought home a woman from Bethlehem to be his concubine, she left him and returned to her father's house. While the concubine was staying with her father, the Levite found her and took her back to his home in the country of Ephraim. On their journey home, they sought shelter in Gibeah, but were unsuccessful until a field laborer offered the couple lodging in his house. It is this moment that Van den Eeckhout depicts. As the story then goes, a few wicked men surrounded the laborer's house and threatened to do the Levite harm. The Levite then pushed the concubine out the door so the men could attack her instead. The next day, he left Gibeah with her lifeless body set atop a donkey. When he got home, the Levite cut the concubine's body into twelve pieces and sent one piece to each tribe of Israel.\n Traditionally the narrative had been used to warn against the sin of adultery. However, by depicting the peaceful meeting in Gibeah instead of some of the more appalling episodes in the story, the artist emphasizes—through the moral exemplar of the field laborer offering hospitality to strangers—the Christian commandment to love one's neighbor. Although this unusual biblical story was infrequently depicted by Dutch artists, Van den Eeckhout painted it at least three times: a first version in 1645 (Staatliche Museen, Berlin) and two others from the late 1650s, this one, and another in the Pushkin Museum, Moscow.\n " +p354206 +sa(dp354207 +g291130 +S'Italian, 1500 - 1550' +p354208 +sg291132 +S'(sculptor)' +p354209 +sg291134 +S'Male Nude Standing in a Fearful Pose' +p354210 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354211 +sa(dp354212 +g291134 +S'The Favorite of the Emir' +p354213 +sg291137 +S'Jean Joseph Benjamin Constant' +p354214 +sg291130 +S'oil on canvas' +p354215 +sg291132 +S'c. 1879' +p354216 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00068/a000683b.jpg' +p354217 +sg291136 +S"Jean-Joseph Benjamin-Constant was among the preeminent\r\npainters of orientalist subjects in France\r\nin the latter decades of the 19th\r\ncentury. In 1859, he enrolled at the École\r\ndes Beaux-Arts in Toulouse where he\r\nremained until 1866 when a municipal\r\nscholarship allowed him to continue\r\nhis artistic training in Paris. In 1871,\r\nBenjamin-Constant embarked upon an\r\nextended sojourn, spending the better\r\npart of two years abroad, traveling first\r\nthrough Moorish Spain before joining\r\nCharles Joseph Tissot, French plenipotentiary\r\nto Morocco. During the artist's\r\n16-month stay he collected artifacts\r\nand made sketches and studies that\r\nwould provide the basis for his numerous\r\ncompositions in the years to come.\n By the mid-1870s, Benjamin-Constant had established a reputation\r\nas painter of orientalist subjects, ranging\r\nfrom grim and occasionally violent\r\ngenre scenes, to opulent and visually\r\nalluring harem scenes. \n Benjamin-Constant took great\r\ndelight in the juxtaposition of the richly\r\nembroidered fabric against the smooth\r\npale flesh of the women's arms and\r\nchests and the subtle variations between\r\nthe two women. On the right, the darkhaired\r\nwoman gazes directly at the\r\nviewer while her companion is shown\r\nfully in repose, her body relaxed and\r\nher eyes closed as if lulled to sleep\r\nby the musician seated behind her.\r\nThe paleness of her skin and her rich\r\nauburn hair suggest that she is not a\r\nnative. Playing upon contemporary\r\nfantasies of European beauties who have\r\nbeen spirited away to lead the pampered,\r\ncloistered life of a courtesan in\r\na harem—the inclusion of the man\r\nstanding guard in the background at\r\nthe far right of the composition serves\r\nas a reminder of the locale—Benjamin-Constant introduced an erotic charge\r\ninto this exotic and visually seductive\r\npainting. This painting, the first by the\r\nartist to enter the Gallery's collection,\r\nis a gift of the United States Naval\r\nAcademy Museum.\n " +p354218 +sa(dp354219 +g291130 +S'black crayon on thin buff wove paper' +p354220 +sg291132 +S'unknown date\n' +p354221 +sg291134 +S'Two Nudes' +p354222 +sg291136 +g27 +sg291137 +S'Jules Pascin' +p354223 +sa(dp354224 +g291130 +g27 +sg291132 +S'(publisher)' +p354225 +sg291134 +S'Kai' +p354226 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354227 +sa(dp354228 +g291130 +S'etching on laid paper (proof)' +p354229 +sg291132 +S'1778 or before' +p354230 +sg291134 +S'Vases and Candelabra (plate 96)' +p354231 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p354232 +sa(dp354233 +g291130 +S'(artist)' +p354234 +sg291132 +S'\n' +p354235 +sg291134 +S'Life and Landscape on the Norfolk Broads' +p354236 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354237 +sa(dp354238 +g291130 +S'(artist)' +p354239 +sg291132 +S'\n' +p354240 +sg291134 +S'Coming Home from the Marshes' +p354241 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354242 +sa(dp354243 +g291130 +S'(artist)' +p354244 +sg291132 +S'\n' +p354245 +sg291134 +S'Setting the Bow-Net' +p354246 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354247 +sa(dp354248 +g291130 +S'(artist)' +p354249 +sg291132 +S'\n' +p354250 +sg291134 +S"A Broadman's Cottage" +p354251 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354252 +sa(dp354253 +g291130 +S'platinum print' +p354254 +sg291132 +S'1885' +p354255 +sg291134 +S'A Sailing Match at Horning' +p354256 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p354257 +sa(dp354258 +g291130 +S'platinum print' +p354259 +sg291132 +S'1886' +p354260 +sg291134 +S'The Village of Horning' +p354261 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p354262 +sa(dp354263 +g291130 +S'platinum print' +p354264 +sg291132 +S'1886' +p354265 +sg291134 +S"An Eel-Catcher's Home" +p354266 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p354267 +sa(dp354268 +g291130 +S'(artist)' +p354269 +sg291132 +S'\n' +p354270 +sg291134 +S'Taking Up the Eel-Net' +p354271 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354272 +sa(dp354273 +g291130 +S'(artist)' +p354274 +sg291132 +S'\n' +p354275 +sg291134 +S'Water-Lilies' +p354276 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354277 +sa(dp354278 +g291130 +S'platinum print' +p354279 +sg291132 +S'1886' +p354280 +sg291134 +S'Gathering Water-Lilies' +p354281 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p354282 +sa(dp354283 +g291130 +S'(artist)' +p354284 +sg291132 +S'\n' +p354285 +sg291134 +S'Snipe-Shooting' +p354286 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354287 +sa(dp354288 +g291130 +S'platinum print' +p354289 +sg291132 +S'1886' +p354290 +sg291134 +S'A Ruined Water-Mill' +p354291 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p354292 +sa(dp354293 +g291130 +S'(artist)' +p354294 +sg291132 +S'\n' +p354295 +sg291134 +S'The Old Order and the New' +p354296 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354297 +sa(dp354298 +g291130 +S'(artist)' +p354299 +sg291132 +S'\n' +p354300 +sg291134 +S'A Norfolk Boat-Yard' +p354301 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354302 +sa(dp354303 +g291130 +S'(artist)' +p354304 +sg291132 +S'\n' +p354305 +sg291134 +S'The First Frost' +p354306 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354307 +sa(dp354308 +g291130 +S'platinum print' +p354309 +sg291132 +S'1887' +p354310 +sg291134 +S'The Haunt of the Pike' +p354311 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p354312 +sa(dp354313 +g291130 +S'platinum print' +p354314 +sg291132 +S'1886' +p354315 +sg291134 +S'Quanting the Marsh Hay' +p354316 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p354317 +sa(dp354318 +g291130 +S'(artist)' +p354319 +sg291132 +S'\n' +p354320 +sg291134 +S'Poling the Marsh Hay' +p354321 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354322 +sa(dp354323 +g291130 +S'platinum print' +p354324 +sg291132 +S'1886' +p354325 +sg291134 +S'Setting Up the Bow-Net' +p354326 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p354327 +sa(dp354328 +g291130 +S'(artist)' +p354329 +sg291132 +S'\n' +p354330 +sg291134 +S'Gunner Working Up to Fowl' +p354331 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354332 +sa(dp354333 +g291130 +S'(artist)' +p354334 +sg291132 +S'\n' +p354335 +sg291134 +S"The Fowler's Return" +p354336 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354337 +sa(dp354338 +g291130 +S'(artist)' +p354339 +sg291132 +S'\n' +p354340 +sg291134 +S'Rowing Home the Schoof-Stuff' +p354341 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354342 +sa(dp354343 +g291130 +S'(artist)' +p354344 +sg291132 +S'\n' +p354345 +sg291134 +S'Marshman Going to Cut Schoof-Stuff' +p354346 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354347 +sa(dp354348 +g291130 +S'platinum print' +p354349 +sg291132 +S'1886' +p354350 +sg291134 +S'The River Bure at Coltishall' +p354351 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p354352 +sa(dp354353 +g291130 +S'platinum print' +p354354 +sg291132 +S'1886' +p354355 +sg291134 +S'Cantley: Wherries Waiting for the Turn of the Tide' +p354356 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p354357 +sa(dp354358 +g291130 +S'(artist)' +p354359 +sg291132 +S'\n' +p354360 +sg291134 +S'A Reed-Cutter at Work' +p354361 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354362 +sa(dp354363 +g291130 +S'(artist)' +p354364 +sg291132 +S'\n' +p354365 +sg291134 +S'Towing the Reed' +p354366 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354367 +sa(dp354368 +g291130 +S'(artist)' +p354369 +sg291132 +S'\n' +p354370 +sg291134 +S'Ricking the Reed' +p354371 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354372 +sa(dp354373 +g291130 +S'(artist)' +p354374 +sg291132 +S'\n' +p354375 +sg291134 +S'During the Reed-Harvest' +p354376 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354377 +sa(dp354378 +g291130 +S'(artist)' +p354379 +sg291132 +S'\n' +p354380 +sg291134 +S'A Marsh Farm' +p354381 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354382 +sa(dp354383 +g291130 +S'(artist)' +p354384 +sg291132 +S'\n' +p354385 +sg291134 +S'Cattle on the Marshes' +p354386 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354387 +sa(dp354388 +g291130 +S'(artist)' +p354389 +sg291132 +S'\n' +p354390 +sg291134 +S'A Reed Boat-House' +p354391 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354392 +sa(dp354393 +g291130 +S'(artist)' +p354394 +sg291132 +S'\n' +p354395 +sg291134 +S'Cutting the Gladdon' +p354396 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354397 +sa(dp354398 +g291130 +S'(artist)' +p354399 +sg291132 +S'\n' +p354400 +sg291134 +S"The Gladdon-Cutter's Return" +p354401 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354402 +sa(dp354403 +g291130 +S'(artist)' +p354404 +sg291132 +S'\n' +p354405 +sg291134 +S'Quanting the Gladdon' +p354406 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354407 +sa(dp354408 +g291130 +S'platinum print' +p354409 +sg291132 +S'1886' +p354410 +sg291134 +S'A Rushy Shore' +p354411 +sg291136 +g27 +sg291137 +S'Peter Henry Emerson' +p354412 +sa(dp354413 +g291130 +S'(artist)' +p354414 +sg291132 +S'\n' +p354415 +sg291134 +S"'Twixt Land and Water" +p354416 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354417 +sa(dp354418 +g291130 +S'(artist)' +p354419 +sg291132 +S'\n' +p354420 +sg291134 +S'Evening' +p354421 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354422 +sa(dp354423 +g291130 +S'(artist)' +p354424 +sg291132 +S'\n' +p354425 +sg291134 +S'An Autumn Morning' +p354426 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354427 +sa(dp354428 +g291130 +S'(artist)' +p354429 +sg291132 +S'\n' +p354430 +sg291134 +S'The Fringe of the Marsh' +p354431 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354432 +sa(dp354433 +g291134 +S'On the River Bure' +p354434 +sg291137 +S'Peter Henry Emerson' +p354435 +sg291130 +S'platinum print' +p354436 +sg291132 +S'1886' +p354437 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b8/a000b81a.jpg' +p354438 +sg291136 +g27 +sa(dp354439 +g291130 +S'German, born 1941' +p354440 +sg291132 +S'(artist)' +p354441 +sg291134 +S'Steelpoints and Poems' +p354442 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354443 +sa(dp354444 +g291134 +S'At the Piano, Agathe Val\xc3\xa9ry-Rouart' +p354445 +sg291137 +S'Ernest Rouart' +p354446 +sg291130 +S'charcoal on laid paper' +p354447 +sg291132 +S'c. 1916' +p354448 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f6e.jpg' +p354449 +sg291136 +g27 +sa(dp354450 +g291134 +S"Study (The Artist's Son Julien)" +p354451 +sg291137 +S'Ernest Rouart' +p354452 +sg291130 +S'charcoal heightened with white on brown wove paper' +p354453 +sg291132 +S'c. 1916' +p354454 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a0007296.jpg' +p354455 +sg291136 +g27 +sa(dp354456 +g291134 +S'Woman at Her Toilette' +p354457 +sg291137 +S'Ernest Rouart' +p354458 +sg291130 +S'etching on wove paper' +p354459 +sg291132 +S'unknown date\n' +p354460 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000a0/a000a073.jpg' +p354461 +sg291136 +g27 +sa(dp354462 +g291130 +S'color offset lithograph on three sheets of white wove paper' +p354463 +sg291132 +S'1966' +p354464 +sg291134 +S'As I Opened Fire [left panel]' +p354465 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p354466 +sa(dp354467 +g291130 +S'color woodcut and wood engraving on wove paper' +p354468 +sg291132 +S'1937' +p354469 +sg291134 +S'Sea Forms' +p354470 +sg291136 +g27 +sg291137 +S'John Ferren' +p354471 +sa(dp354472 +g291130 +S'aquatint and graphite on Rives BFK paper' +p354473 +sg291132 +S'1979' +p354474 +sg291134 +S'Untitled' +p354475 +sg291136 +g27 +sg291137 +S'Lois Lane' +p354476 +sa(dp354477 +g291130 +S'aquatint with photo-etching and graphite on Rives BFK paper' +p354478 +sg291132 +S'1979' +p354479 +sg291134 +S'Terrorist' +p354480 +sg291136 +g27 +sg291137 +S'Lois Lane' +p354481 +sa(dp354482 +g291130 +S'drypoint and aquatint in black on wove paper' +p354483 +sg291132 +S'1979' +p354484 +sg291134 +S'Untitled' +p354485 +sg291136 +g27 +sg291137 +S'Franz Hitzler' +p354486 +sa(dp354487 +g291130 +S'drypoint in black on wove paper' +p354488 +sg291132 +S'1977' +p354489 +sg291134 +S'Untitled' +p354490 +sg291136 +g27 +sg291137 +S'Franz Hitzler' +p354491 +sa(dp354492 +g291130 +S'drypoint in black on wove paper' +p354493 +sg291132 +S'1977' +p354494 +sg291134 +S'Untitled' +p354495 +sg291136 +g27 +sg291137 +S'Franz Hitzler' +p354496 +sa(dp354497 +g291130 +g27 +sg291132 +S'(publisher)' +p354498 +sg291134 +S'Religious Picture' +p354499 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354500 +sa(dp354501 +g291130 +g27 +sg291132 +S'(publisher)' +p354502 +sg291134 +S'Untitled' +p354503 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354504 +sa(dp354505 +g291130 +S'gelatin silver print mounted on paperboard' +p354506 +sg291132 +S'1949' +p354507 +sg291134 +S'Venus, Jupiter and Mars' +p354508 +sg291136 +g27 +sg291137 +S'Frederick Sommer' +p354509 +sa(dp354510 +g291130 +S'gelatin silver print mounted on paperboard' +p354511 +sg291132 +S'1952' +p354512 +sg291134 +S'Fighting Centaur' +p354513 +sg291136 +g27 +sg291137 +S'Frederick Sommer' +p354514 +sa(dp354515 +g291130 +S'gelatin silver print' +p354516 +sg291132 +S'1949' +p354517 +sg291134 +S"Valise d'Adam" +p354518 +sg291136 +g27 +sg291137 +S'Frederick Sommer' +p354519 +sa(dp354520 +g291130 +S'gelatin silver print mounted on paperboard' +p354521 +sg291132 +S'1940' +p354522 +sg291134 +S'Champagne Rock' +p354523 +sg291136 +g27 +sg291137 +S'Frederick Sommer' +p354524 +sa(dp354525 +g291130 +S'gelatin silver print mounted on paperboard' +p354526 +sg291132 +S'1966' +p354527 +sg291134 +S'D\xc3\xbcrer Variation' +p354528 +sg291136 +g27 +sg291137 +S'Frederick Sommer' +p354529 +sa(dp354530 +g291130 +S'gelatin silver print mounted on paperboard' +p354531 +sg291132 +S'1951' +p354532 +sg291134 +S'Moon Culmination' +p354533 +sg291136 +g27 +sg291137 +S'Frederick Sommer' +p354534 +sa(dp354535 +g291134 +S'Notes' +p354536 +sg291137 +S'James McNeill Whistler' +p354537 +sg291130 +S'portfolio with five lithographs on chine coll? mounted to wove paper, with original cover' +p354538 +sg291132 +S'published 1887' +p354539 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ab/a000ab8d.jpg' +p354540 +sg291136 +g27 +sa(dp354541 +g291134 +S'Pilgrims at a Wayside Shrine' +p354542 +sg291137 +S'Hans Burgkmair I' +p354543 +sg291130 +S'woodcut in black on laid paper' +p354544 +sg291132 +S'1508' +p354545 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000a8/a000a8d6.jpg' +p354546 +sg291136 +g27 +sa(dp354547 +g291130 +S'color screenprint and lithograph on wove paper' +p354548 +sg291132 +S'1980' +p354549 +sg291134 +S'Claire Nude' +p354550 +sg291136 +g27 +sg291137 +S'Tom Wesselmann' +p354551 +sa(dp354552 +g291134 +S'A Rustic Kiln at Vernon' +p354553 +sg291137 +S'Johann Georg Wille' +p354554 +sg291130 +S'brown and black chalk on laid paper' +p354555 +sg291132 +S'1761' +p354556 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006eaa.jpg' +p354557 +sg291136 +g27 +sa(dp354558 +g291134 +S'A Rustic House in the Grand Rue at Sceaux-Les-Chartreux' +p354559 +sg291137 +S'Johann Georg Wille' +p354560 +sg291130 +S'brown chalk and brown wash on laid paper' +p354561 +sg291132 +S'1766' +p354562 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ed5.jpg' +p354563 +sg291136 +g27 +sa(dp354564 +g291130 +S'charcoal on laid paper' +p354565 +sg291132 +S'1919' +p354566 +sg291134 +S'Crazy Day' +p354567 +sg291136 +g27 +sg291137 +S"Georgia O'Keeffe" +p354568 +sa(dp354569 +g291130 +S'etching on laid paper (proof)' +p354570 +sg291132 +S'1778 or before' +p354571 +sg291134 +S'Vases and Candelabra (plate 97)' +p354572 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p354573 +sa(dp354574 +g291130 +S'etching on laid paper (proof)' +p354575 +sg291132 +S'1778 or before' +p354576 +sg291134 +S'Vases and Candelabra (plate 100)' +p354577 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p354578 +sa(dp354579 +g291130 +S'etching on laid paper (proof)' +p354580 +sg291132 +S'1778 or before' +p354581 +sg291134 +S'Vases and Candelabra (plate 101)' +p354582 +sg291136 +g27 +sg291137 +S'Giovanni Battista Piranesi' +p354583 +sa(dp354584 +g291130 +S'metal and canvas relief' +p354585 +sg291132 +S'1960' +p354586 +sg291134 +S'Untitled' +p354587 +sg291136 +g27 +sg291137 +S'Lee Bontecou' +p354588 +sa(dp354589 +g291134 +S'Grove of Trees' +p354590 +sg291137 +S'Claude Lorrain' +p354591 +sg291130 +S'pen and brown ink with gray wash on laid paper' +p354592 +sg291132 +S'c. 1640' +p354593 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cea.jpg' +p354594 +sg291136 +g27 +sa(dp354595 +g291134 +S'Clara and Lizzie, Daughters of Frederick and Elizabeth Shattuck' +p354596 +sg291137 +S'Bela Lyon Pratt' +p354597 +sg291130 +S'bronze' +p354598 +sg291132 +S'model 1893, cast 1894' +p354599 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00054/a0005427.jpg' +p354600 +sg291136 +g27 +sa(dp354601 +g291130 +S'sepia ink and wash on heavy wove paper' +p354602 +sg291132 +S'1977' +p354603 +sg291134 +S'Mural Sketch [pen, ink, and wash]' +p354604 +sg291136 +g27 +sg291137 +S'Robert Motherwell' +p354605 +sa(dp354606 +g291130 +S'sepia pen and ink on heavy wove paper' +p354607 +sg291132 +S'1977' +p354608 +sg291134 +S'Mural Sketch [pen and ink]' +p354609 +sg291136 +g27 +sg291137 +S'Robert Motherwell' +p354610 +sa(dp354611 +g291130 +S'acrylic paint and graphite with collage on canvasboard' +p354612 +sg291132 +S'1977' +p354613 +sg291134 +S'Reconciliation Elegy' +p354614 +sg291136 +g27 +sg291137 +S'Robert Motherwell' +p354615 +sa(dp354616 +g291136 +g27 +sg291134 +S'Plate 15: From the Portfolio "Folk Art of Rural Pennsylvania"' +p354617 +sg291137 +S'American 20th Century' +p354618 +sa(dp354619 +g291136 +g27 +sg291134 +S'Drawing for Plate 15: From the Portfolio "Folk Art of Rural Pennsylvania"' +p354620 +sg291137 +S'American 20th Century' +p354621 +sa(dp354622 +g291136 +g27 +sg291134 +S'Plate 14: From the Portfolio "Folk Art of Rural Pennsylvania"' +p354623 +sg291137 +S'American 20th Century' +p354624 +sa(dp354625 +g291136 +g27 +sg291134 +S'Drawing for Plate 14: From the Portfolio "Folk Art of Rural Pennsylvania"' +p354626 +sg291137 +S'American 20th Century' +p354627 +sa(dp354628 +g291136 +g27 +sg291134 +S'Plate 13: From the Portfolio "Folk Art of Rural Pennsylvania"' +p354629 +sg291137 +S'American 20th Century' +p354630 +sa(dp354631 +g291136 +g27 +sg291134 +S'Drawing for Plate 13: From the Portfolio "Folk Art of Rural Pennsylvania"' +p354632 +sg291137 +S'American 20th Century' +p354633 +sa(dp354634 +g291136 +g27 +sg291134 +S'Drawing for Plate 13: From the Portfolio "Folk Art of Rural Pennsylvania"' +p354635 +sg291137 +S'American 20th Century' +p354636 +sa(dp354637 +g291136 +g27 +sg291134 +S'Plate 12: From the Portfolio "Folk Art of Rural Pennsylvania"' +p354638 +sg291137 +S'American 20th Century' +p354639 +sa(dp354640 +g291136 +g27 +sg291134 +S'Drawing for Plate 12: From the Portfolio "Folk Art of Rural Pennsylvania"' +p354641 +sg291137 +S'American 20th Century' +p354642 +sa(dp354643 +g291136 +g27 +sg291134 +S'Plate 11: From the Portfolio "Folk Art of Rural Pennsylvania"' +p354644 +sg291137 +S'American 20th Century' +p354645 +sa(dp354646 +g291136 +g27 +sg291134 +S'Plate 11: From the Portfolio "Folk Art of Rural Pennsylvania"' +p354647 +sg291137 +S'American 20th Century' +p354648 +sa(dp354649 +g291136 +g27 +sg291134 +S'Drawing for Plate 11: From the Portfolio "Folk Art of Rural Pennsylvania"' +p354650 +sg291137 +S'American 20th Century' +p354651 +sa(dp354652 +g291136 +g27 +sg291134 +S'Plate 10: From the Portfolio "Folk Art of Rural Pennsylvania"' +p354653 +sg291137 +S'American 20th Century' +p354654 +sa(dp354655 +g291136 +g27 +sg291134 +S'Drawing for Plate 10: From the Portfolio "Folk Art of Rural Pennsylvania"' +p354656 +sg291137 +S'American 20th Century' +p354657 +sa(dp354658 +g291136 +g27 +sg291134 +S'Drawing for Plate 9: From the Portfolio "Folk Art of Rural Pennsylvania"' +p354659 +sg291137 +S'American 20th Century' +p354660 +sa(dp354661 +g291136 +g27 +sg291134 +S'Drawing for Plate 9: From the Portfolio "Folk Art of Rural Pennsylvania"' +p354662 +sg291137 +S'American 20th Century' +p354663 +sa(dp354664 +g291136 +g27 +sg291134 +S'Drawing for Plate 8: From the Portfolio "Folk Art of Rural Pennsylvania"' +p354665 +sg291137 +S'American 20th Century' +p354666 +sa(dp354667 +g291136 +g27 +sg291134 +S'Drawing for Plate 7: From Portfolio "Folk Art of Rural Pennsylvania"' +p354668 +sg291137 +S'American 20th Century' +p354669 +sa(dp354670 +g291136 +g27 +sg291134 +S'Drawing for Plate 7: From Portfolio "Folk Art of Rural Pennsylvania"' +p354671 +sg291137 +S'American 20th Century' +p354672 +sa(dp354673 +g291136 +g27 +sg291134 +S'Plate 6: From Portfolio "Folk Art of Rural Pennsylvania"' +p354674 +sg291137 +S'American 20th Century' +p354675 +sa(dp354676 +g291136 +g27 +sg291134 +S'Drawing for Plate 5: From Portfolio "Folk Art of Rural Pennsylvania"' +p354677 +sg291137 +S'American 20th Century' +p354678 +sa(dp354679 +g291136 +g27 +sg291134 +S'Plate 4: From Portfolio "Folk Art of Rural Pennsylvania"' +p354680 +sg291137 +S'American 20th Century' +p354681 +sa(dp354682 +g291136 +g27 +sg291134 +S'Plate 4: From Portfolio "Folk Art of Rural Pennsylvania"' +p354683 +sg291137 +S'American 20th Century' +p354684 +sa(dp354685 +g291136 +g27 +sg291134 +S'Drawing for Plate 4: From Portfolio "Folk Art of Rural Pennsylvania"' +p354686 +sg291137 +S'American 20th Century' +p354687 +sa(dp354688 +g291136 +g27 +sg291134 +S'Plate 3: From Portfolio "Folk Art of Rural Pennsylvania"' +p354689 +sg291137 +S'American 20th Century' +p354690 +sa(dp354691 +g291136 +g27 +sg291134 +S'Drawing for Plate 3: From Portfolio "Folk Art of Rural Pennsylvania"' +p354692 +sg291137 +S'American 20th Century' +p354693 +sa(dp354694 +g291136 +g27 +sg291134 +S'Drawing for Plate 3: From Portfolio "Folk Art of Rural Pennsylvania"' +p354695 +sg291137 +S'American 20th Century' +p354696 +sa(dp354697 +g291136 +g27 +sg291134 +S'Drawing for Plate 2: From Portfolio "Folk Art of Rural Pennsylvania"' +p354698 +sg291137 +S'American 20th Century' +p354699 +sa(dp354700 +g291130 +S'acrylic and graphite on canvasboard' +p354701 +sg291132 +S'1977' +p354702 +sg291134 +S'Study for "Reconciliation Elegy"' +p354703 +sg291136 +g27 +sg291137 +S'Robert Motherwell' +p354704 +sa(dp354705 +g291136 +g27 +sg291134 +S'Plate 2: From Portfolio "Folk Art of Rural Pennsylvania"' +p354706 +sg291137 +S'American 20th Century' +p354707 +sa(dp354708 +g291136 +g27 +sg291134 +S'Plate 1: From Portfolio "Folk Art of Rural Pennsylvania"' +p354709 +sg291137 +S'American 20th Century' +p354710 +sa(dp354711 +g291136 +g27 +sg291134 +S'Plate 3: From Portfolio "Folk Art of Rural Pennsylvania"' +p354712 +sg291137 +S'American 20th Century' +p354713 +sa(dp354714 +g291136 +g27 +sg291134 +S'Plate 3: From Portfolio "Folk Art of Rural Pennsylvania"' +p354715 +sg291137 +S'American 20th Century' +p354716 +sa(dp354717 +g291136 +g27 +sg291134 +S'Plate 50: Sacred Heart: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354718 +sg291137 +S'American 20th Century' +p354719 +sa(dp354720 +g291134 +S'The Gallant Gardener' +p354721 +sg291137 +S'Antoine Watteau' +p354722 +sg291130 +S'red chalk on laid paper' +p354723 +sg291132 +S'c. 1711-1712' +p354724 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00037/a00037ff.jpg' +p354725 +sg291136 +g27 +sa(dp354726 +g291136 +g27 +sg291134 +S'Plate 49: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354727 +sg291137 +S'American 20th Century' +p354728 +sa(dp354729 +g291136 +g27 +sg291134 +S'Plate 48: Buckskin Design: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354730 +sg291137 +S'American 20th Century' +p354731 +sa(dp354732 +g291136 +g27 +sg291134 +S'Plate 46: Straw Applique Design: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354733 +sg291137 +S'American 20th Century' +p354734 +sa(dp354735 +g291136 +g27 +sg291134 +S'Plate 45: Embroidered Bedspread (St. James): From Portfolio "Spanish Colonial Designs of New Mexico"' +p354736 +sg291137 +S'American 20th Century' +p354737 +sa(dp354738 +g291136 +g27 +sg291134 +S'Plate 44: Painted Chest Designs: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354739 +sg291137 +S'American 20th Century' +p354740 +sa(dp354741 +g291136 +g27 +sg291134 +S'Plate 43: Painted Chest Design: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354742 +sg291137 +S'American 20th Century' +p354743 +sa(dp354744 +g291136 +g27 +sg291134 +S'Plate 42: Painted Chest Design: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354745 +sg291137 +S'American 20th Century' +p354746 +sa(dp354747 +g291136 +g27 +sg291134 +S'Plate 41: Santa Barbara: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354748 +sg291137 +S'American 20th Century' +p354749 +sa(dp354750 +g291130 +S'gelatin silver print' +p354751 +sg291132 +S'1974' +p354752 +sg291134 +S'Self-Portrait: Triangular motion, small' +p354753 +sg291136 +g27 +sg291137 +S'Blythe Bohnen' +p354754 +sa(dp354755 +g291136 +g27 +sg291134 +S'Plate 40: St. John Nepomuk: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354756 +sg291137 +S'American 20th Century' +p354757 +sa(dp354758 +g291130 +S'gelatin silver print' +p354759 +sg291132 +S'1974' +p354760 +sg291134 +S'Self-Portrait: Square motion, small' +p354761 +sg291136 +g27 +sg291137 +S'Blythe Bohnen' +p354762 +sa(dp354763 +g291130 +S'gelatin silver print' +p354764 +sg291132 +S'1974' +p354765 +sg291134 +S'Self-Portrait: Horizontal motion, medium, bisected by Vertical motion, medium' +p354766 +sg291136 +g27 +sg291137 +S'Blythe Bohnen' +p354767 +sa(dp354768 +g291130 +S'gelatin silver print' +p354769 +sg291132 +S'1974' +p354770 +sg291134 +S'Self-Portrait: Pivotal motion from chin, medium' +p354771 +sg291136 +g27 +sg291137 +S'Blythe Bohnen' +p354772 +sa(dp354773 +g291130 +S'gelatin silver print' +p354774 +sg291132 +S'1974' +p354775 +sg291134 +S'Self-Portrait: Pivotal motion from chin, large' +p354776 +sg291136 +g27 +sg291137 +S'Blythe Bohnen' +p354777 +sa(dp354778 +g291130 +S'gelatin silver print' +p354779 +sg291132 +S'1983' +p354780 +sg291134 +S'Self Portrait: Pivotal motion from nose, small' +p354781 +sg291136 +g27 +sg291137 +S'Blythe Bohnen' +p354782 +sa(dp354783 +g291136 +g27 +sg291134 +S'Plate 39: St. John Nepomuk Bulto: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354784 +sg291137 +S'American 20th Century' +p354785 +sa(dp354786 +g291130 +S'gelatin silver print' +p354787 +sg291132 +S'1983' +p354788 +sg291134 +S'Self-Portrait: Pivotal motion from forehead, small' +p354789 +sg291136 +g27 +sg291137 +S'Blythe Bohnen' +p354790 +sa(dp354791 +g291130 +S'gelatin silver print' +p354792 +sg291132 +S'1983' +p354793 +sg291134 +S'Self-Portrait: Vertical motion up, medium' +p354794 +sg291136 +g27 +sg291137 +S'Blythe Bohnen' +p354795 +sa(dp354796 +g291130 +S'gelatin silver print' +p354797 +sg291132 +S'1974' +p354798 +sg291134 +S'Self-Portrait: Vertical motion down, medium' +p354799 +sg291136 +g27 +sg291137 +S'Blythe Bohnen' +p354800 +sa(dp354801 +g291130 +S'gelatin silver print' +p354802 +sg291132 +S'1983' +p354803 +sg291134 +S'Self-Portrait: Vertical motion up, medium; Pivotal motion, large' +p354804 +sg291136 +g27 +sg291137 +S'Blythe Bohnen' +p354805 +sa(dp354806 +g291130 +S'gelatin silver print' +p354807 +sg291132 +S'1983' +p354808 +sg291134 +S'Self-Portrait: Pivotal motion, small; Vertical motion up, small' +p354809 +sg291136 +g27 +sg291137 +S'Blythe Bohnen' +p354810 +sa(dp354811 +g291130 +S'gelatin silver print' +p354812 +sg291132 +S'1983' +p354813 +sg291134 +S'Self-Portrait: Pivotal motion, small; Vertical motion down, small' +p354814 +sg291136 +g27 +sg291137 +S'Blythe Bohnen' +p354815 +sa(dp354816 +g291130 +S'gelatin silver print' +p354817 +sg291132 +S'1974' +p354818 +sg291134 +S'Self-Portrait: Horizontal elliptical motion, small' +p354819 +sg291136 +g27 +sg291137 +S'Blythe Bohnen' +p354820 +sa(dp354821 +g291130 +S'gelatin silver print' +p354822 +sg291132 +S'1974' +p354823 +sg291134 +S'Self-Portrait: Horizontal elliptical motion, medium' +p354824 +sg291136 +g27 +sg291137 +S'Blythe Bohnen' +p354825 +sa(dp354826 +g291130 +S'gelatin silver print' +p354827 +sg291132 +S'1974' +p354828 +sg291134 +S'Self-Portrait: Vertical elliptical motion, large' +p354829 +sg291136 +g27 +sg291137 +S'Blythe Bohnen' +p354830 +sa(dp354831 +g291130 +S'etching and drypoint in black on laid paper' +p354832 +sg291132 +S'1922' +p354833 +sg291134 +S'Mother and Son' +p354834 +sg291136 +g27 +sg291137 +S'Marc Chagall' +p354835 +sa(dp354836 +g291130 +S'drypoint in black on laid paper' +p354837 +sg291132 +S'c. 1922' +p354838 +sg291134 +S'Marc Chagall' +p354839 +sg291136 +g27 +sg291137 +S'Hermann Struck' +p354840 +sa(dp354841 +g291136 +g27 +sg291134 +S'Plate 38: St. Michael: From Portfolio "Spanish Colonial Designs of New Mexico' +p354842 +sg291137 +S'American 20th Century' +p354843 +sa(dp354844 +g291136 +g27 +sg291134 +S'Plate 37: St. Anthony Bulto: From Portfolio "Spanish Colonial Designs of New Mexico' +p354845 +sg291137 +S'American 20th Century' +p354846 +sa(dp354847 +g291136 +g27 +sg291134 +S'Plate 36: St. Roch: From Portfolio "Spanish Colonial Designs of New Mexico' +p354848 +sg291137 +S'American 20th Century' +p354849 +sa(dp354850 +g291136 +g27 +sg291134 +S'Plate 35: St. Joseph: From Portfolio "Spanish Colonial Designs of New Mexico' +p354851 +sg291137 +S'American 20th Century' +p354852 +sa(dp354853 +g291136 +g27 +sg291134 +S'Plate 34: Our Lady of Light: From Portfolio "Spanish Colonial Designs of New Mexico' +p354854 +sg291137 +S'American 20th Century' +p354855 +sa(dp354856 +g291136 +g27 +sg291134 +S'Plate 33: The Holy Trinity: From Portfolio "Spanish Colonial Designs of New Mexico' +p354857 +sg291137 +S'American 20th Century' +p354858 +sa(dp354859 +g291136 +g27 +sg291134 +S'Plate 32: Our Lady of Guadalupe: From Portfolio "Spanish Colonial Designs of New Mexico' +p354860 +sg291137 +S'American 20th Century' +p354861 +sa(dp354862 +g291136 +g27 +sg291134 +S'Plate 32: Our Lady of Guadalupe": From Portfolio "Spanish Colonial Designs of New Mexico"' +p354863 +sg291137 +S'American 20th Century' +p354864 +sa(dp354865 +g291136 +g27 +sg291134 +S'Plate 31: Our Lady of Guadalupe": From Portfolio "Spanish Colonial Designs of New Mexico"' +p354866 +sg291137 +S'American 20th Century' +p354867 +sa(dp354868 +g291136 +g27 +sg291134 +S'Plate 30: Saint Isidore: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354869 +sg291137 +S'American 20th Century' +p354870 +sa(dp354871 +g291136 +g27 +sg291134 +S'Plate 29: Saint Acacius: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354872 +sg291137 +S'American 20th Century' +p354873 +sa(dp354874 +g291136 +g27 +sg291134 +S'Plate 28: The Holy Family: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354875 +sg291137 +S'American 20th Century' +p354876 +sa(dp354877 +g291136 +g27 +sg291134 +S'Plate 27: Christ Crucified: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354878 +sg291137 +S'American 20th Century' +p354879 +sa(dp354880 +g291136 +g27 +sg291134 +S'Plate 26: Christ Crucified: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354881 +sg291137 +S'American 20th Century' +p354882 +sa(dp354883 +g291136 +g27 +sg291134 +S'Plate 25: The Lost Child: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354884 +sg291137 +S'American 20th Century' +p354885 +sa(dp354886 +g291136 +g27 +sg291134 +S'Plate 24: The Lost Child of Atocha: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354887 +sg291137 +S'American 20th Century' +p354888 +sa(dp354889 +g291136 +g27 +sg291134 +S'Plate 23: Painting on Buckskin: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354890 +sg291137 +S'American 20th Century' +p354891 +sa(dp354892 +g291136 +g27 +sg291134 +S'Plate 22: Wall Decoration: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354893 +sg291137 +S'American 20th Century' +p354894 +sa(dp354895 +g291136 +g27 +sg291134 +S'Plate 21: Main Altarpiece: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354896 +sg291137 +S'American 20th Century' +p354897 +sa(dp354898 +g291136 +g27 +sg291134 +S'Plate 19: Reading Stand: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354899 +sg291137 +S'American 20th Century' +p354900 +sa(dp354901 +g291136 +g27 +sg291134 +S'Plate 18: Reading Stand: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354902 +sg291137 +S'American 20th Century' +p354903 +sa(dp354904 +g291136 +g27 +sg291134 +S'Plate 16: Altar Panel: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354905 +sg291137 +S'American 20th Century' +p354906 +sa(dp354907 +g291136 +g27 +sg291134 +S'Plate 15: The Creation (Lunette): From Portfolio "Spanish Colonial Designs of New Mexico"' +p354908 +sg291137 +S'American 20th Century' +p354909 +sa(dp354910 +g291136 +g27 +sg291134 +S'Plate 14: Main Altarpiece, Chimayo: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354911 +sg291137 +S'American 20th Century' +p354912 +sa(dp354913 +g291136 +g27 +sg291134 +S'Plate 13: Designs with Cross, Chimayo: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354914 +sg291137 +S'American 20th Century' +p354915 +sa(dp354916 +g291136 +g27 +sg291134 +S'Plate 12: Saint Rita: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354917 +sg291137 +S'American 20th Century' +p354918 +sa(dp354919 +g291136 +g27 +sg291134 +S'Plate 11: Annunciation: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354920 +sg291137 +S'American 20th Century' +p354921 +sa(dp354922 +g291136 +g27 +sg291134 +S'Plate 10: Holy Ghost Lunette: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354923 +sg291137 +S'American 20th Century' +p354924 +sa(dp354925 +g291136 +g27 +sg291134 +S'Plate 9: Saint Joseph & Child: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354926 +sg291137 +S'American 20th Century' +p354927 +sa(dp354928 +g291136 +g27 +sg291134 +S'Plate 8: Saint Anthony of Padua: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354929 +sg291137 +S'American 20th Century' +p354930 +sa(dp354931 +g291136 +g27 +sg291134 +S'Plate 7: Our Lady of Mt. Carmel: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354932 +sg291137 +S'American 20th Century' +p354933 +sa(dp354934 +g291130 +S'gilded bronze appliqu?' +p354935 +sg291132 +S'c. 1505' +p354936 +sg291134 +S'The Virgin Mary' +p354937 +sg291136 +g27 +sg291137 +S'Francesco Marti' +p354938 +sa(dp354939 +g291136 +g27 +sg291134 +S'Plate 6: Chapel Altarpiece, Santa Cruz: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354940 +sg291137 +S'American 20th Century' +p354941 +sa(dp354942 +g291136 +g27 +sg291134 +S'Plate 5: Main Altarpiece, Santa Cruz: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354943 +sg291137 +S'American 20th Century' +p354944 +sa(dp354945 +g291136 +g27 +sg291134 +S'Plate 4: Christ in Sepulchre: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354946 +sg291137 +S'American 20th Century' +p354947 +sa(dp354948 +g291136 +g27 +sg291134 +S'Plate 3: Pecos Book of Visitations: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354949 +sg291137 +S'American 20th Century' +p354950 +sa(dp354951 +g291130 +S'Italian, probably c. 1600' +p354952 +sg291132 +S'(sculptor)' +p354953 +sg291134 +S'Madonna and Child with Saint John the Baptist' +p354954 +sg291136 +g27 +sg291137 +S'Artist Information (' +p354955 +sa(dp354956 +g291136 +g27 +sg291134 +S'Plate 2: Jemez Book of Baptisms: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354957 +sg291137 +S'American 20th Century' +p354958 +sa(dp354959 +g291136 +g27 +sg291134 +S'Plate 1: Jemez Book of Marriages: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354960 +sg291137 +S'American 20th Century' +p354961 +sa(dp354962 +g291130 +S'lead' +p354963 +sg291132 +S'1573' +p354964 +sg291134 +S'The Forge of Vulcan' +p354965 +sg291136 +g27 +sg291137 +S'Master AZ' +p354966 +sa(dp354967 +g291136 +g27 +sg291134 +S'Plate 1: Jemez Book of Marriages: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354968 +sg291137 +S'American 20th Century' +p354969 +sa(dp354970 +g291136 +g27 +sg291134 +S'Plate 2: Jemez Book of Baptisms: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354971 +sg291137 +S'American 20th Century' +p354972 +sa(dp354973 +g291136 +g27 +sg291134 +S'Plate 3: Pecos Book of Visitations: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354974 +sg291137 +S'American 20th Century' +p354975 +sa(dp354976 +g291136 +g27 +sg291134 +S'Plate 4: Christ in the Sepulchre: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354977 +sg291137 +S'American 20th Century' +p354978 +sa(dp354979 +g291136 +g27 +sg291134 +S'Plate 5: Main Altarpiece, Santa Cruz: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354980 +sg291137 +S'American 20th Century' +p354981 +sa(dp354982 +g291136 +g27 +sg291134 +S'Plate 7: Our Lady of Mt. Carmel: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354983 +sg291137 +S'American 20th Century' +p354984 +sa(dp354985 +g291136 +g27 +sg291134 +S'Plate 10: Holy Ghost Lunette & Altar Rail, Chimayo: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354986 +sg291137 +S'American 20th Century' +p354987 +sa(dp354988 +g291136 +g27 +sg291134 +S'Plate 12: Saint Rita: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354989 +sg291137 +S'American 20th Century' +p354990 +sa(dp354991 +g291136 +g27 +sg291134 +S'Plate 13: Design with Cross, Chimayo: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354992 +sg291137 +S'American 20th Century' +p354993 +sa(dp354994 +g291136 +g27 +sg291134 +S'Plate 14: Main Altarpiece, Chimayo: From Portfolio "Spanish Colonial Designs of New Mexico"' +p354995 +sg291137 +S'American 20th Century' +p354996 +sa(dp354997 +g291136 +g27 +sg291134 +S'Plate 15: The Creation (Lunette): From Portfolio "Spanish Colonial Designs of New Mexico"' +p354998 +sg291137 +S'American 20th Century' +p354999 +sa(dp355000 +g291136 +g27 +sg291134 +S'Plate 16: Wheat Sheaf, Altar Panel: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355001 +sg291137 +S'American 20th Century' +p355002 +sa(dp355003 +g291136 +g27 +sg291134 +S'Plate 17: Grapes, Altar Panel: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355004 +sg291137 +S'American 20th Century' +p355005 +sa(dp355006 +g291136 +g27 +sg291134 +S'Plate 18: Reading Stand, Llano: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355007 +sg291137 +S'American 20th Century' +p355008 +sa(dp355009 +g291136 +g27 +sg291134 +S'Plate 19: Reading Stand, Chimayo: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355010 +sg291137 +S'American 20th Century' +p355011 +sa(dp355012 +g291136 +g27 +sg291134 +S'Plate 20: Saint Veronica: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355013 +sg291137 +S'American 20th Century' +p355014 +sa(dp355015 +g291136 +g27 +sg291134 +S'Plate 22: Wall Decoration, Laguna: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355016 +sg291137 +S'American 20th Century' +p355017 +sa(dp355018 +g291136 +g27 +sg291134 +S'Plate 23: Painting on Buckskin, Laguna: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355019 +sg291137 +S'American 20th Century' +p355020 +sa(dp355021 +g291136 +g27 +sg291134 +S'Plate 26: Christ Crucified, Taos: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355022 +sg291137 +S'American 20th Century' +p355023 +sa(dp355024 +g291136 +g27 +sg291134 +S'Plate 27: Christ Crucified, Mora: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355025 +sg291137 +S'American 20th Century' +p355026 +sa(dp355027 +g291136 +g27 +sg291134 +S'Plate 28: The Holy Family: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355028 +sg291137 +S'American 20th Century' +p355029 +sa(dp355030 +g291136 +g27 +sg291134 +S'Plate 28: The Holy Family: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355031 +sg291137 +S'American 20th Century' +p355032 +sa(dp355033 +g291136 +g27 +sg291134 +S'Plate 29: Saint Acacius: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355034 +sg291137 +S'American 20th Century' +p355035 +sa(dp355036 +g291136 +g27 +sg291134 +S'Plate 30: Saint Isidore: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355037 +sg291137 +S'American 20th Century' +p355038 +sa(dp355039 +g291136 +g27 +sg291134 +S'Plate 32: Our Lady of Guadalupe: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355040 +sg291137 +S'American 20th Century' +p355041 +sa(dp355042 +g291136 +g27 +sg291134 +S'Plate 33: The Holy Trinity: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355043 +sg291137 +S'American 20th Century' +p355044 +sa(dp355045 +g291136 +g27 +sg291134 +S'Plate 36: Saint Roch: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355046 +sg291137 +S'American 20th Century' +p355047 +sa(dp355048 +g291136 +g27 +sg291134 +S'Plate 37: Saint Anthony: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355049 +sg291137 +S'American 20th Century' +p355050 +sa(dp355051 +g291136 +g27 +sg291134 +S'Plate 39: Saint John Nepomuk: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355052 +sg291137 +S'American 20th Century' +p355053 +sa(dp355054 +g291136 +g27 +sg291134 +S'Plate 41: Saint Barbara: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355055 +sg291137 +S'American 20th Century' +p355056 +sa(dp355057 +g291136 +g27 +sg291134 +S'Plate 42: Painted Chest Design: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355058 +sg291137 +S'American 20th Century' +p355059 +sa(dp355060 +g291136 +g27 +sg291134 +S'Plate 43: Painted Chest Design: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355061 +sg291137 +S'American 20th Century' +p355062 +sa(dp355063 +g291136 +g27 +sg291134 +S'Plate 44: Painted Chest Design: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355064 +sg291137 +S'American 20th Century' +p355065 +sa(dp355066 +g291136 +g27 +sg291134 +S'Plate 46: Straw Applique Design: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355067 +sg291137 +S'American 20th Century' +p355068 +sa(dp355069 +g291136 +g27 +sg291134 +S'Plate 47: Crosses of Tin: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355070 +sg291137 +S'American 20th Century' +p355071 +sa(dp355072 +g291136 +g27 +sg291134 +S'Plate 48: Buckskin Design: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355073 +sg291137 +S'American 20th Century' +p355074 +sa(dp355075 +g291136 +g27 +sg291134 +S'Plate 49: Miscellaneous Design: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355076 +sg291137 +S'American 20th Century' +p355077 +sa(dp355078 +g291136 +g27 +sg291134 +S'Plate 50: Sacred Heart: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355079 +sg291137 +S'American 20th Century' +p355080 +sa(dp355081 +g291130 +S'drypoint and etching in black on wove paper' +p355082 +sg291132 +S'1984' +p355083 +sg291134 +S'Standard West (K) 4 francs' +p355084 +sg291136 +g27 +sg291137 +S'A.R. Penck' +p355085 +sa(dp355086 +g291130 +S'woodcut in black with drawn additions on japan paper' +p355087 +sg291132 +S'1985' +p355088 +sg291134 +S'The Eviction' +p355089 +sg291136 +g27 +sg291137 +S'Paul Marcus' +p355090 +sa(dp355091 +g291130 +S'lithograph with collage and painted additions on wove paper' +p355092 +sg291132 +S'1986' +p355093 +sg291134 +S'Untitled' +p355094 +sg291136 +g27 +sg291137 +S'Jean-Charles Blais' +p355095 +sa(dp355096 +g291130 +S'resin relief in black on two joined sheets of Fabriano paper' +p355097 +sg291132 +S'1986' +p355098 +sg291134 +S'Annegato' +p355099 +sg291136 +g27 +sg291137 +S'Sauro Cardinale' +p355100 +sa(dp355101 +g291130 +S'screenprint in black and gold on brown laid packing paper' +p355102 +sg291132 +S'1985' +p355103 +sg291134 +S'Small Crucifixion with Tea' +p355104 +sg291136 +g27 +sg291137 +S'Walter Dahn' +p355105 +sa(dp355106 +g291130 +S'monoprint woodcut in black, brown, yellow, and red on commercial paper bag' +p355107 +sg291132 +S'1981' +p355108 +sg291134 +S'Glockenschiff (Bell Ship)' +p355109 +sg291136 +g27 +sg291137 +S'Felix Droese' +p355110 +sa(dp355111 +g291130 +S'monoprint woodcut in black on red tissue paper' +p355112 +sg291132 +S'1982' +p355113 +sg291134 +S'Glockenschiff (Bell Ship)' +p355114 +sg291136 +g27 +sg291137 +S'Felix Droese' +p355115 +sa(dp355116 +g291130 +S'portfolio of twelve etchings on wove paper' +p355117 +sg291132 +S'published 1983' +p355118 +sg291134 +S'Book of Wanderings' +p355119 +sg291136 +g27 +sg291137 +S'J\xc3\xbcrgen Partenheimer' +p355120 +sa(dp355121 +g291130 +S'active 1980' +p355122 +sg291132 +S'(printer)' +p355123 +sg291134 +S'Die Grundlagen der Arithmetik' +p355124 +sg291136 +g27 +sg291137 +S'Artist Information (' +p355125 +sa(dp355126 +g291130 +g27 +sg291132 +S'(publisher)' +p355127 +sg291134 +S'Untitled' +p355128 +sg291136 +g27 +sg291137 +S'Artist Information (' +p355129 +sa(dp355130 +g291130 +S'nickel-plated gasoline can with Fresnel lens system and light bulb mounted on wooden table with fabric doily and plastic ashtray and including a cassette player with tapes' +p355131 +sg291132 +S'1981' +p355132 +sg291134 +S'Krone' +p355133 +sg291136 +g27 +sg291137 +S'Edward Kienholz' +p355134 +sa(dp355135 +g291130 +g27 +sg291132 +S'(publisher)' +p355136 +sg291134 +S'Imperfect 44 3/4" x 103"' +p355137 +sg291136 +g27 +sg291137 +S'Artist Information (' +p355138 +sa(dp355139 +g291130 +g27 +sg291132 +S'(publisher)' +p355140 +sg291134 +S'View from the Window' +p355141 +sg291136 +g27 +sg291137 +S'Artist Information (' +p355142 +sa(dp355143 +g291134 +S'At the Square' +p355144 +sg291137 +S'Henri Jacques Edouard Evenepoel' +p355145 +sg291130 +S'color lithograph on wove paper' +p355146 +sg291132 +S'1897' +p355147 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d8/a000d823.jpg' +p355148 +sg291136 +g27 +sa(dp355149 +g291134 +S'Pluto' +p355150 +sg291137 +S'Hendrick Goltzius' +p355151 +sg291130 +S', 1588/1590' +p355152 +sg291132 +S'\n' +p355153 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cf/a000cfd5.jpg' +p355154 +sg291136 +g27 +sa(dp355155 +g291134 +S'Los caprichos: Subir y bajar' +p355156 +sg291137 +S'Francisco de Goya' +p355157 +sg291130 +S'etching and burnished aquatint on laid paper' +p355158 +sg291132 +S'published 1799' +p355159 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f96.jpg' +p355160 +sg291136 +g27 +sa(dp355161 +g291134 +S'Los caprichos: No hay quien nos desate' +p355162 +sg291137 +S'Francisco de Goya' +p355163 +sg291130 +S'etching and burnished aquatint on laid paper' +p355164 +sg291132 +S'published 1799' +p355165 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f36.jpg' +p355166 +sg291136 +g27 +sa(dp355167 +g291134 +S'Daubigny' +p355168 +sg291137 +S'Artist Information (' +p355169 +sg291130 +S'(artist)' +p355170 +sg291132 +S'\n' +p355171 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00098/a00098c8.jpg' +p355172 +sg291136 +g27 +sa(dp355173 +g291134 +S"Belshazzar's Feast" +p355174 +sg291137 +S'Jan Muller' +p355175 +sg291130 +S'engraving on laid paper' +p355176 +sg291132 +S'c. 1598' +p355177 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d6/a000d618.jpg' +p355178 +sg291136 +g27 +sa(dp355179 +g291134 +S'The Spinner' +p355180 +sg291137 +S'Adriaen van Ostade' +p355181 +sg291130 +S'etching on laid paper' +p355182 +sg291132 +S'1652' +p355183 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2a1.jpg' +p355184 +sg291136 +g27 +sa(dp355185 +g291134 +S"The Farrier's Shop" +p355186 +sg291137 +S'Artist Information (' +p355187 +sg291130 +S'(artist after)' +p355188 +sg291132 +S'\n' +p355189 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d71.jpg' +p355190 +sg291136 +g27 +sa(dp355191 +g291134 +S'The Flight into Egypt' +p355192 +sg291137 +S'Rembrandt van Rijn' +p355193 +sg291130 +S'etching, drypoint, and engraving on laid paper' +p355194 +sg291132 +S'1651' +p355195 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d2/a000d2e0.jpg' +p355196 +sg291136 +g27 +sa(dp355197 +g291134 +S'Nude Seated on a Bench with a Pillow (Woman Bathing Her Feet at a Brook)' +p355198 +sg291137 +S'Rembrandt van Rijn' +p355199 +sg291130 +S'etching and engraving on laid paper' +p355200 +sg291132 +S'1658' +p355201 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d336.jpg' +p355202 +sg291136 +g27 +sa(dp355203 +g291134 +S'St. Jerome in a Dark Chamber' +p355204 +sg291137 +S'Rembrandt van Rijn' +p355205 +sg291130 +S'etching, drypoint, and engraving on laid paper' +p355206 +sg291132 +S'1642' +p355207 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d302.jpg' +p355208 +sg291136 +g27 +sa(dp355209 +g291134 +S'Old Man with a Beard' +p355210 +sg291137 +S'Giovanni Domenico Tiepolo' +p355211 +sg291130 +S'etching on laid paper' +p355212 +sg291132 +S'c. 1762' +p355213 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb30.jpg' +p355214 +sg291136 +g27 +sa(dp355215 +g291134 +S'Cottages by a River' +p355216 +sg291137 +S'Jan van Goyen' +p355217 +sg291130 +S'black chalk with touches of graphite on laid paper' +p355218 +sg291132 +S'c. 1627/1629' +p355219 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f91.jpg' +p355220 +sg291136 +g27 +sa(dp355221 +g291134 +S'Young Man Playing the Cymbal' +p355222 +sg291137 +S'Artist Information (' +p355223 +sg291130 +S'(artist after)' +p355224 +sg291132 +S'\n' +p355225 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d5/a000d568.jpg' +p355226 +sg291136 +g27 +sa(dp355227 +g291134 +S'La Parisienne (8)' +p355228 +sg291137 +S'Jacques Villon' +p355229 +sg291130 +S'color softground etching, drypoint, etching, aquatint, and embossing (in white) printed from multiple plates on cream laid paper [proof]' +p355230 +sg291132 +S'1902' +p355231 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00054/a0005457.jpg' +p355232 +sg291136 +g27 +sa(dp355233 +g291134 +S'Monkey Business in Old Holland' +p355234 +sg291137 +S'Artist Information (' +p355235 +sg291130 +S'(artist after)' +p355236 +sg291132 +S'\n' +p355237 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d4/a000d4ca.jpg' +p355238 +sg291136 +g27 +sa(dp355239 +g291134 +S'Metamorphoses of the Day: A Conventional Marriage' +p355240 +sg291137 +S'Jean-Ignace-Isidore Grandville' +p355241 +sg291130 +S'hand-colored lithograph on wove paper' +p355242 +sg291132 +S'1829' +p355243 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a61.jpg' +p355244 +sg291136 +g27 +sa(dp355245 +g291134 +S'Metamorphoses of the Day: Regrets, or Never till the Next Time' +p355246 +sg291137 +S'Jean-Ignace-Isidore Grandville' +p355247 +sg291130 +S'hand-colored lithograph on wove paper' +p355248 +sg291132 +S'1829' +p355249 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a63.jpg' +p355250 +sg291136 +g27 +sa(dp355251 +g291134 +S'The Ailing Cricket' +p355252 +sg291137 +S'Jean-Ignace-Isidore Grandville' +p355253 +sg291130 +S'hand-colored lithograph on wove paper' +p355254 +sg291132 +S'1829' +p355255 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009a/a0009a60.jpg' +p355256 +sg291136 +g27 +sa(dp355257 +g291130 +S'(engraver)' +p355258 +sg291132 +S'\n' +p355259 +sg291134 +S'Vauxhall Gardens' +p355260 +sg291136 +g27 +sg291137 +S'Artist Information (' +p355261 +sa(dp355262 +g291134 +S'An Old Man Reading' +p355263 +sg291137 +S'Ferdinand Bol' +p355264 +sg291130 +S'etching and drypoint on laid paper' +p355265 +sg291132 +S'1642' +p355266 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d0b3.jpg' +p355267 +sg291136 +g27 +sa(dp355268 +g291134 +S'Portrait of a Young Man in Uniform' +p355269 +sg291137 +S'European 18th Century' +p355270 +sg291130 +S'overall: 42.4 x 31.3 cm (16 11/16 x 12 5/16 in.)' +p355271 +sg291132 +S'\npastel on blue laid paper' +p355272 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006ab2.jpg' +p355273 +sg291136 +g27 +sa(dp355274 +g291134 +S'Portrait of a Young Man in Uniform' +p355275 +sg291137 +S'European 18th Century' +p355276 +sg291130 +S'overall: 41.6 x 31.3 cm (16 3/8 x 12 5/16 in.)' +p355277 +sg291132 +S'\npastel on blue laid paper' +p355278 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006ab3.jpg' +p355279 +sg291136 +g27 +sa(dp355280 +g291134 +S'Portrait of a Young Man in Profile' +p355281 +sg291137 +S'European 19th Century' +p355282 +sg291130 +S'overall: 43.2 x 36.6 cm (17 x 14 7/16 in.)' +p355283 +sg291132 +S'\npastel on laid paper' +p355284 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006ab4.jpg' +p355285 +sg291136 +g27 +sa(dp355286 +g291134 +S'Hellene von Sleben' +p355287 +sg291137 +S'European 19th Century' +p355288 +sg291130 +S'overall: 43.5 x 36 cm (17 1/8 x 14 3/16 in.)' +p355289 +sg291132 +S'\npastel on blue wove paper' +p355290 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006ab5.jpg' +p355291 +sg291136 +g27 +sa(dp355292 +g291134 +S'Madame La Duchesse de Mortemart' +p355293 +sg291137 +S'Louis Carrogis, called Carmontelle' +p355294 +sg291130 +S', unknown date' +p355295 +sg291132 +S'\n' +p355296 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00060/a00060c8.jpg' +p355297 +sg291136 +g27 +sa(dp355298 +g291134 +S'Seated Guitarist [recto]' +p355299 +sg291137 +S'Antoine Watteau' +p355300 +sg291130 +S'red chalk on laid paper' +p355301 +sg291132 +S'unknown date\n' +p355302 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d7a.jpg' +p355303 +sg291136 +g27 +sa(dp355304 +g291134 +S'Treetops [verso]' +p355305 +sg291137 +S'Antoine Watteau' +p355306 +sg291130 +S'black and red chalks with brown wash on laid paper' +p355307 +sg291132 +S'unknown date\n' +p355308 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d4c.jpg' +p355309 +sg291136 +g27 +sa(dp355310 +g291134 +S'Design for a Border with a Portrait of Baron Cuvier' +p355311 +sg291137 +S'Jean-Baptiste Arnout' +p355312 +sg291130 +S'graphite on tracing paper' +p355313 +sg291132 +S'unknown date\n' +p355314 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a000720d.jpg' +p355315 +sg291136 +g27 +sa(dp355316 +g291134 +S'Two Russians Seated in Landscape' +p355317 +sg291137 +S'Jean-Baptiste Le Prince' +p355318 +sg291130 +S'brown chalk on beige laid paper' +p355319 +sg291132 +S'unknown date\n' +p355320 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e5b.jpg' +p355321 +sg291136 +g27 +sa(dp355322 +g291134 +S'Sancho Fleeing from the Servants of the Duke' +p355323 +sg291137 +S'Fran\xc3\xa7ois Boucher' +p355324 +sg291130 +S'black chalk and gray wash heightened with white gouache on light brown laid paper' +p355325 +sg291132 +S'1735/1736' +p355326 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022ba.jpg' +p355327 +sg291136 +g27 +sa(dp355328 +g291134 +S'Landscape View' +p355329 +sg291137 +S'Chapotay' +p355330 +sg291130 +S'gray wash with graphite on laid paper; black chalk study of male nude on verso' +p355331 +sg291132 +S'1791' +p355332 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dbe.jpg' +p355333 +sg291136 +g27 +sa(dp355334 +g291134 +S'View of a Port' +p355335 +sg291137 +S'European 18th Century' +p355336 +sg291130 +S'overall: 16.2 x 21.7 cm (6 3/8 x 8 9/16 in.)' +p355337 +sg291132 +S'\npen and black ink with brown wash over graphite on laid paper' +p355338 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a58.jpg' +p355339 +sg291136 +g27 +sa(dp355340 +g291134 +S'Young French Marquise in Exile in Lausanne' +p355341 +sg291137 +S'Jean-Baptiste Mallet' +p355342 +sg291130 +S'gouache on wove paper' +p355343 +sg291132 +S'1789' +p355344 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a00025f7.jpg' +p355345 +sg291136 +g27 +sa(dp355346 +g291134 +S'Allegory of Fame' +p355347 +sg291137 +S'Charles-Nicolas Cochin II' +p355348 +sg291130 +S'red chalk with traces of graphite on wove paper' +p355349 +sg291132 +S'1773' +p355350 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a00071a0.jpg' +p355351 +sg291136 +g27 +sa(dp355352 +g291134 +S'Man Falling from the Sky' +p355353 +sg291137 +S'Flemish 17th Century' +p355354 +sg291130 +S'overall (round): 8.7 x 8.7 cm (3 7/16 x 3 7/16 in.)' +p355355 +sg291132 +S'\npen and brown ink with blue wash and touches of black ink, incised for transfer, on laid paper' +p355356 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f4f.jpg' +p355357 +sg291136 +g27 +sa(dp355358 +g291134 +S'Standing Man in Sixteenth-Century Costume' +p355359 +sg291137 +S'Giovanni Battista Tiepolo' +p355360 +sg291130 +S'pen and brown ink with brown wash on laid paper' +p355361 +sg291132 +S'unknown date\n' +p355362 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a000704d.jpg' +p355363 +sg291136 +g27 +sa(dp355364 +g291134 +S'Sailboats near a Lighthouse' +p355365 +sg291137 +S'Paul Signac' +p355366 +sg291130 +S'pen and brown ink with brown wash over graphite on laid paper' +p355367 +sg291132 +S'unknown date\n' +p355368 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a000740a.jpg' +p355369 +sg291136 +g27 +sa(dp355370 +g291134 +S'Four Cows' +p355371 +sg291137 +S'Claude Lorrain' +p355372 +sg291130 +S'red and black chalks with gray wash on laid paper' +p355373 +sg291132 +S'unknown date\n' +p355374 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a0007266.jpg' +p355375 +sg291136 +g27 +sa(dp355376 +g291134 +S'Design for a Funeral Monument' +p355377 +sg291137 +S'Fran\xc3\xa7ois Boucher' +p355378 +sg291130 +S'black chalk and stumping with touches of graphite, heightened with white, on brown laid paper' +p355379 +sg291132 +S'c. 1767' +p355380 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00066/a0006668.jpg' +p355381 +sg291136 +g27 +sa(dp355382 +g291134 +S'The Angry Mother' +p355383 +sg291137 +S'Jean-Baptiste Greuze' +p355384 +sg291130 +S'black and gray wash over graphite on laid paper' +p355385 +sg291132 +S'unknown date\n' +p355386 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a000702c.jpg' +p355387 +sg291136 +g27 +sa(dp355388 +g291134 +S'Thomas Peyton' +p355389 +sg291137 +S'James Sharples' +p355390 +sg291130 +S'pastel with graphite and gouache, heightened with white on two overlapping joined sheets of laid paper; top sheet with figure form-cut along profile' +p355391 +sg291132 +S'unknown date\n' +p355392 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f09b.jpg' +p355393 +sg291136 +g27 +sa(dp355394 +g291134 +S'Mary Fox' +p355395 +sg291137 +S'Hugh Douglas Hamilton' +p355396 +sg291130 +S'pastel on laid paper' +p355397 +sg291132 +S'c. 1770' +p355398 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e78.jpg' +p355399 +sg291136 +g27 +sa(dp355400 +g291134 +S'Adolph Friedrich Theodor Gritzner' +p355401 +sg291137 +S'Friedrich Christian Krieger' +p355402 +sg291130 +S'pastel on blue laid paper' +p355403 +sg291132 +S'1809' +p355404 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006eca.jpg' +p355405 +sg291136 +g27 +sa(dp355406 +g291134 +S'Daniel Kemper' +p355407 +sg291137 +S'Artist Information (' +p355408 +sg291130 +S'French, 1770 - 1852' +p355409 +sg291132 +S'(artist after)' +p355410 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000eb/a000ebaa.jpg' +p355411 +sg291136 +g27 +sa(dp355412 +g291134 +S'Mrs. Daniel (Elizabeth Marius) Kemper' +p355413 +sg291137 +S'Artist Information (' +p355414 +sg291130 +S'French, 1770 - 1852' +p355415 +sg291132 +S'(artist after)' +p355416 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000eb/a000eba9.jpg' +p355417 +sg291136 +g27 +sa(dp355418 +g291134 +S'Title Cartouche for a Map of the Chateau and Village of Le Plessis aux Bois' +p355419 +sg291137 +S'Hubert Fran\xc3\xa7ois Gravelot' +p355420 +sg291130 +S'graphite, incised for transfer on laid paper; laid down' +p355421 +sg291132 +S'unknown date\n' +p355422 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a00072c3.jpg' +p355423 +sg291136 +g27 +sa(dp355424 +g291134 +S'A Plinth Surmounted by the Arms of the King of France' +p355425 +sg291137 +S'Hubert Fran\xc3\xa7ois Gravelot' +p355426 +sg291130 +S'graphite, incised for transfer on laid paper; laid down' +p355427 +sg291132 +S'unknown date\n' +p355428 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a0007256.jpg' +p355429 +sg291136 +g27 +sa(dp355430 +g291134 +S'The Parting of Saints Peter and Paul' +p355431 +sg291137 +S'Giovanni Domenico Tiepolo' +p355432 +sg291130 +S'pen and brown ink with brown wash over charcoal on laid paper' +p355433 +sg291132 +S'early 1790s' +p355434 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a0002867.jpg' +p355435 +sg291136 +g27 +sa(dp355436 +g291134 +S'Design for a Morion-Burgonet Helmet' +p355437 +sg291137 +S'Jean Cousin the Elder' +p355438 +sg291130 +S'pen and black ink with gray wash over black chalk on laid paper' +p355439 +sg291132 +S'c. 1545' +p355440 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a000252d.jpg' +p355441 +sg291136 +g27 +sa(dp355442 +g291134 +S'Two Studies of Virgil' +p355443 +sg291137 +S'Jean-Auguste-Dominique Ingres' +p355444 +sg291130 +S'graphite on 5 joined sheets of paper' +p355445 +sg291132 +S'c. 1812 and c. 1825' +p355446 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a000255b.jpg' +p355447 +sg291136 +g27 +sa(dp355448 +g291134 +S'Mendigos que se llevan solos en Bordeaux (Beggars Who Get about on Their Own in Bordeaux)' +p355449 +sg291137 +S'Francisco de Goya' +p355450 +sg291130 +S'black chalk on greenish laid paper' +p355451 +sg291132 +S'1824/1827' +p355452 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a0002549.jpg' +p355453 +sg291136 +g27 +sa(dp355454 +g291134 +S'Eight Apostles' +p355455 +sg291137 +S'Raphael' +p355456 +sg291130 +S'red chalk over stylus underdrawing and traces of leadpoint on laid paper, cut in two pieces and rejoined; laid down' +p355457 +sg291132 +S'c. 1514' +p355458 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026e1.jpg' +p355459 +sg291136 +g27 +sa(dp355460 +g291134 +S'A Marble Horse on the Quirinal Hill [recto]' +p355461 +sg291137 +S'Raphael' +p355462 +sg291130 +S'red chalk and pen and brown ink, with stylus underdrawing and traces of leadpoint on laid paper' +p355463 +sg291132 +S'c. 1513' +p355464 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026e2.jpg' +p355465 +sg291136 +g27 +sa(dp355466 +g291134 +S'Architectural Details and a Soldier [verso]' +p355467 +sg291137 +S'Raphael' +p355468 +sg291130 +S'pen and brown ink on laid paper' +p355469 +sg291132 +S'unknown date\n' +p355470 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f5d.jpg' +p355471 +sg291136 +g27 +sa(dp355472 +g291134 +S'The Virgin Annunciate' +p355473 +sg291137 +S'Albrecht D\xc3\xbcrer' +p355474 +sg291130 +S'pen and brown ink on laid paper' +p355475 +sg291132 +S'1495/1499' +p355476 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a000244b.jpg' +p355477 +sg291136 +g27 +sa(dp355478 +g291134 +S'A Pastoral Landscape with Shepherds Playing a Viola and Panpipes' +p355479 +sg291137 +S'Albrecht D\xc3\xbcrer' +p355480 +sg291130 +S"watercolor and gouache heightened with pen and ink and gold, pasted back onto page 1 of Aldus Manutius' first edition of Theocritus' Idylls and other texts (Venice, February 1496)" +p355481 +sg291132 +S'1496/1497' +p355482 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00059/a0005925.jpg' +p355483 +sg291136 +g27 +sa(dp355484 +g291130 +S', 1495' +p355485 +sg291132 +S'\n' +p355486 +sg291134 +S'Idylls' +p355487 +sg291136 +g27 +sg291137 +S'Theocritus' +p355488 +sa(dp355489 +g291134 +S'The Mystic Marriage of Saint Catherine' +p355490 +sg291137 +S'Sir Anthony van Dyck' +p355491 +sg291130 +S'pen and brown ink with brown and gray washes over black chalk on laid paper' +p355492 +sg291132 +S'c. 1618' +p355493 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a000244d.jpg' +p355494 +sg291136 +g27 +sa(dp355495 +g291134 +S'View of Houtewael near the Sint Anthoniespoort [recto]' +p355496 +sg291137 +S'Rembrandt van Rijn' +p355497 +sg291130 +S'reed pen and brown ink with gray-brown wash and touches of white on laid paper' +p355498 +sg291132 +S'c. 1650' +p355499 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026ed.jpg' +p355500 +sg291136 +g27 +sa(dp355501 +g291134 +S'Figures on the Anthoniesdijk Entering Houtewael [verso]' +p355502 +sg291137 +S'Rembrandt van Rijn' +p355503 +sg291130 +S'reed pen and brown ink on light brown washed laid paper' +p355504 +sg291132 +S'c. 1650' +p355505 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026e8.jpg' +p355506 +sg291136 +g27 +sa(dp355507 +g291134 +S'Studies for Small Bronzes with Classical Motifs' +p355508 +sg291137 +S'Artist Information (' +p355509 +sg291130 +S'(artist)' +p355510 +sg291132 +S'\n' +p355511 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074d9.jpg' +p355512 +sg291136 +g27 +sa(dp355513 +g291134 +S'An Angel Blowing a Trumpet, and Another Holding a Standard' +p355514 +sg291137 +S'Fra Bartolommeo' +p355515 +sg291130 +S'pen and brown ink, squared in red chalk for transfer on laid paper; laid down' +p355516 +sg291132 +S'c. 1500' +p355517 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00059/a0005940.jpg' +p355518 +sg291136 +g27 +sa(dp355519 +g291134 +S'The Hermits Saint Paul and Saint Anthony Receiving Bread from a Dove' +p355520 +sg291137 +S'Domenico Campagnola' +p355521 +sg291130 +S'pen and brown ink over traces of metalpoint on laid paper' +p355522 +sg291132 +S'c. 1530' +p355523 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a0007532.jpg' +p355524 +sg291136 +g27 +sa(dp355525 +g291134 +S'Alexander Consecrating the Altars for the Twelve Olympian Gods' +p355526 +sg291137 +S'Perino del Vaga' +p355527 +sg291130 +S'pen and brown ink with gray wash over black chalk on laid paper; laid down' +p355528 +sg291132 +S'1545/1547' +p355529 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c563.jpg' +p355530 +sg291136 +g27 +sa(dp355531 +g291134 +S'The Resurrection' +p355532 +sg291137 +S'Francesco Salviati' +p355533 +sg291130 +S'pen and brown ink with brown wash heightened with white on laid paper (faint black chalk sketch on verso?)' +p355534 +sg291132 +S'1545/1548' +p355535 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a0007581.jpg' +p355536 +sg291136 +g27 +sa(dp355537 +g291134 +S'The Rape of Ganymede' +p355538 +sg291137 +S"Niccol\xc3\xb2 dell' Abate" +p355539 +sg291130 +S'pen and brown ink with brown wash and watercolor over traces of black chalk, heightened with white on laid paper washed light brown; laid down' +p355540 +sg291132 +S'c. 1545' +p355541 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a000749c.jpg' +p355542 +sg291136 +g27 +sa(dp355543 +g291134 +S'The Presentation of the Virgin in the Temple' +p355544 +sg291137 +S'Artist Information (' +p355545 +sg291130 +S'Italian, probably 1535 - 1612' +p355546 +sg291132 +S'(artist after)' +p355547 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a0007151.jpg' +p355548 +sg291136 +g27 +sa(dp355549 +g291134 +S'The Head of Christ' +p355550 +sg291137 +S'Guido Reni' +p355551 +sg291130 +S'black, red, and white chalks on gray-green laid paper' +p355552 +sg291132 +S'c. 1623' +p355553 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00067/a0006786.jpg' +p355554 +sg291136 +g27 +sa(dp355555 +g291134 +S'Christ Led Captive from a Palace' +p355556 +sg291137 +S'Giuseppe Galli Bibiena' +p355557 +sg291130 +S'pen and brown ink, brown and gray wash (for architecture), pen and black ink (foreground), pen and gray ink (background), both with brown wash (for the figures)' +p355558 +sg291132 +S'1740/1745' +p355559 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a0007449.jpg' +p355560 +sg291136 +g27 +sa(dp355561 +g291134 +S'The Raising of Tabitha' +p355562 +sg291137 +S'Giovanni Domenico Tiepolo' +p355563 +sg291130 +S'pen and brown ink with brown wash over charcoal on laid paper' +p355564 +sg291132 +S'early 1790s' +p355565 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005a72.jpg' +p355566 +sg291136 +g27 +sa(dp355567 +g291134 +S'Punchinellos Hunting Waterfowl' +p355568 +sg291137 +S'Giovanni Domenico Tiepolo' +p355569 +sg291130 +S'pen and brown ink with brown wash over charcoal on laid paper' +p355570 +sg291132 +S'c. 1800' +p355571 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00059/a0005963.jpg' +p355572 +sg291136 +g27 +sa(dp355573 +g291134 +S'An Aedicule with Two Studies of Saint Christopher' +p355574 +sg291137 +S'Austrian 14th Century' +p355575 +sg291130 +S'overall: 15.4 x 21.6 cm (6 1/16 x 8 1/2 in.)' +p355576 +sg291132 +S'\npen and black ink with black wash on vellum' +p355577 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005b/a0005b0b.jpg' +p355578 +sg291136 +g27 +sa(dp355579 +g291134 +S'A Sibyl' +p355580 +sg291137 +S'Swabian 15th Century' +p355581 +sg291130 +S'overall: 20.1 x 14.2 cm (7 15/16 x 5 9/16 in.)' +p355582 +sg291132 +S'\npen and black and gray ink with gray wash on laid paper' +p355583 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00066/a00066ea.jpg' +p355584 +sg291136 +g27 +sa(dp355585 +g291134 +S'Maximilian, Duke of Austria, on Horseback' +p355586 +sg291137 +S'Primary Master of the Strassburg Chronicle' +p355587 +sg291130 +S'pen and black ink over traces of black chalk on laid paper ruled in leadpoint' +p355588 +sg291132 +S'1492' +p355589 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00059/a0005945.jpg' +p355590 +sg291136 +g27 +sa(dp355591 +g291130 +S'pen and ink over traces of chalk and leadpoint on laid paper in bound volume' +p355592 +sg291132 +S'c. 1492' +p355593 +sg291134 +S'The Crucifixion with the Virgin and Saints and the Hungerstein Family' +p355594 +sg291136 +g27 +sg291137 +S'Primary Master of the Strassburg Chronicle' +p355595 +sa(dp355596 +g291134 +S'Head of a Boy' +p355597 +sg291137 +S'Artist Information (' +p355598 +sg291130 +S'German, 1471 - 1528' +p355599 +sg291132 +S'(artist after)' +p355600 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00079/a000796f.jpg' +p355601 +sg291136 +g27 +sa(dp355602 +g291134 +S'Portrait of a Man in a Broad-Brimmed Hat' +p355603 +sg291137 +S'Artist Information (' +p355604 +sg291130 +S'German, 1497/1498 - 1543' +p355605 +sg291132 +S'(artist after)' +p355606 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006a16.jpg' +p355607 +sg291136 +g27 +sa(dp355608 +g291134 +S'The Four Latin Fathers of the Church' +p355609 +sg291137 +S'Valentijn van Orley' +p355610 +sg291130 +S', 1510/1515' +p355611 +sg291132 +S'\n' +p355612 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d27.jpg' +p355613 +sg291136 +g27 +sa(dp355614 +g291134 +S'Acis and Galatea' +p355615 +sg291137 +S'Abraham Bloemaert' +p355616 +sg291130 +S'pen and brown ink with brown wash and traces of white heightening over black chalk on laid paper' +p355617 +sg291132 +S'c. 1590' +p355618 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a0007127.jpg' +p355619 +sg291136 +g27 +sa(dp355620 +g291134 +S'Mountainous Landscape with Castles and Waterfalls' +p355621 +sg291137 +S'Roelandt Savery' +p355622 +sg291130 +S'black, ocher, red, and blue chalks, with traces of white heightening on gray-green laid paper' +p355623 +sg291132 +S'c. 1606' +p355624 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c4/a000c4ac.jpg' +p355625 +sg291136 +g27 +sa(dp355626 +g291134 +S'Winter Games on the Frozen River Ijssel' +p355627 +sg291137 +S'Hendrick Avercamp' +p355628 +sg291130 +S'pen and black and gray ink with watercolor, gouache, and graphite on laid paper; laid down' +p355629 +sg291132 +S'c. 1626' +p355630 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00063/a00063a9.jpg' +p355631 +sg291136 +g27 +sa(dp355632 +g291134 +S'The Parable of the Publican and the Pharisee' +p355633 +sg291137 +S'Artist Information (' +p355634 +sg291130 +S'Dutch, 1606 - 1669' +p355635 +sg291132 +S'(artist)' +p355636 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f0a.jpg' +p355637 +sg291136 +g27 +sa(dp355638 +g291134 +S'Culemborg Castle' +p355639 +sg291137 +S'Roelant Roghman' +p355640 +sg291130 +S'black chalk with gray wash over graphite on laid paper' +p355641 +sg291132 +S'1647' +p355642 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a000709c.jpg' +p355643 +sg291136 +g27 +sa(dp355644 +g291134 +S'Seven Famous Figures from Ancient History' +p355645 +sg291137 +S'Barth\xc3\xa9lemy van Eyck' +p355646 +sg291130 +S'pen and brown ink with watercolor, heightened with white, on vellum' +p355647 +sg291132 +S'c. 1442' +p355648 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a000719d.jpg' +p355649 +sg291136 +g27 +sa(dp355650 +g291134 +S'Portrait of a Noblewoman (Madame de Pellegars?)' +p355651 +sg291137 +S'Fran\xc3\xa7ois Quesnel' +p355652 +sg291130 +S'black and red chalks with stumping, heightened with white chalk, on laid paper' +p355653 +sg291132 +S'1590/1595' +p355654 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00059/a000595e.jpg' +p355655 +sg291136 +g27 +sa(dp355656 +g291134 +S"Cupid Stealing Venus' Floral Crown" +p355657 +sg291137 +S'Antoine Coypel' +p355658 +sg291130 +S'orange-red, white, and black chalk, squared for transfer in black chalk, on blue laid paper; laid down' +p355659 +sg291132 +S'1705/1708' +p355660 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00060/a00060ca.jpg' +p355661 +sg291136 +g27 +sa(dp355662 +g291134 +S"A Performance by the Commedia dell'Arte" +p355663 +sg291137 +S'Claude Gillot' +p355664 +sg291130 +S'pen and brown ink with gray wash on laid paper' +p355665 +sg291132 +S'c. 1710' +p355666 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f37.jpg' +p355667 +sg291136 +g27 +sa(dp355668 +g291134 +S'Studies of Ornament and Architecture' +p355669 +sg291137 +S'Claude Gillot' +p355670 +sg291130 +S'pen and brown ink over traces of graphite on laid paper' +p355671 +sg291132 +S'c. 1710' +p355672 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f7e.jpg' +p355673 +sg291136 +g27 +sa(dp355674 +g291134 +S'The Archery Contest' +p355675 +sg291137 +S'Fran\xc3\xa7ois Boucher' +p355676 +sg291130 +S'black and white chalks on light brown laid paper (formerly blue)' +p355677 +sg291132 +S'1765' +p355678 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f36.jpg' +p355679 +sg291136 +g27 +sa(dp355680 +g291134 +S'Bust of an Old Man' +p355681 +sg291137 +S'Jean-Baptiste Greuze' +p355682 +sg291130 +S'red, black, and white chalks with stumping and erasure on light brown laid paper, with later framing line in dark brown ink' +p355683 +sg291132 +S'probably 1763' +p355684 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000da/a000dad1.jpg' +p355685 +sg291136 +g27 +sa(dp355686 +g291134 +S'Pittacus the Tyrant in War Costume' +p355687 +sg291137 +S'Gustave Moreau' +p355688 +sg291130 +S'graphite with watercolor on wove paper' +p355689 +sg291132 +S'1883' +p355690 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00073/a00073f9.jpg' +p355691 +sg291136 +g27 +sa(dp355692 +g291134 +S'Oriental Horsewoman in a Desolate Mountain Landscape' +p355693 +sg291137 +S'Rodolphe Bresdin' +p355694 +sg291130 +S'pen and black ink and gray wash on wove paper' +p355695 +sg291132 +S'1858' +p355696 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00059/a0005946.jpg' +p355697 +sg291136 +g27 +sa(dp355698 +g291134 +S'Oriental Horseman in a Desolate Mountain Landscape' +p355699 +sg291137 +S'Rodolphe Bresdin' +p355700 +sg291130 +S'pen and black ink and gray wash on wove paper' +p355701 +sg291132 +S'1858' +p355702 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a000711e.jpg' +p355703 +sg291136 +g27 +sa(dp355704 +g291134 +S'Six Standing Men and Ten Battling Nudes' +p355705 +sg291137 +S'Francesco Squarcione' +p355706 +sg291130 +S', 1470s' +p355707 +sg291132 +S'\n' +p355708 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c54a.jpg' +p355709 +sg291136 +g27 +sa(dp355710 +g291134 +S'Standing Youth' +p355711 +sg291137 +S'Florentine 15th Century' +p355712 +sg291130 +S', c. 1475/1500' +p355713 +sg291132 +S'\n' +p355714 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000df/a000dfb4.jpg' +p355715 +sg291136 +g27 +sa(dp355716 +g291134 +S'A Hound Chasing a Hare' +p355717 +sg291137 +S'Benozzo Gozzoli' +p355718 +sg291130 +S'pen and brown ink with traces of red chalk, heightened with white on pink prepared paper' +p355719 +sg291132 +S'c. 1455' +p355720 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005a5b.jpg' +p355721 +sg291136 +g27 +sa(dp355722 +g291134 +S'Three Philosophers' +p355723 +sg291137 +S'Vittore Carpaccio' +p355724 +sg291130 +S'pen and black ink on laid paper' +p355725 +sg291132 +S'unknown date\n' +p355726 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074df.jpg' +p355727 +sg291136 +g27 +sa(dp355728 +g291134 +S'Rustic Houses Built among Ruins' +p355729 +sg291137 +S'Giorgione' +p355730 +sg291130 +S', 1510/1513' +p355731 +sg291132 +S'\n' +p355732 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a000693c.jpg' +p355733 +sg291136 +g27 +sa(dp355734 +g291134 +S'A Village by a Cliff (recto)' +p355735 +sg291137 +S'Giulio Campagnola' +p355736 +sg291130 +S'pen and brown ink on laid paper' +p355737 +sg291132 +S'c. 1513' +p355738 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074fd.jpg' +p355739 +sg291136 +g27 +sa(dp355740 +g291130 +S'pen and brown ink on laid paper' +p355741 +sg291132 +S'c. 1513' +p355742 +sg291134 +S'Head of a Boy (verso)' +p355743 +sg291136 +g27 +sg291137 +S'Giulio Campagnola' +p355744 +sa(dp355745 +g291134 +S'Figures and Legs (verso)' +p355746 +sg291137 +S'Jacopo Tintoretto' +p355747 +sg291130 +S'black chalk on laid paper' +p355748 +sg291132 +S'1575/1580' +p355749 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00074/a00074fe.jpg' +p355750 +sg291136 +g27 +sa(dp355751 +g291134 +S'The Madonna and Child with Saint Anthony Abbot and Saint Francis Introducing a Patron' +p355752 +sg291137 +S'Girolamo Romanino' +p355753 +sg291130 +S'red chalk (wetted for counterproofing) on laid paper; laid down' +p355754 +sg291132 +S'c. 1517' +p355755 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00075/a0007517.jpg' +p355756 +sg291136 +g27 +sa(dp355757 +g291134 +S'Profile of a Man' +p355758 +sg291137 +S'Lombard 16th Century' +p355759 +sg291130 +S'overall: 42.2 x 27.2 cm (16 5/8 x 10 11/16 in.)' +p355760 +sg291132 +S'\nblack chalk with stumping and touches of red chalk heightened with white on laid paper; laid down' +p355761 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004cbc.jpg' +p355762 +sg291136 +g27 +sa(dp355763 +g291134 +S'The Fall of Phaethon' +p355764 +sg291137 +S'Artist Information (' +p355765 +sg291130 +S'(artist)' +p355766 +sg291132 +S'\n' +p355767 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004cb0.jpg' +p355768 +sg291136 +g27 +sa(dp355769 +g291134 +S'Saint Mary Magdalene Lifted by Angels' +p355770 +sg291137 +S'Giovanni Battista Tiepolo' +p355771 +sg291130 +S'pen and brown ink with brown wash over black chalk on laid paper' +p355772 +sg291132 +S'c. 1740' +p355773 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005a5c.jpg' +p355774 +sg291136 +g27 +sa(dp355775 +g291134 +S'Venus and Cupid Discovering the Body of Adonis' +p355776 +sg291137 +S'Giovanni Battista Tiepolo' +p355777 +sg291130 +S'pen and brown ink with brown wash over black chalk on laid paper' +p355778 +sg291132 +S'c. 1740' +p355779 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005a/a0005a5d.jpg' +p355780 +sg291136 +g27 +sa(dp355781 +g291134 +S'The Portico of the Pantheon' +p355782 +sg291137 +S'Giovanni Battista Piranesi' +p355783 +sg291130 +S'pen and dark brown ink with gray and gray-brown wash over red chalk, on three pieces of paper glued together vertically' +p355784 +sg291132 +S'1750s and early 1760s' +p355785 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c561.jpg' +p355786 +sg291136 +g27 +sa(dp355787 +g291134 +S'The Bay of Naples with Mounts Vesuvius and Somma' +p355788 +sg291137 +S'Giovanni Battista Lusieri' +p355789 +sg291130 +S'watercolor with pen and black ink over graphite on laid paper mounted to paperboard' +p355790 +sg291132 +S'1782/1794' +p355791 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005edd.jpg' +p355792 +sg291136 +g27 +sa(dp355793 +g291134 +S'Christ on the Cross [recto]' +p355794 +sg291137 +S'Master of the Coburg Roundels' +p355795 +sg291130 +S'pen and black ink with gray wash on antique laid paper' +p355796 +sg291132 +S'c. 1490' +p355797 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004cbd.jpg' +p355798 +sg291136 +g27 +sa(dp355799 +g291134 +S'Female Figure Kneeling in Prayer [verso]' +p355800 +sg291137 +S'Master of the Coburg Roundels' +p355801 +sg291130 +S'pen and black ink on antique laid paper' +p355802 +sg291132 +S'c. 1490' +p355803 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00079/a0007915.jpg' +p355804 +sg291136 +g27 +sa(dp355805 +g291134 +S'Study of a Knight in Armor, Holding a Halberd' +p355806 +sg291137 +S'Swabian 15th Century' +p355807 +sg291130 +S'pen and brown and black ink, point of the brush and black ink, and gray wash, heightened with white, on brown prepared paper (upper corners made up)' +p355808 +sg291132 +S'c. 1500' +p355809 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004cc2.jpg' +p355810 +sg291136 +g27 +sa(dp355811 +g291134 +S'A Farmstead in a Wood' +p355812 +sg291137 +S'Nuremberg 15th Century' +p355813 +sg291130 +S'pen and brown ink and watercolor with white gouache on 4 joined pieces of parchment' +p355814 +sg291132 +S'1500/1510' +p355815 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004cbe.jpg' +p355816 +sg291136 +g27 +sa(dp355817 +g291134 +S'Female Nude Praying' +p355818 +sg291137 +S'Albrecht D\xc3\xbcrer' +p355819 +sg291130 +S'pen and brown ink on laid paper' +p355820 +sg291132 +S'1497/1500' +p355821 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00079/a000795d.jpg' +p355822 +sg291136 +g27 +sa(dp355823 +g291134 +S'Mary and John before the Man of Sorrows' +p355824 +sg291137 +S'Hans S\xc3\xbcss von Kulmbach' +p355825 +sg291130 +S'pen and brown ink with watercolor on laid paper' +p355826 +sg291132 +S'c. 1514' +p355827 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004cba.jpg' +p355828 +sg291136 +g27 +sa(dp355829 +g291134 +S'Cimon and Pero' +p355830 +sg291137 +S'Sebald Beham' +p355831 +sg291130 +S"pen and black ink with charcoal heightened with white on heavy laid paper; laid down (repair to Pero's ear)" +p355832 +sg291132 +S'1540' +p355833 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004cb1.jpg' +p355834 +sg291136 +g27 +sa(dp355835 +g291134 +S'Christian II of Denmark and Norway' +p355836 +sg291137 +S'Artist Information (' +p355837 +sg291130 +S'German, 1472 - 1553' +p355838 +sg291132 +S'(related artist)' +p355839 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c89.jpg' +p355840 +sg291136 +g27 +sa(dp355841 +g291134 +S'"Always Have the Bedclothes Folded up" [fol. 41 recto]' +p355842 +sg291137 +S'French early 16th Century' +p355843 +sg291130 +S', c. 1512/1515' +p355844 +sg291132 +S'\n' +p355845 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d17.jpg' +p355846 +sg291136 +g27 +sa(dp355847 +g291134 +S'Seated Satyr Leaning Backward [recto]' +p355848 +sg291137 +S'Jean-Baptiste Deshays' +p355849 +sg291130 +S'black chalk with stumping, heightened with white on brown laid paper' +p355850 +sg291132 +S'1758/1765' +p355851 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004cb4.jpg' +p355852 +sg291136 +g27 +sa(dp355853 +g291134 +S'Man Reclining on the Ground and the Corner of a Bed [verso]' +p355854 +sg291137 +S'Jean-Baptiste Deshays' +p355855 +sg291130 +S'counterproof in black and white chalks on brown laid paper' +p355856 +sg291132 +S'1758/1765' +p355857 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f81.jpg' +p355858 +sg291136 +g27 +sa(dp355859 +g291134 +S'Kneeling Man Bound to a Tree' +p355860 +sg291137 +S'French 17th Century' +p355861 +sg291130 +S'overall: 49 x 30.5 cm (19 5/16 x 12 in.)' +p355862 +sg291132 +S'\nred chalk heightened with white chalk on gray-brown laid paper' +p355863 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005f/a0005f85.jpg' +p355864 +sg291136 +g27 +sa(dp355865 +g291134 +S'Self-Portrait' +p355866 +sg291137 +S'Claude Hoin' +p355867 +sg291130 +S'red and black chalks, and pastel with stumping on gray-brown laid paper' +p355868 +sg291132 +S'c. 1780' +p355869 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004cb8.jpg' +p355870 +sg291136 +g27 +sa(dp355871 +g291134 +S'Mademoiselle Mary de Borderieux(?)' +p355872 +sg291137 +S'Jean-Auguste-Dominique Ingres' +p355873 +sg291130 +S'Graphite and watercolor with white highlights' +p355874 +sg291132 +S'1857' +p355875 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c5/a000c54c.jpg' +p355876 +sg291136 +g27 +sa(dp355877 +g291134 +S'The Throne Room at Fontainebleau' +p355878 +sg291137 +S'Thomas Allom' +p355879 +sg291130 +S'watercolor and graphite on gray wove paper' +p355880 +sg291132 +S'c. 1845' +p355881 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c56.jpg' +p355882 +sg291136 +g27 +sa(dp355883 +g291134 +S'A Dance in Spring' +p355884 +sg291137 +S'Sir Lawrence Alma-Tadema' +p355885 +sg291130 +S'graphite on wove paper' +p355886 +sg291132 +S'c. 1910' +p355887 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c55.jpg' +p355888 +sg291136 +g27 +sa(dp355889 +g291134 +S'Cape Town' +p355890 +sg291137 +S'Maxwell Balfour' +p355891 +sg291130 +S'watercolor and gouache on blue wove paper' +p355892 +sg291132 +S'1900' +p355893 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006b78.jpg' +p355894 +sg291136 +g27 +sa(dp355895 +g291134 +S'The Fort, Srinagar' +p355896 +sg291137 +S'Maxwell Balfour' +p355897 +sg291130 +S'watercolor and gouache over graphite on brown wove paper' +p355898 +sg291132 +S'1896' +p355899 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006b81.jpg' +p355900 +sg291136 +g27 +sa(dp355901 +g291130 +S'graphite on tracing paper' +p355902 +sg291132 +S'before 1959' +p355903 +sg291134 +S'Flowers on a Windowsill' +p355904 +sg291136 +g27 +sg291137 +S'Ludwig Bemelmans' +p355905 +sa(dp355906 +g291134 +S'Constantine' +p355907 +sg291137 +S'Hercules Brabazon Brabazon' +p355908 +sg291130 +S'graphite and red and white chalks with white gouache on wove paper' +p355909 +sg291132 +S'c. 1867' +p355910 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bed.jpg' +p355911 +sg291136 +g27 +sa(dp355912 +g291130 +S'brush and black ink over black chalk on thin wove paper' +p355913 +sg291132 +S'1913/1915' +p355914 +sg291134 +S'The Historic Landing' +p355915 +sg291136 +g27 +sg291137 +S'Sir Frank Brangwyn' +p355916 +sa(dp355917 +g291134 +S'A View across the Park, Chatsworth, Derbyshire' +p355918 +sg291137 +S'John Burgess' +p355919 +sg291130 +S'graphite on laid paper' +p355920 +sg291132 +S'unknown date\n' +p355921 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c67.jpg' +p355922 +sg291136 +g27 +sa(dp355923 +g291134 +S'Head of a Woman' +p355924 +sg291137 +S'Sir Edward Coley Burne-Jones' +p355925 +sg291130 +S'graphite on wove paper' +p355926 +sg291132 +S'unknown date\n' +p355927 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c69.jpg' +p355928 +sg291136 +g27 +sa(dp355929 +g291134 +S'A Fragment from an Antique Frieze' +p355930 +sg291137 +S'Sir Edward Coley Burne-Jones' +p355931 +sg291130 +S'black chalk heightened with white gouache on brown wove paper' +p355932 +sg291132 +S'unknown date\n' +p355933 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022ca.jpg' +p355934 +sg291136 +g27 +sa(dp355935 +g291134 +S'A Chandelier with the Virgin Mary Holding the Christ Child' +p355936 +sg291137 +S'Sir Frederick William Burton' +p355937 +sg291130 +S'pen and brown ink with watercolor over graphite, heightened with white, on wove paper' +p355938 +sg291132 +S'unknown date\n' +p355939 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c68.jpg' +p355940 +sg291136 +g27 +sa(dp355941 +g291134 +S'Trouville-sur-Mer' +p355942 +sg291137 +S'Randolph Caldecott' +p355943 +sg291130 +S'graphite on wove paper' +p355944 +sg291132 +S'1879' +p355945 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bf4.jpg' +p355946 +sg291136 +g27 +sa(dp355947 +g291130 +S'pen and brown ink with wash on tracing paper' +p355948 +sg291132 +S'1961' +p355949 +sg291134 +S'Study for "Beast"' +p355950 +sg291136 +g27 +sg291137 +S'Lynn Chadwick' +p355951 +sa(dp355952 +g291130 +S'black ink applied with block or paperboard edge on wove paper' +p355953 +sg291132 +S'1961' +p355954 +sg291134 +S'Study for "Watcher"' +p355955 +sg291136 +g27 +sg291137 +S'Lynn Chadwick' +p355956 +sa(dp355957 +g291134 +S'Antiquities of Dacca' +p355958 +sg291137 +S'George Chinnery' +p355959 +sg291130 +S'pen and brown ink over graphite on laid paper' +p355960 +sg291132 +S'1814/1827' +p355961 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bf5.jpg' +p355962 +sg291136 +g27 +sa(dp355963 +g291134 +S'A Village Hut in India [recto]' +p355964 +sg291137 +S'George Chinnery' +p355965 +sg291130 +S'pen and black ink over graphite on wove paper' +p355966 +sg291132 +S'1814/1824' +p355967 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bf6.jpg' +p355968 +sg291136 +g27 +sa(dp355969 +g291134 +S'A Village Scene in India [verso]' +p355970 +sg291137 +S'George Chinnery' +p355971 +sg291130 +S'pen and black ink over graphite on wove paper' +p355972 +sg291132 +S'1814/1824' +p355973 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bf7.jpg' +p355974 +sg291136 +g27 +sa(dp355975 +g291134 +S'Admiral Sir Edward Pellew' +p355976 +sg291137 +S'George Chinnery' +p355977 +sg291130 +S'graphite on wove paper' +p355978 +sg291132 +S'first quarter 19th century' +p355979 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bf8.jpg' +p355980 +sg291136 +g27 +sa(dp355981 +g291134 +S'Two Chinese Laborers' +p355982 +sg291137 +S'George Chinnery' +p355983 +sg291130 +S'graphite on laid paper' +p355984 +sg291132 +S'c. 1838' +p355985 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bf9.jpg' +p355986 +sg291136 +g27 +sa(dp355987 +g291134 +S'The Waterfall near Schladming in the Steiermark' +p355988 +sg291137 +S'Josef Rebell' +p355989 +sg291130 +S'etching touched with gray wash and white gouache on blue wove paper' +p355990 +sg291132 +S'unknown date\n' +p355991 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d7/a000d79f.jpg' +p355992 +sg291136 +g27 +sa(dp355993 +g291136 +g27 +sg291134 +S'Plate 50: Sacred Heart: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355994 +sg291137 +S'American 20th Century' +p355995 +sa(dp355996 +g291136 +g27 +sg291134 +S'Plate 50: Sacred Heart: From Portfolio "Spanish Colonial Designs of New Mexico"' +p355997 +sg291137 +S'American 20th Century' +p355998 +sa(dp355999 +g291136 +g27 +sg291134 +S'Plate 49: Miscellaneous Design: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356000 +sg291137 +S'American 20th Century' +p356001 +sa(dp356002 +g291136 +g27 +sg291134 +S'Plate 48: Buckskin Design: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356003 +sg291137 +S'American 20th Century' +p356004 +sa(dp356005 +g291136 +g27 +sg291134 +S'Plate 47: Crosses of Tin: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356006 +sg291137 +S'American 20th Century' +p356007 +sa(dp356008 +g291136 +g27 +sg291134 +S'Plate 46: Straw Applique Design: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356009 +sg291137 +S'American 20th Century' +p356010 +sa(dp356011 +g291136 +g27 +sg291134 +S'Plate 44: Painted Chest Design: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356012 +sg291137 +S'American 20th Century' +p356013 +sa(dp356014 +g291136 +g27 +sg291134 +S'Plate 42: Painted Chest Design: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356015 +sg291137 +S'American 20th Century' +p356016 +sa(dp356017 +g291136 +g27 +sg291134 +S'Plate 41: Saint Barbara: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356018 +sg291137 +S'American 20th Century' +p356019 +sa(dp356020 +g291136 +g27 +sg291134 +S'Plate 38: Saint Michael: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356021 +sg291137 +S'American 20th Century' +p356022 +sa(dp356023 +g291136 +g27 +sg291134 +S'Plate 38: Saint Michael: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356024 +sg291137 +S'American 20th Century' +p356025 +sa(dp356026 +g291136 +g27 +sg291134 +S'Plate 37: Saint Anthony: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356027 +sg291137 +S'American 20th Century' +p356028 +sa(dp356029 +g291136 +g27 +sg291134 +S'Plate 36: Saint Roch: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356030 +sg291137 +S'American 20th Century' +p356031 +sa(dp356032 +g291136 +g27 +sg291134 +S'Plate 36: Saint Roch: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356033 +sg291137 +S'American 20th Century' +p356034 +sa(dp356035 +g291136 +g27 +sg291134 +S'Plate 35: Saint Joseph in Wooden Niche: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356036 +sg291137 +S'American 20th Century' +p356037 +sa(dp356038 +g291136 +g27 +sg291134 +S'Plate 31: Our Lady of Guadalupe: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356039 +sg291137 +S'American 20th Century' +p356040 +sa(dp356041 +g291136 +g27 +sg291134 +S'Plate 31: Our Lady of Guadalupe: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356042 +sg291137 +S'American 20th Century' +p356043 +sa(dp356044 +g291136 +g27 +sg291134 +S'Plate 30: Saint Isidore: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356045 +sg291137 +S'American 20th Century' +p356046 +sa(dp356047 +g291136 +g27 +sg291134 +S'Plate 29: Saint Acacius: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356048 +sg291137 +S'American 20th Century' +p356049 +sa(dp356050 +g291136 +g27 +sg291134 +S'Plate 29: Saint Acacius: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356051 +sg291137 +S'American 20th Century' +p356052 +sa(dp356053 +g291136 +g27 +sg291134 +S'Plate 28: The Holy Family: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356054 +sg291137 +S'American 20th Century' +p356055 +sa(dp356056 +g291136 +g27 +sg291134 +S'Plate 27: Christ Crucified: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356057 +sg291137 +S'American 20th Century' +p356058 +sa(dp356059 +g291136 +g27 +sg291134 +S'Plate 27: Christ Crucified: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356060 +sg291137 +S'American 20th Century' +p356061 +sa(dp356062 +g291136 +g27 +sg291134 +S'Plate 26: Christ Crucified, Taos: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356063 +sg291137 +S'American 20th Century' +p356064 +sa(dp356065 +g291136 +g27 +sg291134 +S'Plate 22: Wall Decoration, Laguna: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356066 +sg291137 +S'American 20th Century' +p356067 +sa(dp356068 +g291136 +g27 +sg291134 +S'Plate 20: Saint Veronica: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356069 +sg291137 +S'American 20th Century' +p356070 +sa(dp356071 +g291136 +g27 +sg291134 +S'Plate 20 (Variant): Saint Veronica: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356072 +sg291137 +S'American 20th Century' +p356073 +sa(dp356074 +g291136 +g27 +sg291134 +S'Plate 19: Reading Stand, Chimayo: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356075 +sg291137 +S'American 20th Century' +p356076 +sa(dp356077 +g291136 +g27 +sg291134 +S'Plate 18: Reading Stand, Llano: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356078 +sg291137 +S'American 20th Century' +p356079 +sa(dp356080 +g291136 +g27 +sg291134 +S'Plate 15: The Creation (Lunette): From Portfolio "Spanish Colonial Designs of New Mexico"' +p356081 +sg291137 +S'American 20th Century' +p356082 +sa(dp356083 +g291136 +g27 +sg291134 +S'Plate 14: Main Altarpiece, Chimayo: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356084 +sg291137 +S'American 20th Century' +p356085 +sa(dp356086 +g291136 +g27 +sg291134 +S'Plate 13: Design with Cross: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356087 +sg291137 +S'American 20th Century' +p356088 +sa(dp356089 +g291136 +g27 +sg291134 +S'Plate 13: Design with Cross: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356090 +sg291137 +S'American 20th Century' +p356091 +sa(dp356092 +g291136 +g27 +sg291134 +S'Plate 10: Holy Ghost (Lunette): From Portfolio "Spanish Colonial Designs of New Mexico"' +p356093 +sg291137 +S'American 20th Century' +p356094 +sa(dp356095 +g291136 +g27 +sg291134 +S'Plate 6: Chapel Altarpiece, Santa Cruz: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356096 +sg291137 +S'American 20th Century' +p356097 +sa(dp356098 +g291136 +g27 +sg291134 +S'Plate 5: Main Altarpiece, Santa Cruz: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356099 +sg291137 +S'American 20th Century' +p356100 +sa(dp356101 +g291136 +g27 +sg291134 +S'Plate 4: Christ in the Sepulchre: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356102 +sg291137 +S'American 20th Century' +p356103 +sa(dp356104 +g291136 +g27 +sg291134 +S'Plate 3: Pecos Book of Visitations: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356105 +sg291137 +S'American 20th Century' +p356106 +sa(dp356107 +g291136 +g27 +sg291134 +S'Plate 3: Pecos Book of Visitations: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356108 +sg291137 +S'American 20th Century' +p356109 +sa(dp356110 +g291136 +g27 +sg291134 +S'Plate 3: Pecos Book of Visitations: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356111 +sg291137 +S'American 20th Century' +p356112 +sa(dp356113 +g291136 +g27 +sg291134 +S'Plate 2: Jemez Book of Baptisms: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356114 +sg291137 +S'American 20th Century' +p356115 +sa(dp356116 +g291136 +g27 +sg291134 +S'Plate 1: Jemez Book of Marriages: From Portfolio "Spanish Colonial Designs of New Mexico"' +p356117 +sg291137 +S'American 20th Century' +p356118 +sa(dp356119 +g291134 +S'Angelica and Medoro' +p356120 +sg291137 +S'Giovanni Battista Cipriani' +p356121 +sg291130 +S'graphite on laid paper' +p356122 +sg291132 +S'unknown date\n' +p356123 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006db9.jpg' +p356124 +sg291136 +g27 +sa(dp356125 +g291134 +S'Studies of a Classical Figure' +p356126 +sg291137 +S'Giovanni Battista Cipriani' +p356127 +sg291130 +S'black chalk heightened with white on light brown prepared paper' +p356128 +sg291132 +S'unknown date\n' +p356129 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e44.jpg' +p356130 +sg291136 +g27 +sa(dp356131 +g291134 +S'Figure Studies [recto]' +p356132 +sg291137 +S'Giovanni Battista Cipriani' +p356133 +sg291130 +S'pen and black ink with gray wash on laid paper' +p356134 +sg291132 +S'unknown date\n' +p356135 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a000711c.jpg' +p356136 +sg291136 +g27 +sa(dp356137 +g291134 +S'Figure Studies [verso]' +p356138 +sg291137 +S'Giovanni Battista Cipriani' +p356139 +sg291130 +S'pen and black ink and graphite on laid paper' +p356140 +sg291132 +S'unknown date\n' +p356141 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a00070ef.jpg' +p356142 +sg291136 +g27 +sa(dp356143 +g291134 +S'Bearded Head after the Antique' +p356144 +sg291137 +S'Giovanni Battista Cipriani' +p356145 +sg291130 +S'gray wash heightened with white on brown wove paper' +p356146 +sg291132 +S'unknown date\n' +p356147 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e75.jpg' +p356148 +sg291136 +g27 +sa(dp356149 +g291134 +S'A Turk [recto]' +p356150 +sg291137 +S'Giovanni Battista Cipriani' +p356151 +sg291130 +S'graphite on laid paper' +p356152 +sg291132 +S'unknown date\n' +p356153 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f8b.jpg' +p356154 +sg291136 +g27 +sa(dp356155 +g291134 +S'Reclining Woman [verso]' +p356156 +sg291137 +S'Giovanni Battista Cipriani' +p356157 +sg291130 +S'graphite on laid paper' +p356158 +sg291132 +S'unknown date\n' +p356159 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f5b.jpg' +p356160 +sg291136 +g27 +sa(dp356161 +g291134 +S'Woman Reading to a Child' +p356162 +sg291137 +S'Charles West Cope' +p356163 +sg291130 +S'pen and brown ink with brown wash on wove paper' +p356164 +sg291132 +S'unknown date\n' +p356165 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bfa.jpg' +p356166 +sg291136 +g27 +sa(dp356167 +g291134 +S'The Prince Regent as a Hussar' +p356168 +sg291137 +S'John Singleton Copley' +p356169 +sg291130 +S'black chalk heightened with white and squared in red on blue paper' +p356170 +sg291132 +S'1804/1809' +p356171 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000eb/a000eb99.jpg' +p356172 +sg291136 +g27 +sa(dp356173 +g291134 +S'Wooded Landscape' +p356174 +sg291137 +S'John Sell Cotman' +p356175 +sg291130 +S'black chalk heightened with white on brown wove paper' +p356176 +sg291132 +S'probably 1841' +p356177 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c7e.jpg' +p356178 +sg291136 +g27 +sa(dp356179 +g291134 +S"The Devil's Tower" +p356180 +sg291137 +S'John Sell Cotman' +p356181 +sg291130 +S'black chalk heightened with white on blue wove paper' +p356182 +sg291132 +S'1833/1834' +p356183 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c02.jpg' +p356184 +sg291136 +g27 +sa(dp356185 +g291134 +S'Chatsworth [recto]' +p356186 +sg291137 +S'David Cox' +p356187 +sg291130 +S'graphite on wove paper' +p356188 +sg291132 +S'possibly 1831' +p356189 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c79.jpg' +p356190 +sg291136 +g27 +sa(dp356191 +g291134 +S'Trees [verso]' +p356192 +sg291137 +S'David Cox' +p356193 +sg291130 +S'graphite on wove paper' +p356194 +sg291132 +S'possibly 1831' +p356195 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c7a.jpg' +p356196 +sg291136 +g27 +sa(dp356197 +g291134 +S'Hillside and Trees' +p356198 +sg291137 +S'David Cox' +p356199 +sg291130 +S'graphite with brown wash on wove paper' +p356200 +sg291132 +S'unknown date\n' +p356201 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c7b.jpg' +p356202 +sg291136 +g27 +sa(dp356203 +g291134 +S'Llanberis' +p356204 +sg291137 +S'David Cox' +p356205 +sg291130 +S'black chalk with brown wash heightened with white on wove paper' +p356206 +sg291132 +S'unknown date\n' +p356207 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bfb.jpg' +p356208 +sg291136 +g27 +sa(dp356209 +g291134 +S'A Cart with Two Horses near a Windmill' +p356210 +sg291137 +S'David Cox' +p356211 +sg291130 +S'black chalk heightened with white gouache on wove paper' +p356212 +sg291132 +S'unknown date\n' +p356213 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bfc.jpg' +p356214 +sg291136 +g27 +sa(dp356215 +g291134 +S'Kensington Gardens [recto]' +p356216 +sg291137 +S'Walter Crane' +p356217 +sg291130 +S'graphite with blue wash on illustration board' +p356218 +sg291132 +S'1863' +p356219 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c77.jpg' +p356220 +sg291136 +g27 +sa(dp356221 +g291134 +S'Sketch of a Couple Seated with Cloud Studies [verso]' +p356222 +sg291137 +S'Walter Crane' +p356223 +sg291130 +S'graphite and pen and brown ink on illustration board' +p356224 +sg291132 +S'1863' +p356225 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c78.jpg' +p356226 +sg291136 +g27 +sa(dp356227 +g291134 +S'Design for a Shakespeare Memorial' +p356228 +sg291137 +S'Walter Crane' +p356229 +sg291130 +S'pen and black ink with gray wash heightened with white on brown wove paper' +p356230 +sg291132 +S'unknown date\n' +p356231 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a000696c.jpg' +p356232 +sg291136 +g27 +sa(dp356233 +g291134 +S'A Rocky Coast by Moonlight' +p356234 +sg291137 +S'Artist Information (' +p356235 +sg291130 +S'(artist)' +p356236 +sg291132 +S'\n' +p356237 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cd4.jpg' +p356238 +sg291136 +g27 +sa(dp356239 +g291134 +S'Figure Studies' +p356240 +sg291137 +S'George Dance II' +p356241 +sg291130 +S'graphite on laid paper' +p356242 +sg291132 +S'unknown date\n' +p356243 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f00.jpg' +p356244 +sg291136 +g27 +sa(dp356245 +g291134 +S'A View in India' +p356246 +sg291137 +S'William Daniell' +p356247 +sg291130 +S'brown wash over graphite on laid paper' +p356248 +sg291132 +S'1788' +p356249 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c92.jpg' +p356250 +sg291136 +g27 +sa(dp356251 +g291134 +S'Sunset over the Valley' +p356252 +sg291137 +S'Anthony Devis' +p356253 +sg291130 +S'gray and brown washes over graphite on wove paper' +p356254 +sg291132 +S'unknown date\n' +p356255 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f30.jpg' +p356256 +sg291136 +g27 +sa(dp356257 +g291134 +S'Zahara' +p356258 +sg291137 +S'Anthony Devis' +p356259 +sg291130 +S'pen and gray ink with watercolor on laid paper' +p356260 +sg291132 +S'unknown date\n' +p356261 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a0006961.jpg' +p356262 +sg291136 +g27 +sa(dp356263 +g291134 +S'Wooded Landscape' +p356264 +sg291137 +S'Anthony Devis' +p356265 +sg291130 +S'pen and gray ink with gray wash over graphite on wove paper' +p356266 +sg291132 +S'unknown date\n' +p356267 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f5e.jpg' +p356268 +sg291136 +g27 +sa(dp356269 +g291134 +S'A View near Lowther' +p356270 +sg291137 +S'Peter De Wint' +p356271 +sg291130 +S'brush and black ink with black and white chalks over graphite on two joined sheets of gray wove paper' +p356272 +sg291132 +S'unknown date\n' +p356273 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a000696a.jpg' +p356274 +sg291136 +g27 +sa(dp356275 +g291134 +S'"--And mist or glim, I\'d sail with him, if he would sail with me--"' +p356276 +sg291137 +S'George Du Maurier' +p356277 +sg291130 +S'pen and black ink over graphite with scratching out on wove paper' +p356278 +sg291132 +S'c. 1865' +p356279 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c93.jpg' +p356280 +sg291136 +g27 +sa(dp356281 +g291134 +S'The Ilyssus!' +p356282 +sg291137 +S'George Du Maurier' +p356283 +sg291130 +S'pen and brown ink over graphite with scratching-out on wove paper' +p356284 +sg291132 +S'1880' +p356285 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c96.jpg' +p356286 +sg291136 +g27 +sa(dp356287 +g291134 +S'Two Children in the Snow' +p356288 +sg291137 +S'George Du Maurier' +p356289 +sg291130 +S'pen and black ink over graphite with scratching-out on wove paper' +p356290 +sg291132 +S'unknown date\n' +p356291 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00024/a0002446.jpg' +p356292 +sg291136 +g27 +sa(dp356293 +g291134 +S'Seated Youth with a Staff' +p356294 +sg291137 +S'William Etty' +p356295 +sg291130 +S'graphite with brown wash heightened with white on brown wove paper' +p356296 +sg291132 +S'c. 1815' +p356297 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c99.jpg' +p356298 +sg291136 +g27 +sa(dp356299 +g291134 +S'The Horse of Selene from the Elgin Marbles [recto]' +p356300 +sg291137 +S'William Etty' +p356301 +sg291130 +S'pen and brown ink on wove paper' +p356302 +sg291132 +S'after 1807' +p356303 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c0d.jpg' +p356304 +sg291136 +g27 +sa(dp356305 +g291134 +S'Study of a Horse [verso]' +p356306 +sg291137 +S'William Etty' +p356307 +sg291130 +S'graphite on wove paper' +p356308 +sg291132 +S'after 1807' +p356309 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c0e.jpg' +p356310 +sg291136 +g27 +sa(dp356311 +g291134 +S'Four Seated Figures' +p356312 +sg291137 +S'John Flaxman' +p356313 +sg291130 +S'pen and black ink and graphite on laid paper' +p356314 +sg291132 +S'unknown date\n' +p356315 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d8b.jpg' +p356316 +sg291136 +g27 +sa(dp356317 +g291134 +S'Lake in a Mountainous Landscape' +p356318 +sg291137 +S'Myles Birket Foster' +p356319 +sg291130 +S'graphite on wove paper' +p356320 +sg291132 +S'unknown date\n' +p356321 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c11.jpg' +p356322 +sg291136 +g27 +sa(dp356323 +g291134 +S'Girl with a Bow' +p356324 +sg291137 +S'William Edward Frost' +p356325 +sg291130 +S'watercolor with pen and brown ink on wove paper' +p356326 +sg291132 +S'unknown date\n' +p356327 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c12.jpg' +p356328 +sg291136 +g27 +sa(dp356329 +g291134 +S'The Yew at Clifton' +p356330 +sg291137 +S'Thales Fielding' +p356331 +sg291130 +S'graphite on wove paper' +p356332 +sg291132 +S'unknown date\n' +p356333 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c97.jpg' +p356334 +sg291136 +g27 +sa(dp356335 +g291134 +S'Landscape with a Distant Mountain Range' +p356336 +sg291137 +S'John Gendall' +p356337 +sg291130 +S'watercolor over graphite on wove paper' +p356338 +sg291132 +S'unknown date\n' +p356339 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c13.jpg' +p356340 +sg291136 +g27 +sa(dp356341 +g291134 +S'Mirror' +p356342 +sg291137 +S'Eric Gill' +p356343 +sg291130 +S'graphite and orange crayon on laid paper' +p356344 +sg291132 +S'1927' +p356345 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006a/a0006ad3.jpg' +p356346 +sg291136 +g27 +sa(dp356347 +g291134 +S'Four Oval Compositions' +p356348 +sg291137 +S'Sawrey Gilpin' +p356349 +sg291130 +S'pen and brown ink with gray and yellow washes over graphite on laid paper' +p356350 +sg291132 +S'c. 1775' +p356351 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e16.jpg' +p356352 +sg291136 +g27 +sa(dp356353 +g291134 +S'A Picturesque Landscape' +p356354 +sg291137 +S'William Gilpin' +p356355 +sg291130 +S'brush and black ink with gray washes over graphite on light ocher prepared laid paper' +p356356 +sg291132 +S'unknown date\n' +p356357 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a000728f.jpg' +p356358 +sg291136 +g27 +sa(dp356359 +g291134 +S'A Mountain Valley with a Waterfall' +p356360 +sg291137 +S'John Glover' +p356361 +sg291130 +S'gray wash on wove paper' +p356362 +sg291132 +S'c. 1795' +p356363 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c14.jpg' +p356364 +sg291136 +g27 +sa(dp356365 +g291134 +S'An Oak Tree' +p356366 +sg291137 +S'John Glover' +p356367 +sg291130 +S'pen and black ink with gray wash over graphite on wove paper' +p356368 +sg291132 +S'c. 1795' +p356369 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c15.jpg' +p356370 +sg291136 +g27 +sa(dp356371 +g291134 +S'The River at Llangollen' +p356372 +sg291137 +S'John Glover' +p356373 +sg291130 +S'graphite on wove paper' +p356374 +sg291132 +S'c. 1795' +p356375 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c98.jpg' +p356376 +sg291136 +g27 +sa(dp356377 +g291134 +S'High Street at the Manor House, Marylebone' +p356378 +sg291137 +S'Samuel Hieronymus Grimm' +p356379 +sg291130 +S'pen and black ink with gray wash over graphite on laid paper' +p356380 +sg291132 +S'1772' +p356381 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006ea3.jpg' +p356382 +sg291136 +g27 +sa(dp356383 +g291134 +S'A Peasant Woman' +p356384 +sg291137 +S'Samuel Hieronymus Grimm' +p356385 +sg291130 +S'pen and black ink with gray wash over graphite on laid paper' +p356386 +sg291132 +S'c. 1770' +p356387 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dbc.jpg' +p356388 +sg291136 +g27 +sa(dp356389 +g291130 +S'graphite on wove paper' +p356390 +sg291132 +S'unknown date\n' +p356391 +sg291134 +S'Vase of Flowers' +p356392 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356393 +sa(dp356394 +g291130 +S'graphite on wove paper' +p356395 +sg291132 +S'c. 1936' +p356396 +sg291134 +S'Nancy Hale Bowers Seated' +p356397 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356398 +sa(dp356399 +g291130 +S'charcoal and black chalk on wove paper' +p356400 +sg291132 +S'1959' +p356401 +sg291134 +S"William B. O'Neal" +p356402 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356403 +sa(dp356404 +g291130 +S'sketchbook with 58 drawings in graphite on wove paper' +p356405 +sg291132 +S'1932/1936' +p356406 +sg291134 +S'Hale Sketchbook' +p356407 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356408 +sa(dp356409 +g291130 +S'graphite on wove paper' +p356410 +sg291132 +S'1932/1936' +p356411 +sg291134 +S'Two Studies of a Seated Woman' +p356412 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356413 +sa(dp356414 +g291130 +S'graphite on wove paper' +p356415 +sg291132 +S'1932/1936' +p356416 +sg291134 +S'Head of a Woman' +p356417 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356418 +sa(dp356419 +g291130 +S'graphite on wove paper' +p356420 +sg291132 +S'1932/1936' +p356421 +sg291134 +S'Seated Woman Facing Left' +p356422 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356423 +sa(dp356424 +g291130 +S'graphite on wove paper' +p356425 +sg291132 +S'1932/1936' +p356426 +sg291134 +S'Seated Woman Facing Left' +p356427 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356428 +sa(dp356429 +g291130 +S'graphite on wove paper' +p356430 +sg291132 +S'1932/1936' +p356431 +sg291134 +S'Portrait of a Woman' +p356432 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356433 +sa(dp356434 +g291130 +S'graphite on wove paper' +p356435 +sg291132 +S'1932/1936' +p356436 +sg291134 +S'Woman with Hands Behind Head' +p356437 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356438 +sa(dp356439 +g291130 +S'graphite on wove paper' +p356440 +sg291132 +S'1932' +p356441 +sg291134 +S'Nancy' +p356442 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356443 +sa(dp356444 +g291130 +S'graphite on wove paper' +p356445 +sg291132 +S'1932/1936' +p356446 +sg291134 +S'Various Studies of Hands and Faces' +p356447 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356448 +sa(dp356449 +g291130 +S'graphite on wove paper' +p356450 +sg291132 +S'1932/1936' +p356451 +sg291134 +S'Untitled' +p356452 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356453 +sa(dp356454 +g291130 +S'graphite on wove paper' +p356455 +sg291132 +S'1932/1936' +p356456 +sg291134 +S'Landscape with Trees' +p356457 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356458 +sa(dp356459 +g291130 +S'graphite on wove paper' +p356460 +sg291132 +S'1932/1936' +p356461 +sg291134 +S'Studies of a Child' +p356462 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356463 +sa(dp356464 +g291130 +S'graphite on wove paper' +p356465 +sg291132 +S'1932/1936' +p356466 +sg291134 +S'Untitled' +p356467 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356468 +sa(dp356469 +g291130 +S'graphite on wove paper' +p356470 +sg291132 +S'1932/1936' +p356471 +sg291134 +S'Landscape with Trees and Distant Hill' +p356472 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356473 +sa(dp356474 +g291130 +S'graphite on wove paper' +p356475 +sg291132 +S'1932/1936' +p356476 +sg291134 +S'Various Studies of a Child' +p356477 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356478 +sa(dp356479 +g291130 +S'graphite on wove paper' +p356480 +sg291132 +S'1932/1936' +p356481 +sg291134 +S'Backyard with Car and Clothesline' +p356482 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356483 +sa(dp356484 +g291130 +S'graphite on wove paper' +p356485 +sg291132 +S'1932/1936' +p356486 +sg291134 +S'View from Mezzanine' +p356487 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356488 +sa(dp356489 +g291130 +S'graphite on wove paper' +p356490 +sg291132 +S'1932/1936' +p356491 +sg291134 +S'Study of an Interior with a Statue' +p356492 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356493 +sa(dp356494 +g291130 +S'graphite on wove paper' +p356495 +sg291132 +S'1932/1936' +p356496 +sg291134 +S'Interior with Mezzanine' +p356497 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356498 +sa(dp356499 +g291130 +S'graphite on wove paper' +p356500 +sg291132 +S'1932/1936' +p356501 +sg291134 +S'Landscape' +p356502 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356503 +sa(dp356504 +g291130 +S'graphite on wove paper' +p356505 +sg291132 +S'1932/1936' +p356506 +sg291134 +S'Untitled' +p356507 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356508 +sa(dp356509 +g291130 +S'graphite on wove paper' +p356510 +sg291132 +S'1932/1936' +p356511 +sg291134 +S'Untitled' +p356512 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356513 +sa(dp356514 +g291130 +S'graphite on wove paper' +p356515 +sg291132 +S'1932/1936' +p356516 +sg291134 +S'Untitled' +p356517 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356518 +sa(dp356519 +g291130 +S'graphite on wove paper' +p356520 +sg291132 +S'1932/1936' +p356521 +sg291134 +S'Landscape View from a Large Window' +p356522 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356523 +sa(dp356524 +g291130 +S'graphite on wove paper' +p356525 +sg291132 +S'1932/1936' +p356526 +sg291134 +S'Two Studies of an Older Woman' +p356527 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356528 +sa(dp356529 +g291130 +S'graphite on wove paper' +p356530 +sg291132 +S'1935' +p356531 +sg291134 +S'Landscape with Large Tree' +p356532 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356533 +sa(dp356534 +g291130 +S'graphite on wove paper' +p356535 +sg291132 +S'1935' +p356536 +sg291134 +S'Landscape with Fence' +p356537 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356538 +sa(dp356539 +g291130 +S'graphite on wove paper' +p356540 +sg291132 +S'1932/1936' +p356541 +sg291134 +S'Study of a Tree and Flowers' +p356542 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356543 +sa(dp356544 +g291130 +S'graphite on wove paper' +p356545 +sg291132 +S'1932/1936' +p356546 +sg291134 +S'Studies of a Tree' +p356547 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356548 +sa(dp356549 +g291130 +S'graphite on wove paper' +p356550 +sg291132 +S'1932/1936' +p356551 +sg291134 +S'Untitled' +p356552 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356553 +sa(dp356554 +g291130 +S'graphite on wove paper' +p356555 +sg291132 +S'1932/1936' +p356556 +sg291134 +S'Two Studies of the Head of a Man' +p356557 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356558 +sa(dp356559 +g291130 +S'graphite on wove paper' +p356560 +sg291132 +S'1932/1936' +p356561 +sg291134 +S'Study of a Church Facade' +p356562 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356563 +sa(dp356564 +g291130 +S'graphite on wove paper' +p356565 +sg291132 +S'1932/1936' +p356566 +sg291134 +S'A Church Among Trees' +p356567 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356568 +sa(dp356569 +g291130 +S'graphite on wove paper' +p356570 +sg291132 +S'1932/1936' +p356571 +sg291134 +S'View of a Church Steeple' +p356572 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356573 +sa(dp356574 +g291130 +S'graphite on wove paper' +p356575 +sg291132 +S'1932/1936' +p356576 +sg291134 +S'Distant View of a Church' +p356577 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356578 +sa(dp356579 +g291130 +S'graphite on wove paper' +p356580 +sg291132 +S'1932/1936' +p356581 +sg291134 +S'Landscape' +p356582 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356583 +sa(dp356584 +g291130 +S'graphite on wove paper' +p356585 +sg291132 +S'1932/1936' +p356586 +sg291134 +S'Landscape Seen from a Large Window' +p356587 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356588 +sa(dp356589 +g291130 +S'graphite on wove paper' +p356590 +sg291132 +S'1932/1936' +p356591 +sg291134 +S'Untitled' +p356592 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356593 +sa(dp356594 +g291130 +S'graphite on wove paper' +p356595 +sg291132 +S'1932/1936' +p356596 +sg291134 +S'Landscape Study' +p356597 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356598 +sa(dp356599 +g291130 +S'graphite on wove paper' +p356600 +sg291132 +S'1936' +p356601 +sg291134 +S'Window with Curtains and Kettle' +p356602 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356603 +sa(dp356604 +g291130 +S'graphite on wove paper' +p356605 +sg291132 +S'1936' +p356606 +sg291134 +S"Mrs. Sherman's House" +p356607 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356608 +sa(dp356609 +g291130 +S'graphite on wove paper' +p356610 +sg291132 +S'1932/1936' +p356611 +sg291134 +S'Study of Tree Branches' +p356612 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356613 +sa(dp356614 +g291130 +S'graphite on wove paper' +p356615 +sg291132 +S'1932/1936' +p356616 +sg291134 +S'Interior' +p356617 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356618 +sa(dp356619 +g291130 +S'graphite on wove paper' +p356620 +sg291132 +S'1932/1936' +p356621 +sg291134 +S"Two Studies of a Woman's Head" +p356622 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356623 +sa(dp356624 +g291130 +S'graphite on wove paper' +p356625 +sg291132 +S'1932/1936' +p356626 +sg291134 +S'Still Life' +p356627 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356628 +sa(dp356629 +g291130 +S'graphite on wove paper' +p356630 +sg291132 +S'1932/1936' +p356631 +sg291134 +S'Studies of Female Heads' +p356632 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356633 +sa(dp356634 +g291130 +S'graphite on wove paper' +p356635 +sg291132 +S'1932/1936' +p356636 +sg291134 +S'Young Girl with Braids, Seated in an Armchair' +p356637 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356638 +sa(dp356639 +g291130 +S'graphite on wove paper' +p356640 +sg291132 +S'1932/1936' +p356641 +sg291134 +S'Studies of a Seated Young Girl with Braids' +p356642 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356643 +sa(dp356644 +g291130 +S'graphite on wove paper' +p356645 +sg291132 +S'1932/1936' +p356646 +sg291134 +S'Study of a Plant' +p356647 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356648 +sa(dp356649 +g291130 +S'graphite on wove paper' +p356650 +sg291132 +S'1932/1936' +p356651 +sg291134 +S'Interior with Mezzanine' +p356652 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356653 +sa(dp356654 +g291130 +S'graphite on wove paper' +p356655 +sg291132 +S'1932/1936' +p356656 +sg291134 +S'Study of a Tall Tree' +p356657 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356658 +sa(dp356659 +g291130 +S'graphite on wove paper' +p356660 +sg291132 +S'1932/1936' +p356661 +sg291134 +S'Landscape Study' +p356662 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356663 +sa(dp356664 +g291130 +S'graphite on wove paper' +p356665 +sg291132 +S'1932/1936' +p356666 +sg291134 +S'Study of a Bust on a Pedestal' +p356667 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356668 +sa(dp356669 +g291130 +S'graphite on wove paper' +p356670 +sg291132 +S'1932/1936' +p356671 +sg291134 +S'Studies of a Woman with a Stole' +p356672 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356673 +sa(dp356674 +g291130 +S'graphite on wove paper' +p356675 +sg291132 +S'1932/1936' +p356676 +sg291134 +S'House with Clothesline' +p356677 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356678 +sa(dp356679 +g291130 +S'graphite on wove paper' +p356680 +sg291132 +S'1932/1936' +p356681 +sg291134 +S'Seated Woman with Hands on Lap' +p356682 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356683 +sa(dp356684 +g291130 +S'graphite on wove paper' +p356685 +sg291132 +S'1932/1936' +p356686 +sg291134 +S'Seated Woman Looking Right' +p356687 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356688 +sa(dp356689 +g291130 +S'graphite on wove paper' +p356690 +sg291132 +S'1932/1936' +p356691 +sg291134 +S'Woman in an Armchair with Hands in Lap' +p356692 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356693 +sa(dp356694 +g291130 +S'graphite on wove paper' +p356695 +sg291132 +S'1932/1936' +p356696 +sg291134 +S'Woman in an Armchair Facing Right' +p356697 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356698 +sa(dp356699 +g291130 +S'charcoal on Strathmore wove paper' +p356700 +sg291132 +S'unknown date\n' +p356701 +sg291134 +S'Study of a Girl' +p356702 +sg291136 +g27 +sg291137 +S'Lilian Westcott Hale' +p356703 +sa(dp356704 +g291134 +S'Study of a Hand [recto]' +p356705 +sg291137 +S'Benjamin Robert Haydon' +p356706 +sg291130 +S'charcoal on brown wove paper' +p356707 +sg291132 +S'unknown date\n' +p356708 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ca3.jpg' +p356709 +sg291136 +g27 +sa(dp356710 +g291134 +S'Study of a Foot [verso]' +p356711 +sg291137 +S'Benjamin Robert Haydon' +p356712 +sg291130 +S'charcoal on brown wove paper' +p356713 +sg291132 +S'unknown date\n' +p356714 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ca4.jpg' +p356715 +sg291136 +g27 +sa(dp356716 +g291134 +S'Study of a Right Hand [recto]' +p356717 +sg291137 +S'Benjamin Robert Haydon' +p356718 +sg291130 +S'charcoal heightened with white on laid paper' +p356719 +sg291132 +S'unknown date\n' +p356720 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ca1.jpg' +p356721 +sg291136 +g27 +sa(dp356722 +g291134 +S'Study of the Statue of Diana in the Vatican [verso]' +p356723 +sg291137 +S'Benjamin Robert Haydon' +p356724 +sg291130 +S'charcoal on laid paper' +p356725 +sg291132 +S'unknown date\n' +p356726 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ca2.jpg' +p356727 +sg291136 +g27 +sa(dp356728 +g291134 +S'Xenophon and the Greeks Sighting the Sea [recto]' +p356729 +sg291137 +S'Benjamin Robert Haydon' +p356730 +sg291130 +S'pen and brown ink on wove paper' +p356731 +sg291132 +S'unknown date\n' +p356732 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c17.jpg' +p356733 +sg291136 +g27 +sa(dp356734 +g291134 +S'Xenophon and the Greeks Sighting the Sea [verso]' +p356735 +sg291137 +S'Benjamin Robert Haydon' +p356736 +sg291130 +S'pen and brown ink on wove paper' +p356737 +sg291132 +S'unknown date\n' +p356738 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c18.jpg' +p356739 +sg291136 +g27 +sa(dp356740 +g291134 +S'Bandits on the Lookout' +p356741 +sg291137 +S'Sir George Hayter' +p356742 +sg291130 +S'pen and brown ink with brown wash, heightened with white, on brown wove paper' +p356743 +sg291132 +S'1839' +p356744 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ca5.jpg' +p356745 +sg291136 +g27 +sa(dp356746 +g291134 +S'Freshwater Bay, Isle of Wight' +p356747 +sg291137 +S'Sir George Hayter' +p356748 +sg291130 +S'watercolor, gouache, and graphite with red and white chalks on blue wove paper' +p356749 +sg291132 +S'1839' +p356750 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ca6.jpg' +p356751 +sg291136 +g27 +sa(dp356752 +g291134 +S'The Laying Out of Christ' +p356753 +sg291137 +S'Sir George Hayter' +p356754 +sg291130 +S'pen and black ink with gray wash on blue laid paper' +p356755 +sg291132 +S'unknown date\n' +p356756 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c20.jpg' +p356757 +sg291136 +g27 +sa(dp356758 +g291134 +S'A Magician' +p356759 +sg291137 +S'Sir George Hayter' +p356760 +sg291130 +S'pen and brush and brown ink over graphite on gray wove paper' +p356761 +sg291132 +S'c. 1826' +p356762 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ca8.jpg' +p356763 +sg291136 +g27 +sa(dp356764 +g291134 +S'A Maiden Embraced by a Knight in Armor' +p356765 +sg291137 +S'Sir George Hayter' +p356766 +sg291130 +S'pen and brown ink with brown wash, heightened with white, on brown wove paper' +p356767 +sg291132 +S'1838' +p356768 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ca7.jpg' +p356769 +sg291136 +g27 +sa(dp356770 +g291134 +S'Study for "Queen Victoria Opening Parliament"' +p356771 +sg291137 +S'Sir George Hayter' +p356772 +sg291130 +S'graphite on wove paper' +p356773 +sg291132 +S'1838' +p356774 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c21.jpg' +p356775 +sg291136 +g27 +sa(dp356776 +g291134 +S'Avenue of Trees' +p356777 +sg291137 +S'John Hayter' +p356778 +sg291130 +S'graphite with blue and gray washes on wove paper' +p356779 +sg291132 +S'unknown date\n' +p356780 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005dfd.jpg' +p356781 +sg291136 +g27 +sa(dp356782 +g291134 +S'Head of a Man' +p356783 +sg291137 +S'Master of the Giants' +p356784 +sg291130 +S'pen and brown ink on brown wove paper' +p356785 +sg291132 +S'c. 1779' +p356786 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006fd8.jpg' +p356787 +sg291136 +g27 +sa(dp356788 +g291134 +S'Lady Holding Her Cloak from Behind' +p356789 +sg291137 +S'William Hoare' +p356790 +sg291130 +S'black and red chalks on laid paper' +p356791 +sg291132 +S'1760s' +p356792 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a00070f4.jpg' +p356793 +sg291136 +g27 +sa(dp356794 +g291134 +S'The Grounds at Castle Howard' +p356795 +sg291137 +S'George Howard, 9th earl of Carlisle' +p356796 +sg291130 +S'watercolor touched with gum arabic over graphite on paperboard' +p356797 +sg291132 +S'unknown date\n' +p356798 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c9c.jpg' +p356799 +sg291136 +g27 +sa(dp356800 +g291134 +S'A Tree in Full-Leaf' +p356801 +sg291137 +S'William Henry Hunt' +p356802 +sg291130 +S'graphite on wove paper' +p356803 +sg291132 +S'unknown date\n' +p356804 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c1a.jpg' +p356805 +sg291136 +g27 +sa(dp356806 +g291134 +S'Studies of a Male Figure' +p356807 +sg291137 +S'William Henry Hunt' +p356808 +sg291130 +S'graphite on wove paper' +p356809 +sg291132 +S'unknown date\n' +p356810 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c1b.jpg' +p356811 +sg291136 +g27 +sa(dp356812 +g291134 +S"The Artist's Father, William Hunt" +p356813 +sg291137 +S'William Holman Hunt' +p356814 +sg291130 +S'pen and brown ink with brown wash on wove paper' +p356815 +sg291132 +S'before 1856' +p356816 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c1c.jpg' +p356817 +sg291136 +g27 +sa(dp356818 +g291134 +S'Young Gentlemen in Conversation' +p356819 +sg291137 +S'John Jackson' +p356820 +sg291130 +S'pen and brown ink and graphite on wove paper' +p356821 +sg291132 +S'unknown date\n' +p356822 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c1d.jpg' +p356823 +sg291136 +g27 +sa(dp356824 +g291130 +S'pen and black ink with gray washes on wove paper' +p356825 +sg291132 +S'1930s' +p356826 +sg291134 +S'The Bathers' +p356827 +sg291136 +g27 +sg291137 +S'Augustus John' +p356828 +sa(dp356829 +g291134 +S'A Woman Reclining on a Cushion' +p356830 +sg291137 +S'George Jones' +p356831 +sg291130 +S'pen and brown ink over graphite on laid paper' +p356832 +sg291132 +S'unknown date\n' +p356833 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c1e.jpg' +p356834 +sg291136 +g27 +sa(dp356835 +g291134 +S'Seated Man' +p356836 +sg291137 +S'George Jones' +p356837 +sg291130 +S'pen and brown ink over graphite on brown wove paper' +p356838 +sg291132 +S'unknown date\n' +p356839 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c1f.jpg' +p356840 +sg291136 +g27 +sa(dp356841 +g291134 +S'"Oh, Tax \'em by all means!"' +p356842 +sg291137 +S'Charles Samuel Keene' +p356843 +sg291130 +S'pen and brown ink and brown and gray washes with white gouache over graphite on wove paper' +p356844 +sg291132 +S'1888' +p356845 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c23.jpg' +p356846 +sg291136 +g27 +sa(dp356847 +g291134 +S'A Station Buffet' +p356848 +sg291137 +S'Charles Samuel Keene' +p356849 +sg291130 +S'pen and brown ink over graphite touched with white gouache on brown wove paper' +p356850 +sg291132 +S'unknown date\n' +p356851 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c24.jpg' +p356852 +sg291136 +g27 +sa(dp356853 +g291134 +S'Seated Man' +p356854 +sg291137 +S'Charles Samuel Keene' +p356855 +sg291130 +S'graphite touched with white gouache on wove paper' +p356856 +sg291132 +S'unknown date\n' +p356857 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c25.jpg' +p356858 +sg291136 +g27 +sa(dp356859 +g291134 +S'Landscape with a Tree-Lined Lane' +p356860 +sg291137 +S'Henry Eddowes Keene' +p356861 +sg291130 +S'pen and brown ink on wove paper' +p356862 +sg291132 +S'1858' +p356863 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c26.jpg' +p356864 +sg291136 +g27 +sa(dp356865 +g291134 +S'Hever Castle' +p356866 +sg291137 +S'Henry Eddowes Keene' +p356867 +sg291130 +S'pen and brown ink over graphite on wove paper' +p356868 +sg291132 +S'unknown date\n' +p356869 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c27.jpg' +p356870 +sg291136 +g27 +sa(dp356871 +g291134 +S'Warwick Castle from the Avon' +p356872 +sg291137 +S'John Baverstock Knight' +p356873 +sg291130 +S'pen and brown ink with brown and gray washes over graphite on wove paper' +p356874 +sg291132 +S'1837' +p356875 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c28.jpg' +p356876 +sg291136 +g27 +sa(dp356877 +g291134 +S'The Barn' +p356878 +sg291137 +S'Sir Edwin Landseer' +p356879 +sg291130 +S'pen and brown ink over graphite on two joined sheets of wove paper' +p356880 +sg291132 +S'unknown date\n' +p356881 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c29.jpg' +p356882 +sg291136 +g27 +sa(dp356883 +g291134 +S"Capo Sant'Angelo, Amalfi" +p356884 +sg291137 +S'Edward Lear' +p356885 +sg291130 +S'pen and brown ink over graphite on wove paper' +p356886 +sg291132 +S'c. 1885' +p356887 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a0006974.jpg' +p356888 +sg291136 +g27 +sa(dp356889 +g291134 +S'Mountainous View from Antrodoco' +p356890 +sg291137 +S'Edward Lear' +p356891 +sg291130 +S'black chalk heightened with white gouache on blue wove paper' +p356892 +sg291132 +S'1845' +p356893 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c2a.jpg' +p356894 +sg291136 +g27 +sa(dp356895 +g291134 +S'Mount Kinchinjunga (All Things Fair)' +p356896 +sg291137 +S'Edward Lear' +p356897 +sg291130 +S'gray wash and brush on wove paper' +p356898 +sg291132 +S'1874' +p356899 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c2b.jpg' +p356900 +sg291136 +g27 +sa(dp356901 +g291134 +S'Umbrella Pine and Other Studies' +p356902 +sg291137 +S'Edward Lear' +p356903 +sg291130 +S'graphite on wove paper' +p356904 +sg291132 +S'1839/1845' +p356905 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cac.jpg' +p356906 +sg291136 +g27 +sa(dp356907 +g291134 +S'Sketches in Italy [recto]' +p356908 +sg291137 +S'Edward Lear' +p356909 +sg291130 +S'black chalk and graphite with gray and white washes on light brown wove paper' +p356910 +sg291132 +S'1839/1845' +p356911 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cae.jpg' +p356912 +sg291136 +g27 +sa(dp356913 +g291134 +S'A Sailing Ship [verso]' +p356914 +sg291137 +S'Edward Lear' +p356915 +sg291130 +S'black chalk on light brown wove paper' +p356916 +sg291132 +S'1839/1845' +p356917 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006caf.jpg' +p356918 +sg291136 +g27 +sa(dp356919 +g291134 +S'Ruined Temple on a Hill' +p356920 +sg291137 +S'Edward Lear' +p356921 +sg291130 +S'pen and brown ink over graphite on blue wove paper' +p356922 +sg291132 +S'1864' +p356923 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cad.jpg' +p356924 +sg291136 +g27 +sa(dp356925 +g291134 +S'Villa Pamphili' +p356926 +sg291137 +S'Edward Lear' +p356927 +sg291130 +S'graphite on brown wove paper' +p356928 +sg291132 +S'1840' +p356929 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ca9.jpg' +p356930 +sg291136 +g27 +sa(dp356931 +g291134 +S'Wady Mokatteb' +p356932 +sg291137 +S'Edward Lear' +p356933 +sg291130 +S'pen and brown ink over graphite on wove paper' +p356934 +sg291132 +S'1849' +p356935 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006caa.jpg' +p356936 +sg291136 +g27 +sa(dp356937 +g291134 +S'Figure Studies' +p356938 +sg291137 +S'Frederic, Lord Leighton' +p356939 +sg291130 +S'black chalk heightened with white on brown wove paper' +p356940 +sg291132 +S'unknown date\n' +p356941 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cb7.jpg' +p356942 +sg291136 +g27 +sa(dp356943 +g291134 +S'Study for "Greek Girl Dancing"' +p356944 +sg291137 +S'Frederic, Lord Leighton' +p356945 +sg291130 +S'black chalk heightened with white on blue wove paper' +p356946 +sg291132 +S'c. 1867' +p356947 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c2c.jpg' +p356948 +sg291136 +g27 +sa(dp356949 +g291134 +S'Study for "The Wise and Foolish Virgins"' +p356950 +sg291137 +S'Frederic, Lord Leighton' +p356951 +sg291130 +S'black chalk heightened with white on blue wove paper' +p356952 +sg291132 +S'unknown date\n' +p356953 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cbd.jpg' +p356954 +sg291136 +g27 +sa(dp356955 +g291134 +S'A Ruined Castle on a Lake' +p356956 +sg291137 +S'William Leighton Leitch' +p356957 +sg291130 +S'watercolor over graphite on wove paper' +p356958 +sg291132 +S'1881' +p356959 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00025/a00025ea.jpg' +p356960 +sg291136 +g27 +sa(dp356961 +g291134 +S"Bayswater, Clearing the Ground between Queen's Road and Porchester Terrace" +p356962 +sg291137 +S'John Linnell' +p356963 +sg291130 +S'black chalk heightened with white on brown wove paper' +p356964 +sg291132 +S'1830' +p356965 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a0006973.jpg' +p356966 +sg291136 +g27 +sa(dp356967 +g291134 +S'A Beech Wood' +p356968 +sg291137 +S'John Linnell' +p356969 +sg291130 +S'graphite heightened with white chalk on wove paper' +p356970 +sg291132 +S'1815' +p356971 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cbc.jpg' +p356972 +sg291136 +g27 +sa(dp356973 +g291134 +S'Figure Studies' +p356974 +sg291137 +S'John Linnell' +p356975 +sg291130 +S'graphite on brown wove paper' +p356976 +sg291132 +S'unknown date\n' +p356977 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c2d.jpg' +p356978 +sg291136 +g27 +sa(dp356979 +g291134 +S'Hampstead Heath' +p356980 +sg291137 +S'John Linnell' +p356981 +sg291130 +S'graphite on wove paper' +p356982 +sg291132 +S'unknown date\n' +p356983 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c2e.jpg' +p356984 +sg291136 +g27 +sa(dp356985 +g291134 +S'The Harvest Field' +p356986 +sg291137 +S'John Linnell' +p356987 +sg291130 +S'black chalk heightened with white on brown wove paper' +p356988 +sg291132 +S'c. 1860' +p356989 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cb4.jpg' +p356990 +sg291136 +g27 +sa(dp356991 +g291134 +S'Hens and Chicks' +p356992 +sg291137 +S'John Linnell' +p356993 +sg291130 +S'pen and brown ink on laid paper' +p356994 +sg291132 +S'unknown date\n' +p356995 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c2f.jpg' +p356996 +sg291136 +g27 +sa(dp356997 +g291134 +S'Landscape in Hertfordshire' +p356998 +sg291137 +S'John Linnell' +p356999 +sg291130 +S'black chalk heightened with white gouache on blue wove paper' +p357000 +sg291132 +S'1814' +p357001 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cbb.jpg' +p357002 +sg291136 +g27 +sa(dp357003 +g291134 +S'Tan y Bwlch' +p357004 +sg291137 +S'John Linnell' +p357005 +sg291130 +S'graphite on wove paper' +p357006 +sg291132 +S'unknown date\n' +p357007 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c30.jpg' +p357008 +sg291136 +g27 +sa(dp357009 +g291134 +S'A Woman Resting' +p357010 +sg291137 +S'John Linnell' +p357011 +sg291130 +S'graphite on laid paper' +p357012 +sg291132 +S'unknown date\n' +p357013 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c31.jpg' +p357014 +sg291136 +g27 +sa(dp357015 +g291134 +S'Swiss Landscape with a Village in the Distance' +p357016 +sg291137 +S'Sarah Grace Lushington' +p357017 +sg291130 +S'watercolor over graphite on wove paper' +p357018 +sg291132 +S'unknown date\n' +p357019 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cb2.jpg' +p357020 +sg291136 +g27 +sa(dp357021 +g291134 +S'Lovers under a Tree' +p357022 +sg291137 +S'John Everett Millais' +p357023 +sg291130 +S'graphite on wove paper' +p357024 +sg291132 +S'1840' +p357025 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c33.jpg' +p357026 +sg291136 +g27 +sa(dp357027 +g291134 +S'Study of a Pottery Jug [recto]' +p357028 +sg291137 +S'John Everett Millais' +p357029 +sg291130 +S'watercolor over graphite on wove paper' +p357030 +sg291132 +S'c. 1842' +p357031 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c34.jpg' +p357032 +sg291136 +g27 +sa(dp357033 +g291130 +S'graphite on wove paper' +p357034 +sg291132 +S'c. 1842' +p357035 +sg291134 +S'Study of a Man with a Top Hat [verso]' +p357036 +sg291136 +g27 +sg291137 +S'John Everett Millais' +p357037 +sa(dp357038 +g291134 +S'The Mid-Day Meal' +p357039 +sg291137 +S'George Morland' +p357040 +sg291130 +S'graphite with colored chalks on wove paper' +p357041 +sg291132 +S'1790s' +p357042 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a0007036.jpg' +p357043 +sg291136 +g27 +sa(dp357044 +g291134 +S'Designs for Decorative Vases' +p357045 +sg291137 +S'John Hamilton Mortimer' +p357046 +sg291130 +S'black chalk on laid paper' +p357047 +sg291132 +S'unknown date\n' +p357048 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006da3.jpg' +p357049 +sg291136 +g27 +sa(dp357050 +g291134 +S'Study for "The Rustic Dancers"' +p357051 +sg291137 +S'John Hamilton Mortimer' +p357052 +sg291130 +S'pen and brown ink over graphite on laid paper' +p357053 +sg291132 +S'c. 1770/1774' +p357054 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a0007004.jpg' +p357055 +sg291136 +g27 +sa(dp357056 +g291134 +S'Mucius Scaevolo [recto]' +p357057 +sg291137 +S'John Hamilton Mortimer' +p357058 +sg291130 +S'pen and black ink on laid paper' +p357059 +sg291132 +S'unknown date\n' +p357060 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a00070c2.jpg' +p357061 +sg291136 +g27 +sa(dp357062 +g291134 +S'Figure Studies [verso]' +p357063 +sg291137 +S'John Hamilton Mortimer' +p357064 +sg291130 +S'pen and black and brown inks over black chalk on laid paper' +p357065 +sg291132 +S'unknown date\n' +p357066 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a0007095.jpg' +p357067 +sg291136 +g27 +sa(dp357068 +g291134 +S'Figure Studies' +p357069 +sg291137 +S'William Mulready' +p357070 +sg291130 +S'pen and brown ink on wove paper' +p357071 +sg291132 +S'1832' +p357072 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cb5.jpg' +p357073 +sg291136 +g27 +sa(dp357074 +g291130 +S'watercolor over graphite on wove paper' +p357075 +sg291132 +S'unknown date\n' +p357076 +sg291134 +S'Valley in Somerset' +p357077 +sg291136 +g27 +sg291137 +S'John Northcote Nash' +p357078 +sa(dp357079 +g291130 +S'watercolor over graphite on laid paper' +p357080 +sg291132 +S'c. 1970' +p357081 +sg291134 +S'Cliff End, Weybourne [recto]' +p357082 +sg291136 +g27 +sg291137 +S'John Northcote Nash' +p357083 +sa(dp357084 +g291130 +S'watercolor over graphite, squared in graphite, on laid paper' +p357085 +sg291132 +S'c. 1970' +p357086 +sg291134 +S'Cliff End, Weybourne [verso]' +p357087 +sg291136 +g27 +sg291137 +S'John Northcote Nash' +p357088 +sa(dp357089 +g291134 +S'Study of a Helmet, Breastplate, and Rapier' +p357090 +sg291137 +S'Joseph Nash' +p357091 +sg291130 +S'graphite on wove paper' +p357092 +sg291132 +S'unknown date\n' +p357093 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c36.jpg' +p357094 +sg291136 +g27 +sa(dp357095 +g291134 +S'Wooded Landscape' +p357096 +sg291137 +S'Dr. Thomas Monro' +p357097 +sg291130 +S'black chalk with gray wash on wove paper' +p357098 +sg291132 +S'unknown date\n' +p357099 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c35.jpg' +p357100 +sg291136 +g27 +sa(dp357101 +g291130 +S'pen and brush and black ink with colored chalks over graphite on wove paper' +p357102 +sg291132 +S'c. 1933/1934' +p357103 +sg291134 +S'Coastline with a Lighthouse' +p357104 +sg291136 +g27 +sg291137 +S'Paul Nash' +p357105 +sa(dp357106 +g291134 +S'A Cathedral Nave' +p357107 +sg291137 +S'Arthur Frederick Payne' +p357108 +sg291130 +S'charcoal and black chalk on wove paper' +p357109 +sg291132 +S'unknown date\n' +p357110 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cbe.jpg' +p357111 +sg291136 +g27 +sa(dp357112 +g291134 +S'An Ecclesiastic Building in Flames with Demons Above' +p357113 +sg291137 +S'Arthur Frederick Payne' +p357114 +sg291130 +S'watercolor over graphite on wove paper' +p357115 +sg291132 +S'unknown date\n' +p357116 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c37.jpg' +p357117 +sg291136 +g27 +sa(dp357118 +g291134 +S'Landscape with a Castle and Bridge' +p357119 +sg291137 +S'William Payne' +p357120 +sg291130 +S'watercolor (with gum arabic coating) over graphite on wove paper' +p357121 +sg291132 +S'unknown date\n' +p357122 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c38.jpg' +p357123 +sg291136 +g27 +sa(dp357124 +g291134 +S'Minerva' +p357125 +sg291137 +S'Sir Edward John Poynter' +p357126 +sg291130 +S'black and white chalks on red-brown wove paper' +p357127 +sg291132 +S'1886' +p357128 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00026/a00026d9.jpg' +p357129 +sg291136 +g27 +sa(dp357130 +g291134 +S'Honeysuckle' +p357131 +sg291137 +S'Sir Edward John Poynter' +p357132 +sg291130 +S'green-gray colored pencil on wove paper' +p357133 +sg291132 +S'1878' +p357134 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c39.jpg' +p357135 +sg291136 +g27 +sa(dp357136 +g291134 +S'Study of Two Young Women [recto]' +p357137 +sg291137 +S'Valentine Cameron Prinsep' +p357138 +sg291130 +S'graphite on wove paper' +p357139 +sg291132 +S'unknown date\n' +p357140 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cc9.jpg' +p357141 +sg291136 +g27 +sa(dp357142 +g291134 +S'Figure Studies [verso]' +p357143 +sg291137 +S'Valentine Cameron Prinsep' +p357144 +sg291130 +S'graphite on wove paper' +p357145 +sg291132 +S'unknown date\n' +p357146 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cca.jpg' +p357147 +sg291136 +g27 +sa(dp357148 +g291134 +S'Continental Street Scene' +p357149 +sg291137 +S'John Skinner Prout' +p357150 +sg291130 +S'graphite with pen and brown and blue inks on wove paper' +p357151 +sg291132 +S'1860/1870' +p357152 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cc4.jpg' +p357153 +sg291136 +g27 +sa(dp357154 +g291134 +S'A Fountain and a Facade in Austria' +p357155 +sg291137 +S'John Skinner Prout' +p357156 +sg291130 +S'watercolor over graphite on wove paper' +p357157 +sg291132 +S'unknown date\n' +p357158 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c3a.jpg' +p357159 +sg291136 +g27 +sa(dp357160 +g291134 +S'A Gothic Arch' +p357161 +sg291137 +S'John Skinner Prout' +p357162 +sg291130 +S'pen and brown ink over graphite on wove paper' +p357163 +sg291132 +S'unknown date\n' +p357164 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cc5.jpg' +p357165 +sg291136 +g27 +sa(dp357166 +g291134 +S'A Carriage' +p357167 +sg291137 +S'Samuel Prout' +p357168 +sg291130 +S'graphite with wash on wove paper' +p357169 +sg291132 +S'unknown date\n' +p357170 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c3b.jpg' +p357171 +sg291136 +g27 +sa(dp357172 +g291134 +S'Scene at Jumi\xc3\xa8ges' +p357173 +sg291137 +S'Samuel Prout' +p357174 +sg291130 +S'pen and black ink with gray washes, watercolor, and touches of white heightening on wove paper' +p357175 +sg291132 +S'1820/1830' +p357176 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cc6.jpg' +p357177 +sg291136 +g27 +sa(dp357178 +g291134 +S'An Outdoor Market' +p357179 +sg291137 +S'Samuel Prout' +p357180 +sg291130 +S'graphite with watercolor on wove paper' +p357181 +sg291132 +S'unknown date\n' +p357182 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c3c.jpg' +p357183 +sg291136 +g27 +sa(dp357184 +g291134 +S'Lord George Villiers' +p357185 +sg291137 +S'Allan Ramsay' +p357186 +sg291130 +S'black chalk heightened with white on blue wove paper' +p357187 +sg291132 +S'unknown date\n' +p357188 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e37.jpg' +p357189 +sg291136 +g27 +sa(dp357190 +g291134 +S'Study of a Seated Man [recto]' +p357191 +sg291137 +S'Allan Ramsay' +p357192 +sg291130 +S'black chalk heightened with white on blue laid paper' +p357193 +sg291132 +S'unknown date\n' +p357194 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f4e.jpg' +p357195 +sg291136 +g27 +sa(dp357196 +g291134 +S'Hand Studies [verso]' +p357197 +sg291137 +S'Allan Ramsay' +p357198 +sg291130 +S'black chalk heightened with white on blue laid paper' +p357199 +sg291132 +S'unknown date\n' +p357200 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006f/a0006f1f.jpg' +p357201 +sg291136 +g27 +sa(dp357202 +g291134 +S'Studies of Sheep in Pasture' +p357203 +sg291137 +S'George Richmond' +p357204 +sg291130 +S'pen and brown ink on wove paper' +p357205 +sg291132 +S'c. 1837/1839' +p357206 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c3d.jpg' +p357207 +sg291136 +g27 +sa(dp357208 +g291134 +S'Studies for "The Wise and Foolish Virgins" [recto]' +p357209 +sg291137 +S'Sir William Blake Richmond' +p357210 +sg291130 +S'red chalk and red chalk counterproof on wove paper' +p357211 +sg291132 +S'unknown date\n' +p357212 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ccc.jpg' +p357213 +sg291136 +g27 +sa(dp357214 +g291134 +S'Studies for "The Wise and Foolish Virgins" [recto]' +p357215 +sg291137 +S'Sir William Blake Richmond' +p357216 +sg291130 +S'red chalk counterproof on laid paper' +p357217 +sg291132 +S'unknown date\n' +p357218 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ccd.jpg' +p357219 +sg291136 +g27 +sa(dp357220 +g291134 +S'Trees at Box Hill' +p357221 +sg291137 +S'Sir William Blake Richmond' +p357222 +sg291130 +S'black chalk and graphite heightened with white on blue wove paper' +p357223 +sg291132 +S'1860' +p357224 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c3e.jpg' +p357225 +sg291136 +g27 +sa(dp357226 +g291134 +S'The Blindfolding of Cupid' +p357227 +sg291137 +S'George Romney' +p357228 +sg291130 +S'pen and brown ink on laid paper' +p357229 +sg291132 +S'after 1797' +p357230 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a00072a3.jpg' +p357231 +sg291136 +g27 +sa(dp357232 +g291134 +S'An Elegant Lady in Classical Dress [recto]' +p357233 +sg291137 +S'George Romney' +p357234 +sg291130 +S'pen and brown ink on laid paper' +p357235 +sg291132 +S'1780s' +p357236 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006e/a0006e06.jpg' +p357237 +sg291136 +g27 +sa(dp357238 +g291134 +S'Figure Studies [verso]' +p357239 +sg291137 +S'George Romney' +p357240 +sg291130 +S'pen and brown ink on laid paper' +p357241 +sg291132 +S'1780s' +p357242 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dd9.jpg' +p357243 +sg291136 +g27 +sa(dp357244 +g291134 +S'A Study of Miranda for "The Tempest"' +p357245 +sg291137 +S'George Romney' +p357246 +sg291130 +S'pen and black ink with gray wash over graphite on laid paper' +p357247 +sg291132 +S'c. 1786' +p357248 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a0006968.jpg' +p357249 +sg291136 +g27 +sa(dp357250 +g291134 +S'The Infant Shakespeare Nursed by Comedy and Tragedy' +p357251 +sg291137 +S'George Romney' +p357252 +sg291130 +S'pen and brown ink on laid paper' +p357253 +sg291132 +S'1783' +p357254 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a0007262.jpg' +p357255 +sg291136 +g27 +sa(dp357256 +g291134 +S'Study for "The Deluge"' +p357257 +sg291137 +S'George Romney' +p357258 +sg291130 +S'graphite on wove paper' +p357259 +sg291132 +S'1790s' +p357260 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a00071c1.jpg' +p357261 +sg291136 +g27 +sa(dp357262 +g291134 +S'Tivoli' +p357263 +sg291137 +S'David Roberts' +p357264 +sg291130 +S'graphite and watercolor on wove paper' +p357265 +sg291132 +S'1854' +p357266 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006ccf.jpg' +p357267 +sg291136 +g27 +sa(dp357268 +g291130 +S'red chalk heightened with white on brown wove paper' +p357269 +sg291132 +S'1918' +p357270 +sg291134 +S'Andr\xc3\xa9 Gide' +p357271 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p357272 +sa(dp357273 +g291130 +S'black chalk on wove paper' +p357274 +sg291132 +S'1912' +p357275 +sg291134 +S'Sir Rabindranath Tagore' +p357276 +sg291136 +g27 +sg291137 +S'Sir William Rothenstein' +p357277 +sa(dp357278 +g291134 +S'The Foot Bath (Drying Out)' +p357279 +sg291137 +S'Thomas Rowlandson' +p357280 +sg291130 +S'pen and brown ink with watercolor on wove paper' +p357281 +sg291132 +S'unknown date\n' +p357282 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00070/a00070d2.jpg' +p357283 +sg291136 +g27 +sa(dp357284 +g291134 +S'View from the Inn at Lynton' +p357285 +sg291137 +S'Thomas Rowlandson' +p357286 +sg291130 +S'pen and gray ink with watercolor on wove paper' +p357287 +sg291132 +S'probably 1811' +p357288 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a0007201.jpg' +p357289 +sg291136 +g27 +sa(dp357290 +g291134 +S'Ornamental Study with Acanthus Motif for "The Stones of Venice"' +p357291 +sg291137 +S'John Ruskin' +p357292 +sg291130 +S'pen and brown ink with watercolor and graphite on wove paper' +p357293 +sg291132 +S'1849' +p357294 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c3f.jpg' +p357295 +sg291136 +g27 +sa(dp357296 +g291134 +S'Girl with a Bonnet at Work [recto]' +p357297 +sg291137 +S'Paul Sandby' +p357298 +sg291130 +S'pen and black ink with gray wash over graphite on laid paper' +p357299 +sg291132 +S'unknown date\n' +p357300 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a0007230.jpg' +p357301 +sg291136 +g27 +sa(dp357302 +g291134 +S'Girl with a Bonnet Reclining [verso]' +p357303 +sg291137 +S'Paul Sandby' +p357304 +sg291130 +S'pen and black ink over graphite on laid paper' +p357305 +sg291132 +S'unknown date\n' +p357306 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a00071f9.jpg' +p357307 +sg291136 +g27 +sa(dp357308 +g291134 +S'A Hound Jumping' +p357309 +sg291137 +S'James Seymour' +p357310 +sg291130 +S'graphite on wove paper' +p357311 +sg291132 +S'c. 1743' +p357312 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a000729b.jpg' +p357313 +sg291136 +g27 +sa(dp357314 +g291134 +S'Huntsmen with Hounds and a Crouching Hare [recto]' +p357315 +sg291137 +S'James Seymour' +p357316 +sg291130 +S'graphite on laid paper' +p357317 +sg291132 +S'unknown date\n' +p357318 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006dab.jpg' +p357319 +sg291136 +g27 +sa(dp357320 +g291134 +S'Mounted Horsemen [verso]' +p357321 +sg291137 +S'James Seymour' +p357322 +sg291130 +S'graphite on laid paper' +p357323 +sg291132 +S'unknown date\n' +p357324 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006d/a0006d7b.jpg' +p357325 +sg291136 +g27 +sa(dp357326 +g291134 +S'Study of Atlas' +p357327 +sg291137 +S'Charles Haslewood Shannon' +p357328 +sg291130 +S', unknown date' +p357329 +sg291132 +S'\n' +p357330 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bb6.jpg' +p357331 +sg291136 +g27 +sa(dp357332 +g291134 +S'Studies of Men and Women in Medieval Dress' +p357333 +sg291137 +S'Byam Shaw' +p357334 +sg291130 +S'graphite on wove paper' +p357335 +sg291132 +S'unknown date\n' +p357336 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006b37.jpg' +p357337 +sg291136 +g27 +sa(dp357338 +g291134 +S'The Postcard' +p357339 +sg291137 +S'Walter Richard Sickert' +p357340 +sg291130 +S'pen and black ink squared in red ink on blue wove paper' +p357341 +sg291132 +S'unknown date\n' +p357342 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bbb.jpg' +p357343 +sg291136 +g27 +sa(dp357344 +g291134 +S"An Allegory of Britain's Mercantile Power" +p357345 +sg291137 +S'Robert Smirke' +p357346 +sg291130 +S'pen and black and brown inks with gray wash over graphite, squared in graphite, on laid paper' +p357347 +sg291132 +S'unknown date\n' +p357348 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c40.jpg' +p357349 +sg291136 +g27 +sa(dp357350 +g291134 +S"An Allegory of Britain's Naval Might" +p357351 +sg291137 +S'Robert Smirke' +p357352 +sg291130 +S'pen and black and brown inks with gray wash over graphite, squared in graphite, on laid paper' +p357353 +sg291132 +S'unknown date\n' +p357354 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c41.jpg' +p357355 +sg291136 +g27 +sa(dp357356 +g291130 +S'inked edge of block and inked brayer with brown oil stick on wove paper' +p357357 +sg291132 +S'1936' +p357358 +sg291134 +S'Standing Female Nude' +p357359 +sg291136 +g27 +sg291137 +S'Charles William Smith' +p357360 +sa(dp357361 +g291134 +S'King Solomon' +p357362 +sg291137 +S'Simeon Solomon' +p357363 +sg291130 +S'egg tempera (?) with touches of varnish on paper mounted to board' +p357364 +sg291132 +S'1872 or 1874' +p357365 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00028/a0002856.jpg' +p357366 +sg291136 +g27 +sa(dp357367 +g291134 +S'H\xc3\xb4tel de Ville, Place des Terreaux, Lyons' +p357368 +sg291137 +S'Robert Smirke' +p357369 +sg291130 +S'pen and brown ink with gray wash over graphite on wove paper' +p357370 +sg291132 +S'1845' +p357371 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c42.jpg' +p357372 +sg291136 +g27 +sa(dp357373 +g291134 +S'Patriotic Fund' +p357374 +sg291137 +S'Robert Smirke' +p357375 +sg291130 +S'pen and brown ink with gray wash heightened with white on laid paper' +p357376 +sg291132 +S'unknown date\n' +p357377 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c43.jpg' +p357378 +sg291136 +g27 +sa(dp357379 +g291134 +S'Peter and His Children Visited by Three Flying Figures' +p357380 +sg291137 +S'Thomas Stothard' +p357381 +sg291130 +S'pen and gray ink with gray wash over graphite on wove paper' +p357382 +sg291132 +S'c. 1783' +p357383 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c44.jpg' +p357384 +sg291136 +g27 +sa(dp357385 +g291134 +S'Design for a Book Illustration and Related Studies [recto]' +p357386 +sg291137 +S'Thomas Stothard' +p357387 +sg291130 +S'pen and gray and brown ink with gray wash over graphite on wove paper' +p357388 +sg291132 +S'unknown date\n' +p357389 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e23.jpg' +p357390 +sg291136 +g27 +sa(dp357391 +g291134 +S'Figure Studies [verso]' +p357392 +sg291137 +S'Thomas Stothard' +p357393 +sg291130 +S'pen and brown ink on wove paper' +p357394 +sg291132 +S'unknown date\n' +p357395 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e24.jpg' +p357396 +sg291136 +g27 +sa(dp357397 +g291134 +S'Sheet of Studies' +p357398 +sg291137 +S'Thomas Stothard' +p357399 +sg291130 +S'pen and brown ink and graphite on wove paper' +p357400 +sg291132 +S'unknown date\n' +p357401 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c45.jpg' +p357402 +sg291136 +g27 +sa(dp357403 +g291134 +S'Vignette for a Title Page: "Winged Victory"' +p357404 +sg291137 +S'Thomas Stothard' +p357405 +sg291130 +S'pen and brown and black inks on wove paper' +p357406 +sg291132 +S'unknown date\n' +p357407 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c46.jpg' +p357408 +sg291136 +g27 +sa(dp357409 +g291134 +S'Studies of a Pony' +p357410 +sg291137 +S'William Strutt' +p357411 +sg291130 +S'graphite on wove paper' +p357412 +sg291132 +S'unknown date\n' +p357413 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005dfc.jpg' +p357414 +sg291136 +g27 +sa(dp357415 +g291130 +S'black chalk heightened with white chalk on brown wove paper' +p357416 +sg291132 +S'1950' +p357417 +sg291134 +S'Study for "Mantis" [recto]' +p357418 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p357419 +sa(dp357420 +g291130 +S'black chalk heightened with white chalk on brown wove paper' +p357421 +sg291132 +S'1949' +p357422 +sg291134 +S'Study for "Thorn Head" [verso]' +p357423 +sg291136 +g27 +sg291137 +S'Graham Sutherland' +p357424 +sa(dp357425 +g291134 +S'A Horse Pulling a Load of Hay' +p357426 +sg291137 +S'J. Frederick Tayler' +p357427 +sg291130 +S'graphite on wove paper' +p357428 +sg291132 +S'unknown date\n' +p357429 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e03.jpg' +p357430 +sg291136 +g27 +sa(dp357431 +g291134 +S'A Young Woman in Profile' +p357432 +sg291137 +S'Henry Tonks' +p357433 +sg291130 +S'graphite on wove paper' +p357434 +sg291132 +S'1896' +p357435 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006bbe.jpg' +p357436 +sg291136 +g27 +sa(dp357437 +g291134 +S'A View of Vevey with La Tour de Peilz in the Distance' +p357438 +sg291137 +S'Francis Towne' +p357439 +sg291130 +S'pen and black ink over graphite on laid paper' +p357440 +sg291132 +S'1781' +p357441 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a0007205.jpg' +p357442 +sg291136 +g27 +sa(dp357443 +g291134 +S'Extensive Landscape with a Pond' +p357444 +sg291137 +S'William Turner of Oxford' +p357445 +sg291130 +S'charcoal with touches of white heightening on two joined sheets of blue wove paper' +p357446 +sg291132 +S'unknown date\n' +p357447 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005d00.jpg' +p357448 +sg291136 +g27 +sa(dp357449 +g291134 +S'Figures Overlooking a Bay near the Mouth of the Paye, Lincolnshire' +p357450 +sg291137 +S'British 19th Century' +p357451 +sg291130 +S'overall: 7.6 x 16.5 cm (3 x 6 1/2 in.)' +p357452 +sg291132 +S'\nbrown wash on wove paper' +p357453 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006be5.jpg' +p357454 +sg291136 +g27 +sa(dp357455 +g291134 +S'A Monstrance' +p357456 +sg291137 +S'British 19th Century' +p357457 +sg291130 +S'overall: 24.3 x 17.2 cm (9 9/16 x 6 3/4 in.)' +p357458 +sg291132 +S'\nwatercolor over graphite on wove paper' +p357459 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006be6.jpg' +p357460 +sg291136 +g27 +sa(dp357461 +g291134 +S"St. George's, Bloomsbury" +p357462 +sg291137 +S'Thomas Malton' +p357463 +sg291130 +S'pen and black ink with gray wash and graphite on wove paper' +p357464 +sg291132 +S'1799' +p357465 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a000695e.jpg' +p357466 +sg291136 +g27 +sa(dp357467 +g291134 +S'Upnor Castle' +p357468 +sg291137 +S'British 18th Century' +p357469 +sg291130 +S'overall: 30.9 x 40.5 cm (12 3/16 x 15 15/16 in.)' +p357470 +sg291132 +S'\npen and iron gall ink over graphite on laid paper' +p357471 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a0006954.jpg' +p357472 +sg291136 +g27 +sa(dp357473 +g291134 +S'A Clearing in a Forest' +p357474 +sg291137 +S'John Varley' +p357475 +sg291130 +S'pen and brown ink with brown wash on laid paper' +p357476 +sg291132 +S'late 1830s' +p357477 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e00.jpg' +p357478 +sg291136 +g27 +sa(dp357479 +g291134 +S'A Cottage on a Lane' +p357480 +sg291137 +S'John Varley' +p357481 +sg291130 +S'black chalk heightened with white on blue wove paper' +p357482 +sg291132 +S'probably 1800/1810' +p357483 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cd7.jpg' +p357484 +sg291136 +g27 +sa(dp357485 +g291134 +S'Study of Trees in a Landscape' +p357486 +sg291137 +S'John Varley' +p357487 +sg291130 +S'pen and brown ink with brown wash on thin brown paper backed with japan paper' +p357488 +sg291132 +S'unknown date\n' +p357489 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005dfb.jpg' +p357490 +sg291136 +g27 +sa(dp357491 +g291134 +S'A Stand of Trees [recto]' +p357492 +sg291137 +S'John Varley' +p357493 +sg291130 +S'brush and brown-gray wash with graphite on laid paper' +p357494 +sg291132 +S'unknown date\n' +p357495 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e20.jpg' +p357496 +sg291136 +g27 +sa(dp357497 +g291134 +S'Study of a Head in Profile [verso]' +p357498 +sg291137 +S'John Varley' +p357499 +sg291130 +S'gray wash and graphite on laid paper' +p357500 +sg291132 +S'unknown date\n' +p357501 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e21.jpg' +p357502 +sg291136 +g27 +sa(dp357503 +g291134 +S'Landscape Composition [recto]' +p357504 +sg291137 +S'John Varley' +p357505 +sg291130 +S'brush and brown wash over graphite on wove paper' +p357506 +sg291132 +S'unknown date\n' +p357507 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e1e.jpg' +p357508 +sg291136 +g27 +sa(dp357509 +g291134 +S'Two Studies of a Figure Holding a Basket [verso]' +p357510 +sg291137 +S'John Varley' +p357511 +sg291130 +S'graphite on wove paper' +p357512 +sg291132 +S'unknown date\n' +p357513 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e1f.jpg' +p357514 +sg291136 +g27 +sa(dp357515 +g291130 +S'pen and brown ink with brown wash on wove paper' +p357516 +sg291132 +S'1941' +p357517 +sg291134 +S'Methods of Destruction' +p357518 +sg291136 +g27 +sg291137 +S'Keith Vaughn' +p357519 +sa(dp357520 +g291134 +S'The Earth Stopper' +p357521 +sg291137 +S'James Ward' +p357522 +sg291130 +S'black chalk heightened with white on brown laid paper' +p357523 +sg291132 +S'1794 or shortly thereafter' +p357524 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c4a.jpg' +p357525 +sg291136 +g27 +sa(dp357526 +g291134 +S'A Sheep Resting' +p357527 +sg291137 +S'James Ward' +p357528 +sg291130 +S'graphite with watercolor and green crayon on wove paper' +p357529 +sg291132 +S'c. 1800/1810' +p357530 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c4b.jpg' +p357531 +sg291136 +g27 +sa(dp357532 +g291134 +S'Two Studies of a Seated Man' +p357533 +sg291137 +S'James Ward' +p357534 +sg291130 +S'graphite on wove paper' +p357535 +sg291132 +S'unknown date\n' +p357536 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005dfa.jpg' +p357537 +sg291136 +g27 +sa(dp357538 +g291134 +S'Study of Death for "Time and Death"' +p357539 +sg291137 +S'George Frederic Watts' +p357540 +sg291130 +S'pen and brown ink on blue laid paper' +p357541 +sg291132 +S'c. 1868' +p357542 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005dfe.jpg' +p357543 +sg291136 +g27 +sa(dp357544 +g291134 +S'Head of a Young Woman' +p357545 +sg291137 +S'George Frederic Watts' +p357546 +sg291130 +S'black chalk heightened with white on brown wove paper' +p357547 +sg291132 +S'1860s' +p357548 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a0006976.jpg' +p357549 +sg291136 +g27 +sa(dp357550 +g291134 +S'An Alpine Landscape with a Couple Seated by Trees Overlooking a Valley' +p357551 +sg291137 +S'Benjamin West' +p357552 +sg291130 +S'pen and gray ink on light gray laid paper' +p357553 +sg291132 +S'1760/1763' +p357554 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000eb/a000eb98.jpg' +p357555 +sg291136 +g27 +sa(dp357556 +g291134 +S'Death of a General' +p357557 +sg291137 +S'Benjamin West' +p357558 +sg291130 +S'pen and black ink with gray wash on laid paper' +p357559 +sg291132 +S'unknown date\n' +p357560 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0a0.jpg' +p357561 +sg291136 +g27 +sa(dp357562 +g291134 +S'An Angel' +p357563 +sg291137 +S'Benjamin West' +p357564 +sg291130 +S'pen and brown ink over black chalk on laid paper' +p357565 +sg291132 +S'unknown date\n' +p357566 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0a2.jpg' +p357567 +sg291136 +g27 +sa(dp357568 +g291134 +S'Study of a Right Arm and a Left Hand' +p357569 +sg291137 +S'Benjamin West' +p357570 +sg291130 +S'black chalk heightened with white on brown laid paper' +p357571 +sg291132 +S'unknown date\n' +p357572 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f09e.jpg' +p357573 +sg291136 +g27 +sa(dp357574 +g291134 +S'The Reaper (The Harvest Moon)' +p357575 +sg291137 +S'Richard Westall' +p357576 +sg291130 +S'pen and gray ink with gray wash and watercolor over graphite on wove paper' +p357577 +sg291132 +S'unknown date\n' +p357578 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c4c.jpg' +p357579 +sg291136 +g27 +sa(dp357580 +g291134 +S'Blue Ridge Mountains' +p357581 +sg291137 +S'Stanford White' +p357582 +sg291130 +S'watercolor and gouache with pen and brown ink on wove paper' +p357583 +sg291132 +S'c. 1898' +p357584 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f0/a000f0ee.jpg' +p357585 +sg291136 +g27 +sa(dp357586 +g291134 +S'Study of a Chair Leg' +p357587 +sg291137 +S'Sir David Wilkie' +p357588 +sg291130 +S'black chalk heightened with white on wove paper' +p357589 +sg291132 +S'unknown date\n' +p357590 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c52.jpg' +p357591 +sg291136 +g27 +sa(dp357592 +g291134 +S'A Family Group' +p357593 +sg291137 +S'Sir David Wilkie' +p357594 +sg291130 +S'pen and brown ink with brown wash on wove paper' +p357595 +sg291132 +S'1835' +p357596 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e02.jpg' +p357597 +sg291136 +g27 +sa(dp357598 +g291134 +S'Landscape with Figures and a Carriage' +p357599 +sg291137 +S'Sir David Wilkie' +p357600 +sg291130 +S'graphite and watercolor on wove paper' +p357601 +sg291132 +S'unknown date\n' +p357602 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e01.jpg' +p357603 +sg291136 +g27 +sa(dp357604 +g291134 +S'Battle Scene' +p357605 +sg291137 +S'Sir David Wilkie' +p357606 +sg291130 +S'pen and black ink on wove paper' +p357607 +sg291132 +S'1840' +p357608 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c4e.jpg' +p357609 +sg291136 +g27 +sa(dp357610 +g291134 +S'An Ornate Ewer [recto]' +p357611 +sg291137 +S'Sir David Wilkie' +p357612 +sg291130 +S'pen and brown ink on wove paper' +p357613 +sg291132 +S'unknown date\n' +p357614 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005e1d.jpg' +p357615 +sg291136 +g27 +sa(dp357616 +g291134 +S'Study of a Mother and Child [verso]' +p357617 +sg291137 +S'Sir David Wilkie' +p357618 +sg291130 +S'pen and brown ink on wove paper' +p357619 +sg291132 +S'unknown date\n' +p357620 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c4f.jpg' +p357621 +sg291136 +g27 +sa(dp357622 +g291134 +S'An Upraised Arm' +p357623 +sg291137 +S'Sir David Wilkie' +p357624 +sg291130 +S'black and red chalks heightened with white on wove paper' +p357625 +sg291132 +S'unknown date\n' +p357626 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005d/a0005dff.jpg' +p357627 +sg291136 +g27 +sa(dp357628 +g291134 +S'A Tassel' +p357629 +sg291137 +S'Sir David Wilkie' +p357630 +sg291130 +S'black, red, and yellow chalks heightened with white on wove paper' +p357631 +sg291132 +S'unknown date\n' +p357632 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c50.jpg' +p357633 +sg291136 +g27 +sa(dp357634 +g291134 +S'House by the Beach at Tr\xc3\xa9boul' +p357635 +sg291137 +S'Christopher Wood' +p357636 +sg291130 +S'graphite on wove paper' +p357637 +sg291132 +S'probably 1929 or 1930' +p357638 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006b/a0006b36.jpg' +p357639 +sg291136 +g27 +sa(dp357640 +g291134 +S"Study of a Seated Man's Legs" +p357641 +sg291137 +S'Henry Wyatt' +p357642 +sg291130 +S'black chalk with stumping, heightened with white, on blue wove paper' +p357643 +sg291132 +S'1816' +p357644 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006c4d.jpg' +p357645 +sg291136 +g27 +sa(dp357646 +g291134 +S'Sandstorm in the Desert Overtaking a Caravan' +p357647 +sg291137 +S'Johann Zoffany' +p357648 +sg291130 +S'pen and brown ink on wove paper' +p357649 +sg291132 +S'c. 1783/1789' +p357650 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a00072dc.jpg' +p357651 +sg291136 +g27 +sa(dp357652 +g291134 +S'Seated Male Nude' +p357653 +sg291137 +S'Samuel Woodforde' +p357654 +sg291130 +S'black chalk heightened with white on blue laid paper' +p357655 +sg291132 +S'probably 1786/1791' +p357656 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00071/a00071cc.jpg' +p357657 +sg291136 +g27 +sa(dp357658 +g291134 +S'The "Farnese Flora" at Stourhead' +p357659 +sg291137 +S'Samuel Woodforde' +p357660 +sg291130 +S'black chalk heightened with white on blue laid paper' +p357661 +sg291132 +S'unknown date\n' +p357662 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00072/a00072a8.jpg' +p357663 +sg291136 +g27 +sa(dp357664 +g291134 +S'A Lady Seated with a Parasol' +p357665 +sg291137 +S'Samuel Woodforde' +p357666 +sg291130 +S'pen and brown ink over graphite on laid paper' +p357667 +sg291132 +S'on or after 1794' +p357668 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0006c/a0006cf1.jpg' +p357669 +sg291136 +g27 +sa(dp357670 +g291134 +S'Personnage Gothique, Oiseau-Eclair (Gothic Personage, Bird-Flash)' +p357671 +sg291137 +S'Joan Mir\xc3\xb3' +p357672 +sg291130 +S'bronze' +p357673 +sg291132 +S'model 1974, cast 1977' +p357674 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0002d/a0002de4.jpg' +p357675 +sg291136 +g27 +sa(dp357676 +g291130 +S'oil on canvas' +p357677 +sg291132 +S'1910' +p357678 +sg291134 +S'Two Girls under an Umbrella' +p357679 +sg291136 +g27 +sg291137 +S'Ernst Ludwig Kirchner' +p357680 +sa(dp357681 +g291134 +S'Basket of Fruits' +p357682 +sg291137 +S'Balthasar van der Ast' +p357683 +sg291130 +S'oil on panel' +p357684 +sg291132 +S'c. 1622' +p357685 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e7b.jpg' +p357686 +sg291136 +g27 +sa(dp357687 +g291134 +S'Basket of Flowers' +p357688 +sg291137 +S'Balthasar van der Ast' +p357689 +sg291130 +S'oil on panel' +p357690 +sg291132 +S'c. 1622' +p357691 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000d/a0000d7a.jpg' +p357692 +sg291136 +g27 +sa(dp357693 +g291134 +S'Vase of Flowers in a Niche' +p357694 +sg291137 +S'Artist Information (' +p357695 +sg291130 +S'Dutch, 1612/1613 - 1643' +p357696 +sg291132 +S'(related artist)' +p357697 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00109/a00109c1.jpg' +p357698 +sg291136 +g27 +sa(dp357699 +g291134 +S'Roses and a Tulip in a Glass Vase' +p357700 +sg291137 +S'Jan Philips van Thielen' +p357701 +sg291130 +S'oil on panel' +p357702 +sg291132 +S'c. 1650/1660' +p357703 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f86.jpg' +p357704 +sg291136 +g27 +sa(dp357705 +g291134 +S'A Hanging Bouquet of Flowers' +p357706 +sg291137 +S'Abraham Mignon' +p357707 +sg291130 +S'oil on panel' +p357708 +sg291132 +S'probably 1665/1670' +p357709 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e71.jpg' +p357710 +sg291136 +g27 +sa(dp357711 +g291134 +S'Flowers in a Basket and a Vase' +p357712 +sg291137 +S'Jan Brueghel the Elder' +p357713 +sg291130 +S'oil on panel' +p357714 +sg291132 +S'1615' +p357715 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000e/a0000e27.jpg' +p357716 +sg291136 +g27 +sa(dp357717 +g291134 +S'Becalmed off Halfway Rock' +p357718 +sg291137 +S'Fitz Henry Lane' +p357719 +sg291130 +S'oil on canvas' +p357720 +sg291132 +S'1860' +p357721 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00001/a0000146.jpg' +p357722 +sg291136 +g27 +sa(dp357723 +g291134 +S'Untitled' +p357724 +sg291137 +S'Mark Rothko' +p357725 +sg291130 +S'oil on canvas' +p357726 +sg291132 +S'1955' +p357727 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001535.jpg' +p357728 +sg291136 +g27 +sa(dp357729 +g291134 +S'Untitled' +p357730 +sg291137 +S'Mark Rothko' +p357731 +sg291130 +S'oil on canvas' +p357732 +sg291132 +S'1955' +p357733 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00015/a0001536.jpg' +p357734 +sg291136 +g27 +sa(dp357735 +g291134 +S'The Mall, Central Park' +p357736 +sg291137 +S'Maurice Brazil Prendergast' +p357737 +sg291130 +S'watercolor and graphite on wove paper' +p357738 +sg291132 +S'1900/1903' +p357739 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a0000989.jpg' +p357740 +sg291136 +g27 +sa(dp357741 +g291134 +S'Docks, East Boston' +p357742 +sg291137 +S'Maurice Brazil Prendergast' +p357743 +sg291130 +S'watercolor and graphite on wove paper' +p357744 +sg291132 +S'1900/1904' +p357745 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a000098a.jpg' +p357746 +sg291136 +g27 +sa(dp357747 +g291134 +S'Harvest--The Plain of La Crau' +p357748 +sg291137 +S'Vincent van Gogh' +p357749 +sg291130 +S'reed pen and brown ink over graphite on wove paper' +p357750 +sg291132 +S'1888' +p357751 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00034/a0003409.jpg' +p357752 +sg291136 +S"Van Gogh was committed to the craft of his art. Behind his expressive painting are countless drawings with bold, sure lines. He made studies, sometimes with notes about color, in preparation for painting, but he also drew scenes—like this one—that he had already painted, to further his skill and understanding. Van Gogh sometimes sent drawings as gifts or used them in exchanges with other artists.\n Drawings, including this one reproduced here, are not frequently exhibited. However, scholars, students, and interested visitors can view them and other works in the Gallery's collection of prints and drawings \n " +p357753 +sa(dp357754 +g291134 +S'C\xc3\xa9zanne Sketchbook' +p357755 +sg291137 +S'Paul C\xc3\xa9zanne' +p357756 +sg291130 +S'sketchbook with 71 drawings in graphite, pen and brown ink, and watercolor; the sketchbook contains 46 sheets, several which are blank; the end papers, the recto of the first page, and half the verso of the final page were used for notes, lists, andarithmetical figuring; a draft of a letter to the critic Octave Mirbeau is on page II (recto)' +p357757 +sg291132 +S'c. 1877/1900' +p357758 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0005e/a0005ea5.jpg' +p357759 +sg291136 +g27 +sa(dp357760 +g291134 +S'The Plaster Mill (La Moulin \xc3\xa0 pl\xc3\xa2tre)' +p357761 +sg291137 +S'Paul C\xc3\xa9zanne' +p357762 +sg291130 +S'graphite on wove paper' +p357763 +sg291132 +S'1889/1892' +p357764 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ae/a000aea9.jpg' +p357765 +sg291136 +g27 +sa(dp357766 +g291134 +S'Study of Puget\'s "Milo of Crotona"' +p357767 +sg291137 +S'Paul C\xc3\xa9zanne' +p357768 +sg291130 +S'graphite on wove paper' +p357769 +sg291132 +S'1895/1898' +p357770 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3e8.jpg' +p357771 +sg291136 +g27 +sa(dp357772 +g291134 +S"The Artist's Son Leaning on his Elbow" +p357773 +sg291137 +S'Paul C\xc3\xa9zanne' +p357774 +sg291130 +S'graphite on wove paper' +p357775 +sg291132 +S'c. 1887' +p357776 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d95a.jpg' +p357777 +sg291136 +g27 +sa(dp357778 +g291134 +S'Landscape Near Aix-En-Provence' +p357779 +sg291137 +S'Paul C\xc3\xa9zanne' +p357780 +sg291130 +S'graphite on wove paper' +p357781 +sg291132 +S'1877/1880' +p357782 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d979.jpg' +p357783 +sg291136 +g27 +sa(dp357784 +g291134 +S'Study of Houses' +p357785 +sg291137 +S'Paul C\xc3\xa9zanne' +p357786 +sg291130 +S'graphite on wove paper' +p357787 +sg291132 +S'1879/1882' +p357788 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d95b.jpg' +p357789 +sg291136 +g27 +sa(dp357790 +g291134 +S'Landscape with Trees' +p357791 +sg291137 +S'Paul C\xc3\xa9zanne' +p357792 +sg291130 +S'graphite on wove paper' +p357793 +sg291132 +S'1895/1898' +p357794 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d3/a000d3e9.jpg' +p357795 +sg291136 +g27 +sa(dp357796 +g291134 +S'Studies Including a Straw Hat' +p357797 +sg291137 +S'Paul C\xc3\xa9zanne' +p357798 +sg291130 +S'graphite on wove paper' +p357799 +sg291132 +S'1895/1898' +p357800 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d937.jpg' +p357801 +sg291136 +g27 +sa(dp357802 +g291134 +S'Madame C\xc3\xa9zanne' +p357803 +sg291137 +S'Paul C\xc3\xa9zanne' +p357804 +sg291130 +S'graphite on wove paper' +p357805 +sg291132 +S'1888/1891' +p357806 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d95c.jpg' +p357807 +sg291136 +g27 +sa(dp357808 +g291134 +S'A Head, a Cup, and a Bread Roll' +p357809 +sg291137 +S'Paul C\xc3\xa9zanne' +p357810 +sg291130 +S'graphite on wove paper' +p357811 +sg291132 +S'1891/1894' +p357812 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d95d.jpg' +p357813 +sg291136 +g27 +sa(dp357814 +g291134 +S'Kerosene Lamp' +p357815 +sg291137 +S'Paul C\xc3\xa9zanne' +p357816 +sg291130 +S'graphite on wove paper' +p357817 +sg291132 +S'1878/1881' +p357818 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d938.jpg' +p357819 +sg291136 +g27 +sa(dp357820 +g291134 +S'Two Heads' +p357821 +sg291137 +S'Paul C\xc3\xa9zanne' +p357822 +sg291130 +S'graphite on wove paper' +p357823 +sg291132 +S'1888' +p357824 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d95e.jpg' +p357825 +sg291136 +g27 +sa(dp357826 +g291134 +S'Madame C\xc3\xa9zanne' +p357827 +sg291137 +S'Paul C\xc3\xa9zanne' +p357828 +sg291130 +S'graphite on wove paper' +p357829 +sg291132 +S'1886/1889' +p357830 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d939.jpg' +p357831 +sg291136 +g27 +sa(dp357832 +g291134 +S'Self-Portrait' +p357833 +sg291137 +S'Paul C\xc3\xa9zanne' +p357834 +sg291130 +S'graphite on wove paper' +p357835 +sg291132 +S'c. 1895' +p357836 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d95f.jpg' +p357837 +sg291136 +g27 +sa(dp357838 +g291134 +S'Landscape Seen from the Inside of a Cave' +p357839 +sg291137 +S'Paul C\xc3\xa9zanne' +p357840 +sg291130 +S'graphite on wove paper' +p357841 +sg291132 +S'1889/1892' +p357842 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d93a.jpg' +p357843 +sg291136 +g27 +sa(dp357844 +g291134 +S'Head of a Young Woman' +p357845 +sg291137 +S'Paul C\xc3\xa9zanne' +p357846 +sg291130 +S'graphite on wove paper' +p357847 +sg291132 +S'c. 1880' +p357848 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d93b.jpg' +p357849 +sg291136 +g27 +sa(dp357850 +g291134 +S'Madame C\xc3\xa9zanne' +p357851 +sg291137 +S'Paul C\xc3\xa9zanne' +p357852 +sg291130 +S'graphite on wove paper' +p357853 +sg291132 +S'1882/1887' +p357854 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d960.jpg' +p357855 +sg291136 +g27 +sa(dp357856 +g291134 +S'Study of a Decorative Ornament' +p357857 +sg291137 +S'Paul C\xc3\xa9zanne' +p357858 +sg291130 +S'graphite on wove paper' +p357859 +sg291132 +S'1879/1882' +p357860 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d93c.jpg' +p357861 +sg291136 +g27 +sa(dp357862 +g291134 +S'Madame C\xc3\xa9zanne' +p357863 +sg291137 +S'Paul C\xc3\xa9zanne' +p357864 +sg291130 +S'graphite on wove paper' +p357865 +sg291132 +S'1897/1900' +p357866 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d961.jpg' +p357867 +sg291136 +g27 +sa(dp357868 +g291134 +S'Study of the Allegorical Figure of Health in Rubens\' "The Birth of Louis XIII"' +p357869 +sg291137 +S'Paul C\xc3\xa9zanne' +p357870 +sg291130 +S'graphite on wove paper' +p357871 +sg291132 +S'1880/1883' +p357872 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d93d.jpg' +p357873 +sg291136 +g27 +sa(dp357874 +g291134 +S'Two Heads of Women' +p357875 +sg291137 +S'Paul C\xc3\xa9zanne' +p357876 +sg291130 +S'graphite on wove paper' +p357877 +sg291132 +S'1890/1894' +p357878 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d962.jpg' +p357879 +sg291136 +g27 +sa(dp357880 +g291134 +S'Woman Leaning Forward' +p357881 +sg291137 +S'Paul C\xc3\xa9zanne' +p357882 +sg291130 +S'graphite on wove paper' +p357883 +sg291132 +S'1890/1894' +p357884 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d93e.jpg' +p357885 +sg291136 +g27 +sa(dp357886 +g291134 +S'Woman Leaning Forward' +p357887 +sg291137 +S'Paul C\xc3\xa9zanne' +p357888 +sg291130 +S'graphite on wove paper' +p357889 +sg291132 +S'1890/1894' +p357890 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d963.jpg' +p357891 +sg291136 +g27 +sa(dp357892 +g291134 +S'Bellows in Front of a Fireplace' +p357893 +sg291137 +S'Paul C\xc3\xa9zanne' +p357894 +sg291130 +S'graphite on wove paper' +p357895 +sg291132 +S'1887/1892' +p357896 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d93f.jpg' +p357897 +sg291136 +g27 +sa(dp357898 +g291134 +S'Fireplace Tongs and Poker' +p357899 +sg291137 +S'Paul C\xc3\xa9zanne' +p357900 +sg291130 +S'graphite on wove paper' +p357901 +sg291132 +S'1887/1892' +p357902 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d964.jpg' +p357903 +sg291136 +g27 +sa(dp357904 +g291134 +S'Cushion of an Armchair' +p357905 +sg291137 +S'Paul C\xc3\xa9zanne' +p357906 +sg291130 +S'graphite on wove paper' +p357907 +sg291132 +S'1886/1889' +p357908 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d940.jpg' +p357909 +sg291136 +g27 +sa(dp357910 +g291134 +S'Madame C\xc3\xa9zanne with her Head Lowered' +p357911 +sg291137 +S'Paul C\xc3\xa9zanne' +p357912 +sg291130 +S'graphite on wove paper' +p357913 +sg291132 +S'1893/1896' +p357914 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d965.jpg' +p357915 +sg291136 +g27 +sa(dp357916 +g291134 +S"The Artist's Son Writing" +p357917 +sg291137 +S'Paul C\xc3\xa9zanne' +p357918 +sg291130 +S'graphite on wove paper' +p357919 +sg291132 +S'c. 1887' +p357920 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d941.jpg' +p357921 +sg291136 +g27 +sa(dp357922 +g291134 +S"The Artist's Son" +p357923 +sg291137 +S'Paul C\xc3\xa9zanne' +p357924 +sg291130 +S'graphite on wove paper' +p357925 +sg291132 +S'c. 1887' +p357926 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d966.jpg' +p357927 +sg291136 +g27 +sa(dp357928 +g291134 +S'Head of a Boy' +p357929 +sg291137 +S'Paul C\xc3\xa9zanne' +p357930 +sg291130 +S'graphite on wove paper' +p357931 +sg291132 +S'1887/1889' +p357932 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d942.jpg' +p357933 +sg291136 +g27 +sa(dp357934 +g291134 +S'Head of a Boy Seen from Behind' +p357935 +sg291137 +S'Paul C\xc3\xa9zanne' +p357936 +sg291130 +S'graphite on wove paper' +p357937 +sg291132 +S'c. 1885' +p357938 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d967.jpg' +p357939 +sg291136 +g27 +sa(dp357940 +g291134 +S'Carnival Scene' +p357941 +sg291137 +S'Paul C\xc3\xa9zanne' +p357942 +sg291130 +S'graphite on wove paper' +p357943 +sg291132 +S'1885/1888' +p357944 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d943.jpg' +p357945 +sg291136 +g27 +sa(dp357946 +g291134 +S'Woman Leaning Forward' +p357947 +sg291137 +S'Paul C\xc3\xa9zanne' +p357948 +sg291130 +S'graphite on wove paper' +p357949 +sg291132 +S'1888/1891' +p357950 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d968.jpg' +p357951 +sg291136 +g27 +sa(dp357952 +g291134 +S"Head of the Artist's Son" +p357953 +sg291137 +S'Paul C\xc3\xa9zanne' +p357954 +sg291130 +S'graphite on wove paper' +p357955 +sg291132 +S'1888/1889' +p357956 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d944.jpg' +p357957 +sg291136 +g27 +sa(dp357958 +g291134 +S'Branch in Flower' +p357959 +sg291137 +S'Paul C\xc3\xa9zanne' +p357960 +sg291130 +S'graphite on wove paper' +p357961 +sg291132 +S'1886/1889' +p357962 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d969.jpg' +p357963 +sg291136 +g27 +sa(dp357964 +g291134 +S'Pine Tree' +p357965 +sg291137 +S'Paul C\xc3\xa9zanne' +p357966 +sg291130 +S'graphite on wove paper' +p357967 +sg291132 +S'1882/1885' +p357968 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d945.jpg' +p357969 +sg291136 +g27 +sa(dp357970 +g291134 +S'Women Bathers and a Roll of Paper' +p357971 +sg291137 +S'Paul C\xc3\xa9zanne' +p357972 +sg291130 +S'graphite on wove paper' +p357973 +sg291132 +S'1882/1885' +p357974 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d96a.jpg' +p357975 +sg291136 +g27 +sa(dp357976 +g291134 +S'Hand and Shoulder of a Boy' +p357977 +sg291137 +S'Paul C\xc3\xa9zanne' +p357978 +sg291130 +S'graphite on wove paper' +p357979 +sg291132 +S'c. 1885' +p357980 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d946.jpg' +p357981 +sg291136 +g27 +sa(dp357982 +g291134 +S'Two Heads' +p357983 +sg291137 +S'Paul C\xc3\xa9zanne' +p357984 +sg291130 +S'graphite on wove paper' +p357985 +sg291132 +S'1890/1896' +p357986 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d96b.jpg' +p357987 +sg291136 +g27 +sa(dp357988 +g291134 +S'Study of Puget\'s "Hercules Resting"' +p357989 +sg291137 +S'Paul C\xc3\xa9zanne' +p357990 +sg291130 +S'graphite on wove paper' +p357991 +sg291132 +S'c. 1879' +p357992 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d96c.jpg' +p357993 +sg291136 +g27 +sa(dp357994 +g291134 +S'Study of the Allegorical Figure Bellona in Rubens\' "The Apotheosis of Henri IV"' +p357995 +sg291137 +S'Paul C\xc3\xa9zanne' +p357996 +sg291130 +S'graphite on wove paper' +p357997 +sg291132 +S'1879/1882' +p357998 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d947.jpg' +p357999 +sg291136 +g27 +sa(dp358000 +g291134 +S'Study of the Allegorical Figure France in Rubens\' "The Exchange of the Two Princesses"' +p358001 +sg291137 +S'Paul C\xc3\xa9zanne' +p358002 +sg291130 +S'graphite and pen and brown ink on wove paper' +p358003 +sg291132 +S'1882/1885' +p358004 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d96d.jpg' +p358005 +sg291136 +g27 +sa(dp358006 +g291134 +S'Study of an Angel in Rubens\' "The Prophet Elijah"' +p358007 +sg291137 +S'Paul C\xc3\xa9zanne' +p358008 +sg291130 +S'graphite on wove paper' +p358009 +sg291132 +S'1892/1895' +p358010 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d948.jpg' +p358011 +sg291136 +g27 +sa(dp358012 +g291134 +S'The Mill' +p358013 +sg291137 +S'Paul C\xc3\xa9zanne' +p358014 +sg291130 +S'graphite on wove paper' +p358015 +sg291132 +S'1889/1892' +p358016 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d949.jpg' +p358017 +sg291136 +g27 +sa(dp358018 +g291134 +S'Two Studies for "The Judgement of Paris" or "The Amorous Shepherd"' +p358019 +sg291137 +S'Paul C\xc3\xa9zanne' +p358020 +sg291130 +S'graphite on wove paper' +p358021 +sg291132 +S'1883/1886' +p358022 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d96e.jpg' +p358023 +sg291136 +g27 +sa(dp358024 +g291134 +S'Spanish Dancers' +p358025 +sg291137 +S'Paul C\xc3\xa9zanne' +p358026 +sg291130 +S'graphite on wove paper' +p358027 +sg291132 +S'1883/1886' +p358028 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d94a.jpg' +p358029 +sg291136 +g27 +sa(dp358030 +g291134 +S'Study for "The Judgement of Paris" or "The Amorous Shepherd"' +p358031 +sg291137 +S'Paul C\xc3\xa9zanne' +p358032 +sg291130 +S'graphite on wove paper' +p358033 +sg291132 +S'1883/1886' +p358034 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d96f.jpg' +p358035 +sg291136 +g27 +sa(dp358036 +g291134 +S'Victor Chocquet and an Angel for "The Apotheosis of Delacroix"' +p358037 +sg291137 +S'Paul C\xc3\xa9zanne' +p358038 +sg291130 +S'graphite and pen and brown ink with watercolor on wove paper' +p358039 +sg291132 +S'1878/1880' +p358040 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00022/a00022d8.jpg' +p358041 +sg291136 +g27 +sa(dp358042 +g291134 +S'Peonies' +p358043 +sg291137 +S'Paul C\xc3\xa9zanne' +p358044 +sg291130 +S'graphite on wove paper' +p358045 +sg291132 +S'1890/1893' +p358046 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d970.jpg' +p358047 +sg291136 +g27 +sa(dp358048 +g291134 +S'Pelicans' +p358049 +sg291137 +S'Paul C\xc3\xa9zanne' +p358050 +sg291130 +S'graphite on wove paper' +p358051 +sg291132 +S'1877/1880' +p358052 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d94b.jpg' +p358053 +sg291136 +g27 +sa(dp358054 +g291134 +S'Thistle' +p358055 +sg291137 +S'Paul C\xc3\xa9zanne' +p358056 +sg291130 +S'graphite on wove paper' +p358057 +sg291132 +S'1893/1896' +p358058 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d971.jpg' +p358059 +sg291136 +g27 +sa(dp358060 +g291134 +S'A Nude and Foliage' +p358061 +sg291137 +S'Paul C\xc3\xa9zanne' +p358062 +sg291130 +S'graphite on wove paper' +p358063 +sg291132 +S'1879/1882' +p358064 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d94c.jpg' +p358065 +sg291136 +g27 +sa(dp358066 +g291134 +S'Three Heads, One of Madame C\xc3\xa9zanne' +p358067 +sg291137 +S'Paul C\xc3\xa9zanne' +p358068 +sg291130 +S'graphite on wove paper' +p358069 +sg291132 +S'1882/1885' +p358070 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d972.jpg' +p358071 +sg291136 +g27 +sa(dp358072 +g291134 +S'A Man seen from Behind' +p358073 +sg291137 +S'Paul C\xc3\xa9zanne' +p358074 +sg291130 +S'graphite on wove paper' +p358075 +sg291132 +S'1880/1883' +p358076 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d94d.jpg' +p358077 +sg291136 +g27 +sa(dp358078 +g291134 +S"The Artist's Son Reading" +p358079 +sg291137 +S'Paul C\xc3\xa9zanne' +p358080 +sg291130 +S'graphite on wove paper' +p358081 +sg291132 +S'c. 1887' +p358082 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d973.jpg' +p358083 +sg291136 +g27 +sa(dp358084 +g291134 +S'House Surrounded by Vegetation' +p358085 +sg291137 +S'Paul C\xc3\xa9zanne' +p358086 +sg291130 +S'graphite on wove paper' +p358087 +sg291132 +S'1889/1892' +p358088 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d94e.jpg' +p358089 +sg291136 +g27 +sa(dp358090 +g291134 +S'Figure Resting Head on Hand' +p358091 +sg291137 +S'Paul C\xc3\xa9zanne' +p358092 +sg291130 +S'graphite on wove paper' +p358093 +sg291132 +S'c. 1889' +p358094 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d974.jpg' +p358095 +sg291136 +g27 +sa(dp358096 +g291134 +S'Near the Pool at Jas de Bouffan' +p358097 +sg291137 +S'Paul C\xc3\xa9zanne' +p358098 +sg291130 +S'graphite on wove paper' +p358099 +sg291132 +S'1883/1887' +p358100 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d94f.jpg' +p358101 +sg291136 +g27 +sa(dp358102 +g291134 +S'Man Bending Forward' +p358103 +sg291137 +S'Paul C\xc3\xa9zanne' +p358104 +sg291130 +S'graphite on wove paper' +p358105 +sg291132 +S'1883/1886' +p358106 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d950.jpg' +p358107 +sg291136 +g27 +sa(dp358108 +g291134 +S'Study of the Allegorical Figure of the Genius of Health from Rubens\' "The Birth of Louis XIII at Fontainbleau"' +p358109 +sg291137 +S'Paul C\xc3\xa9zanne' +p358110 +sg291130 +S'graphite on wove paper' +p358111 +sg291132 +S'1895/1898' +p358112 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d975.jpg' +p358113 +sg291136 +g27 +sa(dp358114 +g291134 +S'Study of Puget\'s "Milo of Crotona"' +p358115 +sg291137 +S'Paul C\xc3\xa9zanne' +p358116 +sg291130 +S'graphite on wove paper' +p358117 +sg291132 +S'1880/1883' +p358118 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d951.jpg' +p358119 +sg291136 +g27 +sa(dp358120 +g291134 +S'Study of a Standing Male Figure after the Antique' +p358121 +sg291137 +S'Paul C\xc3\xa9zanne' +p358122 +sg291130 +S'graphite on wove paper' +p358123 +sg291132 +S'c. 1895' +p358124 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d952.jpg' +p358125 +sg291136 +g27 +sa(dp358126 +g291134 +S'Study of Desiderio da Settignano\'s "Bust of a Child"' +p358127 +sg291137 +S'Paul C\xc3\xa9zanne' +p358128 +sg291130 +S'graphite on wove paper' +p358129 +sg291132 +S'c. 1895' +p358130 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d953.jpg' +p358131 +sg291136 +g27 +sa(dp358132 +g291134 +S'House in a Park' +p358133 +sg291137 +S'Paul C\xc3\xa9zanne' +p358134 +sg291130 +S'graphite on wove paper' +p358135 +sg291132 +S'1883/1886' +p358136 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d976.jpg' +p358137 +sg291136 +g27 +sa(dp358138 +g291134 +S'Study of "The Roman Orator (Germanicus)"' +p358139 +sg291137 +S'Paul C\xc3\xa9zanne' +p358140 +sg291130 +S'graphite on wove paper' +p358141 +sg291132 +S'1883/1886' +p358142 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d954.jpg' +p358143 +sg291136 +g27 +sa(dp358144 +g291134 +S'Study of the Allegorical Figure Bellona in Rubens\' "The Apotheosis of Henri IV"' +p358145 +sg291137 +S'Paul C\xc3\xa9zanne' +p358146 +sg291130 +S'graphite on wove paper' +p358147 +sg291132 +S'1883/1886' +p358148 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d955.jpg' +p358149 +sg291136 +g27 +sa(dp358150 +g291134 +S'Studies Including Madame C\xc3\xa9zanne' +p358151 +sg291137 +S'Paul C\xc3\xa9zanne' +p358152 +sg291130 +S'graphite on wove paper' +p358153 +sg291132 +S'1884/1887' +p358154 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d956.jpg' +p358155 +sg291136 +g27 +sa(dp358156 +g291134 +S'Chair and Dresser' +p358157 +sg291137 +S'Paul C\xc3\xa9zanne' +p358158 +sg291130 +S'graphite on wove paper' +p358159 +sg291132 +S'1880/1883' +p358160 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d977.jpg' +p358161 +sg291136 +g27 +sa(dp358162 +g291134 +S'Study of "Venus de Milo"' +p358163 +sg291137 +S'Paul C\xc3\xa9zanne' +p358164 +sg291130 +S'graphite on wove paper' +p358165 +sg291132 +S'1881/1884' +p358166 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d957.jpg' +p358167 +sg291136 +g27 +sa(dp358168 +g291134 +S'Basket' +p358169 +sg291137 +S'Paul C\xc3\xa9zanne' +p358170 +sg291130 +S'graphite on wove paper' +p358171 +sg291132 +S'1877/1900' +p358172 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d978.jpg' +p358173 +sg291136 +g27 +sa(dp358174 +g291134 +S'Trees and Shrubs' +p358175 +sg291137 +S'Paul C\xc3\xa9zanne' +p358176 +sg291130 +S'graphite on wove paper' +p358177 +sg291132 +S'1883/1887' +p358178 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d958.jpg' +p358179 +sg291136 +g27 +sa(dp358180 +g291134 +S'Two Bathers' +p358181 +sg291137 +S'Paul C\xc3\xa9zanne' +p358182 +sg291130 +S'pen and brown ink on end papers' +p358183 +sg291132 +S'1884/1887' +p358184 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d9/a000d959.jpg' +p358185 +sg291136 +g27 +sa(dp358186 +g291134 +S'Ploughman in the Fields near Arles' +p358187 +sg291137 +S'Vincent van Gogh' +p358188 +sg291130 +S'reed pen and brown ink over graphite on wove paper' +p358189 +sg291132 +S'1888' +p358190 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0004c/a0004c10.jpg' +p358191 +sg291136 +g27 +sa(dp358192 +g291130 +S'(medalist)' +p358193 +sg291132 +S'\n' +p358194 +sg291134 +S'The Philosopher Cato' +p358195 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358196 +sa(dp358197 +g291130 +S'bronze' +p358198 +sg291132 +S'1447' +p358199 +sg291134 +S'Sigismondo Pandolfo Malatesta, 1417-1468, Lord of Rimini and Fano [obverse]' +p358200 +sg291136 +g27 +sg291137 +S"Matteo de' Pasti" +p358201 +sa(dp358202 +g291130 +S'bronze' +p358203 +sg291132 +S'1447' +p358204 +sg291134 +S'Emblem of Authority [reverse]' +p358205 +sg291136 +g27 +sg291137 +S"Matteo de' Pasti" +p358206 +sa(dp358207 +g291130 +S'(related artist)' +p358208 +sg291132 +S'\n' +p358209 +sg291134 +S'Girolamo Savonarola, 1452-1498, Dominican Preacher [obverse]' +p358210 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358211 +sa(dp358212 +g291130 +S'(related artist)' +p358213 +sg291132 +S'\n' +p358214 +sg291134 +S'Virtue Enthroned [reverse]' +p358215 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358216 +sa(dp358217 +g291130 +S'cast bronze' +p358218 +sg291132 +S'1501' +p358219 +sg291134 +S'A Triumph, with Venice Crowning Leonardo Loredano as Doge' +p358220 +sg291136 +g27 +sg291137 +S'Giovanni Guido Agrippa' +p358221 +sa(dp358222 +g291130 +S'lead' +p358223 +sg291132 +S'before 1534' +p358224 +sg291134 +S'Daniele Renier, Venetian Patrician [obverse]' +p358225 +sg291136 +g27 +sg291137 +S'Giulio della Torre' +p358226 +sa(dp358227 +g291130 +S'lead' +p358228 +sg291132 +S'before 1534' +p358229 +sg291134 +S'Renier Enthroned between Justice and Prudence [reverse]' +p358230 +sg291136 +g27 +sg291137 +S'Giulio della Torre' +p358231 +sa(dp358232 +g291130 +S'Italian, c. 1447 - 1517' +p358233 +sg291132 +S'(artist after)' +p358234 +sg291134 +S"Bernardo de' Rossi, died 1527, Bishop of Treviso 1499, Governor of Bologna 1519-1523 [obverse]" +p358235 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358236 +sa(dp358237 +g291130 +S'Italian, c. 1447 - 1517' +p358238 +sg291132 +S'(artist after)' +p358239 +sg291134 +S'Order Restored in Romagna [reverse]' +p358240 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358241 +sa(dp358242 +g291130 +S'lead medallic obverse' +p358243 +sg291132 +S'1555' +p358244 +sg291134 +S'Marcellus II (Marcello Corvino, 1501-1555), Pope 1555' +p358245 +sg291136 +g27 +sg291137 +S"Giovanni Antonio de' Rossi" +p358246 +sa(dp358247 +g291130 +S', c. 1562' +p358248 +sg291132 +S'\n' +p358249 +sg291134 +S'Giambattista Castaldi, died 1562, Count Piadena, General of Charles V [obverse]' +p358250 +sg291136 +g27 +sg291137 +S'Annibale Fontana' +p358251 +sa(dp358252 +g291130 +S', c. 1562' +p358253 +sg291132 +S'\n' +p358254 +sg291134 +S'Conquest of Transylvania [reverse]' +p358255 +sg291136 +g27 +sg291137 +S'Annibale Fontana' +p358256 +sa(dp358257 +g291130 +S'cast non-sterling silver' +p358258 +sg291132 +S'c. 1545' +p358259 +sg291134 +S'Pietro Strozzi, 1510-1588, Marshall of France 1554 [obverse]' +p358260 +sg291136 +g27 +sg291137 +S'Florentine 16th Century' +p358261 +sa(dp358262 +g291130 +S'cast non-sterling silver' +p358263 +sg291132 +S'c. 1545' +p358264 +sg291134 +S'Horse Pawing the Earth [reverse]' +p358265 +sg291136 +g27 +sg291137 +S'Florentine 16th Century' +p358266 +sa(dp358267 +g291130 +S'silver' +p358268 +sg291132 +S'1571' +p358269 +sg291134 +S'Viglius van Aytta of Zuichem, 1507-1577, Lawyer and Humanist [obverse]' +p358270 +sg291136 +g27 +sg291137 +S'Jacques Jonghelinck' +p358271 +sa(dp358272 +g291130 +S'silver' +p358273 +sg291132 +S'1571' +p358274 +sg291134 +S'Memento Mori [reverse]' +p358275 +sg291136 +g27 +sg291137 +S'Jacques Jonghelinck' +p358276 +sa(dp358277 +g291130 +S'struck bronze' +p358278 +sg291132 +S'1575' +p358279 +sg291134 +S'Gregory XIII (Ugo Buoncompagni, 1502-1585), Pope 1572 [obverse]' +p358280 +sg291136 +g27 +sg291137 +S'Giovan Federico Bonzagni' +p358281 +sa(dp358282 +g291130 +S'bronze' +p358283 +sg291132 +S'1575' +p358284 +sg291134 +S'Opening of the Porta Santa [reverse]' +p358285 +sg291136 +g27 +sg291137 +S'Giovan Federico Bonzagni' +p358286 +sa(dp358287 +g291130 +S'wax modello on slate' +p358288 +sg291132 +S'c. 1575' +p358289 +sg291134 +S'A Gentlewoman in Court Finery' +p358290 +sg291136 +g27 +sg291137 +S'Italian 16th Century' +p358291 +sa(dp358292 +g291130 +S'gilded bronze' +p358293 +sg291132 +S'1598' +p358294 +sg291134 +S'Henri IV, 1553-1610, King of France 1589 [obverse]' +p358295 +sg291136 +g27 +sg291137 +S'Conrad Bloc' +p358296 +sa(dp358297 +g291130 +S'gilded bronze' +p358298 +sg291132 +S'1598' +p358299 +sg291134 +S'Royal Emblem [reverse]' +p358300 +sg291136 +g27 +sg291137 +S'Conrad Bloc' +p358301 +sa(dp358302 +g291130 +S'gilded bronze' +p358303 +sg291132 +S'1624' +p358304 +sg291134 +S'Louis XIII, 1601-1643, King of France 1610 [obverse]' +p358305 +sg291136 +g27 +sg291137 +S'Pierre Regnier' +p358306 +sa(dp358307 +g291130 +S'gilded bronze' +p358308 +sg291132 +S'1624' +p358309 +sg291134 +S'The New Louvre [reverse]' +p358310 +sg291136 +g27 +sg291137 +S'Pierre Regnier' +p358311 +sa(dp358312 +g291130 +S', c. 1540' +p358313 +sg291132 +S'\n' +p358314 +sg291134 +S'A Putto Symbolizing the Muse Erato' +p358315 +sg291136 +g27 +sg291137 +S'Peter Fl\xc3\xb6tner' +p358316 +sa(dp358317 +g291130 +S'(artist)' +p358318 +sg291132 +S'\n' +p358319 +sg291134 +S'Saint John Composing "Revelation" on Patmos' +p358320 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358321 +sa(dp358322 +g291130 +S'German, 1574 - 1628' +p358323 +sg291132 +S'(related artist)' +p358324 +sg291134 +S'Athena Introducing the Personification of Painting into the Circle of the Liberal Arts' +p358325 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358326 +sa(dp358327 +g291130 +S', c. 1625' +p358328 +sg291132 +S'\n' +p358329 +sg291134 +S'James I, 1566-1625, King of England 1603 [obverse]' +p358330 +sg291136 +g27 +sg291137 +S'Simon van de Passe' +p358331 +sa(dp358332 +g291130 +S', c. 1625' +p358333 +sg291132 +S'\n' +p358334 +sg291134 +S'Prince Charles, 1600-1649, King of England 1625 [reverse]' +p358335 +sg291136 +g27 +sg291137 +S'Simon van de Passe' +p358336 +sa(dp358337 +g291130 +S'struck silver' +p358338 +sg291132 +S'1654' +p358339 +sg291134 +S'Peace with Holland [obverse]' +p358340 +sg291136 +g27 +sg291137 +S'Sebastian Dadler' +p358341 +sa(dp358342 +g291130 +S'struck silver' +p358343 +sg291132 +S'1654' +p358344 +sg291134 +S'The Navigation Acts [reverse]' +p358345 +sg291136 +g27 +sg291137 +S'Sebastian Dadler' +p358346 +sa(dp358347 +g291130 +S', 1676' +p358348 +sg291132 +S'\n' +p358349 +sg291134 +S'The Great Elector (?), or Don Johann of Austria (?) [obverse]' +p358350 +sg291136 +g27 +sg291137 +S'Christoph Sucro' +p358351 +sa(dp358352 +g291130 +S', 1676' +p358353 +sg291132 +S'\n' +p358354 +sg291134 +S'Lamb of the Redeemer [reverse]' +p358355 +sg291136 +g27 +sg291137 +S'Christoph Sucro' +p358356 +sa(dp358357 +g291130 +S', 1705' +p358358 +sg291132 +S'\n' +p358359 +sg291134 +S'Joseph I, 1678-1711, Holy Roman Emperor 1705 [obverse]' +p358360 +sg291136 +g27 +sg291137 +S'Johann Georg Seidlitz' +p358361 +sa(dp358362 +g291130 +S', 1705' +p358363 +sg291132 +S'\n' +p358364 +sg291134 +S'Uniting Europe [reverse]' +p358365 +sg291136 +g27 +sg291137 +S'Johann Georg Seidlitz' +p358366 +sa(dp358367 +g291134 +S'Virginia Deer' +p358368 +sg291137 +S'Antoine-Louis Barye' +p358369 +sg291130 +S'cast bronze' +p358370 +sg291132 +S'1831' +p358371 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00054/a000540a.jpg' +p358372 +sg291136 +g27 +sa(dp358373 +g291134 +S'Orpheus [obverse]' +p358374 +sg291137 +S'Marie-Alexandre-Lucien Coudray' +p358375 +sg291130 +S'silver' +p358376 +sg291132 +S'c. 1893' +p358377 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f597.jpg' +p358378 +sg291136 +g27 +sa(dp358379 +g291134 +S'1e Prix: Claude Debussy [reverse]' +p358380 +sg291137 +S'Marie-Alexandre-Lucien Coudray' +p358381 +sg291130 +S'silver' +p358382 +sg291132 +S'c. 1893' +p358383 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f5/a000f598.jpg' +p358384 +sg291136 +g27 +sa(dp358385 +g291130 +S'lithograph in black on Basingwerk Parchment' +p358386 +sg291132 +S'1948' +p358387 +sg291134 +S'Mother and Child' +p358388 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358389 +sa(dp358390 +g291130 +S'lithograph, aquatint, salt-ground (?), and engraving in black on machine-made parchment paper' +p358391 +sg291132 +S'c. 1950' +p358392 +sg291134 +S'The King' +p358393 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358394 +sa(dp358395 +g291130 +S'woodcut in black on natural Japanese paper' +p358396 +sg291132 +S'1948/1949' +p358397 +sg291134 +S'Panther in Tree' +p358398 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358399 +sa(dp358400 +g291130 +S'drypoint in black on Rives paper' +p358401 +sg291132 +S'1950' +p358402 +sg291134 +S'Woman on Horseback' +p358403 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358404 +sa(dp358405 +g291130 +S'lithograph in black on Rives paper' +p358406 +sg291132 +S'1950' +p358407 +sg291134 +S'Insect with Umbrella' +p358408 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358409 +sa(dp358410 +g291130 +S'woodcut in black over screenprint in green on Troya paper' +p358411 +sg291132 +S'1950' +p358412 +sg291134 +S'St. George and the Dragon (I)' +p358413 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358414 +sa(dp358415 +g291130 +S'woodcut in brown over screenprint in green on Troya paper' +p358416 +sg291132 +S'1950' +p358417 +sg291134 +S'St. George and the Dragon (I)' +p358418 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358419 +sa(dp358420 +g291130 +S'woodcut in brown on Troya paper' +p358421 +sg291132 +S'1950' +p358422 +sg291134 +S'St. George and the Dragon (I)' +p358423 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358424 +sa(dp358425 +g291130 +S'woodcut in blue on brown Kraft paper' +p358426 +sg291132 +S'1950' +p358427 +sg291134 +S'To Battle' +p358428 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358429 +sa(dp358430 +g291134 +S'Harlech Castle and Snowdon' +p358431 +sg291137 +S'John Varley' +p358432 +sg291130 +S'watercolor over graphite with sponging-out on wove paper' +p358433 +sg291132 +S'c. 1805' +p358434 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a0006977.jpg' +p358435 +sg291136 +g27 +sa(dp358436 +g291130 +S'aquatint, etching, engraving in black on white handmade(?) paper' +p358437 +sg291132 +S'1950' +p358438 +sg291134 +S'Knight on Horseback (I)' +p358439 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358440 +sa(dp358441 +g291130 +S'etching, aquatint, and engraving in black on cream wove paper' +p358442 +sg291132 +S'1950' +p358443 +sg291134 +S'Storming the Castle' +p358444 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358445 +sa(dp358446 +g291134 +S'Milsom Street in Bath' +p358447 +sg291137 +S'Thomas Malton' +p358448 +sg291130 +S'pen and gray and black ink with gray wash and watercolor over graphite on laid paper' +p358449 +sg291132 +S'1784' +p358450 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a000695d.jpg' +p358451 +sg291136 +g27 +sa(dp358452 +g291134 +S'Interior of Bushey Church' +p358453 +sg291137 +S'William Henry Hunt' +p358454 +sg291130 +S'pen and brown ink and watercolor over graphite on wove paper' +p358455 +sg291132 +S'1815/1820' +p358456 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00069/a0006972.jpg' +p358457 +sg291136 +g27 +sa(dp358458 +g291130 +S'woodcut in brown on natural Japanese paper' +p358459 +sg291132 +S'c. 1951' +p358460 +sg291134 +S'St. George and the Dragon (II)' +p358461 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358462 +sa(dp358463 +g291130 +S'color woodcut on white laid drawing paper' +p358464 +sg291132 +S'1951' +p358465 +sg291134 +S'Knight with Lady' +p358466 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358467 +sa(dp358468 +g291130 +S'color woodcut on cream wove paper' +p358469 +sg291132 +S'1951' +p358470 +sg291134 +S'Hunter with Dog' +p358471 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358472 +sa(dp358473 +g291130 +S'woodcut in black on green Strathmore charcoal paper' +p358474 +sg291132 +S'1951' +p358475 +sg291134 +S'Approaching the Castle' +p358476 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358477 +sa(dp358478 +g291130 +S'woodcut in black on gray Strathmore charcoal paper' +p358479 +sg291132 +S'1952' +p358480 +sg291134 +S'Two Sioux Indians' +p358481 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358482 +sa(dp358483 +g291130 +S'woodcut in black on Beverly Ingres paper' +p358484 +sg291132 +S'1952' +p358485 +sg291134 +S'Two Dancing Indians' +p358486 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358487 +sa(dp358488 +g291130 +S'color woodcut on cream laid paper' +p358489 +sg291132 +S'1952' +p358490 +sg291134 +S'A Cherokee Brave' +p358491 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358492 +sa(dp358493 +g291130 +S'etching and aquatint in black on Rives Heavyweight paper' +p358494 +sg291132 +S'1952' +p358495 +sg291134 +S'Indians Pursued by American Dragoons' +p358496 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358497 +sa(dp358498 +g291130 +S'woodcut in black on natural Japanese paper' +p358499 +sg291132 +S'1953' +p358500 +sg291134 +S'Two Indians' +p358501 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358502 +sa(dp358503 +g291130 +S'woodcut in black on natural Japanese paper' +p358504 +sg291132 +S'1953' +p358505 +sg291134 +S'Indian with Pony' +p358506 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358507 +sa(dp358508 +g291130 +S'woodcut in black on natural Japanese paper' +p358509 +sg291132 +S'1953' +p358510 +sg291134 +S'The United States and the Macedonian' +p358511 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358512 +sa(dp358513 +g291130 +S'woodcut in black on natural Japanese paper' +p358514 +sg291132 +S'1953' +p358515 +sg291134 +S'Isaac Hull Esq.' +p358516 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358517 +sa(dp358518 +g291130 +S'color woodcut on Japanese paper' +p358519 +sg291132 +S'1953' +p358520 +sg291134 +S'The Heavier-than-Air Machine' +p358521 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358522 +sa(dp358523 +g291130 +S'color woodcut on Japanese paper' +p358524 +sg291132 +S'1953' +p358525 +sg291134 +S'The Heavier-than-Air Machine' +p358526 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358527 +sa(dp358528 +g291130 +S'lithograph in black on Rives paper' +p358529 +sg291132 +S'1956' +p358530 +sg291134 +S'Ten Dollar Bill' +p358531 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358532 +sa(dp358533 +g291130 +g27 +sg291132 +S'(printer)' +p358534 +sg291134 +S'The Chief' +p358535 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358536 +sa(dp358537 +g291130 +g27 +sg291132 +S'(printer)' +p358538 +sg291134 +S'Warrior on Horseback' +p358539 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358540 +sa(dp358541 +g291130 +S'woodcut in black on mulberry paper' +p358542 +sg291132 +S'1957' +p358543 +sg291134 +S'Untitled (Illustration for "Polemic" Magazine)' +p358544 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358545 +sa(dp358546 +g291130 +g27 +sg291132 +S'(publisher)' +p358547 +sg291134 +S'Castelli Handshake Poster' +p358548 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358549 +sa(dp358550 +g291130 +S'color offset lithograph on lightweight, off-white wove paper' +p358551 +sg291132 +S'1963' +p358552 +sg291134 +S'Crying Girl' +p358553 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358554 +sa(dp358555 +g291130 +S'offset lithograph (halftone) in black, on lightweight, off-white wove paper' +p358556 +sg291132 +S'1963' +p358557 +sg291134 +S'Foot Medication Poster' +p358558 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358559 +sa(dp358560 +g291130 +S'offset lithograph in blue and black on white wove paper' +p358561 +sg291132 +S'1963' +p358562 +sg291134 +S'Sock Announcement' +p358563 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358564 +sa(dp358565 +g291130 +g27 +sg291132 +S'(publisher)' +p358566 +sg291134 +S'CRAK!' +p358567 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358568 +sa(dp358569 +g291130 +S'screenprint in red and yellow on smooth, white wove paper bag with handles' +p358570 +sg291132 +S'1964' +p358571 +sg291134 +S'Turkey Shopping Bag' +p358572 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358573 +sa(dp358574 +g291130 +g27 +sg291132 +S'(publisher)' +p358575 +sg291134 +S'Shipboard Girl' +p358576 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358577 +sa(dp358578 +g291130 +g27 +sg291132 +S'(publisher)' +p358579 +sg291134 +S'Sunrise' +p358580 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358581 +sa(dp358582 +g291130 +S'color screenprint on heavy, smooth, white wove paper' +p358583 +sg291132 +S'1965' +p358584 +sg291134 +S'Sweet Dreams Baby!' +p358585 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358586 +sa(dp358587 +g291134 +S'Brushstroke' +p358588 +sg291137 +S'Artist Information (' +p358589 +sg291130 +g27 +sg291132 +S'(publisher)' +p358590 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00050/a000502d.jpg' +p358591 +sg291136 +g27 +sa(dp358592 +g291130 +g27 +sg291132 +S'(printer)' +p358593 +sg291134 +S'Paris Review Poster' +p358594 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358595 +sa(dp358596 +g291136 +g27 +sg291134 +S'Study for Portfolio Cover: "Folk Art of Rural Pennsylvania"' +p358597 +sg291137 +S'American 20th Century' +p358598 +sa(dp358599 +g291130 +S'offset lithograph in yellow, red, blue, and black on smooth, white wove paper' +p358600 +sg291132 +S'1966' +p358601 +sg291134 +S'Lincoln Center Poster' +p358602 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358603 +sa(dp358604 +g291136 +g27 +sg291134 +S'Study for Portfolio Cover: "Folk Art of Rural Pennsylvania"' +p358605 +sg291137 +S'American 20th Century' +p358606 +sa(dp358607 +g291136 +g27 +sg291134 +S'Study for Portfolio Cover: "Folk Art of Rural Pennsylvania"' +p358608 +sg291137 +S'American 20th Century' +p358609 +sa(dp358610 +g291130 +S'American' +p358611 +sg291132 +S'(printer)' +p358612 +sg291134 +S'Fish and Sky' +p358613 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358614 +sa(dp358615 +g291130 +S'active c. 1967' +p358616 +sg291132 +S'(printer)' +p358617 +sg291134 +S'Landscape 1' +p358618 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358619 +sa(dp358620 +g291130 +g27 +sg291132 +S'(printer)' +p358621 +sg291134 +S'Brushstrokes' +p358622 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358623 +sa(dp358624 +g291130 +S'American, born 1927' +p358625 +sg291132 +S'(printer)' +p358626 +sg291134 +S'Explosion' +p358627 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358628 +sa(dp358629 +g291130 +S'active c. 1967' +p358630 +sg291132 +S'(printer)' +p358631 +sg291134 +S'Merton of the Movies' +p358632 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358633 +sa(dp358634 +g291130 +S'color screenprint on smooth, white wove paper' +p358635 +sg291132 +S'1968' +p358636 +sg291134 +S'Salute to Aviation' +p358637 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358638 +sa(dp358639 +g291130 +S'offset lithograph in yellow and blue on white wove paper' +p358640 +sg291132 +S'1968' +p358641 +sg291134 +S'Joanna' +p358642 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358643 +sa(dp358644 +g291130 +g27 +sg291132 +S'(printer)' +p358645 +sg291134 +S'Pyramid' +p358646 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358647 +sa(dp358648 +g291130 +S'screenprint in yellow, red, and blue on paper plate' +p358649 +sg291132 +S'1969' +p358650 +sg291134 +S'Paper Plate' +p358651 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358652 +sa(dp358653 +g291130 +g27 +sg291132 +S'(printer)' +p358654 +sg291134 +S'Repeated Design' +p358655 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358656 +sa(dp358657 +g291130 +S'color screenprint on C.M. Fabriano-100/100 Cotone paper' +p358658 +sg291132 +S'1969' +p358659 +sg291134 +S'Red Barn' +p358660 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358661 +sa(dp358662 +g291130 +S'color screenprint on Rives paper' +p358663 +sg291132 +S'1969' +p358664 +sg291134 +S'The Solomon R. Guggenheim Museum Poster' +p358665 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358666 +sa(dp358667 +g291130 +S'active c. 1968' +p358668 +sg291132 +S'(printer)' +p358669 +sg291134 +S'Wrapping Paper' +p358670 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358671 +sa(dp358672 +g291130 +g27 +sg291132 +S'(printer)' +p358673 +sg291134 +S'Pyramids' +p358674 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358675 +sa(dp358676 +g291130 +g27 +sg291132 +S'(printer)' +p358677 +sg291134 +S'Real Estate' +p358678 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358679 +sa(dp358680 +g291130 +S'screenprint in yellow and black on C. M. Fabriano 100/100 Cotone paper' +p358681 +sg291132 +S'1969' +p358682 +sg291134 +S'Haystack' +p358683 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358684 +sa(dp358685 +g291130 +S'color screenprint on aluminum with C.M. Fabriano - 100/100 Cotone paper mat' +p358686 +sg291132 +S'1969' +p358687 +sg291134 +S'Industry and the Arts (I)' +p358688 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358689 +sa(dp358690 +g291130 +S'color screenprint on C.M. Fabriano-100/100 Cotone paper' +p358691 +sg291132 +S'1969' +p358692 +sg291134 +S'Industry and the Arts (II)' +p358693 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358694 +sa(dp358695 +g291130 +g27 +sg291132 +S'(printer)' +p358696 +sg291134 +S'Twin Mirrors' +p358697 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358698 +sa(dp358699 +g291130 +g27 +sg291132 +S'(printer)' +p358700 +sg291134 +S'Save Our Planet Save Our Water' +p358701 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358702 +sa(dp358703 +g291130 +S'lithograph in red and black on Arches paper' +p358704 +sg291132 +S'1971' +p358705 +sg291134 +S'Mao' +p358706 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358707 +sa(dp358708 +g291130 +g27 +sg291132 +S'(printer)' +p358709 +sg291134 +S'Mirror' +p358710 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358711 +sa(dp358712 +g291130 +S'American, born 1931' +p358713 +sg291132 +S'(printer)' +p358714 +sg291134 +S'Still Life with Picasso' +p358715 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358716 +sa(dp358717 +g291130 +g27 +sg291132 +S'(printer)' +p358718 +sg291134 +S'Untitled (Still Life with Lemon and Glass)' +p358719 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358720 +sa(dp358721 +g291130 +S'color lithograph and screenprint on Rives BFK paper' +p358722 +sg291132 +S'1974' +p358723 +sg291134 +S'Yellow Still Life' +p358724 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358725 +sa(dp358726 +g291130 +S'color lithograph and screenprint with debossing on Rives BFK paper' +p358727 +sg291132 +S'1974' +p358728 +sg291134 +S'Still Life with Windmill' +p358729 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358730 +sa(dp358731 +g291130 +S'color lithograph and screenprint with debossing on Rives BFK paper' +p358732 +sg291132 +S'1974' +p358733 +sg291134 +S'Still Life with Portrait' +p358734 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358735 +sa(dp358736 +g291130 +S'color lithograph and screenprint on Rives BFK paper' +p358737 +sg291132 +S'1974' +p358738 +sg291134 +S'Still Life with Pitcher and Flowers' +p358739 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358740 +sa(dp358741 +g291130 +S'color lithograph and screenprint on Rives BFK paper' +p358742 +sg291132 +S'1974' +p358743 +sg291134 +S'Still Life with Lobster' +p358744 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358745 +sa(dp358746 +g291130 +S'color lithograph and screenprint on Rives BFK paper' +p358747 +sg291132 +S'1974' +p358748 +sg291134 +S'Still Life with Figurine' +p358749 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358750 +sa(dp358751 +g291130 +g27 +sg291132 +S'(printer)' +p358752 +sg291134 +S'Bicentennial Print' +p358753 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358754 +sa(dp358755 +g291130 +S'linocut in black on Arches paper' +p358756 +sg291132 +S'1975' +p358757 +sg291134 +S'Knock, Knock Poster' +p358758 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358759 +sa(dp358760 +g291130 +g27 +sg291132 +S'(printer)' +p358761 +sg291134 +S'Homage to Max Ernst' +p358762 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358763 +sa(dp358764 +g291130 +S'color screenprint on Arches paper' +p358765 +sg291132 +S'1976' +p358766 +sg291134 +S'...Huh?' +p358767 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358768 +sa(dp358769 +g291130 +g27 +sg291132 +S'(printer)' +p358770 +sg291134 +S'Still Life with Crystal Bowl' +p358771 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358772 +sa(dp358773 +g291130 +g27 +sg291132 +S'(publisher)' +p358774 +sg291134 +S'American Indian Theme I' +p358775 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358776 +sa(dp358777 +g291130 +g27 +sg291132 +S'(printer)' +p358778 +sg291134 +S'Head with Feathers and Braid' +p358779 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358780 +sa(dp358781 +g291130 +g27 +sg291132 +S'(printer)' +p358782 +sg291134 +S'Figure with Teepee' +p358783 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358784 +sa(dp358785 +g291130 +g27 +sg291132 +S'(printer)' +p358786 +sg291134 +S'Night Scene' +p358787 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358788 +sa(dp358789 +g291130 +g27 +sg291132 +S'(printer)' +p358790 +sg291134 +S'Two Figures with Teepee' +p358791 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358792 +sa(dp358793 +g291130 +S'American, 1923 - 1997' +p358794 +sg291132 +S'(artist)' +p358795 +sg291134 +S'Dancing Figures' +p358796 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358797 +sa(dp358798 +g291130 +g27 +sg291132 +S'(printer)' +p358799 +sg291134 +S'Head with Braids' +p358800 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358801 +sa(dp358802 +g291130 +g27 +sg291132 +S'(printer)' +p358803 +sg291134 +S'Picture and Pitcher' +p358804 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358805 +sa(dp358806 +g291130 +S'color woodcut on natural handmade Okawara paper' +p358807 +sg291132 +S'1981' +p358808 +sg291134 +S'Lamp' +p358809 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358810 +sa(dp358811 +g291130 +g27 +sg291132 +S'(publisher)' +p358812 +sg291134 +S'Goldfish Bowl' +p358813 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358814 +sa(dp358815 +g291130 +g27 +sg291132 +S'(printer)' +p358816 +sg291134 +S'Study of Hands' +p358817 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358818 +sa(dp358819 +g291130 +S'color screenprint on Arches 88 paper' +p358820 +sg291132 +S'1982' +p358821 +sg291134 +S'I Love Liberty' +p358822 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358823 +sa(dp358824 +g291130 +g27 +sg291132 +S'(printer)' +p358825 +sg291134 +S'Red Apple' +p358826 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358827 +sa(dp358828 +g291130 +g27 +sg291132 +S'(printer)' +p358829 +sg291134 +S'Apple with Gray Background' +p358830 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358831 +sa(dp358832 +g291130 +g27 +sg291132 +S'(printer)' +p358833 +sg291134 +S'Red Apple and Yellow Apple' +p358834 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358835 +sa(dp358836 +g291130 +g27 +sg291132 +S'(printer)' +p358837 +sg291134 +S'Two Apples' +p358838 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358839 +sa(dp358840 +g291130 +g27 +sg291132 +S'(printer)' +p358841 +sg291134 +S'Red and Yellow Apple' +p358842 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358843 +sa(dp358844 +g291130 +S'color woodcut on handmade Iwano Kizuki Hosho paper' +p358845 +sg291132 +S'1983' +p358846 +sg291134 +S'Vertical Apple' +p358847 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358848 +sa(dp358849 +g291130 +S'color woodcut on handmade Iwano Kizuki Hosho paper' +p358850 +sg291132 +S'1983' +p358851 +sg291134 +S'Apple and Lemon' +p358852 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358853 +sa(dp358854 +g291130 +S'color screenprint on Rives BFK paper' +p358855 +sg291132 +S'1985' +p358856 +sg291134 +S'Forms in Space' +p358857 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358858 +sa(dp358859 +g291130 +S'color lithograph on Rives BFK paper' +p358860 +sg291132 +S'1989' +p358861 +sg291134 +S'Brushstroke Contest' +p358862 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358863 +sa(dp358864 +g291130 +S'color lithograph on Rives BFK paper' +p358865 +sg291132 +S'1989' +p358866 +sg291134 +S'Brushstroke on Canvas' +p358867 +sg291136 +g27 +sg291137 +S'Roy Lichtenstein' +p358868 +sa(dp358869 +g291130 +S'American, born 1931' +p358870 +sg291132 +S'(printer)' +p358871 +sg291134 +S'Tel Aviv Museum Print' +p358872 +sg291136 +g27 +sg291137 +S'Artist Information (' +p358873 +sa(dp358874 +g291134 +S'Pierre Gassendi' +p358875 +sg291137 +S'Robert Nanteuil' +p358876 +sg291130 +S'engraving' +p358877 +sg291132 +S'1658' +p358878 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b4b.jpg' +p358879 +sg291136 +g27 +sa(dp358880 +g291134 +S'Cardinal de Furstenberg' +p358881 +sg291137 +S'Robert Nanteuil' +p358882 +sg291130 +S'engraving' +p358883 +sg291132 +S'1672' +p358884 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dd9.jpg' +p358885 +sg291136 +g27 +sa(dp358886 +g291134 +S'Jean Fronteau' +p358887 +sg291137 +S'Artist Information (' +p358888 +sg291130 +S'(artist after)' +p358889 +sg291132 +S'\n' +p358890 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a22.jpg' +p358891 +sg291136 +g27 +sa(dp358892 +g291134 +S'Jean Fronteau' +p358893 +sg291137 +S'Artist Information (' +p358894 +sg291130 +S'(artist after)' +p358895 +sg291132 +S'\n' +p358896 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a23.jpg' +p358897 +sg291136 +g27 +sa(dp358898 +g291134 +S'Nicolas Fouquet' +p358899 +sg291137 +S'Robert Nanteuil' +p358900 +sg291130 +S'engraving' +p358901 +sg291132 +S'1661' +p358902 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b52.jpg' +p358903 +sg291136 +g27 +sa(dp358904 +g291134 +S'Basile Fouquet' +p358905 +sg291137 +S'Robert Nanteuil' +p358906 +sg291130 +S'engraving' +p358907 +sg291132 +S'1658' +p358908 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b530.jpg' +p358909 +sg291136 +g27 +sa(dp358910 +g291134 +S'Charles IV of Spain as Huntsman' +p358911 +sg291137 +S'Artist Information (' +p358912 +sg291130 +S'Spanish, 1746 - 1828' +p358913 +sg291132 +S'(related artist)' +p358914 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00005/a000054a.jpg' +p358915 +sg291136 +g27 +sa(dp358916 +g291134 +S'Tommaso Salini' +p358917 +sg291137 +S'Ottavio Leoni' +p358918 +sg291130 +S'engraving' +p358919 +sg291132 +S'1625' +p358920 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00060/a00060f8.jpg' +p358921 +sg291136 +g27 +sa(dp358922 +g291134 +S'Gaspard de Fieubet' +p358923 +sg291137 +S'Robert Nanteuil' +p358924 +sg291130 +S'engraving' +p358925 +sg291132 +S'1654' +p358926 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b533.jpg' +p358927 +sg291136 +g27 +sa(dp358928 +g291134 +S'Hippolyte Feret' +p358929 +sg291137 +S'Robert Nanteuil' +p358930 +sg291130 +S'engraving' +p358931 +sg291132 +S'1669' +p358932 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b52d.jpg' +p358933 +sg291136 +g27 +sa(dp358934 +g291134 +S'Charles Faure' +p358935 +sg291137 +S'Robert Nanteuil' +p358936 +sg291130 +S'engraving' +p358937 +sg291132 +S'1648' +p358938 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a29.jpg' +p358939 +sg291136 +g27 +sa(dp358940 +g291134 +S'John Evelyn' +p358941 +sg291137 +S'Robert Nanteuil' +p358942 +sg291130 +S'engraving' +p358943 +sg291132 +S'1650' +p358944 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b54a.jpg' +p358945 +sg291136 +g27 +sa(dp358946 +g291134 +S"Cardinal d'Estrees" +p358947 +sg291137 +S'Robert Nanteuil' +p358948 +sg291130 +S'engraving' +p358949 +sg291132 +S'1660' +p358950 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b53c.jpg' +p358951 +sg291136 +g27 +sa(dp358952 +g291134 +S"Bernard, Duc d'Epernon" +p358953 +sg291137 +S'Robert Nanteuil' +p358954 +sg291130 +S'engraving' +p358955 +sg291132 +S'1650' +p358956 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b536.jpg' +p358957 +sg291136 +g27 +sa(dp358958 +g291134 +S"Jules, Duc d'Enghien" +p358959 +sg291137 +S'Artist Information (' +p358960 +sg291130 +S'(artist after)' +p358961 +sg291132 +S'\n' +p358962 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b539.jpg' +p358963 +sg291136 +g27 +sa(dp358964 +g291134 +S'Pierre and Jacques Dupuy' +p358965 +sg291137 +S'Robert Nanteuil' +p358966 +sg291130 +S'engraving' +p358967 +sg291132 +S'1649' +p358968 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b544.jpg' +p358969 +sg291136 +g27 +sa(dp358970 +g291134 +S'Pierre Dupuy' +p358971 +sg291137 +S'Robert Nanteuil' +p358972 +sg291130 +S'engraving' +p358973 +sg291132 +S'1651' +p358974 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a26.jpg' +p358975 +sg291136 +g27 +sa(dp358976 +g291134 +S'Marquis de Louvois' +p358977 +sg291137 +S'Robert Nanteuil' +p358978 +sg291130 +S'engraving' +p358979 +sg291132 +S'1677' +p358980 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cab.jpg' +p358981 +sg291136 +g27 +sa(dp358982 +g291134 +S'Giovanni Baglione' +p358983 +sg291137 +S'Ottavio Leoni' +p358984 +sg291130 +S'engraving' +p358985 +sg291132 +S'1625' +p358986 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00060/a00060f5.jpg' +p358987 +sg291136 +g27 +sa(dp358988 +g291134 +S'Louis, Dauphin de France' +p358989 +sg291137 +S'Robert Nanteuil' +p358990 +sg291130 +S'engraving' +p358991 +sg291132 +S'1677' +p358992 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008caa.jpg' +p358993 +sg291136 +g27 +sa(dp358994 +g291134 +S'Louis XIV' +p358995 +sg291137 +S'Robert Nanteuil' +p358996 +sg291130 +S'engraving' +p358997 +sg291132 +S'1676' +p358998 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cac.jpg' +p358999 +sg291136 +g27 +sa(dp359000 +g291130 +S'engraving' +p359001 +sg291132 +S'1672' +p359002 +sg291134 +S'Louis XIV' +p359003 +sg291136 +g27 +sg291137 +S'Robert Nanteuil' +p359004 +sa(dp359005 +g291134 +S'Louis XIV' +p359006 +sg291137 +S'Robert Nanteuil' +p359007 +sg291130 +S'engraving' +p359008 +sg291132 +S'1669' +p359009 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cad.jpg' +p359010 +sg291136 +g27 +sa(dp359011 +g291130 +S'engraving' +p359012 +sg291132 +S'1668' +p359013 +sg291134 +S'Louis XIV' +p359014 +sg291136 +g27 +sg291137 +S'Robert Nanteuil' +p359015 +sa(dp359016 +g291134 +S'Louis XIV' +p359017 +sg291137 +S'Robert Nanteuil' +p359018 +sg291130 +S'engraving' +p359019 +sg291132 +S'1670' +p359020 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cae.jpg' +p359021 +sg291136 +g27 +sa(dp359022 +g291134 +S'Louis XIV' +p359023 +sg291137 +S'Robert Nanteuil' +p359024 +sg291130 +S'engraving' +p359025 +sg291132 +S'1666' +p359026 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008ddb.jpg' +p359027 +sg291136 +g27 +sa(dp359028 +g291134 +S'Louis XIV' +p359029 +sg291137 +S'Robert Nanteuil' +p359030 +sg291130 +S'engraving' +p359031 +sg291132 +S'1664' +p359032 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dd6.jpg' +p359033 +sg291136 +g27 +sa(dp359034 +g291134 +S'Louis XIV' +p359035 +sg291137 +S'Robert Nanteuil' +p359036 +sg291130 +S'engraving' +p359037 +sg291132 +S'1664' +p359038 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008de2.jpg' +p359039 +sg291136 +g27 +sa(dp359040 +g291130 +S'engraving' +p359041 +sg291132 +S'1663' +p359042 +sg291134 +S'Louis XIV' +p359043 +sg291136 +g27 +sg291137 +S'Robert Nanteuil' +p359044 +sa(dp359045 +g291134 +S'Giovanni Francesco Barbieri, called Guercino' +p359046 +sg291137 +S'Ottavio Leoni' +p359047 +sg291130 +S'engraving' +p359048 +sg291132 +S'1623' +p359049 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00060/a00060f7.jpg' +p359050 +sg291136 +g27 +sa(dp359051 +g291134 +S'Louis XIV' +p359052 +sg291137 +S'Robert Nanteuil' +p359053 +sg291130 +S'engraving' +p359054 +sg291132 +S'1662' +p359055 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008de1.jpg' +p359056 +sg291136 +g27 +sa(dp359057 +g291134 +S'Louis XIV' +p359058 +sg291137 +S'Artist Information (' +p359059 +sg291130 +S'(artist after)' +p359060 +sg291132 +S'\n' +p359061 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008ddf.jpg' +p359062 +sg291136 +g27 +sa(dp359063 +g291134 +S'Francois Lotin' +p359064 +sg291137 +S'Robert Nanteuil' +p359065 +sg291130 +S'engraving' +p359066 +sg291132 +S'1657' +p359067 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b7c.jpg' +p359068 +sg291136 +g27 +sa(dp359069 +g291134 +S'Charles V, Duc de Lorraine' +p359070 +sg291137 +S'Robert Nanteuil' +p359071 +sg291130 +S'engraving' +p359072 +sg291132 +S'1660' +p359073 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b7f.jpg' +p359074 +sg291136 +g27 +sa(dp359075 +g291134 +S'Jean Loret' +p359076 +sg291137 +S'Robert Nanteuil' +p359077 +sg291130 +S'engraving' +p359078 +sg291132 +S'1658' +p359079 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b78.jpg' +p359080 +sg291136 +g27 +sa(dp359081 +g291134 +S'Jean Loret' +p359082 +sg291137 +S'Robert Nanteuil' +p359083 +sg291130 +S'engraving' +p359084 +sg291132 +S'1658' +p359085 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b79.jpg' +p359086 +sg291136 +g27 +sa(dp359087 +g291134 +S"Henri II d'Orl\xc3\xa9ans, Duc de Longueville" +p359088 +sg291137 +S'Artist Information (' +p359089 +sg291130 +S'(artist after)' +p359090 +sg291132 +S'\n' +p359091 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b7b.jpg' +p359092 +sg291136 +g27 +sa(dp359093 +g291134 +S'Jules-Paul de Lionne' +p359094 +sg291137 +S'Robert Nanteuil' +p359095 +sg291130 +S'engraving' +p359096 +sg291132 +S'1667' +p359097 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b81.jpg' +p359098 +sg291136 +g27 +sa(dp359099 +g291134 +S'Hugues de Lionne' +p359100 +sg291137 +S'Robert Nanteuil' +p359101 +sg291130 +S'engraving' +p359102 +sg291132 +S'1655' +p359103 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a25.jpg' +p359104 +sg291136 +g27 +sa(dp359105 +g291134 +S'Dominique de Ligny' +p359106 +sg291137 +S'Robert Nanteuil' +p359107 +sg291130 +S'engraving' +p359108 +sg291132 +S'1661' +p359109 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b74.jpg' +p359110 +sg291136 +g27 +sa(dp359111 +g291134 +S'Gian Lorenzo Bernini' +p359112 +sg291137 +S'Ottavio Leoni' +p359113 +sg291130 +S'engraving' +p359114 +sg291132 +S'1622' +p359115 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00060/a00060f6.jpg' +p359116 +sg291136 +g27 +sa(dp359117 +g291134 +S'Dominique de Ligny' +p359118 +sg291137 +S'Robert Nanteuil' +p359119 +sg291130 +S'engraving' +p359120 +sg291132 +S'1654' +p359121 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b73.jpg' +p359122 +sg291136 +g27 +sa(dp359123 +g291134 +S'Charles-Maurice Le Tellier' +p359124 +sg291137 +S'Robert Nanteuil' +p359125 +sg291130 +S'engraving' +p359126 +sg291132 +S'1672' +p359127 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dd4.jpg' +p359128 +sg291136 +g27 +sa(dp359129 +g291134 +S'Charles-Maurice Le Tellier' +p359130 +sg291137 +S'Robert Nanteuil' +p359131 +sg291130 +S'engraving' +p359132 +sg291132 +S'1672' +p359133 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008ddd.jpg' +p359134 +sg291136 +g27 +sa(dp359135 +g291134 +S'Charles-Maurice Le Tellier' +p359136 +sg291137 +S'Robert Nanteuil' +p359137 +sg291130 +S'engraving' +p359138 +sg291132 +S'1670' +p359139 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b6e.jpg' +p359140 +sg291136 +g27 +sa(dp359141 +g291134 +S'Charles-Maurice Le Tellier' +p359142 +sg291137 +S'Robert Nanteuil' +p359143 +sg291130 +S'engraving' +p359144 +sg291132 +S'1663' +p359145 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b75.jpg' +p359146 +sg291136 +g27 +sa(dp359147 +g291134 +S'Charles-Maurice Le Tellier' +p359148 +sg291137 +S'Robert Nanteuil' +p359149 +sg291130 +S'engraving' +p359150 +sg291132 +S'1663' +p359151 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b6f.jpg' +p359152 +sg291136 +g27 +sa(dp359153 +g291134 +S'Chancellor Michel Le Tellier' +p359154 +sg291137 +S'Robert Nanteuil' +p359155 +sg291130 +S'engraving' +p359156 +sg291132 +S'1678' +p359157 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dd5.jpg' +p359158 +sg291136 +g27 +sa(dp359159 +g291130 +S'engraving' +p359160 +sg291132 +S'1678' +p359161 +sg291134 +S'Chancellor Michel Le Tellier' +p359162 +sg291136 +g27 +sg291137 +S'Robert Nanteuil' +p359163 +sa(dp359164 +g291134 +S'Chancellor Michel Le Tellier' +p359165 +sg291137 +S'Robert Nanteuil' +p359166 +sg291130 +S'engraving' +p359167 +sg291132 +S'1662' +p359168 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008de0.jpg' +p359169 +sg291136 +g27 +sa(dp359170 +g291134 +S'Chancellor Michel Le Tellier' +p359171 +sg291137 +S'Robert Nanteuil' +p359172 +sg291130 +S'engraving' +p359173 +sg291132 +S'1662' +p359174 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b71.jpg' +p359175 +sg291136 +g27 +sa(dp359176 +g291134 +S'Paolo Giordano Orsini II' +p359177 +sg291137 +S'Ottavio Leoni' +p359178 +sg291130 +S'engraving' +p359179 +sg291132 +S'unknown date\n' +p359180 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00061/a000611f.jpg' +p359181 +sg291136 +g27 +sa(dp359182 +g291134 +S'Chancellor Michel Le Tellier' +p359183 +sg291137 +S'Robert Nanteuil' +p359184 +sg291130 +S'engraving' +p359185 +sg291132 +S'1661' +p359186 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b72.jpg' +p359187 +sg291136 +g27 +sa(dp359188 +g291134 +S'Chancellor Michel Le Tellier' +p359189 +sg291137 +S'Robert Nanteuil' +p359190 +sg291130 +S'engraving' +p359191 +sg291132 +S'1661' +p359192 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b6d.jpg' +p359193 +sg291136 +g27 +sa(dp359194 +g291134 +S'Chancellor Michel Le Tellier' +p359195 +sg291137 +S'Robert Nanteuil' +p359196 +sg291130 +S'engraving' +p359197 +sg291132 +S'1659' +p359198 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b70.jpg' +p359199 +sg291136 +g27 +sa(dp359200 +g291134 +S'Francois Servien' +p359201 +sg291137 +S'Artist Information (' +p359202 +sg291130 +S'(artist after)' +p359203 +sg291132 +S'\n' +p359204 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c14.jpg' +p359205 +sg291136 +g27 +sa(dp359206 +g291134 +S'Chancellor Pierre Seguier' +p359207 +sg291137 +S'Artist Information (' +p359208 +sg291130 +S'(artist after)' +p359209 +sg291132 +S'\n' +p359210 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c12.jpg' +p359211 +sg291136 +g27 +sa(dp359212 +g291130 +S'(artist after)' +p359213 +sg291132 +S'\n' +p359214 +sg291134 +S'Chancellor Pierre Seguier' +p359215 +sg291136 +g27 +sg291137 +S'Artist Information (' +p359216 +sa(dp359217 +g291134 +S'Georges de Scudery' +p359218 +sg291137 +S'Robert Nanteuil' +p359219 +sg291130 +S'engraving' +p359220 +sg291132 +S'1654' +p359221 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c0d.jpg' +p359222 +sg291136 +g27 +sa(dp359223 +g291134 +S'Georges de Scudery' +p359224 +sg291137 +S'Robert Nanteuil' +p359225 +sg291130 +S'engraving' +p359226 +sg291132 +S'1654' +p359227 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c0e.jpg' +p359228 +sg291136 +g27 +sa(dp359229 +g291134 +S'Marie-Jeanne-Baptiste, Duchesse de Savoie' +p359230 +sg291137 +S'Artist Information (' +p359231 +sg291130 +S'(artist after)' +p359232 +sg291132 +S'\n' +p359233 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c16.jpg' +p359234 +sg291136 +g27 +sa(dp359235 +g291134 +S'Charles-Emmanuel, Duc de Savoie' +p359236 +sg291137 +S'Artist Information (' +p359237 +sg291130 +S'(artist after)' +p359238 +sg291132 +S'\n' +p359239 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cb2.jpg' +p359240 +sg291136 +g27 +sa(dp359241 +g291134 +S'Giuseppe Cesari' +p359242 +sg291137 +S'Ottavio Leoni' +p359243 +sg291130 +S'engraving' +p359244 +sg291132 +S'1621' +p359245 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00061/a000611e.jpg' +p359246 +sg291136 +g27 +sa(dp359247 +g291134 +S'Jean-Pierre Sarrazin' +p359248 +sg291137 +S'Robert Nanteuil' +p359249 +sg291130 +S'engraving' +p359250 +sg291132 +S'1656' +p359251 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a2f.jpg' +p359252 +sg291136 +g27 +sa(dp359253 +g291134 +S"Charles-Paris d'Orl\xc3\xa9ans-Longueville, Comte de Saint-Pol" +p359254 +sg291137 +S'Robert Nanteuil' +p359255 +sg291130 +S'engraving' +p359256 +sg291132 +S'1660' +p359257 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c11.jpg' +p359258 +sg291136 +g27 +sa(dp359259 +g291134 +S'Cardinal Richelieu' +p359260 +sg291137 +S'Artist Information (' +p359261 +sg291130 +S'(artist after)' +p359262 +sg291132 +S'\n' +p359263 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c15.jpg' +p359264 +sg291136 +g27 +sa(dp359265 +g291134 +S'Cardinal de Retz' +p359266 +sg291137 +S'Robert Nanteuil' +p359267 +sg291130 +S'engraving' +p359268 +sg291132 +S'1650' +p359269 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c0a.jpg' +p359270 +sg291136 +g27 +sa(dp359271 +g291134 +S'Claude Regnauldin' +p359272 +sg291137 +S'Robert Nanteuil' +p359273 +sg291130 +S'engraving' +p359274 +sg291132 +S'1658' +p359275 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c09.jpg' +p359276 +sg291136 +g27 +sa(dp359277 +g291134 +S'Pierre Poncet' +p359278 +sg291137 +S'Robert Nanteuil' +p359279 +sg291130 +S'engraving' +p359280 +sg291132 +S'1660' +p359281 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c04.jpg' +p359282 +sg291136 +g27 +sa(dp359283 +g291134 +S'Pierre Poncet' +p359284 +sg291137 +S'Robert Nanteuil' +p359285 +sg291130 +S'engraving' +p359286 +sg291132 +S'1660' +p359287 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c06.jpg' +p359288 +sg291136 +g27 +sa(dp359289 +g291134 +S'Simon Arnauld, Le Marquis de Pomponne' +p359290 +sg291137 +S'Robert Nanteuil' +p359291 +sg291130 +S'engraving' +p359292 +sg291132 +S'1675' +p359293 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cb8.jpg' +p359294 +sg291136 +g27 +sa(dp359295 +g291134 +S'Louis-Marie, Queen of Poland' +p359296 +sg291137 +S'Artist Information (' +p359297 +sg291130 +S'(artist after)' +p359298 +sg291132 +S'\n' +p359299 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a30.jpg' +p359300 +sg291136 +g27 +sa(dp359301 +g291134 +S'Hardouin de Perefixe' +p359302 +sg291137 +S'Robert Nanteuil' +p359303 +sg291130 +S'engraving' +p359304 +sg291132 +S'1665' +p359305 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c0b.jpg' +p359306 +sg291136 +g27 +sa(dp359307 +g291134 +S'Giovanni Ciampoli, Papal Secretary' +p359308 +sg291137 +S'Ottavio Leoni' +p359309 +sg291130 +S'engraving' +p359310 +sg291132 +S'1627' +p359311 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00061/a000611d.jpg' +p359312 +sg291136 +g27 +sa(dp359313 +g291134 +S'Hardouin de Perefixe' +p359314 +sg291137 +S'Robert Nanteuil' +p359315 +sg291130 +S'engraving' +p359316 +sg291132 +S'1663' +p359317 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cb9.jpg' +p359318 +sg291136 +g27 +sa(dp359319 +g291134 +S'Hardouin de Perefixe' +p359320 +sg291137 +S'Robert Nanteuil' +p359321 +sg291130 +S'engraving' +p359322 +sg291132 +S'1663' +p359323 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c01.jpg' +p359324 +sg291136 +g27 +sa(dp359325 +g291134 +S'Hardouin de Perefixe' +p359326 +sg291137 +S'Robert Nanteuil' +p359327 +sg291130 +S'engraving' +p359328 +sg291132 +S'1662' +p359329 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c08.jpg' +p359330 +sg291136 +g27 +sa(dp359331 +g291134 +S'Pierre Payen' +p359332 +sg291137 +S'Robert Nanteuil' +p359333 +sg291130 +S'engraving' +p359334 +sg291132 +S'1659' +p359335 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c05.jpg' +p359336 +sg291136 +g27 +sa(dp359337 +g291134 +S"Philippe, Duc d'Orl\xc3\xa9ans" +p359338 +sg291137 +S'Robert Nanteuil' +p359339 +sg291130 +S'engraving' +p359340 +sg291132 +S'1671' +p359341 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cba.jpg' +p359342 +sg291136 +g27 +sa(dp359343 +g291134 +S'Jean-Baptiste van Steenberghen' +p359344 +sg291137 +S'Artist Information (' +p359345 +sg291130 +S'(artist after)' +p359346 +sg291132 +S'\n' +p359347 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c10.jpg' +p359348 +sg291136 +g27 +sa(dp359349 +g291134 +S'Nicholas Potier de Novion' +p359350 +sg291137 +S'Robert Nanteuil' +p359351 +sg291130 +S'engraving' +p359352 +sg291132 +S'1664' +p359353 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c02.jpg' +p359354 +sg291136 +g27 +sa(dp359355 +g291134 +S'Nicholas Potier de Novion' +p359356 +sg291137 +S'Robert Nanteuil' +p359357 +sg291130 +S'engraving' +p359358 +sg291132 +S'1657' +p359359 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c03.jpg' +p359360 +sg291136 +g27 +sa(dp359361 +g291134 +S'Nicholas Potier de Novion' +p359362 +sg291137 +S'Robert Nanteuil' +p359363 +sg291130 +S'engraving' +p359364 +sg291132 +S'unknown date\n' +p359365 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008ba0.jpg' +p359366 +sg291136 +g27 +sa(dp359367 +g291134 +S'Ferdinand de Neufville' +p359368 +sg291137 +S'Robert Nanteuil' +p359369 +sg291130 +S'engraving' +p359370 +sg291132 +S'unknown date\n' +p359371 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b9d.jpg' +p359372 +sg291136 +g27 +sa(dp359373 +g291134 +S'Galileo Galilei' +p359374 +sg291137 +S'Ottavio Leoni' +p359375 +sg291130 +S'engraving' +p359376 +sg291132 +S'1624' +p359377 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00061/a000611c.jpg' +p359378 +sg291136 +g27 +sa(dp359379 +g291134 +S'Ferdinand de Neufville' +p359380 +sg291137 +S'Robert Nanteuil' +p359381 +sg291130 +S'engraving' +p359382 +sg291132 +S'unknown date\n' +p359383 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b9e.jpg' +p359384 +sg291136 +g27 +sa(dp359385 +g291134 +S'Ferdinand de Neufville' +p359386 +sg291137 +S'Artist Information (' +p359387 +sg291130 +S'(artist after)' +p359388 +sg291132 +S'\n' +p359389 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b9b.jpg' +p359390 +sg291136 +g27 +sa(dp359391 +g291134 +S'Ferdinand de Neufville' +p359392 +sg291137 +S'Artist Information (' +p359393 +sg291130 +S'(artist after)' +p359394 +sg291132 +S'\n' +p359395 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b99.jpg' +p359396 +sg291136 +g27 +sa(dp359397 +g291134 +S'Francois de Nesmond' +p359398 +sg291137 +S'Robert Nanteuil' +p359399 +sg291130 +S'engraving' +p359400 +sg291132 +S'1663' +p359401 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b9f.jpg' +p359402 +sg291136 +g27 +sa(dp359403 +g291134 +S'Francois-Theodore de Nesmond' +p359404 +sg291137 +S'Robert Nanteuil' +p359405 +sg291130 +S'engraving' +p359406 +sg291132 +S'1653' +p359407 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008ba1.jpg' +p359408 +sg291136 +g27 +sa(dp359409 +g291134 +S"Marie d'Orl\xc3\xa9ans-Longueville, Duchesse de Nemours" +p359410 +sg291137 +S'Artist Information (' +p359411 +sg291130 +S'(artist after)' +p359412 +sg291132 +S'\n' +p359413 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a2b.jpg' +p359414 +sg291136 +g27 +sa(dp359415 +g291134 +S'Henri II, Duc de Nemours' +p359416 +sg291137 +S'Robert Nanteuil' +p359417 +sg291130 +S'engraving' +p359418 +sg291132 +S'1652' +p359419 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b9a.jpg' +p359420 +sg291136 +g27 +sa(dp359421 +g291134 +S'Henri II, Duc de Nemours' +p359422 +sg291137 +S'Robert Nanteuil' +p359423 +sg291130 +S'engraving' +p359424 +sg291132 +S'1651' +p359425 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008ba2.jpg' +p359426 +sg291136 +g27 +sa(dp359427 +g291134 +S'Henri, Marquis de Mouy' +p359428 +sg291137 +S'Robert Nanteuil' +p359429 +sg291130 +S'engraving' +p359430 +sg291132 +S'1651' +p359431 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b9c.jpg' +p359432 +sg291136 +g27 +sa(dp359433 +g291134 +S'Jean de Montpezat de Carbon' +p359434 +sg291137 +S'Robert Nanteuil' +p359435 +sg291130 +S'engraving' +p359436 +sg291132 +S'1673' +p359437 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008cb0.jpg' +p359438 +sg291136 +g27 +sa(dp359439 +g291134 +S'Giovanni Marino' +p359440 +sg291137 +S'Ottavio Leoni' +p359441 +sg291130 +S'engraving' +p359442 +sg291132 +S'1623/1624' +p359443 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00061/a000612b.jpg' +p359444 +sg291136 +g27 +sa(dp359445 +g291134 +S'Francois Mole' +p359446 +sg291137 +S'Robert Nanteuil' +p359447 +sg291130 +S'engraving' +p359448 +sg291132 +S'1649' +p359449 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008ba3.jpg' +p359450 +sg291136 +g27 +sa(dp359451 +g291134 +S'Mathieu Mole' +p359452 +sg291137 +S'Robert Nanteuil' +p359453 +sg291130 +S'engraving' +p359454 +sg291132 +S'1653' +p359455 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b94.jpg' +p359456 +sg291136 +g27 +sa(dp359457 +g291134 +S'Edouard Mole' +p359458 +sg291137 +S'Robert Nanteuil' +p359459 +sg291130 +S'engraving' +p359460 +sg291132 +S'1653' +p359461 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b8d.jpg' +p359462 +sg291136 +g27 +sa(dp359463 +g291134 +S'Jean-Antoine de Mesmes' +p359464 +sg291137 +S'Robert Nanteuil' +p359465 +sg291130 +S'engraving' +p359466 +sg291132 +S'1655' +p359467 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b91.jpg' +p359468 +sg291136 +g27 +sa(dp359469 +g291134 +S'Henri de Mesmes' +p359470 +sg291137 +S'Robert Nanteuil' +p359471 +sg291130 +S'engraving' +p359472 +sg291132 +S'1650' +p359473 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b92.jpg' +p359474 +sg291136 +g27 +sa(dp359475 +g291134 +S'Jean de Mesgrigny' +p359476 +sg291137 +S'Artist Information (' +p359477 +sg291130 +S'(artist after)' +p359478 +sg291132 +S'\n' +p359479 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b95.jpg' +p359480 +sg291136 +g27 +sa(dp359481 +g291134 +S'Louis de Bourbon-Vendome, Duc de Mercoeur' +p359482 +sg291137 +S'Robert Nanteuil' +p359483 +sg291130 +S'engraving' +p359484 +sg291132 +S'1649' +p359485 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b8e.jpg' +p359486 +sg291136 +g27 +sa(dp359487 +g291134 +S'Gilles Menage' +p359488 +sg291137 +S'Robert Nanteuil' +p359489 +sg291130 +S'engraving' +p359490 +sg291132 +S'1652' +p359491 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a2c.jpg' +p359492 +sg291136 +g27 +sa(dp359493 +g291134 +S'Cardinal Jules Mazarin' +p359494 +sg291137 +S'Artist Information (' +p359495 +sg291130 +S'(artist after)' +p359496 +sg291132 +S'\n' +p359497 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b98.jpg' +p359498 +sg291136 +g27 +sa(dp359499 +g291134 +S'Raffaelo Menicucci' +p359500 +sg291137 +S'Ottavio Leoni' +p359501 +sg291130 +S'engraving' +p359502 +sg291132 +S'1625' +p359503 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00061/a000612a.jpg' +p359504 +sg291136 +g27 +sa(dp359505 +g291134 +S'Cardinal Jules Mazarin' +p359506 +sg291137 +S'Artist Information (' +p359507 +sg291130 +S'(artist after)' +p359508 +sg291132 +S'\n' +p359509 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008caf.jpg' +p359510 +sg291136 +g27 +sa(dp359511 +g291134 +S'Pierre Dupuy' +p359512 +sg291137 +S'Robert Nanteuil' +p359513 +sg291130 +S'engraving' +p359514 +sg291132 +S'1648' +p359515 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b547.jpg' +p359516 +sg291136 +g27 +sa(dp359517 +g291134 +S"Charles d'Orl\xc3\xa9ans-Longueville, Comte de Dunois" +p359518 +sg291137 +S'Robert Nanteuil' +p359519 +sg291130 +S'engraving' +p359520 +sg291132 +S'1660' +p359521 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b53f.jpg' +p359522 +sg291136 +g27 +sa(dp359523 +g291134 +S'Antoine Dulieu' +p359524 +sg291137 +S'Robert Nanteuil' +p359525 +sg291130 +S'engraving' +p359526 +sg291132 +S'1667' +p359527 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b56b.jpg' +p359528 +sg291136 +g27 +sa(dp359529 +g291134 +S'Jean Dorieu' +p359530 +sg291137 +S'Robert Nanteuil' +p359531 +sg291130 +S'engraving' +p359532 +sg291132 +S'1660' +p359533 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b553.jpg' +p359534 +sg291136 +g27 +sa(dp359535 +g291134 +S"Louis Doni d'Attichy" +p359536 +sg291137 +S'Robert Nanteuil' +p359537 +sg291130 +S'engraving' +p359538 +sg291132 +S'1665' +p359539 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b562.jpg' +p359540 +sg291136 +g27 +sa(dp359541 +g291134 +S'Marcechal de Cequi' +p359542 +sg291137 +S'Robert Nanteuil' +p359543 +sg291130 +S'engraving' +p359544 +sg291132 +S'1662' +p359545 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b559.jpg' +p359546 +sg291136 +g27 +sa(dp359547 +g291134 +S'Honore Courtin' +p359548 +sg291137 +S'Robert Nanteuil' +p359549 +sg291130 +S'engraving' +p359550 +sg291132 +S'1668' +p359551 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b568.jpg' +p359552 +sg291136 +g27 +sa(dp359553 +g291134 +S'Louis II, Prince de Conde' +p359554 +sg291137 +S'Robert Nanteuil' +p359555 +sg291130 +S'engraving' +p359556 +sg291132 +S'1662' +p359557 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b56e.jpg' +p359558 +sg291136 +g27 +sa(dp359559 +g291134 +S'Jean-Baptiste Colbert' +p359560 +sg291137 +S'Robert Nanteuil' +p359561 +sg291130 +S'engraving' +p359562 +sg291132 +S'1673' +p359563 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dda.jpg' +p359564 +sg291136 +g27 +sa(dp359565 +g291130 +S'Spanish, 1746 - 1828' +p359566 +sg291132 +S'(related artist)' +p359567 +sg291134 +S'Mar\xc3\xada Luisa of Spain Wearing a Mantilla' +p359568 +sg291136 +g27 +sg291137 +S'Artist Information (' +p359569 +sa(dp359570 +g291134 +S'Pier Francesco Pauli' +p359571 +sg291137 +S'Ottavio Leoni' +p359572 +sg291130 +S'engraving' +p359573 +sg291132 +S'1625' +p359574 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00061/a0006129.jpg' +p359575 +sg291136 +g27 +sa(dp359576 +g291134 +S'Jean-Baptiste Colbert' +p359577 +sg291137 +S'Robert Nanteuil' +p359578 +sg291130 +S'engraving' +p359579 +sg291132 +S'1670' +p359580 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dcb.jpg' +p359581 +sg291136 +g27 +sa(dp359582 +g291134 +S'Jean-Baptiste Colbert' +p359583 +sg291137 +S'Robert Nanteuil' +p359584 +sg291130 +S'engraving' +p359585 +sg291132 +S'1676' +p359586 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dca.jpg' +p359587 +sg291136 +g27 +sa(dp359588 +g291130 +S'engraving' +p359589 +sg291132 +S'1670' +p359590 +sg291134 +S'Jean-Baptiste Colbert' +p359591 +sg291136 +g27 +sg291137 +S'Robert Nanteuil' +p359592 +sa(dp359593 +g291134 +S'Jean-Baptiste Colbert' +p359594 +sg291137 +S'Robert Nanteuil' +p359595 +sg291130 +S'engraving [proof impression]' +p359596 +sg291132 +S'c. 1667' +p359597 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a21.jpg' +p359598 +sg291136 +g27 +sa(dp359599 +g291130 +S'engraving' +p359600 +sg291132 +S'1667/1668' +p359601 +sg291134 +S'Jean-Baptiste Colbert' +p359602 +sg291136 +g27 +sg291137 +S'Robert Nanteuil' +p359603 +sa(dp359604 +g291134 +S'Jean-Baptiste Colbert' +p359605 +sg291137 +S'Artist Information (' +p359606 +sg291130 +S'(artist after)' +p359607 +sg291132 +S'\n' +p359608 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b54d.jpg' +p359609 +sg291136 +g27 +sa(dp359610 +g291134 +S'Jean-Baptiste Colbert' +p359611 +sg291137 +S'Artist Information (' +p359612 +sg291130 +S'(artist after)' +p359613 +sg291132 +S'\n' +p359614 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b55f.jpg' +p359615 +sg291136 +g27 +sa(dp359616 +g291134 +S'Cardinal de Coislin' +p359617 +sg291137 +S'Robert Nanteuil' +p359618 +sg291130 +S'engraving' +p359619 +sg291132 +S'1666' +p359620 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b55c.jpg' +p359621 +sg291136 +g27 +sa(dp359622 +g291134 +S'Cardinal de Coislin' +p359623 +sg291137 +S'Robert Nanteuil' +p359624 +sg291130 +S'engraving' +p359625 +sg291132 +S'1658' +p359626 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b550.jpg' +p359627 +sg291136 +g27 +sa(dp359628 +g291134 +S'Marcello Provenzale' +p359629 +sg291137 +S'Ottavio Leoni' +p359630 +sg291130 +S'engraving' +p359631 +sg291132 +S'1623' +p359632 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00061/a0006128.jpg' +p359633 +sg291136 +g27 +sa(dp359634 +g291134 +S'Francois de Clermont Tonnerre' +p359635 +sg291137 +S'Robert Nanteuil' +p359636 +sg291130 +S'engraving' +p359637 +sg291132 +S'1655' +p359638 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b565.jpg' +p359639 +sg291136 +g27 +sa(dp359640 +g291134 +S'Leon-Bouthillier, Comte de Chavigny' +p359641 +sg291137 +S'Artist Information (' +p359642 +sg291130 +S'(artist after)' +p359643 +sg291132 +S'\n' +p359644 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b556.jpg' +p359645 +sg291136 +g27 +sa(dp359646 +g291134 +S'Chancellor Michel Le Tellier' +p359647 +sg291137 +S'Robert Nanteuil' +p359648 +sg291130 +S'engraving' +p359649 +sg291132 +S'1659' +p359650 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b6c.jpg' +p359651 +sg291136 +g27 +sa(dp359652 +g291134 +S'Charles, Duc de Chaulnes' +p359653 +sg291137 +S'Robert Nanteuil' +p359654 +sg291130 +S'engraving' +p359655 +sg291132 +S'1676' +p359656 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dcf.jpg' +p359657 +sg291136 +g27 +sa(dp359658 +g291134 +S'Antoine de Chaubard' +p359659 +sg291137 +S'Robert Nanteuil' +p359660 +sg291130 +S'engraving' +p359661 +sg291132 +S'1651' +p359662 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b528.jpg' +p359663 +sg291136 +g27 +sa(dp359664 +g291134 +S'Jean Chapelain' +p359665 +sg291137 +S'Robert Nanteuil' +p359666 +sg291130 +S'engraving' +p359667 +sg291132 +S'1655' +p359668 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b52f.jpg' +p359669 +sg291136 +g27 +sa(dp359670 +g291134 +S'Guy Chamillard' +p359671 +sg291137 +S'Robert Nanteuil' +p359672 +sg291130 +S'engraving' +p359673 +sg291132 +S'1664' +p359674 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b526.jpg' +p359675 +sg291136 +g27 +sa(dp359676 +g291134 +S'Marechal de Castelnau' +p359677 +sg291137 +S'Robert Nanteuil' +p359678 +sg291130 +S'engraving' +p359679 +sg291132 +S'1658' +p359680 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b532.jpg' +p359681 +sg291136 +g27 +sa(dp359682 +g291134 +S'Jean-Frederic, Duc de Brunswick-Lunebourg (Hanover)' +p359683 +sg291137 +S'Artist Information (' +p359684 +sg291130 +S'(artist after)' +p359685 +sg291132 +S'\n' +p359686 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dc8.jpg' +p359687 +sg291136 +g27 +sa(dp359688 +g291134 +S'Henri-Auguste, Comte de Brienne' +p359689 +sg291137 +S'Robert Nanteuil' +p359690 +sg291130 +S'engraving' +p359691 +sg291132 +S'1660' +p359692 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b51e.jpg' +p359693 +sg291136 +g27 +sa(dp359694 +g291134 +S'Paolus Qualiatus Clodianus' +p359695 +sg291137 +S'Ottavio Leoni' +p359696 +sg291130 +S'engraving' +p359697 +sg291132 +S'1623' +p359698 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00061/a0006127.jpg' +p359699 +sg291136 +g27 +sa(dp359700 +g291134 +S'Henri-Auguste, Comte de Brienne' +p359701 +sg291137 +S'Robert Nanteuil' +p359702 +sg291130 +S'engraving' +p359703 +sg291132 +S'1660' +p359704 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b51b.jpg' +p359705 +sg291136 +g27 +sa(dp359706 +g291134 +S'Madame Bouthillier' +p359707 +sg291137 +S'Robert Nanteuil' +p359708 +sg291130 +S'engraving' +p359709 +sg291132 +S'1656' +p359710 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b521.jpg' +p359711 +sg291136 +g27 +sa(dp359712 +g291134 +S'Victor Bouthillier' +p359713 +sg291137 +S'Robert Nanteuil' +p359714 +sg291130 +S'engraving' +p359715 +sg291132 +S'1662' +p359716 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dc9.jpg' +p359717 +sg291136 +g27 +sa(dp359718 +g291134 +S'Victor Bouthillier' +p359719 +sg291137 +S'Robert Nanteuil' +p359720 +sg291130 +S'engraving' +p359721 +sg291132 +S'1659' +p359722 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b52a.jpg' +p359723 +sg291136 +g27 +sa(dp359724 +g291134 +S'Victor Bouthillier' +p359725 +sg291137 +S'Artist Information (' +p359726 +sg291130 +S'(artist after)' +p359727 +sg291132 +S'\n' +p359728 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b52c.jpg' +p359729 +sg291136 +g27 +sa(dp359730 +g291134 +S'Cardinal de Bouillon' +p359731 +sg291137 +S'Robert Nanteuil' +p359732 +sg291130 +S'engraving' +p359733 +sg291132 +S'1678' +p359734 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dd1.jpg' +p359735 +sg291136 +g27 +sa(dp359736 +g291134 +S'Cardinal de Bouillon' +p359737 +sg291137 +S'Robert Nanteuil' +p359738 +sg291130 +S'engraving' +p359739 +sg291132 +S'1670' +p359740 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dce.jpg' +p359741 +sg291136 +g27 +sa(dp359742 +g291134 +S'Cardinal de Bouillon' +p359743 +sg291137 +S'Robert Nanteuil' +p359744 +sg291130 +S'engraving' +p359745 +sg291132 +S'1668' +p359746 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b524.jpg' +p359747 +sg291136 +g27 +sa(dp359748 +g291134 +S'Godefroi-Maurice, Duc de Bouillon' +p359749 +sg291137 +S'Robert Nanteuil' +p359750 +sg291130 +S'engraving' +p359751 +sg291132 +S'1657' +p359752 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b518.jpg' +p359753 +sg291136 +g27 +sa(dp359754 +g291134 +S'Frederic-Maurice, Duc de Bouillon' +p359755 +sg291137 +S'Robert Nanteuil' +p359756 +sg291130 +S'engraving' +p359757 +sg291132 +S'1655' +p359758 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b515.jpg' +p359759 +sg291136 +g27 +sa(dp359760 +g291134 +S'Cristoforo Roncalli' +p359761 +sg291137 +S'Ottavio Leoni' +p359762 +sg291130 +S'engraving' +p359763 +sg291132 +S'1623' +p359764 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00061/a0006126.jpg' +p359765 +sg291136 +g27 +sa(dp359766 +g291134 +S'Pierre Bouchu' +p359767 +sg291137 +S'Robert Nanteuil' +p359768 +sg291130 +S'engraving' +p359769 +sg291132 +S'1669' +p359770 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b541.jpg' +p359771 +sg291136 +g27 +sa(dp359772 +g291134 +S'Chancellor Boucherat' +p359773 +sg291137 +S'Robert Nanteuil' +p359774 +sg291130 +S'engraving' +p359775 +sg291132 +S'1677' +p359776 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dcd.jpg' +p359777 +sg291136 +g27 +sa(dp359778 +g291134 +S'Chancellor Bouchert' +p359779 +sg291137 +S'Robert Nanteuil' +p359780 +sg291130 +S'engraving' +p359781 +sg291132 +S'1676' +p359782 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dcc.jpg' +p359783 +sg291136 +g27 +sa(dp359784 +g291134 +S'Jacques-Benigne Bossuet' +p359785 +sg291137 +S'Robert Nanteuil' +p359786 +sg291130 +S'engraving' +p359787 +sg291132 +S'1674' +p359788 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dc7.jpg' +p359789 +sg291136 +g27 +sa(dp359790 +g291134 +S'Francois Bosquet' +p359791 +sg291137 +S'Robert Nanteuil' +p359792 +sg291130 +S'engraving' +p359793 +sg291132 +S'1671' +p359794 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b552.jpg' +p359795 +sg291136 +g27 +sa(dp359796 +g291134 +S'Cardinal de Bonzi' +p359797 +sg291137 +S'Robert Nanteuil' +p359798 +sg291130 +S'engraving' +p359799 +sg291132 +S'1678' +p359800 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c1d.jpg' +p359801 +sg291136 +g27 +sa(dp359802 +g291134 +S'Gilles Boileau' +p359803 +sg291137 +S'Robert Nanteuil' +p359804 +sg291130 +S'engraving' +p359805 +sg291132 +S'1658' +p359806 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b543.jpg' +p359807 +sg291136 +g27 +sa(dp359808 +g291134 +S'Marc Bochart' +p359809 +sg291137 +S'Robert Nanteuil' +p359810 +sg291130 +S'engraving' +p359811 +sg291132 +S'1651' +p359812 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b54c.jpg' +p359813 +sg291136 +g27 +sa(dp359814 +g291134 +S'David Blondel' +p359815 +sg291137 +S'Robert Nanteuil' +p359816 +sg291130 +S'engraving' +p359817 +sg291132 +S'1650' +p359818 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008a/a0008a20.jpg' +p359819 +sg291136 +g27 +sa(dp359820 +g291134 +S'Gilles Blondeau' +p359821 +sg291137 +S'Robert Nanteuil' +p359822 +sg291130 +S'engraving' +p359823 +sg291132 +S'1653' +p359824 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b54f.jpg' +p359825 +sg291136 +g27 +sa(dp359826 +g291134 +S'Thomas Stilianus' +p359827 +sg291137 +S'Ottavio Leoni' +p359828 +sg291130 +S'engraving' +p359829 +sg291132 +S'1625' +p359830 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00061/a0006125.jpg' +p359831 +sg291136 +g27 +sa(dp359832 +g291134 +S'Francoise Blanchart' +p359833 +sg291137 +S'Robert Nanteuil' +p359834 +sg291130 +S'engraving' +p359835 +sg291132 +S'1673' +p359836 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b555.jpg' +p359837 +sg291136 +g27 +sa(dp359838 +g291134 +S'Charles Benoise' +p359839 +sg291137 +S'Artist Information (' +p359840 +sg291130 +S'(artist after)' +p359841 +sg291132 +S'\n' +p359842 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b549.jpg' +p359843 +sg291136 +g27 +sa(dp359844 +g291134 +S'Pompone II de Bellievre' +p359845 +sg291137 +S'Artist Information (' +p359846 +sg291130 +S'(artist after)' +p359847 +sg291132 +S'\n' +p359848 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b538.jpg' +p359849 +sg291136 +g27 +sa(dp359850 +g291134 +S'Pompone II de Bellievre' +p359851 +sg291137 +S'Artist Information (' +p359852 +sg291130 +S'(artist after)' +p359853 +sg291132 +S'\n' +p359854 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b546.jpg' +p359855 +sg291136 +g27 +sa(dp359856 +g291134 +S'Francois, Duc de Beaufort' +p359857 +sg291137 +S'Artist Information (' +p359858 +sg291130 +S'(artist after)' +p359859 +sg291132 +S'\n' +p359860 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dc6.jpg' +p359861 +sg291136 +g27 +sa(dp359862 +g291134 +S'Etienne-Jehannot de Bartillat' +p359863 +sg291137 +S'Robert Nanteuil' +p359864 +sg291130 +S'engraving' +p359865 +sg291132 +S'1666' +p359866 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b53b.jpg' +p359867 +sg291136 +g27 +sa(dp359868 +g291134 +S'Antoine Barillon' +p359869 +sg291137 +S'Robert Nanteuil' +p359870 +sg291130 +S'engraving' +p359871 +sg291132 +S'1661' +p359872 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b56a.jpg' +p359873 +sg291136 +g27 +sa(dp359874 +g291134 +S'Cardinal Antonio Barberini' +p359875 +sg291137 +S'Robert Nanteuil' +p359876 +sg291130 +S'engraving' +p359877 +sg291132 +S'1664' +p359878 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b55e.jpg' +p359879 +sg291136 +g27 +sa(dp359880 +g291134 +S'Cardinal Antonio Barberini' +p359881 +sg291137 +S'Robert Nanteuil' +p359882 +sg291130 +S'engraving' +p359883 +sg291132 +S'1663' +p359884 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b55b.jpg' +p359885 +sg291136 +g27 +sa(dp359886 +g291134 +S'Cardinal Antonio Barberini' +p359887 +sg291137 +S'Robert Nanteuil' +p359888 +sg291130 +S'engraving' +p359889 +sg291132 +S'1657' +p359890 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b514.jpg' +p359891 +sg291136 +g27 +sa(dp359892 +g291134 +S'Simon Vouet' +p359893 +sg291137 +S'Ottavio Leoni' +p359894 +sg291130 +S'engraving' +p359895 +sg291132 +S'1625' +p359896 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00061/a0006124.jpg' +p359897 +sg291136 +g27 +sa(dp359898 +g291134 +S'Louis-Dominique de Bailleul' +p359899 +sg291137 +S'Robert Nanteuil' +p359900 +sg291130 +S'engraving' +p359901 +sg291132 +S'1658' +p359902 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b561.jpg' +p359903 +sg291136 +g27 +sa(dp359904 +g291134 +S'Claude Auvry' +p359905 +sg291137 +S'Robert Nanteuil' +p359906 +sg291130 +S'engraving' +p359907 +sg291132 +S'1660' +p359908 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b56d.jpg' +p359909 +sg291136 +g27 +sa(dp359910 +g291134 +S"Simon Dreux d'Aubray" +p359911 +sg291137 +S'Robert Nanteuil' +p359912 +sg291130 +S'engraving' +p359913 +sg291132 +S'1658' +p359914 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b517.jpg' +p359915 +sg291136 +g27 +sa(dp359916 +g291134 +S"Simon Dreux d'Aubray" +p359917 +sg291137 +S'Robert Nanteuil' +p359918 +sg291130 +S'engraving' +p359919 +sg291132 +S'1658' +p359920 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b51d.jpg' +p359921 +sg291136 +g27 +sa(dp359922 +g291134 +S'Anne of Austria, Queen of France and Navarre' +p359923 +sg291137 +S'Artist Information (' +p359924 +sg291130 +S'(artist after)' +p359925 +sg291132 +S'\n' +p359926 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b520.jpg' +p359927 +sg291136 +g27 +sa(dp359928 +g291134 +S'Michel Amelot' +p359929 +sg291137 +S'Robert Nanteuil' +p359930 +sg291130 +S'engraving' +p359931 +sg291132 +S'1675' +p359932 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008d/a0008dd2.jpg' +p359933 +sg291136 +g27 +sa(dp359934 +g291134 +S'Michel Amelot' +p359935 +sg291137 +S'Robert Nanteuil' +p359936 +sg291130 +S'engraving' +p359937 +sg291132 +S'1673' +p359938 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b558.jpg' +p359939 +sg291136 +g27 +sa(dp359940 +g291134 +S'Jacques Amelot' +p359941 +sg291137 +S'Robert Nanteuil' +p359942 +sg291130 +S'engraving' +p359943 +sg291132 +S'1655' +p359944 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b51a.jpg' +p359945 +sg291136 +g27 +sa(dp359946 +g291130 +S'engraving' +p359947 +sg291132 +S'1659' +p359948 +sg291134 +S'Cardinal Jules Mazarin' +p359949 +sg291136 +g27 +sg291137 +S'Robert Nanteuil' +p359950 +sa(dp359951 +g291134 +S'Pierre Seguier, Marquis de Saint-Brisson' +p359952 +sg291137 +S'Robert Nanteuil' +p359953 +sg291130 +S'engraving' +p359954 +sg291132 +S'unknown date\n' +p359955 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c0c.jpg' +p359956 +sg291136 +g27 +sa(dp359957 +g291134 +S'Title Page' +p359958 +sg291137 +S'Giovanni Battista Tiepolo' +p359959 +sg291130 +S'engraving' +p359960 +sg291132 +S'published 1785' +p359961 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb20.jpg' +p359962 +sg291136 +g27 +sa(dp359963 +g291134 +S"Andre Le Fevre d'Ormesson" +p359964 +sg291137 +S'Robert Nanteuil' +p359965 +sg291130 +S'engraving' +p359966 +sg291132 +S'unknown date\n' +p359967 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008c/a0008c07.jpg' +p359968 +sg291136 +g27 +sa(dp359969 +g291134 +S'Frederic-Maurice, Duc de Bouillon' +p359970 +sg291137 +S'Robert Nanteuil' +p359971 +sg291130 +S'engraving' +p359972 +sg291132 +S'unknown date\n' +p359973 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b5/a000b535.jpg' +p359974 +sg291136 +g27 +sa(dp359975 +g291134 +S'Cardinal Jules Mazarin' +p359976 +sg291137 +S'Artist Information (' +p359977 +sg291130 +S'(artist)' +p359978 +sg291132 +S'\n' +p359979 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0008b/a0008b83.jpg' +p359980 +sg291136 +g27 +sa(dp359981 +g291134 +S"L'ancien Louvre d'apr\xc3\xa8s une peinture de Zeeman, 1651 (The Old Louvre, from a Painting by Zeeman, 1651)" +p359982 +sg291137 +S'Charles Meryon' +p359983 +sg291130 +S'etching' +p359984 +sg291132 +S'1866' +p359985 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d8c.jpg' +p359986 +sg291136 +g27 +sa(dp359987 +g291134 +S"L'ancien Louvre d'apr\xc3\xa8s une peinture de Zeeman, 1651 (The Old Louvre, from a Painting by Zeeman, 1651)" +p359988 +sg291137 +S'Charles Meryon' +p359989 +sg291130 +S'etching' +p359990 +sg291132 +S'1866' +p359991 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00099/a000998a.jpg' +p359992 +sg291136 +g27 +sa(dp359993 +g291134 +S"L'ancien Louvre d'apr\xc3\xa8s une peinture de Zeeman, 1651 (The Old Louvre, from a Painting by Zeeman, 1651)" +p359994 +sg291137 +S'Charles Meryon' +p359995 +sg291130 +S'etching' +p359996 +sg291132 +S'1866' +p359997 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d8d.jpg' +p359998 +sg291136 +g27 +sa(dp359999 +g291134 +S"L'ancien Louvre d'apr\xc3\xa8s une peinture de Zeeman, 1651 (The Old Louvre, from a Painting by Zeeman, 1651)" +p360000 +sg291137 +S'Charles Meryon' +p360001 +sg291130 +S'etching' +p360002 +sg291132 +S'1866' +p360003 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d8a.jpg' +p360004 +sg291136 +g27 +sa(dp360005 +g291134 +S'Le Grand Chatelet, Paris, vers 1780 (The Grand Chatelet, Paris, about 1780)' +p360006 +sg291137 +S'Charles Meryon' +p360007 +sg291130 +S'etching' +p360008 +sg291132 +S'1861' +p360009 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d2b.jpg' +p360010 +sg291136 +g27 +sa(dp360011 +g291134 +S'Partie de la Cit\xc3\xa9 vers la fin du XVIIe si\xc3\xa8cle (View of the City of Paris Towards the Close of the XVIIth Century)' +p360012 +sg291137 +S'Charles Meryon' +p360013 +sg291130 +S'etching' +p360014 +sg291132 +S'1861' +p360015 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d2c.jpg' +p360016 +sg291136 +g27 +sa(dp360017 +g291134 +S"Passerelle du Pont-au-Change, Paris, apr\xc3\xa8s l'Incendie de 1621 (Footbridge Temporarily Replacing the Pont-au-Change, Paris, after the Fire of 1621)" +p360018 +sg291137 +S'Artist Information (' +p360019 +sg291130 +S'(artist after)' +p360020 +sg291132 +S'\n' +p360021 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d24.jpg' +p360022 +sg291136 +g27 +sa(dp360023 +g291134 +S'Youth, Sage, and Attendant with Horse' +p360024 +sg291137 +S'Giovanni Battista Tiepolo' +p360025 +sg291130 +S'etching' +p360026 +sg291132 +S'unknown date\n' +p360027 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb1c.jpg' +p360028 +sg291136 +g27 +sa(dp360029 +g291134 +S'La Rue Pirouette aux halles, Paris (Pirouette Street, Near the Markets, Paris)' +p360030 +sg291137 +S'Charles Meryon' +p360031 +sg291130 +S'etching' +p360032 +sg291132 +S'1860' +p360033 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00099/a0009969.jpg' +p360034 +sg291136 +g27 +sa(dp360035 +g291134 +S"La salle des pas-perdus \xc3\xa0 l'ancien Palais-de-Justice, Paris (The Antechamber of the Palace of Justice, Paris)" +p360036 +sg291137 +S'Charles Meryon' +p360037 +sg291130 +S'etching' +p360038 +sg291132 +S'1855' +p360039 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009f/a0009fe6.jpg' +p360040 +sg291136 +g27 +sa(dp360041 +g291134 +S'Le Pont-au-Change, Paris, vers 1784' +p360042 +sg291137 +S'Artist Information (' +p360043 +sg291130 +S'(artist after)' +p360044 +sg291132 +S'\n' +p360045 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00099/a000996e.jpg' +p360046 +sg291136 +g27 +sa(dp360047 +g291134 +S'Le Pont-au-Change, Paris, vers 1784' +p360048 +sg291137 +S'Artist Information (' +p360049 +sg291130 +S'(artist after)' +p360050 +sg291132 +S'\n' +p360051 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0009d/a0009d27.jpg' +p360052 +sg291136 +g27 +sa(dp360053 +g291134 +S'The Triumph of Neptune' +p360054 +sg291137 +S'Peregrino da Cesena' +p360055 +sg291130 +S'niello print' +p360056 +sg291132 +S'c. 1490/1510' +p360057 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c721.jpg' +p360058 +sg291136 +g27 +sa(dp360059 +g291134 +S'Panel of Ornament with Two Naked Children on Monstrous Beasts' +p360060 +sg291137 +S'Peregrino da Cesena' +p360061 +sg291130 +S'niello print' +p360062 +sg291132 +S'c. 1505/1520' +p360063 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c71f.jpg' +p360064 +sg291136 +g27 +sa(dp360065 +g291134 +S'Abraham and Isaac on Their Way to Mount Moriah' +p360066 +sg291137 +S'Peregrino da Cesena' +p360067 +sg291130 +S'niello print' +p360068 +sg291132 +S'c. 1490/1510' +p360069 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c723.jpg' +p360070 +sg291136 +g27 +sa(dp360071 +g291134 +S'Triton and Nymph' +p360072 +sg291137 +S'Artist Information (' +p360073 +sg291130 +S'(artist)' +p360074 +sg291132 +S'\n' +p360075 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c727.jpg' +p360076 +sg291136 +g27 +sa(dp360077 +g291134 +S'Hercules and Deianira' +p360078 +sg291137 +S'Artist Information (' +p360079 +sg291130 +S'(artist)' +p360080 +sg291132 +S'\n' +p360081 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c729.jpg' +p360082 +sg291136 +g27 +sa(dp360083 +g291134 +S'Consecration of an Eagle' +p360084 +sg291137 +S'Artist Information (' +p360085 +sg291130 +S'Italian, active c. 1490/1520' +p360086 +sg291132 +S'(artist after)' +p360087 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c715.jpg' +p360088 +sg291136 +g27 +sa(dp360089 +g291134 +S'Seated Youth Leaning Against an Urn' +p360090 +sg291137 +S'Giovanni Battista Tiepolo' +p360091 +sg291130 +S'etching on laid paper' +p360092 +sg291132 +S'published 1785' +p360093 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb1d.jpg' +p360094 +sg291136 +g27 +sa(dp360095 +g291134 +S'Sacrifice' +p360096 +sg291137 +S'Italian 16th Century' +p360097 +sg291130 +S'sheet: 3.4 x 3.8 cm (1 5/16 x 1 1/2 in.)' +p360098 +sg291132 +S'\nniello print' +p360099 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c713.jpg' +p360100 +sg291136 +g27 +sa(dp360101 +g291134 +S'Artaxerxes Receiving the Head of Cyrus' +p360102 +sg291137 +S'Peregrino da Cesena' +p360103 +sg291130 +S'niello print' +p360104 +sg291132 +S'c. 1490/1510' +p360105 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c722.jpg' +p360106 +sg291136 +g27 +sa(dp360107 +g291134 +S'Coronation of the Virgin' +p360108 +sg291137 +S'Artist Information (' +p360109 +sg291130 +g27 +sg291132 +S'(artist)' +p360110 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c71b.jpg' +p360111 +sg291136 +g27 +sa(dp360112 +g291134 +S'Ornament Plate with Armor and Musical Instruments' +p360113 +sg291137 +S'Artist Information (' +p360114 +sg291130 +g27 +sg291132 +S'(artist)' +p360115 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c71a.jpg' +p360116 +sg291136 +g27 +sa(dp360117 +g291134 +S'Ornament in Hexagonal Shape' +p360118 +sg291137 +S'Artist Information (' +p360119 +sg291130 +S'Italian, c. 1447 - 1517' +p360120 +sg291132 +S'(related artist)' +p360121 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c726.jpg' +p360122 +sg291136 +g27 +sa(dp360123 +g291134 +S'Panel of Ornament with a Satyress Feeding Two Children' +p360124 +sg291137 +S'Peregrino da Cesena' +p360125 +sg291130 +S'niello print' +p360126 +sg291132 +S'c. 1505/1520' +p360127 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c720.jpg' +p360128 +sg291136 +g27 +sa(dp360129 +g291134 +S'Roman General Addressing His Troops' +p360130 +sg291137 +S'Italian 16th Century' +p360131 +sg291130 +S'sheet: 4.8 x 3.7 cm (1 7/8 x 1 7/16 in.)' +p360132 +sg291132 +S'\nniello print' +p360133 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c714.jpg' +p360134 +sg291136 +g27 +sa(dp360135 +g291134 +S'Horatius Cocles' +p360136 +sg291137 +S'Artist Information (' +p360137 +sg291130 +g27 +sg291132 +S'(artist)' +p360138 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c717.jpg' +p360139 +sg291136 +g27 +sa(dp360140 +g291134 +S'Mucius Scaevola' +p360141 +sg291137 +S'Artist Information (' +p360142 +sg291130 +g27 +sg291132 +S'(artist)' +p360143 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c716.jpg' +p360144 +sg291136 +g27 +sa(dp360145 +g291134 +S'The Triumph of Galatea' +p360146 +sg291137 +S'Peregrino da Cesena' +p360147 +sg291130 +S', c. 1520' +p360148 +sg291132 +S'\n' +p360149 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000c7/a000c71e.jpg' +p360150 +sg291136 +g27 +sa(dp360151 +g291134 +S'Three Soldiers and a Youth' +p360152 +sg291137 +S'Giovanni Battista Tiepolo' +p360153 +sg291130 +S'etching' +p360154 +sg291132 +S'published 1785' +p360155 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb29.jpg' +p360156 +sg291136 +g27 +sa(dp360157 +g291130 +S'woodcut' +p360158 +sg291132 +S'1912' +p360159 +sg291134 +S'Prophet' +p360160 +sg291136 +g27 +sg291137 +S'Emil Nolde' +p360161 +sa(dp360162 +g291130 +S'lithograph in green and yellow' +p360163 +sg291132 +S'1913' +p360164 +sg291134 +S'Mother and Child (Mutter und Kind)' +p360165 +sg291136 +g27 +sg291137 +S'Emil Nolde' +p360166 +sa(dp360167 +g291130 +S'lithograph in black and gray on japan paper' +p360168 +sg291132 +S'1913' +p360169 +sg291134 +S'Young Couple (Junges Paar)' +p360170 +sg291136 +g27 +sg291137 +S'Emil Nolde' +p360171 +sa(dp360172 +g291130 +S'woodcut [trial proof]' +p360173 +sg291132 +S'1912' +p360174 +sg291134 +S'Dr. Leber' +p360175 +sg291136 +g27 +sg291137 +S'Emil Nolde' +p360176 +sa(dp360177 +g291130 +S'woodcut' +p360178 +sg291132 +S'1910' +p360179 +sg291134 +S'Woman in Profile (Frau im Profil)' +p360180 +sg291136 +g27 +sg291137 +S'Emil Nolde' +p360181 +sa(dp360182 +g291134 +S'Summer Storm' +p360183 +sg291137 +S'Thomas Willoughby Nason' +p360184 +sg291130 +S'color wood engraving' +p360185 +sg291132 +S'1940' +p360186 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000b/a0000b48.jpg' +p360187 +sg291136 +g27 +sa(dp360188 +g291130 +S'wood engraving' +p360189 +sg291132 +S'1941' +p360190 +sg291134 +S'Passing Cannon Green' +p360191 +sg291136 +g27 +sg291137 +S'Thomas Willoughby Nason' +p360192 +sa(dp360193 +g291134 +S'Se\xc3\xb1ora Sabasa Garcia' +p360194 +sg291137 +S'Francisco de Goya' +p360195 +sg291130 +S'oil on canvas' +p360196 +sg291132 +S'c. 1806/1811' +p360197 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00005/a0000582.jpg' +p360198 +sg291136 +S'The years between Goya\'s appointment as first painter to the court of Charles\nIV and the Napoleonic invasion of 1808 were a time of great activity and financial\nsecurity for the artist. He painted some of his finest portraits at that time, \n In contrast with his earlier work -- \n Señora Sabasa García was the niece of Evaristo Pérez de Castro,\nSpain\'s minister\nof foreign affairs, for whom Goya was painting an official portrait when, according\nto a perhaps legendary anecdote, the young woman appeared. The artist, struck by\nher beauty, stopped work and asked permission to paint her portrait. With images\nlike this, spotlighting the restrained fire and beauty of the subject, Goya created\nthe visual vocabulary that embodies the words "Spanish beauty," just as his earlier\ntapestry cartoons and genre paintings of popular pastimes distilled the essence\nof Spanish life.\n ' +p360199 +sa(dp360200 +g291134 +S'Soldier Seated on a Tomb with Surrounding Figures' +p360201 +sg291137 +S'Giovanni Battista Tiepolo' +p360202 +sg291130 +S'etching' +p360203 +sg291132 +S'published 1785' +p360204 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb25.jpg' +p360205 +sg291136 +g27 +sa(dp360206 +g291130 +S'wood engraving' +p360207 +sg291132 +S'1937' +p360208 +sg291134 +S'Bucks County Farm House' +p360209 +sg291136 +g27 +sg291137 +S'Thomas Willoughby Nason' +p360210 +sa(dp360211 +g291130 +S'wood engraving' +p360212 +sg291132 +S'1936' +p360213 +sg291134 +S'House in the Pine Trees' +p360214 +sg291136 +g27 +sg291137 +S'Thomas Willoughby Nason' +p360215 +sa(dp360216 +g291130 +S'wood engraving' +p360217 +sg291132 +S'1937' +p360218 +sg291134 +S'Approach of Spring' +p360219 +sg291136 +g27 +sg291137 +S'Thomas Willoughby Nason' +p360220 +sa(dp360221 +g291130 +S'drypoint and roulette or mezzorocker' +p360222 +sg291132 +S'unknown date\n' +p360223 +sg291134 +S'The Sisters' +p360224 +sg291136 +g27 +sg291137 +S'Roselle Hellenberg Osk' +p360225 +sa(dp360226 +g291130 +S'lithograph' +p360227 +sg291132 +S'unknown date\n' +p360228 +sg291134 +S'Three Generations' +p360229 +sg291136 +g27 +sg291137 +S'Jos\xc3\xa9 Clemente Orozco' +p360230 +sa(dp360231 +g291134 +S'The Sleeping Shepherd; Early Morning' +p360232 +sg291137 +S'Samuel Palmer' +p360233 +sg291130 +S'etching, hand-colored with watercolor and opaque white with gold highlights' +p360234 +sg291132 +S'1857' +p360235 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0000f/a0000f65.jpg' +p360236 +sg291136 +g27 +sa(dp360237 +g291134 +S'The Morning of Life' +p360238 +sg291137 +S'Samuel Palmer' +p360239 +sg291130 +S'etching' +p360240 +sg291132 +S'1860/1861' +p360241 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0007d/a0007d0b.jpg' +p360242 +sg291136 +g27 +sa(dp360243 +g291134 +S'Rhetoric' +p360244 +sg291137 +S'Georg Pencz' +p360245 +sg291130 +S'engraving' +p360246 +sg291132 +S'unknown date\n' +p360247 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad6d.jpg' +p360248 +sg291136 +g27 +sa(dp360249 +g291134 +S'The Pharisees Wish to Stone Christ' +p360250 +sg291137 +S'Georg Pencz' +p360251 +sg291130 +S'engraving' +p360252 +sg291132 +S'unknown date\n' +p360253 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad52.jpg' +p360254 +sg291136 +g27 +sa(dp360255 +g291134 +S'Standing Woman and Seated Men before an Obelisk' +p360256 +sg291137 +S'Giovanni Battista Tiepolo' +p360257 +sg291130 +S'etching' +p360258 +sg291132 +S'published 1785' +p360259 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb24.jpg' +p360260 +sg291136 +g27 +sa(dp360261 +g291134 +S'Virginius Killing His Daughter' +p360262 +sg291137 +S'Georg Pencz' +p360263 +sg291130 +S'engraving' +p360264 +sg291132 +S'unknown date\n' +p360265 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b08e.jpg' +p360266 +sg291136 +g27 +sa(dp360267 +g291134 +S'Paris Writing Words of Love to Oenone' +p360268 +sg291137 +S'Georg Pencz' +p360269 +sg291130 +S'engraving' +p360270 +sg291132 +S'unknown date\n' +p360271 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b08d.jpg' +p360272 +sg291136 +g27 +sa(dp360273 +g291134 +S'Medea Returning the Penates to Jason' +p360274 +sg291137 +S'Georg Pencz' +p360275 +sg291130 +S'engraving' +p360276 +sg291132 +S'unknown date\n' +p360277 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b089.jpg' +p360278 +sg291136 +g27 +sa(dp360279 +g291134 +S'Tomyris with the Head of Cyrus' +p360280 +sg291137 +S'Georg Pencz' +p360281 +sg291130 +S'engraving' +p360282 +sg291132 +S'unknown date\n' +p360283 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b08b.jpg' +p360284 +sg291136 +g27 +sa(dp360285 +g291134 +S'To Feed the Hungry' +p360286 +sg291137 +S'Georg Pencz' +p360287 +sg291130 +S'engraving' +p360288 +sg291132 +S'unknown date\n' +p360289 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b080.jpg' +p360290 +sg291136 +g27 +sa(dp360291 +g291134 +S'To Clothe the Naked' +p360292 +sg291137 +S'Georg Pencz' +p360293 +sg291130 +S'engraving' +p360294 +sg291132 +S'unknown date\n' +p360295 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b083.jpg' +p360296 +sg291136 +g27 +sa(dp360297 +g291134 +S'To Give Drink to the Thirsty' +p360298 +sg291137 +S'Georg Pencz' +p360299 +sg291130 +S'engraving' +p360300 +sg291132 +S'unknown date\n' +p360301 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b081.jpg' +p360302 +sg291136 +g27 +sa(dp360303 +g291134 +S'To Visit the Imprisoned' +p360304 +sg291137 +S'Georg Pencz' +p360305 +sg291130 +S'engraving' +p360306 +sg291132 +S'unknown date\n' +p360307 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b085.jpg' +p360308 +sg291136 +g27 +sa(dp360309 +g291134 +S'To House the Pilgrims' +p360310 +sg291137 +S'Georg Pencz' +p360311 +sg291130 +S'engraving' +p360312 +sg291132 +S'unknown date\n' +p360313 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b082.jpg' +p360314 +sg291136 +g27 +sa(dp360315 +g291134 +S'To Nurse the Sick' +p360316 +sg291137 +S'Georg Pencz' +p360317 +sg291130 +S'engraving' +p360318 +sg291132 +S'unknown date\n' +p360319 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b084.jpg' +p360320 +sg291136 +g27 +sa(dp360321 +g291134 +S'Woman, Satyr Child, and Goat in a Landscape' +p360322 +sg291137 +S'Giovanni Battista Tiepolo' +p360323 +sg291130 +S'etching' +p360324 +sg291132 +S'published 1785' +p360325 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb23.jpg' +p360326 +sg291136 +g27 +sa(dp360327 +g291134 +S'To Bury the Dead' +p360328 +sg291137 +S'Georg Pencz' +p360329 +sg291130 +S'engraving' +p360330 +sg291132 +S'unknown date\n' +p360331 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b0/a000b086.jpg' +p360332 +sg291136 +g27 +sa(dp360333 +g291134 +S'Georg Pencz' +p360334 +sg291137 +S'Georg Pencz' +p360335 +sg291130 +S', unknown date' +p360336 +sg291132 +S'\n' +p360337 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad55.jpg' +p360338 +sg291136 +g27 +sa(dp360339 +g291134 +S'Wife of Georg Pencz' +p360340 +sg291137 +S'Georg Pencz' +p360341 +sg291130 +S', unknown date' +p360342 +sg291132 +S'\n' +p360343 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad54.jpg' +p360344 +sg291136 +g27 +sa(dp360345 +g291134 +S'Death of the Virgin' +p360346 +sg291137 +S'Hans Wechtlin I' +p360347 +sg291130 +S'engraving [proof]' +p360348 +sg291132 +S'unknown date\n' +p360349 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ad/a000ad63.jpg' +p360350 +sg291136 +g27 +sa(dp360351 +g291134 +S'Death of the Virgin' +p360352 +sg291137 +S'Hans Wechtlin I' +p360353 +sg291130 +S'engraving' +p360354 +sg291132 +S'unknown date\n' +p360355 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000b1/a000b1b5.jpg' +p360356 +sg291136 +g27 +sa(dp360357 +g291134 +S'Elizabeth, Queen of England' +p360358 +sg291137 +S'Crispijn van de Passe I' +p360359 +sg291130 +S', 1592' +p360360 +sg291132 +S'\n' +p360361 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ce/a000ceb3.jpg' +p360362 +sg291136 +g27 +sa(dp360363 +g291134 +S'Elizabeth, Queen of England' +p360364 +sg291137 +S'Crispijn van de Passe I' +p360365 +sg291130 +S', unknown date' +p360366 +sg291132 +S'\n' +p360367 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000d0/a000d016.jpg' +p360368 +sg291136 +g27 +sa(dp360369 +g291130 +S'French, active first half 20th century' +p360370 +sg291132 +S'(printer)' +p360371 +sg291134 +S'The Saltimbanques' +p360372 +sg291136 +g27 +sg291137 +S'Artist Information (' +p360373 +sa(dp360374 +g291134 +S"The Watering Place (L'abreuvoir)" +p360375 +sg291137 +S'Artist Information (' +p360376 +sg291130 +S'French, 1822 - 1907' +p360377 +sg291132 +S'(printer)' +p360378 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ed/a000edb3.jpg' +p360379 +sg291136 +g27 +sa(dp360380 +g291134 +S'Bust of a Woman (Buste de femme)' +p360381 +sg291137 +S'Pablo Picasso' +p360382 +sg291130 +S'woodcut [proof]' +p360383 +sg291132 +S'1905/1906' +p360384 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ee/a000eea7.jpg' +p360385 +sg291136 +g27 +sa(dp360386 +g291134 +S'Standing Philosopher and Two Other Figures' +p360387 +sg291137 +S'Giovanni Battista Tiepolo' +p360388 +sg291130 +S'etching' +p360389 +sg291132 +S'published 1785' +p360390 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb22.jpg' +p360391 +sg291136 +g27 +sa(dp360392 +g291134 +S'Woman at the Seashore (Femme au bord de la mer)' +p360393 +sg291137 +S'Pablo Picasso' +p360394 +sg291130 +S'lithograph (stone) in black on wove paper' +p360395 +sg291132 +S'1923 or 1924' +p360396 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee28.jpg' +p360397 +sg291136 +g27 +sa(dp360398 +g291134 +S'Spartan Envoys (Serment des femmes)' +p360399 +sg291137 +S'Pablo Picasso' +p360400 +sg291130 +S'etching and aquatint' +p360401 +sg291132 +S'1934' +p360402 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee9c.jpg' +p360403 +sg291136 +g27 +sa(dp360404 +g291130 +S'portfolio with five etchings and one etching and aquatint' +p360405 +sg291132 +S'published 1934' +p360406 +sg291134 +S'Aristophanes\' "Lysistrata"' +p360407 +sg291136 +g27 +sg291137 +S'Pablo Picasso' +p360408 +sa(dp360409 +g291134 +S"Negotiation between the Athenians and the Spartan Envoys (Accord entre les guerriers de Sparte d'Athenes)" +p360410 +sg291137 +S'Pablo Picasso' +p360411 +sg291130 +S'etching' +p360412 +sg291132 +S'1934' +p360413 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee9d.jpg' +p360414 +sg291136 +g27 +sa(dp360415 +g291134 +S'Kinesias and Myrrhine (Cinesias et Myrrhine)' +p360416 +sg291137 +S'Pablo Picasso' +p360417 +sg291130 +S'etching' +p360418 +sg291132 +S'1934' +p360419 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee9b.jpg' +p360420 +sg291136 +g27 +sa(dp360421 +g291134 +S'Celebration of Peace and Reconciliation (Le festin)' +p360422 +sg291137 +S'Pablo Picasso' +p360423 +sg291130 +S'etching' +p360424 +sg291132 +S'1934' +p360425 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee9a.jpg' +p360426 +sg291136 +g27 +sa(dp360427 +g291134 +S'Two Desparate Men on the Seashore (Deux viellards et voilier)' +p360428 +sg291137 +S'Pablo Picasso' +p360429 +sg291130 +S'etching' +p360430 +sg291132 +S'1934' +p360431 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee99.jpg' +p360432 +sg291136 +g27 +sa(dp360433 +g291134 +S'Kinesias and Myrrhine with a Child (Couple etenfant)' +p360434 +sg291137 +S'Pablo Picasso' +p360435 +sg291130 +S'etching' +p360436 +sg291132 +S'1934' +p360437 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000ee/a000ee98.jpg' +p360438 +sg291136 +g27 +sa(dp360439 +g291130 +S'aquatint' +p360440 +sg291132 +S'unknown date\n' +p360441 +sg291134 +S'Christ and the Adulteress' +p360442 +sg291136 +g27 +sg291137 +S'Carl Pickhardt' +p360443 +sa(dp360444 +g291134 +S'Women and Men Regarding a Burning Pyre of Bones' +p360445 +sg291137 +S'Giovanni Battista Tiepolo' +p360446 +sg291130 +S'etching' +p360447 +sg291132 +S'published 1785' +p360448 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00066/a000664e.jpg' +p360449 +sg291136 +g27 +sa(dp360450 +g291130 +S'drypoint and (etching?)' +p360451 +sg291132 +S'unknown date\n' +p360452 +sg291134 +S'15th and Market Streets' +p360453 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360454 +sa(dp360455 +g291130 +S'drypoint and (etching?)' +p360456 +sg291132 +S'unknown date\n' +p360457 +sg291134 +S'West Philadelphia' +p360458 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360459 +sa(dp360460 +g291130 +S'drypoint and (etching?)' +p360461 +sg291132 +S'unknown date\n' +p360462 +sg291134 +S'Tracks and Trains' +p360463 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360464 +sa(dp360465 +g291130 +S'drypoint and (etching?)' +p360466 +sg291132 +S'unknown date\n' +p360467 +sg291134 +S'The Steel Bucket' +p360468 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360469 +sa(dp360470 +g291130 +S'drypoint and (etching?)' +p360471 +sg291132 +S'unknown date\n' +p360472 +sg291134 +S'Steam Shovels' +p360473 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360474 +sa(dp360475 +g291130 +S'drypoint and (etching?)' +p360476 +sg291132 +S'unknown date\n' +p360477 +sg291134 +S'The Smoke Tower' +p360478 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360479 +sa(dp360480 +g291130 +S'drypoint and (etching?)' +p360481 +sg291132 +S'unknown date\n' +p360482 +sg291134 +S'The Schuylkill' +p360483 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360484 +sa(dp360485 +g291130 +S'drypoint and (etching?)' +p360486 +sg291132 +S'unknown date\n' +p360487 +sg291134 +S'Sansom Street' +p360488 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360489 +sa(dp360490 +g291130 +S'drypoint and (etching?)' +p360491 +sg291132 +S'unknown date\n' +p360492 +sg291134 +S'The Repair Gang' +p360493 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360494 +sa(dp360495 +g291130 +S'drypoint and (etching?)' +p360496 +sg291132 +S'unknown date\n' +p360497 +sg291134 +S'The Pennsylvania Railroad' +p360498 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360499 +sa(dp360500 +g291134 +S'Death Giving Audience' +p360501 +sg291137 +S'Giovanni Battista Tiepolo' +p360502 +sg291130 +S'etching' +p360503 +sg291132 +S'published 1785' +p360504 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb28.jpg' +p360505 +sg291136 +g27 +sa(dp360506 +g291130 +S'drypoint and (etching?)' +p360507 +sg291132 +S'unknown date\n' +p360508 +sg291134 +S'Philadelphia Club' +p360509 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360510 +sa(dp360511 +g291130 +S'drypoint and (etching?)' +p360512 +sg291132 +S'unknown date\n' +p360513 +sg291134 +S'Overhead Wires' +p360514 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360515 +sa(dp360516 +g291130 +S'drypoint and (etching?)' +p360517 +sg291132 +S'unknown date\n' +p360518 +sg291134 +S'Outgoing Trains' +p360519 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360520 +sa(dp360521 +g291130 +S'drypoint and (etching?)' +p360522 +sg291132 +S'unknown date\n' +p360523 +sg291134 +S'Juniper Street' +p360524 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360525 +sa(dp360526 +g291130 +S'drypoint and (etching?)' +p360527 +sg291132 +S'unknown date\n' +p360528 +sg291134 +S'Independence Hall' +p360529 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360530 +sa(dp360531 +g291130 +S'drypoint and (etching?)' +p360532 +sg291132 +S'unknown date\n' +p360533 +sg291134 +S'Filbert Street' +p360534 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360535 +sa(dp360536 +g291130 +S'drypoint and (etching?)' +p360537 +sg291132 +S'unknown date\n' +p360538 +sg291134 +S'Eleven Buckets' +p360539 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360540 +sa(dp360541 +g291134 +S'Young Soldier with Philosopher and Seated Woman' +p360542 +sg291137 +S'Giovanni Battista Tiepolo' +p360543 +sg291130 +S'etching' +p360544 +sg291132 +S'published 1785' +p360545 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb27.jpg' +p360546 +sg291136 +g27 +sa(dp360547 +g291130 +S'drypoint and (etching?)' +p360548 +sg291132 +S'unknown date\n' +p360549 +sg291134 +S'Delaware River Bridge' +p360550 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360551 +sa(dp360552 +g291130 +S'drypoint and (etching?)' +p360553 +sg291132 +S'unknown date\n' +p360554 +sg291134 +S'City Hall Tower, From Spruce Street' +p360555 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360556 +sa(dp360557 +g291130 +S'drypoint and (etching?)' +p360558 +sg291132 +S'unknown date\n' +p360559 +sg291134 +S'The Chinese Wall' +p360560 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360561 +sa(dp360562 +g291130 +S'drypoint and (etching?)' +p360563 +sg291132 +S'unknown date\n' +p360564 +sg291134 +S'Broad and Walnut Streets' +p360565 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360566 +sa(dp360567 +g291130 +S'drypoint and (etching?)' +p360568 +sg291132 +S'unknown date\n' +p360569 +sg291134 +S'Across the Delaware' +p360570 +sg291136 +g27 +sg291137 +S'Salvatore Pinto' +p360571 +sa(dp360572 +g291134 +S'Cabaret of Ramponaux' +p360573 +sg291137 +S'Beno\xc3\xaet-Louis Pr\xc3\xa9vost' +p360574 +sg291130 +S'etching' +p360575 +sg291132 +S'unknown date\n' +p360576 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00096/a000965c.jpg' +p360577 +sg291136 +g27 +sa(dp360578 +g291134 +S'Study for "Le Stryge"' +p360579 +sg291137 +S'Joseph Pennell' +p360580 +sg291130 +S'pen and black ink over graphite' +p360581 +sg291132 +S'probably 1893' +p360582 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00009/a000097e.jpg' +p360583 +sg291136 +g27 +sa(dp360584 +g291134 +S'Westminster, Evening' +p360585 +sg291137 +S'Joseph Pennell' +p360586 +sg291130 +S'mezzotint' +p360587 +sg291132 +S'1909' +p360588 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bac.jpg' +p360589 +sg291136 +g27 +sa(dp360590 +g291134 +S'Soldier with Horse and Attendant' +p360591 +sg291137 +S'Giovanni Battista Tiepolo' +p360592 +sg291130 +S'etching' +p360593 +sg291132 +S'published 1785' +p360594 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb26.jpg' +p360595 +sg291136 +g27 +sa(dp360596 +g291134 +S'Le Puy' +p360597 +sg291137 +S'Joseph Pennell' +p360598 +sg291130 +S'etching' +p360599 +sg291132 +S'1894' +p360600 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b50.jpg' +p360601 +sg291136 +g27 +sa(dp360602 +g291134 +S'London Night, Whiskey and Tea' +p360603 +sg291137 +S'Joseph Pennell' +p360604 +sg291130 +S'mezzotint' +p360605 +sg291132 +S'1909' +p360606 +sg292149 +S'http://www.nga.gov:80/thumb-l/a00068/a0006831.jpg' +p360607 +sg291136 +g27 +sa(dp360608 +g291134 +S'Down and Up the Hills to the Bay, San Francisco' +p360609 +sg291137 +S'Joseph Pennell' +p360610 +sg291130 +S'etching' +p360611 +sg291132 +S'1912' +p360612 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010baf.jpg' +p360613 +sg291136 +g27 +sa(dp360614 +g291134 +S'Brasserie, Au Lion Rouge' +p360615 +sg291137 +S'Joseph Pennell' +p360616 +sg291130 +S'etching' +p360617 +sg291132 +S'1893' +p360618 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000f7/a000f7ac.jpg' +p360619 +sg291136 +g27 +sa(dp360620 +g291134 +S'The Square, Independence Square, Philadelphia' +p360621 +sg291137 +S'Joseph Pennell' +p360622 +sg291130 +S'etching' +p360623 +sg291132 +S'1920' +p360624 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bbb.jpg' +p360625 +sg291136 +g27 +sa(dp360626 +g291134 +S'New York Stock Exchange' +p360627 +sg291137 +S'Joseph Pennell' +p360628 +sg291130 +S'etching' +p360629 +sg291132 +S'1923' +p360630 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010bc5.jpg' +p360631 +sg291136 +g27 +sa(dp360632 +g291134 +S'La Place, Beauvais' +p360633 +sg291137 +S'Joseph Pennell' +p360634 +sg291130 +S'etching' +p360635 +sg291132 +S'1907' +p360636 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010ba4.jpg' +p360637 +sg291136 +g27 +sa(dp360638 +g291134 +S'The Transept, Beauvais' +p360639 +sg291137 +S'Joseph Pennell' +p360640 +sg291130 +S'etching' +p360641 +sg291132 +S'1907' +p360642 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010ba7.jpg' +p360643 +sg291136 +g27 +sa(dp360644 +g291134 +S"West Door, St. Paul's" +p360645 +sg291137 +S'Joseph Pennell' +p360646 +sg291130 +S'etching' +p360647 +sg291132 +S'1903' +p360648 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b54.jpg' +p360649 +sg291136 +g27 +sa(dp360650 +g291134 +S'Le Stryge' +p360651 +sg291137 +S'Joseph Pennell' +p360652 +sg291130 +S'etching' +p360653 +sg291132 +S'1893' +p360654 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b4e.jpg' +p360655 +sg291136 +g27 +sa(dp360656 +g291134 +S'Arms of Karl Philip von Greiffenklau, Prince-Bishop of Wurzburg' +p360657 +sg291137 +S'Giovanni Domenico Tiepolo' +p360658 +sg291130 +S'etching' +p360659 +sg291132 +S'published 1753' +p360660 +sg292149 +S'http://www.nga.gov:80/thumb-l/a000cb/a000cb98.jpg' +p360661 +sg291136 +g27 +sa(dp360662 +g291134 +S'Le Stryge' +p360663 +sg291137 +S'Joseph Pennell' +p360664 +sg291130 +S'etching' +p360665 +sg291132 +S'1893' +p360666 +sg292149 +S'http://www.nga.gov:80/thumb-l/a0010b/a0010b4f.jpg' +p360667 +sg291136 +g27 +sa. \ No newline at end of file diff --git a/Lesson3_MarkovChains/trigrams.pickle b/Lesson3_MarkovChains/trigrams.pickle new file mode 100755 index 0000000..1a4e56e --- /dev/null +++ b/Lesson3_MarkovChains/trigrams.pickle @@ -0,0 +1,657189 @@ +(lp0 +(S'the' +p1 +S'narrow' +p2 +S'shape' +p3 +tp4 +a(g2 +g3 +S'and' +p5 +tp6 +a(g3 +g5 +S'large' +p7 +tp8 +a(g5 +g7 +S'size' +p9 +tp10 +a(g7 +g9 +S'of' +p11 +tp12 +a(g9 +g11 +S'this' +p13 +tp14 +a(g11 +g13 +S'panel' +p15 +tp16 +a(g13 +g15 +S'suggest' +p17 +tp18 +a(g15 +g17 +S'it' +p19 +tp20 +a(g17 +g19 +S'was' +p21 +tp22 +a(g19 +g21 +S'meant' +p23 +tp24 +a(g21 +g23 +S'to' +p25 +tp26 +a(g23 +g25 +S'hang' +p27 +tp28 +a(g25 +g27 +S'against' +p29 +tp30 +a(g27 +g29 +S'a' +p31 +tp32 +a(g29 +g31 +S'colossal' +p33 +tp34 +a(g31 +g33 +S'pillar' +p35 +tp36 +a(g33 +g35 +S'in' +p37 +tp38 +a(g35 +g37 +S'a' +p39 +tp40 +a(g37 +g39 +S'church.' +p41 +tp42 +a(g39 +g41 +S'the' +p43 +tp44 +a(g41 +g43 +S'original' +p45 +tp46 +a(g43 +g45 +S'frame' +p47 +tp48 +a(g45 +g47 +S'utilizes' +p49 +tp50 +a(g47 +g49 +S'decorative' +p51 +tp52 +a(g49 +g51 +S'motifs' +p53 +tp54 +a(g51 +g53 +S'similar' +p55 +tp56 +a(g53 +g55 +S'to' +p57 +tp58 +a(g55 +g57 +S'those' +p59 +tp60 +a(g57 +g59 +S'in' +p61 +tp62 +a(g59 +g61 +S'the' +p63 +tp64 +a(g61 +g63 +S'borders' +p65 +tp66 +a(g63 +g65 +S'of' +p67 +tp68 +a(g65 +g67 +S'gothic' +p69 +tp70 +a(g67 +g69 +S'illuminated' +p71 +tp72 +a(g69 +g71 +S'manuscripts.' +p73 +tp74 +a(g71 +g73 +S'saint' +p75 +tp76 +a(g73 +g75 +S'paul' +p77 +tp78 +a(g75 +g77 +S'holds' +p79 +tp80 +a(g77 +g79 +S'a' +p81 +tp82 +a(g79 +g81 +S'book,' +p83 +tp84 +a(g81 +g83 +S'recalling' +p85 +tp86 +a(g83 +g85 +S'the' +p87 +tp88 +a(g85 +g87 +S'epistles' +p89 +tp90 +a(g87 +g89 +S'he' +p91 +tp92 +a(g89 +g91 +S'wrote.' +p93 +tp94 +a(g91 +g93 +S'the' +p95 +tp96 +a(g93 +g95 +S'sword' +p97 +tp98 +a(g95 +g97 +S'he' +p99 +tp100 +a(g97 +g99 +S'displays' +p101 +tp102 +a(g99 +g101 +S'has' +p103 +tp104 +a(g101 +g103 +S'several' +p105 +tp106 +a(g103 +g105 +S'meanings:' +p107 +tp108 +a(g105 +g107 +S'his' +p109 +tp110 +a(g107 +g109 +S'early' +p111 +tp112 +a(g109 +g111 +S'career' +p113 +tp114 +a(g111 +g113 +S'as' +p115 +tp116 +a(g113 +g115 +S'a' +p117 +tp118 +a(g115 +g117 +S'roman' +p119 +tp120 +a(g117 +g119 +S'soldier;' +p121 +tp122 +a(g119 +g121 +S'his' +p123 +tp124 +a(g121 +g123 +S'position' +p125 +tp126 +a(g123 +g125 +S'as' +p127 +tp128 +a(g125 +g127 +S'defender' +p129 +tp130 +a(g127 +g129 +S'of' +p131 +tp132 +a(g129 +g131 +S'the' +p133 +tp134 +a(g131 +g133 +S'christian' +p135 +tp136 +a(g133 +g135 +S'faith;' +p137 +tp138 +a(g135 +g137 +S'and' +p139 +tp140 +a(g137 +g139 +S'the' +p141 +tp142 +a(g139 +g141 +S'instrument' +p143 +tp144 +a(g141 +g143 +S'of' +p145 +tp146 +a(g143 +g145 +S'his' +p147 +tp148 +a(g145 +g147 +S'martyrdom' +p149 +tp150 +a(g147 +g149 +S'by' +p151 +tp152 +a(g149 +g151 +S'beheading.' +p153 +tp154 +a(g151 +g153 +S'the' +p155 +tp156 +a(g153 +g155 +S'great' +p157 +tp158 +a(g155 +g157 +S'dignity' +p159 +tp160 +a(g157 +g159 +S'of' +p161 +tp162 +a(g159 +g161 +S'his' +p163 +tp164 +a(g161 +g163 +S'erect' +p165 +tp166 +a(g163 +g165 +S'figure' +p167 +tp168 +a(g165 +g167 +S'and' +p169 +tp170 +a(g167 +g169 +S'the' +p171 +tp172 +a(g169 +g171 +S'monumental' +p173 +tp174 +a(g171 +g173 +S'effect' +p175 +tp176 +a(g173 +g175 +S'of' +p177 +tp178 +a(g175 +g177 +S'the' +p179 +tp180 +a(g177 +g179 +S'drapery' +p181 +tp182 +a(g179 +g181 +S'correspond' +p183 +tp184 +a(g181 +g183 +S'to' +p185 +tp186 +a(g183 +g185 +S'his' +p187 +tp188 +a(g185 +g187 +S'stern,' +p189 +tp190 +a(g187 +g189 +S'direct' +p191 +tp192 +a(g189 +g191 +S'gaze.' +p193 +tp194 +a(g191 +g193 +S'his' +p195 +tp196 +a(g193 +g195 +S'imposing' +p197 +tp198 +a(g195 +g197 +S'presence' +p199 +tp200 +a(g197 +g199 +S'implies' +p201 +tp202 +a(g199 +g201 +S'that' +p203 +tp204 +a(g201 +g203 +S'the' +p205 +tp206 +a(g203 +g205 +S'painter' +p207 +tp208 +a(g205 +g207 +S'bernardo' +p209 +tp210 +a(g207 +g209 +S'daddi' +p211 +tp212 +a(g209 +g211 +S'may' +p213 +tp214 +a(g211 +g213 +S'have' +p215 +tp216 +a(g213 +g215 +S'been' +p217 +tp218 +a(g215 +g217 +S'a' +p219 +tp220 +a(g217 +g219 +S'pupil' +p221 +tp222 +a(g219 +g221 +S'of' +p223 +tp224 +a(g221 +g223 +S'a' +p225 +tp226 +a(g223 +g225 +S'sweeter,' +p227 +tp228 +a(g225 +g227 +S'gentler' +p229 +tp230 +a(g227 +g229 +S'mood' +p231 +tp232 +a(g229 +g231 +S'emanates' +p233 +tp234 +a(g231 +g233 +S'from' +p235 +tp236 +a(g233 +g235 +S'the' +p237 +tp238 +a(g235 +g237 +S'small' +p239 +tp240 +a(g237 +g239 +S'figures' +p241 +tp242 +a(g239 +g241 +S'representing' +p243 +tp244 +a(g241 +g243 +S'the' +p245 +tp246 +a(g243 +g245 +S'donors' +p247 +tp248 +a(g245 +g247 +S'who' +p249 +tp250 +a(g247 +g249 +S'commissioned' +p251 +tp252 +a(g249 +g251 +S'this' +p253 +tp254 +a(g251 +g253 +S'painting.' +p255 +tp256 +a(g253 +g255 +S'although' +p257 +tp258 +a(g255 +g257 +S'depictions' +p259 +tp260 +a(g257 +g259 +S'of' +p261 +tp262 +a(g259 +g261 +S'donors' +p263 +tp264 +a(g261 +g263 +S'are' +p265 +tp266 +a(g263 +g265 +S'not' +p267 +tp268 +a(g265 +g267 +S'unusual' +p269 +tp270 +a(g267 +g269 +S'in' +p271 +tp272 +a(g269 +g271 +S'gothic' +p273 +tp274 +a(g271 +g273 +S'art,' +p275 +tp276 +a(g273 +g275 +S'it' +p277 +tp278 +a(g275 +g277 +S'is' +p279 +tp280 +a(g277 +g279 +S'rare' +p281 +tp282 +a(g279 +g281 +S'to' +p283 +tp284 +a(g281 +g283 +S'find' +p285 +tp286 +a(g283 +g285 +S'so' +p287 +tp288 +a(g285 +g287 +S'many' +p289 +tp290 +a(g287 +g289 +S'husbands' +p291 +tp292 +a(g289 +g291 +S'and' +p293 +tp294 +a(g291 +g293 +S'wives' +p295 +tp296 +a(g293 +g295 +S'shown' +p297 +tp298 +a(g295 +g297 +S'kneeling' +p299 +tp300 +a(g297 +g299 +S'together.' +p301 +tp302 +a(g299 +g301 +S'the' +p303 +tp304 +a(g301 +g303 +S'couples' +p305 +tp306 +a(g303 +g305 +S'are' +p307 +tp308 +a(g305 +g307 +S'separated,' +p309 +tp310 +a(g307 +g309 +S'just' +p311 +tp312 +a(g309 +g311 +S'as' +p313 +tp314 +a(g311 +g313 +S'men' +p315 +tp316 +a(g313 +g315 +S'and' +p317 +tp318 +a(g315 +g317 +S'women' +p319 +tp320 +a(g317 +g319 +S'were' +p321 +tp322 +a(g319 +g321 +S'while' +p323 +tp324 +a(g321 +g323 +S'worshiping' +p325 +tp326 +a(g323 +g325 +S'in' +p327 +tp328 +a(g325 +g327 +S'church' +p329 +tp330 +a(g327 +g329 +S'during' +p331 +tp332 +a(g329 +g331 +S'the' +p333 +tp334 +a(g331 +g333 +S'middle' +p335 +tp336 +a(g333 +g335 +S'ages.' +p337 +tp338 +a(g335 +g337 +S'this' +p339 +tp340 +a(g337 +g339 +S'work' +p341 +tp342 +a(g339 +g341 +S'comes' +p343 +tp344 +a(g341 +g343 +S'from' +p345 +tp346 +a(g343 +g345 +S'the' +p347 +tp348 +a(g345 +g347 +S'front' +p349 +tp350 +a(g347 +g349 +S'predella,' +p351 +tp352 +a(g349 +g351 +S'the' +p353 +tp354 +a(g351 +g353 +S'separate' +p355 +tp356 +a(g353 +g355 +S'horizontal' +p357 +tp358 +a(g355 +g357 +S'band' +p359 +tp360 +a(g357 +g359 +S'of' +p361 +tp362 +a(g359 +g361 +S'narrative' +p363 +tp364 +a(g361 +g363 +S'scenes' +p365 +tp366 +a(g363 +g365 +S'at' +p367 +tp368 +a(g365 +g367 +S'the' +p369 +tp370 +a(g367 +g369 +S'base' +p371 +tp372 +a(g369 +g371 +S'of' +p373 +tp374 +a(g371 +g373 +S'the' +p375 +tp376 +a(g373 +g375 +S'great' +p377 +tp378 +a(g375 +g377 +S'in' +p379 +tp380 +a(g377 +g379 +S'the' +p381 +tp382 +a(g379 +g381 +S"duccio's" +p383 +tp384 +a(g381 +g383 +S'unique' +p385 +tp386 +a(g383 +g385 +S'contribution' +p387 +tp388 +a(g385 +g387 +S'to' +p389 +tp390 +a(g387 +g389 +S'the' +p391 +tp392 +a(g389 +g391 +S'byzantine' +p393 +tp394 +a(g391 +g393 +S'style' +p395 +tp396 +a(g393 +g395 +S'is' +p397 +tp398 +a(g395 +g397 +S'his' +p399 +tp400 +a(g397 +g399 +S'use' +p401 +tp402 +a(g399 +g401 +S'of' +p403 +tp404 +a(g401 +g403 +S'elegantly' +p405 +tp406 +a(g403 +g405 +S'flowing' +p407 +tp408 +a(g405 +g407 +S'lines,' +p409 +tp410 +a(g407 +g409 +S'most' +p411 +tp412 +a(g409 +g411 +S'evident' +p413 +tp414 +a(g411 +g413 +S'here' +p415 +tp416 +a(g413 +g415 +S'in' +p417 +tp418 +a(g415 +g417 +S'the' +p419 +tp420 +a(g417 +g419 +S'drapery' +p421 +tp422 +a(g419 +g421 +S'folds' +p423 +tp424 +a(g421 +g423 +S'and' +p425 +tp426 +a(g423 +g425 +S'mountain' +p427 +tp428 +a(g425 +g427 +S'ridges.' +p429 +tp430 +a(g427 +g429 +S'the' +p431 +tp432 +a(g429 +g431 +S'soft,' +p433 +tp434 +a(g431 +g433 +S'undulating' +p435 +tp436 +a(g433 +g435 +S'brushstrokes' +p437 +tp438 +a(g435 +g437 +S'downplay' +p439 +tp440 +a(g437 +g439 +S'the' +p441 +tp442 +a(g439 +g441 +S'austerity' +p443 +tp444 +a(g441 +g443 +S'of' +p445 +tp446 +a(g443 +g445 +S'the' +p447 +tp448 +a(g445 +g447 +S'earlier' +p449 +tp450 +a(g447 +g449 +S'style,' +p451 +tp452 +a(g449 +g451 +S'as' +p453 +tp454 +a(g451 +g453 +S'do' +p455 +tp456 +a(g453 +g455 +S'the' +p457 +tp458 +a(g455 +g457 +S'sensitive' +p459 +tp460 +a(g457 +g459 +S'rendering' +p461 +tp462 +a(g459 +g461 +S'of' +p463 +tp464 +a(g461 +g463 +S'the' +p465 +tp466 +a(g463 +g465 +S"virgin's" +p467 +tp468 +a(g465 +g467 +S'face' +p469 +tp470 +a(g467 +g469 +S'and' +p471 +tp472 +a(g469 +g471 +S'the' +p473 +tp474 +a(g471 +g473 +S'individual' +p475 +tp476 +a(g473 +g475 +S'characterizations' +p477 +tp478 +a(g475 +g477 +S'of' +p479 +tp480 +a(g477 +g479 +S'isaiah' +p481 +tp482 +a(g479 +g481 +S'and' +p483 +tp484 +a(g481 +g483 +S'ezekiel,' +p485 +tp486 +a(g483 +g485 +S'expressing' +p487 +tp488 +a(g485 +g487 +S'a' +p489 +tp490 +a(g487 +g489 +S'true' +p491 +tp492 +a(g489 +g491 +S'sense' +p493 +tp494 +a(g491 +g493 +S'of' +p495 +tp496 +a(g493 +g495 +S'human' +p497 +tp498 +a(g495 +g497 +S'feeling.' +p499 +tp500 +a(g497 +g499 +S'the' +p501 +tp502 +a(g499 +g501 +S'thinker' +p503 +tp504 +a(g501 +g503 +S'the' +p505 +tp506 +a(g503 +g505 +S'theme' +p507 +tp508 +a(g505 +g507 +S'for' +p509 +tp510 +a(g507 +g509 +S"rodin's" +p511 +tp512 +a(g509 +g511 +S'rodin' +p513 +tp514 +a(g511 +g513 +S'designed' +p515 +tp516 +a(g513 +g515 +S'this' +p517 +tp518 +a(g515 +g517 +S'figure' +p519 +tp520 +a(g517 +g519 +S'as' +p521 +tp522 +a(g519 +g521 +S'one' +p523 +tp524 +a(g521 +g523 +S'of' +p525 +tp526 +a(g523 +g525 +S'six' +p527 +tp528 +a(g525 +g527 +S'colossal' +p529 +tp530 +a(g527 +g529 +S'statues' +p531 +tp532 +a(g529 +g531 +S'forming' +p533 +tp534 +a(g531 +g533 +S'a' +p535 +tp536 +a(g533 +g535 +S'monument' +p537 +tp538 +a(g535 +g537 +S'to' +p539 +tp540 +a(g537 +g539 +S'a' +p541 +tp542 +a(g539 +g541 +S'group' +p543 +tp544 +a(g541 +g543 +S'of' +p545 +tp546 +a(g543 +g545 +S'fourteenth-century' +p547 +tp548 +a(g545 +g547 +S'citizens' +p549 +tp550 +a(g547 +g549 +S'of' +p551 +tp552 +a(g549 +g551 +S'the' +p553 +tp554 +a(g551 +g553 +S'northern' +p555 +tp556 +a(g553 +g555 +S'french' +p557 +tp558 +a(g555 +g557 +S'town' +p559 +tp560 +a(g557 +g559 +S'of' +p561 +tp562 +a(g559 +g561 +S'calais.' +p563 +tp564 +a(g561 +g563 +S'the' +p565 +tp566 +a(g563 +g565 +S'six' +p567 +tp568 +a(g565 +g567 +S'men' +p569 +tp570 +a(g567 +g569 +S'had' +p571 +tp572 +a(g569 +g571 +S'offered' +p573 +tp574 +a(g571 +g573 +S'themselves' +p575 +tp576 +a(g573 +g575 +S'as' +p577 +tp578 +a(g575 +g577 +S'hostages' +p579 +tp580 +a(g577 +g579 +S'to' +p581 +tp582 +a(g579 +g581 +S'induce' +p583 +tp584 +a(g581 +g583 +S'the' +p585 +tp586 +a(g583 +g585 +S'english' +p587 +tp588 +a(g585 +g587 +S'to' +p589 +tp590 +a(g587 +g589 +S'lift' +p591 +tp592 +a(g589 +g591 +S'a' +p593 +tp594 +a(g591 +g593 +S'siege' +p595 +tp596 +a(g593 +g595 +S'and' +p597 +tp598 +a(g595 +g597 +S'spare' +p599 +tp600 +a(g597 +g599 +S'their' +p601 +tp602 +a(g599 +g601 +S'starving' +p603 +tp604 +a(g601 +g603 +S'city.' +p605 +tp606 +a(g603 +g605 +S'when' +p607 +tp608 +a(g605 +g607 +S'modern' +p609 +tp610 +a(g607 +g609 +S'calais,' +p611 +tp612 +a(g609 +g611 +S'about' +p613 +tp614 +a(g611 +g613 +S'to' +p615 +tp616 +a(g613 +g615 +S'tear' +p617 +tp618 +a(g615 +g617 +S'down' +p619 +tp620 +a(g617 +g619 +S'its' +p621 +tp622 +a(g619 +g621 +S'medieval' +p623 +tp624 +a(g621 +g623 +S'walls,' +p625 +tp626 +a(g623 +g625 +S'decided' +p627 +tp628 +a(g625 +g627 +S'to' +p629 +tp630 +a(g627 +g629 +S'erect' +p631 +tp632 +a(g629 +g631 +S'a' +p633 +tp634 +a(g631 +g633 +S'monument' +p635 +tp636 +a(g633 +g635 +S'reaffirming' +p637 +tp638 +a(g635 +g637 +S'its' +p639 +tp640 +a(g637 +g639 +S'ancient' +p641 +tp642 +a(g639 +g641 +S'identity,' +p643 +tp644 +a(g641 +g643 +S'rodin' +p645 +tp646 +a(g643 +g645 +S'pursued' +p647 +tp648 +a(g645 +g647 +S'the' +p649 +tp650 +a(g647 +g649 +S'commission' +p651 +tp652 +a(g649 +g651 +S'eagerly' +p653 +tp654 +a(g651 +g653 +S'and' +p655 +tp656 +a(g653 +g655 +S'won' +p657 +tp658 +a(g655 +g657 +S'it' +p659 +tp660 +a(g657 +g659 +S'in' +p661 +tp662 +a(g659 +g661 +S'1884.' +p663 +tp664 +a(g661 +g663 +S"rodin's" +p665 +tp666 +a(g663 +g665 +S'burghers,' +p667 +tp668 +a(g665 +g667 +S'following' +p669 +tp670 +a(g667 +g669 +S'the' +p671 +tp672 +a(g669 +g671 +S"conqueror's" +p673 +tp674 +a(g671 +g673 +S'orders,' +p675 +tp676 +a(g673 +g675 +S'are' +p677 +tp678 +a(g675 +g677 +S'stripped' +p679 +tp680 +a(g677 +g679 +S'down' +p681 +tp682 +a(g679 +g681 +S'to' +p683 +tp684 +a(g681 +g683 +S'their' +p685 +tp686 +a(g683 +g685 +S'shirts,' +p687 +tp688 +a(g685 +g687 +S'with' +p689 +tp690 +a(g687 +g689 +S'halters' +p691 +tp692 +a(g689 +g691 +S'around' +p693 +tp694 +a(g691 +g693 +S'their' +p695 +tp696 +a(g693 +g695 +S'necks' +p697 +tp698 +a(g695 +g697 +S'and' +p699 +tp700 +a(g697 +g699 +S'the' +p701 +tp702 +a(g699 +g701 +S'keys' +p703 +tp704 +a(g701 +g703 +S'to' +p705 +tp706 +a(g703 +g705 +S'the' +p707 +tp708 +a(g705 +g707 +S'city' +p709 +tp710 +a(g707 +g709 +S'in' +p711 +tp712 +a(g709 +g711 +S'their' +p713 +tp714 +a(g711 +g713 +S'hands' +p715 +tp716 +a(g713 +g715 +S'as' +p717 +tp718 +a(g715 +g717 +S'a' +p719 +tp720 +a(g717 +g719 +S'sign' +p721 +tp722 +a(g719 +g721 +S'of' +p723 +tp724 +a(g721 +g723 +S'submission.' +p725 +tp726 +a(g723 +g725 +S'the' +p727 +tp728 +a(g725 +g727 +S'sculptor' +p729 +tp730 +a(g727 +g729 +S'portrayed' +p731 +tp732 +a(g729 +g731 +S'the' +p733 +tp734 +a(g731 +g733 +S'men' +p735 +tp736 +a(g733 +g735 +S'as' +p737 +tp738 +a(g735 +g737 +S'they' +p739 +tp740 +a(g737 +g739 +S'were' +p741 +tp742 +a(g739 +g741 +S'leaving' +p743 +tp744 +a(g741 +g743 +S'their' +p745 +tp746 +a(g743 +g745 +S'town' +p747 +tp748 +a(g745 +g747 +S'for' +p749 +tp750 +a(g747 +g749 +S'the' +p751 +tp752 +a(g749 +g751 +S'english' +p753 +tp754 +a(g751 +g753 +S'camp,' +p755 +tp756 +a(g753 +g755 +S'where' +p757 +tp758 +a(g755 +g757 +S'they' +p759 +tp760 +a(g757 +g759 +S'expected' +p761 +tp762 +a(g759 +g761 +S'execution.' +p763 +tp764 +a(g761 +g763 +S'rodin' +p765 +tp766 +a(g763 +g765 +S'conceived' +p767 +tp768 +a(g765 +g767 +S'the' +p769 +tp770 +a(g767 +g769 +S'burghers' +p771 +tp772 +a(g769 +g771 +S'less' +p773 +tp774 +a(g771 +g773 +S'as' +p775 +tp776 +a(g773 +g775 +S'ideally' +p777 +tp778 +a(g775 +g777 +S'noble' +p779 +tp780 +a(g777 +g779 +S'heroes' +p781 +tp782 +a(g779 +g781 +S'than' +p783 +tp784 +a(g781 +g783 +S'as' +p785 +tp786 +a(g783 +g785 +S'ordinary' +p787 +tp788 +a(g785 +g787 +S'men,' +p789 +tp790 +a(g787 +g789 +S'ragged' +p791 +tp792 +a(g789 +g791 +S'and' +p793 +tp794 +a(g791 +g793 +S'emaciated' +p795 +tp796 +a(g793 +g795 +S'after' +p797 +tp798 +a(g795 +g797 +S'the' +p799 +tp800 +a(g797 +g799 +S'ordeal' +p801 +tp802 +a(g799 +g801 +S'of' +p803 +tp804 +a(g801 +g803 +S'the' +p805 +tp806 +a(g803 +g805 +S'siege,' +p807 +tp808 +a(g805 +g807 +S'each' +p809 +tp810 +a(g807 +g809 +S'experiencing' +p811 +tp812 +a(g809 +g811 +S'a' +p813 +tp814 +a(g811 +g813 +S'personal' +p815 +tp816 +a(g813 +g815 +S'confrontation' +p817 +tp818 +a(g815 +g817 +S'with' +p819 +tp820 +a(g817 +g819 +S'death.' +p821 +tp822 +a(g819 +g821 +S'jean' +p823 +tp824 +a(g821 +g823 +S"d'aire," +p825 +tp826 +a(g823 +g825 +S'his' +p827 +tp828 +a(g825 +g827 +S'gaunt' +p829 +tp830 +a(g827 +g829 +S'body' +p831 +tp832 +a(g829 +g831 +S'visible' +p833 +tp834 +a(g831 +g833 +S'through' +p835 +tp836 +a(g833 +g835 +S'the' +p837 +tp838 +a(g835 +g837 +S'sides' +p839 +tp840 +a(g837 +g839 +S'of' +p841 +tp842 +a(g839 +g841 +S'his' +p843 +tp844 +a(g841 +g843 +S'shirt,' +p845 +tp846 +a(g843 +g845 +S'stands' +p847 +tp848 +a(g845 +g847 +S'upright' +p849 +tp850 +a(g847 +g849 +S'as' +p851 +tp852 +a(g849 +g851 +S'a' +p853 +tp854 +a(g851 +g853 +S'pillar,' +p855 +tp856 +a(g853 +g855 +S'with' +p857 +tp858 +a(g855 +g857 +S'squared' +p859 +tp860 +a(g857 +g859 +S'shoulders,' +p861 +tp862 +a(g859 +g861 +S'massive' +p863 +tp864 +a(g861 +g863 +S'clenched' +p865 +tp866 +a(g863 +g865 +S'hands,' +p867 +tp868 +a(g865 +g867 +S'and' +p869 +tp870 +a(g867 +g869 +S'a' +p871 +tp872 +a(g869 +g871 +S'stoically' +p873 +tp874 +a(g871 +g873 +S'set' +p875 +tp876 +a(g873 +g875 +S'jaw.' +p877 +tp878 +a(g875 +g877 +S'in' +p879 +tp880 +a(g877 +g879 +S'his' +p881 +tp882 +a(g879 +g881 +S'bony' +p883 +tp884 +a(g881 +g883 +S'face' +p885 +tp886 +a(g883 +g885 +S'and' +p887 +tp888 +a(g885 +g887 +S'sunken' +p889 +tp890 +a(g887 +g889 +S'eyes' +p891 +tp892 +a(g889 +g891 +S'one' +p893 +tp894 +a(g891 +g893 +S'can' +p895 +tp896 +a(g893 +g895 +S'read' +p897 +tp898 +a(g895 +g897 +S'what' +p899 +tp900 +a(g897 +g899 +S'his' +p901 +tp902 +a(g899 +g901 +S'sacrifice' +p903 +tp904 +a(g901 +g903 +S'is' +p905 +tp906 +a(g903 +g905 +S'costing.' +p907 +tp908 +a(g905 +g907 +S'nineteenth-century' +p909 +tp910 +a(g907 +g909 +S'viewers' +p911 +tp912 +a(g909 +g911 +S'and' +p913 +tp914 +a(g911 +g913 +S'critics' +p915 +tp916 +a(g913 +g915 +S'were' +p917 +tp918 +a(g915 +g917 +S'immediately' +p919 +tp920 +a(g917 +g919 +S'taken' +p921 +tp922 +a(g919 +g921 +S'with' +p923 +tp924 +a(g921 +g923 +S"rodin's" +p925 +tp926 +a(g923 +g925 +S'three-dimensional' +p927 +tp928 +a(g925 +g927 +S'group,' +p929 +tp930 +a(g927 +g929 +S'entitled' +p931 +tp932 +a(g929 +g931 +S'by' +p933 +tp934 +a(g931 +g933 +S'including' +p935 +tp936 +a(g933 +g935 +S'only' +p937 +tp938 +a(g935 +g937 +S'one' +p939 +tp940 +a(g937 +g939 +S'specific' +p941 +tp942 +a(g939 +g941 +S'reference' +p943 +tp944 +a(g941 +g943 +S'to' +p945 +tp946 +a(g943 +g945 +S'the' +p947 +tp948 +a(g945 +g947 +S"lovers'" +p949 +tp950 +a(g947 +g949 +S'story' +p951 +tp952 +a(g949 +g951 +S'(paolo' +p953 +tp954 +a(g951 +g953 +S'holds' +p955 +tp956 +a(g953 +g955 +S'in' +p957 +tp958 +a(g955 +g957 +S'his' +p959 +tp960 +a(g957 +g959 +S'left' +p961 +tp962 +a(g959 +g961 +S'hand' +p963 +tp964 +a(g961 +g963 +S'the' +p965 +tp966 +a(g963 +g965 +S'book' +p967 +tp968 +a(g965 +g967 +S'of' +p969 +tp970 +a(g967 +g969 +S'courtly' +p971 +tp972 +a(g969 +g971 +S'love' +p973 +tp974 +a(g971 +g973 +S'they' +p975 +tp976 +a(g973 +g975 +S'read' +p977 +tp978 +a(g975 +g977 +S'together),' +p979 +tp980 +a(g977 +g979 +S'rodin' +p981 +tp982 +a(g979 +g981 +S'encouraged' +p983 +tp984 +a(g981 +g983 +S'viewers' +p985 +tp986 +a(g983 +g985 +S'to' +p987 +tp988 +a(g985 +g987 +S'become' +p989 +tp990 +a(g987 +g989 +S'immersed' +p991 +tp992 +a(g989 +g991 +S'in' +p993 +tp994 +a(g991 +g993 +S'the' +p995 +tp996 +a(g993 +g995 +S'spiraling' +p997 +tp998 +a(g995 +g997 +S'rhythms' +p999 +tp1000 +a(g997 +g999 +S'of' +p1001 +tp1002 +a(g999 +g1001 +S'the' +p1003 +tp1004 +a(g1001 +g1003 +S'entwined' +p1005 +tp1006 +a(g1003 +g1005 +S'bodies' +p1007 +tp1008 +a(g1005 +g1007 +S'and' +p1009 +tp1010 +a(g1007 +g1009 +S'the' +p1011 +tp1012 +a(g1009 +g1011 +S'sensuous' +p1013 +tp1014 +a(g1011 +g1013 +S'finish' +p1015 +tp1016 +a(g1013 +g1015 +S'of' +p1017 +tp1018 +a(g1015 +g1017 +S'smooth' +p1019 +tp1020 +a(g1017 +g1019 +S'limbs' +p1021 +tp1022 +a(g1019 +g1021 +S'against' +p1023 +tp1024 +a(g1021 +g1023 +S'pitted' +p1025 +tp1026 +a(g1023 +g1025 +S'rock.' +p1027 +tp1028 +a(g1025 +g1027 +S'rodin' +p1029 +tp1030 +a(g1027 +g1029 +S'had' +p1031 +tp1032 +a(g1029 +g1031 +S'intended' +p1033 +tp1034 +a(g1031 +g1033 +S'to' +p1035 +tp1036 +a(g1033 +g1035 +S'include' +p1037 +tp1038 +a(g1035 +g1037 +S'this' +p1039 +tp1040 +a(g1037 +g1039 +S'work' +p1041 +tp1042 +a(g1039 +g1041 +S'in' +p1043 +tp1044 +a(g1041 +g1043 +S'his' +p1045 +tp1046 +a(g1043 +g1045 +S'monumental' +p1047 +tp1048 +a(g1045 +g1047 +S'this' +p1049 +tp1050 +a(g1047 +g1049 +S'full-length' +p1051 +tp1052 +a(g1049 +g1051 +S'grand' +p1053 +tp1054 +a(g1051 +g1053 +S'manner' +p1055 +tp1056 +a(g1053 +g1055 +S'portrait' +p1057 +tp1058 +a(g1055 +g1057 +S'by' +p1059 +tp1060 +a(g1057 +g1059 +S'romney,' +p1061 +tp1062 +a(g1059 +g1061 +S'reynolds' +p1063 +tp1064 +a(g1061 +g1063 +S'sought' +p1065 +tp1066 +a(g1063 +g1065 +S'to' +p1067 +tp1068 +a(g1065 +g1067 +S'elevate' +p1069 +tp1070 +a(g1067 +g1069 +S'british' +p1071 +tp1072 +a(g1069 +g1071 +S'painting,' +p1073 +tp1074 +a(g1071 +g1073 +S'including' +p1075 +tp1076 +a(g1073 +g1075 +S'portraiture,' +p1077 +tp1078 +a(g1075 +g1077 +S'to' +p1079 +tp1080 +a(g1077 +g1079 +S'the' +p1081 +tp1082 +a(g1079 +g1081 +S'lofty' +p1083 +tp1084 +a(g1081 +g1083 +S'realms' +p1085 +tp1086 +a(g1083 +g1085 +S'of' +p1087 +tp1088 +a(g1085 +g1087 +S'classical' +p1089 +tp1090 +a(g1087 +g1089 +S'expression.' +p1091 +tp1092 +a(g1089 +g1091 +S'after' +p1093 +tp1094 +a(g1091 +g1093 +S'traveling' +p1095 +tp1096 +a(g1093 +g1095 +S'to' +p1097 +tp1098 +a(g1095 +g1097 +S'rome,' +p1099 +tp1100 +a(g1097 +g1099 +S'florence,' +p1101 +tp1102 +a(g1099 +g1101 +S'bologna,' +p1103 +tp1104 +a(g1101 +g1103 +S'and' +p1105 +tp1106 +a(g1103 +g1105 +S'venice,' +p1107 +tp1108 +a(g1105 +g1107 +S'reynolds' +p1109 +tp1110 +a(g1107 +g1109 +S'became' +p1111 +tp1112 +a(g1109 +g1111 +S'the' +p1113 +tp1114 +a(g1111 +g1113 +S'first' +p1115 +tp1116 +a(g1113 +g1115 +S'president' +p1117 +tp1118 +a(g1115 +g1117 +S'of' +p1119 +tp1120 +a(g1117 +g1119 +S'the' +p1121 +tp1122 +a(g1119 +g1121 +S'royal' +p1123 +tp1124 +a(g1121 +g1123 +S'academy,' +p1125 +tp1126 +a(g1123 +g1125 +S'which' +p1127 +tp1128 +a(g1125 +g1127 +S'had' +p1129 +tp1130 +a(g1127 +g1129 +S'been' +p1131 +tp1132 +a(g1129 +g1131 +S'founded' +p1133 +tp1134 +a(g1131 +g1133 +S'in' +p1135 +tp1136 +a(g1133 +g1135 +S'1768.' +p1137 +tp1138 +a(g1135 +g1137 +S'through' +p1139 +tp1140 +a(g1137 +g1139 +S'his' +p1141 +tp1142 +a(g1139 +g1141 +S'teaching' +p1143 +tp1144 +a(g1141 +g1143 +S'at' +p1145 +tp1146 +a(g1143 +g1145 +S'the' +p1147 +tp1148 +a(g1145 +g1147 +S'academy' +p1149 +tp1150 +a(g1147 +g1149 +S'and' +p1151 +tp1152 +a(g1149 +g1151 +S'the' +p1153 +tp1154 +a(g1151 +g1153 +S'publication' +p1155 +tp1156 +a(g1153 +g1155 +S'of' +p1157 +tp1158 +a(g1155 +g1157 +S'his' +p1159 +tp1160 +a(g1157 +g1159 +S'annual' +p1161 +tp1162 +a(g1159 +g1161 +S'lectures,' +p1163 +tp1164 +a(g1161 +g1163 +S'the' +p1165 +tp1166 +a(g1163 +g1165 +S'in' +p1167 +tp1168 +a(g1165 +g1167 +S'the' +p1169 +tp1170 +a(g1167 +g1169 +S'rich,' +p1171 +tp1172 +a(g1169 +g1171 +S'warm' +p1173 +tp1174 +a(g1171 +g1173 +S'colors' +p1175 +tp1176 +a(g1173 +g1175 +S'of' +p1177 +tp1178 +a(g1175 +g1177 +S'the' +p1179 +tp1180 +a(g1177 +g1179 +S'informal' +p1181 +tp1182 +a(g1179 +g1181 +S'landscape' +p1183 +tp1184 +a(g1181 +g1183 +S'and' +p1185 +tp1186 +a(g1183 +g1185 +S'the' +p1187 +tp1188 +a(g1185 +g1187 +S'beautifully' +p1189 +tp1190 +a(g1187 +g1189 +S'controlled' +p1191 +tp1192 +a(g1189 +g1191 +S'movement' +p1193 +tp1194 +a(g1191 +g1193 +S'of' +p1195 +tp1196 +a(g1193 +g1195 +S'light' +p1197 +tp1198 +a(g1195 +g1197 +S'into' +p1199 +tp1200 +a(g1197 +g1199 +S'the' +p1201 +tp1202 +a(g1199 +g1201 +S'deep' +p1203 +tp1204 +a(g1201 +g1203 +S'reaches' +p1205 +tp1206 +a(g1203 +g1205 +S'of' +p1207 +tp1208 +a(g1205 +g1207 +S'the' +p1209 +tp1210 +a(g1207 +g1209 +S'background' +p1211 +tp1212 +a(g1209 +g1211 +S'owe' +p1213 +tp1214 +a(g1211 +g1213 +S'much' +p1215 +tp1216 +a(g1213 +g1215 +S'to' +p1217 +tp1218 +a(g1215 +g1217 +S'titian.' +p1219 +tp1220 +a(g1217 +g1219 +S'finally,' +p1221 +tp1222 +a(g1219 +g1221 +S"reynolds'" +p1223 +tp1224 +a(g1221 +g1223 +S'sensitive' +p1225 +tp1226 +a(g1223 +g1225 +S'use' +p1227 +tp1228 +a(g1225 +g1227 +S'of' +p1229 +tp1230 +a(g1227 +g1229 +S'everyday,' +p1231 +tp1232 +a(g1229 +g1231 +S'intimate' +p1233 +tp1234 +a(g1231 +g1233 +S'details' +p1235 +tp1236 +a(g1233 +g1235 +S'prevents' +p1237 +tp1238 +a(g1235 +g1237 +S'the' +p1239 +tp1240 +a(g1237 +g1239 +S'portrait' +p1241 +tp1242 +a(g1239 +g1241 +S'from' +p1243 +tp1244 +a(g1241 +g1243 +S'becoming' +p1245 +tp1246 +a(g1243 +g1245 +S'remote' +p1247 +tp1248 +a(g1245 +g1247 +S'and' +p1249 +tp1250 +a(g1247 +g1249 +S'unapproachable.' +p1251 +tp1252 +a(g1249 +g1251 +S'the' +p1253 +tp1254 +a(g1251 +g1253 +S'tenderness' +p1255 +tp1256 +a(g1253 +g1255 +S'with' +p1257 +tp1258 +a(g1255 +g1257 +S'which' +p1259 +tp1260 +a(g1257 +g1259 +S'lady' +p1261 +tp1262 +a(g1259 +g1261 +S'delmé' +p1263 +tp1264 +a(g1261 +g1263 +S'holds' +p1265 +tp1266 +a(g1263 +g1265 +S'her' +p1267 +tp1268 +a(g1265 +g1267 +S'two' +p1269 +tp1270 +a(g1267 +g1269 +S'sons,' +p1271 +tp1272 +a(g1269 +g1271 +S'the' +p1273 +tp1274 +a(g1271 +g1273 +S'nuances' +p1275 +tp1276 +a(g1273 +g1275 +S'of' +p1277 +tp1278 +a(g1275 +g1277 +S'personality' +p1279 +tp1280 +a(g1277 +g1279 +S'in' +p1281 +tp1282 +a(g1279 +g1281 +S'the' +p1283 +tp1284 +a(g1281 +g1283 +S'three' +p1285 +tp1286 +a(g1283 +g1285 +S'faces,' +p1287 +tp1288 +a(g1285 +g1287 +S'the' +p1289 +tp1290 +a(g1287 +g1289 +S'realistic' +p1291 +tp1292 +a(g1289 +g1291 +S'costumes' +p1293 +tp1294 +a(g1291 +g1293 +S'of' +p1295 +tp1296 +a(g1293 +g1295 +S'the' +p1297 +tp1298 +a(g1295 +g1297 +S'children,' +p1299 +tp1300 +a(g1297 +g1299 +S'and' +p1301 +tp1302 +a(g1299 +g1301 +S'the' +p1303 +tp1304 +a(g1301 +g1303 +S'attentive' +p1305 +tp1306 +a(g1303 +g1305 +S'posture' +p1307 +tp1308 +a(g1305 +g1307 +S'of' +p1309 +tp1310 +a(g1307 +g1309 +S'the' +p1311 +tp1312 +a(g1309 +g1311 +S'skye' +p1313 +tp1314 +a(g1311 +g1313 +S'terrier' +p1315 +tp1316 +a(g1313 +g1315 +S'give' +p1317 +tp1318 +a(g1315 +g1317 +S'the' +p1319 +tp1320 +a(g1317 +g1319 +S'painting' +p1321 +tp1322 +a(g1319 +g1321 +S'a' +p1323 +tp1324 +a(g1321 +g1323 +S'worldly,' +p1325 +tp1326 +a(g1323 +g1325 +S'familiar' +p1327 +tp1328 +a(g1325 +g1327 +S'context.' +p1329 +tp1330 +a(g1327 +g1329 +S'like' +p1331 +tp1332 +a(g1329 +g1331 +S'reynolds' +p1333 +tp1334 +a(g1331 +g1333 +S'and' +p1335 +tp1336 +a(g1333 +g1335 +S'romney' +p1337 +tp1338 +a(g1335 +g1337 +S'before' +p1339 +tp1340 +a(g1337 +g1339 +S'him,' +p1341 +tp1342 +a(g1339 +g1341 +S'lawrence' +p1343 +tp1344 +a(g1341 +g1343 +S'preferred' +p1345 +tp1346 +a(g1343 +g1345 +S'the' +p1347 +tp1348 +a(g1345 +g1347 +S'"higher"' +p1349 +tp1350 +a(g1347 +g1349 +S'genre' +p1351 +tp1352 +a(g1349 +g1351 +S'of' +p1353 +tp1354 +a(g1351 +g1353 +S'history' +p1355 +tp1356 +a(g1353 +g1355 +S'painting' +p1357 +tp1358 +a(g1355 +g1357 +S'but,' +p1359 +tp1360 +a(g1357 +g1359 +S'through' +p1361 +tp1362 +a(g1359 +g1361 +S'talent' +p1363 +tp1364 +a(g1361 +g1363 +S'and' +p1365 +tp1366 +a(g1363 +g1365 +S'necessity,' +p1367 +tp1368 +a(g1365 +g1367 +S'became' +p1369 +tp1370 +a(g1367 +g1369 +S'a' +p1371 +tp1372 +a(g1369 +g1371 +S'portraitist.' +p1373 +tp1374 +a(g1371 +g1373 +S'he' +p1375 +tp1376 +a(g1373 +g1375 +S'was' +p1377 +tp1378 +a(g1375 +g1377 +S'enormously' +p1379 +tp1380 +a(g1377 +g1379 +S'successful' +p1381 +tp1382 +a(g1379 +g1381 +S'in' +p1383 +tp1384 +a(g1381 +g1383 +S'his' +p1385 +tp1386 +a(g1383 +g1385 +S'own' +p1387 +tp1388 +a(g1385 +g1387 +S'lifetime,' +p1389 +tp1390 +a(g1387 +g1389 +S'was' +p1391 +tp1392 +a(g1389 +g1391 +S'knighted' +p1393 +tp1394 +a(g1391 +g1393 +S'in' +p1395 +tp1396 +a(g1393 +g1395 +S'1815,' +p1397 +tp1398 +a(g1395 +g1397 +S'and' +p1399 +tp1400 +a(g1397 +g1399 +S'elected' +p1401 +tp1402 +a(g1399 +g1401 +S'president' +p1403 +tp1404 +a(g1401 +g1403 +S'of' +p1405 +tp1406 +a(g1403 +g1405 +S'the' +p1407 +tp1408 +a(g1405 +g1407 +S'royal' +p1409 +tp1410 +a(g1407 +g1409 +S'academy' +p1411 +tp1412 +a(g1409 +g1411 +S'in' +p1413 +tp1414 +a(g1411 +g1413 +S'1820.' +p1415 +tp1416 +a(g1413 +g1415 +S'although' +p1417 +tp1418 +a(g1415 +g1417 +S'unschooled,' +p1419 +tp1420 +a(g1417 +g1419 +S'lawrence' +p1421 +tp1422 +a(g1419 +g1421 +S'had' +p1423 +tp1424 +a(g1421 +g1423 +S'a' +p1425 +tp1426 +a(g1423 +g1425 +S'great' +p1427 +tp1428 +a(g1425 +g1427 +S'natural' +p1429 +tp1430 +a(g1427 +g1429 +S'gift' +p1431 +tp1432 +a(g1429 +g1431 +S'for' +p1433 +tp1434 +a(g1431 +g1433 +S'fluent' +p1435 +tp1436 +a(g1433 +g1435 +S'linear' +p1437 +tp1438 +a(g1435 +g1437 +S'rhythms' +p1439 +tp1440 +a(g1437 +g1439 +S'and' +p1441 +tp1442 +a(g1439 +g1441 +S'for' +p1443 +tp1444 +a(g1441 +g1443 +S'the' +p1445 +tp1446 +a(g1443 +g1445 +S'dramatic' +p1447 +tp1448 +a(g1445 +g1447 +S'uses' +p1449 +tp1450 +a(g1447 +g1449 +S'of' +p1451 +tp1452 +a(g1449 +g1451 +S'light' +p1453 +tp1454 +a(g1451 +g1453 +S'and' +p1455 +tp1456 +a(g1453 +g1455 +S'color.' +p1457 +tp1458 +a(g1455 +g1457 +S'composed,' +p1459 +tp1460 +a(g1457 +g1459 +S'gentle,' +p1461 +tp1462 +a(g1459 +g1461 +S'and' +p1463 +tp1464 +a(g1461 +g1463 +S'serene,' +p1465 +tp1466 +a(g1463 +g1465 +S'lady' +p1467 +tp1468 +a(g1465 +g1467 +S'templetown' +p1469 +tp1470 +a(g1467 +g1469 +S'is' +p1471 +tp1472 +a(g1469 +g1471 +S'a' +p1473 +tp1474 +a(g1471 +g1473 +S'woodland' +p1475 +tp1476 +a(g1473 +g1475 +S'goddess' +p1477 +tp1478 +a(g1475 +g1477 +S'of' +p1479 +tp1480 +a(g1477 +g1479 +S'otherworldly' +p1481 +tp1482 +a(g1479 +g1481 +S'proportions.' +p1483 +tp1484 +a(g1481 +g1483 +S'the' +p1485 +tp1486 +a(g1483 +g1485 +S'purity' +p1487 +tp1488 +a(g1485 +g1487 +S'and' +p1489 +tp1490 +a(g1487 +g1489 +S'simplicity' +p1491 +tp1492 +a(g1489 +g1491 +S'of' +p1493 +tp1494 +a(g1491 +g1493 +S'the' +p1495 +tp1496 +a(g1493 +g1495 +S"sitters'" +p1497 +tp1498 +a(g1495 +g1497 +S'costumes' +p1499 +tp1500 +a(g1497 +g1499 +S'draw' +p1501 +tp1502 +a(g1499 +g1501 +S'the' +p1503 +tp1504 +a(g1501 +g1503 +S'pair' +p1505 +tp1506 +a(g1503 +g1505 +S'into' +p1507 +tp1508 +a(g1505 +g1507 +S'a' +p1509 +tp1510 +a(g1507 +g1509 +S'sympathetic' +p1511 +tp1512 +a(g1509 +g1511 +S'unity' +p1513 +tp1514 +a(g1511 +g1513 +S'that' +p1515 +tp1516 +a(g1513 +g1515 +S'is' +p1517 +tp1518 +a(g1515 +g1517 +S'further' +p1519 +tp1520 +a(g1517 +g1519 +S'enhanced' +p1521 +tp1522 +a(g1519 +g1521 +S'by' +p1523 +tp1524 +a(g1521 +g1523 +S'the' +p1525 +tp1526 +a(g1523 +g1525 +S'surrounding' +p1527 +tp1528 +a(g1525 +g1527 +S'darker' +p1529 +tp1530 +a(g1527 +g1529 +S'tones' +p1531 +tp1532 +a(g1529 +g1531 +S'of' +p1533 +tp1534 +a(g1531 +g1533 +S'the' +p1535 +tp1536 +a(g1533 +g1535 +S'broadly' +p1537 +tp1538 +a(g1535 +g1537 +S'rendered' +p1539 +tp1540 +a(g1537 +g1539 +S'landscape.' +p1541 +tp1542 +a(g1539 +g1541 +S'lawrence' +p1543 +tp1544 +a(g1541 +g1543 +S'animated' +p1545 +tp1546 +a(g1543 +g1545 +S'the' +p1547 +tp1548 +a(g1545 +g1547 +S'paint' +p1549 +tp1550 +a(g1547 +g1549 +S'surface' +p1551 +tp1552 +a(g1549 +g1551 +S'with' +p1553 +tp1554 +a(g1551 +g1553 +S'accents' +p1555 +tp1556 +a(g1553 +g1555 +S'of' +p1557 +tp1558 +a(g1555 +g1557 +S'vibrant' +p1559 +tp1560 +a(g1557 +g1559 +S'red' +p1561 +tp1562 +a(g1559 +g1561 +S'in' +p1563 +tp1564 +a(g1561 +g1563 +S'lady' +p1565 +tp1566 +a(g1563 +g1565 +S"templetown's" +p1567 +tp1568 +a(g1565 +g1567 +S'earrings' +p1569 +tp1570 +a(g1567 +g1569 +S'and' +p1571 +tp1572 +a(g1569 +g1571 +S'necklace,' +p1573 +tp1574 +a(g1571 +g1573 +S'her' +p1575 +tp1576 +a(g1573 +g1575 +S"son's" +p1577 +tp1578 +a(g1575 +g1577 +S'cheeks,' +p1579 +tp1580 +a(g1577 +g1579 +S'and' +p1581 +tp1582 +a(g1579 +g1581 +S'in' +p1583 +tp1584 +a(g1581 +g1583 +S'the' +p1585 +tp1586 +a(g1583 +g1585 +S'landscape.' +p1587 +tp1588 +a(g1585 +g1587 +S"lawrence's" +p1589 +tp1590 +a(g1587 +g1589 +S'idealized' +p1591 +tp1592 +a(g1589 +g1591 +S'presentation' +p1593 +tp1594 +a(g1591 +g1593 +S'of' +p1595 +tp1596 +a(g1593 +g1595 +S'his' +p1597 +tp1598 +a(g1595 +g1597 +S'sitters' +p1599 +tp1600 +a(g1597 +g1599 +S'in' +p1601 +tp1602 +a(g1599 +g1601 +S'an' +p1603 +tp1604 +a(g1601 +g1603 +S'expressive,' +p1605 +tp1606 +a(g1603 +g1605 +S'theatrical' +p1607 +tp1608 +a(g1605 +g1607 +S'landscape' +p1609 +tp1610 +a(g1607 +g1609 +S'epitomizes' +p1611 +tp1612 +a(g1609 +g1611 +S'the' +p1613 +tp1614 +a(g1611 +g1613 +S'romantic' +p1615 +tp1616 +a(g1613 +g1615 +S'style' +p1617 +tp1618 +a(g1615 +g1617 +S'of' +p1619 +tp1620 +a(g1617 +g1619 +S'portraiture.' +p1621 +tp1622 +a(g1619 +g1621 +S'but' +p1623 +tp1624 +a(g1621 +g1623 +S'lawrence,' +p1625 +tp1626 +a(g1623 +g1625 +S'like' +p1627 +tp1628 +a(g1625 +g1627 +S'reynolds,' +p1629 +tp1630 +a(g1627 +g1629 +S'was' +p1631 +tp1632 +a(g1629 +g1631 +S'also' +p1633 +tp1634 +a(g1631 +g1633 +S'a' +p1635 +tp1636 +a(g1633 +g1635 +S'passionate' +p1637 +tp1638 +a(g1635 +g1637 +S'student' +p1639 +tp1640 +a(g1637 +g1639 +S'of' +p1641 +tp1642 +a(g1639 +g1641 +S'the' +p1643 +tp1644 +a(g1641 +g1643 +S'classical' +p1645 +tp1646 +a(g1643 +g1645 +S'past.' +p1647 +tp1648 +a(g1645 +g1647 +S'his' +p1649 +tp1650 +a(g1647 +g1649 +S'ideas' +p1651 +tp1652 +a(g1649 +g1651 +S'on' +p1653 +tp1654 +a(g1651 +g1653 +S'beauty' +p1655 +tp1656 +a(g1653 +g1655 +S'were' +p1657 +tp1658 +a(g1655 +g1657 +S'adapted' +p1659 +tp1660 +a(g1657 +g1659 +S'from' +p1661 +tp1662 +a(g1659 +g1661 +S"aristotle's" +p1663 +tp1664 +a(g1661 +g1663 +S'in' +p1665 +tp1666 +a(g1663 +g1665 +S'1786,' +p1667 +tp1668 +a(g1665 +g1667 +S'at' +p1669 +tp1670 +a(g1667 +g1669 +S'the' +p1671 +tp1672 +a(g1669 +g1671 +S'age' +p1673 +tp1674 +a(g1671 +g1673 +S'of' +p1675 +tp1676 +a(g1673 +g1675 +S'eighteen,' +p1677 +tp1678 +a(g1675 +g1677 +S'catherine' +p1679 +tp1680 +a(g1677 +g1679 +S'tatton' +p1681 +tp1682 +a(g1679 +g1681 +S'married' +p1683 +tp1684 +a(g1681 +g1683 +S'james' +p1685 +tp1686 +a(g1683 +g1685 +S'drake-brockman,' +p1687 +tp1688 +a(g1685 +g1687 +S'who' +p1689 +tp1690 +a(g1687 +g1689 +S'became' +p1691 +tp1692 +a(g1689 +g1691 +S'high' +p1693 +tp1694 +a(g1691 +g1693 +S'sheriff' +p1695 +tp1696 +a(g1693 +g1695 +S'of' +p1697 +tp1698 +a(g1695 +g1697 +S'county' +p1699 +tp1700 +a(g1697 +g1699 +S'kent.' +p1701 +tp1702 +a(g1699 +g1701 +S'this' +p1703 +tp1704 +a(g1701 +g1703 +S'wedding' +p1705 +tp1706 +a(g1703 +g1705 +S'portrait' +p1707 +tp1708 +a(g1705 +g1707 +S'was' +p1709 +tp1710 +a(g1707 +g1709 +S'commissioned' +p1711 +tp1712 +a(g1709 +g1711 +S'by' +p1713 +tp1714 +a(g1711 +g1713 +S'the' +p1715 +tp1716 +a(g1713 +g1715 +S'rev.' +p1717 +tp1718 +a(g1715 +g1717 +S'john' +p1719 +tp1720 +a(g1717 +g1719 +S'lynch,' +p1721 +tp1722 +a(g1719 +g1721 +S'archdeacon' +p1723 +tp1724 +a(g1721 +g1723 +S'of' +p1725 +tp1726 +a(g1723 +g1725 +S'canterbury,' +p1727 +tp1728 +a(g1725 +g1727 +S'her' +p1729 +tp1730 +a(g1727 +g1729 +S'uncle' +p1731 +tp1732 +a(g1729 +g1731 +S'and' +p1733 +tp1734 +a(g1731 +g1733 +S'the' +p1735 +tp1736 +a(g1733 +g1735 +S'executor' +p1737 +tp1738 +a(g1735 +g1737 +S'of' +p1739 +tp1740 +a(g1737 +g1739 +S'her' +p1741 +tp1742 +a(g1739 +g1741 +S"father's" +p1743 +tp1744 +a(g1741 +g1743 +S'estate.' +p1745 +tp1746 +a(g1743 +g1745 +S'miss' +p1747 +tp1748 +a(g1745 +g1747 +S'tatton' +p1749 +tp1750 +a(g1747 +g1749 +S'is' +p1751 +tp1752 +a(g1749 +g1751 +S'fashionably' +p1753 +tp1754 +a(g1751 +g1753 +S'attired' +p1755 +tp1756 +a(g1753 +g1755 +S'with' +p1757 +tp1758 +a(g1755 +g1757 +S'a' +p1759 +tp1760 +a(g1757 +g1759 +S'wide-brimmed' +p1761 +tp1762 +a(g1759 +g1761 +S'sun' +p1763 +tp1764 +a(g1761 +g1763 +S'hat' +p1765 +tp1766 +a(g1763 +g1765 +S'silhouetting' +p1767 +tp1768 +a(g1765 +g1767 +S'the' +p1769 +tp1770 +a(g1767 +g1769 +S'loose' +p1771 +tp1772 +a(g1769 +g1771 +S'ringlets' +p1773 +tp1774 +a(g1771 +g1773 +S'of' +p1775 +tp1776 +a(g1773 +g1775 +S'her' +p1777 +tp1778 +a(g1775 +g1777 +S'hair.' +p1779 +tp1780 +a(g1777 +g1779 +S'gainsborough' +p1781 +tp1782 +a(g1779 +g1781 +S'held' +p1783 +tp1784 +a(g1781 +g1783 +S'his' +p1785 +tp1786 +a(g1783 +g1785 +S'posing' +p1787 +tp1788 +a(g1785 +g1787 +S'sessions' +p1789 +tp1790 +a(g1787 +g1789 +S'during' +p1791 +tp1792 +a(g1789 +g1791 +S'business' +p1793 +tp1794 +a(g1791 +g1793 +S'hours,' +p1795 +tp1796 +a(g1793 +g1795 +S'but' +p1797 +tp1798 +a(g1795 +g1797 +S'sir' +p1799 +tp1800 +a(g1797 +g1799 +S'joshua' +p1801 +tp1802 +a(g1799 +g1801 +S'reynolds' +p1803 +tp1804 +a(g1801 +g1803 +S'also' +p1805 +tp1806 +a(g1803 +g1805 +S'noted' +p1807 +tp1808 +a(g1805 +g1807 +S'"his' +p1809 +tp1810 +a(g1807 +g1809 +S'custom' +p1811 +tp1812 +a(g1809 +g1811 +S'of' +p1813 +tp1814 +a(g1811 +g1813 +S'painting' +p1815 +tp1816 +a(g1813 +g1815 +S'by' +p1817 +tp1818 +a(g1815 +g1817 +S'night"' +p1819 +tp1820 +a(g1817 +g1819 +S'with' +p1821 +tp1822 +a(g1819 +g1821 +S'candles' +p1823 +tp1824 +a(g1821 +g1823 +S'under' +p1825 +tp1826 +a(g1823 +g1825 +S'which' +p1827 +tp1828 +a(g1825 +g1827 +S'"the' +p1829 +tp1830 +a(g1827 +g1829 +S'flesh' +p1831 +tp1832 +a(g1829 +g1831 +S'seems' +p1833 +tp1834 +a(g1831 +g1833 +S'to' +p1835 +tp1836 +a(g1833 +g1835 +S'take' +p1837 +tp1838 +a(g1835 +g1837 +S'a' +p1839 +tp1840 +a(g1837 +g1839 +S'higher' +p1841 +tp1842 +a(g1839 +g1841 +S'and' +p1843 +tp1844 +a(g1841 +g1843 +S'richer' +p1845 +tp1846 +a(g1843 +g1845 +S'tone' +p1847 +tp1848 +a(g1845 +g1847 +S'of' +p1849 +tp1850 +a(g1847 +g1849 +S'colour."' +p1851 +tp1852 +a(g1849 +g1851 +S'in' +p1853 +tp1854 +a(g1851 +g1853 +S'addition' +p1855 +tp1856 +a(g1853 +g1855 +S'to' +p1857 +tp1858 +a(g1855 +g1857 +S'imitating' +p1859 +tp1860 +a(g1857 +g1859 +S'the' +p1861 +tp1862 +a(g1859 +g1861 +S'flattering' +p1863 +tp1864 +a(g1861 +g1863 +S'glow' +p1865 +tp1866 +a(g1863 +g1865 +S'of' +p1867 +tp1868 +a(g1865 +g1867 +S'candlelight,' +p1869 +tp1870 +a(g1867 +g1869 +S'gainsborough' +p1871 +tp1872 +a(g1869 +g1871 +S'is' +p1873 +tp1874 +a(g1871 +g1873 +S'known' +p1875 +tp1876 +a(g1873 +g1875 +S'to' +p1877 +tp1878 +a(g1875 +g1877 +S'have' +p1879 +tp1880 +a(g1877 +g1879 +S'used' +p1881 +tp1882 +a(g1879 +g1881 +S'exceptionally' +p1883 +tp1884 +a(g1881 +g1883 +S'long' +p1885 +tp1886 +a(g1883 +g1885 +S'brushes' +p1887 +tp1888 +a(g1885 +g1887 +S'that' +p1889 +tp1890 +a(g1887 +g1889 +S'he' +p1891 +tp1892 +a(g1889 +g1891 +S'wielded' +p1893 +tp1894 +a(g1891 +g1893 +S'like' +p1895 +tp1896 +a(g1893 +g1895 +S"fencers'" +p1897 +tp1898 +a(g1895 +g1897 +S'foils,' +p1899 +tp1900 +a(g1897 +g1899 +S'vivaciously' +p1901 +tp1902 +a(g1899 +g1901 +S'touching' +p1903 +tp1904 +a(g1901 +g1903 +S'in' +p1905 +tp1906 +a(g1903 +g1905 +S'"odd' +p1907 +tp1908 +a(g1905 +g1907 +S'scratches' +p1909 +tp1910 +a(g1907 +g1909 +S'and' +p1911 +tp1912 +a(g1909 +g1911 +S'marks."' +p1913 +tp1914 +a(g1911 +g1913 +S'such' +p1915 +tp1916 +a(g1913 +g1915 +S'extreme' +p1917 +tp1918 +a(g1915 +g1917 +S'sketchiness' +p1919 +tp1920 +a(g1917 +g1919 +S'is' +p1921 +tp1922 +a(g1919 +g1921 +S'apparent' +p1923 +tp1924 +a(g1921 +g1923 +S'even' +p1925 +tp1926 +a(g1923 +g1925 +S'in' +p1927 +tp1928 +a(g1925 +g1927 +S'this' +p1929 +tp1930 +a(g1927 +g1929 +S'bust-length' +p1931 +tp1932 +a(g1929 +g1931 +S'portrait.' +p1933 +tp1934 +a(g1931 +g1933 +S'reynolds' +p1935 +tp1936 +a(g1933 +g1935 +S'reluctantly' +p1937 +tp1938 +a(g1935 +g1937 +S'admitted' +p1939 +tp1940 +a(g1937 +g1939 +S'that' +p1941 +tp1942 +a(g1939 +g1941 +S'"this' +p1943 +tp1944 +a(g1941 +g1943 +S'chaos,' +p1945 +tp1946 +a(g1943 +g1945 +S'this' +p1947 +tp1948 +a(g1945 +g1947 +S'uncouth' +p1949 +tp1950 +a(g1947 +g1949 +S'and' +p1951 +tp1952 +a(g1949 +g1951 +S'shapeless' +p1953 +tp1954 +a(g1951 +g1953 +S'appearance,' +p1955 +tp1956 +a(g1953 +g1955 +S'by' +p1957 +tp1958 +a(g1955 +g1957 +S'a' +p1959 +tp1960 +a(g1957 +g1959 +S'kind' +p1961 +tp1962 +a(g1959 +g1961 +S'of' +p1963 +tp1964 +a(g1961 +g1963 +S'magick,' +p1965 +tp1966 +a(g1963 +g1965 +S'at' +p1967 +tp1968 +a(g1965 +g1967 +S'a' +p1969 +tp1970 +a(g1967 +g1969 +S'certain' +p1971 +tp1972 +a(g1969 +g1971 +S'distance' +p1973 +tp1974 +a(g1971 +g1973 +S'assumes' +p1975 +tp1976 +a(g1973 +g1975 +S'form,' +p1977 +tp1978 +a(g1975 +g1977 +S'and' +p1979 +tp1980 +a(g1977 +g1979 +S'all' +p1981 +tp1982 +a(g1979 +g1981 +S'the' +p1983 +tp1984 +a(g1981 +g1983 +S'parts' +p1985 +tp1986 +a(g1983 +g1985 +S'seem' +p1987 +tp1988 +a(g1985 +g1987 +S'to' +p1989 +tp1990 +a(g1987 +g1989 +S'drop' +p1991 +tp1992 +a(g1989 +g1991 +S'into' +p1993 +tp1994 +a(g1991 +g1993 +S'their' +p1995 +tp1996 +a(g1993 +g1995 +S'proper' +p1997 +tp1998 +a(g1995 +g1997 +S'place."' +p1999 +tp2000 +a(g1997 +g1999 +S'rather' +p2001 +tp2002 +a(g1999 +g2001 +S'than' +p2003 +tp2004 +a(g2001 +g2003 +S'working' +p2005 +tp2006 +a(g2003 +g2005 +S'from' +p2007 +tp2008 +a(g2005 +g2007 +S'extensive' +p2009 +tp2010 +a(g2007 +g2009 +S'preliminary' +p2011 +tp2012 +a(g2009 +g2011 +S'drawings—the' +p2013 +tp2014 +a(g2011 +g2013 +S'academic' +p2015 +tp2016 +a(g2013 +g2015 +S'practice' +p2017 +tp2018 +a(g2015 +g2017 +S'advised' +p2019 +tp2020 +a(g2017 +g2019 +S'by' +p2021 +tp2022 +a(g2019 +g2021 +S'reynolds—gainsborough' +p2023 +tp2024 +a(g2021 +g2023 +S'dashed' +p2025 +tp2026 +a(g2023 +g2025 +S'off' +p2027 +tp2028 +a(g2025 +g2027 +S'his' +p2029 +tp2030 +a(g2027 +g2029 +S'portraits' +p2031 +tp2032 +a(g2029 +g2031 +S'directly' +p2033 +tp2034 +a(g2031 +g2033 +S'on' +p2035 +tp2036 +a(g2033 +g2035 +S'the' +p2037 +tp2038 +a(g2035 +g2037 +S'canvas.' +p2039 +tp2040 +a(g2037 +g2039 +S'here,' +p2041 +tp2042 +a(g2039 +g2041 +S'the' +p2043 +tp2044 +a(g2041 +g2043 +S'puff' +p2045 +tp2046 +a(g2043 +g2045 +S'of' +p2047 +tp2048 +a(g2045 +g2047 +S'the' +p2049 +tp2050 +a(g2047 +g2049 +S'blue' +p2051 +tp2052 +a(g2049 +g2051 +S'sash' +p2053 +tp2054 +a(g2051 +g2053 +S'and' +p2055 +tp2056 +a(g2053 +g2055 +S'the' +p2057 +tp2058 +a(g2055 +g2057 +S'hand' +p2059 +tp2060 +a(g2057 +g2059 +S'elegantly' +p2061 +tp2062 +a(g2059 +g2061 +S'toying' +p2063 +tp2064 +a(g2061 +g2063 +S'with' +p2065 +tp2066 +a(g2063 +g2065 +S'it' +p2067 +tp2068 +a(g2065 +g2067 +S'were' +p2069 +tp2070 +a(g2067 +g2069 +S'afterthoughts.' +p2071 +tp2072 +a(g2069 +g2071 +S'this' +p2073 +tp2074 +a(g2071 +g2073 +S'lovely' +p2075 +tp2076 +a(g2073 +g2075 +S'scottish' +p2077 +tp2078 +a(g2075 +g2077 +S'woman' +p2079 +tp2080 +a(g2077 +g2079 +S'was' +p2081 +tp2082 +a(g2079 +g2081 +S'the' +p2083 +tp2084 +a(g2081 +g2083 +S'eldest' +p2085 +tp2086 +a(g2083 +g2085 +S'daughter' +p2087 +tp2088 +a(g2085 +g2087 +S'of' +p2089 +tp2090 +a(g2087 +g2089 +S'william' +p2091 +tp2092 +a(g2089 +g2091 +S'urquhart,' +p2093 +tp2094 +a(g2091 +g2093 +S'2d' +p2095 +tp2096 +a(g2093 +g2095 +S'laird' +p2097 +tp2098 +a(g2095 +g2097 +S'of' +p2099 +tp2100 +a(g2097 +g2099 +S'craigston,' +p2101 +tp2102 +a(g2099 +g2101 +S'aberdeenshire.' +p2103 +tp2104 +a(g2101 +g2103 +S'her' +p2105 +tp2106 +a(g2103 +g2105 +S'portrait' +p2107 +tp2108 +a(g2105 +g2107 +S'and' +p2109 +tp2110 +a(g2107 +g2109 +S'companion' +p2111 +tp2112 +a(g2109 +g2111 +S'likenesses' +p2113 +tp2114 +a(g2111 +g2113 +S'of' +p2115 +tp2116 +a(g2113 +g2115 +S'her' +p2117 +tp2118 +a(g2115 +g2117 +S'parents' +p2119 +tp2120 +a(g2117 +g2119 +S'were' +p2121 +tp2122 +a(g2119 +g2121 +S'paid' +p2123 +tp2124 +a(g2121 +g2123 +S'for' +p2125 +tp2126 +a(g2123 +g2125 +S'on' +p2127 +tp2128 +a(g2125 +g2127 +S'10' +p2129 +tp2130 +a(g2127 +g2129 +S'january' +p2131 +tp2132 +a(g2129 +g2131 +S'1794;' +p2133 +tp2134 +a(g2131 +g2133 +S'the' +p2135 +tp2136 +a(g2133 +g2135 +S"artist's" +p2137 +tp2138 +a(g2135 +g2137 +S'receipt' +p2139 +tp2140 +a(g2137 +g2139 +S'was' +p2141 +tp2142 +a(g2139 +g2141 +S'preserved' +p2143 +tp2144 +a(g2141 +g2143 +S'among' +p2145 +tp2146 +a(g2143 +g2145 +S'urquhart' +p2147 +tp2148 +a(g2145 +g2147 +S'family' +p2149 +tp2150 +a(g2147 +g2149 +S'papers.' +p2151 +tp2152 +a(g2149 +g2151 +S'it' +p2153 +tp2154 +a(g2151 +g2153 +S'is' +p2155 +tp2156 +a(g2153 +g2155 +S'unfortunate' +p2157 +tp2158 +a(g2155 +g2157 +S'that' +p2159 +tp2160 +a(g2157 +g2159 +S'nothing' +p2161 +tp2162 +a(g2159 +g2161 +S'more' +p2163 +tp2164 +a(g2161 +g2163 +S'is' +p2165 +tp2166 +a(g2163 +g2165 +S'known' +p2167 +tp2168 +a(g2165 +g2167 +S'of' +p2169 +tp2170 +a(g2167 +g2169 +S'the' +p2171 +tp2172 +a(g2169 +g2171 +S"sitter's" +p2173 +tp2174 +a(g2171 +g2173 +S'life,' +p2175 +tp2176 +a(g2173 +g2175 +S'because' +p2177 +tp2178 +a(g2175 +g2177 +S'that' +p2179 +tp2180 +a(g2177 +g2179 +S'this' +p2181 +tp2182 +a(g2179 +g2181 +S'painting' +p2183 +tp2184 +a(g2181 +g2183 +S'can' +p2185 +tp2186 +a(g2183 +g2185 +S'be' +p2187 +tp2188 +a(g2185 +g2187 +S'documented' +p2189 +tp2190 +a(g2187 +g2189 +S'to' +p2191 +tp2192 +a(g2189 +g2191 +S'just' +p2193 +tp2194 +a(g2191 +g2193 +S'before' +p2195 +tp2196 +a(g2193 +g2195 +S'1794' +p2197 +tp2198 +a(g2195 +g2197 +S'is' +p2199 +tp2200 +a(g2197 +g2199 +S'important' +p2201 +tp2202 +a(g2199 +g2201 +S'because' +p2203 +tp2204 +a(g2201 +g2203 +S'raeburn' +p2205 +tp2206 +a(g2203 +g2205 +S'did' +p2207 +tp2208 +a(g2205 +g2207 +S'not' +p2209 +tp2210 +a(g2207 +g2209 +S'keep' +p2211 +tp2212 +a(g2209 +g2211 +S'studio' +p2213 +tp2214 +a(g2211 +g2213 +S'account' +p2215 +tp2216 +a(g2213 +g2215 +S'books' +p2217 +tp2218 +a(g2215 +g2217 +S'and' +p2219 +tp2220 +a(g2217 +g2219 +S'never' +p2221 +tp2222 +a(g2219 +g2221 +S'dated' +p2223 +tp2224 +a(g2221 +g2223 +S'any' +p2225 +tp2226 +a(g2223 +g2225 +S'of' +p2227 +tp2228 +a(g2225 +g2227 +S'his' +p2229 +tp2230 +a(g2227 +g2229 +S'pictures.' +p2231 +tp2232 +a(g2229 +g2231 +S'his' +p2233 +tp2234 +a(g2231 +g2233 +S'style' +p2235 +tp2236 +a(g2233 +g2235 +S'matured' +p2237 +tp2238 +a(g2235 +g2237 +S'early,' +p2239 +tp2240 +a(g2237 +g2239 +S'without' +p2241 +tp2242 +a(g2239 +g2241 +S'much' +p2243 +tp2244 +a(g2241 +g2243 +S'modification,' +p2245 +tp2246 +a(g2243 +g2245 +S'after' +p2247 +tp2248 +a(g2245 +g2247 +S'a' +p2249 +tp2250 +a(g2247 +g2249 +S'few' +p2251 +tp2252 +a(g2249 +g2251 +S'months' +p2253 +tp2254 +a(g2251 +g2253 +S'in' +p2255 +tp2256 +a(g2253 +g2255 +S'london' +p2257 +tp2258 +a(g2255 +g2257 +S'and' +p2259 +tp2260 +a(g2257 +g2259 +S'a' +p2261 +tp2262 +a(g2259 +g2261 +S'year' +p2263 +tp2264 +a(g2261 +g2263 +S'or' +p2265 +tp2266 +a(g2263 +g2265 +S'two' +p2267 +tp2268 +a(g2265 +g2267 +S'in' +p2269 +tp2270 +a(g2267 +g2269 +S'rome' +p2271 +tp2272 +a(g2269 +g2271 +S'during' +p2273 +tp2274 +a(g2271 +g2273 +S'the' +p2275 +tp2276 +a(g2273 +g2275 +S'mid-1780s.' +p2277 +tp2278 +a(g2275 +g2277 +S'so,' +p2279 +tp2280 +a(g2277 +g2279 +S'it' +p2281 +tp2282 +a(g2279 +g2281 +S'is' +p2283 +tp2284 +a(g2281 +g2283 +S'difficult' +p2285 +tp2286 +a(g2283 +g2285 +S'to' +p2287 +tp2288 +a(g2285 +g2287 +S'establish' +p2289 +tp2290 +a(g2287 +g2289 +S'a' +p2291 +tp2292 +a(g2289 +g2291 +S'chronology' +p2293 +tp2294 +a(g2291 +g2293 +S'for' +p2295 +tp2296 +a(g2293 +g2295 +S'the' +p2297 +tp2298 +a(g2295 +g2297 +S'more' +p2299 +tp2300 +a(g2297 +g2299 +S'than' +p2301 +tp2302 +a(g2299 +g2301 +S'one' +p2303 +tp2304 +a(g2301 +g2303 +S'thousand' +p2305 +tp2306 +a(g2303 +g2305 +S'portraits' +p2307 +tp2308 +a(g2305 +g2307 +S'he' +p2309 +tp2310 +a(g2307 +g2309 +S'made' +p2311 +tp2312 +a(g2309 +g2311 +S'during' +p2313 +tp2314 +a(g2311 +g2313 +S'a' +p2315 +tp2316 +a(g2313 +g2315 +S'fifty-year' +p2317 +tp2318 +a(g2315 +g2317 +S'career' +p2319 +tp2320 +a(g2317 +g2319 +S'as' +p2321 +tp2322 +a(g2319 +g2321 +S"scotland's" +p2323 +tp2324 +a(g2321 +g2323 +S'foremost' +p2325 +tp2326 +a(g2323 +g2325 +S'painter.' +p2327 +tp2328 +a(g2325 +g2327 +S'although' +p2329 +tp2330 +a(g2327 +g2329 +S'dedicated' +p2331 +tp2332 +a(g2329 +g2331 +S'to' +p2333 +tp2334 +a(g2331 +g2333 +S'his' +p2335 +tp2336 +a(g2333 +g2335 +S'art,' +p2337 +tp2338 +a(g2335 +g2337 +S'raeburn' +p2339 +tp2340 +a(g2337 +g2339 +S'need' +p2341 +tp2342 +a(g2339 +g2341 +S'not' +p2343 +tp2344 +a(g2341 +g2343 +S'have' +p2345 +tp2346 +a(g2343 +g2345 +S'worked' +p2347 +tp2348 +a(g2345 +g2347 +S'at' +p2349 +tp2350 +a(g2347 +g2349 +S'all.' +p2351 +tp2352 +a(g2349 +g2351 +S'at' +p2353 +tp2354 +a(g2351 +g2353 +S'twenty-four,' +p2355 +tp2356 +a(g2353 +g2355 +S'he' +p2357 +tp2358 +a(g2355 +g2357 +S'had' +p2359 +tp2360 +a(g2357 +g2359 +S'married' +p2361 +tp2362 +a(g2359 +g2361 +S'a' +p2363 +tp2364 +a(g2361 +g2363 +S'wealthy' +p2365 +tp2366 +a(g2363 +g2365 +S'widow' +p2367 +tp2368 +a(g2365 +g2367 +S'and' +p2369 +tp2370 +a(g2367 +g2369 +S'become' +p2371 +tp2372 +a(g2369 +g2371 +S'a' +p2373 +tp2374 +a(g2371 +g2373 +S'member' +p2375 +tp2376 +a(g2373 +g2375 +S'of' +p2377 +tp2378 +a(g2375 +g2377 +S'edinburgh' +p2379 +tp2380 +a(g2377 +g2379 +S'society.' +p2381 +tp2382 +a(g2379 +g2381 +S'the' +p2383 +tp2384 +a(g2381 +g2383 +S'eighteen-year-old' +p2385 +tp2386 +a(g2383 +g2385 +S'copley' +p2387 +tp2388 +a(g2385 +g2387 +S'proudly' +p2389 +tp2390 +a(g2387 +g2389 +S'signed' +p2391 +tp2392 +a(g2389 +g2391 +S'and' +p2393 +tp2394 +a(g2391 +g2393 +S'dated' +p2395 +tp2396 +a(g2393 +g2395 +S'this' +p2397 +tp2398 +a(g2395 +g2397 +S'picture' +p2399 +tp2400 +a(g2397 +g2399 +S'“1756.”' +p2401 +tp2402 +a(g2399 +g2401 +S'his' +p2403 +tp2404 +a(g2401 +g2403 +S'sitter,' +p2405 +tp2406 +a(g2403 +g2405 +S'jane' +p2407 +tp2408 +a(g2405 +g2407 +S'browne' +p2409 +tp2410 +a(g2407 +g2409 +S'(1734-1802),' +p2411 +tp2412 +a(g2409 +g2411 +S'daughter' +p2413 +tp2414 +a(g2411 +g2413 +S'of' +p2415 +tp2416 +a(g2413 +g2415 +S'an' +p2417 +tp2418 +a(g2415 +g2417 +S'anglican' +p2419 +tp2420 +a(g2417 +g2419 +S'minister' +p2421 +tp2422 +a(g2419 +g2421 +S'from' +p2423 +tp2424 +a(g2421 +g2423 +S'portsmouth,' +p2425 +tp2426 +a(g2423 +g2425 +S'new' +p2427 +tp2428 +a(g2425 +g2427 +S'hampshire,' +p2429 +tp2430 +a(g2427 +g2429 +S'later' +p2431 +tp2432 +a(g2429 +g2431 +S'married' +p2433 +tp2434 +a(g2431 +g2433 +S'a' +p2435 +tp2436 +a(g2433 +g2435 +S'judge,' +p2437 +tp2438 +a(g2435 +g2437 +S'samuel' +p2439 +tp2440 +a(g2437 +g2439 +S'livermore.' +p2441 +tp2442 +a(g2439 +g2441 +S'the' +p2443 +tp2444 +a(g2441 +g2443 +S'painted' +p2445 +tp2446 +a(g2443 +g2445 +S'oval' +p2447 +tp2448 +a(g2445 +g2447 +S'border' +p2449 +tp2450 +a(g2447 +g2449 +S'and' +p2451 +tp2452 +a(g2449 +g2451 +S'the' +p2453 +tp2454 +a(g2451 +g2453 +S'subject’s' +p2455 +tp2456 +a(g2453 +g2455 +S'elegant' +p2457 +tp2458 +a(g2455 +g2457 +S'pose' +p2459 +tp2460 +a(g2457 +g2459 +S'derive' +p2461 +tp2462 +a(g2459 +g2461 +S'from' +p2463 +tp2464 +a(g2461 +g2463 +S'engravings' +p2465 +tp2466 +a(g2463 +g2465 +S'of' +p2467 +tp2468 +a(g2465 +g2467 +S'english' +p2469 +tp2470 +a(g2467 +g2469 +S'portraits.' +p2471 +tp2472 +a(g2469 +g2471 +S'the' +p2473 +tp2474 +a(g2471 +g2473 +S'awkward' +p2475 +tp2476 +a(g2473 +g2475 +S'anatomy,' +p2477 +tp2478 +a(g2475 +g2477 +S'however,' +p2479 +tp2480 +a(g2477 +g2479 +S'indicates' +p2481 +tp2482 +a(g2479 +g2481 +S'that' +p2483 +tp2484 +a(g2481 +g2483 +S'copley' +p2485 +tp2486 +a(g2483 +g2485 +S'lacked' +p2487 +tp2488 +a(g2485 +g2487 +S'formal' +p2489 +tp2490 +a(g2487 +g2489 +S'training.' +p2491 +tp2492 +a(g2489 +g2491 +S'still,' +p2493 +tp2494 +a(g2491 +g2493 +S'the' +p2495 +tp2496 +a(g2493 +g2495 +S'young' +p2497 +tp2498 +a(g2495 +g2497 +S'artist' +p2499 +tp2500 +a(g2497 +g2499 +S'did' +p2501 +tp2502 +a(g2499 +g2501 +S'carefully' +p2503 +tp2504 +a(g2501 +g2503 +S'distinguish' +p2505 +tp2506 +a(g2503 +g2505 +S'the' +p2507 +tp2508 +a(g2505 +g2507 +S'textures' +p2509 +tp2510 +a(g2507 +g2509 +S'of' +p2511 +tp2512 +a(g2509 +g2511 +S'taffeta,' +p2513 +tp2514 +a(g2511 +g2513 +S'lace,' +p2515 +tp2516 +a(g2513 +g2515 +S'and' +p2517 +tp2518 +a(g2515 +g2517 +S'beads.' +p2519 +tp2520 +a(g2517 +g2519 +S'this' +p2521 +tp2522 +a(g2519 +g2521 +S'panel' +p2523 +tp2524 +a(g2521 +g2523 +S'painted' +p2525 +tp2526 +a(g2523 +g2525 +S'early' +p2527 +tp2528 +a(g2525 +g2527 +S'in' +p2529 +tp2530 +a(g2527 +g2529 +S'the' +p2531 +tp2532 +a(g2529 +g2531 +S'career' +p2533 +tp2534 +a(g2531 +g2533 +S'of' +p2535 +tp2536 +a(g2533 +g2535 +S'matteo' +p2537 +tp2538 +a(g2535 +g2537 +S'di' +p2539 +tp2540 +a(g2537 +g2539 +S'giovanni' +p2541 +tp2542 +a(g2539 +g2541 +S'reflects' +p2543 +tp2544 +a(g2541 +g2543 +S'the' +p2545 +tp2546 +a(g2543 +g2545 +S'format' +p2547 +tp2548 +a(g2545 +g2547 +S'of' +p2549 +tp2550 +a(g2547 +g2549 +S'devotional' +p2551 +tp2552 +a(g2549 +g2551 +S'images' +p2553 +tp2554 +a(g2551 +g2553 +S'made' +p2555 +tp2556 +a(g2553 +g2555 +S'popular' +p2557 +tp2558 +a(g2555 +g2557 +S'in' +p2559 +tp2560 +a(g2557 +g2559 +S'siena' +p2561 +tp2562 +a(g2559 +g2561 +S'by' +p2563 +tp2564 +a(g2561 +g2563 +S'like' +p2565 +tp2566 +a(g2563 +g2565 +S"sano's" +p2567 +tp2568 +a(g2565 +g2567 +S'panel,' +p2569 +tp2570 +a(g2567 +g2569 +S'matteo' +p2571 +tp2572 +a(g2569 +g2571 +S'was' +p2573 +tp2574 +a(g2571 +g2573 +S'not' +p2575 +tp2576 +a(g2573 +g2575 +S'born' +p2577 +tp2578 +a(g2575 +g2577 +S'in' +p2579 +tp2580 +a(g2577 +g2579 +S'siena' +p2581 +tp2582 +a(g2579 +g2581 +S'but' +p2583 +tp2584 +a(g2581 +g2583 +S'probably' +p2585 +tp2586 +a(g2583 +g2585 +S'received' +p2587 +tp2588 +a(g2585 +g2587 +S'most' +p2589 +tp2590 +a(g2587 +g2589 +S'of' +p2591 +tp2592 +a(g2589 +g2591 +S'his' +p2593 +tp2594 +a(g2591 +g2593 +S'training' +p2595 +tp2596 +a(g2593 +g2595 +S'there.' +p2597 +tp2598 +a(g2595 +g2597 +S'his' +p2599 +tp2600 +a(g2597 +g2599 +S'later' +p2601 +tp2602 +a(g2599 +g2601 +S'works' +p2603 +tp2604 +a(g2601 +g2603 +S'also' +p2605 +tp2606 +a(g2603 +g2605 +S'reveal' +p2607 +tp2608 +a(g2605 +g2607 +S'a' +p2609 +tp2610 +a(g2607 +g2609 +S'familiarity' +p2611 +tp2612 +a(g2609 +g2611 +S'with' +p2613 +tp2614 +a(g2611 +g2613 +S'florentine' +p2615 +tp2616 +a(g2613 +g2615 +S'artists' +p2617 +tp2618 +a(g2615 +g2617 +S'such' +p2619 +tp2620 +a(g2617 +g2619 +S'as' +p2621 +tp2622 +a(g2619 +g2621 +S'washington' +p2623 +tp2624 +a(g2621 +g2623 +S"irving's" +p2625 +tp2626 +a(g2623 +g2625 +S"quidor's" +p2627 +tp2628 +a(g2625 +g2627 +S'painting' +p2629 +tp2630 +a(g2627 +g2629 +S'is' +p2631 +tp2632 +a(g2629 +g2631 +S'a' +p2633 +tp2634 +a(g2631 +g2633 +S'perfect' +p2635 +tp2636 +a(g2633 +g2635 +S'pantomime' +p2637 +tp2638 +a(g2635 +g2637 +S'to' +p2639 +tp2640 +a(g2637 +g2639 +S'the' +p2641 +tp2642 +a(g2639 +g2641 +S'climax' +p2643 +tp2644 +a(g2641 +g2643 +S'of' +p2645 +tp2646 +a(g2643 +g2645 +S"irving's" +p2647 +tp2648 +a(g2645 +g2647 +S'story,' +p2649 +tp2650 +a(g2647 +g2649 +S'as' +p2651 +tp2652 +a(g2649 +g2651 +S'rip' +p2653 +tp2654 +a(g2651 +g2653 +S'discovers' +p2655 +tp2656 +a(g2653 +g2655 +S'--' +p2657 +tp2658 +a(g2655 +g2657 +S'to' +p2659 +tp2660 +a(g2657 +g2659 +S'his' +p2661 +tp2662 +a(g2659 +g2661 +S'bewilderment' +p2663 +tp2664 +a(g2661 +g2663 +S'--' +p2665 +tp2666 +a(g2663 +g2665 +S'that' +p2667 +tp2668 +a(g2665 +g2667 +S'he' +p2669 +tp2670 +a(g2667 +g2669 +S'has' +p2671 +tp2672 +a(g2669 +g2671 +S'a' +p2673 +tp2674 +a(g2671 +g2673 +S'son' +p2675 +tp2676 +a(g2673 +g2675 +S'and' +p2677 +tp2678 +a(g2675 +g2677 +S'grandson,' +p2679 +tp2680 +a(g2677 +g2679 +S'both' +p2681 +tp2682 +a(g2679 +g2681 +S'namesakes.' +p2683 +tp2684 +a(g2681 +g2683 +S'the' +p2685 +tp2686 +a(g2683 +g2685 +S'scene' +p2687 +tp2688 +a(g2685 +g2687 +S'is' +p2689 +tp2690 +a(g2687 +g2689 +S'animated' +p2691 +tp2692 +a(g2689 +g2691 +S'by' +p2693 +tp2694 +a(g2691 +g2693 +S'thick' +p2695 +tp2696 +a(g2693 +g2695 +S'strokes' +p2697 +tp2698 +a(g2695 +g2697 +S'of' +p2699 +tp2700 +a(g2697 +g2699 +S'pure' +p2701 +tp2702 +a(g2699 +g2701 +S'white' +p2703 +tp2704 +a(g2701 +g2703 +S'paint,' +p2705 +tp2706 +a(g2703 +g2705 +S'phantom' +p2707 +tp2708 +a(g2705 +g2707 +S'highlights' +p2709 +tp2710 +a(g2707 +g2709 +S'within' +p2711 +tp2712 +a(g2709 +g2711 +S'the' +p2713 +tp2714 +a(g2711 +g2713 +S'golden,' +p2715 +tp2716 +a(g2713 +g2715 +S'dreamlike' +p2717 +tp2718 +a(g2715 +g2717 +S'haze.' +p2719 +tp2720 +a(g2717 +g2719 +S"quidor's" +p2721 +tp2722 +a(g2719 +g2721 +S'obsession' +p2723 +tp2724 +a(g2721 +g2723 +S'with' +p2725 +tp2726 +a(g2723 +g2725 +S'depicting' +p2727 +tp2728 +a(g2725 +g2727 +S'rip' +p2729 +tp2730 +a(g2727 +g2729 +S'van' +p2731 +tp2732 +a(g2729 +g2731 +S'winkle' +p2733 +tp2734 +a(g2731 +g2733 +S'has' +p2735 +tp2736 +a(g2733 +g2735 +S'been' +p2737 +tp2738 +a(g2735 +g2737 +S'interpreted' +p2739 +tp2740 +a(g2737 +g2739 +S'as' +p2741 +tp2742 +a(g2739 +g2741 +S'indicative' +p2743 +tp2744 +a(g2741 +g2743 +S'of' +p2745 +tp2746 +a(g2743 +g2745 +S'the' +p2747 +tp2748 +a(g2745 +g2747 +S"artist's" +p2749 +tp2750 +a(g2747 +g2749 +S'own' +p2751 +tp2752 +a(g2749 +g2751 +S'search' +p2753 +tp2754 +a(g2751 +g2753 +S'for' +p2755 +tp2756 +a(g2753 +g2755 +S'acceptance.' +p2757 +tp2758 +a(g2755 +g2757 +S'although' +p2759 +tp2760 +a(g2757 +g2759 +S'quidor' +p2761 +tp2762 +a(g2759 +g2761 +S'spent' +p2763 +tp2764 +a(g2761 +g2763 +S'four' +p2765 +tp2766 +a(g2763 +g2765 +S'years' +p2767 +tp2768 +a(g2765 +g2767 +S'training' +p2769 +tp2770 +a(g2767 +g2769 +S'under' +p2771 +tp2772 +a(g2769 +g2771 +S'a' +p2773 +tp2774 +a(g2771 +g2773 +S'society' +p2775 +tp2776 +a(g2773 +g2775 +S'portraitist' +p2777 +tp2778 +a(g2775 +g2777 +S'and' +p2779 +tp2780 +a(g2777 +g2779 +S'occasionally' +p2781 +tp2782 +a(g2779 +g2781 +S'exhibited' +p2783 +tp2784 +a(g2781 +g2783 +S'pictures' +p2785 +tp2786 +a(g2783 +g2785 +S'of' +p2787 +tp2788 +a(g2785 +g2787 +S'literary' +p2789 +tp2790 +a(g2787 +g2789 +S'themes' +p2791 +tp2792 +a(g2789 +g2791 +S'at' +p2793 +tp2794 +a(g2791 +g2793 +S'the' +p2795 +tp2796 +a(g2793 +g2795 +S'national' +p2797 +tp2798 +a(g2795 +g2797 +S'academy' +p2799 +tp2800 +a(g2797 +g2799 +S'of' +p2801 +tp2802 +a(g2799 +g2801 +S'design,' +p2803 +tp2804 +a(g2801 +g2803 +S'he' +p2805 +tp2806 +a(g2803 +g2805 +S'had' +p2807 +tp2808 +a(g2805 +g2807 +S'to' +p2809 +tp2810 +a(g2807 +g2809 +S'earn' +p2811 +tp2812 +a(g2809 +g2811 +S'his' +p2813 +tp2814 +a(g2811 +g2813 +S'living' +p2815 +tp2816 +a(g2813 +g2815 +S'by' +p2817 +tp2818 +a(g2815 +g2817 +S'painting' +p2819 +tp2820 +a(g2817 +g2819 +S'signs' +p2821 +tp2822 +a(g2819 +g2821 +S'and' +p2823 +tp2824 +a(g2821 +g2823 +S'decorating' +p2825 +tp2826 +a(g2823 +g2825 +S'fire' +p2827 +tp2828 +a(g2825 +g2827 +S'engines.' +p2829 +tp2830 +a(g2827 +g2829 +S'juliana' +p2831 +tp2832 +a(g2829 +g2831 +S'willoughby' +p2833 +tp2834 +a(g2831 +g2833 +S'stands' +p2835 +tp2836 +a(g2833 +g2835 +S'quietly' +p2837 +tp2838 +a(g2835 +g2837 +S'but' +p2839 +tp2840 +a(g2837 +g2839 +S'alertly,' +p2841 +tp2842 +a(g2839 +g2841 +S'engaging' +p2843 +tp2844 +a(g2841 +g2843 +S'the' +p2845 +tp2846 +a(g2843 +g2845 +S'viewer' +p2847 +tp2848 +a(g2845 +g2847 +S'with' +p2849 +tp2850 +a(g2847 +g2849 +S'her' +p2851 +tp2852 +a(g2849 +g2851 +S'direct,' +p2853 +tp2854 +a(g2851 +g2853 +S'slightly' +p2855 +tp2856 +a(g2853 +g2855 +S'questioning' +p2857 +tp2858 +a(g2855 +g2857 +S'gaze.' +p2859 +tp2860 +a(g2857 +g2859 +S'the' +p2861 +tp2862 +a(g2859 +g2861 +S'blended' +p2863 +tp2864 +a(g2861 +g2863 +S'harmonies' +p2865 +tp2866 +a(g2863 +g2865 +S'of' +p2867 +tp2868 +a(g2865 +g2867 +S'the' +p2869 +tp2870 +a(g2867 +g2869 +S'pinks,' +p2871 +tp2872 +a(g2869 +g2871 +S'whites,' +p2873 +tp2874 +a(g2871 +g2873 +S'and' +p2875 +tp2876 +a(g2873 +g2875 +S'creams' +p2877 +tp2878 +a(g2875 +g2877 +S'of' +p2879 +tp2880 +a(g2877 +g2879 +S'her' +p2881 +tp2882 +a(g2879 +g2881 +S'skin' +p2883 +tp2884 +a(g2881 +g2883 +S'tones,' +p2885 +tp2886 +a(g2883 +g2885 +S'her' +p2887 +tp2888 +a(g2885 +g2887 +S'dress,' +p2889 +tp2890 +a(g2887 +g2889 +S'and' +p2891 +tp2892 +a(g2889 +g2891 +S'her' +p2893 +tp2894 +a(g2891 +g2893 +S'shining' +p2895 +tp2896 +a(g2893 +g2895 +S'wisps' +p2897 +tp2898 +a(g2895 +g2897 +S'of' +p2899 +tp2900 +a(g2897 +g2899 +S'fine' +p2901 +tp2902 +a(g2899 +g2901 +S'hair' +p2903 +tp2904 +a(g2901 +g2903 +S'evoke' +p2905 +tp2906 +a(g2903 +g2905 +S'not' +p2907 +tp2908 +a(g2905 +g2907 +S'just' +p2909 +tp2910 +a(g2907 +g2909 +S'juliana,' +p2911 +tp2912 +a(g2909 +g2911 +S'but' +p2913 +tp2914 +a(g2911 +g2913 +S'the' +p2915 +tp2916 +a(g2913 +g2915 +S'essence' +p2917 +tp2918 +a(g2915 +g2917 +S'of' +p2919 +tp2920 +a(g2917 +g2919 +S'all' +p2921 +tp2922 +a(g2919 +g2921 +S'little' +p2923 +tp2924 +a(g2921 +g2923 +S'girls' +p2925 +tp2926 +a(g2923 +g2925 +S'of' +p2927 +tp2928 +a(g2925 +g2927 +S'this' +p2929 +tp2930 +a(g2927 +g2929 +S'age.' +p2931 +tp2932 +a(g2929 +g2931 +S'the' +p2933 +tp2934 +a(g2931 +g2933 +S'dramatic' +p2935 +tp2936 +a(g2933 +g2935 +S'diagonals' +p2937 +tp2938 +a(g2935 +g2937 +S'of' +p2939 +tp2940 +a(g2937 +g2939 +S'the' +p2941 +tp2942 +a(g2939 +g2941 +S'landscape,' +p2943 +tp2944 +a(g2941 +g2943 +S'the' +p2945 +tp2946 +a(g2943 +g2945 +S'energetic' +p2947 +tp2948 +a(g2945 +g2947 +S'brushwork' +p2949 +tp2950 +a(g2947 +g2949 +S'of' +p2951 +tp2952 +a(g2949 +g2951 +S'the' +p2953 +tp2954 +a(g2951 +g2953 +S'trees' +p2955 +tp2956 +a(g2953 +g2955 +S'at' +p2957 +tp2958 +a(g2955 +g2957 +S'the' +p2959 +tp2960 +a(g2957 +g2959 +S'right,' +p2961 +tp2962 +a(g2959 +g2961 +S'and' +p2963 +tp2964 +a(g2961 +g2963 +S'the' +p2965 +tp2966 +a(g2963 +g2965 +S'strong' +p2967 +tp2968 +a(g2965 +g2967 +S'coloration' +p2969 +tp2970 +a(g2967 +g2969 +S'of' +p2971 +tp2972 +a(g2969 +g2971 +S'the' +p2973 +tp2974 +a(g2971 +g2973 +S'sky' +p2975 +tp2976 +a(g2973 +g2975 +S'provide' +p2977 +tp2978 +a(g2975 +g2977 +S'a' +p2979 +tp2980 +a(g2977 +g2979 +S'dynamic' +p2981 +tp2982 +a(g2979 +g2981 +S'backdrop' +p2983 +tp2984 +a(g2981 +g2983 +S'for' +p2985 +tp2986 +a(g2983 +g2985 +S'the' +p2987 +tp2988 +a(g2985 +g2987 +S'young' +p2989 +tp2990 +a(g2987 +g2989 +S'subject.' +p2991 +tp2992 +a(g2989 +g2991 +S"romney's" +p2993 +tp2994 +a(g2991 +g2993 +S'sure' +p2995 +tp2996 +a(g2993 +g2995 +S'sense' +p2997 +tp2998 +a(g2995 +g2997 +S'of' +p2999 +tp3000 +a(g2997 +g2999 +S'formal' +p3001 +tp3002 +a(g2999 +g3001 +S'values' +p3003 +tp3004 +a(g3001 +g3003 +S'is' +p3005 +tp3006 +a(g3003 +g3005 +S'evident' +p3007 +tp3008 +a(g3005 +g3007 +S'here' +p3009 +tp3010 +a(g3007 +g3009 +S'in' +p3011 +tp3012 +a(g3009 +g3011 +S'the' +p3013 +tp3014 +a(g3011 +g3013 +S'effective' +p3015 +tp3016 +a(g3013 +g3015 +S'balance' +p3017 +tp3018 +a(g3015 +g3017 +S'of' +p3019 +tp3020 +a(g3017 +g3019 +S'figure' +p3021 +tp3022 +a(g3019 +g3021 +S'and' +p3023 +tp3024 +a(g3021 +g3023 +S'landscape.' +p3025 +tp3026 +a(g3023 +g3025 +S'in' +p3027 +tp3028 +a(g3025 +g3027 +S'this' +p3029 +tp3030 +a(g3027 +g3029 +S'portrait' +p3031 +tp3032 +a(g3029 +g3031 +S'romney' +p3033 +tp3034 +a(g3031 +g3033 +S'successfully' +p3035 +tp3036 +a(g3033 +g3035 +S'adapted' +p3037 +tp3038 +a(g3035 +g3037 +S'his' +p3039 +tp3040 +a(g3037 +g3039 +S'composition' +p3041 +tp3042 +a(g3039 +g3041 +S'to' +p3043 +tp3044 +a(g3041 +g3043 +S'a' +p3045 +tp3046 +a(g3043 +g3045 +S'change' +p3047 +tp3048 +a(g3045 +g3047 +S'in' +p3049 +tp3050 +a(g3047 +g3049 +S'the' +p3051 +tp3052 +a(g3049 +g3051 +S"sitter's" +p3053 +tp3054 +a(g3051 +g3053 +S'costume,' +p3055 +tp3056 +a(g3053 +g3055 +S'x-rays' +p3057 +tp3058 +a(g3055 +g3057 +S'show' +p3059 +tp3060 +a(g3057 +g3059 +S'that' +p3061 +tp3062 +a(g3059 +g3061 +S'juliana' +p3063 +tp3064 +a(g3061 +g3063 +S'originally' +p3065 +tp3066 +a(g3063 +g3065 +S'wore' +p3067 +tp3068 +a(g3065 +g3067 +S'a' +p3069 +tp3070 +a(g3067 +g3069 +S'small,' +p3071 +tp3072 +a(g3069 +g3071 +S'brimless' +p3073 +tp3074 +a(g3071 +g3073 +S'cap.' +p3075 +tp3076 +a(g3073 +g3075 +S'during' +p3077 +tp3078 +a(g3075 +g3077 +S'the' +p3079 +tp3080 +a(g3077 +g3079 +S'two' +p3081 +tp3082 +a(g3079 +g3081 +S'years' +p3083 +tp3084 +a(g3081 +g3083 +S'it' +p3085 +tp3086 +a(g3083 +g3085 +S'took' +p3087 +tp3088 +a(g3085 +g3087 +S'romney' +p3089 +tp3090 +a(g3087 +g3089 +S'to' +p3091 +tp3092 +a(g3089 +g3091 +S'complete' +p3093 +tp3094 +a(g3091 +g3093 +S'the' +p3095 +tp3096 +a(g3093 +g3095 +S'portrait,' +p3097 +tp3098 +a(g3095 +g3097 +S'juliana,' +p3099 +tp3100 +a(g3097 +g3099 +S'who' +p3101 +tp3102 +a(g3099 +g3101 +S'was' +p3103 +tp3104 +a(g3101 +g3103 +S'by' +p3105 +tp3106 +a(g3103 +g3105 +S'then' +p3107 +tp3108 +a(g3105 +g3107 +S'almost' +p3109 +tp3110 +a(g3107 +g3109 +S'six' +p3111 +tp3112 +a(g3109 +g3111 +S'years' +p3113 +tp3114 +a(g3111 +g3113 +S'old,' +p3115 +tp3116 +a(g3113 +g3115 +S'had' +p3117 +tp3118 +a(g3115 +g3117 +S'outgrown' +p3119 +tp3120 +a(g3117 +g3119 +S'her' +p3121 +tp3122 +a(g3119 +g3121 +S'mobcap' +p3123 +tp3124 +a(g3121 +g3123 +S'and' +p3125 +tp3126 +a(g3123 +g3125 +S'wore,' +p3127 +tp3128 +a(g3125 +g3127 +S'instead,' +p3129 +tp3130 +a(g3127 +g3129 +S'this' +p3131 +tp3132 +a(g3129 +g3131 +S'broad-brimmed' +p3133 +tp3134 +a(g3131 +g3133 +S'bonnet.' +p3135 +tp3136 +a(g3133 +g3135 +S'like' +p3137 +tp3138 +a(g3135 +g3137 +S'many' +p3139 +tp3140 +a(g3137 +g3139 +S'of' +p3141 +tp3142 +a(g3139 +g3141 +S'his' +p3143 +tp3144 +a(g3141 +g3143 +S'contemporaries,' +p3145 +tp3146 +a(g3143 +g3145 +S'romney' +p3147 +tp3148 +a(g3145 +g3147 +S'traveled' +p3149 +tp3150 +a(g3147 +g3149 +S'to' +p3151 +tp3152 +a(g3149 +g3151 +S'italy,' +p3153 +tp3154 +a(g3151 +g3153 +S'where' +p3155 +tp3156 +a(g3153 +g3155 +S'he' +p3157 +tp3158 +a(g3155 +g3157 +S'spent' +p3159 +tp3160 +a(g3157 +g3159 +S'two' +p3161 +tp3162 +a(g3159 +g3161 +S'years' +p3163 +tp3164 +a(g3161 +g3163 +S'studying' +p3165 +tp3166 +a(g3163 +g3165 +S'the' +p3167 +tp3168 +a(g3165 +g3167 +S'work' +p3169 +tp3170 +a(g3167 +g3169 +S'of' +p3171 +tp3172 +a(g3169 +g3171 +S'renaissance' +p3173 +tp3174 +a(g3171 +g3173 +S'masters,' +p3175 +tp3176 +a(g3173 +g3175 +S'in' +p3177 +tp3178 +a(g3175 +g3177 +S'particular' +p3179 +tp3180 +a(g3177 +g3179 +S'paintings' +p3181 +tp3182 +a(g3179 +g3181 +S'by' +p3183 +tp3184 +a(g3181 +g3183 +S'titian' +p3185 +tp3186 +a(g3183 +g3185 +S'and' +p3187 +tp3188 +a(g3185 +g3187 +S'raphael.' +p3189 +tp3190 +a(g3187 +g3189 +S'the' +p3191 +tp3192 +a(g3189 +g3191 +S'impact' +p3193 +tp3194 +a(g3191 +g3193 +S'of' +p3195 +tp3196 +a(g3193 +g3195 +S'these' +p3197 +tp3198 +a(g3195 +g3197 +S'artists' +p3199 +tp3200 +a(g3197 +g3199 +S'on' +p3201 +tp3202 +a(g3199 +g3201 +S'his' +p3203 +tp3204 +a(g3201 +g3203 +S'work' +p3205 +tp3206 +a(g3203 +g3205 +S'can' +p3207 +tp3208 +a(g3205 +g3207 +S'be' +p3209 +tp3210 +a(g3207 +g3209 +S'seen' +p3211 +tp3212 +a(g3209 +g3211 +S'in' +p3213 +tp3214 +a(g3211 +g3213 +S'the' +p3215 +tp3216 +a(g3213 +g3215 +S'simply' +p3217 +tp3218 +a(g3215 +g3217 +S'expressed' +p3219 +tp3220 +a(g3217 +g3219 +S'folds' +p3221 +tp3222 +a(g3219 +g3221 +S'of' +p3223 +tp3224 +a(g3221 +g3223 +S"juliana's" +p3225 +tp3226 +a(g3223 +g3225 +S'dress,' +p3227 +tp3228 +a(g3225 +g3227 +S'the' +p3229 +tp3230 +a(g3227 +g3229 +S'case' +p3231 +tp3232 +a(g3229 +g3231 +S'and' +p3233 +tp3234 +a(g3231 +g3233 +S'certainty' +p3235 +tp3236 +a(g3233 +g3235 +S'of' +p3237 +tp3238 +a(g3235 +g3237 +S'his' +p3239 +tp3240 +a(g3237 +g3239 +S'outlines,' +p3241 +tp3242 +a(g3239 +g3241 +S'and' +p3243 +tp3244 +a(g3241 +g3243 +S'the' +p3245 +tp3246 +a(g3243 +g3245 +S'artful' +p3247 +tp3248 +a(g3245 +g3247 +S'balance' +p3249 +tp3250 +a(g3247 +g3249 +S'of' +p3251 +tp3252 +a(g3249 +g3251 +S'broad' +p3253 +tp3254 +a(g3251 +g3253 +S'areas' +p3255 +tp3256 +a(g3253 +g3255 +S'of' +p3257 +tp3258 +a(g3255 +g3257 +S'color.' +p3259 +tp3260 +a(g3257 +g3259 +S'gilbert' +p3261 +tp3262 +a(g3259 +g3261 +S'stuart' +p3263 +tp3264 +a(g3261 +g3263 +S'was' +p3265 +tp3266 +a(g3263 +g3265 +S'exclusively' +p3267 +tp3268 +a(g3265 +g3267 +S'a' +p3269 +tp3270 +a(g3267 +g3269 +S'portraitist;' +p3271 +tp3272 +a(g3269 +g3271 +S'in' +p3273 +tp3274 +a(g3271 +g3273 +S'his' +p3275 +tp3276 +a(g3273 +g3275 +S'five-decade' +p3277 +tp3278 +a(g3275 +g3277 +S'career,' +p3279 +tp3280 +a(g3277 +g3279 +S'he' +p3281 +tp3282 +a(g3279 +g3281 +S'produced' +p3283 +tp3284 +a(g3281 +g3283 +S'well' +p3285 +tp3286 +a(g3283 +g3285 +S'over' +p3287 +tp3288 +a(g3285 +g3287 +S'1100' +p3289 +tp3290 +a(g3287 +g3289 +S'pictures,' +p3291 +tp3292 +a(g3289 +g3291 +S'less' +p3293 +tp3294 +a(g3291 +g3293 +S'than' +p3295 +tp3296 +a(g3293 +g3295 +S'ten' +p3297 +tp3298 +a(g3295 +g3297 +S'of' +p3299 +tp3300 +a(g3297 +g3299 +S'which' +p3301 +tp3302 +a(g3299 +g3301 +S'were' +p3303 +tp3304 +a(g3301 +g3303 +S'not' +p3305 +tp3306 +a(g3303 +g3305 +S'likenesses.' +p3307 +tp3308 +a(g3305 +g3307 +S'of' +p3309 +tp3310 +a(g3307 +g3309 +S'these' +p3311 +tp3312 +a(g3309 +g3311 +S'portraits,' +p3313 +tp3314 +a(g3311 +g3313 +S'nearly' +p3315 +tp3316 +a(g3313 +g3315 +S'one-tenth' +p3317 +tp3318 +a(g3315 +g3317 +S'are' +p3319 +tp3320 +a(g3317 +g3319 +S'images' +p3321 +tp3322 +a(g3319 +g3321 +S'of' +p3323 +tp3324 +a(g3321 +g3323 +S'george' +p3325 +tp3326 +a(g3323 +g3325 +S'washington,' +p3327 +tp3328 +a(g3325 +g3327 +S'to' +p3329 +tp3330 +a(g3327 +g3329 +S'whom' +p3331 +tp3332 +a(g3329 +g3331 +S'he' +p3333 +tp3334 +a(g3331 +g3333 +S'was' +p3335 +tp3336 +a(g3333 +g3335 +S'introduced' +p3337 +tp3338 +a(g3335 +g3337 +S'by' +p3339 +tp3340 +a(g3337 +g3339 +S'their' +p3341 +tp3342 +a(g3339 +g3341 +S'mutual' +p3343 +tp3344 +a(g3341 +g3343 +S'friend' +p3345 +tp3346 +a(g3343 +g3345 +S'chief' +p3347 +tp3348 +a(g3345 +g3347 +S'justice' +p3349 +tp3350 +a(g3347 +g3349 +S'john' +p3351 +tp3352 +a(g3349 +g3351 +S'jay.' +p3353 +tp3354 +a(g3351 +g3353 +S"stuart's" +p3355 +tp3356 +a(g3353 +g3355 +S'104' +p3357 +tp3358 +a(g3355 +g3357 +S'known' +p3359 +tp3360 +a(g3357 +g3359 +S'likenesses' +p3361 +tp3362 +a(g3359 +g3361 +S'of' +p3363 +tp3364 +a(g3361 +g3363 +S'the' +p3365 +tp3366 +a(g3363 +g3365 +S'first' +p3367 +tp3368 +a(g3365 +g3367 +S'president' +p3369 +tp3370 +a(g3367 +g3369 +S'are' +p3371 +tp3372 +a(g3369 +g3371 +S'divided' +p3373 +tp3374 +a(g3371 +g3373 +S'into' +p3375 +tp3376 +a(g3373 +g3375 +S'categories' +p3377 +tp3378 +a(g3375 +g3377 +S'named' +p3379 +tp3380 +a(g3377 +g3379 +S'after' +p3381 +tp3382 +a(g3379 +g3381 +S'the' +p3383 +tp3384 +a(g3381 +g3383 +S'owners' +p3385 +tp3386 +a(g3383 +g3385 +S'of' +p3387 +tp3388 +a(g3385 +g3387 +S"stuart's" +p3389 +tp3390 +a(g3387 +g3389 +S'originals,' +p3391 +tp3392 +a(g3389 +g3391 +S'from' +p3393 +tp3394 +a(g3391 +g3393 +S'which' +p3395 +tp3396 +a(g3393 +g3395 +S'he' +p3397 +tp3398 +a(g3395 +g3397 +S'made' +p3399 +tp3400 +a(g3397 +g3399 +S'his' +p3401 +tp3402 +a(g3399 +g3401 +S'own' +p3403 +tp3404 +a(g3401 +g3403 +S'replicas:' +p3405 +tp3406 +a(g3403 +g3405 +S'the' +p3407 +tp3408 +a(g3405 +g3407 +S'national' +p3409 +tp3410 +a(g3407 +g3409 +S"gallery's" +p3411 +tp3412 +a(g3409 +g3411 +S'a' +p3413 +tp3414 +a(g3411 +g3413 +S'charming' +p3415 +tp3416 +a(g3413 +g3415 +S'conversationalist,' +p3417 +tp3418 +a(g3415 +g3417 +S'stuart' +p3419 +tp3420 +a(g3417 +g3419 +S'would' +p3421 +tp3422 +a(g3419 +g3421 +S'chat' +p3423 +tp3424 +a(g3421 +g3423 +S'while' +p3425 +tp3426 +a(g3423 +g3425 +S'painting,' +p3427 +tp3428 +a(g3425 +g3427 +S'thereby' +p3429 +tp3430 +a(g3427 +g3429 +S'entertaining' +p3431 +tp3432 +a(g3429 +g3431 +S'his' +p3433 +tp3434 +a(g3431 +g3433 +S'sitters' +p3435 +tp3436 +a(g3433 +g3435 +S'to' +p3437 +tp3438 +a(g3435 +g3437 +S'maintain' +p3439 +tp3440 +a(g3437 +g3439 +S'the' +p3441 +tp3442 +a(g3439 +g3441 +S'freshness' +p3443 +tp3444 +a(g3441 +g3443 +S'of' +p3445 +tp3446 +a(g3443 +g3445 +S'their' +p3447 +tp3448 +a(g3445 +g3447 +S'expressions' +p3449 +tp3450 +a(g3447 +g3449 +S'during' +p3451 +tp3452 +a(g3449 +g3451 +S'the' +p3453 +tp3454 +a(g3451 +g3453 +S'long' +p3455 +tp3456 +a(g3453 +g3455 +S'hours' +p3457 +tp3458 +a(g3455 +g3457 +S'of' +p3459 +tp3460 +a(g3457 +g3459 +S'posing.' +p3461 +tp3462 +a(g3459 +g3461 +S'to' +p3463 +tp3464 +a(g3461 +g3463 +S'the' +p3465 +tp3466 +a(g3463 +g3465 +S'serious' +p3467 +tp3468 +a(g3465 +g3467 +S'and' +p3469 +tp3470 +a(g3467 +g3469 +S'taciturn' +p3471 +tp3472 +a(g3469 +g3471 +S'washington,' +p3473 +tp3474 +a(g3471 +g3473 +S'however,' +p3475 +tp3476 +a(g3473 +g3475 +S"stuart's" +p3477 +tp3478 +a(g3475 +g3477 +S'glib' +p3479 +tp3480 +a(g3477 +g3479 +S'wit' +p3481 +tp3482 +a(g3479 +g3481 +S'was' +p3483 +tp3484 +a(g3481 +g3483 +S'annoying.' +p3485 +tp3486 +a(g3483 +g3485 +S'the' +p3487 +tp3488 +a(g3485 +g3487 +S'artist' +p3489 +tp3490 +a(g3487 +g3489 +S'claimed,' +p3491 +tp3492 +a(g3489 +g3491 +S'"an' +p3493 +tp3494 +a(g3491 +g3493 +S'apathy' +p3495 +tp3496 +a(g3493 +g3495 +S'seemed' +p3497 +tp3498 +a(g3495 +g3497 +S'to' +p3499 +tp3500 +a(g3497 +g3499 +S'seize' +p3501 +tp3502 +a(g3499 +g3501 +S'him,' +p3503 +tp3504 +a(g3501 +g3503 +S'and' +p3505 +tp3506 +a(g3503 +g3505 +S'a' +p3507 +tp3508 +a(g3505 +g3507 +S'vacuity' +p3509 +tp3510 +a(g3507 +g3509 +S'spread' +p3511 +tp3512 +a(g3509 +g3511 +S'over' +p3513 +tp3514 +a(g3511 +g3513 +S'his' +p3515 +tp3516 +a(g3513 +g3515 +S'countenance,' +p3517 +tp3518 +a(g3515 +g3517 +S'most' +p3519 +tp3520 +a(g3517 +g3519 +S'appalling' +p3521 +tp3522 +a(g3519 +g3521 +S'to' +p3523 +tp3524 +a(g3521 +g3523 +S'paint."' +p3525 +tp3526 +a(g3523 +g3525 +S'nevertheless,' +p3527 +tp3528 +a(g3525 +g3527 +S'this' +p3529 +tp3530 +a(g3527 +g3529 +S'image' +p3531 +tp3532 +a(g3529 +g3531 +S'has' +p3533 +tp3534 +a(g3531 +g3533 +S'spontaneity' +p3535 +tp3536 +a(g3533 +g3535 +S'because' +p3537 +tp3538 +a(g3535 +g3537 +S'of' +p3539 +tp3540 +a(g3537 +g3539 +S'its' +p3541 +tp3542 +a(g3539 +g3541 +S'quick,' +p3543 +tp3544 +a(g3541 +g3543 +S'sketchy' +p3545 +tp3546 +a(g3543 +g3545 +S'handling.' +p3547 +tp3548 +a(g3545 +g3547 +S'to' +p3549 +tp3550 +a(g3547 +g3549 +S'impart' +p3551 +tp3552 +a(g3549 +g3551 +S'the' +p3553 +tp3554 +a(g3551 +g3553 +S'sixty-three-year-old' +p3555 +tp3556 +a(g3553 +g3555 +S"subject's" +p3557 +tp3558 +a(g3555 +g3557 +S'imposing' +p3559 +tp3560 +a(g3557 +g3559 +S'physical' +p3561 +tp3562 +a(g3559 +g3561 +S'presence,' +p3563 +tp3564 +a(g3561 +g3563 +S'stuart' +p3565 +tp3566 +a(g3563 +g3565 +S'placed' +p3567 +tp3568 +a(g3565 +g3567 +S'the' +p3569 +tp3570 +a(g3567 +g3569 +S'head' +p3571 +tp3572 +a(g3569 +g3571 +S'high' +p3573 +tp3574 +a(g3571 +g3573 +S'in' +p3575 +tp3576 +a(g3573 +g3575 +S'the' +p3577 +tp3578 +a(g3575 +g3577 +S'design.' +p3579 +tp3580 +a(g3577 +g3579 +S'finally,' +p3581 +tp3582 +a(g3579 +g3581 +S'he' +p3583 +tp3584 +a(g3581 +g3583 +S'added' +p3585 +tp3586 +a(g3583 +g3585 +S'the' +p3587 +tp3588 +a(g3585 +g3587 +S'crimson' +p3589 +tp3590 +a(g3587 +g3589 +S'glow' +p3591 +tp3592 +a(g3589 +g3591 +S'that' +p3593 +tp3594 +a(g3591 +g3593 +S'complements' +p3595 +tp3596 +a(g3593 +g3595 +S"washington's" +p3597 +tp3598 +a(g3595 +g3597 +S'ruddy' +p3599 +tp3600 +a(g3597 +g3599 +S'complexion' +p3601 +tp3602 +a(g3599 +g3601 +S'and' +p3603 +tp3604 +a(g3601 +g3603 +S'surrounds' +p3605 +tp3606 +a(g3603 +g3605 +S'his' +p3607 +tp3608 +a(g3605 +g3607 +S'head' +p3609 +tp3610 +a(g3607 +g3609 +S'like' +p3611 +tp3612 +a(g3609 +g3611 +S'a' +p3613 +tp3614 +a(g3611 +g3613 +S'superhuman' +p3615 +tp3616 +a(g3613 +g3615 +S'aureole.' +p3617 +tp3618 +a(g3615 +g3617 +S'lady' +p3619 +tp3620 +a(g3617 +g3619 +S'caroline' +p3621 +tp3622 +a(g3619 +g3621 +S'howard,' +p3623 +tp3624 +a(g3621 +g3623 +S'daughter' +p3625 +tp3626 +a(g3623 +g3625 +S'of' +p3627 +tp3628 +a(g3625 +g3627 +S'frederick,' +p3629 +tp3630 +a(g3627 +g3629 +S'the' +p3631 +tp3632 +a(g3629 +g3631 +S'fifth' +p3633 +tp3634 +a(g3631 +g3633 +S'earl' +p3635 +tp3636 +a(g3633 +g3635 +S'of' +p3637 +tp3638 +a(g3635 +g3637 +S'carlisle,' +p3639 +tp3640 +a(g3637 +g3639 +S'and' +p3641 +tp3642 +a(g3639 +g3641 +S'margaret' +p3643 +tp3644 +a(g3641 +g3643 +S'caroline' +p3645 +tp3646 +a(g3643 +g3645 +S'howard,' +p3647 +tp3648 +a(g3645 +g3647 +S'and' +p3649 +tp3650 +a(g3647 +g3649 +S'niece' +p3651 +tp3652 +a(g3649 +g3651 +S'of' +p3653 +tp3654 +a(g3651 +g3653 +S'lady' +p3655 +tp3656 +a(g3653 +g3655 +S'delmé,' +p3657 +tp3658 +a(g3655 +g3657 +S'was' +p3659 +tp3660 +a(g3657 +g3659 +S'portrayed' +p3661 +tp3662 +a(g3659 +g3661 +S'by' +p3663 +tp3664 +a(g3661 +g3663 +S'reynolds' +p3665 +tp3666 +a(g3663 +g3665 +S'at' +p3667 +tp3668 +a(g3665 +g3667 +S'the' +p3669 +tp3670 +a(g3667 +g3669 +S'age' +p3671 +tp3672 +a(g3669 +g3671 +S'of' +p3673 +tp3674 +a(g3671 +g3673 +S'seven.' +p3675 +tp3676 +a(g3673 +g3675 +S'reynolds' +p3677 +tp3678 +a(g3675 +g3677 +S'deliberately' +p3679 +tp3680 +a(g3677 +g3679 +S'imposed' +p3681 +tp3682 +a(g3679 +g3681 +S'on' +p3683 +tp3684 +a(g3681 +g3683 +S'his' +p3685 +tp3686 +a(g3683 +g3685 +S'compositions' +p3687 +tp3688 +a(g3685 +g3687 +S'certain' +p3689 +tp3690 +a(g3687 +g3689 +S'formal' +p3691 +tp3692 +a(g3689 +g3691 +S'artistic' +p3693 +tp3694 +a(g3691 +g3693 +S'qualities' +p3695 +tp3696 +a(g3693 +g3695 +S'that' +p3697 +tp3698 +a(g3695 +g3697 +S'would' +p3699 +tp3700 +a(g3697 +g3699 +S'give' +p3701 +tp3702 +a(g3699 +g3701 +S'them' +p3703 +tp3704 +a(g3701 +g3703 +S'the' +p3705 +tp3706 +a(g3703 +g3705 +S'solidity' +p3707 +tp3708 +a(g3705 +g3707 +S'and' +p3709 +tp3710 +a(g3707 +g3709 +S'nobility' +p3711 +tp3712 +a(g3709 +g3711 +S'of' +p3713 +tp3714 +a(g3711 +g3713 +S'greek,' +p3715 +tp3716 +a(g3713 +g3715 +S'roman,' +p3717 +tp3718 +a(g3715 +g3717 +S'and' +p3719 +tp3720 +a(g3717 +g3719 +S'renaissance' +p3721 +tp3722 +a(g3719 +g3721 +S'art.' +p3723 +tp3724 +a(g3721 +g3723 +S'he' +p3725 +tp3726 +a(g3723 +g3725 +S'also' +p3727 +tp3728 +a(g3725 +g3727 +S'liked' +p3729 +tp3730 +a(g3727 +g3729 +S'to' +p3731 +tp3732 +a(g3729 +g3731 +S'suggest' +p3733 +tp3734 +a(g3731 +g3733 +S'associations' +p3735 +tp3736 +a(g3733 +g3735 +S'in' +p3737 +tp3738 +a(g3735 +g3737 +S'his' +p3739 +tp3740 +a(g3737 +g3739 +S'portraits' +p3741 +tp3742 +a(g3739 +g3741 +S'that' +p3743 +tp3744 +a(g3741 +g3743 +S'elevate' +p3745 +tp3746 +a(g3743 +g3745 +S'them' +p3747 +tp3748 +a(g3745 +g3747 +S'to' +p3749 +tp3750 +a(g3747 +g3749 +S'some' +p3751 +tp3752 +a(g3749 +g3751 +S'level' +p3753 +tp3754 +a(g3751 +g3753 +S'beyond' +p3755 +tp3756 +a(g3753 +g3755 +S'the' +p3757 +tp3758 +a(g3755 +g3757 +S'merely' +p3759 +tp3760 +a(g3757 +g3759 +S'descriptive.' +p3761 +tp3762 +a(g3759 +g3761 +S'roses' +p3763 +tp3764 +a(g3761 +g3763 +S'are' +p3765 +tp3766 +a(g3763 +g3765 +S'symbolically' +p3767 +tp3768 +a(g3765 +g3767 +S'related' +p3769 +tp3770 +a(g3767 +g3769 +S'to' +p3771 +tp3772 +a(g3769 +g3771 +S'venus' +p3773 +tp3774 +a(g3771 +g3773 +S'and' +p3775 +tp3776 +a(g3773 +g3775 +S'the' +p3777 +tp3778 +a(g3775 +g3777 +S'three' +p3779 +tp3780 +a(g3777 +g3779 +S'graces,' +p3781 +tp3782 +a(g3779 +g3781 +S'and' +p3783 +tp3784 +a(g3781 +g3783 +S'reynolds' +p3785 +tp3786 +a(g3783 +g3785 +S'may' +p3787 +tp3788 +a(g3785 +g3787 +S'well' +p3789 +tp3790 +a(g3787 +g3789 +S'have' +p3791 +tp3792 +a(g3789 +g3791 +S'intended' +p3793 +tp3794 +a(g3791 +g3793 +S'to' +p3795 +tp3796 +a(g3793 +g3795 +S'allude' +p3797 +tp3798 +a(g3795 +g3797 +S'to' +p3799 +tp3800 +a(g3797 +g3799 +S'their' +p3801 +tp3802 +a(g3799 +g3801 +S'attributes,' +p3803 +tp3804 +a(g3801 +g3803 +S'chastity,' +p3805 +tp3806 +a(g3803 +g3805 +S'beauty,' +p3807 +tp3808 +a(g3805 +g3807 +S'and' +p3809 +tp3810 +a(g3807 +g3809 +S'love,' +p3811 +tp3812 +a(g3809 +g3811 +S'as' +p3813 +tp3814 +a(g3811 +g3813 +S'ideals' +p3815 +tp3816 +a(g3813 +g3815 +S'to' +p3817 +tp3818 +a(g3815 +g3817 +S'which' +p3819 +tp3820 +a(g3817 +g3819 +S'lady' +p3821 +tp3822 +a(g3819 +g3821 +S'caroline' +p3823 +tp3824 +a(g3821 +g3823 +S'should' +p3825 +tp3826 +a(g3823 +g3825 +S'aspire.' +p3827 +tp3828 +a(g3825 +g3827 +S'lady' +p3829 +tp3830 +a(g3827 +g3829 +S"caroline's" +p3831 +tp3832 +a(g3829 +g3831 +S'father' +p3833 +tp3834 +a(g3831 +g3833 +S'affectionately' +p3835 +tp3836 +a(g3833 +g3835 +S'described' +p3837 +tp3838 +a(g3835 +g3837 +S'his' +p3839 +tp3840 +a(g3837 +g3839 +S'daughter' +p3841 +tp3842 +a(g3839 +g3841 +S'as' +p3843 +tp3844 +a(g3841 +g3843 +S'a' +p3845 +tp3846 +a(g3843 +g3845 +S'determined,' +p3847 +tp3848 +a(g3845 +g3847 +S'strong-minded' +p3849 +tp3850 +a(g3847 +g3849 +S'child' +p3851 +tp3852 +a(g3849 +g3851 +S'whose' +p3853 +tp3854 +a(g3851 +g3853 +S'need' +p3855 +tp3856 +a(g3853 +g3855 +S'for' +p3857 +tp3858 +a(g3855 +g3857 +S'discipline' +p3859 +tp3860 +a(g3857 +g3859 +S'he' +p3861 +tp3862 +a(g3859 +g3861 +S'met' +p3863 +tp3864 +a(g3861 +g3863 +S'fairly' +p3865 +tp3866 +a(g3863 +g3865 +S'but' +p3867 +tp3868 +a(g3865 +g3867 +S'reluctantly.' +p3869 +tp3870 +a(g3867 +g3869 +S'he' +p3871 +tp3872 +a(g3869 +g3871 +S'wrote' +p3873 +tp3874 +a(g3871 +g3873 +S'that' +p3875 +tp3876 +a(g3873 +g3875 +S'she' +p3877 +tp3878 +a(g3875 +g3877 +S'was' +p3879 +tp3880 +a(g3877 +g3879 +S'"always' +p3881 +tp3882 +a(g3879 +g3881 +S'a' +p3883 +tp3884 +a(g3881 +g3883 +S'great' +p3885 +tp3886 +a(g3883 +g3885 +S'favorite,"' +p3887 +tp3888 +a(g3885 +g3887 +S'suggesting' +p3889 +tp3890 +a(g3887 +g3889 +S'that' +p3891 +tp3892 +a(g3889 +g3891 +S'her' +p3893 +tp3894 +a(g3891 +g3893 +S'spirited' +p3895 +tp3896 +a(g3893 +g3895 +S'personality' +p3897 +tp3898 +a(g3895 +g3897 +S'made' +p3899 +tp3900 +a(g3897 +g3899 +S'her' +p3901 +tp3902 +a(g3899 +g3901 +S'faults' +p3903 +tp3904 +a(g3901 +g3903 +S'tolerable.' +p3905 +tp3906 +a(g3903 +g3905 +S'reynolds' +p3907 +tp3908 +a(g3905 +g3907 +S'captured' +p3909 +tp3910 +a(g3907 +g3909 +S'some' +p3911 +tp3912 +a(g3909 +g3911 +S'of' +p3913 +tp3914 +a(g3911 +g3913 +S'lady' +p3915 +tp3916 +a(g3913 +g3915 +S"caroline's" +p3917 +tp3918 +a(g3915 +g3917 +S'complexity' +p3919 +tp3920 +a(g3917 +g3919 +S'in' +p3921 +tp3922 +a(g3919 +g3921 +S'the' +p3923 +tp3924 +a(g3921 +g3923 +S'serious,' +p3925 +tp3926 +a(g3923 +g3925 +S'intent' +p3927 +tp3928 +a(g3925 +g3927 +S'expression' +p3929 +tp3930 +a(g3927 +g3929 +S'of' +p3931 +tp3932 +a(g3929 +g3931 +S'her' +p3933 +tp3934 +a(g3931 +g3933 +S'attractive' +p3935 +tp3936 +a(g3933 +g3935 +S'face,' +p3937 +tp3938 +a(g3935 +g3937 +S'her' +p3939 +tp3940 +a(g3937 +g3939 +S'averted' +p3941 +tp3942 +a(g3939 +g3941 +S'gaze,' +p3943 +tp3944 +a(g3941 +g3943 +S'and' +p3945 +tp3946 +a(g3943 +g3945 +S'the' +p3947 +tp3948 +a(g3945 +g3947 +S'tension' +p3949 +tp3950 +a(g3947 +g3949 +S'implied' +p3951 +tp3952 +a(g3949 +g3951 +S'in' +p3953 +tp3954 +a(g3951 +g3953 +S'her' +p3955 +tp3956 +a(g3953 +g3955 +S'closed' +p3957 +tp3958 +a(g3955 +g3957 +S'left' +p3959 +tp3960 +a(g3957 +g3959 +S'hand.' +p3961 +tp3962 +a(g3959 +g3961 +S'giovanni' +p3963 +tp3964 +a(g3961 +g3963 +S'bellini' +p3965 +tp3966 +a(g3963 +g3965 +S'and' +p3967 +tp3968 +a(g3965 +g3967 +S'titian\xe2\x80\x99s' +p3969 +tp3970 +a(g3967 +g3969 +S'the' +p3971 +tp3972 +a(g3969 +g3971 +S'gainsborough' +p3973 +tp3974 +a(g3971 +g3973 +S'increasingly' +p3975 +tp3976 +a(g3973 +g3975 +S'strove' +p3977 +tp3978 +a(g3975 +g3977 +S'to' +p3979 +tp3980 +a(g3977 +g3979 +S'depict' +p3981 +tp3982 +a(g3979 +g3981 +S'idyllic' +p3983 +tp3984 +a(g3981 +g3983 +S'scenery' +p3985 +tp3986 +a(g3983 +g3985 +S'and' +p3987 +tp3988 +a(g3985 +g3987 +S'extraordinary' +p3989 +tp3990 +a(g3987 +g3989 +S'colors.' +p3991 +tp3992 +a(g3989 +g3991 +S'this' +p3993 +tp3994 +a(g3991 +g3993 +S'picturesque' +p3995 +tp3996 +a(g3993 +g3995 +S'vista' +p3997 +tp3998 +a(g3995 +g3997 +S'of' +p3999 +tp4000 +a(g3997 +g3999 +S'butter-yellow' +p4001 +tp4002 +a(g3999 +g4001 +S'clouds' +p4003 +tp4004 +a(g4001 +g4003 +S'floating' +p4005 +tp4006 +a(g4003 +g4005 +S'in' +p4007 +tp4008 +a(g4005 +g4007 +S'a' +p4009 +tp4010 +a(g4007 +g4009 +S'mauve' +p4011 +tp4012 +a(g4009 +g4011 +S'sky' +p4013 +tp4014 +a(g4011 +g4013 +S'is' +p4015 +tp4016 +a(g4013 +g4015 +S'far' +p4017 +tp4018 +a(g4015 +g4017 +S'too' +p4019 +tp4020 +a(g4017 +g4019 +S'perfect' +p4021 +tp4022 +a(g4019 +g4021 +S'to' +p4023 +tp4024 +a(g4021 +g4023 +S'exist' +p4025 +tp4026 +a(g4023 +g4025 +S'in' +p4027 +tp4028 +a(g4025 +g4027 +S'the' +p4029 +tp4030 +a(g4027 +g4029 +S'real' +p4031 +tp4032 +a(g4029 +g4031 +S'world.' +p4033 +tp4034 +a(g4031 +g4033 +S'gainsborough,' +p4035 +tp4036 +a(g4033 +g4035 +S'however,' +p4037 +tp4038 +a(g4035 +g4037 +S'required' +p4039 +tp4040 +a(g4037 +g4039 +S'a' +p4041 +tp4042 +a(g4039 +g4041 +S'tangible' +p4043 +tp4044 +a(g4041 +g4043 +S'subject' +p4045 +tp4046 +a(g4043 +g4045 +S'so' +p4047 +tp4048 +a(g4045 +g4047 +S'that' +p4049 +tp4050 +a(g4047 +g4049 +S'he' +p4051 +tp4052 +a(g4049 +g4051 +S'could' +p4053 +tp4054 +a(g4051 +g4053 +S'study' +p4055 +tp4056 +a(g4053 +g4055 +S'and' +p4057 +tp4058 +a(g4055 +g4057 +S'capture' +p4059 +tp4060 +a(g4057 +g4059 +S'the' +p4061 +tp4062 +a(g4059 +g4061 +S'shimmering' +p4063 +tp4064 +a(g4061 +g4063 +S'effects' +p4065 +tp4066 +a(g4063 +g4065 +S'of' +p4067 +tp4068 +a(g4065 +g4067 +S'light' +p4069 +tp4070 +a(g4067 +g4069 +S'upon' +p4071 +tp4072 +a(g4069 +g4071 +S'surfaces.' +p4073 +tp4074 +a(g4071 +g4073 +S'writing' +p4075 +tp4076 +a(g4073 +g4075 +S'about' +p4077 +tp4078 +a(g4075 +g4077 +S'some' +p4079 +tp4080 +a(g4077 +g4079 +S'of' +p4081 +tp4082 +a(g4079 +g4081 +S"gainsborough's" +p4083 +tp4084 +a(g4081 +g4083 +S'landscapes,' +p4085 +tp4086 +a(g4083 +g4085 +S'his' +p4087 +tp4088 +a(g4085 +g4087 +S'rival' +p4089 +tp4090 +a(g4087 +g4089 +S'sir' +p4091 +tp4092 +a(g4089 +g4091 +S'joshua' +p4093 +tp4094 +a(g4091 +g4093 +S'reynolds' +p4095 +tp4096 +a(g4093 +g4095 +S'revealed,' +p4097 +tp4098 +a(g4095 +g4097 +S'"he' +p4099 +tp4100 +a(g4097 +g4099 +S'even' +p4101 +tp4102 +a(g4099 +g4101 +S'framed' +p4103 +tp4104 +a(g4101 +g4103 +S'a' +p4105 +tp4106 +a(g4103 +g4105 +S'kind' +p4107 +tp4108 +a(g4105 +g4107 +S'of' +p4109 +tp4110 +a(g4107 +g4109 +S'model' +p4111 +tp4112 +a(g4109 +g4111 +S'of' +p4113 +tp4114 +a(g4111 +g4113 +S'landskips,' +p4115 +tp4116 +a(g4113 +g4115 +S'on' +p4117 +tp4118 +a(g4115 +g4117 +S'his' +p4119 +tp4120 +a(g4117 +g4119 +S'table;' +p4121 +tp4122 +a(g4119 +g4121 +S'composed' +p4123 +tp4124 +a(g4121 +g4123 +S'of' +p4125 +tp4126 +a(g4123 +g4125 +S'broken' +p4127 +tp4128 +a(g4125 +g4127 +S'stones,' +p4129 +tp4130 +a(g4127 +g4129 +S'dried' +p4131 +tp4132 +a(g4129 +g4131 +S'herbs,' +p4133 +tp4134 +a(g4131 +g4133 +S'and' +p4135 +tp4136 +a(g4133 +g4135 +S'pieces' +p4137 +tp4138 +a(g4135 +g4137 +S'of' +p4139 +tp4140 +a(g4137 +g4139 +S'looking' +p4141 +tp4142 +a(g4139 +g4141 +S'glass,' +p4143 +tp4144 +a(g4141 +g4143 +S'which' +p4145 +tp4146 +a(g4143 +g4145 +S'he' +p4147 +tp4148 +a(g4145 +g4147 +S'magnified' +p4149 +tp4150 +a(g4147 +g4149 +S'and' +p4151 +tp4152 +a(g4149 +g4151 +S'improved' +p4153 +tp4154 +a(g4151 +g4153 +S'into' +p4155 +tp4156 +a(g4153 +g4155 +S'rocks,' +p4157 +tp4158 +a(g4155 +g4157 +S'trees,' +p4159 +tp4160 +a(g4157 +g4159 +S'and' +p4161 +tp4162 +a(g4159 +g4161 +S'water."' +p4163 +tp4164 +a(g4161 +g4163 +S'here,' +p4165 +tp4166 +a(g4163 +g4165 +S'shiny' +p4167 +tp4168 +a(g4165 +g4167 +S'hard' +p4169 +tp4170 +a(g4167 +g4169 +S'coal' +p4171 +tp4172 +a(g4169 +g4171 +S'may' +p4173 +tp4174 +a(g4171 +g4173 +S'have' +p4175 +tp4176 +a(g4173 +g4175 +S'served' +p4177 +tp4178 +a(g4175 +g4177 +S'for' +p4179 +tp4180 +a(g4177 +g4179 +S'the' +p4181 +tp4182 +a(g4179 +g4181 +S'wet' +p4183 +tp4184 +a(g4181 +g4183 +S'banks' +p4185 +tp4186 +a(g4183 +g4185 +S'of' +p4187 +tp4188 +a(g4185 +g4187 +S'the' +p4189 +tp4190 +a(g4187 +g4189 +S'brook,' +p4191 +tp4192 +a(g4189 +g4191 +S'a' +p4193 +tp4194 +a(g4191 +g4193 +S'crushed' +p4195 +tp4196 +a(g4193 +g4195 +S'mirror' +p4197 +tp4198 +a(g4195 +g4197 +S'for' +p4199 +tp4200 +a(g4197 +g4199 +S'the' +p4201 +tp4202 +a(g4199 +g4201 +S'glistening' +p4203 +tp4204 +a(g4201 +g4203 +S'ripples,' +p4205 +tp4206 +a(g4203 +g4205 +S'and' +p4207 +tp4208 +a(g4205 +g4207 +S'broccoli' +p4209 +tp4210 +a(g4207 +g4209 +S'and' +p4211 +tp4212 +a(g4209 +g4211 +S'brussels' +p4213 +tp4214 +a(g4211 +g4213 +S'sprouts' +p4215 +tp4216 +a(g4213 +g4215 +S'for' +p4217 +tp4218 +a(g4215 +g4217 +S'the' +p4219 +tp4220 +a(g4217 +g4219 +S'forest.' +p4221 +tp4222 +a(g4219 +g4221 +S'thus,' +p4223 +tp4224 +a(g4221 +g4223 +S'from' +p4225 +tp4226 +a(g4223 +g4225 +S'a' +p4227 +tp4228 +a(g4225 +g4227 +S'scale' +p4229 +tp4230 +a(g4227 +g4229 +S'model,' +p4231 +tp4232 +a(g4229 +g4231 +S'gainsborough' +p4233 +tp4234 +a(g4231 +g4233 +S'did' +p4235 +tp4236 +a(g4233 +g4235 +S'indeed' +p4237 +tp4238 +a(g4235 +g4237 +S'"magnify' +p4239 +tp4240 +a(g4237 +g4239 +S'and' +p4241 +tp4242 +a(g4239 +g4241 +S'improve"' +p4243 +tp4244 +a(g4241 +g4243 +S'upon' +p4245 +tp4246 +a(g4243 +g4245 +S'nature.' +p4247 +tp4248 +a(g4245 +g4247 +S'liked' +p4249 +tp4250 +a(g4247 +g4249 +S'and' +p4251 +tp4252 +a(g4249 +g4251 +S'respected' +p4253 +tp4254 +a(g4251 +g4253 +S'by' +p4255 +tp4256 +a(g4253 +g4255 +S'his' +p4257 +tp4258 +a(g4255 +g4257 +S'colleagues,' +p4259 +tp4260 +a(g4257 +g4259 +S'gainsborough' +p4261 +tp4262 +a(g4259 +g4261 +S'developed' +p4263 +tp4264 +a(g4261 +g4263 +S'a' +p4265 +tp4266 +a(g4263 +g4265 +S'painting' +p4267 +tp4268 +a(g4265 +g4267 +S'technique' +p4269 +tp4270 +a(g4267 +g4269 +S'so' +p4271 +tp4272 +a(g4269 +g4271 +S'personal' +p4273 +tp4274 +a(g4271 +g4273 +S'that' +p4275 +tp4276 +a(g4273 +g4275 +S'he' +p4277 +tp4278 +a(g4275 +g4277 +S'had' +p4279 +tp4280 +a(g4277 +g4279 +S'virtually' +p4281 +tp4282 +a(g4279 +g4281 +S'no' +p4283 +tp4284 +a(g4281 +g4283 +S'followers.' +p4285 +tp4286 +a(g4283 +g4285 +S'he,' +p4287 +tp4288 +a(g4285 +g4287 +S'in' +p4289 +tp4290 +a(g4287 +g4289 +S'fact,' +p4291 +tp4292 +a(g4289 +g4291 +S'embodies' +p4293 +tp4294 +a(g4291 +g4293 +S'the' +p4295 +tp4296 +a(g4293 +g4295 +S'notion' +p4297 +tp4298 +a(g4295 +g4297 +S'of' +p4299 +tp4300 +a(g4297 +g4299 +S'eccentric' +p4301 +tp4302 +a(g4299 +g4301 +S'genius.' +p4303 +tp4304 +a(g4301 +g4303 +S'in' +p4305 +tp4306 +a(g4303 +g4305 +S'an' +p4307 +tp4308 +a(g4305 +g4307 +S'age' +p4309 +tp4310 +a(g4307 +g4309 +S'when' +p4311 +tp4312 +a(g4309 +g4311 +S'a' +p4313 +tp4314 +a(g4311 +g4313 +S'grand' +p4315 +tp4316 +a(g4313 +g4315 +S'tour' +p4317 +tp4318 +a(g4315 +g4317 +S'was' +p4319 +tp4320 +a(g4317 +g4319 +S'considered' +p4321 +tp4322 +a(g4319 +g4321 +S'a' +p4323 +tp4324 +a(g4321 +g4323 +S'necessary' +p4325 +tp4326 +a(g4323 +g4325 +S'part' +p4327 +tp4328 +a(g4325 +g4327 +S'of' +p4329 +tp4330 +a(g4327 +g4329 +S"one's" +p4331 +tp4332 +a(g4329 +g4331 +S'education,' +p4333 +tp4334 +a(g4331 +g4333 +S'he' +p4335 +tp4336 +a(g4333 +g4335 +S'never' +p4337 +tp4338 +a(g4335 +g4337 +S'went' +p4339 +tp4340 +a(g4337 +g4339 +S'abroad.' +p4341 +tp4342 +a(g4339 +g4341 +S'though' +p4343 +tp4344 +a(g4341 +g4343 +S'a' +p4345 +tp4346 +a(g4343 +g4345 +S'founding' +p4347 +tp4348 +a(g4345 +g4347 +S'member' +p4349 +tp4350 +a(g4347 +g4349 +S'of' +p4351 +tp4352 +a(g4349 +g4351 +S'the' +p4353 +tp4354 +a(g4351 +g4353 +S'royal' +p4355 +tp4356 +a(g4353 +g4355 +S'academy' +p4357 +tp4358 +a(g4355 +g4357 +S'in' +p4359 +tp4360 +a(g4357 +g4359 +S'1769,' +p4361 +tp4362 +a(g4359 +g4361 +S'he' +p4363 +tp4364 +a(g4361 +g4363 +S'ignored' +p4365 +tp4366 +a(g4363 +g4365 +S'its' +p4367 +tp4368 +a(g4365 +g4367 +S'business' +p4369 +tp4370 +a(g4367 +g4369 +S'meetings' +p4371 +tp4372 +a(g4369 +g4371 +S'and,' +p4373 +tp4374 +a(g4371 +g4373 +S'following' +p4375 +tp4376 +a(g4373 +g4375 +S'a' +p4377 +tp4378 +a(g4375 +g4377 +S'quarrel' +p4379 +tp4380 +a(g4377 +g4379 +S'over' +p4381 +tp4382 +a(g4379 +g4381 +S'the' +p4383 +tp4384 +a(g4381 +g4383 +S'hanging' +p4385 +tp4386 +a(g4383 +g4385 +S'of' +p4387 +tp4388 +a(g4385 +g4387 +S'his' +p4389 +tp4390 +a(g4387 +g4389 +S'pictures,' +p4391 +tp4392 +a(g4389 +g4391 +S'refused' +p4393 +tp4394 +a(g4391 +g4393 +S'to' +p4395 +tp4396 +a(g4393 +g4395 +S'exhibit' +p4397 +tp4398 +a(g4395 +g4397 +S'there' +p4399 +tp4400 +a(g4397 +g4399 +S'after' +p4401 +tp4402 +a(g4399 +g4401 +S'1783.' +p4403 +tp4404 +a(g4401 +g4403 +S'for' +p4405 +tp4406 +a(g4403 +g4405 +S'centuries' +p4407 +tp4408 +a(g4405 +g4407 +S'artists' +p4409 +tp4410 +a(g4407 +g4409 +S'referred' +p4411 +tp4412 +a(g4409 +g4411 +S'to' +p4413 +tp4414 +a(g4411 +g4413 +S'the' +p4415 +tp4416 +a(g4413 +g4415 +S'gospels' +p4417 +tp4418 +a(g4415 +g4417 +S'of' +p4419 +tp4420 +a(g4417 +g4419 +S'matthew,' +p4421 +tp4422 +a(g4419 +g4421 +S'mark,' +p4423 +tp4424 +a(g4421 +g4423 +S'and' +p4425 +tp4426 +a(g4423 +g4425 +S'luke' +p4427 +tp4428 +a(g4425 +g4427 +S'for' +p4429 +tp4430 +a(g4427 +g4429 +S'their' +p4431 +tp4432 +a(g4429 +g4431 +S'depictions' +p4433 +tp4434 +a(g4431 +g4433 +S'of' +p4435 +tp4436 +a(g4433 +g4435 +S"jesus'" +p4437 +tp4438 +a(g4435 +g4437 +S'baptism' +p4439 +tp4440 +a(g4437 +g4439 +S'in' +p4441 +tp4442 +a(g4439 +g4441 +S'the' +p4443 +tp4444 +a(g4441 +g4443 +S'jordan' +p4445 +tp4446 +a(g4443 +g4445 +S'river' +p4447 +tp4448 +a(g4445 +g4447 +S'by' +p4449 +tp4450 +a(g4447 +g4449 +S'his' +p4451 +tp4452 +a(g4449 +g4451 +S'precursor' +p4453 +tp4454 +a(g4451 +g4453 +S'john' +p4455 +tp4456 +a(g4453 +g4455 +S'the' +p4457 +tp4458 +a(g4455 +g4457 +S'baptist.' +p4459 +tp4460 +a(g4457 +g4459 +S'with' +p4461 +tp4462 +a(g4459 +g4461 +S'his' +p4463 +tp4464 +a(g4461 +g4463 +S'head' +p4465 +tp4466 +a(g4463 +g4465 +S'lowered' +p4467 +tp4468 +a(g4465 +g4467 +S'and' +p4469 +tp4470 +a(g4467 +g4469 +S'his' +p4471 +tp4472 +a(g4469 +g4471 +S'hands' +p4473 +tp4474 +a(g4471 +g4473 +S'folded' +p4475 +tp4476 +a(g4473 +g4475 +S'in' +p4477 +tp4478 +a(g4475 +g4477 +S'prayer,' +p4479 +tp4480 +a(g4477 +g4479 +S'jesus' +p4481 +tp4482 +a(g4479 +g4481 +S'stands' +p4483 +tp4484 +a(g4481 +g4483 +S'in' +p4485 +tp4486 +a(g4483 +g4485 +S'the' +p4487 +tp4488 +a(g4485 +g4487 +S'river' +p4489 +tp4490 +a(g4487 +g4489 +S'as' +p4491 +tp4492 +a(g4489 +g4491 +S'john' +p4493 +tp4494 +a(g4491 +g4493 +S'pours' +p4495 +tp4496 +a(g4493 +g4495 +S'water' +p4497 +tp4498 +a(g4495 +g4497 +S'over' +p4499 +tp4500 +a(g4497 +g4499 +S'his' +p4501 +tp4502 +a(g4499 +g4501 +S'head' +p4503 +tp4504 +a(g4501 +g4503 +S'from' +p4505 +tp4506 +a(g4503 +g4505 +S'a' +p4507 +tp4508 +a(g4505 +g4507 +S'shallow' +p4509 +tp4510 +a(g4507 +g4509 +S'dish.' +p4511 +tp4512 +a(g4509 +g4511 +S'to' +p4513 +tp4514 +a(g4511 +g4513 +S'the' +p4515 +tp4516 +a(g4513 +g4515 +S'left' +p4517 +tp4518 +a(g4515 +g4517 +S'an' +p4519 +tp4520 +a(g4517 +g4519 +S'angel' +p4521 +tp4522 +a(g4519 +g4521 +S'waits' +p4523 +tp4524 +a(g4521 +g4523 +S'to' +p4525 +tp4526 +a(g4523 +g4525 +S'clothe' +p4527 +tp4528 +a(g4525 +g4527 +S'jesus' +p4529 +tp4530 +a(g4527 +g4529 +S'at' +p4531 +tp4532 +a(g4529 +g4531 +S'the' +p4533 +tp4534 +a(g4531 +g4533 +S'conclusion' +p4535 +tp4536 +a(g4533 +g4535 +S'of' +p4537 +tp4538 +a(g4535 +g4537 +S'the' +p4539 +tp4540 +a(g4537 +g4539 +S'purification' +p4541 +tp4542 +a(g4539 +g4541 +S'ritual.' +p4543 +tp4544 +a(g4541 +g4543 +S'in' +p4545 +tp4546 +a(g4543 +g4545 +S'the' +p4547 +tp4548 +a(g4545 +g4547 +S'upper' +p4549 +tp4550 +a(g4547 +g4549 +S'left,' +p4551 +tp4552 +a(g4549 +g4551 +S'a' +p4553 +tp4554 +a(g4551 +g4553 +S'flood' +p4555 +tp4556 +a(g4553 +g4555 +S'of' +p4557 +tp4558 +a(g4555 +g4557 +S'heavenly' +p4559 +tp4560 +a(g4557 +g4559 +S'light' +p4561 +tp4562 +a(g4559 +g4561 +S'suggests' +p4563 +tp4564 +a(g4561 +g4563 +S'the' +p4565 +tp4566 +a(g4563 +g4565 +S'voice' +p4567 +tp4568 +a(g4565 +g4567 +S'of' +p4569 +tp4570 +a(g4567 +g4569 +S'god,' +p4571 +tp4572 +a(g4569 +g4571 +S'who' +p4573 +tp4574 +a(g4571 +g4573 +S'declared,' +p4575 +tp4576 +a(g4573 +g4575 +S'"this' +p4577 +tp4578 +a(g4575 +g4577 +S'is' +p4579 +tp4580 +a(g4577 +g4579 +S'my' +p4581 +tp4582 +a(g4579 +g4581 +S'beloved' +p4583 +tp4584 +a(g4581 +g4583 +S'son,' +p4585 +tp4586 +a(g4583 +g4585 +S'in' +p4587 +tp4588 +a(g4585 +g4587 +S'whom' +p4589 +tp4590 +a(g4587 +g4589 +S'i' +p4591 +tp4592 +a(g4589 +g4591 +S'am' +p4593 +tp4594 +a(g4591 +g4593 +S'well' +p4595 +tp4596 +a(g4593 +g4595 +S'pleased."' +p4597 +tp4598 +a(g4595 +g4597 +S'paris' +p4599 +tp4600 +a(g4597 +g4599 +S'bordone' +p4601 +tp4602 +a(g4599 +g4601 +S'was' +p4603 +tp4604 +a(g4601 +g4603 +S'born' +p4605 +tp4606 +a(g4603 +g4605 +S'in' +p4607 +tp4608 +a(g4605 +g4607 +S'treviso,' +p4609 +tp4610 +a(g4607 +g4609 +S'but' +p4611 +tp4612 +a(g4609 +g4611 +S'he' +p4613 +tp4614 +a(g4611 +g4613 +S'soon' +p4615 +tp4616 +a(g4613 +g4615 +S'moved' +p4617 +tp4618 +a(g4615 +g4617 +S'to' +p4619 +tp4620 +a(g4617 +g4619 +S'venice,' +p4621 +tp4622 +a(g4619 +g4621 +S'where' +p4623 +tp4624 +a(g4621 +g4623 +S'he' +p4625 +tp4626 +a(g4623 +g4625 +S'studied' +p4627 +tp4628 +a(g4625 +g4627 +S'briefly' +p4629 +tp4630 +a(g4627 +g4629 +S'in' +p4631 +tp4632 +a(g4629 +g4631 +S"titian's" +p4633 +tp4634 +a(g4631 +g4633 +S'studio.' +p4635 +tp4636 +a(g4633 +g4635 +S"bordone's" +p4637 +tp4638 +a(g4635 +g4637 +S'pictures,' +p4639 +tp4640 +a(g4637 +g4639 +S'like' +p4641 +tp4642 +a(g4639 +g4641 +S'works' +p4643 +tp4644 +a(g4641 +g4643 +S'by' +p4645 +tp4646 +a(g4643 +g4645 +S'his' +p4647 +tp4648 +a(g4645 +g4647 +S'teacher,' +p4649 +tp4650 +a(g4647 +g4649 +S'are' +p4651 +tp4652 +a(g4649 +g4651 +S'active' +p4653 +tp4654 +a(g4651 +g4653 +S'and' +p4655 +tp4656 +a(g4653 +g4655 +S'energetic.' +p4657 +tp4658 +a(g4655 +g4657 +S'here,' +p4659 +tp4660 +a(g4657 +g4659 +S'the' +p4661 +tp4662 +a(g4659 +g4661 +S"figures'" +p4663 +tp4664 +a(g4661 +g4663 +S'potential' +p4665 +tp4666 +a(g4663 +g4665 +S'for' +p4667 +tp4668 +a(g4665 +g4667 +S'movement' +p4669 +tp4670 +a(g4667 +g4669 +S'is' +p4671 +tp4672 +a(g4669 +g4671 +S'emphasized' +p4673 +tp4674 +a(g4671 +g4673 +S'by' +p4675 +tp4676 +a(g4673 +g4675 +S'their' +p4677 +tp4678 +a(g4675 +g4677 +S'heavy' +p4679 +tp4680 +a(g4677 +g4679 +S'musculature' +p4681 +tp4682 +a(g4679 +g4681 +S'and' +p4683 +tp4684 +a(g4681 +g4683 +S'by' +p4685 +tp4686 +a(g4683 +g4685 +S'the' +p4687 +tp4688 +a(g4685 +g4687 +S'dramatic' +p4689 +tp4690 +a(g4687 +g4689 +S'light' +p4691 +tp4692 +a(g4689 +g4691 +S'that' +p4693 +tp4694 +a(g4691 +g4693 +S'dances' +p4695 +tp4696 +a(g4693 +g4695 +S'over' +p4697 +tp4698 +a(g4695 +g4697 +S'the' +p4699 +tp4700 +a(g4697 +g4699 +S'surfaces' +p4701 +tp4702 +a(g4699 +g4701 +S'of' +p4703 +tp4704 +a(g4701 +g4703 +S'their' +p4705 +tp4706 +a(g4703 +g4705 +S'bodies.' +p4707 +tp4708 +a(g4705 +g4707 +S'in' +p4709 +tp4710 +a(g4707 +g4709 +S'contrast' +p4711 +tp4712 +a(g4709 +g4711 +S'to' +p4713 +tp4714 +a(g4711 +g4713 +S"titian's" +p4715 +tp4716 +a(g4713 +g4715 +S'use' +p4717 +tp4718 +a(g4715 +g4717 +S'of' +p4719 +tp4720 +a(g4717 +g4719 +S'rich' +p4721 +tp4722 +a(g4719 +g4721 +S'and' +p4723 +tp4724 +a(g4721 +g4723 +S'generally' +p4725 +tp4726 +a(g4723 +g4725 +S'warm' +p4727 +tp4728 +a(g4725 +g4727 +S'colors,' +p4729 +tp4730 +a(g4727 +g4729 +S'bordone' +p4731 +tp4732 +a(g4729 +g4731 +S'fills' +p4733 +tp4734 +a(g4731 +g4733 +S'his' +p4735 +tp4736 +a(g4733 +g4735 +S'palette' +p4737 +tp4738 +a(g4735 +g4737 +S'with' +p4739 +tp4740 +a(g4737 +g4739 +S'cooler' +p4741 +tp4742 +a(g4739 +g4741 +S'and' +p4743 +tp4744 +a(g4741 +g4743 +S'more' +p4745 +tp4746 +a(g4743 +g4745 +S'metallic' +p4747 +tp4748 +a(g4745 +g4747 +S'colors,' +p4749 +tp4750 +a(g4747 +g4749 +S'and' +p4751 +tp4752 +a(g4749 +g4751 +S'his' +p4753 +tp4754 +a(g4751 +g4753 +S'tighter' +p4755 +tp4756 +a(g4753 +g4755 +S'handling' +p4757 +tp4758 +a(g4755 +g4757 +S'of' +p4759 +tp4760 +a(g4757 +g4759 +S'the' +p4761 +tp4762 +a(g4759 +g4761 +S'paint' +p4763 +tp4764 +a(g4761 +g4763 +S'results' +p4765 +tp4766 +a(g4763 +g4765 +S'in' +p4767 +tp4768 +a(g4765 +g4767 +S'a' +p4769 +tp4770 +a(g4767 +g4769 +S'more' +p4771 +tp4772 +a(g4769 +g4771 +S'precise' +p4773 +tp4774 +a(g4771 +g4773 +S'description' +p4775 +tp4776 +a(g4773 +g4775 +S'of' +p4777 +tp4778 +a(g4775 +g4777 +S'realistic' +p4779 +tp4780 +a(g4777 +g4779 +S'details.' +p4781 +tp4782 +a(g4779 +g4781 +S'who' +p4783 +tp4784 +a(g4781 +g4783 +S'is' +p4785 +tp4786 +a(g4783 +g4785 +S'this' +p4787 +tp4788 +a(g4785 +g4787 +S'elegant' +p4789 +tp4790 +a(g4787 +g4789 +S'lady?' +p4791 +tp4792 +a(g4789 +g4791 +S'a' +p4793 +tp4794 +a(g4791 +g4793 +S'noblewoman' +p4795 +tp4796 +a(g4793 +g4795 +S'surely,' +p4797 +tp4798 +a(g4795 +g4797 +S'and' +p4799 +tp4800 +a(g4797 +g4799 +S'most' +p4801 +tp4802 +a(g4799 +g4801 +S'likely' +p4803 +tp4804 +a(g4801 +g4803 +S'a' +p4805 +tp4806 +a(g4803 +g4805 +S'member' +p4807 +tp4808 +a(g4805 +g4807 +S'of' +p4809 +tp4810 +a(g4807 +g4809 +S'the' +p4811 +tp4812 +a(g4809 +g4811 +S'court' +p4813 +tp4814 +a(g4811 +g4813 +S'of' +p4815 +tp4816 +a(g4813 +g4815 +S'cosimo' +p4817 +tp4818 +a(g4815 +g4817 +S'i' +p4819 +tp4820 +a(g4817 +g4819 +S"de'" +p4821 +tp4822 +a(g4819 +g4821 +S'medici,' +p4823 +tp4824 +a(g4821 +g4823 +S'duke' +p4825 +tp4826 +a(g4823 +g4825 +S'of' +p4827 +tp4828 +a(g4825 +g4827 +S'florence' +p4829 +tp4830 +a(g4827 +g4829 +S'in' +p4831 +tp4832 +a(g4829 +g4831 +S'the' +p4833 +tp4834 +a(g4831 +g4833 +S'mid-sixteenth' +p4835 +tp4836 +a(g4833 +g4835 +S'century.' +p4837 +tp4838 +a(g4835 +g4837 +S'her' +p4839 +tp4840 +a(g4837 +g4839 +S'ornate' +p4841 +tp4842 +a(g4839 +g4841 +S'and' +p4843 +tp4844 +a(g4841 +g4843 +S'costly' +p4845 +tp4846 +a(g4843 +g4845 +S'attire' +p4847 +tp4848 +a(g4845 +g4847 +S'establish' +p4849 +tp4850 +a(g4847 +g4849 +S'her' +p4851 +tp4852 +a(g4849 +g4851 +S'as' +p4853 +tp4854 +a(g4851 +g4853 +S'an' +p4855 +tp4856 +a(g4853 +g4855 +S'aristocrat.' +p4857 +tp4858 +a(g4855 +g4857 +S'she' +p4859 +tp4860 +a(g4857 +g4859 +S'holds' +p4861 +tp4862 +a(g4859 +g4861 +S'herself' +p4863 +tp4864 +a(g4861 +g4863 +S'rigidly' +p4865 +tp4866 +a(g4863 +g4865 +S'with' +p4867 +tp4868 +a(g4865 +g4867 +S'the' +p4869 +tp4870 +a(g4867 +g4869 +S'controlled' +p4871 +tp4872 +a(g4869 +g4871 +S'demeanor' +p4873 +tp4874 +a(g4871 +g4873 +S'that' +p4875 +tp4876 +a(g4873 +g4875 +S'distinguishes' +p4877 +tp4878 +a(g4875 +g4877 +S'portraits' +p4879 +tp4880 +a(g4877 +g4879 +S'of' +p4881 +tp4882 +a(g4879 +g4881 +S'members' +p4883 +tp4884 +a(g4881 +g4883 +S'of' +p4885 +tp4886 +a(g4883 +g4885 +S"cosimo's" +p4887 +tp4888 +a(g4885 +g4887 +S'court.' +p4889 +tp4890 +a(g4887 +g4889 +S'bronzino' +p4891 +tp4892 +a(g4889 +g4891 +S'was' +p4893 +tp4894 +a(g4891 +g4893 +S'the' +p4895 +tp4896 +a(g4893 +g4895 +S'principal' +p4897 +tp4898 +a(g4895 +g4897 +S'portraitist' +p4899 +tp4900 +a(g4897 +g4899 +S'to' +p4901 +tp4902 +a(g4899 +g4901 +S'the' +p4903 +tp4904 +a(g4901 +g4903 +S'court,' +p4905 +tp4906 +a(g4903 +g4905 +S'and' +p4907 +tp4908 +a(g4905 +g4907 +S'one' +p4909 +tp4910 +a(g4907 +g4909 +S'wonders' +p4911 +tp4912 +a(g4909 +g4911 +S'how' +p4913 +tp4914 +a(g4911 +g4913 +S'much' +p4915 +tp4916 +a(g4913 +g4915 +S'his' +p4917 +tp4918 +a(g4915 +g4917 +S'own' +p4919 +tp4920 +a(g4917 +g4919 +S'coldly' +p4921 +tp4922 +a(g4919 +g4921 +S'idealized,' +p4923 +tp4924 +a(g4921 +g4923 +S'polished' +p4925 +tp4926 +a(g4923 +g4925 +S'style' +p4927 +tp4928 +a(g4925 +g4927 +S'of' +p4929 +tp4930 +a(g4927 +g4929 +S'painting' +p4931 +tp4932 +a(g4929 +g4931 +S'may,' +p4933 +tp4934 +a(g4931 +g4933 +S'itself,' +p4935 +tp4936 +a(g4933 +g4935 +S'have' +p4937 +tp4938 +a(g4935 +g4937 +S'contributed' +p4939 +tp4940 +a(g4937 +g4939 +S'to' +p4941 +tp4942 +a(g4939 +g4941 +S'the' +p4943 +tp4944 +a(g4941 +g4943 +S'taste' +p4945 +tp4946 +a(g4943 +g4945 +S'for' +p4947 +tp4948 +a(g4945 +g4947 +S'the' +p4949 +tp4950 +a(g4947 +g4949 +S'marble-hard' +p4951 +tp4952 +a(g4949 +g4951 +S'perfection' +p4953 +tp4954 +a(g4951 +g4953 +S'and' +p4955 +tp4956 +a(g4953 +g4955 +S'chilly' +p4957 +tp4958 +a(g4955 +g4957 +S'hauteur' +p4959 +tp4960 +a(g4957 +g4959 +S'of' +p4961 +tp4962 +a(g4959 +g4961 +S'his' +p4963 +tp4964 +a(g4961 +g4963 +S'models.' +p4965 +tp4966 +a(g4963 +g4965 +S'tucked' +p4967 +tp4968 +a(g4965 +g4967 +S'in' +p4969 +tp4970 +a(g4967 +g4969 +S'the' +p4971 +tp4972 +a(g4969 +g4971 +S'corner' +p4973 +tp4974 +a(g4971 +g4973 +S'of' +p4975 +tp4976 +a(g4973 +g4975 +S'the' +p4977 +tp4978 +a(g4975 +g4977 +S'panel,' +p4979 +tp4980 +a(g4977 +g4979 +S'the' +p4981 +tp4982 +a(g4979 +g4981 +S'small' +p4983 +tp4984 +a(g4981 +g4983 +S'blond' +p4985 +tp4986 +a(g4983 +g4985 +S'boy' +p4987 +tp4988 +a(g4985 +g4987 +S'was' +p4989 +tp4990 +a(g4987 +g4989 +S'an' +p4991 +tp4992 +a(g4989 +g4991 +S'afterthought,' +p4993 +tp4994 +a(g4991 +g4993 +S'added' +p4995 +tp4996 +a(g4993 +g4995 +S'by' +p4997 +tp4998 +a(g4995 +g4997 +S'bronzino' +p4999 +tp5000 +a(g4997 +g4999 +S'in' +p5001 +tp5002 +a(g4999 +g5001 +S'a' +p5003 +tp5004 +a(g5001 +g5003 +S'second' +p5005 +tp5006 +a(g5003 +g5005 +S'campaign' +p5007 +tp5008 +a(g5005 +g5007 +S'of' +p5009 +tp5010 +a(g5007 +g5009 +S'painting.' +p5011 +tp5012 +a(g5009 +g5011 +S'x-radiography' +p5013 +tp5014 +a(g5011 +g5013 +S'has' +p5015 +tp5016 +a(g5013 +g5015 +S'revealed' +p5017 +tp5018 +a(g5015 +g5017 +S'that' +p5019 +tp5020 +a(g5017 +g5019 +S'the' +p5021 +tp5022 +a(g5019 +g5021 +S'woman' +p5023 +tp5024 +a(g5021 +g5023 +S'had' +p5025 +tp5026 +a(g5023 +g5025 +S'first' +p5027 +tp5028 +a(g5025 +g5027 +S'stood' +p5029 +tp5030 +a(g5027 +g5029 +S'alone' +p5031 +tp5032 +a(g5029 +g5031 +S'with' +p5033 +tp5034 +a(g5031 +g5033 +S'her' +p5035 +tp5036 +a(g5033 +g5035 +S'proper' +p5037 +tp5038 +a(g5035 +g5037 +S'right' +p5039 +tp5040 +a(g5037 +g5039 +S'hand' +p5041 +tp5042 +a(g5039 +g5041 +S'placed' +p5043 +tp5044 +a(g5041 +g5043 +S'against' +p5045 +tp5046 +a(g5043 +g5045 +S'her' +p5047 +tp5048 +a(g5045 +g5047 +S'dress.' +p5049 +tp5050 +a(g5047 +g5049 +S'not' +p5051 +tp5052 +a(g5049 +g5051 +S'only' +p5053 +tp5054 +a(g5051 +g5053 +S'did' +p5055 +tp5056 +a(g5053 +g5055 +S'bronzino' +p5057 +tp5058 +a(g5055 +g5057 +S'insert' +p5059 +tp5060 +a(g5057 +g5059 +S'the' +p5061 +tp5062 +a(g5059 +g5061 +S'ivory-skinned' +p5063 +tp5064 +a(g5061 +g5063 +S'child,' +p5065 +tp5066 +a(g5063 +g5065 +S'but' +p5067 +tp5068 +a(g5065 +g5067 +S'he' +p5069 +tp5070 +a(g5067 +g5069 +S'also' +p5071 +tp5072 +a(g5069 +g5071 +S'brought' +p5073 +tp5074 +a(g5071 +g5073 +S'the' +p5075 +tp5076 +a(g5073 +g5075 +S"woman's" +p5077 +tp5078 +a(g5075 +g5077 +S'apparel' +p5079 +tp5080 +a(g5077 +g5079 +S'up' +p5081 +tp5082 +a(g5079 +g5081 +S'to' +p5083 +tp5084 +a(g5081 +g5083 +S'date:' +p5085 +tp5086 +a(g5083 +g5085 +S'her' +p5087 +tp5088 +a(g5085 +g5087 +S'headdress' +p5089 +tp5090 +a(g5087 +g5089 +S'grew' +p5091 +tp5092 +a(g5089 +g5091 +S'larger' +p5093 +tp5094 +a(g5091 +g5093 +S'and' +p5095 +tp5096 +a(g5093 +g5095 +S'more' +p5097 +tp5098 +a(g5095 +g5097 +S'elaborate;' +p5099 +tp5100 +a(g5097 +g5099 +S'the' +p5101 +tp5102 +a(g5099 +g5101 +S'puffed' +p5103 +tp5104 +a(g5101 +g5103 +S'sleeves' +p5105 +tp5106 +a(g5103 +g5105 +S'of' +p5107 +tp5108 +a(g5105 +g5107 +S'her' +p5109 +tp5110 +a(g5107 +g5109 +S'dress' +p5111 +tp5112 +a(g5109 +g5111 +S'were' +p5113 +tp5114 +a(g5111 +g5113 +S'broadened' +p5115 +tp5116 +a(g5113 +g5115 +S'(a' +p5117 +tp5118 +a(g5115 +g5117 +S'change' +p5119 +tp5120 +a(g5117 +g5119 +S'evident' +p5121 +tp5122 +a(g5119 +g5121 +S'in' +p5123 +tp5124 +a(g5121 +g5123 +S'the' +p5125 +tp5126 +a(g5123 +g5125 +S'darker' +p5127 +tp5128 +a(g5125 +g5127 +S'silhouette' +p5129 +tp5130 +a(g5127 +g5129 +S'of' +p5131 +tp5132 +a(g5129 +g5131 +S'the' +p5133 +tp5134 +a(g5131 +g5133 +S'contours' +p5135 +tp5136 +a(g5133 +g5135 +S'that' +p5137 +tp5138 +a(g5135 +g5137 +S'were' +p5139 +tp5140 +a(g5137 +g5139 +S'painted' +p5141 +tp5142 +a(g5139 +g5141 +S'over' +p5143 +tp5144 +a(g5141 +g5143 +S'the' +p5145 +tp5146 +a(g5143 +g5145 +S'green' +p5147 +tp5148 +a(g5145 +g5147 +S'background);' +p5149 +tp5150 +a(g5147 +g5149 +S'the' +p5151 +tp5152 +a(g5149 +g5151 +S'gloves' +p5153 +tp5154 +a(g5151 +g5153 +S'were' +p5155 +tp5156 +a(g5153 +g5155 +S'added' +p5157 +tp5158 +a(g5155 +g5157 +S'and,' +p5159 +tp5160 +a(g5157 +g5159 +S'probably,' +p5161 +tp5162 +a(g5159 +g5161 +S'the' +p5163 +tp5164 +a(g5161 +g5163 +S'damask' +p5165 +tp5166 +a(g5163 +g5165 +S'pattern' +p5167 +tp5168 +a(g5165 +g5167 +S'on' +p5169 +tp5170 +a(g5167 +g5169 +S'the' +p5171 +tp5172 +a(g5169 +g5171 +S'bodice' +p5173 +tp5174 +a(g5171 +g5173 +S'as' +p5175 +tp5176 +a(g5173 +g5175 +S'well.' +p5177 +tp5178 +a(g5175 +g5177 +S'david' +p5179 +tp5180 +a(g5177 +g5179 +S'with' +p5181 +tp5182 +a(g5179 +g5181 +S'the' +p5183 +tp5184 +a(g5181 +g5183 +S'head' +p5185 +tp5186 +a(g5183 +g5185 +S'of' +p5187 +tp5188 +a(g5185 +g5187 +S'goliath' +p5189 +tp5190 +a(g5187 +g5189 +S'the' +p5191 +tp5192 +a(g5189 +g5191 +S'subject' +p5193 +tp5194 +a(g5191 +g5193 +S'was' +p5195 +tp5196 +a(g5193 +g5195 +S'especially' +p5197 +tp5198 +a(g5195 +g5197 +S'appropriate' +p5199 +tp5200 +a(g5197 +g5199 +S'for' +p5201 +tp5202 +a(g5199 +g5201 +S'a' +p5203 +tp5204 +a(g5201 +g5203 +S'florentine' +p5205 +tp5206 +a(g5203 +g5205 +S'audience' +p5207 +tp5208 +a(g5205 +g5207 +S'of' +p5209 +tp5210 +a(g5207 +g5209 +S'the' +p5211 +tp5212 +a(g5209 +g5211 +S'15th' +p5213 +tp5214 +a(g5211 +g5213 +S'century.' +p5215 +tp5216 +a(g5213 +g5215 +S'as' +p5217 +tp5218 +a(g5215 +g5217 +S'the' +p5219 +tp5220 +a(g5217 +g5219 +S'smallest' +p5221 +tp5222 +a(g5219 +g5221 +S'major' +p5223 +tp5224 +a(g5221 +g5223 +S'political' +p5225 +tp5226 +a(g5223 +g5225 +S'power' +p5227 +tp5228 +a(g5225 +g5227 +S'on' +p5229 +tp5230 +a(g5227 +g5229 +S'the' +p5231 +tp5232 +a(g5229 +g5231 +S'italian' +p5233 +tp5234 +a(g5231 +g5233 +S'peninsula,' +p5235 +tp5236 +a(g5233 +g5235 +S'the' +p5237 +tp5238 +a(g5235 +g5237 +S'city' +p5239 +tp5240 +a(g5237 +g5239 +S'saw' +p5241 +tp5242 +a(g5239 +g5241 +S'itself' +p5243 +tp5244 +a(g5241 +g5243 +S'as' +p5245 +tp5246 +a(g5243 +g5245 +S'a' +p5247 +tp5248 +a(g5245 +g5247 +S'young' +p5249 +tp5250 +a(g5247 +g5249 +S'david' +p5251 +tp5252 +a(g5249 +g5251 +S'contending' +p5253 +tp5254 +a(g5251 +g5253 +S'with' +p5255 +tp5256 +a(g5253 +g5255 +S'such' +p5257 +tp5258 +a(g5255 +g5257 +S'powerful' +p5259 +tp5260 +a(g5257 +g5259 +S'goliaths' +p5261 +tp5262 +a(g5259 +g5261 +S'as' +p5263 +tp5264 +a(g5261 +g5263 +S'the' +p5265 +tp5266 +a(g5263 +g5265 +S'pope,' +p5267 +tp5268 +a(g5265 +g5267 +S'the' +p5269 +tp5270 +a(g5267 +g5269 +S'duke' +p5271 +tp5272 +a(g5269 +g5271 +S'of' +p5273 +tp5274 +a(g5271 +g5273 +S'milan,' +p5275 +tp5276 +a(g5273 +g5275 +S'the' +p5277 +tp5278 +a(g5275 +g5277 +S'king' +p5279 +tp5280 +a(g5277 +g5279 +S'of' +p5281 +tp5282 +a(g5279 +g5281 +S'naples,' +p5283 +tp5284 +a(g5281 +g5283 +S'and' +p5285 +tp5286 +a(g5283 +g5285 +S'the' +p5287 +tp5288 +a(g5285 +g5287 +S'doge' +p5289 +tp5290 +a(g5287 +g5289 +S'of' +p5291 +tp5292 +a(g5289 +g5291 +S'venice.' +p5293 +tp5294 +a(g5291 +g5293 +S'in' +p5295 +tp5296 +a(g5293 +g5295 +S"castagno's" +p5297 +tp5298 +a(g5295 +g5297 +S'shield,' +p5299 +tp5300 +a(g5297 +g5299 +S'david' +p5301 +tp5302 +a(g5299 +g5301 +S'is' +p5303 +tp5304 +a(g5301 +g5303 +S'depicted' +p5305 +tp5306 +a(g5303 +g5305 +S'preparing' +p5307 +tp5308 +a(g5305 +g5307 +S'to' +p5309 +tp5310 +a(g5307 +g5309 +S'attack' +p5311 +tp5312 +a(g5309 +g5311 +S'goliath,' +p5313 +tp5314 +a(g5311 +g5313 +S'having' +p5315 +tp5316 +a(g5313 +g5315 +S'already' +p5317 +tp5318 +a(g5315 +g5317 +S'chosen' +p5319 +tp5320 +a(g5317 +g5319 +S'a' +p5321 +tp5322 +a(g5319 +g5321 +S'smooth' +p5323 +tp5324 +a(g5321 +g5323 +S'stone' +p5325 +tp5326 +a(g5323 +g5325 +S'from' +p5327 +tp5328 +a(g5325 +g5327 +S'the' +p5329 +tp5330 +a(g5327 +g5329 +S'riverbank' +p5331 +tp5332 +a(g5329 +g5331 +S'for' +p5333 +tp5334 +a(g5331 +g5333 +S'his' +p5335 +tp5336 +a(g5333 +g5335 +S'sling.' +p5337 +tp5338 +a(g5335 +g5337 +S'the' +p5339 +tp5340 +a(g5337 +g5339 +S'conclusion' +p5341 +tp5342 +a(g5339 +g5341 +S'appears' +p5343 +tp5344 +a(g5341 +g5343 +S'at' +p5345 +tp5346 +a(g5343 +g5345 +S'the' +p5347 +tp5348 +a(g5345 +g5347 +S'bottom' +p5349 +tp5350 +a(g5347 +g5349 +S'of' +p5351 +tp5352 +a(g5349 +g5351 +S'the' +p5353 +tp5354 +a(g5351 +g5353 +S'shield;' +p5355 +tp5356 +a(g5353 +g5355 +S'the' +p5357 +tp5358 +a(g5355 +g5357 +S'terrible' +p5359 +tp5360 +a(g5357 +g5359 +S"giant's" +p5361 +tp5362 +a(g5359 +g5361 +S'severed' +p5363 +tp5364 +a(g5361 +g5363 +S'head,' +p5365 +tp5366 +a(g5363 +g5365 +S'with' +p5367 +tp5368 +a(g5365 +g5367 +S'the' +p5369 +tp5370 +a(g5367 +g5369 +S'stone' +p5371 +tp5372 +a(g5369 +g5371 +S'embedded' +p5373 +tp5374 +a(g5371 +g5373 +S'in' +p5375 +tp5376 +a(g5373 +g5375 +S'its' +p5377 +tp5378 +a(g5375 +g5377 +S'forehead,' +p5379 +tp5380 +a(g5377 +g5379 +S'lies' +p5381 +tp5382 +a(g5379 +g5381 +S'at' +p5383 +tp5384 +a(g5381 +g5383 +S"david's" +p5385 +tp5386 +a(g5383 +g5385 +S'feet' +p5387 +tp5388 +a(g5385 +g5387 +S'as' +p5389 +tp5390 +a(g5387 +g5389 +S'a' +p5391 +tp5392 +a(g5389 +g5391 +S'warning' +p5393 +tp5394 +a(g5391 +g5393 +S'to' +p5395 +tp5396 +a(g5393 +g5395 +S'any' +p5397 +tp5398 +a(g5395 +g5397 +S'potential' +p5399 +tp5400 +a(g5397 +g5399 +S'enemies' +p5401 +tp5402 +a(g5399 +g5401 +S'of' +p5403 +tp5404 +a(g5401 +g5403 +S'florence.' +p5405 +tp5406 +a(g5403 +g5405 +S'for' +p5407 +tp5408 +a(g5405 +g5407 +S'this' +p5409 +tp5410 +a(g5407 +g5409 +S'interpretation' +p5411 +tp5412 +a(g5409 +g5411 +S'of' +p5413 +tp5414 +a(g5411 +g5413 +S'the' +p5415 +tp5416 +a(g5413 +g5415 +S'old' +p5417 +tp5418 +a(g5415 +g5417 +S'testament' +p5419 +tp5420 +a(g5417 +g5419 +S'hero,' +p5421 +tp5422 +a(g5419 +g5421 +S'castagno' +p5423 +tp5424 +a(g5421 +g5423 +S'chose' +p5425 +tp5426 +a(g5423 +g5425 +S'a' +p5427 +tp5428 +a(g5425 +g5427 +S'young' +p5429 +tp5430 +a(g5427 +g5429 +S'athlete,' +p5431 +tp5432 +a(g5429 +g5431 +S'whose' +p5433 +tp5434 +a(g5431 +g5433 +S'pose' +p5435 +tp5436 +a(g5433 +g5435 +S'shows' +p5437 +tp5438 +a(g5435 +g5437 +S'the' +p5439 +tp5440 +a(g5437 +g5439 +S"painter's" +p5441 +tp5442 +a(g5439 +g5441 +S'awareness' +p5443 +tp5444 +a(g5441 +g5443 +S'of' +p5445 +tp5446 +a(g5443 +g5445 +S'classical' +p5447 +tp5448 +a(g5445 +g5447 +S'prototypes.' +p5449 +tp5450 +a(g5447 +g5449 +S'castagno' +p5451 +tp5452 +a(g5449 +g5451 +S'demonstrated' +p5453 +tp5454 +a(g5451 +g5453 +S'his' +p5455 +tp5456 +a(g5453 +g5455 +S'knowledge' +p5457 +tp5458 +a(g5455 +g5457 +S'of' +p5459 +tp5460 +a(g5457 +g5459 +S'the' +p5461 +tp5462 +a(g5459 +g5461 +S'new' +p5463 +tp5464 +a(g5461 +g5463 +S'science' +p5465 +tp5466 +a(g5463 +g5465 +S'of' +p5467 +tp5468 +a(g5465 +g5467 +S'anatomy' +p5469 +tp5470 +a(g5467 +g5469 +S'by' +p5471 +tp5472 +a(g5469 +g5471 +S'modeling' +p5473 +tp5474 +a(g5471 +g5473 +S'the' +p5475 +tp5476 +a(g5473 +g5475 +S'figure' +p5477 +tp5478 +a(g5475 +g5477 +S'in' +p5479 +tp5480 +a(g5477 +g5479 +S'light' +p5481 +tp5482 +a(g5479 +g5481 +S'and' +p5483 +tp5484 +a(g5481 +g5483 +S'shadow,' +p5485 +tp5486 +a(g5483 +g5485 +S'articulating' +p5487 +tp5488 +a(g5485 +g5487 +S'the' +p5489 +tp5490 +a(g5487 +g5489 +S'muscles' +p5491 +tp5492 +a(g5489 +g5491 +S'and' +p5493 +tp5494 +a(g5491 +g5493 +S'veins' +p5495 +tp5496 +a(g5493 +g5495 +S'of' +p5497 +tp5498 +a(g5495 +g5497 +S'the' +p5499 +tp5500 +a(g5497 +g5499 +S'arms' +p5501 +tp5502 +a(g5499 +g5501 +S'and' +p5503 +tp5504 +a(g5501 +g5503 +S'legs,' +p5505 +tp5506 +a(g5503 +g5505 +S'and' +p5507 +tp5508 +a(g5505 +g5507 +S'giving' +p5509 +tp5510 +a(g5507 +g5509 +S'powerful' +p5511 +tp5512 +a(g5509 +g5511 +S'activity' +p5513 +tp5514 +a(g5511 +g5513 +S'to' +p5515 +tp5516 +a(g5513 +g5515 +S"david's" +p5517 +tp5518 +a(g5515 +g5517 +S'running' +p5519 +tp5520 +a(g5517 +g5519 +S'pose' +p5521 +tp5522 +a(g5519 +g5521 +S'and' +p5523 +tp5524 +a(g5521 +g5523 +S'windblown' +p5525 +tp5526 +a(g5523 +g5525 +S'garments.' +p5527 +tp5528 +a(g5525 +g5527 +S'the' +p5529 +tp5530 +a(g5527 +g5529 +S'white' +p5531 +tp5532 +a(g5529 +g5531 +S'horse' +p5533 +tp5534 +a(g5531 +g5533 +S'hidden' +p5535 +tp5536 +a(g5533 +g5535 +S'beneath' +p5537 +tp5538 +a(g5535 +g5537 +S'this' +p5539 +tp5540 +a(g5537 +g5539 +S'painting' +p5541 +tp5542 +a(g5539 +g5541 +S'is' +p5543 +tp5544 +a(g5541 +g5543 +S'a' +p5545 +tp5546 +a(g5543 +g5545 +S'version' +p5547 +tp5548 +a(g5545 +g5547 +S'of' +p5549 +tp5550 +a(g5547 +g5549 +S'another' +p5551 +tp5552 +a(g5549 +g5551 +S'constable' +p5553 +tp5554 +a(g5551 +g5553 +S'painting,' +p5555 +tp5556 +a(g5553 +g5555 +S'a' +p5557 +tp5558 +a(g5555 +g5557 +S'pleasant' +p5559 +tp5560 +a(g5557 +g5559 +S'sense' +p5561 +tp5562 +a(g5559 +g5561 +S'of' +p5563 +tp5564 +a(g5561 +g5563 +S'ease' +p5565 +tp5566 +a(g5563 +g5565 +S'and' +p5567 +tp5568 +a(g5565 +g5567 +S'harmony' +p5569 +tp5570 +a(g5567 +g5569 +S'pervades' +p5571 +tp5572 +a(g5569 +g5571 +S'this' +p5573 +tp5574 +a(g5571 +g5573 +S'landscape' +p5575 +tp5576 +a(g5573 +g5575 +S'of' +p5577 +tp5578 +a(g5575 +g5577 +S'almost' +p5579 +tp5580 +a(g5577 +g5579 +S'photographic' +p5581 +tp5582 +a(g5579 +g5581 +S'clarity.' +p5583 +tp5584 +a(g5581 +g5583 +S'the' +p5585 +tp5586 +a(g5583 +g5585 +S'large' +p5587 +tp5588 +a(g5585 +g5587 +S'areas' +p5589 +tp5590 +a(g5587 +g5589 +S'of' +p5591 +tp5592 +a(g5589 +g5591 +S'brilliant' +p5593 +tp5594 +a(g5591 +g5593 +S'sunshine' +p5595 +tp5596 +a(g5593 +g5595 +S'and' +p5597 +tp5598 +a(g5595 +g5597 +S'cool' +p5599 +tp5600 +a(g5597 +g5599 +S'shade,' +p5601 +tp5602 +a(g5599 +g5601 +S'the' +p5603 +tp5604 +a(g5601 +g5603 +S'rambling' +p5605 +tp5606 +a(g5603 +g5605 +S'line' +p5607 +tp5608 +a(g5605 +g5607 +S'of' +p5609 +tp5610 +a(g5607 +g5609 +S'the' +p5611 +tp5612 +a(g5609 +g5611 +S'fence,' +p5613 +tp5614 +a(g5611 +g5613 +S'and' +p5615 +tp5616 +a(g5613 +g5615 +S'the' +p5617 +tp5618 +a(g5615 +g5617 +S'beautiful' +p5619 +tp5620 +a(g5617 +g5619 +S'balance' +p5621 +tp5622 +a(g5619 +g5621 +S'of' +p5623 +tp5624 +a(g5621 +g5623 +S'trees,' +p5625 +tp5626 +a(g5623 +g5625 +S'meadow,' +p5627 +tp5628 +a(g5625 +g5627 +S'and' +p5629 +tp5630 +a(g5627 +g5629 +S'river' +p5631 +tp5632 +a(g5629 +g5631 +S'are' +p5633 +tp5634 +a(g5631 +g5633 +S'evidence' +p5635 +tp5636 +a(g5633 +g5635 +S'of' +p5637 +tp5638 +a(g5635 +g5637 +S'the' +p5639 +tp5640 +a(g5637 +g5639 +S"artist's" +p5641 +tp5642 +a(g5639 +g5641 +S'creative' +p5643 +tp5644 +a(g5641 +g5643 +S'synthesis' +p5645 +tp5646 +a(g5643 +g5645 +S'of' +p5647 +tp5648 +a(g5645 +g5647 +S'the' +p5649 +tp5650 +a(g5647 +g5649 +S'actual' +p5651 +tp5652 +a(g5649 +g5651 +S'site.' +p5653 +tp5654 +a(g5651 +g5653 +S'the' +p5655 +tp5656 +a(g5653 +g5655 +S'precision' +p5657 +tp5658 +a(g5655 +g5657 +S'of' +p5659 +tp5660 +a(g5657 +g5659 +S"constable's" +p5661 +tp5662 +a(g5659 +g5661 +S'brushwork,' +p5663 +tp5664 +a(g5661 +g5663 +S'seen' +p5665 +tp5666 +a(g5663 +g5665 +S'in' +p5667 +tp5668 +a(g5665 +g5667 +S'the' +p5669 +tp5670 +a(g5667 +g5669 +S'animals,' +p5671 +tp5672 +a(g5669 +g5671 +S'birds,' +p5673 +tp5674 +a(g5671 +g5673 +S'and' +p5675 +tp5676 +a(g5673 +g5675 +S'people,' +p5677 +tp5678 +a(g5675 +g5677 +S'lends' +p5679 +tp5680 +a(g5677 +g5679 +S'importance' +p5681 +tp5682 +a(g5679 +g5681 +S'to' +p5683 +tp5684 +a(g5681 +g5683 +S'these' +p5685 +tp5686 +a(g5683 +g5685 +S'smaller' +p5687 +tp5688 +a(g5685 +g5687 +S'details.' +p5689 +tp5690 +a(g5687 +g5689 +S'constable' +p5691 +tp5692 +a(g5689 +g5691 +S'was' +p5693 +tp5694 +a(g5691 +g5693 +S'a' +p5695 +tp5696 +a(g5693 +g5695 +S'native' +p5697 +tp5698 +a(g5695 +g5697 +S'of' +p5699 +tp5700 +a(g5697 +g5699 +S'suffolk,' +p5701 +tp5702 +a(g5699 +g5701 +S'the' +p5703 +tp5704 +a(g5701 +g5703 +S'county' +p5705 +tp5706 +a(g5703 +g5705 +S'just' +p5707 +tp5708 +a(g5705 +g5707 +S'north' +p5709 +tp5710 +a(g5707 +g5709 +S'of' +p5711 +tp5712 +a(g5709 +g5711 +S'essex.' +p5713 +tp5714 +a(g5711 +g5713 +S'his' +p5715 +tp5716 +a(g5713 +g5715 +S'deep,' +p5717 +tp5718 +a(g5715 +g5717 +S'consuming' +p5719 +tp5720 +a(g5717 +g5719 +S'attachment' +p5721 +tp5722 +a(g5719 +g5721 +S'to' +p5723 +tp5724 +a(g5721 +g5723 +S'the' +p5725 +tp5726 +a(g5723 +g5725 +S'landscape' +p5727 +tp5728 +a(g5725 +g5727 +S'of' +p5729 +tp5730 +a(g5727 +g5729 +S'this' +p5731 +tp5732 +a(g5729 +g5731 +S'rural' +p5733 +tp5734 +a(g5731 +g5733 +S'area' +p5735 +tp5736 +a(g5733 +g5735 +S'is' +p5737 +tp5738 +a(g5735 +g5737 +S'a' +p5739 +tp5740 +a(g5737 +g5739 +S'constant' +p5741 +tp5742 +a(g5739 +g5741 +S'factor' +p5743 +tp5744 +a(g5741 +g5743 +S'in' +p5745 +tp5746 +a(g5743 +g5745 +S'his' +p5747 +tp5748 +a(g5745 +g5747 +S'works.' +p5749 +tp5750 +a(g5747 +g5749 +S'his' +p5751 +tp5752 +a(g5749 +g5751 +S'studies' +p5753 +tp5754 +a(g5751 +g5753 +S'and' +p5755 +tp5756 +a(g5753 +g5755 +S'sketchbooks' +p5757 +tp5758 +a(g5755 +g5757 +S'reveal' +p5759 +tp5760 +a(g5757 +g5759 +S'his' +p5761 +tp5762 +a(g5759 +g5761 +S'complete' +p5763 +tp5764 +a(g5761 +g5763 +S'absorption' +p5765 +tp5766 +a(g5763 +g5765 +S'in' +p5767 +tp5768 +a(g5765 +g5767 +S'the' +p5769 +tp5770 +a(g5767 +g5769 +S'pictorial' +p5771 +tp5772 +a(g5769 +g5771 +S'elements' +p5773 +tp5774 +a(g5771 +g5773 +S'of' +p5775 +tp5776 +a(g5773 +g5775 +S'his' +p5777 +tp5778 +a(g5775 +g5777 +S'native' +p5779 +tp5780 +a(g5777 +g5779 +S'countryside:' +p5781 +tp5782 +a(g5779 +g5781 +S'the' +p5783 +tp5784 +a(g5781 +g5783 +S'movement' +p5785 +tp5786 +a(g5783 +g5785 +S'of' +p5787 +tp5788 +a(g5785 +g5787 +S'cloud' +p5789 +tp5790 +a(g5787 +g5789 +S'masses,' +p5791 +tp5792 +a(g5789 +g5791 +S'the' +p5793 +tp5794 +a(g5791 +g5793 +S'feel' +p5795 +tp5796 +a(g5793 +g5795 +S'of' +p5797 +tp5798 +a(g5795 +g5797 +S'the' +p5799 +tp5800 +a(g5797 +g5799 +S'lowlands' +p5801 +tp5802 +a(g5799 +g5801 +S'crossed' +p5803 +tp5804 +a(g5801 +g5803 +S'by' +p5805 +tp5806 +a(g5803 +g5805 +S'rivers' +p5807 +tp5808 +a(g5805 +g5807 +S'and' +p5809 +tp5810 +a(g5807 +g5809 +S'streams,' +p5811 +tp5812 +a(g5809 +g5811 +S'and' +p5813 +tp5814 +a(g5811 +g5813 +S'the' +p5815 +tp5816 +a(g5813 +g5815 +S'dramatic' +p5817 +tp5818 +a(g5815 +g5817 +S'play' +p5819 +tp5820 +a(g5817 +g5819 +S'of' +p5821 +tp5822 +a(g5819 +g5821 +S'light' +p5823 +tp5824 +a(g5821 +g5823 +S'over' +p5825 +tp5826 +a(g5823 +g5825 +S'all.' +p5827 +tp5828 +a(g5825 +g5827 +S'the' +p5829 +tp5830 +a(g5827 +g5829 +S'commission' +p5831 +tp5832 +a(g5829 +g5831 +S'for' +p5833 +tp5834 +a(g5831 +g5833 +S'this' +p5835 +tp5836 +a(g5833 +g5835 +S'painting' +p5837 +tp5838 +a(g5835 +g5837 +S'came' +p5839 +tp5840 +a(g5837 +g5839 +S'from' +p5841 +tp5842 +a(g5839 +g5841 +S'major' +p5843 +tp5844 +a(g5841 +g5843 +S'general' +p5845 +tp5846 +a(g5843 +g5845 +S'francis' +p5847 +tp5848 +a(g5845 +g5847 +S'slater–rebow,' +p5849 +tp5850 +a(g5847 +g5849 +S'owner' +p5851 +tp5852 +a(g5849 +g5851 +S'of' +p5853 +tp5854 +a(g5851 +g5853 +S'wivenhoe' +p5855 +tp5856 +a(g5853 +g5855 +S'park,' +p5857 +tp5858 +a(g5855 +g5857 +S'who' +p5859 +tp5860 +a(g5857 +g5859 +S'had' +p5861 +tp5862 +a(g5859 +g5861 +S'been' +p5863 +tp5864 +a(g5861 +g5863 +S'a' +p5865 +tp5866 +a(g5863 +g5865 +S'close' +p5867 +tp5868 +a(g5865 +g5867 +S'friend' +p5869 +tp5870 +a(g5867 +g5869 +S'of' +p5871 +tp5872 +a(g5869 +g5871 +S"constable's" +p5873 +tp5874 +a(g5871 +g5873 +S'father' +p5875 +tp5876 +a(g5873 +g5875 +S'and' +p5877 +tp5878 +a(g5875 +g5877 +S'was' +p5879 +tp5880 +a(g5877 +g5879 +S'the' +p5881 +tp5882 +a(g5879 +g5881 +S"artist's" +p5883 +tp5884 +a(g5881 +g5883 +S'first' +p5885 +tp5886 +a(g5883 +g5885 +S'important' +p5887 +tp5888 +a(g5885 +g5887 +S'patron.' +p5889 +tp5890 +a(g5887 +g5889 +S'this' +p5891 +tp5892 +a(g5889 +g5891 +S'was' +p5893 +tp5894 +a(g5891 +g5893 +S'not' +p5895 +tp5896 +a(g5893 +g5895 +S'the' +p5897 +tp5898 +a(g5895 +g5897 +S'first' +p5899 +tp5900 +a(g5897 +g5899 +S'work' +p5901 +tp5902 +a(g5899 +g5901 +S'constable' +p5903 +tp5904 +a(g5901 +g5903 +S'had' +p5905 +tp5906 +a(g5903 +g5905 +S'done' +p5907 +tp5908 +a(g5905 +g5907 +S'for' +p5909 +tp5910 +a(g5907 +g5909 +S'the' +p5911 +tp5912 +a(g5909 +g5911 +S'rebows;' +p5913 +tp5914 +a(g5911 +g5913 +S'in' +p5915 +tp5916 +a(g5913 +g5915 +S'1812' +p5917 +tp5918 +a(g5915 +g5917 +S'he' +p5919 +tp5920 +a(g5917 +g5919 +S'had' +p5921 +tp5922 +a(g5919 +g5921 +S'painted' +p5923 +tp5924 +a(g5921 +g5923 +S'a' +p5925 +tp5926 +a(g5923 +g5925 +S'full–length' +p5927 +tp5928 +a(g5925 +g5927 +S'portrait' +p5929 +tp5930 +a(g5927 +g5929 +S'of' +p5931 +tp5932 +a(g5929 +g5931 +S'the' +p5933 +tp5934 +a(g5931 +g5933 +S"couple's" +p5935 +tp5936 +a(g5933 +g5935 +S'daughter,' +p5937 +tp5938 +a(g5935 +g5937 +S'then' +p5939 +tp5940 +a(g5937 +g5939 +S'aged' +p5941 +tp5942 +a(g5939 +g5941 +S'seven.' +p5943 +tp5944 +a(g5941 +g5943 +S'she' +p5945 +tp5946 +a(g5943 +g5945 +S'can' +p5947 +tp5948 +a(g5945 +g5947 +S'be' +p5949 +tp5950 +a(g5947 +g5949 +S'seen' +p5951 +tp5952 +a(g5949 +g5951 +S'in' +p5953 +tp5954 +a(g5951 +g5953 +S'this' +p5955 +tp5956 +a(g5953 +g5955 +S'painting' +p5957 +tp5958 +a(g5955 +g5957 +S'riding' +p5959 +tp5960 +a(g5957 +g5959 +S'in' +p5961 +tp5962 +a(g5959 +g5961 +S'a' +p5963 +tp5964 +a(g5961 +g5963 +S'donkey' +p5965 +tp5966 +a(g5963 +g5965 +S'cart' +p5967 +tp5968 +a(g5965 +g5967 +S'at' +p5969 +tp5970 +a(g5967 +g5969 +S'the' +p5971 +tp5972 +a(g5969 +g5971 +S'left.' +p5973 +tp5974 +a(g5971 +g5973 +S'constable' +p5975 +tp5976 +a(g5973 +g5975 +S'frequently' +p5977 +tp5978 +a(g5975 +g5977 +S'depicted' +p5979 +tp5980 +a(g5977 +g5979 +S'salisbury’s' +p5981 +tp5982 +a(g5979 +g5981 +S'famous' +p5983 +tp5984 +a(g5981 +g5983 +S'spire,' +p5985 +tp5986 +a(g5983 +g5985 +S'which,' +p5987 +tp5988 +a(g5985 +g5987 +S'at' +p5989 +tp5990 +a(g5987 +g5989 +S'404' +p5991 +tp5992 +a(g5989 +g5991 +S'feet,' +p5993 +tp5994 +a(g5991 +g5993 +S'is' +p5995 +tp5996 +a(g5993 +g5995 +S'the' +p5997 +tp5998 +a(g5995 +g5997 +S'tallest' +p5999 +tp6000 +a(g5997 +g5999 +S'in' +p6001 +tp6002 +a(g5999 +g6001 +S'england.' +p6003 +tp6004 +a(g6001 +g6003 +S'piercing' +p6005 +tp6006 +a(g6003 +g6005 +S'the' +p6007 +tp6008 +a(g6005 +g6007 +S'air,' +p6009 +tp6010 +a(g6007 +g6009 +S'the' +p6011 +tp6012 +a(g6009 +g6011 +S'lofty' +p6013 +tp6014 +a(g6011 +g6013 +S'steeple' +p6015 +tp6016 +a(g6013 +g6015 +S'attracts' +p6017 +tp6018 +a(g6015 +g6017 +S'attention' +p6019 +tp6020 +a(g6017 +g6019 +S'to' +p6021 +tp6022 +a(g6019 +g6021 +S'the' +p6023 +tp6024 +a(g6021 +g6023 +S'atmosphere' +p6025 +tp6026 +a(g6023 +g6025 +S'around' +p6027 +tp6028 +a(g6025 +g6027 +S'it.' +p6029 +tp6030 +a(g6027 +g6029 +S'one' +p6031 +tp6032 +a(g6029 +g6031 +S'of' +p6033 +tp6034 +a(g6031 +g6033 +S'constable’s' +p6035 +tp6036 +a(g6033 +g6035 +S'main' +p6037 +tp6038 +a(g6035 +g6037 +S'interests' +p6039 +tp6040 +a(g6037 +g6039 +S'was' +p6041 +tp6042 +a(g6039 +g6041 +S'portraying' +p6043 +tp6044 +a(g6041 +g6043 +S'the' +p6045 +tp6046 +a(g6043 +g6045 +S'weather—a' +p6047 +tp6048 +a(g6045 +g6047 +S'process' +p6049 +tp6050 +a(g6047 +g6049 +S'he' +p6051 +tp6052 +a(g6049 +g6051 +S'called' +p6053 +tp6054 +a(g6051 +g6053 +S'“skying.”' +p6055 +tp6056 +a(g6053 +g6055 +S'when' +p6057 +tp6058 +a(g6055 +g6057 +S'the' +p6059 +tp6060 +a(g6057 +g6059 +S'gothic' +p6061 +tp6062 +a(g6059 +g6061 +S'cathedral' +p6063 +tp6064 +a(g6061 +g6063 +S'was' +p6065 +tp6066 +a(g6063 +g6065 +S'finished' +p6067 +tp6068 +a(g6065 +g6067 +S'in' +p6069 +tp6070 +a(g6067 +g6069 +S'the' +p6071 +tp6072 +a(g6069 +g6071 +S'1300s,' +p6073 +tp6074 +a(g6071 +g6073 +S'its' +p6075 +tp6076 +a(g6073 +g6075 +S'grounds' +p6077 +tp6078 +a(g6075 +g6077 +S'were' +p6079 +tp6080 +a(g6077 +g6079 +S'walled' +p6081 +tp6082 +a(g6079 +g6081 +S'or' +p6083 +tp6084 +a(g6081 +g6083 +S'enclosed;' +p6085 +tp6086 +a(g6083 +g6085 +S'this' +p6087 +tp6088 +a(g6085 +g6087 +S'close' +p6089 +tp6090 +a(g6087 +g6089 +S'forms' +p6091 +tp6092 +a(g6089 +g6091 +S'a' +p6093 +tp6094 +a(g6091 +g6093 +S'lush,' +p6095 +tp6096 +a(g6093 +g6095 +S'marshy' +p6097 +tp6098 +a(g6095 +g6097 +S'park.' +p6099 +tp6100 +a(g6097 +g6099 +S'the' +p6101 +tp6102 +a(g6099 +g6101 +S'couple' +p6103 +tp6104 +a(g6101 +g6103 +S'strolling' +p6105 +tp6106 +a(g6103 +g6105 +S'through' +p6107 +tp6108 +a(g6105 +g6107 +S'the' +p6109 +tp6110 +a(g6107 +g6109 +S'close’s' +p6111 +tp6112 +a(g6109 +g6111 +S'avenue' +p6113 +tp6114 +a(g6111 +g6113 +S'of' +p6115 +tp6116 +a(g6113 +g6115 +S'elms' +p6117 +tp6118 +a(g6115 +g6117 +S'may' +p6119 +tp6120 +a(g6117 +g6119 +S'be' +p6121 +tp6122 +a(g6119 +g6121 +S'john' +p6123 +tp6124 +a(g6121 +g6123 +S'fisher,' +p6125 +tp6126 +a(g6123 +g6125 +S'the' +p6127 +tp6128 +a(g6125 +g6127 +S'archbishop' +p6129 +tp6130 +a(g6127 +g6129 +S'of' +p6131 +tp6132 +a(g6129 +g6131 +S'salisbury,' +p6133 +tp6134 +a(g6131 +g6133 +S'and' +p6135 +tp6136 +a(g6133 +g6135 +S'his' +p6137 +tp6138 +a(g6135 +g6137 +S'wife.' +p6139 +tp6140 +a(g6137 +g6139 +S'their' +p6141 +tp6142 +a(g6139 +g6141 +S'nephew,' +p6143 +tp6144 +a(g6141 +g6143 +S'an' +p6145 +tp6146 +a(g6143 +g6145 +S'archdeacon' +p6147 +tp6148 +a(g6145 +g6147 +S'and' +p6149 +tp6150 +a(g6147 +g6149 +S'art' +p6151 +tp6152 +a(g6149 +g6151 +S'patron,' +p6153 +tp6154 +a(g6151 +g6153 +S'was' +p6155 +tp6156 +a(g6153 +g6155 +S'constable’s' +p6157 +tp6158 +a(g6155 +g6157 +S'closest' +p6159 +tp6160 +a(g6157 +g6159 +S'friend.' +p6161 +tp6162 +a(g6159 +g6161 +S'this' +p6163 +tp6164 +a(g6161 +g6163 +S'personal' +p6165 +tp6166 +a(g6163 +g6165 +S'souvenir,' +p6167 +tp6168 +a(g6165 +g6167 +S'kept' +p6169 +tp6170 +a(g6167 +g6169 +S'by' +p6171 +tp6172 +a(g6169 +g6171 +S'the' +p6173 +tp6174 +a(g6171 +g6173 +S'artist,' +p6175 +tp6176 +a(g6173 +g6175 +S'freshly' +p6177 +tp6178 +a(g6175 +g6177 +S'observes' +p6179 +tp6180 +a(g6177 +g6179 +S'the' +p6181 +tp6182 +a(g6179 +g6181 +S'sunshine' +p6183 +tp6184 +a(g6181 +g6183 +S'dappling' +p6185 +tp6186 +a(g6183 +g6185 +S'the' +p6187 +tp6188 +a(g6185 +g6187 +S'lawn.' +p6189 +tp6190 +a(g6187 +g6189 +S'with' +p6191 +tp6192 +a(g6189 +g6191 +S'long' +p6193 +tp6194 +a(g6191 +g6193 +S'shadows' +p6195 +tp6196 +a(g6193 +g6195 +S'falling' +p6197 +tp6198 +a(g6195 +g6197 +S'from' +p6199 +tp6200 +a(g6197 +g6199 +S'the' +p6201 +tp6202 +a(g6199 +g6201 +S'west,' +p6203 +tp6204 +a(g6201 +g6203 +S'the' +p6205 +tp6206 +a(g6203 +g6205 +S'time' +p6207 +tp6208 +a(g6205 +g6207 +S'is' +p6209 +tp6210 +a(g6207 +g6209 +S'early' +p6211 +tp6212 +a(g6209 +g6211 +S'evening.' +p6213 +tp6214 +a(g6211 +g6213 +S'the' +p6215 +tp6216 +a(g6213 +g6215 +S'canvas' +p6217 +tp6218 +a(g6215 +g6217 +S'was' +p6219 +tp6220 +a(g6217 +g6219 +S'executed' +p6221 +tp6222 +a(g6219 +g6221 +S'spontaneously' +p6223 +tp6224 +a(g6221 +g6223 +S'on' +p6225 +tp6226 +a(g6223 +g6225 +S'the' +p6227 +tp6228 +a(g6225 +g6227 +S'spot,' +p6229 +tp6230 +a(g6227 +g6229 +S'and' +p6231 +tp6232 +a(g6229 +g6231 +S'its' +p6233 +tp6234 +a(g6231 +g6233 +S'brown' +p6235 +tp6236 +a(g6233 +g6235 +S'underpainted' +p6237 +tp6238 +a(g6235 +g6237 +S'layer' +p6239 +tp6240 +a(g6237 +g6239 +S'is' +p6241 +tp6242 +a(g6239 +g6241 +S'still' +p6243 +tp6244 +a(g6241 +g6243 +S'visible' +p6245 +tp6246 +a(g6243 +g6245 +S'beneath' +p6247 +tp6248 +a(g6245 +g6247 +S'the' +p6249 +tp6250 +a(g6247 +g6249 +S'trees.' +p6251 +tp6252 +a(g6249 +g6251 +S'this' +p6253 +tp6254 +a(g6251 +g6253 +S'double' +p6255 +tp6256 +a(g6253 +g6255 +S'portrait' +p6257 +tp6258 +a(g6255 +g6257 +S'on' +p6259 +tp6260 +a(g6257 +g6259 +S'horseback' +p6261 +tp6262 +a(g6259 +g6261 +S'is' +p6263 +tp6264 +a(g6261 +g6263 +S'unique' +p6265 +tp6266 +a(g6263 +g6265 +S'in' +p6267 +tp6268 +a(g6265 +g6267 +S'dutch' +p6269 +tp6270 +a(g6267 +g6269 +S'art' +p6271 +tp6272 +a(g6269 +g6271 +S'and' +p6273 +tp6274 +a(g6271 +g6273 +S'seventeenth-century' +p6275 +tp6276 +a(g6273 +g6275 +S'europe,' +p6277 +tp6278 +a(g6275 +g6277 +S'because' +p6279 +tp6280 +a(g6277 +g6279 +S'equestrian' +p6281 +tp6282 +a(g6279 +g6281 +S'likenesses' +p6283 +tp6284 +a(g6281 +g6283 +S'usually' +p6285 +tp6286 +a(g6283 +g6285 +S'were' +p6287 +tp6288 +a(g6285 +g6287 +S'reserved' +p6289 +tp6290 +a(g6287 +g6289 +S'for' +p6291 +tp6292 +a(g6289 +g6291 +S'individual' +p6293 +tp6294 +a(g6291 +g6293 +S'monarchs.' +p6295 +tp6296 +a(g6293 +g6295 +S'the' +p6297 +tp6298 +a(g6295 +g6297 +S'couple' +p6299 +tp6300 +a(g6297 +g6299 +S'is' +p6301 +tp6302 +a(g6299 +g6301 +S'probably' +p6303 +tp6304 +a(g6301 +g6303 +S'husband' +p6305 +tp6306 +a(g6303 +g6305 +S'and' +p6307 +tp6308 +a(g6305 +g6307 +S'wife.' +p6309 +tp6310 +a(g6307 +g6309 +S'cuyp' +p6311 +tp6312 +a(g6309 +g6311 +S'originally' +p6313 +tp6314 +a(g6311 +g6313 +S'included' +p6315 +tp6316 +a(g6313 +g6315 +S'a' +p6317 +tp6318 +a(g6315 +g6317 +S'larger' +p6319 +tp6320 +a(g6317 +g6319 +S'hunting' +p6321 +tp6322 +a(g6319 +g6321 +S'party.' +p6323 +tp6324 +a(g6321 +g6323 +S'presumably' +p6325 +tp6326 +a(g6323 +g6325 +S'the' +p6327 +tp6328 +a(g6325 +g6327 +S'sitters' +p6329 +tp6330 +a(g6327 +g6329 +S'wanted' +p6331 +tp6332 +a(g6329 +g6331 +S'more' +p6333 +tp6334 +a(g6331 +g6333 +S'attention' +p6335 +tp6336 +a(g6333 +g6335 +S'directed' +p6337 +tp6338 +a(g6335 +g6337 +S'to' +p6339 +tp6340 +a(g6337 +g6339 +S'themselves,' +p6341 +tp6342 +a(g6339 +g6341 +S'so' +p6343 +tp6344 +a(g6341 +g6343 +S'cuyp' +p6345 +tp6346 +a(g6343 +g6345 +S'reworked' +p6347 +tp6348 +a(g6345 +g6347 +S'and' +p6349 +tp6350 +a(g6347 +g6349 +S'simplified' +p6351 +tp6352 +a(g6349 +g6351 +S'the' +p6353 +tp6354 +a(g6351 +g6353 +S'composition.' +p6355 +tp6356 +a(g6353 +g6355 +S'the' +p6357 +tp6358 +a(g6355 +g6357 +S'burdock' +p6359 +tp6360 +a(g6357 +g6359 +S'plants' +p6361 +tp6362 +a(g6359 +g6361 +S'at' +p6363 +tp6364 +a(g6361 +g6363 +S'the' +p6365 +tp6366 +a(g6363 +g6365 +S'left,' +p6367 +tp6368 +a(g6365 +g6367 +S'for' +p6369 +tp6370 +a(g6367 +g6369 +S'instance,' +p6371 +tp6372 +a(g6369 +g6371 +S'conceal' +p6373 +tp6374 +a(g6371 +g6373 +S'traces' +p6375 +tp6376 +a(g6373 +g6375 +S'of' +p6377 +tp6378 +a(g6375 +g6377 +S'several' +p6379 +tp6380 +a(g6377 +g6379 +S'dogs' +p6381 +tp6382 +a(g6379 +g6381 +S'now' +p6383 +tp6384 +a(g6381 +g6383 +S'overpainted.' +p6385 +tp6386 +a(g6383 +g6385 +S'reusing' +p6387 +tp6388 +a(g6385 +g6387 +S'favorite' +p6389 +tp6390 +a(g6387 +g6389 +S'motifs,' +p6391 +tp6392 +a(g6389 +g6391 +S'cuyp' +p6393 +tp6394 +a(g6391 +g6393 +S'repeated' +p6395 +tp6396 +a(g6393 +g6395 +S'the' +p6397 +tp6398 +a(g6395 +g6397 +S"lady's" +p6399 +tp6400 +a(g6397 +g6399 +S'white' +p6401 +tp6402 +a(g6399 +g6401 +S'steed' +p6403 +tp6404 +a(g6401 +g6403 +S'in' +p6405 +tp6406 +a(g6403 +g6405 +S'his' +p6407 +tp6408 +a(g6405 +g6407 +S'outside' +p6409 +tp6410 +a(g6407 +g6409 +S'the' +p6411 +tp6412 +a(g6409 +g6411 +S'netherlands,' +p6413 +tp6414 +a(g6411 +g6413 +S'the' +p6415 +tp6416 +a(g6413 +g6415 +S'five' +p6417 +tp6418 +a(g6415 +g6417 +S'cuyps' +p6419 +tp6420 +a(g6417 +g6419 +S'in' +p6421 +tp6422 +a(g6419 +g6421 +S'the' +p6423 +tp6424 +a(g6421 +g6423 +S'national' +p6425 +tp6426 +a(g6423 +g6425 +S'gallery' +p6427 +tp6428 +a(g6425 +g6427 +S'constitute' +p6429 +tp6430 +a(g6427 +g6429 +S'the' +p6431 +tp6432 +a(g6429 +g6431 +S'most' +p6433 +tp6434 +a(g6431 +g6433 +S'varied' +p6435 +tp6436 +a(g6433 +g6435 +S'collection' +p6437 +tp6438 +a(g6435 +g6437 +S'of' +p6439 +tp6440 +a(g6437 +g6439 +S'his' +p6441 +tp6442 +a(g6439 +g6441 +S'work.' +p6443 +tp6444 +a(g6441 +g6443 +S'originally' +p6445 +tp6446 +a(g6443 +g6445 +S'the' +p6447 +tp6448 +a(g6445 +g6447 +S'center' +p6449 +tp6450 +a(g6447 +g6449 +S'panel,' +p6451 +tp6452 +a(g6449 +g6451 +S'which' +p6453 +tp6454 +a(g6451 +g6453 +S'shows' +p6455 +tp6456 +a(g6453 +g6455 +S'saint' +p6457 +tp6458 +a(g6455 +g6457 +S'anne' +p6459 +tp6460 +a(g6457 +g6459 +S'seated' +p6461 +tp6462 +a(g6459 +g6461 +S'with' +p6463 +tp6464 +a(g6461 +g6463 +S'her' +p6465 +tp6466 +a(g6463 +g6465 +S'daughter' +p6467 +tp6468 +a(g6465 +g6467 +S'mary' +p6469 +tp6470 +a(g6467 +g6469 +S'and' +p6471 +tp6472 +a(g6469 +g6471 +S'jesus,' +p6473 +tp6474 +a(g6471 +g6473 +S'was' +p6475 +tp6476 +a(g6473 +g6475 +S'taller' +p6477 +tp6478 +a(g6475 +g6477 +S'than' +p6479 +tp6480 +a(g6477 +g6479 +S'the' +p6481 +tp6482 +a(g6479 +g6481 +S'flanking' +p6483 +tp6484 +a(g6481 +g6483 +S'ones' +p6485 +tp6486 +a(g6483 +g6485 +S'of' +p6487 +tp6488 +a(g6485 +g6487 +S'saint' +p6489 +tp6490 +a(g6487 +g6489 +S'nicholas' +p6491 +tp6492 +a(g6489 +g6491 +S'(left)' +p6493 +tp6494 +a(g6491 +g6493 +S'and' +p6495 +tp6496 +a(g6493 +g6495 +S'anthony' +p6497 +tp6498 +a(g6495 +g6497 +S'of' +p6499 +tp6500 +a(g6497 +g6499 +S'padua' +p6501 +tp6502 +a(g6499 +g6501 +S'(right),' +p6503 +tp6504 +a(g6501 +g6503 +S'and' +p6505 +tp6506 +a(g6503 +g6505 +S'all' +p6507 +tp6508 +a(g6505 +g6507 +S'three' +p6509 +tp6510 +a(g6507 +g6509 +S'had' +p6511 +tp6512 +a(g6509 +g6511 +S'arched' +p6513 +tp6514 +a(g6511 +g6513 +S'tops.' +p6515 +tp6516 +a(g6513 +g6515 +S'probably' +p6517 +tp6518 +a(g6515 +g6517 +S'they' +p6519 +tp6520 +a(g6517 +g6519 +S'stood' +p6521 +tp6522 +a(g6519 +g6521 +S'above' +p6523 +tp6524 +a(g6521 +g6523 +S'a' +p6525 +tp6526 +a(g6523 +g6525 +S'no' +p6527 +tp6528 +a(g6525 +g6527 +S'master' +p6529 +tp6530 +a(g6527 +g6529 +S'would' +p6531 +tp6532 +a(g6529 +g6531 +S'have' +p6533 +tp6534 +a(g6531 +g6533 +S'completed' +p6535 +tp6536 +a(g6533 +g6535 +S'such' +p6537 +tp6538 +a(g6535 +g6537 +S'a' +p6539 +tp6540 +a(g6537 +g6539 +S'large' +p6541 +tp6542 +a(g6539 +g6541 +S'commission' +p6543 +tp6544 +a(g6541 +g6543 +S'alone.' +p6545 +tp6546 +a(g6543 +g6545 +S'today,' +p6547 +tp6548 +a(g6545 +g6547 +S'new' +p6549 +tp6550 +a(g6547 +g6549 +S'scientific' +p6551 +tp6552 +a(g6549 +g6551 +S'techniques,' +p6553 +tp6554 +a(g6551 +g6553 +S'especially' +p6555 +tp6556 +a(g6553 +g6555 +S'infrared' +p6557 +tp6558 +a(g6555 +g6557 +S'reflectography,' +p6559 +tp6560 +a(g6557 +g6559 +S'which' +p6561 +tp6562 +a(g6559 +g6561 +S'makes' +p6563 +tp6564 +a(g6561 +g6563 +S'it' +p6565 +tp6566 +a(g6563 +g6565 +S'possible' +p6567 +tp6568 +a(g6565 +g6567 +S'to' +p6569 +tp6570 +a(g6567 +g6569 +S'see' +p6571 +tp6572 +a(g6569 +g6571 +S'the' +p6573 +tp6574 +a(g6571 +g6573 +S'underdrawing' +p6575 +tp6576 +a(g6573 +g6575 +S'hidden' +p6577 +tp6578 +a(g6575 +g6577 +S'beneath' +p6579 +tp6580 +a(g6577 +g6579 +S'the' +p6581 +tp6582 +a(g6579 +g6581 +S'paint,' +p6583 +tp6584 +a(g6581 +g6583 +S'are' +p6585 +tp6586 +a(g6583 +g6585 +S'helping' +p6587 +tp6588 +a(g6585 +g6587 +S'to' +p6589 +tp6590 +a(g6587 +g6589 +S'discern' +p6591 +tp6592 +a(g6589 +g6591 +S'the' +p6593 +tp6594 +a(g6591 +g6593 +S'participation' +p6595 +tp6596 +a(g6593 +g6595 +S'of' +p6597 +tp6598 +a(g6595 +g6597 +S'workshop' +p6599 +tp6600 +a(g6597 +g6599 +S'assistants.' +p6601 +tp6602 +a(g6599 +g6601 +S'here' +p6603 +tp6604 +a(g6601 +g6603 +S'the' +p6605 +tp6606 +a(g6603 +g6605 +S'basic' +p6607 +tp6608 +a(g6605 +g6607 +S'composition' +p6609 +tp6610 +a(g6607 +g6609 +S'in' +p6611 +tp6612 +a(g6609 +g6611 +S'all' +p6613 +tp6614 +a(g6611 +g6613 +S'three' +p6615 +tp6616 +a(g6613 +g6615 +S'panels' +p6617 +tp6618 +a(g6615 +g6617 +S'was' +p6619 +tp6620 +a(g6617 +g6619 +S'drawn' +p6621 +tp6622 +a(g6619 +g6621 +S'with' +p6623 +tp6624 +a(g6621 +g6623 +S'sketchy' +p6625 +tp6626 +a(g6623 +g6625 +S'parallel' +p6627 +tp6628 +a(g6625 +g6627 +S'strokes,' +p6629 +tp6630 +a(g6627 +g6629 +S'probably' +p6631 +tp6632 +a(g6629 +g6631 +S'with' +p6633 +tp6634 +a(g6631 +g6633 +S'charcoal' +p6635 +tp6636 +a(g6633 +g6635 +S'or' +p6637 +tp6638 +a(g6635 +g6637 +S'black' +p6639 +tp6640 +a(g6637 +g6639 +S'chalk.' +p6641 +tp6642 +a(g6639 +g6641 +S'in' +p6643 +tp6644 +a(g6641 +g6643 +S'the' +p6645 +tp6646 +a(g6643 +g6645 +S'central' +p6647 +tp6648 +a(g6645 +g6647 +S'panel' +p6649 +tp6650 +a(g6647 +g6649 +S'only' +p6651 +tp6652 +a(g6649 +g6651 +S'there' +p6653 +tp6654 +a(g6651 +g6653 +S'is' +p6655 +tp6656 +a(g6653 +g6655 +S'additional' +p6657 +tp6658 +a(g6655 +g6657 +S'underdrawing' +p6659 +tp6660 +a(g6657 +g6659 +S'in' +p6661 +tp6662 +a(g6659 +g6661 +S'ink' +p6663 +tp6664 +a(g6661 +g6663 +S'or' +p6665 +tp6666 +a(g6663 +g6665 +S'paint.' +p6667 +tp6668 +a(g6665 +g6667 +S'this' +p6669 +tp6670 +a(g6667 +g6669 +S'provides' +p6671 +tp6672 +a(g6669 +g6671 +S'more' +p6673 +tp6674 +a(g6671 +g6673 +S'detailed' +p6675 +tp6676 +a(g6673 +g6675 +S'instructions' +p6677 +tp6678 +a(g6675 +g6677 +S'and' +p6679 +tp6680 +a(g6677 +g6679 +S'could' +p6681 +tp6682 +a(g6679 +g6681 +S'indicate' +p6683 +tp6684 +a(g6681 +g6683 +S'that' +p6685 +tp6686 +a(g6683 +g6685 +S'david’s' +p6687 +tp6688 +a(g6685 +g6687 +S'assistants,' +p6689 +tp6690 +a(g6687 +g6689 +S'who' +p6691 +tp6692 +a(g6689 +g6691 +S'would' +p6693 +tp6694 +a(g6691 +g6693 +S'have' +p6695 +tp6696 +a(g6693 +g6695 +S'needed' +p6697 +tp6698 +a(g6695 +g6697 +S'more' +p6699 +tp6700 +a(g6697 +g6699 +S'guidance' +p6701 +tp6702 +a(g6699 +g6701 +S'than' +p6703 +tp6704 +a(g6701 +g6703 +S'the' +p6705 +tp6706 +a(g6703 +g6705 +S'master' +p6707 +tp6708 +a(g6705 +g6707 +S'himself,' +p6709 +tp6710 +a(g6707 +g6709 +S'were' +p6711 +tp6712 +a(g6709 +g6711 +S'responsible' +p6713 +tp6714 +a(g6711 +g6713 +S'for' +p6715 +tp6716 +a(g6713 +g6715 +S'the' +p6717 +tp6718 +a(g6715 +g6717 +S'center' +p6719 +tp6720 +a(g6717 +g6719 +S'panel.' +p6721 +tp6722 +a(g6719 +g6721 +S'presumably' +p6723 +tp6724 +a(g6721 +g6723 +S'david' +p6725 +tp6726 +a(g6723 +g6725 +S'painted' +p6727 +tp6728 +a(g6725 +g6727 +S'much' +p6729 +tp6730 +a(g6727 +g6729 +S'of' +p6731 +tp6732 +a(g6729 +g6731 +S'the' +p6733 +tp6734 +a(g6731 +g6733 +S'two' +p6735 +tp6736 +a(g6733 +g6735 +S'wings' +p6737 +tp6738 +a(g6735 +g6737 +S'himself.' +p6739 +tp6740 +a(g6737 +g6739 +S'notice' +p6741 +tp6742 +a(g6739 +g6741 +S'how' +p6743 +tp6744 +a(g6741 +g6743 +S'the' +p6745 +tp6746 +a(g6743 +g6745 +S'underdrawing' +p6747 +tp6748 +a(g6745 +g6747 +S'shows' +p6749 +tp6750 +a(g6747 +g6749 +S'through' +p6751 +tp6752 +a(g6749 +g6751 +S'the' +p6753 +tp6754 +a(g6751 +g6753 +S'folds' +p6755 +tp6756 +a(g6753 +g6755 +S'in' +p6757 +tp6758 +a(g6755 +g6757 +S'anne’s' +p6759 +tp6760 +a(g6757 +g6759 +S'robe' +p6761 +tp6762 +a(g6759 +g6761 +S'as' +p6763 +tp6764 +a(g6761 +g6763 +S'blue-gray' +p6765 +tp6766 +a(g6763 +g6765 +S'hatching.' +p6767 +tp6768 +a(g6765 +g6767 +S'this' +p6769 +tp6770 +a(g6767 +g6769 +S'painting,' +p6771 +tp6772 +a(g6769 +g6771 +S'one' +p6773 +tp6774 +a(g6771 +g6773 +S'of' +p6775 +tp6776 +a(g6773 +g6775 +S'two' +p6777 +tp6778 +a(g6775 +g6777 +S'views' +p6779 +tp6780 +a(g6777 +g6779 +S'of' +p6781 +tp6782 +a(g6779 +g6781 +S'mortlake' +p6783 +tp6784 +a(g6781 +g6783 +S'terrace' +p6785 +tp6786 +a(g6783 +g6785 +S'painted' +p6787 +tp6788 +a(g6785 +g6787 +S'by' +p6789 +tp6790 +a(g6787 +g6789 +S'turner,' +p6791 +tp6792 +a(g6789 +g6791 +S'is' +p6793 +tp6794 +a(g6791 +g6793 +S'a' +p6795 +tp6796 +a(g6793 +g6795 +S'view' +p6797 +tp6798 +a(g6795 +g6797 +S'from' +p6799 +tp6800 +a(g6797 +g6799 +S'the' +p6801 +tp6802 +a(g6799 +g6801 +S'house,' +p6803 +tp6804 +a(g6801 +g6803 +S'looking' +p6805 +tp6806 +a(g6803 +g6805 +S'directly' +p6807 +tp6808 +a(g6805 +g6807 +S'west' +p6809 +tp6810 +a(g6807 +g6809 +S'into' +p6811 +tp6812 +a(g6809 +g6811 +S'the' +p6813 +tp6814 +a(g6811 +g6813 +S'luminous' +p6815 +tp6816 +a(g6813 +g6815 +S'glow' +p6817 +tp6818 +a(g6815 +g6817 +S'of' +p6819 +tp6820 +a(g6817 +g6819 +S'the' +p6821 +tp6822 +a(g6819 +g6821 +S'setting' +p6823 +tp6824 +a(g6821 +g6823 +S'sun.' +p6825 +tp6826 +a(g6823 +g6825 +S'turner' +p6827 +tp6828 +a(g6825 +g6827 +S'established' +p6829 +tp6830 +a(g6827 +g6829 +S'the' +p6831 +tp6832 +a(g6829 +g6831 +S'quiet' +p6833 +tp6834 +a(g6831 +g6833 +S'mood' +p6835 +tp6836 +a(g6833 +g6835 +S'of' +p6837 +tp6838 +a(g6835 +g6837 +S'the' +p6839 +tp6840 +a(g6837 +g6839 +S'late-afternoon' +p6841 +tp6842 +a(g6839 +g6841 +S'scene' +p6843 +tp6844 +a(g6841 +g6843 +S'with' +p6845 +tp6846 +a(g6843 +g6845 +S'two' +p6847 +tp6848 +a(g6845 +g6847 +S'ivy-covered' +p6849 +tp6850 +a(g6847 +g6849 +S'elm' +p6851 +tp6852 +a(g6849 +g6851 +S'trees,' +p6853 +tp6854 +a(g6851 +g6853 +S'whose' +p6855 +tp6856 +a(g6853 +g6855 +S'soft,' +p6857 +tp6858 +a(g6855 +g6857 +S'feathery' +p6859 +tp6860 +a(g6857 +g6859 +S'leaves' +p6861 +tp6862 +a(g6859 +g6861 +S'and' +p6863 +tp6864 +a(g6861 +g6863 +S'curving' +p6865 +tp6866 +a(g6863 +g6865 +S'limbs' +p6867 +tp6868 +a(g6865 +g6867 +S'frame' +p6869 +tp6870 +a(g6867 +g6869 +S'the' +p6871 +tp6872 +a(g6869 +g6871 +S'painting.' +p6873 +tp6874 +a(g6871 +g6873 +S'long' +p6875 +tp6876 +a(g6873 +g6875 +S'shadows' +p6877 +tp6878 +a(g6875 +g6877 +S'create' +p6879 +tp6880 +a(g6877 +g6879 +S'elegant' +p6881 +tp6882 +a(g6879 +g6881 +S'patterns' +p6883 +tp6884 +a(g6881 +g6883 +S'on' +p6885 +tp6886 +a(g6883 +g6885 +S'the' +p6887 +tp6888 +a(g6885 +g6887 +S'lawn' +p6889 +tp6890 +a(g6887 +g6889 +S'that' +p6891 +tp6892 +a(g6889 +g6891 +S'almost' +p6893 +tp6894 +a(g6891 +g6893 +S'obscure' +p6895 +tp6896 +a(g6893 +g6895 +S'the' +p6897 +tp6898 +a(g6895 +g6897 +S'human' +p6899 +tp6900 +a(g6897 +g6899 +S'element' +p6901 +tp6902 +a(g6899 +g6901 +S'in' +p6903 +tp6904 +a(g6901 +g6903 +S'the' +p6905 +tp6906 +a(g6903 +g6905 +S'scene.' +p6907 +tp6908 +a(g6905 +g6907 +S'scattered' +p6909 +tp6910 +a(g6907 +g6909 +S'about' +p6911 +tp6912 +a(g6909 +g6911 +S'are' +p6913 +tp6914 +a(g6911 +g6913 +S'a' +p6915 +tp6916 +a(g6913 +g6915 +S"gardener's" +p6917 +tp6918 +a(g6915 +g6917 +S'ladder,' +p6919 +tp6920 +a(g6917 +g6919 +S'a' +p6921 +tp6922 +a(g6919 +g6921 +S'hoop,' +p6923 +tp6924 +a(g6921 +g6923 +S'a' +p6925 +tp6926 +a(g6923 +g6925 +S'doll' +p6927 +tp6928 +a(g6925 +g6927 +S'on' +p6929 +tp6930 +a(g6927 +g6929 +S'a' +p6931 +tp6932 +a(g6929 +g6931 +S'red' +p6933 +tp6934 +a(g6931 +g6933 +S'chair,' +p6935 +tp6936 +a(g6933 +g6935 +S'and' +p6937 +tp6938 +a(g6935 +g6937 +S'an' +p6939 +tp6940 +a(g6937 +g6939 +S'open' +p6941 +tp6942 +a(g6939 +g6941 +S'portfolio' +p6943 +tp6944 +a(g6941 +g6943 +S'of' +p6945 +tp6946 +a(g6943 +g6945 +S'pictures' +p6947 +tp6948 +a(g6945 +g6947 +S'that' +p6949 +tp6950 +a(g6947 +g6949 +S'have' +p6951 +tp6952 +a(g6949 +g6951 +S'been' +p6953 +tp6954 +a(g6951 +g6953 +S'just' +p6955 +tp6956 +a(g6953 +g6955 +S'left' +p6957 +tp6958 +a(g6955 +g6957 +S'behind' +p6959 +tp6960 +a(g6957 +g6959 +S'by' +p6961 +tp6962 +a(g6959 +g6961 +S'figures' +p6963 +tp6964 +a(g6961 +g6963 +S'watching' +p6965 +tp6966 +a(g6963 +g6965 +S'the' +p6967 +tp6968 +a(g6965 +g6967 +S'lord' +p6969 +tp6970 +a(g6967 +g6969 +S"mayor's" +p6971 +tp6972 +a(g6969 +g6971 +S'ceremonial' +p6973 +tp6974 +a(g6971 +g6973 +S'barge.' +p6975 +tp6976 +a(g6973 +g6975 +S'the' +p6977 +tp6978 +a(g6975 +g6977 +S'painting' +p6979 +tp6980 +a(g6977 +g6979 +S'was' +p6981 +tp6982 +a(g6979 +g6981 +S'done' +p6983 +tp6984 +a(g6981 +g6983 +S'about' +p6985 +tp6986 +a(g6983 +g6985 +S'eight' +p6987 +tp6988 +a(g6985 +g6987 +S'years' +p6989 +tp6990 +a(g6987 +g6989 +S'after' +p6991 +tp6992 +a(g6989 +g6991 +S"turner's" +p6993 +tp6994 +a(g6991 +g6993 +S'first' +p6995 +tp6996 +a(g6993 +g6995 +S'stay' +p6997 +tp6998 +a(g6995 +g6997 +S'in' +p6999 +tp7000 +a(g6997 +g6999 +S'venice,' +p7001 +tp7002 +a(g6999 +g7001 +S'where' +p7003 +tp7004 +a(g7001 +g7003 +S'his' +p7005 +tp7006 +a(g7003 +g7005 +S'perception' +p7007 +tp7008 +a(g7005 +g7007 +S'of' +p7009 +tp7010 +a(g7007 +g7009 +S'nature' +p7011 +tp7012 +a(g7009 +g7011 +S'and' +p7013 +tp7014 +a(g7011 +g7013 +S'the' +p7015 +tp7016 +a(g7013 +g7015 +S'physical' +p7017 +tp7018 +a(g7015 +g7017 +S'world' +p7019 +tp7020 +a(g7017 +g7019 +S'was' +p7021 +tp7022 +a(g7019 +g7021 +S'profoundly' +p7023 +tp7024 +a(g7021 +g7023 +S'changed' +p7025 +tp7026 +a(g7023 +g7025 +S'by' +p7027 +tp7028 +a(g7025 +g7027 +S'the' +p7029 +tp7030 +a(g7027 +g7029 +S"city's" +p7031 +tp7032 +a(g7029 +g7031 +S'unique' +p7033 +tp7034 +a(g7031 +g7033 +S'light' +p7035 +tp7036 +a(g7033 +g7035 +S'and' +p7037 +tp7038 +a(g7035 +g7037 +S'atmosphere.' +p7039 +tp7040 +a(g7037 +g7039 +S'light' +p7041 +tp7042 +a(g7039 +g7041 +S'immobilizes' +p7043 +tp7044 +a(g7041 +g7043 +S'the' +p7045 +tp7046 +a(g7043 +g7045 +S'river' +p7047 +tp7048 +a(g7045 +g7047 +S'and' +p7049 +tp7050 +a(g7047 +g7049 +S'gives' +p7051 +tp7052 +a(g7049 +g7051 +S'its' +p7053 +tp7054 +a(g7051 +g7053 +S'surface' +p7055 +tp7056 +a(g7053 +g7055 +S'a' +p7057 +tp7058 +a(g7055 +g7057 +S'dreamlike' +p7059 +tp7060 +a(g7057 +g7059 +S'shimmer.' +p7061 +tp7062 +a(g7059 +g7061 +S'the' +p7063 +tp7064 +a(g7061 +g7063 +S'stable' +p7065 +tp7066 +a(g7063 +g7065 +S'mass' +p7067 +tp7068 +a(g7065 +g7067 +S'of' +p7069 +tp7070 +a(g7067 +g7069 +S'the' +p7071 +tp7072 +a(g7069 +g7071 +S'classical' +p7073 +tp7074 +a(g7071 +g7073 +S'gazebo,' +p7075 +tp7076 +a(g7073 +g7075 +S'the' +p7077 +tp7078 +a(g7075 +g7077 +S'delicate' +p7079 +tp7080 +a(g7077 +g7079 +S'linear' +p7081 +tp7082 +a(g7079 +g7081 +S'clarity' +p7083 +tp7084 +a(g7081 +g7083 +S'of' +p7085 +tp7086 +a(g7083 +g7085 +S'its' +p7087 +tp7088 +a(g7085 +g7087 +S'architectural' +p7089 +tp7090 +a(g7087 +g7089 +S'details,' +p7091 +tp7092 +a(g7089 +g7091 +S'and' +p7093 +tp7094 +a(g7091 +g7093 +S'the' +p7095 +tp7096 +a(g7093 +g7095 +S'carefully' +p7097 +tp7098 +a(g7095 +g7097 +S'depicted' +p7099 +tp7100 +a(g7097 +g7099 +S'windows' +p7101 +tp7102 +a(g7099 +g7101 +S'in' +p7103 +tp7104 +a(g7101 +g7103 +S'the' +p7105 +tp7106 +a(g7103 +g7105 +S'buildings' +p7107 +tp7108 +a(g7105 +g7107 +S'on' +p7109 +tp7110 +a(g7107 +g7109 +S'the' +p7111 +tp7112 +a(g7109 +g7111 +S'left' +p7113 +tp7114 +a(g7111 +g7113 +S'bank' +p7115 +tp7116 +a(g7113 +g7115 +S'of' +p7117 +tp7118 +a(g7115 +g7117 +S'the' +p7119 +tp7120 +a(g7117 +g7119 +S'river' +p7121 +tp7122 +a(g7119 +g7121 +S'coexist' +p7123 +tp7124 +a(g7121 +g7123 +S'in' +p7125 +tp7126 +a(g7123 +g7125 +S"turner's" +p7127 +tp7128 +a(g7125 +g7127 +S'vision' +p7129 +tp7130 +a(g7127 +g7129 +S'with' +p7131 +tp7132 +a(g7129 +g7131 +S'the' +p7133 +tp7134 +a(g7131 +g7133 +S'heavy' +p7135 +tp7136 +a(g7133 +g7135 +S'impasto' +p7137 +tp7138 +a(g7135 +g7137 +S'of' +p7139 +tp7140 +a(g7137 +g7139 +S'the' +p7141 +tp7142 +a(g7139 +g7141 +S"sun's" +p7143 +tp7144 +a(g7141 +g7143 +S'forceful' +p7145 +tp7146 +a(g7143 +g7145 +S'rays' +p7147 +tp7148 +a(g7145 +g7147 +S'that' +p7149 +tp7150 +a(g7147 +g7149 +S'spill' +p7151 +tp7152 +a(g7149 +g7151 +S'over' +p7153 +tp7154 +a(g7151 +g7153 +S'the' +p7155 +tp7156 +a(g7153 +g7155 +S'top' +p7157 +tp7158 +a(g7155 +g7157 +S'of' +p7159 +tp7160 +a(g7157 +g7159 +S'the' +p7161 +tp7162 +a(g7159 +g7161 +S'embankment' +p7163 +tp7164 +a(g7161 +g7163 +S'wall' +p7165 +tp7166 +a(g7163 +g7165 +S'and' +p7167 +tp7168 +a(g7165 +g7167 +S'dissolve' +p7169 +tp7170 +a(g7167 +g7169 +S'the' +p7171 +tp7172 +a(g7169 +g7171 +S"stone's" +p7173 +tp7174 +a(g7171 +g7173 +S'very' +p7175 +tp7176 +a(g7173 +g7175 +S'substance.' +p7177 +tp7178 +a(g7175 +g7177 +S'commissioned' +p7179 +tp7180 +a(g7177 +g7179 +S'for' +p7181 +tp7182 +a(g7179 +g7181 +S'the' +p7183 +tp7184 +a(g7181 +g7183 +S'chapel' +p7185 +tp7186 +a(g7183 +g7185 +S'of' +p7187 +tp7188 +a(g7185 +g7187 +S'san' +p7189 +tp7190 +a(g7187 +g7189 +S'josé' +p7191 +tp7192 +a(g7189 +g7191 +S'in' +p7193 +tp7194 +a(g7191 +g7193 +S'toledo' +p7195 +tp7196 +a(g7193 +g7195 +S'by' +p7197 +tp7198 +a(g7195 +g7197 +S'martín' +p7199 +tp7200 +a(g7197 +g7199 +S'ramírez,' +p7201 +tp7202 +a(g7199 +g7201 +S'a' +p7203 +tp7204 +a(g7201 +g7203 +S'namesake' +p7205 +tp7206 +a(g7203 +g7205 +S'of' +p7207 +tp7208 +a(g7205 +g7207 +S'the' +p7209 +tp7210 +a(g7207 +g7209 +S'saint' +p7211 +tp7212 +a(g7209 +g7211 +S'and' +p7213 +tp7214 +a(g7211 +g7213 +S'donor' +p7215 +tp7216 +a(g7213 +g7215 +S'of' +p7217 +tp7218 +a(g7215 +g7217 +S'the' +p7219 +tp7220 +a(g7217 +g7219 +S'chapel,' +p7221 +tp7222 +a(g7219 +g7221 +S'the' +p7223 +tp7224 +a(g7221 +g7223 +S'saint,' +p7225 +tp7226 +a(g7223 +g7225 +S'who' +p7227 +tp7228 +a(g7225 +g7227 +S'lived' +p7229 +tp7230 +a(g7227 +g7229 +S'during' +p7231 +tp7232 +a(g7229 +g7231 +S'the' +p7233 +tp7234 +a(g7231 +g7233 +S'reign' +p7235 +tp7236 +a(g7233 +g7235 +S'of' +p7237 +tp7238 +a(g7235 +g7237 +S'constantine' +p7239 +tp7240 +a(g7237 +g7239 +S'the' +p7241 +tp7242 +a(g7239 +g7241 +S'great,' +p7243 +tp7244 +a(g7241 +g7243 +S'was' +p7245 +tp7246 +a(g7243 +g7245 +S'a' +p7247 +tp7248 +a(g7245 +g7247 +S'member' +p7249 +tp7250 +a(g7247 +g7249 +S'of' +p7251 +tp7252 +a(g7249 +g7251 +S'the' +p7253 +tp7254 +a(g7251 +g7253 +S'imperial' +p7255 +tp7256 +a(g7253 +g7255 +S'cavalry' +p7257 +tp7258 +a(g7255 +g7257 +S'stationed' +p7259 +tp7260 +a(g7257 +g7259 +S'near' +p7261 +tp7262 +a(g7259 +g7261 +S'amiens,' +p7263 +tp7264 +a(g7261 +g7263 +S'in' +p7265 +tp7266 +a(g7263 +g7265 +S'gaul.' +p7267 +tp7268 +a(g7265 +g7267 +S'coming' +p7269 +tp7270 +a(g7267 +g7269 +S'upon' +p7271 +tp7272 +a(g7269 +g7271 +S'a' +p7273 +tp7274 +a(g7271 +g7273 +S'shivering' +p7275 +tp7276 +a(g7273 +g7275 +S'beggar' +p7277 +tp7278 +a(g7275 +g7277 +S'near' +p7279 +tp7280 +a(g7277 +g7279 +S'the' +p7281 +tp7282 +a(g7279 +g7281 +S'city' +p7283 +tp7284 +a(g7281 +g7283 +S'gates' +p7285 +tp7286 +a(g7283 +g7285 +S'on' +p7287 +tp7288 +a(g7285 +g7287 +S'a' +p7289 +tp7290 +a(g7287 +g7289 +S'cold' +p7291 +tp7292 +a(g7289 +g7291 +S'winter' +p7293 +tp7294 +a(g7291 +g7293 +S'day,' +p7295 +tp7296 +a(g7293 +g7295 +S'the' +p7297 +tp7298 +a(g7295 +g7297 +S'young' +p7299 +tp7300 +a(g7297 +g7299 +S'soldier' +p7301 +tp7302 +a(g7299 +g7301 +S'divided' +p7303 +tp7304 +a(g7301 +g7303 +S'his' +p7305 +tp7306 +a(g7303 +g7305 +S'cloak' +p7307 +tp7308 +a(g7305 +g7307 +S'with' +p7309 +tp7310 +a(g7307 +g7309 +S'his' +p7311 +tp7312 +a(g7309 +g7311 +S'sword' +p7313 +tp7314 +a(g7311 +g7313 +S'and' +p7315 +tp7316 +a(g7313 +g7315 +S'shared' +p7317 +tp7318 +a(g7315 +g7317 +S'it' +p7319 +tp7320 +a(g7317 +g7319 +S'with' +p7321 +tp7322 +a(g7319 +g7321 +S'him.' +p7323 +tp7324 +a(g7321 +g7323 +S'tradition' +p7325 +tp7326 +a(g7323 +g7325 +S'has' +p7327 +tp7328 +a(g7325 +g7327 +S'it' +p7329 +tp7330 +a(g7327 +g7329 +S'that' +p7331 +tp7332 +a(g7329 +g7331 +S'christ' +p7333 +tp7334 +a(g7331 +g7333 +S'later' +p7335 +tp7336 +a(g7333 +g7335 +S'appeared' +p7337 +tp7338 +a(g7335 +g7337 +S'to' +p7339 +tp7340 +a(g7337 +g7339 +S'martin' +p7341 +tp7342 +a(g7339 +g7341 +S'in' +p7343 +tp7344 +a(g7341 +g7343 +S'a' +p7345 +tp7346 +a(g7343 +g7345 +S'dream,' +p7347 +tp7348 +a(g7345 +g7347 +S'saying,' +p7349 +tp7350 +a(g7347 +g7349 +S'"what' +p7351 +tp7352 +a(g7349 +g7351 +S'thou' +p7353 +tp7354 +a(g7351 +g7353 +S'hast' +p7355 +tp7356 +a(g7353 +g7355 +S'done' +p7357 +tp7358 +a(g7355 +g7357 +S'for' +p7359 +tp7360 +a(g7357 +g7359 +S'that' +p7361 +tp7362 +a(g7359 +g7361 +S'poor' +p7363 +tp7364 +a(g7361 +g7363 +S'man,' +p7365 +tp7366 +a(g7363 +g7365 +S'thou' +p7367 +tp7368 +a(g7365 +g7367 +S'hast' +p7369 +tp7370 +a(g7367 +g7369 +S'done' +p7371 +tp7372 +a(g7369 +g7371 +S'for' +p7373 +tp7374 +a(g7371 +g7373 +S'me."' +p7375 +tp7376 +a(g7373 +g7375 +S'el' +p7377 +tp7378 +a(g7375 +g7377 +S'greco' +p7379 +tp7380 +a(g7377 +g7379 +S'portrayed' +p7381 +tp7382 +a(g7379 +g7381 +S'the' +p7383 +tp7384 +a(g7381 +g7383 +S'fourth-century' +p7385 +tp7386 +a(g7383 +g7385 +S'saint' +p7387 +tp7388 +a(g7385 +g7387 +S'as' +p7389 +tp7390 +a(g7387 +g7389 +S'a' +p7391 +tp7392 +a(g7389 +g7391 +S'young' +p7393 +tp7394 +a(g7391 +g7393 +S'nobleman,' +p7395 +tp7396 +a(g7393 +g7395 +S'clad' +p7397 +tp7398 +a(g7395 +g7397 +S'in' +p7399 +tp7400 +a(g7397 +g7399 +S'elegant' +p7401 +tp7402 +a(g7399 +g7401 +S'gold-damascened' +p7403 +tp7404 +a(g7401 +g7403 +S'armor,' +p7405 +tp7406 +a(g7403 +g7405 +S'astride' +p7407 +tp7408 +a(g7405 +g7407 +S'a' +p7409 +tp7410 +a(g7407 +g7409 +S'white' +p7411 +tp7412 +a(g7409 +g7411 +S'arabian' +p7413 +tp7414 +a(g7411 +g7413 +S'horse.' +p7415 +tp7416 +a(g7413 +g7415 +S'seen' +p7417 +tp7418 +a(g7415 +g7417 +S'from' +p7419 +tp7420 +a(g7417 +g7419 +S'a' +p7421 +tp7422 +a(g7419 +g7421 +S'low' +p7423 +tp7424 +a(g7421 +g7423 +S'vantage' +p7425 +tp7426 +a(g7423 +g7425 +S'point,' +p7427 +tp7428 +a(g7425 +g7427 +S'the' +p7429 +tp7430 +a(g7427 +g7429 +S'figures' +p7431 +tp7432 +a(g7429 +g7431 +S'seem' +p7433 +tp7434 +a(g7431 +g7433 +S'monumental,' +p7435 +tp7436 +a(g7433 +g7435 +S'looming' +p7437 +tp7438 +a(g7435 +g7437 +S'over' +p7439 +tp7440 +a(g7437 +g7439 +S'the' +p7441 +tp7442 +a(g7439 +g7441 +S'landscape' +p7443 +tp7444 +a(g7441 +g7443 +S'with' +p7445 +tp7446 +a(g7443 +g7445 +S'its' +p7447 +tp7448 +a(g7445 +g7447 +S'distant' +p7449 +tp7450 +a(g7447 +g7449 +S'view' +p7451 +tp7452 +a(g7449 +g7451 +S'of' +p7453 +tp7454 +a(g7451 +g7453 +S'toledo' +p7455 +tp7456 +a(g7453 +g7455 +S'and' +p7457 +tp7458 +a(g7455 +g7457 +S'the' +p7459 +tp7460 +a(g7457 +g7459 +S'river' +p7461 +tp7462 +a(g7459 +g7461 +S'tagus.' +p7463 +tp7464 +a(g7461 +g7463 +S'the' +p7465 +tp7466 +a(g7463 +g7465 +S"saint's" +p7467 +tp7468 +a(g7465 +g7467 +S'relatively' +p7469 +tp7470 +a(g7467 +g7469 +S'naturalistic' +p7471 +tp7472 +a(g7469 +g7471 +S'proportions' +p7473 +tp7474 +a(g7471 +g7473 +S'contrast' +p7475 +tp7476 +a(g7473 +g7475 +S'with' +p7477 +tp7478 +a(g7475 +g7477 +S'the' +p7479 +tp7480 +a(g7477 +g7479 +S'attenuated' +p7481 +tp7482 +a(g7479 +g7481 +S'form' +p7483 +tp7484 +a(g7481 +g7483 +S'of' +p7485 +tp7486 +a(g7483 +g7485 +S'the' +p7487 +tp7488 +a(g7485 +g7487 +S'nearly' +p7489 +tp7490 +a(g7487 +g7489 +S'nude' +p7491 +tp7492 +a(g7489 +g7491 +S'beggar.' +p7493 +tp7494 +a(g7491 +g7493 +S'the' +p7495 +tp7496 +a(g7493 +g7495 +S'obvious' +p7497 +tp7498 +a(g7495 +g7497 +S'distortion' +p7499 +tp7500 +a(g7497 +g7499 +S'of' +p7501 +tp7502 +a(g7499 +g7501 +S'the' +p7503 +tp7504 +a(g7501 +g7503 +S"beggar's" +p7505 +tp7506 +a(g7503 +g7505 +S'form' +p7507 +tp7508 +a(g7505 +g7507 +S'suggests' +p7509 +tp7510 +a(g7507 +g7509 +S'that' +p7511 +tp7512 +a(g7509 +g7511 +S'he' +p7513 +tp7514 +a(g7511 +g7513 +S'is' +p7515 +tp7516 +a(g7513 +g7515 +S'not' +p7517 +tp7518 +a(g7515 +g7517 +S'of' +p7519 +tp7520 +a(g7517 +g7519 +S'this' +p7521 +tp7522 +a(g7519 +g7521 +S'world' +p7523 +tp7524 +a(g7521 +g7523 +S'and' +p7525 +tp7526 +a(g7523 +g7525 +S'hints' +p7527 +tp7528 +a(g7525 +g7527 +S'at' +p7529 +tp7530 +a(g7527 +g7529 +S'the' +p7531 +tp7532 +a(g7529 +g7531 +S'later' +p7533 +tp7534 +a(g7531 +g7533 +S'revelation' +p7535 +tp7536 +a(g7533 +g7535 +S'of' +p7537 +tp7538 +a(g7535 +g7537 +S'his' +p7539 +tp7540 +a(g7537 +g7539 +S'true' +p7541 +tp7542 +a(g7539 +g7541 +S'identity' +p7543 +tp7544 +a(g7541 +g7543 +S'in' +p7545 +tp7546 +a(g7543 +g7545 +S"martin's" +p7547 +tp7548 +a(g7545 +g7547 +S'dream.' +p7549 +tp7550 +a(g7547 +g7549 +S'this' +p7551 +tp7552 +a(g7549 +g7551 +S'painting' +p7553 +tp7554 +a(g7551 +g7553 +S'and' +p7555 +tp7556 +a(g7553 +g7555 +S'for' +p7557 +tp7558 +a(g7555 +g7557 +S'several' +p7559 +tp7560 +a(g7557 +g7559 +S'decades' +p7561 +tp7562 +a(g7559 +g7561 +S'after' +p7563 +tp7564 +a(g7561 +g7563 +S'canaletto' +p7565 +tp7566 +a(g7563 +g7565 +S'painted' +p7567 +tp7568 +a(g7565 +g7567 +S'his' +p7569 +tp7570 +a(g7567 +g7569 +S'the' +p7571 +tp7572 +a(g7569 +g7571 +S'rialto' +p7573 +tp7574 +a(g7571 +g7573 +S'bridge,' +p7575 +tp7576 +a(g7573 +g7575 +S'built' +p7577 +tp7578 +a(g7575 +g7577 +S'in' +p7579 +tp7580 +a(g7577 +g7579 +S'1592' +p7581 +tp7582 +a(g7579 +g7581 +S'as' +p7583 +tp7584 +a(g7581 +g7583 +S'the' +p7585 +tp7586 +a(g7583 +g7585 +S'first' +p7587 +tp7588 +a(g7585 +g7587 +S'stone' +p7589 +tp7590 +a(g7587 +g7589 +S'bridge' +p7591 +tp7592 +a(g7589 +g7591 +S'to' +p7593 +tp7594 +a(g7591 +g7593 +S'span' +p7595 +tp7596 +a(g7593 +g7595 +S'the' +p7597 +tp7598 +a(g7595 +g7597 +S'grand' +p7599 +tp7600 +a(g7597 +g7599 +S'canal,' +p7601 +tp7602 +a(g7599 +g7601 +S'is' +p7603 +tp7604 +a(g7601 +g7603 +S'the' +p7605 +tp7606 +a(g7603 +g7605 +S'focal' +p7607 +tp7608 +a(g7605 +g7607 +S'point' +p7609 +tp7610 +a(g7607 +g7609 +S'of' +p7611 +tp7612 +a(g7609 +g7611 +S"guardi's" +p7613 +tp7614 +a(g7611 +g7613 +S'composition,' +p7615 +tp7616 +a(g7613 +g7615 +S'one' +p7617 +tp7618 +a(g7615 +g7617 +S'of' +p7619 +tp7620 +a(g7617 +g7619 +S'several' +p7621 +tp7622 +a(g7619 +g7621 +S'versions' +p7623 +tp7624 +a(g7621 +g7623 +S'of' +p7625 +tp7626 +a(g7623 +g7625 +S'this' +p7627 +tp7628 +a(g7625 +g7627 +S'popular' +p7629 +tp7630 +a(g7627 +g7629 +S'attraction.' +p7631 +tp7632 +a(g7629 +g7631 +S'lined' +p7633 +tp7634 +a(g7631 +g7633 +S'with' +p7635 +tp7636 +a(g7633 +g7635 +S'market' +p7637 +tp7638 +a(g7635 +g7637 +S'stalls' +p7639 +tp7640 +a(g7637 +g7639 +S'and' +p7641 +tp7642 +a(g7639 +g7641 +S'shops,' +p7643 +tp7644 +a(g7641 +g7643 +S'it' +p7645 +tp7646 +a(g7643 +g7645 +S'formed' +p7647 +tp7648 +a(g7645 +g7647 +S'the' +p7649 +tp7650 +a(g7647 +g7649 +S'hub' +p7651 +tp7652 +a(g7649 +g7651 +S'of' +p7653 +tp7654 +a(g7651 +g7653 +S'an' +p7655 +tp7656 +a(g7653 +g7655 +S'important' +p7657 +tp7658 +a(g7655 +g7657 +S'commercial' +p7659 +tp7660 +a(g7657 +g7659 +S'center.' +p7661 +tp7662 +a(g7659 +g7661 +S'just' +p7663 +tp7664 +a(g7661 +g7663 +S'beyond' +p7665 +tp7666 +a(g7663 +g7665 +S'the' +p7667 +tp7668 +a(g7665 +g7667 +S'bridge' +p7669 +tp7670 +a(g7667 +g7669 +S'at' +p7671 +tp7672 +a(g7669 +g7671 +S'the' +p7673 +tp7674 +a(g7671 +g7673 +S'right' +p7675 +tp7676 +a(g7673 +g7675 +S'is' +p7677 +tp7678 +a(g7675 +g7677 +S'the' +p7679 +tp7680 +a(g7677 +g7679 +S'fondaco' +p7681 +tp7682 +a(g7679 +g7681 +S'dei' +p7683 +tp7684 +a(g7681 +g7683 +S'tedeschi,' +p7685 +tp7686 +a(g7683 +g7685 +S'the' +p7687 +tp7688 +a(g7685 +g7687 +S'warehouse' +p7689 +tp7690 +a(g7687 +g7689 +S'of' +p7691 +tp7692 +a(g7689 +g7691 +S'the' +p7693 +tp7694 +a(g7691 +g7693 +S'german' +p7695 +tp7696 +a(g7693 +g7695 +S'merchants' +p7697 +tp7698 +a(g7695 +g7697 +S'--' +p7699 +tp7700 +a(g7697 +g7699 +S'now' +p7701 +tp7702 +a(g7699 +g7701 +S'a' +p7703 +tp7704 +a(g7701 +g7703 +S'post' +p7705 +tp7706 +a(g7703 +g7705 +S'office' +p7707 +tp7708 +a(g7705 +g7707 +S'--' +p7709 +tp7710 +a(g7707 +g7709 +S'that' +p7711 +tp7712 +a(g7709 +g7711 +S'became' +p7713 +tp7714 +a(g7711 +g7713 +S'famous' +p7715 +tp7716 +a(g7713 +g7715 +S'in' +p7717 +tp7718 +a(g7715 +g7717 +S'the' +p7719 +tp7720 +a(g7717 +g7719 +S'renaissance' +p7721 +tp7722 +a(g7719 +g7721 +S'when' +p7723 +tp7724 +a(g7721 +g7723 +S'giorgione' +p7725 +tp7726 +a(g7723 +g7725 +S'and' +p7727 +tp7728 +a(g7725 +g7727 +S'titian' +p7729 +tp7730 +a(g7727 +g7729 +S'frescoed' +p7731 +tp7732 +a(g7729 +g7731 +S'its' +p7733 +tp7734 +a(g7731 +g7733 +S'facade.' +p7735 +tp7736 +a(g7733 +g7735 +S'people' +p7737 +tp7738 +a(g7735 +g7737 +S'poke' +p7739 +tp7740 +a(g7737 +g7739 +S'their' +p7741 +tp7742 +a(g7739 +g7741 +S'heads' +p7743 +tp7744 +a(g7741 +g7743 +S'out' +p7745 +tp7746 +a(g7743 +g7745 +S'of' +p7747 +tp7748 +a(g7745 +g7747 +S'windows' +p7749 +tp7750 +a(g7747 +g7749 +S'and' +p7751 +tp7752 +a(g7749 +g7751 +S'gather' +p7753 +tp7754 +a(g7751 +g7753 +S'on' +p7755 +tp7756 +a(g7753 +g7755 +S'the' +p7757 +tp7758 +a(g7755 +g7757 +S'balconies' +p7759 +tp7760 +a(g7757 +g7759 +S'to' +p7761 +tp7762 +a(g7759 +g7761 +S'watch' +p7763 +tp7764 +a(g7761 +g7763 +S'the' +p7765 +tp7766 +a(g7763 +g7765 +S'spectacle' +p7767 +tp7768 +a(g7765 +g7767 +S'of' +p7769 +tp7770 +a(g7767 +g7769 +S'daily' +p7771 +tp7772 +a(g7769 +g7771 +S'life' +p7773 +tp7774 +a(g7771 +g7773 +S'on' +p7775 +tp7776 +a(g7773 +g7775 +S'the' +p7777 +tp7778 +a(g7775 +g7777 +S'rialto.' +p7779 +tp7780 +a(g7777 +g7779 +S'the' +p7781 +tp7782 +a(g7779 +g7781 +S'artist' +p7783 +tp7784 +a(g7781 +g7783 +S'must' +p7785 +tp7786 +a(g7783 +g7785 +S'have' +p7787 +tp7788 +a(g7785 +g7787 +S'taken' +p7789 +tp7790 +a(g7787 +g7789 +S'his' +p7791 +tp7792 +a(g7789 +g7791 +S'view' +p7793 +tp7794 +a(g7791 +g7793 +S'from' +p7795 +tp7796 +a(g7793 +g7795 +S'a' +p7797 +tp7798 +a(g7795 +g7797 +S'similar' +p7799 +tp7800 +a(g7797 +g7799 +S'perch,' +p7801 +tp7802 +a(g7799 +g7801 +S'looking' +p7803 +tp7804 +a(g7801 +g7803 +S'down' +p7805 +tp7806 +a(g7803 +g7805 +S'on' +p7807 +tp7808 +a(g7805 +g7807 +S'the' +p7809 +tp7810 +a(g7807 +g7809 +S'bustling' +p7811 +tp7812 +a(g7809 +g7811 +S'scene.' +p7813 +tp7814 +a(g7811 +g7813 +S'market' +p7815 +tp7816 +a(g7813 +g7815 +S'barges' +p7817 +tp7818 +a(g7815 +g7817 +S'draped' +p7819 +tp7820 +a(g7817 +g7819 +S'in' +p7821 +tp7822 +a(g7819 +g7821 +S'canvas' +p7823 +tp7824 +a(g7821 +g7823 +S'canopies' +p7825 +tp7826 +a(g7823 +g7825 +S'are' +p7827 +tp7828 +a(g7825 +g7827 +S'tied' +p7829 +tp7830 +a(g7827 +g7829 +S'up' +p7831 +tp7832 +a(g7829 +g7831 +S'at' +p7833 +tp7834 +a(g7831 +g7833 +S'the' +p7835 +tp7836 +a(g7833 +g7835 +S'quayside.' +p7837 +tp7838 +a(g7835 +g7837 +S'energetic' +p7839 +tp7840 +a(g7837 +g7839 +S'gondoliers' +p7841 +tp7842 +a(g7839 +g7841 +S'pole' +p7843 +tp7844 +a(g7841 +g7843 +S'their' +p7845 +tp7846 +a(g7843 +g7845 +S'boats' +p7847 +tp7848 +a(g7845 +g7847 +S'up' +p7849 +tp7850 +a(g7847 +g7849 +S'the' +p7851 +tp7852 +a(g7849 +g7851 +S'crowded' +p7853 +tp7854 +a(g7851 +g7853 +S'canal.' +p7855 +tp7856 +a(g7853 +g7855 +S'in' +p7857 +tp7858 +a(g7855 +g7857 +S'the' +p7859 +tp7860 +a(g7857 +g7859 +S'lower' +p7861 +tp7862 +a(g7859 +g7861 +S'left' +p7863 +tp7864 +a(g7861 +g7863 +S'corner,' +p7865 +tp7866 +a(g7863 +g7865 +S'this' +p7867 +tp7868 +a(g7865 +g7867 +S'canvas' +p7869 +tp7870 +a(g7867 +g7869 +S'bears' +p7871 +tp7872 +a(g7869 +g7871 +S'frans' +p7873 +tp7874 +a(g7871 +g7873 +S"hals'" +p7875 +tp7876 +a(g7873 +g7875 +S'monogram:' +p7877 +tp7878 +a(g7875 +g7877 +S'the' +p7879 +tp7880 +a(g7877 +g7879 +S'fluid' +p7881 +tp7882 +a(g7879 +g7881 +S'brushstrokes' +p7883 +tp7884 +a(g7881 +g7883 +S'defining' +p7885 +tp7886 +a(g7883 +g7885 +S'individual' +p7887 +tp7888 +a(g7885 +g7887 +S'strands' +p7889 +tp7890 +a(g7887 +g7889 +S'of' +p7891 +tp7892 +a(g7889 +g7891 +S'hair' +p7893 +tp7894 +a(g7891 +g7893 +S'are' +p7895 +tp7896 +a(g7893 +g7895 +S'consistent' +p7897 +tp7898 +a(g7895 +g7897 +S'with' +p7899 +tp7900 +a(g7897 +g7899 +S"hals'" +p7901 +tp7902 +a(g7899 +g7901 +S'later' +p7903 +tp7904 +a(g7901 +g7903 +S'work.' +p7905 +tp7906 +a(g7903 +g7905 +S'at' +p7907 +tp7908 +a(g7905 +g7907 +S'that' +p7909 +tp7910 +a(g7907 +g7909 +S'time,' +p7911 +tp7912 +a(g7909 +g7911 +S'hats' +p7913 +tp7914 +a(g7911 +g7913 +S'with' +p7915 +tp7916 +a(g7913 +g7915 +S'cylindrical' +p7917 +tp7918 +a(g7915 +g7917 +S'crowns' +p7919 +tp7920 +a(g7917 +g7919 +S'and' +p7921 +tp7922 +a(g7919 +g7921 +S'upturned' +p7923 +tp7924 +a(g7921 +g7923 +S'brims' +p7925 +tp7926 +a(g7923 +g7925 +S'were' +p7927 +tp7928 +a(g7925 +g7927 +S'stylish.' +p7929 +tp7930 +a(g7927 +g7929 +S'this' +p7931 +tp7932 +a(g7929 +g7931 +S'hat' +p7933 +tp7934 +a(g7931 +g7933 +S'must' +p7935 +tp7936 +a(g7933 +g7935 +S'have' +p7937 +tp7938 +a(g7935 +g7937 +S'been' +p7939 +tp7940 +a(g7937 +g7939 +S'painted' +p7941 +tp7942 +a(g7939 +g7941 +S'out' +p7943 +tp7944 +a(g7941 +g7943 +S'sometime' +p7945 +tp7946 +a(g7943 +g7945 +S'before' +p7947 +tp7948 +a(g7945 +g7947 +S'1673.' +p7949 +tp7950 +a(g7947 +g7949 +S'that' +p7951 +tp7952 +a(g7949 +g7951 +S'was' +p7953 +tp7954 +a(g7951 +g7953 +S'the' +p7955 +tp7956 +a(g7953 +g7955 +S'year' +p7957 +tp7958 +a(g7955 +g7957 +S'of' +p7959 +tp7960 +a(g7957 +g7959 +S'the' +p7961 +tp7962 +a(g7959 +g7961 +S'death' +p7963 +tp7964 +a(g7961 +g7963 +S'of' +p7965 +tp7966 +a(g7963 +g7965 +S'a' +p7967 +tp7968 +a(g7965 +g7967 +S'minor' +p7969 +tp7970 +a(g7967 +g7969 +S'dutch' +p7971 +tp7972 +a(g7969 +g7971 +S'artist' +p7973 +tp7974 +a(g7971 +g7973 +S'who' +p7975 +tp7976 +a(g7973 +g7975 +S'copied' +p7977 +tp7978 +a(g7975 +g7977 +S'this' +p7979 +tp7980 +a(g7977 +g7979 +S'portrait' +p7981 +tp7982 +a(g7979 +g7981 +S'with' +p7983 +tp7984 +a(g7981 +g7983 +S'the' +p7985 +tp7986 +a(g7983 +g7985 +S'model' +p7987 +tp7988 +a(g7985 +g7987 +S'bare-headed.' +p7989 +tp7990 +a(g7987 +g7989 +S'in' +p7991 +tp7992 +a(g7989 +g7991 +S'1991,' +p7993 +tp7994 +a(g7991 +g7993 +S'national' +p7995 +tp7996 +a(g7993 +g7995 +S'gallery' +p7997 +tp7998 +a(g7995 +g7997 +S'conservators' +p7999 +tp8000 +a(g7997 +g7999 +S'removed' +p8001 +tp8002 +a(g7999 +g8001 +S'the' +p8003 +tp8004 +a(g8001 +g8003 +S'overpaint' +p8005 +tp8006 +a(g8003 +g8005 +S'and' +p8007 +tp8008 +a(g8005 +g8007 +S'revealed' +p8009 +tp8010 +a(g8007 +g8009 +S'the' +p8011 +tp8012 +a(g8009 +g8011 +S"portrait's" +p8013 +tp8014 +a(g8011 +g8013 +S'original' +p8015 +tp8016 +a(g8013 +g8015 +S'appearance' +p8017 +tp8018 +a(g8015 +g8017 +S'with' +p8019 +tp8020 +a(g8017 +g8019 +S'the' +p8021 +tp8022 +a(g8019 +g8021 +S'hat' +p8023 +tp8024 +a(g8021 +g8023 +S'pushed' +p8025 +tp8026 +a(g8023 +g8025 +S'back' +p8027 +tp8028 +a(g8025 +g8027 +S'high' +p8029 +tp8030 +a(g8027 +g8029 +S'on' +p8031 +tp8032 +a(g8029 +g8031 +S'the' +p8033 +tp8034 +a(g8031 +g8033 +S'head.' +p8035 +tp8036 +a(g8033 +g8035 +S'sketchy' +p8037 +tp8038 +a(g8035 +g8037 +S'contours,' +p8039 +tp8040 +a(g8037 +g8039 +S'especially' +p8041 +tp8042 +a(g8039 +g8041 +S'around' +p8043 +tp8044 +a(g8041 +g8043 +S'the' +p8045 +tp8046 +a(g8043 +g8045 +S'hat' +p8047 +tp8048 +a(g8045 +g8047 +S'and' +p8049 +tp8050 +a(g8047 +g8049 +S'cape,' +p8051 +tp8052 +a(g8049 +g8051 +S'are' +p8053 +tp8054 +a(g8051 +g8053 +S'evidence' +p8055 +tp8056 +a(g8053 +g8055 +S'that' +p8057 +tp8058 +a(g8055 +g8057 +S'hals' +p8059 +tp8060 +a(g8057 +g8059 +S'improvised' +p8061 +tp8062 +a(g8059 +g8061 +S'and' +p8063 +tp8064 +a(g8061 +g8063 +S'adjusted' +p8065 +tp8066 +a(g8063 +g8065 +S'this' +p8067 +tp8068 +a(g8065 +g8067 +S'design' +p8069 +tp8070 +a(g8067 +g8069 +S'as' +p8071 +tp8072 +a(g8069 +g8071 +S'he' +p8073 +tp8074 +a(g8071 +g8073 +S'worked.' +p8075 +tp8076 +a(g8073 +g8075 +S'the' +p8077 +tp8078 +a(g8075 +g8077 +S'long' +p8079 +tp8080 +a(g8077 +g8079 +S'cape,' +p8081 +tp8082 +a(g8079 +g8081 +S'the' +p8083 +tp8084 +a(g8081 +g8083 +S'tassels' +p8085 +tp8086 +a(g8083 +g8085 +S'on' +p8087 +tp8088 +a(g8085 +g8087 +S'the' +p8089 +tp8090 +a(g8087 +g8089 +S'collar,' +p8091 +tp8092 +a(g8089 +g8091 +S'and' +p8093 +tp8094 +a(g8091 +g8093 +S'the' +p8095 +tp8096 +a(g8093 +g8095 +S'gloves' +p8097 +tp8098 +a(g8095 +g8097 +S'dangling' +p8099 +tp8100 +a(g8097 +g8099 +S'idly' +p8101 +tp8102 +a(g8099 +g8101 +S'from' +p8103 +tp8104 +a(g8101 +g8103 +S'one' +p8105 +tp8106 +a(g8103 +g8105 +S'hand' +p8107 +tp8108 +a(g8105 +g8107 +S'indicate' +p8109 +tp8110 +a(g8107 +g8109 +S'that' +p8111 +tp8112 +a(g8109 +g8111 +S'the' +p8113 +tp8114 +a(g8111 +g8113 +S'patron' +p8115 +tp8116 +a(g8113 +g8115 +S'was' +p8117 +tp8118 +a(g8115 +g8117 +S'a' +p8119 +tp8120 +a(g8117 +g8119 +S'person' +p8121 +tp8122 +a(g8119 +g8121 +S'of' +p8123 +tp8124 +a(g8121 +g8123 +S'some' +p8125 +tp8126 +a(g8123 +g8125 +S'means.' +p8127 +tp8128 +a(g8125 +g8127 +S'like' +p8129 +tp8130 +a(g8127 +g8129 +S"hals'" +p8131 +tp8132 +a(g8129 +g8131 +S'the' +p8133 +tp8134 +a(g8131 +g8133 +S'very' +p8135 +tp8136 +a(g8133 +g8135 +S'fact' +p8137 +tp8138 +a(g8135 +g8137 +S'that' +p8139 +tp8140 +a(g8137 +g8139 +S'this' +p8141 +tp8142 +a(g8139 +g8141 +S'is' +p8143 +tp8144 +a(g8141 +g8143 +S'a' +p8145 +tp8146 +a(g8143 +g8145 +S'three-quarter-length' +p8147 +tp8148 +a(g8145 +g8147 +S'figure' +p8149 +tp8150 +a(g8147 +g8149 +S'adds' +p8151 +tp8152 +a(g8149 +g8151 +S'to' +p8153 +tp8154 +a(g8151 +g8153 +S'its' +p8155 +tp8156 +a(g8153 +g8155 +S'dignity.' +p8157 +tp8158 +a(g8155 +g8157 +S'full-length,' +p8159 +tp8160 +a(g8157 +g8159 +S'life-size' +p8161 +tp8162 +a(g8159 +g8161 +S'portraits' +p8163 +tp8164 +a(g8161 +g8163 +S'of' +p8165 +tp8166 +a(g8163 +g8165 +S'individual' +p8167 +tp8168 +a(g8165 +g8167 +S'sitters' +p8169 +tp8170 +a(g8167 +g8169 +S'were' +p8171 +tp8172 +a(g8169 +g8171 +S'very' +p8173 +tp8174 +a(g8171 +g8173 +S'unusual' +p8175 +tp8176 +a(g8173 +g8175 +S'in' +p8177 +tp8178 +a(g8175 +g8177 +S'seventeenth-century' +p8179 +tp8180 +a(g8177 +g8179 +S'holland,' +p8181 +tp8182 +a(g8179 +g8181 +S'probably' +p8183 +tp8184 +a(g8181 +g8183 +S'because' +p8185 +tp8186 +a(g8183 +g8185 +S'the' +p8187 +tp8188 +a(g8185 +g8187 +S'dutch' +p8189 +tp8190 +a(g8187 +g8189 +S'burghers' +p8191 +tp8192 +a(g8189 +g8191 +S'associated' +p8193 +tp8194 +a(g8191 +g8193 +S'such' +p8195 +tp8196 +a(g8193 +g8195 +S'large' +p8197 +tp8198 +a(g8195 +g8197 +S'images' +p8199 +tp8200 +a(g8197 +g8199 +S'with' +p8201 +tp8202 +a(g8199 +g8201 +S'aristocratic' +p8203 +tp8204 +a(g8201 +g8203 +S'pretensions.' +p8205 +tp8206 +a(g8203 +g8205 +S'frans' +p8207 +tp8208 +a(g8205 +g8207 +S'hals' +p8209 +tp8210 +a(g8207 +g8209 +S'painted' +p8211 +tp8212 +a(g8209 +g8211 +S'only' +p8213 +tp8214 +a(g8211 +g8213 +S'one' +p8215 +tp8216 +a(g8213 +g8215 +S'life-size,' +p8217 +tp8218 +a(g8215 +g8217 +S'full-length' +p8219 +tp8220 +a(g8217 +g8219 +S'likeness' +p8221 +tp8222 +a(g8219 +g8221 +S'of' +p8223 +tp8224 +a(g8221 +g8223 +S'an' +p8225 +tp8226 +a(g8223 +g8225 +S'individual' +p8227 +tp8228 +a(g8225 +g8227 +S'sitter.' +p8229 +tp8230 +a(g8227 +g8229 +S'a' +p8231 +tp8232 +a(g8229 +g8231 +S'three-quarter-length' +p8233 +tp8234 +a(g8231 +g8233 +S'portrait,' +p8235 +tp8236 +a(g8233 +g8235 +S'therefore,' +p8237 +tp8238 +a(g8235 +g8237 +S'is' +p8239 +tp8240 +a(g8237 +g8239 +S'as' +p8241 +tp8242 +a(g8239 +g8241 +S'about' +p8243 +tp8244 +a(g8241 +g8243 +S'as' +p8245 +tp8246 +a(g8243 +g8245 +S'grandiose' +p8247 +tp8248 +a(g8245 +g8247 +S'a' +p8249 +tp8250 +a(g8247 +g8249 +S'work' +p8251 +tp8252 +a(g8249 +g8251 +S'as' +p8253 +tp8254 +a(g8251 +g8253 +S'this' +p8255 +tp8256 +a(g8253 +g8255 +S'matter-of-fact' +p8257 +tp8258 +a(g8255 +g8257 +S'artist' +p8259 +tp8260 +a(g8257 +g8259 +S'produced.' +p8261 +tp8262 +a(g8259 +g8261 +S'even' +p8263 +tp8264 +a(g8261 +g8263 +S'here,' +p8265 +tp8266 +a(g8263 +g8265 +S'though,' +p8267 +tp8268 +a(g8265 +g8267 +S'hals' +p8269 +tp8270 +a(g8267 +g8269 +S'candidly' +p8271 +tp8272 +a(g8269 +g8271 +S'recorded' +p8273 +tp8274 +a(g8271 +g8273 +S'a' +p8275 +tp8276 +a(g8273 +g8275 +S'mole' +p8277 +tp8278 +a(g8275 +g8277 +S'on' +p8279 +tp8280 +a(g8277 +g8279 +S'the' +p8281 +tp8282 +a(g8279 +g8281 +S'handsome' +p8283 +tp8284 +a(g8281 +g8283 +S"sitter's" +p8285 +tp8286 +a(g8283 +g8285 +S'cheek.' +p8287 +tp8288 +a(g8285 +g8287 +S'as' +p8289 +tp8290 +a(g8287 +g8289 +S'barges' +p8291 +tp8292 +a(g8289 +g8291 +S'and' +p8293 +tp8294 +a(g8291 +g8293 +S'gondolas' +p8295 +tp8296 +a(g8293 +g8295 +S'slowly' +p8297 +tp8298 +a(g8295 +g8297 +S'cross' +p8299 +tp8300 +a(g8297 +g8299 +S'the' +p8301 +tp8302 +a(g8299 +g8301 +S'venetian' +p8303 +tp8304 +a(g8301 +g8303 +S'lagoon,' +p8305 +tp8306 +a(g8303 +g8305 +S'the' +p8307 +tp8308 +a(g8305 +g8307 +S'misty' +p8309 +tp8310 +a(g8307 +g8309 +S'city' +p8311 +tp8312 +a(g8309 +g8311 +S'vanishes' +p8313 +tp8314 +a(g8311 +g8313 +S'in' +p8315 +tp8316 +a(g8313 +g8315 +S'the' +p8317 +tp8318 +a(g8315 +g8317 +S'twilight.' +p8319 +tp8320 +a(g8317 +g8319 +S'hobbema' +p8321 +tp8322 +a(g8319 +g8321 +S'studied' +p8323 +tp8324 +a(g8321 +g8323 +S'under' +p8325 +tp8326 +a(g8323 +g8325 +S'to' +p8327 +tp8328 +a(g8325 +g8327 +S'create' +p8329 +tp8330 +a(g8327 +g8329 +S'his' +p8331 +tp8332 +a(g8329 +g8331 +S'picturesque' +p8333 +tp8334 +a(g8331 +g8333 +S'canvases,' +p8335 +tp8336 +a(g8333 +g8335 +S'hobbema' +p8337 +tp8338 +a(g8335 +g8337 +S'rearranged' +p8339 +tp8340 +a(g8337 +g8339 +S'certain' +p8341 +tp8342 +a(g8339 +g8341 +S'favorite' +p8343 +tp8344 +a(g8341 +g8343 +S'elements' +p8345 +tp8346 +a(g8343 +g8345 +S'such' +p8347 +tp8348 +a(g8345 +g8347 +S'as' +p8349 +tp8350 +a(g8347 +g8349 +S'old' +p8351 +tp8352 +a(g8349 +g8351 +S'water' +p8353 +tp8354 +a(g8351 +g8353 +S'mills,' +p8355 +tp8356 +a(g8353 +g8355 +S'thatch-roofed' +p8357 +tp8358 +a(g8355 +g8357 +S'cottages,' +p8359 +tp8360 +a(g8357 +g8359 +S'and' +p8361 +tp8362 +a(g8359 +g8361 +S'embanked' +p8363 +tp8364 +a(g8361 +g8363 +S'dikes.' +p8365 +tp8366 +a(g8363 +g8365 +S'hobbema’s' +p8367 +tp8368 +a(g8365 +g8367 +S'hallmark' +p8369 +tp8370 +a(g8367 +g8369 +S'is' +p8371 +tp8372 +a(g8369 +g8371 +S'rolling' +p8373 +tp8374 +a(g8371 +g8373 +S'clouds' +p8375 +tp8376 +a(g8373 +g8375 +S'that' +p8377 +tp8378 +a(g8375 +g8377 +S'give' +p8379 +tp8380 +a(g8377 +g8379 +S'promise' +p8381 +tp8382 +a(g8379 +g8381 +S'of' +p8383 +tp8384 +a(g8381 +g8383 +S'a' +p8385 +tp8386 +a(g8383 +g8385 +S'refreshing' +p8387 +tp8388 +a(g8385 +g8387 +S'rain.' +p8389 +tp8390 +a(g8387 +g8389 +S'patches' +p8391 +tp8392 +a(g8389 +g8391 +S'of' +p8393 +tp8394 +a(g8391 +g8393 +S'sunshine' +p8395 +tp8396 +a(g8393 +g8395 +S'illuminate' +p8397 +tp8398 +a(g8395 +g8397 +S'the' +p8399 +tp8400 +a(g8397 +g8399 +S'rutted' +p8401 +tp8402 +a(g8399 +g8401 +S'roads' +p8403 +tp8404 +a(g8401 +g8403 +S'or' +p8405 +tp8406 +a(g8403 +g8405 +S'small' +p8407 +tp8408 +a(g8405 +g8407 +S'streams' +p8409 +tp8410 +a(g8407 +g8409 +S'that' +p8411 +tp8412 +a(g8409 +g8411 +S'lead' +p8413 +tp8414 +a(g8411 +g8413 +S'back' +p8415 +tp8416 +a(g8413 +g8415 +S'into' +p8417 +tp8418 +a(g8415 +g8417 +S'the' +p8419 +tp8420 +a(g8417 +g8419 +S'rustic' +p8421 +tp8422 +a(g8419 +g8421 +S'woods.' +p8423 +tp8424 +a(g8421 +g8423 +S'all' +p8425 +tp8426 +a(g8423 +g8425 +S'six' +p8427 +tp8428 +a(g8425 +g8427 +S'of' +p8429 +tp8430 +a(g8427 +g8429 +S'the' +p8431 +tp8432 +a(g8429 +g8431 +S'national' +p8433 +tp8434 +a(g8431 +g8433 +S'gallery’s' +p8435 +tp8436 +a(g8433 +g8435 +S'canvases' +p8437 +tp8438 +a(g8435 +g8437 +S'by' +p8439 +tp8440 +a(g8437 +g8439 +S'hobbema' +p8441 +tp8442 +a(g8439 +g8441 +S'share' +p8443 +tp8444 +a(g8441 +g8443 +S'these' +p8445 +tp8446 +a(g8443 +g8445 +S'characteristics.' +p8447 +tp8448 +a(g8445 +g8447 +S'in' +p8449 +tp8450 +a(g8447 +g8449 +S'1669,' +p8451 +tp8452 +a(g8449 +g8451 +S'hobbema' +p8453 +tp8454 +a(g8451 +g8453 +S'was' +p8455 +tp8456 +a(g8453 +g8455 +S'appointed' +p8457 +tp8458 +a(g8455 +g8457 +S'amsterdam’s' +p8459 +tp8460 +a(g8457 +g8459 +S'inspector' +p8461 +tp8462 +a(g8459 +g8461 +S'of' +p8463 +tp8464 +a(g8461 +g8463 +S'imported' +p8465 +tp8466 +a(g8463 +g8465 +S'wine.' +p8467 +tp8468 +a(g8465 +g8467 +S'this' +p8469 +tp8470 +a(g8467 +g8469 +S'civil-service' +p8471 +tp8472 +a(g8469 +g8471 +S'job' +p8473 +tp8474 +a(g8471 +g8473 +S'must' +p8475 +tp8476 +a(g8473 +g8475 +S'have' +p8477 +tp8478 +a(g8475 +g8477 +S'been' +p8479 +tp8480 +a(g8477 +g8479 +S'profitable' +p8481 +tp8482 +a(g8479 +g8481 +S'because' +p8483 +tp8484 +a(g8481 +g8483 +S'very' +p8485 +tp8486 +a(g8483 +g8485 +S'few' +p8487 +tp8488 +a(g8485 +g8487 +S'paintings' +p8489 +tp8490 +a(g8487 +g8489 +S'date' +p8491 +tp8492 +a(g8489 +g8491 +S'from' +p8493 +tp8494 +a(g8491 +g8493 +S'the' +p8495 +tp8496 +a(g8493 +g8495 +S'remaining' +p8497 +tp8498 +a(g8495 +g8497 +S'forty' +p8499 +tp8500 +a(g8497 +g8499 +S'years' +p8501 +tp8502 +a(g8499 +g8501 +S'of' +p8503 +tp8504 +a(g8501 +g8503 +S'hobbema’s' +p8505 +tp8506 +a(g8503 +g8505 +S'life.' +p8507 +tp8508 +a(g8505 +g8507 +S'john' +p8509 +tp8510 +a(g8507 +g8509 +S'hoppner' +p8511 +tp8512 +a(g8509 +g8511 +S'exhibited' +p8513 +tp8514 +a(g8511 +g8513 +S'this' +p8515 +tp8516 +a(g8513 +g8515 +S'engaging' +p8517 +tp8518 +a(g8515 +g8517 +S'portrait' +p8519 +tp8520 +a(g8517 +g8519 +S'of' +p8521 +tp8522 +a(g8519 +g8521 +S'his' +p8523 +tp8524 +a(g8521 +g8523 +S'own' +p8525 +tp8526 +a(g8523 +g8525 +S'three' +p8527 +tp8528 +a(g8525 +g8527 +S'sons' +p8529 +tp8530 +a(g8527 +g8529 +S'at' +p8531 +tp8532 +a(g8529 +g8531 +S'the' +p8533 +tp8534 +a(g8531 +g8533 +S'royal' +p8535 +tp8536 +a(g8533 +g8535 +S'academy' +p8537 +tp8538 +a(g8535 +g8537 +S'in' +p8539 +tp8540 +a(g8537 +g8539 +S'1791.' +p8541 +tp8542 +a(g8539 +g8541 +S'preparing' +p8543 +tp8544 +a(g8541 +g8543 +S'to' +p8545 +tp8546 +a(g8543 +g8545 +S'bathe' +p8547 +tp8548 +a(g8545 +g8547 +S'in' +p8549 +tp8550 +a(g8547 +g8549 +S'a' +p8551 +tp8552 +a(g8549 +g8551 +S'brook,' +p8553 +tp8554 +a(g8551 +g8553 +S'seven-year-old' +p8555 +tp8556 +a(g8553 +g8555 +S'catherine' +p8557 +tp8558 +a(g8555 +g8557 +S'hampden' +p8559 +tp8560 +a(g8557 +g8559 +S'unbuttons' +p8561 +tp8562 +a(g8559 +g8561 +S'his' +p8563 +tp8564 +a(g8561 +g8563 +S'jacket.' +p8565 +tp8566 +a(g8563 +g8565 +S'as' +p8567 +tp8568 +a(g8565 +g8567 +S'the' +p8569 +tp8570 +a(g8567 +g8569 +S'eldest' +p8571 +tp8572 +a(g8569 +g8571 +S'brother,' +p8573 +tp8574 +a(g8571 +g8573 +S'he' +p8575 +tp8576 +a(g8573 +g8575 +S'stands' +p8577 +tp8578 +a(g8575 +g8577 +S'with' +p8579 +tp8580 +a(g8577 +g8579 +S'dignity' +p8581 +tp8582 +a(g8579 +g8581 +S'and' +p8583 +tp8584 +a(g8581 +g8583 +S'greets' +p8585 +tp8586 +a(g8583 +g8585 +S'the' +p8587 +tp8588 +a(g8585 +g8587 +S'viewer.' +p8589 +tp8590 +a(g8587 +g8589 +S'richard,' +p8591 +tp8592 +a(g8589 +g8591 +S'already' +p8593 +tp8594 +a(g8591 +g8593 +S'undressed,' +p8595 +tp8596 +a(g8593 +g8595 +S'looks' +p8597 +tp8598 +a(g8595 +g8597 +S'adoringly' +p8599 +tp8600 +a(g8597 +g8599 +S'up' +p8601 +tp8602 +a(g8599 +g8601 +S'at' +p8603 +tp8604 +a(g8601 +g8603 +S'catherine,' +p8605 +tp8606 +a(g8603 +g8605 +S'while' +p8607 +tp8608 +a(g8605 +g8607 +S'baby' +p8609 +tp8610 +a(g8607 +g8609 +S'wilson' +p8611 +tp8612 +a(g8609 +g8611 +S'struggles' +p8613 +tp8614 +a(g8611 +g8613 +S'gamely' +p8615 +tp8616 +a(g8613 +g8615 +S'to' +p8617 +tp8618 +a(g8615 +g8617 +S'undo' +p8619 +tp8620 +a(g8617 +g8619 +S'his' +p8621 +tp8622 +a(g8619 +g8621 +S'frock.' +p8623 +tp8624 +a(g8621 +g8623 +S'as' +p8625 +tp8626 +a(g8623 +g8625 +S'adults,' +p8627 +tp8628 +a(g8625 +g8627 +S'the' +p8629 +tp8630 +a(g8627 +g8629 +S'older' +p8631 +tp8632 +a(g8629 +g8631 +S'boys' +p8633 +tp8634 +a(g8631 +g8633 +S'had' +p8635 +tp8636 +a(g8633 +g8635 +S'political' +p8637 +tp8638 +a(g8635 +g8637 +S'and' +p8639 +tp8640 +a(g8637 +g8639 +S'diplomatic' +p8641 +tp8642 +a(g8639 +g8641 +S'careers;' +p8643 +tp8644 +a(g8641 +g8643 +S'the' +p8645 +tp8646 +a(g8643 +g8645 +S'baby' +p8647 +tp8648 +a(g8645 +g8647 +S'became' +p8649 +tp8650 +a(g8647 +g8649 +S'a' +p8651 +tp8652 +a(g8649 +g8651 +S'painter.' +p8653 +tp8654 +a(g8651 +g8653 +S'john' +p8655 +tp8656 +a(g8653 +g8655 +S'hoppner,' +p8657 +tp8658 +a(g8655 +g8657 +S'something' +p8659 +tp8660 +a(g8657 +g8659 +S'of' +p8661 +tp8662 +a(g8659 +g8661 +S'a' +p8663 +tp8664 +a(g8661 +g8663 +S'prodigy,' +p8665 +tp8666 +a(g8663 +g8665 +S'won' +p8667 +tp8668 +a(g8665 +g8667 +S'the' +p8669 +tp8670 +a(g8667 +g8669 +S'royal' +p8671 +tp8672 +a(g8669 +g8671 +S"academy's" +p8673 +tp8674 +a(g8671 +g8673 +S'gold' +p8675 +tp8676 +a(g8673 +g8675 +S'medal' +p8677 +tp8678 +a(g8675 +g8677 +S'for' +p8679 +tp8680 +a(g8677 +g8679 +S'the' +p8681 +tp8682 +a(g8679 +g8681 +S'best' +p8683 +tp8684 +a(g8681 +g8683 +S'painting' +p8685 +tp8686 +a(g8683 +g8685 +S'of' +p8687 +tp8688 +a(g8685 +g8687 +S'the' +p8689 +tp8690 +a(g8687 +g8689 +S'year' +p8691 +tp8692 +a(g8689 +g8691 +S'when' +p8693 +tp8694 +a(g8691 +g8693 +S'he' +p8695 +tp8696 +a(g8693 +g8695 +S'was' +p8697 +tp8698 +a(g8695 +g8697 +S'only' +p8699 +tp8700 +a(g8697 +g8699 +S'twenty-three.' +p8701 +tp8702 +a(g8699 +g8701 +S"hoppner's" +p8703 +tp8704 +a(g8701 +g8703 +S'father' +p8705 +tp8706 +a(g8703 +g8705 +S'was' +p8707 +tp8708 +a(g8705 +g8707 +S'a' +p8709 +tp8710 +a(g8707 +g8709 +S'german-born' +p8711 +tp8712 +a(g8709 +g8711 +S'surgeon' +p8713 +tp8714 +a(g8711 +g8713 +S'to' +p8715 +tp8716 +a(g8713 +g8715 +S'the' +p8717 +tp8718 +a(g8715 +g8717 +S'british' +p8719 +tp8720 +a(g8717 +g8719 +S'court.' +p8721 +tp8722 +a(g8719 +g8721 +S'the' +p8723 +tp8724 +a(g8721 +g8723 +S'artist' +p8725 +tp8726 +a(g8723 +g8725 +S'himself,' +p8727 +tp8728 +a(g8725 +g8727 +S'however,' +p8729 +tp8730 +a(g8727 +g8729 +S'encouraged' +p8731 +tp8732 +a(g8729 +g8731 +S'rumors' +p8733 +tp8734 +a(g8731 +g8733 +S'that' +p8735 +tp8736 +a(g8733 +g8735 +S'he' +p8737 +tp8738 +a(g8735 +g8737 +S'was' +p8739 +tp8740 +a(g8737 +g8739 +S'the' +p8741 +tp8742 +a(g8739 +g8741 +S'illegitimate' +p8743 +tp8744 +a(g8741 +g8743 +S'son' +p8745 +tp8746 +a(g8743 +g8745 +S'of' +p8747 +tp8748 +a(g8745 +g8747 +S'king' +p8749 +tp8750 +a(g8747 +g8749 +S'george' +p8751 +tp8752 +a(g8749 +g8751 +S'iii.' +p8753 +tp8754 +a(g8751 +g8753 +S'such' +p8755 +tp8756 +a(g8753 +g8755 +S'association' +p8757 +tp8758 +a(g8755 +g8757 +S'with' +p8759 +tp8760 +a(g8757 +g8759 +S'royalty,' +p8761 +tp8762 +a(g8759 +g8761 +S'even' +p8763 +tp8764 +a(g8761 +g8763 +S'though' +p8765 +tp8766 +a(g8763 +g8765 +S'dubious,' +p8767 +tp8768 +a(g8765 +g8767 +S'elevated' +p8769 +tp8770 +a(g8767 +g8769 +S'him' +p8771 +tp8772 +a(g8769 +g8771 +S'in' +p8773 +tp8774 +a(g8771 +g8773 +S'society' +p8775 +tp8776 +a(g8773 +g8775 +S'and' +p8777 +tp8778 +a(g8775 +g8777 +S'boosted' +p8779 +tp8780 +a(g8777 +g8779 +S'his' +p8781 +tp8782 +a(g8779 +g8781 +S'career.' +p8783 +tp8784 +a(g8781 +g8783 +S'before' +p8785 +tp8786 +a(g8783 +g8785 +S'this' +p8787 +tp8788 +a(g8785 +g8787 +S'painting' +p8789 +tp8790 +a(g8787 +g8789 +S'was' +p8791 +tp8792 +a(g8789 +g8791 +S'transferred' +p8793 +tp8794 +a(g8791 +g8793 +S'to' +p8795 +tp8796 +a(g8793 +g8795 +S'a' +p8797 +tp8798 +a(g8795 +g8797 +S'canvas' +p8799 +tp8800 +a(g8797 +g8799 +S'support,' +p8801 +tp8802 +a(g8799 +g8801 +S'an' +p8803 +tp8804 +a(g8801 +g8803 +S'inscription' +p8805 +tp8806 +a(g8803 +g8805 +S'on' +p8807 +tp8808 +a(g8805 +g8807 +S'the' +p8809 +tp8810 +a(g8807 +g8809 +S'back' +p8811 +tp8812 +a(g8809 +g8811 +S'of' +p8813 +tp8814 +a(g8811 +g8813 +S'the' +p8815 +tp8816 +a(g8813 +g8815 +S'original' +p8817 +tp8818 +a(g8815 +g8817 +S'wood' +p8819 +tp8820 +a(g8817 +g8819 +S'panel' +p8821 +tp8822 +a(g8819 +g8821 +S'read,' +p8823 +tp8824 +a(g8821 +g8823 +S'"lorenzo' +p8825 +tp8826 +a(g8823 +g8825 +S'di' +p8827 +tp8828 +a(g8825 +g8827 +S'credi,' +p8829 +tp8830 +a(g8827 +g8829 +S'most' +p8831 +tp8832 +a(g8829 +g8831 +S'excellent' +p8833 +tp8834 +a(g8831 +g8833 +S'painter,' +p8835 +tp8836 +a(g8833 +g8835 +S'1488,' +p8837 +tp8838 +a(g8835 +g8837 +S'age' +p8839 +tp8840 +a(g8837 +g8839 +S'32' +p8841 +tp8842 +a(g8839 +g8841 +S'years,' +p8843 +tp8844 +a(g8841 +g8843 +S'8' +p8845 +tp8846 +a(g8843 +g8845 +S'months."' +p8847 +tp8848 +a(g8845 +g8847 +S'it' +p8849 +tp8850 +a(g8847 +g8849 +S'was' +p8851 +tp8852 +a(g8849 +g8851 +S'probably' +p8853 +tp8854 +a(g8851 +g8853 +S'added' +p8855 +tp8856 +a(g8853 +g8855 +S'in' +p8857 +tp8858 +a(g8855 +g8857 +S'the' +p8859 +tp8860 +a(g8857 +g8859 +S'sixteenth' +p8861 +tp8862 +a(g8859 +g8861 +S'century,' +p8863 +tp8864 +a(g8861 +g8863 +S'when' +p8865 +tp8866 +a(g8863 +g8865 +S"credi's" +p8867 +tp8868 +a(g8865 +g8867 +S'reputation' +p8869 +tp8870 +a(g8867 +g8869 +S'was' +p8871 +tp8872 +a(g8869 +g8871 +S'at' +p8873 +tp8874 +a(g8871 +g8873 +S'its' +p8875 +tp8876 +a(g8873 +g8875 +S'height.' +p8877 +tp8878 +a(g8875 +g8877 +S'he' +p8879 +tp8880 +a(g8877 +g8879 +S'was' +p8881 +tp8882 +a(g8879 +g8881 +S'one' +p8883 +tp8884 +a(g8881 +g8883 +S'of' +p8885 +tp8886 +a(g8883 +g8885 +S'many' +p8887 +tp8888 +a(g8885 +g8887 +S'students' +p8889 +tp8890 +a(g8887 +g8889 +S'in' +p8891 +tp8892 +a(g8889 +g8891 +S'the' +p8893 +tp8894 +a(g8891 +g8893 +S'busy' +p8895 +tp8896 +a(g8893 +g8895 +S'florentine' +p8897 +tp8898 +a(g8895 +g8897 +S'workshop' +p8899 +tp8900 +a(g8897 +g8899 +S'of' +p8901 +tp8902 +a(g8899 +g8901 +S'the' +p8903 +tp8904 +a(g8901 +g8903 +S"subject's" +p8905 +tp8906 +a(g8903 +g8905 +S'aquiline' +p8907 +tp8908 +a(g8905 +g8907 +S'nose' +p8909 +tp8910 +a(g8907 +g8909 +S'and' +p8911 +tp8912 +a(g8909 +g8911 +S'jutting' +p8913 +tp8914 +a(g8911 +g8913 +S'chin' +p8915 +tp8916 +a(g8913 +g8915 +S'compare' +p8917 +tp8918 +a(g8915 +g8917 +S'well' +p8919 +tp8920 +a(g8917 +g8919 +S'with' +p8921 +tp8922 +a(g8919 +g8921 +S'another' +p8923 +tp8924 +a(g8921 +g8923 +S'known' +p8925 +tp8926 +a(g8923 +g8925 +S'likeness' +p8927 +tp8928 +a(g8925 +g8927 +S'of' +p8929 +tp8930 +a(g8927 +g8929 +S'credi' +p8931 +tp8932 +a(g8929 +g8931 +S'as' +p8933 +tp8934 +a(g8931 +g8933 +S'an' +p8935 +tp8936 +a(g8933 +g8935 +S'older' +p8937 +tp8938 +a(g8935 +g8937 +S'man,' +p8939 +tp8940 +a(g8937 +g8939 +S'and' +p8941 +tp8942 +a(g8939 +g8941 +S'for' +p8943 +tp8944 +a(g8941 +g8943 +S'many' +p8945 +tp8946 +a(g8943 +g8945 +S'years' +p8947 +tp8948 +a(g8945 +g8947 +S'the' +p8949 +tp8950 +a(g8947 +g8949 +S'painting' +p8951 +tp8952 +a(g8949 +g8951 +S'was' +p8953 +tp8954 +a(g8951 +g8953 +S'accepted' +p8955 +tp8956 +a(g8953 +g8955 +S'as' +p8957 +tp8958 +a(g8955 +g8957 +S'a' +p8959 +tp8960 +a(g8957 +g8959 +S'self-portrait.' +p8961 +tp8962 +a(g8959 +g8961 +S'now,' +p8963 +tp8964 +a(g8961 +g8963 +S'however,' +p8965 +tp8966 +a(g8963 +g8965 +S'it' +p8967 +tp8968 +a(g8965 +g8967 +S'is' +p8969 +tp8970 +a(g8967 +g8969 +S'thought' +p8971 +tp8972 +a(g8969 +g8971 +S'to' +p8973 +tp8974 +a(g8971 +g8973 +S'reveal' +p8975 +tp8976 +a(g8973 +g8975 +S"credi's" +p8977 +tp8978 +a(g8975 +g8977 +S'face—but' +p8979 +tp8980 +a(g8977 +g8979 +S"perugino's" +p8981 +tp8982 +a(g8979 +g8981 +S'hand.' +p8983 +tp8984 +a(g8981 +g8983 +S'other' +p8985 +tp8986 +a(g8983 +g8985 +S'landscapes' +p8987 +tp8988 +a(g8985 +g8987 +S'by' +p8989 +tp8990 +a(g8987 +g8989 +S'perugino' +p8991 +tp8992 +a(g8989 +g8991 +S'have' +p8993 +tp8994 +a(g8991 +g8993 +S'the' +p8995 +tp8996 +a(g8993 +g8995 +S'same' +p8997 +tp8998 +a(g8995 +g8997 +S'silvery' +p8999 +tp9000 +a(g8997 +g8999 +S'quality' +p9001 +tp9002 +a(g8999 +g9001 +S'we' +p9003 +tp9004 +a(g9001 +g9003 +S'see' +p9005 +tp9006 +a(g9003 +g9005 +S'here.' +p9007 +tp9008 +a(g9005 +g9007 +S'moreover,' +p9009 +tp9010 +a(g9007 +g9009 +S'the' +p9011 +tp9012 +a(g9009 +g9011 +S'strong' +p9013 +tp9014 +a(g9011 +g9013 +S'planes' +p9015 +tp9016 +a(g9013 +g9015 +S'of' +p9017 +tp9018 +a(g9015 +g9017 +S'the' +p9019 +tp9020 +a(g9017 +g9019 +S'face' +p9021 +tp9022 +a(g9019 +g9021 +S'and' +p9023 +tp9024 +a(g9021 +g9023 +S'tousled' +p9025 +tp9026 +a(g9023 +g9025 +S'coiffure' +p9027 +tp9028 +a(g9025 +g9027 +S'more' +p9029 +tp9030 +a(g9027 +g9029 +S'closely' +p9031 +tp9032 +a(g9029 +g9031 +S'resemble' +p9033 +tp9034 +a(g9031 +g9033 +S"perugino's" +p9035 +tp9036 +a(g9033 +g9035 +S'bolder' +p9037 +tp9038 +a(g9035 +g9037 +S'style' +p9039 +tp9040 +a(g9037 +g9039 +S'than' +p9041 +tp9042 +a(g9039 +g9041 +S"credi's" +p9043 +tp9044 +a(g9041 +g9043 +S'smoother,' +p9045 +tp9046 +a(g9043 +g9045 +S'more' +p9047 +tp9048 +a(g9045 +g9047 +S'polished' +p9049 +tp9050 +a(g9047 +g9049 +S'painting.' +p9051 +tp9052 +a(g9049 +g9051 +S'the' +p9053 +tp9054 +a(g9051 +g9053 +S'unusual' +p9055 +tp9056 +a(g9053 +g9055 +S'backward' +p9057 +tp9058 +a(g9055 +g9057 +S'tilt' +p9059 +tp9060 +a(g9057 +g9059 +S'of' +p9061 +tp9062 +a(g9059 +g9061 +S'the' +p9063 +tp9064 +a(g9061 +g9063 +S'head' +p9065 +tp9066 +a(g9063 +g9065 +S'reinforces' +p9067 +tp9068 +a(g9065 +g9067 +S'the' +p9069 +tp9070 +a(g9067 +g9069 +S'melancholy' +p9071 +tp9072 +a(g9069 +g9071 +S'mood' +p9073 +tp9074 +a(g9071 +g9073 +S'established' +p9075 +tp9076 +a(g9073 +g9075 +S'by' +p9077 +tp9078 +a(g9075 +g9077 +S"credi's" +p9079 +tp9080 +a(g9077 +g9079 +S'sad,' +p9081 +tp9082 +a(g9079 +g9081 +S'distant' +p9083 +tp9084 +a(g9081 +g9083 +S'gaze' +p9085 +tp9086 +a(g9083 +g9085 +S'and' +p9087 +tp9088 +a(g9085 +g9087 +S'set' +p9089 +tp9090 +a(g9087 +g9089 +S'mouth.' +p9091 +tp9092 +a(g9089 +g9091 +S'it' +p9093 +tp9094 +a(g9091 +g9093 +S'has' +p9095 +tp9096 +a(g9093 +g9095 +S'been' +p9097 +tp9098 +a(g9095 +g9097 +S'suggested' +p9099 +tp9100 +a(g9097 +g9099 +S'that' +p9101 +tp9102 +a(g9099 +g9101 +S'perugino' +p9103 +tp9104 +a(g9101 +g9103 +S'painted' +p9105 +tp9106 +a(g9103 +g9105 +S'this' +p9107 +tp9108 +a(g9105 +g9107 +S'image' +p9109 +tp9110 +a(g9107 +g9109 +S'of' +p9111 +tp9112 +a(g9109 +g9111 +S'credi' +p9113 +tp9114 +a(g9111 +g9113 +S'just' +p9115 +tp9116 +a(g9113 +g9115 +S'after' +p9117 +tp9118 +a(g9115 +g9117 +S'the' +p9119 +tp9120 +a(g9117 +g9119 +S'death' +p9121 +tp9122 +a(g9119 +g9121 +S'of' +p9123 +tp9124 +a(g9121 +g9123 +S'their' +p9125 +tp9126 +a(g9123 +g9125 +S'beloved' +p9127 +tp9128 +a(g9125 +g9127 +S'master' +p9129 +tp9130 +a(g9127 +g9129 +S'verrocchio' +p9131 +tp9132 +a(g9129 +g9131 +S'in' +p9133 +tp9134 +a(g9131 +g9133 +S'1488,' +p9135 +tp9136 +a(g9133 +g9135 +S'the' +p9137 +tp9138 +a(g9135 +g9137 +S'same' +p9139 +tp9140 +a(g9137 +g9139 +S'date' +p9141 +tp9142 +a(g9139 +g9141 +S'inscribed' +p9143 +tp9144 +a(g9141 +g9143 +S'on' +p9145 +tp9146 +a(g9143 +g9145 +S'the' +p9147 +tp9148 +a(g9145 +g9147 +S'panel.' +p9149 +tp9150 +a(g9147 +g9149 +S'credi' +p9151 +tp9152 +a(g9149 +g9151 +S'was' +p9153 +tp9154 +a(g9151 +g9153 +S"verrocchio's" +p9155 +tp9156 +a(g9153 +g9155 +S'heir' +p9157 +tp9158 +a(g9155 +g9157 +S'and' +p9159 +tp9160 +a(g9157 +g9159 +S'took' +p9161 +tp9162 +a(g9159 +g9161 +S'over' +p9163 +tp9164 +a(g9161 +g9163 +S'his' +p9165 +tp9166 +a(g9163 +g9165 +S'shop.' +p9167 +tp9168 +a(g9165 +g9167 +S'it' +p9169 +tp9170 +a(g9167 +g9169 +S'was' +p9171 +tp9172 +a(g9169 +g9171 +S'his' +p9173 +tp9174 +a(g9171 +g9173 +S'unhappy' +p9175 +tp9176 +a(g9173 +g9175 +S'task' +p9177 +tp9178 +a(g9175 +g9177 +S'to' +p9179 +tp9180 +a(g9177 +g9179 +S'accompany' +p9181 +tp9182 +a(g9179 +g9181 +S"verrocchio's" +p9183 +tp9184 +a(g9181 +g9183 +S'remains' +p9185 +tp9186 +a(g9183 +g9185 +S'back' +p9187 +tp9188 +a(g9185 +g9187 +S'to' +p9189 +tp9190 +a(g9187 +g9189 +S'florence' +p9191 +tp9192 +a(g9189 +g9191 +S'for' +p9193 +tp9194 +a(g9191 +g9193 +S'burial' +p9195 +tp9196 +a(g9193 +g9195 +S'after' +p9197 +tp9198 +a(g9195 +g9197 +S'his' +p9199 +tp9200 +a(g9197 +g9199 +S'death' +p9201 +tp9202 +a(g9199 +g9201 +S'in' +p9203 +tp9204 +a(g9201 +g9203 +S'venice.' +p9205 +tp9206 +a(g9203 +g9205 +S'the' +p9207 +tp9208 +a(g9205 +g9207 +S'unusual' +p9209 +tp9210 +a(g9207 +g9209 +S'subject' +p9211 +tp9212 +a(g9209 +g9211 +S'of' +p9213 +tp9214 +a(g9211 +g9213 +S'this' +p9215 +tp9216 +a(g9213 +g9215 +S'painting' +p9217 +tp9218 +a(g9215 +g9217 +S'comes' +p9219 +tp9220 +a(g9217 +g9219 +S'from' +p9221 +tp9222 +a(g9219 +g9221 +S'one' +p9223 +tp9224 +a(g9221 +g9223 +S'of' +p9225 +tp9226 +a(g9223 +g9225 +S"aesop's" +p9227 +tp9228 +a(g9225 +g9227 +S'fables.' +p9229 +tp9230 +a(g9227 +g9229 +S'in' +p9231 +tp9232 +a(g9229 +g9231 +S'his' +p9233 +tp9234 +a(g9231 +g9233 +S'johann' +p9235 +tp9236 +a(g9233 +g9235 +S'liss' +p9237 +tp9238 +a(g9235 +g9237 +S'was' +p9239 +tp9240 +a(g9237 +g9239 +S'among' +p9241 +tp9242 +a(g9239 +g9241 +S'the' +p9243 +tp9244 +a(g9241 +g9243 +S'initiators' +p9245 +tp9246 +a(g9243 +g9245 +S'of' +p9247 +tp9248 +a(g9245 +g9247 +S'the' +p9249 +tp9250 +a(g9247 +g9249 +S'dynamic' +p9251 +tp9252 +a(g9249 +g9251 +S'baroque' +p9253 +tp9254 +a(g9251 +g9253 +S'style' +p9255 +tp9256 +a(g9253 +g9255 +S'of' +p9257 +tp9258 +a(g9255 +g9257 +S'the' +p9259 +tp9260 +a(g9257 +g9259 +S'1600s.' +p9261 +tp9262 +a(g9259 +g9261 +S'the' +p9263 +tp9264 +a(g9261 +g9263 +S'sonorous' +p9265 +tp9266 +a(g9263 +g9265 +S'color' +p9267 +tp9268 +a(g9265 +g9267 +S'scheme' +p9269 +tp9270 +a(g9267 +g9269 +S'shows' +p9271 +tp9272 +a(g9269 +g9271 +S'his' +p9273 +tp9274 +a(g9271 +g9273 +S'knowledge' +p9275 +tp9276 +a(g9273 +g9275 +S'of' +p9277 +tp9278 +a(g9275 +g9277 +S'past' +p9279 +tp9280 +a(g9277 +g9279 +S'venetian' +p9281 +tp9282 +a(g9279 +g9281 +S'masters' +p9283 +tp9284 +a(g9281 +g9283 +S'such' +p9285 +tp9286 +a(g9283 +g9285 +S'as' +p9287 +tp9288 +a(g9285 +g9287 +S'titian' +p9289 +tp9290 +a(g9287 +g9289 +S'and' +p9291 +tp9292 +a(g9289 +g9291 +S'veronese,' +p9293 +tp9294 +a(g9291 +g9293 +S'while' +p9295 +tp9296 +a(g9293 +g9295 +S'the' +p9297 +tp9298 +a(g9295 +g9297 +S'dramatic' +p9299 +tp9300 +a(g9297 +g9299 +S'conflict' +p9301 +tp9302 +a(g9299 +g9301 +S'of' +p9303 +tp9304 +a(g9301 +g9303 +S'light' +p9305 +tp9306 +a(g9303 +g9305 +S'and' +p9307 +tp9308 +a(g9305 +g9307 +S'shadow' +p9309 +tp9310 +a(g9307 +g9309 +S'reveals' +p9311 +tp9312 +a(g9309 +g9311 +S'an' +p9313 +tp9314 +a(g9311 +g9313 +S'acquaintance' +p9315 +tp9316 +a(g9313 +g9315 +S'with' +p9317 +tp9318 +a(g9315 +g9317 +S'the' +p9319 +tp9320 +a(g9317 +g9319 +S'spotlighting' +p9321 +tp9322 +a(g9319 +g9321 +S'which' +p9323 +tp9324 +a(g9321 +g9323 +S'caravaggio' +p9325 +tp9326 +a(g9323 +g9325 +S'concurrently' +p9327 +tp9328 +a(g9325 +g9327 +S'employed' +p9329 +tp9330 +a(g9327 +g9329 +S'in' +p9331 +tp9332 +a(g9329 +g9331 +S'rome.' +p9333 +tp9334 +a(g9331 +g9333 +S'but' +p9335 +tp9336 +a(g9333 +g9335 +S'the' +p9337 +tp9338 +a(g9335 +g9337 +S'main' +p9339 +tp9340 +a(g9337 +g9339 +S'influences' +p9341 +tp9342 +a(g9339 +g9341 +S'here' +p9343 +tp9344 +a(g9341 +g9343 +S'are' +p9345 +tp9346 +a(g9343 +g9345 +S'the' +p9347 +tp9348 +a(g9345 +g9347 +S'energized' +p9349 +tp9350 +a(g9347 +g9349 +S'movement' +p9351 +tp9352 +a(g9349 +g9351 +S'and' +p9353 +tp9354 +a(g9351 +g9353 +S'robust' +p9355 +tp9356 +a(g9353 +g9355 +S'figure' +p9357 +tp9358 +a(g9355 +g9357 +S'types' +p9359 +tp9360 +a(g9357 +g9359 +S'derived' +p9361 +tp9362 +a(g9359 +g9361 +S'from' +p9363 +tp9364 +a(g9361 +g9363 +S'the' +p9365 +tp9366 +a(g9363 +g9365 +S'contemporary' +p9367 +tp9368 +a(g9365 +g9367 +S'antwerp' +p9369 +tp9370 +a(g9367 +g9369 +S'geniuses,' +p9371 +tp9372 +a(g9369 +g9371 +S'jacob' +p9373 +tp9374 +a(g9371 +g9373 +S'jordaens' +p9375 +tp9376 +a(g9373 +g9375 +S'and' +p9377 +tp9378 +a(g9375 +g9377 +S'peter' +p9379 +tp9380 +a(g9377 +g9379 +S'paul' +p9381 +tp9382 +a(g9379 +g9381 +S'rubens.' +p9383 +tp9384 +a(g9381 +g9383 +S'in' +p9385 +tp9386 +a(g9383 +g9385 +S'1864' +p9387 +tp9388 +a(g9385 +g9387 +S'manet' +p9389 +tp9390 +a(g9387 +g9389 +S'exhibited' +p9391 +tp9392 +a(g9389 +g9391 +S'a' +p9393 +tp9394 +a(g9391 +g9393 +S'large' +p9395 +tp9396 +a(g9393 +g9395 +S'painting' +p9397 +tp9398 +a(g9395 +g9397 +S'he' +p9399 +tp9400 +a(g9397 +g9399 +S'called' +p9401 +tp9402 +a(g9399 +g9401 +S'although' +p9403 +tp9404 +a(g9401 +g9403 +S'manet' +p9405 +tp9406 +a(g9403 +g9405 +S'may' +p9407 +tp9408 +a(g9405 +g9407 +S'have' +p9409 +tp9410 +a(g9407 +g9409 +S'acted' +p9411 +tp9412 +a(g9409 +g9411 +S'in' +p9413 +tp9414 +a(g9411 +g9413 +S'response' +p9415 +tp9416 +a(g9413 +g9415 +S'to' +p9417 +tp9418 +a(g9415 +g9417 +S'the' +p9419 +tp9420 +a(g9417 +g9419 +S'harsh' +p9421 +tp9422 +a(g9419 +g9421 +S'criticism,' +p9423 +tp9424 +a(g9421 +g9423 +S'it' +p9425 +tp9426 +a(g9423 +g9425 +S'was' +p9427 +tp9428 +a(g9425 +g9427 +S'not' +p9429 +tp9430 +a(g9427 +g9429 +S'uncommon' +p9431 +tp9432 +a(g9429 +g9431 +S'for' +p9433 +tp9434 +a(g9431 +g9433 +S'him' +p9435 +tp9436 +a(g9433 +g9435 +S'to' +p9437 +tp9438 +a(g9435 +g9437 +S'rework' +p9439 +tp9440 +a(g9437 +g9439 +S'compositions.' +p9441 +tp9442 +a(g9439 +g9441 +S'he' +p9443 +tp9444 +a(g9441 +g9443 +S'repainted' +p9445 +tp9446 +a(g9443 +g9445 +S'the' +p9447 +tp9448 +a(g9445 +g9447 +S'background,' +p9449 +tp9450 +a(g9447 +g9449 +S'extracting' +p9451 +tp9452 +a(g9449 +g9451 +S'the' +p9453 +tp9454 +a(g9451 +g9453 +S'figure' +p9455 +tp9456 +a(g9453 +g9455 +S'from' +p9457 +tp9458 +a(g9455 +g9457 +S'the' +p9459 +tp9460 +a(g9457 +g9459 +S'context' +p9461 +tp9462 +a(g9459 +g9461 +S'of' +p9463 +tp9464 +a(g9461 +g9463 +S'the' +p9465 +tp9466 +a(g9463 +g9465 +S'bullfight,' +p9467 +tp9468 +a(g9465 +g9467 +S'and' +p9469 +tp9470 +a(g9467 +g9469 +S'in' +p9471 +tp9472 +a(g9469 +g9471 +S'so' +p9473 +tp9474 +a(g9471 +g9473 +S'doing' +p9475 +tp9476 +a(g9473 +g9475 +S'changed' +p9477 +tp9478 +a(g9475 +g9477 +S'the' +p9479 +tp9480 +a(g9477 +g9479 +S'nature' +p9481 +tp9482 +a(g9479 +g9481 +S'of' +p9483 +tp9484 +a(g9481 +g9483 +S'his' +p9485 +tp9486 +a(g9483 +g9485 +S'painting.' +p9487 +tp9488 +a(g9485 +g9487 +S'the' +p9489 +tp9490 +a(g9487 +g9489 +S'fallen' +p9491 +tp9492 +a(g9489 +g9491 +S'matador' +p9493 +tp9494 +a(g9491 +g9493 +S'is' +p9495 +tp9496 +a(g9493 +g9495 +S'no' +p9497 +tp9498 +a(g9495 +g9497 +S'longer' +p9499 +tp9500 +a(g9497 +g9499 +S'part' +p9501 +tp9502 +a(g9499 +g9501 +S'of' +p9503 +tp9504 +a(g9501 +g9503 +S'a' +p9505 +tp9506 +a(g9503 +g9505 +S'narrative' +p9507 +tp9508 +a(g9505 +g9507 +S'but' +p9509 +tp9510 +a(g9507 +g9509 +S'is' +p9511 +tp9512 +a(g9509 +g9511 +S'instead' +p9513 +tp9514 +a(g9511 +g9513 +S'an' +p9515 +tp9516 +a(g9513 +g9515 +S'icon,' +p9517 +tp9518 +a(g9515 +g9517 +S'an' +p9519 +tp9520 +a(g9517 +g9519 +S'isolated' +p9521 +tp9522 +a(g9519 +g9521 +S'and' +p9523 +tp9524 +a(g9521 +g9523 +S'compelling' +p9525 +tp9526 +a(g9523 +g9525 +S'figure' +p9527 +tp9528 +a(g9525 +g9527 +S'of' +p9529 +tp9530 +a(g9527 +g9529 +S'sudden' +p9531 +tp9532 +a(g9529 +g9531 +S'and' +p9533 +tp9534 +a(g9531 +g9533 +S'violent' +p9535 +tp9536 +a(g9533 +g9535 +S'death.' +p9537 +tp9538 +a(g9535 +g9537 +S'from' +p9539 +tp9540 +a(g9537 +g9539 +S'the' +p9541 +tp9542 +a(g9539 +g9541 +S'now' +p9543 +tp9544 +a(g9541 +g9543 +S'featureless' +p9545 +tp9546 +a(g9543 +g9545 +S'background' +p9547 +tp9548 +a(g9545 +g9547 +S'the' +p9549 +tp9550 +a(g9547 +g9549 +S"man's" +p9551 +tp9552 +a(g9549 +g9551 +S'body' +p9553 +tp9554 +a(g9551 +g9553 +S'is' +p9555 +tp9556 +a(g9553 +g9555 +S'dramatically' +p9557 +tp9558 +a(g9555 +g9557 +S'foreshortened,' +p9559 +tp9560 +a(g9557 +g9559 +S'thrusting' +p9561 +tp9562 +a(g9559 +g9561 +S'toward' +p9563 +tp9564 +a(g9561 +g9563 +S'the' +p9565 +tp9566 +a(g9563 +g9565 +S'viewer.' +p9567 +tp9568 +a(g9565 +g9567 +S'its' +p9569 +tp9570 +a(g9567 +g9569 +S'proximity' +p9571 +tp9572 +a(g9569 +g9571 +S'and' +p9573 +tp9574 +a(g9571 +g9573 +S'isolation' +p9575 +tp9576 +a(g9573 +g9575 +S'are' +p9577 +tp9578 +a(g9575 +g9577 +S'startling.' +p9579 +tp9580 +a(g9577 +g9579 +S'only' +p9581 +tp9582 +a(g9579 +g9581 +S'the' +p9583 +tp9584 +a(g9581 +g9583 +S"man's" +p9585 +tp9586 +a(g9583 +g9585 +S'costume' +p9587 +tp9588 +a(g9585 +g9587 +S'informs' +p9589 +tp9590 +a(g9587 +g9589 +S'us' +p9591 +tp9592 +a(g9589 +g9591 +S'about' +p9593 +tp9594 +a(g9591 +g9593 +S'him,' +p9595 +tp9596 +a(g9593 +g9595 +S'traces' +p9597 +tp9598 +a(g9595 +g9597 +S'of' +p9599 +tp9600 +a(g9597 +g9599 +S'blood' +p9601 +tp9602 +a(g9599 +g9601 +S'the' +p9603 +tp9604 +a(g9601 +g9603 +S'only' +p9605 +tp9606 +a(g9603 +g9605 +S'signs' +p9607 +tp9608 +a(g9605 +g9607 +S'of' +p9609 +tp9610 +a(g9607 +g9609 +S'a' +p9611 +tp9612 +a(g9609 +g9611 +S'painful' +p9613 +tp9614 +a(g9611 +g9613 +S'death.' +p9615 +tp9616 +a(g9613 +g9615 +S"manet's" +p9617 +tp9618 +a(g9615 +g9617 +S'choice' +p9619 +tp9620 +a(g9617 +g9619 +S'of' +p9621 +tp9622 +a(g9619 +g9621 +S'a' +p9623 +tp9624 +a(g9621 +g9623 +S'spanish' +p9625 +tp9626 +a(g9623 +g9625 +S'subject—he' +p9627 +tp9628 +a(g9625 +g9627 +S'did' +p9629 +tp9630 +a(g9627 +g9629 +S'many' +p9631 +tp9632 +a(g9629 +g9631 +S'early' +p9633 +tp9634 +a(g9631 +g9633 +S'in' +p9635 +tp9636 +a(g9633 +g9635 +S'his' +p9637 +tp9638 +a(g9635 +g9637 +S'career—reflects' +p9639 +tp9640 +a(g9637 +g9639 +S'his' +p9641 +tp9642 +a(g9639 +g9641 +S'interest' +p9643 +tp9644 +a(g9641 +g9643 +S'in' +p9645 +tp9646 +a(g9643 +g9645 +S'the' +p9647 +tp9648 +a(g9645 +g9647 +S'seventeenth-century' +p9649 +tp9650 +a(g9647 +g9649 +S'painter' +p9651 +tp9652 +a(g9649 +g9651 +S'the' +p9653 +tp9654 +a(g9651 +g9653 +S'frankland' +p9655 +tp9656 +a(g9653 +g9655 +S'sisters,' +p9657 +tp9658 +a(g9655 +g9657 +S'the' +p9659 +tp9660 +a(g9657 +g9659 +S'story' +p9661 +tp9662 +a(g9659 +g9661 +S'of' +p9663 +tp9664 +a(g9661 +g9663 +S'judith' +p9665 +tp9666 +a(g9663 +g9665 +S'and' +p9667 +tp9668 +a(g9665 +g9667 +S'holofernes' +p9669 +tp9670 +a(g9667 +g9669 +S'comes' +p9671 +tp9672 +a(g9669 +g9671 +S'from' +p9673 +tp9674 +a(g9671 +g9673 +S'the' +p9675 +tp9676 +a(g9673 +g9675 +S'old' +p9677 +tp9678 +a(g9675 +g9677 +S'testament' +p9679 +tp9680 +a(g9677 +g9679 +S'apocrypha,' +p9681 +tp9682 +a(g9679 +g9681 +S'sacred' +p9683 +tp9684 +a(g9681 +g9683 +S'texts' +p9685 +tp9686 +a(g9683 +g9685 +S'that' +p9687 +tp9688 +a(g9685 +g9687 +S'were' +p9689 +tp9690 +a(g9687 +g9689 +S'excluded' +p9691 +tp9692 +a(g9689 +g9691 +S'from' +p9693 +tp9694 +a(g9691 +g9693 +S'the' +p9695 +tp9696 +a(g9693 +g9695 +S'bible.' +p9697 +tp9698 +a(g9695 +g9697 +S'besieged' +p9699 +tp9700 +a(g9697 +g9699 +S'by' +p9701 +tp9702 +a(g9699 +g9701 +S'the' +p9703 +tp9704 +a(g9701 +g9703 +S'assyrians,' +p9705 +tp9706 +a(g9703 +g9705 +S'the' +p9707 +tp9708 +a(g9705 +g9707 +S'beautiful' +p9709 +tp9710 +a(g9707 +g9709 +S'israelite' +p9711 +tp9712 +a(g9709 +g9711 +S'widow' +p9713 +tp9714 +a(g9711 +g9713 +S'judith' +p9715 +tp9716 +a(g9713 +g9715 +S'went' +p9717 +tp9718 +a(g9715 +g9717 +S'into' +p9719 +tp9720 +a(g9717 +g9719 +S'the' +p9721 +tp9722 +a(g9719 +g9721 +S'enemy' +p9723 +tp9724 +a(g9721 +g9723 +S'camp' +p9725 +tp9726 +a(g9723 +g9725 +S'of' +p9727 +tp9728 +a(g9725 +g9727 +S'holofernes' +p9729 +tp9730 +a(g9727 +g9729 +S'to' +p9731 +tp9732 +a(g9729 +g9731 +S'win' +p9733 +tp9734 +a(g9731 +g9733 +S'his' +p9735 +tp9736 +a(g9733 +g9735 +S'confidence.' +p9737 +tp9738 +a(g9735 +g9737 +S'during' +p9739 +tp9740 +a(g9737 +g9739 +S'a' +p9741 +tp9742 +a(g9739 +g9741 +S'great' +p9743 +tp9744 +a(g9741 +g9743 +S'banquet' +p9745 +tp9746 +a(g9743 +g9745 +S'holofernes' +p9747 +tp9748 +a(g9745 +g9747 +S'became' +p9749 +tp9750 +a(g9747 +g9749 +S'drunk,' +p9751 +tp9752 +a(g9749 +g9751 +S'and' +p9753 +tp9754 +a(g9751 +g9753 +S'later' +p9755 +tp9756 +a(g9753 +g9755 +S'in' +p9757 +tp9758 +a(g9755 +g9757 +S'his' +p9759 +tp9760 +a(g9757 +g9759 +S'tent' +p9761 +tp9762 +a(g9759 +g9761 +S'judith' +p9763 +tp9764 +a(g9761 +g9763 +S'seized' +p9765 +tp9766 +a(g9763 +g9765 +S'his' +p9767 +tp9768 +a(g9765 +g9767 +S'sword' +p9769 +tp9770 +a(g9767 +g9769 +S'and' +p9771 +tp9772 +a(g9769 +g9771 +S'cut' +p9773 +tp9774 +a(g9771 +g9773 +S'off' +p9775 +tp9776 +a(g9773 +g9775 +S'his' +p9777 +tp9778 +a(g9775 +g9777 +S'head.' +p9779 +tp9780 +a(g9777 +g9779 +S'their' +p9781 +tp9782 +a(g9779 +g9781 +S'leader' +p9783 +tp9784 +a(g9781 +g9783 +S'gone,' +p9785 +tp9786 +a(g9783 +g9785 +S'the' +p9787 +tp9788 +a(g9785 +g9787 +S'enemy' +p9789 +tp9790 +a(g9787 +g9789 +S'was' +p9791 +tp9792 +a(g9789 +g9791 +S'soon' +p9793 +tp9794 +a(g9791 +g9793 +S'defeated' +p9795 +tp9796 +a(g9793 +g9795 +S'by' +p9797 +tp9798 +a(g9795 +g9797 +S'the' +p9799 +tp9800 +a(g9797 +g9799 +S'israelites.' +p9801 +tp9802 +a(g9799 +g9801 +S'this' +p9803 +tp9804 +a(g9801 +g9803 +S'ancient' +p9805 +tp9806 +a(g9803 +g9805 +S'heroine' +p9807 +tp9808 +a(g9805 +g9807 +S'was' +p9809 +tp9810 +a(g9807 +g9809 +S'understood' +p9811 +tp9812 +a(g9809 +g9811 +S'in' +p9813 +tp9814 +a(g9811 +g9813 +S'the' +p9815 +tp9816 +a(g9813 +g9815 +S'renaissance' +p9817 +tp9818 +a(g9815 +g9817 +S'as' +p9819 +tp9820 +a(g9817 +g9819 +S'a' +p9821 +tp9822 +a(g9819 +g9821 +S'symbol' +p9823 +tp9824 +a(g9821 +g9823 +S'of' +p9825 +tp9826 +a(g9823 +g9825 +S'civic' +p9827 +tp9828 +a(g9825 +g9827 +S'virtue,' +p9829 +tp9830 +a(g9827 +g9829 +S'of' +p9831 +tp9832 +a(g9829 +g9831 +S'intolerance' +p9833 +tp9834 +a(g9831 +g9833 +S'of' +p9835 +tp9836 +a(g9833 +g9835 +S'tyranny,' +p9837 +tp9838 +a(g9835 +g9837 +S'and' +p9839 +tp9840 +a(g9837 +g9839 +S'of' +p9841 +tp9842 +a(g9839 +g9841 +S'a' +p9843 +tp9844 +a(g9841 +g9843 +S'just' +p9845 +tp9846 +a(g9843 +g9845 +S'cause' +p9847 +tp9848 +a(g9845 +g9847 +S'triumphing' +p9849 +tp9850 +a(g9847 +g9849 +S'over' +p9851 +tp9852 +a(g9849 +g9851 +S'evil.' +p9853 +tp9854 +a(g9851 +g9853 +S'the' +p9855 +tp9856 +a(g9853 +g9855 +S'moralizing' +p9857 +tp9858 +a(g9855 +g9857 +S'subject' +p9859 +tp9860 +a(g9857 +g9859 +S'was' +p9861 +tp9862 +a(g9859 +g9861 +S'a' +p9863 +tp9864 +a(g9861 +g9863 +S'favorite' +p9865 +tp9866 +a(g9863 +g9865 +S'of' +p9867 +tp9868 +a(g9865 +g9867 +S'the' +p9869 +tp9870 +a(g9867 +g9869 +S'artist.' +p9871 +tp9872 +a(g9869 +g9871 +S'judith' +p9873 +tp9874 +a(g9871 +g9873 +S'is' +p9875 +tp9876 +a(g9873 +g9875 +S'portrayed' +p9877 +tp9878 +a(g9875 +g9877 +S'as' +p9879 +tp9880 +a(g9877 +g9879 +S'if' +p9881 +tp9882 +a(g9879 +g9881 +S'she' +p9883 +tp9884 +a(g9881 +g9883 +S'were' +p9885 +tp9886 +a(g9883 +g9885 +S'a' +p9887 +tp9888 +a(g9885 +g9887 +S'classical' +p9889 +tp9890 +a(g9887 +g9889 +S'statue.' +p9891 +tp9892 +a(g9889 +g9891 +S'the' +p9893 +tp9894 +a(g9891 +g9893 +S'drapery' +p9895 +tp9896 +a(g9893 +g9895 +S'folds' +p9897 +tp9898 +a(g9895 +g9897 +S'of' +p9899 +tp9900 +a(g9897 +g9899 +S'her' +p9901 +tp9902 +a(g9899 +g9901 +S'costume,' +p9903 +tp9904 +a(g9901 +g9903 +S'a' +p9905 +tp9906 +a(g9903 +g9905 +S'clinging' +p9907 +tp9908 +a(g9905 +g9907 +S'white' +p9909 +tp9910 +a(g9907 +g9909 +S'gown,' +p9911 +tp9912 +a(g9909 +g9911 +S'fall' +p9913 +tp9914 +a(g9911 +g9913 +S'in' +p9915 +tp9916 +a(g9913 +g9915 +S'sculptural' +p9917 +tp9918 +a(g9915 +g9917 +S'forms,' +p9919 +tp9920 +a(g9917 +g9919 +S'and' +p9921 +tp9922 +a(g9919 +g9921 +S'her' +p9923 +tp9924 +a(g9921 +g9923 +S'stance,' +p9925 +tp9926 +a(g9923 +g9925 +S'the' +p9927 +tp9928 +a(g9925 +g9927 +S'twisting' +p9929 +tp9930 +a(g9927 +g9929 +S'mantegna' +p9931 +tp9932 +a(g9929 +g9931 +S'was' +p9933 +tp9934 +a(g9931 +g9933 +S'trained' +p9935 +tp9936 +a(g9933 +g9935 +S'in' +p9937 +tp9938 +a(g9935 +g9937 +S'the' +p9939 +tp9940 +a(g9937 +g9939 +S'paduan' +p9941 +tp9942 +a(g9939 +g9941 +S'workshop' +p9943 +tp9944 +a(g9941 +g9943 +S'of' +p9945 +tp9946 +a(g9943 +g9945 +S'squarcione,' +p9947 +tp9948 +a(g9945 +g9947 +S'but' +p9949 +tp9950 +a(g9947 +g9949 +S'he' +p9951 +tp9952 +a(g9949 +g9951 +S'was' +p9953 +tp9954 +a(g9951 +g9953 +S'strongly' +p9955 +tp9956 +a(g9953 +g9955 +S'influenced' +p9957 +tp9958 +a(g9955 +g9957 +S'by' +p9959 +tp9960 +a(g9957 +g9959 +S'the' +p9961 +tp9962 +a(g9959 +g9961 +S'florentine' +p9963 +tp9964 +a(g9961 +g9963 +S'sculptor' +p9965 +tp9966 +a(g9963 +g9965 +S'donatello.' +p9967 +tp9968 +a(g9965 +g9967 +S'he' +p9969 +tp9970 +a(g9967 +g9969 +S'married' +p9971 +tp9972 +a(g9969 +g9971 +S'the' +p9973 +tp9974 +a(g9971 +g9973 +S'daughter' +p9975 +tp9976 +a(g9973 +g9975 +S'of' +p9977 +tp9978 +a(g9975 +g9977 +S'the' +p9979 +tp9980 +a(g9977 +g9979 +S'venetian' +p9981 +tp9982 +a(g9979 +g9981 +S'artist' +p9983 +tp9984 +a(g9981 +g9983 +S'jacopo' +p9985 +tp9986 +a(g9983 +g9985 +S'bellini,' +p9987 +tp9988 +a(g9985 +g9987 +S'and' +p9989 +tp9990 +a(g9987 +g9989 +S'was' +p9991 +tp9992 +a(g9989 +g9991 +S'influenced' +p9993 +tp9994 +a(g9991 +g9993 +S'by' +p9995 +tp9996 +a(g9993 +g9995 +S'his' +p9997 +tp9998 +a(g9995 +g9997 +S'work,' +p9999 +tp10000 +a(g9997 +g9999 +S'as' +p10001 +tp10002 +a(g9999 +g10001 +S'well' +p10003 +tp10004 +a(g10001 +g10003 +S'as' +p10005 +tp10006 +a(g10003 +g10005 +S'that' +p10007 +tp10008 +a(g10005 +g10007 +S'of' +p10009 +tp10010 +a(g10007 +g10009 +S'his' +p10011 +tp10012 +a(g10009 +g10011 +S'brother-in-law' +p10013 +tp10014 +a(g10011 +g10013 +S'giovanni' +p10015 +tp10016 +a(g10013 +g10015 +S'bellini.' +p10017 +tp10018 +a(g10015 +g10017 +S'few' +p10019 +tp10020 +a(g10017 +g10019 +S'artists' +p10021 +tp10022 +a(g10019 +g10021 +S'could' +p10023 +tp10024 +a(g10021 +g10023 +S'match' +p10025 +tp10026 +a(g10023 +g10025 +S"moroni's" +p10027 +tp10028 +a(g10025 +g10027 +S'skill' +p10029 +tp10030 +a(g10027 +g10029 +S'in' +p10031 +tp10032 +a(g10029 +g10031 +S'depicting' +p10033 +tp10034 +a(g10031 +g10033 +S'the' +p10035 +tp10036 +a(g10033 +g10035 +S'appearance' +p10037 +tp10038 +a(g10035 +g10037 +S'of' +p10039 +tp10040 +a(g10037 +g10039 +S'his' +p10041 +tp10042 +a(g10039 +g10041 +S'sitters,' +p10043 +tp10044 +a(g10041 +g10043 +S'far' +p10045 +tp10046 +a(g10043 +g10045 +S'less' +p10047 +tp10048 +a(g10045 +g10047 +S'his' +p10049 +tp10050 +a(g10047 +g10049 +S'ability' +p10051 +tp10052 +a(g10049 +g10051 +S'to' +p10053 +tp10054 +a(g10051 +g10053 +S'conjure' +p10055 +tp10056 +a(g10053 +g10055 +S'the' +p10057 +tp10058 +a(g10055 +g10057 +S'inner' +p10059 +tp10060 +a(g10057 +g10059 +S'workings' +p10061 +tp10062 +a(g10059 +g10061 +S'of' +p10063 +tp10064 +a(g10061 +g10063 +S'their' +p10065 +tp10066 +a(g10063 +g10065 +S'minds.' +p10067 +tp10068 +a(g10065 +g10067 +S'the' +p10069 +tp10070 +a(g10067 +g10069 +S'identity' +p10071 +tp10072 +a(g10069 +g10071 +S'of' +p10073 +tp10074 +a(g10071 +g10073 +S'the' +p10075 +tp10076 +a(g10073 +g10075 +S'gentleman' +p10077 +tp10078 +a(g10075 +g10077 +S'in' +p10079 +tp10080 +a(g10077 +g10079 +S'this' +p10081 +tp10082 +a(g10079 +g10081 +S'penetrating' +p10083 +tp10084 +a(g10081 +g10083 +S'portrait' +p10085 +tp10086 +a(g10083 +g10085 +S'is' +p10087 +tp10088 +a(g10085 +g10087 +S'a' +p10089 +tp10090 +a(g10087 +g10089 +S'mystery.' +p10091 +tp10092 +a(g10089 +g10091 +S'for' +p10093 +tp10094 +a(g10091 +g10093 +S'a' +p10095 +tp10096 +a(g10093 +g10095 +S'long' +p10097 +tp10098 +a(g10095 +g10097 +S'time' +p10099 +tp10100 +a(g10097 +g10099 +S'the' +p10101 +tp10102 +a(g10099 +g10101 +S'painting' +p10103 +tp10104 +a(g10101 +g10103 +S'was' +p10105 +tp10106 +a(g10103 +g10105 +S'thought' +p10107 +tp10108 +a(g10105 +g10107 +S'to' +p10109 +tp10110 +a(g10107 +g10109 +S'be' +p10111 +tp10112 +a(g10109 +g10111 +S'by' +p10113 +tp10114 +a(g10111 +g10113 +S'titian' +p10115 +tp10116 +a(g10113 +g10115 +S'and' +p10117 +tp10118 +a(g10115 +g10117 +S'to' +p10119 +tp10120 +a(g10117 +g10119 +S'represent' +p10121 +tp10122 +a(g10119 +g10121 +S'that' +p10123 +tp10124 +a(g10121 +g10123 +S"artist's" +p10125 +tp10126 +a(g10123 +g10125 +S'ideal' +p10127 +tp10128 +a(g10125 +g10127 +S'of' +p10129 +tp10130 +a(g10127 +g10129 +S'a' +p10131 +tp10132 +a(g10129 +g10131 +S'schoolmaster.' +p10133 +tp10134 +a(g10131 +g10133 +S'but' +p10135 +tp10136 +a(g10133 +g10135 +S'according' +p10137 +tp10138 +a(g10135 +g10137 +S'to' +p10139 +tp10140 +a(g10137 +g10139 +S'another' +p10141 +tp10142 +a(g10139 +g10141 +S'tradition,' +p10143 +tp10144 +a(g10141 +g10143 +S'the' +p10145 +tp10146 +a(g10143 +g10145 +S'picture' +p10147 +tp10148 +a(g10145 +g10147 +S'got' +p10149 +tp10150 +a(g10147 +g10149 +S'its' +p10151 +tp10152 +a(g10149 +g10151 +S'name' +p10153 +tp10154 +a(g10151 +g10153 +S'because' +p10155 +tp10156 +a(g10153 +g10155 +S'titian' +p10157 +tp10158 +a(g10155 +g10157 +S'admired' +p10159 +tp10160 +a(g10157 +g10159 +S'it' +p10161 +tp10162 +a(g10159 +g10161 +S'and' +p10163 +tp10164 +a(g10161 +g10163 +S'learned' +p10165 +tp10166 +a(g10163 +g10165 +S'so' +p10167 +tp10168 +a(g10165 +g10167 +S'much' +p10169 +tp10170 +a(g10167 +g10169 +S'from' +p10171 +tp10172 +a(g10169 +g10171 +S'it.' +p10173 +tp10174 +a(g10171 +g10173 +S'whether' +p10175 +tp10176 +a(g10173 +g10175 +S'or' +p10177 +tp10178 +a(g10175 +g10177 +S'not' +p10179 +tp10180 +a(g10177 +g10179 +S'the' +p10181 +tp10182 +a(g10179 +g10181 +S'older' +p10183 +tp10184 +a(g10181 +g10183 +S'master' +p10185 +tp10186 +a(g10183 +g10185 +S'ever' +p10187 +tp10188 +a(g10185 +g10187 +S'saw' +p10189 +tp10190 +a(g10187 +g10189 +S'this' +p10191 +tp10192 +a(g10189 +g10191 +S'painting,' +p10193 +tp10194 +a(g10191 +g10193 +S"moroni's" +p10195 +tp10196 +a(g10193 +g10195 +S'strong,' +p10197 +tp10198 +a(g10195 +g10197 +S'simple' +p10199 +tp10200 +a(g10197 +g10199 +S'composition' +p10201 +tp10202 +a(g10199 +g10201 +S'and' +p10203 +tp10204 +a(g10201 +g10203 +S'trenchant' +p10205 +tp10206 +a(g10203 +g10205 +S'characterization' +p10207 +tp10208 +a(g10205 +g10207 +S'did' +p10209 +tp10210 +a(g10207 +g10209 +S'impress' +p10211 +tp10212 +a(g10209 +g10211 +S'two' +p10213 +tp10214 +a(g10211 +g10213 +S'later' +p10215 +tp10216 +a(g10213 +g10215 +S'specialists' +p10217 +tp10218 +a(g10215 +g10217 +S'in' +p10219 +tp10220 +a(g10217 +g10219 +S'portraiture:' +p10221 +tp10222 +a(g10219 +g10221 +S'anthony' +p10223 +tp10224 +a(g10221 +g10223 +S'van' +p10225 +tp10226 +a(g10223 +g10225 +S'dyck' +p10227 +tp10228 +a(g10225 +g10227 +S'and' +p10229 +tp10230 +a(g10227 +g10229 +S'joshua' +p10231 +tp10232 +a(g10229 +g10231 +S'reynolds' +p10233 +tp10234 +a(g10231 +g10233 +S'both' +p10235 +tp10236 +a(g10233 +g10235 +S'made' +p10237 +tp10238 +a(g10235 +g10237 +S'copies' +p10239 +tp10240 +a(g10237 +g10239 +S'of' +p10241 +tp10242 +a(g10239 +g10241 +S'it.' +p10243 +tp10244 +a(g10241 +g10243 +S'the' +p10245 +tp10246 +a(g10243 +g10245 +S'subject,' +p10247 +tp10248 +a(g10245 +g10247 +S'dressed' +p10249 +tp10250 +a(g10247 +g10249 +S'all' +p10251 +tp10252 +a(g10249 +g10251 +S'in' +p10253 +tp10254 +a(g10251 +g10253 +S'black,' +p10255 +tp10256 +a(g10253 +g10255 +S'sits' +p10257 +tp10258 +a(g10255 +g10257 +S'in' +p10259 +tp10260 +a(g10257 +g10259 +S'a' +p10261 +tp10262 +a(g10259 +g10261 +S'savanarola' +p10263 +tp10264 +a(g10261 +g10263 +S'chair' +p10265 +tp10266 +a(g10263 +g10265 +S'that' +p10267 +tp10268 +a(g10265 +g10267 +S'is' +p10269 +tp10270 +a(g10267 +g10269 +S'seen' +p10271 +tp10272 +a(g10269 +g10271 +S'--' +p10273 +tp10274 +a(g10271 +g10273 +S'unexpectedly' +p10275 +tp10276 +a(g10273 +g10275 +S'--' +p10277 +tp10278 +a(g10275 +g10277 +S'in' +p10279 +tp10280 +a(g10277 +g10279 +S'profile.' +p10281 +tp10282 +a(g10279 +g10281 +S'he' +p10283 +tp10284 +a(g10281 +g10283 +S'rests' +p10285 +tp10286 +a(g10283 +g10285 +S'one' +p10287 +tp10288 +a(g10285 +g10287 +S'beautifully' +p10289 +tp10290 +a(g10287 +g10289 +S'drawn' +p10291 +tp10292 +a(g10289 +g10291 +S'hand' +p10293 +tp10294 +a(g10291 +g10293 +S'on' +p10295 +tp10296 +a(g10293 +g10295 +S'the' +p10297 +tp10298 +a(g10295 +g10297 +S'arm' +p10299 +tp10300 +a(g10297 +g10299 +S'of' +p10301 +tp10302 +a(g10299 +g10301 +S'the' +p10303 +tp10304 +a(g10301 +g10303 +S'chair' +p10305 +tp10306 +a(g10303 +g10305 +S'and' +p10307 +tp10308 +a(g10305 +g10307 +S'turns' +p10309 +tp10310 +a(g10307 +g10309 +S'as' +p10311 +tp10312 +a(g10309 +g10311 +S'if' +p10313 +tp10314 +a(g10311 +g10313 +S'to' +p10315 +tp10316 +a(g10313 +g10315 +S'regard' +p10317 +tp10318 +a(g10315 +g10317 +S'the' +p10319 +tp10320 +a(g10317 +g10319 +S'spectator.' +p10321 +tp10322 +a(g10319 +g10321 +S'with' +p10323 +tp10324 +a(g10321 +g10323 +S'his' +p10325 +tp10326 +a(g10323 +g10325 +S'other' +p10327 +tp10328 +a(g10325 +g10327 +S'hand' +p10329 +tp10330 +a(g10327 +g10329 +S'he' +p10331 +tp10332 +a(g10329 +g10331 +S'holds' +p10333 +tp10334 +a(g10331 +g10333 +S'his' +p10335 +tp10336 +a(g10333 +g10335 +S'place' +p10337 +tp10338 +a(g10335 +g10337 +S'in' +p10339 +tp10340 +a(g10337 +g10339 +S'a' +p10341 +tp10342 +a(g10339 +g10341 +S'book,' +p10343 +tp10344 +a(g10341 +g10343 +S'thoughts' +p10345 +tp10346 +a(g10343 +g10345 +S'of' +p10347 +tp10348 +a(g10345 +g10347 +S'which,' +p10349 +tp10350 +a(g10347 +g10349 +S'judging' +p10351 +tp10352 +a(g10349 +g10351 +S'from' +p10353 +tp10354 +a(g10351 +g10353 +S'his' +p10355 +tp10356 +a(g10353 +g10355 +S'absorbed' +p10357 +tp10358 +a(g10355 +g10357 +S'gaze,' +p10359 +tp10360 +a(g10357 +g10359 +S'still' +p10361 +tp10362 +a(g10359 +g10361 +S'occupy' +p10363 +tp10364 +a(g10361 +g10363 +S'his' +p10365 +tp10366 +a(g10363 +g10365 +S'mind.' +p10367 +tp10368 +a(g10365 +g10367 +S'the' +p10369 +tp10370 +a(g10367 +g10369 +S'white,' +p10371 +tp10372 +a(g10369 +g10371 +S'embroidered' +p10373 +tp10374 +a(g10371 +g10373 +S'collar' +p10375 +tp10376 +a(g10373 +g10375 +S'sets' +p10377 +tp10378 +a(g10375 +g10377 +S'off' +p10379 +tp10380 +a(g10377 +g10379 +S'the' +p10381 +tp10382 +a(g10379 +g10381 +S'face,' +p10383 +tp10384 +a(g10381 +g10383 +S'and' +p10385 +tp10386 +a(g10383 +g10385 +S'the' +p10387 +tp10388 +a(g10385 +g10387 +S'asymmetrical' +p10389 +tp10390 +a(g10387 +g10389 +S'points' +p10391 +tp10392 +a(g10389 +g10391 +S'echo' +p10393 +tp10394 +a(g10391 +g10393 +S'the' +p10395 +tp10396 +a(g10393 +g10395 +S"man's" +p10397 +tp10398 +a(g10395 +g10397 +S'uneven' +p10399 +tp10400 +a(g10397 +g10399 +S'features.' +p10401 +tp10402 +a(g10399 +g10401 +S'even' +p10403 +tp10404 +a(g10401 +g10403 +S'the' +p10405 +tp10406 +a(g10403 +g10405 +S'bristly' +p10407 +tp10408 +a(g10405 +g10407 +S'textures' +p10409 +tp10410 +a(g10407 +g10409 +S'of' +p10411 +tp10412 +a(g10409 +g10411 +S'the' +p10413 +tp10414 +a(g10411 +g10413 +S'trimmed' +p10415 +tp10416 +a(g10413 +g10415 +S'whiskers' +p10417 +tp10418 +a(g10415 +g10417 +S'and' +p10419 +tp10420 +a(g10417 +g10419 +S'clipped,' +p10421 +tp10422 +a(g10419 +g10421 +S'grizzled' +p10423 +tp10424 +a(g10421 +g10423 +S'hair' +p10425 +tp10426 +a(g10423 +g10425 +S'command' +p10427 +tp10428 +a(g10425 +g10427 +S'attention.' +p10429 +tp10430 +a(g10427 +g10429 +S"seville's" +p10431 +tp10432 +a(g10429 +g10431 +S'most' +p10433 +tp10434 +a(g10431 +g10433 +S'popular' +p10435 +tp10436 +a(g10433 +g10435 +S'painter' +p10437 +tp10438 +a(g10435 +g10437 +S'in' +p10439 +tp10440 +a(g10437 +g10439 +S'the' +p10441 +tp10442 +a(g10439 +g10441 +S'later' +p10443 +tp10444 +a(g10441 +g10443 +S'seventeenth' +p10445 +tp10446 +a(g10443 +g10445 +S'century' +p10447 +tp10448 +a(g10445 +g10447 +S'was' +p10449 +tp10450 +a(g10447 +g10449 +S'bartolomé' +p10451 +tp10452 +a(g10449 +g10451 +S'esteban' +p10453 +tp10454 +a(g10451 +g10453 +S'murillo.' +p10455 +tp10456 +a(g10453 +g10455 +S'while' +p10457 +tp10458 +a(g10455 +g10457 +S'murillo' +p10459 +tp10460 +a(g10457 +g10459 +S'is' +p10461 +tp10462 +a(g10459 +g10461 +S'best' +p10463 +tp10464 +a(g10461 +g10463 +S'known' +p10465 +tp10466 +a(g10463 +g10465 +S'for' +p10467 +tp10468 +a(g10465 +g10467 +S'works' +p10469 +tp10470 +a(g10467 +g10469 +S'with' +p10471 +tp10472 +a(g10469 +g10471 +S'religious' +p10473 +tp10474 +a(g10471 +g10473 +S'themes,' +p10475 +tp10476 +a(g10473 +g10475 +S'he' +p10477 +tp10478 +a(g10475 +g10477 +S'also' +p10479 +tp10480 +a(g10477 +g10479 +S'produced' +p10481 +tp10482 +a(g10479 +g10481 +S'a' +p10483 +tp10484 +a(g10481 +g10483 +S'number' +p10485 +tp10486 +a(g10483 +g10485 +S'of' +p10487 +tp10488 +a(g10485 +g10487 +S'genre' +p10489 +tp10490 +a(g10487 +g10489 +S'paintings' +p10491 +tp10492 +a(g10489 +g10491 +S'of' +p10493 +tp10494 +a(g10491 +g10493 +S'figures' +p10495 +tp10496 +a(g10493 +g10495 +S'from' +p10497 +tp10498 +a(g10495 +g10497 +S'contemporary' +p10499 +tp10500 +a(g10497 +g10499 +S'life' +p10501 +tp10502 +a(g10499 +g10501 +S'engaged' +p10503 +tp10504 +a(g10501 +g10503 +S'in' +p10505 +tp10506 +a(g10503 +g10505 +S'ordinary' +p10507 +tp10508 +a(g10505 +g10507 +S'pursuits.' +p10509 +tp10510 +a(g10507 +g10509 +S'these' +p10511 +tp10512 +a(g10509 +g10511 +S'pictures' +p10513 +tp10514 +a(g10511 +g10513 +S'often' +p10515 +tp10516 +a(g10513 +g10515 +S'possess' +p10517 +tp10518 +a(g10515 +g10517 +S'a' +p10519 +tp10520 +a(g10517 +g10519 +S'wistful' +p10521 +tp10522 +a(g10519 +g10521 +S'charm;' +p10523 +tp10524 +a(g10521 +g10523 +S'the' +p10525 +tp10526 +a(g10523 +g10525 +S'convincingly' +p10527 +tp10528 +a(g10525 +g10527 +S'modeled,' +p10529 +tp10530 +a(g10527 +g10529 +S'life–size' +p10531 +tp10532 +a(g10529 +g10531 +S'figures,' +p10533 +tp10534 +a(g10531 +g10533 +S'framed' +p10535 +tp10536 +a(g10533 +g10535 +S'within' +p10537 +tp10538 +a(g10535 +g10537 +S'an' +p10539 +tp10540 +a(g10537 +g10539 +S'illusionistically' +p10541 +tp10542 +a(g10539 +g10541 +S'painted' +p10543 +tp10544 +a(g10541 +g10543 +S'window,' +p10545 +tp10546 +a(g10543 +g10545 +S'derive' +p10547 +tp10548 +a(g10545 +g10547 +S'from' +p10549 +tp10550 +a(g10547 +g10549 +S'dutch' +p10551 +tp10552 +a(g10549 +g10551 +S'paintings' +p10553 +tp10554 +a(g10551 +g10553 +S'that' +p10555 +tp10556 +a(g10553 +g10555 +S'were' +p10557 +tp10558 +a(g10555 +g10557 +S'meant' +p10559 +tp10560 +a(g10557 +g10559 +S'to' +p10561 +tp10562 +a(g10559 +g10561 +S'fool' +p10563 +tp10564 +a(g10561 +g10563 +S'the' +p10565 +tp10566 +a(g10563 +g10565 +S'eye.' +p10567 +tp10568 +a(g10565 +g10567 +S'this' +p10569 +tp10570 +a(g10567 +g10569 +S'is' +p10571 +tp10572 +a(g10569 +g10571 +S'often' +p10573 +tp10574 +a(g10571 +g10573 +S'described' +p10575 +tp10576 +a(g10573 +g10575 +S'as' +p10577 +tp10578 +a(g10575 +g10577 +S'one' +p10579 +tp10580 +a(g10577 +g10579 +S'of' +p10581 +tp10582 +a(g10579 +g10581 +S'the' +p10583 +tp10584 +a(g10581 +g10583 +S'earliest' +p10585 +tp10586 +a(g10583 +g10585 +S'portraits' +p10587 +tp10588 +a(g10585 +g10587 +S'from' +p10589 +tp10590 +a(g10587 +g10589 +S'renaissance' +p10591 +tp10592 +a(g10589 +g10591 +S'siena.' +p10593 +tp10594 +a(g10591 +g10593 +S'while' +p10595 +tp10596 +a(g10593 +g10595 +S'humanism' +p10597 +tp10598 +a(g10595 +g10597 +S'and' +p10599 +tp10600 +a(g10597 +g10599 +S'a' +p10601 +tp10602 +a(g10599 +g10601 +S'focus' +p10603 +tp10604 +a(g10601 +g10603 +S'on' +p10605 +tp10606 +a(g10603 +g10605 +S'man' +p10607 +tp10608 +a(g10605 +g10607 +S'and' +p10609 +tp10610 +a(g10607 +g10609 +S'individual' +p10611 +tp10612 +a(g10609 +g10611 +S'accomplishment' +p10613 +tp10614 +a(g10611 +g10613 +S'had' +p10615 +tp10616 +a(g10613 +g10615 +S'helped' +p10617 +tp10618 +a(g10615 +g10617 +S'create' +p10619 +tp10620 +a(g10617 +g10619 +S'a' +p10621 +tp10622 +a(g10619 +g10621 +S'market' +p10623 +tp10624 +a(g10621 +g10623 +S'for' +p10625 +tp10626 +a(g10623 +g10625 +S'portraiture' +p10627 +tp10628 +a(g10625 +g10627 +S'in' +p10629 +tp10630 +a(g10627 +g10629 +S'florence' +p10631 +tp10632 +a(g10629 +g10631 +S'in' +p10633 +tp10634 +a(g10631 +g10633 +S'the' +p10635 +tp10636 +a(g10633 +g10635 +S'mid' +p10637 +tp10638 +a(g10635 +g10637 +S'1400s,' +p10639 +tp10640 +a(g10637 +g10639 +S'in' +p10641 +tp10642 +a(g10639 +g10641 +S'siena' +p10643 +tp10644 +a(g10641 +g10643 +S'it' +p10645 +tp10646 +a(g10643 +g10645 +S'remained' +p10647 +tp10648 +a(g10645 +g10647 +S'rare.' +p10649 +tp10650 +a(g10647 +g10649 +S'there' +p10651 +tp10652 +a(g10649 +g10651 +S'was' +p10653 +tp10654 +a(g10651 +g10653 +S'little' +p10655 +tp10656 +a(g10653 +g10655 +S'demand' +p10657 +tp10658 +a(g10655 +g10657 +S'for' +p10659 +tp10660 +a(g10657 +g10659 +S'private' +p10661 +tp10662 +a(g10659 +g10661 +S'secular' +p10663 +tp10664 +a(g10661 +g10663 +S'art' +p10665 +tp10666 +a(g10663 +g10665 +S'of' +p10667 +tp10668 +a(g10665 +g10667 +S'any' +p10669 +tp10670 +a(g10667 +g10669 +S'kind' +p10671 +tp10672 +a(g10669 +g10671 +S'until' +p10673 +tp10674 +a(g10671 +g10673 +S'the' +p10675 +tp10676 +a(g10673 +g10675 +S'last' +p10677 +tp10678 +a(g10675 +g10677 +S'quarter' +p10679 +tp10680 +a(g10677 +g10679 +S'of' +p10681 +tp10682 +a(g10679 +g10681 +S'the' +p10683 +tp10684 +a(g10681 +g10683 +S'century,' +p10685 +tp10686 +a(g10683 +g10685 +S'when' +p10687 +tp10688 +a(g10685 +g10687 +S'humanism' +p10689 +tp10690 +a(g10687 +g10689 +S'finally' +p10691 +tp10692 +a(g10689 +g10691 +S'asserted' +p10693 +tp10694 +a(g10691 +g10693 +S'itself' +p10695 +tp10696 +a(g10693 +g10695 +S'following' +p10697 +tp10698 +a(g10695 +g10697 +S'the' +p10699 +tp10700 +a(g10697 +g10699 +S'election' +p10701 +tp10702 +a(g10699 +g10701 +S'of' +p10703 +tp10704 +a(g10701 +g10703 +S'pope' +p10705 +tp10706 +a(g10703 +g10705 +S'pius' +p10707 +tp10708 +a(g10705 +g10707 +S'ii,' +p10709 +tp10710 +a(g10707 +g10709 +S'the' +p10711 +tp10712 +a(g10709 +g10711 +S'former' +p10713 +tp10714 +a(g10711 +g10713 +S'aeneas' +p10715 +tp10716 +a(g10713 +g10715 +S'silvius' +p10717 +tp10718 +a(g10715 +g10717 +S'piccolomini.' +p10719 +tp10720 +a(g10717 +g10719 +S'a' +p10721 +tp10722 +a(g10719 +g10721 +S'member' +p10723 +tp10724 +a(g10721 +g10723 +S'of' +p10725 +tp10726 +a(g10723 +g10725 +S'a' +p10727 +tp10728 +a(g10725 +g10727 +S'prominent' +p10729 +tp10730 +a(g10727 +g10729 +S'sienese' +p10731 +tp10732 +a(g10729 +g10731 +S'family' +p10733 +tp10734 +a(g10731 +g10733 +S'and' +p10735 +tp10736 +a(g10733 +g10735 +S'noted' +p10737 +tp10738 +a(g10735 +g10737 +S'humanist,' +p10739 +tp10740 +a(g10737 +g10739 +S'he' +p10741 +tp10742 +a(g10739 +g10741 +S'was' +p10743 +tp10744 +a(g10741 +g10743 +S'the' +p10745 +tp10746 +a(g10743 +g10745 +S'first' +p10747 +tp10748 +a(g10745 +g10747 +S'pope' +p10749 +tp10750 +a(g10747 +g10749 +S'to' +p10751 +tp10752 +a(g10749 +g10751 +S'write' +p10753 +tp10754 +a(g10751 +g10753 +S'a' +p10755 +tp10756 +a(g10753 +g10755 +S'true' +p10757 +tp10758 +a(g10755 +g10757 +S'autobiography.' +p10759 +tp10760 +a(g10757 +g10759 +S'the' +p10761 +tp10762 +a(g10759 +g10761 +S'young' +p10763 +tp10764 +a(g10761 +g10763 +S'woman' +p10765 +tp10766 +a(g10763 +g10765 +S'on' +p10767 +tp10768 +a(g10765 +g10767 +S'this' +p10769 +tp10770 +a(g10767 +g10769 +S'panel' +p10771 +tp10772 +a(g10769 +g10771 +S'has' +p10773 +tp10774 +a(g10771 +g10773 +S'a' +p10775 +tp10776 +a(g10773 +g10775 +S'dreamy' +p10777 +tp10778 +a(g10775 +g10777 +S'and' +p10779 +tp10780 +a(g10777 +g10779 +S'idealized' +p10781 +tp10782 +a(g10779 +g10781 +S'beauty,' +p10783 +tp10784 +a(g10781 +g10783 +S'accented' +p10785 +tp10786 +a(g10783 +g10785 +S'by' +p10787 +tp10788 +a(g10785 +g10787 +S'masses' +p10789 +tp10790 +a(g10787 +g10789 +S'of' +p10791 +tp10792 +a(g10789 +g10791 +S'blond' +p10793 +tp10794 +a(g10791 +g10793 +S'hair.' +p10795 +tp10796 +a(g10793 +g10795 +S'(saint' +p10797 +tp10798 +a(g10795 +g10797 +S'bernardino' +p10799 +tp10800 +a(g10797 +g10799 +S'preached' +p10801 +tp10802 +a(g10799 +g10801 +S'against' +p10803 +tp10804 +a(g10801 +g10803 +S'women' +p10805 +tp10806 +a(g10803 +g10805 +S'who' +p10807 +tp10808 +a(g10805 +g10807 +S'bleached' +p10809 +tp10810 +a(g10807 +g10809 +S'their' +p10811 +tp10812 +a(g10809 +g10811 +S'hair' +p10813 +tp10814 +a(g10811 +g10813 +S'in' +p10815 +tp10816 +a(g10813 +g10815 +S'the' +p10817 +tp10818 +a(g10815 +g10817 +S'sun' +p10819 +tp10820 +a(g10817 +g10819 +S'and' +p10821 +tp10822 +a(g10819 +g10821 +S'sat' +p10823 +tp10824 +a(g10821 +g10823 +S'in' +p10825 +tp10826 +a(g10823 +g10825 +S'public' +p10827 +tp10828 +a(g10825 +g10827 +S'squares' +p10829 +tp10830 +a(g10827 +g10829 +S'to' +p10831 +tp10832 +a(g10829 +g10831 +S'dry' +p10833 +tp10834 +a(g10831 +g10833 +S'it.)' +p10835 +tp10836 +a(g10833 +g10835 +S'her' +p10837 +tp10838 +a(g10835 +g10837 +S'three-quarter' +p10839 +tp10840 +a(g10837 +g10839 +S'pose' +p10841 +tp10842 +a(g10839 +g10841 +S'is' +p10843 +tp10844 +a(g10841 +g10843 +S'unusual;' +p10845 +tp10846 +a(g10843 +g10845 +S'most' +p10847 +tp10848 +a(g10845 +g10847 +S'female' +p10849 +tp10850 +a(g10847 +g10849 +S'portraits' +p10851 +tp10852 +a(g10849 +g10851 +S'in' +p10853 +tp10854 +a(g10851 +g10853 +S'italy' +p10855 +tp10856 +a(g10853 +g10855 +S'at' +p10857 +tp10858 +a(g10855 +g10857 +S'this' +p10859 +tp10860 +a(g10857 +g10859 +S'date' +p10861 +tp10862 +a(g10859 +g10861 +S'were' +p10863 +tp10864 +a(g10861 +g10863 +S'in' +p10865 +tp10866 +a(g10863 +g10865 +S'profile.' +p10867 +tp10868 +a(g10865 +g10867 +S'many' +p10869 +tp10870 +a(g10867 +g10869 +S'portraits' +p10871 +tp10872 +a(g10869 +g10871 +S'were' +p10873 +tp10874 +a(g10871 +g10873 +S'commissioned' +p10875 +tp10876 +a(g10873 +g10875 +S'to' +p10877 +tp10878 +a(g10875 +g10877 +S'commemorate' +p10879 +tp10880 +a(g10877 +g10879 +S'a' +p10881 +tp10882 +a(g10879 +g10881 +S'marriage' +p10883 +tp10884 +a(g10881 +g10883 +S'or' +p10885 +tp10886 +a(g10883 +g10885 +S'betrothal.' +p10887 +tp10888 +a(g10885 +g10887 +S'this' +p10889 +tp10890 +a(g10887 +g10889 +S"woman's" +p10891 +tp10892 +a(g10889 +g10891 +S'loose' +p10893 +tp10894 +a(g10891 +g10893 +S'hairstyle' +p10895 +tp10896 +a(g10893 +g10895 +S'suggests' +p10897 +tp10898 +a(g10895 +g10897 +S'that' +p10899 +tp10900 +a(g10897 +g10899 +S'she' +p10901 +tp10902 +a(g10899 +g10901 +S'is' +p10903 +tp10904 +a(g10901 +g10903 +S'not' +p10905 +tp10906 +a(g10903 +g10905 +S'yet' +p10907 +tp10908 +a(g10905 +g10907 +S'married.' +p10909 +tp10910 +a(g10907 +g10909 +S'she' +p10911 +tp10912 +a(g10909 +g10911 +S'may' +p10913 +tp10914 +a(g10911 +g10913 +S'have' +p10915 +tp10916 +a(g10913 +g10915 +S'been' +p10917 +tp10918 +a(g10915 +g10917 +S'a' +p10919 +tp10920 +a(g10917 +g10919 +S'member' +p10921 +tp10922 +a(g10919 +g10921 +S'of' +p10923 +tp10924 +a(g10921 +g10923 +S'the' +p10925 +tp10926 +a(g10923 +g10925 +S'bandini' +p10927 +tp10928 +a(g10925 +g10927 +S'family,' +p10929 +tp10930 +a(g10927 +g10929 +S'whose' +p10931 +tp10932 +a(g10929 +g10931 +S'crest' +p10933 +tp10934 +a(g10931 +g10933 +S'of' +p10935 +tp10936 +a(g10933 +g10935 +S'sphere-' +p10937 +tp10938 +a(g10935 +g10937 +S'biting' +p10939 +tp10940 +a(g10937 +g10939 +S'eagles' +p10941 +tp10942 +a(g10939 +g10941 +S'appears' +p10943 +tp10944 +a(g10941 +g10943 +S'around' +p10945 +tp10946 +a(g10943 +g10945 +S'the' +p10947 +tp10948 +a(g10945 +g10947 +S'frame,' +p10949 +tp10950 +a(g10947 +g10949 +S'which' +p10951 +tp10952 +a(g10949 +g10951 +S'is' +p10953 +tp10954 +a(g10951 +g10953 +S'probably' +p10955 +tp10956 +a(g10953 +g10955 +S'original.' +p10957 +tp10958 +a(g10955 +g10957 +S'the' +p10959 +tp10960 +a(g10957 +g10959 +S'flames' +p10961 +tp10962 +a(g10959 +g10961 +S'that' +p10963 +tp10964 +a(g10961 +g10963 +S'alternate' +p10965 +tp10966 +a(g10963 +g10965 +S'with' +p10967 +tp10968 +a(g10965 +g10967 +S'the' +p10969 +tp10970 +a(g10967 +g10969 +S'bandini' +p10971 +tp10972 +a(g10969 +g10971 +S'crest' +p10973 +tp10974 +a(g10971 +g10973 +S'may' +p10975 +tp10976 +a(g10973 +g10975 +S'be' +p10977 +tp10978 +a(g10975 +g10977 +S'a' +p10979 +tp10980 +a(g10977 +g10979 +S'reference' +p10981 +tp10982 +a(g10979 +g10981 +S'to' +p10983 +tp10984 +a(g10981 +g10983 +S'her' +p10985 +tp10986 +a(g10983 +g10985 +S'future' +p10987 +tp10988 +a(g10985 +g10987 +S'husband,' +p10989 +tp10990 +a(g10987 +g10989 +S'or' +p10991 +tp10992 +a(g10989 +g10991 +S'they' +p10993 +tp10994 +a(g10991 +g10993 +S'may' +p10995 +tp10996 +a(g10993 +g10995 +S'hint' +p10997 +tp10998 +a(g10995 +g10997 +S'that' +p10999 +tp11000 +a(g10997 +g10999 +S'her' +p11001 +tp11002 +a(g10999 +g11001 +S'given' +p11003 +tp11004 +a(g11001 +g11003 +S'name' +p11005 +tp11006 +a(g11003 +g11005 +S'was' +p11007 +tp11008 +a(g11005 +g11007 +S'fiammetta' +p11009 +tp11010 +a(g11007 +g11009 +S'(related' +p11011 +tp11012 +a(g11009 +g11011 +S'to' +p11013 +tp11014 +a(g11011 +g11013 +S'the' +p11015 +tp11016 +a(g11013 +g11015 +S'word' +p11017 +tp11018 +a(g11015 +g11017 +S'for' +p11019 +tp11020 +a(g11017 +g11019 +S'"blaze").' +p11021 +tp11022 +a(g11019 +g11021 +S'in' +p11023 +tp11024 +a(g11021 +g11023 +S'contrast' +p11025 +tp11026 +a(g11023 +g11025 +S'to' +p11027 +tp11028 +a(g11025 +g11027 +S'the' +p11029 +tp11030 +a(g11027 +g11029 +S'paved,' +p11031 +tp11032 +a(g11029 +g11031 +S'urban' +p11033 +tp11034 +a(g11031 +g11033 +S'gardens' +p11035 +tp11036 +a(g11033 +g11035 +S'portrayed' +p11037 +tp11038 +a(g11035 +g11037 +S'by' +p11039 +tp11040 +a(g11037 +g11039 +S'pieter' +p11041 +tp11042 +a(g11039 +g11041 +S'de' +p11043 +tp11044 +a(g11041 +g11043 +S'hooch,' +p11045 +tp11046 +a(g11043 +g11045 +S'this' +p11047 +tp11048 +a(g11045 +g11047 +S'country' +p11049 +tp11050 +a(g11047 +g11049 +S'cottage' +p11051 +tp11052 +a(g11049 +g11051 +S'has' +p11053 +tp11054 +a(g11051 +g11053 +S'only' +p11055 +tp11056 +a(g11053 +g11055 +S'a' +p11057 +tp11058 +a(g11055 +g11057 +S'dirt' +p11059 +tp11060 +a(g11057 +g11059 +S'yard,' +p11061 +tp11062 +a(g11059 +g11061 +S'where' +p11063 +tp11064 +a(g11061 +g11063 +S'the' +p11065 +tp11066 +a(g11063 +g11065 +S'wife' +p11067 +tp11068 +a(g11065 +g11067 +S'cleans' +p11069 +tp11070 +a(g11067 +g11069 +S'mussels' +p11071 +tp11072 +a(g11069 +g11071 +S'for' +p11073 +tp11074 +a(g11071 +g11073 +S'dinner.' +p11075 +tp11076 +a(g11073 +g11075 +S'laundry' +p11077 +tp11078 +a(g11075 +g11077 +S'dries' +p11079 +tp11080 +a(g11077 +g11079 +S'on' +p11081 +tp11082 +a(g11079 +g11081 +S'a' +p11083 +tp11084 +a(g11081 +g11083 +S'line' +p11085 +tp11086 +a(g11083 +g11085 +S'attached' +p11087 +tp11088 +a(g11085 +g11087 +S'to' +p11089 +tp11090 +a(g11087 +g11089 +S'a' +p11091 +tp11092 +a(g11089 +g11091 +S'shed,' +p11093 +tp11094 +a(g11091 +g11093 +S'which' +p11095 +tp11096 +a(g11093 +g11095 +S'also' +p11097 +tp11098 +a(g11095 +g11097 +S'supports' +p11099 +tp11100 +a(g11097 +g11099 +S'a' +p11101 +tp11102 +a(g11099 +g11101 +S'pigeon' +p11103 +tp11104 +a(g11101 +g11103 +S'coop,' +p11105 +tp11106 +a(g11103 +g11105 +S'and' +p11107 +tp11108 +a(g11105 +g11107 +S'the' +p11109 +tp11110 +a(g11107 +g11109 +S'shelf' +p11111 +tp11112 +a(g11109 +g11111 +S'by' +p11113 +tp11114 +a(g11111 +g11113 +S'the' +p11115 +tp11116 +a(g11113 +g11115 +S'door' +p11117 +tp11118 +a(g11115 +g11117 +S'holds' +p11119 +tp11120 +a(g11117 +g11119 +S'beehives.' +p11121 +tp11122 +a(g11119 +g11121 +S'the' +p11123 +tp11124 +a(g11121 +g11123 +S'clinging' +p11125 +tp11126 +a(g11123 +g11125 +S'vines' +p11127 +tp11128 +a(g11125 +g11127 +S'may' +p11129 +tp11130 +a(g11127 +g11129 +S'allude' +p11131 +tp11132 +a(g11129 +g11131 +S'to' +p11133 +tp11134 +a(g11131 +g11133 +S'family' +p11135 +tp11136 +a(g11133 +g11135 +S'unity.' +p11137 +tp11138 +a(g11135 +g11137 +S'in' +p11139 +tp11140 +a(g11137 +g11139 +S'addition' +p11141 +tp11142 +a(g11139 +g11141 +S'to' +p11143 +tp11144 +a(g11141 +g11143 +S'such' +p11145 +tp11146 +a(g11143 +g11145 +S'touching' +p11147 +tp11148 +a(g11145 +g11147 +S'and' +p11149 +tp11150 +a(g11147 +g11149 +S'dignified' +p11151 +tp11152 +a(g11149 +g11151 +S'portrayals' +p11153 +tp11154 +a(g11151 +g11153 +S'of' +p11155 +tp11156 +a(g11153 +g11155 +S'peasants,' +p11157 +tp11158 +a(g11155 +g11157 +S'van' +p11159 +tp11160 +a(g11157 +g11159 +S'ostade' +p11161 +tp11162 +a(g11159 +g11161 +S'painted' +p11163 +tp11164 +a(g11161 +g11163 +S'bawdy' +p11165 +tp11166 +a(g11163 +g11165 +S'scenes' +p11167 +tp11168 +a(g11165 +g11167 +S'of' +p11169 +tp11170 +a(g11167 +g11169 +S'taverns' +p11171 +tp11172 +a(g11169 +g11171 +S'and' +p11173 +tp11174 +a(g11171 +g11173 +S'barns.' +p11175 +tp11176 +a(g11173 +g11175 +S'he' +p11177 +tp11178 +a(g11175 +g11177 +S'entered' +p11179 +tp11180 +a(g11177 +g11179 +S'the' +p11181 +tp11182 +a(g11179 +g11181 +S'haarlem' +p11183 +tp11184 +a(g11181 +g11183 +S'guild' +p11185 +tp11186 +a(g11183 +g11185 +S'in' +p11187 +tp11188 +a(g11185 +g11187 +S'1634,' +p11189 +tp11190 +a(g11187 +g11189 +S'probably' +p11191 +tp11192 +a(g11189 +g11191 +S'after' +p11193 +tp11194 +a(g11191 +g11193 +S'studying' +p11195 +tp11196 +a(g11193 +g11195 +S'under' +p11197 +tp11198 +a(g11195 +g11197 +S'adriaen' +p11199 +tp11200 +a(g11197 +g11199 +S'van' +p11201 +tp11202 +a(g11199 +g11201 +S"ostade's" +p11203 +tp11204 +a(g11201 +g11203 +S'students' +p11205 +tp11206 +a(g11203 +g11205 +S'included' +p11207 +tp11208 +a(g11205 +g11207 +S'one' +p11209 +tp11210 +a(g11207 +g11209 +S'of' +p11211 +tp11212 +a(g11209 +g11211 +S'the' +p11213 +tp11214 +a(g11211 +g11213 +S'most' +p11215 +tp11216 +a(g11213 +g11215 +S'delightful' +p11217 +tp11218 +a(g11215 +g11217 +S'aspects' +p11219 +tp11220 +a(g11217 +g11219 +S'of' +p11221 +tp11222 +a(g11219 +g11221 +S'seventeenth-century' +p11223 +tp11224 +a(g11221 +g11223 +S'dutch' +p11225 +tp11226 +a(g11223 +g11225 +S'art' +p11227 +tp11228 +a(g11225 +g11227 +S'is' +p11229 +tp11230 +a(g11227 +g11229 +S'that' +p11231 +tp11232 +a(g11229 +g11231 +S'it' +p11233 +tp11234 +a(g11231 +g11233 +S'conveys' +p11235 +tp11236 +a(g11233 +g11235 +S'a' +p11237 +tp11238 +a(g11235 +g11237 +S'vivid' +p11239 +tp11240 +a(g11237 +g11239 +S'sense' +p11241 +tp11242 +a(g11239 +g11241 +S'of' +p11243 +tp11244 +a(g11241 +g11243 +S'daily' +p11245 +tp11246 +a(g11243 +g11245 +S'life.' +p11247 +tp11248 +a(g11245 +g11247 +S'in' +p11249 +tp11250 +a(g11247 +g11249 +S'this' +p11251 +tp11252 +a(g11249 +g11251 +S'painting,' +p11253 +tp11254 +a(g11251 +g11253 +S'for' +p11255 +tp11256 +a(g11253 +g11255 +S'example,' +p11257 +tp11258 +a(g11255 +g11257 +S'we' +p11259 +tp11260 +a(g11257 +g11259 +S'see' +p11261 +tp11262 +a(g11259 +g11261 +S'the' +p11263 +tp11264 +a(g11261 +g11263 +S'bustle' +p11265 +tp11266 +a(g11263 +g11265 +S'of' +p11267 +tp11268 +a(g11265 +g11267 +S'activity' +p11269 +tp11270 +a(g11267 +g11269 +S'outside' +p11271 +tp11272 +a(g11269 +g11271 +S'a' +p11273 +tp11274 +a(g11271 +g11273 +S'village' +p11275 +tp11276 +a(g11273 +g11275 +S'inn' +p11277 +tp11278 +a(g11275 +g11277 +S'as' +p11279 +tp11280 +a(g11277 +g11279 +S'two' +p11281 +tp11282 +a(g11279 +g11281 +S'well-dressed' +p11283 +tp11284 +a(g11281 +g11283 +S'travelers' +p11285 +tp11286 +a(g11283 +g11285 +S'arrive' +p11287 +tp11288 +a(g11285 +g11287 +S'and' +p11289 +tp11290 +a(g11287 +g11289 +S'dismount' +p11291 +tp11292 +a(g11289 +g11291 +S'from' +p11293 +tp11294 +a(g11291 +g11293 +S'their' +p11295 +tp11296 +a(g11293 +g11295 +S'horses.' +p11297 +tp11298 +a(g11295 +g11297 +S'a' +p11299 +tp11300 +a(g11297 +g11299 +S'beggar' +p11301 +tp11302 +a(g11299 +g11301 +S'woman' +p11303 +tp11304 +a(g11301 +g11303 +S'with' +p11305 +tp11306 +a(g11303 +g11305 +S'a' +p11307 +tp11308 +a(g11305 +g11307 +S'child' +p11309 +tp11310 +a(g11307 +g11309 +S'strapped' +p11311 +tp11312 +a(g11309 +g11311 +S'to' +p11313 +tp11314 +a(g11311 +g11313 +S'her' +p11315 +tp11316 +a(g11313 +g11315 +S'back' +p11317 +tp11318 +a(g11315 +g11317 +S'stands' +p11319 +tp11320 +a(g11317 +g11319 +S'to' +p11321 +tp11322 +a(g11319 +g11321 +S'watch' +p11323 +tp11324 +a(g11321 +g11323 +S'while' +p11325 +tp11326 +a(g11323 +g11325 +S'other' +p11327 +tp11328 +a(g11325 +g11327 +S'figures' +p11329 +tp11330 +a(g11327 +g11329 +S'converse' +p11331 +tp11332 +a(g11329 +g11331 +S'with' +p11333 +tp11334 +a(g11331 +g11333 +S'one' +p11335 +tp11336 +a(g11333 +g11335 +S'of' +p11337 +tp11338 +a(g11335 +g11337 +S'the' +p11339 +tp11340 +a(g11337 +g11339 +S'travelers.' +p11341 +tp11342 +a(g11339 +g11341 +S'the' +p11343 +tp11344 +a(g11341 +g11343 +S'main' +p11345 +tp11346 +a(g11343 +g11345 +S'street' +p11347 +tp11348 +a(g11345 +g11347 +S'of' +p11349 +tp11350 +a(g11347 +g11349 +S'the' +p11351 +tp11352 +a(g11349 +g11351 +S'village' +p11353 +tp11354 +a(g11351 +g11353 +S'is' +p11355 +tp11356 +a(g11353 +g11355 +S'filled' +p11357 +tp11358 +a(g11355 +g11357 +S'with' +p11359 +tp11360 +a(g11357 +g11359 +S'other' +p11361 +tp11362 +a(g11359 +g11361 +S'groups,' +p11363 +tp11364 +a(g11361 +g11363 +S'among' +p11365 +tp11366 +a(g11363 +g11365 +S'them' +p11367 +tp11368 +a(g11365 +g11367 +S'men' +p11369 +tp11370 +a(g11367 +g11369 +S'smoking' +p11371 +tp11372 +a(g11369 +g11371 +S'pipes' +p11373 +tp11374 +a(g11371 +g11373 +S'at' +p11375 +tp11376 +a(g11373 +g11375 +S'a' +p11377 +tp11378 +a(g11375 +g11377 +S'bench' +p11379 +tp11380 +a(g11377 +g11379 +S'before' +p11381 +tp11382 +a(g11379 +g11381 +S'the' +p11383 +tp11384 +a(g11381 +g11383 +S'inn,' +p11385 +tp11386 +a(g11383 +g11385 +S'a' +p11387 +tp11388 +a(g11385 +g11387 +S'child' +p11389 +tp11390 +a(g11387 +g11389 +S'playing' +p11391 +tp11392 +a(g11389 +g11391 +S'with' +p11393 +tp11394 +a(g11391 +g11393 +S'a' +p11395 +tp11396 +a(g11393 +g11395 +S"mother's" +p11397 +tp11398 +a(g11395 +g11397 +S'apron,' +p11399 +tp11400 +a(g11397 +g11399 +S'and' +p11401 +tp11402 +a(g11399 +g11401 +S'a' +p11403 +tp11404 +a(g11401 +g11403 +S'man' +p11405 +tp11406 +a(g11403 +g11405 +S'talking' +p11407 +tp11408 +a(g11405 +g11407 +S'to' +p11409 +tp11410 +a(g11407 +g11409 +S'a' +p11411 +tp11412 +a(g11409 +g11411 +S'woman' +p11413 +tp11414 +a(g11411 +g11413 +S'spinning' +p11415 +tp11416 +a(g11413 +g11415 +S'yarn.' +p11417 +tp11418 +a(g11415 +g11417 +S'van' +p11419 +tp11420 +a(g11417 +g11419 +S'ostade' +p11421 +tp11422 +a(g11419 +g11421 +S'creates' +p11423 +tp11424 +a(g11421 +g11423 +S'a' +p11425 +tp11426 +a(g11423 +g11425 +S'sense' +p11427 +tp11428 +a(g11425 +g11427 +S'of' +p11429 +tp11430 +a(g11427 +g11429 +S'conviviality' +p11431 +tp11432 +a(g11429 +g11431 +S'by' +p11433 +tp11434 +a(g11431 +g11433 +S'the' +p11435 +tp11436 +a(g11433 +g11435 +S'apparent' +p11437 +tp11438 +a(g11435 +g11437 +S'informality' +p11439 +tp11440 +a(g11437 +g11439 +S'of' +p11441 +tp11442 +a(g11439 +g11441 +S'these' +p11443 +tp11444 +a(g11441 +g11443 +S'human' +p11445 +tp11446 +a(g11443 +g11445 +S'contacts,' +p11447 +tp11448 +a(g11445 +g11447 +S'and' +p11449 +tp11450 +a(g11447 +g11449 +S'by' +p11451 +tp11452 +a(g11449 +g11451 +S'including' +p11453 +tp11454 +a(g11451 +g11453 +S'an' +p11455 +tp11456 +a(g11453 +g11455 +S'array' +p11457 +tp11458 +a(g11455 +g11457 +S'of' +p11459 +tp11460 +a(g11457 +g11459 +S'animals' +p11461 +tp11462 +a(g11459 +g11461 +S'within' +p11463 +tp11464 +a(g11461 +g11463 +S'the' +p11465 +tp11466 +a(g11463 +g11465 +S'scene.' +p11467 +tp11468 +a(g11465 +g11467 +S'he' +p11469 +tp11470 +a(g11467 +g11469 +S'also' +p11471 +tp11472 +a(g11469 +g11471 +S'was' +p11473 +tp11474 +a(g11471 +g11473 +S'careful' +p11475 +tp11476 +a(g11473 +g11475 +S'to' +p11477 +tp11478 +a(g11475 +g11477 +S'suggest' +p11479 +tp11480 +a(g11477 +g11479 +S'the' +p11481 +tp11482 +a(g11479 +g11481 +S'picturesque' +p11483 +tp11484 +a(g11481 +g11483 +S'character' +p11485 +tp11486 +a(g11483 +g11485 +S'of' +p11487 +tp11488 +a(g11485 +g11487 +S'the' +p11489 +tp11490 +a(g11487 +g11489 +S'buildings,' +p11491 +tp11492 +a(g11489 +g11491 +S'trees' +p11493 +tp11494 +a(g11491 +g11493 +S'and' +p11495 +tp11496 +a(g11493 +g11495 +S'vines,' +p11497 +tp11498 +a(g11495 +g11497 +S'and' +p11499 +tp11500 +a(g11497 +g11499 +S'depicted' +p11501 +tp11502 +a(g11499 +g11501 +S'the' +p11503 +tp11504 +a(g11501 +g11503 +S'aged' +p11505 +tp11506 +a(g11503 +g11505 +S'brick' +p11507 +tp11508 +a(g11505 +g11507 +S'and' +p11509 +tp11510 +a(g11507 +g11509 +S'mortar' +p11511 +tp11512 +a(g11509 +g11511 +S'construction' +p11513 +tp11514 +a(g11511 +g11513 +S'of' +p11515 +tp11516 +a(g11513 +g11515 +S'the' +p11517 +tp11518 +a(g11515 +g11517 +S'inn.' +p11519 +tp11520 +a(g11517 +g11519 +S'isack' +p11521 +tp11522 +a(g11519 +g11521 +S'van' +p11523 +tp11524 +a(g11521 +g11523 +S'ostade' +p11525 +tp11526 +a(g11523 +g11525 +S'was' +p11527 +tp11528 +a(g11525 +g11527 +S'the' +p11529 +tp11530 +a(g11527 +g11529 +S'most' +p11531 +tp11532 +a(g11529 +g11531 +S'important' +p11533 +tp11534 +a(g11531 +g11533 +S'of' +p11535 +tp11536 +a(g11533 +g11535 +S'a' +p11537 +tp11538 +a(g11535 +g11537 +S'number' +p11539 +tp11540 +a(g11537 +g11539 +S'of' +p11541 +tp11542 +a(g11539 +g11541 +S'haarlem' +p11543 +tp11544 +a(g11541 +g11543 +S'artists' +p11545 +tp11546 +a(g11543 +g11545 +S'who' +p11547 +tp11548 +a(g11545 +g11547 +S'painted' +p11549 +tp11550 +a(g11547 +g11549 +S'such' +p11551 +tp11552 +a(g11549 +g11551 +S'subjects' +p11553 +tp11554 +a(g11551 +g11553 +S'in' +p11555 +tp11556 +a(g11553 +g11555 +S'the' +p11557 +tp11558 +a(g11555 +g11557 +S'early' +p11559 +tp11560 +a(g11557 +g11559 +S'seventeenth' +p11561 +tp11562 +a(g11559 +g11561 +S'century.' +p11563 +tp11564 +a(g11561 +g11563 +S'a' +p11565 +tp11566 +a(g11563 +g11565 +S'student' +p11567 +tp11568 +a(g11565 +g11567 +S'of' +p11569 +tp11570 +a(g11567 +g11569 +S'his' +p11571 +tp11572 +a(g11569 +g11571 +S'more' +p11573 +tp11574 +a(g11571 +g11573 +S'famous,' +p11575 +tp11576 +a(g11573 +g11575 +S'older' +p11577 +tp11578 +a(g11575 +g11577 +S'brother,' +p11579 +tp11580 +a(g11577 +g11579 +S'adrian' +p11581 +tp11582 +a(g11579 +g11581 +S'van' +p11583 +tp11584 +a(g11581 +g11583 +S'ostade,' +p11585 +tp11586 +a(g11583 +g11585 +S'isack' +p11587 +tp11588 +a(g11585 +g11587 +S'tragically' +p11589 +tp11590 +a(g11587 +g11589 +S'died' +p11591 +tp11592 +a(g11589 +g11591 +S'at' +p11593 +tp11594 +a(g11591 +g11593 +S'the' +p11595 +tp11596 +a(g11593 +g11595 +S'age' +p11597 +tp11598 +a(g11595 +g11597 +S'of' +p11599 +tp11600 +a(g11597 +g11599 +S'twenty-eight.' +p11601 +tp11602 +a(g11599 +g11601 +S'despite' +p11603 +tp11604 +a(g11601 +g11603 +S'his' +p11605 +tp11606 +a(g11603 +g11605 +S'short' +p11607 +tp11608 +a(g11605 +g11607 +S'artistic' +p11609 +tp11610 +a(g11607 +g11609 +S'career,' +p11611 +tp11612 +a(g11609 +g11611 +S'he' +p11613 +tp11614 +a(g11611 +g11613 +S'had' +p11615 +tp11616 +a(g11613 +g11615 +S'an' +p11617 +tp11618 +a(g11615 +g11617 +S'extensive' +p11619 +tp11620 +a(g11617 +g11619 +S'influence' +p11621 +tp11622 +a(g11619 +g11621 +S'on' +p11623 +tp11624 +a(g11621 +g11623 +S'his' +p11625 +tp11626 +a(g11623 +g11625 +S'contemporaries,' +p11627 +tp11628 +a(g11625 +g11627 +S'including' +p11629 +tp11630 +a(g11627 +g11629 +S'jan' +p11631 +tp11632 +a(g11629 +g11631 +S'steen,' +p11633 +tp11634 +a(g11631 +g11633 +S'with' +p11635 +tp11636 +a(g11633 +g11635 +S'whom' +p11637 +tp11638 +a(g11635 +g11637 +S'he' +p11639 +tp11640 +a(g11637 +g11639 +S'occasionally' +p11641 +tp11642 +a(g11639 +g11641 +S'collaborated.' +p11643 +tp11644 +a(g11641 +g11643 +S'with' +p11645 +tp11646 +a(g11643 +g11645 +S'this' +p11647 +tp11648 +a(g11645 +g11647 +S'terra-cotta' +p11649 +tp11650 +a(g11647 +g11649 +S'statue,' +p11651 +tp11652 +a(g11649 +g11651 +S'slightly' +p11653 +tp11654 +a(g11651 +g11653 +S'under' +p11655 +tp11656 +a(g11653 +g11655 +S'life-size,' +p11657 +tp11658 +a(g11655 +g11657 +S'we' +p11659 +tp11660 +a(g11657 +g11659 +S'encounter' +p11661 +tp11662 +a(g11659 +g11661 +S'figures' +p11663 +tp11664 +a(g11661 +g11663 +S'that' +p11665 +tp11666 +a(g11663 +g11665 +S'demonstrate' +p11667 +tp11668 +a(g11665 +g11667 +S'the' +p11669 +tp11670 +a(g11667 +g11669 +S'beginnings' +p11671 +tp11672 +a(g11669 +g11671 +S'of' +p11673 +tp11674 +a(g11671 +g11673 +S'the' +p11675 +tp11676 +a(g11673 +g11675 +S'italian' +p11677 +tp11678 +a(g11675 +g11677 +S'renaissance' +p11679 +tp11680 +a(g11677 +g11679 +S'admiration' +p11681 +tp11682 +a(g11679 +g11681 +S'for' +p11683 +tp11684 +a(g11681 +g11683 +S'the' +p11685 +tp11686 +a(g11683 +g11685 +S'human' +p11687 +tp11688 +a(g11685 +g11687 +S'body.' +p11689 +tp11690 +a(g11687 +g11689 +S'earlier' +p11691 +tp11692 +a(g11689 +g11691 +S'statues' +p11693 +tp11694 +a(g11691 +g11693 +S'in' +p11695 +tp11696 +a(g11693 +g11695 +S'the' +p11697 +tp11698 +a(g11695 +g11697 +S'collection,' +p11699 +tp11700 +a(g11697 +g11699 +S'like' +p11701 +tp11702 +a(g11699 +g11701 +S'the' +p11703 +tp11704 +a(g11701 +g11703 +S'pisan' +p11705 +tp11706 +a(g11703 +g11705 +S'annunciation' +p11707 +tp11708 +a(g11705 +g11707 +S'pair,' +p11709 +tp11710 +a(g11707 +g11709 +S'the' +p11711 +tp11712 +a(g11709 +g11711 +S'mother,' +p11713 +tp11714 +a(g11711 +g11713 +S'whose' +p11715 +tp11716 +a(g11713 +g11715 +S'costume' +p11717 +tp11718 +a(g11715 +g11717 +S'details' +p11719 +tp11720 +a(g11717 +g11719 +S'recall' +p11721 +tp11722 +a(g11719 +g11721 +S'ancient' +p11723 +tp11724 +a(g11721 +g11723 +S'sculpture' +p11725 +tp11726 +a(g11723 +g11725 +S'--' +p11727 +tp11728 +a(g11725 +g11727 +S'classical' +p11729 +tp11730 +a(g11727 +g11729 +S'sandals,' +p11731 +tp11732 +a(g11729 +g11731 +S'a' +p11733 +tp11734 +a(g11731 +g11733 +S'fillet' +p11735 +tp11736 +a(g11733 +g11735 +S'around' +p11737 +tp11738 +a(g11735 +g11737 +S'the' +p11739 +tp11740 +a(g11737 +g11739 +S'head,' +p11741 +tp11742 +a(g11739 +g11741 +S'and' +p11743 +tp11744 +a(g11741 +g11743 +S'palmette' +p11745 +tp11746 +a(g11743 +g11745 +S'ornament' +p11747 +tp11748 +a(g11745 +g11747 +S'on' +p11749 +tp11750 +a(g11747 +g11749 +S'the' +p11751 +tp11752 +a(g11749 +g11751 +S'sleeve' +p11753 +tp11754 +a(g11751 +g11753 +S'cuffs' +p11755 +tp11756 +a(g11753 +g11755 +S'--' +p11757 +tp11758 +a(g11755 +g11757 +S'shares' +p11759 +tp11760 +a(g11757 +g11759 +S'much' +p11761 +tp11762 +a(g11759 +g11761 +S'with' +p11763 +tp11764 +a(g11761 +g11763 +S'images' +p11765 +tp11766 +a(g11763 +g11765 +S'conceived' +p11767 +tp11768 +a(g11765 +g11767 +S'by' +p11769 +tp11770 +a(g11767 +g11769 +S'the' +p11771 +tp11772 +a(g11769 +g11771 +S'florentine' +p11773 +tp11774 +a(g11771 +g11773 +S'master' +p11775 +tp11776 +a(g11773 +g11775 +S'donatello' +p11777 +tp11778 +a(g11775 +g11777 +S'(1385/86-1466),' +p11779 +tp11780 +a(g11777 +g11779 +S'the' +p11781 +tp11782 +a(g11779 +g11781 +S'greatest' +p11783 +tp11784 +a(g11781 +g11783 +S'sculptor' +p11785 +tp11786 +a(g11783 +g11785 +S'of' +p11787 +tp11788 +a(g11785 +g11787 +S'the' +p11789 +tp11790 +a(g11787 +g11789 +S'early' +p11791 +tp11792 +a(g11789 +g11791 +S'renaissance.' +p11793 +tp11794 +a(g11791 +g11793 +S'farriers' +p11795 +tp11796 +a(g11793 +g11795 +S'are' +p11797 +tp11798 +a(g11795 +g11797 +S'blacksmiths' +p11799 +tp11800 +a(g11797 +g11799 +S'who' +p11801 +tp11802 +a(g11799 +g11801 +S'shoe' +p11803 +tp11804 +a(g11801 +g11803 +S'horses' +p11805 +tp11806 +a(g11803 +g11805 +S'and' +p11807 +tp11808 +a(g11805 +g11807 +S'serve' +p11809 +tp11810 +a(g11807 +g11809 +S'as' +p11811 +tp11812 +a(g11809 +g11811 +S'veterinarians.' +p11813 +tp11814 +a(g11811 +g11813 +S'this' +p11815 +tp11816 +a(g11813 +g11815 +S'bald,' +p11817 +tp11818 +a(g11815 +g11817 +S'spectacled' +p11819 +tp11820 +a(g11817 +g11819 +S'farrier' +p11821 +tp11822 +a(g11819 +g11821 +S'files' +p11823 +tp11824 +a(g11821 +g11823 +S'the' +p11825 +tp11826 +a(g11823 +g11825 +S'tooth' +p11827 +tp11828 +a(g11825 +g11827 +S'of' +p11829 +tp11830 +a(g11827 +g11829 +S'a' +p11831 +tp11832 +a(g11829 +g11831 +S'terrified' +p11833 +tp11834 +a(g11831 +g11833 +S'horse' +p11835 +tp11836 +a(g11833 +g11835 +S'restrained' +p11837 +tp11838 +a(g11835 +g11837 +S'in' +p11839 +tp11840 +a(g11837 +g11839 +S'a' +p11841 +tp11842 +a(g11839 +g11841 +S'brake.' +p11843 +tp11844 +a(g11841 +g11843 +S'potter' +p11845 +tp11846 +a(g11843 +g11845 +S'gained' +p11847 +tp11848 +a(g11845 +g11847 +S'instant' +p11849 +tp11850 +a(g11847 +g11849 +S'fame' +p11851 +tp11852 +a(g11849 +g11851 +S'for' +p11853 +tp11854 +a(g11851 +g11853 +S'his' +p11855 +tp11856 +a(g11853 +g11855 +S'superb' +p11857 +tp11858 +a(g11855 +g11857 +S'depictions' +p11859 +tp11860 +a(g11857 +g11859 +S'of' +p11861 +tp11862 +a(g11859 +g11861 +S'animal' +p11863 +tp11864 +a(g11861 +g11863 +S'anatomy' +p11865 +tp11866 +a(g11863 +g11865 +S'and' +p11867 +tp11868 +a(g11865 +g11867 +S'psychology.' +p11869 +tp11870 +a(g11867 +g11869 +S'for' +p11871 +tp11872 +a(g11869 +g11871 +S'example,' +p11873 +tp11874 +a(g11871 +g11873 +S'the' +p11875 +tp11876 +a(g11873 +g11875 +S'dogs' +p11877 +tp11878 +a(g11875 +g11877 +S'here' +p11879 +tp11880 +a(g11877 +g11879 +S'ignore' +p11881 +tp11882 +a(g11879 +g11881 +S'the' +p11883 +tp11884 +a(g11881 +g11883 +S"horse's" +p11885 +tp11886 +a(g11883 +g11885 +S'dilemma' +p11887 +tp11888 +a(g11885 +g11887 +S'while' +p11889 +tp11890 +a(g11887 +g11889 +S'snarling' +p11891 +tp11892 +a(g11889 +g11891 +S'over' +p11893 +tp11894 +a(g11891 +g11893 +S'a' +p11895 +tp11896 +a(g11893 +g11895 +S'bone,' +p11897 +tp11898 +a(g11895 +g11897 +S'and' +p11899 +tp11900 +a(g11897 +g11899 +S'chickens' +p11901 +tp11902 +a(g11899 +g11901 +S'diligently' +p11903 +tp11904 +a(g11901 +g11903 +S'scratch' +p11905 +tp11906 +a(g11903 +g11905 +S'for' +p11907 +tp11908 +a(g11905 +g11907 +S'food.' +p11909 +tp11910 +a(g11907 +g11909 +S'this' +p11911 +tp11912 +a(g11909 +g11911 +S'painting,' +p11913 +tp11914 +a(g11911 +g11913 +S'signed' +p11915 +tp11916 +a(g11913 +g11915 +S'and' +p11917 +tp11918 +a(g11915 +g11917 +S'dated' +p11919 +tp11920 +a(g11917 +g11919 +S'on' +p11921 +tp11922 +a(g11919 +g11921 +S'the' +p11923 +tp11924 +a(g11921 +g11923 +S'door' +p11925 +tp11926 +a(g11923 +g11925 +S'lintel' +p11927 +tp11928 +a(g11925 +g11927 +S'above' +p11929 +tp11930 +a(g11927 +g11929 +S'the' +p11931 +tp11932 +a(g11929 +g11931 +S'blacksmith’s' +p11933 +tp11934 +a(g11931 +g11933 +S'forge,' +p11935 +tp11936 +a(g11933 +g11935 +S'is' +p11937 +tp11938 +a(g11935 +g11937 +S'an' +p11939 +tp11940 +a(g11937 +g11939 +S'exceptional' +p11941 +tp11942 +a(g11939 +g11941 +S'achievement' +p11943 +tp11944 +a(g11941 +g11943 +S'for' +p11945 +tp11946 +a(g11943 +g11945 +S'an' +p11947 +tp11948 +a(g11945 +g11947 +S'artist' +p11949 +tp11950 +a(g11947 +g11949 +S'only' +p11951 +tp11952 +a(g11949 +g11951 +S'twenty-three' +p11953 +tp11954 +a(g11951 +g11953 +S'years' +p11955 +tp11956 +a(g11953 +g11955 +S'old.' +p11957 +tp11958 +a(g11955 +g11957 +S'in' +p11959 +tp11960 +a(g11957 +g11959 +S'a' +p11961 +tp11962 +a(g11959 +g11961 +S'daring' +p11963 +tp11964 +a(g11961 +g11963 +S'interplay' +p11965 +tp11966 +a(g11963 +g11965 +S'of' +p11967 +tp11968 +a(g11965 +g11967 +S'indoor' +p11969 +tp11970 +a(g11967 +g11969 +S'and' +p11971 +tp11972 +a(g11969 +g11971 +S'outdoor' +p11973 +tp11974 +a(g11971 +g11973 +S'lighting' +p11975 +tp11976 +a(g11973 +g11975 +S'effects,' +p11977 +tp11978 +a(g11975 +g11977 +S'potter' +p11979 +tp11980 +a(g11977 +g11979 +S'contrasted' +p11981 +tp11982 +a(g11979 +g11981 +S'the' +p11983 +tp11984 +a(g11981 +g11983 +S'sparks' +p11985 +tp11986 +a(g11983 +g11985 +S'flying' +p11987 +tp11988 +a(g11985 +g11987 +S'from' +p11989 +tp11990 +a(g11987 +g11989 +S'the' +p11991 +tp11992 +a(g11989 +g11991 +S'smoking' +p11993 +tp11994 +a(g11991 +g11993 +S'forge,' +p11995 +tp11996 +a(g11993 +g11995 +S'the' +p11997 +tp11998 +a(g11995 +g11997 +S'sunshine' +p11999 +tp12000 +a(g11997 +g11999 +S'that' +p12001 +tp12002 +a(g11999 +g12001 +S'streams' +p12003 +tp12004 +a(g12001 +g12003 +S'through' +p12005 +tp12006 +a(g12003 +g12005 +S'the' +p12007 +tp12008 +a(g12005 +g12007 +S'clouds,' +p12009 +tp12010 +a(g12007 +g12009 +S'and' +p12011 +tp12012 +a(g12009 +g12011 +S'the' +p12013 +tp12014 +a(g12011 +g12013 +S'morning' +p12015 +tp12016 +a(g12013 +g12015 +S'fog' +p12017 +tp12018 +a(g12015 +g12017 +S'still' +p12019 +tp12020 +a(g12017 +g12019 +S'clinging' +p12021 +tp12022 +a(g12019 +g12021 +S'over' +p12023 +tp12024 +a(g12021 +g12023 +S'the' +p12025 +tp12026 +a(g12023 +g12025 +S'cattle' +p12027 +tp12028 +a(g12025 +g12027 +S'pasture.' +p12029 +tp12030 +a(g12027 +g12029 +S'potter' +p12031 +tp12032 +a(g12029 +g12031 +S'was' +p12033 +tp12034 +a(g12031 +g12033 +S'trained' +p12035 +tp12036 +a(g12033 +g12035 +S'by' +p12037 +tp12038 +a(g12035 +g12037 +S'his' +p12039 +tp12040 +a(g12037 +g12039 +S'father' +p12041 +tp12042 +a(g12039 +g12041 +S'and' +p12043 +tp12044 +a(g12041 +g12043 +S'was' +p12045 +tp12046 +a(g12043 +g12045 +S'painting' +p12047 +tp12048 +a(g12045 +g12047 +S'by' +p12049 +tp12050 +a(g12047 +g12049 +S'age' +p12051 +tp12052 +a(g12049 +g12051 +S'fifteen.' +p12053 +tp12054 +a(g12051 +g12053 +S'he' +p12055 +tp12056 +a(g12053 +g12055 +S'moved' +p12057 +tp12058 +a(g12055 +g12057 +S'frequently,' +p12059 +tp12060 +a(g12057 +g12059 +S'working' +p12061 +tp12062 +a(g12059 +g12061 +S'in' +p12063 +tp12064 +a(g12061 +g12063 +S'delft,' +p12065 +tp12066 +a(g12063 +g12065 +S'the' +p12067 +tp12068 +a(g12065 +g12067 +S'hague,' +p12069 +tp12070 +a(g12067 +g12069 +S'and' +p12071 +tp12072 +a(g12069 +g12071 +S'amsterdam,' +p12073 +tp12074 +a(g12071 +g12073 +S'where' +p12075 +tp12076 +a(g12073 +g12075 +S'he' +p12077 +tp12078 +a(g12075 +g12077 +S'died' +p12079 +tp12080 +a(g12077 +g12079 +S'at' +p12081 +tp12082 +a(g12079 +g12081 +S'age' +p12083 +tp12084 +a(g12081 +g12083 +S'twenty-eight.' +p12085 +tp12086 +a(g12083 +g12085 +S'even' +p12087 +tp12088 +a(g12085 +g12087 +S'though' +p12089 +tp12090 +a(g12087 +g12089 +S'his' +p12091 +tp12092 +a(g12089 +g12091 +S'career' +p12093 +tp12094 +a(g12091 +g12093 +S'was' +p12095 +tp12096 +a(g12093 +g12095 +S'short,' +p12097 +tp12098 +a(g12095 +g12097 +S'potter' +p12099 +tp12100 +a(g12097 +g12099 +S'was' +p12101 +tp12102 +a(g12099 +g12101 +S'a' +p12103 +tp12104 +a(g12101 +g12103 +S'tireless' +p12105 +tp12106 +a(g12103 +g12105 +S'worker' +p12107 +tp12108 +a(g12105 +g12107 +S'who' +p12109 +tp12110 +a(g12107 +g12109 +S'left' +p12111 +tp12112 +a(g12109 +g12111 +S'a' +p12113 +tp12114 +a(g12111 +g12113 +S'considerable' +p12115 +tp12116 +a(g12113 +g12115 +S'number' +p12117 +tp12118 +a(g12115 +g12117 +S'of' +p12119 +tp12120 +a(g12117 +g12119 +S'large' +p12121 +tp12122 +a(g12119 +g12121 +S'and' +p12123 +tp12124 +a(g12121 +g12123 +S'small' +p12125 +tp12126 +a(g12123 +g12125 +S'pictures' +p12127 +tp12128 +a(g12125 +g12127 +S'of' +p12129 +tp12130 +a(g12127 +g12129 +S'livestock' +p12131 +tp12132 +a(g12129 +g12131 +S'in' +p12133 +tp12134 +a(g12131 +g12133 +S'farmyards' +p12135 +tp12136 +a(g12133 +g12135 +S'and' +p12137 +tp12138 +a(g12135 +g12137 +S'meadows.' +p12139 +tp12140 +a(g12137 +g12139 +S'the' +p12141 +tp12142 +a(g12139 +g12141 +S'scottish' +p12143 +tp12144 +a(g12141 +g12143 +S'portraitist' +p12145 +tp12146 +a(g12143 +g12145 +S'henry' +p12147 +tp12148 +a(g12145 +g12147 +S'raeburn' +p12149 +tp12150 +a(g12147 +g12149 +S'favored' +p12151 +tp12152 +a(g12149 +g12151 +S'warm,' +p12153 +tp12154 +a(g12151 +g12153 +S'dramatic' +p12155 +tp12156 +a(g12153 +g12155 +S'illumination.' +p12157 +tp12158 +a(g12155 +g12157 +S'here' +p12159 +tp12160 +a(g12157 +g12159 +S'the' +p12161 +tp12162 +a(g12159 +g12161 +S'subject' +p12163 +tp12164 +a(g12161 +g12163 +S'is' +p12165 +tp12166 +a(g12163 +g12165 +S'bathed' +p12167 +tp12168 +a(g12165 +g12167 +S'in' +p12169 +tp12170 +a(g12167 +g12169 +S'twilight,' +p12171 +tp12172 +a(g12169 +g12171 +S'his' +p12173 +tp12174 +a(g12171 +g12173 +S'face' +p12175 +tp12176 +a(g12173 +g12175 +S'half-lit,' +p12177 +tp12178 +a(g12175 +g12177 +S'half-shaded.' +p12179 +tp12180 +a(g12177 +g12179 +S'david' +p12181 +tp12182 +a(g12179 +g12181 +S'anderson' +p12183 +tp12184 +a(g12181 +g12183 +S'stands' +p12185 +tp12186 +a(g12183 +g12185 +S'proudly,' +p12187 +tp12188 +a(g12185 +g12187 +S'holding' +p12189 +tp12190 +a(g12187 +g12189 +S'an' +p12191 +tp12192 +a(g12189 +g12191 +S'empty' +p12193 +tp12194 +a(g12191 +g12193 +S'glove' +p12195 +tp12196 +a(g12193 +g12195 +S'nonchalantly' +p12197 +tp12198 +a(g12195 +g12197 +S'against' +p12199 +tp12200 +a(g12197 +g12199 +S'his' +p12201 +tp12202 +a(g12199 +g12201 +S'hip,' +p12203 +tp12204 +a(g12201 +g12203 +S'while' +p12205 +tp12206 +a(g12203 +g12205 +S'his' +p12207 +tp12208 +a(g12205 +g12207 +S'bare' +p12209 +tp12210 +a(g12207 +g12209 +S'hand' +p12211 +tp12212 +a(g12209 +g12211 +S'holds' +p12213 +tp12214 +a(g12211 +g12213 +S'his' +p12215 +tp12216 +a(g12213 +g12215 +S'upturned' +p12217 +tp12218 +a(g12215 +g12217 +S'hat.' +p12219 +tp12220 +a(g12217 +g12219 +S'the' +p12221 +tp12222 +a(g12219 +g12221 +S'portrait' +p12223 +tp12224 +a(g12221 +g12223 +S'reveals' +p12225 +tp12226 +a(g12223 +g12225 +S'no' +p12227 +tp12228 +a(g12225 +g12227 +S'strain' +p12229 +tp12230 +a(g12227 +g12229 +S'on' +p12231 +tp12232 +a(g12229 +g12231 +S"anderson's" +p12233 +tp12234 +a(g12231 +g12233 +S'character' +p12235 +tp12236 +a(g12233 +g12235 +S'even' +p12237 +tp12238 +a(g12235 +g12237 +S'though' +p12239 +tp12240 +a(g12237 +g12239 +S'it' +p12241 +tp12242 +a(g12239 +g12241 +S'was' +p12243 +tp12244 +a(g12241 +g12243 +S'created' +p12245 +tp12246 +a(g12243 +g12245 +S'during' +p12247 +tp12248 +a(g12245 +g12247 +S'a' +p12249 +tp12250 +a(g12247 +g12249 +S'crisis' +p12251 +tp12252 +a(g12249 +g12251 +S'in' +p12253 +tp12254 +a(g12251 +g12253 +S'his' +p12255 +tp12256 +a(g12253 +g12255 +S'career.' +p12257 +tp12258 +a(g12255 +g12257 +S'anderson' +p12259 +tp12260 +a(g12257 +g12259 +S'had' +p12261 +tp12262 +a(g12259 +g12261 +S'served' +p12263 +tp12264 +a(g12261 +g12263 +S'under' +p12265 +tp12266 +a(g12263 +g12265 +S'the' +p12267 +tp12268 +a(g12265 +g12267 +S'first' +p12269 +tp12270 +a(g12267 +g12269 +S'governor-general' +p12271 +tp12272 +a(g12269 +g12271 +S'of' +p12273 +tp12274 +a(g12271 +g12273 +S'british' +p12275 +tp12276 +a(g12273 +g12275 +S'india,' +p12277 +tp12278 +a(g12275 +g12277 +S'warren' +p12279 +tp12280 +a(g12277 +g12279 +S'hastings.' +p12281 +tp12282 +a(g12279 +g12281 +S'upon' +p12283 +tp12284 +a(g12281 +g12283 +S'their' +p12285 +tp12286 +a(g12283 +g12285 +S'return' +p12287 +tp12288 +a(g12285 +g12287 +S'to' +p12289 +tp12290 +a(g12287 +g12289 +S'britain' +p12291 +tp12292 +a(g12289 +g12291 +S'in' +p12293 +tp12294 +a(g12291 +g12293 +S'1785,' +p12295 +tp12296 +a(g12293 +g12295 +S'hastings' +p12297 +tp12298 +a(g12295 +g12297 +S'agreed' +p12299 +tp12300 +a(g12297 +g12299 +S'to' +p12301 +tp12302 +a(g12299 +g12301 +S'commission' +p12303 +tp12304 +a(g12301 +g12303 +S'his' +p12305 +tp12306 +a(g12303 +g12305 +S'portrait' +p12307 +tp12308 +a(g12305 +g12307 +S'from' +p12309 +tp12310 +a(g12307 +g12309 +S'sir' +p12311 +tp12312 +a(g12309 +g12311 +S'joshua' +p12313 +tp12314 +a(g12311 +g12313 +S'reynolds,' +p12315 +tp12316 +a(g12313 +g12315 +S"london's" +p12317 +tp12318 +a(g12315 +g12317 +S'court' +p12319 +tp12320 +a(g12317 +g12319 +S'painter,' +p12321 +tp12322 +a(g12319 +g12321 +S'as' +p12323 +tp12324 +a(g12321 +g12323 +S'a' +p12325 +tp12326 +a(g12323 +g12325 +S'gift' +p12327 +tp12328 +a(g12325 +g12327 +S'to' +p12329 +tp12330 +a(g12327 +g12329 +S'anderson.' +p12331 +tp12332 +a(g12329 +g12331 +S'in' +p12333 +tp12334 +a(g12331 +g12333 +S'turn,' +p12335 +tp12336 +a(g12333 +g12335 +S'anderson' +p12337 +tp12338 +a(g12335 +g12337 +S'sent' +p12339 +tp12340 +a(g12337 +g12339 +S'this' +p12341 +tp12342 +a(g12339 +g12341 +S'likeness' +p12343 +tp12344 +a(g12341 +g12343 +S'by' +p12345 +tp12346 +a(g12343 +g12345 +S'raeburn,' +p12347 +tp12348 +a(g12345 +g12347 +S"edinburgh's" +p12349 +tp12350 +a(g12347 +g12349 +S'leading' +p12351 +tp12352 +a(g12349 +g12351 +S'artist,' +p12353 +tp12354 +a(g12351 +g12353 +S'to' +p12355 +tp12356 +a(g12353 +g12355 +S'hastings' +p12357 +tp12358 +a(g12355 +g12357 +S'in' +p12359 +tp12360 +a(g12357 +g12359 +S'1790.' +p12361 +tp12362 +a(g12359 +g12361 +S'therefore,' +p12363 +tp12364 +a(g12361 +g12363 +S'in' +p12365 +tp12366 +a(g12363 +g12365 +S'creating' +p12367 +tp12368 +a(g12365 +g12367 +S'this' +p12369 +tp12370 +a(g12367 +g12369 +S'portrait,' +p12371 +tp12372 +a(g12369 +g12371 +S'raeburn' +p12373 +tp12374 +a(g12371 +g12373 +S'pitted' +p12375 +tp12376 +a(g12373 +g12375 +S'his' +p12377 +tp12378 +a(g12375 +g12377 +S'emerging' +p12379 +tp12380 +a(g12377 +g12379 +S'reputation' +p12381 +tp12382 +a(g12379 +g12381 +S'against' +p12383 +tp12384 +a(g12381 +g12383 +S'that' +p12385 +tp12386 +a(g12383 +g12385 +S'of' +p12387 +tp12388 +a(g12385 +g12387 +S'reynolds,' +p12389 +tp12390 +a(g12387 +g12389 +S'under' +p12391 +tp12392 +a(g12389 +g12391 +S'whom' +p12393 +tp12394 +a(g12391 +g12393 +S'he' +p12395 +tp12396 +a(g12393 +g12395 +S'had' +p12397 +tp12398 +a(g12395 +g12397 +S'recently' +p12399 +tp12400 +a(g12397 +g12399 +S'studied.' +p12401 +tp12402 +a(g12399 +g12401 +S'the' +p12403 +tp12404 +a(g12401 +g12403 +S'exchanged' +p12405 +tp12406 +a(g12403 +g12405 +S'tokens' +p12407 +tp12408 +a(g12405 +g12407 +S'of' +p12409 +tp12410 +a(g12407 +g12409 +S'friendship' +p12411 +tp12412 +a(g12409 +g12411 +S'may' +p12413 +tp12414 +a(g12411 +g12413 +S'have' +p12415 +tp12416 +a(g12413 +g12415 +S'bolstered' +p12417 +tp12418 +a(g12415 +g12417 +S'the' +p12419 +tp12420 +a(g12417 +g12419 +S"sitters'" +p12421 +tp12422 +a(g12419 +g12421 +S'spirits' +p12423 +tp12424 +a(g12421 +g12423 +S'during' +p12425 +tp12426 +a(g12423 +g12425 +S'one' +p12427 +tp12428 +a(g12425 +g12427 +S'of' +p12429 +tp12430 +a(g12427 +g12429 +S'the' +p12431 +tp12432 +a(g12429 +g12431 +S'most' +p12433 +tp12434 +a(g12431 +g12433 +S'infamous' +p12435 +tp12436 +a(g12433 +g12435 +S'political' +p12437 +tp12438 +a(g12435 +g12437 +S'scandals' +p12439 +tp12440 +a(g12437 +g12439 +S'in' +p12441 +tp12442 +a(g12439 +g12441 +S'british' +p12443 +tp12444 +a(g12441 +g12443 +S'history—the' +p12445 +tp12446 +a(g12443 +g12445 +S'warren' +p12447 +tp12448 +a(g12445 +g12447 +S"hastings'" +p12449 +tp12450 +a(g12447 +g12449 +S'trial.' +p12451 +tp12452 +a(g12449 +g12451 +S'a' +p12453 +tp12454 +a(g12451 +g12453 +S'cabal' +p12455 +tp12456 +a(g12453 +g12455 +S'of' +p12457 +tp12458 +a(g12455 +g12457 +S'englishmen,' +p12459 +tp12460 +a(g12457 +g12459 +S'wishing' +p12461 +tp12462 +a(g12459 +g12461 +S'to' +p12463 +tp12464 +a(g12461 +g12463 +S'exploit' +p12465 +tp12466 +a(g12463 +g12465 +S'india,' +p12467 +tp12468 +a(g12465 +g12467 +S'had' +p12469 +tp12470 +a(g12467 +g12469 +S'sullied' +p12471 +tp12472 +a(g12469 +g12471 +S"hastings'" +p12473 +tp12474 +a(g12471 +g12473 +S'reputation' +p12475 +tp12476 +a(g12473 +g12475 +S'by' +p12477 +tp12478 +a(g12475 +g12477 +S'turning' +p12479 +tp12480 +a(g12477 +g12479 +S'him' +p12481 +tp12482 +a(g12479 +g12481 +S'into' +p12483 +tp12484 +a(g12481 +g12483 +S'a' +p12485 +tp12486 +a(g12483 +g12485 +S'scapegoat' +p12487 +tp12488 +a(g12485 +g12487 +S'for' +p12489 +tp12490 +a(g12487 +g12489 +S'their' +p12491 +tp12492 +a(g12489 +g12491 +S'own' +p12493 +tp12494 +a(g12491 +g12493 +S'greed.' +p12495 +tp12496 +a(g12493 +g12495 +S'although' +p12497 +tp12498 +a(g12495 +g12497 +S'hastings' +p12499 +tp12500 +a(g12497 +g12499 +S'was' +p12501 +tp12502 +a(g12499 +g12501 +S'exonerated' +p12503 +tp12504 +a(g12501 +g12503 +S'in' +p12505 +tp12506 +a(g12503 +g12505 +S'1795,' +p12507 +tp12508 +a(g12505 +g12507 +S'his' +p12509 +tp12510 +a(g12507 +g12509 +S'impeachment' +p12511 +tp12512 +a(g12509 +g12511 +S'proceedings' +p12513 +tp12514 +a(g12511 +g12513 +S'had' +p12515 +tp12516 +a(g12513 +g12515 +S'lasted' +p12517 +tp12518 +a(g12515 +g12517 +S'seven' +p12519 +tp12520 +a(g12517 +g12519 +S'years,' +p12521 +tp12522 +a(g12519 +g12521 +S'during' +p12523 +tp12524 +a(g12521 +g12523 +S'which' +p12525 +tp12526 +a(g12523 +g12525 +S'time' +p12527 +tp12528 +a(g12525 +g12527 +S'raeburn' +p12529 +tp12530 +a(g12527 +g12529 +S'portrayed' +p12531 +tp12532 +a(g12529 +g12531 +S"hastings'" +p12533 +tp12534 +a(g12531 +g12533 +S'beleaguered' +p12535 +tp12536 +a(g12533 +g12535 +S'associate.' +p12537 +tp12538 +a(g12535 +g12537 +S'raphael' +p12539 +tp12540 +a(g12537 +g12539 +S'was' +p12541 +tp12542 +a(g12539 +g12541 +S'in' +p12543 +tp12544 +a(g12541 +g12543 +S'florence' +p12545 +tp12546 +a(g12543 +g12545 +S'from' +p12547 +tp12548 +a(g12545 +g12547 +S'late' +p12549 +tp12550 +a(g12547 +g12549 +S'1504' +p12551 +tp12552 +a(g12549 +g12551 +S'until' +p12553 +tp12554 +a(g12551 +g12553 +S'1508.' +p12555 +tp12556 +a(g12553 +g12555 +S'seventeen' +p12557 +tp12558 +a(g12555 +g12557 +S'images' +p12559 +tp12560 +a(g12557 +g12559 +S'of' +p12561 +tp12562 +a(g12559 +g12561 +S'the' +p12563 +tp12564 +a(g12561 +g12563 +S'virgin' +p12565 +tp12566 +a(g12563 +g12565 +S'and' +p12567 +tp12568 +a(g12565 +g12567 +S'child' +p12569 +tp12570 +a(g12567 +g12569 +S'from' +p12571 +tp12572 +a(g12569 +g12571 +S'those' +p12573 +tp12574 +a(g12571 +g12573 +S'few' +p12575 +tp12576 +a(g12573 +g12575 +S'years' +p12577 +tp12578 +a(g12575 +g12577 +S'survive' +p12579 +tp12580 +a(g12577 +g12579 +S'today,' +p12581 +tp12582 +a(g12579 +g12581 +S'two' +p12583 +tp12584 +a(g12581 +g12583 +S'of' +p12585 +tp12586 +a(g12583 +g12585 +S'them' +p12587 +tp12588 +a(g12585 +g12587 +S'are' +p12589 +tp12590 +a(g12587 +g12589 +S'on' +p12591 +tp12592 +a(g12589 +g12591 +S'this' +p12593 +tp12594 +a(g12591 +g12593 +S'tour.' +p12595 +tp12596 +a(g12593 +g12595 +S'probably' +p12597 +tp12598 +a(g12595 +g12597 +S'many' +p12599 +tp12600 +a(g12597 +g12599 +S'of' +p12601 +tp12602 +a(g12599 +g12601 +S'these' +p12603 +tp12604 +a(g12601 +g12603 +S'works' +p12605 +tp12606 +a(g12603 +g12605 +S'were' +p12607 +tp12608 +a(g12605 +g12607 +S'made' +p12609 +tp12610 +a(g12607 +g12609 +S'for' +p12611 +tp12612 +a(g12609 +g12611 +S'the' +p12613 +tp12614 +a(g12611 +g12613 +S'art' +p12615 +tp12616 +a(g12613 +g12615 +S'market—images' +p12617 +tp12618 +a(g12615 +g12617 +S'of' +p12619 +tp12620 +a(g12617 +g12619 +S'the' +p12621 +tp12622 +a(g12619 +g12621 +S'madonna' +p12623 +tp12624 +a(g12621 +g12623 +S'and' +p12625 +tp12626 +a(g12623 +g12625 +S'child' +p12627 +tp12628 +a(g12625 +g12627 +S'were' +p12629 +tp12630 +a(g12627 +g12629 +S'often' +p12631 +tp12632 +a(g12629 +g12631 +S'given' +p12633 +tp12634 +a(g12631 +g12633 +S'as' +p12635 +tp12636 +a(g12633 +g12635 +S'wedding' +p12637 +tp12638 +a(g12635 +g12637 +S'presents—rather' +p12639 +tp12640 +a(g12637 +g12639 +S'than' +p12641 +tp12642 +a(g12639 +g12641 +S'to' +p12643 +tp12644 +a(g12641 +g12643 +S'fulfill' +p12645 +tp12646 +a(g12643 +g12645 +S'a' +p12647 +tp12648 +a(g12645 +g12647 +S'specific' +p12649 +tp12650 +a(g12647 +g12649 +S'commission.' +p12651 +tp12652 +a(g12649 +g12651 +S'the' +p12653 +tp12654 +a(g12651 +g12653 +S'small' +p12655 +tp12656 +a(g12653 +g12655 +S'cowper' +p12657 +tp12658 +a(g12655 +g12657 +S'madonna' +p12659 +tp12660 +a(g12657 +g12659 +S'many' +p12661 +tp12662 +a(g12659 +g12661 +S'italian' +p12663 +tp12664 +a(g12661 +g12663 +S'cities' +p12665 +tp12666 +a(g12663 +g12665 +S'celebrated' +p12667 +tp12668 +a(g12665 +g12667 +S'the' +p12669 +tp12670 +a(g12667 +g12669 +S'feast' +p12671 +tp12672 +a(g12669 +g12671 +S'of' +p12673 +tp12674 +a(g12671 +g12673 +S'epiphany' +p12675 +tp12676 +a(g12673 +g12675 +S'with' +p12677 +tp12678 +a(g12675 +g12677 +S'elaborate' +p12679 +tp12680 +a(g12677 +g12679 +S'pageants' +p12681 +tp12682 +a(g12679 +g12681 +S'that' +p12683 +tp12684 +a(g12681 +g12683 +S'reenacted' +p12685 +tp12686 +a(g12683 +g12685 +S'the' +p12687 +tp12688 +a(g12685 +g12687 +S'procession' +p12689 +tp12690 +a(g12687 +g12689 +S'of' +p12691 +tp12692 +a(g12689 +g12691 +S'the' +p12693 +tp12694 +a(g12691 +g12693 +S'three' +p12695 +tp12696 +a(g12693 +g12695 +S'magi.' +p12697 +tp12698 +a(g12695 +g12697 +S'this' +p12699 +tp12700 +a(g12697 +g12699 +S'panel,' +p12701 +tp12702 +a(g12699 +g12701 +S'a' +p12703 +tp12704 +a(g12701 +g12703 +S'maze' +p12705 +tp12706 +a(g12703 +g12705 +S'of' +p12707 +tp12708 +a(g12705 +g12707 +S'pattern' +p12709 +tp12710 +a(g12707 +g12709 +S'and' +p12711 +tp12712 +a(g12709 +g12711 +S'rich' +p12713 +tp12714 +a(g12711 +g12713 +S'decoration,' +p12715 +tp12716 +a(g12713 +g12715 +S'captures' +p12717 +tp12718 +a(g12715 +g12717 +S'the' +p12719 +tp12720 +a(g12717 +g12719 +S'splendor' +p12721 +tp12722 +a(g12719 +g12721 +S'of' +p12723 +tp12724 +a(g12721 +g12723 +S'these' +p12725 +tp12726 +a(g12723 +g12725 +S'spectacles.' +p12727 +tp12728 +a(g12725 +g12727 +S'costly' +p12729 +tp12730 +a(g12727 +g12729 +S'brocades' +p12731 +tp12732 +a(g12729 +g12731 +S'and' +p12733 +tp12734 +a(g12731 +g12733 +S'furs' +p12735 +tp12736 +a(g12733 +g12735 +S'adorn' +p12737 +tp12738 +a(g12735 +g12737 +S'the' +p12739 +tp12740 +a(g12737 +g12739 +S'three' +p12741 +tp12742 +a(g12739 +g12741 +S'kings.' +p12743 +tp12744 +a(g12741 +g12743 +S'a' +p12745 +tp12746 +a(g12743 +g12745 +S'page' +p12747 +tp12748 +a(g12745 +g12747 +S'on' +p12749 +tp12750 +a(g12747 +g12749 +S'the' +p12751 +tp12752 +a(g12749 +g12751 +S'right' +p12753 +tp12754 +a(g12751 +g12753 +S'wears' +p12755 +tp12756 +a(g12753 +g12755 +S'a' +p12757 +tp12758 +a(g12755 +g12757 +S'peacock-feather' +p12759 +tp12760 +a(g12757 +g12759 +S'cap;' +p12761 +tp12762 +a(g12759 +g12761 +S'even' +p12763 +tp12764 +a(g12761 +g12763 +S'his' +p12765 +tp12766 +a(g12763 +g12765 +S'horse' +p12767 +tp12768 +a(g12765 +g12767 +S'has' +p12769 +tp12770 +a(g12767 +g12769 +S'an' +p12771 +tp12772 +a(g12769 +g12771 +S'elaborately' +p12773 +tp12774 +a(g12771 +g12773 +S'coiffed' +p12775 +tp12776 +a(g12773 +g12775 +S'mane.' +p12777 +tp12778 +a(g12775 +g12777 +S'crowns' +p12779 +tp12780 +a(g12777 +g12779 +S'and' +p12781 +tp12782 +a(g12779 +g12781 +S'sword' +p12783 +tp12784 +a(g12781 +g12783 +S'hilts' +p12785 +tp12786 +a(g12783 +g12785 +S'are' +p12787 +tp12788 +a(g12785 +g12787 +S'raised' +p12789 +tp12790 +a(g12787 +g12789 +S'in' +p12791 +tp12792 +a(g12789 +g12791 +S'plaster' +p12793 +tp12794 +a(g12791 +g12793 +S'relief' +p12795 +tp12796 +a(g12793 +g12795 +S'and' +p12797 +tp12798 +a(g12795 +g12797 +S'gilded.' +p12799 +tp12800 +a(g12797 +g12799 +S'the' +p12801 +tp12802 +a(g12799 +g12801 +S'figures' +p12803 +tp12804 +a(g12801 +g12803 +S'crowd' +p12805 +tp12806 +a(g12803 +g12805 +S'the' +p12807 +tp12808 +a(g12805 +g12807 +S'front' +p12809 +tp12810 +a(g12807 +g12809 +S'of' +p12811 +tp12812 +a(g12809 +g12811 +S'the' +p12813 +tp12814 +a(g12811 +g12813 +S'picture' +p12815 +tp12816 +a(g12813 +g12815 +S'plane,' +p12817 +tp12818 +a(g12815 +g12817 +S'but' +p12819 +tp12820 +a(g12817 +g12819 +S'we' +p12821 +tp12822 +a(g12819 +g12821 +S'are' +p12823 +tp12824 +a(g12821 +g12823 +S'separated' +p12825 +tp12826 +a(g12823 +g12825 +S'from' +p12827 +tp12828 +a(g12825 +g12827 +S'the' +p12829 +tp12830 +a(g12827 +g12829 +S'holy' +p12831 +tp12832 +a(g12829 +g12831 +S'figures' +p12833 +tp12834 +a(g12831 +g12833 +S'rather' +p12835 +tp12836 +a(g12833 +g12835 +S'than' +p12837 +tp12838 +a(g12835 +g12837 +S'drawn' +p12839 +tp12840 +a(g12837 +g12839 +S'into' +p12841 +tp12842 +a(g12839 +g12841 +S'their' +p12843 +tp12844 +a(g12841 +g12843 +S'world.' +p12845 +tp12846 +a(g12843 +g12845 +S'the' +p12847 +tp12848 +a(g12845 +g12847 +S'central' +p12849 +tp12850 +a(g12847 +g12849 +S'placement' +p12851 +tp12852 +a(g12849 +g12851 +S'of' +p12853 +tp12854 +a(g12851 +g12853 +S'the' +p12855 +tp12856 +a(g12853 +g12855 +S'virgin—rather' +p12857 +tp12858 +a(g12855 +g12857 +S'than' +p12859 +tp12860 +a(g12857 +g12859 +S'the' +p12861 +tp12862 +a(g12859 +g12861 +S'magi—reflects' +p12863 +tp12864 +a(g12861 +g12863 +S'her' +p12865 +tp12866 +a(g12863 +g12865 +S'importance' +p12867 +tp12868 +a(g12865 +g12867 +S'in' +p12869 +tp12870 +a(g12867 +g12869 +S'siena.' +p12871 +tp12872 +a(g12869 +g12871 +S'the' +p12873 +tp12874 +a(g12871 +g12873 +S'harsh' +p12875 +tp12876 +a(g12873 +g12875 +S'colors' +p12877 +tp12878 +a(g12875 +g12877 +S'and' +p12879 +tp12880 +a(g12877 +g12879 +S'brittle' +p12881 +tp12882 +a(g12879 +g12881 +S'hardness' +p12883 +tp12884 +a(g12881 +g12883 +S'convey' +p12885 +tp12886 +a(g12883 +g12885 +S'a' +p12887 +tp12888 +a(g12885 +g12887 +S'sensation' +p12889 +tp12890 +a(g12887 +g12889 +S'of' +p12891 +tp12892 +a(g12889 +g12891 +S'an' +p12893 +tp12894 +a(g12891 +g12893 +S'airless,' +p12895 +tp12896 +a(g12893 +g12895 +S'crystalline' +p12897 +tp12898 +a(g12895 +g12897 +S'world.' +p12899 +tp12900 +a(g12897 +g12899 +S'the' +p12901 +tp12902 +a(g12899 +g12901 +S'ground' +p12903 +tp12904 +a(g12901 +g12903 +S'is' +p12905 +tp12906 +a(g12903 +g12905 +S'strewn' +p12907 +tp12908 +a(g12905 +g12907 +S'with' +p12909 +tp12910 +a(g12907 +g12909 +S'smooth,' +p12911 +tp12912 +a(g12909 +g12911 +S'vividly' +p12913 +tp12914 +a(g12911 +g12913 +S'colored' +p12915 +tp12916 +a(g12913 +g12915 +S'stones;' +p12917 +tp12918 +a(g12915 +g12917 +S'probably' +p12919 +tp12920 +a(g12917 +g12919 +S'these' +p12921 +tp12922 +a(g12919 +g12921 +S'jewel-toned' +p12923 +tp12924 +a(g12921 +g12923 +S'beads' +p12925 +tp12926 +a(g12923 +g12925 +S'are' +p12927 +tp12928 +a(g12925 +g12927 +S'borrowed' +p12929 +tp12930 +a(g12927 +g12929 +S'from' +p12931 +tp12932 +a(g12929 +g12931 +S'manuscript' +p12933 +tp12934 +a(g12931 +g12933 +S'illuminations.' +p12935 +tp12936 +a(g12933 +g12935 +S'benvenuto' +p12937 +tp12938 +a(g12935 +g12937 +S'punctuated' +p12939 +tp12940 +a(g12937 +g12939 +S'his' +p12941 +tp12942 +a(g12939 +g12941 +S'scene' +p12943 +tp12944 +a(g12941 +g12943 +S'with' +p12945 +tp12946 +a(g12943 +g12945 +S'fantasy—look,' +p12947 +tp12948 +a(g12945 +g12947 +S'for' +p12949 +tp12950 +a(g12947 +g12949 +S'example,' +p12951 +tp12952 +a(g12949 +g12951 +S'at' +p12953 +tp12954 +a(g12951 +g12953 +S'the' +p12955 +tp12956 +a(g12953 +g12955 +S"soldier's" +p12957 +tp12958 +a(g12955 +g12957 +S'armor' +p12959 +tp12960 +a(g12957 +g12959 +S'in' +p12961 +tp12962 +a(g12959 +g12961 +S'the' +p12963 +tp12964 +a(g12961 +g12963 +S'scene' +p12965 +tp12966 +a(g12963 +g12965 +S'of' +p12967 +tp12968 +a(g12965 +g12967 +S'christ' +p12969 +tp12970 +a(g12967 +g12969 +S'carrying' +p12971 +tp12972 +a(g12969 +g12971 +S'the' +p12973 +tp12974 +a(g12971 +g12973 +S'cross.' +p12975 +tp12976 +a(g12973 +g12975 +S'also' +p12977 +tp12978 +a(g12975 +g12977 +S'typical' +p12979 +tp12980 +a(g12977 +g12979 +S'is' +p12981 +tp12982 +a(g12979 +g12981 +S'his' +p12983 +tp12984 +a(g12981 +g12983 +S'inclusion' +p12985 +tp12986 +a(g12983 +g12985 +S'of' +p12987 +tp12988 +a(g12985 +g12987 +S'such' +p12989 +tp12990 +a(g12987 +g12989 +S'everyday' +p12991 +tp12992 +a(g12989 +g12991 +S'details' +p12993 +tp12994 +a(g12991 +g12993 +S'as' +p12995 +tp12996 +a(g12993 +g12995 +S'the' +p12997 +tp12998 +a(g12995 +g12997 +S'young' +p12999 +tp13000 +a(g12997 +g12999 +S'boys' +p13001 +tp13002 +a(g12999 +g13001 +S'who' +p13003 +tp13004 +a(g13001 +g13003 +S'have' +p13005 +tp13006 +a(g13003 +g13005 +S'climbed' +p13007 +tp13008 +a(g13005 +g13007 +S'a' +p13009 +tp13010 +a(g13007 +g13009 +S'tree' +p13011 +tp13012 +a(g13009 +g13011 +S'for' +p13013 +tp13014 +a(g13011 +g13013 +S'a' +p13015 +tp13016 +a(g13013 +g13015 +S'better' +p13017 +tp13018 +a(g13015 +g13017 +S'view.' +p13019 +tp13020 +a(g13017 +g13019 +S'this' +p13021 +tp13022 +a(g13019 +g13021 +S'bust' +p13023 +tp13024 +a(g13021 +g13023 +S'of' +p13025 +tp13026 +a(g13023 +g13025 +S'an' +p13027 +tp13028 +a(g13025 +g13027 +S'infant,' +p13029 +tp13030 +a(g13027 +g13029 +S'without' +p13031 +tp13032 +a(g13029 +g13031 +S'any' +p13033 +tp13034 +a(g13031 +g13033 +S'attributes' +p13035 +tp13036 +a(g13033 +g13035 +S'to' +p13037 +tp13038 +a(g13035 +g13037 +S'identify' +p13039 +tp13040 +a(g13037 +g13039 +S'him' +p13041 +tp13042 +a(g13039 +g13041 +S'as' +p13043 +tp13044 +a(g13041 +g13043 +S'a' +p13045 +tp13046 +a(g13043 +g13045 +S'religious' +p13047 +tp13048 +a(g13045 +g13047 +S'figure,' +p13049 +tp13050 +a(g13047 +g13049 +S'may' +p13051 +tp13052 +a(g13049 +g13051 +S'have' +p13053 +tp13054 +a(g13051 +g13053 +S'been' +p13055 +tp13056 +a(g13053 +g13055 +S'created' +p13057 +tp13058 +a(g13055 +g13057 +S'as' +p13059 +tp13060 +a(g13057 +g13059 +S'a' +p13061 +tp13062 +a(g13059 +g13061 +S'portrait' +p13063 +tp13064 +a(g13061 +g13063 +S'of' +p13065 +tp13066 +a(g13063 +g13065 +S'an' +p13067 +tp13068 +a(g13065 +g13067 +S'actual' +p13069 +tp13070 +a(g13067 +g13069 +S'child.' +p13071 +tp13072 +a(g13069 +g13071 +S'carved' +p13073 +tp13074 +a(g13071 +g13073 +S'of' +p13075 +tp13076 +a(g13073 +g13075 +S'pure' +p13077 +tp13078 +a(g13075 +g13077 +S'white' +p13079 +tp13080 +a(g13077 +g13079 +S'marble,' +p13081 +tp13082 +a(g13079 +g13081 +S'it' +p13083 +tp13084 +a(g13081 +g13083 +S'presents' +p13085 +tp13086 +a(g13083 +g13085 +S'its' +p13087 +tp13088 +a(g13085 +g13087 +S'young' +p13089 +tp13090 +a(g13087 +g13089 +S'subject' +p13091 +tp13092 +a(g13089 +g13091 +S'with' +p13093 +tp13094 +a(g13091 +g13093 +S'a' +p13095 +tp13096 +a(g13093 +g13095 +S'solemn' +p13097 +tp13098 +a(g13095 +g13097 +S'but' +p13099 +tp13100 +a(g13097 +g13099 +S'relaxed' +p13101 +tp13102 +a(g13099 +g13101 +S'expression.' +p13103 +tp13104 +a(g13101 +g13103 +S'the' +p13105 +tp13106 +a(g13103 +g13105 +S'eyes,' +p13107 +tp13108 +a(g13105 +g13107 +S'with' +p13109 +tp13110 +a(g13107 +g13109 +S'uncarved' +p13111 +tp13112 +a(g13109 +g13111 +S'irises' +p13113 +tp13114 +a(g13111 +g13113 +S'and' +p13115 +tp13116 +a(g13113 +g13115 +S'pupils,' +p13117 +tp13118 +a(g13115 +g13117 +S'possess' +p13119 +tp13120 +a(g13117 +g13119 +S'a' +p13121 +tp13122 +a(g13119 +g13121 +S'timeless,' +p13123 +tp13124 +a(g13121 +g13123 +S'classical' +p13125 +tp13126 +a(g13123 +g13125 +S'character,' +p13127 +tp13128 +a(g13125 +g13127 +S'while' +p13129 +tp13130 +a(g13127 +g13129 +S'the' +p13131 +tp13132 +a(g13129 +g13131 +S'slight' +p13133 +tp13134 +a(g13131 +g13133 +S'asymmetry' +p13135 +tp13136 +a(g13133 +g13135 +S'and' +p13137 +tp13138 +a(g13135 +g13137 +S'skillful' +p13139 +tp13140 +a(g13137 +g13139 +S'handling' +p13141 +tp13142 +a(g13139 +g13141 +S'of' +p13143 +tp13144 +a(g13141 +g13143 +S'the' +p13145 +tp13146 +a(g13143 +g13145 +S'marble' +p13147 +tp13148 +a(g13145 +g13147 +S'create' +p13149 +tp13150 +a(g13147 +g13149 +S'a' +p13151 +tp13152 +a(g13149 +g13151 +S'sense' +p13153 +tp13154 +a(g13151 +g13153 +S'of' +p13155 +tp13156 +a(g13153 +g13155 +S'life' +p13157 +tp13158 +a(g13155 +g13157 +S'and' +p13159 +tp13160 +a(g13157 +g13159 +S'movement.' +p13161 +tp13162 +a(g13159 +g13161 +S'the' +p13163 +tp13164 +a(g13161 +g13163 +S'deeply' +p13165 +tp13166 +a(g13163 +g13165 +S'cut' +p13167 +tp13168 +a(g13165 +g13167 +S'mouth' +p13169 +tp13170 +a(g13167 +g13169 +S'falls' +p13171 +tp13172 +a(g13169 +g13171 +S'open.' +p13173 +tp13174 +a(g13171 +g13173 +S'soft' +p13175 +tp13176 +a(g13173 +g13175 +S'wisps' +p13177 +tp13178 +a(g13175 +g13177 +S'of' +p13179 +tp13180 +a(g13177 +g13179 +S'hair' +p13181 +tp13182 +a(g13179 +g13181 +S'fall' +p13183 +tp13184 +a(g13181 +g13183 +S'loosely' +p13185 +tp13186 +a(g13183 +g13185 +S'over' +p13187 +tp13188 +a(g13185 +g13187 +S'the' +p13189 +tp13190 +a(g13187 +g13189 +S'ears' +p13191 +tp13192 +a(g13189 +g13191 +S'and' +p13193 +tp13194 +a(g13191 +g13193 +S'forehead.' +p13195 +tp13196 +a(g13193 +g13195 +S'the' +p13197 +tp13198 +a(g13195 +g13197 +S'sensitive' +p13199 +tp13200 +a(g13197 +g13199 +S'carving' +p13201 +tp13202 +a(g13199 +g13201 +S'of' +p13203 +tp13204 +a(g13201 +g13203 +S'the' +p13205 +tp13206 +a(g13203 +g13205 +S'stone' +p13207 +tp13208 +a(g13205 +g13207 +S'to' +p13209 +tp13210 +a(g13207 +g13209 +S'convey' +p13211 +tp13212 +a(g13209 +g13211 +S'the' +p13213 +tp13214 +a(g13211 +g13213 +S'resilience' +p13215 +tp13216 +a(g13213 +g13215 +S'of' +p13217 +tp13218 +a(g13215 +g13217 +S'young' +p13219 +tp13220 +a(g13217 +g13219 +S'flesh' +p13221 +tp13222 +a(g13219 +g13221 +S'and' +p13223 +tp13224 +a(g13221 +g13223 +S'the' +p13225 +tp13226 +a(g13223 +g13225 +S'silky' +p13227 +tp13228 +a(g13225 +g13227 +S'texture' +p13229 +tp13230 +a(g13227 +g13229 +S'of' +p13231 +tp13232 +a(g13229 +g13231 +S'a' +p13233 +tp13234 +a(g13231 +g13233 +S"child's" +p13235 +tp13236 +a(g13233 +g13235 +S'hair' +p13237 +tp13238 +a(g13235 +g13237 +S'is' +p13239 +tp13240 +a(g13237 +g13239 +S'characteristic' +p13241 +tp13242 +a(g13239 +g13241 +S'of' +p13243 +tp13244 +a(g13241 +g13243 +S"desiderio's" +p13245 +tp13246 +a(g13243 +g13245 +S'best' +p13247 +tp13248 +a(g13245 +g13247 +S'work.' +p13249 +tp13250 +a(g13247 +g13249 +S'desiderio' +p13251 +tp13252 +a(g13249 +g13251 +S'was' +p13253 +tp13254 +a(g13251 +g13253 +S'born' +p13255 +tp13256 +a(g13253 +g13255 +S'in' +p13257 +tp13258 +a(g13255 +g13257 +S'the' +p13259 +tp13260 +a(g13257 +g13259 +S'quarry' +p13261 +tp13262 +a(g13259 +g13261 +S'town' +p13263 +tp13264 +a(g13261 +g13263 +S'of' +p13265 +tp13266 +a(g13263 +g13265 +S'settignano,' +p13267 +tp13268 +a(g13265 +g13267 +S'where' +p13269 +tp13270 +a(g13267 +g13269 +S'his' +p13271 +tp13272 +a(g13269 +g13271 +S'father' +p13273 +tp13274 +a(g13271 +g13273 +S'was' +p13275 +tp13276 +a(g13273 +g13275 +S'a' +p13277 +tp13278 +a(g13275 +g13277 +S'stone' +p13279 +tp13280 +a(g13277 +g13279 +S'cutter.' +p13281 +tp13282 +a(g13279 +g13281 +S'perhaps' +p13283 +tp13284 +a(g13281 +g13283 +S'trained' +p13285 +tp13286 +a(g13283 +g13285 +S'in' +p13287 +tp13288 +a(g13285 +g13287 +S'the' +p13289 +tp13290 +a(g13287 +g13289 +S'florentine' +p13291 +tp13292 +a(g13289 +g13291 +S'studio' +p13293 +tp13294 +a(g13291 +g13293 +S'of' +p13295 +tp13296 +a(g13293 +g13295 +S'bernardo' +p13297 +tp13298 +a(g13295 +g13297 +S'rossellino,' +p13299 +tp13300 +a(g13297 +g13299 +S'desiderio' +p13301 +tp13302 +a(g13299 +g13301 +S'had' +p13303 +tp13304 +a(g13301 +g13303 +S'established' +p13305 +tp13306 +a(g13303 +g13305 +S'himself' +p13307 +tp13308 +a(g13305 +g13307 +S'as' +p13309 +tp13310 +a(g13307 +g13309 +S'an' +p13311 +tp13312 +a(g13309 +g13311 +S'independent' +p13313 +tp13314 +a(g13311 +g13313 +S'master' +p13315 +tp13316 +a(g13313 +g13315 +S'in' +p13317 +tp13318 +a(g13315 +g13317 +S'that' +p13319 +tp13320 +a(g13317 +g13319 +S'city' +p13321 +tp13322 +a(g13319 +g13321 +S'by' +p13323 +tp13324 +a(g13321 +g13323 +S'1453.' +p13325 +tp13326 +a(g13323 +g13325 +S'his' +p13327 +tp13328 +a(g13325 +g13327 +S'work,' +p13329 +tp13330 +a(g13327 +g13329 +S'like' +p13331 +tp13332 +a(g13329 +g13331 +S'that' +p13333 +tp13334 +a(g13331 +g13333 +S'of' +p13335 +tp13336 +a(g13333 +g13335 +S'the' +p13337 +tp13338 +a(g13335 +g13337 +S'rossellino' +p13339 +tp13340 +a(g13337 +g13339 +S'brothers' +p13341 +tp13342 +a(g13339 +g13341 +S'antonio' +p13343 +tp13344 +a(g13341 +g13343 +S'and' +p13345 +tp13346 +a(g13343 +g13345 +S'bernardo,' +p13347 +tp13348 +a(g13345 +g13347 +S'filled' +p13349 +tp13350 +a(g13347 +g13349 +S'a' +p13351 +tp13352 +a(g13349 +g13351 +S'vigorous' +p13353 +tp13354 +a(g13351 +g13353 +S'demand' +p13355 +tp13356 +a(g13353 +g13355 +S'for' +p13357 +tp13358 +a(g13355 +g13357 +S'portraits,' +p13359 +tp13360 +a(g13357 +g13359 +S'religious' +p13361 +tp13362 +a(g13359 +g13361 +S'images,' +p13363 +tp13364 +a(g13361 +g13363 +S'and' +p13365 +tp13366 +a(g13363 +g13365 +S'church' +p13367 +tp13368 +a(g13365 +g13367 +S'furnishings.' +p13369 +tp13370 +a(g13367 +g13369 +S'during' +p13371 +tp13372 +a(g13369 +g13371 +S'his' +p13373 +tp13374 +a(g13371 +g13373 +S'short' +p13375 +tp13376 +a(g13373 +g13375 +S'career,' +p13377 +tp13378 +a(g13375 +g13377 +S'desiderio' +p13379 +tp13380 +a(g13377 +g13379 +S'was' +p13381 +tp13382 +a(g13379 +g13381 +S'celebrated' +p13383 +tp13384 +a(g13381 +g13383 +S'for' +p13385 +tp13386 +a(g13383 +g13385 +S'his' +p13387 +tp13388 +a(g13385 +g13387 +S'skill' +p13389 +tp13390 +a(g13387 +g13389 +S'in' +p13391 +tp13392 +a(g13389 +g13391 +S'creating' +p13393 +tp13394 +a(g13391 +g13393 +S'marble' +p13395 +tp13396 +a(g13393 +g13395 +S'busts' +p13397 +tp13398 +a(g13395 +g13397 +S'of' +p13399 +tp13400 +a(g13397 +g13399 +S'women' +p13401 +tp13402 +a(g13399 +g13401 +S'and' +p13403 +tp13404 +a(g13401 +g13403 +S'young' +p13405 +tp13406 +a(g13403 +g13405 +S'children.' +p13407 +tp13408 +a(g13405 +g13407 +S'the' +p13409 +tp13410 +a(g13407 +g13409 +S'mill' +p13411 +tp13412 +a(g13409 +g13411 +S'while' +p13413 +tp13414 +a(g13411 +g13413 +S'we' +p13415 +tp13416 +a(g13413 +g13415 +S'may' +p13417 +tp13418 +a(g13415 +g13417 +S'find' +p13419 +tp13420 +a(g13417 +g13419 +S'such' +p13421 +tp13422 +a(g13419 +g13421 +S'interpretations' +p13423 +tp13424 +a(g13421 +g13423 +S'unfounded' +p13425 +tp13426 +a(g13423 +g13425 +S'today,' +p13427 +tp13428 +a(g13425 +g13427 +S'particularly' +p13429 +tp13430 +a(g13427 +g13429 +S'after' +p13431 +tp13432 +a(g13429 +g13431 +S'the' +p13433 +tp13434 +a(g13431 +g13433 +S"painting's" +p13435 +tp13436 +a(g13433 +g13435 +S'blue' +p13437 +tp13438 +a(g13435 +g13437 +S'sky' +p13439 +tp13440 +a(g13437 +g13439 +S'was' +p13441 +tp13442 +a(g13439 +g13441 +S'revealed' +p13443 +tp13444 +a(g13441 +g13443 +S'during' +p13445 +tp13446 +a(g13443 +g13445 +S'restoration' +p13447 +tp13448 +a(g13445 +g13447 +S'in' +p13449 +tp13450 +a(g13447 +g13449 +S'the' +p13451 +tp13452 +a(g13449 +g13451 +S'1970s,' +p13453 +tp13454 +a(g13451 +g13453 +S'the' +p13455 +tp13456 +a(g13453 +g13455 +S'painting' +p13457 +tp13458 +a(g13455 +g13457 +S'still' +p13459 +tp13460 +a(g13457 +g13459 +S'speaks' +p13461 +tp13462 +a(g13459 +g13461 +S'to' +p13463 +tp13464 +a(g13461 +g13463 +S'us' +p13465 +tp13466 +a(g13463 +g13465 +S'as' +p13467 +tp13468 +a(g13465 +g13467 +S'a' +p13469 +tp13470 +a(g13467 +g13469 +S'powerfully' +p13471 +tp13472 +a(g13469 +g13471 +S'expressive' +p13473 +tp13474 +a(g13471 +g13473 +S'work.' +p13475 +tp13476 +a(g13473 +g13475 +S'rembrandt' +p13477 +tp13478 +a(g13475 +g13477 +S'evokes' +p13479 +tp13480 +a(g13477 +g13479 +S'a' +p13481 +tp13482 +a(g13479 +g13481 +S'feeling' +p13483 +tp13484 +a(g13481 +g13483 +S'of' +p13485 +tp13486 +a(g13483 +g13485 +S'the' +p13487 +tp13488 +a(g13485 +g13487 +S'forces' +p13489 +tp13490 +a(g13487 +g13489 +S'of' +p13491 +tp13492 +a(g13489 +g13491 +S'nature' +p13493 +tp13494 +a(g13491 +g13493 +S'in' +p13495 +tp13496 +a(g13493 +g13495 +S'the' +p13497 +tp13498 +a(g13495 +g13497 +S'dramatic' +p13499 +tp13500 +a(g13497 +g13499 +S'confrontation' +p13501 +tp13502 +a(g13499 +g13501 +S'of' +p13503 +tp13504 +a(g13501 +g13503 +S'the' +p13505 +tp13506 +a(g13503 +g13505 +S'iconic' +p13507 +tp13508 +a(g13505 +g13507 +S'mill,' +p13509 +tp13510 +a(g13507 +g13509 +S'so' +p13511 +tp13512 +a(g13509 +g13511 +S'central' +p13513 +tp13514 +a(g13511 +g13513 +S'to' +p13515 +tp13516 +a(g13513 +g13515 +S'the' +p13517 +tp13518 +a(g13515 +g13517 +S'dutch' +p13519 +tp13520 +a(g13517 +g13519 +S'way' +p13521 +tp13522 +a(g13519 +g13521 +S'of' +p13523 +tp13524 +a(g13521 +g13523 +S'life,' +p13525 +tp13526 +a(g13523 +g13525 +S'against' +p13527 +tp13528 +a(g13525 +g13527 +S'the' +p13529 +tp13530 +a(g13527 +g13529 +S'sweep' +p13531 +tp13532 +a(g13529 +g13531 +S'of' +p13533 +tp13534 +a(g13531 +g13533 +S'the' +p13535 +tp13536 +a(g13533 +g13535 +S'sky.' +p13537 +tp13538 +a(g13535 +g13537 +S'at' +p13539 +tp13540 +a(g13537 +g13539 +S'the' +p13541 +tp13542 +a(g13539 +g13541 +S'same' +p13543 +tp13544 +a(g13541 +g13543 +S'time,' +p13545 +tp13546 +a(g13543 +g13545 +S'the' +p13547 +tp13548 +a(g13545 +g13547 +S'figures' +p13549 +tp13550 +a(g13547 +g13549 +S'within' +p13551 +tp13552 +a(g13549 +g13551 +S'the' +p13553 +tp13554 +a(g13551 +g13553 +S'landscape' +p13555 +tp13556 +a(g13553 +g13555 +S'give' +p13557 +tp13558 +a(g13555 +g13557 +S'it' +p13559 +tp13560 +a(g13557 +g13559 +S'a' +p13561 +tp13562 +a(g13559 +g13561 +S'human' +p13563 +tp13564 +a(g13561 +g13563 +S'element' +p13565 +tp13566 +a(g13563 +g13565 +S'that' +p13567 +tp13568 +a(g13565 +g13567 +S'we' +p13569 +tp13570 +a(g13567 +g13569 +S'can' +p13571 +tp13572 +a(g13569 +g13571 +S'respond' +p13573 +tp13574 +a(g13571 +g13573 +S'to' +p13575 +tp13576 +a(g13573 +g13575 +S'on' +p13577 +tp13578 +a(g13575 +g13577 +S'a' +p13579 +tp13580 +a(g13577 +g13579 +S'personal' +p13581 +tp13582 +a(g13579 +g13581 +S'basis.' +p13583 +tp13584 +a(g13581 +g13583 +S'the' +p13585 +tp13586 +a(g13583 +g13585 +S'dancer' +p13587 +tp13588 +a(g13585 +g13587 +S'the' +p13589 +tp13590 +a(g13587 +g13589 +S'dancer' +p13591 +tp13592 +a(g13589 +g13591 +S'although' +p13593 +tp13594 +a(g13591 +g13593 +S'renoir' +p13595 +tp13596 +a(g13593 +g13595 +S'himself' +p13597 +tp13598 +a(g13595 +g13597 +S'never' +p13599 +tp13600 +a(g13597 +g13599 +S'identified' +p13601 +tp13602 +a(g13599 +g13601 +S'the' +p13603 +tp13604 +a(g13601 +g13603 +S'figure,' +p13605 +tp13606 +a(g13603 +g13605 +S'the' +p13607 +tp13608 +a(g13605 +g13607 +S'model' +p13609 +tp13610 +a(g13607 +g13609 +S'is' +p13611 +tp13612 +a(g13609 +g13611 +S'almost' +p13613 +tp13614 +a(g13611 +g13613 +S'certainly' +p13615 +tp13616 +a(g13613 +g13615 +S'henriette' +p13617 +tp13618 +a(g13615 +g13617 +S'henriot,' +p13619 +tp13620 +a(g13617 +g13619 +S'the' +p13621 +tp13622 +a(g13619 +g13621 +S'young' +p13623 +tp13624 +a(g13621 +g13623 +S'actress' +p13625 +tp13626 +a(g13623 +g13625 +S'who' +p13627 +tp13628 +a(g13625 +g13627 +S'posed' +p13629 +tp13630 +a(g13627 +g13629 +S'regularly' +p13631 +tp13632 +a(g13629 +g13631 +S'for' +p13633 +tp13634 +a(g13631 +g13633 +S'the' +p13635 +tp13636 +a(g13633 +g13635 +S'artist' +p13637 +tp13638 +a(g13635 +g13637 +S'in' +p13639 +tp13640 +a(g13637 +g13639 +S'the' +p13641 +tp13642 +a(g13639 +g13641 +S'mid-1870s' +p13643 +tp13644 +a(g13641 +g13643 +S'and' +p13645 +tp13646 +a(g13643 +g13645 +S'whose' +p13647 +tp13648 +a(g13645 +g13647 +S'likeness' +p13649 +tp13650 +a(g13647 +g13649 +S'was' +p13651 +tp13652 +a(g13649 +g13651 +S'featured' +p13653 +tp13654 +a(g13651 +g13653 +S'in' +p13655 +tp13656 +a(g13653 +g13655 +S'ultimately,' +p13657 +tp13658 +a(g13655 +g13657 +S'however,' +p13659 +tp13660 +a(g13657 +g13659 +S'renoir\xe2\x80\x99s' +p13661 +tp13662 +a(g13659 +g13661 +S'virtuoso' +p13663 +tp13664 +a(g13661 +g13663 +S'brushwork' +p13665 +tp13666 +a(g13663 +g13665 +S'is' +p13667 +tp13668 +a(g13665 +g13667 +S'the' +p13669 +tp13670 +a(g13667 +g13669 +S'painting\xe2\x80\x99s' +p13671 +tp13672 +a(g13669 +g13671 +S'most' +p13673 +tp13674 +a(g13671 +g13673 +S'compelling' +p13675 +tp13676 +a(g13673 +g13675 +S'feature.' +p13677 +tp13678 +a(g13675 +g13677 +S'his' +p13679 +tp13680 +a(g13677 +g13679 +S'paint' +p13681 +tp13682 +a(g13679 +g13681 +S'handling' +p13683 +tp13684 +a(g13681 +g13683 +S'is' +p13685 +tp13686 +a(g13683 +g13685 +S'varied,' +p13687 +tp13688 +a(g13685 +g13687 +S'ranging' +p13689 +tp13690 +a(g13687 +g13689 +S'from' +p13691 +tp13692 +a(g13689 +g13691 +S'the' +p13693 +tp13694 +a(g13691 +g13693 +S'delicate' +p13695 +tp13696 +a(g13693 +g13695 +S'brushstrokes' +p13697 +tp13698 +a(g13695 +g13697 +S'that' +p13699 +tp13700 +a(g13697 +g13699 +S'define' +p13701 +tp13702 +a(g13699 +g13701 +S'the' +p13703 +tp13704 +a(g13701 +g13703 +S'dancer\xe2\x80\x99s' +p13705 +tp13706 +a(g13703 +g13705 +S'face' +p13707 +tp13708 +a(g13705 +g13707 +S'to' +p13709 +tp13710 +a(g13707 +g13709 +S'the' +p13711 +tp13712 +a(g13709 +g13711 +S'loose,' +p13713 +tp13714 +a(g13711 +g13713 +S'almost' +p13715 +tp13716 +a(g13713 +g13715 +S'careless' +p13717 +tp13718 +a(g13715 +g13717 +S'application' +p13719 +tp13720 +a(g13717 +g13719 +S'of' +p13721 +tp13722 +a(g13719 +g13721 +S'paint' +p13723 +tp13724 +a(g13721 +g13723 +S'in' +p13725 +tp13726 +a(g13723 +g13725 +S'the' +p13727 +tp13728 +a(g13725 +g13727 +S'picture\xe2\x80\x99s' +p13729 +tp13730 +a(g13727 +g13729 +S'background.' +p13731 +tp13732 +a(g13729 +g13731 +S'the' +p13733 +tp13734 +a(g13731 +g13733 +S'dancer\xe2\x80\x99s' +p13735 +tp13736 +a(g13733 +g13735 +S'skirt' +p13737 +tp13738 +a(g13735 +g13737 +S'is' +p13739 +tp13740 +a(g13737 +g13739 +S'a' +p13741 +tp13742 +a(g13739 +g13741 +S'true' +p13743 +tp13744 +a(g13741 +g13743 +S'tour' +p13745 +tp13746 +a(g13743 +g13745 +S'de' +p13747 +tp13748 +a(g13745 +g13747 +S'force;' +p13749 +tp13750 +a(g13747 +g13749 +S'renoir' +p13751 +tp13752 +a(g13749 +g13751 +S'masterfully' +p13753 +tp13754 +a(g13751 +g13753 +S'captured' +p13755 +tp13756 +a(g13753 +g13755 +S'the' +p13757 +tp13758 +a(g13755 +g13757 +S'gauzy' +p13759 +tp13760 +a(g13757 +g13759 +S'softness' +p13761 +tp13762 +a(g13759 +g13761 +S'of' +p13763 +tp13764 +a(g13761 +g13763 +S'the' +p13765 +tp13766 +a(g13763 +g13765 +S'tulle.' +p13767 +tp13768 +a(g13765 +g13767 +S'it' +p13769 +tp13770 +a(g13767 +g13769 +S'floats' +p13771 +tp13772 +a(g13769 +g13771 +S'about' +p13773 +tp13774 +a(g13771 +g13773 +S'her' +p13775 +tp13776 +a(g13773 +g13775 +S'body' +p13777 +tp13778 +a(g13775 +g13777 +S'like' +p13779 +tp13780 +a(g13777 +g13779 +S'a' +p13781 +tp13782 +a(g13779 +g13781 +S'cloud,' +p13783 +tp13784 +a(g13781 +g13783 +S'seeming' +p13785 +tp13786 +a(g13783 +g13785 +S'to' +p13787 +tp13788 +a(g13785 +g13787 +S'dissolve' +p13789 +tp13790 +a(g13787 +g13789 +S'into' +p13791 +tp13792 +a(g13789 +g13791 +S'the' +p13793 +tp13794 +a(g13791 +g13793 +S'hazy' +p13795 +tp13796 +a(g13793 +g13795 +S'background,' +p13797 +tp13798 +a(g13795 +g13797 +S'the' +p13799 +tp13800 +a(g13797 +g13799 +S'fabric' +p13801 +tp13802 +a(g13799 +g13801 +S'as' +p13803 +tp13804 +a(g13801 +g13803 +S'light' +p13805 +tp13806 +a(g13803 +g13805 +S'and' +p13807 +tp13808 +a(g13805 +g13807 +S'insubstantial' +p13809 +tp13810 +a(g13807 +g13809 +S'as' +p13811 +tp13812 +a(g13809 +g13811 +S'mist.' +p13813 +tp13814 +a(g13811 +g13813 +S'four' +p13815 +tp13816 +a(g13813 +g13815 +S'years' +p13817 +tp13818 +a(g13815 +g13817 +S'after' +p13819 +tp13820 +a(g13817 +g13819 +S'appearing' +p13821 +tp13822 +a(g13819 +g13821 +S'in' +p13823 +tp13824 +a(g13821 +g13823 +S'this' +p13825 +tp13826 +a(g13823 +g13825 +S'historic' +p13827 +tp13828 +a(g13825 +g13827 +S'exhibition,' +p13829 +tp13830 +a(g13827 +g13829 +S'(text' +p13831 +tp13832 +a(g13829 +g13831 +S'by' +p13833 +tp13834 +a(g13831 +g13833 +S'kimberly' +p13835 +tp13836 +a(g13833 +g13835 +S'jones,' +p13837 +tp13838 +a(g13835 +g13837 +S'notes' +p13839 +tp13840 +a(g13837 +g13839 +S'' +p13843 +tp13844 +a(g13841 +g13843 +S'' +p13847 +tp13848 +a(g13845 +g13847 +S'this' +p13849 +tp13850 +a(g13847 +g13849 +S'arresting' +p13851 +tp13852 +a(g13849 +g13851 +S'image' +p13853 +tp13854 +a(g13851 +g13853 +S'was' +p13855 +tp13856 +a(g13853 +g13855 +S'thought' +p13857 +tp13858 +a(g13855 +g13857 +S'in' +p13859 +tp13860 +a(g13857 +g13859 +S'the' +p13861 +tp13862 +a(g13859 +g13861 +S'nineteenth' +p13863 +tp13864 +a(g13861 +g13863 +S'century' +p13865 +tp13866 +a(g13863 +g13865 +S'to' +p13867 +tp13868 +a(g13865 +g13867 +S'be' +p13869 +tp13870 +a(g13867 +g13869 +S'a' +p13871 +tp13872 +a(g13869 +g13871 +S'raphael' +p13873 +tp13874 +a(g13871 +g13873 +S'self-portrait.' +p13875 +tp13876 +a(g13873 +g13875 +S'however,' +p13877 +tp13878 +a(g13875 +g13877 +S'we' +p13879 +tp13880 +a(g13877 +g13879 +S'know' +p13881 +tp13882 +a(g13879 +g13881 +S'today' +p13883 +tp13884 +a(g13881 +g13883 +S'that' +p13885 +tp13886 +a(g13883 +g13885 +S'this' +p13887 +tp13888 +a(g13885 +g13887 +S'handsome' +p13889 +tp13890 +a(g13887 +g13889 +S'young' +p13891 +tp13892 +a(g13889 +g13891 +S'man' +p13893 +tp13894 +a(g13891 +g13893 +S'was' +p13895 +tp13896 +a(g13893 +g13895 +S'bindo' +p13897 +tp13898 +a(g13895 +g13897 +S'altoviti,' +p13899 +tp13900 +a(g13897 +g13899 +S'a' +p13901 +tp13902 +a(g13899 +g13901 +S'wealthy' +p13903 +tp13904 +a(g13901 +g13903 +S'florentine' +p13905 +tp13906 +a(g13903 +g13905 +S'banker' +p13907 +tp13908 +a(g13905 +g13907 +S'and' +p13909 +tp13910 +a(g13907 +g13909 +S'friend' +p13911 +tp13912 +a(g13909 +g13911 +S'of' +p13913 +tp13914 +a(g13911 +g13913 +S'the' +p13915 +tp13916 +a(g13913 +g13915 +S'artist' +p13917 +tp13918 +a(g13915 +g13917 +S'in' +p13919 +tp13920 +a(g13917 +g13919 +S'rome.' +p13921 +tp13922 +a(g13919 +g13921 +S'he' +p13923 +tp13924 +a(g13921 +g13923 +S'turns' +p13925 +tp13926 +a(g13923 +g13925 +S'in' +p13927 +tp13928 +a(g13925 +g13927 +S'a' +p13929 +tp13930 +a(g13927 +g13929 +S'dramatic,' +p13931 +tp13932 +a(g13929 +g13931 +S'almost' +p13933 +tp13934 +a(g13931 +g13933 +S'theatrical,' +p13935 +tp13936 +a(g13933 +g13935 +S'way' +p13937 +tp13938 +a(g13935 +g13937 +S'to' +p13939 +tp13940 +a(g13937 +g13939 +S'fix' +p13941 +tp13942 +a(g13939 +g13941 +S'the' +p13943 +tp13944 +a(g13941 +g13943 +S'eye' +p13945 +tp13946 +a(g13943 +g13945 +S'of' +p13947 +tp13948 +a(g13945 +g13947 +S'the' +p13949 +tp13950 +a(g13947 +g13949 +S'viewer.' +p13951 +tp13952 +a(g13949 +g13951 +S'perhaps' +p13953 +tp13954 +a(g13951 +g13953 +S'one' +p13955 +tp13956 +a(g13953 +g13955 +S'viewer' +p13957 +tp13958 +a(g13955 +g13957 +S'in' +p13959 +tp13960 +a(g13957 +g13959 +S'particular' +p13961 +tp13962 +a(g13959 +g13961 +S'was' +p13963 +tp13964 +a(g13961 +g13963 +S'meant' +p13965 +tp13966 +a(g13963 +g13965 +S'to' +p13967 +tp13968 +a(g13965 +g13967 +S'receive' +p13969 +tp13970 +a(g13967 +g13969 +S'his' +p13971 +tp13972 +a(g13969 +g13971 +S'captivating' +p13973 +tp13974 +a(g13971 +g13973 +S'look:' +p13975 +tp13976 +a(g13973 +g13975 +S"bindo's" +p13977 +tp13978 +a(g13975 +g13977 +S'wife' +p13979 +tp13980 +a(g13977 +g13979 +S'fiammetta' +p13981 +tp13982 +a(g13979 +g13981 +S'soderini.' +p13983 +tp13984 +a(g13981 +g13983 +S'renaissance' +p13985 +tp13986 +a(g13983 +g13985 +S'poets' +p13987 +tp13988 +a(g13985 +g13987 +S'and' +p13989 +tp13990 +a(g13987 +g13989 +S'courtiers' +p13991 +tp13992 +a(g13989 +g13991 +S'were' +p13993 +tp13994 +a(g13991 +g13993 +S'unanimous' +p13995 +tp13996 +a(g13993 +g13995 +S'in' +p13997 +tp13998 +a(g13995 +g13997 +S'believing' +p13999 +tp14000 +a(g13997 +g13999 +S'that' +p14001 +tp14002 +a(g13999 +g14001 +S'a' +p14003 +tp14004 +a(g14001 +g14003 +S'person' +p14005 +tp14006 +a(g14003 +g14005 +S'first' +p14007 +tp14008 +a(g14005 +g14007 +S'fell' +p14009 +tp14010 +a(g14007 +g14009 +S'in' +p14011 +tp14012 +a(g14009 +g14011 +S'love' +p14013 +tp14014 +a(g14011 +g14013 +S'through' +p14015 +tp14016 +a(g14013 +g14015 +S'the' +p14017 +tp14018 +a(g14015 +g14017 +S'eyes.' +p14019 +tp14020 +a(g14017 +g14019 +S'they' +p14021 +tp14022 +a(g14019 +g14021 +S'were' +p14023 +tp14024 +a(g14021 +g14023 +S'called' +p14025 +tp14026 +a(g14023 +g14025 +S'the' +p14027 +tp14028 +a(g14025 +g14027 +S'"guides' +p14029 +tp14030 +a(g14027 +g14029 +S'of' +p14031 +tp14032 +a(g14029 +g14031 +S'love,"' +p14033 +tp14034 +a(g14031 +g14033 +S'which' +p14035 +tp14036 +a(g14033 +g14035 +S'could' +p14037 +tp14038 +a(g14035 +g14037 +S'"reveal' +p14039 +tp14040 +a(g14037 +g14039 +S'the' +p14041 +tp14042 +a(g14039 +g14041 +S'passion' +p14043 +tp14044 +a(g14041 +g14043 +S'within' +p14045 +tp14046 +a(g14043 +g14045 +S'more' +p14047 +tp14048 +a(g14045 +g14047 +S'effectively' +p14049 +tp14050 +a(g14047 +g14049 +S'than' +p14051 +tp14052 +a(g14049 +g14051 +S'the' +p14053 +tp14054 +a(g14051 +g14053 +S'tongue' +p14055 +tp14056 +a(g14053 +g14055 +S'itself,' +p14057 +tp14058 +a(g14055 +g14057 +S'or' +p14059 +tp14060 +a(g14057 +g14059 +S'letter,' +p14061 +tp14062 +a(g14059 +g14061 +S'or' +p14063 +tp14064 +a(g14061 +g14063 +S'messengers."' +p14065 +tp14066 +a(g14063 +g14065 +S"bindo's" +p14067 +tp14068 +a(g14065 +g14067 +S'flushed' +p14069 +tp14070 +a(g14067 +g14069 +S'cheeks' +p14071 +tp14072 +a(g14069 +g14071 +S'contribute' +p14073 +tp14074 +a(g14071 +g14073 +S'to' +p14075 +tp14076 +a(g14073 +g14075 +S'the' +p14077 +tp14078 +a(g14075 +g14077 +S'impression' +p14079 +tp14080 +a(g14077 +g14079 +S'of' +p14081 +tp14082 +a(g14079 +g14081 +S'passion,' +p14083 +tp14084 +a(g14081 +g14083 +S'and' +p14085 +tp14086 +a(g14083 +g14085 +S'a' +p14087 +tp14088 +a(g14085 +g14087 +S'ring' +p14089 +tp14090 +a(g14087 +g14089 +S'is' +p14091 +tp14092 +a(g14089 +g14091 +S'prominent' +p14093 +tp14094 +a(g14091 +g14093 +S'on' +p14095 +tp14096 +a(g14093 +g14095 +S'the' +p14097 +tp14098 +a(g14095 +g14097 +S'hand' +p14099 +tp14100 +a(g14097 +g14099 +S'he' +p14101 +tp14102 +a(g14099 +g14101 +S'holds' +p14103 +tp14104 +a(g14101 +g14103 +S'above' +p14105 +tp14106 +a(g14103 +g14105 +S'his' +p14107 +tp14108 +a(g14105 +g14107 +S'heart.' +p14109 +tp14110 +a(g14107 +g14109 +S'the' +p14111 +tp14112 +a(g14109 +g14111 +S'robe' +p14113 +tp14114 +a(g14111 +g14113 +S'slipping' +p14115 +tp14116 +a(g14113 +g14115 +S'from' +p14117 +tp14118 +a(g14115 +g14117 +S'his' +p14119 +tp14120 +a(g14117 +g14119 +S'shoulder' +p14121 +tp14122 +a(g14119 +g14121 +S'reveals' +p14123 +tp14124 +a(g14121 +g14123 +S'a' +p14125 +tp14126 +a(g14123 +g14125 +S'bare' +p14127 +tp14128 +a(g14125 +g14127 +S'nape' +p14129 +tp14130 +a(g14127 +g14129 +S'caressed' +p14131 +tp14132 +a(g14129 +g14131 +S'by' +p14133 +tp14134 +a(g14131 +g14133 +S'soft' +p14135 +tp14136 +a(g14133 +g14135 +S'curls.' +p14137 +tp14138 +a(g14135 +g14137 +S'their' +p14139 +tp14140 +a(g14137 +g14139 +S'golden' +p14141 +tp14142 +a(g14139 +g14141 +S'color' +p14143 +tp14144 +a(g14141 +g14143 +S'would' +p14145 +tp14146 +a(g14143 +g14145 +S'have' +p14147 +tp14148 +a(g14145 +g14147 +S'underscored' +p14149 +tp14150 +a(g14147 +g14149 +S'the' +p14151 +tp14152 +a(g14149 +g14151 +S'nobility' +p14153 +tp14154 +a(g14151 +g14153 +S'and' +p14155 +tp14156 +a(g14153 +g14155 +S'purity' +p14157 +tp14158 +a(g14155 +g14157 +S'of' +p14159 +tp14160 +a(g14157 +g14159 +S'his' +p14161 +tp14162 +a(g14159 +g14161 +S'love.' +p14163 +tp14164 +a(g14161 +g14163 +S'bindo' +p14165 +tp14166 +a(g14163 +g14165 +S'and' +p14167 +tp14168 +a(g14165 +g14167 +S'fiammetta,' +p14169 +tp14170 +a(g14167 +g14169 +S'daughter' +p14171 +tp14172 +a(g14169 +g14171 +S'of' +p14173 +tp14174 +a(g14171 +g14173 +S'a' +p14175 +tp14176 +a(g14173 +g14175 +S'prominent' +p14177 +tp14178 +a(g14175 +g14177 +S'florentine' +p14179 +tp14180 +a(g14177 +g14179 +S'family,' +p14181 +tp14182 +a(g14179 +g14181 +S'were' +p14183 +tp14184 +a(g14181 +g14183 +S'married' +p14185 +tp14186 +a(g14183 +g14185 +S'in' +p14187 +tp14188 +a(g14185 +g14187 +S'1511,' +p14189 +tp14190 +a(g14187 +g14189 +S'when' +p14191 +tp14192 +a(g14189 +g14191 +S'bindo' +p14193 +tp14194 +a(g14191 +g14193 +S'would' +p14195 +tp14196 +a(g14193 +g14195 +S'have' +p14197 +tp14198 +a(g14195 +g14197 +S'been' +p14199 +tp14200 +a(g14197 +g14199 +S'about' +p14201 +tp14202 +a(g14199 +g14201 +S'twenty.' +p14203 +tp14204 +a(g14201 +g14203 +S'the' +p14205 +tp14206 +a(g14203 +g14205 +S'couple' +p14207 +tp14208 +a(g14205 +g14207 +S'had' +p14209 +tp14210 +a(g14207 +g14209 +S'six' +p14211 +tp14212 +a(g14209 +g14211 +S'children,' +p14213 +tp14214 +a(g14211 +g14213 +S'but' +p14215 +tp14216 +a(g14213 +g14215 +S'fiammetta' +p14217 +tp14218 +a(g14215 +g14217 +S'continued' +p14219 +tp14220 +a(g14217 +g14219 +S'to' +p14221 +tp14222 +a(g14219 +g14221 +S'live' +p14223 +tp14224 +a(g14221 +g14223 +S'in' +p14225 +tp14226 +a(g14223 +g14225 +S'florence' +p14227 +tp14228 +a(g14225 +g14227 +S'while' +p14229 +tp14230 +a(g14227 +g14229 +S"bindo's" +p14231 +tp14232 +a(g14229 +g14231 +S'business' +p14233 +tp14234 +a(g14231 +g14233 +S'with' +p14235 +tp14236 +a(g14233 +g14235 +S'the' +p14237 +tp14238 +a(g14235 +g14237 +S'papal' +p14239 +tp14240 +a(g14237 +g14239 +S'court' +p14241 +tp14242 +a(g14239 +g14241 +S'required' +p14243 +tp14244 +a(g14241 +g14243 +S'his' +p14245 +tp14246 +a(g14243 +g14245 +S'presence' +p14247 +tp14248 +a(g14245 +g14247 +S'in' +p14249 +tp14250 +a(g14247 +g14249 +S'rome.' +p14251 +tp14252 +a(g14249 +g14251 +S'this' +p14253 +tp14254 +a(g14251 +g14253 +S'portrait,' +p14255 +tp14256 +a(g14253 +g14255 +S'which' +p14257 +tp14258 +a(g14255 +g14257 +S'apparently' +p14259 +tp14260 +a(g14257 +g14259 +S'hung' +p14261 +tp14262 +a(g14259 +g14261 +S'in' +p14263 +tp14264 +a(g14261 +g14263 +S'the' +p14265 +tp14266 +a(g14263 +g14265 +S"couple's" +p14267 +tp14268 +a(g14265 +g14267 +S'home' +p14269 +tp14270 +a(g14267 +g14269 +S'in' +p14271 +tp14272 +a(g14269 +g14271 +S'florence,' +p14273 +tp14274 +a(g14271 +g14273 +S'would' +p14275 +tp14276 +a(g14273 +g14275 +S'have' +p14277 +tp14278 +a(g14275 +g14277 +S'provided' +p14279 +tp14280 +a(g14277 +g14279 +S'fiammetta' +p14281 +tp14282 +a(g14279 +g14281 +S'with' +p14283 +tp14284 +a(g14281 +g14283 +S'a' +p14285 +tp14286 +a(g14283 +g14285 +S'vivid' +p14287 +tp14288 +a(g14285 +g14287 +S'reminder' +p14289 +tp14290 +a(g14287 +g14289 +S'of' +p14291 +tp14292 +a(g14289 +g14291 +S'her' +p14293 +tp14294 +a(g14291 +g14293 +S'absent' +p14295 +tp14296 +a(g14293 +g14295 +S'husband.' +p14297 +tp14298 +a(g14295 +g14297 +S'it' +p14299 +tp14300 +a(g14297 +g14299 +S'remained' +p14301 +tp14302 +a(g14299 +g14301 +S'in' +p14303 +tp14304 +a(g14301 +g14303 +S'the' +p14305 +tp14306 +a(g14303 +g14305 +S'altoviti' +p14307 +tp14308 +a(g14305 +g14307 +S'family' +p14309 +tp14310 +a(g14307 +g14309 +S'for' +p14311 +tp14312 +a(g14309 +g14311 +S'nearly' +p14313 +tp14314 +a(g14311 +g14313 +S'three' +p14315 +tp14316 +a(g14313 +g14315 +S'hundred' +p14317 +tp14318 +a(g14315 +g14317 +S'years.' +p14319 +tp14320 +a(g14317 +g14319 +S'filippino' +p14321 +tp14322 +a(g14319 +g14321 +S'was' +p14323 +tp14324 +a(g14321 +g14323 +S'the' +p14325 +tp14326 +a(g14323 +g14325 +S'son' +p14327 +tp14328 +a(g14325 +g14327 +S'of' +p14329 +tp14330 +a(g14327 +g14329 +S'the' +p14331 +tp14332 +a(g14329 +g14331 +S'artist' +p14333 +tp14334 +a(g14331 +g14333 +S'this' +p14335 +tp14336 +a(g14333 +g14335 +S'painting' +p14337 +tp14338 +a(g14335 +g14337 +S'is' +p14339 +tp14340 +a(g14337 +g14339 +S'probably' +p14341 +tp14342 +a(g14339 +g14341 +S'a' +p14343 +tp14344 +a(g14341 +g14343 +S'very' +p14345 +tp14346 +a(g14343 +g14345 +S'early' +p14347 +tp14348 +a(g14345 +g14347 +S'work' +p14349 +tp14350 +a(g14347 +g14349 +S'by' +p14351 +tp14352 +a(g14349 +g14351 +S'filippino—some,' +p14353 +tp14354 +a(g14351 +g14353 +S'in' +p14355 +tp14356 +a(g14353 +g14355 +S'fact,' +p14357 +tp14358 +a(g14355 +g14357 +S'believe' +p14359 +tp14360 +a(g14357 +g14359 +S'it' +p14361 +tp14362 +a(g14359 +g14361 +S'to' +p14363 +tp14364 +a(g14361 +g14363 +S'be' +p14365 +tp14366 +a(g14363 +g14365 +S'his' +p14367 +tp14368 +a(g14365 +g14367 +S'earliest' +p14369 +tp14370 +a(g14367 +g14369 +S'one' +p14371 +tp14372 +a(g14369 +g14371 +S'to' +p14373 +tp14374 +a(g14371 +g14373 +S'survive.' +p14375 +tp14376 +a(g14373 +g14375 +S'at' +p14377 +tp14378 +a(g14375 +g14377 +S'this' +p14379 +tp14380 +a(g14377 +g14379 +S'point' +p14381 +tp14382 +a(g14379 +g14381 +S'in' +p14383 +tp14384 +a(g14381 +g14383 +S'his' +p14385 +tp14386 +a(g14383 +g14385 +S'career,' +p14387 +tp14388 +a(g14385 +g14387 +S'filippino' +p14389 +tp14390 +a(g14387 +g14389 +S'was' +p14391 +tp14392 +a(g14389 +g14391 +S'still' +p14393 +tp14394 +a(g14391 +g14393 +S'strongly' +p14395 +tp14396 +a(g14393 +g14395 +S'under' +p14397 +tp14398 +a(g14395 +g14397 +S"botticelli's" +p14399 +tp14400 +a(g14397 +g14399 +S'influence.' +p14401 +tp14402 +a(g14399 +g14401 +S'the' +p14403 +tp14404 +a(g14401 +g14403 +S'lyrical' +p14405 +tp14406 +a(g14403 +g14405 +S'and' +p14407 +tp14408 +a(g14405 +g14407 +S'graceful' +p14409 +tp14410 +a(g14407 +g14409 +S'line—the' +p14411 +tp14412 +a(g14409 +g14411 +S'rippling' +p14413 +tp14414 +a(g14411 +g14413 +S'cascades' +p14415 +tp14416 +a(g14413 +g14415 +S'of' +p14417 +tp14418 +a(g14415 +g14417 +S'drapery' +p14419 +tp14420 +a(g14417 +g14419 +S'and' +p14421 +tp14422 +a(g14419 +g14421 +S'the' +p14423 +tp14424 +a(g14421 +g14423 +S'fanlike' +p14425 +tp14426 +a(g14423 +g14425 +S'fall' +p14427 +tp14428 +a(g14425 +g14427 +S'of' +p14429 +tp14430 +a(g14427 +g14429 +S'cloth' +p14431 +tp14432 +a(g14429 +g14431 +S'at' +p14433 +tp14434 +a(g14431 +g14433 +S'the' +p14435 +tp14436 +a(g14433 +g14435 +S"virgin's" +p14437 +tp14438 +a(g14435 +g14437 +S'hem—show' +p14439 +tp14440 +a(g14437 +g14439 +S"filippino's" +p14441 +tp14442 +a(g14439 +g14441 +S'debt' +p14443 +tp14444 +a(g14441 +g14443 +S'to' +p14445 +tp14446 +a(g14443 +g14445 +S'his' +p14447 +tp14448 +a(g14445 +g14447 +S'teacher,' +p14449 +tp14450 +a(g14447 +g14449 +S'but' +p14451 +tp14452 +a(g14449 +g14451 +S'the' +p14453 +tp14454 +a(g14451 +g14453 +S'confident' +p14455 +tp14456 +a(g14453 +g14455 +S'colors' +p14457 +tp14458 +a(g14455 +g14457 +S'are' +p14459 +tp14460 +a(g14457 +g14459 +S'the' +p14461 +tp14462 +a(g14459 +g14461 +S"artist's" +p14463 +tp14464 +a(g14461 +g14463 +S'own.' +p14465 +tp14466 +a(g14463 +g14465 +S'as' +p14467 +tp14468 +a(g14465 +g14467 +S'his' +p14469 +tp14470 +a(g14467 +g14469 +S'style' +p14471 +tp14472 +a(g14469 +g14471 +S'matured,' +p14473 +tp14474 +a(g14471 +g14473 +S'filippino' +p14475 +tp14476 +a(g14473 +g14475 +S'moved' +p14477 +tp14478 +a(g14475 +g14477 +S'away' +p14479 +tp14480 +a(g14477 +g14479 +S'from' +p14481 +tp14482 +a(g14479 +g14481 +S'the' +p14483 +tp14484 +a(g14481 +g14483 +S'linearity' +p14485 +tp14486 +a(g14483 +g14485 +S'of' +p14487 +tp14488 +a(g14485 +g14487 +S'botticelli.' +p14489 +tp14490 +a(g14487 +g14489 +S'the' +p14491 +tp14492 +a(g14489 +g14491 +S'diaphanous' +p14493 +tp14494 +a(g14491 +g14493 +S'shimmer' +p14495 +tp14496 +a(g14493 +g14495 +S'of' +p14497 +tp14498 +a(g14495 +g14497 +S'fabric' +p14499 +tp14500 +a(g14497 +g14499 +S'and' +p14501 +tp14502 +a(g14499 +g14501 +S'sad' +p14503 +tp14504 +a(g14501 +g14503 +S'delicacy' +p14505 +tp14506 +a(g14503 +g14505 +S'of' +p14507 +tp14508 +a(g14505 +g14507 +S'his' +p14509 +tp14510 +a(g14507 +g14509 +S'faces' +p14511 +tp14512 +a(g14509 +g14511 +S'give' +p14513 +tp14514 +a(g14511 +g14513 +S'his' +p14515 +tp14516 +a(g14513 +g14515 +S'works' +p14517 +tp14518 +a(g14515 +g14517 +S'an' +p14519 +tp14520 +a(g14517 +g14519 +S'elusive' +p14521 +tp14522 +a(g14519 +g14521 +S'and' +p14523 +tp14524 +a(g14521 +g14523 +S'poetic' +p14525 +tp14526 +a(g14523 +g14525 +S'quality.' +p14527 +tp14528 +a(g14525 +g14527 +S'the' +p14529 +tp14530 +a(g14527 +g14529 +S'half-round' +p14531 +tp14532 +a(g14529 +g14531 +S'shape' +p14533 +tp14534 +a(g14531 +g14533 +S'of' +p14535 +tp14536 +a(g14533 +g14535 +S'this' +p14537 +tp14538 +a(g14535 +g14537 +S'painting,' +p14539 +tp14540 +a(g14537 +g14539 +S'called' +p14541 +tp14542 +a(g14539 +g14541 +S'a' +p14543 +tp14544 +a(g14541 +g14543 +S'lunette,' +p14545 +tp14546 +a(g14543 +g14545 +S'was' +p14547 +tp14548 +a(g14545 +g14547 +S'used' +p14549 +tp14550 +a(g14547 +g14549 +S'most' +p14551 +tp14552 +a(g14549 +g14551 +S'often' +p14553 +tp14554 +a(g14551 +g14553 +S'over' +p14555 +tp14556 +a(g14553 +g14555 +S'doorways.' +p14557 +tp14558 +a(g14555 +g14557 +S'probably' +p14559 +tp14560 +a(g14557 +g14559 +S'this' +p14561 +tp14562 +a(g14559 +g14561 +S'one' +p14563 +tp14564 +a(g14561 +g14563 +S'was' +p14565 +tp14566 +a(g14563 +g14565 +S'placed' +p14567 +tp14568 +a(g14565 +g14567 +S'over' +p14569 +tp14570 +a(g14567 +g14569 +S'the' +p14571 +tp14572 +a(g14569 +g14571 +S'entrance' +p14573 +tp14574 +a(g14571 +g14573 +S'to' +p14575 +tp14576 +a(g14573 +g14575 +S'a' +p14577 +tp14578 +a(g14575 +g14577 +S'private' +p14579 +tp14580 +a(g14577 +g14579 +S'chapel' +p14581 +tp14582 +a(g14579 +g14581 +S'or' +p14583 +tp14584 +a(g14581 +g14583 +S'sacristy,' +p14585 +tp14586 +a(g14583 +g14585 +S'but' +p14587 +tp14588 +a(g14585 +g14587 +S'its' +p14589 +tp14590 +a(g14587 +g14589 +S'original' +p14591 +tp14592 +a(g14589 +g14591 +S'location' +p14593 +tp14594 +a(g14591 +g14593 +S'remains' +p14595 +tp14596 +a(g14593 +g14595 +S'unknown.' +p14597 +tp14598 +a(g14595 +g14597 +S'famed' +p14599 +tp14600 +a(g14597 +g14599 +S'as' +p14601 +tp14602 +a(g14599 +g14601 +S'a' +p14603 +tp14604 +a(g14601 +g14603 +S'decorator,' +p14605 +tp14606 +a(g14603 +g14605 +S'tiepolo' +p14607 +tp14608 +a(g14605 +g14607 +S'made' +p14609 +tp14610 +a(g14607 +g14609 +S'this' +p14611 +tp14612 +a(g14609 +g14611 +S'small' +p14613 +tp14614 +a(g14611 +g14613 +S'sketch' +p14615 +tp14616 +a(g14613 +g14615 +S'as' +p14617 +tp14618 +a(g14615 +g14617 +S'his' +p14619 +tp14620 +a(g14617 +g14619 +S'model' +p14621 +tp14622 +a(g14619 +g14621 +S'for' +p14623 +tp14624 +a(g14621 +g14623 +S'a' +p14625 +tp14626 +a(g14623 +g14625 +S'vast' +p14627 +tp14628 +a(g14625 +g14627 +S'ceiling' +p14629 +tp14630 +a(g14627 +g14629 +S'fresco' +p14631 +tp14632 +a(g14629 +g14631 +S'in' +p14633 +tp14634 +a(g14631 +g14633 +S'the' +p14635 +tp14636 +a(g14633 +g14635 +S'throne' +p14637 +tp14638 +a(g14635 +g14637 +S'room' +p14639 +tp14640 +a(g14637 +g14639 +S'of' +p14641 +tp14642 +a(g14639 +g14641 +S'the' +p14643 +tp14644 +a(g14641 +g14643 +S'royal' +p14645 +tp14646 +a(g14643 +g14645 +S'palace' +p14647 +tp14648 +a(g14645 +g14647 +S'of' +p14649 +tp14650 +a(g14647 +g14649 +S'madrid,' +p14651 +tp14652 +a(g14649 +g14651 +S'a' +p14653 +tp14654 +a(g14651 +g14653 +S'project' +p14655 +tp14656 +a(g14653 +g14655 +S'that' +p14657 +tp14658 +a(g14655 +g14657 +S'was' +p14659 +tp14660 +a(g14657 +g14659 +S'the' +p14661 +tp14662 +a(g14659 +g14661 +S'climax' +p14663 +tp14664 +a(g14661 +g14663 +S'of' +p14665 +tp14666 +a(g14663 +g14665 +S'his' +p14667 +tp14668 +a(g14665 +g14667 +S'illustrious' +p14669 +tp14670 +a(g14667 +g14669 +S'career.' +p14671 +tp14672 +a(g14669 +g14671 +S'taking' +p14673 +tp14674 +a(g14671 +g14673 +S'its' +p14675 +tp14676 +a(g14673 +g14675 +S'cue' +p14677 +tp14678 +a(g14675 +g14677 +S'from' +p14679 +tp14680 +a(g14677 +g14679 +S'the' +p14681 +tp14682 +a(g14679 +g14681 +S"room's" +p14683 +tp14684 +a(g14681 +g14683 +S'function,' +p14685 +tp14686 +a(g14683 +g14685 +S"tiepolo's" +p14687 +tp14688 +a(g14685 +g14687 +S'design' +p14689 +tp14690 +a(g14687 +g14689 +S'has' +p14691 +tp14692 +a(g14689 +g14691 +S'as' +p14693 +tp14694 +a(g14691 +g14693 +S'its' +p14695 +tp14696 +a(g14693 +g14695 +S'central' +p14697 +tp14698 +a(g14695 +g14697 +S'feature' +p14699 +tp14700 +a(g14697 +g14699 +S'the' +p14701 +tp14702 +a(g14699 +g14701 +S'allegorical' +p14703 +tp14704 +a(g14701 +g14703 +S'figure' +p14705 +tp14706 +a(g14703 +g14705 +S'of' +p14707 +tp14708 +a(g14705 +g14707 +S'spain' +p14709 +tp14710 +a(g14707 +g14709 +S'enthroned' +p14711 +tp14712 +a(g14709 +g14711 +S'and' +p14713 +tp14714 +a(g14711 +g14713 +S'flanked' +p14715 +tp14716 +a(g14713 +g14715 +S'by' +p14717 +tp14718 +a(g14715 +g14717 +S'herculean' +p14719 +tp14720 +a(g14717 +g14719 +S'statues.' +p14721 +tp14722 +a(g14719 +g14721 +S'just' +p14723 +tp14724 +a(g14721 +g14723 +S'above' +p14725 +tp14726 +a(g14723 +g14725 +S'is' +p14727 +tp14728 +a(g14725 +g14727 +S'the' +p14729 +tp14730 +a(g14727 +g14729 +S'trumpeting' +p14731 +tp14732 +a(g14729 +g14731 +S'figure' +p14733 +tp14734 +a(g14731 +g14733 +S'of' +p14735 +tp14736 +a(g14733 +g14735 +S'fame.' +p14737 +tp14738 +a(g14735 +g14737 +S'the' +p14739 +tp14740 +a(g14737 +g14739 +S'borders' +p14741 +tp14742 +a(g14739 +g14741 +S'are' +p14743 +tp14744 +a(g14741 +g14743 +S'packed' +p14745 +tp14746 +a(g14743 +g14745 +S'with' +p14747 +tp14748 +a(g14745 +g14747 +S'lively' +p14749 +tp14750 +a(g14747 +g14749 +S'figures' +p14751 +tp14752 +a(g14749 +g14751 +S'representing' +p14753 +tp14754 +a(g14751 +g14753 +S'the' +p14755 +tp14756 +a(g14753 +g14755 +S'provinces' +p14757 +tp14758 +a(g14755 +g14757 +S'of' +p14759 +tp14760 +a(g14757 +g14759 +S'spain' +p14761 +tp14762 +a(g14759 +g14761 +S'and' +p14763 +tp14764 +a(g14761 +g14763 +S'the' +p14765 +tp14766 +a(g14763 +g14765 +S'continents' +p14767 +tp14768 +a(g14765 +g14767 +S'where' +p14769 +tp14770 +a(g14767 +g14769 +S'she' +p14771 +tp14772 +a(g14769 +g14771 +S'held' +p14773 +tp14774 +a(g14771 +g14773 +S'colonies.' +p14775 +tp14776 +a(g14773 +g14775 +S'at' +p14777 +tp14778 +a(g14775 +g14777 +S'the' +p14779 +tp14780 +a(g14777 +g14779 +S'upper' +p14781 +tp14782 +a(g14779 +g14781 +S'left,' +p14783 +tp14784 +a(g14781 +g14783 +S'christopher' +p14785 +tp14786 +a(g14783 +g14785 +S'columbus' +p14787 +tp14788 +a(g14785 +g14787 +S'stands' +p14789 +tp14790 +a(g14787 +g14789 +S'with' +p14791 +tp14792 +a(g14789 +g14791 +S'outstretched' +p14793 +tp14794 +a(g14791 +g14793 +S'arms' +p14795 +tp14796 +a(g14793 +g14795 +S'on' +p14797 +tp14798 +a(g14795 +g14797 +S'the' +p14799 +tp14800 +a(g14797 +g14799 +S'deck' +p14801 +tp14802 +a(g14799 +g14801 +S'of' +p14803 +tp14804 +a(g14801 +g14803 +S'his' +p14805 +tp14806 +a(g14803 +g14805 +S'ship.' +p14807 +tp14808 +a(g14805 +g14807 +S'nearby' +p14809 +tp14810 +a(g14807 +g14809 +S'are' +p14811 +tp14812 +a(g14809 +g14811 +S'neptune,' +p14813 +tp14814 +a(g14811 +g14813 +S'god' +p14815 +tp14816 +a(g14813 +g14815 +S'of' +p14817 +tp14818 +a(g14815 +g14817 +S'the' +p14819 +tp14820 +a(g14817 +g14819 +S'sea,' +p14821 +tp14822 +a(g14819 +g14821 +S'who' +p14823 +tp14824 +a(g14821 +g14823 +S'guides' +p14825 +tp14826 +a(g14823 +g14825 +S'the' +p14827 +tp14828 +a(g14825 +g14827 +S'expedition,' +p14829 +tp14830 +a(g14827 +g14829 +S'and' +p14831 +tp14832 +a(g14829 +g14831 +S'an' +p14833 +tp14834 +a(g14831 +g14833 +S'american' +p14835 +tp14836 +a(g14833 +g14835 +S'indian' +p14837 +tp14838 +a(g14835 +g14837 +S'in' +p14839 +tp14840 +a(g14837 +g14839 +S'a' +p14841 +tp14842 +a(g14839 +g14841 +S'feathered' +p14843 +tp14844 +a(g14841 +g14843 +S'headdress.' +p14845 +tp14846 +a(g14843 +g14845 +S'one' +p14847 +tp14848 +a(g14845 +g14847 +S'must' +p14849 +tp14850 +a(g14847 +g14849 +S'think' +p14851 +tp14852 +a(g14849 +g14851 +S'of' +p14853 +tp14854 +a(g14851 +g14853 +S'this' +p14855 +tp14856 +a(g14853 +g14855 +S'as' +p14857 +tp14858 +a(g14855 +g14857 +S'a' +p14859 +tp14860 +a(g14857 +g14859 +S'design' +p14861 +tp14862 +a(g14859 +g14861 +S'to' +p14863 +tp14864 +a(g14861 +g14863 +S'be' +p14865 +tp14866 +a(g14863 +g14865 +S'seen' +p14867 +tp14868 +a(g14865 +g14867 +S'overhead' +p14869 +tp14870 +a(g14867 +g14869 +S'in' +p14871 +tp14872 +a(g14869 +g14871 +S'a' +p14873 +tp14874 +a(g14871 +g14873 +S'large,' +p14875 +tp14876 +a(g14873 +g14875 +S'high-ceilinged' +p14877 +tp14878 +a(g14875 +g14877 +S'room.' +p14879 +tp14880 +a(g14877 +g14879 +S'with' +p14881 +tp14882 +a(g14879 +g14881 +S'his' +p14883 +tp14884 +a(g14881 +g14883 +S'legendary' +p14885 +tp14886 +a(g14883 +g14885 +S'facility,' +p14887 +tp14888 +a(g14885 +g14887 +S'tiepolo' +p14889 +tp14890 +a(g14887 +g14889 +S'resolved' +p14891 +tp14892 +a(g14889 +g14891 +S'the' +p14893 +tp14894 +a(g14891 +g14893 +S'difficulties' +p14895 +tp14896 +a(g14893 +g14895 +S'of' +p14897 +tp14898 +a(g14895 +g14897 +S'foreshortening' +p14899 +tp14900 +a(g14897 +g14899 +S'forms' +p14901 +tp14902 +a(g14899 +g14901 +S'seen' +p14903 +tp14904 +a(g14901 +g14903 +S'from' +p14905 +tp14906 +a(g14903 +g14905 +S'sharply' +p14907 +tp14908 +a(g14905 +g14907 +S'below,' +p14909 +tp14910 +a(g14907 +g14909 +S'of' +p14911 +tp14912 +a(g14909 +g14911 +S'deploying' +p14913 +tp14914 +a(g14911 +g14913 +S'the' +p14915 +tp14916 +a(g14913 +g14915 +S'figures' +p14917 +tp14918 +a(g14915 +g14917 +S'in' +p14919 +tp14920 +a(g14917 +g14919 +S'coherent' +p14921 +tp14922 +a(g14919 +g14921 +S'groups,' +p14923 +tp14924 +a(g14921 +g14923 +S'and,' +p14925 +tp14926 +a(g14923 +g14925 +S'in' +p14927 +tp14928 +a(g14925 +g14927 +S'turn,' +p14929 +tp14930 +a(g14927 +g14929 +S'incorporating' +p14931 +tp14932 +a(g14929 +g14931 +S'the' +p14933 +tp14934 +a(g14931 +g14933 +S'groups' +p14935 +tp14936 +a(g14933 +g14935 +S'into' +p14937 +tp14938 +a(g14935 +g14937 +S'an' +p14939 +tp14940 +a(g14937 +g14939 +S'effective' +p14941 +tp14942 +a(g14939 +g14941 +S'overall' +p14943 +tp14944 +a(g14941 +g14943 +S'design.' +p14945 +tp14946 +a(g14943 +g14945 +S'the' +p14947 +tp14948 +a(g14945 +g14947 +S'result' +p14949 +tp14950 +a(g14947 +g14949 +S'is' +p14951 +tp14952 +a(g14949 +g14951 +S'an' +p14953 +tp14954 +a(g14951 +g14953 +S'airy' +p14955 +tp14956 +a(g14953 +g14955 +S'sweep' +p14957 +tp14958 +a(g14955 +g14957 +S'that' +p14959 +tp14960 +a(g14957 +g14959 +S'seems' +p14961 +tp14962 +a(g14959 +g14961 +S'to' +p14963 +tp14964 +a(g14961 +g14963 +S'open' +p14965 +tp14966 +a(g14963 +g14965 +S'directly' +p14967 +tp14968 +a(g14965 +g14967 +S'to' +p14969 +tp14970 +a(g14967 +g14969 +S'the' +p14971 +tp14972 +a(g14969 +g14971 +S'heavens' +p14973 +tp14974 +a(g14971 +g14973 +S'with' +p14975 +tp14976 +a(g14973 +g14975 +S'all' +p14977 +tp14978 +a(g14975 +g14977 +S'its' +p14979 +tp14980 +a(g14977 +g14979 +S'buoyant' +p14981 +tp14982 +a(g14979 +g14981 +S'and' +p14983 +tp14984 +a(g14981 +g14983 +S'extravagant' +p14985 +tp14986 +a(g14983 +g14985 +S'population' +p14987 +tp14988 +a(g14985 +g14987 +S'paying' +p14989 +tp14990 +a(g14987 +g14989 +S'homage' +p14991 +tp14992 +a(g14989 +g14991 +S'to' +p14993 +tp14994 +a(g14991 +g14993 +S'spain.' +p14995 +tp14996 +a(g14993 +g14995 +S'one' +p14997 +tp14998 +a(g14995 +g14997 +S'of' +p14999 +tp15000 +a(g14997 +g14999 +S'domenico' +p15001 +tp15002 +a(g14999 +g15001 +S"veneziano's" +p15003 +tp15004 +a(g15001 +g15003 +S'major' +p15005 +tp15006 +a(g15003 +g15005 +S'works' +p15007 +tp15008 +a(g15005 +g15007 +S'is' +p15009 +tp15010 +a(g15007 +g15009 +S'an' +p15011 +tp15012 +a(g15009 +g15011 +S'altarpiece' +p15013 +tp15014 +a(g15011 +g15013 +S'that' +p15015 +tp15016 +a(g15013 +g15015 +S'he' +p15017 +tp15018 +a(g15015 +g15017 +S'painted' +p15019 +tp15020 +a(g15017 +g15019 +S'about' +p15021 +tp15022 +a(g15019 +g15021 +S'1445' +p15023 +tp15024 +a(g15021 +g15023 +S'for' +p15025 +tp15026 +a(g15023 +g15025 +S'the' +p15027 +tp15028 +a(g15025 +g15027 +S'church' +p15029 +tp15030 +a(g15027 +g15029 +S'of' +p15031 +tp15032 +a(g15029 +g15031 +S'santa' +p15033 +tp15034 +a(g15031 +g15033 +S'lucia' +p15035 +tp15036 +a(g15033 +g15035 +S'dei' +p15037 +tp15038 +a(g15035 +g15037 +S'magnoli,' +p15039 +tp15040 +a(g15037 +g15039 +S'in' +p15041 +tp15042 +a(g15039 +g15041 +S'florence.' +p15043 +tp15044 +a(g15041 +g15043 +S'the' +p15045 +tp15046 +a(g15043 +g15045 +S'incident' +p15047 +tp15048 +a(g15045 +g15047 +S'illustrated' +p15049 +tp15050 +a(g15047 +g15049 +S'in' +p15051 +tp15052 +a(g15049 +g15051 +S'this' +p15053 +tp15054 +a(g15051 +g15053 +S'small' +p15055 +tp15056 +a(g15053 +g15055 +S'panel' +p15057 +tp15058 +a(g15055 +g15057 +S'from' +p15059 +tp15060 +a(g15057 +g15059 +S'the' +p15061 +tp15062 +a(g15059 +g15061 +S'base' +p15063 +tp15064 +a(g15061 +g15063 +S'of' +p15065 +tp15066 +a(g15063 +g15065 +S'the' +p15067 +tp15068 +a(g15065 +g15067 +S'altarpiece' +p15069 +tp15070 +a(g15067 +g15069 +S'is' +p15071 +tp15072 +a(g15069 +g15071 +S"john's" +p15073 +tp15074 +a(g15071 +g15073 +S'act' +p15075 +tp15076 +a(g15073 +g15075 +S'of' +p15077 +tp15078 +a(g15075 +g15077 +S'exchanging' +p15079 +tp15080 +a(g15077 +g15079 +S'his' +p15081 +tp15082 +a(g15079 +g15081 +S'rich,' +p15083 +tp15084 +a(g15081 +g15083 +S'worldly' +p15085 +tp15086 +a(g15083 +g15085 +S'clothes' +p15087 +tp15088 +a(g15085 +g15087 +S'for' +p15089 +tp15090 +a(g15087 +g15089 +S'a' +p15091 +tp15092 +a(g15089 +g15091 +S'rough,' +p15093 +tp15094 +a(g15091 +g15093 +S'camel–hair' +p15095 +tp15096 +a(g15093 +g15095 +S'coat.' +p15097 +tp15098 +a(g15095 +g15097 +S'in' +p15099 +tp15100 +a(g15097 +g15099 +S'the' +p15101 +tp15102 +a(g15099 +g15101 +S'few' +p15103 +tp15104 +a(g15101 +g15103 +S'known' +p15105 +tp15106 +a(g15103 +g15105 +S'representations' +p15107 +tp15108 +a(g15105 +g15107 +S'of' +p15109 +tp15110 +a(g15107 +g15109 +S'john' +p15111 +tp15112 +a(g15109 +g15111 +S'in' +p15113 +tp15114 +a(g15111 +g15113 +S'the' +p15115 +tp15116 +a(g15113 +g15115 +S'wilderness' +p15117 +tp15118 +a(g15115 +g15117 +S'that' +p15119 +tp15120 +a(g15117 +g15119 +S'preceded' +p15121 +tp15122 +a(g15119 +g15121 +S"domenico's" +p15123 +tp15124 +a(g15121 +g15123 +S'version,' +p15125 +tp15126 +a(g15123 +g15125 +S'the' +p15127 +tp15128 +a(g15125 +g15127 +S'emphasis' +p15129 +tp15130 +a(g15127 +g15129 +S'was' +p15131 +tp15132 +a(g15129 +g15131 +S'placed' +p15133 +tp15134 +a(g15131 +g15133 +S'either' +p15135 +tp15136 +a(g15133 +g15135 +S'on' +p15137 +tp15138 +a(g15135 +g15137 +S'the' +p15139 +tp15140 +a(g15137 +g15139 +S'divine' +p15141 +tp15142 +a(g15139 +g15141 +S'origin' +p15143 +tp15144 +a(g15141 +g15143 +S'of' +p15145 +tp15146 +a(g15143 +g15145 +S'the' +p15147 +tp15148 +a(g15145 +g15147 +S"saint's" +p15149 +tp15150 +a(g15147 +g15149 +S'animal' +p15151 +tp15152 +a(g15149 +g15151 +S'skin' +p15153 +tp15154 +a(g15151 +g15153 +S'or' +p15155 +tp15156 +a(g15153 +g15155 +S'on' +p15157 +tp15158 +a(g15155 +g15157 +S'his' +p15159 +tp15160 +a(g15157 +g15159 +S'preaching.' +p15161 +tp15162 +a(g15159 +g15161 +S'domenico,' +p15163 +tp15164 +a(g15161 +g15163 +S'however,' +p15165 +tp15166 +a(g15163 +g15165 +S'shifted' +p15167 +tp15168 +a(g15165 +g15167 +S'attention' +p15169 +tp15170 +a(g15167 +g15169 +S'from' +p15171 +tp15172 +a(g15169 +g15171 +S'mere' +p15173 +tp15174 +a(g15171 +g15173 +S'narration' +p15175 +tp15176 +a(g15173 +g15175 +S'to' +p15177 +tp15178 +a(g15175 +g15177 +S'the' +p15179 +tp15180 +a(g15177 +g15179 +S'spiritual' +p15181 +tp15182 +a(g15179 +g15181 +S'significance' +p15183 +tp15184 +a(g15181 +g15183 +S'of' +p15185 +tp15186 +a(g15183 +g15185 +S"john's" +p15187 +tp15188 +a(g15185 +g15187 +S'decision' +p15189 +tp15190 +a(g15187 +g15189 +S'to' +p15191 +tp15192 +a(g15189 +g15191 +S'forsake' +p15193 +tp15194 +a(g15191 +g15193 +S'luxury' +p15195 +tp15196 +a(g15193 +g15195 +S'in' +p15197 +tp15198 +a(g15195 +g15197 +S'favor' +p15199 +tp15200 +a(g15197 +g15199 +S'of' +p15201 +tp15202 +a(g15199 +g15201 +S'a' +p15203 +tp15204 +a(g15201 +g15203 +S'life' +p15205 +tp15206 +a(g15203 +g15205 +S'of' +p15207 +tp15208 +a(g15205 +g15207 +S'piety.' +p15209 +tp15210 +a(g15207 +g15209 +S'rather' +p15211 +tp15212 +a(g15209 +g15211 +S'than' +p15213 +tp15214 +a(g15211 +g15213 +S'showing' +p15215 +tp15216 +a(g15213 +g15215 +S'the' +p15217 +tp15218 +a(g15215 +g15217 +S'saint' +p15219 +tp15220 +a(g15217 +g15219 +S'in' +p15221 +tp15222 +a(g15219 +g15221 +S'the' +p15223 +tp15224 +a(g15221 +g15223 +S'usual' +p15225 +tp15226 +a(g15223 +g15225 +S'manner,' +p15227 +tp15228 +a(g15225 +g15227 +S'as' +p15229 +tp15230 +a(g15227 +g15229 +S'a' +p15231 +tp15232 +a(g15229 +g15231 +S'mature,' +p15233 +tp15234 +a(g15231 +g15233 +S'bearded' +p15235 +tp15236 +a(g15233 +g15235 +S'hermit,' +p15237 +tp15238 +a(g15235 +g15237 +S'domenico' +p15239 +tp15240 +a(g15237 +g15239 +S'painted' +p15241 +tp15242 +a(g15239 +g15241 +S'a' +p15243 +tp15244 +a(g15241 +g15243 +S'youthful' +p15245 +tp15246 +a(g15243 +g15245 +S'figure.' +p15247 +tp15248 +a(g15245 +g15247 +S'clearly' +p15249 +tp15250 +a(g15247 +g15249 +S'classical' +p15251 +tp15252 +a(g15249 +g15251 +S'in' +p15253 +tp15254 +a(g15251 +g15253 +S'appearance,' +p15255 +tp15256 +a(g15253 +g15255 +S'his' +p15257 +tp15258 +a(g15255 +g15257 +S'saint' +p15259 +tp15260 +a(g15257 +g15259 +S'is' +p15261 +tp15262 +a(g15259 +g15261 +S'one' +p15263 +tp15264 +a(g15261 +g15263 +S'of' +p15265 +tp15266 +a(g15263 +g15265 +S'the' +p15267 +tp15268 +a(g15265 +g15267 +S'earliest' +p15269 +tp15270 +a(g15267 +g15269 +S'embodiments' +p15271 +tp15272 +a(g15269 +g15271 +S'of' +p15273 +tp15274 +a(g15271 +g15273 +S'the' +p15275 +tp15276 +a(g15273 +g15275 +S'renaissance' +p15277 +tp15278 +a(g15275 +g15277 +S'preoccupation' +p15279 +tp15280 +a(g15277 +g15279 +S'with' +p15281 +tp15282 +a(g15279 +g15281 +S'antique' +p15283 +tp15284 +a(g15281 +g15283 +S'models.' +p15285 +tp15286 +a(g15283 +g15285 +S'however,' +p15287 +tp15288 +a(g15285 +g15287 +S'a' +p15289 +tp15290 +a(g15287 +g15289 +S'fusion' +p15291 +tp15292 +a(g15289 +g15291 +S'of' +p15293 +tp15294 +a(g15291 +g15293 +S'pagan' +p15295 +tp15296 +a(g15293 +g15295 +S'and' +p15297 +tp15298 +a(g15295 +g15297 +S'christian' +p15299 +tp15300 +a(g15297 +g15299 +S'ideas' +p15301 +tp15302 +a(g15299 +g15301 +S'is' +p15303 +tp15304 +a(g15301 +g15303 +S'suggested;' +p15305 +tp15306 +a(g15303 +g15305 +S'the' +p15307 +tp15308 +a(g15305 +g15307 +S'grecian' +p15309 +tp15310 +a(g15307 +g15309 +S'type' +p15311 +tp15312 +a(g15309 +g15311 +S'is' +p15313 +tp15314 +a(g15311 +g15313 +S'transformed' +p15315 +tp15316 +a(g15313 +g15315 +S'into' +p15317 +tp15318 +a(g15315 +g15317 +S'a' +p15319 +tp15320 +a(g15317 +g15319 +S'religious' +p15321 +tp15322 +a(g15319 +g15321 +S'being' +p15323 +tp15324 +a(g15321 +g15323 +S'by' +p15325 +tp15326 +a(g15323 +g15325 +S'the' +p15327 +tp15328 +a(g15325 +g15327 +S'golden' +p15329 +tp15330 +a(g15327 +g15329 +S'halo' +p15331 +tp15332 +a(g15329 +g15331 +S'above' +p15333 +tp15334 +a(g15331 +g15333 +S'his' +p15335 +tp15336 +a(g15333 +g15335 +S'head.' +p15337 +tp15338 +a(g15335 +g15337 +S'another' +p15339 +tp15340 +a(g15337 +g15339 +S'innovative' +p15341 +tp15342 +a(g15339 +g15341 +S'combination' +p15343 +tp15344 +a(g15341 +g15343 +S'of' +p15345 +tp15346 +a(g15343 +g15345 +S'elements' +p15347 +tp15348 +a(g15345 +g15347 +S'exists' +p15349 +tp15350 +a(g15347 +g15349 +S'in' +p15351 +tp15352 +a(g15349 +g15351 +S'the' +p15353 +tp15354 +a(g15351 +g15353 +S'arrangement' +p15355 +tp15356 +a(g15353 +g15355 +S'of' +p15357 +tp15358 +a(g15355 +g15357 +S'this' +p15359 +tp15360 +a(g15357 +g15359 +S'male' +p15361 +tp15362 +a(g15359 +g15361 +S'nude' +p15363 +tp15364 +a(g15361 +g15363 +S'in' +p15365 +tp15366 +a(g15363 +g15365 +S'a' +p15367 +tp15368 +a(g15365 +g15367 +S'landscape' +p15369 +tp15370 +a(g15367 +g15369 +S'that' +p15371 +tp15372 +a(g15369 +g15371 +S'retains' +p15373 +tp15374 +a(g15371 +g15373 +S'artistic' +p15375 +tp15376 +a(g15373 +g15375 +S'features' +p15377 +tp15378 +a(g15375 +g15377 +S'from' +p15379 +tp15380 +a(g15377 +g15379 +S'the' +p15381 +tp15382 +a(g15379 +g15381 +S'high' +p15383 +tp15384 +a(g15381 +g15383 +S'gothic' +p15385 +tp15386 +a(g15383 +g15385 +S'era' +p15387 +tp15388 +a(g15385 +g15387 +S'of' +p15389 +tp15390 +a(g15387 +g15389 +S'the' +p15391 +tp15392 +a(g15389 +g15391 +S'late' +p15393 +tp15394 +a(g15391 +g15393 +S'middle' +p15395 +tp15396 +a(g15393 +g15395 +S'ages.' +p15397 +tp15398 +a(g15395 +g15397 +S'symbolic' +p15399 +tp15400 +a(g15397 +g15399 +S'rather' +p15401 +tp15402 +a(g15399 +g15401 +S'than' +p15403 +tp15404 +a(g15401 +g15403 +S'realistic,' +p15405 +tp15406 +a(g15403 +g15405 +S'the' +p15407 +tp15408 +a(g15405 +g15407 +S'rugged' +p15409 +tp15410 +a(g15407 +g15409 +S'mountains' +p15411 +tp15412 +a(g15409 +g15411 +S'enliven' +p15413 +tp15414 +a(g15411 +g15413 +S'the' +p15415 +tp15416 +a(g15413 +g15415 +S'drama' +p15417 +tp15418 +a(g15415 +g15417 +S'of' +p15419 +tp15420 +a(g15417 +g15419 +S"john's" +p15421 +tp15422 +a(g15419 +g15421 +S'decision' +p15423 +tp15424 +a(g15421 +g15423 +S'by' +p15425 +tp15426 +a(g15423 +g15425 +S'emphasizing' +p15427 +tp15428 +a(g15425 +g15427 +S'the' +p15429 +tp15430 +a(g15427 +g15429 +S'desolate' +p15431 +tp15432 +a(g15429 +g15431 +S'nature' +p15433 +tp15434 +a(g15431 +g15433 +S'of' +p15435 +tp15436 +a(g15433 +g15435 +S'his' +p15437 +tp15438 +a(g15435 +g15437 +S'chosen' +p15439 +tp15440 +a(g15437 +g15439 +S'environment.' +p15441 +tp15442 +a(g15439 +g15441 +S'in' +p15443 +tp15444 +a(g15441 +g15443 +S'act' +p15445 +tp15446 +a(g15443 +g15445 +S'i,' +p15447 +tp15448 +a(g15445 +g15447 +S'cephalus' +p15449 +tp15450 +a(g15447 +g15449 +S'had' +p15451 +tp15452 +a(g15449 +g15451 +S'tested' +p15453 +tp15454 +a(g15451 +g15453 +S'his' +p15455 +tp15456 +a(g15453 +g15455 +S"wife's" +p15457 +tp15458 +a(g15455 +g15457 +S'fidelity' +p15459 +tp15460 +a(g15457 +g15459 +S'by' +p15461 +tp15462 +a(g15459 +g15461 +S'appearing' +p15463 +tp15464 +a(g15461 +g15463 +S'in' +p15465 +tp15466 +a(g15463 +g15465 +S'disguise' +p15467 +tp15468 +a(g15465 +g15467 +S'and' +p15469 +tp15470 +a(g15467 +g15469 +S'bribing' +p15471 +tp15472 +a(g15469 +g15471 +S'her' +p15473 +tp15474 +a(g15471 +g15473 +S'with' +p15475 +tp15476 +a(g15473 +g15475 +S'gifts.' +p15477 +tp15478 +a(g15475 +g15477 +S'recognizing' +p15479 +tp15480 +a(g15477 +g15479 +S'her' +p15481 +tp15482 +a(g15479 +g15481 +S'would-be' +p15483 +tp15484 +a(g15481 +g15483 +S'seducer' +p15485 +tp15486 +a(g15483 +g15485 +S'as' +p15487 +tp15488 +a(g15485 +g15487 +S'her' +p15489 +tp15490 +a(g15487 +g15489 +S'husband,' +p15491 +tp15492 +a(g15489 +g15491 +S'procris' +p15493 +tp15494 +a(g15491 +g15493 +S'fled' +p15495 +tp15496 +a(g15493 +g15495 +S'into' +p15497 +tp15498 +a(g15495 +g15497 +S'the' +p15499 +tp15500 +a(g15497 +g15499 +S'wilderness.' +p15501 +tp15502 +a(g15499 +g15501 +S'the' +p15503 +tp15504 +a(g15501 +g15503 +S'first' +p15505 +tp15506 +a(g15503 +g15505 +S'scene' +p15507 +tp15508 +a(g15505 +g15507 +S'in' +p15509 +tp15510 +a(g15507 +g15509 +S"luini's" +p15511 +tp15512 +a(g15509 +g15511 +S'surviving' +p15513 +tp15514 +a(g15511 +g15513 +S'frescoes' +p15515 +tp15516 +a(g15513 +g15515 +S'is' +p15517 +tp15518 +a(g15515 +g15517 +S'an' +p15519 +tp15520 +a(g15517 +g15519 +S'episode' +p15521 +tp15522 +a(g15519 +g15521 +S'from' +p15523 +tp15524 +a(g15521 +g15523 +S'act' +p15525 +tp15526 +a(g15523 +g15525 +S'ii' +p15527 +tp15528 +a(g15525 +g15527 +S'of' +p15529 +tp15530 +a(g15527 +g15529 +S'niccolò' +p15531 +tp15532 +a(g15529 +g15531 +S'da' +p15533 +tp15534 +a(g15531 +g15533 +S"correggio's" +p15535 +tp15536 +a(g15533 +g15535 +S'play.' +p15537 +tp15538 +a(g15535 +g15537 +S'on' +p15539 +tp15540 +a(g15537 +g15539 +S'bended' +p15541 +tp15542 +a(g15539 +g15541 +S'knee,' +p15543 +tp15544 +a(g15541 +g15543 +S'procris' +p15545 +tp15546 +a(g15543 +g15545 +S'implores' +p15547 +tp15548 +a(g15545 +g15547 +S'the' +p15549 +tp15550 +a(g15547 +g15549 +S'help' +p15551 +tp15552 +a(g15549 +g15551 +S'of' +p15553 +tp15554 +a(g15551 +g15553 +S'the' +p15555 +tp15556 +a(g15553 +g15555 +S'gods.' +p15557 +tp15558 +a(g15555 +g15557 +S'hastening' +p15559 +tp15560 +a(g15557 +g15559 +S'down' +p15561 +tp15562 +a(g15559 +g15561 +S'a' +p15563 +tp15564 +a(g15561 +g15563 +S'winding' +p15565 +tp15566 +a(g15563 +g15565 +S'path' +p15567 +tp15568 +a(g15565 +g15567 +S'to' +p15569 +tp15570 +a(g15567 +g15569 +S'answer' +p15571 +tp15572 +a(g15569 +g15571 +S'her' +p15573 +tp15574 +a(g15571 +g15573 +S'prayer' +p15575 +tp15576 +a(g15573 +g15575 +S'is' +p15577 +tp15578 +a(g15575 +g15577 +S'diana,' +p15579 +tp15580 +a(g15577 +g15579 +S'the' +p15581 +tp15582 +a(g15579 +g15581 +S'goddess' +p15583 +tp15584 +a(g15581 +g15583 +S'of' +p15585 +tp15586 +a(g15583 +g15585 +S'chastity' +p15587 +tp15588 +a(g15585 +g15587 +S'and' +p15589 +tp15590 +a(g15587 +g15589 +S'the' +p15591 +tp15592 +a(g15589 +g15591 +S'hunt.' +p15593 +tp15594 +a(g15591 +g15593 +S'diana' +p15595 +tp15596 +a(g15593 +g15595 +S'accepts' +p15597 +tp15598 +a(g15595 +g15597 +S'the' +p15599 +tp15600 +a(g15597 +g15599 +S'princess' +p15601 +tp15602 +a(g15599 +g15601 +S'as' +p15603 +tp15604 +a(g15601 +g15603 +S'a' +p15605 +tp15606 +a(g15603 +g15605 +S'follower,' +p15607 +tp15608 +a(g15605 +g15607 +S'clothes' +p15609 +tp15610 +a(g15607 +g15609 +S'her' +p15611 +tp15612 +a(g15609 +g15611 +S'as' +p15613 +tp15614 +a(g15611 +g15613 +S'a' +p15615 +tp15616 +a(g15613 +g15615 +S'huntress,' +p15617 +tp15618 +a(g15615 +g15617 +S'and' +p15619 +tp15620 +a(g15617 +g15619 +S'gives' +p15621 +tp15622 +a(g15619 +g15621 +S'her' +p15623 +tp15624 +a(g15621 +g15623 +S'weapons.' +p15625 +tp15626 +a(g15623 +g15625 +S'by' +p15627 +tp15628 +a(g15625 +g15627 +S'portraying' +p15629 +tp15630 +a(g15627 +g15629 +S'procris' +p15631 +tp15632 +a(g15629 +g15631 +S'already' +p15633 +tp15634 +a(g15631 +g15633 +S'dressed' +p15635 +tp15636 +a(g15633 +g15635 +S'as' +p15637 +tp15638 +a(g15635 +g15637 +S'a' +p15639 +tp15640 +a(g15637 +g15639 +S'virgin' +p15641 +tp15642 +a(g15639 +g15641 +S'huntress' +p15643 +tp15644 +a(g15641 +g15643 +S'with' +p15645 +tp15646 +a(g15643 +g15645 +S'bow' +p15647 +tp15648 +a(g15645 +g15647 +S'and' +p15649 +tp15650 +a(g15647 +g15649 +S'arrows,' +p15651 +tp15652 +a(g15649 +g15651 +S'luini' +p15653 +tp15654 +a(g15651 +g15653 +S'condensed' +p15655 +tp15656 +a(g15653 +g15655 +S'time' +p15657 +tp15658 +a(g15655 +g15657 +S'to' +p15659 +tp15660 +a(g15657 +g15659 +S'clarify' +p15661 +tp15662 +a(g15659 +g15661 +S'the' +p15663 +tp15664 +a(g15661 +g15663 +S'narrative.' +p15665 +tp15666 +a(g15663 +g15665 +S'regretting' +p15667 +tp15668 +a(g15665 +g15667 +S'his' +p15669 +tp15670 +a(g15667 +g15669 +S'rash' +p15671 +tp15672 +a(g15669 +g15671 +S'actions,' +p15673 +tp15674 +a(g15671 +g15673 +S'cephalus' +p15675 +tp15676 +a(g15673 +g15675 +S'buries' +p15677 +tp15678 +a(g15675 +g15677 +S'the' +p15679 +tp15680 +a(g15677 +g15679 +S'jewels' +p15681 +tp15682 +a(g15679 +g15681 +S'he' +p15683 +tp15684 +a(g15681 +g15683 +S'used' +p15685 +tp15686 +a(g15683 +g15685 +S'to' +p15687 +tp15688 +a(g15685 +g15687 +S'trick' +p15689 +tp15690 +a(g15687 +g15689 +S'his' +p15691 +tp15692 +a(g15689 +g15691 +S'wife.' +p15693 +tp15694 +a(g15691 +g15693 +S'possibly' +p15695 +tp15696 +a(g15693 +g15695 +S'combining' +p15697 +tp15698 +a(g15695 +g15697 +S'different' +p15699 +tp15700 +a(g15697 +g15699 +S'narratives' +p15701 +tp15702 +a(g15699 +g15701 +S'from' +p15703 +tp15704 +a(g15701 +g15703 +S'the' +p15705 +tp15706 +a(g15703 +g15705 +S'poem' +p15707 +tp15708 +a(g15705 +g15707 +S'and' +p15709 +tp15710 +a(g15707 +g15709 +S'play,' +p15711 +tp15712 +a(g15709 +g15711 +S'luini' +p15713 +tp15714 +a(g15711 +g15713 +S'depicted' +p15715 +tp15716 +a(g15713 +g15715 +S'the' +p15717 +tp15718 +a(g15715 +g15717 +S'prince' +p15719 +tp15720 +a(g15717 +g15719 +S'digging' +p15721 +tp15722 +a(g15719 +g15721 +S'in' +p15723 +tp15724 +a(g15721 +g15723 +S'the' +p15725 +tp15726 +a(g15723 +g15725 +S'ground' +p15727 +tp15728 +a(g15725 +g15727 +S'twice.' +p15729 +tp15730 +a(g15727 +g15729 +S'act' +p15731 +tp15732 +a(g15729 +g15731 +S'v' +p15733 +tp15734 +a(g15731 +g15733 +S'of' +p15735 +tp15736 +a(g15733 +g15735 +S'niccolò’s' +p15737 +tp15738 +a(g15735 +g15737 +S'drama' +p15739 +tp15740 +a(g15737 +g15739 +S'concludes' +p15741 +tp15742 +a(g15739 +g15741 +S'the' +p15743 +tp15744 +a(g15741 +g15743 +S'story' +p15745 +tp15746 +a(g15743 +g15745 +S'with' +p15747 +tp15748 +a(g15745 +g15747 +S'the' +p15749 +tp15750 +a(g15747 +g15749 +S'young' +p15751 +tp15752 +a(g15749 +g15751 +S'bride' +p15753 +tp15754 +a(g15751 +g15753 +S'being' +p15755 +tp15756 +a(g15753 +g15755 +S'revived' +p15757 +tp15758 +a(g15755 +g15757 +S'by' +p15759 +tp15760 +a(g15757 +g15759 +S'the' +p15761 +tp15762 +a(g15759 +g15761 +S'benevolent' +p15763 +tp15764 +a(g15761 +g15763 +S'goddess' +p15765 +tp15766 +a(g15763 +g15765 +S'diana.' +p15767 +tp15768 +a(g15765 +g15767 +S'cephalus,' +p15769 +tp15770 +a(g15767 +g15769 +S'led' +p15771 +tp15772 +a(g15769 +g15771 +S'toward' +p15773 +tp15774 +a(g15771 +g15773 +S'his' +p15775 +tp15776 +a(g15773 +g15775 +S'happy' +p15777 +tp15778 +a(g15775 +g15777 +S'second' +p15779 +tp15780 +a(g15777 +g15779 +S'reunion' +p15781 +tp15782 +a(g15779 +g15781 +S'by' +p15783 +tp15784 +a(g15781 +g15783 +S'the' +p15785 +tp15786 +a(g15783 +g15785 +S'goat-footed' +p15787 +tp15788 +a(g15785 +g15787 +S'satyr,' +p15789 +tp15790 +a(g15787 +g15789 +S'pan,' +p15791 +tp15792 +a(g15789 +g15791 +S'approaches' +p15793 +tp15794 +a(g15791 +g15793 +S'a' +p15795 +tp15796 +a(g15793 +g15795 +S'temple.' +p15797 +tp15798 +a(g15795 +g15797 +S'its' +p15799 +tp15800 +a(g15797 +g15799 +S'sacred' +p15801 +tp15802 +a(g15799 +g15801 +S'portal' +p15803 +tp15804 +a(g15801 +g15803 +S'is' +p15805 +tp15806 +a(g15803 +g15805 +S'inscribed' +p15807 +tp15808 +a(g15805 +g15807 +S'“virginitas”' +p15809 +tp15810 +a(g15807 +g15809 +S'and' +p15811 +tp15812 +a(g15809 +g15811 +S'is' +p15813 +tp15814 +a(g15811 +g15813 +S'topped' +p15815 +tp15816 +a(g15813 +g15815 +S'by' +p15817 +tp15818 +a(g15815 +g15817 +S'a' +p15819 +tp15820 +a(g15817 +g15819 +S'statue' +p15821 +tp15822 +a(g15819 +g15821 +S'of' +p15823 +tp15824 +a(g15821 +g15823 +S'diana,' +p15825 +tp15826 +a(g15823 +g15825 +S'the' +p15827 +tp15828 +a(g15825 +g15827 +S'spear-bearing' +p15829 +tp15830 +a(g15827 +g15829 +S'goddess' +p15831 +tp15832 +a(g15829 +g15831 +S'of' +p15833 +tp15834 +a(g15831 +g15833 +S'the' +p15835 +tp15836 +a(g15833 +g15835 +S'hunt' +p15837 +tp15838 +a(g15835 +g15837 +S'and' +p15839 +tp15840 +a(g15837 +g15839 +S'chastity.' +p15841 +tp15842 +a(g15839 +g15841 +S'luini’s' +p15843 +tp15844 +a(g15841 +g15843 +S'imaginary' +p15845 +tp15846 +a(g15843 +g15845 +S'temple' +p15847 +tp15848 +a(g15845 +g15847 +S'shows' +p15849 +tp15850 +a(g15847 +g15849 +S'his' +p15851 +tp15852 +a(g15849 +g15851 +S'profound' +p15853 +tp15854 +a(g15851 +g15853 +S'knowledge' +p15855 +tp15856 +a(g15853 +g15855 +S'of' +p15857 +tp15858 +a(g15855 +g15857 +S'classical' +p15859 +tp15860 +a(g15857 +g15859 +S'architecture;' +p15861 +tp15862 +a(g15859 +g15861 +S'the' +p15863 +tp15864 +a(g15861 +g15863 +S'octagonal' +p15865 +tp15866 +a(g15863 +g15865 +S'structure' +p15867 +tp15868 +a(g15865 +g15867 +S'with' +p15869 +tp15870 +a(g15867 +g15869 +S'corinthian' +p15871 +tp15872 +a(g15869 +g15871 +S'columns' +p15873 +tp15874 +a(g15871 +g15873 +S'possesses' +p15875 +tp15876 +a(g15873 +g15875 +S'a' +p15877 +tp15878 +a(g15875 +g15877 +S'majestic' +p15879 +tp15880 +a(g15877 +g15879 +S'clarity' +p15881 +tp15882 +a(g15879 +g15881 +S'of' +p15883 +tp15884 +a(g15881 +g15883 +S'proportion.' +p15885 +tp15886 +a(g15883 +g15885 +S'the' +p15887 +tp15888 +a(g15885 +g15887 +S'edges' +p15889 +tp15890 +a(g15887 +g15889 +S'of' +p15891 +tp15892 +a(g15889 +g15891 +S'the' +p15893 +tp15894 +a(g15891 +g15893 +S'building' +p15895 +tp15896 +a(g15893 +g15895 +S'reveal' +p15897 +tp15898 +a(g15895 +g15897 +S'luini’s' +p15899 +tp15900 +a(g15897 +g15899 +S'preliminary' +p15901 +tp15902 +a(g15899 +g15901 +S'outlines' +p15903 +tp15904 +a(g15901 +g15903 +S'scratched' +p15905 +tp15906 +a(g15903 +g15905 +S'onto' +p15907 +tp15908 +a(g15905 +g15907 +S'the' +p15909 +tp15910 +a(g15907 +g15909 +S'wet' +p15911 +tp15912 +a(g15909 +g15911 +S'plaster' +p15913 +tp15914 +a(g15911 +g15913 +S'through' +p15915 +tp15916 +a(g15913 +g15915 +S'his' +p15917 +tp15918 +a(g15915 +g15917 +S'cartoon,' +p15919 +tp15920 +a(g15917 +g15919 +S'or' +p15921 +tp15922 +a(g15919 +g15921 +S'full-scale' +p15923 +tp15924 +a(g15921 +g15923 +S'preparatory' +p15925 +tp15926 +a(g15923 +g15925 +S'drawing,' +p15927 +tp15928 +a(g15925 +g15927 +S'before' +p15929 +tp15930 +a(g15927 +g15929 +S'he' +p15931 +tp15932 +a(g15929 +g15931 +S'began' +p15933 +tp15934 +a(g15931 +g15933 +S'painting.' +p15935 +tp15936 +a(g15933 +g15935 +S'this' +p15937 +tp15938 +a(g15935 +g15937 +S'violent' +p15939 +tp15940 +a(g15937 +g15939 +S'scene' +p15941 +tp15942 +a(g15939 +g15941 +S'of' +p15943 +tp15944 +a(g15941 +g15943 +S'cephalus' +p15945 +tp15946 +a(g15943 +g15945 +S'using' +p15947 +tp15948 +a(g15945 +g15947 +S'a' +p15949 +tp15950 +a(g15947 +g15949 +S'club' +p15951 +tp15952 +a(g15949 +g15951 +S'to' +p15953 +tp15954 +a(g15951 +g15953 +S'defend' +p15955 +tp15956 +a(g15953 +g15955 +S'himself' +p15957 +tp15958 +a(g15955 +g15957 +S'against' +p15959 +tp15960 +a(g15957 +g15959 +S'dogs' +p15961 +tp15962 +a(g15959 +g15961 +S'occurs' +p15963 +tp15964 +a(g15961 +g15963 +S'in' +p15965 +tp15966 +a(g15963 +g15965 +S'neither' +p15967 +tp15968 +a(g15965 +g15967 +S'the' +p15969 +tp15970 +a(g15967 +g15969 +S'ancient' +p15971 +tp15972 +a(g15969 +g15971 +S'poem' +p15973 +tp15974 +a(g15971 +g15973 +S'nor' +p15975 +tp15976 +a(g15973 +g15975 +S'the' +p15977 +tp15978 +a(g15975 +g15977 +S'renaissance' +p15979 +tp15980 +a(g15977 +g15979 +S'drama.' +p15981 +tp15982 +a(g15979 +g15981 +S'the' +p15983 +tp15984 +a(g15981 +g15983 +S'goddess' +p15985 +tp15986 +a(g15983 +g15985 +S'diana,' +p15987 +tp15988 +a(g15985 +g15987 +S'angered' +p15989 +tp15990 +a(g15987 +g15989 +S'at' +p15991 +tp15992 +a(g15989 +g15991 +S'cephalus’' +p15993 +tp15994 +a(g15991 +g15993 +S'treatment' +p15995 +tp15996 +a(g15993 +g15995 +S'of' +p15997 +tp15998 +a(g15995 +g15997 +S'his' +p15999 +tp16000 +a(g15997 +g15999 +S'wife,' +p16001 +tp16002 +a(g15999 +g16001 +S'urges' +p16003 +tp16004 +a(g16001 +g16003 +S'her' +p16005 +tp16006 +a(g16003 +g16005 +S'hounds' +p16007 +tp16008 +a(g16005 +g16007 +S'to' +p16009 +tp16010 +a(g16007 +g16009 +S'attack' +p16011 +tp16012 +a(g16009 +g16011 +S'him.' +p16013 +tp16014 +a(g16011 +g16013 +S'procris,' +p16015 +tp16016 +a(g16013 +g16015 +S'hiding' +p16017 +tp16018 +a(g16015 +g16017 +S'in' +p16019 +tp16020 +a(g16017 +g16019 +S'the' +p16021 +tp16022 +a(g16019 +g16021 +S'bushes,' +p16023 +tp16024 +a(g16021 +g16023 +S'seems' +p16025 +tp16026 +a(g16023 +g16025 +S'astonished' +p16027 +tp16028 +a(g16025 +g16027 +S'at' +p16029 +tp16030 +a(g16027 +g16029 +S'diana’s' +p16031 +tp16032 +a(g16029 +g16031 +S'vengeance,' +p16033 +tp16034 +a(g16031 +g16033 +S'while' +p16035 +tp16036 +a(g16033 +g16035 +S'the' +p16037 +tp16038 +a(g16035 +g16037 +S'goddess’' +p16039 +tp16040 +a(g16037 +g16039 +S'nymphs' +p16041 +tp16042 +a(g16039 +g16041 +S'run' +p16043 +tp16044 +a(g16041 +g16043 +S'to' +p16045 +tp16046 +a(g16043 +g16045 +S'join' +p16047 +tp16048 +a(g16045 +g16047 +S'the' +p16049 +tp16050 +a(g16047 +g16049 +S'fray.' +p16051 +tp16052 +a(g16049 +g16051 +S'act' +p16053 +tp16054 +a(g16051 +g16053 +S'iii' +p16055 +tp16056 +a(g16053 +g16055 +S'of' +p16057 +tp16058 +a(g16055 +g16057 +S'the' +p16059 +tp16060 +a(g16057 +g16059 +S'play,' +p16061 +tp16062 +a(g16059 +g16061 +S'either' +p16063 +tp16064 +a(g16061 +g16063 +S'never' +p16065 +tp16066 +a(g16063 +g16065 +S'included' +p16067 +tp16068 +a(g16065 +g16067 +S'in' +p16069 +tp16070 +a(g16067 +g16069 +S'luini’s' +p16071 +tp16072 +a(g16069 +g16071 +S'frescoes' +p16073 +tp16074 +a(g16071 +g16073 +S'or' +p16075 +tp16076 +a(g16073 +g16075 +S'destroyed' +p16077 +tp16078 +a(g16075 +g16077 +S'when' +p16079 +tp16080 +a(g16077 +g16079 +S'his' +p16081 +tp16082 +a(g16079 +g16081 +S'paintings' +p16083 +tp16084 +a(g16081 +g16083 +S'were' +p16085 +tp16086 +a(g16083 +g16085 +S'removed' +p16087 +tp16088 +a(g16085 +g16087 +S'from' +p16089 +tp16090 +a(g16087 +g16089 +S'the' +p16091 +tp16092 +a(g16089 +g16091 +S'walls,' +p16093 +tp16094 +a(g16091 +g16093 +S'deals' +p16095 +tp16096 +a(g16093 +g16095 +S'with' +p16097 +tp16098 +a(g16095 +g16097 +S'the' +p16099 +tp16100 +a(g16097 +g16099 +S'couple’s' +p16101 +tp16102 +a(g16099 +g16101 +S'reconciliation.' +p16103 +tp16104 +a(g16101 +g16103 +S'as' +p16105 +tp16106 +a(g16103 +g16105 +S'a' +p16107 +tp16108 +a(g16105 +g16107 +S'sign' +p16109 +tp16110 +a(g16107 +g16109 +S'of' +p16111 +tp16112 +a(g16109 +g16111 +S'their' +p16113 +tp16114 +a(g16111 +g16113 +S'renewed' +p16115 +tp16116 +a(g16113 +g16115 +S'union,' +p16117 +tp16118 +a(g16115 +g16117 +S'procris' +p16119 +tp16120 +a(g16117 +g16119 +S'gives' +p16121 +tp16122 +a(g16119 +g16121 +S'her' +p16123 +tp16124 +a(g16121 +g16123 +S'husband' +p16125 +tp16126 +a(g16123 +g16125 +S'a' +p16127 +tp16128 +a(g16125 +g16127 +S'magical' +p16129 +tp16130 +a(g16127 +g16129 +S'weapon' +p16131 +tp16132 +a(g16129 +g16131 +S'bestowed' +p16133 +tp16134 +a(g16131 +g16133 +S'upon' +p16135 +tp16136 +a(g16133 +g16135 +S'her' +p16137 +tp16138 +a(g16135 +g16137 +S'by' +p16139 +tp16140 +a(g16137 +g16139 +S'diana—a' +p16141 +tp16142 +a(g16139 +g16141 +S'spear' +p16143 +tp16144 +a(g16141 +g16143 +S'that' +p16145 +tp16146 +a(g16143 +g16145 +S'never' +p16147 +tp16148 +a(g16145 +g16147 +S'misses' +p16149 +tp16150 +a(g16147 +g16149 +S'its' +p16151 +tp16152 +a(g16149 +g16151 +S'mark.' +p16153 +tp16154 +a(g16151 +g16153 +S'following' +p16155 +tp16156 +a(g16153 +g16155 +S'the' +p16157 +tp16158 +a(g16155 +g16157 +S'newlyweds’' +p16159 +tp16160 +a(g16157 +g16159 +S'reunion,' +p16161 +tp16162 +a(g16159 +g16161 +S'procris' +p16163 +tp16164 +a(g16161 +g16163 +S'becomes' +p16165 +tp16166 +a(g16163 +g16165 +S'jealous' +p16167 +tp16168 +a(g16165 +g16167 +S'in' +p16169 +tp16170 +a(g16167 +g16169 +S'turn.' +p16171 +tp16172 +a(g16169 +g16171 +S'suspecting' +p16173 +tp16174 +a(g16171 +g16173 +S'cephalus' +p16175 +tp16176 +a(g16173 +g16175 +S'of' +p16177 +tp16178 +a(g16175 +g16177 +S'infidelity,' +p16179 +tp16180 +a(g16177 +g16179 +S'she' +p16181 +tp16182 +a(g16179 +g16181 +S'follows' +p16183 +tp16184 +a(g16181 +g16183 +S'him' +p16185 +tp16186 +a(g16183 +g16185 +S'on' +p16187 +tp16188 +a(g16185 +g16187 +S'a' +p16189 +tp16190 +a(g16187 +g16189 +S'hunting' +p16191 +tp16192 +a(g16189 +g16191 +S'trip.' +p16193 +tp16194 +a(g16191 +g16193 +S'he' +p16195 +tp16196 +a(g16193 +g16195 +S'hears' +p16197 +tp16198 +a(g16195 +g16197 +S'her' +p16199 +tp16200 +a(g16197 +g16199 +S'and,' +p16201 +tp16202 +a(g16199 +g16201 +S'thinking' +p16203 +tp16204 +a(g16201 +g16203 +S'some' +p16205 +tp16206 +a(g16203 +g16205 +S'wild' +p16207 +tp16208 +a(g16205 +g16207 +S'animal' +p16209 +tp16210 +a(g16207 +g16209 +S'is' +p16211 +tp16212 +a(g16209 +g16211 +S'near,' +p16213 +tp16214 +a(g16211 +g16213 +S'hurls' +p16215 +tp16216 +a(g16213 +g16215 +S'his' +p16217 +tp16218 +a(g16215 +g16217 +S'magic' +p16219 +tp16220 +a(g16217 +g16219 +S'spear.' +p16221 +tp16222 +a(g16219 +g16221 +S'in' +p16223 +tp16224 +a(g16221 +g16223 +S'this' +p16225 +tp16226 +a(g16223 +g16225 +S'vivid' +p16227 +tp16228 +a(g16225 +g16227 +S'illustration' +p16229 +tp16230 +a(g16227 +g16229 +S'from' +p16231 +tp16232 +a(g16229 +g16231 +S'act' +p16233 +tp16234 +a(g16231 +g16233 +S'iv,' +p16235 +tp16236 +a(g16233 +g16235 +S'the' +p16237 +tp16238 +a(g16235 +g16237 +S'dying' +p16239 +tp16240 +a(g16237 +g16239 +S'procris' +p16241 +tp16242 +a(g16239 +g16241 +S'reels' +p16243 +tp16244 +a(g16241 +g16243 +S'against' +p16245 +tp16246 +a(g16243 +g16245 +S'the' +p16247 +tp16248 +a(g16245 +g16247 +S'force' +p16249 +tp16250 +a(g16247 +g16249 +S'of' +p16251 +tp16252 +a(g16249 +g16251 +S'the' +p16253 +tp16254 +a(g16251 +g16253 +S'javelin.' +p16255 +tp16256 +a(g16253 +g16255 +S'ovid’s' +p16257 +tp16258 +a(g16255 +g16257 +S'ancient' +p16259 +tp16260 +a(g16257 +g16259 +S'myth' +p16261 +tp16262 +a(g16259 +g16261 +S'ends' +p16263 +tp16264 +a(g16261 +g16263 +S'tragically' +p16265 +tp16266 +a(g16263 +g16265 +S'at' +p16267 +tp16268 +a(g16265 +g16267 +S'this' +p16269 +tp16270 +a(g16267 +g16269 +S'point,' +p16271 +tp16272 +a(g16269 +g16271 +S'leaving' +p16273 +tp16274 +a(g16271 +g16273 +S'cephalus' +p16275 +tp16276 +a(g16273 +g16275 +S'to' +p16277 +tp16278 +a(g16275 +g16277 +S'wander' +p16279 +tp16280 +a(g16277 +g16279 +S'the' +p16281 +tp16282 +a(g16279 +g16281 +S'earth' +p16283 +tp16284 +a(g16281 +g16283 +S'in' +p16285 +tp16286 +a(g16283 +g16285 +S'lonely' +p16287 +tp16288 +a(g16285 +g16287 +S'guilt.' +p16289 +tp16290 +a(g16287 +g16289 +S'here' +p16291 +tp16292 +a(g16289 +g16291 +S'procris' +p16293 +tp16294 +a(g16291 +g16293 +S'appears' +p16295 +tp16296 +a(g16293 +g16295 +S'considerably' +p16297 +tp16298 +a(g16295 +g16297 +S'larger' +p16299 +tp16300 +a(g16297 +g16299 +S'in' +p16301 +tp16302 +a(g16299 +g16301 +S'scale' +p16303 +tp16304 +a(g16301 +g16303 +S'than' +p16305 +tp16306 +a(g16303 +g16305 +S'most' +p16307 +tp16308 +a(g16305 +g16307 +S'of' +p16309 +tp16310 +a(g16307 +g16309 +S'the' +p16311 +tp16312 +a(g16309 +g16311 +S'other' +p16313 +tp16314 +a(g16311 +g16313 +S'figures' +p16315 +tp16316 +a(g16313 +g16315 +S'in' +p16317 +tp16318 +a(g16315 +g16317 +S'the' +p16319 +tp16320 +a(g16317 +g16319 +S'cycle.' +p16321 +tp16322 +a(g16319 +g16321 +S'her' +p16323 +tp16324 +a(g16321 +g16323 +S'prominence,' +p16325 +tp16326 +a(g16323 +g16325 +S'appropriate' +p16327 +tp16328 +a(g16325 +g16327 +S'for' +p16329 +tp16330 +a(g16327 +g16329 +S'the' +p16331 +tp16332 +a(g16329 +g16331 +S'story’s' +p16333 +tp16334 +a(g16331 +g16333 +S'climax,' +p16335 +tp16336 +a(g16333 +g16335 +S'suggests' +p16337 +tp16338 +a(g16335 +g16337 +S'that' +p16339 +tp16340 +a(g16337 +g16339 +S'this' +p16341 +tp16342 +a(g16339 +g16341 +S'scene' +p16343 +tp16344 +a(g16341 +g16343 +S'was' +p16345 +tp16346 +a(g16343 +g16345 +S'a' +p16347 +tp16348 +a(g16345 +g16347 +S'focal' +p16349 +tp16350 +a(g16347 +g16349 +S'point' +p16351 +tp16352 +a(g16349 +g16351 +S'of' +p16353 +tp16354 +a(g16351 +g16353 +S'the' +p16355 +tp16356 +a(g16353 +g16355 +S'decorative' +p16357 +tp16358 +a(g16355 +g16357 +S'scheme' +p16359 +tp16360 +a(g16357 +g16359 +S'and' +p16361 +tp16362 +a(g16359 +g16361 +S'occupied' +p16363 +tp16364 +a(g16361 +g16363 +S'an' +p16365 +tp16366 +a(g16363 +g16365 +S'important' +p16367 +tp16368 +a(g16365 +g16367 +S'position' +p16369 +tp16370 +a(g16367 +g16369 +S'in' +p16371 +tp16372 +a(g16369 +g16371 +S'the' +p16373 +tp16374 +a(g16371 +g16373 +S'room.' +p16375 +tp16376 +a(g16373 +g16375 +S'cephalus' +p16377 +tp16378 +a(g16375 +g16377 +S'encounters' +p16379 +tp16380 +a(g16377 +g16379 +S'two' +p16381 +tp16382 +a(g16379 +g16381 +S'nymphs' +p16383 +tp16384 +a(g16381 +g16383 +S'at' +p16385 +tp16386 +a(g16383 +g16385 +S'the' +p16387 +tp16388 +a(g16385 +g16387 +S'end' +p16389 +tp16390 +a(g16387 +g16389 +S'of' +p16391 +tp16392 +a(g16389 +g16391 +S'act' +p16393 +tp16394 +a(g16391 +g16393 +S'iv.' +p16395 +tp16396 +a(g16393 +g16395 +S'companions' +p16397 +tp16398 +a(g16395 +g16397 +S'of' +p16399 +tp16400 +a(g16397 +g16399 +S'the' +p16401 +tp16402 +a(g16399 +g16401 +S'hunting' +p16403 +tp16404 +a(g16401 +g16403 +S'goddess' +p16405 +tp16406 +a(g16403 +g16405 +S'diana,' +p16407 +tp16408 +a(g16405 +g16407 +S'they' +p16409 +tp16410 +a(g16407 +g16409 +S'sleep' +p16411 +tp16412 +a(g16409 +g16411 +S'beside' +p16413 +tp16414 +a(g16411 +g16413 +S'their' +p16415 +tp16416 +a(g16413 +g16415 +S'weapons' +p16417 +tp16418 +a(g16415 +g16417 +S'and' +p16419 +tp16420 +a(g16417 +g16419 +S'dogs.' +p16421 +tp16422 +a(g16419 +g16421 +S'the' +p16423 +tp16424 +a(g16421 +g16423 +S'widowed' +p16425 +tp16426 +a(g16423 +g16425 +S'prince' +p16427 +tp16428 +a(g16425 +g16427 +S'confides' +p16429 +tp16430 +a(g16427 +g16429 +S'his' +p16431 +tp16432 +a(g16429 +g16431 +S'grief' +p16433 +tp16434 +a(g16431 +g16433 +S'to' +p16435 +tp16436 +a(g16433 +g16435 +S'the' +p16437 +tp16438 +a(g16435 +g16437 +S'nymphs.' +p16439 +tp16440 +a(g16437 +g16439 +S'in' +p16441 +tp16442 +a(g16439 +g16441 +S'the' +p16443 +tp16444 +a(g16441 +g16443 +S'distance,' +p16445 +tp16446 +a(g16443 +g16445 +S'luini' +p16447 +tp16448 +a(g16445 +g16447 +S'depicted' +p16449 +tp16450 +a(g16447 +g16449 +S'a' +p16451 +tp16452 +a(g16449 +g16451 +S'city' +p16453 +tp16454 +a(g16451 +g16453 +S'with' +p16455 +tp16456 +a(g16453 +g16455 +S'church' +p16457 +tp16458 +a(g16455 +g16457 +S'and' +p16459 +tp16460 +a(g16457 +g16459 +S'bell' +p16461 +tp16462 +a(g16459 +g16461 +S'towers' +p16463 +tp16464 +a(g16461 +g16463 +S'capped' +p16465 +tp16466 +a(g16463 +g16465 +S'by' +p16467 +tp16468 +a(g16465 +g16467 +S'christian' +p16469 +tp16470 +a(g16467 +g16469 +S'crosses.' +p16471 +tp16472 +a(g16469 +g16471 +S'on' +p16473 +tp16474 +a(g16471 +g16473 +S'the' +p16475 +tp16476 +a(g16473 +g16475 +S'distant' +p16477 +tp16478 +a(g16475 +g16477 +S'hill,' +p16479 +tp16480 +a(g16477 +g16479 +S'cephalus' +p16481 +tp16482 +a(g16479 +g16481 +S'throws' +p16483 +tp16484 +a(g16481 +g16483 +S'up' +p16485 +tp16486 +a(g16483 +g16485 +S'his' +p16487 +tp16488 +a(g16485 +g16487 +S'arms' +p16489 +tp16490 +a(g16487 +g16489 +S'in' +p16491 +tp16492 +a(g16489 +g16491 +S'despair' +p16493 +tp16494 +a(g16491 +g16493 +S'over' +p16495 +tp16496 +a(g16493 +g16495 +S'his' +p16497 +tp16498 +a(g16495 +g16497 +S'fate.' +p16499 +tp16500 +a(g16497 +g16499 +S'then' +p16501 +tp16502 +a(g16499 +g16501 +S'he' +p16503 +tp16504 +a(g16501 +g16503 +S'attempts' +p16505 +tp16506 +a(g16503 +g16505 +S'to' +p16507 +tp16508 +a(g16505 +g16507 +S'strangle' +p16509 +tp16510 +a(g16507 +g16509 +S'himself' +p16511 +tp16512 +a(g16509 +g16511 +S'with' +p16513 +tp16514 +a(g16511 +g16513 +S'a' +p16515 +tp16516 +a(g16513 +g16515 +S'cord,' +p16517 +tp16518 +a(g16515 +g16517 +S'but' +p16519 +tp16520 +a(g16517 +g16519 +S'his' +p16521 +tp16522 +a(g16519 +g16521 +S'suicide' +p16523 +tp16524 +a(g16521 +g16523 +S'is' +p16525 +tp16526 +a(g16523 +g16525 +S'thwarted' +p16527 +tp16528 +a(g16525 +g16527 +S'by' +p16529 +tp16530 +a(g16527 +g16529 +S'the' +p16531 +tp16532 +a(g16529 +g16531 +S'shepherd.' +p16533 +tp16534 +a(g16531 +g16533 +S'luini' +p16535 +tp16536 +a(g16533 +g16535 +S'added' +p16537 +tp16538 +a(g16535 +g16537 +S'a' +p16539 +tp16540 +a(g16537 +g16539 +S'few' +p16541 +tp16542 +a(g16539 +g16541 +S'final' +p16543 +tp16544 +a(g16541 +g16543 +S'touches' +p16545 +tp16546 +a(g16543 +g16545 +S'to' +p16547 +tp16548 +a(g16545 +g16547 +S'the' +p16549 +tp16550 +a(g16547 +g16549 +S'frescoes' +p16551 +tp16552 +a(g16549 +g16551 +S'with' +p16553 +tp16554 +a(g16551 +g16553 +S'tempera' +p16555 +tp16556 +a(g16553 +g16555 +S'paints' +p16557 +tp16558 +a(g16555 +g16557 +S'on' +p16559 +tp16560 +a(g16557 +g16559 +S'the' +p16561 +tp16562 +a(g16559 +g16561 +S'dried' +p16563 +tp16564 +a(g16561 +g16563 +S'wall;' +p16565 +tp16566 +a(g16563 +g16565 +S'here,' +p16567 +tp16568 +a(g16565 +g16567 +S'some' +p16569 +tp16570 +a(g16567 +g16569 +S'blossoms' +p16571 +tp16572 +a(g16569 +g16571 +S'and' +p16573 +tp16574 +a(g16571 +g16573 +S'leaves' +p16575 +tp16576 +a(g16573 +g16575 +S'lie' +p16577 +tp16578 +a(g16575 +g16577 +S'on' +p16579 +tp16580 +a(g16577 +g16579 +S'top' +p16581 +tp16582 +a(g16579 +g16581 +S'of' +p16583 +tp16584 +a(g16581 +g16583 +S'the' +p16585 +tp16586 +a(g16583 +g16585 +S'plaster' +p16587 +tp16588 +a(g16585 +g16587 +S'rather' +p16589 +tp16590 +a(g16587 +g16589 +S'than' +p16591 +tp16592 +a(g16589 +g16591 +S'within' +p16593 +tp16594 +a(g16591 +g16593 +S'it.' +p16595 +tp16596 +a(g16593 +g16595 +S'chaos' +p16597 +tp16598 +a(g16595 +g16597 +S'reigns,' +p16599 +tp16600 +a(g16597 +g16599 +S'and' +p16601 +tp16602 +a(g16599 +g16601 +S'wolves' +p16603 +tp16604 +a(g16601 +g16603 +S'devour' +p16605 +tp16606 +a(g16603 +g16605 +S'a' +p16607 +tp16608 +a(g16605 +g16607 +S'flock' +p16609 +tp16610 +a(g16607 +g16609 +S'of' +p16611 +tp16612 +a(g16609 +g16611 +S'sheep' +p16613 +tp16614 +a(g16611 +g16613 +S'as' +p16615 +tp16616 +a(g16613 +g16615 +S'the' +p16617 +tp16618 +a(g16615 +g16617 +S'gods' +p16619 +tp16620 +a(g16617 +g16619 +S'turn' +p16621 +tp16622 +a(g16619 +g16621 +S'against' +p16623 +tp16624 +a(g16621 +g16623 +S'cephalus,' +p16625 +tp16626 +a(g16623 +g16625 +S'who' +p16627 +tp16628 +a(g16625 +g16627 +S'appears' +p16629 +tp16630 +a(g16627 +g16629 +S'twice.' +p16631 +tp16632 +a(g16629 +g16631 +S'in' +p16633 +tp16634 +a(g16631 +g16633 +S'the' +p16635 +tp16636 +a(g16633 +g16635 +S'foreground,' +p16637 +tp16638 +a(g16635 +g16637 +S'a' +p16639 +tp16640 +a(g16637 +g16639 +S'shepherd' +p16641 +tp16642 +a(g16639 +g16641 +S'tries' +p16643 +tp16644 +a(g16641 +g16643 +S'to' +p16645 +tp16646 +a(g16643 +g16645 +S'comfort' +p16647 +tp16648 +a(g16645 +g16647 +S'cephalus,' +p16649 +tp16650 +a(g16647 +g16649 +S'but' +p16651 +tp16652 +a(g16649 +g16651 +S'with' +p16653 +tp16654 +a(g16651 +g16653 +S'head' +p16655 +tp16656 +a(g16653 +g16655 +S'averted' +p16657 +tp16658 +a(g16655 +g16657 +S'and' +p16659 +tp16660 +a(g16657 +g16659 +S'hands' +p16661 +tp16662 +a(g16659 +g16661 +S'raised' +p16663 +tp16664 +a(g16661 +g16663 +S'in' +p16665 +tp16666 +a(g16663 +g16665 +S'protest,' +p16667 +tp16668 +a(g16665 +g16667 +S'the' +p16669 +tp16670 +a(g16667 +g16669 +S'prince' +p16671 +tp16672 +a(g16669 +g16671 +S'refuses' +p16673 +tp16674 +a(g16671 +g16673 +S'his' +p16675 +tp16676 +a(g16673 +g16675 +S'help.' +p16677 +tp16678 +a(g16675 +g16677 +S'although' +p16679 +tp16680 +a(g16677 +g16679 +S'related' +p16681 +tp16682 +a(g16679 +g16681 +S'to' +p16683 +tp16684 +a(g16681 +g16683 +S'the' +p16685 +tp16686 +a(g16683 +g16685 +S'joyous' +p16687 +tp16688 +a(g16685 +g16687 +S'events' +p16689 +tp16690 +a(g16687 +g16689 +S'from' +p16691 +tp16692 +a(g16689 +g16691 +S'the' +p16693 +tp16694 +a(g16691 +g16693 +S'fifth' +p16695 +tp16696 +a(g16693 +g16695 +S'act,' +p16697 +tp16698 +a(g16695 +g16697 +S'the' +p16699 +tp16700 +a(g16697 +g16699 +S'final' +p16701 +tp16702 +a(g16699 +g16701 +S'scene' +p16703 +tp16704 +a(g16701 +g16703 +S'is' +p16705 +tp16706 +a(g16703 +g16705 +S'another' +p16707 +tp16708 +a(g16705 +g16707 +S'invention' +p16709 +tp16710 +a(g16707 +g16709 +S'that' +p16711 +tp16712 +a(g16709 +g16711 +S'does' +p16713 +tp16714 +a(g16711 +g16713 +S'not' +p16715 +tp16716 +a(g16713 +g16715 +S'appear' +p16717 +tp16718 +a(g16715 +g16717 +S'in' +p16719 +tp16720 +a(g16717 +g16719 +S'the' +p16721 +tp16722 +a(g16719 +g16721 +S'drama.' +p16723 +tp16724 +a(g16721 +g16723 +S'procris' +p16725 +tp16726 +a(g16723 +g16725 +S'extends' +p16727 +tp16728 +a(g16725 +g16727 +S'one' +p16729 +tp16730 +a(g16727 +g16729 +S'arm' +p16731 +tp16732 +a(g16729 +g16731 +S'gently' +p16733 +tp16734 +a(g16731 +g16733 +S'toward' +p16735 +tp16736 +a(g16733 +g16735 +S'a' +p16737 +tp16738 +a(g16735 +g16737 +S'unicorn,' +p16739 +tp16740 +a(g16737 +g16739 +S'which' +p16741 +tp16742 +a(g16739 +g16741 +S'kneels' +p16743 +tp16744 +a(g16741 +g16743 +S'in' +p16745 +tp16746 +a(g16743 +g16745 +S'deference' +p16747 +tp16748 +a(g16745 +g16747 +S'to' +p16749 +tp16750 +a(g16747 +g16749 +S'her' +p16751 +tp16752 +a(g16749 +g16751 +S'purity.' +p16753 +tp16754 +a(g16751 +g16753 +S'this' +p16755 +tp16756 +a(g16753 +g16755 +S'fabulous' +p16757 +tp16758 +a(g16755 +g16757 +S'animal' +p16759 +tp16760 +a(g16757 +g16759 +S'does' +p16761 +tp16762 +a(g16759 +g16761 +S'not' +p16763 +tp16764 +a(g16761 +g16763 +S'come' +p16765 +tp16766 +a(g16763 +g16765 +S'from' +p16767 +tp16768 +a(g16765 +g16767 +S'ancient' +p16769 +tp16770 +a(g16767 +g16769 +S'mythology' +p16771 +tp16772 +a(g16769 +g16771 +S'but,' +p16773 +tp16774 +a(g16771 +g16773 +S'rather,' +p16775 +tp16776 +a(g16773 +g16775 +S'is' +p16777 +tp16778 +a(g16775 +g16777 +S'a' +p16779 +tp16780 +a(g16777 +g16779 +S'symbol' +p16781 +tp16782 +a(g16779 +g16781 +S'of' +p16783 +tp16784 +a(g16781 +g16783 +S'virginity' +p16785 +tp16786 +a(g16783 +g16785 +S'in' +p16787 +tp16788 +a(g16785 +g16787 +S'the' +p16789 +tp16790 +a(g16787 +g16789 +S'christian' +p16791 +tp16792 +a(g16789 +g16791 +S'faith.' +p16793 +tp16794 +a(g16791 +g16793 +S'the' +p16795 +tp16796 +a(g16793 +g16795 +S'unicorn' +p16797 +tp16798 +a(g16795 +g16797 +S'functions' +p16799 +tp16800 +a(g16797 +g16799 +S'as' +p16801 +tp16802 +a(g16799 +g16801 +S'a' +p16803 +tp16804 +a(g16801 +g16803 +S'metaphor,' +p16805 +tp16806 +a(g16803 +g16805 +S'suggesting' +p16807 +tp16808 +a(g16805 +g16807 +S'that,' +p16809 +tp16810 +a(g16807 +g16809 +S'through' +p16811 +tp16812 +a(g16809 +g16811 +S'her' +p16813 +tp16814 +a(g16811 +g16813 +S'earthly' +p16815 +tp16816 +a(g16813 +g16815 +S'sorrows,' +p16817 +tp16818 +a(g16815 +g16817 +S'procris' +p16819 +tp16820 +a(g16817 +g16819 +S'has' +p16821 +tp16822 +a(g16819 +g16821 +S'suffered' +p16823 +tp16824 +a(g16821 +g16823 +S'martyrdom' +p16825 +tp16826 +a(g16823 +g16825 +S'and' +p16827 +tp16828 +a(g16825 +g16827 +S'been' +p16829 +tp16830 +a(g16827 +g16829 +S'resurrected.' +p16831 +tp16832 +a(g16829 +g16831 +S'thus,' +p16833 +tp16834 +a(g16831 +g16833 +S'in' +p16835 +tp16836 +a(g16833 +g16835 +S'translating' +p16837 +tp16838 +a(g16835 +g16837 +S'niccolò' +p16839 +tp16840 +a(g16837 +g16839 +S'da' +p16841 +tp16842 +a(g16839 +g16841 +S'correggio’s' +p16843 +tp16844 +a(g16841 +g16843 +S'play' +p16845 +tp16846 +a(g16843 +g16845 +S'into' +p16847 +tp16848 +a(g16845 +g16847 +S'painted' +p16849 +tp16850 +a(g16847 +g16849 +S'images,' +p16851 +tp16852 +a(g16849 +g16851 +S'bernardino' +p16853 +tp16854 +a(g16851 +g16853 +S'luini' +p16855 +tp16856 +a(g16853 +g16855 +S'followed' +p16857 +tp16858 +a(g16855 +g16857 +S'two' +p16859 +tp16860 +a(g16857 +g16859 +S'renaissance' +p16861 +tp16862 +a(g16859 +g16861 +S'practices:' +p16863 +tp16864 +a(g16861 +g16863 +S'an' +p16865 +tp16866 +a(g16863 +g16865 +S'interest' +p16867 +tp16868 +a(g16865 +g16867 +S'in' +p16869 +tp16870 +a(g16867 +g16869 +S'reviving' +p16871 +tp16872 +a(g16869 +g16871 +S'classical' +p16873 +tp16874 +a(g16871 +g16873 +S'style' +p16875 +tp16876 +a(g16873 +g16875 +S'as' +p16877 +tp16878 +a(g16875 +g16877 +S'well' +p16879 +tp16880 +a(g16877 +g16879 +S'as' +p16881 +tp16882 +a(g16879 +g16881 +S'a' +p16883 +tp16884 +a(g16881 +g16883 +S'tendency' +p16885 +tp16886 +a(g16883 +g16885 +S'to' +p16887 +tp16888 +a(g16885 +g16887 +S'give' +p16889 +tp16890 +a(g16887 +g16889 +S'moralizing' +p16891 +tp16892 +a(g16889 +g16891 +S'religious' +p16893 +tp16894 +a(g16891 +g16893 +S'meanings' +p16895 +tp16896 +a(g16893 +g16895 +S'to' +p16897 +tp16898 +a(g16895 +g16897 +S'pagan' +p16899 +tp16900 +a(g16897 +g16899 +S'myths.' +p16901 +tp16902 +a(g16899 +g16901 +S'a' +p16903 +tp16904 +a(g16901 +g16903 +S'configuration' +p16905 +tp16906 +a(g16903 +g16905 +S'of' +p16907 +tp16908 +a(g16905 +g16907 +S'linked' +p16909 +tp16910 +a(g16907 +g16909 +S'ovals,' +p16911 +tp16912 +a(g16909 +g16911 +S'this' +p16913 +tp16914 +a(g16911 +g16913 +S'composition' +p16915 +tp16916 +a(g16913 +g16915 +S'rises' +p16917 +tp16918 +a(g16915 +g16917 +S'from' +p16919 +tp16920 +a(g16917 +g16919 +S'the' +p16921 +tp16922 +a(g16919 +g16921 +S'full' +p16923 +tp16924 +a(g16921 +g16923 +S'skirt' +p16925 +tp16926 +a(g16923 +g16925 +S'through' +p16927 +tp16928 +a(g16925 +g16927 +S'a' +p16929 +tp16930 +a(g16927 +g16929 +S'flounced' +p16931 +tp16932 +a(g16929 +g16931 +S'bodice' +p16933 +tp16934 +a(g16931 +g16933 +S'to' +p16935 +tp16936 +a(g16933 +g16935 +S'a' +p16937 +tp16938 +a(g16935 +g16937 +S'wide-brimmed' +p16939 +tp16940 +a(g16937 +g16939 +S'bonnet' +p16941 +tp16942 +a(g16939 +g16941 +S'that' +p16943 +tp16944 +a(g16941 +g16943 +S'frames' +p16945 +tp16946 +a(g16943 +g16945 +S'the' +p16947 +tp16948 +a(g16945 +g16947 +S"sitter's" +p16949 +tp16950 +a(g16947 +g16949 +S'face' +p16951 +tp16952 +a(g16949 +g16951 +S'like' +p16953 +tp16954 +a(g16951 +g16953 +S'a' +p16955 +tp16956 +a(g16953 +g16955 +S'halo.' +p16957 +tp16958 +a(g16955 +g16957 +S'the' +p16959 +tp16960 +a(g16957 +g16959 +S'oval' +p16961 +tp16962 +a(g16959 +g16961 +S'back' +p16963 +tp16964 +a(g16961 +g16963 +S'of' +p16965 +tp16966 +a(g16963 +g16965 +S'the' +p16967 +tp16968 +a(g16965 +g16967 +S'chair' +p16969 +tp16970 +a(g16967 +g16969 +S'and' +p16971 +tp16972 +a(g16969 +g16971 +S'the' +p16973 +tp16974 +a(g16971 +g16973 +S'pose' +p16975 +tp16976 +a(g16973 +g16975 +S'of' +p16977 +tp16978 +a(g16975 +g16977 +S'the' +p16979 +tp16980 +a(g16977 +g16979 +S'raised' +p16981 +tp16982 +a(g16979 +g16981 +S'wrist' +p16983 +tp16984 +a(g16981 +g16983 +S'echo' +p16985 +tp16986 +a(g16983 +g16985 +S'the' +p16987 +tp16988 +a(g16985 +g16987 +S'flowing' +p16989 +tp16990 +a(g16987 +g16989 +S'curves.' +p16991 +tp16992 +a(g16989 +g16991 +S'the' +p16993 +tp16994 +a(g16991 +g16993 +S'equally' +p16995 +tp16996 +a(g16993 +g16995 +S'masterful' +p16997 +tp16998 +a(g16995 +g16997 +S'color' +p16999 +tp17000 +a(g16997 +g16999 +S'scheme' +p17001 +tp17002 +a(g16999 +g17001 +S'of' +p17003 +tp17004 +a(g17001 +g17003 +S'variations' +p17005 +tp17006 +a(g17003 +g17005 +S'on' +p17007 +tp17008 +a(g17005 +g17007 +S'black,' +p17009 +tp17010 +a(g17007 +g17009 +S'white,' +p17011 +tp17012 +a(g17009 +g17011 +S'and' +p17013 +tp17014 +a(g17011 +g17013 +S'red' +p17015 +tp17016 +a(g17013 +g17015 +S'is' +p17017 +tp17018 +a(g17015 +g17017 +S'now' +p17019 +tp17020 +a(g17017 +g17019 +S'hard' +p17021 +tp17022 +a(g17019 +g17021 +S'to' +p17023 +tp17024 +a(g17021 +g17023 +S'appreciate' +p17025 +tp17026 +a(g17023 +g17025 +S'because' +p17027 +tp17028 +a(g17025 +g17027 +S'romney' +p17029 +tp17030 +a(g17027 +g17029 +S'used' +p17031 +tp17032 +a(g17029 +g17031 +S'bitumen.' +p17033 +tp17034 +a(g17031 +g17033 +S'a' +p17035 +tp17036 +a(g17033 +g17035 +S'pigment' +p17037 +tp17038 +a(g17035 +g17037 +S'derived' +p17039 +tp17040 +a(g17037 +g17039 +S'from' +p17041 +tp17042 +a(g17039 +g17041 +S'coal' +p17043 +tp17044 +a(g17041 +g17043 +S'tar,' +p17045 +tp17046 +a(g17043 +g17045 +S'bitumen' +p17047 +tp17048 +a(g17045 +g17047 +S'gives' +p17049 +tp17050 +a(g17047 +g17049 +S'lush' +p17051 +tp17052 +a(g17049 +g17051 +S'depth' +p17053 +tp17054 +a(g17051 +g17053 +S'to' +p17055 +tp17056 +a(g17053 +g17055 +S'shadows,' +p17057 +tp17058 +a(g17055 +g17057 +S'but' +p17059 +tp17060 +a(g17057 +g17059 +S'rapidly' +p17061 +tp17062 +a(g17059 +g17061 +S'decays,' +p17063 +tp17064 +a(g17061 +g17063 +S'causing' +p17065 +tp17066 +a(g17063 +g17065 +S'cracks' +p17067 +tp17068 +a(g17065 +g17067 +S'to' +p17069 +tp17070 +a(g17067 +g17069 +S'appear' +p17071 +tp17072 +a(g17069 +g17071 +S'in' +p17073 +tp17074 +a(g17071 +g17073 +S'the' +p17075 +tp17076 +a(g17073 +g17075 +S'dark' +p17077 +tp17078 +a(g17075 +g17077 +S'areas.' +p17079 +tp17080 +a(g17077 +g17079 +S'the' +p17081 +tp17082 +a(g17079 +g17081 +S'sheet' +p17083 +tp17084 +a(g17081 +g17083 +S'music' +p17085 +tp17086 +a(g17083 +g17085 +S'and' +p17087 +tp17088 +a(g17085 +g17087 +S'the' +p17089 +tp17090 +a(g17087 +g17089 +S'books' +p17091 +tp17092 +a(g17089 +g17091 +S'provide' +p17093 +tp17094 +a(g17091 +g17093 +S'clues' +p17095 +tp17096 +a(g17093 +g17095 +S'to' +p17097 +tp17098 +a(g17095 +g17097 +S'mary' +p17099 +tp17100 +a(g17097 +g17099 +S'johnson' +p17101 +tp17102 +a(g17099 +g17101 +S"blair's" +p17103 +tp17104 +a(g17101 +g17103 +S'personality.' +p17105 +tp17106 +a(g17103 +g17105 +S'she' +p17107 +tp17108 +a(g17105 +g17107 +S'was' +p17109 +tp17110 +a(g17107 +g17109 +S'a' +p17111 +tp17112 +a(g17109 +g17111 +S'prominent' +p17113 +tp17114 +a(g17111 +g17113 +S'london' +p17115 +tp17116 +a(g17113 +g17115 +S'hostess' +p17117 +tp17118 +a(g17115 +g17117 +S'with' +p17119 +tp17120 +a(g17117 +g17119 +S'acquaintances' +p17121 +tp17122 +a(g17119 +g17121 +S'in' +p17123 +tp17124 +a(g17121 +g17123 +S'musical,' +p17125 +tp17126 +a(g17123 +g17125 +S'literary,' +p17127 +tp17128 +a(g17125 +g17127 +S'and' +p17129 +tp17130 +a(g17127 +g17129 +S'aristocratic' +p17131 +tp17132 +a(g17129 +g17131 +S'circles.' +p17133 +tp17134 +a(g17131 +g17133 +S'the' +p17135 +tp17136 +a(g17133 +g17135 +S'crimson' +p17137 +tp17138 +a(g17135 +g17137 +S'drapery' +p17139 +tp17140 +a(g17137 +g17139 +S'and' +p17141 +tp17142 +a(g17139 +g17141 +S'fluted' +p17143 +tp17144 +a(g17141 +g17143 +S'column' +p17145 +tp17146 +a(g17143 +g17145 +S'are' +p17147 +tp17148 +a(g17145 +g17147 +S'grand' +p17149 +tp17150 +a(g17147 +g17149 +S'manner' +p17151 +tp17152 +a(g17149 +g17151 +S'attributes' +p17153 +tp17154 +a(g17151 +g17153 +S'of' +p17155 +tp17156 +a(g17153 +g17155 +S'classical' +p17157 +tp17158 +a(g17155 +g17157 +S'culture.' +p17159 +tp17160 +a(g17157 +g17159 +S"romney's" +p17161 +tp17162 +a(g17159 +g17161 +S'studio' +p17163 +tp17164 +a(g17161 +g17163 +S'appointment' +p17165 +tp17166 +a(g17163 +g17165 +S'books' +p17167 +tp17168 +a(g17165 +g17167 +S'indicate' +p17169 +tp17170 +a(g17167 +g17169 +S'that' +p17171 +tp17172 +a(g17169 +g17171 +S'mrs.' +p17173 +tp17174 +a(g17171 +g17173 +S'blair' +p17175 +tp17176 +a(g17173 +g17175 +S'sat' +p17177 +tp17178 +a(g17175 +g17177 +S'seven' +p17179 +tp17180 +a(g17177 +g17179 +S'times' +p17181 +tp17182 +a(g17179 +g17181 +S'between' +p17183 +tp17184 +a(g17181 +g17183 +S'13' +p17185 +tp17186 +a(g17183 +g17185 +S'april' +p17187 +tp17188 +a(g17185 +g17187 +S'1787' +p17189 +tp17190 +a(g17187 +g17189 +S'and' +p17191 +tp17192 +a(g17189 +g17191 +S'4' +p17193 +tp17194 +a(g17191 +g17193 +S'may' +p17195 +tp17196 +a(g17193 +g17195 +S'1789.' +p17197 +tp17198 +a(g17195 +g17197 +S'ironically,' +p17199 +tp17200 +a(g17197 +g17199 +S"romney's" +p17201 +tp17202 +a(g17199 +g17201 +S'lifelong' +p17203 +tp17204 +a(g17201 +g17203 +S'ambition' +p17205 +tp17206 +a(g17203 +g17205 +S'to' +p17207 +tp17208 +a(g17205 +g17207 +S'create' +p17209 +tp17210 +a(g17207 +g17209 +S'monumental' +p17211 +tp17212 +a(g17209 +g17211 +S'scenes' +p17213 +tp17214 +a(g17211 +g17213 +S'from' +p17215 +tp17216 +a(g17213 +g17215 +S'history' +p17217 +tp17218 +a(g17215 +g17217 +S'and' +p17219 +tp17220 +a(g17217 +g17219 +S'literature' +p17221 +tp17222 +a(g17219 +g17221 +S'was' +p17223 +tp17224 +a(g17221 +g17223 +S'thwarted' +p17225 +tp17226 +a(g17223 +g17225 +S'by' +p17227 +tp17228 +a(g17225 +g17227 +S'his' +p17229 +tp17230 +a(g17227 +g17229 +S'own' +p17231 +tp17232 +a(g17229 +g17231 +S'rejection' +p17233 +tp17234 +a(g17231 +g17233 +S'of' +p17235 +tp17236 +a(g17233 +g17235 +S"london's" +p17237 +tp17238 +a(g17235 +g17237 +S'royal' +p17239 +tp17240 +a(g17237 +g17239 +S'academy,' +p17241 +tp17242 +a(g17239 +g17241 +S"england's" +p17243 +tp17244 +a(g17241 +g17243 +S'only' +p17245 +tp17246 +a(g17243 +g17245 +S'major' +p17247 +tp17248 +a(g17245 +g17247 +S'avenue' +p17249 +tp17250 +a(g17247 +g17249 +S'for' +p17251 +tp17252 +a(g17249 +g17251 +S'exhibiting' +p17253 +tp17254 +a(g17251 +g17253 +S'or' +p17255 +tp17256 +a(g17253 +g17255 +S'selling' +p17257 +tp17258 +a(g17255 +g17257 +S'such' +p17259 +tp17260 +a(g17257 +g17259 +S'narrative' +p17261 +tp17262 +a(g17259 +g17261 +S'pictures.' +p17263 +tp17264 +a(g17261 +g17263 +S'instead,' +p17265 +tp17266 +a(g17263 +g17265 +S'he' +p17267 +tp17268 +a(g17265 +g17267 +S'achieved' +p17269 +tp17270 +a(g17267 +g17269 +S'fame' +p17271 +tp17272 +a(g17269 +g17271 +S'and' +p17273 +tp17274 +a(g17271 +g17273 +S'fortune' +p17275 +tp17276 +a(g17273 +g17275 +S'for' +p17277 +tp17278 +a(g17275 +g17277 +S'doing' +p17279 +tp17280 +a(g17277 +g17279 +S'what' +p17281 +tp17282 +a(g17279 +g17281 +S'he' +p17283 +tp17284 +a(g17281 +g17283 +S'liked' +p17285 +tp17286 +a(g17283 +g17285 +S'least—creating' +p17287 +tp17288 +a(g17285 +g17287 +S'likenesses.' +p17289 +tp17290 +a(g17287 +g17289 +S'romney' +p17291 +tp17292 +a(g17289 +g17291 +S'muttered' +p17293 +tp17294 +a(g17291 +g17293 +S'about' +p17295 +tp17296 +a(g17293 +g17295 +S'"this' +p17297 +tp17298 +a(g17295 +g17297 +S'cursed' +p17299 +tp17300 +a(g17297 +g17299 +S'portrait-painting!' +p17301 +tp17302 +a(g17299 +g17301 +S'how' +p17303 +tp17304 +a(g17301 +g17303 +S'i' +p17305 +tp17306 +a(g17303 +g17305 +S'am' +p17307 +tp17308 +a(g17305 +g17307 +S'shackled' +p17309 +tp17310 +a(g17307 +g17309 +S'with' +p17311 +tp17312 +a(g17309 +g17311 +S'it!"' +p17313 +tp17314 +a(g17311 +g17313 +S'matteo' +p17315 +tp17316 +a(g17313 +g17315 +S'civitali' +p17317 +tp17318 +a(g17315 +g17317 +S'was' +p17319 +tp17320 +a(g17317 +g17319 +S'born' +p17321 +tp17322 +a(g17319 +g17321 +S'in' +p17323 +tp17324 +a(g17321 +g17323 +S'the' +p17325 +tp17326 +a(g17323 +g17325 +S'city' +p17327 +tp17328 +a(g17325 +g17327 +S'of' +p17329 +tp17330 +a(g17327 +g17329 +S'lucca,' +p17331 +tp17332 +a(g17329 +g17331 +S'in' +p17333 +tp17334 +a(g17331 +g17333 +S'tuscany.' +p17335 +tp17336 +a(g17333 +g17335 +S'probably' +p17337 +tp17338 +a(g17335 +g17337 +S'trained' +p17339 +tp17340 +a(g17337 +g17339 +S'in' +p17341 +tp17342 +a(g17339 +g17341 +S'the' +p17343 +tp17344 +a(g17341 +g17343 +S'florentine' +p17345 +tp17346 +a(g17343 +g17345 +S'studio' +p17347 +tp17348 +a(g17345 +g17347 +S'of' +p17349 +tp17350 +a(g17347 +g17349 +S'according' +p17351 +tp17352 +a(g17349 +g17351 +S'to' +p17353 +tp17354 +a(g17351 +g17353 +S'legend,' +p17355 +tp17356 +a(g17353 +g17355 +S'the' +p17357 +tp17358 +a(g17355 +g17357 +S'pagan' +p17359 +tp17360 +a(g17357 +g17359 +S'emperor' +p17361 +tp17362 +a(g17359 +g17361 +S'diocletian' +p17363 +tp17364 +a(g17361 +g17363 +S'ordered' +p17365 +tp17366 +a(g17363 +g17365 +S'that' +p17367 +tp17368 +a(g17365 +g17367 +S'saint' +p17369 +tp17370 +a(g17367 +g17369 +S'sebastian' +p17371 +tp17372 +a(g17369 +g17371 +S'be' +p17373 +tp17374 +a(g17371 +g17373 +S'shot' +p17375 +tp17376 +a(g17373 +g17375 +S'with' +p17377 +tp17378 +a(g17375 +g17377 +S'arrows' +p17379 +tp17380 +a(g17377 +g17379 +S'in' +p17381 +tp17382 +a(g17379 +g17381 +S'persecution' +p17383 +tp17384 +a(g17381 +g17383 +S'of' +p17385 +tp17386 +a(g17383 +g17385 +S'his' +p17387 +tp17388 +a(g17385 +g17387 +S'christian' +p17389 +tp17390 +a(g17387 +g17389 +S'faith.' +p17391 +tp17392 +a(g17389 +g17391 +S'with' +p17393 +tp17394 +a(g17391 +g17393 +S'his' +p17395 +tp17396 +a(g17393 +g17395 +S'hands' +p17397 +tp17398 +a(g17395 +g17397 +S'bound' +p17399 +tp17400 +a(g17397 +g17399 +S'behind' +p17401 +tp17402 +a(g17399 +g17401 +S'him' +p17403 +tp17404 +a(g17401 +g17403 +S'to' +p17405 +tp17406 +a(g17403 +g17405 +S'a' +p17407 +tp17408 +a(g17405 +g17407 +S'tree' +p17409 +tp17410 +a(g17407 +g17409 +S'trunk,' +p17411 +tp17412 +a(g17409 +g17411 +S'sebastian' +p17413 +tp17414 +a(g17411 +g17413 +S'stands' +p17415 +tp17416 +a(g17413 +g17415 +S'in' +p17417 +tp17418 +a(g17415 +g17417 +S'classical' +p17419 +tp17420 +a(g17417 +g17419 +S'the' +p17421 +tp17422 +a(g17419 +g17421 +S'story' +p17423 +tp17424 +a(g17421 +g17423 +S'of' +p17425 +tp17426 +a(g17423 +g17425 +S'saint' +p17427 +tp17428 +a(g17425 +g17427 +S'sebastian' +p17429 +tp17430 +a(g17427 +g17429 +S'was' +p17431 +tp17432 +a(g17429 +g17431 +S'popular' +p17433 +tp17434 +a(g17431 +g17433 +S'during' +p17435 +tp17436 +a(g17433 +g17435 +S'the' +p17437 +tp17438 +a(g17435 +g17437 +S'italian' +p17439 +tp17440 +a(g17437 +g17439 +S'renaissance.' +p17441 +tp17442 +a(g17439 +g17441 +S'the' +p17443 +tp17444 +a(g17441 +g17443 +S'public' +p17445 +tp17446 +a(g17443 +g17445 +S'venerated' +p17447 +tp17448 +a(g17445 +g17447 +S'sebastian' +p17449 +tp17450 +a(g17447 +g17449 +S'as' +p17451 +tp17452 +a(g17449 +g17451 +S'a' +p17453 +tp17454 +a(g17451 +g17453 +S'defender' +p17455 +tp17456 +a(g17453 +g17455 +S'against' +p17457 +tp17458 +a(g17455 +g17457 +S'the' +p17459 +tp17460 +a(g17457 +g17459 +S'plague,' +p17461 +tp17462 +a(g17459 +g17461 +S'and' +p17463 +tp17464 +a(g17461 +g17463 +S'his' +p17465 +tp17466 +a(g17463 +g17465 +S'story' +p17467 +tp17468 +a(g17465 +g17467 +S'provided' +p17469 +tp17470 +a(g17467 +g17469 +S'artists' +p17471 +tp17472 +a(g17469 +g17471 +S'an' +p17473 +tp17474 +a(g17471 +g17473 +S'opportunity' +p17475 +tp17476 +a(g17473 +g17475 +S'to' +p17477 +tp17478 +a(g17475 +g17477 +S'portray' +p17479 +tp17480 +a(g17477 +g17479 +S'the' +p17481 +tp17482 +a(g17479 +g17481 +S'male' +p17483 +tp17484 +a(g17481 +g17483 +S'nude.' +p17485 +tp17486 +a(g17483 +g17485 +S'the' +p17487 +tp17488 +a(g17485 +g17487 +S'intimate' +p17489 +tp17490 +a(g17487 +g17489 +S'scale' +p17491 +tp17492 +a(g17489 +g17491 +S'of' +p17493 +tp17494 +a(g17491 +g17493 +S'this' +p17495 +tp17496 +a(g17493 +g17495 +S'figure,' +p17497 +tp17498 +a(g17495 +g17497 +S'perhaps' +p17499 +tp17500 +a(g17497 +g17499 +S'based' +p17501 +tp17502 +a(g17499 +g17501 +S'on' +p17503 +tp17504 +a(g17501 +g17503 +S'a' +p17505 +tp17506 +a(g17503 +g17505 +S'larger' +p17507 +tp17508 +a(g17505 +g17507 +S'version' +p17509 +tp17510 +a(g17507 +g17509 +S'for' +p17511 +tp17512 +a(g17509 +g17511 +S'a' +p17513 +tp17514 +a(g17511 +g17513 +S'church' +p17515 +tp17516 +a(g17513 +g17515 +S'altar,' +p17517 +tp17518 +a(g17515 +g17517 +S'suggests' +p17519 +tp17520 +a(g17517 +g17519 +S'that' +p17521 +tp17522 +a(g17519 +g17521 +S'it' +p17523 +tp17524 +a(g17521 +g17523 +S'was' +p17525 +tp17526 +a(g17523 +g17525 +S'made' +p17527 +tp17528 +a(g17525 +g17527 +S'for' +p17529 +tp17530 +a(g17527 +g17529 +S'devotion' +p17531 +tp17532 +a(g17529 +g17531 +S'in' +p17533 +tp17534 +a(g17531 +g17533 +S'a' +p17535 +tp17536 +a(g17533 +g17535 +S'private' +p17537 +tp17538 +a(g17535 +g17537 +S'home.' +p17539 +tp17540 +a(g17537 +g17539 +S'like' +p17541 +tp17542 +a(g17539 +g17541 +S'desiderio,' +p17543 +tp17544 +a(g17541 +g17543 +S'antonio' +p17545 +tp17546 +a(g17543 +g17545 +S'rossellino' +p17547 +tp17548 +a(g17545 +g17547 +S'probably' +p17549 +tp17550 +a(g17547 +g17549 +S'came' +p17551 +tp17552 +a(g17549 +g17551 +S'from' +p17553 +tp17554 +a(g17551 +g17553 +S'settignano.' +p17555 +tp17556 +a(g17553 +g17555 +S'he' +p17557 +tp17558 +a(g17555 +g17557 +S'was' +p17559 +tp17560 +a(g17557 +g17559 +S'the' +p17561 +tp17562 +a(g17559 +g17561 +S'most' +p17563 +tp17564 +a(g17561 +g17563 +S'accomplished' +p17565 +tp17566 +a(g17563 +g17565 +S'sculptor' +p17567 +tp17568 +a(g17565 +g17567 +S'among' +p17569 +tp17570 +a(g17567 +g17569 +S'five' +p17571 +tp17572 +a(g17569 +g17571 +S'brothers,' +p17573 +tp17574 +a(g17571 +g17573 +S'all' +p17575 +tp17576 +a(g17573 +g17575 +S'trained' +p17577 +tp17578 +a(g17575 +g17577 +S'in' +p17579 +tp17580 +a(g17577 +g17579 +S'the' +p17581 +tp17582 +a(g17579 +g17581 +S'important' +p17583 +tp17584 +a(g17581 +g17583 +S'workshop' +p17585 +tp17586 +a(g17583 +g17585 +S'led' +p17587 +tp17588 +a(g17585 +g17587 +S'by' +p17589 +tp17590 +a(g17587 +g17589 +S'the' +p17591 +tp17592 +a(g17589 +g17591 +S'eldest' +p17593 +tp17594 +a(g17591 +g17593 +S'brother' +p17595 +tp17596 +a(g17593 +g17595 +S'bernardo.' +p17597 +tp17598 +a(g17595 +g17597 +S'widespread' +p17599 +tp17600 +a(g17597 +g17599 +S'admiration' +p17601 +tp17602 +a(g17599 +g17601 +S'for' +p17603 +tp17604 +a(g17601 +g17603 +S"antonio's" +p17605 +tp17606 +a(g17603 +g17605 +S'skill' +p17607 +tp17608 +a(g17605 +g17607 +S'may' +p17609 +tp17610 +a(g17607 +g17609 +S'explain' +p17611 +tp17612 +a(g17609 +g17611 +S'why' +p17613 +tp17614 +a(g17611 +g17613 +S'his' +p17615 +tp17616 +a(g17613 +g17615 +S'nickname' +p17617 +tp17618 +a(g17615 +g17617 +S'john' +p17619 +tp17620 +a(g17617 +g17619 +S'the' +p17621 +tp17622 +a(g17619 +g17621 +S'baptist,' +p17623 +tp17624 +a(g17621 +g17623 +S'portrayed' +p17625 +tp17626 +a(g17623 +g17625 +S'by' +p17627 +tp17628 +a(g17625 +g17627 +S'antonio' +p17629 +tp17630 +a(g17627 +g17629 +S'in' +p17631 +tp17632 +a(g17629 +g17631 +S'this' +p17633 +tp17634 +a(g17631 +g17633 +S'graceful' +p17635 +tp17636 +a(g17633 +g17635 +S'bust,' +p17637 +tp17638 +a(g17635 +g17637 +S'was' +p17639 +tp17640 +a(g17637 +g17639 +S'a' +p17641 +tp17642 +a(g17639 +g17641 +S'patron' +p17643 +tp17644 +a(g17641 +g17643 +S'saint' +p17645 +tp17646 +a(g17643 +g17645 +S'of' +p17647 +tp17648 +a(g17645 +g17647 +S'the' +p17649 +tp17650 +a(g17647 +g17649 +S'city' +p17651 +tp17652 +a(g17649 +g17651 +S'of' +p17653 +tp17654 +a(g17651 +g17653 +S'florence' +p17655 +tp17656 +a(g17653 +g17655 +S'and' +p17657 +tp17658 +a(g17655 +g17657 +S'a' +p17659 +tp17660 +a(g17657 +g17659 +S'favorite' +p17661 +tp17662 +a(g17659 +g17661 +S'figure' +p17663 +tp17664 +a(g17661 +g17663 +S'in' +p17665 +tp17666 +a(g17663 +g17665 +S'florentine' +p17667 +tp17668 +a(g17665 +g17667 +S'painting' +p17669 +tp17670 +a(g17667 +g17669 +S'and' +p17671 +tp17672 +a(g17669 +g17671 +S'sculpture.' +p17673 +tp17674 +a(g17671 +g17673 +S'the' +p17675 +tp17676 +a(g17673 +g17675 +S'florentine' +p17677 +tp17678 +a(g17675 +g17677 +S'theologian,' +p17679 +tp17680 +a(g17677 +g17679 +S'cardinal' +p17681 +tp17682 +a(g17679 +g17681 +S'giovanni' +p17683 +tp17684 +a(g17681 +g17683 +S'dominici,' +p17685 +tp17686 +a(g17683 +g17685 +S'recommended' +p17687 +tp17688 +a(g17685 +g17687 +S'around' +p17689 +tp17690 +a(g17687 +g17689 +S'1410' +p17691 +tp17692 +a(g17689 +g17691 +S'that' +p17693 +tp17694 +a(g17691 +g17693 +S'parents' +p17695 +tp17696 +a(g17693 +g17695 +S'display' +p17697 +tp17698 +a(g17695 +g17697 +S'images' +p17699 +tp17700 +a(g17697 +g17699 +S'of' +p17701 +tp17702 +a(g17699 +g17701 +S'the' +p17703 +tp17704 +a(g17701 +g17703 +S'christ' +p17705 +tp17706 +a(g17703 +g17705 +S'child' +p17707 +tp17708 +a(g17705 +g17707 +S'and' +p17709 +tp17710 +a(g17707 +g17709 +S'the' +p17711 +tp17712 +a(g17709 +g17711 +S'young' +p17713 +tp17714 +a(g17711 +g17713 +S'john' +p17715 +tp17716 +a(g17713 +g17715 +S'together' +p17717 +tp17718 +a(g17715 +g17717 +S'in' +p17719 +tp17720 +a(g17717 +g17719 +S'their' +p17721 +tp17722 +a(g17719 +g17721 +S'homes,' +p17723 +tp17724 +a(g17721 +g17723 +S'as' +p17725 +tp17726 +a(g17723 +g17725 +S'religious' +p17727 +tp17728 +a(g17725 +g17727 +S'and' +p17729 +tp17730 +a(g17727 +g17729 +S'moral' +p17731 +tp17732 +a(g17729 +g17731 +S'examples' +p17733 +tp17734 +a(g17731 +g17733 +S'for' +p17735 +tp17736 +a(g17733 +g17735 +S'their' +p17737 +tp17738 +a(g17735 +g17737 +S'children.' +p17739 +tp17740 +a(g17737 +g17739 +S'when' +p17741 +tp17742 +a(g17739 +g17741 +S'it' +p17743 +tp17744 +a(g17741 +g17743 +S'was' +p17745 +tp17746 +a(g17743 +g17745 +S'first' +p17747 +tp17748 +a(g17745 +g17747 +S'made,' +p17749 +tp17750 +a(g17747 +g17749 +S'this' +p17751 +tp17752 +a(g17749 +g17751 +S'bust' +p17753 +tp17754 +a(g17751 +g17753 +S'may' +p17755 +tp17756 +a(g17753 +g17755 +S'have' +p17757 +tp17758 +a(g17755 +g17757 +S'served' +p17759 +tp17760 +a(g17757 +g17759 +S'just' +p17761 +tp17762 +a(g17759 +g17761 +S'such' +p17763 +tp17764 +a(g17761 +g17763 +S'a' +p17765 +tp17766 +a(g17763 +g17765 +S'purpose' +p17767 +tp17768 +a(g17765 +g17767 +S'in' +p17769 +tp17770 +a(g17767 +g17769 +S'a' +p17771 +tp17772 +a(g17769 +g17771 +S'florentine' +p17773 +tp17774 +a(g17771 +g17773 +S'home.' +p17775 +tp17776 +a(g17773 +g17775 +S'but' +p17777 +tp17778 +a(g17775 +g17777 +S'for' +p17779 +tp17780 +a(g17777 +g17779 +S'at' +p17781 +tp17782 +a(g17779 +g17781 +S'least' +p17783 +tp17784 +a(g17781 +g17783 +S'the' +p17785 +tp17786 +a(g17783 +g17785 +S'180' +p17787 +tp17788 +a(g17785 +g17787 +S'years' +p17789 +tp17790 +a(g17787 +g17789 +S'before' +p17791 +tp17792 +a(g17789 +g17791 +S'1940,' +p17793 +tp17794 +a(g17791 +g17793 +S'it' +p17795 +tp17796 +a(g17793 +g17795 +S'was' +p17797 +tp17798 +a(g17795 +g17797 +S'in' +p17799 +tp17800 +a(g17797 +g17799 +S'a' +p17801 +tp17802 +a(g17799 +g17801 +S'florentine' +p17803 +tp17804 +a(g17801 +g17803 +S'religious' +p17805 +tp17806 +a(g17803 +g17805 +S'building,' +p17807 +tp17808 +a(g17805 +g17807 +S'the' +p17809 +tp17810 +a(g17807 +g17809 +S'oratory' +p17811 +tp17812 +a(g17809 +g17811 +S'of' +p17813 +tp17814 +a(g17811 +g17813 +S'san' +p17815 +tp17816 +a(g17813 +g17815 +S'francesco' +p17817 +tp17818 +a(g17815 +g17817 +S'of' +p17819 +tp17820 +a(g17817 +g17819 +S'the' +p17821 +tp17822 +a(g17819 +g17821 +S'vanchettoni,' +p17823 +tp17824 +a(g17821 +g17823 +S'together' +p17825 +tp17826 +a(g17823 +g17825 +S'with' +p17827 +tp17828 +a(g17825 +g17827 +S'desiderio' +p17829 +tp17830 +a(g17827 +g17829 +S'da' +p17831 +tp17832 +a(g17829 +g17831 +S"settignano's" +p17833 +tp17834 +a(g17831 +g17833 +S'bust' +p17835 +tp17836 +a(g17833 +g17835 +S'of' +p17837 +tp17838 +a(g17835 +g17837 +S'the' +p17839 +tp17840 +a(g17837 +g17839 +S'christ' +p17841 +tp17842 +a(g17839 +g17841 +S'child,' +p17843 +tp17844 +a(g17841 +g17843 +S'now' +p17845 +tp17846 +a(g17843 +g17845 +S'exhibited' +p17847 +tp17848 +a(g17845 +g17847 +S'in' +p17849 +tp17850 +a(g17847 +g17849 +S'the' +p17851 +tp17852 +a(g17849 +g17851 +S'same' +p17853 +tp17854 +a(g17851 +g17853 +S'gallery.' +p17855 +tp17856 +a(g17853 +g17855 +S'the' +p17857 +tp17858 +a(g17855 +g17857 +S'desiderio' +p17859 +tp17860 +a(g17857 +g17859 +S'boy' +p17861 +tp17862 +a(g17859 +g17861 +S'is' +p17863 +tp17864 +a(g17861 +g17863 +S'considerably' +p17865 +tp17866 +a(g17863 +g17865 +S'younger,' +p17867 +tp17868 +a(g17865 +g17867 +S'with' +p17869 +tp17870 +a(g17867 +g17869 +S'plump' +p17871 +tp17872 +a(g17869 +g17871 +S'cheeks' +p17873 +tp17874 +a(g17871 +g17873 +S'and' +p17875 +tp17876 +a(g17873 +g17875 +S'silky' +p17877 +tp17878 +a(g17875 +g17877 +S'hair;' +p17879 +tp17880 +a(g17877 +g17879 +S"rossellino's" +p17881 +tp17882 +a(g17879 +g17881 +S'john' +p17883 +tp17884 +a(g17881 +g17883 +S'is' +p17885 +tp17886 +a(g17883 +g17885 +S'close' +p17887 +tp17888 +a(g17885 +g17887 +S'to' +p17889 +tp17890 +a(g17887 +g17889 +S'adolescence.' +p17891 +tp17892 +a(g17889 +g17891 +S'his' +p17893 +tp17894 +a(g17891 +g17893 +S'richly' +p17895 +tp17896 +a(g17893 +g17895 +S'waving' +p17897 +tp17898 +a(g17895 +g17897 +S'curls' +p17899 +tp17900 +a(g17897 +g17899 +S'and' +p17901 +tp17902 +a(g17899 +g17901 +S'the' +p17903 +tp17904 +a(g17901 +g17903 +S'fine' +p17905 +tp17906 +a(g17903 +g17905 +S'curving' +p17907 +tp17908 +a(g17905 +g17907 +S'lines' +p17909 +tp17910 +a(g17907 +g17909 +S'of' +p17911 +tp17912 +a(g17909 +g17911 +S'his' +p17913 +tp17914 +a(g17911 +g17913 +S'lips' +p17915 +tp17916 +a(g17913 +g17915 +S'suggest' +p17917 +tp17918 +a(g17915 +g17917 +S'the' +p17919 +tp17920 +a(g17917 +g17919 +S'beauty' +p17921 +tp17922 +a(g17919 +g17921 +S'of' +p17923 +tp17924 +a(g17921 +g17923 +S'a' +p17925 +tp17926 +a(g17923 +g17925 +S'young' +p17927 +tp17928 +a(g17925 +g17927 +S'classical' +p17929 +tp17930 +a(g17927 +g17929 +S'god.' +p17931 +tp17932 +a(g17929 +g17931 +S'holding' +p17933 +tp17934 +a(g17931 +g17933 +S'a' +p17935 +tp17936 +a(g17933 +g17935 +S'sword' +p17937 +tp17938 +a(g17935 +g17937 +S'and' +p17939 +tp17940 +a(g17937 +g17939 +S'olive' +p17941 +tp17942 +a(g17939 +g17941 +S'branch,' +p17943 +tp17944 +a(g17941 +g17943 +S'this' +p17945 +tp17946 +a(g17943 +g17945 +S'figure' +p17947 +tp17948 +a(g17945 +g17947 +S'represents' +p17949 +tp17950 +a(g17947 +g17949 +S'justice.' +p17951 +tp17952 +a(g17949 +g17951 +S'it' +p17953 +tp17954 +a(g17951 +g17953 +S'was' +p17955 +tp17956 +a(g17953 +g17955 +S'commissioned' +p17957 +tp17958 +a(g17955 +g17957 +S'to' +p17959 +tp17960 +a(g17957 +g17959 +S'decorate' +p17961 +tp17962 +a(g17959 +g17961 +S'a' +p17963 +tp17964 +a(g17961 +g17963 +S'monument' +p17965 +tp17966 +a(g17963 +g17965 +S'in' +p17967 +tp17968 +a(g17965 +g17967 +S'which' +p17969 +tp17970 +a(g17967 +g17969 +S'the' +p17971 +tp17972 +a(g17969 +g17971 +S'hearts' +p17973 +tp17974 +a(g17971 +g17973 +S'of' +p17975 +tp17976 +a(g17973 +g17975 +S'french' +p17977 +tp17978 +a(g17975 +g17977 +S'king' +p17979 +tp17980 +a(g17977 +g17979 +S'henry' +p17981 +tp17982 +a(g17979 +g17981 +S'iv' +p17983 +tp17984 +a(g17981 +g17983 +S'and' +p17985 +tp17986 +a(g17983 +g17985 +S'his' +p17987 +tp17988 +a(g17985 +g17987 +S'queen,' +p17989 +tp17990 +a(g17987 +g17989 +S'marie' +p17991 +tp17992 +a(g17989 +g17991 +S"de'medici," +p17993 +tp17994 +a(g17991 +g17993 +S'were' +p17995 +tp17996 +a(g17993 +g17995 +S'entombed' +p17997 +tp17998 +a(g17995 +g17997 +S'at' +p17999 +tp18000 +a(g17997 +g17999 +S'the' +p18001 +tp18002 +a(g17999 +g18001 +S'jesuit' +p18003 +tp18004 +a(g18001 +g18003 +S'college' +p18005 +tp18006 +a(g18003 +g18005 +S'of' +p18007 +tp18008 +a(g18005 +g18007 +S'la' +p18009 +tp18010 +a(g18007 +g18009 +S'flèche.' +p18011 +tp18012 +a(g18009 +g18011 +S'though' +p18013 +tp18014 +a(g18011 +g18013 +S'the' +p18015 +tp18016 +a(g18013 +g18015 +S'project' +p18017 +tp18018 +a(g18015 +g18017 +S'was' +p18019 +tp18020 +a(g18017 +g18019 +S'never' +p18021 +tp18022 +a(g18019 +g18021 +S'completed,' +p18023 +tp18024 +a(g18021 +g18023 +S'a' +p18025 +tp18026 +a(g18023 +g18025 +S'drawing' +p18027 +tp18028 +a(g18025 +g18027 +S'for' +p18029 +tp18030 +a(g18027 +g18029 +S'it' +p18031 +tp18032 +a(g18029 +g18031 +S'indicates' +p18033 +tp18034 +a(g18031 +g18033 +S'that' +p18035 +tp18036 +a(g18033 +g18035 +S'this' +p18037 +tp18038 +a(g18035 +g18037 +S'figure,' +p18039 +tp18040 +a(g18037 +g18039 +S'placed' +p18041 +tp18042 +a(g18039 +g18041 +S'on' +p18043 +tp18044 +a(g18041 +g18043 +S'the' +p18045 +tp18046 +a(g18043 +g18045 +S'right' +p18047 +tp18048 +a(g18045 +g18047 +S'corner,' +p18049 +tp18050 +a(g18047 +g18049 +S'would' +p18051 +tp18052 +a(g18049 +g18051 +S'have' +p18053 +tp18054 +a(g18051 +g18053 +S'gazed' +p18055 +tp18056 +a(g18053 +g18055 +S'in' +p18057 +tp18058 +a(g18055 +g18057 +S'the' +p18059 +tp18060 +a(g18057 +g18059 +S'direction' +p18061 +tp18062 +a(g18059 +g18061 +S'of' +p18063 +tp18064 +a(g18061 +g18063 +S'the' +p18065 +tp18066 +a(g18063 +g18065 +S'king' +p18067 +tp18068 +a(g18065 +g18067 +S'and' +p18069 +tp18070 +a(g18067 +g18069 +S'queen,' +p18071 +tp18072 +a(g18069 +g18071 +S'whose' +p18073 +tp18074 +a(g18071 +g18073 +S'statues' +p18075 +tp18076 +a(g18073 +g18075 +S'were' +p18077 +tp18078 +a(g18075 +g18077 +S'planned' +p18079 +tp18080 +a(g18077 +g18079 +S'for' +p18081 +tp18082 +a(g18079 +g18081 +S'the' +p18083 +tp18084 +a(g18081 +g18083 +S'center.' +p18085 +tp18086 +a(g18083 +g18085 +S'this' +p18087 +tp18088 +a(g18085 +g18087 +S'is' +p18089 +tp18090 +a(g18087 +g18089 +S'the' +p18091 +tp18092 +a(g18089 +g18091 +S'only' +p18093 +tp18094 +a(g18091 +g18093 +S'figure' +p18095 +tp18096 +a(g18093 +g18095 +S'from' +p18097 +tp18098 +a(g18095 +g18097 +S'the' +p18099 +tp18100 +a(g18097 +g18099 +S'monument' +p18101 +tp18102 +a(g18099 +g18101 +S'known' +p18103 +tp18104 +a(g18101 +g18103 +S'today' +p18105 +tp18106 +a(g18103 +g18105 +S'and' +p18107 +tp18108 +a(g18105 +g18107 +S'may' +p18109 +tp18110 +a(g18107 +g18109 +S'have' +p18111 +tp18112 +a(g18109 +g18111 +S'been' +p18113 +tp18114 +a(g18111 +g18113 +S'finished' +p18115 +tp18116 +a(g18113 +g18115 +S'later' +p18117 +tp18118 +a(g18115 +g18117 +S'by' +p18119 +tp18120 +a(g18117 +g18119 +S'another' +p18121 +tp18122 +a(g18119 +g18121 +S'artist.' +p18123 +tp18124 +a(g18121 +g18123 +S'that' +p18125 +tp18126 +a(g18123 +g18125 +S'would' +p18127 +tp18128 +a(g18125 +g18127 +S'explain' +p18129 +tp18130 +a(g18127 +g18129 +S'the' +p18131 +tp18132 +a(g18129 +g18131 +S'differences' +p18133 +tp18134 +a(g18131 +g18133 +S'between' +p18135 +tp18136 +a(g18133 +g18135 +S'this' +p18137 +tp18138 +a(g18135 +g18137 +S'work' +p18139 +tp18140 +a(g18137 +g18139 +S'and' +p18141 +tp18142 +a(g18139 +g18141 +S'others' +p18143 +tp18144 +a(g18141 +g18143 +S'by' +p18145 +tp18146 +a(g18143 +g18145 +S'prieur,' +p18147 +tp18148 +a(g18145 +g18147 +S'which' +p18149 +tp18150 +a(g18147 +g18149 +S'tend,' +p18151 +tp18152 +a(g18149 +g18151 +S'for' +p18153 +tp18154 +a(g18151 +g18153 +S'example,' +p18155 +tp18156 +a(g18153 +g18155 +S'to' +p18157 +tp18158 +a(g18155 +g18157 +S'have' +p18159 +tp18160 +a(g18157 +g18159 +S'more' +p18161 +tp18162 +a(g18159 +g18161 +S'voluminous' +p18163 +tp18164 +a(g18161 +g18163 +S'drapery' +p18165 +tp18166 +a(g18163 +g18165 +S'than' +p18167 +tp18168 +a(g18165 +g18167 +S"justice's" +p18169 +tp18170 +a(g18167 +g18169 +S'form-fitting' +p18171 +tp18172 +a(g18169 +g18171 +S'doublet.' +p18173 +tp18174 +a(g18171 +g18173 +S'her' +p18175 +tp18176 +a(g18173 +g18175 +S'idealized' +p18177 +tp18178 +a(g18175 +g18177 +S'features,' +p18179 +tp18180 +a(g18177 +g18179 +S'smooth' +p18181 +tp18182 +a(g18179 +g18181 +S'surfaces,' +p18183 +tp18184 +a(g18181 +g18183 +S'and' +p18185 +tp18186 +a(g18183 +g18185 +S'dignified,' +p18187 +tp18188 +a(g18185 +g18187 +S'still' +p18189 +tp18190 +a(g18187 +g18189 +S'pose' +p18191 +tp18192 +a(g18189 +g18191 +S'are' +p18193 +tp18194 +a(g18191 +g18193 +S'all' +p18195 +tp18196 +a(g18193 +g18195 +S'characteristic' +p18197 +tp18198 +a(g18195 +g18197 +S'of' +p18199 +tp18200 +a(g18197 +g18199 +S'the' +p18201 +tp18202 +a(g18199 +g18201 +S'classicizing' +p18203 +tp18204 +a(g18201 +g18203 +S'taste' +p18205 +tp18206 +a(g18203 +g18205 +S'in' +p18207 +tp18208 +a(g18205 +g18207 +S'french' +p18209 +tp18210 +a(g18207 +g18209 +S'sculpture' +p18211 +tp18212 +a(g18209 +g18211 +S'during' +p18213 +tp18214 +a(g18211 +g18213 +S'the' +p18215 +tp18216 +a(g18213 +g18215 +S'early' +p18217 +tp18218 +a(g18215 +g18217 +S'1600s.' +p18219 +tp18220 +a(g18217 +g18219 +S'while' +p18221 +tp18222 +a(g18219 +g18221 +S'the' +p18223 +tp18224 +a(g18221 +g18223 +S'sword' +p18225 +tp18226 +a(g18223 +g18225 +S'that' +p18227 +tp18228 +a(g18225 +g18227 +S'the' +p18229 +tp18230 +a(g18227 +g18229 +S'figure' +p18231 +tp18232 +a(g18229 +g18231 +S'holds' +p18233 +tp18234 +a(g18231 +g18233 +S'is' +p18235 +tp18236 +a(g18233 +g18235 +S'a' +p18237 +tp18238 +a(g18235 +g18237 +S'common' +p18239 +tp18240 +a(g18237 +g18239 +S'attribute' +p18241 +tp18242 +a(g18239 +g18241 +S'of' +p18243 +tp18244 +a(g18241 +g18243 +S'justice,' +p18245 +tp18246 +a(g18243 +g18245 +S'the' +p18247 +tp18248 +a(g18245 +g18247 +S'olive' +p18249 +tp18250 +a(g18247 +g18249 +S'branch' +p18251 +tp18252 +a(g18249 +g18251 +S'is' +p18253 +tp18254 +a(g18251 +g18253 +S'more' +p18255 +tp18256 +a(g18253 +g18255 +S'often' +p18257 +tp18258 +a(g18255 +g18257 +S'associated' +p18259 +tp18260 +a(g18257 +g18259 +S'with' +p18261 +tp18262 +a(g18259 +g18261 +S'peace.' +p18263 +tp18264 +a(g18261 +g18263 +S'their' +p18265 +tp18266 +a(g18263 +g18265 +S'combination' +p18267 +tp18268 +a(g18265 +g18267 +S'here' +p18269 +tp18270 +a(g18267 +g18269 +S'may' +p18271 +tp18272 +a(g18269 +g18271 +S'suggest' +p18273 +tp18274 +a(g18271 +g18273 +S'that' +p18275 +tp18276 +a(g18273 +g18275 +S'france,' +p18277 +tp18278 +a(g18275 +g18277 +S'after' +p18279 +tp18280 +a(g18277 +g18279 +S'decades' +p18281 +tp18282 +a(g18279 +g18281 +S'of' +p18283 +tp18284 +a(g18281 +g18283 +S'bloody' +p18285 +tp18286 +a(g18283 +g18285 +S'religious' +p18287 +tp18288 +a(g18285 +g18287 +S'wars' +p18289 +tp18290 +a(g18287 +g18289 +S'between' +p18291 +tp18292 +a(g18289 +g18291 +S'protestant' +p18293 +tp18294 +a(g18291 +g18293 +S'hugenots' +p18295 +tp18296 +a(g18293 +g18295 +S'and' +p18297 +tp18298 +a(g18295 +g18297 +S'catholics,' +p18299 +tp18300 +a(g18297 +g18299 +S'wished' +p18301 +tp18302 +a(g18299 +g18301 +S'to' +p18303 +tp18304 +a(g18301 +g18303 +S'see' +p18305 +tp18306 +a(g18303 +g18305 +S'peace' +p18307 +tp18308 +a(g18305 +g18307 +S'as' +p18309 +tp18310 +a(g18307 +g18309 +S'an' +p18311 +tp18312 +a(g18309 +g18311 +S'aspect' +p18313 +tp18314 +a(g18311 +g18313 +S'of' +p18315 +tp18316 +a(g18313 +g18315 +S'justice.' +p18317 +tp18318 +a(g18315 +g18317 +S'carpeaux' +p18319 +tp18320 +a(g18317 +g18319 +S'received' +p18321 +tp18322 +a(g18319 +g18321 +S'many' +p18323 +tp18324 +a(g18321 +g18323 +S'important' +p18325 +tp18326 +a(g18323 +g18325 +S'public' +p18327 +tp18328 +a(g18325 +g18327 +S'commissions,' +p18329 +tp18330 +a(g18327 +g18329 +S'but,' +p18331 +tp18332 +a(g18329 +g18331 +S'like' +p18333 +tp18334 +a(g18331 +g18333 +S'other' +p18335 +tp18336 +a(g18333 +g18335 +S'sculptors' +p18337 +tp18338 +a(g18335 +g18337 +S'of' +p18339 +tp18340 +a(g18337 +g18339 +S'his' +p18341 +tp18342 +a(g18339 +g18341 +S'day,' +p18343 +tp18344 +a(g18341 +g18343 +S'increasingly' +p18345 +tp18346 +a(g18343 +g18345 +S'made' +p18347 +tp18348 +a(g18345 +g18347 +S'uncommissioned' +p18349 +tp18350 +a(g18347 +g18349 +S'works' +p18351 +tp18352 +a(g18349 +g18351 +S'on' +p18353 +tp18354 +a(g18351 +g18353 +S'speculation.' +p18355 +tp18356 +a(g18353 +g18355 +S'carpeaux' +p18357 +tp18358 +a(g18355 +g18357 +S'challenged' +p18359 +tp18360 +a(g18357 +g18359 +S'the' +p18361 +tp18362 +a(g18359 +g18361 +S'academic' +p18363 +tp18364 +a(g18361 +g18363 +S'tradition,' +p18365 +tp18366 +a(g18363 +g18365 +S'which' +p18367 +tp18368 +a(g18365 +g18367 +S'was' +p18369 +tp18370 +a(g18367 +g18369 +S'still' +p18371 +tp18372 +a(g18369 +g18371 +S'dominated' +p18373 +tp18374 +a(g18371 +g18373 +S'by' +p18375 +tp18376 +a(g18373 +g18375 +S'the' +p18377 +tp18378 +a(g18375 +g18377 +S'influence' +p18379 +tp18380 +a(g18377 +g18379 +S'of' +p18381 +tp18382 +a(g18379 +g18381 +S'ancient' +p18383 +tp18384 +a(g18381 +g18383 +S'sculpture.' +p18385 +tp18386 +a(g18383 +g18385 +S'he' +p18387 +tp18388 +a(g18385 +g18387 +S'sought' +p18389 +tp18390 +a(g18387 +g18389 +S'subjects' +p18391 +tp18392 +a(g18389 +g18391 +S'in' +p18393 +tp18394 +a(g18391 +g18393 +S'the' +p18395 +tp18396 +a(g18393 +g18395 +S'streets' +p18397 +tp18398 +a(g18395 +g18397 +S'and' +p18399 +tp18400 +a(g18397 +g18399 +S'treated' +p18401 +tp18402 +a(g18399 +g18401 +S'them' +p18403 +tp18404 +a(g18401 +g18403 +S'with' +p18405 +tp18406 +a(g18403 +g18405 +S'decidedly' +p18407 +tp18408 +a(g18405 +g18407 +S'unclassical' +p18409 +tp18410 +a(g18407 +g18409 +S'vigor,' +p18411 +tp18412 +a(g18409 +g18411 +S'demonstrated' +p18413 +tp18414 +a(g18411 +g18413 +S'here' +p18415 +tp18416 +a(g18413 +g18415 +S'in' +p18417 +tp18418 +a(g18415 +g18417 +S'the' +p18419 +tp18420 +a(g18417 +g18419 +S"boy's" +p18421 +tp18422 +a(g18419 +g18421 +S'vitality,' +p18423 +tp18424 +a(g18421 +g18423 +S'detailed' +p18425 +tp18426 +a(g18423 +g18425 +S'anatomy,' +p18427 +tp18428 +a(g18425 +g18427 +S'and' +p18429 +tp18430 +a(g18427 +g18429 +S'intricately' +p18431 +tp18432 +a(g18429 +g18431 +S'balanced' +p18433 +tp18434 +a(g18431 +g18433 +S'pose.' +p18435 +tp18436 +a(g18433 +g18435 +S'carpeaux' +p18437 +tp18438 +a(g18435 +g18437 +S'claimed' +p18439 +tp18440 +a(g18437 +g18439 +S'that' +p18441 +tp18442 +a(g18439 +g18441 +S'he' +p18443 +tp18444 +a(g18441 +g18443 +S'based' +p18445 +tp18446 +a(g18443 +g18445 +S'the' +p18447 +tp18448 +a(g18445 +g18447 +S'lorenzo' +p18449 +tp18450 +a(g18447 +g18449 +S"de'" +p18451 +tp18452 +a(g18449 +g18451 +S'medici,' +p18453 +tp18454 +a(g18451 +g18453 +S'head' +p18455 +tp18456 +a(g18453 +g18455 +S'of' +p18457 +tp18458 +a(g18455 +g18457 +S'the' +p18459 +tp18460 +a(g18457 +g18459 +S'family' +p18461 +tp18462 +a(g18459 +g18461 +S'that' +p18463 +tp18464 +a(g18461 +g18463 +S'dominated' +p18465 +tp18466 +a(g18463 +g18465 +S'florence,' +p18467 +tp18468 +a(g18465 +g18467 +S'survived' +p18469 +tp18470 +a(g18467 +g18469 +S'a' +p18471 +tp18472 +a(g18469 +g18471 +S'1478' +p18473 +tp18474 +a(g18471 +g18473 +S'assassination' +p18475 +tp18476 +a(g18473 +g18475 +S'plot' +p18477 +tp18478 +a(g18475 +g18477 +S'that' +p18479 +tp18480 +a(g18477 +g18479 +S'took' +p18481 +tp18482 +a(g18479 +g18481 +S'the' +p18483 +tp18484 +a(g18481 +g18483 +S'life' +p18485 +tp18486 +a(g18483 +g18485 +S'of' +p18487 +tp18488 +a(g18485 +g18487 +S'his' +p18489 +tp18490 +a(g18487 +g18489 +S'younger' +p18491 +tp18492 +a(g18489 +g18491 +S'brother' +p18493 +tp18494 +a(g18491 +g18493 +S'this' +p18495 +tp18496 +a(g18493 +g18495 +S'portrait' +p18497 +tp18498 +a(g18495 +g18497 +S'expresses' +p18499 +tp18500 +a(g18497 +g18499 +S'power' +p18501 +tp18502 +a(g18499 +g18501 +S'as' +p18503 +tp18504 +a(g18501 +g18503 +S'much' +p18505 +tp18506 +a(g18503 +g18505 +S'as' +p18507 +tp18508 +a(g18505 +g18507 +S'individual' +p18509 +tp18510 +a(g18507 +g18509 +S'personality.' +p18511 +tp18512 +a(g18509 +g18511 +S'although' +p18513 +tp18514 +a(g18511 +g18513 +S'the' +p18515 +tp18516 +a(g18513 +g18515 +S'costume' +p18517 +tp18518 +a(g18515 +g18517 +S'is' +p18519 +tp18520 +a(g18517 +g18519 +S'that' +p18521 +tp18522 +a(g18519 +g18521 +S'of' +p18523 +tp18524 +a(g18521 +g18523 +S'an' +p18525 +tp18526 +a(g18523 +g18525 +S'ordinary' +p18527 +tp18528 +a(g18525 +g18527 +S'florentine' +p18529 +tp18530 +a(g18527 +g18529 +S'citizen,' +p18531 +tp18532 +a(g18529 +g18531 +S'the' +p18533 +tp18534 +a(g18531 +g18533 +S'forms' +p18535 +tp18536 +a(g18533 +g18535 +S'of' +p18537 +tp18538 +a(g18535 +g18537 +S'this' +p18539 +tp18540 +a(g18537 +g18539 +S'portrait' +p18541 +tp18542 +a(g18539 +g18541 +S'bust' +p18543 +tp18544 +a(g18541 +g18543 +S'are' +p18545 +tp18546 +a(g18543 +g18545 +S'monumental:' +p18547 +tp18548 +a(g18545 +g18547 +S'massive,' +p18549 +tp18550 +a(g18547 +g18549 +S'simple,' +p18551 +tp18552 +a(g18549 +g18551 +S'and' +p18553 +tp18554 +a(g18551 +g18553 +S'over-life-size.' +p18555 +tp18556 +a(g18553 +g18555 +S"lorenzo's" +p18557 +tp18558 +a(g18555 +g18557 +S'overhanging' +p18559 +tp18560 +a(g18557 +g18559 +S'brows' +p18561 +tp18562 +a(g18559 +g18561 +S'and' +p18563 +tp18564 +a(g18561 +g18563 +S'grimly' +p18565 +tp18566 +a(g18563 +g18565 +S'set' +p18567 +tp18568 +a(g18565 +g18567 +S'mouth' +p18569 +tp18570 +a(g18567 +g18569 +S'suggest' +p18571 +tp18572 +a(g18569 +g18571 +S'a' +p18573 +tp18574 +a(g18571 +g18573 +S'man' +p18575 +tp18576 +a(g18573 +g18575 +S'who' +p18577 +tp18578 +a(g18575 +g18577 +S'has' +p18579 +tp18580 +a(g18577 +g18579 +S'survived' +p18581 +tp18582 +a(g18579 +g18581 +S'the' +p18583 +tp18584 +a(g18581 +g18583 +S'worst' +p18585 +tp18586 +a(g18583 +g18585 +S'attack' +p18587 +tp18588 +a(g18585 +g18587 +S'his' +p18589 +tp18590 +a(g18587 +g18589 +S'enemies' +p18591 +tp18592 +a(g18589 +g18591 +S'could' +p18593 +tp18594 +a(g18591 +g18593 +S'mount' +p18595 +tp18596 +a(g18593 +g18595 +S'and' +p18597 +tp18598 +a(g18595 +g18597 +S'warns' +p18599 +tp18600 +a(g18597 +g18599 +S'them' +p18601 +tp18602 +a(g18599 +g18601 +S'not' +p18603 +tp18604 +a(g18601 +g18603 +S'to' +p18605 +tp18606 +a(g18603 +g18605 +S'try' +p18607 +tp18608 +a(g18605 +g18607 +S'again.' +p18609 +tp18610 +a(g18607 +g18609 +S'a' +p18611 +tp18612 +a(g18609 +g18611 +S'cleaning' +p18613 +tp18614 +a(g18611 +g18613 +S'of' +p18615 +tp18616 +a(g18613 +g18615 +S'the' +p18617 +tp18618 +a(g18615 +g18617 +S'sculpture' +p18619 +tp18620 +a(g18617 +g18619 +S'completed' +p18621 +tp18622 +a(g18619 +g18621 +S'in' +p18623 +tp18624 +a(g18621 +g18623 +S'2006' +p18625 +tp18626 +a(g18623 +g18625 +S'removed' +p18627 +tp18628 +a(g18625 +g18627 +S'a' +p18629 +tp18630 +a(g18627 +g18629 +S'dull' +p18631 +tp18632 +a(g18629 +g18631 +S'brown' +p18633 +tp18634 +a(g18631 +g18633 +S'coating' +p18635 +tp18636 +a(g18633 +g18635 +S'of' +p18637 +tp18638 +a(g18635 +g18637 +S'dirt' +p18639 +tp18640 +a(g18637 +g18639 +S'and' +p18641 +tp18642 +a(g18639 +g18641 +S'overpaint,' +p18643 +tp18644 +a(g18641 +g18643 +S'revealing' +p18645 +tp18646 +a(g18643 +g18645 +S'its' +p18647 +tp18648 +a(g18645 +g18647 +S'original' +p18649 +tp18650 +a(g18647 +g18649 +S'naturalistic' +p18651 +tp18652 +a(g18649 +g18651 +S'details:' +p18653 +tp18654 +a(g18651 +g18653 +S"lorenzo's" +p18655 +tp18656 +a(g18653 +g18655 +S'cheeks' +p18657 +tp18658 +a(g18655 +g18657 +S'and' +p18659 +tp18660 +a(g18657 +g18659 +S'lips' +p18661 +tp18662 +a(g18659 +g18661 +S'have' +p18663 +tp18664 +a(g18661 +g18663 +S'rosy' +p18665 +tp18666 +a(g18663 +g18665 +S'pink' +p18667 +tp18668 +a(g18665 +g18667 +S'touches,' +p18669 +tp18670 +a(g18667 +g18669 +S'his' +p18671 +tp18672 +a(g18669 +g18671 +S'eyebrows' +p18673 +tp18674 +a(g18671 +g18673 +S'are' +p18675 +tp18676 +a(g18673 +g18675 +S'dark,' +p18677 +tp18678 +a(g18675 +g18677 +S'and' +p18679 +tp18680 +a(g18677 +g18679 +S'there' +p18681 +tp18682 +a(g18679 +g18681 +S'are' +p18683 +tp18684 +a(g18681 +g18683 +S'delicate' +p18685 +tp18686 +a(g18683 +g18685 +S'traces' +p18687 +tp18688 +a(g18685 +g18687 +S'of' +p18689 +tp18690 +a(g18687 +g18689 +S'beard' +p18691 +tp18692 +a(g18689 +g18691 +S'stubble' +p18693 +tp18694 +a(g18691 +g18693 +S'painted' +p18695 +tp18696 +a(g18693 +g18695 +S'around' +p18697 +tp18698 +a(g18695 +g18697 +S'his' +p18699 +tp18700 +a(g18697 +g18699 +S'mouth.' +p18701 +tp18702 +a(g18699 +g18701 +S'the' +p18703 +tp18704 +a(g18701 +g18703 +S'bust' +p18705 +tp18706 +a(g18703 +g18705 +S'has' +p18707 +tp18708 +a(g18705 +g18707 +S'thus' +p18709 +tp18710 +a(g18707 +g18709 +S'regained' +p18711 +tp18712 +a(g18709 +g18711 +S'the' +p18713 +tp18714 +a(g18711 +g18713 +S'immediacy' +p18715 +tp18716 +a(g18713 +g18715 +S'that' +p18717 +tp18718 +a(g18715 +g18717 +S'must' +p18719 +tp18720 +a(g18717 +g18719 +S'have' +p18721 +tp18722 +a(g18719 +g18721 +S'greeted' +p18723 +tp18724 +a(g18721 +g18723 +S'its' +p18725 +tp18726 +a(g18723 +g18725 +S'renaissance' +p18727 +tp18728 +a(g18725 +g18727 +S'audience.' +p18729 +tp18730 +a(g18727 +g18729 +S'the' +p18731 +tp18732 +a(g18729 +g18731 +S'culmination' +p18733 +tp18734 +a(g18731 +g18733 +S'of' +p18735 +tp18736 +a(g18733 +g18735 +S'dutch' +p18737 +tp18738 +a(g18735 +g18737 +S'landscape' +p18739 +tp18740 +a(g18737 +g18739 +S'painting' +p18741 +tp18742 +a(g18739 +g18741 +S'occurs' +p18743 +tp18744 +a(g18741 +g18743 +S'in' +p18745 +tp18746 +a(g18743 +g18745 +S'the' +p18747 +tp18748 +a(g18745 +g18747 +S'work' +p18749 +tp18750 +a(g18747 +g18749 +S'of' +p18751 +tp18752 +a(g18749 +g18751 +S'jacob' +p18753 +tp18754 +a(g18751 +g18753 +S'van' +p18755 +tp18756 +a(g18753 +g18755 +S'ruisdael.' +p18757 +tp18758 +a(g18755 +g18757 +S'this' +p18759 +tp18760 +a(g18757 +g18759 +S'great' +p18761 +tp18762 +a(g18759 +g18761 +S'painter' +p18763 +tp18764 +a(g18761 +g18763 +S'began' +p18765 +tp18766 +a(g18763 +g18765 +S'his' +p18767 +tp18768 +a(g18765 +g18767 +S'career' +p18769 +tp18770 +a(g18767 +g18769 +S'in' +p18771 +tp18772 +a(g18769 +g18771 +S'haarlem' +p18773 +tp18774 +a(g18771 +g18773 +S'but' +p18775 +tp18776 +a(g18773 +g18775 +S'moved' +p18777 +tp18778 +a(g18775 +g18777 +S'to' +p18779 +tp18780 +a(g18777 +g18779 +S'amsterdam' +p18781 +tp18782 +a(g18779 +g18781 +S'around' +p18783 +tp18784 +a(g18781 +g18783 +S'1656.' +p18785 +tp18786 +a(g18783 +g18785 +S'throughout' +p18787 +tp18788 +a(g18785 +g18787 +S'his' +p18789 +tp18790 +a(g18787 +g18789 +S'long' +p18791 +tp18792 +a(g18789 +g18791 +S'and' +p18793 +tp18794 +a(g18791 +g18793 +S'productive' +p18795 +tp18796 +a(g18793 +g18795 +S'professional' +p18797 +tp18798 +a(g18795 +g18797 +S'life' +p18799 +tp18800 +a(g18797 +g18799 +S'he' +p18801 +tp18802 +a(g18799 +g18801 +S'portrayed' +p18803 +tp18804 +a(g18801 +g18803 +S'many' +p18805 +tp18806 +a(g18803 +g18805 +S'types' +p18807 +tp18808 +a(g18805 +g18807 +S'of' +p18809 +tp18810 +a(g18807 +g18809 +S'scenes,' +p18811 +tp18812 +a(g18809 +g18811 +S'but' +p18813 +tp18814 +a(g18811 +g18813 +S'his' +p18815 +tp18816 +a(g18813 +g18815 +S'most' +p18817 +tp18818 +a(g18815 +g18817 +S'characteristic' +p18819 +tp18820 +a(g18817 +g18819 +S'paintings' +p18821 +tp18822 +a(g18819 +g18821 +S'are' +p18823 +tp18824 +a(g18821 +g18823 +S'those' +p18825 +tp18826 +a(g18823 +g18825 +S'in' +p18827 +tp18828 +a(g18825 +g18827 +S'which' +p18829 +tp18830 +a(g18827 +g18829 +S'massive' +p18831 +tp18832 +a(g18829 +g18831 +S'oak' +p18833 +tp18834 +a(g18831 +g18833 +S'trees' +p18835 +tp18836 +a(g18833 +g18835 +S'with' +p18837 +tp18838 +a(g18835 +g18837 +S'craggy' +p18839 +tp18840 +a(g18837 +g18839 +S'branches' +p18841 +tp18842 +a(g18839 +g18841 +S'tower' +p18843 +tp18844 +a(g18841 +g18843 +S'above' +p18845 +tp18846 +a(g18843 +g18845 +S'the' +p18847 +tp18848 +a(g18845 +g18847 +S'rugged' +p18849 +tp18850 +a(g18847 +g18849 +S'countryside.' +p18851 +tp18852 +a(g18849 +g18851 +S'many' +p18853 +tp18854 +a(g18851 +g18853 +S'of' +p18855 +tp18856 +a(g18853 +g18855 +S'these' +p18857 +tp18858 +a(g18855 +g18857 +S'paintings' +p18859 +tp18860 +a(g18857 +g18859 +S'are' +p18861 +tp18862 +a(g18859 +g18861 +S'inspired' +p18863 +tp18864 +a(g18861 +g18863 +S'by' +p18865 +tp18866 +a(g18863 +g18865 +S'ruisdael\xe2\x80\x99s' +p18867 +tp18868 +a(g18865 +g18867 +S'travels' +p18869 +tp18870 +a(g18867 +g18869 +S'near' +p18871 +tp18872 +a(g18869 +g18871 +S'the' +p18873 +tp18874 +a(g18871 +g18873 +S'dutch–german' +p18875 +tp18876 +a(g18873 +g18875 +S'border,' +p18877 +tp18878 +a(g18875 +g18877 +S'rather' +p18879 +tp18880 +a(g18877 +g18879 +S'than' +p18881 +tp18882 +a(g18879 +g18881 +S'the' +p18883 +tp18884 +a(g18881 +g18883 +S'mostly' +p18885 +tp18886 +a(g18883 +g18885 +S'flat' +p18887 +tp18888 +a(g18885 +g18887 +S'dutch' +p18889 +tp18890 +a(g18887 +g18889 +S'landscape.' +p18891 +tp18892 +a(g18889 +g18891 +S'ruisdael' +p18893 +tp18894 +a(g18891 +g18893 +S'had' +p18895 +tp18896 +a(g18893 +g18895 +S'a' +p18897 +tp18898 +a(g18895 +g18897 +S'vision' +p18899 +tp18900 +a(g18897 +g18899 +S'of' +p18901 +tp18902 +a(g18899 +g18901 +S'the' +p18903 +tp18904 +a(g18901 +g18903 +S'grandeur' +p18905 +tp18906 +a(g18903 +g18905 +S'and' +p18907 +tp18908 +a(g18905 +g18907 +S'forces' +p18909 +tp18910 +a(g18907 +g18909 +S'of' +p18911 +tp18912 +a(g18909 +g18911 +S'nature.' +p18913 +tp18914 +a(g18911 +g18913 +S'figures' +p18915 +tp18916 +a(g18913 +g18915 +S'in' +p18917 +tp18918 +a(g18915 +g18917 +S'his' +p18919 +tp18920 +a(g18917 +g18919 +S'paintings' +p18921 +tp18922 +a(g18919 +g18921 +S'seem' +p18923 +tp18924 +a(g18921 +g18923 +S'fragile,' +p18925 +tp18926 +a(g18923 +g18925 +S'dwarfed' +p18927 +tp18928 +a(g18925 +g18927 +S'by' +p18929 +tp18930 +a(g18927 +g18929 +S'the' +p18931 +tp18932 +a(g18929 +g18931 +S'elements' +p18933 +tp18934 +a(g18931 +g18933 +S'of' +p18935 +tp18936 +a(g18933 +g18935 +S'nature.' +p18937 +tp18938 +a(g18935 +g18937 +S'in' +p18939 +tp18940 +a(g18937 +g18939 +S'this' +p18941 +tp18942 +a(g18939 +g18941 +S'scene' +p18943 +tp18944 +a(g18941 +g18943 +S'a' +p18945 +tp18946 +a(g18943 +g18945 +S'man' +p18947 +tp18948 +a(g18945 +g18947 +S'and' +p18949 +tp18950 +a(g18947 +g18949 +S'a' +p18951 +tp18952 +a(g18949 +g18951 +S'woman' +p18953 +tp18954 +a(g18951 +g18953 +S'walk' +p18955 +tp18956 +a(g18953 +g18955 +S'along' +p18957 +tp18958 +a(g18955 +g18957 +S'a' +p18959 +tp18960 +a(g18957 +g18959 +S'path' +p18961 +tp18962 +a(g18959 +g18961 +S'near' +p18963 +tp18964 +a(g18961 +g18963 +S'some' +p18965 +tp18966 +a(g18963 +g18965 +S'grazing' +p18967 +tp18968 +a(g18965 +g18967 +S'sheep' +p18969 +tp18970 +a(g18967 +g18969 +S'in' +p18971 +tp18972 +a(g18969 +g18971 +S'the' +p18973 +tp18974 +a(g18971 +g18973 +S'middle' +p18975 +tp18976 +a(g18973 +g18975 +S'distance,' +p18977 +tp18978 +a(g18975 +g18977 +S'but' +p18979 +tp18980 +a(g18977 +g18979 +S'they' +p18981 +tp18982 +a(g18979 +g18981 +S'are' +p18983 +tp18984 +a(g18981 +g18983 +S'almost' +p18985 +tp18986 +a(g18983 +g18985 +S'inconsequential' +p18987 +tp18988 +a(g18985 +g18987 +S'in' +p18989 +tp18990 +a(g18987 +g18989 +S'comparison' +p18991 +tp18992 +a(g18989 +g18991 +S'to' +p18993 +tp18994 +a(g18991 +g18993 +S'the' +p18995 +tp18996 +a(g18993 +g18995 +S'broad' +p18997 +tp18998 +a(g18995 +g18997 +S'waterfall,' +p18999 +tp19000 +a(g18997 +g18999 +S'the' +p19001 +tp19002 +a(g18999 +g19001 +S'rocks,' +p19003 +tp19004 +a(g19001 +g19003 +S'and' +p19005 +tp19006 +a(g19003 +g19005 +S'the' +p19007 +tp19008 +a(g19005 +g19007 +S'huge' +p19009 +tp19010 +a(g19007 +g19009 +S'fallen' +p19011 +tp19012 +a(g19009 +g19011 +S'birch' +p19013 +tp19014 +a(g19011 +g19013 +S'tree' +p19015 +tp19016 +a(g19013 +g19015 +S'in' +p19017 +tp19018 +a(g19015 +g19017 +S'the' +p19019 +tp19020 +a(g19017 +g19019 +S'foreground.' +p19021 +tp19022 +a(g19019 +g19021 +S'the' +p19023 +tp19024 +a(g19021 +g19023 +S'mood' +p19025 +tp19026 +a(g19023 +g19025 +S'in' +p19027 +tp19028 +a(g19025 +g19027 +S"ruisdael's" +p19029 +tp19030 +a(g19027 +g19029 +S'paintings' +p19031 +tp19032 +a(g19029 +g19031 +S'is' +p19033 +tp19034 +a(g19031 +g19033 +S'somber,' +p19035 +tp19036 +a(g19033 +g19035 +S'yet' +p19037 +tp19038 +a(g19035 +g19037 +S'indicates' +p19039 +tp19040 +a(g19037 +g19039 +S'the' +p19041 +tp19042 +a(g19039 +g19041 +S'persistence' +p19043 +tp19044 +a(g19041 +g19043 +S'and' +p19045 +tp19046 +a(g19043 +g19045 +S'vigor' +p19047 +tp19048 +a(g19045 +g19047 +S'of' +p19049 +tp19050 +a(g19047 +g19049 +S'life.' +p19051 +tp19052 +a(g19049 +g19051 +S'the' +p19053 +tp19054 +a(g19051 +g19053 +S'clouds' +p19055 +tp19056 +a(g19053 +g19055 +S'are' +p19057 +tp19058 +a(g19055 +g19057 +S'heavy' +p19059 +tp19060 +a(g19057 +g19059 +S'and' +p19061 +tp19062 +a(g19059 +g19061 +S'gray,' +p19063 +tp19064 +a(g19061 +g19063 +S'and' +p19065 +tp19066 +a(g19063 +g19065 +S'the' +p19067 +tp19068 +a(g19065 +g19067 +S'greens' +p19069 +tp19070 +a(g19067 +g19069 +S'of' +p19071 +tp19072 +a(g19069 +g19071 +S'the' +p19073 +tp19074 +a(g19071 +g19073 +S'grass' +p19075 +tp19076 +a(g19073 +g19075 +S'and' +p19077 +tp19078 +a(g19075 +g19077 +S'foliage' +p19079 +tp19080 +a(g19077 +g19079 +S'are' +p19081 +tp19082 +a(g19079 +g19081 +S'dark.' +p19083 +tp19084 +a(g19081 +g19083 +S'trees' +p19085 +tp19086 +a(g19083 +g19085 +S'do' +p19087 +tp19088 +a(g19085 +g19087 +S'not' +p19089 +tp19090 +a(g19087 +g19089 +S'grow' +p19091 +tp19092 +a(g19089 +g19091 +S'easily' +p19093 +tp19094 +a(g19091 +g19093 +S'for' +p19095 +tp19096 +a(g19093 +g19095 +S'their' +p19097 +tp19098 +a(g19095 +g19097 +S'twisted' +p19099 +tp19100 +a(g19097 +g19099 +S'roots' +p19101 +tp19102 +a(g19099 +g19101 +S'need' +p19103 +tp19104 +a(g19101 +g19103 +S'to' +p19105 +tp19106 +a(g19103 +g19105 +S'grasp' +p19107 +tp19108 +a(g19105 +g19107 +S'onto' +p19109 +tp19110 +a(g19107 +g19109 +S'rocky' +p19111 +tp19112 +a(g19109 +g19111 +S'outcroppings' +p19113 +tp19114 +a(g19111 +g19113 +S'for' +p19115 +tp19116 +a(g19113 +g19115 +S'support' +p19117 +tp19118 +a(g19115 +g19117 +S'and' +p19119 +tp19120 +a(g19117 +g19119 +S'nourishment.' +p19121 +tp19122 +a(g19119 +g19121 +S'yet' +p19123 +tp19124 +a(g19121 +g19123 +S'flowers' +p19125 +tp19126 +a(g19123 +g19125 +S'bloom' +p19127 +tp19128 +a(g19125 +g19127 +S'near' +p19129 +tp19130 +a(g19127 +g19129 +S'breaks' +p19131 +tp19132 +a(g19129 +g19131 +S'in' +p19133 +tp19134 +a(g19131 +g19133 +S'the' +p19135 +tp19136 +a(g19133 +g19135 +S'wood.' +p19137 +tp19138 +a(g19135 +g19137 +S'the' +p19139 +tp19140 +a(g19137 +g19139 +S'massive' +p19141 +tp19142 +a(g19139 +g19141 +S'broken' +p19143 +tp19144 +a(g19141 +g19143 +S'trees' +p19145 +tp19146 +a(g19143 +g19145 +S'in' +p19147 +tp19148 +a(g19145 +g19147 +S'the' +p19149 +tp19150 +a(g19147 +g19149 +S'foreground' +p19151 +tp19152 +a(g19149 +g19151 +S'are' +p19153 +tp19154 +a(g19151 +g19153 +S'not' +p19155 +tp19156 +a(g19153 +g19155 +S'just' +p19157 +tp19158 +a(g19155 +g19157 +S'compositional' +p19159 +tp19160 +a(g19157 +g19159 +S'devices,' +p19161 +tp19162 +a(g19159 +g19161 +S'they' +p19163 +tp19164 +a(g19161 +g19163 +S'are' +p19165 +tp19166 +a(g19163 +g19165 +S'conscious' +p19167 +tp19168 +a(g19165 +g19167 +S'reminders' +p19169 +tp19170 +a(g19167 +g19169 +S'of' +p19171 +tp19172 +a(g19169 +g19171 +S'the' +p19173 +tp19174 +a(g19171 +g19173 +S'struggle' +p19175 +tp19176 +a(g19173 +g19175 +S'of' +p19177 +tp19178 +a(g19175 +g19177 +S'existence.' +p19179 +tp19180 +a(g19177 +g19179 +S'this' +p19181 +tp19182 +a(g19179 +g19181 +S'the' +p19183 +tp19184 +a(g19181 +g19183 +S'combination' +p19185 +tp19186 +a(g19183 +g19185 +S'of' +p19187 +tp19188 +a(g19185 +g19187 +S'elegance' +p19189 +tp19190 +a(g19187 +g19189 +S'and' +p19191 +tp19192 +a(g19189 +g19191 +S'energy' +p19193 +tp19194 +a(g19191 +g19193 +S'suggests' +p19195 +tp19196 +a(g19193 +g19195 +S'an' +p19197 +tp19198 +a(g19195 +g19197 +S'artist' +p19199 +tp19200 +a(g19197 +g19199 +S'who' +p19201 +tp19202 +a(g19199 +g19201 +S'was' +p19203 +tp19204 +a(g19201 +g19203 +S'influenced' +p19205 +tp19206 +a(g19203 +g19205 +S'by' +p19207 +tp19208 +a(g19205 +g19207 +S'the' +p19209 +tp19210 +a(g19207 +g19209 +S'florentine' +p19211 +tp19212 +a(g19209 +g19211 +S'masters' +p19213 +tp19214 +a(g19211 +g19213 +S'lorenzo' +p19215 +tp19216 +a(g19213 +g19215 +S'ghiberti' +p19217 +tp19218 +a(g19215 +g19217 +S'and' +p19219 +tp19220 +a(g19217 +g19219 +S'in' +p19221 +tp19222 +a(g19219 +g19221 +S'contrast' +p19223 +tp19224 +a(g19221 +g19223 +S'to' +p19225 +tp19226 +a(g19223 +g19225 +S'the' +p19227 +tp19228 +a(g19225 +g19227 +S'wide-eyed' +p19229 +tp19230 +a(g19227 +g19229 +S'innocence' +p19231 +tp19232 +a(g19229 +g19231 +S'of' +p19233 +tp19234 +a(g19231 +g19233 +S'from' +p19235 +tp19236 +a(g19233 +g19235 +S'sometime' +p19237 +tp19238 +a(g19235 +g19237 +S'before' +p19239 +tp19240 +a(g19237 +g19239 +S'1756' +p19241 +tp19242 +a(g19239 +g19241 +S'until' +p19243 +tp19244 +a(g19241 +g19243 +S'1940,' +p19245 +tp19246 +a(g19243 +g19245 +S'this' +p19247 +tp19248 +a(g19245 +g19247 +S'bust' +p19249 +tp19250 +a(g19247 +g19249 +S'was' +p19251 +tp19252 +a(g19249 +g19251 +S'installed' +p19253 +tp19254 +a(g19251 +g19253 +S'above' +p19255 +tp19256 +a(g19253 +g19255 +S'a' +p19257 +tp19258 +a(g19255 +g19257 +S'doorway' +p19259 +tp19260 +a(g19257 +g19259 +S'next' +p19261 +tp19262 +a(g19259 +g19261 +S'to' +p19263 +tp19264 +a(g19261 +g19263 +S'the' +p19265 +tp19266 +a(g19263 +g19265 +S'high' +p19267 +tp19268 +a(g19265 +g19267 +S'altar' +p19269 +tp19270 +a(g19267 +g19269 +S'in' +p19271 +tp19272 +a(g19269 +g19271 +S'the' +p19273 +tp19274 +a(g19271 +g19273 +S'oratory' +p19275 +tp19276 +a(g19273 +g19275 +S'of' +p19277 +tp19278 +a(g19275 +g19277 +S'san' +p19279 +tp19280 +a(g19277 +g19279 +S'francesco' +p19281 +tp19282 +a(g19279 +g19281 +S'of' +p19283 +tp19284 +a(g19281 +g19283 +S'the' +p19285 +tp19286 +a(g19283 +g19285 +S'vanchettoni' +p19287 +tp19288 +a(g19285 +g19287 +S'in' +p19289 +tp19290 +a(g19287 +g19289 +S'florence.' +p19291 +tp19292 +a(g19289 +g19291 +S'antonio' +p19293 +tp19294 +a(g19291 +g19293 +S"rossellino's" +p19295 +tp19296 +a(g19293 +g19295 +S'whistler' +p19297 +tp19298 +a(g19295 +g19297 +S'claimed' +p19299 +tp19300 +a(g19297 +g19299 +S'to' +p19301 +tp19302 +a(g19299 +g19301 +S'excel' +p19303 +tp19304 +a(g19301 +g19303 +S'ethel' +p19305 +tp19306 +a(g19303 +g19305 +S'birnie' +p19307 +tp19308 +a(g19305 +g19307 +S'philip,' +p19309 +tp19310 +a(g19307 +g19309 +S'daughter' +p19311 +tp19312 +a(g19309 +g19311 +S'of' +p19313 +tp19314 +a(g19311 +g19313 +S'a' +p19315 +tp19316 +a(g19313 +g19315 +S'sculptor,' +p19317 +tp19318 +a(g19315 +g19317 +S'married' +p19319 +tp19320 +a(g19317 +g19319 +S'in' +p19321 +tp19322 +a(g19319 +g19321 +S'1895.' +p19323 +tp19324 +a(g19321 +g19323 +S'the' +p19325 +tp19326 +a(g19323 +g19325 +S'next' +p19327 +tp19328 +a(g19325 +g19327 +S'year' +p19329 +tp19330 +a(g19327 +g19329 +S'saw' +p19331 +tp19332 +a(g19329 +g19331 +S'the' +p19333 +tp19334 +a(g19331 +g19333 +S'death' +p19335 +tp19336 +a(g19333 +g19335 +S'of' +p19337 +tp19338 +a(g19335 +g19337 +S'her' +p19339 +tp19340 +a(g19337 +g19339 +S'sister,' +p19341 +tp19342 +a(g19339 +g19341 +S'who' +p19343 +tp19344 +a(g19341 +g19343 +S'was' +p19345 +tp19346 +a(g19343 +g19345 +S"whistler's" +p19347 +tp19348 +a(g19345 +g19347 +S'wife.' +p19349 +tp19350 +a(g19347 +g19349 +S'this' +p19351 +tp19352 +a(g19349 +g19351 +S'elegant' +p19353 +tp19354 +a(g19351 +g19353 +S'depiction' +p19355 +tp19356 +a(g19353 +g19355 +S'of' +p19357 +tp19358 +a(g19355 +g19357 +S'light' +p19359 +tp19360 +a(g19357 +g19359 +S'gleaming' +p19361 +tp19362 +a(g19359 +g19361 +S'in' +p19363 +tp19364 +a(g19361 +g19363 +S'the' +p19365 +tp19366 +a(g19363 +g19365 +S'dark,' +p19367 +tp19368 +a(g19365 +g19367 +S'though,' +p19369 +tp19370 +a(g19367 +g19369 +S'represents' +p19371 +tp19372 +a(g19369 +g19371 +S'neither' +p19373 +tp19374 +a(g19371 +g19373 +S'a' +p19375 +tp19376 +a(g19373 +g19375 +S'bride' +p19377 +tp19378 +a(g19375 +g19377 +S'nor' +p19379 +tp19380 +a(g19377 +g19379 +S'a' +p19381 +tp19382 +a(g19379 +g19381 +S'mourner.' +p19383 +tp19384 +a(g19381 +g19383 +S'whistler' +p19385 +tp19386 +a(g19383 +g19385 +S'firmly' +p19387 +tp19388 +a(g19385 +g19387 +S'stated,' +p19389 +tp19390 +a(g19387 +g19389 +S'"art' +p19391 +tp19392 +a(g19389 +g19391 +S'should' +p19393 +tp19394 +a(g19391 +g19393 +S'be' +p19395 +tp19396 +a(g19393 +g19395 +S'independent' +p19397 +tp19398 +a(g19395 +g19397 +S'of' +p19399 +tp19400 +a(g19397 +g19399 +S'clap-trap—should' +p19401 +tp19402 +a(g19399 +g19401 +S'stand' +p19403 +tp19404 +a(g19401 +g19403 +S'alone,' +p19405 +tp19406 +a(g19403 +g19405 +S'and' +p19407 +tp19408 +a(g19405 +g19407 +S'appeal' +p19409 +tp19410 +a(g19407 +g19409 +S'to' +p19411 +tp19412 +a(g19409 +g19411 +S'the' +p19413 +tp19414 +a(g19411 +g19413 +S'artistic' +p19415 +tp19416 +a(g19413 +g19415 +S'sense' +p19417 +tp19418 +a(g19415 +g19417 +S'of' +p19419 +tp19420 +a(g19417 +g19419 +S'eye' +p19421 +tp19422 +a(g19419 +g19421 +S'or' +p19423 +tp19424 +a(g19421 +g19423 +S'ear,' +p19425 +tp19426 +a(g19423 +g19425 +S'without' +p19427 +tp19428 +a(g19425 +g19427 +S'confounding' +p19429 +tp19430 +a(g19427 +g19429 +S'this' +p19431 +tp19432 +a(g19429 +g19431 +S'with' +p19433 +tp19434 +a(g19431 +g19433 +S'emotions' +p19435 +tp19436 +a(g19433 +g19435 +S'entirely' +p19437 +tp19438 +a(g19435 +g19437 +S'foreign' +p19439 +tp19440 +a(g19437 +g19439 +S'to' +p19441 +tp19442 +a(g19439 +g19441 +S'it,' +p19443 +tp19444 +a(g19441 +g19443 +S'as' +p19445 +tp19446 +a(g19443 +g19445 +S'devotion,' +p19447 +tp19448 +a(g19445 +g19447 +S'pity,' +p19449 +tp19450 +a(g19447 +g19449 +S'love,' +p19451 +tp19452 +a(g19449 +g19451 +S'patriotism' +p19453 +tp19454 +a(g19451 +g19453 +S'and' +p19455 +tp19456 +a(g19453 +g19455 +S'the' +p19457 +tp19458 +a(g19455 +g19457 +S'like."' +p19459 +tp19460 +a(g19457 +g19459 +S'in' +p19461 +tp19462 +a(g19459 +g19461 +S'when' +p19463 +tp19464 +a(g19461 +g19463 +S'whistler' +p19465 +tp19466 +a(g19463 +g19465 +S'submitted' +p19467 +tp19468 +a(g19465 +g19467 +S'whistler' +p19469 +tp19470 +a(g19467 +g19469 +S'used' +p19471 +tp19472 +a(g19469 +g19471 +S'variations' +p19473 +tp19474 +a(g19471 +g19473 +S'of' +p19475 +tp19476 +a(g19473 +g19475 +S'white' +p19477 +tp19478 +a(g19475 +g19477 +S'pigment' +p19479 +tp19480 +a(g19477 +g19479 +S'to' +p19481 +tp19482 +a(g19479 +g19481 +S'create' +p19483 +tp19484 +a(g19481 +g19483 +S'interesting' +p19485 +tp19486 +a(g19483 +g19485 +S'spatial' +p19487 +tp19488 +a(g19485 +g19487 +S'and' +p19489 +tp19490 +a(g19487 +g19489 +S'formal' +p19491 +tp19492 +a(g19489 +g19491 +S'relationships.' +p19493 +tp19494 +a(g19491 +g19493 +S'by' +p19495 +tp19496 +a(g19493 +g19495 +S'limiting' +p19497 +tp19498 +a(g19495 +g19497 +S'his' +p19499 +tp19500 +a(g19497 +g19499 +S'palette,' +p19501 +tp19502 +a(g19499 +g19501 +S'minimizing' +p19503 +tp19504 +a(g19501 +g19503 +S'tonal' +p19505 +tp19506 +a(g19503 +g19505 +S'contrast,' +p19507 +tp19508 +a(g19505 +g19507 +S'and' +p19509 +tp19510 +a(g19507 +g19509 +S'sharply' +p19511 +tp19512 +a(g19509 +g19511 +S'skewing' +p19513 +tp19514 +a(g19511 +g19513 +S'the' +p19515 +tp19516 +a(g19513 +g19515 +S'perspective,' +p19517 +tp19518 +a(g19515 +g19517 +S'he' +p19519 +tp19520 +a(g19517 +g19519 +S'flattened' +p19521 +tp19522 +a(g19519 +g19521 +S'forms' +p19523 +tp19524 +a(g19521 +g19523 +S'and' +p19525 +tp19526 +a(g19523 +g19525 +S'emphasized' +p19527 +tp19528 +a(g19525 +g19527 +S'their' +p19529 +tp19530 +a(g19527 +g19529 +S'abstract' +p19531 +tp19532 +a(g19529 +g19531 +S'patterns.' +p19533 +tp19534 +a(g19531 +g19533 +S'this' +p19535 +tp19536 +a(g19533 +g19535 +S'dramatic' +p19537 +tp19538 +a(g19535 +g19537 +S'compositional' +p19539 +tp19540 +a(g19537 +g19539 +S'approach' +p19541 +tp19542 +a(g19539 +g19541 +S'reflects' +p19543 +tp19544 +a(g19541 +g19543 +S'the' +p19545 +tp19546 +a(g19543 +g19545 +S'influence' +p19547 +tp19548 +a(g19545 +g19547 +S'of' +p19549 +tp19550 +a(g19547 +g19549 +S'japanese' +p19551 +tp19552 +a(g19549 +g19551 +S'prints,' +p19553 +tp19554 +a(g19551 +g19553 +S'which' +p19555 +tp19556 +a(g19553 +g19555 +S'were' +p19557 +tp19558 +a(g19555 +g19557 +S'becoming' +p19559 +tp19560 +a(g19557 +g19559 +S'well' +p19561 +tp19562 +a(g19559 +g19561 +S'known' +p19563 +tp19564 +a(g19561 +g19563 +S'in' +p19565 +tp19566 +a(g19563 +g19565 +S'paris' +p19567 +tp19568 +a(g19565 +g19567 +S'as' +p19569 +tp19570 +a(g19567 +g19569 +S'international' +p19571 +tp19572 +a(g19569 +g19571 +S'trade' +p19573 +tp19574 +a(g19571 +g19573 +S'increased.' +p19575 +tp19576 +a(g19573 +g19575 +S'clearly,' +p19577 +tp19578 +a(g19575 +g19577 +S'whistler' +p19579 +tp19580 +a(g19577 +g19579 +S'was' +p19581 +tp19582 +a(g19579 +g19581 +S'more' +p19583 +tp19584 +a(g19581 +g19583 +S'interested' +p19585 +tp19586 +a(g19583 +g19585 +S'in' +p19587 +tp19588 +a(g19585 +g19587 +S'creating' +p19589 +tp19590 +a(g19587 +g19589 +S'an' +p19591 +tp19592 +a(g19589 +g19591 +S'abstract' +p19593 +tp19594 +a(g19591 +g19593 +S'design' +p19595 +tp19596 +a(g19593 +g19595 +S'than' +p19597 +tp19598 +a(g19595 +g19597 +S'in' +p19599 +tp19600 +a(g19597 +g19599 +S'capturing' +p19601 +tp19602 +a(g19599 +g19601 +S'an' +p19603 +tp19604 +a(g19601 +g19603 +S'exact' +p19605 +tp19606 +a(g19603 +g19605 +S'likeness' +p19607 +tp19608 +a(g19605 +g19607 +S'of' +p19609 +tp19610 +a(g19607 +g19609 +S'the' +p19611 +tp19612 +a(g19609 +g19611 +S'model,' +p19613 +tp19614 +a(g19611 +g19613 +S'his' +p19615 +tp19616 +a(g19613 +g19615 +S'mistress' +p19617 +tp19618 +a(g19615 +g19617 +S'joanna' +p19619 +tp19620 +a(g19617 +g19619 +S'hiffernan.' +p19621 +tp19622 +a(g19619 +g19621 +S'his' +p19623 +tp19624 +a(g19621 +g19623 +S'radical' +p19625 +tp19626 +a(g19623 +g19625 +S'espousal' +p19627 +tp19628 +a(g19625 +g19627 +S'of' +p19629 +tp19630 +a(g19627 +g19629 +S'a' +p19631 +tp19632 +a(g19629 +g19631 +S'purely' +p19633 +tp19634 +a(g19631 +g19633 +S'aesthetic' +p19635 +tp19636 +a(g19633 +g19635 +S'orientation' +p19637 +tp19638 +a(g19635 +g19637 +S'and' +p19639 +tp19640 +a(g19637 +g19639 +S'the' +p19641 +tp19642 +a(g19639 +g19641 +S'creation' +p19643 +tp19644 +a(g19641 +g19643 +S'of' +p19645 +tp19646 +a(g19643 +g19645 +S'"art' +p19647 +tp19648 +a(g19645 +g19647 +S'for' +p19649 +tp19650 +a(g19647 +g19649 +S"art's" +p19651 +tp19652 +a(g19649 +g19651 +S'sake"' +p19653 +tp19654 +a(g19651 +g19653 +S'became' +p19655 +tp19656 +a(g19653 +g19655 +S'a' +p19657 +tp19658 +a(g19655 +g19657 +S'virtual' +p19659 +tp19660 +a(g19657 +g19659 +S'rallying' +p19661 +tp19662 +a(g19659 +g19661 +S'cry' +p19663 +tp19664 +a(g19661 +g19663 +S'of' +p19665 +tp19666 +a(g19663 +g19665 +S'modernism.' +p19667 +tp19668 +a(g19665 +g19667 +S'the' +p19669 +tp19670 +a(g19667 +g19669 +S'mood' +p19671 +tp19672 +a(g19669 +g19671 +S'and' +p19673 +tp19674 +a(g19671 +g19673 +S'subject' +p19675 +tp19676 +a(g19673 +g19675 +S'matter' +p19677 +tp19678 +a(g19675 +g19677 +S'in' +p19679 +tp19680 +a(g19677 +g19679 +S"steen's" +p19681 +tp19682 +a(g19679 +g19681 +S'paintings' +p19683 +tp19684 +a(g19681 +g19683 +S'range' +p19685 +tp19686 +a(g19683 +g19685 +S'enormously,' +p19687 +tp19688 +a(g19685 +g19687 +S'from' +p19689 +tp19690 +a(g19687 +g19689 +S'intimate' +p19691 +tp19692 +a(g19689 +g19691 +S'moments' +p19693 +tp19694 +a(g19691 +g19693 +S'when' +p19695 +tp19696 +a(g19693 +g19695 +S'a' +p19697 +tp19698 +a(g19695 +g19697 +S'family' +p19699 +tp19700 +a(g19697 +g19699 +S'says' +p19701 +tp19702 +a(g19699 +g19701 +S'grace' +p19703 +tp19704 +a(g19701 +g19703 +S'before' +p19705 +tp19706 +a(g19703 +g19705 +S'a' +p19707 +tp19708 +a(g19705 +g19707 +S'meal' +p19709 +tp19710 +a(g19707 +g19709 +S'to' +p19711 +tp19712 +a(g19709 +g19711 +S'festive' +p19713 +tp19714 +a(g19711 +g19713 +S'celebrations' +p19715 +tp19716 +a(g19713 +g19715 +S'of' +p19717 +tp19718 +a(g19715 +g19717 +S'the' +p19719 +tp19720 +a(g19717 +g19719 +S'dancing' +p19721 +tp19722 +a(g19719 +g19721 +S'couple' +p19723 +tp19724 +a(g19721 +g19723 +S'despite' +p19725 +tp19726 +a(g19723 +g19725 +S'the' +p19727 +tp19728 +a(g19725 +g19727 +S'apparent' +p19729 +tp19730 +a(g19727 +g19729 +S'frivolity' +p19731 +tp19732 +a(g19729 +g19731 +S'of' +p19733 +tp19734 +a(g19731 +g19733 +S'the' +p19735 +tp19736 +a(g19733 +g19735 +S'scene,' +p19737 +tp19738 +a(g19735 +g19737 +S'the' +p19739 +tp19740 +a(g19737 +g19739 +S'painting' +p19741 +tp19742 +a(g19739 +g19741 +S'has' +p19743 +tp19744 +a(g19741 +g19743 +S'a' +p19745 +tp19746 +a(g19743 +g19745 +S'more' +p19747 +tp19748 +a(g19745 +g19747 +S'sobering' +p19749 +tp19750 +a(g19747 +g19749 +S'message.' +p19751 +tp19752 +a(g19749 +g19751 +S'steen' +p19753 +tp19754 +a(g19751 +g19753 +S'was' +p19755 +tp19756 +a(g19753 +g19755 +S'a' +p19757 +tp19758 +a(g19755 +g19757 +S'moralist' +p19759 +tp19760 +a(g19757 +g19759 +S'who' +p19761 +tp19762 +a(g19759 +g19761 +S'often' +p19763 +tp19764 +a(g19761 +g19763 +S'used' +p19765 +tp19766 +a(g19763 +g19765 +S'emblematic' +p19767 +tp19768 +a(g19765 +g19767 +S'references' +p19769 +tp19770 +a(g19767 +g19769 +S'in' +p19771 +tp19772 +a(g19769 +g19771 +S'his' +p19773 +tp19774 +a(g19771 +g19773 +S'paintings' +p19775 +tp19776 +a(g19773 +g19775 +S'to' +p19777 +tp19778 +a(g19775 +g19777 +S'express' +p19779 +tp19780 +a(g19777 +g19779 +S'the' +p19781 +tp19782 +a(g19779 +g19781 +S'transience' +p19783 +tp19784 +a(g19781 +g19783 +S'of' +p19785 +tp19786 +a(g19783 +g19785 +S'human' +p19787 +tp19788 +a(g19785 +g19787 +S'life.' +p19789 +tp19790 +a(g19787 +g19789 +S'the' +p19791 +tp19792 +a(g19789 +g19791 +S'cut' +p19793 +tp19794 +a(g19791 +g19793 +S'flowers' +p19795 +tp19796 +a(g19793 +g19795 +S'and' +p19797 +tp19798 +a(g19795 +g19797 +S'broken' +p19799 +tp19800 +a(g19797 +g19799 +S'eggshells' +p19801 +tp19802 +a(g19799 +g19801 +S'on' +p19803 +tp19804 +a(g19801 +g19803 +S'the' +p19805 +tp19806 +a(g19803 +g19805 +S'floor,' +p19807 +tp19808 +a(g19805 +g19807 +S'and' +p19809 +tp19810 +a(g19807 +g19809 +S'the' +p19811 +tp19812 +a(g19809 +g19811 +S'young' +p19813 +tp19814 +a(g19811 +g19813 +S'boy' +p19815 +tp19816 +a(g19813 +g19815 +S'blowing' +p19817 +tp19818 +a(g19815 +g19817 +S'bubbles' +p19819 +tp19820 +a(g19817 +g19819 +S'on' +p19821 +tp19822 +a(g19819 +g19821 +S'the' +p19823 +tp19824 +a(g19821 +g19823 +S'right' +p19825 +tp19826 +a(g19823 +g19825 +S'are' +p19827 +tp19828 +a(g19825 +g19827 +S'symbolic.' +p19829 +tp19830 +a(g19827 +g19829 +S'steen' +p19831 +tp19832 +a(g19829 +g19831 +S'seems' +p19833 +tp19834 +a(g19831 +g19833 +S'to' +p19835 +tp19836 +a(g19833 +g19835 +S'suggest' +p19837 +tp19838 +a(g19835 +g19837 +S'that' +p19839 +tp19840 +a(g19837 +g19839 +S'earthly' +p19841 +tp19842 +a(g19839 +g19841 +S'pleasures' +p19843 +tp19844 +a(g19841 +g19843 +S'are' +p19845 +tp19846 +a(g19843 +g19845 +S'short–lived' +p19847 +tp19848 +a(g19845 +g19847 +S'and' +p19849 +tp19850 +a(g19847 +g19849 +S'we' +p19851 +tp19852 +a(g19849 +g19851 +S'should' +p19853 +tp19854 +a(g19851 +g19853 +S'contemplate' +p19855 +tp19856 +a(g19853 +g19855 +S'more' +p19857 +tp19858 +a(g19855 +g19857 +S'lasting' +p19859 +tp19860 +a(g19857 +g19859 +S'values,' +p19861 +tp19862 +a(g19859 +g19861 +S'symbolized' +p19863 +tp19864 +a(g19861 +g19863 +S'here' +p19865 +tp19866 +a(g19863 +g19865 +S'by' +p19867 +tp19868 +a(g19865 +g19867 +S'the' +p19869 +tp19870 +a(g19867 +g19869 +S'church' +p19871 +tp19872 +a(g19869 +g19871 +S'tower' +p19873 +tp19874 +a(g19871 +g19873 +S'in' +p19875 +tp19876 +a(g19873 +g19875 +S'the' +p19877 +tp19878 +a(g19875 +g19877 +S'background.' +p19879 +tp19880 +a(g19877 +g19879 +S'in' +p19881 +tp19882 +a(g19879 +g19881 +S'enlightenment' +p19883 +tp19884 +a(g19881 +g19883 +S'france' +p19885 +tp19886 +a(g19883 +g19885 +S'the' +p19887 +tp19888 +a(g19885 +g19887 +S'dedicated' +p19889 +tp19890 +a(g19887 +g19889 +S'search' +p19891 +tp19892 +a(g19889 +g19891 +S'to' +p19893 +tp19894 +a(g19891 +g19893 +S'define' +p19895 +tp19896 +a(g19893 +g19895 +S'truth' +p19897 +tp19898 +a(g19895 +g19897 +S'engendered' +p19899 +tp19900 +a(g19897 +g19899 +S'a' +p19901 +tp19902 +a(g19899 +g19901 +S're–evaluation' +p19903 +tp19904 +a(g19901 +g19903 +S'of' +p19905 +tp19906 +a(g19903 +g19905 +S'the' +p19907 +tp19908 +a(g19905 +g19907 +S'natural.' +p19909 +tp19910 +a(g19907 +g19909 +S'the' +p19911 +tp19912 +a(g19909 +g19911 +S'belief' +p19913 +tp19914 +a(g19911 +g19913 +S'that' +p19915 +tp19916 +a(g19913 +g19915 +S'it' +p19917 +tp19918 +a(g19915 +g19917 +S'was' +p19919 +tp19920 +a(g19917 +g19919 +S'right' +p19921 +tp19922 +a(g19919 +g19921 +S'to' +p19923 +tp19924 +a(g19921 +g19923 +S'follow' +p19925 +tp19926 +a(g19923 +g19925 +S'nature,' +p19927 +tp19928 +a(g19925 +g19927 +S'and' +p19929 +tp19930 +a(g19927 +g19929 +S'that' +p19931 +tp19932 +a(g19929 +g19931 +S'the' +p19933 +tp19934 +a(g19931 +g19933 +S'pursuit' +p19935 +tp19936 +a(g19933 +g19935 +S'of' +p19937 +tp19938 +a(g19935 +g19937 +S'pleasure' +p19939 +tp19940 +a(g19937 +g19939 +S'was' +p19941 +tp19942 +a(g19939 +g19941 +S'natural,' +p19943 +tp19944 +a(g19941 +g19943 +S'influenced' +p19945 +tp19946 +a(g19943 +g19945 +S'the' +p19947 +tp19948 +a(g19945 +g19947 +S'prevailing' +p19949 +tp19950 +a(g19947 +g19949 +S'conception' +p19951 +tp19952 +a(g19949 +g19951 +S'of' +p19953 +tp19954 +a(g19951 +g19953 +S'the' +p19955 +tp19956 +a(g19953 +g19955 +S'nude.' +p19957 +tp19958 +a(g19955 +g19957 +S'françois' +p19959 +tp19960 +a(g19957 +g19959 +S'boucher,' +p19961 +tp19962 +a(g19959 +g19961 +S'who' +p19963 +tp19964 +a(g19961 +g19963 +S'became' +p19965 +tp19966 +a(g19963 +g19965 +S'the' +p19967 +tp19968 +a(g19965 +g19967 +S'first' +p19969 +tp19970 +a(g19967 +g19969 +S'painter' +p19971 +tp19972 +a(g19969 +g19971 +S'to' +p19973 +tp19974 +a(g19971 +g19973 +S'louis' +p19975 +tp19976 +a(g19973 +g19975 +S'xv,' +p19977 +tp19978 +a(g19975 +g19977 +S'fully' +p19979 +tp19980 +a(g19977 +g19979 +S'explored' +p19981 +tp19982 +a(g19979 +g19981 +S'his' +p19983 +tp19984 +a(g19981 +g19983 +S"century's" +p19985 +tp19986 +a(g19983 +g19985 +S'interest' +p19987 +tp19988 +a(g19985 +g19987 +S'in' +p19989 +tp19990 +a(g19987 +g19989 +S'the' +p19991 +tp19992 +a(g19989 +g19991 +S'relationship' +p19993 +tp19994 +a(g19991 +g19993 +S'between' +p19995 +tp19996 +a(g19993 +g19995 +S'the' +p19997 +tp19998 +a(g19995 +g19997 +S'rational' +p19999 +tp20000 +a(g19997 +g19999 +S'and' +p20001 +tp20002 +a(g19999 +g20001 +S'the' +p20003 +tp20004 +a(g20001 +g20003 +S'sensual.' +p20005 +tp20006 +a(g20003 +g20005 +S'in' +p20007 +tp20008 +a(g20005 +g20007 +S'the' +p20009 +tp20010 +a(g20007 +g20009 +S'counter-reformation' +p20011 +tp20012 +a(g20009 +g20011 +S'renewed' +p20013 +tp20014 +a(g20011 +g20013 +S'emphasis' +p20015 +tp20016 +a(g20013 +g20015 +S'on' +p20017 +tp20018 +a(g20015 +g20017 +S'penance' +p20019 +tp20020 +a(g20017 +g20019 +S'and' +p20021 +tp20022 +a(g20019 +g20021 +S'other' +p20023 +tp20024 +a(g20021 +g20023 +S'sacraments' +p20025 +tp20026 +a(g20023 +g20025 +S'attacked' +p20027 +tp20028 +a(g20025 +g20027 +S'by' +p20029 +tp20030 +a(g20027 +g20029 +S'protestants.' +p20031 +tp20032 +a(g20029 +g20031 +S'here' +p20033 +tp20034 +a(g20031 +g20033 +S'saint' +p20035 +tp20036 +a(g20033 +g20035 +S'jerome,' +p20037 +tp20038 +a(g20035 +g20037 +S'who' +p20039 +tp20040 +a(g20037 +g20039 +S'translated' +p20041 +tp20042 +a(g20039 +g20041 +S'the' +p20043 +tp20044 +a(g20041 +g20043 +S'bible' +p20045 +tp20046 +a(g20043 +g20045 +S'into' +p20047 +tp20048 +a(g20045 +g20047 +S'latin' +p20049 +tp20050 +a(g20047 +g20049 +S'in' +p20051 +tp20052 +a(g20049 +g20051 +S'the' +p20053 +tp20054 +a(g20051 +g20053 +S'late' +p20055 +tp20056 +a(g20053 +g20055 +S'fourth' +p20057 +tp20058 +a(g20055 +g20057 +S'century,' +p20059 +tp20060 +a(g20057 +g20059 +S'has' +p20061 +tp20062 +a(g20059 +g20061 +S'retreated' +p20063 +tp20064 +a(g20061 +g20063 +S'to' +p20065 +tp20066 +a(g20063 +g20065 +S'the' +p20067 +tp20068 +a(g20065 +g20067 +S'desert.' +p20069 +tp20070 +a(g20067 +g20069 +S'he' +p20071 +tp20072 +a(g20069 +g20071 +S'holds' +p20073 +tp20074 +a(g20071 +g20073 +S'the' +p20075 +tp20076 +a(g20073 +g20075 +S'rock' +p20077 +tp20078 +a(g20075 +g20077 +S'he' +p20079 +tp20080 +a(g20077 +g20079 +S'will' +p20081 +tp20082 +a(g20079 +g20081 +S'use' +p20083 +tp20084 +a(g20081 +g20083 +S'to' +p20085 +tp20086 +a(g20083 +g20085 +S'beat' +p20087 +tp20088 +a(g20085 +g20087 +S'his' +p20089 +tp20090 +a(g20087 +g20089 +S'chest' +p20091 +tp20092 +a(g20089 +g20091 +S'in' +p20093 +tp20094 +a(g20091 +g20093 +S'punishment' +p20095 +tp20096 +a(g20093 +g20095 +S'for' +p20097 +tp20098 +a(g20095 +g20097 +S'loving' +p20099 +tp20100 +a(g20097 +g20099 +S'secular' +p20101 +tp20102 +a(g20099 +g20101 +S'learning' +p20103 +tp20104 +a(g20101 +g20103 +S'too' +p20105 +tp20106 +a(g20103 +g20105 +S'much.' +p20107 +tp20108 +a(g20105 +g20107 +S'this' +p20109 +tp20110 +a(g20107 +g20109 +S'unfinished' +p20111 +tp20112 +a(g20109 +g20111 +S'painting' +p20113 +tp20114 +a(g20111 +g20113 +S'provides' +p20115 +tp20116 +a(g20113 +g20115 +S'evidence' +p20117 +tp20118 +a(g20115 +g20117 +S'of' +p20119 +tp20120 +a(g20117 +g20119 +S'el' +p20121 +tp20122 +a(g20119 +g20121 +S"greco's" +p20123 +tp20124 +a(g20121 +g20123 +S'working' +p20125 +tp20126 +a(g20123 +g20125 +S'method.' +p20127 +tp20128 +a(g20125 +g20127 +S'he' +p20129 +tp20130 +a(g20127 +g20129 +S'began' +p20131 +tp20132 +a(g20129 +g20131 +S'with' +p20133 +tp20134 +a(g20131 +g20133 +S'a' +p20135 +tp20136 +a(g20133 +g20135 +S'ground' +p20137 +tp20138 +a(g20135 +g20137 +S'coat' +p20139 +tp20140 +a(g20137 +g20139 +S'of' +p20141 +tp20142 +a(g20139 +g20141 +S'dark' +p20143 +tp20144 +a(g20141 +g20143 +S'reddish' +p20145 +tp20146 +a(g20143 +g20145 +S'brown,' +p20147 +tp20148 +a(g20145 +g20147 +S'still' +p20149 +tp20150 +a(g20147 +g20149 +S'visible' +p20151 +tp20152 +a(g20149 +g20151 +S'in' +p20153 +tp20154 +a(g20151 +g20153 +S'many' +p20155 +tp20156 +a(g20153 +g20155 +S'places.' +p20157 +tp20158 +a(g20155 +g20157 +S'he' +p20159 +tp20160 +a(g20157 +g20159 +S'outlined' +p20161 +tp20162 +a(g20159 +g20161 +S'the' +p20163 +tp20164 +a(g20161 +g20163 +S'figure' +p20165 +tp20166 +a(g20163 +g20165 +S'with' +p20167 +tp20168 +a(g20165 +g20167 +S'heavy' +p20169 +tp20170 +a(g20167 +g20169 +S'dark' +p20171 +tp20172 +a(g20169 +g20171 +S'contours,' +p20173 +tp20174 +a(g20171 +g20173 +S'as' +p20175 +tp20176 +a(g20173 +g20175 +S'in' +p20177 +tp20178 +a(g20175 +g20177 +S"jerome's" +p20179 +tp20180 +a(g20177 +g20179 +S'lower' +p20181 +tp20182 +a(g20179 +g20181 +S'left' +p20183 +tp20184 +a(g20181 +g20183 +S'leg,' +p20185 +tp20186 +a(g20183 +g20185 +S'then' +p20187 +tp20188 +a(g20185 +g20187 +S'used' +p20189 +tp20190 +a(g20187 +g20189 +S'thin,' +p20191 +tp20192 +a(g20189 +g20191 +S'fluid' +p20193 +tp20194 +a(g20191 +g20193 +S'strokes' +p20195 +tp20196 +a(g20193 +g20195 +S'of' +p20197 +tp20198 +a(g20195 +g20197 +S'lighter' +p20199 +tp20200 +a(g20197 +g20199 +S'paint' +p20201 +tp20202 +a(g20199 +g20201 +S'to' +p20203 +tp20204 +a(g20201 +g20203 +S'define' +p20205 +tp20206 +a(g20203 +g20205 +S'the' +p20207 +tp20208 +a(g20205 +g20207 +S'body,' +p20209 +tp20210 +a(g20207 +g20209 +S'as' +p20211 +tp20212 +a(g20209 +g20211 +S'the' +p20213 +tp20214 +a(g20211 +g20213 +S'right' +p20215 +tp20216 +a(g20213 +g20215 +S'leg' +p20217 +tp20218 +a(g20215 +g20217 +S'reveals.' +p20219 +tp20220 +a(g20217 +g20219 +S'with' +p20221 +tp20222 +a(g20219 +g20221 +S'a' +p20223 +tp20224 +a(g20221 +g20223 +S'stiff' +p20225 +tp20226 +a(g20223 +g20225 +S'brush' +p20227 +tp20228 +a(g20225 +g20227 +S'and' +p20229 +tp20230 +a(g20227 +g20229 +S'thick' +p20231 +tp20232 +a(g20229 +g20231 +S'white' +p20233 +tp20234 +a(g20231 +g20233 +S'paint' +p20235 +tp20236 +a(g20233 +g20235 +S'he' +p20237 +tp20238 +a(g20235 +g20237 +S'enlivened' +p20239 +tp20240 +a(g20237 +g20239 +S'some' +p20241 +tp20242 +a(g20239 +g20241 +S'parts' +p20243 +tp20244 +a(g20241 +g20243 +S'of' +p20245 +tp20246 +a(g20243 +g20245 +S'the' +p20247 +tp20248 +a(g20245 +g20247 +S'anatomy,' +p20249 +tp20250 +a(g20247 +g20249 +S'most' +p20251 +tp20252 +a(g20249 +g20251 +S'noticeably' +p20253 +tp20254 +a(g20251 +g20253 +S'the' +p20255 +tp20256 +a(g20253 +g20255 +S'torso.' +p20257 +tp20258 +a(g20255 +g20257 +S'and' +p20259 +tp20260 +a(g20257 +g20259 +S'in' +p20261 +tp20262 +a(g20259 +g20261 +S'completed' +p20263 +tp20264 +a(g20261 +g20263 +S'areas' +p20265 +tp20266 +a(g20263 +g20265 +S'such' +p20267 +tp20268 +a(g20265 +g20267 +S'as' +p20269 +tp20270 +a(g20267 +g20269 +S'the' +p20271 +tp20272 +a(g20269 +g20271 +S"saint's" +p20273 +tp20274 +a(g20271 +g20273 +S'face,' +p20275 +tp20276 +a(g20273 +g20275 +S'he' +p20277 +tp20278 +a(g20275 +g20277 +S'smoothed' +p20279 +tp20280 +a(g20277 +g20279 +S'these' +p20281 +tp20282 +a(g20279 +g20281 +S'jagged' +p20283 +tp20284 +a(g20281 +g20283 +S'contours.' +p20285 +tp20286 +a(g20283 +g20285 +S'few' +p20287 +tp20288 +a(g20285 +g20287 +S'images' +p20289 +tp20290 +a(g20287 +g20289 +S'of' +p20291 +tp20292 +a(g20289 +g20291 +S'saints' +p20293 +tp20294 +a(g20291 +g20293 +S'show' +p20295 +tp20296 +a(g20293 +g20295 +S'women' +p20297 +tp20298 +a(g20295 +g20297 +S'as' +p20299 +tp20300 +a(g20297 +g20299 +S'gorgeously' +p20301 +tp20302 +a(g20299 +g20301 +S'attired' +p20303 +tp20304 +a(g20301 +g20303 +S'as' +p20305 +tp20306 +a(g20303 +g20305 +S'francisco' +p20307 +tp20308 +a(g20305 +g20307 +S'de' +p20309 +tp20310 +a(g20307 +g20309 +S"zurbarán's." +p20311 +tp20312 +a(g20309 +g20311 +S'his' +p20313 +tp20314 +a(g20311 +g20313 +S'multiple' +p20315 +tp20316 +a(g20313 +g20315 +S'versions' +p20317 +tp20318 +a(g20315 +g20317 +S'of' +p20319 +tp20320 +a(g20317 +g20319 +S'the' +p20321 +tp20322 +a(g20319 +g20321 +S'legend' +p20323 +tp20324 +a(g20321 +g20323 +S'of' +p20325 +tp20326 +a(g20323 +g20325 +S'saint' +p20327 +tp20328 +a(g20325 +g20327 +S'lucy,' +p20329 +tp20330 +a(g20327 +g20329 +S'the' +p20331 +tp20332 +a(g20329 +g20331 +S'daughter' +p20333 +tp20334 +a(g20331 +g20333 +S'of' +p20335 +tp20336 +a(g20333 +g20335 +S'an' +p20337 +tp20338 +a(g20335 +g20337 +S'aristocratic' +p20339 +tp20340 +a(g20337 +g20339 +S'family' +p20341 +tp20342 +a(g20339 +g20341 +S'in' +p20343 +tp20344 +a(g20341 +g20343 +S'fourth-century' +p20345 +tp20346 +a(g20343 +g20345 +S'syracuse,' +p20347 +tp20348 +a(g20345 +g20347 +S'arose' +p20349 +tp20350 +a(g20347 +g20349 +S'during' +p20351 +tp20352 +a(g20349 +g20351 +S'the' +p20353 +tp20354 +a(g20351 +g20353 +S'counter-reformation.' +p20355 +tp20356 +a(g20353 +g20355 +S'one' +p20357 +tp20358 +a(g20355 +g20357 +S'popular' +p20359 +tp20360 +a(g20357 +g20359 +S'interpretation,' +p20361 +tp20362 +a(g20359 +g20361 +S'inspired' +p20363 +tp20364 +a(g20361 +g20363 +S'by' +p20365 +tp20366 +a(g20363 +g20365 +S'her' +p20367 +tp20368 +a(g20365 +g20367 +S'unusual' +p20369 +tp20370 +a(g20367 +g20369 +S'attribute,' +p20371 +tp20372 +a(g20369 +g20371 +S'maintained' +p20373 +tp20374 +a(g20371 +g20373 +S'that' +p20375 +tp20376 +a(g20373 +g20375 +S'lucy,' +p20377 +tp20378 +a(g20375 +g20377 +S'determined' +p20379 +tp20380 +a(g20377 +g20379 +S'to' +p20381 +tp20382 +a(g20379 +g20381 +S'dedicate' +p20383 +tp20384 +a(g20381 +g20383 +S'her' +p20385 +tp20386 +a(g20383 +g20385 +S'life' +p20387 +tp20388 +a(g20385 +g20387 +S'to' +p20389 +tp20390 +a(g20387 +g20389 +S'christ,' +p20391 +tp20392 +a(g20389 +g20391 +S'had' +p20393 +tp20394 +a(g20391 +g20393 +S'plucked' +p20395 +tp20396 +a(g20393 +g20395 +S'out' +p20397 +tp20398 +a(g20395 +g20397 +S'her' +p20399 +tp20400 +a(g20397 +g20399 +S'eyes' +p20401 +tp20402 +a(g20399 +g20401 +S'and' +p20403 +tp20404 +a(g20401 +g20403 +S'sent' +p20405 +tp20406 +a(g20403 +g20405 +S'them' +p20407 +tp20408 +a(g20405 +g20407 +S'to' +p20409 +tp20410 +a(g20407 +g20409 +S'a' +p20411 +tp20412 +a(g20409 +g20411 +S'tenacious' +p20413 +tp20414 +a(g20411 +g20413 +S'suitor' +p20415 +tp20416 +a(g20413 +g20415 +S'after' +p20417 +tp20418 +a(g20415 +g20417 +S'he' +p20419 +tp20420 +a(g20417 +g20419 +S'insisted' +p20421 +tp20422 +a(g20419 +g20421 +S'that' +p20423 +tp20424 +a(g20421 +g20423 +S'their' +p20425 +tp20426 +a(g20423 +g20425 +S'beauty' +p20427 +tp20428 +a(g20425 +g20427 +S'allowed' +p20429 +tp20430 +a(g20427 +g20429 +S'him' +p20431 +tp20432 +a(g20429 +g20431 +S'no' +p20433 +tp20434 +a(g20431 +g20433 +S'peace.' +p20435 +tp20436 +a(g20433 +g20435 +S'astounded' +p20437 +tp20438 +a(g20435 +g20437 +S'by' +p20439 +tp20440 +a(g20437 +g20439 +S'her' +p20441 +tp20442 +a(g20439 +g20441 +S'devotion' +p20443 +tp20444 +a(g20441 +g20443 +S'to' +p20445 +tp20446 +a(g20443 +g20445 +S'her' +p20447 +tp20448 +a(g20445 +g20447 +S'faith,' +p20449 +tp20450 +a(g20447 +g20449 +S'the' +p20451 +tp20452 +a(g20449 +g20451 +S'admirer' +p20453 +tp20454 +a(g20451 +g20453 +S'converted' +p20455 +tp20456 +a(g20453 +g20455 +S'to' +p20457 +tp20458 +a(g20455 +g20457 +S'christianity,' +p20459 +tp20460 +a(g20457 +g20459 +S'and' +p20461 +tp20462 +a(g20459 +g20461 +S'lucy,' +p20463 +tp20464 +a(g20461 +g20463 +S'the' +p20465 +tp20466 +a(g20463 +g20465 +S'legend' +p20467 +tp20468 +a(g20465 +g20467 +S'continues,' +p20469 +tp20470 +a(g20467 +g20469 +S'later' +p20471 +tp20472 +a(g20469 +g20471 +S'found' +p20473 +tp20474 +a(g20471 +g20473 +S'her' +p20475 +tp20476 +a(g20473 +g20475 +S'eyesight' +p20477 +tp20478 +a(g20475 +g20477 +S'miraculously' +p20479 +tp20480 +a(g20477 +g20479 +S'restored' +p20481 +tp20482 +a(g20479 +g20481 +S'one' +p20483 +tp20484 +a(g20481 +g20483 +S'day' +p20485 +tp20486 +a(g20483 +g20485 +S'during' +p20487 +tp20488 +a(g20485 +g20487 +S'prayer.' +p20489 +tp20490 +a(g20487 +g20489 +S'it' +p20491 +tp20492 +a(g20489 +g20491 +S'is' +p20493 +tp20494 +a(g20491 +g20493 +S'possible' +p20495 +tp20496 +a(g20493 +g20495 +S'that' +p20497 +tp20498 +a(g20495 +g20497 +S'the' +p20499 +tp20500 +a(g20497 +g20499 +S'young' +p20501 +tp20502 +a(g20499 +g20501 +S"saint's" +p20503 +tp20504 +a(g20501 +g20503 +S'connection' +p20505 +tp20506 +a(g20503 +g20505 +S'with' +p20507 +tp20508 +a(g20505 +g20507 +S'eyes' +p20509 +tp20510 +a(g20507 +g20509 +S'originated' +p20511 +tp20512 +a(g20509 +g20511 +S'in' +p20513 +tp20514 +a(g20511 +g20513 +S'the' +p20515 +tp20516 +a(g20513 +g20515 +S'latin' +p20517 +tp20518 +a(g20515 +g20517 +S'source' +p20519 +tp20520 +a(g20517 +g20519 +S'for' +p20521 +tp20522 +a(g20519 +g20521 +S'her' +p20523 +tp20524 +a(g20521 +g20523 +S'name,' +p20525 +tp20526 +a(g20523 +g20525 +S'the' +p20527 +tp20528 +a(g20525 +g20527 +S'success' +p20529 +tp20530 +a(g20527 +g20529 +S'of' +p20531 +tp20532 +a(g20529 +g20531 +S"zurbarán's" +p20533 +tp20534 +a(g20531 +g20533 +S'many' +p20535 +tp20536 +a(g20533 +g20535 +S'images' +p20537 +tp20538 +a(g20535 +g20537 +S'of' +p20539 +tp20540 +a(g20537 +g20539 +S'virgin' +p20541 +tp20542 +a(g20539 +g20541 +S'martyrs' +p20543 +tp20544 +a(g20541 +g20543 +S'derived' +p20545 +tp20546 +a(g20543 +g20545 +S'not' +p20547 +tp20548 +a(g20545 +g20547 +S'only' +p20549 +tp20550 +a(g20547 +g20549 +S'from' +p20551 +tp20552 +a(g20549 +g20551 +S'their' +p20553 +tp20554 +a(g20551 +g20553 +S'inherently' +p20555 +tp20556 +a(g20553 +g20555 +S'pleasing' +p20557 +tp20558 +a(g20555 +g20557 +S'theme' +p20559 +tp20560 +a(g20557 +g20559 +S'--' +p20561 +tp20562 +a(g20559 +g20561 +S'beautiful,' +p20563 +tp20564 +a(g20561 +g20563 +S'splendidly' +p20565 +tp20566 +a(g20563 +g20565 +S'dressed' +p20567 +tp20568 +a(g20565 +g20567 +S'women' +p20569 +tp20570 +a(g20567 +g20569 +S'--' +p20571 +tp20572 +a(g20569 +g20571 +S'but' +p20573 +tp20574 +a(g20571 +g20573 +S'also' +p20575 +tp20576 +a(g20573 +g20575 +S'from' +p20577 +tp20578 +a(g20575 +g20577 +S'the' +p20579 +tp20580 +a(g20577 +g20579 +S"artist's" +p20581 +tp20582 +a(g20579 +g20581 +S'gifts' +p20583 +tp20584 +a(g20581 +g20583 +S'as' +p20585 +tp20586 +a(g20583 +g20585 +S'a' +p20587 +tp20588 +a(g20585 +g20587 +S'colorist' +p20589 +tp20590 +a(g20587 +g20589 +S'and' +p20591 +tp20592 +a(g20589 +g20591 +S'his' +p20593 +tp20594 +a(g20591 +g20593 +S'talent' +p20595 +tp20596 +a(g20593 +g20595 +S'for' +p20597 +tp20598 +a(g20595 +g20597 +S'combining' +p20599 +tp20600 +a(g20597 +g20599 +S'the' +p20601 +tp20602 +a(g20599 +g20601 +S'spiritual' +p20603 +tp20604 +a(g20601 +g20603 +S'and' +p20605 +tp20606 +a(g20603 +g20605 +S'material.' +p20607 +tp20608 +a(g20605 +g20607 +S'titian' +p20609 +tp20610 +a(g20607 +g20609 +S'painted' +p20611 +tp20612 +a(g20609 +g20611 +S'the' +p20613 +tp20614 +a(g20611 +g20613 +S'first' +p20615 +tp20616 +a(g20613 +g20615 +S'version' +p20617 +tp20618 +a(g20615 +g20617 +S'of' +p20619 +tp20620 +a(g20617 +g20619 +S'the' +p20621 +tp20622 +a(g20619 +g20621 +S'story' +p20623 +tp20624 +a(g20621 +g20623 +S'of' +p20625 +tp20626 +a(g20623 +g20625 +S'venus' +p20627 +tp20628 +a(g20625 +g20627 +S'and' +p20629 +tp20630 +a(g20627 +g20629 +S'adonis' +p20631 +tp20632 +a(g20629 +g20631 +S'derives' +p20633 +tp20634 +a(g20631 +g20633 +S'from' +p20635 +tp20636 +a(g20633 +g20635 +S"ovid's" +p20637 +tp20638 +a(g20635 +g20637 +S'it' +p20639 +tp20640 +a(g20637 +g20639 +S'is' +p20641 +tp20642 +a(g20639 +g20641 +S'odd' +p20643 +tp20644 +a(g20641 +g20643 +S'to' +p20645 +tp20646 +a(g20643 +g20645 +S'see' +p20647 +tp20648 +a(g20645 +g20647 +S'venus' +p20649 +tp20650 +a(g20647 +g20649 +S'depicted' +p20651 +tp20652 +a(g20649 +g20651 +S'as' +p20653 +tp20654 +a(g20651 +g20653 +S'a' +p20655 +tp20656 +a(g20653 +g20655 +S'vulnerable' +p20657 +tp20658 +a(g20655 +g20657 +S'figure' +p20659 +tp20660 +a(g20657 +g20659 +S'and' +p20661 +tp20662 +a(g20659 +g20661 +S'from' +p20663 +tp20664 +a(g20661 +g20663 +S'a' +p20665 +tp20666 +a(g20663 +g20665 +S'rear' +p20667 +tp20668 +a(g20665 +g20667 +S'view.' +p20669 +tp20670 +a(g20667 +g20669 +S'titian' +p20671 +tp20672 +a(g20669 +g20671 +S'wrote' +p20673 +tp20674 +a(g20671 +g20673 +S'that' +p20675 +tp20676 +a(g20673 +g20675 +S'by' +p20677 +tp20678 +a(g20675 +g20677 +S'posing' +p20679 +tp20680 +a(g20677 +g20679 +S'her' +p20681 +tp20682 +a(g20679 +g20681 +S'from' +p20683 +tp20684 +a(g20681 +g20683 +S'behind,' +p20685 +tp20686 +a(g20683 +g20685 +S'he' +p20687 +tp20688 +a(g20685 +g20687 +S'hoped' +p20689 +tp20690 +a(g20687 +g20689 +S'to' +p20691 +tp20692 +a(g20689 +g20691 +S'provide' +p20693 +tp20694 +a(g20691 +g20693 +S'variety' +p20695 +tp20696 +a(g20693 +g20695 +S'among' +p20697 +tp20698 +a(g20695 +g20697 +S'the' +p20699 +tp20700 +a(g20697 +g20699 +S'many' +p20701 +tp20702 +a(g20699 +g20701 +S'nudes' +p20703 +tp20704 +a(g20701 +g20703 +S'in' +p20705 +tp20706 +a(g20703 +g20705 +S'king' +p20707 +tp20708 +a(g20705 +g20707 +S"philip's" +p20709 +tp20710 +a(g20707 +g20709 +S'collection.' +p20711 +tp20712 +a(g20709 +g20711 +S'by' +p20713 +tp20714 +a(g20711 +g20713 +S'painting' +p20715 +tp20716 +a(g20713 +g20715 +S'venus' +p20717 +tp20718 +a(g20715 +g20717 +S'from' +p20719 +tp20720 +a(g20717 +g20719 +S'the' +p20721 +tp20722 +a(g20719 +g20721 +S'back,' +p20723 +tp20724 +a(g20721 +g20723 +S'titian' +p20725 +tp20726 +a(g20723 +g20725 +S'also' +p20727 +tp20728 +a(g20725 +g20727 +S'allowed' +p20729 +tp20730 +a(g20727 +g20729 +S'viewers' +p20731 +tp20732 +a(g20729 +g20731 +S'to' +p20733 +tp20734 +a(g20731 +g20733 +S'complete' +p20735 +tp20736 +a(g20733 +g20735 +S'her' +p20737 +tp20738 +a(g20735 +g20737 +S'beauty' +p20739 +tp20740 +a(g20737 +g20739 +S'according' +p20741 +tp20742 +a(g20739 +g20741 +S'to' +p20743 +tp20744 +a(g20741 +g20743 +S'their' +p20745 +tp20746 +a(g20743 +g20745 +S'own' +p20747 +tp20748 +a(g20745 +g20747 +S'ideal' +p20749 +tp20750 +a(g20747 +g20749 +S'of' +p20751 +tp20752 +a(g20749 +g20751 +S'perfection.' +p20753 +tp20754 +a(g20751 +g20753 +S'although' +p20755 +tp20756 +a(g20753 +g20755 +S'many' +p20757 +tp20758 +a(g20755 +g20757 +S'articles' +p20759 +tp20760 +a(g20757 +g20759 +S'were' +p20761 +tp20762 +a(g20759 +g20761 +S'woven' +p20763 +tp20764 +a(g20761 +g20763 +S'at' +p20765 +tp20766 +a(g20763 +g20765 +S'home' +p20767 +tp20768 +a(g20765 +g20767 +S'throughout' +p20769 +tp20770 +a(g20767 +g20769 +S'the' +p20771 +tp20772 +a(g20769 +g20771 +S'eighteenth' +p20773 +tp20774 +a(g20771 +g20773 +S'and' +p20775 +tp20776 +a(g20773 +g20775 +S'nineteenth' +p20777 +tp20778 +a(g20775 +g20777 +S'centuries,' +p20779 +tp20780 +a(g20777 +g20779 +S'professional' +p20781 +tp20782 +a(g20779 +g20781 +S'weavers' +p20783 +tp20784 +a(g20781 +g20783 +S'and' +p20785 +tp20786 +a(g20783 +g20785 +S'itinerant' +p20787 +tp20788 +a(g20785 +g20787 +S'journeymen' +p20789 +tp20790 +a(g20787 +g20789 +S'relieved' +p20791 +tp20792 +a(g20789 +g20791 +S'american' +p20793 +tp20794 +a(g20791 +g20793 +S'women' +p20795 +tp20796 +a(g20793 +g20795 +S'of' +p20797 +tp20798 +a(g20795 +g20797 +S'many' +p20799 +tp20800 +a(g20797 +g20799 +S'of' +p20801 +tp20802 +a(g20799 +g20801 +S'these' +p20803 +tp20804 +a(g20801 +g20803 +S'chores.' +p20805 +tp20806 +a(g20803 +g20805 +S'housewives' +p20807 +tp20808 +a(g20805 +g20807 +S'could' +p20809 +tp20810 +a(g20807 +g20809 +S'think' +p20811 +tp20812 +a(g20809 +g20811 +S'beyond' +p20813 +tp20814 +a(g20811 +g20813 +S'providing' +p20815 +tp20816 +a(g20813 +g20815 +S'the' +p20817 +tp20818 +a(g20815 +g20817 +S'sternest' +p20819 +tp20820 +a(g20817 +g20819 +S'necessities' +p20821 +tp20822 +a(g20819 +g20821 +S'to' +p20823 +tp20824 +a(g20821 +g20823 +S'adding' +p20825 +tp20826 +a(g20823 +g20825 +S'touches' +p20827 +tp20828 +a(g20825 +g20827 +S'of' +p20829 +tp20830 +a(g20827 +g20829 +S'grace' +p20831 +tp20832 +a(g20829 +g20831 +S'and' +p20833 +tp20834 +a(g20831 +g20833 +S'luxury' +p20835 +tp20836 +a(g20833 +g20835 +S'to' +p20837 +tp20838 +a(g20835 +g20837 +S'their' +p20839 +tp20840 +a(g20837 +g20839 +S'homes.' +p20841 +tp20842 +a(g20839 +g20841 +S'for' +p20843 +tp20844 +a(g20841 +g20843 +S'this,' +p20845 +tp20846 +a(g20843 +g20845 +S'they' +p20847 +tp20848 +a(g20845 +g20847 +S'turned' +p20849 +tp20850 +a(g20847 +g20849 +S'to' +p20851 +tp20852 +a(g20849 +g20851 +S'needlework.' +p20853 +tp20854 +a(g20851 +g20853 +S'needlework' +p20855 +tp20856 +a(g20853 +g20855 +S'was' +p20857 +tp20858 +a(g20855 +g20857 +S'a' +p20859 +tp20860 +a(g20857 +g20859 +S'practical' +p20861 +tp20862 +a(g20859 +g20861 +S'necessity' +p20863 +tp20864 +a(g20861 +g20863 +S'from' +p20865 +tp20866 +a(g20863 +g20865 +S'colonial' +p20867 +tp20868 +a(g20865 +g20867 +S'times' +p20869 +tp20870 +a(g20867 +g20869 +S'onward,' +p20871 +tp20872 +a(g20869 +g20871 +S'for' +p20873 +tp20874 +a(g20871 +g20873 +S'clothes' +p20875 +tp20876 +a(g20873 +g20875 +S'and' +p20877 +tp20878 +a(g20875 +g20877 +S'other' +p20879 +tp20880 +a(g20877 +g20879 +S'articles' +p20881 +tp20882 +a(g20879 +g20881 +S'had' +p20883 +tp20884 +a(g20881 +g20883 +S'to' +p20885 +tp20886 +a(g20883 +g20885 +S'be' +p20887 +tp20888 +a(g20885 +g20887 +S'made,' +p20889 +tp20890 +a(g20887 +g20889 +S'marked,' +p20891 +tp20892 +a(g20889 +g20891 +S'and' +p20893 +tp20894 +a(g20891 +g20893 +S'mended.' +p20895 +tp20896 +a(g20893 +g20895 +S'yet,' +p20897 +tp20898 +a(g20895 +g20897 +S'for' +p20899 +tp20900 +a(g20897 +g20899 +S'american' +p20901 +tp20902 +a(g20899 +g20901 +S'women,' +p20903 +tp20904 +a(g20901 +g20903 +S'needlework' +p20905 +tp20906 +a(g20903 +g20905 +S'was' +p20907 +tp20908 +a(g20905 +g20907 +S'also' +p20909 +tp20910 +a(g20907 +g20909 +S'a' +p20911 +tp20912 +a(g20909 +g20911 +S'luxury' +p20913 +tp20914 +a(g20911 +g20913 +S'that' +p20915 +tp20916 +a(g20913 +g20915 +S'permitted' +p20917 +tp20918 +a(g20915 +g20917 +S'them' +p20919 +tp20920 +a(g20917 +g20919 +S'to' +p20921 +tp20922 +a(g20919 +g20921 +S'embellish' +p20923 +tp20924 +a(g20921 +g20923 +S'their' +p20925 +tp20926 +a(g20923 +g20925 +S'homes' +p20927 +tp20928 +a(g20925 +g20927 +S'and' +p20929 +tp20930 +a(g20927 +g20929 +S'to' +p20931 +tp20932 +a(g20929 +g20931 +S'express' +p20933 +tp20934 +a(g20931 +g20933 +S'their' +p20935 +tp20936 +a(g20933 +g20935 +S'love' +p20937 +tp20938 +a(g20935 +g20937 +S'of' +p20939 +tp20940 +a(g20937 +g20939 +S'beauty.' +p20941 +tp20942 +a(g20939 +g20941 +S'moreover,' +p20943 +tp20944 +a(g20941 +g20943 +S'needlework' +p20945 +tp20946 +a(g20943 +g20945 +S'provided' +p20947 +tp20948 +a(g20945 +g20947 +S'an' +p20949 +tp20950 +a(g20947 +g20949 +S'opportunity' +p20951 +tp20952 +a(g20949 +g20951 +S'to' +p20953 +tp20954 +a(g20951 +g20953 +S'preserve' +p20955 +tp20956 +a(g20953 +g20955 +S'the' +p20957 +tp20958 +a(g20955 +g20957 +S'decorative' +p20959 +tp20960 +a(g20957 +g20959 +S'traditions' +p20961 +tp20962 +a(g20959 +g20961 +S'brought' +p20963 +tp20964 +a(g20961 +g20963 +S'from' +p20965 +tp20966 +a(g20963 +g20965 +S'their' +p20967 +tp20968 +a(g20965 +g20967 +S'native' +p20969 +tp20970 +a(g20967 +g20969 +S'lands' +p20971 +tp20972 +a(g20969 +g20971 +S'as' +p20973 +tp20974 +a(g20971 +g20973 +S'well' +p20975 +tp20976 +a(g20973 +g20975 +S'as' +p20977 +tp20978 +a(g20975 +g20977 +S'a' +p20979 +tp20980 +a(g20977 +g20979 +S'means' +p20981 +tp20982 +a(g20979 +g20981 +S'for' +p20983 +tp20984 +a(g20981 +g20983 +S'displaying' +p20985 +tp20986 +a(g20983 +g20985 +S'their' +p20987 +tp20988 +a(g20985 +g20987 +S'sewing' +p20989 +tp20990 +a(g20987 +g20989 +S'skills.' +p20991 +tp20992 +a(g20989 +g20991 +S'proficiency' +p20993 +tp20994 +a(g20991 +g20993 +S'in' +p20995 +tp20996 +a(g20993 +g20995 +S'needlework' +p20997 +tp20998 +a(g20995 +g20997 +S'was' +p20999 +tp21000 +a(g20997 +g20999 +S'commonly' +p21001 +tp21002 +a(g20999 +g21001 +S'demonstrated' +p21003 +tp21004 +a(g21001 +g21003 +S'in' +p21005 +tp21006 +a(g21003 +g21005 +S'samplers' +p21007 +tp21008 +a(g21005 +g21007 +S'made' +p21009 +tp21010 +a(g21007 +g21009 +S'by' +p21011 +tp21012 +a(g21009 +g21011 +S'young' +p21013 +tp21014 +a(g21011 +g21013 +S'girls' +p21015 +tp21016 +a(g21013 +g21015 +S'when,' +p21017 +tp21018 +a(g21015 +g21017 +S'in' +p21019 +tp21020 +a(g21017 +g21019 +S'the' +p21021 +tp21022 +a(g21019 +g21021 +S'course' +p21023 +tp21024 +a(g21021 +g21023 +S'of' +p21025 +tp21026 +a(g21023 +g21025 +S'their' +p21027 +tp21028 +a(g21025 +g21027 +S'education' +p21029 +tp21030 +a(g21027 +g21029 +S'at' +p21031 +tp21032 +a(g21029 +g21031 +S'home' +p21033 +tp21034 +a(g21031 +g21033 +S'and' +p21035 +tp21036 +a(g21033 +g21035 +S'at' +p21037 +tp21038 +a(g21035 +g21037 +S'school,' +p21039 +tp21040 +a(g21037 +g21039 +S'they' +p21041 +tp21042 +a(g21039 +g21041 +S'had' +p21043 +tp21044 +a(g21041 +g21043 +S'mastered' +p21045 +tp21046 +a(g21043 +g21045 +S'the' +p21047 +tp21048 +a(g21045 +g21047 +S'art' +p21049 +tp21050 +a(g21047 +g21049 +S'of' +p21051 +tp21052 +a(g21049 +g21051 +S'embroidery.' +p21053 +tp21054 +a(g21051 +g21053 +S'the' +p21055 +tp21056 +a(g21053 +g21055 +S'earliest' +p21057 +tp21058 +a(g21055 +g21057 +S'samplers' +p21059 +tp21060 +a(g21057 +g21059 +S'were' +p21061 +tp21062 +a(g21059 +g21061 +S'actually' +p21063 +tp21064 +a(g21061 +g21063 +S'collections' +p21065 +tp21066 +a(g21063 +g21065 +S'of' +p21067 +tp21068 +a(g21065 +g21067 +S'different' +p21069 +tp21070 +a(g21067 +g21069 +S'stitches' +p21071 +tp21072 +a(g21069 +g21071 +S'and' +p21073 +tp21074 +a(g21071 +g21073 +S'served' +p21075 +tp21076 +a(g21073 +g21075 +S'as' +p21077 +tp21078 +a(g21075 +g21077 +S'needlework' +p21079 +tp21080 +a(g21077 +g21079 +S'guides.' +p21081 +tp21082 +a(g21079 +g21081 +S'by' +p21083 +tp21084 +a(g21081 +g21083 +S'the' +p21085 +tp21086 +a(g21083 +g21085 +S'mid-eighteenth' +p21087 +tp21088 +a(g21085 +g21087 +S'century,' +p21089 +tp21090 +a(g21087 +g21089 +S'samplers' +p21091 +tp21092 +a(g21089 +g21091 +S'had' +p21093 +tp21094 +a(g21091 +g21093 +S'become' +p21095 +tp21096 +a(g21093 +g21095 +S'showpieces.' +p21097 +tp21098 +a(g21095 +g21097 +S'they' +p21099 +tp21100 +a(g21097 +g21099 +S'generally' +p21101 +tp21102 +a(g21099 +g21101 +S'included' +p21103 +tp21104 +a(g21101 +g21103 +S'a' +p21105 +tp21106 +a(g21103 +g21105 +S'central' +p21107 +tp21108 +a(g21105 +g21107 +S'scene,' +p21109 +tp21110 +a(g21107 +g21109 +S'several' +p21111 +tp21112 +a(g21109 +g21111 +S'types' +p21113 +tp21114 +a(g21111 +g21113 +S'of' +p21115 +tp21116 +a(g21113 +g21115 +S'alphabets,' +p21117 +tp21118 +a(g21115 +g21117 +S'quotations' +p21119 +tp21120 +a(g21117 +g21119 +S'from' +p21121 +tp21122 +a(g21119 +g21121 +S'the' +p21123 +tp21124 +a(g21121 +g21123 +S'bible' +p21125 +tp21126 +a(g21123 +g21125 +S'or' +p21127 +tp21128 +a(g21125 +g21127 +S'pious' +p21129 +tp21130 +a(g21127 +g21129 +S'verses,' +p21131 +tp21132 +a(g21129 +g21131 +S'the' +p21133 +tp21134 +a(g21131 +g21133 +S"maker's" +p21135 +tp21136 +a(g21133 +g21135 +S'name,' +p21137 +tp21138 +a(g21135 +g21137 +S'the' +p21139 +tp21140 +a(g21137 +g21139 +S'date,' +p21141 +tp21142 +a(g21139 +g21141 +S'and' +p21143 +tp21144 +a(g21141 +g21143 +S'her' +p21145 +tp21146 +a(g21143 +g21145 +S'age.' +p21147 +tp21148 +a(g21145 +g21147 +S'here' +p21149 +tp21150 +a(g21147 +g21149 +S'a' +p21151 +tp21152 +a(g21149 +g21151 +S'young' +p21153 +tp21154 +a(g21151 +g21153 +S'seamstress' +p21155 +tp21156 +a(g21153 +g21155 +S'had' +p21157 +tp21158 +a(g21155 +g21157 +S'used' +p21159 +tp21160 +a(g21157 +g21159 +S'silk' +p21161 +tp21162 +a(g21159 +g21161 +S'embroidery' +p21163 +tp21164 +a(g21161 +g21163 +S'on' +p21165 +tp21166 +a(g21163 +g21165 +S'linen' +p21167 +tp21168 +a(g21165 +g21167 +S'to' +p21169 +tp21170 +a(g21167 +g21169 +S'depict' +p21171 +tp21172 +a(g21169 +g21171 +S'a' +p21173 +tp21174 +a(g21171 +g21173 +S'house,' +p21175 +tp21176 +a(g21173 +g21175 +S'possibly' +p21177 +tp21178 +a(g21175 +g21177 +S'her' +p21179 +tp21180 +a(g21177 +g21179 +S'own,' +p21181 +tp21182 +a(g21179 +g21181 +S'and' +p21183 +tp21184 +a(g21181 +g21183 +S'outbuilding.' +p21185 +tp21186 +a(g21183 +g21185 +S'a' +p21187 +tp21188 +a(g21185 +g21187 +S'variety' +p21189 +tp21190 +a(g21187 +g21189 +S'of' +p21191 +tp21192 +a(g21189 +g21191 +S'stitches' +p21193 +tp21194 +a(g21191 +g21193 +S'are' +p21195 +tp21196 +a(g21193 +g21195 +S'demonstrated' +p21197 +tp21198 +a(g21195 +g21197 +S'in' +p21199 +tp21200 +a(g21197 +g21199 +S'the' +p21201 +tp21202 +a(g21199 +g21201 +S'pictorial' +p21203 +tp21204 +a(g21201 +g21203 +S'forms,' +p21205 +tp21206 +a(g21203 +g21205 +S'and' +p21207 +tp21208 +a(g21205 +g21207 +S'still' +p21209 +tp21210 +a(g21207 +g21209 +S'others' +p21211 +tp21212 +a(g21209 +g21211 +S'compose' +p21213 +tp21214 +a(g21211 +g21213 +S'the' +p21215 +tp21216 +a(g21213 +g21215 +S'rows' +p21217 +tp21218 +a(g21215 +g21217 +S'of' +p21219 +tp21220 +a(g21217 +g21219 +S'flowers' +p21221 +tp21222 +a(g21219 +g21221 +S'and' +p21223 +tp21224 +a(g21221 +g21223 +S'plants' +p21225 +tp21226 +a(g21223 +g21225 +S'that' +p21227 +tp21228 +a(g21225 +g21227 +S'separate' +p21229 +tp21230 +a(g21227 +g21229 +S'the' +p21231 +tp21232 +a(g21229 +g21231 +S'alphabets,' +p21233 +tp21234 +a(g21231 +g21233 +S'numbers,' +p21235 +tp21236 +a(g21233 +g21235 +S'and' +p21237 +tp21238 +a(g21235 +g21237 +S'biographical' +p21239 +tp21240 +a(g21237 +g21239 +S'information.' +p21241 +tp21242 +a(g21239 +g21241 +S'samplers' +p21243 +tp21244 +a(g21241 +g21243 +S'like' +p21245 +tp21246 +a(g21243 +g21245 +S'this' +p21247 +tp21248 +a(g21245 +g21247 +S'were' +p21249 +tp21250 +a(g21247 +g21249 +S'proudly' +p21251 +tp21252 +a(g21249 +g21251 +S'displayed' +p21253 +tp21254 +a(g21251 +g21253 +S'by' +p21255 +tp21256 +a(g21253 +g21255 +S'the' +p21257 +tp21258 +a(g21255 +g21257 +S"girl's" +p21259 +tp21260 +a(g21257 +g21259 +S'parents' +p21261 +tp21262 +a(g21259 +g21261 +S'and,' +p21263 +tp21264 +a(g21261 +g21263 +S'after' +p21265 +tp21266 +a(g21263 +g21265 +S'she' +p21267 +tp21268 +a(g21265 +g21267 +S'married,' +p21269 +tp21270 +a(g21267 +g21269 +S'in' +p21271 +tp21272 +a(g21269 +g21271 +S'her' +p21273 +tp21274 +a(g21271 +g21273 +S'own' +p21275 +tp21276 +a(g21273 +g21275 +S'home.' +p21277 +tp21278 +a(g21275 +g21277 +S'at' +p21279 +tp21280 +a(g21277 +g21279 +S'the' +p21281 +tp21282 +a(g21279 +g21281 +S'“especial' +p21283 +tp21284 +a(g21281 +g21283 +S'suggestion”' +p21285 +tp21286 +a(g21283 +g21285 +S'of' +p21287 +tp21288 +a(g21285 +g21287 +S'a' +p21289 +tp21290 +a(g21287 +g21289 +S'british' +p21291 +tp21292 +a(g21289 +g21291 +S'textile' +p21293 +tp21294 +a(g21291 +g21293 +S'manufacturer,' +p21295 +tp21296 +a(g21293 +g21295 +S'turner' +p21297 +tp21298 +a(g21295 +g21297 +S'devised' +p21299 +tp21300 +a(g21297 +g21299 +S'this' +p21301 +tp21302 +a(g21299 +g21301 +S'venetian' +p21303 +tp21304 +a(g21301 +g21303 +S'cityscape' +p21305 +tp21306 +a(g21303 +g21305 +S'as' +p21307 +tp21308 +a(g21305 +g21307 +S'a' +p21309 +tp21310 +a(g21307 +g21309 +S'symbolic' +p21311 +tp21312 +a(g21309 +g21311 +S'salute' +p21313 +tp21314 +a(g21311 +g21313 +S'to' +p21315 +tp21316 +a(g21313 +g21315 +S'commerce.' +p21317 +tp21318 +a(g21315 +g21317 +S'gondolas' +p21319 +tp21320 +a(g21317 +g21319 +S'carry' +p21321 +tp21322 +a(g21319 +g21321 +S'cargoes' +p21323 +tp21324 +a(g21321 +g21323 +S'of' +p21325 +tp21326 +a(g21323 +g21325 +S'fine' +p21327 +tp21328 +a(g21325 +g21327 +S'fabrics' +p21329 +tp21330 +a(g21327 +g21329 +S'and' +p21331 +tp21332 +a(g21329 +g21331 +S'exotic' +p21333 +tp21334 +a(g21331 +g21333 +S'spices.' +p21335 +tp21336 +a(g21333 +g21335 +S'on' +p21337 +tp21338 +a(g21335 +g21337 +S'the' +p21339 +tp21340 +a(g21337 +g21339 +S'right' +p21341 +tp21342 +a(g21339 +g21341 +S'is' +p21343 +tp21344 +a(g21341 +g21343 +S'the' +p21345 +tp21346 +a(g21343 +g21345 +S'dogana,' +p21347 +tp21348 +a(g21345 +g21347 +S'or' +p21349 +tp21350 +a(g21347 +g21349 +S'customs' +p21351 +tp21352 +a(g21349 +g21351 +S'house,' +p21353 +tp21354 +a(g21351 +g21353 +S'topped' +p21355 +tp21356 +a(g21353 +g21355 +S'by' +p21357 +tp21358 +a(g21355 +g21357 +S'a' +p21359 +tp21360 +a(g21357 +g21359 +S'statue' +p21361 +tp21362 +a(g21359 +g21361 +S'of' +p21363 +tp21364 +a(g21361 +g21363 +S'fortune,' +p21365 +tp21366 +a(g21363 +g21365 +S'which' +p21367 +tp21368 +a(g21365 +g21367 +S'turner' +p21369 +tp21370 +a(g21367 +g21369 +S'greatly' +p21371 +tp21372 +a(g21369 +g21371 +S'enlarged' +p21373 +tp21374 +a(g21371 +g21373 +S'in' +p21375 +tp21376 +a(g21373 +g21375 +S'size.' +p21377 +tp21378 +a(g21375 +g21377 +S'moreover,' +p21379 +tp21380 +a(g21377 +g21379 +S'the' +p21381 +tp21382 +a(g21379 +g21381 +S'church' +p21383 +tp21384 +a(g21381 +g21383 +S'of' +p21385 +tp21386 +a(g21383 +g21385 +S'san' +p21387 +tp21388 +a(g21385 +g21387 +S'giorgio' +p21389 +tp21390 +a(g21387 +g21389 +S'maggiore' +p21391 +tp21392 +a(g21389 +g21391 +S'has' +p21393 +tp21394 +a(g21391 +g21393 +S'been' +p21395 +tp21396 +a(g21393 +g21395 +S'pushed' +p21397 +tp21398 +a(g21395 +g21397 +S'very' +p21399 +tp21400 +a(g21397 +g21399 +S'far' +p21401 +tp21402 +a(g21399 +g21401 +S'back' +p21403 +tp21404 +a(g21401 +g21403 +S'in' +p21405 +tp21406 +a(g21403 +g21405 +S'space,' +p21407 +tp21408 +a(g21405 +g21407 +S'making' +p21409 +tp21410 +a(g21407 +g21409 +S'the' +p21411 +tp21412 +a(g21409 +g21411 +S'grand' +p21413 +tp21414 +a(g21411 +g21413 +S'canal' +p21415 +tp21416 +a(g21413 +g21415 +S'seem' +p21417 +tp21418 +a(g21415 +g21417 +S'much' +p21419 +tp21420 +a(g21417 +g21419 +S'wider' +p21421 +tp21422 +a(g21419 +g21421 +S'than' +p21423 +tp21424 +a(g21421 +g21423 +S'it' +p21425 +tp21426 +a(g21423 +g21425 +S'really' +p21427 +tp21428 +a(g21425 +g21427 +S'is.' +p21429 +tp21430 +a(g21427 +g21429 +S'these' +p21431 +tp21432 +a(g21429 +g21431 +S'theatrical' +p21433 +tp21434 +a(g21431 +g21433 +S'exaggerations' +p21435 +tp21436 +a(g21433 +g21435 +S'and' +p21437 +tp21438 +a(g21435 +g21437 +S'the' +p21439 +tp21440 +a(g21437 +g21439 +S'precise,' +p21441 +tp21442 +a(g21439 +g21441 +S'linear' +p21443 +tp21444 +a(g21441 +g21443 +S'drafting' +p21445 +tp21446 +a(g21443 +g21445 +S'of' +p21447 +tp21448 +a(g21445 +g21447 +S'the' +p21449 +tp21450 +a(g21447 +g21449 +S'architecture' +p21451 +tp21452 +a(g21449 +g21451 +S'owe' +p21453 +tp21454 +a(g21451 +g21453 +S'much' +p21455 +tp21456 +a(g21453 +g21455 +S'to' +p21457 +tp21458 +a(g21455 +g21457 +S'here' +p21459 +tp21460 +a(g21457 +g21459 +S'turner' +p21461 +tp21462 +a(g21459 +g21461 +S'brings' +p21463 +tp21464 +a(g21461 +g21463 +S'the' +p21465 +tp21466 +a(g21463 +g21465 +S'great' +p21467 +tp21468 +a(g21465 +g21467 +S'force' +p21469 +tp21470 +a(g21467 +g21469 +S'of' +p21471 +tp21472 +a(g21469 +g21471 +S'his' +p21473 +tp21474 +a(g21471 +g21473 +S'romantic' +p21475 +tp21476 +a(g21473 +g21475 +S'genius' +p21477 +tp21478 +a(g21475 +g21477 +S'to' +p21479 +tp21480 +a(g21477 +g21479 +S'a' +p21481 +tp21482 +a(g21479 +g21481 +S'common' +p21483 +tp21484 +a(g21481 +g21483 +S'scene' +p21485 +tp21486 +a(g21483 +g21485 +S'of' +p21487 +tp21488 +a(g21485 +g21487 +S'working–class' +p21489 +tp21490 +a(g21487 +g21489 +S'men' +p21491 +tp21492 +a(g21489 +g21491 +S'at' +p21493 +tp21494 +a(g21491 +g21493 +S'hard' +p21495 +tp21496 +a(g21493 +g21495 +S'labor.' +p21497 +tp21498 +a(g21495 +g21497 +S'although' +p21499 +tp21500 +a(g21497 +g21499 +S'the' +p21501 +tp21502 +a(g21499 +g21501 +S'subject' +p21503 +tp21504 +a(g21501 +g21503 +S'of' +p21505 +tp21506 +a(g21503 +g21505 +S'the' +p21507 +tp21508 +a(g21505 +g21507 +S'painting' +p21509 +tp21510 +a(g21507 +g21509 +S'is' +p21511 +tp21512 +a(g21509 +g21511 +S'rooted' +p21513 +tp21514 +a(g21511 +g21513 +S'in' +p21515 +tp21516 +a(g21513 +g21515 +S'the' +p21517 +tp21518 +a(g21515 +g21517 +S'grim' +p21519 +tp21520 +a(g21517 +g21519 +S'realities' +p21521 +tp21522 +a(g21519 +g21521 +S'of' +p21523 +tp21524 +a(g21521 +g21523 +S'the' +p21525 +tp21526 +a(g21523 +g21525 +S'industrial' +p21527 +tp21528 +a(g21525 +g21527 +S'revolution,' +p21529 +tp21530 +a(g21527 +g21529 +S'in' +p21531 +tp21532 +a(g21529 +g21531 +S"turner's" +p21533 +tp21534 +a(g21531 +g21533 +S'hands' +p21535 +tp21536 +a(g21533 +g21535 +S'it' +p21537 +tp21538 +a(g21535 +g21537 +S'transcends' +p21539 +tp21540 +a(g21537 +g21539 +S'the' +p21541 +tp21542 +a(g21539 +g21541 +S'specifics' +p21543 +tp21544 +a(g21541 +g21543 +S'of' +p21545 +tp21546 +a(g21543 +g21545 +S'time' +p21547 +tp21548 +a(g21545 +g21547 +S'and' +p21549 +tp21550 +a(g21547 +g21549 +S'place' +p21551 +tp21552 +a(g21549 +g21551 +S'and' +p21553 +tp21554 +a(g21551 +g21553 +S'becomes' +p21555 +tp21556 +a(g21553 +g21555 +S'an' +p21557 +tp21558 +a(g21555 +g21557 +S'image' +p21559 +tp21560 +a(g21557 +g21559 +S'of' +p21561 +tp21562 +a(g21559 +g21561 +S'startling' +p21563 +tp21564 +a(g21561 +g21563 +S'visual' +p21565 +tp21566 +a(g21563 +g21565 +S'poetry.' +p21567 +tp21568 +a(g21565 +g21567 +S'an' +p21569 +tp21570 +a(g21567 +g21569 +S'almost' +p21571 +tp21572 +a(g21569 +g21571 +S'palpable' +p21573 +tp21574 +a(g21571 +g21573 +S'flood' +p21575 +tp21576 +a(g21573 +g21575 +S'of' +p21577 +tp21578 +a(g21575 +g21577 +S'moonlight' +p21579 +tp21580 +a(g21577 +g21579 +S'breaks' +p21581 +tp21582 +a(g21579 +g21581 +S'through' +p21583 +tp21584 +a(g21581 +g21583 +S'the' +p21585 +tp21586 +a(g21583 +g21585 +S'clouds' +p21587 +tp21588 +a(g21585 +g21587 +S'in' +p21589 +tp21590 +a(g21587 +g21589 +S'a' +p21591 +tp21592 +a(g21589 +g21591 +S'great' +p21593 +tp21594 +a(g21591 +g21593 +S'vault' +p21595 +tp21596 +a(g21593 +g21595 +S'that' +p21597 +tp21598 +a(g21595 +g21597 +S'spans' +p21599 +tp21600 +a(g21597 +g21599 +S'the' +p21601 +tp21602 +a(g21599 +g21601 +S'banks' +p21603 +tp21604 +a(g21601 +g21603 +S'of' +p21605 +tp21606 +a(g21603 +g21605 +S'the' +p21607 +tp21608 +a(g21605 +g21607 +S'channel' +p21609 +tp21610 +a(g21607 +g21609 +S'and' +p21611 +tp21612 +a(g21609 +g21611 +S'illuminates' +p21613 +tp21614 +a(g21611 +g21613 +S'the' +p21615 +tp21616 +a(g21613 +g21615 +S'sky' +p21617 +tp21618 +a(g21615 +g21617 +S'and' +p21619 +tp21620 +a(g21617 +g21619 +S'the' +p21621 +tp21622 +a(g21619 +g21621 +S'water.' +p21623 +tp21624 +a(g21621 +g21623 +S'the' +p21625 +tp21626 +a(g21623 +g21625 +S'heavy' +p21627 +tp21628 +a(g21625 +g21627 +S'impasto' +p21629 +tp21630 +a(g21627 +g21629 +S'of' +p21631 +tp21632 +a(g21629 +g21631 +S'the' +p21633 +tp21634 +a(g21631 +g21633 +S"moon's" +p21635 +tp21636 +a(g21633 +g21635 +S'reflection' +p21637 +tp21638 +a(g21635 +g21637 +S'on' +p21639 +tp21640 +a(g21637 +g21639 +S'the' +p21641 +tp21642 +a(g21639 +g21641 +S'unbroken' +p21643 +tp21644 +a(g21641 +g21643 +S'expanse' +p21645 +tp21646 +a(g21643 +g21645 +S'of' +p21647 +tp21648 +a(g21645 +g21647 +S'water' +p21649 +tp21650 +a(g21647 +g21649 +S'rivals' +p21651 +tp21652 +a(g21649 +g21651 +S'the' +p21653 +tp21654 +a(g21651 +g21653 +S'radiance' +p21655 +tp21656 +a(g21653 +g21655 +S'of' +p21657 +tp21658 +a(g21655 +g21657 +S'the' +p21659 +tp21660 +a(g21657 +g21659 +S'sky,' +p21661 +tp21662 +a(g21659 +g21661 +S'where' +p21663 +tp21664 +a(g21661 +g21663 +S'gradations' +p21665 +tp21666 +a(g21663 +g21665 +S'of' +p21667 +tp21668 +a(g21665 +g21667 +S'light' +p21669 +tp21670 +a(g21667 +g21669 +S'create' +p21671 +tp21672 +a(g21669 +g21671 +S'a' +p21673 +tp21674 +a(g21671 +g21673 +S'powerful,' +p21675 +tp21676 +a(g21673 +g21675 +S'swirling' +p21677 +tp21678 +a(g21675 +g21677 +S'vortex.' +p21679 +tp21680 +a(g21677 +g21679 +S'to' +p21681 +tp21682 +a(g21679 +g21681 +S'the' +p21683 +tp21684 +a(g21681 +g21683 +S'right,' +p21685 +tp21686 +a(g21683 +g21685 +S'the' +p21687 +tp21688 +a(g21685 +g21687 +S'keelmen' +p21689 +tp21690 +a(g21687 +g21689 +S'and' +p21691 +tp21692 +a(g21689 +g21691 +S'the' +p21693 +tp21694 +a(g21691 +g21693 +S'dark,' +p21695 +tp21696 +a(g21693 +g21695 +S'flat–bottomed' +p21697 +tp21698 +a(g21695 +g21697 +S'keels' +p21699 +tp21700 +a(g21697 +g21699 +S'that' +p21701 +tp21702 +a(g21699 +g21701 +S'carried' +p21703 +tp21704 +a(g21701 +g21703 +S'the' +p21705 +tp21706 +a(g21703 +g21705 +S'coal' +p21707 +tp21708 +a(g21705 +g21707 +S'from' +p21709 +tp21710 +a(g21707 +g21709 +S'northumberland' +p21711 +tp21712 +a(g21709 +g21711 +S'and' +p21713 +tp21714 +a(g21711 +g21713 +S'durham' +p21715 +tp21716 +a(g21713 +g21715 +S'down' +p21717 +tp21718 +a(g21715 +g21717 +S'the' +p21719 +tp21720 +a(g21717 +g21719 +S'river' +p21721 +tp21722 +a(g21719 +g21721 +S'tyne' +p21723 +tp21724 +a(g21721 +g21723 +S'are' +p21725 +tp21726 +a(g21723 +g21725 +S'silhouetted' +p21727 +tp21728 +a(g21725 +g21727 +S'against' +p21729 +tp21730 +a(g21727 +g21729 +S'the' +p21731 +tp21732 +a(g21729 +g21731 +S'orange' +p21733 +tp21734 +a(g21731 +g21733 +S'and' +p21735 +tp21736 +a(g21733 +g21735 +S'white' +p21737 +tp21738 +a(g21735 +g21737 +S'flames' +p21739 +tp21740 +a(g21737 +g21739 +S'from' +p21741 +tp21742 +a(g21739 +g21741 +S'the' +p21743 +tp21744 +a(g21741 +g21743 +S'torches,' +p21745 +tp21746 +a(g21743 +g21745 +S'as' +p21747 +tp21748 +a(g21745 +g21747 +S'the' +p21749 +tp21750 +a(g21747 +g21749 +S'coal' +p21751 +tp21752 +a(g21749 +g21751 +S'is' +p21753 +tp21754 +a(g21751 +g21753 +S'transferred' +p21755 +tp21756 +a(g21753 +g21755 +S'to' +p21757 +tp21758 +a(g21755 +g21757 +S'the' +p21759 +tp21760 +a(g21757 +g21759 +S'sailing' +p21761 +tp21762 +a(g21759 +g21761 +S'ships.' +p21763 +tp21764 +a(g21761 +g21763 +S'to' +p21765 +tp21766 +a(g21763 +g21765 +S'the' +p21767 +tp21768 +a(g21765 +g21767 +S'left,' +p21769 +tp21770 +a(g21767 +g21769 +S'square' +p21771 +tp21772 +a(g21769 +g21771 +S'riggers' +p21773 +tp21774 +a(g21771 +g21773 +S'wait' +p21775 +tp21776 +a(g21773 +g21775 +S'to' +p21777 +tp21778 +a(g21775 +g21777 +S'sail' +p21779 +tp21780 +a(g21777 +g21779 +S'out' +p21781 +tp21782 +a(g21779 +g21781 +S'on' +p21783 +tp21784 +a(g21781 +g21783 +S'the' +p21785 +tp21786 +a(g21783 +g21785 +S'morning' +p21787 +tp21788 +a(g21785 +g21787 +S'tide.' +p21789 +tp21790 +a(g21787 +g21789 +S'behind' +p21791 +tp21792 +a(g21789 +g21791 +S'these' +p21793 +tp21794 +a(g21791 +g21793 +S'ships' +p21795 +tp21796 +a(g21793 +g21795 +S'turner' +p21797 +tp21798 +a(g21795 +g21797 +S'suggested' +p21799 +tp21800 +a(g21797 +g21799 +S'the' +p21801 +tp21802 +a(g21799 +g21801 +S'distant' +p21803 +tp21804 +a(g21801 +g21803 +S'cluster' +p21805 +tp21806 +a(g21803 +g21805 +S'of' +p21807 +tp21808 +a(g21805 +g21807 +S'factories' +p21809 +tp21810 +a(g21807 +g21809 +S'and' +p21811 +tp21812 +a(g21809 +g21811 +S'ships' +p21813 +tp21814 +a(g21811 +g21813 +S'with' +p21815 +tp21816 +a(g21813 +g21815 +S'touches' +p21817 +tp21818 +a(g21815 +g21817 +S'of' +p21819 +tp21820 +a(g21817 +g21819 +S'gray' +p21821 +tp21822 +a(g21819 +g21821 +S'paint' +p21823 +tp21824 +a(g21821 +g21823 +S'and' +p21825 +tp21826 +a(g21823 +g21825 +S'a' +p21827 +tp21828 +a(g21825 +g21827 +S'few' +p21829 +tp21830 +a(g21827 +g21829 +S'thin' +p21831 +tp21832 +a(g21829 +g21831 +S'lines.' +p21833 +tp21834 +a(g21831 +g21833 +S'through' +p21835 +tp21836 +a(g21833 +g21835 +S'the' +p21837 +tp21838 +a(g21835 +g21837 +S'shadowy' +p21839 +tp21840 +a(g21837 +g21839 +S'atmosphere' +p21841 +tp21842 +a(g21839 +g21841 +S"ships'" +p21843 +tp21844 +a(g21841 +g21843 +S'riggings,' +p21845 +tp21846 +a(g21843 +g21845 +S'keels' +p21847 +tp21848 +a(g21845 +g21847 +S'and' +p21849 +tp21850 +a(g21847 +g21849 +S'keelmen,' +p21851 +tp21852 +a(g21849 +g21851 +S'fiery' +p21853 +tp21854 +a(g21851 +g21853 +S'torches,' +p21855 +tp21856 +a(g21853 +g21855 +S'and' +p21857 +tp21858 +a(g21855 +g21857 +S'reflections' +p21859 +tp21860 +a(g21857 +g21859 +S'on' +p21861 +tp21862 +a(g21859 +g21861 +S'the' +p21863 +tp21864 +a(g21861 +g21863 +S'water' +p21865 +tp21866 +a(g21863 +g21865 +S'merge' +p21867 +tp21868 +a(g21865 +g21867 +S'into' +p21869 +tp21870 +a(g21867 +g21869 +S'a' +p21871 +tp21872 +a(g21869 +g21871 +S'richly' +p21873 +tp21874 +a(g21871 +g21873 +S'textured' +p21875 +tp21876 +a(g21873 +g21875 +S'surface' +p21877 +tp21878 +a(g21875 +g21877 +S'pattern.' +p21879 +tp21880 +a(g21877 +g21879 +S'turner,' +p21881 +tp21882 +a(g21879 +g21881 +S'who' +p21883 +tp21884 +a(g21881 +g21883 +S'earned' +p21885 +tp21886 +a(g21883 +g21885 +S'an' +p21887 +tp21888 +a(g21885 +g21887 +S'early' +p21889 +tp21890 +a(g21887 +g21889 +S'reputation' +p21891 +tp21892 +a(g21889 +g21891 +S'for' +p21893 +tp21894 +a(g21891 +g21893 +S'producing' +p21895 +tp21896 +a(g21893 +g21895 +S'accurate' +p21897 +tp21898 +a(g21895 +g21897 +S'topographical' +p21899 +tp21900 +a(g21897 +g21899 +S'views,' +p21901 +tp21902 +a(g21899 +g21901 +S'opened' +p21903 +tp21904 +a(g21901 +g21903 +S'his' +p21905 +tp21906 +a(g21903 +g21905 +S'own' +p21907 +tp21908 +a(g21905 +g21907 +S'private' +p21909 +tp21910 +a(g21907 +g21909 +S'sales' +p21911 +tp21912 +a(g21909 +g21911 +S'gallery,' +p21913 +tp21914 +a(g21911 +g21913 +S'where' +p21915 +tp21916 +a(g21913 +g21915 +S'he' +p21917 +tp21918 +a(g21915 +g21917 +S'exhibited' +p21919 +tp21920 +a(g21917 +g21919 +S'this' +p21921 +tp21922 +a(g21919 +g21921 +S'turbulent' +p21923 +tp21924 +a(g21921 +g21923 +S'seascape.' +p21925 +tp21926 +a(g21923 +g21925 +S'based' +p21927 +tp21928 +a(g21925 +g21927 +S'on' +p21929 +tp21930 +a(g21927 +g21929 +S'notes' +p21931 +tp21932 +a(g21929 +g21931 +S'in' +p21933 +tp21934 +a(g21931 +g21933 +S'the' +p21935 +tp21936 +a(g21933 +g21935 +S'artist’s' +p21937 +tp21938 +a(g21935 +g21937 +S'sketchbooks,' +p21939 +tp21940 +a(g21937 +g21939 +S'the' +p21941 +tp21942 +a(g21939 +g21941 +S'scene' +p21943 +tp21944 +a(g21941 +g21943 +S'is' +p21945 +tp21946 +a(g21943 +g21945 +S'the' +p21947 +tp21948 +a(g21945 +g21947 +S'wide' +p21949 +tp21950 +a(g21947 +g21949 +S'mouth' +p21951 +tp21952 +a(g21949 +g21951 +S'of' +p21953 +tp21954 +a(g21951 +g21953 +S'the' +p21955 +tp21956 +a(g21953 +g21955 +S'thames' +p21957 +tp21958 +a(g21955 +g21957 +S'joining' +p21959 +tp21960 +a(g21957 +g21959 +S'the' +p21961 +tp21962 +a(g21959 +g21961 +S'north' +p21963 +tp21964 +a(g21961 +g21963 +S'sea,' +p21965 +tp21966 +a(g21963 +g21965 +S'where' +p21967 +tp21968 +a(g21965 +g21967 +S'the' +p21969 +tp21970 +a(g21967 +g21969 +S'smaller' +p21971 +tp21972 +a(g21969 +g21971 +S'river' +p21973 +tp21974 +a(g21971 +g21973 +S'medway' +p21975 +tp21976 +a(g21973 +g21975 +S'further' +p21977 +tp21978 +a(g21975 +g21977 +S'churns' +p21979 +tp21980 +a(g21977 +g21979 +S'the' +p21981 +tp21982 +a(g21979 +g21981 +S'waves.' +p21983 +tp21984 +a(g21981 +g21983 +S'to' +p21985 +tp21986 +a(g21983 +g21985 +S'the' +p21987 +tp21988 +a(g21985 +g21987 +S'south,' +p21989 +tp21990 +a(g21987 +g21989 +S'the' +p21991 +tp21992 +a(g21989 +g21991 +S'town' +p21993 +tp21994 +a(g21991 +g21993 +S'on' +p21995 +tp21996 +a(g21993 +g21995 +S'the' +p21997 +tp21998 +a(g21995 +g21997 +S'far' +p21999 +tp22000 +a(g21997 +g21999 +S'shore' +p22001 +tp22002 +a(g21999 +g22001 +S'is' +p22003 +tp22004 +a(g22001 +g22003 +S'the' +p22005 +tp22006 +a(g22003 +g22005 +S'seaport' +p22007 +tp22008 +a(g22005 +g22007 +S'of' +p22009 +tp22010 +a(g22007 +g22009 +S'sheerness.' +p22011 +tp22012 +a(g22009 +g22011 +S'to' +p22013 +tp22014 +a(g22011 +g22013 +S'heighten' +p22015 +tp22016 +a(g22013 +g22015 +S'the' +p22017 +tp22018 +a(g22015 +g22017 +S'storm’s' +p22019 +tp22020 +a(g22017 +g22019 +S'impact,' +p22021 +tp22022 +a(g22019 +g22021 +S'turner' +p22023 +tp22024 +a(g22021 +g22023 +S'artfully' +p22025 +tp22026 +a(g22023 +g22025 +S'manipulated' +p22027 +tp22028 +a(g22025 +g22027 +S'the' +p22029 +tp22030 +a(g22027 +g22029 +S'lighting' +p22031 +tp22032 +a(g22029 +g22031 +S'in' +p22033 +tp22034 +a(g22031 +g22033 +S'this' +p22035 +tp22036 +a(g22033 +g22035 +S'composition.' +p22037 +tp22038 +a(g22035 +g22037 +S'the' +p22039 +tp22040 +a(g22037 +g22039 +S'sails' +p22041 +tp22042 +a(g22039 +g22041 +S'at' +p22043 +tp22044 +a(g22041 +g22043 +S'the' +p22045 +tp22046 +a(g22043 +g22045 +S'right,' +p22047 +tp22048 +a(g22045 +g22047 +S'for' +p22049 +tp22050 +a(g22047 +g22049 +S'instance,' +p22051 +tp22052 +a(g22049 +g22051 +S'are' +p22053 +tp22054 +a(g22051 +g22053 +S'brilliantly' +p22055 +tp22056 +a(g22053 +g22055 +S'silhouetted' +p22057 +tp22058 +a(g22055 +g22057 +S'against' +p22059 +tp22060 +a(g22057 +g22059 +S'the' +p22061 +tp22062 +a(g22059 +g22061 +S'dark' +p22063 +tp22064 +a(g22061 +g22063 +S'clouds.' +p22065 +tp22066 +a(g22063 +g22065 +S'in' +p22067 +tp22068 +a(g22065 +g22067 +S'actuality,' +p22069 +tp22070 +a(g22067 +g22069 +S'however,' +p22071 +tp22072 +a(g22069 +g22071 +S'the' +p22073 +tp22074 +a(g22071 +g22073 +S'sun' +p22075 +tp22076 +a(g22073 +g22075 +S'is' +p22077 +tp22078 +a(g22075 +g22077 +S'obscured' +p22079 +tp22080 +a(g22077 +g22079 +S'high' +p22081 +tp22082 +a(g22079 +g22081 +S'in' +p22083 +tp22084 +a(g22081 +g22083 +S'the' +p22085 +tp22086 +a(g22083 +g22085 +S'sky' +p22087 +tp22088 +a(g22085 +g22087 +S'behind' +p22089 +tp22090 +a(g22087 +g22089 +S'the' +p22091 +tp22092 +a(g22089 +g22091 +S'thunderheads,' +p22093 +tp22094 +a(g22091 +g22093 +S'making' +p22095 +tp22096 +a(g22093 +g22095 +S'it' +p22097 +tp22098 +a(g22095 +g22097 +S'impossible' +p22099 +tp22100 +a(g22097 +g22099 +S'for' +p22101 +tp22102 +a(g22099 +g22101 +S'sunbeams' +p22103 +tp22104 +a(g22101 +g22103 +S'to' +p22105 +tp22106 +a(g22103 +g22105 +S'strike' +p22107 +tp22108 +a(g22105 +g22107 +S'those' +p22109 +tp22110 +a(g22107 +g22109 +S'ships' +p22111 +tp22112 +a(g22109 +g22111 +S'from' +p22113 +tp22114 +a(g22111 +g22113 +S'the' +p22115 +tp22116 +a(g22113 +g22115 +S'side.' +p22117 +tp22118 +a(g22115 +g22117 +S'the' +p22119 +tp22120 +a(g22117 +g22119 +S'virgin' +p22121 +tp22122 +a(g22119 +g22121 +S'as' +p22123 +tp22124 +a(g22121 +g22123 +S'intercessor' +p22125 +tp22126 +a(g22123 +g22125 +S'the' +p22127 +tp22128 +a(g22125 +g22127 +S'prefect' +p22129 +tp22130 +a(g22127 +g22129 +S'raffaele' +p22131 +tp22132 +a(g22129 +g22131 +S'raggi' +p22133 +tp22134 +a(g22131 +g22133 +S'a' +p22135 +tp22136 +a(g22133 +g22135 +S'genoese' +p22137 +tp22138 +a(g22135 +g22137 +S'noblewoman' +p22139 +tp22140 +a(g22137 +g22139 +S'and' +p22141 +tp22142 +a(g22139 +g22141 +S'her' +p22143 +tp22144 +a(g22141 +g22143 +S'son' +p22145 +tp22146 +a(g22143 +g22145 +S'anthony' +p22147 +tp22148 +a(g22145 +g22147 +S'van' +p22149 +tp22150 +a(g22147 +g22149 +S"dyck's" +p22151 +tp22152 +a(g22149 +g22151 +S'portraits' +p22153 +tp22154 +a(g22151 +g22153 +S'of' +p22155 +tp22156 +a(g22153 +g22155 +S'the' +p22157 +tp22158 +a(g22155 +g22157 +S'genoese' +p22159 +tp22160 +a(g22157 +g22159 +S'nobility' +p22161 +tp22162 +a(g22159 +g22161 +S'are' +p22163 +tp22164 +a(g22161 +g22163 +S'generally' +p22165 +tp22166 +a(g22163 +g22165 +S'recognized' +p22167 +tp22168 +a(g22165 +g22167 +S'as' +p22169 +tp22170 +a(g22167 +g22169 +S'one' +p22171 +tp22172 +a(g22169 +g22171 +S'of' +p22173 +tp22174 +a(g22171 +g22173 +S'the' +p22175 +tp22176 +a(g22173 +g22175 +S'supreme' +p22177 +tp22178 +a(g22175 +g22177 +S'achievements' +p22179 +tp22180 +a(g22177 +g22179 +S'of' +p22181 +tp22182 +a(g22179 +g22181 +S'western' +p22183 +tp22184 +a(g22181 +g22183 +S'portraiture' +p22185 +tp22186 +a(g22183 +g22185 +S'and' +p22187 +tp22188 +a(g22185 +g22187 +S'as' +p22189 +tp22190 +a(g22187 +g22189 +S'the' +p22191 +tp22192 +a(g22189 +g22191 +S'high' +p22193 +tp22194 +a(g22191 +g22193 +S'point' +p22195 +tp22196 +a(g22193 +g22195 +S'of' +p22197 +tp22198 +a(g22195 +g22197 +S'the' +p22199 +tp22200 +a(g22197 +g22199 +S"artist's" +p22201 +tp22202 +a(g22199 +g22201 +S'career.' +p22203 +tp22204 +a(g22201 +g22203 +S'of' +p22205 +tp22206 +a(g22203 +g22205 +S'these' +p22207 +tp22208 +a(g22205 +g22207 +S'paintings,' +p22209 +tp22210 +a(g22207 +g22209 +S'his' +p22211 +tp22212 +a(g22209 +g22211 +S'portrayal' +p22213 +tp22214 +a(g22211 +g22213 +S'of' +p22215 +tp22216 +a(g22213 +g22215 +S'elena' +p22217 +tp22218 +a(g22215 +g22217 +S'grimaldi' +p22219 +tp22220 +a(g22217 +g22219 +S'is' +p22221 +tp22222 +a(g22219 +g22221 +S'the' +p22223 +tp22224 +a(g22221 +g22223 +S'most' +p22225 +tp22226 +a(g22223 +g22225 +S'brilliant.' +p22227 +tp22228 +a(g22225 +g22227 +S'a' +p22229 +tp22230 +a(g22227 +g22229 +S'marchesa' +p22231 +tp22232 +a(g22229 +g22231 +S'both' +p22233 +tp22234 +a(g22231 +g22233 +S'by' +p22235 +tp22236 +a(g22233 +g22235 +S'birth' +p22237 +tp22238 +a(g22235 +g22237 +S'and' +p22239 +tp22240 +a(g22237 +g22239 +S'by' +p22241 +tp22242 +a(g22239 +g22241 +S'marriage,' +p22243 +tp22244 +a(g22241 +g22243 +S'the' +p22245 +tp22246 +a(g22243 +g22245 +S'elegant' +p22247 +tp22248 +a(g22245 +g22247 +S'italian' +p22249 +tp22250 +a(g22247 +g22249 +S'noblewoman' +p22251 +tp22252 +a(g22249 +g22251 +S'is' +p22253 +tp22254 +a(g22251 +g22253 +S'depicted' +p22255 +tp22256 +a(g22253 +g22255 +S'in' +p22257 +tp22258 +a(g22255 +g22257 +S'a' +p22259 +tp22260 +a(g22257 +g22259 +S'stately' +p22261 +tp22262 +a(g22259 +g22261 +S'setting' +p22263 +tp22264 +a(g22261 +g22263 +S'expressive' +p22265 +tp22266 +a(g22263 +g22265 +S'of' +p22267 +tp22268 +a(g22265 +g22267 +S'her' +p22269 +tp22270 +a(g22267 +g22269 +S'social' +p22271 +tp22272 +a(g22269 +g22271 +S'status;' +p22273 +tp22274 +a(g22271 +g22273 +S'she' +p22275 +tp22276 +a(g22273 +g22275 +S'steps' +p22277 +tp22278 +a(g22275 +g22277 +S'out' +p22279 +tp22280 +a(g22277 +g22279 +S'of' +p22281 +tp22282 +a(g22279 +g22281 +S'a' +p22283 +tp22284 +a(g22281 +g22283 +S'corinthian–columned' +p22285 +tp22286 +a(g22283 +g22285 +S'portico' +p22287 +tp22288 +a(g22285 +g22287 +S'onto' +p22289 +tp22290 +a(g22287 +g22289 +S'a' +p22291 +tp22292 +a(g22289 +g22291 +S'balustraded' +p22293 +tp22294 +a(g22291 +g22293 +S'terrace.' +p22295 +tp22296 +a(g22293 +g22295 +S'behind' +p22297 +tp22298 +a(g22295 +g22297 +S'her' +p22299 +tp22300 +a(g22297 +g22299 +S'extends' +p22301 +tp22302 +a(g22299 +g22301 +S'a' +p22303 +tp22304 +a(g22301 +g22303 +S'luxuriant' +p22305 +tp22306 +a(g22303 +g22305 +S'estate' +p22307 +tp22308 +a(g22305 +g22307 +S'beneath' +p22309 +tp22310 +a(g22307 +g22309 +S'a' +p22311 +tp22312 +a(g22309 +g22311 +S'dramatically' +p22313 +tp22314 +a(g22311 +g22313 +S'cloud–filled' +p22315 +tp22316 +a(g22313 +g22315 +S'sky.' +p22317 +tp22318 +a(g22315 +g22317 +S'the' +p22319 +tp22320 +a(g22317 +g22319 +S'painting' +p22321 +tp22322 +a(g22319 +g22321 +S'hangs' +p22323 +tp22324 +a(g22321 +g22323 +S'in' +p22325 +tp22326 +a(g22323 +g22325 +S'an' +p22327 +tp22328 +a(g22325 +g22327 +S'arrangement' +p22329 +tp22330 +a(g22327 +g22329 +S'at' +p22331 +tp22332 +a(g22329 +g22331 +S'the' +p22333 +tp22334 +a(g22331 +g22333 +S'national' +p22335 +tp22336 +a(g22333 +g22335 +S'gallery' +p22337 +tp22338 +a(g22335 +g22337 +S'similar' +p22339 +tp22340 +a(g22337 +g22339 +S'to' +p22341 +tp22342 +a(g22339 +g22341 +S'its' +p22343 +tp22344 +a(g22341 +g22343 +S'presumed' +p22345 +tp22346 +a(g22343 +g22345 +S'original' +p22347 +tp22348 +a(g22345 +g22347 +S'placement' +p22349 +tp22350 +a(g22347 +g22349 +S'in' +p22351 +tp22352 +a(g22349 +g22351 +S'the' +p22353 +tp22354 +a(g22351 +g22353 +S'cattaneo' +p22355 +tp22356 +a(g22353 +g22355 +S'palace:' +p22357 +tp22358 +a(g22355 +g22357 +S'flanked' +p22359 +tp22360 +a(g22357 +g22359 +S'by' +p22361 +tp22362 +a(g22359 +g22361 +S'van' +p22363 +tp22364 +a(g22361 +g22363 +S"dyck's" +p22365 +tp22366 +a(g22363 +g22365 +S'sensitive' +p22367 +tp22368 +a(g22365 +g22367 +S'portraits' +p22369 +tp22370 +a(g22367 +g22369 +S'of' +p22371 +tp22372 +a(g22369 +g22371 +S'the' +p22373 +tp22374 +a(g22371 +g22373 +S"marchesa's" +p22375 +tp22376 +a(g22373 +g22375 +S'two' +p22377 +tp22378 +a(g22375 +g22377 +S'children,' +p22379 +tp22380 +a(g22377 +g22379 +S'in' +p22381 +tp22382 +a(g22379 +g22381 +S'an' +p22383 +tp22384 +a(g22381 +g22383 +S'oil' +p22385 +tp22386 +a(g22383 +g22385 +S'sketch' +p22387 +tp22388 +a(g22385 +g22387 +S'for' +p22389 +tp22390 +a(g22387 +g22389 +S'this' +p22391 +tp22392 +a(g22389 +g22391 +S'portrait' +p22393 +tp22394 +a(g22391 +g22393 +S'(smithsonian' +p22395 +tp22396 +a(g22393 +g22395 +S'institution),' +p22397 +tp22398 +a(g22395 +g22397 +S'the' +p22399 +tp22400 +a(g22397 +g22399 +S'marchesa' +p22401 +tp22402 +a(g22399 +g22401 +S'wears' +p22403 +tp22404 +a(g22401 +g22403 +S'a' +p22405 +tp22406 +a(g22403 +g22405 +S'red' +p22407 +tp22408 +a(g22405 +g22407 +S'flower' +p22409 +tp22410 +a(g22407 +g22409 +S'at' +p22411 +tp22412 +a(g22409 +g22411 +S'her' +p22413 +tp22414 +a(g22411 +g22413 +S'right' +p22415 +tp22416 +a(g22413 +g22415 +S'cheek.' +p22417 +tp22418 +a(g22415 +g22417 +S'a' +p22419 +tp22420 +a(g22417 +g22419 +S'careful' +p22421 +tp22422 +a(g22419 +g22421 +S'study' +p22423 +tp22424 +a(g22421 +g22423 +S'of' +p22425 +tp22426 +a(g22423 +g22425 +S'the' +p22427 +tp22428 +a(g22425 +g22427 +S'large,' +p22429 +tp22430 +a(g22427 +g22429 +S'completed' +p22431 +tp22432 +a(g22429 +g22431 +S'painting' +p22433 +tp22434 +a(g22431 +g22433 +S'in' +p22435 +tp22436 +a(g22433 +g22435 +S'the' +p22437 +tp22438 +a(g22435 +g22437 +S'national' +p22439 +tp22440 +a(g22437 +g22439 +S'gallery' +p22441 +tp22442 +a(g22439 +g22441 +S'reveals' +p22443 +tp22444 +a(g22441 +g22443 +S'that' +p22445 +tp22446 +a(g22443 +g22445 +S'the' +p22447 +tp22448 +a(g22445 +g22447 +S'artist' +p22449 +tp22450 +a(g22447 +g22449 +S'revised' +p22451 +tp22452 +a(g22449 +g22451 +S'the' +p22453 +tp22454 +a(g22451 +g22453 +S'final' +p22455 +tp22456 +a(g22453 +g22455 +S'composition,' +p22457 +tp22458 +a(g22455 +g22457 +S'ultimately' +p22459 +tp22460 +a(g22457 +g22459 +S'replacing' +p22461 +tp22462 +a(g22459 +g22461 +S'the' +p22463 +tp22464 +a(g22461 +g22463 +S'flower' +p22465 +tp22466 +a(g22463 +g22465 +S'with' +p22467 +tp22468 +a(g22465 +g22467 +S'the' +p22469 +tp22470 +a(g22467 +g22469 +S'parasol' +p22471 +tp22472 +a(g22469 +g22471 +S'held' +p22473 +tp22474 +a(g22471 +g22473 +S'by' +p22475 +tp22476 +a(g22473 +g22475 +S'a' +p22477 +tp22478 +a(g22475 +g22477 +S'black' +p22479 +tp22480 +a(g22477 +g22479 +S'servant.' +p22481 +tp22482 +a(g22479 +g22481 +S'this' +p22483 +tp22484 +a(g22481 +g22483 +S'brilliant' +p22485 +tp22486 +a(g22483 +g22485 +S'scarlet' +p22487 +tp22488 +a(g22485 +g22487 +S'ellipse' +p22489 +tp22490 +a(g22487 +g22489 +S'sets' +p22491 +tp22492 +a(g22489 +g22491 +S'off' +p22493 +tp22494 +a(g22491 +g22493 +S'her' +p22495 +tp22496 +a(g22493 +g22495 +S'fair' +p22497 +tp22498 +a(g22495 +g22497 +S'complexion,' +p22499 +tp22500 +a(g22497 +g22499 +S'and' +p22501 +tp22502 +a(g22499 +g22501 +S'the' +p22503 +tp22504 +a(g22501 +g22503 +S"parasol's" +p22505 +tp22506 +a(g22503 +g22505 +S'radiating' +p22507 +tp22508 +a(g22505 +g22507 +S'spokes' +p22509 +tp22510 +a(g22507 +g22509 +S'converge' +p22511 +tp22512 +a(g22509 +g22511 +S'on' +p22513 +tp22514 +a(g22511 +g22513 +S'her' +p22515 +tp22516 +a(g22513 +g22515 +S'head.' +p22517 +tp22518 +a(g22515 +g22517 +S'filippo' +p22519 +tp22520 +a(g22517 +g22519 +S'cattaneo' +p22521 +tp22522 +a(g22519 +g22521 +S'maddalena' +p22523 +tp22524 +a(g22521 +g22523 +S'cattaneo' +p22525 +tp22526 +a(g22523 +g22525 +S'a' +p22527 +tp22528 +a(g22525 +g22527 +S'woman' +p22529 +tp22530 +a(g22527 +g22529 +S'dressed' +p22531 +tp22532 +a(g22529 +g22531 +S'in' +p22533 +tp22534 +a(g22531 +g22533 +S'a' +p22535 +tp22536 +a(g22533 +g22535 +S'blue' +p22537 +tp22538 +a(g22535 +g22537 +S'jacket' +p22539 +tp22540 +a(g22537 +g22539 +S'with' +p22541 +tp22542 +a(g22539 +g22541 +S'fur' +p22543 +tp22544 +a(g22541 +g22543 +S'trim' +p22545 +tp22546 +a(g22543 +g22545 +S'stands' +p22547 +tp22548 +a(g22545 +g22547 +S'alone' +p22549 +tp22550 +a(g22547 +g22549 +S'before' +p22551 +tp22552 +a(g22549 +g22551 +S'a' +p22553 +tp22554 +a(g22551 +g22553 +S'table' +p22555 +tp22556 +a(g22553 +g22555 +S'in' +p22557 +tp22558 +a(g22555 +g22557 +S'a' +p22559 +tp22560 +a(g22557 +g22559 +S'corner' +p22561 +tp22562 +a(g22559 +g22561 +S'of' +p22563 +tp22564 +a(g22561 +g22563 +S'a' +p22565 +tp22566 +a(g22563 +g22565 +S'room.' +p22567 +tp22568 +a(g22565 +g22567 +S'she' +p22569 +tp22570 +a(g22567 +g22569 +S'holds' +p22571 +tp22572 +a(g22569 +g22571 +S'a' +p22573 +tp22574 +a(g22571 +g22573 +S'balance' +p22575 +tp22576 +a(g22573 +g22575 +S'in' +p22577 +tp22578 +a(g22575 +g22577 +S'her' +p22579 +tp22580 +a(g22577 +g22579 +S'right' +p22581 +tp22582 +a(g22579 +g22581 +S'hand' +p22583 +tp22584 +a(g22581 +g22583 +S'and' +p22585 +tp22586 +a(g22583 +g22585 +S'with' +p22587 +tp22588 +a(g22585 +g22587 +S'lowered' +p22589 +tp22590 +a(g22587 +g22589 +S'eyes' +p22591 +tp22592 +a(g22589 +g22591 +S'waits' +p22593 +tp22594 +a(g22591 +g22593 +S'for' +p22595 +tp22596 +a(g22593 +g22595 +S'it' +p22597 +tp22598 +a(g22595 +g22597 +S'to' +p22599 +tp22600 +a(g22597 +g22599 +S'come' +p22601 +tp22602 +a(g22599 +g22601 +S'to' +p22603 +tp22604 +a(g22601 +g22603 +S'rest.' +p22605 +tp22606 +a(g22603 +g22605 +S'behind' +p22607 +tp22608 +a(g22605 +g22607 +S'her,' +p22609 +tp22610 +a(g22607 +g22609 +S'on' +p22611 +tp22612 +a(g22609 +g22611 +S'the' +p22613 +tp22614 +a(g22611 +g22613 +S'back' +p22615 +tp22616 +a(g22613 +g22615 +S'wall' +p22617 +tp22618 +a(g22615 +g22617 +S'of' +p22619 +tp22620 +a(g22617 +g22619 +S'the' +p22621 +tp22622 +a(g22619 +g22621 +S'room,' +p22623 +tp22624 +a(g22621 +g22623 +S'is' +p22625 +tp22626 +a(g22623 +g22625 +S'a' +p22627 +tp22628 +a(g22625 +g22627 +S'large' +p22629 +tp22630 +a(g22627 +g22629 +S'painting' +p22631 +tp22632 +a(g22629 +g22631 +S'of' +p22633 +tp22634 +a(g22631 +g22633 +S'woman' +p22635 +tp22636 +a(g22633 +g22635 +S'holding' +p22637 +tp22638 +a(g22635 +g22637 +S'a' +p22639 +tp22640 +a(g22637 +g22639 +S'balance' +p22641 +tp22642 +a(g22639 +g22641 +S'after' +p22643 +tp22644 +a(g22641 +g22643 +S'reworking' +p22645 +tp22646 +a(g22643 +g22645 +S'the' +p22647 +tp22648 +a(g22645 +g22647 +S'national' +p22649 +tp22650 +a(g22647 +g22649 +S"gallery's" +p22651 +tp22652 +a(g22649 +g22651 +S'the' +p22653 +tp22654 +a(g22651 +g22653 +S'subtle' +p22655 +tp22656 +a(g22653 +g22655 +S'tonal' +p22657 +tp22658 +a(g22655 +g22657 +S'scheme' +p22659 +tp22660 +a(g22657 +g22659 +S'is' +p22661 +tp22662 +a(g22659 +g22661 +S'composed' +p22663 +tp22664 +a(g22661 +g22663 +S'entirely' +p22665 +tp22666 +a(g22663 +g22665 +S'of' +p22667 +tp22668 +a(g22665 +g22667 +S'muted' +p22669 +tp22670 +a(g22667 +g22669 +S'variations' +p22671 +tp22672 +a(g22669 +g22671 +S'on' +p22673 +tp22674 +a(g22671 +g22673 +S'the' +p22675 +tp22676 +a(g22673 +g22675 +S'complementary' +p22677 +tp22678 +a(g22675 +g22677 +S'colors' +p22679 +tp22680 +a(g22677 +g22679 +S'of' +p22681 +tp22682 +a(g22679 +g22681 +S'blue' +p22683 +tp22684 +a(g22681 +g22683 +S'and' +p22685 +tp22686 +a(g22683 +g22685 +S'orange.' +p22687 +tp22688 +a(g22685 +g22687 +S'whistler' +p22689 +tp22690 +a(g22687 +g22689 +S'stated,' +p22691 +tp22692 +a(g22689 +g22691 +S'"as' +p22693 +tp22694 +a(g22691 +g22693 +S'music' +p22695 +tp22696 +a(g22693 +g22695 +S'is' +p22697 +tp22698 +a(g22695 +g22697 +S'the' +p22699 +tp22700 +a(g22697 +g22699 +S'poetry' +p22701 +tp22702 +a(g22699 +g22701 +S'of' +p22703 +tp22704 +a(g22701 +g22703 +S'sound,' +p22705 +tp22706 +a(g22703 +g22705 +S'so' +p22707 +tp22708 +a(g22705 +g22707 +S'is' +p22709 +tp22710 +a(g22707 +g22709 +S'painting' +p22711 +tp22712 +a(g22709 +g22711 +S'the' +p22713 +tp22714 +a(g22711 +g22713 +S'poetry' +p22715 +tp22716 +a(g22713 +g22715 +S'of' +p22717 +tp22718 +a(g22715 +g22717 +S'sight."' +p22719 +tp22720 +a(g22717 +g22719 +S'in' +p22721 +tp22722 +a(g22719 +g22721 +S'other' +p22723 +tp22724 +a(g22721 +g22723 +S'words,' +p22725 +tp22726 +a(g22723 +g22725 +S'various' +p22727 +tp22728 +a(g22725 +g22727 +S'musical' +p22729 +tp22730 +a(g22727 +g22729 +S'notes' +p22731 +tp22732 +a(g22729 +g22731 +S'relate' +p22733 +tp22734 +a(g22731 +g22733 +S'to' +p22735 +tp22736 +a(g22733 +g22735 +S'a' +p22737 +tp22738 +a(g22735 +g22737 +S'dominant' +p22739 +tp22740 +a(g22737 +g22739 +S'key,' +p22741 +tp22742 +a(g22739 +g22741 +S'just' +p22743 +tp22744 +a(g22741 +g22743 +S'as' +p22745 +tp22746 +a(g22743 +g22745 +S'various' +p22747 +tp22748 +a(g22745 +g22747 +S'colors' +p22749 +tp22750 +a(g22747 +g22749 +S'relate' +p22751 +tp22752 +a(g22749 +g22751 +S'to' +p22753 +tp22754 +a(g22751 +g22753 +S'a' +p22755 +tp22756 +a(g22753 +g22755 +S'unifying' +p22757 +tp22758 +a(g22755 +g22757 +S'hue' +p22759 +tp22760 +a(g22757 +g22759 +S'in' +p22761 +tp22762 +a(g22759 +g22761 +S'painting.' +p22763 +tp22764 +a(g22761 +g22763 +S'in' +p22765 +tp22766 +a(g22763 +g22765 +S'writing' +p22767 +tp22768 +a(g22765 +g22767 +S'a' +p22769 +tp22770 +a(g22767 +g22769 +S'review' +p22771 +tp22772 +a(g22769 +g22771 +S'about' +p22773 +tp22774 +a(g22771 +g22773 +S'another' +p22775 +tp22776 +a(g22773 +g22775 +S'nocturnal' +p22777 +tp22778 +a(g22775 +g22777 +S'landscape,' +p22779 +tp22780 +a(g22777 +g22779 +S'the' +p22781 +tp22782 +a(g22779 +g22781 +S'british' +p22783 +tp22784 +a(g22781 +g22783 +S'art' +p22785 +tp22786 +a(g22783 +g22785 +S'critic' +p22787 +tp22788 +a(g22785 +g22787 +S'john' +p22789 +tp22790 +a(g22787 +g22789 +S'ruskin' +p22791 +tp22792 +a(g22789 +g22791 +S'accused' +p22793 +tp22794 +a(g22791 +g22793 +S'whistler' +p22795 +tp22796 +a(g22793 +g22795 +S'of' +p22797 +tp22798 +a(g22795 +g22797 +S'"flinging' +p22799 +tp22800 +a(g22797 +g22799 +S'a' +p22801 +tp22802 +a(g22799 +g22801 +S'pot' +p22803 +tp22804 +a(g22801 +g22803 +S'of' +p22805 +tp22806 +a(g22803 +g22805 +S'paint' +p22807 +tp22808 +a(g22805 +g22807 +S'in' +p22809 +tp22810 +a(g22807 +g22809 +S'the' +p22811 +tp22812 +a(g22809 +g22811 +S"public's" +p22813 +tp22814 +a(g22811 +g22813 +S'face."' +p22815 +tp22816 +a(g22813 +g22815 +S'whistler' +p22817 +tp22818 +a(g22815 +g22817 +S'sued' +p22819 +tp22820 +a(g22817 +g22819 +S'ruskin' +p22821 +tp22822 +a(g22819 +g22821 +S'for' +p22823 +tp22824 +a(g22821 +g22823 +S'libel' +p22825 +tp22826 +a(g22823 +g22825 +S'in' +p22827 +tp22828 +a(g22825 +g22827 +S'1878.' +p22829 +tp22830 +a(g22827 +g22829 +S'when' +p22831 +tp22832 +a(g22829 +g22831 +S'a' +p22833 +tp22834 +a(g22831 +g22833 +S'lawyer' +p22835 +tp22836 +a(g22833 +g22835 +S'asked' +p22837 +tp22838 +a(g22835 +g22837 +S'whether' +p22839 +tp22840 +a(g22837 +g22839 +S'two' +p22841 +tp22842 +a(g22839 +g22841 +S"days'" +p22843 +tp22844 +a(g22841 +g22843 +S'work' +p22845 +tp22846 +a(g22843 +g22845 +S'justified' +p22847 +tp22848 +a(g22845 +g22847 +S'that' +p22849 +tp22850 +a(g22847 +g22849 +S"picture's" +p22851 +tp22852 +a(g22849 +g22851 +S'high' +p22853 +tp22854 +a(g22851 +g22853 +S'price,' +p22855 +tp22856 +a(g22853 +g22855 +S'whistler' +p22857 +tp22858 +a(g22855 +g22857 +S'curtly' +p22859 +tp22860 +a(g22857 +g22859 +S'replied,' +p22861 +tp22862 +a(g22859 +g22861 +S'"no.' +p22863 +tp22864 +a(g22861 +g22863 +S'i' +p22865 +tp22866 +a(g22863 +g22865 +S'ask' +p22867 +tp22868 +a(g22865 +g22867 +S'it' +p22869 +tp22870 +a(g22867 +g22869 +S'for' +p22871 +tp22872 +a(g22869 +g22871 +S'the' +p22873 +tp22874 +a(g22871 +g22873 +S'knowledge' +p22875 +tp22876 +a(g22873 +g22875 +S'of' +p22877 +tp22878 +a(g22875 +g22877 +S'a' +p22879 +tp22880 +a(g22877 +g22879 +S'lifetime."' +p22881 +tp22882 +a(g22879 +g22881 +S'this' +p22883 +tp22884 +a(g22881 +g22883 +S'famous' +p22885 +tp22886 +a(g22883 +g22885 +S'retort' +p22887 +tp22888 +a(g22885 +g22887 +S'established' +p22889 +tp22890 +a(g22887 +g22889 +S'a' +p22891 +tp22892 +a(g22889 +g22891 +S'legal' +p22893 +tp22894 +a(g22891 +g22893 +S'precedent' +p22895 +tp22896 +a(g22893 +g22895 +S'for' +p22897 +tp22898 +a(g22895 +g22897 +S"artists'" +p22899 +tp22900 +a(g22897 +g22899 +S'acquired' +p22901 +tp22902 +a(g22899 +g22901 +S'experiences.' +p22903 +tp22904 +a(g22901 +g22903 +S'whistler' +p22905 +tp22906 +a(g22903 +g22905 +S'won' +p22907 +tp22908 +a(g22905 +g22907 +S'the' +p22909 +tp22910 +a(g22907 +g22909 +S'case,' +p22911 +tp22912 +a(g22909 +g22911 +S'but' +p22913 +tp22914 +a(g22911 +g22913 +S'the' +p22915 +tp22916 +a(g22913 +g22915 +S'proceedings' +p22917 +tp22918 +a(g22915 +g22917 +S'left' +p22919 +tp22920 +a(g22917 +g22919 +S'him' +p22921 +tp22922 +a(g22919 +g22921 +S'bankrupt.' +p22923 +tp22924 +a(g22921 +g22923 +S'after' +p22925 +tp22926 +a(g22923 +g22925 +S'the' +p22927 +tp22928 +a(g22925 +g22927 +S'death' +p22929 +tp22930 +a(g22927 +g22929 +S'of' +p22931 +tp22932 +a(g22929 +g22931 +S'his' +p22933 +tp22934 +a(g22931 +g22933 +S'father,' +p22935 +tp22936 +a(g22933 +g22935 +S'peter,' +p22937 +tp22938 +a(g22935 +g22937 +S'in' +p22939 +tp22940 +a(g22937 +g22939 +S'1915,' +p22941 +tp22942 +a(g22939 +g22941 +S'the' +p22943 +tp22944 +a(g22941 +g22943 +S'welsh' +p22945 +tp22946 +a(g22943 +g22945 +S'artist' +p22947 +tp22948 +a(g22945 +g22947 +S'augustus' +p22949 +tp22950 +a(g22947 +g22949 +S'edwin' +p22951 +tp22952 +a(g22949 +g22951 +S'john' +p22953 +tp22954 +a(g22951 +g22953 +S'used' +p22955 +tp22956 +a(g22953 +g22955 +S'an' +p22957 +tp22958 +a(g22955 +g22957 +S'expressionist' +p22959 +tp22960 +a(g22957 +g22959 +S'style' +p22961 +tp22962 +a(g22959 +g22961 +S'that' +p22963 +tp22964 +a(g22961 +g22963 +S'enlivens' +p22965 +tp22966 +a(g22963 +g22965 +S'joseph' +p22967 +tp22968 +a(g22965 +g22967 +S"widener's" +p22969 +tp22970 +a(g22967 +g22969 +S'portrait' +p22971 +tp22972 +a(g22969 +g22971 +S'with' +p22973 +tp22974 +a(g22971 +g22973 +S'a' +p22975 +tp22976 +a(g22973 +g22975 +S'flickering,' +p22977 +tp22978 +a(g22975 +g22977 +S'abstracted' +p22979 +tp22980 +a(g22977 +g22979 +S'setting.' +p22981 +tp22982 +a(g22979 +g22981 +S'in' +p22983 +tp22984 +a(g22981 +g22983 +S'the' +p22985 +tp22986 +a(g22983 +g22985 +S'art' +p22987 +tp22988 +a(g22985 +g22987 +S'of' +p22989 +tp22990 +a(g22987 +g22989 +S'the' +p22991 +tp22992 +a(g22989 +g22991 +S'middle' +p22993 +tp22994 +a(g22991 +g22993 +S'ages' +p22995 +tp22996 +a(g22993 +g22995 +S'and' +p22997 +tp22998 +a(g22995 +g22997 +S'renaissance,' +p22999 +tp23000 +a(g22997 +g22999 +S'the' +p23001 +tp23002 +a(g22999 +g23001 +S'virtues' +p23003 +tp23004 +a(g23001 +g23003 +S'were' +p23005 +tp23006 +a(g23003 +g23005 +S'often' +p23007 +tp23008 +a(g23005 +g23007 +S'personified' +p23009 +tp23010 +a(g23007 +g23009 +S'by' +p23011 +tp23012 +a(g23009 +g23011 +S'human' +p23013 +tp23014 +a(g23011 +g23013 +S'figures' +p23015 +tp23016 +a(g23013 +g23015 +S'carrying' +p23017 +tp23018 +a(g23015 +g23017 +S'identifying' +p23019 +tp23020 +a(g23017 +g23019 +S'attributes.' +p23021 +tp23022 +a(g23019 +g23021 +S'charity' +p23023 +tp23024 +a(g23021 +g23023 +S'typically' +p23025 +tp23026 +a(g23023 +g23025 +S'holds' +p23027 +tp23028 +a(g23025 +g23027 +S'one' +p23029 +tp23030 +a(g23027 +g23029 +S'or' +p23031 +tp23032 +a(g23029 +g23031 +S'more' +p23033 +tp23034 +a(g23031 +g23033 +S'children.' +p23035 +tp23036 +a(g23033 +g23035 +S'as' +p23037 +tp23038 +a(g23035 +g23037 +S'represented' +p23039 +tp23040 +a(g23037 +g23039 +S'by' +p23041 +tp23042 +a(g23039 +g23041 +S'mino' +p23043 +tp23044 +a(g23041 +g23043 +S'da' +p23045 +tp23046 +a(g23043 +g23045 +S'fiesole,' +p23047 +tp23048 +a(g23045 +g23047 +S'a' +p23049 +tp23050 +a(g23047 +g23049 +S'contemporary' +p23051 +tp23052 +a(g23049 +g23051 +S'of' +p23053 +tp23054 +a(g23051 +g23053 +S'desiderio' +p23055 +tp23056 +a(g23053 +g23055 +S'da' +p23057 +tp23058 +a(g23055 +g23057 +S'settignano' +p23059 +tp23060 +a(g23057 +g23059 +S'and' +p23061 +tp23062 +a(g23059 +g23061 +S'antonio' +p23063 +tp23064 +a(g23061 +g23063 +S'rossellino,' +p23065 +tp23066 +a(g23063 +g23065 +S'set' +p23067 +tp23068 +a(g23065 +g23067 +S'in' +p23069 +tp23070 +a(g23067 +g23069 +S'arched' +p23071 +tp23072 +a(g23069 +g23071 +S'niches,' +p23073 +tp23074 +a(g23071 +g23073 +S'the' +p23075 +tp23076 +a(g23073 +g23075 +S'figures' +p23077 +tp23078 +a(g23075 +g23077 +S'must' +p23079 +tp23080 +a(g23077 +g23079 +S'have' +p23081 +tp23082 +a(g23079 +g23081 +S'been' +p23083 +tp23084 +a(g23081 +g23083 +S'intended' +p23085 +tp23086 +a(g23083 +g23085 +S'as' +p23087 +tp23088 +a(g23085 +g23087 +S'part' +p23089 +tp23090 +a(g23087 +g23089 +S'of' +p23091 +tp23092 +a(g23089 +g23091 +S'a' +p23093 +tp23094 +a(g23091 +g23093 +S'monument' +p23095 +tp23096 +a(g23093 +g23095 +S'combining' +p23097 +tp23098 +a(g23095 +g23097 +S'architecture' +p23099 +tp23100 +a(g23097 +g23099 +S'and' +p23101 +tp23102 +a(g23099 +g23101 +S'sculpture,' +p23103 +tp23104 +a(g23101 +g23103 +S'probably' +p23105 +tp23106 +a(g23103 +g23105 +S'a' +p23107 +tp23108 +a(g23105 +g23107 +S'wall' +p23109 +tp23110 +a(g23107 +g23109 +S'tomb' +p23111 +tp23112 +a(g23109 +g23111 +S'inside' +p23113 +tp23114 +a(g23111 +g23113 +S'a' +p23115 +tp23116 +a(g23113 +g23115 +S'church.' +p23117 +tp23118 +a(g23115 +g23117 +S'the' +p23119 +tp23120 +a(g23117 +g23119 +S'virtues' +p23121 +tp23122 +a(g23119 +g23121 +S'would' +p23123 +tp23124 +a(g23121 +g23123 +S'represent' +p23125 +tp23126 +a(g23123 +g23125 +S'reasons' +p23127 +tp23128 +a(g23125 +g23127 +S'for' +p23129 +tp23130 +a(g23127 +g23129 +S'the' +p23131 +tp23132 +a(g23129 +g23131 +S'deceased' +p23133 +tp23134 +a(g23131 +g23133 +S"person's" +p23135 +tp23136 +a(g23133 +g23135 +S'good' +p23137 +tp23138 +a(g23135 +g23137 +S'memory' +p23139 +tp23140 +a(g23137 +g23139 +S'on' +p23141 +tp23142 +a(g23139 +g23141 +S'earth' +p23143 +tp23144 +a(g23141 +g23143 +S'and' +p23145 +tp23146 +a(g23143 +g23145 +S'hopes' +p23147 +tp23148 +a(g23145 +g23147 +S'for' +p23149 +tp23150 +a(g23147 +g23149 +S'paradise.' +p23151 +tp23152 +a(g23149 +g23151 +S'faith' +p23155 +tp23156 +a(g23153 +g23155 +S'during' +p23157 +tp23158 +a(g23155 +g23157 +S'the' +p23159 +tp23160 +a(g23157 +g23159 +S'civil' +p23161 +tp23162 +a(g23159 +g23161 +S'war,' +p23163 +tp23164 +a(g23161 +g23163 +S'john' +p23165 +tp23166 +a(g23163 +g23165 +S'singer' +p23167 +tp23168 +a(g23165 +g23167 +S'sargent,' +p23169 +tp23170 +a(g23167 +g23169 +S'an' +p23171 +tp23172 +a(g23169 +g23171 +S'american' +p23173 +tp23174 +a(g23171 +g23173 +S'artist' +p23175 +tp23176 +a(g23173 +g23175 +S'who' +p23177 +tp23178 +a(g23175 +g23177 +S'was' +p23179 +tp23180 +a(g23177 +g23179 +S'a' +p23181 +tp23182 +a(g23179 +g23181 +S'cosmopolitan' +p23183 +tp23184 +a(g23181 +g23183 +S'celebrity,' +p23185 +tp23186 +a(g23183 +g23185 +S'painted' +p23187 +tp23188 +a(g23185 +g23187 +S'this' +p23189 +tp23190 +a(g23187 +g23189 +S'shadowed,' +p23191 +tp23192 +a(g23189 +g23191 +S'sober' +p23193 +tp23194 +a(g23191 +g23193 +S'portrait' +p23195 +tp23196 +a(g23193 +g23195 +S'of' +p23197 +tp23198 +a(g23195 +g23197 +S'peter' +p23199 +tp23200 +a(g23197 +g23199 +S'a.' +p23201 +tp23202 +a(g23199 +g23201 +S'b.' +p23203 +tp23204 +a(g23201 +g23203 +S'widener' +p23205 +tp23206 +a(g23203 +g23205 +S'in' +p23207 +tp23208 +a(g23205 +g23207 +S'london.' +p23209 +tp23210 +a(g23207 +g23209 +S'embroidered' +p23211 +tp23212 +a(g23209 +g23211 +S'rugs' +p23213 +tp23214 +a(g23211 +g23213 +S'were' +p23215 +tp23216 +a(g23213 +g23215 +S'less' +p23217 +tp23218 +a(g23215 +g23217 +S'common' +p23219 +tp23220 +a(g23217 +g23219 +S'than' +p23221 +tp23222 +a(g23219 +g23221 +S'the' +p23223 +tp23224 +a(g23221 +g23223 +S'hooked' +p23225 +tp23226 +a(g23223 +g23225 +S'variety' +p23227 +tp23228 +a(g23225 +g23227 +S'because' +p23229 +tp23230 +a(g23227 +g23229 +S'they' +p23231 +tp23232 +a(g23229 +g23231 +S'had' +p23233 +tp23234 +a(g23231 +g23233 +S'to' +p23235 +tp23236 +a(g23233 +g23235 +S'be' +p23237 +tp23238 +a(g23235 +g23237 +S'made' +p23239 +tp23240 +a(g23237 +g23239 +S'from' +p23241 +tp23242 +a(g23239 +g23241 +S'new' +p23243 +tp23244 +a(g23241 +g23243 +S'materials' +p23245 +tp23246 +a(g23243 +g23245 +S'instead' +p23247 +tp23248 +a(g23245 +g23247 +S'of' +p23249 +tp23250 +a(g23247 +g23249 +S'scraps.' +p23251 +tp23252 +a(g23249 +g23251 +S'this' +p23253 +tp23254 +a(g23251 +g23253 +S'rug' +p23255 +tp23256 +a(g23253 +g23255 +S'of' +p23257 +tp23258 +a(g23255 +g23257 +S'homespun' +p23259 +tp23260 +a(g23257 +g23259 +S'wool' +p23261 +tp23262 +a(g23259 +g23261 +S'was' +p23263 +tp23264 +a(g23261 +g23263 +S'embroidered' +p23265 +tp23266 +a(g23263 +g23265 +S'in' +p23267 +tp23268 +a(g23265 +g23267 +S'bold' +p23269 +tp23270 +a(g23267 +g23269 +S'and' +p23271 +tp23272 +a(g23269 +g23271 +S'untraditional' +p23273 +tp23274 +a(g23271 +g23273 +S'stitchery.' +p23275 +tp23276 +a(g23273 +g23275 +S'two' +p23277 +tp23278 +a(g23275 +g23277 +S'roosters' +p23279 +tp23280 +a(g23277 +g23279 +S'done' +p23281 +tp23282 +a(g23279 +g23281 +S'in' +p23283 +tp23284 +a(g23281 +g23283 +S'gray,' +p23285 +tp23286 +a(g23283 +g23285 +S'russet,' +p23287 +tp23288 +a(g23285 +g23287 +S'purple,' +p23289 +tp23290 +a(g23287 +g23289 +S'and' +p23291 +tp23292 +a(g23289 +g23291 +S'pink' +p23293 +tp23294 +a(g23291 +g23293 +S'are' +p23295 +tp23296 +a(g23293 +g23295 +S'set' +p23297 +tp23298 +a(g23295 +g23297 +S'into' +p23299 +tp23300 +a(g23297 +g23299 +S'a' +p23301 +tp23302 +a(g23299 +g23301 +S'framelike' +p23303 +tp23304 +a(g23301 +g23303 +S'composition' +p23305 +tp23306 +a(g23303 +g23305 +S'surrounded' +p23307 +tp23308 +a(g23305 +g23307 +S'by' +p23309 +tp23310 +a(g23307 +g23309 +S'a' +p23311 +tp23312 +a(g23309 +g23311 +S'border' +p23313 +tp23314 +a(g23311 +g23313 +S'of' +p23315 +tp23316 +a(g23313 +g23315 +S'flowers' +p23317 +tp23318 +a(g23315 +g23317 +S'and' +p23319 +tp23320 +a(g23317 +g23319 +S'leaves.' +p23321 +tp23322 +a(g23319 +g23321 +S'the' +p23323 +tp23324 +a(g23321 +g23323 +S'relationship' +p23325 +tp23326 +a(g23323 +g23325 +S'of' +p23327 +tp23328 +a(g23325 +g23327 +S'round' +p23329 +tp23330 +a(g23327 +g23329 +S'shapes' +p23331 +tp23332 +a(g23329 +g23331 +S'serves' +p23333 +tp23334 +a(g23331 +g23333 +S'to' +p23335 +tp23336 +a(g23333 +g23335 +S'unify' +p23337 +tp23338 +a(g23335 +g23337 +S'the' +p23339 +tp23340 +a(g23337 +g23339 +S'design;' +p23341 +tp23342 +a(g23339 +g23341 +S'notice' +p23343 +tp23344 +a(g23341 +g23343 +S'the' +p23345 +tp23346 +a(g23343 +g23345 +S'round' +p23347 +tp23348 +a(g23345 +g23347 +S'floral' +p23349 +tp23350 +a(g23347 +g23349 +S'forms,' +p23351 +tp23352 +a(g23349 +g23351 +S'the' +p23353 +tp23354 +a(g23351 +g23353 +S'curves' +p23355 +tp23356 +a(g23353 +g23355 +S'of' +p23357 +tp23358 +a(g23355 +g23357 +S'the' +p23359 +tp23360 +a(g23357 +g23359 +S"roosters'" +p23361 +tp23362 +a(g23359 +g23361 +S'breasts' +p23363 +tp23364 +a(g23361 +g23363 +S'and' +p23365 +tp23366 +a(g23363 +g23365 +S'tails,' +p23367 +tp23368 +a(g23365 +g23367 +S'and' +p23369 +tp23370 +a(g23367 +g23369 +S'the' +p23371 +tp23372 +a(g23369 +g23371 +S'rounded' +p23373 +tp23374 +a(g23371 +g23373 +S'corners' +p23375 +tp23376 +a(g23373 +g23375 +S'of' +p23377 +tp23378 +a(g23375 +g23377 +S'the' +p23379 +tp23380 +a(g23377 +g23379 +S'rectangle.' +p23381 +tp23382 +a(g23379 +g23381 +S'the' +p23383 +tp23384 +a(g23381 +g23383 +S'design' +p23385 +tp23386 +a(g23383 +g23385 +S'is' +p23387 +tp23388 +a(g23385 +g23387 +S'freely' +p23389 +tp23390 +a(g23387 +g23389 +S'rendered' +p23391 +tp23392 +a(g23389 +g23391 +S'in' +p23393 +tp23394 +a(g23391 +g23393 +S'a' +p23395 +tp23396 +a(g23393 +g23395 +S'symmetrical' +p23397 +tp23398 +a(g23395 +g23397 +S'pattern' +p23399 +tp23400 +a(g23397 +g23399 +S'and' +p23401 +tp23402 +a(g23399 +g23401 +S'bright' +p23403 +tp23404 +a(g23401 +g23403 +S'colors.' +p23405 +tp23406 +a(g23403 +g23405 +S'severo' +p23407 +tp23408 +a(g23405 +g23407 +S'worked' +p23409 +tp23410 +a(g23407 +g23409 +S'nearly' +p23411 +tp23412 +a(g23409 +g23411 +S'his' +p23413 +tp23414 +a(g23411 +g23413 +S'entire' +p23415 +tp23416 +a(g23413 +g23415 +S'career' +p23417 +tp23418 +a(g23415 +g23417 +S'in' +p23419 +tp23420 +a(g23417 +g23419 +S'padua,' +p23421 +tp23422 +a(g23419 +g23421 +S'a' +p23423 +tp23424 +a(g23421 +g23423 +S'university' +p23425 +tp23426 +a(g23423 +g23425 +S'city' +p23427 +tp23428 +a(g23425 +g23427 +S'where' +p23429 +tp23430 +a(g23427 +g23429 +S"patrons'" +p23431 +tp23432 +a(g23429 +g23431 +S'appreciation' +p23433 +tp23434 +a(g23431 +g23433 +S'for' +p23435 +tp23436 +a(g23433 +g23435 +S'the' +p23437 +tp23438 +a(g23435 +g23437 +S'classical' +p23439 +tp23440 +a(g23437 +g23439 +S'past' +p23441 +tp23442 +a(g23439 +g23441 +S'fueled' +p23443 +tp23444 +a(g23441 +g23443 +S'demand' +p23445 +tp23446 +a(g23443 +g23445 +S'for' +p23447 +tp23448 +a(g23445 +g23447 +S'small-scale' +p23449 +tp23450 +a(g23447 +g23449 +S'works' +p23451 +tp23452 +a(g23449 +g23451 +S'like' +p23453 +tp23454 +a(g23451 +g23453 +S'this' +p23455 +tp23456 +a(g23453 +g23455 +S'one.' +p23457 +tp23458 +a(g23455 +g23457 +S'it' +p23459 +tp23460 +a(g23457 +g23459 +S'was' +p23461 +tp23462 +a(g23459 +g23461 +S'probably' +p23463 +tp23464 +a(g23461 +g23463 +S'loosely' +p23465 +tp23466 +a(g23463 +g23465 +S'inspired' +p23467 +tp23468 +a(g23465 +g23467 +S'by' +p23469 +tp23470 +a(g23467 +g23469 +S'the' +p23471 +tp23472 +a(g23469 +g23471 +S'greek' +p23473 +tp23474 +a(g23471 +g23473 +S'myth' +p23475 +tp23476 +a(g23473 +g23475 +S'of' +p23477 +tp23478 +a(g23475 +g23477 +S'perseus,' +p23479 +tp23480 +a(g23477 +g23479 +S'who' +p23481 +tp23482 +a(g23479 +g23481 +S'rescued' +p23483 +tp23484 +a(g23481 +g23483 +S'the' +p23485 +tp23486 +a(g23483 +g23485 +S'beautiful' +p23487 +tp23488 +a(g23485 +g23487 +S'andromeda' +p23489 +tp23490 +a(g23487 +g23489 +S'from' +p23491 +tp23492 +a(g23489 +g23491 +S'the' +p23493 +tp23494 +a(g23491 +g23493 +S'rock' +p23495 +tp23496 +a(g23493 +g23495 +S'where' +p23497 +tp23498 +a(g23495 +g23497 +S'she' +p23499 +tp23500 +a(g23497 +g23499 +S'had' +p23501 +tp23502 +a(g23499 +g23501 +S'been' +p23503 +tp23504 +a(g23501 +g23503 +S'chained' +p23505 +tp23506 +a(g23503 +g23505 +S'by' +p23507 +tp23508 +a(g23505 +g23507 +S'a' +p23509 +tp23510 +a(g23507 +g23509 +S'sea' +p23511 +tp23512 +a(g23509 +g23511 +S'monster.' +p23513 +tp23514 +a(g23511 +g23513 +S'here,' +p23515 +tp23516 +a(g23513 +g23515 +S'it' +p23517 +tp23518 +a(g23515 +g23517 +S'is' +p23519 +tp23520 +a(g23517 +g23519 +S'the' +p23521 +tp23522 +a(g23519 +g23521 +S'god' +p23523 +tp23524 +a(g23521 +g23523 +S'of' +p23525 +tp23526 +a(g23523 +g23525 +S'the' +p23527 +tp23528 +a(g23525 +g23527 +S'sea' +p23529 +tp23530 +a(g23527 +g23529 +S'who' +p23531 +tp23532 +a(g23529 +g23531 +S'has' +p23533 +tp23534 +a(g23531 +g23533 +S'vanquished' +p23535 +tp23536 +a(g23533 +g23535 +S'the' +p23537 +tp23538 +a(g23535 +g23537 +S'sea' +p23539 +tp23540 +a(g23537 +g23539 +S'monster,' +p23541 +tp23542 +a(g23539 +g23541 +S'a' +p23543 +tp23544 +a(g23541 +g23543 +S'few' +p23545 +tp23546 +a(g23543 +g23545 +S'links' +p23547 +tp23548 +a(g23545 +g23547 +S'of' +p23549 +tp23550 +a(g23547 +g23549 +S'the' +p23551 +tp23552 +a(g23549 +g23551 +S'chain' +p23553 +tp23554 +a(g23551 +g23553 +S'by' +p23555 +tp23556 +a(g23553 +g23555 +S'which' +p23557 +tp23558 +a(g23555 +g23557 +S'he' +p23559 +tp23560 +a(g23557 +g23559 +S'had' +p23561 +tp23562 +a(g23559 +g23561 +S'tethered' +p23563 +tp23564 +a(g23561 +g23563 +S'the' +p23565 +tp23566 +a(g23563 +g23565 +S'beast' +p23567 +tp23568 +a(g23565 +g23567 +S'still' +p23569 +tp23570 +a(g23567 +g23569 +S'surviving' +p23571 +tp23572 +a(g23569 +g23571 +S'in' +p23573 +tp23574 +a(g23571 +g23573 +S'his' +p23575 +tp23576 +a(g23573 +g23575 +S'left' +p23577 +tp23578 +a(g23575 +g23577 +S'hand.' +p23579 +tp23580 +a(g23577 +g23579 +S'the' +p23581 +tp23582 +a(g23579 +g23581 +S'reworking' +p23583 +tp23584 +a(g23581 +g23583 +S'of' +p23585 +tp23586 +a(g23583 +g23585 +S'classical' +p23587 +tp23588 +a(g23585 +g23587 +S'themes' +p23589 +tp23590 +a(g23587 +g23589 +S'was' +p23591 +tp23592 +a(g23589 +g23591 +S'a' +p23593 +tp23594 +a(g23591 +g23593 +S'specialty' +p23595 +tp23596 +a(g23593 +g23595 +S'of' +p23597 +tp23598 +a(g23595 +g23597 +S"severo's," +p23599 +tp23600 +a(g23597 +g23599 +S'who' +p23601 +tp23602 +a(g23599 +g23601 +S'had' +p23603 +tp23604 +a(g23601 +g23603 +S'probably' +p23605 +tp23606 +a(g23603 +g23605 +S'the' +p23607 +tp23608 +a(g23605 +g23607 +S'largest' +p23609 +tp23610 +a(g23607 +g23609 +S'bronze' +p23611 +tp23612 +a(g23609 +g23611 +S'workshop' +p23613 +tp23614 +a(g23611 +g23613 +S'in' +p23615 +tp23616 +a(g23613 +g23615 +S'padua.' +p23617 +tp23618 +a(g23615 +g23617 +S'in' +p23619 +tp23620 +a(g23617 +g23619 +S"neptune's" +p23621 +tp23622 +a(g23619 +g23621 +S'carefully' +p23623 +tp23624 +a(g23621 +g23623 +S'modeled,' +p23625 +tp23626 +a(g23623 +g23625 +S'youthful' +p23627 +tp23628 +a(g23625 +g23627 +S'body' +p23629 +tp23630 +a(g23627 +g23629 +S'reveals' +p23631 +tp23632 +a(g23629 +g23631 +S'the' +p23633 +tp23634 +a(g23631 +g23633 +S"sculptor's" +p23635 +tp23636 +a(g23633 +g23635 +S'command' +p23637 +tp23638 +a(g23635 +g23637 +S'of' +p23639 +tp23640 +a(g23637 +g23639 +S'anatomy' +p23641 +tp23642 +a(g23639 +g23641 +S'and' +p23643 +tp23644 +a(g23641 +g23643 +S'celebrates' +p23645 +tp23646 +a(g23643 +g23645 +S'the' +p23647 +tp23648 +a(g23645 +g23647 +S"god's" +p23649 +tp23650 +a(g23647 +g23649 +S'eternal' +p23651 +tp23652 +a(g23649 +g23651 +S'youth.' +p23653 +tp23654 +a(g23651 +g23653 +S'his' +p23655 +tp23656 +a(g23653 +g23655 +S'face,' +p23657 +tp23658 +a(g23655 +g23657 +S'meanwhile,' +p23659 +tp23660 +a(g23657 +g23659 +S'with' +p23661 +tp23662 +a(g23659 +g23661 +S'deeply' +p23663 +tp23664 +a(g23661 +g23663 +S'curling' +p23665 +tp23666 +a(g23663 +g23665 +S'hair' +p23667 +tp23668 +a(g23665 +g23667 +S'and' +p23669 +tp23670 +a(g23667 +g23669 +S'beard,' +p23671 +tp23672 +a(g23669 +g23671 +S'is' +p23673 +tp23674 +a(g23671 +g23673 +S'that' +p23675 +tp23676 +a(g23673 +g23675 +S'of' +p23677 +tp23678 +a(g23675 +g23677 +S'an' +p23679 +tp23680 +a(g23677 +g23679 +S'older' +p23681 +tp23682 +a(g23679 +g23681 +S'man,' +p23683 +tp23684 +a(g23681 +g23683 +S'who' +p23685 +tp23686 +a(g23683 +g23685 +S'is' +p23687 +tp23688 +a(g23685 +g23687 +S'more' +p23689 +tp23690 +a(g23687 +g23689 +S'aware' +p23691 +tp23692 +a(g23689 +g23691 +S'of' +p23693 +tp23694 +a(g23691 +g23693 +S'the' +p23695 +tp23696 +a(g23693 +g23695 +S'burdens' +p23697 +tp23698 +a(g23695 +g23697 +S'of' +p23699 +tp23700 +a(g23697 +g23699 +S'the' +p23701 +tp23702 +a(g23699 +g23701 +S'world;' +p23703 +tp23704 +a(g23701 +g23703 +S'this' +p23705 +tp23706 +a(g23703 +g23705 +S'is' +p23707 +tp23708 +a(g23705 +g23707 +S'a' +p23709 +tp23710 +a(g23707 +g23709 +S'more' +p23711 +tp23712 +a(g23709 +g23711 +S'common' +p23713 +tp23714 +a(g23711 +g23713 +S'representation' +p23715 +tp23716 +a(g23713 +g23715 +S'of' +p23717 +tp23718 +a(g23715 +g23717 +S'the' +p23719 +tp23720 +a(g23717 +g23719 +S'sea' +p23721 +tp23722 +a(g23719 +g23721 +S'god.' +p23723 +tp23724 +a(g23721 +g23723 +S'the' +p23725 +tp23726 +a(g23723 +g23725 +S'head' +p23727 +tp23728 +a(g23725 +g23727 +S'shows' +p23729 +tp23730 +a(g23727 +g23729 +S"severo's" +p23731 +tp23732 +a(g23729 +g23731 +S'meticulous' +p23733 +tp23734 +a(g23731 +g23733 +S'craftsmanship' +p23735 +tp23736 +a(g23733 +g23735 +S'to' +p23737 +tp23738 +a(g23735 +g23737 +S'advantage,' +p23739 +tp23740 +a(g23737 +g23739 +S'as' +p23741 +tp23742 +a(g23739 +g23741 +S'does' +p23743 +tp23744 +a(g23741 +g23743 +S'the' +p23745 +tp23746 +a(g23743 +g23745 +S'body' +p23747 +tp23748 +a(g23745 +g23747 +S'of' +p23749 +tp23750 +a(g23747 +g23749 +S'the' +p23751 +tp23752 +a(g23749 +g23751 +S'sea' +p23753 +tp23754 +a(g23751 +g23753 +S'monster,' +p23755 +tp23756 +a(g23753 +g23755 +S'whose' +p23757 +tp23758 +a(g23755 +g23757 +S'scales' +p23759 +tp23760 +a(g23757 +g23759 +S'contrast' +p23761 +tp23762 +a(g23759 +g23761 +S'with' +p23763 +tp23764 +a(g23761 +g23763 +S"neptune's" +p23765 +tp23766 +a(g23763 +g23765 +S'smooth' +p23767 +tp23768 +a(g23765 +g23767 +S'skin,' +p23769 +tp23770 +a(g23767 +g23769 +S'and' +p23771 +tp23772 +a(g23769 +g23771 +S'whose' +p23773 +tp23774 +a(g23771 +g23773 +S'doggish' +p23775 +tp23776 +a(g23773 +g23775 +S'ears' +p23777 +tp23778 +a(g23775 +g23777 +S'and' +p23779 +tp23780 +a(g23777 +g23779 +S'flippered' +p23781 +tp23782 +a(g23779 +g23781 +S'paws' +p23783 +tp23784 +a(g23781 +g23783 +S'show' +p23785 +tp23786 +a(g23783 +g23785 +S"severo's" +p23787 +tp23788 +a(g23785 +g23787 +S'imaginative' +p23789 +tp23790 +a(g23787 +g23789 +S'fantasy.' +p23791 +tp23792 +a(g23789 +g23791 +S'pennsylvania' +p23793 +tp23794 +a(g23791 +g23793 +S'german' +p23795 +tp23796 +a(g23793 +g23795 +S'housewives' +p23797 +tp23798 +a(g23795 +g23797 +S'produced' +p23799 +tp23800 +a(g23797 +g23799 +S'most' +p23801 +tp23802 +a(g23799 +g23801 +S'of' +p23803 +tp23804 +a(g23801 +g23803 +S'the' +p23805 +tp23806 +a(g23803 +g23805 +S'textiles' +p23807 +tp23808 +a(g23805 +g23807 +S'used' +p23809 +tp23810 +a(g23807 +g23809 +S'in' +p23811 +tp23812 +a(g23809 +g23811 +S'their' +p23813 +tp23814 +a(g23811 +g23813 +S'homes.' +p23815 +tp23816 +a(g23813 +g23815 +S'hooked' +p23817 +tp23818 +a(g23815 +g23817 +S'rugs' +p23819 +tp23820 +a(g23817 +g23819 +S'were' +p23821 +tp23822 +a(g23819 +g23821 +S'made' +p23823 +tp23824 +a(g23821 +g23823 +S'by' +p23825 +tp23826 +a(g23823 +g23825 +S'taking' +p23827 +tp23828 +a(g23825 +g23827 +S'short' +p23829 +tp23830 +a(g23827 +g23829 +S'pieces' +p23831 +tp23832 +a(g23829 +g23831 +S'of' +p23833 +tp23834 +a(g23831 +g23833 +S'yarn' +p23835 +tp23836 +a(g23833 +g23835 +S'or' +p23837 +tp23838 +a(g23835 +g23837 +S'cloth' +p23839 +tp23840 +a(g23837 +g23839 +S'and' +p23841 +tp23842 +a(g23839 +g23841 +S'pulling' +p23843 +tp23844 +a(g23841 +g23843 +S'them' +p23845 +tp23846 +a(g23843 +g23845 +S'through' +p23847 +tp23848 +a(g23845 +g23847 +S'the' +p23849 +tp23850 +a(g23847 +g23849 +S'mesh' +p23851 +tp23852 +a(g23849 +g23851 +S'of' +p23853 +tp23854 +a(g23851 +g23853 +S'a' +p23855 +tp23856 +a(g23853 +g23855 +S'backing' +p23857 +tp23858 +a(g23855 +g23857 +S'--' +p23859 +tp23860 +a(g23857 +g23859 +S'usually' +p23861 +tp23862 +a(g23859 +g23861 +S'linen' +p23863 +tp23864 +a(g23861 +g23863 +S'or' +p23865 +tp23866 +a(g23863 +g23865 +S'burlap' +p23867 +tp23868 +a(g23865 +g23867 +S'--' +p23869 +tp23870 +a(g23867 +g23869 +S'so' +p23871 +tp23872 +a(g23869 +g23871 +S'that' +p23873 +tp23874 +a(g23871 +g23873 +S'the' +p23875 +tp23876 +a(g23873 +g23875 +S'two' +p23877 +tp23878 +a(g23875 +g23877 +S'ends' +p23879 +tp23880 +a(g23877 +g23879 +S'were' +p23881 +tp23882 +a(g23879 +g23881 +S'on' +p23883 +tp23884 +a(g23881 +g23883 +S'one' +p23885 +tp23886 +a(g23883 +g23885 +S'side.' +p23887 +tp23888 +a(g23885 +g23887 +S'the' +p23889 +tp23890 +a(g23887 +g23889 +S'loops' +p23891 +tp23892 +a(g23889 +g23891 +S'could' +p23893 +tp23894 +a(g23891 +g23893 +S'then' +p23895 +tp23896 +a(g23893 +g23895 +S'be' +p23897 +tp23898 +a(g23895 +g23897 +S'trimmed' +p23899 +tp23900 +a(g23897 +g23899 +S'to' +p23901 +tp23902 +a(g23899 +g23901 +S'determine' +p23903 +tp23904 +a(g23901 +g23903 +S'the' +p23905 +tp23906 +a(g23903 +g23905 +S'pile' +p23907 +tp23908 +a(g23905 +g23907 +S'of' +p23909 +tp23910 +a(g23907 +g23909 +S'the' +p23911 +tp23912 +a(g23909 +g23911 +S'rug.' +p23913 +tp23914 +a(g23911 +g23913 +S'the' +p23915 +tp23916 +a(g23913 +g23915 +S'technique' +p23917 +tp23918 +a(g23915 +g23917 +S'of' +p23919 +tp23920 +a(g23917 +g23919 +S'hooking' +p23921 +tp23922 +a(g23919 +g23921 +S'rugs' +p23923 +tp23924 +a(g23921 +g23923 +S'lent' +p23925 +tp23926 +a(g23923 +g23925 +S'itself' +p23927 +tp23928 +a(g23925 +g23927 +S'naturally' +p23929 +tp23930 +a(g23927 +g23929 +S'to' +p23931 +tp23932 +a(g23929 +g23931 +S'a' +p23933 +tp23934 +a(g23931 +g23933 +S'variety' +p23935 +tp23936 +a(g23933 +g23935 +S'of' +p23937 +tp23938 +a(g23935 +g23937 +S'colors' +p23939 +tp23940 +a(g23937 +g23939 +S'and' +p23941 +tp23942 +a(g23939 +g23941 +S'designs.' +p23943 +tp23944 +a(g23941 +g23943 +S'designs' +p23945 +tp23946 +a(g23943 +g23945 +S'were' +p23947 +tp23948 +a(g23945 +g23947 +S'outlined' +p23949 +tp23950 +a(g23947 +g23949 +S'on' +p23951 +tp23952 +a(g23949 +g23951 +S'the' +p23953 +tp23954 +a(g23951 +g23953 +S'backing' +p23955 +tp23956 +a(g23953 +g23955 +S'and' +p23957 +tp23958 +a(g23955 +g23957 +S'filled' +p23959 +tp23960 +a(g23957 +g23959 +S'in' +p23961 +tp23962 +a(g23959 +g23961 +S'with' +p23963 +tp23964 +a(g23961 +g23963 +S'dyed' +p23965 +tp23966 +a(g23963 +g23965 +S'scraps.' +p23967 +tp23968 +a(g23965 +g23967 +S'this' +p23969 +tp23970 +a(g23967 +g23969 +S'hooked' +p23971 +tp23972 +a(g23969 +g23971 +S'rug' +p23973 +tp23974 +a(g23971 +g23973 +S'shows' +p23975 +tp23976 +a(g23973 +g23975 +S'an' +p23977 +tp23978 +a(g23975 +g23977 +S'assemblage' +p23979 +tp23980 +a(g23977 +g23979 +S'of' +p23981 +tp23982 +a(g23979 +g23981 +S'stars,' +p23983 +tp23984 +a(g23981 +g23983 +S'horses,' +p23985 +tp23986 +a(g23983 +g23985 +S'birds,' +p23987 +tp23988 +a(g23985 +g23987 +S'trees,' +p23989 +tp23990 +a(g23987 +g23989 +S'circles,' +p23991 +tp23992 +a(g23989 +g23991 +S'and' +p23993 +tp23994 +a(g23991 +g23993 +S'crescents' +p23995 +tp23996 +a(g23993 +g23995 +S'in' +p23997 +tp23998 +a(g23995 +g23997 +S'a' +p23999 +tp24000 +a(g23997 +g23999 +S'gay' +p24001 +tp24002 +a(g23999 +g24001 +S'symmetrical' +p24003 +tp24004 +a(g24001 +g24003 +S'arrangement.' +p24005 +tp24006 +a(g24003 +g24005 +S'the' +p24007 +tp24008 +a(g24005 +g24007 +S'rug' +p24009 +tp24010 +a(g24007 +g24009 +S'is' +p24011 +tp24012 +a(g24009 +g24011 +S'hooked' +p24013 +tp24014 +a(g24011 +g24013 +S'on' +p24015 +tp24016 +a(g24013 +g24015 +S'a' +p24017 +tp24018 +a(g24015 +g24017 +S'burlap' +p24019 +tp24020 +a(g24017 +g24019 +S'base' +p24021 +tp24022 +a(g24019 +g24021 +S'while' +p24023 +tp24024 +a(g24021 +g24023 +S'portions' +p24025 +tp24026 +a(g24023 +g24025 +S'of' +p24027 +tp24028 +a(g24025 +g24027 +S'the' +p24029 +tp24030 +a(g24027 +g24029 +S'design' +p24031 +tp24032 +a(g24029 +g24031 +S'are' +p24033 +tp24034 +a(g24031 +g24033 +S'worked' +p24035 +tp24036 +a(g24033 +g24035 +S'in' +p24037 +tp24038 +a(g24035 +g24037 +S'cross-stitch.' +p24039 +tp24040 +a(g24037 +g24039 +S'the' +p24041 +tp24042 +a(g24039 +g24041 +S'bold' +p24043 +tp24044 +a(g24041 +g24043 +S'colors' +p24045 +tp24046 +a(g24043 +g24045 +S'used' +p24047 +tp24048 +a(g24045 +g24047 +S'are' +p24049 +tp24050 +a(g24047 +g24049 +S'characteristic' +p24051 +tp24052 +a(g24049 +g24051 +S'of' +p24053 +tp24054 +a(g24051 +g24053 +S'the' +p24055 +tp24056 +a(g24053 +g24055 +S'pennsylvania' +p24057 +tp24058 +a(g24055 +g24057 +S'german' +p24059 +tp24060 +a(g24057 +g24059 +S'style.' +p24061 +tp24062 +a(g24059 +g24061 +S'in' +p24063 +tp24064 +a(g24061 +g24063 +S'the' +p24065 +tp24066 +a(g24063 +g24065 +S'art' +p24067 +tp24068 +a(g24065 +g24067 +S'of' +p24069 +tp24070 +a(g24067 +g24069 +S'the' +p24071 +tp24072 +a(g24069 +g24071 +S'middle' +p24073 +tp24074 +a(g24071 +g24073 +S'ages' +p24075 +tp24076 +a(g24073 +g24075 +S'and' +p24077 +tp24078 +a(g24075 +g24077 +S'renaissance,' +p24079 +tp24080 +a(g24077 +g24079 +S'the' +p24081 +tp24082 +a(g24079 +g24081 +S'virtues' +p24083 +tp24084 +a(g24081 +g24083 +S'were' +p24085 +tp24086 +a(g24083 +g24085 +S'often' +p24087 +tp24088 +a(g24085 +g24087 +S'personified' +p24089 +tp24090 +a(g24087 +g24089 +S'by' +p24091 +tp24092 +a(g24089 +g24091 +S'human' +p24093 +tp24094 +a(g24091 +g24093 +S'figures' +p24095 +tp24096 +a(g24093 +g24095 +S'carrying' +p24097 +tp24098 +a(g24095 +g24097 +S'identifying' +p24099 +tp24100 +a(g24097 +g24099 +S'attributes.' +p24101 +tp24102 +a(g24099 +g24101 +S'faith' +p24103 +tp24104 +a(g24101 +g24103 +S'in' +p24105 +tp24106 +a(g24103 +g24105 +S'this' +p24107 +tp24108 +a(g24105 +g24107 +S'case' +p24109 +tp24110 +a(g24107 +g24109 +S'had' +p24111 +tp24112 +a(g24109 +g24111 +S'a' +p24113 +tp24114 +a(g24111 +g24113 +S'chalice' +p24115 +tp24116 +a(g24113 +g24115 +S'and' +p24117 +tp24118 +a(g24115 +g24117 +S'a' +p24119 +tp24120 +a(g24117 +g24119 +S'cross,' +p24121 +tp24122 +a(g24119 +g24121 +S'now' +p24123 +tp24124 +a(g24121 +g24123 +S'broken.' +p24125 +tp24126 +a(g24123 +g24125 +S'as' +p24127 +tp24128 +a(g24125 +g24127 +S'represented' +p24129 +tp24130 +a(g24127 +g24129 +S'by' +p24131 +tp24132 +a(g24129 +g24131 +S'mino' +p24133 +tp24134 +a(g24131 +g24133 +S'da' +p24135 +tp24136 +a(g24133 +g24135 +S'fiesole,' +p24137 +tp24138 +a(g24135 +g24137 +S'a' +p24139 +tp24140 +a(g24137 +g24139 +S'contemporary' +p24141 +tp24142 +a(g24139 +g24141 +S'of' +p24143 +tp24144 +a(g24141 +g24143 +S'desiderio' +p24145 +tp24146 +a(g24143 +g24145 +S'da' +p24147 +tp24148 +a(g24145 +g24147 +S'settignano' +p24149 +tp24150 +a(g24147 +g24149 +S'and' +p24151 +tp24152 +a(g24149 +g24151 +S'antonio' +p24153 +tp24154 +a(g24151 +g24153 +S'rossellino,' +p24155 +tp24156 +a(g24153 +g24155 +S'set' +p24157 +tp24158 +a(g24155 +g24157 +S'in' +p24159 +tp24160 +a(g24157 +g24159 +S'arched' +p24161 +tp24162 +a(g24159 +g24161 +S'niches,' +p24163 +tp24164 +a(g24161 +g24163 +S'the' +p24165 +tp24166 +a(g24163 +g24165 +S'figures' +p24167 +tp24168 +a(g24165 +g24167 +S'must' +p24169 +tp24170 +a(g24167 +g24169 +S'have' +p24171 +tp24172 +a(g24169 +g24171 +S'been' +p24173 +tp24174 +a(g24171 +g24173 +S'intended' +p24175 +tp24176 +a(g24173 +g24175 +S'as' +p24177 +tp24178 +a(g24175 +g24177 +S'part' +p24179 +tp24180 +a(g24177 +g24179 +S'of' +p24181 +tp24182 +a(g24179 +g24181 +S'a' +p24183 +tp24184 +a(g24181 +g24183 +S'monument' +p24185 +tp24186 +a(g24183 +g24185 +S'combining' +p24187 +tp24188 +a(g24185 +g24187 +S'architecture' +p24189 +tp24190 +a(g24187 +g24189 +S'and' +p24191 +tp24192 +a(g24189 +g24191 +S'sculpture,' +p24193 +tp24194 +a(g24191 +g24193 +S'probably' +p24195 +tp24196 +a(g24193 +g24195 +S'a' +p24197 +tp24198 +a(g24195 +g24197 +S'wall' +p24199 +tp24200 +a(g24197 +g24199 +S'tomb' +p24201 +tp24202 +a(g24199 +g24201 +S'inside' +p24203 +tp24204 +a(g24201 +g24203 +S'a' +p24205 +tp24206 +a(g24203 +g24205 +S'church.' +p24207 +tp24208 +a(g24205 +g24207 +S'the' +p24209 +tp24210 +a(g24207 +g24209 +S'virtues' +p24211 +tp24212 +a(g24209 +g24211 +S'would' +p24213 +tp24214 +a(g24211 +g24213 +S'represent' +p24215 +tp24216 +a(g24213 +g24215 +S'reasons' +p24217 +tp24218 +a(g24215 +g24217 +S'for' +p24219 +tp24220 +a(g24217 +g24219 +S'the' +p24221 +tp24222 +a(g24219 +g24221 +S'deceased' +p24223 +tp24224 +a(g24221 +g24223 +S"person's" +p24225 +tp24226 +a(g24223 +g24225 +S'good' +p24227 +tp24228 +a(g24225 +g24227 +S'memory' +p24229 +tp24230 +a(g24227 +g24229 +S'on' +p24231 +tp24232 +a(g24229 +g24231 +S'earth' +p24233 +tp24234 +a(g24231 +g24233 +S'and' +p24235 +tp24236 +a(g24233 +g24235 +S'hopes' +p24237 +tp24238 +a(g24235 +g24237 +S'for' +p24239 +tp24240 +a(g24237 +g24239 +S'paradise.' +p24241 +tp24242 +a(g24239 +g24241 +S'faith' +p24243 +tp24244 +a(g24241 +g24243 +S'as' +p24245 +tp24246 +a(g24243 +g24245 +S"christ's" +p24247 +tp24248 +a(g24245 +g24247 +S'body' +p24249 +tp24250 +a(g24247 +g24249 +S'is' +p24251 +tp24252 +a(g24249 +g24251 +S'lowered' +p24253 +tp24254 +a(g24251 +g24253 +S'from' +p24255 +tp24256 +a(g24253 +g24255 +S'the' +p24257 +tp24258 +a(g24255 +g24257 +S'cross,' +p24259 +tp24260 +a(g24257 +g24259 +S'mourners' +p24261 +tp24262 +a(g24259 +g24261 +S'support' +p24263 +tp24264 +a(g24261 +g24263 +S'the' +p24265 +tp24266 +a(g24263 +g24265 +S'virgin,' +p24267 +tp24268 +a(g24265 +g24267 +S'near' +p24269 +tp24270 +a(g24267 +g24269 +S'collapse' +p24271 +tp24272 +a(g24269 +g24271 +S'under' +p24273 +tp24274 +a(g24271 +g24273 +S'the' +p24275 +tp24276 +a(g24273 +g24275 +S'weight' +p24277 +tp24278 +a(g24275 +g24277 +S'of' +p24279 +tp24280 +a(g24277 +g24279 +S'grief.' +p24281 +tp24282 +a(g24279 +g24281 +S'viewers' +p24283 +tp24284 +a(g24281 +g24283 +S'are' +p24285 +tp24286 +a(g24283 +g24285 +S'meant' +p24287 +tp24288 +a(g24285 +g24287 +S'to' +p24289 +tp24290 +a(g24287 +g24289 +S'feel' +p24291 +tp24292 +a(g24289 +g24291 +S'the' +p24293 +tp24294 +a(g24291 +g24293 +S'same' +p24295 +tp24296 +a(g24293 +g24295 +S'harrowing' +p24297 +tp24298 +a(g24295 +g24297 +S'sadness,' +p24299 +tp24300 +a(g24297 +g24299 +S'and' +p24301 +tp24302 +a(g24299 +g24301 +S'danti' +p24303 +tp24304 +a(g24301 +g24303 +S'uses' +p24305 +tp24306 +a(g24303 +g24305 +S'the' +p24307 +tp24308 +a(g24305 +g24307 +S'high' +p24309 +tp24310 +a(g24307 +g24309 +S'relief' +p24311 +tp24312 +a(g24309 +g24311 +S'of' +p24313 +tp24314 +a(g24311 +g24313 +S'the' +p24315 +tp24316 +a(g24313 +g24315 +S'foreground' +p24317 +tp24318 +a(g24315 +g24317 +S'figures' +p24319 +tp24320 +a(g24317 +g24319 +S'to' +p24321 +tp24322 +a(g24319 +g24321 +S'intensify' +p24323 +tp24324 +a(g24321 +g24323 +S'this' +p24325 +tp24326 +a(g24323 +g24325 +S'response.' +p24327 +tp24328 +a(g24325 +g24327 +S'nearly' +p24329 +tp24330 +a(g24327 +g24329 +S'in' +p24331 +tp24332 +a(g24329 +g24331 +S'the' +p24333 +tp24334 +a(g24331 +g24333 +S'round,' +p24335 +tp24336 +a(g24333 +g24335 +S'their' +p24337 +tp24338 +a(g24335 +g24337 +S'awkward,' +p24339 +tp24340 +a(g24337 +g24339 +S'off-balance' +p24341 +tp24342 +a(g24339 +g24341 +S'poses' +p24343 +tp24344 +a(g24341 +g24343 +S'are' +p24345 +tp24346 +a(g24343 +g24345 +S'accentuated' +p24347 +tp24348 +a(g24345 +g24347 +S'to' +p24349 +tp24350 +a(g24347 +g24349 +S'convey' +p24351 +tp24352 +a(g24349 +g24351 +S'in' +p24353 +tp24354 +a(g24351 +g24353 +S'a' +p24355 +tp24356 +a(g24353 +g24355 +S'physical' +p24357 +tp24358 +a(g24355 +g24357 +S'way' +p24359 +tp24360 +a(g24357 +g24359 +S'the' +p24361 +tp24362 +a(g24359 +g24361 +S'wrenching' +p24363 +tp24364 +a(g24361 +g24363 +S'force' +p24365 +tp24366 +a(g24363 +g24365 +S'of' +p24367 +tp24368 +a(g24365 +g24367 +S'emotion.' +p24369 +tp24370 +a(g24367 +g24369 +S'by' +p24371 +tp24372 +a(g24369 +g24371 +S'contrast,' +p24373 +tp24374 +a(g24371 +g24373 +S'the' +p24375 +tp24376 +a(g24373 +g24375 +S'two' +p24377 +tp24378 +a(g24375 +g24377 +S'thieves' +p24379 +tp24380 +a(g24377 +g24379 +S'crucified' +p24381 +tp24382 +a(g24379 +g24381 +S'with' +p24383 +tp24384 +a(g24381 +g24383 +S'christ' +p24385 +tp24386 +a(g24383 +g24385 +S'nearly' +p24387 +tp24388 +a(g24385 +g24387 +S'merge' +p24389 +tp24390 +a(g24387 +g24389 +S'into' +p24391 +tp24392 +a(g24389 +g24391 +S'the' +p24393 +tp24394 +a(g24391 +g24393 +S'background,' +p24395 +tp24396 +a(g24393 +g24395 +S'the' +p24397 +tp24398 +a(g24395 +g24397 +S'crosses' +p24399 +tp24400 +a(g24397 +g24399 +S'only' +p24401 +tp24402 +a(g24399 +g24401 +S'incised' +p24403 +tp24404 +a(g24401 +g24403 +S'on' +p24405 +tp24406 +a(g24403 +g24405 +S'the' +p24407 +tp24408 +a(g24405 +g24407 +S'surface.' +p24409 +tp24410 +a(g24407 +g24409 +S'it' +p24411 +tp24412 +a(g24409 +g24411 +S'is' +p24413 +tp24414 +a(g24411 +g24413 +S'easy' +p24415 +tp24416 +a(g24413 +g24415 +S'to' +p24417 +tp24418 +a(g24415 +g24417 +S'understand' +p24419 +tp24420 +a(g24417 +g24419 +S'these' +p24421 +tp24422 +a(g24419 +g24421 +S'lines' +p24423 +tp24424 +a(g24421 +g24423 +S'as' +p24425 +tp24426 +a(g24423 +g24425 +S'drawn' +p24427 +tp24428 +a(g24425 +g24427 +S'through' +p24429 +tp24430 +a(g24427 +g24429 +S'the' +p24431 +tp24432 +a(g24429 +g24431 +S'soft' +p24433 +tp24434 +a(g24431 +g24433 +S'wax' +p24435 +tp24436 +a(g24433 +g24435 +S'model' +p24437 +tp24438 +a(g24435 +g24437 +S'from' +p24439 +tp24440 +a(g24437 +g24439 +S'which' +p24441 +tp24442 +a(g24439 +g24441 +S'the' +p24443 +tp24444 +a(g24441 +g24443 +S'bronze' +p24445 +tp24446 +a(g24443 +g24445 +S'was' +p24447 +tp24448 +a(g24445 +g24447 +S'cast.' +p24449 +tp24450 +a(g24447 +g24449 +S'the' +p24451 +tp24452 +a(g24449 +g24451 +S'minimal' +p24453 +tp24454 +a(g24451 +g24453 +S'chasing' +p24455 +tp24456 +a(g24453 +g24455 +S'and' +p24457 +tp24458 +a(g24455 +g24457 +S'polishing' +p24459 +tp24460 +a(g24457 +g24459 +S'that' +p24461 +tp24462 +a(g24459 +g24461 +S'was' +p24463 +tp24464 +a(g24461 +g24463 +S'done' +p24465 +tp24466 +a(g24463 +g24465 +S'after' +p24467 +tp24468 +a(g24465 +g24467 +S'casting' +p24469 +tp24470 +a(g24467 +g24469 +S'leave' +p24471 +tp24472 +a(g24469 +g24471 +S'the' +p24473 +tp24474 +a(g24471 +g24473 +S'pliant' +p24475 +tp24476 +a(g24473 +g24475 +S'textures' +p24477 +tp24478 +a(g24475 +g24477 +S'and' +p24479 +tp24480 +a(g24477 +g24479 +S'immediacy' +p24481 +tp24482 +a(g24479 +g24481 +S'of' +p24483 +tp24484 +a(g24481 +g24483 +S'the' +p24485 +tp24486 +a(g24483 +g24485 +S'modeled' +p24487 +tp24488 +a(g24485 +g24487 +S'wax.' +p24489 +tp24490 +a(g24487 +g24489 +S'in' +p24491 +tp24492 +a(g24489 +g24491 +S'this' +p24493 +tp24494 +a(g24491 +g24493 +S'regard,' +p24495 +tp24496 +a(g24493 +g24495 +S'the' +p24497 +tp24498 +a(g24495 +g24497 +S"christ's" +p24499 +tp24500 +a(g24497 +g24499 +S'body' +p24501 +tp24502 +a(g24499 +g24501 +S'has' +p24503 +tp24504 +a(g24501 +g24503 +S'the' +p24505 +tp24506 +a(g24503 +g24505 +S'elongated,' +p24507 +tp24508 +a(g24505 +g24507 +S'elegant' +p24509 +tp24510 +a(g24507 +g24509 +S'proportions' +p24511 +tp24512 +a(g24509 +g24511 +S'of' +p24513 +tp24514 +a(g24511 +g24513 +S'mannerist' +p24515 +tp24516 +a(g24513 +g24515 +S'works—a' +p24517 +tp24518 +a(g24515 +g24517 +S'style' +p24519 +tp24520 +a(g24517 +g24519 +S'that' +p24521 +tp24522 +a(g24519 +g24521 +S'emphasized' +p24523 +tp24524 +a(g24521 +g24523 +S'self-conscious' +p24525 +tp24526 +a(g24523 +g24525 +S'artifice' +p24527 +tp24528 +a(g24525 +g24527 +S'over' +p24529 +tp24530 +a(g24527 +g24529 +S'naturalistic' +p24531 +tp24532 +a(g24529 +g24531 +S'depiction.' +p24533 +tp24534 +a(g24531 +g24533 +S'mannerism,' +p24535 +tp24536 +a(g24533 +g24535 +S'sometimes' +p24537 +tp24538 +a(g24535 +g24537 +S'viewed' +p24539 +tp24540 +a(g24537 +g24539 +S'as' +p24541 +tp24542 +a(g24539 +g24541 +S'a' +p24543 +tp24544 +a(g24541 +g24543 +S'reaction' +p24545 +tp24546 +a(g24543 +g24545 +S'to' +p24547 +tp24548 +a(g24545 +g24547 +S'the' +p24549 +tp24550 +a(g24547 +g24549 +S'clarity' +p24551 +tp24552 +a(g24549 +g24551 +S'and' +p24553 +tp24554 +a(g24551 +g24553 +S'unity' +p24555 +tp24556 +a(g24553 +g24555 +S'of' +p24557 +tp24558 +a(g24555 +g24557 +S'the' +p24559 +tp24560 +a(g24557 +g24559 +S'high' +p24561 +tp24562 +a(g24559 +g24561 +S'renaissance,' +p24563 +tp24564 +a(g24561 +g24563 +S'can' +p24565 +tp24566 +a(g24563 +g24565 +S'also' +p24567 +tp24568 +a(g24565 +g24567 +S'be' +p24569 +tp24570 +a(g24567 +g24569 +S'seen' +p24571 +tp24572 +a(g24569 +g24571 +S'as' +p24573 +tp24574 +a(g24571 +g24573 +S'a' +p24575 +tp24576 +a(g24573 +g24575 +S'natural' +p24577 +tp24578 +a(g24575 +g24577 +S'extension' +p24579 +tp24580 +a(g24577 +g24579 +S'of' +p24581 +tp24582 +a(g24579 +g24581 +S'it,' +p24583 +tp24584 +a(g24581 +g24583 +S'for' +p24585 +tp24586 +a(g24583 +g24585 +S'example' +p24587 +tp24588 +a(g24585 +g24587 +S'in' +p24589 +tp24590 +a(g24587 +g24589 +S'the' +p24591 +tp24592 +a(g24589 +g24591 +S'emphatic' +p24593 +tp24594 +a(g24591 +g24593 +S'modeling' +p24595 +tp24596 +a(g24593 +g24595 +S'of' +p24597 +tp24598 +a(g24595 +g24597 +S'michelangelo,' +p24599 +tp24600 +a(g24597 +g24599 +S'whom' +p24601 +tp24602 +a(g24599 +g24601 +S'danti' +p24603 +tp24604 +a(g24601 +g24603 +S'himself' +p24605 +tp24606 +a(g24603 +g24605 +S'cited' +p24607 +tp24608 +a(g24605 +g24607 +S'as' +p24609 +tp24610 +a(g24607 +g24609 +S'his' +p24611 +tp24612 +a(g24609 +g24611 +S'greatest' +p24613 +tp24614 +a(g24611 +g24613 +S'influence.' +p24615 +tp24616 +a(g24613 +g24615 +S'desiderio' +p24617 +tp24618 +a(g24615 +g24617 +S'da' +p24619 +tp24620 +a(g24617 +g24619 +S'settignano,' +p24621 +tp24622 +a(g24619 +g24621 +S'born' +p24623 +tp24624 +a(g24621 +g24623 +S'in' +p24625 +tp24626 +a(g24623 +g24625 +S'a' +p24627 +tp24628 +a(g24625 +g24627 +S'small' +p24629 +tp24630 +a(g24627 +g24629 +S'village' +p24631 +tp24632 +a(g24629 +g24631 +S'in' +p24633 +tp24634 +a(g24631 +g24633 +S'the' +p24635 +tp24636 +a(g24633 +g24635 +S'hills' +p24637 +tp24638 +a(g24635 +g24637 +S'above' +p24639 +tp24640 +a(g24637 +g24639 +S'florence,' +p24641 +tp24642 +a(g24639 +g24641 +S'numbers' +p24643 +tp24644 +a(g24641 +g24643 +S'among' +p24645 +tp24646 +a(g24643 +g24645 +S'the' +p24647 +tp24648 +a(g24645 +g24647 +S'most' +p24649 +tp24650 +a(g24647 +g24649 +S'brilliant' +p24651 +tp24652 +a(g24649 +g24651 +S'marble' +p24653 +tp24654 +a(g24651 +g24653 +S'sculptors' +p24655 +tp24656 +a(g24653 +g24655 +S'of' +p24657 +tp24658 +a(g24655 +g24657 +S'the' +p24659 +tp24660 +a(g24657 +g24659 +S'renaissance.' +p24661 +tp24662 +a(g24659 +g24661 +S'his' +p24663 +tp24664 +a(g24661 +g24663 +S'mastery' +p24665 +tp24666 +a(g24663 +g24665 +S'of' +p24667 +tp24668 +a(g24665 +g24667 +S'relief' +p24669 +tp24670 +a(g24667 +g24669 +S'sculpture' +p24671 +tp24672 +a(g24669 +g24671 +S'is' +p24673 +tp24674 +a(g24671 +g24673 +S'apparent' +p24675 +tp24676 +a(g24673 +g24675 +S'in' +p24677 +tp24678 +a(g24675 +g24677 +S'this' +p24679 +tp24680 +a(g24677 +g24679 +S'pictorially' +p24681 +tp24682 +a(g24679 +g24681 +S'rich' +p24683 +tp24684 +a(g24681 +g24683 +S'image,' +p24685 +tp24686 +a(g24683 +g24685 +S'with' +p24687 +tp24688 +a(g24685 +g24687 +S'its' +p24689 +tp24690 +a(g24687 +g24689 +S'complicated' +p24691 +tp24692 +a(g24689 +g24691 +S'space' +p24693 +tp24694 +a(g24691 +g24693 +S'in' +p24695 +tp24696 +a(g24693 +g24695 +S'which' +p24697 +tp24698 +a(g24695 +g24697 +S'figures' +p24699 +tp24700 +a(g24697 +g24699 +S'move' +p24701 +tp24702 +a(g24699 +g24701 +S'in' +p24703 +tp24704 +a(g24701 +g24703 +S'different' +p24705 +tp24706 +a(g24703 +g24705 +S'planes,' +p24707 +tp24708 +a(g24705 +g24707 +S'all' +p24709 +tp24710 +a(g24707 +g24709 +S'suggested' +p24711 +tp24712 +a(g24709 +g24711 +S'by' +p24713 +tp24714 +a(g24711 +g24713 +S'the' +p24715 +tp24716 +a(g24713 +g24715 +S'subtlest' +p24717 +tp24718 +a(g24715 +g24717 +S'manipulations' +p24719 +tp24720 +a(g24717 +g24719 +S'of' +p24721 +tp24722 +a(g24719 +g24721 +S'the' +p24723 +tp24724 +a(g24721 +g24723 +S'marble' +p24725 +tp24726 +a(g24723 +g24725 +S'surface.' +p24727 +tp24728 +a(g24725 +g24727 +S'clearly' +p24729 +tp24730 +a(g24727 +g24729 +S'desiderio' +p24731 +tp24732 +a(g24729 +g24731 +S'had' +p24733 +tp24734 +a(g24731 +g24733 +S'learned' +p24735 +tp24736 +a(g24733 +g24735 +S'much' +p24737 +tp24738 +a(g24735 +g24737 +S'from' +p24739 +tp24740 +a(g24737 +g24739 +S'the' +p24741 +tp24742 +a(g24739 +g24741 +S'low-relief' +p24743 +tp24744 +a(g24741 +g24743 +S'techniques' +p24745 +tp24746 +a(g24743 +g24745 +S'of' +p24747 +tp24748 +a(g24745 +g24747 +S'donatello.' +p24749 +tp24750 +a(g24747 +g24749 +S'the' +p24751 +tp24752 +a(g24749 +g24751 +S'sculptor' +p24753 +tp24754 +a(g24751 +g24753 +S'invented' +p24755 +tp24756 +a(g24753 +g24755 +S'a' +p24757 +tp24758 +a(g24755 +g24757 +S'rocky,' +p24759 +tp24760 +a(g24757 +g24759 +S'wilderness' +p24761 +tp24762 +a(g24759 +g24761 +S'landscape' +p24763 +tp24764 +a(g24761 +g24763 +S'with' +p24765 +tp24766 +a(g24763 +g24765 +S'a' +p24767 +tp24768 +a(g24765 +g24767 +S'cloud-streaked' +p24769 +tp24770 +a(g24767 +g24769 +S'sky' +p24771 +tp24772 +a(g24769 +g24771 +S'and' +p24773 +tp24774 +a(g24771 +g24773 +S'tall,' +p24775 +tp24776 +a(g24773 +g24775 +S'pointed' +p24777 +tp24778 +a(g24775 +g24777 +S'cypress' +p24779 +tp24780 +a(g24777 +g24779 +S'trees' +p24781 +tp24782 +a(g24779 +g24781 +S'receding' +p24783 +tp24784 +a(g24781 +g24783 +S'into' +p24785 +tp24786 +a(g24783 +g24785 +S'the' +p24787 +tp24788 +a(g24785 +g24787 +S'distance' +p24789 +tp24790 +a(g24787 +g24789 +S'among' +p24791 +tp24792 +a(g24789 +g24791 +S'the' +p24793 +tp24794 +a(g24791 +g24793 +S'cliffs.' +p24795 +tp24796 +a(g24793 +g24795 +S'in' +p24797 +tp24798 +a(g24795 +g24797 +S'the' +p24799 +tp24800 +a(g24797 +g24799 +S'foreground,' +p24801 +tp24802 +a(g24799 +g24801 +S'saint' +p24803 +tp24804 +a(g24801 +g24803 +S'jerome' +p24805 +tp24806 +a(g24803 +g24805 +S'kneels' +p24807 +tp24808 +a(g24805 +g24807 +S'in' +p24809 +tp24810 +a(g24807 +g24809 +S'penitential' +p24811 +tp24812 +a(g24809 +g24811 +S'prayer' +p24813 +tp24814 +a(g24811 +g24813 +S'before' +p24815 +tp24816 +a(g24813 +g24815 +S'a' +p24817 +tp24818 +a(g24815 +g24817 +S'crucifix.' +p24819 +tp24820 +a(g24817 +g24819 +S'he' +p24821 +tp24822 +a(g24819 +g24821 +S'wears' +p24823 +tp24824 +a(g24821 +g24823 +S'only' +p24825 +tp24826 +a(g24823 +g24825 +S'a' +p24827 +tp24828 +a(g24825 +g24827 +S'few' +p24829 +tp24830 +a(g24827 +g24829 +S'crumpled' +p24831 +tp24832 +a(g24829 +g24831 +S'wisps' +p24833 +tp24834 +a(g24831 +g24833 +S'of' +p24835 +tp24836 +a(g24833 +g24835 +S'drapery,' +p24837 +tp24838 +a(g24835 +g24837 +S'and' +p24839 +tp24840 +a(g24837 +g24839 +S'his' +p24841 +tp24842 +a(g24839 +g24841 +S'gaunt' +p24843 +tp24844 +a(g24841 +g24843 +S'face' +p24845 +tp24846 +a(g24843 +g24845 +S'tells' +p24847 +tp24848 +a(g24845 +g24847 +S'of' +p24849 +tp24850 +a(g24847 +g24849 +S'fervent,' +p24851 +tp24852 +a(g24849 +g24851 +S'ascetic' +p24853 +tp24854 +a(g24851 +g24853 +S'devotion.' +p24855 +tp24856 +a(g24853 +g24855 +S'on' +p24857 +tp24858 +a(g24855 +g24857 +S'the' +p24859 +tp24860 +a(g24857 +g24859 +S'right,' +p24861 +tp24862 +a(g24859 +g24861 +S'in' +p24863 +tp24864 +a(g24861 +g24863 +S'particularly' +p24865 +tp24866 +a(g24863 +g24865 +S'fine' +p24867 +tp24868 +a(g24865 +g24867 +S'low' +p24869 +tp24870 +a(g24867 +g24869 +S'relief,' +p24871 +tp24872 +a(g24869 +g24871 +S'suggesting' +p24873 +tp24874 +a(g24871 +g24873 +S'he' +p24875 +tp24876 +a(g24873 +g24875 +S'is' +p24877 +tp24878 +a(g24875 +g24877 +S'some' +p24879 +tp24880 +a(g24877 +g24879 +S'distance' +p24881 +tp24882 +a(g24879 +g24881 +S'in' +p24883 +tp24884 +a(g24881 +g24883 +S'the' +p24885 +tp24886 +a(g24883 +g24885 +S'background,' +p24887 +tp24888 +a(g24885 +g24887 +S'a' +p24889 +tp24890 +a(g24887 +g24889 +S'terrified' +p24891 +tp24892 +a(g24889 +g24891 +S'boy' +p24893 +tp24894 +a(g24891 +g24893 +S'flees' +p24895 +tp24896 +a(g24893 +g24895 +S'from' +p24897 +tp24898 +a(g24895 +g24897 +S'the' +p24899 +tp24900 +a(g24897 +g24899 +S'lions' +p24901 +tp24902 +a(g24899 +g24901 +S'that' +p24903 +tp24904 +a(g24901 +g24903 +S'emerge' +p24905 +tp24906 +a(g24903 +g24905 +S'from' +p24907 +tp24908 +a(g24905 +g24907 +S'the' +p24909 +tp24910 +a(g24907 +g24909 +S'rocks' +p24911 +tp24912 +a(g24909 +g24911 +S'on' +p24913 +tp24914 +a(g24911 +g24913 +S'the' +p24915 +tp24916 +a(g24913 +g24915 +S'left' +p24917 +tp24918 +a(g24915 +g24917 +S'behind' +p24919 +tp24920 +a(g24917 +g24919 +S'the' +p24921 +tp24922 +a(g24919 +g24921 +S'cross.' +p24923 +tp24924 +a(g24921 +g24923 +S'according' +p24925 +tp24926 +a(g24923 +g24925 +S'to' +p24927 +tp24928 +a(g24925 +g24927 +S'legend,' +p24929 +tp24930 +a(g24927 +g24929 +S'jerome' +p24931 +tp24932 +a(g24929 +g24931 +S'tamed' +p24933 +tp24934 +a(g24931 +g24933 +S'a' +p24935 +tp24936 +a(g24933 +g24935 +S'lion' +p24937 +tp24938 +a(g24935 +g24937 +S'by' +p24939 +tp24940 +a(g24937 +g24939 +S'removing' +p24941 +tp24942 +a(g24939 +g24941 +S'a' +p24943 +tp24944 +a(g24941 +g24943 +S'thorn' +p24945 +tp24946 +a(g24943 +g24945 +S'from' +p24947 +tp24948 +a(g24945 +g24947 +S'its' +p24949 +tp24950 +a(g24947 +g24949 +S'paw,' +p24951 +tp24952 +a(g24949 +g24951 +S'and' +p24953 +tp24954 +a(g24951 +g24953 +S'the' +p24955 +tp24956 +a(g24953 +g24955 +S'lion' +p24957 +tp24958 +a(g24955 +g24957 +S'therefore' +p24959 +tp24960 +a(g24957 +g24959 +S'often' +p24961 +tp24962 +a(g24959 +g24961 +S'appears' +p24963 +tp24964 +a(g24961 +g24963 +S'as' +p24965 +tp24966 +a(g24963 +g24965 +S'his' +p24967 +tp24968 +a(g24965 +g24967 +S'attribute' +p24969 +tp24970 +a(g24967 +g24969 +S'in' +p24971 +tp24972 +a(g24969 +g24971 +S'art.' +p24973 +tp24974 +a(g24971 +g24973 +S'the' +p24975 +tp24976 +a(g24973 +g24975 +S'lions' +p24977 +tp24978 +a(g24975 +g24977 +S'here,' +p24979 +tp24980 +a(g24977 +g24979 +S'clearly' +p24981 +tp24982 +a(g24979 +g24981 +S'no' +p24983 +tp24984 +a(g24981 +g24983 +S'threat' +p24985 +tp24986 +a(g24983 +g24985 +S'to' +p24987 +tp24988 +a(g24985 +g24987 +S'the' +p24989 +tp24990 +a(g24987 +g24989 +S'saint,' +p24991 +tp24992 +a(g24989 +g24991 +S'suggest' +p24993 +tp24994 +a(g24991 +g24993 +S'his' +p24995 +tp24996 +a(g24993 +g24995 +S'harmonious' +p24997 +tp24998 +a(g24995 +g24997 +S'relationship' +p24999 +tp25000 +a(g24997 +g24999 +S'with' +p25001 +tp25002 +a(g24999 +g25001 +S'nature,' +p25003 +tp25004 +a(g25001 +g25003 +S'achieved' +p25005 +tp25006 +a(g25003 +g25005 +S'through' +p25007 +tp25008 +a(g25005 +g25007 +S'solitary' +p25009 +tp25010 +a(g25007 +g25009 +S'meditation,' +p25011 +tp25012 +a(g25009 +g25011 +S'prayer,' +p25013 +tp25014 +a(g25011 +g25013 +S'and' +p25015 +tp25016 +a(g25013 +g25015 +S'penance.' +p25017 +tp25018 +a(g25015 +g25017 +S'confidently' +p25019 +tp25020 +a(g25017 +g25019 +S'focusing' +p25021 +tp25022 +a(g25019 +g25021 +S'his' +p25023 +tp25024 +a(g25021 +g25023 +S'attention' +p25025 +tp25026 +a(g25023 +g25025 +S'upward,' +p25027 +tp25028 +a(g25025 +g25027 +S'david' +p25029 +tp25030 +a(g25027 +g25029 +S'stands' +p25031 +tp25032 +a(g25029 +g25031 +S'triumphant' +p25033 +tp25034 +a(g25031 +g25033 +S'with' +p25035 +tp25036 +a(g25033 +g25035 +S'his' +p25037 +tp25038 +a(g25035 +g25037 +S'chin' +p25039 +tp25040 +a(g25037 +g25039 +S'high,' +p25041 +tp25042 +a(g25039 +g25041 +S'hand' +p25043 +tp25044 +a(g25041 +g25043 +S'on' +p25045 +tp25046 +a(g25043 +g25045 +S'hip,' +p25047 +tp25048 +a(g25045 +g25047 +S'and' +p25049 +tp25050 +a(g25047 +g25049 +S'a' +p25051 +tp25052 +a(g25049 +g25051 +S'foot' +p25053 +tp25054 +a(g25051 +g25053 +S'on' +p25055 +tp25056 +a(g25053 +g25055 +S'the' +p25057 +tp25058 +a(g25055 +g25057 +S'severed' +p25059 +tp25060 +a(g25057 +g25059 +S'head' +p25061 +tp25062 +a(g25059 +g25061 +S'of' +p25063 +tp25064 +a(g25061 +g25063 +S'goliath.' +p25065 +tp25066 +a(g25063 +g25065 +S'in' +p25067 +tp25068 +a(g25065 +g25067 +S'his' +p25069 +tp25070 +a(g25067 +g25069 +S'right' +p25071 +tp25072 +a(g25069 +g25071 +S'hand,' +p25073 +tp25074 +a(g25071 +g25073 +S'his' +p25075 +tp25076 +a(g25073 +g25075 +S'sling' +p25077 +tp25078 +a(g25075 +g25077 +S'is' +p25079 +tp25080 +a(g25077 +g25079 +S'already' +p25081 +tp25082 +a(g25079 +g25081 +S'reloaded,' +p25083 +tp25084 +a(g25081 +g25083 +S'poised' +p25085 +tp25086 +a(g25083 +g25085 +S'for' +p25087 +tp25088 +a(g25085 +g25087 +S'battle' +p25089 +tp25090 +a(g25087 +g25089 +S'should' +p25091 +tp25092 +a(g25089 +g25091 +S'any' +p25093 +tp25094 +a(g25091 +g25093 +S'philistines' +p25095 +tp25096 +a(g25093 +g25095 +S'dare' +p25097 +tp25098 +a(g25095 +g25097 +S'return.' +p25099 +tp25100 +a(g25097 +g25099 +S'powerful' +p25101 +tp25102 +a(g25099 +g25101 +S'in' +p25103 +tp25104 +a(g25101 +g25103 +S'spirit' +p25105 +tp25106 +a(g25103 +g25105 +S'and' +p25107 +tp25108 +a(g25105 +g25107 +S'mind' +p25109 +tp25110 +a(g25107 +g25109 +S'but' +p25111 +tp25112 +a(g25109 +g25111 +S'not' +p25113 +tp25114 +a(g25111 +g25113 +S'physically' +p25115 +tp25116 +a(g25113 +g25115 +S'intimidating,' +p25117 +tp25118 +a(g25115 +g25117 +S'the' +p25119 +tp25120 +a(g25117 +g25119 +S'shepherd' +p25121 +tp25122 +a(g25119 +g25121 +S'boy' +p25123 +tp25124 +a(g25121 +g25123 +S'david' +p25125 +tp25126 +a(g25123 +g25125 +S'was' +p25127 +tp25128 +a(g25125 +g25127 +S'often' +p25129 +tp25130 +a(g25127 +g25129 +S'used' +p25131 +tp25132 +a(g25129 +g25131 +S'as' +p25133 +tp25134 +a(g25131 +g25133 +S'a' +p25135 +tp25136 +a(g25133 +g25135 +S'symbol' +p25137 +tp25138 +a(g25135 +g25137 +S'in' +p25139 +tp25140 +a(g25137 +g25139 +S'fifteenth-century' +p25141 +tp25142 +a(g25139 +g25141 +S'florence.' +p25143 +tp25144 +a(g25141 +g25143 +S'tucked' +p25145 +tp25146 +a(g25143 +g25145 +S'into' +p25147 +tp25148 +a(g25145 +g25147 +S'the' +p25149 +tp25150 +a(g25147 +g25149 +S'hills' +p25151 +tp25152 +a(g25149 +g25151 +S'of' +p25153 +tp25154 +a(g25151 +g25153 +S'tuscany,' +p25155 +tp25156 +a(g25153 +g25155 +S'this' +p25157 +tp25158 +a(g25155 +g25157 +S'small' +p25159 +tp25160 +a(g25157 +g25159 +S'republic' +p25161 +tp25162 +a(g25159 +g25161 +S'built' +p25163 +tp25164 +a(g25161 +g25163 +S'its' +p25165 +tp25166 +a(g25163 +g25165 +S'prosperity' +p25167 +tp25168 +a(g25165 +g25167 +S'upon' +p25169 +tp25170 +a(g25167 +g25169 +S'a' +p25171 +tp25172 +a(g25169 +g25171 +S'textile' +p25173 +tp25174 +a(g25171 +g25173 +S'industry' +p25175 +tp25176 +a(g25173 +g25175 +S'and' +p25177 +tp25178 +a(g25175 +g25177 +S'financial' +p25179 +tp25180 +a(g25177 +g25179 +S'astuteness.' +p25181 +tp25182 +a(g25179 +g25181 +S'as' +p25183 +tp25184 +a(g25181 +g25183 +S'it' +p25185 +tp25186 +a(g25183 +g25185 +S'grew' +p25187 +tp25188 +a(g25185 +g25187 +S'in' +p25189 +tp25190 +a(g25187 +g25189 +S'political' +p25191 +tp25192 +a(g25189 +g25191 +S'importance,' +p25193 +tp25194 +a(g25191 +g25193 +S'it' +p25195 +tp25196 +a(g25193 +g25195 +S'became' +p25197 +tp25198 +a(g25195 +g25197 +S'intent' +p25199 +tp25200 +a(g25197 +g25199 +S'upon' +p25201 +tp25202 +a(g25199 +g25201 +S'governing' +p25203 +tp25204 +a(g25201 +g25203 +S'itself.' +p25205 +tp25206 +a(g25203 +g25205 +S'nearly' +p25207 +tp25208 +a(g25205 +g25207 +S'every' +p25209 +tp25210 +a(g25207 +g25209 +S'major' +p25211 +tp25212 +a(g25209 +g25211 +S'florentine' +p25213 +tp25214 +a(g25211 +g25213 +S'sculptor,' +p25215 +tp25216 +a(g25213 +g25215 +S'in' +p25217 +tp25218 +a(g25215 +g25217 +S'response' +p25219 +tp25220 +a(g25217 +g25219 +S'to' +p25221 +tp25222 +a(g25219 +g25221 +S'the' +p25223 +tp25224 +a(g25221 +g25223 +S'high' +p25225 +tp25226 +a(g25223 +g25225 +S'demand' +p25227 +tp25228 +a(g25225 +g25227 +S'from' +p25229 +tp25230 +a(g25227 +g25229 +S'patrons,' +p25231 +tp25232 +a(g25229 +g25231 +S'put' +p25233 +tp25234 +a(g25231 +g25233 +S'his' +p25235 +tp25236 +a(g25233 +g25235 +S'tools' +p25237 +tp25238 +a(g25235 +g25237 +S'to' +p25239 +tp25240 +a(g25237 +g25239 +S'a' +p25241 +tp25242 +a(g25239 +g25241 +S'david' +p25243 +tp25244 +a(g25241 +g25243 +S'triumphing' +p25245 +tp25246 +a(g25243 +g25245 +S'over' +p25247 +tp25248 +a(g25245 +g25247 +S'goliath.' +p25249 +tp25250 +a(g25247 +g25249 +S'this' +p25251 +tp25252 +a(g25249 +g25251 +S'david,' +p25253 +tp25254 +a(g25251 +g25253 +S'which' +p25255 +tp25256 +a(g25253 +g25255 +S'once' +p25257 +tp25258 +a(g25255 +g25257 +S'stood' +p25259 +tp25260 +a(g25257 +g25259 +S'in' +p25261 +tp25262 +a(g25259 +g25261 +S'the' +p25263 +tp25264 +a(g25261 +g25263 +S'courtyard' +p25265 +tp25266 +a(g25263 +g25265 +S'of' +p25267 +tp25268 +a(g25265 +g25267 +S'the' +p25269 +tp25270 +a(g25267 +g25269 +S'palace' +p25271 +tp25272 +a(g25269 +g25271 +S'of' +p25273 +tp25274 +a(g25271 +g25273 +S'the' +p25275 +tp25276 +a(g25273 +g25275 +S'martelli' +p25277 +tp25278 +a(g25275 +g25277 +S'family' +p25279 +tp25280 +a(g25277 +g25279 +S'in' +p25281 +tp25282 +a(g25279 +g25281 +S'florence,' +p25283 +tp25284 +a(g25281 +g25283 +S'appears' +p25285 +tp25286 +a(g25283 +g25285 +S'in' +p25287 +tp25288 +a(g25285 +g25287 +S'agnolo' +p25289 +tp25290 +a(g25287 +g25289 +S"bronzino's" +p25291 +tp25292 +a(g25289 +g25291 +S'painting' +p25293 +tp25294 +a(g25291 +g25293 +S'pieced' +p25295 +tp25296 +a(g25293 +g25295 +S'and' +p25297 +tp25298 +a(g25295 +g25297 +S'appliqué' +p25299 +tp25300 +a(g25297 +g25299 +S'quilts' +p25301 +tp25302 +a(g25299 +g25301 +S'of' +p25303 +tp25304 +a(g25301 +g25303 +S'the' +p25305 +tp25306 +a(g25303 +g25305 +S'nineteenth' +p25307 +tp25308 +a(g25305 +g25307 +S'century' +p25309 +tp25310 +a(g25307 +g25309 +S'were' +p25311 +tp25312 +a(g25309 +g25311 +S'often' +p25313 +tp25314 +a(g25311 +g25313 +S'made' +p25315 +tp25316 +a(g25313 +g25315 +S'from' +p25317 +tp25318 +a(g25315 +g25317 +S'separate' +p25319 +tp25320 +a(g25317 +g25319 +S'blocks' +p25321 +tp25322 +a(g25319 +g25321 +S'sewn' +p25323 +tp25324 +a(g25321 +g25323 +S'together' +p25325 +tp25326 +a(g25323 +g25325 +S'and' +p25327 +tp25328 +a(g25325 +g25327 +S'quilted' +p25329 +tp25330 +a(g25327 +g25329 +S'by' +p25331 +tp25332 +a(g25329 +g25331 +S'women' +p25333 +tp25334 +a(g25331 +g25333 +S'at' +p25335 +tp25336 +a(g25333 +g25335 +S'a' +p25337 +tp25338 +a(g25335 +g25337 +S'gathering' +p25339 +tp25340 +a(g25337 +g25339 +S'called' +p25341 +tp25342 +a(g25339 +g25341 +S'a' +p25343 +tp25344 +a(g25341 +g25343 +S'quilting' +p25345 +tp25346 +a(g25343 +g25345 +S'bee.' +p25347 +tp25348 +a(g25345 +g25347 +S'this' +p25349 +tp25350 +a(g25347 +g25349 +S'was' +p25351 +tp25352 +a(g25349 +g25351 +S'usually' +p25353 +tp25354 +a(g25351 +g25353 +S'a' +p25355 +tp25356 +a(g25353 +g25355 +S'festive' +p25357 +tp25358 +a(g25355 +g25357 +S'occasion' +p25359 +tp25360 +a(g25357 +g25359 +S'for' +p25361 +tp25362 +a(g25359 +g25361 +S'the' +p25363 +tp25364 +a(g25361 +g25363 +S'entire' +p25365 +tp25366 +a(g25363 +g25365 +S'community.' +p25367 +tp25368 +a(g25365 +g25367 +S'the' +p25369 +tp25370 +a(g25367 +g25369 +S'technique' +p25371 +tp25372 +a(g25369 +g25371 +S'of' +p25373 +tp25374 +a(g25371 +g25373 +S'making' +p25375 +tp25376 +a(g25373 +g25375 +S'quilt' +p25377 +tp25378 +a(g25375 +g25377 +S'tops' +p25379 +tp25380 +a(g25377 +g25379 +S'in' +p25381 +tp25382 +a(g25379 +g25381 +S'individual' +p25383 +tp25384 +a(g25381 +g25383 +S'squares' +p25385 +tp25386 +a(g25383 +g25385 +S'led' +p25387 +tp25388 +a(g25385 +g25387 +S'to' +p25389 +tp25390 +a(g25387 +g25389 +S'the' +p25391 +tp25392 +a(g25389 +g25391 +S'development' +p25393 +tp25394 +a(g25391 +g25393 +S'of' +p25395 +tp25396 +a(g25393 +g25395 +S'a' +p25397 +tp25398 +a(g25395 +g25397 +S'special' +p25399 +tp25400 +a(g25397 +g25399 +S'kind' +p25401 +tp25402 +a(g25399 +g25401 +S'of' +p25403 +tp25404 +a(g25401 +g25403 +S'quilt,' +p25405 +tp25406 +a(g25403 +g25405 +S'known' +p25407 +tp25408 +a(g25405 +g25407 +S'variously' +p25409 +tp25410 +a(g25407 +g25409 +S'as' +p25411 +tp25412 +a(g25409 +g25411 +S'signature,' +p25413 +tp25414 +a(g25411 +g25413 +S'autograph,' +p25415 +tp25416 +a(g25413 +g25415 +S'album,' +p25417 +tp25418 +a(g25415 +g25417 +S'friendship,' +p25419 +tp25420 +a(g25417 +g25419 +S'or' +p25421 +tp25422 +a(g25419 +g25421 +S'presentation' +p25423 +tp25424 +a(g25421 +g25423 +S'quilts,' +p25425 +tp25426 +a(g25423 +g25425 +S'made' +p25427 +tp25428 +a(g25425 +g25427 +S'for' +p25429 +tp25430 +a(g25427 +g25429 +S'a' +p25431 +tp25432 +a(g25429 +g25431 +S'special' +p25433 +tp25434 +a(g25431 +g25433 +S'friend' +p25435 +tp25436 +a(g25433 +g25435 +S'or' +p25437 +tp25438 +a(g25435 +g25437 +S'event.' +p25439 +tp25440 +a(g25437 +g25439 +S'these' +p25441 +tp25442 +a(g25439 +g25441 +S'quilts,' +p25443 +tp25444 +a(g25441 +g25443 +S'popular' +p25445 +tp25446 +a(g25443 +g25445 +S'during' +p25447 +tp25448 +a(g25445 +g25447 +S'the' +p25449 +tp25450 +a(g25447 +g25449 +S'1840s' +p25451 +tp25452 +a(g25449 +g25451 +S'and' +p25453 +tp25454 +a(g25451 +g25453 +S'1850s,' +p25455 +tp25456 +a(g25453 +g25455 +S'were' +p25457 +tp25458 +a(g25455 +g25457 +S'made' +p25459 +tp25460 +a(g25457 +g25459 +S'from' +p25461 +tp25462 +a(g25459 +g25461 +S'blocks' +p25463 +tp25464 +a(g25461 +g25463 +S'donated' +p25465 +tp25466 +a(g25463 +g25465 +S'by' +p25467 +tp25468 +a(g25465 +g25467 +S'friends,' +p25469 +tp25470 +a(g25467 +g25469 +S'who' +p25471 +tp25472 +a(g25469 +g25471 +S'would' +p25473 +tp25474 +a(g25471 +g25473 +S'gather' +p25475 +tp25476 +a(g25473 +g25475 +S'at' +p25477 +tp25478 +a(g25475 +g25477 +S'an' +p25479 +tp25480 +a(g25477 +g25479 +S'"album' +p25481 +tp25482 +a(g25479 +g25481 +S'party"' +p25483 +tp25484 +a(g25481 +g25483 +S'to' +p25485 +tp25486 +a(g25483 +g25485 +S'piece' +p25487 +tp25488 +a(g25485 +g25487 +S'together' +p25489 +tp25490 +a(g25487 +g25489 +S'and' +p25491 +tp25492 +a(g25489 +g25491 +S'quilt' +p25493 +tp25494 +a(g25491 +g25493 +S'the' +p25495 +tp25496 +a(g25493 +g25495 +S'individual' +p25497 +tp25498 +a(g25495 +g25497 +S'squares.' +p25499 +tp25500 +a(g25497 +g25499 +S'as' +p25501 +tp25502 +a(g25499 +g25501 +S'in' +p25503 +tp25504 +a(g25501 +g25503 +S'this' +p25505 +tp25506 +a(g25503 +g25505 +S"doll's" +p25507 +tp25508 +a(g25505 +g25507 +S'bed' +p25509 +tp25510 +a(g25507 +g25509 +S'quilt,' +p25511 +tp25512 +a(g25509 +g25511 +S'probably' +p25513 +tp25514 +a(g25511 +g25513 +S'made' +p25515 +tp25516 +a(g25513 +g25515 +S'by' +p25517 +tp25518 +a(g25515 +g25517 +S'a' +p25519 +tp25520 +a(g25517 +g25519 +S'group' +p25521 +tp25522 +a(g25519 +g25521 +S'of' +p25523 +tp25524 +a(g25521 +g25523 +S'young' +p25525 +tp25526 +a(g25523 +g25525 +S'people,' +p25527 +tp25528 +a(g25525 +g25527 +S'each' +p25529 +tp25530 +a(g25527 +g25529 +S'contributor' +p25531 +tp25532 +a(g25529 +g25531 +S'appliquéed' +p25533 +tp25534 +a(g25531 +g25533 +S'a' +p25535 +tp25536 +a(g25533 +g25535 +S'design' +p25537 +tp25538 +a(g25535 +g25537 +S'on' +p25539 +tp25540 +a(g25537 +g25539 +S'her' +p25541 +tp25542 +a(g25539 +g25541 +S'own' +p25543 +tp25544 +a(g25541 +g25543 +S'square.' +p25545 +tp25546 +a(g25543 +g25545 +S'the' +p25547 +tp25548 +a(g25545 +g25547 +S'appliqué' +p25549 +tp25550 +a(g25547 +g25549 +S'designs' +p25551 +tp25552 +a(g25549 +g25551 +S'were' +p25553 +tp25554 +a(g25551 +g25553 +S'often' +p25555 +tp25556 +a(g25553 +g25555 +S'embellished' +p25557 +tp25558 +a(g25555 +g25557 +S'by' +p25559 +tp25560 +a(g25557 +g25559 +S'the' +p25561 +tp25562 +a(g25559 +g25561 +S"contributor's" +p25563 +tp25564 +a(g25561 +g25563 +S'signature' +p25565 +tp25566 +a(g25563 +g25565 +S'in' +p25567 +tp25568 +a(g25565 +g25567 +S'ink' +p25569 +tp25570 +a(g25567 +g25569 +S'or' +p25571 +tp25572 +a(g25569 +g25571 +S'embroidery,' +p25573 +tp25574 +a(g25571 +g25573 +S'hence' +p25575 +tp25576 +a(g25573 +g25575 +S'the' +p25577 +tp25578 +a(g25575 +g25577 +S'term' +p25579 +tp25580 +a(g25577 +g25579 +S'"signature' +p25581 +tp25582 +a(g25579 +g25581 +S'quilt."' +p25583 +tp25584 +a(g25581 +g25583 +S'album' +p25585 +tp25586 +a(g25583 +g25585 +S'quilts' +p25587 +tp25588 +a(g25585 +g25587 +S'are' +p25589 +tp25590 +a(g25587 +g25589 +S'characterized' +p25591 +tp25592 +a(g25589 +g25591 +S'by' +p25593 +tp25594 +a(g25591 +g25593 +S'their' +p25595 +tp25596 +a(g25593 +g25595 +S'varied' +p25597 +tp25598 +a(g25595 +g25597 +S'designs;' +p25599 +tp25600 +a(g25597 +g25599 +S'here' +p25601 +tp25602 +a(g25599 +g25601 +S'floral' +p25603 +tp25604 +a(g25601 +g25603 +S'motifs' +p25605 +tp25606 +a(g25603 +g25605 +S'are' +p25607 +tp25608 +a(g25605 +g25607 +S'combined' +p25609 +tp25610 +a(g25607 +g25609 +S'with' +p25611 +tp25612 +a(g25609 +g25611 +S'animals,' +p25613 +tp25614 +a(g25611 +g25613 +S'birds,' +p25615 +tp25616 +a(g25613 +g25615 +S'and' +p25617 +tp25618 +a(g25615 +g25617 +S'even' +p25619 +tp25620 +a(g25617 +g25619 +S'a' +p25621 +tp25622 +a(g25619 +g25621 +S'horse' +p25623 +tp25624 +a(g25621 +g25623 +S'and' +p25625 +tp25626 +a(g25623 +g25625 +S'rider.' +p25627 +tp25628 +a(g25625 +g25627 +S'unity' +p25629 +tp25630 +a(g25627 +g25629 +S'depends' +p25631 +tp25632 +a(g25629 +g25631 +S'upon' +p25633 +tp25634 +a(g25631 +g25633 +S'compatibility' +p25635 +tp25636 +a(g25633 +g25635 +S'of' +p25637 +tp25638 +a(g25635 +g25637 +S'scale' +p25639 +tp25640 +a(g25637 +g25639 +S'and' +p25641 +tp25642 +a(g25639 +g25641 +S'harmony' +p25643 +tp25644 +a(g25641 +g25643 +S'of' +p25645 +tp25646 +a(g25643 +g25645 +S'color' +p25647 +tp25648 +a(g25645 +g25647 +S'as' +p25649 +tp25650 +a(g25647 +g25649 +S'well' +p25651 +tp25652 +a(g25649 +g25651 +S'as' +p25653 +tp25654 +a(g25651 +g25653 +S'upon' +p25655 +tp25656 +a(g25653 +g25655 +S'orderly' +p25657 +tp25658 +a(g25655 +g25657 +S'arrangement.' +p25659 +tp25660 +a(g25657 +g25659 +S'in' +p25661 +tp25662 +a(g25659 +g25661 +S'this' +p25663 +tp25664 +a(g25661 +g25663 +S'example,' +p25665 +tp25666 +a(g25663 +g25665 +S'the' +p25667 +tp25668 +a(g25665 +g25667 +S'most' +p25669 +tp25670 +a(g25667 +g25669 +S'complex' +p25671 +tp25672 +a(g25669 +g25671 +S'designs' +p25673 +tp25674 +a(g25671 +g25673 +S'have' +p25675 +tp25676 +a(g25673 +g25675 +S'been' +p25677 +tp25678 +a(g25675 +g25677 +S'placed' +p25679 +tp25680 +a(g25677 +g25679 +S'in' +p25681 +tp25682 +a(g25679 +g25681 +S'a' +p25683 +tp25684 +a(g25681 +g25683 +S'row' +p25685 +tp25686 +a(g25683 +g25685 +S'across' +p25687 +tp25688 +a(g25685 +g25687 +S'the' +p25689 +tp25690 +a(g25687 +g25689 +S'middle' +p25691 +tp25692 +a(g25689 +g25691 +S'of' +p25693 +tp25694 +a(g25691 +g25693 +S'the' +p25695 +tp25696 +a(g25693 +g25695 +S'quilt;' +p25697 +tp25698 +a(g25695 +g25697 +S'the' +p25699 +tp25700 +a(g25697 +g25699 +S'simpler' +p25701 +tp25702 +a(g25699 +g25701 +S'designs' +p25703 +tp25704 +a(g25701 +g25703 +S'are' +p25705 +tp25706 +a(g25703 +g25705 +S'at' +p25707 +tp25708 +a(g25705 +g25707 +S'top' +p25709 +tp25710 +a(g25707 +g25709 +S'and' +p25711 +tp25712 +a(g25709 +g25711 +S'bottom.' +p25713 +tp25714 +a(g25711 +g25713 +S'the' +p25715 +tp25716 +a(g25713 +g25715 +S'calico' +p25717 +tp25718 +a(g25715 +g25717 +S'neatly' +p25719 +tp25720 +a(g25717 +g25719 +S'frames' +p25721 +tp25722 +a(g25719 +g25721 +S'the' +p25723 +tp25724 +a(g25721 +g25723 +S'blocks' +p25725 +tp25726 +a(g25723 +g25725 +S'and' +p25727 +tp25728 +a(g25725 +g25727 +S'creates' +p25729 +tp25730 +a(g25727 +g25729 +S'a' +p25731 +tp25732 +a(g25729 +g25731 +S'lively' +p25733 +tp25734 +a(g25731 +g25733 +S'contrast' +p25735 +tp25736 +a(g25733 +g25735 +S'of' +p25737 +tp25738 +a(g25735 +g25737 +S'pattern' +p25739 +tp25740 +a(g25737 +g25739 +S'against' +p25741 +tp25742 +a(g25739 +g25741 +S'solid' +p25743 +tp25744 +a(g25741 +g25743 +S'colors.' +p25745 +tp25746 +a(g25743 +g25745 +S'album' +p25747 +tp25748 +a(g25745 +g25747 +S'quilts' +p25749 +tp25750 +a(g25747 +g25749 +S'such' +p25751 +tp25752 +a(g25749 +g25751 +S'as' +p25753 +tp25754 +a(g25751 +g25753 +S'this' +p25755 +tp25756 +a(g25753 +g25755 +S'one' +p25757 +tp25758 +a(g25755 +g25757 +S'are' +p25759 +tp25760 +a(g25757 +g25759 +S'records' +p25761 +tp25762 +a(g25759 +g25761 +S'of' +p25763 +tp25764 +a(g25761 +g25763 +S'cooperative' +p25765 +tp25766 +a(g25763 +g25765 +S'efforts' +p25767 +tp25768 +a(g25765 +g25767 +S'to' +p25769 +tp25770 +a(g25767 +g25769 +S'honor' +p25771 +tp25772 +a(g25769 +g25771 +S'a' +p25773 +tp25774 +a(g25771 +g25773 +S'recipient' +p25775 +tp25776 +a(g25773 +g25775 +S'or' +p25777 +tp25778 +a(g25775 +g25777 +S'to' +p25779 +tp25780 +a(g25777 +g25779 +S'commemorate' +p25781 +tp25782 +a(g25779 +g25781 +S'an' +p25783 +tp25784 +a(g25781 +g25783 +S'occasion;' +p25785 +tp25786 +a(g25783 +g25785 +S'in' +p25787 +tp25788 +a(g25785 +g25787 +S'their' +p25789 +tp25790 +a(g25787 +g25789 +S'workmanship,' +p25791 +tp25792 +a(g25789 +g25791 +S'patterns,' +p25793 +tp25794 +a(g25791 +g25793 +S'and' +p25795 +tp25796 +a(g25793 +g25795 +S'cultural' +p25797 +tp25798 +a(g25795 +g25797 +S'significance,' +p25799 +tp25800 +a(g25797 +g25799 +S'they' +p25801 +tp25802 +a(g25799 +g25801 +S'are' +p25803 +tp25804 +a(g25801 +g25803 +S'among' +p25805 +tp25806 +a(g25803 +g25805 +S'the' +p25807 +tp25808 +a(g25805 +g25807 +S'most' +p25809 +tp25810 +a(g25807 +g25809 +S'interesting' +p25811 +tp25812 +a(g25809 +g25811 +S'of' +p25813 +tp25814 +a(g25811 +g25813 +S'american' +p25815 +tp25816 +a(g25813 +g25815 +S'quilts.' +p25817 +tp25818 +a(g25815 +g25817 +S'along' +p25819 +tp25820 +a(g25817 +g25819 +S'with' +p25821 +tp25822 +a(g25819 +g25821 +S'pieced' +p25823 +tp25824 +a(g25821 +g25823 +S'quilts,' +p25825 +tp25826 +a(g25823 +g25825 +S'appliqué' +p25827 +tp25828 +a(g25825 +g25827 +S'quilts' +p25829 +tp25830 +a(g25827 +g25829 +S'were' +p25831 +tp25832 +a(g25829 +g25831 +S'popular.' +p25833 +tp25834 +a(g25831 +g25833 +S'in' +p25835 +tp25836 +a(g25833 +g25835 +S'appliqué' +p25837 +tp25838 +a(g25835 +g25837 +S'quilts,' +p25839 +tp25840 +a(g25837 +g25839 +S'each' +p25841 +tp25842 +a(g25839 +g25841 +S'element' +p25843 +tp25844 +a(g25841 +g25843 +S'of' +p25845 +tp25846 +a(g25843 +g25845 +S'the' +p25847 +tp25848 +a(g25845 +g25847 +S'design' +p25849 +tp25850 +a(g25847 +g25849 +S'was' +p25851 +tp25852 +a(g25849 +g25851 +S'cut' +p25853 +tp25854 +a(g25851 +g25853 +S'out,' +p25855 +tp25856 +a(g25853 +g25855 +S'the' +p25857 +tp25858 +a(g25855 +g25857 +S'edges' +p25859 +tp25860 +a(g25857 +g25859 +S'turned' +p25861 +tp25862 +a(g25859 +g25861 +S'under,' +p25863 +tp25864 +a(g25861 +g25863 +S'and' +p25865 +tp25866 +a(g25863 +g25865 +S'the' +p25867 +tp25868 +a(g25865 +g25867 +S'pieces' +p25869 +tp25870 +a(g25867 +g25869 +S'stitched' +p25871 +tp25872 +a(g25869 +g25871 +S'to' +p25873 +tp25874 +a(g25871 +g25873 +S'a' +p25875 +tp25876 +a(g25873 +g25875 +S'plain' +p25877 +tp25878 +a(g25875 +g25877 +S'backing,' +p25879 +tp25880 +a(g25877 +g25879 +S'usually' +p25881 +tp25882 +a(g25879 +g25881 +S'white' +p25883 +tp25884 +a(g25881 +g25883 +S'muslin.' +p25885 +tp25886 +a(g25883 +g25885 +S'this' +p25887 +tp25888 +a(g25885 +g25887 +S'method' +p25889 +tp25890 +a(g25887 +g25889 +S'provided' +p25891 +tp25892 +a(g25889 +g25891 +S'for' +p25893 +tp25894 +a(g25891 +g25893 +S'a' +p25895 +tp25896 +a(g25893 +g25895 +S'wide' +p25897 +tp25898 +a(g25895 +g25897 +S'range' +p25899 +tp25900 +a(g25897 +g25899 +S'of' +p25901 +tp25902 +a(g25899 +g25901 +S'decorative' +p25903 +tp25904 +a(g25901 +g25903 +S'patterns.' +p25905 +tp25906 +a(g25903 +g25905 +S'in' +p25907 +tp25908 +a(g25905 +g25907 +S'addition' +p25909 +tp25910 +a(g25907 +g25909 +S'to' +p25911 +tp25912 +a(g25909 +g25911 +S'geometric' +p25913 +tp25914 +a(g25911 +g25913 +S'designs,' +p25915 +tp25916 +a(g25913 +g25915 +S'elaborate' +p25917 +tp25918 +a(g25915 +g25917 +S'floral' +p25919 +tp25920 +a(g25917 +g25919 +S'motifs' +p25921 +tp25922 +a(g25919 +g25921 +S'were' +p25923 +tp25924 +a(g25921 +g25923 +S'prevalent.' +p25925 +tp25926 +a(g25923 +g25925 +S'here' +p25927 +tp25928 +a(g25925 +g25927 +S'is' +p25929 +tp25930 +a(g25927 +g25929 +S'a' +p25931 +tp25932 +a(g25929 +g25931 +S'meticulously' +p25933 +tp25934 +a(g25931 +g25933 +S'crafted' +p25935 +tp25936 +a(g25933 +g25935 +S'appliqué' +p25937 +tp25938 +a(g25935 +g25937 +S'quilt' +p25939 +tp25940 +a(g25937 +g25939 +S'with' +p25941 +tp25942 +a(g25939 +g25941 +S'decoration' +p25943 +tp25944 +a(g25941 +g25943 +S'based' +p25945 +tp25946 +a(g25943 +g25945 +S'on' +p25947 +tp25948 +a(g25945 +g25947 +S'a' +p25949 +tp25950 +a(g25947 +g25949 +S'rose' +p25951 +tp25952 +a(g25949 +g25951 +S'design,' +p25953 +tp25954 +a(g25951 +g25953 +S'a' +p25955 +tp25956 +a(g25953 +g25955 +S'common' +p25957 +tp25958 +a(g25955 +g25957 +S'motif' +p25959 +tp25960 +a(g25957 +g25959 +S'from' +p25961 +tp25962 +a(g25959 +g25961 +S'colonial' +p25963 +tp25964 +a(g25961 +g25963 +S'times' +p25965 +tp25966 +a(g25963 +g25965 +S'through' +p25967 +tp25968 +a(g25965 +g25967 +S'the' +p25969 +tp25970 +a(g25967 +g25969 +S'nineteenth' +p25971 +tp25972 +a(g25969 +g25971 +S'century.' +p25973 +tp25974 +a(g25971 +g25973 +S'brilliant' +p25975 +tp25976 +a(g25973 +g25975 +S'reds,' +p25977 +tp25978 +a(g25975 +g25977 +S'green,' +p25979 +tp25980 +a(g25977 +g25979 +S'and' +p25981 +tp25982 +a(g25979 +g25981 +S'yellows' +p25983 +tp25984 +a(g25981 +g25983 +S'contrast' +p25985 +tp25986 +a(g25983 +g25985 +S'vividly' +p25987 +tp25988 +a(g25985 +g25987 +S'with' +p25989 +tp25990 +a(g25987 +g25989 +S'the' +p25991 +tp25992 +a(g25989 +g25991 +S'white' +p25993 +tp25994 +a(g25991 +g25993 +S'background,' +p25995 +tp25996 +a(g25993 +g25995 +S'producing' +p25997 +tp25998 +a(g25995 +g25997 +S'a' +p25999 +tp26000 +a(g25997 +g25999 +S'decorative' +p26001 +tp26002 +a(g25999 +g26001 +S'effect' +p26003 +tp26004 +a(g26001 +g26003 +S'of' +p26005 +tp26006 +a(g26003 +g26005 +S'great' +p26007 +tp26008 +a(g26005 +g26007 +S'gaiety.' +p26009 +tp26010 +a(g26007 +g26009 +S'the' +p26011 +tp26012 +a(g26009 +g26011 +S'design' +p26013 +tp26014 +a(g26011 +g26013 +S'is' +p26015 +tp26016 +a(g26013 +g26015 +S'well' +p26017 +tp26018 +a(g26015 +g26017 +S'composed,' +p26019 +tp26020 +a(g26017 +g26019 +S'with' +p26021 +tp26022 +a(g26019 +g26021 +S'four' +p26023 +tp26024 +a(g26021 +g26023 +S'floral' +p26025 +tp26026 +a(g26023 +g26025 +S'groups' +p26027 +tp26028 +a(g26025 +g26027 +S'disposed' +p26029 +tp26030 +a(g26027 +g26029 +S'evenly' +p26031 +tp26032 +a(g26029 +g26031 +S'in' +p26033 +tp26034 +a(g26031 +g26033 +S'the' +p26035 +tp26036 +a(g26033 +g26035 +S'square' +p26037 +tp26038 +a(g26035 +g26037 +S'center,' +p26039 +tp26040 +a(g26037 +g26039 +S'or' +p26041 +tp26042 +a(g26039 +g26041 +S'field,' +p26043 +tp26044 +a(g26041 +g26043 +S'of' +p26045 +tp26046 +a(g26043 +g26045 +S'the' +p26047 +tp26048 +a(g26045 +g26047 +S'quilt.' +p26049 +tp26050 +a(g26047 +g26049 +S'a' +p26051 +tp26052 +a(g26049 +g26051 +S'paneled' +p26053 +tp26054 +a(g26051 +g26053 +S'effect' +p26055 +tp26056 +a(g26053 +g26055 +S'is' +p26057 +tp26058 +a(g26055 +g26057 +S'achieved' +p26059 +tp26060 +a(g26057 +g26059 +S'by' +p26061 +tp26062 +a(g26059 +g26061 +S'the' +p26063 +tp26064 +a(g26061 +g26063 +S'quilting' +p26065 +tp26066 +a(g26063 +g26065 +S'pattern' +p26067 +tp26068 +a(g26065 +g26067 +S'--' +p26069 +tp26070 +a(g26067 +g26069 +S'a' +p26071 +tp26072 +a(g26069 +g26071 +S'combination' +p26073 +tp26074 +a(g26071 +g26073 +S'of' +p26075 +tp26076 +a(g26073 +g26075 +S'shells' +p26077 +tp26078 +a(g26075 +g26077 +S'and' +p26079 +tp26080 +a(g26077 +g26079 +S'plumes' +p26081 +tp26082 +a(g26079 +g26081 +S'--' +p26083 +tp26084 +a(g26081 +g26083 +S'that' +p26085 +tp26086 +a(g26083 +g26085 +S'separates' +p26087 +tp26088 +a(g26085 +g26087 +S'the' +p26089 +tp26090 +a(g26087 +g26089 +S'floral' +p26091 +tp26092 +a(g26089 +g26091 +S'groups' +p26093 +tp26094 +a(g26091 +g26093 +S'and' +p26095 +tp26096 +a(g26093 +g26095 +S'defines' +p26097 +tp26098 +a(g26095 +g26097 +S'four' +p26099 +tp26100 +a(g26097 +g26099 +S'subsidiary' +p26101 +tp26102 +a(g26099 +g26101 +S'squares' +p26103 +tp26104 +a(g26101 +g26103 +S'in' +p26105 +tp26106 +a(g26103 +g26105 +S'the' +p26107 +tp26108 +a(g26105 +g26107 +S'field.' +p26109 +tp26110 +a(g26107 +g26109 +S'the' +p26111 +tp26112 +a(g26109 +g26111 +S'entire' +p26113 +tp26114 +a(g26111 +g26113 +S'field' +p26115 +tp26116 +a(g26113 +g26115 +S'is' +p26117 +tp26118 +a(g26115 +g26117 +S'surrounded' +p26119 +tp26120 +a(g26117 +g26119 +S'by' +p26121 +tp26122 +a(g26119 +g26121 +S'a' +p26123 +tp26124 +a(g26121 +g26123 +S'continuous' +p26125 +tp26126 +a(g26123 +g26125 +S'border' +p26127 +tp26128 +a(g26125 +g26127 +S'of' +p26129 +tp26130 +a(g26127 +g26129 +S'roses,' +p26131 +tp26132 +a(g26129 +g26131 +S'repeating' +p26133 +tp26134 +a(g26131 +g26133 +S'the' +p26135 +tp26136 +a(g26133 +g26135 +S'form' +p26137 +tp26138 +a(g26135 +g26137 +S'of' +p26139 +tp26140 +a(g26137 +g26139 +S'those' +p26141 +tp26142 +a(g26139 +g26141 +S'in' +p26143 +tp26144 +a(g26141 +g26143 +S'the' +p26145 +tp26146 +a(g26143 +g26145 +S'center.' +p26147 +tp26148 +a(g26145 +g26147 +S'the' +p26149 +tp26150 +a(g26147 +g26149 +S'fluid' +p26151 +tp26152 +a(g26149 +g26151 +S'curves' +p26153 +tp26154 +a(g26151 +g26153 +S'of' +p26155 +tp26156 +a(g26153 +g26155 +S'the' +p26157 +tp26158 +a(g26155 +g26157 +S'border' +p26159 +tp26160 +a(g26157 +g26159 +S'echo' +p26161 +tp26162 +a(g26159 +g26161 +S'the' +p26163 +tp26164 +a(g26161 +g26163 +S'scrolling' +p26165 +tp26166 +a(g26163 +g26165 +S'forms' +p26167 +tp26168 +a(g26165 +g26167 +S'of' +p26169 +tp26170 +a(g26167 +g26169 +S'the' +p26171 +tp26172 +a(g26169 +g26171 +S'central' +p26173 +tp26174 +a(g26171 +g26173 +S'flowers' +p26175 +tp26176 +a(g26173 +g26175 +S'and' +p26177 +tp26178 +a(g26175 +g26177 +S'of' +p26179 +tp26180 +a(g26177 +g26179 +S'the' +p26181 +tp26182 +a(g26179 +g26181 +S'background' +p26183 +tp26184 +a(g26181 +g26183 +S'quilting' +p26185 +tp26186 +a(g26183 +g26185 +S'as' +p26187 +tp26188 +a(g26185 +g26187 +S'well.' +p26189 +tp26190 +a(g26187 +g26189 +S'here,' +p26191 +tp26192 +a(g26189 +g26191 +S'appliqué' +p26193 +tp26194 +a(g26191 +g26193 +S'decoration' +p26195 +tp26196 +a(g26193 +g26195 +S'and' +p26197 +tp26198 +a(g26195 +g26197 +S'quilting' +p26199 +tp26200 +a(g26197 +g26199 +S'are' +p26201 +tp26202 +a(g26199 +g26201 +S'perfectly' +p26203 +tp26204 +a(g26201 +g26203 +S'balanced' +p26205 +tp26206 +a(g26203 +g26205 +S'to' +p26207 +tp26208 +a(g26205 +g26207 +S'create' +p26209 +tp26210 +a(g26207 +g26209 +S'a' +p26211 +tp26212 +a(g26209 +g26211 +S'design' +p26213 +tp26214 +a(g26211 +g26213 +S'of' +p26215 +tp26216 +a(g26213 +g26215 +S'outstanding' +p26217 +tp26218 +a(g26215 +g26217 +S'decorative' +p26219 +tp26220 +a(g26217 +g26219 +S'interest.' +p26221 +tp26222 +a(g26219 +g26221 +S'a' +p26223 +tp26224 +a(g26221 +g26223 +S'few' +p26225 +tp26226 +a(g26223 +g26225 +S'of' +p26227 +tp26228 +a(g26225 +g26227 +S'the' +p26229 +tp26230 +a(g26227 +g26229 +S'national' +p26231 +tp26232 +a(g26229 +g26231 +S"gallery's" +p26233 +tp26234 +a(g26231 +g26233 +S'sculptures' +p26235 +tp26236 +a(g26233 +g26235 +S'were' +p26237 +tp26238 +a(g26235 +g26237 +S'conceived' +p26239 +tp26240 +a(g26237 +g26239 +S'for' +p26241 +tp26242 +a(g26239 +g26241 +S'display' +p26243 +tp26244 +a(g26241 +g26243 +S'outdoors;' +p26245 +tp26246 +a(g26243 +g26245 +S'one' +p26247 +tp26248 +a(g26245 +g26247 +S'of' +p26249 +tp26250 +a(g26247 +g26249 +S'the' +p26251 +tp26252 +a(g26249 +g26251 +S'finest' +p26253 +tp26254 +a(g26251 +g26253 +S'such' +p26255 +tp26256 +a(g26253 +g26255 +S'works' +p26257 +tp26258 +a(g26255 +g26257 +S'is' +p26259 +tp26260 +a(g26257 +g26259 +S'this' +p26261 +tp26262 +a(g26259 +g26261 +S'in' +p26263 +tp26264 +a(g26261 +g26263 +S'classical' +p26265 +tp26266 +a(g26263 +g26265 +S'mythology' +p26267 +tp26268 +a(g26265 +g26267 +S'diana' +p26269 +tp26270 +a(g26267 +g26269 +S'was' +p26271 +tp26272 +a(g26269 +g26271 +S'goddess' +p26273 +tp26274 +a(g26271 +g26273 +S'of' +p26275 +tp26276 +a(g26273 +g26275 +S'the' +p26277 +tp26278 +a(g26275 +g26277 +S'moon' +p26279 +tp26280 +a(g26277 +g26279 +S'and' +p26281 +tp26282 +a(g26279 +g26281 +S'of' +p26283 +tp26284 +a(g26281 +g26283 +S'the' +p26285 +tp26286 +a(g26283 +g26285 +S'hunt.' +p26287 +tp26288 +a(g26285 +g26287 +S'her' +p26289 +tp26290 +a(g26287 +g26289 +S'woodland' +p26291 +tp26292 +a(g26289 +g26291 +S'companions' +p26293 +tp26294 +a(g26291 +g26293 +S'were' +p26295 +tp26296 +a(g26293 +g26295 +S'nymphs' +p26297 +tp26298 +a(g26295 +g26297 +S'like' +p26299 +tp26300 +a(g26297 +g26299 +S'this' +p26301 +tp26302 +a(g26299 +g26301 +S'one,' +p26303 +tp26304 +a(g26301 +g26303 +S'appropriate' +p26305 +tp26306 +a(g26303 +g26305 +S'denizens' +p26307 +tp26308 +a(g26305 +g26307 +S'for' +p26309 +tp26310 +a(g26307 +g26309 +S'a' +p26311 +tp26312 +a(g26309 +g26311 +S'royal' +p26313 +tp26314 +a(g26311 +g26313 +S'hunting' +p26315 +tp26316 +a(g26313 +g26315 +S'preserve.' +p26317 +tp26318 +a(g26315 +g26317 +S"lemoyne's" +p26319 +tp26320 +a(g26317 +g26319 +S'with' +p26321 +tp26322 +a(g26319 +g26321 +S'a' +p26323 +tp26324 +a(g26321 +g26323 +S'dancing' +p26325 +tp26326 +a(g26323 +g26325 +S'step,' +p26327 +tp26328 +a(g26325 +g26327 +S'the' +p26329 +tp26330 +a(g26327 +g26329 +S'girl' +p26331 +tp26332 +a(g26329 +g26331 +S'seems' +p26333 +tp26334 +a(g26331 +g26333 +S'barely' +p26335 +tp26336 +a(g26333 +g26335 +S'to' +p26337 +tp26338 +a(g26335 +g26337 +S'touch' +p26339 +tp26340 +a(g26337 +g26339 +S'the' +p26341 +tp26342 +a(g26339 +g26341 +S'ground' +p26343 +tp26344 +a(g26341 +g26343 +S'as' +p26345 +tp26346 +a(g26343 +g26345 +S'she' +p26347 +tp26348 +a(g26345 +g26347 +S'lifts' +p26349 +tp26350 +a(g26347 +g26349 +S'the' +p26351 +tp26352 +a(g26349 +g26351 +S'leash' +p26353 +tp26354 +a(g26351 +g26353 +S'to' +p26355 +tp26356 +a(g26353 +g26355 +S'signal' +p26357 +tp26358 +a(g26355 +g26357 +S'the' +p26359 +tp26360 +a(g26357 +g26359 +S'beginning' +p26361 +tp26362 +a(g26359 +g26361 +S'of' +p26363 +tp26364 +a(g26361 +g26363 +S'the' +p26365 +tp26366 +a(g26363 +g26365 +S'chase.' +p26367 +tp26368 +a(g26365 +g26367 +S'in' +p26369 +tp26370 +a(g26367 +g26369 +S'amusement' +p26371 +tp26372 +a(g26369 +g26371 +S'and' +p26373 +tp26374 +a(g26371 +g26373 +S'affection' +p26375 +tp26376 +a(g26373 +g26375 +S'she' +p26377 +tp26378 +a(g26375 +g26377 +S'smiles' +p26379 +tp26380 +a(g26377 +g26379 +S'down' +p26381 +tp26382 +a(g26379 +g26381 +S'at' +p26383 +tp26384 +a(g26381 +g26383 +S'her' +p26385 +tp26386 +a(g26383 +g26385 +S'hound' +p26387 +tp26388 +a(g26385 +g26387 +S'and,' +p26389 +tp26390 +a(g26387 +g26389 +S'incidentally' +p26391 +tp26392 +a(g26389 +g26391 +S'at' +p26393 +tp26394 +a(g26391 +g26393 +S'the' +p26395 +tp26396 +a(g26393 +g26395 +S'viewer,' +p26397 +tp26398 +a(g26395 +g26397 +S'who' +p26399 +tp26400 +a(g26397 +g26399 +S'would' +p26401 +tp26402 +a(g26399 +g26401 +S'have' +p26403 +tp26404 +a(g26401 +g26403 +S'seen' +p26405 +tp26406 +a(g26403 +g26405 +S'her' +p26407 +tp26408 +a(g26405 +g26407 +S'on' +p26409 +tp26410 +a(g26407 +g26409 +S'a' +p26411 +tp26412 +a(g26409 +g26411 +S'high' +p26413 +tp26414 +a(g26411 +g26413 +S'pedestal.' +p26415 +tp26416 +a(g26413 +g26415 +S'mino' +p26417 +tp26418 +a(g26415 +g26417 +S'da' +p26419 +tp26420 +a(g26417 +g26419 +S'fiesole' +p26421 +tp26422 +a(g26419 +g26421 +S'and' +p26423 +tp26424 +a(g26421 +g26423 +S'his' +p26425 +tp26426 +a(g26423 +g26425 +S'patrons,' +p26427 +tp26428 +a(g26425 +g26427 +S'the' +p26429 +tp26430 +a(g26427 +g26429 +S'medici' +p26431 +tp26432 +a(g26429 +g26431 +S'family' +p26433 +tp26434 +a(g26431 +g26433 +S'of' +p26435 +tp26436 +a(g26433 +g26435 +S'florence,' +p26437 +tp26438 +a(g26435 +g26437 +S'were' +p26439 +tp26440 +a(g26437 +g26439 +S'pioneers' +p26441 +tp26442 +a(g26439 +g26441 +S'in' +p26443 +tp26444 +a(g26441 +g26443 +S'the' +p26445 +tp26446 +a(g26443 +g26445 +S'revival' +p26447 +tp26448 +a(g26445 +g26447 +S'of' +p26449 +tp26450 +a(g26447 +g26449 +S'an' +p26451 +tp26452 +a(g26449 +g26451 +S'ancient' +p26453 +tp26454 +a(g26451 +g26453 +S'roman' +p26455 +tp26456 +a(g26453 +g26455 +S'art' +p26457 +tp26458 +a(g26455 +g26457 +S'form—the' +p26459 +tp26460 +a(g26457 +g26459 +S'independent' +p26461 +tp26462 +a(g26459 +g26461 +S'portrait' +p26463 +tp26464 +a(g26461 +g26463 +S'bust.' +p26465 +tp26466 +a(g26463 +g26465 +S'the' +p26467 +tp26468 +a(g26465 +g26467 +S'subject' +p26469 +tp26470 +a(g26467 +g26469 +S'of' +p26471 +tp26472 +a(g26469 +g26471 +S'this' +p26473 +tp26474 +a(g26471 +g26473 +S'work,' +p26475 +tp26476 +a(g26473 +g26475 +S'astorgio' +p26477 +tp26478 +a(g26475 +g26477 +S'manfredi,' +p26479 +tp26480 +a(g26477 +g26479 +S'was' +p26481 +tp26482 +a(g26479 +g26481 +S'a' +p26483 +tp26484 +a(g26481 +g26483 +S'manfredi' +p26485 +tp26486 +a(g26483 +g26485 +S'is' +p26487 +tp26488 +a(g26485 +g26487 +S'depicted' +p26489 +tp26490 +a(g26487 +g26489 +S'as' +p26491 +tp26492 +a(g26489 +g26491 +S'a' +p26493 +tp26494 +a(g26491 +g26493 +S'man' +p26495 +tp26496 +a(g26493 +g26495 +S'of' +p26497 +tp26498 +a(g26495 +g26497 +S'action.' +p26499 +tp26500 +a(g26497 +g26499 +S'with' +p26501 +tp26502 +a(g26499 +g26501 +S'deeply' +p26503 +tp26504 +a(g26501 +g26503 +S'incised' +p26505 +tp26506 +a(g26503 +g26505 +S'eyes' +p26507 +tp26508 +a(g26505 +g26507 +S'set' +p26509 +tp26510 +a(g26507 +g26509 +S'beneath' +p26511 +tp26512 +a(g26509 +g26511 +S'a' +p26513 +tp26514 +a(g26511 +g26513 +S'furrowed' +p26515 +tp26516 +a(g26513 +g26515 +S'brow,' +p26517 +tp26518 +a(g26515 +g26517 +S'he' +p26519 +tp26520 +a(g26517 +g26519 +S'gazes' +p26521 +tp26522 +a(g26519 +g26521 +S'intently' +p26523 +tp26524 +a(g26521 +g26523 +S'into' +p26525 +tp26526 +a(g26523 +g26525 +S'the' +p26527 +tp26528 +a(g26525 +g26527 +S'distance.' +p26529 +tp26530 +a(g26527 +g26529 +S'his' +p26531 +tp26532 +a(g26529 +g26531 +S'face' +p26533 +tp26534 +a(g26531 +g26533 +S'sags' +p26535 +tp26536 +a(g26533 +g26535 +S'softly' +p26537 +tp26538 +a(g26535 +g26537 +S'under' +p26539 +tp26540 +a(g26537 +g26539 +S'his' +p26541 +tp26542 +a(g26539 +g26541 +S'chin;' +p26543 +tp26544 +a(g26541 +g26543 +S'deep' +p26545 +tp26546 +a(g26543 +g26545 +S'vertical' +p26547 +tp26548 +a(g26545 +g26547 +S'folds' +p26549 +tp26550 +a(g26547 +g26549 +S'cut' +p26551 +tp26552 +a(g26549 +g26551 +S'into' +p26553 +tp26554 +a(g26551 +g26553 +S'the' +p26555 +tp26556 +a(g26553 +g26555 +S'flesh' +p26557 +tp26558 +a(g26555 +g26557 +S'of' +p26559 +tp26560 +a(g26557 +g26559 +S'his' +p26561 +tp26562 +a(g26559 +g26561 +S'cheeks.' +p26563 +tp26564 +a(g26561 +g26563 +S'over' +p26565 +tp26566 +a(g26563 +g26565 +S'a' +p26567 +tp26568 +a(g26565 +g26567 +S'shirt' +p26569 +tp26570 +a(g26567 +g26569 +S'of' +p26571 +tp26572 +a(g26569 +g26571 +S'intricately' +p26573 +tp26574 +a(g26571 +g26573 +S'carved' +p26575 +tp26576 +a(g26573 +g26575 +S'chain' +p26577 +tp26578 +a(g26575 +g26577 +S'mail,' +p26579 +tp26580 +a(g26577 +g26579 +S'manfredi' +p26581 +tp26582 +a(g26579 +g26581 +S'wears' +p26583 +tp26584 +a(g26581 +g26583 +S'a' +p26585 +tp26586 +a(g26583 +g26585 +S'richly' +p26587 +tp26588 +a(g26585 +g26587 +S'embossed' +p26589 +tp26590 +a(g26587 +g26589 +S'breastplate.' +p26591 +tp26592 +a(g26589 +g26591 +S'an' +p26593 +tp26594 +a(g26591 +g26593 +S'inscription' +p26595 +tp26596 +a(g26593 +g26595 +S'on' +p26597 +tp26598 +a(g26595 +g26597 +S'the' +p26599 +tp26600 +a(g26597 +g26599 +S'underside' +p26601 +tp26602 +a(g26599 +g26601 +S'of' +p26603 +tp26604 +a(g26601 +g26603 +S'the' +p26605 +tp26606 +a(g26603 +g26605 +S'work—one' +p26607 +tp26608 +a(g26605 +g26607 +S'of' +p26609 +tp26610 +a(g26607 +g26609 +S'the' +p26611 +tp26612 +a(g26609 +g26611 +S'earliest' +p26613 +tp26614 +a(g26611 +g26613 +S'to' +p26615 +tp26616 +a(g26613 +g26615 +S'be' +p26617 +tp26618 +a(g26615 +g26617 +S'found' +p26619 +tp26620 +a(g26617 +g26619 +S'on' +p26621 +tp26622 +a(g26619 +g26621 +S'a' +p26623 +tp26624 +a(g26621 +g26623 +S'renaissance' +p26625 +tp26626 +a(g26623 +g26625 +S'portrait' +p26627 +tp26628 +a(g26625 +g26627 +S'bust—identifies' +p26629 +tp26630 +a(g26627 +g26629 +S'the' +p26631 +tp26632 +a(g26629 +g26631 +S'sitter,' +p26633 +tp26634 +a(g26631 +g26633 +S'artist,' +p26635 +tp26636 +a(g26633 +g26635 +S'and' +p26637 +tp26638 +a(g26635 +g26637 +S'date' +p26639 +tp26640 +a(g26637 +g26639 +S'of' +p26641 +tp26642 +a(g26639 +g26641 +S'completion:' +p26643 +tp26644 +a(g26641 +g26643 +S'astorgivs.' +p26645 +tp26646 +a(g26643 +g26645 +S'manfredvs.' +p26647 +tp26648 +a(g26645 +g26647 +S'secvndvs.' +p26649 +tp26650 +a(g26647 +g26649 +S'faventie.' +p26651 +tp26652 +a(g26649 +g26651 +S'dominvs./' +p26653 +tp26654 +a(g26651 +g26653 +S'anno.' +p26655 +tp26656 +a(g26653 +g26655 +S'xlii.' +p26657 +tp26658 +a(g26655 +g26657 +S'etatis' +p26659 +tp26660 +a(g26657 +g26659 +S'sve./' +p26661 +tp26662 +a(g26659 +g26661 +S'1455./' +p26663 +tp26664 +a(g26661 +g26663 +S'opvs.' +p26665 +tp26666 +a(g26663 +g26665 +S'nini.' +p26667 +tp26668 +a(g26665 +g26667 +S'(“astorgio' +p26669 +tp26670 +a(g26667 +g26669 +S'ii' +p26671 +tp26672 +a(g26669 +g26671 +S'manfredi,' +p26673 +tp26674 +a(g26671 +g26673 +S'lord' +p26675 +tp26676 +a(g26673 +g26675 +S'of' +p26677 +tp26678 +a(g26675 +g26677 +S'faenza,' +p26679 +tp26680 +a(g26677 +g26679 +S'in' +p26681 +tp26682 +a(g26679 +g26681 +S'the' +p26683 +tp26684 +a(g26681 +g26683 +S'42nd' +p26685 +tp26686 +a(g26683 +g26685 +S'year' +p26687 +tp26688 +a(g26685 +g26687 +S'of' +p26689 +tp26690 +a(g26687 +g26689 +S'his' +p26691 +tp26692 +a(g26689 +g26691 +S'age,' +p26693 +tp26694 +a(g26691 +g26693 +S'1455,' +p26695 +tp26696 +a(g26693 +g26695 +S'the' +p26697 +tp26698 +a(g26695 +g26697 +S'work' +p26699 +tp26700 +a(g26697 +g26699 +S'of' +p26701 +tp26702 +a(g26699 +g26701 +S'nino.”)' +p26703 +tp26704 +a(g26701 +g26703 +S'the' +p26705 +tp26706 +a(g26703 +g26705 +S'spelling' +p26707 +tp26708 +a(g26705 +g26707 +S'here' +p26709 +tp26710 +a(g26707 +g26709 +S'of' +p26711 +tp26712 +a(g26709 +g26711 +S'mino’s' +p26713 +tp26714 +a(g26711 +g26713 +S'name' +p26715 +tp26716 +a(g26713 +g26715 +S'as' +p26717 +tp26718 +a(g26715 +g26717 +S'nino' +p26719 +tp26720 +a(g26717 +g26719 +S'remains' +p26721 +tp26722 +a(g26719 +g26721 +S'unexplained.' +p26723 +tp26724 +a(g26721 +g26723 +S'in' +p26725 +tp26726 +a(g26723 +g26725 +S'colonial' +p26727 +tp26728 +a(g26725 +g26727 +S'times,' +p26729 +tp26730 +a(g26727 +g26729 +S'the' +p26731 +tp26732 +a(g26729 +g26731 +S'home' +p26733 +tp26734 +a(g26731 +g26733 +S'was' +p26735 +tp26736 +a(g26733 +g26735 +S'the' +p26737 +tp26738 +a(g26735 +g26737 +S'center' +p26739 +tp26740 +a(g26737 +g26739 +S'of' +p26741 +tp26742 +a(g26739 +g26741 +S'textile' +p26743 +tp26744 +a(g26741 +g26743 +S'production,' +p26745 +tp26746 +a(g26743 +g26745 +S'which' +p26747 +tp26748 +a(g26745 +g26747 +S'began' +p26749 +tp26750 +a(g26747 +g26749 +S'with' +p26751 +tp26752 +a(g26749 +g26751 +S'the' +p26753 +tp26754 +a(g26751 +g26753 +S'sowing' +p26755 +tp26756 +a(g26753 +g26755 +S'of' +p26757 +tp26758 +a(g26755 +g26757 +S'seed' +p26759 +tp26760 +a(g26757 +g26759 +S'for' +p26761 +tp26762 +a(g26759 +g26761 +S'flax' +p26763 +tp26764 +a(g26761 +g26763 +S'and' +p26765 +tp26766 +a(g26763 +g26765 +S'the' +p26767 +tp26768 +a(g26765 +g26767 +S'raising' +p26769 +tp26770 +a(g26767 +g26769 +S'of' +p26771 +tp26772 +a(g26769 +g26771 +S'sheep' +p26773 +tp26774 +a(g26771 +g26773 +S'for' +p26775 +tp26776 +a(g26773 +g26775 +S'wool.' +p26777 +tp26778 +a(g26775 +g26777 +S'long' +p26779 +tp26780 +a(g26777 +g26779 +S'hours' +p26781 +tp26782 +a(g26779 +g26781 +S'were' +p26783 +tp26784 +a(g26781 +g26783 +S'spent' +p26785 +tp26786 +a(g26783 +g26785 +S'in' +p26787 +tp26788 +a(g26785 +g26787 +S'preparing' +p26789 +tp26790 +a(g26787 +g26789 +S'the' +p26791 +tp26792 +a(g26789 +g26791 +S'fibers,' +p26793 +tp26794 +a(g26791 +g26793 +S'spinning' +p26795 +tp26796 +a(g26793 +g26795 +S'them' +p26797 +tp26798 +a(g26795 +g26797 +S'into' +p26799 +tp26800 +a(g26797 +g26799 +S'yarn,' +p26801 +tp26802 +a(g26799 +g26801 +S'dyeing' +p26803 +tp26804 +a(g26801 +g26803 +S'or' +p26805 +tp26806 +a(g26803 +g26805 +S'bleaching' +p26807 +tp26808 +a(g26805 +g26807 +S'the' +p26809 +tp26810 +a(g26807 +g26809 +S'yarn,' +p26811 +tp26812 +a(g26809 +g26811 +S'and' +p26813 +tp26814 +a(g26811 +g26813 +S'then' +p26815 +tp26816 +a(g26813 +g26815 +S'weaving' +p26817 +tp26818 +a(g26815 +g26817 +S'the' +p26819 +tp26820 +a(g26817 +g26819 +S'fabrics' +p26821 +tp26822 +a(g26819 +g26821 +S'needed' +p26823 +tp26824 +a(g26821 +g26823 +S'to' +p26825 +tp26826 +a(g26823 +g26825 +S'clothe' +p26827 +tp26828 +a(g26825 +g26827 +S'family' +p26829 +tp26830 +a(g26827 +g26829 +S'members' +p26831 +tp26832 +a(g26829 +g26831 +S'and' +p26833 +tp26834 +a(g26831 +g26833 +S'to' +p26835 +tp26836 +a(g26833 +g26835 +S'provide' +p26837 +tp26838 +a(g26835 +g26837 +S'the' +p26839 +tp26840 +a(g26837 +g26839 +S'basic' +p26841 +tp26842 +a(g26839 +g26841 +S'material' +p26843 +tp26844 +a(g26841 +g26843 +S'for' +p26845 +tp26846 +a(g26843 +g26845 +S'bedding' +p26847 +tp26848 +a(g26845 +g26847 +S'and' +p26849 +tp26850 +a(g26847 +g26849 +S'other' +p26851 +tp26852 +a(g26849 +g26851 +S'household' +p26853 +tp26854 +a(g26851 +g26853 +S'articles.' +p26855 +tp26856 +a(g26853 +g26855 +S'home-woven' +p26857 +tp26858 +a(g26855 +g26857 +S'fabrics,' +p26859 +tp26860 +a(g26857 +g26859 +S'like' +p26861 +tp26862 +a(g26859 +g26861 +S'this' +p26863 +tp26864 +a(g26861 +g26863 +S'piece' +p26865 +tp26866 +a(g26863 +g26865 +S'of' +p26867 +tp26868 +a(g26865 +g26867 +S'linen,' +p26869 +tp26870 +a(g26867 +g26869 +S'were' +p26871 +tp26872 +a(g26869 +g26871 +S'called' +p26873 +tp26874 +a(g26871 +g26873 +S'homespun,' +p26875 +tp26876 +a(g26873 +g26875 +S'and' +p26877 +tp26878 +a(g26875 +g26877 +S'were' +p26879 +tp26880 +a(g26877 +g26879 +S'generally' +p26881 +tp26882 +a(g26879 +g26881 +S'plain' +p26883 +tp26884 +a(g26881 +g26883 +S'in' +p26885 +tp26886 +a(g26883 +g26885 +S'weave.' +p26887 +tp26888 +a(g26885 +g26887 +S'although' +p26889 +tp26890 +a(g26887 +g26889 +S'early' +p26891 +tp26892 +a(g26889 +g26891 +S'fabrics' +p26893 +tp26894 +a(g26891 +g26893 +S'were' +p26895 +tp26896 +a(g26893 +g26895 +S'often' +p26897 +tp26898 +a(g26895 +g26897 +S'of' +p26899 +tp26900 +a(g26897 +g26899 +S'only' +p26901 +tp26902 +a(g26899 +g26901 +S'one' +p26903 +tp26904 +a(g26901 +g26903 +S'color' +p26905 +tp26906 +a(g26903 +g26905 +S'--' +p26907 +tp26908 +a(g26905 +g26907 +S'being' +p26909 +tp26910 +a(g26907 +g26909 +S'woven' +p26911 +tp26912 +a(g26909 +g26911 +S'from' +p26913 +tp26914 +a(g26911 +g26913 +S'either' +p26915 +tp26916 +a(g26913 +g26915 +S'bleached' +p26917 +tp26918 +a(g26915 +g26917 +S'linen' +p26919 +tp26920 +a(g26917 +g26919 +S'or' +p26921 +tp26922 +a(g26919 +g26921 +S'wool,' +p26923 +tp26924 +a(g26921 +g26923 +S'or' +p26925 +tp26926 +a(g26923 +g26925 +S'from' +p26927 +tp26928 +a(g26925 +g26927 +S'yarns' +p26929 +tp26930 +a(g26927 +g26929 +S'dyed' +p26931 +tp26932 +a(g26929 +g26931 +S'with' +p26933 +tp26934 +a(g26931 +g26933 +S'colors' +p26935 +tp26936 +a(g26933 +g26935 +S'derived' +p26937 +tp26938 +a(g26935 +g26937 +S'from' +p26939 +tp26940 +a(g26937 +g26939 +S'common' +p26941 +tp26942 +a(g26939 +g26941 +S'garden' +p26943 +tp26944 +a(g26941 +g26943 +S'plants' +p26945 +tp26946 +a(g26943 +g26945 +S'and' +p26947 +tp26948 +a(g26945 +g26947 +S'trees' +p26949 +tp26950 +a(g26947 +g26949 +S'--' +p26951 +tp26952 +a(g26949 +g26951 +S'some' +p26953 +tp26954 +a(g26951 +g26953 +S'american' +p26955 +tp26956 +a(g26953 +g26955 +S'women' +p26957 +tp26958 +a(g26955 +g26957 +S'enlivened' +p26959 +tp26960 +a(g26957 +g26959 +S'their' +p26961 +tp26962 +a(g26959 +g26961 +S'products' +p26963 +tp26964 +a(g26961 +g26963 +S'by' +p26965 +tp26966 +a(g26963 +g26965 +S'using' +p26967 +tp26968 +a(g26965 +g26967 +S'combinations' +p26969 +tp26970 +a(g26967 +g26969 +S'of' +p26971 +tp26972 +a(g26969 +g26971 +S'colored' +p26973 +tp26974 +a(g26971 +g26973 +S'yarns' +p26975 +tp26976 +a(g26973 +g26975 +S'to' +p26977 +tp26978 +a(g26975 +g26977 +S'produce' +p26979 +tp26980 +a(g26977 +g26979 +S'handsome' +p26981 +tp26982 +a(g26979 +g26981 +S'designs.' +p26983 +tp26984 +a(g26981 +g26983 +S'simple' +p26985 +tp26986 +a(g26983 +g26985 +S'geometric' +p26987 +tp26988 +a(g26985 +g26987 +S'patterns' +p26989 +tp26990 +a(g26987 +g26989 +S'could' +p26991 +tp26992 +a(g26989 +g26991 +S'be' +p26993 +tp26994 +a(g26991 +g26993 +S'created' +p26995 +tp26996 +a(g26993 +g26995 +S'on' +p26997 +tp26998 +a(g26995 +g26997 +S'home' +p26999 +tp27000 +a(g26997 +g26999 +S'looms;' +p27001 +tp27002 +a(g26999 +g27001 +S'thus,' +p27003 +tp27004 +a(g27001 +g27003 +S'striped' +p27005 +tp27006 +a(g27003 +g27005 +S'or' +p27007 +tp27008 +a(g27005 +g27007 +S'checked' +p27009 +tp27010 +a(g27007 +g27009 +S'designs,' +p27011 +tp27012 +a(g27009 +g27011 +S'as' +p27013 +tp27014 +a(g27011 +g27013 +S'seen' +p27015 +tp27016 +a(g27013 +g27015 +S'here,' +p27017 +tp27018 +a(g27015 +g27017 +S'are' +p27019 +tp27020 +a(g27017 +g27019 +S'a' +p27021 +tp27022 +a(g27019 +g27021 +S'common' +p27023 +tp27024 +a(g27021 +g27023 +S'feature' +p27025 +tp27026 +a(g27023 +g27025 +S'of' +p27027 +tp27028 +a(g27025 +g27027 +S'homespun' +p27029 +tp27030 +a(g27027 +g27029 +S'fabric.' +p27031 +tp27032 +a(g27029 +g27031 +S'although' +p27033 +tp27034 +a(g27031 +g27033 +S'american' +p27035 +tp27036 +a(g27033 +g27035 +S'women' +p27037 +tp27038 +a(g27035 +g27037 +S'continued' +p27039 +tp27040 +a(g27037 +g27039 +S'to' +p27041 +tp27042 +a(g27039 +g27041 +S'weave' +p27043 +tp27044 +a(g27041 +g27043 +S'articles' +p27045 +tp27046 +a(g27043 +g27045 +S'for' +p27047 +tp27048 +a(g27045 +g27047 +S'their' +p27049 +tp27050 +a(g27047 +g27049 +S'families,' +p27051 +tp27052 +a(g27049 +g27051 +S'by' +p27053 +tp27054 +a(g27051 +g27053 +S'the' +p27055 +tp27056 +a(g27053 +g27055 +S'late' +p27057 +tp27058 +a(g27055 +g27057 +S'colonial' +p27059 +tp27060 +a(g27057 +g27059 +S'period,' +p27061 +tp27062 +a(g27059 +g27061 +S'much' +p27063 +tp27064 +a(g27061 +g27063 +S'weaving' +p27065 +tp27066 +a(g27063 +g27065 +S'was' +p27067 +tp27068 +a(g27065 +g27067 +S'done' +p27069 +tp27070 +a(g27067 +g27069 +S'by' +p27071 +tp27072 +a(g27069 +g27071 +S'itinerant' +p27073 +tp27074 +a(g27071 +g27073 +S'professional' +p27075 +tp27076 +a(g27073 +g27075 +S'weavers.' +p27077 +tp27078 +a(g27075 +g27077 +S'woven' +p27079 +tp27080 +a(g27077 +g27079 +S'coverlets,' +p27081 +tp27082 +a(g27079 +g27081 +S'or' +p27083 +tp27084 +a(g27081 +g27083 +S'bed' +p27085 +tp27086 +a(g27083 +g27085 +S'coverings,' +p27087 +tp27088 +a(g27085 +g27087 +S'were,' +p27089 +tp27090 +a(g27087 +g27089 +S'perhaps,' +p27091 +tp27092 +a(g27089 +g27091 +S'the' +p27093 +tp27094 +a(g27091 +g27093 +S'most' +p27095 +tp27096 +a(g27093 +g27095 +S'handsome' +p27097 +tp27098 +a(g27095 +g27097 +S'products' +p27099 +tp27100 +a(g27097 +g27099 +S'of' +p27101 +tp27102 +a(g27099 +g27101 +S'both' +p27103 +tp27104 +a(g27101 +g27103 +S'the' +p27105 +tp27106 +a(g27103 +g27105 +S'housewives' +p27107 +tp27108 +a(g27105 +g27107 +S'and' +p27109 +tp27110 +a(g27107 +g27109 +S'the' +p27111 +tp27112 +a(g27109 +g27111 +S'journeymen' +p27113 +tp27114 +a(g27111 +g27113 +S'weavers.' +p27115 +tp27116 +a(g27113 +g27115 +S'from' +p27117 +tp27118 +a(g27115 +g27117 +S'the' +p27119 +tp27120 +a(g27117 +g27119 +S'late' +p27121 +tp27122 +a(g27119 +g27121 +S'seventeenth' +p27123 +tp27124 +a(g27121 +g27123 +S'century' +p27125 +tp27126 +a(g27123 +g27125 +S'until' +p27127 +tp27128 +a(g27125 +g27127 +S'about' +p27129 +tp27130 +a(g27127 +g27129 +S'1850,' +p27131 +tp27132 +a(g27129 +g27131 +S'overshot' +p27133 +tp27134 +a(g27131 +g27133 +S'coverlets' +p27135 +tp27136 +a(g27133 +g27135 +S'like' +p27137 +tp27138 +a(g27135 +g27137 +S'this' +p27139 +tp27140 +a(g27137 +g27139 +S'example' +p27141 +tp27142 +a(g27139 +g27141 +S'were' +p27143 +tp27144 +a(g27141 +g27143 +S'popular.' +p27145 +tp27146 +a(g27143 +g27145 +S'the' +p27147 +tp27148 +a(g27145 +g27147 +S'overshot' +p27149 +tp27150 +a(g27147 +g27149 +S'weave' +p27151 +tp27152 +a(g27149 +g27151 +S'was' +p27153 +tp27154 +a(g27151 +g27153 +S'relatively' +p27155 +tp27156 +a(g27153 +g27155 +S'simple,' +p27157 +tp27158 +a(g27155 +g27157 +S'though' +p27159 +tp27160 +a(g27157 +g27159 +S'more' +p27161 +tp27162 +a(g27159 +g27161 +S'complex' +p27163 +tp27164 +a(g27161 +g27163 +S'than' +p27165 +tp27166 +a(g27163 +g27165 +S'the' +p27167 +tp27168 +a(g27165 +g27167 +S'plain' +p27169 +tp27170 +a(g27167 +g27169 +S'homespun' +p27171 +tp27172 +a(g27169 +g27171 +S'weave.' +p27173 +tp27174 +a(g27171 +g27173 +S'there' +p27175 +tp27176 +a(g27173 +g27175 +S'was' +p27177 +tp27178 +a(g27175 +g27177 +S'one' +p27179 +tp27180 +a(g27177 +g27179 +S'warp' +p27181 +tp27182 +a(g27179 +g27181 +S'yarn,' +p27183 +tp27184 +a(g27181 +g27183 +S'usually' +p27185 +tp27186 +a(g27183 +g27185 +S'a' +p27187 +tp27188 +a(g27185 +g27187 +S'two-ply' +p27189 +tp27190 +a(g27187 +g27189 +S'linen' +p27191 +tp27192 +a(g27189 +g27191 +S'or' +p27193 +tp27194 +a(g27191 +g27193 +S'cotton,' +p27195 +tp27196 +a(g27193 +g27195 +S'a' +p27197 +tp27198 +a(g27195 +g27197 +S'binder' +p27199 +tp27200 +a(g27197 +g27199 +S'weft' +p27201 +tp27202 +a(g27199 +g27201 +S'yarn' +p27203 +tp27204 +a(g27201 +g27203 +S'in' +p27205 +tp27206 +a(g27203 +g27205 +S'the' +p27207 +tp27208 +a(g27205 +g27207 +S'same' +p27209 +tp27210 +a(g27207 +g27209 +S'material' +p27211 +tp27212 +a(g27209 +g27211 +S'as' +p27213 +tp27214 +a(g27211 +g27213 +S'the' +p27215 +tp27216 +a(g27213 +g27215 +S'warp,' +p27217 +tp27218 +a(g27215 +g27217 +S'but' +p27219 +tp27220 +a(g27217 +g27219 +S'often' +p27221 +tp27222 +a(g27219 +g27221 +S'single' +p27223 +tp27224 +a(g27221 +g27223 +S'ply,' +p27225 +tp27226 +a(g27223 +g27225 +S'and' +p27227 +tp27228 +a(g27225 +g27227 +S'a' +p27229 +tp27230 +a(g27227 +g27229 +S'pattern' +p27231 +tp27232 +a(g27229 +g27231 +S'weft,' +p27233 +tp27234 +a(g27231 +g27233 +S'which' +p27235 +tp27236 +a(g27233 +g27235 +S'was' +p27237 +tp27238 +a(g27235 +g27237 +S'of' +p27239 +tp27240 +a(g27237 +g27239 +S'colored' +p27241 +tp27242 +a(g27239 +g27241 +S'woolen' +p27243 +tp27244 +a(g27241 +g27243 +S'yarn.' +p27245 +tp27246 +a(g27243 +g27245 +S'the' +p27247 +tp27248 +a(g27245 +g27247 +S'term' +p27249 +tp27250 +a(g27247 +g27249 +S'"overshot"' +p27251 +tp27252 +a(g27249 +g27251 +S'means' +p27253 +tp27254 +a(g27251 +g27253 +S'that' +p27255 +tp27256 +a(g27253 +g27255 +S'the' +p27257 +tp27258 +a(g27255 +g27257 +S'supplementary' +p27259 +tp27260 +a(g27257 +g27259 +S'weft' +p27261 +tp27262 +a(g27259 +g27261 +S'patterning' +p27263 +tp27264 +a(g27261 +g27263 +S'thread' +p27265 +tp27266 +a(g27263 +g27265 +S'is' +p27267 +tp27268 +a(g27265 +g27267 +S'"shot,"' +p27269 +tp27270 +a(g27267 +g27269 +S'or' +p27271 +tp27272 +a(g27269 +g27271 +S'floated,' +p27273 +tp27274 +a(g27271 +g27273 +S'over' +p27275 +tp27276 +a(g27273 +g27275 +S'the' +p27277 +tp27278 +a(g27275 +g27277 +S'plain' +p27279 +tp27280 +a(g27277 +g27279 +S'warp' +p27281 +tp27282 +a(g27279 +g27281 +S'threads,' +p27283 +tp27284 +a(g27281 +g27283 +S'creating' +p27285 +tp27286 +a(g27283 +g27285 +S'areas' +p27287 +tp27288 +a(g27285 +g27287 +S'of' +p27289 +tp27290 +a(g27287 +g27289 +S'solid' +p27291 +tp27292 +a(g27289 +g27291 +S'color' +p27293 +tp27294 +a(g27291 +g27293 +S'that' +p27295 +tp27296 +a(g27293 +g27295 +S'stand' +p27297 +tp27298 +a(g27295 +g27297 +S'out' +p27299 +tp27300 +a(g27297 +g27299 +S'above' +p27301 +tp27302 +a(g27299 +g27301 +S'a' +p27303 +tp27304 +a(g27301 +g27303 +S'plain' +p27305 +tp27306 +a(g27303 +g27305 +S'supporting' +p27307 +tp27308 +a(g27305 +g27307 +S'weave.' +p27309 +tp27310 +a(g27307 +g27309 +S'the' +p27311 +tp27312 +a(g27309 +g27311 +S'overshot' +p27313 +tp27314 +a(g27311 +g27313 +S'weft' +p27315 +tp27316 +a(g27313 +g27315 +S'threads,' +p27317 +tp27318 +a(g27315 +g27317 +S'seen' +p27319 +tp27320 +a(g27317 +g27319 +S'here' +p27321 +tp27322 +a(g27319 +g27321 +S'as' +p27323 +tp27324 +a(g27321 +g27323 +S'a' +p27325 +tp27326 +a(g27323 +g27325 +S'combination' +p27327 +tp27328 +a(g27325 +g27327 +S'of' +p27329 +tp27330 +a(g27327 +g27329 +S'blue' +p27331 +tp27332 +a(g27329 +g27331 +S'and' +p27333 +tp27334 +a(g27331 +g27333 +S'red' +p27335 +tp27336 +a(g27333 +g27335 +S'yarns,' +p27337 +tp27338 +a(g27335 +g27337 +S'create' +p27339 +tp27340 +a(g27337 +g27339 +S'variations' +p27341 +tp27342 +a(g27339 +g27341 +S'in' +p27343 +tp27344 +a(g27341 +g27343 +S'texture' +p27345 +tp27346 +a(g27343 +g27345 +S'as' +p27347 +tp27348 +a(g27345 +g27347 +S'well' +p27349 +tp27350 +a(g27347 +g27349 +S'as' +p27351 +tp27352 +a(g27349 +g27351 +S'pattern' +p27353 +tp27354 +a(g27351 +g27353 +S'and' +p27355 +tp27356 +a(g27353 +g27355 +S'produce' +p27357 +tp27358 +a(g27355 +g27357 +S'the' +p27359 +tp27360 +a(g27357 +g27359 +S'lively' +p27361 +tp27362 +a(g27359 +g27361 +S'geometric' +p27363 +tp27364 +a(g27361 +g27363 +S'surfaces' +p27365 +tp27366 +a(g27363 +g27365 +S'that' +p27367 +tp27368 +a(g27365 +g27367 +S'are' +p27369 +tp27370 +a(g27367 +g27369 +S'characteristic' +p27371 +tp27372 +a(g27369 +g27371 +S'of' +p27373 +tp27374 +a(g27371 +g27373 +S'overshot' +p27375 +tp27376 +a(g27373 +g27375 +S'coverlets.' +p27377 +tp27378 +a(g27375 +g27377 +S'the' +p27379 +tp27380 +a(g27377 +g27379 +S'patterns' +p27381 +tp27382 +a(g27379 +g27381 +S'for' +p27383 +tp27384 +a(g27381 +g27383 +S'these' +p27385 +tp27386 +a(g27383 +g27385 +S'coverlets' +p27387 +tp27388 +a(g27385 +g27387 +S'were' +p27389 +tp27390 +a(g27387 +g27389 +S'largely' +p27391 +tp27392 +a(g27389 +g27391 +S'traditional' +p27393 +tp27394 +a(g27391 +g27393 +S'and' +p27395 +tp27396 +a(g27393 +g27395 +S'were' +p27397 +tp27398 +a(g27395 +g27397 +S'based' +p27399 +tp27400 +a(g27397 +g27399 +S'on' +p27401 +tp27402 +a(g27399 +g27401 +S'written' +p27403 +tp27404 +a(g27401 +g27403 +S'drafts,' +p27405 +tp27406 +a(g27403 +g27405 +S'or' +p27407 +tp27408 +a(g27405 +g27407 +S'pattern' +p27409 +tp27410 +a(g27407 +g27409 +S'guides,' +p27411 +tp27412 +a(g27409 +g27411 +S'brought' +p27413 +tp27414 +a(g27411 +g27413 +S'to' +p27415 +tp27416 +a(g27413 +g27415 +S'america' +p27417 +tp27418 +a(g27415 +g27417 +S'by' +p27419 +tp27420 +a(g27417 +g27419 +S'european,' +p27421 +tp27422 +a(g27419 +g27421 +S'english,' +p27423 +tp27424 +a(g27421 +g27423 +S'and' +p27425 +tp27426 +a(g27423 +g27425 +S'scandinavian' +p27427 +tp27428 +a(g27425 +g27427 +S'settlers.' +p27429 +tp27430 +a(g27427 +g27429 +S'these' +p27431 +tp27432 +a(g27429 +g27431 +S'drafts' +p27433 +tp27434 +a(g27431 +g27433 +S'resemble' +p27435 +tp27436 +a(g27433 +g27435 +S'musical' +p27437 +tp27438 +a(g27435 +g27437 +S'notations,' +p27439 +tp27440 +a(g27437 +g27439 +S'and,' +p27441 +tp27442 +a(g27439 +g27441 +S'appropriately,' +p27443 +tp27444 +a(g27441 +g27443 +S'the' +p27445 +tp27446 +a(g27443 +g27445 +S'coverlets' +p27447 +tp27448 +a(g27445 +g27447 +S'woven' +p27449 +tp27450 +a(g27447 +g27449 +S'from' +p27451 +tp27452 +a(g27449 +g27451 +S'them' +p27453 +tp27454 +a(g27451 +g27453 +S'are,' +p27455 +tp27456 +a(g27453 +g27455 +S'like' +p27457 +tp27458 +a(g27455 +g27457 +S'this' +p27459 +tp27460 +a(g27457 +g27459 +S'example,' +p27461 +tp27462 +a(g27459 +g27461 +S'strikingly' +p27463 +tp27464 +a(g27461 +g27463 +S'rhythmic' +p27465 +tp27466 +a(g27463 +g27465 +S'in' +p27467 +tp27468 +a(g27465 +g27467 +S'design.' +p27469 +tp27470 +a(g27467 +g27469 +S'here' +p27471 +tp27472 +a(g27469 +g27471 +S'is' +p27473 +tp27474 +a(g27471 +g27473 +S'a' +p27475 +tp27476 +a(g27473 +g27475 +S'variation' +p27477 +tp27478 +a(g27475 +g27477 +S'of' +p27479 +tp27480 +a(g27477 +g27479 +S'the' +p27481 +tp27482 +a(g27479 +g27481 +S'overshot' +p27483 +tp27484 +a(g27481 +g27483 +S'weave.' +p27485 +tp27486 +a(g27483 +g27485 +S'this' +p27487 +tp27488 +a(g27485 +g27487 +S'coverlet' +p27489 +tp27490 +a(g27487 +g27489 +S'is' +p27491 +tp27492 +a(g27489 +g27491 +S'in' +p27493 +tp27494 +a(g27491 +g27493 +S'the' +p27495 +tp27496 +a(g27493 +g27495 +S'"summer-winter"' +p27497 +tp27498 +a(g27495 +g27497 +S'weave,' +p27499 +tp27500 +a(g27497 +g27499 +S'said' +p27501 +tp27502 +a(g27499 +g27501 +S'to' +p27503 +tp27504 +a(g27501 +g27503 +S'have' +p27505 +tp27506 +a(g27503 +g27505 +S'been' +p27507 +tp27508 +a(g27505 +g27507 +S'brought' +p27509 +tp27510 +a(g27507 +g27509 +S'to' +p27511 +tp27512 +a(g27509 +g27511 +S'america' +p27513 +tp27514 +a(g27511 +g27513 +S'by' +p27515 +tp27516 +a(g27513 +g27515 +S'the' +p27517 +tp27518 +a(g27515 +g27517 +S'pennsylvania' +p27519 +tp27520 +a(g27517 +g27519 +S'german' +p27521 +tp27522 +a(g27519 +g27521 +S'settlers,' +p27523 +tp27524 +a(g27521 +g27523 +S'who' +p27525 +tp27526 +a(g27523 +g27525 +S'used' +p27527 +tp27528 +a(g27525 +g27527 +S'it' +p27529 +tp27530 +a(g27527 +g27529 +S'frequently.' +p27531 +tp27532 +a(g27529 +g27531 +S'though' +p27533 +tp27534 +a(g27531 +g27533 +S'more' +p27535 +tp27536 +a(g27533 +g27535 +S'tightly' +p27537 +tp27538 +a(g27535 +g27537 +S'woven' +p27539 +tp27540 +a(g27537 +g27539 +S'than' +p27541 +tp27542 +a(g27539 +g27541 +S'some' +p27543 +tp27544 +a(g27541 +g27543 +S'overshot' +p27545 +tp27546 +a(g27543 +g27545 +S'coverlets,' +p27547 +tp27548 +a(g27545 +g27547 +S'the' +p27549 +tp27550 +a(g27547 +g27549 +S'"summer-winter"' +p27551 +tp27552 +a(g27549 +g27551 +S'weave' +p27553 +tp27554 +a(g27551 +g27553 +S'pattern' +p27555 +tp27556 +a(g27553 +g27555 +S'also' +p27557 +tp27558 +a(g27555 +g27557 +S'depends' +p27559 +tp27560 +a(g27557 +g27559 +S'upon' +p27561 +tp27562 +a(g27559 +g27561 +S'weft' +p27563 +tp27564 +a(g27561 +g27563 +S'threads' +p27565 +tp27566 +a(g27563 +g27565 +S'floated' +p27567 +tp27568 +a(g27565 +g27567 +S'over' +p27569 +tp27570 +a(g27567 +g27569 +S'and' +p27571 +tp27572 +a(g27569 +g27571 +S'under' +p27573 +tp27574 +a(g27571 +g27573 +S'the' +p27575 +tp27576 +a(g27573 +g27575 +S'structural' +p27577 +tp27578 +a(g27575 +g27577 +S'weave.' +p27579 +tp27580 +a(g27577 +g27579 +S'by' +p27581 +tp27582 +a(g27579 +g27581 +S'alternating' +p27583 +tp27584 +a(g27581 +g27583 +S'floating' +p27585 +tp27586 +a(g27583 +g27585 +S'elements,' +p27587 +tp27588 +a(g27585 +g27587 +S'a' +p27589 +tp27590 +a(g27587 +g27589 +S'reversible' +p27591 +tp27592 +a(g27589 +g27591 +S'fabric' +p27593 +tp27594 +a(g27591 +g27593 +S'is' +p27595 +tp27596 +a(g27593 +g27595 +S'formed.' +p27597 +tp27598 +a(g27595 +g27597 +S'notice' +p27599 +tp27600 +a(g27597 +g27599 +S'that' +p27601 +tp27602 +a(g27599 +g27601 +S'the' +p27603 +tp27604 +a(g27601 +g27603 +S'corner' +p27605 +tp27606 +a(g27603 +g27605 +S'of' +p27607 +tp27608 +a(g27605 +g27607 +S'this' +p27609 +tp27610 +a(g27607 +g27609 +S'coverlet' +p27611 +tp27612 +a(g27609 +g27611 +S'has' +p27613 +tp27614 +a(g27611 +g27613 +S'been' +p27615 +tp27616 +a(g27613 +g27615 +S'folded' +p27617 +tp27618 +a(g27615 +g27617 +S'back' +p27619 +tp27620 +a(g27617 +g27619 +S'to' +p27621 +tp27622 +a(g27619 +g27621 +S'reveal' +p27623 +tp27624 +a(g27621 +g27623 +S'the' +p27625 +tp27626 +a(g27623 +g27625 +S'light' +p27627 +tp27628 +a(g27625 +g27627 +S'or' +p27629 +tp27630 +a(g27627 +g27629 +S'"summer"' +p27631 +tp27632 +a(g27629 +g27631 +S'side,' +p27633 +tp27634 +a(g27631 +g27633 +S'which' +p27635 +tp27636 +a(g27633 +g27635 +S'corresponds' +p27637 +tp27638 +a(g27635 +g27637 +S'in' +p27639 +tp27640 +a(g27637 +g27639 +S'pattern' +p27641 +tp27642 +a(g27639 +g27641 +S'to' +p27643 +tp27644 +a(g27641 +g27643 +S'the' +p27645 +tp27646 +a(g27643 +g27645 +S'contrasting' +p27647 +tp27648 +a(g27645 +g27647 +S'dark,' +p27649 +tp27650 +a(g27647 +g27649 +S'or' +p27651 +tp27652 +a(g27649 +g27651 +S'"winter"' +p27653 +tp27654 +a(g27651 +g27653 +S'surface.' +p27655 +tp27656 +a(g27653 +g27655 +S'as' +p27657 +tp27658 +a(g27655 +g27657 +S'in' +p27659 +tp27660 +a(g27657 +g27659 +S'other' +p27661 +tp27662 +a(g27659 +g27661 +S'overshot' +p27663 +tp27664 +a(g27661 +g27663 +S'coverlets,' +p27665 +tp27666 +a(g27663 +g27665 +S'blue' +p27667 +tp27668 +a(g27665 +g27667 +S'and' +p27669 +tp27670 +a(g27667 +g27669 +S'red,' +p27671 +tp27672 +a(g27669 +g27671 +S'combined' +p27673 +tp27674 +a(g27671 +g27673 +S'with' +p27675 +tp27676 +a(g27673 +g27675 +S'white' +p27677 +tp27678 +a(g27675 +g27677 +S'or' +p27679 +tp27680 +a(g27677 +g27679 +S'neutral' +p27681 +tp27682 +a(g27679 +g27681 +S'yarns,' +p27683 +tp27684 +a(g27681 +g27683 +S'dominate' +p27685 +tp27686 +a(g27683 +g27685 +S'the' +p27687 +tp27688 +a(g27685 +g27687 +S'design.' +p27689 +tp27690 +a(g27687 +g27689 +S'blue' +p27691 +tp27692 +a(g27689 +g27691 +S'was' +p27693 +tp27694 +a(g27691 +g27693 +S'frequently' +p27695 +tp27696 +a(g27693 +g27695 +S'used' +p27697 +tp27698 +a(g27695 +g27697 +S'in' +p27699 +tp27700 +a(g27697 +g27699 +S'weaving,' +p27701 +tp27702 +a(g27699 +g27701 +S'as' +p27703 +tp27704 +a(g27701 +g27703 +S'in' +p27705 +tp27706 +a(g27703 +g27705 +S'the' +p27707 +tp27708 +a(g27705 +g27707 +S'indigo' +p27709 +tp27710 +a(g27707 +g27709 +S'plant,' +p27711 +tp27712 +a(g27709 +g27711 +S'from' +p27713 +tp27714 +a(g27711 +g27713 +S'which' +p27715 +tp27716 +a(g27713 +g27715 +S'the' +p27717 +tp27718 +a(g27715 +g27717 +S'dye' +p27719 +tp27720 +a(g27717 +g27719 +S'was' +p27721 +tp27722 +a(g27719 +g27721 +S'made,' +p27723 +tp27724 +a(g27721 +g27723 +S'was' +p27725 +tp27726 +a(g27723 +g27725 +S'grown' +p27727 +tp27728 +a(g27725 +g27727 +S'domestically' +p27729 +tp27730 +a(g27727 +g27729 +S'and' +p27731 +tp27732 +a(g27729 +g27731 +S'thus' +p27733 +tp27734 +a(g27731 +g27733 +S'was' +p27735 +tp27736 +a(g27733 +g27735 +S'readily' +p27737 +tp27738 +a(g27735 +g27737 +S'available.' +p27739 +tp27740 +a(g27737 +g27739 +S'in' +p27741 +tp27742 +a(g27739 +g27741 +S'addition,' +p27743 +tp27744 +a(g27741 +g27743 +S'imported' +p27745 +tp27746 +a(g27743 +g27745 +S'indigo' +p27747 +tp27748 +a(g27745 +g27747 +S'was' +p27749 +tp27750 +a(g27747 +g27749 +S'sold' +p27751 +tp27752 +a(g27749 +g27751 +S'inexpensively' +p27753 +tp27754 +a(g27751 +g27753 +S'in' +p27755 +tp27756 +a(g27753 +g27755 +S'shops' +p27757 +tp27758 +a(g27755 +g27757 +S'and' +p27759 +tp27760 +a(g27757 +g27759 +S'by' +p27761 +tp27762 +a(g27759 +g27761 +S'itinerant' +p27763 +tp27764 +a(g27761 +g27763 +S'peddlers.' +p27765 +tp27766 +a(g27763 +g27765 +S'second' +p27767 +tp27768 +a(g27765 +g27767 +S'in' +p27769 +tp27770 +a(g27767 +g27769 +S'popularity' +p27771 +tp27772 +a(g27769 +g27771 +S'were' +p27773 +tp27774 +a(g27771 +g27773 +S'reds,' +p27775 +tp27776 +a(g27773 +g27775 +S'obtained' +p27777 +tp27778 +a(g27775 +g27777 +S'from' +p27779 +tp27780 +a(g27777 +g27779 +S'such' +p27781 +tp27782 +a(g27779 +g27781 +S'common' +p27783 +tp27784 +a(g27781 +g27783 +S'sources' +p27785 +tp27786 +a(g27783 +g27785 +S'as' +p27787 +tp27788 +a(g27785 +g27787 +S'sumac,' +p27789 +tp27790 +a(g27787 +g27789 +S'madder' +p27791 +tp27792 +a(g27789 +g27791 +S'roots,' +p27793 +tp27794 +a(g27791 +g27793 +S'cherries,' +p27795 +tp27796 +a(g27793 +g27795 +S'pokeberries,' +p27797 +tp27798 +a(g27795 +g27797 +S'and' +p27799 +tp27800 +a(g27797 +g27799 +S'the' +p27801 +tp27802 +a(g27799 +g27801 +S'bloodroot' +p27803 +tp27804 +a(g27801 +g27803 +S'plant.' +p27805 +tp27806 +a(g27803 +g27805 +S'another' +p27807 +tp27808 +a(g27805 +g27807 +S'type' +p27809 +tp27810 +a(g27807 +g27809 +S'of' +p27811 +tp27812 +a(g27809 +g27811 +S'woven' +p27813 +tp27814 +a(g27811 +g27813 +S'coverlet' +p27815 +tp27816 +a(g27813 +g27815 +S'is' +p27817 +tp27818 +a(g27815 +g27817 +S'the' +p27819 +tp27820 +a(g27817 +g27819 +S'double' +p27821 +tp27822 +a(g27819 +g27821 +S'weave,' +p27823 +tp27824 +a(g27821 +g27823 +S'or' +p27825 +tp27826 +a(g27823 +g27825 +S'double' +p27827 +tp27828 +a(g27825 +g27827 +S'cloth' +p27829 +tp27830 +a(g27827 +g27829 +S'coverlet,' +p27831 +tp27832 +a(g27829 +g27831 +S'a' +p27833 +tp27834 +a(g27831 +g27833 +S'detail' +p27835 +tp27836 +a(g27833 +g27835 +S'of' +p27837 +tp27838 +a(g27835 +g27837 +S'which' +p27839 +tp27840 +a(g27837 +g27839 +S'appears' +p27841 +tp27842 +a(g27839 +g27841 +S'here.' +p27843 +tp27844 +a(g27841 +g27843 +S'most' +p27845 +tp27846 +a(g27843 +g27845 +S'coverlets' +p27847 +tp27848 +a(g27845 +g27847 +S'of' +p27849 +tp27850 +a(g27847 +g27849 +S'this' +p27851 +tp27852 +a(g27849 +g27851 +S'type' +p27853 +tp27854 +a(g27851 +g27853 +S'were' +p27855 +tp27856 +a(g27853 +g27855 +S'made' +p27857 +tp27858 +a(g27855 +g27857 +S'between' +p27859 +tp27860 +a(g27857 +g27859 +S'1725' +p27861 +tp27862 +a(g27859 +g27861 +S'and' +p27863 +tp27864 +a(g27861 +g27863 +S'1825.' +p27865 +tp27866 +a(g27863 +g27865 +S'double' +p27867 +tp27868 +a(g27865 +g27867 +S'weave' +p27869 +tp27870 +a(g27867 +g27869 +S'coverlets' +p27871 +tp27872 +a(g27869 +g27871 +S'were' +p27873 +tp27874 +a(g27871 +g27873 +S'woven' +p27875 +tp27876 +a(g27873 +g27875 +S'with' +p27877 +tp27878 +a(g27875 +g27877 +S'two' +p27879 +tp27880 +a(g27877 +g27879 +S'sets' +p27881 +tp27882 +a(g27879 +g27881 +S'of' +p27883 +tp27884 +a(g27881 +g27883 +S'warp' +p27885 +tp27886 +a(g27883 +g27885 +S'and' +p27887 +tp27888 +a(g27885 +g27887 +S'weft' +p27889 +tp27890 +a(g27887 +g27889 +S'threads,' +p27891 +tp27892 +a(g27889 +g27891 +S'resulting' +p27893 +tp27894 +a(g27891 +g27893 +S'in' +p27895 +tp27896 +a(g27893 +g27895 +S'two' +p27897 +tp27898 +a(g27895 +g27897 +S'separate' +p27899 +tp27900 +a(g27897 +g27899 +S'pieces' +p27901 +tp27902 +a(g27899 +g27901 +S'of' +p27903 +tp27904 +a(g27901 +g27903 +S'cloth' +p27905 +tp27906 +a(g27903 +g27905 +S'interwoven' +p27907 +tp27908 +a(g27905 +g27907 +S'at' +p27909 +tp27910 +a(g27907 +g27909 +S'certain' +p27911 +tp27912 +a(g27909 +g27911 +S'points.' +p27913 +tp27914 +a(g27911 +g27913 +S'the' +p27915 +tp27916 +a(g27913 +g27915 +S'double' +p27917 +tp27918 +a(g27915 +g27917 +S'thickness' +p27919 +tp27920 +a(g27917 +g27919 +S'made' +p27921 +tp27922 +a(g27919 +g27921 +S'these' +p27923 +tp27924 +a(g27921 +g27923 +S'coverlets' +p27925 +tp27926 +a(g27923 +g27925 +S'heavy' +p27927 +tp27928 +a(g27925 +g27927 +S'and' +p27929 +tp27930 +a(g27927 +g27929 +S'particularly' +p27931 +tp27932 +a(g27929 +g27931 +S'well' +p27933 +tp27934 +a(g27931 +g27933 +S'suited' +p27935 +tp27936 +a(g27933 +g27935 +S'to' +p27937 +tp27938 +a(g27935 +g27937 +S'cold' +p27939 +tp27940 +a(g27937 +g27939 +S'climates,' +p27941 +tp27942 +a(g27939 +g27941 +S'where' +p27943 +tp27944 +a(g27941 +g27943 +S'extremely' +p27945 +tp27946 +a(g27943 +g27945 +S'warm' +p27947 +tp27948 +a(g27945 +g27947 +S'bedding' +p27949 +tp27950 +a(g27947 +g27949 +S'was' +p27951 +tp27952 +a(g27949 +g27951 +S'a' +p27953 +tp27954 +a(g27951 +g27953 +S'necessity.' +p27955 +tp27956 +a(g27953 +g27955 +S'unlike' +p27957 +tp27958 +a(g27955 +g27957 +S'other' +p27959 +tp27960 +a(g27957 +g27959 +S'woven' +p27961 +tp27962 +a(g27959 +g27961 +S'coverlets,' +p27963 +tp27964 +a(g27961 +g27963 +S'which' +p27965 +tp27966 +a(g27963 +g27965 +S'had' +p27967 +tp27968 +a(g27965 +g27967 +S'cotton' +p27969 +tp27970 +a(g27967 +g27969 +S'or' +p27971 +tp27972 +a(g27969 +g27971 +S'linen' +p27973 +tp27974 +a(g27971 +g27973 +S'warp' +p27975 +tp27976 +a(g27973 +g27975 +S'threads,' +p27977 +tp27978 +a(g27975 +g27977 +S'wool' +p27979 +tp27980 +a(g27977 +g27979 +S'was' +p27981 +tp27982 +a(g27979 +g27981 +S'often' +p27983 +tp27984 +a(g27981 +g27983 +S'used' +p27985 +tp27986 +a(g27983 +g27985 +S'for' +p27987 +tp27988 +a(g27985 +g27987 +S'both' +p27989 +tp27990 +a(g27987 +g27989 +S'warp' +p27991 +tp27992 +a(g27989 +g27991 +S'and' +p27993 +tp27994 +a(g27991 +g27993 +S'weft' +p27995 +tp27996 +a(g27993 +g27995 +S'in' +p27997 +tp27998 +a(g27995 +g27997 +S'the' +p27999 +tp28000 +a(g27997 +g27999 +S'double' +p28001 +tp28002 +a(g27999 +g28001 +S'weave' +p28003 +tp28004 +a(g28001 +g28003 +S'structure.' +p28005 +tp28006 +a(g28003 +g28005 +S'the' +p28007 +tp28008 +a(g28005 +g28007 +S'designs' +p28009 +tp28010 +a(g28007 +g28009 +S'of' +p28011 +tp28012 +a(g28009 +g28011 +S'double' +p28013 +tp28014 +a(g28011 +g28013 +S'weave' +p28015 +tp28016 +a(g28013 +g28015 +S'coverlets' +p28017 +tp28018 +a(g28015 +g28017 +S'were' +p28019 +tp28020 +a(g28017 +g28019 +S'generally' +p28021 +tp28022 +a(g28019 +g28021 +S'geometrical' +p28023 +tp28024 +a(g28021 +g28023 +S'and' +p28025 +tp28026 +a(g28023 +g28025 +S'frequently' +p28027 +tp28028 +a(g28025 +g28027 +S'featured' +p28029 +tp28030 +a(g28027 +g28029 +S'a' +p28031 +tp28032 +a(g28029 +g28031 +S'pine' +p28033 +tp28034 +a(g28031 +g28033 +S'tree' +p28035 +tp28036 +a(g28033 +g28035 +S'border.' +p28037 +tp28038 +a(g28035 +g28037 +S'notice' +p28039 +tp28040 +a(g28037 +g28039 +S'that' +p28041 +tp28042 +a(g28039 +g28041 +S'the' +p28043 +tp28044 +a(g28041 +g28043 +S'border' +p28045 +tp28046 +a(g28043 +g28045 +S'here' +p28047 +tp28048 +a(g28045 +g28047 +S'is' +p28049 +tp28050 +a(g28047 +g28049 +S'composed' +p28051 +tp28052 +a(g28049 +g28051 +S'of' +p28053 +tp28054 +a(g28051 +g28053 +S'a' +p28055 +tp28056 +a(g28053 +g28055 +S'triple' +p28057 +tp28058 +a(g28055 +g28057 +S'pine' +p28059 +tp28060 +a(g28057 +g28059 +S'tree' +p28061 +tp28062 +a(g28059 +g28061 +S'configuration.' +p28063 +tp28064 +a(g28061 +g28063 +S'in' +p28065 +tp28066 +a(g28063 +g28065 +S'these' +p28067 +tp28068 +a(g28065 +g28067 +S'coverlets,' +p28069 +tp28070 +a(g28067 +g28069 +S'the' +p28071 +tp28072 +a(g28069 +g28071 +S'pine' +p28073 +tp28074 +a(g28071 +g28073 +S'tree' +p28075 +tp28076 +a(g28073 +g28075 +S'motif' +p28077 +tp28078 +a(g28075 +g28077 +S'is' +p28079 +tp28080 +a(g28077 +g28079 +S'often' +p28081 +tp28082 +a(g28079 +g28081 +S'combined' +p28083 +tp28084 +a(g28081 +g28083 +S'with' +p28085 +tp28086 +a(g28083 +g28085 +S'a' +p28087 +tp28088 +a(g28085 +g28087 +S'snowball' +p28089 +tp28090 +a(g28087 +g28089 +S'design,' +p28091 +tp28092 +a(g28089 +g28091 +S'as' +p28093 +tp28094 +a(g28091 +g28093 +S'is' +p28095 +tp28096 +a(g28093 +g28095 +S'evident' +p28097 +tp28098 +a(g28095 +g28097 +S'here.' +p28099 +tp28100 +a(g28097 +g28099 +S'without' +p28101 +tp28102 +a(g28099 +g28101 +S'the' +p28103 +tp28104 +a(g28101 +g28103 +S'16th-century' +p28105 +tp28106 +a(g28103 +g28105 +S'costume' +p28107 +tp28108 +a(g28105 +g28107 +S'or' +p28109 +tp28110 +a(g28107 +g28109 +S'the' +p28111 +tp28112 +a(g28109 +g28111 +S'bust\xc2\x92s' +p28113 +tp28114 +a(g28111 +g28113 +S'ovoid' +p28115 +tp28116 +a(g28113 +g28115 +S'shape,' +p28117 +tp28118 +a(g28115 +g28117 +S'we' +p28119 +tp28120 +a(g28117 +g28119 +S'might' +p28121 +tp28122 +a(g28119 +g28121 +S'be' +p28123 +tp28124 +a(g28121 +g28123 +S'tempted' +p28125 +tp28126 +a(g28123 +g28125 +S'to' +p28127 +tp28128 +a(g28125 +g28127 +S'ascribe' +p28129 +tp28130 +a(g28127 +g28129 +S'these' +p28131 +tp28132 +a(g28129 +g28131 +S'starkly' +p28133 +tp28134 +a(g28131 +g28133 +S'realistic' +p28135 +tp28136 +a(g28133 +g28135 +S'features' +p28137 +tp28138 +a(g28135 +g28137 +S'to' +p28139 +tp28140 +a(g28137 +g28139 +S'a' +p28141 +tp28142 +a(g28139 +g28141 +S'conservative' +p28143 +tp28144 +a(g28141 +g28143 +S'matron' +p28145 +tp28146 +a(g28143 +g28145 +S'from' +p28147 +tp28148 +a(g28145 +g28147 +S'republican' +p28149 +tp28150 +a(g28147 +g28149 +S'rome,' +p28151 +tp28152 +a(g28149 +g28151 +S'not' +p28153 +tp28154 +a(g28151 +g28153 +S'the' +p28155 +tp28156 +a(g28153 +g28155 +S'gilded' +p28157 +tp28158 +a(g28155 +g28157 +S'republic' +p28159 +tp28160 +a(g28157 +g28159 +S'of' +p28161 +tp28162 +a(g28159 +g28161 +S'renaissance' +p28163 +tp28164 +a(g28161 +g28163 +S'venice.' +p28165 +tp28166 +a(g28163 +g28165 +S'and' +p28167 +tp28168 +a(g28165 +g28167 +S'without' +p28169 +tp28170 +a(g28167 +g28169 +S'the' +p28171 +tp28172 +a(g28169 +g28171 +S'mantle' +p28173 +tp28174 +a(g28171 +g28173 +S'loosely' +p28175 +tp28176 +a(g28173 +g28175 +S'resting' +p28177 +tp28178 +a(g28175 +g28177 +S'on' +p28179 +tp28180 +a(g28177 +g28179 +S'her' +p28181 +tp28182 +a(g28179 +g28181 +S'shoulders,' +p28183 +tp28184 +a(g28181 +g28183 +S'we' +p28185 +tp28186 +a(g28183 +g28185 +S'might' +p28187 +tp28188 +a(g28185 +g28187 +S'mistake' +p28189 +tp28190 +a(g28187 +g28189 +S'the' +p28191 +tp28192 +a(g28189 +g28191 +S'sitter' +p28193 +tp28194 +a(g28191 +g28193 +S'for' +p28195 +tp28196 +a(g28193 +g28195 +S'a' +p28197 +tp28198 +a(g28195 +g28197 +S'peasant,' +p28199 +tp28200 +a(g28197 +g28199 +S'not' +p28201 +tp28202 +a(g28199 +g28201 +S'a' +p28203 +tp28204 +a(g28201 +g28203 +S'wealthy' +p28205 +tp28206 +a(g28203 +g28205 +S'patrician.' +p28207 +tp28208 +a(g28205 +g28207 +S'the' +p28209 +tp28210 +a(g28207 +g28209 +S'elderly' +p28211 +tp28212 +a(g28209 +g28211 +S"lady's" +p28213 +tp28214 +a(g28211 +g28213 +S'intelligence' +p28215 +tp28216 +a(g28213 +g28215 +S'and' +p28217 +tp28218 +a(g28215 +g28217 +S'toughness' +p28219 +tp28220 +a(g28217 +g28219 +S'are' +p28221 +tp28222 +a(g28219 +g28221 +S'evident,' +p28223 +tp28224 +a(g28221 +g28223 +S'her' +p28225 +tp28226 +a(g28223 +g28225 +S'chin' +p28227 +tp28228 +a(g28225 +g28227 +S'elevated' +p28229 +tp28230 +a(g28227 +g28229 +S'in' +p28231 +tp28232 +a(g28229 +g28231 +S'pride' +p28233 +tp28234 +a(g28231 +g28233 +S'above' +p28235 +tp28236 +a(g28233 +g28235 +S'a' +p28237 +tp28238 +a(g28235 +g28237 +S'stout' +p28239 +tp28240 +a(g28237 +g28239 +S'neck.' +p28241 +tp28242 +a(g28239 +g28241 +S'the' +p28243 +tp28244 +a(g28241 +g28243 +S'flesh' +p28245 +tp28246 +a(g28243 +g28245 +S'of' +p28247 +tp28248 +a(g28245 +g28247 +S'her' +p28249 +tp28250 +a(g28247 +g28249 +S'face,' +p28251 +tp28252 +a(g28249 +g28251 +S'with' +p28253 +tp28254 +a(g28251 +g28253 +S'its' +p28255 +tp28256 +a(g28253 +g28255 +S'asymmetrical' +p28257 +tp28258 +a(g28255 +g28257 +S'features,' +p28259 +tp28260 +a(g28257 +g28259 +S'seems' +p28261 +tp28262 +a(g28259 +g28261 +S'to' +p28263 +tp28264 +a(g28261 +g28263 +S'bear' +p28265 +tp28266 +a(g28263 +g28265 +S'the' +p28267 +tp28268 +a(g28265 +g28267 +S'imprint' +p28269 +tp28270 +a(g28267 +g28269 +S'of' +p28271 +tp28272 +a(g28269 +g28271 +S'experience' +p28273 +tp28274 +a(g28271 +g28273 +S'and' +p28275 +tp28276 +a(g28273 +g28275 +S'age.' +p28277 +tp28278 +a(g28275 +g28277 +S'the' +p28279 +tp28280 +a(g28277 +g28279 +S'unknown' +p28281 +tp28282 +a(g28279 +g28281 +S'venetian' +p28283 +tp28284 +a(g28281 +g28283 +S'artist' +p28285 +tp28286 +a(g28283 +g28285 +S'deftly' +p28287 +tp28288 +a(g28285 +g28287 +S'captured' +p28289 +tp28290 +a(g28287 +g28289 +S'the' +p28291 +tp28292 +a(g28289 +g28291 +S'enduring' +p28293 +tp28294 +a(g28291 +g28293 +S'vitality' +p28295 +tp28296 +a(g28293 +g28295 +S'and' +p28297 +tp28298 +a(g28295 +g28297 +S'mental' +p28299 +tp28300 +a(g28297 +g28299 +S'acuity' +p28301 +tp28302 +a(g28299 +g28301 +S'of' +p28303 +tp28304 +a(g28301 +g28303 +S'his' +p28305 +tp28306 +a(g28303 +g28305 +S'elderly' +p28307 +tp28308 +a(g28305 +g28307 +S'subject—qualities' +p28309 +tp28310 +a(g28307 +g28309 +S'that' +p28311 +tp28312 +a(g28309 +g28311 +S'reflect' +p28313 +tp28314 +a(g28311 +g28313 +S'what' +p28315 +tp28316 +a(g28313 +g28315 +S'we' +p28317 +tp28318 +a(g28315 +g28317 +S'know' +p28319 +tp28320 +a(g28317 +g28319 +S'of' +p28321 +tp28322 +a(g28319 +g28321 +S'her' +p28323 +tp28324 +a(g28321 +g28323 +S'life.' +p28325 +tp28326 +a(g28323 +g28325 +S'agnesina' +p28327 +tp28328 +a(g28325 +g28327 +S'badoer' +p28329 +tp28330 +a(g28327 +g28329 +S'giustinian' +p28331 +tp28332 +a(g28329 +g28331 +S'(c.' +p28333 +tp28334 +a(g28331 +g28333 +S'1472–1542)' +p28335 +tp28336 +a(g28333 +g28335 +S'was' +p28337 +tp28338 +a(g28335 +g28337 +S'a' +p28339 +tp28340 +a(g28337 +g28339 +S'wealthy' +p28341 +tp28342 +a(g28339 +g28341 +S'heiress' +p28343 +tp28344 +a(g28341 +g28343 +S'and' +p28345 +tp28346 +a(g28343 +g28345 +S'art' +p28347 +tp28348 +a(g28345 +g28347 +S'patron.' +p28349 +tp28350 +a(g28347 +g28349 +S'one' +p28351 +tp28352 +a(g28349 +g28351 +S'of' +p28353 +tp28354 +a(g28351 +g28353 +S'three' +p28355 +tp28356 +a(g28353 +g28355 +S'children' +p28357 +tp28358 +a(g28355 +g28357 +S'of' +p28359 +tp28360 +a(g28357 +g28359 +S'venetian' +p28361 +tp28362 +a(g28359 +g28361 +S'patrician' +p28363 +tp28364 +a(g28361 +g28363 +S'girolamo' +p28365 +tp28366 +a(g28363 +g28365 +S'badoer,' +p28367 +tp28368 +a(g28365 +g28367 +S'agnesina' +p28369 +tp28370 +a(g28367 +g28369 +S'lost' +p28371 +tp28372 +a(g28369 +g28371 +S'both' +p28373 +tp28374 +a(g28371 +g28373 +S'her' +p28375 +tp28376 +a(g28373 +g28375 +S'brothers' +p28377 +tp28378 +a(g28375 +g28377 +S'and' +p28379 +tp28380 +a(g28377 +g28379 +S'first' +p28381 +tp28382 +a(g28379 +g28381 +S'husband' +p28383 +tp28384 +a(g28381 +g28383 +S'early' +p28385 +tp28386 +a(g28383 +g28385 +S'in' +p28387 +tp28388 +a(g28385 +g28387 +S'life.' +p28389 +tp28390 +a(g28387 +g28389 +S'when' +p28391 +tp28392 +a(g28389 +g28391 +S'her' +p28393 +tp28394 +a(g28391 +g28393 +S'father' +p28395 +tp28396 +a(g28393 +g28395 +S'died' +p28397 +tp28398 +a(g28395 +g28397 +S'in' +p28399 +tp28400 +a(g28397 +g28399 +S'1497,' +p28401 +tp28402 +a(g28399 +g28401 +S'she' +p28403 +tp28404 +a(g28401 +g28403 +S'became' +p28405 +tp28406 +a(g28403 +g28405 +S'the' +p28407 +tp28408 +a(g28405 +g28407 +S'universal' +p28409 +tp28410 +a(g28407 +g28409 +S'heir' +p28411 +tp28412 +a(g28409 +g28411 +S'of' +p28413 +tp28414 +a(g28411 +g28413 +S'her' +p28415 +tp28416 +a(g28413 +g28415 +S'badoer' +p28417 +tp28418 +a(g28415 +g28417 +S'line' +p28419 +tp28420 +a(g28417 +g28419 +S'and' +p28421 +tp28422 +a(g28419 +g28421 +S'its' +p28423 +tp28424 +a(g28421 +g28423 +S'fortune,' +p28425 +tp28426 +a(g28423 +g28425 +S'including' +p28427 +tp28428 +a(g28425 +g28427 +S'a' +p28429 +tp28430 +a(g28427 +g28429 +S'residence' +p28431 +tp28432 +a(g28429 +g28431 +S'in' +p28433 +tp28434 +a(g28431 +g28433 +S'venice' +p28435 +tp28436 +a(g28433 +g28435 +S'and' +p28437 +tp28438 +a(g28435 +g28437 +S'extensive' +p28439 +tp28440 +a(g28437 +g28439 +S'properties' +p28441 +tp28442 +a(g28439 +g28441 +S'on' +p28443 +tp28444 +a(g28441 +g28443 +S'the' +p28445 +tp28446 +a(g28443 +g28445 +S'mainland.' +p28447 +tp28448 +a(g28445 +g28447 +S'she' +p28449 +tp28450 +a(g28447 +g28449 +S'was' +p28451 +tp28452 +a(g28449 +g28451 +S'remarried' +p28453 +tp28454 +a(g28451 +g28453 +S'the' +p28455 +tp28456 +a(g28453 +g28455 +S'same' +p28457 +tp28458 +a(g28455 +g28457 +S'year' +p28459 +tp28460 +a(g28457 +g28459 +S'to' +p28461 +tp28462 +a(g28459 +g28461 +S'the' +p28463 +tp28464 +a(g28461 +g28463 +S'patrician' +p28465 +tp28466 +a(g28463 +g28465 +S'girolamo' +p28467 +tp28468 +a(g28465 +g28467 +S'giustinian.' +p28469 +tp28470 +a(g28467 +g28469 +S'from' +p28471 +tp28472 +a(g28469 +g28471 +S'1511' +p28473 +tp28474 +a(g28471 +g28473 +S'to' +p28475 +tp28476 +a(g28473 +g28475 +S'1513' +p28477 +tp28478 +a(g28475 +g28477 +S'agnesina' +p28479 +tp28480 +a(g28477 +g28479 +S'and' +p28481 +tp28482 +a(g28479 +g28481 +S'her' +p28483 +tp28484 +a(g28481 +g28483 +S'husband' +p28485 +tp28486 +a(g28483 +g28485 +S'focused' +p28487 +tp28488 +a(g28485 +g28487 +S'their' +p28489 +tp28490 +a(g28487 +g28489 +S'energies' +p28491 +tp28492 +a(g28489 +g28491 +S'on' +p28493 +tp28494 +a(g28491 +g28493 +S'construction' +p28495 +tp28496 +a(g28493 +g28495 +S'of' +p28497 +tp28498 +a(g28495 +g28497 +S'an' +p28499 +tp28500 +a(g28497 +g28499 +S'impressive' +p28501 +tp28502 +a(g28499 +g28501 +S'villa—castello' +p28503 +tp28504 +a(g28501 +g28503 +S'di' +p28505 +tp28506 +a(g28503 +g28505 +S'roncade—on' +p28507 +tp28508 +a(g28505 +g28507 +S'badoer' +p28509 +tp28510 +a(g28507 +g28509 +S'ancestral' +p28511 +tp28512 +a(g28509 +g28511 +S'lands' +p28513 +tp28514 +a(g28511 +g28513 +S'near' +p28515 +tp28516 +a(g28513 +g28515 +S'treviso.' +p28517 +tp28518 +a(g28515 +g28517 +S'this' +p28519 +tp28520 +a(g28517 +g28519 +S'startlingly' +p28521 +tp28522 +a(g28519 +g28521 +S'realistic' +p28523 +tp28524 +a(g28521 +g28523 +S'portrait' +p28525 +tp28526 +a(g28523 +g28525 +S'is' +p28527 +tp28528 +a(g28525 +g28527 +S'probably' +p28529 +tp28530 +a(g28527 +g28529 +S'based' +p28531 +tp28532 +a(g28529 +g28531 +S'on' +p28533 +tp28534 +a(g28531 +g28533 +S'a' +p28535 +tp28536 +a(g28533 +g28535 +S'mask' +p28537 +tp28538 +a(g28535 +g28537 +S'of' +p28539 +tp28540 +a(g28537 +g28539 +S"agnesina's" +p28541 +tp28542 +a(g28539 +g28541 +S'face' +p28543 +tp28544 +a(g28541 +g28543 +S'taken' +p28545 +tp28546 +a(g28543 +g28545 +S'at' +p28547 +tp28548 +a(g28545 +g28547 +S'the' +p28549 +tp28550 +a(g28547 +g28549 +S'time' +p28551 +tp28552 +a(g28549 +g28551 +S'of' +p28553 +tp28554 +a(g28551 +g28553 +S'her' +p28555 +tp28556 +a(g28553 +g28555 +S'death,' +p28557 +tp28558 +a(g28555 +g28557 +S'at' +p28559 +tp28560 +a(g28557 +g28559 +S'about' +p28561 +tp28562 +a(g28559 +g28561 +S'the' +p28563 +tp28564 +a(g28561 +g28563 +S'age' +p28565 +tp28566 +a(g28563 +g28565 +S'of' +p28567 +tp28568 +a(g28565 +g28567 +S'70.' +p28569 +tp28570 +a(g28567 +g28569 +S'adriaen' +p28571 +tp28572 +a(g28569 +g28571 +S'de' +p28573 +tp28574 +a(g28571 +g28573 +S'vries' +p28575 +tp28576 +a(g28573 +g28575 +S'was' +p28577 +tp28578 +a(g28575 +g28577 +S'one' +p28579 +tp28580 +a(g28577 +g28579 +S'of' +p28581 +tp28582 +a(g28579 +g28581 +S'the' +p28583 +tp28584 +a(g28581 +g28583 +S'leading' +p28585 +tp28586 +a(g28583 +g28585 +S'late' +p28587 +tp28588 +a(g28585 +g28587 +S'renaissance' +p28589 +tp28590 +a(g28587 +g28589 +S'masters' +p28591 +tp28592 +a(g28589 +g28591 +S'of' +p28593 +tp28594 +a(g28591 +g28593 +S'northern' +p28595 +tp28596 +a(g28593 +g28595 +S'europe.' +p28597 +tp28598 +a(g28595 +g28597 +S'his' +p28599 +tp28600 +a(g28597 +g28599 +S'heroic' +p28601 +tp28602 +a(g28599 +g28601 +S'figures' +p28603 +tp28604 +a(g28601 +g28603 +S'--' +p28605 +tp28606 +a(g28603 +g28605 +S'female' +p28607 +tp28608 +a(g28605 +g28607 +S'as' +p28609 +tp28610 +a(g28607 +g28609 +S'well' +p28611 +tp28612 +a(g28609 +g28611 +S'as' +p28613 +tp28614 +a(g28611 +g28613 +S'male' +p28615 +tp28616 +a(g28613 +g28615 +S'--' +p28617 +tp28618 +a(g28615 +g28617 +S'reflect' +p28619 +tp28620 +a(g28617 +g28619 +S'study' +p28621 +tp28622 +a(g28619 +g28621 +S'of' +p28623 +tp28624 +a(g28621 +g28623 +S'the' +p28625 +tp28626 +a(g28623 +g28625 +S'antique' +p28627 +tp28628 +a(g28625 +g28627 +S'and' +p28629 +tp28630 +a(g28627 +g28629 +S'of' +p28631 +tp28632 +a(g28629 +g28631 +S"michelangelo's" +p28633 +tp28634 +a(g28631 +g28633 +S'sculpture,' +p28635 +tp28636 +a(g28633 +g28635 +S'with' +p28637 +tp28638 +a(g28635 +g28637 +S'an' +p28639 +tp28640 +a(g28637 +g28639 +S'emphasis' +p28641 +tp28642 +a(g28639 +g28641 +S'on' +p28643 +tp28644 +a(g28641 +g28643 +S'self-consciously' +p28645 +tp28646 +a(g28643 +g28645 +S'complicated,' +p28647 +tp28648 +a(g28645 +g28647 +S'twisting' +p28649 +tp28650 +a(g28647 +g28649 +S'poses.' +p28651 +tp28652 +a(g28649 +g28651 +S'adriaen' +p28653 +tp28654 +a(g28651 +g28653 +S'devised' +p28655 +tp28656 +a(g28653 +g28655 +S'this' +p28657 +tp28658 +a(g28655 +g28657 +S'bronze' +p28659 +tp28660 +a(g28657 +g28659 +S'allegory' +p28661 +tp28662 +a(g28659 +g28661 +S'for' +p28663 +tp28664 +a(g28661 +g28663 +S'the' +p28665 +tp28666 +a(g28663 +g28665 +S'holy' +p28667 +tp28668 +a(g28665 +g28667 +S'roman' +p28669 +tp28670 +a(g28667 +g28669 +S'emperor' +p28671 +tp28672 +a(g28669 +g28671 +S'rudolf' +p28673 +tp28674 +a(g28671 +g28673 +S'ii,' +p28675 +tp28676 +a(g28673 +g28675 +S'who' +p28677 +tp28678 +a(g28675 +g28677 +S'had' +p28679 +tp28680 +a(g28677 +g28679 +S'appointed' +p28681 +tp28682 +a(g28679 +g28681 +S'him' +p28683 +tp28684 +a(g28681 +g28683 +S'court' +p28685 +tp28686 +a(g28683 +g28685 +S'sculptor' +p28687 +tp28688 +a(g28685 +g28687 +S'at' +p28689 +tp28690 +a(g28687 +g28689 +S'prague' +p28691 +tp28692 +a(g28689 +g28691 +S'in' +p28693 +tp28694 +a(g28691 +g28693 +S'1601.' +p28695 +tp28696 +a(g28693 +g28695 +S'once' +p28697 +tp28698 +a(g28695 +g28697 +S'thought' +p28699 +tp28700 +a(g28697 +g28699 +S'simply' +p28701 +tp28702 +a(g28699 +g28701 +S'to' +p28703 +tp28704 +a(g28701 +g28703 +S'represent' +p28705 +tp28706 +a(g28703 +g28705 +S'"virtue' +p28707 +tp28708 +a(g28705 +g28707 +S'overcoming' +p28709 +tp28710 +a(g28707 +g28709 +S'vice,"' +p28711 +tp28712 +a(g28709 +g28711 +S'the' +p28713 +tp28714 +a(g28711 +g28713 +S'bronze' +p28715 +tp28716 +a(g28713 +g28715 +S'has' +p28717 +tp28718 +a(g28715 +g28717 +S'recently' +p28719 +tp28720 +a(g28717 +g28719 +S'been' +p28721 +tp28722 +a(g28719 +g28721 +S'interpreted' +p28723 +tp28724 +a(g28721 +g28723 +S'as' +p28725 +tp28726 +a(g28723 +g28725 +S'a' +p28727 +tp28728 +a(g28725 +g28727 +S'specific' +p28729 +tp28730 +a(g28727 +g28729 +S'theme' +p28731 +tp28732 +a(g28729 +g28731 +S'close' +p28733 +tp28734 +a(g28731 +g28733 +S'to' +p28735 +tp28736 +a(g28733 +g28735 +S'the' +p28737 +tp28738 +a(g28735 +g28737 +S"emperor's" +p28739 +tp28740 +a(g28737 +g28739 +S'heart.' +p28741 +tp28742 +a(g28739 +g28741 +S'the' +p28743 +tp28744 +a(g28741 +g28743 +S'dominant' +p28745 +tp28746 +a(g28743 +g28745 +S'female' +p28747 +tp28748 +a(g28745 +g28747 +S'figure,' +p28749 +tp28750 +a(g28747 +g28749 +S'crowned' +p28751 +tp28752 +a(g28749 +g28751 +S'with' +p28753 +tp28754 +a(g28751 +g28753 +S'laurel,' +p28755 +tp28756 +a(g28753 +g28755 +S'symbolizes' +p28757 +tp28758 +a(g28755 +g28757 +S'empire.' +p28759 +tp28760 +a(g28757 +g28759 +S'the' +p28761 +tp28762 +a(g28759 +g28761 +S'second' +p28763 +tp28764 +a(g28761 +g28763 +S'laurel' +p28765 +tp28766 +a(g28763 +g28765 +S'wreath' +p28767 +tp28768 +a(g28765 +g28767 +S'she' +p28769 +tp28770 +a(g28767 +g28769 +S'holds' +p28771 +tp28772 +a(g28769 +g28771 +S'high' +p28773 +tp28774 +a(g28771 +g28773 +S'proclaims' +p28775 +tp28776 +a(g28773 +g28775 +S'her' +p28777 +tp28778 +a(g28775 +g28777 +S'victory' +p28779 +tp28780 +a(g28777 +g28779 +S'over' +p28781 +tp28782 +a(g28779 +g28781 +S'a' +p28783 +tp28784 +a(g28781 +g28783 +S'figure' +p28785 +tp28786 +a(g28783 +g28785 +S'with' +p28787 +tp28788 +a(g28785 +g28787 +S"ass'" +p28789 +tp28790 +a(g28787 +g28789 +S'ears' +p28791 +tp28792 +a(g28789 +g28791 +S'and' +p28793 +tp28794 +a(g28791 +g28793 +S'a' +p28795 +tp28796 +a(g28793 +g28795 +S'bag' +p28797 +tp28798 +a(g28795 +g28797 +S'of' +p28799 +tp28800 +a(g28797 +g28799 +S'gold' +p28801 +tp28802 +a(g28799 +g28801 +S'coins' +p28803 +tp28804 +a(g28801 +g28803 +S'that' +p28805 +tp28806 +a(g28803 +g28805 +S'identify' +p28807 +tp28808 +a(g28805 +g28807 +S'her' +p28809 +tp28810 +a(g28807 +g28809 +S'as' +p28811 +tp28812 +a(g28809 +g28811 +S'avarice' +p28813 +tp28814 +a(g28811 +g28813 +S'(the' +p28815 +tp28816 +a(g28813 +g28815 +S'ears' +p28817 +tp28818 +a(g28815 +g28817 +S'and' +p28819 +tp28820 +a(g28817 +g28819 +S'the' +p28821 +tp28822 +a(g28819 +g28821 +S'gold' +p28823 +tp28824 +a(g28821 +g28823 +S'come' +p28825 +tp28826 +a(g28823 +g28825 +S'from' +p28827 +tp28828 +a(g28825 +g28827 +S'the' +p28829 +tp28830 +a(g28827 +g28829 +S'ancient' +p28831 +tp28832 +a(g28829 +g28831 +S'myth' +p28833 +tp28834 +a(g28831 +g28833 +S'of' +p28835 +tp28836 +a(g28833 +g28835 +S'king' +p28837 +tp28838 +a(g28835 +g28837 +S'midas,' +p28839 +tp28840 +a(g28837 +g28839 +S'known' +p28841 +tp28842 +a(g28839 +g28841 +S'for' +p28843 +tp28844 +a(g28841 +g28843 +S'his' +p28845 +tp28846 +a(g28843 +g28845 +S'greed' +p28847 +tp28848 +a(g28845 +g28847 +S'and' +p28849 +tp28850 +a(g28847 +g28849 +S'bad' +p28851 +tp28852 +a(g28849 +g28851 +S'judgment).' +p28853 +tp28854 +a(g28851 +g28853 +S'rudolf' +p28855 +tp28856 +a(g28853 +g28855 +S'was' +p28857 +tp28858 +a(g28855 +g28857 +S'fighting,' +p28859 +tp28860 +a(g28857 +g28859 +S'none' +p28861 +tp28862 +a(g28859 +g28861 +S'too' +p28863 +tp28864 +a(g28861 +g28863 +S'successfully,' +p28865 +tp28866 +a(g28863 +g28865 +S'in' +p28867 +tp28868 +a(g28865 +g28867 +S'wars' +p28869 +tp28870 +a(g28867 +g28869 +S'against' +p28871 +tp28872 +a(g28869 +g28871 +S'the' +p28873 +tp28874 +a(g28871 +g28873 +S'turks,' +p28875 +tp28876 +a(g28873 +g28875 +S'and' +p28877 +tp28878 +a(g28875 +g28877 +S'also' +p28879 +tp28880 +a(g28877 +g28879 +S'struggling' +p28881 +tp28882 +a(g28879 +g28881 +S'with' +p28883 +tp28884 +a(g28881 +g28883 +S'the' +p28885 +tp28886 +a(g28883 +g28885 +S'lands' +p28887 +tp28888 +a(g28885 +g28887 +S'he' +p28889 +tp28890 +a(g28887 +g28889 +S'ruled' +p28891 +tp28892 +a(g28889 +g28891 +S'that' +p28893 +tp28894 +a(g28891 +g28893 +S'were' +p28895 +tp28896 +a(g28893 +g28895 +S'reluctant' +p28897 +tp28898 +a(g28895 +g28897 +S'to' +p28899 +tp28900 +a(g28897 +g28899 +S'grant' +p28901 +tp28902 +a(g28899 +g28901 +S'the' +p28903 +tp28904 +a(g28901 +g28903 +S'funds' +p28905 +tp28906 +a(g28903 +g28905 +S'he' +p28907 +tp28908 +a(g28905 +g28907 +S'needed' +p28909 +tp28910 +a(g28907 +g28909 +S'to' +p28911 +tp28912 +a(g28909 +g28911 +S'continue.' +p28913 +tp28914 +a(g28911 +g28913 +S'the' +p28915 +tp28916 +a(g28913 +g28915 +S'bronze' +p28917 +tp28918 +a(g28915 +g28917 +S'gives' +p28919 +tp28920 +a(g28917 +g28919 +S'form' +p28921 +tp28922 +a(g28919 +g28921 +S'to' +p28923 +tp28924 +a(g28921 +g28923 +S'his' +p28925 +tp28926 +a(g28923 +g28925 +S'wish' +p28927 +tp28928 +a(g28925 +g28927 +S'for' +p28929 +tp28930 +a(g28927 +g28929 +S'triumph' +p28931 +tp28932 +a(g28929 +g28931 +S'over' +p28933 +tp28934 +a(g28931 +g28933 +S'both' +p28935 +tp28936 +a(g28933 +g28935 +S'adversaries.' +p28937 +tp28938 +a(g28935 +g28937 +S'the' +p28939 +tp28940 +a(g28937 +g28939 +S'sculptor' +p28941 +tp28942 +a(g28939 +g28941 +S'gave' +p28943 +tp28944 +a(g28941 +g28943 +S'psychological' +p28945 +tp28946 +a(g28943 +g28945 +S'force' +p28947 +tp28948 +a(g28945 +g28947 +S'to' +p28949 +tp28950 +a(g28947 +g28949 +S'this' +p28951 +tp28952 +a(g28949 +g28951 +S'symbolic' +p28953 +tp28954 +a(g28951 +g28953 +S'program' +p28955 +tp28956 +a(g28953 +g28955 +S'in' +p28957 +tp28958 +a(g28955 +g28957 +S'the' +p28959 +tp28960 +a(g28957 +g28959 +S'rippling' +p28961 +tp28962 +a(g28959 +g28961 +S'tension' +p28963 +tp28964 +a(g28961 +g28963 +S'of' +p28965 +tp28966 +a(g28963 +g28965 +S'the' +p28967 +tp28968 +a(g28965 +g28967 +S'torsos' +p28969 +tp28970 +a(g28967 +g28969 +S'and' +p28971 +tp28972 +a(g28969 +g28971 +S'in' +p28973 +tp28974 +a(g28971 +g28973 +S'the' +p28975 +tp28976 +a(g28973 +g28975 +S'gaze' +p28977 +tp28978 +a(g28975 +g28977 +S'that' +p28979 +tp28980 +a(g28977 +g28979 +S'passes' +p28981 +tp28982 +a(g28979 +g28981 +S'between' +p28983 +tp28984 +a(g28981 +g28983 +S'the' +p28985 +tp28986 +a(g28983 +g28985 +S'coolly' +p28987 +tp28988 +a(g28985 +g28987 +S'imperious' +p28989 +tp28990 +a(g28987 +g28989 +S'victor' +p28991 +tp28992 +a(g28989 +g28991 +S'and' +p28993 +tp28994 +a(g28991 +g28993 +S'the' +p28995 +tp28996 +a(g28993 +g28995 +S'distraught' +p28997 +tp28998 +a(g28995 +g28997 +S'vanquished.' +p28999 +tp29000 +a(g28997 +g28999 +S'andrea' +p29001 +tp29002 +a(g28999 +g29001 +S'della' +p29003 +tp29004 +a(g29001 +g29003 +S'robbia' +p29005 +tp29006 +a(g29003 +g29005 +S'carried' +p29007 +tp29008 +a(g29005 +g29007 +S'on' +p29009 +tp29010 +a(g29007 +g29009 +S'the' +p29011 +tp29012 +a(g29009 +g29011 +S'popular' +p29013 +tp29014 +a(g29011 +g29013 +S'and' +p29015 +tp29016 +a(g29013 +g29015 +S'lucrative' +p29017 +tp29018 +a(g29015 +g29017 +S'production' +p29019 +tp29020 +a(g29017 +g29019 +S'of' +p29021 +tp29022 +a(g29019 +g29021 +S'terra-cotta' +p29023 +tp29024 +a(g29021 +g29023 +S'sculpture' +p29025 +tp29026 +a(g29023 +g29025 +S'covered' +p29027 +tp29028 +a(g29025 +g29027 +S'with' +p29029 +tp29030 +a(g29027 +g29029 +S'enamel' +p29031 +tp29032 +a(g29029 +g29031 +S'glaze,' +p29033 +tp29034 +a(g29031 +g29033 +S'a' +p29035 +tp29036 +a(g29033 +g29035 +S'technique' +p29037 +tp29038 +a(g29035 +g29037 +S'developed' +p29039 +tp29040 +a(g29037 +g29039 +S'in' +p29041 +tp29042 +a(g29039 +g29041 +S'the' +p29043 +tp29044 +a(g29041 +g29043 +S'1430s' +p29045 +tp29046 +a(g29043 +g29045 +S'and' +p29047 +tp29048 +a(g29045 +g29047 +S'1440s' +p29049 +tp29050 +a(g29047 +g29049 +S'by' +p29051 +tp29052 +a(g29049 +g29051 +S'his' +p29053 +tp29054 +a(g29051 +g29053 +S'uncle' +p29055 +tp29056 +a(g29053 +g29055 +S'luca.' +p29057 +tp29058 +a(g29055 +g29057 +S'the' +p29059 +tp29060 +a(g29057 +g29059 +S'glazed' +p29061 +tp29062 +a(g29059 +g29061 +S'coating' +p29063 +tp29064 +a(g29061 +g29063 +S'gave' +p29065 +tp29066 +a(g29063 +g29065 +S'the' +p29067 +tp29068 +a(g29065 +g29067 +S'colors' +p29069 +tp29070 +a(g29067 +g29069 +S'of' +p29071 +tp29072 +a(g29069 +g29071 +S'della' +p29073 +tp29074 +a(g29071 +g29073 +S"robbia's" +p29075 +tp29076 +a(g29073 +g29075 +S'works' +p29077 +tp29078 +a(g29075 +g29077 +S'a' +p29079 +tp29080 +a(g29077 +g29079 +S'degree' +p29081 +tp29082 +a(g29079 +g29081 +S'of' +p29083 +tp29084 +a(g29081 +g29083 +S'durability' +p29085 +tp29086 +a(g29083 +g29085 +S'impossible' +p29087 +tp29088 +a(g29085 +g29087 +S'for' +p29089 +tp29090 +a(g29087 +g29089 +S'sculpture' +p29091 +tp29092 +a(g29089 +g29091 +S'that' +p29093 +tp29094 +a(g29091 +g29093 +S'was' +p29095 +tp29096 +a(g29093 +g29095 +S'simply' +p29097 +tp29098 +a(g29095 +g29097 +S'painted.' +p29099 +tp29100 +a(g29097 +g29099 +S'their' +p29101 +tp29102 +a(g29099 +g29101 +S'white-glazed' +p29103 +tp29104 +a(g29101 +g29103 +S'figures,' +p29105 +tp29106 +a(g29103 +g29105 +S'set' +p29107 +tp29108 +a(g29105 +g29107 +S'off' +p29109 +tp29110 +a(g29107 +g29109 +S'against' +p29111 +tp29112 +a(g29109 +g29111 +S'deep' +p29113 +tp29114 +a(g29111 +g29113 +S'blue' +p29115 +tp29116 +a(g29113 +g29115 +S'grounds' +p29117 +tp29118 +a(g29115 +g29117 +S'and' +p29119 +tp29120 +a(g29117 +g29119 +S'sometimes' +p29121 +tp29122 +a(g29119 +g29121 +S'surrounded' +p29123 +tp29124 +a(g29121 +g29123 +S'by' +p29125 +tp29126 +a(g29123 +g29125 +S'multicolored' +p29127 +tp29128 +a(g29125 +g29127 +S'garlands' +p29129 +tp29130 +a(g29127 +g29129 +S'of' +p29131 +tp29132 +a(g29129 +g29131 +S'fruit' +p29133 +tp29134 +a(g29131 +g29133 +S'or' +p29135 +tp29136 +a(g29133 +g29135 +S'flowers' +p29137 +tp29138 +a(g29135 +g29137 +S'(as' +p29139 +tp29140 +a(g29137 +g29139 +S'in' +p29141 +tp29142 +a(g29139 +g29141 +S"andrea's" +p29143 +tp29144 +a(g29141 +g29143 +S'the' +p29145 +tp29146 +a(g29143 +g29145 +S'half-length' +p29147 +tp29148 +a(g29145 +g29147 +S'treatment' +p29149 +tp29150 +a(g29147 +g29149 +S'of' +p29151 +tp29152 +a(g29149 +g29151 +S'the' +p29153 +tp29154 +a(g29151 +g29153 +S'virgin' +p29155 +tp29156 +a(g29153 +g29155 +S'brings' +p29157 +tp29158 +a(g29155 +g29157 +S'us' +p29159 +tp29160 +a(g29157 +g29159 +S'close' +p29161 +tp29162 +a(g29159 +g29161 +S'to' +p29163 +tp29164 +a(g29161 +g29163 +S'the' +p29165 +tp29166 +a(g29163 +g29165 +S'figures,' +p29167 +tp29168 +a(g29165 +g29167 +S'whose' +p29169 +tp29170 +a(g29167 +g29169 +S'attitudes' +p29171 +tp29172 +a(g29169 +g29171 +S'combine' +p29173 +tp29174 +a(g29171 +g29173 +S'tenderness' +p29175 +tp29176 +a(g29173 +g29175 +S'and' +p29177 +tp29178 +a(g29175 +g29177 +S'solemnity.' +p29179 +tp29180 +a(g29177 +g29179 +S'the' +p29181 +tp29182 +a(g29179 +g29181 +S'virgin' +p29183 +tp29184 +a(g29181 +g29183 +S'holds' +p29185 +tp29186 +a(g29183 +g29185 +S'the' +p29187 +tp29188 +a(g29185 +g29187 +S'child' +p29189 +tp29190 +a(g29187 +g29189 +S'gently,' +p29191 +tp29192 +a(g29189 +g29191 +S'her' +p29193 +tp29194 +a(g29191 +g29193 +S'forehead' +p29195 +tp29196 +a(g29193 +g29195 +S'grazing' +p29197 +tp29198 +a(g29195 +g29197 +S'his' +p29199 +tp29200 +a(g29197 +g29199 +S'hair.' +p29201 +tp29202 +a(g29199 +g29201 +S'the' +p29203 +tp29204 +a(g29201 +g29203 +S'child' +p29205 +tp29206 +a(g29203 +g29205 +S'rests' +p29207 +tp29208 +a(g29205 +g29207 +S'his' +p29209 +tp29210 +a(g29207 +g29209 +S'left' +p29211 +tp29212 +a(g29209 +g29211 +S'arm' +p29213 +tp29214 +a(g29211 +g29213 +S'against' +p29215 +tp29216 +a(g29213 +g29215 +S'her' +p29217 +tp29218 +a(g29215 +g29217 +S'chest' +p29219 +tp29220 +a(g29217 +g29219 +S'and' +p29221 +tp29222 +a(g29219 +g29221 +S'clutches' +p29223 +tp29224 +a(g29221 +g29223 +S'her' +p29225 +tp29226 +a(g29223 +g29225 +S'left' +p29227 +tp29228 +a(g29225 +g29227 +S'hand,' +p29229 +tp29230 +a(g29227 +g29229 +S'as' +p29231 +tp29232 +a(g29229 +g29231 +S'he' +p29233 +tp29234 +a(g29231 +g29233 +S'clings' +p29235 +tp29236 +a(g29233 +g29235 +S'to' +p29237 +tp29238 +a(g29235 +g29237 +S'a' +p29239 +tp29240 +a(g29237 +g29239 +S'corner' +p29241 +tp29242 +a(g29239 +g29241 +S'of' +p29243 +tp29244 +a(g29241 +g29243 +S'her' +p29245 +tp29246 +a(g29243 +g29245 +S'veil.' +p29247 +tp29248 +a(g29245 +g29247 +S'yet' +p29249 +tp29250 +a(g29247 +g29249 +S'for' +p29251 +tp29252 +a(g29249 +g29251 +S'all' +p29253 +tp29254 +a(g29251 +g29253 +S'their' +p29255 +tp29256 +a(g29253 +g29255 +S'physical' +p29257 +tp29258 +a(g29255 +g29257 +S'closeness,' +p29259 +tp29260 +a(g29257 +g29259 +S'they' +p29261 +tp29262 +a(g29259 +g29261 +S'do' +p29263 +tp29264 +a(g29261 +g29263 +S'not' +p29265 +tp29266 +a(g29263 +g29265 +S'look' +p29267 +tp29268 +a(g29265 +g29267 +S'at' +p29269 +tp29270 +a(g29267 +g29269 +S'each' +p29271 +tp29272 +a(g29269 +g29271 +S'other,' +p29273 +tp29274 +a(g29271 +g29273 +S'and' +p29275 +tp29276 +a(g29273 +g29275 +S'their' +p29277 +tp29278 +a(g29275 +g29277 +S'expressions' +p29279 +tp29280 +a(g29277 +g29279 +S'are' +p29281 +tp29282 +a(g29279 +g29281 +S'grave.' +p29283 +tp29284 +a(g29281 +g29283 +S'the' +p29285 +tp29286 +a(g29283 +g29285 +S"virgin's" +p29287 +tp29288 +a(g29285 +g29287 +S'downcast' +p29289 +tp29290 +a(g29287 +g29289 +S'gaze' +p29291 +tp29292 +a(g29289 +g29291 +S'suggests' +p29293 +tp29294 +a(g29291 +g29293 +S'meditation' +p29295 +tp29296 +a(g29293 +g29295 +S'on' +p29297 +tp29298 +a(g29295 +g29297 +S'the' +p29299 +tp29300 +a(g29297 +g29299 +S"child's" +p29301 +tp29302 +a(g29299 +g29301 +S'fate.' +p29303 +tp29304 +a(g29301 +g29303 +S'the' +p29305 +tp29306 +a(g29303 +g29305 +S'child' +p29307 +tp29308 +a(g29305 +g29307 +S'turns' +p29309 +tp29310 +a(g29307 +g29309 +S'his' +p29311 +tp29312 +a(g29309 +g29311 +S'face' +p29313 +tp29314 +a(g29311 +g29313 +S'toward' +p29315 +tp29316 +a(g29313 +g29315 +S'the' +p29317 +tp29318 +a(g29315 +g29317 +S'world,' +p29319 +tp29320 +a(g29317 +g29319 +S'but' +p29321 +tp29322 +a(g29319 +g29321 +S'his' +p29323 +tp29324 +a(g29321 +g29323 +S'eyes,' +p29325 +tp29326 +a(g29323 +g29325 +S'with' +p29327 +tp29328 +a(g29325 +g29327 +S'pupils' +p29329 +tp29330 +a(g29327 +g29329 +S'drifting' +p29331 +tp29332 +a(g29329 +g29331 +S'upward,' +p29333 +tp29334 +a(g29331 +g29333 +S'also' +p29335 +tp29336 +a(g29333 +g29335 +S'suggest' +p29337 +tp29338 +a(g29335 +g29337 +S'contemplation.' +p29339 +tp29340 +a(g29337 +g29339 +S'their' +p29341 +tp29342 +a(g29339 +g29341 +S'thoughts' +p29343 +tp29344 +a(g29341 +g29343 +S'seem' +p29345 +tp29346 +a(g29343 +g29345 +S'to' +p29347 +tp29348 +a(g29345 +g29347 +S'converge' +p29349 +tp29350 +a(g29347 +g29349 +S'on' +p29351 +tp29352 +a(g29349 +g29351 +S'the' +p29353 +tp29354 +a(g29351 +g29353 +S'same' +p29355 +tp29356 +a(g29353 +g29355 +S'sorrowful' +p29357 +tp29358 +a(g29355 +g29357 +S'theme:' +p29359 +tp29360 +a(g29357 +g29359 +S'the' +p29361 +tp29362 +a(g29359 +g29361 +S'coming' +p29363 +tp29364 +a(g29361 +g29363 +S'passion' +p29365 +tp29366 +a(g29363 +g29365 +S'and' +p29367 +tp29368 +a(g29365 +g29367 +S'death' +p29369 +tp29370 +a(g29367 +g29369 +S'of' +p29371 +tp29372 +a(g29369 +g29371 +S'christ.' +p29373 +tp29374 +a(g29371 +g29373 +S'in' +p29375 +tp29376 +a(g29373 +g29375 +S'america,' +p29377 +tp29378 +a(g29375 +g29377 +S'commercial' +p29379 +tp29380 +a(g29377 +g29379 +S'production' +p29381 +tp29382 +a(g29379 +g29381 +S'of' +p29383 +tp29384 +a(g29381 +g29383 +S'printed' +p29385 +tp29386 +a(g29383 +g29385 +S'textiles' +p29387 +tp29388 +a(g29385 +g29387 +S'was' +p29389 +tp29390 +a(g29387 +g29389 +S'a' +p29391 +tp29392 +a(g29389 +g29391 +S'profitable' +p29393 +tp29394 +a(g29391 +g29393 +S'business' +p29395 +tp29396 +a(g29393 +g29395 +S'by' +p29397 +tp29398 +a(g29395 +g29397 +S'1800.' +p29399 +tp29400 +a(g29397 +g29399 +S'while' +p29401 +tp29402 +a(g29399 +g29401 +S'the' +p29403 +tp29404 +a(g29401 +g29403 +S'growth' +p29405 +tp29406 +a(g29403 +g29405 +S'of' +p29407 +tp29408 +a(g29405 +g29407 +S'the' +p29409 +tp29410 +a(g29407 +g29409 +S'textile' +p29411 +tp29412 +a(g29409 +g29411 +S'industry' +p29413 +tp29414 +a(g29411 +g29413 +S'in' +p29415 +tp29416 +a(g29413 +g29415 +S'america' +p29417 +tp29418 +a(g29415 +g29417 +S'was' +p29419 +tp29420 +a(g29417 +g29419 +S'encouraged' +p29421 +tp29422 +a(g29419 +g29421 +S'by' +p29423 +tp29424 +a(g29421 +g29423 +S'the' +p29425 +tp29426 +a(g29423 +g29425 +S'availability' +p29427 +tp29428 +a(g29425 +g29427 +S'of' +p29429 +tp29430 +a(g29427 +g29429 +S'cheap' +p29431 +tp29432 +a(g29429 +g29431 +S'cotton' +p29433 +tp29434 +a(g29431 +g29433 +S'and' +p29435 +tp29436 +a(g29433 +g29435 +S'by' +p29437 +tp29438 +a(g29435 +g29437 +S'protective' +p29439 +tp29440 +a(g29437 +g29439 +S'tariffs,' +p29441 +tp29442 +a(g29439 +g29441 +S'mechanization' +p29443 +tp29444 +a(g29441 +g29443 +S'was' +p29445 +tp29446 +a(g29443 +g29445 +S'the' +p29447 +tp29448 +a(g29445 +g29447 +S'key' +p29449 +tp29450 +a(g29447 +g29449 +S'to' +p29451 +tp29452 +a(g29449 +g29451 +S'an' +p29453 +tp29454 +a(g29451 +g29453 +S'expanding' +p29455 +tp29456 +a(g29453 +g29455 +S'textile' +p29457 +tp29458 +a(g29455 +g29457 +S'industry.' +p29459 +tp29460 +a(g29457 +g29459 +S'mechanical' +p29461 +tp29462 +a(g29459 +g29461 +S'spinning' +p29463 +tp29464 +a(g29461 +g29463 +S'was' +p29465 +tp29466 +a(g29463 +g29465 +S'introduced' +p29467 +tp29468 +a(g29465 +g29467 +S'in' +p29469 +tp29470 +a(g29467 +g29469 +S'rhode' +p29471 +tp29472 +a(g29469 +g29471 +S'island' +p29473 +tp29474 +a(g29471 +g29473 +S'in' +p29475 +tp29476 +a(g29473 +g29475 +S'1789,' +p29477 +tp29478 +a(g29475 +g29477 +S'and' +p29479 +tp29480 +a(g29477 +g29479 +S'the' +p29481 +tp29482 +a(g29479 +g29481 +S'power' +p29483 +tp29484 +a(g29481 +g29483 +S'loom' +p29485 +tp29486 +a(g29483 +g29485 +S'came' +p29487 +tp29488 +a(g29485 +g29487 +S'into' +p29489 +tp29490 +a(g29487 +g29489 +S'use' +p29491 +tp29492 +a(g29489 +g29491 +S'in' +p29493 +tp29494 +a(g29491 +g29493 +S'1814.' +p29495 +tp29496 +a(g29493 +g29495 +S'with' +p29497 +tp29498 +a(g29495 +g29497 +S'these' +p29499 +tp29500 +a(g29497 +g29499 +S'machines' +p29501 +tp29502 +a(g29499 +g29501 +S'american' +p29503 +tp29504 +a(g29501 +g29503 +S'mills' +p29505 +tp29506 +a(g29503 +g29505 +S'accelerated' +p29507 +tp29508 +a(g29505 +g29507 +S'and' +p29509 +tp29510 +a(g29507 +g29509 +S'vastly' +p29511 +tp29512 +a(g29509 +g29511 +S'increased' +p29513 +tp29514 +a(g29511 +g29513 +S'the' +p29515 +tp29516 +a(g29513 +g29515 +S'production' +p29517 +tp29518 +a(g29515 +g29517 +S'of' +p29519 +tp29520 +a(g29517 +g29519 +S'textiles.' +p29521 +tp29522 +a(g29519 +g29521 +S'the' +p29523 +tp29524 +a(g29521 +g29523 +S'tedious' +p29525 +tp29526 +a(g29523 +g29525 +S'wood-block' +p29527 +tp29528 +a(g29525 +g29527 +S'technique' +p29529 +tp29530 +a(g29527 +g29529 +S'gave' +p29531 +tp29532 +a(g29529 +g29531 +S'way' +p29533 +tp29534 +a(g29531 +g29533 +S'to' +p29535 +tp29536 +a(g29533 +g29535 +S'the' +p29537 +tp29538 +a(g29535 +g29537 +S'more' +p29539 +tp29540 +a(g29537 +g29539 +S'expeditious' +p29541 +tp29542 +a(g29539 +g29541 +S'process' +p29543 +tp29544 +a(g29541 +g29543 +S'of' +p29545 +tp29546 +a(g29543 +g29545 +S'roller' +p29547 +tp29548 +a(g29545 +g29547 +S'printing,' +p29549 +tp29550 +a(g29547 +g29549 +S'that' +p29551 +tp29552 +a(g29549 +g29551 +S'is,' +p29553 +tp29554 +a(g29551 +g29553 +S'using' +p29555 +tp29556 +a(g29553 +g29555 +S'metal' +p29557 +tp29558 +a(g29555 +g29557 +S'cylinders' +p29559 +tp29560 +a(g29557 +g29559 +S'with' +p29561 +tp29562 +a(g29559 +g29561 +S'engraved' +p29563 +tp29564 +a(g29561 +g29563 +S'surface' +p29565 +tp29566 +a(g29563 +g29565 +S'designs' +p29567 +tp29568 +a(g29565 +g29567 +S'as' +p29569 +tp29570 +a(g29567 +g29569 +S'the' +p29571 +tp29572 +a(g29569 +g29571 +S'means' +p29573 +tp29574 +a(g29571 +g29573 +S'by' +p29575 +tp29576 +a(g29573 +g29575 +S'which' +p29577 +tp29578 +a(g29575 +g29577 +S'patterns' +p29579 +tp29580 +a(g29577 +g29579 +S'were' +p29581 +tp29582 +a(g29579 +g29581 +S'transferred' +p29583 +tp29584 +a(g29581 +g29583 +S'to' +p29585 +tp29586 +a(g29583 +g29585 +S'fabric.' +p29587 +tp29588 +a(g29585 +g29587 +S'by' +p29589 +tp29590 +a(g29587 +g29589 +S'the' +p29591 +tp29592 +a(g29589 +g29591 +S'middle' +p29593 +tp29594 +a(g29591 +g29593 +S'of' +p29595 +tp29596 +a(g29593 +g29595 +S'the' +p29597 +tp29598 +a(g29595 +g29597 +S'nineteenth' +p29599 +tp29600 +a(g29597 +g29599 +S'century,' +p29601 +tp29602 +a(g29599 +g29601 +S'textile' +p29603 +tp29604 +a(g29601 +g29603 +S'mills' +p29605 +tp29606 +a(g29603 +g29605 +S'were' +p29607 +tp29608 +a(g29605 +g29607 +S'flourishing' +p29609 +tp29610 +a(g29607 +g29609 +S'throughout' +p29611 +tp29612 +a(g29609 +g29611 +S'new' +p29613 +tp29614 +a(g29611 +g29613 +S'england' +p29615 +tp29616 +a(g29613 +g29615 +S'and' +p29617 +tp29618 +a(g29615 +g29617 +S'the' +p29619 +tp29620 +a(g29617 +g29619 +S'mid-atlantic' +p29621 +tp29622 +a(g29619 +g29621 +S'states.' +p29623 +tp29624 +a(g29621 +g29623 +S'fall' +p29625 +tp29626 +a(g29623 +g29625 +S'river,' +p29627 +tp29628 +a(g29625 +g29627 +S'massachusetts,' +p29629 +tp29630 +a(g29627 +g29629 +S'became' +p29631 +tp29632 +a(g29629 +g29631 +S'an' +p29633 +tp29634 +a(g29631 +g29633 +S'important' +p29635 +tp29636 +a(g29633 +g29635 +S'textile' +p29637 +tp29638 +a(g29635 +g29637 +S'manufacturing' +p29639 +tp29640 +a(g29637 +g29639 +S'and' +p29641 +tp29642 +a(g29639 +g29641 +S'printing' +p29643 +tp29644 +a(g29641 +g29643 +S'center,' +p29645 +tp29646 +a(g29643 +g29645 +S'and' +p29647 +tp29648 +a(g29645 +g29647 +S'among' +p29649 +tp29650 +a(g29647 +g29649 +S'the' +p29651 +tp29652 +a(g29649 +g29651 +S'factories' +p29653 +tp29654 +a(g29651 +g29653 +S'in' +p29655 +tp29656 +a(g29653 +g29655 +S'that' +p29657 +tp29658 +a(g29655 +g29657 +S'location,' +p29659 +tp29660 +a(g29657 +g29659 +S'andrew' +p29661 +tp29662 +a(g29659 +g29661 +S'robeson' +p29663 +tp29664 +a(g29661 +g29663 +S'and' +p29665 +tp29666 +a(g29663 +g29665 +S'company' +p29667 +tp29668 +a(g29665 +g29667 +S'was' +p29669 +tp29670 +a(g29667 +g29669 +S'pre-eminent.' +p29671 +tp29672 +a(g29669 +g29671 +S'here' +p29673 +tp29674 +a(g29671 +g29673 +S'is' +p29675 +tp29676 +a(g29673 +g29675 +S'a' +p29677 +tp29678 +a(g29675 +g29677 +S'cotton' +p29679 +tp29680 +a(g29677 +g29679 +S'print' +p29681 +tp29682 +a(g29679 +g29681 +S'produced' +p29683 +tp29684 +a(g29681 +g29683 +S'by' +p29685 +tp29686 +a(g29683 +g29685 +S'the' +p29687 +tp29688 +a(g29685 +g29687 +S'robeson' +p29689 +tp29690 +a(g29687 +g29689 +S'company' +p29691 +tp29692 +a(g29689 +g29691 +S'between' +p29693 +tp29694 +a(g29691 +g29693 +S'1834' +p29695 +tp29696 +a(g29693 +g29695 +S'and' +p29697 +tp29698 +a(g29695 +g29697 +S'1848' +p29699 +tp29700 +a(g29697 +g29699 +S'and' +p29701 +tp29702 +a(g29699 +g29701 +S'bearing' +p29703 +tp29704 +a(g29701 +g29703 +S'the' +p29705 +tp29706 +a(g29703 +g29705 +S"company's" +p29707 +tp29708 +a(g29705 +g29707 +S'label.' +p29709 +tp29710 +a(g29707 +g29709 +S'the' +p29711 +tp29712 +a(g29709 +g29711 +S'fabric' +p29713 +tp29714 +a(g29711 +g29713 +S'is' +p29715 +tp29716 +a(g29713 +g29715 +S'woven' +p29717 +tp29718 +a(g29715 +g29717 +S'in' +p29719 +tp29720 +a(g29717 +g29719 +S'stripes' +p29721 +tp29722 +a(g29719 +g29721 +S'of' +p29723 +tp29724 +a(g29721 +g29723 +S'white' +p29725 +tp29726 +a(g29723 +g29725 +S'and' +p29727 +tp29728 +a(g29725 +g29727 +S'soft' +p29729 +tp29730 +a(g29727 +g29729 +S'yellow.' +p29731 +tp29732 +a(g29729 +g29731 +S'the' +p29733 +tp29734 +a(g29731 +g29733 +S'striped' +p29735 +tp29736 +a(g29733 +g29735 +S'design' +p29737 +tp29738 +a(g29735 +g29737 +S'is' +p29739 +tp29740 +a(g29737 +g29739 +S'overlaid' +p29741 +tp29742 +a(g29739 +g29741 +S'with' +p29743 +tp29744 +a(g29741 +g29743 +S'a' +p29745 +tp29746 +a(g29743 +g29745 +S'floral' +p29747 +tp29748 +a(g29745 +g29747 +S'pattern' +p29749 +tp29750 +a(g29747 +g29749 +S'printed' +p29751 +tp29752 +a(g29749 +g29751 +S'in' +p29753 +tp29754 +a(g29751 +g29753 +S'black' +p29755 +tp29756 +a(g29753 +g29755 +S'and' +p29757 +tp29758 +a(g29755 +g29757 +S'red' +p29759 +tp29760 +a(g29757 +g29759 +S'and' +p29761 +tp29762 +a(g29759 +g29761 +S'reminiscent' +p29763 +tp29764 +a(g29761 +g29763 +S'of' +p29765 +tp29766 +a(g29763 +g29765 +S'the' +p29767 +tp29768 +a(g29765 +g29767 +S'floral' +p29769 +tp29770 +a(g29767 +g29769 +S'forms' +p29771 +tp29772 +a(g29769 +g29771 +S'seen' +p29773 +tp29774 +a(g29771 +g29773 +S'in' +p29775 +tp29776 +a(g29773 +g29775 +S'indian' +p29777 +tp29778 +a(g29775 +g29777 +S'fabrics.' +p29779 +tp29780 +a(g29777 +g29779 +S'the' +p29781 +tp29782 +a(g29779 +g29781 +S'delicacy' +p29783 +tp29784 +a(g29781 +g29783 +S'of' +p29785 +tp29786 +a(g29783 +g29785 +S'the' +p29787 +tp29788 +a(g29785 +g29787 +S'printed' +p29789 +tp29790 +a(g29787 +g29789 +S'pattern' +p29791 +tp29792 +a(g29789 +g29791 +S'is' +p29793 +tp29794 +a(g29791 +g29793 +S'in' +p29795 +tp29796 +a(g29793 +g29795 +S'keeping' +p29797 +tp29798 +a(g29795 +g29797 +S'with' +p29799 +tp29800 +a(g29797 +g29799 +S'the' +p29801 +tp29802 +a(g29799 +g29801 +S'refinement' +p29803 +tp29804 +a(g29801 +g29803 +S'of' +p29805 +tp29806 +a(g29803 +g29805 +S'the' +p29807 +tp29808 +a(g29805 +g29807 +S'colors' +p29809 +tp29810 +a(g29807 +g29809 +S'and' +p29811 +tp29812 +a(g29809 +g29811 +S'justifies' +p29813 +tp29814 +a(g29811 +g29813 +S'the' +p29815 +tp29816 +a(g29813 +g29815 +S'many' +p29817 +tp29818 +a(g29815 +g29817 +S'awards' +p29819 +tp29820 +a(g29817 +g29819 +S'the' +p29821 +tp29822 +a(g29819 +g29821 +S'company' +p29823 +tp29824 +a(g29821 +g29823 +S'received' +p29825 +tp29826 +a(g29823 +g29825 +S'for' +p29827 +tp29828 +a(g29825 +g29827 +S'the' +p29829 +tp29830 +a(g29827 +g29829 +S'"fineness"' +p29831 +tp29832 +a(g29829 +g29831 +S'of' +p29833 +tp29834 +a(g29831 +g29833 +S'their' +p29835 +tp29836 +a(g29833 +g29835 +S'products.' +p29837 +tp29838 +a(g29835 +g29837 +S'verrocchio\'s' +p29841 +tp29842 +a(g29839 +g29841 +S'unfortunately' +p29843 +tp29844 +a(g29841 +g29843 +S'for' +p29845 +tp29846 +a(g29843 +g29845 +S'the' +p29847 +tp29848 +a(g29845 +g29847 +S'medici,' +p29849 +tp29850 +a(g29847 +g29849 +S'other' +p29851 +tp29852 +a(g29849 +g29851 +S'noble' +p29853 +tp29854 +a(g29851 +g29853 +S'families' +p29855 +tp29856 +a(g29853 +g29855 +S'of' +p29857 +tp29858 +a(g29855 +g29857 +S'florence' +p29859 +tp29860 +a(g29857 +g29859 +S'were' +p29861 +tp29862 +a(g29859 +g29861 +S'growing' +p29863 +tp29864 +a(g29861 +g29863 +S'tired' +p29865 +tp29866 +a(g29863 +g29865 +S'of' +p29867 +tp29868 +a(g29865 +g29867 +S'their' +p29869 +tp29870 +a(g29867 +g29869 +S'leadership.' +p29871 +tp29872 +a(g29869 +g29871 +S'inspired' +p29873 +tp29874 +a(g29871 +g29873 +S'to' +p29875 +tp29876 +a(g29873 +g29875 +S'unseat' +p29877 +tp29878 +a(g29875 +g29877 +S'them,' +p29879 +tp29880 +a(g29877 +g29879 +S'the' +p29881 +tp29882 +a(g29879 +g29881 +S'pazzi' +p29883 +tp29884 +a(g29881 +g29883 +S'conspiracy' +p29885 +tp29886 +a(g29883 +g29885 +S'unraveled' +p29887 +tp29888 +a(g29885 +g29887 +S'during' +p29889 +tp29890 +a(g29887 +g29889 +S'high' +p29891 +tp29892 +a(g29889 +g29891 +S'mass' +p29893 +tp29894 +a(g29891 +g29893 +S'in' +p29895 +tp29896 +a(g29893 +g29895 +S'the' +p29897 +tp29898 +a(g29895 +g29897 +S'florentine' +p29899 +tp29900 +a(g29897 +g29899 +S'duomo' +p29901 +tp29902 +a(g29899 +g29901 +S'on' +p29903 +tp29904 +a(g29901 +g29903 +S'april' +p29905 +tp29906 +a(g29903 +g29905 +S'26,' +p29907 +tp29908 +a(g29905 +g29907 +S'1478.' +p29909 +tp29910 +a(g29907 +g29909 +S'as' +p29911 +tp29912 +a(g29909 +g29911 +S'originally' +p29913 +tp29914 +a(g29911 +g29913 +S'conceived,' +p29915 +tp29916 +a(g29913 +g29915 +S'the' +p29917 +tp29918 +a(g29915 +g29917 +S'plan' +p29919 +tp29920 +a(g29917 +g29919 +S'was' +p29921 +tp29922 +a(g29919 +g29921 +S'to' +p29923 +tp29924 +a(g29921 +g29923 +S'assassinate' +p29925 +tp29926 +a(g29923 +g29925 +S'both' +p29927 +tp29928 +a(g29925 +g29927 +S'brothers' +p29929 +tp29930 +a(g29927 +g29929 +S'the' +p29931 +tp29932 +a(g29929 +g29931 +S'evening' +p29933 +tp29934 +a(g29931 +g29933 +S'before' +p29935 +tp29936 +a(g29933 +g29935 +S'at' +p29937 +tp29938 +a(g29935 +g29937 +S'a' +p29939 +tp29940 +a(g29937 +g29939 +S'party' +p29941 +tp29942 +a(g29939 +g29941 +S'in' +p29943 +tp29944 +a(g29941 +g29943 +S"lorenzo's" +p29945 +tp29946 +a(g29943 +g29945 +S'villa.' +p29947 +tp29948 +a(g29945 +g29947 +S'yet' +p29949 +tp29950 +a(g29947 +g29949 +S'giuliano' +p29951 +tp29952 +a(g29949 +g29951 +S'had' +p29953 +tp29954 +a(g29951 +g29953 +S'remained' +p29955 +tp29956 +a(g29953 +g29955 +S'home' +p29957 +tp29958 +a(g29955 +g29957 +S'to' +p29959 +tp29960 +a(g29957 +g29959 +S'nurse' +p29961 +tp29962 +a(g29959 +g29961 +S'a' +p29963 +tp29964 +a(g29961 +g29963 +S'leg' +p29965 +tp29966 +a(g29963 +g29965 +S'wound.' +p29967 +tp29968 +a(g29965 +g29967 +S'wanting' +p29969 +tp29970 +a(g29967 +g29969 +S'to' +p29971 +tp29972 +a(g29969 +g29971 +S'avoid' +p29973 +tp29974 +a(g29971 +g29973 +S'a' +p29975 +tp29976 +a(g29973 +g29975 +S'possible' +p29977 +tp29978 +a(g29975 +g29977 +S'escape' +p29979 +tp29980 +a(g29977 +g29979 +S'by' +p29981 +tp29982 +a(g29979 +g29981 +S'giuliano,' +p29983 +tp29984 +a(g29981 +g29983 +S'the' +p29985 +tp29986 +a(g29983 +g29985 +S'conspirators' +p29987 +tp29988 +a(g29985 +g29987 +S'postponed' +p29989 +tp29990 +a(g29987 +g29989 +S'their' +p29991 +tp29992 +a(g29989 +g29991 +S'assault' +p29993 +tp29994 +a(g29991 +g29993 +S'until' +p29995 +tp29996 +a(g29993 +g29995 +S'sunday' +p29997 +tp29998 +a(g29995 +g29997 +S'when' +p29999 +tp30000 +a(g29997 +g29999 +S'both' +p30001 +tp30002 +a(g29999 +g30001 +S'brothers' +p30003 +tp30004 +a(g30001 +g30003 +S'would' +p30005 +tp30006 +a(g30003 +g30005 +S'surely' +p30007 +tp30008 +a(g30005 +g30007 +S'be' +p30009 +tp30010 +a(g30007 +g30009 +S'at' +p30011 +tp30012 +a(g30009 +g30011 +S'the' +p30013 +tp30014 +a(g30011 +g30013 +S'morning' +p30015 +tp30016 +a(g30013 +g30015 +S'service.' +p30017 +tp30018 +a(g30015 +g30017 +S'there,' +p30019 +tp30020 +a(g30017 +g30019 +S'the' +p30021 +tp30022 +a(g30019 +g30021 +S'pazzi' +p30023 +tp30024 +a(g30021 +g30023 +S'henchmen' +p30025 +tp30026 +a(g30023 +g30025 +S'waited' +p30027 +tp30028 +a(g30025 +g30027 +S'for' +p30029 +tp30030 +a(g30027 +g30029 +S'the' +p30031 +tp30032 +a(g30029 +g30031 +S'signal—the' +p30033 +tp30034 +a(g30031 +g30033 +S'priest' +p30035 +tp30036 +a(g30033 +g30035 +S'raising' +p30037 +tp30038 +a(g30035 +g30037 +S'the' +p30039 +tp30040 +a(g30037 +g30039 +S'host—before' +p30041 +tp30042 +a(g30039 +g30041 +S'attacking.' +p30043 +tp30044 +a(g30041 +g30043 +S'lorenzo' +p30045 +tp30046 +a(g30043 +g30045 +S'survived,' +p30047 +tp30048 +a(g30045 +g30047 +S'escaping' +p30049 +tp30050 +a(g30047 +g30049 +S'with' +p30051 +tp30052 +a(g30049 +g30051 +S'only' +p30053 +tp30054 +a(g30051 +g30053 +S'minor' +p30055 +tp30056 +a(g30053 +g30055 +S'injuries,' +p30057 +tp30058 +a(g30055 +g30057 +S'but' +p30059 +tp30060 +a(g30057 +g30059 +S'giuliano' +p30061 +tp30062 +a(g30059 +g30061 +S'was' +p30063 +tp30064 +a(g30061 +g30063 +S'instantly' +p30065 +tp30066 +a(g30063 +g30065 +S'killed.' +p30067 +tp30068 +a(g30065 +g30067 +S'to' +p30069 +tp30070 +a(g30067 +g30069 +S'revenge' +p30071 +tp30072 +a(g30069 +g30071 +S'his' +p30073 +tp30074 +a(g30071 +g30073 +S'brother,' +p30075 +tp30076 +a(g30073 +g30075 +S'lorenzo' +p30077 +tp30078 +a(g30075 +g30077 +S'strangled' +p30079 +tp30080 +a(g30077 +g30079 +S'the' +p30081 +tp30082 +a(g30079 +g30081 +S'last' +p30083 +tp30084 +a(g30081 +g30083 +S'bit' +p30085 +tp30086 +a(g30083 +g30085 +S'of' +p30087 +tp30088 +a(g30085 +g30087 +S'power' +p30089 +tp30090 +a(g30087 +g30089 +S'out' +p30091 +tp30092 +a(g30089 +g30091 +S'of' +p30093 +tp30094 +a(g30091 +g30093 +S'his' +p30095 +tp30096 +a(g30093 +g30095 +S'enemies,' +p30097 +tp30098 +a(g30095 +g30097 +S'murdered' +p30099 +tp30100 +a(g30097 +g30099 +S'the' +p30101 +tp30102 +a(g30099 +g30101 +S'pazzi' +p30103 +tp30104 +a(g30101 +g30103 +S'men,' +p30105 +tp30106 +a(g30103 +g30105 +S'banished' +p30107 +tp30108 +a(g30105 +g30107 +S'their' +p30109 +tp30110 +a(g30107 +g30109 +S'women,' +p30111 +tp30112 +a(g30109 +g30111 +S'and' +p30113 +tp30114 +a(g30111 +g30113 +S'imprisoned' +p30115 +tp30116 +a(g30113 +g30115 +S'their' +p30117 +tp30118 +a(g30115 +g30117 +S'relatives.' +p30119 +tp30120 +a(g30117 +g30119 +S'the' +p30121 +tp30122 +a(g30119 +g30121 +S'effect' +p30123 +tp30124 +a(g30121 +g30123 +S'of' +p30125 +tp30126 +a(g30123 +g30125 +S'the' +p30127 +tp30128 +a(g30125 +g30127 +S'loosely' +p30129 +tp30130 +a(g30127 +g30129 +S'structured' +p30131 +tp30132 +a(g30129 +g30131 +S'neoclassical' +p30133 +tp30134 +a(g30131 +g30133 +S'style' +p30135 +tp30136 +a(g30133 +g30135 +S'depended' +p30137 +tp30138 +a(g30135 +g30137 +S'upon' +p30139 +tp30140 +a(g30137 +g30139 +S'a' +p30141 +tp30142 +a(g30139 +g30141 +S'foundation' +p30143 +tp30144 +a(g30141 +g30143 +S'garment' +p30145 +tp30146 +a(g30143 +g30145 +S'that' +p30147 +tp30148 +a(g30145 +g30147 +S'pushed' +p30149 +tp30150 +a(g30147 +g30149 +S'the' +p30151 +tp30152 +a(g30149 +g30151 +S'bosom' +p30153 +tp30154 +a(g30151 +g30153 +S'upward.' +p30155 +tp30156 +a(g30153 +g30155 +S'the' +p30157 +tp30158 +a(g30155 +g30157 +S'corset' +p30159 +tp30160 +a(g30157 +g30159 +S'pictured' +p30161 +tp30162 +a(g30159 +g30161 +S'here' +p30163 +tp30164 +a(g30161 +g30163 +S'is' +p30165 +tp30166 +a(g30163 +g30165 +S'made' +p30167 +tp30168 +a(g30165 +g30167 +S'of' +p30169 +tp30170 +a(g30167 +g30169 +S'heavy' +p30171 +tp30172 +a(g30169 +g30171 +S'cotton' +p30173 +tp30174 +a(g30171 +g30173 +S'sateen.' +p30175 +tp30176 +a(g30173 +g30175 +S'the' +p30177 +tp30178 +a(g30175 +g30177 +S'use' +p30179 +tp30180 +a(g30177 +g30179 +S'of' +p30181 +tp30182 +a(g30179 +g30181 +S'straps' +p30183 +tp30184 +a(g30181 +g30183 +S'indicates' +p30185 +tp30186 +a(g30183 +g30185 +S'it' +p30187 +tp30188 +a(g30185 +g30187 +S'was' +p30189 +tp30190 +a(g30187 +g30189 +S'made' +p30191 +tp30192 +a(g30189 +g30191 +S'in' +p30193 +tp30194 +a(g30191 +g30193 +S'the' +p30195 +tp30196 +a(g30193 +g30195 +S'early' +p30197 +tp30198 +a(g30195 +g30197 +S'part' +p30199 +tp30200 +a(g30197 +g30199 +S'of' +p30201 +tp30202 +a(g30199 +g30201 +S'the' +p30203 +tp30204 +a(g30201 +g30203 +S'nineteenth' +p30205 +tp30206 +a(g30203 +g30205 +S'century,' +p30207 +tp30208 +a(g30205 +g30207 +S'about' +p30209 +tp30210 +a(g30207 +g30209 +S'1815,' +p30211 +tp30212 +a(g30209 +g30211 +S'since' +p30213 +tp30214 +a(g30211 +g30213 +S'straps' +p30215 +tp30216 +a(g30213 +g30215 +S'were' +p30217 +tp30218 +a(g30215 +g30217 +S'no' +p30219 +tp30220 +a(g30217 +g30219 +S'longer' +p30221 +tp30222 +a(g30219 +g30221 +S'used' +p30223 +tp30224 +a(g30221 +g30223 +S'on' +p30225 +tp30226 +a(g30223 +g30225 +S'corsets' +p30227 +tp30228 +a(g30225 +g30227 +S'after' +p30229 +tp30230 +a(g30227 +g30229 +S'the' +p30231 +tp30232 +a(g30229 +g30231 +S'1840s.' +p30233 +tp30234 +a(g30231 +g30233 +S'this' +p30235 +tp30236 +a(g30233 +g30235 +S'is' +p30237 +tp30238 +a(g30235 +g30237 +S'an' +p30239 +tp30240 +a(g30237 +g30239 +S'example' +p30241 +tp30242 +a(g30239 +g30241 +S'of' +p30243 +tp30244 +a(g30241 +g30243 +S'a' +p30245 +tp30246 +a(g30243 +g30245 +S'cage-hoop' +p30247 +tp30248 +a(g30245 +g30247 +S'used' +p30249 +tp30250 +a(g30247 +g30249 +S'underneath' +p30251 +tp30252 +a(g30249 +g30251 +S'a' +p30253 +tp30254 +a(g30251 +g30253 +S'skirt' +p30255 +tp30256 +a(g30253 +g30255 +S'to' +p30257 +tp30258 +a(g30255 +g30257 +S'provide' +p30259 +tp30260 +a(g30257 +g30259 +S'fullness' +p30261 +tp30262 +a(g30259 +g30261 +S'at' +p30263 +tp30264 +a(g30261 +g30263 +S'the' +p30265 +tp30266 +a(g30263 +g30265 +S'back' +p30267 +tp30268 +a(g30265 +g30267 +S'of' +p30269 +tp30270 +a(g30267 +g30269 +S'a' +p30271 +tp30272 +a(g30269 +g30271 +S"woman's" +p30273 +tp30274 +a(g30271 +g30273 +S'dress.' +p30275 +tp30276 +a(g30273 +g30275 +S'dated' +p30277 +tp30278 +a(g30275 +g30277 +S'about' +p30279 +tp30280 +a(g30277 +g30279 +S'1865,' +p30281 +tp30282 +a(g30279 +g30281 +S'it' +p30283 +tp30284 +a(g30281 +g30283 +S'is' +p30285 +tp30286 +a(g30283 +g30285 +S'made' +p30287 +tp30288 +a(g30285 +g30287 +S'of' +p30289 +tp30290 +a(g30287 +g30289 +S'half' +p30291 +tp30292 +a(g30289 +g30291 +S'circles' +p30293 +tp30294 +a(g30291 +g30293 +S'of' +p30295 +tp30296 +a(g30293 +g30295 +S'reeds' +p30297 +tp30298 +a(g30295 +g30297 +S'or' +p30299 +tp30300 +a(g30297 +g30299 +S'whalebone' +p30301 +tp30302 +a(g30299 +g30301 +S'riveted' +p30303 +tp30304 +a(g30301 +g30303 +S'to' +p30305 +tp30306 +a(g30303 +g30305 +S'bands' +p30307 +tp30308 +a(g30305 +g30307 +S'of' +p30309 +tp30310 +a(g30307 +g30309 +S'heavy' +p30311 +tp30312 +a(g30309 +g30311 +S'linen' +p30313 +tp30314 +a(g30311 +g30313 +S'tape.' +p30315 +tp30316 +a(g30313 +g30315 +S'it' +p30317 +tp30318 +a(g30315 +g30317 +S'is' +p30319 +tp30320 +a(g30317 +g30319 +S'fastened' +p30321 +tp30322 +a(g30319 +g30321 +S'at' +p30323 +tp30324 +a(g30321 +g30323 +S'the' +p30325 +tp30326 +a(g30323 +g30325 +S'waist' +p30327 +tp30328 +a(g30325 +g30327 +S'with' +p30329 +tp30330 +a(g30327 +g30329 +S'a' +p30331 +tp30332 +a(g30329 +g30331 +S'steel' +p30333 +tp30334 +a(g30331 +g30333 +S'buckle.' +p30335 +tp30336 +a(g30333 +g30335 +S'an' +p30337 +tp30338 +a(g30335 +g30337 +S'important' +p30339 +tp30340 +a(g30337 +g30339 +S'effect' +p30341 +tp30342 +a(g30339 +g30341 +S'of' +p30343 +tp30344 +a(g30341 +g30343 +S'the' +p30345 +tp30346 +a(g30343 +g30345 +S'hoop' +p30347 +tp30348 +a(g30345 +g30347 +S'was' +p30349 +tp30350 +a(g30347 +g30349 +S'the' +p30351 +tp30352 +a(g30349 +g30351 +S'graceful,' +p30353 +tp30354 +a(g30351 +g30353 +S'swinging' +p30355 +tp30356 +a(g30353 +g30355 +S'motion' +p30357 +tp30358 +a(g30355 +g30357 +S'it' +p30359 +tp30360 +a(g30357 +g30359 +S'gave' +p30361 +tp30362 +a(g30359 +g30361 +S'to' +p30363 +tp30364 +a(g30361 +g30363 +S'a' +p30365 +tp30366 +a(g30363 +g30365 +S"woman's" +p30367 +tp30368 +a(g30365 +g30367 +S'skirt' +p30369 +tp30370 +a(g30367 +g30369 +S'as' +p30371 +tp30372 +a(g30369 +g30371 +S'she' +p30373 +tp30374 +a(g30371 +g30373 +S'walked.' +p30375 +tp30376 +a(g30373 +g30375 +S'poised' +p30377 +tp30378 +a(g30375 +g30377 +S'tiptoe' +p30379 +tp30380 +a(g30377 +g30379 +S'on' +p30381 +tp30382 +a(g30379 +g30381 +S'a' +p30383 +tp30384 +a(g30381 +g30383 +S'globe,' +p30385 +tp30386 +a(g30383 +g30385 +S'this' +p30387 +tp30388 +a(g30385 +g30387 +S'chubby' +p30389 +tp30390 +a(g30387 +g30389 +S'cherub' +p30391 +tp30392 +a(g30389 +g30391 +S'seems' +p30393 +tp30394 +a(g30391 +g30393 +S'to' +p30395 +tp30396 +a(g30393 +g30395 +S'pirouette,' +p30397 +tp30398 +a(g30395 +g30397 +S'inviting' +p30399 +tp30400 +a(g30397 +g30399 +S'interest' +p30401 +tp30402 +a(g30399 +g30401 +S'from' +p30403 +tp30404 +a(g30401 +g30403 +S'all' +p30405 +tp30406 +a(g30403 +g30405 +S'angles.' +p30407 +tp30408 +a(g30405 +g30407 +S'his' +p30409 +tp30410 +a(g30407 +g30409 +S'complex' +p30411 +tp30412 +a(g30409 +g30411 +S'movement' +p30413 +tp30414 +a(g30411 +g30413 +S'in' +p30415 +tp30416 +a(g30413 +g30415 +S'space' +p30417 +tp30418 +a(g30415 +g30417 +S'is' +p30419 +tp30420 +a(g30417 +g30419 +S'remarkable' +p30421 +tp30422 +a(g30419 +g30421 +S'for' +p30423 +tp30424 +a(g30421 +g30423 +S'a' +p30425 +tp30426 +a(g30423 +g30425 +S'date' +p30427 +tp30428 +a(g30425 +g30427 +S'so' +p30429 +tp30430 +a(g30427 +g30429 +S'early' +p30431 +tp30432 +a(g30429 +g30431 +S'in' +p30433 +tp30434 +a(g30431 +g30433 +S'the' +p30435 +tp30436 +a(g30433 +g30435 +S'renaissance.' +p30437 +tp30438 +a(g30435 +g30437 +S'also' +p30439 +tp30440 +a(g30437 +g30439 +S'remarkable' +p30441 +tp30442 +a(g30439 +g30441 +S'is' +p30443 +tp30444 +a(g30441 +g30443 +S'that' +p30445 +tp30446 +a(g30443 +g30445 +S'his' +p30447 +tp30448 +a(g30445 +g30447 +S'projecting' +p30449 +tp30450 +a(g30447 +g30449 +S'limbs' +p30451 +tp30452 +a(g30449 +g30451 +S'have' +p30453 +tp30454 +a(g30451 +g30453 +S'survived' +p30455 +tp30456 +a(g30453 +g30455 +S'for' +p30457 +tp30458 +a(g30455 +g30457 +S'more' +p30459 +tp30460 +a(g30457 +g30459 +S'than' +p30461 +tp30462 +a(g30459 +g30461 +S'five' +p30463 +tp30464 +a(g30461 +g30463 +S'hundred' +p30465 +tp30466 +a(g30463 +g30465 +S'years.' +p30467 +tp30468 +a(g30465 +g30467 +S'this' +p30469 +tp30470 +a(g30467 +g30469 +S'cupid' +p30471 +tp30472 +a(g30469 +g30471 +S'is' +p30473 +tp30474 +a(g30471 +g30473 +S'indeed' +p30475 +tp30476 +a(g30473 +g30475 +S'a' +p30477 +tp30478 +a(g30475 +g30477 +S'rarity—a' +p30479 +tp30480 +a(g30477 +g30479 +S'model' +p30481 +tp30482 +a(g30479 +g30481 +S'in' +p30483 +tp30484 +a(g30481 +g30483 +S'unfired' +p30485 +tp30486 +a(g30483 +g30485 +S'clay.' +p30487 +tp30488 +a(g30485 +g30487 +S'it' +p30489 +tp30490 +a(g30487 +g30489 +S'is' +p30491 +tp30492 +a(g30489 +g30491 +S'possible' +p30493 +tp30494 +a(g30491 +g30493 +S'that' +p30495 +tp30496 +a(g30493 +g30495 +S'verrocchio' +p30497 +tp30498 +a(g30495 +g30497 +S'was' +p30499 +tp30500 +a(g30497 +g30499 +S"florence's" +p30501 +tp30502 +a(g30499 +g30501 +S'leading' +p30503 +tp30504 +a(g30501 +g30503 +S'sculptor' +p30505 +tp30506 +a(g30503 +g30505 +S'in' +p30507 +tp30508 +a(g30505 +g30507 +S'the' +p30509 +tp30510 +a(g30507 +g30509 +S'second' +p30511 +tp30512 +a(g30509 +g30511 +S'half' +p30513 +tp30514 +a(g30511 +g30513 +S'of' +p30515 +tp30516 +a(g30513 +g30515 +S'the' +p30517 +tp30518 +a(g30515 +g30517 +S'fifteenth' +p30519 +tp30520 +a(g30517 +g30519 +S'century.' +p30521 +tp30522 +a(g30519 +g30521 +S'versatile' +p30523 +tp30524 +a(g30521 +g30523 +S'and' +p30525 +tp30526 +a(g30523 +g30525 +S'inventive,' +p30527 +tp30528 +a(g30525 +g30527 +S'he' +p30529 +tp30530 +a(g30527 +g30529 +S'was' +p30531 +tp30532 +a(g30529 +g30531 +S'also' +p30533 +tp30534 +a(g30531 +g30533 +S'a' +p30535 +tp30536 +a(g30533 +g30535 +S'painter' +p30537 +tp30538 +a(g30535 +g30537 +S'and' +p30539 +tp30540 +a(g30537 +g30539 +S'goldsmith.' +p30541 +tp30542 +a(g30539 +g30541 +S'during' +p30543 +tp30544 +a(g30541 +g30543 +S'the' +p30545 +tp30546 +a(g30543 +g30545 +S'1890s,' +p30547 +tp30548 +a(g30545 +g30547 +S'women' +p30549 +tp30550 +a(g30547 +g30549 +S'participated' +p30551 +tp30552 +a(g30549 +g30551 +S'in' +p30553 +tp30554 +a(g30551 +g30553 +S'sports' +p30555 +tp30556 +a(g30553 +g30555 +S'to' +p30557 +tp30558 +a(g30555 +g30557 +S'a' +p30559 +tp30560 +a(g30557 +g30559 +S'greater' +p30561 +tp30562 +a(g30559 +g30561 +S'extent' +p30563 +tp30564 +a(g30561 +g30563 +S'than' +p30565 +tp30566 +a(g30563 +g30565 +S'earlier' +p30567 +tp30568 +a(g30565 +g30567 +S'in' +p30569 +tp30570 +a(g30567 +g30569 +S'the' +p30571 +tp30572 +a(g30569 +g30571 +S'century.' +p30573 +tp30574 +a(g30571 +g30573 +S'bicycling' +p30575 +tp30576 +a(g30573 +g30575 +S'had' +p30577 +tp30578 +a(g30575 +g30577 +S'gained' +p30579 +tp30580 +a(g30577 +g30579 +S'in' +p30581 +tp30582 +a(g30579 +g30581 +S'popularity' +p30583 +tp30584 +a(g30581 +g30583 +S'and' +p30585 +tp30586 +a(g30583 +g30585 +S'helped' +p30587 +tp30588 +a(g30585 +g30587 +S'make' +p30589 +tp30590 +a(g30587 +g30589 +S'pants' +p30591 +tp30592 +a(g30589 +g30591 +S'or' +p30593 +tp30594 +a(g30591 +g30593 +S'"bloomers"' +p30595 +tp30596 +a(g30593 +g30595 +S'acceptable' +p30597 +tp30598 +a(g30595 +g30597 +S'for' +p30599 +tp30600 +a(g30597 +g30599 +S"women's" +p30601 +tp30602 +a(g30599 +g30601 +S'costumes.' +p30603 +tp30604 +a(g30601 +g30603 +S'the' +p30605 +tp30606 +a(g30603 +g30605 +S'word' +p30607 +tp30608 +a(g30605 +g30607 +S'"bloomers"' +p30609 +tp30610 +a(g30607 +g30609 +S'is' +p30611 +tp30612 +a(g30609 +g30611 +S'taken' +p30613 +tp30614 +a(g30611 +g30613 +S'from' +p30615 +tp30616 +a(g30613 +g30615 +S'the' +p30617 +tp30618 +a(g30615 +g30617 +S'name' +p30619 +tp30620 +a(g30617 +g30619 +S'of' +p30621 +tp30622 +a(g30619 +g30621 +S'mrs.' +p30623 +tp30624 +a(g30621 +g30623 +S'amelia' +p30625 +tp30626 +a(g30623 +g30625 +S'bloomer' +p30627 +tp30628 +a(g30625 +g30627 +S'of' +p30629 +tp30630 +a(g30627 +g30629 +S'new' +p30631 +tp30632 +a(g30629 +g30631 +S'york,' +p30633 +tp30634 +a(g30631 +g30633 +S'who' +p30635 +tp30636 +a(g30633 +g30635 +S'was' +p30637 +tp30638 +a(g30635 +g30637 +S'an' +p30639 +tp30640 +a(g30637 +g30639 +S'early' +p30641 +tp30642 +a(g30639 +g30641 +S'advocate' +p30643 +tp30644 +a(g30641 +g30643 +S'of' +p30645 +tp30646 +a(g30643 +g30645 +S"women's" +p30647 +tp30648 +a(g30645 +g30647 +S'rights.' +p30649 +tp30650 +a(g30647 +g30649 +S'this' +p30651 +tp30652 +a(g30649 +g30651 +S'"gymnasium' +p30653 +tp30654 +a(g30651 +g30653 +S'suit,"' +p30655 +tp30656 +a(g30653 +g30655 +S'dated' +p30657 +tp30658 +a(g30655 +g30657 +S'1895,' +p30659 +tp30660 +a(g30657 +g30659 +S'is' +p30661 +tp30662 +a(g30659 +g30661 +S'made' +p30663 +tp30664 +a(g30661 +g30663 +S'of' +p30665 +tp30666 +a(g30663 +g30665 +S'black' +p30667 +tp30668 +a(g30665 +g30667 +S'cashmere' +p30669 +tp30670 +a(g30667 +g30669 +S'wool' +p30671 +tp30672 +a(g30669 +g30671 +S'trimmed' +p30673 +tp30674 +a(g30671 +g30673 +S'with' +p30675 +tp30676 +a(g30673 +g30675 +S'bands' +p30677 +tp30678 +a(g30675 +g30677 +S'of' +p30679 +tp30680 +a(g30677 +g30679 +S'scarlet' +p30681 +tp30682 +a(g30679 +g30681 +S'cashmere' +p30683 +tp30684 +a(g30681 +g30683 +S'and' +p30685 +tp30686 +a(g30683 +g30685 +S'black' +p30687 +tp30688 +a(g30685 +g30687 +S'soutache' +p30689 +tp30690 +a(g30687 +g30689 +S'--' +p30691 +tp30692 +a(g30689 +g30691 +S'a' +p30693 +tp30694 +a(g30691 +g30693 +S'flat,' +p30695 +tp30696 +a(g30693 +g30695 +S'narrow' +p30697 +tp30698 +a(g30695 +g30697 +S'ornamental' +p30699 +tp30700 +a(g30697 +g30699 +S'braid' +p30701 +tp30702 +a(g30699 +g30701 +S'seen' +p30703 +tp30704 +a(g30701 +g30703 +S'here' +p30705 +tp30706 +a(g30703 +g30705 +S'at' +p30707 +tp30708 +a(g30705 +g30707 +S'the' +p30709 +tp30710 +a(g30707 +g30709 +S'borders' +p30711 +tp30712 +a(g30709 +g30711 +S'of' +p30713 +tp30714 +a(g30711 +g30713 +S'the' +p30715 +tp30716 +a(g30713 +g30715 +S'scarlet' +p30717 +tp30718 +a(g30715 +g30717 +S'trim.' +p30719 +tp30720 +a(g30717 +g30719 +S'plain,' +p30721 +tp30722 +a(g30719 +g30721 +S'full' +p30723 +tp30724 +a(g30721 +g30723 +S'bloomers,' +p30725 +tp30726 +a(g30723 +g30725 +S'worn' +p30727 +tp30728 +a(g30725 +g30727 +S'under' +p30729 +tp30730 +a(g30727 +g30729 +S'the' +p30731 +tp30732 +a(g30729 +g30731 +S'skirt,' +p30733 +tp30734 +a(g30731 +g30733 +S'have' +p30735 +tp30736 +a(g30733 +g30735 +S'elastic' +p30737 +tp30738 +a(g30735 +g30737 +S'bands' +p30739 +tp30740 +a(g30737 +g30739 +S'at' +p30741 +tp30742 +a(g30739 +g30741 +S'the' +p30743 +tp30744 +a(g30741 +g30743 +S'bottom.' +p30745 +tp30746 +a(g30743 +g30745 +S'the' +p30747 +tp30748 +a(g30745 +g30747 +S'costume' +p30749 +tp30750 +a(g30747 +g30749 +S'includes' +p30751 +tp30752 +a(g30749 +g30751 +S'a' +p30753 +tp30754 +a(g30751 +g30753 +S'red' +p30755 +tp30756 +a(g30753 +g30755 +S'and' +p30757 +tp30758 +a(g30755 +g30757 +S'black' +p30759 +tp30760 +a(g30757 +g30759 +S'plaid' +p30761 +tp30762 +a(g30759 +g30761 +S'double' +p30763 +tp30764 +a(g30761 +g30763 +S'cape.' +p30765 +tp30766 +a(g30763 +g30765 +S'sports' +p30767 +tp30768 +a(g30765 +g30767 +S'costumes' +p30769 +tp30770 +a(g30767 +g30769 +S'symbolized' +p30771 +tp30772 +a(g30769 +g30771 +S'a' +p30773 +tp30774 +a(g30771 +g30773 +S'new' +p30775 +tp30776 +a(g30773 +g30775 +S'freedom' +p30777 +tp30778 +a(g30775 +g30777 +S'and' +p30779 +tp30780 +a(g30777 +g30779 +S'sense' +p30781 +tp30782 +a(g30779 +g30781 +S'of' +p30783 +tp30784 +a(g30781 +g30783 +S'change' +p30785 +tp30786 +a(g30783 +g30785 +S'that' +p30787 +tp30788 +a(g30785 +g30787 +S'was' +p30789 +tp30790 +a(g30787 +g30789 +S'in' +p30791 +tp30792 +a(g30789 +g30791 +S'the' +p30793 +tp30794 +a(g30791 +g30793 +S'air' +p30795 +tp30796 +a(g30793 +g30795 +S'at' +p30797 +tp30798 +a(g30795 +g30797 +S'the' +p30799 +tp30800 +a(g30797 +g30799 +S'end' +p30801 +tp30802 +a(g30799 +g30801 +S'of' +p30803 +tp30804 +a(g30801 +g30803 +S'the' +p30805 +tp30806 +a(g30803 +g30805 +S'nineteenth' +p30807 +tp30808 +a(g30805 +g30807 +S'century.' +p30809 +tp30810 +a(g30807 +g30809 +S'while' +p30811 +tp30812 +a(g30809 +g30811 +S'the' +p30813 +tp30814 +a(g30811 +g30813 +S'bustle' +p30815 +tp30816 +a(g30813 +g30815 +S'continued' +p30817 +tp30818 +a(g30815 +g30817 +S'to' +p30819 +tp30820 +a(g30817 +g30819 +S'be' +p30821 +tp30822 +a(g30819 +g30821 +S'fashionable' +p30823 +tp30824 +a(g30821 +g30823 +S'into' +p30825 +tp30826 +a(g30823 +g30825 +S'the' +p30827 +tp30828 +a(g30825 +g30827 +S'1890s,' +p30829 +tp30830 +a(g30827 +g30829 +S'a' +p30831 +tp30832 +a(g30829 +g30831 +S'new' +p30833 +tp30834 +a(g30831 +g30833 +S'style,' +p30835 +tp30836 +a(g30833 +g30835 +S'called' +p30837 +tp30838 +a(g30835 +g30837 +S'the' +p30839 +tp30840 +a(g30837 +g30839 +S'"hourglass' +p30841 +tp30842 +a(g30839 +g30841 +S'look,"' +p30843 +tp30844 +a(g30841 +g30843 +S'began' +p30845 +tp30846 +a(g30843 +g30845 +S'to' +p30847 +tp30848 +a(g30845 +g30847 +S'emerge.' +p30849 +tp30850 +a(g30847 +g30849 +S'in' +p30851 +tp30852 +a(g30849 +g30851 +S'this' +p30853 +tp30854 +a(g30851 +g30853 +S'dress,' +p30855 +tp30856 +a(g30853 +g30855 +S'dated' +p30857 +tp30858 +a(g30855 +g30857 +S'about' +p30859 +tp30860 +a(g30857 +g30859 +S'1893,' +p30861 +tp30862 +a(g30859 +g30861 +S'the' +p30863 +tp30864 +a(g30861 +g30863 +S'hourglass' +p30865 +tp30866 +a(g30863 +g30865 +S'effect' +p30867 +tp30868 +a(g30865 +g30867 +S'of' +p30869 +tp30870 +a(g30867 +g30869 +S'a' +p30871 +tp30872 +a(g30869 +g30871 +S'narrow' +p30873 +tp30874 +a(g30871 +g30873 +S'waist' +p30875 +tp30876 +a(g30873 +g30875 +S'was' +p30877 +tp30878 +a(g30875 +g30877 +S'achieved' +p30879 +tp30880 +a(g30877 +g30879 +S'by' +p30881 +tp30882 +a(g30879 +g30881 +S'padding' +p30883 +tp30884 +a(g30881 +g30883 +S'the' +p30885 +tp30886 +a(g30883 +g30885 +S'hips' +p30887 +tp30888 +a(g30885 +g30887 +S'and' +p30889 +tp30890 +a(g30887 +g30889 +S'widening' +p30891 +tp30892 +a(g30889 +g30891 +S'the' +p30893 +tp30894 +a(g30891 +g30893 +S'shoulders.' +p30895 +tp30896 +a(g30893 +g30895 +S'the' +p30897 +tp30898 +a(g30895 +g30897 +S'balloon' +p30899 +tp30900 +a(g30897 +g30899 +S'sleeves' +p30901 +tp30902 +a(g30899 +g30901 +S'and' +p30903 +tp30904 +a(g30901 +g30903 +S'ruffles' +p30905 +tp30906 +a(g30903 +g30905 +S'seen' +p30907 +tp30908 +a(g30905 +g30907 +S'here' +p30909 +tp30910 +a(g30907 +g30909 +S'are' +p30911 +tp30912 +a(g30909 +g30911 +S'silk.' +p30913 +tp30914 +a(g30911 +g30913 +S'the' +p30915 +tp30916 +a(g30913 +g30915 +S'decorative' +p30917 +tp30918 +a(g30915 +g30917 +S'band' +p30919 +tp30920 +a(g30917 +g30919 +S'at' +p30921 +tp30922 +a(g30919 +g30921 +S'the' +p30923 +tp30924 +a(g30921 +g30923 +S'bottom' +p30925 +tp30926 +a(g30923 +g30925 +S'of' +p30927 +tp30928 +a(g30925 +g30927 +S'the' +p30929 +tp30930 +a(g30927 +g30929 +S'skirt' +p30931 +tp30932 +a(g30929 +g30931 +S'is' +p30933 +tp30934 +a(g30931 +g30933 +S'embroidered' +p30935 +tp30936 +a(g30933 +g30935 +S'black' +p30937 +tp30938 +a(g30935 +g30937 +S'velvet.' +p30939 +tp30940 +a(g30937 +g30939 +S'the' +p30941 +tp30942 +a(g30939 +g30941 +S'designs' +p30943 +tp30944 +a(g30941 +g30943 +S'of' +p30945 +tp30946 +a(g30943 +g30945 +S'charles' +p30947 +tp30948 +a(g30945 +g30947 +S'frederick' +p30949 +tp30950 +a(g30947 +g30949 +S'worth' +p30951 +tp30952 +a(g30949 +g30951 +S'in' +p30953 +tp30954 +a(g30951 +g30953 +S'paris' +p30955 +tp30956 +a(g30953 +g30955 +S'were' +p30957 +tp30958 +a(g30955 +g30957 +S'enormously' +p30959 +tp30960 +a(g30957 +g30959 +S'influential' +p30961 +tp30962 +a(g30959 +g30961 +S'at' +p30963 +tp30964 +a(g30961 +g30963 +S'this' +p30965 +tp30966 +a(g30963 +g30965 +S'time,' +p30967 +tp30968 +a(g30965 +g30967 +S'owing' +p30969 +tp30970 +a(g30967 +g30969 +S'to' +p30971 +tp30972 +a(g30969 +g30971 +S'fashion' +p30973 +tp30974 +a(g30971 +g30973 +S'magazines' +p30975 +tp30976 +a(g30973 +g30975 +S'such' +p30977 +tp30978 +a(g30975 +g30977 +S'as' +p30979 +tp30980 +a(g30977 +g30979 +S'the' +p30981 +tp30982 +a(g30979 +g30981 +S'popular' +p30983 +tp30984 +a(g30981 +g30983 +S'florentine' +p30985 +tp30986 +a(g30983 +g30985 +S'subject' +p30987 +tp30988 +a(g30985 +g30987 +S'of' +p30989 +tp30990 +a(g30987 +g30989 +S'the' +p30991 +tp30992 +a(g30989 +g30991 +S'young' +p30993 +tp30994 +a(g30991 +g30993 +S'john' +p30995 +tp30996 +a(g30993 +g30995 +S'the' +p30997 +tp30998 +a(g30995 +g30997 +S'baptist' +p30999 +tp31000 +a(g30997 +g30999 +S'is' +p31001 +tp31002 +a(g30999 +g31001 +S'here' +p31003 +tp31004 +a(g31001 +g31003 +S'presented' +p31005 +tp31006 +a(g31003 +g31005 +S'in' +p31007 +tp31008 +a(g31005 +g31007 +S'a' +p31009 +tp31010 +a(g31007 +g31009 +S'different' +p31011 +tp31012 +a(g31009 +g31011 +S'conception' +p31013 +tp31014 +a(g31011 +g31013 +S'from' +p31015 +tp31016 +a(g31013 +g31015 +S'that' +p31017 +tp31018 +a(g31015 +g31017 +S'of' +p31019 +tp31020 +a(g31017 +g31019 +S'most' +p31021 +tp31022 +a(g31019 +g31021 +S'formal' +p31023 +tp31024 +a(g31021 +g31023 +S'eighteenth-century' +p31025 +tp31026 +a(g31023 +g31025 +S'dresses' +p31027 +tp31028 +a(g31025 +g31027 +S'were' +p31029 +tp31030 +a(g31027 +g31029 +S'open' +p31031 +tp31032 +a(g31029 +g31031 +S'in' +p31033 +tp31034 +a(g31031 +g31033 +S'front,' +p31035 +tp31036 +a(g31033 +g31035 +S'showing' +p31037 +tp31038 +a(g31035 +g31037 +S'a' +p31039 +tp31040 +a(g31037 +g31039 +S'petticoat' +p31041 +tp31042 +a(g31039 +g31041 +S'worn' +p31043 +tp31044 +a(g31041 +g31043 +S'beneath.' +p31045 +tp31046 +a(g31043 +g31045 +S'the' +p31047 +tp31048 +a(g31045 +g31047 +S'petticoat' +p31049 +tp31050 +a(g31047 +g31049 +S'was' +p31051 +tp31052 +a(g31049 +g31051 +S'constructed' +p31053 +tp31054 +a(g31051 +g31053 +S'separately' +p31055 +tp31056 +a(g31053 +g31055 +S'from' +p31057 +tp31058 +a(g31055 +g31057 +S'the' +p31059 +tp31060 +a(g31057 +g31059 +S'dress' +p31061 +tp31062 +a(g31059 +g31061 +S'but' +p31063 +tp31064 +a(g31061 +g31063 +S'was' +p31065 +tp31066 +a(g31063 +g31065 +S'not' +p31067 +tp31068 +a(g31065 +g31067 +S'considered' +p31069 +tp31070 +a(g31067 +g31069 +S'an' +p31071 +tp31072 +a(g31069 +g31071 +S'undergarment.' +p31073 +tp31074 +a(g31071 +g31073 +S'a' +p31075 +tp31076 +a(g31073 +g31075 +S'quilted' +p31077 +tp31078 +a(g31075 +g31077 +S'satin' +p31079 +tp31080 +a(g31077 +g31079 +S'petticoat' +p31081 +tp31082 +a(g31079 +g31081 +S'is' +p31083 +tp31084 +a(g31081 +g31083 +S'shown' +p31085 +tp31086 +a(g31083 +g31085 +S'in' +p31087 +tp31088 +a(g31085 +g31087 +S'this' +p31089 +tp31090 +a(g31087 +g31089 +S'1740' +p31091 +tp31092 +a(g31089 +g31091 +S'costume.' +p31093 +tp31094 +a(g31091 +g31093 +S'oval-shaped' +p31095 +tp31096 +a(g31093 +g31095 +S'hoops,' +p31097 +tp31098 +a(g31095 +g31097 +S'called' +p31099 +tp31100 +a(g31097 +g31099 +S'the' +p31101 +tp31102 +a(g31099 +g31101 +S'development' +p31103 +tp31104 +a(g31101 +g31103 +S'of' +p31105 +tp31106 +a(g31103 +g31105 +S'industrialization' +p31107 +tp31108 +a(g31105 +g31107 +S'during' +p31109 +tp31110 +a(g31107 +g31109 +S'the' +p31111 +tp31112 +a(g31109 +g31111 +S'nineteenth' +p31113 +tp31114 +a(g31111 +g31113 +S'century' +p31115 +tp31116 +a(g31113 +g31115 +S'led' +p31117 +tp31118 +a(g31115 +g31117 +S'to' +p31119 +tp31120 +a(g31117 +g31119 +S'an' +p31121 +tp31122 +a(g31119 +g31121 +S'abundance' +p31123 +tp31124 +a(g31121 +g31123 +S'of' +p31125 +tp31126 +a(g31123 +g31125 +S'manufactured' +p31127 +tp31128 +a(g31125 +g31127 +S'goods,' +p31129 +tp31130 +a(g31127 +g31129 +S'including' +p31131 +tp31132 +a(g31129 +g31131 +S'textiles,' +p31133 +tp31134 +a(g31131 +g31133 +S'and' +p31135 +tp31136 +a(g31133 +g31135 +S'contributed' +p31137 +tp31138 +a(g31135 +g31137 +S'to' +p31139 +tp31140 +a(g31137 +g31139 +S'reducing' +p31141 +tp31142 +a(g31139 +g31141 +S'the' +p31143 +tp31144 +a(g31141 +g31143 +S'overall' +p31145 +tp31146 +a(g31143 +g31145 +S'cost' +p31147 +tp31148 +a(g31145 +g31147 +S'of' +p31149 +tp31150 +a(g31147 +g31149 +S'clothing.' +p31151 +tp31152 +a(g31149 +g31151 +S'as' +p31153 +tp31154 +a(g31151 +g31153 +S'a' +p31155 +tp31156 +a(g31153 +g31155 +S'result,' +p31157 +tp31158 +a(g31155 +g31157 +S'great' +p31159 +tp31160 +a(g31157 +g31159 +S'variety' +p31161 +tp31162 +a(g31159 +g31161 +S'in' +p31163 +tp31164 +a(g31161 +g31163 +S'fashions' +p31165 +tp31166 +a(g31163 +g31165 +S'was' +p31167 +tp31168 +a(g31165 +g31167 +S'feasible.' +p31169 +tp31170 +a(g31167 +g31169 +S'a' +p31171 +tp31172 +a(g31169 +g31171 +S'well-to-do' +p31173 +tp31174 +a(g31171 +g31173 +S'woman' +p31175 +tp31176 +a(g31173 +g31175 +S'could' +p31177 +tp31178 +a(g31175 +g31177 +S'have' +p31179 +tp31180 +a(g31177 +g31179 +S'a' +p31181 +tp31182 +a(g31179 +g31181 +S'selection' +p31183 +tp31184 +a(g31181 +g31183 +S'of' +p31185 +tp31186 +a(g31183 +g31185 +S'dresses' +p31187 +tp31188 +a(g31185 +g31187 +S'for' +p31189 +tp31190 +a(g31187 +g31189 +S'different' +p31191 +tp31192 +a(g31189 +g31191 +S'social' +p31193 +tp31194 +a(g31191 +g31193 +S'occasions.' +p31195 +tp31196 +a(g31193 +g31195 +S'this' +p31197 +tp31198 +a(g31195 +g31197 +S'is' +p31199 +tp31200 +a(g31197 +g31199 +S'an' +p31201 +tp31202 +a(g31199 +g31201 +S'example' +p31203 +tp31204 +a(g31201 +g31203 +S'of' +p31205 +tp31206 +a(g31203 +g31205 +S'a' +p31207 +tp31208 +a(g31205 +g31207 +S'"visiting' +p31209 +tp31210 +a(g31207 +g31209 +S'dress,"' +p31211 +tp31212 +a(g31209 +g31211 +S'dated' +p31213 +tp31214 +a(g31211 +g31213 +S'about' +p31215 +tp31216 +a(g31213 +g31215 +S'1823.' +p31217 +tp31218 +a(g31215 +g31217 +S'the' +p31219 +tp31220 +a(g31217 +g31219 +S'bodice' +p31221 +tp31222 +a(g31219 +g31221 +S'is' +p31223 +tp31224 +a(g31221 +g31223 +S'neoclassical' +p31225 +tp31226 +a(g31223 +g31225 +S'in' +p31227 +tp31228 +a(g31225 +g31227 +S'style.' +p31229 +tp31230 +a(g31227 +g31229 +S'the' +p31231 +tp31232 +a(g31229 +g31231 +S'sleeves,' +p31233 +tp31234 +a(g31231 +g31233 +S'known' +p31235 +tp31236 +a(g31233 +g31235 +S'as' +p31237 +tp31238 +a(g31235 +g31237 +S'the' +p31239 +tp31240 +a(g31237 +g31239 +S'"leg' +p31241 +tp31242 +a(g31239 +g31241 +S"o'" +p31243 +tp31244 +a(g31241 +g31243 +S'mutton"' +p31245 +tp31246 +a(g31243 +g31245 +S'type,' +p31247 +tp31248 +a(g31245 +g31247 +S'gained' +p31249 +tp31250 +a(g31247 +g31249 +S'popularity,' +p31251 +tp31252 +a(g31249 +g31251 +S'reaching' +p31253 +tp31254 +a(g31251 +g31253 +S'a' +p31255 +tp31256 +a(g31253 +g31255 +S'balloon-like' +p31257 +tp31258 +a(g31255 +g31257 +S'fullness' +p31259 +tp31260 +a(g31257 +g31259 +S'in' +p31261 +tp31262 +a(g31259 +g31261 +S'the' +p31263 +tp31264 +a(g31261 +g31263 +S'1830s.' +p31265 +tp31266 +a(g31263 +g31265 +S'by' +p31267 +tp31268 +a(g31265 +g31267 +S'the' +p31269 +tp31270 +a(g31267 +g31269 +S'middle' +p31271 +tp31272 +a(g31269 +g31271 +S'of' +p31273 +tp31274 +a(g31271 +g31273 +S'the' +p31275 +tp31276 +a(g31273 +g31275 +S'eighteenth' +p31277 +tp31278 +a(g31275 +g31277 +S'century,' +p31279 +tp31280 +a(g31277 +g31279 +S"men's" +p31281 +tp31282 +a(g31279 +g31281 +S'waistcoats' +p31283 +tp31284 +a(g31281 +g31283 +S'were' +p31285 +tp31286 +a(g31283 +g31285 +S'becoming' +p31287 +tp31288 +a(g31285 +g31287 +S'shorter' +p31289 +tp31290 +a(g31287 +g31289 +S'and' +p31291 +tp31292 +a(g31289 +g31291 +S'more' +p31293 +tp31294 +a(g31291 +g31293 +S'open' +p31295 +tp31296 +a(g31293 +g31295 +S'at' +p31297 +tp31298 +a(g31295 +g31297 +S'the' +p31299 +tp31300 +a(g31297 +g31299 +S'center' +p31301 +tp31302 +a(g31299 +g31301 +S'front.' +p31303 +tp31304 +a(g31301 +g31303 +S'this' +p31305 +tp31306 +a(g31303 +g31305 +S'one,' +p31307 +tp31308 +a(g31305 +g31307 +S'dated' +p31309 +tp31310 +a(g31307 +g31309 +S'from' +p31311 +tp31312 +a(g31309 +g31311 +S'about' +p31313 +tp31314 +a(g31311 +g31313 +S'1775' +p31315 +tp31316 +a(g31313 +g31315 +S'to' +p31317 +tp31318 +a(g31315 +g31317 +S'1780,' +p31319 +tp31320 +a(g31317 +g31319 +S'is' +p31321 +tp31322 +a(g31319 +g31321 +S'an' +p31323 +tp31324 +a(g31321 +g31323 +S'example' +p31325 +tp31326 +a(g31323 +g31325 +S'of' +p31327 +tp31328 +a(g31325 +g31327 +S'the' +p31329 +tp31330 +a(g31327 +g31329 +S'shorter-style' +p31331 +tp31332 +a(g31329 +g31331 +S'garment.' +p31333 +tp31334 +a(g31331 +g31333 +S'by' +p31335 +tp31336 +a(g31333 +g31335 +S'1790,' +p31337 +tp31338 +a(g31335 +g31337 +S'waistcoats' +p31339 +tp31340 +a(g31337 +g31339 +S'would' +p31341 +tp31342 +a(g31339 +g31341 +S'be' +p31343 +tp31344 +a(g31341 +g31343 +S'shortened' +p31345 +tp31346 +a(g31343 +g31345 +S'to' +p31347 +tp31348 +a(g31345 +g31347 +S'waist' +p31349 +tp31350 +a(g31347 +g31349 +S'length,' +p31351 +tp31352 +a(g31349 +g31351 +S'and' +p31353 +tp31354 +a(g31351 +g31353 +S'the' +p31355 +tp31356 +a(g31353 +g31355 +S'skirt' +p31357 +tp31358 +a(g31355 +g31357 +S'or' +p31359 +tp31360 +a(g31357 +g31359 +S'"peplum,"' +p31361 +tp31362 +a(g31359 +g31361 +S'seen' +p31363 +tp31364 +a(g31361 +g31363 +S'here,' +p31365 +tp31366 +a(g31363 +g31365 +S'would' +p31367 +tp31368 +a(g31365 +g31367 +S'disappear.' +p31369 +tp31370 +a(g31367 +g31369 +S'the' +p31371 +tp31372 +a(g31369 +g31371 +S'scale' +p31373 +tp31374 +a(g31371 +g31373 +S'and' +p31375 +tp31376 +a(g31373 +g31375 +S'type' +p31377 +tp31378 +a(g31375 +g31377 +S'of' +p31379 +tp31380 +a(g31377 +g31379 +S'decoration' +p31381 +tp31382 +a(g31379 +g31381 +S'also' +p31383 +tp31384 +a(g31381 +g31383 +S'changed,' +p31385 +tp31386 +a(g31383 +g31385 +S'becoming' +p31387 +tp31388 +a(g31385 +g31387 +S'smaller' +p31389 +tp31390 +a(g31387 +g31389 +S'and' +p31391 +tp31392 +a(g31389 +g31391 +S'more' +p31393 +tp31394 +a(g31391 +g31393 +S'delicate.' +p31395 +tp31396 +a(g31393 +g31395 +S'floral' +p31397 +tp31398 +a(g31395 +g31397 +S'patterns' +p31399 +tp31400 +a(g31397 +g31399 +S'and' +p31401 +tp31402 +a(g31399 +g31401 +S'narrow' +p31403 +tp31404 +a(g31401 +g31403 +S'stripes' +p31405 +tp31406 +a(g31403 +g31405 +S'were' +p31407 +tp31408 +a(g31405 +g31407 +S'also' +p31409 +tp31410 +a(g31407 +g31409 +S'common' +p31411 +tp31412 +a(g31409 +g31411 +S'in' +p31413 +tp31414 +a(g31411 +g31413 +S'the' +p31415 +tp31416 +a(g31413 +g31415 +S'fabrics' +p31417 +tp31418 +a(g31415 +g31417 +S'for' +p31419 +tp31420 +a(g31417 +g31419 +S"women's" +p31421 +tp31422 +a(g31419 +g31421 +S'clothing' +p31423 +tp31424 +a(g31421 +g31423 +S'during' +p31425 +tp31426 +a(g31423 +g31425 +S'the' +p31427 +tp31428 +a(g31425 +g31427 +S'1770s.' +p31429 +tp31430 +a(g31427 +g31429 +S'perhaps' +p31431 +tp31432 +a(g31429 +g31431 +S'the' +p31433 +tp31434 +a(g31431 +g31433 +S'best' +p31435 +tp31436 +a(g31433 +g31435 +S'example' +p31437 +tp31438 +a(g31435 +g31437 +S'of' +p31439 +tp31440 +a(g31437 +g31439 +S'a' +p31441 +tp31442 +a(g31439 +g31441 +S'small' +p31443 +tp31444 +a(g31441 +g31443 +S'group,' +p31445 +tp31446 +a(g31443 +g31445 +S'this' +p31447 +tp31448 +a(g31445 +g31447 +S'"bulto"' +p31449 +tp31450 +a(g31447 +g31449 +S'represents' +p31451 +tp31452 +a(g31449 +g31451 +S'saint' +p31453 +tp31454 +a(g31451 +g31453 +S'james' +p31455 +tp31456 +a(g31453 +g31455 +S'santiago,' +p31457 +tp31458 +a(g31455 +g31457 +S'the' +p31459 +tp31460 +a(g31457 +g31459 +S'warrior' +p31461 +tp31462 +a(g31459 +g31461 +S'saint' +p31463 +tp31464 +a(g31461 +g31463 +S'of' +p31465 +tp31466 +a(g31463 +g31465 +S'spain' +p31467 +tp31468 +a(g31465 +g31467 +S'and' +p31469 +tp31470 +a(g31467 +g31469 +S'the' +p31471 +tp31472 +a(g31469 +g31471 +S'patron' +p31473 +tp31474 +a(g31471 +g31473 +S'saint' +p31475 +tp31476 +a(g31473 +g31475 +S'of' +p31477 +tp31478 +a(g31475 +g31477 +S'horses' +p31479 +tp31480 +a(g31477 +g31479 +S'and' +p31481 +tp31482 +a(g31479 +g31481 +S'horsemen.' +p31483 +tp31484 +a(g31481 +g31483 +S'saint' +p31485 +tp31486 +a(g31483 +g31485 +S'james' +p31487 +tp31488 +a(g31485 +g31487 +S'is' +p31489 +tp31490 +a(g31487 +g31489 +S'a' +p31491 +tp31492 +a(g31489 +g31491 +S'national' +p31493 +tp31494 +a(g31491 +g31493 +S'hero' +p31495 +tp31496 +a(g31493 +g31495 +S'in' +p31497 +tp31498 +a(g31495 +g31497 +S'spain,' +p31499 +tp31500 +a(g31497 +g31499 +S'having' +p31501 +tp31502 +a(g31499 +g31501 +S'supposedly' +p31503 +tp31504 +a(g31501 +g31503 +S'caused' +p31505 +tp31506 +a(g31503 +g31505 +S'the' +p31507 +tp31508 +a(g31505 +g31507 +S'spanish' +p31509 +tp31510 +a(g31507 +g31509 +S'victory' +p31511 +tp31512 +a(g31509 +g31511 +S'against' +p31513 +tp31514 +a(g31511 +g31513 +S'the' +p31515 +tp31516 +a(g31513 +g31515 +S'moors' +p31517 +tp31518 +a(g31515 +g31517 +S'in' +p31519 +tp31520 +a(g31517 +g31519 +S'the' +p31521 +tp31522 +a(g31519 +g31521 +S'battle' +p31523 +tp31524 +a(g31521 +g31523 +S'of' +p31525 +tp31526 +a(g31523 +g31525 +S'clavijo' +p31527 +tp31528 +a(g31525 +g31527 +S'in' +p31529 +tp31530 +a(g31527 +g31529 +S'834.' +p31531 +tp31532 +a(g31529 +g31531 +S'according' +p31533 +tp31534 +a(g31531 +g31533 +S'to' +p31535 +tp31536 +a(g31533 +g31535 +S'legend,' +p31537 +tp31538 +a(g31535 +g31537 +S'he' +p31539 +tp31540 +a(g31537 +g31539 +S'is' +p31541 +tp31542 +a(g31539 +g31541 +S'buried' +p31543 +tp31544 +a(g31541 +g31543 +S'at' +p31545 +tp31546 +a(g31543 +g31545 +S'compostela' +p31547 +tp31548 +a(g31545 +g31547 +S'in' +p31549 +tp31550 +a(g31547 +g31549 +S'northwestern' +p31551 +tp31552 +a(g31549 +g31551 +S'spain,' +p31553 +tp31554 +a(g31551 +g31553 +S'perhaps' +p31555 +tp31556 +a(g31553 +g31555 +S'the' +p31557 +tp31558 +a(g31555 +g31557 +S'most' +p31559 +tp31560 +a(g31557 +g31559 +S'famous' +p31561 +tp31562 +a(g31559 +g31561 +S'shrine' +p31563 +tp31564 +a(g31561 +g31563 +S'in' +p31565 +tp31566 +a(g31563 +g31565 +S'europe' +p31567 +tp31568 +a(g31565 +g31567 +S'during' +p31569 +tp31570 +a(g31567 +g31569 +S'the' +p31571 +tp31572 +a(g31569 +g31571 +S'middle' +p31573 +tp31574 +a(g31571 +g31573 +S'ages.' +p31575 +tp31576 +a(g31573 +g31575 +S'in' +p31577 +tp31578 +a(g31575 +g31577 +S'many' +p31579 +tp31580 +a(g31577 +g31579 +S'cases,' +p31581 +tp31582 +a(g31579 +g31581 +S'saint' +p31583 +tp31584 +a(g31581 +g31583 +S'james' +p31585 +tp31586 +a(g31583 +g31585 +S'is' +p31587 +tp31588 +a(g31585 +g31587 +S'therefore' +p31589 +tp31590 +a(g31587 +g31589 +S'shown' +p31591 +tp31592 +a(g31589 +g31591 +S'as' +p31593 +tp31594 +a(g31591 +g31593 +S'a' +p31595 +tp31596 +a(g31593 +g31595 +S'pilgrim;' +p31597 +tp31598 +a(g31595 +g31597 +S'but' +p31599 +tp31600 +a(g31597 +g31599 +S'in' +p31601 +tp31602 +a(g31599 +g31601 +S'the' +p31603 +tp31604 +a(g31601 +g31603 +S'new' +p31605 +tp31606 +a(g31603 +g31605 +S'world,' +p31607 +tp31608 +a(g31605 +g31607 +S'his' +p31609 +tp31610 +a(g31607 +g31609 +S'venerators' +p31611 +tp31612 +a(g31609 +g31611 +S'more' +p31613 +tp31614 +a(g31611 +g31613 +S'closely' +p31615 +tp31616 +a(g31613 +g31615 +S'identified' +p31617 +tp31618 +a(g31615 +g31617 +S'with' +p31619 +tp31620 +a(g31617 +g31619 +S'his' +p31621 +tp31622 +a(g31619 +g31621 +S'image' +p31623 +tp31624 +a(g31621 +g31623 +S'as' +p31625 +tp31626 +a(g31623 +g31625 +S'a' +p31627 +tp31628 +a(g31625 +g31627 +S'horseman' +p31629 +tp31630 +a(g31627 +g31629 +S'—' +p31631 +tp31632 +a(g31629 +g31631 +S'the' +p31633 +tp31634 +a(g31631 +g31633 +S'killer' +p31635 +tp31636 +a(g31633 +g31635 +S'of' +p31637 +tp31638 +a(g31635 +g31637 +S'the' +p31639 +tp31640 +a(g31637 +g31639 +S'moors' +p31641 +tp31642 +a(g31639 +g31641 +S'—' +p31643 +tp31644 +a(g31641 +g31643 +S'and' +p31645 +tp31646 +a(g31643 +g31645 +S'that' +p31647 +tp31648 +a(g31645 +g31647 +S'is' +p31649 +tp31650 +a(g31647 +g31649 +S'how' +p31651 +tp31652 +a(g31649 +g31651 +S'he' +p31653 +tp31654 +a(g31651 +g31653 +S'is' +p31655 +tp31656 +a(g31653 +g31655 +S'shown' +p31657 +tp31658 +a(g31655 +g31657 +S'here.' +p31659 +tp31660 +a(g31657 +g31659 +S'the' +p31661 +tp31662 +a(g31659 +g31661 +S'horse' +p31663 +tp31664 +a(g31661 +g31663 +S'is' +p31665 +tp31666 +a(g31663 +g31665 +S'traditionally' +p31667 +tp31668 +a(g31665 +g31667 +S'white;' +p31669 +tp31670 +a(g31667 +g31669 +S'but' +p31671 +tp31672 +a(g31669 +g31671 +S'unlike' +p31673 +tp31674 +a(g31671 +g31673 +S'similar' +p31675 +tp31676 +a(g31673 +g31675 +S'european' +p31677 +tp31678 +a(g31675 +g31677 +S'versions,' +p31679 +tp31680 +a(g31677 +g31679 +S'it' +p31681 +tp31682 +a(g31679 +g31681 +S'is' +p31683 +tp31684 +a(g31681 +g31683 +S'quite' +p31685 +tp31686 +a(g31683 +g31685 +S'small' +p31687 +tp31688 +a(g31685 +g31687 +S'in' +p31689 +tp31690 +a(g31687 +g31689 +S'proportion' +p31691 +tp31692 +a(g31689 +g31691 +S'to' +p31693 +tp31694 +a(g31691 +g31693 +S'its' +p31695 +tp31696 +a(g31693 +g31695 +S'rider,' +p31697 +tp31698 +a(g31695 +g31697 +S'indicating' +p31699 +tp31700 +a(g31697 +g31699 +S'that' +p31701 +tp31702 +a(g31699 +g31701 +S'the' +p31703 +tp31704 +a(g31701 +g31703 +S'main' +p31705 +tp31706 +a(g31703 +g31705 +S'concern' +p31707 +tp31708 +a(g31705 +g31707 +S'of' +p31709 +tp31710 +a(g31707 +g31709 +S'the' +p31711 +tp31712 +a(g31709 +g31711 +S'craftsman' +p31713 +tp31714 +a(g31711 +g31713 +S'was' +p31715 +tp31716 +a(g31713 +g31715 +S'the' +p31717 +tp31718 +a(g31715 +g31717 +S'saint' +p31719 +tp31720 +a(g31717 +g31719 +S'himself.' +p31721 +tp31722 +a(g31719 +g31721 +S'a' +p31723 +tp31724 +a(g31721 +g31723 +S"man's" +p31725 +tp31726 +a(g31723 +g31725 +S'suit' +p31727 +tp31728 +a(g31725 +g31727 +S'in' +p31729 +tp31730 +a(g31727 +g31729 +S'the' +p31731 +tp31732 +a(g31729 +g31731 +S'eighteenth' +p31733 +tp31734 +a(g31731 +g31733 +S'century' +p31735 +tp31736 +a(g31733 +g31735 +S'consisted' +p31737 +tp31738 +a(g31735 +g31737 +S'of' +p31739 +tp31740 +a(g31737 +g31739 +S'a' +p31741 +tp31742 +a(g31739 +g31741 +S'coat,' +p31743 +tp31744 +a(g31741 +g31743 +S'waistcoat,' +p31745 +tp31746 +a(g31743 +g31745 +S'and' +p31747 +tp31748 +a(g31745 +g31747 +S'breeches.' +p31749 +tp31750 +a(g31747 +g31749 +S'the' +p31751 +tp31752 +a(g31749 +g31751 +S'coat' +p31753 +tp31754 +a(g31751 +g31753 +S'and' +p31755 +tp31756 +a(g31753 +g31755 +S'breeches' +p31757 +tp31758 +a(g31755 +g31757 +S'were' +p31759 +tp31760 +a(g31757 +g31759 +S'often' +p31761 +tp31762 +a(g31759 +g31761 +S'made' +p31763 +tp31764 +a(g31761 +g31763 +S'of' +p31765 +tp31766 +a(g31763 +g31765 +S'matching' +p31767 +tp31768 +a(g31765 +g31767 +S'material.' +p31769 +tp31770 +a(g31767 +g31769 +S'the' +p31771 +tp31772 +a(g31769 +g31771 +S'waistcoat' +p31773 +tp31774 +a(g31771 +g31773 +S'was' +p31775 +tp31776 +a(g31773 +g31775 +S'frequently' +p31777 +tp31778 +a(g31775 +g31777 +S'the' +p31779 +tp31780 +a(g31777 +g31779 +S'most' +p31781 +tp31782 +a(g31779 +g31781 +S'decorative' +p31783 +tp31784 +a(g31781 +g31783 +S'part' +p31785 +tp31786 +a(g31783 +g31785 +S'of' +p31787 +tp31788 +a(g31785 +g31787 +S'the' +p31789 +tp31790 +a(g31787 +g31789 +S'costume.' +p31791 +tp31792 +a(g31789 +g31791 +S'this' +p31793 +tp31794 +a(g31791 +g31793 +S"gentlemen's" +p31795 +tp31796 +a(g31793 +g31795 +S'waistcoat' +p31797 +tp31798 +a(g31795 +g31797 +S'from' +p31799 +tp31800 +a(g31797 +g31799 +S'the' +p31801 +tp31802 +a(g31799 +g31801 +S'early' +p31803 +tp31804 +a(g31801 +g31803 +S'part' +p31805 +tp31806 +a(g31803 +g31805 +S'of' +p31807 +tp31808 +a(g31805 +g31807 +S'the' +p31809 +tp31810 +a(g31807 +g31809 +S'eighteenth' +p31811 +tp31812 +a(g31809 +g31811 +S'century' +p31813 +tp31814 +a(g31811 +g31813 +S'is' +p31815 +tp31816 +a(g31813 +g31815 +S'made' +p31817 +tp31818 +a(g31815 +g31817 +S'of' +p31819 +tp31820 +a(g31817 +g31819 +S'white' +p31821 +tp31822 +a(g31819 +g31821 +S'linen' +p31823 +tp31824 +a(g31821 +g31823 +S'with' +p31825 +tp31826 +a(g31823 +g31825 +S'intricate' +p31827 +tp31828 +a(g31825 +g31827 +S'embroidery' +p31829 +tp31830 +a(g31827 +g31829 +S'called' +p31831 +tp31832 +a(g31829 +g31831 +S'"whitework."' +p31833 +tp31834 +a(g31831 +g31833 +S'this' +p31835 +tp31836 +a(g31833 +g31835 +S'highly' +p31837 +tp31838 +a(g31835 +g31837 +S'specialized' +p31839 +tp31840 +a(g31837 +g31839 +S'form' +p31841 +tp31842 +a(g31839 +g31841 +S'of' +p31843 +tp31844 +a(g31841 +g31843 +S'embroidery,' +p31845 +tp31846 +a(g31843 +g31845 +S'which' +p31847 +tp31848 +a(g31845 +g31847 +S'incorporated' +p31849 +tp31850 +a(g31847 +g31849 +S'a' +p31851 +tp31852 +a(g31849 +g31851 +S'great' +p31853 +tp31854 +a(g31851 +g31853 +S'variety' +p31855 +tp31856 +a(g31853 +g31855 +S'of' +p31857 +tp31858 +a(g31855 +g31857 +S'stitches,' +p31859 +tp31860 +a(g31857 +g31859 +S'was' +p31861 +tp31862 +a(g31859 +g31861 +S'widely' +p31863 +tp31864 +a(g31861 +g31863 +S'used' +p31865 +tp31866 +a(g31863 +g31865 +S'at' +p31867 +tp31868 +a(g31865 +g31867 +S'the' +p31869 +tp31870 +a(g31867 +g31869 +S'time.' +p31871 +tp31872 +a(g31869 +g31871 +S'the' +p31873 +tp31874 +a(g31871 +g31873 +S'eyelets' +p31875 +tp31876 +a(g31873 +g31875 +S'on' +p31877 +tp31878 +a(g31875 +g31877 +S'the' +p31879 +tp31880 +a(g31877 +g31879 +S'left' +p31881 +tp31882 +a(g31879 +g31881 +S'side' +p31883 +tp31884 +a(g31881 +g31883 +S'of' +p31885 +tp31886 +a(g31883 +g31885 +S'the' +p31887 +tp31888 +a(g31885 +g31887 +S'opening' +p31889 +tp31890 +a(g31887 +g31889 +S'in' +p31891 +tp31892 +a(g31889 +g31891 +S'front' +p31893 +tp31894 +a(g31891 +g31893 +S'were' +p31895 +tp31896 +a(g31893 +g31895 +S'most' +p31897 +tp31898 +a(g31895 +g31897 +S'likely' +p31899 +tp31900 +a(g31897 +g31899 +S'for' +p31901 +tp31902 +a(g31899 +g31901 +S'removable' +p31903 +tp31904 +a(g31901 +g31903 +S'buttons' +p31905 +tp31906 +a(g31903 +g31905 +S'or' +p31907 +tp31908 +a(g31905 +g31907 +S'studs.' +p31909 +tp31910 +a(g31907 +g31909 +S'this' +p31911 +tp31912 +a(g31909 +g31911 +S'the' +p31913 +tp31914 +a(g31911 +g31913 +S'this' +p31915 +tp31916 +a(g31913 +g31915 +S"boy's" +p31917 +tp31918 +a(g31915 +g31917 +S'two-piece' +p31919 +tp31920 +a(g31917 +g31919 +S'suit,' +p31921 +tp31922 +a(g31919 +g31921 +S'dated' +p31923 +tp31924 +a(g31921 +g31923 +S'1850-1860,' +p31925 +tp31926 +a(g31923 +g31925 +S'reflects' +p31927 +tp31928 +a(g31925 +g31927 +S'a' +p31929 +tp31930 +a(g31927 +g31929 +S'taste' +p31931 +tp31932 +a(g31929 +g31931 +S'for' +p31933 +tp31934 +a(g31931 +g31933 +S'elegance' +p31935 +tp31936 +a(g31933 +g31935 +S'probably' +p31937 +tp31938 +a(g31935 +g31937 +S'inspired' +p31939 +tp31940 +a(g31937 +g31939 +S'by' +p31941 +tp31942 +a(g31939 +g31941 +S'admiration' +p31943 +tp31944 +a(g31941 +g31943 +S'of' +p31945 +tp31946 +a(g31943 +g31945 +S'british' +p31947 +tp31948 +a(g31945 +g31947 +S'and' +p31949 +tp31950 +a(g31947 +g31949 +S'european' +p31951 +tp31952 +a(g31949 +g31951 +S'portraits' +p31953 +tp31954 +a(g31951 +g31953 +S'of' +p31955 +tp31956 +a(g31953 +g31955 +S'young' +p31957 +tp31958 +a(g31955 +g31957 +S'aristocrats.' +p31959 +tp31960 +a(g31957 +g31959 +S'designed' +p31961 +tp31962 +a(g31959 +g31961 +S'for' +p31963 +tp31964 +a(g31961 +g31963 +S'little' +p31965 +tp31966 +a(g31963 +g31965 +S'boys' +p31967 +tp31968 +a(g31965 +g31967 +S'under' +p31969 +tp31970 +a(g31967 +g31969 +S'the' +p31971 +tp31972 +a(g31969 +g31971 +S'age' +p31973 +tp31974 +a(g31971 +g31973 +S'of' +p31975 +tp31976 +a(g31973 +g31975 +S'ten,' +p31977 +tp31978 +a(g31975 +g31977 +S'this' +p31979 +tp31980 +a(g31977 +g31979 +S'type' +p31981 +tp31982 +a(g31979 +g31981 +S'of' +p31983 +tp31984 +a(g31981 +g31983 +S'suit' +p31985 +tp31986 +a(g31983 +g31985 +S'came' +p31987 +tp31988 +a(g31985 +g31987 +S'to' +p31989 +tp31990 +a(g31987 +g31989 +S'be' +p31991 +tp31992 +a(g31989 +g31991 +S'known' +p31993 +tp31994 +a(g31991 +g31993 +S'later' +p31995 +tp31996 +a(g31993 +g31995 +S'as' +p31997 +tp31998 +a(g31995 +g31997 +S'"little' +p31999 +tp32000 +a(g31997 +g31999 +S'lord' +p32001 +tp32002 +a(g31999 +g32001 +S'fauntleroy."' +p32003 +tp32004 +a(g32001 +g32003 +S'the' +p32005 +tp32006 +a(g32003 +g32005 +S'name' +p32007 +tp32008 +a(g32005 +g32007 +S'was' +p32009 +tp32010 +a(g32007 +g32009 +S'taken' +p32011 +tp32012 +a(g32009 +g32011 +S'from' +p32013 +tp32014 +a(g32011 +g32013 +S'a' +p32015 +tp32016 +a(g32013 +g32015 +S'popular' +p32017 +tp32018 +a(g32015 +g32017 +S'story' +p32019 +tp32020 +a(g32017 +g32019 +S'published' +p32021 +tp32022 +a(g32019 +g32021 +S'in' +p32023 +tp32024 +a(g32021 +g32023 +S'1866' +p32025 +tp32026 +a(g32023 +g32025 +S'by' +p32027 +tp32028 +a(g32025 +g32027 +S'frances' +p32029 +tp32030 +a(g32027 +g32029 +S'hodgson' +p32031 +tp32032 +a(g32029 +g32031 +S'burnett' +p32033 +tp32034 +a(g32031 +g32033 +S'and' +p32035 +tp32036 +a(g32033 +g32035 +S'illustrated' +p32037 +tp32038 +a(g32035 +g32037 +S'by' +p32039 +tp32040 +a(g32037 +g32039 +S'reginald' +p32041 +tp32042 +a(g32039 +g32041 +S'birch.' +p32043 +tp32044 +a(g32041 +g32043 +S'to' +p32045 +tp32046 +a(g32043 +g32045 +S'complete' +p32047 +tp32048 +a(g32045 +g32047 +S'the' +p32049 +tp32050 +a(g32047 +g32049 +S'outfit,' +p32051 +tp32052 +a(g32049 +g32051 +S'a' +p32053 +tp32054 +a(g32051 +g32053 +S'child' +p32055 +tp32056 +a(g32053 +g32055 +S'would' +p32057 +tp32058 +a(g32055 +g32057 +S'wear' +p32059 +tp32060 +a(g32057 +g32059 +S'white' +p32061 +tp32062 +a(g32059 +g32061 +S'silk' +p32063 +tp32064 +a(g32061 +g32063 +S'stockings' +p32065 +tp32066 +a(g32063 +g32065 +S'and' +p32067 +tp32068 +a(g32065 +g32067 +S'buckled' +p32069 +tp32070 +a(g32067 +g32069 +S'shoes.' +p32071 +tp32072 +a(g32069 +g32071 +S'this' +p32073 +tp32074 +a(g32071 +g32073 +S"child's" +p32075 +tp32076 +a(g32073 +g32075 +S'dress' +p32077 +tp32078 +a(g32075 +g32077 +S'was' +p32079 +tp32080 +a(g32077 +g32079 +S'made' +p32081 +tp32082 +a(g32079 +g32081 +S'about' +p32083 +tp32084 +a(g32081 +g32083 +S'1860' +p32085 +tp32086 +a(g32083 +g32085 +S'in' +p32087 +tp32088 +a(g32085 +g32087 +S'new' +p32089 +tp32090 +a(g32087 +g32089 +S'orleans.' +p32091 +tp32092 +a(g32089 +g32091 +S'the' +p32093 +tp32094 +a(g32091 +g32093 +S'fabric' +p32095 +tp32096 +a(g32093 +g32095 +S'is' +p32097 +tp32098 +a(g32095 +g32097 +S'blue' +p32099 +tp32100 +a(g32097 +g32099 +S'and' +p32101 +tp32102 +a(g32099 +g32101 +S'green' +p32103 +tp32104 +a(g32101 +g32103 +S'plaid' +p32105 +tp32106 +a(g32103 +g32105 +S'linen.' +p32107 +tp32108 +a(g32105 +g32107 +S'it' +p32109 +tp32110 +a(g32107 +g32109 +S'has' +p32111 +tp32112 +a(g32109 +g32111 +S'velvet' +p32113 +tp32114 +a(g32111 +g32113 +S'ribbon' +p32115 +tp32116 +a(g32113 +g32115 +S'trimming' +p32117 +tp32118 +a(g32115 +g32117 +S'and' +p32119 +tp32120 +a(g32117 +g32119 +S'silk' +p32121 +tp32122 +a(g32119 +g32121 +S'fringe.' +p32123 +tp32124 +a(g32121 +g32123 +S'the' +p32125 +tp32126 +a(g32123 +g32125 +S'lining' +p32127 +tp32128 +a(g32125 +g32127 +S'is' +p32129 +tp32130 +a(g32127 +g32129 +S'unbleached' +p32131 +tp32132 +a(g32129 +g32131 +S'cotton.' +p32133 +tp32134 +a(g32131 +g32133 +S"girls'" +p32135 +tp32136 +a(g32133 +g32135 +S'clothing' +p32137 +tp32138 +a(g32135 +g32137 +S'was' +p32139 +tp32140 +a(g32137 +g32139 +S'patterned' +p32141 +tp32142 +a(g32139 +g32141 +S'after' +p32143 +tp32144 +a(g32141 +g32143 +S'adult' +p32145 +tp32146 +a(g32143 +g32145 +S'styles.' +p32147 +tp32148 +a(g32145 +g32147 +S'in' +p32149 +tp32150 +a(g32147 +g32149 +S'most' +p32151 +tp32152 +a(g32149 +g32151 +S'cases' +p32153 +tp32154 +a(g32151 +g32153 +S'the' +p32155 +tp32156 +a(g32153 +g32155 +S'length' +p32157 +tp32158 +a(g32155 +g32157 +S'of' +p32159 +tp32160 +a(g32157 +g32159 +S'the' +p32161 +tp32162 +a(g32159 +g32161 +S'skirt' +p32163 +tp32164 +a(g32161 +g32163 +S'was' +p32165 +tp32166 +a(g32163 +g32165 +S'an' +p32167 +tp32168 +a(g32165 +g32167 +S'indication' +p32169 +tp32170 +a(g32167 +g32169 +S'of' +p32171 +tp32172 +a(g32169 +g32171 +S'a' +p32173 +tp32174 +a(g32171 +g32173 +S"girl's" +p32175 +tp32176 +a(g32173 +g32175 +S'age;' +p32177 +tp32178 +a(g32175 +g32177 +S'the' +p32179 +tp32180 +a(g32177 +g32179 +S'shorter' +p32181 +tp32182 +a(g32179 +g32181 +S'the' +p32183 +tp32184 +a(g32181 +g32183 +S'skirt' +p32185 +tp32186 +a(g32183 +g32185 +S'the' +p32187 +tp32188 +a(g32185 +g32187 +S'younger' +p32189 +tp32190 +a(g32187 +g32189 +S'the' +p32191 +tp32192 +a(g32189 +g32191 +S'wearer.' +p32193 +tp32194 +a(g32191 +g32193 +S'claudia' +p32195 +tp32196 +a(g32193 +g32195 +S'quinta' +p32197 +tp32198 +a(g32195 +g32197 +S'embodied' +p32199 +tp32200 +a(g32197 +g32199 +S'the' +p32201 +tp32202 +a(g32199 +g32201 +S'greatest' +p32203 +tp32204 +a(g32201 +g32203 +S'virtues' +p32205 +tp32206 +a(g32203 +g32205 +S'of' +p32207 +tp32208 +a(g32205 +g32207 +S'roman' +p32209 +tp32210 +a(g32207 +g32209 +S'womanhood—chastity,' +p32211 +tp32212 +a(g32209 +g32211 +S'piety,' +p32213 +tp32214 +a(g32211 +g32213 +S'and' +p32215 +tp32216 +a(g32213 +g32215 +S'fortitude.' +p32217 +tp32218 +a(g32215 +g32217 +S'it' +p32219 +tp32220 +a(g32217 +g32219 +S'had' +p32221 +tp32222 +a(g32219 +g32221 +S'been' +p32223 +tp32224 +a(g32221 +g32223 +S'prophesied' +p32225 +tp32226 +a(g32223 +g32225 +S'that' +p32227 +tp32228 +a(g32225 +g32227 +S'roman' +p32229 +tp32230 +a(g32227 +g32229 +S'victory' +p32231 +tp32232 +a(g32229 +g32231 +S'in' +p32233 +tp32234 +a(g32231 +g32233 +S'the' +p32235 +tp32236 +a(g32233 +g32235 +S'second' +p32237 +tp32238 +a(g32235 +g32237 +S'punic' +p32239 +tp32240 +a(g32237 +g32239 +S'war' +p32241 +tp32242 +a(g32239 +g32241 +S'depended' +p32243 +tp32244 +a(g32241 +g32243 +S'on' +p32245 +tp32246 +a(g32243 +g32245 +S'bringing' +p32247 +tp32248 +a(g32245 +g32247 +S'cybele,' +p32249 +tp32250 +a(g32247 +g32249 +S'the' +p32251 +tp32252 +a(g32249 +g32251 +S'anatolian' +p32253 +tp32254 +a(g32251 +g32253 +S'great' +p32255 +tp32256 +a(g32253 +g32255 +S'mother' +p32257 +tp32258 +a(g32255 +g32257 +S'goddess,' +p32259 +tp32260 +a(g32257 +g32259 +S'to' +p32261 +tp32262 +a(g32259 +g32261 +S'rome.' +p32263 +tp32264 +a(g32261 +g32263 +S'but' +p32265 +tp32266 +a(g32263 +g32265 +S'when' +p32267 +tp32268 +a(g32265 +g32267 +S'a' +p32269 +tp32270 +a(g32267 +g32269 +S'ship' +p32271 +tp32272 +a(g32269 +g32271 +S'with' +p32273 +tp32274 +a(g32271 +g32273 +S'her' +p32275 +tp32276 +a(g32273 +g32275 +S'image' +p32277 +tp32278 +a(g32275 +g32277 +S'arrived' +p32279 +tp32280 +a(g32277 +g32279 +S'at' +p32281 +tp32282 +a(g32279 +g32281 +S'the' +p32283 +tp32284 +a(g32281 +g32283 +S'mouth' +p32285 +tp32286 +a(g32283 +g32285 +S'of' +p32287 +tp32288 +a(g32285 +g32287 +S'the' +p32289 +tp32290 +a(g32287 +g32289 +S'tiber' +p32291 +tp32292 +a(g32289 +g32291 +S'river,' +p32293 +tp32294 +a(g32291 +g32293 +S'it' +p32295 +tp32296 +a(g32293 +g32295 +S'became' +p32297 +tp32298 +a(g32295 +g32297 +S'mired' +p32299 +tp32300 +a(g32297 +g32299 +S'in' +p32301 +tp32302 +a(g32299 +g32301 +S'mud.' +p32303 +tp32304 +a(g32301 +g32303 +S'strong' +p32305 +tp32306 +a(g32303 +g32305 +S'men' +p32307 +tp32308 +a(g32305 +g32307 +S'were' +p32309 +tp32310 +a(g32307 +g32309 +S'unable' +p32311 +tp32312 +a(g32309 +g32311 +S'to' +p32313 +tp32314 +a(g32311 +g32313 +S'free' +p32315 +tp32316 +a(g32313 +g32315 +S'it.' +p32317 +tp32318 +a(g32315 +g32317 +S'claudia' +p32319 +tp32320 +a(g32317 +g32319 +S'was' +p32321 +tp32322 +a(g32319 +g32321 +S'a' +p32323 +tp32324 +a(g32321 +g32323 +S'virtuous' +p32325 +tp32326 +a(g32323 +g32325 +S'young' +p32327 +tp32328 +a(g32325 +g32327 +S'matron,' +p32329 +tp32330 +a(g32327 +g32329 +S'falsely' +p32331 +tp32332 +a(g32329 +g32331 +S'accused' +p32333 +tp32334 +a(g32331 +g32333 +S'of' +p32335 +tp32336 +a(g32333 +g32335 +S'impropriety,' +p32337 +tp32338 +a(g32335 +g32337 +S'who' +p32339 +tp32340 +a(g32337 +g32339 +S'had' +p32341 +tp32342 +a(g32339 +g32341 +S'prayed' +p32343 +tp32344 +a(g32341 +g32343 +S'to' +p32345 +tp32346 +a(g32343 +g32345 +S'cybele' +p32347 +tp32348 +a(g32345 +g32347 +S'for' +p32349 +tp32350 +a(g32347 +g32349 +S'a' +p32351 +tp32352 +a(g32349 +g32351 +S'sign' +p32353 +tp32354 +a(g32351 +g32353 +S'of' +p32355 +tp32356 +a(g32353 +g32355 +S'her' +p32357 +tp32358 +a(g32355 +g32357 +S'innocence.' +p32359 +tp32360 +a(g32357 +g32359 +S'at' +p32361 +tp32362 +a(g32359 +g32361 +S'the' +p32363 +tp32364 +a(g32361 +g32363 +S"goddess's" +p32365 +tp32366 +a(g32363 +g32365 +S'direction' +p32367 +tp32368 +a(g32365 +g32367 +S'she' +p32369 +tp32370 +a(g32367 +g32369 +S'slipped' +p32371 +tp32372 +a(g32369 +g32371 +S'a' +p32373 +tp32374 +a(g32371 +g32373 +S'slender' +p32375 +tp32376 +a(g32373 +g32375 +S'cord' +p32377 +tp32378 +a(g32375 +g32377 +S'over' +p32379 +tp32380 +a(g32377 +g32379 +S'the' +p32381 +tp32382 +a(g32379 +g32381 +S"ship's" +p32383 +tp32384 +a(g32381 +g32383 +S'bow' +p32385 +tp32386 +a(g32383 +g32385 +S'and' +p32387 +tp32388 +a(g32385 +g32387 +S'easily' +p32389 +tp32390 +a(g32387 +g32389 +S'pulled' +p32391 +tp32392 +a(g32389 +g32391 +S'the' +p32393 +tp32394 +a(g32391 +g32393 +S'vessel' +p32395 +tp32396 +a(g32393 +g32395 +S'free.' +p32397 +tp32398 +a(g32395 +g32397 +S'this' +p32399 +tp32400 +a(g32397 +g32399 +S'painting' +p32401 +tp32402 +a(g32399 +g32401 +S'was' +p32403 +tp32404 +a(g32401 +g32403 +S'part' +p32405 +tp32406 +a(g32403 +g32405 +S'of' +p32407 +tp32408 +a(g32405 +g32407 +S'a' +p32409 +tp32410 +a(g32407 +g32409 +S'set' +p32411 +tp32412 +a(g32409 +g32411 +S'of' +p32413 +tp32414 +a(g32411 +g32413 +S'at' +p32415 +tp32416 +a(g32413 +g32415 +S'least' +p32417 +tp32418 +a(g32415 +g32417 +S'seven' +p32419 +tp32420 +a(g32417 +g32419 +S'works' +p32421 +tp32422 +a(g32419 +g32421 +S'representing' +p32423 +tp32424 +a(g32421 +g32423 +S'paragons' +p32425 +tp32426 +a(g32423 +g32425 +S'of' +p32427 +tp32428 +a(g32425 +g32427 +S'virtue.' +p32429 +tp32430 +a(g32427 +g32429 +S'such' +p32431 +tp32432 +a(g32429 +g32431 +S'cycles' +p32433 +tp32434 +a(g32431 +g32433 +S'devoted' +p32435 +tp32436 +a(g32433 +g32435 +S'to' +p32437 +tp32438 +a(g32435 +g32437 +S'famous' +p32439 +tp32440 +a(g32437 +g32439 +S'men' +p32441 +tp32442 +a(g32439 +g32441 +S'and' +p32443 +tp32444 +a(g32441 +g32443 +S'women' +p32445 +tp32446 +a(g32443 +g32445 +S'of' +p32447 +tp32448 +a(g32445 +g32447 +S'the' +p32449 +tp32450 +a(g32447 +g32449 +S'past' +p32451 +tp32452 +a(g32449 +g32451 +S'had' +p32453 +tp32454 +a(g32451 +g32453 +S'been' +p32455 +tp32456 +a(g32453 +g32455 +S'popular' +p32457 +tp32458 +a(g32455 +g32457 +S'since' +p32459 +tp32460 +a(g32457 +g32459 +S'the' +p32461 +tp32462 +a(g32459 +g32461 +S'middle' +p32463 +tp32464 +a(g32461 +g32463 +S'ages' +p32465 +tp32466 +a(g32463 +g32465 +S'and' +p32467 +tp32468 +a(g32465 +g32467 +S'seemed' +p32469 +tp32470 +a(g32467 +g32469 +S'to' +p32471 +tp32472 +a(g32469 +g32471 +S'enjoy' +p32473 +tp32474 +a(g32471 +g32473 +S'particular' +p32475 +tp32476 +a(g32473 +g32475 +S'favor' +p32477 +tp32478 +a(g32475 +g32477 +S'in' +p32479 +tp32480 +a(g32477 +g32479 +S'siena.' +p32481 +tp32482 +a(g32479 +g32481 +S'the' +p32483 +tp32484 +a(g32481 +g32483 +S'men' +p32485 +tp32486 +a(g32483 +g32485 +S'and' +p32487 +tp32488 +a(g32485 +g32487 +S'women' +p32489 +tp32490 +a(g32487 +g32489 +S'in' +p32491 +tp32492 +a(g32489 +g32491 +S'this' +p32493 +tp32494 +a(g32491 +g32493 +S'set,' +p32495 +tp32496 +a(g32493 +g32495 +S'taken' +p32497 +tp32498 +a(g32495 +g32497 +S'from' +p32499 +tp32500 +a(g32497 +g32499 +S'ancient' +p32501 +tp32502 +a(g32499 +g32501 +S'literature' +p32503 +tp32504 +a(g32501 +g32503 +S'and' +p32505 +tp32506 +a(g32503 +g32505 +S'the' +p32507 +tp32508 +a(g32505 +g32507 +S'bible,' +p32509 +tp32510 +a(g32507 +g32509 +S'were' +p32511 +tp32512 +a(g32509 +g32511 +S'renowned' +p32513 +tp32514 +a(g32511 +g32513 +S'for' +p32515 +tp32516 +a(g32513 +g32515 +S'chastity,' +p32517 +tp32518 +a(g32515 +g32517 +S'fortitude,' +p32519 +tp32520 +a(g32517 +g32519 +S'or' +p32521 +tp32522 +a(g32519 +g32521 +S'self-restraint.' +p32523 +tp32524 +a(g32521 +g32523 +S'in' +p32525 +tp32526 +a(g32523 +g32525 +S'civic' +p32527 +tp32528 +a(g32525 +g32527 +S'buildings' +p32529 +tp32530 +a(g32527 +g32529 +S'such' +p32531 +tp32532 +a(g32529 +g32531 +S'cycles' +p32533 +tp32534 +a(g32531 +g32533 +S'usually' +p32535 +tp32536 +a(g32533 +g32535 +S'focused' +p32537 +tp32538 +a(g32535 +g32537 +S'on' +p32539 +tp32540 +a(g32537 +g32539 +S'men' +p32541 +tp32542 +a(g32539 +g32541 +S'of' +p32543 +tp32544 +a(g32541 +g32543 +S'political' +p32545 +tp32546 +a(g32543 +g32545 +S'courage,' +p32547 +tp32548 +a(g32545 +g32547 +S'but' +p32549 +tp32550 +a(g32547 +g32549 +S'because' +p32551 +tp32552 +a(g32549 +g32551 +S'this' +p32553 +tp32554 +a(g32551 +g32553 +S'group' +p32555 +tp32556 +a(g32553 +g32555 +S'contains' +p32557 +tp32558 +a(g32555 +g32557 +S'so' +p32559 +tp32560 +a(g32557 +g32559 +S'many' +p32561 +tp32562 +a(g32559 +g32561 +S'women' +p32563 +tp32564 +a(g32561 +g32563 +S'and' +p32565 +tp32566 +a(g32563 +g32565 +S'concentrates' +p32567 +tp32568 +a(g32565 +g32567 +S'on' +p32569 +tp32570 +a(g32567 +g32569 +S'more' +p32571 +tp32572 +a(g32569 +g32571 +S'"domestic"' +p32573 +tp32574 +a(g32571 +g32573 +S'virtues,' +p32575 +tp32576 +a(g32573 +g32575 +S'it' +p32577 +tp32578 +a(g32575 +g32577 +S'probably' +p32579 +tp32580 +a(g32577 +g32579 +S'decorated' +p32581 +tp32582 +a(g32579 +g32581 +S'a' +p32583 +tp32584 +a(g32581 +g32583 +S'private' +p32585 +tp32586 +a(g32583 +g32585 +S'house.' +p32587 +tp32588 +a(g32585 +g32587 +S'toy' +p32589 +tp32590 +a(g32587 +g32589 +S'makers' +p32591 +tp32592 +a(g32589 +g32591 +S'have' +p32593 +tp32594 +a(g32591 +g32593 +S'found' +p32595 +tp32596 +a(g32593 +g32595 +S'numerous' +p32597 +tp32598 +a(g32595 +g32597 +S'ways' +p32599 +tp32600 +a(g32597 +g32599 +S'of' +p32601 +tp32602 +a(g32599 +g32601 +S'animating' +p32603 +tp32604 +a(g32601 +g32603 +S'their' +p32605 +tp32606 +a(g32603 +g32605 +S'products,' +p32607 +tp32608 +a(g32605 +g32607 +S'and' +p32609 +tp32610 +a(g32607 +g32609 +S'puppets,' +p32611 +tp32612 +a(g32609 +g32611 +S'activated' +p32613 +tp32614 +a(g32611 +g32613 +S'by' +p32615 +tp32616 +a(g32613 +g32615 +S'sticks' +p32617 +tp32618 +a(g32615 +g32617 +S'or' +p32619 +tp32620 +a(g32617 +g32619 +S'strings,' +p32621 +tp32622 +a(g32619 +g32621 +S'are' +p32623 +tp32624 +a(g32621 +g32623 +S'perfect' +p32625 +tp32626 +a(g32623 +g32625 +S'examples' +p32627 +tp32628 +a(g32625 +g32627 +S'of' +p32629 +tp32630 +a(g32627 +g32629 +S'toys' +p32631 +tp32632 +a(g32629 +g32631 +S'in' +p32633 +tp32634 +a(g32631 +g32633 +S'motion.' +p32635 +tp32636 +a(g32633 +g32635 +S'this' +p32637 +tp32638 +a(g32635 +g32637 +S'is' +p32639 +tp32640 +a(g32637 +g32639 +S'punch,' +p32641 +tp32642 +a(g32639 +g32641 +S'the' +p32643 +tp32644 +a(g32641 +g32643 +S'villainous' +p32645 +tp32646 +a(g32643 +g32645 +S'hero' +p32647 +tp32648 +a(g32645 +g32647 +S'of' +p32649 +tp32650 +a(g32647 +g32649 +S'the' +p32651 +tp32652 +a(g32649 +g32651 +S'english' +p32653 +tp32654 +a(g32651 +g32653 +S'puppet' +p32655 +tp32656 +a(g32653 +g32655 +S'play,' +p32657 +tp32658 +a(g32655 +g32657 +S'spurs' +p32659 +tp32660 +a(g32657 +g32659 +S'presented' +p32661 +tp32662 +a(g32659 +g32661 +S'an' +p32663 +tp32664 +a(g32661 +g32663 +S'opportunity' +p32665 +tp32666 +a(g32663 +g32665 +S'for' +p32667 +tp32668 +a(g32665 +g32667 +S'embellishment' +p32669 +tp32670 +a(g32667 +g32669 +S'using' +p32671 +tp32672 +a(g32669 +g32671 +S'both' +p32673 +tp32674 +a(g32671 +g32673 +S'leather' +p32675 +tp32676 +a(g32673 +g32675 +S'and' +p32677 +tp32678 +a(g32675 +g32677 +S'metal.' +p32679 +tp32680 +a(g32677 +g32679 +S'while' +p32681 +tp32682 +a(g32679 +g32681 +S'sometimes' +p32683 +tp32684 +a(g32681 +g32683 +S'the' +p32685 +tp32686 +a(g32683 +g32685 +S'heel' +p32687 +tp32688 +a(g32685 +g32687 +S'bands' +p32689 +tp32690 +a(g32687 +g32689 +S'and' +p32691 +tp32692 +a(g32689 +g32691 +S'shanks' +p32693 +tp32694 +a(g32691 +g32693 +S'were' +p32695 +tp32696 +a(g32693 +g32695 +S'left' +p32697 +tp32698 +a(g32695 +g32697 +S'plain,' +p32699 +tp32700 +a(g32697 +g32699 +S'more' +p32701 +tp32702 +a(g32699 +g32701 +S'frequently' +p32703 +tp32704 +a(g32701 +g32703 +S'they' +p32705 +tp32706 +a(g32703 +g32705 +S'were' +p32707 +tp32708 +a(g32705 +g32707 +S'decorated.' +p32709 +tp32710 +a(g32707 +g32709 +S'this' +p32711 +tp32712 +a(g32709 +g32711 +S'example' +p32713 +tp32714 +a(g32711 +g32713 +S'has' +p32715 +tp32716 +a(g32713 +g32715 +S'an' +p32717 +tp32718 +a(g32715 +g32717 +S'engraved' +p32719 +tp32720 +a(g32717 +g32719 +S'silver' +p32721 +tp32722 +a(g32719 +g32721 +S'design' +p32723 +tp32724 +a(g32721 +g32723 +S'in' +p32725 +tp32726 +a(g32723 +g32725 +S'the' +p32727 +tp32728 +a(g32725 +g32727 +S'hand-forged' +p32729 +tp32730 +a(g32727 +g32729 +S'steel.' +p32731 +tp32732 +a(g32729 +g32731 +S'the' +p32733 +tp32734 +a(g32731 +g32733 +S'leather' +p32735 +tp32736 +a(g32733 +g32735 +S'is' +p32737 +tp32738 +a(g32735 +g32737 +S'intricately' +p32739 +tp32740 +a(g32737 +g32739 +S'tooled;' +p32741 +tp32742 +a(g32739 +g32741 +S'in' +p32743 +tp32744 +a(g32741 +g32743 +S'some' +p32745 +tp32746 +a(g32743 +g32745 +S'rare' +p32747 +tp32748 +a(g32745 +g32747 +S'cases,' +p32749 +tp32750 +a(g32747 +g32749 +S'even' +p32751 +tp32752 +a(g32749 +g32751 +S'jewels' +p32753 +tp32754 +a(g32751 +g32753 +S'were' +p32755 +tp32756 +a(g32753 +g32755 +S'set' +p32757 +tp32758 +a(g32755 +g32757 +S'in' +p32759 +tp32760 +a(g32757 +g32759 +S'the' +p32761 +tp32762 +a(g32759 +g32761 +S'leather.' +p32763 +tp32764 +a(g32761 +g32763 +S'this' +p32765 +tp32766 +a(g32763 +g32765 +S'spur' +p32767 +tp32768 +a(g32765 +g32767 +S'was' +p32769 +tp32770 +a(g32767 +g32769 +S'made' +p32771 +tp32772 +a(g32769 +g32771 +S'in' +p32773 +tp32774 +a(g32771 +g32773 +S'california' +p32775 +tp32776 +a(g32773 +g32775 +S'about' +p32777 +tp32778 +a(g32775 +g32777 +S'1890.' +p32779 +tp32780 +a(g32777 +g32779 +S'like' +p32781 +tp32782 +a(g32779 +g32781 +S'the' +p32783 +tp32784 +a(g32781 +g32783 +S'saddle,' +p32785 +tp32786 +a(g32783 +g32785 +S'it' +p32787 +tp32788 +a(g32785 +g32787 +S'reflects' +p32789 +tp32790 +a(g32787 +g32789 +S'the' +p32791 +tp32792 +a(g32789 +g32791 +S'tradition' +p32793 +tp32794 +a(g32791 +g32793 +S'of' +p32795 +tp32796 +a(g32793 +g32795 +S'adornment' +p32797 +tp32798 +a(g32795 +g32797 +S'inherited' +p32799 +tp32800 +a(g32797 +g32799 +S'from' +p32801 +tp32802 +a(g32799 +g32801 +S'the' +p32803 +tp32804 +a(g32801 +g32803 +S'spanish' +p32805 +tp32806 +a(g32803 +g32805 +S'"caballero."' +p32807 +tp32808 +a(g32805 +g32807 +S'these' +p32809 +tp32810 +a(g32807 +g32809 +S'brocaded' +p32811 +tp32812 +a(g32809 +g32811 +S'silk' +p32813 +tp32814 +a(g32811 +g32813 +S'shoes' +p32815 +tp32816 +a(g32813 +g32815 +S'exemplify' +p32817 +tp32818 +a(g32815 +g32817 +S'the' +p32819 +tp32820 +a(g32817 +g32819 +S'beautiful' +p32821 +tp32822 +a(g32819 +g32821 +S'and' +p32823 +tp32824 +a(g32821 +g32823 +S'elaborate' +p32825 +tp32826 +a(g32823 +g32825 +S'accessories' +p32827 +tp32828 +a(g32825 +g32827 +S'that' +p32829 +tp32830 +a(g32827 +g32829 +S'were' +p32831 +tp32832 +a(g32829 +g32831 +S'part' +p32833 +tp32834 +a(g32831 +g32833 +S'of' +p32835 +tp32836 +a(g32833 +g32835 +S'the' +p32837 +tp32838 +a(g32835 +g32837 +S'fashionable' +p32839 +tp32840 +a(g32837 +g32839 +S'eighteenth-century' +p32841 +tp32842 +a(g32839 +g32841 +S'wardrobe.' +p32843 +tp32844 +a(g32841 +g32843 +S'since' +p32845 +tp32846 +a(g32843 +g32845 +S'they' +p32847 +tp32848 +a(g32845 +g32847 +S'were' +p32849 +tp32850 +a(g32847 +g32849 +S'not' +p32851 +tp32852 +a(g32849 +g32851 +S'suitable' +p32853 +tp32854 +a(g32851 +g32853 +S'for' +p32855 +tp32856 +a(g32853 +g32855 +S'walking' +p32857 +tp32858 +a(g32855 +g32857 +S'out-of-doors,' +p32859 +tp32860 +a(g32857 +g32859 +S'clogs' +p32861 +tp32862 +a(g32859 +g32861 +S'or' +p32863 +tp32864 +a(g32861 +g32863 +S'pattens' +p32865 +tp32866 +a(g32863 +g32865 +S'--' +p32867 +tp32868 +a(g32865 +g32867 +S'separate' +p32869 +tp32870 +a(g32867 +g32869 +S'wooden' +p32871 +tp32872 +a(g32869 +g32871 +S'or' +p32873 +tp32874 +a(g32871 +g32873 +S'leather' +p32875 +tp32876 +a(g32873 +g32875 +S'soles' +p32877 +tp32878 +a(g32875 +g32877 +S'--' +p32879 +tp32880 +a(g32877 +g32879 +S'were' +p32881 +tp32882 +a(g32879 +g32881 +S'strapped' +p32883 +tp32884 +a(g32881 +g32883 +S'on' +p32885 +tp32886 +a(g32883 +g32885 +S'over' +p32887 +tp32888 +a(g32885 +g32887 +S'the' +p32889 +tp32890 +a(g32887 +g32889 +S'shoes' +p32891 +tp32892 +a(g32889 +g32891 +S'when' +p32893 +tp32894 +a(g32891 +g32893 +S'necessary.' +p32895 +tp32896 +a(g32893 +g32895 +S"men's" +p32897 +tp32898 +a(g32895 +g32897 +S'shoes' +p32899 +tp32900 +a(g32897 +g32899 +S'surviving' +p32901 +tp32902 +a(g32899 +g32901 +S'from' +p32903 +tp32904 +a(g32901 +g32903 +S'the' +p32905 +tp32906 +a(g32903 +g32905 +S'eighteenth' +p32907 +tp32908 +a(g32905 +g32907 +S'century' +p32909 +tp32910 +a(g32907 +g32909 +S'are' +p32911 +tp32912 +a(g32909 +g32911 +S'extremely' +p32913 +tp32914 +a(g32911 +g32913 +S'rare.' +p32915 +tp32916 +a(g32913 +g32915 +S'this' +p32917 +tp32918 +a(g32915 +g32917 +S"man's" +p32919 +tp32920 +a(g32917 +g32919 +S'shoe,' +p32921 +tp32922 +a(g32919 +g32921 +S'dated' +p32923 +tp32924 +a(g32921 +g32923 +S'about' +p32925 +tp32926 +a(g32923 +g32925 +S'1775,' +p32927 +tp32928 +a(g32925 +g32927 +S'is' +p32929 +tp32930 +a(g32927 +g32929 +S'made' +p32931 +tp32932 +a(g32929 +g32931 +S'of' +p32933 +tp32934 +a(g32931 +g32933 +S'gray' +p32935 +tp32936 +a(g32933 +g32935 +S'suede' +p32937 +tp32938 +a(g32935 +g32937 +S'and' +p32939 +tp32940 +a(g32937 +g32939 +S'has' +p32941 +tp32942 +a(g32939 +g32941 +S'a' +p32943 +tp32944 +a(g32941 +g32943 +S'one-inch' +p32945 +tp32946 +a(g32943 +g32945 +S'red' +p32947 +tp32948 +a(g32945 +g32947 +S'leather' +p32949 +tp32950 +a(g32947 +g32949 +S'heel' +p32951 +tp32952 +a(g32949 +g32951 +S'and' +p32953 +tp32954 +a(g32951 +g32953 +S'a' +p32955 +tp32956 +a(g32953 +g32955 +S'brass' +p32957 +tp32958 +a(g32955 +g32957 +S'buckle.' +p32959 +tp32960 +a(g32957 +g32959 +S'the' +p32961 +tp32962 +a(g32959 +g32961 +S'low,' +p32963 +tp32964 +a(g32961 +g32963 +S'broad' +p32965 +tp32966 +a(g32963 +g32965 +S'heel' +p32967 +tp32968 +a(g32965 +g32967 +S'first' +p32969 +tp32970 +a(g32967 +g32969 +S'appeared' +p32971 +tp32972 +a(g32969 +g32971 +S'in' +p32973 +tp32974 +a(g32971 +g32973 +S'america' +p32975 +tp32976 +a(g32973 +g32975 +S'in' +p32977 +tp32978 +a(g32975 +g32977 +S'the' +p32979 +tp32980 +a(g32977 +g32979 +S'1770s' +p32981 +tp32982 +a(g32979 +g32981 +S'and' +p32983 +tp32984 +a(g32981 +g32983 +S'continued' +p32985 +tp32986 +a(g32983 +g32985 +S'in' +p32987 +tp32988 +a(g32985 +g32987 +S'fashion' +p32989 +tp32990 +a(g32987 +g32989 +S'until' +p32991 +tp32992 +a(g32989 +g32991 +S'the' +p32993 +tp32994 +a(g32991 +g32993 +S'turn' +p32995 +tp32996 +a(g32993 +g32995 +S'of' +p32997 +tp32998 +a(g32995 +g32997 +S'the' +p32999 +tp33000 +a(g32997 +g32999 +S'century.' +p33001 +tp33002 +a(g32999 +g33001 +S'shoe' +p33003 +tp33004 +a(g33001 +g33003 +S'buckles' +p33005 +tp33006 +a(g33003 +g33005 +S'were' +p33007 +tp33008 +a(g33005 +g33007 +S'both' +p33009 +tp33010 +a(g33007 +g33009 +S'functional' +p33011 +tp33012 +a(g33009 +g33011 +S'and' +p33013 +tp33014 +a(g33011 +g33013 +S'decorative.' +p33015 +tp33016 +a(g33013 +g33015 +S'usually,' +p33017 +tp33018 +a(g33015 +g33017 +S'no' +p33019 +tp33020 +a(g33017 +g33019 +S'distinction' +p33021 +tp33022 +a(g33019 +g33021 +S'was' +p33023 +tp33024 +a(g33021 +g33023 +S'made' +p33025 +tp33026 +a(g33023 +g33025 +S'between' +p33027 +tp33028 +a(g33025 +g33027 +S'the' +p33029 +tp33030 +a(g33027 +g33029 +S'left' +p33031 +tp33032 +a(g33029 +g33031 +S'and' +p33033 +tp33034 +a(g33031 +g33033 +S'right' +p33035 +tp33036 +a(g33033 +g33035 +S'shoe;' +p33037 +tp33038 +a(g33035 +g33037 +S'each' +p33039 +tp33040 +a(g33037 +g33039 +S'shoe' +p33041 +tp33042 +a(g33039 +g33041 +S'of' +p33043 +tp33044 +a(g33041 +g33043 +S'a' +p33045 +tp33046 +a(g33043 +g33045 +S'pair' +p33047 +tp33048 +a(g33045 +g33047 +S'could' +p33049 +tp33050 +a(g33047 +g33049 +S'be' +p33051 +tp33052 +a(g33049 +g33051 +S'worn' +p33053 +tp33054 +a(g33051 +g33053 +S'on' +p33055 +tp33056 +a(g33053 +g33055 +S'either' +p33057 +tp33058 +a(g33055 +g33057 +S'the' +p33059 +tp33060 +a(g33057 +g33059 +S'left' +p33061 +tp33062 +a(g33059 +g33061 +S'or' +p33063 +tp33064 +a(g33061 +g33063 +S'the' +p33065 +tp33066 +a(g33063 +g33065 +S'right' +p33067 +tp33068 +a(g33065 +g33067 +S'foot.' +p33069 +tp33070 +a(g33067 +g33069 +S'the' +p33071 +tp33072 +a(g33069 +g33071 +S'folding' +p33073 +tp33074 +a(g33071 +g33073 +S'fan' +p33075 +tp33076 +a(g33073 +g33075 +S'was' +p33077 +tp33078 +a(g33075 +g33077 +S'probably' +p33079 +tp33080 +a(g33077 +g33079 +S'invented' +p33081 +tp33082 +a(g33079 +g33081 +S'in' +p33083 +tp33084 +a(g33081 +g33083 +S'japan' +p33085 +tp33086 +a(g33083 +g33085 +S'in' +p33087 +tp33088 +a(g33085 +g33087 +S'the' +p33089 +tp33090 +a(g33087 +g33089 +S'seventh' +p33091 +tp33092 +a(g33089 +g33091 +S'century.' +p33093 +tp33094 +a(g33091 +g33093 +S'examples' +p33095 +tp33096 +a(g33093 +g33095 +S'of' +p33097 +tp33098 +a(g33095 +g33097 +S'fans' +p33099 +tp33100 +a(g33097 +g33099 +S'from' +p33101 +tp33102 +a(g33099 +g33101 +S'the' +p33103 +tp33104 +a(g33101 +g33103 +S'east' +p33105 +tp33106 +a(g33103 +g33105 +S'were' +p33107 +tp33108 +a(g33105 +g33107 +S'brought' +p33109 +tp33110 +a(g33107 +g33109 +S'into' +p33111 +tp33112 +a(g33109 +g33111 +S'europe' +p33113 +tp33114 +a(g33111 +g33113 +S'during' +p33115 +tp33116 +a(g33113 +g33115 +S'the' +p33117 +tp33118 +a(g33115 +g33117 +S'crusades.' +p33119 +tp33120 +a(g33117 +g33119 +S'folding' +p33121 +tp33122 +a(g33119 +g33121 +S'fans' +p33123 +tp33124 +a(g33121 +g33123 +S'were' +p33125 +tp33126 +a(g33123 +g33125 +S'common' +p33127 +tp33128 +a(g33125 +g33127 +S'as' +p33129 +tp33130 +a(g33127 +g33129 +S'costume' +p33131 +tp33132 +a(g33129 +g33131 +S'accessories' +p33133 +tp33134 +a(g33131 +g33133 +S'by' +p33135 +tp33136 +a(g33133 +g33135 +S'the' +p33137 +tp33138 +a(g33135 +g33137 +S'eighteenth' +p33139 +tp33140 +a(g33137 +g33139 +S'century' +p33141 +tp33142 +a(g33139 +g33141 +S'and' +p33143 +tp33144 +a(g33141 +g33143 +S'were' +p33145 +tp33146 +a(g33143 +g33145 +S'introduced' +p33147 +tp33148 +a(g33145 +g33147 +S'to' +p33149 +tp33150 +a(g33147 +g33149 +S'america' +p33151 +tp33152 +a(g33149 +g33151 +S'as' +p33153 +tp33154 +a(g33151 +g33153 +S'early' +p33155 +tp33156 +a(g33153 +g33155 +S'as' +p33157 +tp33158 +a(g33155 +g33157 +S'1732.' +p33159 +tp33160 +a(g33157 +g33159 +S'during' +p33161 +tp33162 +a(g33159 +g33161 +S'the' +p33163 +tp33164 +a(g33161 +g33163 +S'colonial' +p33165 +tp33166 +a(g33163 +g33165 +S'period,' +p33167 +tp33168 +a(g33165 +g33167 +S'boston' +p33169 +tp33170 +a(g33167 +g33169 +S'was' +p33171 +tp33172 +a(g33169 +g33171 +S'a' +p33173 +tp33174 +a(g33171 +g33173 +S'fan-making' +p33175 +tp33176 +a(g33173 +g33175 +S'center.' +p33177 +tp33178 +a(g33175 +g33177 +S'this' +p33179 +tp33180 +a(g33177 +g33179 +S'fan' +p33181 +tp33182 +a(g33179 +g33181 +S'from' +p33183 +tp33184 +a(g33181 +g33183 +S'about' +p33185 +tp33186 +a(g33183 +g33185 +S'1860' +p33187 +tp33188 +a(g33185 +g33187 +S'is' +p33189 +tp33190 +a(g33187 +g33189 +S'constructed' +p33191 +tp33192 +a(g33189 +g33191 +S'of' +p33193 +tp33194 +a(g33191 +g33193 +S'black' +p33195 +tp33196 +a(g33193 +g33195 +S'wood' +p33197 +tp33198 +a(g33195 +g33197 +S'supports' +p33199 +tp33200 +a(g33197 +g33199 +S'decorated' +p33201 +tp33202 +a(g33199 +g33201 +S'with' +p33203 +tp33204 +a(g33201 +g33203 +S'red' +p33205 +tp33206 +a(g33203 +g33205 +S'and' +p33207 +tp33208 +a(g33205 +g33207 +S'gold' +p33209 +tp33210 +a(g33207 +g33209 +S'flowers.' +p33211 +tp33212 +a(g33209 +g33211 +S'the' +p33213 +tp33214 +a(g33211 +g33213 +S'upper' +p33215 +tp33216 +a(g33213 +g33215 +S'portion' +p33217 +tp33218 +a(g33215 +g33217 +S'is' +p33219 +tp33220 +a(g33217 +g33219 +S'a' +p33221 +tp33222 +a(g33219 +g33221 +S'colored' +p33223 +tp33224 +a(g33221 +g33223 +S'engraving' +p33225 +tp33226 +a(g33223 +g33225 +S'of' +p33227 +tp33228 +a(g33225 +g33227 +S'fashionable' +p33229 +tp33230 +a(g33227 +g33229 +S'young' +p33231 +tp33232 +a(g33229 +g33231 +S'women' +p33233 +tp33234 +a(g33231 +g33233 +S'and' +p33235 +tp33236 +a(g33233 +g33235 +S'men' +p33237 +tp33238 +a(g33235 +g33237 +S'amusing' +p33239 +tp33240 +a(g33237 +g33239 +S'themselves' +p33241 +tp33242 +a(g33239 +g33241 +S'in' +p33243 +tp33244 +a(g33241 +g33243 +S'the' +p33245 +tp33246 +a(g33243 +g33245 +S'countryside.' +p33247 +tp33248 +a(g33245 +g33247 +S'in' +p33249 +tp33250 +a(g33247 +g33249 +S'addition' +p33251 +tp33252 +a(g33249 +g33251 +S'to' +p33253 +tp33254 +a(g33251 +g33253 +S'the' +p33255 +tp33256 +a(g33253 +g33255 +S'beauty' +p33257 +tp33258 +a(g33255 +g33257 +S'of' +p33259 +tp33260 +a(g33257 +g33259 +S'this' +p33261 +tp33262 +a(g33259 +g33261 +S'accessory,' +p33263 +tp33264 +a(g33261 +g33263 +S'the' +p33265 +tp33266 +a(g33263 +g33265 +S'way' +p33267 +tp33268 +a(g33265 +g33267 +S'a' +p33269 +tp33270 +a(g33267 +g33269 +S'fan' +p33271 +tp33272 +a(g33269 +g33271 +S'was' +p33273 +tp33274 +a(g33271 +g33273 +S'used' +p33275 +tp33276 +a(g33273 +g33275 +S'indicated' +p33277 +tp33278 +a(g33275 +g33277 +S'something' +p33279 +tp33280 +a(g33277 +g33279 +S'of' +p33281 +tp33282 +a(g33279 +g33281 +S'a' +p33283 +tp33284 +a(g33281 +g33283 +S"woman's" +p33285 +tp33286 +a(g33283 +g33285 +S'social' +p33287 +tp33288 +a(g33285 +g33287 +S'grace.' +p33289 +tp33290 +a(g33287 +g33289 +S'the' +p33291 +tp33292 +a(g33289 +g33291 +S'english' +p33293 +tp33294 +a(g33291 +g33293 +S'writer' +p33295 +tp33296 +a(g33293 +g33295 +S'joseph' +p33297 +tp33298 +a(g33295 +g33297 +S'addison,' +p33299 +tp33300 +a(g33297 +g33299 +S'in' +p33301 +tp33302 +a(g33299 +g33301 +S'his' +p33303 +tp33304 +a(g33301 +g33303 +S'work' +p33305 +tp33306 +a(g33303 +g33305 +S'this' +p33307 +tp33308 +a(g33305 +g33307 +S'handbag' +p33309 +tp33310 +a(g33307 +g33309 +S'was' +p33311 +tp33312 +a(g33309 +g33311 +S'made' +p33313 +tp33314 +a(g33311 +g33313 +S'about' +p33315 +tp33316 +a(g33313 +g33315 +S'1850' +p33317 +tp33318 +a(g33315 +g33317 +S'in' +p33319 +tp33320 +a(g33317 +g33319 +S'new' +p33321 +tp33322 +a(g33319 +g33321 +S'orleans.' +p33323 +tp33324 +a(g33321 +g33323 +S'it' +p33325 +tp33326 +a(g33323 +g33325 +S'is' +p33327 +tp33328 +a(g33325 +g33327 +S'crocheted' +p33329 +tp33330 +a(g33327 +g33329 +S'in' +p33331 +tp33332 +a(g33329 +g33331 +S'black' +p33333 +tp33334 +a(g33331 +g33333 +S'cotton,' +p33335 +tp33336 +a(g33333 +g33335 +S'beaded,' +p33337 +tp33338 +a(g33335 +g33337 +S'and' +p33339 +tp33340 +a(g33337 +g33339 +S'has' +p33341 +tp33342 +a(g33339 +g33341 +S'cut' +p33343 +tp33344 +a(g33341 +g33343 +S'steel' +p33345 +tp33346 +a(g33343 +g33345 +S'and' +p33347 +tp33348 +a(g33345 +g33347 +S'jet' +p33349 +tp33350 +a(g33347 +g33349 +S'ball' +p33351 +tp33352 +a(g33349 +g33351 +S'trimmings.' +p33353 +tp33354 +a(g33351 +g33353 +S'the' +p33355 +tp33356 +a(g33353 +g33355 +S'design' +p33357 +tp33358 +a(g33355 +g33357 +S'and' +p33359 +tp33360 +a(g33357 +g33359 +S'decorative' +p33361 +tp33362 +a(g33359 +g33361 +S'detail' +p33363 +tp33364 +a(g33361 +g33363 +S'reflect' +p33365 +tp33366 +a(g33363 +g33365 +S'a' +p33367 +tp33368 +a(g33365 +g33367 +S'general' +p33369 +tp33370 +a(g33367 +g33369 +S'taste' +p33371 +tp33372 +a(g33369 +g33371 +S'in' +p33373 +tp33374 +a(g33371 +g33373 +S'costume' +p33375 +tp33376 +a(g33373 +g33375 +S'and' +p33377 +tp33378 +a(g33375 +g33377 +S'the' +p33379 +tp33380 +a(g33377 +g33379 +S'decorative' +p33381 +tp33382 +a(g33379 +g33381 +S'arts' +p33383 +tp33384 +a(g33381 +g33383 +S'at' +p33385 +tp33386 +a(g33383 +g33385 +S'this' +p33387 +tp33388 +a(g33385 +g33387 +S'time,' +p33389 +tp33390 +a(g33387 +g33389 +S'which' +p33391 +tp33392 +a(g33389 +g33391 +S'was' +p33393 +tp33394 +a(g33391 +g33393 +S'more' +p33395 +tp33396 +a(g33393 +g33395 +S'exuberant' +p33397 +tp33398 +a(g33395 +g33397 +S'and' +p33399 +tp33400 +a(g33397 +g33399 +S'less' +p33401 +tp33402 +a(g33399 +g33401 +S'constrained' +p33403 +tp33404 +a(g33401 +g33403 +S'than' +p33405 +tp33406 +a(g33403 +g33405 +S'taste' +p33407 +tp33408 +a(g33405 +g33407 +S'of' +p33409 +tp33410 +a(g33407 +g33409 +S'the' +p33411 +tp33412 +a(g33409 +g33411 +S'previous' +p33413 +tp33414 +a(g33411 +g33413 +S'decade.' +p33415 +tp33416 +a(g33413 +g33415 +S'this' +p33417 +tp33418 +a(g33415 +g33417 +S'chalice,' +p33419 +tp33420 +a(g33417 +g33419 +S'a' +p33421 +tp33422 +a(g33419 +g33421 +S'vessel' +p33423 +tp33424 +a(g33421 +g33423 +S'to' +p33425 +tp33426 +a(g33423 +g33425 +S'hold' +p33427 +tp33428 +a(g33425 +g33427 +S'wine' +p33429 +tp33430 +a(g33427 +g33429 +S'for' +p33431 +tp33432 +a(g33429 +g33431 +S'mass,' +p33433 +tp33434 +a(g33431 +g33433 +S'is' +p33435 +tp33436 +a(g33433 +g33435 +S'one' +p33437 +tp33438 +a(g33435 +g33437 +S'of' +p33439 +tp33440 +a(g33437 +g33439 +S'the' +p33441 +tp33442 +a(g33439 +g33441 +S'most' +p33443 +tp33444 +a(g33441 +g33443 +S'splendid' +p33445 +tp33446 +a(g33443 +g33445 +S'treasures' +p33447 +tp33448 +a(g33445 +g33447 +S'from' +p33449 +tp33450 +a(g33447 +g33449 +S'the' +p33451 +tp33452 +a(g33449 +g33451 +S'middle' +p33453 +tp33454 +a(g33451 +g33453 +S'ages.' +p33455 +tp33456 +a(g33453 +g33455 +S'acquired' +p33457 +tp33458 +a(g33455 +g33457 +S'by' +p33459 +tp33460 +a(g33457 +g33459 +S'abbot' +p33461 +tp33462 +a(g33459 +g33461 +S'suger' +p33463 +tp33464 +a(g33461 +g33463 +S'for' +p33465 +tp33466 +a(g33463 +g33465 +S'the' +p33467 +tp33468 +a(g33465 +g33467 +S'french' +p33469 +tp33470 +a(g33467 +g33469 +S'royal' +p33471 +tp33472 +a(g33469 +g33471 +S'abbey' +p33473 +tp33474 +a(g33471 +g33473 +S'of' +p33475 +tp33476 +a(g33473 +g33475 +S'saint-denis,' +p33477 +tp33478 +a(g33475 +g33477 +S'near' +p33479 +tp33480 +a(g33477 +g33479 +S'paris,' +p33481 +tp33482 +a(g33479 +g33481 +S'the' +p33483 +tp33484 +a(g33481 +g33483 +S'stone' +p33485 +tp33486 +a(g33483 +g33485 +S'cup' +p33487 +tp33488 +a(g33485 +g33487 +S'was' +p33489 +tp33490 +a(g33487 +g33489 +S'set' +p33491 +tp33492 +a(g33489 +g33491 +S'in' +p33493 +tp33494 +a(g33491 +g33493 +S'gold' +p33495 +tp33496 +a(g33493 +g33495 +S'and' +p33497 +tp33498 +a(g33495 +g33497 +S'probably' +p33499 +tp33500 +a(g33497 +g33499 +S'used' +p33501 +tp33502 +a(g33499 +g33501 +S'in' +p33503 +tp33504 +a(g33501 +g33503 +S'the' +p33505 +tp33506 +a(g33503 +g33505 +S'consecration' +p33507 +tp33508 +a(g33505 +g33507 +S'ceremony' +p33509 +tp33510 +a(g33507 +g33509 +S'for' +p33511 +tp33512 +a(g33509 +g33511 +S'the' +p33513 +tp33514 +a(g33511 +g33513 +S'new' +p33515 +tp33516 +a(g33513 +g33515 +S'altar' +p33517 +tp33518 +a(g33515 +g33517 +S'chapels' +p33519 +tp33520 +a(g33517 +g33519 +S'of' +p33521 +tp33522 +a(g33519 +g33521 +S'the' +p33523 +tp33524 +a(g33521 +g33523 +S'church' +p33525 +tp33526 +a(g33523 +g33525 +S'on' +p33527 +tp33528 +a(g33525 +g33527 +S'11' +p33529 +tp33530 +a(g33527 +g33529 +S'june' +p33531 +tp33532 +a(g33529 +g33531 +S'1144.' +p33533 +tp33534 +a(g33531 +g33533 +S'suger,' +p33535 +tp33536 +a(g33533 +g33535 +S'abbot' +p33537 +tp33538 +a(g33535 +g33537 +S'of' +p33539 +tp33540 +a(g33537 +g33539 +S'saint-denis' +p33541 +tp33542 +a(g33539 +g33541 +S'from' +p33543 +tp33544 +a(g33541 +g33543 +S'1122' +p33545 +tp33546 +a(g33543 +g33545 +S'to' +p33547 +tp33548 +a(g33545 +g33547 +S'1151,' +p33549 +tp33550 +a(g33547 +g33549 +S'was' +p33551 +tp33552 +a(g33549 +g33551 +S'not' +p33553 +tp33554 +a(g33551 +g33553 +S'only' +p33555 +tp33556 +a(g33553 +g33555 +S'a' +p33557 +tp33558 +a(g33555 +g33557 +S'benedictine' +p33559 +tp33560 +a(g33557 +g33559 +S'monk' +p33561 +tp33562 +a(g33559 +g33561 +S'but' +p33563 +tp33564 +a(g33561 +g33563 +S'also' +p33565 +tp33566 +a(g33563 +g33565 +S'a' +p33567 +tp33568 +a(g33565 +g33567 +S'brilliant' +p33569 +tp33570 +a(g33567 +g33569 +S'administrator' +p33571 +tp33572 +a(g33569 +g33571 +S'who' +p33573 +tp33574 +a(g33571 +g33573 +S'served' +p33575 +tp33576 +a(g33573 +g33575 +S'as' +p33577 +tp33578 +a(g33575 +g33577 +S'regent' +p33579 +tp33580 +a(g33577 +g33579 +S'of' +p33581 +tp33582 +a(g33579 +g33581 +S'france' +p33583 +tp33584 +a(g33581 +g33583 +S'during' +p33585 +tp33586 +a(g33583 +g33585 +S'the' +p33587 +tp33588 +a(g33585 +g33587 +S'second' +p33589 +tp33590 +a(g33587 +g33589 +S'crusade.' +p33591 +tp33592 +a(g33589 +g33591 +S'with' +p33593 +tp33594 +a(g33591 +g33593 +S'objects' +p33595 +tp33596 +a(g33593 +g33595 +S'such' +p33597 +tp33598 +a(g33595 +g33597 +S'as' +p33599 +tp33600 +a(g33597 +g33599 +S'this' +p33601 +tp33602 +a(g33599 +g33601 +S'chalice' +p33603 +tp33604 +a(g33601 +g33603 +S'and' +p33605 +tp33606 +a(g33603 +g33605 +S'the' +p33607 +tp33608 +a(g33605 +g33607 +S"abbey's" +p33609 +tp33610 +a(g33607 +g33609 +S'new' +p33611 +tp33612 +a(g33609 +g33611 +S'gothic' +p33613 +tp33614 +a(g33611 +g33613 +S'architecture,' +p33615 +tp33616 +a(g33613 +g33615 +S'he' +p33617 +tp33618 +a(g33615 +g33617 +S'aimed' +p33619 +tp33620 +a(g33617 +g33619 +S'to' +p33621 +tp33622 +a(g33619 +g33621 +S'create' +p33623 +tp33624 +a(g33621 +g33623 +S'a' +p33625 +tp33626 +a(g33623 +g33625 +S'vision' +p33627 +tp33628 +a(g33625 +g33627 +S'of' +p33629 +tp33630 +a(g33627 +g33629 +S'paradise' +p33631 +tp33632 +a(g33629 +g33631 +S'on' +p33633 +tp33634 +a(g33631 +g33633 +S'earth' +p33635 +tp33636 +a(g33633 +g33635 +S'that' +p33637 +tp33638 +a(g33635 +g33637 +S'would' +p33639 +tp33640 +a(g33637 +g33639 +S'awe' +p33641 +tp33642 +a(g33639 +g33641 +S'beholders.' +p33643 +tp33644 +a(g33641 +g33643 +S'in' +p33645 +tp33646 +a(g33643 +g33645 +S'his' +p33647 +tp33648 +a(g33645 +g33647 +S'writings,' +p33649 +tp33650 +a(g33647 +g33649 +S'suger' +p33651 +tp33652 +a(g33649 +g33651 +S'equated' +p33653 +tp33654 +a(g33651 +g33653 +S'divine' +p33655 +tp33656 +a(g33653 +g33655 +S'light' +p33657 +tp33658 +a(g33655 +g33657 +S'with' +p33659 +tp33660 +a(g33657 +g33659 +S'the' +p33661 +tp33662 +a(g33659 +g33661 +S'real' +p33663 +tp33664 +a(g33661 +g33663 +S'light' +p33665 +tp33666 +a(g33663 +g33665 +S'shimmering' +p33667 +tp33668 +a(g33665 +g33667 +S'through' +p33669 +tp33670 +a(g33667 +g33669 +S'stained' +p33671 +tp33672 +a(g33669 +g33671 +S'glass' +p33673 +tp33674 +a(g33671 +g33673 +S'and' +p33675 +tp33676 +a(g33673 +g33675 +S'glistening' +p33677 +tp33678 +a(g33675 +g33677 +S'from' +p33679 +tp33680 +a(g33677 +g33679 +S'gems.' +p33681 +tp33682 +a(g33679 +g33681 +S'the' +p33683 +tp33684 +a(g33681 +g33683 +S'cup' +p33685 +tp33686 +a(g33683 +g33685 +S'incorporated' +p33687 +tp33688 +a(g33685 +g33687 +S'in' +p33689 +tp33690 +a(g33687 +g33689 +S'abbot' +p33691 +tp33692 +a(g33689 +g33691 +S"suger's" +p33693 +tp33694 +a(g33691 +g33693 +S'chalice' +p33695 +tp33696 +a(g33693 +g33695 +S'was' +p33697 +tp33698 +a(g33695 +g33697 +S'carved' +p33699 +tp33700 +a(g33697 +g33699 +S'from' +p33701 +tp33702 +a(g33699 +g33701 +S'sardonyx,' +p33703 +tp33704 +a(g33701 +g33703 +S'probably' +p33705 +tp33706 +a(g33703 +g33705 +S'in' +p33707 +tp33708 +a(g33705 +g33707 +S'alexandria,' +p33709 +tp33710 +a(g33707 +g33709 +S'egypt' +p33711 +tp33712 +a(g33709 +g33711 +S'during' +p33713 +tp33714 +a(g33711 +g33713 +S'the' +p33715 +tp33716 +a(g33713 +g33715 +S'second' +p33717 +tp33718 +a(g33715 +g33717 +S'to' +p33719 +tp33720 +a(g33717 +g33719 +S'first' +p33721 +tp33722 +a(g33719 +g33721 +S'centuries' +p33723 +tp33724 +a(g33721 +g33723 +S'b.c.' +p33725 +tp33726 +a(g33723 +g33725 +S"suger's" +p33727 +tp33728 +a(g33725 +g33727 +S'goldsmiths' +p33729 +tp33730 +a(g33727 +g33729 +S'mounted' +p33731 +tp33732 +a(g33729 +g33731 +S'the' +p33733 +tp33734 +a(g33731 +g33733 +S'cup' +p33735 +tp33736 +a(g33733 +g33735 +S'in' +p33737 +tp33738 +a(g33735 +g33737 +S'a' +p33739 +tp33740 +a(g33737 +g33739 +S'gold' +p33741 +tp33742 +a(g33739 +g33741 +S'and' +p33743 +tp33744 +a(g33741 +g33743 +S'silver' +p33745 +tp33746 +a(g33743 +g33745 +S'setting' +p33747 +tp33748 +a(g33745 +g33747 +S'with' +p33749 +tp33750 +a(g33747 +g33749 +S'delicate' +p33751 +tp33752 +a(g33749 +g33751 +S'gold-wire' +p33753 +tp33754 +a(g33751 +g33753 +S'filigree' +p33755 +tp33756 +a(g33753 +g33755 +S'and' +p33757 +tp33758 +a(g33755 +g33757 +S'adorned' +p33759 +tp33760 +a(g33757 +g33759 +S'it' +p33761 +tp33762 +a(g33759 +g33761 +S'with' +p33763 +tp33764 +a(g33761 +g33763 +S'gems.' +p33765 +tp33766 +a(g33763 +g33765 +S'on' +p33767 +tp33768 +a(g33765 +g33767 +S'the' +p33769 +tp33770 +a(g33767 +g33769 +S'foot,' +p33771 +tp33772 +a(g33769 +g33771 +S'a' +p33773 +tp33774 +a(g33771 +g33773 +S'medallion' +p33775 +tp33776 +a(g33773 +g33775 +S'depicts' +p33777 +tp33778 +a(g33775 +g33777 +S'the' +p33779 +tp33780 +a(g33777 +g33779 +S'haloed' +p33781 +tp33782 +a(g33779 +g33781 +S'christ,' +p33783 +tp33784 +a(g33781 +g33783 +S'flanked' +p33785 +tp33786 +a(g33783 +g33785 +S'by' +p33787 +tp33788 +a(g33785 +g33787 +S'the' +p33789 +tp33790 +a(g33787 +g33789 +S'greek' +p33791 +tp33792 +a(g33789 +g33791 +S'letters' +p33793 +tp33794 +a(g33791 +g33793 +S'signifying:' +p33795 +tp33796 +a(g33793 +g33795 +S'"i' +p33797 +tp33798 +a(g33795 +g33797 +S'am' +p33799 +tp33800 +a(g33797 +g33799 +S'the' +p33801 +tp33802 +a(g33799 +g33801 +S'alpha' +p33803 +tp33804 +a(g33801 +g33803 +S'and' +p33805 +tp33806 +a(g33803 +g33805 +S'omega,' +p33807 +tp33808 +a(g33805 +g33807 +S'the' +p33809 +tp33810 +a(g33807 +g33809 +S'beginning' +p33811 +tp33812 +a(g33809 +g33811 +S'and' +p33813 +tp33814 +a(g33811 +g33813 +S'the' +p33815 +tp33816 +a(g33813 +g33815 +S'end."' +p33817 +tp33818 +a(g33815 +g33817 +S'parasols' +p33819 +tp33820 +a(g33817 +g33819 +S'--' +p33821 +tp33822 +a(g33819 +g33821 +S'used' +p33823 +tp33824 +a(g33821 +g33823 +S'for' +p33825 +tp33826 +a(g33823 +g33825 +S'protection' +p33827 +tp33828 +a(g33825 +g33827 +S'against' +p33829 +tp33830 +a(g33827 +g33829 +S'the' +p33831 +tp33832 +a(g33829 +g33831 +S'sun' +p33833 +tp33834 +a(g33831 +g33833 +S'--' +p33835 +tp33836 +a(g33833 +g33835 +S'became' +p33837 +tp33838 +a(g33835 +g33837 +S'stylish' +p33839 +tp33840 +a(g33837 +g33839 +S'in' +p33841 +tp33842 +a(g33839 +g33841 +S'europe' +p33843 +tp33844 +a(g33841 +g33843 +S'in' +p33845 +tp33846 +a(g33843 +g33845 +S'the' +p33847 +tp33848 +a(g33845 +g33847 +S'middle' +p33849 +tp33850 +a(g33847 +g33849 +S'of' +p33851 +tp33852 +a(g33849 +g33851 +S'the' +p33853 +tp33854 +a(g33851 +g33853 +S'eighteenth' +p33855 +tp33856 +a(g33853 +g33855 +S'century.' +p33857 +tp33858 +a(g33855 +g33857 +S'in' +p33859 +tp33860 +a(g33857 +g33859 +S'1772,' +p33861 +tp33862 +a(g33859 +g33861 +S'a' +p33863 +tp33864 +a(g33861 +g33863 +S'baltimore' +p33865 +tp33866 +a(g33863 +g33865 +S"merchant's" +p33867 +tp33868 +a(g33865 +g33867 +S'chance' +p33869 +tp33870 +a(g33867 +g33869 +S'purchase' +p33871 +tp33872 +a(g33869 +g33871 +S'from' +p33873 +tp33874 +a(g33871 +g33873 +S'a' +p33875 +tp33876 +a(g33873 +g33875 +S"ship's" +p33877 +tp33878 +a(g33875 +g33877 +S'store' +p33879 +tp33880 +a(g33877 +g33879 +S'introduced' +p33881 +tp33882 +a(g33879 +g33881 +S'the' +p33883 +tp33884 +a(g33881 +g33883 +S'parasol' +p33885 +tp33886 +a(g33883 +g33885 +S'to' +p33887 +tp33888 +a(g33885 +g33887 +S'america.' +p33889 +tp33890 +a(g33887 +g33889 +S'soon' +p33891 +tp33892 +a(g33889 +g33891 +S'the' +p33893 +tp33894 +a(g33891 +g33893 +S'fashion' +p33895 +tp33896 +a(g33893 +g33895 +S'centers' +p33897 +tp33898 +a(g33895 +g33897 +S'of' +p33899 +tp33900 +a(g33897 +g33899 +S'philadelphia' +p33901 +tp33902 +a(g33899 +g33901 +S'and' +p33903 +tp33904 +a(g33901 +g33903 +S'new' +p33905 +tp33906 +a(g33903 +g33905 +S'york' +p33907 +tp33908 +a(g33905 +g33907 +S'took' +p33909 +tp33910 +a(g33907 +g33909 +S'an' +p33911 +tp33912 +a(g33909 +g33911 +S'interset' +p33913 +tp33914 +a(g33911 +g33913 +S'in' +p33915 +tp33916 +a(g33913 +g33915 +S'this' +p33917 +tp33918 +a(g33915 +g33917 +S'kind' +p33919 +tp33920 +a(g33917 +g33919 +S'of' +p33921 +tp33922 +a(g33919 +g33921 +S'accessory.' +p33923 +tp33924 +a(g33921 +g33923 +S'by' +p33925 +tp33926 +a(g33923 +g33925 +S'the' +p33927 +tp33928 +a(g33925 +g33927 +S'nineteenth' +p33929 +tp33930 +a(g33927 +g33929 +S'century,' +p33931 +tp33932 +a(g33929 +g33931 +S'parasols' +p33933 +tp33934 +a(g33931 +g33933 +S'were' +p33935 +tp33936 +a(g33933 +g33935 +S'commonly' +p33937 +tp33938 +a(g33935 +g33937 +S'used' +p33939 +tp33940 +a(g33937 +g33939 +S'by' +p33941 +tp33942 +a(g33939 +g33941 +S'women' +p33943 +tp33944 +a(g33941 +g33943 +S'for' +p33945 +tp33946 +a(g33943 +g33945 +S'carriage' +p33947 +tp33948 +a(g33945 +g33947 +S'rides' +p33949 +tp33950 +a(g33947 +g33949 +S'or' +p33951 +tp33952 +a(g33949 +g33951 +S'for' +p33953 +tp33954 +a(g33951 +g33953 +S'promenading.' +p33955 +tp33956 +a(g33953 +g33955 +S'this' +p33957 +tp33958 +a(g33955 +g33957 +S'silk' +p33959 +tp33960 +a(g33957 +g33959 +S'parasol' +p33961 +tp33962 +a(g33959 +g33961 +S'has' +p33963 +tp33964 +a(g33961 +g33963 +S'an' +p33965 +tp33966 +a(g33963 +g33965 +S'ivory' +p33967 +tp33968 +a(g33965 +g33967 +S'handle' +p33969 +tp33970 +a(g33967 +g33969 +S'and' +p33971 +tp33972 +a(g33969 +g33971 +S'has' +p33973 +tp33974 +a(g33971 +g33973 +S'black' +p33975 +tp33976 +a(g33973 +g33975 +S'lace' +p33977 +tp33978 +a(g33975 +g33977 +S'applied' +p33979 +tp33980 +a(g33977 +g33979 +S'to' +p33981 +tp33982 +a(g33979 +g33981 +S'sections' +p33983 +tp33984 +a(g33981 +g33983 +S'of' +p33985 +tp33986 +a(g33983 +g33985 +S'the' +p33987 +tp33988 +a(g33985 +g33987 +S'covering.' +p33989 +tp33990 +a(g33987 +g33989 +S'the' +p33991 +tp33992 +a(g33989 +g33991 +S'style' +p33993 +tp33994 +a(g33991 +g33993 +S'of' +p33995 +tp33996 +a(g33993 +g33995 +S'lace' +p33997 +tp33998 +a(g33995 +g33997 +S'indicates' +p33999 +tp34000 +a(g33997 +g33999 +S'that' +p34001 +tp34002 +a(g33999 +g34001 +S'the' +p34003 +tp34004 +a(g34001 +g34003 +S'parasol' +p34005 +tp34006 +a(g34003 +g34005 +S'is' +p34007 +tp34008 +a(g34005 +g34007 +S'from' +p34009 +tp34010 +a(g34007 +g34009 +S'the' +p34011 +tp34012 +a(g34009 +g34011 +S'mid-nineteenth' +p34013 +tp34014 +a(g34011 +g34013 +S'century.' +p34015 +tp34016 +a(g34013 +g34015 +S'the' +p34017 +tp34018 +a(g34015 +g34017 +S'production' +p34019 +tp34020 +a(g34017 +g34019 +S'of' +p34021 +tp34022 +a(g34019 +g34021 +S'combs' +p34023 +tp34024 +a(g34021 +g34023 +S'began' +p34025 +tp34026 +a(g34023 +g34025 +S'in' +p34027 +tp34028 +a(g34025 +g34027 +S'america' +p34029 +tp34030 +a(g34027 +g34029 +S'in' +p34031 +tp34032 +a(g34029 +g34031 +S'1759.' +p34033 +tp34034 +a(g34031 +g34033 +S'by' +p34035 +tp34036 +a(g34033 +g34035 +S'1773,' +p34037 +tp34038 +a(g34035 +g34037 +S'in' +p34039 +tp34040 +a(g34037 +g34039 +S'addition' +p34041 +tp34042 +a(g34039 +g34041 +S'to' +p34043 +tp34044 +a(g34041 +g34043 +S'their' +p34045 +tp34046 +a(g34043 +g34045 +S'functional' +p34047 +tp34048 +a(g34045 +g34047 +S'use,' +p34049 +tp34050 +a(g34047 +g34049 +S'combs' +p34051 +tp34052 +a(g34049 +g34051 +S'of' +p34053 +tp34054 +a(g34051 +g34053 +S'ivory' +p34055 +tp34056 +a(g34053 +g34055 +S'and' +p34057 +tp34058 +a(g34055 +g34057 +S'tortoiseshell' +p34059 +tp34060 +a(g34057 +g34059 +S'were' +p34061 +tp34062 +a(g34059 +g34061 +S'in' +p34063 +tp34064 +a(g34061 +g34063 +S'demand' +p34065 +tp34066 +a(g34063 +g34065 +S'as' +p34067 +tp34068 +a(g34065 +g34067 +S'hair' +p34069 +tp34070 +a(g34067 +g34069 +S'ornaments.' +p34071 +tp34072 +a(g34069 +g34071 +S'by' +p34073 +tp34074 +a(g34071 +g34073 +S'the' +p34075 +tp34076 +a(g34073 +g34075 +S'nineteenth' +p34077 +tp34078 +a(g34075 +g34077 +S'century,' +p34079 +tp34080 +a(g34077 +g34079 +S'great' +p34081 +tp34082 +a(g34079 +g34081 +S'varieties' +p34083 +tp34084 +a(g34081 +g34083 +S'of' +p34085 +tp34086 +a(g34083 +g34085 +S'ornamental' +p34087 +tp34088 +a(g34085 +g34087 +S'combs' +p34089 +tp34090 +a(g34087 +g34089 +S'were' +p34091 +tp34092 +a(g34089 +g34091 +S'available.' +p34093 +tp34094 +a(g34091 +g34093 +S'this' +p34095 +tp34096 +a(g34093 +g34095 +S'tortoiseshell' +p34097 +tp34098 +a(g34095 +g34097 +S'comb,' +p34099 +tp34100 +a(g34097 +g34099 +S'made' +p34101 +tp34102 +a(g34099 +g34101 +S'between' +p34103 +tp34104 +a(g34101 +g34103 +S'1825' +p34105 +tp34106 +a(g34103 +g34105 +S'and' +p34107 +tp34108 +a(g34105 +g34107 +S'1830,' +p34109 +tp34110 +a(g34107 +g34109 +S'is' +p34111 +tp34112 +a(g34109 +g34111 +S'both' +p34113 +tp34114 +a(g34111 +g34113 +S'carved' +p34115 +tp34116 +a(g34113 +g34115 +S'and' +p34117 +tp34118 +a(g34115 +g34117 +S'etched;' +p34119 +tp34120 +a(g34117 +g34119 +S'the' +p34121 +tp34122 +a(g34119 +g34121 +S'etching' +p34123 +tp34124 +a(g34121 +g34123 +S'is' +p34125 +tp34126 +a(g34123 +g34125 +S'identical' +p34127 +tp34128 +a(g34125 +g34127 +S'on' +p34129 +tp34130 +a(g34127 +g34129 +S'both' +p34131 +tp34132 +a(g34129 +g34131 +S'sides.' +p34133 +tp34134 +a(g34131 +g34133 +S'the' +p34135 +tp34136 +a(g34133 +g34135 +S'comb' +p34137 +tp34138 +a(g34135 +g34137 +S'is' +p34139 +tp34140 +a(g34137 +g34139 +S'9' +p34141 +tp34142 +a(g34139 +g34141 +S'3/4' +p34143 +tp34144 +a(g34141 +g34143 +S'inches' +p34145 +tp34146 +a(g34143 +g34145 +S'wide,' +p34147 +tp34148 +a(g34145 +g34147 +S'and' +p34149 +tp34150 +a(g34147 +g34149 +S'its' +p34151 +tp34152 +a(g34149 +g34151 +S'height' +p34153 +tp34154 +a(g34151 +g34153 +S'at' +p34155 +tp34156 +a(g34153 +g34155 +S'the' +p34157 +tp34158 +a(g34155 +g34157 +S'center' +p34159 +tp34160 +a(g34157 +g34159 +S'is' +p34161 +tp34162 +a(g34159 +g34161 +S'9' +p34163 +tp34164 +a(g34161 +g34163 +S'inches.' +p34165 +tp34166 +a(g34163 +g34165 +S'its' +p34167 +tp34168 +a(g34165 +g34167 +S'size' +p34169 +tp34170 +a(g34167 +g34169 +S'and' +p34171 +tp34172 +a(g34169 +g34171 +S'elaborate' +p34173 +tp34174 +a(g34171 +g34173 +S'open' +p34175 +tp34176 +a(g34173 +g34175 +S'carving' +p34177 +tp34178 +a(g34175 +g34177 +S'give' +p34179 +tp34180 +a(g34177 +g34179 +S'it' +p34181 +tp34182 +a(g34179 +g34181 +S'a' +p34183 +tp34184 +a(g34181 +g34183 +S'striking' +p34185 +tp34186 +a(g34183 +g34185 +S'effect.' +p34187 +tp34188 +a(g34185 +g34187 +S'women' +p34189 +tp34190 +a(g34187 +g34189 +S'lavished' +p34191 +tp34192 +a(g34189 +g34191 +S'much' +p34193 +tp34194 +a(g34191 +g34193 +S'attention' +p34195 +tp34196 +a(g34193 +g34195 +S'on' +p34197 +tp34198 +a(g34195 +g34197 +S'show' +p34199 +tp34200 +a(g34197 +g34199 +S'towels,' +p34201 +tp34202 +a(g34199 +g34201 +S'embroidered' +p34203 +tp34204 +a(g34201 +g34203 +S'panels' +p34205 +tp34206 +a(g34203 +g34205 +S'hung' +p34207 +tp34208 +a(g34205 +g34207 +S'over' +p34209 +tp34210 +a(g34207 +g34209 +S'the' +p34211 +tp34212 +a(g34209 +g34211 +S'ordinary' +p34213 +tp34214 +a(g34211 +g34213 +S'towels' +p34215 +tp34216 +a(g34213 +g34215 +S'used' +p34217 +tp34218 +a(g34215 +g34217 +S'by' +p34219 +tp34220 +a(g34217 +g34219 +S'the' +p34221 +tp34222 +a(g34219 +g34221 +S'family' +p34223 +tp34224 +a(g34221 +g34223 +S'or' +p34225 +tp34226 +a(g34223 +g34225 +S'otherwise' +p34227 +tp34228 +a(g34225 +g34227 +S'displayed' +p34229 +tp34230 +a(g34227 +g34229 +S'as' +p34231 +tp34232 +a(g34229 +g34231 +S'decorations' +p34233 +tp34234 +a(g34231 +g34233 +S'on' +p34235 +tp34236 +a(g34233 +g34235 +S'doors.' +p34237 +tp34238 +a(g34235 +g34237 +S'show' +p34239 +tp34240 +a(g34237 +g34239 +S'towels' +p34241 +tp34242 +a(g34239 +g34241 +S'were' +p34243 +tp34244 +a(g34241 +g34243 +S'most' +p34245 +tp34246 +a(g34243 +g34245 +S'frequently' +p34247 +tp34248 +a(g34245 +g34247 +S'made' +p34249 +tp34250 +a(g34247 +g34249 +S'by' +p34251 +tp34252 +a(g34249 +g34251 +S'pennsylvania' +p34253 +tp34254 +a(g34251 +g34253 +S'german' +p34255 +tp34256 +a(g34253 +g34255 +S'settlers,' +p34257 +tp34258 +a(g34255 +g34257 +S'who' +p34259 +tp34260 +a(g34257 +g34259 +S'brought' +p34261 +tp34262 +a(g34259 +g34261 +S'to' +p34263 +tp34264 +a(g34261 +g34263 +S'america' +p34265 +tp34266 +a(g34263 +g34265 +S'their' +p34267 +tp34268 +a(g34265 +g34267 +S'european' +p34269 +tp34270 +a(g34267 +g34269 +S'traditions.' +p34271 +tp34272 +a(g34269 +g34271 +S'the' +p34273 +tp34274 +a(g34271 +g34273 +S'practice' +p34275 +tp34276 +a(g34273 +g34275 +S'of' +p34277 +tp34278 +a(g34275 +g34277 +S'concealing' +p34279 +tp34280 +a(g34277 +g34279 +S'homely' +p34281 +tp34282 +a(g34279 +g34281 +S'everyday' +p34283 +tp34284 +a(g34281 +g34283 +S'towels' +p34285 +tp34286 +a(g34283 +g34285 +S'behind' +p34287 +tp34288 +a(g34285 +g34287 +S'a' +p34289 +tp34290 +a(g34287 +g34289 +S'decoratively' +p34291 +tp34292 +a(g34289 +g34291 +S'embroidered' +p34293 +tp34294 +a(g34291 +g34293 +S'panel' +p34295 +tp34296 +a(g34293 +g34295 +S'gave' +p34297 +tp34298 +a(g34295 +g34297 +S'evidence' +p34299 +tp34300 +a(g34297 +g34299 +S'of' +p34301 +tp34302 +a(g34299 +g34301 +S'a' +p34303 +tp34304 +a(g34301 +g34303 +S'well-kept' +p34305 +tp34306 +a(g34303 +g34305 +S'home' +p34307 +tp34308 +a(g34305 +g34307 +S'and' +p34309 +tp34310 +a(g34307 +g34309 +S'of' +p34311 +tp34312 +a(g34309 +g34311 +S'the' +p34313 +tp34314 +a(g34311 +g34313 +S"housewife's" +p34315 +tp34316 +a(g34313 +g34315 +S'deftness' +p34317 +tp34318 +a(g34315 +g34317 +S'with' +p34319 +tp34320 +a(g34317 +g34319 +S'the' +p34321 +tp34322 +a(g34319 +g34321 +S'flax' +p34323 +tp34324 +a(g34321 +g34323 +S'wheel' +p34325 +tp34326 +a(g34323 +g34325 +S'and' +p34327 +tp34328 +a(g34325 +g34327 +S'the' +p34329 +tp34330 +a(g34327 +g34329 +S'needle.' +p34331 +tp34332 +a(g34329 +g34331 +S'in' +p34333 +tp34334 +a(g34331 +g34333 +S'this' +p34335 +tp34336 +a(g34333 +g34335 +S'example,' +p34337 +tp34338 +a(g34335 +g34337 +S'a' +p34339 +tp34340 +a(g34337 +g34339 +S'restrained' +p34341 +tp34342 +a(g34339 +g34341 +S'design' +p34343 +tp34344 +a(g34341 +g34343 +S'is' +p34345 +tp34346 +a(g34343 +g34345 +S'composed' +p34347 +tp34348 +a(g34345 +g34347 +S'of' +p34349 +tp34350 +a(g34347 +g34349 +S'schematic' +p34351 +tp34352 +a(g34349 +g34351 +S'urns' +p34353 +tp34354 +a(g34351 +g34353 +S'and' +p34355 +tp34356 +a(g34353 +g34355 +S'flowers' +p34357 +tp34358 +a(g34355 +g34357 +S'worked' +p34359 +tp34360 +a(g34357 +g34359 +S'in' +p34361 +tp34362 +a(g34359 +g34361 +S'cross-stitch.' +p34363 +tp34364 +a(g34361 +g34363 +S'though' +p34365 +tp34366 +a(g34363 +g34365 +S'the' +p34367 +tp34368 +a(g34365 +g34367 +S'design' +p34369 +tp34370 +a(g34367 +g34369 +S'is' +p34371 +tp34372 +a(g34369 +g34371 +S'extremely' +p34373 +tp34374 +a(g34371 +g34373 +S'refined,' +p34375 +tp34376 +a(g34373 +g34375 +S'a' +p34377 +tp34378 +a(g34375 +g34377 +S'lively' +p34379 +tp34380 +a(g34377 +g34379 +S'decorative' +p34381 +tp34382 +a(g34379 +g34381 +S'effect' +p34383 +tp34384 +a(g34381 +g34383 +S'is' +p34385 +tp34386 +a(g34383 +g34385 +S'created' +p34387 +tp34388 +a(g34385 +g34387 +S'by' +p34389 +tp34390 +a(g34387 +g34389 +S'the' +p34391 +tp34392 +a(g34389 +g34391 +S'bright' +p34393 +tp34394 +a(g34391 +g34393 +S'reds' +p34395 +tp34396 +a(g34393 +g34395 +S'and' +p34397 +tp34398 +a(g34395 +g34397 +S'greens' +p34399 +tp34400 +a(g34397 +g34399 +S'used' +p34401 +tp34402 +a(g34399 +g34401 +S'in' +p34403 +tp34404 +a(g34401 +g34403 +S'the' +p34405 +tp34406 +a(g34403 +g34405 +S'embroidery;' +p34407 +tp34408 +a(g34405 +g34407 +S'the' +p34409 +tp34410 +a(g34407 +g34409 +S'colors' +p34411 +tp34412 +a(g34409 +g34411 +S'stand' +p34413 +tp34414 +a(g34411 +g34413 +S'out' +p34415 +tp34416 +a(g34413 +g34415 +S'boldly' +p34417 +tp34418 +a(g34415 +g34417 +S'against' +p34419 +tp34420 +a(g34417 +g34419 +S'the' +p34421 +tp34422 +a(g34419 +g34421 +S'light' +p34423 +tp34424 +a(g34421 +g34423 +S'natural' +p34425 +tp34426 +a(g34423 +g34425 +S'linen' +p34427 +tp34428 +a(g34425 +g34427 +S'background.' +p34429 +tp34430 +a(g34427 +g34429 +S'embroidery' +p34431 +tp34432 +a(g34429 +g34431 +S'worked' +p34433 +tp34434 +a(g34431 +g34433 +S'with' +p34435 +tp34436 +a(g34433 +g34435 +S'loosely' +p34437 +tp34438 +a(g34435 +g34437 +S'twisted' +p34439 +tp34440 +a(g34437 +g34439 +S'yarn,' +p34441 +tp34442 +a(g34439 +g34441 +S'called' +p34443 +tp34444 +a(g34441 +g34443 +S'crewel,' +p34445 +tp34446 +a(g34443 +g34445 +S'is' +p34447 +tp34448 +a(g34445 +g34447 +S'known' +p34449 +tp34450 +a(g34447 +g34449 +S'as' +p34451 +tp34452 +a(g34449 +g34451 +S'crewelwork.' +p34453 +tp34454 +a(g34451 +g34453 +S'also' +p34455 +tp34456 +a(g34453 +g34455 +S'known' +p34457 +tp34458 +a(g34455 +g34457 +S'as' +p34459 +tp34460 +a(g34457 +g34459 +S'"worsted"' +p34461 +tp34462 +a(g34459 +g34461 +S'yarn,' +p34463 +tp34464 +a(g34461 +g34463 +S'crewel' +p34465 +tp34466 +a(g34463 +g34465 +S'was' +p34467 +tp34468 +a(g34465 +g34467 +S'widely' +p34469 +tp34470 +a(g34467 +g34469 +S'available' +p34471 +tp34472 +a(g34469 +g34471 +S'in' +p34473 +tp34474 +a(g34471 +g34473 +S'england' +p34475 +tp34476 +a(g34473 +g34475 +S'by' +p34477 +tp34478 +a(g34475 +g34477 +S'the' +p34479 +tp34480 +a(g34477 +g34479 +S'seventeenth' +p34481 +tp34482 +a(g34479 +g34481 +S'century,' +p34483 +tp34484 +a(g34481 +g34483 +S'when' +p34485 +tp34486 +a(g34483 +g34485 +S'favorable' +p34487 +tp34488 +a(g34485 +g34487 +S'agricultural' +p34489 +tp34490 +a(g34487 +g34489 +S'conditions' +p34491 +tp34492 +a(g34489 +g34491 +S'produced' +p34493 +tp34494 +a(g34491 +g34493 +S'robust' +p34495 +tp34496 +a(g34493 +g34495 +S'sheep' +p34497 +tp34498 +a(g34495 +g34497 +S'capable' +p34499 +tp34500 +a(g34497 +g34499 +S'of' +p34501 +tp34502 +a(g34499 +g34501 +S'growing' +p34503 +tp34504 +a(g34501 +g34503 +S'the' +p34505 +tp34506 +a(g34503 +g34505 +S'longer' +p34507 +tp34508 +a(g34505 +g34507 +S'strands' +p34509 +tp34510 +a(g34507 +g34509 +S'of' +p34511 +tp34512 +a(g34509 +g34511 +S'wool' +p34513 +tp34514 +a(g34511 +g34513 +S'required' +p34515 +tp34516 +a(g34513 +g34515 +S'for' +p34517 +tp34518 +a(g34515 +g34517 +S'this' +p34519 +tp34520 +a(g34517 +g34519 +S'yarn.' +p34521 +tp34522 +a(g34519 +g34521 +S'american' +p34523 +tp34524 +a(g34521 +g34523 +S'crewelwork' +p34525 +tp34526 +a(g34523 +g34525 +S'was' +p34527 +tp34528 +a(g34525 +g34527 +S'inherited' +p34529 +tp34530 +a(g34527 +g34529 +S'from' +p34531 +tp34532 +a(g34529 +g34531 +S'jacobean' +p34533 +tp34534 +a(g34531 +g34533 +S'england.' +p34535 +tp34536 +a(g34533 +g34535 +S'while' +p34537 +tp34538 +a(g34535 +g34537 +S'the' +p34539 +tp34540 +a(g34537 +g34539 +S'embroidery' +p34541 +tp34542 +a(g34539 +g34541 +S'is' +p34543 +tp34544 +a(g34541 +g34543 +S'generally' +p34545 +tp34546 +a(g34543 +g34545 +S'less' +p34547 +tp34548 +a(g34545 +g34547 +S'dense' +p34549 +tp34550 +a(g34547 +g34549 +S'than' +p34551 +tp34552 +a(g34549 +g34551 +S'that' +p34553 +tp34554 +a(g34551 +g34553 +S'of' +p34555 +tp34556 +a(g34553 +g34555 +S'english' +p34557 +tp34558 +a(g34555 +g34557 +S'prototypes,' +p34559 +tp34560 +a(g34557 +g34559 +S'english' +p34561 +tp34562 +a(g34559 +g34561 +S'patterns' +p34563 +tp34564 +a(g34561 +g34563 +S'were' +p34565 +tp34566 +a(g34563 +g34565 +S'perpetuated' +p34567 +tp34568 +a(g34565 +g34567 +S'in' +p34569 +tp34570 +a(g34567 +g34569 +S'american' +p34571 +tp34572 +a(g34569 +g34571 +S'designs.' +p34573 +tp34574 +a(g34571 +g34573 +S'coastal' +p34575 +tp34576 +a(g34573 +g34575 +S'new' +p34577 +tp34578 +a(g34575 +g34577 +S'england' +p34579 +tp34580 +a(g34577 +g34579 +S'was' +p34581 +tp34582 +a(g34579 +g34581 +S'the' +p34583 +tp34584 +a(g34581 +g34583 +S'center' +p34585 +tp34586 +a(g34583 +g34585 +S'of' +p34587 +tp34588 +a(g34585 +g34587 +S'crewelwork' +p34589 +tp34590 +a(g34587 +g34589 +S'activity' +p34591 +tp34592 +a(g34589 +g34591 +S'on' +p34593 +tp34594 +a(g34591 +g34593 +S'this' +p34595 +tp34596 +a(g34593 +g34595 +S'side' +p34597 +tp34598 +a(g34595 +g34597 +S'of' +p34599 +tp34600 +a(g34597 +g34599 +S'the' +p34601 +tp34602 +a(g34599 +g34601 +S'atlantic.' +p34603 +tp34604 +a(g34601 +g34603 +S'the' +p34605 +tp34606 +a(g34603 +g34605 +S'needlewomen' +p34607 +tp34608 +a(g34605 +g34607 +S'of' +p34609 +tp34610 +a(g34607 +g34609 +S'new' +p34611 +tp34612 +a(g34609 +g34611 +S'england' +p34613 +tp34614 +a(g34611 +g34613 +S'purchased' +p34615 +tp34616 +a(g34613 +g34615 +S'their' +p34617 +tp34618 +a(g34615 +g34617 +S'yarn,' +p34619 +tp34620 +a(g34617 +g34619 +S'as' +p34621 +tp34622 +a(g34619 +g34621 +S'well' +p34623 +tp34624 +a(g34621 +g34623 +S'as' +p34625 +tp34626 +a(g34623 +g34625 +S'the' +p34627 +tp34628 +a(g34625 +g34627 +S'fabric' +p34629 +tp34630 +a(g34627 +g34629 +S'on' +p34631 +tp34632 +a(g34629 +g34631 +S'which' +p34633 +tp34634 +a(g34631 +g34633 +S'they' +p34635 +tp34636 +a(g34633 +g34635 +S'embroidered,' +p34637 +tp34638 +a(g34635 +g34637 +S'from' +p34639 +tp34640 +a(g34637 +g34639 +S'england' +p34641 +tp34642 +a(g34639 +g34641 +S'and' +p34643 +tp34644 +a(g34641 +g34643 +S'generally' +p34645 +tp34646 +a(g34643 +g34645 +S'followed' +p34647 +tp34648 +a(g34645 +g34647 +S'english' +p34649 +tp34650 +a(g34647 +g34649 +S'needlework' +p34651 +tp34652 +a(g34649 +g34651 +S'styles.' +p34653 +tp34654 +a(g34651 +g34653 +S'crewelwork' +p34655 +tp34656 +a(g34653 +g34655 +S'motifs' +p34657 +tp34658 +a(g34655 +g34657 +S'were' +p34659 +tp34660 +a(g34657 +g34659 +S'derived' +p34661 +tp34662 +a(g34659 +g34661 +S'from' +p34663 +tp34664 +a(g34661 +g34663 +S'painted' +p34665 +tp34666 +a(g34663 +g34665 +S'and' +p34667 +tp34668 +a(g34665 +g34667 +S'printed' +p34669 +tp34670 +a(g34667 +g34669 +S'cottons' +p34671 +tp34672 +a(g34669 +g34671 +S'imported' +p34673 +tp34674 +a(g34671 +g34673 +S'into' +p34675 +tp34676 +a(g34673 +g34675 +S'england' +p34677 +tp34678 +a(g34675 +g34677 +S'from' +p34679 +tp34680 +a(g34677 +g34679 +S'india' +p34681 +tp34682 +a(g34679 +g34681 +S'during' +p34683 +tp34684 +a(g34681 +g34683 +S'the' +p34685 +tp34686 +a(g34683 +g34685 +S'seventeenth' +p34687 +tp34688 +a(g34685 +g34687 +S'and' +p34689 +tp34690 +a(g34687 +g34689 +S'eighteenth' +p34691 +tp34692 +a(g34689 +g34691 +S'centuries.' +p34693 +tp34694 +a(g34691 +g34693 +S'typical' +p34695 +tp34696 +a(g34693 +g34695 +S'crewelwork' +p34697 +tp34698 +a(g34695 +g34697 +S'designs' +p34699 +tp34700 +a(g34697 +g34699 +S'showed' +p34701 +tp34702 +a(g34699 +g34701 +S'flowering' +p34703 +tp34704 +a(g34701 +g34703 +S'trees' +p34705 +tp34706 +a(g34703 +g34705 +S'rising' +p34707 +tp34708 +a(g34705 +g34707 +S'from' +p34709 +tp34710 +a(g34707 +g34709 +S'delineated' +p34711 +tp34712 +a(g34709 +g34711 +S'hills,' +p34713 +tp34714 +a(g34711 +g34713 +S'as' +p34715 +tp34716 +a(g34713 +g34715 +S'in' +p34717 +tp34718 +a(g34715 +g34717 +S'this' +p34719 +tp34720 +a(g34717 +g34719 +S'eighteenth-century' +p34721 +tp34722 +a(g34719 +g34721 +S'example' +p34723 +tp34724 +a(g34721 +g34723 +S'made' +p34725 +tp34726 +a(g34723 +g34725 +S'in' +p34727 +tp34728 +a(g34725 +g34727 +S'massachusetts.' +p34729 +tp34730 +a(g34727 +g34729 +S'exotic' +p34731 +tp34732 +a(g34729 +g34731 +S'birds' +p34733 +tp34734 +a(g34731 +g34733 +S'in' +p34735 +tp34736 +a(g34733 +g34735 +S'scroll-like' +p34737 +tp34738 +a(g34735 +g34737 +S'branches' +p34739 +tp34740 +a(g34737 +g34739 +S'were' +p34741 +tp34742 +a(g34739 +g34741 +S'also' +p34743 +tp34744 +a(g34741 +g34743 +S'popular,' +p34745 +tp34746 +a(g34743 +g34745 +S'as' +p34747 +tp34748 +a(g34745 +g34747 +S'were' +p34749 +tp34750 +a(g34747 +g34749 +S'floral' +p34751 +tp34752 +a(g34749 +g34751 +S'sprays' +p34753 +tp34754 +a(g34751 +g34753 +S'scattered' +p34755 +tp34756 +a(g34753 +g34755 +S'irregularly' +p34757 +tp34758 +a(g34755 +g34757 +S'upon' +p34759 +tp34760 +a(g34757 +g34759 +S'the' +p34761 +tp34762 +a(g34759 +g34761 +S'ground' +p34763 +tp34764 +a(g34761 +g34763 +S'fabric,' +p34765 +tp34766 +a(g34763 +g34765 +S'which' +p34767 +tp34768 +a(g34765 +g34767 +S'was' +p34769 +tp34770 +a(g34767 +g34769 +S'usually' +p34771 +tp34772 +a(g34769 +g34771 +S'of' +p34773 +tp34774 +a(g34771 +g34773 +S'linen' +p34775 +tp34776 +a(g34773 +g34775 +S'plain-weave.' +p34777 +tp34778 +a(g34775 +g34777 +S'this' +p34779 +tp34780 +a(g34777 +g34779 +S'crewel-embroidered' +p34781 +tp34782 +a(g34779 +g34781 +S'valance' +p34783 +tp34784 +a(g34781 +g34783 +S'retains' +p34785 +tp34786 +a(g34783 +g34785 +S'the' +p34787 +tp34788 +a(g34785 +g34787 +S'luxuriant' +p34789 +tp34790 +a(g34787 +g34789 +S'character' +p34791 +tp34792 +a(g34789 +g34791 +S'of' +p34793 +tp34794 +a(g34791 +g34793 +S'indian' +p34795 +tp34796 +a(g34793 +g34795 +S'designs' +p34797 +tp34798 +a(g34795 +g34797 +S'in' +p34799 +tp34800 +a(g34797 +g34799 +S'the' +p34801 +tp34802 +a(g34799 +g34801 +S'forms' +p34803 +tp34804 +a(g34801 +g34803 +S'of' +p34805 +tp34806 +a(g34803 +g34805 +S'the' +p34807 +tp34808 +a(g34805 +g34807 +S'exotic' +p34809 +tp34810 +a(g34807 +g34809 +S'trees' +p34811 +tp34812 +a(g34809 +g34811 +S'and' +p34813 +tp34814 +a(g34811 +g34813 +S'in' +p34815 +tp34816 +a(g34813 +g34815 +S'the' +p34817 +tp34818 +a(g34815 +g34817 +S'rich' +p34819 +tp34820 +a(g34817 +g34819 +S'combination' +p34821 +tp34822 +a(g34819 +g34821 +S'of' +p34823 +tp34824 +a(g34821 +g34823 +S'brilliant' +p34825 +tp34826 +a(g34823 +g34825 +S'colors.' +p34827 +tp34828 +a(g34825 +g34827 +S'crewelwork' +p34829 +tp34830 +a(g34827 +g34829 +S'decorated' +p34831 +tp34832 +a(g34829 +g34831 +S'counterpanes' +p34833 +tp34834 +a(g34831 +g34833 +S'(bedspreads),' +p34835 +tp34836 +a(g34833 +g34835 +S'hangings' +p34837 +tp34838 +a(g34835 +g34837 +S'for' +p34839 +tp34840 +a(g34837 +g34839 +S'four-poster' +p34841 +tp34842 +a(g34839 +g34841 +S'beds,' +p34843 +tp34844 +a(g34841 +g34843 +S'valances' +p34845 +tp34846 +a(g34843 +g34845 +S'for' +p34847 +tp34848 +a(g34845 +g34847 +S'windows,' +p34849 +tp34850 +a(g34847 +g34849 +S'chair' +p34851 +tp34852 +a(g34849 +g34851 +S'coverings,' +p34853 +tp34854 +a(g34851 +g34853 +S'or' +p34855 +tp34856 +a(g34853 +g34855 +S'curtains' +p34857 +tp34858 +a(g34855 +g34857 +S'for' +p34859 +tp34860 +a(g34857 +g34859 +S'the' +p34861 +tp34862 +a(g34859 +g34861 +S'home.' +p34863 +tp34864 +a(g34861 +g34863 +S'american' +p34865 +tp34866 +a(g34863 +g34865 +S'women' +p34867 +tp34868 +a(g34865 +g34867 +S'displayed' +p34869 +tp34870 +a(g34867 +g34869 +S'a' +p34871 +tp34872 +a(g34869 +g34871 +S'brilliant' +p34873 +tp34874 +a(g34871 +g34873 +S'sense' +p34875 +tp34876 +a(g34873 +g34875 +S'of' +p34877 +tp34878 +a(g34875 +g34877 +S'design' +p34879 +tp34880 +a(g34877 +g34879 +S'not' +p34881 +tp34882 +a(g34879 +g34881 +S'only' +p34883 +tp34884 +a(g34881 +g34883 +S'in' +p34885 +tp34886 +a(g34883 +g34885 +S'embroidery,' +p34887 +tp34888 +a(g34885 +g34887 +S'but' +p34889 +tp34890 +a(g34887 +g34889 +S'also' +p34891 +tp34892 +a(g34889 +g34891 +S'in' +p34893 +tp34894 +a(g34891 +g34893 +S'hooked' +p34895 +tp34896 +a(g34893 +g34895 +S'rugs,' +p34897 +tp34898 +a(g34895 +g34897 +S'which' +p34899 +tp34900 +a(g34897 +g34899 +S'were' +p34901 +tp34902 +a(g34899 +g34901 +S'produced' +p34903 +tp34904 +a(g34901 +g34903 +S'by' +p34905 +tp34906 +a(g34903 +g34905 +S'housewives' +p34907 +tp34908 +a(g34905 +g34907 +S'everywhere.' +p34909 +tp34910 +a(g34907 +g34909 +S'hooked' +p34911 +tp34912 +a(g34909 +g34911 +S'rugs' +p34913 +tp34914 +a(g34911 +g34913 +S'testify' +p34915 +tp34916 +a(g34913 +g34915 +S'also' +p34917 +tp34918 +a(g34915 +g34917 +S'to' +p34919 +tp34920 +a(g34917 +g34919 +S'the' +p34921 +tp34922 +a(g34919 +g34921 +S"homemakers'" +p34923 +tp34924 +a(g34921 +g34923 +S'thrift,' +p34925 +tp34926 +a(g34923 +g34925 +S'for' +p34927 +tp34928 +a(g34925 +g34927 +S'the' +p34929 +tp34930 +a(g34927 +g34929 +S'women' +p34931 +tp34932 +a(g34929 +g34931 +S'made' +p34933 +tp34934 +a(g34931 +g34933 +S'them' +p34935 +tp34936 +a(g34933 +g34935 +S'from' +p34937 +tp34938 +a(g34935 +g34937 +S'worn-out' +p34939 +tp34940 +a(g34937 +g34939 +S'clothing' +p34941 +tp34942 +a(g34939 +g34941 +S'that' +p34943 +tp34944 +a(g34941 +g34943 +S'was' +p34945 +tp34946 +a(g34943 +g34945 +S'cut' +p34947 +tp34948 +a(g34945 +g34947 +S'into' +p34949 +tp34950 +a(g34947 +g34949 +S'long' +p34951 +tp34952 +a(g34949 +g34951 +S'strips.' +p34953 +tp34954 +a(g34951 +g34953 +S'these' +p34955 +tp34956 +a(g34953 +g34955 +S'strips' +p34957 +tp34958 +a(g34955 +g34957 +S'were' +p34959 +tp34960 +a(g34957 +g34959 +S'pulled' +p34961 +tp34962 +a(g34959 +g34961 +S'with' +p34963 +tp34964 +a(g34961 +g34963 +S'a' +p34965 +tp34966 +a(g34963 +g34965 +S'metal' +p34967 +tp34968 +a(g34965 +g34967 +S'hook' +p34969 +tp34970 +a(g34967 +g34969 +S'through' +p34971 +tp34972 +a(g34969 +g34971 +S'a' +p34973 +tp34974 +a(g34971 +g34973 +S'coarse' +p34975 +tp34976 +a(g34973 +g34975 +S'foundation' +p34977 +tp34978 +a(g34975 +g34977 +S'such' +p34979 +tp34980 +a(g34977 +g34979 +S'as' +p34981 +tp34982 +a(g34979 +g34981 +S'linen' +p34983 +tp34984 +a(g34981 +g34983 +S'or' +p34985 +tp34986 +a(g34983 +g34985 +S'burlap.' +p34987 +tp34988 +a(g34985 +g34987 +S'frequently,' +p34989 +tp34990 +a(g34987 +g34989 +S'discarded' +p34991 +tp34992 +a(g34989 +g34991 +S'feed' +p34993 +tp34994 +a(g34991 +g34993 +S'bags' +p34995 +tp34996 +a(g34993 +g34995 +S'were' +p34997 +tp34998 +a(g34995 +g34997 +S'used' +p34999 +tp35000 +a(g34997 +g34999 +S'as' +p35001 +tp35002 +a(g34999 +g35001 +S'backing.' +p35003 +tp35004 +a(g35001 +g35003 +S'each' +p35005 +tp35006 +a(g35003 +g35005 +S'strip' +p35007 +tp35008 +a(g35005 +g35007 +S'was' +p35009 +tp35010 +a(g35007 +g35009 +S'looped' +p35011 +tp35012 +a(g35009 +g35011 +S'on' +p35013 +tp35014 +a(g35011 +g35013 +S'the' +p35015 +tp35016 +a(g35013 +g35015 +S'surface' +p35017 +tp35018 +a(g35015 +g35017 +S'of' +p35019 +tp35020 +a(g35017 +g35019 +S'the' +p35021 +tp35022 +a(g35019 +g35021 +S'rug' +p35023 +tp35024 +a(g35021 +g35023 +S'and' +p35025 +tp35026 +a(g35023 +g35025 +S'pulled' +p35027 +tp35028 +a(g35025 +g35027 +S'flat' +p35029 +tp35030 +a(g35027 +g35029 +S'on' +p35031 +tp35032 +a(g35029 +g35031 +S'the' +p35033 +tp35034 +a(g35031 +g35033 +S'reverse' +p35035 +tp35036 +a(g35033 +g35035 +S'side;' +p35037 +tp35038 +a(g35035 +g35037 +S'the' +p35039 +tp35040 +a(g35037 +g35039 +S'process' +p35041 +tp35042 +a(g35039 +g35041 +S'was' +p35043 +tp35044 +a(g35041 +g35043 +S'repeated' +p35045 +tp35046 +a(g35043 +g35045 +S'again' +p35047 +tp35048 +a(g35045 +g35047 +S'and' +p35049 +tp35050 +a(g35047 +g35049 +S'again' +p35051 +tp35052 +a(g35049 +g35051 +S'to' +p35053 +tp35054 +a(g35051 +g35053 +S'create' +p35055 +tp35056 +a(g35053 +g35055 +S'a' +p35057 +tp35058 +a(g35055 +g35057 +S'nubby' +p35059 +tp35060 +a(g35057 +g35059 +S'surface' +p35061 +tp35062 +a(g35059 +g35061 +S'of' +p35063 +tp35064 +a(g35061 +g35063 +S'innumerable' +p35065 +tp35066 +a(g35063 +g35065 +S'loops.' +p35067 +tp35068 +a(g35065 +g35067 +S'at' +p35069 +tp35070 +a(g35067 +g35069 +S'times' +p35071 +tp35072 +a(g35069 +g35071 +S'the' +p35073 +tp35074 +a(g35071 +g35073 +S'loops' +p35075 +tp35076 +a(g35073 +g35075 +S'were' +p35077 +tp35078 +a(g35075 +g35077 +S'clipped' +p35079 +tp35080 +a(g35077 +g35079 +S'to' +p35081 +tp35082 +a(g35079 +g35081 +S'achieve' +p35083 +tp35084 +a(g35081 +g35083 +S'textural' +p35085 +tp35086 +a(g35083 +g35085 +S'variation.' +p35087 +tp35088 +a(g35085 +g35087 +S'designs' +p35089 +tp35090 +a(g35087 +g35089 +S'were' +p35091 +tp35092 +a(g35089 +g35091 +S'usually' +p35093 +tp35094 +a(g35091 +g35093 +S'bold' +p35095 +tp35096 +a(g35093 +g35095 +S'and' +p35097 +tp35098 +a(g35095 +g35097 +S'simple;' +p35099 +tp35100 +a(g35097 +g35099 +S'geometric' +p35101 +tp35102 +a(g35099 +g35101 +S'forms' +p35103 +tp35104 +a(g35101 +g35103 +S'were' +p35105 +tp35106 +a(g35103 +g35105 +S'used' +p35107 +tp35108 +a(g35105 +g35107 +S'frequently,' +p35109 +tp35110 +a(g35107 +g35109 +S'although' +p35111 +tp35112 +a(g35109 +g35111 +S'flowers,' +p35113 +tp35114 +a(g35111 +g35113 +S'animals,' +p35115 +tp35116 +a(g35113 +g35115 +S'houses,' +p35117 +tp35118 +a(g35115 +g35117 +S'and' +p35119 +tp35120 +a(g35117 +g35119 +S'ships' +p35121 +tp35122 +a(g35119 +g35121 +S'were' +p35123 +tp35124 +a(g35121 +g35123 +S'also' +p35125 +tp35126 +a(g35123 +g35125 +S'popular.' +p35127 +tp35128 +a(g35125 +g35127 +S'motifs' +p35129 +tp35130 +a(g35127 +g35129 +S'were' +p35131 +tp35132 +a(g35129 +g35131 +S'often' +p35133 +tp35134 +a(g35131 +g35133 +S'combined;' +p35135 +tp35136 +a(g35133 +g35135 +S'here' +p35137 +tp35138 +a(g35135 +g35137 +S'a' +p35139 +tp35140 +a(g35137 +g35139 +S'strong' +p35141 +tp35142 +a(g35139 +g35141 +S'geometric' +p35143 +tp35144 +a(g35141 +g35143 +S'border' +p35145 +tp35146 +a(g35143 +g35145 +S'frames' +p35147 +tp35148 +a(g35145 +g35147 +S'a' +p35149 +tp35150 +a(g35147 +g35149 +S'floral' +p35151 +tp35152 +a(g35149 +g35151 +S'bouquet.' +p35153 +tp35154 +a(g35151 +g35153 +S'generally' +p35155 +tp35156 +a(g35153 +g35155 +S'a' +p35157 +tp35158 +a(g35155 +g35157 +S'lively' +p35159 +tp35160 +a(g35157 +g35159 +S'effect' +p35161 +tp35162 +a(g35159 +g35161 +S'is' +p35163 +tp35164 +a(g35161 +g35163 +S'achieved' +p35165 +tp35166 +a(g35163 +g35165 +S'through' +p35167 +tp35168 +a(g35165 +g35167 +S'strong' +p35169 +tp35170 +a(g35167 +g35169 +S'color' +p35171 +tp35172 +a(g35169 +g35171 +S'contrasts,' +p35173 +tp35174 +a(g35171 +g35173 +S'as' +p35175 +tp35176 +a(g35173 +g35175 +S'in' +p35177 +tp35178 +a(g35175 +g35177 +S'this' +p35179 +tp35180 +a(g35177 +g35179 +S'rug,' +p35181 +tp35182 +a(g35179 +g35181 +S'where' +p35183 +tp35184 +a(g35181 +g35183 +S'tones' +p35185 +tp35186 +a(g35183 +g35185 +S'of' +p35187 +tp35188 +a(g35185 +g35187 +S'gold' +p35189 +tp35190 +a(g35187 +g35189 +S'set' +p35191 +tp35192 +a(g35189 +g35191 +S'off' +p35193 +tp35194 +a(g35191 +g35193 +S'the' +p35195 +tp35196 +a(g35193 +g35195 +S'vivid' +p35197 +tp35198 +a(g35195 +g35197 +S'reds' +p35199 +tp35200 +a(g35197 +g35199 +S'and' +p35201 +tp35202 +a(g35199 +g35201 +S'greens' +p35203 +tp35204 +a(g35201 +g35203 +S'of' +p35205 +tp35206 +a(g35203 +g35205 +S'the' +p35207 +tp35208 +a(g35205 +g35207 +S'flowers.' +p35209 +tp35210 +a(g35207 +g35209 +S'in' +p35211 +tp35212 +a(g35209 +g35211 +S'the' +p35213 +tp35214 +a(g35211 +g35213 +S'early' +p35215 +tp35216 +a(g35213 +g35215 +S'nineteenth' +p35217 +tp35218 +a(g35215 +g35217 +S'century,' +p35219 +tp35220 +a(g35217 +g35219 +S'american' +p35221 +tp35222 +a(g35219 +g35221 +S'women' +p35223 +tp35224 +a(g35221 +g35223 +S'often' +p35225 +tp35226 +a(g35223 +g35225 +S'used' +p35227 +tp35228 +a(g35225 +g35227 +S'their' +p35229 +tp35230 +a(g35227 +g35229 +S'leisure' +p35231 +tp35232 +a(g35229 +g35231 +S'time' +p35233 +tp35234 +a(g35231 +g35233 +S'to' +p35235 +tp35236 +a(g35233 +g35235 +S'embroider' +p35237 +tp35238 +a(g35235 +g35237 +S'rugs.' +p35239 +tp35240 +a(g35237 +g35239 +S'one' +p35241 +tp35242 +a(g35239 +g35241 +S'of' +p35243 +tp35244 +a(g35241 +g35243 +S'the' +p35245 +tp35246 +a(g35243 +g35245 +S'most' +p35247 +tp35248 +a(g35245 +g35247 +S'famous' +p35249 +tp35250 +a(g35247 +g35249 +S'embroidered' +p35251 +tp35252 +a(g35249 +g35251 +S'rugs' +p35253 +tp35254 +a(g35251 +g35253 +S'is' +p35255 +tp35256 +a(g35253 +g35255 +S'the' +p35257 +tp35258 +a(g35255 +g35257 +S'caswell' +p35259 +tp35260 +a(g35257 +g35259 +S'carpet,' +p35261 +tp35262 +a(g35259 +g35261 +S'a' +p35263 +tp35264 +a(g35261 +g35263 +S'portion' +p35265 +tp35266 +a(g35263 +g35265 +S'of' +p35267 +tp35268 +a(g35265 +g35267 +S'which' +p35269 +tp35270 +a(g35267 +g35269 +S'is' +p35271 +tp35272 +a(g35269 +g35271 +S'seen' +p35273 +tp35274 +a(g35271 +g35273 +S'here.' +p35275 +tp35276 +a(g35273 +g35275 +S'it' +p35277 +tp35278 +a(g35275 +g35277 +S'was' +p35279 +tp35280 +a(g35277 +g35279 +S'made' +p35281 +tp35282 +a(g35279 +g35281 +S'in' +p35283 +tp35284 +a(g35281 +g35283 +S'vermont' +p35285 +tp35286 +a(g35283 +g35285 +S'between' +p35287 +tp35288 +a(g35285 +g35287 +S'1832' +p35289 +tp35290 +a(g35287 +g35289 +S'and' +p35291 +tp35292 +a(g35289 +g35291 +S'1835' +p35293 +tp35294 +a(g35291 +g35293 +S'by' +p35295 +tp35296 +a(g35293 +g35295 +S'zeruah' +p35297 +tp35298 +a(g35295 +g35297 +S'higley' +p35299 +tp35300 +a(g35297 +g35299 +S'guernsey,' +p35301 +tp35302 +a(g35299 +g35301 +S'who' +p35303 +tp35304 +a(g35301 +g35303 +S'later' +p35305 +tp35306 +a(g35303 +g35305 +S'married' +p35307 +tp35308 +a(g35305 +g35307 +S'a' +p35309 +tp35310 +a(g35307 +g35309 +S'mr.' +p35311 +tp35312 +a(g35309 +g35311 +S'caswell;' +p35313 +tp35314 +a(g35311 +g35313 +S'the' +p35315 +tp35316 +a(g35313 +g35315 +S'rug' +p35317 +tp35318 +a(g35315 +g35317 +S'is' +p35319 +tp35320 +a(g35317 +g35319 +S'known' +p35321 +tp35322 +a(g35319 +g35321 +S'by' +p35323 +tp35324 +a(g35321 +g35323 +S'the' +p35325 +tp35326 +a(g35323 +g35325 +S'latter' +p35327 +tp35328 +a(g35325 +g35327 +S'name.' +p35329 +tp35330 +a(g35327 +g35329 +S'the' +p35331 +tp35332 +a(g35329 +g35331 +S'wool' +p35333 +tp35334 +a(g35331 +g35333 +S'used' +p35335 +tp35336 +a(g35333 +g35335 +S'in' +p35337 +tp35338 +a(g35335 +g35337 +S'the' +p35339 +tp35340 +a(g35337 +g35339 +S'rug' +p35341 +tp35342 +a(g35339 +g35341 +S'was' +p35343 +tp35344 +a(g35341 +g35343 +S'grown,' +p35345 +tp35346 +a(g35343 +g35345 +S'spun,' +p35347 +tp35348 +a(g35345 +g35347 +S'and' +p35349 +tp35350 +a(g35347 +g35349 +S'dyed' +p35351 +tp35352 +a(g35349 +g35351 +S'at' +p35353 +tp35354 +a(g35351 +g35353 +S'home.' +p35355 +tp35356 +a(g35353 +g35355 +S'nearly' +p35357 +tp35358 +a(g35355 +g35357 +S'eighty' +p35359 +tp35360 +a(g35357 +g35359 +S'separate' +p35361 +tp35362 +a(g35359 +g35361 +S'blocks' +p35363 +tp35364 +a(g35361 +g35363 +S'were' +p35365 +tp35366 +a(g35363 +g35365 +S'embroidered' +p35367 +tp35368 +a(g35365 +g35367 +S'in' +p35369 +tp35370 +a(g35367 +g35369 +S'a' +p35371 +tp35372 +a(g35369 +g35371 +S'double' +p35373 +tp35374 +a(g35371 +g35373 +S'chain' +p35375 +tp35376 +a(g35373 +g35375 +S'stitch,' +p35377 +tp35378 +a(g35375 +g35377 +S'or' +p35379 +tp35380 +a(g35377 +g35379 +S'"kensington' +p35381 +tp35382 +a(g35379 +g35381 +S'stitch,"' +p35383 +tp35384 +a(g35381 +g35383 +S'on' +p35385 +tp35386 +a(g35383 +g35385 +S'a' +p35387 +tp35388 +a(g35385 +g35387 +S'coarse' +p35389 +tp35390 +a(g35387 +g35389 +S'homespun' +p35391 +tp35392 +a(g35389 +g35391 +S'foundation.' +p35393 +tp35394 +a(g35391 +g35393 +S'each' +p35395 +tp35396 +a(g35393 +g35395 +S'block' +p35397 +tp35398 +a(g35395 +g35397 +S'has' +p35399 +tp35400 +a(g35397 +g35399 +S'its' +p35401 +tp35402 +a(g35399 +g35401 +S'own' +p35403 +tp35404 +a(g35401 +g35403 +S'complete' +p35405 +tp35406 +a(g35403 +g35405 +S'design.' +p35407 +tp35408 +a(g35405 +g35407 +S'while' +p35409 +tp35410 +a(g35407 +g35409 +S'floral' +p35411 +tp35412 +a(g35409 +g35411 +S'motifs' +p35413 +tp35414 +a(g35411 +g35413 +S'predominate,' +p35415 +tp35416 +a(g35413 +g35415 +S'diversity' +p35417 +tp35418 +a(g35415 +g35417 +S'is' +p35419 +tp35420 +a(g35417 +g35419 +S'achieved' +p35421 +tp35422 +a(g35419 +g35421 +S'by' +p35423 +tp35424 +a(g35421 +g35423 +S'modifying' +p35425 +tp35426 +a(g35423 +g35425 +S'the' +p35427 +tp35428 +a(g35425 +g35427 +S'floral' +p35429 +tp35430 +a(g35427 +g35429 +S'forms' +p35431 +tp35432 +a(g35429 +g35431 +S'and' +p35433 +tp35434 +a(g35431 +g35433 +S'by' +p35435 +tp35436 +a(g35433 +g35435 +S'varying' +p35437 +tp35438 +a(g35435 +g35437 +S'their' +p35439 +tp35440 +a(g35437 +g35439 +S'arrangement' +p35441 +tp35442 +a(g35439 +g35441 +S'within' +p35443 +tp35444 +a(g35441 +g35443 +S'each' +p35445 +tp35446 +a(g35443 +g35445 +S'square.' +p35447 +tp35448 +a(g35445 +g35447 +S'in' +p35449 +tp35450 +a(g35447 +g35449 +S'some' +p35451 +tp35452 +a(g35449 +g35451 +S'blocks,' +p35453 +tp35454 +a(g35451 +g35453 +S'flowers' +p35455 +tp35456 +a(g35453 +g35455 +S'or' +p35457 +tp35458 +a(g35455 +g35457 +S'leaves' +p35459 +tp35460 +a(g35457 +g35459 +S'stand' +p35461 +tp35462 +a(g35459 +g35461 +S'alone;' +p35463 +tp35464 +a(g35461 +g35463 +S'in' +p35465 +tp35466 +a(g35463 +g35465 +S'others,' +p35467 +tp35468 +a(g35465 +g35467 +S'they' +p35469 +tp35470 +a(g35467 +g35469 +S'are' +p35471 +tp35472 +a(g35469 +g35471 +S'combined' +p35473 +tp35474 +a(g35471 +g35473 +S'with' +p35475 +tp35476 +a(g35473 +g35475 +S'baskets,' +p35477 +tp35478 +a(g35475 +g35477 +S'vases,' +p35479 +tp35480 +a(g35477 +g35479 +S'birds,' +p35481 +tp35482 +a(g35479 +g35481 +S'or' +p35483 +tp35484 +a(g35481 +g35483 +S'butterflies.' +p35485 +tp35486 +a(g35483 +g35485 +S'the' +p35487 +tp35488 +a(g35485 +g35487 +S'overall' +p35489 +tp35490 +a(g35487 +g35489 +S'design' +p35491 +tp35492 +a(g35489 +g35491 +S'is' +p35493 +tp35494 +a(g35491 +g35493 +S'further' +p35495 +tp35496 +a(g35493 +g35495 +S'enriched' +p35497 +tp35498 +a(g35495 +g35497 +S'through' +p35499 +tp35500 +a(g35497 +g35499 +S'the' +p35501 +tp35502 +a(g35499 +g35501 +S'inclusion' +p35503 +tp35504 +a(g35501 +g35503 +S'of' +p35505 +tp35506 +a(g35503 +g35505 +S'non-floral' +p35507 +tp35508 +a(g35505 +g35507 +S'motifs' +p35509 +tp35510 +a(g35507 +g35509 +S'such' +p35511 +tp35512 +a(g35509 +g35511 +S'as' +p35513 +tp35514 +a(g35511 +g35513 +S'kittens' +p35515 +tp35516 +a(g35513 +g35515 +S'and' +p35517 +tp35518 +a(g35515 +g35517 +S'puppies' +p35519 +tp35520 +a(g35517 +g35519 +S'and,' +p35521 +tp35522 +a(g35519 +g35521 +S'in' +p35523 +tp35524 +a(g35521 +g35523 +S'one' +p35525 +tp35526 +a(g35523 +g35525 +S'square,' +p35527 +tp35528 +a(g35525 +g35527 +S'a' +p35529 +tp35530 +a(g35527 +g35529 +S'bridal' +p35531 +tp35532 +a(g35529 +g35531 +S'couple,' +p35533 +tp35534 +a(g35531 +g35533 +S'believed' +p35535 +tp35536 +a(g35533 +g35535 +S'to' +p35537 +tp35538 +a(g35535 +g35537 +S'refer' +p35539 +tp35540 +a(g35537 +g35539 +S'to' +p35541 +tp35542 +a(g35539 +g35541 +S'the' +p35543 +tp35544 +a(g35541 +g35543 +S'approaching' +p35545 +tp35546 +a(g35543 +g35545 +S'marriage' +p35547 +tp35548 +a(g35545 +g35547 +S'of' +p35549 +tp35550 +a(g35547 +g35549 +S'the' +p35551 +tp35552 +a(g35549 +g35551 +S'maker.' +p35553 +tp35554 +a(g35551 +g35553 +S'on' +p35555 +tp35556 +a(g35553 +g35555 +S'one' +p35557 +tp35558 +a(g35555 +g35557 +S'end' +p35559 +tp35560 +a(g35557 +g35559 +S'of' +p35561 +tp35562 +a(g35559 +g35561 +S'the' +p35563 +tp35564 +a(g35561 +g35563 +S'carpet' +p35565 +tp35566 +a(g35563 +g35565 +S'is' +p35567 +tp35568 +a(g35565 +g35567 +S'a' +p35569 +tp35570 +a(g35567 +g35569 +S'long' +p35571 +tp35572 +a(g35569 +g35571 +S'panel' +p35573 +tp35574 +a(g35571 +g35573 +S'embroidered' +p35575 +tp35576 +a(g35573 +g35575 +S'with' +p35577 +tp35578 +a(g35575 +g35577 +S'a' +p35579 +tp35580 +a(g35577 +g35579 +S'sawtooth' +p35581 +tp35582 +a(g35579 +g35581 +S'border' +p35583 +tp35584 +a(g35581 +g35583 +S'and' +p35585 +tp35586 +a(g35583 +g35585 +S'a' +p35587 +tp35588 +a(g35585 +g35587 +S'central' +p35589 +tp35590 +a(g35587 +g35589 +S'design' +p35591 +tp35592 +a(g35589 +g35591 +S'showing' +p35593 +tp35594 +a(g35591 +g35593 +S'a' +p35595 +tp35596 +a(g35593 +g35595 +S'basket' +p35597 +tp35598 +a(g35595 +g35597 +S'filled' +p35599 +tp35600 +a(g35597 +g35599 +S'with' +p35601 +tp35602 +a(g35599 +g35601 +S'flowers' +p35603 +tp35604 +a(g35601 +g35603 +S'and' +p35605 +tp35606 +a(g35603 +g35605 +S'fruit.' +p35607 +tp35608 +a(g35605 +g35607 +S'during' +p35609 +tp35610 +a(g35607 +g35609 +S'the' +p35611 +tp35612 +a(g35609 +g35611 +S'summer,' +p35613 +tp35614 +a(g35611 +g35613 +S'when' +p35615 +tp35616 +a(g35613 +g35615 +S'the' +p35617 +tp35618 +a(g35615 +g35617 +S'fireplace' +p35619 +tp35620 +a(g35617 +g35619 +S'was' +p35621 +tp35622 +a(g35619 +g35621 +S'not' +p35623 +tp35624 +a(g35621 +g35623 +S'in' +p35625 +tp35626 +a(g35623 +g35625 +S'use,' +p35627 +tp35628 +a(g35625 +g35627 +S'this' +p35629 +tp35630 +a(g35627 +g35629 +S'panel' +p35631 +tp35632 +a(g35629 +g35631 +S'covered' +p35633 +tp35634 +a(g35631 +g35633 +S'the' +p35635 +tp35636 +a(g35633 +g35635 +S'hearth;' +p35637 +tp35638 +a(g35635 +g35637 +S'in' +p35639 +tp35640 +a(g35637 +g35639 +S'winter' +p35641 +tp35642 +a(g35639 +g35641 +S'it' +p35643 +tp35644 +a(g35641 +g35643 +S'was' +p35645 +tp35646 +a(g35643 +g35645 +S'folded' +p35647 +tp35648 +a(g35645 +g35647 +S'under' +p35649 +tp35650 +a(g35647 +g35649 +S'the' +p35651 +tp35652 +a(g35649 +g35651 +S'body' +p35653 +tp35654 +a(g35651 +g35653 +S'of' +p35655 +tp35656 +a(g35653 +g35655 +S'the' +p35657 +tp35658 +a(g35655 +g35657 +S'rug,' +p35659 +tp35660 +a(g35657 +g35659 +S'in' +p35661 +tp35662 +a(g35659 +g35661 +S'order' +p35663 +tp35664 +a(g35661 +g35663 +S'to' +p35665 +tp35666 +a(g35663 +g35665 +S'leave' +p35667 +tp35668 +a(g35665 +g35667 +S'the' +p35669 +tp35670 +a(g35667 +g35669 +S'hearth' +p35671 +tp35672 +a(g35669 +g35671 +S'uncovered.' +p35673 +tp35674 +a(g35671 +g35673 +S'the' +p35675 +tp35676 +a(g35673 +g35675 +S'presence' +p35677 +tp35678 +a(g35675 +g35677 +S'of' +p35679 +tp35680 +a(g35677 +g35679 +S'the' +p35681 +tp35682 +a(g35679 +g35681 +S'hearth' +p35683 +tp35684 +a(g35681 +g35683 +S'panel' +p35685 +tp35686 +a(g35683 +g35685 +S'indicates' +p35687 +tp35688 +a(g35685 +g35687 +S'that' +p35689 +tp35690 +a(g35687 +g35689 +S'the' +p35691 +tp35692 +a(g35689 +g35691 +S'rug' +p35693 +tp35694 +a(g35691 +g35693 +S'was' +p35695 +tp35696 +a(g35693 +g35695 +S'not' +p35697 +tp35698 +a(g35695 +g35697 +S'made' +p35699 +tp35700 +a(g35697 +g35699 +S'solely' +p35701 +tp35702 +a(g35699 +g35701 +S'for' +p35703 +tp35704 +a(g35701 +g35703 +S'decoration,' +p35705 +tp35706 +a(g35703 +g35705 +S'but' +p35707 +tp35708 +a(g35705 +g35707 +S'that' +p35709 +tp35710 +a(g35707 +g35709 +S'year-round' +p35711 +tp35712 +a(g35709 +g35711 +S'utility' +p35713 +tp35714 +a(g35711 +g35713 +S'was' +p35715 +tp35716 +a(g35713 +g35715 +S'also' +p35717 +tp35718 +a(g35715 +g35717 +S'a' +p35719 +tp35720 +a(g35717 +g35719 +S'consideration' +p35721 +tp35722 +a(g35719 +g35721 +S'in' +p35723 +tp35724 +a(g35721 +g35723 +S'its' +p35725 +tp35726 +a(g35723 +g35725 +S'design.' +p35727 +tp35728 +a(g35725 +g35727 +S'american' +p35729 +tp35730 +a(g35727 +g35729 +S'families' +p35731 +tp35732 +a(g35729 +g35731 +S'needed' +p35733 +tp35734 +a(g35731 +g35733 +S'warm' +p35735 +tp35736 +a(g35733 +g35735 +S'bedding' +p35737 +tp35738 +a(g35735 +g35737 +S'for' +p35739 +tp35740 +a(g35737 +g35739 +S'the' +p35741 +tp35742 +a(g35739 +g35741 +S'cold' +p35743 +tp35744 +a(g35741 +g35743 +S'winters,' +p35745 +tp35746 +a(g35743 +g35745 +S'so,' +p35747 +tp35748 +a(g35745 +g35747 +S'in' +p35749 +tp35750 +a(g35747 +g35749 +S'addition' +p35751 +tp35752 +a(g35749 +g35751 +S'to' +p35753 +tp35754 +a(g35751 +g35753 +S'woven' +p35755 +tp35756 +a(g35753 +g35755 +S'coverlets,' +p35757 +tp35758 +a(g35755 +g35757 +S'they' +p35759 +tp35760 +a(g35757 +g35759 +S'made' +p35761 +tp35762 +a(g35759 +g35761 +S'quilts.' +p35763 +tp35764 +a(g35761 +g35763 +S'a' +p35765 +tp35766 +a(g35763 +g35765 +S'quilt' +p35767 +tp35768 +a(g35765 +g35767 +S'consists' +p35769 +tp35770 +a(g35767 +g35769 +S'of' +p35771 +tp35772 +a(g35769 +g35771 +S'two' +p35773 +tp35774 +a(g35771 +g35773 +S'layers' +p35775 +tp35776 +a(g35773 +g35775 +S'of' +p35777 +tp35778 +a(g35775 +g35777 +S'material' +p35779 +tp35780 +a(g35777 +g35779 +S'with' +p35781 +tp35782 +a(g35779 +g35781 +S'wadding' +p35783 +tp35784 +a(g35781 +g35783 +S'between;' +p35785 +tp35786 +a(g35783 +g35785 +S'the' +p35787 +tp35788 +a(g35785 +g35787 +S'layers' +p35789 +tp35790 +a(g35787 +g35789 +S'are' +p35791 +tp35792 +a(g35789 +g35791 +S'held' +p35793 +tp35794 +a(g35791 +g35793 +S'together' +p35795 +tp35796 +a(g35793 +g35795 +S'by' +p35797 +tp35798 +a(g35795 +g35797 +S'stitches,' +p35799 +tp35800 +a(g35797 +g35799 +S'often' +p35801 +tp35802 +a(g35799 +g35801 +S'in' +p35803 +tp35804 +a(g35801 +g35803 +S'a' +p35805 +tp35806 +a(g35803 +g35805 +S'variety' +p35807 +tp35808 +a(g35805 +g35807 +S'of' +p35809 +tp35810 +a(g35807 +g35809 +S'patterns.' +p35811 +tp35812 +a(g35809 +g35811 +S'the' +p35813 +tp35814 +a(g35811 +g35813 +S'triple' +p35815 +tp35816 +a(g35813 +g35815 +S'thickness' +p35817 +tp35818 +a(g35815 +g35817 +S'of' +p35819 +tp35820 +a(g35817 +g35819 +S'quilts' +p35821 +tp35822 +a(g35819 +g35821 +S'provided' +p35823 +tp35824 +a(g35821 +g35823 +S'bedcovers' +p35825 +tp35826 +a(g35823 +g35825 +S'of' +p35827 +tp35828 +a(g35825 +g35827 +S'the' +p35829 +tp35830 +a(g35827 +g35829 +S'necessary' +p35831 +tp35832 +a(g35829 +g35831 +S'warmth.' +p35833 +tp35834 +a(g35831 +g35833 +S'their' +p35835 +tp35836 +a(g35833 +g35835 +S'elaborate' +p35837 +tp35838 +a(g35835 +g35837 +S'designs' +p35839 +tp35840 +a(g35837 +g35839 +S'made' +p35841 +tp35842 +a(g35839 +g35841 +S'quilts' +p35843 +tp35844 +a(g35841 +g35843 +S'a' +p35845 +tp35846 +a(g35843 +g35845 +S'focal' +p35847 +tp35848 +a(g35845 +g35847 +S'point' +p35849 +tp35850 +a(g35847 +g35849 +S'in' +p35851 +tp35852 +a(g35849 +g35851 +S'the' +p35853 +tp35854 +a(g35851 +g35853 +S'decoration' +p35855 +tp35856 +a(g35853 +g35855 +S'of' +p35857 +tp35858 +a(g35855 +g35857 +S'eighteenth-' +p35859 +tp35860 +a(g35857 +g35859 +S'and' +p35861 +tp35862 +a(g35859 +g35861 +S'nineteenth-century' +p35863 +tp35864 +a(g35861 +g35863 +S'american' +p35865 +tp35866 +a(g35863 +g35865 +S'homes.' +p35867 +tp35868 +a(g35865 +g35867 +S'patchwork,' +p35869 +tp35870 +a(g35867 +g35869 +S'or' +p35871 +tp35872 +a(g35869 +g35871 +S'pieced,' +p35873 +tp35874 +a(g35871 +g35873 +S'quilts' +p35875 +tp35876 +a(g35873 +g35875 +S'are' +p35877 +tp35878 +a(g35875 +g35877 +S'distinctively' +p35879 +tp35880 +a(g35877 +g35879 +S'american' +p35881 +tp35882 +a(g35879 +g35881 +S'and' +p35883 +tp35884 +a(g35881 +g35883 +S'provide' +p35885 +tp35886 +a(g35883 +g35885 +S'another' +p35887 +tp35888 +a(g35885 +g35887 +S'example' +p35889 +tp35890 +a(g35887 +g35889 +S'of' +p35891 +tp35892 +a(g35889 +g35891 +S'the' +p35893 +tp35894 +a(g35891 +g35893 +S'thrift' +p35895 +tp35896 +a(g35893 +g35895 +S'of' +p35897 +tp35898 +a(g35895 +g35897 +S'american' +p35899 +tp35900 +a(g35897 +g35899 +S'housewives.' +p35901 +tp35902 +a(g35899 +g35901 +S'although' +p35903 +tp35904 +a(g35901 +g35903 +S'commercially' +p35905 +tp35906 +a(g35903 +g35905 +S'produced' +p35907 +tp35908 +a(g35905 +g35907 +S'printed' +p35909 +tp35910 +a(g35907 +g35909 +S'cottons' +p35911 +tp35912 +a(g35909 +g35911 +S'were' +p35913 +tp35914 +a(g35911 +g35913 +S'available' +p35915 +tp35916 +a(g35913 +g35915 +S'from' +p35917 +tp35918 +a(g35915 +g35917 +S'the' +p35919 +tp35920 +a(g35917 +g35919 +S'late' +p35921 +tp35922 +a(g35919 +g35921 +S'nineteenth' +p35923 +tp35924 +a(g35921 +g35923 +S'century' +p35925 +tp35926 +a(g35923 +g35925 +S'onward,' +p35927 +tp35928 +a(g35925 +g35927 +S'these' +p35929 +tp35930 +a(g35927 +g35929 +S'fabrics' +p35931 +tp35932 +a(g35929 +g35931 +S'were' +p35933 +tp35934 +a(g35931 +g35933 +S'regarded' +p35935 +tp35936 +a(g35933 +g35935 +S'as' +p35937 +tp35938 +a(g35935 +g35937 +S'precious;' +p35939 +tp35940 +a(g35937 +g35939 +S'every' +p35941 +tp35942 +a(g35939 +g35941 +S'scrap' +p35943 +tp35944 +a(g35941 +g35943 +S'was' +p35945 +tp35946 +a(g35943 +g35945 +S'used,' +p35947 +tp35948 +a(g35945 +g35947 +S'and' +p35949 +tp35950 +a(g35947 +g35949 +S'pieces' +p35951 +tp35952 +a(g35949 +g35951 +S'of' +p35953 +tp35954 +a(g35951 +g35953 +S'fabric' +p35955 +tp35956 +a(g35953 +g35955 +S'from' +p35957 +tp35958 +a(g35955 +g35957 +S'worn-out' +p35959 +tp35960 +a(g35957 +g35959 +S'clothing' +p35961 +tp35962 +a(g35959 +g35961 +S'were' +p35963 +tp35964 +a(g35961 +g35963 +S'carefully' +p35965 +tp35966 +a(g35963 +g35965 +S'saved.' +p35967 +tp35968 +a(g35965 +g35967 +S'from' +p35969 +tp35970 +a(g35967 +g35969 +S'her' +p35971 +tp35972 +a(g35969 +g35971 +S'scrap' +p35973 +tp35974 +a(g35971 +g35973 +S'bag,' +p35975 +tp35976 +a(g35973 +g35975 +S'the' +p35977 +tp35978 +a(g35975 +g35977 +S'housewife' +p35979 +tp35980 +a(g35977 +g35979 +S'took' +p35981 +tp35982 +a(g35979 +g35981 +S'bits' +p35983 +tp35984 +a(g35981 +g35983 +S'of' +p35985 +tp35986 +a(g35983 +g35985 +S'fabric' +p35987 +tp35988 +a(g35985 +g35987 +S'and' +p35989 +tp35990 +a(g35987 +g35989 +S'cut' +p35991 +tp35992 +a(g35989 +g35991 +S'them' +p35993 +tp35994 +a(g35991 +g35993 +S'into' +p35995 +tp35996 +a(g35993 +g35995 +S'geometric' +p35997 +tp35998 +a(g35995 +g35997 +S'shapes.' +p35999 +tp36000 +a(g35997 +g35999 +S'the' +p36001 +tp36002 +a(g35999 +g36001 +S'geometric' +p36003 +tp36004 +a(g36001 +g36003 +S'units' +p36005 +tp36006 +a(g36003 +g36005 +S'were' +p36007 +tp36008 +a(g36005 +g36007 +S'then' +p36009 +tp36010 +a(g36007 +g36009 +S'pieced,' +p36011 +tp36012 +a(g36009 +g36011 +S'or' +p36013 +tp36014 +a(g36011 +g36013 +S'sewn,' +p36015 +tp36016 +a(g36013 +g36015 +S'together' +p36017 +tp36018 +a(g36015 +g36017 +S'in' +p36019 +tp36020 +a(g36017 +g36019 +S'a' +p36021 +tp36022 +a(g36019 +g36021 +S'pleasing' +p36023 +tp36024 +a(g36021 +g36023 +S'design.' +p36025 +tp36026 +a(g36023 +g36025 +S'the' +p36027 +tp36028 +a(g36025 +g36027 +S'resulting' +p36029 +tp36030 +a(g36027 +g36029 +S'panel' +p36031 +tp36032 +a(g36029 +g36031 +S'was' +p36033 +tp36034 +a(g36031 +g36033 +S'used' +p36035 +tp36036 +a(g36033 +g36035 +S'for' +p36037 +tp36038 +a(g36035 +g36037 +S'the' +p36039 +tp36040 +a(g36037 +g36039 +S'quilt' +p36041 +tp36042 +a(g36039 +g36041 +S'top.' +p36043 +tp36044 +a(g36041 +g36043 +S'this' +p36045 +tp36046 +a(g36043 +g36045 +S'quilt' +p36047 +tp36048 +a(g36045 +g36047 +S'top' +p36049 +tp36050 +a(g36047 +g36049 +S'consists' +p36051 +tp36052 +a(g36049 +g36051 +S'of' +p36053 +tp36054 +a(g36051 +g36053 +S'small' +p36055 +tp36056 +a(g36053 +g36055 +S'hexagons' +p36057 +tp36058 +a(g36055 +g36057 +S'painstakingly' +p36059 +tp36060 +a(g36057 +g36059 +S'pieced' +p36061 +tp36062 +a(g36059 +g36061 +S'together' +p36063 +tp36064 +a(g36061 +g36063 +S'to' +p36065 +tp36066 +a(g36063 +g36065 +S'form' +p36067 +tp36068 +a(g36065 +g36067 +S'an' +p36069 +tp36070 +a(g36067 +g36069 +S'overall' +p36071 +tp36072 +a(g36069 +g36071 +S'mosaiclike' +p36073 +tp36074 +a(g36071 +g36073 +S'design.' +p36075 +tp36076 +a(g36073 +g36075 +S'in' +p36077 +tp36078 +a(g36075 +g36077 +S'this' +p36079 +tp36080 +a(g36077 +g36079 +S'type' +p36081 +tp36082 +a(g36079 +g36081 +S'of' +p36083 +tp36084 +a(g36081 +g36083 +S'pieced' +p36085 +tp36086 +a(g36083 +g36085 +S'quilt,' +p36087 +tp36088 +a(g36085 +g36087 +S'made' +p36089 +tp36090 +a(g36087 +g36089 +S'about' +p36091 +tp36092 +a(g36089 +g36091 +S'1810,' +p36093 +tp36094 +a(g36091 +g36093 +S'heavy' +p36095 +tp36096 +a(g36093 +g36095 +S'paper' +p36097 +tp36098 +a(g36095 +g36097 +S'was' +p36099 +tp36100 +a(g36097 +g36099 +S'used' +p36101 +tp36102 +a(g36099 +g36101 +S'under' +p36103 +tp36104 +a(g36101 +g36103 +S'the' +p36105 +tp36106 +a(g36103 +g36105 +S'patches' +p36107 +tp36108 +a(g36105 +g36107 +S'in' +p36109 +tp36110 +a(g36107 +g36109 +S'order' +p36111 +tp36112 +a(g36109 +g36111 +S'to' +p36113 +tp36114 +a(g36111 +g36113 +S'create' +p36115 +tp36116 +a(g36113 +g36115 +S'well-defined' +p36117 +tp36118 +a(g36115 +g36117 +S'shapes.' +p36119 +tp36120 +a(g36117 +g36119 +S'the' +p36121 +tp36122 +a(g36119 +g36121 +S'edges' +p36123 +tp36124 +a(g36121 +g36123 +S'of' +p36125 +tp36126 +a(g36123 +g36125 +S'the' +p36127 +tp36128 +a(g36125 +g36127 +S'fabric' +p36129 +tp36130 +a(g36127 +g36129 +S'were' +p36131 +tp36132 +a(g36129 +g36131 +S'folded' +p36133 +tp36134 +a(g36131 +g36133 +S'under' +p36135 +tp36136 +a(g36133 +g36135 +S'the' +p36137 +tp36138 +a(g36135 +g36137 +S'paper' +p36139 +tp36140 +a(g36137 +g36139 +S'hexagons' +p36141 +tp36142 +a(g36139 +g36141 +S'and' +p36143 +tp36144 +a(g36141 +g36143 +S'basted' +p36145 +tp36146 +a(g36143 +g36145 +S'in' +p36147 +tp36148 +a(g36145 +g36147 +S'place.' +p36149 +tp36150 +a(g36147 +g36149 +S'the' +p36151 +tp36152 +a(g36149 +g36151 +S'hexagons' +p36153 +tp36154 +a(g36151 +g36153 +S'were' +p36155 +tp36156 +a(g36153 +g36155 +S'then' +p36157 +tp36158 +a(g36155 +g36157 +S'pieced' +p36159 +tp36160 +a(g36157 +g36159 +S'together' +p36161 +tp36162 +a(g36159 +g36161 +S'to' +p36163 +tp36164 +a(g36161 +g36163 +S'form' +p36165 +tp36166 +a(g36163 +g36165 +S'the' +p36167 +tp36168 +a(g36165 +g36167 +S'quilt' +p36169 +tp36170 +a(g36167 +g36169 +S'top;' +p36171 +tp36172 +a(g36169 +g36171 +S'careful' +p36173 +tp36174 +a(g36171 +g36173 +S'attention' +p36175 +tp36176 +a(g36173 +g36175 +S'was' +p36177 +tp36178 +a(g36175 +g36177 +S'given' +p36179 +tp36180 +a(g36177 +g36179 +S'to' +p36181 +tp36182 +a(g36179 +g36181 +S'the' +p36183 +tp36184 +a(g36181 +g36183 +S'placement' +p36185 +tp36186 +a(g36183 +g36185 +S'of' +p36187 +tp36188 +a(g36185 +g36187 +S'the' +p36189 +tp36190 +a(g36187 +g36189 +S'colors' +p36191 +tp36192 +a(g36189 +g36191 +S'in' +p36193 +tp36194 +a(g36191 +g36193 +S'order' +p36195 +tp36196 +a(g36193 +g36195 +S'to' +p36197 +tp36198 +a(g36195 +g36197 +S'achieve' +p36199 +tp36200 +a(g36197 +g36199 +S'an' +p36201 +tp36202 +a(g36199 +g36201 +S'orderly' +p36203 +tp36204 +a(g36201 +g36203 +S'and' +p36205 +tp36206 +a(g36203 +g36205 +S'lively' +p36207 +tp36208 +a(g36205 +g36207 +S'design.' +p36209 +tp36210 +a(g36207 +g36209 +S'in' +p36211 +tp36212 +a(g36209 +g36211 +S'this' +p36213 +tp36214 +a(g36211 +g36213 +S'detail' +p36215 +tp36216 +a(g36213 +g36215 +S'of' +p36217 +tp36218 +a(g36215 +g36217 +S'a' +p36219 +tp36220 +a(g36217 +g36219 +S'mid-nineteenth' +p36221 +tp36222 +a(g36219 +g36221 +S'century' +p36223 +tp36224 +a(g36221 +g36223 +S'appliqué' +p36225 +tp36226 +a(g36223 +g36225 +S'quilt,' +p36227 +tp36228 +a(g36225 +g36227 +S'the' +p36229 +tp36230 +a(g36227 +g36229 +S'elaborate' +p36231 +tp36232 +a(g36229 +g36231 +S'quilted' +p36233 +tp36234 +a(g36231 +g36233 +S'patterns' +p36235 +tp36236 +a(g36233 +g36235 +S'attain' +p36237 +tp36238 +a(g36235 +g36237 +S'a' +p36239 +tp36240 +a(g36237 +g36239 +S'decorative' +p36241 +tp36242 +a(g36239 +g36241 +S'importance' +p36243 +tp36244 +a(g36241 +g36243 +S'equal' +p36245 +tp36246 +a(g36243 +g36245 +S'to' +p36247 +tp36248 +a(g36245 +g36247 +S'that' +p36249 +tp36250 +a(g36247 +g36249 +S'of' +p36251 +tp36252 +a(g36249 +g36251 +S'the' +p36253 +tp36254 +a(g36251 +g36253 +S'brightly' +p36255 +tp36256 +a(g36253 +g36255 +S'colored' +p36257 +tp36258 +a(g36255 +g36257 +S'appliqué' +p36259 +tp36260 +a(g36257 +g36259 +S'work.' +p36261 +tp36262 +a(g36259 +g36261 +S'the' +p36263 +tp36264 +a(g36261 +g36263 +S'quilting' +p36265 +tp36266 +a(g36263 +g36265 +S'is' +p36267 +tp36268 +a(g36265 +g36267 +S'a' +p36269 +tp36270 +a(g36267 +g36269 +S'complex' +p36271 +tp36272 +a(g36269 +g36271 +S'combination' +p36273 +tp36274 +a(g36271 +g36273 +S'of' +p36275 +tp36276 +a(g36273 +g36275 +S'motifs' +p36277 +tp36278 +a(g36275 +g36277 +S'featuring' +p36279 +tp36280 +a(g36277 +g36279 +S'scrolling' +p36281 +tp36282 +a(g36279 +g36281 +S'flowers,' +p36283 +tp36284 +a(g36281 +g36283 +S'feathers,' +p36285 +tp36286 +a(g36283 +g36285 +S'and' +p36287 +tp36288 +a(g36285 +g36287 +S'the' +p36289 +tp36290 +a(g36287 +g36289 +S'american' +p36291 +tp36292 +a(g36289 +g36291 +S'eagle.' +p36293 +tp36294 +a(g36291 +g36293 +S'the' +p36295 +tp36296 +a(g36293 +g36295 +S'quilting' +p36297 +tp36298 +a(g36295 +g36297 +S'has' +p36299 +tp36300 +a(g36297 +g36299 +S'been' +p36301 +tp36302 +a(g36299 +g36301 +S'given' +p36303 +tp36304 +a(g36301 +g36303 +S'great' +p36305 +tp36306 +a(g36303 +g36305 +S'prominence' +p36307 +tp36308 +a(g36305 +g36307 +S'in' +p36309 +tp36310 +a(g36307 +g36309 +S'the' +p36311 +tp36312 +a(g36309 +g36311 +S'overall' +p36313 +tp36314 +a(g36311 +g36313 +S'design' +p36315 +tp36316 +a(g36313 +g36315 +S'of' +p36317 +tp36318 +a(g36315 +g36317 +S'the' +p36319 +tp36320 +a(g36317 +g36319 +S'piece' +p36321 +tp36322 +a(g36319 +g36321 +S'not' +p36323 +tp36324 +a(g36321 +g36323 +S'only' +p36325 +tp36326 +a(g36323 +g36325 +S'through' +p36327 +tp36328 +a(g36325 +g36327 +S'density' +p36329 +tp36330 +a(g36327 +g36329 +S'of' +p36331 +tp36332 +a(g36329 +g36331 +S'pattern,' +p36333 +tp36334 +a(g36331 +g36333 +S'but' +p36335 +tp36336 +a(g36333 +g36335 +S'also' +p36337 +tp36338 +a(g36335 +g36337 +S'through' +p36339 +tp36340 +a(g36337 +g36339 +S'the' +p36341 +tp36342 +a(g36339 +g36341 +S'addition' +p36343 +tp36344 +a(g36341 +g36343 +S'of' +p36345 +tp36346 +a(g36343 +g36345 +S'extra' +p36347 +tp36348 +a(g36345 +g36347 +S'padding' +p36349 +tp36350 +a(g36347 +g36349 +S'to' +p36351 +tp36352 +a(g36349 +g36351 +S'produce' +p36353 +tp36354 +a(g36351 +g36353 +S'a' +p36355 +tp36356 +a(g36353 +g36355 +S'sculptural' +p36357 +tp36358 +a(g36355 +g36357 +S'appearance.' +p36359 +tp36360 +a(g36357 +g36359 +S'the' +p36361 +tp36362 +a(g36359 +g36361 +S'sculptural' +p36363 +tp36364 +a(g36361 +g36363 +S'effect' +p36365 +tp36366 +a(g36363 +g36365 +S'was' +p36367 +tp36368 +a(g36365 +g36367 +S'achieved' +p36369 +tp36370 +a(g36367 +g36369 +S'by' +p36371 +tp36372 +a(g36369 +g36371 +S'a' +p36373 +tp36374 +a(g36371 +g36373 +S'special' +p36375 +tp36376 +a(g36373 +g36375 +S'method' +p36377 +tp36378 +a(g36375 +g36377 +S'of' +p36379 +tp36380 +a(g36377 +g36379 +S'stuffing.' +p36381 +tp36382 +a(g36379 +g36381 +S'the' +p36383 +tp36384 +a(g36381 +g36383 +S'designs' +p36385 +tp36386 +a(g36383 +g36385 +S'were' +p36387 +tp36388 +a(g36385 +g36387 +S'first' +p36389 +tp36390 +a(g36387 +g36389 +S'outlined' +p36391 +tp36392 +a(g36389 +g36391 +S'with' +p36393 +tp36394 +a(g36391 +g36393 +S'quilting' +p36395 +tp36396 +a(g36393 +g36395 +S'stitches;' +p36397 +tp36398 +a(g36395 +g36397 +S'then,' +p36399 +tp36400 +a(g36397 +g36399 +S'by' +p36401 +tp36402 +a(g36399 +g36401 +S'means' +p36403 +tp36404 +a(g36401 +g36403 +S'of' +p36405 +tp36406 +a(g36403 +g36405 +S'a' +p36407 +tp36408 +a(g36405 +g36407 +S'long' +p36409 +tp36410 +a(g36407 +g36409 +S'needle,' +p36411 +tp36412 +a(g36409 +g36411 +S'cotton' +p36413 +tp36414 +a(g36411 +g36413 +S'wadding' +p36415 +tp36416 +a(g36413 +g36415 +S'was' +p36417 +tp36418 +a(g36415 +g36417 +S'pushed' +p36419 +tp36420 +a(g36417 +g36419 +S'through' +p36421 +tp36422 +a(g36419 +g36421 +S'the' +p36423 +tp36424 +a(g36421 +g36423 +S'coarse' +p36425 +tp36426 +a(g36423 +g36425 +S'backing' +p36427 +tp36428 +a(g36425 +g36427 +S'of' +p36429 +tp36430 +a(g36427 +g36429 +S'the' +p36431 +tp36432 +a(g36429 +g36431 +S'quilt.' +p36433 +tp36434 +a(g36431 +g36433 +S'as' +p36435 +tp36436 +a(g36433 +g36435 +S'a' +p36437 +tp36438 +a(g36435 +g36437 +S'result' +p36439 +tp36440 +a(g36437 +g36439 +S'the' +p36441 +tp36442 +a(g36439 +g36441 +S'quilted' +p36443 +tp36444 +a(g36441 +g36443 +S'design' +p36445 +tp36446 +a(g36443 +g36445 +S'stands' +p36447 +tp36448 +a(g36445 +g36447 +S'out' +p36449 +tp36450 +a(g36447 +g36449 +S'in' +p36451 +tp36452 +a(g36449 +g36451 +S'high' +p36453 +tp36454 +a(g36451 +g36453 +S'relief' +p36455 +tp36456 +a(g36453 +g36455 +S'against' +p36457 +tp36458 +a(g36455 +g36457 +S'the' +p36459 +tp36460 +a(g36457 +g36459 +S'background.' +p36461 +tp36462 +a(g36459 +g36461 +S'in' +p36463 +tp36464 +a(g36461 +g36463 +S'the' +p36465 +tp36466 +a(g36463 +g36465 +S'early' +p36467 +tp36468 +a(g36465 +g36467 +S'nineteenth' +p36469 +tp36470 +a(g36467 +g36469 +S'century,' +p36471 +tp36472 +a(g36469 +g36471 +S'women' +p36473 +tp36474 +a(g36471 +g36473 +S'made' +p36475 +tp36476 +a(g36473 +g36475 +S'elegant' +p36477 +tp36478 +a(g36475 +g36477 +S'all-white' +p36479 +tp36480 +a(g36477 +g36479 +S'quilts' +p36481 +tp36482 +a(g36479 +g36481 +S'or' +p36483 +tp36484 +a(g36481 +g36483 +S'coverlets' +p36485 +tp36486 +a(g36483 +g36485 +S'decorated' +p36487 +tp36488 +a(g36485 +g36487 +S'entirely' +p36489 +tp36490 +a(g36487 +g36489 +S'with' +p36491 +tp36492 +a(g36489 +g36491 +S'such' +p36493 +tp36494 +a(g36491 +g36493 +S'"stuffed-work"' +p36495 +tp36496 +a(g36493 +g36495 +S'designs.' +p36497 +tp36498 +a(g36495 +g36497 +S'in' +p36499 +tp36500 +a(g36497 +g36499 +S'this' +p36501 +tp36502 +a(g36499 +g36501 +S'example,' +p36503 +tp36504 +a(g36501 +g36503 +S'the' +p36505 +tp36506 +a(g36503 +g36505 +S'raised' +p36507 +tp36508 +a(g36505 +g36507 +S'stuffed-work' +p36509 +tp36510 +a(g36507 +g36509 +S'design' +p36511 +tp36512 +a(g36509 +g36511 +S'enhances' +p36513 +tp36514 +a(g36511 +g36513 +S'the' +p36515 +tp36516 +a(g36513 +g36515 +S'colorful' +p36517 +tp36518 +a(g36515 +g36517 +S'appliqué' +p36519 +tp36520 +a(g36517 +g36519 +S'decoration' +p36521 +tp36522 +a(g36519 +g36521 +S'and' +p36523 +tp36524 +a(g36521 +g36523 +S'adds' +p36525 +tp36526 +a(g36523 +g36525 +S'greatly' +p36527 +tp36528 +a(g36525 +g36527 +S'to' +p36529 +tp36530 +a(g36527 +g36529 +S'the' +p36531 +tp36532 +a(g36529 +g36531 +S'ornamental' +p36533 +tp36534 +a(g36531 +g36533 +S'quality' +p36535 +tp36536 +a(g36533 +g36535 +S'of' +p36537 +tp36538 +a(g36535 +g36537 +S'the' +p36539 +tp36540 +a(g36537 +g36539 +S'quilt.' +p36541 +tp36542 +a(g36539 +g36541 +S'the' +p36543 +tp36544 +a(g36541 +g36543 +S'most' +p36545 +tp36546 +a(g36543 +g36545 +S'colorful' +p36547 +tp36548 +a(g36545 +g36547 +S'and' +p36549 +tp36550 +a(g36547 +g36549 +S'complex' +p36551 +tp36552 +a(g36549 +g36551 +S'of' +p36553 +tp36554 +a(g36551 +g36553 +S'the' +p36555 +tp36556 +a(g36553 +g36555 +S'woven' +p36557 +tp36558 +a(g36555 +g36557 +S'coverlets' +p36559 +tp36560 +a(g36557 +g36559 +S'were' +p36561 +tp36562 +a(g36559 +g36561 +S'those' +p36563 +tp36564 +a(g36561 +g36563 +S'made' +p36565 +tp36566 +a(g36563 +g36565 +S'on' +p36567 +tp36568 +a(g36565 +g36567 +S'looms' +p36569 +tp36570 +a(g36567 +g36569 +S'equipped' +p36571 +tp36572 +a(g36569 +g36571 +S'with' +p36573 +tp36574 +a(g36571 +g36573 +S'a' +p36575 +tp36576 +a(g36573 +g36575 +S'jacquard' +p36577 +tp36578 +a(g36575 +g36577 +S'attachment.' +p36579 +tp36580 +a(g36577 +g36579 +S'this' +p36581 +tp36582 +a(g36579 +g36581 +S'device,' +p36583 +tp36584 +a(g36581 +g36583 +S'invented' +p36585 +tp36586 +a(g36583 +g36585 +S'in' +p36587 +tp36588 +a(g36585 +g36587 +S'france' +p36589 +tp36590 +a(g36587 +g36589 +S'by' +p36591 +tp36592 +a(g36589 +g36591 +S'joseph' +p36593 +tp36594 +a(g36591 +g36593 +S'jacquard' +p36595 +tp36596 +a(g36593 +g36595 +S'in' +p36597 +tp36598 +a(g36595 +g36597 +S'1801,' +p36599 +tp36600 +a(g36597 +g36599 +S'contained' +p36601 +tp36602 +a(g36599 +g36601 +S'a' +p36603 +tp36604 +a(g36601 +g36603 +S'series' +p36605 +tp36606 +a(g36603 +g36605 +S'of' +p36607 +tp36608 +a(g36605 +g36607 +S'pattern' +p36609 +tp36610 +a(g36607 +g36609 +S'cards,' +p36611 +tp36612 +a(g36609 +g36611 +S'punched' +p36613 +tp36614 +a(g36611 +g36613 +S'through' +p36615 +tp36616 +a(g36613 +g36615 +S'with' +p36617 +tp36618 +a(g36615 +g36617 +S'holes' +p36619 +tp36620 +a(g36617 +g36619 +S'through' +p36621 +tp36622 +a(g36619 +g36621 +S'which' +p36623 +tp36624 +a(g36621 +g36623 +S'the' +p36625 +tp36626 +a(g36623 +g36625 +S'threads' +p36627 +tp36628 +a(g36625 +g36627 +S'were' +p36629 +tp36630 +a(g36627 +g36629 +S'guided.' +p36631 +tp36632 +a(g36629 +g36631 +S'mounted' +p36633 +tp36634 +a(g36631 +g36633 +S'on' +p36635 +tp36636 +a(g36633 +g36635 +S'an' +p36637 +tp36638 +a(g36635 +g36637 +S'existing' +p36639 +tp36640 +a(g36637 +g36639 +S'loom' +p36641 +tp36642 +a(g36639 +g36641 +S'in' +p36643 +tp36644 +a(g36641 +g36643 +S'place' +p36645 +tp36646 +a(g36643 +g36645 +S'of' +p36647 +tp36648 +a(g36645 +g36647 +S'the' +p36649 +tp36650 +a(g36647 +g36649 +S'conventional' +p36651 +tp36652 +a(g36649 +g36651 +S'heddles,' +p36653 +tp36654 +a(g36651 +g36653 +S'this' +p36655 +tp36656 +a(g36653 +g36655 +S'mechanism' +p36657 +tp36658 +a(g36655 +g36657 +S'allowed' +p36659 +tp36660 +a(g36657 +g36659 +S'each' +p36661 +tp36662 +a(g36659 +g36661 +S'thread' +p36663 +tp36664 +a(g36661 +g36663 +S'in' +p36665 +tp36666 +a(g36663 +g36665 +S'the' +p36667 +tp36668 +a(g36665 +g36667 +S'warp' +p36669 +tp36670 +a(g36667 +g36669 +S'to' +p36671 +tp36672 +a(g36669 +g36671 +S'be' +p36673 +tp36674 +a(g36671 +g36673 +S'separately' +p36675 +tp36676 +a(g36673 +g36675 +S'controlled,' +p36677 +tp36678 +a(g36675 +g36677 +S'thus' +p36679 +tp36680 +a(g36677 +g36679 +S'making' +p36681 +tp36682 +a(g36679 +g36681 +S'possible' +p36683 +tp36684 +a(g36681 +g36683 +S'an' +p36685 +tp36686 +a(g36683 +g36685 +S'almost' +p36687 +tp36688 +a(g36685 +g36687 +S'unlimited' +p36689 +tp36690 +a(g36687 +g36689 +S'range' +p36691 +tp36692 +a(g36689 +g36691 +S'of' +p36693 +tp36694 +a(g36691 +g36693 +S'patterns' +p36695 +tp36696 +a(g36693 +g36695 +S'and' +p36697 +tp36698 +a(g36695 +g36697 +S'variations' +p36699 +tp36700 +a(g36697 +g36699 +S'in' +p36701 +tp36702 +a(g36699 +g36701 +S'design.' +p36703 +tp36704 +a(g36701 +g36703 +S'the' +p36705 +tp36706 +a(g36703 +g36705 +S'jacquard' +p36707 +tp36708 +a(g36705 +g36707 +S'attachment' +p36709 +tp36710 +a(g36707 +g36709 +S'was' +p36711 +tp36712 +a(g36709 +g36711 +S'introduced' +p36713 +tp36714 +a(g36711 +g36713 +S'in' +p36715 +tp36716 +a(g36713 +g36715 +S'america' +p36717 +tp36718 +a(g36715 +g36717 +S'in' +p36719 +tp36720 +a(g36717 +g36719 +S'the' +p36721 +tp36722 +a(g36719 +g36721 +S'1820s,' +p36723 +tp36724 +a(g36721 +g36723 +S'resulting' +p36725 +tp36726 +a(g36723 +g36725 +S'in' +p36727 +tp36728 +a(g36725 +g36727 +S'the' +p36729 +tp36730 +a(g36727 +g36729 +S'production' +p36731 +tp36732 +a(g36729 +g36731 +S'of' +p36733 +tp36734 +a(g36731 +g36733 +S'innumerable' +p36735 +tp36736 +a(g36733 +g36735 +S'elaborately' +p36737 +tp36738 +a(g36735 +g36737 +S'patterned' +p36739 +tp36740 +a(g36737 +g36739 +S'coverlets.' +p36741 +tp36742 +a(g36739 +g36741 +S'here' +p36743 +tp36744 +a(g36741 +g36743 +S'is' +p36745 +tp36746 +a(g36743 +g36745 +S'a' +p36747 +tp36748 +a(g36745 +g36747 +S'detail' +p36749 +tp36750 +a(g36747 +g36749 +S'of' +p36751 +tp36752 +a(g36749 +g36751 +S'a' +p36753 +tp36754 +a(g36751 +g36753 +S'jacquard' +p36755 +tp36756 +a(g36753 +g36755 +S'coverlet' +p36757 +tp36758 +a(g36755 +g36757 +S'made' +p36759 +tp36760 +a(g36757 +g36759 +S'in' +p36761 +tp36762 +a(g36759 +g36761 +S'bucks' +p36763 +tp36764 +a(g36761 +g36763 +S'county,' +p36765 +tp36766 +a(g36763 +g36765 +S'pennsylvania.' +p36767 +tp36768 +a(g36765 +g36767 +S'while' +p36769 +tp36770 +a(g36767 +g36769 +S'patriotic' +p36771 +tp36772 +a(g36769 +g36771 +S'symbols,' +p36773 +tp36774 +a(g36771 +g36773 +S'such' +p36775 +tp36776 +a(g36773 +g36775 +S'as' +p36777 +tp36778 +a(g36775 +g36777 +S'the' +p36779 +tp36780 +a(g36777 +g36779 +S'american' +p36781 +tp36782 +a(g36779 +g36781 +S'eagle,' +p36783 +tp36784 +a(g36781 +g36783 +S'were' +p36785 +tp36786 +a(g36783 +g36785 +S'frequently' +p36787 +tp36788 +a(g36785 +g36787 +S'featured' +p36789 +tp36790 +a(g36787 +g36789 +S'in' +p36791 +tp36792 +a(g36789 +g36791 +S'jacquard' +p36793 +tp36794 +a(g36791 +g36793 +S'designs,' +p36795 +tp36796 +a(g36793 +g36795 +S'this' +p36797 +tp36798 +a(g36795 +g36797 +S'coverlet' +p36799 +tp36800 +a(g36797 +g36799 +S'retains' +p36801 +tp36802 +a(g36799 +g36801 +S'traditional' +p36803 +tp36804 +a(g36801 +g36803 +S'pennsylvania' +p36805 +tp36806 +a(g36803 +g36805 +S'german' +p36807 +tp36808 +a(g36805 +g36807 +S'motifs' +p36809 +tp36810 +a(g36807 +g36809 +S'in' +p36811 +tp36812 +a(g36809 +g36811 +S'its' +p36813 +tp36814 +a(g36811 +g36813 +S'stylized' +p36815 +tp36816 +a(g36813 +g36815 +S'tulips,' +p36817 +tp36818 +a(g36815 +g36817 +S'roosters,' +p36819 +tp36820 +a(g36817 +g36819 +S'and' +p36821 +tp36822 +a(g36819 +g36821 +S'stars.' +p36823 +tp36824 +a(g36821 +g36823 +S'woven' +p36825 +tp36826 +a(g36823 +g36825 +S'inscriptions' +p36827 +tp36828 +a(g36825 +g36827 +S'often' +p36829 +tp36830 +a(g36827 +g36829 +S'appear' +p36831 +tp36832 +a(g36829 +g36831 +S'at' +p36833 +tp36834 +a(g36831 +g36833 +S'the' +p36835 +tp36836 +a(g36833 +g36835 +S'corners' +p36837 +tp36838 +a(g36835 +g36837 +S'of' +p36839 +tp36840 +a(g36837 +g36839 +S'jacquard' +p36841 +tp36842 +a(g36839 +g36841 +S'coverlets.' +p36843 +tp36844 +a(g36841 +g36843 +S'here' +p36845 +tp36846 +a(g36843 +g36845 +S'the' +p36847 +tp36848 +a(g36845 +g36847 +S'weaver' +p36849 +tp36850 +a(g36847 +g36849 +S'has' +p36851 +tp36852 +a(g36849 +g36851 +S'followed' +p36853 +tp36854 +a(g36851 +g36853 +S'the' +p36855 +tp36856 +a(g36853 +g36855 +S'common' +p36857 +tp36858 +a(g36855 +g36857 +S'practice' +p36859 +tp36860 +a(g36857 +g36859 +S'of' +p36861 +tp36862 +a(g36859 +g36861 +S'including' +p36863 +tp36864 +a(g36861 +g36863 +S'his' +p36865 +tp36866 +a(g36863 +g36865 +S'own' +p36867 +tp36868 +a(g36865 +g36867 +S'name' +p36869 +tp36870 +a(g36867 +g36869 +S'and' +p36871 +tp36872 +a(g36869 +g36871 +S'that' +p36873 +tp36874 +a(g36871 +g36873 +S'of' +p36875 +tp36876 +a(g36873 +g36875 +S'the' +p36877 +tp36878 +a(g36875 +g36877 +S'owner,' +p36879 +tp36880 +a(g36877 +g36879 +S'the' +p36881 +tp36882 +a(g36879 +g36881 +S'date,' +p36883 +tp36884 +a(g36881 +g36883 +S'and' +p36885 +tp36886 +a(g36883 +g36885 +S'the' +p36887 +tp36888 +a(g36885 +g36887 +S'name' +p36889 +tp36890 +a(g36887 +g36889 +S'of' +p36891 +tp36892 +a(g36889 +g36891 +S'the' +p36893 +tp36894 +a(g36891 +g36893 +S'county.' +p36895 +tp36896 +a(g36893 +g36895 +S'reflecting' +p36897 +tp36898 +a(g36895 +g36897 +S'the' +p36899 +tp36900 +a(g36897 +g36899 +S'english' +p36901 +tp36902 +a(g36899 +g36901 +S'and' +p36903 +tp36904 +a(g36901 +g36903 +S'european' +p36905 +tp36906 +a(g36903 +g36905 +S'fashions' +p36907 +tp36908 +a(g36905 +g36907 +S'during' +p36909 +tp36910 +a(g36907 +g36909 +S'the' +p36911 +tp36912 +a(g36909 +g36911 +S'eighteenth' +p36913 +tp36914 +a(g36911 +g36913 +S'century,' +p36915 +tp36916 +a(g36913 +g36915 +S'printed' +p36917 +tp36918 +a(g36915 +g36917 +S'cottons' +p36919 +tp36920 +a(g36917 +g36919 +S'of' +p36921 +tp36922 +a(g36919 +g36921 +S'all' +p36923 +tp36924 +a(g36921 +g36923 +S'types' +p36925 +tp36926 +a(g36923 +g36925 +S'were' +p36927 +tp36928 +a(g36925 +g36927 +S'in' +p36929 +tp36930 +a(g36927 +g36929 +S'great' +p36931 +tp36932 +a(g36929 +g36931 +S'demand' +p36933 +tp36934 +a(g36931 +g36933 +S'in' +p36935 +tp36936 +a(g36933 +g36935 +S'america.' +p36937 +tp36938 +a(g36935 +g36937 +S'most' +p36939 +tp36940 +a(g36937 +g36939 +S'printed' +p36941 +tp36942 +a(g36939 +g36941 +S'textiles' +p36943 +tp36944 +a(g36941 +g36943 +S'of' +p36945 +tp36946 +a(g36943 +g36945 +S'the' +p36947 +tp36948 +a(g36945 +g36947 +S'time' +p36949 +tp36950 +a(g36947 +g36949 +S'were' +p36951 +tp36952 +a(g36949 +g36951 +S'imported' +p36953 +tp36954 +a(g36951 +g36953 +S'from' +p36955 +tp36956 +a(g36953 +g36955 +S'england,' +p36957 +tp36958 +a(g36955 +g36957 +S'since' +p36959 +tp36960 +a(g36957 +g36959 +S'laws' +p36961 +tp36962 +a(g36959 +g36961 +S'prohibited' +p36963 +tp36964 +a(g36961 +g36963 +S'the' +p36965 +tp36966 +a(g36963 +g36965 +S'manufacture' +p36967 +tp36968 +a(g36965 +g36967 +S'and' +p36969 +tp36970 +a(g36967 +g36969 +S'printing' +p36971 +tp36972 +a(g36969 +g36971 +S'of' +p36973 +tp36974 +a(g36971 +g36973 +S'fabrics' +p36975 +tp36976 +a(g36973 +g36975 +S'in' +p36977 +tp36978 +a(g36975 +g36977 +S'the' +p36979 +tp36980 +a(g36977 +g36979 +S'colonies.' +p36981 +tp36982 +a(g36979 +g36981 +S'by' +p36983 +tp36984 +a(g36981 +g36983 +S'the' +p36985 +tp36986 +a(g36983 +g36985 +S'middle' +p36987 +tp36988 +a(g36985 +g36987 +S'of' +p36989 +tp36990 +a(g36987 +g36989 +S'the' +p36991 +tp36992 +a(g36989 +g36991 +S'eighteenth' +p36993 +tp36994 +a(g36991 +g36993 +S'century,' +p36995 +tp36996 +a(g36993 +g36995 +S'however,' +p36997 +tp36998 +a(g36995 +g36997 +S'the' +p36999 +tp37000 +a(g36997 +g36999 +S'colonists' +p37001 +tp37002 +a(g36999 +g37001 +S'were' +p37003 +tp37004 +a(g37001 +g37003 +S'defying' +p37005 +tp37006 +a(g37003 +g37005 +S'the' +p37007 +tp37008 +a(g37005 +g37007 +S'english' +p37009 +tp37010 +a(g37007 +g37009 +S'bans,' +p37011 +tp37012 +a(g37009 +g37011 +S'and' +p37013 +tp37014 +a(g37011 +g37013 +S'cottons' +p37015 +tp37016 +a(g37013 +g37015 +S'and' +p37017 +tp37018 +a(g37015 +g37017 +S'linens' +p37019 +tp37020 +a(g37017 +g37019 +S'were' +p37021 +tp37022 +a(g37019 +g37021 +S'being' +p37023 +tp37024 +a(g37021 +g37023 +S'printed' +p37025 +tp37026 +a(g37023 +g37025 +S'openly' +p37027 +tp37028 +a(g37025 +g37027 +S'by' +p37029 +tp37030 +a(g37027 +g37029 +S'shops' +p37031 +tp37032 +a(g37029 +g37031 +S'in' +p37033 +tp37034 +a(g37031 +g37033 +S'new' +p37035 +tp37036 +a(g37033 +g37035 +S'england' +p37037 +tp37038 +a(g37035 +g37037 +S'and' +p37039 +tp37040 +a(g37037 +g37039 +S'in' +p37041 +tp37042 +a(g37039 +g37041 +S'the' +p37043 +tp37044 +a(g37041 +g37043 +S'mid-atlantic' +p37045 +tp37046 +a(g37043 +g37045 +S'colonies.' +p37047 +tp37048 +a(g37045 +g37047 +S'early' +p37049 +tp37050 +a(g37047 +g37049 +S'printed' +p37051 +tp37052 +a(g37049 +g37051 +S'textiles,' +p37053 +tp37054 +a(g37051 +g37053 +S'like' +p37055 +tp37056 +a(g37053 +g37055 +S'this' +p37057 +tp37058 +a(g37055 +g37057 +S'example,' +p37059 +tp37060 +a(g37057 +g37059 +S'received' +p37061 +tp37062 +a(g37059 +g37061 +S'their' +p37063 +tp37064 +a(g37061 +g37063 +S'patterns' +p37065 +tp37066 +a(g37063 +g37065 +S'through' +p37067 +tp37068 +a(g37065 +g37067 +S'a' +p37069 +tp37070 +a(g37067 +g37069 +S'technique' +p37071 +tp37072 +a(g37069 +g37071 +S'of' +p37073 +tp37074 +a(g37071 +g37073 +S'printing' +p37075 +tp37076 +a(g37073 +g37075 +S'with' +p37077 +tp37078 +a(g37075 +g37077 +S'wood' +p37079 +tp37080 +a(g37077 +g37079 +S'blocks.' +p37081 +tp37082 +a(g37079 +g37081 +S'a' +p37083 +tp37084 +a(g37081 +g37083 +S'design' +p37085 +tp37086 +a(g37083 +g37085 +S'was' +p37087 +tp37088 +a(g37085 +g37087 +S'cut' +p37089 +tp37090 +a(g37087 +g37089 +S'in' +p37091 +tp37092 +a(g37089 +g37091 +S'high' +p37093 +tp37094 +a(g37091 +g37093 +S'relief' +p37095 +tp37096 +a(g37093 +g37095 +S'on' +p37097 +tp37098 +a(g37095 +g37097 +S'a' +p37099 +tp37100 +a(g37097 +g37099 +S'block' +p37101 +tp37102 +a(g37099 +g37101 +S'of' +p37103 +tp37104 +a(g37101 +g37103 +S'wood.' +p37105 +tp37106 +a(g37103 +g37105 +S'colored' +p37107 +tp37108 +a(g37105 +g37107 +S'dyes' +p37109 +tp37110 +a(g37107 +g37109 +S'were' +p37111 +tp37112 +a(g37109 +g37111 +S'applied' +p37113 +tp37114 +a(g37111 +g37113 +S'to' +p37115 +tp37116 +a(g37113 +g37115 +S'the' +p37117 +tp37118 +a(g37115 +g37117 +S'relief' +p37119 +tp37120 +a(g37117 +g37119 +S'design,' +p37121 +tp37122 +a(g37119 +g37121 +S'which' +p37123 +tp37124 +a(g37121 +g37123 +S'was' +p37125 +tp37126 +a(g37123 +g37125 +S'then' +p37127 +tp37128 +a(g37125 +g37127 +S'stamped' +p37129 +tp37130 +a(g37127 +g37129 +S'on' +p37131 +tp37132 +a(g37129 +g37131 +S'the' +p37133 +tp37134 +a(g37131 +g37133 +S'fabric,' +p37135 +tp37136 +a(g37133 +g37135 +S'thus' +p37137 +tp37138 +a(g37135 +g37137 +S'transferring' +p37139 +tp37140 +a(g37137 +g37139 +S'the' +p37141 +tp37142 +a(g37139 +g37141 +S'pattern.' +p37143 +tp37144 +a(g37141 +g37143 +S'along' +p37145 +tp37146 +a(g37143 +g37145 +S'with' +p37147 +tp37148 +a(g37145 +g37147 +S'historical' +p37149 +tp37150 +a(g37147 +g37149 +S'scenes' +p37151 +tp37152 +a(g37149 +g37151 +S'based' +p37153 +tp37154 +a(g37151 +g37153 +S'upon' +p37155 +tp37156 +a(g37153 +g37155 +S'american' +p37157 +tp37158 +a(g37155 +g37157 +S'figures' +p37159 +tp37160 +a(g37157 +g37159 +S'and' +p37161 +tp37162 +a(g37159 +g37161 +S'events,' +p37163 +tp37164 +a(g37161 +g37163 +S'floral' +p37165 +tp37166 +a(g37163 +g37165 +S'patterns' +p37167 +tp37168 +a(g37165 +g37167 +S'were' +p37169 +tp37170 +a(g37167 +g37169 +S'popular.' +p37171 +tp37172 +a(g37169 +g37171 +S'in' +p37173 +tp37174 +a(g37171 +g37173 +S'this' +p37175 +tp37176 +a(g37173 +g37175 +S'late' +p37177 +tp37178 +a(g37175 +g37177 +S'eighteenth-century' +p37179 +tp37180 +a(g37177 +g37179 +S'american' +p37181 +tp37182 +a(g37179 +g37181 +S'printed' +p37183 +tp37184 +a(g37181 +g37183 +S'cotton,' +p37185 +tp37186 +a(g37183 +g37185 +S'the' +p37187 +tp37188 +a(g37185 +g37187 +S'lavish' +p37189 +tp37190 +a(g37187 +g37189 +S'pattern' +p37191 +tp37192 +a(g37189 +g37191 +S'of' +p37193 +tp37194 +a(g37191 +g37193 +S'brightly' +p37195 +tp37196 +a(g37193 +g37195 +S'colored' +p37197 +tp37198 +a(g37195 +g37197 +S'flowers' +p37199 +tp37200 +a(g37197 +g37199 +S'recalls' +p37201 +tp37202 +a(g37199 +g37201 +S'the' +p37203 +tp37204 +a(g37201 +g37203 +S'elaborate' +p37205 +tp37206 +a(g37203 +g37205 +S'designs' +p37207 +tp37208 +a(g37205 +g37207 +S'of' +p37209 +tp37210 +a(g37207 +g37209 +S'indian' +p37211 +tp37212 +a(g37209 +g37211 +S'fabrics' +p37213 +tp37214 +a(g37211 +g37213 +S'and' +p37215 +tp37216 +a(g37213 +g37215 +S'of' +p37217 +tp37218 +a(g37215 +g37217 +S'their' +p37219 +tp37220 +a(g37217 +g37219 +S'european' +p37221 +tp37222 +a(g37219 +g37221 +S'counterparts.' +p37223 +tp37224 +a(g37221 +g37223 +S'the' +p37225 +tp37226 +a(g37223 +g37225 +S'style' +p37227 +tp37228 +a(g37225 +g37227 +S'of' +p37229 +tp37230 +a(g37227 +g37229 +S"women's" +p37231 +tp37232 +a(g37229 +g37231 +S'hats' +p37233 +tp37234 +a(g37231 +g37233 +S'is' +p37235 +tp37236 +a(g37233 +g37235 +S'another' +p37237 +tp37238 +a(g37235 +g37237 +S'fashion' +p37239 +tp37240 +a(g37237 +g37239 +S'that' +p37241 +tp37242 +a(g37239 +g37241 +S'changed' +p37243 +tp37244 +a(g37241 +g37243 +S'about' +p37245 +tp37246 +a(g37243 +g37245 +S'the' +p37247 +tp37248 +a(g37245 +g37247 +S'time' +p37249 +tp37250 +a(g37247 +g37249 +S'of' +p37251 +tp37252 +a(g37249 +g37251 +S'the' +p37253 +tp37254 +a(g37251 +g37253 +S'civil' +p37255 +tp37256 +a(g37253 +g37255 +S'war.' +p37257 +tp37258 +a(g37255 +g37257 +S'the' +p37259 +tp37260 +a(g37257 +g37259 +S'earlier' +p37261 +tp37262 +a(g37259 +g37261 +S'bonnet' +p37263 +tp37264 +a(g37261 +g37263 +S'that' +p37265 +tp37266 +a(g37263 +g37265 +S'covered' +p37267 +tp37268 +a(g37265 +g37267 +S'the' +p37269 +tp37270 +a(g37267 +g37269 +S'hair' +p37271 +tp37272 +a(g37269 +g37271 +S'and' +p37273 +tp37274 +a(g37271 +g37273 +S'shielded' +p37275 +tp37276 +a(g37273 +g37275 +S'the' +p37277 +tp37278 +a(g37275 +g37277 +S'face' +p37279 +tp37280 +a(g37277 +g37279 +S'gave' +p37281 +tp37282 +a(g37279 +g37281 +S'way' +p37283 +tp37284 +a(g37281 +g37283 +S'to' +p37285 +tp37286 +a(g37283 +g37285 +S'small,' +p37287 +tp37288 +a(g37285 +g37287 +S'elaborately' +p37289 +tp37290 +a(g37287 +g37289 +S'trimmed' +p37291 +tp37292 +a(g37289 +g37291 +S'hats' +p37293 +tp37294 +a(g37291 +g37293 +S'with' +p37295 +tp37296 +a(g37293 +g37295 +S'veils.' +p37297 +tp37298 +a(g37295 +g37297 +S'this' +p37299 +tp37300 +a(g37297 +g37299 +S'straw' +p37301 +tp37302 +a(g37299 +g37301 +S'hat' +p37303 +tp37304 +a(g37301 +g37303 +S'with' +p37305 +tp37306 +a(g37303 +g37305 +S'a' +p37307 +tp37308 +a(g37305 +g37307 +S'black' +p37309 +tp37310 +a(g37307 +g37309 +S'veil' +p37311 +tp37312 +a(g37309 +g37311 +S'is' +p37313 +tp37314 +a(g37311 +g37313 +S'dated' +p37315 +tp37316 +a(g37313 +g37315 +S'about' +p37317 +tp37318 +a(g37315 +g37317 +S'1865.' +p37319 +tp37320 +a(g37317 +g37319 +S'the' +p37321 +tp37322 +a(g37319 +g37321 +S'bowed' +p37323 +tp37324 +a(g37321 +g37323 +S'ribbon,' +p37325 +tp37326 +a(g37323 +g37325 +S'seen' +p37327 +tp37328 +a(g37325 +g37327 +S'behind' +p37329 +tp37330 +a(g37327 +g37329 +S'the' +p37331 +tp37332 +a(g37329 +g37331 +S'veil,' +p37333 +tp37334 +a(g37331 +g37333 +S'was' +p37335 +tp37336 +a(g37333 +g37335 +S'tied' +p37337 +tp37338 +a(g37335 +g37337 +S'under' +p37339 +tp37340 +a(g37337 +g37339 +S'the' +p37341 +tp37342 +a(g37339 +g37341 +S"woman's" +p37343 +tp37344 +a(g37341 +g37343 +S'chin' +p37345 +tp37346 +a(g37343 +g37345 +S'to' +p37347 +tp37348 +a(g37345 +g37347 +S'hold' +p37349 +tp37350 +a(g37347 +g37349 +S'the' +p37351 +tp37352 +a(g37349 +g37351 +S'hat' +p37353 +tp37354 +a(g37351 +g37353 +S'in' +p37355 +tp37356 +a(g37353 +g37355 +S'place.' +p37357 +tp37358 +a(g37355 +g37357 +S'a' +p37359 +tp37360 +a(g37357 +g37359 +S'knitted' +p37361 +tp37362 +a(g37359 +g37361 +S'hemp' +p37363 +tp37364 +a(g37361 +g37363 +S'scarf' +p37365 +tp37366 +a(g37363 +g37365 +S'with' +p37367 +tp37368 +a(g37365 +g37367 +S'fringed' +p37369 +tp37370 +a(g37367 +g37369 +S'ends' +p37371 +tp37372 +a(g37369 +g37371 +S'is' +p37373 +tp37374 +a(g37371 +g37373 +S'wound' +p37375 +tp37376 +a(g37373 +g37375 +S'around' +p37377 +tp37378 +a(g37375 +g37377 +S'the' +p37379 +tp37380 +a(g37377 +g37379 +S'center' +p37381 +tp37382 +a(g37379 +g37381 +S'crown' +p37383 +tp37384 +a(g37381 +g37383 +S'and' +p37385 +tp37386 +a(g37383 +g37385 +S'falls' +p37387 +tp37388 +a(g37385 +g37387 +S'over' +p37389 +tp37390 +a(g37387 +g37389 +S'the' +p37391 +tp37392 +a(g37389 +g37391 +S'rim' +p37393 +tp37394 +a(g37391 +g37393 +S'at' +p37395 +tp37396 +a(g37393 +g37395 +S'the' +p37397 +tp37398 +a(g37395 +g37397 +S'back.' +p37399 +tp37400 +a(g37397 +g37399 +S'a' +p37401 +tp37402 +a(g37399 +g37401 +S'dramatic' +p37403 +tp37404 +a(g37401 +g37403 +S'change' +p37405 +tp37406 +a(g37403 +g37405 +S'in' +p37407 +tp37408 +a(g37405 +g37407 +S'fashion' +p37409 +tp37410 +a(g37407 +g37409 +S'away' +p37411 +tp37412 +a(g37409 +g37411 +S'from' +p37413 +tp37414 +a(g37411 +g37413 +S'extravagance' +p37415 +tp37416 +a(g37413 +g37415 +S'and' +p37417 +tp37418 +a(g37415 +g37417 +S'formality' +p37419 +tp37420 +a(g37417 +g37419 +S'began' +p37421 +tp37422 +a(g37419 +g37421 +S'to' +p37423 +tp37424 +a(g37421 +g37423 +S'emerge' +p37425 +tp37426 +a(g37423 +g37425 +S'in' +p37427 +tp37428 +a(g37425 +g37427 +S"women's" +p37429 +tp37430 +a(g37427 +g37429 +S'clothes' +p37431 +tp37432 +a(g37429 +g37431 +S'during' +p37433 +tp37434 +a(g37431 +g37433 +S'the' +p37435 +tp37436 +a(g37433 +g37435 +S'last' +p37437 +tp37438 +a(g37435 +g37437 +S'decades' +p37439 +tp37440 +a(g37437 +g37439 +S'of' +p37441 +tp37442 +a(g37439 +g37441 +S'the' +p37443 +tp37444 +a(g37441 +g37443 +S'eighteenth' +p37445 +tp37446 +a(g37443 +g37445 +S'century.' +p37447 +tp37448 +a(g37445 +g37447 +S'influenced' +p37449 +tp37450 +a(g37447 +g37449 +S'by' +p37451 +tp37452 +a(g37449 +g37451 +S'a' +p37453 +tp37454 +a(g37451 +g37453 +S'resurgent' +p37455 +tp37456 +a(g37453 +g37455 +S'interest' +p37457 +tp37458 +a(g37455 +g37457 +S'in' +p37459 +tp37460 +a(g37457 +g37459 +S'classical' +p37461 +tp37462 +a(g37459 +g37461 +S'culture,' +p37463 +tp37464 +a(g37461 +g37463 +S'owing' +p37465 +tp37466 +a(g37463 +g37465 +S'to' +p37467 +tp37468 +a(g37465 +g37467 +S'the' +p37469 +tp37470 +a(g37467 +g37469 +S'archeological' +p37471 +tp37472 +a(g37469 +g37471 +S'excavations' +p37473 +tp37474 +a(g37471 +g37473 +S'of' +p37475 +tp37476 +a(g37473 +g37475 +S'pompii' +p37477 +tp37478 +a(g37475 +g37477 +S'and' +p37479 +tp37480 +a(g37477 +g37479 +S'herculaneum' +p37481 +tp37482 +a(g37479 +g37481 +S'earlier' +p37483 +tp37484 +a(g37481 +g37483 +S'in' +p37485 +tp37486 +a(g37483 +g37485 +S'the' +p37487 +tp37488 +a(g37485 +g37487 +S'century,' +p37489 +tp37490 +a(g37487 +g37489 +S'a' +p37491 +tp37492 +a(g37489 +g37491 +S'neoclassical' +p37493 +tp37494 +a(g37491 +g37493 +S'style' +p37495 +tp37496 +a(g37493 +g37495 +S'of' +p37497 +tp37498 +a(g37495 +g37497 +S'clothing' +p37499 +tp37500 +a(g37497 +g37499 +S'came' +p37501 +tp37502 +a(g37499 +g37501 +S'into' +p37503 +tp37504 +a(g37501 +g37503 +S'vogue.' +p37505 +tp37506 +a(g37503 +g37505 +S'more' +p37507 +tp37508 +a(g37505 +g37507 +S'loosely' +p37509 +tp37510 +a(g37507 +g37509 +S'structured' +p37511 +tp37512 +a(g37509 +g37511 +S'dresses' +p37513 +tp37514 +a(g37511 +g37513 +S'made' +p37515 +tp37516 +a(g37513 +g37515 +S'from' +p37517 +tp37518 +a(g37515 +g37517 +S'lightweight' +p37519 +tp37520 +a(g37517 +g37519 +S'fabrics' +p37521 +tp37522 +a(g37519 +g37521 +S'appeared' +p37523 +tp37524 +a(g37521 +g37523 +S'in' +p37525 +tp37526 +a(g37523 +g37525 +S'the' +p37527 +tp37528 +a(g37525 +g37527 +S'1770s' +p37529 +tp37530 +a(g37527 +g37529 +S'and' +p37531 +tp37532 +a(g37529 +g37531 +S'remained' +p37533 +tp37534 +a(g37531 +g37533 +S'popular' +p37535 +tp37536 +a(g37533 +g37535 +S'throughout' +p37537 +tp37538 +a(g37535 +g37537 +S'the' +p37539 +tp37540 +a(g37537 +g37539 +S'first' +p37541 +tp37542 +a(g37539 +g37541 +S'two' +p37543 +tp37544 +a(g37541 +g37543 +S'decades' +p37545 +tp37546 +a(g37543 +g37545 +S'of' +p37547 +tp37548 +a(g37545 +g37547 +S'the' +p37549 +tp37550 +a(g37547 +g37549 +S'nineteenth' +p37551 +tp37552 +a(g37549 +g37551 +S'century.' +p37553 +tp37554 +a(g37551 +g37553 +S'frequently' +p37555 +tp37556 +a(g37553 +g37555 +S'these' +p37557 +tp37558 +a(g37555 +g37557 +S'dresses' +p37559 +tp37560 +a(g37557 +g37559 +S'featured' +p37561 +tp37562 +a(g37559 +g37561 +S'a' +p37563 +tp37564 +a(g37561 +g37563 +S'high-waisted' +p37565 +tp37566 +a(g37563 +g37565 +S'bodice' +p37567 +tp37568 +a(g37565 +g37567 +S'that' +p37569 +tp37570 +a(g37567 +g37569 +S'was' +p37571 +tp37572 +a(g37569 +g37571 +S'gathered' +p37573 +tp37574 +a(g37571 +g37573 +S'and' +p37575 +tp37576 +a(g37573 +g37575 +S'adjusted' +p37577 +tp37578 +a(g37575 +g37577 +S'by' +p37579 +tp37580 +a(g37577 +g37579 +S'means' +p37581 +tp37582 +a(g37579 +g37581 +S'of' +p37583 +tp37584 +a(g37581 +g37583 +S'a' +p37585 +tp37586 +a(g37583 +g37585 +S'drawstring.' +p37587 +tp37588 +a(g37585 +g37587 +S'the' +p37589 +tp37590 +a(g37587 +g37589 +S'example' +p37591 +tp37592 +a(g37589 +g37591 +S'shown' +p37593 +tp37594 +a(g37591 +g37593 +S'here,' +p37595 +tp37596 +a(g37593 +g37595 +S'dated' +p37597 +tp37598 +a(g37595 +g37597 +S'about' +p37599 +tp37600 +a(g37597 +g37599 +S'1822,' +p37601 +tp37602 +a(g37599 +g37601 +S'consists' +p37603 +tp37604 +a(g37601 +g37603 +S'of' +p37605 +tp37606 +a(g37603 +g37605 +S'a' +p37607 +tp37608 +a(g37605 +g37607 +S'satin' +p37609 +tp37610 +a(g37607 +g37609 +S'underdress' +p37611 +tp37612 +a(g37609 +g37611 +S'and' +p37613 +tp37614 +a(g37611 +g37613 +S'an' +p37615 +tp37616 +a(g37613 +g37615 +S'embroidered' +p37617 +tp37618 +a(g37615 +g37617 +S'gauze' +p37619 +tp37620 +a(g37617 +g37619 +S'or' +p37621 +tp37622 +a(g37619 +g37621 +S'net' +p37623 +tp37624 +a(g37621 +g37623 +S'overdress.' +p37625 +tp37626 +a(g37623 +g37625 +S'in' +p37627 +tp37628 +a(g37625 +g37627 +S'the' +p37629 +tp37630 +a(g37627 +g37629 +S'eighteenth' +p37631 +tp37632 +a(g37629 +g37631 +S'century,' +p37633 +tp37634 +a(g37631 +g37633 +S'elegant' +p37635 +tp37636 +a(g37633 +g37635 +S'dresses' +p37637 +tp37638 +a(g37635 +g37637 +S'were' +p37639 +tp37640 +a(g37637 +g37639 +S'created' +p37641 +tp37642 +a(g37639 +g37641 +S'with' +p37643 +tp37644 +a(g37641 +g37643 +S'elaborately' +p37645 +tp37646 +a(g37643 +g37645 +S'patterned' +p37647 +tp37648 +a(g37645 +g37647 +S'fabrics,' +p37649 +tp37650 +a(g37647 +g37649 +S'lace' +p37651 +tp37652 +a(g37649 +g37651 +S'trim,' +p37653 +tp37654 +a(g37651 +g37653 +S'and' +p37655 +tp37656 +a(g37653 +g37655 +S'ruffles.' +p37657 +tp37658 +a(g37655 +g37657 +S'costume' +p37659 +tp37660 +a(g37657 +g37659 +S'accessories' +p37661 +tp37662 +a(g37659 +g37661 +S'and' +p37663 +tp37664 +a(g37661 +g37663 +S'hair' +p37665 +tp37666 +a(g37663 +g37665 +S'styles' +p37667 +tp37668 +a(g37665 +g37667 +S'were' +p37669 +tp37670 +a(g37667 +g37669 +S'equally' +p37671 +tp37672 +a(g37669 +g37671 +S'elaborate,' +p37673 +tp37674 +a(g37671 +g37673 +S'modeled' +p37675 +tp37676 +a(g37673 +g37675 +S'on' +p37677 +tp37678 +a(g37675 +g37677 +S'the' +p37679 +tp37680 +a(g37677 +g37679 +S'fashions' +p37681 +tp37682 +a(g37679 +g37681 +S'of' +p37683 +tp37684 +a(g37681 +g37683 +S'women' +p37685 +tp37686 +a(g37683 +g37685 +S'in' +p37687 +tp37688 +a(g37685 +g37687 +S'the' +p37689 +tp37690 +a(g37687 +g37689 +S'french' +p37691 +tp37692 +a(g37689 +g37691 +S'court.' +p37693 +tp37694 +a(g37691 +g37693 +S'french' +p37695 +tp37696 +a(g37693 +g37695 +S'fashion' +p37697 +tp37698 +a(g37695 +g37697 +S'exerted' +p37699 +tp37700 +a(g37697 +g37699 +S'strong' +p37701 +tp37702 +a(g37699 +g37701 +S'influence' +p37703 +tp37704 +a(g37701 +g37703 +S'on' +p37705 +tp37706 +a(g37703 +g37705 +S'english' +p37707 +tp37708 +a(g37705 +g37707 +S'fashions,' +p37709 +tp37710 +a(g37707 +g37709 +S'which' +p37711 +tp37712 +a(g37709 +g37711 +S'were' +p37713 +tp37714 +a(g37711 +g37713 +S'enthusiastically' +p37715 +tp37716 +a(g37713 +g37715 +S'adopted' +p37717 +tp37718 +a(g37715 +g37717 +S'by' +p37719 +tp37720 +a(g37717 +g37719 +S'colonial' +p37721 +tp37722 +a(g37719 +g37721 +S'gentlewomen.' +p37723 +tp37724 +a(g37721 +g37723 +S'this' +p37725 +tp37726 +a(g37723 +g37725 +S'dress' +p37727 +tp37728 +a(g37725 +g37727 +S'is' +p37729 +tp37730 +a(g37727 +g37729 +S'made' +p37731 +tp37732 +a(g37729 +g37731 +S'from' +p37733 +tp37734 +a(g37731 +g37733 +S'a' +p37735 +tp37736 +a(g37733 +g37735 +S'silk' +p37737 +tp37738 +a(g37735 +g37737 +S'fabric' +p37739 +tp37740 +a(g37737 +g37739 +S'known' +p37741 +tp37742 +a(g37739 +g37741 +S'as' +p37743 +tp37744 +a(g37741 +g37743 +S'"spitalfields,"' +p37745 +tp37746 +a(g37743 +g37745 +S'from' +p37747 +tp37748 +a(g37745 +g37747 +S'an' +p37749 +tp37750 +a(g37747 +g37749 +S'area' +p37751 +tp37752 +a(g37749 +g37751 +S'in' +p37753 +tp37754 +a(g37751 +g37753 +S'london' +p37755 +tp37756 +a(g37753 +g37755 +S'where' +p37757 +tp37758 +a(g37755 +g37757 +S'designers' +p37759 +tp37760 +a(g37757 +g37759 +S'and' +p37761 +tp37762 +a(g37759 +g37761 +S'weavers' +p37763 +tp37764 +a(g37761 +g37763 +S'produced' +p37765 +tp37766 +a(g37763 +g37765 +S'silks' +p37767 +tp37768 +a(g37765 +g37767 +S'in' +p37769 +tp37770 +a(g37767 +g37769 +S'a' +p37771 +tp37772 +a(g37769 +g37771 +S'great' +p37773 +tp37774 +a(g37771 +g37773 +S'variety' +p37775 +tp37776 +a(g37773 +g37775 +S'of' +p37777 +tp37778 +a(g37775 +g37777 +S'handsome' +p37779 +tp37780 +a(g37777 +g37779 +S'patterns.' +p37781 +tp37782 +a(g37779 +g37781 +S'spitalfields' +p37783 +tp37784 +a(g37781 +g37783 +S'fabrics' +p37785 +tp37786 +a(g37783 +g37785 +S'can' +p37787 +tp37788 +a(g37785 +g37787 +S'be' +p37789 +tp37790 +a(g37787 +g37789 +S'dated' +p37791 +tp37792 +a(g37789 +g37791 +S'quite' +p37793 +tp37794 +a(g37791 +g37793 +S'precisely' +p37795 +tp37796 +a(g37793 +g37795 +S'because' +p37797 +tp37798 +a(g37795 +g37797 +S'of' +p37799 +tp37800 +a(g37797 +g37799 +S'surviving' +p37801 +tp37802 +a(g37799 +g37801 +S'records' +p37803 +tp37804 +a(g37801 +g37803 +S'of' +p37805 +tp37806 +a(g37803 +g37805 +S'the' +p37807 +tp37808 +a(g37805 +g37807 +S'weaving' +p37809 +tp37810 +a(g37807 +g37809 +S'designs.' +p37811 +tp37812 +a(g37809 +g37811 +S'this' +p37813 +tp37814 +a(g37811 +g37813 +S'dress' +p37815 +tp37816 +a(g37813 +g37815 +S'can' +p37817 +tp37818 +a(g37815 +g37817 +S'be' +p37819 +tp37820 +a(g37817 +g37819 +S'dated' +p37821 +tp37822 +a(g37819 +g37821 +S'around' +p37823 +tp37824 +a(g37821 +g37823 +S'1740,' +p37825 +tp37826 +a(g37823 +g37825 +S'since' +p37827 +tp37828 +a(g37825 +g37827 +S'the' +p37829 +tp37830 +a(g37827 +g37829 +S'fabric' +p37831 +tp37832 +a(g37829 +g37831 +S'was' +p37833 +tp37834 +a(g37831 +g37833 +S'most' +p37835 +tp37836 +a(g37833 +g37835 +S'likely' +p37837 +tp37838 +a(g37835 +g37837 +S'woven' +p37839 +tp37840 +a(g37837 +g37839 +S'in' +p37841 +tp37842 +a(g37839 +g37841 +S'that' +p37843 +tp37844 +a(g37841 +g37843 +S'year.' +p37845 +tp37846 +a(g37843 +g37845 +S'multicolored' +p37847 +tp37848 +a(g37845 +g37847 +S'printed' +p37849 +tp37850 +a(g37847 +g37849 +S'cotton' +p37851 +tp37852 +a(g37849 +g37851 +S'or' +p37853 +tp37854 +a(g37851 +g37853 +S'linen' +p37855 +tp37856 +a(g37853 +g37855 +S'fabrics' +p37857 +tp37858 +a(g37855 +g37857 +S'were' +p37859 +tp37860 +a(g37857 +g37859 +S'fashionable' +p37861 +tp37862 +a(g37859 +g37861 +S'in' +p37863 +tp37864 +a(g37861 +g37863 +S'europe' +p37865 +tp37866 +a(g37863 +g37865 +S'as' +p37867 +tp37868 +a(g37865 +g37867 +S'early' +p37869 +tp37870 +a(g37867 +g37869 +S'as' +p37871 +tp37872 +a(g37869 +g37871 +S'the' +p37873 +tp37874 +a(g37871 +g37873 +S'seventeenth' +p37875 +tp37876 +a(g37873 +g37875 +S'century,' +p37877 +tp37878 +a(g37875 +g37877 +S'when' +p37879 +tp37880 +a(g37877 +g37879 +S'trade' +p37881 +tp37882 +a(g37879 +g37881 +S'with' +p37883 +tp37884 +a(g37881 +g37883 +S'the' +p37885 +tp37886 +a(g37883 +g37885 +S'east' +p37887 +tp37888 +a(g37885 +g37887 +S'began' +p37889 +tp37890 +a(g37887 +g37889 +S'to' +p37891 +tp37892 +a(g37889 +g37891 +S'flourish.' +p37893 +tp37894 +a(g37891 +g37893 +S'later,' +p37895 +tp37896 +a(g37893 +g37895 +S'english' +p37897 +tp37898 +a(g37895 +g37897 +S'and' +p37899 +tp37900 +a(g37897 +g37899 +S'french' +p37901 +tp37902 +a(g37899 +g37901 +S'textile' +p37903 +tp37904 +a(g37901 +g37903 +S'manufacturers' +p37905 +tp37906 +a(g37903 +g37905 +S'began' +p37907 +tp37908 +a(g37905 +g37907 +S'to' +p37909 +tp37910 +a(g37907 +g37909 +S'produce' +p37911 +tp37912 +a(g37909 +g37911 +S'their' +p37913 +tp37914 +a(g37911 +g37913 +S'own' +p37915 +tp37916 +a(g37913 +g37915 +S'versions' +p37917 +tp37918 +a(g37915 +g37917 +S'to' +p37919 +tp37920 +a(g37917 +g37919 +S'compete' +p37921 +tp37922 +a(g37919 +g37921 +S'with' +p37923 +tp37924 +a(g37921 +g37923 +S'imported' +p37925 +tp37926 +a(g37923 +g37925 +S'materials.' +p37927 +tp37928 +a(g37925 +g37927 +S'by' +p37929 +tp37930 +a(g37927 +g37929 +S'the' +p37931 +tp37932 +a(g37929 +g37931 +S'beginning' +p37933 +tp37934 +a(g37931 +g37933 +S'of' +p37935 +tp37936 +a(g37933 +g37935 +S'the' +p37937 +tp37938 +a(g37935 +g37937 +S'nineteenth' +p37939 +tp37940 +a(g37937 +g37939 +S'century,' +p37941 +tp37942 +a(g37939 +g37941 +S'american' +p37943 +tp37944 +a(g37941 +g37943 +S'textile' +p37945 +tp37946 +a(g37943 +g37945 +S'manufacturers' +p37947 +tp37948 +a(g37945 +g37947 +S'were' +p37949 +tp37950 +a(g37947 +g37949 +S'producing' +p37951 +tp37952 +a(g37949 +g37951 +S'inexpensive' +p37953 +tp37954 +a(g37951 +g37953 +S'printed' +p37955 +tp37956 +a(g37953 +g37955 +S'fabrics' +p37957 +tp37958 +a(g37955 +g37957 +S'because' +p37959 +tp37960 +a(g37957 +g37959 +S'of' +p37961 +tp37962 +a(g37959 +g37961 +S'the' +p37963 +tp37964 +a(g37961 +g37963 +S'availability' +p37965 +tp37966 +a(g37963 +g37965 +S'of' +p37967 +tp37968 +a(g37965 +g37967 +S'cheap' +p37969 +tp37970 +a(g37967 +g37969 +S'cotton' +p37971 +tp37972 +a(g37969 +g37971 +S'and' +p37973 +tp37974 +a(g37971 +g37973 +S'the' +p37975 +tp37976 +a(g37973 +g37975 +S'introduction' +p37977 +tp37978 +a(g37975 +g37977 +S'of' +p37979 +tp37980 +a(g37977 +g37979 +S'mechanical' +p37981 +tp37982 +a(g37979 +g37981 +S'spinning' +p37983 +tp37984 +a(g37981 +g37983 +S'machines.' +p37985 +tp37986 +a(g37983 +g37985 +S'this' +p37987 +tp37988 +a(g37985 +g37987 +S'"house' +p37989 +tp37990 +a(g37987 +g37989 +S'dress,"' +p37991 +tp37992 +a(g37989 +g37991 +S'from' +p37993 +tp37994 +a(g37991 +g37993 +S'about' +p37995 +tp37996 +a(g37993 +g37995 +S'1835' +p37997 +tp37998 +a(g37995 +g37997 +S'or' +p37999 +tp38000 +a(g37997 +g37999 +S'1836,' +p38001 +tp38002 +a(g37999 +g38001 +S'is' +p38003 +tp38004 +a(g38001 +g38003 +S'made' +p38005 +tp38006 +a(g38003 +g38005 +S'of' +p38007 +tp38008 +a(g38005 +g38007 +S'a' +p38009 +tp38010 +a(g38007 +g38009 +S'printed' +p38011 +tp38012 +a(g38009 +g38011 +S'cotton' +p38013 +tp38014 +a(g38011 +g38013 +S'fabric.' +p38015 +tp38016 +a(g38013 +g38015 +S'the' +p38017 +tp38018 +a(g38015 +g38017 +S'sleeves,' +p38019 +tp38020 +a(g38017 +g38019 +S'between' +p38021 +tp38022 +a(g38019 +g38021 +S'the' +p38023 +tp38024 +a(g38021 +g38023 +S'forearm' +p38025 +tp38026 +a(g38023 +g38025 +S'and' +p38027 +tp38028 +a(g38025 +g38027 +S'shoulder,' +p38029 +tp38030 +a(g38027 +g38029 +S'required' +p38031 +tp38032 +a(g38029 +g38031 +S'a' +p38033 +tp38034 +a(g38031 +g38033 +S'special' +p38035 +tp38036 +a(g38033 +g38035 +S'down-filled' +p38037 +tp38038 +a(g38035 +g38037 +S'padding' +p38039 +tp38040 +a(g38037 +g38039 +S'to' +p38041 +tp38042 +a(g38039 +g38041 +S'support' +p38043 +tp38044 +a(g38041 +g38043 +S'their' +p38045 +tp38046 +a(g38043 +g38045 +S'large' +p38047 +tp38048 +a(g38045 +g38047 +S'balloon' +p38049 +tp38050 +a(g38047 +g38049 +S'shape.' +p38051 +tp38052 +a(g38049 +g38051 +S'the' +p38053 +tp38054 +a(g38051 +g38053 +S'skirt' +p38055 +tp38056 +a(g38053 +g38055 +S'was' +p38057 +tp38058 +a(g38055 +g38057 +S'extended' +p38059 +tp38060 +a(g38057 +g38059 +S'outward' +p38061 +tp38062 +a(g38059 +g38061 +S'by' +p38063 +tp38064 +a(g38061 +g38063 +S'layers' +p38065 +tp38066 +a(g38063 +g38065 +S'of' +p38067 +tp38068 +a(g38065 +g38067 +S'petticoats.' +p38069 +tp38070 +a(g38067 +g38069 +S"women's" +p38071 +tp38072 +a(g38069 +g38071 +S'fashions' +p38073 +tp38074 +a(g38071 +g38073 +S'changed' +p38075 +tp38076 +a(g38073 +g38075 +S'somewhat' +p38077 +tp38078 +a(g38075 +g38077 +S'about' +p38079 +tp38080 +a(g38077 +g38079 +S'the' +p38081 +tp38082 +a(g38079 +g38081 +S'time' +p38083 +tp38084 +a(g38081 +g38083 +S'of' +p38085 +tp38086 +a(g38083 +g38085 +S'the' +p38087 +tp38088 +a(g38085 +g38087 +S'civil' +p38089 +tp38090 +a(g38087 +g38089 +S'war.' +p38091 +tp38092 +a(g38089 +g38091 +S'most' +p38093 +tp38094 +a(g38091 +g38093 +S'noticeable' +p38095 +tp38096 +a(g38093 +g38095 +S'is' +p38097 +tp38098 +a(g38095 +g38097 +S'the' +p38099 +tp38100 +a(g38097 +g38099 +S'transition' +p38101 +tp38102 +a(g38099 +g38101 +S'in' +p38103 +tp38104 +a(g38101 +g38103 +S'the' +p38105 +tp38106 +a(g38103 +g38105 +S'shape' +p38107 +tp38108 +a(g38105 +g38107 +S'of' +p38109 +tp38110 +a(g38107 +g38109 +S'the' +p38111 +tp38112 +a(g38109 +g38111 +S'skirt' +p38113 +tp38114 +a(g38111 +g38113 +S'from' +p38115 +tp38116 +a(g38113 +g38115 +S'the' +p38117 +tp38118 +a(g38115 +g38117 +S'full' +p38119 +tp38120 +a(g38117 +g38119 +S'circular' +p38121 +tp38122 +a(g38119 +g38121 +S'style' +p38123 +tp38124 +a(g38121 +g38123 +S'to' +p38125 +tp38126 +a(g38123 +g38125 +S'one' +p38127 +tp38128 +a(g38125 +g38127 +S'in' +p38129 +tp38130 +a(g38127 +g38129 +S'which' +p38131 +tp38132 +a(g38129 +g38131 +S'the' +p38133 +tp38134 +a(g38131 +g38133 +S'fullness' +p38135 +tp38136 +a(g38133 +g38135 +S'is' +p38137 +tp38138 +a(g38135 +g38137 +S'at' +p38139 +tp38140 +a(g38137 +g38139 +S'the' +p38141 +tp38142 +a(g38139 +g38141 +S'back.' +p38143 +tp38144 +a(g38141 +g38143 +S'this' +p38145 +tp38146 +a(g38143 +g38145 +S'two-piece,' +p38147 +tp38148 +a(g38145 +g38147 +S'red' +p38149 +tp38150 +a(g38147 +g38149 +S'silk' +p38151 +tp38152 +a(g38149 +g38151 +S'"afternoon"' +p38153 +tp38154 +a(g38151 +g38153 +S'dress' +p38155 +tp38156 +a(g38153 +g38155 +S'has' +p38157 +tp38158 +a(g38155 +g38157 +S'a' +p38159 +tp38160 +a(g38157 +g38159 +S'cage-type' +p38161 +tp38162 +a(g38159 +g38161 +S'skirt' +p38163 +tp38164 +a(g38161 +g38163 +S'hoop' +p38165 +tp38166 +a(g38163 +g38165 +S'to' +p38167 +tp38168 +a(g38165 +g38167 +S'emphasize' +p38169 +tp38170 +a(g38167 +g38169 +S'the' +p38171 +tp38172 +a(g38169 +g38171 +S'fullness' +p38173 +tp38174 +a(g38171 +g38173 +S'behind' +p38175 +tp38176 +a(g38173 +g38175 +S'and' +p38177 +tp38178 +a(g38175 +g38177 +S'includes' +p38179 +tp38180 +a(g38177 +g38179 +S'a' +p38181 +tp38182 +a(g38179 +g38181 +S'train' +p38183 +tp38184 +a(g38181 +g38183 +S'at' +p38185 +tp38186 +a(g38183 +g38185 +S'the' +p38187 +tp38188 +a(g38185 +g38187 +S'floor' +p38189 +tp38190 +a(g38187 +g38189 +S'to' +p38191 +tp38192 +a(g38189 +g38191 +S'carry' +p38193 +tp38194 +a(g38191 +g38193 +S'out' +p38195 +tp38196 +a(g38193 +g38195 +S'the' +p38197 +tp38198 +a(g38195 +g38197 +S'effect.' +p38199 +tp38200 +a(g38197 +g38199 +S'double' +p38201 +tp38202 +a(g38199 +g38201 +S'sleeves' +p38203 +tp38204 +a(g38201 +g38203 +S'were' +p38205 +tp38206 +a(g38203 +g38205 +S'popular' +p38207 +tp38208 +a(g38205 +g38207 +S'in' +p38209 +tp38210 +a(g38207 +g38209 +S'the' +p38211 +tp38212 +a(g38209 +g38211 +S'1850s' +p38213 +tp38214 +a(g38211 +g38213 +S'and' +p38215 +tp38216 +a(g38213 +g38215 +S'1860s;' +p38217 +tp38218 +a(g38215 +g38217 +S'the' +p38219 +tp38220 +a(g38217 +g38219 +S'idea' +p38221 +tp38222 +a(g38219 +g38221 +S'was' +p38223 +tp38224 +a(g38221 +g38223 +S'adapted' +p38225 +tp38226 +a(g38223 +g38225 +S'from' +p38227 +tp38228 +a(g38225 +g38227 +S"men's" +p38229 +tp38230 +a(g38227 +g38229 +S'fashions' +p38231 +tp38232 +a(g38229 +g38231 +S'where' +p38233 +tp38234 +a(g38231 +g38233 +S'the' +p38235 +tp38236 +a(g38233 +g38235 +S'shirt' +p38237 +tp38238 +a(g38235 +g38237 +S'cuffs' +p38239 +tp38240 +a(g38237 +g38239 +S'protruded' +p38241 +tp38242 +a(g38239 +g38241 +S'beyond' +p38243 +tp38244 +a(g38241 +g38243 +S'the' +p38245 +tp38246 +a(g38243 +g38245 +S'sleeves' +p38247 +tp38248 +a(g38245 +g38247 +S'of' +p38249 +tp38250 +a(g38247 +g38249 +S'the' +p38251 +tp38252 +a(g38249 +g38251 +S'jacket.' +p38253 +tp38254 +a(g38251 +g38253 +S'here' +p38255 +tp38256 +a(g38253 +g38255 +S'the' +p38257 +tp38258 +a(g38255 +g38257 +S'undersleeve,' +p38259 +tp38260 +a(g38257 +g38259 +S'or' +p38261 +tp38262 +a(g38259 +g38261 +S'"engageant,"' +p38263 +tp38264 +a(g38261 +g38263 +S'is' +p38265 +tp38266 +a(g38263 +g38265 +S'of' +p38267 +tp38268 +a(g38265 +g38267 +S'lace.' +p38269 +tp38270 +a(g38267 +g38269 +S'potters' +p38271 +tp38272 +a(g38269 +g38271 +S'in' +p38273 +tp38274 +a(g38271 +g38273 +S'several' +p38275 +tp38276 +a(g38273 +g38275 +S'italian' +p38277 +tp38278 +a(g38275 +g38277 +S'cities,' +p38279 +tp38280 +a(g38277 +g38279 +S'including' +p38281 +tp38282 +a(g38279 +g38281 +S'urbino,' +p38283 +tp38284 +a(g38281 +g38283 +S'deruta,' +p38285 +tp38286 +a(g38283 +g38285 +S'and' +p38287 +tp38288 +a(g38285 +g38287 +S'gubbio,' +p38289 +tp38290 +a(g38287 +g38289 +S'specialized' +p38291 +tp38292 +a(g38289 +g38291 +S'in' +p38293 +tp38294 +a(g38291 +g38293 +S'brilliantly' +p38295 +tp38296 +a(g38293 +g38295 +S'colored' +p38297 +tp38298 +a(g38295 +g38297 +S'tin-glazed' +p38299 +tp38300 +a(g38297 +g38299 +S'earthenware,' +p38301 +tp38302 +a(g38299 +g38301 +S'a' +p38303 +tp38304 +a(g38301 +g38303 +S'luxury' +p38305 +tp38306 +a(g38303 +g38305 +S'ceramic' +p38307 +tp38308 +a(g38305 +g38307 +S'often' +p38309 +tp38310 +a(g38307 +g38309 +S'embellished' +p38311 +tp38312 +a(g38309 +g38311 +S'with' +p38313 +tp38314 +a(g38311 +g38313 +S'metallic' +p38315 +tp38316 +a(g38313 +g38315 +S'luster' +p38317 +tp38318 +a(g38315 +g38317 +S'glazes.' +p38319 +tp38320 +a(g38317 +g38319 +S'some' +p38321 +tp38322 +a(g38319 +g38321 +S'depicted' +p38323 +tp38324 +a(g38321 +g38323 +S'portraits' +p38325 +tp38326 +a(g38323 +g38325 +S'or' +p38327 +tp38328 +a(g38325 +g38327 +S'family' +p38329 +tp38330 +a(g38327 +g38329 +S'crests,' +p38331 +tp38332 +a(g38329 +g38331 +S'but' +p38333 +tp38334 +a(g38331 +g38333 +S'many' +p38335 +tp38336 +a(g38333 +g38335 +S'were' +p38337 +tp38338 +a(g38335 +g38337 +S'decorated' +p38339 +tp38340 +a(g38337 +g38339 +S'with' +p38341 +tp38342 +a(g38339 +g38341 +S'elaborate' +p38343 +tp38344 +a(g38341 +g38343 +S'narrative' +p38345 +tp38346 +a(g38343 +g38345 +S'scenes' +p38347 +tp38348 +a(g38345 +g38347 +S'from' +p38349 +tp38350 +a(g38347 +g38349 +S'the' +p38351 +tp38352 +a(g38349 +g38351 +S'bible' +p38353 +tp38354 +a(g38351 +g38353 +S'or' +p38355 +tp38356 +a(g38353 +g38355 +S'ancient' +p38357 +tp38358 +a(g38355 +g38357 +S'mythology.' +p38359 +tp38360 +a(g38357 +g38359 +S'these' +p38361 +tp38362 +a(g38359 +g38361 +S'wares' +p38363 +tp38364 +a(g38361 +g38363 +S'are' +p38365 +tp38366 +a(g38363 +g38365 +S'known' +p38367 +tp38368 +a(g38365 +g38367 +S'as' +p38369 +tp38370 +a(g38367 +g38369 +S'maiolica,' +p38371 +tp38372 +a(g38369 +g38371 +S'probably' +p38373 +tp38374 +a(g38371 +g38373 +S'because' +p38375 +tp38376 +a(g38373 +g38375 +S'the' +p38377 +tp38378 +a(g38375 +g38377 +S'techniques' +p38379 +tp38380 +a(g38377 +g38379 +S'for' +p38381 +tp38382 +a(g38379 +g38381 +S'making' +p38383 +tp38384 +a(g38381 +g38383 +S'them' +p38385 +tp38386 +a(g38383 +g38385 +S'entered' +p38387 +tp38388 +a(g38385 +g38387 +S'italy' +p38389 +tp38390 +a(g38387 +g38389 +S'from' +p38391 +tp38392 +a(g38389 +g38391 +S'spain' +p38393 +tp38394 +a(g38391 +g38393 +S'by' +p38395 +tp38396 +a(g38393 +g38395 +S'way' +p38397 +tp38398 +a(g38395 +g38397 +S'of' +p38399 +tp38400 +a(g38397 +g38399 +S'majorca.' +p38401 +tp38402 +a(g38399 +g38401 +S'patchwork' +p38403 +tp38404 +a(g38401 +g38403 +S'quilts' +p38405 +tp38406 +a(g38403 +g38405 +S'put' +p38407 +tp38408 +a(g38405 +g38407 +S'together' +p38409 +tp38410 +a(g38407 +g38409 +S'in' +p38411 +tp38412 +a(g38409 +g38411 +S'random' +p38413 +tp38414 +a(g38411 +g38413 +S'fashion' +p38415 +tp38416 +a(g38413 +g38415 +S'are' +p38417 +tp38418 +a(g38415 +g38417 +S'called' +p38419 +tp38420 +a(g38417 +g38419 +S'"crazy' +p38421 +tp38422 +a(g38419 +g38421 +S'quilts."' +p38423 +tp38424 +a(g38421 +g38423 +S'the' +p38425 +tp38426 +a(g38423 +g38425 +S'crazy' +p38427 +tp38428 +a(g38425 +g38427 +S'quilt' +p38429 +tp38430 +a(g38427 +g38429 +S'is' +p38431 +tp38432 +a(g38429 +g38431 +S'the' +p38433 +tp38434 +a(g38431 +g38433 +S'oldest' +p38435 +tp38436 +a(g38433 +g38435 +S'form' +p38437 +tp38438 +a(g38435 +g38437 +S'of' +p38439 +tp38440 +a(g38437 +g38439 +S'american' +p38441 +tp38442 +a(g38439 +g38441 +S'patchwork' +p38443 +tp38444 +a(g38441 +g38443 +S'and' +p38445 +tp38446 +a(g38443 +g38445 +S'evolved' +p38447 +tp38448 +a(g38445 +g38447 +S'from' +p38449 +tp38450 +a(g38447 +g38449 +S'the' +p38451 +tp38452 +a(g38449 +g38451 +S'necessity' +p38453 +tp38454 +a(g38451 +g38453 +S'for' +p38455 +tp38456 +a(g38453 +g38455 +S'using' +p38457 +tp38458 +a(g38455 +g38457 +S'every' +p38459 +tp38460 +a(g38457 +g38459 +S'scrap' +p38461 +tp38462 +a(g38459 +g38461 +S'of' +p38463 +tp38464 +a(g38461 +g38463 +S'material.' +p38465 +tp38466 +a(g38463 +g38465 +S'by' +p38467 +tp38468 +a(g38465 +g38467 +S'the' +p38469 +tp38470 +a(g38467 +g38469 +S'late' +p38471 +tp38472 +a(g38469 +g38471 +S'eighteenth' +p38473 +tp38474 +a(g38471 +g38473 +S'century,' +p38475 +tp38476 +a(g38473 +g38475 +S'pieced' +p38477 +tp38478 +a(g38475 +g38477 +S'quilts' +p38479 +tp38480 +a(g38477 +g38479 +S'in' +p38481 +tp38482 +a(g38479 +g38481 +S'geometric' +p38483 +tp38484 +a(g38481 +g38483 +S'patterns' +p38485 +tp38486 +a(g38483 +g38485 +S'had' +p38487 +tp38488 +a(g38485 +g38487 +S'replaced' +p38489 +tp38490 +a(g38487 +g38489 +S'crazy' +p38491 +tp38492 +a(g38489 +g38491 +S'quilts;' +p38493 +tp38494 +a(g38491 +g38493 +S'quilts' +p38495 +tp38496 +a(g38493 +g38495 +S'displaying' +p38497 +tp38498 +a(g38495 +g38497 +S'irregular' +p38499 +tp38500 +a(g38497 +g38499 +S'patterns' +p38501 +tp38502 +a(g38499 +g38501 +S'became' +p38503 +tp38504 +a(g38501 +g38503 +S'popular' +p38505 +tp38506 +a(g38503 +g38505 +S'again' +p38507 +tp38508 +a(g38505 +g38507 +S'after' +p38509 +tp38510 +a(g38507 +g38509 +S'the' +p38511 +tp38512 +a(g38509 +g38511 +S'middle' +p38513 +tp38514 +a(g38511 +g38513 +S'of' +p38515 +tp38516 +a(g38513 +g38515 +S'the' +p38517 +tp38518 +a(g38515 +g38517 +S'nineteenth' +p38519 +tp38520 +a(g38517 +g38519 +S'century,' +p38521 +tp38522 +a(g38519 +g38521 +S'when' +p38523 +tp38524 +a(g38521 +g38523 +S'they' +p38525 +tp38526 +a(g38523 +g38525 +S'were' +p38527 +tp38528 +a(g38525 +g38527 +S'used' +p38529 +tp38530 +a(g38527 +g38529 +S'as' +p38531 +tp38532 +a(g38529 +g38531 +S'ornamental' +p38533 +tp38534 +a(g38531 +g38533 +S'throws' +p38535 +tp38536 +a(g38533 +g38535 +S'on' +p38537 +tp38538 +a(g38535 +g38537 +S'couches' +p38539 +tp38540 +a(g38537 +g38539 +S'in' +p38541 +tp38542 +a(g38539 +g38541 +S'fashionable' +p38543 +tp38544 +a(g38541 +g38543 +S'parlors.' +p38545 +tp38546 +a(g38543 +g38545 +S'the' +p38547 +tp38548 +a(g38545 +g38547 +S'crazy' +p38549 +tp38550 +a(g38547 +g38549 +S'quilts' +p38551 +tp38552 +a(g38549 +g38551 +S'of' +p38553 +tp38554 +a(g38551 +g38553 +S'the' +p38555 +tp38556 +a(g38553 +g38555 +S'late' +p38557 +tp38558 +a(g38555 +g38557 +S'nineteenth' +p38559 +tp38560 +a(g38557 +g38559 +S'century,' +p38561 +tp38562 +a(g38559 +g38561 +S'unlike' +p38563 +tp38564 +a(g38561 +g38563 +S'earlier' +p38565 +tp38566 +a(g38563 +g38565 +S'quilts,' +p38567 +tp38568 +a(g38565 +g38567 +S'generally' +p38569 +tp38570 +a(g38567 +g38569 +S'included' +p38571 +tp38572 +a(g38569 +g38571 +S'scraps' +p38573 +tp38574 +a(g38571 +g38573 +S'of' +p38575 +tp38576 +a(g38573 +g38575 +S'silk,' +p38577 +tp38578 +a(g38575 +g38577 +S'satin,' +p38579 +tp38580 +a(g38577 +g38579 +S'or' +p38581 +tp38582 +a(g38579 +g38581 +S'velvet' +p38583 +tp38584 +a(g38581 +g38583 +S'in' +p38585 +tp38586 +a(g38583 +g38585 +S'addition' +p38587 +tp38588 +a(g38585 +g38587 +S'to' +p38589 +tp38590 +a(g38587 +g38589 +S'the' +p38591 +tp38592 +a(g38589 +g38591 +S'customary' +p38593 +tp38594 +a(g38591 +g38593 +S'cotton' +p38595 +tp38596 +a(g38593 +g38595 +S'patches.' +p38597 +tp38598 +a(g38595 +g38597 +S'the' +p38599 +tp38600 +a(g38597 +g38599 +S'luxurious' +p38601 +tp38602 +a(g38599 +g38601 +S'quality' +p38603 +tp38604 +a(g38601 +g38603 +S'of' +p38605 +tp38606 +a(g38603 +g38605 +S'the' +p38607 +tp38608 +a(g38605 +g38607 +S'fabrics' +p38609 +tp38610 +a(g38607 +g38609 +S'was' +p38611 +tp38612 +a(g38609 +g38611 +S'emphasized' +p38613 +tp38614 +a(g38611 +g38613 +S'by' +p38615 +tp38616 +a(g38613 +g38615 +S'the' +p38617 +tp38618 +a(g38615 +g38617 +S'manner' +p38619 +tp38620 +a(g38617 +g38619 +S'in' +p38621 +tp38622 +a(g38619 +g38621 +S'which' +p38623 +tp38624 +a(g38621 +g38623 +S'the' +p38625 +tp38626 +a(g38623 +g38625 +S'oddly' +p38627 +tp38628 +a(g38625 +g38627 +S'shaped' +p38629 +tp38630 +a(g38627 +g38629 +S'patches' +p38631 +tp38632 +a(g38629 +g38631 +S'were' +p38633 +tp38634 +a(g38631 +g38633 +S'pieced' +p38635 +tp38636 +a(g38633 +g38635 +S'together.' +p38637 +tp38638 +a(g38635 +g38637 +S'unlike' +p38639 +tp38640 +a(g38637 +g38639 +S'their' +p38641 +tp38642 +a(g38639 +g38641 +S'earlier' +p38643 +tp38644 +a(g38641 +g38643 +S'counterparts,' +p38645 +tp38646 +a(g38643 +g38645 +S'the' +p38647 +tp38648 +a(g38645 +g38647 +S'seams' +p38649 +tp38650 +a(g38647 +g38649 +S'were' +p38651 +tp38652 +a(g38649 +g38651 +S'sewn' +p38653 +tp38654 +a(g38651 +g38653 +S'in' +p38655 +tp38656 +a(g38653 +g38655 +S'elaborate' +p38657 +tp38658 +a(g38655 +g38657 +S'embroidery' +p38659 +tp38660 +a(g38657 +g38659 +S'stitches.' +p38661 +tp38662 +a(g38659 +g38661 +S'this' +p38663 +tp38664 +a(g38661 +g38663 +S'crazy' +p38665 +tp38666 +a(g38663 +g38665 +S'quilt' +p38667 +tp38668 +a(g38665 +g38667 +S'combines' +p38669 +tp38670 +a(g38667 +g38669 +S'a' +p38671 +tp38672 +a(g38669 +g38671 +S'variety' +p38673 +tp38674 +a(g38671 +g38673 +S'of' +p38675 +tp38676 +a(g38673 +g38675 +S'ornate' +p38677 +tp38678 +a(g38675 +g38677 +S'and' +p38679 +tp38680 +a(g38677 +g38679 +S'colorful' +p38681 +tp38682 +a(g38679 +g38681 +S'fabrics' +p38683 +tp38684 +a(g38681 +g38683 +S'joined' +p38685 +tp38686 +a(g38683 +g38685 +S'by' +p38687 +tp38688 +a(g38685 +g38687 +S'embroidery' +p38689 +tp38690 +a(g38687 +g38689 +S'in' +p38691 +tp38692 +a(g38689 +g38691 +S'contrasting' +p38693 +tp38694 +a(g38691 +g38693 +S'hues.' +p38695 +tp38696 +a(g38693 +g38695 +S'additional' +p38697 +tp38698 +a(g38695 +g38697 +S'ornamentation' +p38699 +tp38700 +a(g38697 +g38699 +S'is' +p38701 +tp38702 +a(g38699 +g38701 +S'provided' +p38703 +tp38704 +a(g38701 +g38703 +S'by' +p38705 +tp38706 +a(g38703 +g38705 +S'designs' +p38707 +tp38708 +a(g38705 +g38707 +S'embroidered' +p38709 +tp38710 +a(g38707 +g38709 +S'on' +p38711 +tp38712 +a(g38709 +g38711 +S'the' +p38713 +tp38714 +a(g38711 +g38713 +S'individual' +p38715 +tp38716 +a(g38713 +g38715 +S'patches.' +p38717 +tp38718 +a(g38715 +g38717 +S'supplementary' +p38719 +tp38720 +a(g38717 +g38719 +S'needlework' +p38721 +tp38722 +a(g38719 +g38721 +S'of' +p38723 +tp38724 +a(g38721 +g38723 +S'this' +p38725 +tp38726 +a(g38723 +g38725 +S'kind' +p38727 +tp38728 +a(g38725 +g38727 +S'became' +p38729 +tp38730 +a(g38727 +g38729 +S'fashionable' +p38731 +tp38732 +a(g38729 +g38731 +S'shortly' +p38733 +tp38734 +a(g38731 +g38733 +S'before' +p38735 +tp38736 +a(g38733 +g38735 +S'1850' +p38737 +tp38738 +a(g38735 +g38737 +S'and' +p38739 +tp38740 +a(g38737 +g38739 +S'soon' +p38741 +tp38742 +a(g38739 +g38741 +S'became' +p38743 +tp38744 +a(g38741 +g38743 +S'a' +p38745 +tp38746 +a(g38743 +g38745 +S'common' +p38747 +tp38748 +a(g38745 +g38747 +S'method' +p38749 +tp38750 +a(g38747 +g38749 +S'of' +p38751 +tp38752 +a(g38749 +g38751 +S'heightening' +p38753 +tp38754 +a(g38751 +g38753 +S'the' +p38755 +tp38756 +a(g38753 +g38755 +S'ornamental' +p38757 +tp38758 +a(g38755 +g38757 +S'quality' +p38759 +tp38760 +a(g38757 +g38759 +S'of' +p38761 +tp38762 +a(g38759 +g38761 +S'quilts.' +p38763 +tp38764 +a(g38761 +g38763 +S'weaving' +p38765 +tp38766 +a(g38763 +g38765 +S'was' +p38767 +tp38768 +a(g38765 +g38767 +S'a' +p38769 +tp38770 +a(g38767 +g38769 +S'craft' +p38771 +tp38772 +a(g38769 +g38771 +S'assigned' +p38773 +tp38774 +a(g38771 +g38773 +S'to' +p38775 +tp38776 +a(g38773 +g38775 +S'shaker' +p38777 +tp38778 +a(g38775 +g38777 +S'women,' +p38779 +tp38780 +a(g38777 +g38779 +S'known' +p38781 +tp38782 +a(g38779 +g38781 +S'as' +p38783 +tp38784 +a(g38781 +g38783 +S'"sisters."' +p38785 +tp38786 +a(g38783 +g38785 +S'they' +p38787 +tp38788 +a(g38785 +g38787 +S'produced' +p38789 +tp38790 +a(g38787 +g38789 +S'a' +p38791 +tp38792 +a(g38789 +g38791 +S'variety' +p38793 +tp38794 +a(g38791 +g38793 +S'of' +p38795 +tp38796 +a(g38793 +g38795 +S'fabrics' +p38797 +tp38798 +a(g38795 +g38797 +S'such' +p38799 +tp38800 +a(g38797 +g38799 +S'as' +p38801 +tp38802 +a(g38799 +g38801 +S'woolens,' +p38803 +tp38804 +a(g38801 +g38803 +S'cottons,' +p38805 +tp38806 +a(g38803 +g38805 +S'linens,' +p38807 +tp38808 +a(g38805 +g38807 +S'and' +p38809 +tp38810 +a(g38807 +g38809 +S'silk.' +p38811 +tp38812 +a(g38809 +g38811 +S'although' +p38813 +tp38814 +a(g38811 +g38813 +S'made' +p38815 +tp38816 +a(g38813 +g38815 +S'primarily' +p38817 +tp38818 +a(g38815 +g38817 +S'for' +p38819 +tp38820 +a(g38817 +g38819 +S'use' +p38821 +tp38822 +a(g38819 +g38821 +S'within' +p38823 +tp38824 +a(g38821 +g38823 +S'the' +p38825 +tp38826 +a(g38823 +g38825 +S'community,' +p38827 +tp38828 +a(g38825 +g38827 +S'shaker' +p38829 +tp38830 +a(g38827 +g38829 +S'fabrics' +p38831 +tp38832 +a(g38829 +g38831 +S'were' +p38833 +tp38834 +a(g38831 +g38833 +S'sold' +p38835 +tp38836 +a(g38833 +g38835 +S'to' +p38837 +tp38838 +a(g38835 +g38837 +S'the' +p38839 +tp38840 +a(g38837 +g38839 +S'outside' +p38841 +tp38842 +a(g38839 +g38841 +S'world' +p38843 +tp38844 +a(g38841 +g38843 +S'as' +p38845 +tp38846 +a(g38843 +g38845 +S'well.' +p38847 +tp38848 +a(g38845 +g38847 +S'shakers' +p38849 +tp38850 +a(g38847 +g38849 +S'usually' +p38851 +tp38852 +a(g38849 +g38851 +S'shunned' +p38853 +tp38854 +a(g38851 +g38853 +S'decorative' +p38855 +tp38856 +a(g38853 +g38855 +S'designs,' +p38857 +tp38858 +a(g38855 +g38857 +S'but' +p38859 +tp38860 +a(g38857 +g38859 +S'they' +p38861 +tp38862 +a(g38859 +g38861 +S'were' +p38863 +tp38864 +a(g38861 +g38863 +S'not' +p38865 +tp38866 +a(g38863 +g38865 +S'opposed' +p38867 +tp38868 +a(g38865 +g38867 +S'to' +p38869 +tp38870 +a(g38867 +g38869 +S'the' +p38871 +tp38872 +a(g38869 +g38871 +S'restrained' +p38873 +tp38874 +a(g38871 +g38873 +S'geometric' +p38875 +tp38876 +a(g38873 +g38875 +S'patterns' +p38877 +tp38878 +a(g38875 +g38877 +S'that' +p38879 +tp38880 +a(g38877 +g38879 +S'were' +p38881 +tp38882 +a(g38879 +g38881 +S'readily' +p38883 +tp38884 +a(g38881 +g38883 +S'produced' +p38885 +tp38886 +a(g38883 +g38885 +S'on' +p38887 +tp38888 +a(g38885 +g38887 +S'the' +p38889 +tp38890 +a(g38887 +g38889 +S'loom.' +p38891 +tp38892 +a(g38889 +g38891 +S'by' +p38893 +tp38894 +a(g38891 +g38893 +S'incorporating' +p38895 +tp38896 +a(g38893 +g38895 +S'three' +p38897 +tp38898 +a(g38895 +g38897 +S'colors' +p38899 +tp38900 +a(g38897 +g38899 +S'--' +p38901 +tp38902 +a(g38899 +g38901 +S'blue,' +p38903 +tp38904 +a(g38901 +g38903 +S'tan,' +p38905 +tp38906 +a(g38903 +g38905 +S'and' +p38907 +tp38908 +a(g38905 +g38907 +S'white' +p38909 +tp38910 +a(g38907 +g38909 +S'in' +p38911 +tp38912 +a(g38909 +g38911 +S'these' +p38913 +tp38914 +a(g38911 +g38913 +S'pieces' +p38915 +tp38916 +a(g38913 +g38915 +S'--' +p38917 +tp38918 +a(g38915 +g38917 +S'designs' +p38919 +tp38920 +a(g38917 +g38919 +S'could' +p38921 +tp38922 +a(g38919 +g38921 +S'be' +p38923 +tp38924 +a(g38921 +g38923 +S'woven' +p38925 +tp38926 +a(g38923 +g38925 +S'that' +p38927 +tp38928 +a(g38925 +g38927 +S'expressed' +p38929 +tp38930 +a(g38927 +g38929 +S'the' +p38931 +tp38932 +a(g38929 +g38931 +S'shaker' +p38933 +tp38934 +a(g38931 +g38933 +S'appreciation' +p38935 +tp38936 +a(g38933 +g38935 +S'for' +p38937 +tp38938 +a(g38935 +g38937 +S'pattern' +p38939 +tp38940 +a(g38937 +g38939 +S'and' +p38941 +tp38942 +a(g38939 +g38941 +S'color.' +p38943 +tp38944 +a(g38941 +g38943 +S'this' +p38945 +tp38946 +a(g38943 +g38945 +S'is' +p38947 +tp38948 +a(g38945 +g38947 +S'called' +p38949 +tp38950 +a(g38947 +g38949 +S'a' +p38951 +tp38952 +a(g38949 +g38951 +S'"poke"' +p38953 +tp38954 +a(g38951 +g38953 +S'bonnet.' +p38955 +tp38956 +a(g38953 +g38955 +S'the' +p38957 +tp38958 +a(g38955 +g38957 +S'word' +p38959 +tp38960 +a(g38957 +g38959 +S'"poke"' +p38961 +tp38962 +a(g38959 +g38961 +S'refers' +p38963 +tp38964 +a(g38961 +g38963 +S'to' +p38965 +tp38966 +a(g38963 +g38965 +S'the' +p38967 +tp38968 +a(g38965 +g38967 +S'fact' +p38969 +tp38970 +a(g38967 +g38969 +S'that' +p38971 +tp38972 +a(g38969 +g38971 +S'there' +p38973 +tp38974 +a(g38971 +g38973 +S'is' +p38975 +tp38976 +a(g38973 +g38975 +S'room' +p38977 +tp38978 +a(g38975 +g38977 +S'at' +p38979 +tp38980 +a(g38977 +g38979 +S'the' +p38981 +tp38982 +a(g38979 +g38981 +S'back' +p38983 +tp38984 +a(g38981 +g38983 +S'for' +p38985 +tp38986 +a(g38983 +g38985 +S'the' +p38987 +tp38988 +a(g38985 +g38987 +S'hair' +p38989 +tp38990 +a(g38987 +g38989 +S'to' +p38991 +tp38992 +a(g38989 +g38991 +S'be' +p38993 +tp38994 +a(g38991 +g38993 +S'poked' +p38995 +tp38996 +a(g38993 +g38995 +S'up' +p38997 +tp38998 +a(g38995 +g38997 +S'inside' +p38999 +tp39000 +a(g38997 +g38999 +S'the' +p39001 +tp39002 +a(g38999 +g39001 +S'bonnet' +p39003 +tp39004 +a(g39001 +g39003 +S'so' +p39005 +tp39006 +a(g39003 +g39005 +S'that' +p39007 +tp39008 +a(g39005 +g39007 +S'the' +p39009 +tp39010 +a(g39007 +g39009 +S'hairdo' +p39011 +tp39012 +a(g39009 +g39011 +S'was' +p39013 +tp39014 +a(g39011 +g39013 +S'completely' +p39015 +tp39016 +a(g39013 +g39015 +S'covered.' +p39017 +tp39018 +a(g39015 +g39017 +S'dated' +p39019 +tp39020 +a(g39017 +g39019 +S'from' +p39021 +tp39022 +a(g39019 +g39021 +S'the' +p39023 +tp39024 +a(g39021 +g39023 +S'1840s,' +p39025 +tp39026 +a(g39023 +g39025 +S'the' +p39027 +tp39028 +a(g39025 +g39027 +S'bonnet' +p39029 +tp39030 +a(g39027 +g39029 +S'is' +p39031 +tp39032 +a(g39029 +g39031 +S'victorian' +p39033 +tp39034 +a(g39031 +g39033 +S'in' +p39035 +tp39036 +a(g39033 +g39035 +S'style.' +p39037 +tp39038 +a(g39035 +g39037 +S'the' +p39039 +tp39040 +a(g39037 +g39039 +S'victorian' +p39041 +tp39042 +a(g39039 +g39041 +S'age' +p39043 +tp39044 +a(g39041 +g39043 +S'corresponds' +p39045 +tp39046 +a(g39043 +g39045 +S'to' +p39047 +tp39048 +a(g39045 +g39047 +S'the' +p39049 +tp39050 +a(g39047 +g39049 +S'reign' +p39051 +tp39052 +a(g39049 +g39051 +S'of' +p39053 +tp39054 +a(g39051 +g39053 +S"england's" +p39055 +tp39056 +a(g39053 +g39055 +S'queen' +p39057 +tp39058 +a(g39055 +g39057 +S'victoria.' +p39059 +tp39060 +a(g39057 +g39059 +S'victorianism,' +p39061 +tp39062 +a(g39059 +g39061 +S'in' +p39063 +tp39064 +a(g39061 +g39063 +S'general,' +p39065 +tp39066 +a(g39063 +g39065 +S'fostered' +p39067 +tp39068 +a(g39065 +g39067 +S'certain' +p39069 +tp39070 +a(g39067 +g39069 +S'attitudes' +p39071 +tp39072 +a(g39069 +g39071 +S'about' +p39073 +tp39074 +a(g39071 +g39073 +S'respectability,' +p39075 +tp39076 +a(g39073 +g39075 +S'particularly' +p39077 +tp39078 +a(g39075 +g39077 +S'with' +p39079 +tp39080 +a(g39077 +g39079 +S'regard' +p39081 +tp39082 +a(g39079 +g39081 +S'to' +p39083 +tp39084 +a(g39081 +g39083 +S'the' +p39085 +tp39086 +a(g39083 +g39085 +S'behavior' +p39087 +tp39088 +a(g39085 +g39087 +S'of' +p39089 +tp39090 +a(g39087 +g39089 +S'women.' +p39091 +tp39092 +a(g39089 +g39091 +S'this' +p39093 +tp39094 +a(g39091 +g39093 +S'bonnet,' +p39095 +tp39096 +a(g39093 +g39095 +S'fitting' +p39097 +tp39098 +a(g39095 +g39097 +S'down' +p39099 +tp39100 +a(g39097 +g39099 +S'over' +p39101 +tp39102 +a(g39099 +g39101 +S'the' +p39103 +tp39104 +a(g39101 +g39103 +S'sides' +p39105 +tp39106 +a(g39103 +g39105 +S'of' +p39107 +tp39108 +a(g39105 +g39107 +S'the' +p39109 +tp39110 +a(g39107 +g39109 +S'face,' +p39111 +tp39112 +a(g39109 +g39111 +S'was' +p39113 +tp39114 +a(g39111 +g39113 +S'intended' +p39115 +tp39116 +a(g39113 +g39115 +S'to' +p39117 +tp39118 +a(g39115 +g39117 +S'shield' +p39119 +tp39120 +a(g39117 +g39119 +S'the' +p39121 +tp39122 +a(g39119 +g39121 +S'wearer' +p39123 +tp39124 +a(g39121 +g39123 +S'from' +p39125 +tp39126 +a(g39123 +g39125 +S'the' +p39127 +tp39128 +a(g39125 +g39127 +S'gaze' +p39129 +tp39130 +a(g39127 +g39129 +S'of' +p39131 +tp39132 +a(g39129 +g39131 +S'strangers.' +p39133 +tp39134 +a(g39131 +g39133 +S'this' +p39135 +tp39136 +a(g39133 +g39135 +S'ecclesiastical' +p39137 +tp39138 +a(g39135 +g39137 +S'vestment' +p39139 +tp39140 +a(g39137 +g39139 +S'was' +p39141 +tp39142 +a(g39139 +g39141 +S'made' +p39143 +tp39144 +a(g39141 +g39143 +S'from' +p39145 +tp39146 +a(g39143 +g39145 +S'a' +p39147 +tp39148 +a(g39145 +g39147 +S'chinese' +p39149 +tp39150 +a(g39147 +g39149 +S'embroidered,' +p39151 +tp39152 +a(g39149 +g39151 +S'red' +p39153 +tp39154 +a(g39151 +g39153 +S'silk' +p39155 +tp39156 +a(g39153 +g39155 +S'shawl' +p39157 +tp39158 +a(g39155 +g39157 +S'that' +p39159 +tp39160 +a(g39157 +g39159 +S'was' +p39161 +tp39162 +a(g39159 +g39161 +S'probably' +p39163 +tp39164 +a(g39161 +g39163 +S'brought' +p39165 +tp39166 +a(g39163 +g39165 +S'across' +p39167 +tp39168 +a(g39165 +g39167 +S'the' +p39169 +tp39170 +a(g39167 +g39169 +S'pacific' +p39171 +tp39172 +a(g39169 +g39171 +S'on' +p39173 +tp39174 +a(g39171 +g39173 +S'a' +p39175 +tp39176 +a(g39173 +g39175 +S'spanish' +p39177 +tp39178 +a(g39175 +g39177 +S'galleon' +p39179 +tp39180 +a(g39177 +g39179 +S'to' +p39181 +tp39182 +a(g39179 +g39181 +S'acapulco,' +p39183 +tp39184 +a(g39181 +g39183 +S'mexico,' +p39185 +tp39186 +a(g39183 +g39185 +S'and' +p39187 +tp39188 +a(g39185 +g39187 +S'then' +p39189 +tp39190 +a(g39187 +g39189 +S'shipped' +p39191 +tp39192 +a(g39189 +g39191 +S'to' +p39193 +tp39194 +a(g39191 +g39193 +S'california.' +p39195 +tp39196 +a(g39193 +g39195 +S'around' +p39197 +tp39198 +a(g39195 +g39197 +S'1890,' +p39199 +tp39200 +a(g39197 +g39199 +S'an' +p39201 +tp39202 +a(g39199 +g39201 +S'indian' +p39203 +tp39204 +a(g39201 +g39203 +S'woman' +p39205 +tp39206 +a(g39203 +g39205 +S'at' +p39207 +tp39208 +a(g39205 +g39207 +S'the' +p39209 +tp39210 +a(g39207 +g39209 +S'mission' +p39211 +tp39212 +a(g39209 +g39211 +S'of' +p39213 +tp39214 +a(g39211 +g39213 +S'san' +p39215 +tp39216 +a(g39213 +g39215 +S'buenaventura' +p39217 +tp39218 +a(g39215 +g39217 +S'made' +p39219 +tp39220 +a(g39217 +g39219 +S'it' +p39221 +tp39222 +a(g39219 +g39221 +S'into' +p39223 +tp39224 +a(g39221 +g39223 +S'a' +p39225 +tp39226 +a(g39223 +g39225 +S'priestly' +p39227 +tp39228 +a(g39225 +g39227 +S'garment,' +p39229 +tp39230 +a(g39227 +g39229 +S'binding' +p39231 +tp39232 +a(g39229 +g39231 +S'it' +p39233 +tp39234 +a(g39231 +g39233 +S'with' +p39235 +tp39236 +a(g39233 +g39235 +S'gold' +p39237 +tp39238 +a(g39235 +g39237 +S'braid.' +p39239 +tp39240 +a(g39237 +g39239 +S'intended' +p39241 +tp39242 +a(g39239 +g39241 +S'for' +p39243 +tp39244 +a(g39241 +g39243 +S'a' +p39245 +tp39246 +a(g39243 +g39245 +S'seven-year-old' +p39247 +tp39248 +a(g39245 +g39247 +S'girl,' +p39249 +tp39250 +a(g39247 +g39249 +S'this' +p39251 +tp39252 +a(g39249 +g39251 +S'coat' +p39253 +tp39254 +a(g39251 +g39253 +S'resembles' +p39255 +tp39256 +a(g39253 +g39255 +S'adult' +p39257 +tp39258 +a(g39255 +g39257 +S"women's" +p39259 +tp39260 +a(g39257 +g39259 +S'fashions' +p39261 +tp39262 +a(g39259 +g39261 +S'of' +p39263 +tp39264 +a(g39261 +g39263 +S'the' +p39265 +tp39266 +a(g39263 +g39265 +S'1860s.' +p39267 +tp39268 +a(g39265 +g39267 +S'many' +p39269 +tp39270 +a(g39267 +g39269 +S'of' +p39271 +tp39272 +a(g39269 +g39271 +S'these' +p39273 +tp39274 +a(g39271 +g39273 +S'fashions' +p39275 +tp39276 +a(g39273 +g39275 +S'were' +p39277 +tp39278 +a(g39275 +g39277 +S'inspired' +p39279 +tp39280 +a(g39277 +g39279 +S'by' +p39281 +tp39282 +a(g39279 +g39281 +S'theatrical' +p39283 +tp39284 +a(g39281 +g39283 +S'costumes,' +p39285 +tp39286 +a(g39283 +g39285 +S'as' +p39287 +tp39288 +a(g39285 +g39287 +S'is' +p39289 +tp39290 +a(g39287 +g39289 +S'suggested' +p39291 +tp39292 +a(g39289 +g39291 +S'here' +p39293 +tp39294 +a(g39291 +g39293 +S'by' +p39295 +tp39296 +a(g39293 +g39295 +S'the' +p39297 +tp39298 +a(g39295 +g39297 +S'style' +p39299 +tp39300 +a(g39297 +g39299 +S'of' +p39301 +tp39302 +a(g39299 +g39301 +S'the' +p39303 +tp39304 +a(g39301 +g39303 +S'cape.' +p39305 +tp39306 +a(g39303 +g39305 +S'the' +p39307 +tp39308 +a(g39305 +g39307 +S'coat' +p39309 +tp39310 +a(g39307 +g39309 +S'is' +p39311 +tp39312 +a(g39309 +g39311 +S'made' +p39313 +tp39314 +a(g39311 +g39313 +S'of' +p39315 +tp39316 +a(g39313 +g39315 +S'dove-gray' +p39317 +tp39318 +a(g39315 +g39317 +S'cashmere' +p39319 +tp39320 +a(g39317 +g39319 +S'wool,' +p39321 +tp39322 +a(g39319 +g39321 +S'trimmed' +p39323 +tp39324 +a(g39321 +g39323 +S'with' +p39325 +tp39326 +a(g39323 +g39325 +S'red' +p39327 +tp39328 +a(g39325 +g39327 +S'velvet' +p39329 +tp39330 +a(g39327 +g39329 +S'ribbon.' +p39331 +tp39332 +a(g39329 +g39331 +S'the' +p39333 +tp39334 +a(g39331 +g39333 +S'coat' +p39335 +tp39336 +a(g39333 +g39335 +S'is' +p39337 +tp39338 +a(g39335 +g39337 +S'fastened' +p39339 +tp39340 +a(g39337 +g39339 +S'down' +p39341 +tp39342 +a(g39339 +g39341 +S'the' +p39343 +tp39344 +a(g39341 +g39343 +S'front' +p39345 +tp39346 +a(g39343 +g39345 +S'with' +p39347 +tp39348 +a(g39345 +g39347 +S'hooks' +p39349 +tp39350 +a(g39347 +g39349 +S'and' +p39351 +tp39352 +a(g39349 +g39351 +S'eyes,' +p39353 +tp39354 +a(g39351 +g39353 +S'and' +p39355 +tp39356 +a(g39353 +g39355 +S'the' +p39357 +tp39358 +a(g39355 +g39357 +S'red' +p39359 +tp39360 +a(g39357 +g39359 +S'satin' +p39361 +tp39362 +a(g39359 +g39361 +S'buttons' +p39363 +tp39364 +a(g39361 +g39363 +S'are' +p39365 +tp39366 +a(g39363 +g39365 +S'tacked' +p39367 +tp39368 +a(g39365 +g39367 +S'on' +p39369 +tp39370 +a(g39367 +g39369 +S'for' +p39371 +tp39372 +a(g39369 +g39371 +S'decoration.' +p39373 +tp39374 +a(g39371 +g39373 +S'the' +p39375 +tp39376 +a(g39373 +g39375 +S"coat's" +p39377 +tp39378 +a(g39375 +g39377 +S'lining' +p39379 +tp39380 +a(g39377 +g39379 +S'is' +p39381 +tp39382 +a(g39379 +g39381 +S'hand-quilted,' +p39383 +tp39384 +a(g39381 +g39383 +S'white' +p39385 +tp39386 +a(g39383 +g39385 +S'china' +p39387 +tp39388 +a(g39385 +g39387 +S'silk.' +p39389 +tp39390 +a(g39387 +g39389 +S'like' +p39391 +tp39392 +a(g39389 +g39391 +S'elaborately' +p39393 +tp39394 +a(g39391 +g39393 +S'decorated' +p39395 +tp39396 +a(g39393 +g39395 +S'pottery' +p39397 +tp39398 +a(g39395 +g39397 +S'and' +p39399 +tp39400 +a(g39397 +g39399 +S'jacquard' +p39401 +tp39402 +a(g39399 +g39401 +S'coverlets,' +p39403 +tp39404 +a(g39401 +g39403 +S'"show' +p39405 +tp39406 +a(g39403 +g39405 +S'towels"' +p39407 +tp39408 +a(g39405 +g39407 +S'were' +p39409 +tp39410 +a(g39407 +g39409 +S'made' +p39411 +tp39412 +a(g39409 +g39411 +S'primarily' +p39413 +tp39414 +a(g39411 +g39413 +S'for' +p39415 +tp39416 +a(g39413 +g39415 +S'display' +p39417 +tp39418 +a(g39415 +g39417 +S'rather' +p39419 +tp39420 +a(g39417 +g39419 +S'than' +p39421 +tp39422 +a(g39419 +g39421 +S'for' +p39423 +tp39424 +a(g39421 +g39423 +S'use.' +p39425 +tp39426 +a(g39423 +g39425 +S'they' +p39427 +tp39428 +a(g39425 +g39427 +S'were' +p39429 +tp39430 +a(g39427 +g39429 +S'often' +p39431 +tp39432 +a(g39429 +g39431 +S'hung' +p39433 +tp39434 +a(g39431 +g39433 +S'as' +p39435 +tp39436 +a(g39433 +g39435 +S'decorations' +p39437 +tp39438 +a(g39435 +g39437 +S'on' +p39439 +tp39440 +a(g39437 +g39439 +S'doors' +p39441 +tp39442 +a(g39439 +g39441 +S'or' +p39443 +tp39444 +a(g39441 +g39443 +S'were' +p39445 +tp39446 +a(g39443 +g39445 +S'used' +p39447 +tp39448 +a(g39445 +g39447 +S'to' +p39449 +tp39450 +a(g39447 +g39449 +S'hide' +p39451 +tp39452 +a(g39449 +g39451 +S'more' +p39453 +tp39454 +a(g39451 +g39453 +S'functional' +p39455 +tp39456 +a(g39453 +g39455 +S'towels' +p39457 +tp39458 +a(g39455 +g39457 +S'when' +p39459 +tp39460 +a(g39457 +g39459 +S'guests' +p39461 +tp39462 +a(g39459 +g39461 +S'appeared.' +p39463 +tp39464 +a(g39461 +g39463 +S'many' +p39465 +tp39466 +a(g39463 +g39465 +S'show' +p39467 +tp39468 +a(g39465 +g39467 +S'towels' +p39469 +tp39470 +a(g39467 +g39469 +S'were' +p39471 +tp39472 +a(g39469 +g39471 +S'made' +p39473 +tp39474 +a(g39471 +g39473 +S'by' +p39475 +tp39476 +a(g39473 +g39475 +S'young' +p39477 +tp39478 +a(g39475 +g39477 +S'girls' +p39479 +tp39480 +a(g39477 +g39479 +S'in' +p39481 +tp39482 +a(g39479 +g39481 +S'anticipation' +p39483 +tp39484 +a(g39481 +g39483 +S'of' +p39485 +tp39486 +a(g39483 +g39485 +S'marriage.' +p39487 +tp39488 +a(g39485 +g39487 +S'show' +p39489 +tp39490 +a(g39487 +g39489 +S'towels' +p39491 +tp39492 +a(g39489 +g39491 +S'were' +p39493 +tp39494 +a(g39491 +g39493 +S'woven' +p39495 +tp39496 +a(g39493 +g39495 +S'of' +p39497 +tp39498 +a(g39495 +g39497 +S'flax' +p39499 +tp39500 +a(g39497 +g39499 +S'and' +p39501 +tp39502 +a(g39499 +g39501 +S'carefully' +p39503 +tp39504 +a(g39501 +g39503 +S'embroidered.' +p39505 +tp39506 +a(g39503 +g39505 +S'this' +p39507 +tp39508 +a(g39505 +g39507 +S'example' +p39509 +tp39510 +a(g39507 +g39509 +S'is' +p39511 +tp39512 +a(g39509 +g39511 +S'linen' +p39513 +tp39514 +a(g39511 +g39513 +S'decorated' +p39515 +tp39516 +a(g39513 +g39515 +S'with' +p39517 +tp39518 +a(g39515 +g39517 +S'traditional' +p39519 +tp39520 +a(g39517 +g39519 +S'flower' +p39521 +tp39522 +a(g39519 +g39521 +S'and' +p39523 +tp39524 +a(g39521 +g39523 +S'bird' +p39525 +tp39526 +a(g39523 +g39525 +S'motifs.' +p39527 +tp39528 +a(g39525 +g39527 +S'the' +p39529 +tp39530 +a(g39527 +g39529 +S'inscription,' +p39531 +tp39532 +a(g39529 +g39531 +S'worked' +p39533 +tp39534 +a(g39531 +g39533 +S'in' +p39535 +tp39536 +a(g39533 +g39535 +S'cross-stitch,' +p39537 +tp39538 +a(g39535 +g39537 +S'reads:' +p39539 +tp39540 +a(g39537 +g39539 +S'"samuel' +p39541 +tp39542 +a(g39539 +g39541 +S'l.' +p39543 +tp39544 +a(g39541 +g39543 +S'weaver' +p39545 +tp39546 +a(g39543 +g39545 +S'1838' +p39547 +tp39548 +a(g39545 +g39547 +S'when' +p39549 +tp39550 +a(g39547 +g39549 +S'this' +p39551 +tp39552 +a(g39549 +g39551 +S'you' +p39553 +tp39554 +a(g39551 +g39553 +S'see' +p39555 +tp39556 +a(g39553 +g39555 +S'remember' +p39557 +tp39558 +a(g39555 +g39557 +S'me' +p39559 +tp39560 +a(g39557 +g39559 +S'maria' +p39561 +tp39562 +a(g39559 +g39561 +S'weaver."' +p39563 +tp39564 +a(g39561 +g39563 +S'in' +p39565 +tp39566 +a(g39563 +g39565 +S'1487,' +p39567 +tp39568 +a(g39565 +g39567 +S'the' +p39569 +tp39570 +a(g39567 +g39569 +S'sultan' +p39571 +tp39572 +a(g39569 +g39571 +S'of' +p39573 +tp39574 +a(g39571 +g39573 +S'mamluk' +p39575 +tp39576 +a(g39573 +g39575 +S'egypt' +p39577 +tp39578 +a(g39575 +g39577 +S'sent' +p39579 +tp39580 +a(g39577 +g39579 +S'a' +p39581 +tp39582 +a(g39579 +g39581 +S'gift' +p39583 +tp39584 +a(g39581 +g39583 +S'to' +p39585 +tp39586 +a(g39583 +g39585 +S'lorenzo' +p39587 +tp39588 +a(g39585 +g39587 +S'de’' +p39589 +tp39590 +a(g39587 +g39589 +S'medici' +p39591 +tp39592 +a(g39589 +g39591 +S'of' +p39593 +tp39594 +a(g39591 +g39593 +S'exotic' +p39595 +tp39596 +a(g39593 +g39595 +S'animals' +p39597 +tp39598 +a(g39595 +g39597 +S'and' +p39599 +tp39600 +a(g39597 +g39599 +S'“large' +p39601 +tp39602 +a(g39599 +g39601 +S'vessels' +p39603 +tp39604 +a(g39601 +g39603 +S'of' +p39605 +tp39606 +a(g39603 +g39605 +S'porcelain,' +p39607 +tp39608 +a(g39605 +g39607 +S'the' +p39609 +tp39610 +a(g39607 +g39609 +S'like' +p39611 +tp39612 +a(g39609 +g39611 +S'of' +p39613 +tp39614 +a(g39611 +g39613 +S'which' +p39615 +tp39616 +a(g39613 +g39615 +S'has' +p39617 +tp39618 +a(g39615 +g39617 +S'never' +p39619 +tp39620 +a(g39617 +g39619 +S'been' +p39621 +tp39622 +a(g39619 +g39621 +S'seen.”' +p39623 +tp39624 +a(g39621 +g39623 +S'by' +p39625 +tp39626 +a(g39623 +g39625 +S'the' +p39627 +tp39628 +a(g39625 +g39627 +S'mid' +p39629 +tp39630 +a(g39627 +g39629 +S'1500s,' +p39631 +tp39632 +a(g39629 +g39631 +S'the' +p39633 +tp39634 +a(g39631 +g39633 +S'medici' +p39635 +tp39636 +a(g39633 +g39635 +S'family’s' +p39637 +tp39638 +a(g39635 +g39637 +S'porcelains,' +p39639 +tp39640 +a(g39637 +g39639 +S'most' +p39641 +tp39642 +a(g39639 +g39641 +S'from' +p39643 +tp39644 +a(g39641 +g39643 +S'china,' +p39645 +tp39646 +a(g39643 +g39645 +S'numbered' +p39647 +tp39648 +a(g39645 +g39647 +S'in' +p39649 +tp39650 +a(g39647 +g39649 +S'the' +p39651 +tp39652 +a(g39649 +g39651 +S'hundreds.' +p39653 +tp39654 +a(g39651 +g39653 +S'italian' +p39655 +tp39656 +a(g39653 +g39655 +S'potters' +p39657 +tp39658 +a(g39655 +g39657 +S'were' +p39659 +tp39660 +a(g39657 +g39659 +S'able' +p39661 +tp39662 +a(g39659 +g39661 +S'to' +p39663 +tp39664 +a(g39661 +g39663 +S'create' +p39665 +tp39666 +a(g39663 +g39665 +S'a' +p39667 +tp39668 +a(g39665 +g39667 +S'soft-paste' +p39669 +tp39670 +a(g39667 +g39669 +S'imitation' +p39671 +tp39672 +a(g39669 +g39671 +S'of' +p39673 +tp39674 +a(g39671 +g39673 +S'porcelain,' +p39675 +tp39676 +a(g39673 +g39675 +S'and' +p39677 +tp39678 +a(g39675 +g39677 +S'in' +p39679 +tp39680 +a(g39677 +g39679 +S'1574' +p39681 +tp39682 +a(g39679 +g39681 +S'francesco' +p39683 +tp39684 +a(g39681 +g39683 +S'de’' +p39685 +tp39686 +a(g39683 +g39685 +S'medici' +p39687 +tp39688 +a(g39685 +g39687 +S'established' +p39689 +tp39690 +a(g39687 +g39689 +S'two' +p39691 +tp39692 +a(g39689 +g39691 +S'ceramic' +p39693 +tp39694 +a(g39691 +g39693 +S'workshops' +p39695 +tp39696 +a(g39693 +g39695 +S'in' +p39697 +tp39698 +a(g39695 +g39697 +S'florence' +p39699 +tp39700 +a(g39697 +g39699 +S'to' +p39701 +tp39702 +a(g39699 +g39701 +S'produce' +p39703 +tp39704 +a(g39701 +g39703 +S'these' +p39705 +tp39706 +a(g39703 +g39705 +S'wares.' +p39707 +tp39708 +a(g39705 +g39707 +S'today,' +p39709 +tp39710 +a(g39707 +g39709 +S'some' +p39711 +tp39712 +a(g39709 +g39711 +S'seventy' +p39713 +tp39714 +a(g39711 +g39713 +S'examples' +p39715 +tp39716 +a(g39713 +g39715 +S'of' +p39717 +tp39718 +a(g39715 +g39717 +S'medici' +p39719 +tp39720 +a(g39717 +g39719 +S'porcelains' +p39721 +tp39722 +a(g39719 +g39721 +S'are' +p39723 +tp39724 +a(g39721 +g39723 +S'known,' +p39725 +tp39726 +a(g39723 +g39725 +S'including' +p39727 +tp39728 +a(g39725 +g39727 +S'this' +p39729 +tp39730 +a(g39727 +g39729 +S'flask,' +p39731 +tp39732 +a(g39729 +g39731 +S'possibly' +p39733 +tp39734 +a(g39731 +g39733 +S'used' +p39735 +tp39736 +a(g39733 +g39735 +S'for' +p39737 +tp39738 +a(g39735 +g39737 +S'oil.' +p39739 +tp39740 +a(g39737 +g39739 +S'this' +p39741 +tp39742 +a(g39739 +g39741 +S'ecclesiastical' +p39743 +tp39744 +a(g39741 +g39743 +S'vestment' +p39745 +tp39746 +a(g39743 +g39745 +S'was' +p39747 +tp39748 +a(g39745 +g39747 +S'made' +p39749 +tp39750 +a(g39747 +g39749 +S'from' +p39751 +tp39752 +a(g39749 +g39751 +S'a' +p39753 +tp39754 +a(g39751 +g39753 +S'chinese' +p39755 +tp39756 +a(g39753 +g39755 +S'embroidered,' +p39757 +tp39758 +a(g39755 +g39757 +S'red' +p39759 +tp39760 +a(g39757 +g39759 +S'silk' +p39761 +tp39762 +a(g39759 +g39761 +S'shawl' +p39763 +tp39764 +a(g39761 +g39763 +S'that' +p39765 +tp39766 +a(g39763 +g39765 +S'was' +p39767 +tp39768 +a(g39765 +g39767 +S'probably' +p39769 +tp39770 +a(g39767 +g39769 +S'brought' +p39771 +tp39772 +a(g39769 +g39771 +S'across' +p39773 +tp39774 +a(g39771 +g39773 +S'the' +p39775 +tp39776 +a(g39773 +g39775 +S'pacific' +p39777 +tp39778 +a(g39775 +g39777 +S'on' +p39779 +tp39780 +a(g39777 +g39779 +S'a' +p39781 +tp39782 +a(g39779 +g39781 +S'spanish' +p39783 +tp39784 +a(g39781 +g39783 +S'galleon' +p39785 +tp39786 +a(g39783 +g39785 +S'to' +p39787 +tp39788 +a(g39785 +g39787 +S'acapulco,' +p39789 +tp39790 +a(g39787 +g39789 +S'mexico,' +p39791 +tp39792 +a(g39789 +g39791 +S'and' +p39793 +tp39794 +a(g39791 +g39793 +S'then' +p39795 +tp39796 +a(g39793 +g39795 +S'shipped' +p39797 +tp39798 +a(g39795 +g39797 +S'to' +p39799 +tp39800 +a(g39797 +g39799 +S'california.' +p39801 +tp39802 +a(g39799 +g39801 +S'around' +p39803 +tp39804 +a(g39801 +g39803 +S'1890,' +p39805 +tp39806 +a(g39803 +g39805 +S'an' +p39807 +tp39808 +a(g39805 +g39807 +S'indian' +p39809 +tp39810 +a(g39807 +g39809 +S'woman' +p39811 +tp39812 +a(g39809 +g39811 +S'at' +p39813 +tp39814 +a(g39811 +g39813 +S'the' +p39815 +tp39816 +a(g39813 +g39815 +S'mission' +p39817 +tp39818 +a(g39815 +g39817 +S'of' +p39819 +tp39820 +a(g39817 +g39819 +S'san' +p39821 +tp39822 +a(g39819 +g39821 +S'buenaventura' +p39823 +tp39824 +a(g39821 +g39823 +S'made' +p39825 +tp39826 +a(g39823 +g39825 +S'it' +p39827 +tp39828 +a(g39825 +g39827 +S'into' +p39829 +tp39830 +a(g39827 +g39829 +S'a' +p39831 +tp39832 +a(g39829 +g39831 +S'priestly' +p39833 +tp39834 +a(g39831 +g39833 +S'garment,' +p39835 +tp39836 +a(g39833 +g39835 +S'binding' +p39837 +tp39838 +a(g39835 +g39837 +S'it' +p39839 +tp39840 +a(g39837 +g39839 +S'with' +p39841 +tp39842 +a(g39839 +g39841 +S'gold' +p39843 +tp39844 +a(g39841 +g39843 +S'braid.' +p39845 +tp39846 +a(g39843 +g39845 +S'fractur' +p39847 +tp39848 +a(g39845 +g39847 +S'is' +p39849 +tp39850 +a(g39847 +g39849 +S'a' +p39851 +tp39852 +a(g39849 +g39851 +S'term' +p39853 +tp39854 +a(g39851 +g39853 +S'referring' +p39855 +tp39856 +a(g39853 +g39855 +S'to' +p39857 +tp39858 +a(g39855 +g39857 +S'a' +p39859 +tp39860 +a(g39857 +g39859 +S'style' +p39861 +tp39862 +a(g39859 +g39861 +S'of' +p39863 +tp39864 +a(g39861 +g39863 +S'writing' +p39865 +tp39866 +a(g39863 +g39865 +S'as' +p39867 +tp39868 +a(g39865 +g39867 +S'well' +p39869 +tp39870 +a(g39867 +g39869 +S'at' +p39871 +tp39872 +a(g39869 +g39871 +S'to' +p39873 +tp39874 +a(g39871 +g39873 +S'the' +p39875 +tp39876 +a(g39873 +g39875 +S'illuminated' +p39877 +tp39878 +a(g39875 +g39877 +S'documents' +p39879 +tp39880 +a(g39877 +g39879 +S'on' +p39881 +tp39882 +a(g39879 +g39881 +S'which' +p39883 +tp39884 +a(g39881 +g39883 +S'it' +p39885 +tp39886 +a(g39883 +g39885 +S'was' +p39887 +tp39888 +a(g39885 +g39887 +S'executed.' +p39889 +tp39890 +a(g39887 +g39889 +S'brought' +p39891 +tp39892 +a(g39889 +g39891 +S'to' +p39893 +tp39894 +a(g39891 +g39893 +S'pennsylvania' +p39895 +tp39896 +a(g39893 +g39895 +S'by' +p39897 +tp39898 +a(g39895 +g39897 +S'german' +p39899 +tp39900 +a(g39897 +g39899 +S'scribes,' +p39901 +tp39902 +a(g39899 +g39901 +S'fractur' +p39903 +tp39904 +a(g39901 +g39903 +S'was' +p39905 +tp39906 +a(g39903 +g39905 +S'an' +p39907 +tp39908 +a(g39905 +g39907 +S'art' +p39909 +tp39910 +a(g39907 +g39909 +S'form' +p39911 +tp39912 +a(g39909 +g39911 +S'peculiar' +p39913 +tp39914 +a(g39911 +g39913 +S'to' +p39915 +tp39916 +a(g39913 +g39915 +S'the' +p39917 +tp39918 +a(g39915 +g39917 +S'pennsylvania' +p39919 +tp39920 +a(g39917 +g39919 +S'germans.' +p39921 +tp39922 +a(g39919 +g39921 +S'fractur' +p39923 +tp39924 +a(g39921 +g39923 +S'writing' +p39925 +tp39926 +a(g39923 +g39925 +S'was' +p39927 +tp39928 +a(g39925 +g39927 +S'based' +p39929 +tp39930 +a(g39927 +g39929 +S'upon' +p39931 +tp39932 +a(g39929 +g39931 +S'the' +p39933 +tp39934 +a(g39931 +g39933 +S'sixteenth-century' +p39935 +tp39936 +a(g39933 +g39935 +S'fractur' +p39937 +tp39938 +a(g39935 +g39937 +S'typeface,' +p39939 +tp39940 +a(g39937 +g39939 +S'a' +p39941 +tp39942 +a(g39939 +g39941 +S'loose' +p39943 +tp39944 +a(g39941 +g39943 +S'imitation' +p39945 +tp39946 +a(g39943 +g39945 +S'of' +p39947 +tp39948 +a(g39945 +g39947 +S'bold,' +p39949 +tp39950 +a(g39947 +g39949 +S'rigid' +p39951 +tp39952 +a(g39949 +g39951 +S'gothic' +p39953 +tp39954 +a(g39951 +g39953 +S'lettering.' +p39955 +tp39956 +a(g39953 +g39955 +S'in' +p39957 +tp39958 +a(g39955 +g39957 +S'the' +p39959 +tp39960 +a(g39957 +g39959 +S'german' +p39961 +tp39962 +a(g39959 +g39961 +S'manner,' +p39963 +tp39964 +a(g39961 +g39963 +S'fractur' +p39965 +tp39966 +a(g39963 +g39965 +S'painting' +p39967 +tp39968 +a(g39965 +g39967 +S'followed' +p39969 +tp39970 +a(g39967 +g39969 +S'the' +p39971 +tp39972 +a(g39969 +g39971 +S'tradition' +p39973 +tp39974 +a(g39971 +g39973 +S'of' +p39975 +tp39976 +a(g39973 +g39975 +S'medieval' +p39977 +tp39978 +a(g39975 +g39977 +S'manuscript' +p39979 +tp39980 +a(g39977 +g39979 +S'illumination.' +p39981 +tp39982 +a(g39979 +g39981 +S'the' +p39983 +tp39984 +a(g39981 +g39983 +S'fractur' +p39985 +tp39986 +a(g39983 +g39985 +S'writer' +p39987 +tp39988 +a(g39985 +g39987 +S'held' +p39989 +tp39990 +a(g39987 +g39989 +S'several' +p39991 +tp39992 +a(g39989 +g39991 +S'positions' +p39993 +tp39994 +a(g39991 +g39993 +S'within' +p39995 +tp39996 +a(g39993 +g39995 +S'the' +p39997 +tp39998 +a(g39995 +g39997 +S'pennsylvania' +p39999 +tp40000 +a(g39997 +g39999 +S'german' +p40001 +tp40002 +a(g39999 +g40001 +S'community.' +p40003 +tp40004 +a(g40001 +g40003 +S'as' +p40005 +tp40006 +a(g40003 +g40005 +S'the' +p40007 +tp40008 +a(g40005 +g40007 +S'representative' +p40009 +tp40010 +a(g40007 +g40009 +S'of' +p40011 +tp40012 +a(g40009 +g40011 +S'learning,' +p40013 +tp40014 +a(g40011 +g40013 +S'he' +p40015 +tp40016 +a(g40013 +g40015 +S'was' +p40017 +tp40018 +a(g40015 +g40017 +S'often' +p40019 +tp40020 +a(g40017 +g40019 +S'the' +p40021 +tp40022 +a(g40019 +g40021 +S'schoolmaster' +p40023 +tp40024 +a(g40021 +g40023 +S'as' +p40025 +tp40026 +a(g40023 +g40025 +S'well' +p40027 +tp40028 +a(g40025 +g40027 +S'as' +p40029 +tp40030 +a(g40027 +g40029 +S'clergyman.' +p40031 +tp40032 +a(g40029 +g40031 +S'with' +p40033 +tp40034 +a(g40031 +g40033 +S'his' +p40035 +tp40036 +a(g40033 +g40035 +S'skill' +p40037 +tp40038 +a(g40035 +g40037 +S'in' +p40039 +tp40040 +a(g40037 +g40039 +S'drawing' +p40041 +tp40042 +a(g40039 +g40041 +S'and' +p40043 +tp40044 +a(g40041 +g40043 +S'writing,' +p40045 +tp40046 +a(g40043 +g40045 +S'he' +p40047 +tp40048 +a(g40045 +g40047 +S'performed' +p40049 +tp40050 +a(g40047 +g40049 +S'such' +p40051 +tp40052 +a(g40049 +g40051 +S'services' +p40053 +tp40054 +a(g40051 +g40053 +S'as' +p40055 +tp40056 +a(g40053 +g40055 +S'illustrating' +p40057 +tp40058 +a(g40055 +g40057 +S'books' +p40059 +tp40060 +a(g40057 +g40059 +S'and' +p40061 +tp40062 +a(g40059 +g40061 +S'hymnals' +p40063 +tp40064 +a(g40061 +g40063 +S'and' +p40065 +tp40066 +a(g40063 +g40065 +S'drawing' +p40067 +tp40068 +a(g40065 +g40067 +S'up' +p40069 +tp40070 +a(g40067 +g40069 +S'important' +p40071 +tp40072 +a(g40069 +g40071 +S'documents.' +p40073 +tp40074 +a(g40071 +g40073 +S'this' +p40075 +tp40076 +a(g40073 +g40075 +S'fractur' +p40077 +tp40078 +a(g40075 +g40077 +S'is' +p40079 +tp40080 +a(g40077 +g40079 +S'a' +p40081 +tp40082 +a(g40079 +g40081 +S'hymnbook' +p40083 +tp40084 +a(g40081 +g40083 +S'illustraion' +p40085 +tp40086 +a(g40083 +g40085 +S'that' +p40087 +tp40088 +a(g40085 +g40087 +S'commemorates' +p40089 +tp40090 +a(g40087 +g40089 +S'the' +p40091 +tp40092 +a(g40089 +g40091 +S'100th' +p40093 +tp40094 +a(g40091 +g40093 +S'psalm.' +p40095 +tp40096 +a(g40093 +g40095 +S'bold' +p40097 +tp40098 +a(g40095 +g40097 +S'lettering' +p40099 +tp40100 +a(g40097 +g40099 +S'contrasts' +p40101 +tp40102 +a(g40099 +g40101 +S'with' +p40103 +tp40104 +a(g40101 +g40103 +S'lighter,' +p40105 +tp40106 +a(g40103 +g40105 +S'more' +p40107 +tp40108 +a(g40105 +g40107 +S'graceful' +p40109 +tp40110 +a(g40107 +g40109 +S'forms.' +p40111 +tp40112 +a(g40109 +g40111 +S'the' +p40113 +tp40114 +a(g40111 +g40113 +S'decorative' +p40115 +tp40116 +a(g40113 +g40115 +S'motifs' +p40117 +tp40118 +a(g40115 +g40117 +S'of' +p40119 +tp40120 +a(g40117 +g40119 +S'angels,' +p40121 +tp40122 +a(g40119 +g40121 +S'tulips,' +p40123 +tp40124 +a(g40121 +g40123 +S'and' +p40125 +tp40126 +a(g40123 +g40125 +S'stars' +p40127 +tp40128 +a(g40125 +g40127 +S'were' +p40129 +tp40130 +a(g40127 +g40129 +S'hand-drawn' +p40131 +tp40132 +a(g40129 +g40131 +S'and' +p40133 +tp40134 +a(g40131 +g40133 +S'colored.' +p40135 +tp40136 +a(g40133 +g40135 +S'sgraffito' +p40137 +tp40138 +a(g40135 +g40137 +S'and' +p40139 +tp40140 +a(g40137 +g40139 +S'slip' +p40141 +tp40142 +a(g40139 +g40141 +S'decoration' +p40143 +tp40144 +a(g40141 +g40143 +S'are' +p40145 +tp40146 +a(g40143 +g40145 +S'expertly' +p40147 +tp40148 +a(g40145 +g40147 +S'combined' +p40149 +tp40150 +a(g40147 +g40149 +S'on' +p40151 +tp40152 +a(g40149 +g40151 +S'this' +p40153 +tp40154 +a(g40151 +g40153 +S'pennsylvania' +p40155 +tp40156 +a(g40153 +g40155 +S'german' +p40157 +tp40158 +a(g40155 +g40157 +S'plate.' +p40159 +tp40160 +a(g40157 +g40159 +S'the' +p40161 +tp40162 +a(g40159 +g40161 +S'design,' +p40163 +tp40164 +a(g40161 +g40163 +S'a' +p40165 +tp40166 +a(g40163 +g40165 +S'central,' +p40167 +tp40168 +a(g40165 +g40167 +S'eight-pointed' +p40169 +tp40170 +a(g40167 +g40169 +S'star' +p40171 +tp40172 +a(g40169 +g40171 +S'surrounded' +p40173 +tp40174 +a(g40171 +g40173 +S'by' +p40175 +tp40176 +a(g40173 +g40175 +S'a' +p40177 +tp40178 +a(g40175 +g40177 +S'balanced' +p40179 +tp40180 +a(g40177 +g40179 +S'arrangement' +p40181 +tp40182 +a(g40179 +g40181 +S'of' +p40183 +tp40184 +a(g40181 +g40183 +S'tulip' +p40185 +tp40186 +a(g40183 +g40185 +S'sprays' +p40187 +tp40188 +a(g40185 +g40187 +S'and' +p40189 +tp40190 +a(g40187 +g40189 +S'geometric' +p40191 +tp40192 +a(g40189 +g40191 +S'motifs,' +p40193 +tp40194 +a(g40191 +g40193 +S'is' +p40195 +tp40196 +a(g40193 +g40195 +S'delineated' +p40197 +tp40198 +a(g40195 +g40197 +S'by' +p40199 +tp40200 +a(g40197 +g40199 +S'firmly' +p40201 +tp40202 +a(g40199 +g40201 +S'drawn' +p40203 +tp40204 +a(g40201 +g40203 +S'sgraffito' +p40205 +tp40206 +a(g40203 +g40205 +S'lines.' +p40207 +tp40208 +a(g40205 +g40207 +S'in' +p40209 +tp40210 +a(g40207 +g40209 +S'addition,' +p40211 +tp40212 +a(g40209 +g40211 +S'the' +p40213 +tp40214 +a(g40211 +g40213 +S'potter' +p40215 +tp40216 +a(g40213 +g40215 +S'has' +p40217 +tp40218 +a(g40215 +g40217 +S'scraped' +p40219 +tp40220 +a(g40217 +g40219 +S'away' +p40221 +tp40222 +a(g40219 +g40221 +S'areas' +p40223 +tp40224 +a(g40221 +g40223 +S'of' +p40225 +tp40226 +a(g40223 +g40225 +S'the' +p40227 +tp40228 +a(g40225 +g40227 +S'yellow' +p40229 +tp40230 +a(g40227 +g40229 +S'slip' +p40231 +tp40232 +a(g40229 +g40231 +S'coating' +p40233 +tp40234 +a(g40231 +g40233 +S'to' +p40235 +tp40236 +a(g40233 +g40235 +S'reveal' +p40237 +tp40238 +a(g40235 +g40237 +S'the' +p40239 +tp40240 +a(g40237 +g40239 +S'red' +p40241 +tp40242 +a(g40239 +g40241 +S'clay' +p40243 +tp40244 +a(g40241 +g40243 +S'underneath' +p40245 +tp40246 +a(g40243 +g40245 +S'and' +p40247 +tp40248 +a(g40245 +g40247 +S'has' +p40249 +tp40250 +a(g40247 +g40249 +S'filled' +p40251 +tp40252 +a(g40249 +g40251 +S'the' +p40253 +tp40254 +a(g40251 +g40253 +S'corresponding' +p40255 +tp40256 +a(g40253 +g40255 +S'spaces' +p40257 +tp40258 +a(g40255 +g40257 +S'in' +p40259 +tp40260 +a(g40257 +g40259 +S'the' +p40261 +tp40262 +a(g40259 +g40261 +S'design' +p40263 +tp40264 +a(g40261 +g40263 +S'with' +p40265 +tp40266 +a(g40263 +g40265 +S'touches' +p40267 +tp40268 +a(g40265 +g40267 +S'of' +p40269 +tp40270 +a(g40267 +g40269 +S'green' +p40271 +tp40272 +a(g40269 +g40271 +S'slip,' +p40273 +tp40274 +a(g40271 +g40273 +S'brushed' +p40275 +tp40276 +a(g40273 +g40275 +S'on' +p40277 +tp40278 +a(g40275 +g40277 +S'over' +p40279 +tp40280 +a(g40277 +g40279 +S'the' +p40281 +tp40282 +a(g40279 +g40281 +S'light' +p40283 +tp40284 +a(g40281 +g40283 +S'background.' +p40285 +tp40286 +a(g40283 +g40285 +S'by' +p40287 +tp40288 +a(g40285 +g40287 +S'deftly' +p40289 +tp40290 +a(g40287 +g40289 +S'blending' +p40291 +tp40292 +a(g40289 +g40291 +S'his' +p40293 +tp40294 +a(g40291 +g40293 +S'decorative' +p40295 +tp40296 +a(g40293 +g40295 +S'methods,' +p40297 +tp40298 +a(g40295 +g40297 +S'the' +p40299 +tp40300 +a(g40297 +g40299 +S'potter' +p40301 +tp40302 +a(g40299 +g40301 +S'has' +p40303 +tp40304 +a(g40301 +g40303 +S'produced' +p40305 +tp40306 +a(g40303 +g40305 +S'a' +p40307 +tp40308 +a(g40305 +g40307 +S'varied' +p40309 +tp40310 +a(g40307 +g40309 +S'and' +p40311 +tp40312 +a(g40309 +g40311 +S'colorful' +p40313 +tp40314 +a(g40311 +g40313 +S'design.' +p40315 +tp40316 +a(g40313 +g40315 +S'according' +p40317 +tp40318 +a(g40315 +g40317 +S'to' +p40319 +tp40320 +a(g40317 +g40319 +S'jean-henri' +p40321 +tp40322 +a(g40319 +g40321 +S"riesener's" +p40323 +tp40324 +a(g40321 +g40323 +S'account' +p40325 +tp40326 +a(g40323 +g40325 +S'ledger' +p40327 +tp40328 +a(g40325 +g40327 +S'for' +p40329 +tp40330 +a(g40327 +g40329 +S'may' +p40331 +tp40332 +a(g40329 +g40331 +S'28,' +p40333 +tp40334 +a(g40331 +g40333 +S'1784,' +p40335 +tp40336 +a(g40333 +g40335 +S'this' +p40337 +tp40338 +a(g40335 +g40337 +S'table' +p40339 +tp40340 +a(g40337 +g40339 +S'was' +p40341 +tp40342 +a(g40339 +g40341 +S'ordered' +p40343 +tp40344 +a(g40341 +g40343 +S'for' +p40345 +tp40346 +a(g40343 +g40345 +S'queen' +p40347 +tp40348 +a(g40345 +g40347 +S'marie' +p40349 +tp40350 +a(g40347 +g40349 +S"antoinette's" +p40351 +tp40352 +a(g40349 +g40351 +S'private' +p40353 +tp40354 +a(g40351 +g40353 +S'apartments' +p40355 +tp40356 +a(g40353 +g40355 +S'in' +p40357 +tp40358 +a(g40355 +g40357 +S'the' +p40359 +tp40360 +a(g40357 +g40359 +S'tuileries' +p40361 +tp40362 +a(g40359 +g40361 +S'palace,' +p40363 +tp40364 +a(g40361 +g40363 +S'paris.' +p40365 +tp40366 +a(g40363 +g40365 +S'detailed' +p40367 +tp40368 +a(g40365 +g40367 +S'descriptions' +p40369 +tp40370 +a(g40367 +g40369 +S'and' +p40371 +tp40372 +a(g40369 +g40371 +S'measurements,' +p40373 +tp40374 +a(g40371 +g40373 +S'as' +p40375 +tp40376 +a(g40373 +g40375 +S'well' +p40377 +tp40378 +a(g40375 +g40377 +S'as' +p40379 +tp40380 +a(g40377 +g40379 +S'a' +p40381 +tp40382 +a(g40379 +g40381 +S'court' +p40383 +tp40384 +a(g40381 +g40383 +S'inventory' +p40385 +tp40386 +a(g40383 +g40385 +S'number' +p40387 +tp40388 +a(g40385 +g40387 +S'inked' +p40389 +tp40390 +a(g40387 +g40389 +S'underneath' +p40391 +tp40392 +a(g40389 +g40391 +S'the' +p40393 +tp40394 +a(g40391 +g40393 +S'tabletop,' +p40395 +tp40396 +a(g40393 +g40395 +S'confirm' +p40397 +tp40398 +a(g40395 +g40397 +S'its' +p40399 +tp40400 +a(g40397 +g40399 +S'identity.' +p40401 +tp40402 +a(g40399 +g40401 +S'after' +p40403 +tp40404 +a(g40401 +g40403 +S'the' +p40405 +tp40406 +a(g40403 +g40405 +S'french' +p40407 +tp40408 +a(g40405 +g40407 +S'revolution' +p40409 +tp40410 +a(g40407 +g40409 +S'erupted' +p40411 +tp40412 +a(g40409 +g40411 +S'in' +p40413 +tp40414 +a(g40411 +g40413 +S'1789,' +p40415 +tp40416 +a(g40413 +g40415 +S'the' +p40417 +tp40418 +a(g40415 +g40417 +S'royal' +p40419 +tp40420 +a(g40417 +g40419 +S'family' +p40421 +tp40422 +a(g40419 +g40421 +S'was' +p40423 +tp40424 +a(g40421 +g40423 +S'held' +p40425 +tp40426 +a(g40423 +g40425 +S'for' +p40427 +tp40428 +a(g40425 +g40427 +S'three' +p40429 +tp40430 +a(g40427 +g40429 +S'years' +p40431 +tp40432 +a(g40429 +g40431 +S'in' +p40433 +tp40434 +a(g40431 +g40433 +S'the' +p40435 +tp40436 +a(g40433 +g40435 +S'tuileries.' +p40437 +tp40438 +a(g40435 +g40437 +S'marie' +p40439 +tp40440 +a(g40437 +g40439 +S'antoinette' +p40441 +tp40442 +a(g40439 +g40441 +S'must' +p40443 +tp40444 +a(g40441 +g40443 +S'have' +p40445 +tp40446 +a(g40443 +g40445 +S'used' +p40447 +tp40448 +a(g40445 +g40447 +S'this' +p40449 +tp40450 +a(g40447 +g40449 +S'piece' +p40451 +tp40452 +a(g40449 +g40451 +S'during' +p40453 +tp40454 +a(g40451 +g40453 +S'that' +p40455 +tp40456 +a(g40453 +g40455 +S'imprisonment' +p40457 +tp40458 +a(g40455 +g40457 +S'before' +p40459 +tp40460 +a(g40457 +g40459 +S'she' +p40461 +tp40462 +a(g40459 +g40461 +S'was' +p40463 +tp40464 +a(g40461 +g40463 +S'guillotined' +p40465 +tp40466 +a(g40463 +g40465 +S'in' +p40467 +tp40468 +a(g40465 +g40467 +S'1793.' +p40469 +tp40470 +a(g40467 +g40469 +S'besides' +p40471 +tp40472 +a(g40469 +g40471 +S'its' +p40473 +tp40474 +a(g40471 +g40473 +S'historical' +p40475 +tp40476 +a(g40473 +g40475 +S'interest,' +p40477 +tp40478 +a(g40475 +g40477 +S'the' +p40479 +tp40480 +a(g40477 +g40479 +S'single-drawer' +p40481 +tp40482 +a(g40479 +g40481 +S'table' +p40483 +tp40484 +a(g40481 +g40483 +S'is' +p40485 +tp40486 +a(g40483 +g40485 +S'a' +p40487 +tp40488 +a(g40485 +g40487 +S'superb' +p40489 +tp40490 +a(g40487 +g40489 +S'example' +p40491 +tp40492 +a(g40489 +g40491 +S'of' +p40493 +tp40494 +a(g40491 +g40493 +S"riesener's" +p40495 +tp40496 +a(g40493 +g40495 +S'artistry.' +p40497 +tp40498 +a(g40495 +g40497 +S'with' +p40499 +tp40500 +a(g40497 +g40499 +S'great' +p40501 +tp40502 +a(g40499 +g40501 +S'perception,' +p40503 +tp40504 +a(g40501 +g40503 +S'he' +p40505 +tp40506 +a(g40503 +g40505 +S'emphasized' +p40507 +tp40508 +a(g40505 +g40507 +S'the' +p40509 +tp40510 +a(g40507 +g40509 +S'delicate' +p40511 +tp40512 +a(g40509 +g40511 +S'taper' +p40513 +tp40514 +a(g40511 +g40513 +S'of' +p40515 +tp40516 +a(g40513 +g40515 +S'the' +p40517 +tp40518 +a(g40515 +g40517 +S'legs' +p40519 +tp40520 +a(g40517 +g40519 +S'by' +p40521 +tp40522 +a(g40519 +g40521 +S'inlaying' +p40523 +tp40524 +a(g40521 +g40523 +S'panels' +p40525 +tp40526 +a(g40523 +g40525 +S'of' +p40527 +tp40528 +a(g40525 +g40527 +S'darker' +p40529 +tp40530 +a(g40527 +g40529 +S'wood' +p40531 +tp40532 +a(g40529 +g40531 +S'that' +p40533 +tp40534 +a(g40531 +g40533 +S'interrupt' +p40535 +tp40536 +a(g40533 +g40535 +S'the' +p40537 +tp40538 +a(g40535 +g40537 +S'paler' +p40539 +tp40540 +a(g40537 +g40539 +S'surrounding' +p40541 +tp40542 +a(g40539 +g40541 +S'veneer.' +p40543 +tp40544 +a(g40541 +g40543 +S'flanked' +p40545 +tp40546 +a(g40543 +g40545 +S'by' +p40547 +tp40548 +a(g40545 +g40547 +S'roman' +p40549 +tp40550 +a(g40547 +g40549 +S'flutings' +p40551 +tp40552 +a(g40549 +g40551 +S'alternating' +p40553 +tp40554 +a(g40551 +g40553 +S'with' +p40555 +tp40556 +a(g40553 +g40555 +S'openwork' +p40557 +tp40558 +a(g40555 +g40557 +S'palmettes,' +p40559 +tp40560 +a(g40557 +g40559 +S'gilded' +p40561 +tp40562 +a(g40559 +g40561 +S'central' +p40563 +tp40564 +a(g40561 +g40563 +S'plaques' +p40565 +tp40566 +a(g40563 +g40565 +S'depict' +p40567 +tp40568 +a(g40565 +g40567 +S'cupids' +p40569 +tp40570 +a(g40567 +g40569 +S'frolicking' +p40571 +tp40572 +a(g40569 +g40571 +S'among' +p40573 +tp40574 +a(g40571 +g40573 +S'clouds' +p40575 +tp40576 +a(g40573 +g40575 +S'while' +p40577 +tp40578 +a(g40575 +g40577 +S'playing' +p40579 +tp40580 +a(g40577 +g40579 +S'musical' +p40581 +tp40582 +a(g40579 +g40581 +S'instruments.' +p40583 +tp40584 +a(g40581 +g40583 +S'it' +p40585 +tp40586 +a(g40583 +g40585 +S'may' +p40587 +tp40588 +a(g40585 +g40587 +S'not' +p40589 +tp40590 +a(g40587 +g40589 +S'be' +p40591 +tp40592 +a(g40589 +g40591 +S'coincidental' +p40593 +tp40594 +a(g40591 +g40593 +S'that' +p40595 +tp40596 +a(g40593 +g40595 +S'riesener,' +p40597 +tp40598 +a(g40595 +g40597 +S'the' +p40599 +tp40600 +a(g40597 +g40599 +S'official' +p40601 +tp40602 +a(g40599 +g40601 +S'cabinetmaker' +p40603 +tp40604 +a(g40601 +g40603 +S'to' +p40605 +tp40606 +a(g40603 +g40605 +S'marie' +p40607 +tp40608 +a(g40605 +g40607 +S'antoinette' +p40609 +tp40610 +a(g40607 +g40609 +S'and' +p40611 +tp40612 +a(g40609 +g40611 +S'louis' +p40613 +tp40614 +a(g40611 +g40613 +S'xvi,' +p40615 +tp40616 +a(g40613 +g40615 +S'came' +p40617 +tp40618 +a(g40615 +g40617 +S'from' +p40619 +tp40620 +a(g40617 +g40619 +S'essen,' +p40621 +tp40622 +a(g40619 +g40621 +S'germany.' +p40623 +tp40624 +a(g40621 +g40623 +S'the' +p40625 +tp40626 +a(g40623 +g40625 +S'french' +p40627 +tp40628 +a(g40625 +g40627 +S'queen,' +p40629 +tp40630 +a(g40627 +g40629 +S'born' +p40631 +tp40632 +a(g40629 +g40631 +S'in' +p40633 +tp40634 +a(g40631 +g40633 +S'austria,' +p40635 +tp40636 +a(g40633 +g40635 +S'also' +p40637 +tp40638 +a(g40635 +g40637 +S'spoke' +p40639 +tp40640 +a(g40637 +g40639 +S'german.' +p40641 +tp40642 +a(g40639 +g40641 +S'ironically,' +p40643 +tp40644 +a(g40641 +g40643 +S'the' +p40645 +tp40646 +a(g40643 +g40645 +S'french' +p40647 +tp40648 +a(g40645 +g40647 +S'revolution' +p40649 +tp40650 +a(g40647 +g40649 +S'did' +p40651 +tp40652 +a(g40649 +g40651 +S'not' +p40653 +tp40654 +a(g40651 +g40653 +S'destroy' +p40655 +tp40656 +a(g40653 +g40655 +S"riesener's" +p40657 +tp40658 +a(g40655 +g40657 +S'career;' +p40659 +tp40660 +a(g40657 +g40659 +S'he' +p40661 +tp40662 +a(g40659 +g40661 +S'was' +p40663 +tp40664 +a(g40661 +g40663 +S'employed' +p40665 +tp40666 +a(g40663 +g40665 +S'to' +p40667 +tp40668 +a(g40665 +g40667 +S'remove' +p40669 +tp40670 +a(g40667 +g40669 +S'the' +p40671 +tp40672 +a(g40669 +g40671 +S'royal' +p40673 +tp40674 +a(g40671 +g40673 +S'emblems' +p40675 +tp40676 +a(g40673 +g40675 +S'from' +p40677 +tp40678 +a(g40675 +g40677 +S'his' +p40679 +tp40680 +a(g40677 +g40679 +S'own' +p40681 +tp40682 +a(g40679 +g40681 +S'court' +p40683 +tp40684 +a(g40681 +g40683 +S'furniture!' +p40685 +tp40686 +a(g40683 +g40685 +S'this' +p40687 +tp40688 +a(g40685 +g40687 +S'is' +p40689 +tp40690 +a(g40687 +g40689 +S'a' +p40691 +tp40692 +a(g40689 +g40691 +S'candle' +p40693 +tp40694 +a(g40691 +g40693 +S'box' +p40695 +tp40696 +a(g40693 +g40695 +S'dated' +p40697 +tp40698 +a(g40695 +g40697 +S'1738.' +p40699 +tp40700 +a(g40697 +g40699 +S'made' +p40701 +tp40702 +a(g40699 +g40701 +S'with' +p40703 +tp40704 +a(g40701 +g40703 +S'a' +p40705 +tp40706 +a(g40703 +g40705 +S'sliding' +p40707 +tp40708 +a(g40705 +g40707 +S'lid,' +p40709 +tp40710 +a(g40707 +g40709 +S'it' +p40711 +tp40712 +a(g40709 +g40711 +S'is' +p40713 +tp40714 +a(g40711 +g40713 +S'decorated' +p40715 +tp40716 +a(g40713 +g40715 +S'with' +p40717 +tp40718 +a(g40715 +g40717 +S'a' +p40719 +tp40720 +a(g40717 +g40719 +S'floral' +p40721 +tp40722 +a(g40719 +g40721 +S'and' +p40723 +tp40724 +a(g40721 +g40723 +S'geometric' +p40725 +tp40726 +a(g40723 +g40725 +S'design' +p40727 +tp40728 +a(g40725 +g40727 +S'painted' +p40729 +tp40730 +a(g40727 +g40729 +S'in' +p40731 +tp40732 +a(g40729 +g40731 +S'bright' +p40733 +tp40734 +a(g40731 +g40733 +S'colors.' +p40735 +tp40736 +a(g40733 +g40735 +S'notice' +p40737 +tp40738 +a(g40735 +g40737 +S'that' +p40739 +tp40740 +a(g40737 +g40739 +S'the' +p40741 +tp40742 +a(g40739 +g40741 +S'panel' +p40743 +tp40744 +a(g40741 +g40743 +S'in' +p40745 +tp40746 +a(g40743 +g40745 +S'front' +p40747 +tp40748 +a(g40745 +g40747 +S'is' +p40749 +tp40750 +a(g40747 +g40749 +S'recessed' +p40751 +tp40752 +a(g40749 +g40751 +S'so' +p40753 +tp40754 +a(g40751 +g40753 +S'that' +p40755 +tp40756 +a(g40753 +g40755 +S'the' +p40757 +tp40758 +a(g40755 +g40757 +S'dark' +p40759 +tp40760 +a(g40757 +g40759 +S'background' +p40761 +tp40762 +a(g40759 +g40761 +S'forms' +p40763 +tp40764 +a(g40761 +g40763 +S'a' +p40765 +tp40766 +a(g40763 +g40765 +S'frame' +p40767 +tp40768 +a(g40765 +g40767 +S'around' +p40769 +tp40770 +a(g40767 +g40769 +S'the' +p40771 +tp40772 +a(g40769 +g40771 +S'symmetrical' +p40773 +tp40774 +a(g40771 +g40773 +S'tulip' +p40775 +tp40776 +a(g40773 +g40775 +S'motif.' +p40777 +tp40778 +a(g40775 +g40777 +S'panels' +p40779 +tp40780 +a(g40777 +g40779 +S'of' +p40781 +tp40782 +a(g40779 +g40781 +S'black-and-gold' +p40783 +tp40784 +a(g40781 +g40783 +S'lacquer' +p40785 +tp40786 +a(g40783 +g40785 +S'sprinkled' +p40787 +tp40788 +a(g40785 +g40787 +S'with' +p40789 +tp40790 +a(g40787 +g40789 +S'metallic' +p40791 +tp40792 +a(g40789 +g40791 +S'powders' +p40793 +tp40794 +a(g40791 +g40793 +S'(' +p40795 +tp40796 +a(g40793 +g40795 +S'eighteenth-century' +p40797 +tp40798 +a(g40795 +g40797 +S'europeans' +p40799 +tp40800 +a(g40797 +g40799 +S'used' +p40801 +tp40802 +a(g40799 +g40801 +S'the' +p40803 +tp40804 +a(g40801 +g40803 +S'french' +p40805 +tp40806 +a(g40803 +g40805 +S'term' +p40807 +tp40808 +a(g40805 +g40807 +S'the' +p40809 +tp40810 +a(g40807 +g40809 +S'commode' +p40811 +tp40812 +a(g40809 +g40811 +S'bears' +p40813 +tp40814 +a(g40811 +g40813 +S'the' +p40815 +tp40816 +a(g40813 +g40815 +S'initial' +p40817 +tp40818 +a(g40815 +g40817 +S'c' +p40819 +tp40820 +a(g40817 +g40819 +S'surmounted' +p40821 +tp40822 +a(g40819 +g40821 +S'by' +p40823 +tp40824 +a(g40821 +g40823 +S'a' +p40825 +tp40826 +a(g40823 +g40825 +S'crown' +p40827 +tp40828 +a(g40825 +g40827 +S'on' +p40829 +tp40830 +a(g40827 +g40829 +S'all' +p40831 +tp40832 +a(g40829 +g40831 +S'its' +p40833 +tp40834 +a(g40831 +g40833 +S'gilt-bronze' +p40835 +tp40836 +a(g40833 +g40835 +S'mounts.' +p40837 +tp40838 +a(g40835 +g40837 +S'this' +p40839 +tp40840 +a(g40837 +g40839 +S'legal' +p40841 +tp40842 +a(g40839 +g40841 +S'mark' +p40843 +tp40844 +a(g40841 +g40843 +S'on' +p40845 +tp40846 +a(g40843 +g40845 +S'metals' +p40847 +tp40848 +a(g40845 +g40847 +S'with' +p40849 +tp40850 +a(g40847 +g40849 +S'a' +p40851 +tp40852 +a(g40849 +g40851 +S'copper' +p40853 +tp40854 +a(g40851 +g40853 +S'content' +p40855 +tp40856 +a(g40853 +g40855 +S'was' +p40857 +tp40858 +a(g40855 +g40857 +S'used' +p40859 +tp40860 +a(g40857 +g40859 +S'only' +p40861 +tp40862 +a(g40859 +g40861 +S'from' +p40863 +tp40864 +a(g40861 +g40863 +S'1745' +p40865 +tp40866 +a(g40863 +g40865 +S'to' +p40867 +tp40868 +a(g40865 +g40867 +S'1749.' +p40869 +tp40870 +a(g40867 +g40869 +S'the' +p40871 +tp40872 +a(g40869 +g40871 +S'oak' +p40873 +tp40874 +a(g40871 +g40873 +S'body' +p40875 +tp40876 +a(g40873 +g40875 +S'is' +p40877 +tp40878 +a(g40875 +g40877 +S'stamped' +p40879 +tp40880 +a(g40877 +g40879 +S'df,' +p40881 +tp40882 +a(g40879 +g40881 +S'which' +p40883 +tp40884 +a(g40881 +g40883 +S'has' +p40885 +tp40886 +a(g40883 +g40885 +S'been' +p40887 +tp40888 +a(g40885 +g40887 +S'traditionally' +p40889 +tp40890 +a(g40887 +g40889 +S'identified' +p40891 +tp40892 +a(g40889 +g40891 +S'as' +p40893 +tp40894 +a(g40891 +g40893 +S'the' +p40895 +tp40896 +a(g40893 +g40895 +S'mark' +p40897 +tp40898 +a(g40895 +g40897 +S'of' +p40899 +tp40900 +a(g40897 +g40899 +S'at' +p40901 +tp40902 +a(g40899 +g40901 +S'a' +p40903 +tp40904 +a(g40901 +g40903 +S'quick' +p40905 +tp40906 +a(g40903 +g40905 +S'glance,' +p40907 +tp40908 +a(g40905 +g40907 +S'this' +p40909 +tp40910 +a(g40907 +g40909 +S"lady's" +p40911 +tp40912 +a(g40909 +g40911 +S'each' +p40913 +tp40914 +a(g40911 +g40913 +S'table' +p40915 +tp40916 +a(g40913 +g40915 +S'has' +p40917 +tp40918 +a(g40915 +g40917 +S'a' +p40919 +tp40920 +a(g40917 +g40919 +S'wide' +p40921 +tp40922 +a(g40919 +g40921 +S'writing' +p40923 +tp40924 +a(g40921 +g40923 +S'slide' +p40925 +tp40926 +a(g40923 +g40925 +S'on' +p40927 +tp40928 +a(g40925 +g40927 +S'the' +p40929 +tp40930 +a(g40927 +g40929 +S'front' +p40931 +tp40932 +a(g40929 +g40931 +S'and' +p40933 +tp40934 +a(g40931 +g40933 +S'a' +p40935 +tp40936 +a(g40933 +g40935 +S'single' +p40937 +tp40938 +a(g40935 +g40937 +S'deep' +p40939 +tp40940 +a(g40937 +g40939 +S'drawer' +p40941 +tp40942 +a(g40939 +g40941 +S'on' +p40943 +tp40944 +a(g40941 +g40943 +S'one' +p40945 +tp40946 +a(g40943 +g40945 +S'side.' +p40947 +tp40948 +a(g40945 +g40947 +S'the' +p40949 +tp40950 +a(g40947 +g40949 +S'gilt-bronze' +p40951 +tp40952 +a(g40949 +g40951 +S'spiral' +p40953 +tp40954 +a(g40951 +g40953 +S'ribbings,' +p40955 +tp40956 +a(g40953 +g40955 +S'which' +p40957 +tp40958 +a(g40955 +g40957 +S'cause' +p40959 +tp40960 +a(g40957 +g40959 +S'both' +p40961 +tp40962 +a(g40959 +g40961 +S"tables'" +p40963 +tp40964 +a(g40961 +g40963 +S'legs' +p40965 +tp40966 +a(g40963 +g40965 +S'to' +p40967 +tp40968 +a(g40965 +g40967 +S'shimmer' +p40969 +tp40970 +a(g40967 +g40969 +S'in' +p40971 +tp40972 +a(g40969 +g40971 +S'the' +p40973 +tp40974 +a(g40971 +g40973 +S'light,' +p40975 +tp40976 +a(g40973 +g40975 +S'are' +p40977 +tp40978 +a(g40975 +g40977 +S'so' +p40979 +tp40980 +a(g40977 +g40979 +S'much' +p40981 +tp40982 +a(g40979 +g40981 +S'alike' +p40983 +tp40984 +a(g40981 +g40983 +S'that' +p40985 +tp40986 +a(g40983 +g40985 +S'they' +p40987 +tp40988 +a(g40985 +g40987 +S'must' +p40989 +tp40990 +a(g40987 +g40989 +S'have' +p40991 +tp40992 +a(g40989 +g40991 +S'been' +p40993 +tp40994 +a(g40991 +g40993 +S'cast' +p40995 +tp40996 +a(g40993 +g40995 +S'from' +p40997 +tp40998 +a(g40995 +g40997 +S'the' +p40999 +tp41000 +a(g40997 +g40999 +S'same' +p41001 +tp41002 +a(g40999 +g41001 +S'molds.' +p41003 +tp41004 +a(g41001 +g41003 +S'distinction,' +p41005 +tp41006 +a(g41003 +g41005 +S'however,' +p41007 +tp41008 +a(g41005 +g41007 +S'is' +p41009 +tp41010 +a(g41007 +g41009 +S'gained' +p41011 +tp41012 +a(g41009 +g41011 +S'in' +p41013 +tp41014 +a(g41011 +g41013 +S'several' +p41015 +tp41016 +a(g41013 +g41015 +S'ways.' +p41017 +tp41018 +a(g41015 +g41017 +S'whereas' +p41019 +tp41020 +a(g41017 +g41019 +S'all' +p41021 +tp41022 +a(g41019 +g41021 +S'four' +p41023 +tp41024 +a(g41021 +g41023 +S'sides' +p41025 +tp41026 +a(g41023 +g41025 +S'of' +p41027 +tp41028 +a(g41025 +g41027 +S'the' +p41029 +tp41030 +a(g41027 +g41029 +S"queen's" +p41031 +tp41032 +a(g41029 +g41031 +S'table' +p41033 +tp41034 +a(g41031 +g41033 +S'bear' +p41035 +tp41036 +a(g41033 +g41035 +S'gilded' +p41037 +tp41038 +a(g41035 +g41037 +S'plaques' +p41039 +tp41040 +a(g41037 +g41039 +S'representing' +p41041 +tp41042 +a(g41039 +g41041 +S'cupids,' +p41043 +tp41044 +a(g41041 +g41043 +S'this' +p41045 +tp41046 +a(g41043 +g41045 +S'table' +p41047 +tp41048 +a(g41045 +g41047 +S'is' +p41049 +tp41050 +a(g41047 +g41049 +S'ornamented' +p41051 +tp41052 +a(g41049 +g41051 +S'with' +p41053 +tp41054 +a(g41051 +g41053 +S'scrolling' +p41055 +tp41056 +a(g41053 +g41055 +S'panels' +p41057 +tp41058 +a(g41055 +g41057 +S'of' +p41059 +tp41060 +a(g41057 +g41059 +S'classical' +p41061 +tp41062 +a(g41059 +g41061 +S'acanthus' +p41063 +tp41064 +a(g41061 +g41063 +S'foliage' +p41065 +tp41066 +a(g41063 +g41065 +S'centered' +p41067 +tp41068 +a(g41065 +g41067 +S'on' +p41069 +tp41070 +a(g41067 +g41069 +S'sunflowers.' +p41071 +tp41072 +a(g41069 +g41071 +S'gilded' +p41073 +tp41074 +a(g41071 +g41073 +S'metal' +p41075 +tp41076 +a(g41073 +g41075 +S'covers' +p41077 +tp41078 +a(g41075 +g41077 +S'all' +p41079 +tp41080 +a(g41077 +g41079 +S'fronts' +p41081 +tp41082 +a(g41079 +g41081 +S'of' +p41083 +tp41084 +a(g41081 +g41083 +S'the' +p41085 +tp41086 +a(g41083 +g41085 +S"queen's" +p41087 +tp41088 +a(g41085 +g41087 +S'table,' +p41089 +tp41090 +a(g41087 +g41089 +S'while' +p41091 +tp41092 +a(g41089 +g41091 +S'here,' +p41093 +tp41094 +a(g41091 +g41093 +S'much' +p41095 +tp41096 +a(g41093 +g41095 +S'of' +p41097 +tp41098 +a(g41095 +g41097 +S'each' +p41099 +tp41100 +a(g41097 +g41099 +S'front' +p41101 +tp41102 +a(g41099 +g41101 +S'is' +p41103 +tp41104 +a(g41101 +g41103 +S'veneer' +p41105 +tp41106 +a(g41103 +g41105 +S'that' +p41107 +tp41108 +a(g41105 +g41107 +S'repeats' +p41109 +tp41110 +a(g41107 +g41109 +S'the' +p41111 +tp41112 +a(g41109 +g41111 +S'diamond' +p41113 +tp41114 +a(g41111 +g41113 +S'or' +p41115 +tp41116 +a(g41113 +g41115 +S'trellis' +p41117 +tp41118 +a(g41115 +g41117 +S'pattern' +p41119 +tp41120 +a(g41117 +g41119 +S'created' +p41121 +tp41122 +a(g41119 +g41121 +S'on' +p41123 +tp41124 +a(g41121 +g41123 +S'the' +p41125 +tp41126 +a(g41123 +g41125 +S'tabletop' +p41127 +tp41128 +a(g41125 +g41127 +S'by' +p41129 +tp41130 +a(g41127 +g41129 +S'parallel,' +p41131 +tp41132 +a(g41129 +g41131 +S'triple' +p41133 +tp41134 +a(g41131 +g41133 +S'stripes' +p41135 +tp41136 +a(g41133 +g41135 +S'of' +p41137 +tp41138 +a(g41135 +g41137 +S'wood.' +p41139 +tp41140 +a(g41137 +g41139 +S'this' +p41141 +tp41142 +a(g41139 +g41141 +S'rolltop' +p41143 +tp41144 +a(g41141 +g41143 +S'desk' +p41145 +tp41146 +a(g41143 +g41145 +S'is' +p41147 +tp41148 +a(g41145 +g41147 +S'stamped' +p41149 +tp41150 +a(g41147 +g41149 +S'underneath' +p41151 +tp41152 +a(g41149 +g41151 +S'by' +p41153 +tp41154 +a(g41151 +g41153 +S'jean-henri' +p41155 +tp41156 +a(g41153 +g41155 +S'riesener,' +p41157 +tp41158 +a(g41155 +g41157 +S'one' +p41159 +tp41160 +a(g41157 +g41159 +S'of' +p41161 +tp41162 +a(g41159 +g41161 +S'the' +p41163 +tp41164 +a(g41161 +g41163 +S'greatest' +p41165 +tp41166 +a(g41163 +g41165 +S'parisian' +p41167 +tp41168 +a(g41165 +g41167 +S'cabinetmakers.' +p41169 +tp41170 +a(g41167 +g41169 +S'after' +p41171 +tp41172 +a(g41169 +g41171 +S'his' +p41173 +tp41174 +a(g41171 +g41173 +S'master' +p41175 +tp41176 +a(g41173 +g41175 +S'jean-françois' +p41177 +tp41178 +a(g41175 +g41177 +S'oeben' +p41179 +tp41180 +a(g41177 +g41179 +S'died' +p41181 +tp41182 +a(g41179 +g41181 +S'in' +p41183 +tp41184 +a(g41181 +g41183 +S'1763,' +p41185 +tp41186 +a(g41183 +g41185 +S'riesener' +p41187 +tp41188 +a(g41185 +g41187 +S'inherited' +p41189 +tp41190 +a(g41187 +g41189 +S'the' +p41191 +tp41192 +a(g41189 +g41191 +S'studio' +p41193 +tp41194 +a(g41191 +g41193 +S'and,' +p41195 +tp41196 +a(g41193 +g41195 +S'five' +p41197 +tp41198 +a(g41195 +g41197 +S'years' +p41199 +tp41200 +a(g41197 +g41199 +S'later,' +p41201 +tp41202 +a(g41199 +g41201 +S'married' +p41203 +tp41204 +a(g41201 +g41203 +S"oeben's" +p41205 +tp41206 +a(g41203 +g41205 +S'widow.' +p41207 +tp41208 +a(g41205 +g41207 +S'the' +p41209 +tp41210 +a(g41207 +g41209 +S'rolltop' +p41211 +tp41212 +a(g41209 +g41211 +S'desk' +p41213 +tp41214 +a(g41211 +g41213 +S'was' +p41215 +tp41216 +a(g41213 +g41215 +S'introduced' +p41217 +tp41218 +a(g41215 +g41217 +S'about' +p41219 +tp41220 +a(g41217 +g41219 +S'1760' +p41221 +tp41222 +a(g41219 +g41221 +S'by' +p41223 +tp41224 +a(g41221 +g41223 +S'oeben.' +p41225 +tp41226 +a(g41223 +g41225 +S'the' +p41227 +tp41228 +a(g41225 +g41227 +S'top' +p41229 +tp41230 +a(g41227 +g41229 +S'of' +p41231 +tp41232 +a(g41229 +g41231 +S'this' +p41233 +tp41234 +a(g41231 +g41233 +S'one' +p41235 +tp41236 +a(g41233 +g41235 +S'includes' +p41237 +tp41238 +a(g41235 +g41237 +S'a' +p41239 +tp41240 +a(g41237 +g41239 +S'tilting,' +p41241 +tp41242 +a(g41239 +g41241 +S'adjustable' +p41243 +tp41244 +a(g41241 +g41243 +S'easel,' +p41245 +tp41246 +a(g41243 +g41245 +S'so' +p41247 +tp41248 +a(g41245 +g41247 +S'that' +p41249 +tp41250 +a(g41247 +g41249 +S'a' +p41251 +tp41252 +a(g41249 +g41251 +S'gentleman' +p41253 +tp41254 +a(g41251 +g41253 +S'could' +p41255 +tp41256 +a(g41253 +g41255 +S'stand' +p41257 +tp41258 +a(g41255 +g41257 +S'to' +p41259 +tp41260 +a(g41257 +g41259 +S'read' +p41261 +tp41262 +a(g41259 +g41261 +S'or' +p41263 +tp41264 +a(g41261 +g41263 +S'write.' +p41265 +tp41266 +a(g41263 +g41265 +S'wide' +p41267 +tp41268 +a(g41265 +g41267 +S'writing' +p41269 +tp41270 +a(g41267 +g41269 +S'slides' +p41271 +tp41272 +a(g41269 +g41271 +S'and' +p41273 +tp41274 +a(g41271 +g41273 +S'long' +p41275 +tp41276 +a(g41273 +g41275 +S'drawers' +p41277 +tp41278 +a(g41275 +g41277 +S'with' +p41279 +tp41280 +a(g41277 +g41279 +S'inkwells' +p41281 +tp41282 +a(g41279 +g41281 +S'are' +p41283 +tp41284 +a(g41281 +g41283 +S'concealed' +p41285 +tp41286 +a(g41283 +g41285 +S'on' +p41287 +tp41288 +a(g41285 +g41287 +S'both' +p41289 +tp41290 +a(g41287 +g41289 +S'sides,' +p41291 +tp41292 +a(g41289 +g41291 +S'providing' +p41293 +tp41294 +a(g41291 +g41293 +S'work' +p41295 +tp41296 +a(g41293 +g41295 +S'space' +p41297 +tp41298 +a(g41295 +g41297 +S'for' +p41299 +tp41300 +a(g41297 +g41299 +S'two' +p41301 +tp41302 +a(g41299 +g41301 +S'male' +p41303 +tp41304 +a(g41301 +g41303 +S'secretaries.' +p41305 +tp41306 +a(g41303 +g41305 +S'mountings' +p41307 +tp41308 +a(g41305 +g41307 +S'with' +p41309 +tp41310 +a(g41307 +g41309 +S'neoclassical' +p41311 +tp41312 +a(g41309 +g41311 +S'motifs' +p41313 +tp41314 +a(g41311 +g41313 +S'of' +p41315 +tp41316 +a(g41313 +g41315 +S'circular' +p41317 +tp41318 +a(g41315 +g41317 +S'laurel' +p41319 +tp41320 +a(g41317 +g41319 +S'wreaths' +p41321 +tp41322 +a(g41319 +g41321 +S'and' +p41323 +tp41324 +a(g41321 +g41323 +S'symmetrical' +p41325 +tp41326 +a(g41323 +g41325 +S'sprays' +p41327 +tp41328 +a(g41325 +g41327 +S'of' +p41329 +tp41330 +a(g41327 +g41329 +S'acanthus' +p41331 +tp41332 +a(g41329 +g41331 +S'foliage' +p41333 +tp41334 +a(g41331 +g41333 +S'enhance' +p41335 +tp41336 +a(g41333 +g41335 +S"riesener's" +p41337 +tp41338 +a(g41335 +g41337 +S'desk.' +p41339 +tp41340 +a(g41337 +g41339 +S'these' +p41341 +tp41342 +a(g41339 +g41341 +S'geometrical' +p41343 +tp41344 +a(g41341 +g41343 +S'plants' +p41345 +tp41346 +a(g41343 +g41345 +S'and' +p41347 +tp41348 +a(g41345 +g41347 +S'straight' +p41349 +tp41350 +a(g41347 +g41349 +S'edges' +p41351 +tp41352 +a(g41349 +g41351 +S'contrast' +p41353 +tp41354 +a(g41351 +g41353 +S'with' +p41355 +tp41356 +a(g41353 +g41355 +S'the' +p41357 +tp41358 +a(g41355 +g41357 +S'subtle' +p41359 +tp41360 +a(g41357 +g41359 +S'curve' +p41361 +tp41362 +a(g41359 +g41361 +S'of' +p41363 +tp41364 +a(g41361 +g41363 +S'the' +p41365 +tp41366 +a(g41363 +g41365 +S'legs,' +p41367 +tp41368 +a(g41365 +g41367 +S'a' +p41369 +tp41370 +a(g41367 +g41369 +S'transitional' +p41371 +tp41372 +a(g41369 +g41371 +S'reminder' +p41373 +tp41374 +a(g41371 +g41373 +S'of' +p41375 +tp41376 +a(g41373 +g41375 +S'the' +p41377 +tp41378 +a(g41375 +g41377 +S'rococo' +p41379 +tp41380 +a(g41377 +g41379 +S'style.' +p41381 +tp41382 +a(g41379 +g41381 +S'in' +p41383 +tp41384 +a(g41381 +g41383 +S'the' +p41385 +tp41386 +a(g41383 +g41385 +S'center' +p41387 +tp41388 +a(g41385 +g41387 +S'of' +p41389 +tp41390 +a(g41387 +g41389 +S'the' +p41391 +tp41392 +a(g41389 +g41391 +S'front' +p41393 +tp41394 +a(g41391 +g41393 +S'drawer' +p41395 +tp41396 +a(g41393 +g41395 +S'and' +p41397 +tp41398 +a(g41395 +g41397 +S'in' +p41399 +tp41400 +a(g41397 +g41399 +S'the' +p41401 +tp41402 +a(g41399 +g41401 +S'corresponding' +p41403 +tp41404 +a(g41401 +g41403 +S'position' +p41405 +tp41406 +a(g41403 +g41405 +S'on' +p41407 +tp41408 +a(g41405 +g41407 +S'the' +p41409 +tp41410 +a(g41407 +g41409 +S'back,' +p41411 +tp41412 +a(g41409 +g41411 +S'intertwined' +p41413 +tp41414 +a(g41411 +g41413 +S'ribbons' +p41415 +tp41416 +a(g41413 +g41415 +S'of' +p41417 +tp41418 +a(g41415 +g41417 +S'gilt' +p41419 +tp41420 +a(g41417 +g41419 +S'bronze' +p41421 +tp41422 +a(g41419 +g41421 +S'form' +p41423 +tp41424 +a(g41421 +g41423 +S'the' +p41425 +tp41426 +a(g41423 +g41425 +S'letters' +p41427 +tp41428 +a(g41425 +g41427 +S'lb.' +p41429 +tp41430 +a(g41427 +g41429 +S'this' +p41431 +tp41432 +a(g41429 +g41431 +S'monogram' +p41433 +tp41434 +a(g41431 +g41433 +S'could' +p41435 +tp41436 +a(g41433 +g41435 +S'refer' +p41437 +tp41438 +a(g41435 +g41437 +S'to' +p41439 +tp41440 +a(g41437 +g41439 +S'any' +p41441 +tp41442 +a(g41439 +g41441 +S'number' +p41443 +tp41444 +a(g41441 +g41443 +S'of' +p41445 +tp41446 +a(g41443 +g41445 +S'men' +p41447 +tp41448 +a(g41445 +g41447 +S'named' +p41449 +tp41450 +a(g41447 +g41449 +S'louis' +p41451 +tp41452 +a(g41449 +g41451 +S'in' +p41453 +tp41454 +a(g41451 +g41453 +S'the' +p41455 +tp41456 +a(g41453 +g41455 +S'bourbon-condé' +p41457 +tp41458 +a(g41455 +g41457 +S'royal' +p41459 +tp41460 +a(g41457 +g41459 +S'family.' +p41461 +tp41462 +a(g41459 +g41461 +S'since' +p41463 +tp41464 +a(g41461 +g41463 +S'the' +p41465 +tp41466 +a(g41463 +g41465 +S'initials' +p41467 +tp41468 +a(g41465 +g41467 +S'are' +p41469 +tp41470 +a(g41467 +g41469 +S'a' +p41471 +tp41472 +a(g41469 +g41471 +S'different' +p41473 +tp41474 +a(g41471 +g41473 +S'color' +p41475 +tp41476 +a(g41473 +g41475 +S'metal,' +p41477 +tp41478 +a(g41475 +g41477 +S'however,' +p41479 +tp41480 +a(g41477 +g41479 +S'they' +p41481 +tp41482 +a(g41479 +g41481 +S'may' +p41483 +tp41484 +a(g41481 +g41483 +S'be' +p41485 +tp41486 +a(g41483 +g41485 +S'later' +p41487 +tp41488 +a(g41485 +g41487 +S'additions.' +p41489 +tp41490 +a(g41487 +g41489 +S'this' +p41491 +tp41492 +a(g41489 +g41491 +S'chest' +p41493 +tp41494 +a(g41491 +g41493 +S'of' +p41495 +tp41496 +a(g41493 +g41495 +S'drawers' +p41497 +tp41498 +a(g41495 +g41497 +S'with' +p41499 +tp41500 +a(g41497 +g41499 +S'the' +p41501 +tp41502 +a(g41499 +g41501 +S'oak' +p41503 +tp41504 +a(g41501 +g41503 +S'body' +p41505 +tp41506 +a(g41503 +g41505 +S'is' +p41507 +tp41508 +a(g41505 +g41507 +S'stamped' +p41509 +tp41510 +a(g41507 +g41509 +S'with' +p41511 +tp41512 +a(g41509 +g41511 +S'the' +p41513 +tp41514 +a(g41511 +g41513 +S'name' +p41515 +tp41516 +a(g41513 +g41515 +S'"joseph,"' +p41517 +tp41518 +a(g41515 +g41517 +S'the' +p41519 +tp41520 +a(g41517 +g41519 +S'mark' +p41521 +tp41522 +a(g41519 +g41521 +S'of' +p41523 +tp41524 +a(g41521 +g41523 +S'a' +p41525 +tp41526 +a(g41523 +g41525 +S'cabinetmaker' +p41527 +tp41528 +a(g41525 +g41527 +S'of' +p41529 +tp41530 +a(g41527 +g41529 +S'german' +p41531 +tp41532 +a(g41529 +g41531 +S'birth,' +p41533 +tp41534 +a(g41531 +g41533 +S'a' +p41535 +tp41536 +a(g41533 +g41535 +S'highly' +p41537 +tp41538 +a(g41535 +g41537 +S'original' +p41539 +tp41540 +a(g41537 +g41539 +S'and' +p41541 +tp41542 +a(g41539 +g41541 +S'influential' +p41543 +tp41544 +a(g41541 +g41543 +S'master' +p41545 +tp41546 +a(g41543 +g41545 +S'with' +p41547 +tp41548 +a(g41545 +g41547 +S'a' +p41549 +tp41550 +a(g41547 +g41549 +S'large' +p41551 +tp41552 +a(g41549 +g41551 +S'shop' +p41553 +tp41554 +a(g41551 +g41553 +S'of' +p41555 +tp41556 +a(g41553 +g41555 +S'twelve' +p41557 +tp41558 +a(g41555 +g41557 +S'workbenches,' +p41559 +tp41560 +a(g41557 +g41559 +S'oeben' +p41561 +tp41562 +a(g41559 +g41561 +S'taught' +p41563 +tp41564 +a(g41561 +g41563 +S'martin' +p41565 +tp41566 +a(g41563 +g41565 +S'carlin,' +p41567 +tp41568 +a(g41565 +g41567 +S'jean-françois' +p41569 +tp41570 +a(g41567 +g41569 +S'leleu,' +p41571 +tp41572 +a(g41569 +g41571 +S'and' +p41573 +tp41574 +a(g41571 +g41573 +S'jean-henri' +p41575 +tp41576 +a(g41573 +g41575 +S'riesener-all' +p41577 +tp41578 +a(g41575 +g41577 +S'of' +p41579 +tp41580 +a(g41577 +g41579 +S'whom' +p41581 +tp41582 +a(g41579 +g41581 +S'are' +p41583 +tp41584 +a(g41581 +g41583 +S'represented' +p41585 +tp41586 +a(g41583 +g41585 +S'by' +p41587 +tp41588 +a(g41585 +g41587 +S'neoclassical' +p41589 +tp41590 +a(g41587 +g41589 +S'works' +p41591 +tp41592 +a(g41589 +g41591 +S'in' +p41593 +tp41594 +a(g41591 +g41593 +S'the' +p41595 +tp41596 +a(g41593 +g41595 +S'gallery.' +p41597 +tp41598 +a(g41595 +g41597 +S'oeben’s' +p41599 +tp41600 +a(g41597 +g41599 +S'daughter,' +p41601 +tp41602 +a(g41599 +g41601 +S'incidentally,' +p41603 +tp41604 +a(g41601 +g41603 +S'was' +p41605 +tp41606 +a(g41603 +g41605 +S'the' +p41607 +tp41608 +a(g41605 +g41607 +S'mother' +p41609 +tp41610 +a(g41607 +g41609 +S'of' +p41611 +tp41612 +a(g41609 +g41611 +S'the' +p41613 +tp41614 +a(g41611 +g41613 +S'romantic' +p41615 +tp41616 +a(g41613 +g41615 +S'painter' +p41617 +tp41618 +a(g41615 +g41617 +S'eugène' +p41619 +tp41620 +a(g41617 +g41619 +S'delacroix' +p41621 +tp41622 +a(g41619 +g41621 +S'(1798-1863).' +p41623 +tp41624 +a(g41621 +g41623 +S'oeben' +p41625 +tp41626 +a(g41623 +g41625 +S'excelled' +p41627 +tp41628 +a(g41625 +g41627 +S'in' +p41629 +tp41630 +a(g41627 +g41629 +S'figurative' +p41631 +tp41632 +a(g41629 +g41631 +S'veneer' +p41633 +tp41634 +a(g41631 +g41633 +S'such' +p41635 +tp41636 +a(g41633 +g41635 +S'as' +p41637 +tp41638 +a(g41635 +g41637 +S'the' +p41639 +tp41640 +a(g41637 +g41639 +S'still' +p41641 +tp41642 +a(g41639 +g41641 +S'life' +p41643 +tp41644 +a(g41641 +g41643 +S'of' +p41645 +tp41646 +a(g41643 +g41645 +S'musical' +p41647 +tp41648 +a(g41645 +g41647 +S'instruments,' +p41649 +tp41650 +a(g41647 +g41649 +S'berries,' +p41651 +tp41652 +a(g41649 +g41651 +S'and' +p41653 +tp41654 +a(g41651 +g41653 +S'palm' +p41655 +tp41656 +a(g41653 +g41655 +S'fronds' +p41657 +tp41658 +a(g41655 +g41657 +S'on' +p41659 +tp41660 +a(g41657 +g41659 +S'the' +p41661 +tp41662 +a(g41659 +g41661 +S'top' +p41663 +tp41664 +a(g41661 +g41663 +S'of' +p41665 +tp41666 +a(g41663 +g41665 +S'this' +p41667 +tp41668 +a(g41665 +g41667 +S'lady’s' +p41669 +tp41670 +a(g41667 +g41669 +S'mechanical' +p41671 +tp41672 +a(g41669 +g41671 +S'table.' +p41673 +tp41674 +a(g41671 +g41673 +S'for' +p41675 +tp41676 +a(g41673 +g41675 +S'such' +p41677 +tp41678 +a(g41675 +g41677 +S'a' +p41679 +tp41680 +a(g41677 +g41679 +S'dainty' +p41681 +tp41682 +a(g41679 +g41681 +S'piece,' +p41683 +tp41684 +a(g41681 +g41683 +S'it' +p41685 +tp41686 +a(g41683 +g41685 +S'contains' +p41687 +tp41688 +a(g41685 +g41687 +S'an' +p41689 +tp41690 +a(g41687 +g41689 +S'astonishing' +p41691 +tp41692 +a(g41689 +g41691 +S'variety' +p41693 +tp41694 +a(g41691 +g41693 +S'of' +p41695 +tp41696 +a(g41693 +g41695 +S'fittings.' +p41697 +tp41698 +a(g41695 +g41697 +S'the' +p41699 +tp41700 +a(g41697 +g41699 +S'front' +p41701 +tp41702 +a(g41699 +g41701 +S'center' +p41703 +tp41704 +a(g41701 +g41703 +S'drawer,' +p41705 +tp41706 +a(g41703 +g41705 +S'for' +p41707 +tp41708 +a(g41705 +g41707 +S'example,' +p41709 +tp41710 +a(g41707 +g41709 +S'is' +p41711 +tp41712 +a(g41709 +g41711 +S'false,' +p41713 +tp41714 +a(g41711 +g41713 +S'but' +p41715 +tp41716 +a(g41713 +g41715 +S'aging' +p41717 +tp41718 +a(g41715 +g41717 +S'has' +p41719 +tp41720 +a(g41717 +g41719 +S'warped' +p41721 +tp41722 +a(g41719 +g41721 +S'the' +p41723 +tp41724 +a(g41721 +g41723 +S'veneer' +p41725 +tp41726 +a(g41723 +g41725 +S'enough' +p41727 +tp41728 +a(g41725 +g41727 +S'to' +p41729 +tp41730 +a(g41727 +g41729 +S'disclose' +p41731 +tp41732 +a(g41729 +g41731 +S'a' +p41733 +tp41734 +a(g41731 +g41733 +S'smaller' +p41735 +tp41736 +a(g41733 +g41735 +S'secret' +p41737 +tp41738 +a(g41735 +g41737 +S'compartment' +p41739 +tp41740 +a(g41737 +g41739 +S'once' +p41741 +tp41742 +a(g41739 +g41741 +S'hidden' +p41743 +tp41744 +a(g41741 +g41743 +S'by' +p41745 +tp41746 +a(g41743 +g41745 +S'the' +p41747 +tp41748 +a(g41745 +g41747 +S'floral' +p41749 +tp41750 +a(g41747 +g41749 +S'patterns.' +p41751 +tp41752 +a(g41749 +g41751 +S'when' +p41753 +tp41754 +a(g41751 +g41753 +S'the' +p41755 +tp41756 +a(g41753 +g41755 +S'table' +p41757 +tp41758 +a(g41755 +g41757 +S'is' +p41759 +tp41760 +a(g41757 +g41759 +S'opened,' +p41761 +tp41762 +a(g41759 +g41761 +S'a' +p41763 +tp41764 +a(g41761 +g41763 +S'pivoting' +p41765 +tp41766 +a(g41763 +g41765 +S'work' +p41767 +tp41768 +a(g41765 +g41767 +S'surface' +p41769 +tp41770 +a(g41767 +g41769 +S'swivels' +p41771 +tp41772 +a(g41769 +g41771 +S'around,' +p41773 +tp41774 +a(g41771 +g41773 +S'with' +p41775 +tp41776 +a(g41773 +g41775 +S'a' +p41777 +tp41778 +a(g41775 +g41777 +S'toilet' +p41779 +tp41780 +a(g41777 +g41779 +S'mirror' +p41781 +tp41782 +a(g41779 +g41781 +S'on' +p41783 +tp41784 +a(g41781 +g41783 +S'one' +p41785 +tp41786 +a(g41783 +g41785 +S'side' +p41787 +tp41788 +a(g41785 +g41787 +S'and' +p41789 +tp41790 +a(g41787 +g41789 +S'a' +p41791 +tp41792 +a(g41789 +g41791 +S'leather' +p41793 +tp41794 +a(g41791 +g41793 +S'writing' +p41795 +tp41796 +a(g41793 +g41795 +S'pad' +p41797 +tp41798 +a(g41795 +g41797 +S'on' +p41799 +tp41800 +a(g41797 +g41799 +S'the' +p41801 +tp41802 +a(g41799 +g41801 +S'other.' +p41803 +tp41804 +a(g41801 +g41803 +S'oeben' +p41805 +tp41806 +a(g41803 +g41805 +S'made' +p41807 +tp41808 +a(g41805 +g41807 +S'at' +p41809 +tp41810 +a(g41807 +g41809 +S'least' +p41811 +tp41812 +a(g41809 +g41811 +S'eleven' +p41813 +tp41814 +a(g41811 +g41813 +S'other' +p41815 +tp41816 +a(g41813 +g41815 +S'tables' +p41817 +tp41818 +a(g41815 +g41817 +S'of' +p41819 +tp41820 +a(g41817 +g41819 +S'this' +p41821 +tp41822 +a(g41819 +g41821 +S'type,' +p41823 +tp41824 +a(g41821 +g41823 +S'with' +p41825 +tp41826 +a(g41823 +g41825 +S'differing' +p41827 +tp41828 +a(g41825 +g41827 +S'interior' +p41829 +tp41830 +a(g41827 +g41829 +S'arrangements' +p41831 +tp41832 +a(g41829 +g41831 +S'and' +p41833 +tp41834 +a(g41831 +g41833 +S'rococo' +p41835 +tp41836 +a(g41833 +g41835 +S'motifs.' +p41837 +tp41838 +a(g41835 +g41837 +S'one' +p41839 +tp41840 +a(g41837 +g41839 +S'table' +p41841 +tp41842 +a(g41839 +g41841 +S'bears' +p41843 +tp41844 +a(g41841 +g41843 +S'his' +p41845 +tp41846 +a(g41843 +g41845 +S'stamp' +p41847 +tp41848 +a(g41845 +g41847 +S'along' +p41849 +tp41850 +a(g41847 +g41849 +S'with' +p41851 +tp41852 +a(g41849 +g41851 +S'that' +p41853 +tp41854 +a(g41851 +g41853 +S'of' +p41855 +tp41856 +a(g41853 +g41855 +S'his' +p41857 +tp41858 +a(g41855 +g41857 +S'former' +p41859 +tp41860 +a(g41857 +g41859 +S'pupil' +p41861 +tp41862 +a(g41859 +g41861 +S'riesener,' +p41863 +tp41864 +a(g41861 +g41863 +S'and' +p41865 +tp41866 +a(g41863 +g41865 +S'two' +p41867 +tp41868 +a(g41865 +g41867 +S'others' +p41869 +tp41870 +a(g41867 +g41869 +S'place' +p41871 +tp41872 +a(g41869 +g41871 +S"oeben's" +p41873 +tp41874 +a(g41871 +g41873 +S'mark' +p41875 +tp41876 +a(g41873 +g41875 +S'beside' +p41877 +tp41878 +a(g41875 +g41877 +S'that' +p41879 +tp41880 +a(g41877 +g41879 +S'of' +p41881 +tp41882 +a(g41879 +g41881 +S'his' +p41883 +tp41884 +a(g41881 +g41883 +S'brother-in-law' +p41885 +tp41886 +a(g41883 +g41885 +S'roger' +p41887 +tp41888 +a(g41885 +g41887 +S'vandercruse' +p41889 +tp41890 +a(g41887 +g41889 +S'(called' +p41891 +tp41892 +a(g41889 +g41891 +S'lacroix).' +p41893 +tp41894 +a(g41891 +g41893 +S'this' +p41895 +tp41896 +a(g41893 +g41895 +S'two-drawer' +p41897 +tp41898 +a(g41895 +g41897 +S'commode,' +p41899 +tp41900 +a(g41897 +g41899 +S'with' +p41901 +tp41902 +a(g41899 +g41901 +S'its' +p41903 +tp41904 +a(g41901 +g41903 +S'sides' +p41905 +tp41906 +a(g41903 +g41905 +S'undulating' +p41907 +tp41908 +a(g41905 +g41907 +S'in' +p41909 +tp41910 +a(g41907 +g41909 +S'bombé' +p41911 +tp41912 +a(g41909 +g41911 +S'swellings,' +p41913 +tp41914 +a(g41911 +g41913 +S'defines' +p41915 +tp41916 +a(g41913 +g41915 +S'the' +p41917 +tp41918 +a(g41915 +g41917 +S'rococo' +p41919 +tp41920 +a(g41917 +g41919 +S'style' +p41921 +tp41922 +a(g41919 +g41921 +S'at' +p41923 +tp41924 +a(g41921 +g41923 +S'its' +p41925 +tp41926 +a(g41923 +g41925 +S'most' +p41927 +tp41928 +a(g41925 +g41927 +S'opulent.' +p41929 +tp41930 +a(g41927 +g41929 +S'like' +p41931 +tp41932 +a(g41929 +g41931 +S'the' +p41933 +tp41934 +a(g41931 +g41933 +S'chinese' +p41935 +tp41936 +a(g41933 +g41935 +S'porcelains' +p41937 +tp41938 +a(g41935 +g41937 +S'and' +p41939 +tp41940 +a(g41937 +g41939 +S'the' +p41941 +tp41942 +a(g41939 +g41941 +S'furniture' +p41943 +tp41944 +a(g41941 +g41943 +S'with' +p41945 +tp41946 +a(g41943 +g41945 +S'japanese' +p41947 +tp41948 +a(g41945 +g41947 +S'lacquer' +p41949 +tp41950 +a(g41947 +g41949 +S'in' +p41951 +tp41952 +a(g41949 +g41951 +S'these' +p41953 +tp41954 +a(g41951 +g41953 +S'rooms,' +p41955 +tp41956 +a(g41953 +g41955 +S'it' +p41957 +tp41958 +a(g41955 +g41957 +S'is' +p41959 +tp41960 +a(g41957 +g41959 +S'an' +p41961 +tp41962 +a(g41959 +g41961 +S'escapist' +p41963 +tp41964 +a(g41961 +g41963 +S'fantasy' +p41965 +tp41966 +a(g41963 +g41965 +S'based' +p41967 +tp41968 +a(g41965 +g41967 +S'on' +p41969 +tp41970 +a(g41967 +g41969 +S'exotic' +p41971 +tp41972 +a(g41969 +g41971 +S'cultures.' +p41973 +tp41974 +a(g41971 +g41973 +S'as' +p41975 +tp41976 +a(g41973 +g41975 +S'trade' +p41977 +tp41978 +a(g41975 +g41977 +S'with' +p41979 +tp41980 +a(g41977 +g41979 +S'the' +p41981 +tp41982 +a(g41979 +g41981 +S'far' +p41983 +tp41984 +a(g41981 +g41983 +S'east' +p41985 +tp41986 +a(g41983 +g41985 +S'increased,' +p41987 +tp41988 +a(g41985 +g41987 +S'importing' +p41989 +tp41990 +a(g41987 +g41989 +S'oriental' +p41991 +tp41992 +a(g41989 +g41991 +S'materials' +p41993 +tp41994 +a(g41991 +g41993 +S'and' +p41995 +tp41996 +a(g41993 +g41995 +S'customs' +p41997 +tp41998 +a(g41995 +g41997 +S'such' +p41999 +tp42000 +a(g41997 +g41999 +S'as' +p42001 +tp42002 +a(g41999 +g42001 +S'wearing' +p42003 +tp42004 +a(g42001 +g42003 +S'silk' +p42005 +tp42006 +a(g42003 +g42005 +S'and' +p42007 +tp42008 +a(g42005 +g42007 +S'drinking' +p42009 +tp42010 +a(g42007 +g42009 +S'tea' +p42011 +tp42012 +a(g42009 +g42011 +S'became' +p42013 +tp42014 +a(g42011 +g42013 +S'fads' +p42015 +tp42016 +a(g42013 +g42015 +S'in' +p42017 +tp42018 +a(g42015 +g42017 +S'eighteenth-century' +p42019 +tp42020 +a(g42017 +g42019 +S'europe.' +p42021 +tp42022 +a(g42019 +g42021 +S'in' +p42023 +tp42024 +a(g42021 +g42023 +S'the' +p42025 +tp42026 +a(g42023 +g42025 +S"commode's" +p42027 +tp42028 +a(g42025 +g42027 +S'veneer,' +p42029 +tp42030 +a(g42027 +g42029 +S'peonies,' +p42031 +tp42032 +a(g42029 +g42031 +S'which' +p42033 +tp42034 +a(g42031 +g42033 +S'are' +p42035 +tp42036 +a(g42033 +g42035 +S'oriental' +p42037 +tp42038 +a(g42035 +g42037 +S'blossoms,' +p42039 +tp42040 +a(g42037 +g42039 +S'emerge' +p42041 +tp42042 +a(g42039 +g42041 +S'from' +p42043 +tp42044 +a(g42041 +g42043 +S'horns' +p42045 +tp42046 +a(g42043 +g42045 +S'of' +p42047 +tp42048 +a(g42045 +g42047 +S'plenty' +p42049 +tp42050 +a(g42047 +g42049 +S'to' +p42051 +tp42052 +a(g42049 +g42051 +S'create' +p42053 +tp42054 +a(g42051 +g42053 +S'large' +p42055 +tp42056 +a(g42053 +g42055 +S'oval' +p42057 +tp42058 +a(g42055 +g42057 +S'shapes.' +p42059 +tp42060 +a(g42057 +g42059 +S'this' +p42061 +tp42062 +a(g42059 +g42061 +S'bold,' +p42063 +tp42064 +a(g42061 +g42063 +S'spotted' +p42065 +tp42066 +a(g42063 +g42065 +S'effect' +p42067 +tp42068 +a(g42065 +g42067 +S'continues' +p42069 +tp42070 +a(g42067 +g42069 +S'in' +p42071 +tp42072 +a(g42069 +g42071 +S'the' +p42073 +tp42074 +a(g42071 +g42073 +S'choice' +p42075 +tp42076 +a(g42073 +g42075 +S'of' +p42077 +tp42078 +a(g42075 +g42077 +S'a' +p42079 +tp42080 +a(g42077 +g42079 +S'splotchy' +p42081 +tp42082 +a(g42079 +g42081 +S'marble,' +p42083 +tp42084 +a(g42081 +g42083 +S'called' +p42085 +tp42086 +a(g42083 +g42085 +S'breccia,' +p42087 +tp42088 +a(g42085 +g42087 +S'for' +p42089 +tp42090 +a(g42087 +g42089 +S'the' +p42091 +tp42092 +a(g42089 +g42091 +S'top.' +p42093 +tp42094 +a(g42091 +g42093 +S'the' +p42095 +tp42096 +a(g42093 +g42095 +S'lively' +p42097 +tp42098 +a(g42095 +g42097 +S'gilt-bronze' +p42099 +tp42100 +a(g42097 +g42099 +S'mounts' +p42101 +tp42102 +a(g42099 +g42101 +S'include' +p42103 +tp42104 +a(g42101 +g42103 +S'cattails' +p42105 +tp42106 +a(g42103 +g42105 +S'as' +p42107 +tp42108 +a(g42105 +g42107 +S'well' +p42109 +tp42110 +a(g42107 +g42109 +S'as' +p42111 +tp42112 +a(g42109 +g42111 +S'chinese' +p42113 +tp42114 +a(g42111 +g42113 +S'men' +p42115 +tp42116 +a(g42113 +g42115 +S'holding' +p42117 +tp42118 +a(g42115 +g42117 +S'dragons,' +p42119 +tp42120 +a(g42117 +g42119 +S'parrots,' +p42121 +tp42122 +a(g42119 +g42121 +S'and' +p42123 +tp42124 +a(g42121 +g42123 +S'parasols.' +p42125 +tp42126 +a(g42123 +g42125 +S'two' +p42127 +tp42128 +a(g42125 +g42127 +S'fighting' +p42129 +tp42130 +a(g42127 +g42129 +S'dragons' +p42131 +tp42132 +a(g42129 +g42131 +S'guard' +p42133 +tp42134 +a(g42131 +g42133 +S'the' +p42135 +tp42136 +a(g42133 +g42135 +S'lower' +p42137 +tp42138 +a(g42135 +g42137 +S'keyhole.' +p42139 +tp42140 +a(g42137 +g42139 +S'two' +p42141 +tp42142 +a(g42139 +g42141 +S'more' +p42143 +tp42144 +a(g42141 +g42143 +S'dragons,' +p42145 +tp42146 +a(g42143 +g42145 +S'with' +p42147 +tp42148 +a(g42145 +g42147 +S'serpentine' +p42149 +tp42150 +a(g42147 +g42149 +S'tails' +p42151 +tp42152 +a(g42149 +g42151 +S'and' +p42153 +tp42154 +a(g42151 +g42153 +S'arrowhead' +p42155 +tp42156 +a(g42153 +g42155 +S'tongues,' +p42157 +tp42158 +a(g42155 +g42157 +S'fly' +p42159 +tp42160 +a(g42157 +g42159 +S'upside-down' +p42161 +tp42162 +a(g42159 +g42161 +S'across' +p42163 +tp42164 +a(g42161 +g42163 +S'the' +p42165 +tp42166 +a(g42163 +g42165 +S'bottom' +p42167 +tp42168 +a(g42165 +g42167 +S'edge' +p42169 +tp42170 +a(g42167 +g42169 +S'near' +p42171 +tp42172 +a(g42169 +g42171 +S'the' +p42173 +tp42174 +a(g42171 +g42173 +S'front' +p42175 +tp42176 +a(g42173 +g42175 +S'legs.' +p42177 +tp42178 +a(g42175 +g42177 +S'in' +p42179 +tp42180 +a(g42177 +g42179 +S'a' +p42181 +tp42182 +a(g42179 +g42181 +S'rococo' +p42183 +tp42184 +a(g42181 +g42183 +S'whimsy,' +p42185 +tp42186 +a(g42183 +g42185 +S'they' +p42187 +tp42188 +a(g42185 +g42187 +S'are' +p42189 +tp42190 +a(g42187 +g42189 +S'contrasted' +p42191 +tp42192 +a(g42189 +g42191 +S'to' +p42193 +tp42194 +a(g42191 +g42193 +S'each' +p42195 +tp42196 +a(g42193 +g42195 +S'other.' +p42197 +tp42198 +a(g42195 +g42197 +S'the' +p42199 +tp42200 +a(g42197 +g42199 +S'one' +p42201 +tp42202 +a(g42199 +g42201 +S'at' +p42203 +tp42204 +a(g42201 +g42203 +S'the' +p42205 +tp42206 +a(g42203 +g42205 +S'left' +p42207 +tp42208 +a(g42205 +g42207 +S'has' +p42209 +tp42210 +a(g42207 +g42209 +S'feathered' +p42211 +tp42212 +a(g42209 +g42211 +S'bird' +p42213 +tp42214 +a(g42211 +g42213 +S'wings,' +p42215 +tp42216 +a(g42213 +g42215 +S'but' +p42217 +tp42218 +a(g42215 +g42217 +S'the' +p42219 +tp42220 +a(g42217 +g42219 +S'dragon' +p42221 +tp42222 +a(g42219 +g42221 +S'on' +p42223 +tp42224 +a(g42221 +g42223 +S'the' +p42225 +tp42226 +a(g42223 +g42225 +S'right' +p42227 +tp42228 +a(g42225 +g42227 +S'flies' +p42229 +tp42230 +a(g42227 +g42229 +S'on' +p42231 +tp42232 +a(g42229 +g42231 +S'membraned' +p42233 +tp42234 +a(g42231 +g42233 +S'bat' +p42235 +tp42236 +a(g42233 +g42235 +S'wings.' +p42237 +tp42238 +a(g42235 +g42237 +S"roentgen's" +p42239 +tp42240 +a(g42237 +g42239 +S'passion' +p42241 +tp42242 +a(g42239 +g42241 +S'for' +p42243 +tp42244 +a(g42241 +g42243 +S'intricate' +p42245 +tp42246 +a(g42243 +g42245 +S'woodwork' +p42247 +tp42248 +a(g42245 +g42247 +S'was' +p42249 +tp42250 +a(g42247 +g42249 +S'matched' +p42251 +tp42252 +a(g42249 +g42251 +S'by' +p42253 +tp42254 +a(g42251 +g42253 +S'his' +p42255 +tp42256 +a(g42253 +g42255 +S'zeal' +p42257 +tp42258 +a(g42255 +g42257 +S'for' +p42259 +tp42260 +a(g42257 +g42259 +S'complicated' +p42261 +tp42262 +a(g42259 +g42261 +S'mechanisms.' +p42263 +tp42264 +a(g42261 +g42263 +S'this' +p42265 +tp42266 +a(g42263 +g42265 +S"desk's" +p42267 +tp42268 +a(g42265 +g42267 +S'drawers' +p42269 +tp42270 +a(g42267 +g42269 +S'automatically' +p42271 +tp42272 +a(g42269 +g42271 +S'unfold' +p42273 +tp42274 +a(g42271 +g42273 +S'into' +p42275 +tp42276 +a(g42273 +g42275 +S'complex' +p42277 +tp42278 +a(g42275 +g42277 +S'storage' +p42279 +tp42280 +a(g42277 +g42279 +S'areas' +p42281 +tp42282 +a(g42279 +g42281 +S'with' +p42283 +tp42284 +a(g42281 +g42283 +S'many' +p42285 +tp42286 +a(g42283 +g42285 +S'secret' +p42287 +tp42288 +a(g42285 +g42287 +S'compartments.' +p42289 +tp42290 +a(g42287 +g42289 +S'the' +p42291 +tp42292 +a(g42289 +g42291 +S'flat' +p42293 +tp42294 +a(g42291 +g42293 +S"top's" +p42295 +tp42296 +a(g42293 +g42295 +S'in' +p42297 +tp42298 +a(g42295 +g42297 +S'1779,' +p42299 +tp42300 +a(g42297 +g42299 +S'roentgen' +p42301 +tp42302 +a(g42299 +g42301 +S'had' +p42303 +tp42304 +a(g42301 +g42303 +S'sold' +p42305 +tp42306 +a(g42303 +g42305 +S'to' +p42307 +tp42308 +a(g42305 +g42307 +S'louis' +p42309 +tp42310 +a(g42307 +g42309 +S'xvi' +p42311 +tp42312 +a(g42309 +g42311 +S'a' +p42313 +tp42314 +a(g42311 +g42313 +S'huge,' +p42315 +tp42316 +a(g42313 +g42315 +S'upright' +p42317 +tp42318 +a(g42315 +g42317 +S'secretary-bookcase,' +p42319 +tp42320 +a(g42317 +g42319 +S'including' +p42321 +tp42322 +a(g42319 +g42321 +S'a' +p42323 +tp42324 +a(g42321 +g42323 +S'clock' +p42325 +tp42326 +a(g42323 +g42325 +S'and' +p42327 +tp42328 +a(g42325 +g42327 +S'musical' +p42329 +tp42330 +a(g42327 +g42329 +S'organ,' +p42331 +tp42332 +a(g42329 +g42331 +S'for' +p42333 +tp42334 +a(g42331 +g42333 +S'the' +p42335 +tp42336 +a(g42333 +g42335 +S'highest' +p42337 +tp42338 +a(g42335 +g42337 +S'price' +p42339 +tp42340 +a(g42337 +g42339 +S'paid' +p42341 +tp42342 +a(g42339 +g42341 +S'by' +p42343 +tp42344 +a(g42341 +g42343 +S'the' +p42345 +tp42346 +a(g42343 +g42345 +S'french' +p42347 +tp42348 +a(g42345 +g42347 +S'crown' +p42349 +tp42350 +a(g42347 +g42349 +S'for' +p42351 +tp42352 +a(g42349 +g42351 +S'furniture' +p42353 +tp42354 +a(g42351 +g42353 +S'during' +p42355 +tp42356 +a(g42353 +g42355 +S'the' +p42357 +tp42358 +a(g42355 +g42357 +S'eighteenth' +p42359 +tp42360 +a(g42357 +g42359 +S'century.' +p42361 +tp42362 +a(g42359 +g42361 +S'king' +p42363 +tp42364 +a(g42361 +g42363 +S'frederick' +p42365 +tp42366 +a(g42363 +g42365 +S'the' +p42367 +tp42368 +a(g42365 +g42367 +S'great' +p42369 +tp42370 +a(g42367 +g42369 +S'of' +p42371 +tp42372 +a(g42369 +g42371 +S'prussia' +p42373 +tp42374 +a(g42371 +g42373 +S'and' +p42375 +tp42376 +a(g42373 +g42375 +S'the' +p42377 +tp42378 +a(g42375 +g42377 +S'duke' +p42379 +tp42380 +a(g42377 +g42379 +S'of' +p42381 +tp42382 +a(g42379 +g42381 +S'lorraine' +p42383 +tp42384 +a(g42381 +g42383 +S'both' +p42385 +tp42386 +a(g42383 +g42385 +S'commissioned' +p42387 +tp42388 +a(g42385 +g42387 +S'simpler' +p42389 +tp42390 +a(g42387 +g42389 +S'variations' +p42391 +tp42392 +a(g42389 +g42391 +S'of' +p42393 +tp42394 +a(g42391 +g42393 +S'that' +p42395 +tp42396 +a(g42393 +g42395 +S'fantastic' +p42397 +tp42398 +a(g42395 +g42397 +S'piece.' +p42399 +tp42400 +a(g42397 +g42399 +S'the' +p42401 +tp42402 +a(g42399 +g42401 +S'national' +p42403 +tp42404 +a(g42401 +g42403 +S"gallery's" +p42405 +tp42406 +a(g42403 +g42405 +S'table' +p42407 +tp42408 +a(g42405 +g42407 +S'probably' +p42409 +tp42410 +a(g42407 +g42409 +S'incorporates' +p42411 +tp42412 +a(g42409 +g42411 +S'fragments' +p42413 +tp42414 +a(g42411 +g42413 +S'of' +p42415 +tp42416 +a(g42413 +g42415 +S'yet' +p42417 +tp42418 +a(g42415 +g42417 +S'another' +p42419 +tp42420 +a(g42417 +g42419 +S'version.' +p42421 +tp42422 +a(g42419 +g42421 +S'french' +p42423 +tp42424 +a(g42421 +g42423 +S'imitations' +p42425 +tp42426 +a(g42423 +g42425 +S'of' +p42427 +tp42428 +a(g42425 +g42427 +S'oriental' +p42429 +tp42430 +a(g42427 +g42429 +S'lacquer,' +p42431 +tp42432 +a(g42429 +g42431 +S'regardless' +p42433 +tp42434 +a(g42431 +g42433 +S'of' +p42435 +tp42436 +a(g42433 +g42435 +S'which' +p42437 +tp42438 +a(g42435 +g42437 +S'craftsmen' +p42439 +tp42440 +a(g42437 +g42439 +S'made' +p42441 +tp42442 +a(g42439 +g42441 +S'them,' +p42443 +tp42444 +a(g42441 +g42443 +S'are' +p42445 +tp42446 +a(g42443 +g42445 +S'called' +p42447 +tp42448 +a(g42445 +g42447 +S'the' +p42449 +tp42450 +a(g42447 +g42449 +S'landscapes' +p42451 +tp42452 +a(g42449 +g42451 +S'contrast' +p42453 +tp42454 +a(g42451 +g42453 +S'the' +p42455 +tp42456 +a(g42453 +g42455 +S'themes' +p42457 +tp42458 +a(g42455 +g42457 +S'of' +p42459 +tp42460 +a(g42457 +g42459 +S'war' +p42461 +tp42462 +a(g42459 +g42461 +S'and' +p42463 +tp42464 +a(g42461 +g42463 +S'peace.' +p42465 +tp42466 +a(g42463 +g42465 +S'on' +p42467 +tp42468 +a(g42465 +g42467 +S'the' +p42469 +tp42470 +a(g42467 +g42469 +S'cabinet' +p42471 +tp42472 +a(g42469 +g42471 +S'shown' +p42473 +tp42474 +a(g42471 +g42473 +S'in' +p42475 +tp42476 +a(g42473 +g42475 +S'this' +p42477 +tp42478 +a(g42475 +g42477 +S'tour,' +p42479 +tp42480 +a(g42477 +g42479 +S'mounted' +p42481 +tp42482 +a(g42479 +g42481 +S'chinese' +p42483 +tp42484 +a(g42481 +g42483 +S'soldiers' +p42485 +tp42486 +a(g42483 +g42485 +S'attack' +p42487 +tp42488 +a(g42485 +g42487 +S'a' +p42489 +tp42490 +a(g42487 +g42489 +S'building' +p42491 +tp42492 +a(g42489 +g42491 +S'with' +p42493 +tp42494 +a(g42491 +g42493 +S'a' +p42495 +tp42496 +a(g42493 +g42495 +S'closed' +p42497 +tp42498 +a(g42495 +g42497 +S'gate.' +p42499 +tp42500 +a(g42497 +g42499 +S'on' +p42501 +tp42502 +a(g42499 +g42501 +S'the' +p42503 +tp42504 +a(g42501 +g42503 +S'other' +p42505 +tp42506 +a(g42503 +g42505 +S'this' +p42507 +tp42508 +a(g42505 +g42507 +S'lady’s' +p42509 +tp42510 +a(g42507 +g42509 +S'diminutive' +p42511 +tp42512 +a(g42509 +g42511 +S'desk' +p42513 +tp42514 +a(g42511 +g42513 +S'has' +p42515 +tp42516 +a(g42513 +g42515 +S'bulging,' +p42517 +tp42518 +a(g42515 +g42517 +S'such' +p42519 +tp42520 +a(g42517 +g42519 +S'floral' +p42521 +tp42522 +a(g42519 +g42521 +S'veneer,' +p42523 +tp42524 +a(g42521 +g42523 +S'making' +p42525 +tp42526 +a(g42523 +g42525 +S'the' +p42527 +tp42528 +a(g42525 +g42527 +S'most' +p42529 +tp42530 +a(g42527 +g42529 +S'of' +p42531 +tp42532 +a(g42529 +g42531 +S'natural' +p42533 +tp42534 +a(g42531 +g42533 +S'wood' +p42535 +tp42536 +a(g42533 +g42535 +S'tones,' +p42537 +tp42538 +a(g42535 +g42537 +S'characterizes' +p42539 +tp42540 +a(g42537 +g42539 +S'the' +p42541 +tp42542 +a(g42539 +g42541 +S'style' +p42543 +tp42544 +a(g42541 +g42543 +S'of' +p42545 +tp42546 +a(g42543 +g42545 +S'specializing' +p42547 +tp42548 +a(g42545 +g42547 +S'in' +p42549 +tp42550 +a(g42547 +g42549 +S'small-scale' +p42551 +tp42552 +a(g42549 +g42551 +S'luxury' +p42553 +tp42554 +a(g42551 +g42553 +S'furniture,' +p42555 +tp42556 +a(g42553 +g42555 +S'bernard' +p42557 +tp42558 +a(g42555 +g42557 +S'was' +p42559 +tp42560 +a(g42557 +g42559 +S'exceptionally' +p42561 +tp42562 +a(g42559 +g42561 +S'versatile' +p42563 +tp42564 +a(g42561 +g42563 +S'in' +p42565 +tp42566 +a(g42563 +g42565 +S'technique.' +p42567 +tp42568 +a(g42565 +g42567 +S'he' +p42569 +tp42570 +a(g42567 +g42569 +S'used' +p42571 +tp42572 +a(g42569 +g42571 +S'wood' +p42573 +tp42574 +a(g42571 +g42573 +S'marquetry' +p42575 +tp42576 +a(g42573 +g42575 +S'and' +p42577 +tp42578 +a(g42575 +g42577 +S'oriental' +p42579 +tp42580 +a(g42577 +g42579 +S'lacquer,' +p42581 +tp42582 +a(g42579 +g42581 +S'and' +p42583 +tp42584 +a(g42581 +g42583 +S'is' +p42585 +tp42586 +a(g42583 +g42585 +S'likely' +p42587 +tp42588 +a(g42585 +g42587 +S'to' +p42589 +tp42590 +a(g42587 +g42589 +S'have' +p42591 +tp42592 +a(g42589 +g42591 +S'been' +p42593 +tp42594 +a(g42591 +g42593 +S'the' +p42595 +tp42596 +a(g42593 +g42595 +S'first' +p42597 +tp42598 +a(g42595 +g42597 +S'cabinetmaker' +p42599 +tp42600 +a(g42597 +g42599 +S'to' +p42601 +tp42602 +a(g42599 +g42601 +S'decorate' +p42603 +tp42604 +a(g42601 +g42603 +S'his' +p42605 +tp42606 +a(g42603 +g42605 +S'pieces' +p42607 +tp42608 +a(g42605 +g42607 +S'with' +p42609 +tp42610 +a(g42607 +g42609 +S'plaques' +p42611 +tp42612 +a(g42609 +g42611 +S'of' +p42613 +tp42614 +a(g42611 +g42613 +S'sévres' +p42615 +tp42616 +a(g42613 +g42615 +S'porcelain.' +p42617 +tp42618 +a(g42615 +g42617 +S'the' +p42619 +tp42620 +a(g42617 +g42619 +S'second' +p42621 +tp42622 +a(g42619 +g42621 +S'of' +p42623 +tp42624 +a(g42621 +g42623 +S'three' +p42625 +tp42626 +a(g42623 +g42625 +S'generations' +p42627 +tp42628 +a(g42625 +g42627 +S'of' +p42629 +tp42630 +a(g42627 +g42629 +S'parisian' +p42631 +tp42632 +a(g42629 +g42631 +S'furniture' +p42633 +tp42634 +a(g42631 +g42633 +S'makers' +p42635 +tp42636 +a(g42633 +g42635 +S'of' +p42637 +tp42638 +a(g42635 +g42637 +S'dutch' +p42639 +tp42640 +a(g42637 +g42639 +S'origin,' +p42641 +tp42642 +a(g42639 +g42641 +S'bernard' +p42643 +tp42644 +a(g42641 +g42643 +S'ii' +p42645 +tp42646 +a(g42643 +g42645 +S'van' +p42647 +tp42648 +a(g42645 +g42647 +S'risamburgh' +p42649 +tp42650 +a(g42647 +g42649 +S'was' +p42651 +tp42652 +a(g42649 +g42651 +S'among' +p42653 +tp42654 +a(g42651 +g42653 +S'the' +p42655 +tp42656 +a(g42653 +g42655 +S'finest' +p42657 +tp42658 +a(g42655 +g42657 +S'eighteenth-century' +p42659 +tp42660 +a(g42657 +g42659 +S'craftsmen.' +p42661 +tp42662 +a(g42659 +g42661 +S'bernard' +p42663 +tp42664 +a(g42661 +g42663 +S'ii' +p42665 +tp42666 +a(g42663 +g42665 +S'van' +p42667 +tp42668 +a(g42665 +g42667 +S'risamburgh' +p42669 +tp42670 +a(g42667 +g42669 +S'inked' +p42671 +tp42672 +a(g42669 +g42671 +S'his' +p42673 +tp42674 +a(g42671 +g42673 +S'initials' +p42675 +tp42676 +a(g42673 +g42675 +S'on' +p42677 +tp42678 +a(g42675 +g42677 +S'this' +p42679 +tp42680 +a(g42677 +g42679 +S'tiny' +p42681 +tp42682 +a(g42679 +g42681 +S'work' +p42683 +tp42684 +a(g42681 +g42683 +S'table.' +p42685 +tp42686 +a(g42683 +g42685 +S'maintaining' +p42687 +tp42688 +a(g42685 +g42687 +S'exceptionally' +p42689 +tp42690 +a(g42687 +g42689 +S'high' +p42691 +tp42692 +a(g42689 +g42691 +S'standards,' +p42693 +tp42694 +a(g42691 +g42693 +S'he' +p42695 +tp42696 +a(g42693 +g42695 +S'ran' +p42697 +tp42698 +a(g42695 +g42697 +S'a' +p42699 +tp42700 +a(g42697 +g42699 +S'small' +p42701 +tp42702 +a(g42699 +g42701 +S'studio' +p42703 +tp42704 +a(g42701 +g42703 +S'with' +p42705 +tp42706 +a(g42703 +g42705 +S'only' +p42707 +tp42708 +a(g42705 +g42707 +S'three' +p42709 +tp42710 +a(g42707 +g42709 +S'workbenches.' +p42711 +tp42712 +a(g42709 +g42711 +S'he' +p42713 +tp42714 +a(g42711 +g42713 +S'also' +p42715 +tp42716 +a(g42713 +g42715 +S'perfected' +p42717 +tp42718 +a(g42715 +g42717 +S'the' +p42719 +tp42720 +a(g42717 +g42719 +S'technique' +p42721 +tp42722 +a(g42719 +g42721 +S'of' +p42723 +tp42724 +a(g42721 +g42723 +S'using' +p42725 +tp42726 +a(g42723 +g42725 +S'an' +p42727 +tp42728 +a(g42725 +g42727 +S'end-cut' +p42729 +tp42730 +a(g42727 +g42729 +S'wood' +p42731 +tp42732 +a(g42729 +g42731 +S'that' +p42733 +tp42734 +a(g42731 +g42733 +S'produced' +p42735 +tp42736 +a(g42733 +g42735 +S'the' +p42737 +tp42738 +a(g42735 +g42737 +S'vibrant' +p42739 +tp42740 +a(g42737 +g42739 +S'whorls' +p42741 +tp42742 +a(g42739 +g42741 +S'and' +p42743 +tp42744 +a(g42741 +g42743 +S'textures' +p42745 +tp42746 +a(g42743 +g42745 +S'seen' +p42747 +tp42748 +a(g42745 +g42747 +S'on' +p42749 +tp42750 +a(g42747 +g42749 +S'the' +p42751 +tp42752 +a(g42749 +g42751 +S'floral' +p42753 +tp42754 +a(g42751 +g42753 +S'top' +p42755 +tp42756 +a(g42753 +g42755 +S'here.' +p42757 +tp42758 +a(g42755 +g42757 +S'louis' +p42759 +tp42760 +a(g42757 +g42759 +S'xv' +p42761 +tp42762 +a(g42759 +g42761 +S'was' +p42763 +tp42764 +a(g42761 +g42763 +S'among' +p42765 +tp42766 +a(g42763 +g42765 +S'the' +p42767 +tp42768 +a(g42765 +g42767 +S'purchasers' +p42769 +tp42770 +a(g42767 +g42769 +S'of' +p42771 +tp42772 +a(g42769 +g42771 +S'his' +p42773 +tp42774 +a(g42771 +g42773 +S'luxury' +p42775 +tp42776 +a(g42773 +g42775 +S'pieces,' +p42777 +tp42778 +a(g42775 +g42777 +S'and' +p42779 +tp42780 +a(g42777 +g42779 +S'a' +p42781 +tp42782 +a(g42779 +g42781 +S'table' +p42783 +tp42784 +a(g42781 +g42783 +S'similar' +p42785 +tp42786 +a(g42783 +g42785 +S'to' +p42787 +tp42788 +a(g42785 +g42787 +S'this' +p42789 +tp42790 +a(g42787 +g42789 +S'one' +p42791 +tp42792 +a(g42789 +g42791 +S'appears' +p42793 +tp42794 +a(g42791 +g42793 +S'in' +p42795 +tp42796 +a(g42793 +g42795 +S'several' +p42797 +tp42798 +a(g42795 +g42797 +S'portraits' +p42799 +tp42800 +a(g42797 +g42799 +S'by' +p42801 +tp42802 +a(g42799 +g42801 +S'françois' +p42803 +tp42804 +a(g42801 +g42803 +S'boucher' +p42805 +tp42806 +a(g42803 +g42805 +S'of' +p42807 +tp42808 +a(g42805 +g42807 +S'the' +p42809 +tp42810 +a(g42807 +g42809 +S"king's" +p42811 +tp42812 +a(g42809 +g42811 +S'mistress,' +p42813 +tp42814 +a(g42811 +g42813 +S'madame' +p42815 +tp42816 +a(g42813 +g42815 +S'de' +p42817 +tp42818 +a(g42815 +g42817 +S'pompadour.' +p42819 +tp42820 +a(g42817 +g42819 +S'this' +p42821 +tp42822 +a(g42819 +g42821 +S'table' +p42823 +tp42824 +a(g42821 +g42823 +S'has' +p42825 +tp42826 +a(g42823 +g42825 +S'been' +p42827 +tp42828 +a(g42825 +g42827 +S'modified.' +p42829 +tp42830 +a(g42827 +g42829 +S'although' +p42831 +tp42832 +a(g42829 +g42831 +S'the' +p42833 +tp42834 +a(g42831 +g42833 +S'veneer' +p42835 +tp42836 +a(g42833 +g42835 +S'is' +p42837 +tp42838 +a(g42835 +g42837 +S'intact,' +p42839 +tp42840 +a(g42837 +g42839 +S'the' +p42841 +tp42842 +a(g42839 +g42841 +S'interior' +p42843 +tp42844 +a(g42841 +g42843 +S'now' +p42845 +tp42846 +a(g42843 +g42845 +S'holds' +p42847 +tp42848 +a(g42845 +g42847 +S'a' +p42849 +tp42850 +a(g42847 +g42849 +S'deep' +p42851 +tp42852 +a(g42849 +g42851 +S'well' +p42853 +tp42854 +a(g42851 +g42853 +S'for' +p42855 +tp42856 +a(g42853 +g42855 +S'sewing' +p42857 +tp42858 +a(g42855 +g42857 +S'materials.' +p42859 +tp42860 +a(g42857 +g42859 +S'some' +p42861 +tp42862 +a(g42859 +g42861 +S'of' +p42863 +tp42864 +a(g42861 +g42863 +S'the' +p42865 +tp42866 +a(g42863 +g42865 +S'gilt-bronze' +p42867 +tp42868 +a(g42865 +g42867 +S'mounts' +p42869 +tp42870 +a(g42867 +g42869 +S'may' +p42871 +tp42872 +a(g42869 +g42871 +S'be' +p42873 +tp42874 +a(g42871 +g42873 +S'nineteenth-century' +p42875 +tp42876 +a(g42873 +g42875 +S'replacements,' +p42877 +tp42878 +a(g42875 +g42877 +S'and' +p42879 +tp42880 +a(g42877 +g42879 +S'the' +p42881 +tp42882 +a(g42879 +g42881 +S'tray' +p42883 +tp42884 +a(g42881 +g42883 +S'that' +p42885 +tp42886 +a(g42883 +g42885 +S'stabilizes' +p42887 +tp42888 +a(g42885 +g42887 +S'the' +p42889 +tp42890 +a(g42887 +g42889 +S'slender' +p42891 +tp42892 +a(g42889 +g42891 +S'legs' +p42893 +tp42894 +a(g42891 +g42893 +S'may' +p42895 +tp42896 +a(g42893 +g42895 +S'also' +p42897 +tp42898 +a(g42895 +g42897 +S'be' +p42899 +tp42900 +a(g42897 +g42899 +S'a' +p42901 +tp42902 +a(g42899 +g42901 +S'later' +p42903 +tp42904 +a(g42901 +g42903 +S'addition.' +p42905 +tp42906 +a(g42903 +g42905 +S'(the' +p42907 +tp42908 +a(g42905 +g42907 +S'foreign' +p42909 +tp42910 +a(g42907 +g42909 +S'names' +p42911 +tp42912 +a(g42909 +g42911 +S'of' +p42913 +tp42914 +a(g42911 +g42913 +S'many' +p42915 +tp42916 +a(g42913 +g42915 +S'craftsmen' +p42917 +tp42918 +a(g42915 +g42917 +S'active' +p42919 +tp42920 +a(g42917 +g42919 +S'in' +p42921 +tp42922 +a(g42919 +g42921 +S'france' +p42923 +tp42924 +a(g42921 +g42923 +S'can' +p42925 +tp42926 +a(g42923 +g42925 +S'be' +p42927 +tp42928 +a(g42925 +g42927 +S'explained,' +p42929 +tp42930 +a(g42927 +g42929 +S'in' +p42931 +tp42932 +a(g42929 +g42931 +S'part,' +p42933 +tp42934 +a(g42931 +g42933 +S'by' +p42935 +tp42936 +a(g42933 +g42935 +S'the' +p42937 +tp42938 +a(g42935 +g42937 +S"country's" +p42939 +tp42940 +a(g42937 +g42939 +S'religious' +p42941 +tp42942 +a(g42939 +g42941 +S'history.' +p42943 +tp42944 +a(g42941 +g42943 +S'in' +p42945 +tp42946 +a(g42943 +g42945 +S'1598,' +p42947 +tp42948 +a(g42945 +g42947 +S'the' +p42949 +tp42950 +a(g42947 +g42949 +S'edict' +p42951 +tp42952 +a(g42949 +g42951 +S'of' +p42953 +tp42954 +a(g42951 +g42953 +S'nantes' +p42955 +tp42956 +a(g42953 +g42955 +S'had' +p42957 +tp42958 +a(g42955 +g42957 +S'protected' +p42959 +tp42960 +a(g42957 +g42959 +S'the' +p42961 +tp42962 +a(g42959 +g42961 +S'french' +p42963 +tp42964 +a(g42961 +g42963 +S'protestants,' +p42965 +tp42966 +a(g42963 +g42965 +S'or' +p42967 +tp42968 +a(g42965 +g42967 +S'huguenots,' +p42969 +tp42970 +a(g42967 +g42969 +S'who' +p42971 +tp42972 +a(g42969 +g42971 +S'were' +p42973 +tp42974 +a(g42971 +g42973 +S'mostly' +p42975 +tp42976 +a(g42973 +g42975 +S'merchants' +p42977 +tp42978 +a(g42975 +g42977 +S'and' +p42979 +tp42980 +a(g42977 +g42979 +S'artisans.' +p42981 +tp42982 +a(g42979 +g42981 +S'when' +p42983 +tp42984 +a(g42981 +g42983 +S'louis' +p42985 +tp42986 +a(g42983 +g42985 +S'xiv' +p42987 +tp42988 +a(g42985 +g42987 +S'revoked' +p42989 +tp42990 +a(g42987 +g42989 +S'the' +p42991 +tp42992 +a(g42989 +g42991 +S'edict' +p42993 +tp42994 +a(g42991 +g42993 +S'in' +p42995 +tp42996 +a(g42993 +g42995 +S'1685,' +p42997 +tp42998 +a(g42995 +g42997 +S'however,' +p42999 +tp43000 +a(g42997 +g42999 +S'many' +p43001 +tp43002 +a(g42999 +g43001 +S'huguenots' +p43003 +tp43004 +a(g43001 +g43003 +S'fled.' +p43005 +tp43006 +a(g43003 +g43005 +S'to' +p43007 +tp43008 +a(g43005 +g43007 +S'make' +p43009 +tp43010 +a(g43007 +g43009 +S'up' +p43011 +tp43012 +a(g43009 +g43011 +S'for' +p43013 +tp43014 +a(g43011 +g43013 +S'the' +p43015 +tp43016 +a(g43013 +g43015 +S'shortage' +p43017 +tp43018 +a(g43015 +g43017 +S'of' +p43019 +tp43020 +a(g43017 +g43019 +S'native-born' +p43021 +tp43022 +a(g43019 +g43021 +S'craftsmen,' +p43023 +tp43024 +a(g43021 +g43023 +S'foreigners' +p43025 +tp43026 +a(g43023 +g43025 +S'immigrated' +p43027 +tp43028 +a(g43025 +g43027 +S'to' +p43029 +tp43030 +a(g43027 +g43029 +S'france.' +p43031 +tp43032 +a(g43029 +g43031 +S'the' +p43033 +tp43034 +a(g43031 +g43033 +S'gallery' +p43035 +tp43036 +a(g43033 +g43035 +S'displays' +p43037 +tp43038 +a(g43035 +g43037 +S'work' +p43039 +tp43040 +a(g43037 +g43039 +S'by' +p43041 +tp43042 +a(g43039 +g43041 +S'the' +p43043 +tp43044 +a(g43041 +g43043 +S'dutch-descended' +p43045 +tp43046 +a(g43043 +g43045 +S'van' +p43047 +tp43048 +a(g43045 +g43047 +S'risamburgh,' +p43049 +tp43050 +a(g43047 +g43049 +S'the' +p43051 +tp43052 +a(g43049 +g43051 +S'caffiéri' +p43053 +tp43054 +a(g43051 +g43053 +S'of' +p43055 +tp43056 +a(g43053 +g43055 +S'italian' +p43057 +tp43058 +a(g43055 +g43057 +S'origin,' +p43059 +tp43060 +a(g43057 +g43059 +S'and' +p43061 +tp43062 +a(g43059 +g43061 +S'the' +p43063 +tp43064 +a(g43061 +g43063 +S'german-born' +p43065 +tp43066 +a(g43063 +g43065 +S'baumhauer,' +p43067 +tp43068 +a(g43065 +g43067 +S'oeben,' +p43069 +tp43070 +a(g43067 +g43069 +S'carlin,' +p43071 +tp43072 +a(g43069 +g43071 +S'and' +p43073 +tp43074 +a(g43071 +g43073 +S'riesener.' +p43075 +tp43076 +a(g43073 +g43075 +S'conversely,' +p43077 +tp43078 +a(g43075 +g43077 +S'many' +p43079 +tp43080 +a(g43077 +g43079 +S'of' +p43081 +tp43082 +a(g43079 +g43081 +S'the' +p43083 +tp43084 +a(g43081 +g43083 +S'best' +p43085 +tp43086 +a(g43083 +g43085 +S'craftsmen' +p43087 +tp43088 +a(g43085 +g43087 +S'outside' +p43089 +tp43090 +a(g43087 +g43089 +S'france' +p43091 +tp43092 +a(g43089 +g43091 +S'came' +p43093 +tp43094 +a(g43091 +g43093 +S'from' +p43095 +tp43096 +a(g43093 +g43095 +S'refugee' +p43097 +tp43098 +a(g43095 +g43097 +S'huguenot' +p43099 +tp43100 +a(g43097 +g43099 +S'families,' +p43101 +tp43102 +a(g43099 +g43101 +S'including' +p43103 +tp43104 +a(g43101 +g43103 +S'the' +p43105 +tp43106 +a(g43103 +g43105 +S'colonial' +p43107 +tp43108 +a(g43105 +g43107 +S'boston' +p43109 +tp43110 +a(g43107 +g43109 +S'silversmith' +p43111 +tp43112 +a(g43109 +g43111 +S'paul' +p43113 +tp43114 +a(g43111 +g43113 +S'revere.)' +p43115 +tp43116 +a(g43113 +g43115 +S'a' +p43117 +tp43118 +a(g43115 +g43117 +S'ribboned,' +p43119 +tp43120 +a(g43117 +g43119 +S'floral' +p43121 +tp43122 +a(g43119 +g43121 +S'bouquet' +p43123 +tp43124 +a(g43121 +g43123 +S'executed' +p43125 +tp43126 +a(g43123 +g43125 +S'in' +p43127 +tp43128 +a(g43125 +g43127 +S'wood' +p43129 +tp43130 +a(g43127 +g43129 +S'marquetry' +p43131 +tp43132 +a(g43129 +g43131 +S'fills' +p43133 +tp43134 +a(g43131 +g43133 +S'the' +p43135 +tp43136 +a(g43133 +g43135 +S'top' +p43137 +tp43138 +a(g43135 +g43137 +S'of' +p43139 +tp43140 +a(g43137 +g43139 +S'this' +p43141 +tp43142 +a(g43139 +g43141 +S'table.' +p43143 +tp43144 +a(g43141 +g43143 +S'the' +p43145 +tp43146 +a(g43143 +g43145 +S'yellow' +p43147 +tp43148 +a(g43145 +g43147 +S'of' +p43149 +tp43150 +a(g43147 +g43149 +S'the' +p43151 +tp43152 +a(g43149 +g43151 +S'daffodils' +p43153 +tp43154 +a(g43151 +g43153 +S'has' +p43155 +tp43156 +a(g43153 +g43155 +S'faded,' +p43157 +tp43158 +a(g43155 +g43157 +S'but' +p43159 +tp43160 +a(g43157 +g43159 +S'traces' +p43161 +tp43162 +a(g43159 +g43161 +S'remain' +p43163 +tp43164 +a(g43161 +g43163 +S'of' +p43165 +tp43166 +a(g43163 +g43165 +S'the' +p43167 +tp43168 +a(g43165 +g43167 +S'green' +p43169 +tp43170 +a(g43167 +g43169 +S'and' +p43171 +tp43172 +a(g43169 +g43171 +S'red' +p43173 +tp43174 +a(g43171 +g43173 +S'dyes' +p43175 +tp43176 +a(g43173 +g43175 +S'used' +p43177 +tp43178 +a(g43175 +g43177 +S'to' +p43179 +tp43180 +a(g43177 +g43179 +S'stain' +p43181 +tp43182 +a(g43179 +g43181 +S'the' +p43183 +tp43184 +a(g43181 +g43183 +S'leaves' +p43185 +tp43186 +a(g43183 +g43185 +S'and' +p43187 +tp43188 +a(g43185 +g43187 +S'roses.' +p43189 +tp43190 +a(g43187 +g43189 +S'otherwise,' +p43191 +tp43192 +a(g43189 +g43191 +S'this' +p43193 +tp43194 +a(g43191 +g43193 +S"lady's" +p43195 +tp43196 +a(g43193 +g43195 +S'desk' +p43197 +tp43198 +a(g43195 +g43197 +S'is' +p43199 +tp43200 +a(g43197 +g43199 +S'extraordinarily' +p43201 +tp43202 +a(g43199 +g43201 +S'well' +p43203 +tp43204 +a(g43201 +g43203 +S'preserved.' +p43205 +tp43206 +a(g43203 +g43205 +S'when' +p43207 +tp43208 +a(g43205 +g43207 +S'the' +p43209 +tp43210 +a(g43207 +g43209 +S'key' +p43211 +tp43212 +a(g43209 +g43211 +S'is' +p43213 +tp43214 +a(g43211 +g43213 +S'inserted,' +p43215 +tp43216 +a(g43213 +g43215 +S'springs' +p43217 +tp43218 +a(g43215 +g43217 +S'move' +p43219 +tp43220 +a(g43217 +g43219 +S'the' +p43221 +tp43222 +a(g43219 +g43221 +S'top' +p43223 +tp43224 +a(g43221 +g43223 +S'back' +p43225 +tp43226 +a(g43223 +g43225 +S'halfway' +p43227 +tp43228 +a(g43225 +g43227 +S'while' +p43229 +tp43230 +a(g43227 +g43229 +S'a' +p43231 +tp43232 +a(g43229 +g43231 +S'writing' +p43233 +tp43234 +a(g43231 +g43233 +S'compartment' +p43235 +tp43236 +a(g43233 +g43235 +S'glides' +p43237 +tp43238 +a(g43235 +g43237 +S'forward,' +p43239 +tp43240 +a(g43237 +g43239 +S'doubling' +p43241 +tp43242 +a(g43239 +g43241 +S'the' +p43243 +tp43244 +a(g43241 +g43243 +S'work' +p43245 +tp43246 +a(g43243 +g43245 +S'area.' +p43247 +tp43248 +a(g43245 +g43247 +S'deep' +p43249 +tp43250 +a(g43247 +g43249 +S'drawers' +p43251 +tp43252 +a(g43249 +g43251 +S'on' +p43253 +tp43254 +a(g43251 +g43253 +S'both' +p43255 +tp43256 +a(g43253 +g43255 +S'sides' +p43257 +tp43258 +a(g43255 +g43257 +S'are' +p43259 +tp43260 +a(g43257 +g43259 +S'simultaneously' +p43261 +tp43262 +a(g43259 +g43261 +S'unlocked' +p43263 +tp43264 +a(g43261 +g43263 +S'and' +p43265 +tp43266 +a(g43263 +g43265 +S'then' +p43267 +tp43268 +a(g43265 +g43267 +S'can' +p43269 +tp43270 +a(g43267 +g43269 +S'be' +p43271 +tp43272 +a(g43269 +g43271 +S'pulled' +p43273 +tp43274 +a(g43271 +g43273 +S'out' +p43275 +tp43276 +a(g43273 +g43275 +S'manually.' +p43277 +tp43278 +a(g43275 +g43277 +S'the' +p43279 +tp43280 +a(g43277 +g43279 +S'owner,' +p43281 +tp43282 +a(g43279 +g43281 +S'when' +p43283 +tp43284 +a(g43281 +g43283 +S'finished' +p43285 +tp43286 +a(g43283 +g43285 +S'with' +p43287 +tp43288 +a(g43285 +g43287 +S'her' +p43289 +tp43290 +a(g43287 +g43289 +S'correspondence' +p43291 +tp43292 +a(g43289 +g43291 +S'or' +p43293 +tp43294 +a(g43291 +g43293 +S'household' +p43295 +tp43296 +a(g43293 +g43295 +S'accounts,' +p43297 +tp43298 +a(g43295 +g43297 +S'could' +p43299 +tp43300 +a(g43297 +g43299 +S'lift' +p43301 +tp43302 +a(g43299 +g43301 +S'the' +p43303 +tp43304 +a(g43301 +g43303 +S'hinged' +p43305 +tp43306 +a(g43303 +g43305 +S'writing' +p43307 +tp43308 +a(g43305 +g43307 +S'surface' +p43309 +tp43310 +a(g43307 +g43309 +S'to' +p43311 +tp43312 +a(g43309 +g43311 +S'reveal' +p43313 +tp43314 +a(g43311 +g43313 +S'the' +p43315 +tp43316 +a(g43313 +g43315 +S'mirror' +p43317 +tp43318 +a(g43315 +g43317 +S'on' +p43319 +tp43320 +a(g43317 +g43319 +S'its' +p43321 +tp43322 +a(g43319 +g43321 +S'back' +p43323 +tp43324 +a(g43321 +g43323 +S'and' +p43325 +tp43326 +a(g43323 +g43325 +S'compartments' +p43327 +tp43328 +a(g43325 +g43327 +S'for' +p43329 +tp43330 +a(g43327 +g43329 +S'cosmetics' +p43331 +tp43332 +a(g43329 +g43331 +S'below.' +p43333 +tp43334 +a(g43331 +g43333 +S'jean-françois' +p43335 +tp43336 +a(g43333 +g43335 +S'leleu,' +p43337 +tp43338 +a(g43335 +g43337 +S'who' +p43339 +tp43340 +a(g43337 +g43339 +S'signed' +p43341 +tp43342 +a(g43339 +g43341 +S'this' +p43343 +tp43344 +a(g43341 +g43343 +S'work,' +p43345 +tp43346 +a(g43343 +g43345 +S'also' +p43347 +tp43348 +a(g43345 +g43347 +S'supplied' +p43349 +tp43350 +a(g43347 +g43349 +S'furniture' +p43351 +tp43352 +a(g43349 +g43351 +S'for' +p43353 +tp43354 +a(g43351 +g43353 +S'the' +p43355 +tp43356 +a(g43353 +g43355 +S'pleasure' +p43357 +tp43358 +a(g43355 +g43357 +S'pavilion' +p43359 +tp43360 +a(g43357 +g43359 +S'built' +p43361 +tp43362 +a(g43359 +g43361 +S'in' +p43363 +tp43364 +a(g43361 +g43363 +S'1770-1771' +p43365 +tp43366 +a(g43363 +g43365 +S'at' +p43367 +tp43368 +a(g43365 +g43367 +S'louveciennes' +p43369 +tp43370 +a(g43367 +g43369 +S'for' +p43371 +tp43372 +a(g43369 +g43371 +S'madame' +p43373 +tp43374 +a(g43371 +g43373 +S'du' +p43375 +tp43376 +a(g43373 +g43375 +S'barry,' +p43377 +tp43378 +a(g43375 +g43377 +S'the' +p43379 +tp43380 +a(g43377 +g43379 +S'last' +p43381 +tp43382 +a(g43379 +g43381 +S'mistress' +p43383 +tp43384 +a(g43381 +g43383 +S'of' +p43385 +tp43386 +a(g43383 +g43385 +S'louis' +p43387 +tp43388 +a(g43385 +g43387 +S'xv.' +p43389 +tp43390 +a(g43387 +g43389 +S'the' +p43391 +tp43392 +a(g43389 +g43391 +S'decoration' +p43393 +tp43394 +a(g43391 +g43393 +S'at' +p43395 +tp43396 +a(g43393 +g43395 +S'louveciennes' +p43397 +tp43398 +a(g43395 +g43397 +S'presented' +p43399 +tp43400 +a(g43397 +g43399 +S'neoclassicism' +p43401 +tp43402 +a(g43399 +g43401 +S'as' +p43403 +tp43404 +a(g43401 +g43403 +S'the' +p43405 +tp43406 +a(g43403 +g43405 +S'approved' +p43407 +tp43408 +a(g43405 +g43407 +S'court' +p43409 +tp43410 +a(g43407 +g43409 +S'style.' +p43411 +tp43412 +a(g43409 +g43411 +S'the' +p43413 +tp43414 +a(g43411 +g43413 +S'straight' +p43415 +tp43416 +a(g43413 +g43415 +S'lines' +p43417 +tp43418 +a(g43415 +g43417 +S'and' +p43419 +tp43420 +a(g43417 +g43419 +S'perfect' +p43421 +tp43422 +a(g43419 +g43421 +S'circles' +p43423 +tp43424 +a(g43421 +g43423 +S'of' +p43425 +tp43426 +a(g43423 +g43425 +S'this' +p43427 +tp43428 +a(g43425 +g43427 +S'early,' +p43429 +tp43430 +a(g43427 +g43429 +S'transitional-style' +p43431 +tp43432 +a(g43429 +g43431 +S'table' +p43433 +tp43434 +a(g43431 +g43433 +S'are' +p43435 +tp43436 +a(g43433 +g43435 +S'imposed' +p43437 +tp43438 +a(g43435 +g43437 +S'on' +p43439 +tp43440 +a(g43437 +g43439 +S'a' +p43441 +tp43442 +a(g43439 +g43441 +S'curving,' +p43443 +tp43444 +a(g43441 +g43443 +S'rococo' +p43445 +tp43446 +a(g43443 +g43445 +S'silhouette.' +p43447 +tp43448 +a(g43445 +g43447 +S'leleu' +p43449 +tp43450 +a(g43447 +g43449 +S'gained' +p43451 +tp43452 +a(g43449 +g43451 +S'his' +p43453 +tp43454 +a(g43451 +g43453 +S'expertise' +p43455 +tp43456 +a(g43453 +g43455 +S'in' +p43457 +tp43458 +a(g43455 +g43457 +S'pictorial' +p43459 +tp43460 +a(g43457 +g43459 +S'veneer' +p43461 +tp43462 +a(g43459 +g43461 +S'from' +p43463 +tp43464 +a(g43461 +g43463 +S'his' +p43465 +tp43466 +a(g43463 +g43465 +S'teacher,' +p43467 +tp43468 +a(g43465 +g43467 +S'jean-françois' +p43469 +tp43470 +a(g43467 +g43469 +S'oeben.' +p43471 +tp43472 +a(g43469 +g43471 +S'for' +p43473 +tp43474 +a(g43471 +g43473 +S'a' +p43475 +tp43476 +a(g43473 +g43475 +S'man' +p43477 +tp43478 +a(g43475 +g43477 +S'who' +p43479 +tp43480 +a(g43477 +g43479 +S'could' +p43481 +tp43482 +a(g43479 +g43481 +S'invent' +p43483 +tp43484 +a(g43481 +g43483 +S'such' +p43485 +tp43486 +a(g43483 +g43485 +S'refined' +p43487 +tp43488 +a(g43485 +g43487 +S'designs,' +p43489 +tp43490 +a(g43487 +g43489 +S'leleu' +p43491 +tp43492 +a(g43489 +g43491 +S'had' +p43493 +tp43494 +a(g43491 +g43493 +S'a' +p43495 +tp43496 +a(g43493 +g43495 +S'violent' +p43497 +tp43498 +a(g43495 +g43497 +S'temper.' +p43499 +tp43500 +a(g43497 +g43499 +S'when' +p43501 +tp43502 +a(g43499 +g43501 +S'a' +p43503 +tp43504 +a(g43501 +g43503 +S'fellow' +p43505 +tp43506 +a(g43503 +g43505 +S'apprentice,' +p43507 +tp43508 +a(g43505 +g43507 +S'the' +p43509 +tp43510 +a(g43507 +g43509 +S'maker' +p43511 +tp43512 +a(g43509 +g43511 +S'of' +p43513 +tp43514 +a(g43511 +g43513 +S'this' +p43515 +tp43516 +a(g43513 +g43515 +S'magnificent' +p43517 +tp43518 +a(g43515 +g43517 +S'writing' +p43519 +tp43520 +a(g43517 +g43519 +S'table' +p43521 +tp43522 +a(g43519 +g43521 +S'is' +p43523 +tp43524 +a(g43521 +g43523 +S'as' +p43525 +tp43526 +a(g43523 +g43525 +S'cabinetmaker' +p43527 +tp43528 +a(g43525 +g43527 +S'to' +p43529 +tp43530 +a(g43527 +g43529 +S'the' +p43531 +tp43532 +a(g43529 +g43531 +S'young' +p43533 +tp43534 +a(g43531 +g43533 +S"king's" +p43535 +tp43536 +a(g43533 +g43535 +S'regent,' +p43537 +tp43538 +a(g43535 +g43537 +S'the' +p43539 +tp43540 +a(g43537 +g43539 +S'duc' +p43541 +tp43542 +a(g43539 +g43541 +S"d'orleans," +p43543 +tp43544 +a(g43541 +g43543 +S'and' +p43545 +tp43546 +a(g43543 +g43545 +S'later' +p43547 +tp43548 +a(g43545 +g43547 +S'to' +p43549 +tp43550 +a(g43547 +g43549 +S'the' +p43551 +tp43552 +a(g43549 +g43551 +S'king' +p43553 +tp43554 +a(g43551 +g43553 +S'himself,' +p43555 +tp43556 +a(g43553 +g43555 +S'cressent' +p43557 +tp43558 +a(g43555 +g43557 +S'may' +p43559 +tp43560 +a(g43557 +g43559 +S'have' +p43561 +tp43562 +a(g43559 +g43561 +S'grown' +p43563 +tp43564 +a(g43561 +g43563 +S'arrogant.' +p43565 +tp43566 +a(g43563 +g43565 +S'he' +p43567 +tp43568 +a(g43565 +g43567 +S'was' +p43569 +tp43570 +a(g43567 +g43569 +S'fined' +p43571 +tp43572 +a(g43569 +g43571 +S'three' +p43573 +tp43574 +a(g43571 +g43573 +S'times' +p43575 +tp43576 +a(g43573 +g43575 +S'by' +p43577 +tp43578 +a(g43575 +g43577 +S'tribunals' +p43579 +tp43580 +a(g43577 +g43579 +S'for' +p43581 +tp43582 +a(g43579 +g43581 +S'casting' +p43583 +tp43584 +a(g43581 +g43583 +S'or' +p43585 +tp43586 +a(g43583 +g43585 +S'gilding' +p43587 +tp43588 +a(g43585 +g43587 +S'his' +p43589 +tp43590 +a(g43587 +g43589 +S'own' +p43591 +tp43592 +a(g43589 +g43591 +S'bronze' +p43593 +tp43594 +a(g43591 +g43593 +S'mounts,' +p43595 +tp43596 +a(g43593 +g43595 +S'which,' +p43597 +tp43598 +a(g43595 +g43597 +S'by' +p43599 +tp43600 +a(g43597 +g43599 +S'law,' +p43601 +tp43602 +a(g43599 +g43601 +S'should' +p43603 +tp43604 +a(g43601 +g43603 +S'have' +p43605 +tp43606 +a(g43603 +g43605 +S'been' +p43607 +tp43608 +a(g43605 +g43607 +S'done' +p43609 +tp43610 +a(g43607 +g43609 +S'by' +p43611 +tp43612 +a(g43609 +g43611 +S'specialists' +p43613 +tp43614 +a(g43611 +g43613 +S'in' +p43615 +tp43616 +a(g43613 +g43615 +S'metalwork.' +p43617 +tp43618 +a(g43615 +g43617 +S'the' +p43619 +tp43620 +a(g43617 +g43619 +S'overall' +p43621 +tp43622 +a(g43619 +g43621 +S'silhouettes' +p43623 +tp43624 +a(g43621 +g43623 +S'of' +p43625 +tp43626 +a(g43623 +g43625 +S"cressent's" +p43627 +tp43628 +a(g43625 +g43627 +S'furniture' +p43629 +tp43630 +a(g43627 +g43629 +S'flow' +p43631 +tp43632 +a(g43629 +g43631 +S'in' +p43633 +tp43634 +a(g43631 +g43633 +S'fluid,' +p43635 +tp43636 +a(g43633 +g43635 +S'sculptural' +p43637 +tp43638 +a(g43635 +g43637 +S'masses.' +p43639 +tp43640 +a(g43637 +g43639 +S'the' +p43641 +tp43642 +a(g43639 +g43641 +S'gilt-bronze' +p43643 +tp43644 +a(g43641 +g43643 +S'mounts,' +p43645 +tp43646 +a(g43643 +g43645 +S'such' +p43647 +tp43648 +a(g43645 +g43647 +S'as' +p43649 +tp43650 +a(g43647 +g43649 +S'the' +p43651 +tp43652 +a(g43649 +g43651 +S'four' +p43653 +tp43654 +a(g43651 +g43653 +S'female' +p43655 +tp43656 +a(g43653 +g43655 +S'busts' +p43657 +tp43658 +a(g43655 +g43657 +S'emerging' +p43659 +tp43660 +a(g43657 +g43659 +S'gracefully' +p43661 +tp43662 +a(g43659 +g43661 +S'from' +p43663 +tp43664 +a(g43661 +g43663 +S'this' +p43665 +tp43666 +a(g43663 +g43665 +S"table's" +p43667 +tp43668 +a(g43665 +g43667 +S'corners,' +p43669 +tp43670 +a(g43667 +g43669 +S'reveal' +p43671 +tp43672 +a(g43669 +g43671 +S'the' +p43673 +tp43674 +a(g43671 +g43673 +S'finest' +p43675 +tp43676 +a(g43673 +g43675 +S'modeling' +p43677 +tp43678 +a(g43675 +g43677 +S'and' +p43679 +tp43680 +a(g43677 +g43679 +S'hand-finishing.' +p43681 +tp43682 +a(g43679 +g43681 +S'details' +p43683 +tp43684 +a(g43681 +g43683 +S'of' +p43685 +tp43686 +a(g43683 +g43685 +S'the' +p43687 +tp43688 +a(g43685 +g43687 +S"women's" +p43689 +tp43690 +a(g43687 +g43689 +S'faces' +p43691 +tp43692 +a(g43689 +g43691 +S'and' +p43693 +tp43694 +a(g43691 +g43693 +S'lace' +p43695 +tp43696 +a(g43693 +g43695 +S'caps' +p43697 +tp43698 +a(g43695 +g43697 +S'were' +p43699 +tp43700 +a(g43697 +g43699 +S'engraved' +p43701 +tp43702 +a(g43699 +g43701 +S'or' +p43703 +tp43704 +a(g43701 +g43703 +S'chased' +p43705 +tp43706 +a(g43703 +g43705 +S'with' +p43707 +tp43708 +a(g43705 +g43707 +S'stippled,' +p43709 +tp43710 +a(g43707 +g43709 +S'shimmering' +p43711 +tp43712 +a(g43709 +g43711 +S'textures.' +p43713 +tp43714 +a(g43711 +g43713 +S'arabesques' +p43715 +tp43716 +a(g43713 +g43715 +S'of' +p43717 +tp43718 +a(g43715 +g43717 +S'curling' +p43719 +tp43720 +a(g43717 +g43719 +S'lobes' +p43721 +tp43722 +a(g43719 +g43721 +S'and' +p43723 +tp43724 +a(g43721 +g43723 +S'cusps' +p43725 +tp43726 +a(g43723 +g43725 +S'characterized' +p43727 +tp43728 +a(g43725 +g43727 +S'earlier' +p43729 +tp43730 +a(g43727 +g43729 +S'rococo' +p43731 +tp43732 +a(g43729 +g43731 +S'design.' +p43733 +tp43734 +a(g43731 +g43733 +S'for' +p43735 +tp43736 +a(g43733 +g43735 +S'variety' +p43737 +tp43738 +a(g43735 +g43737 +S'here,' +p43739 +tp43740 +a(g43737 +g43739 +S'the' +p43741 +tp43742 +a(g43739 +g43741 +S'pale' +p43743 +tp43744 +a(g43741 +g43743 +S'tulipwood' +p43745 +tp43746 +a(g43743 +g43745 +S'veneer' +p43747 +tp43748 +a(g43745 +g43747 +S'of' +p43749 +tp43750 +a(g43747 +g43749 +S'the' +p43751 +tp43752 +a(g43749 +g43751 +S'background' +p43753 +tp43754 +a(g43751 +g43753 +S'is' +p43755 +tp43756 +a(g43753 +g43755 +S'arranged' +p43757 +tp43758 +a(g43755 +g43757 +S'in' +p43759 +tp43760 +a(g43757 +g43759 +S'fan' +p43761 +tp43762 +a(g43759 +g43761 +S'shapes' +p43763 +tp43764 +a(g43761 +g43763 +S'within' +p43765 +tp43766 +a(g43763 +g43765 +S'the' +p43767 +tp43768 +a(g43765 +g43767 +S'dark' +p43769 +tp43770 +a(g43767 +g43769 +S'scrolls' +p43771 +tp43772 +a(g43769 +g43771 +S'of' +p43773 +tp43774 +a(g43771 +g43773 +S'purple-wood.' +p43775 +tp43776 +a(g43773 +g43775 +S'later,' +p43777 +tp43778 +a(g43775 +g43777 +S'in' +p43779 +tp43780 +a(g43777 +g43779 +S'the' +p43781 +tp43782 +a(g43779 +g43781 +S'mid-eighteenth' +p43783 +tp43784 +a(g43781 +g43783 +S'century,' +p43785 +tp43786 +a(g43783 +g43785 +S'floral' +p43787 +tp43788 +a(g43785 +g43787 +S'patterns' +p43789 +tp43790 +a(g43787 +g43789 +S'would' +p43791 +tp43792 +a(g43789 +g43791 +S'become' +p43793 +tp43794 +a(g43791 +g43793 +S'fashionable.' +p43795 +tp43796 +a(g43793 +g43795 +S'somewhat' +p43797 +tp43798 +a(g43795 +g43797 +S'larger' +p43799 +tp43800 +a(g43797 +g43799 +S'than' +p43801 +tp43802 +a(g43799 +g43801 +S'most' +p43803 +tp43804 +a(g43801 +g43803 +S'ladies’' +p43805 +tp43806 +a(g43803 +g43805 +S'desks,' +p43807 +tp43808 +a(g43805 +g43807 +S'this' +p43809 +tp43810 +a(g43807 +g43809 +S'one' +p43811 +tp43812 +a(g43809 +g43811 +S'has' +p43813 +tp43814 +a(g43811 +g43813 +S'steel' +p43815 +tp43816 +a(g43813 +g43815 +S'rods' +p43817 +tp43818 +a(g43815 +g43817 +S'that,' +p43819 +tp43820 +a(g43817 +g43819 +S'when' +p43821 +tp43822 +a(g43819 +g43821 +S'pulled' +p43823 +tp43824 +a(g43821 +g43823 +S'out,' +p43825 +tp43826 +a(g43823 +g43825 +S'support' +p43827 +tp43828 +a(g43825 +g43827 +S'its' +p43829 +tp43830 +a(g43827 +g43829 +S'opened' +p43831 +tp43832 +a(g43829 +g43831 +S'lid' +p43833 +tp43834 +a(g43831 +g43833 +S'as' +p43835 +tp43836 +a(g43833 +g43835 +S'a' +p43837 +tp43838 +a(g43835 +g43837 +S'writing' +p43839 +tp43840 +a(g43837 +g43839 +S'surface.' +p43841 +tp43842 +a(g43839 +g43841 +S'the' +p43843 +tp43844 +a(g43841 +g43843 +S'interior' +p43845 +tp43846 +a(g43843 +g43845 +S'has' +p43847 +tp43848 +a(g43845 +g43847 +S'two' +p43849 +tp43850 +a(g43847 +g43849 +S'tiers' +p43851 +tp43852 +a(g43849 +g43851 +S'of' +p43853 +tp43854 +a(g43851 +g43853 +S'drawers;' +p43855 +tp43856 +a(g43853 +g43855 +S'the' +p43857 +tp43858 +a(g43855 +g43857 +S'lower' +p43859 +tp43860 +a(g43857 +g43859 +S'set,' +p43861 +tp43862 +a(g43859 +g43861 +S'hidden' +p43863 +tp43864 +a(g43861 +g43863 +S'beneath' +p43865 +tp43866 +a(g43863 +g43865 +S'a' +p43867 +tp43868 +a(g43865 +g43867 +S'sliding,' +p43869 +tp43870 +a(g43867 +g43869 +S'false' +p43871 +tp43872 +a(g43869 +g43871 +S'bottom,' +p43873 +tp43874 +a(g43871 +g43873 +S'protected' +p43875 +tp43876 +a(g43873 +g43875 +S'valuables' +p43877 +tp43878 +a(g43875 +g43877 +S'and' +p43879 +tp43880 +a(g43877 +g43879 +S'private' +p43881 +tp43882 +a(g43879 +g43881 +S'papers.' +p43883 +tp43884 +a(g43881 +g43883 +S'trained' +p43885 +tp43886 +a(g43883 +g43885 +S'by' +p43887 +tp43888 +a(g43885 +g43887 +S'his' +p43889 +tp43890 +a(g43887 +g43889 +S'father,' +p43891 +tp43892 +a(g43889 +g43891 +S'pierre' +p43893 +tp43894 +a(g43891 +g43893 +S'ii' +p43895 +tp43896 +a(g43893 +g43895 +S'migeon' +p43897 +tp43898 +a(g43895 +g43897 +S'apparently' +p43899 +tp43900 +a(g43897 +g43899 +S'never' +p43901 +tp43902 +a(g43899 +g43901 +S'officially' +p43903 +tp43904 +a(g43901 +g43903 +S'became' +p43905 +tp43906 +a(g43903 +g43905 +S'a' +p43907 +tp43908 +a(g43905 +g43907 +S'master' +p43909 +tp43910 +a(g43907 +g43909 +S'craftsman,' +p43911 +tp43912 +a(g43909 +g43911 +S'presumably' +p43913 +tp43914 +a(g43911 +g43913 +S'because' +p43915 +tp43916 +a(g43913 +g43915 +S'he' +p43917 +tp43918 +a(g43915 +g43917 +S'was' +p43919 +tp43920 +a(g43917 +g43919 +S'a' +p43921 +tp43922 +a(g43919 +g43921 +S'calvinist,' +p43923 +tp43924 +a(g43921 +g43923 +S'and' +p43925 +tp43926 +a(g43923 +g43925 +S'guild' +p43927 +tp43928 +a(g43925 +g43927 +S'regulations' +p43929 +tp43930 +a(g43927 +g43929 +S'in' +p43931 +tp43932 +a(g43929 +g43931 +S'paris' +p43933 +tp43934 +a(g43931 +g43933 +S'prohibited' +p43935 +tp43936 +a(g43933 +g43935 +S'membership' +p43937 +tp43938 +a(g43935 +g43937 +S'by' +p43939 +tp43940 +a(g43937 +g43939 +S'protestants.' +p43941 +tp43942 +a(g43939 +g43941 +S'even' +p43943 +tp43944 +a(g43941 +g43943 +S'so,' +p43945 +tp43946 +a(g43943 +g43945 +S'he' +p43947 +tp43948 +a(g43945 +g43947 +S'was' +p43949 +tp43950 +a(g43947 +g43949 +S'a' +p43951 +tp43952 +a(g43949 +g43951 +S'favorite' +p43953 +tp43954 +a(g43951 +g43953 +S'of' +p43955 +tp43956 +a(g43953 +g43955 +S'madame' +p43957 +tp43958 +a(g43955 +g43957 +S'de' +p43959 +tp43960 +a(g43957 +g43959 +S'pompadour.' +p43961 +tp43962 +a(g43959 +g43961 +S'migeon' +p43963 +tp43964 +a(g43961 +g43963 +S'was' +p43965 +tp43966 +a(g43963 +g43965 +S'a' +p43967 +tp43968 +a(g43965 +g43967 +S'in' +p43969 +tp43970 +a(g43967 +g43969 +S'a' +p43971 +tp43972 +a(g43969 +g43971 +S'molten' +p43973 +tp43974 +a(g43971 +g43973 +S'state' +p43975 +tp43976 +a(g43973 +g43975 +S'brass' +p43977 +tp43978 +a(g43975 +g43977 +S'can' +p43979 +tp43980 +a(g43977 +g43979 +S'be' +p43981 +tp43982 +a(g43979 +g43981 +S'cast' +p43983 +tp43984 +a(g43981 +g43983 +S'into' +p43985 +tp43986 +a(g43983 +g43985 +S'intricate' +p43987 +tp43988 +a(g43985 +g43987 +S'shapes' +p43989 +tp43990 +a(g43987 +g43989 +S'like' +p43991 +tp43992 +a(g43989 +g43991 +S'this' +p43993 +tp43994 +a(g43991 +g43993 +S'hinged' +p43995 +tp43996 +a(g43993 +g43995 +S'patchbox' +p43997 +tp43998 +a(g43995 +g43997 +S'cover.' +p43999 +tp44000 +a(g43997 +g43999 +S'a' +p44001 +tp44002 +a(g43999 +g44001 +S'patchbox' +p44003 +tp44004 +a(g44001 +g44003 +S'is' +p44005 +tp44006 +a(g44003 +g44005 +S'a' +p44007 +tp44008 +a(g44005 +g44007 +S'container' +p44009 +tp44010 +a(g44007 +g44009 +S'inlayed' +p44011 +tp44012 +a(g44009 +g44011 +S'into' +p44013 +tp44014 +a(g44011 +g44013 +S'the' +p44015 +tp44016 +a(g44013 +g44015 +S'buttstock' +p44017 +tp44018 +a(g44015 +g44017 +S'of' +p44019 +tp44020 +a(g44017 +g44019 +S'a' +p44021 +tp44022 +a(g44019 +g44021 +S'flintlock' +p44023 +tp44024 +a(g44021 +g44023 +S'rifle' +p44025 +tp44026 +a(g44023 +g44025 +S'that' +p44027 +tp44028 +a(g44025 +g44027 +S'holds' +p44029 +tp44030 +a(g44027 +g44029 +S'a' +p44031 +tp44032 +a(g44029 +g44031 +S'greased' +p44033 +tp44034 +a(g44031 +g44033 +S'cloth' +p44035 +tp44036 +a(g44033 +g44035 +S'or' +p44037 +tp44038 +a(g44035 +g44037 +S'other' +p44039 +tp44040 +a(g44037 +g44039 +S'small' +p44041 +tp44042 +a(g44039 +g44041 +S'piece' +p44043 +tp44044 +a(g44041 +g44043 +S'of' +p44045 +tp44046 +a(g44043 +g44045 +S'equipment.' +p44047 +tp44048 +a(g44045 +g44047 +S'flintlock' +p44049 +tp44050 +a(g44047 +g44049 +S'rifles,' +p44051 +tp44052 +a(g44049 +g44051 +S'developed' +p44053 +tp44054 +a(g44051 +g44053 +S'by' +p44055 +tp44056 +a(g44053 +g44055 +S'the' +p44057 +tp44058 +a(g44055 +g44057 +S'pennsylvania' +p44059 +tp44060 +a(g44057 +g44059 +S'germans,' +p44061 +tp44062 +a(g44059 +g44061 +S'played' +p44063 +tp44064 +a(g44061 +g44063 +S'an' +p44065 +tp44066 +a(g44063 +g44065 +S'important' +p44067 +tp44068 +a(g44065 +g44067 +S'role' +p44069 +tp44070 +a(g44067 +g44069 +S'in' +p44071 +tp44072 +a(g44069 +g44071 +S'the' +p44073 +tp44074 +a(g44071 +g44073 +S'revolutionary' +p44075 +tp44076 +a(g44073 +g44075 +S'war.' +p44077 +tp44078 +a(g44075 +g44077 +S'also' +p44079 +tp44080 +a(g44077 +g44079 +S'called' +p44081 +tp44082 +a(g44079 +g44081 +S'kentucky' +p44083 +tp44084 +a(g44081 +g44083 +S'rifles,' +p44085 +tp44086 +a(g44083 +g44085 +S'they' +p44087 +tp44088 +a(g44085 +g44087 +S'were' +p44089 +tp44090 +a(g44087 +g44089 +S'made' +p44091 +tp44092 +a(g44089 +g44091 +S'famous' +p44093 +tp44094 +a(g44091 +g44093 +S'by' +p44095 +tp44096 +a(g44093 +g44095 +S'such' +p44097 +tp44098 +a(g44095 +g44097 +S'backwoods' +p44099 +tp44100 +a(g44097 +g44099 +S'heroes' +p44101 +tp44102 +a(g44099 +g44101 +S'as' +p44103 +tp44104 +a(g44101 +g44103 +S'daniel' +p44105 +tp44106 +a(g44103 +g44105 +S'boone' +p44107 +tp44108 +a(g44105 +g44107 +S'and' +p44109 +tp44110 +a(g44107 +g44109 +S'davy' +p44111 +tp44112 +a(g44109 +g44111 +S'crockett.' +p44113 +tp44114 +a(g44111 +g44113 +S'this' +p44115 +tp44116 +a(g44113 +g44115 +S'patchbox' +p44117 +tp44118 +a(g44115 +g44117 +S'cover' +p44119 +tp44120 +a(g44117 +g44119 +S'was' +p44121 +tp44122 +a(g44119 +g44121 +S'probably' +p44123 +tp44124 +a(g44121 +g44123 +S'made' +p44125 +tp44126 +a(g44123 +g44125 +S'about' +p44127 +tp44128 +a(g44125 +g44127 +S'1810.' +p44129 +tp44130 +a(g44127 +g44129 +S'pennsylvania' +p44131 +tp44132 +a(g44129 +g44131 +S'german' +p44133 +tp44134 +a(g44131 +g44133 +S'gunsmiths' +p44135 +tp44136 +a(g44133 +g44135 +S'displayed' +p44137 +tp44138 +a(g44135 +g44137 +S'their' +p44139 +tp44140 +a(g44137 +g44139 +S'love' +p44141 +tp44142 +a(g44139 +g44141 +S'of' +p44143 +tp44144 +a(g44141 +g44143 +S'fine' +p44145 +tp44146 +a(g44143 +g44145 +S'decoration' +p44147 +tp44148 +a(g44145 +g44147 +S'by' +p44149 +tp44150 +a(g44147 +g44149 +S'including' +p44151 +tp44152 +a(g44149 +g44151 +S'elaborate' +p44153 +tp44154 +a(g44151 +g44153 +S'detail' +p44155 +tp44156 +a(g44153 +g44155 +S'on' +p44157 +tp44158 +a(g44155 +g44157 +S'their' +p44159 +tp44160 +a(g44157 +g44159 +S'rifles.' +p44161 +tp44162 +a(g44159 +g44161 +S'the' +p44163 +tp44164 +a(g44161 +g44163 +S'scroll' +p44165 +tp44166 +a(g44163 +g44165 +S'design' +p44167 +tp44168 +a(g44165 +g44167 +S'of' +p44169 +tp44170 +a(g44167 +g44169 +S'this' +p44171 +tp44172 +a(g44169 +g44171 +S'patchbox' +p44173 +tp44174 +a(g44171 +g44173 +S'cover' +p44175 +tp44176 +a(g44173 +g44175 +S'reflects' +p44177 +tp44178 +a(g44175 +g44177 +S'the' +p44179 +tp44180 +a(g44177 +g44179 +S'ornate' +p44181 +tp44182 +a(g44179 +g44181 +S'style' +p44183 +tp44184 +a(g44181 +g44183 +S'fashionable' +p44185 +tp44186 +a(g44183 +g44185 +S'during' +p44187 +tp44188 +a(g44185 +g44187 +S'the' +p44189 +tp44190 +a(g44187 +g44189 +S'"golden' +p44191 +tp44192 +a(g44189 +g44191 +S'age"' +p44193 +tp44194 +a(g44191 +g44193 +S'of' +p44195 +tp44196 +a(g44193 +g44195 +S'kentucky' +p44197 +tp44198 +a(g44195 +g44197 +S'rifles,' +p44199 +tp44200 +a(g44197 +g44199 +S'while' +p44201 +tp44202 +a(g44199 +g44201 +S'the' +p44203 +tp44204 +a(g44201 +g44203 +S'bird' +p44205 +tp44206 +a(g44203 +g44205 +S'motif' +p44207 +tp44208 +a(g44205 +g44207 +S'is' +p44209 +tp44210 +a(g44207 +g44209 +S'in' +p44211 +tp44212 +a(g44209 +g44211 +S'keeping' +p44213 +tp44214 +a(g44211 +g44213 +S'with' +p44215 +tp44216 +a(g44213 +g44215 +S'pennsylvania' +p44217 +tp44218 +a(g44215 +g44217 +S'german' +p44219 +tp44220 +a(g44217 +g44219 +S'tradition.' +p44221 +tp44222 +a(g44219 +g44221 +S'when' +p44223 +tp44224 +a(g44221 +g44223 +S'the' +p44225 +tp44226 +a(g44223 +g44225 +S'writing' +p44227 +tp44228 +a(g44225 +g44227 +S'surface' +p44229 +tp44230 +a(g44227 +g44229 +S'of' +p44231 +tp44232 +a(g44229 +g44231 +S'this' +p44233 +tp44234 +a(g44231 +g44233 +S"lady's" +p44235 +tp44236 +a(g44233 +g44235 +S'table' +p44237 +tp44238 +a(g44235 +g44237 +S'is' +p44239 +tp44240 +a(g44237 +g44239 +S'pulled' +p44241 +tp44242 +a(g44239 +g44241 +S'forward,' +p44243 +tp44244 +a(g44241 +g44243 +S'the' +p44245 +tp44246 +a(g44243 +g44245 +S'top' +p44247 +tp44248 +a(g44245 +g44247 +S'automatically' +p44249 +tp44250 +a(g44247 +g44249 +S'slides' +p44251 +tp44252 +a(g44249 +g44251 +S'back.' +p44253 +tp44254 +a(g44251 +g44253 +S'the' +p44255 +tp44256 +a(g44253 +g44255 +S'gilt-bronze' +p44257 +tp44258 +a(g44255 +g44257 +S'corner' +p44259 +tp44260 +a(g44257 +g44259 +S'ornaments' +p44261 +tp44262 +a(g44259 +g44261 +S'consist' +p44263 +tp44264 +a(g44261 +g44263 +S'of' +p44265 +tp44266 +a(g44263 +g44265 +S'crossed' +p44267 +tp44268 +a(g44265 +g44267 +S'torches' +p44269 +tp44270 +a(g44267 +g44269 +S'and' +p44271 +tp44272 +a(g44269 +g44271 +S'quivers' +p44273 +tp44274 +a(g44271 +g44273 +S'of' +p44275 +tp44276 +a(g44273 +g44275 +S'arrows.' +p44277 +tp44278 +a(g44275 +g44277 +S'these' +p44279 +tp44280 +a(g44277 +g44279 +S'ancient' +p44281 +tp44282 +a(g44279 +g44281 +S'military' +p44283 +tp44284 +a(g44281 +g44283 +S'motifs' +p44285 +tp44286 +a(g44283 +g44285 +S'act' +p44287 +tp44288 +a(g44285 +g44287 +S'here' +p44289 +tp44290 +a(g44287 +g44289 +S'as' +p44291 +tp44292 +a(g44289 +g44291 +S'emblems' +p44293 +tp44294 +a(g44291 +g44293 +S'of' +p44295 +tp44296 +a(g44293 +g44295 +S'love-burning' +p44297 +tp44298 +a(g44295 +g44297 +S'passions' +p44299 +tp44300 +a(g44297 +g44299 +S'and' +p44301 +tp44302 +a(g44299 +g44301 +S"cupid's" +p44303 +tp44304 +a(g44301 +g44303 +S'darts.' +p44305 +tp44306 +a(g44303 +g44305 +S'the' +p44307 +tp44308 +a(g44305 +g44307 +S'top' +p44309 +tp44310 +a(g44307 +g44309 +S'is' +p44311 +tp44312 +a(g44309 +g44311 +S'veneered' +p44313 +tp44314 +a(g44311 +g44313 +S'with' +p44315 +tp44316 +a(g44313 +g44315 +S'a' +p44317 +tp44318 +a(g44315 +g44317 +S'neoclassical' +p44319 +tp44320 +a(g44317 +g44319 +S'pattern' +p44321 +tp44322 +a(g44319 +g44321 +S'of' +p44323 +tp44324 +a(g44321 +g44323 +S'checkered' +p44325 +tp44326 +a(g44323 +g44325 +S'squares' +p44327 +tp44328 +a(g44325 +g44327 +S'punctuated' +p44329 +tp44330 +a(g44327 +g44329 +S'by' +p44331 +tp44332 +a(g44329 +g44331 +S'rosettes.' +p44333 +tp44334 +a(g44331 +g44333 +S'fluted' +p44335 +tp44336 +a(g44333 +g44335 +S'legs' +p44337 +tp44338 +a(g44335 +g44337 +S'taper' +p44339 +tp44340 +a(g44337 +g44339 +S'to' +p44341 +tp44342 +a(g44339 +g44341 +S'a' +p44343 +tp44344 +a(g44341 +g44343 +S'daring' +p44345 +tp44346 +a(g44343 +g44345 +S'slenderness,' +p44347 +tp44348 +a(g44345 +g44347 +S'and' +p44349 +tp44350 +a(g44347 +g44349 +S'the' +p44351 +tp44352 +a(g44349 +g44351 +S'center' +p44353 +tp44354 +a(g44351 +g44353 +S'panels' +p44355 +tp44356 +a(g44353 +g44355 +S'of' +p44357 +tp44358 +a(g44355 +g44357 +S'all' +p44359 +tp44360 +a(g44357 +g44359 +S'four' +p44361 +tp44362 +a(g44359 +g44361 +S'sides' +p44363 +tp44364 +a(g44361 +g44363 +S'drop' +p44365 +tp44366 +a(g44363 +g44365 +S'below' +p44367 +tp44368 +a(g44365 +g44367 +S'the' +p44369 +tp44370 +a(g44367 +g44369 +S'main' +p44371 +tp44372 +a(g44369 +g44371 +S'silhouette.' +p44373 +tp44374 +a(g44371 +g44373 +S'these' +p44375 +tp44376 +a(g44373 +g44375 +S'deep' +p44377 +tp44378 +a(g44375 +g44377 +S'falls' +p44379 +tp44380 +a(g44377 +g44379 +S'appear' +p44381 +tp44382 +a(g44379 +g44381 +S'to' +p44383 +tp44384 +a(g44381 +g44383 +S'defy' +p44385 +tp44386 +a(g44383 +g44385 +S'gravity,' +p44387 +tp44388 +a(g44385 +g44387 +S'adding' +p44389 +tp44390 +a(g44387 +g44389 +S'to' +p44391 +tp44392 +a(g44389 +g44391 +S'the' +p44393 +tp44394 +a(g44391 +g44393 +S"piece's" +p44395 +tp44396 +a(g44393 +g44395 +S'apparent' +p44397 +tp44398 +a(g44395 +g44397 +S'weightlessness.' +p44399 +tp44400 +a(g44397 +g44399 +S'martin' +p44401 +tp44402 +a(g44399 +g44401 +S'carlin,' +p44403 +tp44404 +a(g44401 +g44403 +S'who' +p44405 +tp44406 +a(g44403 +g44405 +S'signed' +p44407 +tp44408 +a(g44405 +g44407 +S'this' +p44409 +tp44410 +a(g44407 +g44409 +S'table,' +p44411 +tp44412 +a(g44409 +g44411 +S'was' +p44413 +tp44414 +a(g44411 +g44413 +S'noted' +p44415 +tp44416 +a(g44413 +g44415 +S'for' +p44417 +tp44418 +a(g44415 +g44417 +S'such' +p44419 +tp44420 +a(g44417 +g44419 +S'elegant' +p44421 +tp44422 +a(g44419 +g44421 +S'proportions.' +p44423 +tp44424 +a(g44421 +g44423 +S'he' +p44425 +tp44426 +a(g44423 +g44425 +S'specialized' +p44427 +tp44428 +a(g44425 +g44427 +S'in' +p44429 +tp44430 +a(g44427 +g44429 +S"ladies'" +p44431 +tp44432 +a(g44429 +g44431 +S'small-scale' +p44433 +tp44434 +a(g44431 +g44433 +S'furniture,' +p44435 +tp44436 +a(g44433 +g44435 +S'which' +p44437 +tp44438 +a(g44435 +g44437 +S'he' +p44439 +tp44440 +a(g44437 +g44439 +S'usually' +p44441 +tp44442 +a(g44439 +g44441 +S'sold' +p44443 +tp44444 +a(g44441 +g44443 +S'ready-made' +p44445 +tp44446 +a(g44443 +g44445 +S'through' +p44447 +tp44448 +a(g44445 +g44447 +S'dealers' +p44449 +tp44450 +a(g44447 +g44449 +S'instead' +p44451 +tp44452 +a(g44449 +g44451 +S'of' +p44453 +tp44454 +a(g44451 +g44453 +S'working' +p44455 +tp44456 +a(g44453 +g44455 +S'on' +p44457 +tp44458 +a(g44455 +g44457 +S'commissions' +p44459 +tp44460 +a(g44457 +g44459 +S'from' +p44461 +tp44462 +a(g44459 +g44461 +S'patrons.' +p44463 +tp44464 +a(g44461 +g44463 +S"carlin's" +p44465 +tp44466 +a(g44463 +g44465 +S'popularity' +p44467 +tp44468 +a(g44465 +g44467 +S'is' +p44469 +tp44470 +a(g44467 +g44469 +S'indicated' +p44471 +tp44472 +a(g44469 +g44471 +S'in' +p44473 +tp44474 +a(g44471 +g44473 +S'purchases' +p44475 +tp44476 +a(g44473 +g44475 +S'made' +p44477 +tp44478 +a(g44475 +g44477 +S'by' +p44479 +tp44480 +a(g44477 +g44479 +S'madame' +p44481 +tp44482 +a(g44479 +g44481 +S'du' +p44483 +tp44484 +a(g44481 +g44483 +S'barry,' +p44485 +tp44486 +a(g44483 +g44485 +S'marie' +p44487 +tp44488 +a(g44485 +g44487 +S'antoinette,' +p44489 +tp44490 +a(g44487 +g44489 +S'and' +p44491 +tp44492 +a(g44489 +g44491 +S'the' +p44493 +tp44494 +a(g44491 +g44493 +S'great-aunts' +p44495 +tp44496 +a(g44493 +g44495 +S'of' +p44497 +tp44498 +a(g44495 +g44497 +S'louis' +p44499 +tp44500 +a(g44497 +g44499 +S'xvi.' +p44501 +tp44502 +a(g44499 +g44501 +S'born' +p44503 +tp44504 +a(g44501 +g44503 +S'in' +p44505 +tp44506 +a(g44503 +g44505 +S'baden,' +p44507 +tp44508 +a(g44505 +g44507 +S'germany,' +p44509 +tp44510 +a(g44507 +g44509 +S'carlin' +p44511 +tp44512 +a(g44509 +g44511 +S'had' +p44513 +tp44514 +a(g44511 +g44513 +S'moved' +p44515 +tp44516 +a(g44513 +g44515 +S'to' +p44517 +tp44518 +a(g44515 +g44517 +S'paris' +p44519 +tp44520 +a(g44517 +g44519 +S'by' +p44521 +tp44522 +a(g44519 +g44521 +S'1759,' +p44523 +tp44524 +a(g44521 +g44523 +S'when' +p44525 +tp44526 +a(g44523 +g44525 +S'he' +p44527 +tp44528 +a(g44525 +g44527 +S'married' +p44529 +tp44530 +a(g44527 +g44529 +S'a' +p44531 +tp44532 +a(g44529 +g44531 +S'sister' +p44533 +tp44534 +a(g44531 +g44533 +S'of' +p44535 +tp44536 +a(g44533 +g44535 +S'the' +p44537 +tp44538 +a(g44535 +g44537 +S'cabinetmaker' +p44539 +tp44540 +a(g44537 +g44539 +S'jean-françois' +p44541 +tp44542 +a(g44539 +g44541 +S'oeben.' +p44543 +tp44544 +a(g44541 +g44543 +S'along' +p44545 +tp44546 +a(g44543 +g44545 +S'with' +p44547 +tp44548 +a(g44545 +g44547 +S"oeben's" +p44549 +tp44550 +a(g44547 +g44549 +S'other' +p44551 +tp44552 +a(g44549 +g44551 +S'pupils,' +p44553 +tp44554 +a(g44551 +g44553 +S'including' +p44555 +tp44556 +a(g44553 +g44555 +S'leleu' +p44557 +tp44558 +a(g44555 +g44557 +S'and' +p44559 +tp44560 +a(g44557 +g44559 +S'riesener,' +p44561 +tp44562 +a(g44559 +g44561 +S'carlin' +p44563 +tp44564 +a(g44561 +g44563 +S'was' +p44565 +tp44566 +a(g44563 +g44565 +S'among' +p44567 +tp44568 +a(g44565 +g44567 +S'the' +p44569 +tp44570 +a(g44567 +g44569 +S'most' +p44571 +tp44572 +a(g44569 +g44571 +S'fashionable' +p44573 +tp44574 +a(g44571 +g44573 +S'of' +p44575 +tp44576 +a(g44573 +g44575 +S'neoclassical' +p44577 +tp44578 +a(g44575 +g44577 +S'designers.' +p44579 +tp44580 +a(g44577 +g44579 +S'pennsylvania' +p44581 +tp44582 +a(g44579 +g44581 +S'germans' +p44583 +tp44584 +a(g44581 +g44583 +S'made' +p44585 +tp44586 +a(g44583 +g44585 +S'wooden' +p44587 +tp44588 +a(g44585 +g44587 +S'boxes' +p44589 +tp44590 +a(g44587 +g44589 +S'for' +p44591 +tp44592 +a(g44589 +g44591 +S'a' +p44593 +tp44594 +a(g44591 +g44593 +S'variety' +p44595 +tp44596 +a(g44593 +g44595 +S'of' +p44597 +tp44598 +a(g44595 +g44597 +S'uses.' +p44599 +tp44600 +a(g44597 +g44599 +S'they' +p44601 +tp44602 +a(g44599 +g44601 +S'were' +p44603 +tp44604 +a(g44601 +g44603 +S'often' +p44605 +tp44606 +a(g44603 +g44605 +S'carved' +p44607 +tp44608 +a(g44605 +g44607 +S'or' +p44609 +tp44610 +a(g44607 +g44609 +S'whittled' +p44611 +tp44612 +a(g44609 +g44611 +S'into' +p44613 +tp44614 +a(g44611 +g44613 +S'ornamental' +p44615 +tp44616 +a(g44613 +g44615 +S'shapes' +p44617 +tp44618 +a(g44615 +g44617 +S'and' +p44619 +tp44620 +a(g44617 +g44619 +S'then' +p44621 +tp44622 +a(g44619 +g44621 +S'painted' +p44623 +tp44624 +a(g44621 +g44623 +S'with' +p44625 +tp44626 +a(g44623 +g44625 +S'decorative' +p44627 +tp44628 +a(g44625 +g44627 +S'motifs.' +p44629 +tp44630 +a(g44627 +g44629 +S'this' +p44631 +tp44632 +a(g44629 +g44631 +S'box,' +p44633 +tp44634 +a(g44631 +g44633 +S'used' +p44635 +tp44636 +a(g44633 +g44635 +S'to' +p44637 +tp44638 +a(g44635 +g44637 +S'store' +p44639 +tp44640 +a(g44637 +g44639 +S'salt,' +p44641 +tp44642 +a(g44639 +g44641 +S'was' +p44643 +tp44644 +a(g44641 +g44643 +S'hung' +p44645 +tp44646 +a(g44643 +g44645 +S'near' +p44647 +tp44648 +a(g44645 +g44647 +S'the' +p44649 +tp44650 +a(g44647 +g44649 +S'fireplace' +p44651 +tp44652 +a(g44649 +g44651 +S'to' +p44653 +tp44654 +a(g44651 +g44653 +S'keep' +p44655 +tp44656 +a(g44653 +g44655 +S'its' +p44657 +tp44658 +a(g44655 +g44657 +S'contents' +p44659 +tp44660 +a(g44657 +g44659 +S'dry.' +p44661 +tp44662 +a(g44659 +g44661 +S'hanging' +p44663 +tp44664 +a(g44661 +g44663 +S'boxes' +p44665 +tp44666 +a(g44663 +g44665 +S'were' +p44667 +tp44668 +a(g44665 +g44667 +S'also' +p44669 +tp44670 +a(g44667 +g44669 +S'made' +p44671 +tp44672 +a(g44669 +g44671 +S'to' +p44673 +tp44674 +a(g44671 +g44673 +S'hold' +p44675 +tp44676 +a(g44673 +g44675 +S'kitchen' +p44677 +tp44678 +a(g44675 +g44677 +S'knives,' +p44679 +tp44680 +a(g44677 +g44679 +S'tableware,' +p44681 +tp44682 +a(g44679 +g44681 +S'and' +p44683 +tp44684 +a(g44681 +g44683 +S'other' +p44685 +tp44686 +a(g44683 +g44685 +S'utensils.' +p44687 +tp44688 +a(g44685 +g44687 +S'the' +p44689 +tp44690 +a(g44687 +g44689 +S'floral' +p44691 +tp44692 +a(g44689 +g44691 +S'motif' +p44693 +tp44694 +a(g44691 +g44693 +S'decorating' +p44695 +tp44696 +a(g44693 +g44695 +S'this' +p44697 +tp44698 +a(g44695 +g44697 +S'box' +p44699 +tp44700 +a(g44697 +g44699 +S'is' +p44701 +tp44702 +a(g44699 +g44701 +S'surrounded' +p44703 +tp44704 +a(g44701 +g44703 +S'by' +p44705 +tp44706 +a(g44703 +g44705 +S'geometrical' +p44707 +tp44708 +a(g44705 +g44707 +S'shapes' +p44709 +tp44710 +a(g44707 +g44709 +S'and' +p44711 +tp44712 +a(g44709 +g44711 +S'a' +p44713 +tp44714 +a(g44711 +g44713 +S'white' +p44715 +tp44716 +a(g44713 +g44715 +S'notch-like' +p44717 +tp44718 +a(g44715 +g44717 +S'border.' +p44719 +tp44720 +a(g44717 +g44719 +S'the' +p44721 +tp44722 +a(g44719 +g44721 +S'box' +p44723 +tp44724 +a(g44721 +g44723 +S'is' +p44725 +tp44726 +a(g44723 +g44725 +S'inscribed' +p44727 +tp44728 +a(g44725 +g44727 +S'with' +p44729 +tp44730 +a(g44727 +g44729 +S'the' +p44731 +tp44732 +a(g44729 +g44731 +S"owner's" +p44733 +tp44734 +a(g44731 +g44733 +S'name' +p44735 +tp44736 +a(g44733 +g44735 +S'and' +p44737 +tp44738 +a(g44735 +g44737 +S'that' +p44739 +tp44740 +a(g44737 +g44739 +S'of' +p44741 +tp44742 +a(g44739 +g44741 +S'the' +p44743 +tp44744 +a(g44741 +g44743 +S'craftsman:' +p44745 +tp44746 +a(g44743 +g44745 +S'"anne' +p44747 +tp44748 +a(g44745 +g44747 +S'leterman' +p44749 +tp44750 +a(g44747 +g44749 +S'anno' +p44751 +tp44752 +a(g44749 +g44751 +S'dommini' +p44753 +tp44754 +a(g44751 +g44753 +S'1797"' +p44755 +tp44756 +a(g44753 +g44755 +S'and' +p44757 +tp44758 +a(g44755 +g44757 +S'"john' +p44759 +tp44760 +a(g44757 +g44759 +S'drissell' +p44761 +tp44762 +a(g44759 +g44761 +S'his' +p44763 +tp44764 +a(g44761 +g44763 +S'hand' +p44765 +tp44766 +a(g44763 +g44765 +S'may' +p44767 +tp44768 +a(g44765 +g44767 +S'22nd' +p44769 +tp44770 +a(g44767 +g44769 +S'1797."' +p44771 +tp44772 +a(g44769 +g44771 +S'while' +p44773 +tp44774 +a(g44771 +g44773 +S"andrea's" +p44775 +tp44776 +a(g44773 +g44775 +S'scenes' +p44777 +tp44778 +a(g44775 +g44777 +S'of' +p44779 +tp44780 +a(g44777 +g44779 +S'the' +p44781 +tp44782 +a(g44779 +g44781 +S"virgin's" +p44783 +tp44784 +a(g44781 +g44783 +S'life' +p44785 +tp44786 +a(g44783 +g44785 +S'were' +p44787 +tp44788 +a(g44785 +g44787 +S'intended' +p44789 +tp44790 +a(g44787 +g44789 +S'to' +p44791 +tp44792 +a(g44789 +g44791 +S'relate' +p44793 +tp44794 +a(g44791 +g44793 +S'a' +p44795 +tp44796 +a(g44793 +g44795 +S'story' +p44797 +tp44798 +a(g44795 +g44797 +S'and' +p44799 +tp44800 +a(g44797 +g44799 +S'to' +p44801 +tp44802 +a(g44799 +g44801 +S'engage' +p44803 +tp44804 +a(g44801 +g44803 +S'the' +p44805 +tp44806 +a(g44803 +g44805 +S'viewer' +p44807 +tp44808 +a(g44805 +g44807 +S'by' +p44809 +tp44810 +a(g44807 +g44809 +S'depicting' +p44811 +tp44812 +a(g44809 +g44811 +S'sacred' +p44813 +tp44814 +a(g44811 +g44813 +S'events' +p44815 +tp44816 +a(g44813 +g44815 +S'in' +p44817 +tp44818 +a(g44815 +g44817 +S'familiar' +p44819 +tp44820 +a(g44817 +g44819 +S'settings,' +p44821 +tp44822 +a(g44819 +g44821 +S'this' +p44823 +tp44824 +a(g44821 +g44823 +S'small' +p44825 +tp44826 +a(g44823 +g44825 +S'image' +p44827 +tp44828 +a(g44825 +g44827 +S'invites' +p44829 +tp44830 +a(g44827 +g44829 +S'contemplation.' +p44831 +tp44832 +a(g44829 +g44831 +S'this' +p44833 +tp44834 +a(g44831 +g44833 +S'way' +p44835 +tp44836 +a(g44833 +g44835 +S'of' +p44837 +tp44838 +a(g44835 +g44837 +S'representing' +p44839 +tp44840 +a(g44837 +g44839 +S'the' +p44841 +tp44842 +a(g44839 +g44841 +S'virgin—in' +p44843 +tp44844 +a(g44841 +g44843 +S'which' +p44845 +tp44846 +a(g44843 +g44845 +S'she' +p44847 +tp44848 +a(g44845 +g44847 +S'sits' +p44849 +tp44850 +a(g44847 +g44849 +S'not' +p44851 +tp44852 +a(g44849 +g44851 +S'on' +p44853 +tp44854 +a(g44851 +g44853 +S'an' +p44855 +tp44856 +a(g44853 +g44855 +S'elaborate' +p44857 +tp44858 +a(g44855 +g44857 +S'throne' +p44859 +tp44860 +a(g44857 +g44859 +S'but' +p44861 +tp44862 +a(g44859 +g44861 +S'on' +p44863 +tp44864 +a(g44861 +g44863 +S'a' +p44865 +tp44866 +a(g44863 +g44865 +S'simple' +p44867 +tp44868 +a(g44865 +g44867 +S'cushion' +p44869 +tp44870 +a(g44867 +g44869 +S'on' +p44871 +tp44872 +a(g44869 +g44871 +S'the' +p44873 +tp44874 +a(g44871 +g44873 +S'ground—is' +p44875 +tp44876 +a(g44873 +g44875 +S'known' +p44877 +tp44878 +a(g44875 +g44877 +S'as' +p44879 +tp44880 +a(g44877 +g44879 +S'the' +p44881 +tp44882 +a(g44879 +g44881 +S'madonna' +p44883 +tp44884 +a(g44881 +g44883 +S'of' +p44885 +tp44886 +a(g44883 +g44885 +S'humility,' +p44887 +tp44888 +a(g44885 +g44887 +S'probably' +p44889 +tp44890 +a(g44887 +g44889 +S'reflecting' +p44891 +tp44892 +a(g44889 +g44891 +S'the' +p44893 +tp44894 +a(g44891 +g44893 +S'relationship' +p44895 +tp44896 +a(g44893 +g44895 +S'between' +p44897 +tp44898 +a(g44895 +g44897 +S'the' +p44899 +tp44900 +a(g44897 +g44899 +S'latin' +p44901 +tp44902 +a(g44899 +g44901 +S'words' +p44903 +tp44904 +a(g44901 +g44903 +S'this' +p44905 +tp44906 +a(g44903 +g44905 +S'vessel' +p44907 +tp44908 +a(g44905 +g44907 +S'takes' +p44909 +tp44910 +a(g44907 +g44909 +S'the' +p44911 +tp44912 +a(g44909 +g44911 +S'form' +p44913 +tp44914 +a(g44911 +g44913 +S'of' +p44915 +tp44916 +a(g44913 +g44915 +S'a' +p44917 +tp44918 +a(g44915 +g44917 +S'carp,' +p44919 +tp44920 +a(g44917 +g44919 +S'its' +p44921 +tp44922 +a(g44919 +g44921 +S'grotesque' +p44923 +tp44924 +a(g44921 +g44923 +S'open-jawed' +p44925 +tp44926 +a(g44923 +g44925 +S'head' +p44927 +tp44928 +a(g44925 +g44927 +S'oriented' +p44929 +tp44930 +a(g44927 +g44929 +S'downward' +p44931 +tp44932 +a(g44929 +g44931 +S'and' +p44933 +tp44934 +a(g44931 +g44933 +S'its' +p44935 +tp44936 +a(g44933 +g44935 +S'tail' +p44937 +tp44938 +a(g44935 +g44937 +S'raised.' +p44939 +tp44940 +a(g44937 +g44939 +S'the' +p44941 +tp44942 +a(g44939 +g44941 +S'tail' +p44943 +tp44944 +a(g44941 +g44943 +S'is' +p44945 +tp44946 +a(g44943 +g44945 +S'open' +p44947 +tp44948 +a(g44945 +g44947 +S'at' +p44949 +tp44950 +a(g44947 +g44949 +S'the' +p44951 +tp44952 +a(g44949 +g44951 +S'end,' +p44953 +tp44954 +a(g44951 +g44953 +S'forming' +p44955 +tp44956 +a(g44953 +g44955 +S'the' +p44957 +tp44958 +a(g44955 +g44957 +S'mouth' +p44959 +tp44960 +a(g44957 +g44959 +S'of' +p44961 +tp44962 +a(g44959 +g44961 +S'the' +p44963 +tp44964 +a(g44961 +g44963 +S'vase.' +p44965 +tp44966 +a(g44963 +g44965 +S'the' +p44967 +tp44968 +a(g44965 +g44967 +S'porcelain' +p44969 +tp44970 +a(g44967 +g44969 +S'was' +p44971 +tp44972 +a(g44969 +g44971 +S'transformed' +p44973 +tp44974 +a(g44971 +g44973 +S'from' +p44975 +tp44976 +a(g44973 +g44975 +S'a' +p44977 +tp44978 +a(g44975 +g44977 +S'vase' +p44979 +tp44980 +a(g44977 +g44979 +S'into' +p44981 +tp44982 +a(g44979 +g44981 +S'a' +p44983 +tp44984 +a(g44981 +g44983 +S'pouring' +p44985 +tp44986 +a(g44983 +g44985 +S'vessel' +p44987 +tp44988 +a(g44985 +g44987 +S'or' +p44989 +tp44990 +a(g44987 +g44989 +S'ewer' +p44991 +tp44992 +a(g44989 +g44991 +S'for' +p44993 +tp44994 +a(g44991 +g44993 +S'decorative' +p44995 +tp44996 +a(g44993 +g44995 +S'use' +p44997 +tp44998 +a(g44995 +g44997 +S'by' +p44999 +tp45000 +a(g44997 +g44999 +S'the' +p45001 +tp45002 +a(g44999 +g45001 +S'addition' +p45003 +tp45004 +a(g45001 +g45003 +S'of' +p45005 +tp45006 +a(g45003 +g45005 +S'a' +p45007 +tp45008 +a(g45005 +g45007 +S'gilt-bronze' +p45009 +tp45010 +a(g45007 +g45009 +S'mount' +p45011 +tp45012 +a(g45009 +g45011 +S'made' +p45013 +tp45014 +a(g45011 +g45013 +S'in' +p45015 +tp45016 +a(g45013 +g45015 +S'france' +p45017 +tp45018 +a(g45015 +g45017 +S'in' +p45019 +tp45020 +a(g45017 +g45019 +S'the' +p45021 +tp45022 +a(g45019 +g45021 +S'eighteenth' +p45023 +tp45024 +a(g45021 +g45023 +S'century.' +p45025 +tp45026 +a(g45023 +g45025 +S'the' +p45027 +tp45028 +a(g45025 +g45027 +S'mount,' +p45029 +tp45030 +a(g45027 +g45029 +S'in' +p45031 +tp45032 +a(g45029 +g45031 +S'the' +p45033 +tp45034 +a(g45031 +g45033 +S'form' +p45035 +tp45036 +a(g45033 +g45035 +S'of' +p45037 +tp45038 +a(g45035 +g45037 +S'scrolling' +p45039 +tp45040 +a(g45037 +g45039 +S'vegetation,' +p45041 +tp45042 +a(g45039 +g45041 +S'forms' +p45043 +tp45044 +a(g45041 +g45043 +S'a' +p45045 +tp45046 +a(g45043 +g45045 +S'base' +p45047 +tp45048 +a(g45045 +g45047 +S'and' +p45049 +tp45050 +a(g45047 +g45049 +S'high-rising' +p45051 +tp45052 +a(g45049 +g45051 +S'handle.' +p45053 +tp45054 +a(g45051 +g45053 +S'mounted' +p45055 +tp45056 +a(g45053 +g45055 +S'celadon' +p45057 +tp45058 +a(g45055 +g45057 +S'fish' +p45059 +tp45060 +a(g45057 +g45059 +S'such' +p45061 +tp45062 +a(g45059 +g45061 +S'as' +p45063 +tp45064 +a(g45061 +g45063 +S'this' +p45065 +tp45066 +a(g45063 +g45065 +S'were' +p45067 +tp45068 +a(g45065 +g45067 +S'popular' +p45069 +tp45070 +a(g45067 +g45069 +S'in' +p45071 +tp45072 +a(g45069 +g45071 +S'eighteenth-century' +p45073 +tp45074 +a(g45071 +g45073 +S'france,' +p45075 +tp45076 +a(g45073 +g45075 +S'and' +p45077 +tp45078 +a(g45075 +g45077 +S'several' +p45079 +tp45080 +a(g45077 +g45079 +S'examples' +p45081 +tp45082 +a(g45079 +g45081 +S'survive.' +p45083 +tp45084 +a(g45081 +g45083 +S'both' +p45085 +tp45086 +a(g45083 +g45085 +S'singly' +p45087 +tp45088 +a(g45085 +g45087 +S'and' +p45089 +tp45090 +a(g45087 +g45089 +S'in' +p45091 +tp45092 +a(g45089 +g45091 +S'pairs,' +p45093 +tp45094 +a(g45091 +g45093 +S'fish' +p45095 +tp45096 +a(g45093 +g45095 +S'are' +p45097 +tp45098 +a(g45095 +g45097 +S'a' +p45099 +tp45100 +a(g45097 +g45099 +S'traditional' +p45101 +tp45102 +a(g45099 +g45101 +S'chinese' +p45103 +tp45104 +a(g45101 +g45103 +S'motif' +p45105 +tp45106 +a(g45103 +g45105 +S'in' +p45107 +tp45108 +a(g45105 +g45107 +S'the' +p45109 +tp45110 +a(g45107 +g45109 +S'decorative' +p45111 +tp45112 +a(g45109 +g45111 +S'arts' +p45113 +tp45114 +a(g45111 +g45113 +S'and' +p45115 +tp45116 +a(g45113 +g45115 +S'painting.' +p45117 +tp45118 +a(g45115 +g45117 +S'the' +p45119 +tp45120 +a(g45117 +g45119 +S'carp' +p45121 +tp45122 +a(g45119 +g45121 +S'is' +p45123 +tp45124 +a(g45121 +g45123 +S'the' +p45125 +tp45126 +a(g45123 +g45125 +S'species' +p45127 +tp45128 +a(g45125 +g45127 +S'most' +p45129 +tp45130 +a(g45127 +g45129 +S'often' +p45131 +tp45132 +a(g45129 +g45131 +S'encountered.' +p45133 +tp45134 +a(g45131 +g45133 +S'it' +p45135 +tp45136 +a(g45133 +g45135 +S'is' +p45137 +tp45138 +a(g45135 +g45137 +S'often' +p45139 +tp45140 +a(g45137 +g45139 +S'found' +p45141 +tp45142 +a(g45139 +g45141 +S'in' +p45143 +tp45144 +a(g45141 +g45143 +S'ceramics' +p45145 +tp45146 +a(g45143 +g45145 +S'of' +p45147 +tp45148 +a(g45145 +g45147 +S'the' +p45149 +tp45150 +a(g45147 +g45149 +S'song' +p45151 +tp45152 +a(g45149 +g45151 +S'and' +p45153 +tp45154 +a(g45151 +g45153 +S'yuan' +p45155 +tp45156 +a(g45153 +g45155 +S'dynasties,' +p45157 +tp45158 +a(g45155 +g45157 +S'and' +p45159 +tp45160 +a(g45157 +g45159 +S'paired' +p45161 +tp45162 +a(g45159 +g45161 +S'carp' +p45163 +tp45164 +a(g45161 +g45163 +S'occur' +p45165 +tp45166 +a(g45163 +g45165 +S'as' +p45167 +tp45168 +a(g45165 +g45167 +S'a' +p45169 +tp45170 +a(g45167 +g45169 +S'mark' +p45171 +tp45172 +a(g45169 +g45171 +S'on' +p45173 +tp45174 +a(g45171 +g45173 +S'the' +p45175 +tp45176 +a(g45173 +g45175 +S'base' +p45177 +tp45178 +a(g45175 +g45177 +S'of' +p45179 +tp45180 +a(g45177 +g45179 +S'some' +p45181 +tp45182 +a(g45179 +g45181 +S'kangxi' +p45183 +tp45184 +a(g45181 +g45183 +S'porcelains.' +p45185 +tp45186 +a(g45183 +g45185 +S'paired' +p45187 +tp45188 +a(g45185 +g45187 +S'fish' +p45189 +tp45190 +a(g45187 +g45189 +S'were' +p45191 +tp45192 +a(g45189 +g45191 +S'one' +p45193 +tp45194 +a(g45191 +g45193 +S'of' +p45195 +tp45196 +a(g45193 +g45195 +S'the' +p45197 +tp45198 +a(g45195 +g45197 +S'eight' +p45199 +tp45200 +a(g45197 +g45199 +S'buddhist' +p45201 +tp45202 +a(g45199 +g45201 +S'emblems' +p45203 +tp45204 +a(g45201 +g45203 +S'(or' +p45205 +tp45206 +a(g45203 +g45205 +S'happy' +p45207 +tp45208 +a(g45205 +g45207 +S'omens),' +p45209 +tp45210 +a(g45207 +g45209 +S'and' +p45211 +tp45212 +a(g45209 +g45211 +S'they' +p45213 +tp45214 +a(g45211 +g45213 +S'also' +p45215 +tp45216 +a(g45213 +g45215 +S'symbolize' +p45217 +tp45218 +a(g45215 +g45217 +S'marital' +p45219 +tp45220 +a(g45217 +g45219 +S'fidelity.' +p45221 +tp45222 +a(g45219 +g45221 +S'a' +p45223 +tp45224 +a(g45221 +g45223 +S'carp' +p45225 +tp45226 +a(g45223 +g45225 +S'leaping' +p45227 +tp45228 +a(g45225 +g45227 +S'from' +p45229 +tp45230 +a(g45227 +g45229 +S'the' +p45231 +tp45232 +a(g45229 +g45231 +S'waves' +p45233 +tp45234 +a(g45231 +g45233 +S'is' +p45235 +tp45236 +a(g45233 +g45235 +S'a' +p45237 +tp45238 +a(g45235 +g45237 +S'subject' +p45239 +tp45240 +a(g45237 +g45239 +S'appealing' +p45241 +tp45242 +a(g45239 +g45241 +S'to' +p45243 +tp45244 +a(g45241 +g45243 +S'the' +p45245 +tp45246 +a(g45243 +g45245 +S'literati' +p45247 +tp45248 +a(g45245 +g45247 +S'because' +p45249 +tp45250 +a(g45247 +g45249 +S'it' +p45251 +tp45252 +a(g45249 +g45251 +S'symbolizes' +p45253 +tp45254 +a(g45251 +g45253 +S'the' +p45255 +tp45256 +a(g45253 +g45255 +S'aspirations' +p45257 +tp45258 +a(g45255 +g45257 +S'and' +p45259 +tp45260 +a(g45257 +g45259 +S'struggle' +p45261 +tp45262 +a(g45259 +g45261 +S'of' +p45263 +tp45264 +a(g45261 +g45263 +S'the' +p45265 +tp45266 +a(g45263 +g45265 +S'scholar' +p45267 +tp45268 +a(g45265 +g45267 +S'for' +p45269 +tp45270 +a(g45267 +g45269 +S'success' +p45271 +tp45272 +a(g45269 +g45271 +S'in' +p45273 +tp45274 +a(g45271 +g45273 +S'the' +p45275 +tp45276 +a(g45273 +g45275 +S'imperial' +p45277 +tp45278 +a(g45275 +g45277 +S'examinations.' +p45279 +tp45280 +a(g45277 +g45279 +S'jessica' +p45281 +tp45282 +a(g45279 +g45281 +S'rawson' +p45283 +tp45284 +a(g45281 +g45283 +S'explores' +p45285 +tp45286 +a(g45283 +g45285 +S'an' +p45287 +tp45288 +a(g45285 +g45287 +S'interesting' +p45289 +tp45290 +a(g45287 +g45289 +S'relationship' +p45291 +tp45292 +a(g45289 +g45291 +S'of' +p45293 +tp45294 +a(g45291 +g45293 +S'the' +p45295 +tp45296 +a(g45293 +g45295 +S'monster-head' +p45297 +tp45298 +a(g45295 +g45297 +S'fish' +p45299 +tp45300 +a(g45297 +g45299 +S'with' +p45301 +tp45302 +a(g45299 +g45301 +S'the' +p45303 +tp45304 +a(g45301 +g45303 +S'indian' +p45305 +tp45306 +a(g45303 +g45305 +S'in' +p45307 +tp45308 +a(g45305 +g45307 +S'this' +p45309 +tp45310 +a(g45307 +g45309 +S'vessel,' +p45311 +tp45312 +a(g45309 +g45311 +S'vertical' +p45313 +tp45314 +a(g45311 +g45313 +S'incised' +p45315 +tp45316 +a(g45313 +g45315 +S'lines' +p45317 +tp45318 +a(g45315 +g45317 +S'define' +p45319 +tp45320 +a(g45317 +g45319 +S'the' +p45321 +tp45322 +a(g45319 +g45321 +S'tail' +p45323 +tp45324 +a(g45321 +g45323 +S'structure.' +p45325 +tp45326 +a(g45323 +g45325 +S'the' +p45327 +tp45328 +a(g45325 +g45327 +S'spine' +p45329 +tp45330 +a(g45327 +g45329 +S'is' +p45331 +tp45332 +a(g45329 +g45331 +S'raised,' +p45333 +tp45334 +a(g45331 +g45333 +S'and' +p45335 +tp45336 +a(g45333 +g45335 +S'overlapping' +p45337 +tp45338 +a(g45335 +g45337 +S'scales' +p45339 +tp45340 +a(g45337 +g45339 +S'are' +p45341 +tp45342 +a(g45339 +g45341 +S'shown' +p45343 +tp45344 +a(g45341 +g45343 +S'in' +p45345 +tp45346 +a(g45343 +g45345 +S'relief' +p45347 +tp45348 +a(g45345 +g45347 +S'on' +p45349 +tp45350 +a(g45347 +g45349 +S'the' +p45351 +tp45352 +a(g45349 +g45351 +S'body.' +p45353 +tp45354 +a(g45351 +g45353 +S'a' +p45355 +tp45356 +a(g45353 +g45355 +S'pronounced,' +p45357 +tp45358 +a(g45355 +g45357 +S'protruding' +p45359 +tp45360 +a(g45357 +g45359 +S'brow' +p45361 +tp45362 +a(g45359 +g45361 +S'ridge,' +p45363 +tp45364 +a(g45361 +g45363 +S'bulging' +p45365 +tp45366 +a(g45363 +g45365 +S'spherical' +p45367 +tp45368 +a(g45365 +g45367 +S'eyes,' +p45369 +tp45370 +a(g45367 +g45369 +S'and' +p45371 +tp45372 +a(g45369 +g45371 +S'a' +p45373 +tp45374 +a(g45371 +g45373 +S'rounded' +p45375 +tp45376 +a(g45373 +g45375 +S'nose' +p45377 +tp45378 +a(g45375 +g45377 +S'characterize' +p45379 +tp45380 +a(g45377 +g45379 +S'the' +p45381 +tp45382 +a(g45379 +g45381 +S'monsterlike' +p45383 +tp45384 +a(g45381 +g45383 +S'head.' +p45385 +tp45386 +a(g45383 +g45385 +S'beneath' +p45387 +tp45388 +a(g45385 +g45387 +S'these,' +p45389 +tp45390 +a(g45387 +g45389 +S'a' +p45391 +tp45392 +a(g45389 +g45391 +S'gaping' +p45393 +tp45394 +a(g45391 +g45393 +S'mouth' +p45395 +tp45396 +a(g45393 +g45395 +S'dominates' +p45397 +tp45398 +a(g45395 +g45397 +S'the' +p45399 +tp45400 +a(g45397 +g45399 +S'lower' +p45401 +tp45402 +a(g45399 +g45401 +S'third' +p45403 +tp45404 +a(g45401 +g45403 +S'of' +p45405 +tp45406 +a(g45403 +g45405 +S'the' +p45407 +tp45408 +a(g45405 +g45407 +S'vessel.' +p45409 +tp45410 +a(g45407 +g45409 +S'the' +p45411 +tp45412 +a(g45409 +g45411 +S'upper' +p45413 +tp45414 +a(g45411 +g45413 +S'jaw' +p45415 +tp45416 +a(g45413 +g45415 +S'bears' +p45417 +tp45418 +a(g45415 +g45417 +S'square' +p45419 +tp45420 +a(g45417 +g45419 +S'teeth' +p45421 +tp45422 +a(g45419 +g45421 +S'and' +p45423 +tp45424 +a(g45421 +g45423 +S'pointed' +p45425 +tp45426 +a(g45423 +g45425 +S'fangs,' +p45427 +tp45428 +a(g45425 +g45427 +S'also' +p45429 +tp45430 +a(g45427 +g45429 +S'in' +p45431 +tp45432 +a(g45429 +g45431 +S'relief.' +p45433 +tp45434 +a(g45431 +g45433 +S'the' +p45435 +tp45436 +a(g45433 +g45435 +S'lower' +p45437 +tp45438 +a(g45435 +g45437 +S'jaw,' +p45439 +tp45440 +a(g45437 +g45439 +S'which' +p45441 +tp45442 +a(g45439 +g45441 +S'is' +p45443 +tp45444 +a(g45441 +g45443 +S'mostly' +p45445 +tp45446 +a(g45443 +g45445 +S'covered' +p45447 +tp45448 +a(g45445 +g45447 +S'by' +p45449 +tp45450 +a(g45447 +g45449 +S'the' +p45451 +tp45452 +a(g45449 +g45451 +S'mount,' +p45453 +tp45454 +a(g45451 +g45453 +S'is' +p45455 +tp45456 +a(g45453 +g45455 +S'decorated' +p45457 +tp45458 +a(g45455 +g45457 +S'with' +p45459 +tp45460 +a(g45457 +g45459 +S'an' +p45461 +tp45462 +a(g45459 +g45461 +S'emanation' +p45463 +tp45464 +a(g45461 +g45463 +S'of' +p45465 +tp45466 +a(g45463 +g45465 +S'scrolls.' +p45467 +tp45468 +a(g45465 +g45467 +S'a' +p45469 +tp45470 +a(g45467 +g45469 +S'flamelike' +p45471 +tp45472 +a(g45469 +g45471 +S'double' +p45473 +tp45474 +a(g45471 +g45473 +S'set' +p45475 +tp45476 +a(g45473 +g45475 +S'of' +p45477 +tp45478 +a(g45475 +g45477 +S'fins' +p45479 +tp45480 +a(g45477 +g45479 +S'sweeping' +p45481 +tp45482 +a(g45479 +g45481 +S'back' +p45483 +tp45484 +a(g45481 +g45483 +S'from' +p45485 +tp45486 +a(g45483 +g45485 +S'the' +p45487 +tp45488 +a(g45485 +g45487 +S'corners' +p45489 +tp45490 +a(g45487 +g45489 +S'of' +p45491 +tp45492 +a(g45489 +g45491 +S'the' +p45493 +tp45494 +a(g45491 +g45493 +S'mouth' +p45495 +tp45496 +a(g45493 +g45495 +S'is' +p45497 +tp45498 +a(g45495 +g45497 +S'also' +p45499 +tp45500 +a(g45497 +g45499 +S'partly' +p45501 +tp45502 +a(g45499 +g45501 +S'obscured' +p45503 +tp45504 +a(g45501 +g45503 +S'by' +p45505 +tp45506 +a(g45503 +g45505 +S'the' +p45507 +tp45508 +a(g45505 +g45507 +S'mount.' +p45509 +tp45510 +a(g45507 +g45509 +S'the' +p45511 +tp45512 +a(g45509 +g45511 +S'form' +p45513 +tp45514 +a(g45511 +g45513 +S'of' +p45515 +tp45516 +a(g45513 +g45515 +S'the' +p45517 +tp45518 +a(g45515 +g45517 +S'enormous' +p45519 +tp45520 +a(g45517 +g45519 +S'mouth' +p45521 +tp45522 +a(g45519 +g45521 +S'allows' +p45523 +tp45524 +a(g45521 +g45523 +S'for' +p45525 +tp45526 +a(g45523 +g45525 +S'a' +p45527 +tp45528 +a(g45525 +g45527 +S'wide' +p45529 +tp45530 +a(g45527 +g45529 +S'rectangular' +p45531 +tp45532 +a(g45529 +g45531 +S'base' +p45533 +tp45534 +a(g45531 +g45533 +S'with' +p45535 +tp45536 +a(g45533 +g45535 +S'rounded' +p45537 +tp45538 +a(g45535 +g45537 +S'corners.' +p45539 +tp45540 +a(g45537 +g45539 +S'the' +p45541 +tp45542 +a(g45539 +g45541 +S'wide' +p45543 +tp45544 +a(g45541 +g45543 +S'foot-ring' +p45545 +tp45546 +a(g45543 +g45545 +S'is' +p45547 +tp45548 +a(g45545 +g45547 +S'unglazed' +p45549 +tp45550 +a(g45547 +g45549 +S'and' +p45551 +tp45552 +a(g45549 +g45551 +S'brown,' +p45553 +tp45554 +a(g45551 +g45553 +S'the' +p45555 +tp45556 +a(g45553 +g45555 +S'base' +p45557 +tp45558 +a(g45555 +g45557 +S'glazed.' +p45559 +tp45560 +a(g45557 +g45559 +S'the' +p45561 +tp45562 +a(g45559 +g45561 +S'pale' +p45563 +tp45564 +a(g45561 +g45563 +S'blue,' +p45565 +tp45566 +a(g45563 +g45565 +S'translucent' +p45567 +tp45568 +a(g45565 +g45567 +S'celadon' +p45569 +tp45570 +a(g45567 +g45569 +S'glaze' +p45571 +tp45572 +a(g45569 +g45571 +S'has' +p45573 +tp45574 +a(g45571 +g45573 +S'a' +p45575 +tp45576 +a(g45573 +g45575 +S'soft' +p45577 +tp45578 +a(g45575 +g45577 +S'luster' +p45579 +tp45580 +a(g45577 +g45579 +S'and' +p45581 +tp45582 +a(g45579 +g45581 +S'is' +p45583 +tp45584 +a(g45581 +g45583 +S'finely' +p45585 +tp45586 +a(g45583 +g45585 +S'bubbled.' +p45587 +tp45588 +a(g45585 +g45587 +S'where' +p45589 +tp45590 +a(g45587 +g45589 +S'it' +p45591 +tp45592 +a(g45589 +g45591 +S'runs' +p45593 +tp45594 +a(g45591 +g45593 +S'thin' +p45595 +tp45596 +a(g45593 +g45595 +S'over' +p45597 +tp45598 +a(g45595 +g45597 +S'the' +p45599 +tp45600 +a(g45597 +g45599 +S'relief' +p45601 +tp45602 +a(g45599 +g45601 +S'elements,' +p45603 +tp45604 +a(g45601 +g45603 +S'the' +p45605 +tp45606 +a(g45603 +g45605 +S'pure' +p45607 +tp45608 +a(g45605 +g45607 +S'white' +p45609 +tp45610 +a(g45607 +g45609 +S'of' +p45611 +tp45612 +a(g45609 +g45611 +S'the' +p45613 +tp45614 +a(g45611 +g45613 +S'porcelain' +p45615 +tp45616 +a(g45613 +g45615 +S'body' +p45617 +tp45618 +a(g45615 +g45617 +S'shows' +p45619 +tp45620 +a(g45617 +g45619 +S'through.' +p45621 +tp45622 +a(g45619 +g45621 +S'the' +p45623 +tp45624 +a(g45621 +g45623 +S'glaze' +p45625 +tp45626 +a(g45623 +g45625 +S'on' +p45627 +tp45628 +a(g45625 +g45627 +S'1942.9.443' +p45629 +tp45630 +a(g45627 +g45629 +S'is' +p45631 +tp45632 +a(g45629 +g45631 +S'slightly' +p45633 +tp45634 +a(g45631 +g45633 +S'more' +p45635 +tp45636 +a(g45633 +g45635 +S'blue' +p45637 +tp45638 +a(g45635 +g45637 +S'and' +p45639 +tp45640 +a(g45637 +g45639 +S'very' +p45641 +tp45642 +a(g45639 +g45641 +S'slightly' +p45643 +tp45644 +a(g45641 +g45643 +S'thicker' +p45645 +tp45646 +a(g45643 +g45645 +S'than' +p45647 +tp45648 +a(g45645 +g45647 +S'that' +p45649 +tp45650 +a(g45647 +g45649 +S'on' +p45651 +tp45652 +a(g45649 +g45651 +S'the' +p45653 +tp45654 +a(g45651 +g45653 +S'companion' +p45655 +tp45656 +a(g45653 +g45655 +S'piece.' +p45657 +tp45658 +a(g45655 +g45657 +S'(text' +p45659 +tp45660 +a(g45657 +g45659 +S'by' +p45661 +tp45662 +a(g45659 +g45661 +S'josephine' +p45663 +tp45664 +a(g45661 +g45663 +S'hadley' +p45665 +tp45666 +a(g45663 +g45665 +S'knapp,' +p45667 +tp45668 +a(g45665 +g45667 +S'published' +p45669 +tp45670 +a(g45667 +g45669 +S'in' +p45671 +tp45672 +a(g45669 +g45671 +S'the' +p45673 +tp45674 +a(g45671 +g45673 +S'nga' +p45675 +tp45676 +a(g45673 +g45675 +S'systematic' +p45677 +tp45678 +a(g45675 +g45677 +S'catalogue:' +p45679 +tp45680 +a(g45677 +g45679 +S'notes' +p45687 +tp45688 +a(g45685 +g45687 +S'' +p45689 +tp45690 +a(g45687 +g45689 +S'' +p45693 +tp45694 +a(g45691 +g45693 +S'' +p45697 +tp45698 +a(g45695 +g45697 +S'' +p45701 +tp45702 +a(g45699 +g45701 +S'' +p45705 +tp45706 +a(g45703 +g45705 +S"men's" +p45707 +tp45708 +a(g45705 +g45707 +S'clothing' +p45709 +tp45710 +a(g45707 +g45709 +S'of' +p45711 +tp45712 +a(g45709 +g45711 +S'the' +p45713 +tp45714 +a(g45711 +g45713 +S'mid-nineteenth' +p45715 +tp45716 +a(g45713 +g45715 +S'century' +p45717 +tp45718 +a(g45715 +g45717 +S'has' +p45719 +tp45720 +a(g45717 +g45719 +S'the' +p45721 +tp45722 +a(g45719 +g45721 +S'simplicity' +p45723 +tp45724 +a(g45721 +g45723 +S'of' +p45725 +tp45726 +a(g45723 +g45725 +S'style' +p45727 +tp45728 +a(g45725 +g45727 +S'to' +p45729 +tp45730 +a(g45727 +g45729 +S'which' +p45731 +tp45732 +a(g45729 +g45731 +S'we' +p45733 +tp45734 +a(g45731 +g45733 +S'are' +p45735 +tp45736 +a(g45733 +g45735 +S'accustomed' +p45737 +tp45738 +a(g45735 +g45737 +S'today.' +p45739 +tp45740 +a(g45737 +g45739 +S'this' +p45741 +tp45742 +a(g45739 +g45741 +S'coat' +p45743 +tp45744 +a(g45741 +g45743 +S'and' +p45745 +tp45746 +a(g45743 +g45745 +S'hat,' +p45747 +tp45748 +a(g45745 +g45747 +S'dated' +p45749 +tp45750 +a(g45747 +g45749 +S'about' +p45751 +tp45752 +a(g45749 +g45751 +S'1840,' +p45753 +tp45754 +a(g45751 +g45753 +S'were' +p45755 +tp45756 +a(g45753 +g45755 +S'made' +p45757 +tp45758 +a(g45755 +g45757 +S'for' +p45759 +tp45760 +a(g45757 +g45759 +S'joseph' +p45761 +tp45762 +a(g45759 +g45761 +S'bimmler,' +p45763 +tp45764 +a(g45761 +g45763 +S'founder' +p45765 +tp45766 +a(g45763 +g45765 +S'of' +p45767 +tp45768 +a(g45765 +g45767 +S'the' +p45769 +tp45770 +a(g45767 +g45769 +S'zoar' +p45771 +tp45772 +a(g45769 +g45771 +S'society,' +p45773 +tp45774 +a(g45771 +g45773 +S'a' +p45775 +tp45776 +a(g45773 +g45775 +S'religious' +p45777 +tp45778 +a(g45775 +g45777 +S'community' +p45779 +tp45780 +a(g45777 +g45779 +S'in' +p45781 +tp45782 +a(g45779 +g45781 +S'ohio.' +p45783 +tp45784 +a(g45781 +g45783 +S'the' +p45785 +tp45786 +a(g45783 +g45785 +S'coat' +p45787 +tp45788 +a(g45785 +g45787 +S'of' +p45789 +tp45790 +a(g45787 +g45789 +S'darkblue' +p45791 +tp45792 +a(g45789 +g45791 +S'broadcloth' +p45793 +tp45794 +a(g45791 +g45793 +S'was' +p45795 +tp45796 +a(g45793 +g45795 +S'made' +p45797 +tp45798 +a(g45795 +g45797 +S'in' +p45799 +tp45800 +a(g45797 +g45799 +S'the' +p45801 +tp45802 +a(g45799 +g45801 +S'community' +p45803 +tp45804 +a(g45801 +g45803 +S'sewing' +p45805 +tp45806 +a(g45803 +g45805 +S'house.' +p45807 +tp45808 +a(g45805 +g45807 +S'the' +p45809 +tp45810 +a(g45807 +g45809 +S'hat,' +p45811 +tp45812 +a(g45809 +g45811 +S'called' +p45813 +tp45814 +a(g45811 +g45813 +S'a' +p45815 +tp45816 +a(g45813 +g45815 +S'"beaver"' +p45817 +tp45818 +a(g45815 +g45817 +S'or' +p45819 +tp45820 +a(g45817 +g45819 +S'tall' +p45821 +tp45822 +a(g45819 +g45821 +S'hat,' +p45823 +tp45824 +a(g45821 +g45823 +S'has' +p45825 +tp45826 +a(g45823 +g45825 +S'a' +p45827 +tp45828 +a(g45825 +g45827 +S'label' +p45829 +tp45830 +a(g45827 +g45829 +S'inside' +p45831 +tp45832 +a(g45829 +g45831 +S'indicating' +p45833 +tp45834 +a(g45831 +g45833 +S'that' +p45835 +tp45836 +a(g45833 +g45835 +S'it' +p45837 +tp45838 +a(g45835 +g45837 +S'was' +p45839 +tp45840 +a(g45837 +g45839 +S'made' +p45841 +tp45842 +a(g45839 +g45841 +S'by' +p45843 +tp45844 +a(g45841 +g45843 +S'e.' +p45845 +tp45846 +a(g45843 +g45845 +S'brown' +p45847 +tp45848 +a(g45845 +g45847 +S'in' +p45849 +tp45850 +a(g45847 +g45849 +S'philadelphia.' +p45851 +tp45852 +a(g45849 +g45851 +S'the' +p45853 +tp45854 +a(g45851 +g45853 +S'boots,' +p45855 +tp45856 +a(g45853 +g45855 +S'dated' +p45857 +tp45858 +a(g45855 +g45857 +S'about' +p45859 +tp45860 +a(g45857 +g45859 +S'1870,' +p45861 +tp45862 +a(g45859 +g45861 +S'are' +p45863 +tp45864 +a(g45861 +g45863 +S'from' +p45865 +tp45866 +a(g45863 +g45865 +S'the' +p45867 +tp45868 +a(g45865 +g45867 +S'zoar' +p45869 +tp45870 +a(g45867 +g45869 +S"society's" +p45871 +tp45872 +a(g45869 +g45871 +S'boot' +p45873 +tp45874 +a(g45871 +g45873 +S'shop.' +p45875 +tp45876 +a(g45873 +g45875 +S'during' +p45877 +tp45878 +a(g45875 +g45877 +S'the' +p45879 +tp45880 +a(g45877 +g45879 +S'second' +p45881 +tp45882 +a(g45879 +g45881 +S'half' +p45883 +tp45884 +a(g45881 +g45883 +S'of' +p45885 +tp45886 +a(g45883 +g45885 +S'the' +p45887 +tp45888 +a(g45885 +g45887 +S'nineteenth' +p45889 +tp45890 +a(g45887 +g45889 +S'century,' +p45891 +tp45892 +a(g45889 +g45891 +S'boots' +p45893 +tp45894 +a(g45891 +g45893 +S'and' +p45895 +tp45896 +a(g45893 +g45895 +S'shoes' +p45897 +tp45898 +a(g45895 +g45897 +S'were' +p45899 +tp45900 +a(g45897 +g45899 +S'made' +p45901 +tp45902 +a(g45899 +g45901 +S'on' +p45903 +tp45904 +a(g45901 +g45903 +S'wooden' +p45905 +tp45906 +a(g45903 +g45905 +S'forms' +p45907 +tp45908 +a(g45905 +g45907 +S'called' +p45909 +tp45910 +a(g45907 +g45909 +S'"lasts,"' +p45911 +tp45912 +a(g45909 +g45911 +S'which' +p45913 +tp45914 +a(g45911 +g45913 +S'were' +p45915 +tp45916 +a(g45913 +g45915 +S'shaped' +p45917 +tp45918 +a(g45915 +g45917 +S'for' +p45919 +tp45920 +a(g45917 +g45919 +S'the' +p45921 +tp45922 +a(g45919 +g45921 +S'left' +p45923 +tp45924 +a(g45921 +g45923 +S'and' +p45925 +tp45926 +a(g45923 +g45925 +S'right' +p45927 +tp45928 +a(g45925 +g45927 +S'feet.' +p45929 +tp45930 +a(g45927 +g45929 +S'such' +p45931 +tp45932 +a(g45929 +g45931 +S'forms' +p45933 +tp45934 +a(g45931 +g45933 +S'are' +p45935 +tp45936 +a(g45933 +g45935 +S'used' +p45937 +tp45938 +a(g45935 +g45937 +S'for' +p45939 +tp45940 +a(g45937 +g45939 +S'making' +p45941 +tp45942 +a(g45939 +g45941 +S'shoes' +p45943 +tp45944 +a(g45941 +g45943 +S'today.' +p45945 +tp45946 +a(g45943 +g45945 +S'gold' +p45947 +tp45948 +a(g45945 +g45947 +S'and' +p45949 +tp45950 +a(g45947 +g45949 +S'silver' +p45951 +tp45952 +a(g45949 +g45951 +S'threads' +p45953 +tp45954 +a(g45951 +g45953 +S'add' +p45955 +tp45956 +a(g45953 +g45955 +S'life' +p45957 +tp45958 +a(g45955 +g45957 +S'to' +p45959 +tp45960 +a(g45957 +g45959 +S'this' +p45961 +tp45962 +a(g45959 +g45961 +S'tapestry,' +p45963 +tp45964 +a(g45961 +g45963 +S'often' +p45965 +tp45966 +a(g45963 +g45965 +S'described' +p45967 +tp45968 +a(g45965 +g45967 +S'as' +p45969 +tp45970 +a(g45967 +g45969 +S'the' +p45971 +tp45972 +a(g45969 +g45971 +S'finest' +p45973 +tp45974 +a(g45971 +g45973 +S'surviving' +p45975 +tp45976 +a(g45973 +g45975 +S'from' +p45977 +tp45978 +a(g45975 +g45977 +S'the' +p45979 +tp45980 +a(g45977 +g45979 +S'middle' +p45981 +tp45982 +a(g45979 +g45981 +S'ages' +p45983 +tp45984 +a(g45981 +g45983 +S'and' +p45985 +tp45986 +a(g45983 +g45985 +S'early' +p45987 +tp45988 +a(g45985 +g45987 +S'renaissance.' +p45989 +tp45990 +a(g45987 +g45989 +S'everything' +p45991 +tp45992 +a(g45989 +g45991 +S'indicates' +p45993 +tp45994 +a(g45991 +g45993 +S'that' +p45995 +tp45996 +a(g45993 +g45995 +S'this' +p45997 +tp45998 +a(g45995 +g45997 +S'was' +p45999 +tp46000 +a(g45997 +g45999 +S'an' +p46001 +tp46002 +a(g45999 +g46001 +S'important' +p46003 +tp46004 +a(g46001 +g46003 +S'commission:' +p46005 +tp46006 +a(g46003 +g46005 +S'its' +p46007 +tp46008 +a(g46005 +g46007 +S'size—more' +p46009 +tp46010 +a(g46007 +g46009 +S'than' +p46011 +tp46012 +a(g46009 +g46011 +S'13' +p46013 +tp46014 +a(g46011 +g46013 +S'feet' +p46015 +tp46016 +a(g46013 +g46015 +S'wide;' +p46017 +tp46018 +a(g46015 +g46017 +S'its' +p46019 +tp46020 +a(g46017 +g46019 +S'workmanship—woven' +p46021 +tp46022 +a(g46019 +g46021 +S'with' +p46023 +tp46024 +a(g46021 +g46023 +S'as' +p46025 +tp46026 +a(g46023 +g46025 +S'many' +p46027 +tp46028 +a(g46025 +g46027 +S'as' +p46029 +tp46030 +a(g46027 +g46029 +S'28' +p46031 +tp46032 +a(g46029 +g46031 +S'warp' +p46033 +tp46034 +a(g46031 +g46033 +S'(vertical)' +p46035 +tp46036 +a(g46033 +g46035 +S'threads' +p46037 +tp46038 +a(g46035 +g46037 +S'per' +p46039 +tp46040 +a(g46037 +g46039 +S'inch;' +p46041 +tp46042 +a(g46039 +g46041 +S'and' +p46043 +tp46044 +a(g46041 +g46043 +S'its' +p46045 +tp46046 +a(g46043 +g46045 +S'lavish' +p46047 +tp46048 +a(g46045 +g46047 +S'materials—with' +p46049 +tp46050 +a(g46047 +g46049 +S'up' +p46051 +tp46052 +a(g46049 +g46051 +S'to' +p46053 +tp46054 +a(g46051 +g46053 +S'thirty' +p46055 +tp46056 +a(g46053 +g46055 +S'percent' +p46057 +tp46058 +a(g46055 +g46057 +S'of' +p46059 +tp46060 +a(g46057 +g46059 +S'the' +p46061 +tp46062 +a(g46059 +g46061 +S'surface' +p46063 +tp46064 +a(g46061 +g46063 +S'woven' +p46065 +tp46066 +a(g46063 +g46065 +S'with' +p46067 +tp46068 +a(g46065 +g46067 +S'gold' +p46069 +tp46070 +a(g46067 +g46069 +S'or' +p46071 +tp46072 +a(g46069 +g46071 +S'silver' +p46073 +tp46074 +a(g46071 +g46073 +S'wrapped' +p46075 +tp46076 +a(g46073 +g46075 +S'threads.' +p46077 +tp46078 +a(g46075 +g46077 +S'perhaps' +p46079 +tp46080 +a(g46077 +g46079 +S'this' +p46081 +tp46082 +a(g46079 +g46081 +S'tapestry' +p46083 +tp46084 +a(g46081 +g46083 +S'was' +p46085 +tp46086 +a(g46083 +g46085 +S'made' +p46087 +tp46088 +a(g46085 +g46087 +S'to' +p46089 +tp46090 +a(g46087 +g46089 +S'celebrate' +p46091 +tp46092 +a(g46089 +g46091 +S'a' +p46093 +tp46094 +a(g46091 +g46093 +S'royal' +p46095 +tp46096 +a(g46093 +g46095 +S'wedding,' +p46097 +tp46098 +a(g46095 +g46097 +S'but' +p46099 +tp46100 +a(g46097 +g46099 +S'the' +p46101 +tp46102 +a(g46099 +g46101 +S'first' +p46103 +tp46104 +a(g46101 +g46103 +S'information' +p46105 +tp46106 +a(g46103 +g46105 +S'about' +p46107 +tp46108 +a(g46105 +g46107 +S'it' +p46109 +tp46110 +a(g46107 +g46109 +S'dates' +p46111 +tp46112 +a(g46109 +g46111 +S'from' +p46113 +tp46114 +a(g46111 +g46113 +S'150' +p46115 +tp46116 +a(g46113 +g46115 +S'years' +p46117 +tp46118 +a(g46115 +g46117 +S'after' +p46119 +tp46120 +a(g46117 +g46119 +S'its' +p46121 +tp46122 +a(g46119 +g46121 +S'creation.' +p46123 +tp46124 +a(g46121 +g46123 +S'it' +p46125 +tp46126 +a(g46123 +g46125 +S'was' +p46127 +tp46128 +a(g46125 +g46127 +S'listed' +p46129 +tp46130 +a(g46127 +g46129 +S'in' +p46131 +tp46132 +a(g46129 +g46131 +S'a' +p46133 +tp46134 +a(g46131 +g46133 +S'1653' +p46135 +tp46136 +a(g46133 +g46135 +S'inventory' +p46137 +tp46138 +a(g46135 +g46137 +S'of' +p46139 +tp46140 +a(g46137 +g46139 +S'the' +p46141 +tp46142 +a(g46139 +g46141 +S'effects' +p46143 +tp46144 +a(g46141 +g46143 +S'of' +p46145 +tp46146 +a(g46143 +g46145 +S'the' +p46147 +tp46148 +a(g46145 +g46147 +S'powerful' +p46149 +tp46150 +a(g46147 +g46149 +S'french' +p46151 +tp46152 +a(g46149 +g46151 +S'cardinal' +p46153 +tp46154 +a(g46151 +g46153 +S'mazarin,' +p46155 +tp46156 +a(g46153 +g46155 +S'prime' +p46157 +tp46158 +a(g46155 +g46157 +S'minister' +p46159 +tp46160 +a(g46157 +g46159 +S'and' +p46161 +tp46162 +a(g46159 +g46161 +S'virtual' +p46163 +tp46164 +a(g46161 +g46163 +S'ruler' +p46165 +tp46166 +a(g46163 +g46165 +S'of' +p46167 +tp46168 +a(g46165 +g46167 +S'france.' +p46169 +tp46170 +a(g46167 +g46169 +S'mazarin' +p46171 +tp46172 +a(g46169 +g46171 +S'owned' +p46173 +tp46174 +a(g46171 +g46173 +S'more' +p46175 +tp46176 +a(g46173 +g46175 +S'than' +p46177 +tp46178 +a(g46175 +g46177 +S'350' +p46179 +tp46180 +a(g46177 +g46179 +S'tapestries' +p46181 +tp46182 +a(g46179 +g46181 +S'and' +p46183 +tp46184 +a(g46181 +g46183 +S'prized' +p46185 +tp46186 +a(g46183 +g46185 +S'this' +p46187 +tp46188 +a(g46185 +g46187 +S'one' +p46189 +tp46190 +a(g46187 +g46189 +S'among' +p46191 +tp46192 +a(g46189 +g46191 +S'them.' +p46193 +tp46194 +a(g46191 +g46193 +S'tapestries' +p46195 +tp46196 +a(g46193 +g46195 +S'were' +p46197 +tp46198 +a(g46195 +g46197 +S'generally' +p46199 +tp46200 +a(g46197 +g46199 +S'more' +p46201 +tp46202 +a(g46199 +g46201 +S'expensive,' +p46203 +tp46204 +a(g46201 +g46203 +S'more' +p46205 +tp46206 +a(g46203 +g46205 +S'valued' +p46207 +tp46208 +a(g46205 +g46207 +S'than' +p46209 +tp46210 +a(g46207 +g46209 +S'paintings;' +p46211 +tp46212 +a(g46209 +g46211 +S'they' +p46213 +tp46214 +a(g46211 +g46213 +S'served' +p46215 +tp46216 +a(g46213 +g46215 +S'the' +p46217 +tp46218 +a(g46215 +g46217 +S'dual' +p46219 +tp46220 +a(g46217 +g46219 +S'purpose' +p46221 +tp46222 +a(g46219 +g46221 +S'of' +p46223 +tp46224 +a(g46221 +g46223 +S'insulating' +p46225 +tp46226 +a(g46223 +g46225 +S'drafty' +p46227 +tp46228 +a(g46225 +g46227 +S'rooms' +p46229 +tp46230 +a(g46227 +g46229 +S'while' +p46231 +tp46232 +a(g46229 +g46231 +S'beautifying' +p46233 +tp46234 +a(g46231 +g46233 +S'them.' +p46235 +tp46236 +a(g46233 +g46235 +S'for' +p46237 +tp46238 +a(g46235 +g46237 +S'important' +p46239 +tp46240 +a(g46237 +g46239 +S'tapestries,' +p46241 +tp46242 +a(g46239 +g46241 +S'renowned' +p46243 +tp46244 +a(g46241 +g46243 +S'artists' +p46245 +tp46246 +a(g46243 +g46245 +S'would' +p46247 +tp46248 +a(g46245 +g46247 +S'often' +p46249 +tp46250 +a(g46247 +g46249 +S'draw' +p46251 +tp46252 +a(g46249 +g46251 +S'the' +p46253 +tp46254 +a(g46251 +g46253 +S'design,' +p46255 +tp46256 +a(g46253 +g46255 +S'called' +p46257 +tp46258 +a(g46255 +g46257 +S'a' +p46259 +tp46260 +a(g46257 +g46259 +S'cartoon,' +p46261 +tp46262 +a(g46259 +g46261 +S'which' +p46263 +tp46264 +a(g46261 +g46263 +S'was' +p46265 +tp46266 +a(g46263 +g46265 +S'then' +p46267 +tp46268 +a(g46265 +g46267 +S'woven' +p46269 +tp46270 +a(g46267 +g46269 +S'in' +p46271 +tp46272 +a(g46269 +g46271 +S'specialized' +p46273 +tp46274 +a(g46271 +g46273 +S'studios.' +p46275 +tp46276 +a(g46273 +g46275 +S'by' +p46277 +tp46278 +a(g46275 +g46277 +S'1500' +p46279 +tp46280 +a(g46277 +g46279 +S'brussels' +p46281 +tp46282 +a(g46279 +g46281 +S'was' +p46283 +tp46284 +a(g46281 +g46283 +S'the' +p46285 +tp46286 +a(g46283 +g46285 +S'most' +p46287 +tp46288 +a(g46285 +g46287 +S'important' +p46289 +tp46290 +a(g46287 +g46289 +S'weaving' +p46291 +tp46292 +a(g46289 +g46291 +S'center;' +p46293 +tp46294 +a(g46291 +g46293 +S'the' +p46295 +tp46296 +a(g46293 +g46295 +S'mazarin' +p46297 +tp46298 +a(g46295 +g46297 +S'tapestry' +p46299 +tp46300 +a(g46297 +g46299 +S'was' +p46301 +tp46302 +a(g46299 +g46301 +S'probably' +p46303 +tp46304 +a(g46301 +g46303 +S'made' +p46305 +tp46306 +a(g46303 +g46305 +S'there' +p46307 +tp46308 +a(g46305 +g46307 +S'although' +p46309 +tp46310 +a(g46307 +g46309 +S'the' +p46311 +tp46312 +a(g46309 +g46311 +S'artist' +p46313 +tp46314 +a(g46311 +g46313 +S'responsible' +p46315 +tp46316 +a(g46313 +g46315 +S'for' +p46317 +tp46318 +a(g46315 +g46317 +S'the' +p46319 +tp46320 +a(g46317 +g46319 +S'cartoon' +p46321 +tp46322 +a(g46319 +g46321 +S'remains' +p46323 +tp46324 +a(g46321 +g46323 +S'unknown.' +p46325 +tp46326 +a(g46323 +g46325 +S'the' +p46327 +tp46328 +a(g46325 +g46327 +S'imagery' +p46329 +tp46330 +a(g46327 +g46329 +S'depicted' +p46331 +tp46332 +a(g46329 +g46331 +S'in' +p46333 +tp46334 +a(g46331 +g46333 +S'the' +p46335 +tp46336 +a(g46333 +g46335 +S'foreboding' +p46337 +tp46338 +a(g46335 +g46337 +S'mood' +p46339 +tp46340 +a(g46337 +g46339 +S'of' +p46341 +tp46342 +a(g46339 +g46341 +S"andrea's" +p46343 +tp46344 +a(g46341 +g46343 +S'court' +p46345 +tp46346 +a(g46343 +g46345 +S'painter' +p46347 +tp46348 +a(g46345 +g46347 +S'to' +p46349 +tp46350 +a(g46347 +g46349 +S'louis' +p46351 +tp46352 +a(g46349 +g46351 +S'xv' +p46353 +tp46354 +a(g46351 +g46353 +S'and' +p46355 +tp46356 +a(g46353 +g46355 +S'madame' +p46357 +tp46358 +a(g46355 +g46357 +S'de' +p46359 +tp46360 +a(g46357 +g46359 +S'pompadour,' +p46361 +tp46362 +a(g46359 +g46361 +S'the' +p46363 +tp46364 +a(g46361 +g46363 +S'cartoon' +p46365 +tp46366 +a(g46363 +g46365 +S'was' +p46367 +tp46368 +a(g46365 +g46367 +S'woven' +p46369 +tp46370 +a(g46367 +g46369 +S'three' +p46371 +tp46372 +a(g46369 +g46371 +S'times' +p46373 +tp46374 +a(g46371 +g46373 +S'at' +p46375 +tp46376 +a(g46373 +g46375 +S'beauvais.' +p46377 +tp46378 +a(g46375 +g46377 +S'boucher' +p46379 +tp46380 +a(g46377 +g46379 +S'derived' +p46381 +tp46382 +a(g46379 +g46381 +S'the' +p46383 +tp46384 +a(g46381 +g46383 +S'scene' +p46385 +tp46386 +a(g46383 +g46385 +S'from' +p46387 +tp46388 +a(g46385 +g46387 +S'rinaldo,' +p46389 +tp46390 +a(g46387 +g46389 +S'a' +p46391 +tp46392 +a(g46389 +g46391 +S'christian' +p46393 +tp46394 +a(g46391 +g46393 +S'hero,' +p46395 +tp46396 +a(g46393 +g46395 +S'sleeps' +p46397 +tp46398 +a(g46395 +g46397 +S'in' +p46399 +tp46400 +a(g46397 +g46399 +S'the' +p46401 +tp46402 +a(g46399 +g46401 +S'enchanted' +p46403 +tp46404 +a(g46401 +g46403 +S'garden' +p46405 +tp46406 +a(g46403 +g46405 +S'of' +p46407 +tp46408 +a(g46405 +g46407 +S'the' +p46409 +tp46410 +a(g46407 +g46409 +S'sorceress' +p46411 +tp46412 +a(g46409 +g46411 +S'armida,' +p46413 +tp46414 +a(g46411 +g46413 +S'who' +p46415 +tp46416 +a(g46413 +g46415 +S'sided' +p46417 +tp46418 +a(g46415 +g46417 +S'with' +p46419 +tp46420 +a(g46417 +g46419 +S'the' +p46421 +tp46422 +a(g46419 +g46421 +S'saracens.' +p46423 +tp46424 +a(g46421 +g46423 +S'nymphs' +p46425 +tp46426 +a(g46423 +g46425 +S'and' +p46427 +tp46428 +a(g46425 +g46427 +S'cupids—companions' +p46429 +tp46430 +a(g46427 +g46429 +S'of' +p46431 +tp46432 +a(g46429 +g46431 +S'venus,' +p46433 +tp46434 +a(g46431 +g46433 +S'the' +p46435 +tp46436 +a(g46433 +g46435 +S'classical' +p46437 +tp46438 +a(g46435 +g46437 +S'goddess' +p46439 +tp46440 +a(g46437 +g46439 +S'of' +p46441 +tp46442 +a(g46439 +g46441 +S'love—play' +p46443 +tp46444 +a(g46441 +g46443 +S'amid' +p46445 +tp46446 +a(g46443 +g46445 +S'fluffy' +p46447 +tp46448 +a(g46445 +g46447 +S'rococo' +p46449 +tp46450 +a(g46447 +g46449 +S'foliage' +p46451 +tp46452 +a(g46449 +g46451 +S'watered' +p46453 +tp46454 +a(g46451 +g46453 +S'by' +p46455 +tp46456 +a(g46453 +g46455 +S'a' +p46457 +tp46458 +a(g46455 +g46457 +S'dolphin-shaped' +p46459 +tp46460 +a(g46457 +g46459 +S'fountain,' +p46461 +tp46462 +a(g46459 +g46461 +S'itself' +p46463 +tp46464 +a(g46461 +g46463 +S'a' +p46465 +tp46466 +a(g46463 +g46465 +S'symbol' +p46467 +tp46468 +a(g46465 +g46467 +S'of' +p46469 +tp46470 +a(g46467 +g46469 +S'venus’' +p46471 +tp46472 +a(g46469 +g46471 +S'birth' +p46473 +tp46474 +a(g46471 +g46473 +S'from' +p46475 +tp46476 +a(g46473 +g46475 +S'the' +p46477 +tp46478 +a(g46475 +g46477 +S'sea.' +p46479 +tp46480 +a(g46477 +g46479 +S'as' +p46481 +tp46482 +a(g46479 +g46481 +S'an' +p46483 +tp46484 +a(g46481 +g46483 +S'indication' +p46485 +tp46486 +a(g46483 +g46485 +S'that' +p46487 +tp46488 +a(g46485 +g46487 +S'the' +p46489 +tp46490 +a(g46487 +g46489 +S'dreaming' +p46491 +tp46492 +a(g46489 +g46491 +S'rinaldo' +p46493 +tp46494 +a(g46491 +g46493 +S'will' +p46495 +tp46496 +a(g46493 +g46495 +S'awaken' +p46497 +tp46498 +a(g46495 +g46497 +S'from' +p46499 +tp46500 +a(g46497 +g46499 +S"armida's" +p46501 +tp46502 +a(g46499 +g46501 +S'seductive' +p46503 +tp46504 +a(g46501 +g46503 +S'spell' +p46505 +tp46506 +a(g46503 +g46505 +S'and' +p46507 +tp46508 +a(g46505 +g46507 +S'lead' +p46509 +tp46510 +a(g46507 +g46509 +S'the' +p46511 +tp46512 +a(g46509 +g46511 +S'crusaders' +p46513 +tp46514 +a(g46511 +g46513 +S'to' +p46515 +tp46516 +a(g46513 +g46515 +S'victory,' +p46517 +tp46518 +a(g46515 +g46517 +S'he' +p46519 +tp46520 +a(g46517 +g46519 +S'holds' +p46521 +tp46522 +a(g46519 +g46521 +S'his' +p46523 +tp46524 +a(g46521 +g46523 +S'plumed' +p46525 +tp46526 +a(g46523 +g46525 +S'helmet.' +p46527 +tp46528 +a(g46525 +g46527 +S'open' +p46529 +tp46530 +a(g46527 +g46529 +S'chairs' +p46531 +tp46532 +a(g46529 +g46531 +S'were' +p46533 +tp46534 +a(g46531 +g46533 +S'more' +p46535 +tp46536 +a(g46533 +g46535 +S'widely' +p46537 +tp46538 +a(g46535 +g46537 +S'used' +p46539 +tp46540 +a(g46537 +g46539 +S'in' +p46541 +tp46542 +a(g46539 +g46541 +S'america' +p46543 +tp46544 +a(g46541 +g46543 +S'than' +p46545 +tp46546 +a(g46543 +g46545 +S'the' +p46547 +tp46548 +a(g46545 +g46547 +S'solid' +p46549 +tp46550 +a(g46547 +g46549 +S'wainscot' +p46551 +tp46552 +a(g46549 +g46551 +S'chair.' +p46553 +tp46554 +a(g46551 +g46553 +S'carver' +p46555 +tp46556 +a(g46553 +g46555 +S'and' +p46557 +tp46558 +a(g46555 +g46557 +S'brewster' +p46559 +tp46560 +a(g46557 +g46559 +S'chairs,' +p46561 +tp46562 +a(g46559 +g46561 +S'named' +p46563 +tp46564 +a(g46561 +g46563 +S'after' +p46565 +tp46566 +a(g46563 +g46565 +S'seventeenth-century' +p46567 +tp46568 +a(g46565 +g46567 +S'massachusetts' +p46569 +tp46570 +a(g46567 +g46569 +S'governors,' +p46571 +tp46572 +a(g46569 +g46571 +S'were' +p46573 +tp46574 +a(g46571 +g46573 +S'two' +p46575 +tp46576 +a(g46573 +g46575 +S'popular' +p46577 +tp46578 +a(g46575 +g46577 +S'types' +p46579 +tp46580 +a(g46577 +g46579 +S'of' +p46581 +tp46582 +a(g46579 +g46581 +S'open-back' +p46583 +tp46584 +a(g46581 +g46583 +S'chairs.' +p46585 +tp46586 +a(g46583 +g46585 +S'the' +p46587 +tp46588 +a(g46585 +g46587 +S'carver' +p46589 +tp46590 +a(g46587 +g46589 +S'armchair,' +p46591 +tp46592 +a(g46589 +g46591 +S'seen' +p46593 +tp46594 +a(g46591 +g46593 +S'here,' +p46595 +tp46596 +a(g46593 +g46595 +S'has' +p46597 +tp46598 +a(g46595 +g46597 +S'a' +p46599 +tp46600 +a(g46597 +g46599 +S'characteristic' +p46601 +tp46602 +a(g46599 +g46601 +S'seat' +p46603 +tp46604 +a(g46601 +g46603 +S'back' +p46605 +tp46606 +a(g46603 +g46605 +S'consisting' +p46607 +tp46608 +a(g46605 +g46607 +S'of' +p46609 +tp46610 +a(g46607 +g46609 +S'a' +p46611 +tp46612 +a(g46609 +g46611 +S'single' +p46613 +tp46614 +a(g46611 +g46613 +S'row' +p46615 +tp46616 +a(g46613 +g46615 +S'of' +p46617 +tp46618 +a(g46615 +g46617 +S'three' +p46619 +tp46620 +a(g46617 +g46619 +S'turned' +p46621 +tp46622 +a(g46619 +g46621 +S'spindles' +p46623 +tp46624 +a(g46621 +g46623 +S'set' +p46625 +tp46626 +a(g46623 +g46625 +S'between' +p46627 +tp46628 +a(g46625 +g46627 +S'horizontal' +p46629 +tp46630 +a(g46627 +g46629 +S'cross' +p46631 +tp46632 +a(g46629 +g46631 +S'rails.' +p46633 +tp46634 +a(g46631 +g46633 +S'the' +p46635 +tp46636 +a(g46633 +g46635 +S'brewster' +p46637 +tp46638 +a(g46635 +g46637 +S'chair' +p46639 +tp46640 +a(g46637 +g46639 +S'was' +p46641 +tp46642 +a(g46639 +g46641 +S'more' +p46643 +tp46644 +a(g46641 +g46643 +S'complicated,' +p46645 +tp46646 +a(g46643 +g46645 +S'having' +p46647 +tp46648 +a(g46645 +g46647 +S'tiers' +p46649 +tp46650 +a(g46647 +g46649 +S'of' +p46651 +tp46652 +a(g46649 +g46651 +S'turned' +p46653 +tp46654 +a(g46651 +g46653 +S'spindles' +p46655 +tp46656 +a(g46653 +g46655 +S'on' +p46657 +tp46658 +a(g46655 +g46657 +S'the' +p46659 +tp46660 +a(g46657 +g46659 +S'back,' +p46661 +tp46662 +a(g46659 +g46661 +S'and,' +p46663 +tp46664 +a(g46661 +g46663 +S'frequently,' +p46665 +tp46666 +a(g46663 +g46665 +S'under' +p46667 +tp46668 +a(g46665 +g46667 +S'the' +p46669 +tp46670 +a(g46667 +g46669 +S'seat' +p46671 +tp46672 +a(g46669 +g46671 +S'rails' +p46673 +tp46674 +a(g46671 +g46673 +S'as' +p46675 +tp46676 +a(g46673 +g46675 +S'well.' +p46677 +tp46678 +a(g46675 +g46677 +S'slat-back' +p46679 +tp46680 +a(g46677 +g46679 +S'chairs' +p46681 +tp46682 +a(g46679 +g46681 +S'were' +p46683 +tp46684 +a(g46681 +g46683 +S'popular' +p46685 +tp46686 +a(g46683 +g46685 +S'in' +p46687 +tp46688 +a(g46685 +g46687 +S'american' +p46689 +tp46690 +a(g46687 +g46689 +S'houses' +p46691 +tp46692 +a(g46689 +g46691 +S'during' +p46693 +tp46694 +a(g46691 +g46693 +S'both' +p46695 +tp46696 +a(g46693 +g46695 +S'the' +p46697 +tp46698 +a(g46695 +g46697 +S'eighteenth' +p46699 +tp46700 +a(g46697 +g46699 +S'and' +p46701 +tp46702 +a(g46699 +g46701 +S'nineteenth' +p46703 +tp46704 +a(g46701 +g46703 +S'centuries.' +p46705 +tp46706 +a(g46703 +g46705 +S'the' +p46707 +tp46708 +a(g46705 +g46707 +S'horizontal' +p46709 +tp46710 +a(g46707 +g46709 +S'curved' +p46711 +tp46712 +a(g46709 +g46711 +S'back' +p46713 +tp46714 +a(g46711 +g46713 +S'splats' +p46715 +tp46716 +a(g46713 +g46715 +S'were' +p46717 +tp46718 +a(g46715 +g46717 +S'more' +p46719 +tp46720 +a(g46717 +g46719 +S'comfortable' +p46721 +tp46722 +a(g46719 +g46721 +S'than' +p46723 +tp46724 +a(g46721 +g46723 +S'the' +p46725 +tp46726 +a(g46723 +g46725 +S'rigidly' +p46727 +tp46728 +a(g46725 +g46727 +S'vertical' +p46729 +tp46730 +a(g46727 +g46729 +S'spindles' +p46731 +tp46732 +a(g46729 +g46731 +S'of' +p46733 +tp46734 +a(g46731 +g46733 +S'carver' +p46735 +tp46736 +a(g46733 +g46735 +S'and' +p46737 +tp46738 +a(g46735 +g46737 +S'brewster' +p46739 +tp46740 +a(g46737 +g46739 +S'chairs.' +p46741 +tp46742 +a(g46739 +g46741 +S'slat-back' +p46743 +tp46744 +a(g46741 +g46743 +S'chairs' +p46745 +tp46746 +a(g46743 +g46745 +S'display' +p46747 +tp46748 +a(g46745 +g46747 +S'turned' +p46749 +tp46750 +a(g46747 +g46749 +S'construction' +p46751 +tp46752 +a(g46749 +g46751 +S'except' +p46753 +tp46754 +a(g46751 +g46753 +S'for' +p46755 +tp46756 +a(g46753 +g46755 +S'the' +p46757 +tp46758 +a(g46755 +g46757 +S'slats,' +p46759 +tp46760 +a(g46757 +g46759 +S'which' +p46761 +tp46762 +a(g46759 +g46761 +S'were' +p46763 +tp46764 +a(g46761 +g46763 +S'carved' +p46765 +tp46766 +a(g46763 +g46765 +S'as' +p46767 +tp46768 +a(g46765 +g46767 +S'solid' +p46769 +tp46770 +a(g46767 +g46769 +S'curved' +p46771 +tp46772 +a(g46769 +g46771 +S'forms' +p46773 +tp46774 +a(g46771 +g46773 +S'set' +p46775 +tp46776 +a(g46773 +g46775 +S'between' +p46777 +tp46778 +a(g46775 +g46777 +S'turned' +p46779 +tp46780 +a(g46777 +g46779 +S'uprights' +p46781 +tp46782 +a(g46779 +g46781 +S'to' +p46783 +tp46784 +a(g46781 +g46783 +S'form' +p46785 +tp46786 +a(g46783 +g46785 +S'the' +p46787 +tp46788 +a(g46785 +g46787 +S'seat' +p46789 +tp46790 +a(g46787 +g46789 +S'back.' +p46791 +tp46792 +a(g46789 +g46791 +S'the' +p46793 +tp46794 +a(g46791 +g46793 +S'shape' +p46795 +tp46796 +a(g46793 +g46795 +S'of' +p46797 +tp46798 +a(g46795 +g46797 +S'the' +p46799 +tp46800 +a(g46797 +g46799 +S'slat' +p46801 +tp46802 +a(g46799 +g46801 +S'often' +p46803 +tp46804 +a(g46801 +g46803 +S'distinguishes' +p46805 +tp46806 +a(g46803 +g46805 +S'the' +p46807 +tp46808 +a(g46805 +g46807 +S'region' +p46809 +tp46810 +a(g46807 +g46809 +S'in' +p46811 +tp46812 +a(g46809 +g46811 +S'which' +p46813 +tp46814 +a(g46811 +g46813 +S'the' +p46815 +tp46816 +a(g46813 +g46815 +S'chair' +p46817 +tp46818 +a(g46815 +g46817 +S'was' +p46819 +tp46820 +a(g46817 +g46819 +S'made.' +p46821 +tp46822 +a(g46819 +g46821 +S'new' +p46823 +tp46824 +a(g46821 +g46823 +S'england' +p46825 +tp46826 +a(g46823 +g46825 +S'slats' +p46827 +tp46828 +a(g46825 +g46827 +S'were' +p46829 +tp46830 +a(g46827 +g46829 +S'generally' +p46831 +tp46832 +a(g46829 +g46831 +S'cut' +p46833 +tp46834 +a(g46831 +g46833 +S'straight' +p46835 +tp46836 +a(g46833 +g46835 +S'on' +p46837 +tp46838 +a(g46835 +g46837 +S'the' +p46839 +tp46840 +a(g46837 +g46839 +S'lower' +p46841 +tp46842 +a(g46839 +g46841 +S'edge' +p46843 +tp46844 +a(g46841 +g46843 +S'and' +p46845 +tp46846 +a(g46843 +g46845 +S'curved' +p46847 +tp46848 +a(g46845 +g46847 +S'or' +p46849 +tp46850 +a(g46847 +g46849 +S'shaped' +p46851 +tp46852 +a(g46849 +g46851 +S'on' +p46853 +tp46854 +a(g46851 +g46853 +S'the' +p46855 +tp46856 +a(g46853 +g46855 +S'upper,' +p46857 +tp46858 +a(g46855 +g46857 +S'as' +p46859 +tp46860 +a(g46857 +g46859 +S'in' +p46861 +tp46862 +a(g46859 +g46861 +S'this' +p46863 +tp46864 +a(g46861 +g46863 +S'example.' +p46865 +tp46866 +a(g46863 +g46865 +S'although' +p46867 +tp46868 +a(g46865 +g46867 +S'the' +p46869 +tp46870 +a(g46867 +g46869 +S'development' +p46871 +tp46872 +a(g46869 +g46871 +S'of' +p46873 +tp46874 +a(g46871 +g46873 +S'american' +p46875 +tp46876 +a(g46873 +g46875 +S'windsor' +p46877 +tp46878 +a(g46875 +g46877 +S'chairs' +p46879 +tp46880 +a(g46877 +g46879 +S'postdates' +p46881 +tp46882 +a(g46879 +g46881 +S'the' +p46883 +tp46884 +a(g46881 +g46883 +S'jacobean' +p46885 +tp46886 +a(g46883 +g46885 +S'period,' +p46887 +tp46888 +a(g46885 +g46887 +S'windsor' +p46889 +tp46890 +a(g46887 +g46889 +S'construction,' +p46891 +tp46892 +a(g46889 +g46891 +S'like' +p46893 +tp46894 +a(g46891 +g46893 +S'the' +p46895 +tp46896 +a(g46893 +g46895 +S'early' +p46897 +tp46898 +a(g46895 +g46897 +S'furniture,' +p46899 +tp46900 +a(g46897 +g46899 +S'relies' +p46901 +tp46902 +a(g46899 +g46901 +S'upon' +p46903 +tp46904 +a(g46901 +g46903 +S'the' +p46905 +tp46906 +a(g46903 +g46905 +S'use' +p46907 +tp46908 +a(g46905 +g46907 +S'of' +p46909 +tp46910 +a(g46907 +g46909 +S'spindles.' +p46911 +tp46912 +a(g46909 +g46911 +S'because' +p46913 +tp46914 +a(g46911 +g46913 +S'the' +p46915 +tp46916 +a(g46913 +g46915 +S'spindles' +p46917 +tp46918 +a(g46915 +g46917 +S'of' +p46919 +tp46920 +a(g46917 +g46919 +S'the' +p46921 +tp46922 +a(g46919 +g46921 +S'seat' +p46923 +tp46924 +a(g46921 +g46923 +S'back' +p46925 +tp46926 +a(g46923 +g46925 +S'usually' +p46927 +tp46928 +a(g46925 +g46927 +S'fan' +p46929 +tp46930 +a(g46927 +g46929 +S'out' +p46931 +tp46932 +a(g46929 +g46931 +S'from' +p46933 +tp46934 +a(g46931 +g46933 +S'a' +p46935 +tp46936 +a(g46933 +g46935 +S'curved' +p46937 +tp46938 +a(g46935 +g46937 +S'seat,' +p46939 +tp46940 +a(g46937 +g46939 +S'seating' +p46941 +tp46942 +a(g46939 +g46941 +S'space' +p46943 +tp46944 +a(g46941 +g46943 +S'is' +p46945 +tp46946 +a(g46943 +g46945 +S'ample' +p46947 +tp46948 +a(g46945 +g46947 +S'and' +p46949 +tp46950 +a(g46947 +g46949 +S'comfortable.' +p46951 +tp46952 +a(g46949 +g46951 +S'this' +p46953 +tp46954 +a(g46951 +g46953 +S'may' +p46955 +tp46956 +a(g46953 +g46955 +S'account' +p46957 +tp46958 +a(g46955 +g46957 +S'for' +p46959 +tp46960 +a(g46957 +g46959 +S'the' +p46961 +tp46962 +a(g46959 +g46961 +S'continuing' +p46963 +tp46964 +a(g46961 +g46963 +S'use' +p46965 +tp46966 +a(g46963 +g46965 +S'of' +p46967 +tp46968 +a(g46965 +g46967 +S'windsor' +p46969 +tp46970 +a(g46967 +g46969 +S'chairs' +p46971 +tp46972 +a(g46969 +g46971 +S'throughout' +p46973 +tp46974 +a(g46971 +g46973 +S'the' +p46975 +tp46976 +a(g46973 +g46975 +S'eighteenth' +p46977 +tp46978 +a(g46975 +g46977 +S'and' +p46979 +tp46980 +a(g46977 +g46979 +S'nineteenth' +p46981 +tp46982 +a(g46979 +g46981 +S'centuries.' +p46983 +tp46984 +a(g46981 +g46983 +S'windsor' +p46985 +tp46986 +a(g46983 +g46985 +S'chairs' +p46987 +tp46988 +a(g46985 +g46987 +S'originated' +p46989 +tp46990 +a(g46987 +g46989 +S'in' +p46991 +tp46992 +a(g46989 +g46991 +S'england,' +p46993 +tp46994 +a(g46991 +g46993 +S'but' +p46995 +tp46996 +a(g46993 +g46995 +S'american' +p46997 +tp46998 +a(g46995 +g46997 +S'craftsmen' +p46999 +tp47000 +a(g46997 +g46999 +S'developed' +p47001 +tp47002 +a(g46999 +g47001 +S'a' +p47003 +tp47004 +a(g47001 +g47003 +S'wide' +p47005 +tp47006 +a(g47003 +g47005 +S'variety' +p47007 +tp47008 +a(g47005 +g47007 +S'of' +p47009 +tp47010 +a(g47007 +g47009 +S'types' +p47011 +tp47012 +a(g47009 +g47011 +S'that' +p47013 +tp47014 +a(g47011 +g47013 +S'left' +p47015 +tp47016 +a(g47013 +g47015 +S'the' +p47017 +tp47018 +a(g47015 +g47017 +S'english' +p47019 +tp47020 +a(g47017 +g47019 +S'models' +p47021 +tp47022 +a(g47019 +g47021 +S'far' +p47023 +tp47024 +a(g47021 +g47023 +S'behind.' +p47025 +tp47026 +a(g47023 +g47025 +S'windsor' +p47027 +tp47028 +a(g47025 +g47027 +S'chairs' +p47029 +tp47030 +a(g47027 +g47029 +S'are' +p47031 +tp47032 +a(g47029 +g47031 +S'named' +p47033 +tp47034 +a(g47031 +g47033 +S'according' +p47035 +tp47036 +a(g47033 +g47035 +S'to' +p47037 +tp47038 +a(g47035 +g47037 +S'the' +p47039 +tp47040 +a(g47037 +g47039 +S'style' +p47041 +tp47042 +a(g47039 +g47041 +S'of' +p47043 +tp47044 +a(g47041 +g47043 +S'their' +p47045 +tp47046 +a(g47043 +g47045 +S'back;' +p47047 +tp47048 +a(g47045 +g47047 +S'here' +p47049 +tp47050 +a(g47047 +g47049 +S'is' +p47051 +tp47052 +a(g47049 +g47051 +S'a' +p47053 +tp47054 +a(g47051 +g47053 +S'hoop-back' +p47055 +tp47056 +a(g47053 +g47055 +S'armchair,' +p47057 +tp47058 +a(g47055 +g47057 +S'so-called' +p47059 +tp47060 +a(g47057 +g47059 +S'because' +p47061 +tp47062 +a(g47059 +g47061 +S'of' +p47063 +tp47064 +a(g47061 +g47063 +S'its' +p47065 +tp47066 +a(g47063 +g47065 +S'broadly' +p47067 +tp47068 +a(g47065 +g47067 +S'curving' +p47069 +tp47070 +a(g47067 +g47069 +S'back' +p47071 +tp47072 +a(g47069 +g47071 +S'rail,' +p47073 +tp47074 +a(g47071 +g47073 +S'which' +p47075 +tp47076 +a(g47073 +g47075 +S'has' +p47077 +tp47078 +a(g47075 +g47077 +S'been' +p47079 +tp47080 +a(g47077 +g47079 +S'bent' +p47081 +tp47082 +a(g47079 +g47081 +S'downward' +p47083 +tp47084 +a(g47081 +g47083 +S'to' +p47085 +tp47086 +a(g47083 +g47085 +S'meet' +p47087 +tp47088 +a(g47085 +g47087 +S'the' +p47089 +tp47090 +a(g47087 +g47089 +S'arms.' +p47091 +tp47092 +a(g47089 +g47091 +S'the' +p47093 +tp47094 +a(g47091 +g47093 +S'boldly' +p47095 +tp47096 +a(g47093 +g47095 +S'splayed' +p47097 +tp47098 +a(g47095 +g47097 +S'or' +p47099 +tp47100 +a(g47097 +g47099 +S'angled' +p47101 +tp47102 +a(g47099 +g47101 +S'legs' +p47103 +tp47104 +a(g47101 +g47103 +S'and' +p47105 +tp47106 +a(g47103 +g47105 +S'the' +p47107 +tp47108 +a(g47105 +g47107 +S'delicate' +p47109 +tp47110 +a(g47107 +g47109 +S'spindles' +p47111 +tp47112 +a(g47109 +g47111 +S'set' +p47113 +tp47114 +a(g47111 +g47113 +S'off' +p47115 +tp47116 +a(g47113 +g47115 +S'the' +p47117 +tp47118 +a(g47115 +g47117 +S'generous' +p47119 +tp47120 +a(g47117 +g47119 +S'proportions' +p47121 +tp47122 +a(g47119 +g47121 +S'and' +p47123 +tp47124 +a(g47121 +g47123 +S'sweeping' +p47125 +tp47126 +a(g47123 +g47125 +S'arcs' +p47127 +tp47128 +a(g47125 +g47127 +S'of' +p47129 +tp47130 +a(g47127 +g47129 +S'this' +p47131 +tp47132 +a(g47129 +g47131 +S'chair.' +p47133 +tp47134 +a(g47131 +g47133 +S'queen' +p47135 +tp47136 +a(g47133 +g47135 +S'anne' +p47137 +tp47138 +a(g47135 +g47137 +S'chairs' +p47139 +tp47140 +a(g47137 +g47139 +S'are' +p47141 +tp47142 +a(g47139 +g47141 +S'characterized' +p47143 +tp47144 +a(g47141 +g47143 +S'by' +p47145 +tp47146 +a(g47143 +g47145 +S'graceful' +p47147 +tp47148 +a(g47145 +g47147 +S'curving' +p47149 +tp47150 +a(g47147 +g47149 +S'lines.' +p47151 +tp47152 +a(g47149 +g47151 +S'a' +p47153 +tp47154 +a(g47151 +g47153 +S'distinctive' +p47155 +tp47156 +a(g47153 +g47155 +S'feature' +p47157 +tp47158 +a(g47155 +g47157 +S'is' +p47159 +tp47160 +a(g47157 +g47159 +S'the' +p47161 +tp47162 +a(g47159 +g47161 +S'solid' +p47163 +tp47164 +a(g47161 +g47163 +S'back' +p47165 +tp47166 +a(g47163 +g47165 +S'splat,' +p47167 +tp47168 +a(g47165 +g47167 +S'shaped' +p47169 +tp47170 +a(g47167 +g47169 +S'like' +p47171 +tp47172 +a(g47169 +g47171 +S'a' +p47173 +tp47174 +a(g47171 +g47173 +S'vase' +p47175 +tp47176 +a(g47173 +g47175 +S'or' +p47177 +tp47178 +a(g47175 +g47177 +S'violin.' +p47179 +tp47180 +a(g47177 +g47179 +S'the' +p47181 +tp47182 +a(g47179 +g47181 +S'splat' +p47183 +tp47184 +a(g47181 +g47183 +S'in' +p47185 +tp47186 +a(g47183 +g47185 +S'this' +p47187 +tp47188 +a(g47185 +g47187 +S'chair' +p47189 +tp47190 +a(g47187 +g47189 +S'rises' +p47191 +tp47192 +a(g47189 +g47191 +S'from' +p47193 +tp47194 +a(g47191 +g47193 +S'the' +p47195 +tp47196 +a(g47193 +g47195 +S'seat' +p47197 +tp47198 +a(g47195 +g47197 +S'to' +p47199 +tp47200 +a(g47197 +g47199 +S'the' +p47201 +tp47202 +a(g47199 +g47201 +S'center' +p47203 +tp47204 +a(g47201 +g47203 +S'of' +p47205 +tp47206 +a(g47203 +g47205 +S'the' +p47207 +tp47208 +a(g47205 +g47207 +S'curving' +p47209 +tp47210 +a(g47207 +g47209 +S'top' +p47211 +tp47212 +a(g47209 +g47211 +S'rail,' +p47213 +tp47214 +a(g47211 +g47213 +S'where' +p47215 +tp47216 +a(g47213 +g47215 +S'it' +p47217 +tp47218 +a(g47215 +g47217 +S'ends' +p47219 +tp47220 +a(g47217 +g47219 +S'in' +p47221 +tp47222 +a(g47219 +g47221 +S'n' +p47223 +tp47224 +a(g47221 +g47223 +S'a' +p47225 +tp47226 +a(g47223 +g47225 +S'carved' +p47227 +tp47228 +a(g47225 +g47227 +S'shell.' +p47229 +tp47230 +a(g47227 +g47229 +S'the' +p47231 +tp47232 +a(g47229 +g47231 +S'front' +p47233 +tp47234 +a(g47231 +g47233 +S'legs' +p47235 +tp47236 +a(g47233 +g47235 +S'have' +p47237 +tp47238 +a(g47235 +g47237 +S'the' +p47239 +tp47240 +a(g47237 +g47239 +S'cabriole' +p47241 +tp47242 +a(g47239 +g47241 +S'shape' +p47243 +tp47244 +a(g47241 +g47243 +S'and' +p47245 +tp47246 +a(g47243 +g47245 +S'are' +p47247 +tp47248 +a(g47245 +g47247 +S'ornamented' +p47249 +tp47250 +a(g47247 +g47249 +S'with' +p47251 +tp47252 +a(g47249 +g47251 +S'carved' +p47253 +tp47254 +a(g47251 +g47253 +S'shells' +p47255 +tp47256 +a(g47253 +g47255 +S'at' +p47257 +tp47258 +a(g47255 +g47257 +S'the' +p47259 +tp47260 +a(g47257 +g47259 +S'knee;' +p47261 +tp47262 +a(g47259 +g47261 +S'the' +p47263 +tp47264 +a(g47261 +g47263 +S'back' +p47265 +tp47266 +a(g47263 +g47265 +S'legs' +p47267 +tp47268 +a(g47265 +g47267 +S'are' +p47269 +tp47270 +a(g47267 +g47269 +S'plain' +p47271 +tp47272 +a(g47269 +g47271 +S'and' +p47273 +tp47274 +a(g47271 +g47273 +S'round—a' +p47275 +tp47276 +a(g47273 +g47275 +S'common' +p47277 +tp47278 +a(g47275 +g47277 +S'feature.' +p47279 +tp47280 +a(g47277 +g47279 +S'the' +p47281 +tp47282 +a(g47279 +g47281 +S'uprights' +p47283 +tp47284 +a(g47281 +g47283 +S'of' +p47285 +tp47286 +a(g47283 +g47285 +S'the' +p47287 +tp47288 +a(g47285 +g47287 +S'seat' +p47289 +tp47290 +a(g47287 +g47289 +S'back' +p47291 +tp47292 +a(g47289 +g47291 +S'follow' +p47293 +tp47294 +a(g47291 +g47293 +S'a' +p47295 +tp47296 +a(g47293 +g47295 +S'gentle' +p47297 +tp47298 +a(g47295 +g47297 +S's-curve,' +p47299 +tp47300 +a(g47297 +g47299 +S'bending' +p47301 +tp47302 +a(g47299 +g47301 +S'inward' +p47303 +tp47304 +a(g47301 +g47303 +S'at' +p47305 +tp47306 +a(g47303 +g47305 +S'the' +p47307 +tp47308 +a(g47305 +g47307 +S'base' +p47309 +tp47310 +a(g47307 +g47309 +S'and' +p47311 +tp47312 +a(g47309 +g47311 +S'outward' +p47313 +tp47314 +a(g47311 +g47313 +S'toward' +p47315 +tp47316 +a(g47313 +g47315 +S'the' +p47317 +tp47318 +a(g47315 +g47317 +S'top.' +p47319 +tp47320 +a(g47317 +g47319 +S'the' +p47321 +tp47322 +a(g47319 +g47321 +S'curve' +p47323 +tp47324 +a(g47321 +g47323 +S'of' +p47325 +tp47326 +a(g47323 +g47325 +S'the' +p47327 +tp47328 +a(g47325 +g47327 +S'top' +p47329 +tp47330 +a(g47327 +g47329 +S'continues' +p47331 +tp47332 +a(g47329 +g47331 +S'from' +p47333 +tp47334 +a(g47331 +g47333 +S'the' +p47335 +tp47336 +a(g47333 +g47335 +S'central' +p47337 +tp47338 +a(g47335 +g47337 +S'shell' +p47339 +tp47340 +a(g47337 +g47339 +S'into' +p47341 +tp47342 +a(g47339 +g47341 +S'the' +p47343 +tp47344 +a(g47341 +g47343 +S'curve' +p47345 +tp47346 +a(g47343 +g47345 +S'of' +p47347 +tp47348 +a(g47345 +g47347 +S'the' +p47349 +tp47350 +a(g47347 +g47349 +S'uprights.' +p47351 +tp47352 +a(g47349 +g47351 +S'unlike' +p47353 +tp47354 +a(g47351 +g47353 +S'typical' +p47355 +tp47356 +a(g47353 +g47355 +S'queen' +p47357 +tp47358 +a(g47355 +g47357 +S'anne' +p47359 +tp47360 +a(g47357 +g47359 +S'furniture,' +p47361 +tp47362 +a(g47359 +g47361 +S'this' +p47363 +tp47364 +a(g47361 +g47363 +S'chair' +p47365 +tp47366 +a(g47363 +g47365 +S'has' +p47367 +tp47368 +a(g47365 +g47367 +S'the' +p47369 +tp47370 +a(g47367 +g47369 +S'ball' +p47371 +tp47372 +a(g47369 +g47371 +S'and' +p47373 +tp47374 +a(g47371 +g47373 +S'claw' +p47375 +tp47376 +a(g47373 +g47375 +S'feet' +p47377 +tp47378 +a(g47375 +g47377 +S'which' +p47379 +tp47380 +a(g47377 +g47379 +S'were' +p47381 +tp47382 +a(g47379 +g47381 +S'a' +p47383 +tp47384 +a(g47381 +g47383 +S'hallmark' +p47385 +tp47386 +a(g47383 +g47385 +S'of' +p47387 +tp47388 +a(g47385 +g47387 +S'later' +p47389 +tp47390 +a(g47387 +g47389 +S'eighteenth-century' +p47391 +tp47392 +a(g47389 +g47391 +S'pieces;' +p47393 +tp47394 +a(g47391 +g47393 +S'their' +p47395 +tp47396 +a(g47393 +g47395 +S'presence' +p47397 +tp47398 +a(g47395 +g47397 +S'here' +p47399 +tp47400 +a(g47397 +g47399 +S'marks' +p47401 +tp47402 +a(g47399 +g47401 +S'a' +p47403 +tp47404 +a(g47401 +g47403 +S'transition' +p47405 +tp47406 +a(g47403 +g47405 +S'to' +p47407 +tp47408 +a(g47405 +g47407 +S'the' +p47409 +tp47410 +a(g47407 +g47409 +S'chippendale' +p47411 +tp47412 +a(g47409 +g47411 +S'style' +p47413 +tp47414 +a(g47411 +g47413 +S'which' +p47415 +tp47416 +a(g47413 +g47415 +S'was' +p47417 +tp47418 +a(g47415 +g47417 +S'popular' +p47419 +tp47420 +a(g47417 +g47419 +S'in' +p47421 +tp47422 +a(g47419 +g47421 +S'america' +p47423 +tp47424 +a(g47421 +g47423 +S'after' +p47425 +tp47426 +a(g47423 +g47425 +S'1750.' +p47427 +tp47428 +a(g47425 +g47427 +S'an' +p47429 +tp47430 +a(g47427 +g47429 +S'interest' +p47431 +tp47432 +a(g47429 +g47431 +S'in' +p47433 +tp47434 +a(g47431 +g47433 +S'classical' +p47435 +tp47436 +a(g47433 +g47435 +S'culture' +p47437 +tp47438 +a(g47435 +g47437 +S'was' +p47439 +tp47440 +a(g47437 +g47439 +S'stimulated' +p47441 +tp47442 +a(g47439 +g47441 +S'by' +p47443 +tp47444 +a(g47441 +g47443 +S'the' +p47445 +tp47446 +a(g47443 +g47445 +S'discovery' +p47447 +tp47448 +a(g47445 +g47447 +S'of' +p47449 +tp47450 +a(g47447 +g47449 +S'the' +p47451 +tp47452 +a(g47449 +g47451 +S'ancient' +p47453 +tp47454 +a(g47451 +g47453 +S'roman' +p47455 +tp47456 +a(g47453 +g47455 +S'cities' +p47457 +tp47458 +a(g47455 +g47457 +S'of' +p47459 +tp47460 +a(g47457 +g47459 +S'herculaneum' +p47461 +tp47462 +a(g47459 +g47461 +S'in' +p47463 +tp47464 +a(g47461 +g47463 +S'1738' +p47465 +tp47466 +a(g47463 +g47465 +S'and' +p47467 +tp47468 +a(g47465 +g47467 +S'pompeii' +p47469 +tp47470 +a(g47467 +g47469 +S'in' +p47471 +tp47472 +a(g47469 +g47471 +S'1748.' +p47473 +tp47474 +a(g47471 +g47473 +S'robert' +p47475 +tp47476 +a(g47473 +g47475 +S'adam,' +p47477 +tp47478 +a(g47475 +g47477 +S'a' +p47479 +tp47480 +a(g47477 +g47479 +S'scottish' +p47481 +tp47482 +a(g47479 +g47481 +S'architect' +p47483 +tp47484 +a(g47481 +g47483 +S'who' +p47485 +tp47486 +a(g47483 +g47485 +S'had' +p47487 +tp47488 +a(g47485 +g47487 +S'visited' +p47489 +tp47490 +a(g47487 +g47489 +S'the' +p47491 +tp47492 +a(g47489 +g47491 +S'ancient' +p47493 +tp47494 +a(g47491 +g47493 +S'roman' +p47495 +tp47496 +a(g47493 +g47495 +S'sites' +p47497 +tp47498 +a(g47495 +g47497 +S'before' +p47499 +tp47500 +a(g47497 +g47499 +S'he' +p47501 +tp47502 +a(g47499 +g47501 +S'settled' +p47503 +tp47504 +a(g47501 +g47503 +S'in' +p47505 +tp47506 +a(g47503 +g47505 +S'england' +p47507 +tp47508 +a(g47505 +g47507 +S'in' +p47509 +tp47510 +a(g47507 +g47509 +S'1762,' +p47511 +tp47512 +a(g47509 +g47511 +S'helped' +p47513 +tp47514 +a(g47511 +g47513 +S'change' +p47515 +tp47516 +a(g47513 +g47515 +S'the' +p47517 +tp47518 +a(g47515 +g47517 +S'fashion' +p47519 +tp47520 +a(g47517 +g47519 +S'in' +p47521 +tp47522 +a(g47519 +g47521 +S'interior' +p47523 +tp47524 +a(g47521 +g47523 +S'decoration.' +p47525 +tp47526 +a(g47523 +g47525 +S'adam' +p47527 +tp47528 +a(g47525 +g47527 +S'turned' +p47529 +tp47530 +a(g47527 +g47529 +S'to' +p47531 +tp47532 +a(g47529 +g47531 +S'antiquity' +p47533 +tp47534 +a(g47531 +g47533 +S'for' +p47535 +tp47536 +a(g47533 +g47535 +S'motifs,' +p47537 +tp47538 +a(g47535 +g47537 +S'whereas' +p47539 +tp47540 +a(g47537 +g47539 +S'the' +p47541 +tp47542 +a(g47539 +g47541 +S'motifs' +p47543 +tp47544 +a(g47541 +g47543 +S'of' +p47545 +tp47546 +a(g47543 +g47545 +S'the' +p47547 +tp47548 +a(g47545 +g47547 +S'earlier' +p47549 +tp47550 +a(g47547 +g47549 +S'eighteenth' +p47551 +tp47552 +a(g47549 +g47551 +S'century' +p47553 +tp47554 +a(g47551 +g47553 +S'were' +p47555 +tp47556 +a(g47553 +g47555 +S'inspired' +p47557 +tp47558 +a(g47555 +g47557 +S'by' +p47559 +tp47560 +a(g47557 +g47559 +S'renaissance' +p47561 +tp47562 +a(g47559 +g47561 +S'and' +p47563 +tp47564 +a(g47561 +g47563 +S'baroque' +p47565 +tp47566 +a(g47563 +g47565 +S'design.' +p47567 +tp47568 +a(g47565 +g47567 +S'a' +p47569 +tp47570 +a(g47567 +g47569 +S'restrained' +p47571 +tp47572 +a(g47569 +g47571 +S'neoclassicism' +p47573 +tp47574 +a(g47571 +g47573 +S'replaced' +p47575 +tp47576 +a(g47573 +g47575 +S'the' +p47577 +tp47578 +a(g47575 +g47577 +S'exuberant' +p47579 +tp47580 +a(g47577 +g47579 +S'chippendale' +p47581 +tp47582 +a(g47579 +g47581 +S'forms.' +p47583 +tp47584 +a(g47581 +g47583 +S'while' +p47585 +tp47586 +a(g47583 +g47585 +S'shield' +p47587 +tp47588 +a(g47585 +g47587 +S'and' +p47589 +tp47590 +a(g47587 +g47589 +S'heart-shaped' +p47591 +tp47592 +a(g47589 +g47591 +S'chair' +p47593 +tp47594 +a(g47591 +g47593 +S'backs' +p47595 +tp47596 +a(g47593 +g47595 +S'are' +p47597 +tp47598 +a(g47595 +g47597 +S'commonly' +p47599 +tp47600 +a(g47597 +g47599 +S'associated' +p47601 +tp47602 +a(g47599 +g47601 +S'with' +p47603 +tp47604 +a(g47601 +g47603 +S'the' +p47605 +tp47606 +a(g47603 +g47605 +S'hepplewhite' +p47607 +tp47608 +a(g47605 +g47607 +S'style,' +p47609 +tp47610 +a(g47607 +g47609 +S'sheraton' +p47611 +tp47612 +a(g47609 +g47611 +S'chairs' +p47613 +tp47614 +a(g47611 +g47613 +S'frequently' +p47615 +tp47616 +a(g47613 +g47615 +S'feature' +p47617 +tp47618 +a(g47615 +g47617 +S'a' +p47619 +tp47620 +a(g47617 +g47619 +S'square' +p47621 +tp47622 +a(g47619 +g47621 +S'back.' +p47623 +tp47624 +a(g47621 +g47623 +S'sheraton' +p47625 +tp47626 +a(g47623 +g47625 +S'chair' +p47627 +tp47628 +a(g47625 +g47627 +S'backs' +p47629 +tp47630 +a(g47627 +g47629 +S'were' +p47631 +tp47632 +a(g47629 +g47631 +S'carved' +p47633 +tp47634 +a(g47631 +g47633 +S'in' +p47635 +tp47636 +a(g47633 +g47635 +S'a' +p47637 +tp47638 +a(g47635 +g47637 +S'variety' +p47639 +tp47640 +a(g47637 +g47639 +S'of' +p47641 +tp47642 +a(g47639 +g47641 +S'ornamental' +p47643 +tp47644 +a(g47641 +g47643 +S'motifs' +p47645 +tp47646 +a(g47643 +g47645 +S'including' +p47647 +tp47648 +a(g47645 +g47647 +S'drapery' +p47649 +tp47650 +a(g47647 +g47649 +S'swags,' +p47651 +tp47652 +a(g47649 +g47651 +S'urns,' +p47653 +tp47654 +a(g47651 +g47653 +S'pointed' +p47655 +tp47656 +a(g47653 +g47655 +S'arches,' +p47657 +tp47658 +a(g47655 +g47657 +S'colonettes,' +p47659 +tp47660 +a(g47657 +g47659 +S'fans,' +p47661 +tp47662 +a(g47659 +g47661 +S'and' +p47663 +tp47664 +a(g47661 +g47663 +S'rosettes.' +p47665 +tp47666 +a(g47663 +g47665 +S'this' +p47667 +tp47668 +a(g47665 +g47667 +S'square-back' +p47669 +tp47670 +a(g47667 +g47669 +S'new' +p47671 +tp47672 +a(g47669 +g47671 +S'york' +p47673 +tp47674 +a(g47671 +g47673 +S'side' +p47675 +tp47676 +a(g47673 +g47675 +S'chair' +p47677 +tp47678 +a(g47675 +g47677 +S'strongly' +p47679 +tp47680 +a(g47677 +g47679 +S'resembles' +p47681 +tp47682 +a(g47679 +g47681 +S'a' +p47683 +tp47684 +a(g47681 +g47683 +S'plate' +p47685 +tp47686 +a(g47683 +g47685 +S'from' +p47687 +tp47688 +a(g47685 +g47687 +S'the' +p47689 +tp47690 +a(g47687 +g47689 +S'1794' +p47691 +tp47692 +a(g47689 +g47691 +S'edition' +p47693 +tp47694 +a(g47691 +g47693 +S'of' +p47695 +tp47696 +a(g47693 +g47695 +S"sheraton's" +p47697 +tp47698 +a(g47695 +g47697 +S'after' +p47699 +tp47700 +a(g47697 +g47699 +S'about' +p47701 +tp47702 +a(g47699 +g47701 +S'1810,' +p47703 +tp47704 +a(g47701 +g47703 +S'sheraton' +p47705 +tp47706 +a(g47703 +g47705 +S'furniture' +p47707 +tp47708 +a(g47705 +g47707 +S'became' +p47709 +tp47710 +a(g47707 +g47709 +S'heavier' +p47711 +tp47712 +a(g47709 +g47711 +S'than' +p47713 +tp47714 +a(g47711 +g47713 +S'that' +p47715 +tp47716 +a(g47713 +g47715 +S'of' +p47717 +tp47718 +a(g47715 +g47717 +S'earlier' +p47719 +tp47720 +a(g47717 +g47719 +S'years' +p47721 +tp47722 +a(g47719 +g47721 +S'and' +p47723 +tp47724 +a(g47721 +g47723 +S'gradually' +p47725 +tp47726 +a(g47723 +g47725 +S'developed' +p47727 +tp47728 +a(g47725 +g47727 +S'into' +p47729 +tp47730 +a(g47727 +g47729 +S'what' +p47731 +tp47732 +a(g47729 +g47731 +S'is' +p47733 +tp47734 +a(g47731 +g47733 +S'called' +p47735 +tp47736 +a(g47733 +g47735 +S'"regency,"' +p47737 +tp47738 +a(g47735 +g47737 +S'a' +p47739 +tp47740 +a(g47737 +g47739 +S'style' +p47741 +tp47742 +a(g47739 +g47741 +S'named' +p47743 +tp47744 +a(g47741 +g47743 +S'after' +p47745 +tp47746 +a(g47743 +g47745 +S'the' +p47747 +tp47748 +a(g47745 +g47747 +S'regency' +p47749 +tp47750 +a(g47747 +g47749 +S'of' +p47751 +tp47752 +a(g47749 +g47751 +S'george' +p47753 +tp47754 +a(g47751 +g47753 +S'iv' +p47755 +tp47756 +a(g47753 +g47755 +S'in' +p47757 +tp47758 +a(g47755 +g47757 +S'england.' +p47759 +tp47760 +a(g47757 +g47759 +S'the' +p47761 +tp47762 +a(g47759 +g47761 +S'regency' +p47763 +tp47764 +a(g47761 +g47763 +S'style' +p47765 +tp47766 +a(g47763 +g47765 +S'represented' +p47767 +tp47768 +a(g47765 +g47767 +S'a' +p47769 +tp47770 +a(g47767 +g47769 +S'second' +p47771 +tp47772 +a(g47769 +g47771 +S'phase' +p47773 +tp47774 +a(g47771 +g47773 +S'of' +p47775 +tp47776 +a(g47773 +g47775 +S'classicism' +p47777 +tp47778 +a(g47775 +g47777 +S'and' +p47779 +tp47780 +a(g47777 +g47779 +S'was' +p47781 +tp47782 +a(g47779 +g47781 +S'strongly' +p47783 +tp47784 +a(g47781 +g47783 +S'influenced' +p47785 +tp47786 +a(g47783 +g47785 +S'by' +p47787 +tp47788 +a(g47785 +g47787 +S'the' +p47789 +tp47790 +a(g47787 +g47789 +S'forms' +p47791 +tp47792 +a(g47789 +g47791 +S'of' +p47793 +tp47794 +a(g47791 +g47793 +S'ancient' +p47795 +tp47796 +a(g47793 +g47795 +S'furniture' +p47797 +tp47798 +a(g47795 +g47797 +S'rather' +p47799 +tp47800 +a(g47797 +g47799 +S'than' +p47801 +tp47802 +a(g47799 +g47801 +S'by' +p47803 +tp47804 +a(g47801 +g47803 +S'decorative' +p47805 +tp47806 +a(g47803 +g47805 +S'motifs' +p47807 +tp47808 +a(g47805 +g47807 +S'alone.' +p47809 +tp47810 +a(g47807 +g47809 +S'furniture' +p47811 +tp47812 +a(g47809 +g47811 +S'designed' +p47813 +tp47814 +a(g47811 +g47813 +S'to' +p47815 +tp47816 +a(g47813 +g47815 +S'reproduce' +p47817 +tp47818 +a(g47815 +g47817 +S'ancient' +p47819 +tp47820 +a(g47817 +g47819 +S'models' +p47821 +tp47822 +a(g47819 +g47821 +S'was' +p47823 +tp47824 +a(g47821 +g47823 +S'favored' +p47825 +tp47826 +a(g47823 +g47825 +S'in' +p47827 +tp47828 +a(g47825 +g47827 +S'america' +p47829 +tp47830 +a(g47827 +g47829 +S'during' +p47831 +tp47832 +a(g47829 +g47831 +S'the' +p47833 +tp47834 +a(g47831 +g47833 +S'regency' +p47835 +tp47836 +a(g47833 +g47835 +S'period,' +p47837 +tp47838 +a(g47835 +g47837 +S'which' +p47839 +tp47840 +a(g47837 +g47839 +S'lasted' +p47841 +tp47842 +a(g47839 +g47841 +S'through' +p47843 +tp47844 +a(g47841 +g47843 +S'the' +p47845 +tp47846 +a(g47843 +g47845 +S'1820s,' +p47847 +tp47848 +a(g47845 +g47847 +S'and' +p47849 +tp47850 +a(g47847 +g47849 +S'reflected' +p47851 +tp47852 +a(g47849 +g47851 +S'fashions' +p47853 +tp47854 +a(g47851 +g47853 +S'in' +p47855 +tp47856 +a(g47853 +g47855 +S'both' +p47857 +tp47858 +a(g47855 +g47857 +S'england' +p47859 +tp47860 +a(g47857 +g47859 +S'and' +p47861 +tp47862 +a(g47859 +g47861 +S'france.' +p47863 +tp47864 +a(g47861 +g47863 +S'this' +p47865 +tp47866 +a(g47863 +g47865 +S'regency-style' +p47867 +tp47868 +a(g47865 +g47867 +S'chair' +p47869 +tp47870 +a(g47867 +g47869 +S'was' +p47871 +tp47872 +a(g47869 +g47871 +S'made' +p47873 +tp47874 +a(g47871 +g47873 +S'by' +p47875 +tp47876 +a(g47873 +g47875 +S'duncan' +p47877 +tp47878 +a(g47875 +g47877 +S'phyfe,' +p47879 +tp47880 +a(g47877 +g47879 +S'the' +p47881 +tp47882 +a(g47879 +g47881 +S'prolific' +p47883 +tp47884 +a(g47881 +g47883 +S'new' +p47885 +tp47886 +a(g47883 +g47885 +S'york' +p47887 +tp47888 +a(g47885 +g47887 +S'cabinetmaker' +p47889 +tp47890 +a(g47887 +g47889 +S'of' +p47891 +tp47892 +a(g47889 +g47891 +S'the' +p47893 +tp47894 +a(g47891 +g47893 +S'nineteenth' +p47895 +tp47896 +a(g47893 +g47895 +S'century.' +p47897 +tp47898 +a(g47895 +g47897 +S'it' +p47899 +tp47900 +a(g47897 +g47899 +S'represents' +p47901 +tp47902 +a(g47899 +g47901 +S'his' +p47903 +tp47904 +a(g47901 +g47903 +S'second' +p47905 +tp47906 +a(g47903 +g47905 +S'period' +p47907 +tp47908 +a(g47905 +g47907 +S'of' +p47909 +tp47910 +a(g47907 +g47909 +S'furniture' +p47911 +tp47912 +a(g47909 +g47911 +S'design' +p47913 +tp47914 +a(g47911 +g47913 +S'based' +p47915 +tp47916 +a(g47913 +g47915 +S'upon' +p47917 +tp47918 +a(g47915 +g47917 +S'classical' +p47919 +tp47920 +a(g47917 +g47919 +S'models' +p47921 +tp47922 +a(g47919 +g47921 +S'and' +p47923 +tp47924 +a(g47921 +g47923 +S'is' +p47925 +tp47926 +a(g47923 +g47925 +S'distinguished' +p47927 +tp47928 +a(g47925 +g47927 +S'from' +p47929 +tp47930 +a(g47927 +g47929 +S'his' +p47931 +tp47932 +a(g47929 +g47931 +S'earlier' +p47933 +tp47934 +a(g47931 +g47933 +S'work' +p47935 +tp47936 +a(g47933 +g47935 +S'in' +p47937 +tp47938 +a(g47935 +g47937 +S'which' +p47939 +tp47940 +a(g47937 +g47939 +S"sheraton's" +p47941 +tp47942 +a(g47939 +g47941 +S'influence' +p47943 +tp47944 +a(g47941 +g47943 +S'prevailed.' +p47945 +tp47946 +a(g47943 +g47945 +S'the' +p47947 +tp47948 +a(g47945 +g47947 +S'design' +p47949 +tp47950 +a(g47947 +g47949 +S'of' +p47951 +tp47952 +a(g47949 +g47951 +S'this' +p47953 +tp47954 +a(g47951 +g47953 +S'chair' +p47955 +tp47956 +a(g47953 +g47955 +S'is' +p47957 +tp47958 +a(g47955 +g47957 +S'based' +p47959 +tp47960 +a(g47957 +g47959 +S'on' +p47961 +tp47962 +a(g47959 +g47961 +S'the' +p47963 +tp47964 +a(g47961 +g47963 +S'"klismos,"' +p47965 +tp47966 +a(g47963 +g47965 +S'an' +p47967 +tp47968 +a(g47965 +g47967 +S'ancient' +p47969 +tp47970 +a(g47967 +g47969 +S'greek' +p47971 +tp47972 +a(g47969 +g47971 +S'chair' +p47973 +tp47974 +a(g47971 +g47973 +S'form' +p47975 +tp47976 +a(g47973 +g47975 +S'with' +p47977 +tp47978 +a(g47975 +g47977 +S'incurved' +p47979 +tp47980 +a(g47977 +g47979 +S'legs' +p47981 +tp47982 +a(g47979 +g47981 +S'and' +p47983 +tp47984 +a(g47981 +g47983 +S'with' +p47985 +tp47986 +a(g47983 +g47985 +S'the' +p47987 +tp47988 +a(g47985 +g47987 +S'seat' +p47989 +tp47990 +a(g47987 +g47989 +S'rail' +p47991 +tp47992 +a(g47989 +g47991 +S'and' +p47993 +tp47994 +a(g47991 +g47993 +S'back' +p47995 +tp47996 +a(g47993 +g47995 +S'in' +p47997 +tp47998 +a(g47995 +g47997 +S'an' +p47999 +tp48000 +a(g47997 +g47999 +S'unbroken' +p48001 +tp48002 +a(g47999 +g48001 +S'curve.' +p48003 +tp48004 +a(g48001 +g48003 +S'phyfe' +p48005 +tp48006 +a(g48003 +g48005 +S'introduced' +p48007 +tp48008 +a(g48005 +g48007 +S'this' +p48009 +tp48010 +a(g48007 +g48009 +S'form' +p48011 +tp48012 +a(g48009 +g48011 +S'into' +p48013 +tp48014 +a(g48011 +g48013 +S'american' +p48015 +tp48016 +a(g48013 +g48015 +S'furniture' +p48017 +tp48018 +a(g48015 +g48017 +S'design.' +p48019 +tp48020 +a(g48017 +g48019 +S'in' +p48021 +tp48022 +a(g48019 +g48021 +S"panini's" +p48023 +tp48024 +a(g48021 +g48023 +S'day,' +p48025 +tp48026 +a(g48023 +g48025 +S'as' +p48027 +tp48028 +a(g48025 +g48027 +S'in' +p48029 +tp48030 +a(g48027 +g48029 +S'our' +p48031 +tp48032 +a(g48029 +g48031 +S'own,' +p48033 +tp48034 +a(g48031 +g48033 +S'the' +p48035 +tp48036 +a(g48033 +g48035 +S'pantheon' +p48037 +tp48038 +a(g48035 +g48037 +S'was' +p48039 +tp48040 +a(g48037 +g48039 +S'one' +p48041 +tp48042 +a(g48039 +g48041 +S'of' +p48043 +tp48044 +a(g48041 +g48043 +S'the' +p48045 +tp48046 +a(g48043 +g48045 +S'great' +p48047 +tp48048 +a(g48045 +g48047 +S'tourist' +p48049 +tp48050 +a(g48047 +g48049 +S'attractions' +p48051 +tp48052 +a(g48049 +g48051 +S'of' +p48053 +tp48054 +a(g48051 +g48053 +S'rome.' +p48055 +tp48056 +a(g48053 +g48055 +S'built' +p48057 +tp48058 +a(g48055 +g48057 +S'under' +p48059 +tp48060 +a(g48057 +g48059 +S'hadrian' +p48061 +tp48062 +a(g48059 +g48061 +S'in' +p48063 +tp48064 +a(g48061 +g48063 +S'the' +p48065 +tp48066 +a(g48063 +g48065 +S'2nd' +p48067 +tp48068 +a(g48065 +g48067 +S'century,' +p48069 +tp48070 +a(g48067 +g48069 +S'this' +p48071 +tp48072 +a(g48069 +g48071 +S'monumental' +p48073 +tp48074 +a(g48071 +g48073 +S'domed' +p48075 +tp48076 +a(g48073 +g48075 +S'temple' +p48077 +tp48078 +a(g48075 +g48077 +S'has' +p48079 +tp48080 +a(g48077 +g48079 +S'survived' +p48081 +tp48082 +a(g48079 +g48081 +S'intact,' +p48083 +tp48084 +a(g48081 +g48083 +S'owing' +p48085 +tp48086 +a(g48083 +g48085 +S'to' +p48087 +tp48088 +a(g48085 +g48087 +S'its' +p48089 +tp48090 +a(g48087 +g48089 +S'consecration' +p48091 +tp48092 +a(g48089 +g48091 +S'as' +p48093 +tp48094 +a(g48091 +g48093 +S'a' +p48095 +tp48096 +a(g48093 +g48095 +S'christian' +p48097 +tp48098 +a(g48095 +g48097 +S'church—santa' +p48099 +tp48100 +a(g48097 +g48099 +S'maria' +p48101 +tp48102 +a(g48099 +g48101 +S'rotunda—in' +p48103 +tp48104 +a(g48101 +g48103 +S'ad' +p48105 +tp48106 +a(g48103 +g48105 +S'609.' +p48107 +tp48108 +a(g48105 +g48107 +S"panini's" +p48109 +tp48110 +a(g48107 +g48109 +S'depiction' +p48111 +tp48112 +a(g48109 +g48111 +S'is' +p48113 +tp48114 +a(g48111 +g48113 +S'populated' +p48115 +tp48116 +a(g48113 +g48115 +S'with' +p48117 +tp48118 +a(g48115 +g48117 +S'foreign' +p48119 +tp48120 +a(g48117 +g48119 +S'visitors' +p48121 +tp48122 +a(g48119 +g48121 +S'and' +p48123 +tp48124 +a(g48121 +g48123 +S'a' +p48125 +tp48126 +a(g48123 +g48125 +S'lively' +p48127 +tp48128 +a(g48125 +g48127 +S'mix' +p48129 +tp48130 +a(g48127 +g48129 +S'of' +p48131 +tp48132 +a(g48129 +g48131 +S'romans' +p48133 +tp48134 +a(g48131 +g48133 +S'from' +p48135 +tp48136 +a(g48133 +g48135 +S'all' +p48137 +tp48138 +a(g48135 +g48137 +S'social' +p48139 +tp48140 +a(g48137 +g48139 +S'strata' +p48141 +tp48142 +a(g48139 +g48141 +S'who' +p48143 +tp48144 +a(g48141 +g48143 +S'congregate' +p48145 +tp48146 +a(g48143 +g48145 +S'in' +p48147 +tp48148 +a(g48145 +g48147 +S'the' +p48149 +tp48150 +a(g48147 +g48149 +S'pantheon' +p48151 +tp48152 +a(g48149 +g48151 +S'to' +p48153 +tp48154 +a(g48151 +g48153 +S'pray,' +p48155 +tp48156 +a(g48153 +g48155 +S'to' +p48157 +tp48158 +a(g48155 +g48157 +S'chat,' +p48159 +tp48160 +a(g48157 +g48159 +S'and' +p48161 +tp48162 +a(g48159 +g48161 +S'to' +p48163 +tp48164 +a(g48161 +g48163 +S'admire' +p48165 +tp48166 +a(g48163 +g48165 +S'the' +p48167 +tp48168 +a(g48165 +g48167 +S'wondrous' +p48169 +tp48170 +a(g48167 +g48169 +S'architecture.' +p48171 +tp48172 +a(g48169 +g48171 +S'trained' +p48173 +tp48174 +a(g48171 +g48173 +S'in' +p48175 +tp48176 +a(g48173 +g48175 +S'architecture' +p48177 +tp48178 +a(g48175 +g48177 +S'and' +p48179 +tp48180 +a(g48177 +g48179 +S'theatrical' +p48181 +tp48182 +a(g48179 +g48181 +S'design,' +p48183 +tp48184 +a(g48181 +g48183 +S'panini' +p48185 +tp48186 +a(g48183 +g48185 +S'manipulated' +p48187 +tp48188 +a(g48185 +g48187 +S'the' +p48189 +tp48190 +a(g48187 +g48189 +S'perspective' +p48191 +tp48192 +a(g48189 +g48191 +S'to' +p48193 +tp48194 +a(g48191 +g48193 +S'show' +p48195 +tp48196 +a(g48193 +g48195 +S'a' +p48197 +tp48198 +a(g48195 +g48197 +S'larger' +p48199 +tp48200 +a(g48197 +g48199 +S'view' +p48201 +tp48202 +a(g48199 +g48201 +S'of' +p48203 +tp48204 +a(g48201 +g48203 +S'the' +p48205 +tp48206 +a(g48203 +g48205 +S'interior' +p48207 +tp48208 +a(g48205 +g48207 +S'than' +p48209 +tp48210 +a(g48207 +g48209 +S'is' +p48211 +tp48212 +a(g48209 +g48211 +S'actually' +p48213 +tp48214 +a(g48211 +g48213 +S'possible' +p48215 +tp48216 +a(g48213 +g48215 +S'from' +p48217 +tp48218 +a(g48215 +g48217 +S'any' +p48219 +tp48220 +a(g48217 +g48219 +S'single' +p48221 +tp48222 +a(g48219 +g48221 +S'place.' +p48223 +tp48224 +a(g48221 +g48223 +S'the' +p48225 +tp48226 +a(g48223 +g48225 +S'viewpoint' +p48227 +tp48228 +a(g48225 +g48227 +S'is' +p48229 +tp48230 +a(g48227 +g48229 +S'deep' +p48231 +tp48232 +a(g48229 +g48231 +S'within' +p48233 +tp48234 +a(g48231 +g48233 +S'the' +p48235 +tp48236 +a(g48233 +g48235 +S'building,' +p48237 +tp48238 +a(g48235 +g48237 +S'facing' +p48239 +tp48240 +a(g48237 +g48239 +S'the' +p48241 +tp48242 +a(g48239 +g48241 +S'entrance.' +p48243 +tp48244 +a(g48241 +g48243 +S'the' +p48245 +tp48246 +a(g48243 +g48245 +S'portals' +p48247 +tp48248 +a(g48245 +g48247 +S'open' +p48249 +tp48250 +a(g48247 +g48249 +S'to' +p48251 +tp48252 +a(g48249 +g48251 +S'the' +p48253 +tp48254 +a(g48251 +g48253 +S'colossal' +p48255 +tp48256 +a(g48253 +g48255 +S'columns' +p48257 +tp48258 +a(g48255 +g48257 +S'of' +p48259 +tp48260 +a(g48257 +g48259 +S'the' +p48261 +tp48262 +a(g48259 +g48261 +S'porch' +p48263 +tp48264 +a(g48261 +g48263 +S'and' +p48265 +tp48266 +a(g48263 +g48265 +S'a' +p48267 +tp48268 +a(g48265 +g48267 +S'glimpse' +p48269 +tp48270 +a(g48267 +g48269 +S'of' +p48271 +tp48272 +a(g48269 +g48271 +S'the' +p48273 +tp48274 +a(g48271 +g48273 +S'obelisk' +p48275 +tp48276 +a(g48273 +g48275 +S'in' +p48277 +tp48278 +a(g48275 +g48277 +S'the' +p48279 +tp48280 +a(g48277 +g48279 +S'piazza' +p48281 +tp48282 +a(g48279 +g48281 +S'before' +p48283 +tp48284 +a(g48281 +g48283 +S'the' +p48285 +tp48286 +a(g48283 +g48285 +S'church.' +p48287 +tp48288 +a(g48285 +g48287 +S'through' +p48289 +tp48290 +a(g48287 +g48289 +S'the' +p48291 +tp48292 +a(g48289 +g48291 +S'oculus' +p48293 +tp48294 +a(g48291 +g48293 +S'in' +p48295 +tp48296 +a(g48293 +g48295 +S'the' +p48297 +tp48298 +a(g48295 +g48297 +S'center' +p48299 +tp48300 +a(g48297 +g48299 +S'of' +p48301 +tp48302 +a(g48299 +g48301 +S'the' +p48303 +tp48304 +a(g48301 +g48303 +S'dome,' +p48305 +tp48306 +a(g48303 +g48305 +S'panini' +p48307 +tp48308 +a(g48305 +g48307 +S'revealed' +p48309 +tp48310 +a(g48307 +g48309 +S'the' +p48311 +tp48312 +a(g48309 +g48311 +S'bright' +p48313 +tp48314 +a(g48311 +g48313 +S'blue' +p48315 +tp48316 +a(g48313 +g48315 +S'sky' +p48317 +tp48318 +a(g48315 +g48317 +S'flecked' +p48319 +tp48320 +a(g48317 +g48319 +S'with' +p48321 +tp48322 +a(g48319 +g48321 +S'clouds.' +p48323 +tp48324 +a(g48321 +g48323 +S'as' +p48325 +tp48326 +a(g48323 +g48325 +S'canaletto' +p48327 +tp48328 +a(g48325 +g48327 +S'was' +p48329 +tp48330 +a(g48327 +g48329 +S'to' +p48331 +tp48332 +a(g48329 +g48331 +S'venice,' +p48333 +tp48334 +a(g48331 +g48333 +S'so' +p48335 +tp48336 +a(g48333 +g48335 +S'panini' +p48337 +tp48338 +a(g48335 +g48337 +S'was' +p48339 +tp48340 +a(g48337 +g48339 +S'to' +p48341 +tp48342 +a(g48339 +g48341 +S'rome.' +p48343 +tp48344 +a(g48341 +g48343 +S'both' +p48345 +tp48346 +a(g48343 +g48345 +S'artists' +p48347 +tp48348 +a(g48345 +g48347 +S'documented' +p48349 +tp48350 +a(g48347 +g48349 +S'with' +p48351 +tp48352 +a(g48349 +g48351 +S'exacting' +p48353 +tp48354 +a(g48351 +g48353 +S'skill' +p48355 +tp48356 +a(g48353 +g48355 +S'and' +p48357 +tp48358 +a(g48355 +g48357 +S'vibrancy' +p48359 +tp48360 +a(g48357 +g48359 +S'the' +p48361 +tp48362 +a(g48359 +g48361 +S'monuments' +p48363 +tp48364 +a(g48361 +g48363 +S'of' +p48365 +tp48366 +a(g48363 +g48365 +S'their' +p48367 +tp48368 +a(g48365 +g48367 +S'cities' +p48369 +tp48370 +a(g48367 +g48369 +S'and' +p48371 +tp48372 +a(g48369 +g48371 +S'the' +p48373 +tp48374 +a(g48371 +g48373 +S'daily' +p48375 +tp48376 +a(g48373 +g48375 +S'comings' +p48377 +tp48378 +a(g48375 +g48377 +S'and' +p48379 +tp48380 +a(g48377 +g48379 +S'goings' +p48381 +tp48382 +a(g48379 +g48381 +S'of' +p48383 +tp48384 +a(g48381 +g48383 +S'the' +p48385 +tp48386 +a(g48383 +g48385 +S'inhabitants.' +p48387 +tp48388 +a(g48385 +g48387 +S'in' +p48389 +tp48390 +a(g48387 +g48389 +S'this' +p48391 +tp48392 +a(g48389 +g48391 +S'case,' +p48393 +tp48394 +a(g48391 +g48393 +S'panini' +p48395 +tp48396 +a(g48393 +g48395 +S'depicted' +p48397 +tp48398 +a(g48395 +g48397 +S'the' +p48399 +tp48400 +a(g48397 +g48399 +S'classical' +p48401 +tp48402 +a(g48399 +g48401 +S'landmark' +p48403 +tp48404 +a(g48401 +g48403 +S'that' +p48405 +tp48406 +a(g48403 +g48405 +S'inspired' +p48407 +tp48408 +a(g48405 +g48407 +S'the' +p48409 +tp48410 +a(g48407 +g48409 +S'design' +p48411 +tp48412 +a(g48409 +g48411 +S'of' +p48413 +tp48414 +a(g48411 +g48413 +S'the' +p48415 +tp48416 +a(g48413 +g48415 +S'rotunda' +p48417 +tp48418 +a(g48415 +g48417 +S'in' +p48419 +tp48420 +a(g48417 +g48419 +S'the' +p48421 +tp48422 +a(g48419 +g48421 +S'national' +p48423 +tp48424 +a(g48421 +g48423 +S"gallery's" +p48425 +tp48426 +a(g48423 +g48425 +S'west' +p48427 +tp48428 +a(g48425 +g48427 +S'building.' +p48429 +tp48430 +a(g48427 +g48429 +S'water' +p48431 +tp48432 +a(g48429 +g48431 +S'pots,' +p48433 +tp48434 +a(g48431 +g48433 +S'sometimes' +p48435 +tp48436 +a(g48433 +g48435 +S'called' +p48437 +tp48438 +a(g48435 +g48437 +S'water' +p48439 +tp48440 +a(g48437 +g48439 +S'coupes,' +p48441 +tp48442 +a(g48439 +g48441 +S'were' +p48443 +tp48444 +a(g48441 +g48443 +S'designed' +p48445 +tp48446 +a(g48443 +g48445 +S'as' +p48447 +tp48448 +a(g48445 +g48447 +S'ornamental' +p48449 +tp48450 +a(g48447 +g48449 +S'and' +p48451 +tp48452 +a(g48449 +g48451 +S'functional' +p48453 +tp48454 +a(g48451 +g48453 +S'forms' +p48455 +tp48456 +a(g48453 +g48455 +S'for' +p48457 +tp48458 +a(g48455 +g48457 +S'the' +p48459 +tp48460 +a(g48457 +g48459 +S'chinese' +p48461 +tp48462 +a(g48459 +g48461 +S"scholar's" +p48463 +tp48464 +a(g48461 +g48463 +S'desk.' +p48465 +tp48466 +a(g48463 +g48465 +S'they' +p48467 +tp48468 +a(g48465 +g48467 +S'contained' +p48469 +tp48470 +a(g48467 +g48469 +S'water' +p48471 +tp48472 +a(g48469 +g48471 +S'for' +p48473 +tp48474 +a(g48471 +g48473 +S'use' +p48475 +tp48476 +a(g48473 +g48475 +S'in' +p48477 +tp48478 +a(g48475 +g48477 +S'making' +p48479 +tp48480 +a(g48477 +g48479 +S'ink' +p48481 +tp48482 +a(g48479 +g48481 +S'or' +p48483 +tp48484 +a(g48481 +g48483 +S'replenishing' +p48485 +tp48486 +a(g48483 +g48485 +S'the' +p48487 +tp48488 +a(g48485 +g48487 +S'brush' +p48489 +tp48490 +a(g48487 +g48489 +S'washer.' +p48491 +tp48492 +a(g48489 +g48491 +S'pale' +p48493 +tp48494 +a(g48491 +g48493 +S'blue' +p48495 +tp48496 +a(g48493 +g48495 +S'glaze' +p48497 +tp48498 +a(g48495 +g48497 +S'appears' +p48499 +tp48500 +a(g48497 +g48499 +S'to' +p48501 +tp48502 +a(g48499 +g48501 +S'have' +p48503 +tp48504 +a(g48501 +g48503 +S'been' +p48505 +tp48506 +a(g48503 +g48505 +S'more' +p48507 +tp48508 +a(g48505 +g48507 +S'broadly' +p48509 +tp48510 +a(g48507 +g48509 +S'used' +p48511 +tp48512 +a(g48509 +g48511 +S'during' +p48513 +tp48514 +a(g48511 +g48513 +S'the' +p48515 +tp48516 +a(g48513 +g48515 +S'kangxi' +p48517 +tp48518 +a(g48515 +g48517 +S'and' +p48519 +tp48520 +a(g48517 +g48519 +S'yongzheng' +p48521 +tp48522 +a(g48519 +g48521 +S'reigns' +p48523 +tp48524 +a(g48521 +g48523 +S'than' +p48525 +tp48526 +a(g48523 +g48525 +S'peachbloom' +p48527 +tp48528 +a(g48525 +g48527 +S'and' +p48529 +tp48530 +a(g48527 +g48529 +S'was' +p48531 +tp48532 +a(g48529 +g48531 +S'applied' +p48533 +tp48534 +a(g48531 +g48533 +S'to' +p48535 +tp48536 +a(g48533 +g48535 +S'a' +p48537 +tp48538 +a(g48535 +g48537 +S'wide' +p48539 +tp48540 +a(g48537 +g48539 +S'variety' +p48541 +tp48542 +a(g48539 +g48541 +S'of' +p48543 +tp48544 +a(g48541 +g48543 +S'vase' +p48545 +tp48546 +a(g48543 +g48545 +S'shapes' +p48547 +tp48548 +a(g48545 +g48547 +S'rather' +p48549 +tp48550 +a(g48547 +g48549 +S'than' +p48551 +tp48552 +a(g48549 +g48551 +S'to' +p48553 +tp48554 +a(g48551 +g48553 +S'only' +p48555 +tp48556 +a(g48553 +g48555 +S'eight' +p48557 +tp48558 +a(g48555 +g48557 +S'types.' +p48559 +tp48560 +a(g48557 +g48559 +S'nevertheless,' +p48561 +tp48562 +a(g48559 +g48561 +S'certain' +p48563 +tp48564 +a(g48561 +g48563 +S'forms' +p48565 +tp48566 +a(g48563 +g48565 +S'are' +p48567 +tp48568 +a(g48565 +g48567 +S'found' +p48569 +tp48570 +a(g48567 +g48569 +S'in' +p48571 +tp48572 +a(g48569 +g48571 +S'both' +p48573 +tp48574 +a(g48571 +g48573 +S'glazes,' +p48575 +tp48576 +a(g48573 +g48575 +S'small' +p48577 +tp48578 +a(g48575 +g48577 +S'globular' +p48579 +tp48580 +a(g48577 +g48579 +S'water' +p48581 +tp48582 +a(g48579 +g48581 +S'pots' +p48583 +tp48584 +a(g48581 +g48583 +S'can' +p48585 +tp48586 +a(g48583 +g48585 +S'be' +p48587 +tp48588 +a(g48585 +g48587 +S'subdivided' +p48589 +tp48590 +a(g48587 +g48589 +S'into' +p48591 +tp48592 +a(g48589 +g48591 +S'those' +p48593 +tp48594 +a(g48591 +g48593 +S'with' +p48595 +tp48596 +a(g48593 +g48595 +S'and' +p48597 +tp48598 +a(g48595 +g48597 +S'without' +p48599 +tp48600 +a(g48597 +g48599 +S'necks.' +p48601 +tp48602 +a(g48599 +g48601 +S'while' +p48603 +tp48604 +a(g48601 +g48603 +S'peachbloom' +p48605 +tp48606 +a(g48603 +g48605 +S'examples' +p48607 +tp48608 +a(g48605 +g48607 +S'have' +p48609 +tp48610 +a(g48607 +g48609 +S'been' +p48611 +tp48612 +a(g48609 +g48611 +S'published' +p48613 +tp48614 +a(g48611 +g48613 +S'in' +p48615 +tp48616 +a(g48613 +g48615 +S'both' +p48617 +tp48618 +a(g48615 +g48617 +S'types,' +p48619 +tp48620 +a(g48617 +g48619 +S'among' +p48621 +tp48622 +a(g48619 +g48621 +S'the' +p48623 +tp48624 +a(g48621 +g48623 +S'pale' +p48625 +tp48626 +a(g48623 +g48625 +S'blue' +p48627 +tp48628 +a(g48625 +g48627 +S'wares' +p48629 +tp48630 +a(g48627 +g48629 +S'the' +p48631 +tp48632 +a(g48629 +g48631 +S'short-necked' +p48633 +tp48634 +a(g48631 +g48633 +S'form' +p48635 +tp48636 +a(g48633 +g48635 +S'is' +p48637 +tp48638 +a(g48635 +g48637 +S'predominant.' +p48639 +tp48640 +a(g48637 +g48639 +S'"two' +p48641 +tp48642 +a(g48639 +g48641 +S'favorite' +p48643 +tp48644 +a(g48641 +g48643 +S'designs,' +p48645 +tp48646 +a(g48643 +g48645 +S'for' +p48647 +tp48648 +a(g48645 +g48647 +S'example,' +p48649 +tp48650 +a(g48647 +g48649 +S'of' +p48651 +tp48652 +a(g48649 +g48651 +S'the' +p48653 +tp48654 +a(g48651 +g48653 +S'little' +p48655 +tp48656 +a(g48653 +g48655 +S'water-bottles' +p48657 +tp48658 +a(g48655 +g48657 +S'intended' +p48659 +tp48660 +a(g48657 +g48659 +S'to' +p48661 +tp48662 +a(g48659 +g48661 +S'be' +p48663 +tp48664 +a(g48661 +g48663 +S'used' +p48665 +tp48666 +a(g48663 +g48665 +S'with' +p48667 +tp48668 +a(g48665 +g48667 +S'the' +p48669 +tp48670 +a(g48667 +g48669 +S"writer's" +p48671 +tp48672 +a(g48669 +g48671 +S'pallet' +p48673 +tp48674 +a(g48671 +g48673 +S'the' +p48675 +tp48676 +a(g48673 +g48675 +S'water' +p48677 +tp48678 +a(g48675 +g48677 +S'pots' +p48679 +tp48680 +a(g48677 +g48679 +S'with' +p48681 +tp48682 +a(g48679 +g48681 +S'short' +p48683 +tp48684 +a(g48681 +g48683 +S'necks' +p48685 +tp48686 +a(g48683 +g48685 +S'do' +p48687 +tp48688 +a(g48685 +g48687 +S'resemble' +p48689 +tp48690 +a(g48687 +g48689 +S'pomegranates' +p48691 +tp48692 +a(g48689 +g48691 +S'more' +p48693 +tp48694 +a(g48691 +g48693 +S'than' +p48695 +tp48696 +a(g48693 +g48695 +S'apples,' +p48697 +tp48698 +a(g48695 +g48697 +S'although' +p48699 +tp48700 +a(g48697 +g48699 +S'they' +p48701 +tp48702 +a(g48699 +g48701 +S'lack' +p48703 +tp48704 +a(g48701 +g48703 +S'the' +p48705 +tp48706 +a(g48703 +g48705 +S'foliated' +p48707 +tp48708 +a(g48705 +g48707 +S'lip' +p48709 +tp48710 +a(g48707 +g48709 +S'found' +p48711 +tp48712 +a(g48709 +g48711 +S'on' +p48713 +tp48714 +a(g48711 +g48713 +S'the' +p48715 +tp48716 +a(g48713 +g48715 +S'globular' +p48717 +tp48718 +a(g48715 +g48717 +S'pots' +p48719 +tp48720 +a(g48717 +g48719 +S'usually' +p48721 +tp48722 +a(g48719 +g48721 +S'described' +p48723 +tp48724 +a(g48721 +g48723 +S'as' +p48725 +tp48726 +a(g48723 +g48725 +S'pomegranate-shaped.' +p48727 +tp48728 +a(g48725 +g48727 +S'(text' +p48729 +tp48730 +a(g48727 +g48729 +S'by' +p48731 +tp48732 +a(g48729 +g48731 +S'virginia' +p48733 +tp48734 +a(g48731 +g48733 +S'bower,' +p48735 +tp48736 +a(g48733 +g48735 +S'published' +p48737 +tp48738 +a(g48735 +g48737 +S'in' +p48739 +tp48740 +a(g48737 +g48739 +S'the' +p48741 +tp48742 +a(g48739 +g48741 +S'nga' +p48743 +tp48744 +a(g48741 +g48743 +S'systematic' +p48745 +tp48746 +a(g48743 +g48745 +S'catalogue:' +p48747 +tp48748 +a(g48745 +g48747 +S'notes' +p48755 +tp48756 +a(g48753 +g48755 +S'' +p48757 +tp48758 +a(g48755 +g48757 +S'' +p48761 +tp48762 +a(g48759 +g48761 +S'' +p48765 +tp48766 +a(g48763 +g48765 +S'' +p48769 +tp48770 +a(g48767 +g48769 +S'' +p48773 +tp48774 +a(g48771 +g48773 +S'' +p48777 +tp48778 +a(g48775 +g48777 +S'' +p48781 +tp48782 +a(g48779 +g48781 +S'' +p48785 +tp48786 +a(g48783 +g48785 +S'this' +p48787 +tp48788 +a(g48785 +g48787 +S'dragon-decorated' +p48789 +tp48790 +a(g48787 +g48789 +S'vase' +p48791 +tp48792 +a(g48789 +g48791 +S'is' +p48793 +tp48794 +a(g48791 +g48793 +S'essentially' +p48795 +tp48796 +a(g48793 +g48795 +S'a' +p48797 +tp48798 +a(g48795 +g48797 +S'variant' +p48799 +tp48800 +a(g48797 +g48799 +S'of' +p48801 +tp48802 +a(g48799 +g48801 +S'one' +p48803 +tp48804 +a(g48801 +g48803 +S'of' +p48805 +tp48806 +a(g48803 +g48805 +S'the' +p48807 +tp48808 +a(g48805 +g48807 +S'prescribed' +p48809 +tp48810 +a(g48807 +g48809 +S'peachbloom' +p48811 +tp48812 +a(g48809 +g48811 +S'shapes,' +p48813 +tp48814 +a(g48811 +g48813 +S'the' +p48815 +tp48816 +a(g48813 +g48815 +S'"three-string' +p48817 +tp48818 +a(g48815 +g48817 +S'vase,"' +p48819 +tp48820 +a(g48817 +g48819 +S'so' +p48821 +tp48822 +a(g48819 +g48821 +S'named' +p48823 +tp48824 +a(g48821 +g48823 +S'after' +p48825 +tp48826 +a(g48823 +g48825 +S'the' +p48827 +tp48828 +a(g48825 +g48827 +S'three' +p48829 +tp48830 +a(g48827 +g48829 +S'ridges' +p48831 +tp48832 +a(g48829 +g48831 +S'adorning' +p48833 +tp48834 +a(g48831 +g48833 +S'the' +p48835 +tp48836 +a(g48833 +g48835 +S'base' +p48837 +tp48838 +a(g48835 +g48837 +S'of' +p48839 +tp48840 +a(g48837 +g48839 +S'its' +p48841 +tp48842 +a(g48839 +g48841 +S'neck' +p48843 +tp48844 +a(g48841 +g48843 +S'some' +p48845 +tp48846 +a(g48843 +g48845 +S'scholars' +p48847 +tp48848 +a(g48845 +g48847 +S'suggest' +p48849 +tp48850 +a(g48847 +g48849 +S'that' +p48851 +tp48852 +a(g48849 +g48851 +S'the' +p48853 +tp48854 +a(g48851 +g48853 +S'smooth-skinned,' +p48855 +tp48856 +a(g48853 +g48855 +S'three-clawed,' +p48857 +tp48858 +a(g48855 +g48857 +S'single-horned,' +p48859 +tp48860 +a(g48857 +g48859 +S'fork-tailed' +p48861 +tp48862 +a(g48859 +g48861 +S'relief' +p48863 +tp48864 +a(g48861 +g48863 +S'dragons' +p48865 +tp48866 +a(g48863 +g48865 +S'on' +p48867 +tp48868 +a(g48865 +g48867 +S'these' +p48869 +tp48870 +a(g48867 +g48869 +S'celadon' +p48871 +tp48872 +a(g48869 +g48871 +S'vases' +p48873 +tp48874 +a(g48871 +g48873 +S'more' +p48875 +tp48876 +a(g48873 +g48875 +S'closely' +p48877 +tp48878 +a(g48875 +g48877 +S'resemble' +p48879 +tp48880 +a(g48877 +g48879 +S'the' +p48881 +tp48882 +a(g48879 +g48881 +S'archaistic' +p48883 +tp48884 +a(g48881 +g48883 +S'dragons' +p48885 +tp48886 +a(g48883 +g48885 +S'frequently' +p48887 +tp48888 +a(g48885 +g48887 +S'appear' +p48889 +tp48890 +a(g48887 +g48889 +S'on' +p48891 +tp48892 +a(g48889 +g48891 +S'chinese' +p48893 +tp48894 +a(g48891 +g48893 +S'ceramics,' +p48895 +tp48896 +a(g48893 +g48895 +S'often' +p48897 +tp48898 +a(g48895 +g48897 +S'in' +p48899 +tp48900 +a(g48897 +g48899 +S'pairs' +p48901 +tp48902 +a(g48899 +g48901 +S'contending' +p48903 +tp48904 +a(g48901 +g48903 +S'over' +p48905 +tp48906 +a(g48903 +g48905 +S'a' +p48907 +tp48908 +a(g48905 +g48907 +S'flaming,' +p48909 +tp48910 +a(g48907 +g48909 +S'magical' +p48911 +tp48912 +a(g48909 +g48911 +S'pearl.' +p48913 +tp48914 +a(g48911 +g48913 +S'the' +p48915 +tp48916 +a(g48913 +g48915 +S'image' +p48917 +tp48918 +a(g48915 +g48917 +S'presented' +p48919 +tp48920 +a(g48917 +g48919 +S'here' +p48921 +tp48922 +a(g48919 +g48921 +S'of' +p48923 +tp48924 +a(g48921 +g48923 +S'two' +p48925 +tp48926 +a(g48923 +g48925 +S'dragons' +p48927 +tp48928 +a(g48925 +g48927 +S'cavorting' +p48929 +tp48930 +a(g48927 +g48929 +S'among' +p48931 +tp48932 +a(g48929 +g48931 +S'clouds' +p48933 +tp48934 +a(g48931 +g48933 +S'and' +p48935 +tp48936 +a(g48933 +g48935 +S'waves' +p48937 +tp48938 +a(g48935 +g48937 +S'is' +p48939 +tp48940 +a(g48937 +g48939 +S'a' +p48941 +tp48942 +a(g48939 +g48941 +S'variant.' +p48943 +tp48944 +a(g48941 +g48943 +S'it' +p48945 +tp48946 +a(g48943 +g48945 +S'may' +p48947 +tp48948 +a(g48945 +g48947 +S'owe' +p48949 +tp48950 +a(g48947 +g48949 +S'something' +p48951 +tp48952 +a(g48949 +g48951 +S'to' +p48953 +tp48954 +a(g48951 +g48953 +S'the' +p48955 +tp48956 +a(g48953 +g48955 +S'influential' +p48957 +tp48958 +a(g48955 +g48957 +S'paintings' +p48959 +tp48960 +a(g48957 +g48959 +S'of' +p48961 +tp48962 +a(g48959 +g48961 +S'chen' +p48963 +tp48964 +a(g48961 +g48963 +S'rong' +p48965 +tp48966 +a(g48963 +g48965 +S'(fl.' +p48967 +tp48968 +a(g48965 +g48967 +S'c.' +p48969 +tp48970 +a(g48967 +g48969 +S'1200-1266),' +p48971 +tp48972 +a(g48969 +g48971 +S'who' +p48973 +tp48974 +a(g48971 +g48973 +S'often' +p48975 +tp48976 +a(g48973 +g48975 +S'painted' +p48977 +tp48978 +a(g48975 +g48977 +S'dragons' +p48979 +tp48980 +a(g48977 +g48979 +S'fighting' +p48981 +tp48982 +a(g48979 +g48981 +S'among' +p48983 +tp48984 +a(g48981 +g48983 +S'clouds' +p48985 +tp48986 +a(g48983 +g48985 +S'and' +p48987 +tp48988 +a(g48985 +g48987 +S'waves,' +p48989 +tp48990 +a(g48987 +g48989 +S'though' +p48991 +tp48992 +a(g48989 +g48991 +S'judging' +p48993 +tp48994 +a(g48991 +g48993 +S'from' +p48995 +tp48996 +a(g48993 +g48995 +S'the' +p48997 +tp48998 +a(g48995 +g48997 +S'works' +p48999 +tp49000 +a(g48997 +g48999 +S'attributed' +p49001 +tp49002 +a(g48999 +g49001 +S'to' +p49003 +tp49004 +a(g49001 +g49003 +S'him,' +p49005 +tp49006 +a(g49003 +g49005 +S'his' +p49007 +tp49008 +a(g49005 +g49007 +S'dragons' +p49009 +tp49010 +a(g49007 +g49009 +S'were' +p49011 +tp49012 +a(g49009 +g49011 +S'scaled' +p49013 +tp49014 +a(g49011 +g49013 +S'and' +p49015 +tp49016 +a(g49013 +g49015 +S'two-horned.' +p49017 +tp49018 +a(g49015 +g49017 +S'(text' +p49019 +tp49020 +a(g49017 +g49019 +S'by' +p49021 +tp49022 +a(g49019 +g49021 +S'virginia' +p49023 +tp49024 +a(g49021 +g49023 +S'bower/stephen' +p49025 +tp49026 +a(g49023 +g49025 +S'little,' +p49027 +tp49028 +a(g49025 +g49027 +S'published' +p49029 +tp49030 +a(g49027 +g49029 +S'in' +p49031 +tp49032 +a(g49029 +g49031 +S'the' +p49033 +tp49034 +a(g49031 +g49033 +S'nga' +p49035 +tp49036 +a(g49033 +g49035 +S'systematic' +p49037 +tp49038 +a(g49035 +g49037 +S'catalogue:' +p49039 +tp49040 +a(g49037 +g49039 +S'notes' +p49047 +tp49048 +a(g49045 +g49047 +S'' +p49049 +tp49050 +a(g49047 +g49049 +S'' +p49053 +tp49054 +a(g49051 +g49053 +S'' +p49057 +tp49058 +a(g49055 +g49057 +S'' +p49061 +tp49062 +a(g49059 +g49061 +S'' +p49065 +tp49066 +a(g49063 +g49065 +S'' +p49069 +tp49070 +a(g49067 +g49069 +S'' +p49073 +tp49074 +a(g49071 +g49073 +S'' +p49077 +tp49078 +a(g49075 +g49077 +S'' +p49081 +tp49082 +a(g49079 +g49081 +S'"beehive"' +p49083 +tp49084 +a(g49081 +g49083 +S'water' +p49085 +tp49086 +a(g49083 +g49085 +S'pots' +p49087 +tp49088 +a(g49085 +g49087 +S'are' +p49089 +tp49090 +a(g49087 +g49089 +S'usually' +p49091 +tp49092 +a(g49089 +g49091 +S'seen' +p49093 +tp49094 +a(g49091 +g49093 +S'in' +p49095 +tp49096 +a(g49093 +g49095 +S'peachbloom' +p49097 +tp49098 +a(g49095 +g49097 +S'or' +p49099 +tp49100 +a(g49097 +g49099 +S'sometimes' +p49101 +tp49102 +a(g49099 +g49101 +S'pale' +p49103 +tp49104 +a(g49101 +g49103 +S'blue' +p49105 +tp49106 +a(g49103 +g49105 +S'glaze.' +p49107 +tp49108 +a(g49105 +g49107 +S'this' +p49109 +tp49110 +a(g49107 +g49109 +S'unusual' +p49111 +tp49112 +a(g49109 +g49111 +S'pot' +p49113 +tp49114 +a(g49111 +g49113 +S'has' +p49115 +tp49116 +a(g49113 +g49115 +S'been' +p49117 +tp49118 +a(g49115 +g49117 +S'an' +p49119 +tp49120 +a(g49117 +g49119 +S'object' +p49121 +tp49122 +a(g49119 +g49121 +S'of' +p49123 +tp49124 +a(g49121 +g49123 +S'attention' +p49125 +tp49126 +a(g49123 +g49125 +S'both' +p49127 +tp49128 +a(g49125 +g49127 +S'because' +p49129 +tp49130 +a(g49127 +g49129 +S'yellow' +p49131 +tp49132 +a(g49129 +g49131 +S'glaze' +p49133 +tp49134 +a(g49131 +g49133 +S'on' +p49135 +tp49136 +a(g49133 +g49135 +S'"beehive"-shaped' +p49137 +tp49138 +a(g49135 +g49137 +S'water' +p49139 +tp49140 +a(g49137 +g49139 +S'pots' +p49141 +tp49142 +a(g49139 +g49141 +S'is' +p49143 +tp49144 +a(g49141 +g49143 +S'so' +p49145 +tp49146 +a(g49143 +g49145 +S'rarely' +p49147 +tp49148 +a(g49145 +g49147 +S'seen,' +p49149 +tp49150 +a(g49147 +g49149 +S'and' +p49151 +tp49152 +a(g49149 +g49151 +S'because' +p49153 +tp49154 +a(g49151 +g49153 +S'of' +p49155 +tp49156 +a(g49153 +g49155 +S'certain' +p49157 +tp49158 +a(g49155 +g49157 +S'technical' +p49159 +tp49160 +a(g49157 +g49159 +S'features' +p49161 +tp49162 +a(g49159 +g49161 +S'that' +p49163 +tp49164 +a(g49161 +g49163 +S'differ' +p49165 +tp49166 +a(g49163 +g49165 +S'from' +p49167 +tp49168 +a(g49165 +g49167 +S'typical' +p49169 +tp49170 +a(g49167 +g49169 +S'kangxi' +p49171 +tp49172 +a(g49169 +g49171 +S'porcelains,' +p49173 +tp49174 +a(g49171 +g49173 +S'specifically' +p49175 +tp49176 +a(g49173 +g49175 +S'from' +p49177 +tp49178 +a(g49175 +g49177 +S'peachbloom' +p49179 +tp49180 +a(g49177 +g49179 +S'water' +p49181 +tp49182 +a(g49179 +g49181 +S'pots.' +p49183 +tp49184 +a(g49181 +g49183 +S'these' +p49185 +tp49186 +a(g49183 +g49185 +S'include' +p49187 +tp49188 +a(g49185 +g49187 +S'the' +p49189 +tp49190 +a(g49187 +g49189 +S'glazing' +p49191 +tp49192 +a(g49189 +g49191 +S'in' +p49193 +tp49194 +a(g49191 +g49193 +S'color' +p49195 +tp49196 +a(g49193 +g49195 +S'of' +p49197 +tp49198 +a(g49195 +g49197 +S'all' +p49199 +tp49200 +a(g49197 +g49199 +S'surfaces' +p49201 +tp49202 +a(g49199 +g49201 +S'except' +p49203 +tp49204 +a(g49201 +g49203 +S'the' +p49205 +tp49206 +a(g49203 +g49205 +S'interior,' +p49207 +tp49208 +a(g49205 +g49207 +S'which' +p49209 +tp49210 +a(g49207 +g49209 +S'has' +p49211 +tp49212 +a(g49209 +g49211 +S'been' +p49213 +tp49214 +a(g49211 +g49213 +S'left' +p49215 +tp49216 +a(g49213 +g49215 +S'unglazed,' +p49217 +tp49218 +a(g49215 +g49217 +S'and' +p49219 +tp49220 +a(g49217 +g49219 +S'the' +p49221 +tp49222 +a(g49219 +g49221 +S'small' +p49223 +tp49224 +a(g49221 +g49223 +S'spur' +p49225 +tp49226 +a(g49223 +g49225 +S'marks' +p49227 +tp49228 +a(g49225 +g49227 +S'on' +p49229 +tp49230 +a(g49227 +g49229 +S'the' +p49231 +tp49232 +a(g49229 +g49231 +S'glazed' +p49233 +tp49234 +a(g49231 +g49233 +S'foot-ring.' +p49235 +tp49236 +a(g49233 +g49235 +S'some' +p49237 +tp49238 +a(g49235 +g49237 +S'authorities' +p49239 +tp49240 +a(g49237 +g49239 +S'have' +p49241 +tp49242 +a(g49239 +g49241 +S'questioned' +p49243 +tp49244 +a(g49241 +g49243 +S'the' +p49245 +tp49246 +a(g49243 +g49245 +S'style' +p49247 +tp49248 +a(g49245 +g49247 +S'of' +p49249 +tp49250 +a(g49247 +g49249 +S'the' +p49251 +tp49252 +a(g49249 +g49251 +S'calligraphy' +p49253 +tp49254 +a(g49251 +g49253 +S'on' +p49255 +tp49256 +a(g49253 +g49255 +S'the' +p49257 +tp49258 +a(g49255 +g49257 +S'kangxi' +p49259 +tp49260 +a(g49257 +g49259 +S'mark,' +p49261 +tp49262 +a(g49259 +g49261 +S'although' +p49263 +tp49264 +a(g49261 +g49263 +S'others' +p49265 +tp49266 +a(g49263 +g49265 +S'have' +p49267 +tp49268 +a(g49265 +g49267 +S'pointed' +p49269 +tp49270 +a(g49267 +g49269 +S'out' +p49271 +tp49272 +a(g49269 +g49271 +S'that' +p49273 +tp49274 +a(g49271 +g49273 +S'marks' +p49275 +tp49276 +a(g49273 +g49275 +S'of' +p49277 +tp49278 +a(g49275 +g49277 +S'the' +p49279 +tp49280 +a(g49277 +g49279 +S'kangxi' +p49281 +tp49282 +a(g49279 +g49281 +S'period' +p49283 +tp49284 +a(g49281 +g49283 +S'vary' +p49285 +tp49286 +a(g49283 +g49285 +S'greatly.' +p49287 +tp49288 +a(g49285 +g49287 +S'opinions' +p49289 +tp49290 +a(g49287 +g49289 +S'as' +p49291 +tp49292 +a(g49289 +g49291 +S'to' +p49293 +tp49294 +a(g49291 +g49293 +S'the' +p49295 +tp49296 +a(g49293 +g49295 +S'proper' +p49297 +tp49298 +a(g49295 +g49297 +S'dating' +p49299 +tp49300 +a(g49297 +g49299 +S'of' +p49301 +tp49302 +a(g49299 +g49301 +S'this' +p49303 +tp49304 +a(g49301 +g49303 +S'vessel' +p49305 +tp49306 +a(g49303 +g49305 +S'have' +p49307 +tp49308 +a(g49305 +g49307 +S'likewise' +p49309 +tp49310 +a(g49307 +g49309 +S'varied,' +p49311 +tp49312 +a(g49309 +g49311 +S'with' +p49313 +tp49314 +a(g49311 +g49313 +S'some' +p49315 +tp49316 +a(g49313 +g49315 +S'scholars' +p49317 +tp49318 +a(g49315 +g49317 +S'expressing' +p49319 +tp49320 +a(g49317 +g49319 +S'doubt' +p49321 +tp49322 +a(g49319 +g49321 +S'about' +p49323 +tp49324 +a(g49321 +g49323 +S'a' +p49325 +tp49326 +a(g49323 +g49325 +S'kangxi' +p49327 +tp49328 +a(g49325 +g49327 +S'attribution.' +p49329 +tp49330 +a(g49327 +g49329 +S'the' +p49331 +tp49332 +a(g49329 +g49331 +S'metropolitan' +p49333 +tp49334 +a(g49331 +g49333 +S'museum' +p49335 +tp49336 +a(g49333 +g49335 +S'of' +p49337 +tp49338 +a(g49335 +g49337 +S'art,' +p49339 +tp49340 +a(g49337 +g49339 +S'new' +p49341 +tp49342 +a(g49339 +g49341 +S'york,' +p49343 +tp49344 +a(g49341 +g49343 +S'has' +p49345 +tp49346 +a(g49343 +g49345 +S'a' +p49347 +tp49348 +a(g49345 +g49347 +S'yellow' +p49349 +tp49350 +a(g49347 +g49349 +S'water' +p49351 +tp49352 +a(g49349 +g49351 +S'pot' +p49353 +tp49354 +a(g49351 +g49353 +S'that' +p49355 +tp49356 +a(g49353 +g49355 +S'is' +p49357 +tp49358 +a(g49355 +g49357 +S'also' +p49359 +tp49360 +a(g49357 +g49359 +S'glazed' +p49361 +tp49362 +a(g49359 +g49361 +S'yellow' +p49363 +tp49364 +a(g49361 +g49363 +S'over' +p49365 +tp49366 +a(g49363 +g49365 +S'the' +p49367 +tp49368 +a(g49365 +g49367 +S'foot' +p49369 +tp49370 +a(g49367 +g49369 +S'and' +p49371 +tp49372 +a(g49369 +g49371 +S'base.' +p49373 +tp49374 +a(g49371 +g49373 +S'(text' +p49375 +tp49376 +a(g49373 +g49375 +S'by' +p49377 +tp49378 +a(g49375 +g49377 +S'josephine' +p49379 +tp49380 +a(g49377 +g49379 +S'hadley' +p49381 +tp49382 +a(g49379 +g49381 +S'knapp,' +p49383 +tp49384 +a(g49381 +g49383 +S'published' +p49385 +tp49386 +a(g49383 +g49385 +S'in' +p49387 +tp49388 +a(g49385 +g49387 +S'the' +p49389 +tp49390 +a(g49387 +g49389 +S'nga' +p49391 +tp49392 +a(g49389 +g49391 +S'systematic' +p49393 +tp49394 +a(g49391 +g49393 +S'catalogue:' +p49395 +tp49396 +a(g49393 +g49395 +S'notes' +p49403 +tp49404 +a(g49401 +g49403 +S'' +p49405 +tp49406 +a(g49403 +g49405 +S'' +p49409 +tp49410 +a(g49407 +g49409 +S'' +p49413 +tp49414 +a(g49411 +g49413 +S'' +p49417 +tp49418 +a(g49415 +g49417 +S'' +p49421 +tp49422 +a(g49419 +g49421 +S'' +p49425 +tp49426 +a(g49423 +g49425 +S'' +p49429 +tp49430 +a(g49427 +g49429 +S'' +p49433 +tp49434 +a(g49431 +g49433 +S'this' +p49435 +tp49436 +a(g49433 +g49435 +S'is' +p49437 +tp49438 +a(g49435 +g49437 +S'one' +p49439 +tp49440 +a(g49437 +g49439 +S'of' +p49441 +tp49442 +a(g49439 +g49441 +S'the' +p49443 +tp49444 +a(g49441 +g49443 +S'eight' +p49445 +tp49446 +a(g49443 +g49445 +S'peachbloom' +p49447 +tp49448 +a(g49445 +g49447 +S'shapes' +p49449 +tp49450 +a(g49447 +g49449 +S'traditional' +p49451 +tp49452 +a(g49449 +g49451 +S'for' +p49453 +tp49454 +a(g49451 +g49453 +S'the' +p49455 +tp49456 +a(g49453 +g49455 +S"scholar's" +p49457 +tp49458 +a(g49455 +g49457 +S'desk,' +p49459 +tp49460 +a(g49457 +g49459 +S'many' +p49461 +tp49462 +a(g49459 +g49461 +S'of' +p49463 +tp49464 +a(g49461 +g49463 +S'which' +p49465 +tp49466 +a(g49463 +g49465 +S'can' +p49467 +tp49468 +a(g49465 +g49467 +S'be' +p49469 +tp49470 +a(g49467 +g49469 +S'found' +p49471 +tp49472 +a(g49469 +g49471 +S'in' +p49473 +tp49474 +a(g49471 +g49473 +S'english' +p49475 +tp49476 +a(g49473 +g49475 +S'and' +p49477 +tp49478 +a(g49475 +g49477 +S'american' +p49479 +tp49480 +a(g49477 +g49479 +S'peachbloom' +p49481 +tp49482 +a(g49479 +g49481 +S'collections.' +p49483 +tp49484 +a(g49481 +g49483 +S'among' +p49485 +tp49486 +a(g49483 +g49485 +S'a' +p49487 +tp49488 +a(g49485 +g49487 +S'group' +p49489 +tp49490 +a(g49487 +g49489 +S'of' +p49491 +tp49492 +a(g49489 +g49491 +S'boxes' +p49493 +tp49494 +a(g49491 +g49493 +S'of' +p49495 +tp49496 +a(g49493 +g49495 +S'superior' +p49497 +tp49498 +a(g49495 +g49497 +S'quality' +p49499 +tp49500 +a(g49497 +g49499 +S'and' +p49501 +tp49502 +a(g49499 +g49501 +S'condition,' +p49503 +tp49504 +a(g49501 +g49503 +S'the' +p49505 +tp49506 +a(g49503 +g49505 +S'principal' +p49507 +tp49508 +a(g49505 +g49507 +S'variable' +p49509 +tp49510 +a(g49507 +g49509 +S'is' +p49511 +tp49512 +a(g49509 +g49511 +S'the' +p49513 +tp49514 +a(g49511 +g49513 +S'fortuitous' +p49515 +tp49516 +a(g49513 +g49515 +S'effect' +p49517 +tp49518 +a(g49515 +g49517 +S'of' +p49519 +tp49520 +a(g49517 +g49519 +S'color' +p49521 +tp49522 +a(g49519 +g49521 +S'and' +p49523 +tp49524 +a(g49521 +g49523 +S'its' +p49525 +tp49526 +a(g49523 +g49525 +S'distribution.' +p49527 +tp49528 +a(g49525 +g49527 +S'the' +p49529 +tp49530 +a(g49527 +g49529 +S'velvety' +p49531 +tp49532 +a(g49529 +g49531 +S'surface' +p49533 +tp49534 +a(g49531 +g49533 +S'of' +p49535 +tp49536 +a(g49533 +g49535 +S'1942.9.506' +p49537 +tp49538 +a(g49535 +g49537 +S'is' +p49539 +tp49540 +a(g49537 +g49539 +S'richly' +p49541 +tp49542 +a(g49539 +g49541 +S'mottled' +p49543 +tp49544 +a(g49541 +g49543 +S'with' +p49545 +tp49546 +a(g49543 +g49545 +S'dark' +p49547 +tp49548 +a(g49545 +g49547 +S'red' +p49549 +tp49550 +a(g49547 +g49549 +S'on' +p49551 +tp49552 +a(g49549 +g49551 +S'the' +p49553 +tp49554 +a(g49551 +g49553 +S'cover.' +p49555 +tp49556 +a(g49553 +g49555 +S'the' +p49557 +tp49558 +a(g49555 +g49557 +S'peachbloom' +p49559 +tp49560 +a(g49557 +g49559 +S'glaze' +p49561 +tp49562 +a(g49559 +g49561 +S'is' +p49563 +tp49564 +a(g49561 +g49563 +S'paler' +p49565 +tp49566 +a(g49563 +g49565 +S'on' +p49567 +tp49568 +a(g49565 +g49567 +S'the' +p49569 +tp49570 +a(g49567 +g49569 +S'lower' +p49571 +tp49572 +a(g49569 +g49571 +S'section,' +p49573 +tp49574 +a(g49571 +g49573 +S'becoming' +p49575 +tp49576 +a(g49573 +g49575 +S'very' +p49577 +tp49578 +a(g49575 +g49577 +S'light' +p49579 +tp49580 +a(g49577 +g49579 +S'green' +p49581 +tp49582 +a(g49579 +g49581 +S'at' +p49583 +tp49584 +a(g49581 +g49583 +S'the' +p49585 +tp49586 +a(g49583 +g49585 +S'closing' +p49587 +tp49588 +a(g49585 +g49587 +S'edge.' +p49589 +tp49590 +a(g49587 +g49589 +S'notes' +p49597 +tp49598 +a(g49595 +g49597 +S'' +p49599 +tp49600 +a(g49597 +g49599 +S'' +p49603 +tp49604 +a(g49601 +g49603 +S'' +p49607 +tp49608 +a(g49605 +g49607 +S'although' +p49609 +tp49610 +a(g49607 +g49609 +S'carved' +p49611 +tp49612 +a(g49609 +g49611 +S'decoration' +p49613 +tp49614 +a(g49611 +g49613 +S'appears' +p49615 +tp49616 +a(g49613 +g49615 +S'in' +p49617 +tp49618 +a(g49615 +g49617 +S'hepplewhite' +p49619 +tp49620 +a(g49617 +g49619 +S'design,' +p49621 +tp49622 +a(g49619 +g49621 +S'most' +p49623 +tp49624 +a(g49621 +g49623 +S'hepplewhite' +p49625 +tp49626 +a(g49623 +g49625 +S'furniture' +p49627 +tp49628 +a(g49625 +g49627 +S'is' +p49629 +tp49630 +a(g49627 +g49629 +S'ornamented' +p49631 +tp49632 +a(g49629 +g49631 +S'with' +p49633 +tp49634 +a(g49631 +g49633 +S'inlays' +p49635 +tp49636 +a(g49633 +g49635 +S'of' +p49637 +tp49638 +a(g49635 +g49637 +S'contrasting' +p49639 +tp49640 +a(g49637 +g49639 +S'woods' +p49641 +tp49642 +a(g49639 +g49641 +S'which' +p49643 +tp49644 +a(g49641 +g49643 +S'emphasize' +p49645 +tp49646 +a(g49643 +g49645 +S'the' +p49647 +tp49648 +a(g49645 +g49647 +S'graceful,' +p49649 +tp49650 +a(g49647 +g49649 +S'sleek' +p49651 +tp49652 +a(g49649 +g49651 +S'lines' +p49653 +tp49654 +a(g49651 +g49653 +S'of' +p49655 +tp49656 +a(g49653 +g49655 +S'the' +p49657 +tp49658 +a(g49655 +g49657 +S'form.' +p49659 +tp49660 +a(g49657 +g49659 +S'this' +p49661 +tp49662 +a(g49659 +g49661 +S'bow-front' +p49663 +tp49664 +a(g49661 +g49663 +S'chest' +p49665 +tp49666 +a(g49663 +g49665 +S'of' +p49667 +tp49668 +a(g49665 +g49667 +S'drawers' +p49669 +tp49670 +a(g49667 +g49669 +S'illustrates' +p49671 +tp49672 +a(g49669 +g49671 +S'the' +p49673 +tp49674 +a(g49671 +g49673 +S'handsome' +p49675 +tp49676 +a(g49673 +g49675 +S'effect' +p49677 +tp49678 +a(g49675 +g49677 +S'achieved' +p49679 +tp49680 +a(g49677 +g49679 +S'through' +p49681 +tp49682 +a(g49679 +g49681 +S'contrasting' +p49683 +tp49684 +a(g49681 +g49683 +S'veneers' +p49685 +tp49686 +a(g49683 +g49685 +S'of' +p49687 +tp49688 +a(g49685 +g49687 +S'richly' +p49689 +tp49690 +a(g49687 +g49689 +S'figured' +p49691 +tp49692 +a(g49689 +g49691 +S'mahogany' +p49693 +tp49694 +a(g49691 +g49693 +S'and' +p49695 +tp49696 +a(g49693 +g49695 +S'satinwood.' +p49697 +tp49698 +a(g49695 +g49697 +S'the' +p49699 +tp49700 +a(g49697 +g49699 +S'tiers' +p49701 +tp49702 +a(g49699 +g49701 +S'of' +p49703 +tp49704 +a(g49701 +g49703 +S'side' +p49705 +tp49706 +a(g49703 +g49705 +S'drawers' +p49707 +tp49708 +a(g49705 +g49707 +S'are' +p49709 +tp49710 +a(g49707 +g49709 +S'ornamented' +p49711 +tp49712 +a(g49709 +g49711 +S'with' +p49713 +tp49714 +a(g49711 +g49713 +S'finely' +p49715 +tp49716 +a(g49713 +g49715 +S'wrought' +p49717 +tp49718 +a(g49715 +g49717 +S'fan' +p49719 +tp49720 +a(g49717 +g49719 +S'inlays' +p49721 +tp49722 +a(g49719 +g49721 +S'at' +p49723 +tp49724 +a(g49721 +g49723 +S'the' +p49725 +tp49726 +a(g49723 +g49725 +S'corners,' +p49727 +tp49728 +a(g49725 +g49727 +S'and' +p49729 +tp49730 +a(g49727 +g49729 +S'each' +p49731 +tp49732 +a(g49729 +g49731 +S'drawer' +p49733 +tp49734 +a(g49731 +g49733 +S'is' +p49735 +tp49736 +a(g49733 +g49735 +S'further' +p49737 +tp49738 +a(g49735 +g49737 +S'delineated' +p49739 +tp49740 +a(g49737 +g49739 +S'by' +p49741 +tp49742 +a(g49739 +g49741 +S'two' +p49743 +tp49744 +a(g49741 +g49743 +S'narrow' +p49745 +tp49746 +a(g49743 +g49745 +S'lines' +p49747 +tp49748 +a(g49745 +g49747 +S'of' +p49749 +tp49750 +a(g49747 +g49749 +S'inlay,' +p49751 +tp49752 +a(g49749 +g49751 +S'called' +p49753 +tp49754 +a(g49751 +g49753 +S'"stringing,"' +p49755 +tp49756 +a(g49753 +g49755 +S'in' +p49757 +tp49758 +a(g49755 +g49757 +S'contrasting' +p49759 +tp49760 +a(g49757 +g49759 +S'wood.' +p49761 +tp49762 +a(g49759 +g49761 +S'the' +p49763 +tp49764 +a(g49761 +g49763 +S'curve' +p49765 +tp49766 +a(g49763 +g49765 +S'of' +p49767 +tp49768 +a(g49765 +g49767 +S'the' +p49769 +tp49770 +a(g49767 +g49769 +S'chest' +p49771 +tp49772 +a(g49769 +g49771 +S'front' +p49773 +tp49774 +a(g49771 +g49773 +S'is' +p49775 +tp49776 +a(g49773 +g49775 +S'emphasized' +p49777 +tp49778 +a(g49775 +g49777 +S'by' +p49779 +tp49780 +a(g49777 +g49779 +S'the' +p49781 +tp49782 +a(g49779 +g49781 +S'light' +p49783 +tp49784 +a(g49781 +g49783 +S'color' +p49785 +tp49786 +a(g49783 +g49785 +S'of' +p49787 +tp49788 +a(g49785 +g49787 +S'the' +p49789 +tp49790 +a(g49787 +g49789 +S'central' +p49791 +tp49792 +a(g49789 +g49791 +S'section' +p49793 +tp49794 +a(g49791 +g49793 +S'of' +p49795 +tp49796 +a(g49793 +g49795 +S'drawers;' +p49797 +tp49798 +a(g49795 +g49797 +S'an' +p49799 +tp49800 +a(g49797 +g49799 +S'inlaid' +p49801 +tp49802 +a(g49799 +g49801 +S'oval' +p49803 +tp49804 +a(g49801 +g49803 +S'medallion' +p49805 +tp49806 +a(g49803 +g49805 +S'highlights' +p49807 +tp49808 +a(g49805 +g49807 +S'the' +p49809 +tp49810 +a(g49807 +g49809 +S'top' +p49811 +tp49812 +a(g49809 +g49811 +S'drawer.' +p49813 +tp49814 +a(g49811 +g49813 +S'the' +p49815 +tp49816 +a(g49813 +g49815 +S'inlay' +p49817 +tp49818 +a(g49815 +g49817 +S'shows' +p49819 +tp49820 +a(g49817 +g49819 +S'the' +p49821 +tp49822 +a(g49819 +g49821 +S'american' +p49823 +tp49824 +a(g49821 +g49823 +S'eagle,' +p49825 +tp49826 +a(g49823 +g49825 +S'a' +p49827 +tp49828 +a(g49825 +g49827 +S'decorative' +p49829 +tp49830 +a(g49827 +g49829 +S'motif' +p49831 +tp49832 +a(g49829 +g49831 +S'favored' +p49833 +tp49834 +a(g49831 +g49833 +S'by' +p49835 +tp49836 +a(g49833 +g49835 +S'the' +p49837 +tp49838 +a(g49835 +g49837 +S'patriotic' +p49839 +tp49840 +a(g49837 +g49839 +S'citizens' +p49841 +tp49842 +a(g49839 +g49841 +S'of' +p49843 +tp49844 +a(g49841 +g49843 +S'the' +p49845 +tp49846 +a(g49843 +g49845 +S'newly' +p49847 +tp49848 +a(g49845 +g49847 +S'formed' +p49849 +tp49850 +a(g49847 +g49849 +S'republic.' +p49851 +tp49852 +a(g49849 +g49851 +S'this' +p49853 +tp49854 +a(g49851 +g49853 +S'portrait' +p49855 +tp49856 +a(g49853 +g49855 +S'is' +p49857 +tp49858 +a(g49855 +g49857 +S'among' +p49859 +tp49860 +a(g49857 +g49859 +S'the' +p49861 +tp49862 +a(g49859 +g49861 +S'first' +p49863 +tp49864 +a(g49861 +g49863 +S'from' +p49865 +tp49866 +a(g49863 +g49865 +S'the' +p49867 +tp49868 +a(g49865 +g49867 +S'renaissance.' +p49869 +tp49870 +a(g49867 +g49869 +S'during' +p49871 +tp49872 +a(g49869 +g49871 +S'the' +p49873 +tp49874 +a(g49871 +g49873 +S'late' +p49875 +tp49876 +a(g49873 +g49875 +S'middle' +p49877 +tp49878 +a(g49875 +g49877 +S'ages,' +p49879 +tp49880 +a(g49877 +g49879 +S'depictions' +p49881 +tp49882 +a(g49879 +g49881 +S'of' +p49883 +tp49884 +a(g49881 +g49883 +S'individual' +p49885 +tp49886 +a(g49883 +g49885 +S'donors' +p49887 +tp49888 +a(g49885 +g49887 +S'had' +p49889 +tp49890 +a(g49887 +g49889 +S'often' +p49891 +tp49892 +a(g49889 +g49891 +S'been' +p49893 +tp49894 +a(g49891 +g49893 +S'included' +p49895 +tp49896 +a(g49893 +g49895 +S'in' +p49897 +tp49898 +a(g49895 +g49897 +S'religious' +p49899 +tp49900 +a(g49897 +g49899 +S'paintings,' +p49901 +tp49902 +a(g49899 +g49901 +S'but' +p49903 +tp49904 +a(g49901 +g49903 +S'it' +p49905 +tp49906 +a(g49903 +g49905 +S'was' +p49907 +tp49908 +a(g49905 +g49907 +S'not' +p49909 +tp49910 +a(g49907 +g49909 +S'until' +p49911 +tp49912 +a(g49909 +g49911 +S'the' +p49913 +tp49914 +a(g49911 +g49913 +S'early' +p49915 +tp49916 +a(g49913 +g49915 +S'fifteenth' +p49917 +tp49918 +a(g49915 +g49917 +S'century' +p49919 +tp49920 +a(g49917 +g49919 +S'that' +p49921 +tp49922 +a(g49919 +g49921 +S'independent' +p49923 +tp49924 +a(g49921 +g49923 +S'portraits' +p49925 +tp49926 +a(g49923 +g49925 +S'were' +p49927 +tp49928 +a(g49925 +g49927 +S'commissioned.' +p49929 +tp49930 +a(g49927 +g49929 +S'the' +p49931 +tp49932 +a(g49929 +g49931 +S'earliest' +p49933 +tp49934 +a(g49931 +g49933 +S'ones' +p49935 +tp49936 +a(g49933 +g49935 +S'are,' +p49937 +tp49938 +a(g49935 +g49937 +S'like' +p49939 +tp49940 +a(g49937 +g49939 +S'these,' +p49941 +tp49942 +a(g49939 +g49941 +S'simple—even' +p49943 +tp49944 +a(g49941 +g49943 +S'austere—profile' +p49945 +tp49946 +a(g49943 +g49945 +S'views.' +p49947 +tp49948 +a(g49945 +g49947 +S'very' +p49949 +tp49950 +a(g49947 +g49949 +S'likely,' +p49951 +tp49952 +a(g49949 +g49951 +S'they' +p49953 +tp49954 +a(g49951 +g49953 +S'were' +p49955 +tp49956 +a(g49953 +g49955 +S'influenced' +p49957 +tp49958 +a(g49955 +g49957 +S'by' +p49959 +tp49960 +a(g49957 +g49959 +S'portrait' +p49961 +tp49962 +a(g49959 +g49961 +S'busts' +p49963 +tp49964 +a(g49961 +g49963 +S'and' +p49965 +tp49966 +a(g49963 +g49965 +S'the' +p49967 +tp49968 +a(g49965 +g49967 +S'profile' +p49969 +tp49970 +a(g49967 +g49969 +S'heads' +p49971 +tp49972 +a(g49969 +g49971 +S'on' +p49973 +tp49974 +a(g49971 +g49973 +S'ancient' +p49975 +tp49976 +a(g49973 +g49975 +S'gems' +p49977 +tp49978 +a(g49975 +g49977 +S'and' +p49979 +tp49980 +a(g49977 +g49979 +S'coins,' +p49981 +tp49982 +a(g49979 +g49981 +S'which' +p49983 +tp49984 +a(g49981 +g49983 +S'were' +p49985 +tp49986 +a(g49983 +g49985 +S'avidly' +p49987 +tp49988 +a(g49985 +g49987 +S'collected' +p49989 +tp49990 +a(g49987 +g49989 +S'by' +p49991 +tp49992 +a(g49989 +g49991 +S'renaissance' +p49993 +tp49994 +a(g49991 +g49993 +S'humanists.' +p49995 +tp49996 +a(g49993 +g49995 +S'the' +p49997 +tp49998 +a(g49995 +g49997 +S'popularity' +p49999 +tp50000 +a(g49997 +g49999 +S'of' +p50001 +tp50002 +a(g49999 +g50001 +S'the' +p50003 +tp50004 +a(g50001 +g50003 +S'independent' +p50005 +tp50006 +a(g50003 +g50005 +S'portrait' +p50007 +tp50008 +a(g50005 +g50007 +S'was' +p50009 +tp50010 +a(g50007 +g50009 +S'spurred' +p50011 +tp50012 +a(g50009 +g50011 +S'by' +p50013 +tp50014 +a(g50011 +g50013 +S'a' +p50015 +tp50016 +a(g50013 +g50015 +S'new' +p50017 +tp50018 +a(g50015 +g50017 +S'focus' +p50019 +tp50020 +a(g50017 +g50019 +S'on' +p50021 +tp50022 +a(g50019 +g50021 +S'the' +p50023 +tp50024 +a(g50021 +g50023 +S'individual' +p50025 +tp50026 +a(g50023 +g50025 +S'and' +p50027 +tp50028 +a(g50025 +g50027 +S'an' +p50029 +tp50030 +a(g50027 +g50029 +S'appreciation' +p50031 +tp50032 +a(g50029 +g50031 +S'of' +p50033 +tp50034 +a(g50031 +g50033 +S'individual' +p50035 +tp50036 +a(g50033 +g50035 +S'accomplishments—a' +p50037 +tp50038 +a(g50035 +g50037 +S'new' +p50039 +tp50040 +a(g50037 +g50039 +S'conception' +p50041 +tp50042 +a(g50039 +g50041 +S'of' +p50043 +tp50044 +a(g50041 +g50043 +S'fame.' +p50045 +tp50046 +a(g50043 +g50045 +S'probably,' +p50047 +tp50048 +a(g50045 +g50047 +S'the' +p50049 +tp50050 +a(g50047 +g50049 +S'portrait' +p50051 +tp50052 +a(g50049 +g50051 +S'is' +p50053 +tp50054 +a(g50051 +g50053 +S'of' +p50055 +tp50056 +a(g50053 +g50055 +S'matteo' +p50057 +tp50058 +a(g50055 +g50057 +S'olivieri—his' +p50059 +tp50060 +a(g50057 +g50059 +S'name' +p50061 +tp50062 +a(g50059 +g50061 +S'appears' +p50063 +tp50064 +a(g50061 +g50063 +S'on' +p50065 +tp50066 +a(g50063 +g50065 +S'the' +p50067 +tp50068 +a(g50065 +g50067 +S'ledge—and' +p50069 +tp50070 +a(g50067 +g50069 +S'was' +p50071 +tp50072 +a(g50069 +g50071 +S'originally' +p50073 +tp50074 +a(g50071 +g50073 +S'paired' +p50075 +tp50076 +a(g50073 +g50075 +S'with' +p50077 +tp50078 +a(g50075 +g50077 +S'one' +p50079 +tp50080 +a(g50077 +g50079 +S'of' +p50081 +tp50082 +a(g50079 +g50081 +S'his' +p50083 +tp50084 +a(g50081 +g50083 +S'son' +p50085 +tp50086 +a(g50083 +g50085 +S'michele,' +p50087 +tp50088 +a(g50085 +g50087 +S'who' +p50089 +tp50090 +a(g50087 +g50089 +S'may' +p50091 +tp50092 +a(g50089 +g50091 +S'have' +p50093 +tp50094 +a(g50091 +g50093 +S'commissioned' +p50095 +tp50096 +a(g50093 +g50095 +S'both' +p50097 +tp50098 +a(g50095 +g50097 +S'works.' +p50099 +tp50100 +a(g50097 +g50099 +S'though' +p50101 +tp50102 +a(g50099 +g50101 +S'painted' +p50103 +tp50104 +a(g50101 +g50103 +S'long' +p50105 +tp50106 +a(g50103 +g50105 +S'after' +p50107 +tp50108 +a(g50105 +g50107 +S'matteo' +p50109 +tp50110 +a(g50107 +g50109 +S'had' +p50111 +tp50112 +a(g50109 +g50111 +S'died' +p50113 +tp50114 +a(g50111 +g50113 +S'(he' +p50115 +tp50116 +a(g50113 +g50115 +S'left' +p50117 +tp50118 +a(g50115 +g50117 +S'a' +p50119 +tp50120 +a(g50117 +g50119 +S'will' +p50121 +tp50122 +a(g50119 +g50121 +S'in' +p50123 +tp50124 +a(g50121 +g50123 +S'1365),' +p50125 +tp50126 +a(g50123 +g50125 +S'the' +p50127 +tp50128 +a(g50125 +g50127 +S'portrait' +p50129 +tp50130 +a(g50127 +g50129 +S'depicts' +p50131 +tp50132 +a(g50129 +g50131 +S'a' +p50133 +tp50134 +a(g50131 +g50133 +S'young' +p50135 +tp50136 +a(g50133 +g50135 +S'man,' +p50137 +tp50138 +a(g50135 +g50137 +S'as' +p50139 +tp50140 +a(g50137 +g50139 +S'did' +p50141 +tp50142 +a(g50139 +g50141 +S'the' +p50143 +tp50144 +a(g50141 +g50143 +S'portrait' +p50145 +tp50146 +a(g50143 +g50145 +S'of' +p50147 +tp50148 +a(g50145 +g50147 +S'his' +p50149 +tp50150 +a(g50147 +g50149 +S'son,' +p50151 +tp50152 +a(g50149 +g50151 +S'who' +p50153 +tp50154 +a(g50151 +g50153 +S'must' +p50155 +tp50156 +a(g50153 +g50155 +S'have' +p50157 +tp50158 +a(g50155 +g50157 +S'been' +p50159 +tp50160 +a(g50157 +g50159 +S'at' +p50161 +tp50162 +a(g50159 +g50161 +S'least' +p50163 +tp50164 +a(g50161 +g50163 +S'sixty-five' +p50165 +tp50166 +a(g50163 +g50165 +S'when' +p50167 +tp50168 +a(g50165 +g50167 +S'the' +p50169 +tp50170 +a(g50167 +g50169 +S'works' +p50171 +tp50172 +a(g50169 +g50171 +S'were' +p50173 +tp50174 +a(g50171 +g50173 +S'painted.' +p50175 +tp50176 +a(g50173 +g50175 +S'most' +p50177 +tp50178 +a(g50175 +g50177 +S'portraits' +p50179 +tp50180 +a(g50177 +g50179 +S'were' +p50181 +tp50182 +a(g50179 +g50181 +S'probably' +p50183 +tp50184 +a(g50181 +g50183 +S'commissioned' +p50185 +tp50186 +a(g50183 +g50185 +S'as' +p50187 +tp50188 +a(g50185 +g50187 +S'commemorations' +p50189 +tp50190 +a(g50187 +g50189 +S'of' +p50191 +tp50192 +a(g50189 +g50191 +S'the' +p50193 +tp50194 +a(g50191 +g50193 +S'deceased' +p50195 +tp50196 +a(g50193 +g50195 +S'by' +p50197 +tp50198 +a(g50195 +g50197 +S'families' +p50199 +tp50200 +a(g50197 +g50199 +S'who' +p50201 +tp50202 +a(g50199 +g50201 +S'wished' +p50203 +tp50204 +a(g50201 +g50203 +S'to' +p50205 +tp50206 +a(g50203 +g50205 +S'remember' +p50207 +tp50208 +a(g50205 +g50207 +S'them' +p50209 +tp50210 +a(g50207 +g50209 +S'in' +p50211 +tp50212 +a(g50209 +g50211 +S'the' +p50213 +tp50214 +a(g50211 +g50213 +S'prime' +p50215 +tp50216 +a(g50213 +g50215 +S'of' +p50217 +tp50218 +a(g50215 +g50217 +S'life.' +p50219 +tp50220 +a(g50217 +g50219 +S'as' +p50221 +tp50222 +a(g50219 +g50221 +S'renaissance' +p50223 +tp50224 +a(g50221 +g50223 +S'art' +p50225 +tp50226 +a(g50223 +g50225 +S'theorist' +p50227 +tp50228 +a(g50225 +g50227 +S'alberti' +p50229 +tp50230 +a(g50227 +g50229 +S'noted,' +p50231 +tp50232 +a(g50229 +g50231 +S'a' +p50233 +tp50234 +a(g50231 +g50233 +S'portrait' +p50235 +tp50236 +a(g50233 +g50235 +S'"like' +p50237 +tp50238 +a(g50235 +g50237 +S'friendship' +p50239 +tp50240 +a(g50237 +g50239 +S'can' +p50241 +tp50242 +a(g50239 +g50241 +S'make' +p50243 +tp50244 +a(g50241 +g50243 +S'an' +p50245 +tp50246 +a(g50243 +g50245 +S'absent' +p50247 +tp50248 +a(g50245 +g50247 +S'man' +p50249 +tp50250 +a(g50247 +g50249 +S'seem' +p50251 +tp50252 +a(g50249 +g50251 +S'present' +p50253 +tp50254 +a(g50251 +g50253 +S'and' +p50255 +tp50256 +a(g50253 +g50255 +S'a' +p50257 +tp50258 +a(g50255 +g50257 +S'dead' +p50259 +tp50260 +a(g50257 +g50259 +S'one' +p50261 +tp50262 +a(g50259 +g50261 +S'seem' +p50263 +tp50264 +a(g50261 +g50263 +S'alive."' +p50265 +tp50266 +a(g50263 +g50265 +S'the' +p50267 +tp50268 +a(g50265 +g50267 +S'tall,' +p50269 +tp50270 +a(g50267 +g50269 +S'slender' +p50271 +tp50272 +a(g50269 +g50271 +S'shape' +p50273 +tp50274 +a(g50271 +g50273 +S'of' +p50275 +tp50276 +a(g50273 +g50275 +S'this' +p50277 +tp50278 +a(g50275 +g50277 +S'baluster' +p50279 +tp50280 +a(g50277 +g50279 +S'vase' +p50281 +tp50282 +a(g50279 +g50281 +S'is' +p50283 +tp50284 +a(g50281 +g50283 +S'quite' +p50285 +tp50286 +a(g50283 +g50285 +S'restrained.' +p50287 +tp50288 +a(g50285 +g50287 +S'the' +p50289 +tp50290 +a(g50287 +g50289 +S'mouth' +p50291 +tp50292 +a(g50289 +g50291 +S'turns' +p50293 +tp50294 +a(g50291 +g50293 +S'outward' +p50295 +tp50296 +a(g50293 +g50295 +S'only' +p50297 +tp50298 +a(g50295 +g50297 +S'slightly;' +p50299 +tp50300 +a(g50297 +g50299 +S'the' +p50301 +tp50302 +a(g50299 +g50301 +S'neck' +p50303 +tp50304 +a(g50301 +g50303 +S'is' +p50305 +tp50306 +a(g50303 +g50305 +S'short,' +p50307 +tp50308 +a(g50305 +g50307 +S'the' +p50309 +tp50310 +a(g50307 +g50309 +S'shoulder' +p50311 +tp50312 +a(g50309 +g50311 +S'sloping.' +p50313 +tp50314 +a(g50311 +g50313 +S'the' +p50315 +tp50316 +a(g50313 +g50315 +S'porcelain' +p50317 +tp50318 +a(g50315 +g50317 +S'is' +p50319 +tp50320 +a(g50317 +g50319 +S'fine-textured,' +p50321 +tp50322 +a(g50319 +g50321 +S'white,' +p50323 +tp50324 +a(g50321 +g50323 +S'and' +p50325 +tp50326 +a(g50323 +g50325 +S'smooth' +p50327 +tp50328 +a(g50325 +g50327 +S'where' +p50329 +tp50330 +a(g50327 +g50329 +S'it' +p50331 +tp50332 +a(g50329 +g50331 +S'is' +p50333 +tp50334 +a(g50331 +g50333 +S'revealed' +p50335 +tp50336 +a(g50333 +g50335 +S'on' +p50337 +tp50338 +a(g50335 +g50337 +S'the' +p50339 +tp50340 +a(g50337 +g50339 +S'carefully' +p50341 +tp50342 +a(g50339 +g50341 +S'beveled' +p50343 +tp50344 +a(g50341 +g50343 +S'foot-ring.' +p50345 +tp50346 +a(g50343 +g50345 +S'a' +p50347 +tp50348 +a(g50345 +g50347 +S'transparent,' +p50349 +tp50350 +a(g50347 +g50349 +S'pale' +p50351 +tp50352 +a(g50349 +g50351 +S'greenish' +p50353 +tp50354 +a(g50351 +g50353 +S'glaze' +p50355 +tp50356 +a(g50353 +g50355 +S'covers' +p50357 +tp50358 +a(g50355 +g50357 +S'the' +p50359 +tp50360 +a(g50357 +g50359 +S'inside' +p50361 +tp50362 +a(g50359 +g50361 +S'and' +p50363 +tp50364 +a(g50361 +g50363 +S'the' +p50365 +tp50366 +a(g50363 +g50365 +S'base.' +p50367 +tp50368 +a(g50365 +g50367 +S'on' +p50369 +tp50370 +a(g50367 +g50369 +S'the' +p50371 +tp50372 +a(g50369 +g50371 +S'outside,' +p50373 +tp50374 +a(g50371 +g50373 +S'the' +p50375 +tp50376 +a(g50373 +g50375 +S'dark' +p50377 +tp50378 +a(g50375 +g50377 +S'red' +p50379 +tp50380 +a(g50377 +g50379 +S'of' +p50381 +tp50382 +a(g50379 +g50381 +S'the' +p50383 +tp50384 +a(g50381 +g50383 +S'glaze' +p50385 +tp50386 +a(g50383 +g50385 +S'drains' +p50387 +tp50388 +a(g50385 +g50387 +S'away' +p50389 +tp50390 +a(g50387 +g50389 +S'from' +p50391 +tp50392 +a(g50389 +g50391 +S'the' +p50393 +tp50394 +a(g50391 +g50393 +S'lip' +p50395 +tp50396 +a(g50393 +g50395 +S'and' +p50397 +tp50398 +a(g50395 +g50397 +S'streaks' +p50399 +tp50400 +a(g50397 +g50399 +S'down' +p50401 +tp50402 +a(g50399 +g50401 +S'the' +p50403 +tp50404 +a(g50401 +g50403 +S'sides' +p50405 +tp50406 +a(g50403 +g50405 +S'from' +p50407 +tp50408 +a(g50405 +g50407 +S'the' +p50409 +tp50410 +a(g50407 +g50409 +S'shoulder,' +p50411 +tp50412 +a(g50409 +g50411 +S'becoming' +p50413 +tp50414 +a(g50411 +g50413 +S'very' +p50415 +tp50416 +a(g50413 +g50415 +S'deep' +p50417 +tp50418 +a(g50415 +g50417 +S'in' +p50419 +tp50420 +a(g50417 +g50419 +S'color' +p50421 +tp50422 +a(g50419 +g50421 +S'on' +p50423 +tp50424 +a(g50421 +g50423 +S'the' +p50425 +tp50426 +a(g50423 +g50425 +S'lower' +p50427 +tp50428 +a(g50425 +g50427 +S'half' +p50429 +tp50430 +a(g50427 +g50429 +S'of' +p50431 +tp50432 +a(g50429 +g50431 +S'the' +p50433 +tp50434 +a(g50431 +g50433 +S'vessel.' +p50435 +tp50436 +a(g50433 +g50435 +S'the' +p50437 +tp50438 +a(g50435 +g50437 +S'glaze' +p50439 +tp50440 +a(g50437 +g50439 +S'collects' +p50441 +tp50442 +a(g50439 +g50441 +S'just' +p50443 +tp50444 +a(g50441 +g50443 +S'at' +p50445 +tp50446 +a(g50443 +g50445 +S'the' +p50447 +tp50448 +a(g50445 +g50447 +S'bevel' +p50449 +tp50450 +a(g50447 +g50449 +S'of' +p50451 +tp50452 +a(g50449 +g50451 +S'the' +p50453 +tp50454 +a(g50451 +g50453 +S'foot' +p50455 +tp50456 +a(g50453 +g50455 +S'in' +p50457 +tp50458 +a(g50455 +g50457 +S'a' +p50459 +tp50460 +a(g50457 +g50459 +S'thick,' +p50461 +tp50462 +a(g50459 +g50461 +S'perfectly' +p50463 +tp50464 +a(g50461 +g50463 +S'controlled' +p50465 +tp50466 +a(g50463 +g50465 +S'welt.' +p50467 +tp50468 +a(g50465 +g50467 +S'on' +p50469 +tp50470 +a(g50467 +g50469 +S'one' +p50471 +tp50472 +a(g50469 +g50471 +S'side' +p50473 +tp50474 +a(g50471 +g50473 +S'of' +p50475 +tp50476 +a(g50473 +g50475 +S'the' +p50477 +tp50478 +a(g50475 +g50477 +S'body' +p50479 +tp50480 +a(g50477 +g50479 +S'there' +p50481 +tp50482 +a(g50479 +g50481 +S'is' +p50483 +tp50484 +a(g50481 +g50483 +S'a' +p50485 +tp50486 +a(g50483 +g50485 +S'lighter' +p50487 +tp50488 +a(g50485 +g50487 +S'streaked' +p50489 +tp50490 +a(g50487 +g50489 +S'area.' +p50491 +tp50492 +a(g50489 +g50491 +S'these' +p50493 +tp50494 +a(g50491 +g50493 +S'color' +p50495 +tp50496 +a(g50493 +g50495 +S'variations' +p50497 +tp50498 +a(g50495 +g50497 +S'give' +p50499 +tp50500 +a(g50497 +g50499 +S'the' +p50501 +tp50502 +a(g50499 +g50501 +S'piece' +p50503 +tp50504 +a(g50501 +g50503 +S'a' +p50505 +tp50506 +a(g50503 +g50505 +S'lively' +p50507 +tp50508 +a(g50505 +g50507 +S'individuality.' +p50509 +tp50510 +a(g50507 +g50509 +S'at' +p50511 +tp50512 +a(g50509 +g50511 +S'some' +p50513 +tp50514 +a(g50511 +g50513 +S'time' +p50515 +tp50516 +a(g50513 +g50515 +S'in' +p50517 +tp50518 +a(g50515 +g50517 +S'its' +p50519 +tp50520 +a(g50517 +g50519 +S'recent' +p50521 +tp50522 +a(g50519 +g50521 +S'history,' +p50523 +tp50524 +a(g50521 +g50523 +S'an' +p50525 +tp50526 +a(g50523 +g50525 +S'unknown' +p50527 +tp50528 +a(g50525 +g50527 +S'connoisseur' +p50529 +tp50530 +a(g50527 +g50529 +S'aptly' +p50531 +tp50532 +a(g50529 +g50531 +S'named' +p50533 +tp50534 +a(g50531 +g50533 +S'this' +p50535 +tp50536 +a(g50533 +g50535 +S'vase' +p50537 +tp50538 +a(g50535 +g50537 +S'"the' +p50539 +tp50540 +a(g50537 +g50539 +S'flame."' +p50541 +tp50542 +a(g50539 +g50541 +S'(text' +p50543 +tp50544 +a(g50541 +g50543 +S'by' +p50545 +tp50546 +a(g50543 +g50545 +S'josephine' +p50547 +tp50548 +a(g50545 +g50547 +S'hadley' +p50549 +tp50550 +a(g50547 +g50549 +S'knapp,' +p50551 +tp50552 +a(g50549 +g50551 +S'published' +p50553 +tp50554 +a(g50551 +g50553 +S'in' +p50555 +tp50556 +a(g50553 +g50555 +S'the' +p50557 +tp50558 +a(g50555 +g50557 +S'nga' +p50559 +tp50560 +a(g50557 +g50559 +S'systematic' +p50561 +tp50562 +a(g50559 +g50561 +S'catalogue:' +p50563 +tp50564 +a(g50561 +g50563 +S'notes' +p50571 +tp50572 +a(g50569 +g50571 +S'' +p50573 +tp50574 +a(g50571 +g50573 +S'' +p50577 +tp50578 +a(g50575 +g50577 +S'' +p50581 +tp50582 +a(g50579 +g50581 +S'' +p50585 +tp50586 +a(g50583 +g50585 +S'this' +p50587 +tp50588 +a(g50585 +g50587 +S'tall,' +p50589 +tp50590 +a(g50587 +g50589 +S'slender' +p50591 +tp50592 +a(g50589 +g50591 +S'vase' +p50593 +tp50594 +a(g50591 +g50593 +S'is' +p50595 +tp50596 +a(g50593 +g50595 +S'a' +p50597 +tp50598 +a(g50595 +g50597 +S'more' +p50599 +tp50600 +a(g50597 +g50599 +S'elegant' +p50601 +tp50602 +a(g50599 +g50601 +S'and' +p50603 +tp50604 +a(g50601 +g50603 +S'attenuated' +p50605 +tp50606 +a(g50603 +g50605 +S'version' +p50607 +tp50608 +a(g50605 +g50607 +S'of' +p50609 +tp50610 +a(g50607 +g50609 +S'the' +p50611 +tp50612 +a(g50609 +g50611 +S'customarily' +p50613 +tp50614 +a(g50611 +g50613 +S'sturdy' +p50615 +tp50616 +a(g50613 +g50615 +S'ming' +p50617 +tp50618 +a(g50615 +g50617 +S'baluster' +p50619 +tp50620 +a(g50617 +g50619 +S'vase' +p50621 +tp50622 +a(g50619 +g50621 +S'shape.' +p50623 +tp50624 +a(g50621 +g50623 +S'the' +p50625 +tp50626 +a(g50623 +g50625 +S'two' +p50627 +tp50628 +a(g50625 +g50627 +S'creatures' +p50629 +tp50630 +a(g50627 +g50629 +S'climbing' +p50631 +tp50632 +a(g50629 +g50631 +S'the' +p50633 +tp50634 +a(g50631 +g50633 +S'sides' +p50635 +tp50636 +a(g50633 +g50635 +S'of' +p50637 +tp50638 +a(g50635 +g50637 +S'the' +p50639 +tp50640 +a(g50637 +g50639 +S'neck' +p50641 +tp50642 +a(g50639 +g50641 +S'are' +p50643 +tp50644 +a(g50641 +g50643 +S'descendants' +p50645 +tp50646 +a(g50643 +g50645 +S'of' +p50647 +tp50648 +a(g50645 +g50647 +S'bronze' +p50649 +tp50650 +a(g50647 +g50649 +S'age' +p50651 +tp50652 +a(g50649 +g50651 +S'dragons,' +p50653 +tp50654 +a(g50651 +g50653 +S'with' +p50655 +tp50656 +a(g50653 +g50655 +S'manes' +p50657 +tp50658 +a(g50655 +g50657 +S'and' +p50659 +tp50660 +a(g50657 +g50659 +S'bifurcated' +p50661 +tp50662 +a(g50659 +g50661 +S'tails.' +p50663 +tp50664 +a(g50661 +g50663 +S'the' +p50665 +tp50666 +a(g50663 +g50665 +S'glaze' +p50667 +tp50668 +a(g50665 +g50667 +S'is' +p50669 +tp50670 +a(g50667 +g50669 +S'a' +p50671 +tp50672 +a(g50669 +g50671 +S'brilliant' +p50673 +tp50674 +a(g50671 +g50673 +S'glossy' +p50675 +tp50676 +a(g50673 +g50675 +S'emerald' +p50677 +tp50678 +a(g50675 +g50677 +S'green.' +p50679 +tp50680 +a(g50677 +g50679 +S'originally,' +p50681 +tp50682 +a(g50679 +g50681 +S'most' +p50683 +tp50684 +a(g50681 +g50683 +S'of' +p50685 +tp50686 +a(g50683 +g50685 +S'the' +p50687 +tp50688 +a(g50685 +g50687 +S'surface' +p50689 +tp50690 +a(g50687 +g50689 +S'was' +p50691 +tp50692 +a(g50689 +g50691 +S'decorated' +p50693 +tp50694 +a(g50691 +g50693 +S'in' +p50695 +tp50696 +a(g50693 +g50695 +S'gold.' +p50697 +tp50698 +a(g50695 +g50697 +S'so' +p50699 +tp50700 +a(g50697 +g50699 +S'much' +p50701 +tp50702 +a(g50699 +g50701 +S'has' +p50703 +tp50704 +a(g50701 +g50703 +S'been' +p50705 +tp50706 +a(g50703 +g50705 +S'lost' +p50707 +tp50708 +a(g50705 +g50707 +S'that' +p50709 +tp50710 +a(g50707 +g50709 +S'only' +p50711 +tp50712 +a(g50709 +g50711 +S'here' +p50713 +tp50714 +a(g50711 +g50713 +S'and' +p50715 +tp50716 +a(g50713 +g50715 +S'there' +p50717 +tp50718 +a(g50715 +g50717 +S'can' +p50719 +tp50720 +a(g50717 +g50719 +S'a' +p50721 +tp50722 +a(g50719 +g50721 +S'fleck' +p50723 +tp50724 +a(g50721 +g50723 +S'of' +p50725 +tp50726 +a(g50723 +g50725 +S'actual' +p50727 +tp50728 +a(g50725 +g50727 +S'gold' +p50729 +tp50730 +a(g50727 +g50729 +S'be' +p50731 +tp50732 +a(g50729 +g50731 +S'seen.' +p50733 +tp50734 +a(g50731 +g50733 +S'owing' +p50735 +tp50736 +a(g50733 +g50735 +S'to' +p50737 +tp50738 +a(g50735 +g50737 +S'changes' +p50739 +tp50740 +a(g50737 +g50739 +S'in' +p50741 +tp50742 +a(g50739 +g50741 +S'surface' +p50743 +tp50744 +a(g50741 +g50743 +S'gloss,' +p50745 +tp50746 +a(g50743 +g50745 +S'in' +p50747 +tp50748 +a(g50745 +g50747 +S'certain' +p50749 +tp50750 +a(g50747 +g50749 +S'reflected' +p50751 +tp50752 +a(g50749 +g50751 +S'light' +p50753 +tp50754 +a(g50751 +g50753 +S'the' +p50755 +tp50756 +a(g50753 +g50755 +S'evanescent' +p50757 +tp50758 +a(g50755 +g50757 +S'design' +p50759 +tp50760 +a(g50757 +g50759 +S'can' +p50761 +tp50762 +a(g50759 +g50761 +S'be' +p50763 +tp50764 +a(g50761 +g50763 +S'detected.' +p50765 +tp50766 +a(g50763 +g50765 +S'a' +p50767 +tp50768 +a(g50765 +g50767 +S'residue' +p50769 +tp50770 +a(g50767 +g50769 +S'of' +p50771 +tp50772 +a(g50769 +g50771 +S'the' +p50773 +tp50774 +a(g50771 +g50773 +S'adhesive' +p50775 +tp50776 +a(g50773 +g50775 +S'of' +p50777 +tp50778 +a(g50775 +g50777 +S'the' +p50779 +tp50780 +a(g50777 +g50779 +S'lost' +p50781 +tp50782 +a(g50779 +g50781 +S'gold' +p50783 +tp50784 +a(g50781 +g50783 +S'painting' +p50785 +tp50786 +a(g50783 +g50785 +S'has' +p50787 +tp50788 +a(g50785 +g50787 +S'remained' +p50789 +tp50790 +a(g50787 +g50789 +S'on' +p50791 +tp50792 +a(g50789 +g50791 +S'the' +p50793 +tp50794 +a(g50791 +g50793 +S'glossy' +p50795 +tp50796 +a(g50793 +g50795 +S'surface' +p50797 +tp50798 +a(g50795 +g50797 +S'of' +p50799 +tp50800 +a(g50797 +g50799 +S'the' +p50801 +tp50802 +a(g50799 +g50801 +S'glaze.' +p50803 +tp50804 +a(g50801 +g50803 +S'it' +p50805 +tp50806 +a(g50803 +g50805 +S'is' +p50807 +tp50808 +a(g50805 +g50807 +S'possible' +p50809 +tp50810 +a(g50807 +g50809 +S'to' +p50811 +tp50812 +a(g50809 +g50811 +S'make' +p50813 +tp50814 +a(g50811 +g50813 +S'out' +p50815 +tp50816 +a(g50813 +g50815 +S'floral' +p50817 +tp50818 +a(g50815 +g50817 +S'scrolls,' +p50819 +tp50820 +a(g50817 +g50819 +S'a' +p50821 +tp50822 +a(g50819 +g50821 +S'scroll' +p50823 +tp50824 +a(g50821 +g50823 +S'band' +p50825 +tp50826 +a(g50823 +g50825 +S'at' +p50827 +tp50828 +a(g50825 +g50827 +S'the' +p50829 +tp50830 +a(g50827 +g50829 +S'base,' +p50831 +tp50832 +a(g50829 +g50831 +S'lotus' +p50833 +tp50834 +a(g50831 +g50833 +S'and' +p50835 +tp50836 +a(g50833 +g50835 +S'water' +p50837 +tp50838 +a(g50835 +g50837 +S'plants,' +p50839 +tp50840 +a(g50837 +g50839 +S'and' +p50841 +tp50842 +a(g50839 +g50841 +S'a' +p50843 +tp50844 +a(g50841 +g50843 +S'starlike' +p50845 +tp50846 +a(g50843 +g50845 +S'band.' +p50847 +tp50848 +a(g50845 +g50847 +S'gilding' +p50849 +tp50850 +a(g50847 +g50849 +S'is' +p50851 +tp50852 +a(g50849 +g50851 +S'a' +p50853 +tp50854 +a(g50851 +g50853 +S'frequent' +p50855 +tp50856 +a(g50853 +g50855 +S'addition' +p50857 +tp50858 +a(g50855 +g50857 +S'to' +p50859 +tp50860 +a(g50857 +g50859 +S'the' +p50861 +tp50862 +a(g50859 +g50861 +S'surface' +p50863 +tp50864 +a(g50861 +g50863 +S'of' +p50865 +tp50866 +a(g50863 +g50865 +S'porcelains' +p50867 +tp50868 +a(g50865 +g50867 +S'in' +p50869 +tp50870 +a(g50867 +g50869 +S'the' +p50871 +tp50872 +a(g50869 +g50871 +S'ming' +p50873 +tp50874 +a(g50871 +g50873 +S'and' +p50875 +tp50876 +a(g50873 +g50875 +S'qing' +p50877 +tp50878 +a(g50875 +g50877 +S'periods,' +p50879 +tp50880 +a(g50877 +g50879 +S'either' +p50881 +tp50882 +a(g50879 +g50881 +S'alone,' +p50883 +tp50884 +a(g50881 +g50883 +S'as' +p50885 +tp50886 +a(g50883 +g50885 +S'in' +p50887 +tp50888 +a(g50885 +g50887 +S'this' +p50889 +tp50890 +a(g50887 +g50889 +S'ming' +p50891 +tp50892 +a(g50889 +g50891 +S'example,' +p50893 +tp50894 +a(g50891 +g50893 +S'or' +p50895 +tp50896 +a(g50893 +g50895 +S'in' +p50897 +tp50898 +a(g50895 +g50897 +S'combination' +p50899 +tp50900 +a(g50897 +g50899 +S'with' +p50901 +tp50902 +a(g50899 +g50901 +S'low-fired' +p50903 +tp50904 +a(g50901 +g50903 +S'lead' +p50905 +tp50906 +a(g50903 +g50905 +S'enamels' +p50907 +tp50908 +a(g50905 +g50907 +S'on' +p50909 +tp50910 +a(g50907 +g50909 +S'single' +p50911 +tp50912 +a(g50909 +g50911 +S'colored' +p50913 +tp50914 +a(g50911 +g50913 +S'glazes,' +p50915 +tp50916 +a(g50913 +g50915 +S'or' +p50917 +tp50918 +a(g50915 +g50917 +S'with' +p50919 +tp50920 +a(g50917 +g50919 +S'the' +p50921 +tp50922 +a(g50919 +g50921 +S'it' +p50923 +tp50924 +a(g50921 +g50923 +S'is' +p50925 +tp50926 +a(g50923 +g50925 +S'interesting' +p50927 +tp50928 +a(g50925 +g50927 +S'to' +p50929 +tp50930 +a(g50927 +g50929 +S'speculate' +p50931 +tp50932 +a(g50929 +g50931 +S'on' +p50933 +tp50934 +a(g50931 +g50933 +S'the' +p50935 +tp50936 +a(g50933 +g50935 +S'possible' +p50937 +tp50938 +a(g50935 +g50937 +S'relationship' +p50939 +tp50940 +a(g50937 +g50939 +S'of' +p50941 +tp50942 +a(g50939 +g50941 +S'this' +p50943 +tp50944 +a(g50941 +g50943 +S'vase' +p50945 +tp50946 +a(g50943 +g50945 +S'to' +p50947 +tp50948 +a(g50945 +g50947 +S'an' +p50949 +tp50950 +a(g50947 +g50949 +S'almost' +p50951 +tp50952 +a(g50949 +g50951 +S'identical' +p50953 +tp50954 +a(g50951 +g50953 +S'vase' +p50955 +tp50956 +a(g50953 +g50955 +S'of' +p50957 +tp50958 +a(g50955 +g50957 +S'impeccable' +p50959 +tp50960 +a(g50957 +g50959 +S'provenance' +p50961 +tp50962 +a(g50959 +g50961 +S'is' +p50963 +tp50964 +a(g50961 +g50963 +S'in' +p50965 +tp50966 +a(g50963 +g50965 +S'the' +p50967 +tp50968 +a(g50965 +g50967 +S'baltimore' +p50969 +tp50970 +a(g50967 +g50969 +S'museum' +p50971 +tp50972 +a(g50969 +g50971 +S'of' +p50973 +tp50974 +a(g50971 +g50973 +S'art.' +p50975 +tp50976 +a(g50973 +g50975 +S'it' +p50977 +tp50978 +a(g50975 +g50977 +S'was' +p50979 +tp50980 +a(g50977 +g50979 +S'formerly' +p50981 +tp50982 +a(g50979 +g50981 +S'in' +p50983 +tp50984 +a(g50981 +g50983 +S'the' +p50985 +tp50986 +a(g50983 +g50985 +S'collections' +p50987 +tp50988 +a(g50985 +g50987 +S'of' +p50989 +tp50990 +a(g50987 +g50989 +S'william' +p50991 +tp50992 +a(g50989 +g50991 +S'h.' +p50993 +tp50994 +a(g50991 +g50993 +S'whitridge,' +p50995 +tp50996 +a(g50993 +g50995 +S'j.' +p50997 +tp50998 +a(g50995 +g50997 +S'p.' +p50999 +tp51000 +a(g50997 +g50999 +S'morgan,' +p51001 +tp51002 +a(g50999 +g51001 +S'and' +p51003 +tp51004 +a(g51001 +g51003 +S'marsden' +p51005 +tp51006 +a(g51003 +g51005 +S'perry.' +p51007 +tp51008 +a(g51005 +g51007 +S'there' +p51009 +tp51010 +a(g51007 +g51009 +S'are' +p51011 +tp51012 +a(g51009 +g51011 +S'examples' +p51013 +tp51014 +a(g51011 +g51013 +S'of' +p51015 +tp51016 +a(g51013 +g51015 +S'this' +p51017 +tp51018 +a(g51015 +g51017 +S'same' +p51019 +tp51020 +a(g51017 +g51019 +S'general' +p51021 +tp51022 +a(g51019 +g51021 +S'shape' +p51023 +tp51024 +a(g51021 +g51023 +S'but' +p51025 +tp51026 +a(g51023 +g51025 +S'of' +p51027 +tp51028 +a(g51025 +g51027 +S'heavier' +p51029 +tp51030 +a(g51027 +g51029 +S'appearance' +p51031 +tp51032 +a(g51029 +g51031 +S'dating' +p51033 +tp51034 +a(g51031 +g51033 +S'from' +p51035 +tp51036 +a(g51033 +g51035 +S'as' +p51037 +tp51038 +a(g51035 +g51037 +S'early' +p51039 +tp51040 +a(g51037 +g51039 +S'as' +p51041 +tp51042 +a(g51039 +g51041 +S'the' +p51043 +tp51044 +a(g51041 +g51043 +S'fifteenth' +p51045 +tp51046 +a(g51043 +g51045 +S'century.' +p51047 +tp51048 +a(g51045 +g51047 +S'wares' +p51049 +tp51050 +a(g51047 +g51049 +S'of' +p51051 +tp51052 +a(g51049 +g51051 +S'this' +p51053 +tp51054 +a(g51051 +g51053 +S'type' +p51055 +tp51056 +a(g51053 +g51055 +S'are' +p51057 +tp51058 +a(g51055 +g51057 +S'thought' +p51059 +tp51060 +a(g51057 +g51059 +S'to' +p51061 +tp51062 +a(g51059 +g51061 +S'be' +p51063 +tp51064 +a(g51061 +g51063 +S'products' +p51065 +tp51066 +a(g51063 +g51065 +S'of' +p51067 +tp51068 +a(g51065 +g51067 +S'unofficial' +p51069 +tp51070 +a(g51067 +g51069 +S'kilns,' +p51071 +tp51072 +a(g51069 +g51071 +S'which' +p51073 +tp51074 +a(g51071 +g51073 +S'assumed' +p51075 +tp51076 +a(g51073 +g51075 +S'growing' +p51077 +tp51078 +a(g51075 +g51077 +S'importance' +p51079 +tp51080 +a(g51077 +g51079 +S'in' +p51081 +tp51082 +a(g51079 +g51081 +S'the' +p51083 +tp51084 +a(g51081 +g51083 +S'last' +p51085 +tp51086 +a(g51083 +g51085 +S'part' +p51087 +tp51088 +a(g51085 +g51087 +S'of' +p51089 +tp51090 +a(g51087 +g51089 +S'the' +p51091 +tp51092 +a(g51089 +g51091 +S'ming' +p51093 +tp51094 +a(g51091 +g51093 +S'dynasty' +p51095 +tp51096 +a(g51093 +g51095 +S'as' +p51097 +tp51098 +a(g51095 +g51097 +S'a' +p51099 +tp51100 +a(g51097 +g51099 +S'result' +p51101 +tp51102 +a(g51099 +g51101 +S'of' +p51103 +tp51104 +a(g51101 +g51103 +S'weak' +p51105 +tp51106 +a(g51103 +g51105 +S'imperial' +p51107 +tp51108 +a(g51105 +g51107 +S'patronage.' +p51109 +tp51110 +a(g51107 +g51109 +S'(text' +p51111 +tp51112 +a(g51109 +g51111 +S'by' +p51113 +tp51114 +a(g51111 +g51113 +S'josephine' +p51115 +tp51116 +a(g51113 +g51115 +S'hadley' +p51117 +tp51118 +a(g51115 +g51117 +S'knapp,' +p51119 +tp51120 +a(g51117 +g51119 +S'published' +p51121 +tp51122 +a(g51119 +g51121 +S'in' +p51123 +tp51124 +a(g51121 +g51123 +S'the' +p51125 +tp51126 +a(g51123 +g51125 +S'nga' +p51127 +tp51128 +a(g51125 +g51127 +S'systematic' +p51129 +tp51130 +a(g51127 +g51129 +S'catalogue:' +p51131 +tp51132 +a(g51129 +g51131 +S'notes' +p51133 +tp51134 +a(g51131 +g51133 +S'' +p51137 +tp51138 +a(g51135 +g51137 +S'' +p51141 +tp51142 +a(g51139 +g51141 +S'' +p51145 +tp51146 +a(g51143 +g51145 +S'' +p51149 +tp51150 +a(g51147 +g51149 +S'this' +p51151 +tp51152 +a(g51149 +g51151 +S'striking' +p51153 +tp51154 +a(g51151 +g51153 +S'pear-shaped' +p51155 +tp51156 +a(g51153 +g51155 +S'vase' +p51157 +tp51158 +a(g51155 +g51157 +S'is' +p51159 +tp51160 +a(g51157 +g51159 +S'one' +p51161 +tp51162 +a(g51159 +g51161 +S'of' +p51163 +tp51164 +a(g51161 +g51163 +S'the' +p51165 +tp51166 +a(g51163 +g51165 +S'most' +p51167 +tp51168 +a(g51165 +g51167 +S'beautiful' +p51169 +tp51170 +a(g51167 +g51169 +S'apple-green' +p51171 +tp51172 +a(g51169 +g51171 +S'vessels' +p51173 +tp51174 +a(g51171 +g51173 +S'in' +p51175 +tp51176 +a(g51173 +g51175 +S'the' +p51177 +tp51178 +a(g51175 +g51177 +S'national' +p51179 +tp51180 +a(g51177 +g51179 +S'gallery' +p51181 +tp51182 +a(g51179 +g51181 +S'collection,' +p51183 +tp51184 +a(g51181 +g51183 +S'despite' +p51185 +tp51186 +a(g51183 +g51185 +S'the' +p51187 +tp51188 +a(g51185 +g51187 +S'pinhole' +p51189 +tp51190 +a(g51187 +g51189 +S'on' +p51191 +tp51192 +a(g51189 +g51191 +S'its' +p51193 +tp51194 +a(g51191 +g51193 +S'neck.' +p51195 +tp51196 +a(g51193 +g51195 +S'its' +p51197 +tp51198 +a(g51195 +g51197 +S'graceful' +p51199 +tp51200 +a(g51197 +g51199 +S'profile' +p51201 +tp51202 +a(g51199 +g51201 +S'coupled' +p51203 +tp51204 +a(g51201 +g51203 +S'with' +p51205 +tp51206 +a(g51203 +g51205 +S'its' +p51207 +tp51208 +a(g51205 +g51207 +S'brilliant' +p51209 +tp51210 +a(g51207 +g51209 +S'emerald' +p51211 +tp51212 +a(g51209 +g51211 +S'green' +p51213 +tp51214 +a(g51211 +g51213 +S'surface' +p51215 +tp51216 +a(g51213 +g51215 +S'distinguish' +p51217 +tp51218 +a(g51215 +g51217 +S'it' +p51219 +tp51220 +a(g51217 +g51219 +S'from' +p51221 +tp51222 +a(g51219 +g51221 +S'the' +p51223 +tp51224 +a(g51221 +g51223 +S'two' +p51225 +tp51226 +a(g51223 +g51225 +S'more' +p51227 +tp51228 +a(g51225 +g51227 +S'squared-off' +p51229 +tp51230 +a(g51227 +g51229 +S'and' +p51231 +tp51232 +a(g51229 +g51231 +S'pale' +p51233 +tp51234 +a(g51231 +g51233 +S'bottle' +p51235 +tp51236 +a(g51233 +g51235 +S'vases' +p51237 +tp51238 +a(g51235 +g51237 +S'in' +p51239 +tp51240 +a(g51237 +g51239 +S'the' +p51241 +tp51242 +a(g51239 +g51241 +S'collection' +p51243 +tp51244 +a(g51241 +g51243 +S'(' +p51245 +tp51246 +a(g51243 +g51245 +S'this' +p51247 +tp51248 +a(g51245 +g51247 +S'particular' +p51249 +tp51250 +a(g51247 +g51249 +S'shape,' +p51251 +tp51252 +a(g51249 +g51251 +S'which' +p51253 +tp51254 +a(g51251 +g51253 +S'the' +p51255 +tp51256 +a(g51253 +g51255 +S'chinese' +p51257 +tp51258 +a(g51255 +g51257 +S'call' +p51259 +tp51260 +a(g51257 +g51259 +S'"gall-bladder' +p51261 +tp51262 +a(g51259 +g51261 +S'shaped"' +p51263 +tp51264 +a(g51261 +g51263 +S'(text' +p51265 +tp51266 +a(g51263 +g51265 +S'by' +p51267 +tp51268 +a(g51265 +g51267 +S'virginia' +p51269 +tp51270 +a(g51267 +g51269 +S'bower,' +p51271 +tp51272 +a(g51269 +g51271 +S'published' +p51273 +tp51274 +a(g51271 +g51273 +S'in' +p51275 +tp51276 +a(g51273 +g51275 +S'the' +p51277 +tp51278 +a(g51275 +g51277 +S'nga' +p51279 +tp51280 +a(g51277 +g51279 +S'systematic' +p51281 +tp51282 +a(g51279 +g51281 +S'catalogue:' +p51283 +tp51284 +a(g51281 +g51283 +S'notes' +p51291 +tp51292 +a(g51289 +g51291 +S'' +p51293 +tp51294 +a(g51291 +g51293 +S'' +p51297 +tp51298 +a(g51295 +g51297 +S'' +p51301 +tp51302 +a(g51299 +g51301 +S'among' +p51303 +tp51304 +a(g51301 +g51303 +S'published' +p51305 +tp51306 +a(g51303 +g51305 +S'apple-green' +p51307 +tp51308 +a(g51305 +g51307 +S'wares,' +p51309 +tp51310 +a(g51307 +g51309 +S'no' +p51311 +tp51312 +a(g51309 +g51311 +S'vessel' +p51313 +tp51314 +a(g51311 +g51313 +S'very' +p51315 +tp51316 +a(g51313 +g51315 +S'similar' +p51317 +tp51318 +a(g51315 +g51317 +S'to' +p51319 +tp51320 +a(g51317 +g51319 +S'this' +p51321 +tp51322 +a(g51319 +g51321 +S'vase' +p51323 +tp51324 +a(g51321 +g51323 +S'has' +p51325 +tp51326 +a(g51323 +g51325 +S'been' +p51327 +tp51328 +a(g51325 +g51327 +S'found.' +p51329 +tp51330 +a(g51327 +g51329 +S'a' +p51331 +tp51332 +a(g51329 +g51331 +S'more' +p51333 +tp51334 +a(g51331 +g51333 +S'pear-shaped' +p51335 +tp51336 +a(g51333 +g51335 +S'vase,' +p51337 +tp51338 +a(g51335 +g51337 +S'attributed' +p51339 +tp51340 +a(g51337 +g51339 +S'to' +p51341 +tp51342 +a(g51339 +g51341 +S'the' +p51343 +tp51344 +a(g51341 +g51343 +S'eighteenth' +p51345 +tp51346 +a(g51343 +g51345 +S'century,' +p51347 +tp51348 +a(g51345 +g51347 +S'might' +p51349 +tp51350 +a(g51347 +g51349 +S'be' +p51351 +tp51352 +a(g51349 +g51351 +S'considered' +p51353 +tp51354 +a(g51351 +g51353 +S'a' +p51355 +tp51356 +a(g51353 +g51355 +S'comparison;' +p51357 +tp51358 +a(g51355 +g51357 +S'its' +p51359 +tp51360 +a(g51357 +g51359 +S'neck' +p51361 +tp51362 +a(g51359 +g51361 +S'is' +p51363 +tp51364 +a(g51361 +g51363 +S'quite' +p51365 +tp51366 +a(g51363 +g51365 +S'similar,' +p51367 +tp51368 +a(g51365 +g51367 +S'but' +p51369 +tp51370 +a(g51367 +g51369 +S'it' +p51371 +tp51372 +a(g51369 +g51371 +S'lacks' +p51373 +tp51374 +a(g51371 +g51373 +S'the' +p51375 +tp51376 +a(g51373 +g51375 +S'distinctive' +p51377 +tp51378 +a(g51375 +g51377 +S'raised' +p51379 +tp51380 +a(g51377 +g51379 +S'spreading' +p51381 +tp51382 +a(g51379 +g51381 +S'foot' +p51383 +tp51384 +a(g51381 +g51383 +S'and' +p51385 +tp51386 +a(g51383 +g51385 +S'stepped' +p51387 +tp51388 +a(g51385 +g51387 +S'base' +p51389 +tp51390 +a(g51387 +g51389 +S'seen' +p51391 +tp51392 +a(g51389 +g51391 +S'in' +p51393 +tp51394 +a(g51391 +g51393 +S'the' +p51395 +tp51396 +a(g51393 +g51395 +S'national' +p51397 +tp51398 +a(g51395 +g51397 +S'gallery' +p51399 +tp51400 +a(g51397 +g51399 +S'example.' +p51401 +tp51402 +a(g51399 +g51401 +S'the' +p51403 +tp51404 +a(g51401 +g51403 +S'shape' +p51405 +tp51406 +a(g51403 +g51405 +S'of' +p51407 +tp51408 +a(g51405 +g51407 +S'this' +p51409 +tp51410 +a(g51407 +g51409 +S'vase,' +p51411 +tp51412 +a(g51409 +g51411 +S'with' +p51413 +tp51414 +a(g51411 +g51413 +S'its' +p51415 +tp51416 +a(g51413 +g51415 +S'three' +p51417 +tp51418 +a(g51415 +g51417 +S'distinct' +p51419 +tp51420 +a(g51417 +g51419 +S'segments,' +p51421 +tp51422 +a(g51419 +g51421 +S'differs' +p51423 +tp51424 +a(g51421 +g51423 +S'from' +p51425 +tp51426 +a(g51423 +g51425 +S'the' +p51427 +tp51428 +a(g51425 +g51427 +S'fluid' +p51429 +tp51430 +a(g51427 +g51429 +S'and' +p51431 +tp51432 +a(g51429 +g51431 +S'elegant' +p51433 +tp51434 +a(g51431 +g51433 +S'forms' +p51435 +tp51436 +a(g51433 +g51435 +S'most' +p51437 +tp51438 +a(g51435 +g51437 +S'often' +p51439 +tp51440 +a(g51437 +g51439 +S'seen' +p51441 +tp51442 +a(g51439 +g51441 +S'in' +p51443 +tp51444 +a(g51441 +g51443 +S'kangxi-' +p51445 +tp51446 +a(g51443 +g51445 +S'and' +p51447 +tp51448 +a(g51445 +g51447 +S'yongzheng-period' +p51449 +tp51450 +a(g51447 +g51449 +S'monochromes' +p51451 +tp51452 +a(g51449 +g51451 +S'as' +p51453 +tp51454 +a(g51451 +g51453 +S'exemplified' +p51455 +tp51456 +a(g51453 +g51455 +S'by' +p51457 +tp51458 +a(g51455 +g51457 +S'those' +p51459 +tp51460 +a(g51457 +g51459 +S'so' +p51461 +tp51462 +a(g51459 +g51461 +S'marked' +p51463 +tp51464 +a(g51461 +g51463 +S'and/or' +p51465 +tp51466 +a(g51463 +g51465 +S'attributed' +p51467 +tp51468 +a(g51465 +g51467 +S'in' +p51469 +tp51470 +a(g51467 +g51469 +S'the' +p51471 +tp51472 +a(g51469 +g51471 +S'national' +p51473 +tp51474 +a(g51471 +g51473 +S'gallery' +p51475 +tp51476 +a(g51473 +g51475 +S'collection,' +p51477 +tp51478 +a(g51475 +g51477 +S'whether' +p51479 +tp51480 +a(g51477 +g51479 +S'delicate' +p51481 +tp51482 +a(g51479 +g51481 +S'peachbloom,' +p51483 +tp51484 +a(g51481 +g51483 +S'celadon,' +p51485 +tp51486 +a(g51483 +g51485 +S'pale' +p51487 +tp51488 +a(g51485 +g51487 +S'blue,' +p51489 +tp51490 +a(g51487 +g51489 +S'or' +p51491 +tp51492 +a(g51489 +g51491 +S'more' +p51493 +tp51494 +a(g51491 +g51493 +S'sturdy' +p51495 +tp51496 +a(g51493 +g51495 +S'oxblood' +p51497 +tp51498 +a(g51495 +g51497 +S'vases.' +p51499 +tp51500 +a(g51497 +g51499 +S'none' +p51501 +tp51502 +a(g51499 +g51501 +S'of' +p51503 +tp51504 +a(g51501 +g51503 +S'the' +p51505 +tp51506 +a(g51503 +g51505 +S'national' +p51507 +tp51508 +a(g51505 +g51507 +S"gallery's" +p51509 +tp51510 +a(g51507 +g51509 +S'vases' +p51511 +tp51512 +a(g51509 +g51511 +S'exhibits' +p51513 +tp51514 +a(g51511 +g51513 +S'this' +p51515 +tp51516 +a(g51513 +g51515 +S'characteristic.' +p51517 +tp51518 +a(g51515 +g51517 +S'indeed,' +p51519 +tp51520 +a(g51517 +g51519 +S'this' +p51521 +tp51522 +a(g51519 +g51521 +S'shape' +p51523 +tp51524 +a(g51521 +g51523 +S'seems' +p51525 +tp51526 +a(g51523 +g51525 +S'more' +p51527 +tp51528 +a(g51525 +g51527 +S'typical' +p51529 +tp51530 +a(g51527 +g51529 +S'of' +p51531 +tp51532 +a(g51529 +g51531 +S'those' +p51533 +tp51534 +a(g51531 +g51533 +S'seen' +p51535 +tp51536 +a(g51533 +g51535 +S'in' +p51537 +tp51538 +a(g51535 +g51537 +S'later' +p51539 +tp51540 +a(g51537 +g51539 +S'eighteenth-' +p51541 +tp51542 +a(g51539 +g51541 +S'and' +p51543 +tp51544 +a(g51541 +g51543 +S'nineteenth-century' +p51545 +tp51546 +a(g51543 +g51545 +S'chinese' +p51547 +tp51548 +a(g51545 +g51547 +S'ceramics,' +p51549 +tp51550 +a(g51547 +g51549 +S'which' +p51551 +tp51552 +a(g51549 +g51551 +S'accounts' +p51553 +tp51554 +a(g51551 +g51553 +S'for' +p51555 +tp51556 +a(g51553 +g51555 +S'its' +p51557 +tp51558 +a(g51555 +g51557 +S'dating.' +p51559 +tp51560 +a(g51557 +g51559 +S'(text' +p51561 +tp51562 +a(g51559 +g51561 +S'by' +p51563 +tp51564 +a(g51561 +g51563 +S'virginia' +p51565 +tp51566 +a(g51563 +g51565 +S'bower,' +p51567 +tp51568 +a(g51565 +g51567 +S'published' +p51569 +tp51570 +a(g51567 +g51569 +S'in' +p51571 +tp51572 +a(g51569 +g51571 +S'the' +p51573 +tp51574 +a(g51571 +g51573 +S'nga' +p51575 +tp51576 +a(g51573 +g51575 +S'systematic' +p51577 +tp51578 +a(g51575 +g51577 +S'catalogue:' +p51579 +tp51580 +a(g51577 +g51579 +S'notes' +p51587 +tp51588 +a(g51585 +g51587 +S'' +p51589 +tp51590 +a(g51587 +g51589 +S'' +p51593 +tp51594 +a(g51591 +g51593 +S'' +p51597 +tp51598 +a(g51595 +g51597 +S'' +p51601 +tp51602 +a(g51599 +g51601 +S'this' +p51603 +tp51604 +a(g51601 +g51603 +S'elegant' +p51605 +tp51606 +a(g51603 +g51605 +S'vessel' +p51607 +tp51608 +a(g51605 +g51607 +S'has' +p51609 +tp51610 +a(g51607 +g51609 +S'the' +p51611 +tp51612 +a(g51609 +g51611 +S'shape' +p51613 +tp51614 +a(g51611 +g51613 +S'of' +p51615 +tp51616 +a(g51613 +g51615 +S'a' +p51617 +tp51618 +a(g51615 +g51617 +S'buddhist' +p51619 +tp51620 +a(g51617 +g51619 +S"monk's" +p51621 +tp51622 +a(g51619 +g51621 +S'begging' +p51623 +tp51624 +a(g51621 +g51623 +S'bowl.' +p51625 +tp51626 +a(g51623 +g51625 +S'floral' +p51627 +tp51628 +a(g51625 +g51627 +S'decoration' +p51629 +tp51630 +a(g51627 +g51629 +S'is' +p51631 +tp51632 +a(g51629 +g51631 +S'pierced' +p51633 +tp51634 +a(g51631 +g51633 +S'through' +p51635 +tp51636 +a(g51633 +g51635 +S'the' +p51637 +tp51638 +a(g51635 +g51637 +S'body' +p51639 +tp51640 +a(g51637 +g51639 +S'in' +p51641 +tp51642 +a(g51639 +g51641 +S'the' +p51643 +tp51644 +a(g51641 +g51643 +S'so-called' +p51645 +tp51646 +a(g51643 +g51645 +S'"rice-grain"' +p51647 +tp51648 +a(g51645 +g51647 +S'technique.' +p51649 +tp51650 +a(g51647 +g51649 +S'the' +p51651 +tp51652 +a(g51649 +g51651 +S'perforations' +p51653 +tp51654 +a(g51651 +g51653 +S'in' +p51655 +tp51656 +a(g51653 +g51655 +S'the' +p51657 +tp51658 +a(g51655 +g51657 +S'body' +p51659 +tp51660 +a(g51657 +g51659 +S'are' +p51661 +tp51662 +a(g51659 +g51661 +S'filled' +p51663 +tp51664 +a(g51661 +g51663 +S'by' +p51665 +tp51666 +a(g51663 +g51665 +S'the' +p51667 +tp51668 +a(g51665 +g51667 +S'colorless' +p51669 +tp51670 +a(g51667 +g51669 +S'glaze.' +p51671 +tp51672 +a(g51669 +g51671 +S'incised' +p51673 +tp51674 +a(g51671 +g51673 +S'the' +p51675 +tp51676 +a(g51673 +g51675 +S'fabrication' +p51677 +tp51678 +a(g51675 +g51677 +S'technique' +p51679 +tp51680 +a(g51677 +g51679 +S'of' +p51681 +tp51682 +a(g51679 +g51681 +S'this' +p51683 +tp51684 +a(g51681 +g51683 +S'vessel' +p51685 +tp51686 +a(g51683 +g51685 +S'is' +p51687 +tp51688 +a(g51685 +g51687 +S'characteristic' +p51689 +tp51690 +a(g51687 +g51689 +S'of' +p51691 +tp51692 +a(g51689 +g51691 +S'the' +p51693 +tp51694 +a(g51691 +g51693 +S'finest' +p51695 +tp51696 +a(g51693 +g51695 +S'qianlong' +p51697 +tp51698 +a(g51695 +g51697 +S'period' +p51699 +tp51700 +a(g51697 +g51699 +S'"rice-grain"' +p51701 +tp51702 +a(g51699 +g51701 +S'pieces,' +p51703 +tp51704 +a(g51701 +g51703 +S'and' +p51705 +tp51706 +a(g51703 +g51705 +S'it' +p51707 +tp51708 +a(g51705 +g51707 +S'can' +p51709 +tp51710 +a(g51707 +g51709 +S'be' +p51711 +tp51712 +a(g51709 +g51711 +S'tentatively' +p51713 +tp51714 +a(g51711 +g51713 +S'dated' +p51715 +tp51716 +a(g51713 +g51715 +S'to' +p51717 +tp51718 +a(g51715 +g51717 +S'this' +p51719 +tp51720 +a(g51717 +g51719 +S'period' +p51721 +tp51722 +a(g51719 +g51721 +S'by' +p51723 +tp51724 +a(g51721 +g51723 +S'comparison' +p51725 +tp51726 +a(g51723 +g51725 +S'with' +p51727 +tp51728 +a(g51725 +g51727 +S'marked' +p51729 +tp51730 +a(g51727 +g51729 +S'qianlong' +p51731 +tp51732 +a(g51729 +g51731 +S'examples.' +p51733 +tp51734 +a(g51731 +g51733 +S'(text' +p51735 +tp51736 +a(g51733 +g51735 +S'by' +p51737 +tp51738 +a(g51735 +g51737 +S'stephen' +p51739 +tp51740 +a(g51737 +g51739 +S'little,' +p51741 +tp51742 +a(g51739 +g51741 +S'published' +p51743 +tp51744 +a(g51741 +g51743 +S'in' +p51745 +tp51746 +a(g51743 +g51745 +S'the' +p51747 +tp51748 +a(g51745 +g51747 +S'nga' +p51749 +tp51750 +a(g51747 +g51749 +S'systematic' +p51751 +tp51752 +a(g51749 +g51751 +S'catalogue:' +p51753 +tp51754 +a(g51751 +g51753 +S'notes' +p51761 +tp51762 +a(g51759 +g51761 +S'' +p51763 +tp51764 +a(g51761 +g51763 +S'' +p51767 +tp51768 +a(g51765 +g51767 +S'the' +p51769 +tp51770 +a(g51767 +g51769 +S'hexagonal' +p51771 +tp51772 +a(g51769 +g51771 +S'wine' +p51773 +tp51774 +a(g51771 +g51773 +S'ewer' +p51775 +tp51776 +a(g51773 +g51775 +S'employs' +p51777 +tp51778 +a(g51775 +g51777 +S'the' +p51779 +tp51780 +a(g51777 +g51779 +S'colors' +p51781 +tp51782 +a(g51779 +g51781 +S'yellow,' +p51783 +tp51784 +a(g51781 +g51783 +S'aubergine,' +p51785 +tp51786 +a(g51783 +g51785 +S'black,' +p51787 +tp51788 +a(g51785 +g51787 +S'and' +p51789 +tp51790 +a(g51787 +g51789 +S'two' +p51791 +tp51792 +a(g51789 +g51791 +S'shades' +p51793 +tp51794 +a(g51791 +g51793 +S'of' +p51795 +tp51796 +a(g51793 +g51795 +S'green.' +p51797 +tp51798 +a(g51795 +g51797 +S'the' +p51799 +tp51800 +a(g51797 +g51799 +S'primary' +p51801 +tp51802 +a(g51799 +g51801 +S'motifs' +p51803 +tp51804 +a(g51801 +g51803 +S'in' +p51805 +tp51806 +a(g51803 +g51805 +S'the' +p51807 +tp51808 +a(g51805 +g51807 +S'decoration' +p51809 +tp51810 +a(g51807 +g51809 +S'are' +p51811 +tp51812 +a(g51809 +g51811 +S'the' +p51813 +tp51814 +a(g51811 +g51813 +S'large' +p51815 +tp51816 +a(g51813 +g51815 +S'(text' +p51817 +tp51818 +a(g51815 +g51817 +S'by' +p51819 +tp51820 +a(g51817 +g51819 +S'stephen' +p51821 +tp51822 +a(g51819 +g51821 +S'little,' +p51823 +tp51824 +a(g51821 +g51823 +S'published' +p51825 +tp51826 +a(g51823 +g51825 +S'in' +p51827 +tp51828 +a(g51825 +g51827 +S'the' +p51829 +tp51830 +a(g51827 +g51829 +S'nga' +p51831 +tp51832 +a(g51829 +g51831 +S'systematic' +p51833 +tp51834 +a(g51831 +g51833 +S'catalogue:' +p51835 +tp51836 +a(g51833 +g51835 +S'in' +p51837 +tp51838 +a(g51835 +g51837 +S'the' +p51839 +tp51840 +a(g51837 +g51839 +S'william' +p51841 +tp51842 +a(g51839 +g51841 +S'and' +p51843 +tp51844 +a(g51841 +g51843 +S'mary' +p51845 +tp51846 +a(g51843 +g51845 +S'period,' +p51847 +tp51848 +a(g51845 +g51847 +S'low' +p51849 +tp51850 +a(g51847 +g51849 +S'chests' +p51851 +tp51852 +a(g51849 +g51851 +S'on' +p51853 +tp51854 +a(g51851 +g51853 +S'legs' +p51855 +tp51856 +a(g51853 +g51855 +S'were' +p51857 +tp51858 +a(g51855 +g51857 +S'often' +p51859 +tp51860 +a(g51857 +g51859 +S'used' +p51861 +tp51862 +a(g51859 +g51861 +S'as' +p51863 +tp51864 +a(g51861 +g51863 +S'supports' +p51865 +tp51866 +a(g51863 +g51865 +S'for' +p51867 +tp51868 +a(g51865 +g51867 +S'high' +p51869 +tp51870 +a(g51867 +g51869 +S'chests.' +p51871 +tp51872 +a(g51869 +g51871 +S'in' +p51873 +tp51874 +a(g51871 +g51873 +S'eighteenth-century' +p51875 +tp51876 +a(g51873 +g51875 +S'america,' +p51877 +tp51878 +a(g51875 +g51877 +S'they' +p51879 +tp51880 +a(g51877 +g51879 +S'were' +p51881 +tp51882 +a(g51879 +g51881 +S'frequently' +p51883 +tp51884 +a(g51881 +g51883 +S'made' +p51885 +tp51886 +a(g51883 +g51885 +S'as' +p51887 +tp51888 +a(g51885 +g51887 +S'separate' +p51889 +tp51890 +a(g51887 +g51889 +S'pieces,' +p51891 +tp51892 +a(g51889 +g51891 +S'and' +p51893 +tp51894 +a(g51891 +g51893 +S'the' +p51895 +tp51896 +a(g51893 +g51895 +S'term' +p51897 +tp51898 +a(g51895 +g51897 +S'"lowboy"' +p51899 +tp51900 +a(g51897 +g51899 +S'became' +p51901 +tp51902 +a(g51899 +g51901 +S'part' +p51903 +tp51904 +a(g51901 +g51903 +S'of' +p51905 +tp51906 +a(g51903 +g51905 +S'popular' +p51907 +tp51908 +a(g51905 +g51907 +S'terminology.' +p51909 +tp51910 +a(g51907 +g51909 +S'this' +p51911 +tp51912 +a(g51909 +g51911 +S'lowboy,' +p51913 +tp51914 +a(g51911 +g51913 +S'made' +p51915 +tp51916 +a(g51913 +g51915 +S'by' +p51917 +tp51918 +a(g51915 +g51917 +S'william' +p51919 +tp51920 +a(g51917 +g51919 +S'savery,' +p51921 +tp51922 +a(g51919 +g51921 +S'the' +p51923 +tp51924 +a(g51921 +g51923 +S'philadelphia' +p51925 +tp51926 +a(g51923 +g51925 +S'cabinetmaker,' +p51927 +tp51928 +a(g51925 +g51927 +S'is' +p51929 +tp51930 +a(g51927 +g51929 +S'a' +p51931 +tp51932 +a(g51929 +g51931 +S'companion' +p51933 +tp51934 +a(g51931 +g51933 +S'piece' +p51935 +tp51936 +a(g51933 +g51935 +S'to' +p51937 +tp51938 +a(g51935 +g51937 +S'the' +p51939 +tp51940 +a(g51937 +g51939 +S'highboy' +p51941 +tp51942 +a(g51939 +g51941 +S'seen' +p51943 +tp51944 +a(g51941 +g51943 +S'in' +p51945 +tp51946 +a(g51943 +g51945 +S'the' +p51947 +tp51948 +a(g51945 +g51947 +S'previous' +p51949 +tp51950 +a(g51947 +g51949 +S'frame.' +p51951 +tp51952 +a(g51949 +g51951 +S'like' +p51953 +tp51954 +a(g51951 +g51953 +S'the' +p51955 +tp51956 +a(g51953 +g51955 +S'highboy,' +p51957 +tp51958 +a(g51955 +g51957 +S'this' +p51959 +tp51960 +a(g51957 +g51959 +S'piece' +p51961 +tp51962 +a(g51959 +g51961 +S'has' +p51963 +tp51964 +a(g51961 +g51963 +S'shaped' +p51965 +tp51966 +a(g51963 +g51965 +S'skirting' +p51967 +tp51968 +a(g51965 +g51967 +S'with' +p51969 +tp51970 +a(g51967 +g51969 +S'rocaille,' +p51971 +tp51972 +a(g51969 +g51971 +S'or' +p51973 +tp51974 +a(g51971 +g51973 +S'shell-like,' +p51975 +tp51976 +a(g51973 +g51975 +S'carving.' +p51977 +tp51978 +a(g51975 +g51977 +S'the' +p51979 +tp51980 +a(g51977 +g51979 +S'cabriole' +p51981 +tp51982 +a(g51979 +g51981 +S'legs,' +p51983 +tp51984 +a(g51981 +g51983 +S'ending' +p51985 +tp51986 +a(g51983 +g51985 +S'in' +p51987 +tp51988 +a(g51985 +g51987 +S'bold' +p51989 +tp51990 +a(g51987 +g51989 +S'claw' +p51991 +tp51992 +a(g51989 +g51991 +S'and' +p51993 +tp51994 +a(g51991 +g51993 +S'ball' +p51995 +tp51996 +a(g51993 +g51995 +S'feet,' +p51997 +tp51998 +a(g51995 +g51997 +S'are' +p51999 +tp52000 +a(g51997 +g51999 +S'vigorously' +p52001 +tp52002 +a(g51999 +g52001 +S'carved' +p52003 +tp52004 +a(g52001 +g52003 +S'at' +p52005 +tp52006 +a(g52003 +g52005 +S'the' +p52007 +tp52008 +a(g52005 +g52007 +S'knee' +p52009 +tp52010 +a(g52007 +g52009 +S'in' +p52011 +tp52012 +a(g52009 +g52011 +S'an' +p52013 +tp52014 +a(g52011 +g52013 +S'acanthus' +p52015 +tp52016 +a(g52013 +g52015 +S'design.' +p52017 +tp52018 +a(g52015 +g52017 +S'the' +p52019 +tp52020 +a(g52017 +g52019 +S'quarter' +p52021 +tp52022 +a(g52019 +g52021 +S'columns' +p52023 +tp52024 +a(g52021 +g52023 +S'at' +p52025 +tp52026 +a(g52023 +g52025 +S'the' +p52027 +tp52028 +a(g52025 +g52027 +S'front' +p52029 +tp52030 +a(g52027 +g52029 +S'corners' +p52031 +tp52032 +a(g52029 +g52031 +S'are' +p52033 +tp52034 +a(g52031 +g52033 +S'ornamented' +p52035 +tp52036 +a(g52033 +g52035 +S'with' +p52037 +tp52038 +a(g52035 +g52037 +S'vine' +p52039 +tp52040 +a(g52037 +g52039 +S'carvings.' +p52041 +tp52042 +a(g52039 +g52041 +S'the' +p52043 +tp52044 +a(g52041 +g52043 +S'top' +p52045 +tp52046 +a(g52043 +g52045 +S'is' +p52047 +tp52048 +a(g52045 +g52047 +S'edged' +p52049 +tp52050 +a(g52047 +g52049 +S'with' +p52051 +tp52052 +a(g52049 +g52051 +S'a' +p52053 +tp52054 +a(g52051 +g52053 +S'variety' +p52055 +tp52056 +a(g52053 +g52055 +S'of' +p52057 +tp52058 +a(g52055 +g52057 +S'carved' +p52059 +tp52060 +a(g52057 +g52059 +S'borders:' +p52061 +tp52062 +a(g52059 +g52061 +S'a' +p52063 +tp52064 +a(g52061 +g52063 +S'greek' +p52065 +tp52066 +a(g52063 +g52065 +S'fret' +p52067 +tp52068 +a(g52065 +g52067 +S'design' +p52069 +tp52070 +a(g52067 +g52069 +S'lies' +p52071 +tp52072 +a(g52069 +g52071 +S'beneath' +p52073 +tp52074 +a(g52071 +g52073 +S'a' +p52075 +tp52076 +a(g52073 +g52075 +S'running' +p52077 +tp52078 +a(g52075 +g52077 +S'band' +p52079 +tp52080 +a(g52077 +g52079 +S'of' +p52081 +tp52082 +a(g52079 +g52081 +S'wavelike,' +p52083 +tp52084 +a(g52081 +g52083 +S'interlaced' +p52085 +tp52086 +a(g52083 +g52085 +S'curves' +p52087 +tp52088 +a(g52085 +g52087 +S'called' +p52089 +tp52090 +a(g52087 +g52089 +S'a' +p52091 +tp52092 +a(g52089 +g52091 +S'guilloche' +p52093 +tp52094 +a(g52091 +g52093 +S'border.' +p52095 +tp52096 +a(g52093 +g52095 +S'the' +p52097 +tp52098 +a(g52095 +g52097 +S'elaborately' +p52099 +tp52100 +a(g52097 +g52099 +S'carved' +p52101 +tp52102 +a(g52099 +g52101 +S'middle' +p52103 +tp52104 +a(g52101 +g52103 +S'drawer' +p52105 +tp52106 +a(g52103 +g52105 +S'dominates' +p52107 +tp52108 +a(g52105 +g52107 +S'the' +p52109 +tp52110 +a(g52107 +g52109 +S'decoration' +p52111 +tp52112 +a(g52109 +g52111 +S'and' +p52113 +tp52114 +a(g52111 +g52113 +S'brings' +p52115 +tp52116 +a(g52113 +g52115 +S'together' +p52117 +tp52118 +a(g52115 +g52117 +S'both' +p52119 +tp52120 +a(g52117 +g52119 +S'shell' +p52121 +tp52122 +a(g52119 +g52121 +S'and' +p52123 +tp52124 +a(g52121 +g52123 +S'foliate' +p52125 +tp52126 +a(g52123 +g52125 +S'motifs.' +p52127 +tp52128 +a(g52125 +g52127 +S'this' +p52129 +tp52130 +a(g52127 +g52129 +S'molded' +p52131 +tp52132 +a(g52129 +g52131 +S'cup' +p52133 +tp52134 +a(g52131 +g52133 +S'is' +p52135 +tp52136 +a(g52133 +g52135 +S'decorated' +p52137 +tp52138 +a(g52135 +g52137 +S'in' +p52139 +tp52140 +a(g52137 +g52139 +S'the' +p52141 +tp52142 +a(g52139 +g52141 +S'(text' +p52143 +tp52144 +a(g52141 +g52143 +S'by' +p52145 +tp52146 +a(g52143 +g52145 +S'stephen' +p52147 +tp52148 +a(g52145 +g52147 +S'little,' +p52149 +tp52150 +a(g52147 +g52149 +S'published' +p52151 +tp52152 +a(g52149 +g52151 +S'in' +p52153 +tp52154 +a(g52151 +g52153 +S'the' +p52155 +tp52156 +a(g52153 +g52155 +S'nga' +p52157 +tp52158 +a(g52155 +g52157 +S'systematic' +p52159 +tp52160 +a(g52157 +g52159 +S'catalogue:' +p52161 +tp52162 +a(g52159 +g52161 +S'mirror' +p52163 +tp52164 +a(g52161 +g52163 +S'glass' +p52165 +tp52166 +a(g52163 +g52165 +S'became' +p52167 +tp52168 +a(g52165 +g52167 +S'available' +p52169 +tp52170 +a(g52167 +g52169 +S'to' +p52171 +tp52172 +a(g52169 +g52171 +S'the' +p52173 +tp52174 +a(g52171 +g52173 +S'colonists' +p52175 +tp52176 +a(g52173 +g52175 +S'after' +p52177 +tp52178 +a(g52175 +g52177 +S'1673,' +p52179 +tp52180 +a(g52177 +g52179 +S'when' +p52181 +tp52182 +a(g52179 +g52181 +S'the' +p52183 +tp52184 +a(g52181 +g52183 +S'english' +p52185 +tp52186 +a(g52183 +g52185 +S'began' +p52187 +tp52188 +a(g52185 +g52187 +S'producing' +p52189 +tp52190 +a(g52187 +g52189 +S'it.' +p52191 +tp52192 +a(g52189 +g52191 +S'for' +p52193 +tp52194 +a(g52191 +g52193 +S'the' +p52195 +tp52196 +a(g52193 +g52195 +S'next' +p52197 +tp52198 +a(g52195 +g52197 +S'century,' +p52199 +tp52200 +a(g52197 +g52199 +S'english' +p52201 +tp52202 +a(g52199 +g52201 +S'mirror' +p52203 +tp52204 +a(g52201 +g52203 +S'glass' +p52205 +tp52206 +a(g52203 +g52205 +S'was' +p52207 +tp52208 +a(g52205 +g52207 +S'used' +p52209 +tp52210 +a(g52207 +g52209 +S'by' +p52211 +tp52212 +a(g52209 +g52211 +S'american' +p52213 +tp52214 +a(g52211 +g52213 +S'cabinetmakers.' +p52215 +tp52216 +a(g52213 +g52215 +S'at' +p52217 +tp52218 +a(g52215 +g52217 +S'first' +p52219 +tp52220 +a(g52217 +g52219 +S'it' +p52221 +tp52222 +a(g52219 +g52221 +S'was' +p52223 +tp52224 +a(g52221 +g52223 +S'made' +p52225 +tp52226 +a(g52223 +g52225 +S'in' +p52227 +tp52228 +a(g52225 +g52227 +S'small' +p52229 +tp52230 +a(g52227 +g52229 +S'sheets,' +p52231 +tp52232 +a(g52229 +g52231 +S'but' +p52233 +tp52234 +a(g52231 +g52233 +S'gradually,' +p52235 +tp52236 +a(g52233 +g52235 +S'the' +p52237 +tp52238 +a(g52235 +g52237 +S'size' +p52239 +tp52240 +a(g52237 +g52239 +S'was' +p52241 +tp52242 +a(g52239 +g52241 +S'increased.' +p52243 +tp52244 +a(g52241 +g52243 +S'frames' +p52245 +tp52246 +a(g52243 +g52245 +S'were' +p52247 +tp52248 +a(g52245 +g52247 +S'enlarged' +p52249 +tp52250 +a(g52247 +g52249 +S'to' +p52251 +tp52252 +a(g52249 +g52251 +S'accommodate' +p52253 +tp52254 +a(g52251 +g52253 +S'larger' +p52255 +tp52256 +a(g52253 +g52255 +S'mirror' +p52257 +tp52258 +a(g52255 +g52257 +S'panels,' +p52259 +tp52260 +a(g52257 +g52259 +S'and' +p52261 +tp52262 +a(g52259 +g52261 +S'their' +p52263 +tp52264 +a(g52261 +g52263 +S'design' +p52265 +tp52266 +a(g52263 +g52265 +S'became' +p52267 +tp52268 +a(g52265 +g52267 +S'more' +p52269 +tp52270 +a(g52267 +g52269 +S'elaborate.' +p52271 +tp52272 +a(g52269 +g52271 +S'the' +p52273 +tp52274 +a(g52271 +g52273 +S'preference' +p52275 +tp52276 +a(g52273 +g52275 +S'for' +p52277 +tp52278 +a(g52275 +g52277 +S'slim' +p52279 +tp52280 +a(g52277 +g52279 +S'forms' +p52281 +tp52282 +a(g52279 +g52281 +S'exhibited' +p52283 +tp52284 +a(g52281 +g52283 +S'in' +p52285 +tp52286 +a(g52283 +g52285 +S'other' +p52287 +tp52288 +a(g52285 +g52287 +S'queen' +p52289 +tp52290 +a(g52287 +g52289 +S'anne' +p52291 +tp52292 +a(g52289 +g52291 +S'furniture' +p52293 +tp52294 +a(g52291 +g52293 +S'can' +p52295 +tp52296 +a(g52293 +g52295 +S'be' +p52297 +tp52298 +a(g52295 +g52297 +S'observed' +p52299 +tp52300 +a(g52297 +g52299 +S'in' +p52301 +tp52302 +a(g52299 +g52301 +S'the' +p52303 +tp52304 +a(g52301 +g52303 +S'mirrors' +p52305 +tp52306 +a(g52303 +g52305 +S'of' +p52307 +tp52308 +a(g52305 +g52307 +S'the' +p52309 +tp52310 +a(g52307 +g52309 +S'period.' +p52311 +tp52312 +a(g52309 +g52311 +S'typically,' +p52313 +tp52314 +a(g52311 +g52313 +S'a' +p52315 +tp52316 +a(g52313 +g52315 +S'long' +p52317 +tp52318 +a(g52315 +g52317 +S'narrow' +p52319 +tp52320 +a(g52317 +g52319 +S'frame' +p52321 +tp52322 +a(g52319 +g52321 +S'contains' +p52323 +tp52324 +a(g52321 +g52323 +S'two' +p52325 +tp52326 +a(g52323 +g52325 +S'panels' +p52327 +tp52328 +a(g52325 +g52327 +S'of' +p52329 +tp52330 +a(g52327 +g52329 +S'glass,' +p52331 +tp52332 +a(g52329 +g52331 +S'as' +p52333 +tp52334 +a(g52331 +g52333 +S'in' +p52335 +tp52336 +a(g52333 +g52335 +S'this' +p52337 +tp52338 +a(g52335 +g52337 +S'tall' +p52339 +tp52340 +a(g52337 +g52339 +S'mirror,' +p52341 +tp52342 +a(g52339 +g52341 +S'which' +p52343 +tp52344 +a(g52341 +g52343 +S'bears' +p52345 +tp52346 +a(g52343 +g52345 +S'on' +p52347 +tp52348 +a(g52345 +g52347 +S'its' +p52349 +tp52350 +a(g52347 +g52349 +S'back' +p52351 +tp52352 +a(g52349 +g52351 +S'the' +p52353 +tp52354 +a(g52351 +g52353 +S'inscription' +p52355 +tp52356 +a(g52353 +g52355 +S'"trimbell,' +p52357 +tp52358 +a(g52355 +g52357 +S'1747,' +p52359 +tp52360 +a(g52357 +g52359 +S'phila."' +p52361 +tp52362 +a(g52359 +g52361 +S'an' +p52363 +tp52364 +a(g52361 +g52363 +S'elegant' +p52365 +tp52366 +a(g52363 +g52365 +S'effect' +p52367 +tp52368 +a(g52365 +g52367 +S'is' +p52369 +tp52370 +a(g52367 +g52369 +S'achieved' +p52371 +tp52372 +a(g52369 +g52371 +S'through' +p52373 +tp52374 +a(g52371 +g52373 +S'the' +p52375 +tp52376 +a(g52373 +g52375 +S'contrast' +p52377 +tp52378 +a(g52375 +g52377 +S'of' +p52379 +tp52380 +a(g52377 +g52379 +S'the' +p52381 +tp52382 +a(g52379 +g52381 +S'rich' +p52383 +tp52384 +a(g52381 +g52383 +S'wood' +p52385 +tp52386 +a(g52383 +g52385 +S'tones' +p52387 +tp52388 +a(g52385 +g52387 +S'of' +p52389 +tp52390 +a(g52387 +g52389 +S'the' +p52391 +tp52392 +a(g52389 +g52391 +S'frame' +p52393 +tp52394 +a(g52391 +g52393 +S'with' +p52395 +tp52396 +a(g52393 +g52395 +S'the' +p52397 +tp52398 +a(g52395 +g52397 +S'carved' +p52399 +tp52400 +a(g52397 +g52399 +S'gold-leaf' +p52401 +tp52402 +a(g52399 +g52401 +S'inner' +p52403 +tp52404 +a(g52401 +g52403 +S'border' +p52405 +tp52406 +a(g52403 +g52405 +S'and' +p52407 +tp52408 +a(g52405 +g52407 +S'gilded' +p52409 +tp52410 +a(g52407 +g52409 +S'medallion.' +p52411 +tp52412 +a(g52409 +g52411 +S'the' +p52413 +tp52414 +a(g52411 +g52413 +S'characteristic' +p52415 +tp52416 +a(g52413 +g52415 +S'queen' +p52417 +tp52418 +a(g52415 +g52417 +S'anne' +p52419 +tp52420 +a(g52417 +g52419 +S's-curve' +p52421 +tp52422 +a(g52419 +g52421 +S'is' +p52423 +tp52424 +a(g52421 +g52423 +S'seen' +p52425 +tp52426 +a(g52423 +g52425 +S'in' +p52427 +tp52428 +a(g52425 +g52427 +S'the' +p52429 +tp52430 +a(g52427 +g52429 +S'carved' +p52431 +tp52432 +a(g52429 +g52431 +S'scrolls' +p52433 +tp52434 +a(g52431 +g52433 +S'that' +p52435 +tp52436 +a(g52433 +g52435 +S'give' +p52437 +tp52438 +a(g52435 +g52437 +S'the' +p52439 +tp52440 +a(g52437 +g52439 +S'crest' +p52441 +tp52442 +a(g52439 +g52441 +S'its' +p52443 +tp52444 +a(g52441 +g52443 +S'ornamental' +p52445 +tp52446 +a(g52443 +g52445 +S'silhouette.' +p52447 +tp52448 +a(g52445 +g52447 +S'large,' +p52449 +tp52450 +a(g52447 +g52449 +S'important' +p52451 +tp52452 +a(g52449 +g52451 +S'case' +p52453 +tp52454 +a(g52451 +g52453 +S'pieces' +p52455 +tp52456 +a(g52453 +g52455 +S'were' +p52457 +tp52458 +a(g52455 +g52457 +S'featured' +p52459 +tp52460 +a(g52457 +g52459 +S'in' +p52461 +tp52462 +a(g52459 +g52461 +S'eighteenth-century' +p52463 +tp52464 +a(g52461 +g52463 +S'rooms.' +p52465 +tp52466 +a(g52463 +g52465 +S'this' +p52467 +tp52468 +a(g52465 +g52467 +S'imposing' +p52469 +tp52470 +a(g52467 +g52469 +S'secretary' +p52471 +tp52472 +a(g52469 +g52471 +S'is' +p52473 +tp52474 +a(g52471 +g52473 +S'a' +p52475 +tp52476 +a(g52473 +g52475 +S'typical' +p52477 +tp52478 +a(g52475 +g52477 +S'form' +p52479 +tp52480 +a(g52477 +g52479 +S'favored' +p52481 +tp52482 +a(g52479 +g52481 +S'in' +p52483 +tp52484 +a(g52481 +g52483 +S'the' +p52485 +tp52486 +a(g52483 +g52485 +S'chippendale' +p52487 +tp52488 +a(g52485 +g52487 +S'period.' +p52489 +tp52490 +a(g52487 +g52489 +S'rather' +p52491 +tp52492 +a(g52489 +g52491 +S'than' +p52493 +tp52494 +a(g52491 +g52493 +S'having' +p52495 +tp52496 +a(g52493 +g52495 +S'the' +p52497 +tp52498 +a(g52495 +g52497 +S'common' +p52499 +tp52500 +a(g52497 +g52499 +S'ball' +p52501 +tp52502 +a(g52499 +g52501 +S'and' +p52503 +tp52504 +a(g52501 +g52503 +S'claw' +p52505 +tp52506 +a(g52503 +g52505 +S'foot,' +p52507 +tp52508 +a(g52505 +g52507 +S'it' +p52509 +tp52510 +a(g52507 +g52509 +S'stands' +p52511 +tp52512 +a(g52509 +g52511 +S'upon' +p52513 +tp52514 +a(g52511 +g52513 +S'boldly' +p52515 +tp52516 +a(g52513 +g52515 +S'carved' +p52517 +tp52518 +a(g52515 +g52517 +S'ogee' +p52519 +tp52520 +a(g52517 +g52519 +S'feet,' +p52521 +tp52522 +a(g52519 +g52521 +S'that' +p52523 +tp52524 +a(g52521 +g52523 +S'is,' +p52525 +tp52526 +a(g52523 +g52525 +S'a' +p52527 +tp52528 +a(g52525 +g52527 +S'form' +p52529 +tp52530 +a(g52527 +g52529 +S'combining' +p52531 +tp52532 +a(g52529 +g52531 +S'both' +p52533 +tp52534 +a(g52531 +g52533 +S'convex' +p52535 +tp52536 +a(g52533 +g52535 +S'and' +p52537 +tp52538 +a(g52535 +g52537 +S'concave' +p52539 +tp52540 +a(g52537 +g52539 +S'curves.' +p52541 +tp52542 +a(g52539 +g52541 +S'the' +p52543 +tp52544 +a(g52541 +g52543 +S'vigor' +p52545 +tp52546 +a(g52543 +g52545 +S'of' +p52547 +tp52548 +a(g52545 +g52547 +S'the' +p52549 +tp52550 +a(g52547 +g52549 +S'carving' +p52551 +tp52552 +a(g52549 +g52551 +S'is' +p52553 +tp52554 +a(g52551 +g52553 +S'continued' +p52555 +tp52556 +a(g52553 +g52555 +S'in' +p52557 +tp52558 +a(g52555 +g52557 +S'the' +p52559 +tp52560 +a(g52557 +g52559 +S'block' +p52561 +tp52562 +a(g52559 +g52561 +S'form' +p52563 +tp52564 +a(g52561 +g52563 +S'of' +p52565 +tp52566 +a(g52563 +g52565 +S'the' +p52567 +tp52568 +a(g52565 +g52567 +S'base,' +p52569 +tp52570 +a(g52567 +g52569 +S'which' +p52571 +tp52572 +a(g52569 +g52571 +S'is' +p52573 +tp52574 +a(g52571 +g52573 +S'composed' +p52575 +tp52576 +a(g52573 +g52575 +S'of' +p52577 +tp52578 +a(g52575 +g52577 +S'alternating' +p52579 +tp52580 +a(g52577 +g52579 +S'recessed' +p52581 +tp52582 +a(g52579 +g52581 +S'and' +p52583 +tp52584 +a(g52581 +g52583 +S'projecting' +p52585 +tp52586 +a(g52583 +g52585 +S'panels' +p52587 +tp52588 +a(g52585 +g52587 +S'cut' +p52589 +tp52590 +a(g52587 +g52589 +S'from' +p52591 +tp52592 +a(g52589 +g52591 +S'solid' +p52593 +tp52594 +a(g52591 +g52593 +S'wood.' +p52595 +tp52596 +a(g52593 +g52595 +S'the' +p52597 +tp52598 +a(g52595 +g52597 +S'sculptural' +p52599 +tp52600 +a(g52597 +g52599 +S'quality' +p52601 +tp52602 +a(g52599 +g52601 +S'of' +p52603 +tp52604 +a(g52601 +g52603 +S'the' +p52605 +tp52606 +a(g52603 +g52605 +S'piece' +p52607 +tp52608 +a(g52605 +g52607 +S'is' +p52609 +tp52610 +a(g52607 +g52609 +S'further' +p52611 +tp52612 +a(g52609 +g52611 +S'emphasized' +p52613 +tp52614 +a(g52611 +g52613 +S'by' +p52615 +tp52616 +a(g52613 +g52615 +S'the' +p52617 +tp52618 +a(g52615 +g52617 +S'undulating' +p52619 +tp52620 +a(g52617 +g52619 +S'shapes' +p52621 +tp52622 +a(g52619 +g52621 +S'of' +p52623 +tp52624 +a(g52621 +g52623 +S'the' +p52625 +tp52626 +a(g52623 +g52625 +S'interior' +p52627 +tp52628 +a(g52625 +g52627 +S'compartments' +p52629 +tp52630 +a(g52627 +g52629 +S'and' +p52631 +tp52632 +a(g52629 +g52631 +S'drawers,' +p52633 +tp52634 +a(g52631 +g52633 +S'by' +p52635 +tp52636 +a(g52633 +g52635 +S'the' +p52637 +tp52638 +a(g52635 +g52637 +S'carved' +p52639 +tp52640 +a(g52637 +g52639 +S'panels' +p52641 +tp52642 +a(g52639 +g52641 +S'of' +p52643 +tp52644 +a(g52641 +g52643 +S'the' +p52645 +tp52646 +a(g52643 +g52645 +S'upper' +p52647 +tp52648 +a(g52645 +g52647 +S'doors,' +p52649 +tp52650 +a(g52647 +g52649 +S'and' +p52651 +tp52652 +a(g52649 +g52651 +S'by' +p52653 +tp52654 +a(g52651 +g52653 +S'the' +p52655 +tp52656 +a(g52653 +g52655 +S'molding' +p52657 +tp52658 +a(g52655 +g52657 +S'that' +p52659 +tp52660 +a(g52657 +g52659 +S'outlines' +p52661 +tp52662 +a(g52659 +g52661 +S'the' +p52663 +tp52664 +a(g52661 +g52663 +S'sweeping' +p52665 +tp52666 +a(g52663 +g52665 +S'curves' +p52667 +tp52668 +a(g52665 +g52667 +S'of' +p52669 +tp52670 +a(g52667 +g52669 +S'the' +p52671 +tp52672 +a(g52669 +g52671 +S'bonnet.' +p52673 +tp52674 +a(g52671 +g52673 +S'although' +p52675 +tp52676 +a(g52673 +g52675 +S'west' +p52677 +tp52678 +a(g52675 +g52677 +S'indian' +p52679 +tp52680 +a(g52677 +g52679 +S'mahogany' +p52681 +tp52682 +a(g52679 +g52681 +S'was' +p52683 +tp52684 +a(g52681 +g52683 +S'the' +p52685 +tp52686 +a(g52683 +g52685 +S'predominant' +p52687 +tp52688 +a(g52685 +g52687 +S'wood' +p52689 +tp52690 +a(g52687 +g52689 +S'of' +p52691 +tp52692 +a(g52689 +g52691 +S'the' +p52693 +tp52694 +a(g52691 +g52693 +S'chippendale' +p52695 +tp52696 +a(g52693 +g52695 +S'period,' +p52697 +tp52698 +a(g52695 +g52697 +S'cherry' +p52699 +tp52700 +a(g52697 +g52699 +S'and' +p52701 +tp52702 +a(g52699 +g52701 +S'maple' +p52703 +tp52704 +a(g52701 +g52703 +S'were' +p52705 +tp52706 +a(g52703 +g52705 +S'also' +p52707 +tp52708 +a(g52705 +g52707 +S'used.' +p52709 +tp52710 +a(g52707 +g52709 +S'here,' +p52711 +tp52712 +a(g52709 +g52711 +S'the' +p52713 +tp52714 +a(g52711 +g52713 +S'cabinetmaker' +p52715 +tp52716 +a(g52713 +g52715 +S'has' +p52717 +tp52718 +a(g52715 +g52717 +S'taken' +p52719 +tp52720 +a(g52717 +g52719 +S'full' +p52721 +tp52722 +a(g52719 +g52721 +S'advantage' +p52723 +tp52724 +a(g52721 +g52723 +S'of' +p52725 +tp52726 +a(g52723 +g52725 +S'the' +p52727 +tp52728 +a(g52725 +g52727 +S'rich,' +p52729 +tp52730 +a(g52727 +g52729 +S'warm' +p52731 +tp52732 +a(g52729 +g52731 +S'tones' +p52733 +tp52734 +a(g52731 +g52733 +S'of' +p52735 +tp52736 +a(g52733 +g52735 +S'native' +p52737 +tp52738 +a(g52735 +g52737 +S'american' +p52739 +tp52740 +a(g52737 +g52739 +S'cherry' +p52741 +tp52742 +a(g52739 +g52741 +S'wood.' +p52743 +tp52744 +a(g52741 +g52743 +S'a' +p52745 +tp52746 +a(g52743 +g52745 +S'popular' +p52747 +tp52748 +a(g52745 +g52747 +S'new' +p52749 +tp52750 +a(g52747 +g52749 +S'furniture' +p52751 +tp52752 +a(g52749 +g52751 +S'form' +p52753 +tp52754 +a(g52751 +g52753 +S'of' +p52755 +tp52756 +a(g52753 +g52755 +S'the' +p52757 +tp52758 +a(g52755 +g52757 +S'william' +p52759 +tp52760 +a(g52757 +g52759 +S'and' +p52761 +tp52762 +a(g52759 +g52761 +S'mary' +p52763 +tp52764 +a(g52761 +g52763 +S'period' +p52765 +tp52766 +a(g52763 +g52765 +S'was' +p52767 +tp52768 +a(g52765 +g52767 +S'a' +p52769 +tp52770 +a(g52767 +g52769 +S'chest' +p52771 +tp52772 +a(g52769 +g52771 +S'raised' +p52773 +tp52774 +a(g52771 +g52773 +S'on' +p52775 +tp52776 +a(g52773 +g52775 +S'a' +p52777 +tp52778 +a(g52775 +g52777 +S'stand.' +p52779 +tp52780 +a(g52777 +g52779 +S'notice' +p52781 +tp52782 +a(g52779 +g52781 +S'the' +p52783 +tp52784 +a(g52781 +g52783 +S'feeling' +p52785 +tp52786 +a(g52783 +g52785 +S'of' +p52787 +tp52788 +a(g52785 +g52787 +S'lightness' +p52789 +tp52790 +a(g52787 +g52789 +S'achieved' +p52791 +tp52792 +a(g52789 +g52791 +S'as' +p52793 +tp52794 +a(g52791 +g52793 +S'the' +p52795 +tp52796 +a(g52793 +g52795 +S'chest' +p52797 +tp52798 +a(g52795 +g52797 +S'portion' +p52799 +tp52800 +a(g52797 +g52799 +S'is' +p52801 +tp52802 +a(g52799 +g52801 +S'raised' +p52803 +tp52804 +a(g52801 +g52803 +S'high' +p52805 +tp52806 +a(g52803 +g52805 +S'off' +p52807 +tp52808 +a(g52805 +g52807 +S'the' +p52809 +tp52810 +a(g52807 +g52809 +S'floor.' +p52811 +tp52812 +a(g52809 +g52811 +S'it' +p52813 +tp52814 +a(g52811 +g52813 +S'rests' +p52815 +tp52816 +a(g52813 +g52815 +S'on' +p52817 +tp52818 +a(g52815 +g52817 +S'an' +p52819 +tp52820 +a(g52817 +g52819 +S'elaborately' +p52821 +tp52822 +a(g52819 +g52821 +S'and' +p52823 +tp52824 +a(g52821 +g52823 +S'finely' +p52825 +tp52826 +a(g52823 +g52825 +S'shaped' +p52827 +tp52828 +a(g52825 +g52827 +S'frame.' +p52829 +tp52830 +a(g52827 +g52829 +S'the' +p52831 +tp52832 +a(g52829 +g52831 +S'design,' +p52833 +tp52834 +a(g52831 +g52833 +S'modeled' +p52835 +tp52836 +a(g52833 +g52835 +S'after' +p52837 +tp52838 +a(g52835 +g52837 +S'oriental' +p52839 +tp52840 +a(g52837 +g52839 +S'cabinets' +p52841 +tp52842 +a(g52839 +g52841 +S'on' +p52843 +tp52844 +a(g52841 +g52843 +S'stands,' +p52845 +tp52846 +a(g52843 +g52845 +S'is' +p52847 +tp52848 +a(g52845 +g52847 +S'enhanced' +p52849 +tp52850 +a(g52847 +g52849 +S'by' +p52851 +tp52852 +a(g52849 +g52851 +S'richly' +p52853 +tp52854 +a(g52851 +g52853 +S'painted' +p52855 +tp52856 +a(g52853 +g52855 +S'surface' +p52857 +tp52858 +a(g52855 +g52857 +S'decoration.' +p52859 +tp52860 +a(g52857 +g52859 +S'the' +p52861 +tp52862 +a(g52859 +g52861 +S'ornament' +p52863 +tp52864 +a(g52861 +g52863 +S'imitates' +p52865 +tp52866 +a(g52863 +g52865 +S'that' +p52867 +tp52868 +a(g52865 +g52867 +S'of' +p52869 +tp52870 +a(g52867 +g52869 +S'oriental' +p52871 +tp52872 +a(g52869 +g52871 +S'lacquered' +p52873 +tp52874 +a(g52871 +g52873 +S'furniture,' +p52875 +tp52876 +a(g52873 +g52875 +S'which,' +p52877 +tp52878 +a(g52875 +g52877 +S'during' +p52879 +tp52880 +a(g52877 +g52879 +S'the' +p52881 +tp52882 +a(g52879 +g52881 +S'eighteenth' +p52883 +tp52884 +a(g52881 +g52883 +S'century,' +p52885 +tp52886 +a(g52883 +g52885 +S'was' +p52887 +tp52888 +a(g52885 +g52887 +S'being' +p52889 +tp52890 +a(g52887 +g52889 +S'imported' +p52891 +tp52892 +a(g52889 +g52891 +S'into' +p52893 +tp52894 +a(g52891 +g52893 +S'europe' +p52895 +tp52896 +a(g52893 +g52895 +S'by' +p52897 +tp52898 +a(g52895 +g52897 +S'the' +p52899 +tp52900 +a(g52897 +g52899 +S'dutch' +p52901 +tp52902 +a(g52899 +g52901 +S'east' +p52903 +tp52904 +a(g52901 +g52903 +S'india' +p52905 +tp52906 +a(g52903 +g52905 +S'company.' +p52907 +tp52908 +a(g52905 +g52907 +S'european' +p52909 +tp52910 +a(g52907 +g52909 +S'taste' +p52911 +tp52912 +a(g52909 +g52911 +S'for' +p52913 +tp52914 +a(g52911 +g52913 +S'the' +p52915 +tp52916 +a(g52913 +g52915 +S'luxurious' +p52917 +tp52918 +a(g52915 +g52917 +S'and' +p52919 +tp52920 +a(g52917 +g52919 +S'exotic' +p52921 +tp52922 +a(g52919 +g52921 +S'wares' +p52923 +tp52924 +a(g52921 +g52923 +S'of' +p52925 +tp52926 +a(g52923 +g52925 +S'the' +p52927 +tp52928 +a(g52925 +g52927 +S'orient' +p52929 +tp52930 +a(g52927 +g52929 +S'was' +p52931 +tp52932 +a(g52929 +g52931 +S'echoed' +p52933 +tp52934 +a(g52931 +g52933 +S'in' +p52935 +tp52936 +a(g52933 +g52935 +S'america;' +p52937 +tp52938 +a(g52935 +g52937 +S'craftsmen' +p52939 +tp52940 +a(g52937 +g52939 +S'tried' +p52941 +tp52942 +a(g52939 +g52941 +S'to' +p52943 +tp52944 +a(g52941 +g52943 +S'duplicate' +p52945 +tp52946 +a(g52943 +g52945 +S'the' +p52947 +tp52948 +a(g52945 +g52947 +S'appearance' +p52949 +tp52950 +a(g52947 +g52949 +S'of' +p52951 +tp52952 +a(g52949 +g52951 +S'oriental' +p52953 +tp52954 +a(g52951 +g52953 +S'lacquered' +p52955 +tp52956 +a(g52953 +g52955 +S'decoration' +p52957 +tp52958 +a(g52955 +g52957 +S'through' +p52959 +tp52960 +a(g52957 +g52959 +S'the' +p52961 +tp52962 +a(g52959 +g52961 +S'use' +p52963 +tp52964 +a(g52961 +g52963 +S'of' +p52965 +tp52966 +a(g52963 +g52965 +S'varnishes,' +p52967 +tp52968 +a(g52965 +g52967 +S'gilt,' +p52969 +tp52970 +a(g52967 +g52969 +S'and' +p52971 +tp52972 +a(g52969 +g52971 +S'polychrome' +p52973 +tp52974 +a(g52971 +g52973 +S'paints' +p52975 +tp52976 +a(g52973 +g52975 +S'in' +p52977 +tp52978 +a(g52975 +g52977 +S'a' +p52979 +tp52980 +a(g52977 +g52979 +S'technique' +p52981 +tp52982 +a(g52979 +g52981 +S'known' +p52983 +tp52984 +a(g52981 +g52983 +S'as' +p52985 +tp52986 +a(g52983 +g52985 +S'"japanning."' +p52987 +tp52988 +a(g52985 +g52987 +S'the' +p52989 +tp52990 +a(g52987 +g52989 +S'figure' +p52991 +tp52992 +a(g52989 +g52991 +S'of' +p52993 +tp52994 +a(g52991 +g52993 +S'shou' +p52995 +tp52996 +a(g52993 +g52995 +S'lao' +p52997 +tp52998 +a(g52995 +g52997 +S'may' +p52999 +tp53000 +a(g52997 +g52999 +S'originally' +p53001 +tp53002 +a(g52999 +g53001 +S'have' +p53003 +tp53004 +a(g53001 +g53003 +S'been' +p53005 +tp53006 +a(g53003 +g53005 +S'designed' +p53007 +tp53008 +a(g53005 +g53007 +S'for' +p53009 +tp53010 +a(g53007 +g53009 +S'use' +p53011 +tp53012 +a(g53009 +g53011 +S'on' +p53013 +tp53014 +a(g53011 +g53013 +S'a' +p53015 +tp53016 +a(g53013 +g53015 +S'temple' +p53017 +tp53018 +a(g53015 +g53017 +S'or' +p53019 +tp53020 +a(g53017 +g53019 +S'family' +p53021 +tp53022 +a(g53019 +g53021 +S'altar.' +p53023 +tp53024 +a(g53021 +g53023 +S'the' +p53025 +tp53026 +a(g53023 +g53025 +S'seated' +p53027 +tp53028 +a(g53025 +g53027 +S'deity' +p53029 +tp53030 +a(g53027 +g53029 +S'is' +p53031 +tp53032 +a(g53029 +g53031 +S'shown' +p53033 +tp53034 +a(g53031 +g53033 +S'in' +p53035 +tp53036 +a(g53033 +g53035 +S'formal' +p53037 +tp53038 +a(g53035 +g53037 +S'court' +p53039 +tp53040 +a(g53037 +g53039 +S'robes' +p53041 +tp53042 +a(g53039 +g53041 +S'and' +p53043 +tp53044 +a(g53041 +g53043 +S'is' +p53045 +tp53046 +a(g53043 +g53045 +S'recognizable' +p53047 +tp53048 +a(g53045 +g53047 +S'by' +p53049 +tp53050 +a(g53047 +g53049 +S'his' +p53051 +tp53052 +a(g53049 +g53051 +S'tall,' +p53053 +tp53054 +a(g53051 +g53053 +S'domed' +p53055 +tp53056 +a(g53053 +g53055 +S'head' +p53057 +tp53058 +a(g53055 +g53057 +S'and' +p53059 +tp53060 +a(g53057 +g53059 +S'long' +p53061 +tp53062 +a(g53059 +g53061 +S'beard.' +p53063 +tp53064 +a(g53061 +g53063 +S'a' +p53065 +tp53066 +a(g53063 +g53065 +S'standing' +p53067 +tp53068 +a(g53065 +g53067 +S'figurine' +p53069 +tp53070 +a(g53067 +g53069 +S'of' +p53071 +tp53072 +a(g53069 +g53071 +S'shou' +p53073 +tp53074 +a(g53071 +g53073 +S'lao' +p53075 +tp53076 +a(g53073 +g53075 +S'decorated' +p53077 +tp53078 +a(g53075 +g53077 +S'in' +p53079 +tp53080 +a(g53077 +g53079 +S'a' +p53081 +tp53082 +a(g53079 +g53081 +S'similar' +p53083 +tp53084 +a(g53081 +g53083 +S'manner' +p53085 +tp53086 +a(g53083 +g53085 +S'is' +p53087 +tp53088 +a(g53085 +g53087 +S'in' +p53089 +tp53090 +a(g53087 +g53089 +S'the' +p53091 +tp53092 +a(g53089 +g53091 +S'altman' +p53093 +tp53094 +a(g53091 +g53093 +S'collection,' +p53095 +tp53096 +a(g53093 +g53095 +S'metropolitan' +p53097 +tp53098 +a(g53095 +g53097 +S'museum' +p53099 +tp53100 +a(g53097 +g53099 +S'of' +p53101 +tp53102 +a(g53099 +g53101 +S'art,' +p53103 +tp53104 +a(g53101 +g53103 +S'new' +p53105 +tp53106 +a(g53103 +g53105 +S'york.' +p53107 +tp53108 +a(g53105 +g53107 +S'(text' +p53109 +tp53110 +a(g53107 +g53109 +S'by' +p53111 +tp53112 +a(g53109 +g53111 +S'stephen' +p53113 +tp53114 +a(g53111 +g53113 +S'little,' +p53115 +tp53116 +a(g53113 +g53115 +S'published' +p53117 +tp53118 +a(g53115 +g53117 +S'in' +p53119 +tp53120 +a(g53117 +g53119 +S'the' +p53121 +tp53122 +a(g53119 +g53121 +S'nga' +p53123 +tp53124 +a(g53121 +g53123 +S'systematic' +p53125 +tp53126 +a(g53123 +g53125 +S'catalogue:' +p53127 +tp53128 +a(g53125 +g53127 +S'notes' +p53135 +tp53136 +a(g53133 +g53135 +S'' +p53137 +tp53138 +a(g53135 +g53137 +S'' +p53141 +tp53142 +a(g53139 +g53141 +S'' +p53145 +tp53146 +a(g53143 +g53145 +S'after' +p53147 +tp53148 +a(g53145 +g53147 +S'the' +p53149 +tp53150 +a(g53147 +g53149 +S'1820s,' +p53151 +tp53152 +a(g53149 +g53151 +S'the' +p53153 +tp53154 +a(g53151 +g53153 +S'grace' +p53155 +tp53156 +a(g53153 +g53155 +S'and' +p53157 +tp53158 +a(g53155 +g53157 +S'elegance' +p53159 +tp53160 +a(g53157 +g53159 +S'of' +p53161 +tp53162 +a(g53159 +g53161 +S'regency' +p53163 +tp53164 +a(g53161 +g53163 +S'furniture' +p53165 +tp53166 +a(g53163 +g53165 +S'gave' +p53167 +tp53168 +a(g53165 +g53167 +S'way' +p53169 +tp53170 +a(g53167 +g53169 +S'to' +p53171 +tp53172 +a(g53169 +g53171 +S'the' +p53173 +tp53174 +a(g53171 +g53173 +S'heavier' +p53175 +tp53176 +a(g53173 +g53175 +S'and' +p53177 +tp53178 +a(g53175 +g53177 +S'bulkier' +p53179 +tp53180 +a(g53177 +g53179 +S'forms' +p53181 +tp53182 +a(g53179 +g53181 +S'of' +p53183 +tp53184 +a(g53181 +g53183 +S'the' +p53185 +tp53186 +a(g53183 +g53185 +S'american' +p53187 +tp53188 +a(g53185 +g53187 +S'empire' +p53189 +tp53190 +a(g53187 +g53189 +S'style,' +p53191 +tp53192 +a(g53189 +g53191 +S'named' +p53193 +tp53194 +a(g53191 +g53193 +S'after' +p53195 +tp53196 +a(g53193 +g53195 +S'its' +p53197 +tp53198 +a(g53195 +g53197 +S'french' +p53199 +tp53200 +a(g53197 +g53199 +S'counterpart.' +p53201 +tp53202 +a(g53199 +g53201 +S'american' +p53203 +tp53204 +a(g53201 +g53203 +S'empire' +p53205 +tp53206 +a(g53203 +g53205 +S'furniture' +p53207 +tp53208 +a(g53205 +g53207 +S'continued' +p53209 +tp53210 +a(g53207 +g53209 +S'to' +p53211 +tp53212 +a(g53209 +g53211 +S'reflect' +p53213 +tp53214 +a(g53211 +g53213 +S'classical' +p53215 +tp53216 +a(g53213 +g53215 +S'prototypes,' +p53217 +tp53218 +a(g53215 +g53217 +S'but' +p53219 +tp53220 +a(g53217 +g53219 +S'often' +p53221 +tp53222 +a(g53219 +g53221 +S'the' +p53223 +tp53224 +a(g53221 +g53223 +S'features' +p53225 +tp53226 +a(g53223 +g53225 +S'were' +p53227 +tp53228 +a(g53225 +g53227 +S'exaggerated.' +p53229 +tp53230 +a(g53227 +g53229 +S'in' +p53231 +tp53232 +a(g53229 +g53231 +S'this' +p53233 +tp53234 +a(g53231 +g53233 +S'period,' +p53235 +tp53236 +a(g53233 +g53235 +S'one' +p53237 +tp53238 +a(g53235 +g53237 +S'finds' +p53239 +tp53240 +a(g53237 +g53239 +S'an' +p53241 +tp53242 +a(g53239 +g53241 +S'abundance' +p53243 +tp53244 +a(g53241 +g53243 +S'of' +p53245 +tp53246 +a(g53243 +g53245 +S'thick' +p53247 +tp53248 +a(g53245 +g53247 +S'pedestals' +p53249 +tp53250 +a(g53247 +g53249 +S'and' +p53251 +tp53252 +a(g53249 +g53251 +S'columns,' +p53253 +tp53254 +a(g53251 +g53253 +S'rolled' +p53255 +tp53256 +a(g53253 +g53255 +S'backs' +p53257 +tp53258 +a(g53255 +g53257 +S'and' +p53259 +tp53260 +a(g53257 +g53259 +S'arms,' +p53261 +tp53262 +a(g53259 +g53261 +S'and' +p53263 +tp53264 +a(g53261 +g53263 +S'animal' +p53265 +tp53266 +a(g53263 +g53265 +S'claw' +p53267 +tp53268 +a(g53265 +g53267 +S'or' +p53269 +tp53270 +a(g53267 +g53269 +S'scrolled' +p53271 +tp53272 +a(g53269 +g53271 +S'feet.' +p53273 +tp53274 +a(g53271 +g53273 +S'vigorous' +p53275 +tp53276 +a(g53273 +g53275 +S'carving' +p53277 +tp53278 +a(g53275 +g53277 +S'and' +p53279 +tp53280 +a(g53277 +g53279 +S'richly' +p53281 +tp53282 +a(g53279 +g53281 +S'figured' +p53283 +tp53284 +a(g53281 +g53283 +S'woods' +p53285 +tp53286 +a(g53283 +g53285 +S'were' +p53287 +tp53288 +a(g53285 +g53287 +S'emphasized,' +p53289 +tp53290 +a(g53287 +g53289 +S'but' +p53291 +tp53292 +a(g53289 +g53291 +S'empire' +p53293 +tp53294 +a(g53291 +g53293 +S'furniture' +p53295 +tp53296 +a(g53293 +g53295 +S'was' +p53297 +tp53298 +a(g53295 +g53297 +S'also' +p53299 +tp53300 +a(g53297 +g53299 +S'painted;' +p53301 +tp53302 +a(g53299 +g53301 +S'often' +p53303 +tp53304 +a(g53301 +g53303 +S'it' +p53305 +tp53306 +a(g53303 +g53305 +S'was' +p53307 +tp53308 +a(g53305 +g53307 +S'ornamented' +p53309 +tp53310 +a(g53307 +g53309 +S'with' +p53311 +tp53312 +a(g53309 +g53311 +S'decorative' +p53313 +tp53314 +a(g53311 +g53313 +S'metal' +p53315 +tp53316 +a(g53313 +g53315 +S'mounts' +p53317 +tp53318 +a(g53315 +g53317 +S'and' +p53319 +tp53320 +a(g53317 +g53319 +S'with' +p53321 +tp53322 +a(g53319 +g53321 +S'gilt' +p53323 +tp53324 +a(g53321 +g53323 +S'stencil' +p53325 +tp53326 +a(g53323 +g53325 +S'patterns' +p53327 +tp53328 +a(g53325 +g53327 +S'that' +p53329 +tp53330 +a(g53327 +g53329 +S'reflected' +p53331 +tp53332 +a(g53329 +g53331 +S'the' +p53333 +tp53334 +a(g53331 +g53333 +S'metal' +p53335 +tp53336 +a(g53333 +g53335 +S'designs.' +p53337 +tp53338 +a(g53335 +g53337 +S'this' +p53339 +tp53340 +a(g53337 +g53339 +S'late' +p53341 +tp53342 +a(g53339 +g53341 +S'empire' +p53343 +tp53344 +a(g53341 +g53343 +S'couch' +p53345 +tp53346 +a(g53343 +g53345 +S'dates' +p53347 +tp53348 +a(g53345 +g53347 +S'from' +p53349 +tp53350 +a(g53347 +g53349 +S'the' +p53351 +tp53352 +a(g53349 +g53351 +S'mid-nineteenth' +p53353 +tp53354 +a(g53351 +g53353 +S'century.' +p53355 +tp53356 +a(g53353 +g53355 +S'the' +p53357 +tp53358 +a(g53355 +g53357 +S'form' +p53359 +tp53360 +a(g53357 +g53359 +S'is' +p53361 +tp53362 +a(g53359 +g53361 +S'based' +p53363 +tp53364 +a(g53361 +g53363 +S'upon' +p53365 +tp53366 +a(g53363 +g53365 +S'classical' +p53367 +tp53368 +a(g53365 +g53367 +S'greek' +p53369 +tp53370 +a(g53367 +g53369 +S'and' +p53371 +tp53372 +a(g53369 +g53371 +S'roman' +p53373 +tp53374 +a(g53371 +g53373 +S'banquet' +p53375 +tp53376 +a(g53373 +g53375 +S'couches' +p53377 +tp53378 +a(g53375 +g53377 +S'with' +p53379 +tp53380 +a(g53377 +g53379 +S'asymmetrical' +p53381 +tp53382 +a(g53379 +g53381 +S'arms.' +p53383 +tp53384 +a(g53381 +g53383 +S'the' +p53385 +tp53386 +a(g53383 +g53385 +S'exuberance' +p53387 +tp53388 +a(g53385 +g53387 +S'of' +p53389 +tp53390 +a(g53387 +g53389 +S'the' +p53391 +tp53392 +a(g53389 +g53391 +S'scrolled' +p53393 +tp53394 +a(g53391 +g53393 +S'arms' +p53395 +tp53396 +a(g53393 +g53395 +S'is' +p53397 +tp53398 +a(g53395 +g53397 +S'echoed' +p53399 +tp53400 +a(g53397 +g53399 +S'in' +p53401 +tp53402 +a(g53399 +g53401 +S'the' +p53403 +tp53404 +a(g53401 +g53403 +S'sweeping' +p53405 +tp53406 +a(g53403 +g53405 +S'curves' +p53407 +tp53408 +a(g53405 +g53407 +S'of' +p53409 +tp53410 +a(g53407 +g53409 +S'the' +p53411 +tp53412 +a(g53409 +g53411 +S'back.' +p53413 +tp53414 +a(g53411 +g53413 +S'the' +p53415 +tp53416 +a(g53413 +g53415 +S'piece' +p53417 +tp53418 +a(g53415 +g53417 +S'is' +p53419 +tp53420 +a(g53417 +g53419 +S'elaborately' +p53421 +tp53422 +a(g53419 +g53421 +S'stenciled;' +p53423 +tp53424 +a(g53421 +g53423 +S'a' +p53425 +tp53426 +a(g53423 +g53425 +S'profusion' +p53427 +tp53428 +a(g53425 +g53427 +S'of' +p53429 +tp53430 +a(g53427 +g53429 +S'decorative' +p53431 +tp53432 +a(g53429 +g53431 +S'motifs' +p53433 +tp53434 +a(g53431 +g53433 +S'includes' +p53435 +tp53436 +a(g53433 +g53435 +S'leafy' +p53437 +tp53438 +a(g53435 +g53437 +S'anthemion' +p53439 +tp53440 +a(g53437 +g53439 +S'and' +p53441 +tp53442 +a(g53439 +g53441 +S'acanthus' +p53443 +tp53444 +a(g53441 +g53443 +S'patterns,' +p53445 +tp53446 +a(g53443 +g53445 +S'lyres,' +p53447 +tp53448 +a(g53445 +g53447 +S'cornucopias,' +p53449 +tp53450 +a(g53447 +g53449 +S'and' +p53451 +tp53452 +a(g53449 +g53451 +S'rosettes,' +p53453 +tp53454 +a(g53451 +g53453 +S'representing' +p53455 +tp53456 +a(g53453 +g53455 +S'a' +p53457 +tp53458 +a(g53455 +g53457 +S'full' +p53459 +tp53460 +a(g53457 +g53459 +S'range' +p53461 +tp53462 +a(g53459 +g53461 +S'of' +p53463 +tp53464 +a(g53461 +g53463 +S'antique' +p53465 +tp53466 +a(g53463 +g53465 +S'ornament.' +p53467 +tp53468 +a(g53465 +g53467 +S'the' +p53469 +tp53470 +a(g53467 +g53469 +S'decorative' +p53471 +tp53472 +a(g53469 +g53471 +S'motifs' +p53473 +tp53474 +a(g53471 +g53473 +S'flow' +p53475 +tp53476 +a(g53473 +g53475 +S'into' +p53477 +tp53478 +a(g53475 +g53477 +S'each' +p53479 +tp53480 +a(g53477 +g53479 +S'other' +p53481 +tp53482 +a(g53479 +g53481 +S'and' +p53483 +tp53484 +a(g53481 +g53483 +S'reinforce' +p53485 +tp53486 +a(g53483 +g53485 +S'the' +p53487 +tp53488 +a(g53485 +g53487 +S'fluid' +p53489 +tp53490 +a(g53487 +g53489 +S'curves' +p53491 +tp53492 +a(g53489 +g53491 +S'of' +p53493 +tp53494 +a(g53491 +g53493 +S'the' +p53495 +tp53496 +a(g53493 +g53495 +S'form.' +p53497 +tp53498 +a(g53495 +g53497 +S'the' +p53499 +tp53500 +a(g53497 +g53499 +S'boldly' +p53501 +tp53502 +a(g53499 +g53501 +S'flared' +p53503 +tp53504 +a(g53501 +g53503 +S'animal' +p53505 +tp53506 +a(g53503 +g53505 +S'paw' +p53507 +tp53508 +a(g53505 +g53507 +S'feet,' +p53509 +tp53510 +a(g53507 +g53509 +S'popular' +p53511 +tp53512 +a(g53509 +g53511 +S'in' +p53513 +tp53514 +a(g53511 +g53513 +S'this' +p53515 +tp53516 +a(g53513 +g53515 +S'period,' +p53517 +tp53518 +a(g53515 +g53517 +S'provide' +p53519 +tp53520 +a(g53517 +g53519 +S'strong' +p53521 +tp53522 +a(g53519 +g53521 +S'support' +p53523 +tp53524 +a(g53521 +g53523 +S'and' +p53525 +tp53526 +a(g53523 +g53525 +S'a' +p53527 +tp53528 +a(g53525 +g53527 +S'vigorous' +p53529 +tp53530 +a(g53527 +g53529 +S'counterbalance' +p53531 +tp53532 +a(g53529 +g53531 +S'for' +p53533 +tp53534 +a(g53531 +g53533 +S'the' +p53535 +tp53536 +a(g53533 +g53535 +S'scrolling' +p53537 +tp53538 +a(g53535 +g53537 +S'forms' +p53539 +tp53540 +a(g53537 +g53539 +S'of' +p53541 +tp53542 +a(g53539 +g53541 +S'the' +p53543 +tp53544 +a(g53541 +g53543 +S'body.' +p53545 +tp53546 +a(g53543 +g53545 +S'empire' +p53547 +tp53548 +a(g53545 +g53547 +S'furniture,' +p53549 +tp53550 +a(g53547 +g53549 +S'extravagant' +p53551 +tp53552 +a(g53549 +g53551 +S'in' +p53553 +tp53554 +a(g53551 +g53553 +S'design' +p53555 +tp53556 +a(g53553 +g53555 +S'and' +p53557 +tp53558 +a(g53555 +g53557 +S'profusely' +p53559 +tp53560 +a(g53557 +g53559 +S'decorated,' +p53561 +tp53562 +a(g53559 +g53561 +S'was' +p53563 +tp53564 +a(g53561 +g53563 +S'a' +p53565 +tp53566 +a(g53563 +g53565 +S'popular' +p53567 +tp53568 +a(g53565 +g53567 +S'feature' +p53569 +tp53570 +a(g53567 +g53569 +S'of' +p53571 +tp53572 +a(g53569 +g53571 +S'fashionable' +p53573 +tp53574 +a(g53571 +g53573 +S'homes' +p53575 +tp53576 +a(g53573 +g53575 +S'at' +p53577 +tp53578 +a(g53575 +g53577 +S'a' +p53579 +tp53580 +a(g53577 +g53579 +S'time' +p53581 +tp53582 +a(g53579 +g53581 +S'when' +p53583 +tp53584 +a(g53581 +g53583 +S"america's" +p53585 +tp53586 +a(g53583 +g53585 +S'abundance' +p53587 +tp53588 +a(g53585 +g53587 +S'held' +p53589 +tp53590 +a(g53587 +g53589 +S'promise' +p53591 +tp53592 +a(g53589 +g53591 +S'for' +p53593 +tp53594 +a(g53591 +g53593 +S'all,' +p53595 +tp53596 +a(g53593 +g53595 +S'and' +p53597 +tp53598 +a(g53595 +g53597 +S'"peace' +p53599 +tp53600 +a(g53597 +g53599 +S'and' +p53601 +tp53602 +a(g53599 +g53601 +S'plenty"' +p53603 +tp53604 +a(g53601 +g53603 +S'was' +p53605 +tp53606 +a(g53603 +g53605 +S'a' +p53607 +tp53608 +a(g53605 +g53607 +S'common' +p53609 +tp53610 +a(g53607 +g53609 +S'slogan.' +p53611 +tp53612 +a(g53609 +g53611 +S'the' +p53613 +tp53614 +a(g53611 +g53613 +S'decoration' +p53615 +tp53616 +a(g53613 +g53615 +S'on' +p53617 +tp53618 +a(g53615 +g53617 +S'this' +p53619 +tp53620 +a(g53617 +g53619 +S'vase' +p53621 +tp53622 +a(g53619 +g53621 +S'consists' +p53623 +tp53624 +a(g53621 +g53623 +S'of' +p53625 +tp53626 +a(g53623 +g53625 +S'two' +p53627 +tp53628 +a(g53625 +g53627 +S'large' +p53629 +tp53630 +a(g53627 +g53629 +S'four-clawed' +p53631 +tp53632 +a(g53629 +g53631 +S'dragons' +p53633 +tp53634 +a(g53631 +g53633 +S'chasing' +p53635 +tp53636 +a(g53633 +g53635 +S'flaming' +p53637 +tp53638 +a(g53635 +g53637 +S'pearls' +p53639 +tp53640 +a(g53637 +g53639 +S'among' +p53641 +tp53642 +a(g53639 +g53641 +S'stylized' +p53643 +tp53644 +a(g53641 +g53643 +S'flames' +p53645 +tp53646 +a(g53643 +g53645 +S'on' +p53647 +tp53648 +a(g53645 +g53647 +S'the' +p53649 +tp53650 +a(g53647 +g53649 +S'main' +p53651 +tp53652 +a(g53649 +g53651 +S'body' +p53653 +tp53654 +a(g53651 +g53653 +S'and' +p53655 +tp53656 +a(g53653 +g53655 +S'two' +p53657 +tp53658 +a(g53655 +g53657 +S'phoenixes' +p53659 +tp53660 +a(g53657 +g53659 +S'on' +p53661 +tp53662 +a(g53659 +g53661 +S'the' +p53663 +tp53664 +a(g53661 +g53663 +S'neck.' +p53665 +tp53666 +a(g53663 +g53665 +S'the' +p53667 +tp53668 +a(g53665 +g53667 +S'enamel' +p53669 +tp53670 +a(g53667 +g53669 +S'palette' +p53671 +tp53672 +a(g53669 +g53671 +S'includes' +p53673 +tp53674 +a(g53671 +g53673 +S'green,' +p53675 +tp53676 +a(g53673 +g53675 +S'yellow,' +p53677 +tp53678 +a(g53675 +g53677 +S'aubergine,' +p53679 +tp53680 +a(g53677 +g53679 +S'and' +p53681 +tp53682 +a(g53679 +g53681 +S'black.' +p53683 +tp53684 +a(g53681 +g53683 +S'the' +p53685 +tp53686 +a(g53683 +g53685 +S'two' +p53687 +tp53688 +a(g53685 +g53687 +S'dragons,' +p53689 +tp53690 +a(g53687 +g53689 +S'one' +p53691 +tp53692 +a(g53689 +g53691 +S'yellow' +p53693 +tp53694 +a(g53691 +g53693 +S'and' +p53695 +tp53696 +a(g53693 +g53695 +S'the' +p53697 +tp53698 +a(g53695 +g53697 +S'other' +p53699 +tp53700 +a(g53697 +g53699 +S'aubergine,' +p53701 +tp53702 +a(g53699 +g53701 +S'are' +p53703 +tp53704 +a(g53701 +g53703 +S'of' +p53705 +tp53706 +a(g53703 +g53705 +S'different' +p53707 +tp53708 +a(g53705 +g53707 +S'types.' +p53709 +tp53710 +a(g53707 +g53709 +S'the' +p53711 +tp53712 +a(g53709 +g53711 +S'aubergine' +p53713 +tp53714 +a(g53711 +g53713 +S'dragon' +p53715 +tp53716 +a(g53713 +g53715 +S'resembles' +p53717 +tp53718 +a(g53715 +g53717 +S'the' +p53719 +tp53720 +a(g53717 +g53719 +S'characteristic' +p53721 +tp53722 +a(g53719 +g53721 +S'late-ming' +p53723 +tp53724 +a(g53721 +g53723 +S'dragon,' +p53725 +tp53726 +a(g53723 +g53725 +S'with' +p53727 +tp53728 +a(g53725 +g53727 +S'an' +p53729 +tp53730 +a(g53727 +g53729 +S'elongated' +p53731 +tp53732 +a(g53729 +g53731 +S'head.' +p53733 +tp53734 +a(g53731 +g53733 +S'the' +p53735 +tp53736 +a(g53733 +g53735 +S'other' +p53737 +tp53738 +a(g53735 +g53737 +S'has' +p53739 +tp53740 +a(g53737 +g53739 +S'a' +p53741 +tp53742 +a(g53739 +g53741 +S'more' +p53743 +tp53744 +a(g53741 +g53743 +S'typical' +p53745 +tp53746 +a(g53743 +g53745 +S'kangxi-period' +p53747 +tp53748 +a(g53745 +g53747 +S'head,' +p53749 +tp53750 +a(g53747 +g53749 +S'which' +p53751 +tp53752 +a(g53749 +g53751 +S'is' +p53753 +tp53754 +a(g53751 +g53753 +S'much' +p53755 +tp53756 +a(g53753 +g53755 +S'larger.' +p53757 +tp53758 +a(g53755 +g53757 +S'around' +p53759 +tp53760 +a(g53757 +g53759 +S'the' +p53761 +tp53762 +a(g53759 +g53761 +S'eyes' +p53763 +tp53764 +a(g53761 +g53763 +S'of' +p53765 +tp53766 +a(g53763 +g53765 +S'the' +p53767 +tp53768 +a(g53765 +g53767 +S'latter,' +p53769 +tp53770 +a(g53767 +g53769 +S'brown' +p53771 +tp53772 +a(g53769 +g53771 +S'lines' +p53773 +tp53774 +a(g53771 +g53773 +S'of' +p53775 +tp53776 +a(g53773 +g53775 +S'the' +p53777 +tp53778 +a(g53775 +g53777 +S'underdrawing' +p53779 +tp53780 +a(g53777 +g53779 +S'are' +p53781 +tp53782 +a(g53779 +g53781 +S'visibly' +p53783 +tp53784 +a(g53781 +g53783 +S'painted' +p53785 +tp53786 +a(g53783 +g53785 +S'directly' +p53787 +tp53788 +a(g53785 +g53787 +S'on' +p53789 +tp53790 +a(g53787 +g53789 +S'the' +p53791 +tp53792 +a(g53789 +g53791 +S'porcelain' +p53793 +tp53794 +a(g53791 +g53793 +S'body.' +p53795 +tp53796 +a(g53793 +g53795 +S'(text' +p53797 +tp53798 +a(g53795 +g53797 +S'by' +p53799 +tp53800 +a(g53797 +g53799 +S'stephen' +p53801 +tp53802 +a(g53799 +g53801 +S'little,' +p53803 +tp53804 +a(g53801 +g53803 +S'published' +p53805 +tp53806 +a(g53803 +g53805 +S'in' +p53807 +tp53808 +a(g53805 +g53807 +S'the' +p53809 +tp53810 +a(g53807 +g53809 +S'nga' +p53811 +tp53812 +a(g53809 +g53811 +S'systematic' +p53813 +tp53814 +a(g53811 +g53813 +S'catalogue:' +p53815 +tp53816 +a(g53813 +g53815 +S'the' +p53817 +tp53818 +a(g53815 +g53817 +S'exterior' +p53819 +tp53820 +a(g53817 +g53819 +S'of' +p53821 +tp53822 +a(g53819 +g53821 +S'the' +p53823 +tp53824 +a(g53821 +g53823 +S'vase' +p53825 +tp53826 +a(g53823 +g53825 +S'is' +p53827 +tp53828 +a(g53825 +g53827 +S'decorated' +p53829 +tp53830 +a(g53827 +g53829 +S'with' +p53831 +tp53832 +a(g53829 +g53831 +S'a' +p53833 +tp53834 +a(g53831 +g53833 +S'depiction' +p53835 +tp53836 +a(g53833 +g53835 +S'of' +p53837 +tp53838 +a(g53835 +g53837 +S'egrets' +p53839 +tp53840 +a(g53837 +g53839 +S'in' +p53841 +tp53842 +a(g53839 +g53841 +S'a' +p53843 +tp53844 +a(g53841 +g53843 +S'lotus' +p53845 +tp53846 +a(g53843 +g53845 +S'pond.' +p53847 +tp53848 +a(g53845 +g53847 +S'the' +p53849 +tp53850 +a(g53847 +g53849 +S'aubergine' +p53851 +tp53852 +a(g53849 +g53851 +S'ground' +p53853 +tp53854 +a(g53851 +g53853 +S'is' +p53855 +tp53856 +a(g53853 +g53855 +S'unusual' +p53857 +tp53858 +a(g53855 +g53857 +S'and' +p53859 +tp53860 +a(g53857 +g53859 +S'suggests' +p53861 +tp53862 +a(g53859 +g53861 +S'that' +p53863 +tp53864 +a(g53861 +g53863 +S'the' +p53865 +tp53866 +a(g53863 +g53865 +S'vase' +p53867 +tp53868 +a(g53865 +g53867 +S'dates' +p53869 +tp53870 +a(g53867 +g53869 +S'from' +p53871 +tp53872 +a(g53869 +g53871 +S'an' +p53873 +tp53874 +a(g53871 +g53873 +S'early' +p53875 +tp53876 +a(g53873 +g53875 +S'phase' +p53877 +tp53878 +a(g53875 +g53877 +S'in' +p53879 +tp53880 +a(g53877 +g53879 +S'the' +p53881 +tp53882 +a(g53879 +g53881 +S'evolution' +p53883 +tp53884 +a(g53881 +g53883 +S'of' +p53885 +tp53886 +a(g53883 +g53885 +S'the' +p53887 +tp53888 +a(g53885 +g53887 +S'the' +p53889 +tp53890 +a(g53887 +g53889 +S'vase' +p53891 +tp53892 +a(g53889 +g53891 +S'is' +p53893 +tp53894 +a(g53891 +g53893 +S'also' +p53895 +tp53896 +a(g53893 +g53895 +S'unusual' +p53897 +tp53898 +a(g53895 +g53897 +S'in' +p53899 +tp53900 +a(g53897 +g53899 +S'that' +p53901 +tp53902 +a(g53899 +g53901 +S'it' +p53903 +tp53904 +a(g53901 +g53903 +S'represents' +p53905 +tp53906 +a(g53903 +g53905 +S'a' +p53907 +tp53908 +a(g53905 +g53907 +S'rare' +p53909 +tp53910 +a(g53907 +g53909 +S'appearance' +p53911 +tp53912 +a(g53909 +g53911 +S'of' +p53913 +tp53914 +a(g53911 +g53913 +S'the' +p53915 +tp53916 +a(g53913 +g53915 +S'(text' +p53917 +tp53918 +a(g53915 +g53917 +S'by' +p53919 +tp53920 +a(g53917 +g53919 +S'stephen' +p53921 +tp53922 +a(g53919 +g53921 +S'little,' +p53923 +tp53924 +a(g53921 +g53923 +S'published' +p53925 +tp53926 +a(g53923 +g53925 +S'in' +p53927 +tp53928 +a(g53925 +g53927 +S'the' +p53929 +tp53930 +a(g53927 +g53929 +S'nga' +p53931 +tp53932 +a(g53929 +g53931 +S'systematic' +p53933 +tp53934 +a(g53931 +g53933 +S'catalogue:' +p53935 +tp53936 +a(g53933 +g53935 +S'as' +p53937 +tp53938 +a(g53935 +g53937 +S'the' +p53939 +tp53940 +a(g53937 +g53939 +S"colonists'" +p53941 +tp53942 +a(g53939 +g53941 +S'standard' +p53943 +tp53944 +a(g53941 +g53943 +S'of' +p53945 +tp53946 +a(g53943 +g53945 +S'living' +p53947 +tp53948 +a(g53945 +g53947 +S'became' +p53949 +tp53950 +a(g53947 +g53949 +S'more' +p53951 +tp53952 +a(g53949 +g53951 +S'luxurious,' +p53953 +tp53954 +a(g53951 +g53953 +S'specialized' +p53955 +tp53956 +a(g53953 +g53955 +S'furniture' +p53957 +tp53958 +a(g53955 +g53957 +S'forms' +p53959 +tp53960 +a(g53957 +g53959 +S'were' +p53961 +tp53962 +a(g53959 +g53961 +S'developed.' +p53963 +tp53964 +a(g53961 +g53963 +S'the' +p53965 +tp53966 +a(g53963 +g53965 +S'habit' +p53967 +tp53968 +a(g53965 +g53967 +S'of' +p53969 +tp53970 +a(g53967 +g53969 +S'drinking' +p53971 +tp53972 +a(g53969 +g53971 +S'tea' +p53973 +tp53974 +a(g53971 +g53973 +S'became' +p53975 +tp53976 +a(g53973 +g53975 +S'popular' +p53977 +tp53978 +a(g53975 +g53977 +S'in' +p53979 +tp53980 +a(g53977 +g53979 +S'the' +p53981 +tp53982 +a(g53979 +g53981 +S'1730s,' +p53983 +tp53984 +a(g53981 +g53983 +S'and' +p53985 +tp53986 +a(g53983 +g53985 +S'tea' +p53987 +tp53988 +a(g53985 +g53987 +S'tables' +p53989 +tp53990 +a(g53987 +g53989 +S'became' +p53991 +tp53992 +a(g53989 +g53991 +S'an' +p53993 +tp53994 +a(g53991 +g53993 +S'important' +p53995 +tp53996 +a(g53993 +g53995 +S'eighteenth-century' +p53997 +tp53998 +a(g53995 +g53997 +S'furniture' +p53999 +tp54000 +a(g53997 +g53999 +S'form' +p54001 +tp54002 +a(g53999 +g54001 +S'after' +p54003 +tp54004 +a(g54001 +g54003 +S'1740.' +p54005 +tp54006 +a(g54003 +g54005 +S'during' +p54007 +tp54008 +a(g54005 +g54007 +S'the' +p54009 +tp54010 +a(g54007 +g54009 +S'chippendale' +p54011 +tp54012 +a(g54009 +g54011 +S'period,' +p54013 +tp54014 +a(g54011 +g54013 +S'cabinetmakers' +p54015 +tp54016 +a(g54013 +g54015 +S'developed' +p54017 +tp54018 +a(g54015 +g54017 +S'a' +p54019 +tp54020 +a(g54017 +g54019 +S'tripod' +p54021 +tp54022 +a(g54019 +g54021 +S'base' +p54023 +tp54024 +a(g54021 +g54023 +S'tea' +p54025 +tp54026 +a(g54023 +g54025 +S'table' +p54027 +tp54028 +a(g54025 +g54027 +S'with' +p54029 +tp54030 +a(g54027 +g54029 +S'its' +p54031 +tp54032 +a(g54029 +g54031 +S'top' +p54033 +tp54034 +a(g54031 +g54033 +S'supported' +p54035 +tp54036 +a(g54033 +g54035 +S'by' +p54037 +tp54038 +a(g54035 +g54037 +S'a' +p54039 +tp54040 +a(g54037 +g54039 +S'birdcage' +p54041 +tp54042 +a(g54039 +g54041 +S'device' +p54043 +tp54044 +a(g54041 +g54043 +S'of' +p54045 +tp54046 +a(g54043 +g54045 +S'the' +p54047 +tp54048 +a(g54045 +g54047 +S'kind' +p54049 +tp54050 +a(g54047 +g54049 +S'that' +p54051 +tp54052 +a(g54049 +g54051 +S'appears' +p54053 +tp54054 +a(g54051 +g54053 +S'here.' +p54055 +tp54056 +a(g54053 +g54055 +S'the' +p54057 +tp54058 +a(g54055 +g54057 +S'"birdcage"' +p54059 +tp54060 +a(g54057 +g54059 +S'apparatus' +p54061 +tp54062 +a(g54059 +g54061 +S'was' +p54063 +tp54064 +a(g54061 +g54063 +S'ornamental' +p54065 +tp54066 +a(g54063 +g54065 +S'as' +p54067 +tp54068 +a(g54065 +g54067 +S'well' +p54069 +tp54070 +a(g54067 +g54069 +S'as' +p54071 +tp54072 +a(g54069 +g54071 +S'functional;' +p54073 +tp54074 +a(g54071 +g54073 +S'it' +p54075 +tp54076 +a(g54073 +g54075 +S'permitted' +p54077 +tp54078 +a(g54075 +g54077 +S'the' +p54079 +tp54080 +a(g54077 +g54079 +S'top' +p54081 +tp54082 +a(g54079 +g54081 +S'to' +p54083 +tp54084 +a(g54081 +g54083 +S'revolve' +p54085 +tp54086 +a(g54083 +g54085 +S'when' +p54087 +tp54088 +a(g54085 +g54087 +S'the' +p54089 +tp54090 +a(g54087 +g54089 +S'table' +p54091 +tp54092 +a(g54089 +g54091 +S'was' +p54093 +tp54094 +a(g54091 +g54093 +S'in' +p54095 +tp54096 +a(g54093 +g54095 +S'use' +p54097 +tp54098 +a(g54095 +g54097 +S'for' +p54099 +tp54100 +a(g54097 +g54099 +S'serving,' +p54101 +tp54102 +a(g54099 +g54101 +S'but' +p54103 +tp54104 +a(g54101 +g54103 +S'a' +p54105 +tp54106 +a(g54103 +g54105 +S'peg' +p54107 +tp54108 +a(g54105 +g54107 +S'inserted' +p54109 +tp54110 +a(g54107 +g54109 +S'through' +p54111 +tp54112 +a(g54109 +g54111 +S'the' +p54113 +tp54114 +a(g54111 +g54113 +S'center' +p54115 +tp54116 +a(g54113 +g54115 +S'prevented' +p54117 +tp54118 +a(g54115 +g54117 +S'the' +p54119 +tp54120 +a(g54117 +g54119 +S'top' +p54121 +tp54122 +a(g54119 +g54121 +S'from' +p54123 +tp54124 +a(g54121 +g54123 +S'spinning' +p54125 +tp54126 +a(g54123 +g54125 +S'wildly.' +p54127 +tp54128 +a(g54125 +g54127 +S'this' +p54129 +tp54130 +a(g54127 +g54129 +S'characteristic' +p54131 +tp54132 +a(g54129 +g54131 +S'chippendale' +p54133 +tp54134 +a(g54131 +g54133 +S'tea' +p54135 +tp54136 +a(g54133 +g54135 +S'table' +p54137 +tp54138 +a(g54135 +g54137 +S'stands' +p54139 +tp54140 +a(g54137 +g54139 +S'on' +p54141 +tp54142 +a(g54139 +g54141 +S'three' +p54143 +tp54144 +a(g54141 +g54143 +S'boldly' +p54145 +tp54146 +a(g54143 +g54145 +S'outthrust' +p54147 +tp54148 +a(g54145 +g54147 +S'cabriole' +p54149 +tp54150 +a(g54147 +g54149 +S'legs' +p54151 +tp54152 +a(g54149 +g54151 +S'carved' +p54153 +tp54154 +a(g54151 +g54153 +S'at' +p54155 +tp54156 +a(g54153 +g54155 +S'the' +p54157 +tp54158 +a(g54155 +g54157 +S'knee' +p54159 +tp54160 +a(g54157 +g54159 +S'and' +p54161 +tp54162 +a(g54159 +g54161 +S'ending' +p54163 +tp54164 +a(g54161 +g54163 +S'with' +p54165 +tp54166 +a(g54163 +g54165 +S'the' +p54167 +tp54168 +a(g54165 +g54167 +S'usual' +p54169 +tp54170 +a(g54167 +g54169 +S'ball' +p54171 +tp54172 +a(g54169 +g54171 +S'and' +p54173 +tp54174 +a(g54171 +g54173 +S'claw' +p54175 +tp54176 +a(g54173 +g54175 +S'foot.' +p54177 +tp54178 +a(g54175 +g54177 +S'the' +p54179 +tp54180 +a(g54177 +g54179 +S'top' +p54181 +tp54182 +a(g54179 +g54181 +S'is' +p54183 +tp54184 +a(g54181 +g54183 +S'scalloped' +p54185 +tp54186 +a(g54183 +g54185 +S'and' +p54187 +tp54188 +a(g54185 +g54187 +S'edged' +p54189 +tp54190 +a(g54187 +g54189 +S'with' +p54191 +tp54192 +a(g54189 +g54191 +S'molding' +p54193 +tp54194 +a(g54191 +g54193 +S'cut' +p54195 +tp54196 +a(g54193 +g54195 +S'from' +p54197 +tp54198 +a(g54195 +g54197 +S'the' +p54199 +tp54200 +a(g54197 +g54199 +S'solid' +p54201 +tp54202 +a(g54199 +g54201 +S'wood;' +p54203 +tp54204 +a(g54201 +g54203 +S'the' +p54205 +tp54206 +a(g54203 +g54205 +S'molded' +p54207 +tp54208 +a(g54205 +g54207 +S'edge' +p54209 +tp54210 +a(g54207 +g54209 +S'gave' +p54211 +tp54212 +a(g54209 +g54211 +S'rise' +p54213 +tp54214 +a(g54211 +g54213 +S'to' +p54215 +tp54216 +a(g54213 +g54215 +S'the' +p54217 +tp54218 +a(g54215 +g54217 +S'term' +p54219 +tp54220 +a(g54217 +g54219 +S'"piecrust' +p54221 +tp54222 +a(g54219 +g54221 +S'table,"' +p54223 +tp54224 +a(g54221 +g54223 +S'frequently' +p54225 +tp54226 +a(g54223 +g54225 +S'used' +p54227 +tp54228 +a(g54225 +g54227 +S'in' +p54229 +tp54230 +a(g54227 +g54229 +S'reference' +p54231 +tp54232 +a(g54229 +g54231 +S'to' +p54233 +tp54234 +a(g54231 +g54233 +S'tables' +p54235 +tp54236 +a(g54233 +g54235 +S'such' +p54237 +tp54238 +a(g54235 +g54237 +S'as' +p54239 +tp54240 +a(g54237 +g54239 +S'this' +p54241 +tp54242 +a(g54239 +g54241 +S'one.' +p54243 +tp54244 +a(g54241 +g54243 +S'fifteenth-century' +p54245 +tp54246 +a(g54243 +g54245 +S'viewers' +p54247 +tp54248 +a(g54245 +g54247 +S'of' +p54249 +tp54250 +a(g54247 +g54249 +S'this' +p54251 +tp54252 +a(g54249 +g54251 +S'annunciation' +p54253 +tp54254 +a(g54251 +g54253 +S'would' +p54255 +tp54256 +a(g54253 +g54255 +S'have' +p54257 +tp54258 +a(g54255 +g54257 +S'recognized' +p54259 +tp54260 +a(g54257 +g54259 +S'not' +p54261 +tp54262 +a(g54259 +g54261 +S'only' +p54263 +tp54264 +a(g54261 +g54263 +S'its' +p54265 +tp54266 +a(g54263 +g54265 +S'general' +p54267 +tp54268 +a(g54265 +g54267 +S'subject,' +p54269 +tp54270 +a(g54267 +g54269 +S'but' +p54271 +tp54272 +a(g54269 +g54271 +S'also' +p54273 +tp54274 +a(g54271 +g54273 +S'the' +p54275 +tp54276 +a(g54273 +g54275 +S'particular' +p54277 +tp54278 +a(g54275 +g54277 +S'moment' +p54279 +tp54280 +a(g54277 +g54279 +S'masolino' +p54281 +tp54282 +a(g54279 +g54281 +S'chose' +p54283 +tp54284 +a(g54281 +g54283 +S'to' +p54285 +tp54286 +a(g54283 +g54285 +S'paint.' +p54287 +tp54288 +a(g54285 +g54287 +S'street' +p54289 +tp54290 +a(g54287 +g54289 +S'preachers' +p54291 +tp54292 +a(g54289 +g54291 +S'gave' +p54293 +tp54294 +a(g54291 +g54293 +S'vivid' +p54295 +tp54296 +a(g54293 +g54295 +S'accounts' +p54297 +tp54298 +a(g54295 +g54297 +S'of' +p54299 +tp54300 +a(g54297 +g54299 +S"gabriel's" +p54301 +tp54302 +a(g54299 +g54301 +S'message' +p54303 +tp54304 +a(g54301 +g54303 +S'to' +p54305 +tp54306 +a(g54303 +g54305 +S'mary' +p54307 +tp54308 +a(g54305 +g54307 +S'about' +p54309 +tp54310 +a(g54307 +g54309 +S"christ's" +p54311 +tp54312 +a(g54309 +g54311 +S'birth,' +p54313 +tp54314 +a(g54311 +g54313 +S'and' +p54315 +tp54316 +a(g54313 +g54315 +S'audiences' +p54317 +tp54318 +a(g54315 +g54317 +S'would' +p54319 +tp54320 +a(g54317 +g54319 +S'also' +p54321 +tp54322 +a(g54319 +g54321 +S'have' +p54323 +tp54324 +a(g54321 +g54323 +S'seen' +p54325 +tp54326 +a(g54323 +g54325 +S'the' +p54327 +tp54328 +a(g54325 +g54327 +S'annunciation' +p54329 +tp54330 +a(g54327 +g54329 +S'reenacted' +p54331 +tp54332 +a(g54329 +g54331 +S'on' +p54333 +tp54334 +a(g54331 +g54333 +S'its' +p54335 +tp54336 +a(g54333 +g54335 +S'feast' +p54337 +tp54338 +a(g54335 +g54337 +S'day.' +p54339 +tp54340 +a(g54337 +g54339 +S'in' +p54341 +tp54342 +a(g54339 +g54341 +S'florence,' +p54343 +tp54344 +a(g54341 +g54343 +S'brunelleschi' +p54345 +tp54346 +a(g54343 +g54345 +S'designed' +p54347 +tp54348 +a(g54345 +g54347 +S'an' +p54349 +tp54350 +a(g54347 +g54349 +S'apparatus' +p54351 +tp54352 +a(g54349 +g54351 +S'to' +p54353 +tp54354 +a(g54351 +g54353 +S'lower' +p54355 +tp54356 +a(g54353 +g54355 +S'an' +p54357 +tp54358 +a(g54355 +g54357 +S'actor' +p54359 +tp54360 +a(g54357 +g54359 +S'portraying' +p54361 +tp54362 +a(g54359 +g54361 +S'gabriel' +p54363 +tp54364 +a(g54361 +g54363 +S'from' +p54365 +tp54366 +a(g54363 +g54365 +S'the' +p54367 +tp54368 +a(g54365 +g54367 +S'cathedral' +p54369 +tp54370 +a(g54367 +g54369 +S'dome,' +p54371 +tp54372 +a(g54369 +g54371 +S'as' +p54373 +tp54374 +a(g54371 +g54373 +S'young' +p54375 +tp54376 +a(g54373 +g54375 +S'children' +p54377 +tp54378 +a(g54375 +g54377 +S'dressed' +p54379 +tp54380 +a(g54377 +g54379 +S'as' +p54381 +tp54382 +a(g54379 +g54381 +S'angels' +p54383 +tp54384 +a(g54381 +g54383 +S'hung' +p54385 +tp54386 +a(g54383 +g54385 +S'suspended' +p54387 +tp54388 +a(g54385 +g54387 +S'in' +p54389 +tp54390 +a(g54387 +g54389 +S'rigging.' +p54391 +tp54392 +a(g54389 +g54391 +S'events' +p54393 +tp54394 +a(g54391 +g54393 +S'in' +p54395 +tp54396 +a(g54393 +g54395 +S'the' +p54397 +tp54398 +a(g54395 +g54397 +S'drama' +p54399 +tp54400 +a(g54397 +g54399 +S'took' +p54401 +tp54402 +a(g54399 +g54401 +S'place' +p54403 +tp54404 +a(g54401 +g54403 +S'in' +p54405 +tp54406 +a(g54403 +g54405 +S'sequence.' +p54407 +tp54408 +a(g54405 +g54407 +S'mary' +p54409 +tp54410 +a(g54407 +g54409 +S'was' +p54411 +tp54412 +a(g54409 +g54411 +S'first' +p54413 +tp54414 +a(g54411 +g54413 +S'startled' +p54415 +tp54416 +a(g54413 +g54415 +S'at' +p54417 +tp54418 +a(g54415 +g54417 +S'the' +p54419 +tp54420 +a(g54417 +g54419 +S"angel's" +p54421 +tp54422 +a(g54419 +g54421 +S'sudden' +p54423 +tp54424 +a(g54421 +g54423 +S'appearance;' +p54425 +tp54426 +a(g54423 +g54425 +S'she' +p54427 +tp54428 +a(g54425 +g54427 +S'reflected' +p54429 +tp54430 +a(g54427 +g54429 +S'on' +p54431 +tp54432 +a(g54429 +g54431 +S'his' +p54433 +tp54434 +a(g54431 +g54433 +S'message' +p54435 +tp54436 +a(g54433 +g54435 +S'and' +p54437 +tp54438 +a(g54435 +g54437 +S'queried' +p54439 +tp54440 +a(g54437 +g54439 +S'gabriel' +p54441 +tp54442 +a(g54439 +g54441 +S'about' +p54443 +tp54444 +a(g54441 +g54443 +S'her' +p54445 +tp54446 +a(g54443 +g54445 +S'fitness;' +p54447 +tp54448 +a(g54445 +g54447 +S'finally,' +p54449 +tp54450 +a(g54447 +g54449 +S'kneeling,' +p54451 +tp54452 +a(g54449 +g54451 +S'she' +p54453 +tp54454 +a(g54451 +g54453 +S'submitted' +p54455 +tp54456 +a(g54453 +g54455 +S'to' +p54457 +tp54458 +a(g54455 +g54457 +S"god's" +p54459 +tp54460 +a(g54457 +g54459 +S'will.' +p54461 +tp54462 +a(g54459 +g54461 +S'here' +p54463 +tp54464 +a(g54461 +g54463 +S"mary's" +p54465 +tp54466 +a(g54463 +g54465 +S'downcast' +p54467 +tp54468 +a(g54465 +g54467 +S'eyes' +p54469 +tp54470 +a(g54467 +g54469 +S'and' +p54471 +tp54472 +a(g54469 +g54471 +S'musing' +p54473 +tp54474 +a(g54471 +g54473 +S'gesture—hand' +p54475 +tp54476 +a(g54473 +g54475 +S'resting' +p54477 +tp54478 +a(g54475 +g54477 +S'tentatively' +p54479 +tp54480 +a(g54477 +g54479 +S'on' +p54481 +tp54482 +a(g54479 +g54481 +S'her' +p54483 +tp54484 +a(g54481 +g54483 +S'breast—suggest' +p54485 +tp54486 +a(g54483 +g54485 +S'the' +p54487 +tp54488 +a(g54485 +g54487 +S'second,' +p54489 +tp54490 +a(g54487 +g54489 +S'and' +p54491 +tp54492 +a(g54489 +g54491 +S'most' +p54493 +tp54494 +a(g54491 +g54493 +S'often' +p54495 +tp54496 +a(g54493 +g54495 +S'depicted,' +p54497 +tp54498 +a(g54495 +g54497 +S'of' +p54499 +tp54500 +a(g54497 +g54499 +S'these' +p54501 +tp54502 +a(g54499 +g54501 +S'stages:' +p54503 +tp54504 +a(g54501 +g54503 +S'reflection.' +p54505 +tp54506 +a(g54503 +g54505 +S'as' +p54507 +tp54508 +a(g54505 +g54507 +S'did' +p54509 +tp54510 +a(g54507 +g54509 +S'actors' +p54511 +tp54512 +a(g54509 +g54511 +S'in' +p54513 +tp54514 +a(g54511 +g54513 +S'the' +p54515 +tp54516 +a(g54513 +g54515 +S'religious' +p54517 +tp54518 +a(g54515 +g54517 +S'plays,' +p54519 +tp54520 +a(g54517 +g54519 +S'artists' +p54521 +tp54522 +a(g54519 +g54521 +S'used' +p54523 +tp54524 +a(g54521 +g54523 +S'gesture' +p54525 +tp54526 +a(g54523 +g54525 +S'and' +p54527 +tp54528 +a(g54525 +g54527 +S'posture' +p54529 +tp54530 +a(g54527 +g54529 +S'to' +p54531 +tp54532 +a(g54529 +g54531 +S'communicate' +p54533 +tp54534 +a(g54531 +g54533 +S'states' +p54535 +tp54536 +a(g54533 +g54535 +S'of' +p54537 +tp54538 +a(g54535 +g54537 +S'mind.' +p54539 +tp54540 +a(g54537 +g54539 +S'masolino' +p54541 +tp54542 +a(g54539 +g54541 +S'is' +p54543 +tp54544 +a(g54541 +g54543 +S'best' +p54545 +tp54546 +a(g54543 +g54545 +S'known' +p54547 +tp54548 +a(g54545 +g54547 +S'for' +p54549 +tp54550 +a(g54547 +g54549 +S'his' +p54551 +tp54552 +a(g54549 +g54551 +S'collaboration' +p54553 +tp54554 +a(g54551 +g54553 +S'with' +p54555 +tp54556 +a(g54553 +g54555 +S'masaccio' +p54557 +tp54558 +a(g54555 +g54557 +S'on' +p54559 +tp54560 +a(g54557 +g54559 +S'the' +p54561 +tp54562 +a(g54559 +g54561 +S'frescoes' +p54563 +tp54564 +a(g54561 +g54563 +S'of' +p54565 +tp54566 +a(g54563 +g54565 +S'the' +p54567 +tp54568 +a(g54565 +g54567 +S'brancacci' +p54569 +tp54570 +a(g54567 +g54569 +S'chapel' +p54571 +tp54572 +a(g54569 +g54571 +S'in' +p54573 +tp54574 +a(g54571 +g54573 +S'florence—and' +p54575 +tp54576 +a(g54573 +g54575 +S'for' +p54577 +tp54578 +a(g54575 +g54577 +S'his' +p54579 +tp54580 +a(g54577 +g54579 +S'failure' +p54581 +tp54582 +a(g54579 +g54581 +S'to' +p54583 +tp54584 +a(g54581 +g54583 +S'pursue' +p54585 +tp54586 +a(g54583 +g54585 +S"masaccio's" +p54587 +tp54588 +a(g54585 +g54587 +S'innovations.' +p54589 +tp54590 +a(g54587 +g54589 +S'masolino' +p54591 +tp54592 +a(g54589 +g54591 +S'continued' +p54593 +tp54594 +a(g54591 +g54593 +S'to' +p54595 +tp54596 +a(g54593 +g54595 +S'paint' +p54597 +tp54598 +a(g54595 +g54597 +S'in' +p54599 +tp54600 +a(g54597 +g54599 +S'a' +p54601 +tp54602 +a(g54599 +g54601 +S'style' +p54603 +tp54604 +a(g54601 +g54603 +S'that' +p54605 +tp54606 +a(g54603 +g54605 +S'was' +p54607 +tp54608 +a(g54605 +g54607 +S'delicate' +p54609 +tp54610 +a(g54607 +g54609 +S'and' +p54611 +tp54612 +a(g54609 +g54611 +S'ornamental.' +p54613 +tp54614 +a(g54611 +g54613 +S'his' +p54615 +tp54616 +a(g54613 +g54615 +S'colors' +p54617 +tp54618 +a(g54615 +g54617 +S'are' +p54619 +tp54620 +a(g54617 +g54619 +S'flowerlike,' +p54621 +tp54622 +a(g54619 +g54621 +S'his' +p54623 +tp54624 +a(g54621 +g54623 +S'figures' +p54625 +tp54626 +a(g54623 +g54625 +S'elegant' +p54627 +tp54628 +a(g54625 +g54627 +S'but' +p54629 +tp54630 +a(g54627 +g54629 +S'unreal.' +p54631 +tp54632 +a(g54629 +g54631 +S'they' +p54633 +tp54634 +a(g54631 +g54633 +S'do' +p54635 +tp54636 +a(g54633 +g54635 +S'not' +p54637 +tp54638 +a(g54635 +g54637 +S'seem' +p54639 +tp54640 +a(g54637 +g54639 +S'so' +p54641 +tp54642 +a(g54639 +g54641 +S'much' +p54643 +tp54644 +a(g54641 +g54643 +S'to' +p54645 +tp54646 +a(g54643 +g54645 +S'exist' +p54647 +tp54648 +a(g54645 +g54647 +S'within' +p54649 +tp54650 +a(g54647 +g54649 +S'the' +p54651 +tp54652 +a(g54649 +g54651 +S'painted' +p54653 +tp54654 +a(g54651 +g54653 +S'space' +p54655 +tp54656 +a(g54653 +g54655 +S'as' +p54657 +tp54658 +a(g54655 +g54657 +S'to' +p54659 +tp54660 +a(g54657 +g54659 +S'be' +p54661 +tp54662 +a(g54659 +g54661 +S'placed' +p54663 +tp54664 +a(g54661 +g54663 +S'before' +p54665 +tp54666 +a(g54663 +g54665 +S'it.' +p54667 +tp54668 +a(g54665 +g54667 +S'in' +p54669 +tp54670 +a(g54667 +g54669 +S'the' +p54671 +tp54672 +a(g54669 +g54671 +S'ceiling,' +p54673 +tp54674 +a(g54671 +g54673 +S'colorful' +p54675 +tp54676 +a(g54673 +g54675 +S'tiles,' +p54677 +tp54678 +a(g54675 +g54677 +S'a' +p54679 +tp54680 +a(g54677 +g54679 +S'device' +p54681 +tp54682 +a(g54679 +g54681 +S'used' +p54683 +tp54684 +a(g54681 +g54683 +S'by' +p54685 +tp54686 +a(g54683 +g54685 +S'masaccio' +p54687 +tp54688 +a(g54685 +g54687 +S'to' +p54689 +tp54690 +a(g54687 +g54689 +S'create' +p54691 +tp54692 +a(g54689 +g54691 +S'perspective' +p54693 +tp54694 +a(g54691 +g54693 +S'lines,' +p54695 +tp54696 +a(g54693 +g54695 +S'are' +p54697 +tp54698 +a(g54695 +g54697 +S'merely' +p54699 +tp54700 +a(g54697 +g54699 +S'decorative' +p54701 +tp54702 +a(g54699 +g54701 +S'and' +p54703 +tp54704 +a(g54701 +g54703 +S'leave' +p54705 +tp54706 +a(g54703 +g54705 +S'space' +p54707 +tp54708 +a(g54705 +g54707 +S'ambiguous.' +p54709 +tp54710 +a(g54707 +g54709 +S'during' +p54711 +tp54712 +a(g54709 +g54711 +S'the' +p54713 +tp54714 +a(g54711 +g54713 +S'federal' +p54715 +tp54716 +a(g54713 +g54715 +S'period,' +p54717 +tp54718 +a(g54715 +g54717 +S'from' +p54719 +tp54720 +a(g54717 +g54719 +S'about' +p54721 +tp54722 +a(g54719 +g54721 +S'1780' +p54723 +tp54724 +a(g54721 +g54723 +S'to' +p54725 +tp54726 +a(g54723 +g54725 +S'1820,' +p54727 +tp54728 +a(g54725 +g54727 +S'work' +p54729 +tp54730 +a(g54727 +g54729 +S'tables' +p54731 +tp54732 +a(g54729 +g54731 +S'became' +p54733 +tp54734 +a(g54731 +g54733 +S'popular,' +p54735 +tp54736 +a(g54733 +g54735 +S'and' +p54737 +tp54738 +a(g54735 +g54737 +S'many' +p54739 +tp54740 +a(g54737 +g54739 +S'new' +p54741 +tp54742 +a(g54739 +g54741 +S'types' +p54743 +tp54744 +a(g54741 +g54743 +S'were' +p54745 +tp54746 +a(g54743 +g54745 +S'developed.' +p54747 +tp54748 +a(g54745 +g54747 +S"sheraton's" +p54749 +tp54750 +a(g54747 +g54749 +S'in' +p54751 +tp54752 +a(g54749 +g54751 +S'addition' +p54753 +tp54754 +a(g54751 +g54753 +S'to' +p54755 +tp54756 +a(g54753 +g54755 +S"hepplewhite's" +p54757 +tp54758 +a(g54755 +g54757 +S'as' +p54759 +tp54760 +a(g54757 +g54759 +S'an' +p54761 +tp54762 +a(g54759 +g54761 +S'alternative' +p54763 +tp54764 +a(g54761 +g54763 +S'to' +p54765 +tp54766 +a(g54763 +g54765 +S'inlaid' +p54767 +tp54768 +a(g54765 +g54767 +S'ornament,' +p54769 +tp54770 +a(g54767 +g54769 +S'sheraton' +p54771 +tp54772 +a(g54769 +g54771 +S'designs' +p54773 +tp54774 +a(g54771 +g54773 +S'customarily' +p54775 +tp54776 +a(g54773 +g54775 +S'rely' +p54777 +tp54778 +a(g54775 +g54777 +S'upon' +p54779 +tp54780 +a(g54777 +g54779 +S'carved' +p54781 +tp54782 +a(g54779 +g54781 +S'decoration.' +p54783 +tp54784 +a(g54781 +g54783 +S'this' +p54785 +tp54786 +a(g54783 +g54785 +S'well-proportioned' +p54787 +tp54788 +a(g54785 +g54787 +S'mahogany' +p54789 +tp54790 +a(g54787 +g54789 +S'sofa' +p54791 +tp54792 +a(g54789 +g54791 +S'displays' +p54793 +tp54794 +a(g54791 +g54793 +S'expertly' +p54795 +tp54796 +a(g54793 +g54795 +S'carved,' +p54797 +tp54798 +a(g54795 +g54797 +S'reeded' +p54799 +tp54800 +a(g54797 +g54799 +S'arms' +p54801 +tp54802 +a(g54799 +g54801 +S'that' +p54803 +tp54804 +a(g54801 +g54803 +S'slope' +p54805 +tp54806 +a(g54803 +g54805 +S'gracefully' +p54807 +tp54808 +a(g54805 +g54807 +S'to' +p54809 +tp54810 +a(g54807 +g54809 +S'join' +p54811 +tp54812 +a(g54809 +g54811 +S'slender' +p54813 +tp54814 +a(g54811 +g54813 +S'reeded' +p54815 +tp54816 +a(g54813 +g54815 +S'and' +p54817 +tp54818 +a(g54815 +g54817 +S'turned' +p54819 +tp54820 +a(g54817 +g54819 +S'front' +p54821 +tp54822 +a(g54819 +g54821 +S'posts.' +p54823 +tp54824 +a(g54821 +g54823 +S'the' +p54825 +tp54826 +a(g54823 +g54825 +S'front' +p54827 +tp54828 +a(g54825 +g54827 +S'legs,' +p54829 +tp54830 +a(g54827 +g54829 +S'too,' +p54831 +tp54832 +a(g54829 +g54831 +S'are' +p54833 +tp54834 +a(g54831 +g54833 +S'finely' +p54835 +tp54836 +a(g54833 +g54835 +S'reeded,' +p54837 +tp54838 +a(g54835 +g54837 +S'and' +p54839 +tp54840 +a(g54837 +g54839 +S'a' +p54841 +tp54842 +a(g54839 +g54841 +S'long' +p54843 +tp54844 +a(g54841 +g54843 +S'triple' +p54845 +tp54846 +a(g54843 +g54845 +S'panel' +p54847 +tp54848 +a(g54845 +g54847 +S'crest' +p54849 +tp54850 +a(g54847 +g54849 +S'rail' +p54851 +tp54852 +a(g54849 +g54851 +S'is' +p54853 +tp54854 +a(g54851 +g54853 +S'adorned' +p54855 +tp54856 +a(g54853 +g54855 +S'with' +p54857 +tp54858 +a(g54855 +g54857 +S'elegantly' +p54859 +tp54860 +a(g54857 +g54859 +S'carved' +p54861 +tp54862 +a(g54859 +g54861 +S'swags,' +p54863 +tp54864 +a(g54861 +g54863 +S'bow-knots,' +p54865 +tp54866 +a(g54863 +g54865 +S'and' +p54867 +tp54868 +a(g54865 +g54867 +S'tassels.' +p54869 +tp54870 +a(g54867 +g54869 +S'the' +p54871 +tp54872 +a(g54869 +g54871 +S'sofa' +p54873 +tp54874 +a(g54871 +g54873 +S'was' +p54875 +tp54876 +a(g54873 +g54875 +S'made' +p54877 +tp54878 +a(g54875 +g54877 +S'between' +p54879 +tp54880 +a(g54877 +g54879 +S'1810' +p54881 +tp54882 +a(g54879 +g54881 +S'and' +p54883 +tp54884 +a(g54881 +g54883 +S'1815' +p54885 +tp54886 +a(g54883 +g54885 +S'by' +p54887 +tp54888 +a(g54885 +g54887 +S'duncan' +p54889 +tp54890 +a(g54887 +g54889 +S'phyfe,' +p54891 +tp54892 +a(g54889 +g54891 +S'a' +p54893 +tp54894 +a(g54891 +g54893 +S'well-known' +p54895 +tp54896 +a(g54893 +g54895 +S'new' +p54897 +tp54898 +a(g54895 +g54897 +S'york' +p54899 +tp54900 +a(g54897 +g54899 +S'cabinetmaker;' +p54901 +tp54902 +a(g54899 +g54901 +S'it' +p54903 +tp54904 +a(g54901 +g54903 +S'represents' +p54905 +tp54906 +a(g54903 +g54905 +S'an' +p54907 +tp54908 +a(g54905 +g54907 +S'early' +p54909 +tp54910 +a(g54907 +g54909 +S'stage' +p54911 +tp54912 +a(g54909 +g54911 +S'in' +p54913 +tp54914 +a(g54911 +g54913 +S'his' +p54915 +tp54916 +a(g54913 +g54915 +S'career,' +p54917 +tp54918 +a(g54915 +g54917 +S'when' +p54919 +tp54920 +a(g54917 +g54919 +S'he' +p54921 +tp54922 +a(g54919 +g54921 +S'was' +p54923 +tp54924 +a(g54921 +g54923 +S'producing' +p54925 +tp54926 +a(g54923 +g54925 +S'furniture' +p54927 +tp54928 +a(g54925 +g54927 +S'in' +p54929 +tp54930 +a(g54927 +g54929 +S'the' +p54931 +tp54932 +a(g54929 +g54931 +S'sheraton' +p54933 +tp54934 +a(g54931 +g54933 +S'style.' +p54935 +tp54936 +a(g54933 +g54935 +S'the' +p54937 +tp54938 +a(g54935 +g54937 +S'wainscot' +p54939 +tp54940 +a(g54937 +g54939 +S'chair' +p54941 +tp54942 +a(g54939 +g54941 +S'was' +p54943 +tp54944 +a(g54941 +g54943 +S'the' +p54945 +tp54946 +a(g54943 +g54945 +S'fine' +p54947 +tp54948 +a(g54945 +g54947 +S'chair' +p54949 +tp54950 +a(g54947 +g54949 +S'of' +p54951 +tp54952 +a(g54949 +g54951 +S'the' +p54953 +tp54954 +a(g54951 +g54953 +S'jacobean' +p54955 +tp54956 +a(g54953 +g54955 +S'period.' +p54957 +tp54958 +a(g54955 +g54957 +S'this' +p54959 +tp54960 +a(g54957 +g54959 +S'one' +p54961 +tp54962 +a(g54959 +g54961 +S'is' +p54963 +tp54964 +a(g54961 +g54963 +S'made' +p54965 +tp54966 +a(g54963 +g54965 +S'of' +p54967 +tp54968 +a(g54965 +g54967 +S'oak,' +p54969 +tp54970 +a(g54967 +g54969 +S'a' +p54971 +tp54972 +a(g54969 +g54971 +S'wood' +p54973 +tp54974 +a(g54971 +g54973 +S'commonly' +p54975 +tp54976 +a(g54973 +g54975 +S'used' +p54977 +tp54978 +a(g54975 +g54977 +S'in' +p54979 +tp54980 +a(g54977 +g54979 +S'the' +p54981 +tp54982 +a(g54979 +g54981 +S'seventeenth' +p54983 +tp54984 +a(g54981 +g54983 +S'century.' +p54985 +tp54986 +a(g54983 +g54985 +S'the' +p54987 +tp54988 +a(g54985 +g54987 +S'paneled' +p54989 +tp54990 +a(g54987 +g54989 +S'back' +p54991 +tp54992 +a(g54989 +g54991 +S'of' +p54993 +tp54994 +a(g54991 +g54993 +S'the' +p54995 +tp54996 +a(g54993 +g54995 +S'chair' +p54997 +tp54998 +a(g54995 +g54997 +S'is' +p54999 +tp55000 +a(g54997 +g54999 +S'similar' +p55001 +tp55002 +a(g54999 +g55001 +S'to' +p55003 +tp55004 +a(g55001 +g55003 +S'panels' +p55005 +tp55006 +a(g55003 +g55005 +S'on' +p55007 +tp55008 +a(g55005 +g55007 +S'chests' +p55009 +tp55010 +a(g55007 +g55009 +S'and' +p55011 +tp55012 +a(g55009 +g55011 +S'cupboards' +p55013 +tp55014 +a(g55011 +g55013 +S'of' +p55015 +tp55016 +a(g55013 +g55015 +S'the' +p55017 +tp55018 +a(g55015 +g55017 +S'same' +p55019 +tp55020 +a(g55017 +g55019 +S'period.' +p55021 +tp55022 +a(g55019 +g55021 +S'this' +p55023 +tp55024 +a(g55021 +g55023 +S'aspect' +p55025 +tp55026 +a(g55023 +g55025 +S'of' +p55027 +tp55028 +a(g55025 +g55027 +S'jacobean' +p55029 +tp55030 +a(g55027 +g55029 +S'style' +p55031 +tp55032 +a(g55029 +g55031 +S'is' +p55033 +tp55034 +a(g55031 +g55033 +S'derived' +p55035 +tp55036 +a(g55033 +g55035 +S'from' +p55037 +tp55038 +a(g55035 +g55037 +S'wainscoting,' +p55039 +tp55040 +a(g55037 +g55039 +S'the' +p55041 +tp55042 +a(g55039 +g55041 +S'wooden' +p55043 +tp55044 +a(g55041 +g55043 +S'paneling' +p55045 +tp55046 +a(g55043 +g55045 +S'used' +p55047 +tp55048 +a(g55045 +g55047 +S'in' +p55049 +tp55050 +a(g55047 +g55049 +S'elizabethan' +p55051 +tp55052 +a(g55049 +g55051 +S'rooms.' +p55053 +tp55054 +a(g55051 +g55053 +S'the' +p55055 +tp55056 +a(g55053 +g55055 +S'arched' +p55057 +tp55058 +a(g55055 +g55057 +S'niche' +p55059 +tp55060 +a(g55057 +g55059 +S'cut' +p55061 +tp55062 +a(g55059 +g55061 +S'into' +p55063 +tp55064 +a(g55061 +g55063 +S'the' +p55065 +tp55066 +a(g55063 +g55065 +S'center' +p55067 +tp55068 +a(g55065 +g55067 +S'of' +p55069 +tp55070 +a(g55067 +g55069 +S'the' +p55071 +tp55072 +a(g55069 +g55071 +S'seat' +p55073 +tp55074 +a(g55071 +g55073 +S'back' +p55075 +tp55076 +a(g55073 +g55075 +S'and' +p55077 +tp55078 +a(g55075 +g55077 +S'repeated' +p55079 +tp55080 +a(g55077 +g55079 +S'in' +p55081 +tp55082 +a(g55079 +g55081 +S'the' +p55083 +tp55084 +a(g55081 +g55083 +S'carved' +p55085 +tp55086 +a(g55083 +g55085 +S'arcades' +p55087 +tp55088 +a(g55085 +g55087 +S'of' +p55089 +tp55090 +a(g55087 +g55089 +S'the' +p55091 +tp55092 +a(g55089 +g55091 +S'seat' +p55093 +tp55094 +a(g55091 +g55093 +S'rail' +p55095 +tp55096 +a(g55093 +g55095 +S'is' +p55097 +tp55098 +a(g55095 +g55097 +S'another' +p55099 +tp55100 +a(g55097 +g55099 +S'decorative' +p55101 +tp55102 +a(g55099 +g55101 +S'motif' +p55103 +tp55104 +a(g55101 +g55103 +S'adapted' +p55105 +tp55106 +a(g55103 +g55105 +S'from' +p55107 +tp55108 +a(g55105 +g55107 +S'an' +p55109 +tp55110 +a(g55107 +g55109 +S'architectural' +p55111 +tp55112 +a(g55109 +g55111 +S'form.' +p55113 +tp55114 +a(g55111 +g55113 +S'notice' +p55115 +tp55116 +a(g55113 +g55115 +S'the' +p55117 +tp55118 +a(g55115 +g55117 +S'turned' +p55119 +tp55120 +a(g55117 +g55119 +S'bulbous' +p55121 +tp55122 +a(g55119 +g55121 +S'shape' +p55123 +tp55124 +a(g55121 +g55123 +S'of' +p55125 +tp55126 +a(g55123 +g55125 +S'the' +p55127 +tp55128 +a(g55125 +g55127 +S'front' +p55129 +tp55130 +a(g55127 +g55129 +S'legs' +p55131 +tp55132 +a(g55129 +g55131 +S'and' +p55133 +tp55134 +a(g55131 +g55133 +S'the' +p55135 +tp55136 +a(g55133 +g55135 +S'arm' +p55137 +tp55138 +a(g55135 +g55137 +S'posts,' +p55139 +tp55140 +a(g55137 +g55139 +S'which' +p55141 +tp55142 +a(g55139 +g55141 +S'are' +p55143 +tp55144 +a(g55141 +g55143 +S'a' +p55145 +tp55146 +a(g55143 +g55145 +S'characteristic' +p55147 +tp55148 +a(g55145 +g55147 +S'feature' +p55149 +tp55150 +a(g55147 +g55149 +S'of' +p55151 +tp55152 +a(g55149 +g55151 +S'jacobean' +p55153 +tp55154 +a(g55151 +g55153 +S'furniture.' +p55155 +tp55156 +a(g55153 +g55155 +S'the' +p55157 +tp55158 +a(g55155 +g55157 +S'exterior' +p55159 +tp55160 +a(g55157 +g55159 +S'of' +p55161 +tp55162 +a(g55159 +g55161 +S'this' +p55163 +tp55164 +a(g55161 +g55163 +S'vase' +p55165 +tp55166 +a(g55163 +g55165 +S'is' +p55167 +tp55168 +a(g55165 +g55167 +S'decorated' +p55169 +tp55170 +a(g55167 +g55169 +S'with' +p55171 +tp55172 +a(g55169 +g55171 +S'garden' +p55173 +tp55174 +a(g55171 +g55173 +S'rocks,' +p55175 +tp55176 +a(g55173 +g55175 +S'blossoming' +p55177 +tp55178 +a(g55175 +g55177 +S'plum' +p55179 +tp55180 +a(g55177 +g55179 +S'trees,' +p55181 +tp55182 +a(g55179 +g55181 +S'bamboo,' +p55183 +tp55184 +a(g55181 +g55183 +S'and' +p55185 +tp55186 +a(g55183 +g55185 +S'birds' +p55187 +tp55188 +a(g55185 +g55187 +S'against' +p55189 +tp55190 +a(g55187 +g55189 +S'a' +p55191 +tp55192 +a(g55189 +g55191 +S'black' +p55193 +tp55194 +a(g55191 +g55193 +S'ground.' +p55195 +tp55196 +a(g55193 +g55195 +S'the' +p55197 +tp55198 +a(g55195 +g55197 +S'painting' +p55199 +tp55200 +a(g55197 +g55199 +S'is' +p55201 +tp55202 +a(g55199 +g55201 +S'accomplished' +p55203 +tp55204 +a(g55201 +g55203 +S'but' +p55205 +tp55206 +a(g55203 +g55205 +S'rather' +p55207 +tp55208 +a(g55205 +g55207 +S'perfunctory.' +p55209 +tp55210 +a(g55207 +g55209 +S'the' +p55211 +tp55212 +a(g55209 +g55211 +S'full' +p55213 +tp55214 +a(g55211 +g55213 +S'(text' +p55215 +tp55216 +a(g55213 +g55215 +S'by' +p55217 +tp55218 +a(g55215 +g55217 +S'stephen' +p55219 +tp55220 +a(g55217 +g55219 +S'little,' +p55221 +tp55222 +a(g55219 +g55221 +S'published' +p55223 +tp55224 +a(g55221 +g55223 +S'in' +p55225 +tp55226 +a(g55223 +g55225 +S'the' +p55227 +tp55228 +a(g55225 +g55227 +S'nga' +p55229 +tp55230 +a(g55227 +g55229 +S'systematic' +p55231 +tp55232 +a(g55229 +g55231 +S'catalogue:' +p55233 +tp55234 +a(g55231 +g55233 +S'the' +p55235 +tp55236 +a(g55233 +g55235 +S'trestle' +p55237 +tp55238 +a(g55235 +g55237 +S'table,' +p55239 +tp55240 +a(g55237 +g55239 +S'which' +p55241 +tp55242 +a(g55239 +g55241 +S'is' +p55243 +tp55244 +a(g55241 +g55243 +S'described' +p55245 +tp55246 +a(g55243 +g55245 +S'in' +p55247 +tp55248 +a(g55245 +g55247 +S'mid-seventeenth-century' +p55249 +tp55250 +a(g55247 +g55249 +S'inventories' +p55251 +tp55252 +a(g55249 +g55251 +S'as' +p55253 +tp55254 +a(g55251 +g55253 +S'a' +p55255 +tp55256 +a(g55253 +g55255 +S'"table' +p55257 +tp55258 +a(g55255 +g55257 +S'board' +p55259 +tp55260 +a(g55257 +g55259 +S'and' +p55261 +tp55262 +a(g55259 +g55261 +S'frame,"' +p55263 +tp55264 +a(g55261 +g55263 +S'is' +p55265 +tp55266 +a(g55263 +g55265 +S'the' +p55267 +tp55268 +a(g55265 +g55267 +S'oldest' +p55269 +tp55270 +a(g55267 +g55269 +S'form' +p55271 +tp55272 +a(g55269 +g55271 +S'of' +p55273 +tp55274 +a(g55271 +g55273 +S'american' +p55275 +tp55276 +a(g55273 +g55275 +S'table.' +p55277 +tp55278 +a(g55275 +g55277 +S'in' +p55279 +tp55280 +a(g55277 +g55279 +S'this' +p55281 +tp55282 +a(g55279 +g55281 +S'new' +p55283 +tp55284 +a(g55281 +g55283 +S'england' +p55285 +tp55286 +a(g55283 +g55285 +S'example,' +p55287 +tp55288 +a(g55285 +g55287 +S'the' +p55289 +tp55290 +a(g55287 +g55289 +S'"table' +p55291 +tp55292 +a(g55289 +g55291 +S'board"' +p55293 +tp55294 +a(g55291 +g55293 +S'is' +p55295 +tp55296 +a(g55293 +g55295 +S'a' +p55297 +tp55298 +a(g55295 +g55297 +S'single' +p55299 +tp55300 +a(g55297 +g55299 +S'plank' +p55301 +tp55302 +a(g55299 +g55301 +S'of' +p55303 +tp55304 +a(g55301 +g55303 +S'pine' +p55305 +tp55306 +a(g55303 +g55305 +S'two' +p55307 +tp55308 +a(g55305 +g55307 +S'feet' +p55309 +tp55310 +a(g55307 +g55309 +S'wide' +p55311 +tp55312 +a(g55309 +g55311 +S'and' +p55313 +tp55314 +a(g55311 +g55313 +S'over' +p55315 +tp55316 +a(g55313 +g55315 +S'twelve' +p55317 +tp55318 +a(g55315 +g55317 +S'feet' +p55319 +tp55320 +a(g55317 +g55319 +S'in' +p55321 +tp55322 +a(g55319 +g55321 +S'length.' +p55323 +tp55324 +a(g55321 +g55323 +S'the' +p55325 +tp55326 +a(g55323 +g55325 +S'long,' +p55327 +tp55328 +a(g55325 +g55327 +S'narrow' +p55329 +tp55330 +a(g55327 +g55329 +S'plank' +p55331 +tp55332 +a(g55329 +g55331 +S'rests' +p55333 +tp55334 +a(g55331 +g55333 +S'on' +p55335 +tp55336 +a(g55333 +g55335 +S'a' +p55337 +tp55338 +a(g55335 +g55337 +S'frame' +p55339 +tp55340 +a(g55337 +g55339 +S'consisting' +p55341 +tp55342 +a(g55339 +g55341 +S'of' +p55343 +tp55344 +a(g55341 +g55343 +S'three' +p55345 +tp55346 +a(g55343 +g55345 +S'oak' +p55347 +tp55348 +a(g55345 +g55347 +S'trestles.' +p55349 +tp55350 +a(g55347 +g55349 +S'the' +p55351 +tp55352 +a(g55349 +g55351 +S'trestles' +p55353 +tp55354 +a(g55351 +g55353 +S'are' +p55355 +tp55356 +a(g55353 +g55355 +S'held' +p55357 +tp55358 +a(g55355 +g55357 +S'in' +p55359 +tp55360 +a(g55357 +g55359 +S'position' +p55361 +tp55362 +a(g55359 +g55361 +S'by' +p55363 +tp55364 +a(g55361 +g55363 +S'a' +p55365 +tp55366 +a(g55363 +g55365 +S'pine' +p55367 +tp55368 +a(g55365 +g55367 +S'brace' +p55369 +tp55370 +a(g55367 +g55369 +S'that' +p55371 +tp55372 +a(g55369 +g55371 +S'passes' +p55373 +tp55374 +a(g55371 +g55373 +S'through' +p55375 +tp55376 +a(g55373 +g55375 +S'them' +p55377 +tp55378 +a(g55375 +g55377 +S'and' +p55379 +tp55380 +a(g55377 +g55379 +S'is' +p55381 +tp55382 +a(g55379 +g55381 +S'pegged' +p55383 +tp55384 +a(g55381 +g55383 +S'into' +p55385 +tp55386 +a(g55383 +g55385 +S'place.' +p55387 +tp55388 +a(g55385 +g55387 +S'between' +p55389 +tp55390 +a(g55387 +g55389 +S'1760' +p55391 +tp55392 +a(g55389 +g55391 +S'and' +p55393 +tp55394 +a(g55391 +g55393 +S'1770,' +p55395 +tp55396 +a(g55393 +g55395 +S'american' +p55397 +tp55398 +a(g55395 +g55397 +S'highboys' +p55399 +tp55400 +a(g55397 +g55399 +S'became' +p55401 +tp55402 +a(g55399 +g55401 +S'very' +p55403 +tp55404 +a(g55401 +g55403 +S'ornate.' +p55405 +tp55406 +a(g55403 +g55405 +S'the' +p55407 +tp55408 +a(g55405 +g55407 +S'most' +p55409 +tp55410 +a(g55407 +g55409 +S'elaborate' +p55411 +tp55412 +a(g55409 +g55411 +S'pieces' +p55413 +tp55414 +a(g55411 +g55413 +S'came' +p55415 +tp55416 +a(g55413 +g55415 +S'from' +p55417 +tp55418 +a(g55415 +g55417 +S'philadelphia,' +p55419 +tp55420 +a(g55417 +g55419 +S'which' +p55421 +tp55422 +a(g55419 +g55421 +S'was' +p55423 +tp55424 +a(g55421 +g55423 +S'a' +p55425 +tp55426 +a(g55423 +g55425 +S'center' +p55427 +tp55428 +a(g55425 +g55427 +S'of' +p55429 +tp55430 +a(g55427 +g55429 +S'style' +p55431 +tp55432 +a(g55429 +g55431 +S'and' +p55433 +tp55434 +a(g55431 +g55433 +S'culture' +p55435 +tp55436 +a(g55433 +g55435 +S'and' +p55437 +tp55438 +a(g55435 +g55437 +S'one' +p55439 +tp55440 +a(g55437 +g55439 +S'of' +p55441 +tp55442 +a(g55439 +g55441 +S'the' +p55443 +tp55444 +a(g55441 +g55443 +S'most' +p55445 +tp55446 +a(g55443 +g55445 +S'important' +p55447 +tp55448 +a(g55445 +g55447 +S'american' +p55449 +tp55450 +a(g55447 +g55449 +S'cities' +p55451 +tp55452 +a(g55449 +g55451 +S'both' +p55453 +tp55454 +a(g55451 +g55453 +S'before' +p55455 +tp55456 +a(g55453 +g55455 +S'and' +p55457 +tp55458 +a(g55455 +g55457 +S'after' +p55459 +tp55460 +a(g55457 +g55459 +S'the' +p55461 +tp55462 +a(g55459 +g55461 +S'revolution.' +p55463 +tp55464 +a(g55461 +g55463 +S'this' +p55465 +tp55466 +a(g55463 +g55465 +S'highboy' +p55467 +tp55468 +a(g55465 +g55467 +S'was' +p55469 +tp55470 +a(g55467 +g55469 +S'made' +p55471 +tp55472 +a(g55469 +g55471 +S'by' +p55473 +tp55474 +a(g55471 +g55473 +S'william' +p55475 +tp55476 +a(g55473 +g55475 +S'savery,' +p55477 +tp55478 +a(g55475 +g55477 +S'a' +p55479 +tp55480 +a(g55477 +g55479 +S'leading' +p55481 +tp55482 +a(g55479 +g55481 +S'cabinetmaker' +p55483 +tp55484 +a(g55481 +g55483 +S'of' +p55485 +tp55486 +a(g55483 +g55485 +S'philadelphia.' +p55487 +tp55488 +a(g55485 +g55487 +S'it' +p55489 +tp55490 +a(g55487 +g55489 +S'has' +p55491 +tp55492 +a(g55489 +g55491 +S'a' +p55493 +tp55494 +a(g55491 +g55493 +S'carved' +p55495 +tp55496 +a(g55493 +g55495 +S'scrolled' +p55497 +tp55498 +a(g55495 +g55497 +S'bonnet' +p55499 +tp55500 +a(g55497 +g55499 +S'top;' +p55501 +tp55502 +a(g55499 +g55501 +S'between' +p55503 +tp55504 +a(g55501 +g55503 +S'the' +p55505 +tp55506 +a(g55503 +g55505 +S'scrolls' +p55507 +tp55508 +a(g55505 +g55507 +S'is' +p55509 +tp55510 +a(g55507 +g55509 +S'a' +p55511 +tp55512 +a(g55509 +g55511 +S'lavishly' +p55513 +tp55514 +a(g55511 +g55513 +S'carved' +p55515 +tp55516 +a(g55513 +g55515 +S'design' +p55517 +tp55518 +a(g55515 +g55517 +S'of' +p55519 +tp55520 +a(g55517 +g55519 +S'leaves' +p55521 +tp55522 +a(g55519 +g55521 +S'and' +p55523 +tp55524 +a(g55521 +g55523 +S'tendrils.' +p55525 +tp55526 +a(g55523 +g55525 +S'the' +p55527 +tp55528 +a(g55525 +g55527 +S'quarter' +p55529 +tp55530 +a(g55527 +g55529 +S'columns' +p55531 +tp55532 +a(g55529 +g55531 +S'at' +p55533 +tp55534 +a(g55531 +g55533 +S'the' +p55535 +tp55536 +a(g55533 +g55535 +S'front' +p55537 +tp55538 +a(g55535 +g55537 +S'corners' +p55539 +tp55540 +a(g55537 +g55539 +S'are' +p55541 +tp55542 +a(g55539 +g55541 +S'ornamented' +p55543 +tp55544 +a(g55541 +g55543 +S'with' +p55545 +tp55546 +a(g55543 +g55545 +S'vine' +p55547 +tp55548 +a(g55545 +g55547 +S'carving.' +p55549 +tp55550 +a(g55547 +g55549 +S'carved' +p55551 +tp55552 +a(g55549 +g55551 +S'designs' +p55553 +tp55554 +a(g55551 +g55553 +S'in' +p55555 +tp55556 +a(g55553 +g55555 +S'the' +p55557 +tp55558 +a(g55555 +g55557 +S'acanthus' +p55559 +tp55560 +a(g55557 +g55559 +S'motif' +p55561 +tp55562 +a(g55559 +g55561 +S'appear' +p55563 +tp55564 +a(g55561 +g55563 +S'on' +p55565 +tp55566 +a(g55563 +g55565 +S'the' +p55567 +tp55568 +a(g55565 +g55567 +S'cabriole' +p55569 +tp55570 +a(g55567 +g55569 +S'legs,' +p55571 +tp55572 +a(g55569 +g55571 +S'and' +p55573 +tp55574 +a(g55571 +g55573 +S'carved' +p55575 +tp55576 +a(g55573 +g55575 +S'shell-like' +p55577 +tp55578 +a(g55575 +g55577 +S'forms' +p55579 +tp55580 +a(g55577 +g55579 +S'ornament' +p55581 +tp55582 +a(g55579 +g55581 +S'the' +p55583 +tp55584 +a(g55581 +g55583 +S'shaped' +p55585 +tp55586 +a(g55583 +g55585 +S'skirting.' +p55587 +tp55588 +a(g55585 +g55587 +S'the' +p55589 +tp55590 +a(g55587 +g55589 +S'elaborate' +p55591 +tp55592 +a(g55589 +g55591 +S'carving,' +p55593 +tp55594 +a(g55591 +g55593 +S'a' +p55595 +tp55596 +a(g55593 +g55595 +S'combination' +p55597 +tp55598 +a(g55595 +g55597 +S'of' +p55599 +tp55600 +a(g55597 +g55599 +S'motifs' +p55601 +tp55602 +a(g55599 +g55601 +S'based' +p55603 +tp55604 +a(g55601 +g55603 +S'upon' +p55605 +tp55606 +a(g55603 +g55605 +S'rhythmically' +p55607 +tp55608 +a(g55605 +g55607 +S'intertwined' +p55609 +tp55610 +a(g55607 +g55609 +S'curves,' +p55611 +tp55612 +a(g55609 +g55611 +S'produces' +p55613 +tp55614 +a(g55611 +g55613 +S'an' +p55615 +tp55616 +a(g55613 +g55615 +S'effect' +p55617 +tp55618 +a(g55615 +g55617 +S'of' +p55619 +tp55620 +a(g55617 +g55619 +S'great' +p55621 +tp55622 +a(g55619 +g55621 +S'decorative' +p55623 +tp55624 +a(g55621 +g55623 +S'richness,' +p55625 +tp55626 +a(g55623 +g55625 +S'characteristic' +p55627 +tp55628 +a(g55625 +g55627 +S'of' +p55629 +tp55630 +a(g55627 +g55629 +S'the' +p55631 +tp55632 +a(g55629 +g55631 +S'fully' +p55633 +tp55634 +a(g55631 +g55633 +S'developed' +p55635 +tp55636 +a(g55633 +g55635 +S'chippendale' +p55637 +tp55638 +a(g55635 +g55637 +S'style' +p55639 +tp55640 +a(g55637 +g55639 +S'as' +p55641 +tp55642 +a(g55639 +g55641 +S'practiced' +p55643 +tp55644 +a(g55641 +g55643 +S'by' +p55645 +tp55646 +a(g55643 +g55645 +S'the' +p55647 +tp55648 +a(g55645 +g55647 +S'cabinetmakers' +p55649 +tp55650 +a(g55647 +g55649 +S'of' +p55651 +tp55652 +a(g55649 +g55651 +S'philadelphia.' +p55653 +tp55654 +a(g55651 +g55653 +S'the' +p55655 +tp55656 +a(g55653 +g55655 +S'chippendale' +p55657 +tp55658 +a(g55655 +g55657 +S'style' +p55659 +tp55660 +a(g55657 +g55659 +S'is' +p55661 +tp55662 +a(g55659 +g55661 +S'an' +p55663 +tp55664 +a(g55661 +g55663 +S'ornate' +p55665 +tp55666 +a(g55663 +g55665 +S'variation' +p55667 +tp55668 +a(g55665 +g55667 +S'of' +p55669 +tp55670 +a(g55667 +g55669 +S'queen' +p55671 +tp55672 +a(g55669 +g55671 +S'anne' +p55673 +tp55674 +a(g55671 +g55673 +S'designs.' +p55675 +tp55676 +a(g55673 +g55675 +S'the' +p55677 +tp55678 +a(g55675 +g55677 +S'style' +p55679 +tp55680 +a(g55677 +g55679 +S'is' +p55681 +tp55682 +a(g55679 +g55681 +S'named' +p55683 +tp55684 +a(g55681 +g55683 +S'for' +p55685 +tp55686 +a(g55683 +g55685 +S'an' +p55687 +tp55688 +a(g55685 +g55687 +S'english' +p55689 +tp55690 +a(g55687 +g55689 +S'cabinetmaker,' +p55691 +tp55692 +a(g55689 +g55691 +S'thomas' +p55693 +tp55694 +a(g55691 +g55693 +S'chippendale,' +p55695 +tp55696 +a(g55693 +g55695 +S'whose' +p55697 +tp55698 +a(g55695 +g55697 +S'volumes' +p55699 +tp55700 +a(g55697 +g55699 +S'of' +p55701 +tp55702 +a(g55699 +g55701 +S'plates' +p55703 +tp55704 +a(g55701 +g55703 +S'and' +p55705 +tp55706 +a(g55703 +g55705 +S'text,' +p55707 +tp55708 +a(g55705 +g55707 +S'as' +p55709 +tp55710 +a(g55707 +g55709 +S'the' +p55711 +tp55712 +a(g55709 +g55711 +S'popular' +p55713 +tp55714 +a(g55711 +g55713 +S'william' +p55715 +tp55716 +a(g55713 +g55715 +S'and' +p55717 +tp55718 +a(g55715 +g55717 +S'mary' +p55719 +tp55720 +a(g55717 +g55719 +S'forms' +p55721 +tp55722 +a(g55719 +g55721 +S'were' +p55723 +tp55724 +a(g55721 +g55723 +S'refined' +p55725 +tp55726 +a(g55723 +g55725 +S'to' +p55727 +tp55728 +a(g55725 +g55727 +S'meet' +p55729 +tp55730 +a(g55727 +g55729 +S'new' +p55731 +tp55732 +a(g55729 +g55731 +S'demands' +p55733 +tp55734 +a(g55731 +g55733 +S'for' +p55735 +tp55736 +a(g55733 +g55735 +S'elegant' +p55737 +tp55738 +a(g55735 +g55737 +S'furniture,' +p55739 +tp55740 +a(g55737 +g55739 +S'another' +p55741 +tp55742 +a(g55739 +g55741 +S'style' +p55743 +tp55744 +a(g55741 +g55743 +S'evolved,' +p55745 +tp55746 +a(g55743 +g55745 +S'named' +p55747 +tp55748 +a(g55745 +g55747 +S'after' +p55749 +tp55750 +a(g55747 +g55749 +S'queen' +p55751 +tp55752 +a(g55749 +g55751 +S'anne,' +p55753 +tp55754 +a(g55751 +g55753 +S'who' +p55755 +tp55756 +a(g55753 +g55755 +S'ruled' +p55757 +tp55758 +a(g55755 +g55757 +S'england' +p55759 +tp55760 +a(g55757 +g55759 +S'from' +p55761 +tp55762 +a(g55759 +g55761 +S'1702' +p55763 +tp55764 +a(g55761 +g55763 +S'to' +p55765 +tp55766 +a(g55763 +g55765 +S'1714.' +p55767 +tp55768 +a(g55765 +g55767 +S'american' +p55769 +tp55770 +a(g55767 +g55769 +S'queen' +p55771 +tp55772 +a(g55769 +g55771 +S'anne' +p55773 +tp55774 +a(g55771 +g55773 +S'furniture' +p55775 +tp55776 +a(g55773 +g55775 +S'was' +p55777 +tp55778 +a(g55775 +g55777 +S'produced' +p55779 +tp55780 +a(g55777 +g55779 +S'from' +p55781 +tp55782 +a(g55779 +g55781 +S'the' +p55783 +tp55784 +a(g55781 +g55783 +S'1720s' +p55785 +tp55786 +a(g55783 +g55785 +S'until' +p55787 +tp55788 +a(g55785 +g55787 +S'about' +p55789 +tp55790 +a(g55787 +g55789 +S'1750' +p55791 +tp55792 +a(g55789 +g55791 +S'and' +p55793 +tp55794 +a(g55791 +g55793 +S'is' +p55795 +tp55796 +a(g55793 +g55795 +S'characterized' +p55797 +tp55798 +a(g55795 +g55797 +S'by' +p55799 +tp55800 +a(g55797 +g55799 +S'delicate' +p55801 +tp55802 +a(g55799 +g55801 +S'lines,' +p55803 +tp55804 +a(g55801 +g55803 +S'slender' +p55805 +tp55806 +a(g55803 +g55805 +S'proportions,' +p55807 +tp55808 +a(g55805 +g55807 +S'graceful' +p55809 +tp55810 +a(g55807 +g55809 +S's-curves,' +p55811 +tp55812 +a(g55809 +g55811 +S'and' +p55813 +tp55814 +a(g55811 +g55813 +S'handsomely' +p55815 +tp55816 +a(g55813 +g55815 +S'carved' +p55817 +tp55818 +a(g55815 +g55817 +S'woods.' +p55819 +tp55820 +a(g55817 +g55819 +S'walnut' +p55821 +tp55822 +a(g55819 +g55821 +S'was' +p55823 +tp55824 +a(g55821 +g55823 +S'the' +p55825 +tp55826 +a(g55823 +g55825 +S'favored' +p55827 +tp55828 +a(g55825 +g55827 +S'wood,' +p55829 +tp55830 +a(g55827 +g55829 +S'but' +p55831 +tp55832 +a(g55829 +g55831 +S'mahogany' +p55833 +tp55834 +a(g55831 +g55833 +S'imported' +p55835 +tp55836 +a(g55833 +g55835 +S'from' +p55837 +tp55838 +a(g55835 +g55837 +S'the' +p55839 +tp55840 +a(g55837 +g55839 +S'west' +p55841 +tp55842 +a(g55839 +g55841 +S'indies,' +p55843 +tp55844 +a(g55841 +g55843 +S'native' +p55845 +tp55846 +a(g55843 +g55845 +S'american' +p55847 +tp55848 +a(g55845 +g55847 +S'cherry,' +p55849 +tp55850 +a(g55847 +g55849 +S'and' +p55851 +tp55852 +a(g55849 +g55851 +S'maple' +p55853 +tp55854 +a(g55851 +g55853 +S'were' +p55855 +tp55856 +a(g55853 +g55855 +S'also' +p55857 +tp55858 +a(g55855 +g55857 +S'used.' +p55859 +tp55860 +a(g55857 +g55859 +S'jappaning' +p55861 +tp55862 +a(g55859 +g55861 +S'continued' +p55863 +tp55864 +a(g55861 +g55863 +S'to' +p55865 +tp55866 +a(g55863 +g55865 +S'be' +p55867 +tp55868 +a(g55865 +g55867 +S'popular,' +p55869 +tp55870 +a(g55867 +g55869 +S'but' +p55871 +tp55872 +a(g55869 +g55871 +S'natural' +p55873 +tp55874 +a(g55871 +g55873 +S'wood,' +p55875 +tp55876 +a(g55873 +g55875 +S'richly' +p55877 +tp55878 +a(g55875 +g55877 +S'figured' +p55879 +tp55880 +a(g55877 +g55879 +S'and' +p55881 +tp55882 +a(g55879 +g55881 +S'carved,' +p55883 +tp55884 +a(g55881 +g55883 +S'was' +p55885 +tp55886 +a(g55883 +g55885 +S'extremely' +p55887 +tp55888 +a(g55885 +g55887 +S'fashionable.' +p55889 +tp55890 +a(g55887 +g55889 +S'during' +p55891 +tp55892 +a(g55889 +g55891 +S'the' +p55893 +tp55894 +a(g55891 +g55893 +S'queen' +p55895 +tp55896 +a(g55893 +g55895 +S'anne' +p55897 +tp55898 +a(g55895 +g55897 +S'period' +p55899 +tp55900 +a(g55897 +g55899 +S'in' +p55901 +tp55902 +a(g55899 +g55901 +S'america,' +p55903 +tp55904 +a(g55901 +g55903 +S'the' +p55905 +tp55906 +a(g55903 +g55905 +S'highboy' +p55907 +tp55908 +a(g55905 +g55907 +S'attained' +p55909 +tp55910 +a(g55907 +g55909 +S'its' +p55911 +tp55912 +a(g55909 +g55911 +S'characteristic' +p55913 +tp55914 +a(g55911 +g55913 +S'form.' +p55915 +tp55916 +a(g55913 +g55915 +S'this' +p55917 +tp55918 +a(g55915 +g55917 +S'highboy,' +p55919 +tp55920 +a(g55917 +g55919 +S'made' +p55921 +tp55922 +a(g55919 +g55921 +S'of' +p55923 +tp55924 +a(g55921 +g55923 +S'curly' +p55925 +tp55926 +a(g55923 +g55925 +S'maple,' +p55927 +tp55928 +a(g55925 +g55927 +S'is' +p55929 +tp55930 +a(g55927 +g55929 +S'surmounted' +p55931 +tp55932 +a(g55929 +g55931 +S'by' +p55933 +tp55934 +a(g55931 +g55933 +S'a' +p55935 +tp55936 +a(g55933 +g55935 +S'scrolled' +p55937 +tp55938 +a(g55935 +g55937 +S'pediment' +p55939 +tp55940 +a(g55937 +g55939 +S'with' +p55941 +tp55942 +a(g55939 +g55941 +S'a' +p55943 +tp55944 +a(g55941 +g55943 +S'broken' +p55945 +tp55946 +a(g55943 +g55945 +S'arch,' +p55947 +tp55948 +a(g55945 +g55947 +S'called' +p55949 +tp55950 +a(g55947 +g55949 +S'a' +p55951 +tp55952 +a(g55949 +g55951 +S'bonnet' +p55953 +tp55954 +a(g55951 +g55953 +S'top,' +p55955 +tp55956 +a(g55953 +g55955 +S'a' +p55957 +tp55958 +a(g55955 +g55957 +S'consistent' +p55959 +tp55960 +a(g55957 +g55959 +S'feature' +p55961 +tp55962 +a(g55959 +g55961 +S'of' +p55963 +tp55964 +a(g55961 +g55963 +S'the' +p55965 +tp55966 +a(g55963 +g55965 +S'highboy' +p55967 +tp55968 +a(g55965 +g55967 +S'form.' +p55969 +tp55970 +a(g55967 +g55969 +S'three' +p55971 +tp55972 +a(g55969 +g55971 +S'finials,' +p55973 +tp55974 +a(g55971 +g55973 +S'vigorously' +p55975 +tp55976 +a(g55973 +g55975 +S'carved' +p55977 +tp55978 +a(g55975 +g55977 +S'in' +p55979 +tp55980 +a(g55977 +g55979 +S'a' +p55981 +tp55982 +a(g55979 +g55981 +S'flame' +p55983 +tp55984 +a(g55981 +g55983 +S'design,' +p55985 +tp55986 +a(g55983 +g55985 +S'echo' +p55987 +tp55988 +a(g55985 +g55987 +S'the' +p55989 +tp55990 +a(g55987 +g55989 +S'sweeping' +p55991 +tp55992 +a(g55989 +g55991 +S'curves' +p55993 +tp55994 +a(g55991 +g55993 +S'of' +p55995 +tp55996 +a(g55993 +g55995 +S'the' +p55997 +tp55998 +a(g55995 +g55997 +S'bonnet.' +p55999 +tp56000 +a(g55997 +g55999 +S'the' +p56001 +tp56002 +a(g55999 +g56001 +S'natural' +p56003 +tp56004 +a(g56001 +g56003 +S'decorative' +p56005 +tp56006 +a(g56003 +g56005 +S'quality' +p56007 +tp56008 +a(g56005 +g56007 +S'of' +p56009 +tp56010 +a(g56007 +g56009 +S'the' +p56011 +tp56012 +a(g56009 +g56011 +S'figured' +p56013 +tp56014 +a(g56011 +g56013 +S'wood' +p56015 +tp56016 +a(g56013 +g56015 +S'is' +p56017 +tp56018 +a(g56015 +g56017 +S'complemented' +p56019 +tp56020 +a(g56017 +g56019 +S'by' +p56021 +tp56022 +a(g56019 +g56021 +S'restrained' +p56023 +tp56024 +a(g56021 +g56023 +S'shell' +p56025 +tp56026 +a(g56023 +g56025 +S'carving' +p56027 +tp56028 +a(g56025 +g56027 +S'on' +p56029 +tp56030 +a(g56027 +g56029 +S'the' +p56031 +tp56032 +a(g56029 +g56031 +S'middle' +p56033 +tp56034 +a(g56031 +g56033 +S'drawers' +p56035 +tp56036 +a(g56033 +g56035 +S'at' +p56037 +tp56038 +a(g56035 +g56037 +S'both' +p56039 +tp56040 +a(g56037 +g56039 +S'top' +p56041 +tp56042 +a(g56039 +g56041 +S'and' +p56043 +tp56044 +a(g56041 +g56043 +S'bottom' +p56045 +tp56046 +a(g56043 +g56045 +S'of' +p56047 +tp56048 +a(g56045 +g56047 +S'the' +p56049 +tp56050 +a(g56047 +g56049 +S'case.' +p56051 +tp56052 +a(g56049 +g56051 +S'the' +p56053 +tp56054 +a(g56051 +g56053 +S'high' +p56055 +tp56056 +a(g56053 +g56055 +S'chest' +p56057 +tp56058 +a(g56055 +g56057 +S'stands' +p56059 +tp56060 +a(g56057 +g56059 +S'on' +p56061 +tp56062 +a(g56059 +g56061 +S'cabriole' +p56063 +tp56064 +a(g56061 +g56063 +S'legs,' +p56065 +tp56066 +a(g56063 +g56065 +S'that' +p56067 +tp56068 +a(g56065 +g56067 +S'is,' +p56069 +tp56070 +a(g56067 +g56069 +S'legs' +p56071 +tp56072 +a(g56069 +g56071 +S'with' +p56073 +tp56074 +a(g56071 +g56073 +S'broad' +p56075 +tp56076 +a(g56073 +g56075 +S'outcurving' +p56077 +tp56078 +a(g56075 +g56077 +S'knees' +p56079 +tp56080 +a(g56077 +g56079 +S'tapering' +p56081 +tp56082 +a(g56079 +g56081 +S'to' +p56083 +tp56084 +a(g56081 +g56083 +S'slim' +p56085 +tp56086 +a(g56083 +g56085 +S'incurved' +p56087 +tp56088 +a(g56085 +g56087 +S'ankles,' +p56089 +tp56090 +a(g56087 +g56089 +S'which' +p56091 +tp56092 +a(g56089 +g56091 +S'spread' +p56093 +tp56094 +a(g56091 +g56093 +S'into' +p56095 +tp56096 +a(g56093 +g56095 +S'a' +p56097 +tp56098 +a(g56095 +g56097 +S'pad' +p56099 +tp56100 +a(g56097 +g56099 +S'foot.' +p56101 +tp56102 +a(g56099 +g56101 +S'the' +p56103 +tp56104 +a(g56101 +g56103 +S'cabriole' +p56105 +tp56106 +a(g56103 +g56105 +S'leg' +p56107 +tp56108 +a(g56105 +g56107 +S'was' +p56109 +tp56110 +a(g56107 +g56109 +S'a' +p56111 +tp56112 +a(g56109 +g56111 +S'distinctive' +p56113 +tp56114 +a(g56111 +g56113 +S'feature' +p56115 +tp56116 +a(g56113 +g56115 +S'developed' +p56117 +tp56118 +a(g56115 +g56117 +S'in' +p56119 +tp56120 +a(g56117 +g56119 +S'the' +p56121 +tp56122 +a(g56119 +g56121 +S'queen' +p56123 +tp56124 +a(g56121 +g56123 +S'anne' +p56125 +tp56126 +a(g56123 +g56125 +S'period;' +p56127 +tp56128 +a(g56125 +g56127 +S'its' +p56129 +tp56130 +a(g56127 +g56129 +S'shape' +p56131 +tp56132 +a(g56129 +g56131 +S'repeats' +p56133 +tp56134 +a(g56131 +g56133 +S'the' +p56135 +tp56136 +a(g56133 +g56135 +S's-curve' +p56137 +tp56138 +a(g56135 +g56137 +S'that' +p56139 +tp56140 +a(g56137 +g56139 +S'dominated' +p56141 +tp56142 +a(g56139 +g56141 +S'all' +p56143 +tp56144 +a(g56141 +g56143 +S'queen' +p56145 +tp56146 +a(g56143 +g56145 +S'anne' +p56147 +tp56148 +a(g56145 +g56147 +S'design.' +p56149 +tp56150 +a(g56147 +g56149 +S'aided' +p56151 +tp56152 +a(g56149 +g56151 +S'by' +p56153 +tp56154 +a(g56151 +g56153 +S'the' +p56155 +tp56156 +a(g56153 +g56155 +S'fertility' +p56157 +tp56158 +a(g56155 +g56157 +S'of' +p56159 +tp56160 +a(g56157 +g56159 +S'its' +p56161 +tp56162 +a(g56159 +g56161 +S'lands,' +p56163 +tp56164 +a(g56161 +g56163 +S'san' +p56165 +tp56166 +a(g56163 +g56165 +S'fernando' +p56167 +tp56168 +a(g56165 +g56167 +S'rey' +p56169 +tp56170 +a(g56167 +g56169 +S'de' +p56171 +tp56172 +a(g56169 +g56171 +S'españa' +p56173 +tp56174 +a(g56171 +g56173 +S'became' +p56175 +tp56176 +a(g56173 +g56175 +S'one' +p56177 +tp56178 +a(g56175 +g56177 +S'of' +p56179 +tp56180 +a(g56177 +g56179 +S'the' +p56181 +tp56182 +a(g56179 +g56181 +S'most' +p56183 +tp56184 +a(g56181 +g56183 +S'prosperous' +p56185 +tp56186 +a(g56183 +g56185 +S'missions' +p56187 +tp56188 +a(g56185 +g56187 +S'in' +p56189 +tp56190 +a(g56187 +g56189 +S'california.' +p56191 +tp56192 +a(g56189 +g56191 +S'it' +p56193 +tp56194 +a(g56191 +g56193 +S'is' +p56195 +tp56196 +a(g56193 +g56195 +S'located' +p56197 +tp56198 +a(g56195 +g56197 +S'between' +p56199 +tp56200 +a(g56197 +g56199 +S'santa' +p56201 +tp56202 +a(g56199 +g56201 +S'barbara' +p56203 +tp56204 +a(g56201 +g56203 +S'and' +p56205 +tp56206 +a(g56203 +g56205 +S'los' +p56207 +tp56208 +a(g56205 +g56207 +S'angeles.' +p56209 +tp56210 +a(g56207 +g56209 +S'in' +p56211 +tp56212 +a(g56209 +g56211 +S'1819,' +p56213 +tp56214 +a(g56211 +g56213 +S'the' +p56215 +tp56216 +a(g56213 +g56215 +S'mission' +p56217 +tp56218 +a(g56215 +g56217 +S'owned' +p56219 +tp56220 +a(g56217 +g56219 +S'cattle' +p56221 +tp56222 +a(g56219 +g56221 +S'and' +p56223 +tp56224 +a(g56221 +g56223 +S'sheep' +p56225 +tp56226 +a(g56223 +g56225 +S'numbering' +p56227 +tp56228 +a(g56225 +g56227 +S'twelve' +p56229 +tp56230 +a(g56227 +g56229 +S'thousand' +p56231 +tp56232 +a(g56229 +g56231 +S'or' +p56233 +tp56234 +a(g56231 +g56233 +S'more,' +p56235 +tp56236 +a(g56233 +g56235 +S'along' +p56237 +tp56238 +a(g56235 +g56237 +S'with' +p56239 +tp56240 +a(g56237 +g56239 +S'five' +p56241 +tp56242 +a(g56239 +g56241 +S'hundred' +p56243 +tp56244 +a(g56241 +g56243 +S'horses' +p56245 +tp56246 +a(g56243 +g56245 +S'and' +p56247 +tp56248 +a(g56245 +g56247 +S'mules.' +p56249 +tp56250 +a(g56247 +g56249 +S'the' +p56251 +tp56252 +a(g56249 +g56251 +S'vineyards' +p56253 +tp56254 +a(g56251 +g56253 +S'produced' +p56255 +tp56256 +a(g56253 +g56255 +S'as' +p56257 +tp56258 +a(g56255 +g56257 +S'much' +p56259 +tp56260 +a(g56257 +g56259 +S'as' +p56261 +tp56262 +a(g56259 +g56261 +S'two' +p56263 +tp56264 +a(g56261 +g56263 +S'thousand' +p56265 +tp56266 +a(g56263 +g56265 +S'gallons' +p56267 +tp56268 +a(g56265 +g56267 +S'a' +p56269 +tp56270 +a(g56267 +g56269 +S'year' +p56271 +tp56272 +a(g56269 +g56271 +S'of' +p56273 +tp56274 +a(g56271 +g56273 +S'both' +p56275 +tp56276 +a(g56273 +g56275 +S'wine' +p56277 +tp56278 +a(g56275 +g56277 +S'and' +p56279 +tp56280 +a(g56277 +g56279 +S'brandy.' +p56281 +tp56282 +a(g56279 +g56281 +S'the' +p56283 +tp56284 +a(g56281 +g56283 +S'wall' +p56285 +tp56286 +a(g56283 +g56285 +S'painting' +p56287 +tp56288 +a(g56285 +g56287 +S'decorated' +p56289 +tp56290 +a(g56287 +g56289 +S'the' +p56291 +tp56292 +a(g56289 +g56291 +S'doorway' +p56293 +tp56294 +a(g56291 +g56293 +S'of' +p56295 +tp56296 +a(g56293 +g56295 +S'the' +p56297 +tp56298 +a(g56295 +g56297 +S'mission' +p56299 +tp56300 +a(g56297 +g56299 +S'house.' +p56301 +tp56302 +a(g56299 +g56301 +S'the' +p56303 +tp56304 +a(g56301 +g56303 +S'hunting' +p56305 +tp56306 +a(g56303 +g56305 +S'scene' +p56307 +tp56308 +a(g56305 +g56307 +S'illustrated' +p56309 +tp56310 +a(g56307 +g56309 +S'the' +p56311 +tp56312 +a(g56309 +g56311 +S'indian' +p56313 +tp56314 +a(g56311 +g56313 +S'practice' +p56315 +tp56316 +a(g56313 +g56315 +S'of' +p56317 +tp56318 +a(g56315 +g56317 +S'decoying' +p56319 +tp56320 +a(g56317 +g56319 +S'deer:' +p56321 +tp56322 +a(g56319 +g56321 +S'the' +p56323 +tp56324 +a(g56321 +g56323 +S'animal' +p56325 +tp56326 +a(g56323 +g56325 +S'on' +p56327 +tp56328 +a(g56325 +g56327 +S'the' +p56329 +tp56330 +a(g56327 +g56329 +S'right' +p56331 +tp56332 +a(g56329 +g56331 +S'is' +p56333 +tp56334 +a(g56331 +g56333 +S'actually' +p56335 +tp56336 +a(g56333 +g56335 +S'a' +p56337 +tp56338 +a(g56335 +g56337 +S"deer's" +p56339 +tp56340 +a(g56337 +g56339 +S'pelt' +p56341 +tp56342 +a(g56339 +g56341 +S'draped' +p56343 +tp56344 +a(g56341 +g56343 +S'over' +p56345 +tp56346 +a(g56343 +g56345 +S'the' +p56347 +tp56348 +a(g56345 +g56347 +S'hunter,' +p56349 +tp56350 +a(g56347 +g56349 +S'enabling' +p56351 +tp56352 +a(g56349 +g56351 +S'him' +p56353 +tp56354 +a(g56351 +g56353 +S'to' +p56355 +tp56356 +a(g56353 +g56355 +S'come' +p56357 +tp56358 +a(g56355 +g56357 +S'within' +p56359 +tp56360 +a(g56357 +g56359 +S'shooting' +p56361 +tp56362 +a(g56359 +g56361 +S'distance' +p56363 +tp56364 +a(g56361 +g56363 +S'of' +p56365 +tp56366 +a(g56363 +g56365 +S'the' +p56367 +tp56368 +a(g56365 +g56367 +S'creature' +p56369 +tp56370 +a(g56367 +g56369 +S'he' +p56371 +tp56372 +a(g56369 +g56371 +S'is' +p56373 +tp56374 +a(g56371 +g56373 +S'stalking.' +p56375 +tp56376 +a(g56373 +g56375 +S'painted' +p56377 +tp56378 +a(g56375 +g56377 +S'in' +p56379 +tp56380 +a(g56377 +g56379 +S'red' +p56381 +tp56382 +a(g56379 +g56381 +S'on' +p56383 +tp56384 +a(g56381 +g56383 +S'a' +p56385 +tp56386 +a(g56383 +g56385 +S'white' +p56387 +tp56388 +a(g56385 +g56387 +S'ground,' +p56389 +tp56390 +a(g56387 +g56389 +S'the' +p56391 +tp56392 +a(g56389 +g56391 +S'design' +p56393 +tp56394 +a(g56391 +g56393 +S'represents' +p56395 +tp56396 +a(g56393 +g56395 +S'the' +p56397 +tp56398 +a(g56395 +g56397 +S'native' +p56399 +tp56400 +a(g56397 +g56399 +S'indian' +p56401 +tp56402 +a(g56399 +g56401 +S'style' +p56403 +tp56404 +a(g56401 +g56403 +S'and' +p56405 +tp56406 +a(g56403 +g56405 +S'shows' +p56407 +tp56408 +a(g56405 +g56407 +S'affinities' +p56409 +tp56410 +a(g56407 +g56409 +S'with' +p56411 +tp56412 +a(g56409 +g56411 +S'hunting-culture' +p56413 +tp56414 +a(g56411 +g56413 +S'paintings' +p56415 +tp56416 +a(g56413 +g56415 +S'elsewhere.' +p56417 +tp56418 +a(g56415 +g56417 +S'this' +p56419 +tp56420 +a(g56417 +g56419 +S'vase' +p56421 +tp56422 +a(g56419 +g56421 +S'is' +p56423 +tp56424 +a(g56421 +g56423 +S'a' +p56425 +tp56426 +a(g56423 +g56425 +S'part' +p56427 +tp56428 +a(g56425 +g56427 +S'of' +p56429 +tp56430 +a(g56427 +g56429 +S'garniture' +p56431 +tp56432 +a(g56429 +g56431 +S'of' +p56433 +tp56434 +a(g56431 +g56433 +S'five' +p56435 +tp56436 +a(g56433 +g56435 +S'porcelains' +p56437 +tp56438 +a(g56435 +g56437 +S'that' +p56439 +tp56440 +a(g56437 +g56439 +S'conforms' +p56441 +tp56442 +a(g56439 +g56441 +S'to' +p56443 +tp56444 +a(g56441 +g56443 +S'the' +p56445 +tp56446 +a(g56443 +g56445 +S'standard' +p56447 +tp56448 +a(g56445 +g56447 +S'eighteenth-century' +p56449 +tp56450 +a(g56447 +g56449 +S'ideal' +p56451 +tp56452 +a(g56449 +g56451 +S'in' +p56453 +tp56454 +a(g56451 +g56453 +S'comprising' +p56455 +tp56456 +a(g56453 +g56455 +S'three' +p56457 +tp56458 +a(g56455 +g56457 +S'identical' +p56459 +tp56460 +a(g56457 +g56459 +S'covered' +p56461 +tp56462 +a(g56459 +g56461 +S'jars' +p56463 +tp56464 +a(g56461 +g56463 +S'and' +p56465 +tp56466 +a(g56463 +g56465 +S'two' +p56467 +tp56468 +a(g56465 +g56467 +S'identical' +p56469 +tp56470 +a(g56467 +g56469 +S'beaker' +p56471 +tp56472 +a(g56469 +g56471 +S'vases.' +p56473 +tp56474 +a(g56471 +g56473 +S'(text' +p56475 +tp56476 +a(g56473 +g56475 +S'by' +p56477 +tp56478 +a(g56475 +g56477 +S'stephen' +p56479 +tp56480 +a(g56477 +g56479 +S'little,' +p56481 +tp56482 +a(g56479 +g56481 +S'published' +p56483 +tp56484 +a(g56481 +g56483 +S'in' +p56485 +tp56486 +a(g56483 +g56485 +S'the' +p56487 +tp56488 +a(g56485 +g56487 +S'nga' +p56489 +tp56490 +a(g56487 +g56489 +S'systematic' +p56491 +tp56492 +a(g56489 +g56491 +S'catalogue:' +p56493 +tp56494 +a(g56491 +g56493 +S'notes' +p56501 +tp56502 +a(g56499 +g56501 +S'' +p56503 +tp56504 +a(g56501 +g56503 +S'' +p56507 +tp56508 +a(g56505 +g56507 +S'this' +p56509 +tp56510 +a(g56507 +g56509 +S'window' +p56511 +tp56512 +a(g56509 +g56511 +S'from' +p56513 +tp56514 +a(g56511 +g56513 +S'the' +p56515 +tp56516 +a(g56513 +g56515 +S'mission' +p56517 +tp56518 +a(g56515 +g56517 +S'of' +p56519 +tp56520 +a(g56517 +g56519 +S'santa' +p56521 +tp56522 +a(g56519 +g56521 +S'barbara' +p56523 +tp56524 +a(g56521 +g56523 +S'is' +p56525 +tp56526 +a(g56523 +g56525 +S'located' +p56527 +tp56528 +a(g56525 +g56527 +S'in' +p56529 +tp56530 +a(g56527 +g56529 +S'the' +p56531 +tp56532 +a(g56529 +g56531 +S'sanctuary' +p56533 +tp56534 +a(g56531 +g56533 +S'of' +p56535 +tp56536 +a(g56533 +g56535 +S'the' +p56537 +tp56538 +a(g56535 +g56537 +S'church.' +p56539 +tp56540 +a(g56537 +g56539 +S'executed' +p56541 +tp56542 +a(g56539 +g56541 +S'in' +p56543 +tp56544 +a(g56541 +g56543 +S'tempera' +p56545 +tp56546 +a(g56543 +g56545 +S'paint' +p56547 +tp56548 +a(g56545 +g56547 +S'on' +p56549 +tp56550 +a(g56547 +g56549 +S'plaster,' +p56551 +tp56552 +a(g56549 +g56551 +S'the' +p56553 +tp56554 +a(g56551 +g56553 +S'graceful' +p56555 +tp56556 +a(g56553 +g56555 +S'floral' +p56557 +tp56558 +a(g56555 +g56557 +S'design' +p56559 +tp56560 +a(g56557 +g56559 +S'around' +p56561 +tp56562 +a(g56559 +g56561 +S'the' +p56563 +tp56564 +a(g56561 +g56563 +S'window' +p56565 +tp56566 +a(g56563 +g56565 +S'reflects' +p56567 +tp56568 +a(g56565 +g56567 +S'a' +p56569 +tp56570 +a(g56567 +g56569 +S'distinctly' +p56571 +tp56572 +a(g56569 +g56571 +S'european' +p56573 +tp56574 +a(g56571 +g56573 +S'inspiration,' +p56575 +tp56576 +a(g56573 +g56575 +S'in' +p56577 +tp56578 +a(g56575 +g56577 +S'contrast' +p56579 +tp56580 +a(g56577 +g56579 +S'to' +p56581 +tp56582 +a(g56579 +g56581 +S'the' +p56583 +tp56584 +a(g56581 +g56583 +S'native' +p56585 +tp56586 +a(g56583 +g56585 +S'character' +p56587 +tp56588 +a(g56585 +g56587 +S'of' +p56589 +tp56590 +a(g56587 +g56589 +S'some' +p56591 +tp56592 +a(g56589 +g56591 +S'mission' +p56593 +tp56594 +a(g56591 +g56593 +S'painting.' +p56595 +tp56596 +a(g56593 +g56595 +S'the' +p56597 +tp56598 +a(g56595 +g56597 +S'painting' +p56599 +tp56600 +a(g56597 +g56599 +S'was' +p56601 +tp56602 +a(g56599 +g56601 +S'possibly' +p56603 +tp56604 +a(g56601 +g56603 +S'designed' +p56605 +tp56606 +a(g56603 +g56605 +S'by' +p56607 +tp56608 +a(g56605 +g56607 +S'a' +p56609 +tp56610 +a(g56607 +g56609 +S'padre,' +p56611 +tp56612 +a(g56609 +g56611 +S'or,' +p56613 +tp56614 +a(g56611 +g56613 +S'more' +p56615 +tp56616 +a(g56613 +g56615 +S'probably,' +p56617 +tp56618 +a(g56615 +g56617 +S'by' +p56619 +tp56620 +a(g56617 +g56619 +S'a' +p56621 +tp56622 +a(g56619 +g56621 +S'layman' +p56623 +tp56624 +a(g56621 +g56623 +S'decorator' +p56625 +tp56626 +a(g56623 +g56625 +S'engaged' +p56627 +tp56628 +a(g56625 +g56627 +S'for' +p56629 +tp56630 +a(g56627 +g56629 +S'the' +p56631 +tp56632 +a(g56629 +g56631 +S'work.' +p56633 +tp56634 +a(g56631 +g56633 +S'in' +p56635 +tp56636 +a(g56633 +g56635 +S'either' +p56637 +tp56638 +a(g56635 +g56637 +S'case,' +p56639 +tp56640 +a(g56637 +g56639 +S'the' +p56641 +tp56642 +a(g56639 +g56641 +S'designer' +p56643 +tp56644 +a(g56641 +g56643 +S'would' +p56645 +tp56646 +a(g56643 +g56645 +S'have' +p56647 +tp56648 +a(g56645 +g56647 +S'been' +p56649 +tp56650 +a(g56647 +g56649 +S'assisted' +p56651 +tp56652 +a(g56649 +g56651 +S'in' +p56653 +tp56654 +a(g56651 +g56653 +S'painting' +p56655 +tp56656 +a(g56653 +g56655 +S'by' +p56657 +tp56658 +a(g56655 +g56657 +S'an' +p56659 +tp56660 +a(g56657 +g56659 +S'indian' +p56661 +tp56662 +a(g56659 +g56661 +S'apprentice.' +p56663 +tp56664 +a(g56661 +g56663 +S'originally' +p56665 +tp56666 +a(g56663 +g56665 +S'done' +p56667 +tp56668 +a(g56665 +g56667 +S'in' +p56669 +tp56670 +a(g56667 +g56669 +S'about' +p56671 +tp56672 +a(g56669 +g56671 +S'1820,' +p56673 +tp56674 +a(g56671 +g56673 +S'this' +p56675 +tp56676 +a(g56673 +g56675 +S'painting' +p56677 +tp56678 +a(g56675 +g56677 +S'was' +p56679 +tp56680 +a(g56677 +g56679 +S'restored' +p56681 +tp56682 +a(g56679 +g56681 +S'after' +p56683 +tp56684 +a(g56681 +g56683 +S'the' +p56685 +tp56686 +a(g56683 +g56685 +S'earthquake' +p56687 +tp56688 +a(g56685 +g56687 +S'of' +p56689 +tp56690 +a(g56687 +g56689 +S'1925.' +p56691 +tp56692 +a(g56689 +g56691 +S'the' +p56693 +tp56694 +a(g56691 +g56693 +S'interiors' +p56695 +tp56696 +a(g56693 +g56695 +S'of' +p56697 +tp56698 +a(g56695 +g56697 +S'spanish' +p56699 +tp56700 +a(g56697 +g56699 +S'colonial' +p56701 +tp56702 +a(g56699 +g56701 +S'missions' +p56703 +tp56704 +a(g56701 +g56703 +S'were' +p56705 +tp56706 +a(g56703 +g56705 +S'usually' +p56707 +tp56708 +a(g56705 +g56707 +S'decorated' +p56709 +tp56710 +a(g56707 +g56709 +S'with' +p56711 +tp56712 +a(g56709 +g56711 +S'wall' +p56713 +tp56714 +a(g56711 +g56713 +S'paintings.' +p56715 +tp56716 +a(g56713 +g56715 +S'seen' +p56717 +tp56718 +a(g56715 +g56717 +S'here' +p56719 +tp56720 +a(g56717 +g56719 +S'are' +p56721 +tp56722 +a(g56719 +g56721 +S'the' +p56723 +tp56724 +a(g56721 +g56723 +S'holy' +p56725 +tp56726 +a(g56723 +g56725 +S'water' +p56727 +tp56728 +a(g56725 +g56727 +S'font,' +p56729 +tp56730 +a(g56727 +g56729 +S'beam,' +p56731 +tp56732 +a(g56729 +g56731 +S'and' +p56733 +tp56734 +a(g56731 +g56733 +S'ceiling' +p56735 +tp56736 +a(g56733 +g56735 +S'decoration' +p56737 +tp56738 +a(g56735 +g56737 +S'from' +p56739 +tp56740 +a(g56737 +g56739 +S'mission' +p56741 +tp56742 +a(g56739 +g56741 +S'san' +p56743 +tp56744 +a(g56741 +g56743 +S'juan' +p56745 +tp56746 +a(g56743 +g56745 +S'capistrano,' +p56747 +tp56748 +a(g56745 +g56747 +S'located' +p56749 +tp56750 +a(g56747 +g56749 +S'between' +p56751 +tp56752 +a(g56749 +g56751 +S'modern' +p56753 +tp56754 +a(g56751 +g56753 +S'los' +p56755 +tp56756 +a(g56753 +g56755 +S'angeles' +p56757 +tp56758 +a(g56755 +g56757 +S'and' +p56759 +tp56760 +a(g56757 +g56759 +S'san' +p56761 +tp56762 +a(g56759 +g56761 +S'diego.' +p56763 +tp56764 +a(g56761 +g56763 +S'although' +p56765 +tp56766 +a(g56763 +g56765 +S'the' +p56767 +tp56768 +a(g56765 +g56767 +S'mission' +p56769 +tp56770 +a(g56767 +g56769 +S'itself' +p56771 +tp56772 +a(g56769 +g56771 +S'dates' +p56773 +tp56774 +a(g56771 +g56773 +S'from' +p56775 +tp56776 +a(g56773 +g56775 +S'about' +p56777 +tp56778 +a(g56775 +g56777 +S'1776,' +p56779 +tp56780 +a(g56777 +g56779 +S'the' +p56781 +tp56782 +a(g56779 +g56781 +S'decoration' +p56783 +tp56784 +a(g56781 +g56783 +S'is' +p56785 +tp56786 +a(g56783 +g56785 +S'a' +p56787 +tp56788 +a(g56785 +g56787 +S'restoration' +p56789 +tp56790 +a(g56787 +g56789 +S'from' +p56791 +tp56792 +a(g56789 +g56791 +S'about' +p56793 +tp56794 +a(g56791 +g56793 +S'1812-1813.' +p56795 +tp56796 +a(g56793 +g56795 +S'the' +p56797 +tp56798 +a(g56795 +g56797 +S'font' +p56799 +tp56800 +a(g56797 +g56799 +S'is' +p56801 +tp56802 +a(g56799 +g56801 +S'carved' +p56803 +tp56804 +a(g56801 +g56803 +S'sandstone' +p56805 +tp56806 +a(g56803 +g56805 +S'and' +p56807 +tp56808 +a(g56805 +g56807 +S'plaster.' +p56809 +tp56810 +a(g56807 +g56809 +S'bold,' +p56811 +tp56812 +a(g56809 +g56811 +S'brilliant' +p56813 +tp56814 +a(g56811 +g56813 +S'colors' +p56815 +tp56816 +a(g56813 +g56815 +S'are' +p56817 +tp56818 +a(g56815 +g56817 +S'used' +p56819 +tp56820 +a(g56817 +g56819 +S'to' +p56821 +tp56822 +a(g56819 +g56821 +S'create' +p56823 +tp56824 +a(g56821 +g56823 +S'strong' +p56825 +tp56826 +a(g56823 +g56825 +S'contrasts.' +p56827 +tp56828 +a(g56825 +g56827 +S'in' +p56829 +tp56830 +a(g56827 +g56829 +S'the' +p56831 +tp56832 +a(g56829 +g56831 +S'ornamental' +p56833 +tp56834 +a(g56831 +g56833 +S'borders' +p56835 +tp56836 +a(g56833 +g56835 +S'the' +p56837 +tp56838 +a(g56835 +g56837 +S'motifs' +p56839 +tp56840 +a(g56837 +g56839 +S'are' +p56841 +tp56842 +a(g56839 +g56841 +S'derived' +p56843 +tp56844 +a(g56841 +g56843 +S'from' +p56845 +tp56846 +a(g56843 +g56845 +S'european' +p56847 +tp56848 +a(g56845 +g56847 +S'art' +p56849 +tp56850 +a(g56847 +g56849 +S'but' +p56851 +tp56852 +a(g56849 +g56851 +S'appear' +p56853 +tp56854 +a(g56851 +g56853 +S'in' +p56855 +tp56856 +a(g56853 +g56855 +S'simplified,' +p56857 +tp56858 +a(g56855 +g56857 +S'almost' +p56859 +tp56860 +a(g56857 +g56859 +S'primitive' +p56861 +tp56862 +a(g56859 +g56861 +S'shapes.' +p56863 +tp56864 +a(g56861 +g56863 +S'there' +p56865 +tp56866 +a(g56863 +g56865 +S'was' +p56867 +tp56868 +a(g56865 +g56867 +S'no' +p56869 +tp56870 +a(g56867 +g56869 +S'single' +p56871 +tp56872 +a(g56869 +g56871 +S'"mission' +p56873 +tp56874 +a(g56871 +g56873 +S'style"' +p56875 +tp56876 +a(g56873 +g56875 +S'of' +p56877 +tp56878 +a(g56875 +g56877 +S'decoration' +p56879 +tp56880 +a(g56877 +g56879 +S'in' +p56881 +tp56882 +a(g56879 +g56881 +S'california;' +p56883 +tp56884 +a(g56881 +g56883 +S'european,' +p56885 +tp56886 +a(g56883 +g56885 +S'mexican,' +p56887 +tp56888 +a(g56885 +g56887 +S'and' +p56889 +tp56890 +a(g56887 +g56889 +S'indian' +p56891 +tp56892 +a(g56889 +g56891 +S'influences' +p56893 +tp56894 +a(g56891 +g56893 +S'were' +p56895 +tp56896 +a(g56893 +g56895 +S'intermingled' +p56897 +tp56898 +a(g56895 +g56897 +S'everywhere,' +p56899 +tp56900 +a(g56897 +g56899 +S'and' +p56901 +tp56902 +a(g56899 +g56901 +S'the' +p56903 +tp56904 +a(g56901 +g56903 +S'arts' +p56905 +tp56906 +a(g56903 +g56905 +S'found' +p56907 +tp56908 +a(g56905 +g56907 +S'at' +p56909 +tp56910 +a(g56907 +g56909 +S'the' +p56911 +tp56912 +a(g56909 +g56911 +S'different' +p56913 +tp56914 +a(g56911 +g56913 +S'missions' +p56915 +tp56916 +a(g56913 +g56915 +S'were' +p56917 +tp56918 +a(g56915 +g56917 +S'markedly' +p56919 +tp56920 +a(g56917 +g56919 +S'individual' +p56921 +tp56922 +a(g56919 +g56921 +S'in' +p56923 +tp56924 +a(g56921 +g56923 +S'character.' +p56925 +tp56926 +a(g56923 +g56925 +S'here,' +p56927 +tp56928 +a(g56925 +g56927 +S'the' +p56929 +tp56930 +a(g56927 +g56929 +S'young' +p56931 +tp56932 +a(g56929 +g56931 +S'virgin' +p56933 +tp56934 +a(g56931 +g56933 +S'enters' +p56935 +tp56936 +a(g56933 +g56935 +S'the' +p56937 +tp56938 +a(g56935 +g56937 +S'same' +p56939 +tp56940 +a(g56937 +g56939 +S'temple' +p56941 +tp56942 +a(g56939 +g56941 +S'portico' +p56943 +tp56944 +a(g56941 +g56943 +S'and' +p56945 +tp56946 +a(g56943 +g56945 +S'is' +p56947 +tp56948 +a(g56945 +g56947 +S'greeted' +p56949 +tp56950 +a(g56947 +g56949 +S'by' +p56951 +tp56952 +a(g56949 +g56951 +S'the' +p56953 +tp56954 +a(g56951 +g56953 +S'same' +p56955 +tp56956 +a(g56953 +g56955 +S'priest' +p56957 +tp56958 +a(g56955 +g56957 +S'we' +p56959 +tp56960 +a(g56957 +g56959 +S'saw' +p56961 +tp56962 +a(g56959 +g56961 +S'in' +p56963 +tp56964 +a(g56961 +g56963 +S'the' +p56965 +tp56966 +a(g56963 +g56965 +S'first' +p56967 +tp56968 +a(g56965 +g56967 +S'panel,' +p56969 +tp56970 +a(g56967 +g56969 +S'at' +p56971 +tp56972 +a(g56969 +g56971 +S'the' +p56973 +tp56974 +a(g56971 +g56973 +S'end' +p56975 +tp56976 +a(g56973 +g56975 +S'of' +p56977 +tp56978 +a(g56975 +g56977 +S'the' +p56979 +tp56980 +a(g56977 +g56979 +S'eighteenth' +p56981 +tp56982 +a(g56979 +g56981 +S'century,' +p56983 +tp56984 +a(g56981 +g56983 +S'english' +p56985 +tp56986 +a(g56983 +g56985 +S'pottery' +p56987 +tp56988 +a(g56985 +g56987 +S'factories,' +p56989 +tp56990 +a(g56987 +g56989 +S'in' +p56991 +tp56992 +a(g56989 +g56991 +S'hopes' +p56993 +tp56994 +a(g56991 +g56993 +S'of' +p56995 +tp56996 +a(g56993 +g56995 +S'regaining' +p56997 +tp56998 +a(g56995 +g56997 +S'their' +p56999 +tp57000 +a(g56997 +g56999 +S'rich' +p57001 +tp57002 +a(g56999 +g57001 +S'prewar' +p57003 +tp57004 +a(g57001 +g57003 +S'markets' +p57005 +tp57006 +a(g57003 +g57005 +S'in' +p57007 +tp57008 +a(g57005 +g57007 +S'america,' +p57009 +tp57010 +a(g57007 +g57009 +S'flooded' +p57011 +tp57012 +a(g57009 +g57011 +S'the' +p57013 +tp57014 +a(g57011 +g57013 +S'country' +p57015 +tp57016 +a(g57013 +g57015 +S'with' +p57017 +tp57018 +a(g57015 +g57017 +S'cheaply' +p57019 +tp57020 +a(g57017 +g57019 +S'made' +p57021 +tp57022 +a(g57019 +g57021 +S'earthenware.' +p57023 +tp57024 +a(g57021 +g57023 +S'while' +p57025 +tp57026 +a(g57023 +g57025 +S'these' +p57027 +tp57028 +a(g57025 +g57027 +S'imports' +p57029 +tp57030 +a(g57027 +g57029 +S'were' +p57031 +tp57032 +a(g57029 +g57031 +S'popular,' +p57033 +tp57034 +a(g57031 +g57033 +S'having' +p57035 +tp57036 +a(g57033 +g57035 +S'great' +p57037 +tp57038 +a(g57035 +g57037 +S'decorative' +p57039 +tp57040 +a(g57037 +g57039 +S'appeal,' +p57041 +tp57042 +a(g57039 +g57041 +S'by' +p57043 +tp57044 +a(g57041 +g57043 +S'the' +p57045 +tp57046 +a(g57043 +g57045 +S'beginning' +p57047 +tp57048 +a(g57045 +g57047 +S'of' +p57049 +tp57050 +a(g57047 +g57049 +S'the' +p57051 +tp57052 +a(g57049 +g57051 +S'nineteenth' +p57053 +tp57054 +a(g57051 +g57053 +S'century' +p57055 +tp57056 +a(g57053 +g57055 +S'american' +p57057 +tp57058 +a(g57055 +g57057 +S'sentiment' +p57059 +tp57060 +a(g57057 +g57059 +S'discouraged' +p57061 +tp57062 +a(g57059 +g57061 +S'industrial' +p57063 +tp57064 +a(g57061 +g57063 +S'dependence' +p57065 +tp57066 +a(g57063 +g57065 +S'on' +p57067 +tp57068 +a(g57065 +g57067 +S'england;' +p57069 +tp57070 +a(g57067 +g57069 +S'american' +p57071 +tp57072 +a(g57069 +g57071 +S'potteries' +p57073 +tp57074 +a(g57071 +g57073 +S'were' +p57075 +tp57076 +a(g57073 +g57075 +S'encouraged' +p57077 +tp57078 +a(g57075 +g57077 +S'to' +p57079 +tp57080 +a(g57077 +g57079 +S'compete' +p57081 +tp57082 +a(g57079 +g57081 +S'for' +p57083 +tp57084 +a(g57081 +g57083 +S'the' +p57085 +tp57086 +a(g57083 +g57085 +S'growing' +p57087 +tp57088 +a(g57085 +g57087 +S'domestic' +p57089 +tp57090 +a(g57087 +g57089 +S'markets.' +p57091 +tp57092 +a(g57089 +g57091 +S'mass' +p57093 +tp57094 +a(g57091 +g57093 +S'production' +p57095 +tp57096 +a(g57093 +g57095 +S'techniques,' +p57097 +tp57098 +a(g57095 +g57097 +S'modeled' +p57099 +tp57100 +a(g57097 +g57099 +S'upon' +p57101 +tp57102 +a(g57099 +g57101 +S'processes' +p57103 +tp57104 +a(g57101 +g57103 +S'used' +p57105 +tp57106 +a(g57103 +g57105 +S'in' +p57107 +tp57108 +a(g57105 +g57107 +S'england,' +p57109 +tp57110 +a(g57107 +g57109 +S'were' +p57111 +tp57112 +a(g57109 +g57111 +S'brought' +p57113 +tp57114 +a(g57111 +g57113 +S'to' +p57115 +tp57116 +a(g57113 +g57115 +S'this' +p57117 +tp57118 +a(g57115 +g57117 +S'country' +p57119 +tp57120 +a(g57117 +g57119 +S'by' +p57121 +tp57122 +a(g57119 +g57121 +S'immigrant' +p57123 +tp57124 +a(g57121 +g57123 +S'potters.' +p57125 +tp57126 +a(g57123 +g57125 +S'often' +p57127 +tp57128 +a(g57125 +g57127 +S'these' +p57129 +tp57130 +a(g57127 +g57129 +S'immigrants' +p57131 +tp57132 +a(g57129 +g57131 +S'brought' +p57133 +tp57134 +a(g57131 +g57133 +S'with' +p57135 +tp57136 +a(g57133 +g57135 +S'them' +p57137 +tp57138 +a(g57135 +g57137 +S'as' +p57139 +tp57140 +a(g57137 +g57139 +S'well' +p57141 +tp57142 +a(g57139 +g57141 +S'the' +p57143 +tp57144 +a(g57141 +g57143 +S'molds' +p57145 +tp57146 +a(g57143 +g57145 +S'and' +p57147 +tp57148 +a(g57145 +g57147 +S'patterns' +p57149 +tp57150 +a(g57147 +g57149 +S'they' +p57151 +tp57152 +a(g57149 +g57151 +S'had' +p57153 +tp57154 +a(g57151 +g57153 +S'used' +p57155 +tp57156 +a(g57153 +g57155 +S'at' +p57157 +tp57158 +a(g57155 +g57157 +S'home.' +p57159 +tp57160 +a(g57157 +g57159 +S'thus,' +p57161 +tp57162 +a(g57159 +g57161 +S'popular' +p57163 +tp57164 +a(g57161 +g57163 +S'english' +p57165 +tp57166 +a(g57163 +g57165 +S'ceramic' +p57167 +tp57168 +a(g57165 +g57167 +S'styles' +p57169 +tp57170 +a(g57167 +g57169 +S'and' +p57171 +tp57172 +a(g57169 +g57171 +S'forms' +p57173 +tp57174 +a(g57171 +g57173 +S'could' +p57175 +tp57176 +a(g57173 +g57175 +S'be' +p57177 +tp57178 +a(g57175 +g57177 +S'duplicated' +p57179 +tp57180 +a(g57177 +g57179 +S'in' +p57181 +tp57182 +a(g57179 +g57181 +S'the' +p57183 +tp57184 +a(g57181 +g57183 +S'united' +p57185 +tp57186 +a(g57183 +g57185 +S'states,' +p57187 +tp57188 +a(g57185 +g57187 +S'satisfying' +p57189 +tp57190 +a(g57187 +g57189 +S'the' +p57191 +tp57192 +a(g57189 +g57191 +S'american' +p57193 +tp57194 +a(g57191 +g57193 +S'taste' +p57195 +tp57196 +a(g57193 +g57195 +S'for' +p57197 +tp57198 +a(g57195 +g57197 +S'imported' +p57199 +tp57200 +a(g57197 +g57199 +S'styles' +p57201 +tp57202 +a(g57199 +g57201 +S'with' +p57203 +tp57204 +a(g57201 +g57203 +S'domestically' +p57205 +tp57206 +a(g57203 +g57205 +S'made' +p57207 +tp57208 +a(g57205 +g57207 +S'products.' +p57209 +tp57210 +a(g57207 +g57209 +S'the' +p57211 +tp57212 +a(g57209 +g57211 +S'pottery' +p57213 +tp57214 +a(g57211 +g57213 +S'centers' +p57215 +tp57216 +a(g57213 +g57215 +S'that' +p57217 +tp57218 +a(g57215 +g57217 +S'developed' +p57219 +tp57220 +a(g57217 +g57219 +S'in' +p57221 +tp57222 +a(g57219 +g57221 +S'vermont,' +p57223 +tp57224 +a(g57221 +g57223 +S'new' +p57225 +tp57226 +a(g57223 +g57225 +S'jersey,' +p57227 +tp57228 +a(g57225 +g57227 +S'and' +p57229 +tp57230 +a(g57227 +g57229 +S'ohio' +p57231 +tp57232 +a(g57229 +g57231 +S'produced' +p57233 +tp57234 +a(g57231 +g57233 +S'a' +p57235 +tp57236 +a(g57233 +g57235 +S'wide' +p57237 +tp57238 +a(g57235 +g57237 +S'variety' +p57239 +tp57240 +a(g57237 +g57239 +S'of' +p57241 +tp57242 +a(g57239 +g57241 +S'utilitarian' +p57243 +tp57244 +a(g57241 +g57243 +S'and' +p57245 +tp57246 +a(g57243 +g57245 +S'decorative,' +p57247 +tp57248 +a(g57245 +g57247 +S'or' +p57249 +tp57250 +a(g57247 +g57249 +S'"fancy,"' +p57251 +tp57252 +a(g57249 +g57251 +S'wares' +p57253 +tp57254 +a(g57251 +g57253 +S'based' +p57255 +tp57256 +a(g57253 +g57255 +S'upon' +p57257 +tp57258 +a(g57255 +g57257 +S'english' +p57259 +tp57260 +a(g57257 +g57259 +S'pottery' +p57261 +tp57262 +a(g57259 +g57261 +S'types.' +p57263 +tp57264 +a(g57261 +g57263 +S'close' +p57265 +tp57266 +a(g57263 +g57265 +S'to' +p57267 +tp57268 +a(g57265 +g57267 +S'its' +p57269 +tp57270 +a(g57267 +g57269 +S'english' +p57271 +tp57272 +a(g57269 +g57271 +S'prototype' +p57273 +tp57274 +a(g57271 +g57273 +S'is' +p57275 +tp57276 +a(g57273 +g57275 +S'this' +p57277 +tp57278 +a(g57275 +g57277 +S'"toby' +p57279 +tp57280 +a(g57277 +g57279 +S'jug,"' +p57281 +tp57282 +a(g57279 +g57281 +S'which' +p57283 +tp57284 +a(g57281 +g57283 +S'features' +p57285 +tp57286 +a(g57283 +g57285 +S'a' +p57287 +tp57288 +a(g57285 +g57287 +S'popular' +p57289 +tp57290 +a(g57287 +g57289 +S'english' +p57291 +tp57292 +a(g57289 +g57291 +S'character,' +p57293 +tp57294 +a(g57291 +g57293 +S'toby' +p57295 +tp57296 +a(g57293 +g57295 +S'fillpot,' +p57297 +tp57298 +a(g57295 +g57297 +S'the' +p57299 +tp57300 +a(g57297 +g57299 +S'subject' +p57301 +tp57302 +a(g57299 +g57301 +S'of' +p57303 +tp57304 +a(g57301 +g57303 +S'an' +p57305 +tp57306 +a(g57303 +g57305 +S'eighteenth-century' +p57307 +tp57308 +a(g57305 +g57307 +S'english' +p57309 +tp57310 +a(g57307 +g57309 +S'barroom' +p57311 +tp57312 +a(g57309 +g57311 +S'ballad.' +p57313 +tp57314 +a(g57311 +g57313 +S'the' +p57315 +tp57316 +a(g57313 +g57315 +S'jug,' +p57317 +tp57318 +a(g57315 +g57317 +S'made' +p57319 +tp57320 +a(g57317 +g57319 +S'in' +p57321 +tp57322 +a(g57319 +g57321 +S'new' +p57323 +tp57324 +a(g57321 +g57323 +S'jersey,' +p57325 +tp57326 +a(g57323 +g57325 +S'may' +p57327 +tp57328 +a(g57325 +g57327 +S'have' +p57329 +tp57330 +a(g57327 +g57329 +S'been' +p57331 +tp57332 +a(g57329 +g57331 +S'modeled' +p57333 +tp57334 +a(g57331 +g57333 +S'by' +p57335 +tp57336 +a(g57333 +g57335 +S'daniel' +p57337 +tp57338 +a(g57335 +g57337 +S'greatbach,' +p57339 +tp57340 +a(g57337 +g57339 +S'an' +p57341 +tp57342 +a(g57339 +g57341 +S'english' +p57343 +tp57344 +a(g57341 +g57343 +S'potter' +p57345 +tp57346 +a(g57343 +g57345 +S'who' +p57347 +tp57348 +a(g57345 +g57347 +S'came' +p57349 +tp57350 +a(g57347 +g57349 +S'to' +p57351 +tp57352 +a(g57349 +g57351 +S'america' +p57353 +tp57354 +a(g57351 +g57353 +S'in' +p57355 +tp57356 +a(g57353 +g57355 +S'the' +p57357 +tp57358 +a(g57355 +g57357 +S'1830s' +p57359 +tp57360 +a(g57357 +g57359 +S'to' +p57361 +tp57362 +a(g57359 +g57361 +S'design' +p57363 +tp57364 +a(g57361 +g57363 +S'molded' +p57365 +tp57366 +a(g57363 +g57365 +S'ware' +p57367 +tp57368 +a(g57365 +g57367 +S'for' +p57369 +tp57370 +a(g57367 +g57369 +S'potteries' +p57371 +tp57372 +a(g57369 +g57371 +S'in' +p57373 +tp57374 +a(g57371 +g57373 +S'new' +p57375 +tp57376 +a(g57373 +g57375 +S'jersey' +p57377 +tp57378 +a(g57375 +g57377 +S'and' +p57379 +tp57380 +a(g57377 +g57379 +S'in' +p57381 +tp57382 +a(g57379 +g57381 +S'vermont.' +p57383 +tp57384 +a(g57381 +g57383 +S'in' +p57385 +tp57386 +a(g57383 +g57385 +S'this' +p57387 +tp57388 +a(g57385 +g57387 +S'panel—the' +p57389 +tp57390 +a(g57387 +g57389 +S'second' +p57391 +tp57392 +a(g57389 +g57391 +S'in' +p57393 +tp57394 +a(g57391 +g57393 +S'a' +p57395 +tp57396 +a(g57393 +g57395 +S'series' +p57397 +tp57398 +a(g57395 +g57397 +S'of' +p57399 +tp57400 +a(g57397 +g57399 +S'three' +p57401 +tp57402 +a(g57399 +g57401 +S'paintings' +p57403 +tp57404 +a(g57401 +g57403 +S'by' +p57405 +tp57406 +a(g57403 +g57405 +S'this' +p57407 +tp57408 +a(g57405 +g57407 +S'artist' +p57409 +tp57410 +a(g57407 +g57409 +S'illustrating' +p57411 +tp57412 +a(g57409 +g57411 +S'scenes' +p57413 +tp57414 +a(g57411 +g57413 +S'from' +p57415 +tp57416 +a(g57413 +g57415 +S'the' +p57417 +tp57418 +a(g57415 +g57417 +S'life' +p57419 +tp57420 +a(g57417 +g57419 +S'of' +p57421 +tp57422 +a(g57419 +g57421 +S'mary—we' +p57423 +tp57424 +a(g57421 +g57423 +S'see' +p57425 +tp57426 +a(g57423 +g57425 +S'anne' +p57427 +tp57428 +a(g57425 +g57427 +S'and' +p57429 +tp57430 +a(g57427 +g57429 +S'the' +p57431 +tp57432 +a(g57429 +g57431 +S'new' +p57433 +tp57434 +a(g57431 +g57433 +S'infant' +p57435 +tp57436 +a(g57433 +g57435 +S'being' +p57437 +tp57438 +a(g57435 +g57437 +S'tended' +p57439 +tp57440 +a(g57437 +g57439 +S'just' +p57441 +tp57442 +a(g57439 +g57441 +S'after' +p57443 +tp57444 +a(g57441 +g57443 +S'her' +p57445 +tp57446 +a(g57443 +g57445 +S'birth.' +p57447 +tp57448 +a(g57445 +g57447 +S'details—such' +p57449 +tp57450 +a(g57447 +g57449 +S'as' +p57451 +tp57452 +a(g57449 +g57451 +S'the' +p57453 +tp57454 +a(g57451 +g57453 +S'chicken' +p57455 +tp57456 +a(g57453 +g57455 +S'brought' +p57457 +tp57458 +a(g57455 +g57457 +S'to' +p57459 +tp57460 +a(g57457 +g57459 +S'the' +p57461 +tp57462 +a(g57459 +g57461 +S'new' +p57463 +tp57464 +a(g57461 +g57463 +S'mother—made' +p57465 +tp57466 +a(g57463 +g57465 +S'the' +p57467 +tp57468 +a(g57465 +g57467 +S'virgin' +p57469 +tp57470 +a(g57467 +g57469 +S'approachable' +p57471 +tp57472 +a(g57469 +g57471 +S'and' +p57473 +tp57474 +a(g57471 +g57473 +S'brought' +p57475 +tp57476 +a(g57473 +g57475 +S'sacred' +p57477 +tp57478 +a(g57475 +g57477 +S'events' +p57479 +tp57480 +a(g57477 +g57479 +S'into' +p57481 +tp57482 +a(g57479 +g57481 +S'the' +p57483 +tp57484 +a(g57481 +g57483 +S'realm' +p57485 +tp57486 +a(g57483 +g57485 +S'of' +p57487 +tp57488 +a(g57485 +g57487 +S'the' +p57489 +tp57490 +a(g57487 +g57489 +S"viewer's" +p57491 +tp57492 +a(g57489 +g57491 +S'own' +p57493 +tp57494 +a(g57491 +g57493 +S'experience.' +p57495 +tp57496 +a(g57493 +g57495 +S'the' +p57497 +tp57498 +a(g57495 +g57497 +S'potter' +p57499 +tp57500 +a(g57497 +g57499 +S'has' +p57501 +tp57502 +a(g57499 +g57501 +S'used' +p57503 +tp57504 +a(g57501 +g57503 +S'both' +p57505 +tp57506 +a(g57503 +g57505 +S'slip' +p57507 +tp57508 +a(g57505 +g57507 +S'decoration' +p57509 +tp57510 +a(g57507 +g57509 +S'and' +p57511 +tp57512 +a(g57509 +g57511 +S'a' +p57513 +tp57514 +a(g57511 +g57513 +S'very' +p57515 +tp57516 +a(g57513 +g57515 +S'thin' +p57517 +tp57518 +a(g57515 +g57517 +S'lead' +p57519 +tp57520 +a(g57517 +g57519 +S'glaze' +p57521 +tp57522 +a(g57519 +g57521 +S'on' +p57523 +tp57524 +a(g57521 +g57523 +S'this' +p57525 +tp57526 +a(g57523 +g57525 +S'pie' +p57527 +tp57528 +a(g57525 +g57527 +S'plate.' +p57529 +tp57530 +a(g57527 +g57529 +S'the' +p57531 +tp57532 +a(g57529 +g57531 +S'notched' +p57533 +tp57534 +a(g57531 +g57533 +S'edge' +p57535 +tp57536 +a(g57533 +g57535 +S'is' +p57537 +tp57538 +a(g57535 +g57537 +S'characteristic' +p57539 +tp57540 +a(g57537 +g57539 +S'of' +p57541 +tp57542 +a(g57539 +g57541 +S'new' +p57543 +tp57544 +a(g57541 +g57543 +S'england' +p57545 +tp57546 +a(g57543 +g57545 +S'decoration,' +p57547 +tp57548 +a(g57545 +g57547 +S'as' +p57549 +tp57550 +a(g57547 +g57549 +S'are' +p57551 +tp57552 +a(g57549 +g57551 +S'the' +p57553 +tp57554 +a(g57551 +g57553 +S'wavy' +p57555 +tp57556 +a(g57553 +g57555 +S'lines' +p57557 +tp57558 +a(g57555 +g57557 +S'that' +p57559 +tp57560 +a(g57557 +g57559 +S'adorn' +p57561 +tp57562 +a(g57559 +g57561 +S'the' +p57563 +tp57564 +a(g57561 +g57563 +S'surface.' +p57565 +tp57566 +a(g57563 +g57565 +S'the' +p57567 +tp57568 +a(g57565 +g57567 +S'linear' +p57569 +tp57570 +a(g57567 +g57569 +S'ornament' +p57571 +tp57572 +a(g57569 +g57571 +S'was' +p57573 +tp57574 +a(g57571 +g57573 +S'produced' +p57575 +tp57576 +a(g57573 +g57575 +S'by' +p57577 +tp57578 +a(g57575 +g57577 +S'"trailing' +p57579 +tp57580 +a(g57577 +g57579 +S'on,"' +p57581 +tp57582 +a(g57579 +g57581 +S'or' +p57583 +tp57584 +a(g57581 +g57583 +S'pouring' +p57585 +tp57586 +a(g57583 +g57585 +S'slip,' +p57587 +tp57588 +a(g57585 +g57587 +S'that' +p57589 +tp57590 +a(g57587 +g57589 +S'is,' +p57591 +tp57592 +a(g57589 +g57591 +S'liquid' +p57593 +tp57594 +a(g57591 +g57593 +S'clay,' +p57595 +tp57596 +a(g57593 +g57595 +S'directly' +p57597 +tp57598 +a(g57595 +g57597 +S'from' +p57599 +tp57600 +a(g57597 +g57599 +S'a' +p57601 +tp57602 +a(g57599 +g57601 +S'bottle' +p57603 +tp57604 +a(g57601 +g57603 +S'through' +p57605 +tp57606 +a(g57603 +g57605 +S'a' +p57607 +tp57608 +a(g57605 +g57607 +S'quill' +p57609 +tp57610 +a(g57607 +g57609 +S'onto' +p57611 +tp57612 +a(g57609 +g57611 +S'the' +p57613 +tp57614 +a(g57611 +g57613 +S'clay' +p57615 +tp57616 +a(g57613 +g57615 +S'body.' +p57617 +tp57618 +a(g57615 +g57617 +S'the' +p57619 +tp57620 +a(g57617 +g57619 +S'piece' +p57621 +tp57622 +a(g57619 +g57621 +S'was' +p57623 +tp57624 +a(g57621 +g57623 +S'then' +p57625 +tp57626 +a(g57623 +g57625 +S'sprinkled' +p57627 +tp57628 +a(g57625 +g57627 +S'lightly' +p57629 +tp57630 +a(g57627 +g57629 +S'with' +p57631 +tp57632 +a(g57629 +g57631 +S'powdered' +p57633 +tp57634 +a(g57631 +g57633 +S'lead' +p57635 +tp57636 +a(g57633 +g57635 +S'and' +p57637 +tp57638 +a(g57635 +g57637 +S'fired.' +p57639 +tp57640 +a(g57637 +g57639 +S'this' +p57641 +tp57642 +a(g57639 +g57641 +S'soap' +p57643 +tp57644 +a(g57641 +g57643 +S'dish' +p57645 +tp57646 +a(g57643 +g57645 +S'is' +p57647 +tp57648 +a(g57645 +g57647 +S'finished' +p57649 +tp57650 +a(g57647 +g57649 +S'in' +p57651 +tp57652 +a(g57649 +g57651 +S'a' +p57653 +tp57654 +a(g57651 +g57653 +S'type' +p57655 +tp57656 +a(g57653 +g57655 +S'of' +p57657 +tp57658 +a(g57655 +g57657 +S'glaze' +p57659 +tp57660 +a(g57657 +g57659 +S'called' +p57661 +tp57662 +a(g57659 +g57661 +S'flint' +p57663 +tp57664 +a(g57661 +g57663 +S'enamel,' +p57665 +tp57666 +a(g57663 +g57665 +S'made' +p57667 +tp57668 +a(g57665 +g57667 +S'popular' +p57669 +tp57670 +a(g57667 +g57669 +S'by' +p57671 +tp57672 +a(g57669 +g57671 +S'the' +p57673 +tp57674 +a(g57671 +g57673 +S'fenton' +p57675 +tp57676 +a(g57673 +g57675 +S'pottery' +p57677 +tp57678 +a(g57675 +g57677 +S'in' +p57679 +tp57680 +a(g57677 +g57679 +S'bennington,' +p57681 +tp57682 +a(g57679 +g57681 +S'vermont.' +p57683 +tp57684 +a(g57681 +g57683 +S'a' +p57685 +tp57686 +a(g57683 +g57685 +S'flint-enamel' +p57687 +tp57688 +a(g57685 +g57687 +S'finish' +p57689 +tp57690 +a(g57687 +g57689 +S'is' +p57691 +tp57692 +a(g57689 +g57691 +S'achieved' +p57693 +tp57694 +a(g57691 +g57693 +S'by' +p57695 +tp57696 +a(g57693 +g57695 +S'adding' +p57697 +tp57698 +a(g57695 +g57697 +S'colored' +p57699 +tp57700 +a(g57697 +g57699 +S'oxides' +p57701 +tp57702 +a(g57699 +g57701 +S'to' +p57703 +tp57704 +a(g57701 +g57703 +S'a' +p57705 +tp57706 +a(g57703 +g57705 +S'brown' +p57707 +tp57708 +a(g57705 +g57707 +S'rockingham' +p57709 +tp57710 +a(g57707 +g57709 +S'glaze' +p57711 +tp57712 +a(g57709 +g57711 +S'or' +p57713 +tp57714 +a(g57711 +g57713 +S'to' +p57715 +tp57716 +a(g57713 +g57715 +S'a' +p57717 +tp57718 +a(g57715 +g57717 +S'clear' +p57719 +tp57720 +a(g57717 +g57719 +S'glaze.' +p57721 +tp57722 +a(g57719 +g57721 +S'here' +p57723 +tp57724 +a(g57721 +g57723 +S'the' +p57725 +tp57726 +a(g57723 +g57725 +S'green' +p57727 +tp57728 +a(g57725 +g57727 +S'tones' +p57729 +tp57730 +a(g57727 +g57729 +S'have' +p57731 +tp57732 +a(g57729 +g57731 +S'been' +p57733 +tp57734 +a(g57731 +g57733 +S'produced' +p57735 +tp57736 +a(g57733 +g57735 +S'through' +p57737 +tp57738 +a(g57735 +g57737 +S'the' +p57739 +tp57740 +a(g57737 +g57739 +S'use' +p57741 +tp57742 +a(g57739 +g57741 +S'of' +p57743 +tp57744 +a(g57741 +g57743 +S'copper' +p57745 +tp57746 +a(g57743 +g57745 +S'oxide.' +p57747 +tp57748 +a(g57745 +g57747 +S'in' +p57749 +tp57750 +a(g57747 +g57749 +S'1849,' +p57751 +tp57752 +a(g57749 +g57751 +S'christopher' +p57753 +tp57754 +a(g57751 +g57753 +S'webber' +p57755 +tp57756 +a(g57753 +g57755 +S'fenton' +p57757 +tp57758 +a(g57755 +g57757 +S'patented' +p57759 +tp57760 +a(g57757 +g57759 +S'his' +p57761 +tp57762 +a(g57759 +g57761 +S'method' +p57763 +tp57764 +a(g57761 +g57763 +S'of' +p57765 +tp57766 +a(g57763 +g57765 +S'adding' +p57767 +tp57768 +a(g57765 +g57767 +S'color' +p57769 +tp57770 +a(g57767 +g57769 +S'to' +p57771 +tp57772 +a(g57769 +g57771 +S'glazed' +p57773 +tp57774 +a(g57771 +g57773 +S'surfaces;' +p57775 +tp57776 +a(g57773 +g57775 +S"fenton's" +p57777 +tp57778 +a(g57775 +g57777 +S'process' +p57779 +tp57780 +a(g57777 +g57779 +S'consisted' +p57781 +tp57782 +a(g57779 +g57781 +S'of' +p57783 +tp57784 +a(g57781 +g57783 +S'sprinkling' +p57785 +tp57786 +a(g57783 +g57785 +S'powdered' +p57787 +tp57788 +a(g57785 +g57787 +S'oxides' +p57789 +tp57790 +a(g57787 +g57789 +S'on' +p57791 +tp57792 +a(g57789 +g57791 +S'a' +p57793 +tp57794 +a(g57791 +g57793 +S'previously' +p57795 +tp57796 +a(g57793 +g57795 +S'glazed' +p57797 +tp57798 +a(g57795 +g57797 +S'piece' +p57799 +tp57800 +a(g57797 +g57799 +S'and' +p57801 +tp57802 +a(g57799 +g57801 +S'then' +p57803 +tp57804 +a(g57801 +g57803 +S'firing' +p57805 +tp57806 +a(g57803 +g57805 +S'it' +p57807 +tp57808 +a(g57805 +g57807 +S'again.' +p57809 +tp57810 +a(g57807 +g57809 +S'in' +p57811 +tp57812 +a(g57809 +g57811 +S'the' +p57813 +tp57814 +a(g57811 +g57813 +S'kiln,' +p57815 +tp57816 +a(g57813 +g57815 +S'the' +p57817 +tp57818 +a(g57815 +g57817 +S'oxides' +p57819 +tp57820 +a(g57817 +g57819 +S'melted' +p57821 +tp57822 +a(g57819 +g57821 +S'and' +p57823 +tp57824 +a(g57821 +g57823 +S'fused' +p57825 +tp57826 +a(g57823 +g57825 +S'with' +p57827 +tp57828 +a(g57825 +g57827 +S'the' +p57829 +tp57830 +a(g57827 +g57829 +S'glaze,' +p57831 +tp57832 +a(g57829 +g57831 +S'producing' +p57833 +tp57834 +a(g57831 +g57833 +S'a' +p57835 +tp57836 +a(g57833 +g57835 +S'lustrous,' +p57837 +tp57838 +a(g57835 +g57837 +S'enamellike' +p57839 +tp57840 +a(g57837 +g57839 +S'surface' +p57841 +tp57842 +a(g57839 +g57841 +S'of' +p57843 +tp57844 +a(g57841 +g57843 +S'the' +p57845 +tp57846 +a(g57843 +g57845 +S'kind' +p57847 +tp57848 +a(g57845 +g57847 +S'we' +p57849 +tp57850 +a(g57847 +g57849 +S'see' +p57851 +tp57852 +a(g57849 +g57851 +S'here.' +p57853 +tp57854 +a(g57851 +g57853 +S'frequently,' +p57855 +tp57856 +a(g57853 +g57855 +S'redware' +p57857 +tp57858 +a(g57855 +g57857 +S'was' +p57859 +tp57860 +a(g57857 +g57859 +S'glazed' +p57861 +tp57862 +a(g57859 +g57861 +S'to' +p57863 +tp57864 +a(g57861 +g57863 +S'seal' +p57865 +tp57866 +a(g57863 +g57865 +S'the' +p57867 +tp57868 +a(g57865 +g57867 +S'surface,' +p57869 +tp57870 +a(g57867 +g57869 +S'making' +p57871 +tp57872 +a(g57869 +g57871 +S'the' +p57873 +tp57874 +a(g57871 +g57873 +S'pottery' +p57875 +tp57876 +a(g57873 +g57875 +S'less' +p57877 +tp57878 +a(g57875 +g57877 +S'absorbent' +p57879 +tp57880 +a(g57877 +g57879 +S'and' +p57881 +tp57882 +a(g57879 +g57881 +S'easier' +p57883 +tp57884 +a(g57881 +g57883 +S'to' +p57885 +tp57886 +a(g57883 +g57885 +S'clean.' +p57887 +tp57888 +a(g57885 +g57887 +S'early' +p57889 +tp57890 +a(g57887 +g57889 +S'colonial' +p57891 +tp57892 +a(g57889 +g57891 +S'potters' +p57893 +tp57894 +a(g57891 +g57893 +S'dusted' +p57895 +tp57896 +a(g57893 +g57895 +S'powdered' +p57897 +tp57898 +a(g57895 +g57897 +S'lead' +p57899 +tp57900 +a(g57897 +g57899 +S'onto' +p57901 +tp57902 +a(g57899 +g57901 +S'the' +p57903 +tp57904 +a(g57901 +g57903 +S'unfired' +p57905 +tp57906 +a(g57903 +g57905 +S'clay.' +p57907 +tp57908 +a(g57905 +g57907 +S'later' +p57909 +tp57910 +a(g57907 +g57909 +S'potters' +p57911 +tp57912 +a(g57909 +g57911 +S'often' +p57913 +tp57914 +a(g57911 +g57913 +S'dipped' +p57915 +tp57916 +a(g57913 +g57915 +S'the' +p57917 +tp57918 +a(g57915 +g57917 +S'unfired' +p57919 +tp57920 +a(g57917 +g57919 +S'ware' +p57921 +tp57922 +a(g57919 +g57921 +S'into' +p57923 +tp57924 +a(g57921 +g57923 +S'a' +p57925 +tp57926 +a(g57923 +g57925 +S'liquid' +p57927 +tp57928 +a(g57925 +g57927 +S'that' +p57929 +tp57930 +a(g57927 +g57929 +S'combined' +p57931 +tp57932 +a(g57929 +g57931 +S'powdered' +p57933 +tp57934 +a(g57931 +g57933 +S'lead,' +p57935 +tp57936 +a(g57933 +g57935 +S'fine' +p57937 +tp57938 +a(g57935 +g57937 +S'sand,' +p57939 +tp57940 +a(g57937 +g57939 +S'and' +p57941 +tp57942 +a(g57939 +g57941 +S'water.' +p57943 +tp57944 +a(g57941 +g57943 +S'during' +p57945 +tp57946 +a(g57943 +g57945 +S'the' +p57947 +tp57948 +a(g57945 +g57947 +S'firing' +p57949 +tp57950 +a(g57947 +g57949 +S'process,' +p57951 +tp57952 +a(g57949 +g57951 +S'the' +p57953 +tp57954 +a(g57951 +g57953 +S'lead' +p57955 +tp57956 +a(g57953 +g57955 +S'melted' +p57957 +tp57958 +a(g57955 +g57957 +S'and' +p57959 +tp57960 +a(g57957 +g57959 +S'fused' +p57961 +tp57962 +a(g57959 +g57961 +S'with' +p57963 +tp57964 +a(g57961 +g57963 +S'the' +p57965 +tp57966 +a(g57963 +g57965 +S'silica' +p57967 +tp57968 +a(g57965 +g57967 +S'in' +p57969 +tp57970 +a(g57967 +g57969 +S'the' +p57971 +tp57972 +a(g57969 +g57971 +S'clay' +p57973 +tp57974 +a(g57971 +g57973 +S'to' +p57975 +tp57976 +a(g57973 +g57975 +S'form' +p57977 +tp57978 +a(g57975 +g57977 +S'a' +p57979 +tp57980 +a(g57977 +g57979 +S'hard,' +p57981 +tp57982 +a(g57979 +g57981 +S'transparent' +p57983 +tp57984 +a(g57981 +g57983 +S'coating,' +p57985 +tp57986 +a(g57983 +g57985 +S'or' +p57987 +tp57988 +a(g57985 +g57987 +S'glaze.' +p57989 +tp57990 +a(g57987 +g57989 +S'for' +p57991 +tp57992 +a(g57989 +g57991 +S'decorative' +p57993 +tp57994 +a(g57991 +g57993 +S'effect,' +p57995 +tp57996 +a(g57993 +g57995 +S'manganese' +p57997 +tp57998 +a(g57995 +g57997 +S'oxide' +p57999 +tp58000 +a(g57997 +g57999 +S'was' +p58001 +tp58002 +a(g57999 +g58001 +S'often' +p58003 +tp58004 +a(g58001 +g58003 +S'added' +p58005 +tp58006 +a(g58003 +g58005 +S'to' +p58007 +tp58008 +a(g58005 +g58007 +S'the' +p58009 +tp58010 +a(g58007 +g58009 +S'glaze' +p58011 +tp58012 +a(g58009 +g58011 +S'to' +p58013 +tp58014 +a(g58011 +g58013 +S'produce' +p58015 +tp58016 +a(g58013 +g58015 +S'mottling,' +p58017 +tp58018 +a(g58015 +g58017 +S'which' +p58019 +tp58020 +a(g58017 +g58019 +S'ranged' +p58021 +tp58022 +a(g58019 +g58021 +S'from' +p58023 +tp58024 +a(g58021 +g58023 +S'brown' +p58025 +tp58026 +a(g58023 +g58025 +S'to' +p58027 +tp58028 +a(g58025 +g58027 +S'black.' +p58029 +tp58030 +a(g58027 +g58029 +S'on' +p58031 +tp58032 +a(g58029 +g58031 +S'this' +p58033 +tp58034 +a(g58031 +g58033 +S'covered' +p58035 +tp58036 +a(g58033 +g58035 +S'jar,' +p58037 +tp58038 +a(g58035 +g58037 +S'you' +p58039 +tp58040 +a(g58037 +g58039 +S'can' +p58041 +tp58042 +a(g58039 +g58041 +S'see' +p58043 +tp58044 +a(g58041 +g58043 +S'how' +p58045 +tp58046 +a(g58043 +g58045 +S'the' +p58047 +tp58048 +a(g58045 +g58047 +S'transparent' +p58049 +tp58050 +a(g58047 +g58049 +S'glaze' +p58051 +tp58052 +a(g58049 +g58051 +S'is' +p58053 +tp58054 +a(g58051 +g58053 +S'enriched' +p58055 +tp58056 +a(g58053 +g58055 +S'by' +p58057 +tp58058 +a(g58055 +g58057 +S'splashes' +p58059 +tp58060 +a(g58057 +g58059 +S'of' +p58061 +tp58062 +a(g58059 +g58061 +S'dark' +p58063 +tp58064 +a(g58061 +g58063 +S'color.' +p58065 +tp58066 +a(g58063 +g58065 +S'the' +p58067 +tp58068 +a(g58065 +g58067 +S'handsome' +p58069 +tp58070 +a(g58067 +g58069 +S'surface' +p58071 +tp58072 +a(g58069 +g58071 +S'is' +p58073 +tp58074 +a(g58071 +g58073 +S'further' +p58075 +tp58076 +a(g58073 +g58075 +S'enhanced' +p58077 +tp58078 +a(g58075 +g58077 +S'by' +p58079 +tp58080 +a(g58077 +g58079 +S'a' +p58081 +tp58082 +a(g58079 +g58081 +S'series' +p58083 +tp58084 +a(g58081 +g58083 +S'of' +p58085 +tp58086 +a(g58083 +g58085 +S'incised' +p58087 +tp58088 +a(g58085 +g58087 +S'lines' +p58089 +tp58090 +a(g58087 +g58089 +S'that' +p58091 +tp58092 +a(g58089 +g58091 +S'encircle' +p58093 +tp58094 +a(g58091 +g58093 +S'the' +p58095 +tp58096 +a(g58093 +g58095 +S'vessel' +p58097 +tp58098 +a(g58095 +g58097 +S'and' +p58099 +tp58100 +a(g58097 +g58099 +S'emphasize' +p58101 +tp58102 +a(g58099 +g58101 +S'its' +p58103 +tp58104 +a(g58101 +g58103 +S'roundness.' +p58105 +tp58106 +a(g58103 +g58105 +S'the' +p58107 +tp58108 +a(g58105 +g58107 +S'nineteenth' +p58109 +tp58110 +a(g58107 +g58109 +S'century' +p58111 +tp58112 +a(g58109 +g58111 +S'was' +p58113 +tp58114 +a(g58111 +g58113 +S'a' +p58115 +tp58116 +a(g58113 +g58115 +S'time' +p58117 +tp58118 +a(g58115 +g58117 +S'of' +p58119 +tp58120 +a(g58117 +g58119 +S'experimentation' +p58121 +tp58122 +a(g58119 +g58121 +S'not' +p58123 +tp58124 +a(g58121 +g58123 +S'only' +p58125 +tp58126 +a(g58123 +g58125 +S'with' +p58127 +tp58128 +a(g58125 +g58127 +S'novel' +p58129 +tp58130 +a(g58127 +g58129 +S'forms,' +p58131 +tp58132 +a(g58129 +g58131 +S'but' +p58133 +tp58134 +a(g58131 +g58133 +S'also' +p58135 +tp58136 +a(g58133 +g58135 +S'with' +p58137 +tp58138 +a(g58135 +g58137 +S'a' +p58139 +tp58140 +a(g58137 +g58139 +S'variety' +p58141 +tp58142 +a(g58139 +g58141 +S'of' +p58143 +tp58144 +a(g58141 +g58143 +S'glazes.' +p58145 +tp58146 +a(g58143 +g58145 +S'both' +p58147 +tp58148 +a(g58145 +g58147 +S'the' +p58149 +tp58150 +a(g58147 +g58149 +S'norton' +p58151 +tp58152 +a(g58149 +g58151 +S'and' +p58153 +tp58154 +a(g58151 +g58153 +S'fenton' +p58155 +tp58156 +a(g58153 +g58155 +S'potteries' +p58157 +tp58158 +a(g58155 +g58157 +S'of' +p58159 +tp58160 +a(g58157 +g58159 +S'bennington,' +p58161 +tp58162 +a(g58159 +g58161 +S'vermont,' +p58163 +tp58164 +a(g58161 +g58163 +S'became' +p58165 +tp58166 +a(g58163 +g58165 +S'famous' +p58167 +tp58168 +a(g58165 +g58167 +S'for' +p58169 +tp58170 +a(g58167 +g58169 +S'their' +p58171 +tp58172 +a(g58169 +g58171 +S'"rockingham"' +p58173 +tp58174 +a(g58171 +g58173 +S'ware.' +p58175 +tp58176 +a(g58173 +g58175 +S'typically,' +p58177 +tp58178 +a(g58175 +g58177 +S'rockingham' +p58179 +tp58180 +a(g58177 +g58179 +S'pottery' +p58181 +tp58182 +a(g58179 +g58181 +S'is' +p58183 +tp58184 +a(g58181 +g58183 +S'covered' +p58185 +tp58186 +a(g58183 +g58185 +S'with' +p58187 +tp58188 +a(g58185 +g58187 +S'a' +p58189 +tp58190 +a(g58187 +g58189 +S'mottled' +p58191 +tp58192 +a(g58189 +g58191 +S'brown' +p58193 +tp58194 +a(g58191 +g58193 +S'glaze,' +p58195 +tp58196 +a(g58193 +g58195 +S'made' +p58197 +tp58198 +a(g58195 +g58197 +S'to' +p58199 +tp58200 +a(g58197 +g58199 +S'imitate' +p58201 +tp58202 +a(g58199 +g58201 +S'the' +p58203 +tp58204 +a(g58201 +g58203 +S'tortoiseshell' +p58205 +tp58206 +a(g58203 +g58205 +S'appearance' +p58207 +tp58208 +a(g58205 +g58207 +S'of' +p58209 +tp58210 +a(g58207 +g58209 +S'wares' +p58211 +tp58212 +a(g58209 +g58211 +S'produced' +p58213 +tp58214 +a(g58211 +g58213 +S'at' +p58215 +tp58216 +a(g58213 +g58215 +S'the' +p58217 +tp58218 +a(g58215 +g58217 +S'marquis' +p58219 +tp58220 +a(g58217 +g58219 +S'of' +p58221 +tp58222 +a(g58219 +g58221 +S"rockingham's" +p58223 +tp58224 +a(g58221 +g58223 +S'pottery' +p58225 +tp58226 +a(g58223 +g58225 +S'in' +p58227 +tp58228 +a(g58225 +g58227 +S'england.' +p58229 +tp58230 +a(g58227 +g58229 +S'this' +p58231 +tp58232 +a(g58229 +g58231 +S'inhaler,' +p58233 +tp58234 +a(g58231 +g58233 +S'or' +p58235 +tp58236 +a(g58233 +g58235 +S'"croup' +p58237 +tp58238 +a(g58235 +g58237 +S'kettle,"' +p58239 +tp58240 +a(g58237 +g58239 +S'displays' +p58241 +tp58242 +a(g58239 +g58241 +S'the' +p58243 +tp58244 +a(g58241 +g58243 +S'brown' +p58245 +tp58246 +a(g58243 +g58245 +S'streaks' +p58247 +tp58248 +a(g58245 +g58247 +S'and' +p58249 +tp58250 +a(g58247 +g58249 +S'splotches' +p58251 +tp58252 +a(g58249 +g58251 +S'characteristic' +p58253 +tp58254 +a(g58251 +g58253 +S'of' +p58255 +tp58256 +a(g58253 +g58255 +S'rockingham' +p58257 +tp58258 +a(g58255 +g58257 +S'glaze.' +p58259 +tp58260 +a(g58257 +g58259 +S'the' +p58261 +tp58262 +a(g58259 +g58261 +S'brown' +p58263 +tp58264 +a(g58261 +g58263 +S'color' +p58265 +tp58266 +a(g58263 +g58265 +S'is' +p58267 +tp58268 +a(g58265 +g58267 +S'part' +p58269 +tp58270 +a(g58267 +g58269 +S'of' +p58271 +tp58272 +a(g58269 +g58271 +S'the' +p58273 +tp58274 +a(g58271 +g58273 +S'glaze' +p58275 +tp58276 +a(g58273 +g58275 +S'itself,' +p58277 +tp58278 +a(g58275 +g58277 +S'which' +p58279 +tp58280 +a(g58277 +g58279 +S'was' +p58281 +tp58282 +a(g58279 +g58281 +S'spattered' +p58283 +tp58284 +a(g58281 +g58283 +S'on' +p58285 +tp58286 +a(g58283 +g58285 +S'the' +p58287 +tp58288 +a(g58285 +g58287 +S'fired' +p58289 +tp58290 +a(g58287 +g58289 +S'clay' +p58291 +tp58292 +a(g58289 +g58291 +S'body.' +p58293 +tp58294 +a(g58291 +g58293 +S'variations' +p58295 +tp58296 +a(g58293 +g58295 +S'in' +p58297 +tp58298 +a(g58295 +g58297 +S'color' +p58299 +tp58300 +a(g58297 +g58299 +S'were' +p58301 +tp58302 +a(g58299 +g58301 +S'achieved' +p58303 +tp58304 +a(g58301 +g58303 +S'by' +p58305 +tp58306 +a(g58303 +g58305 +S'applying' +p58307 +tp58308 +a(g58305 +g58307 +S'the' +p58309 +tp58310 +a(g58307 +g58309 +S'glaze' +p58311 +tp58312 +a(g58309 +g58311 +S'more' +p58313 +tp58314 +a(g58311 +g58313 +S'heavily' +p58315 +tp58316 +a(g58313 +g58315 +S'in' +p58317 +tp58318 +a(g58315 +g58317 +S'some' +p58319 +tp58320 +a(g58317 +g58319 +S'spots,' +p58321 +tp58322 +a(g58319 +g58321 +S'thinning' +p58323 +tp58324 +a(g58321 +g58323 +S'it' +p58325 +tp58326 +a(g58323 +g58325 +S'in' +p58327 +tp58328 +a(g58325 +g58327 +S'others,' +p58329 +tp58330 +a(g58327 +g58329 +S'and' +p58331 +tp58332 +a(g58329 +g58331 +S'by' +p58333 +tp58334 +a(g58331 +g58333 +S'allowing' +p58335 +tp58336 +a(g58333 +g58335 +S'it' +p58337 +tp58338 +a(g58335 +g58337 +S'to' +p58339 +tp58340 +a(g58337 +g58339 +S'streak.' +p58341 +tp58342 +a(g58339 +g58341 +S'the' +p58343 +tp58344 +a(g58341 +g58343 +S'glazing' +p58345 +tp58346 +a(g58343 +g58345 +S'process' +p58347 +tp58348 +a(g58345 +g58347 +S'permitted' +p58349 +tp58350 +a(g58347 +g58349 +S'random' +p58351 +tp58352 +a(g58349 +g58351 +S'and' +p58353 +tp58354 +a(g58351 +g58353 +S'accidental' +p58355 +tp58356 +a(g58353 +g58355 +S'effects;' +p58357 +tp58358 +a(g58355 +g58357 +S'consequently,' +p58359 +tp58360 +a(g58357 +g58359 +S'no' +p58361 +tp58362 +a(g58359 +g58361 +S'two' +p58363 +tp58364 +a(g58361 +g58363 +S'pieces' +p58365 +tp58366 +a(g58363 +g58365 +S'of' +p58367 +tp58368 +a(g58365 +g58367 +S'rockingham' +p58369 +tp58370 +a(g58367 +g58369 +S'ware' +p58371 +tp58372 +a(g58369 +g58371 +S'were' +p58373 +tp58374 +a(g58371 +g58373 +S'alike.' +p58375 +tp58376 +a(g58373 +g58375 +S'although' +p58377 +tp58378 +a(g58375 +g58377 +S'rockingham' +p58379 +tp58380 +a(g58377 +g58379 +S'ware' +p58381 +tp58382 +a(g58379 +g58381 +S'is' +p58383 +tp58384 +a(g58381 +g58383 +S'associated' +p58385 +tp58386 +a(g58383 +g58385 +S'primarily' +p58387 +tp58388 +a(g58385 +g58387 +S'with' +p58389 +tp58390 +a(g58387 +g58389 +S'bennington,' +p58391 +tp58392 +a(g58389 +g58391 +S'other' +p58393 +tp58394 +a(g58391 +g58393 +S'american' +p58395 +tp58396 +a(g58393 +g58395 +S'potteries' +p58397 +tp58398 +a(g58395 +g58397 +S'also' +p58399 +tp58400 +a(g58397 +g58399 +S'produced' +p58401 +tp58402 +a(g58399 +g58401 +S'it.' +p58403 +tp58404 +a(g58401 +g58403 +S'the' +p58405 +tp58406 +a(g58403 +g58405 +S'bennington' +p58407 +tp58408 +a(g58405 +g58407 +S'pieces,' +p58409 +tp58410 +a(g58407 +g58409 +S'at' +p58411 +tp58412 +a(g58409 +g58411 +S'least' +p58413 +tp58414 +a(g58411 +g58413 +S'until' +p58415 +tp58416 +a(g58413 +g58415 +S'1856,' +p58417 +tp58418 +a(g58415 +g58417 +S'were' +p58419 +tp58420 +a(g58417 +g58419 +S'exceptionally' +p58421 +tp58422 +a(g58419 +g58421 +S'fine' +p58423 +tp58424 +a(g58421 +g58423 +S'in' +p58425 +tp58426 +a(g58423 +g58425 +S'finish' +p58427 +tp58428 +a(g58425 +g58427 +S'because' +p58429 +tp58430 +a(g58427 +g58429 +S'a' +p58431 +tp58432 +a(g58429 +g58431 +S'double' +p58433 +tp58434 +a(g58431 +g58433 +S'glaze' +p58435 +tp58436 +a(g58433 +g58435 +S'technique' +p58437 +tp58438 +a(g58435 +g58437 +S'was' +p58439 +tp58440 +a(g58437 +g58439 +S'used.' +p58441 +tp58442 +a(g58439 +g58441 +S'a' +p58443 +tp58444 +a(g58441 +g58443 +S'glossy' +p58445 +tp58446 +a(g58443 +g58445 +S'underglaze' +p58447 +tp58448 +a(g58445 +g58447 +S'was' +p58449 +tp58450 +a(g58447 +g58449 +S'applied' +p58451 +tp58452 +a(g58449 +g58451 +S'to' +p58453 +tp58454 +a(g58451 +g58453 +S'the' +p58455 +tp58456 +a(g58453 +g58455 +S'clay' +p58457 +tp58458 +a(g58455 +g58457 +S'piece.' +p58459 +tp58460 +a(g58457 +g58459 +S'after' +p58461 +tp58462 +a(g58459 +g58461 +S'an' +p58463 +tp58464 +a(g58461 +g58463 +S'initial' +p58465 +tp58466 +a(g58463 +g58465 +S'firing,' +p58467 +tp58468 +a(g58465 +g58467 +S'the' +p58469 +tp58470 +a(g58467 +g58469 +S'brown' +p58471 +tp58472 +a(g58469 +g58471 +S'rockingham' +p58473 +tp58474 +a(g58471 +g58473 +S'glaze' +p58475 +tp58476 +a(g58473 +g58475 +S'was' +p58477 +tp58478 +a(g58475 +g58477 +S'spattered' +p58479 +tp58480 +a(g58477 +g58479 +S'on' +p58481 +tp58482 +a(g58479 +g58481 +S'and' +p58483 +tp58484 +a(g58481 +g58483 +S'the' +p58485 +tp58486 +a(g58483 +g58485 +S'piece' +p58487 +tp58488 +a(g58485 +g58487 +S'was' +p58489 +tp58490 +a(g58487 +g58489 +S'fired' +p58491 +tp58492 +a(g58489 +g58491 +S'again.' +p58493 +tp58494 +a(g58491 +g58493 +S'the' +p58495 +tp58496 +a(g58493 +g58495 +S'result' +p58497 +tp58498 +a(g58495 +g58497 +S'was' +p58499 +tp58500 +a(g58497 +g58499 +S'a' +p58501 +tp58502 +a(g58499 +g58501 +S'final' +p58503 +tp58504 +a(g58501 +g58503 +S'glaze' +p58505 +tp58506 +a(g58503 +g58505 +S'effect' +p58507 +tp58508 +a(g58505 +g58507 +S'of' +p58509 +tp58510 +a(g58507 +g58509 +S'extraordinary' +p58511 +tp58512 +a(g58509 +g58511 +S'depth' +p58513 +tp58514 +a(g58511 +g58513 +S'and' +p58515 +tp58516 +a(g58513 +g58515 +S'brilliance.' +p58517 +tp58518 +a(g58515 +g58517 +S'among' +p58519 +tp58520 +a(g58517 +g58519 +S'the' +p58521 +tp58522 +a(g58519 +g58521 +S'many' +p58523 +tp58524 +a(g58521 +g58523 +S'unusual' +p58525 +tp58526 +a(g58523 +g58525 +S'animal' +p58527 +tp58528 +a(g58525 +g58527 +S'and' +p58529 +tp58530 +a(g58527 +g58529 +S'toby' +p58531 +tp58532 +a(g58529 +g58531 +S'forms' +p58533 +tp58534 +a(g58531 +g58533 +S'designed' +p58535 +tp58536 +a(g58533 +g58535 +S'by' +p58537 +tp58538 +a(g58535 +g58537 +S'daniel' +p58539 +tp58540 +a(g58537 +g58539 +S'greatbach,' +p58541 +tp58542 +a(g58539 +g58541 +S'pitchers' +p58543 +tp58544 +a(g58541 +g58543 +S'of' +p58545 +tp58546 +a(g58543 +g58545 +S'this' +p58547 +tp58548 +a(g58545 +g58547 +S'type,' +p58549 +tp58550 +a(g58547 +g58549 +S'with' +p58551 +tp58552 +a(g58549 +g58551 +S'its' +p58553 +tp58554 +a(g58551 +g58553 +S'handle' +p58555 +tp58556 +a(g58553 +g58555 +S'in' +p58557 +tp58558 +a(g58555 +g58557 +S'the' +p58559 +tp58560 +a(g58557 +g58559 +S'shape' +p58561 +tp58562 +a(g58559 +g58561 +S'of' +p58563 +tp58564 +a(g58561 +g58563 +S'a' +p58565 +tp58566 +a(g58563 +g58565 +S'hound,' +p58567 +tp58568 +a(g58565 +g58567 +S'were' +p58569 +tp58570 +a(g58567 +g58569 +S'very' +p58571 +tp58572 +a(g58569 +g58571 +S'popular.' +p58573 +tp58574 +a(g58571 +g58573 +S'hound-handled' +p58575 +tp58576 +a(g58573 +g58575 +S'pitchers' +p58577 +tp58578 +a(g58575 +g58577 +S'are' +p58579 +tp58580 +a(g58577 +g58579 +S'often' +p58581 +tp58582 +a(g58579 +g58581 +S'identified' +p58583 +tp58584 +a(g58581 +g58583 +S'with' +p58585 +tp58586 +a(g58583 +g58585 +S'the' +p58587 +tp58588 +a(g58585 +g58587 +S'bennington,' +p58589 +tp58590 +a(g58587 +g58589 +S'vermont,' +p58591 +tp58592 +a(g58589 +g58591 +S'potteries,' +p58593 +tp58594 +a(g58591 +g58593 +S'but' +p58595 +tp58596 +a(g58593 +g58595 +S'they' +p58597 +tp58598 +a(g58595 +g58597 +S'were,' +p58599 +tp58600 +a(g58597 +g58599 +S'in' +p58601 +tp58602 +a(g58599 +g58601 +S'fact,' +p58603 +tp58604 +a(g58601 +g58603 +S'produced' +p58605 +tp58606 +a(g58603 +g58605 +S'by' +p58607 +tp58608 +a(g58605 +g58607 +S'many' +p58609 +tp58610 +a(g58607 +g58609 +S'others' +p58611 +tp58612 +a(g58609 +g58611 +S'as' +p58613 +tp58614 +a(g58611 +g58613 +S'well.' +p58615 +tp58616 +a(g58613 +g58615 +S'this' +p58617 +tp58618 +a(g58615 +g58617 +S'pitcher' +p58619 +tp58620 +a(g58617 +g58619 +S'was' +p58621 +tp58622 +a(g58619 +g58621 +S'probably' +p58623 +tp58624 +a(g58621 +g58623 +S'made' +p58625 +tp58626 +a(g58623 +g58625 +S'in' +p58627 +tp58628 +a(g58625 +g58627 +S'ohio,' +p58629 +tp58630 +a(g58627 +g58629 +S'for' +p58631 +tp58632 +a(g58629 +g58631 +S'it' +p58633 +tp58634 +a(g58631 +g58633 +S'has' +p58635 +tp58636 +a(g58633 +g58635 +S'the' +p58637 +tp58638 +a(g58635 +g58637 +S'crisp' +p58639 +tp58640 +a(g58637 +g58639 +S'shape,' +p58641 +tp58642 +a(g58639 +g58641 +S'precise' +p58643 +tp58644 +a(g58641 +g58643 +S'relief-molded' +p58645 +tp58646 +a(g58643 +g58645 +S'decoration,' +p58647 +tp58648 +a(g58645 +g58647 +S'and' +p58649 +tp58650 +a(g58647 +g58649 +S'overall' +p58651 +tp58652 +a(g58649 +g58651 +S'brown-orange' +p58653 +tp58654 +a(g58651 +g58653 +S'glaze' +p58655 +tp58656 +a(g58653 +g58655 +S'characteristically' +p58657 +tp58658 +a(g58655 +g58657 +S'produced' +p58659 +tp58660 +a(g58657 +g58659 +S'by' +p58661 +tp58662 +a(g58659 +g58661 +S'the' +p58663 +tp58664 +a(g58661 +g58663 +S'potteries' +p58665 +tp58666 +a(g58663 +g58665 +S'of' +p58667 +tp58668 +a(g58665 +g58667 +S'the' +p58669 +tp58670 +a(g58667 +g58669 +S'ohio' +p58671 +tp58672 +a(g58669 +g58671 +S'river' +p58673 +tp58674 +a(g58671 +g58673 +S'valley.' +p58675 +tp58676 +a(g58673 +g58675 +S'as' +p58677 +tp58678 +a(g58675 +g58677 +S'devotion' +p58679 +tp58680 +a(g58677 +g58679 +S'to' +p58681 +tp58682 +a(g58679 +g58681 +S'the' +p58683 +tp58684 +a(g58681 +g58683 +S'virgin' +p58685 +tp58686 +a(g58683 +g58685 +S'increased' +p58687 +tp58688 +a(g58685 +g58687 +S'in' +p58689 +tp58690 +a(g58687 +g58689 +S'the' +p58691 +tp58692 +a(g58689 +g58691 +S'late' +p58693 +tp58694 +a(g58691 +g58693 +S'middle' +p58695 +tp58696 +a(g58693 +g58695 +S'ages,' +p58697 +tp58698 +a(g58695 +g58697 +S'so' +p58699 +tp58700 +a(g58697 +g58699 +S'did' +p58701 +tp58702 +a(g58699 +g58701 +S'the' +p58703 +tp58704 +a(g58701 +g58703 +S'legends' +p58705 +tp58706 +a(g58703 +g58705 +S'surrounding' +p58707 +tp58708 +a(g58705 +g58707 +S'her' +p58709 +tp58710 +a(g58707 +g58709 +S'life.' +p58711 +tp58712 +a(g58709 +g58711 +S'an' +p58713 +tp58714 +a(g58711 +g58713 +S'entire' +p58715 +tp58716 +a(g58713 +g58715 +S'cycle' +p58717 +tp58718 +a(g58715 +g58717 +S'of' +p58719 +tp58720 +a(g58717 +g58719 +S'stories' +p58721 +tp58722 +a(g58719 +g58721 +S'evolved' +p58723 +tp58724 +a(g58721 +g58723 +S'that' +p58725 +tp58726 +a(g58723 +g58725 +S'loosely' +p58727 +tp58728 +a(g58725 +g58727 +S'paralleled' +p58729 +tp58730 +a(g58727 +g58729 +S'events' +p58731 +tp58732 +a(g58729 +g58731 +S'of' +p58733 +tp58734 +a(g58731 +g58733 +S"christ's" +p58735 +tp58736 +a(g58733 +g58735 +S'own' +p58737 +tp58738 +a(g58735 +g58737 +S'birth' +p58739 +tp58740 +a(g58737 +g58739 +S'and' +p58741 +tp58742 +a(g58739 +g58741 +S'childhood,' +p58743 +tp58744 +a(g58741 +g58743 +S'and' +p58745 +tp58746 +a(g58743 +g58745 +S'they' +p58747 +tp58748 +a(g58745 +g58747 +S'became' +p58749 +tp58750 +a(g58747 +g58749 +S'popular' +p58751 +tp58752 +a(g58749 +g58751 +S'subjects' +p58753 +tp58754 +a(g58751 +g58753 +S'for' +p58755 +tp58756 +a(g58753 +g58755 +S'artists.' +p58757 +tp58758 +a(g58755 +g58757 +S'this' +p58759 +tp58760 +a(g58757 +g58759 +S'panel,' +p58761 +tp58762 +a(g58759 +g58761 +S'as' +p58763 +tp58764 +a(g58761 +g58763 +S'well' +p58765 +tp58766 +a(g58763 +g58765 +S'as' +p58767 +tp58768 +a(g58765 +g58767 +S'in' +p58769 +tp58770 +a(g58767 +g58769 +S'the' +p58771 +tp58772 +a(g58769 +g58771 +S'nineteenth' +p58773 +tp58774 +a(g58771 +g58773 +S'century,' +p58775 +tp58776 +a(g58773 +g58775 +S'newly' +p58777 +tp58778 +a(g58775 +g58777 +S'developed' +p58779 +tp58780 +a(g58777 +g58779 +S'glazes' +p58781 +tp58782 +a(g58779 +g58781 +S'often' +p58783 +tp58784 +a(g58781 +g58783 +S'appeared' +p58785 +tp58786 +a(g58783 +g58785 +S'on' +p58787 +tp58788 +a(g58785 +g58787 +S'novelty' +p58789 +tp58790 +a(g58787 +g58789 +S'forms.' +p58791 +tp58792 +a(g58789 +g58791 +S'this' +p58793 +tp58794 +a(g58791 +g58793 +S'coachman' +p58795 +tp58796 +a(g58793 +g58795 +S'winebottle,' +p58797 +tp58798 +a(g58795 +g58797 +S'an' +p58799 +tp58800 +a(g58797 +g58799 +S'offshoot' +p58801 +tp58802 +a(g58799 +g58801 +S'of' +p58803 +tp58804 +a(g58801 +g58803 +S'the' +p58805 +tp58806 +a(g58803 +g58805 +S'toby' +p58807 +tp58808 +a(g58805 +g58807 +S'form,' +p58809 +tp58810 +a(g58807 +g58809 +S'was' +p58811 +tp58812 +a(g58809 +g58811 +S'another' +p58813 +tp58814 +a(g58811 +g58813 +S'design' +p58815 +tp58816 +a(g58813 +g58815 +S'produced' +p58817 +tp58818 +a(g58815 +g58817 +S'by' +p58819 +tp58820 +a(g58817 +g58819 +S'the' +p58821 +tp58822 +a(g58819 +g58821 +S'prolific' +p58823 +tp58824 +a(g58821 +g58823 +S'english' +p58825 +tp58826 +a(g58823 +g58825 +S'potter,' +p58827 +tp58828 +a(g58825 +g58827 +S'daniel' +p58829 +tp58830 +a(g58827 +g58829 +S'greatbach,' +p58831 +tp58832 +a(g58829 +g58831 +S'while' +p58833 +tp58834 +a(g58831 +g58833 +S'he' +p58835 +tp58836 +a(g58833 +g58835 +S'was' +p58837 +tp58838 +a(g58835 +g58837 +S'working' +p58839 +tp58840 +a(g58837 +g58839 +S'at' +p58841 +tp58842 +a(g58839 +g58841 +S'bennington.' +p58843 +tp58844 +a(g58841 +g58843 +S'here,' +p58845 +tp58846 +a(g58843 +g58845 +S'the' +p58847 +tp58848 +a(g58845 +g58847 +S'fluidity' +p58849 +tp58850 +a(g58847 +g58849 +S'of' +p58851 +tp58852 +a(g58849 +g58851 +S'the' +p58853 +tp58854 +a(g58851 +g58853 +S'rockingham' +p58855 +tp58856 +a(g58853 +g58855 +S'glaze' +p58857 +tp58858 +a(g58855 +g58857 +S'enhances' +p58859 +tp58860 +a(g58857 +g58859 +S'the' +p58861 +tp58862 +a(g58859 +g58861 +S'cascading' +p58863 +tp58864 +a(g58861 +g58863 +S'folds' +p58865 +tp58866 +a(g58863 +g58865 +S'of' +p58867 +tp58868 +a(g58865 +g58867 +S'the' +p58869 +tp58870 +a(g58867 +g58869 +S'voluminous' +p58871 +tp58872 +a(g58869 +g58871 +S'cloak.' +p58873 +tp58874 +a(g58871 +g58873 +S'though' +p58875 +tp58876 +a(g58873 +g58875 +S'this' +p58877 +tp58878 +a(g58875 +g58877 +S'piece' +p58879 +tp58880 +a(g58877 +g58879 +S'is' +p58881 +tp58882 +a(g58879 +g58881 +S'in' +p58883 +tp58884 +a(g58881 +g58883 +S'the' +p58885 +tp58886 +a(g58883 +g58885 +S'form' +p58887 +tp58888 +a(g58885 +g58887 +S'of' +p58889 +tp58890 +a(g58887 +g58889 +S'a' +p58891 +tp58892 +a(g58889 +g58891 +S'wine' +p58893 +tp58894 +a(g58891 +g58893 +S'bottle,' +p58895 +tp58896 +a(g58893 +g58895 +S'it' +p58897 +tp58898 +a(g58895 +g58897 +S'was' +p58899 +tp58900 +a(g58897 +g58899 +S'intended' +p58901 +tp58902 +a(g58899 +g58901 +S'also' +p58903 +tp58904 +a(g58901 +g58903 +S'as' +p58905 +tp58906 +a(g58903 +g58905 +S'a' +p58907 +tp58908 +a(g58905 +g58907 +S'household' +p58909 +tp58910 +a(g58907 +g58909 +S'ornament;' +p58911 +tp58912 +a(g58909 +g58911 +S'therefore,' +p58913 +tp58914 +a(g58911 +g58913 +S'its' +p58915 +tp58916 +a(g58913 +g58915 +S'design' +p58917 +tp58918 +a(g58915 +g58917 +S'is' +p58919 +tp58920 +a(g58917 +g58919 +S'predominantly' +p58921 +tp58922 +a(g58919 +g58921 +S'decorative' +p58923 +tp58924 +a(g58921 +g58923 +S'rather' +p58925 +tp58926 +a(g58923 +g58925 +S'than' +p58927 +tp58928 +a(g58925 +g58927 +S'solely' +p58929 +tp58930 +a(g58927 +g58929 +S'utilitarian.' +p58931 +tp58932 +a(g58929 +g58931 +S'today,' +p58933 +tp58934 +a(g58931 +g58933 +S'we' +p58935 +tp58936 +a(g58933 +g58935 +S'are' +p58937 +tp58938 +a(g58935 +g58937 +S'accustomed' +p58939 +tp58940 +a(g58937 +g58939 +S'to' +p58941 +tp58942 +a(g58939 +g58941 +S'meeting' +p58943 +tp58944 +a(g58941 +g58943 +S'the' +p58945 +tp58946 +a(g58943 +g58945 +S'gazes' +p58947 +tp58948 +a(g58945 +g58947 +S'of' +p58949 +tp58950 +a(g58947 +g58949 +S'men' +p58951 +tp58952 +a(g58949 +g58951 +S'and' +p58953 +tp58954 +a(g58951 +g58953 +S'women' +p58955 +tp58956 +a(g58953 +g58955 +S'who' +p58957 +tp58958 +a(g58955 +g58957 +S'look' +p58959 +tp58960 +a(g58957 +g58959 +S'out' +p58961 +tp58962 +a(g58959 +g58961 +S'at' +p58963 +tp58964 +a(g58961 +g58963 +S'us' +p58965 +tp58966 +a(g58963 +g58965 +S'from' +p58967 +tp58968 +a(g58965 +g58967 +S'portraits,' +p58969 +tp58970 +a(g58967 +g58969 +S'but' +p58971 +tp58972 +a(g58969 +g58971 +S'this' +p58973 +tp58974 +a(g58971 +g58973 +S'has' +p58975 +tp58976 +a(g58973 +g58975 +S'not' +p58977 +tp58978 +a(g58975 +g58977 +S'always' +p58979 +tp58980 +a(g58977 +g58979 +S'been' +p58981 +tp58982 +a(g58979 +g58981 +S'the' +p58983 +tp58984 +a(g58981 +g58983 +S'case.' +p58985 +tp58986 +a(g58983 +g58985 +S'the' +p58987 +tp58988 +a(g58985 +g58987 +S'first' +p58989 +tp58990 +a(g58987 +g58989 +S'independent' +p58991 +tp58992 +a(g58989 +g58991 +S'portraits' +p58993 +tp58994 +a(g58991 +g58993 +S'of' +p58995 +tp58996 +a(g58993 +g58995 +S'the' +p58997 +tp58998 +a(g58995 +g58997 +S'renaissance' +p58999 +tp59000 +a(g58997 +g58999 +S'presented' +p59001 +tp59002 +a(g58999 +g59001 +S'sitters' +p59003 +tp59004 +a(g59001 +g59003 +S'in' +p59005 +tp59006 +a(g59003 +g59005 +S'strict' +p59007 +tp59008 +a(g59005 +g59007 +S'profile,' +p59009 +tp59010 +a(g59007 +g59009 +S'a' +p59011 +tp59012 +a(g59009 +g59011 +S'pose' +p59013 +tp59014 +a(g59011 +g59013 +S'that' +p59015 +tp59016 +a(g59013 +g59015 +S'offered' +p59017 +tp59018 +a(g59015 +g59017 +S'a' +p59019 +tp59020 +a(g59017 +g59019 +S'concise' +p59021 +tp59022 +a(g59019 +g59021 +S'likeness' +p59023 +tp59024 +a(g59021 +g59023 +S'while' +p59025 +tp59026 +a(g59023 +g59025 +S'maintaining' +p59027 +tp59028 +a(g59025 +g59027 +S'a' +p59029 +tp59030 +a(g59027 +g59029 +S'hierarchical' +p59031 +tp59032 +a(g59029 +g59031 +S'reserve' +p59033 +tp59034 +a(g59031 +g59033 +S'appropriate' +p59035 +tp59036 +a(g59033 +g59035 +S'to' +p59037 +tp59038 +a(g59035 +g59037 +S'high' +p59039 +tp59040 +a(g59037 +g59039 +S'status.' +p59041 +tp59042 +a(g59039 +g59041 +S'by' +p59043 +tp59044 +a(g59041 +g59043 +S'the' +p59045 +tp59046 +a(g59043 +g59045 +S'1430s' +p59047 +tp59048 +a(g59045 +g59047 +S'or' +p59049 +tp59050 +a(g59047 +g59049 +S'so,' +p59051 +tp59052 +a(g59049 +g59051 +S'artists' +p59053 +tp59054 +a(g59051 +g59053 +S'in' +p59055 +tp59056 +a(g59053 +g59055 +S'northern' +p59057 +tp59058 +a(g59055 +g59057 +S'europe' +p59059 +tp59060 +a(g59057 +g59059 +S'began' +p59061 +tp59062 +a(g59059 +g59061 +S'to' +p59063 +tp59064 +a(g59061 +g59063 +S'adopt' +p59065 +tp59066 +a(g59063 +g59065 +S'a' +p59067 +tp59068 +a(g59065 +g59067 +S'three-quarter' +p59069 +tp59070 +a(g59067 +g59069 +S'pose,' +p59071 +tp59072 +a(g59069 +g59071 +S'which' +p59073 +tp59074 +a(g59071 +g59073 +S'could' +p59075 +tp59076 +a(g59073 +g59075 +S'convey' +p59077 +tp59078 +a(g59075 +g59077 +S'a' +p59079 +tp59080 +a(g59077 +g59079 +S'much' +p59081 +tp59082 +a(g59079 +g59081 +S'greater' +p59083 +tp59084 +a(g59081 +g59083 +S'sense' +p59085 +tp59086 +a(g59083 +g59085 +S'of' +p59087 +tp59088 +a(g59085 +g59087 +S'personality.' +p59089 +tp59090 +a(g59087 +g59089 +S'in' +p59091 +tp59092 +a(g59089 +g59091 +S'italy,' +p59093 +tp59094 +a(g59091 +g59093 +S'however,' +p59095 +tp59096 +a(g59093 +g59095 +S'profile' +p59097 +tp59098 +a(g59095 +g59097 +S'views' +p59099 +tp59100 +a(g59097 +g59099 +S'continued' +p59101 +tp59102 +a(g59099 +g59101 +S'to' +p59103 +tp59104 +a(g59101 +g59103 +S'dominate.' +p59105 +tp59106 +a(g59103 +g59105 +S'perhaps' +p59107 +tp59108 +a(g59105 +g59107 +S'their' +p59109 +tp59110 +a(g59107 +g59109 +S'popularity' +p59111 +tp59112 +a(g59109 +g59111 +S'was' +p59113 +tp59114 +a(g59111 +g59113 +S'linked' +p59115 +tp59116 +a(g59113 +g59115 +S'with' +p59117 +tp59118 +a(g59115 +g59117 +S'profile' +p59119 +tp59120 +a(g59117 +g59119 +S'portrait' +p59121 +tp59122 +a(g59119 +g59121 +S'medals—very' +p59123 +tp59124 +a(g59121 +g59123 +S'popular' +p59125 +tp59126 +a(g59123 +g59125 +S'among' +p59127 +tp59128 +a(g59125 +g59127 +S'italian' +p59129 +tp59130 +a(g59127 +g59129 +S'collectors—and' +p59131 +tp59132 +a(g59129 +g59131 +S'with' +p59133 +tp59134 +a(g59131 +g59133 +S'the' +p59135 +tp59136 +a(g59133 +g59135 +S'ancient' +p59137 +tp59138 +a(g59135 +g59137 +S'roman' +p59139 +tp59140 +a(g59137 +g59139 +S'coins' +p59141 +tp59142 +a(g59139 +g59141 +S'that' +p59143 +tp59144 +a(g59141 +g59143 +S'inspired' +p59145 +tp59146 +a(g59143 +g59145 +S'them.' +p59147 +tp59148 +a(g59145 +g59147 +S'in' +p59149 +tp59150 +a(g59147 +g59149 +S'any' +p59151 +tp59152 +a(g59149 +g59151 +S'case,' +p59153 +tp59154 +a(g59151 +g59153 +S"castagno's" +p59155 +tp59156 +a(g59153 +g59155 +S'image' +p59157 +tp59158 +a(g59155 +g59157 +S'is' +p59159 +tp59160 +a(g59157 +g59159 +S'one' +p59161 +tp59162 +a(g59159 +g59161 +S'of' +p59163 +tp59164 +a(g59161 +g59163 +S'the' +p59165 +tp59166 +a(g59163 +g59165 +S'earliest' +p59167 +tp59168 +a(g59165 +g59167 +S'three-quarter-view' +p59169 +tp59170 +a(g59167 +g59169 +S'portraits' +p59171 +tp59172 +a(g59169 +g59171 +S'from' +p59173 +tp59174 +a(g59171 +g59173 +S'italy' +p59175 +tp59176 +a(g59173 +g59175 +S'to' +p59177 +tp59178 +a(g59175 +g59177 +S'survive;' +p59179 +tp59180 +a(g59177 +g59179 +S'it' +p59181 +tp59182 +a(g59179 +g59181 +S'is' +p59183 +tp59184 +a(g59181 +g59183 +S'also' +p59185 +tp59186 +a(g59183 +g59185 +S'one' +p59187 +tp59188 +a(g59185 +g59187 +S'of' +p59189 +tp59190 +a(g59187 +g59189 +S'only' +p59191 +tp59192 +a(g59189 +g59191 +S'two' +p59193 +tp59194 +a(g59191 +g59193 +S'known' +p59195 +tp59196 +a(g59193 +g59195 +S'until' +p59197 +tp59198 +a(g59195 +g59197 +S'the' +p59199 +tp59200 +a(g59197 +g59199 +S'appearance' +p59201 +tp59202 +a(g59199 +g59201 +S'of' +p59203 +tp59204 +a(g59201 +g59203 +S"leonardo's" +p59205 +tp59206 +a(g59203 +g59205 +S'the' +p59207 +tp59208 +a(g59205 +g59207 +S"man's" +p59209 +tp59210 +a(g59207 +g59209 +S'forceful' +p59211 +tp59212 +a(g59209 +g59211 +S'personality' +p59213 +tp59214 +a(g59211 +g59213 +S'is' +p59215 +tp59216 +a(g59213 +g59215 +S'almost' +p59217 +tp59218 +a(g59215 +g59217 +S'aggressively' +p59219 +tp59220 +a(g59217 +g59219 +S'projected.' +p59221 +tp59222 +a(g59219 +g59221 +S'his' +p59223 +tp59224 +a(g59221 +g59223 +S'face' +p59225 +tp59226 +a(g59223 +g59225 +S'is' +p59227 +tp59228 +a(g59225 +g59227 +S'composed' +p59229 +tp59230 +a(g59227 +g59229 +S'of' +p59231 +tp59232 +a(g59229 +g59231 +S'brightly' +p59233 +tp59234 +a(g59231 +g59233 +S'lit' +p59235 +tp59236 +a(g59233 +g59235 +S'and' +p59237 +tp59238 +a(g59235 +g59237 +S'sharply' +p59239 +tp59240 +a(g59237 +g59239 +S'delineated' +p59241 +tp59242 +a(g59239 +g59241 +S'planes,' +p59243 +tp59244 +a(g59241 +g59243 +S'which' +p59245 +tp59246 +a(g59243 +g59245 +S'seem' +p59247 +tp59248 +a(g59245 +g59247 +S'almost' +p59249 +tp59250 +a(g59247 +g59249 +S'to' +p59251 +tp59252 +a(g59249 +g59251 +S'carve' +p59253 +tp59254 +a(g59251 +g59253 +S'his' +p59255 +tp59256 +a(g59253 +g59255 +S'features' +p59257 +tp59258 +a(g59255 +g59257 +S'with' +p59259 +tp59260 +a(g59257 +g59259 +S'palpable' +p59261 +tp59262 +a(g59259 +g59261 +S'form.' +p59263 +tp59264 +a(g59261 +g59263 +S'he' +p59265 +tp59266 +a(g59263 +g59265 +S'turns' +p59267 +tp59268 +a(g59265 +g59267 +S'a' +p59269 +tp59270 +a(g59267 +g59269 +S'proud,' +p59271 +tp59272 +a(g59269 +g59271 +S'animated' +p59273 +tp59274 +a(g59271 +g59273 +S'face' +p59275 +tp59276 +a(g59273 +g59275 +S'to' +p59277 +tp59278 +a(g59275 +g59277 +S'hold' +p59279 +tp59280 +a(g59277 +g59279 +S'our' +p59281 +tp59282 +a(g59279 +g59281 +S'eye.' +p59283 +tp59284 +a(g59281 +g59283 +S'one' +p59285 +tp59286 +a(g59283 +g59285 +S'of' +p59287 +tp59288 +a(g59285 +g59287 +S'the' +p59289 +tp59290 +a(g59287 +g59289 +S'popular' +p59291 +tp59292 +a(g59289 +g59291 +S'motifs' +p59293 +tp59294 +a(g59291 +g59293 +S'for' +p59295 +tp59296 +a(g59293 +g59295 +S'the' +p59297 +tp59298 +a(g59295 +g59297 +S'"retablo"' +p59299 +tp59300 +a(g59297 +g59299 +S'painter' +p59301 +tp59302 +a(g59299 +g59301 +S'was' +p59303 +tp59304 +a(g59301 +g59303 +S'the' +p59305 +tp59306 +a(g59303 +g59305 +S'holy' +p59307 +tp59308 +a(g59305 +g59307 +S'trinity' +p59309 +tp59310 +a(g59307 +g59309 +S'"la' +p59311 +tp59312 +a(g59309 +g59311 +S'santisima' +p59313 +tp59314 +a(g59311 +g59313 +S'trinidad."' +p59315 +tp59316 +a(g59313 +g59315 +S'this' +p59317 +tp59318 +a(g59315 +g59317 +S'has' +p59319 +tp59320 +a(g59317 +g59319 +S'always' +p59321 +tp59322 +a(g59319 +g59321 +S'been' +p59323 +tp59324 +a(g59321 +g59323 +S'a' +p59325 +tp59326 +a(g59323 +g59325 +S'difficult' +p59327 +tp59328 +a(g59325 +g59327 +S'subject' +p59329 +tp59330 +a(g59327 +g59329 +S'for' +p59331 +tp59332 +a(g59329 +g59331 +S'the' +p59333 +tp59334 +a(g59331 +g59333 +S'artist' +p59335 +tp59336 +a(g59333 +g59335 +S'to' +p59337 +tp59338 +a(g59335 +g59337 +S'depict;' +p59339 +tp59340 +a(g59337 +g59339 +S'the' +p59341 +tp59342 +a(g59339 +g59341 +S'usual' +p59343 +tp59344 +a(g59341 +g59343 +S'portrayal' +p59345 +tp59346 +a(g59343 +g59345 +S'consists' +p59347 +tp59348 +a(g59345 +g59347 +S'of' +p59349 +tp59350 +a(g59347 +g59349 +S'the' +p59351 +tp59352 +a(g59349 +g59351 +S'father,' +p59353 +tp59354 +a(g59351 +g59353 +S'the' +p59355 +tp59356 +a(g59353 +g59355 +S'son,' +p59357 +tp59358 +a(g59355 +g59357 +S'and' +p59359 +tp59360 +a(g59357 +g59359 +S'a' +p59361 +tp59362 +a(g59359 +g59361 +S'dove' +p59363 +tp59364 +a(g59361 +g59363 +S'representing' +p59365 +tp59366 +a(g59363 +g59365 +S'the' +p59367 +tp59368 +a(g59365 +g59367 +S'holy' +p59369 +tp59370 +a(g59367 +g59369 +S'spirit.' +p59371 +tp59372 +a(g59369 +g59371 +S'the' +p59373 +tp59374 +a(g59371 +g59373 +S'version' +p59375 +tp59376 +a(g59373 +g59375 +S'shown' +p59377 +tp59378 +a(g59375 +g59377 +S'in' +p59379 +tp59380 +a(g59377 +g59379 +S'this' +p59381 +tp59382 +a(g59379 +g59381 +S'"retablo"' +p59383 +tp59384 +a(g59381 +g59383 +S'originated' +p59385 +tp59386 +a(g59383 +g59385 +S'in' +p59387 +tp59388 +a(g59385 +g59387 +S'byzantium.' +p59389 +tp59390 +a(g59387 +g59389 +S'it' +p59391 +tp59392 +a(g59389 +g59391 +S'portrays' +p59393 +tp59394 +a(g59391 +g59393 +S'the' +p59395 +tp59396 +a(g59393 +g59395 +S'holy' +p59397 +tp59398 +a(g59395 +g59397 +S'trinity' +p59399 +tp59400 +a(g59397 +g59399 +S'as' +p59401 +tp59402 +a(g59399 +g59401 +S'three' +p59403 +tp59404 +a(g59401 +g59403 +S'men.' +p59405 +tp59406 +a(g59403 +g59405 +S'the' +p59407 +tp59408 +a(g59405 +g59407 +S'byzantine' +p59409 +tp59410 +a(g59407 +g59409 +S'form' +p59411 +tp59412 +a(g59409 +g59411 +S'was' +p59413 +tp59414 +a(g59411 +g59413 +S'abandoned' +p59415 +tp59416 +a(g59413 +g59415 +S'in' +p59417 +tp59418 +a(g59415 +g59417 +S'europe' +p59419 +tp59420 +a(g59417 +g59419 +S'in' +p59421 +tp59422 +a(g59419 +g59421 +S'1745' +p59423 +tp59424 +a(g59421 +g59423 +S'because' +p59425 +tp59426 +a(g59423 +g59425 +S'of' +p59427 +tp59428 +a(g59425 +g59427 +S'a' +p59429 +tp59430 +a(g59427 +g59429 +S'papal' +p59431 +tp59432 +a(g59429 +g59431 +S'edict,' +p59433 +tp59434 +a(g59431 +g59433 +S'but' +p59435 +tp59436 +a(g59433 +g59435 +S'continued' +p59437 +tp59438 +a(g59435 +g59437 +S'unchanged' +p59439 +tp59440 +a(g59437 +g59439 +S'in' +p59441 +tp59442 +a(g59439 +g59441 +S'spanish' +p59443 +tp59444 +a(g59441 +g59443 +S'america.' +p59445 +tp59446 +a(g59443 +g59445 +S'the' +p59447 +tp59448 +a(g59445 +g59447 +S'new' +p59449 +tp59450 +a(g59447 +g59449 +S'mexican' +p59451 +tp59452 +a(g59449 +g59451 +S'panel' +p59453 +tp59454 +a(g59451 +g59453 +S'paintings' +p59455 +tp59456 +a(g59453 +g59455 +S'were' +p59457 +tp59458 +a(g59455 +g59457 +S'known' +p59459 +tp59460 +a(g59457 +g59459 +S'as' +p59461 +tp59462 +a(g59459 +g59461 +S'"retablos."' +p59463 +tp59464 +a(g59461 +g59463 +S'they' +p59465 +tp59466 +a(g59463 +g59465 +S'were' +p59467 +tp59468 +a(g59465 +g59467 +S'probably' +p59469 +tp59470 +a(g59467 +g59469 +S'the' +p59471 +tp59472 +a(g59469 +g59471 +S'work' +p59473 +tp59474 +a(g59471 +g59473 +S'of' +p59475 +tp59476 +a(g59473 +g59475 +S'only' +p59477 +tp59478 +a(g59475 +g59477 +S'about' +p59479 +tp59480 +a(g59477 +g59479 +S'a' +p59481 +tp59482 +a(g59479 +g59481 +S'dozen' +p59483 +tp59484 +a(g59481 +g59483 +S'men.' +p59485 +tp59486 +a(g59483 +g59485 +S'this' +p59487 +tp59488 +a(g59485 +g59487 +S'particular' +p59489 +tp59490 +a(g59487 +g59489 +S'piece' +p59491 +tp59492 +a(g59489 +g59491 +S'has' +p59493 +tp59494 +a(g59491 +g59493 +S'been' +p59495 +tp59496 +a(g59493 +g59495 +S'attributed' +p59497 +tp59498 +a(g59495 +g59497 +S'to' +p59499 +tp59500 +a(g59497 +g59499 +S'miguel' +p59501 +tp59502 +a(g59499 +g59501 +S'aragon' +p59503 +tp59504 +a(g59501 +g59503 +S'of' +p59505 +tp59506 +a(g59503 +g59505 +S'cordova,' +p59507 +tp59508 +a(g59505 +g59507 +S'new' +p59509 +tp59510 +a(g59507 +g59509 +S'mexico,' +p59511 +tp59512 +a(g59509 +g59511 +S'one' +p59513 +tp59514 +a(g59511 +g59513 +S'of' +p59515 +tp59516 +a(g59513 +g59515 +S'the' +p59517 +tp59518 +a(g59515 +g59517 +S'best-known' +p59519 +tp59520 +a(g59517 +g59519 +S'artists.' +p59521 +tp59522 +a(g59519 +g59521 +S'representing' +p59523 +tp59524 +a(g59521 +g59523 +S'saint' +p59525 +tp59526 +a(g59523 +g59525 +S'anthony' +p59527 +tp59528 +a(g59525 +g59527 +S'in' +p59529 +tp59530 +a(g59527 +g59529 +S'a' +p59531 +tp59532 +a(g59529 +g59531 +S'characteristic' +p59533 +tp59534 +a(g59531 +g59533 +S'pose,' +p59535 +tp59536 +a(g59533 +g59535 +S'this' +p59537 +tp59538 +a(g59535 +g59537 +S'panel' +p59539 +tp59540 +a(g59537 +g59539 +S'is' +p59541 +tp59542 +a(g59539 +g59541 +S'from' +p59543 +tp59544 +a(g59541 +g59543 +S'an' +p59545 +tp59546 +a(g59543 +g59545 +S'early' +p59547 +tp59548 +a(g59545 +g59547 +S'nineteenth-century' +p59549 +tp59550 +a(g59547 +g59549 +S'altarpiece' +p59551 +tp59552 +a(g59549 +g59551 +S'in' +p59553 +tp59554 +a(g59551 +g59553 +S'the' +p59555 +tp59556 +a(g59553 +g59555 +S'church' +p59557 +tp59558 +a(g59555 +g59557 +S'of' +p59559 +tp59560 +a(g59557 +g59559 +S'llano' +p59561 +tp59562 +a(g59559 +g59561 +S'quemado' +p59563 +tp59564 +a(g59561 +g59563 +S'near' +p59565 +tp59566 +a(g59563 +g59565 +S'taos.' +p59567 +tp59568 +a(g59565 +g59567 +S'the' +p59569 +tp59570 +a(g59567 +g59569 +S'altarpiece,' +p59571 +tp59572 +a(g59569 +g59571 +S'or' +p59573 +tp59574 +a(g59571 +g59573 +S'"reredos,"' +p59575 +tp59576 +a(g59573 +g59575 +S'had' +p59577 +tp59578 +a(g59575 +g59577 +S'eight' +p59579 +tp59580 +a(g59577 +g59579 +S'panels' +p59581 +tp59582 +a(g59579 +g59581 +S'arranged' +p59583 +tp59584 +a(g59581 +g59583 +S'in' +p59585 +tp59586 +a(g59583 +g59585 +S'two' +p59587 +tp59588 +a(g59585 +g59587 +S'tiers' +p59589 +tp59590 +a(g59587 +g59589 +S'of' +p59591 +tp59592 +a(g59589 +g59591 +S'four' +p59593 +tp59594 +a(g59591 +g59593 +S'each;' +p59595 +tp59596 +a(g59593 +g59595 +S'it' +p59597 +tp59598 +a(g59595 +g59597 +S'was' +p59599 +tp59600 +a(g59597 +g59599 +S'similar' +p59601 +tp59602 +a(g59599 +g59601 +S'in' +p59603 +tp59604 +a(g59601 +g59603 +S'concept' +p59605 +tp59606 +a(g59603 +g59605 +S'to' +p59607 +tp59608 +a(g59605 +g59607 +S'the' +p59609 +tp59610 +a(g59607 +g59609 +S'many-paneled' +p59611 +tp59612 +a(g59609 +g59611 +S'altarpieces' +p59613 +tp59614 +a(g59611 +g59613 +S'of' +p59615 +tp59616 +a(g59613 +g59615 +S'fifteenth-century' +p59617 +tp59618 +a(g59615 +g59617 +S'spain' +p59619 +tp59620 +a(g59617 +g59619 +S'and' +p59621 +tp59622 +a(g59619 +g59621 +S'italy.' +p59623 +tp59624 +a(g59621 +g59623 +S'typical' +p59625 +tp59626 +a(g59623 +g59625 +S'of' +p59627 +tp59628 +a(g59625 +g59627 +S'miguel' +p59629 +tp59630 +a(g59627 +g59629 +S"aragon's" +p59631 +tp59632 +a(g59629 +g59631 +S'work,' +p59633 +tp59634 +a(g59631 +g59633 +S'the' +p59635 +tp59636 +a(g59633 +g59635 +S'panels' +p59637 +tp59638 +a(g59635 +g59637 +S'of' +p59639 +tp59640 +a(g59637 +g59639 +S'this' +p59641 +tp59642 +a(g59639 +g59641 +S'altarpiece' +p59643 +tp59644 +a(g59641 +g59643 +S'have' +p59645 +tp59646 +a(g59643 +g59645 +S'white' +p59647 +tp59648 +a(g59645 +g59647 +S'backgrounds' +p59649 +tp59650 +a(g59647 +g59649 +S'with' +p59651 +tp59652 +a(g59649 +g59651 +S'simple' +p59653 +tp59654 +a(g59651 +g59653 +S'figure' +p59655 +tp59656 +a(g59653 +g59655 +S'compositions.' +p59657 +tp59658 +a(g59655 +g59657 +S'also' +p59659 +tp59660 +a(g59657 +g59659 +S'typical' +p59661 +tp59662 +a(g59659 +g59661 +S'of' +p59663 +tp59664 +a(g59661 +g59663 +S'the' +p59665 +tp59666 +a(g59663 +g59665 +S"artist's" +p59667 +tp59668 +a(g59665 +g59667 +S'style' +p59669 +tp59670 +a(g59667 +g59669 +S'are' +p59671 +tp59672 +a(g59669 +g59671 +S'the' +p59673 +tp59674 +a(g59671 +g59673 +S'two' +p59675 +tp59676 +a(g59673 +g59675 +S'small' +p59677 +tp59678 +a(g59675 +g59677 +S'trees' +p59679 +tp59680 +a(g59677 +g59679 +S'in' +p59681 +tp59682 +a(g59679 +g59681 +S'the' +p59683 +tp59684 +a(g59681 +g59683 +S'foreground,' +p59685 +tp59686 +a(g59683 +g59685 +S'the' +p59687 +tp59688 +a(g59685 +g59687 +S'draperylike' +p59689 +tp59690 +a(g59687 +g59689 +S'framing,' +p59691 +tp59692 +a(g59689 +g59691 +S'the' +p59693 +tp59694 +a(g59691 +g59693 +S'clear,' +p59695 +tp59696 +a(g59693 +g59695 +S'bright,' +p59697 +tp59698 +a(g59695 +g59697 +S'color' +p59699 +tp59700 +a(g59697 +g59699 +S'scheme,' +p59701 +tp59702 +a(g59699 +g59701 +S'and' +p59703 +tp59704 +a(g59701 +g59703 +S'the' +p59705 +tp59706 +a(g59703 +g59705 +S'carefully' +p59707 +tp59708 +a(g59705 +g59707 +S'delineated' +p59709 +tp59710 +a(g59707 +g59709 +S'eyelids' +p59711 +tp59712 +a(g59709 +g59711 +S'of' +p59713 +tp59714 +a(g59711 +g59713 +S'the' +p59715 +tp59716 +a(g59713 +g59715 +S'saint.' +p59717 +tp59718 +a(g59715 +g59717 +S'this' +p59719 +tp59720 +a(g59717 +g59719 +S'waterspout' +p59721 +tp59722 +a(g59719 +g59721 +S'in' +p59723 +tp59724 +a(g59721 +g59723 +S'the' +p59725 +tp59726 +a(g59723 +g59725 +S'form' +p59727 +tp59728 +a(g59725 +g59727 +S'of' +p59729 +tp59730 +a(g59727 +g59729 +S'a' +p59731 +tp59732 +a(g59729 +g59731 +S'human' +p59733 +tp59734 +a(g59731 +g59733 +S'face,' +p59735 +tp59736 +a(g59733 +g59735 +S'from' +p59737 +tp59738 +a(g59735 +g59737 +S'the' +p59739 +tp59740 +a(g59737 +g59739 +S'mission' +p59741 +tp59742 +a(g59739 +g59741 +S'of' +p59743 +tp59744 +a(g59741 +g59743 +S'san' +p59745 +tp59746 +a(g59743 +g59745 +S'luis' +p59747 +tp59748 +a(g59745 +g59747 +S'rey' +p59749 +tp59750 +a(g59747 +g59749 +S'de' +p59751 +tp59752 +a(g59749 +g59751 +S'francia,' +p59753 +tp59754 +a(g59751 +g59753 +S'in' +p59755 +tp59756 +a(g59753 +g59755 +S'san' +p59757 +tp59758 +a(g59755 +g59757 +S'diego' +p59759 +tp59760 +a(g59757 +g59759 +S'county,' +p59761 +tp59762 +a(g59759 +g59761 +S'and' +p59763 +tp59764 +a(g59761 +g59763 +S'the' +p59765 +tp59766 +a(g59763 +g59765 +S'one' +p59767 +tp59768 +a(g59765 +g59767 +S'from' +p59769 +tp59770 +a(g59767 +g59769 +S'santa' +p59771 +tp59772 +a(g59769 +g59771 +S'barbara' +p59773 +tp59774 +a(g59771 +g59773 +S'may' +p59775 +tp59776 +a(g59773 +g59775 +S'both' +p59777 +tp59778 +a(g59775 +g59777 +S'have' +p59779 +tp59780 +a(g59777 +g59779 +S'been' +p59781 +tp59782 +a(g59779 +g59781 +S'designed' +p59783 +tp59784 +a(g59781 +g59783 +S'by' +p59785 +tp59786 +a(g59783 +g59785 +S'the' +p59787 +tp59788 +a(g59785 +g59787 +S'same' +p59789 +tp59790 +a(g59787 +g59789 +S'person' +p59791 +tp59792 +a(g59789 +g59791 +S'—' +p59793 +tp59794 +a(g59791 +g59793 +S'padre' +p59795 +tp59796 +a(g59793 +g59795 +S'antonio' +p59797 +tp59798 +a(g59795 +g59797 +S'peyri' +p59799 +tp59800 +a(g59797 +g59799 +S'or' +p59801 +tp59802 +a(g59799 +g59801 +S'his' +p59803 +tp59804 +a(g59801 +g59803 +S'assistant.' +p59805 +tp59806 +a(g59803 +g59805 +S'padre' +p59807 +tp59808 +a(g59805 +g59807 +S'peyri' +p59809 +tp59810 +a(g59807 +g59809 +S'was' +p59811 +tp59812 +a(g59809 +g59811 +S'in' +p59813 +tp59814 +a(g59811 +g59813 +S'charge' +p59815 +tp59816 +a(g59813 +g59815 +S'of' +p59817 +tp59818 +a(g59815 +g59817 +S'san' +p59819 +tp59820 +a(g59817 +g59819 +S'luis' +p59821 +tp59822 +a(g59819 +g59821 +S'mission' +p59823 +tp59824 +a(g59821 +g59823 +S'from' +p59825 +tp59826 +a(g59823 +g59825 +S'its' +p59827 +tp59828 +a(g59825 +g59827 +S'establishment' +p59829 +tp59830 +a(g59827 +g59829 +S'in' +p59831 +tp59832 +a(g59829 +g59831 +S'1798' +p59833 +tp59834 +a(g59831 +g59833 +S'until' +p59835 +tp59836 +a(g59833 +g59835 +S'1832.' +p59837 +tp59838 +a(g59835 +g59837 +S'the' +p59839 +tp59840 +a(g59837 +g59839 +S'mission' +p59841 +tp59842 +a(g59839 +g59841 +S'of' +p59843 +tp59844 +a(g59841 +g59843 +S'san' +p59845 +tp59846 +a(g59843 +g59845 +S'luis' +p59847 +tp59848 +a(g59845 +g59847 +S'rey,' +p59849 +tp59850 +a(g59847 +g59849 +S'named' +p59851 +tp59852 +a(g59849 +g59851 +S'after' +p59853 +tp59854 +a(g59851 +g59853 +S'king' +p59855 +tp59856 +a(g59853 +g59855 +S'louis' +p59857 +tp59858 +a(g59855 +g59857 +S'ix' +p59859 +tp59860 +a(g59857 +g59859 +S'of' +p59861 +tp59862 +a(g59859 +g59861 +S'france,' +p59863 +tp59864 +a(g59861 +g59863 +S'was' +p59865 +tp59866 +a(g59863 +g59865 +S'adorned' +p59867 +tp59868 +a(g59865 +g59867 +S'with' +p59869 +tp59870 +a(g59867 +g59869 +S'other' +p59871 +tp59872 +a(g59869 +g59871 +S'stone' +p59873 +tp59874 +a(g59871 +g59873 +S'waterspouts' +p59875 +tp59876 +a(g59873 +g59875 +S'carved' +p59877 +tp59878 +a(g59875 +g59877 +S'in' +p59879 +tp59880 +a(g59877 +g59879 +S'the' +p59881 +tp59882 +a(g59879 +g59881 +S'shape' +p59883 +tp59884 +a(g59881 +g59883 +S'of' +p59885 +tp59886 +a(g59883 +g59885 +S'animal' +p59887 +tp59888 +a(g59885 +g59887 +S'or' +p59889 +tp59890 +a(g59887 +g59889 +S'human' +p59891 +tp59892 +a(g59889 +g59891 +S'faces.' +p59893 +tp59894 +a(g59891 +g59893 +S'such' +p59895 +tp59896 +a(g59893 +g59895 +S'decoration' +p59897 +tp59898 +a(g59895 +g59897 +S'derives' +p59899 +tp59900 +a(g59897 +g59899 +S'from' +p59901 +tp59902 +a(g59899 +g59901 +S'european' +p59903 +tp59904 +a(g59901 +g59903 +S'tradition;' +p59905 +tp59906 +a(g59903 +g59905 +S'in' +p59907 +tp59908 +a(g59905 +g59907 +S'spain,' +p59909 +tp59910 +a(g59907 +g59909 +S'such' +p59911 +tp59912 +a(g59909 +g59911 +S'faces' +p59913 +tp59914 +a(g59911 +g59913 +S'can' +p59915 +tp59916 +a(g59913 +g59915 +S'be' +p59917 +tp59918 +a(g59915 +g59917 +S'seen' +p59919 +tp59920 +a(g59917 +g59919 +S'as' +p59921 +tp59922 +a(g59919 +g59921 +S'corbels,' +p59923 +tp59924 +a(g59921 +g59923 +S'or' +p59925 +tp59926 +a(g59923 +g59925 +S'architectural' +p59927 +tp59928 +a(g59925 +g59927 +S'supports,' +p59929 +tp59930 +a(g59927 +g59929 +S'on' +p59931 +tp59932 +a(g59929 +g59931 +S'medieval' +p59933 +tp59934 +a(g59931 +g59933 +S'churches.' +p59935 +tp59936 +a(g59933 +g59935 +S'in' +p59937 +tp59938 +a(g59935 +g59937 +S'california,' +p59939 +tp59940 +a(g59937 +g59939 +S'most' +p59941 +tp59942 +a(g59939 +g59941 +S'existing' +p59943 +tp59944 +a(g59941 +g59943 +S'carving' +p59945 +tp59946 +a(g59943 +g59945 +S'in' +p59947 +tp59948 +a(g59945 +g59947 +S'the' +p59949 +tp59950 +a(g59947 +g59949 +S'round' +p59951 +tp59952 +a(g59949 +g59951 +S'is' +p59953 +tp59954 +a(g59951 +g59953 +S'of' +p59955 +tp59956 +a(g59953 +g59955 +S'stone,' +p59957 +tp59958 +a(g59955 +g59957 +S'in' +p59959 +tp59960 +a(g59957 +g59959 +S'contrast' +p59961 +tp59962 +a(g59959 +g59961 +S'to' +p59963 +tp59964 +a(g59961 +g59963 +S'the' +p59965 +tp59966 +a(g59963 +g59965 +S'many' +p59967 +tp59968 +a(g59965 +g59967 +S'wooden' +p59969 +tp59970 +a(g59967 +g59969 +S'"bultos,"' +p59971 +tp59972 +a(g59969 +g59971 +S'or' +p59973 +tp59974 +a(g59971 +g59973 +S'statues,' +p59975 +tp59976 +a(g59973 +g59975 +S'of' +p59977 +tp59978 +a(g59975 +g59977 +S'new' +p59979 +tp59980 +a(g59977 +g59979 +S'mexico.' +p59981 +tp59982 +a(g59979 +g59981 +S'an' +p59983 +tp59984 +a(g59981 +g59983 +S'example' +p59985 +tp59986 +a(g59983 +g59985 +S'is' +p59987 +tp59988 +a(g59985 +g59987 +S'this' +p59989 +tp59990 +a(g59987 +g59989 +S'sandstone' +p59991 +tp59992 +a(g59989 +g59991 +S'waterspout' +p59993 +tp59994 +a(g59991 +g59993 +S'from' +p59995 +tp59996 +a(g59993 +g59995 +S'the' +p59997 +tp59998 +a(g59995 +g59997 +S'santa' +p59999 +tp60000 +a(g59997 +g59999 +S'barbara' +p60001 +tp60002 +a(g59999 +g60001 +S'mission.' +p60003 +tp60004 +a(g60001 +g60003 +S'one' +p60005 +tp60006 +a(g60003 +g60005 +S'of' +p60007 +tp60008 +a(g60005 +g60007 +S'the' +p60009 +tp60010 +a(g60007 +g60009 +S'reasons' +p60011 +tp60012 +a(g60009 +g60011 +S'the' +p60013 +tp60014 +a(g60011 +g60013 +S'site' +p60015 +tp60016 +a(g60013 +g60015 +S'was' +p60017 +tp60018 +a(g60015 +g60017 +S'selected' +p60019 +tp60020 +a(g60017 +g60019 +S'for' +p60021 +tp60022 +a(g60019 +g60021 +S'a' +p60023 +tp60024 +a(g60021 +g60023 +S'mission,' +p60025 +tp60026 +a(g60023 +g60025 +S'in' +p60027 +tp60028 +a(g60025 +g60027 +S'fact,' +p60029 +tp60030 +a(g60027 +g60029 +S'was' +p60031 +tp60032 +a(g60029 +g60031 +S'the' +p60033 +tp60034 +a(g60031 +g60033 +S'presence' +p60035 +tp60036 +a(g60033 +g60035 +S'of' +p60037 +tp60038 +a(g60035 +g60037 +S'abundant' +p60039 +tp60040 +a(g60037 +g60039 +S'building' +p60041 +tp60042 +a(g60039 +g60041 +S'stone.' +p60043 +tp60044 +a(g60041 +g60043 +S'this' +p60045 +tp60046 +a(g60043 +g60045 +S'piece' +p60047 +tp60048 +a(g60045 +g60047 +S'may' +p60049 +tp60050 +a(g60047 +g60049 +S'represent' +p60051 +tp60052 +a(g60049 +g60051 +S'the' +p60053 +tp60054 +a(g60051 +g60053 +S'grizzly' +p60055 +tp60056 +a(g60053 +g60055 +S'bear,' +p60057 +tp60058 +a(g60055 +g60057 +S'native' +p60059 +tp60060 +a(g60057 +g60059 +S'to' +p60061 +tp60062 +a(g60059 +g60061 +S'california.' +p60063 +tp60064 +a(g60061 +g60063 +S'the' +p60065 +tp60066 +a(g60063 +g60065 +S'waterspout' +p60067 +tp60068 +a(g60065 +g60067 +S'was' +p60069 +tp60070 +a(g60067 +g60069 +S'situated' +p60071 +tp60072 +a(g60069 +g60071 +S'at' +p60073 +tp60074 +a(g60071 +g60073 +S'the' +p60075 +tp60076 +a(g60073 +g60075 +S'head' +p60077 +tp60078 +a(g60075 +g60077 +S'of' +p60079 +tp60080 +a(g60077 +g60079 +S'a' +p60081 +tp60082 +a(g60079 +g60081 +S'stone' +p60083 +tp60084 +a(g60081 +g60083 +S'laundry' +p60085 +tp60086 +a(g60083 +g60085 +S'vat' +p60087 +tp60088 +a(g60085 +g60087 +S'below' +p60089 +tp60090 +a(g60087 +g60089 +S'a' +p60091 +tp60092 +a(g60089 +g60091 +S'fountain' +p60093 +tp60094 +a(g60091 +g60093 +S'in' +p60095 +tp60096 +a(g60093 +g60095 +S'front' +p60097 +tp60098 +a(g60095 +g60097 +S'of' +p60099 +tp60100 +a(g60097 +g60099 +S'the' +p60101 +tp60102 +a(g60099 +g60101 +S'mission.' +p60103 +tp60104 +a(g60101 +g60103 +S'the' +p60105 +tp60106 +a(g60103 +g60105 +S'overflow' +p60107 +tp60108 +a(g60105 +g60107 +S'from' +p60109 +tp60110 +a(g60107 +g60109 +S'the' +p60111 +tp60112 +a(g60109 +g60111 +S'fountain' +p60113 +tp60114 +a(g60111 +g60113 +S'was' +p60115 +tp60116 +a(g60113 +g60115 +S'conducted' +p60117 +tp60118 +a(g60115 +g60117 +S'to' +p60119 +tp60120 +a(g60117 +g60119 +S'the' +p60121 +tp60122 +a(g60119 +g60121 +S'laundry' +p60123 +tp60124 +a(g60121 +g60123 +S'vat,' +p60125 +tp60126 +a(g60123 +g60125 +S'emptying' +p60127 +tp60128 +a(g60125 +g60127 +S'through' +p60129 +tp60130 +a(g60127 +g60129 +S'the' +p60131 +tp60132 +a(g60129 +g60131 +S'mouth' +p60133 +tp60134 +a(g60131 +g60133 +S'of' +p60135 +tp60136 +a(g60133 +g60135 +S'the' +p60137 +tp60138 +a(g60135 +g60137 +S'bear' +p60139 +tp60140 +a(g60137 +g60139 +S'into' +p60141 +tp60142 +a(g60139 +g60141 +S'the' +p60143 +tp60144 +a(g60141 +g60143 +S'basin' +p60145 +tp60146 +a(g60143 +g60145 +S'of' +p60147 +tp60148 +a(g60145 +g60147 +S'the' +p60149 +tp60150 +a(g60147 +g60149 +S'vat.' +p60151 +tp60152 +a(g60149 +g60151 +S'indians' +p60153 +tp60154 +a(g60151 +g60153 +S'brought' +p60155 +tp60156 +a(g60153 +g60155 +S'their' +p60157 +tp60158 +a(g60155 +g60157 +S'family' +p60159 +tp60160 +a(g60157 +g60159 +S'wash' +p60161 +tp60162 +a(g60159 +g60161 +S'to' +p60163 +tp60164 +a(g60161 +g60163 +S'this' +p60165 +tp60166 +a(g60163 +g60165 +S'basin,' +p60167 +tp60168 +a(g60165 +g60167 +S'dipping' +p60169 +tp60170 +a(g60167 +g60169 +S'garments' +p60171 +tp60172 +a(g60169 +g60171 +S'in' +p60173 +tp60174 +a(g60171 +g60173 +S'the' +p60175 +tp60176 +a(g60173 +g60175 +S'water' +p60177 +tp60178 +a(g60175 +g60177 +S'and' +p60179 +tp60180 +a(g60177 +g60179 +S'beating' +p60181 +tp60182 +a(g60179 +g60181 +S'them' +p60183 +tp60184 +a(g60181 +g60183 +S'against' +p60185 +tp60186 +a(g60183 +g60185 +S'the' +p60187 +tp60188 +a(g60185 +g60187 +S'rim' +p60189 +tp60190 +a(g60187 +g60189 +S'with' +p60191 +tp60192 +a(g60189 +g60191 +S'paddles.' +p60193 +tp60194 +a(g60191 +g60193 +S'in' +p60195 +tp60196 +a(g60193 +g60195 +S'new' +p60197 +tp60198 +a(g60195 +g60197 +S'mexico,' +p60199 +tp60200 +a(g60197 +g60199 +S'priests' +p60201 +tp60202 +a(g60199 +g60201 +S'taught' +p60203 +tp60204 +a(g60201 +g60203 +S'skills' +p60205 +tp60206 +a(g60203 +g60205 +S'to' +p60207 +tp60208 +a(g60205 +g60207 +S'local' +p60209 +tp60210 +a(g60207 +g60209 +S'workers,' +p60211 +tp60212 +a(g60209 +g60211 +S'who' +p60213 +tp60214 +a(g60211 +g60213 +S'became' +p60215 +tp60216 +a(g60213 +g60215 +S'known' +p60217 +tp60218 +a(g60215 +g60217 +S'as' +p60219 +tp60220 +a(g60217 +g60219 +S'"santeros."' +p60221 +tp60222 +a(g60219 +g60221 +S'the' +p60223 +tp60224 +a(g60221 +g60223 +S'latter' +p60225 +tp60226 +a(g60223 +g60225 +S'produced' +p60227 +tp60228 +a(g60225 +g60227 +S'""santos,"' +p60229 +tp60230 +a(g60227 +g60229 +S'or' +p60231 +tp60232 +a(g60229 +g60231 +S'religious' +p60233 +tp60234 +a(g60231 +g60233 +S'images,' +p60235 +tp60236 +a(g60233 +g60235 +S'that' +p60237 +tp60238 +a(g60235 +g60237 +S'were' +p60239 +tp60240 +a(g60237 +g60239 +S'either' +p60241 +tp60242 +a(g60239 +g60241 +S'carved' +p60243 +tp60244 +a(g60241 +g60243 +S'in' +p60245 +tp60246 +a(g60243 +g60245 +S'the' +p60247 +tp60248 +a(g60245 +g60247 +S'round' +p60249 +tp60250 +a(g60247 +g60249 +S'—' +p60251 +tp60252 +a(g60249 +g60251 +S'"bultos"' +p60253 +tp60254 +a(g60251 +g60253 +S'—' +p60255 +tp60256 +a(g60253 +g60255 +S'or' +p60257 +tp60258 +a(g60255 +g60257 +S'painted' +p60259 +tp60260 +a(g60257 +g60259 +S'on' +p60261 +tp60262 +a(g60259 +g60261 +S'panels' +p60263 +tp60264 +a(g60261 +g60263 +S'—' +p60265 +tp60266 +a(g60263 +g60265 +S'"retablos."' +p60267 +tp60268 +a(g60265 +g60267 +S'whereas' +p60269 +tp60270 +a(g60267 +g60269 +S'the' +p60271 +tp60272 +a(g60269 +g60271 +S'california' +p60273 +tp60274 +a(g60271 +g60273 +S'missions' +p60275 +tp60276 +a(g60273 +g60275 +S'owned' +p60277 +tp60278 +a(g60275 +g60277 +S'numbers' +p60279 +tp60280 +a(g60277 +g60279 +S'of' +p60281 +tp60282 +a(g60279 +g60281 +S'oil' +p60283 +tp60284 +a(g60281 +g60283 +S'paintings,' +p60285 +tp60286 +a(g60283 +g60285 +S'either' +p60287 +tp60288 +a(g60285 +g60287 +S'imported' +p60289 +tp60290 +a(g60287 +g60289 +S'from' +p60291 +tp60292 +a(g60289 +g60291 +S'mexico' +p60293 +tp60294 +a(g60291 +g60293 +S'or' +p60295 +tp60296 +a(g60293 +g60295 +S'the' +p60297 +tp60298 +a(g60295 +g60297 +S'work' +p60299 +tp60300 +a(g60297 +g60299 +S'of' +p60301 +tp60302 +a(g60299 +g60301 +S'mission-trained' +p60303 +tp60304 +a(g60301 +g60303 +S'artists,' +p60305 +tp60306 +a(g60303 +g60305 +S'in' +p60307 +tp60308 +a(g60305 +g60307 +S'new' +p60309 +tp60310 +a(g60307 +g60309 +S'mexico' +p60311 +tp60312 +a(g60309 +g60311 +S'such' +p60313 +tp60314 +a(g60311 +g60313 +S'paintings' +p60315 +tp60316 +a(g60313 +g60315 +S'are' +p60317 +tp60318 +a(g60315 +g60317 +S'rarely' +p60319 +tp60320 +a(g60317 +g60319 +S'found.' +p60321 +tp60322 +a(g60319 +g60321 +S'instead,' +p60323 +tp60324 +a(g60321 +g60323 +S'the' +p60325 +tp60326 +a(g60323 +g60325 +S'artists' +p60327 +tp60328 +a(g60325 +g60327 +S'were' +p60329 +tp60330 +a(g60327 +g60329 +S'taught' +p60331 +tp60332 +a(g60329 +g60331 +S'to' +p60333 +tp60334 +a(g60331 +g60333 +S'paint' +p60335 +tp60336 +a(g60333 +g60335 +S'with' +p60337 +tp60338 +a(g60335 +g60337 +S'tempera' +p60339 +tp60340 +a(g60337 +g60339 +S'on' +p60341 +tp60342 +a(g60339 +g60341 +S'wooden' +p60343 +tp60344 +a(g60341 +g60343 +S'panels' +p60345 +tp60346 +a(g60343 +g60345 +S'that' +p60347 +tp60348 +a(g60345 +g60347 +S'were' +p60349 +tp60350 +a(g60347 +g60349 +S'first' +p60351 +tp60352 +a(g60349 +g60351 +S'treated' +p60353 +tp60354 +a(g60351 +g60353 +S'with' +p60355 +tp60356 +a(g60353 +g60355 +S'gesso.' +p60357 +tp60358 +a(g60355 +g60357 +S'a' +p60359 +tp60360 +a(g60357 +g60359 +S'few' +p60361 +tp60362 +a(g60359 +g60361 +S'panels' +p60363 +tp60364 +a(g60361 +g60363 +S'were' +p60365 +tp60366 +a(g60363 +g60365 +S'modeled' +p60367 +tp60368 +a(g60365 +g60367 +S'in' +p60369 +tp60370 +a(g60367 +g60369 +S'the' +p60371 +tp60372 +a(g60369 +g60371 +S'gesso,' +p60373 +tp60374 +a(g60371 +g60373 +S'like' +p60375 +tp60376 +a(g60373 +g60375 +S'this' +p60377 +tp60378 +a(g60375 +g60377 +S'one' +p60379 +tp60380 +a(g60377 +g60379 +S'representing' +p60381 +tp60382 +a(g60379 +g60381 +S'our' +p60383 +tp60384 +a(g60381 +g60383 +S'lady' +p60385 +tp60386 +a(g60383 +g60385 +S'of' +p60387 +tp60388 +a(g60385 +g60387 +S'sorrows.' +p60389 +tp60390 +a(g60387 +g60389 +S'this' +p60391 +tp60392 +a(g60389 +g60391 +S'type' +p60393 +tp60394 +a(g60391 +g60393 +S'is' +p60395 +tp60396 +a(g60393 +g60395 +S'rare' +p60397 +tp60398 +a(g60395 +g60397 +S'and' +p60399 +tp60400 +a(g60397 +g60399 +S'is' +p60401 +tp60402 +a(g60399 +g60401 +S'believed' +p60403 +tp60404 +a(g60401 +g60403 +S'to' +p60405 +tp60406 +a(g60403 +g60405 +S'be' +p60407 +tp60408 +a(g60405 +g60407 +S'from' +p60409 +tp60410 +a(g60407 +g60409 +S'the' +p60411 +tp60412 +a(g60409 +g60411 +S'early' +p60413 +tp60414 +a(g60411 +g60413 +S'"santero"' +p60415 +tp60416 +a(g60413 +g60415 +S'period' +p60417 +tp60418 +a(g60415 +g60417 +S'in' +p60419 +tp60420 +a(g60417 +g60419 +S'new' +p60421 +tp60422 +a(g60419 +g60421 +S'mexico.' +p60423 +tp60424 +a(g60421 +g60423 +S'such' +p60425 +tp60426 +a(g60423 +g60425 +S'paintings' +p60427 +tp60428 +a(g60425 +g60427 +S'have' +p60429 +tp60430 +a(g60427 +g60429 +S'been' +p60431 +tp60432 +a(g60429 +g60431 +S'dated' +p60433 +tp60434 +a(g60431 +g60433 +S'by' +p60435 +tp60436 +a(g60433 +g60435 +S'tree' +p60437 +tp60438 +a(g60435 +g60437 +S'rings' +p60439 +tp60440 +a(g60437 +g60439 +S'in' +p60441 +tp60442 +a(g60439 +g60441 +S'the' +p60443 +tp60444 +a(g60441 +g60443 +S'wood' +p60445 +tp60446 +a(g60443 +g60445 +S'panels' +p60447 +tp60448 +a(g60445 +g60447 +S'to' +p60449 +tp60450 +a(g60447 +g60449 +S'the' +p60451 +tp60452 +a(g60449 +g60451 +S'period' +p60453 +tp60454 +a(g60451 +g60453 +S'1765–1812.' +p60455 +tp60456 +a(g60453 +g60455 +S'this' +p60457 +tp60458 +a(g60455 +g60457 +S'is' +p60459 +tp60460 +a(g60457 +g60459 +S'an' +p60461 +tp60462 +a(g60459 +g60461 +S'exceptionally' +p60463 +tp60464 +a(g60461 +g60463 +S'fine' +p60465 +tp60466 +a(g60463 +g60465 +S'"bulto."' +p60467 +tp60468 +a(g60465 +g60467 +S'it' +p60469 +tp60470 +a(g60467 +g60469 +S'represents' +p60471 +tp60472 +a(g60469 +g60471 +S'the' +p60473 +tp60474 +a(g60471 +g60473 +S'virgin' +p60475 +tp60476 +a(g60473 +g60475 +S'and' +p60477 +tp60478 +a(g60475 +g60477 +S'child,' +p60479 +tp60480 +a(g60477 +g60479 +S'a' +p60481 +tp60482 +a(g60479 +g60481 +S'favorite' +p60483 +tp60484 +a(g60481 +g60483 +S'subject' +p60485 +tp60486 +a(g60483 +g60485 +S'of' +p60487 +tp60488 +a(g60485 +g60487 +S'new' +p60489 +tp60490 +a(g60487 +g60489 +S'mexico' +p60491 +tp60492 +a(g60489 +g60491 +S'artists.' +p60493 +tp60494 +a(g60491 +g60493 +S'the' +p60495 +tp60496 +a(g60493 +g60495 +S'virgin,' +p60497 +tp60498 +a(g60495 +g60497 +S'"nuestra' +p60499 +tp60500 +a(g60497 +g60499 +S'señora,"' +p60501 +tp60502 +a(g60499 +g60501 +S'was' +p60503 +tp60504 +a(g60501 +g60503 +S'portrayed' +p60505 +tp60506 +a(g60503 +g60505 +S'in' +p60507 +tp60508 +a(g60505 +g60507 +S'at' +p60509 +tp60510 +a(g60507 +g60509 +S'least' +p60511 +tp60512 +a(g60509 +g60511 +S'half' +p60513 +tp60514 +a(g60511 +g60513 +S'a' +p60515 +tp60516 +a(g60513 +g60515 +S'dozen' +p60517 +tp60518 +a(g60515 +g60517 +S'versions' +p60519 +tp60520 +a(g60517 +g60519 +S'that' +p60521 +tp60522 +a(g60519 +g60521 +S'differ' +p60523 +tp60524 +a(g60521 +g60523 +S'in' +p60525 +tp60526 +a(g60523 +g60525 +S'their' +p60527 +tp60528 +a(g60525 +g60527 +S'attributes.' +p60529 +tp60530 +a(g60527 +g60529 +S'in' +p60531 +tp60532 +a(g60529 +g60531 +S'this' +p60533 +tp60534 +a(g60531 +g60533 +S'case,' +p60535 +tp60536 +a(g60533 +g60535 +S'several' +p60537 +tp60538 +a(g60535 +g60537 +S'attributes' +p60539 +tp60540 +a(g60537 +g60539 +S'have' +p60541 +tp60542 +a(g60539 +g60541 +S'been' +p60543 +tp60544 +a(g60541 +g60543 +S'merged,' +p60545 +tp60546 +a(g60543 +g60545 +S'such' +p60547 +tp60548 +a(g60545 +g60547 +S'as' +p60549 +tp60550 +a(g60547 +g60549 +S'the' +p60551 +tp60552 +a(g60549 +g60551 +S'crescent' +p60553 +tp60554 +a(g60551 +g60553 +S'on' +p60555 +tp60556 +a(g60553 +g60555 +S'the' +p60557 +tp60558 +a(g60555 +g60557 +S'skirt,' +p60559 +tp60560 +a(g60557 +g60559 +S'which' +p60561 +tp60562 +a(g60559 +g60561 +S'usually' +p60563 +tp60564 +a(g60561 +g60563 +S'belongs' +p60565 +tp60566 +a(g60563 +g60565 +S'to' +p60567 +tp60568 +a(g60565 +g60567 +S'the' +p60569 +tp60570 +a(g60567 +g60569 +S'praying' +p60571 +tp60572 +a(g60569 +g60571 +S'immaculata' +p60573 +tp60574 +a(g60571 +g60573 +S'virgin;' +p60575 +tp60576 +a(g60573 +g60575 +S'and' +p60577 +tp60578 +a(g60575 +g60577 +S'the' +p60579 +tp60580 +a(g60577 +g60579 +S'outstretched' +p60581 +tp60582 +a(g60579 +g60581 +S'arm,' +p60583 +tp60584 +a(g60581 +g60583 +S'which' +p60585 +tp60586 +a(g60583 +g60585 +S'is' +p60587 +tp60588 +a(g60585 +g60587 +S'a' +p60589 +tp60590 +a(g60587 +g60589 +S'gesture' +p60591 +tp60592 +a(g60589 +g60591 +S'characteristic' +p60593 +tp60594 +a(g60591 +g60593 +S'of' +p60595 +tp60596 +a(g60593 +g60595 +S'the' +p60597 +tp60598 +a(g60595 +g60597 +S'madonna' +p60599 +tp60600 +a(g60597 +g60599 +S'known' +p60601 +tp60602 +a(g60599 +g60601 +S'as' +p60603 +tp60604 +a(g60601 +g60603 +S'our' +p60605 +tp60606 +a(g60603 +g60605 +S'lady' +p60607 +tp60608 +a(g60605 +g60607 +S'of' +p60609 +tp60610 +a(g60607 +g60609 +S'mount' +p60611 +tp60612 +a(g60609 +g60611 +S'carmel.' +p60613 +tp60614 +a(g60611 +g60613 +S'the' +p60615 +tp60616 +a(g60613 +g60615 +S'tilt' +p60617 +tp60618 +a(g60615 +g60617 +S'of' +p60619 +tp60620 +a(g60617 +g60619 +S'the' +p60621 +tp60622 +a(g60619 +g60621 +S'head' +p60623 +tp60624 +a(g60621 +g60623 +S'and' +p60625 +tp60626 +a(g60623 +g60625 +S'the' +p60627 +tp60628 +a(g60625 +g60627 +S'gestures' +p60629 +tp60630 +a(g60627 +g60629 +S'of' +p60631 +tp60632 +a(g60629 +g60631 +S'the' +p60633 +tp60634 +a(g60631 +g60633 +S'arms' +p60635 +tp60636 +a(g60633 +g60635 +S'give' +p60637 +tp60638 +a(g60635 +g60637 +S'particular' +p60639 +tp60640 +a(g60637 +g60639 +S'liveliness' +p60641 +tp60642 +a(g60639 +g60641 +S'to' +p60643 +tp60644 +a(g60641 +g60643 +S'this' +p60645 +tp60646 +a(g60643 +g60645 +S'"bulto."' +p60647 +tp60648 +a(g60645 +g60647 +S'the' +p60649 +tp60650 +a(g60647 +g60649 +S'upper' +p60651 +tp60652 +a(g60649 +g60651 +S'part' +p60653 +tp60654 +a(g60651 +g60653 +S'of' +p60655 +tp60656 +a(g60653 +g60655 +S'the' +p60657 +tp60658 +a(g60655 +g60657 +S'figure' +p60659 +tp60660 +a(g60657 +g60659 +S'is' +p60661 +tp60662 +a(g60659 +g60661 +S'solid;' +p60663 +tp60664 +a(g60661 +g60663 +S'the' +p60665 +tp60666 +a(g60663 +g60665 +S'lower' +p60667 +tp60668 +a(g60665 +g60667 +S'part' +p60669 +tp60670 +a(g60667 +g60669 +S'is' +p60671 +tp60672 +a(g60669 +g60671 +S'a' +p60673 +tp60674 +a(g60671 +g60673 +S'hollow' +p60675 +tp60676 +a(g60673 +g60675 +S'framework' +p60677 +tp60678 +a(g60675 +g60677 +S'built' +p60679 +tp60680 +a(g60677 +g60679 +S'up' +p60681 +tp60682 +a(g60679 +g60681 +S'on' +p60683 +tp60684 +a(g60681 +g60683 +S'an' +p60685 +tp60686 +a(g60683 +g60685 +S'armature' +p60687 +tp60688 +a(g60685 +g60687 +S'of' +p60689 +tp60690 +a(g60687 +g60689 +S'sticks,' +p60691 +tp60692 +a(g60689 +g60691 +S'bound' +p60693 +tp60694 +a(g60691 +g60693 +S'together,' +p60695 +tp60696 +a(g60693 +g60695 +S'fastened' +p60697 +tp60698 +a(g60695 +g60697 +S'to' +p60699 +tp60700 +a(g60697 +g60699 +S'the' +p60701 +tp60702 +a(g60699 +g60701 +S'waist' +p60703 +tp60704 +a(g60701 +g60703 +S'and' +p60705 +tp60706 +a(g60703 +g60705 +S'base,' +p60707 +tp60708 +a(g60705 +g60707 +S'and' +p60709 +tp60710 +a(g60707 +g60709 +S'covered' +p60711 +tp60712 +a(g60709 +g60711 +S'with' +p60713 +tp60714 +a(g60711 +g60713 +S'cloth' +p60715 +tp60716 +a(g60713 +g60715 +S'dipped' +p60717 +tp60718 +a(g60715 +g60717 +S'in' +p60719 +tp60720 +a(g60717 +g60719 +S'gesso.' +p60721 +tp60722 +a(g60719 +g60721 +S'the' +p60723 +tp60724 +a(g60721 +g60723 +S'bell-shaped' +p60725 +tp60726 +a(g60723 +g60725 +S'skirt' +p60727 +tp60728 +a(g60725 +g60727 +S'gave' +p60729 +tp60730 +a(g60727 +g60729 +S'a' +p60731 +tp60732 +a(g60729 +g60731 +S'fine' +p60733 +tp60734 +a(g60731 +g60733 +S'opportunity' +p60735 +tp60736 +a(g60733 +g60735 +S'for' +p60737 +tp60738 +a(g60735 +g60737 +S'decoration.' +p60739 +tp60740 +a(g60737 +g60739 +S'figures' +p60741 +tp60742 +a(g60739 +g60741 +S'like' +p60743 +tp60744 +a(g60741 +g60743 +S'this,' +p60745 +tp60746 +a(g60743 +g60745 +S'about' +p60747 +tp60748 +a(g60745 +g60747 +S'two' +p60749 +tp60750 +a(g60747 +g60749 +S'feet' +p60751 +tp60752 +a(g60749 +g60751 +S'high,' +p60753 +tp60754 +a(g60751 +g60753 +S'were' +p60755 +tp60756 +a(g60753 +g60755 +S'carried' +p60757 +tp60758 +a(g60755 +g60757 +S'in' +p60759 +tp60760 +a(g60757 +g60759 +S'processions' +p60761 +tp60762 +a(g60759 +g60761 +S'at' +p60763 +tp60764 +a(g60761 +g60763 +S'church' +p60765 +tp60766 +a(g60763 +g60765 +S'festivals.' +p60767 +tp60768 +a(g60765 +g60767 +S'muted' +p60769 +tp60770 +a(g60767 +g60769 +S'color' +p60771 +tp60772 +a(g60769 +g60771 +S'schemes' +p60773 +tp60774 +a(g60771 +g60773 +S'are' +p60775 +tp60776 +a(g60773 +g60775 +S'typical' +p60777 +tp60778 +a(g60775 +g60777 +S'of' +p60779 +tp60780 +a(g60777 +g60779 +S'"retablos"' +p60781 +tp60782 +a(g60779 +g60781 +S'in' +p60783 +tp60784 +a(g60781 +g60783 +S'new' +p60785 +tp60786 +a(g60783 +g60785 +S'mexico.' +p60787 +tp60788 +a(g60785 +g60787 +S'this' +p60789 +tp60790 +a(g60787 +g60789 +S'"retablo,"' +p60791 +tp60792 +a(g60789 +g60791 +S'depicting' +p60793 +tp60794 +a(g60791 +g60793 +S'saint' +p60795 +tp60796 +a(g60793 +g60795 +S'michael,' +p60797 +tp60798 +a(g60795 +g60797 +S'is' +p60799 +tp60800 +a(g60797 +g60799 +S'painted' +p60801 +tp60802 +a(g60799 +g60801 +S'on' +p60803 +tp60804 +a(g60801 +g60803 +S'gesso' +p60805 +tp60806 +a(g60803 +g60805 +S'over' +p60807 +tp60808 +a(g60805 +g60807 +S'cottonwood.' +p60809 +tp60810 +a(g60807 +g60809 +S'in' +p60811 +tp60812 +a(g60809 +g60811 +S'keeping' +p60813 +tp60814 +a(g60811 +g60813 +S'with' +p60815 +tp60816 +a(g60813 +g60815 +S'most' +p60817 +tp60818 +a(g60815 +g60817 +S'other' +p60819 +tp60820 +a(g60817 +g60819 +S'"retablos,"' +p60821 +tp60822 +a(g60819 +g60821 +S'the' +p60823 +tp60824 +a(g60821 +g60823 +S'design' +p60825 +tp60826 +a(g60823 +g60825 +S'of' +p60827 +tp60828 +a(g60825 +g60827 +S'this' +p60829 +tp60830 +a(g60827 +g60829 +S'piece' +p60831 +tp60832 +a(g60829 +g60831 +S'is' +p60833 +tp60834 +a(g60831 +g60833 +S'flat' +p60835 +tp60836 +a(g60833 +g60835 +S'and' +p60837 +tp60838 +a(g60835 +g60837 +S'abstract' +p60839 +tp60840 +a(g60837 +g60839 +S'in' +p60841 +tp60842 +a(g60839 +g60841 +S'feeling;' +p60843 +tp60844 +a(g60841 +g60843 +S'decorative' +p60845 +tp60846 +a(g60843 +g60845 +S'motifs' +p60847 +tp60848 +a(g60845 +g60847 +S'like' +p60849 +tp60850 +a(g60847 +g60849 +S'the' +p60851 +tp60852 +a(g60849 +g60851 +S'drapery' +p60853 +tp60854 +a(g60851 +g60853 +S'are' +p60855 +tp60856 +a(g60853 +g60855 +S'simplified.' +p60857 +tp60858 +a(g60855 +g60857 +S'in' +p60859 +tp60860 +a(g60857 +g60859 +S'these' +p60861 +tp60862 +a(g60859 +g60861 +S'respects' +p60863 +tp60864 +a(g60861 +g60863 +S'it' +p60865 +tp60866 +a(g60863 +g60865 +S'is' +p60867 +tp60868 +a(g60865 +g60867 +S'akin' +p60869 +tp60870 +a(g60867 +g60869 +S'to' +p60871 +tp60872 +a(g60869 +g60871 +S'a' +p60873 +tp60874 +a(g60871 +g60873 +S'folk' +p60875 +tp60876 +a(g60873 +g60875 +S'art' +p60877 +tp60878 +a(g60875 +g60877 +S'style;' +p60879 +tp60880 +a(g60877 +g60879 +S'the' +p60881 +tp60882 +a(g60879 +g60881 +S'origins' +p60883 +tp60884 +a(g60881 +g60883 +S'of' +p60885 +tp60886 +a(g60883 +g60885 +S'this' +p60887 +tp60888 +a(g60885 +g60887 +S'type' +p60889 +tp60890 +a(g60887 +g60889 +S'of' +p60891 +tp60892 +a(g60889 +g60891 +S'painting,' +p60893 +tp60894 +a(g60891 +g60893 +S'however,' +p60895 +tp60896 +a(g60893 +g60895 +S'go' +p60897 +tp60898 +a(g60895 +g60897 +S'back' +p60899 +tp60900 +a(g60897 +g60899 +S'to' +p60901 +tp60902 +a(g60899 +g60901 +S'the' +p60903 +tp60904 +a(g60901 +g60903 +S'numerous' +p60905 +tp60906 +a(g60903 +g60905 +S'devotional' +p60907 +tp60908 +a(g60905 +g60907 +S'images' +p60909 +tp60910 +a(g60907 +g60909 +S'painted' +p60911 +tp60912 +a(g60909 +g60911 +S'by' +p60913 +tp60914 +a(g60911 +g60913 +S'followers' +p60915 +tp60916 +a(g60913 +g60915 +S'of' +p60917 +tp60918 +a(g60915 +g60917 +S'the' +p60919 +tp60920 +a(g60917 +g60919 +S'seventeenth-century' +p60921 +tp60922 +a(g60919 +g60921 +S'spanish' +p60923 +tp60924 +a(g60921 +g60923 +S'painter' +p60925 +tp60926 +a(g60923 +g60925 +S'murillo.' +p60927 +tp60928 +a(g60925 +g60927 +S'the' +p60929 +tp60930 +a(g60927 +g60929 +S'individual' +p60931 +tp60932 +a(g60929 +g60931 +S'"santeros,"' +p60933 +tp60934 +a(g60931 +g60933 +S'or' +p60935 +tp60936 +a(g60933 +g60935 +S'artists' +p60937 +tp60938 +a(g60935 +g60937 +S'who' +p60939 +tp60940 +a(g60937 +g60939 +S'created' +p60941 +tp60942 +a(g60939 +g60941 +S'images' +p60943 +tp60944 +a(g60941 +g60943 +S'of' +p60945 +tp60946 +a(g60943 +g60945 +S'saints,' +p60947 +tp60948 +a(g60945 +g60947 +S'are' +p60949 +tp60950 +a(g60947 +g60949 +S'usually' +p60951 +tp60952 +a(g60949 +g60951 +S'not' +p60953 +tp60954 +a(g60951 +g60953 +S'known' +p60955 +tp60956 +a(g60953 +g60955 +S'by' +p60957 +tp60958 +a(g60955 +g60957 +S'name,' +p60959 +tp60960 +a(g60957 +g60959 +S'but' +p60961 +tp60962 +a(g60959 +g60961 +S'scholarly' +p60963 +tp60964 +a(g60961 +g60963 +S'research' +p60965 +tp60966 +a(g60963 +g60965 +S'has' +p60967 +tp60968 +a(g60965 +g60967 +S'identified' +p60969 +tp60970 +a(g60967 +g60969 +S'several' +p60971 +tp60972 +a(g60969 +g60971 +S'distinct' +p60973 +tp60974 +a(g60971 +g60973 +S'styles' +p60975 +tp60976 +a(g60973 +g60975 +S'and' +p60977 +tp60978 +a(g60975 +g60977 +S'artists.' +p60979 +tp60980 +a(g60977 +g60979 +S'a' +p60981 +tp60982 +a(g60979 +g60981 +S'painter' +p60983 +tp60984 +a(g60981 +g60983 +S'whose' +p60985 +tp60986 +a(g60983 +g60985 +S'work' +p60987 +tp60988 +a(g60985 +g60987 +S'stands' +p60989 +tp60990 +a(g60987 +g60989 +S'out' +p60991 +tp60992 +a(g60989 +g60991 +S'was' +p60993 +tp60994 +a(g60991 +g60993 +S'molleno.' +p60995 +tp60996 +a(g60993 +g60995 +S'this' +p60997 +tp60998 +a(g60995 +g60997 +S'unidentified' +p60999 +tp61000 +a(g60997 +g60999 +S'saint,' +p61001 +tp61002 +a(g60999 +g61001 +S'possibly' +p61003 +tp61004 +a(g61001 +g61003 +S'saint' +p61005 +tp61006 +a(g61003 +g61005 +S'rosalia' +p61007 +tp61008 +a(g61005 +g61007 +S'of' +p61009 +tp61010 +a(g61007 +g61009 +S'palermo,' +p61011 +tp61012 +a(g61009 +g61011 +S'is' +p61013 +tp61014 +a(g61011 +g61013 +S'shown' +p61015 +tp61016 +a(g61013 +g61015 +S'on' +p61017 +tp61018 +a(g61015 +g61017 +S'one' +p61019 +tp61020 +a(g61017 +g61019 +S'of' +p61021 +tp61022 +a(g61019 +g61021 +S'a' +p61023 +tp61024 +a(g61021 +g61023 +S'series' +p61025 +tp61026 +a(g61023 +g61025 +S'of' +p61027 +tp61028 +a(g61025 +g61027 +S'altarpieces' +p61029 +tp61030 +a(g61027 +g61029 +S'of' +p61031 +tp61032 +a(g61029 +g61031 +S'a' +p61033 +tp61034 +a(g61031 +g61033 +S'church.' +p61035 +tp61036 +a(g61033 +g61035 +S'the' +p61037 +tp61038 +a(g61035 +g61037 +S'panel' +p61039 +tp61040 +a(g61037 +g61039 +S'exemplifies' +p61041 +tp61042 +a(g61039 +g61041 +S"molleno's" +p61043 +tp61044 +a(g61041 +g61043 +S'early' +p61045 +tp61046 +a(g61043 +g61045 +S'style,' +p61047 +tp61048 +a(g61045 +g61047 +S'somewhat' +p61049 +tp61050 +a(g61047 +g61049 +S'like' +p61051 +tp61052 +a(g61049 +g61051 +S'traditional' +p61053 +tp61054 +a(g61051 +g61053 +S'spanish' +p61055 +tp61056 +a(g61053 +g61055 +S'style,' +p61057 +tp61058 +a(g61055 +g61057 +S'especially' +p61059 +tp61060 +a(g61057 +g61059 +S'in' +p61061 +tp61062 +a(g61059 +g61061 +S'the' +p61063 +tp61064 +a(g61061 +g61063 +S'elongated' +p61065 +tp61066 +a(g61063 +g61065 +S'figure' +p61067 +tp61068 +a(g61065 +g61067 +S'and' +p61069 +tp61070 +a(g61067 +g61069 +S'expressive' +p61071 +tp61072 +a(g61069 +g61071 +S'hands.' +p61073 +tp61074 +a(g61071 +g61073 +S'the' +p61075 +tp61076 +a(g61073 +g61075 +S'color' +p61077 +tp61078 +a(g61075 +g61077 +S'scheme,' +p61079 +tp61080 +a(g61077 +g61079 +S'with' +p61081 +tp61082 +a(g61079 +g61081 +S'its' +p61083 +tp61084 +a(g61081 +g61083 +S'emphasis' +p61085 +tp61086 +a(g61083 +g61085 +S'on' +p61087 +tp61088 +a(g61085 +g61087 +S'bold,' +p61089 +tp61090 +a(g61087 +g61089 +S'black' +p61091 +tp61092 +a(g61089 +g61091 +S'outlines,' +p61093 +tp61094 +a(g61091 +g61093 +S'is' +p61095 +tp61096 +a(g61093 +g61095 +S'characteristic' +p61097 +tp61098 +a(g61095 +g61097 +S'of' +p61099 +tp61100 +a(g61097 +g61099 +S"molleno's" +p61101 +tp61102 +a(g61099 +g61101 +S'work.' +p61103 +tp61104 +a(g61101 +g61103 +S'after' +p61105 +tp61106 +a(g61103 +g61105 +S'about' +p61107 +tp61108 +a(g61105 +g61107 +S'1825,' +p61109 +tp61110 +a(g61107 +g61109 +S'the' +p61111 +tp61112 +a(g61109 +g61111 +S'simple,' +p61113 +tp61114 +a(g61111 +g61113 +S'straightforward,' +p61115 +tp61116 +a(g61113 +g61115 +S'functional' +p61117 +tp61118 +a(g61115 +g61117 +S'forms' +p61119 +tp61120 +a(g61117 +g61119 +S'of' +p61121 +tp61122 +a(g61119 +g61121 +S'stoneware' +p61123 +tp61124 +a(g61121 +g61123 +S'were' +p61125 +tp61126 +a(g61123 +g61125 +S'enlivened' +p61127 +tp61128 +a(g61125 +g61127 +S'by' +p61129 +tp61130 +a(g61127 +g61129 +S'exuberantly' +p61131 +tp61132 +a(g61129 +g61131 +S'painted' +p61133 +tp61134 +a(g61131 +g61133 +S'decoration.' +p61135 +tp61136 +a(g61133 +g61135 +S'freehand' +p61137 +tp61138 +a(g61135 +g61137 +S'designs' +p61139 +tp61140 +a(g61137 +g61139 +S'in' +p61141 +tp61142 +a(g61139 +g61141 +S'cobalt' +p61143 +tp61144 +a(g61141 +g61143 +S'blue' +p61145 +tp61146 +a(g61143 +g61145 +S'display' +p61147 +tp61148 +a(g61145 +g61147 +S'new' +p61149 +tp61150 +a(g61147 +g61149 +S'freedom' +p61151 +tp61152 +a(g61149 +g61151 +S'and' +p61153 +tp61154 +a(g61151 +g61153 +S'fluidity' +p61155 +tp61156 +a(g61153 +g61155 +S'as' +p61157 +tp61158 +a(g61155 +g61157 +S'seen' +p61159 +tp61160 +a(g61157 +g61159 +S'in' +p61161 +tp61162 +a(g61159 +g61161 +S'the' +p61163 +tp61164 +a(g61161 +g61163 +S'broad,' +p61165 +tp61166 +a(g61163 +g61165 +S'bold' +p61167 +tp61168 +a(g61165 +g61167 +S'brushstrokes' +p61169 +tp61170 +a(g61167 +g61169 +S'on' +p61171 +tp61172 +a(g61169 +g61171 +S'this' +p61173 +tp61174 +a(g61171 +g61173 +S'milk' +p61175 +tp61176 +a(g61173 +g61175 +S'pan.' +p61177 +tp61178 +a(g61175 +g61177 +S'the' +p61179 +tp61180 +a(g61177 +g61179 +S'clarity' +p61181 +tp61182 +a(g61179 +g61181 +S'and' +p61183 +tp61184 +a(g61181 +g61183 +S'vigor' +p61185 +tp61186 +a(g61183 +g61185 +S'of' +p61187 +tp61188 +a(g61185 +g61187 +S'the' +p61189 +tp61190 +a(g61187 +g61189 +S'floral' +p61191 +tp61192 +a(g61189 +g61191 +S'design' +p61193 +tp61194 +a(g61191 +g61193 +S'aptly' +p61195 +tp61196 +a(g61193 +g61195 +S'complement' +p61197 +tp61198 +a(g61195 +g61197 +S'the' +p61199 +tp61200 +a(g61197 +g61199 +S'clean,' +p61201 +tp61202 +a(g61199 +g61201 +S'fluid' +p61203 +tp61204 +a(g61201 +g61203 +S'shape' +p61205 +tp61206 +a(g61203 +g61205 +S'of' +p61207 +tp61208 +a(g61205 +g61207 +S'the' +p61209 +tp61210 +a(g61207 +g61209 +S'pot.' +p61211 +tp61212 +a(g61209 +g61211 +S'stoneware' +p61213 +tp61214 +a(g61211 +g61213 +S'is' +p61215 +tp61216 +a(g61213 +g61215 +S'made' +p61217 +tp61218 +a(g61215 +g61217 +S'from' +p61219 +tp61220 +a(g61217 +g61219 +S'fine,' +p61221 +tp61222 +a(g61219 +g61221 +S'dense' +p61223 +tp61224 +a(g61221 +g61223 +S'gray-blue' +p61225 +tp61226 +a(g61223 +g61225 +S'or' +p61227 +tp61228 +a(g61225 +g61227 +S'buff' +p61229 +tp61230 +a(g61227 +g61229 +S'clay' +p61231 +tp61232 +a(g61229 +g61231 +S'that' +p61233 +tp61234 +a(g61231 +g61233 +S'is' +p61235 +tp61236 +a(g61233 +g61235 +S'capable' +p61237 +tp61238 +a(g61235 +g61237 +S'of' +p61239 +tp61240 +a(g61237 +g61239 +S'withstanding' +p61241 +tp61242 +a(g61239 +g61241 +S'a' +p61243 +tp61244 +a(g61241 +g61243 +S'high' +p61245 +tp61246 +a(g61243 +g61245 +S'firing' +p61247 +tp61248 +a(g61245 +g61247 +S'temperature.' +p61249 +tp61250 +a(g61247 +g61249 +S'the' +p61251 +tp61252 +a(g61249 +g61251 +S'clay' +p61253 +tp61254 +a(g61251 +g61253 +S'is' +p61255 +tp61256 +a(g61253 +g61255 +S'fired' +p61257 +tp61258 +a(g61255 +g61257 +S'to' +p61259 +tp61260 +a(g61257 +g61259 +S'the' +p61261 +tp61262 +a(g61259 +g61261 +S'point' +p61263 +tp61264 +a(g61261 +g61263 +S'at' +p61265 +tp61266 +a(g61263 +g61265 +S'which' +p61267 +tp61268 +a(g61265 +g61267 +S'it' +p61269 +tp61270 +a(g61267 +g61269 +S'fuses' +p61271 +tp61272 +a(g61269 +g61271 +S'and' +p61273 +tp61274 +a(g61271 +g61273 +S'becomes' +p61275 +tp61276 +a(g61273 +g61275 +S'glasslike' +p61277 +tp61278 +a(g61275 +g61277 +S'and' +p61279 +tp61280 +a(g61277 +g61279 +S'impervious' +p61281 +tp61282 +a(g61279 +g61281 +S'to' +p61283 +tp61284 +a(g61281 +g61283 +S'liquids.' +p61285 +tp61286 +a(g61283 +g61285 +S'this' +p61287 +tp61288 +a(g61285 +g61287 +S'hard,' +p61289 +tp61290 +a(g61287 +g61289 +S'durable,' +p61291 +tp61292 +a(g61289 +g61291 +S'nonporous' +p61293 +tp61294 +a(g61291 +g61293 +S'pottery' +p61295 +tp61296 +a(g61293 +g61295 +S'was' +p61297 +tp61298 +a(g61295 +g61297 +S'imported' +p61299 +tp61300 +a(g61297 +g61299 +S'in' +p61301 +tp61302 +a(g61299 +g61301 +S'great' +p61303 +tp61304 +a(g61301 +g61303 +S'quantities' +p61305 +tp61306 +a(g61303 +g61305 +S'from' +p61307 +tp61308 +a(g61305 +g61307 +S'europe' +p61309 +tp61310 +a(g61307 +g61309 +S'and' +p61311 +tp61312 +a(g61309 +g61311 +S'england' +p61313 +tp61314 +a(g61311 +g61313 +S'until' +p61315 +tp61316 +a(g61313 +g61315 +S'the' +p61317 +tp61318 +a(g61315 +g61317 +S'revolution.' +p61319 +tp61320 +a(g61317 +g61319 +S'up' +p61321 +tp61322 +a(g61319 +g61321 +S'to' +p61323 +tp61324 +a(g61321 +g61323 +S'that' +p61325 +tp61326 +a(g61323 +g61325 +S'time,' +p61327 +tp61328 +a(g61325 +g61327 +S'the' +p61329 +tp61330 +a(g61327 +g61329 +S'only' +p61331 +tp61332 +a(g61329 +g61331 +S'clay' +p61333 +tp61334 +a(g61331 +g61333 +S'deposits' +p61335 +tp61336 +a(g61333 +g61335 +S'suitable' +p61337 +tp61338 +a(g61335 +g61337 +S'for' +p61339 +tp61340 +a(g61337 +g61339 +S'stoneware' +p61341 +tp61342 +a(g61339 +g61341 +S'were' +p61343 +tp61344 +a(g61341 +g61343 +S'located' +p61345 +tp61346 +a(g61343 +g61345 +S'in' +p61347 +tp61348 +a(g61345 +g61347 +S'the' +p61349 +tp61350 +a(g61347 +g61349 +S'new' +p61351 +tp61352 +a(g61349 +g61351 +S'york-new' +p61353 +tp61354 +a(g61351 +g61353 +S'jersey' +p61355 +tp61356 +a(g61353 +g61355 +S'coastal' +p61357 +tp61358 +a(g61355 +g61357 +S'areas,' +p61359 +tp61360 +a(g61357 +g61359 +S'and' +p61361 +tp61362 +a(g61359 +g61361 +S'colonists' +p61363 +tp61364 +a(g61361 +g61363 +S'found' +p61365 +tp61366 +a(g61363 +g61365 +S'it' +p61367 +tp61368 +a(g61365 +g61367 +S'less' +p61369 +tp61370 +a(g61367 +g61369 +S'expensive' +p61371 +tp61372 +a(g61369 +g61371 +S'to' +p61373 +tp61374 +a(g61371 +g61373 +S'import' +p61375 +tp61376 +a(g61373 +g61375 +S'stoneware' +p61377 +tp61378 +a(g61375 +g61377 +S'than' +p61379 +tp61380 +a(g61377 +g61379 +S'to' +p61381 +tp61382 +a(g61379 +g61381 +S'ship' +p61383 +tp61384 +a(g61381 +g61383 +S'the' +p61385 +tp61386 +a(g61383 +g61385 +S'clay' +p61387 +tp61388 +a(g61385 +g61387 +S'to' +p61389 +tp61390 +a(g61387 +g61389 +S'potteries' +p61391 +tp61392 +a(g61389 +g61391 +S'in' +p61393 +tp61394 +a(g61391 +g61393 +S'other' +p61395 +tp61396 +a(g61393 +g61395 +S'areas,' +p61397 +tp61398 +a(g61395 +g61397 +S'since' +p61399 +tp61400 +a(g61397 +g61399 +S'transportation' +p61401 +tp61402 +a(g61399 +g61401 +S'among' +p61403 +tp61404 +a(g61401 +g61403 +S'the' +p61405 +tp61406 +a(g61403 +g61405 +S'colonies' +p61407 +tp61408 +a(g61405 +g61407 +S'was' +p61409 +tp61410 +a(g61407 +g61409 +S'poor' +p61411 +tp61412 +a(g61409 +g61411 +S'and' +p61413 +tp61414 +a(g61411 +g61413 +S'domestic' +p61415 +tp61416 +a(g61413 +g61415 +S'shipping' +p61417 +tp61418 +a(g61415 +g61417 +S'costly.' +p61419 +tp61420 +a(g61417 +g61419 +S'american' +p61421 +tp61422 +a(g61419 +g61421 +S'stoneware' +p61423 +tp61424 +a(g61421 +g61423 +S'production' +p61425 +tp61426 +a(g61423 +g61425 +S'developed' +p61427 +tp61428 +a(g61425 +g61427 +S'initially' +p61429 +tp61430 +a(g61427 +g61429 +S'because' +p61431 +tp61432 +a(g61429 +g61431 +S'most' +p61433 +tp61434 +a(g61431 +g61433 +S'foreign' +p61435 +tp61436 +a(g61433 +g61435 +S'supplies' +p61437 +tp61438 +a(g61435 +g61437 +S'were' +p61439 +tp61440 +a(g61437 +g61439 +S'cut' +p61441 +tp61442 +a(g61439 +g61441 +S'off' +p61443 +tp61444 +a(g61441 +g61443 +S'during' +p61445 +tp61446 +a(g61443 +g61445 +S'the' +p61447 +tp61448 +a(g61445 +g61447 +S'revolution' +p61449 +tp61450 +a(g61447 +g61449 +S'and,' +p61451 +tp61452 +a(g61449 +g61451 +S'later,' +p61453 +tp61454 +a(g61451 +g61453 +S'because' +p61455 +tp61456 +a(g61453 +g61455 +S'of' +p61457 +tp61458 +a(g61455 +g61457 +S'high' +p61459 +tp61460 +a(g61457 +g61459 +S'tariffs' +p61461 +tp61462 +a(g61459 +g61461 +S'on' +p61463 +tp61464 +a(g61461 +g61463 +S'foreign' +p61465 +tp61466 +a(g61463 +g61465 +S'imports.' +p61467 +tp61468 +a(g61465 +g61467 +S'eventually,' +p61469 +tp61470 +a(g61467 +g61469 +S'improved' +p61471 +tp61472 +a(g61469 +g61471 +S'domestic' +p61473 +tp61474 +a(g61471 +g61473 +S'waterways' +p61475 +tp61476 +a(g61473 +g61475 +S'and' +p61477 +tp61478 +a(g61475 +g61477 +S'newly' +p61479 +tp61480 +a(g61477 +g61479 +S'found' +p61481 +tp61482 +a(g61479 +g61481 +S'deposits' +p61483 +tp61484 +a(g61481 +g61483 +S'of' +p61485 +tp61486 +a(g61483 +g61485 +S'the' +p61487 +tp61488 +a(g61485 +g61487 +S'high-firing' +p61489 +tp61490 +a(g61487 +g61489 +S'clay' +p61491 +tp61492 +a(g61489 +g61491 +S'made' +p61493 +tp61494 +a(g61491 +g61493 +S'it' +p61495 +tp61496 +a(g61493 +g61495 +S'possible' +p61497 +tp61498 +a(g61495 +g61497 +S'for' +p61499 +tp61500 +a(g61497 +g61499 +S'american' +p61501 +tp61502 +a(g61499 +g61501 +S'potters' +p61503 +tp61504 +a(g61501 +g61503 +S'to' +p61505 +tp61506 +a(g61503 +g61505 +S'produce' +p61507 +tp61508 +a(g61505 +g61507 +S'stoneware' +p61509 +tp61510 +a(g61507 +g61509 +S'cheaply.' +p61511 +tp61512 +a(g61509 +g61511 +S'although' +p61513 +tp61514 +a(g61511 +g61513 +S'stoneware' +p61515 +tp61516 +a(g61513 +g61515 +S'will' +p61517 +tp61518 +a(g61515 +g61517 +S'hold' +p61519 +tp61520 +a(g61517 +g61519 +S'liquid' +p61521 +tp61522 +a(g61519 +g61521 +S'without' +p61523 +tp61524 +a(g61521 +g61523 +S'being' +p61525 +tp61526 +a(g61523 +g61525 +S'glazed,' +p61527 +tp61528 +a(g61525 +g61527 +S'in' +p61529 +tp61530 +a(g61527 +g61529 +S'most' +p61531 +tp61532 +a(g61529 +g61531 +S'cases' +p61533 +tp61534 +a(g61531 +g61533 +S'it' +p61535 +tp61536 +a(g61533 +g61535 +S'was' +p61537 +tp61538 +a(g61535 +g61537 +S'finished' +p61539 +tp61540 +a(g61537 +g61539 +S'by' +p61541 +tp61542 +a(g61539 +g61541 +S'a' +p61543 +tp61544 +a(g61541 +g61543 +S'simple' +p61545 +tp61546 +a(g61543 +g61545 +S'process' +p61547 +tp61548 +a(g61545 +g61547 +S'known' +p61549 +tp61550 +a(g61547 +g61549 +S'as' +p61551 +tp61552 +a(g61549 +g61551 +S'salt' +p61553 +tp61554 +a(g61551 +g61553 +S'glazing.' +p61555 +tp61556 +a(g61553 +g61555 +S'common' +p61557 +tp61558 +a(g61555 +g61557 +S'salt' +p61559 +tp61560 +a(g61557 +g61559 +S'was' +p61561 +tp61562 +a(g61559 +g61561 +S'shoveled' +p61563 +tp61564 +a(g61561 +g61563 +S'into' +p61565 +tp61566 +a(g61563 +g61565 +S'the' +p61567 +tp61568 +a(g61565 +g61567 +S'fire' +p61569 +tp61570 +a(g61567 +g61569 +S'of' +p61571 +tp61572 +a(g61569 +g61571 +S'the' +p61573 +tp61574 +a(g61571 +g61573 +S'kiln' +p61575 +tp61576 +a(g61573 +g61575 +S'when' +p61577 +tp61578 +a(g61575 +g61577 +S'it' +p61579 +tp61580 +a(g61577 +g61579 +S'was' +p61581 +tp61582 +a(g61579 +g61581 +S'at' +p61583 +tp61584 +a(g61581 +g61583 +S'its' +p61585 +tp61586 +a(g61583 +g61585 +S'highest' +p61587 +tp61588 +a(g61585 +g61587 +S'temperature.' +p61589 +tp61590 +a(g61587 +g61589 +S'salt' +p61591 +tp61592 +a(g61589 +g61591 +S'vapors' +p61593 +tp61594 +a(g61591 +g61593 +S'condensed' +p61595 +tp61596 +a(g61593 +g61595 +S'on' +p61597 +tp61598 +a(g61595 +g61597 +S'the' +p61599 +tp61600 +a(g61597 +g61599 +S'pottery,' +p61601 +tp61602 +a(g61599 +g61601 +S'mixing' +p61603 +tp61604 +a(g61601 +g61603 +S'with' +p61605 +tp61606 +a(g61603 +g61605 +S'the' +p61607 +tp61608 +a(g61605 +g61607 +S'silica' +p61609 +tp61610 +a(g61607 +g61609 +S'in' +p61611 +tp61612 +a(g61609 +g61611 +S'the' +p61613 +tp61614 +a(g61611 +g61613 +S'clay' +p61615 +tp61616 +a(g61613 +g61615 +S'to' +p61617 +tp61618 +a(g61615 +g61617 +S'form' +p61619 +tp61620 +a(g61617 +g61619 +S'a' +p61621 +tp61622 +a(g61619 +g61621 +S'thin,' +p61623 +tp61624 +a(g61621 +g61623 +S'hard,' +p61625 +tp61626 +a(g61623 +g61625 +S'glossy,' +p61627 +tp61628 +a(g61625 +g61627 +S'finish.' +p61629 +tp61630 +a(g61627 +g61629 +S'the' +p61631 +tp61632 +a(g61629 +g61631 +S'luster' +p61633 +tp61634 +a(g61631 +g61633 +S'of' +p61635 +tp61636 +a(g61633 +g61635 +S'this' +p61637 +tp61638 +a(g61635 +g61637 +S'new' +p61639 +tp61640 +a(g61637 +g61639 +S'york-made' +p61641 +tp61642 +a(g61639 +g61641 +S'stoneware' +p61643 +tp61644 +a(g61641 +g61643 +S'jug' +p61645 +tp61646 +a(g61643 +g61645 +S'is' +p61647 +tp61648 +a(g61645 +g61647 +S'characteristic' +p61649 +tp61650 +a(g61647 +g61649 +S'of' +p61651 +tp61652 +a(g61649 +g61651 +S'a' +p61653 +tp61654 +a(g61651 +g61653 +S'salt-glazed' +p61655 +tp61656 +a(g61653 +g61655 +S'surface.' +p61657 +tp61658 +a(g61655 +g61657 +S'late' +p61659 +tp61660 +a(g61657 +g61659 +S'eighteenth-century' +p61661 +tp61662 +a(g61659 +g61661 +S'and' +p61663 +tp61664 +a(g61661 +g61663 +S'early' +p61665 +tp61666 +a(g61663 +g61665 +S'nineteenth-century' +p61667 +tp61668 +a(g61665 +g61667 +S'stoneware' +p61669 +tp61670 +a(g61667 +g61669 +S'was' +p61671 +tp61672 +a(g61669 +g61671 +S'generally' +p61673 +tp61674 +a(g61671 +g61673 +S'bulbous' +p61675 +tp61676 +a(g61673 +g61675 +S'in' +p61677 +tp61678 +a(g61675 +g61677 +S'profile.' +p61679 +tp61680 +a(g61677 +g61679 +S'the' +p61681 +tp61682 +a(g61679 +g61681 +S'bulging' +p61683 +tp61684 +a(g61681 +g61683 +S'egg' +p61685 +tp61686 +a(g61683 +g61685 +S'shape' +p61687 +tp61688 +a(g61685 +g61687 +S'of' +p61689 +tp61690 +a(g61687 +g61689 +S'this' +p61691 +tp61692 +a(g61689 +g61691 +S'jug' +p61693 +tp61694 +a(g61691 +g61693 +S'was' +p61695 +tp61696 +a(g61693 +g61695 +S'a' +p61697 +tp61698 +a(g61695 +g61697 +S'common' +p61699 +tp61700 +a(g61697 +g61699 +S'form' +p61701 +tp61702 +a(g61699 +g61701 +S'before' +p61703 +tp61704 +a(g61701 +g61703 +S'1840.' +p61705 +tp61706 +a(g61703 +g61705 +S'early' +p61707 +tp61708 +a(g61705 +g61707 +S'stoneware' +p61709 +tp61710 +a(g61707 +g61709 +S'was' +p61711 +tp61712 +a(g61709 +g61711 +S'decorated' +p61713 +tp61714 +a(g61711 +g61713 +S'simply,' +p61715 +tp61716 +a(g61713 +g61715 +S'usually' +p61717 +tp61718 +a(g61715 +g61717 +S'with' +p61719 +tp61720 +a(g61717 +g61719 +S'an' +p61721 +tp61722 +a(g61719 +g61721 +S'incised' +p61723 +tp61724 +a(g61721 +g61723 +S'design.' +p61725 +tp61726 +a(g61723 +g61725 +S'it' +p61727 +tp61728 +a(g61725 +g61727 +S'became' +p61729 +tp61730 +a(g61727 +g61729 +S'increasingly' +p61731 +tp61732 +a(g61729 +g61731 +S'common' +p61733 +tp61734 +a(g61731 +g61733 +S'to' +p61735 +tp61736 +a(g61733 +g61735 +S'enhance' +p61737 +tp61738 +a(g61735 +g61737 +S'the' +p61739 +tp61740 +a(g61737 +g61739 +S'incised' +p61741 +tp61742 +a(g61739 +g61741 +S'decoration' +p61743 +tp61744 +a(g61741 +g61743 +S'with' +p61745 +tp61746 +a(g61743 +g61745 +S'blue' +p61747 +tp61748 +a(g61745 +g61747 +S'slip,' +p61749 +tp61750 +a(g61747 +g61749 +S'painted' +p61751 +tp61752 +a(g61749 +g61751 +S'on' +p61753 +tp61754 +a(g61751 +g61753 +S'before' +p61755 +tp61756 +a(g61753 +g61755 +S'firing' +p61757 +tp61758 +a(g61755 +g61757 +S'and' +p61759 +tp61760 +a(g61757 +g61759 +S'glazing.' +p61761 +tp61762 +a(g61759 +g61761 +S'cobalt' +p61763 +tp61764 +a(g61761 +g61763 +S'blue' +p61765 +tp61766 +a(g61763 +g61765 +S'is' +p61767 +tp61768 +a(g61765 +g61767 +S'the' +p61769 +tp61770 +a(g61767 +g61769 +S'characteristic' +p61771 +tp61772 +a(g61769 +g61771 +S'color' +p61773 +tp61774 +a(g61771 +g61773 +S'of' +p61775 +tp61776 +a(g61773 +g61775 +S'stoneware' +p61777 +tp61778 +a(g61775 +g61777 +S'decoration.' +p61779 +tp61780 +a(g61777 +g61779 +S'the' +p61781 +tp61782 +a(g61779 +g61781 +S'bow' +p61783 +tp61784 +a(g61781 +g61783 +S'knot' +p61785 +tp61786 +a(g61783 +g61785 +S'design' +p61787 +tp61788 +a(g61785 +g61787 +S'that' +p61789 +tp61790 +a(g61787 +g61789 +S'appears' +p61791 +tp61792 +a(g61789 +g61791 +S'on' +p61793 +tp61794 +a(g61791 +g61793 +S'this' +p61795 +tp61796 +a(g61793 +g61795 +S'piece' +p61797 +tp61798 +a(g61795 +g61797 +S'was' +p61799 +tp61800 +a(g61797 +g61799 +S'a' +p61801 +tp61802 +a(g61799 +g61801 +S'favored' +p61803 +tp61804 +a(g61801 +g61803 +S'motif' +p61805 +tp61806 +a(g61803 +g61805 +S'of' +p61807 +tp61808 +a(g61805 +g61807 +S'thomas' +p61809 +tp61810 +a(g61807 +g61809 +S'commeraw,' +p61811 +tp61812 +a(g61809 +g61811 +S'a' +p61813 +tp61814 +a(g61811 +g61813 +S'potter' +p61815 +tp61816 +a(g61813 +g61815 +S'who' +p61817 +tp61818 +a(g61815 +g61817 +S'made' +p61819 +tp61820 +a(g61817 +g61819 +S'stoneware' +p61821 +tp61822 +a(g61819 +g61821 +S'between' +p61823 +tp61824 +a(g61821 +g61823 +S'1802' +p61825 +tp61826 +a(g61823 +g61825 +S'and' +p61827 +tp61828 +a(g61825 +g61827 +S'1820' +p61829 +tp61830 +a(g61827 +g61829 +S'at' +p61831 +tp61832 +a(g61829 +g61831 +S"corlear's" +p61833 +tp61834 +a(g61831 +g61833 +S'hook,' +p61835 +tp61836 +a(g61833 +g61835 +S'near' +p61837 +tp61838 +a(g61835 +g61837 +S'new' +p61839 +tp61840 +a(g61837 +g61839 +S'york.' +p61841 +tp61842 +a(g61839 +g61841 +S'notice' +p61843 +tp61844 +a(g61841 +g61843 +S'that' +p61845 +tp61846 +a(g61843 +g61845 +S'the' +p61847 +tp61848 +a(g61845 +g61847 +S'jug' +p61849 +tp61850 +a(g61847 +g61849 +S'is' +p61851 +tp61852 +a(g61849 +g61851 +S'marked' +p61853 +tp61854 +a(g61851 +g61853 +S'with' +p61855 +tp61856 +a(g61853 +g61855 +S'his' +p61857 +tp61858 +a(g61855 +g61857 +S'name' +p61859 +tp61860 +a(g61857 +g61859 +S'and' +p61861 +tp61862 +a(g61859 +g61861 +S'the' +p61863 +tp61864 +a(g61861 +g61863 +S'location' +p61865 +tp61866 +a(g61863 +g61865 +S'of' +p61867 +tp61868 +a(g61865 +g61867 +S'his' +p61869 +tp61870 +a(g61867 +g61869 +S'pottery,' +p61871 +tp61872 +a(g61869 +g61871 +S'a' +p61873 +tp61874 +a(g61871 +g61873 +S'frequent' +p61875 +tp61876 +a(g61873 +g61875 +S'practice' +p61877 +tp61878 +a(g61875 +g61877 +S'in' +p61879 +tp61880 +a(g61877 +g61879 +S'the' +p61881 +tp61882 +a(g61879 +g61881 +S'nineteenth' +p61883 +tp61884 +a(g61881 +g61883 +S'century.' +p61885 +tp61886 +a(g61883 +g61885 +S'the' +p61887 +tp61888 +a(g61885 +g61887 +S'earliest' +p61889 +tp61890 +a(g61887 +g61889 +S'stoneware' +p61891 +tp61892 +a(g61889 +g61891 +S'was' +p61893 +tp61894 +a(g61891 +g61893 +S'unglazed' +p61895 +tp61896 +a(g61893 +g61895 +S'on' +p61897 +tp61898 +a(g61895 +g61897 +S'the' +p61899 +tp61900 +a(g61897 +g61899 +S'inside,' +p61901 +tp61902 +a(g61899 +g61901 +S'because' +p61903 +tp61904 +a(g61901 +g61903 +S'pieces' +p61905 +tp61906 +a(g61903 +g61905 +S'were' +p61907 +tp61908 +a(g61905 +g61907 +S'stacked' +p61909 +tp61910 +a(g61907 +g61909 +S'mouth-to-mouth' +p61911 +tp61912 +a(g61909 +g61911 +S'in' +p61913 +tp61914 +a(g61911 +g61913 +S'the' +p61915 +tp61916 +a(g61913 +g61915 +S'kiln' +p61917 +tp61918 +a(g61915 +g61917 +S'to' +p61919 +tp61920 +a(g61917 +g61919 +S'conserve' +p61921 +tp61922 +a(g61919 +g61921 +S'space.' +p61923 +tp61924 +a(g61921 +g61923 +S'the' +p61925 +tp61926 +a(g61923 +g61925 +S'inside' +p61927 +tp61928 +a(g61925 +g61927 +S'surfaces,' +p61929 +tp61930 +a(g61927 +g61929 +S'therefore,' +p61931 +tp61932 +a(g61929 +g61931 +S'could' +p61933 +tp61934 +a(g61931 +g61933 +S'not' +p61935 +tp61936 +a(g61933 +g61935 +S'be' +p61937 +tp61938 +a(g61935 +g61937 +S'reached' +p61939 +tp61940 +a(g61937 +g61939 +S'by' +p61941 +tp61942 +a(g61939 +g61941 +S'the' +p61943 +tp61944 +a(g61941 +g61943 +S'salt' +p61945 +tp61946 +a(g61943 +g61945 +S'vapor.' +p61947 +tp61948 +a(g61945 +g61947 +S'after' +p61949 +tp61950 +a(g61947 +g61949 +S'1800,' +p61951 +tp61952 +a(g61949 +g61951 +S'the' +p61953 +tp61954 +a(g61951 +g61953 +S'interiors' +p61955 +tp61956 +a(g61953 +g61955 +S'were' +p61957 +tp61958 +a(g61955 +g61957 +S'usually' +p61959 +tp61960 +a(g61957 +g61959 +S'coated' +p61961 +tp61962 +a(g61959 +g61961 +S'before' +p61963 +tp61964 +a(g61961 +g61963 +S'firing' +p61965 +tp61966 +a(g61963 +g61965 +S'with' +p61967 +tp61968 +a(g61965 +g61967 +S'dark' +p61969 +tp61970 +a(g61967 +g61969 +S'brown' +p61971 +tp61972 +a(g61969 +g61971 +S'or' +p61973 +tp61974 +a(g61971 +g61973 +S'"albany' +p61975 +tp61976 +a(g61973 +g61975 +S'mud,"' +p61977 +tp61978 +a(g61975 +g61977 +S'named' +p61979 +tp61980 +a(g61977 +g61979 +S'after' +p61981 +tp61982 +a(g61979 +g61981 +S'the' +p61983 +tp61984 +a(g61981 +g61983 +S'color' +p61985 +tp61986 +a(g61983 +g61985 +S'of' +p61987 +tp61988 +a(g61985 +g61987 +S'the' +p61989 +tp61990 +a(g61987 +g61989 +S'clay' +p61991 +tp61992 +a(g61989 +g61991 +S'and' +p61993 +tp61994 +a(g61991 +g61993 +S'the' +p61995 +tp61996 +a(g61993 +g61995 +S'location' +p61997 +tp61998 +a(g61995 +g61997 +S'of' +p61999 +tp62000 +a(g61997 +g61999 +S'its' +p62001 +tp62002 +a(g61999 +g62001 +S'source.' +p62003 +tp62004 +a(g62001 +g62003 +S'the' +p62005 +tp62006 +a(g62003 +g62005 +S'brown' +p62007 +tp62008 +a(g62005 +g62007 +S'lining' +p62009 +tp62010 +a(g62007 +g62009 +S'of' +p62011 +tp62012 +a(g62009 +g62011 +S'this' +p62013 +tp62014 +a(g62011 +g62013 +S'jar' +p62015 +tp62016 +a(g62013 +g62015 +S'is' +p62017 +tp62018 +a(g62015 +g62017 +S'of' +p62019 +tp62020 +a(g62017 +g62019 +S'albany' +p62021 +tp62022 +a(g62019 +g62021 +S'slip.' +p62023 +tp62024 +a(g62021 +g62023 +S'the' +p62025 +tp62026 +a(g62023 +g62025 +S'presence' +p62027 +tp62028 +a(g62025 +g62027 +S'of' +p62029 +tp62030 +a(g62027 +g62029 +S'an' +p62031 +tp62032 +a(g62029 +g62031 +S'albany' +p62033 +tp62034 +a(g62031 +g62033 +S'slip' +p62035 +tp62036 +a(g62033 +g62035 +S'coating' +p62037 +tp62038 +a(g62035 +g62037 +S'does' +p62039 +tp62040 +a(g62037 +g62039 +S'not' +p62041 +tp62042 +a(g62039 +g62041 +S'indicate,' +p62043 +tp62044 +a(g62041 +g62043 +S'however,' +p62045 +tp62046 +a(g62043 +g62045 +S'that' +p62047 +tp62048 +a(g62045 +g62047 +S'a' +p62049 +tp62050 +a(g62047 +g62049 +S'pot' +p62051 +tp62052 +a(g62049 +g62051 +S'was' +p62053 +tp62054 +a(g62051 +g62053 +S'made' +p62055 +tp62056 +a(g62053 +g62055 +S'only' +p62057 +tp62058 +a(g62055 +g62057 +S'in' +p62059 +tp62060 +a(g62057 +g62059 +S'that' +p62061 +tp62062 +a(g62059 +g62061 +S'area,' +p62063 +tp62064 +a(g62061 +g62063 +S'for' +p62065 +tp62066 +a(g62063 +g62065 +S'during' +p62067 +tp62068 +a(g62065 +g62067 +S'the' +p62069 +tp62070 +a(g62067 +g62069 +S'nineteenth' +p62071 +tp62072 +a(g62069 +g62071 +S'century,' +p62073 +tp62074 +a(g62071 +g62073 +S'the' +p62075 +tp62076 +a(g62073 +g62075 +S'clay' +p62077 +tp62078 +a(g62075 +g62077 +S'was' +p62079 +tp62080 +a(g62077 +g62079 +S'shipped' +p62081 +tp62082 +a(g62079 +g62081 +S'from' +p62083 +tp62084 +a(g62081 +g62083 +S'albany,' +p62085 +tp62086 +a(g62083 +g62085 +S'new' +p62087 +tp62088 +a(g62085 +g62087 +S'york,' +p62089 +tp62090 +a(g62087 +g62089 +S'to' +p62091 +tp62092 +a(g62089 +g62091 +S'potteries' +p62093 +tp62094 +a(g62091 +g62093 +S'throughout' +p62095 +tp62096 +a(g62093 +g62095 +S'the' +p62097 +tp62098 +a(g62095 +g62097 +S'country.' +p62099 +tp62100 +a(g62097 +g62099 +S'by' +p62101 +tp62102 +a(g62099 +g62101 +S'the' +p62103 +tp62104 +a(g62101 +g62103 +S'middle' +p62105 +tp62106 +a(g62103 +g62105 +S'of' +p62107 +tp62108 +a(g62105 +g62107 +S'the' +p62109 +tp62110 +a(g62107 +g62109 +S'nineteenth' +p62111 +tp62112 +a(g62109 +g62111 +S'century,' +p62113 +tp62114 +a(g62111 +g62113 +S'most' +p62115 +tp62116 +a(g62113 +g62115 +S'of' +p62117 +tp62118 +a(g62115 +g62117 +S'the' +p62119 +tp62120 +a(g62117 +g62119 +S'active' +p62121 +tp62122 +a(g62119 +g62121 +S'pottery' +p62123 +tp62124 +a(g62121 +g62123 +S'shops' +p62125 +tp62126 +a(g62123 +g62125 +S'had' +p62127 +tp62128 +a(g62125 +g62127 +S'become' +p62129 +tp62130 +a(g62127 +g62129 +S'full-scale' +p62131 +tp62132 +a(g62129 +g62131 +S'factories.' +p62133 +tp62134 +a(g62131 +g62133 +S'expansion' +p62135 +tp62136 +a(g62133 +g62135 +S'and' +p62137 +tp62138 +a(g62135 +g62137 +S'mechanization' +p62139 +tp62140 +a(g62137 +g62139 +S'led' +p62141 +tp62142 +a(g62139 +g62141 +S'to' +p62143 +tp62144 +a(g62141 +g62143 +S'changes' +p62145 +tp62146 +a(g62143 +g62145 +S'in' +p62147 +tp62148 +a(g62145 +g62147 +S'the' +p62149 +tp62150 +a(g62147 +g62149 +S'appearance' +p62151 +tp62152 +a(g62149 +g62151 +S'of' +p62153 +tp62154 +a(g62151 +g62153 +S'stoneware' +p62155 +tp62156 +a(g62153 +g62155 +S'products.' +p62157 +tp62158 +a(g62155 +g62157 +S'jars' +p62159 +tp62160 +a(g62157 +g62159 +S'and' +p62161 +tp62162 +a(g62159 +g62161 +S'crocks' +p62163 +tp62164 +a(g62161 +g62163 +S'became' +p62165 +tp62166 +a(g62163 +g62165 +S'flat-based' +p62167 +tp62168 +a(g62165 +g62167 +S'and' +p62169 +tp62170 +a(g62167 +g62169 +S'straight-sided,' +p62171 +tp62172 +a(g62169 +g62171 +S'a' +p62173 +tp62174 +a(g62171 +g62173 +S'form' +p62175 +tp62176 +a(g62173 +g62175 +S'more' +p62177 +tp62178 +a(g62175 +g62177 +S'quickly' +p62179 +tp62180 +a(g62177 +g62179 +S'and' +p62181 +tp62182 +a(g62179 +g62181 +S'easily' +p62183 +tp62184 +a(g62181 +g62183 +S'made.' +p62185 +tp62186 +a(g62183 +g62185 +S'this' +p62187 +tp62188 +a(g62185 +g62187 +S'stoneware' +p62189 +tp62190 +a(g62187 +g62189 +S'jar' +p62191 +tp62192 +a(g62189 +g62191 +S'exemplifies' +p62193 +tp62194 +a(g62191 +g62193 +S'factory' +p62195 +tp62196 +a(g62193 +g62195 +S'techniques.' +p62197 +tp62198 +a(g62195 +g62197 +S'notice' +p62199 +tp62200 +a(g62197 +g62199 +S'the' +p62201 +tp62202 +a(g62199 +g62201 +S'"ear"' +p62203 +tp62204 +a(g62201 +g62203 +S'handles,' +p62205 +tp62206 +a(g62203 +g62205 +S'which' +p62207 +tp62208 +a(g62205 +g62207 +S'are' +p62209 +tp62210 +a(g62207 +g62209 +S'both' +p62211 +tp62212 +a(g62209 +g62211 +S'easier' +p62213 +tp62214 +a(g62211 +g62213 +S'to' +p62215 +tp62216 +a(g62213 +g62215 +S'shape' +p62217 +tp62218 +a(g62215 +g62217 +S'and' +p62219 +tp62220 +a(g62217 +g62219 +S'less' +p62221 +tp62222 +a(g62219 +g62221 +S'likely' +p62223 +tp62224 +a(g62221 +g62223 +S'to' +p62225 +tp62226 +a(g62223 +g62225 +S'break' +p62227 +tp62228 +a(g62225 +g62227 +S'than' +p62229 +tp62230 +a(g62227 +g62229 +S'the' +p62231 +tp62232 +a(g62229 +g62231 +S'open' +p62233 +tp62234 +a(g62231 +g62233 +S'loop' +p62235 +tp62236 +a(g62233 +g62235 +S'handles' +p62237 +tp62238 +a(g62235 +g62237 +S'of' +p62239 +tp62240 +a(g62237 +g62239 +S'earlier' +p62241 +tp62242 +a(g62239 +g62241 +S'wares.' +p62243 +tp62244 +a(g62241 +g62243 +S'late' +p62245 +tp62246 +a(g62243 +g62245 +S'nineteenth-century' +p62247 +tp62248 +a(g62245 +g62247 +S'stoneware' +p62249 +tp62250 +a(g62247 +g62249 +S'also' +p62251 +tp62252 +a(g62249 +g62251 +S'differs' +p62253 +tp62254 +a(g62251 +g62253 +S'from' +p62255 +tp62256 +a(g62253 +g62255 +S'earlier' +p62257 +tp62258 +a(g62255 +g62257 +S'products' +p62259 +tp62260 +a(g62257 +g62259 +S'in' +p62261 +tp62262 +a(g62259 +g62261 +S'that' +p62263 +tp62264 +a(g62261 +g62263 +S'time-consuming' +p62265 +tp62266 +a(g62263 +g62265 +S'freehand' +p62267 +tp62268 +a(g62265 +g62267 +S'painting' +p62269 +tp62270 +a(g62267 +g62269 +S'gave' +p62271 +tp62272 +a(g62269 +g62271 +S'way' +p62273 +tp62274 +a(g62271 +g62273 +S'to' +p62275 +tp62276 +a(g62273 +g62275 +S'faster' +p62277 +tp62278 +a(g62275 +g62277 +S'decorative' +p62279 +tp62280 +a(g62277 +g62279 +S'techniques.' +p62281 +tp62282 +a(g62279 +g62281 +S'simple' +p62283 +tp62284 +a(g62281 +g62283 +S'slip-trailed' +p62285 +tp62286 +a(g62283 +g62285 +S'designs' +p62287 +tp62288 +a(g62285 +g62287 +S'as' +p62289 +tp62290 +a(g62287 +g62289 +S'well' +p62291 +tp62292 +a(g62289 +g62291 +S'as' +p62293 +tp62294 +a(g62291 +g62293 +S'stenciled' +p62295 +tp62296 +a(g62293 +g62295 +S'decoration' +p62297 +tp62298 +a(g62295 +g62297 +S'came' +p62299 +tp62300 +a(g62297 +g62299 +S'into' +p62301 +tp62302 +a(g62299 +g62301 +S'general' +p62303 +tp62304 +a(g62301 +g62303 +S'use.' +p62305 +tp62306 +a(g62303 +g62305 +S'although' +p62307 +tp62308 +a(g62305 +g62307 +S'this' +p62309 +tp62310 +a(g62307 +g62309 +S'jar' +p62311 +tp62312 +a(g62309 +g62311 +S'retains' +p62313 +tp62314 +a(g62311 +g62313 +S'a' +p62315 +tp62316 +a(g62313 +g62315 +S'few' +p62317 +tp62318 +a(g62315 +g62317 +S'summarily' +p62319 +tp62320 +a(g62317 +g62319 +S'painted' +p62321 +tp62322 +a(g62319 +g62321 +S'lines,' +p62323 +tp62324 +a(g62321 +g62323 +S'the' +p62325 +tp62326 +a(g62323 +g62325 +S'stenciled' +p62327 +tp62328 +a(g62325 +g62327 +S'decoration' +p62329 +tp62330 +a(g62327 +g62329 +S'is' +p62331 +tp62332 +a(g62329 +g62331 +S'dominant.' +p62333 +tp62334 +a(g62331 +g62333 +S'earthenware' +p62335 +tp62336 +a(g62333 +g62335 +S'pottery' +p62337 +tp62338 +a(g62335 +g62337 +S'is' +p62339 +tp62340 +a(g62337 +g62339 +S'distinct' +p62341 +tp62342 +a(g62339 +g62341 +S'from' +p62343 +tp62344 +a(g62341 +g62343 +S'porcelain' +p62345 +tp62346 +a(g62343 +g62345 +S'in' +p62347 +tp62348 +a(g62345 +g62347 +S'that' +p62349 +tp62350 +a(g62347 +g62349 +S'it' +p62351 +tp62352 +a(g62349 +g62351 +S'is' +p62353 +tp62354 +a(g62351 +g62353 +S'made' +p62355 +tp62356 +a(g62353 +g62355 +S'from' +p62357 +tp62358 +a(g62355 +g62357 +S'a' +p62359 +tp62360 +a(g62357 +g62359 +S'coarse,' +p62361 +tp62362 +a(g62359 +g62361 +S'iron-bearing' +p62363 +tp62364 +a(g62361 +g62363 +S'clay.' +p62365 +tp62366 +a(g62363 +g62365 +S'american' +p62367 +tp62368 +a(g62365 +g62367 +S'potters' +p62369 +tp62370 +a(g62367 +g62369 +S'produced' +p62371 +tp62372 +a(g62369 +g62371 +S'a' +p62373 +tp62374 +a(g62371 +g62373 +S'variety' +p62375 +tp62376 +a(g62373 +g62375 +S'of' +p62377 +tp62378 +a(g62375 +g62377 +S'wares' +p62379 +tp62380 +a(g62377 +g62379 +S'named' +p62381 +tp62382 +a(g62379 +g62381 +S'after' +p62383 +tp62384 +a(g62381 +g62383 +S'the' +p62385 +tp62386 +a(g62383 +g62385 +S'color' +p62387 +tp62388 +a(g62385 +g62387 +S'of' +p62389 +tp62390 +a(g62387 +g62389 +S'the' +p62391 +tp62392 +a(g62389 +g62391 +S'clay' +p62393 +tp62394 +a(g62391 +g62393 +S'used,' +p62395 +tp62396 +a(g62393 +g62395 +S'but' +p62397 +tp62398 +a(g62395 +g62397 +S'by' +p62399 +tp62400 +a(g62397 +g62399 +S'far' +p62401 +tp62402 +a(g62399 +g62401 +S'the' +p62403 +tp62404 +a(g62401 +g62403 +S'most' +p62405 +tp62406 +a(g62403 +g62405 +S'common' +p62407 +tp62408 +a(g62405 +g62407 +S'american' +p62409 +tp62410 +a(g62407 +g62409 +S'pottery' +p62411 +tp62412 +a(g62409 +g62411 +S'made' +p62413 +tp62414 +a(g62411 +g62413 +S'in' +p62415 +tp62416 +a(g62413 +g62415 +S'the' +p62417 +tp62418 +a(g62415 +g62417 +S'eighteenth' +p62419 +tp62420 +a(g62417 +g62419 +S'and' +p62421 +tp62422 +a(g62419 +g62421 +S'nineteenth' +p62423 +tp62424 +a(g62421 +g62423 +S'centuries' +p62425 +tp62426 +a(g62423 +g62425 +S'was' +p62427 +tp62428 +a(g62425 +g62427 +S'"redware,"' +p62429 +tp62430 +a(g62427 +g62429 +S'earthenware' +p62431 +tp62432 +a(g62429 +g62431 +S'made' +p62433 +tp62434 +a(g62431 +g62433 +S'from' +p62435 +tp62436 +a(g62433 +g62435 +S'the' +p62437 +tp62438 +a(g62435 +g62437 +S'red' +p62439 +tp62440 +a(g62437 +g62439 +S'clay' +p62441 +tp62442 +a(g62439 +g62441 +S'readily' +p62443 +tp62444 +a(g62441 +g62443 +S'available' +p62445 +tp62446 +a(g62443 +g62445 +S'along' +p62447 +tp62448 +a(g62445 +g62447 +S'most' +p62449 +tp62450 +a(g62447 +g62449 +S'of' +p62451 +tp62452 +a(g62449 +g62451 +S'the' +p62453 +tp62454 +a(g62451 +g62453 +S'eastern' +p62455 +tp62456 +a(g62453 +g62455 +S'seaboard.' +p62457 +tp62458 +a(g62455 +g62457 +S'red' +p62459 +tp62460 +a(g62457 +g62459 +S'clay' +p62461 +tp62462 +a(g62459 +g62461 +S'lay' +p62463 +tp62464 +a(g62461 +g62463 +S'close' +p62465 +tp62466 +a(g62463 +g62465 +S'to' +p62467 +tp62468 +a(g62465 +g62467 +S'the' +p62469 +tp62470 +a(g62467 +g62469 +S'surface' +p62471 +tp62472 +a(g62469 +g62471 +S'and' +p62473 +tp62474 +a(g62471 +g62473 +S'was' +p62475 +tp62476 +a(g62473 +g62475 +S'easily' +p62477 +tp62478 +a(g62475 +g62477 +S'dug;' +p62479 +tp62480 +a(g62477 +g62479 +S'it' +p62481 +tp62482 +a(g62479 +g62481 +S'could' +p62483 +tp62484 +a(g62481 +g62483 +S'be' +p62485 +tp62486 +a(g62483 +g62485 +S'worked' +p62487 +tp62488 +a(g62485 +g62487 +S'with' +p62489 +tp62490 +a(g62487 +g62489 +S'little' +p62491 +tp62492 +a(g62489 +g62491 +S'difficulty' +p62493 +tp62494 +a(g62491 +g62493 +S'and' +p62495 +tp62496 +a(g62493 +g62495 +S'fired' +p62497 +tp62498 +a(g62495 +g62497 +S'at' +p62499 +tp62500 +a(g62497 +g62499 +S'a' +p62501 +tp62502 +a(g62499 +g62501 +S'low' +p62503 +tp62504 +a(g62501 +g62503 +S'temperature.' +p62505 +tp62506 +a(g62503 +g62505 +S'thus,' +p62507 +tp62508 +a(g62505 +g62507 +S'early' +p62509 +tp62510 +a(g62507 +g62509 +S'potters' +p62511 +tp62512 +a(g62509 +g62511 +S'needed' +p62513 +tp62514 +a(g62511 +g62513 +S'only' +p62515 +tp62516 +a(g62513 +g62515 +S'simple' +p62517 +tp62518 +a(g62515 +g62517 +S'equipment' +p62519 +tp62520 +a(g62517 +g62519 +S'to' +p62521 +tp62522 +a(g62519 +g62521 +S'make' +p62523 +tp62524 +a(g62521 +g62523 +S'redware' +p62525 +tp62526 +a(g62523 +g62525 +S'articles' +p62527 +tp62528 +a(g62525 +g62527 +S'for' +p62529 +tp62530 +a(g62527 +g62529 +S'colonial' +p62531 +tp62532 +a(g62529 +g62531 +S'kitchens.' +p62533 +tp62534 +a(g62531 +g62533 +S'redware' +p62535 +tp62536 +a(g62533 +g62535 +S'was' +p62537 +tp62538 +a(g62535 +g62537 +S'used' +p62539 +tp62540 +a(g62537 +g62539 +S'primarily' +p62541 +tp62542 +a(g62539 +g62541 +S'at' +p62543 +tp62544 +a(g62541 +g62543 +S'the' +p62545 +tp62546 +a(g62543 +g62545 +S'table,' +p62547 +tp62548 +a(g62545 +g62547 +S'for' +p62549 +tp62550 +a(g62547 +g62549 +S'its' +p62551 +tp62552 +a(g62549 +g62551 +S'porosity' +p62553 +tp62554 +a(g62551 +g62553 +S'rendered' +p62555 +tp62556 +a(g62553 +g62555 +S'it' +p62557 +tp62558 +a(g62555 +g62557 +S'less' +p62559 +tp62560 +a(g62557 +g62559 +S'desirable' +p62561 +tp62562 +a(g62559 +g62561 +S'for' +p62563 +tp62564 +a(g62561 +g62563 +S'prolonged' +p62565 +tp62566 +a(g62563 +g62565 +S'food' +p62567 +tp62568 +a(g62565 +g62567 +S'storage.' +p62569 +tp62570 +a(g62567 +g62569 +S'although' +p62571 +tp62572 +a(g62569 +g62571 +S'most' +p62573 +tp62574 +a(g62571 +g62573 +S'redware' +p62575 +tp62576 +a(g62573 +g62575 +S'was' +p62577 +tp62578 +a(g62575 +g62577 +S'produced' +p62579 +tp62580 +a(g62577 +g62579 +S'strictly' +p62581 +tp62582 +a(g62579 +g62581 +S'for' +p62583 +tp62584 +a(g62581 +g62583 +S'utilitarian' +p62585 +tp62586 +a(g62583 +g62585 +S'purposes,' +p62587 +tp62588 +a(g62585 +g62587 +S'colonial' +p62589 +tp62590 +a(g62587 +g62589 +S'potters' +p62591 +tp62592 +a(g62589 +g62591 +S'would' +p62593 +tp62594 +a(g62591 +g62593 +S'frequently' +p62595 +tp62596 +a(g62593 +g62595 +S'put' +p62597 +tp62598 +a(g62595 +g62597 +S'decorative' +p62599 +tp62600 +a(g62597 +g62599 +S'designs' +p62601 +tp62602 +a(g62599 +g62601 +S'on' +p62603 +tp62604 +a(g62601 +g62603 +S'their' +p62605 +tp62606 +a(g62603 +g62605 +S'products.' +p62607 +tp62608 +a(g62605 +g62607 +S'on' +p62609 +tp62610 +a(g62607 +g62609 +S'this' +p62611 +tp62612 +a(g62609 +g62611 +S'jar,' +p62613 +tp62614 +a(g62611 +g62613 +S'"1765"' +p62615 +tp62616 +a(g62613 +g62615 +S'has' +p62617 +tp62618 +a(g62615 +g62617 +S'been' +p62619 +tp62620 +a(g62617 +g62619 +S'painted' +p62621 +tp62622 +a(g62619 +g62621 +S'boldly' +p62623 +tp62624 +a(g62621 +g62623 +S'in' +p62625 +tp62626 +a(g62623 +g62625 +S'cream-colored' +p62627 +tp62628 +a(g62625 +g62627 +S'slip.' +p62629 +tp62630 +a(g62627 +g62629 +S'slip' +p62631 +tp62632 +a(g62629 +g62631 +S'is' +p62633 +tp62634 +a(g62631 +g62633 +S'a' +p62635 +tp62636 +a(g62633 +g62635 +S'clay' +p62637 +tp62638 +a(g62635 +g62637 +S'diluted' +p62639 +tp62640 +a(g62637 +g62639 +S'with' +p62641 +tp62642 +a(g62639 +g62641 +S'water' +p62643 +tp62644 +a(g62641 +g62643 +S'so' +p62645 +tp62646 +a(g62643 +g62645 +S'that' +p62647 +tp62648 +a(g62645 +g62647 +S'it' +p62649 +tp62650 +a(g62647 +g62649 +S'can' +p62651 +tp62652 +a(g62649 +g62651 +S'be' +p62653 +tp62654 +a(g62651 +g62653 +S'applied' +p62655 +tp62656 +a(g62653 +g62655 +S'with' +p62657 +tp62658 +a(g62655 +g62657 +S'a' +p62659 +tp62660 +a(g62657 +g62659 +S'brush.' +p62661 +tp62662 +a(g62659 +g62661 +S'the' +p62663 +tp62664 +a(g62661 +g62663 +S'numbers' +p62665 +tp62666 +a(g62663 +g62665 +S'provide' +p62667 +tp62668 +a(g62665 +g62667 +S'a' +p62669 +tp62670 +a(g62667 +g62669 +S'lively' +p62671 +tp62672 +a(g62669 +g62671 +S'contrast' +p62673 +tp62674 +a(g62671 +g62673 +S'with' +p62675 +tp62676 +a(g62673 +g62675 +S'the' +p62677 +tp62678 +a(g62675 +g62677 +S'red' +p62679 +tp62680 +a(g62677 +g62679 +S'clay' +p62681 +tp62682 +a(g62679 +g62681 +S'as' +p62683 +tp62684 +a(g62681 +g62683 +S'well' +p62685 +tp62686 +a(g62683 +g62685 +S'as' +p62687 +tp62688 +a(g62685 +g62687 +S'information' +p62689 +tp62690 +a(g62687 +g62689 +S'as' +p62691 +tp62692 +a(g62689 +g62691 +S'to' +p62693 +tp62694 +a(g62691 +g62693 +S'the' +p62695 +tp62696 +a(g62693 +g62695 +S'date' +p62697 +tp62698 +a(g62695 +g62697 +S'of' +p62699 +tp62700 +a(g62697 +g62699 +S'manufacture.' +p62701 +tp62702 +a(g62699 +g62701 +S'this' +p62703 +tp62704 +a(g62701 +g62703 +S'jug,' +p62705 +tp62706 +a(g62703 +g62705 +S'probably' +p62707 +tp62708 +a(g62705 +g62707 +S'a' +p62709 +tp62710 +a(g62707 +g62709 +S'product' +p62711 +tp62712 +a(g62709 +g62711 +S'of' +p62713 +tp62714 +a(g62711 +g62713 +S'a' +p62715 +tp62716 +a(g62713 +g62715 +S'pennsylvania' +p62717 +tp62718 +a(g62715 +g62717 +S'craftsman,' +p62719 +tp62720 +a(g62717 +g62719 +S'illustrates' +p62721 +tp62722 +a(g62719 +g62721 +S'a' +p62723 +tp62724 +a(g62721 +g62723 +S'technique' +p62725 +tp62726 +a(g62723 +g62725 +S'known' +p62727 +tp62728 +a(g62725 +g62727 +S'as' +p62729 +tp62730 +a(g62727 +g62729 +S'"sgraffito."' +p62731 +tp62732 +a(g62729 +g62731 +S'in' +p62733 +tp62734 +a(g62731 +g62733 +S'this' +p62735 +tp62736 +a(g62733 +g62735 +S'technique,' +p62737 +tp62738 +a(g62735 +g62737 +S'a' +p62739 +tp62740 +a(g62737 +g62739 +S'piece' +p62741 +tp62742 +a(g62739 +g62741 +S'was' +p62743 +tp62744 +a(g62741 +g62743 +S'completely' +p62745 +tp62746 +a(g62743 +g62745 +S'covered' +p62747 +tp62748 +a(g62745 +g62747 +S'with' +p62749 +tp62750 +a(g62747 +g62749 +S'a' +p62751 +tp62752 +a(g62749 +g62751 +S'thin' +p62753 +tp62754 +a(g62751 +g62753 +S'coating' +p62755 +tp62756 +a(g62753 +g62755 +S'of' +p62757 +tp62758 +a(g62755 +g62757 +S'a' +p62759 +tp62760 +a(g62757 +g62759 +S'light-colored' +p62761 +tp62762 +a(g62759 +g62761 +S'slip.' +p62763 +tp62764 +a(g62761 +g62763 +S'when' +p62765 +tp62766 +a(g62763 +g62765 +S'the' +p62767 +tp62768 +a(g62765 +g62767 +S'slip' +p62769 +tp62770 +a(g62767 +g62769 +S'was' +p62771 +tp62772 +a(g62769 +g62771 +S'partially' +p62773 +tp62774 +a(g62771 +g62773 +S'dry,' +p62775 +tp62776 +a(g62773 +g62775 +S'the' +p62777 +tp62778 +a(g62775 +g62777 +S'design' +p62779 +tp62780 +a(g62777 +g62779 +S'was' +p62781 +tp62782 +a(g62779 +g62781 +S'drawn' +p62783 +tp62784 +a(g62781 +g62783 +S'by' +p62785 +tp62786 +a(g62783 +g62785 +S'scratching' +p62787 +tp62788 +a(g62785 +g62787 +S'lines' +p62789 +tp62790 +a(g62787 +g62789 +S'through' +p62791 +tp62792 +a(g62789 +g62791 +S'the' +p62793 +tp62794 +a(g62791 +g62793 +S'slip' +p62795 +tp62796 +a(g62793 +g62795 +S'coating,' +p62797 +tp62798 +a(g62795 +g62797 +S'exposing' +p62799 +tp62800 +a(g62797 +g62799 +S'the' +p62801 +tp62802 +a(g62799 +g62801 +S'clay' +p62803 +tp62804 +a(g62801 +g62803 +S'beneath.' +p62805 +tp62806 +a(g62803 +g62805 +S'in' +p62807 +tp62808 +a(g62805 +g62807 +S'addition' +p62809 +tp62810 +a(g62807 +g62809 +S'to' +p62811 +tp62812 +a(g62809 +g62811 +S'the' +p62813 +tp62814 +a(g62811 +g62813 +S'floral' +p62815 +tp62816 +a(g62813 +g62815 +S'design' +p62817 +tp62818 +a(g62815 +g62817 +S'that' +p62819 +tp62820 +a(g62817 +g62819 +S'covers' +p62821 +tp62822 +a(g62819 +g62821 +S'the' +p62823 +tp62824 +a(g62821 +g62823 +S'surface' +p62825 +tp62826 +a(g62823 +g62825 +S'of' +p62827 +tp62828 +a(g62825 +g62827 +S'the' +p62829 +tp62830 +a(g62827 +g62829 +S'jug,' +p62831 +tp62832 +a(g62829 +g62831 +S'a' +p62833 +tp62834 +a(g62831 +g62833 +S'german' +p62835 +tp62836 +a(g62833 +g62835 +S'inscription' +p62837 +tp62838 +a(g62835 +g62837 +S'appears' +p62839 +tp62840 +a(g62837 +g62839 +S'on' +p62841 +tp62842 +a(g62839 +g62841 +S'the' +p62843 +tp62844 +a(g62841 +g62843 +S'neck.' +p62845 +tp62846 +a(g62843 +g62845 +S'it' +p62847 +tp62848 +a(g62845 +g62847 +S'says,' +p62849 +tp62850 +a(g62847 +g62849 +S'"this' +p62851 +tp62852 +a(g62849 +g62851 +S'and' +p62853 +tp62854 +a(g62851 +g62853 +S'the' +p62855 +tp62856 +a(g62853 +g62855 +S'giver' +p62857 +tp62858 +a(g62855 +g62857 +S'are' +p62859 +tp62860 +a(g62857 +g62859 +S'thine' +p62861 +tp62862 +a(g62859 +g62861 +S'forever.' +p62863 +tp62864 +a(g62861 +g62863 +S'1775."' +p62865 +tp62866 +a(g62863 +g62865 +S'inscribed' +p62867 +tp62868 +a(g62865 +g62867 +S'and' +p62869 +tp62870 +a(g62867 +g62869 +S'dated' +p62871 +tp62872 +a(g62869 +g62871 +S'pieces' +p62873 +tp62874 +a(g62871 +g62873 +S'such' +p62875 +tp62876 +a(g62873 +g62875 +S'as' +p62877 +tp62878 +a(g62875 +g62877 +S'this' +p62879 +tp62880 +a(g62877 +g62879 +S'one' +p62881 +tp62882 +a(g62879 +g62881 +S'were' +p62883 +tp62884 +a(g62881 +g62883 +S'customarily' +p62885 +tp62886 +a(g62883 +g62885 +S'made' +p62887 +tp62888 +a(g62885 +g62887 +S'as' +p62889 +tp62890 +a(g62887 +g62889 +S'special' +p62891 +tp62892 +a(g62889 +g62891 +S'marriage' +p62893 +tp62894 +a(g62891 +g62893 +S'gifts,' +p62895 +tp62896 +a(g62893 +g62895 +S'although' +p62897 +tp62898 +a(g62895 +g62897 +S'elaborately' +p62899 +tp62900 +a(g62897 +g62899 +S'decorated' +p62901 +tp62902 +a(g62899 +g62901 +S'wares' +p62903 +tp62904 +a(g62901 +g62903 +S'were' +p62905 +tp62906 +a(g62903 +g62905 +S'also' +p62907 +tp62908 +a(g62905 +g62907 +S'made' +p62909 +tp62910 +a(g62907 +g62909 +S'to' +p62911 +tp62912 +a(g62909 +g62911 +S'commemorate' +p62913 +tp62914 +a(g62911 +g62913 +S'other' +p62915 +tp62916 +a(g62913 +g62915 +S'occasions,' +p62917 +tp62918 +a(g62915 +g62917 +S'such' +p62919 +tp62920 +a(g62917 +g62919 +S'as' +p62921 +tp62922 +a(g62919 +g62921 +S'births' +p62923 +tp62924 +a(g62921 +g62923 +S'and' +p62925 +tp62926 +a(g62923 +g62925 +S'baptisms.' +p62927 +tp62928 +a(g62925 +g62927 +S'richly' +p62929 +tp62930 +a(g62927 +g62929 +S'painted' +p62931 +tp62932 +a(g62929 +g62931 +S'chests' +p62933 +tp62934 +a(g62931 +g62933 +S'had' +p62935 +tp62936 +a(g62933 +g62935 +S'been' +p62937 +tp62938 +a(g62935 +g62937 +S'made' +p62939 +tp62940 +a(g62937 +g62939 +S'in' +p62941 +tp62942 +a(g62939 +g62941 +S'the' +p62943 +tp62944 +a(g62941 +g62943 +S'area' +p62945 +tp62946 +a(g62943 +g62945 +S'of' +p62947 +tp62948 +a(g62945 +g62947 +S'chihuahua,' +p62949 +tp62950 +a(g62947 +g62949 +S'mexico,' +p62951 +tp62952 +a(g62949 +g62951 +S'at' +p62953 +tp62954 +a(g62951 +g62953 +S'the' +p62955 +tp62956 +a(g62953 +g62955 +S'turn' +p62957 +tp62958 +a(g62955 +g62957 +S'of' +p62959 +tp62960 +a(g62957 +g62959 +S'the' +p62961 +tp62962 +a(g62959 +g62961 +S'eighteenth' +p62963 +tp62964 +a(g62961 +g62963 +S'century.' +p62965 +tp62966 +a(g62963 +g62965 +S'visitors' +p62967 +tp62968 +a(g62965 +g62967 +S'from' +p62969 +tp62970 +a(g62967 +g62969 +S'new' +p62971 +tp62972 +a(g62969 +g62971 +S'mexico' +p62973 +tp62974 +a(g62971 +g62973 +S'brought' +p62975 +tp62976 +a(g62973 +g62975 +S'examples' +p62977 +tp62978 +a(g62975 +g62977 +S'back' +p62979 +tp62980 +a(g62977 +g62979 +S'with' +p62981 +tp62982 +a(g62979 +g62981 +S'them' +p62983 +tp62984 +a(g62981 +g62983 +S'as' +p62985 +tp62986 +a(g62983 +g62985 +S'containers' +p62987 +tp62988 +a(g62985 +g62987 +S'for' +p62989 +tp62990 +a(g62987 +g62989 +S'wedding' +p62991 +tp62992 +a(g62989 +g62991 +S'finery.' +p62993 +tp62994 +a(g62991 +g62993 +S'during' +p62995 +tp62996 +a(g62993 +g62995 +S'the' +p62997 +tp62998 +a(g62995 +g62997 +S'first' +p62999 +tp63000 +a(g62997 +g62999 +S'part' +p63001 +tp63002 +a(g62999 +g63001 +S'of' +p63003 +tp63004 +a(g63001 +g63003 +S'the' +p63005 +tp63006 +a(g63003 +g63005 +S'nineteenth' +p63007 +tp63008 +a(g63005 +g63007 +S'century,' +p63009 +tp63010 +a(g63007 +g63009 +S'such' +p63011 +tp63012 +a(g63009 +g63011 +S'chests' +p63013 +tp63014 +a(g63011 +g63013 +S'were' +p63015 +tp63016 +a(g63013 +g63015 +S'copied' +p63017 +tp63018 +a(g63015 +g63017 +S'in' +p63019 +tp63020 +a(g63017 +g63019 +S'new' +p63021 +tp63022 +a(g63019 +g63021 +S'mexico,' +p63023 +tp63024 +a(g63021 +g63023 +S'possibly' +p63025 +tp63026 +a(g63023 +g63025 +S'by' +p63027 +tp63028 +a(g63025 +g63027 +S'artists' +p63029 +tp63030 +a(g63027 +g63029 +S'who' +p63031 +tp63032 +a(g63029 +g63031 +S'had' +p63033 +tp63034 +a(g63031 +g63033 +S'lived' +p63035 +tp63036 +a(g63033 +g63035 +S'in' +p63037 +tp63038 +a(g63035 +g63037 +S'or' +p63039 +tp63040 +a(g63037 +g63039 +S'had' +p63041 +tp63042 +a(g63039 +g63041 +S'come' +p63043 +tp63044 +a(g63041 +g63043 +S'from' +p63045 +tp63046 +a(g63043 +g63045 +S'mexico.' +p63047 +tp63048 +a(g63045 +g63047 +S'this' +p63049 +tp63050 +a(g63047 +g63049 +S'example,' +p63051 +tp63052 +a(g63049 +g63051 +S'made' +p63053 +tp63054 +a(g63051 +g63053 +S'in' +p63055 +tp63056 +a(g63053 +g63055 +S'pine,' +p63057 +tp63058 +a(g63055 +g63057 +S'is' +p63059 +tp63060 +a(g63057 +g63059 +S'attributed' +p63061 +tp63062 +a(g63059 +g63061 +S'to' +p63063 +tp63064 +a(g63061 +g63063 +S'a' +p63065 +tp63066 +a(g63063 +g63065 +S'period' +p63067 +tp63068 +a(g63065 +g63067 +S'between' +p63069 +tp63070 +a(g63067 +g63069 +S'1810' +p63071 +tp63072 +a(g63069 +g63071 +S'and' +p63073 +tp63074 +a(g63071 +g63073 +S'1820.' +p63075 +tp63076 +a(g63073 +g63075 +S'it' +p63077 +tp63078 +a(g63075 +g63077 +S'is' +p63079 +tp63080 +a(g63077 +g63079 +S'from' +p63081 +tp63082 +a(g63079 +g63081 +S'the' +p63083 +tp63084 +a(g63081 +g63083 +S'rio' +p63085 +tp63086 +a(g63083 +g63085 +S'grande' +p63087 +tp63088 +a(g63085 +g63087 +S'valley' +p63089 +tp63090 +a(g63087 +g63089 +S'south' +p63091 +tp63092 +a(g63089 +g63091 +S'of' +p63093 +tp63094 +a(g63091 +g63093 +S'taos.' +p63095 +tp63096 +a(g63093 +g63095 +S'one' +p63097 +tp63098 +a(g63095 +g63097 +S'of' +p63099 +tp63100 +a(g63097 +g63099 +S'a' +p63101 +tp63102 +a(g63099 +g63101 +S'group' +p63103 +tp63104 +a(g63101 +g63103 +S'of' +p63105 +tp63106 +a(g63103 +g63105 +S'about' +p63107 +tp63108 +a(g63105 +g63107 +S'forty' +p63109 +tp63110 +a(g63107 +g63109 +S'chests' +p63111 +tp63112 +a(g63109 +g63111 +S'of' +p63113 +tp63114 +a(g63111 +g63113 +S'a' +p63115 +tp63116 +a(g63113 +g63115 +S'similar' +p63117 +tp63118 +a(g63115 +g63117 +S'type,' +p63119 +tp63120 +a(g63117 +g63119 +S'it' +p63121 +tp63122 +a(g63119 +g63121 +S'displays' +p63123 +tp63124 +a(g63121 +g63123 +S'lush' +p63125 +tp63126 +a(g63123 +g63125 +S'decorative' +p63127 +tp63128 +a(g63125 +g63127 +S'motifs' +p63129 +tp63130 +a(g63127 +g63129 +S'and' +p63131 +tp63132 +a(g63129 +g63131 +S'bright' +p63133 +tp63134 +a(g63131 +g63133 +S'colors.' +p63135 +tp63136 +a(g63133 +g63135 +S'the' +p63137 +tp63138 +a(g63135 +g63137 +S'carving' +p63139 +tp63140 +a(g63137 +g63139 +S'of' +p63141 +tp63142 +a(g63139 +g63141 +S'this' +p63143 +tp63144 +a(g63141 +g63143 +S'chest' +p63145 +tp63146 +a(g63143 +g63145 +S'is' +p63147 +tp63148 +a(g63145 +g63147 +S'identified' +p63149 +tp63150 +a(g63147 +g63149 +S'with' +p63151 +tp63152 +a(g63149 +g63151 +S'taos,' +p63153 +tp63154 +a(g63151 +g63153 +S'new' +p63155 +tp63156 +a(g63153 +g63155 +S'mexico.' +p63157 +tp63158 +a(g63155 +g63157 +S'the' +p63159 +tp63160 +a(g63157 +g63159 +S'piece' +p63161 +tp63162 +a(g63159 +g63161 +S'dates' +p63163 +tp63164 +a(g63161 +g63163 +S'from' +p63165 +tp63166 +a(g63163 +g63165 +S'about' +p63167 +tp63168 +a(g63165 +g63167 +S'1870.' +p63169 +tp63170 +a(g63167 +g63169 +S'decorative' +p63171 +tp63172 +a(g63169 +g63171 +S'motifs' +p63173 +tp63174 +a(g63171 +g63173 +S'are' +p63175 +tp63176 +a(g63173 +g63175 +S'contained' +p63177 +tp63178 +a(g63175 +g63177 +S'in' +p63179 +tp63180 +a(g63177 +g63179 +S'separate' +p63181 +tp63182 +a(g63179 +g63181 +S'units' +p63183 +tp63184 +a(g63181 +g63183 +S'which,' +p63185 +tp63186 +a(g63183 +g63185 +S'varied' +p63187 +tp63188 +a(g63185 +g63187 +S'and' +p63189 +tp63190 +a(g63187 +g63189 +S'repeated,' +p63191 +tp63192 +a(g63189 +g63191 +S'cover' +p63193 +tp63194 +a(g63191 +g63193 +S'the' +p63195 +tp63196 +a(g63193 +g63195 +S'panel' +p63197 +tp63198 +a(g63195 +g63197 +S'without' +p63199 +tp63200 +a(g63197 +g63199 +S'any' +p63201 +tp63202 +a(g63199 +g63201 +S'connection' +p63203 +tp63204 +a(g63201 +g63203 +S'between' +p63205 +tp63206 +a(g63203 +g63205 +S'the' +p63207 +tp63208 +a(g63205 +g63207 +S'units;' +p63209 +tp63210 +a(g63207 +g63209 +S'sequence' +p63211 +tp63212 +a(g63209 +g63211 +S'rather' +p63213 +tp63214 +a(g63211 +g63213 +S'than' +p63215 +tp63216 +a(g63213 +g63215 +S'rhythm' +p63217 +tp63218 +a(g63215 +g63217 +S'is' +p63219 +tp63220 +a(g63217 +g63219 +S'the' +p63221 +tp63222 +a(g63219 +g63221 +S'underlying' +p63223 +tp63224 +a(g63221 +g63223 +S'principle.' +p63225 +tp63226 +a(g63223 +g63225 +S'the' +p63227 +tp63228 +a(g63225 +g63227 +S'sawtooth' +p63229 +tp63230 +a(g63227 +g63229 +S'motif' +p63231 +tp63232 +a(g63229 +g63231 +S'on' +p63233 +tp63234 +a(g63231 +g63233 +S'the' +p63235 +tp63236 +a(g63233 +g63235 +S'base' +p63237 +tp63238 +a(g63235 +g63237 +S'is' +p63239 +tp63240 +a(g63237 +g63239 +S'typical' +p63241 +tp63242 +a(g63239 +g63241 +S'of' +p63243 +tp63244 +a(g63241 +g63243 +S'effects' +p63245 +tp63246 +a(g63243 +g63245 +S'resulting' +p63247 +tp63248 +a(g63245 +g63247 +S'from' +p63249 +tp63250 +a(g63247 +g63249 +S'limited' +p63251 +tp63252 +a(g63249 +g63251 +S'tools.' +p63253 +tp63254 +a(g63251 +g63253 +S'the' +p63255 +tp63256 +a(g63253 +g63255 +S'massive' +p63257 +tp63258 +a(g63255 +g63257 +S'proportions' +p63259 +tp63260 +a(g63257 +g63259 +S'of' +p63261 +tp63262 +a(g63259 +g63261 +S'such' +p63263 +tp63264 +a(g63261 +g63263 +S'chests' +p63265 +tp63266 +a(g63263 +g63265 +S'were' +p63267 +tp63268 +a(g63265 +g63267 +S'in' +p63269 +tp63270 +a(g63267 +g63269 +S'harmony' +p63271 +tp63272 +a(g63269 +g63271 +S'with' +p63273 +tp63274 +a(g63271 +g63273 +S'the' +p63275 +tp63276 +a(g63273 +g63275 +S'large' +p63277 +tp63278 +a(g63275 +g63277 +S'adobe' +p63279 +tp63280 +a(g63277 +g63279 +S'houses' +p63281 +tp63282 +a(g63279 +g63281 +S'of' +p63283 +tp63284 +a(g63281 +g63283 +S'the' +p63285 +tp63286 +a(g63283 +g63285 +S'southwest.' +p63287 +tp63288 +a(g63285 +g63287 +S'spanish' +p63289 +tp63290 +a(g63287 +g63289 +S'renaissance' +p63291 +tp63292 +a(g63289 +g63291 +S'traditions' +p63293 +tp63294 +a(g63291 +g63293 +S'were' +p63295 +tp63296 +a(g63293 +g63295 +S'continued' +p63297 +tp63298 +a(g63295 +g63297 +S'in' +p63299 +tp63300 +a(g63297 +g63299 +S'the' +p63301 +tp63302 +a(g63299 +g63301 +S'furniture' +p63303 +tp63304 +a(g63301 +g63303 +S'of' +p63305 +tp63306 +a(g63303 +g63305 +S'mexico' +p63307 +tp63308 +a(g63305 +g63307 +S'and' +p63309 +tp63310 +a(g63307 +g63309 +S'reached' +p63311 +tp63312 +a(g63309 +g63311 +S'california' +p63313 +tp63314 +a(g63311 +g63313 +S'and' +p63315 +tp63316 +a(g63313 +g63315 +S'new' +p63317 +tp63318 +a(g63315 +g63317 +S'mexico' +p63319 +tp63320 +a(g63317 +g63319 +S'with' +p63321 +tp63322 +a(g63319 +g63321 +S'the' +p63323 +tp63324 +a(g63321 +g63323 +S'establishment' +p63325 +tp63326 +a(g63323 +g63325 +S'of' +p63327 +tp63328 +a(g63325 +g63327 +S'the' +p63329 +tp63330 +a(g63327 +g63329 +S'early' +p63331 +tp63332 +a(g63329 +g63331 +S'missions.' +p63333 +tp63334 +a(g63331 +g63333 +S'this' +p63335 +tp63336 +a(g63333 +g63335 +S'armchair' +p63337 +tp63338 +a(g63335 +g63337 +S'from' +p63339 +tp63340 +a(g63337 +g63339 +S'california' +p63341 +tp63342 +a(g63339 +g63341 +S'is' +p63343 +tp63344 +a(g63341 +g63343 +S'of' +p63345 +tp63346 +a(g63343 +g63345 +S'pine' +p63347 +tp63348 +a(g63345 +g63347 +S'and' +p63349 +tp63350 +a(g63347 +g63349 +S'dates' +p63351 +tp63352 +a(g63349 +g63351 +S'from' +p63353 +tp63354 +a(g63351 +g63353 +S'the' +p63355 +tp63356 +a(g63353 +g63355 +S'late' +p63357 +tp63358 +a(g63355 +g63357 +S'eighteenth' +p63359 +tp63360 +a(g63357 +g63359 +S'century.' +p63361 +tp63362 +a(g63359 +g63361 +S'often' +p63363 +tp63364 +a(g63361 +g63363 +S'such' +p63365 +tp63366 +a(g63363 +g63365 +S'furniture,' +p63367 +tp63368 +a(g63365 +g63367 +S'doweled' +p63369 +tp63370 +a(g63367 +g63369 +S'and' +p63371 +tp63372 +a(g63369 +g63371 +S'pegged' +p63373 +tp63374 +a(g63371 +g63373 +S'together' +p63375 +tp63376 +a(g63373 +g63375 +S'without' +p63377 +tp63378 +a(g63375 +g63377 +S'nails,' +p63379 +tp63380 +a(g63377 +g63379 +S'shows' +p63381 +tp63382 +a(g63379 +g63381 +S'the' +p63383 +tp63384 +a(g63381 +g63383 +S'natural' +p63385 +tp63386 +a(g63383 +g63385 +S'unpainted' +p63387 +tp63388 +a(g63385 +g63387 +S'wood' +p63389 +tp63390 +a(g63387 +g63389 +S'and' +p63391 +tp63392 +a(g63389 +g63391 +S'a' +p63393 +tp63394 +a(g63391 +g63393 +S'native' +p63395 +tp63396 +a(g63393 +g63395 +S'folk' +p63397 +tp63398 +a(g63395 +g63397 +S'style' +p63399 +tp63400 +a(g63397 +g63399 +S'in' +p63401 +tp63402 +a(g63399 +g63401 +S'the' +p63403 +tp63404 +a(g63401 +g63403 +S'carved' +p63405 +tp63406 +a(g63403 +g63405 +S'motifs.' +p63407 +tp63408 +a(g63405 +g63407 +S'the' +p63409 +tp63410 +a(g63407 +g63409 +S'primitive' +p63411 +tp63412 +a(g63409 +g63411 +S'lines' +p63413 +tp63414 +a(g63411 +g63413 +S'and' +p63415 +tp63416 +a(g63413 +g63415 +S'rigid' +p63417 +tp63418 +a(g63415 +g63417 +S'construction' +p63419 +tp63420 +a(g63417 +g63419 +S'of' +p63421 +tp63422 +a(g63419 +g63421 +S'the' +p63423 +tp63424 +a(g63421 +g63423 +S'pieces' +p63425 +tp63426 +a(g63423 +g63425 +S'can' +p63427 +tp63428 +a(g63425 +g63427 +S'be' +p63429 +tp63430 +a(g63427 +g63429 +S'attributed' +p63431 +tp63432 +a(g63429 +g63431 +S'to' +p63433 +tp63434 +a(g63431 +g63433 +S'the' +p63435 +tp63436 +a(g63433 +g63435 +S'scarcity' +p63437 +tp63438 +a(g63435 +g63437 +S'of' +p63439 +tp63440 +a(g63437 +g63439 +S'tools' +p63441 +tp63442 +a(g63439 +g63441 +S'and' +p63443 +tp63444 +a(g63441 +g63443 +S'implements.' +p63445 +tp63446 +a(g63443 +g63445 +S'the' +p63447 +tp63448 +a(g63445 +g63447 +S'workshops' +p63449 +tp63450 +a(g63447 +g63449 +S'of' +p63451 +tp63452 +a(g63449 +g63451 +S'san' +p63453 +tp63454 +a(g63451 +g63453 +S'fernando' +p63455 +tp63456 +a(g63453 +g63455 +S'were' +p63457 +tp63458 +a(g63455 +g63457 +S'renowned' +p63459 +tp63460 +a(g63457 +g63459 +S'for' +p63461 +tp63462 +a(g63459 +g63461 +S'their' +p63463 +tp63464 +a(g63461 +g63463 +S'ironwork.' +p63465 +tp63466 +a(g63463 +g63465 +S'produced' +p63467 +tp63468 +a(g63465 +g63467 +S'by' +p63469 +tp63470 +a(g63467 +g63469 +S'indian' +p63471 +tp63472 +a(g63469 +g63471 +S'blacksmiths,' +p63473 +tp63474 +a(g63471 +g63473 +S'this' +p63475 +tp63476 +a(g63473 +g63475 +S'handsome' +p63477 +tp63478 +a(g63475 +g63477 +S'window' +p63479 +tp63480 +a(g63477 +g63479 +S'grille' +p63481 +tp63482 +a(g63479 +g63481 +S'is' +p63483 +tp63484 +a(g63481 +g63483 +S'an' +p63485 +tp63486 +a(g63483 +g63485 +S'example' +p63487 +tp63488 +a(g63485 +g63487 +S'of' +p63489 +tp63490 +a(g63487 +g63489 +S'their' +p63491 +tp63492 +a(g63489 +g63491 +S'craft,' +p63493 +tp63494 +a(g63491 +g63493 +S'and' +p63495 +tp63496 +a(g63493 +g63495 +S'its' +p63497 +tp63498 +a(g63495 +g63497 +S'style' +p63499 +tp63500 +a(g63497 +g63499 +S'is' +p63501 +tp63502 +a(g63499 +g63501 +S'typical' +p63503 +tp63504 +a(g63501 +g63503 +S'of' +p63505 +tp63506 +a(g63503 +g63505 +S'san' +p63507 +tp63508 +a(g63505 +g63507 +S'fernando,' +p63509 +tp63510 +a(g63507 +g63509 +S'which' +p63511 +tp63512 +a(g63509 +g63511 +S'created' +p63513 +tp63514 +a(g63511 +g63513 +S'the' +p63515 +tp63516 +a(g63513 +g63515 +S'most' +p63517 +tp63518 +a(g63515 +g63517 +S'ornate' +p63519 +tp63520 +a(g63517 +g63519 +S'grilles' +p63521 +tp63522 +a(g63519 +g63521 +S'of' +p63523 +tp63524 +a(g63521 +g63523 +S'all' +p63525 +tp63526 +a(g63523 +g63525 +S'the' +p63527 +tp63528 +a(g63525 +g63527 +S'missions.' +p63529 +tp63530 +a(g63527 +g63529 +S'this' +p63531 +tp63532 +a(g63529 +g63531 +S'window' +p63533 +tp63534 +a(g63531 +g63533 +S'grille' +p63535 +tp63536 +a(g63533 +g63535 +S'continues' +p63537 +tp63538 +a(g63535 +g63537 +S'an' +p63539 +tp63540 +a(g63537 +g63539 +S'art' +p63541 +tp63542 +a(g63539 +g63541 +S'form' +p63543 +tp63544 +a(g63541 +g63543 +S'that' +p63545 +tp63546 +a(g63543 +g63545 +S'was' +p63547 +tp63548 +a(g63545 +g63547 +S'indigenous' +p63549 +tp63550 +a(g63547 +g63549 +S'to' +p63551 +tp63552 +a(g63549 +g63551 +S'spain.' +p63553 +tp63554 +a(g63551 +g63553 +S'not' +p63555 +tp63556 +a(g63553 +g63555 +S'only' +p63557 +tp63558 +a(g63555 +g63557 +S'is' +p63559 +tp63560 +a(g63557 +g63559 +S'the' +p63561 +tp63562 +a(g63559 +g63561 +S'design' +p63563 +tp63564 +a(g63561 +g63563 +S'of' +p63565 +tp63566 +a(g63563 +g63565 +S'european' +p63567 +tp63568 +a(g63565 +g63567 +S'origin,' +p63569 +tp63570 +a(g63567 +g63569 +S'but' +p63571 +tp63572 +a(g63569 +g63571 +S'iron' +p63573 +tp63574 +a(g63571 +g63573 +S'itself' +p63575 +tp63576 +a(g63573 +g63575 +S'was' +p63577 +tp63578 +a(g63575 +g63577 +S'a' +p63579 +tp63580 +a(g63577 +g63579 +S'new' +p63581 +tp63582 +a(g63579 +g63581 +S'artistic' +p63583 +tp63584 +a(g63581 +g63583 +S'medium' +p63585 +tp63586 +a(g63583 +g63585 +S'for' +p63587 +tp63588 +a(g63585 +g63587 +S'the' +p63589 +tp63590 +a(g63587 +g63589 +S'indian' +p63591 +tp63592 +a(g63589 +g63591 +S'craftsmen' +p63593 +tp63594 +a(g63591 +g63593 +S'of' +p63595 +tp63596 +a(g63593 +g63595 +S'california' +p63597 +tp63598 +a(g63595 +g63597 +S'who' +p63599 +tp63600 +a(g63597 +g63599 +S'had' +p63601 +tp63602 +a(g63599 +g63601 +S'previously' +p63603 +tp63604 +a(g63601 +g63603 +S'worked' +p63605 +tp63606 +a(g63603 +g63605 +S'only' +p63607 +tp63608 +a(g63605 +g63607 +S'in' +p63609 +tp63610 +a(g63607 +g63609 +S'stone' +p63611 +tp63612 +a(g63609 +g63611 +S'and' +p63613 +tp63614 +a(g63611 +g63613 +S'wood.' +p63615 +tp63616 +a(g63613 +g63615 +S'births,' +p63617 +tp63618 +a(g63615 +g63617 +S'baptisms,' +p63619 +tp63620 +a(g63617 +g63619 +S'and' +p63621 +tp63622 +a(g63619 +g63621 +S'deaths' +p63623 +tp63624 +a(g63621 +g63623 +S'were' +p63625 +tp63626 +a(g63623 +g63625 +S'three' +p63627 +tp63628 +a(g63625 +g63627 +S'important' +p63629 +tp63630 +a(g63627 +g63629 +S'family' +p63631 +tp63632 +a(g63629 +g63631 +S'occasions' +p63633 +tp63634 +a(g63631 +g63633 +S'recorded' +p63635 +tp63636 +a(g63633 +g63635 +S'in' +p63637 +tp63638 +a(g63635 +g63637 +S'fracturs.' +p63639 +tp63640 +a(g63637 +g63639 +S'because' +p63641 +tp63642 +a(g63639 +g63641 +S'such' +p63643 +tp63644 +a(g63641 +g63643 +S'records' +p63645 +tp63646 +a(g63643 +g63645 +S'were' +p63647 +tp63648 +a(g63645 +g63647 +S'required' +p63649 +tp63650 +a(g63647 +g63649 +S'by' +p63651 +tp63652 +a(g63649 +g63651 +S'law' +p63653 +tp63654 +a(g63651 +g63653 +S'in' +p63655 +tp63656 +a(g63653 +g63655 +S'the' +p63657 +tp63658 +a(g63655 +g63657 +S'old' +p63659 +tp63660 +a(g63657 +g63659 +S'country,' +p63661 +tp63662 +a(g63659 +g63661 +S'the' +p63663 +tp63664 +a(g63661 +g63663 +S'tradition' +p63665 +tp63666 +a(g63663 +g63665 +S'was' +p63667 +tp63668 +a(g63665 +g63667 +S'continued' +p63669 +tp63670 +a(g63667 +g63669 +S'in' +p63671 +tp63672 +a(g63669 +g63671 +S'america.' +p63673 +tp63674 +a(g63671 +g63673 +S'this' +p63675 +tp63676 +a(g63673 +g63675 +S'is' +p63677 +tp63678 +a(g63675 +g63677 +S'a' +p63679 +tp63680 +a(g63677 +g63679 +S'birth' +p63681 +tp63682 +a(g63679 +g63681 +S'certificate' +p63683 +tp63684 +a(g63681 +g63683 +S'recording' +p63685 +tp63686 +a(g63683 +g63685 +S'the' +p63687 +tp63688 +a(g63685 +g63687 +S'birth' +p63689 +tp63690 +a(g63687 +g63689 +S'of' +p63691 +tp63692 +a(g63689 +g63691 +S'lea' +p63693 +tp63694 +a(g63691 +g63693 +S'herold,' +p63695 +tp63696 +a(g63693 +g63695 +S'april' +p63697 +tp63698 +a(g63695 +g63697 +S'5,' +p63699 +tp63700 +a(g63697 +g63699 +S'1824.' +p63701 +tp63702 +a(g63699 +g63701 +S'done' +p63703 +tp63704 +a(g63701 +g63703 +S'on' +p63705 +tp63706 +a(g63703 +g63705 +S'old' +p63707 +tp63708 +a(g63705 +g63707 +S'wrapping' +p63709 +tp63710 +a(g63707 +g63709 +S'paper,' +p63711 +tp63712 +a(g63709 +g63711 +S'the' +p63713 +tp63714 +a(g63711 +g63713 +S'elaborate' +p63715 +tp63716 +a(g63713 +g63715 +S'design' +p63717 +tp63718 +a(g63715 +g63717 +S'dwarfs' +p63719 +tp63720 +a(g63717 +g63719 +S'the' +p63721 +tp63722 +a(g63719 +g63721 +S'writing.' +p63723 +tp63724 +a(g63721 +g63723 +S'flowers' +p63725 +tp63726 +a(g63723 +g63725 +S'sprawl' +p63727 +tp63728 +a(g63725 +g63727 +S'profusely' +p63729 +tp63730 +a(g63727 +g63729 +S'over' +p63731 +tp63732 +a(g63729 +g63731 +S'the' +p63733 +tp63734 +a(g63731 +g63733 +S'page' +p63735 +tp63736 +a(g63733 +g63735 +S'in' +p63737 +tp63738 +a(g63735 +g63737 +S'the' +p63739 +tp63740 +a(g63737 +g63739 +S'bold' +p63741 +tp63742 +a(g63739 +g63741 +S'colors' +p63743 +tp63744 +a(g63741 +g63743 +S'that' +p63745 +tp63746 +a(g63743 +g63745 +S'mark' +p63747 +tp63748 +a(g63745 +g63747 +S'pennsylvania' +p63749 +tp63750 +a(g63747 +g63749 +S'german' +p63751 +tp63752 +a(g63749 +g63751 +S'art.' +p63753 +tp63754 +a(g63751 +g63753 +S'furniture' +p63755 +tp63756 +a(g63753 +g63755 +S'in' +p63757 +tp63758 +a(g63755 +g63757 +S'the' +p63759 +tp63760 +a(g63757 +g63759 +S'jacobean' +p63761 +tp63762 +a(g63759 +g63761 +S'style' +p63763 +tp63764 +a(g63761 +g63763 +S'was' +p63765 +tp63766 +a(g63763 +g63765 +S'made' +p63767 +tp63768 +a(g63765 +g63767 +S'in' +p63769 +tp63770 +a(g63767 +g63769 +S'america' +p63771 +tp63772 +a(g63769 +g63771 +S'from' +p63773 +tp63774 +a(g63771 +g63773 +S'about' +p63775 +tp63776 +a(g63773 +g63775 +S'1640' +p63777 +tp63778 +a(g63775 +g63777 +S'to' +p63779 +tp63780 +a(g63777 +g63779 +S'about' +p63781 +tp63782 +a(g63779 +g63781 +S'1690.' +p63783 +tp63784 +a(g63781 +g63783 +S'pieces' +p63785 +tp63786 +a(g63783 +g63785 +S'such' +p63787 +tp63788 +a(g63785 +g63787 +S'as' +p63789 +tp63790 +a(g63787 +g63789 +S'this' +p63791 +tp63792 +a(g63789 +g63791 +S'chest' +p63793 +tp63794 +a(g63791 +g63793 +S'were' +p63795 +tp63796 +a(g63793 +g63795 +S'the' +p63797 +tp63798 +a(g63795 +g63797 +S'work' +p63799 +tp63800 +a(g63797 +g63799 +S'of' +p63801 +tp63802 +a(g63799 +g63801 +S'the' +p63803 +tp63804 +a(g63801 +g63803 +S'joiner,' +p63805 +tp63806 +a(g63803 +g63805 +S'or' +p63807 +tp63808 +a(g63805 +g63807 +S'carpenter,' +p63809 +tp63810 +a(g63807 +g63809 +S'for' +p63811 +tp63812 +a(g63809 +g63811 +S'cabinetmaking' +p63813 +tp63814 +a(g63811 +g63813 +S'had' +p63815 +tp63816 +a(g63813 +g63815 +S'not' +p63817 +tp63818 +a(g63815 +g63817 +S'yet' +p63819 +tp63820 +a(g63817 +g63819 +S'evolved' +p63821 +tp63822 +a(g63819 +g63821 +S'as' +p63823 +tp63824 +a(g63821 +g63823 +S'a' +p63825 +tp63826 +a(g63823 +g63825 +S'specialty.' +p63827 +tp63828 +a(g63825 +g63827 +S'simple' +p63829 +tp63830 +a(g63827 +g63829 +S'rectangular' +p63831 +tp63832 +a(g63829 +g63831 +S'construction' +p63833 +tp63834 +a(g63831 +g63833 +S'was' +p63835 +tp63836 +a(g63833 +g63835 +S'the' +p63837 +tp63838 +a(g63835 +g63837 +S'rule.' +p63839 +tp63840 +a(g63837 +g63839 +S'during' +p63841 +tp63842 +a(g63839 +g63841 +S'the' +p63843 +tp63844 +a(g63841 +g63843 +S'seventeenth' +p63845 +tp63846 +a(g63843 +g63845 +S'century,' +p63847 +tp63848 +a(g63845 +g63847 +S'drawers' +p63849 +tp63850 +a(g63847 +g63849 +S'were' +p63851 +tp63852 +a(g63849 +g63851 +S'added' +p63853 +tp63854 +a(g63851 +g63853 +S'to' +p63855 +tp63856 +a(g63853 +g63855 +S'the' +p63857 +tp63858 +a(g63855 +g63857 +S'box' +p63859 +tp63860 +a(g63857 +g63859 +S'form' +p63861 +tp63862 +a(g63859 +g63861 +S'of' +p63863 +tp63864 +a(g63861 +g63863 +S'early' +p63865 +tp63866 +a(g63863 +g63865 +S'chests,' +p63867 +tp63868 +a(g63865 +g63867 +S'and' +p63869 +tp63870 +a(g63867 +g63869 +S'the' +p63871 +tp63872 +a(g63869 +g63871 +S'form' +p63873 +tp63874 +a(g63871 +g63873 +S'evolved' +p63875 +tp63876 +a(g63873 +g63875 +S'gradually' +p63877 +tp63878 +a(g63875 +g63877 +S'into' +p63879 +tp63880 +a(g63877 +g63879 +S'the' +p63881 +tp63882 +a(g63879 +g63881 +S'chest' +p63883 +tp63884 +a(g63881 +g63883 +S'of' +p63885 +tp63886 +a(g63883 +g63885 +S'drawers' +p63887 +tp63888 +a(g63885 +g63887 +S'as' +p63889 +tp63890 +a(g63887 +g63889 +S'we' +p63891 +tp63892 +a(g63889 +g63891 +S'know' +p63893 +tp63894 +a(g63891 +g63893 +S'it' +p63895 +tp63896 +a(g63893 +g63895 +S'today.' +p63897 +tp63898 +a(g63895 +g63897 +S'chest' +p63899 +tp63900 +a(g63897 +g63899 +S'fronts' +p63901 +tp63902 +a(g63899 +g63901 +S'were' +p63903 +tp63904 +a(g63901 +g63903 +S'often' +p63905 +tp63906 +a(g63903 +g63905 +S'divided' +p63907 +tp63908 +a(g63905 +g63907 +S'into' +p63909 +tp63910 +a(g63907 +g63909 +S'panels' +p63911 +tp63912 +a(g63909 +g63911 +S'that' +p63913 +tp63914 +a(g63911 +g63913 +S'were' +p63915 +tp63916 +a(g63913 +g63915 +S'architectural' +p63917 +tp63918 +a(g63915 +g63917 +S'in' +p63919 +tp63920 +a(g63917 +g63919 +S'character.' +p63921 +tp63922 +a(g63919 +g63921 +S'frequently' +p63923 +tp63924 +a(g63921 +g63923 +S'the' +p63925 +tp63926 +a(g63923 +g63925 +S'panels' +p63927 +tp63928 +a(g63925 +g63927 +S'were' +p63929 +tp63930 +a(g63927 +g63929 +S'carved' +p63931 +tp63932 +a(g63929 +g63931 +S'in' +p63933 +tp63934 +a(g63931 +g63933 +S'shallow' +p63935 +tp63936 +a(g63933 +g63935 +S'foliate' +p63937 +tp63938 +a(g63935 +g63937 +S'designs,' +p63939 +tp63940 +a(g63937 +g63939 +S'as' +p63941 +tp63942 +a(g63939 +g63941 +S'seen' +p63943 +tp63944 +a(g63941 +g63943 +S'on' +p63945 +tp63946 +a(g63943 +g63945 +S'this' +p63947 +tp63948 +a(g63945 +g63947 +S'late' +p63949 +tp63950 +a(g63947 +g63949 +S'seventeenth-century' +p63951 +tp63952 +a(g63949 +g63951 +S'oak' +p63953 +tp63954 +a(g63951 +g63953 +S'chest.' +p63955 +tp63956 +a(g63953 +g63955 +S'in' +p63957 +tp63958 +a(g63955 +g63957 +S'addition' +p63959 +tp63960 +a(g63957 +g63959 +S'to' +p63961 +tp63962 +a(g63959 +g63961 +S'carving' +p63963 +tp63964 +a(g63961 +g63963 +S'them,' +p63965 +tp63966 +a(g63963 +g63965 +S'the' +p63967 +tp63968 +a(g63965 +g63967 +S'seventeenth-century' +p63969 +tp63970 +a(g63967 +g63969 +S'craftsman' +p63971 +tp63972 +a(g63969 +g63971 +S'embellished' +p63973 +tp63974 +a(g63971 +g63973 +S'his' +p63975 +tp63976 +a(g63973 +g63975 +S'products' +p63977 +tp63978 +a(g63975 +g63977 +S'with' +p63979 +tp63980 +a(g63977 +g63979 +S'turning,' +p63981 +tp63982 +a(g63979 +g63981 +S'that' +p63983 +tp63984 +a(g63981 +g63983 +S'is,' +p63985 +tp63986 +a(g63983 +g63985 +S'with' +p63987 +tp63988 +a(g63985 +g63987 +S'bulbous' +p63989 +tp63990 +a(g63987 +g63989 +S'shapes' +p63991 +tp63992 +a(g63989 +g63991 +S'turned' +p63993 +tp63994 +a(g63991 +g63993 +S'on' +p63995 +tp63996 +a(g63993 +g63995 +S'a' +p63997 +tp63998 +a(g63995 +g63997 +S'lathe.' +p63999 +tp64000 +a(g63997 +g63999 +S'turnings,' +p64001 +tp64002 +a(g63999 +g64001 +S'split' +p64003 +tp64004 +a(g64001 +g64003 +S'in' +p64005 +tp64006 +a(g64003 +g64005 +S'half' +p64007 +tp64008 +a(g64005 +g64007 +S'and' +p64009 +tp64010 +a(g64007 +g64009 +S'painted' +p64011 +tp64012 +a(g64009 +g64011 +S'black,' +p64013 +tp64014 +a(g64011 +g64013 +S'were' +p64015 +tp64016 +a(g64013 +g64015 +S'frequently' +p64017 +tp64018 +a(g64015 +g64017 +S'applied' +p64019 +tp64020 +a(g64017 +g64019 +S'between' +p64021 +tp64022 +a(g64019 +g64021 +S'carved' +p64023 +tp64024 +a(g64021 +g64023 +S'panels' +p64025 +tp64026 +a(g64023 +g64025 +S'on' +p64027 +tp64028 +a(g64025 +g64027 +S'chests,' +p64029 +tp64030 +a(g64027 +g64029 +S'as' +p64031 +tp64032 +a(g64029 +g64031 +S'has' +p64033 +tp64034 +a(g64031 +g64033 +S'been' +p64035 +tp64036 +a(g64033 +g64035 +S'done' +p64037 +tp64038 +a(g64035 +g64037 +S'here.' +p64039 +tp64040 +a(g64037 +g64039 +S'made' +p64041 +tp64042 +a(g64039 +g64041 +S'in' +p64043 +tp64044 +a(g64041 +g64043 +S'the' +p64045 +tp64046 +a(g64043 +g64045 +S'late' +p64047 +tp64048 +a(g64045 +g64047 +S'nineteenth' +p64049 +tp64050 +a(g64047 +g64049 +S'century,' +p64051 +tp64052 +a(g64049 +g64051 +S'this' +p64053 +tp64054 +a(g64051 +g64053 +S'weather' +p64055 +tp64056 +a(g64053 +g64055 +S'vane' +p64057 +tp64058 +a(g64055 +g64057 +S'represents' +p64059 +tp64060 +a(g64057 +g64059 +S'a' +p64061 +tp64062 +a(g64059 +g64061 +S'contemporaneous' +p64063 +tp64064 +a(g64061 +g64063 +S'fire' +p64065 +tp64066 +a(g64063 +g64065 +S'engine.' +p64067 +tp64068 +a(g64065 +g64067 +S'by' +p64069 +tp64070 +a(g64067 +g64069 +S'combining' +p64071 +tp64072 +a(g64069 +g64071 +S'brass,' +p64073 +tp64074 +a(g64071 +g64073 +S'copper,' +p64075 +tp64076 +a(g64073 +g64075 +S'zinc,' +p64077 +tp64078 +a(g64075 +g64077 +S'and' +p64079 +tp64080 +a(g64077 +g64079 +S'iron,' +p64081 +tp64082 +a(g64079 +g64081 +S'the' +p64083 +tp64084 +a(g64081 +g64083 +S'craftsman' +p64085 +tp64086 +a(g64083 +g64085 +S'created' +p64087 +tp64088 +a(g64085 +g64087 +S'a' +p64089 +tp64090 +a(g64087 +g64089 +S'functional' +p64091 +tp64092 +a(g64089 +g64091 +S'yet' +p64093 +tp64094 +a(g64091 +g64093 +S'decorative' +p64095 +tp64096 +a(g64093 +g64095 +S'object.' +p64097 +tp64098 +a(g64095 +g64097 +S'the' +p64099 +tp64100 +a(g64097 +g64099 +S'boiler' +p64101 +tp64102 +a(g64099 +g64101 +S'of' +p64103 +tp64104 +a(g64101 +g64103 +S'the' +p64105 +tp64106 +a(g64103 +g64105 +S'engine' +p64107 +tp64108 +a(g64105 +g64107 +S'is' +p64109 +tp64110 +a(g64107 +g64109 +S'made' +p64111 +tp64112 +a(g64109 +g64111 +S'of' +p64113 +tp64114 +a(g64111 +g64113 +S'brass,' +p64115 +tp64116 +a(g64113 +g64115 +S'while' +p64117 +tp64118 +a(g64115 +g64117 +S'the' +p64119 +tp64120 +a(g64117 +g64119 +S'other' +p64121 +tp64122 +a(g64119 +g64121 +S'engine' +p64123 +tp64124 +a(g64121 +g64123 +S'parts,' +p64125 +tp64126 +a(g64123 +g64125 +S'the' +p64127 +tp64128 +a(g64125 +g64127 +S"men's" +p64129 +tp64130 +a(g64127 +g64129 +S'bodies,' +p64131 +tp64132 +a(g64129 +g64131 +S'and' +p64133 +tp64134 +a(g64131 +g64133 +S'the' +p64135 +tp64136 +a(g64133 +g64135 +S'horses' +p64137 +tp64138 +a(g64135 +g64137 +S'are' +p64139 +tp64140 +a(g64137 +g64139 +S'copper.' +p64141 +tp64142 +a(g64139 +g64141 +S'the' +p64143 +tp64144 +a(g64141 +g64143 +S'heads' +p64145 +tp64146 +a(g64143 +g64145 +S'of' +p64147 +tp64148 +a(g64145 +g64147 +S'the' +p64149 +tp64150 +a(g64147 +g64149 +S'firemen' +p64151 +tp64152 +a(g64149 +g64151 +S'are' +p64153 +tp64154 +a(g64151 +g64153 +S'zinc;' +p64155 +tp64156 +a(g64153 +g64155 +S'the' +p64157 +tp64158 +a(g64155 +g64157 +S'supporting' +p64159 +tp64160 +a(g64157 +g64159 +S'bars' +p64161 +tp64162 +a(g64159 +g64161 +S'are' +p64163 +tp64164 +a(g64161 +g64163 +S'iron' +p64165 +tp64166 +a(g64163 +g64165 +S'painted' +p64167 +tp64168 +a(g64165 +g64167 +S'black.' +p64169 +tp64170 +a(g64167 +g64169 +S'this' +p64171 +tp64172 +a(g64169 +g64171 +S'weather' +p64173 +tp64174 +a(g64171 +g64173 +S'vane' +p64175 +tp64176 +a(g64173 +g64175 +S'may' +p64177 +tp64178 +a(g64175 +g64177 +S'have' +p64179 +tp64180 +a(g64177 +g64179 +S'topped' +p64181 +tp64182 +a(g64179 +g64181 +S'a' +p64183 +tp64184 +a(g64181 +g64183 +S'firehouse.' +p64185 +tp64186 +a(g64183 +g64185 +S'compared' +p64187 +tp64188 +a(g64185 +g64187 +S'with' +p64189 +tp64190 +a(g64187 +g64189 +S'the' +p64191 +tp64192 +a(g64189 +g64191 +S'simple,' +p64193 +tp64194 +a(g64191 +g64193 +S'stylized' +p64195 +tp64196 +a(g64193 +g64195 +S'forms' +p64197 +tp64198 +a(g64195 +g64197 +S'common' +p64199 +tp64200 +a(g64197 +g64199 +S'in' +p64201 +tp64202 +a(g64199 +g64201 +S'the' +p64203 +tp64204 +a(g64201 +g64203 +S'folk' +p64205 +tp64206 +a(g64203 +g64205 +S'art' +p64207 +tp64208 +a(g64205 +g64207 +S'tradition,' +p64209 +tp64210 +a(g64207 +g64209 +S'the' +p64211 +tp64212 +a(g64209 +g64211 +S'attention' +p64213 +tp64214 +a(g64211 +g64213 +S'to' +p64215 +tp64216 +a(g64213 +g64215 +S'detail' +p64217 +tp64218 +a(g64215 +g64217 +S'marks' +p64219 +tp64220 +a(g64217 +g64219 +S'this' +p64221 +tp64222 +a(g64219 +g64221 +S'fire' +p64223 +tp64224 +a(g64221 +g64223 +S'engine' +p64225 +tp64226 +a(g64223 +g64225 +S'as' +p64227 +tp64228 +a(g64225 +g64227 +S'an' +p64229 +tp64230 +a(g64227 +g64229 +S'unusually' +p64231 +tp64232 +a(g64229 +g64231 +S'fine' +p64233 +tp64234 +a(g64231 +g64233 +S'piece.' +p64235 +tp64236 +a(g64233 +g64235 +S'the' +p64237 +tp64238 +a(g64235 +g64237 +S'craftsman' +p64239 +tp64240 +a(g64237 +g64239 +S'who' +p64241 +tp64242 +a(g64239 +g64241 +S'executed' +p64243 +tp64244 +a(g64241 +g64243 +S'such' +p64245 +tp64246 +a(g64243 +g64245 +S'a' +p64247 +tp64248 +a(g64245 +g64247 +S'work' +p64249 +tp64250 +a(g64247 +g64249 +S'had' +p64251 +tp64252 +a(g64249 +g64251 +S'to' +p64253 +tp64254 +a(g64251 +g64253 +S'be' +p64255 +tp64256 +a(g64253 +g64255 +S'skilled' +p64257 +tp64258 +a(g64255 +g64257 +S'in' +p64259 +tp64260 +a(g64257 +g64259 +S'shaping' +p64261 +tp64262 +a(g64259 +g64261 +S'the' +p64263 +tp64264 +a(g64261 +g64263 +S'metal' +p64265 +tp64266 +a(g64263 +g64265 +S'as' +p64267 +tp64268 +a(g64265 +g64267 +S'well' +p64269 +tp64270 +a(g64267 +g64269 +S'as' +p64271 +tp64272 +a(g64269 +g64271 +S'sensitive' +p64273 +tp64274 +a(g64271 +g64273 +S'to' +p64275 +tp64276 +a(g64273 +g64275 +S'the' +p64277 +tp64278 +a(g64275 +g64277 +S'elements' +p64279 +tp64280 +a(g64277 +g64279 +S'of' +p64281 +tp64282 +a(g64279 +g64281 +S'design.' +p64283 +tp64284 +a(g64281 +g64283 +S'wax' +p64285 +tp64286 +a(g64283 +g64285 +S'dolls' +p64287 +tp64288 +a(g64285 +g64287 +S'have' +p64289 +tp64290 +a(g64287 +g64289 +S'been' +p64291 +tp64292 +a(g64289 +g64291 +S'made' +p64293 +tp64294 +a(g64291 +g64293 +S'from' +p64295 +tp64296 +a(g64293 +g64295 +S'very' +p64297 +tp64298 +a(g64295 +g64297 +S'early' +p64299 +tp64300 +a(g64297 +g64299 +S'times' +p64301 +tp64302 +a(g64299 +g64301 +S'—' +p64303 +tp64304 +a(g64301 +g64303 +S'by' +p64305 +tp64306 +a(g64303 +g64305 +S'the' +p64307 +tp64308 +a(g64305 +g64307 +S'ancient' +p64309 +tp64310 +a(g64307 +g64309 +S'romans,' +p64311 +tp64312 +a(g64309 +g64311 +S'for' +p64313 +tp64314 +a(g64311 +g64313 +S'example,' +p64315 +tp64316 +a(g64313 +g64315 +S'on' +p64317 +tp64318 +a(g64315 +g64317 +S'through' +p64319 +tp64320 +a(g64317 +g64319 +S'the' +p64321 +tp64322 +a(g64319 +g64321 +S'first' +p64323 +tp64324 +a(g64321 +g64323 +S'quarter' +p64325 +tp64326 +a(g64323 +g64325 +S'of' +p64327 +tp64328 +a(g64325 +g64327 +S'the' +p64329 +tp64330 +a(g64327 +g64329 +S'twentieth' +p64331 +tp64332 +a(g64329 +g64331 +S'century.' +p64333 +tp64334 +a(g64331 +g64333 +S'this' +p64335 +tp64336 +a(g64333 +g64335 +S'wax' +p64337 +tp64338 +a(g64335 +g64337 +S'doll' +p64339 +tp64340 +a(g64337 +g64339 +S'was' +p64341 +tp64342 +a(g64339 +g64341 +S'probably' +p64343 +tp64344 +a(g64341 +g64343 +S'made' +p64345 +tp64346 +a(g64343 +g64345 +S'in' +p64347 +tp64348 +a(g64345 +g64347 +S'england,' +p64349 +tp64350 +a(g64347 +g64349 +S'which' +p64351 +tp64352 +a(g64349 +g64351 +S'was' +p64353 +tp64354 +a(g64351 +g64353 +S'noted' +p64355 +tp64356 +a(g64353 +g64355 +S'for' +p64357 +tp64358 +a(g64355 +g64357 +S'its' +p64359 +tp64360 +a(g64357 +g64359 +S'wax' +p64361 +tp64362 +a(g64359 +g64361 +S'dolls' +p64363 +tp64364 +a(g64361 +g64363 +S'in' +p64365 +tp64366 +a(g64363 +g64365 +S'the' +p64367 +tp64368 +a(g64365 +g64367 +S'last' +p64369 +tp64370 +a(g64367 +g64369 +S'half' +p64371 +tp64372 +a(g64369 +g64371 +S'of' +p64373 +tp64374 +a(g64371 +g64373 +S'the' +p64375 +tp64376 +a(g64373 +g64375 +S'nineteenth' +p64377 +tp64378 +a(g64375 +g64377 +S'century.' +p64379 +tp64380 +a(g64377 +g64379 +S'this' +p64381 +tp64382 +a(g64379 +g64381 +S'doll' +p64383 +tp64384 +a(g64381 +g64383 +S'dates' +p64385 +tp64386 +a(g64383 +g64385 +S'from' +p64387 +tp64388 +a(g64385 +g64387 +S'the' +p64389 +tp64390 +a(g64387 +g64389 +S'1870s,' +p64391 +tp64392 +a(g64389 +g64391 +S'and' +p64393 +tp64394 +a(g64391 +g64393 +S'her' +p64395 +tp64396 +a(g64393 +g64395 +S'elaborate' +p64397 +tp64398 +a(g64395 +g64397 +S'costume' +p64399 +tp64400 +a(g64397 +g64399 +S'is' +p64401 +tp64402 +a(g64399 +g64401 +S'typical' +p64403 +tp64404 +a(g64401 +g64403 +S'of' +p64405 +tp64406 +a(g64403 +g64405 +S'the' +p64407 +tp64408 +a(g64405 +g64407 +S'period.' +p64409 +tp64410 +a(g64407 +g64409 +S'the' +p64411 +tp64412 +a(g64409 +g64411 +S'dress' +p64413 +tp64414 +a(g64411 +g64413 +S'is' +p64415 +tp64416 +a(g64413 +g64415 +S'of' +p64417 +tp64418 +a(g64415 +g64417 +S'blue' +p64419 +tp64420 +a(g64417 +g64419 +S'taffeta' +p64421 +tp64422 +a(g64419 +g64421 +S'trimmed' +p64423 +tp64424 +a(g64421 +g64423 +S'with' +p64425 +tp64426 +a(g64423 +g64425 +S'white' +p64427 +tp64428 +a(g64425 +g64427 +S'organdy' +p64429 +tp64430 +a(g64427 +g64429 +S'lace.' +p64431 +tp64432 +a(g64429 +g64431 +S'the' +p64433 +tp64434 +a(g64431 +g64433 +S"doll's" +p64435 +tp64436 +a(g64433 +g64435 +S'childlike' +p64437 +tp64438 +a(g64435 +g64437 +S'face' +p64439 +tp64440 +a(g64437 +g64439 +S'and' +p64441 +tp64442 +a(g64439 +g64441 +S'hairstyle' +p64443 +tp64444 +a(g64441 +g64443 +S'might' +p64445 +tp64446 +a(g64443 +g64445 +S'seem' +p64447 +tp64448 +a(g64445 +g64447 +S'better' +p64449 +tp64450 +a(g64447 +g64449 +S'suited' +p64451 +tp64452 +a(g64449 +g64451 +S'to' +p64453 +tp64454 +a(g64451 +g64453 +S'a' +p64455 +tp64456 +a(g64453 +g64455 +S"child's" +p64457 +tp64458 +a(g64455 +g64457 +S'body,' +p64459 +tp64460 +a(g64457 +g64459 +S'but' +p64461 +tp64462 +a(g64459 +g64461 +S'the' +p64463 +tp64464 +a(g64461 +g64463 +S'true' +p64465 +tp64466 +a(g64463 +g64465 +S'child' +p64467 +tp64468 +a(g64465 +g64467 +S'doll' +p64469 +tp64470 +a(g64467 +g64469 +S'was' +p64471 +tp64472 +a(g64469 +g64471 +S'not' +p64473 +tp64474 +a(g64471 +g64473 +S'yet' +p64475 +tp64476 +a(g64473 +g64475 +S'common.' +p64477 +tp64478 +a(g64475 +g64477 +S'not' +p64479 +tp64480 +a(g64477 +g64479 +S'until' +p64481 +tp64482 +a(g64479 +g64481 +S'the' +p64483 +tp64484 +a(g64481 +g64483 +S'1880s' +p64485 +tp64486 +a(g64483 +g64485 +S'was' +p64487 +tp64488 +a(g64485 +g64487 +S'there' +p64489 +tp64490 +a(g64487 +g64489 +S'a' +p64491 +tp64492 +a(g64489 +g64491 +S'change' +p64493 +tp64494 +a(g64491 +g64493 +S'from' +p64495 +tp64496 +a(g64493 +g64495 +S'predominantly' +p64497 +tp64498 +a(g64495 +g64497 +S'adult' +p64499 +tp64500 +a(g64497 +g64499 +S'dolls' +p64501 +tp64502 +a(g64499 +g64501 +S'to' +p64503 +tp64504 +a(g64501 +g64503 +S'dolls' +p64505 +tp64506 +a(g64503 +g64505 +S'representing' +p64507 +tp64508 +a(g64505 +g64507 +S'children' +p64509 +tp64510 +a(g64507 +g64509 +S'and' +p64511 +tp64512 +a(g64509 +g64511 +S'babies.' +p64513 +tp64514 +a(g64511 +g64513 +S'many' +p64515 +tp64516 +a(g64513 +g64515 +S'collectors' +p64517 +tp64518 +a(g64515 +g64517 +S'still' +p64519 +tp64520 +a(g64517 +g64519 +S'prefer' +p64521 +tp64522 +a(g64519 +g64521 +S'dolls' +p64523 +tp64524 +a(g64521 +g64523 +S'with' +p64525 +tp64526 +a(g64523 +g64525 +S'features' +p64527 +tp64528 +a(g64525 +g64527 +S'of' +p64529 +tp64530 +a(g64527 +g64529 +S'a' +p64531 +tp64532 +a(g64529 +g64531 +S'child' +p64533 +tp64534 +a(g64531 +g64533 +S'but' +p64535 +tp64536 +a(g64533 +g64535 +S'dressed' +p64537 +tp64538 +a(g64535 +g64537 +S'as' +p64539 +tp64540 +a(g64537 +g64539 +S'an' +p64541 +tp64542 +a(g64539 +g64541 +S'adult.' +p64543 +tp64544 +a(g64541 +g64543 +S'miniature' +p64545 +tp64546 +a(g64543 +g64545 +S'rooms' +p64547 +tp64548 +a(g64545 +g64547 +S'are' +p64549 +tp64550 +a(g64547 +g64549 +S'among' +p64551 +tp64552 +a(g64549 +g64551 +S'the' +p64553 +tp64554 +a(g64551 +g64553 +S'choicest' +p64555 +tp64556 +a(g64553 +g64555 +S'items' +p64557 +tp64558 +a(g64555 +g64557 +S'in' +p64559 +tp64560 +a(g64557 +g64559 +S'the' +p64561 +tp64562 +a(g64559 +g64561 +S'eyes' +p64563 +tp64564 +a(g64561 +g64563 +S'of' +p64565 +tp64566 +a(g64563 +g64565 +S'collectors.' +p64567 +tp64568 +a(g64565 +g64567 +S'here' +p64569 +tp64570 +a(g64567 +g64569 +S'is' +p64571 +tp64572 +a(g64569 +g64571 +S'a' +p64573 +tp64574 +a(g64571 +g64573 +S'kitchen,' +p64575 +tp64576 +a(g64573 +g64575 +S'only' +p64577 +tp64578 +a(g64575 +g64577 +S'ten' +p64579 +tp64580 +a(g64577 +g64579 +S'inches' +p64581 +tp64582 +a(g64579 +g64581 +S'high,' +p64583 +tp64584 +a(g64581 +g64583 +S'made' +p64585 +tp64586 +a(g64583 +g64585 +S'of' +p64587 +tp64588 +a(g64585 +g64587 +S'tinned' +p64589 +tp64590 +a(g64587 +g64589 +S'sheet' +p64591 +tp64592 +a(g64589 +g64591 +S'iron.' +p64593 +tp64594 +a(g64591 +g64593 +S'one' +p64595 +tp64596 +a(g64593 +g64595 +S'wall' +p64597 +tp64598 +a(g64595 +g64597 +S'has' +p64599 +tp64600 +a(g64597 +g64599 +S'been' +p64601 +tp64602 +a(g64599 +g64601 +S'entirely' +p64603 +tp64604 +a(g64601 +g64603 +S'omitted,' +p64605 +tp64606 +a(g64603 +g64605 +S'as' +p64607 +tp64608 +a(g64605 +g64607 +S'in' +p64609 +tp64610 +a(g64607 +g64609 +S'a' +p64611 +tp64612 +a(g64609 +g64611 +S"doll's" +p64613 +tp64614 +a(g64611 +g64613 +S'house,' +p64615 +tp64616 +a(g64613 +g64615 +S'to' +p64617 +tp64618 +a(g64615 +g64617 +S'allow' +p64619 +tp64620 +a(g64617 +g64619 +S'a' +p64621 +tp64622 +a(g64619 +g64621 +S'complete' +p64623 +tp64624 +a(g64621 +g64623 +S'view' +p64625 +tp64626 +a(g64623 +g64625 +S'of' +p64627 +tp64628 +a(g64625 +g64627 +S'the' +p64629 +tp64630 +a(g64627 +g64629 +S'interior.' +p64631 +tp64632 +a(g64629 +g64631 +S'a' +p64633 +tp64634 +a(g64631 +g64633 +S'red-painted' +p64635 +tp64636 +a(g64633 +g64635 +S'stove' +p64637 +tp64638 +a(g64635 +g64637 +S'and' +p64639 +tp64640 +a(g64637 +g64639 +S'hood' +p64641 +tp64642 +a(g64639 +g64641 +S'are' +p64643 +tp64644 +a(g64641 +g64643 +S'on' +p64645 +tp64646 +a(g64643 +g64645 +S'the' +p64647 +tp64648 +a(g64645 +g64647 +S'back' +p64649 +tp64650 +a(g64647 +g64649 +S'wall,' +p64651 +tp64652 +a(g64649 +g64651 +S'and' +p64653 +tp64654 +a(g64651 +g64653 +S'a' +p64655 +tp64656 +a(g64653 +g64655 +S'working' +p64657 +tp64658 +a(g64655 +g64657 +S'pump' +p64659 +tp64660 +a(g64657 +g64659 +S'is' +p64661 +tp64662 +a(g64659 +g64661 +S'on' +p64663 +tp64664 +a(g64661 +g64663 +S'the' +p64665 +tp64666 +a(g64663 +g64665 +S'side' +p64667 +tp64668 +a(g64665 +g64667 +S'wall.' +p64669 +tp64670 +a(g64667 +g64669 +S'some' +p64671 +tp64672 +a(g64669 +g64671 +S'kitchen' +p64673 +tp64674 +a(g64671 +g64673 +S'utensils' +p64675 +tp64676 +a(g64673 +g64675 +S'are' +p64677 +tp64678 +a(g64675 +g64677 +S'on' +p64679 +tp64680 +a(g64677 +g64679 +S'the' +p64681 +tp64682 +a(g64679 +g64681 +S'stove' +p64683 +tp64684 +a(g64681 +g64683 +S'and' +p64685 +tp64686 +a(g64683 +g64685 +S'floor;' +p64687 +tp64688 +a(g64685 +g64687 +S'others' +p64689 +tp64690 +a(g64687 +g64689 +S'hang' +p64691 +tp64692 +a(g64689 +g64691 +S'on' +p64693 +tp64694 +a(g64691 +g64693 +S'the' +p64695 +tp64696 +a(g64693 +g64695 +S'three' +p64697 +tp64698 +a(g64695 +g64697 +S'walls' +p64699 +tp64700 +a(g64697 +g64699 +S'from' +p64701 +tp64702 +a(g64699 +g64701 +S'hooks' +p64703 +tp64704 +a(g64701 +g64703 +S'or' +p64705 +tp64706 +a(g64703 +g64705 +S'are' +p64707 +tp64708 +a(g64705 +g64707 +S'placed' +p64709 +tp64710 +a(g64707 +g64709 +S'on' +p64711 +tp64712 +a(g64709 +g64711 +S'racks.' +p64713 +tp64714 +a(g64711 +g64713 +S'this' +p64715 +tp64716 +a(g64713 +g64715 +S'three-part' +p64717 +tp64718 +a(g64715 +g64717 +S'altarpiece' +p64719 +tp64720 +a(g64717 +g64719 +S'or' +p64721 +tp64722 +a(g64719 +g64721 +S'triptych' +p64723 +tp64724 +a(g64721 +g64723 +S'(1937.1.4.a' +p64725 +tp64726 +a(g64723 +g64725 +S'shown' +p64727 +tp64728 +a(g64725 +g64727 +S'here,' +p64729 +tp64730 +a(g64727 +g64729 +S'see' +p64731 +tp64732 +a(g64729 +g64731 +S'also' +p64733 +tp64734 +a(g64731 +g64733 +S'four' +p64735 +tp64736 +a(g64733 +g64735 +S'saints' +p64737 +tp64738 +a(g64735 +g64737 +S'flank' +p64739 +tp64740 +a(g64737 +g64739 +S'the' +p64741 +tp64742 +a(g64739 +g64741 +S'throne.' +p64743 +tp64744 +a(g64741 +g64743 +S'at' +p64745 +tp64746 +a(g64743 +g64745 +S'the' +p64747 +tp64748 +a(g64745 +g64747 +S'far' +p64749 +tp64750 +a(g64747 +g64749 +S'left,' +p64751 +tp64752 +a(g64749 +g64751 +S'holding' +p64753 +tp64754 +a(g64751 +g64753 +S'the' +p64755 +tp64756 +a(g64753 +g64755 +S'cross' +p64757 +tp64758 +a(g64755 +g64757 +S'upon' +p64759 +tp64760 +a(g64757 +g64759 +S'which' +p64761 +tp64762 +a(g64759 +g64761 +S'he' +p64763 +tp64764 +a(g64761 +g64763 +S'was' +p64765 +tp64766 +a(g64763 +g64765 +S'crucified,' +p64767 +tp64768 +a(g64765 +g64767 +S'is' +p64769 +tp64770 +a(g64767 +g64769 +S'andrew' +p64771 +tp64772 +a(g64769 +g64771 +S'the' +p64773 +tp64774 +a(g64771 +g64773 +S'apostle,' +p64775 +tp64776 +a(g64773 +g64775 +S'one' +p64777 +tp64778 +a(g64775 +g64777 +S'of' +p64779 +tp64780 +a(g64777 +g64779 +S'christ’s' +p64781 +tp64782 +a(g64779 +g64781 +S'first' +p64783 +tp64784 +a(g64781 +g64783 +S'disciples.' +p64785 +tp64786 +a(g64783 +g64785 +S'on' +p64787 +tp64788 +a(g64785 +g64787 +S'the' +p64789 +tp64790 +a(g64787 +g64789 +S'far' +p64791 +tp64792 +a(g64789 +g64791 +S'right' +p64793 +tp64794 +a(g64791 +g64793 +S'is' +p64795 +tp64796 +a(g64793 +g64795 +S'catherine' +p64797 +tp64798 +a(g64795 +g64797 +S'of' +p64799 +tp64800 +a(g64797 +g64799 +S'alexandria.' +p64801 +tp64802 +a(g64799 +g64801 +S'a' +p64803 +tp64804 +a(g64801 +g64803 +S'princess' +p64805 +tp64806 +a(g64803 +g64805 +S'and' +p64807 +tp64808 +a(g64805 +g64807 +S'scholar,' +p64809 +tp64810 +a(g64807 +g64809 +S'she' +p64811 +tp64812 +a(g64809 +g64811 +S'wears' +p64813 +tp64814 +a(g64811 +g64813 +S'a' +p64815 +tp64816 +a(g64813 +g64815 +S'crown' +p64817 +tp64818 +a(g64815 +g64817 +S'and' +p64819 +tp64820 +a(g64817 +g64819 +S'carries' +p64821 +tp64822 +a(g64819 +g64821 +S'a' +p64823 +tp64824 +a(g64821 +g64823 +S'book.' +p64825 +tp64826 +a(g64823 +g64825 +S'she' +p64827 +tp64828 +a(g64825 +g64827 +S'stands' +p64829 +tp64830 +a(g64827 +g64829 +S'upon' +p64831 +tp64832 +a(g64829 +g64831 +S'a' +p64833 +tp64834 +a(g64831 +g64833 +S'broken' +p64835 +tp64836 +a(g64833 +g64835 +S'wheel' +p64837 +tp64838 +a(g64835 +g64837 +S'with' +p64839 +tp64840 +a(g64837 +g64839 +S'spikes,' +p64841 +tp64842 +a(g64839 +g64841 +S'in' +p64843 +tp64844 +a(g64841 +g64843 +S'reference' +p64845 +tp64846 +a(g64843 +g64845 +S'to' +p64847 +tp64848 +a(g64845 +g64847 +S'a' +p64849 +tp64850 +a(g64847 +g64849 +S'torture' +p64851 +tp64852 +a(g64849 +g64851 +S'from' +p64853 +tp64854 +a(g64851 +g64853 +S'which' +p64855 +tp64856 +a(g64853 +g64855 +S'she' +p64857 +tp64858 +a(g64855 +g64857 +S'was' +p64859 +tp64860 +a(g64857 +g64859 +S'miraculously' +p64861 +tp64862 +a(g64859 +g64861 +S'rescued,' +p64863 +tp64864 +a(g64861 +g64863 +S'and' +p64865 +tp64866 +a(g64863 +g64865 +S'holds' +p64867 +tp64868 +a(g64865 +g64867 +S'a' +p64869 +tp64870 +a(g64867 +g64869 +S'palm' +p64871 +tp64872 +a(g64869 +g64871 +S'frond' +p64873 +tp64874 +a(g64871 +g64873 +S'to' +p64875 +tp64876 +a(g64873 +g64875 +S'signify' +p64877 +tp64878 +a(g64875 +g64877 +S'her' +p64879 +tp64880 +a(g64877 +g64879 +S'triumph' +p64881 +tp64882 +a(g64879 +g64881 +S'over' +p64883 +tp64884 +a(g64881 +g64883 +S'death' +p64885 +tp64886 +a(g64883 +g64885 +S'as' +p64887 +tp64888 +a(g64885 +g64887 +S'a' +p64889 +tp64890 +a(g64887 +g64889 +S'martyr.' +p64891 +tp64892 +a(g64889 +g64891 +S'saint' +p64893 +tp64894 +a(g64891 +g64893 +S'benedict,' +p64895 +tp64896 +a(g64893 +g64895 +S'a' +p64897 +tp64898 +a(g64895 +g64897 +S'sixth-century' +p64899 +tp64900 +a(g64897 +g64899 +S'founder' +p64901 +tp64902 +a(g64899 +g64901 +S'of' +p64903 +tp64904 +a(g64901 +g64903 +S'monasticism,' +p64905 +tp64906 +a(g64903 +g64905 +S'displays' +p64907 +tp64908 +a(g64905 +g64907 +S'a' +p64909 +tp64910 +a(g64907 +g64909 +S'text' +p64911 +tp64912 +a(g64909 +g64911 +S'with' +p64913 +tp64914 +a(g64911 +g64913 +S'the' +p64915 +tp64916 +a(g64913 +g64915 +S'opening' +p64917 +tp64918 +a(g64915 +g64917 +S'words' +p64919 +tp64920 +a(g64917 +g64919 +S'of' +p64921 +tp64922 +a(g64919 +g64921 +S'the' +p64923 +tp64924 +a(g64921 +g64923 +S'benedictine' +p64925 +tp64926 +a(g64923 +g64925 +S'rule,' +p64927 +tp64928 +a(g64925 +g64927 +S'“harken,' +p64929 +tp64930 +a(g64927 +g64929 +S'o' +p64931 +tp64932 +a(g64929 +g64931 +S'son,' +p64933 +tp64934 +a(g64931 +g64933 +S'to' +p64935 +tp64936 +a(g64933 +g64935 +S'the' +p64937 +tp64938 +a(g64935 +g64937 +S'precepts' +p64939 +tp64940 +a(g64937 +g64939 +S'of' +p64941 +tp64942 +a(g64939 +g64941 +S'the' +p64943 +tp64944 +a(g64941 +g64943 +S'master.”' +p64945 +tp64946 +a(g64943 +g64945 +S'reading' +p64947 +tp64948 +a(g64945 +g64947 +S'from' +p64949 +tp64950 +a(g64947 +g64949 +S'another' +p64951 +tp64952 +a(g64949 +g64951 +S'book' +p64953 +tp64954 +a(g64951 +g64953 +S'is' +p64955 +tp64956 +a(g64953 +g64955 +S'saint' +p64957 +tp64958 +a(g64955 +g64957 +S'bernard,' +p64959 +tp64960 +a(g64957 +g64959 +S'a' +p64961 +tp64962 +a(g64959 +g64961 +S'twelfth-century' +p64963 +tp64964 +a(g64961 +g64963 +S'monastic' +p64965 +tp64966 +a(g64963 +g64965 +S'reformer' +p64967 +tp64968 +a(g64965 +g64967 +S'who' +p64969 +tp64970 +a(g64967 +g64969 +S'helped' +p64971 +tp64972 +a(g64969 +g64971 +S'found' +p64973 +tp64974 +a(g64971 +g64973 +S'the' +p64975 +tp64976 +a(g64973 +g64975 +S'strict,' +p64977 +tp64978 +a(g64975 +g64977 +S'cistercian' +p64979 +tp64980 +a(g64977 +g64979 +S'branch' +p64981 +tp64982 +a(g64979 +g64981 +S'of' +p64983 +tp64984 +a(g64981 +g64983 +S'benedictine' +p64985 +tp64986 +a(g64983 +g64985 +S'monks.' +p64987 +tp64988 +a(g64985 +g64987 +S'the' +p64989 +tp64990 +a(g64987 +g64989 +S'white' +p64991 +tp64992 +a(g64989 +g64991 +S'robes' +p64993 +tp64994 +a(g64991 +g64993 +S'of' +p64995 +tp64996 +a(g64993 +g64995 +S'benedict' +p64997 +tp64998 +a(g64995 +g64997 +S'and' +p64999 +tp65000 +a(g64997 +g64999 +S'bernard' +p65001 +tp65002 +a(g64999 +g65001 +S'suggest' +p65003 +tp65004 +a(g65001 +g65003 +S'the' +p65005 +tp65006 +a(g65003 +g65005 +S'altar' +p65007 +tp65008 +a(g65005 +g65007 +S'was' +p65009 +tp65010 +a(g65007 +g65009 +S'commissioned' +p65011 +tp65012 +a(g65009 +g65011 +S'for' +p65013 +tp65014 +a(g65011 +g65013 +S'a' +p65015 +tp65016 +a(g65013 +g65015 +S'cistercian' +p65017 +tp65018 +a(g65015 +g65017 +S'monastery.' +p65019 +tp65020 +a(g65017 +g65019 +S'the' +p65021 +tp65022 +a(g65019 +g65021 +S'clearly' +p65023 +tp65024 +a(g65021 +g65023 +S'organized' +p65025 +tp65026 +a(g65023 +g65025 +S'color' +p65027 +tp65028 +a(g65025 +g65027 +S'scheme' +p65029 +tp65030 +a(g65027 +g65029 +S'makes' +p65031 +tp65032 +a(g65029 +g65031 +S'it' +p65033 +tp65034 +a(g65031 +g65033 +S'evident' +p65035 +tp65036 +a(g65033 +g65035 +S'why' +p65037 +tp65038 +a(g65035 +g65037 +S'agnolo' +p65039 +tp65040 +a(g65037 +g65039 +S'gaddi,' +p65041 +tp65042 +a(g65039 +g65041 +S'whose' +p65043 +tp65044 +a(g65041 +g65043 +S'father' +p65045 +tp65046 +a(g65043 +g65045 +S'had' +p65047 +tp65048 +a(g65045 +g65047 +S'been' +p65049 +tp65050 +a(g65047 +g65049 +S'a' +p65051 +tp65052 +a(g65049 +g65051 +S'pupil' +p65053 +tp65054 +a(g65051 +g65053 +S'of' +p65055 +tp65056 +a(g65053 +g65055 +S'with' +p65057 +tp65058 +a(g65055 +g65057 +S'the' +p65059 +tp65060 +a(g65057 +g65059 +S'introduction' +p65061 +tp65062 +a(g65059 +g65061 +S'of' +p65063 +tp65064 +a(g65061 +g65063 +S'tin' +p65065 +tp65066 +a(g65063 +g65065 +S'toys' +p65067 +tp65068 +a(g65065 +g65067 +S'about' +p65069 +tp65070 +a(g65067 +g65069 +S'1840,' +p65071 +tp65072 +a(g65069 +g65071 +S'more' +p65073 +tp65074 +a(g65071 +g65073 +S'complicated' +p65075 +tp65076 +a(g65073 +g65075 +S'methods' +p65077 +tp65078 +a(g65075 +g65077 +S'of' +p65079 +tp65080 +a(g65077 +g65079 +S'animation' +p65081 +tp65082 +a(g65079 +g65081 +S'were' +p65083 +tp65084 +a(g65081 +g65083 +S'developed.' +p65085 +tp65086 +a(g65083 +g65085 +S'this' +p65087 +tp65088 +a(g65085 +g65087 +S'brightly' +p65089 +tp65090 +a(g65087 +g65089 +S'painted' +p65091 +tp65092 +a(g65089 +g65091 +S'model' +p65093 +tp65094 +a(g65091 +g65093 +S'of' +p65095 +tp65096 +a(g65093 +g65095 +S'a' +p65097 +tp65098 +a(g65095 +g65097 +S'side-wheeler,' +p65099 +tp65100 +a(g65097 +g65099 +S'made' +p65101 +tp65102 +a(g65099 +g65101 +S'of' +p65103 +tp65104 +a(g65101 +g65103 +S'both' +p65105 +tp65106 +a(g65103 +g65105 +S'wood' +p65107 +tp65108 +a(g65105 +g65107 +S'and' +p65109 +tp65110 +a(g65107 +g65109 +S'tin,' +p65111 +tp65112 +a(g65109 +g65111 +S'has' +p65113 +tp65114 +a(g65111 +g65113 +S'a' +p65115 +tp65116 +a(g65113 +g65115 +S'windup' +p65117 +tp65118 +a(g65115 +g65117 +S'mechanism' +p65119 +tp65120 +a(g65117 +g65119 +S'that' +p65121 +tp65122 +a(g65119 +g65121 +S'turns' +p65123 +tp65124 +a(g65121 +g65123 +S'the' +p65125 +tp65126 +a(g65123 +g65125 +S'paddle' +p65127 +tp65128 +a(g65125 +g65127 +S'wheels.' +p65129 +tp65130 +a(g65127 +g65129 +S'pull' +p65131 +tp65132 +a(g65129 +g65131 +S'toys,' +p65133 +tp65134 +a(g65131 +g65133 +S'set' +p65135 +tp65136 +a(g65133 +g65135 +S'on' +p65137 +tp65138 +a(g65135 +g65137 +S'wheels,' +p65139 +tp65140 +a(g65137 +g65139 +S'provided' +p65141 +tp65142 +a(g65139 +g65141 +S'animation' +p65143 +tp65144 +a(g65141 +g65143 +S'to' +p65145 +tp65146 +a(g65143 +g65145 +S'heighten' +p65147 +tp65148 +a(g65145 +g65147 +S'a' +p65149 +tp65150 +a(g65147 +g65149 +S"child's" +p65151 +tp65152 +a(g65149 +g65151 +S'pleasure.' +p65153 +tp65154 +a(g65151 +g65153 +S'pull' +p65155 +tp65156 +a(g65153 +g65155 +S'toys' +p65157 +tp65158 +a(g65155 +g65157 +S'were' +p65159 +tp65160 +a(g65157 +g65159 +S'frequently' +p65161 +tp65162 +a(g65159 +g65161 +S'made' +p65163 +tp65164 +a(g65161 +g65163 +S'of' +p65165 +tp65166 +a(g65163 +g65165 +S'wood,' +p65167 +tp65168 +a(g65165 +g65167 +S'as' +p65169 +tp65170 +a(g65167 +g65169 +S'in' +p65171 +tp65172 +a(g65169 +g65171 +S'this' +p65173 +tp65174 +a(g65171 +g65173 +S'streetcar' +p65175 +tp65176 +a(g65173 +g65175 +S'model' +p65177 +tp65178 +a(g65175 +g65177 +S'of' +p65179 +tp65180 +a(g65177 +g65179 +S'about' +p65181 +tp65182 +a(g65179 +g65181 +S'1885.' +p65183 +tp65184 +a(g65181 +g65183 +S'inscribed' +p65185 +tp65186 +a(g65183 +g65185 +S'with' +p65187 +tp65188 +a(g65185 +g65187 +S'the' +p65189 +tp65190 +a(g65187 +g65189 +S"owner's" +p65191 +tp65192 +a(g65189 +g65191 +S'name,' +p65193 +tp65194 +a(g65191 +g65193 +S'vera,' +p65195 +tp65196 +a(g65193 +g65195 +S'this' +p65197 +tp65198 +a(g65195 +g65197 +S'handmade' +p65199 +tp65200 +a(g65197 +g65199 +S'toy' +p65201 +tp65202 +a(g65199 +g65201 +S'is' +p65203 +tp65204 +a(g65201 +g65203 +S'of' +p65205 +tp65206 +a(g65203 +g65205 +S'pine.' +p65207 +tp65208 +a(g65205 +g65207 +S'the' +p65209 +tp65210 +a(g65207 +g65209 +S'sides' +p65211 +tp65212 +a(g65209 +g65211 +S'have' +p65213 +tp65214 +a(g65211 +g65213 +S'sawn-out' +p65215 +tp65216 +a(g65213 +g65215 +S'decorations' +p65217 +tp65218 +a(g65215 +g65217 +S'of' +p65219 +tp65220 +a(g65217 +g65219 +S'crescents,' +p65221 +tp65222 +a(g65219 +g65221 +S'and' +p65223 +tp65224 +a(g65221 +g65223 +S'the' +p65225 +tp65226 +a(g65223 +g65225 +S'windows' +p65227 +tp65228 +a(g65225 +g65227 +S'of' +p65229 +tp65230 +a(g65227 +g65229 +S'the' +p65231 +tp65232 +a(g65229 +g65231 +S'ends' +p65233 +tp65234 +a(g65231 +g65233 +S'and' +p65235 +tp65236 +a(g65233 +g65235 +S'cupola' +p65237 +tp65238 +a(g65235 +g65237 +S'are' +p65239 +tp65240 +a(g65237 +g65239 +S'backed' +p65241 +tp65242 +a(g65239 +g65241 +S'with' +p65243 +tp65244 +a(g65241 +g65243 +S'colored' +p65245 +tp65246 +a(g65243 +g65245 +S'glass.' +p65247 +tp65248 +a(g65245 +g65247 +S'there' +p65249 +tp65250 +a(g65247 +g65249 +S'is' +p65251 +tp65252 +a(g65249 +g65251 +S'a' +p65253 +tp65254 +a(g65251 +g65253 +S'hole' +p65255 +tp65256 +a(g65253 +g65255 +S'on' +p65257 +tp65258 +a(g65255 +g65257 +S'top' +p65259 +tp65260 +a(g65257 +g65259 +S'to' +p65261 +tp65262 +a(g65259 +g65261 +S'insert' +p65263 +tp65264 +a(g65261 +g65263 +S'a' +p65265 +tp65266 +a(g65263 +g65265 +S'candle.' +p65267 +tp65268 +a(g65265 +g65267 +S'vehicular' +p65269 +tp65270 +a(g65267 +g65269 +S'toys' +p65271 +tp65272 +a(g65269 +g65271 +S'record' +p65273 +tp65274 +a(g65271 +g65273 +S'the' +p65275 +tp65276 +a(g65273 +g65275 +S'history' +p65277 +tp65278 +a(g65275 +g65277 +S'of' +p65279 +tp65280 +a(g65277 +g65279 +S'transportation' +p65281 +tp65282 +a(g65279 +g65281 +S'in' +p65283 +tp65284 +a(g65281 +g65283 +S'the' +p65285 +tp65286 +a(g65283 +g65285 +S'united' +p65287 +tp65288 +a(g65285 +g65287 +S'states.' +p65289 +tp65290 +a(g65287 +g65289 +S'this' +p65291 +tp65292 +a(g65289 +g65291 +S'is' +p65293 +tp65294 +a(g65291 +g65293 +S'a' +p65295 +tp65296 +a(g65293 +g65295 +S'miniature' +p65297 +tp65298 +a(g65295 +g65297 +S'covered' +p65299 +tp65300 +a(g65297 +g65299 +S'wagon,' +p65301 +tp65302 +a(g65299 +g65301 +S'pulled' +p65303 +tp65304 +a(g65301 +g65303 +S'by' +p65305 +tp65306 +a(g65303 +g65305 +S'oxen.' +p65307 +tp65308 +a(g65305 +g65307 +S'it' +p65309 +tp65310 +a(g65307 +g65309 +S'imitates' +p65311 +tp65312 +a(g65309 +g65311 +S'the' +p65313 +tp65314 +a(g65311 +g65313 +S'primitive' +p65315 +tp65316 +a(g65313 +g65315 +S'oxcarts' +p65317 +tp65318 +a(g65315 +g65317 +S'in' +p65319 +tp65320 +a(g65317 +g65319 +S'general' +p65321 +tp65322 +a(g65319 +g65321 +S'use' +p65323 +tp65324 +a(g65321 +g65323 +S'in' +p65325 +tp65326 +a(g65323 +g65325 +S'the' +p65327 +tp65328 +a(g65325 +g65327 +S'1860s' +p65329 +tp65330 +a(g65327 +g65329 +S'and' +p65331 +tp65332 +a(g65329 +g65331 +S'1870s' +p65333 +tp65334 +a(g65331 +g65333 +S'and' +p65335 +tp65336 +a(g65333 +g65335 +S'was' +p65337 +tp65338 +a(g65335 +g65337 +S'made' +p65339 +tp65340 +a(g65337 +g65339 +S'by' +p65341 +tp65342 +a(g65339 +g65341 +S'an' +p65343 +tp65344 +a(g65341 +g65343 +S'unknown' +p65345 +tp65346 +a(g65343 +g65345 +S'pioneer' +p65347 +tp65348 +a(g65345 +g65347 +S'settler' +p65349 +tp65350 +a(g65347 +g65349 +S'near' +p65351 +tp65352 +a(g65349 +g65351 +S'stoughton,' +p65353 +tp65354 +a(g65351 +g65353 +S'wisconsin.' +p65355 +tp65356 +a(g65353 +g65355 +S'the' +p65357 +tp65358 +a(g65355 +g65357 +S'model' +p65359 +tp65360 +a(g65357 +g65359 +S'is' +p65361 +tp65362 +a(g65359 +g65361 +S'hand-carved' +p65363 +tp65364 +a(g65361 +g65363 +S'of' +p65365 +tp65366 +a(g65363 +g65365 +S'pine;' +p65367 +tp65368 +a(g65365 +g65367 +S'the' +p65369 +tp65370 +a(g65367 +g65369 +S'covering' +p65371 +tp65372 +a(g65369 +g65371 +S'of' +p65373 +tp65374 +a(g65371 +g65373 +S'the' +p65375 +tp65376 +a(g65373 +g65375 +S'wagon' +p65377 +tp65378 +a(g65375 +g65377 +S'is' +p65379 +tp65380 +a(g65377 +g65379 +S'linen.' +p65381 +tp65382 +a(g65379 +g65381 +S"noah's" +p65383 +tp65384 +a(g65381 +g65383 +S'ark' +p65385 +tp65386 +a(g65383 +g65385 +S'with' +p65387 +tp65388 +a(g65385 +g65387 +S'its' +p65389 +tp65390 +a(g65387 +g65389 +S'many' +p65391 +tp65392 +a(g65389 +g65391 +S'animals' +p65393 +tp65394 +a(g65391 +g65393 +S'has' +p65395 +tp65396 +a(g65393 +g65395 +S'been' +p65397 +tp65398 +a(g65395 +g65397 +S'a' +p65399 +tp65400 +a(g65397 +g65399 +S'favorite' +p65401 +tp65402 +a(g65399 +g65401 +S'toy' +p65403 +tp65404 +a(g65401 +g65403 +S'of' +p65405 +tp65406 +a(g65403 +g65405 +S'children' +p65407 +tp65408 +a(g65405 +g65407 +S'for' +p65409 +tp65410 +a(g65407 +g65409 +S'generations.' +p65411 +tp65412 +a(g65409 +g65411 +S'this' +p65413 +tp65414 +a(g65411 +g65413 +S'example' +p65415 +tp65416 +a(g65413 +g65415 +S'was' +p65417 +tp65418 +a(g65415 +g65417 +S'probably' +p65419 +tp65420 +a(g65417 +g65419 +S'made' +p65421 +tp65422 +a(g65419 +g65421 +S'by' +p65423 +tp65424 +a(g65421 +g65423 +S'a' +p65425 +tp65426 +a(g65423 +g65425 +S'pennsylvania' +p65427 +tp65428 +a(g65425 +g65427 +S'german' +p65429 +tp65430 +a(g65427 +g65429 +S'craftsman' +p65431 +tp65432 +a(g65429 +g65431 +S'about' +p65433 +tp65434 +a(g65431 +g65433 +S'1835.' +p65435 +tp65436 +a(g65433 +g65435 +S'the' +p65437 +tp65438 +a(g65435 +g65437 +S'colorful' +p65439 +tp65440 +a(g65437 +g65439 +S'ark' +p65441 +tp65442 +a(g65439 +g65441 +S'consists' +p65443 +tp65444 +a(g65441 +g65443 +S'of' +p65445 +tp65446 +a(g65443 +g65445 +S'pieces' +p65447 +tp65448 +a(g65445 +g65447 +S'of' +p65449 +tp65450 +a(g65447 +g65449 +S'pine' +p65451 +tp65452 +a(g65449 +g65451 +S'glued' +p65453 +tp65454 +a(g65451 +g65453 +S'together.' +p65455 +tp65456 +a(g65453 +g65455 +S'it' +p65457 +tp65458 +a(g65455 +g65457 +S'has' +p65459 +tp65460 +a(g65457 +g65459 +S'one' +p65461 +tp65462 +a(g65459 +g65461 +S'sliding' +p65463 +tp65464 +a(g65461 +g65463 +S'panel' +p65465 +tp65466 +a(g65463 +g65465 +S'to' +p65467 +tp65468 +a(g65465 +g65467 +S'let' +p65469 +tp65470 +a(g65467 +g65469 +S'the' +p65471 +tp65472 +a(g65469 +g65471 +S'animals' +p65473 +tp65474 +a(g65471 +g65473 +S'go' +p65475 +tp65476 +a(g65473 +g65475 +S'inside.' +p65477 +tp65478 +a(g65475 +g65477 +S'fifteen' +p65479 +tp65480 +a(g65477 +g65479 +S'animals' +p65481 +tp65482 +a(g65479 +g65481 +S'are' +p65483 +tp65484 +a(g65481 +g65483 +S'whittled' +p65485 +tp65486 +a(g65483 +g65485 +S'from' +p65487 +tp65488 +a(g65485 +g65487 +S'pine' +p65489 +tp65490 +a(g65487 +g65489 +S'and' +p65491 +tp65492 +a(g65489 +g65491 +S'painted' +p65493 +tp65494 +a(g65491 +g65493 +S'in' +p65495 +tp65496 +a(g65493 +g65495 +S'polychrome' +p65497 +tp65498 +a(g65495 +g65497 +S'oil' +p65499 +tp65500 +a(g65497 +g65499 +S'colors.' +p65501 +tp65502 +a(g65499 +g65501 +S'the' +p65503 +tp65504 +a(g65501 +g65503 +S'ark' +p65505 +tp65506 +a(g65503 +g65505 +S'is' +p65507 +tp65508 +a(g65505 +g65507 +S'decorated' +p65509 +tp65510 +a(g65507 +g65509 +S'with' +p65511 +tp65512 +a(g65509 +g65511 +S'a' +p65513 +tp65514 +a(g65511 +g65513 +S'painted' +p65515 +tp65516 +a(g65513 +g65515 +S'and' +p65517 +tp65518 +a(g65515 +g65517 +S'stenciled' +p65519 +tp65520 +a(g65517 +g65519 +S'design' +p65521 +tp65522 +a(g65519 +g65521 +S'in' +p65523 +tp65524 +a(g65521 +g65523 +S'mat' +p65525 +tp65526 +a(g65523 +g65525 +S'polychrome.' +p65527 +tp65528 +a(g65525 +g65527 +S"noah's" +p65529 +tp65530 +a(g65527 +g65529 +S'ark' +p65531 +tp65532 +a(g65529 +g65531 +S'was' +p65533 +tp65534 +a(g65531 +g65533 +S'known' +p65535 +tp65536 +a(g65533 +g65535 +S'as' +p65537 +tp65538 +a(g65535 +g65537 +S'"sunday' +p65539 +tp65540 +a(g65537 +g65539 +S'toy":' +p65541 +tp65542 +a(g65539 +g65541 +S'children' +p65543 +tp65544 +a(g65541 +g65543 +S'were' +p65545 +tp65546 +a(g65543 +g65545 +S'not' +p65547 +tp65548 +a(g65545 +g65547 +S'allowed' +p65549 +tp65550 +a(g65547 +g65549 +S'to' +p65551 +tp65552 +a(g65549 +g65551 +S'play' +p65553 +tp65554 +a(g65551 +g65553 +S'with' +p65555 +tp65556 +a(g65553 +g65555 +S'most' +p65557 +tp65558 +a(g65555 +g65557 +S'toys' +p65559 +tp65560 +a(g65557 +g65559 +S'on' +p65561 +tp65562 +a(g65559 +g65561 +S'sunday,' +p65563 +tp65564 +a(g65561 +g65563 +S'but' +p65565 +tp65566 +a(g65563 +g65565 +S"noah's" +p65567 +tp65568 +a(g65565 +g65567 +S'ark' +p65569 +tp65570 +a(g65567 +g65569 +S'was' +p65571 +tp65572 +a(g65569 +g65571 +S'an' +p65573 +tp65574 +a(g65571 +g65573 +S'exception' +p65575 +tp65576 +a(g65573 +g65575 +S'because' +p65577 +tp65578 +a(g65575 +g65577 +S'of' +p65579 +tp65580 +a(g65577 +g65579 +S'its' +p65581 +tp65582 +a(g65579 +g65581 +S'biblical' +p65583 +tp65584 +a(g65581 +g65583 +S'subject' +p65585 +tp65586 +a(g65583 +g65585 +S'matter.' +p65587 +tp65588 +a(g65585 +g65587 +S'another' +p65589 +tp65590 +a(g65587 +g65589 +S'pull' +p65591 +tp65592 +a(g65589 +g65591 +S'toy' +p65593 +tp65594 +a(g65591 +g65593 +S'is' +p65595 +tp65596 +a(g65593 +g65595 +S'this' +p65597 +tp65598 +a(g65595 +g65597 +S'dachshund' +p65599 +tp65600 +a(g65597 +g65599 +S'of' +p65601 +tp65602 +a(g65599 +g65601 +S'about' +p65603 +tp65604 +a(g65601 +g65603 +S'1880.' +p65605 +tp65606 +a(g65603 +g65605 +S'loosely' +p65607 +tp65608 +a(g65605 +g65607 +S'jointed,' +p65609 +tp65610 +a(g65607 +g65609 +S'it' +p65611 +tp65612 +a(g65609 +g65611 +S'undoubtedly' +p65613 +tp65614 +a(g65611 +g65613 +S'once' +p65615 +tp65616 +a(g65613 +g65615 +S'had' +p65617 +tp65618 +a(g65615 +g65617 +S'wheels' +p65619 +tp65620 +a(g65617 +g65619 +S'under' +p65621 +tp65622 +a(g65619 +g65621 +S'the' +p65623 +tp65624 +a(g65621 +g65623 +S'legs' +p65625 +tp65626 +a(g65623 +g65625 +S'so' +p65627 +tp65628 +a(g65625 +g65627 +S'that' +p65629 +tp65630 +a(g65627 +g65629 +S'it' +p65631 +tp65632 +a(g65629 +g65631 +S'could' +p65633 +tp65634 +a(g65631 +g65633 +S'move' +p65635 +tp65636 +a(g65633 +g65635 +S'along' +p65637 +tp65638 +a(g65635 +g65637 +S'a' +p65639 +tp65640 +a(g65637 +g65639 +S'flat' +p65641 +tp65642 +a(g65639 +g65641 +S'surface' +p65643 +tp65644 +a(g65641 +g65643 +S'with' +p65645 +tp65646 +a(g65643 +g65645 +S'its' +p65647 +tp65648 +a(g65645 +g65647 +S'body' +p65649 +tp65650 +a(g65647 +g65649 +S'undulating' +p65651 +tp65652 +a(g65649 +g65651 +S'from' +p65653 +tp65654 +a(g65651 +g65653 +S'side' +p65655 +tp65656 +a(g65653 +g65655 +S'to' +p65657 +tp65658 +a(g65655 +g65657 +S'side.' +p65659 +tp65660 +a(g65657 +g65659 +S'this' +p65661 +tp65662 +a(g65659 +g65661 +S'china-headed' +p65663 +tp65664 +a(g65661 +g65663 +S'doll' +p65665 +tp65666 +a(g65663 +g65665 +S'has' +p65667 +tp65668 +a(g65665 +g65667 +S'a' +p65669 +tp65670 +a(g65667 +g65669 +S'particularly' +p65671 +tp65672 +a(g65669 +g65671 +S'lovely' +p65673 +tp65674 +a(g65671 +g65673 +S'costume.' +p65675 +tp65676 +a(g65673 +g65675 +S'the' +p65677 +tp65678 +a(g65675 +g65677 +S'dress' +p65679 +tp65680 +a(g65677 +g65679 +S'is' +p65681 +tp65682 +a(g65679 +g65681 +S'plaid' +p65683 +tp65684 +a(g65681 +g65683 +S'silk' +p65685 +tp65686 +a(g65683 +g65685 +S'taffeta;' +p65687 +tp65688 +a(g65685 +g65687 +S'it' +p65689 +tp65690 +a(g65687 +g65689 +S'is' +p65691 +tp65692 +a(g65689 +g65691 +S'worn' +p65693 +tp65694 +a(g65691 +g65693 +S'over' +p65695 +tp65696 +a(g65693 +g65695 +S'a' +p65697 +tp65698 +a(g65695 +g65697 +S'petticoat' +p65699 +tp65700 +a(g65697 +g65699 +S'of' +p65701 +tp65702 +a(g65699 +g65701 +S'tan' +p65703 +tp65704 +a(g65701 +g65703 +S'alpaca' +p65705 +tp65706 +a(g65703 +g65705 +S'trimmed' +p65707 +tp65708 +a(g65705 +g65707 +S'with' +p65709 +tp65710 +a(g65707 +g65709 +S'blue' +p65711 +tp65712 +a(g65709 +g65711 +S'silk' +p65713 +tp65714 +a(g65711 +g65713 +S'bands.' +p65715 +tp65716 +a(g65713 +g65715 +S'the' +p65717 +tp65718 +a(g65715 +g65717 +S'pantalettes' +p65719 +tp65720 +a(g65717 +g65719 +S'are' +p65721 +tp65722 +a(g65719 +g65721 +S'of' +p65723 +tp65724 +a(g65721 +g65723 +S'cotton' +p65725 +tp65726 +a(g65723 +g65725 +S'with' +p65727 +tp65728 +a(g65725 +g65727 +S'eyelet' +p65729 +tp65730 +a(g65727 +g65729 +S'embroidery.' +p65731 +tp65732 +a(g65729 +g65731 +S'the' +p65733 +tp65734 +a(g65731 +g65733 +S"doll's" +p65735 +tp65736 +a(g65733 +g65735 +S'hairstyle' +p65737 +tp65738 +a(g65735 +g65737 +S'makes' +p65739 +tp65740 +a(g65737 +g65739 +S'her' +p65741 +tp65742 +a(g65739 +g65741 +S'a' +p65743 +tp65744 +a(g65741 +g65743 +S"collector's" +p65745 +tp65746 +a(g65743 +g65745 +S'item;' +p65747 +tp65748 +a(g65745 +g65747 +S'china' +p65749 +tp65750 +a(g65747 +g65749 +S'dolls' +p65751 +tp65752 +a(g65749 +g65751 +S'with' +p65753 +tp65754 +a(g65751 +g65753 +S'a' +p65755 +tp65756 +a(g65753 +g65755 +S'knot' +p65757 +tp65758 +a(g65755 +g65757 +S'on' +p65759 +tp65760 +a(g65757 +g65759 +S'the' +p65761 +tp65762 +a(g65759 +g65761 +S'head' +p65763 +tp65764 +a(g65761 +g65763 +S'are' +p65765 +tp65766 +a(g65763 +g65765 +S'rare.' +p65767 +tp65768 +a(g65765 +g65767 +S'this' +p65769 +tp65770 +a(g65767 +g65769 +S'feature,' +p65771 +tp65772 +a(g65769 +g65771 +S'however,' +p65773 +tp65774 +a(g65771 +g65773 +S'is' +p65775 +tp65776 +a(g65773 +g65775 +S'almost' +p65777 +tp65778 +a(g65775 +g65777 +S'completely' +p65779 +tp65780 +a(g65777 +g65779 +S'hidden' +p65781 +tp65782 +a(g65779 +g65781 +S'by' +p65783 +tp65784 +a(g65781 +g65783 +S'the' +p65785 +tp65786 +a(g65783 +g65785 +S'silk' +p65787 +tp65788 +a(g65785 +g65787 +S'bonnet.' +p65789 +tp65790 +a(g65787 +g65789 +S'this' +p65791 +tp65792 +a(g65789 +g65791 +S'doll' +p65793 +tp65794 +a(g65791 +g65793 +S'has' +p65795 +tp65796 +a(g65793 +g65795 +S'a' +p65797 +tp65798 +a(g65795 +g65797 +S'cloth' +p65799 +tp65800 +a(g65797 +g65799 +S'body' +p65801 +tp65802 +a(g65799 +g65801 +S'and' +p65803 +tp65804 +a(g65801 +g65803 +S'arms' +p65805 +tp65806 +a(g65803 +g65805 +S'and' +p65807 +tp65808 +a(g65805 +g65807 +S'feet' +p65809 +tp65810 +a(g65807 +g65809 +S'of' +p65811 +tp65812 +a(g65809 +g65811 +S'kid.' +p65813 +tp65814 +a(g65811 +g65813 +S'the' +p65815 +tp65816 +a(g65813 +g65815 +S'head' +p65817 +tp65818 +a(g65815 +g65817 +S'is' +p65819 +tp65820 +a(g65817 +g65819 +S'glazed' +p65821 +tp65822 +a(g65819 +g65821 +S'porcelain.' +p65823 +tp65824 +a(g65821 +g65823 +S'china-head' +p65825 +tp65826 +a(g65823 +g65825 +S'dolls' +p65827 +tp65828 +a(g65825 +g65827 +S'were' +p65829 +tp65830 +a(g65827 +g65829 +S'first' +p65831 +tp65832 +a(g65829 +g65831 +S'made' +p65833 +tp65834 +a(g65831 +g65833 +S'in' +p65835 +tp65836 +a(g65833 +g65835 +S'europe' +p65837 +tp65838 +a(g65835 +g65837 +S'around' +p65839 +tp65840 +a(g65837 +g65839 +S'1750' +p65841 +tp65842 +a(g65839 +g65841 +S'but' +p65843 +tp65844 +a(g65841 +g65843 +S'did' +p65845 +tp65846 +a(g65843 +g65845 +S'not' +p65847 +tp65848 +a(g65845 +g65847 +S'become' +p65849 +tp65850 +a(g65847 +g65849 +S'extremely' +p65851 +tp65852 +a(g65849 +g65851 +S'popular' +p65853 +tp65854 +a(g65851 +g65853 +S'until' +p65855 +tp65856 +a(g65853 +g65855 +S'the' +p65857 +tp65858 +a(g65855 +g65857 +S'1840s.' +p65859 +tp65860 +a(g65857 +g65859 +S'this' +p65861 +tp65862 +a(g65859 +g65861 +S'doll' +p65863 +tp65864 +a(g65861 +g65863 +S'dates' +p65865 +tp65866 +a(g65863 +g65865 +S'from' +p65867 +tp65868 +a(g65865 +g65867 +S'1840–1850.' +p65869 +tp65870 +a(g65867 +g65869 +S'often' +p65871 +tp65872 +a(g65869 +g65871 +S'the' +p65873 +tp65874 +a(g65871 +g65873 +S'heads' +p65875 +tp65876 +a(g65873 +g65875 +S'were' +p65877 +tp65878 +a(g65875 +g65877 +S'imported' +p65879 +tp65880 +a(g65877 +g65879 +S'to' +p65881 +tp65882 +a(g65879 +g65881 +S'america' +p65883 +tp65884 +a(g65881 +g65883 +S'and' +p65885 +tp65886 +a(g65883 +g65885 +S'used' +p65887 +tp65888 +a(g65885 +g65887 +S'on' +p65889 +tp65890 +a(g65887 +g65889 +S'american-made' +p65891 +tp65892 +a(g65889 +g65891 +S"dolls'" +p65893 +tp65894 +a(g65891 +g65893 +S'bodies.' +p65895 +tp65896 +a(g65893 +g65895 +S'this' +p65897 +tp65898 +a(g65895 +g65897 +S'is' +p65899 +tp65900 +a(g65897 +g65899 +S'a' +p65901 +tp65902 +a(g65899 +g65901 +S"child's" +p65903 +tp65904 +a(g65901 +g65903 +S'sled' +p65905 +tp65906 +a(g65903 +g65905 +S'made' +p65907 +tp65908 +a(g65905 +g65907 +S'of' +p65909 +tp65910 +a(g65907 +g65909 +S'pine' +p65911 +tp65912 +a(g65909 +g65911 +S'and' +p65913 +tp65914 +a(g65911 +g65913 +S'poplar' +p65915 +tp65916 +a(g65913 +g65915 +S'wood' +p65917 +tp65918 +a(g65915 +g65917 +S'with' +p65919 +tp65920 +a(g65917 +g65919 +S'oak' +p65921 +tp65922 +a(g65919 +g65921 +S'struts.' +p65923 +tp65924 +a(g65921 +g65923 +S'the' +p65925 +tp65926 +a(g65923 +g65925 +S'sled' +p65927 +tp65928 +a(g65925 +g65927 +S'is' +p65929 +tp65930 +a(g65927 +g65929 +S'painted' +p65931 +tp65932 +a(g65929 +g65931 +S'and' +p65933 +tp65934 +a(g65931 +g65933 +S'includes' +p65935 +tp65936 +a(g65933 +g65935 +S'a' +p65937 +tp65938 +a(g65935 +g65937 +S'butterfly' +p65939 +tp65940 +a(g65937 +g65939 +S'motif' +p65941 +tp65942 +a(g65939 +g65941 +S'in' +p65943 +tp65944 +a(g65941 +g65943 +S'white.' +p65945 +tp65946 +a(g65943 +g65945 +S'it' +p65947 +tp65948 +a(g65945 +g65947 +S'must' +p65949 +tp65950 +a(g65947 +g65949 +S'have' +p65951 +tp65952 +a(g65949 +g65951 +S'been' +p65953 +tp65954 +a(g65951 +g65953 +S'made' +p65955 +tp65956 +a(g65953 +g65955 +S'for' +p65957 +tp65958 +a(g65955 +g65957 +S'a' +p65959 +tp65960 +a(g65957 +g65959 +S'girl,' +p65961 +tp65962 +a(g65959 +g65961 +S'since' +p65963 +tp65964 +a(g65961 +g65963 +S'the' +p65965 +tp65966 +a(g65963 +g65965 +S'name' +p65967 +tp65968 +a(g65965 +g65967 +S'"lettie' +p65969 +tp65970 +a(g65967 +g65969 +S'augusta' +p65971 +tp65972 +a(g65969 +g65971 +S'davis"' +p65973 +tp65974 +a(g65971 +g65973 +S'is' +p65975 +tp65976 +a(g65973 +g65975 +S'painted' +p65977 +tp65978 +a(g65975 +g65977 +S'on' +p65979 +tp65980 +a(g65977 +g65979 +S'the' +p65981 +tp65982 +a(g65979 +g65981 +S'top' +p65983 +tp65984 +a(g65981 +g65983 +S'in' +p65985 +tp65986 +a(g65983 +g65985 +S'white' +p65987 +tp65988 +a(g65985 +g65987 +S'letters,' +p65989 +tp65990 +a(g65987 +g65989 +S'but' +p65991 +tp65992 +a(g65989 +g65991 +S'such' +p65993 +tp65994 +a(g65991 +g65993 +S'coasting' +p65995 +tp65996 +a(g65993 +g65995 +S'sleds' +p65997 +tp65998 +a(g65995 +g65997 +S'were' +p65999 +tp66000 +a(g65997 +g65999 +S'usually' +p66001 +tp66002 +a(g65999 +g66001 +S'intended' +p66003 +tp66004 +a(g66001 +g66003 +S'for' +p66005 +tp66006 +a(g66003 +g66005 +S'boys' +p66007 +tp66008 +a(g66005 +g66007 +S'at' +p66009 +tp66010 +a(g66007 +g66009 +S'that' +p66011 +tp66012 +a(g66009 +g66011 +S'time.' +p66013 +tp66014 +a(g66011 +g66013 +S'the' +p66015 +tp66016 +a(g66013 +g66015 +S'sled' +p66017 +tp66018 +a(g66015 +g66017 +S'was' +p66019 +tp66020 +a(g66017 +g66019 +S'made' +p66021 +tp66022 +a(g66019 +g66021 +S'in' +p66023 +tp66024 +a(g66021 +g66023 +S'1874' +p66025 +tp66026 +a(g66023 +g66025 +S'by' +p66027 +tp66028 +a(g66025 +g66027 +S'carpenter' +p66029 +tp66030 +a(g66027 +g66029 +S'davis.' +p66031 +tp66032 +a(g66029 +g66031 +S'the' +p66033 +tp66034 +a(g66031 +g66033 +S'rocking' +p66035 +tp66036 +a(g66033 +g66035 +S'horse,' +p66037 +tp66038 +a(g66035 +g66037 +S'or' +p66039 +tp66040 +a(g66037 +g66039 +S'hobbyhorse,' +p66041 +tp66042 +a(g66039 +g66041 +S'has' +p66043 +tp66044 +a(g66041 +g66043 +S'survived' +p66045 +tp66046 +a(g66043 +g66045 +S'in' +p66047 +tp66048 +a(g66045 +g66047 +S'many' +p66049 +tp66050 +a(g66047 +g66049 +S'versions.' +p66051 +tp66052 +a(g66049 +g66051 +S'this' +p66053 +tp66054 +a(g66051 +g66053 +S'nineteenth-century' +p66055 +tp66056 +a(g66053 +g66055 +S'example' +p66057 +tp66058 +a(g66055 +g66057 +S'is' +p66059 +tp66060 +a(g66057 +g66059 +S'made' +p66061 +tp66062 +a(g66059 +g66061 +S'of' +p66063 +tp66064 +a(g66061 +g66063 +S'pine' +p66065 +tp66066 +a(g66063 +g66065 +S'painted' +p66067 +tp66068 +a(g66065 +g66067 +S'with' +p66069 +tp66070 +a(g66067 +g66069 +S'oil' +p66071 +tp66072 +a(g66069 +g66071 +S'colors.' +p66073 +tp66074 +a(g66071 +g66073 +S'the' +p66075 +tp66076 +a(g66073 +g66075 +S'two' +p66077 +tp66078 +a(g66075 +g66077 +S'parallel' +p66079 +tp66080 +a(g66077 +g66079 +S'rockers' +p66081 +tp66082 +a(g66079 +g66081 +S'are' +p66083 +tp66084 +a(g66081 +g66083 +S'each' +p66085 +tp66086 +a(g66083 +g66085 +S'cut' +p66087 +tp66088 +a(g66085 +g66087 +S'in' +p66089 +tp66090 +a(g66087 +g66089 +S'profile' +p66091 +tp66092 +a(g66089 +g66091 +S'from' +p66093 +tp66094 +a(g66091 +g66093 +S'a' +p66095 +tp66096 +a(g66093 +g66095 +S'single' +p66097 +tp66098 +a(g66095 +g66097 +S'piece' +p66099 +tp66100 +a(g66097 +g66099 +S'of' +p66101 +tp66102 +a(g66099 +g66101 +S'wood.' +p66103 +tp66104 +a(g66101 +g66103 +S'the' +p66105 +tp66106 +a(g66103 +g66105 +S'actual' +p66107 +tp66108 +a(g66105 +g66107 +S'form' +p66109 +tp66110 +a(g66107 +g66109 +S'of' +p66111 +tp66112 +a(g66109 +g66111 +S'the' +p66113 +tp66114 +a(g66111 +g66113 +S'horse' +p66115 +tp66116 +a(g66113 +g66115 +S'is' +p66117 +tp66118 +a(g66115 +g66117 +S'incidental' +p66119 +tp66120 +a(g66117 +g66119 +S'in' +p66121 +tp66122 +a(g66119 +g66121 +S'this' +p66123 +tp66124 +a(g66121 +g66123 +S'case:' +p66125 +tp66126 +a(g66123 +g66125 +S'a' +p66127 +tp66128 +a(g66125 +g66127 +S"horse's" +p66129 +tp66130 +a(g66127 +g66129 +S'head' +p66131 +tp66132 +a(g66129 +g66131 +S'and' +p66133 +tp66134 +a(g66131 +g66133 +S'neck,' +p66135 +tp66136 +a(g66133 +g66135 +S'cut' +p66137 +tp66138 +a(g66135 +g66137 +S'in' +p66139 +tp66140 +a(g66137 +g66139 +S'profile,' +p66141 +tp66142 +a(g66139 +g66141 +S'are' +p66143 +tp66144 +a(g66141 +g66143 +S'attached' +p66145 +tp66146 +a(g66143 +g66145 +S'to' +p66147 +tp66148 +a(g66145 +g66147 +S'the' +p66149 +tp66150 +a(g66147 +g66149 +S'forward' +p66151 +tp66152 +a(g66149 +g66151 +S'end' +p66153 +tp66154 +a(g66151 +g66153 +S'of' +p66155 +tp66156 +a(g66153 +g66155 +S'the' +p66157 +tp66158 +a(g66155 +g66157 +S'rocker.' +p66159 +tp66160 +a(g66157 +g66159 +S'the' +p66161 +tp66162 +a(g66159 +g66161 +S'harness' +p66163 +tp66164 +a(g66161 +g66163 +S'and' +p66165 +tp66166 +a(g66163 +g66165 +S'ears' +p66167 +tp66168 +a(g66165 +g66167 +S'are' +p66169 +tp66170 +a(g66167 +g66169 +S'leather' +p66171 +tp66172 +a(g66169 +g66171 +S'and' +p66173 +tp66174 +a(g66171 +g66173 +S'fastened' +p66175 +tp66176 +a(g66173 +g66175 +S'on' +p66177 +tp66178 +a(g66175 +g66177 +S'with' +p66179 +tp66180 +a(g66177 +g66179 +S'tacks.' +p66181 +tp66182 +a(g66179 +g66181 +S'this' +p66183 +tp66184 +a(g66181 +g66183 +S'rocking' +p66185 +tp66186 +a(g66183 +g66185 +S'horse' +p66187 +tp66188 +a(g66185 +g66187 +S'is' +p66189 +tp66190 +a(g66187 +g66189 +S'essentially' +p66191 +tp66192 +a(g66189 +g66191 +S'a' +p66193 +tp66194 +a(g66191 +g66193 +S'low-back' +p66195 +tp66196 +a(g66193 +g66195 +S'windsor' +p66197 +tp66198 +a(g66195 +g66197 +S'chair' +p66199 +tp66200 +a(g66197 +g66199 +S'with' +p66201 +tp66202 +a(g66199 +g66201 +S'splayed' +p66203 +tp66204 +a(g66201 +g66203 +S'legs' +p66205 +tp66206 +a(g66203 +g66205 +S'fastened' +p66207 +tp66208 +a(g66205 +g66207 +S'to' +p66209 +tp66210 +a(g66207 +g66209 +S'a' +p66211 +tp66212 +a(g66209 +g66211 +S'rocking' +p66213 +tp66214 +a(g66211 +g66213 +S'platform;' +p66215 +tp66216 +a(g66213 +g66215 +S'since' +p66217 +tp66218 +a(g66215 +g66217 +S'the' +p66219 +tp66220 +a(g66217 +g66219 +S'chair' +p66221 +tp66222 +a(g66219 +g66221 +S'is' +p66223 +tp66224 +a(g66221 +g66223 +S'more' +p66225 +tp66226 +a(g66223 +g66225 +S'complex' +p66227 +tp66228 +a(g66225 +g66227 +S'than' +p66229 +tp66230 +a(g66227 +g66229 +S'the' +p66231 +tp66232 +a(g66229 +g66231 +S'horse,' +p66233 +tp66234 +a(g66231 +g66233 +S'it' +p66235 +tp66236 +a(g66233 +g66235 +S'is' +p66237 +tp66238 +a(g66235 +g66237 +S'possible' +p66239 +tp66240 +a(g66237 +g66239 +S'that' +p66241 +tp66242 +a(g66239 +g66241 +S'the' +p66243 +tp66244 +a(g66241 +g66243 +S'craftsman' +p66245 +tp66246 +a(g66243 +g66245 +S'was' +p66247 +tp66248 +a(g66245 +g66247 +S'a' +p66249 +tp66250 +a(g66247 +g66249 +S'chair' +p66251 +tp66252 +a(g66249 +g66251 +S'maker' +p66253 +tp66254 +a(g66251 +g66253 +S'by' +p66255 +tp66256 +a(g66253 +g66255 +S'trade.' +p66257 +tp66258 +a(g66255 +g66257 +S'this' +p66259 +tp66260 +a(g66257 +g66259 +S'sgrafitto' +p66261 +tp66262 +a(g66259 +g66261 +S'jar' +p66263 +tp66264 +a(g66261 +g66263 +S'is' +p66265 +tp66266 +a(g66263 +g66265 +S'dated' +p66267 +tp66268 +a(g66265 +g66267 +S'1830.' +p66269 +tp66270 +a(g66267 +g66269 +S'as' +p66271 +tp66272 +a(g66269 +g66271 +S'pennsylvania' +p66273 +tp66274 +a(g66271 +g66273 +S'german' +p66275 +tp66276 +a(g66273 +g66275 +S'potters' +p66277 +tp66278 +a(g66275 +g66277 +S'became' +p66279 +tp66280 +a(g66277 +g66279 +S'more' +p66281 +tp66282 +a(g66279 +g66281 +S'experienced,' +p66283 +tp66284 +a(g66281 +g66283 +S'techniques' +p66285 +tp66286 +a(g66283 +g66285 +S'and' +p66287 +tp66288 +a(g66285 +g66287 +S'styles' +p66289 +tp66290 +a(g66287 +g66289 +S'became' +p66291 +tp66292 +a(g66289 +g66291 +S'bold' +p66293 +tp66294 +a(g66291 +g66293 +S'and' +p66295 +tp66296 +a(g66293 +g66295 +S'assured.' +p66297 +tp66298 +a(g66295 +g66297 +S'the' +p66299 +tp66300 +a(g66297 +g66299 +S'design' +p66301 +tp66302 +a(g66299 +g66301 +S'of' +p66303 +tp66304 +a(g66301 +g66303 +S'curved' +p66305 +tp66306 +a(g66303 +g66305 +S'tulip' +p66307 +tp66308 +a(g66305 +g66307 +S'leaves' +p66309 +tp66310 +a(g66307 +g66309 +S'and' +p66311 +tp66312 +a(g66309 +g66311 +S'petals,' +p66313 +tp66314 +a(g66311 +g66313 +S'scallops,' +p66315 +tp66316 +a(g66313 +g66315 +S'dots,' +p66317 +tp66318 +a(g66315 +g66317 +S'and' +p66319 +tp66320 +a(g66317 +g66319 +S'borders' +p66321 +tp66322 +a(g66319 +g66321 +S'is' +p66323 +tp66324 +a(g66321 +g66323 +S'highlighted' +p66325 +tp66326 +a(g66323 +g66325 +S'by' +p66327 +tp66328 +a(g66325 +g66327 +S'touches' +p66329 +tp66330 +a(g66327 +g66329 +S'of' +p66331 +tp66332 +a(g66329 +g66331 +S'green' +p66333 +tp66334 +a(g66331 +g66333 +S'in' +p66335 +tp66336 +a(g66333 +g66335 +S'the' +p66337 +tp66338 +a(g66335 +g66337 +S'glaze.' +p66339 +tp66340 +a(g66337 +g66339 +S'in' +p66341 +tp66342 +a(g66339 +g66341 +S'the' +p66343 +tp66344 +a(g66341 +g66343 +S'early' +p66345 +tp66346 +a(g66343 +g66345 +S'days' +p66347 +tp66348 +a(g66345 +g66347 +S'when' +p66349 +tp66350 +a(g66347 +g66349 +S'every' +p66351 +tp66352 +a(g66349 +g66351 +S'pennsylvania' +p66353 +tp66354 +a(g66351 +g66353 +S'german' +p66355 +tp66356 +a(g66353 +g66355 +S'family' +p66357 +tp66358 +a(g66355 +g66357 +S'had' +p66359 +tp66360 +a(g66357 +g66359 +S'to' +p66361 +tp66362 +a(g66359 +g66361 +S'farm' +p66363 +tp66364 +a(g66361 +g66363 +S'for' +p66365 +tp66366 +a(g66363 +g66365 +S'its' +p66367 +tp66368 +a(g66365 +g66367 +S'livelihood,' +p66369 +tp66370 +a(g66367 +g66369 +S'pottery' +p66371 +tp66372 +a(g66369 +g66371 +S'was' +p66373 +tp66374 +a(g66371 +g66373 +S'made' +p66375 +tp66376 +a(g66373 +g66375 +S'by' +p66377 +tp66378 +a(g66375 +g66377 +S'farmer-artisans' +p66379 +tp66380 +a(g66377 +g66379 +S'skilled' +p66381 +tp66382 +a(g66379 +g66381 +S'in' +p66383 +tp66384 +a(g66381 +g66383 +S'that' +p66385 +tp66386 +a(g66383 +g66385 +S'craft.' +p66387 +tp66388 +a(g66385 +g66387 +S'having' +p66389 +tp66390 +a(g66387 +g66389 +S'brought' +p66391 +tp66392 +a(g66389 +g66391 +S'these' +p66393 +tp66394 +a(g66391 +g66393 +S'skills' +p66395 +tp66396 +a(g66393 +g66395 +S'from' +p66397 +tp66398 +a(g66395 +g66397 +S'the' +p66399 +tp66400 +a(g66397 +g66399 +S'homeland,' +p66401 +tp66402 +a(g66399 +g66401 +S'they' +p66403 +tp66404 +a(g66401 +g66403 +S'were' +p66405 +tp66406 +a(g66403 +g66405 +S'able' +p66407 +tp66408 +a(g66405 +g66407 +S'to' +p66409 +tp66410 +a(g66407 +g66409 +S'supplement' +p66411 +tp66412 +a(g66409 +g66411 +S'the' +p66413 +tp66414 +a(g66411 +g66413 +S'family' +p66415 +tp66416 +a(g66413 +g66415 +S'income' +p66417 +tp66418 +a(g66415 +g66417 +S'by' +p66419 +tp66420 +a(g66417 +g66419 +S'supplying' +p66421 +tp66422 +a(g66419 +g66421 +S'plates,' +p66423 +tp66424 +a(g66421 +g66423 +S'dishes,' +p66425 +tp66426 +a(g66423 +g66425 +S'and' +p66427 +tp66428 +a(g66425 +g66427 +S'other' +p66429 +tp66430 +a(g66427 +g66429 +S'ceramic' +p66431 +tp66432 +a(g66429 +g66431 +S'articles' +p66433 +tp66434 +a(g66431 +g66433 +S'to' +p66435 +tp66436 +a(g66433 +g66435 +S'neighboring' +p66437 +tp66438 +a(g66435 +g66437 +S'households.' +p66439 +tp66440 +a(g66437 +g66439 +S'because' +p66441 +tp66442 +a(g66439 +g66441 +S'pennsylvania' +p66443 +tp66444 +a(g66441 +g66443 +S'earth' +p66445 +tp66446 +a(g66443 +g66445 +S'was' +p66447 +tp66448 +a(g66445 +g66447 +S'rich' +p66449 +tp66450 +a(g66447 +g66449 +S'in' +p66451 +tp66452 +a(g66449 +g66451 +S'red' +p66453 +tp66454 +a(g66451 +g66453 +S'clay,' +p66455 +tp66456 +a(g66453 +g66455 +S'potters' +p66457 +tp66458 +a(g66455 +g66457 +S'produced' +p66459 +tp66460 +a(g66457 +g66459 +S'redware' +p66461 +tp66462 +a(g66459 +g66461 +S'--' +p66463 +tp66464 +a(g66461 +g66463 +S'pottery' +p66465 +tp66466 +a(g66463 +g66465 +S'that' +p66467 +tp66468 +a(g66465 +g66467 +S'turned' +p66469 +tp66470 +a(g66467 +g66469 +S'a' +p66471 +tp66472 +a(g66469 +g66471 +S'deep' +p66473 +tp66474 +a(g66471 +g66473 +S'brownish' +p66475 +tp66476 +a(g66473 +g66475 +S'red' +p66477 +tp66478 +a(g66475 +g66477 +S'after' +p66479 +tp66480 +a(g66477 +g66479 +S'firing.' +p66481 +tp66482 +a(g66479 +g66481 +S'this' +p66483 +tp66484 +a(g66481 +g66483 +S'plate,' +p66485 +tp66486 +a(g66483 +g66485 +S'inscribed,' +p66487 +tp66488 +a(g66485 +g66487 +S'"1793' +p66489 +tp66490 +a(g66487 +g66489 +S'h' +p66491 +tp66492 +a(g66489 +g66491 +S'r,"' +p66493 +tp66494 +a(g66491 +g66493 +S'may' +p66495 +tp66496 +a(g66493 +g66495 +S'have' +p66497 +tp66498 +a(g66495 +g66497 +S'been' +p66499 +tp66500 +a(g66497 +g66499 +S'made' +p66501 +tp66502 +a(g66499 +g66501 +S'by' +p66503 +tp66504 +a(g66501 +g66503 +S'the' +p66505 +tp66506 +a(g66503 +g66505 +S'potter' +p66507 +tp66508 +a(g66505 +g66507 +S'henry' +p66509 +tp66510 +a(g66507 +g66509 +S'roudebush.' +p66511 +tp66512 +a(g66509 +g66511 +S'the' +p66513 +tp66514 +a(g66511 +g66513 +S'proudly' +p66515 +tp66516 +a(g66513 +g66515 +S'strutting' +p66517 +tp66518 +a(g66515 +g66517 +S'peacock' +p66519 +tp66520 +a(g66517 +g66519 +S'and' +p66521 +tp66522 +a(g66519 +g66521 +S'stylized' +p66523 +tp66524 +a(g66521 +g66523 +S'flower' +p66525 +tp66526 +a(g66523 +g66525 +S'are' +p66527 +tp66528 +a(g66525 +g66527 +S'typical' +p66529 +tp66530 +a(g66527 +g66529 +S'pennsylvania' +p66531 +tp66532 +a(g66529 +g66531 +S'german' +p66533 +tp66534 +a(g66531 +g66533 +S'motifs.' +p66535 +tp66536 +a(g66533 +g66535 +S'the' +p66537 +tp66538 +a(g66535 +g66537 +S'plate' +p66539 +tp66540 +a(g66537 +g66539 +S'is' +p66541 +tp66542 +a(g66539 +g66541 +S'decorated' +p66543 +tp66544 +a(g66541 +g66543 +S'by' +p66545 +tp66546 +a(g66543 +g66545 +S'a' +p66547 +tp66548 +a(g66545 +g66547 +S'technique' +p66549 +tp66550 +a(g66547 +g66549 +S'know' +p66551 +tp66552 +a(g66549 +g66551 +S'as' +p66553 +tp66554 +a(g66551 +g66553 +S'sgraffito' +p66555 +tp66556 +a(g66553 +g66555 +S'or' +p66557 +tp66558 +a(g66555 +g66557 +S'"scratching."' +p66559 +tp66560 +a(g66557 +g66559 +S'in' +p66561 +tp66562 +a(g66559 +g66561 +S'this' +p66563 +tp66564 +a(g66561 +g66563 +S'process' +p66565 +tp66566 +a(g66563 +g66565 +S'the' +p66567 +tp66568 +a(g66565 +g66567 +S'potter' +p66569 +tp66570 +a(g66567 +g66569 +S'coated' +p66571 +tp66572 +a(g66569 +g66571 +S'the' +p66573 +tp66574 +a(g66571 +g66573 +S'concave' +p66575 +tp66576 +a(g66573 +g66575 +S'surface' +p66577 +tp66578 +a(g66575 +g66577 +S'of' +p66579 +tp66580 +a(g66577 +g66579 +S'the' +p66581 +tp66582 +a(g66579 +g66581 +S'plate' +p66583 +tp66584 +a(g66581 +g66583 +S'with' +p66585 +tp66586 +a(g66583 +g66585 +S'white' +p66587 +tp66588 +a(g66585 +g66587 +S'slip' +p66589 +tp66590 +a(g66587 +g66589 +S'--' +p66591 +tp66592 +a(g66589 +g66591 +S'a' +p66593 +tp66594 +a(g66591 +g66593 +S'thin' +p66595 +tp66596 +a(g66593 +g66595 +S'white' +p66597 +tp66598 +a(g66595 +g66597 +S'clay.' +p66599 +tp66600 +a(g66597 +g66599 +S'after' +p66601 +tp66602 +a(g66599 +g66601 +S'it' +p66603 +tp66604 +a(g66601 +g66603 +S'dried,' +p66605 +tp66606 +a(g66603 +g66605 +S'the' +p66607 +tp66608 +a(g66605 +g66607 +S'design' +p66609 +tp66610 +a(g66607 +g66609 +S'was' +p66611 +tp66612 +a(g66609 +g66611 +S'scratched' +p66613 +tp66614 +a(g66611 +g66613 +S'into' +p66615 +tp66616 +a(g66613 +g66615 +S'the' +p66617 +tp66618 +a(g66615 +g66617 +S'white' +p66619 +tp66620 +a(g66617 +g66619 +S'slip' +p66621 +tp66622 +a(g66619 +g66621 +S'with' +p66623 +tp66624 +a(g66621 +g66623 +S'a' +p66625 +tp66626 +a(g66623 +g66625 +S'sharp' +p66627 +tp66628 +a(g66625 +g66627 +S'instrument' +p66629 +tp66630 +a(g66627 +g66629 +S'to' +p66631 +tp66632 +a(g66629 +g66631 +S'expose' +p66633 +tp66634 +a(g66631 +g66633 +S'the' +p66635 +tp66636 +a(g66633 +g66635 +S'red' +p66637 +tp66638 +a(g66635 +g66637 +S'clay' +p66639 +tp66640 +a(g66637 +g66639 +S'underneath.' +p66641 +tp66642 +a(g66639 +g66641 +S'a' +p66643 +tp66644 +a(g66641 +g66643 +S'transparent' +p66645 +tp66646 +a(g66643 +g66645 +S'glaze' +p66647 +tp66648 +a(g66645 +g66647 +S'was' +p66649 +tp66650 +a(g66647 +g66649 +S'applied' +p66651 +tp66652 +a(g66649 +g66651 +S'and' +p66653 +tp66654 +a(g66651 +g66653 +S'the' +p66655 +tp66656 +a(g66653 +g66655 +S'piece' +p66657 +tp66658 +a(g66655 +g66657 +S'was' +p66659 +tp66660 +a(g66657 +g66659 +S'then' +p66661 +tp66662 +a(g66659 +g66661 +S'fired.' +p66663 +tp66664 +a(g66661 +g66663 +S'because' +p66665 +tp66666 +a(g66663 +g66665 +S'of' +p66667 +tp66668 +a(g66665 +g66667 +S'their' +p66669 +tp66670 +a(g66667 +g66669 +S'decorative' +p66671 +tp66672 +a(g66669 +g66671 +S'nature,' +p66673 +tp66674 +a(g66671 +g66673 +S'plates' +p66675 +tp66676 +a(g66673 +g66675 +S'of' +p66677 +tp66678 +a(g66675 +g66677 +S'this' +p66679 +tp66680 +a(g66677 +g66679 +S'kind' +p66681 +tp66682 +a(g66679 +g66681 +S'were' +p66683 +tp66684 +a(g66681 +g66683 +S'commonly' +p66685 +tp66686 +a(g66683 +g66685 +S'presented' +p66687 +tp66688 +a(g66685 +g66687 +S'as' +p66689 +tp66690 +a(g66687 +g66689 +S'gifts.' +p66691 +tp66692 +a(g66689 +g66691 +S'many' +p66693 +tp66694 +a(g66691 +g66693 +S'of' +p66695 +tp66696 +a(g66693 +g66695 +S'the' +p66697 +tp66698 +a(g66695 +g66697 +S'surviving' +p66699 +tp66700 +a(g66697 +g66699 +S'redware' +p66701 +tp66702 +a(g66699 +g66701 +S'pieces' +p66703 +tp66704 +a(g66701 +g66703 +S'are' +p66705 +tp66706 +a(g66703 +g66705 +S'those' +p66707 +tp66708 +a(g66705 +g66707 +S'that' +p66709 +tp66710 +a(g66707 +g66709 +S'were' +p66711 +tp66712 +a(g66709 +g66711 +S'made' +p66713 +tp66714 +a(g66711 +g66713 +S'with' +p66715 +tp66716 +a(g66713 +g66715 +S'special' +p66717 +tp66718 +a(g66715 +g66717 +S'care' +p66719 +tp66720 +a(g66717 +g66719 +S'and' +p66721 +tp66722 +a(g66719 +g66721 +S'intended' +p66723 +tp66724 +a(g66721 +g66723 +S'primarily' +p66725 +tp66726 +a(g66723 +g66725 +S'for' +p66727 +tp66728 +a(g66725 +g66727 +S'decorative' +p66729 +tp66730 +a(g66727 +g66729 +S'purposes.' +p66731 +tp66732 +a(g66729 +g66731 +S'the' +p66733 +tp66734 +a(g66731 +g66733 +S'earliest' +p66735 +tp66736 +a(g66733 +g66735 +S'redware' +p66737 +tp66738 +a(g66735 +g66737 +S'was' +p66739 +tp66740 +a(g66737 +g66739 +S'almost' +p66741 +tp66742 +a(g66739 +g66741 +S'purely' +p66743 +tp66744 +a(g66741 +g66743 +S'utilitarian,' +p66745 +tp66746 +a(g66743 +g66745 +S'but' +p66747 +tp66748 +a(g66745 +g66747 +S'gradually' +p66749 +tp66750 +a(g66747 +g66749 +S'ornamentation' +p66751 +tp66752 +a(g66749 +g66751 +S'emerged' +p66753 +tp66754 +a(g66751 +g66753 +S'as' +p66755 +tp66756 +a(g66753 +g66755 +S'an' +p66757 +tp66758 +a(g66755 +g66757 +S'integral' +p66759 +tp66760 +a(g66757 +g66759 +S'part' +p66761 +tp66762 +a(g66759 +g66761 +S'of' +p66763 +tp66764 +a(g66761 +g66763 +S'the' +p66765 +tp66766 +a(g66763 +g66765 +S"potter's" +p66767 +tp66768 +a(g66765 +g66767 +S'craft.' +p66769 +tp66770 +a(g66767 +g66769 +S'the' +p66771 +tp66772 +a(g66769 +g66771 +S'pennsylvania' +p66773 +tp66774 +a(g66771 +g66773 +S'germans,' +p66775 +tp66776 +a(g66773 +g66775 +S'in' +p66777 +tp66778 +a(g66775 +g66777 +S'particular,' +p66779 +tp66780 +a(g66777 +g66779 +S'were' +p66781 +tp66782 +a(g66779 +g66781 +S'known' +p66783 +tp66784 +a(g66781 +g66783 +S'for' +p66785 +tp66786 +a(g66783 +g66785 +S'their' +p66787 +tp66788 +a(g66785 +g66787 +S'elaborately' +p66789 +tp66790 +a(g66787 +g66789 +S'decorated' +p66791 +tp66792 +a(g66789 +g66791 +S'pottery,' +p66793 +tp66794 +a(g66791 +g66793 +S'as' +p66795 +tp66796 +a(g66793 +g66795 +S'exemplified' +p66797 +tp66798 +a(g66795 +g66797 +S'by' +p66799 +tp66800 +a(g66797 +g66799 +S'this' +p66801 +tp66802 +a(g66799 +g66801 +S'slip-decorated' +p66803 +tp66804 +a(g66801 +g66803 +S'plate.' +p66805 +tp66806 +a(g66803 +g66805 +S'here' +p66807 +tp66808 +a(g66805 +g66807 +S'the' +p66809 +tp66810 +a(g66807 +g66809 +S'potter' +p66811 +tp66812 +a(g66809 +g66811 +S'has' +p66813 +tp66814 +a(g66811 +g66813 +S'trailed' +p66815 +tp66816 +a(g66813 +g66815 +S'on' +p66817 +tp66818 +a(g66815 +g66817 +S'a' +p66819 +tp66820 +a(g66817 +g66819 +S'design' +p66821 +tp66822 +a(g66819 +g66821 +S'of' +p66823 +tp66824 +a(g66821 +g66823 +S'blue,' +p66825 +tp66826 +a(g66823 +g66825 +S'black,' +p66827 +tp66828 +a(g66825 +g66827 +S'and' +p66829 +tp66830 +a(g66827 +g66829 +S'yellow' +p66831 +tp66832 +a(g66829 +g66831 +S'slips,' +p66833 +tp66834 +a(g66831 +g66833 +S'which' +p66835 +tp66836 +a(g66833 +g66835 +S'contrast' +p66837 +tp66838 +a(g66835 +g66837 +S'vividly' +p66839 +tp66840 +a(g66837 +g66839 +S'with' +p66841 +tp66842 +a(g66839 +g66841 +S'the' +p66843 +tp66844 +a(g66841 +g66843 +S'red' +p66845 +tp66846 +a(g66843 +g66845 +S'clay' +p66847 +tp66848 +a(g66845 +g66847 +S'background.' +p66849 +tp66850 +a(g66847 +g66849 +S'slip' +p66851 +tp66852 +a(g66849 +g66851 +S'designs' +p66853 +tp66854 +a(g66851 +g66853 +S'of' +p66855 +tp66856 +a(g66853 +g66855 +S'this' +p66857 +tp66858 +a(g66855 +g66857 +S'kind' +p66859 +tp66860 +a(g66857 +g66859 +S'were' +p66861 +tp66862 +a(g66859 +g66861 +S'beaten' +p66863 +tp66864 +a(g66861 +g66863 +S'into' +p66865 +tp66866 +a(g66863 +g66865 +S'the' +p66867 +tp66868 +a(g66865 +g66867 +S'moist' +p66869 +tp66870 +a(g66867 +g66869 +S'clay' +p66871 +tp66872 +a(g66869 +g66871 +S'body' +p66873 +tp66874 +a(g66871 +g66873 +S'to' +p66875 +tp66876 +a(g66873 +g66875 +S'smooth' +p66877 +tp66878 +a(g66875 +g66877 +S'and' +p66879 +tp66880 +a(g66877 +g66879 +S'level' +p66881 +tp66882 +a(g66879 +g66881 +S'the' +p66883 +tp66884 +a(g66881 +g66883 +S'surface' +p66885 +tp66886 +a(g66883 +g66885 +S'before' +p66887 +tp66888 +a(g66885 +g66887 +S'firing.' +p66889 +tp66890 +a(g66887 +g66889 +S'the' +p66891 +tp66892 +a(g66889 +g66891 +S'symmetrical' +p66893 +tp66894 +a(g66891 +g66893 +S'design,' +p66895 +tp66896 +a(g66893 +g66895 +S'composed' +p66897 +tp66898 +a(g66895 +g66897 +S'of' +p66899 +tp66900 +a(g66897 +g66899 +S'floral' +p66901 +tp66902 +a(g66899 +g66901 +S'and' +p66903 +tp66904 +a(g66901 +g66903 +S'star' +p66905 +tp66906 +a(g66903 +g66905 +S'motifs,' +p66907 +tp66908 +a(g66905 +g66907 +S'is' +p66909 +tp66910 +a(g66907 +g66909 +S'characteristic' +p66911 +tp66912 +a(g66909 +g66911 +S'of' +p66913 +tp66914 +a(g66911 +g66913 +S'pennsylvania' +p66915 +tp66916 +a(g66913 +g66915 +S'german' +p66917 +tp66918 +a(g66915 +g66917 +S'art.' +p66919 +tp66920 +a(g66917 +g66919 +S'the' +p66921 +tp66922 +a(g66919 +g66921 +S'large,' +p66923 +tp66924 +a(g66921 +g66923 +S'bold' +p66925 +tp66926 +a(g66923 +g66925 +S'forms' +p66927 +tp66928 +a(g66925 +g66927 +S'in' +p66929 +tp66930 +a(g66927 +g66929 +S'the' +p66931 +tp66932 +a(g66929 +g66931 +S'center' +p66933 +tp66934 +a(g66931 +g66933 +S'of' +p66935 +tp66936 +a(g66933 +g66935 +S'the' +p66937 +tp66938 +a(g66935 +g66937 +S'plate' +p66939 +tp66940 +a(g66937 +g66939 +S'are' +p66941 +tp66942 +a(g66939 +g66941 +S'framed' +p66943 +tp66944 +a(g66941 +g66943 +S'by' +p66945 +tp66946 +a(g66943 +g66945 +S'a' +p66947 +tp66948 +a(g66945 +g66947 +S'carefully' +p66949 +tp66950 +a(g66947 +g66949 +S'lettered' +p66951 +tp66952 +a(g66949 +g66951 +S'border' +p66953 +tp66954 +a(g66951 +g66953 +S'in' +p66955 +tp66956 +a(g66953 +g66955 +S'german' +p66957 +tp66958 +a(g66955 +g66957 +S'that' +p66959 +tp66960 +a(g66957 +g66959 +S'says,' +p66961 +tp66962 +a(g66959 +g66961 +S'"fortune' +p66963 +tp66964 +a(g66961 +g66963 +S'or' +p66965 +tp66966 +a(g66963 +g66965 +S'misfortune' +p66967 +tp66968 +a(g66965 +g66967 +S'is' +p66969 +tp66970 +a(g66967 +g66969 +S'our' +p66971 +tp66972 +a(g66969 +g66971 +S'breakfast' +p66973 +tp66974 +a(g66971 +g66973 +S'every' +p66975 +tp66976 +a(g66973 +g66975 +S'morning,' +p66977 +tp66978 +a(g66975 +g66977 +S'1796,' +p66979 +tp66980 +a(g66977 +g66979 +S'18th' +p66981 +tp66982 +a(g66979 +g66981 +S'of' +p66983 +tp66984 +a(g66981 +g66983 +S'august."' +p66985 +tp66986 +a(g66983 +g66985 +S'slip-trailing' +p66987 +tp66988 +a(g66985 +g66987 +S'was' +p66989 +tp66990 +a(g66987 +g66989 +S'another' +p66991 +tp66992 +a(g66989 +g66991 +S'method' +p66993 +tp66994 +a(g66991 +g66993 +S'used' +p66995 +tp66996 +a(g66993 +g66995 +S'by' +p66997 +tp66998 +a(g66995 +g66997 +S'potters' +p66999 +tp67000 +a(g66997 +g66999 +S'to' +p67001 +tp67002 +a(g66999 +g67001 +S'decorate' +p67003 +tp67004 +a(g67001 +g67003 +S'ornamental' +p67005 +tp67006 +a(g67003 +g67005 +S'redware.' +p67007 +tp67008 +a(g67005 +g67007 +S'a' +p67009 +tp67010 +a(g67007 +g67009 +S'more' +p67011 +tp67012 +a(g67009 +g67011 +S'difficult' +p67013 +tp67014 +a(g67011 +g67013 +S'technique' +p67015 +tp67016 +a(g67013 +g67015 +S'than' +p67017 +tp67018 +a(g67015 +g67017 +S'sgraffito,' +p67019 +tp67020 +a(g67017 +g67019 +S'slip-trailed' +p67021 +tp67022 +a(g67019 +g67021 +S'decoration' +p67023 +tp67024 +a(g67021 +g67023 +S'resulted' +p67025 +tp67026 +a(g67023 +g67025 +S'from' +p67027 +tp67028 +a(g67025 +g67027 +S'pouring' +p67029 +tp67030 +a(g67027 +g67029 +S'slip' +p67031 +tp67032 +a(g67029 +g67031 +S'--' +p67033 +tp67034 +a(g67031 +g67033 +S'a' +p67035 +tp67036 +a(g67033 +g67035 +S'thin,' +p67037 +tp67038 +a(g67035 +g67037 +S'white' +p67039 +tp67040 +a(g67037 +g67039 +S'clay' +p67041 +tp67042 +a(g67039 +g67041 +S'--' +p67043 +tp67044 +a(g67041 +g67043 +S'from' +p67045 +tp67046 +a(g67043 +g67045 +S'a' +p67047 +tp67048 +a(g67045 +g67047 +S'slip' +p67049 +tp67050 +a(g67047 +g67049 +S'cup' +p67051 +tp67052 +a(g67049 +g67051 +S'through' +p67053 +tp67054 +a(g67051 +g67053 +S'a' +p67055 +tp67056 +a(g67053 +g67055 +S'goose' +p67057 +tp67058 +a(g67055 +g67057 +S'quill.' +p67059 +tp67060 +a(g67057 +g67059 +S'this' +p67061 +tp67062 +a(g67059 +g67061 +S'method' +p67063 +tp67064 +a(g67061 +g67063 +S'required' +p67065 +tp67066 +a(g67063 +g67065 +S'great' +p67067 +tp67068 +a(g67065 +g67067 +S'skill' +p67069 +tp67070 +a(g67067 +g67069 +S'in' +p67071 +tp67072 +a(g67069 +g67071 +S'controlling' +p67073 +tp67074 +a(g67071 +g67073 +S'the' +p67075 +tp67076 +a(g67073 +g67075 +S'thin' +p67077 +tp67078 +a(g67075 +g67077 +S'stream' +p67079 +tp67080 +a(g67077 +g67079 +S'of' +p67081 +tp67082 +a(g67079 +g67081 +S'slip' +p67083 +tp67084 +a(g67081 +g67083 +S'to' +p67085 +tp67086 +a(g67083 +g67085 +S'achieve' +p67087 +tp67088 +a(g67085 +g67087 +S'the' +p67089 +tp67090 +a(g67087 +g67089 +S'desired' +p67091 +tp67092 +a(g67089 +g67091 +S'pattern.' +p67093 +tp67094 +a(g67091 +g67093 +S'in' +p67095 +tp67096 +a(g67093 +g67095 +S'decorating' +p67097 +tp67098 +a(g67095 +g67097 +S'this' +p67099 +tp67100 +a(g67097 +g67099 +S'plate,' +p67101 +tp67102 +a(g67099 +g67101 +S'several' +p67103 +tp67104 +a(g67101 +g67103 +S'goose' +p67105 +tp67106 +a(g67103 +g67105 +S'quills' +p67107 +tp67108 +a(g67105 +g67107 +S'were' +p67109 +tp67110 +a(g67107 +g67109 +S'used' +p67111 +tp67112 +a(g67109 +g67111 +S'at' +p67113 +tp67114 +a(g67111 +g67113 +S'once' +p67115 +tp67116 +a(g67113 +g67115 +S'in' +p67117 +tp67118 +a(g67115 +g67117 +S'the' +p67119 +tp67120 +a(g67117 +g67119 +S'slip-trailing' +p67121 +tp67122 +a(g67119 +g67121 +S'process' +p67123 +tp67124 +a(g67121 +g67123 +S'to' +p67125 +tp67126 +a(g67123 +g67125 +S'achieve' +p67127 +tp67128 +a(g67125 +g67127 +S'the' +p67129 +tp67130 +a(g67127 +g67129 +S'concentric' +p67131 +tp67132 +a(g67129 +g67131 +S'lines' +p67133 +tp67134 +a(g67131 +g67133 +S'around' +p67135 +tp67136 +a(g67133 +g67135 +S'the' +p67137 +tp67138 +a(g67135 +g67137 +S'border.' +p67139 +tp67140 +a(g67137 +g67139 +S'when' +p67141 +tp67142 +a(g67139 +g67141 +S'the' +p67143 +tp67144 +a(g67141 +g67143 +S'slip' +p67145 +tp67146 +a(g67143 +g67145 +S'dried,' +p67147 +tp67148 +a(g67145 +g67147 +S'it' +p67149 +tp67150 +a(g67147 +g67149 +S'was' +p67151 +tp67152 +a(g67149 +g67151 +S'beaten' +p67153 +tp67154 +a(g67151 +g67153 +S'into' +p67155 +tp67156 +a(g67153 +g67155 +S'the' +p67157 +tp67158 +a(g67155 +g67157 +S'piece' +p67159 +tp67160 +a(g67157 +g67159 +S'so' +p67161 +tp67162 +a(g67159 +g67161 +S'that' +p67163 +tp67164 +a(g67161 +g67163 +S'the' +p67165 +tp67166 +a(g67163 +g67165 +S'decoration' +p67167 +tp67168 +a(g67165 +g67167 +S'became' +p67169 +tp67170 +a(g67167 +g67169 +S'an' +p67171 +tp67172 +a(g67169 +g67171 +S'integral' +p67173 +tp67174 +a(g67171 +g67173 +S'part' +p67175 +tp67176 +a(g67173 +g67175 +S'of' +p67177 +tp67178 +a(g67175 +g67177 +S'the' +p67179 +tp67180 +a(g67177 +g67179 +S'fired' +p67181 +tp67182 +a(g67179 +g67181 +S'dish.' +p67183 +tp67184 +a(g67181 +g67183 +S'the' +p67185 +tp67186 +a(g67183 +g67185 +S'design' +p67187 +tp67188 +a(g67185 +g67187 +S'on' +p67189 +tp67190 +a(g67187 +g67189 +S'this' +p67191 +tp67192 +a(g67189 +g67191 +S'dish,' +p67193 +tp67194 +a(g67191 +g67193 +S'representing' +p67195 +tp67196 +a(g67193 +g67195 +S'the' +p67197 +tp67198 +a(g67195 +g67197 +S'traditional' +p67199 +tp67200 +a(g67197 +g67199 +S'pennsylvania' +p67201 +tp67202 +a(g67199 +g67201 +S'german' +p67203 +tp67204 +a(g67201 +g67203 +S'tulip,' +p67205 +tp67206 +a(g67203 +g67205 +S'was' +p67207 +tp67208 +a(g67205 +g67207 +S'drawn' +p67209 +tp67210 +a(g67207 +g67209 +S'in' +p67211 +tp67212 +a(g67209 +g67211 +S'white,' +p67213 +tp67214 +a(g67211 +g67213 +S'green,' +p67215 +tp67216 +a(g67213 +g67215 +S'and' +p67217 +tp67218 +a(g67215 +g67217 +S'black' +p67219 +tp67220 +a(g67217 +g67219 +S'slip.' +p67221 +tp67222 +a(g67219 +g67221 +S'dated' +p67223 +tp67224 +a(g67221 +g67223 +S'october' +p67225 +tp67226 +a(g67223 +g67225 +S'1797,' +p67227 +tp67228 +a(g67225 +g67227 +S'the' +p67229 +tp67230 +a(g67227 +g67229 +S'dish' +p67231 +tp67232 +a(g67229 +g67231 +S'was' +p67233 +tp67234 +a(g67231 +g67233 +S'made' +p67235 +tp67236 +a(g67233 +g67235 +S'by' +p67237 +tp67238 +a(g67235 +g67237 +S'john' +p67239 +tp67240 +a(g67237 +g67239 +S'leidy' +p67241 +tp67242 +a(g67239 +g67241 +S'when' +p67243 +tp67244 +a(g67241 +g67243 +S'he' +p67245 +tp67246 +a(g67243 +g67245 +S'was' +p67247 +tp67248 +a(g67245 +g67247 +S'sixteen' +p67249 +tp67250 +a(g67247 +g67249 +S'years' +p67251 +tp67252 +a(g67249 +g67251 +S'old.' +p67253 +tp67254 +a(g67251 +g67253 +S'the' +p67255 +tp67256 +a(g67253 +g67255 +S'inscription' +p67257 +tp67258 +a(g67255 +g67257 +S'around' +p67259 +tp67260 +a(g67257 +g67259 +S'the' +p67261 +tp67262 +a(g67259 +g67261 +S'rim' +p67263 +tp67264 +a(g67261 +g67263 +S'reads:' +p67265 +tp67266 +a(g67263 +g67265 +S'"rather' +p67267 +tp67268 +a(g67265 +g67267 +S'would' +p67269 +tp67270 +a(g67267 +g67269 +S'i' +p67271 +tp67272 +a(g67269 +g67271 +S'single' +p67273 +tp67274 +a(g67271 +g67273 +S'live' +p67275 +tp67276 +a(g67273 +g67275 +S'than' +p67277 +tp67278 +a(g67275 +g67277 +S'the' +p67279 +tp67280 +a(g67277 +g67279 +S'wife' +p67281 +tp67282 +a(g67279 +g67281 +S'the' +p67283 +tp67284 +a(g67281 +g67283 +S'breeches' +p67285 +tp67286 +a(g67283 +g67285 +S'give."' +p67287 +tp67288 +a(g67285 +g67287 +S'shop' +p67289 +tp67290 +a(g67287 +g67289 +S'figures' +p67291 +tp67292 +a(g67289 +g67291 +S'and' +p67293 +tp67294 +a(g67291 +g67293 +S'trade' +p67295 +tp67296 +a(g67293 +g67295 +S'signs' +p67297 +tp67298 +a(g67295 +g67297 +S'are' +p67299 +tp67300 +a(g67297 +g67299 +S'a' +p67301 +tp67302 +a(g67299 +g67301 +S'form' +p67303 +tp67304 +a(g67301 +g67303 +S'of' +p67305 +tp67306 +a(g67303 +g67305 +S'american' +p67307 +tp67308 +a(g67305 +g67307 +S'folk' +p67309 +tp67310 +a(g67307 +g67309 +S'art' +p67311 +tp67312 +a(g67309 +g67311 +S'that' +p67313 +tp67314 +a(g67311 +g67313 +S'is' +p67315 +tp67316 +a(g67313 +g67315 +S'still' +p67317 +tp67318 +a(g67315 +g67317 +S'in' +p67319 +tp67320 +a(g67317 +g67319 +S'use' +p67321 +tp67322 +a(g67319 +g67321 +S'today' +p67323 +tp67324 +a(g67321 +g67323 +S'for' +p67325 +tp67326 +a(g67323 +g67325 +S'ornamental' +p67327 +tp67328 +a(g67325 +g67327 +S'purposes.' +p67329 +tp67330 +a(g67327 +g67329 +S'the' +p67331 +tp67332 +a(g67329 +g67331 +S'first' +p67333 +tp67334 +a(g67331 +g67333 +S'shop' +p67335 +tp67336 +a(g67333 +g67335 +S'signs,' +p67337 +tp67338 +a(g67335 +g67337 +S'however,' +p67339 +tp67340 +a(g67337 +g67339 +S'were' +p67341 +tp67342 +a(g67339 +g67341 +S'not' +p67343 +tp67344 +a(g67341 +g67343 +S'only' +p67345 +tp67346 +a(g67343 +g67345 +S'decorative,' +p67347 +tp67348 +a(g67345 +g67347 +S'they' +p67349 +tp67350 +a(g67347 +g67349 +S'were' +p67351 +tp67352 +a(g67349 +g67351 +S'a' +p67353 +tp67354 +a(g67351 +g67353 +S'practical' +p67355 +tp67356 +a(g67353 +g67355 +S'aid' +p67357 +tp67358 +a(g67355 +g67357 +S'to' +p67359 +tp67360 +a(g67357 +g67359 +S'those' +p67361 +tp67362 +a(g67359 +g67361 +S'potential' +p67363 +tp67364 +a(g67361 +g67363 +S'customers' +p67365 +tp67366 +a(g67363 +g67365 +S'that' +p67367 +tp67368 +a(g67365 +g67367 +S'could' +p67369 +tp67370 +a(g67367 +g67369 +S'not' +p67371 +tp67372 +a(g67369 +g67371 +S'read.' +p67373 +tp67374 +a(g67371 +g67373 +S'in' +p67375 +tp67376 +a(g67373 +g67375 +S'addition,' +p67377 +tp67378 +a(g67375 +g67377 +S'signs' +p67379 +tp67380 +a(g67377 +g67379 +S'pinpointed' +p67381 +tp67382 +a(g67379 +g67381 +S'the' +p67383 +tp67384 +a(g67381 +g67383 +S'location' +p67385 +tp67386 +a(g67383 +g67385 +S'of' +p67387 +tp67388 +a(g67385 +g67387 +S'a' +p67389 +tp67390 +a(g67387 +g67389 +S'shop' +p67391 +tp67392 +a(g67389 +g67391 +S'before' +p67393 +tp67394 +a(g67391 +g67393 +S'the' +p67395 +tp67396 +a(g67393 +g67395 +S'days' +p67397 +tp67398 +a(g67395 +g67397 +S'of' +p67399 +tp67400 +a(g67397 +g67399 +S'house' +p67401 +tp67402 +a(g67399 +g67401 +S'numbers.' +p67403 +tp67404 +a(g67401 +g67403 +S'early' +p67405 +tp67406 +a(g67403 +g67405 +S'american' +p67407 +tp67408 +a(g67405 +g67407 +S'streets' +p67409 +tp67410 +a(g67407 +g67409 +S'presented' +p67411 +tp67412 +a(g67409 +g67411 +S'a' +p67413 +tp67414 +a(g67411 +g67413 +S'lively' +p67415 +tp67416 +a(g67413 +g67415 +S'picture' +p67417 +tp67418 +a(g67415 +g67417 +S'of' +p67419 +tp67420 +a(g67417 +g67419 +S'activities' +p67421 +tp67422 +a(g67419 +g67421 +S'with' +p67423 +tp67424 +a(g67421 +g67423 +S'signs' +p67425 +tp67426 +a(g67423 +g67425 +S'such' +p67427 +tp67428 +a(g67425 +g67427 +S'as' +p67429 +tp67430 +a(g67427 +g67429 +S'barber' +p67431 +tp67432 +a(g67429 +g67431 +S'poles,' +p67433 +tp67434 +a(g67431 +g67433 +S'wooden' +p67435 +tp67436 +a(g67433 +g67435 +S'indians,' +p67437 +tp67438 +a(g67435 +g67437 +S'gloves,' +p67439 +tp67440 +a(g67437 +g67439 +S'clocks,' +p67441 +tp67442 +a(g67439 +g67441 +S'boots,' +p67443 +tp67444 +a(g67441 +g67443 +S'and' +p67445 +tp67446 +a(g67443 +g67445 +S'spectacles' +p67447 +tp67448 +a(g67445 +g67447 +S'calling' +p67449 +tp67450 +a(g67447 +g67449 +S'attention' +p67451 +tp67452 +a(g67449 +g67451 +S'to' +p67453 +tp67454 +a(g67451 +g67453 +S'services' +p67455 +tp67456 +a(g67453 +g67455 +S'or' +p67457 +tp67458 +a(g67455 +g67457 +S'goods' +p67459 +tp67460 +a(g67457 +g67459 +S'offered' +p67461 +tp67462 +a(g67459 +g67461 +S'for' +p67463 +tp67464 +a(g67461 +g67463 +S'sale.' +p67465 +tp67466 +a(g67463 +g67465 +S'some' +p67467 +tp67468 +a(g67465 +g67467 +S'carvers' +p67469 +tp67470 +a(g67467 +g67469 +S'of' +p67471 +tp67472 +a(g67469 +g67471 +S'shop' +p67473 +tp67474 +a(g67471 +g67473 +S'figures' +p67475 +tp67476 +a(g67473 +g67475 +S'and' +p67477 +tp67478 +a(g67475 +g67477 +S'signs' +p67479 +tp67480 +a(g67477 +g67479 +S'were' +p67481 +tp67482 +a(g67479 +g67481 +S'drawn' +p67483 +tp67484 +a(g67481 +g67483 +S'from' +p67485 +tp67486 +a(g67483 +g67485 +S'among' +p67487 +tp67488 +a(g67485 +g67487 +S'the' +p67489 +tp67490 +a(g67487 +g67489 +S'makers' +p67491 +tp67492 +a(g67489 +g67491 +S'of' +p67493 +tp67494 +a(g67491 +g67493 +S'ship' +p67495 +tp67496 +a(g67493 +g67495 +S'decorations.' +p67497 +tp67498 +a(g67495 +g67497 +S'the' +p67499 +tp67500 +a(g67497 +g67499 +S'shift' +p67501 +tp67502 +a(g67499 +g67501 +S'in' +p67503 +tp67504 +a(g67501 +g67503 +S'emphasis' +p67505 +tp67506 +a(g67503 +g67505 +S'was' +p67507 +tp67508 +a(g67505 +g67507 +S'increasingly' +p67509 +tp67510 +a(g67507 +g67509 +S'felt' +p67511 +tp67512 +a(g67509 +g67511 +S'in' +p67513 +tp67514 +a(g67511 +g67513 +S'the' +p67515 +tp67516 +a(g67513 +g67515 +S'late' +p67517 +tp67518 +a(g67515 +g67517 +S'nineteenth' +p67519 +tp67520 +a(g67517 +g67519 +S'century,' +p67521 +tp67522 +a(g67519 +g67521 +S'when' +p67523 +tp67524 +a(g67521 +g67523 +S'figurehead' +p67525 +tp67526 +a(g67523 +g67525 +S'carvers' +p67527 +tp67528 +a(g67525 +g67527 +S'were' +p67529 +tp67530 +a(g67527 +g67529 +S'being' +p67531 +tp67532 +a(g67529 +g67531 +S'forced' +p67533 +tp67534 +a(g67531 +g67533 +S'out' +p67535 +tp67536 +a(g67533 +g67535 +S'of' +p67537 +tp67538 +a(g67535 +g67537 +S'business' +p67539 +tp67540 +a(g67537 +g67539 +S'with' +p67541 +tp67542 +a(g67539 +g67541 +S'the' +p67543 +tp67544 +a(g67541 +g67543 +S'demise' +p67545 +tp67546 +a(g67543 +g67545 +S'of' +p67547 +tp67548 +a(g67545 +g67547 +S'the' +p67549 +tp67550 +a(g67547 +g67549 +S'clipper' +p67551 +tp67552 +a(g67549 +g67551 +S'ship' +p67553 +tp67554 +a(g67551 +g67553 +S'era.' +p67555 +tp67556 +a(g67553 +g67555 +S'these' +p67557 +tp67558 +a(g67555 +g67557 +S'craftsmen' +p67559 +tp67560 +a(g67557 +g67559 +S'gradually' +p67561 +tp67562 +a(g67559 +g67561 +S'turned' +p67563 +tp67564 +a(g67561 +g67563 +S'to' +p67565 +tp67566 +a(g67563 +g67565 +S'the' +p67567 +tp67568 +a(g67565 +g67567 +S'full-time' +p67569 +tp67570 +a(g67567 +g67569 +S'production' +p67571 +tp67572 +a(g67569 +g67571 +S'of' +p67573 +tp67574 +a(g67571 +g67573 +S'wooden' +p67575 +tp67576 +a(g67573 +g67575 +S'indians' +p67577 +tp67578 +a(g67575 +g67577 +S'and' +p67579 +tp67580 +a(g67577 +g67579 +S'other' +p67581 +tp67582 +a(g67579 +g67581 +S'signs.' +p67583 +tp67584 +a(g67581 +g67583 +S'the' +p67585 +tp67586 +a(g67583 +g67585 +S'indian,' +p67587 +tp67588 +a(g67585 +g67587 +S'as' +p67589 +tp67590 +a(g67587 +g67589 +S'the' +p67591 +tp67592 +a(g67589 +g67591 +S'first' +p67593 +tp67594 +a(g67591 +g67593 +S'american' +p67595 +tp67596 +a(g67593 +g67595 +S'to' +p67597 +tp67598 +a(g67595 +g67597 +S'cultivate' +p67599 +tp67600 +a(g67597 +g67599 +S'tobacco,' +p67601 +tp67602 +a(g67599 +g67601 +S'became' +p67603 +tp67604 +a(g67601 +g67603 +S'the' +p67605 +tp67606 +a(g67603 +g67605 +S'traditional' +p67607 +tp67608 +a(g67605 +g67607 +S'symbol' +p67609 +tp67610 +a(g67607 +g67609 +S'for' +p67611 +tp67612 +a(g67609 +g67611 +S'cigar' +p67613 +tp67614 +a(g67611 +g67613 +S'stores.' +p67615 +tp67616 +a(g67613 +g67615 +S'the' +p67617 +tp67618 +a(g67615 +g67617 +S'production' +p67619 +tp67620 +a(g67617 +g67619 +S'of' +p67621 +tp67622 +a(g67619 +g67621 +S'wooden' +p67623 +tp67624 +a(g67621 +g67623 +S'indians' +p67625 +tp67626 +a(g67623 +g67625 +S'flourished' +p67627 +tp67628 +a(g67625 +g67627 +S'from' +p67629 +tp67630 +a(g67627 +g67629 +S'about' +p67631 +tp67632 +a(g67629 +g67631 +S'1840' +p67633 +tp67634 +a(g67631 +g67633 +S'to' +p67635 +tp67636 +a(g67633 +g67635 +S'the' +p67637 +tp67638 +a(g67635 +g67637 +S'end' +p67639 +tp67640 +a(g67637 +g67639 +S'of' +p67641 +tp67642 +a(g67639 +g67641 +S'the' +p67643 +tp67644 +a(g67641 +g67643 +S'century.' +p67645 +tp67646 +a(g67643 +g67645 +S'in' +p67647 +tp67648 +a(g67645 +g67647 +S'the' +p67649 +tp67650 +a(g67647 +g67649 +S'1890s,' +p67651 +tp67652 +a(g67649 +g67651 +S'city' +p67653 +tp67654 +a(g67651 +g67653 +S'ordinances' +p67655 +tp67656 +a(g67653 +g67655 +S'required' +p67657 +tp67658 +a(g67655 +g67657 +S'that' +p67659 +tp67660 +a(g67657 +g67659 +S'figures' +p67661 +tp67662 +a(g67659 +g67661 +S'be' +p67663 +tp67664 +a(g67661 +g67663 +S'confined' +p67665 +tp67666 +a(g67663 +g67665 +S'to' +p67667 +tp67668 +a(g67665 +g67667 +S'the' +p67669 +tp67670 +a(g67667 +g67669 +S'interiors' +p67671 +tp67672 +a(g67669 +g67671 +S'of' +p67673 +tp67674 +a(g67671 +g67673 +S'shops,' +p67675 +tp67676 +a(g67673 +g67675 +S'and' +p67677 +tp67678 +a(g67675 +g67677 +S'gradually' +p67679 +tp67680 +a(g67677 +g67679 +S'the' +p67681 +tp67682 +a(g67679 +g67681 +S'statues' +p67683 +tp67684 +a(g67681 +g67683 +S'went' +p67685 +tp67686 +a(g67683 +g67685 +S'out' +p67687 +tp67688 +a(g67685 +g67687 +S'of' +p67689 +tp67690 +a(g67687 +g67689 +S'use.' +p67691 +tp67692 +a(g67689 +g67691 +S'this' +p67693 +tp67694 +a(g67691 +g67693 +S'woman,' +p67695 +tp67696 +a(g67693 +g67695 +S'or' +p67697 +tp67698 +a(g67695 +g67697 +S'pocahontas,' +p67699 +tp67700 +a(g67697 +g67699 +S'as' +p67701 +tp67702 +a(g67699 +g67701 +S'female' +p67703 +tp67704 +a(g67701 +g67703 +S'indian' +p67705 +tp67706 +a(g67703 +g67705 +S'figures' +p67707 +tp67708 +a(g67705 +g67707 +S'were' +p67709 +tp67710 +a(g67707 +g67709 +S'sometimes' +p67711 +tp67712 +a(g67709 +g67711 +S'called,' +p67713 +tp67714 +a(g67711 +g67713 +S'was' +p67715 +tp67716 +a(g67713 +g67715 +S'made' +p67717 +tp67718 +a(g67715 +g67717 +S'by' +p67719 +tp67720 +a(g67717 +g67719 +S'a' +p67721 +tp67722 +a(g67719 +g67721 +S'particularly' +p67723 +tp67724 +a(g67721 +g67723 +S'capable' +p67725 +tp67726 +a(g67723 +g67725 +S'artisan.' +p67727 +tp67728 +a(g67725 +g67727 +S'the' +p67729 +tp67730 +a(g67727 +g67729 +S'pose' +p67731 +tp67732 +a(g67729 +g67731 +S'of' +p67733 +tp67734 +a(g67731 +g67733 +S'the' +p67735 +tp67736 +a(g67733 +g67735 +S'statue' +p67737 +tp67738 +a(g67735 +g67737 +S'reflects' +p67739 +tp67740 +a(g67737 +g67739 +S'classical' +p67741 +tp67742 +a(g67739 +g67741 +S'or' +p67743 +tp67744 +a(g67741 +g67743 +S'egyptian' +p67745 +tp67746 +a(g67743 +g67745 +S'inspiration.' +p67747 +tp67748 +a(g67745 +g67747 +S'the' +p67749 +tp67750 +a(g67747 +g67749 +S'figure' +p67751 +tp67752 +a(g67749 +g67751 +S'is' +p67753 +tp67754 +a(g67751 +g67753 +S'elegantly' +p67755 +tp67756 +a(g67753 +g67755 +S'fashioned;' +p67757 +tp67758 +a(g67755 +g67757 +S'the' +p67759 +tp67760 +a(g67757 +g67759 +S'stance' +p67761 +tp67762 +a(g67759 +g67761 +S'seems' +p67763 +tp67764 +a(g67761 +g67763 +S'natural,' +p67765 +tp67766 +a(g67763 +g67765 +S'the' +p67767 +tp67768 +a(g67765 +g67767 +S'costume' +p67769 +tp67770 +a(g67767 +g67769 +S'has' +p67771 +tp67772 +a(g67769 +g67771 +S'been' +p67773 +tp67774 +a(g67771 +g67773 +S'simplified,' +p67775 +tp67776 +a(g67773 +g67775 +S'and' +p67777 +tp67778 +a(g67775 +g67777 +S'the' +p67779 +tp67780 +a(g67777 +g67779 +S'colors' +p67781 +tp67782 +a(g67779 +g67781 +S'are' +p67783 +tp67784 +a(g67781 +g67783 +S'harmonious.' +p67785 +tp67786 +a(g67783 +g67785 +S'the' +p67787 +tp67788 +a(g67785 +g67787 +S'ideal' +p67789 +tp67790 +a(g67787 +g67789 +S'trade' +p67791 +tp67792 +a(g67789 +g67791 +S'sign' +p67793 +tp67794 +a(g67791 +g67793 +S'was' +p67795 +tp67796 +a(g67793 +g67795 +S'completely' +p67797 +tp67798 +a(g67795 +g67797 +S'self-explanatory.' +p67799 +tp67800 +a(g67797 +g67799 +S'this' +p67801 +tp67802 +a(g67799 +g67801 +S"butcher's" +p67803 +tp67804 +a(g67801 +g67803 +S'sign' +p67805 +tp67806 +a(g67803 +g67805 +S'is' +p67807 +tp67808 +a(g67805 +g67807 +S'not' +p67809 +tp67810 +a(g67807 +g67809 +S'only' +p67811 +tp67812 +a(g67809 +g67811 +S'clear' +p67813 +tp67814 +a(g67811 +g67813 +S'in' +p67815 +tp67816 +a(g67813 +g67815 +S'its' +p67817 +tp67818 +a(g67815 +g67817 +S'message,' +p67819 +tp67820 +a(g67817 +g67819 +S'but' +p67821 +tp67822 +a(g67819 +g67821 +S'it' +p67823 +tp67824 +a(g67821 +g67823 +S'is' +p67825 +tp67826 +a(g67823 +g67825 +S'well' +p67827 +tp67828 +a(g67825 +g67827 +S'composed' +p67829 +tp67830 +a(g67827 +g67829 +S'and' +p67831 +tp67832 +a(g67829 +g67831 +S'witty' +p67833 +tp67834 +a(g67831 +g67833 +S'in' +p67835 +tp67836 +a(g67833 +g67835 +S'design.' +p67837 +tp67838 +a(g67835 +g67837 +S'it' +p67839 +tp67840 +a(g67837 +g67839 +S'was' +p67841 +tp67842 +a(g67839 +g67841 +S'made' +p67843 +tp67844 +a(g67841 +g67843 +S'between' +p67845 +tp67846 +a(g67843 +g67845 +S'1830' +p67847 +tp67848 +a(g67845 +g67847 +S'and' +p67849 +tp67850 +a(g67847 +g67849 +S'1850' +p67851 +tp67852 +a(g67849 +g67851 +S'for' +p67853 +tp67854 +a(g67851 +g67853 +S'a' +p67855 +tp67856 +a(g67853 +g67855 +S'slaughterhouse.' +p67857 +tp67858 +a(g67855 +g67857 +S'certain' +p67859 +tp67860 +a(g67857 +g67859 +S'wooden' +p67861 +tp67862 +a(g67859 +g67861 +S'household' +p67863 +tp67864 +a(g67861 +g67863 +S'articles' +p67865 +tp67866 +a(g67863 +g67865 +S'were' +p67867 +tp67868 +a(g67865 +g67867 +S'related' +p67869 +tp67870 +a(g67867 +g67869 +S'functionally.' +p67871 +tp67872 +a(g67869 +g67871 +S'weathervanes,' +p67873 +tp67874 +a(g67871 +g67873 +S'designed' +p67875 +tp67876 +a(g67873 +g67875 +S'to' +p67877 +tp67878 +a(g67875 +g67877 +S'adorn' +p67879 +tp67880 +a(g67877 +g67879 +S'the' +p67881 +tp67882 +a(g67879 +g67881 +S'roof' +p67883 +tp67884 +a(g67881 +g67883 +S'of' +p67885 +tp67886 +a(g67883 +g67885 +S'a' +p67887 +tp67888 +a(g67885 +g67887 +S'house' +p67889 +tp67890 +a(g67887 +g67889 +S'and' +p67891 +tp67892 +a(g67889 +g67891 +S'to' +p67893 +tp67894 +a(g67891 +g67893 +S'move' +p67895 +tp67896 +a(g67893 +g67895 +S'with' +p67897 +tp67898 +a(g67895 +g67897 +S'the' +p67899 +tp67900 +a(g67897 +g67899 +S'wind,' +p67901 +tp67902 +a(g67899 +g67901 +S'were' +p67903 +tp67904 +a(g67901 +g67903 +S'akin' +p67905 +tp67906 +a(g67903 +g67905 +S'to' +p67907 +tp67908 +a(g67905 +g67907 +S'whirligigs.' +p67909 +tp67910 +a(g67907 +g67909 +S'the' +p67911 +tp67912 +a(g67909 +g67911 +S'latter' +p67913 +tp67914 +a(g67911 +g67913 +S'also' +p67915 +tp67916 +a(g67913 +g67915 +S'functioned' +p67917 +tp67918 +a(g67915 +g67917 +S'as' +p67919 +tp67920 +a(g67917 +g67919 +S'toys.' +p67921 +tp67922 +a(g67919 +g67921 +S'weathervanes,' +p67923 +tp67924 +a(g67921 +g67923 +S'among' +p67925 +tp67926 +a(g67923 +g67925 +S'the' +p67927 +tp67928 +a(g67925 +g67927 +S'first' +p67929 +tp67930 +a(g67927 +g67929 +S'meteorological' +p67931 +tp67932 +a(g67929 +g67931 +S'instruments,' +p67933 +tp67934 +a(g67931 +g67933 +S'have' +p67935 +tp67936 +a(g67933 +g67935 +S'been' +p67937 +tp67938 +a(g67935 +g67937 +S'a' +p67939 +tp67940 +a(g67937 +g67939 +S'part' +p67941 +tp67942 +a(g67939 +g67941 +S'of' +p67943 +tp67944 +a(g67941 +g67943 +S'american' +p67945 +tp67946 +a(g67943 +g67945 +S'folk' +p67947 +tp67948 +a(g67945 +g67947 +S'art' +p67949 +tp67950 +a(g67947 +g67949 +S'for' +p67951 +tp67952 +a(g67949 +g67951 +S'more' +p67953 +tp67954 +a(g67951 +g67953 +S'than' +p67955 +tp67956 +a(g67953 +g67955 +S'300' +p67957 +tp67958 +a(g67955 +g67957 +S'years.' +p67959 +tp67960 +a(g67957 +g67959 +S'while' +p67961 +tp67962 +a(g67959 +g67961 +S'many' +p67963 +tp67964 +a(g67961 +g67963 +S'were' +p67965 +tp67966 +a(g67963 +g67965 +S'made' +p67967 +tp67968 +a(g67965 +g67967 +S'of' +p67969 +tp67970 +a(g67967 +g67969 +S'metal,' +p67971 +tp67972 +a(g67969 +g67971 +S'a' +p67973 +tp67974 +a(g67971 +g67973 +S'large' +p67975 +tp67976 +a(g67973 +g67975 +S'number' +p67977 +tp67978 +a(g67975 +g67977 +S'were' +p67979 +tp67980 +a(g67977 +g67979 +S'also' +p67981 +tp67982 +a(g67979 +g67981 +S'of' +p67983 +tp67984 +a(g67981 +g67983 +S'wood,' +p67985 +tp67986 +a(g67983 +g67985 +S'providing' +p67987 +tp67988 +a(g67985 +g67987 +S'one' +p67989 +tp67990 +a(g67987 +g67989 +S'of' +p67991 +tp67992 +a(g67989 +g67991 +S'the' +p67993 +tp67994 +a(g67991 +g67993 +S'earliest' +p67995 +tp67996 +a(g67993 +g67995 +S'avenues' +p67997 +tp67998 +a(g67995 +g67997 +S'of' +p67999 +tp68000 +a(g67997 +g67999 +S'expression' +p68001 +tp68002 +a(g67999 +g68001 +S'for' +p68003 +tp68004 +a(g68001 +g68003 +S'the' +p68005 +tp68006 +a(g68003 +g68005 +S"woodcarver's" +p68007 +tp68008 +a(g68005 +g68007 +S'art' +p68009 +tp68010 +a(g68007 +g68009 +S'in' +p68011 +tp68012 +a(g68009 +g68011 +S'america.' +p68013 +tp68014 +a(g68011 +g68013 +S'the' +p68015 +tp68016 +a(g68013 +g68015 +S'first' +p68017 +tp68018 +a(g68015 +g68017 +S'american' +p68019 +tp68020 +a(g68017 +g68019 +S'weathervanes' +p68021 +tp68022 +a(g68019 +g68021 +S'were' +p68023 +tp68024 +a(g68021 +g68023 +S'probably' +p68025 +tp68026 +a(g68023 +g68025 +S'used' +p68027 +tp68028 +a(g68025 +g68027 +S'on' +p68029 +tp68030 +a(g68027 +g68029 +S'churches' +p68031 +tp68032 +a(g68029 +g68031 +S'and' +p68033 +tp68034 +a(g68031 +g68033 +S'were' +p68035 +tp68036 +a(g68033 +g68035 +S'frequently' +p68037 +tp68038 +a(g68035 +g68037 +S'in' +p68039 +tp68040 +a(g68037 +g68039 +S'the' +p68041 +tp68042 +a(g68039 +g68041 +S'shape' +p68043 +tp68044 +a(g68041 +g68043 +S'of' +p68045 +tp68046 +a(g68043 +g68045 +S'roosters' +p68047 +tp68048 +a(g68045 +g68047 +S'--' +p68049 +tp68050 +a(g68047 +g68049 +S'a' +p68051 +tp68052 +a(g68049 +g68051 +S'reference' +p68053 +tp68054 +a(g68051 +g68053 +S'to' +p68055 +tp68056 +a(g68053 +g68055 +S"christ's" +p68057 +tp68058 +a(g68055 +g68057 +S'warning' +p68059 +tp68060 +a(g68057 +g68059 +S'that' +p68061 +tp68062 +a(g68059 +g68061 +S'peter' +p68063 +tp68064 +a(g68061 +g68063 +S'would' +p68065 +tp68066 +a(g68063 +g68065 +S'deny' +p68067 +tp68068 +a(g68065 +g68067 +S'him' +p68069 +tp68070 +a(g68067 +g68069 +S'before' +p68071 +tp68072 +a(g68069 +g68071 +S'the' +p68073 +tp68074 +a(g68071 +g68073 +S'cock' +p68075 +tp68076 +a(g68073 +g68075 +S'crowed' +p68077 +tp68078 +a(g68075 +g68077 +S'twice.' +p68079 +tp68080 +a(g68077 +g68079 +S'but' +p68081 +tp68082 +a(g68079 +g68081 +S'flourishing' +p68083 +tp68084 +a(g68081 +g68083 +S'farm' +p68085 +tp68086 +a(g68083 +g68085 +S'life' +p68087 +tp68088 +a(g68085 +g68087 +S'in' +p68089 +tp68090 +a(g68087 +g68089 +S'the' +p68091 +tp68092 +a(g68089 +g68091 +S'nineteenth' +p68093 +tp68094 +a(g68091 +g68093 +S'century' +p68095 +tp68096 +a(g68093 +g68095 +S'prompted' +p68097 +tp68098 +a(g68095 +g68097 +S'the' +p68099 +tp68100 +a(g68097 +g68099 +S'adoption' +p68101 +tp68102 +a(g68099 +g68101 +S'of' +p68103 +tp68104 +a(g68101 +g68103 +S'many' +p68105 +tp68106 +a(g68103 +g68105 +S'diverse' +p68107 +tp68108 +a(g68105 +g68107 +S'silhouettes.' +p68109 +tp68110 +a(g68107 +g68109 +S'running-horse' +p68111 +tp68112 +a(g68109 +g68111 +S'weathervanes' +p68113 +tp68114 +a(g68111 +g68113 +S'were' +p68115 +tp68116 +a(g68113 +g68115 +S'popular.' +p68117 +tp68118 +a(g68115 +g68117 +S'some' +p68119 +tp68120 +a(g68117 +g68119 +S'were' +p68121 +tp68122 +a(g68119 +g68121 +S'fashioned' +p68123 +tp68124 +a(g68121 +g68123 +S'after' +p68125 +tp68126 +a(g68123 +g68125 +S'currier' +p68127 +tp68128 +a(g68125 +g68127 +S'and' +p68129 +tp68130 +a(g68127 +g68129 +S'ives' +p68131 +tp68132 +a(g68129 +g68131 +S'prints,' +p68133 +tp68134 +a(g68131 +g68133 +S'but' +p68135 +tp68136 +a(g68133 +g68135 +S'this' +p68137 +tp68138 +a(g68135 +g68137 +S'one' +p68139 +tp68140 +a(g68137 +g68139 +S'is' +p68141 +tp68142 +a(g68139 +g68141 +S'somewhat' +p68143 +tp68144 +a(g68141 +g68143 +S'more' +p68145 +tp68146 +a(g68143 +g68145 +S'unusual.' +p68147 +tp68148 +a(g68145 +g68147 +S'while' +p68149 +tp68150 +a(g68147 +g68149 +S'interesting' +p68151 +tp68152 +a(g68149 +g68151 +S'texture' +p68153 +tp68154 +a(g68151 +g68153 +S'is' +p68155 +tp68156 +a(g68153 +g68155 +S'added' +p68157 +tp68158 +a(g68155 +g68157 +S'through' +p68159 +tp68160 +a(g68157 +g68159 +S'the' +p68161 +tp68162 +a(g68159 +g68161 +S'repeated' +p68163 +tp68164 +a(g68161 +g68163 +S'grooves' +p68165 +tp68166 +a(g68163 +g68165 +S'of' +p68167 +tp68168 +a(g68165 +g68167 +S'mane' +p68169 +tp68170 +a(g68167 +g68169 +S'and' +p68171 +tp68172 +a(g68169 +g68171 +S'tail,' +p68173 +tp68174 +a(g68171 +g68173 +S'the' +p68175 +tp68176 +a(g68173 +g68175 +S'artist' +p68177 +tp68178 +a(g68175 +g68177 +S'has' +p68179 +tp68180 +a(g68177 +g68179 +S'concentrated' +p68181 +tp68182 +a(g68179 +g68181 +S'on' +p68183 +tp68184 +a(g68181 +g68183 +S'uninhibited,' +p68185 +tp68186 +a(g68183 +g68185 +S'flowing' +p68187 +tp68188 +a(g68185 +g68187 +S'contours.' +p68189 +tp68190 +a(g68187 +g68189 +S'the' +p68191 +tp68192 +a(g68189 +g68191 +S'most' +p68193 +tp68194 +a(g68191 +g68193 +S'important' +p68195 +tp68196 +a(g68193 +g68195 +S'aspect' +p68197 +tp68198 +a(g68195 +g68197 +S'of' +p68199 +tp68200 +a(g68197 +g68199 +S'a' +p68201 +tp68202 +a(g68199 +g68201 +S'weathervane,' +p68203 +tp68204 +a(g68201 +g68203 +S'indeed,' +p68205 +tp68206 +a(g68203 +g68205 +S'was' +p68207 +tp68208 +a(g68205 +g68207 +S'its' +p68209 +tp68210 +a(g68207 +g68209 +S'silhouette,' +p68211 +tp68212 +a(g68209 +g68211 +S'since' +p68213 +tp68214 +a(g68211 +g68213 +S'it' +p68215 +tp68216 +a(g68213 +g68215 +S'would' +p68217 +tp68218 +a(g68215 +g68217 +S'be' +p68219 +tp68220 +a(g68217 +g68219 +S'viewed' +p68221 +tp68222 +a(g68219 +g68221 +S'from' +p68223 +tp68224 +a(g68221 +g68223 +S'a' +p68225 +tp68226 +a(g68223 +g68225 +S'distance' +p68227 +tp68228 +a(g68225 +g68227 +S'against' +p68229 +tp68230 +a(g68227 +g68229 +S'the' +p68231 +tp68232 +a(g68229 +g68231 +S'sky.' +p68233 +tp68234 +a(g68231 +g68233 +S'not' +p68235 +tp68236 +a(g68233 +g68235 +S'all' +p68237 +tp68238 +a(g68235 +g68237 +S'shop' +p68239 +tp68240 +a(g68237 +g68239 +S'signs' +p68241 +tp68242 +a(g68239 +g68241 +S'were' +p68243 +tp68244 +a(g68241 +g68243 +S'human' +p68245 +tp68246 +a(g68243 +g68245 +S'figures.' +p68247 +tp68248 +a(g68245 +g68247 +S'many,' +p68249 +tp68250 +a(g68247 +g68249 +S'like' +p68251 +tp68252 +a(g68249 +g68251 +S'this' +p68253 +tp68254 +a(g68251 +g68253 +S'shoe,' +p68255 +tp68256 +a(g68253 +g68255 +S'simply' +p68257 +tp68258 +a(g68255 +g68257 +S'exhibited' +p68259 +tp68260 +a(g68257 +g68259 +S'a' +p68261 +tp68262 +a(g68259 +g68261 +S'sample' +p68263 +tp68264 +a(g68261 +g68263 +S'of' +p68265 +tp68266 +a(g68263 +g68265 +S'the' +p68267 +tp68268 +a(g68265 +g68267 +S'goods' +p68269 +tp68270 +a(g68267 +g68269 +S'for' +p68271 +tp68272 +a(g68269 +g68271 +S'sale' +p68273 +tp68274 +a(g68271 +g68273 +S'within.' +p68275 +tp68276 +a(g68273 +g68275 +S'this' +p68277 +tp68278 +a(g68275 +g68277 +S'is' +p68279 +tp68280 +a(g68277 +g68279 +S'a' +p68281 +tp68282 +a(g68279 +g68281 +S'more' +p68283 +tp68284 +a(g68281 +g68283 +S'direct' +p68285 +tp68286 +a(g68283 +g68285 +S'method' +p68287 +tp68288 +a(g68285 +g68287 +S'of' +p68289 +tp68290 +a(g68287 +g68289 +S'advertising.' +p68291 +tp68292 +a(g68289 +g68291 +S'this' +p68293 +tp68294 +a(g68291 +g68293 +S'carving' +p68295 +tp68296 +a(g68293 +g68295 +S'of' +p68297 +tp68298 +a(g68295 +g68297 +S'a' +p68299 +tp68300 +a(g68297 +g68299 +S'shoe' +p68301 +tp68302 +a(g68299 +g68301 +S'is' +p68303 +tp68304 +a(g68301 +g68303 +S'a' +p68305 +tp68306 +a(g68303 +g68305 +S'fine' +p68307 +tp68308 +a(g68305 +g68307 +S'piece' +p68309 +tp68310 +a(g68307 +g68309 +S'of' +p68311 +tp68312 +a(g68309 +g68311 +S'craftsmanship,' +p68313 +tp68314 +a(g68311 +g68313 +S'with' +p68315 +tp68316 +a(g68313 +g68315 +S'graceful' +p68317 +tp68318 +a(g68315 +g68317 +S'lines' +p68319 +tp68320 +a(g68317 +g68319 +S'and' +p68321 +tp68322 +a(g68319 +g68321 +S'precise' +p68323 +tp68324 +a(g68321 +g68323 +S'details.' +p68325 +tp68326 +a(g68323 +g68325 +S'the' +p68327 +tp68328 +a(g68325 +g68327 +S'grain' +p68329 +tp68330 +a(g68327 +g68329 +S'and' +p68331 +tp68332 +a(g68329 +g68331 +S'character' +p68333 +tp68334 +a(g68331 +g68333 +S'of' +p68335 +tp68336 +a(g68333 +g68335 +S'the' +p68337 +tp68338 +a(g68335 +g68337 +S'wood' +p68339 +tp68340 +a(g68337 +g68339 +S'are' +p68341 +tp68342 +a(g68339 +g68341 +S'shown' +p68343 +tp68344 +a(g68341 +g68343 +S'to' +p68345 +tp68346 +a(g68343 +g68345 +S'good' +p68347 +tp68348 +a(g68345 +g68347 +S'advantage.' +p68349 +tp68350 +a(g68347 +g68349 +S'this' +p68351 +tp68352 +a(g68349 +g68351 +S'ballet' +p68353 +tp68354 +a(g68351 +g68353 +S'girl,' +p68355 +tp68356 +a(g68353 +g68355 +S'a' +p68357 +tp68358 +a(g68355 +g68357 +S'rather' +p68359 +tp68360 +a(g68357 +g68359 +S'plump' +p68361 +tp68362 +a(g68359 +g68361 +S'blonde' +p68363 +tp68364 +a(g68361 +g68363 +S'with' +p68365 +tp68366 +a(g68363 +g68365 +S'luxuriantly' +p68367 +tp68368 +a(g68365 +g68367 +S'disheveled' +p68369 +tp68370 +a(g68367 +g68369 +S'hair,' +p68371 +tp68372 +a(g68369 +g68371 +S'was' +p68373 +tp68374 +a(g68371 +g68373 +S'an' +p68375 +tp68376 +a(g68373 +g68375 +S'ornament' +p68377 +tp68378 +a(g68375 +g68377 +S'for' +p68379 +tp68380 +a(g68377 +g68379 +S'the' +p68381 +tp68382 +a(g68379 +g68381 +S'calliope,' +p68383 +tp68384 +a(g68381 +g68383 +S'or' +p68385 +tp68386 +a(g68383 +g68385 +S'steam' +p68387 +tp68388 +a(g68385 +g68387 +S'organ.' +p68389 +tp68390 +a(g68387 +g68389 +S'carved' +p68391 +tp68392 +a(g68389 +g68391 +S'around' +p68393 +tp68394 +a(g68391 +g68393 +S'1895,' +p68395 +tp68396 +a(g68393 +g68395 +S'it' +p68397 +tp68398 +a(g68395 +g68397 +S'is' +p68399 +tp68400 +a(g68397 +g68399 +S'typical' +p68401 +tp68402 +a(g68399 +g68401 +S'of' +p68403 +tp68404 +a(g68401 +g68403 +S'the' +p68405 +tp68406 +a(g68403 +g68405 +S'figures' +p68407 +tp68408 +a(g68405 +g68407 +S'of' +p68409 +tp68410 +a(g68407 +g68409 +S'dancers' +p68411 +tp68412 +a(g68409 +g68411 +S'and' +p68413 +tp68414 +a(g68411 +g68413 +S'musicians' +p68415 +tp68416 +a(g68413 +g68415 +S'favored' +p68417 +tp68418 +a(g68415 +g68417 +S'as' +p68419 +tp68420 +a(g68417 +g68419 +S'suitable' +p68421 +tp68422 +a(g68419 +g68421 +S'subjects' +p68423 +tp68424 +a(g68421 +g68423 +S'for' +p68425 +tp68426 +a(g68423 +g68425 +S'calliopes.' +p68427 +tp68428 +a(g68425 +g68427 +S'the' +p68429 +tp68430 +a(g68427 +g68429 +S'billethead,' +p68431 +tp68432 +a(g68429 +g68431 +S'in' +p68433 +tp68434 +a(g68431 +g68433 +S'use' +p68435 +tp68436 +a(g68433 +g68435 +S'for' +p68437 +tp68438 +a(g68435 +g68437 +S'centuries,' +p68439 +tp68440 +a(g68437 +g68439 +S'was' +p68441 +tp68442 +a(g68439 +g68441 +S'common' +p68443 +tp68444 +a(g68441 +g68443 +S'in' +p68445 +tp68446 +a(g68443 +g68445 +S'america' +p68447 +tp68448 +a(g68445 +g68447 +S'between' +p68449 +tp68450 +a(g68447 +g68449 +S'1830' +p68451 +tp68452 +a(g68449 +g68451 +S'and' +p68453 +tp68454 +a(g68451 +g68453 +S'1880.' +p68455 +tp68456 +a(g68453 +g68455 +S'an' +p68457 +tp68458 +a(g68455 +g68457 +S'alternative' +p68459 +tp68460 +a(g68457 +g68459 +S'to' +p68461 +tp68462 +a(g68459 +g68461 +S'the' +p68463 +tp68464 +a(g68461 +g68463 +S'figurehead,' +p68465 +tp68466 +a(g68463 +g68465 +S'it' +p68467 +tp68468 +a(g68465 +g68467 +S'was' +p68469 +tp68470 +a(g68467 +g68469 +S'a' +p68471 +tp68472 +a(g68469 +g68471 +S'less' +p68473 +tp68474 +a(g68471 +g68473 +S'elaborate' +p68475 +tp68476 +a(g68473 +g68475 +S'and' +p68477 +tp68478 +a(g68475 +g68477 +S'costly' +p68479 +tp68480 +a(g68477 +g68479 +S'decoration' +p68481 +tp68482 +a(g68479 +g68481 +S'for' +p68483 +tp68484 +a(g68481 +g68483 +S'a' +p68485 +tp68486 +a(g68483 +g68485 +S"ship's" +p68487 +tp68488 +a(g68485 +g68487 +S'bow.' +p68489 +tp68490 +a(g68487 +g68489 +S'despite' +p68491 +tp68492 +a(g68489 +g68491 +S'its' +p68493 +tp68494 +a(g68491 +g68493 +S'smaller' +p68495 +tp68496 +a(g68493 +g68495 +S'size' +p68497 +tp68498 +a(g68495 +g68497 +S'and' +p68499 +tp68500 +a(g68497 +g68499 +S'lack' +p68501 +tp68502 +a(g68499 +g68501 +S'of' +p68503 +tp68504 +a(g68501 +g68503 +S'a' +p68505 +tp68506 +a(g68503 +g68505 +S'nameable' +p68507 +tp68508 +a(g68505 +g68507 +S'subject,' +p68509 +tp68510 +a(g68507 +g68509 +S'carvers' +p68511 +tp68512 +a(g68509 +g68511 +S'often' +p68513 +tp68514 +a(g68511 +g68513 +S'lavished' +p68515 +tp68516 +a(g68513 +g68515 +S'it' +p68517 +tp68518 +a(g68515 +g68517 +S'with' +p68519 +tp68520 +a(g68517 +g68519 +S'considerable' +p68521 +tp68522 +a(g68519 +g68521 +S'attention.' +p68523 +tp68524 +a(g68521 +g68523 +S'the' +p68525 +tp68526 +a(g68523 +g68525 +S'liveliness' +p68527 +tp68528 +a(g68525 +g68527 +S'of' +p68529 +tp68530 +a(g68527 +g68529 +S'this' +p68531 +tp68532 +a(g68529 +g68531 +S'example' +p68533 +tp68534 +a(g68531 +g68533 +S'with' +p68535 +tp68536 +a(g68533 +g68535 +S'its' +p68537 +tp68538 +a(g68535 +g68537 +S'lush' +p68539 +tp68540 +a(g68537 +g68539 +S'foliate' +p68541 +tp68542 +a(g68539 +g68541 +S'design' +p68543 +tp68544 +a(g68541 +g68543 +S'and' +p68545 +tp68546 +a(g68543 +g68545 +S'crisp' +p68547 +tp68548 +a(g68545 +g68547 +S'carving' +p68549 +tp68550 +a(g68547 +g68549 +S'bespeaks' +p68551 +tp68552 +a(g68549 +g68551 +S'an' +p68553 +tp68554 +a(g68551 +g68553 +S'experienced' +p68555 +tp68556 +a(g68553 +g68555 +S'and' +p68557 +tp68558 +a(g68555 +g68557 +S'talented' +p68559 +tp68560 +a(g68557 +g68559 +S'craftsman.' +p68561 +tp68562 +a(g68559 +g68561 +S'at' +p68563 +tp68564 +a(g68561 +g68563 +S'one' +p68565 +tp68566 +a(g68563 +g68565 +S'time' +p68567 +tp68568 +a(g68565 +g68567 +S'painted' +p68569 +tp68570 +a(g68567 +g68569 +S'(the' +p68571 +tp68572 +a(g68569 +g68571 +S'index' +p68573 +tp68574 +a(g68571 +g68573 +S'data' +p68575 +tp68576 +a(g68573 +g68575 +S'sheet' +p68577 +tp68578 +a(g68575 +g68577 +S'describes' +p68579 +tp68580 +a(g68577 +g68579 +S'minute' +p68581 +tp68582 +a(g68579 +g68581 +S'traces' +p68583 +tp68584 +a(g68581 +g68583 +S'of' +p68585 +tp68586 +a(g68583 +g68585 +S'black' +p68587 +tp68588 +a(g68585 +g68587 +S'and' +p68589 +tp68590 +a(g68587 +g68589 +S'salmon),' +p68591 +tp68592 +a(g68589 +g68591 +S'its' +p68593 +tp68594 +a(g68591 +g68593 +S'cracked' +p68595 +tp68596 +a(g68593 +g68595 +S'and' +p68597 +tp68598 +a(g68595 +g68597 +S'weather-beaten' +p68599 +tp68600 +a(g68597 +g68599 +S'surface' +p68601 +tp68602 +a(g68599 +g68601 +S'is' +p68603 +tp68604 +a(g68601 +g68603 +S'evidence' +p68605 +tp68606 +a(g68603 +g68605 +S'of' +p68607 +tp68608 +a(g68605 +g68607 +S'its' +p68609 +tp68610 +a(g68607 +g68609 +S'age' +p68611 +tp68612 +a(g68609 +g68611 +S'and' +p68613 +tp68614 +a(g68611 +g68613 +S'history.' +p68615 +tp68616 +a(g68613 +g68615 +S'according' +p68617 +tp68618 +a(g68615 +g68617 +S'to' +p68619 +tp68620 +a(g68617 +g68619 +S'the' +p68621 +tp68622 +a(g68619 +g68621 +S'records' +p68623 +tp68624 +a(g68621 +g68623 +S'of' +p68625 +tp68626 +a(g68623 +g68625 +S'the' +p68627 +tp68628 +a(g68625 +g68627 +S'peabody' +p68629 +tp68630 +a(g68627 +g68629 +S'essex' +p68631 +tp68632 +a(g68629 +g68631 +S'museum' +p68633 +tp68634 +a(g68631 +g68633 +S'in' +p68635 +tp68636 +a(g68633 +g68635 +S'salem,' +p68637 +tp68638 +a(g68635 +g68637 +S'massachusetts,' +p68639 +tp68640 +a(g68637 +g68639 +S'in' +p68641 +tp68642 +a(g68639 +g68641 +S'whose' +p68643 +tp68644 +a(g68641 +g68643 +S'collection' +p68645 +tp68646 +a(g68643 +g68645 +S'the' +p68647 +tp68648 +a(g68645 +g68647 +S'object' +p68649 +tp68650 +a(g68647 +g68649 +S'has' +p68651 +tp68652 +a(g68649 +g68651 +S'been' +p68653 +tp68654 +a(g68651 +g68653 +S'since' +p68655 +tp68656 +a(g68653 +g68655 +S'1905,' +p68657 +tp68658 +a(g68655 +g68657 +S'this' +p68659 +tp68660 +a(g68657 +g68659 +S'billethead' +p68661 +tp68662 +a(g68659 +g68661 +S'once' +p68663 +tp68664 +a(g68661 +g68663 +S'decorated' +p68665 +tp68666 +a(g68663 +g68665 +S'the' +p68667 +tp68668 +a(g68665 +g68667 +S'ship' +p68669 +tp68670 +a(g68667 +g68669 +S'the' +p68671 +tp68672 +a(g68669 +g68671 +S'traveling' +p68673 +tp68674 +a(g68671 +g68673 +S'circus' +p68675 +tp68676 +a(g68673 +g68675 +S'received' +p68677 +tp68678 +a(g68675 +g68677 +S'its' +p68679 +tp68680 +a(g68677 +g68679 +S'start' +p68681 +tp68682 +a(g68679 +g68681 +S'in' +p68683 +tp68684 +a(g68681 +g68683 +S'america' +p68685 +tp68686 +a(g68683 +g68685 +S'in' +p68687 +tp68688 +a(g68685 +g68687 +S'1824,' +p68689 +tp68690 +a(g68687 +g68689 +S'when' +p68691 +tp68692 +a(g68689 +g68691 +S'john' +p68693 +tp68694 +a(g68691 +g68693 +S'robinson' +p68695 +tp68696 +a(g68693 +g68695 +S'took' +p68697 +tp68698 +a(g68695 +g68697 +S'three' +p68699 +tp68700 +a(g68697 +g68699 +S'wagons,' +p68701 +tp68702 +a(g68699 +g68701 +S'five' +p68703 +tp68704 +a(g68701 +g68703 +S'horses,' +p68705 +tp68706 +a(g68703 +g68705 +S'and' +p68707 +tp68708 +a(g68705 +g68707 +S'a' +p68709 +tp68710 +a(g68707 +g68709 +S'tent' +p68711 +tp68712 +a(g68709 +g68711 +S'across' +p68713 +tp68714 +a(g68711 +g68713 +S'the' +p68715 +tp68716 +a(g68713 +g68715 +S'allegheny' +p68717 +tp68718 +a(g68715 +g68717 +S'mountains.' +p68719 +tp68720 +a(g68717 +g68719 +S'it' +p68721 +tp68722 +a(g68719 +g68721 +S'was' +p68723 +tp68724 +a(g68721 +g68723 +S'not' +p68725 +tp68726 +a(g68723 +g68725 +S'long' +p68727 +tp68728 +a(g68725 +g68727 +S'before' +p68729 +tp68730 +a(g68727 +g68729 +S'the' +p68731 +tp68732 +a(g68729 +g68731 +S'american' +p68733 +tp68734 +a(g68731 +g68733 +S'circus' +p68735 +tp68736 +a(g68733 +g68735 +S'became' +p68737 +tp68738 +a(g68735 +g68737 +S'the' +p68739 +tp68740 +a(g68737 +g68739 +S'"greatest' +p68741 +tp68742 +a(g68739 +g68741 +S'show' +p68743 +tp68744 +a(g68741 +g68743 +S'on' +p68745 +tp68746 +a(g68743 +g68745 +S'earth,"' +p68747 +tp68748 +a(g68745 +g68747 +S'bringing' +p68749 +tp68750 +a(g68747 +g68749 +S'excitement' +p68751 +tp68752 +a(g68749 +g68751 +S'to' +p68753 +tp68754 +a(g68751 +g68753 +S'many' +p68755 +tp68756 +a(g68753 +g68755 +S'towns,' +p68757 +tp68758 +a(g68755 +g68757 +S'small' +p68759 +tp68760 +a(g68757 +g68759 +S'and' +p68761 +tp68762 +a(g68759 +g68761 +S'large,' +p68763 +tp68764 +a(g68761 +g68763 +S'across' +p68765 +tp68766 +a(g68763 +g68765 +S'the' +p68767 +tp68768 +a(g68765 +g68767 +S'country.' +p68769 +tp68770 +a(g68767 +g68769 +S'circuses' +p68771 +tp68772 +a(g68769 +g68771 +S'were' +p68773 +tp68774 +a(g68771 +g68773 +S'transported' +p68775 +tp68776 +a(g68773 +g68775 +S'by' +p68777 +tp68778 +a(g68775 +g68777 +S'means' +p68779 +tp68780 +a(g68777 +g68779 +S'of' +p68781 +tp68782 +a(g68779 +g68781 +S'wagons,' +p68783 +tp68784 +a(g68781 +g68783 +S'which' +p68785 +tp68786 +a(g68783 +g68785 +S'became' +p68787 +tp68788 +a(g68785 +g68787 +S'glamorous' +p68789 +tp68790 +a(g68787 +g68789 +S'showpieces' +p68791 +tp68792 +a(g68789 +g68791 +S'in' +p68793 +tp68794 +a(g68791 +g68793 +S'themselves.' +p68795 +tp68796 +a(g68793 +g68795 +S'the' +p68797 +tp68798 +a(g68795 +g68797 +S'wagon' +p68799 +tp68800 +a(g68797 +g68799 +S'builders' +p68801 +tp68802 +a(g68799 +g68801 +S'employed' +p68803 +tp68804 +a(g68801 +g68803 +S'woodcarvers' +p68805 +tp68806 +a(g68803 +g68805 +S'to' +p68807 +tp68808 +a(g68805 +g68807 +S'decorate' +p68809 +tp68810 +a(g68807 +g68809 +S'the' +p68811 +tp68812 +a(g68809 +g68811 +S'exteriors' +p68813 +tp68814 +a(g68811 +g68813 +S'with' +p68815 +tp68816 +a(g68813 +g68815 +S'figures' +p68817 +tp68818 +a(g68815 +g68817 +S'and' +p68819 +tp68820 +a(g68817 +g68819 +S'scrollwork.' +p68821 +tp68822 +a(g68819 +g68821 +S'the' +p68823 +tp68824 +a(g68821 +g68823 +S'result' +p68825 +tp68826 +a(g68823 +g68825 +S'added' +p68827 +tp68828 +a(g68825 +g68827 +S'to' +p68829 +tp68830 +a(g68827 +g68829 +S'the' +p68831 +tp68832 +a(g68829 +g68831 +S'impressive' +p68833 +tp68834 +a(g68831 +g68833 +S'effect' +p68835 +tp68836 +a(g68833 +g68835 +S'of' +p68837 +tp68838 +a(g68835 +g68837 +S'a' +p68839 +tp68840 +a(g68837 +g68839 +S'traveling' +p68841 +tp68842 +a(g68839 +g68841 +S'company.' +p68843 +tp68844 +a(g68841 +g68843 +S'few' +p68845 +tp68846 +a(g68843 +g68845 +S'circus' +p68847 +tp68848 +a(g68845 +g68847 +S'carvings' +p68849 +tp68850 +a(g68847 +g68849 +S'remain,' +p68851 +tp68852 +a(g68849 +g68851 +S'however;' +p68853 +tp68854 +a(g68851 +g68853 +S'not' +p68855 +tp68856 +a(g68853 +g68855 +S'only' +p68857 +tp68858 +a(g68855 +g68857 +S'were' +p68859 +tp68860 +a(g68857 +g68859 +S'the' +p68861 +tp68862 +a(g68859 +g68861 +S'wooden' +p68863 +tp68864 +a(g68861 +g68863 +S'figures' +p68865 +tp68866 +a(g68863 +g68865 +S'perishable,' +p68867 +tp68868 +a(g68865 +g68867 +S'but' +p68869 +tp68870 +a(g68867 +g68869 +S'they' +p68871 +tp68872 +a(g68869 +g68871 +S'were' +p68873 +tp68874 +a(g68871 +g68873 +S'not' +p68875 +tp68876 +a(g68873 +g68875 +S'taken' +p68877 +tp68878 +a(g68875 +g68877 +S'seriously' +p68879 +tp68880 +a(g68877 +g68879 +S'in' +p68881 +tp68882 +a(g68879 +g68881 +S'their' +p68883 +tp68884 +a(g68881 +g68883 +S'own' +p68885 +tp68886 +a(g68883 +g68885 +S'time' +p68887 +tp68888 +a(g68885 +g68887 +S'and' +p68889 +tp68890 +a(g68887 +g68889 +S'usually' +p68891 +tp68892 +a(g68889 +g68891 +S'were' +p68893 +tp68894 +a(g68891 +g68893 +S'not' +p68895 +tp68896 +a(g68893 +g68895 +S'considered' +p68897 +tp68898 +a(g68895 +g68897 +S'worthy' +p68899 +tp68900 +a(g68897 +g68899 +S'of' +p68901 +tp68902 +a(g68899 +g68901 +S'preservation.' +p68903 +tp68904 +a(g68901 +g68903 +S'this' +p68905 +tp68906 +a(g68903 +g68905 +S'circus' +p68907 +tp68908 +a(g68905 +g68907 +S'wagon,' +p68909 +tp68910 +a(g68907 +g68909 +S'of' +p68911 +tp68912 +a(g68909 +g68911 +S'about' +p68913 +tp68914 +a(g68911 +g68913 +S'1875,' +p68915 +tp68916 +a(g68913 +g68915 +S'is' +p68917 +tp68918 +a(g68915 +g68917 +S'named' +p68919 +tp68920 +a(g68917 +g68919 +S'"united' +p68921 +tp68922 +a(g68919 +g68921 +S'states."' +p68923 +tp68924 +a(g68921 +g68923 +S'elaborately' +p68925 +tp68926 +a(g68923 +g68925 +S'gilded' +p68927 +tp68928 +a(g68925 +g68927 +S'and' +p68929 +tp68930 +a(g68927 +g68929 +S'carved,' +p68931 +tp68932 +a(g68929 +g68931 +S'it' +p68933 +tp68934 +a(g68931 +g68933 +S'appropriately' +p68935 +tp68936 +a(g68933 +g68935 +S'displays' +p68937 +tp68938 +a(g68935 +g68937 +S'the' +p68939 +tp68940 +a(g68937 +g68939 +S'goddess' +p68941 +tp68942 +a(g68939 +g68941 +S'of' +p68943 +tp68944 +a(g68941 +g68943 +S'liberty' +p68945 +tp68946 +a(g68943 +g68945 +S'flanked' +p68947 +tp68948 +a(g68945 +g68947 +S'by' +p68949 +tp68950 +a(g68947 +g68949 +S'indian' +p68951 +tp68952 +a(g68949 +g68951 +S'maidens' +p68953 +tp68954 +a(g68951 +g68953 +S'as' +p68955 +tp68956 +a(g68953 +g68955 +S'symbols' +p68957 +tp68958 +a(g68955 +g68957 +S'of' +p68959 +tp68960 +a(g68957 +g68959 +S'our' +p68961 +tp68962 +a(g68959 +g68961 +S'country.' +p68963 +tp68964 +a(g68961 +g68963 +S'wood' +p68965 +tp68966 +a(g68963 +g68965 +S'carving' +p68967 +tp68968 +a(g68965 +g68967 +S'and' +p68969 +tp68970 +a(g68967 +g68969 +S'whittling' +p68971 +tp68972 +a(g68969 +g68971 +S'were' +p68973 +tp68974 +a(g68971 +g68973 +S'favorite' +p68975 +tp68976 +a(g68973 +g68975 +S'pastimes' +p68977 +tp68978 +a(g68975 +g68977 +S'of' +p68979 +tp68980 +a(g68977 +g68979 +S'men' +p68981 +tp68982 +a(g68979 +g68981 +S'and' +p68983 +tp68984 +a(g68981 +g68983 +S'boys' +p68985 +tp68986 +a(g68983 +g68985 +S'in' +p68987 +tp68988 +a(g68985 +g68987 +S'early' +p68989 +tp68990 +a(g68987 +g68989 +S'america,' +p68991 +tp68992 +a(g68989 +g68991 +S'and' +p68993 +tp68994 +a(g68991 +g68993 +S'particularly' +p68995 +tp68996 +a(g68993 +g68995 +S'in' +p68997 +tp68998 +a(g68995 +g68997 +S'the' +p68999 +tp69000 +a(g68997 +g68999 +S'pennsylvania' +p69001 +tp69002 +a(g68999 +g69001 +S'german' +p69003 +tp69004 +a(g69001 +g69003 +S'region' +p69005 +tp69006 +a(g69003 +g69005 +S'where' +p69007 +tp69008 +a(g69005 +g69007 +S'wood' +p69009 +tp69010 +a(g69007 +g69009 +S'was' +p69011 +tp69012 +a(g69009 +g69011 +S'abundant.' +p69013 +tp69014 +a(g69011 +g69013 +S'with' +p69015 +tp69016 +a(g69013 +g69015 +S'only' +p69017 +tp69018 +a(g69015 +g69017 +S'a' +p69019 +tp69020 +a(g69017 +g69019 +S'small' +p69021 +tp69022 +a(g69019 +g69021 +S'knife' +p69023 +tp69024 +a(g69021 +g69023 +S'and' +p69025 +tp69026 +a(g69023 +g69025 +S'a' +p69027 +tp69028 +a(g69025 +g69027 +S'block' +p69029 +tp69030 +a(g69027 +g69029 +S'of' +p69031 +tp69032 +a(g69029 +g69031 +S'wood,' +p69033 +tp69034 +a(g69031 +g69033 +S'amateur' +p69035 +tp69036 +a(g69033 +g69035 +S'carvers' +p69037 +tp69038 +a(g69035 +g69037 +S'created' +p69039 +tp69040 +a(g69037 +g69039 +S'a' +p69041 +tp69042 +a(g69039 +g69041 +S'variety' +p69043 +tp69044 +a(g69041 +g69043 +S'of' +p69045 +tp69046 +a(g69043 +g69045 +S'useful' +p69047 +tp69048 +a(g69045 +g69047 +S'and' +p69049 +tp69050 +a(g69047 +g69049 +S'decorative' +p69051 +tp69052 +a(g69049 +g69051 +S'items' +p69053 +tp69054 +a(g69051 +g69053 +S'for' +p69055 +tp69056 +a(g69053 +g69055 +S'the' +p69057 +tp69058 +a(g69055 +g69057 +S'home.' +p69059 +tp69060 +a(g69057 +g69059 +S'this' +p69061 +tp69062 +a(g69059 +g69061 +S'carved' +p69063 +tp69064 +a(g69061 +g69063 +S'group' +p69065 +tp69066 +a(g69063 +g69065 +S'of' +p69067 +tp69068 +a(g69065 +g69067 +S'"adam' +p69069 +tp69070 +a(g69067 +g69069 +S'and' +p69071 +tp69072 +a(g69069 +g69071 +S'eve' +p69073 +tp69074 +a(g69071 +g69073 +S'in' +p69075 +tp69076 +a(g69073 +g69075 +S'the' +p69077 +tp69078 +a(g69075 +g69077 +S'garden' +p69079 +tp69080 +a(g69077 +g69079 +S'of' +p69081 +tp69082 +a(g69079 +g69081 +S'eden"' +p69083 +tp69084 +a(g69081 +g69083 +S'was' +p69085 +tp69086 +a(g69083 +g69085 +S'done' +p69087 +tp69088 +a(g69085 +g69087 +S'by' +p69089 +tp69090 +a(g69087 +g69089 +S'wilhelm' +p69091 +tp69092 +a(g69089 +g69091 +S'schimmel.' +p69093 +tp69094 +a(g69091 +g69093 +S'an' +p69095 +tp69096 +a(g69093 +g69095 +S'itinerant' +p69097 +tp69098 +a(g69095 +g69097 +S'carver' +p69099 +tp69100 +a(g69097 +g69099 +S'of' +p69101 +tp69102 +a(g69099 +g69101 +S'the' +p69103 +tp69104 +a(g69101 +g69103 +S'mid-nineteenth' +p69105 +tp69106 +a(g69103 +g69105 +S'century,' +p69107 +tp69108 +a(g69105 +g69107 +S'he' +p69109 +tp69110 +a(g69107 +g69109 +S'wandered' +p69111 +tp69112 +a(g69109 +g69111 +S'throughout' +p69113 +tp69114 +a(g69111 +g69113 +S'the' +p69115 +tp69116 +a(g69113 +g69115 +S'southeastern' +p69117 +tp69118 +a(g69115 +g69117 +S'counties' +p69119 +tp69120 +a(g69117 +g69119 +S'of' +p69121 +tp69122 +a(g69119 +g69121 +S'pennsylvania' +p69123 +tp69124 +a(g69121 +g69123 +S'exchanging' +p69125 +tp69126 +a(g69123 +g69125 +S'his' +p69127 +tp69128 +a(g69125 +g69127 +S'whittled' +p69129 +tp69130 +a(g69127 +g69129 +S'animals' +p69131 +tp69132 +a(g69129 +g69131 +S'and' +p69133 +tp69134 +a(g69131 +g69133 +S'toys' +p69135 +tp69136 +a(g69133 +g69135 +S'for' +p69137 +tp69138 +a(g69135 +g69137 +S'a' +p69139 +tp69140 +a(g69137 +g69139 +S'meal' +p69141 +tp69142 +a(g69139 +g69141 +S'or' +p69143 +tp69144 +a(g69141 +g69143 +S'a' +p69145 +tp69146 +a(g69143 +g69145 +S'glass' +p69147 +tp69148 +a(g69145 +g69147 +S'of' +p69149 +tp69150 +a(g69147 +g69149 +S'rum.' +p69151 +tp69152 +a(g69149 +g69151 +S'this' +p69153 +tp69154 +a(g69151 +g69153 +S'unusual' +p69155 +tp69156 +a(g69153 +g69155 +S'carving' +p69157 +tp69158 +a(g69155 +g69157 +S'may' +p69159 +tp69160 +a(g69157 +g69159 +S'have' +p69161 +tp69162 +a(g69159 +g69161 +S'been' +p69163 +tp69164 +a(g69161 +g69163 +S'a' +p69165 +tp69166 +a(g69163 +g69165 +S'"sunday' +p69167 +tp69168 +a(g69165 +g69167 +S'toy"' +p69169 +tp69170 +a(g69167 +g69169 +S'--' +p69171 +tp69172 +a(g69169 +g69171 +S'a' +p69173 +tp69174 +a(g69171 +g69173 +S'toy' +p69175 +tp69176 +a(g69173 +g69175 +S'with' +p69177 +tp69178 +a(g69175 +g69177 +S'which' +p69179 +tp69180 +a(g69177 +g69179 +S'children' +p69181 +tp69182 +a(g69179 +g69181 +S'could' +p69183 +tp69184 +a(g69181 +g69183 +S'play' +p69185 +tp69186 +a(g69183 +g69185 +S'on' +p69187 +tp69188 +a(g69185 +g69187 +S'sundays' +p69189 +tp69190 +a(g69187 +g69189 +S'when' +p69191 +tp69192 +a(g69189 +g69191 +S'boisterous' +p69193 +tp69194 +a(g69191 +g69193 +S'activity' +p69195 +tp69196 +a(g69193 +g69195 +S'was' +p69197 +tp69198 +a(g69195 +g69197 +S'not' +p69199 +tp69200 +a(g69197 +g69199 +S'permitted.' +p69201 +tp69202 +a(g69199 +g69201 +S'schimmel' +p69203 +tp69204 +a(g69201 +g69203 +S'carved' +p69205 +tp69206 +a(g69203 +g69205 +S'each' +p69207 +tp69208 +a(g69205 +g69207 +S'of' +p69209 +tp69210 +a(g69207 +g69209 +S'the' +p69211 +tp69212 +a(g69209 +g69211 +S'pieces' +p69213 +tp69214 +a(g69211 +g69213 +S'in' +p69215 +tp69216 +a(g69213 +g69215 +S'this' +p69217 +tp69218 +a(g69215 +g69217 +S'group' +p69219 +tp69220 +a(g69217 +g69219 +S'separately,' +p69221 +tp69222 +a(g69219 +g69221 +S'then' +p69223 +tp69224 +a(g69221 +g69223 +S'combined' +p69225 +tp69226 +a(g69223 +g69225 +S'them' +p69227 +tp69228 +a(g69225 +g69227 +S'and' +p69229 +tp69230 +a(g69227 +g69229 +S'finished' +p69231 +tp69232 +a(g69229 +g69231 +S'the' +p69233 +tp69234 +a(g69231 +g69233 +S'work' +p69235 +tp69236 +a(g69233 +g69235 +S'with' +p69237 +tp69238 +a(g69235 +g69237 +S'oil' +p69239 +tp69240 +a(g69237 +g69239 +S'color.' +p69241 +tp69242 +a(g69239 +g69241 +S'while' +p69243 +tp69244 +a(g69241 +g69243 +S'technically' +p69245 +tp69246 +a(g69243 +g69245 +S'crude,' +p69247 +tp69248 +a(g69245 +g69247 +S"schimmel's" +p69249 +tp69250 +a(g69247 +g69249 +S'carvings' +p69251 +tp69252 +a(g69249 +g69251 +S'are' +p69253 +tp69254 +a(g69251 +g69253 +S'treasured' +p69255 +tp69256 +a(g69253 +g69255 +S'for' +p69257 +tp69258 +a(g69255 +g69257 +S'their' +p69259 +tp69260 +a(g69257 +g69259 +S'lively' +p69261 +tp69262 +a(g69259 +g69261 +S'portrayal' +p69263 +tp69264 +a(g69261 +g69263 +S'of' +p69265 +tp69266 +a(g69263 +g69265 +S'his' +p69267 +tp69268 +a(g69265 +g69267 +S'subjects.' +p69269 +tp69270 +a(g69267 +g69269 +S'an' +p69271 +tp69272 +a(g69269 +g69271 +S'architectural' +p69273 +tp69274 +a(g69271 +g69273 +S'arrangement' +p69275 +tp69276 +a(g69273 +g69275 +S'was' +p69277 +tp69278 +a(g69275 +g69277 +S'not' +p69279 +tp69280 +a(g69277 +g69279 +S'always' +p69281 +tp69282 +a(g69279 +g69281 +S'painted' +p69283 +tp69284 +a(g69281 +g69283 +S'onto' +p69285 +tp69286 +a(g69283 +g69285 +S'dower' +p69287 +tp69288 +a(g69285 +g69287 +S'chests' +p69289 +tp69290 +a(g69287 +g69289 +S'but' +p69291 +tp69292 +a(g69289 +g69291 +S'was' +p69293 +tp69294 +a(g69291 +g69293 +S'sometimes' +p69295 +tp69296 +a(g69293 +g69295 +S'built' +p69297 +tp69298 +a(g69295 +g69297 +S'in.' +p69299 +tp69300 +a(g69297 +g69299 +S'this' +p69301 +tp69302 +a(g69299 +g69301 +S'chest' +p69303 +tp69304 +a(g69301 +g69303 +S'is' +p69305 +tp69306 +a(g69303 +g69305 +S'constructed' +p69307 +tp69308 +a(g69305 +g69307 +S'with' +p69309 +tp69310 +a(g69307 +g69309 +S'three' +p69311 +tp69312 +a(g69309 +g69311 +S'recessed' +p69313 +tp69314 +a(g69311 +g69313 +S'panels' +p69315 +tp69316 +a(g69313 +g69315 +S'divided' +p69317 +tp69318 +a(g69315 +g69317 +S'by' +p69319 +tp69320 +a(g69317 +g69319 +S'brown' +p69321 +tp69322 +a(g69319 +g69321 +S'and' +p69323 +tp69324 +a(g69321 +g69323 +S'ivory-colored' +p69325 +tp69326 +a(g69323 +g69325 +S'pilasters.' +p69327 +tp69328 +a(g69325 +g69327 +S'red' +p69329 +tp69330 +a(g69327 +g69329 +S'and' +p69331 +tp69332 +a(g69329 +g69331 +S'green' +p69333 +tp69334 +a(g69331 +g69333 +S'flowers' +p69335 +tp69336 +a(g69333 +g69335 +S'and' +p69337 +tp69338 +a(g69335 +g69337 +S'stars' +p69339 +tp69340 +a(g69337 +g69339 +S'on' +p69341 +tp69342 +a(g69339 +g69341 +S'an' +p69343 +tp69344 +a(g69341 +g69343 +S'ivory' +p69345 +tp69346 +a(g69343 +g69345 +S'ground' +p69347 +tp69348 +a(g69345 +g69347 +S'provide' +p69349 +tp69350 +a(g69347 +g69349 +S'the' +p69351 +tp69352 +a(g69349 +g69351 +S'decorative' +p69353 +tp69354 +a(g69351 +g69353 +S'motifs.' +p69355 +tp69356 +a(g69353 +g69355 +S'made' +p69357 +tp69358 +a(g69355 +g69357 +S'in' +p69359 +tp69360 +a(g69357 +g69359 +S'the' +p69361 +tp69362 +a(g69359 +g69361 +S'late' +p69363 +tp69364 +a(g69361 +g69363 +S'eighteenth' +p69365 +tp69366 +a(g69363 +g69365 +S'century,' +p69367 +tp69368 +a(g69365 +g69367 +S'this' +p69369 +tp69370 +a(g69367 +g69369 +S'chest' +p69371 +tp69372 +a(g69369 +g69371 +S'is' +p69373 +tp69374 +a(g69371 +g69373 +S'set' +p69375 +tp69376 +a(g69373 +g69375 +S'on' +p69377 +tp69378 +a(g69375 +g69377 +S'onion' +p69379 +tp69380 +a(g69377 +g69379 +S'feet.' +p69381 +tp69382 +a(g69379 +g69381 +S'it' +p69383 +tp69384 +a(g69381 +g69383 +S'is' +p69385 +tp69386 +a(g69383 +g69385 +S'inscribed' +p69387 +tp69388 +a(g69385 +g69387 +S'with' +p69389 +tp69390 +a(g69387 +g69389 +S'the' +p69391 +tp69392 +a(g69389 +g69391 +S'name' +p69393 +tp69394 +a(g69391 +g69393 +S'of' +p69395 +tp69396 +a(g69393 +g69395 +S'the' +p69397 +tp69398 +a(g69395 +g69397 +S'original' +p69399 +tp69400 +a(g69397 +g69399 +S'owner,' +p69401 +tp69402 +a(g69399 +g69401 +S'"christina' +p69403 +tp69404 +a(g69401 +g69403 +S'ernstin."' +p69405 +tp69406 +a(g69403 +g69405 +S'pennsylvania' +p69407 +tp69408 +a(g69405 +g69407 +S'german' +p69409 +tp69410 +a(g69407 +g69409 +S'furniture' +p69411 +tp69412 +a(g69409 +g69411 +S'is' +p69413 +tp69414 +a(g69411 +g69413 +S'heavy' +p69415 +tp69416 +a(g69413 +g69415 +S'and' +p69417 +tp69418 +a(g69415 +g69417 +S'ornate,' +p69419 +tp69420 +a(g69417 +g69419 +S'much' +p69421 +tp69422 +a(g69419 +g69421 +S'like' +p69423 +tp69424 +a(g69421 +g69423 +S'traditional' +p69425 +tp69426 +a(g69423 +g69425 +S'german' +p69427 +tp69428 +a(g69425 +g69427 +S'peasant' +p69429 +tp69430 +a(g69427 +g69429 +S'styles.' +p69431 +tp69432 +a(g69429 +g69431 +S'because' +p69433 +tp69434 +a(g69431 +g69433 +S'the' +p69435 +tp69436 +a(g69433 +g69435 +S'pennsylvania' +p69437 +tp69438 +a(g69435 +g69437 +S'forests' +p69439 +tp69440 +a(g69437 +g69439 +S'supplied' +p69441 +tp69442 +a(g69439 +g69441 +S'an' +p69443 +tp69444 +a(g69441 +g69443 +S'abundance' +p69445 +tp69446 +a(g69443 +g69445 +S'of' +p69447 +tp69448 +a(g69445 +g69447 +S'wood,' +p69449 +tp69450 +a(g69447 +g69449 +S'there' +p69451 +tp69452 +a(g69449 +g69451 +S'was' +p69453 +tp69454 +a(g69451 +g69453 +S'never' +p69455 +tp69456 +a(g69453 +g69455 +S'a' +p69457 +tp69458 +a(g69455 +g69457 +S'shortage' +p69459 +tp69460 +a(g69457 +g69459 +S'of' +p69461 +tp69462 +a(g69459 +g69461 +S'materials.' +p69463 +tp69464 +a(g69461 +g69463 +S'furniture,' +p69465 +tp69466 +a(g69463 +g69465 +S'like' +p69467 +tp69468 +a(g69465 +g69467 +S'this' +p69469 +tp69470 +a(g69467 +g69469 +S'kitchen' +p69471 +tp69472 +a(g69469 +g69471 +S'cupboard,' +p69473 +tp69474 +a(g69471 +g69473 +S'was' +p69475 +tp69476 +a(g69473 +g69475 +S'often' +p69477 +tp69478 +a(g69475 +g69477 +S'made' +p69479 +tp69480 +a(g69477 +g69479 +S'for' +p69481 +tp69482 +a(g69479 +g69481 +S'the' +p69483 +tp69484 +a(g69481 +g69483 +S'dowry' +p69485 +tp69486 +a(g69483 +g69485 +S'of' +p69487 +tp69488 +a(g69485 +g69487 +S'a' +p69489 +tp69490 +a(g69487 +g69489 +S'son' +p69491 +tp69492 +a(g69489 +g69491 +S'or' +p69493 +tp69494 +a(g69491 +g69493 +S'daughter.' +p69495 +tp69496 +a(g69493 +g69495 +S'if' +p69497 +tp69498 +a(g69495 +g69497 +S'the' +p69499 +tp69500 +a(g69497 +g69499 +S'farmer' +p69501 +tp69502 +a(g69499 +g69501 +S'was' +p69503 +tp69504 +a(g69501 +g69503 +S'a' +p69505 +tp69506 +a(g69503 +g69505 +S'skilled' +p69507 +tp69508 +a(g69505 +g69507 +S'cabinetmaker' +p69509 +tp69510 +a(g69507 +g69509 +S'he' +p69511 +tp69512 +a(g69509 +g69511 +S'would' +p69513 +tp69514 +a(g69511 +g69513 +S'make' +p69515 +tp69516 +a(g69513 +g69515 +S'the' +p69517 +tp69518 +a(g69515 +g69517 +S'piece' +p69519 +tp69520 +a(g69517 +g69519 +S'himself,' +p69521 +tp69522 +a(g69519 +g69521 +S'leaving' +p69523 +tp69524 +a(g69521 +g69523 +S'the' +p69525 +tp69526 +a(g69523 +g69525 +S'decoration' +p69527 +tp69528 +a(g69525 +g69527 +S'to' +p69529 +tp69530 +a(g69527 +g69529 +S'an' +p69531 +tp69532 +a(g69529 +g69531 +S'itinerant' +p69533 +tp69534 +a(g69531 +g69533 +S'journeyman.' +p69535 +tp69536 +a(g69533 +g69535 +S'decoration' +p69537 +tp69538 +a(g69535 +g69537 +S'of' +p69539 +tp69540 +a(g69537 +g69539 +S'furniture' +p69541 +tp69542 +a(g69539 +g69541 +S'was' +p69543 +tp69544 +a(g69541 +g69543 +S'done' +p69545 +tp69546 +a(g69543 +g69545 +S'both' +p69547 +tp69548 +a(g69545 +g69547 +S'freehand' +p69549 +tp69550 +a(g69547 +g69549 +S'and' +p69551 +tp69552 +a(g69549 +g69551 +S'by' +p69553 +tp69554 +a(g69551 +g69553 +S'stenciling.' +p69555 +tp69556 +a(g69553 +g69555 +S'this' +p69557 +tp69558 +a(g69555 +g69557 +S'cupboard' +p69559 +tp69560 +a(g69557 +g69559 +S'was' +p69561 +tp69562 +a(g69559 +g69561 +S'made' +p69563 +tp69564 +a(g69561 +g69563 +S'for' +p69565 +tp69566 +a(g69563 +g69565 +S'rebecca' +p69567 +tp69568 +a(g69565 +g69567 +S'braun' +p69569 +tp69570 +a(g69567 +g69569 +S'in' +p69571 +tp69572 +a(g69569 +g69571 +S'1828.' +p69573 +tp69574 +a(g69571 +g69573 +S'the' +p69575 +tp69576 +a(g69573 +g69575 +S'bright' +p69577 +tp69578 +a(g69575 +g69577 +S'red' +p69579 +tp69580 +a(g69577 +g69579 +S'paint' +p69581 +tp69582 +a(g69579 +g69581 +S'contrasts' +p69583 +tp69584 +a(g69581 +g69583 +S'with' +p69585 +tp69586 +a(g69583 +g69585 +S'the' +p69587 +tp69588 +a(g69585 +g69587 +S'ivory-colored' +p69589 +tp69590 +a(g69587 +g69589 +S'window' +p69591 +tp69592 +a(g69589 +g69591 +S'frames' +p69593 +tp69594 +a(g69591 +g69593 +S'and' +p69595 +tp69596 +a(g69593 +g69595 +S'green' +p69597 +tp69598 +a(g69595 +g69597 +S'trim.' +p69599 +tp69600 +a(g69597 +g69599 +S'the' +p69601 +tp69602 +a(g69599 +g69601 +S'circular' +p69603 +tp69604 +a(g69601 +g69603 +S'geometrical' +p69605 +tp69606 +a(g69603 +g69605 +S'shapes' +p69607 +tp69608 +a(g69605 +g69607 +S'are' +p69609 +tp69610 +a(g69607 +g69609 +S'similar' +p69611 +tp69612 +a(g69609 +g69611 +S'to' +p69613 +tp69614 +a(g69611 +g69613 +S'decorations' +p69615 +tp69616 +a(g69613 +g69615 +S'often' +p69617 +tp69618 +a(g69615 +g69617 +S'found' +p69619 +tp69620 +a(g69617 +g69619 +S'on' +p69621 +tp69622 +a(g69619 +g69621 +S'pennsylvania' +p69623 +tp69624 +a(g69621 +g69623 +S'german' +p69625 +tp69626 +a(g69623 +g69625 +S'barns.' +p69627 +tp69628 +a(g69625 +g69627 +S'the' +p69629 +tp69630 +a(g69627 +g69629 +S'angels' +p69631 +tp69632 +a(g69629 +g69631 +S'on' +p69633 +tp69634 +a(g69631 +g69633 +S'the' +p69635 +tp69636 +a(g69633 +g69635 +S'door' +p69637 +tp69638 +a(g69635 +g69637 +S'panels' +p69639 +tp69640 +a(g69637 +g69639 +S'were' +p69641 +tp69642 +a(g69639 +g69641 +S'traced' +p69643 +tp69644 +a(g69641 +g69643 +S'from' +p69645 +tp69646 +a(g69643 +g69645 +S'designs' +p69647 +tp69648 +a(g69645 +g69647 +S'on' +p69649 +tp69650 +a(g69647 +g69649 +S'birth' +p69651 +tp69652 +a(g69649 +g69651 +S'certificates' +p69653 +tp69654 +a(g69651 +g69653 +S'of' +p69655 +tp69656 +a(g69653 +g69655 +S'that' +p69657 +tp69658 +a(g69655 +g69657 +S'time.' +p69659 +tp69660 +a(g69657 +g69659 +S'cupboards' +p69661 +tp69662 +a(g69659 +g69661 +S'were' +p69663 +tp69664 +a(g69661 +g69663 +S'used' +p69665 +tp69666 +a(g69663 +g69665 +S'not' +p69667 +tp69668 +a(g69665 +g69667 +S'only' +p69669 +tp69670 +a(g69667 +g69669 +S'for' +p69671 +tp69672 +a(g69669 +g69671 +S'storage' +p69673 +tp69674 +a(g69671 +g69673 +S'of' +p69675 +tp69676 +a(g69673 +g69675 +S'household' +p69677 +tp69678 +a(g69675 +g69677 +S'utensils,' +p69679 +tp69680 +a(g69677 +g69679 +S'but' +p69681 +tp69682 +a(g69679 +g69681 +S'to' +p69683 +tp69684 +a(g69681 +g69683 +S'display' +p69685 +tp69686 +a(g69683 +g69685 +S'ornamental' +p69687 +tp69688 +a(g69685 +g69687 +S'pottery' +p69689 +tp69690 +a(g69687 +g69689 +S'and' +p69691 +tp69692 +a(g69689 +g69691 +S'toleware' +p69693 +tp69694 +a(g69691 +g69693 +S'as' +p69695 +tp69696 +a(g69693 +g69695 +S'well.' +p69697 +tp69698 +a(g69695 +g69697 +S'dishes' +p69699 +tp69700 +a(g69697 +g69699 +S'made' +p69701 +tp69702 +a(g69699 +g69701 +S'by' +p69703 +tp69704 +a(g69701 +g69703 +S'pennsylvania' +p69705 +tp69706 +a(g69703 +g69705 +S'german' +p69707 +tp69708 +a(g69705 +g69707 +S'potters' +p69709 +tp69710 +a(g69707 +g69709 +S'came' +p69711 +tp69712 +a(g69709 +g69711 +S'in' +p69713 +tp69714 +a(g69711 +g69713 +S'a' +p69715 +tp69716 +a(g69713 +g69715 +S'variety' +p69717 +tp69718 +a(g69715 +g69717 +S'of' +p69719 +tp69720 +a(g69717 +g69719 +S'sizes' +p69721 +tp69722 +a(g69719 +g69721 +S'and' +p69723 +tp69724 +a(g69721 +g69723 +S'shapes.' +p69725 +tp69726 +a(g69723 +g69725 +S'this' +p69727 +tp69728 +a(g69725 +g69727 +S'oval' +p69729 +tp69730 +a(g69727 +g69729 +S'one' +p69731 +tp69732 +a(g69729 +g69731 +S'with' +p69733 +tp69734 +a(g69731 +g69733 +S'scalloped' +p69735 +tp69736 +a(g69733 +g69735 +S'edges' +p69737 +tp69738 +a(g69735 +g69737 +S'was' +p69739 +tp69740 +a(g69737 +g69739 +S'elaborately' +p69741 +tp69742 +a(g69739 +g69741 +S'decorated' +p69743 +tp69744 +a(g69741 +g69743 +S'by' +p69745 +tp69746 +a(g69743 +g69745 +S'the' +p69747 +tp69748 +a(g69745 +g69747 +S'sgraffito' +p69749 +tp69750 +a(g69747 +g69749 +S'technique.' +p69751 +tp69752 +a(g69749 +g69751 +S'notice' +p69753 +tp69754 +a(g69751 +g69753 +S'the' +p69755 +tp69756 +a(g69753 +g69755 +S'bold' +p69757 +tp69758 +a(g69755 +g69757 +S'floral' +p69759 +tp69760 +a(g69757 +g69759 +S'design' +p69761 +tp69762 +a(g69759 +g69761 +S'that' +p69763 +tp69764 +a(g69761 +g69763 +S'contrasts' +p69765 +tp69766 +a(g69763 +g69765 +S'with' +p69767 +tp69768 +a(g69765 +g69767 +S'the' +p69769 +tp69770 +a(g69767 +g69769 +S'light' +p69771 +tp69772 +a(g69769 +g69771 +S'strokes' +p69773 +tp69774 +a(g69771 +g69773 +S'of' +p69775 +tp69776 +a(g69773 +g69775 +S'lettering' +p69777 +tp69778 +a(g69775 +g69777 +S'that' +p69779 +tp69780 +a(g69777 +g69779 +S'form' +p69781 +tp69782 +a(g69779 +g69781 +S'a' +p69783 +tp69784 +a(g69781 +g69783 +S'delicate' +p69785 +tp69786 +a(g69783 +g69785 +S'border.' +p69787 +tp69788 +a(g69785 +g69787 +S'splashes' +p69789 +tp69790 +a(g69787 +g69789 +S'of' +p69791 +tp69792 +a(g69789 +g69791 +S'green' +p69793 +tp69794 +a(g69791 +g69793 +S'worked' +p69795 +tp69796 +a(g69793 +g69795 +S'into' +p69797 +tp69798 +a(g69795 +g69797 +S'the' +p69799 +tp69800 +a(g69797 +g69799 +S'glaze' +p69801 +tp69802 +a(g69799 +g69801 +S'heighten' +p69803 +tp69804 +a(g69801 +g69803 +S'the' +p69805 +tp69806 +a(g69803 +g69805 +S'color' +p69807 +tp69808 +a(g69805 +g69807 +S'of' +p69809 +tp69810 +a(g69807 +g69809 +S'the' +p69811 +tp69812 +a(g69809 +g69811 +S'red' +p69813 +tp69814 +a(g69811 +g69813 +S'clay' +p69815 +tp69816 +a(g69813 +g69815 +S'that' +p69817 +tp69818 +a(g69815 +g69817 +S'is' +p69819 +tp69820 +a(g69817 +g69819 +S'exposed.' +p69821 +tp69822 +a(g69819 +g69821 +S'the' +p69823 +tp69824 +a(g69821 +g69823 +S'dish' +p69825 +tp69826 +a(g69823 +g69825 +S'was' +p69827 +tp69828 +a(g69825 +g69827 +S'made' +p69829 +tp69830 +a(g69827 +g69829 +S'by' +p69831 +tp69832 +a(g69829 +g69831 +S'samuel' +p69833 +tp69834 +a(g69831 +g69833 +S'troxel.' +p69835 +tp69836 +a(g69833 +g69835 +S'the' +p69837 +tp69838 +a(g69835 +g69837 +S'inscription' +p69839 +tp69840 +a(g69837 +g69839 +S'reads:' +p69841 +tp69842 +a(g69839 +g69841 +S'"from' +p69843 +tp69844 +a(g69841 +g69843 +S'clay' +p69845 +tp69846 +a(g69843 +g69845 +S'and' +p69847 +tp69848 +a(g69845 +g69847 +S'many' +p69849 +tp69850 +a(g69847 +g69849 +S'skills,' +p69851 +tp69852 +a(g69849 +g69851 +S'the' +p69853 +tp69854 +a(g69851 +g69853 +S'potter' +p69855 +tp69856 +a(g69853 +g69855 +S'fashions' +p69857 +tp69858 +a(g69855 +g69857 +S'what' +p69859 +tp69860 +a(g69857 +g69859 +S'he' +p69861 +tp69862 +a(g69859 +g69861 +S'will,' +p69863 +tp69864 +a(g69861 +g69863 +S'july' +p69865 +tp69866 +a(g69863 +g69865 +S'the' +p69867 +tp69868 +a(g69865 +g69867 +S'19th' +p69869 +tp69870 +a(g69867 +g69869 +S'1823."' +p69871 +tp69872 +a(g69869 +g69871 +S'wilhelm' +p69873 +tp69874 +a(g69871 +g69873 +S'schimmel' +p69875 +tp69876 +a(g69873 +g69875 +S'was' +p69877 +tp69878 +a(g69875 +g69877 +S'a' +p69879 +tp69880 +a(g69877 +g69879 +S'pennsylvania' +p69881 +tp69882 +a(g69879 +g69881 +S'carver' +p69883 +tp69884 +a(g69881 +g69883 +S'well' +p69885 +tp69886 +a(g69883 +g69885 +S'known' +p69887 +tp69888 +a(g69885 +g69887 +S'for' +p69889 +tp69890 +a(g69887 +g69889 +S'his' +p69891 +tp69892 +a(g69889 +g69891 +S'eagles,' +p69893 +tp69894 +a(g69891 +g69893 +S'parrots,' +p69895 +tp69896 +a(g69893 +g69895 +S'and' +p69897 +tp69898 +a(g69895 +g69897 +S'roosters.' +p69899 +tp69900 +a(g69897 +g69899 +S'an' +p69901 +tp69902 +a(g69899 +g69901 +S'example' +p69903 +tp69904 +a(g69901 +g69903 +S'of' +p69905 +tp69906 +a(g69903 +g69905 +S'his' +p69907 +tp69908 +a(g69905 +g69907 +S'work' +p69909 +tp69910 +a(g69907 +g69909 +S'is' +p69911 +tp69912 +a(g69909 +g69911 +S'this' +p69913 +tp69914 +a(g69911 +g69913 +S'small,' +p69915 +tp69916 +a(g69913 +g69915 +S'perky' +p69917 +tp69918 +a(g69915 +g69917 +S'rooster.' +p69919 +tp69920 +a(g69917 +g69919 +S'though' +p69921 +tp69922 +a(g69919 +g69921 +S'just' +p69923 +tp69924 +a(g69921 +g69923 +S'ten' +p69925 +tp69926 +a(g69923 +g69925 +S'inches' +p69927 +tp69928 +a(g69925 +g69927 +S'high,' +p69929 +tp69930 +a(g69927 +g69929 +S'it' +p69931 +tp69932 +a(g69929 +g69931 +S'has' +p69933 +tp69934 +a(g69931 +g69933 +S'an' +p69935 +tp69936 +a(g69933 +g69935 +S'air' +p69937 +tp69938 +a(g69935 +g69937 +S'of' +p69939 +tp69940 +a(g69937 +g69939 +S'monumentality.' +p69941 +tp69942 +a(g69939 +g69941 +S'schimmel,' +p69943 +tp69944 +a(g69941 +g69943 +S'born' +p69945 +tp69946 +a(g69943 +g69945 +S'in' +p69947 +tp69948 +a(g69945 +g69947 +S'germany,' +p69949 +tp69950 +a(g69947 +g69949 +S'immigrated' +p69951 +tp69952 +a(g69949 +g69951 +S'to' +p69953 +tp69954 +a(g69951 +g69953 +S'the' +p69955 +tp69956 +a(g69953 +g69955 +S'united' +p69957 +tp69958 +a(g69955 +g69957 +S'states' +p69959 +tp69960 +a(g69957 +g69959 +S'shortly' +p69961 +tp69962 +a(g69959 +g69961 +S'after' +p69963 +tp69964 +a(g69961 +g69963 +S'the' +p69965 +tp69966 +a(g69963 +g69965 +S'civil' +p69967 +tp69968 +a(g69965 +g69967 +S'war.' +p69969 +tp69970 +a(g69967 +g69969 +S'he' +p69971 +tp69972 +a(g69969 +g69971 +S'was' +p69973 +tp69974 +a(g69971 +g69973 +S'an' +p69975 +tp69976 +a(g69973 +g69975 +S'itinerant' +p69977 +tp69978 +a(g69975 +g69977 +S'worker' +p69979 +tp69980 +a(g69977 +g69979 +S'who' +p69981 +tp69982 +a(g69979 +g69981 +S'wandered' +p69983 +tp69984 +a(g69981 +g69983 +S'the' +p69985 +tp69986 +a(g69983 +g69985 +S'pennsylvania' +p69987 +tp69988 +a(g69985 +g69987 +S'countryside' +p69989 +tp69990 +a(g69987 +g69989 +S'making' +p69991 +tp69992 +a(g69989 +g69991 +S'carvings' +p69993 +tp69994 +a(g69991 +g69993 +S'to' +p69995 +tp69996 +a(g69993 +g69995 +S'earn' +p69997 +tp69998 +a(g69995 +g69997 +S'his' +p69999 +tp70000 +a(g69997 +g69999 +S'keep.' +p70001 +tp70002 +a(g69999 +g70001 +S'his' +p70003 +tp70004 +a(g70001 +g70003 +S'only' +p70005 +tp70006 +a(g70003 +g70005 +S'tools' +p70007 +tp70008 +a(g70005 +g70007 +S'were' +p70009 +tp70010 +a(g70007 +g70009 +S'a' +p70011 +tp70012 +a(g70009 +g70011 +S'jackknife,' +p70013 +tp70014 +a(g70011 +g70013 +S'bits' +p70015 +tp70016 +a(g70013 +g70015 +S'of' +p70017 +tp70018 +a(g70015 +g70017 +S'glass' +p70019 +tp70020 +a(g70017 +g70019 +S'to' +p70021 +tp70022 +a(g70019 +g70021 +S'smooth' +p70023 +tp70024 +a(g70021 +g70023 +S'away' +p70025 +tp70026 +a(g70023 +g70025 +S'the' +p70027 +tp70028 +a(g70025 +g70027 +S'knife' +p70029 +tp70030 +a(g70027 +g70029 +S'marks,' +p70031 +tp70032 +a(g70029 +g70031 +S'and' +p70033 +tp70034 +a(g70031 +g70033 +S'a' +p70035 +tp70036 +a(g70033 +g70035 +S'few' +p70037 +tp70038 +a(g70035 +g70037 +S'paint' +p70039 +tp70040 +a(g70037 +g70039 +S'brushes.' +p70041 +tp70042 +a(g70039 +g70041 +S'he' +p70043 +tp70044 +a(g70041 +g70043 +S'died' +p70045 +tp70046 +a(g70043 +g70045 +S'in' +p70047 +tp70048 +a(g70045 +g70047 +S'a' +p70049 +tp70050 +a(g70047 +g70049 +S'almshouse,' +p70051 +tp70052 +a(g70049 +g70051 +S'but' +p70053 +tp70054 +a(g70051 +g70053 +S'today' +p70055 +tp70056 +a(g70053 +g70055 +S'his' +p70057 +tp70058 +a(g70055 +g70057 +S'carvings' +p70059 +tp70060 +a(g70057 +g70059 +S'are' +p70061 +tp70062 +a(g70059 +g70061 +S'famous.' +p70063 +tp70064 +a(g70061 +g70063 +S'baskets' +p70065 +tp70066 +a(g70063 +g70065 +S'of' +p70067 +tp70068 +a(g70065 +g70067 +S'the' +p70069 +tp70070 +a(g70067 +g70069 +S'california' +p70071 +tp70072 +a(g70069 +g70071 +S'indians' +p70073 +tp70074 +a(g70071 +g70073 +S'have' +p70075 +tp70076 +a(g70073 +g70075 +S'been' +p70077 +tp70078 +a(g70075 +g70077 +S'considered' +p70079 +tp70080 +a(g70077 +g70079 +S'the' +p70081 +tp70082 +a(g70079 +g70081 +S'finest' +p70083 +tp70084 +a(g70081 +g70083 +S'of' +p70085 +tp70086 +a(g70083 +g70085 +S'their' +p70087 +tp70088 +a(g70085 +g70087 +S'type' +p70089 +tp70090 +a(g70087 +g70089 +S'ever' +p70091 +tp70092 +a(g70089 +g70091 +S'made.' +p70093 +tp70094 +a(g70091 +g70093 +S'this' +p70095 +tp70096 +a(g70093 +g70095 +S'one' +p70097 +tp70098 +a(g70095 +g70097 +S'was' +p70099 +tp70100 +a(g70097 +g70099 +S'made' +p70101 +tp70102 +a(g70099 +g70101 +S'in' +p70103 +tp70104 +a(g70101 +g70103 +S'1822' +p70105 +tp70106 +a(g70103 +g70105 +S'at' +p70107 +tp70108 +a(g70105 +g70107 +S'the' +p70109 +tp70110 +a(g70107 +g70109 +S'mission' +p70111 +tp70112 +a(g70109 +g70111 +S'of' +p70113 +tp70114 +a(g70111 +g70113 +S'buenaventura.' +p70115 +tp70116 +a(g70113 +g70115 +S'an' +p70117 +tp70118 +a(g70115 +g70117 +S'inscription' +p70119 +tp70120 +a(g70117 +g70119 +S'woven' +p70121 +tp70122 +a(g70119 +g70121 +S'into' +p70123 +tp70124 +a(g70121 +g70123 +S'the' +p70125 +tp70126 +a(g70123 +g70125 +S'border' +p70127 +tp70128 +a(g70125 +g70127 +S'reads:' +p70129 +tp70130 +a(g70127 +g70129 +S'"made' +p70131 +tp70132 +a(g70129 +g70131 +S'by' +p70133 +tp70134 +a(g70131 +g70133 +S'anna' +p70135 +tp70136 +a(g70133 +g70135 +S'maria' +p70137 +tp70138 +a(g70135 +g70137 +S'marta,' +p70139 +tp70140 +a(g70137 +g70139 +S'neophyte' +p70141 +tp70142 +a(g70139 +g70141 +S'of' +p70143 +tp70144 +a(g70141 +g70143 +S'the' +p70145 +tp70146 +a(g70143 +g70145 +S'mission' +p70147 +tp70148 +a(g70145 +g70147 +S'of' +p70149 +tp70150 +a(g70147 +g70149 +S'the' +p70151 +tp70152 +a(g70149 +g70151 +S'serafic' +p70153 +tp70154 +a(g70151 +g70153 +S'doctor,' +p70155 +tp70156 +a(g70153 +g70155 +S'saint' +p70157 +tp70158 +a(g70155 +g70157 +S'bonaventura."' +p70159 +tp70160 +a(g70157 +g70159 +S'the' +p70161 +tp70162 +a(g70159 +g70161 +S'central' +p70163 +tp70164 +a(g70161 +g70163 +S'panel' +p70165 +tp70166 +a(g70163 +g70165 +S'shows' +p70167 +tp70168 +a(g70165 +g70167 +S'the' +p70169 +tp70170 +a(g70167 +g70169 +S'coat' +p70171 +tp70172 +a(g70169 +g70171 +S'of' +p70173 +tp70174 +a(g70171 +g70173 +S'arms' +p70175 +tp70176 +a(g70173 +g70175 +S'of' +p70177 +tp70178 +a(g70175 +g70177 +S'spain:' +p70179 +tp70180 +a(g70177 +g70179 +S'a' +p70181 +tp70182 +a(g70179 +g70181 +S'crown' +p70183 +tp70184 +a(g70181 +g70183 +S'above' +p70185 +tp70186 +a(g70183 +g70185 +S'the' +p70187 +tp70188 +a(g70185 +g70187 +S'castles' +p70189 +tp70190 +a(g70187 +g70189 +S'of' +p70191 +tp70192 +a(g70189 +g70191 +S'castile' +p70193 +tp70194 +a(g70191 +g70193 +S'and' +p70195 +tp70196 +a(g70193 +g70195 +S'the' +p70197 +tp70198 +a(g70195 +g70197 +S'lions' +p70199 +tp70200 +a(g70197 +g70199 +S'of' +p70201 +tp70202 +a(g70199 +g70201 +S'leon.' +p70203 +tp70204 +a(g70201 +g70203 +S'the' +p70205 +tp70206 +a(g70203 +g70205 +S'representation' +p70207 +tp70208 +a(g70205 +g70207 +S'of' +p70209 +tp70210 +a(g70207 +g70209 +S'the' +p70211 +tp70212 +a(g70209 +g70211 +S'coat' +p70213 +tp70214 +a(g70211 +g70213 +S'of' +p70215 +tp70216 +a(g70213 +g70215 +S'arms' +p70217 +tp70218 +a(g70215 +g70217 +S'is' +p70219 +tp70220 +a(g70217 +g70219 +S'so' +p70221 +tp70222 +a(g70219 +g70221 +S'simplified' +p70223 +tp70224 +a(g70221 +g70223 +S'that' +p70225 +tp70226 +a(g70223 +g70225 +S'it' +p70227 +tp70228 +a(g70225 +g70227 +S'is' +p70229 +tp70230 +a(g70227 +g70229 +S'barely' +p70231 +tp70232 +a(g70229 +g70231 +S'recognizable,' +p70233 +tp70234 +a(g70231 +g70233 +S'partly' +p70235 +tp70236 +a(g70233 +g70235 +S'because' +p70237 +tp70238 +a(g70235 +g70237 +S'the' +p70239 +tp70240 +a(g70237 +g70239 +S'technique' +p70241 +tp70242 +a(g70239 +g70241 +S'of' +p70243 +tp70244 +a(g70241 +g70243 +S'weaving' +p70245 +tp70246 +a(g70243 +g70245 +S'tends' +p70247 +tp70248 +a(g70245 +g70247 +S'to' +p70249 +tp70250 +a(g70247 +g70249 +S'give' +p70251 +tp70252 +a(g70249 +g70251 +S'a' +p70253 +tp70254 +a(g70251 +g70253 +S'geometric' +p70255 +tp70256 +a(g70253 +g70255 +S'character' +p70257 +tp70258 +a(g70255 +g70257 +S'to' +p70259 +tp70260 +a(g70257 +g70259 +S'any' +p70261 +tp70262 +a(g70259 +g70261 +S'design.' +p70263 +tp70264 +a(g70261 +g70263 +S'the' +p70265 +tp70266 +a(g70263 +g70265 +S'basket' +p70267 +tp70268 +a(g70265 +g70267 +S'is' +p70269 +tp70270 +a(g70267 +g70269 +S'made' +p70271 +tp70272 +a(g70269 +g70271 +S'in' +p70273 +tp70274 +a(g70271 +g70273 +S'the' +p70275 +tp70276 +a(g70273 +g70275 +S'usual' +p70277 +tp70278 +a(g70275 +g70277 +S'indian' +p70279 +tp70280 +a(g70277 +g70279 +S'fashion:' +p70281 +tp70282 +a(g70279 +g70281 +S'coils' +p70283 +tp70284 +a(g70281 +g70283 +S'of' +p70285 +tp70286 +a(g70283 +g70285 +S'a' +p70287 +tp70288 +a(g70285 +g70287 +S'tall,' +p70289 +tp70290 +a(g70287 +g70289 +S'thin' +p70291 +tp70292 +a(g70289 +g70291 +S'grass' +p70293 +tp70294 +a(g70291 +g70293 +S'were' +p70295 +tp70296 +a(g70293 +g70295 +S'covered' +p70297 +tp70298 +a(g70295 +g70297 +S'with' +p70299 +tp70300 +a(g70297 +g70299 +S'rush' +p70301 +tp70302 +a(g70299 +g70301 +S'and' +p70303 +tp70304 +a(g70301 +g70303 +S'sewn' +p70305 +tp70306 +a(g70303 +g70305 +S'together.' +p70307 +tp70308 +a(g70305 +g70307 +S'before' +p70309 +tp70310 +a(g70307 +g70309 +S'the' +p70311 +tp70312 +a(g70309 +g70311 +S'civil' +p70313 +tp70314 +a(g70311 +g70313 +S'war,' +p70315 +tp70316 +a(g70313 +g70315 +S'most' +p70317 +tp70318 +a(g70315 +g70317 +S'american' +p70319 +tp70320 +a(g70317 +g70319 +S'dolls' +p70321 +tp70322 +a(g70319 +g70321 +S'were' +p70323 +tp70324 +a(g70321 +g70323 +S'made' +p70325 +tp70326 +a(g70323 +g70325 +S'at' +p70327 +tp70328 +a(g70325 +g70327 +S'home,' +p70329 +tp70330 +a(g70327 +g70329 +S'and' +p70331 +tp70332 +a(g70329 +g70331 +S'the' +p70333 +tp70334 +a(g70331 +g70333 +S'practice' +p70335 +tp70336 +a(g70333 +g70335 +S'continued' +p70337 +tp70338 +a(g70335 +g70337 +S'much' +p70339 +tp70340 +a(g70337 +g70339 +S'later,' +p70341 +tp70342 +a(g70339 +g70341 +S'in' +p70343 +tp70344 +a(g70341 +g70343 +S'many' +p70345 +tp70346 +a(g70343 +g70345 +S'cases.' +p70347 +tp70348 +a(g70345 +g70347 +S'this' +p70349 +tp70350 +a(g70347 +g70349 +S'rag' +p70351 +tp70352 +a(g70349 +g70351 +S'doll,' +p70353 +tp70354 +a(g70351 +g70353 +S'one' +p70355 +tp70356 +a(g70353 +g70355 +S'of' +p70357 +tp70358 +a(g70355 +g70357 +S'the' +p70359 +tp70360 +a(g70357 +g70359 +S'most' +p70361 +tp70362 +a(g70359 +g70361 +S'popular' +p70363 +tp70364 +a(g70361 +g70363 +S'doll' +p70365 +tp70366 +a(g70363 +g70365 +S'types,' +p70367 +tp70368 +a(g70365 +g70367 +S'is' +p70369 +tp70370 +a(g70367 +g70369 +S'a' +p70371 +tp70372 +a(g70369 +g70371 +S'charming' +p70373 +tp70374 +a(g70371 +g70373 +S'product' +p70375 +tp70376 +a(g70373 +g70375 +S'of' +p70377 +tp70378 +a(g70375 +g70377 +S'home' +p70379 +tp70380 +a(g70377 +g70379 +S'manufacture' +p70381 +tp70382 +a(g70379 +g70381 +S'during' +p70383 +tp70384 +a(g70381 +g70383 +S'the' +p70385 +tp70386 +a(g70383 +g70385 +S'1880s.' +p70387 +tp70388 +a(g70385 +g70387 +S'named' +p70389 +tp70390 +a(g70387 +g70389 +S'"mollie' +p70391 +tp70392 +a(g70389 +g70391 +S'bentley,"' +p70393 +tp70394 +a(g70391 +g70393 +S'this' +p70395 +tp70396 +a(g70393 +g70395 +S'doll' +p70397 +tp70398 +a(g70395 +g70397 +S'was' +p70399 +tp70400 +a(g70397 +g70399 +S'the' +p70401 +tp70402 +a(g70399 +g70401 +S'work' +p70403 +tp70404 +a(g70401 +g70403 +S'of' +p70405 +tp70406 +a(g70403 +g70405 +S'a' +p70407 +tp70408 +a(g70405 +g70407 +S'girl' +p70409 +tp70410 +a(g70407 +g70409 +S'by' +p70411 +tp70412 +a(g70409 +g70411 +S'the' +p70413 +tp70414 +a(g70411 +g70413 +S'same' +p70415 +tp70416 +a(g70413 +g70415 +S'name' +p70417 +tp70418 +a(g70415 +g70417 +S'who' +p70419 +tp70420 +a(g70417 +g70419 +S'lived' +p70421 +tp70422 +a(g70419 +g70421 +S'in' +p70423 +tp70424 +a(g70421 +g70423 +S'lancaster' +p70425 +tp70426 +a(g70423 +g70425 +S'county,' +p70427 +tp70428 +a(g70425 +g70427 +S'pennsylvania.' +p70429 +tp70430 +a(g70427 +g70429 +S'the' +p70431 +tp70432 +a(g70429 +g70431 +S"doll's" +p70433 +tp70434 +a(g70431 +g70433 +S'body' +p70435 +tp70436 +a(g70433 +g70435 +S'and' +p70437 +tp70438 +a(g70435 +g70437 +S'dress' +p70439 +tp70440 +a(g70437 +g70439 +S'were' +p70441 +tp70442 +a(g70439 +g70441 +S'made' +p70443 +tp70444 +a(g70441 +g70443 +S'of' +p70445 +tp70446 +a(g70443 +g70445 +S'various' +p70447 +tp70448 +a(g70445 +g70447 +S'scraps' +p70449 +tp70450 +a(g70447 +g70449 +S'of' +p70451 +tp70452 +a(g70449 +g70451 +S'materials' +p70453 +tp70454 +a(g70451 +g70453 +S'found' +p70455 +tp70456 +a(g70453 +g70455 +S'about' +p70457 +tp70458 +a(g70455 +g70457 +S'the' +p70459 +tp70460 +a(g70457 +g70459 +S'house.' +p70461 +tp70462 +a(g70459 +g70461 +S'"mollie\'s"' +p70463 +tp70464 +a(g70461 +g70463 +S'clothing' +p70465 +tp70466 +a(g70463 +g70465 +S'includes' +p70467 +tp70468 +a(g70465 +g70467 +S'two' +p70469 +tp70470 +a(g70467 +g70469 +S'types' +p70471 +tp70472 +a(g70469 +g70471 +S'of' +p70473 +tp70474 +a(g70471 +g70473 +S'cotton' +p70475 +tp70476 +a(g70473 +g70475 +S'fabric' +p70477 +tp70478 +a(g70475 +g70477 +S'popular' +p70479 +tp70480 +a(g70477 +g70479 +S'in' +p70481 +tp70482 +a(g70479 +g70481 +S'the' +p70483 +tp70484 +a(g70481 +g70483 +S'nineteenth' +p70485 +tp70486 +a(g70483 +g70485 +S'century:' +p70487 +tp70488 +a(g70485 +g70487 +S'calico,' +p70489 +tp70490 +a(g70487 +g70489 +S'a' +p70491 +tp70492 +a(g70489 +g70491 +S'name' +p70493 +tp70494 +a(g70491 +g70493 +S'derived' +p70495 +tp70496 +a(g70493 +g70495 +S'from' +p70497 +tp70498 +a(g70495 +g70497 +S'calicut,' +p70499 +tp70500 +a(g70497 +g70499 +S'india,' +p70501 +tp70502 +a(g70499 +g70501 +S'where' +p70503 +tp70504 +a(g70501 +g70503 +S'cotton' +p70505 +tp70506 +a(g70503 +g70505 +S'textiles' +p70507 +tp70508 +a(g70505 +g70507 +S'were' +p70509 +tp70510 +a(g70507 +g70509 +S'first' +p70511 +tp70512 +a(g70509 +g70511 +S'printed;' +p70513 +tp70514 +a(g70511 +g70513 +S'and' +p70515 +tp70516 +a(g70513 +g70515 +S'gingham,' +p70517 +tp70518 +a(g70515 +g70517 +S'whose' +p70519 +tp70520 +a(g70517 +g70519 +S'name' +p70521 +tp70522 +a(g70519 +g70521 +S'is' +p70523 +tp70524 +a(g70521 +g70523 +S'of' +p70525 +tp70526 +a(g70523 +g70525 +S'either' +p70527 +tp70528 +a(g70525 +g70527 +S'malayan' +p70529 +tp70530 +a(g70527 +g70529 +S'or' +p70531 +tp70532 +a(g70529 +g70531 +S'french' +p70533 +tp70534 +a(g70531 +g70533 +S'origin,' +p70535 +tp70536 +a(g70533 +g70535 +S'a' +p70537 +tp70538 +a(g70535 +g70537 +S'fabric' +p70539 +tp70540 +a(g70537 +g70539 +S'that' +p70541 +tp70542 +a(g70539 +g70541 +S'had' +p70543 +tp70544 +a(g70541 +g70543 +S'been' +p70545 +tp70546 +a(g70543 +g70545 +S'used' +p70547 +tp70548 +a(g70545 +g70547 +S'from' +p70549 +tp70550 +a(g70547 +g70549 +S'the' +p70551 +tp70552 +a(g70549 +g70551 +S'early' +p70553 +tp70554 +a(g70551 +g70553 +S'days' +p70555 +tp70556 +a(g70553 +g70555 +S'of' +p70557 +tp70558 +a(g70555 +g70557 +S'the' +p70559 +tp70560 +a(g70557 +g70559 +S'colonies.' +p70561 +tp70562 +a(g70559 +g70561 +S'a' +p70563 +tp70564 +a(g70561 +g70563 +S'woman' +p70565 +tp70566 +a(g70563 +g70565 +S'in' +p70567 +tp70568 +a(g70565 +g70567 +S'a' +p70569 +tp70570 +a(g70567 +g70569 +S'powder-pink' +p70571 +tp70572 +a(g70569 +g70571 +S'gown' +p70573 +tp70574 +a(g70571 +g70573 +S'seems' +p70575 +tp70576 +a(g70573 +g70575 +S'to' +p70577 +tp70578 +a(g70575 +g70577 +S'be' +p70579 +tp70580 +a(g70577 +g70579 +S'at' +p70581 +tp70582 +a(g70579 +g70581 +S'the' +p70583 +tp70584 +a(g70581 +g70583 +S'center' +p70585 +tp70586 +a(g70583 +g70585 +S'of' +p70587 +tp70588 +a(g70585 +g70587 +S'a' +p70589 +tp70590 +a(g70587 +g70589 +S'domestic' +p70591 +tp70592 +a(g70589 +g70591 +S'crisis' +p70593 +tp70594 +a(g70591 +g70593 +S'as' +p70595 +tp70596 +a(g70593 +g70595 +S'she' +p70597 +tp70598 +a(g70595 +g70597 +S'sinks' +p70599 +tp70600 +a(g70597 +g70599 +S'back,' +p70601 +tp70602 +a(g70599 +g70601 +S'deathly' +p70603 +tp70604 +a(g70601 +g70603 +S'pale,' +p70605 +tp70606 +a(g70603 +g70605 +S'into' +p70607 +tp70608 +a(g70605 +g70607 +S'a' +p70609 +tp70610 +a(g70607 +g70609 +S'chair.' +p70611 +tp70612 +a(g70609 +g70611 +S'the' +p70613 +tp70614 +a(g70611 +g70613 +S'explanation' +p70615 +tp70616 +a(g70613 +g70615 +S'for' +p70617 +tp70618 +a(g70615 +g70617 +S'her' +p70619 +tp70620 +a(g70617 +g70619 +S'indisposition' +p70621 +tp70622 +a(g70619 +g70621 +S'is' +p70623 +tp70624 +a(g70621 +g70623 +S'not' +p70625 +tp70626 +a(g70623 +g70625 +S'hard' +p70627 +tp70628 +a(g70625 +g70627 +S'to' +p70629 +tp70630 +a(g70627 +g70629 +S'discover.' +p70631 +tp70632 +a(g70629 +g70631 +S'a' +p70633 +tp70634 +a(g70631 +g70633 +S'table' +p70635 +tp70636 +a(g70633 +g70635 +S'has' +p70637 +tp70638 +a(g70635 +g70637 +S'been' +p70639 +tp70640 +a(g70637 +g70639 +S'tipped' +p70641 +tp70642 +a(g70639 +g70641 +S'over' +p70643 +tp70644 +a(g70641 +g70643 +S'at' +p70645 +tp70646 +a(g70643 +g70645 +S'the' +p70647 +tp70648 +a(g70645 +g70647 +S'left,' +p70649 +tp70650 +a(g70647 +g70649 +S'spilling' +p70651 +tp70652 +a(g70649 +g70651 +S'cards,' +p70653 +tp70654 +a(g70651 +g70653 +S'an' +p70655 +tp70656 +a(g70653 +g70655 +S'open' +p70657 +tp70658 +a(g70655 +g70657 +S'purse,' +p70659 +tp70660 +a(g70657 +g70659 +S'and' +p70661 +tp70662 +a(g70659 +g70661 +S'coins' +p70663 +tp70664 +a(g70661 +g70663 +S'on' +p70665 +tp70666 +a(g70663 +g70665 +S'to' +p70667 +tp70668 +a(g70665 +g70667 +S'the' +p70669 +tp70670 +a(g70667 +g70669 +S'floor.' +p70671 +tp70672 +a(g70669 +g70671 +S'the' +p70673 +tp70674 +a(g70671 +g70673 +S'lady' +p70675 +tp70676 +a(g70673 +g70675 +S'has' +p70677 +tp70678 +a(g70675 +g70677 +S'been' +p70679 +tp70680 +a(g70677 +g70679 +S'gambling.' +p70681 +tp70682 +a(g70679 +g70681 +S'dealt' +p70683 +tp70684 +a(g70681 +g70683 +S'an' +p70685 +tp70686 +a(g70683 +g70685 +S'unfortunate' +p70687 +tp70688 +a(g70685 +g70687 +S'hand' +p70689 +tp70690 +a(g70687 +g70689 +S'of' +p70691 +tp70692 +a(g70689 +g70691 +S'cards,' +p70693 +tp70694 +a(g70691 +g70693 +S'she' +p70695 +tp70696 +a(g70693 +g70695 +S'pretended' +p70697 +tp70698 +a(g70695 +g70697 +S'to' +p70699 +tp70700 +a(g70697 +g70699 +S'faint,' +p70701 +tp70702 +a(g70699 +g70701 +S'conveniently' +p70703 +tp70704 +a(g70701 +g70703 +S'upsetting' +p70705 +tp70706 +a(g70703 +g70705 +S'the' +p70707 +tp70708 +a(g70705 +g70707 +S'table' +p70709 +tp70710 +a(g70707 +g70709 +S'as' +p70711 +tp70712 +a(g70709 +g70711 +S'she' +p70713 +tp70714 +a(g70711 +g70713 +S'swooned.' +p70715 +tp70716 +a(g70713 +g70715 +S'her' +p70717 +tp70718 +a(g70715 +g70717 +S'servants' +p70719 +tp70720 +a(g70717 +g70719 +S'and' +p70721 +tp70722 +a(g70719 +g70721 +S'companions' +p70723 +tp70724 +a(g70721 +g70723 +S'rush' +p70725 +tp70726 +a(g70723 +g70725 +S'to' +p70727 +tp70728 +a(g70725 +g70727 +S'her' +p70729 +tp70730 +a(g70727 +g70729 +S'aid,' +p70731 +tp70732 +a(g70729 +g70731 +S'while' +p70733 +tp70734 +a(g70731 +g70733 +S'the' +p70735 +tp70736 +a(g70733 +g70735 +S'man' +p70737 +tp70738 +a(g70735 +g70737 +S'on' +p70739 +tp70740 +a(g70737 +g70739 +S'the' +p70741 +tp70742 +a(g70739 +g70741 +S'right' +p70743 +tp70744 +a(g70741 +g70743 +S'may' +p70745 +tp70746 +a(g70743 +g70745 +S'be' +p70747 +tp70748 +a(g70745 +g70747 +S'a' +p70749 +tp70750 +a(g70747 +g70749 +S'doctor,' +p70751 +tp70752 +a(g70749 +g70751 +S'or' +p70753 +tp70754 +a(g70751 +g70753 +S'a' +p70755 +tp70756 +a(g70753 +g70755 +S'gambling' +p70757 +tp70758 +a(g70755 +g70757 +S'partner' +p70759 +tp70760 +a(g70757 +g70759 +S'who' +p70761 +tp70762 +a(g70759 +g70761 +S'had' +p70763 +tp70764 +a(g70761 +g70763 +S'been' +p70765 +tp70766 +a(g70763 +g70765 +S'winning.' +p70767 +tp70768 +a(g70765 +g70767 +S"longhi's" +p70769 +tp70770 +a(g70767 +g70769 +S'fame' +p70771 +tp70772 +a(g70769 +g70771 +S'rested' +p70773 +tp70774 +a(g70771 +g70773 +S'on' +p70775 +tp70776 +a(g70773 +g70775 +S'such' +p70777 +tp70778 +a(g70775 +g70777 +S'intimate' +p70779 +tp70780 +a(g70777 +g70779 +S'glimpses' +p70781 +tp70782 +a(g70779 +g70781 +S'of' +p70783 +tp70784 +a(g70781 +g70783 +S'venetian' +p70785 +tp70786 +a(g70783 +g70785 +S'upperclass' +p70787 +tp70788 +a(g70785 +g70787 +S'life' +p70789 +tp70790 +a(g70787 +g70789 +S'in' +p70791 +tp70792 +a(g70789 +g70791 +S'a' +p70793 +tp70794 +a(g70791 +g70793 +S'period' +p70795 +tp70796 +a(g70793 +g70795 +S'of' +p70797 +tp70798 +a(g70795 +g70797 +S'refined' +p70799 +tp70800 +a(g70797 +g70799 +S'decadence.' +p70801 +tp70802 +a(g70799 +g70801 +S'his' +p70803 +tp70804 +a(g70801 +g70803 +S'aristocratic' +p70805 +tp70806 +a(g70803 +g70805 +S'subjects' +p70807 +tp70808 +a(g70805 +g70807 +S'were' +p70809 +tp70810 +a(g70807 +g70809 +S'also' +p70811 +tp70812 +a(g70809 +g70811 +S'his' +p70813 +tp70814 +a(g70811 +g70813 +S'patrons,' +p70815 +tp70816 +a(g70813 +g70815 +S'and' +p70817 +tp70818 +a(g70815 +g70817 +S'they' +p70819 +tp70820 +a(g70817 +g70819 +S'would' +p70821 +tp70822 +a(g70819 +g70821 +S'have' +p70823 +tp70824 +a(g70821 +g70823 +S'appreciated' +p70825 +tp70826 +a(g70823 +g70825 +S'this' +p70827 +tp70828 +a(g70825 +g70827 +S'accurate' +p70829 +tp70830 +a(g70827 +g70829 +S'portrayal' +p70831 +tp70832 +a(g70829 +g70831 +S'of' +p70833 +tp70834 +a(g70831 +g70833 +S'an' +p70835 +tp70836 +a(g70833 +g70835 +S'elegant' +p70837 +tp70838 +a(g70835 +g70837 +S'interior' +p70839 +tp70840 +a(g70837 +g70839 +S'with' +p70841 +tp70842 +a(g70839 +g70841 +S'a' +p70843 +tp70844 +a(g70841 +g70843 +S'chinoiserie' +p70845 +tp70846 +a(g70843 +g70845 +S'card' +p70847 +tp70848 +a(g70845 +g70847 +S'table' +p70849 +tp70850 +a(g70847 +g70849 +S'and' +p70851 +tp70852 +a(g70849 +g70851 +S'moss-green' +p70853 +tp70854 +a(g70851 +g70853 +S'damask' +p70855 +tp70856 +a(g70853 +g70855 +S'on' +p70857 +tp70858 +a(g70855 +g70857 +S'the' +p70859 +tp70860 +a(g70857 +g70859 +S'walls.' +p70861 +tp70862 +a(g70859 +g70861 +S'the' +p70863 +tp70864 +a(g70861 +g70863 +S'realistic' +p70865 +tp70866 +a(g70863 +g70865 +S'comedy' +p70867 +tp70868 +a(g70865 +g70867 +S'of' +p70869 +tp70870 +a(g70867 +g70869 +S"longhi's" +p70871 +tp70872 +a(g70869 +g70871 +S'playwright' +p70873 +tp70874 +a(g70871 +g70873 +S'friend' +p70875 +tp70876 +a(g70873 +g70875 +S'carlo' +p70877 +tp70878 +a(g70875 +g70877 +S'goldoni' +p70879 +tp70880 +a(g70877 +g70879 +S'may' +p70881 +tp70882 +a(g70879 +g70881 +S'have' +p70883 +tp70884 +a(g70881 +g70883 +S'been' +p70885 +tp70886 +a(g70883 +g70885 +S'a' +p70887 +tp70888 +a(g70885 +g70887 +S'source' +p70889 +tp70890 +a(g70887 +g70889 +S'of' +p70891 +tp70892 +a(g70889 +g70891 +S'inspiration,' +p70893 +tp70894 +a(g70891 +g70893 +S'but' +p70895 +tp70896 +a(g70893 +g70895 +S"longhi's" +p70897 +tp70898 +a(g70895 +g70897 +S'vignettes' +p70899 +tp70900 +a(g70897 +g70899 +S'lack' +p70901 +tp70902 +a(g70899 +g70901 +S"goldoni's" +p70903 +tp70904 +a(g70901 +g70903 +S'satirical' +p70905 +tp70906 +a(g70903 +g70905 +S'bite.' +p70907 +tp70908 +a(g70905 +g70907 +S'the' +p70909 +tp70910 +a(g70907 +g70909 +S'feathery' +p70911 +tp70912 +a(g70909 +g70911 +S'touch' +p70913 +tp70914 +a(g70911 +g70913 +S'of' +p70915 +tp70916 +a(g70913 +g70915 +S"longhi's" +p70917 +tp70918 +a(g70915 +g70917 +S'brush' +p70919 +tp70920 +a(g70917 +g70919 +S'and' +p70921 +tp70922 +a(g70919 +g70921 +S'the' +p70923 +tp70924 +a(g70921 +g70923 +S'filtered' +p70925 +tp70926 +a(g70923 +g70925 +S'light' +p70927 +tp70928 +a(g70925 +g70927 +S'soften' +p70929 +tp70930 +a(g70927 +g70929 +S'the' +p70931 +tp70932 +a(g70929 +g70931 +S'scene,' +p70933 +tp70934 +a(g70931 +g70933 +S'as' +p70935 +tp70936 +a(g70933 +g70935 +S'do' +p70937 +tp70938 +a(g70935 +g70937 +S'the' +p70939 +tp70940 +a(g70937 +g70939 +S'pastel' +p70941 +tp70942 +a(g70939 +g70941 +S'colors' +p70943 +tp70944 +a(g70941 +g70943 +S'and' +p70945 +tp70946 +a(g70943 +g70945 +S'the' +p70947 +tp70948 +a(g70945 +g70947 +S'diminutive,' +p70949 +tp70950 +a(g70947 +g70949 +S'doll-like' +p70951 +tp70952 +a(g70949 +g70951 +S'actors.' +p70953 +tp70954 +a(g70951 +g70953 +S'both' +p70955 +tp70956 +a(g70953 +g70955 +S'earthenware' +p70957 +tp70958 +a(g70955 +g70957 +S'and' +p70959 +tp70960 +a(g70957 +g70959 +S'porcelain' +p70961 +tp70962 +a(g70959 +g70961 +S'were' +p70963 +tp70964 +a(g70961 +g70963 +S'produced' +p70965 +tp70966 +a(g70963 +g70965 +S'at' +p70967 +tp70968 +a(g70965 +g70967 +S'the' +p70969 +tp70970 +a(g70967 +g70969 +S'bennington' +p70971 +tp70972 +a(g70969 +g70971 +S'potteries.' +p70973 +tp70974 +a(g70971 +g70973 +S'their' +p70975 +tp70976 +a(g70973 +g70975 +S'output' +p70977 +tp70978 +a(g70975 +g70977 +S'included' +p70979 +tp70980 +a(g70977 +g70979 +S'functional' +p70981 +tp70982 +a(g70979 +g70981 +S'items' +p70983 +tp70984 +a(g70981 +g70983 +S'and' +p70985 +tp70986 +a(g70983 +g70985 +S'a' +p70987 +tp70988 +a(g70985 +g70987 +S'great' +p70989 +tp70990 +a(g70987 +g70989 +S'variety' +p70991 +tp70992 +a(g70989 +g70991 +S'of' +p70993 +tp70994 +a(g70991 +g70993 +S'decorative' +p70995 +tp70996 +a(g70993 +g70995 +S'wares.' +p70997 +tp70998 +a(g70995 +g70997 +S'among' +p70999 +tp71000 +a(g70997 +g70999 +S'the' +p71001 +tp71002 +a(g70999 +g71001 +S'most' +p71003 +tp71004 +a(g71001 +g71003 +S'popular' +p71005 +tp71006 +a(g71003 +g71005 +S'of' +p71007 +tp71008 +a(g71005 +g71007 +S'the' +p71009 +tp71010 +a(g71007 +g71009 +S'elaborately' +p71011 +tp71012 +a(g71009 +g71011 +S'modeled' +p71013 +tp71014 +a(g71011 +g71013 +S'forms' +p71015 +tp71016 +a(g71013 +g71015 +S'is' +p71017 +tp71018 +a(g71015 +g71017 +S'the' +p71019 +tp71020 +a(g71017 +g71019 +S'so-called' +p71021 +tp71022 +a(g71019 +g71021 +S'"bennington' +p71023 +tp71024 +a(g71021 +g71023 +S'poodle,"' +p71025 +tp71026 +a(g71023 +g71025 +S'a' +p71027 +tp71028 +a(g71025 +g71027 +S'standing' +p71029 +tp71030 +a(g71027 +g71029 +S'poodle' +p71031 +tp71032 +a(g71029 +g71031 +S'with' +p71033 +tp71034 +a(g71031 +g71033 +S'a' +p71035 +tp71036 +a(g71033 +g71035 +S'basket' +p71037 +tp71038 +a(g71035 +g71037 +S'of' +p71039 +tp71040 +a(g71037 +g71039 +S'fruit' +p71041 +tp71042 +a(g71039 +g71041 +S'in' +p71043 +tp71044 +a(g71041 +g71043 +S'its' +p71045 +tp71046 +a(g71043 +g71045 +S'mouth.' +p71047 +tp71048 +a(g71045 +g71047 +S'these' +p71049 +tp71050 +a(g71047 +g71049 +S'poodles' +p71051 +tp71052 +a(g71049 +g71051 +S'were' +p71053 +tp71054 +a(g71051 +g71053 +S'usually' +p71055 +tp71056 +a(g71053 +g71055 +S'made' +p71057 +tp71058 +a(g71055 +g71057 +S'in' +p71059 +tp71060 +a(g71057 +g71059 +S'pairs' +p71061 +tp71062 +a(g71059 +g71061 +S'as' +p71063 +tp71064 +a(g71061 +g71063 +S'mantel' +p71065 +tp71066 +a(g71063 +g71065 +S'ornaments;' +p71067 +tp71068 +a(g71065 +g71067 +S'here' +p71069 +tp71070 +a(g71067 +g71069 +S'we' +p71071 +tp71072 +a(g71069 +g71071 +S'see' +p71073 +tp71074 +a(g71071 +g71073 +S'just' +p71075 +tp71076 +a(g71073 +g71075 +S'one' +p71077 +tp71078 +a(g71075 +g71077 +S'of' +p71079 +tp71080 +a(g71077 +g71079 +S'a' +p71081 +tp71082 +a(g71079 +g71081 +S'pair.' +p71083 +tp71084 +a(g71081 +g71083 +S'a' +p71085 +tp71086 +a(g71083 +g71085 +S'variety' +p71087 +tp71088 +a(g71085 +g71087 +S'of' +p71089 +tp71090 +a(g71087 +g71089 +S'glazes' +p71091 +tp71092 +a(g71089 +g71091 +S'was' +p71093 +tp71094 +a(g71091 +g71093 +S'used' +p71095 +tp71096 +a(g71093 +g71095 +S'on' +p71097 +tp71098 +a(g71095 +g71097 +S'these' +p71099 +tp71100 +a(g71097 +g71099 +S'figures;' +p71101 +tp71102 +a(g71099 +g71101 +S'this' +p71103 +tp71104 +a(g71101 +g71103 +S'poodle' +p71105 +tp71106 +a(g71103 +g71105 +S'has' +p71107 +tp71108 +a(g71105 +g71107 +S'been' +p71109 +tp71110 +a(g71107 +g71109 +S'given' +p71111 +tp71112 +a(g71109 +g71111 +S'a' +p71113 +tp71114 +a(g71111 +g71113 +S'rockingham' +p71115 +tp71116 +a(g71113 +g71115 +S'glaze' +p71117 +tp71118 +a(g71115 +g71117 +S'whose' +p71119 +tp71120 +a(g71117 +g71119 +S'fluidity' +p71121 +tp71122 +a(g71119 +g71121 +S'emphasizes' +p71123 +tp71124 +a(g71121 +g71123 +S'the' +p71125 +tp71126 +a(g71123 +g71125 +S'sleekness' +p71127 +tp71128 +a(g71125 +g71127 +S'of' +p71129 +tp71130 +a(g71127 +g71129 +S'the' +p71131 +tp71132 +a(g71129 +g71131 +S'body.' +p71133 +tp71134 +a(g71131 +g71133 +S'in' +p71135 +tp71136 +a(g71133 +g71135 +S'contrast' +p71137 +tp71138 +a(g71135 +g71137 +S'to' +p71139 +tp71140 +a(g71137 +g71139 +S'the' +p71141 +tp71142 +a(g71139 +g71141 +S'smooth' +p71143 +tp71144 +a(g71141 +g71143 +S'surface,' +p71145 +tp71146 +a(g71143 +g71145 +S'the' +p71147 +tp71148 +a(g71145 +g71147 +S'mane' +p71149 +tp71150 +a(g71147 +g71149 +S'is' +p71151 +tp71152 +a(g71149 +g71151 +S'shaggy.' +p71153 +tp71154 +a(g71151 +g71153 +S'the' +p71155 +tp71156 +a(g71153 +g71155 +S'potter' +p71157 +tp71158 +a(g71155 +g71157 +S'achieved' +p71159 +tp71160 +a(g71157 +g71159 +S'this' +p71161 +tp71162 +a(g71159 +g71161 +S'effect,' +p71163 +tp71164 +a(g71161 +g71163 +S'popularly' +p71165 +tp71166 +a(g71163 +g71165 +S'called' +p71167 +tp71168 +a(g71165 +g71167 +S'"cole-slaw' +p71169 +tp71170 +a(g71167 +g71169 +S'decoration,"' +p71171 +tp71172 +a(g71169 +g71171 +S'by' +p71173 +tp71174 +a(g71171 +g71173 +S'pushing' +p71175 +tp71176 +a(g71173 +g71175 +S'moist' +p71177 +tp71178 +a(g71175 +g71177 +S'clay' +p71179 +tp71180 +a(g71177 +g71179 +S'through' +p71181 +tp71182 +a(g71179 +g71181 +S'a' +p71183 +tp71184 +a(g71181 +g71183 +S'fine' +p71185 +tp71186 +a(g71183 +g71185 +S'screen.' +p71187 +tp71188 +a(g71185 +g71187 +S'decorative' +p71189 +tp71190 +a(g71187 +g71189 +S'animal' +p71191 +tp71192 +a(g71189 +g71191 +S'forms' +p71193 +tp71194 +a(g71191 +g71193 +S'were' +p71195 +tp71196 +a(g71193 +g71195 +S'produced' +p71197 +tp71198 +a(g71195 +g71197 +S'by' +p71199 +tp71200 +a(g71197 +g71199 +S'most' +p71201 +tp71202 +a(g71199 +g71201 +S'american' +p71203 +tp71204 +a(g71201 +g71203 +S'potteries' +p71205 +tp71206 +a(g71203 +g71205 +S'during' +p71207 +tp71208 +a(g71205 +g71207 +S'the' +p71209 +tp71210 +a(g71207 +g71209 +S'nineteenth' +p71211 +tp71212 +a(g71209 +g71211 +S'century,' +p71213 +tp71214 +a(g71211 +g71213 +S'but' +p71215 +tp71216 +a(g71213 +g71215 +S'bennington' +p71217 +tp71218 +a(g71215 +g71217 +S'animals,' +p71219 +tp71220 +a(g71217 +g71219 +S'in' +p71221 +tp71222 +a(g71219 +g71221 +S'particular,' +p71223 +tp71224 +a(g71221 +g71223 +S'display' +p71225 +tp71226 +a(g71223 +g71225 +S'careful' +p71227 +tp71228 +a(g71225 +g71227 +S'modeling,' +p71229 +tp71230 +a(g71227 +g71229 +S'uniform' +p71231 +tp71232 +a(g71229 +g71231 +S'and' +p71233 +tp71234 +a(g71231 +g71233 +S'brilliant' +p71235 +tp71236 +a(g71233 +g71235 +S'glazes,' +p71237 +tp71238 +a(g71235 +g71237 +S'and' +p71239 +tp71240 +a(g71237 +g71239 +S'interesting' +p71241 +tp71242 +a(g71239 +g71241 +S'touches' +p71243 +tp71244 +a(g71241 +g71243 +S'of' +p71245 +tp71246 +a(g71243 +g71245 +S'inventiveness' +p71247 +tp71248 +a(g71245 +g71247 +S'and' +p71249 +tp71250 +a(g71247 +g71249 +S'whimsy.' +p71251 +tp71252 +a(g71249 +g71251 +S'perhaps' +p71253 +tp71254 +a(g71251 +g71253 +S'the' +p71255 +tp71256 +a(g71253 +g71255 +S'most' +p71257 +tp71258 +a(g71255 +g71257 +S'avidly' +p71259 +tp71260 +a(g71257 +g71259 +S'collected' +p71261 +tp71262 +a(g71259 +g71261 +S'toys' +p71263 +tp71264 +a(g71261 +g71263 +S'of' +p71265 +tp71266 +a(g71263 +g71265 +S'all' +p71267 +tp71268 +a(g71265 +g71267 +S'are' +p71269 +tp71270 +a(g71267 +g71269 +S'mechanical' +p71271 +tp71272 +a(g71269 +g71271 +S'banks.' +p71273 +tp71274 +a(g71271 +g71273 +S'simple' +p71275 +tp71276 +a(g71273 +g71275 +S'cast' +p71277 +tp71278 +a(g71275 +g71277 +S'iron' +p71279 +tp71280 +a(g71277 +g71279 +S'banks' +p71281 +tp71282 +a(g71279 +g71281 +S'with' +p71283 +tp71284 +a(g71281 +g71283 +S'no' +p71285 +tp71286 +a(g71283 +g71285 +S'animation' +p71287 +tp71288 +a(g71285 +g71287 +S'were' +p71289 +tp71290 +a(g71287 +g71289 +S'first' +p71291 +tp71292 +a(g71289 +g71291 +S'manufactured' +p71293 +tp71294 +a(g71291 +g71293 +S'just' +p71295 +tp71296 +a(g71293 +g71295 +S'after' +p71297 +tp71298 +a(g71295 +g71297 +S'the' +p71299 +tp71300 +a(g71297 +g71299 +S'civil' +p71301 +tp71302 +a(g71299 +g71301 +S'war.' +p71303 +tp71304 +a(g71301 +g71303 +S'with' +p71305 +tp71306 +a(g71303 +g71305 +S'the' +p71307 +tp71308 +a(g71305 +g71307 +S'development' +p71309 +tp71310 +a(g71307 +g71309 +S'of' +p71311 +tp71312 +a(g71309 +g71311 +S'spring' +p71313 +tp71314 +a(g71311 +g71313 +S'mechanisms,' +p71315 +tp71316 +a(g71313 +g71315 +S'many' +p71317 +tp71318 +a(g71315 +g71317 +S'intricate' +p71319 +tp71320 +a(g71317 +g71319 +S'and' +p71321 +tp71322 +a(g71319 +g71321 +S'ingenious' +p71323 +tp71324 +a(g71321 +g71323 +S'models' +p71325 +tp71326 +a(g71323 +g71325 +S'appeared.' +p71327 +tp71328 +a(g71325 +g71327 +S'mechanical' +p71329 +tp71330 +a(g71327 +g71329 +S'banks' +p71331 +tp71332 +a(g71329 +g71331 +S'flourished' +p71333 +tp71334 +a(g71331 +g71333 +S'between' +p71335 +tp71336 +a(g71333 +g71335 +S'about' +p71337 +tp71338 +a(g71335 +g71337 +S'1870' +p71339 +tp71340 +a(g71337 +g71339 +S'and' +p71341 +tp71342 +a(g71339 +g71341 +S'1910.' +p71343 +tp71344 +a(g71341 +g71343 +S'in' +p71345 +tp71346 +a(g71343 +g71345 +S'this' +p71347 +tp71348 +a(g71345 +g71347 +S'example,' +p71349 +tp71350 +a(g71347 +g71349 +S'dated' +p71351 +tp71352 +a(g71349 +g71351 +S'1906,' +p71353 +tp71354 +a(g71351 +g71353 +S'a' +p71355 +tp71356 +a(g71353 +g71355 +S'coin' +p71357 +tp71358 +a(g71355 +g71357 +S'is' +p71359 +tp71360 +a(g71357 +g71359 +S'placed' +p71361 +tp71362 +a(g71359 +g71361 +S'in' +p71363 +tp71364 +a(g71361 +g71363 +S'the' +p71365 +tp71366 +a(g71363 +g71365 +S'gun;' +p71367 +tp71368 +a(g71365 +g71367 +S'when' +p71369 +tp71370 +a(g71367 +g71369 +S'the' +p71371 +tp71372 +a(g71369 +g71371 +S'lever' +p71373 +tp71374 +a(g71371 +g71373 +S'is' +p71375 +tp71376 +a(g71373 +g71375 +S'pressed,' +p71377 +tp71378 +a(g71375 +g71377 +S'the' +p71379 +tp71380 +a(g71377 +g71379 +S'coin' +p71381 +tp71382 +a(g71379 +g71381 +S'is' +p71383 +tp71384 +a(g71381 +g71383 +S'shot' +p71385 +tp71386 +a(g71383 +g71385 +S'into' +p71387 +tp71388 +a(g71385 +g71387 +S'a' +p71389 +tp71390 +a(g71387 +g71389 +S'slot' +p71391 +tp71392 +a(g71389 +g71391 +S'in' +p71393 +tp71394 +a(g71391 +g71393 +S'the' +p71395 +tp71396 +a(g71393 +g71395 +S'tree' +p71397 +tp71398 +a(g71395 +g71397 +S'trunk' +p71399 +tp71400 +a(g71397 +g71399 +S'and' +p71401 +tp71402 +a(g71399 +g71401 +S'the' +p71403 +tp71404 +a(g71401 +g71403 +S"bear's" +p71405 +tp71406 +a(g71403 +g71405 +S'head' +p71407 +tp71408 +a(g71405 +g71407 +S'springs' +p71409 +tp71410 +a(g71407 +g71409 +S'up.' +p71411 +tp71412 +a(g71409 +g71411 +S'the' +p71413 +tp71414 +a(g71411 +g71413 +S'toy' +p71415 +tp71416 +a(g71413 +g71415 +S'is' +p71417 +tp71418 +a(g71415 +g71417 +S'derived' +p71419 +tp71420 +a(g71417 +g71419 +S'from' +p71421 +tp71422 +a(g71419 +g71421 +S'a' +p71423 +tp71424 +a(g71421 +g71423 +S'famous' +p71425 +tp71426 +a(g71423 +g71425 +S'event:' +p71427 +tp71428 +a(g71425 +g71427 +S'theodore' +p71429 +tp71430 +a(g71427 +g71429 +S'roosevelt,' +p71431 +tp71432 +a(g71429 +g71431 +S'on' +p71433 +tp71434 +a(g71431 +g71433 +S'a' +p71435 +tp71436 +a(g71433 +g71435 +S'hunting' +p71437 +tp71438 +a(g71435 +g71437 +S'expedition' +p71439 +tp71440 +a(g71437 +g71439 +S'in' +p71441 +tp71442 +a(g71439 +g71441 +S'mississippi,' +p71443 +tp71444 +a(g71441 +g71443 +S'refused' +p71445 +tp71446 +a(g71443 +g71445 +S'to' +p71447 +tp71448 +a(g71445 +g71447 +S'shoot' +p71449 +tp71450 +a(g71447 +g71449 +S'a' +p71451 +tp71452 +a(g71449 +g71451 +S'bear' +p71453 +tp71454 +a(g71451 +g71453 +S'cub.' +p71455 +tp71456 +a(g71453 +g71455 +S'the' +p71457 +tp71458 +a(g71455 +g71457 +S'cartoonist' +p71459 +tp71460 +a(g71457 +g71459 +S'clifford' +p71461 +tp71462 +a(g71459 +g71461 +S'berryman' +p71463 +tp71464 +a(g71461 +g71463 +S'was' +p71465 +tp71466 +a(g71463 +g71465 +S'present' +p71467 +tp71468 +a(g71465 +g71467 +S'and' +p71469 +tp71470 +a(g71467 +g71469 +S'immortalized' +p71471 +tp71472 +a(g71469 +g71471 +S'the' +p71473 +tp71474 +a(g71471 +g71473 +S'incident' +p71475 +tp71476 +a(g71473 +g71475 +S'in' +p71477 +tp71478 +a(g71475 +g71477 +S'the' +p71479 +tp71480 +a(g71477 +g71479 +S'next' +p71481 +tp71482 +a(g71479 +g71481 +S"day's" +p71483 +tp71484 +a(g71481 +g71483 +S'newspaper;' +p71485 +tp71486 +a(g71483 +g71485 +S'thus,' +p71487 +tp71488 +a(g71485 +g71487 +S'the' +p71489 +tp71490 +a(g71487 +g71489 +S'"teddy' +p71491 +tp71492 +a(g71489 +g71491 +S'bear"' +p71493 +tp71494 +a(g71491 +g71493 +S'was' +p71495 +tp71496 +a(g71493 +g71495 +S'born.' +p71497 +tp71498 +a(g71495 +g71497 +S'this' +p71499 +tp71500 +a(g71497 +g71499 +S'bank' +p71501 +tp71502 +a(g71499 +g71501 +S'was' +p71503 +tp71504 +a(g71501 +g71503 +S'made' +p71505 +tp71506 +a(g71503 +g71505 +S'by' +p71507 +tp71508 +a(g71505 +g71507 +S'the' +p71509 +tp71510 +a(g71507 +g71509 +S'steven' +p71511 +tp71512 +a(g71509 +g71511 +S'company' +p71513 +tp71514 +a(g71511 +g71513 +S'iron' +p71515 +tp71516 +a(g71513 +g71515 +S'foundry' +p71517 +tp71518 +a(g71515 +g71517 +S'of' +p71519 +tp71520 +a(g71517 +g71519 +S'cromwell,' +p71521 +tp71522 +a(g71519 +g71521 +S'connecticut.' +p71523 +tp71524 +a(g71521 +g71523 +S'the' +p71525 +tp71526 +a(g71523 +g71525 +S'mechanical' +p71527 +tp71528 +a(g71525 +g71527 +S'bank' +p71529 +tp71530 +a(g71527 +g71529 +S'had' +p71531 +tp71532 +a(g71529 +g71531 +S'a' +p71533 +tp71534 +a(g71531 +g71533 +S'special' +p71535 +tp71536 +a(g71533 +g71535 +S'purpose' +p71537 +tp71538 +a(g71535 +g71537 +S'as' +p71539 +tp71540 +a(g71537 +g71539 +S'a' +p71541 +tp71542 +a(g71539 +g71541 +S"child's" +p71543 +tp71544 +a(g71541 +g71543 +S'toy:' +p71545 +tp71546 +a(g71543 +g71545 +S'it' +p71547 +tp71548 +a(g71545 +g71547 +S'made' +p71549 +tp71550 +a(g71547 +g71549 +S'saving' +p71551 +tp71552 +a(g71549 +g71551 +S'fun;' +p71553 +tp71554 +a(g71551 +g71553 +S'thrift' +p71555 +tp71556 +a(g71553 +g71555 +S'was' +p71557 +tp71558 +a(g71555 +g71557 +S'turned' +p71559 +tp71560 +a(g71557 +g71559 +S'into' +p71561 +tp71562 +a(g71559 +g71561 +S'a' +p71563 +tp71564 +a(g71561 +g71563 +S'game.' +p71565 +tp71566 +a(g71563 +g71565 +S'the' +p71567 +tp71568 +a(g71565 +g71567 +S'spring' +p71569 +tp71570 +a(g71567 +g71569 +S'and' +p71571 +tp71572 +a(g71569 +g71571 +S'lever' +p71573 +tp71574 +a(g71571 +g71573 +S'action' +p71575 +tp71576 +a(g71573 +g71575 +S'was' +p71577 +tp71578 +a(g71575 +g71577 +S'well' +p71579 +tp71580 +a(g71577 +g71579 +S'suited' +p71581 +tp71582 +a(g71579 +g71581 +S'to' +p71583 +tp71584 +a(g71581 +g71583 +S'a' +p71585 +tp71586 +a(g71583 +g71585 +S'wide' +p71587 +tp71588 +a(g71585 +g71587 +S'range' +p71589 +tp71590 +a(g71587 +g71589 +S'of' +p71591 +tp71592 +a(g71589 +g71591 +S'subjects.' +p71593 +tp71594 +a(g71591 +g71593 +S'the' +p71595 +tp71596 +a(g71593 +g71595 +S'bank' +p71597 +tp71598 +a(g71595 +g71597 +S'shown' +p71599 +tp71600 +a(g71597 +g71599 +S'here' +p71601 +tp71602 +a(g71599 +g71601 +S'consists' +p71603 +tp71604 +a(g71601 +g71603 +S'of' +p71605 +tp71606 +a(g71603 +g71605 +S'a' +p71607 +tp71608 +a(g71605 +g71607 +S'bullfrog' +p71609 +tp71610 +a(g71607 +g71609 +S'sitting' +p71611 +tp71612 +a(g71609 +g71611 +S'on' +p71613 +tp71614 +a(g71611 +g71613 +S'a' +p71615 +tp71616 +a(g71613 +g71615 +S'cylinder' +p71617 +tp71618 +a(g71615 +g71617 +S'whose' +p71619 +tp71620 +a(g71617 +g71619 +S'walls' +p71621 +tp71622 +a(g71619 +g71621 +S'are' +p71623 +tp71624 +a(g71621 +g71623 +S'pierced' +p71625 +tp71626 +a(g71623 +g71625 +S'in' +p71627 +tp71628 +a(g71625 +g71627 +S'a' +p71629 +tp71630 +a(g71627 +g71629 +S'latticework' +p71631 +tp71632 +a(g71629 +g71631 +S'design.' +p71633 +tp71634 +a(g71631 +g71633 +S'the' +p71635 +tp71636 +a(g71633 +g71635 +S"frog's" +p71637 +tp71638 +a(g71635 +g71637 +S'right' +p71639 +tp71640 +a(g71637 +g71639 +S'front' +p71641 +tp71642 +a(g71639 +g71641 +S'foot' +p71643 +tp71644 +a(g71641 +g71643 +S'rests' +p71645 +tp71646 +a(g71643 +g71645 +S'on' +p71647 +tp71648 +a(g71645 +g71647 +S'a' +p71649 +tp71650 +a(g71647 +g71649 +S'spring;' +p71651 +tp71652 +a(g71649 +g71651 +S'when' +p71653 +tp71654 +a(g71651 +g71653 +S'the' +p71655 +tp71656 +a(g71653 +g71655 +S'foot' +p71657 +tp71658 +a(g71655 +g71657 +S'is' +p71659 +tp71660 +a(g71657 +g71659 +S'pressed' +p71661 +tp71662 +a(g71659 +g71661 +S'down,' +p71663 +tp71664 +a(g71661 +g71663 +S'the' +p71665 +tp71666 +a(g71663 +g71665 +S"frog's" +p71667 +tp71668 +a(g71665 +g71667 +S'eyes' +p71669 +tp71670 +a(g71667 +g71669 +S'roll' +p71671 +tp71672 +a(g71669 +g71671 +S'and' +p71673 +tp71674 +a(g71671 +g71673 +S'its' +p71675 +tp71676 +a(g71673 +g71675 +S'lower' +p71677 +tp71678 +a(g71675 +g71677 +S'jaw' +p71679 +tp71680 +a(g71677 +g71679 +S'opens' +p71681 +tp71682 +a(g71679 +g71681 +S'to' +p71683 +tp71684 +a(g71681 +g71683 +S'receive' +p71685 +tp71686 +a(g71683 +g71685 +S'coins.' +p71687 +tp71688 +a(g71685 +g71687 +S'foundries' +p71689 +tp71690 +a(g71687 +g71689 +S'produced' +p71691 +tp71692 +a(g71689 +g71691 +S'mechanical' +p71693 +tp71694 +a(g71691 +g71693 +S'toy' +p71695 +tp71696 +a(g71693 +g71695 +S'banks' +p71697 +tp71698 +a(g71695 +g71697 +S'of' +p71699 +tp71700 +a(g71697 +g71699 +S'cast' +p71701 +tp71702 +a(g71699 +g71701 +S'iron' +p71703 +tp71704 +a(g71701 +g71703 +S'by' +p71705 +tp71706 +a(g71703 +g71705 +S'the' +p71707 +tp71708 +a(g71705 +g71707 +S'millions' +p71709 +tp71710 +a(g71707 +g71709 +S'between' +p71711 +tp71712 +a(g71709 +g71711 +S'about' +p71713 +tp71714 +a(g71711 +g71713 +S'1870' +p71715 +tp71716 +a(g71713 +g71715 +S'and' +p71717 +tp71718 +a(g71715 +g71717 +S'1910.' +p71719 +tp71720 +a(g71717 +g71719 +S'this' +p71721 +tp71722 +a(g71719 +g71721 +S'piece' +p71723 +tp71724 +a(g71721 +g71723 +S'was' +p71725 +tp71726 +a(g71723 +g71725 +S'issued' +p71727 +tp71728 +a(g71725 +g71727 +S'a' +p71729 +tp71730 +a(g71727 +g71729 +S'patent' +p71731 +tp71732 +a(g71729 +g71731 +S'on' +p71733 +tp71734 +a(g71731 +g71733 +S'august' +p71735 +tp71736 +a(g71733 +g71735 +S'20,' +p71737 +tp71738 +a(g71735 +g71737 +S'1872.' +p71739 +tp71740 +a(g71737 +g71739 +S'in' +p71741 +tp71742 +a(g71739 +g71741 +S'early' +p71743 +tp71744 +a(g71741 +g71743 +S'america,' +p71745 +tp71746 +a(g71743 +g71745 +S'weather' +p71747 +tp71748 +a(g71745 +g71747 +S'vanes' +p71749 +tp71750 +a(g71747 +g71749 +S'were' +p71751 +tp71752 +a(g71749 +g71751 +S'a' +p71753 +tp71754 +a(g71751 +g71753 +S'common' +p71755 +tp71756 +a(g71753 +g71755 +S'sight' +p71757 +tp71758 +a(g71755 +g71757 +S'atop' +p71759 +tp71760 +a(g71757 +g71759 +S'churches,' +p71761 +tp71762 +a(g71759 +g71761 +S'barns,' +p71763 +tp71764 +a(g71761 +g71763 +S'and' +p71765 +tp71766 +a(g71763 +g71765 +S'shops.' +p71767 +tp71768 +a(g71765 +g71767 +S'although' +p71769 +tp71770 +a(g71767 +g71769 +S'many' +p71771 +tp71772 +a(g71769 +g71771 +S'vanes' +p71773 +tp71774 +a(g71771 +g71773 +S'were' +p71775 +tp71776 +a(g71773 +g71775 +S'made' +p71777 +tp71778 +a(g71775 +g71777 +S'of' +p71779 +tp71780 +a(g71777 +g71779 +S'wood,' +p71781 +tp71782 +a(g71779 +g71781 +S'craftsmen' +p71783 +tp71784 +a(g71781 +g71783 +S'who' +p71785 +tp71786 +a(g71783 +g71785 +S'worked' +p71787 +tp71788 +a(g71785 +g71787 +S'in' +p71789 +tp71790 +a(g71787 +g71789 +S'iron,' +p71791 +tp71792 +a(g71789 +g71791 +S'copper,' +p71793 +tp71794 +a(g71791 +g71793 +S'tin,' +p71795 +tp71796 +a(g71793 +g71795 +S'and' +p71797 +tp71798 +a(g71795 +g71797 +S'brass' +p71799 +tp71800 +a(g71797 +g71799 +S'also' +p71801 +tp71802 +a(g71799 +g71801 +S'produced' +p71803 +tp71804 +a(g71801 +g71803 +S'weather' +p71805 +tp71806 +a(g71803 +g71805 +S'vanes' +p71807 +tp71808 +a(g71805 +g71807 +S'of' +p71809 +tp71810 +a(g71807 +g71809 +S'outstanding' +p71811 +tp71812 +a(g71809 +g71811 +S'design' +p71813 +tp71814 +a(g71811 +g71813 +S'and' +p71815 +tp71816 +a(g71813 +g71815 +S'conception,' +p71817 +tp71818 +a(g71815 +g71817 +S'often' +p71819 +tp71820 +a(g71817 +g71819 +S'combining' +p71821 +tp71822 +a(g71819 +g71821 +S'several' +p71823 +tp71824 +a(g71821 +g71823 +S'metals.' +p71825 +tp71826 +a(g71823 +g71825 +S'this' +p71827 +tp71828 +a(g71825 +g71827 +S'weather' +p71829 +tp71830 +a(g71827 +g71829 +S'vane,' +p71831 +tp71832 +a(g71829 +g71831 +S'representing' +p71833 +tp71834 +a(g71831 +g71833 +S'the' +p71835 +tp71836 +a(g71833 +g71835 +S'angel' +p71837 +tp71838 +a(g71835 +g71837 +S'gabriel,' +p71839 +tp71840 +a(g71837 +g71839 +S'originally' +p71841 +tp71842 +a(g71839 +g71841 +S'graced' +p71843 +tp71844 +a(g71841 +g71843 +S'the' +p71845 +tp71846 +a(g71843 +g71845 +S'steeple' +p71847 +tp71848 +a(g71845 +g71847 +S'of' +p71849 +tp71850 +a(g71847 +g71849 +S'the' +p71851 +tp71852 +a(g71849 +g71851 +S'universalist' +p71853 +tp71854 +a(g71851 +g71853 +S'church' +p71855 +tp71856 +a(g71853 +g71855 +S'in' +p71857 +tp71858 +a(g71855 +g71857 +S'newburyport,' +p71859 +tp71860 +a(g71857 +g71859 +S'massachusetts.' +p71861 +tp71862 +a(g71859 +g71861 +S'the' +p71863 +tp71864 +a(g71861 +g71863 +S'angel' +p71865 +tp71866 +a(g71863 +g71865 +S'is' +p71867 +tp71868 +a(g71865 +g71867 +S'a' +p71869 +tp71870 +a(g71867 +g71869 +S'much' +p71871 +tp71872 +a(g71869 +g71871 +S'less' +p71873 +tp71874 +a(g71871 +g71873 +S'common' +p71875 +tp71876 +a(g71873 +g71875 +S'weather' +p71877 +tp71878 +a(g71875 +g71877 +S'vane' +p71879 +tp71880 +a(g71877 +g71879 +S'subject' +p71881 +tp71882 +a(g71879 +g71881 +S'than,' +p71883 +tp71884 +a(g71881 +g71883 +S'for' +p71885 +tp71886 +a(g71883 +g71885 +S'example,' +p71887 +tp71888 +a(g71885 +g71887 +S'horses' +p71889 +tp71890 +a(g71887 +g71889 +S'or' +p71891 +tp71892 +a(g71889 +g71891 +S'roosters,' +p71893 +tp71894 +a(g71891 +g71893 +S'and' +p71895 +tp71896 +a(g71893 +g71895 +S'the' +p71897 +tp71898 +a(g71895 +g71897 +S'image' +p71899 +tp71900 +a(g71897 +g71899 +S'of' +p71901 +tp71902 +a(g71899 +g71901 +S'gabriel' +p71903 +tp71904 +a(g71901 +g71903 +S'is' +p71905 +tp71906 +a(g71903 +g71905 +S'rarer' +p71907 +tp71908 +a(g71905 +g71907 +S'still.' +p71909 +tp71910 +a(g71907 +g71909 +S'although' +p71911 +tp71912 +a(g71909 +g71911 +S'there' +p71913 +tp71914 +a(g71911 +g71913 +S'are' +p71915 +tp71916 +a(g71913 +g71915 +S'several' +p71917 +tp71918 +a(g71915 +g71917 +S'known' +p71919 +tp71920 +a(g71917 +g71919 +S'examples' +p71921 +tp71922 +a(g71919 +g71921 +S'of' +p71923 +tp71924 +a(g71921 +g71923 +S'the' +p71925 +tp71926 +a(g71923 +g71925 +S'archangel' +p71927 +tp71928 +a(g71925 +g71927 +S'blowing' +p71929 +tp71930 +a(g71927 +g71929 +S'his' +p71931 +tp71932 +a(g71929 +g71931 +S'horn,' +p71933 +tp71934 +a(g71931 +g71933 +S'this' +p71935 +tp71936 +a(g71933 +g71935 +S'version' +p71937 +tp71938 +a(g71935 +g71937 +S'appears' +p71939 +tp71940 +a(g71937 +g71939 +S'to' +p71941 +tp71942 +a(g71939 +g71941 +S'be' +p71943 +tp71944 +a(g71941 +g71943 +S'unique.' +p71945 +tp71946 +a(g71943 +g71945 +S'made' +p71947 +tp71948 +a(g71945 +g71947 +S'in' +p71949 +tp71950 +a(g71947 +g71949 +S'1840' +p71951 +tp71952 +a(g71949 +g71951 +S'by' +p71953 +tp71954 +a(g71951 +g71953 +S'the' +p71955 +tp71956 +a(g71953 +g71955 +S'gould' +p71957 +tp71958 +a(g71955 +g71957 +S'and' +p71959 +tp71960 +a(g71957 +g71959 +S'hazlett' +p71961 +tp71962 +a(g71959 +g71961 +S'company' +p71963 +tp71964 +a(g71961 +g71963 +S'of' +p71965 +tp71966 +a(g71963 +g71965 +S'boston,' +p71967 +tp71968 +a(g71965 +g71967 +S'the' +p71969 +tp71970 +a(g71967 +g71969 +S'angel' +p71971 +tp71972 +a(g71969 +g71971 +S'has' +p71973 +tp71974 +a(g71971 +g71973 +S'a' +p71975 +tp71976 +a(g71973 +g71975 +S'flat' +p71977 +tp71978 +a(g71975 +g71977 +S'body' +p71979 +tp71980 +a(g71977 +g71979 +S'cut' +p71981 +tp71982 +a(g71979 +g71981 +S'from' +p71983 +tp71984 +a(g71981 +g71983 +S'sheet' +p71985 +tp71986 +a(g71983 +g71985 +S'iron' +p71987 +tp71988 +a(g71985 +g71987 +S'and' +p71989 +tp71990 +a(g71987 +g71989 +S'gilded;' +p71991 +tp71992 +a(g71989 +g71991 +S'the' +p71993 +tp71994 +a(g71991 +g71993 +S'tubular' +p71995 +tp71996 +a(g71993 +g71995 +S'horn' +p71997 +tp71998 +a(g71995 +g71997 +S'was' +p71999 +tp72000 +a(g71997 +g71999 +S'made' +p72001 +tp72002 +a(g71999 +g72001 +S'of' +p72003 +tp72004 +a(g72001 +g72003 +S'copper.' +p72005 +tp72006 +a(g72003 +g72005 +S'the' +p72007 +tp72008 +a(g72005 +g72007 +S'pieces' +p72009 +tp72010 +a(g72007 +g72009 +S'were' +p72011 +tp72012 +a(g72009 +g72011 +S'then' +p72013 +tp72014 +a(g72011 +g72013 +S'fastened' +p72015 +tp72016 +a(g72013 +g72015 +S'together' +p72017 +tp72018 +a(g72015 +g72017 +S'with' +p72019 +tp72020 +a(g72017 +g72019 +S'iron' +p72021 +tp72022 +a(g72019 +g72021 +S'rivets.' +p72023 +tp72024 +a(g72021 +g72023 +S'the' +p72025 +tp72026 +a(g72023 +g72025 +S'work' +p72027 +tp72028 +a(g72025 +g72027 +S'shows' +p72029 +tp72030 +a(g72027 +g72029 +S'grace' +p72031 +tp72032 +a(g72029 +g72031 +S'in' +p72033 +tp72034 +a(g72031 +g72033 +S'the' +p72035 +tp72036 +a(g72033 +g72035 +S'flowing' +p72037 +tp72038 +a(g72035 +g72037 +S'contours' +p72039 +tp72040 +a(g72037 +g72039 +S'of' +p72041 +tp72042 +a(g72039 +g72041 +S'the' +p72043 +tp72044 +a(g72041 +g72043 +S"angel's" +p72045 +tp72046 +a(g72043 +g72045 +S'wings' +p72047 +tp72048 +a(g72045 +g72047 +S'and' +p72049 +tp72050 +a(g72047 +g72049 +S'robe,' +p72051 +tp72052 +a(g72049 +g72051 +S'yet' +p72053 +tp72054 +a(g72051 +g72053 +S'it' +p72055 +tp72056 +a(g72053 +g72055 +S'is' +p72057 +tp72058 +a(g72055 +g72057 +S'also' +p72059 +tp72060 +a(g72057 +g72059 +S'crude,' +p72061 +tp72062 +a(g72059 +g72061 +S'in' +p72063 +tp72064 +a(g72061 +g72063 +S'the' +p72065 +tp72066 +a(g72063 +g72065 +S'obvious,' +p72067 +tp72068 +a(g72065 +g72067 +S'heavy' +p72069 +tp72070 +a(g72067 +g72069 +S'bracing' +p72071 +tp72072 +a(g72069 +g72071 +S'that' +p72073 +tp72074 +a(g72071 +g72073 +S'supports' +p72075 +tp72076 +a(g72073 +g72075 +S'the' +p72077 +tp72078 +a(g72075 +g72077 +S'figure.' +p72079 +tp72080 +a(g72077 +g72079 +S'the' +p72081 +tp72082 +a(g72079 +g72081 +S'artist,' +p72083 +tp72084 +a(g72081 +g72083 +S'lucille' +p72085 +tp72086 +a(g72083 +g72085 +S'chabot,' +p72087 +tp72088 +a(g72085 +g72087 +S'had' +p72089 +tp72090 +a(g72087 +g72089 +S'to' +p72091 +tp72092 +a(g72089 +g72091 +S'experiment' +p72093 +tp72094 +a(g72091 +g72093 +S'to' +p72095 +tp72096 +a(g72093 +g72095 +S'arrive' +p72097 +tp72098 +a(g72095 +g72097 +S'at' +p72099 +tp72100 +a(g72097 +g72099 +S'a' +p72101 +tp72102 +a(g72099 +g72101 +S'technique' +p72103 +tp72104 +a(g72101 +g72103 +S'that' +p72105 +tp72106 +a(g72103 +g72105 +S'would' +p72107 +tp72108 +a(g72105 +g72107 +S'"get' +p72109 +tp72110 +a(g72107 +g72109 +S'the' +p72111 +tp72112 +a(g72109 +g72111 +S'thing' +p72113 +tp72114 +a(g72111 +g72113 +S'to' +p72115 +tp72116 +a(g72113 +g72115 +S'glow...not' +p72117 +tp72118 +a(g72115 +g72117 +S'to' +p72119 +tp72120 +a(g72117 +g72119 +S'get' +p72121 +tp72122 +a(g72119 +g72121 +S'it' +p72123 +tp72124 +a(g72121 +g72123 +S'grainy."' +p72125 +tp72126 +a(g72123 +g72125 +S'she' +p72127 +tp72128 +a(g72125 +g72127 +S'achieved' +p72129 +tp72130 +a(g72127 +g72129 +S'the' +p72131 +tp72132 +a(g72129 +g72131 +S'desired' +p72133 +tp72134 +a(g72131 +g72133 +S'effect' +p72135 +tp72136 +a(g72133 +g72135 +S'by' +p72137 +tp72138 +a(g72135 +g72137 +S'a' +p72139 +tp72140 +a(g72137 +g72139 +S'"series' +p72141 +tp72142 +a(g72139 +g72141 +S'of' +p72143 +tp72144 +a(g72141 +g72143 +S'glazes,' +p72145 +tp72146 +a(g72143 +g72145 +S'one' +p72147 +tp72148 +a(g72145 +g72147 +S'color' +p72149 +tp72150 +a(g72147 +g72149 +S'over' +p72151 +tp72152 +a(g72149 +g72151 +S'another."' +p72153 +tp72154 +a(g72151 +g72153 +S'by' +p72155 +tp72156 +a(g72153 +g72155 +S'the' +p72157 +tp72158 +a(g72155 +g72157 +S'1870s,' +p72159 +tp72160 +a(g72157 +g72159 +S"women's" +p72161 +tp72162 +a(g72159 +g72161 +S'dresses' +p72163 +tp72164 +a(g72161 +g72163 +S'gained' +p72165 +tp72166 +a(g72163 +g72165 +S'fullness' +p72167 +tp72168 +a(g72165 +g72167 +S'in' +p72169 +tp72170 +a(g72167 +g72169 +S'back' +p72171 +tp72172 +a(g72169 +g72171 +S'by' +p72173 +tp72174 +a(g72171 +g72173 +S'use' +p72175 +tp72176 +a(g72173 +g72175 +S'of' +p72177 +tp72178 +a(g72175 +g72177 +S'a' +p72179 +tp72180 +a(g72177 +g72179 +S'padded' +p72181 +tp72182 +a(g72179 +g72181 +S'bustle.' +p72183 +tp72184 +a(g72181 +g72183 +S'this' +p72185 +tp72186 +a(g72183 +g72185 +S'two-piece' +p72187 +tp72188 +a(g72185 +g72187 +S'dress,' +p72189 +tp72190 +a(g72187 +g72189 +S'made' +p72191 +tp72192 +a(g72189 +g72191 +S'of' +p72193 +tp72194 +a(g72191 +g72193 +S'red' +p72195 +tp72196 +a(g72193 +g72195 +S'cotton' +p72197 +tp72198 +a(g72195 +g72197 +S'with' +p72199 +tp72200 +a(g72197 +g72199 +S'white' +p72201 +tp72202 +a(g72199 +g72201 +S'eyelet' +p72203 +tp72204 +a(g72201 +g72203 +S'embroidery,' +p72205 +tp72206 +a(g72203 +g72205 +S'has' +p72207 +tp72208 +a(g72205 +g72207 +S'a' +p72209 +tp72210 +a(g72207 +g72209 +S'bustle' +p72211 +tp72212 +a(g72209 +g72211 +S'in' +p72213 +tp72214 +a(g72211 +g72213 +S'back.' +p72215 +tp72216 +a(g72213 +g72215 +S'the' +p72217 +tp72218 +a(g72215 +g72217 +S'lines' +p72219 +tp72220 +a(g72217 +g72219 +S'of' +p72221 +tp72222 +a(g72219 +g72221 +S'the' +p72223 +tp72224 +a(g72221 +g72223 +S'dress,' +p72225 +tp72226 +a(g72223 +g72225 +S'however,' +p72227 +tp72228 +a(g72225 +g72227 +S'are' +p72229 +tp72230 +a(g72227 +g72229 +S'softer' +p72231 +tp72232 +a(g72229 +g72231 +S'and' +p72233 +tp72234 +a(g72231 +g72233 +S'fall' +p72235 +tp72236 +a(g72233 +g72235 +S'closer' +p72237 +tp72238 +a(g72235 +g72237 +S'to' +p72239 +tp72240 +a(g72237 +g72239 +S'the' +p72241 +tp72242 +a(g72239 +g72241 +S'body' +p72243 +tp72244 +a(g72241 +g72243 +S'than' +p72245 +tp72246 +a(g72243 +g72245 +S'those' +p72247 +tp72248 +a(g72245 +g72247 +S'of' +p72249 +tp72250 +a(g72247 +g72249 +S'fashions' +p72251 +tp72252 +a(g72249 +g72251 +S'in' +p72253 +tp72254 +a(g72251 +g72253 +S'the' +p72255 +tp72256 +a(g72253 +g72255 +S'previous' +p72257 +tp72258 +a(g72255 +g72257 +S'decade,' +p72259 +tp72260 +a(g72257 +g72259 +S'indicating' +p72261 +tp72262 +a(g72259 +g72261 +S'a' +p72263 +tp72264 +a(g72261 +g72263 +S'movement' +p72265 +tp72266 +a(g72263 +g72265 +S'toward' +p72267 +tp72268 +a(g72265 +g72267 +S'a' +p72269 +tp72270 +a(g72267 +g72269 +S'more' +p72271 +tp72272 +a(g72269 +g72271 +S'natural' +p72273 +tp72274 +a(g72271 +g72273 +S'form' +p72275 +tp72276 +a(g72273 +g72275 +S'for' +p72277 +tp72278 +a(g72275 +g72277 +S"women's" +p72279 +tp72280 +a(g72277 +g72279 +S'clothing.' +p72281 +tp72282 +a(g72279 +g72281 +S'this' +p72283 +tp72284 +a(g72281 +g72283 +S'"visiting' +p72285 +tp72286 +a(g72283 +g72285 +S'dress,"' +p72287 +tp72288 +a(g72285 +g72287 +S'dated' +p72289 +tp72290 +a(g72287 +g72289 +S'1883,' +p72291 +tp72292 +a(g72289 +g72291 +S'is' +p72293 +tp72294 +a(g72291 +g72293 +S'made' +p72295 +tp72296 +a(g72293 +g72295 +S'of' +p72297 +tp72298 +a(g72295 +g72297 +S'wool.' +p72299 +tp72300 +a(g72297 +g72299 +S'it' +p72301 +tp72302 +a(g72299 +g72301 +S'is' +p72303 +tp72304 +a(g72301 +g72303 +S'constructed' +p72305 +tp72306 +a(g72303 +g72305 +S'of' +p72307 +tp72308 +a(g72305 +g72307 +S'multiple' +p72309 +tp72310 +a(g72307 +g72309 +S'pieces.' +p72311 +tp72312 +a(g72309 +g72311 +S'the' +p72313 +tp72314 +a(g72311 +g72313 +S'waist' +p72315 +tp72316 +a(g72313 +g72315 +S'has' +p72317 +tp72318 +a(g72315 +g72317 +S'eight' +p72319 +tp72320 +a(g72317 +g72319 +S'fitted' +p72321 +tp72322 +a(g72319 +g72321 +S'parts,' +p72323 +tp72324 +a(g72321 +g72323 +S'six' +p72325 +tp72326 +a(g72323 +g72325 +S'in' +p72327 +tp72328 +a(g72325 +g72327 +S'back' +p72329 +tp72330 +a(g72327 +g72329 +S'and' +p72331 +tp72332 +a(g72329 +g72331 +S'two' +p72333 +tp72334 +a(g72331 +g72333 +S'in' +p72335 +tp72336 +a(g72333 +g72335 +S'front.' +p72337 +tp72338 +a(g72335 +g72337 +S'the' +p72339 +tp72340 +a(g72337 +g72339 +S'overskirt' +p72341 +tp72342 +a(g72339 +g72341 +S'is' +p72343 +tp72344 +a(g72341 +g72343 +S'draped' +p72345 +tp72346 +a(g72343 +g72345 +S'from' +p72347 +tp72348 +a(g72345 +g72347 +S'the' +p72349 +tp72350 +a(g72347 +g72349 +S'bustle' +p72351 +tp72352 +a(g72349 +g72351 +S'at' +p72353 +tp72354 +a(g72351 +g72353 +S'the' +p72355 +tp72356 +a(g72353 +g72355 +S'back' +p72357 +tp72358 +a(g72355 +g72357 +S'where' +p72359 +tp72360 +a(g72357 +g72359 +S'it' +p72361 +tp72362 +a(g72359 +g72361 +S'falls' +p72363 +tp72364 +a(g72361 +g72363 +S'in' +p72365 +tp72366 +a(g72363 +g72365 +S'a' +p72367 +tp72368 +a(g72365 +g72367 +S'train.' +p72369 +tp72370 +a(g72367 +g72369 +S'the' +p72371 +tp72372 +a(g72369 +g72371 +S'vest,' +p72373 +tp72374 +a(g72371 +g72373 +S'cuffs,' +p72375 +tp72376 +a(g72373 +g72375 +S'and' +p72377 +tp72378 +a(g72375 +g72377 +S'ruffle' +p72379 +tp72380 +a(g72377 +g72379 +S'around' +p72381 +tp72382 +a(g72379 +g72381 +S'the' +p72383 +tp72384 +a(g72381 +g72383 +S'bottom' +p72385 +tp72386 +a(g72383 +g72385 +S'of' +p72387 +tp72388 +a(g72385 +g72387 +S'the' +p72389 +tp72390 +a(g72387 +g72389 +S'skirt' +p72391 +tp72392 +a(g72389 +g72391 +S'are' +p72393 +tp72394 +a(g72391 +g72393 +S'of' +p72395 +tp72396 +a(g72393 +g72395 +S'red' +p72397 +tp72398 +a(g72395 +g72397 +S'velvet.' +p72399 +tp72400 +a(g72397 +g72399 +S'complicated' +p72401 +tp72402 +a(g72399 +g72401 +S'designs' +p72403 +tp72404 +a(g72401 +g72403 +S'were' +p72405 +tp72406 +a(g72403 +g72405 +S'common' +p72407 +tp72408 +a(g72405 +g72407 +S'for' +p72409 +tp72410 +a(g72407 +g72409 +S'dresses' +p72411 +tp72412 +a(g72409 +g72411 +S'in' +p72413 +tp72414 +a(g72411 +g72413 +S'the' +p72415 +tp72416 +a(g72413 +g72415 +S'mid-1880s.' +p72417 +tp72418 +a(g72415 +g72417 +S'the' +p72419 +tp72420 +a(g72417 +g72419 +S'introduction' +p72421 +tp72422 +a(g72419 +g72421 +S'and' +p72423 +tp72424 +a(g72421 +g72423 +S'development' +p72425 +tp72426 +a(g72423 +g72425 +S'of' +p72427 +tp72428 +a(g72425 +g72427 +S'the' +p72429 +tp72430 +a(g72427 +g72429 +S'sewing' +p72431 +tp72432 +a(g72429 +g72431 +S'machine' +p72433 +tp72434 +a(g72431 +g72433 +S'made' +p72435 +tp72436 +a(g72433 +g72435 +S'construction' +p72437 +tp72438 +a(g72435 +g72437 +S'of' +p72439 +tp72440 +a(g72437 +g72439 +S'dresses' +p72441 +tp72442 +a(g72439 +g72441 +S'with' +p72443 +tp72444 +a(g72441 +g72443 +S'intricate' +p72445 +tp72446 +a(g72443 +g72445 +S'patterns' +p72447 +tp72448 +a(g72445 +g72447 +S'possible.' +p72449 +tp72450 +a(g72447 +g72449 +S'some' +p72451 +tp72452 +a(g72449 +g72451 +S'small' +p72453 +tp72454 +a(g72451 +g72453 +S'vessels' +p72455 +tp72456 +a(g72453 +g72455 +S'had' +p72457 +tp72458 +a(g72455 +g72457 +S'only' +p72459 +tp72460 +a(g72457 +g72459 +S'an' +p72461 +tp72462 +a(g72459 +g72461 +S'eagle' +p72463 +tp72464 +a(g72461 +g72463 +S'as' +p72465 +tp72466 +a(g72463 +g72465 +S'a' +p72467 +tp72468 +a(g72465 +g72467 +S'bow' +p72469 +tp72470 +a(g72467 +g72469 +S'decoration.' +p72471 +tp72472 +a(g72469 +g72471 +S'in' +p72473 +tp72474 +a(g72471 +g72473 +S'this' +p72475 +tp72476 +a(g72473 +g72475 +S'eagle' +p72477 +tp72478 +a(g72475 +g72477 +S'head,' +p72479 +tp72480 +a(g72477 +g72479 +S'the' +p72481 +tp72482 +a(g72479 +g72481 +S'carving' +p72483 +tp72484 +a(g72481 +g72483 +S'terminates' +p72485 +tp72486 +a(g72483 +g72485 +S'at' +p72487 +tp72488 +a(g72485 +g72487 +S'the' +p72489 +tp72490 +a(g72487 +g72489 +S'neck.' +p72491 +tp72492 +a(g72489 +g72491 +S'aside' +p72493 +tp72494 +a(g72491 +g72493 +S'from' +p72495 +tp72496 +a(g72493 +g72495 +S'patriotic' +p72497 +tp72498 +a(g72495 +g72497 +S'associations,' +p72499 +tp72500 +a(g72497 +g72499 +S'the' +p72501 +tp72502 +a(g72499 +g72501 +S'eagle,' +p72503 +tp72504 +a(g72501 +g72503 +S'with' +p72505 +tp72506 +a(g72503 +g72505 +S'its' +p72507 +tp72508 +a(g72505 +g72507 +S'sharp' +p72509 +tp72510 +a(g72507 +g72509 +S'eyes,' +p72511 +tp72512 +a(g72509 +g72511 +S'was' +p72513 +tp72514 +a(g72511 +g72513 +S'especially' +p72515 +tp72516 +a(g72513 +g72515 +S'appropriate' +p72517 +tp72518 +a(g72515 +g72517 +S'to' +p72519 +tp72520 +a(g72517 +g72519 +S'symbolize' +p72521 +tp72522 +a(g72519 +g72521 +S'a' +p72523 +tp72524 +a(g72521 +g72523 +S'lookout' +p72525 +tp72526 +a(g72523 +g72525 +S'or' +p72527 +tp72528 +a(g72525 +g72527 +S'guide.' +p72529 +tp72530 +a(g72527 +g72529 +S'this' +p72531 +tp72532 +a(g72529 +g72531 +S'particular' +p72533 +tp72534 +a(g72531 +g72533 +S'example' +p72535 +tp72536 +a(g72533 +g72535 +S'served' +p72537 +tp72538 +a(g72535 +g72537 +S'as' +p72539 +tp72540 +a(g72537 +g72539 +S'a' +p72541 +tp72542 +a(g72539 +g72541 +S'figurehead' +p72543 +tp72544 +a(g72541 +g72543 +S'on' +p72545 +tp72546 +a(g72543 +g72545 +S'the' +p72547 +tp72548 +a(g72545 +g72547 +S'filippino' +p72549 +tp72550 +a(g72547 +g72549 +S'lippi' +p72551 +tp72552 +a(g72549 +g72551 +S'was' +p72553 +tp72554 +a(g72551 +g72553 +S'the' +p72555 +tp72556 +a(g72553 +g72555 +S'son' +p72557 +tp72558 +a(g72555 +g72557 +S'of' +p72559 +tp72560 +a(g72557 +g72559 +S'the' +p72561 +tp72562 +a(g72559 +g72561 +S'painter' +p72563 +tp72564 +a(g72561 +g72563 +S'fra' +p72565 +tp72566 +a(g72563 +g72565 +S'filippo' +p72567 +tp72568 +a(g72565 +g72567 +S'lippi,' +p72569 +tp72570 +a(g72567 +g72569 +S'who' +p72571 +tp72572 +a(g72569 +g72571 +S'was' +p72573 +tp72574 +a(g72571 +g72573 +S'undoubtedly' +p72575 +tp72576 +a(g72573 +g72575 +S'the' +p72577 +tp72578 +a(g72575 +g72577 +S"boy's" +p72579 +tp72580 +a(g72577 +g72579 +S'first' +p72581 +tp72582 +a(g72579 +g72581 +S'master.' +p72583 +tp72584 +a(g72581 +g72583 +S'after' +p72585 +tp72586 +a(g72583 +g72585 +S'his' +p72587 +tp72588 +a(g72585 +g72587 +S'father' +p72589 +tp72590 +a(g72587 +g72589 +S'died' +p72591 +tp72592 +a(g72589 +g72591 +S'in' +p72593 +tp72594 +a(g72591 +g72593 +S'1469,' +p72595 +tp72596 +a(g72593 +g72595 +S'he' +p72597 +tp72598 +a(g72595 +g72597 +S'became' +p72599 +tp72600 +a(g72597 +g72599 +S'a' +p72601 +tp72602 +a(g72599 +g72601 +S'pupil' +p72603 +tp72604 +a(g72601 +g72603 +S'of' +p72605 +tp72606 +a(g72603 +g72605 +S'botticelli,' +p72607 +tp72608 +a(g72605 +g72607 +S'who' +p72609 +tp72610 +a(g72607 +g72609 +S'had' +p72611 +tp72612 +a(g72609 +g72611 +S'a' +p72613 +tp72614 +a(g72611 +g72613 +S'profound' +p72615 +tp72616 +a(g72613 +g72615 +S'influence' +p72617 +tp72618 +a(g72615 +g72617 +S'on' +p72619 +tp72620 +a(g72617 +g72619 +S'his' +p72621 +tp72622 +a(g72619 +g72621 +S'style.' +p72623 +tp72624 +a(g72621 +g72623 +S'in' +p72625 +tp72626 +a(g72623 +g72625 +S'fact,' +p72627 +tp72628 +a(g72625 +g72627 +S'the' +p72629 +tp72630 +a(g72627 +g72629 +S'washington' +p72631 +tp72632 +a(g72629 +g72631 +S'portrait' +p72633 +tp72634 +a(g72631 +g72633 +S'comes' +p72635 +tp72636 +a(g72633 +g72635 +S'so' +p72637 +tp72638 +a(g72635 +g72637 +S'close' +p72639 +tp72640 +a(g72637 +g72639 +S'to' +p72641 +tp72642 +a(g72639 +g72641 +S"botticelli's" +p72643 +tp72644 +a(g72641 +g72643 +S'style' +p72645 +tp72646 +a(g72643 +g72645 +S'that' +p72647 +tp72648 +a(g72645 +g72647 +S'there' +p72649 +tp72650 +a(g72647 +g72649 +S'has' +p72651 +tp72652 +a(g72649 +g72651 +S'been' +p72653 +tp72654 +a(g72651 +g72653 +S'considerable' +p72655 +tp72656 +a(g72653 +g72655 +S'disagreement' +p72657 +tp72658 +a(g72655 +g72657 +S'among' +p72659 +tp72660 +a(g72657 +g72659 +S'scholars' +p72661 +tp72662 +a(g72659 +g72661 +S'as' +p72663 +tp72664 +a(g72661 +g72663 +S'to' +p72665 +tp72666 +a(g72663 +g72665 +S'exactly' +p72667 +tp72668 +a(g72665 +g72667 +S'which' +p72669 +tp72670 +a(g72667 +g72669 +S'artist' +p72671 +tp72672 +a(g72669 +g72671 +S'was' +p72673 +tp72674 +a(g72671 +g72673 +S'responsible' +p72675 +tp72676 +a(g72673 +g72675 +S'for' +p72677 +tp72678 +a(g72675 +g72677 +S'it.' +p72679 +tp72680 +a(g72677 +g72679 +S'although' +p72681 +tp72682 +a(g72679 +g72681 +S'it' +p72683 +tp72684 +a(g72681 +g72683 +S'has' +p72685 +tp72686 +a(g72683 +g72685 +S'been' +p72687 +tp72688 +a(g72685 +g72687 +S'attributed' +p72689 +tp72690 +a(g72687 +g72689 +S'more' +p72691 +tp72692 +a(g72689 +g72691 +S'often' +p72693 +tp72694 +a(g72691 +g72693 +S'to' +p72695 +tp72696 +a(g72693 +g72695 +S'botticelli' +p72697 +tp72698 +a(g72695 +g72697 +S'than' +p72699 +tp72700 +a(g72697 +g72699 +S'to' +p72701 +tp72702 +a(g72699 +g72701 +S'filippino,' +p72703 +tp72704 +a(g72701 +g72703 +S'most' +p72705 +tp72706 +a(g72703 +g72705 +S'recent' +p72707 +tp72708 +a(g72705 +g72707 +S'authors' +p72709 +tp72710 +a(g72707 +g72709 +S'are' +p72711 +tp72712 +a(g72709 +g72711 +S'now' +p72713 +tp72714 +a(g72711 +g72713 +S'agreed' +p72715 +tp72716 +a(g72713 +g72715 +S'that' +p72717 +tp72718 +a(g72715 +g72717 +S'it' +p72719 +tp72720 +a(g72717 +g72719 +S'is' +p72721 +tp72722 +a(g72719 +g72721 +S'by' +p72723 +tp72724 +a(g72721 +g72723 +S'the' +p72725 +tp72726 +a(g72723 +g72725 +S'younger' +p72727 +tp72728 +a(g72725 +g72727 +S'painter.' +p72729 +tp72730 +a(g72727 +g72729 +S'in' +p72731 +tp72732 +a(g72729 +g72731 +S'1483' +p72733 +tp72734 +a(g72731 +g72733 +S'or' +p72735 +tp72736 +a(g72733 +g72735 +S'1484,' +p72737 +tp72738 +a(g72735 +g72737 +S'filippino' +p72739 +tp72740 +a(g72737 +g72739 +S'was' +p72741 +tp72742 +a(g72739 +g72741 +S'assigned' +p72743 +tp72744 +a(g72741 +g72743 +S'the' +p72745 +tp72746 +a(g72743 +g72745 +S'task' +p72747 +tp72748 +a(g72745 +g72747 +S'of' +p72749 +tp72750 +a(g72747 +g72749 +S'finishing' +p72751 +tp72752 +a(g72749 +g72751 +S"masaccio's" +p72753 +tp72754 +a(g72751 +g72753 +S'great' +p72755 +tp72756 +a(g72753 +g72755 +S'frescoes' +p72757 +tp72758 +a(g72755 +g72757 +S'in' +p72759 +tp72760 +a(g72757 +g72759 +S'the' +p72761 +tp72762 +a(g72759 +g72761 +S'brancacci' +p72763 +tp72764 +a(g72761 +g72763 +S'chapel' +p72765 +tp72766 +a(g72763 +g72765 +S'in' +p72767 +tp72768 +a(g72765 +g72767 +S'florence.' +p72769 +tp72770 +a(g72767 +g72769 +S'this' +p72771 +tp72772 +a(g72769 +g72771 +S'portrait' +p72773 +tp72774 +a(g72771 +g72773 +S'bears' +p72775 +tp72776 +a(g72773 +g72775 +S'a' +p72777 +tp72778 +a(g72775 +g72777 +S'great' +p72779 +tp72780 +a(g72777 +g72779 +S'resemblance' +p72781 +tp72782 +a(g72779 +g72781 +S'to' +p72783 +tp72784 +a(g72781 +g72783 +S'a' +p72785 +tp72786 +a(g72783 +g72785 +S'young' +p72787 +tp72788 +a(g72785 +g72787 +S'man' +p72789 +tp72790 +a(g72787 +g72789 +S'portrayed' +p72791 +tp72792 +a(g72789 +g72791 +S'there' +p72793 +tp72794 +a(g72791 +g72793 +S'by' +p72795 +tp72796 +a(g72793 +g72795 +S'filippino.' +p72797 +tp72798 +a(g72795 +g72797 +S'during' +p72799 +tp72800 +a(g72797 +g72799 +S'the' +p72801 +tp72802 +a(g72799 +g72801 +S'gothic' +p72803 +tp72804 +a(g72801 +g72803 +S'era' +p72805 +tp72806 +a(g72803 +g72805 +S'and' +p72807 +tp72808 +a(g72805 +g72807 +S'early' +p72809 +tp72810 +a(g72807 +g72809 +S'renaissance,' +p72811 +tp72812 +a(g72809 +g72811 +S'donors' +p72813 +tp72814 +a(g72811 +g72813 +S'of' +p72815 +tp72816 +a(g72813 +g72815 +S'a' +p72817 +tp72818 +a(g72815 +g72817 +S'painting' +p72819 +tp72820 +a(g72817 +g72819 +S'would' +p72821 +tp72822 +a(g72819 +g72821 +S'often' +p72823 +tp72824 +a(g72821 +g72823 +S'be' +p72825 +tp72826 +a(g72823 +g72825 +S'portrayed' +p72827 +tp72828 +a(g72825 +g72827 +S'as' +p72829 +tp72830 +a(g72827 +g72829 +S'tiny' +p72831 +tp72832 +a(g72829 +g72831 +S'figures' +p72833 +tp72834 +a(g72831 +g72833 +S'praying' +p72835 +tp72836 +a(g72833 +g72835 +S'at' +p72837 +tp72838 +a(g72835 +g72837 +S'the' +p72839 +tp72840 +a(g72837 +g72839 +S'lower' +p72841 +tp72842 +a(g72839 +g72841 +S'edge' +p72843 +tp72844 +a(g72841 +g72843 +S'of' +p72845 +tp72846 +a(g72843 +g72845 +S'a' +p72847 +tp72848 +a(g72845 +g72847 +S'painting,' +p72849 +tp72850 +a(g72847 +g72849 +S'as' +p72851 +tp72852 +a(g72849 +g72851 +S'in' +p72853 +tp72854 +a(g72851 +g72853 +S"crivelli's" +p72855 +tp72856 +a(g72853 +g72855 +S'constantly' +p72857 +tp72858 +a(g72855 +g72857 +S'seeking' +p72859 +tp72860 +a(g72857 +g72859 +S'ways' +p72861 +tp72862 +a(g72859 +g72861 +S'of' +p72863 +tp72864 +a(g72861 +g72863 +S'adding' +p72865 +tp72866 +a(g72863 +g72865 +S'animation' +p72867 +tp72868 +a(g72865 +g72867 +S'and' +p72869 +tp72870 +a(g72867 +g72869 +S'novelty' +p72871 +tp72872 +a(g72869 +g72871 +S'to' +p72873 +tp72874 +a(g72871 +g72873 +S'their' +p72875 +tp72876 +a(g72873 +g72875 +S'products,' +p72877 +tp72878 +a(g72875 +g72877 +S'toy' +p72879 +tp72880 +a(g72877 +g72879 +S'makers' +p72881 +tp72882 +a(g72879 +g72881 +S'invented' +p72883 +tp72884 +a(g72881 +g72883 +S'many' +p72885 +tp72886 +a(g72883 +g72885 +S'ingenious' +p72887 +tp72888 +a(g72885 +g72887 +S'products.' +p72889 +tp72890 +a(g72887 +g72889 +S'pennsylvannia' +p72891 +tp72892 +a(g72889 +g72891 +S'german' +p72893 +tp72894 +a(g72891 +g72893 +S'artists' +p72895 +tp72896 +a(g72893 +g72895 +S'were' +p72897 +tp72898 +a(g72895 +g72897 +S'especially' +p72899 +tp72900 +a(g72897 +g72899 +S'creative' +p72901 +tp72902 +a(g72899 +g72901 +S'in' +p72903 +tp72904 +a(g72901 +g72903 +S'this' +p72905 +tp72906 +a(g72903 +g72905 +S'respect.' +p72907 +tp72908 +a(g72905 +g72907 +S'the' +p72909 +tp72910 +a(g72907 +g72909 +S'hand-operated' +p72911 +tp72912 +a(g72909 +g72911 +S'wooden' +p72913 +tp72914 +a(g72911 +g72913 +S'toy' +p72915 +tp72916 +a(g72913 +g72915 +S'shown' +p72917 +tp72918 +a(g72915 +g72917 +S'here' +p72919 +tp72920 +a(g72917 +g72919 +S'consists' +p72921 +tp72922 +a(g72919 +g72921 +S'of' +p72923 +tp72924 +a(g72921 +g72923 +S'two' +p72925 +tp72926 +a(g72923 +g72925 +S'jointed' +p72927 +tp72928 +a(g72925 +g72927 +S'figures' +p72929 +tp72930 +a(g72927 +g72929 +S'that' +p72931 +tp72932 +a(g72929 +g72931 +S'revolve' +p72933 +tp72934 +a(g72931 +g72933 +S'around' +p72935 +tp72936 +a(g72933 +g72935 +S'a' +p72937 +tp72938 +a(g72935 +g72937 +S'pole' +p72939 +tp72940 +a(g72937 +g72939 +S'when' +p72941 +tp72942 +a(g72939 +g72941 +S'the' +p72943 +tp72944 +a(g72941 +g72943 +S'handle' +p72945 +tp72946 +a(g72943 +g72945 +S'is' +p72947 +tp72948 +a(g72945 +g72947 +S'turned.' +p72949 +tp72950 +a(g72947 +g72949 +S'made' +p72951 +tp72952 +a(g72949 +g72951 +S'about' +p72953 +tp72954 +a(g72951 +g72953 +S'1835,' +p72955 +tp72956 +a(g72953 +g72955 +S'the' +p72957 +tp72958 +a(g72955 +g72957 +S'toy' +p72959 +tp72960 +a(g72957 +g72959 +S'is' +p72961 +tp72962 +a(g72959 +g72961 +S'hand-carved' +p72963 +tp72964 +a(g72961 +g72963 +S'of' +p72965 +tp72966 +a(g72963 +g72965 +S'pine.' +p72967 +tp72968 +a(g72965 +g72967 +S'the' +p72969 +tp72970 +a(g72967 +g72969 +S'wood' +p72971 +tp72972 +a(g72969 +g72971 +S'has' +p72973 +tp72974 +a(g72971 +g72973 +S'a' +p72975 +tp72976 +a(g72973 +g72975 +S'natural' +p72977 +tp72978 +a(g72975 +g72977 +S'finish,' +p72979 +tp72980 +a(g72977 +g72979 +S'but' +p72981 +tp72982 +a(g72979 +g72981 +S'the' +p72983 +tp72984 +a(g72981 +g72983 +S'features' +p72985 +tp72986 +a(g72983 +g72985 +S'are' +p72987 +tp72988 +a(g72985 +g72987 +S'tinted.' +p72989 +tp72990 +a(g72987 +g72989 +S'the' +p72991 +tp72992 +a(g72989 +g72991 +S'son' +p72993 +tp72994 +a(g72991 +g72993 +S'of' +p72995 +tp72996 +a(g72993 +g72995 +S'a' +p72997 +tp72998 +a(g72995 +g72997 +S'cloth' +p72999 +tp73000 +a(g72997 +g72999 +S'dyer' +p73001 +tp73002 +a(g72999 +g73001 +S'(' +p73003 +tp73004 +a(g73001 +g73003 +S'the' +p73005 +tp73006 +a(g73003 +g73005 +S'pose' +p73007 +tp73008 +a(g73005 +g73007 +S'of' +p73009 +tp73010 +a(g73007 +g73009 +S'this' +p73011 +tp73012 +a(g73009 +g73011 +S'unidentified' +p73013 +tp73014 +a(g73011 +g73013 +S'sitter' +p73015 +tp73016 +a(g73013 +g73015 +S'recalls' +p73017 +tp73018 +a(g73015 +g73017 +S'earlier' +p73019 +tp73020 +a(g73017 +g73019 +S'portraits' +p73021 +tp73022 +a(g73019 +g73021 +S'by' +p73023 +tp73024 +a(g73021 +g73023 +S'giorgione' +p73025 +tp73026 +a(g73023 +g73025 +S'and' +p73027 +tp73028 +a(g73025 +g73027 +S'titian.' +p73029 +tp73030 +a(g73027 +g73029 +S'gazing' +p73031 +tp73032 +a(g73029 +g73031 +S'over' +p73033 +tp73034 +a(g73031 +g73033 +S'his' +p73035 +tp73036 +a(g73033 +g73035 +S'right' +p73037 +tp73038 +a(g73035 +g73037 +S'shoulder,' +p73039 +tp73040 +a(g73037 +g73039 +S'the' +p73041 +tp73042 +a(g73039 +g73041 +S'man' +p73043 +tp73044 +a(g73041 +g73043 +S'rests' +p73045 +tp73046 +a(g73043 +g73045 +S'his' +p73047 +tp73048 +a(g73045 +g73047 +S'right' +p73049 +tp73050 +a(g73047 +g73049 +S'arm' +p73051 +tp73052 +a(g73049 +g73051 +S'on' +p73053 +tp73054 +a(g73051 +g73053 +S'a' +p73055 +tp73056 +a(g73053 +g73055 +S'cloth-covered' +p73057 +tp73058 +a(g73055 +g73057 +S'table.' +p73059 +tp73060 +a(g73057 +g73059 +S'in' +p73061 +tp73062 +a(g73059 +g73061 +S'his' +p73063 +tp73064 +a(g73061 +g73063 +S'left' +p73065 +tp73066 +a(g73063 +g73065 +S'hand' +p73067 +tp73068 +a(g73065 +g73067 +S'he' +p73069 +tp73070 +a(g73067 +g73069 +S'holds' +p73071 +tp73072 +a(g73069 +g73071 +S'a' +p73073 +tp73074 +a(g73071 +g73073 +S'red' +p73075 +tp73076 +a(g73073 +g73075 +S'standard' +p73077 +tp73078 +a(g73075 +g73077 +S'emblazoned' +p73079 +tp73080 +a(g73077 +g73079 +S'with' +p73081 +tp73082 +a(g73079 +g73081 +S'the' +p73083 +tp73084 +a(g73081 +g73083 +S'white' +p73085 +tp73086 +a(g73083 +g73085 +S'cross' +p73087 +tp73088 +a(g73085 +g73087 +S'of' +p73089 +tp73090 +a(g73087 +g73089 +S'the' +p73091 +tp73092 +a(g73089 +g73091 +S'christian' +p73093 +tp73094 +a(g73091 +g73093 +S'knight' +p73095 +tp73096 +a(g73093 +g73095 +S'saint' +p73097 +tp73098 +a(g73095 +g73097 +S'george.' +p73099 +tp73100 +a(g73097 +g73099 +S'an' +p73101 +tp73102 +a(g73099 +g73101 +S'ornate' +p73103 +tp73104 +a(g73101 +g73103 +S'helmet' +p73105 +tp73106 +a(g73103 +g73105 +S'is' +p73107 +tp73108 +a(g73105 +g73107 +S'seen' +p73109 +tp73110 +a(g73107 +g73109 +S'on' +p73111 +tp73112 +a(g73109 +g73111 +S'the' +p73113 +tp73114 +a(g73111 +g73113 +S'table' +p73115 +tp73116 +a(g73113 +g73115 +S'before' +p73117 +tp73118 +a(g73115 +g73117 +S'him' +p73119 +tp73120 +a(g73117 +g73119 +S'while' +p73121 +tp73122 +a(g73119 +g73121 +S'a' +p73123 +tp73124 +a(g73121 +g73123 +S'menacing' +p73125 +tp73126 +a(g73123 +g73125 +S'dragon' +p73127 +tp73128 +a(g73125 +g73127 +S'emerges' +p73129 +tp73130 +a(g73127 +g73129 +S'from' +p73131 +tp73132 +a(g73129 +g73131 +S'the' +p73133 +tp73134 +a(g73131 +g73133 +S'darkness' +p73135 +tp73136 +a(g73133 +g73135 +S'behind' +p73137 +tp73138 +a(g73135 +g73137 +S'him.' +p73139 +tp73140 +a(g73137 +g73139 +S'the' +p73141 +tp73142 +a(g73139 +g73141 +S"sitter's" +p73143 +tp73144 +a(g73141 +g73143 +S'depiction' +p73145 +tp73146 +a(g73143 +g73145 +S'with' +p73147 +tp73148 +a(g73145 +g73147 +S'the' +p73149 +tp73150 +a(g73147 +g73149 +S'attributes' +p73151 +tp73152 +a(g73149 +g73151 +S'of' +p73153 +tp73154 +a(g73151 +g73153 +S'saint' +p73155 +tp73156 +a(g73153 +g73155 +S'george' +p73157 +tp73158 +a(g73155 +g73157 +S'perhaps' +p73159 +tp73160 +a(g73157 +g73159 +S'refers' +p73161 +tp73162 +a(g73159 +g73161 +S'to' +p73163 +tp73164 +a(g73161 +g73163 +S'his' +p73165 +tp73166 +a(g73163 +g73165 +S'name' +p73167 +tp73168 +a(g73165 +g73167 +S'or' +p73169 +tp73170 +a(g73167 +g73169 +S'to' +p73171 +tp73172 +a(g73169 +g73171 +S'his' +p73173 +tp73174 +a(g73171 +g73173 +S'patron' +p73175 +tp73176 +a(g73173 +g73175 +S'saint.' +p73177 +tp73178 +a(g73175 +g73177 +S'as' +p73179 +tp73180 +a(g73177 +g73179 +S'an' +p73181 +tp73182 +a(g73179 +g73181 +S'example' +p73183 +tp73184 +a(g73181 +g73183 +S'of' +p73185 +tp73186 +a(g73183 +g73185 +S"tintoretto's" +p73187 +tp73188 +a(g73185 +g73187 +S'early' +p73189 +tp73190 +a(g73187 +g73189 +S'painting' +p73191 +tp73192 +a(g73189 +g73191 +S'style,' +p73193 +tp73194 +a(g73191 +g73193 +S'this' +p73195 +tp73196 +a(g73193 +g73195 +S'enigmatic' +p73197 +tp73198 +a(g73195 +g73197 +S'portrait' +p73199 +tp73200 +a(g73197 +g73199 +S'displays' +p73201 +tp73202 +a(g73199 +g73201 +S'a' +p73203 +tp73204 +a(g73201 +g73203 +S'thoughtful' +p73205 +tp73206 +a(g73203 +g73205 +S'balance' +p73207 +tp73208 +a(g73205 +g73207 +S'of' +p73209 +tp73210 +a(g73207 +g73209 +S'rich' +p73211 +tp73212 +a(g73209 +g73211 +S'color' +p73213 +tp73214 +a(g73211 +g73213 +S'and' +p73215 +tp73216 +a(g73213 +g73215 +S'precise' +p73217 +tp73218 +a(g73215 +g73217 +S'drawing.' +p73219 +tp73220 +a(g73217 +g73219 +S'the' +p73221 +tp73222 +a(g73219 +g73221 +S'bright' +p73223 +tp73224 +a(g73221 +g73223 +S'red' +p73225 +tp73226 +a(g73223 +g73225 +S'and' +p73227 +tp73228 +a(g73225 +g73227 +S'teal' +p73229 +tp73230 +a(g73227 +g73229 +S'blue' +p73231 +tp73232 +a(g73229 +g73231 +S'of' +p73233 +tp73234 +a(g73231 +g73233 +S'the' +p73235 +tp73236 +a(g73233 +g73235 +S'banner' +p73237 +tp73238 +a(g73235 +g73237 +S'and' +p73239 +tp73240 +a(g73237 +g73239 +S'helmet' +p73241 +tp73242 +a(g73239 +g73241 +S'are' +p73243 +tp73244 +a(g73241 +g73243 +S'enhanced' +p73245 +tp73246 +a(g73243 +g73245 +S'by' +p73247 +tp73248 +a(g73245 +g73247 +S'gold' +p73249 +tp73250 +a(g73247 +g73249 +S'highlights.' +p73251 +tp73252 +a(g73249 +g73251 +S'in' +p73253 +tp73254 +a(g73251 +g73253 +S'contrast' +p73255 +tp73256 +a(g73253 +g73255 +S'to' +p73257 +tp73258 +a(g73255 +g73257 +S'the' +p73259 +tp73260 +a(g73257 +g73259 +S"sitter's" +p73261 +tp73262 +a(g73259 +g73261 +S'carefully' +p73263 +tp73264 +a(g73261 +g73263 +S'described' +p73265 +tp73266 +a(g73263 +g73265 +S'face' +p73267 +tp73268 +a(g73265 +g73267 +S'and' +p73269 +tp73270 +a(g73267 +g73269 +S'beard,' +p73271 +tp73272 +a(g73269 +g73271 +S'the' +p73273 +tp73274 +a(g73271 +g73273 +S'dragon' +p73275 +tp73276 +a(g73273 +g73275 +S'is' +p73277 +tp73278 +a(g73275 +g73277 +S'merely' +p73279 +tp73280 +a(g73277 +g73279 +S'suggested' +p73281 +tp73282 +a(g73279 +g73281 +S'with' +p73283 +tp73284 +a(g73281 +g73283 +S'quick,' +p73285 +tp73286 +a(g73283 +g73285 +S'sketchy' +p73287 +tp73288 +a(g73285 +g73287 +S'brushstrokes.' +p73289 +tp73290 +a(g73287 +g73289 +S'the' +p73291 +tp73292 +a(g73289 +g73291 +S'whirligig' +p73293 +tp73294 +a(g73291 +g73293 +S'is' +p73295 +tp73296 +a(g73293 +g73295 +S'a' +p73297 +tp73298 +a(g73295 +g73297 +S'special' +p73299 +tp73300 +a(g73297 +g73299 +S'kind' +p73301 +tp73302 +a(g73299 +g73301 +S'of' +p73303 +tp73304 +a(g73301 +g73303 +S'weathervane,' +p73305 +tp73306 +a(g73303 +g73305 +S'which' +p73307 +tp73308 +a(g73305 +g73307 +S'can' +p73309 +tp73310 +a(g73307 +g73309 +S'indicate' +p73311 +tp73312 +a(g73309 +g73311 +S'velocity' +p73313 +tp73314 +a(g73311 +g73313 +S'as' +p73315 +tp73316 +a(g73313 +g73315 +S'well' +p73317 +tp73318 +a(g73315 +g73317 +S'as' +p73319 +tp73320 +a(g73317 +g73319 +S'wind' +p73321 +tp73322 +a(g73319 +g73321 +S'direction.' +p73323 +tp73324 +a(g73321 +g73323 +S'based' +p73325 +tp73326 +a(g73323 +g73325 +S'on' +p73327 +tp73328 +a(g73325 +g73327 +S'the' +p73329 +tp73330 +a(g73327 +g73329 +S'principle' +p73331 +tp73332 +a(g73329 +g73331 +S'of' +p73333 +tp73334 +a(g73331 +g73333 +S'the' +p73335 +tp73336 +a(g73333 +g73335 +S'windmill,' +p73337 +tp73338 +a(g73335 +g73337 +S'whirligigs' +p73339 +tp73340 +a(g73337 +g73339 +S'were' +p73341 +tp73342 +a(g73339 +g73341 +S'usually' +p73343 +tp73344 +a(g73341 +g73343 +S'in' +p73345 +tp73346 +a(g73343 +g73345 +S'the' +p73347 +tp73348 +a(g73345 +g73347 +S'form' +p73349 +tp73350 +a(g73347 +g73349 +S'of' +p73351 +tp73352 +a(g73349 +g73351 +S'a' +p73353 +tp73354 +a(g73351 +g73353 +S'human' +p73355 +tp73356 +a(g73353 +g73355 +S'figure' +p73357 +tp73358 +a(g73355 +g73357 +S'so' +p73359 +tp73360 +a(g73357 +g73359 +S'that' +p73361 +tp73362 +a(g73359 +g73361 +S'the' +p73363 +tp73364 +a(g73361 +g73363 +S'paddlelike' +p73365 +tp73366 +a(g73363 +g73365 +S'arms,' +p73367 +tp73368 +a(g73365 +g73367 +S'extending' +p73369 +tp73370 +a(g73367 +g73369 +S'in' +p73371 +tp73372 +a(g73369 +g73371 +S'opposite' +p73373 +tp73374 +a(g73371 +g73373 +S'directions,' +p73375 +tp73376 +a(g73373 +g73375 +S'could' +p73377 +tp73378 +a(g73375 +g73377 +S'be' +p73379 +tp73380 +a(g73377 +g73379 +S'set' +p73381 +tp73382 +a(g73379 +g73381 +S'spinning' +p73383 +tp73384 +a(g73381 +g73383 +S'by' +p73385 +tp73386 +a(g73383 +g73385 +S'the' +p73387 +tp73388 +a(g73385 +g73387 +S'wind.' +p73389 +tp73390 +a(g73387 +g73389 +S'although' +p73391 +tp73392 +a(g73389 +g73391 +S'the' +p73393 +tp73394 +a(g73391 +g73393 +S'larger' +p73395 +tp73396 +a(g73393 +g73395 +S'whirligigs' +p73397 +tp73398 +a(g73395 +g73397 +S'were' +p73399 +tp73400 +a(g73397 +g73399 +S'undoubtedly' +p73401 +tp73402 +a(g73399 +g73401 +S'placed' +p73403 +tp73404 +a(g73401 +g73403 +S'outdoors' +p73405 +tp73406 +a(g73403 +g73405 +S'to' +p73407 +tp73408 +a(g73405 +g73407 +S'function' +p73409 +tp73410 +a(g73407 +g73409 +S'as' +p73411 +tp73412 +a(g73409 +g73411 +S'vanes,' +p73413 +tp73414 +a(g73411 +g73413 +S'smaller' +p73415 +tp73416 +a(g73413 +g73415 +S'versions' +p73417 +tp73418 +a(g73415 +g73417 +S'may' +p73419 +tp73420 +a(g73417 +g73419 +S'well' +p73421 +tp73422 +a(g73419 +g73421 +S'have' +p73423 +tp73424 +a(g73421 +g73423 +S'served' +p73425 +tp73426 +a(g73423 +g73425 +S'as' +p73427 +tp73428 +a(g73425 +g73427 +S"children's" +p73429 +tp73430 +a(g73427 +g73429 +S'toys.' +p73431 +tp73432 +a(g73429 +g73431 +S'a' +p73433 +tp73434 +a(g73431 +g73433 +S'clue' +p73435 +tp73436 +a(g73433 +g73435 +S'for' +p73437 +tp73438 +a(g73435 +g73437 +S'dating' +p73439 +tp73440 +a(g73437 +g73439 +S'whirligigs' +p73441 +tp73442 +a(g73439 +g73441 +S'is' +p73443 +tp73444 +a(g73441 +g73443 +S'the' +p73445 +tp73446 +a(g73443 +g73445 +S'costume' +p73447 +tp73448 +a(g73445 +g73447 +S'of' +p73449 +tp73450 +a(g73447 +g73449 +S'the' +p73451 +tp73452 +a(g73449 +g73451 +S'figure.' +p73453 +tp73454 +a(g73451 +g73453 +S'this' +p73455 +tp73456 +a(g73453 +g73455 +S'example,' +p73457 +tp73458 +a(g73455 +g73457 +S'known' +p73459 +tp73460 +a(g73457 +g73459 +S'as' +p73461 +tp73462 +a(g73459 +g73461 +S'"sailor' +p73463 +tp73464 +a(g73461 +g73463 +S'jack,"' +p73465 +tp73466 +a(g73463 +g73465 +S'wears' +p73467 +tp73468 +a(g73465 +g73467 +S'a' +p73469 +tp73470 +a(g73467 +g73469 +S'hat' +p73471 +tp73472 +a(g73469 +g73471 +S'that' +p73473 +tp73474 +a(g73471 +g73473 +S'suggests' +p73475 +tp73476 +a(g73473 +g73475 +S'an' +p73477 +tp73478 +a(g73475 +g73477 +S'officer' +p73479 +tp73480 +a(g73477 +g73479 +S'in' +p73481 +tp73482 +a(g73479 +g73481 +S'the' +p73483 +tp73484 +a(g73481 +g73483 +S'war' +p73485 +tp73486 +a(g73483 +g73485 +S'of' +p73487 +tp73488 +a(g73485 +g73487 +S'1812.' +p73489 +tp73490 +a(g73487 +g73489 +S'thus,' +p73491 +tp73492 +a(g73489 +g73491 +S'it' +p73493 +tp73494 +a(g73491 +g73493 +S'was' +p73495 +tp73496 +a(g73493 +g73495 +S'most' +p73497 +tp73498 +a(g73495 +g73497 +S'likely' +p73499 +tp73500 +a(g73497 +g73499 +S'made' +p73501 +tp73502 +a(g73499 +g73501 +S'in' +p73503 +tp73504 +a(g73501 +g73503 +S'the' +p73505 +tp73506 +a(g73503 +g73505 +S'early' +p73507 +tp73508 +a(g73505 +g73507 +S'nineteenth' +p73509 +tp73510 +a(g73507 +g73509 +S'century.' +p73511 +tp73512 +a(g73509 +g73511 +S'the' +p73513 +tp73514 +a(g73511 +g73513 +S'carving' +p73515 +tp73516 +a(g73513 +g73515 +S'of' +p73517 +tp73518 +a(g73515 +g73517 +S'the' +p73519 +tp73520 +a(g73517 +g73519 +S'figure,' +p73521 +tp73522 +a(g73519 +g73521 +S'however,' +p73523 +tp73524 +a(g73521 +g73523 +S'is' +p73525 +tp73526 +a(g73523 +g73525 +S'timelessly' +p73527 +tp73528 +a(g73525 +g73527 +S'abstract.' +p73529 +tp73530 +a(g73527 +g73529 +S'sandro' +p73531 +tp73532 +a(g73529 +g73531 +S'botticelli,' +p73533 +tp73534 +a(g73531 +g73533 +S'a' +p73535 +tp73536 +a(g73533 +g73535 +S'florentine,' +p73537 +tp73538 +a(g73535 +g73537 +S'painted' +p73539 +tp73540 +a(g73537 +g73539 +S'several' +p73541 +tp73542 +a(g73539 +g73541 +S'versions' +p73543 +tp73544 +a(g73541 +g73543 +S'of' +p73545 +tp73546 +a(g73543 +g73545 +S'the' +p73547 +tp73548 +a(g73545 +g73547 +S'theme' +p73549 +tp73550 +a(g73547 +g73549 +S'of' +p73551 +tp73552 +a(g73549 +g73551 +S'the' +p73553 +tp73554 +a(g73551 +g73553 +S'adoration' +p73555 +tp73556 +a(g73553 +g73555 +S'of' +p73557 +tp73558 +a(g73555 +g73557 +S'the' +p73559 +tp73560 +a(g73557 +g73559 +S'magi.' +p73561 +tp73562 +a(g73559 +g73561 +S'the' +p73563 +tp73564 +a(g73561 +g73563 +S'magi,' +p73565 +tp73566 +a(g73563 +g73565 +S'or' +p73567 +tp73568 +a(g73565 +g73567 +S'wise' +p73569 +tp73570 +a(g73567 +g73569 +S'men,' +p73571 +tp73572 +a(g73569 +g73571 +S'were' +p73573 +tp73574 +a(g73571 +g73573 +S'particularly' +p73575 +tp73576 +a(g73573 +g73575 +S'venerated' +p73577 +tp73578 +a(g73575 +g73577 +S'in' +p73579 +tp73580 +a(g73577 +g73579 +S'florence,' +p73581 +tp73582 +a(g73579 +g73581 +S'as' +p73583 +tp73584 +a(g73581 +g73583 +S'one' +p73585 +tp73586 +a(g73583 +g73585 +S'of' +p73587 +tp73588 +a(g73585 +g73587 +S'the' +p73589 +tp73590 +a(g73587 +g73589 +S"city's" +p73591 +tp73592 +a(g73589 +g73591 +S'leading' +p73593 +tp73594 +a(g73591 +g73593 +S'religious' +p73595 +tp73596 +a(g73593 +g73595 +S'confraternities' +p73597 +tp73598 +a(g73595 +g73597 +S'was' +p73599 +tp73600 +a(g73597 +g73599 +S'dedicated' +p73601 +tp73602 +a(g73599 +g73601 +S'to' +p73603 +tp73604 +a(g73601 +g73603 +S'them.' +p73605 +tp73606 +a(g73603 +g73605 +S'the' +p73607 +tp73608 +a(g73605 +g73607 +S'members' +p73609 +tp73610 +a(g73607 +g73609 +S'of' +p73611 +tp73612 +a(g73609 +g73611 +S'the' +p73613 +tp73614 +a(g73611 +g73613 +S'confraternity' +p73615 +tp73616 +a(g73613 +g73615 +S'took' +p73617 +tp73618 +a(g73615 +g73617 +S'part' +p73619 +tp73620 +a(g73617 +g73619 +S'in' +p73621 +tp73622 +a(g73619 +g73621 +S'pageants' +p73623 +tp73624 +a(g73621 +g73623 +S'organized' +p73625 +tp73626 +a(g73623 +g73625 +S'every' +p73627 +tp73628 +a(g73625 +g73627 +S'five' +p73629 +tp73630 +a(g73627 +g73629 +S'years,' +p73631 +tp73632 +a(g73629 +g73631 +S'when' +p73633 +tp73634 +a(g73631 +g73633 +S'the' +p73635 +tp73636 +a(g73633 +g73635 +S'journey' +p73637 +tp73638 +a(g73635 +g73637 +S'to' +p73639 +tp73640 +a(g73637 +g73639 +S'bethlehem' +p73641 +tp73642 +a(g73639 +g73641 +S'of' +p73643 +tp73644 +a(g73641 +g73643 +S'the' +p73645 +tp73646 +a(g73643 +g73645 +S'magi' +p73647 +tp73648 +a(g73645 +g73647 +S'and' +p73649 +tp73650 +a(g73647 +g73649 +S'their' +p73651 +tp73652 +a(g73649 +g73651 +S'retinue,' +p73653 +tp73654 +a(g73651 +g73653 +S'often' +p73655 +tp73656 +a(g73653 +g73655 +S'numbering' +p73657 +tp73658 +a(g73655 +g73657 +S'in' +p73659 +tp73660 +a(g73657 +g73659 +S'the' +p73661 +tp73662 +a(g73659 +g73661 +S'hundreds,' +p73663 +tp73664 +a(g73661 +g73663 +S'was' +p73665 +tp73666 +a(g73663 +g73665 +S're-enacted' +p73667 +tp73668 +a(g73665 +g73667 +S'through' +p73669 +tp73670 +a(g73667 +g73669 +S'the' +p73671 +tp73672 +a(g73669 +g73671 +S'streets' +p73673 +tp73674 +a(g73671 +g73673 +S'of' +p73675 +tp73676 +a(g73673 +g73675 +S'florence.' +p73677 +tp73678 +a(g73675 +g73677 +S'the' +p73679 +tp73680 +a(g73677 +g73679 +S'washington' +p73681 +tp73682 +a(g73679 +g73681 +S'earlier' +p73683 +tp73684 +a(g73681 +g73683 +S'renaissance' +p73685 +tp73686 +a(g73683 +g73685 +S'paintings' +p73687 +tp73688 +a(g73685 +g73687 +S'of' +p73689 +tp73690 +a(g73687 +g73689 +S'this' +p73691 +tp73692 +a(g73689 +g73691 +S'theme,' +p73693 +tp73694 +a(g73691 +g73693 +S'such' +p73695 +tp73696 +a(g73693 +g73695 +S'as' +p73697 +tp73698 +a(g73695 +g73697 +S'the' +p73699 +tp73700 +a(g73697 +g73699 +S"gallery's" +p73701 +tp73702 +a(g73699 +g73701 +S'tondo' +p73703 +tp73704 +a(g73701 +g73703 +S'by' +p73705 +tp73706 +a(g73703 +g73705 +S'fra' +p73707 +tp73708 +a(g73705 +g73707 +S'angelico' +p73709 +tp73710 +a(g73707 +g73709 +S'and' +p73711 +tp73712 +a(g73709 +g73711 +S'fra' +p73713 +tp73714 +a(g73711 +g73713 +S'lippi,' +p73715 +tp73716 +a(g73713 +g73715 +S'emphasize' +p73717 +tp73718 +a(g73715 +g73717 +S'the' +p73719 +tp73720 +a(g73717 +g73719 +S'pomp' +p73721 +tp73722 +a(g73719 +g73721 +S'and' +p73723 +tp73724 +a(g73721 +g73723 +S'pageantry' +p73725 +tp73726 +a(g73723 +g73725 +S'of' +p73727 +tp73728 +a(g73725 +g73727 +S'the' +p73729 +tp73730 +a(g73727 +g73729 +S'scene.' +p73731 +tp73732 +a(g73729 +g73731 +S'as' +p73733 +tp73734 +a(g73731 +g73733 +S'painted' +p73735 +tp73736 +a(g73733 +g73735 +S'by' +p73737 +tp73738 +a(g73735 +g73737 +S'botticelli' +p73739 +tp73740 +a(g73737 +g73739 +S'in' +p73741 +tp73742 +a(g73739 +g73741 +S'this' +p73743 +tp73744 +a(g73741 +g73743 +S'late' +p73745 +tp73746 +a(g73743 +g73745 +S'version,' +p73747 +tp73748 +a(g73745 +g73747 +S'the' +p73749 +tp73750 +a(g73747 +g73749 +S'religious' +p73751 +tp73752 +a(g73749 +g73751 +S'aspect' +p73753 +tp73754 +a(g73751 +g73753 +S'is' +p73755 +tp73756 +a(g73753 +g73755 +S'stressed.' +p73757 +tp73758 +a(g73755 +g73757 +S'each' +p73759 +tp73760 +a(g73757 +g73759 +S'figure' +p73761 +tp73762 +a(g73759 +g73761 +S'is' +p73763 +tp73764 +a(g73761 +g73763 +S'an' +p73765 +tp73766 +a(g73763 +g73765 +S'expression' +p73767 +tp73768 +a(g73765 +g73767 +S'of' +p73769 +tp73770 +a(g73767 +g73769 +S'piety,' +p73771 +tp73772 +a(g73769 +g73771 +S'the' +p73773 +tp73774 +a(g73771 +g73773 +S'postures' +p73775 +tp73776 +a(g73773 +g73775 +S'of' +p73777 +tp73778 +a(g73775 +g73777 +S'their' +p73779 +tp73780 +a(g73777 +g73779 +S'hands' +p73781 +tp73782 +a(g73779 +g73781 +S'and' +p73783 +tp73784 +a(g73781 +g73783 +S'bodies' +p73785 +tp73786 +a(g73783 +g73785 +S'revealing' +p73787 +tp73788 +a(g73785 +g73787 +S'devotion,' +p73789 +tp73790 +a(g73787 +g73789 +S'reverence' +p73791 +tp73792 +a(g73789 +g73791 +S'and' +p73793 +tp73794 +a(g73791 +g73793 +S'contemplation' +p73795 +tp73796 +a(g73793 +g73795 +S'on' +p73797 +tp73798 +a(g73795 +g73797 +S'the' +p73799 +tp73800 +a(g73797 +g73799 +S'divine' +p73801 +tp73802 +a(g73799 +g73801 +S'mystery' +p73803 +tp73804 +a(g73801 +g73803 +S'before' +p73805 +tp73806 +a(g73803 +g73805 +S'them.' +p73807 +tp73808 +a(g73805 +g73807 +S'because' +p73809 +tp73810 +a(g73807 +g73809 +S'england' +p73811 +tp73812 +a(g73809 +g73811 +S'restricted' +p73813 +tp73814 +a(g73811 +g73813 +S'the' +p73815 +tp73816 +a(g73813 +g73815 +S'importation' +p73817 +tp73818 +a(g73815 +g73817 +S'of' +p73819 +tp73820 +a(g73817 +g73819 +S'raw' +p73821 +tp73822 +a(g73819 +g73821 +S'tin' +p73823 +tp73824 +a(g73821 +g73823 +S'into' +p73825 +tp73826 +a(g73823 +g73825 +S'the' +p73827 +tp73828 +a(g73825 +g73827 +S'colonies,' +p73829 +tp73830 +a(g73827 +g73829 +S'tinware' +p73831 +tp73832 +a(g73829 +g73831 +S'was' +p73833 +tp73834 +a(g73831 +g73833 +S'scarce' +p73835 +tp73836 +a(g73833 +g73835 +S'in' +p73837 +tp73838 +a(g73835 +g73837 +S'america' +p73839 +tp73840 +a(g73837 +g73839 +S'before' +p73841 +tp73842 +a(g73839 +g73841 +S'the' +p73843 +tp73844 +a(g73841 +g73843 +S'revolution.' +p73845 +tp73846 +a(g73843 +g73845 +S'by' +p73847 +tp73848 +a(g73845 +g73847 +S'the' +p73849 +tp73850 +a(g73847 +g73849 +S'nineteenth' +p73851 +tp73852 +a(g73849 +g73851 +S'century,' +p73853 +tp73854 +a(g73851 +g73853 +S'however,' +p73855 +tp73856 +a(g73853 +g73855 +S'tin' +p73857 +tp73858 +a(g73855 +g73857 +S'was' +p73859 +tp73860 +a(g73857 +g73859 +S'plentiful' +p73861 +tp73862 +a(g73859 +g73861 +S'and' +p73863 +tp73864 +a(g73861 +g73863 +S'in' +p73865 +tp73866 +a(g73863 +g73865 +S'great' +p73867 +tp73868 +a(g73865 +g73867 +S'demand' +p73869 +tp73870 +a(g73867 +g73869 +S'for' +p73871 +tp73872 +a(g73869 +g73871 +S'a' +p73873 +tp73874 +a(g73871 +g73873 +S'variety' +p73875 +tp73876 +a(g73873 +g73875 +S'of' +p73877 +tp73878 +a(g73875 +g73877 +S'household' +p73879 +tp73880 +a(g73877 +g73879 +S'articles.' +p73881 +tp73882 +a(g73879 +g73881 +S'lighting' +p73883 +tp73884 +a(g73881 +g73883 +S'devices' +p73885 +tp73886 +a(g73883 +g73885 +S'were' +p73887 +tp73888 +a(g73885 +g73887 +S'commonly' +p73889 +tp73890 +a(g73887 +g73889 +S'made' +p73891 +tp73892 +a(g73889 +g73891 +S'of' +p73893 +tp73894 +a(g73891 +g73893 +S'tinplate.' +p73895 +tp73896 +a(g73893 +g73895 +S'the' +p73897 +tp73898 +a(g73895 +g73897 +S'lightness' +p73899 +tp73900 +a(g73897 +g73899 +S'of' +p73901 +tp73902 +a(g73899 +g73901 +S'the' +p73903 +tp73904 +a(g73901 +g73903 +S'metal' +p73905 +tp73906 +a(g73903 +g73905 +S'allowed' +p73907 +tp73908 +a(g73905 +g73907 +S'sconces' +p73909 +tp73910 +a(g73907 +g73909 +S'to' +p73911 +tp73912 +a(g73909 +g73911 +S'be' +p73913 +tp73914 +a(g73911 +g73913 +S'hung' +p73915 +tp73916 +a(g73913 +g73915 +S'from' +p73917 +tp73918 +a(g73915 +g73917 +S'the' +p73919 +tp73920 +a(g73917 +g73919 +S'wall' +p73921 +tp73922 +a(g73919 +g73921 +S'or' +p73923 +tp73924 +a(g73921 +g73923 +S'chandeliers' +p73925 +tp73926 +a(g73923 +g73925 +S'from' +p73927 +tp73928 +a(g73925 +g73927 +S'the' +p73929 +tp73930 +a(g73927 +g73929 +S'ceiling.' +p73931 +tp73932 +a(g73929 +g73931 +S'the' +p73933 +tp73934 +a(g73931 +g73933 +S'flexibility' +p73935 +tp73936 +a(g73933 +g73935 +S'of' +p73937 +tp73938 +a(g73935 +g73937 +S'the' +p73939 +tp73940 +a(g73937 +g73939 +S'material' +p73941 +tp73942 +a(g73939 +g73941 +S'allowed' +p73943 +tp73944 +a(g73941 +g73943 +S'craftsmen' +p73945 +tp73946 +a(g73943 +g73945 +S'to' +p73947 +tp73948 +a(g73945 +g73947 +S'fashion' +p73949 +tp73950 +a(g73947 +g73949 +S'decorative' +p73951 +tp73952 +a(g73949 +g73951 +S'shapes.' +p73953 +tp73954 +a(g73951 +g73953 +S'this' +p73955 +tp73956 +a(g73953 +g73955 +S'chandelier,' +p73957 +tp73958 +a(g73955 +g73957 +S'made' +p73959 +tp73960 +a(g73957 +g73959 +S'in' +p73961 +tp73962 +a(g73959 +g73961 +S'the' +p73963 +tp73964 +a(g73961 +g73963 +S'1830s,' +p73965 +tp73966 +a(g73963 +g73965 +S'was' +p73967 +tp73968 +a(g73965 +g73967 +S'constructed' +p73969 +tp73970 +a(g73967 +g73969 +S'of' +p73971 +tp73972 +a(g73969 +g73971 +S'sheet' +p73973 +tp73974 +a(g73971 +g73973 +S'tin.' +p73975 +tp73976 +a(g73973 +g73975 +S'the' +p73977 +tp73978 +a(g73975 +g73977 +S'barrel-shaped' +p73979 +tp73980 +a(g73977 +g73979 +S'body' +p73981 +tp73982 +a(g73979 +g73981 +S'provides' +p73983 +tp73984 +a(g73981 +g73983 +S'a' +p73985 +tp73986 +a(g73983 +g73985 +S'central' +p73987 +tp73988 +a(g73985 +g73987 +S'core' +p73989 +tp73990 +a(g73987 +g73989 +S'from' +p73991 +tp73992 +a(g73989 +g73991 +S'which' +p73993 +tp73994 +a(g73991 +g73993 +S'six' +p73995 +tp73996 +a(g73993 +g73995 +S'arms' +p73997 +tp73998 +a(g73995 +g73997 +S'extend' +p73999 +tp74000 +a(g73997 +g73999 +S'outward' +p74001 +tp74002 +a(g73999 +g74001 +S'to' +p74003 +tp74004 +a(g74001 +g74003 +S'terminate' +p74005 +tp74006 +a(g74003 +g74005 +S'in' +p74007 +tp74008 +a(g74005 +g74007 +S'candleholders.' +p74009 +tp74010 +a(g74007 +g74009 +S'the' +p74011 +tp74012 +a(g74009 +g74011 +S's-curves' +p74013 +tp74014 +a(g74011 +g74013 +S'of' +p74015 +tp74016 +a(g74013 +g74015 +S'the' +p74017 +tp74018 +a(g74015 +g74017 +S'arms' +p74019 +tp74020 +a(g74017 +g74019 +S'serve' +p74021 +tp74022 +a(g74019 +g74021 +S'to' +p74023 +tp74024 +a(g74021 +g74023 +S'diffuse' +p74025 +tp74026 +a(g74023 +g74025 +S'the' +p74027 +tp74028 +a(g74025 +g74027 +S'light' +p74029 +tp74030 +a(g74027 +g74029 +S'away' +p74031 +tp74032 +a(g74029 +g74031 +S'from' +p74033 +tp74034 +a(g74031 +g74033 +S'the' +p74035 +tp74036 +a(g74033 +g74035 +S'center' +p74037 +tp74038 +a(g74035 +g74037 +S'while' +p74039 +tp74040 +a(g74037 +g74039 +S'providing' +p74041 +tp74042 +a(g74039 +g74041 +S'a' +p74043 +tp74044 +a(g74041 +g74043 +S'decorative' +p74045 +tp74046 +a(g74043 +g74045 +S'aspect' +p74047 +tp74048 +a(g74045 +g74047 +S'to' +p74049 +tp74050 +a(g74047 +g74049 +S'the' +p74051 +tp74052 +a(g74049 +g74051 +S"chandelier's" +p74053 +tp74054 +a(g74051 +g74053 +S'form.' +p74055 +tp74056 +a(g74053 +g74055 +S'ribbed' +p74057 +tp74058 +a(g74055 +g74057 +S'bands' +p74059 +tp74060 +a(g74057 +g74059 +S'around' +p74061 +tp74062 +a(g74059 +g74061 +S'the' +p74063 +tp74064 +a(g74061 +g74063 +S'body' +p74065 +tp74066 +a(g74063 +g74065 +S'of' +p74067 +tp74068 +a(g74065 +g74067 +S'the' +p74069 +tp74070 +a(g74067 +g74069 +S'chandelier' +p74071 +tp74072 +a(g74069 +g74071 +S'and' +p74073 +tp74074 +a(g74071 +g74073 +S'ribs' +p74075 +tp74076 +a(g74073 +g74075 +S'extending' +p74077 +tp74078 +a(g74075 +g74077 +S'along' +p74079 +tp74080 +a(g74077 +g74079 +S'the' +p74081 +tp74082 +a(g74079 +g74081 +S'arms' +p74083 +tp74084 +a(g74081 +g74083 +S'suggest' +p74085 +tp74086 +a(g74083 +g74085 +S'a' +p74087 +tp74088 +a(g74085 +g74087 +S'linear' +p74089 +tp74090 +a(g74087 +g74089 +S'pattern' +p74091 +tp74092 +a(g74089 +g74091 +S'that' +p74093 +tp74094 +a(g74091 +g74093 +S'is' +p74095 +tp74096 +a(g74093 +g74095 +S'emphasized' +p74097 +tp74098 +a(g74095 +g74097 +S'by' +p74099 +tp74100 +a(g74097 +g74099 +S'the' +p74101 +tp74102 +a(g74099 +g74101 +S'fluting' +p74103 +tp74104 +a(g74101 +g74103 +S'of' +p74105 +tp74106 +a(g74103 +g74105 +S'the' +p74107 +tp74108 +a(g74105 +g74107 +S'candleholders.' +p74109 +tp74110 +a(g74107 +g74109 +S'the' +p74111 +tp74112 +a(g74109 +g74111 +S'simplicity' +p74113 +tp74114 +a(g74111 +g74113 +S'of' +p74115 +tp74116 +a(g74113 +g74115 +S'this' +p74117 +tp74118 +a(g74115 +g74117 +S'linear' +p74119 +tp74120 +a(g74117 +g74119 +S'pattern' +p74121 +tp74122 +a(g74119 +g74121 +S'and' +p74123 +tp74124 +a(g74121 +g74123 +S'the' +p74125 +tp74126 +a(g74123 +g74125 +S'round' +p74127 +tp74128 +a(g74125 +g74127 +S'forms' +p74129 +tp74130 +a(g74127 +g74129 +S'of' +p74131 +tp74132 +a(g74129 +g74131 +S'the' +p74133 +tp74134 +a(g74131 +g74133 +S'central' +p74135 +tp74136 +a(g74133 +g74135 +S'body' +p74137 +tp74138 +a(g74135 +g74137 +S'and' +p74139 +tp74140 +a(g74137 +g74139 +S'candleholders' +p74141 +tp74142 +a(g74139 +g74141 +S'provide' +p74143 +tp74144 +a(g74141 +g74143 +S'a' +p74145 +tp74146 +a(g74143 +g74145 +S'unified' +p74147 +tp74148 +a(g74145 +g74147 +S'and' +p74149 +tp74150 +a(g74147 +g74149 +S'pleasing' +p74151 +tp74152 +a(g74149 +g74151 +S'sound.' +p74153 +tp74154 +a(g74151 +g74153 +S'portraits' +p74155 +tp74156 +a(g74153 +g74155 +S'were' +p74157 +tp74158 +a(g74155 +g74157 +S'often' +p74159 +tp74160 +a(g74157 +g74159 +S'included' +p74161 +tp74162 +a(g74159 +g74161 +S'in' +p74163 +tp74164 +a(g74161 +g74163 +S'devotional' +p74165 +tp74166 +a(g74163 +g74165 +S'works,' +p74167 +tp74168 +a(g74165 +g74167 +S'in' +p74169 +tp74170 +a(g74167 +g74169 +S'which' +p74171 +tp74172 +a(g74169 +g74171 +S'donors' +p74173 +tp74174 +a(g74171 +g74173 +S'were' +p74175 +tp74176 +a(g74173 +g74175 +S'depicted' +p74177 +tp74178 +a(g74175 +g74177 +S'as' +p74179 +tp74180 +a(g74177 +g74179 +S'witnessing' +p74181 +tp74182 +a(g74179 +g74181 +S'a' +p74183 +tp74184 +a(g74181 +g74183 +S'sacred' +p74185 +tp74186 +a(g74183 +g74185 +S'scene.' +p74187 +tp74188 +a(g74185 +g74187 +S'independent' +p74189 +tp74190 +a(g74187 +g74189 +S'portraits,' +p74191 +tp74192 +a(g74189 +g74191 +S'however,' +p74193 +tp74194 +a(g74191 +g74193 +S'are' +p74195 +tp74196 +a(g74193 +g74195 +S'extremely' +p74197 +tp74198 +a(g74195 +g74197 +S'rare' +p74199 +tp74200 +a(g74197 +g74199 +S'before' +p74201 +tp74202 +a(g74199 +g74201 +S'about' +p74203 +tp74204 +a(g74201 +g74203 +S'1425.' +p74205 +tp74206 +a(g74203 +g74205 +S'this' +p74207 +tp74208 +a(g74205 +g74207 +S'painting' +p74209 +tp74210 +a(g74207 +g74209 +S'is' +p74211 +tp74212 +a(g74209 +g74211 +S'the' +p74213 +tp74214 +a(g74211 +g74213 +S'only' +p74215 +tp74216 +a(g74213 +g74215 +S'one' +p74217 +tp74218 +a(g74215 +g74217 +S'of' +p74219 +tp74220 +a(g74217 +g74219 +S'a' +p74221 +tp74222 +a(g74219 +g74221 +S'woman' +p74223 +tp74224 +a(g74221 +g74223 +S'known' +p74225 +tp74226 +a(g74223 +g74225 +S'to' +p74227 +tp74228 +a(g74225 +g74227 +S'exist' +p74229 +tp74230 +a(g74227 +g74229 +S'today.' +p74231 +tp74232 +a(g74229 +g74231 +S'her' +p74233 +tp74234 +a(g74231 +g74233 +S'identity' +p74235 +tp74236 +a(g74233 +g74235 +S'remains' +p74237 +tp74238 +a(g74235 +g74237 +S'a' +p74239 +tp74240 +a(g74237 +g74239 +S'mystery,' +p74241 +tp74242 +a(g74239 +g74241 +S'but' +p74243 +tp74244 +a(g74241 +g74243 +S'her' +p74245 +tp74246 +a(g74243 +g74245 +S'dress' +p74247 +tp74248 +a(g74245 +g74247 +S'and' +p74249 +tp74250 +a(g74247 +g74249 +S'hauteur' +p74251 +tp74252 +a(g74249 +g74251 +S'suggest' +p74253 +tp74254 +a(g74251 +g74253 +S'she' +p74255 +tp74256 +a(g74253 +g74255 +S'may' +p74257 +tp74258 +a(g74255 +g74257 +S'have' +p74259 +tp74260 +a(g74257 +g74259 +S'been' +p74261 +tp74262 +a(g74259 +g74261 +S'at' +p74263 +tp74264 +a(g74261 +g74263 +S'the' +p74265 +tp74266 +a(g74263 +g74265 +S'french' +p74267 +tp74268 +a(g74265 +g74267 +S'court;' +p74269 +tp74270 +a(g74267 +g74269 +S'evidently' +p74271 +tp74272 +a(g74269 +g74271 +S'she' +p74273 +tp74274 +a(g74271 +g74273 +S'was' +p74275 +tp74276 +a(g74273 +g74275 +S'a' +p74277 +tp74278 +a(g74275 +g74277 +S'person' +p74279 +tp74280 +a(g74277 +g74279 +S'of' +p74281 +tp74282 +a(g74279 +g74281 +S'considerable' +p74283 +tp74284 +a(g74281 +g74283 +S'rank.' +p74285 +tp74286 +a(g74283 +g74285 +S'portraits' +p74287 +tp74288 +a(g74285 +g74287 +S'were' +p74289 +tp74290 +a(g74287 +g74289 +S'commonly' +p74291 +tp74292 +a(g74289 +g74291 +S'made' +p74293 +tp74294 +a(g74291 +g74293 +S'of' +p74295 +tp74296 +a(g74293 +g74295 +S'prospective' +p74297 +tp74298 +a(g74295 +g74297 +S'partners' +p74299 +tp74300 +a(g74297 +g74299 +S'in' +p74301 +tp74302 +a(g74299 +g74301 +S'arranged' +p74303 +tp74304 +a(g74301 +g74303 +S'marriages' +p74305 +tp74306 +a(g74303 +g74305 +S'between' +p74307 +tp74308 +a(g74305 +g74307 +S'powerful' +p74309 +tp74310 +a(g74307 +g74309 +S'royal' +p74311 +tp74312 +a(g74309 +g74311 +S'families.' +p74313 +tp74314 +a(g74311 +g74313 +S'van' +p74315 +tp74316 +a(g74313 +g74315 +S'eyck,' +p74317 +tp74318 +a(g74315 +g74317 +S'for' +p74319 +tp74320 +a(g74317 +g74319 +S'example,' +p74321 +tp74322 +a(g74319 +g74321 +S'painted' +p74323 +tp74324 +a(g74321 +g74323 +S'such' +p74325 +tp74326 +a(g74323 +g74325 +S'portraits' +p74327 +tp74328 +a(g74325 +g74327 +S'while' +p74329 +tp74330 +a(g74327 +g74329 +S'on' +p74331 +tp74332 +a(g74329 +g74331 +S'diplomatic' +p74333 +tp74334 +a(g74331 +g74333 +S'assignment.' +p74335 +tp74336 +a(g74333 +g74335 +S'the' +p74337 +tp74338 +a(g74335 +g74337 +S'age' +p74339 +tp74340 +a(g74337 +g74339 +S'and' +p74341 +tp74342 +a(g74339 +g74341 +S'commanding' +p74343 +tp74344 +a(g74341 +g74343 +S'presence' +p74345 +tp74346 +a(g74343 +g74345 +S'of' +p74347 +tp74348 +a(g74345 +g74347 +S'this' +p74349 +tp74350 +a(g74347 +g74349 +S'woman,' +p74351 +tp74352 +a(g74349 +g74351 +S'however,' +p74353 +tp74354 +a(g74351 +g74353 +S'may' +p74355 +tp74356 +a(g74353 +g74355 +S'indicate' +p74357 +tp74358 +a(g74355 +g74357 +S'that' +p74359 +tp74360 +a(g74357 +g74359 +S'she' +p74361 +tp74362 +a(g74359 +g74361 +S'was' +p74363 +tp74364 +a(g74361 +g74363 +S'already' +p74365 +tp74366 +a(g74363 +g74365 +S'in' +p74367 +tp74368 +a(g74365 +g74367 +S'a' +p74369 +tp74370 +a(g74367 +g74369 +S'strong' +p74371 +tp74372 +a(g74369 +g74371 +S'dynastic' +p74373 +tp74374 +a(g74371 +g74373 +S'position.' +p74375 +tp74376 +a(g74373 +g74375 +S'her' +p74377 +tp74378 +a(g74375 +g74377 +S'profile' +p74379 +tp74380 +a(g74377 +g74379 +S'pose' +p74381 +tp74382 +a(g74379 +g74381 +S'produces' +p74383 +tp74384 +a(g74381 +g74383 +S'a' +p74385 +tp74386 +a(g74383 +g74385 +S'clear' +p74387 +tp74388 +a(g74385 +g74387 +S'and' +p74389 +tp74390 +a(g74387 +g74389 +S'authoritative' +p74391 +tp74392 +a(g74389 +g74391 +S'image' +p74393 +tp74394 +a(g74391 +g74393 +S'and' +p74395 +tp74396 +a(g74393 +g74395 +S'avoids' +p74397 +tp74398 +a(g74395 +g74397 +S'direct' +p74399 +tp74400 +a(g74397 +g74399 +S'contact' +p74401 +tp74402 +a(g74399 +g74401 +S'with' +p74403 +tp74404 +a(g74401 +g74403 +S'the' +p74405 +tp74406 +a(g74403 +g74405 +S"viewer's" +p74407 +tp74408 +a(g74405 +g74407 +S'gaze.' +p74409 +tp74410 +a(g74407 +g74409 +S'the' +p74411 +tp74412 +a(g74409 +g74411 +S'austere' +p74413 +tp74414 +a(g74411 +g74413 +S'line' +p74415 +tp74416 +a(g74413 +g74415 +S'of' +p74417 +tp74418 +a(g74415 +g74417 +S'the' +p74419 +tp74420 +a(g74417 +g74419 +S"subject's" +p74421 +tp74422 +a(g74419 +g74421 +S'features' +p74423 +tp74424 +a(g74421 +g74423 +S'is' +p74425 +tp74426 +a(g74423 +g74425 +S'emphasized' +p74427 +tp74428 +a(g74425 +g74427 +S'by' +p74429 +tp74430 +a(g74427 +g74429 +S'the' +p74431 +tp74432 +a(g74429 +g74431 +S'high' +p74433 +tp74434 +a(g74431 +g74433 +S'forehead' +p74435 +tp74436 +a(g74433 +g74435 +S'of' +p74437 +tp74438 +a(g74435 +g74437 +S'her' +p74439 +tp74440 +a(g74437 +g74439 +S'fashionable' +p74441 +tp74442 +a(g74439 +g74441 +S'plucked' +p74443 +tp74444 +a(g74441 +g74443 +S'hair' +p74445 +tp74446 +a(g74443 +g74445 +S'line.' +p74447 +tp74448 +a(g74445 +g74447 +S'high' +p74449 +tp74450 +a(g74447 +g74449 +S'contrast' +p74451 +tp74452 +a(g74449 +g74451 +S'against' +p74453 +tp74454 +a(g74451 +g74453 +S'the' +p74455 +tp74456 +a(g74453 +g74455 +S'flat' +p74457 +tp74458 +a(g74455 +g74457 +S'background' +p74459 +tp74460 +a(g74457 +g74459 +S'exaggerates' +p74461 +tp74462 +a(g74459 +g74461 +S'the' +p74463 +tp74464 +a(g74461 +g74463 +S'refinement' +p74465 +tp74466 +a(g74463 +g74465 +S'of' +p74467 +tp74468 +a(g74465 +g74467 +S'her' +p74469 +tp74470 +a(g74467 +g74469 +S'likeness.' +p74471 +tp74472 +a(g74469 +g74471 +S'the' +p74473 +tp74474 +a(g74471 +g74473 +S'artist' +p74475 +tp74476 +a(g74473 +g74475 +S'has' +p74477 +tp74478 +a(g74475 +g74477 +S'painted' +p74479 +tp74480 +a(g74477 +g74479 +S'individual' +p74481 +tp74482 +a(g74479 +g74481 +S'details,' +p74483 +tp74484 +a(g74481 +g74483 +S'such' +p74485 +tp74486 +a(g74483 +g74485 +S'as' +p74487 +tp74488 +a(g74485 +g74487 +S'the' +p74489 +tp74490 +a(g74487 +g74489 +S'crimped' +p74491 +tp74492 +a(g74489 +g74491 +S'curl' +p74493 +tp74494 +a(g74491 +g74493 +S'at' +p74495 +tp74496 +a(g74493 +g74495 +S'the' +p74497 +tp74498 +a(g74495 +g74497 +S'brow' +p74499 +tp74500 +a(g74497 +g74499 +S'and' +p74501 +tp74502 +a(g74499 +g74501 +S'the' +p74503 +tp74504 +a(g74501 +g74503 +S'heavy' +p74505 +tp74506 +a(g74503 +g74505 +S'cage' +p74507 +tp74508 +a(g74505 +g74507 +S'beads' +p74509 +tp74510 +a(g74507 +g74509 +S'pinned' +p74511 +tp74512 +a(g74509 +g74511 +S'at' +p74513 +tp74514 +a(g74511 +g74513 +S'the' +p74515 +tp74516 +a(g74513 +g74515 +S'shoulders,' +p74517 +tp74518 +a(g74515 +g74517 +S'with' +p74519 +tp74520 +a(g74517 +g74519 +S'careful' +p74521 +tp74522 +a(g74519 +g74521 +S'attention;' +p74523 +tp74524 +a(g74521 +g74523 +S'yet' +p74525 +tp74526 +a(g74523 +g74525 +S'they' +p74527 +tp74528 +a(g74525 +g74527 +S'are' +p74529 +tp74530 +a(g74527 +g74529 +S'subordinated' +p74531 +tp74532 +a(g74529 +g74531 +S'in' +p74533 +tp74534 +a(g74531 +g74533 +S'a' +p74535 +tp74536 +a(g74533 +g74535 +S'composition' +p74537 +tp74538 +a(g74535 +g74537 +S'that' +p74539 +tp74540 +a(g74537 +g74539 +S'has' +p74541 +tp74542 +a(g74539 +g74541 +S'geometric,' +p74543 +tp74544 +a(g74541 +g74543 +S'almost' +p74545 +tp74546 +a(g74543 +g74545 +S'abstract' +p74547 +tp74548 +a(g74545 +g74547 +S'severity.' +p74549 +tp74550 +a(g74547 +g74549 +S'these' +p74551 +tp74552 +a(g74549 +g74551 +S'ornamental' +p74553 +tp74554 +a(g74551 +g74553 +S'qualities' +p74555 +tp74556 +a(g74553 +g74555 +S'are' +p74557 +tp74558 +a(g74555 +g74557 +S'typical' +p74559 +tp74560 +a(g74557 +g74559 +S'of' +p74561 +tp74562 +a(g74559 +g74561 +S'the' +p74563 +tp74564 +a(g74561 +g74563 +S'international' +p74565 +tp74566 +a(g74563 +g74565 +S'style,' +p74567 +tp74568 +a(g74565 +g74567 +S'which' +p74569 +tp74570 +a(g74567 +g74569 +S'predominated' +p74571 +tp74572 +a(g74569 +g74571 +S'all' +p74573 +tp74574 +a(g74571 +g74573 +S'over' +p74575 +tp74576 +a(g74573 +g74575 +S'europe' +p74577 +tp74578 +a(g74575 +g74577 +S'until' +p74579 +tp74580 +a(g74577 +g74579 +S'it' +p74581 +tp74582 +a(g74579 +g74581 +S'was' +p74583 +tp74584 +a(g74581 +g74583 +S'supplanted' +p74585 +tp74586 +a(g74583 +g74585 +S'by' +p74587 +tp74588 +a(g74585 +g74587 +S'the' +p74589 +tp74590 +a(g74587 +g74589 +S'more' +p74591 +tp74592 +a(g74589 +g74591 +S'naturalistic' +p74593 +tp74594 +a(g74591 +g74593 +S'work' +p74595 +tp74596 +a(g74593 +g74595 +S'of' +p74597 +tp74598 +a(g74595 +g74597 +S'the' +p74599 +tp74600 +a(g74597 +g74599 +S'painters' +p74601 +tp74602 +a(g74599 +g74601 +S'ship' +p74603 +tp74604 +a(g74601 +g74603 +S'models' +p74605 +tp74606 +a(g74603 +g74605 +S'appeared' +p74607 +tp74608 +a(g74605 +g74607 +S'frequently' +p74609 +tp74610 +a(g74607 +g74609 +S'as' +p74611 +tp74612 +a(g74609 +g74611 +S"children's" +p74613 +tp74614 +a(g74611 +g74613 +S'toys;' +p74615 +tp74616 +a(g74613 +g74615 +S'this' +p74617 +tp74618 +a(g74615 +g74617 +S'one' +p74619 +tp74620 +a(g74617 +g74619 +S'of' +p74621 +tp74622 +a(g74619 +g74621 +S'hand-carved,' +p74623 +tp74624 +a(g74621 +g74623 +S'painted' +p74625 +tp74626 +a(g74623 +g74625 +S'wood' +p74627 +tp74628 +a(g74625 +g74627 +S'is' +p74629 +tp74630 +a(g74627 +g74629 +S'mounted' +p74631 +tp74632 +a(g74629 +g74631 +S'on' +p74633 +tp74634 +a(g74631 +g74633 +S'wheels' +p74635 +tp74636 +a(g74633 +g74635 +S'to' +p74637 +tp74638 +a(g74635 +g74637 +S'function' +p74639 +tp74640 +a(g74637 +g74639 +S'as' +p74641 +tp74642 +a(g74639 +g74641 +S'a' +p74643 +tp74644 +a(g74641 +g74643 +S'pull' +p74645 +tp74646 +a(g74643 +g74645 +S'toy.' +p74647 +tp74648 +a(g74645 +g74647 +S'a' +p74649 +tp74650 +a(g74647 +g74649 +S'particularly' +p74651 +tp74652 +a(g74649 +g74651 +S'colorful' +p74653 +tp74654 +a(g74651 +g74653 +S'and' +p74655 +tp74656 +a(g74653 +g74655 +S'charming' +p74657 +tp74658 +a(g74655 +g74657 +S'example,' +p74659 +tp74660 +a(g74657 +g74659 +S'it' +p74661 +tp74662 +a(g74659 +g74661 +S'dates' +p74663 +tp74664 +a(g74661 +g74663 +S'from' +p74665 +tp74666 +a(g74663 +g74665 +S'the' +p74667 +tp74668 +a(g74665 +g74667 +S'early' +p74669 +tp74670 +a(g74667 +g74669 +S'nineteenth' +p74671 +tp74672 +a(g74669 +g74671 +S'century' +p74673 +tp74674 +a(g74671 +g74673 +S'and' +p74675 +tp74676 +a(g74673 +g74675 +S'is' +p74677 +tp74678 +a(g74675 +g74677 +S'of' +p74679 +tp74680 +a(g74677 +g74679 +S'pennsylvania' +p74681 +tp74682 +a(g74679 +g74681 +S'german' +p74683 +tp74684 +a(g74681 +g74683 +S'origin.' +p74685 +tp74686 +a(g74683 +g74685 +S'the' +p74687 +tp74688 +a(g74685 +g74687 +S'model' +p74689 +tp74690 +a(g74687 +g74689 +S'imitates' +p74691 +tp74692 +a(g74689 +g74691 +S'a' +p74693 +tp74694 +a(g74691 +g74693 +S'warship,' +p74695 +tp74696 +a(g74693 +g74695 +S'and' +p74697 +tp74698 +a(g74695 +g74697 +S'the' +p74699 +tp74700 +a(g74697 +g74699 +S'figures' +p74701 +tp74702 +a(g74699 +g74701 +S'of' +p74703 +tp74704 +a(g74701 +g74703 +S'soldiers' +p74705 +tp74706 +a(g74703 +g74705 +S'are' +p74707 +tp74708 +a(g74705 +g74707 +S'appropriately' +p74709 +tp74710 +a(g74707 +g74709 +S'costumed.' +p74711 +tp74712 +a(g74709 +g74711 +S'this' +p74713 +tp74714 +a(g74711 +g74713 +S'coffeepot' +p74715 +tp74716 +a(g74713 +g74715 +S'was' +p74717 +tp74718 +a(g74715 +g74717 +S'made' +p74719 +tp74720 +a(g74717 +g74719 +S'by' +p74721 +tp74722 +a(g74719 +g74721 +S'eben' +p74723 +tp74724 +a(g74721 +g74723 +S'smith,' +p74725 +tp74726 +a(g74723 +g74725 +S'a' +p74727 +tp74728 +a(g74725 +g74727 +S'pewterer' +p74729 +tp74730 +a(g74727 +g74729 +S'and' +p74731 +tp74732 +a(g74729 +g74731 +S'brazier' +p74733 +tp74734 +a(g74731 +g74733 +S'from' +p74735 +tp74736 +a(g74733 +g74735 +S'beverly,' +p74737 +tp74738 +a(g74735 +g74737 +S'massachusetts.' +p74739 +tp74740 +a(g74737 +g74739 +S'beverly' +p74741 +tp74742 +a(g74739 +g74741 +S'was' +p74743 +tp74744 +a(g74741 +g74743 +S'a' +p74745 +tp74746 +a(g74743 +g74745 +S'center' +p74747 +tp74748 +a(g74745 +g74747 +S'of' +p74749 +tp74750 +a(g74747 +g74749 +S'britannia' +p74751 +tp74752 +a(g74749 +g74751 +S'production' +p74753 +tp74754 +a(g74751 +g74753 +S'in' +p74755 +tp74756 +a(g74753 +g74755 +S'the' +p74757 +tp74758 +a(g74755 +g74757 +S'mid-nineteenth' +p74759 +tp74760 +a(g74757 +g74759 +S'century,' +p74761 +tp74762 +a(g74759 +g74761 +S'and' +p74763 +tp74764 +a(g74761 +g74763 +S'this' +p74765 +tp74766 +a(g74763 +g74765 +S'piece' +p74767 +tp74768 +a(g74765 +g74767 +S'may' +p74769 +tp74770 +a(g74767 +g74769 +S'be' +p74771 +tp74772 +a(g74769 +g74771 +S'of' +p74773 +tp74774 +a(g74771 +g74773 +S'that' +p74775 +tp74776 +a(g74773 +g74775 +S'alloy.' +p74777 +tp74778 +a(g74775 +g74777 +S'britannia' +p74779 +tp74780 +a(g74777 +g74779 +S'is' +p74781 +tp74782 +a(g74779 +g74781 +S'a' +p74783 +tp74784 +a(g74781 +g74783 +S'type' +p74785 +tp74786 +a(g74783 +g74785 +S'of' +p74787 +tp74788 +a(g74785 +g74787 +S'pewter' +p74789 +tp74790 +a(g74787 +g74789 +S'that' +p74791 +tp74792 +a(g74789 +g74791 +S'contains' +p74793 +tp74794 +a(g74791 +g74793 +S'a' +p74795 +tp74796 +a(g74793 +g74795 +S'high' +p74797 +tp74798 +a(g74795 +g74797 +S'percentage' +p74799 +tp74800 +a(g74797 +g74799 +S'of' +p74801 +tp74802 +a(g74799 +g74801 +S'tin' +p74803 +tp74804 +a(g74801 +g74803 +S'with' +p74805 +tp74806 +a(g74803 +g74805 +S'antimony' +p74807 +tp74808 +a(g74805 +g74807 +S'added' +p74809 +tp74810 +a(g74807 +g74809 +S'for' +p74811 +tp74812 +a(g74809 +g74811 +S'hardness.' +p74813 +tp74814 +a(g74811 +g74813 +S'it' +p74815 +tp74816 +a(g74813 +g74815 +S'became' +p74817 +tp74818 +a(g74815 +g74817 +S'popular' +p74819 +tp74820 +a(g74817 +g74819 +S'in' +p74821 +tp74822 +a(g74819 +g74821 +S'the' +p74823 +tp74824 +a(g74821 +g74823 +S'nineteenth' +p74825 +tp74826 +a(g74823 +g74825 +S'century' +p74827 +tp74828 +a(g74825 +g74827 +S'because' +p74829 +tp74830 +a(g74827 +g74829 +S'its' +p74831 +tp74832 +a(g74829 +g74831 +S'shiny' +p74833 +tp74834 +a(g74831 +g74833 +S'surface' +p74835 +tp74836 +a(g74833 +g74835 +S'resembled' +p74837 +tp74838 +a(g74835 +g74837 +S'silver' +p74839 +tp74840 +a(g74837 +g74839 +S'and' +p74841 +tp74842 +a(g74839 +g74841 +S'its' +p74843 +tp74844 +a(g74841 +g74843 +S'hardness' +p74845 +tp74846 +a(g74843 +g74845 +S'provided' +p74847 +tp74848 +a(g74845 +g74847 +S'durability.' +p74849 +tp74850 +a(g74847 +g74849 +S'britannia' +p74851 +tp74852 +a(g74849 +g74851 +S'was' +p74853 +tp74854 +a(g74851 +g74853 +S'either' +p74855 +tp74856 +a(g74853 +g74855 +S'cast' +p74857 +tp74858 +a(g74855 +g74857 +S'like' +p74859 +tp74860 +a(g74857 +g74859 +S'pewter' +p74861 +tp74862 +a(g74859 +g74861 +S'or' +p74863 +tp74864 +a(g74861 +g74863 +S'rolled' +p74865 +tp74866 +a(g74863 +g74865 +S'into' +p74867 +tp74868 +a(g74865 +g74867 +S'sheets' +p74869 +tp74870 +a(g74867 +g74869 +S'and' +p74871 +tp74872 +a(g74869 +g74871 +S'fashioned' +p74873 +tp74874 +a(g74871 +g74873 +S'over' +p74875 +tp74876 +a(g74873 +g74875 +S'wooden' +p74877 +tp74878 +a(g74875 +g74877 +S'forms.' +p74879 +tp74880 +a(g74877 +g74879 +S'objects' +p74881 +tp74882 +a(g74879 +g74881 +S'made' +p74883 +tp74884 +a(g74881 +g74883 +S'of' +p74885 +tp74886 +a(g74883 +g74885 +S'britannia' +p74887 +tp74888 +a(g74885 +g74887 +S'are' +p74889 +tp74890 +a(g74887 +g74889 +S'usually' +p74891 +tp74892 +a(g74889 +g74891 +S'thinner' +p74893 +tp74894 +a(g74891 +g74893 +S'and' +p74895 +tp74896 +a(g74893 +g74895 +S'lighter' +p74897 +tp74898 +a(g74895 +g74897 +S'than' +p74899 +tp74900 +a(g74897 +g74899 +S'those' +p74901 +tp74902 +a(g74899 +g74901 +S'made' +p74903 +tp74904 +a(g74901 +g74903 +S'of' +p74905 +tp74906 +a(g74903 +g74905 +S'regular' +p74907 +tp74908 +a(g74905 +g74907 +S'pewter.' +p74909 +tp74910 +a(g74907 +g74909 +S'this' +p74911 +tp74912 +a(g74909 +g74911 +S'coffeepot' +p74913 +tp74914 +a(g74911 +g74913 +S'was' +p74915 +tp74916 +a(g74913 +g74915 +S'designed' +p74917 +tp74918 +a(g74915 +g74917 +S'in' +p74919 +tp74920 +a(g74917 +g74919 +S'a' +p74921 +tp74922 +a(g74919 +g74921 +S'modified' +p74923 +tp74924 +a(g74921 +g74923 +S'lighthouse' +p74925 +tp74926 +a(g74923 +g74925 +S'form' +p74927 +tp74928 +a(g74925 +g74927 +S'with' +p74929 +tp74930 +a(g74927 +g74929 +S'a' +p74931 +tp74932 +a(g74929 +g74931 +S'domed' +p74933 +tp74934 +a(g74931 +g74933 +S'lid' +p74935 +tp74936 +a(g74933 +g74935 +S'topped' +p74937 +tp74938 +a(g74935 +g74937 +S'by' +p74939 +tp74940 +a(g74937 +g74939 +S'a' +p74941 +tp74942 +a(g74939 +g74941 +S'small' +p74943 +tp74944 +a(g74941 +g74943 +S'wooden' +p74945 +tp74946 +a(g74943 +g74945 +S'knob.' +p74947 +tp74948 +a(g74945 +g74947 +S'the' +p74949 +tp74950 +a(g74947 +g74949 +S's-shaped' +p74951 +tp74952 +a(g74949 +g74951 +S'spout' +p74953 +tp74954 +a(g74951 +g74953 +S'and' +p74955 +tp74956 +a(g74953 +g74955 +S'scroll' +p74957 +tp74958 +a(g74955 +g74957 +S'handle' +p74959 +tp74960 +a(g74957 +g74959 +S'provide' +p74961 +tp74962 +a(g74959 +g74961 +S'a' +p74963 +tp74964 +a(g74961 +g74963 +S'boldness' +p74965 +tp74966 +a(g74963 +g74965 +S'of' +p74967 +tp74968 +a(g74965 +g74967 +S'form' +p74969 +tp74970 +a(g74967 +g74969 +S'associated' +p74971 +tp74972 +a(g74969 +g74971 +S'with' +p74973 +tp74974 +a(g74971 +g74973 +S'britannia' +p74975 +tp74976 +a(g74973 +g74975 +S'ware.' +p74977 +tp74978 +a(g74975 +g74977 +S'encircling' +p74979 +tp74980 +a(g74977 +g74979 +S'the' +p74981 +tp74982 +a(g74979 +g74981 +S'body' +p74983 +tp74984 +a(g74981 +g74983 +S'of' +p74985 +tp74986 +a(g74983 +g74985 +S'this' +p74987 +tp74988 +a(g74985 +g74987 +S'pot' +p74989 +tp74990 +a(g74987 +g74989 +S'are' +p74991 +tp74992 +a(g74989 +g74991 +S'rounded' +p74993 +tp74994 +a(g74991 +g74993 +S'bands' +p74995 +tp74996 +a(g74993 +g74995 +S'that' +p74997 +tp74998 +a(g74995 +g74997 +S'were' +p74999 +tp75000 +a(g74997 +g74999 +S'common' +p75001 +tp75002 +a(g74999 +g75001 +S'on' +p75003 +tp75004 +a(g75001 +g75003 +S'britannia' +p75005 +tp75006 +a(g75003 +g75005 +S'ware,' +p75007 +tp75008 +a(g75005 +g75007 +S'because' +p75009 +tp75010 +a(g75007 +g75009 +S'they' +p75011 +tp75012 +a(g75009 +g75011 +S'served' +p75013 +tp75014 +a(g75011 +g75013 +S'to' +p75015 +tp75016 +a(g75013 +g75015 +S'strengthen' +p75017 +tp75018 +a(g75015 +g75017 +S'the' +p75019 +tp75020 +a(g75017 +g75019 +S'thin' +p75021 +tp75022 +a(g75019 +g75021 +S'walls.' +p75023 +tp75024 +a(g75021 +g75023 +S'the' +p75025 +tp75026 +a(g75023 +g75025 +S'floral' +p75027 +tp75028 +a(g75025 +g75027 +S'medallion' +p75029 +tp75030 +a(g75027 +g75029 +S'on' +p75031 +tp75032 +a(g75029 +g75031 +S'the' +p75033 +tp75034 +a(g75031 +g75033 +S'side' +p75035 +tp75036 +a(g75033 +g75035 +S'suggests' +p75037 +tp75038 +a(g75035 +g75037 +S'the' +p75039 +tp75040 +a(g75037 +g75039 +S'bright' +p75041 +tp75042 +a(g75039 +g75041 +S'cut' +p75043 +tp75044 +a(g75041 +g75043 +S'ornament' +p75045 +tp75046 +a(g75043 +g75045 +S'often' +p75047 +tp75048 +a(g75045 +g75047 +S'used' +p75049 +tp75050 +a(g75047 +g75049 +S'for' +p75051 +tp75052 +a(g75049 +g75051 +S'decoration' +p75053 +tp75054 +a(g75051 +g75053 +S'by' +p75055 +tp75056 +a(g75053 +g75055 +S'silversmiths.' +p75057 +tp75058 +a(g75055 +g75057 +S'from' +p75059 +tp75060 +a(g75057 +g75059 +S'the' +p75061 +tp75062 +a(g75059 +g75061 +S'seventeenth' +p75063 +tp75064 +a(g75061 +g75063 +S'century' +p75065 +tp75066 +a(g75063 +g75065 +S'to' +p75067 +tp75068 +a(g75065 +g75067 +S'the' +p75069 +tp75070 +a(g75067 +g75069 +S'nineteenth' +p75071 +tp75072 +a(g75069 +g75071 +S'centuries,' +p75073 +tp75074 +a(g75071 +g75073 +S'pewter' +p75075 +tp75076 +a(g75073 +g75075 +S'was' +p75077 +tp75078 +a(g75075 +g75077 +S'popular' +p75079 +tp75080 +a(g75077 +g75079 +S'among' +p75081 +tp75082 +a(g75079 +g75081 +S'middle' +p75083 +tp75084 +a(g75081 +g75083 +S'class' +p75085 +tp75086 +a(g75083 +g75085 +S'americans' +p75087 +tp75088 +a(g75085 +g75087 +S'for' +p75089 +tp75090 +a(g75087 +g75089 +S'tableware' +p75091 +tp75092 +a(g75089 +g75091 +S'and' +p75093 +tp75094 +a(g75091 +g75093 +S'serving' +p75095 +tp75096 +a(g75093 +g75095 +S'pieces,' +p75097 +tp75098 +a(g75095 +g75097 +S'because' +p75099 +tp75100 +a(g75097 +g75099 +S'it' +p75101 +tp75102 +a(g75099 +g75101 +S'was' +p75103 +tp75104 +a(g75101 +g75103 +S'more' +p75105 +tp75106 +a(g75103 +g75105 +S'refined' +p75107 +tp75108 +a(g75105 +g75107 +S'than' +p75109 +tp75110 +a(g75107 +g75109 +S'wood' +p75111 +tp75112 +a(g75109 +g75111 +S'and' +p75113 +tp75114 +a(g75111 +g75113 +S'less' +p75115 +tp75116 +a(g75113 +g75115 +S'costly' +p75117 +tp75118 +a(g75115 +g75117 +S'than' +p75119 +tp75120 +a(g75117 +g75119 +S'fine' +p75121 +tp75122 +a(g75119 +g75121 +S'china.' +p75123 +tp75124 +a(g75121 +g75123 +S'pewter' +p75125 +tp75126 +a(g75123 +g75125 +S'is' +p75127 +tp75128 +a(g75125 +g75127 +S'an' +p75129 +tp75130 +a(g75127 +g75129 +S'alloy' +p75131 +tp75132 +a(g75129 +g75131 +S'of' +p75133 +tp75134 +a(g75131 +g75133 +S'tin' +p75135 +tp75136 +a(g75133 +g75135 +S'with' +p75137 +tp75138 +a(g75135 +g75137 +S'varying' +p75139 +tp75140 +a(g75137 +g75139 +S'combinations' +p75141 +tp75142 +a(g75139 +g75141 +S'of' +p75143 +tp75144 +a(g75141 +g75143 +S'copper,' +p75145 +tp75146 +a(g75143 +g75145 +S'brass,' +p75147 +tp75148 +a(g75145 +g75147 +S'lead,' +p75149 +tp75150 +a(g75147 +g75149 +S'antimony,' +p75151 +tp75152 +a(g75149 +g75151 +S'and' +p75153 +tp75154 +a(g75151 +g75153 +S'bismuth.' +p75155 +tp75156 +a(g75153 +g75155 +S'because' +p75157 +tp75158 +a(g75155 +g75157 +S'english' +p75159 +tp75160 +a(g75157 +g75159 +S'law' +p75161 +tp75162 +a(g75159 +g75161 +S'restricted' +p75163 +tp75164 +a(g75161 +g75163 +S'the' +p75165 +tp75166 +a(g75163 +g75165 +S'importation' +p75167 +tp75168 +a(g75165 +g75167 +S'of' +p75169 +tp75170 +a(g75167 +g75169 +S'raw' +p75171 +tp75172 +a(g75169 +g75171 +S'tin' +p75173 +tp75174 +a(g75171 +g75173 +S'into' +p75175 +tp75176 +a(g75173 +g75175 +S'the' +p75177 +tp75178 +a(g75175 +g75177 +S'colonies,' +p75179 +tp75180 +a(g75177 +g75179 +S'pewterware' +p75181 +tp75182 +a(g75179 +g75181 +S'was' +p75183 +tp75184 +a(g75181 +g75183 +S'imported' +p75185 +tp75186 +a(g75183 +g75185 +S'as' +p75187 +tp75188 +a(g75185 +g75187 +S'a' +p75189 +tp75190 +a(g75187 +g75189 +S'finished' +p75191 +tp75192 +a(g75189 +g75191 +S'product.' +p75193 +tp75194 +a(g75191 +g75193 +S'colonial' +p75195 +tp75196 +a(g75193 +g75195 +S'pewterers' +p75197 +tp75198 +a(g75195 +g75197 +S'obtained' +p75199 +tp75200 +a(g75197 +g75199 +S'their' +p75201 +tp75202 +a(g75199 +g75201 +S'material' +p75203 +tp75204 +a(g75201 +g75203 +S'by' +p75205 +tp75206 +a(g75203 +g75205 +S'melting' +p75207 +tp75208 +a(g75205 +g75207 +S'down' +p75209 +tp75210 +a(g75207 +g75209 +S'worn-out' +p75211 +tp75212 +a(g75209 +g75211 +S'pewter' +p75213 +tp75214 +a(g75211 +g75213 +S'and' +p75215 +tp75216 +a(g75213 +g75215 +S'recasting' +p75217 +tp75218 +a(g75215 +g75217 +S'it' +p75219 +tp75220 +a(g75217 +g75219 +S'into' +p75221 +tp75222 +a(g75219 +g75221 +S'new' +p75223 +tp75224 +a(g75221 +g75223 +S'forms.' +p75225 +tp75226 +a(g75223 +g75225 +S'brass' +p75227 +tp75228 +a(g75225 +g75227 +S'molds,' +p75229 +tp75230 +a(g75227 +g75229 +S'made' +p75231 +tp75232 +a(g75229 +g75231 +S'by' +p75233 +tp75234 +a(g75231 +g75233 +S'the' +p75235 +tp75236 +a(g75233 +g75235 +S'pewterer' +p75237 +tp75238 +a(g75235 +g75237 +S'himself,' +p75239 +tp75240 +a(g75237 +g75239 +S'were' +p75241 +tp75242 +a(g75239 +g75241 +S'most' +p75243 +tp75244 +a(g75241 +g75243 +S'often' +p75245 +tp75246 +a(g75243 +g75245 +S'used.' +p75247 +tp75248 +a(g75245 +g75247 +S'after' +p75249 +tp75250 +a(g75247 +g75249 +S'the' +p75251 +tp75252 +a(g75249 +g75251 +S'piece' +p75253 +tp75254 +a(g75251 +g75253 +S'was' +p75255 +tp75256 +a(g75253 +g75255 +S'cast,' +p75257 +tp75258 +a(g75255 +g75257 +S'it' +p75259 +tp75260 +a(g75257 +g75259 +S'was' +p75261 +tp75262 +a(g75259 +g75261 +S'skimmed' +p75263 +tp75264 +a(g75261 +g75263 +S'on' +p75265 +tp75266 +a(g75263 +g75265 +S'a' +p75267 +tp75268 +a(g75265 +g75267 +S'lathe' +p75269 +tp75270 +a(g75267 +g75269 +S'to' +p75271 +tp75272 +a(g75269 +g75271 +S'make' +p75273 +tp75274 +a(g75271 +g75273 +S'it' +p75275 +tp75276 +a(g75273 +g75275 +S'smooth.' +p75277 +tp75278 +a(g75275 +g75277 +S'the' +p75279 +tp75280 +a(g75277 +g75279 +S'various' +p75281 +tp75282 +a(g75279 +g75281 +S'components' +p75283 +tp75284 +a(g75281 +g75283 +S'of' +p75285 +tp75286 +a(g75283 +g75285 +S'a' +p75287 +tp75288 +a(g75285 +g75287 +S'pewter' +p75289 +tp75290 +a(g75287 +g75289 +S'object,' +p75291 +tp75292 +a(g75289 +g75291 +S'such' +p75293 +tp75294 +a(g75291 +g75293 +S'as' +p75295 +tp75296 +a(g75293 +g75295 +S'the' +p75297 +tp75298 +a(g75295 +g75297 +S'body,' +p75299 +tp75300 +a(g75297 +g75299 +S'the' +p75301 +tp75302 +a(g75299 +g75301 +S'foot,' +p75303 +tp75304 +a(g75301 +g75303 +S'and' +p75305 +tp75306 +a(g75303 +g75305 +S'the' +p75307 +tp75308 +a(g75305 +g75307 +S'handle,' +p75309 +tp75310 +a(g75307 +g75309 +S'were' +p75311 +tp75312 +a(g75309 +g75311 +S'cast' +p75313 +tp75314 +a(g75311 +g75313 +S'separately' +p75315 +tp75316 +a(g75313 +g75315 +S'and' +p75317 +tp75318 +a(g75315 +g75317 +S'soldered' +p75319 +tp75320 +a(g75317 +g75319 +S'together.' +p75321 +tp75322 +a(g75319 +g75321 +S'this' +p75323 +tp75324 +a(g75321 +g75323 +S'pewter' +p75325 +tp75326 +a(g75323 +g75325 +S'flagon' +p75327 +tp75328 +a(g75325 +g75327 +S'was' +p75329 +tp75330 +a(g75327 +g75329 +S'made' +p75331 +tp75332 +a(g75329 +g75331 +S'in' +p75333 +tp75334 +a(g75331 +g75333 +S'the' +p75335 +tp75336 +a(g75333 +g75335 +S'early' +p75337 +tp75338 +a(g75335 +g75337 +S'nineteenth' +p75339 +tp75340 +a(g75337 +g75339 +S'century' +p75341 +tp75342 +a(g75339 +g75341 +S'by' +p75343 +tp75344 +a(g75341 +g75343 +S'the' +p75345 +tp75346 +a(g75343 +g75345 +S'boardman' +p75347 +tp75348 +a(g75345 +g75347 +S'brothers.' +p75349 +tp75350 +a(g75347 +g75349 +S'the' +p75351 +tp75352 +a(g75349 +g75351 +S'boardmans' +p75353 +tp75354 +a(g75351 +g75353 +S'were' +p75355 +tp75356 +a(g75353 +g75355 +S'a' +p75357 +tp75358 +a(g75355 +g75357 +S'family' +p75359 +tp75360 +a(g75357 +g75359 +S'with' +p75361 +tp75362 +a(g75359 +g75361 +S'a' +p75363 +tp75364 +a(g75361 +g75363 +S'tradition' +p75365 +tp75366 +a(g75363 +g75365 +S'of' +p75367 +tp75368 +a(g75365 +g75367 +S'pewtering,' +p75369 +tp75370 +a(g75367 +g75369 +S'having' +p75371 +tp75372 +a(g75369 +g75371 +S'inherited' +p75373 +tp75374 +a(g75371 +g75373 +S'from' +p75375 +tp75376 +a(g75373 +g75375 +S'their' +p75377 +tp75378 +a(g75375 +g75377 +S'uncle,' +p75379 +tp75380 +a(g75377 +g75379 +S'samuel' +p75381 +tp75382 +a(g75379 +g75381 +S'boardman' +p75383 +tp75384 +a(g75381 +g75383 +S'danforth,' +p75385 +tp75386 +a(g75383 +g75385 +S'many' +p75387 +tp75388 +a(g75385 +g75387 +S'of' +p75389 +tp75390 +a(g75387 +g75389 +S'the' +p75391 +tp75392 +a(g75389 +g75391 +S'molds' +p75393 +tp75394 +a(g75391 +g75393 +S'from' +p75395 +tp75396 +a(g75393 +g75395 +S'which' +p75397 +tp75398 +a(g75395 +g75397 +S'they' +p75399 +tp75400 +a(g75397 +g75399 +S'cast' +p75401 +tp75402 +a(g75399 +g75401 +S'their' +p75403 +tp75404 +a(g75401 +g75403 +S'wares.' +p75405 +tp75406 +a(g75403 +g75405 +S'this' +p75407 +tp75408 +a(g75405 +g75407 +S'flagon' +p75409 +tp75410 +a(g75407 +g75409 +S'is' +p75411 +tp75412 +a(g75409 +g75411 +S'derived' +p75413 +tp75414 +a(g75411 +g75413 +S'from' +p75415 +tp75416 +a(g75413 +g75415 +S'danforth' +p75417 +tp75418 +a(g75415 +g75417 +S'styles.' +p75419 +tp75420 +a(g75417 +g75419 +S'it' +p75421 +tp75422 +a(g75419 +g75421 +S'was' +p75423 +tp75424 +a(g75421 +g75423 +S'designed' +p75425 +tp75426 +a(g75423 +g75425 +S'from' +p75427 +tp75428 +a(g75425 +g75427 +S'a' +p75429 +tp75430 +a(g75427 +g75429 +S'modified' +p75431 +tp75432 +a(g75429 +g75431 +S'basin' +p75433 +tp75434 +a(g75431 +g75433 +S'foot' +p75435 +tp75436 +a(g75433 +g75435 +S'--' +p75437 +tp75438 +a(g75435 +g75437 +S'that' +p75439 +tp75440 +a(g75437 +g75439 +S'is,' +p75441 +tp75442 +a(g75439 +g75441 +S'the' +p75443 +tp75444 +a(g75441 +g75443 +S'bottom' +p75445 +tp75446 +a(g75443 +g75445 +S'of' +p75447 +tp75448 +a(g75445 +g75447 +S'the' +p75449 +tp75450 +a(g75447 +g75449 +S'piece' +p75451 +tp75452 +a(g75449 +g75451 +S'was' +p75453 +tp75454 +a(g75451 +g75453 +S'cast' +p75455 +tp75456 +a(g75453 +g75455 +S'from' +p75457 +tp75458 +a(g75455 +g75457 +S'a' +p75459 +tp75460 +a(g75457 +g75459 +S'basin' +p75461 +tp75462 +a(g75459 +g75461 +S'mold,' +p75463 +tp75464 +a(g75461 +g75463 +S'inverted,' +p75465 +tp75466 +a(g75463 +g75465 +S'and' +p75467 +tp75468 +a(g75465 +g75467 +S'soldered' +p75469 +tp75470 +a(g75467 +g75469 +S'to' +p75471 +tp75472 +a(g75469 +g75471 +S'the' +p75473 +tp75474 +a(g75471 +g75473 +S'body' +p75475 +tp75476 +a(g75473 +g75475 +S'of' +p75477 +tp75478 +a(g75475 +g75477 +S'the' +p75479 +tp75480 +a(g75477 +g75479 +S'vessel.' +p75481 +tp75482 +a(g75479 +g75481 +S'the' +p75483 +tp75484 +a(g75481 +g75483 +S'handle' +p75485 +tp75486 +a(g75483 +g75485 +S'is' +p75487 +tp75488 +a(g75485 +g75487 +S'a' +p75489 +tp75490 +a(g75487 +g75489 +S'double-c' +p75491 +tp75492 +a(g75489 +g75491 +S'scroll,' +p75493 +tp75494 +a(g75491 +g75493 +S'while' +p75495 +tp75496 +a(g75493 +g75495 +S'the' +p75497 +tp75498 +a(g75495 +g75497 +S'lid' +p75499 +tp75500 +a(g75497 +g75499 +S'is' +p75501 +tp75502 +a(g75499 +g75501 +S'a' +p75503 +tp75504 +a(g75501 +g75503 +S'flattened' +p75505 +tp75506 +a(g75503 +g75505 +S'dome.' +p75507 +tp75508 +a(g75505 +g75507 +S'though' +p75509 +tp75510 +a(g75507 +g75509 +S'not' +p75511 +tp75512 +a(g75509 +g75511 +S'all' +p75513 +tp75514 +a(g75511 +g75513 +S'flagons' +p75515 +tp75516 +a(g75513 +g75515 +S'were' +p75517 +tp75518 +a(g75515 +g75517 +S'made' +p75519 +tp75520 +a(g75517 +g75519 +S'with' +p75521 +tp75522 +a(g75519 +g75521 +S'spouts,' +p75523 +tp75524 +a(g75521 +g75523 +S'the' +p75525 +tp75526 +a(g75523 +g75525 +S'boardmans' +p75527 +tp75528 +a(g75525 +g75527 +S'included' +p75529 +tp75530 +a(g75527 +g75529 +S'one' +p75531 +tp75532 +a(g75529 +g75531 +S'here.' +p75533 +tp75534 +a(g75531 +g75533 +S'flagons' +p75535 +tp75536 +a(g75533 +g75535 +S'were' +p75537 +tp75538 +a(g75535 +g75537 +S'originally' +p75539 +tp75540 +a(g75537 +g75539 +S'used' +p75541 +tp75542 +a(g75539 +g75541 +S'in' +p75543 +tp75544 +a(g75541 +g75543 +S'homes' +p75545 +tp75546 +a(g75543 +g75545 +S'to' +p75547 +tp75548 +a(g75545 +g75547 +S'bring' +p75549 +tp75550 +a(g75547 +g75549 +S'beer' +p75551 +tp75552 +a(g75549 +g75551 +S'and' +p75553 +tp75554 +a(g75551 +g75553 +S'cider' +p75555 +tp75556 +a(g75553 +g75555 +S'to' +p75557 +tp75558 +a(g75555 +g75557 +S'the' +p75559 +tp75560 +a(g75557 +g75559 +S'table,' +p75561 +tp75562 +a(g75559 +g75561 +S'but' +p75563 +tp75564 +a(g75561 +g75563 +S'later' +p75565 +tp75566 +a(g75563 +g75565 +S'ones,' +p75567 +tp75568 +a(g75565 +g75567 +S'such' +p75569 +tp75570 +a(g75567 +g75569 +S'as' +p75571 +tp75572 +a(g75569 +g75571 +S'this,' +p75573 +tp75574 +a(g75571 +g75573 +S'were' +p75575 +tp75576 +a(g75573 +g75575 +S'often' +p75577 +tp75578 +a(g75575 +g75577 +S'found' +p75579 +tp75580 +a(g75577 +g75579 +S'in' +p75581 +tp75582 +a(g75579 +g75581 +S'churches' +p75583 +tp75584 +a(g75581 +g75583 +S'as' +p75585 +tp75586 +a(g75583 +g75585 +S'part' +p75587 +tp75588 +a(g75585 +g75587 +S'of' +p75589 +tp75590 +a(g75587 +g75589 +S'the' +p75591 +tp75592 +a(g75589 +g75591 +S'communion' +p75593 +tp75594 +a(g75591 +g75593 +S'service.' +p75595 +tp75596 +a(g75593 +g75595 +S'to' +p75597 +tp75598 +a(g75595 +g75597 +S'make' +p75599 +tp75600 +a(g75597 +g75599 +S'work' +p75601 +tp75602 +a(g75599 +g75601 +S'more' +p75603 +tp75604 +a(g75601 +g75603 +S'efficient,' +p75605 +tp75606 +a(g75603 +g75605 +S'shakers' +p75607 +tp75608 +a(g75605 +g75607 +S'adapted' +p75609 +tp75610 +a(g75607 +g75609 +S'many' +p75611 +tp75612 +a(g75609 +g75611 +S'common' +p75613 +tp75614 +a(g75611 +g75613 +S'items' +p75615 +tp75616 +a(g75613 +g75615 +S'to' +p75617 +tp75618 +a(g75615 +g75617 +S'specific' +p75619 +tp75620 +a(g75617 +g75619 +S'purposes.' +p75621 +tp75622 +a(g75619 +g75621 +S'this' +p75623 +tp75624 +a(g75621 +g75623 +S'bean' +p75625 +tp75626 +a(g75623 +g75625 +S'sieve' +p75627 +tp75628 +a(g75625 +g75627 +S'was' +p75629 +tp75630 +a(g75627 +g75629 +S'made' +p75631 +tp75632 +a(g75629 +g75631 +S'by' +p75633 +tp75634 +a(g75631 +g75633 +S'adding' +p75635 +tp75636 +a(g75633 +g75635 +S'holes' +p75637 +tp75638 +a(g75635 +g75637 +S'to' +p75639 +tp75640 +a(g75637 +g75639 +S'the' +p75641 +tp75642 +a(g75639 +g75641 +S'bottom' +p75643 +tp75644 +a(g75641 +g75643 +S'of' +p75645 +tp75646 +a(g75643 +g75645 +S'a' +p75647 +tp75648 +a(g75645 +g75647 +S'basic' +p75649 +tp75650 +a(g75647 +g75649 +S'basket' +p75651 +tp75652 +a(g75649 +g75651 +S'design.' +p75653 +tp75654 +a(g75651 +g75653 +S'the' +p75655 +tp75656 +a(g75653 +g75655 +S'careful' +p75657 +tp75658 +a(g75655 +g75657 +S'workmanship' +p75659 +tp75660 +a(g75657 +g75659 +S'and' +p75661 +tp75662 +a(g75659 +g75661 +S'perfect' +p75663 +tp75664 +a(g75661 +g75663 +S'symmetry' +p75665 +tp75666 +a(g75663 +g75665 +S'of' +p75667 +tp75668 +a(g75665 +g75667 +S'the' +p75669 +tp75670 +a(g75667 +g75669 +S'weave' +p75671 +tp75672 +a(g75669 +g75671 +S'suggest' +p75673 +tp75674 +a(g75671 +g75673 +S'the' +p75675 +tp75676 +a(g75673 +g75675 +S'high' +p75677 +tp75678 +a(g75675 +g75677 +S'standard' +p75679 +tp75680 +a(g75677 +g75679 +S'of' +p75681 +tp75682 +a(g75679 +g75681 +S'quality' +p75683 +tp75684 +a(g75681 +g75683 +S'required' +p75685 +tp75686 +a(g75683 +g75685 +S'of' +p75687 +tp75688 +a(g75685 +g75687 +S'even' +p75689 +tp75690 +a(g75687 +g75689 +S'the' +p75691 +tp75692 +a(g75689 +g75691 +S'simplest' +p75693 +tp75694 +a(g75691 +g75693 +S'articles.' +p75695 +tp75696 +a(g75693 +g75695 +S'little' +p75697 +tp75698 +a(g75695 +g75697 +S'more' +p75699 +tp75700 +a(g75697 +g75699 +S'than' +p75701 +tp75702 +a(g75699 +g75701 +S'cots,' +p75703 +tp75704 +a(g75701 +g75703 +S'shaker' +p75705 +tp75706 +a(g75703 +g75705 +S'beds' +p75707 +tp75708 +a(g75705 +g75707 +S'were' +p75709 +tp75710 +a(g75707 +g75709 +S'derived' +p75711 +tp75712 +a(g75709 +g75711 +S'from' +p75713 +tp75714 +a(g75711 +g75713 +S'traditional' +p75715 +tp75716 +a(g75713 +g75715 +S'eighteenth-century' +p75717 +tp75718 +a(g75715 +g75717 +S'styles.' +p75719 +tp75720 +a(g75717 +g75719 +S'they' +p75721 +tp75722 +a(g75719 +g75721 +S'had' +p75723 +tp75724 +a(g75721 +g75723 +S'simple,' +p75725 +tp75726 +a(g75723 +g75725 +S'low' +p75727 +tp75728 +a(g75725 +g75727 +S'headboards' +p75729 +tp75730 +a(g75727 +g75729 +S'and' +p75731 +tp75732 +a(g75729 +g75731 +S'measured' +p75733 +tp75734 +a(g75731 +g75733 +S'less' +p75735 +tp75736 +a(g75733 +g75735 +S'than' +p75737 +tp75738 +a(g75735 +g75737 +S'thirty-six' +p75739 +tp75740 +a(g75737 +g75739 +S'inches' +p75741 +tp75742 +a(g75739 +g75741 +S'across.' +p75743 +tp75744 +a(g75741 +g75743 +S'the' +p75745 +tp75746 +a(g75743 +g75745 +S'holes' +p75747 +tp75748 +a(g75745 +g75747 +S'bored' +p75749 +tp75750 +a(g75747 +g75749 +S'around' +p75751 +tp75752 +a(g75749 +g75751 +S'the' +p75753 +tp75754 +a(g75751 +g75753 +S'frame' +p75755 +tp75756 +a(g75753 +g75755 +S'were' +p75757 +tp75758 +a(g75755 +g75757 +S'used' +p75759 +tp75760 +a(g75757 +g75759 +S'to' +p75761 +tp75762 +a(g75759 +g75761 +S'secure' +p75763 +tp75764 +a(g75761 +g75763 +S'ropes' +p75765 +tp75766 +a(g75763 +g75765 +S'that' +p75767 +tp75768 +a(g75765 +g75767 +S'served' +p75769 +tp75770 +a(g75767 +g75769 +S'as' +p75771 +tp75772 +a(g75769 +g75771 +S'springs.' +p75773 +tp75774 +a(g75771 +g75773 +S'the' +p75775 +tp75776 +a(g75773 +g75775 +S'legs' +p75777 +tp75778 +a(g75775 +g75777 +S'of' +p75779 +tp75780 +a(g75777 +g75779 +S'this' +p75781 +tp75782 +a(g75779 +g75781 +S'bed' +p75783 +tp75784 +a(g75781 +g75783 +S'are' +p75785 +tp75786 +a(g75783 +g75785 +S'set' +p75787 +tp75788 +a(g75785 +g75787 +S'on' +p75789 +tp75790 +a(g75787 +g75789 +S'rollers' +p75791 +tp75792 +a(g75789 +g75791 +S'so' +p75793 +tp75794 +a(g75791 +g75793 +S'that' +p75795 +tp75796 +a(g75793 +g75795 +S'it' +p75797 +tp75798 +a(g75795 +g75797 +S'could' +p75799 +tp75800 +a(g75797 +g75799 +S'be' +p75801 +tp75802 +a(g75799 +g75801 +S'easily' +p75803 +tp75804 +a(g75801 +g75803 +S'moved' +p75805 +tp75806 +a(g75803 +g75805 +S'in' +p75807 +tp75808 +a(g75805 +g75807 +S'order' +p75809 +tp75810 +a(g75807 +g75809 +S'to' +p75811 +tp75812 +a(g75809 +g75811 +S'clean' +p75813 +tp75814 +a(g75811 +g75813 +S'the' +p75815 +tp75816 +a(g75813 +g75815 +S'floors.' +p75817 +tp75818 +a(g75815 +g75817 +S'though' +p75819 +tp75820 +a(g75817 +g75819 +S'this' +p75821 +tp75822 +a(g75819 +g75821 +S'one' +p75823 +tp75824 +a(g75821 +g75823 +S'retains' +p75825 +tp75826 +a(g75823 +g75825 +S'its' +p75827 +tp75828 +a(g75825 +g75827 +S'natural' +p75829 +tp75830 +a(g75827 +g75829 +S'wood' +p75831 +tp75832 +a(g75829 +g75831 +S'finish,' +p75833 +tp75834 +a(g75831 +g75833 +S'shaker' +p75835 +tp75836 +a(g75833 +g75835 +S'beds' +p75837 +tp75838 +a(g75835 +g75837 +S'were' +p75839 +tp75840 +a(g75837 +g75839 +S'often' +p75841 +tp75842 +a(g75839 +g75841 +S'painted' +p75843 +tp75844 +a(g75841 +g75843 +S'green.' +p75845 +tp75846 +a(g75843 +g75845 +S'clocks,' +p75847 +tp75848 +a(g75845 +g75847 +S'such' +p75849 +tp75850 +a(g75847 +g75849 +S'as' +p75851 +tp75852 +a(g75849 +g75851 +S'this' +p75853 +tp75854 +a(g75851 +g75853 +S'one,' +p75855 +tp75856 +a(g75853 +g75855 +S'were' +p75857 +tp75858 +a(g75855 +g75857 +S'found' +p75859 +tp75860 +a(g75857 +g75859 +S'in' +p75861 +tp75862 +a(g75859 +g75861 +S'shaker' +p75863 +tp75864 +a(g75861 +g75863 +S'dormitories' +p75865 +tp75866 +a(g75863 +g75865 +S'and' +p75867 +tp75868 +a(g75865 +g75867 +S'shops.' +p75869 +tp75870 +a(g75867 +g75869 +S'its' +p75871 +tp75872 +a(g75869 +g75871 +S'design' +p75873 +tp75874 +a(g75871 +g75873 +S'is' +p75875 +tp75876 +a(g75873 +g75875 +S'a' +p75877 +tp75878 +a(g75875 +g75877 +S'simplified' +p75879 +tp75880 +a(g75877 +g75879 +S'version' +p75881 +tp75882 +a(g75879 +g75881 +S'of' +p75883 +tp75884 +a(g75881 +g75883 +S'the' +p75885 +tp75886 +a(g75883 +g75885 +S'traditional' +p75887 +tp75888 +a(g75885 +g75887 +S'new' +p75889 +tp75890 +a(g75887 +g75889 +S'england' +p75891 +tp75892 +a(g75889 +g75891 +S'clock.' +p75893 +tp75894 +a(g75891 +g75893 +S'ornamental' +p75895 +tp75896 +a(g75893 +g75895 +S'features' +p75897 +tp75898 +a(g75895 +g75897 +S'have' +p75899 +tp75900 +a(g75897 +g75899 +S'been' +p75901 +tp75902 +a(g75899 +g75901 +S'deleted,' +p75903 +tp75904 +a(g75901 +g75903 +S'and' +p75905 +tp75906 +a(g75903 +g75905 +S'only' +p75907 +tp75908 +a(g75905 +g75907 +S'the' +p75909 +tp75910 +a(g75907 +g75909 +S'major' +p75911 +tp75912 +a(g75909 +g75911 +S'elements' +p75913 +tp75914 +a(g75911 +g75913 +S'of' +p75915 +tp75916 +a(g75913 +g75915 +S'the' +p75917 +tp75918 +a(g75915 +g75917 +S'classic' +p75919 +tp75920 +a(g75917 +g75919 +S'base,' +p75921 +tp75922 +a(g75919 +g75921 +S'shaft,' +p75923 +tp75924 +a(g75921 +g75923 +S'and' +p75925 +tp75926 +a(g75923 +g75925 +S'capital' +p75927 +tp75928 +a(g75925 +g75927 +S'have' +p75929 +tp75930 +a(g75927 +g75929 +S'been' +p75931 +tp75932 +a(g75929 +g75931 +S'retained.' +p75933 +tp75934 +a(g75931 +g75933 +S'an' +p75935 +tp75936 +a(g75933 +g75935 +S'exception' +p75937 +tp75938 +a(g75935 +g75937 +S'to' +p75939 +tp75940 +a(g75937 +g75939 +S'shaker' +p75941 +tp75942 +a(g75939 +g75941 +S'custom,' +p75943 +tp75944 +a(g75941 +g75943 +S'benjamin' +p75945 +tp75946 +a(g75943 +g75945 +S'youngs' +p75947 +tp75948 +a(g75945 +g75947 +S'followed' +p75949 +tp75950 +a(g75947 +g75949 +S'the' +p75951 +tp75952 +a(g75949 +g75951 +S'tradition' +p75953 +tp75954 +a(g75951 +g75953 +S'of' +p75955 +tp75956 +a(g75953 +g75955 +S'other' +p75957 +tp75958 +a(g75955 +g75957 +S'clockmakers' +p75959 +tp75960 +a(g75957 +g75959 +S'by' +p75961 +tp75962 +a(g75959 +g75961 +S'inscribing' +p75963 +tp75964 +a(g75961 +g75963 +S'his' +p75965 +tp75966 +a(g75963 +g75965 +S'name' +p75967 +tp75968 +a(g75965 +g75967 +S'on' +p75969 +tp75970 +a(g75967 +g75969 +S'the' +p75971 +tp75972 +a(g75969 +g75971 +S'face.' +p75973 +tp75974 +a(g75971 +g75973 +S'shaker' +p75975 +tp75976 +a(g75973 +g75975 +S'craftsmen' +p75977 +tp75978 +a(g75975 +g75977 +S'were' +p75979 +tp75980 +a(g75977 +g75979 +S'not' +p75981 +tp75982 +a(g75979 +g75981 +S'usually' +p75983 +tp75984 +a(g75981 +g75983 +S'permitted' +p75985 +tp75986 +a(g75983 +g75985 +S'to' +p75987 +tp75988 +a(g75985 +g75987 +S'sign' +p75989 +tp75990 +a(g75987 +g75989 +S'their' +p75991 +tp75992 +a(g75989 +g75991 +S'works,' +p75993 +tp75994 +a(g75991 +g75993 +S'for' +p75995 +tp75996 +a(g75993 +g75995 +S'this' +p75997 +tp75998 +a(g75995 +g75997 +S'represented' +p75999 +tp76000 +a(g75997 +g75999 +S'a' +p76001 +tp76002 +a(g75999 +g76001 +S'display' +p76003 +tp76004 +a(g76001 +g76003 +S'of' +p76005 +tp76006 +a(g76003 +g76005 +S'personal' +p76007 +tp76008 +a(g76005 +g76007 +S'pride.' +p76009 +tp76010 +a(g76007 +g76009 +S'candlestands,' +p76011 +tp76012 +a(g76009 +g76011 +S'like' +p76013 +tp76014 +a(g76011 +g76013 +S'this' +p76015 +tp76016 +a(g76013 +g76015 +S'one,' +p76017 +tp76018 +a(g76015 +g76017 +S'were' +p76019 +tp76020 +a(g76017 +g76019 +S'a' +p76021 +tp76022 +a(g76019 +g76021 +S'standard' +p76023 +tp76024 +a(g76021 +g76023 +S'item' +p76025 +tp76026 +a(g76023 +g76025 +S'in' +p76027 +tp76028 +a(g76025 +g76027 +S'each' +p76029 +tp76030 +a(g76027 +g76029 +S'shaker' +p76031 +tp76032 +a(g76029 +g76031 +S'bedroom,' +p76033 +tp76034 +a(g76031 +g76033 +S'or' +p76035 +tp76036 +a(g76033 +g76035 +S'"retiring' +p76037 +tp76038 +a(g76035 +g76037 +S'room."' +p76039 +tp76040 +a(g76037 +g76039 +S'they' +p76041 +tp76042 +a(g76039 +g76041 +S'were' +p76043 +tp76044 +a(g76041 +g76043 +S'typically' +p76045 +tp76046 +a(g76043 +g76045 +S'made' +p76047 +tp76048 +a(g76045 +g76047 +S'of' +p76049 +tp76050 +a(g76047 +g76049 +S'cherry' +p76051 +tp76052 +a(g76049 +g76051 +S'with' +p76053 +tp76054 +a(g76051 +g76053 +S'a' +p76055 +tp76056 +a(g76053 +g76055 +S'round' +p76057 +tp76058 +a(g76055 +g76057 +S'top' +p76059 +tp76060 +a(g76057 +g76059 +S'and' +p76061 +tp76062 +a(g76059 +g76061 +S'a' +p76063 +tp76064 +a(g76061 +g76063 +S'slender' +p76065 +tp76066 +a(g76063 +g76065 +S'shaft' +p76067 +tp76068 +a(g76065 +g76067 +S'which' +p76069 +tp76070 +a(g76067 +g76069 +S'expanded' +p76071 +tp76072 +a(g76069 +g76071 +S'downward' +p76073 +tp76074 +a(g76071 +g76073 +S'to' +p76075 +tp76076 +a(g76073 +g76075 +S'a' +p76077 +tp76078 +a(g76075 +g76077 +S'tripod' +p76079 +tp76080 +a(g76077 +g76079 +S'base.' +p76081 +tp76082 +a(g76079 +g76081 +S'the' +p76083 +tp76084 +a(g76081 +g76083 +S'legs' +p76085 +tp76086 +a(g76083 +g76085 +S'curve' +p76087 +tp76088 +a(g76085 +g76087 +S'outward' +p76089 +tp76090 +a(g76087 +g76089 +S'to' +p76091 +tp76092 +a(g76089 +g76091 +S'form' +p76093 +tp76094 +a(g76091 +g76093 +S'graceful' +p76095 +tp76096 +a(g76093 +g76095 +S'arcs.' +p76097 +tp76098 +a(g76095 +g76097 +S'candlestands' +p76099 +tp76100 +a(g76097 +g76099 +S'were' +p76101 +tp76102 +a(g76099 +g76101 +S'usually' +p76103 +tp76104 +a(g76101 +g76103 +S'about' +p76105 +tp76106 +a(g76103 +g76105 +S'twenty-five' +p76107 +tp76108 +a(g76105 +g76107 +S'inches' +p76109 +tp76110 +a(g76107 +g76109 +S'high' +p76111 +tp76112 +a(g76109 +g76111 +S'and' +p76113 +tp76114 +a(g76111 +g76113 +S'could' +p76115 +tp76116 +a(g76113 +g76115 +S'serve' +p76117 +tp76118 +a(g76115 +g76117 +S'a' +p76119 +tp76120 +a(g76117 +g76119 +S'variety' +p76121 +tp76122 +a(g76119 +g76121 +S'of' +p76123 +tp76124 +a(g76121 +g76123 +S'uses' +p76125 +tp76126 +a(g76123 +g76125 +S'within' +p76127 +tp76128 +a(g76125 +g76127 +S'the' +p76129 +tp76130 +a(g76127 +g76129 +S'room.' +p76131 +tp76132 +a(g76129 +g76131 +S'in' +p76133 +tp76134 +a(g76131 +g76133 +S'this' +p76135 +tp76136 +a(g76133 +g76135 +S'piece' +p76137 +tp76138 +a(g76135 +g76137 +S'the' +p76139 +tp76140 +a(g76137 +g76139 +S'shakers' +p76141 +tp76142 +a(g76139 +g76141 +S'adapted' +p76143 +tp76144 +a(g76141 +g76143 +S'the' +p76145 +tp76146 +a(g76143 +g76145 +S'basic' +p76147 +tp76148 +a(g76145 +g76147 +S'pedestal' +p76149 +tp76150 +a(g76147 +g76149 +S'table,' +p76151 +tp76152 +a(g76149 +g76151 +S'such' +p76153 +tp76154 +a(g76151 +g76153 +S'as' +p76155 +tp76156 +a(g76153 +g76155 +S'the' +p76157 +tp76158 +a(g76155 +g76157 +S'candlestand,' +p76159 +tp76160 +a(g76157 +g76159 +S'for' +p76161 +tp76162 +a(g76159 +g76161 +S'a' +p76163 +tp76164 +a(g76161 +g76163 +S'specialized' +p76165 +tp76166 +a(g76163 +g76165 +S'use.' +p76167 +tp76168 +a(g76165 +g76167 +S'drawers' +p76169 +tp76170 +a(g76167 +g76169 +S'have' +p76171 +tp76172 +a(g76169 +g76171 +S'been' +p76173 +tp76174 +a(g76171 +g76173 +S'added' +p76175 +tp76176 +a(g76173 +g76175 +S'on' +p76177 +tp76178 +a(g76175 +g76177 +S'opposite' +p76179 +tp76180 +a(g76177 +g76179 +S'sides' +p76181 +tp76182 +a(g76179 +g76181 +S'of' +p76183 +tp76184 +a(g76181 +g76183 +S'the' +p76185 +tp76186 +a(g76183 +g76185 +S'table' +p76187 +tp76188 +a(g76185 +g76187 +S'so' +p76189 +tp76190 +a(g76187 +g76189 +S'that' +p76191 +tp76192 +a(g76189 +g76191 +S'it' +p76193 +tp76194 +a(g76191 +g76193 +S'could' +p76195 +tp76196 +a(g76193 +g76195 +S'be' +p76197 +tp76198 +a(g76195 +g76197 +S'used' +p76199 +tp76200 +a(g76197 +g76199 +S'for' +p76201 +tp76202 +a(g76199 +g76201 +S'sewing' +p76203 +tp76204 +a(g76201 +g76203 +S'by' +p76205 +tp76206 +a(g76203 +g76205 +S'two' +p76207 +tp76208 +a(g76205 +g76207 +S'sisters' +p76209 +tp76210 +a(g76207 +g76209 +S'at' +p76211 +tp76212 +a(g76209 +g76211 +S'once.' +p76213 +tp76214 +a(g76211 +g76213 +S'the' +p76215 +tp76216 +a(g76213 +g76215 +S'tripod' +p76217 +tp76218 +a(g76215 +g76217 +S'base' +p76219 +tp76220 +a(g76217 +g76219 +S'of' +p76221 +tp76222 +a(g76219 +g76221 +S'the' +p76223 +tp76224 +a(g76221 +g76223 +S'candlestand' +p76225 +tp76226 +a(g76223 +g76225 +S'has' +p76227 +tp76228 +a(g76225 +g76227 +S'been' +p76229 +tp76230 +a(g76227 +g76229 +S'modified' +p76231 +tp76232 +a(g76229 +g76231 +S'to' +p76233 +tp76234 +a(g76231 +g76233 +S'a' +p76235 +tp76236 +a(g76233 +g76235 +S'four-legged' +p76237 +tp76238 +a(g76235 +g76237 +S'variety' +p76239 +tp76240 +a(g76237 +g76239 +S'here.' +p76241 +tp76242 +a(g76239 +g76241 +S'as' +p76243 +tp76244 +a(g76241 +g76243 +S'in' +p76245 +tp76246 +a(g76243 +g76245 +S'other' +p76247 +tp76248 +a(g76245 +g76247 +S'pedestal' +p76249 +tp76250 +a(g76247 +g76249 +S'tables,' +p76251 +tp76252 +a(g76249 +g76251 +S'stability' +p76253 +tp76254 +a(g76251 +g76253 +S'of' +p76255 +tp76256 +a(g76253 +g76255 +S'the' +p76257 +tp76258 +a(g76255 +g76257 +S'vase-shaped' +p76259 +tp76260 +a(g76257 +g76259 +S'base' +p76261 +tp76262 +a(g76259 +g76261 +S'and' +p76263 +tp76264 +a(g76261 +g76263 +S'pedestal' +p76265 +tp76266 +a(g76263 +g76265 +S'shaft' +p76267 +tp76268 +a(g76265 +g76267 +S'has' +p76269 +tp76270 +a(g76267 +g76269 +S'been' +p76271 +tp76272 +a(g76269 +g76271 +S'insured' +p76273 +tp76274 +a(g76271 +g76273 +S'by' +p76275 +tp76276 +a(g76273 +g76275 +S'the' +p76277 +tp76278 +a(g76275 +g76277 +S'precise' +p76279 +tp76280 +a(g76277 +g76279 +S'calculations' +p76281 +tp76282 +a(g76279 +g76281 +S'of' +p76283 +tp76284 +a(g76281 +g76283 +S'shaker' +p76285 +tp76286 +a(g76283 +g76285 +S'craftsmanship.' +p76287 +tp76288 +a(g76285 +g76287 +S'the' +p76289 +tp76290 +a(g76287 +g76289 +S'trestle' +p76291 +tp76292 +a(g76289 +g76291 +S'table' +p76293 +tp76294 +a(g76291 +g76293 +S'had' +p76295 +tp76296 +a(g76293 +g76295 +S'its' +p76297 +tp76298 +a(g76295 +g76297 +S'ancestry' +p76299 +tp76300 +a(g76297 +g76299 +S'in' +p76301 +tp76302 +a(g76299 +g76301 +S'early' +p76303 +tp76304 +a(g76301 +g76303 +S'european' +p76305 +tp76306 +a(g76303 +g76305 +S'styles.' +p76307 +tp76308 +a(g76305 +g76307 +S'shakers' +p76309 +tp76310 +a(g76307 +g76309 +S'transformed' +p76311 +tp76312 +a(g76309 +g76311 +S'the' +p76313 +tp76314 +a(g76311 +g76313 +S'heavy,' +p76315 +tp76316 +a(g76313 +g76315 +S'ornate' +p76317 +tp76318 +a(g76315 +g76317 +S'style' +p76319 +tp76320 +a(g76317 +g76319 +S'by' +p76321 +tp76322 +a(g76319 +g76321 +S'narrowing' +p76323 +tp76324 +a(g76321 +g76323 +S'and' +p76325 +tp76326 +a(g76323 +g76325 +S'lightening' +p76327 +tp76328 +a(g76325 +g76327 +S'the' +p76329 +tp76330 +a(g76327 +g76329 +S'trestle' +p76331 +tp76332 +a(g76329 +g76331 +S'ends' +p76333 +tp76334 +a(g76331 +g76333 +S'to' +p76335 +tp76336 +a(g76333 +g76335 +S'dimensions' +p76337 +tp76338 +a(g76335 +g76337 +S'still' +p76339 +tp76340 +a(g76337 +g76339 +S'sufficient' +p76341 +tp76342 +a(g76339 +g76341 +S'for' +p76343 +tp76344 +a(g76341 +g76343 +S'rigidity' +p76345 +tp76346 +a(g76343 +g76345 +S'and' +p76347 +tp76348 +a(g76345 +g76347 +S'strength.' +p76349 +tp76350 +a(g76347 +g76349 +S'the' +p76351 +tp76352 +a(g76349 +g76351 +S'variation' +p76353 +tp76354 +a(g76351 +g76353 +S'they' +p76355 +tp76356 +a(g76353 +g76355 +S'introduced' +p76357 +tp76358 +a(g76355 +g76357 +S'succeeds' +p76359 +tp76360 +a(g76357 +g76359 +S'in' +p76361 +tp76362 +a(g76359 +g76361 +S'combining' +p76363 +tp76364 +a(g76361 +g76363 +S'beauty' +p76365 +tp76366 +a(g76363 +g76365 +S'and' +p76367 +tp76368 +a(g76365 +g76367 +S'utility.' +p76369 +tp76370 +a(g76367 +g76369 +S'this' +p76371 +tp76372 +a(g76369 +g76371 +S'table' +p76373 +tp76374 +a(g76371 +g76373 +S'was' +p76375 +tp76376 +a(g76373 +g76375 +S'made' +p76377 +tp76378 +a(g76375 +g76377 +S'especially' +p76379 +tp76380 +a(g76377 +g76379 +S'long' +p76381 +tp76382 +a(g76379 +g76381 +S'and' +p76383 +tp76384 +a(g76381 +g76383 +S'wide' +p76385 +tp76386 +a(g76383 +g76385 +S'to' +p76387 +tp76388 +a(g76385 +g76387 +S'be' +p76389 +tp76390 +a(g76387 +g76389 +S'used' +p76391 +tp76392 +a(g76389 +g76391 +S'in' +p76393 +tp76394 +a(g76391 +g76393 +S'the' +p76395 +tp76396 +a(g76393 +g76395 +S'communal' +p76397 +tp76398 +a(g76395 +g76397 +S'dining' +p76399 +tp76400 +a(g76397 +g76399 +S'room' +p76401 +tp76402 +a(g76399 +g76401 +S'of' +p76403 +tp76404 +a(g76401 +g76403 +S'a' +p76405 +tp76406 +a(g76403 +g76405 +S'shaker' +p76407 +tp76408 +a(g76405 +g76407 +S'village.' +p76409 +tp76410 +a(g76407 +g76409 +S'the' +p76411 +tp76412 +a(g76409 +g76411 +S'chairs' +p76413 +tp76414 +a(g76411 +g76413 +S'are' +p76415 +tp76416 +a(g76413 +g76415 +S'unlike' +p76417 +tp76418 +a(g76415 +g76417 +S'those' +p76419 +tp76420 +a(g76417 +g76419 +S'typically' +p76421 +tp76422 +a(g76419 +g76421 +S'made' +p76423 +tp76424 +a(g76421 +g76423 +S'by' +p76425 +tp76426 +a(g76423 +g76425 +S'shakers.' +p76427 +tp76428 +a(g76425 +g76427 +S'the' +p76429 +tp76430 +a(g76427 +g76429 +S'legs' +p76431 +tp76432 +a(g76429 +g76431 +S'are' +p76433 +tp76434 +a(g76431 +g76433 +S'bulbous' +p76435 +tp76436 +a(g76433 +g76435 +S'with' +p76437 +tp76438 +a(g76435 +g76437 +S'a' +p76439 +tp76440 +a(g76437 +g76439 +S'pronounced' +p76441 +tp76442 +a(g76439 +g76441 +S'taper' +p76443 +tp76444 +a(g76441 +g76443 +S'toward' +p76445 +tp76446 +a(g76443 +g76445 +S'the' +p76447 +tp76448 +a(g76445 +g76447 +S'top' +p76449 +tp76450 +a(g76447 +g76449 +S'and' +p76451 +tp76452 +a(g76449 +g76451 +S'bottom.' +p76453 +tp76454 +a(g76451 +g76453 +S'the' +p76455 +tp76456 +a(g76453 +g76455 +S'spindles' +p76457 +tp76458 +a(g76455 +g76457 +S'on' +p76459 +tp76460 +a(g76457 +g76459 +S'the' +p76461 +tp76462 +a(g76459 +g76461 +S'back,' +p76463 +tp76464 +a(g76461 +g76463 +S'with' +p76465 +tp76466 +a(g76463 +g76465 +S'a' +p76467 +tp76468 +a(g76465 +g76467 +S'small' +p76469 +tp76470 +a(g76467 +g76469 +S'diamond-shaped' +p76471 +tp76472 +a(g76469 +g76471 +S'ornament,' +p76473 +tp76474 +a(g76471 +g76473 +S'suggest' +p76475 +tp76476 +a(g76473 +g76475 +S'the' +p76477 +tp76478 +a(g76475 +g76477 +S'nineteenth-century' +p76479 +tp76480 +a(g76477 +g76479 +S'windsor' +p76481 +tp76482 +a(g76479 +g76481 +S'style' +p76483 +tp76484 +a(g76481 +g76483 +S'popular' +p76485 +tp76486 +a(g76483 +g76485 +S'in' +p76487 +tp76488 +a(g76485 +g76487 +S'the' +p76489 +tp76490 +a(g76487 +g76489 +S'outside' +p76491 +tp76492 +a(g76489 +g76491 +S'world.' +p76493 +tp76494 +a(g76491 +g76493 +S'made' +p76495 +tp76496 +a(g76493 +g76495 +S'in' +p76497 +tp76498 +a(g76495 +g76497 +S'pleasant' +p76499 +tp76500 +a(g76497 +g76499 +S'hill,' +p76501 +tp76502 +a(g76499 +g76501 +S'kentucky,' +p76503 +tp76504 +a(g76501 +g76503 +S'these' +p76505 +tp76506 +a(g76503 +g76505 +S'pieces' +p76507 +tp76508 +a(g76505 +g76507 +S'reflect' +p76509 +tp76510 +a(g76507 +g76509 +S'a' +p76511 +tp76512 +a(g76509 +g76511 +S'more' +p76513 +tp76514 +a(g76511 +g76513 +S'elaborate' +p76515 +tp76516 +a(g76513 +g76515 +S'style' +p76517 +tp76518 +a(g76515 +g76517 +S'than' +p76519 +tp76520 +a(g76517 +g76519 +S'was' +p76521 +tp76522 +a(g76519 +g76521 +S'common' +p76523 +tp76524 +a(g76521 +g76523 +S'in' +p76525 +tp76526 +a(g76523 +g76525 +S'most' +p76527 +tp76528 +a(g76525 +g76527 +S'shaker' +p76529 +tp76530 +a(g76527 +g76529 +S'furniture.' +p76531 +tp76532 +a(g76529 +g76531 +S'even' +p76533 +tp76534 +a(g76531 +g76533 +S'though' +p76535 +tp76536 +a(g76533 +g76535 +S'the' +p76537 +tp76538 +a(g76535 +g76537 +S'sect' +p76539 +tp76540 +a(g76537 +g76539 +S'emphasized' +p76541 +tp76542 +a(g76539 +g76541 +S'uniformity,' +p76543 +tp76544 +a(g76541 +g76543 +S'difference' +p76545 +tp76546 +a(g76543 +g76545 +S'among' +p76547 +tp76548 +a(g76545 +g76547 +S'the' +p76549 +tp76550 +a(g76547 +g76549 +S'communities' +p76551 +tp76552 +a(g76549 +g76551 +S'were' +p76553 +tp76554 +a(g76551 +g76553 +S'nonetheless' +p76555 +tp76556 +a(g76553 +g76555 +S'evident.' +p76557 +tp76558 +a(g76555 +g76557 +S'this' +p76559 +tp76560 +a(g76557 +g76559 +S'kitchen' +p76561 +tp76562 +a(g76559 +g76561 +S'piece' +p76563 +tp76564 +a(g76561 +g76563 +S'is' +p76565 +tp76566 +a(g76563 +g76565 +S'a' +p76567 +tp76568 +a(g76565 +g76567 +S'type' +p76569 +tp76570 +a(g76567 +g76569 +S'of' +p76571 +tp76572 +a(g76569 +g76571 +S'washstand' +p76573 +tp76574 +a(g76571 +g76573 +S'or' +p76575 +tp76576 +a(g76573 +g76575 +S'dry' +p76577 +tp76578 +a(g76575 +g76577 +S'sink' +p76579 +tp76580 +a(g76577 +g76579 +S'set' +p76581 +tp76582 +a(g76579 +g76581 +S'on' +p76583 +tp76584 +a(g76581 +g76583 +S'a' +p76585 +tp76586 +a(g76583 +g76585 +S'cabinet.' +p76587 +tp76588 +a(g76585 +g76587 +S'the' +p76589 +tp76590 +a(g76587 +g76589 +S'high' +p76591 +tp76592 +a(g76589 +g76591 +S'back' +p76593 +tp76594 +a(g76591 +g76593 +S'protected' +p76595 +tp76596 +a(g76593 +g76595 +S'the' +p76597 +tp76598 +a(g76595 +g76597 +S'wall' +p76599 +tp76600 +a(g76597 +g76599 +S'from' +p76601 +tp76602 +a(g76599 +g76601 +S'splashing' +p76603 +tp76604 +a(g76601 +g76603 +S'water,' +p76605 +tp76606 +a(g76603 +g76605 +S'while' +p76607 +tp76608 +a(g76605 +g76607 +S'the' +p76609 +tp76610 +a(g76607 +g76609 +S'space' +p76611 +tp76612 +a(g76609 +g76611 +S'below' +p76613 +tp76614 +a(g76611 +g76613 +S'provided' +p76615 +tp76616 +a(g76613 +g76615 +S'a' +p76617 +tp76618 +a(g76615 +g76617 +S'small' +p76619 +tp76620 +a(g76617 +g76619 +S'storage' +p76621 +tp76622 +a(g76619 +g76621 +S'area.' +p76623 +tp76624 +a(g76621 +g76623 +S'the' +p76625 +tp76626 +a(g76623 +g76625 +S'shakers' +p76627 +tp76628 +a(g76625 +g76627 +S'showed' +p76629 +tp76630 +a(g76627 +g76629 +S'a' +p76631 +tp76632 +a(g76629 +g76631 +S'fine' +p76633 +tp76634 +a(g76631 +g76633 +S'appreciation' +p76635 +tp76636 +a(g76633 +g76635 +S'for' +p76637 +tp76638 +a(g76635 +g76637 +S'the' +p76639 +tp76640 +a(g76637 +g76639 +S'natural' +p76641 +tp76642 +a(g76639 +g76641 +S'beauty' +p76643 +tp76644 +a(g76641 +g76643 +S'of' +p76645 +tp76646 +a(g76643 +g76645 +S'the' +p76647 +tp76648 +a(g76645 +g76647 +S'material.' +p76649 +tp76650 +a(g76647 +g76649 +S'made' +p76651 +tp76652 +a(g76649 +g76651 +S'of' +p76653 +tp76654 +a(g76651 +g76653 +S'white' +p76655 +tp76656 +a(g76653 +g76655 +S'maple,' +p76657 +tp76658 +a(g76655 +g76657 +S'the' +p76659 +tp76660 +a(g76657 +g76659 +S'sink' +p76661 +tp76662 +a(g76659 +g76661 +S'has' +p76663 +tp76664 +a(g76661 +g76663 +S'a' +p76665 +tp76666 +a(g76663 +g76665 +S'light' +p76667 +tp76668 +a(g76665 +g76667 +S'stain' +p76669 +tp76670 +a(g76667 +g76669 +S'that' +p76671 +tp76672 +a(g76669 +g76671 +S'enhances' +p76673 +tp76674 +a(g76671 +g76673 +S'the' +p76675 +tp76676 +a(g76673 +g76675 +S'decorative' +p76677 +tp76678 +a(g76675 +g76677 +S'grain' +p76679 +tp76680 +a(g76677 +g76679 +S'of' +p76681 +tp76682 +a(g76679 +g76681 +S'the' +p76683 +tp76684 +a(g76681 +g76683 +S'wood.' +p76685 +tp76686 +a(g76683 +g76685 +S'shaker' +p76687 +tp76688 +a(g76685 +g76687 +S'stoves' +p76689 +tp76690 +a(g76687 +g76689 +S'were' +p76691 +tp76692 +a(g76689 +g76691 +S'distinctive' +p76693 +tp76694 +a(g76691 +g76693 +S'for' +p76695 +tp76696 +a(g76693 +g76695 +S'their' +p76697 +tp76698 +a(g76695 +g76697 +S'plain,' +p76699 +tp76700 +a(g76697 +g76699 +S'clean' +p76701 +tp76702 +a(g76699 +g76701 +S'lines' +p76703 +tp76704 +a(g76701 +g76703 +S'in' +p76705 +tp76706 +a(g76703 +g76705 +S'an' +p76707 +tp76708 +a(g76705 +g76707 +S'era' +p76709 +tp76710 +a(g76707 +g76709 +S'when' +p76711 +tp76712 +a(g76709 +g76711 +S'most' +p76713 +tp76714 +a(g76711 +g76713 +S'woodburning' +p76715 +tp76716 +a(g76713 +g76715 +S'stoves' +p76717 +tp76718 +a(g76715 +g76717 +S'had' +p76719 +tp76720 +a(g76717 +g76719 +S'at' +p76721 +tp76722 +a(g76719 +g76721 +S'least' +p76723 +tp76724 +a(g76721 +g76723 +S'some' +p76725 +tp76726 +a(g76723 +g76725 +S'decoration.' +p76727 +tp76728 +a(g76725 +g76727 +S'shakers' +p76729 +tp76730 +a(g76727 +g76729 +S'simplified' +p76731 +tp76732 +a(g76729 +g76731 +S'the' +p76733 +tp76734 +a(g76731 +g76733 +S'basic' +p76735 +tp76736 +a(g76733 +g76735 +S'stove' +p76737 +tp76738 +a(g76735 +g76737 +S'design' +p76739 +tp76740 +a(g76737 +g76739 +S'and' +p76741 +tp76742 +a(g76739 +g76741 +S'emphasized' +p76743 +tp76744 +a(g76741 +g76743 +S'features' +p76745 +tp76746 +a(g76743 +g76745 +S'that' +p76747 +tp76748 +a(g76745 +g76747 +S'enhanced' +p76749 +tp76750 +a(g76747 +g76749 +S'efficiency.' +p76751 +tp76752 +a(g76749 +g76751 +S'the' +p76753 +tp76754 +a(g76751 +g76753 +S'shape' +p76755 +tp76756 +a(g76753 +g76755 +S'of' +p76757 +tp76758 +a(g76755 +g76757 +S'most' +p76759 +tp76760 +a(g76757 +g76759 +S'shaker' +p76761 +tp76762 +a(g76759 +g76761 +S'stoves' +p76763 +tp76764 +a(g76761 +g76763 +S'was' +p76765 +tp76766 +a(g76763 +g76765 +S'rectangular' +p76767 +tp76768 +a(g76765 +g76767 +S'and' +p76769 +tp76770 +a(g76767 +g76769 +S'low,' +p76771 +tp76772 +a(g76769 +g76771 +S'so' +p76773 +tp76774 +a(g76771 +g76773 +S'that' +p76775 +tp76776 +a(g76773 +g76775 +S'heavy' +p76777 +tp76778 +a(g76775 +g76777 +S'logs' +p76779 +tp76780 +a(g76777 +g76779 +S'could' +p76781 +tp76782 +a(g76779 +g76781 +S'be' +p76783 +tp76784 +a(g76781 +g76783 +S'easily' +p76785 +tp76786 +a(g76783 +g76785 +S'placed' +p76787 +tp76788 +a(g76785 +g76787 +S'inside.' +p76789 +tp76790 +a(g76787 +g76789 +S'the' +p76791 +tp76792 +a(g76789 +g76791 +S'metal' +p76793 +tp76794 +a(g76791 +g76793 +S'door,' +p76795 +tp76796 +a(g76793 +g76795 +S'set' +p76797 +tp76798 +a(g76795 +g76797 +S'into' +p76799 +tp76800 +a(g76797 +g76799 +S'the' +p76801 +tp76802 +a(g76799 +g76801 +S'baseboard' +p76803 +tp76804 +a(g76801 +g76803 +S'behind' +p76805 +tp76806 +a(g76803 +g76805 +S'the' +p76807 +tp76808 +a(g76805 +g76807 +S'stove,' +p76809 +tp76810 +a(g76807 +g76809 +S'is' +p76811 +tp76812 +a(g76809 +g76811 +S'for' +p76813 +tp76814 +a(g76811 +g76813 +S'the' +p76815 +tp76816 +a(g76813 +g76815 +S'convenient' +p76817 +tp76818 +a(g76815 +g76817 +S'disposal' +p76819 +tp76820 +a(g76817 +g76819 +S'of' +p76821 +tp76822 +a(g76819 +g76821 +S'ashes.' +p76823 +tp76824 +a(g76821 +g76823 +S'the' +p76825 +tp76826 +a(g76823 +g76825 +S'united' +p76827 +tp76828 +a(g76825 +g76827 +S'society' +p76829 +tp76830 +a(g76827 +g76829 +S'of' +p76831 +tp76832 +a(g76829 +g76831 +S'believers' +p76833 +tp76834 +a(g76831 +g76833 +S'in' +p76835 +tp76836 +a(g76833 +g76835 +S"christ's" +p76837 +tp76838 +a(g76835 +g76837 +S'second' +p76839 +tp76840 +a(g76837 +g76839 +S'appearing' +p76841 +tp76842 +a(g76839 +g76841 +S'was' +p76843 +tp76844 +a(g76841 +g76843 +S'the' +p76845 +tp76846 +a(g76843 +g76845 +S'official' +p76847 +tp76848 +a(g76845 +g76847 +S'name' +p76849 +tp76850 +a(g76847 +g76849 +S'of' +p76851 +tp76852 +a(g76849 +g76851 +S'the' +p76853 +tp76854 +a(g76851 +g76853 +S'shakers,' +p76855 +tp76856 +a(g76853 +g76855 +S'or' +p76857 +tp76858 +a(g76855 +g76857 +S'"shaking' +p76859 +tp76860 +a(g76857 +g76859 +S'quakers."' +p76861 +tp76862 +a(g76859 +g76861 +S'they' +p76863 +tp76864 +a(g76861 +g76863 +S'earned' +p76865 +tp76866 +a(g76863 +g76865 +S'the' +p76867 +tp76868 +a(g76865 +g76867 +S'name' +p76869 +tp76870 +a(g76867 +g76869 +S'shakers' +p76871 +tp76872 +a(g76869 +g76871 +S'because' +p76873 +tp76874 +a(g76871 +g76873 +S'of' +p76875 +tp76876 +a(g76873 +g76875 +S'their' +p76877 +tp76878 +a(g76875 +g76877 +S'group' +p76879 +tp76880 +a(g76877 +g76879 +S'dancing,' +p76881 +tp76882 +a(g76879 +g76881 +S'which' +p76883 +tp76884 +a(g76881 +g76883 +S'was' +p76885 +tp76886 +a(g76883 +g76885 +S'an' +p76887 +tp76888 +a(g76885 +g76887 +S'important' +p76889 +tp76890 +a(g76887 +g76889 +S'feature' +p76891 +tp76892 +a(g76889 +g76891 +S'of' +p76893 +tp76894 +a(g76891 +g76893 +S'their' +p76895 +tp76896 +a(g76893 +g76895 +S'religious' +p76897 +tp76898 +a(g76895 +g76897 +S'service.' +p76899 +tp76900 +a(g76897 +g76899 +S'in' +p76901 +tp76902 +a(g76899 +g76901 +S'the' +p76903 +tp76904 +a(g76901 +g76903 +S'decade' +p76905 +tp76906 +a(g76903 +g76905 +S'from' +p76907 +tp76908 +a(g76905 +g76907 +S'1837' +p76909 +tp76910 +a(g76907 +g76909 +S'to' +p76911 +tp76912 +a(g76909 +g76911 +S'1847,' +p76913 +tp76914 +a(g76911 +g76913 +S'shakers' +p76915 +tp76916 +a(g76913 +g76915 +S'were' +p76917 +tp76918 +a(g76915 +g76917 +S'immersed' +p76919 +tp76920 +a(g76917 +g76919 +S'in' +p76921 +tp76922 +a(g76919 +g76921 +S'an' +p76923 +tp76924 +a(g76921 +g76923 +S'intense' +p76925 +tp76926 +a(g76923 +g76925 +S'emotionalism' +p76927 +tp76928 +a(g76925 +g76927 +S'expressed' +p76929 +tp76930 +a(g76927 +g76929 +S'in' +p76931 +tp76932 +a(g76929 +g76931 +S'elaborate' +p76933 +tp76934 +a(g76931 +g76933 +S'rituals,' +p76935 +tp76936 +a(g76933 +g76935 +S'in' +p76937 +tp76938 +a(g76935 +g76937 +S'visions,' +p76939 +tp76940 +a(g76937 +g76939 +S'and' +p76941 +tp76942 +a(g76939 +g76941 +S'in' +p76943 +tp76944 +a(g76941 +g76943 +S'various' +p76945 +tp76946 +a(g76943 +g76945 +S'psychic' +p76947 +tp76948 +a(g76945 +g76947 +S'experiences.' +p76949 +tp76950 +a(g76947 +g76949 +S'spirit' +p76951 +tp76952 +a(g76949 +g76951 +S'drawings' +p76953 +tp76954 +a(g76951 +g76953 +S'were' +p76955 +tp76956 +a(g76953 +g76955 +S'received' +p76957 +tp76958 +a(g76955 +g76957 +S'as' +p76959 +tp76960 +a(g76957 +g76959 +S'"gifts"' +p76961 +tp76962 +a(g76959 +g76961 +S'or' +p76963 +tp76964 +a(g76961 +g76963 +S'visions' +p76965 +tp76966 +a(g76963 +g76965 +S'from' +p76967 +tp76968 +a(g76965 +g76967 +S'god.' +p76969 +tp76970 +a(g76967 +g76969 +S'never' +p76971 +tp76972 +a(g76969 +g76971 +S'regarded' +p76973 +tp76974 +a(g76971 +g76973 +S'as' +p76975 +tp76976 +a(g76973 +g76975 +S'art,' +p76977 +tp76978 +a(g76975 +g76977 +S'they' +p76979 +tp76980 +a(g76977 +g76979 +S'were' +p76981 +tp76982 +a(g76979 +g76981 +S'sacred,' +p76983 +tp76984 +a(g76981 +g76983 +S'pictorial' +p76985 +tp76986 +a(g76983 +g76985 +S'drawings' +p76987 +tp76988 +a(g76985 +g76987 +S'of' +p76989 +tp76990 +a(g76987 +g76989 +S'divine' +p76991 +tp76992 +a(g76989 +g76991 +S'revelations.' +p76993 +tp76994 +a(g76991 +g76993 +S'the' +p76995 +tp76996 +a(g76993 +g76995 +S"shakers'" +p76997 +tp76998 +a(g76995 +g76997 +S'millenial' +p76999 +tp77000 +a(g76997 +g76999 +S'laws' +p77001 +tp77002 +a(g76999 +g77001 +S'placed' +p77003 +tp77004 +a(g77001 +g77003 +S'restrictions' +p77005 +tp77006 +a(g77003 +g77005 +S'on' +p77007 +tp77008 +a(g77005 +g77007 +S'the' +p77009 +tp77010 +a(g77007 +g77009 +S'use' +p77011 +tp77012 +a(g77009 +g77011 +S'of' +p77013 +tp77014 +a(g77011 +g77013 +S'decoration,' +p77015 +tp77016 +a(g77013 +g77015 +S'but' +p77017 +tp77018 +a(g77015 +g77017 +S'through' +p77019 +tp77020 +a(g77017 +g77019 +S'spirit' +p77021 +tp77022 +a(g77019 +g77021 +S'drawings,' +p77023 +tp77024 +a(g77021 +g77023 +S'the' +p77025 +tp77026 +a(g77023 +g77025 +S'shakers' +p77027 +tp77028 +a(g77025 +g77027 +S'revealed' +p77029 +tp77030 +a(g77027 +g77029 +S'a' +p77031 +tp77032 +a(g77029 +g77031 +S'delight' +p77033 +tp77034 +a(g77031 +g77033 +S'in' +p77035 +tp77036 +a(g77033 +g77035 +S'the' +p77037 +tp77038 +a(g77035 +g77037 +S'ornamental.' +p77039 +tp77040 +a(g77037 +g77039 +S'in' +p77041 +tp77042 +a(g77039 +g77041 +S'this' +p77043 +tp77044 +a(g77041 +g77043 +S'example,' +p77045 +tp77046 +a(g77043 +g77045 +S'the' +p77047 +tp77048 +a(g77045 +g77047 +S'shaker' +p77049 +tp77050 +a(g77047 +g77049 +S'sense' +p77051 +tp77052 +a(g77049 +g77051 +S'of' +p77053 +tp77054 +a(g77051 +g77053 +S'artistry' +p77055 +tp77056 +a(g77053 +g77055 +S'is' +p77057 +tp77058 +a(g77055 +g77057 +S'expressed' +p77059 +tp77060 +a(g77057 +g77059 +S'in' +p77061 +tp77062 +a(g77059 +g77061 +S'the' +p77063 +tp77064 +a(g77061 +g77063 +S'variety' +p77065 +tp77066 +a(g77063 +g77065 +S'of' +p77067 +tp77068 +a(g77065 +g77067 +S'symbols' +p77069 +tp77070 +a(g77067 +g77069 +S'used.' +p77071 +tp77072 +a(g77069 +g77071 +S'the' +p77073 +tp77074 +a(g77071 +g77073 +S'heart' +p77075 +tp77076 +a(g77073 +g77075 +S'is' +p77077 +tp77078 +a(g77075 +g77077 +S'a' +p77079 +tp77080 +a(g77077 +g77079 +S'symbol' +p77081 +tp77082 +a(g77079 +g77081 +S'of' +p77083 +tp77084 +a(g77081 +g77083 +S'love;' +p77085 +tp77086 +a(g77083 +g77085 +S'lamps' +p77087 +tp77088 +a(g77085 +g77087 +S'and' +p77089 +tp77090 +a(g77087 +g77089 +S'candles' +p77091 +tp77092 +a(g77089 +g77091 +S'represent' +p77093 +tp77094 +a(g77091 +g77093 +S'heavenly' +p77095 +tp77096 +a(g77093 +g77095 +S'light;' +p77097 +tp77098 +a(g77095 +g77097 +S'doves,' +p77099 +tp77100 +a(g77097 +g77099 +S'birds,' +p77101 +tp77102 +a(g77099 +g77101 +S'and' +p77103 +tp77104 +a(g77101 +g77103 +S'the' +p77105 +tp77106 +a(g77103 +g77105 +S'falling' +p77107 +tp77108 +a(g77105 +g77107 +S'feather' +p77109 +tp77110 +a(g77107 +g77109 +S'reflect' +p77111 +tp77112 +a(g77109 +g77111 +S'the' +p77113 +tp77114 +a(g77111 +g77113 +S'daily' +p77115 +tp77116 +a(g77113 +g77115 +S'speech' +p77117 +tp77118 +a(g77115 +g77117 +S'of' +p77119 +tp77120 +a(g77117 +g77119 +S'the' +p77121 +tp77122 +a(g77119 +g77121 +S'shakers.' +p77123 +tp77124 +a(g77121 +g77123 +S'the' +p77125 +tp77126 +a(g77123 +g77125 +S'clock' +p77127 +tp77128 +a(g77125 +g77127 +S'signifies' +p77129 +tp77130 +a(g77127 +g77129 +S'mortality,' +p77131 +tp77132 +a(g77129 +g77131 +S'while' +p77133 +tp77134 +a(g77131 +g77133 +S'the' +p77135 +tp77136 +a(g77133 +g77135 +S'trees,' +p77137 +tp77138 +a(g77135 +g77137 +S'a' +p77139 +tp77140 +a(g77137 +g77139 +S'common' +p77141 +tp77142 +a(g77139 +g77141 +S'symbol' +p77143 +tp77144 +a(g77141 +g77143 +S'in' +p77145 +tp77146 +a(g77143 +g77145 +S'spirit' +p77147 +tp77148 +a(g77145 +g77147 +S'drawings,' +p77149 +tp77150 +a(g77147 +g77149 +S'represent' +p77151 +tp77152 +a(g77149 +g77151 +S'the' +p77153 +tp77154 +a(g77151 +g77153 +S'tree' +p77155 +tp77156 +a(g77153 +g77155 +S'of' +p77157 +tp77158 +a(g77155 +g77157 +S'life.' +p77159 +tp77160 +a(g77157 +g77159 +S'after' +p77161 +tp77162 +a(g77159 +g77161 +S'four' +p77163 +tp77164 +a(g77161 +g77163 +S'years' +p77165 +tp77166 +a(g77163 +g77165 +S'in' +p77167 +tp77168 +a(g77165 +g77167 +S'florence,' +p77169 +tp77170 +a(g77167 +g77169 +S'raphael' +p77171 +tp77172 +a(g77169 +g77171 +S'moved' +p77173 +tp77174 +a(g77171 +g77173 +S'to' +p77175 +tp77176 +a(g77173 +g77175 +S'rome' +p77177 +tp77178 +a(g77175 +g77177 +S'in' +p77179 +tp77180 +a(g77177 +g77179 +S'1508,' +p77181 +tp77182 +a(g77179 +g77181 +S'probably' +p77183 +tp77184 +a(g77181 +g77183 +S'to' +p77185 +tp77186 +a(g77183 +g77185 +S'execute' +p77187 +tp77188 +a(g77185 +g77187 +S'more' +p77189 +tp77190 +a(g77187 +g77189 +S'significant' +p77191 +tp77192 +a(g77189 +g77191 +S'commissions' +p77193 +tp77194 +a(g77191 +g77193 +S'under' +p77195 +tp77196 +a(g77193 +g77195 +S'the' +p77197 +tp77198 +a(g77195 +g77197 +S'papal' +p77199 +tp77200 +a(g77197 +g77199 +S'reign' +p77201 +tp77202 +a(g77199 +g77201 +S'of' +p77203 +tp77204 +a(g77201 +g77203 +S'julius' +p77205 +tp77206 +a(g77203 +g77205 +S'ii.' +p77207 +tp77208 +a(g77205 +g77207 +S'the' +p77209 +tp77210 +a(g77207 +g77209 +S'major' +p77211 +tp77212 +a(g77209 +g77211 +S'work' +p77213 +tp77214 +a(g77211 +g77213 +S'in' +p77215 +tp77216 +a(g77213 +g77215 +S'america' +p77217 +tp77218 +a(g77215 +g77217 +S'from' +p77219 +tp77220 +a(g77217 +g77219 +S"raphael's" +p77221 +tp77222 +a(g77219 +g77221 +S'roman' +p77223 +tp77224 +a(g77221 +g77223 +S'period' +p77225 +tp77226 +a(g77223 +g77225 +S'is' +p77227 +tp77228 +a(g77225 +g77227 +S'the' +p77229 +tp77230 +a(g77227 +g77229 +S'alba' +p77231 +tp77232 +a(g77229 +g77231 +S'madonna' +p77233 +tp77234 +a(g77231 +g77233 +S'this' +p77235 +tp77236 +a(g77233 +g77235 +S'locomotive' +p77237 +tp77238 +a(g77235 +g77237 +S'is' +p77239 +tp77240 +a(g77237 +g77239 +S'made' +p77241 +tp77242 +a(g77239 +g77241 +S'from' +p77243 +tp77244 +a(g77241 +g77243 +S'tinned' +p77245 +tp77246 +a(g77243 +g77245 +S'sheet' +p77247 +tp77248 +a(g77245 +g77247 +S'iron' +p77249 +tp77250 +a(g77247 +g77249 +S'painted' +p77251 +tp77252 +a(g77249 +g77251 +S'with' +p77253 +tp77254 +a(g77251 +g77253 +S'oil' +p77255 +tp77256 +a(g77253 +g77255 +S'colors' +p77257 +tp77258 +a(g77255 +g77257 +S'and' +p77259 +tp77260 +a(g77257 +g77259 +S'touches' +p77261 +tp77262 +a(g77259 +g77261 +S'of' +p77263 +tp77264 +a(g77261 +g77263 +S'gilt;' +p77265 +tp77266 +a(g77263 +g77265 +S'it' +p77267 +tp77268 +a(g77265 +g77267 +S'is' +p77269 +tp77270 +a(g77267 +g77269 +S'fitted' +p77271 +tp77272 +a(g77269 +g77271 +S'with' +p77273 +tp77274 +a(g77271 +g77273 +S'a' +p77275 +tp77276 +a(g77273 +g77275 +S'clock' +p77277 +tp77278 +a(g77275 +g77277 +S'spring' +p77279 +tp77280 +a(g77277 +g77279 +S'for' +p77281 +tp77282 +a(g77279 +g77281 +S'propulsion.' +p77283 +tp77284 +a(g77281 +g77283 +S'clockwork' +p77285 +tp77286 +a(g77283 +g77285 +S'mechanisms' +p77287 +tp77288 +a(g77285 +g77287 +S'reached' +p77289 +tp77290 +a(g77287 +g77289 +S'a' +p77291 +tp77292 +a(g77289 +g77291 +S'peak' +p77293 +tp77294 +a(g77291 +g77293 +S'in' +p77295 +tp77296 +a(g77293 +g77295 +S'the' +p77297 +tp77298 +a(g77295 +g77297 +S'twenty-five' +p77299 +tp77300 +a(g77297 +g77299 +S'years' +p77301 +tp77302 +a(g77299 +g77301 +S'following' +p77303 +tp77304 +a(g77301 +g77303 +S'the' +p77305 +tp77306 +a(g77303 +g77305 +S'civil' +p77307 +tp77308 +a(g77305 +g77307 +S'war.' +p77309 +tp77310 +a(g77307 +g77309 +S'locomotives' +p77311 +tp77312 +a(g77309 +g77311 +S'were' +p77313 +tp77314 +a(g77311 +g77313 +S'among' +p77315 +tp77316 +a(g77313 +g77315 +S'the' +p77317 +tp77318 +a(g77315 +g77317 +S'most' +p77319 +tp77320 +a(g77317 +g77319 +S'popular' +p77321 +tp77322 +a(g77319 +g77321 +S'clockwork' +p77323 +tp77324 +a(g77321 +g77323 +S'toys.' +p77325 +tp77326 +a(g77323 +g77325 +S'this' +p77327 +tp77328 +a(g77325 +g77327 +S'toy' +p77329 +tp77330 +a(g77327 +g77329 +S'dates' +p77331 +tp77332 +a(g77329 +g77331 +S'from' +p77333 +tp77334 +a(g77331 +g77333 +S'the' +p77335 +tp77336 +a(g77333 +g77335 +S'third' +p77337 +tp77338 +a(g77335 +g77337 +S'quarter' +p77339 +tp77340 +a(g77337 +g77339 +S'of' +p77341 +tp77342 +a(g77339 +g77341 +S'the' +p77343 +tp77344 +a(g77341 +g77343 +S'nineteenth' +p77345 +tp77346 +a(g77343 +g77345 +S'century.' +p77347 +tp77348 +a(g77345 +g77347 +S'the' +p77349 +tp77350 +a(g77347 +g77349 +S'cowcatcher' +p77351 +tp77352 +a(g77349 +g77351 +S'in' +p77353 +tp77354 +a(g77351 +g77353 +S'front,' +p77355 +tp77356 +a(g77353 +g77355 +S'the' +p77357 +tp77358 +a(g77355 +g77357 +S'eagle' +p77359 +tp77360 +a(g77357 +g77359 +S'on' +p77361 +tp77362 +a(g77359 +g77361 +S'the' +p77363 +tp77364 +a(g77361 +g77363 +S'headlight,' +p77365 +tp77366 +a(g77363 +g77365 +S'and' +p77367 +tp77368 +a(g77365 +g77367 +S'the' +p77369 +tp77370 +a(g77367 +g77369 +S'broad' +p77371 +tp77372 +a(g77369 +g77371 +S'funnel' +p77373 +tp77374 +a(g77371 +g77373 +S'characterize' +p77375 +tp77376 +a(g77373 +g77375 +S'an' +p77377 +tp77378 +a(g77375 +g77377 +S'early' +p77379 +tp77380 +a(g77377 +g77379 +S'stage' +p77381 +tp77382 +a(g77379 +g77381 +S'in' +p77383 +tp77384 +a(g77381 +g77383 +S'the' +p77385 +tp77386 +a(g77383 +g77385 +S'development' +p77387 +tp77388 +a(g77385 +g77387 +S'of' +p77389 +tp77390 +a(g77387 +g77389 +S'the' +p77391 +tp77392 +a(g77389 +g77391 +S'american' +p77393 +tp77394 +a(g77391 +g77393 +S'locomotive.' +p77395 +tp77396 +a(g77393 +g77395 +S'a' +p77397 +tp77398 +a(g77395 +g77397 +S'bell' +p77399 +tp77400 +a(g77397 +g77399 +S'(now' +p77401 +tp77402 +a(g77399 +g77401 +S'missing)' +p77403 +tp77404 +a(g77401 +g77403 +S'was' +p77405 +tp77406 +a(g77403 +g77405 +S'originally' +p77407 +tp77408 +a(g77405 +g77407 +S'suspended' +p77409 +tp77410 +a(g77407 +g77409 +S'from' +p77411 +tp77412 +a(g77409 +g77411 +S'the' +p77413 +tp77414 +a(g77411 +g77413 +S'scrolling' +p77415 +tp77416 +a(g77413 +g77415 +S'frame' +p77417 +tp77418 +a(g77415 +g77417 +S'arched' +p77419 +tp77420 +a(g77417 +g77419 +S'across' +p77421 +tp77422 +a(g77419 +g77421 +S'the' +p77423 +tp77424 +a(g77421 +g77423 +S'top' +p77425 +tp77426 +a(g77423 +g77425 +S'of' +p77427 +tp77428 +a(g77425 +g77427 +S'the' +p77429 +tp77430 +a(g77427 +g77429 +S'boiler.' +p77431 +tp77432 +a(g77429 +g77431 +S'the' +p77433 +tp77434 +a(g77431 +g77433 +S'locomotive' +p77435 +tp77436 +a(g77433 +g77435 +S'runs' +p77437 +tp77438 +a(g77435 +g77437 +S'on' +p77439 +tp77440 +a(g77437 +g77439 +S'four' +p77441 +tp77442 +a(g77439 +g77441 +S'cast' +p77443 +tp77444 +a(g77441 +g77443 +S'iron' +p77445 +tp77446 +a(g77443 +g77445 +S'wheels.' +p77447 +tp77448 +a(g77445 +g77447 +S'in' +p77449 +tp77450 +a(g77447 +g77449 +S'place' +p77451 +tp77452 +a(g77449 +g77451 +S'of' +p77453 +tp77454 +a(g77451 +g77453 +S'spokes,' +p77455 +tp77456 +a(g77453 +g77455 +S'the' +p77457 +tp77458 +a(g77455 +g77457 +S'wheels' +p77459 +tp77460 +a(g77457 +g77459 +S'have' +p77461 +tp77462 +a(g77459 +g77461 +S'ornate' +p77463 +tp77464 +a(g77461 +g77463 +S'tracery.' +p77465 +tp77466 +a(g77463 +g77465 +S'this' +p77467 +tp77468 +a(g77465 +g77467 +S'small' +p77469 +tp77470 +a(g77467 +g77469 +S'horse' +p77471 +tp77472 +a(g77469 +g77471 +S'--' +p77473 +tp77474 +a(g77471 +g77473 +S'only' +p77475 +tp77476 +a(g77473 +g77475 +S'twelve' +p77477 +tp77478 +a(g77475 +g77477 +S'inches' +p77479 +tp77480 +a(g77477 +g77479 +S'high' +p77481 +tp77482 +a(g77479 +g77481 +S'--' +p77483 +tp77484 +a(g77481 +g77483 +S'could' +p77485 +tp77486 +a(g77483 +g77485 +S'not' +p77487 +tp77488 +a(g77485 +g77487 +S'have' +p77489 +tp77490 +a(g77487 +g77489 +S'been' +p77491 +tp77492 +a(g77489 +g77491 +S'a' +p77493 +tp77494 +a(g77491 +g77493 +S'hobbyhorse,' +p77495 +tp77496 +a(g77493 +g77495 +S'but' +p77497 +tp77498 +a(g77495 +g77497 +S'it' +p77499 +tp77500 +a(g77497 +g77499 +S'was' +p77501 +tp77502 +a(g77499 +g77501 +S'a' +p77503 +tp77504 +a(g77501 +g77503 +S'delightful' +p77505 +tp77506 +a(g77503 +g77505 +S'toy' +p77507 +tp77508 +a(g77505 +g77507 +S'in' +p77509 +tp77510 +a(g77507 +g77509 +S'the' +p77511 +tp77512 +a(g77509 +g77511 +S'hobbyhorse' +p77513 +tp77514 +a(g77511 +g77513 +S'style.' +p77515 +tp77516 +a(g77513 +g77515 +S'made' +p77517 +tp77518 +a(g77515 +g77517 +S'about' +p77519 +tp77520 +a(g77517 +g77519 +S'1835' +p77521 +tp77522 +a(g77519 +g77521 +S'in' +p77523 +tp77524 +a(g77521 +g77523 +S'pennsylvania,' +p77525 +tp77526 +a(g77523 +g77525 +S'it' +p77527 +tp77528 +a(g77525 +g77527 +S'was' +p77529 +tp77530 +a(g77527 +g77529 +S'carved' +p77531 +tp77532 +a(g77529 +g77531 +S'from' +p77533 +tp77534 +a(g77531 +g77533 +S'a' +p77535 +tp77536 +a(g77533 +g77535 +S'single' +p77537 +tp77538 +a(g77535 +g77537 +S'piece' +p77539 +tp77540 +a(g77537 +g77539 +S'of' +p77541 +tp77542 +a(g77539 +g77541 +S'pine.' +p77543 +tp77544 +a(g77541 +g77543 +S'the' +p77545 +tp77546 +a(g77543 +g77545 +S'eyes,' +p77547 +tp77548 +a(g77545 +g77547 +S'nostrils,' +p77549 +tp77550 +a(g77547 +g77549 +S'hooves,' +p77551 +tp77552 +a(g77549 +g77551 +S'and' +p77553 +tp77554 +a(g77551 +g77553 +S'horns' +p77555 +tp77556 +a(g77553 +g77555 +S'are' +p77557 +tp77558 +a(g77555 +g77557 +S'painted.' +p77559 +tp77560 +a(g77557 +g77559 +S'iron' +p77561 +tp77562 +a(g77559 +g77561 +S'nails' +p77563 +tp77564 +a(g77561 +g77563 +S'driven' +p77565 +tp77566 +a(g77563 +g77565 +S'into' +p77567 +tp77568 +a(g77565 +g77567 +S'the' +p77569 +tp77570 +a(g77567 +g77569 +S'top' +p77571 +tp77572 +a(g77569 +g77571 +S'of' +p77573 +tp77574 +a(g77571 +g77573 +S'the' +p77575 +tp77576 +a(g77573 +g77575 +S'neck' +p77577 +tp77578 +a(g77575 +g77577 +S'keep' +p77579 +tp77580 +a(g77577 +g77579 +S'a' +p77581 +tp77582 +a(g77579 +g77581 +S'horizontal' +p77583 +tp77584 +a(g77581 +g77583 +S'crack' +p77585 +tp77586 +a(g77583 +g77585 +S'from' +p77587 +tp77588 +a(g77585 +g77587 +S'opening' +p77589 +tp77590 +a(g77587 +g77589 +S'further.' +p77591 +tp77592 +a(g77589 +g77591 +S'in' +p77593 +tp77594 +a(g77591 +g77593 +S'early' +p77595 +tp77596 +a(g77593 +g77595 +S'america,' +p77597 +tp77598 +a(g77595 +g77597 +S'silversmithing' +p77599 +tp77600 +a(g77597 +g77599 +S'was' +p77601 +tp77602 +a(g77599 +g77601 +S'practiced' +p77603 +tp77604 +a(g77601 +g77603 +S'primarily' +p77605 +tp77606 +a(g77603 +g77605 +S'in' +p77607 +tp77608 +a(g77605 +g77607 +S'the' +p77609 +tp77610 +a(g77607 +g77609 +S'urban' +p77611 +tp77612 +a(g77609 +g77611 +S'centers' +p77613 +tp77614 +a(g77611 +g77613 +S'of' +p77615 +tp77616 +a(g77613 +g77615 +S'new' +p77617 +tp77618 +a(g77615 +g77617 +S'york,' +p77619 +tp77620 +a(g77617 +g77619 +S'philadelphia,' +p77621 +tp77622 +a(g77619 +g77621 +S'and' +p77623 +tp77624 +a(g77621 +g77623 +S'boston,' +p77625 +tp77626 +a(g77623 +g77625 +S'where' +p77627 +tp77628 +a(g77625 +g77627 +S'social' +p77629 +tp77630 +a(g77627 +g77629 +S'and' +p77631 +tp77632 +a(g77629 +g77631 +S'intellectual' +p77633 +tp77634 +a(g77631 +g77633 +S'connections' +p77635 +tp77636 +a(g77633 +g77635 +S'with' +p77637 +tp77638 +a(g77635 +g77637 +S'england' +p77639 +tp77640 +a(g77637 +g77639 +S'were' +p77641 +tp77642 +a(g77639 +g77641 +S'strongest.' +p77643 +tp77644 +a(g77641 +g77643 +S'english' +p77645 +tp77646 +a(g77643 +g77645 +S'silver' +p77647 +tp77648 +a(g77645 +g77647 +S'provided' +p77649 +tp77650 +a(g77647 +g77649 +S'the' +p77651 +tp77652 +a(g77649 +g77651 +S'standard' +p77653 +tp77654 +a(g77651 +g77653 +S'in' +p77655 +tp77656 +a(g77653 +g77655 +S'quality' +p77657 +tp77658 +a(g77655 +g77657 +S'and' +p77659 +tp77660 +a(g77657 +g77659 +S'fashion,' +p77661 +tp77662 +a(g77659 +g77661 +S'reflected' +p77663 +tp77664 +a(g77661 +g77663 +S'by' +p77665 +tp77666 +a(g77663 +g77665 +S'american' +p77667 +tp77668 +a(g77665 +g77667 +S'silver' +p77669 +tp77670 +a(g77667 +g77669 +S'work.' +p77671 +tp77672 +a(g77669 +g77671 +S'craftsmen' +p77673 +tp77674 +a(g77671 +g77673 +S'obtained' +p77675 +tp77676 +a(g77673 +g77675 +S'their' +p77677 +tp77678 +a(g77675 +g77677 +S'material' +p77679 +tp77680 +a(g77677 +g77679 +S'most' +p77681 +tp77682 +a(g77679 +g77681 +S'often' +p77683 +tp77684 +a(g77681 +g77683 +S'by' +p77685 +tp77686 +a(g77683 +g77685 +S'melting' +p77687 +tp77688 +a(g77685 +g77687 +S'down' +p77689 +tp77690 +a(g77687 +g77689 +S'old' +p77691 +tp77692 +a(g77689 +g77691 +S'coins' +p77693 +tp77694 +a(g77691 +g77693 +S'or' +p77695 +tp77696 +a(g77693 +g77695 +S'silverware.' +p77697 +tp77698 +a(g77695 +g77697 +S'from' +p77699 +tp77700 +a(g77697 +g77699 +S'flat' +p77701 +tp77702 +a(g77699 +g77701 +S'silver' +p77703 +tp77704 +a(g77701 +g77703 +S'sheets,' +p77705 +tp77706 +a(g77703 +g77705 +S'the' +p77707 +tp77708 +a(g77705 +g77707 +S'craftsmen' +p77709 +tp77710 +a(g77707 +g77709 +S'hammered' +p77711 +tp77712 +a(g77709 +g77711 +S'the' +p77713 +tp77714 +a(g77711 +g77713 +S'metal' +p77715 +tp77716 +a(g77713 +g77715 +S'into' +p77717 +tp77718 +a(g77715 +g77717 +S'the' +p77719 +tp77720 +a(g77717 +g77719 +S'desired' +p77721 +tp77722 +a(g77719 +g77721 +S'shape.' +p77723 +tp77724 +a(g77721 +g77723 +S'after' +p77725 +tp77726 +a(g77723 +g77725 +S'the' +p77727 +tp77728 +a(g77725 +g77727 +S'piece' +p77729 +tp77730 +a(g77727 +g77729 +S'was' +p77731 +tp77732 +a(g77729 +g77731 +S'formed,' +p77733 +tp77734 +a(g77731 +g77733 +S'the' +p77735 +tp77736 +a(g77733 +g77735 +S'surface' +p77737 +tp77738 +a(g77735 +g77737 +S'was' +p77739 +tp77740 +a(g77737 +g77739 +S'smoothed' +p77741 +tp77742 +a(g77739 +g77741 +S'by' +p77743 +tp77744 +a(g77741 +g77743 +S'beating' +p77745 +tp77746 +a(g77743 +g77745 +S'it' +p77747 +tp77748 +a(g77745 +g77747 +S'lightly' +p77749 +tp77750 +a(g77747 +g77749 +S'with' +p77751 +tp77752 +a(g77749 +g77751 +S'a' +p77753 +tp77754 +a(g77751 +g77753 +S'special' +p77755 +tp77756 +a(g77753 +g77755 +S'hammer.' +p77757 +tp77758 +a(g77755 +g77757 +S'by' +p77759 +tp77760 +a(g77757 +g77759 +S'the' +p77761 +tp77762 +a(g77759 +g77761 +S'mid-eighteenth' +p77763 +tp77764 +a(g77761 +g77763 +S'century,' +p77765 +tp77766 +a(g77763 +g77765 +S'thumbpieces,' +p77767 +tp77768 +a(g77765 +g77767 +S'finials,' +p77769 +tp77770 +a(g77767 +g77769 +S'and' +p77771 +tp77772 +a(g77769 +g77771 +S'handles' +p77773 +tp77774 +a(g77771 +g77773 +S'were' +p77775 +tp77776 +a(g77773 +g77775 +S'cast' +p77777 +tp77778 +a(g77775 +g77777 +S'in' +p77779 +tp77780 +a(g77777 +g77779 +S'silver' +p77781 +tp77782 +a(g77779 +g77781 +S'and' +p77783 +tp77784 +a(g77781 +g77783 +S'soldered' +p77785 +tp77786 +a(g77783 +g77785 +S'onto' +p77787 +tp77788 +a(g77785 +g77787 +S'the' +p77789 +tp77790 +a(g77787 +g77789 +S'body.' +p77791 +tp77792 +a(g77789 +g77791 +S'this' +p77793 +tp77794 +a(g77791 +g77793 +S'piece' +p77795 +tp77796 +a(g77793 +g77795 +S'is' +p77797 +tp77798 +a(g77795 +g77797 +S'a' +p77799 +tp77800 +a(g77797 +g77799 +S'spout' +p77801 +tp77802 +a(g77799 +g77801 +S'cup' +p77803 +tp77804 +a(g77801 +g77803 +S'made' +p77805 +tp77806 +a(g77803 +g77805 +S'by' +p77807 +tp77808 +a(g77805 +g77807 +S'the' +p77809 +tp77810 +a(g77807 +g77809 +S'boston' +p77811 +tp77812 +a(g77809 +g77811 +S'silversmith' +p77813 +tp77814 +a(g77811 +g77813 +S'john' +p77815 +tp77816 +a(g77813 +g77815 +S'edwards' +p77817 +tp77818 +a(g77815 +g77817 +S'in' +p77819 +tp77820 +a(g77817 +g77819 +S'the' +p77821 +tp77822 +a(g77819 +g77821 +S'early' +p77823 +tp77824 +a(g77821 +g77823 +S'eighteenth' +p77825 +tp77826 +a(g77823 +g77825 +S'century.' +p77827 +tp77828 +a(g77825 +g77827 +S'he' +p77829 +tp77830 +a(g77827 +g77829 +S'is' +p77831 +tp77832 +a(g77829 +g77831 +S'identified' +p77833 +tp77834 +a(g77831 +g77833 +S'by' +p77835 +tp77836 +a(g77833 +g77835 +S'the' +p77837 +tp77838 +a(g77835 +g77837 +S'small' +p77839 +tp77840 +a(g77837 +g77839 +S'mark' +p77841 +tp77842 +a(g77839 +g77841 +S'on' +p77843 +tp77844 +a(g77841 +g77843 +S'the' +p77845 +tp77846 +a(g77843 +g77845 +S'neck' +p77847 +tp77848 +a(g77845 +g77847 +S'of' +p77849 +tp77850 +a(g77847 +g77849 +S'the' +p77851 +tp77852 +a(g77849 +g77851 +S'cup,' +p77853 +tp77854 +a(g77851 +g77853 +S'which' +p77855 +tp77856 +a(g77853 +g77855 +S'he' +p77857 +tp77858 +a(g77855 +g77857 +S'used' +p77859 +tp77860 +a(g77857 +g77859 +S'to' +p77861 +tp77862 +a(g77859 +g77861 +S'sign' +p77863 +tp77864 +a(g77861 +g77863 +S'his' +p77865 +tp77866 +a(g77863 +g77865 +S'products.' +p77867 +tp77868 +a(g77865 +g77867 +S'spout' +p77869 +tp77870 +a(g77867 +g77869 +S'cups' +p77871 +tp77872 +a(g77869 +g77871 +S'were' +p77873 +tp77874 +a(g77871 +g77873 +S'used' +p77875 +tp77876 +a(g77873 +g77875 +S'for' +p77877 +tp77878 +a(g77875 +g77877 +S'drinking' +p77879 +tp77880 +a(g77877 +g77879 +S'by' +p77881 +tp77882 +a(g77879 +g77881 +S'small' +p77883 +tp77884 +a(g77881 +g77883 +S'children,' +p77885 +tp77886 +a(g77883 +g77885 +S'the' +p77887 +tp77888 +a(g77885 +g77887 +S'sick,' +p77889 +tp77890 +a(g77887 +g77889 +S'and' +p77891 +tp77892 +a(g77889 +g77891 +S'the' +p77893 +tp77894 +a(g77891 +g77893 +S'elderly.' +p77895 +tp77896 +a(g77893 +g77895 +S'the' +p77897 +tp77898 +a(g77895 +g77897 +S'design' +p77899 +tp77900 +a(g77897 +g77899 +S'of' +p77901 +tp77902 +a(g77899 +g77901 +S'this' +p77903 +tp77904 +a(g77901 +g77903 +S'one' +p77905 +tp77906 +a(g77903 +g77905 +S'is' +p77907 +tp77908 +a(g77905 +g77907 +S'simple' +p77909 +tp77910 +a(g77907 +g77909 +S'but' +p77911 +tp77912 +a(g77909 +g77911 +S'refined,' +p77913 +tp77914 +a(g77911 +g77913 +S'unlike' +p77915 +tp77916 +a(g77913 +g77915 +S'more' +p77917 +tp77918 +a(g77915 +g77917 +S'elaborate' +p77919 +tp77920 +a(g77917 +g77919 +S'forms' +p77921 +tp77922 +a(g77919 +g77921 +S'common' +p77923 +tp77924 +a(g77921 +g77923 +S'in' +p77925 +tp77926 +a(g77923 +g77925 +S'that' +p77927 +tp77928 +a(g77925 +g77927 +S'period.' +p77929 +tp77930 +a(g77927 +g77929 +S'the' +p77931 +tp77932 +a(g77929 +g77931 +S'cup' +p77933 +tp77934 +a(g77931 +g77933 +S'is' +p77935 +tp77936 +a(g77933 +g77935 +S'set' +p77937 +tp77938 +a(g77935 +g77937 +S'on' +p77939 +tp77940 +a(g77937 +g77939 +S'a' +p77941 +tp77942 +a(g77939 +g77941 +S'foot' +p77943 +tp77944 +a(g77941 +g77943 +S'ring' +p77945 +tp77946 +a(g77943 +g77945 +S'and' +p77947 +tp77948 +a(g77945 +g77947 +S'has' +p77949 +tp77950 +a(g77947 +g77949 +S'a' +p77951 +tp77952 +a(g77949 +g77951 +S'flat' +p77953 +tp77954 +a(g77951 +g77953 +S'strap' +p77955 +tp77956 +a(g77953 +g77955 +S'handle' +p77957 +tp77958 +a(g77955 +g77957 +S'and' +p77959 +tp77960 +a(g77957 +g77959 +S'a' +p77961 +tp77962 +a(g77959 +g77961 +S'slender,' +p77963 +tp77964 +a(g77961 +g77963 +S'curving' +p77965 +tp77966 +a(g77963 +g77965 +S'spout.' +p77967 +tp77968 +a(g77965 +g77967 +S'incised' +p77969 +tp77970 +a(g77967 +g77969 +S'bands' +p77971 +tp77972 +a(g77969 +g77971 +S'around' +p77973 +tp77974 +a(g77971 +g77973 +S'the' +p77975 +tp77976 +a(g77973 +g77975 +S'neck' +p77977 +tp77978 +a(g77975 +g77977 +S'of' +p77979 +tp77980 +a(g77977 +g77979 +S'the' +p77981 +tp77982 +a(g77979 +g77981 +S'cup' +p77983 +tp77984 +a(g77981 +g77983 +S'are' +p77985 +tp77986 +a(g77983 +g77985 +S'repeated' +p77987 +tp77988 +a(g77985 +g77987 +S'around' +p77989 +tp77990 +a(g77987 +g77989 +S'the' +p77991 +tp77992 +a(g77989 +g77991 +S'base' +p77993 +tp77994 +a(g77991 +g77993 +S'and' +p77995 +tp77996 +a(g77993 +g77995 +S'on' +p77997 +tp77998 +a(g77995 +g77997 +S'the' +p77999 +tp78000 +a(g77997 +g77999 +S'handle,' +p78001 +tp78002 +a(g77999 +g78001 +S'serving' +p78003 +tp78004 +a(g78001 +g78003 +S'to' +p78005 +tp78006 +a(g78003 +g78005 +S'further' +p78007 +tp78008 +a(g78005 +g78007 +S'emphasize' +p78009 +tp78010 +a(g78007 +g78009 +S'the' +p78011 +tp78012 +a(g78009 +g78011 +S'restraint' +p78013 +tp78014 +a(g78011 +g78013 +S'and' +p78015 +tp78016 +a(g78013 +g78015 +S'elegance' +p78017 +tp78018 +a(g78015 +g78017 +S'of' +p78019 +tp78020 +a(g78017 +g78019 +S'this' +p78021 +tp78022 +a(g78019 +g78021 +S'piece.' +p78023 +tp78024 +a(g78021 +g78023 +S'after' +p78025 +tp78026 +a(g78023 +g78025 +S'the' +p78027 +tp78028 +a(g78025 +g78027 +S'revolution,' +p78029 +tp78030 +a(g78027 +g78029 +S'the' +p78031 +tp78032 +a(g78029 +g78031 +S'design' +p78033 +tp78034 +a(g78031 +g78033 +S'of' +p78035 +tp78036 +a(g78033 +g78035 +S'silver' +p78037 +tp78038 +a(g78035 +g78037 +S'and' +p78039 +tp78040 +a(g78037 +g78039 +S'of' +p78041 +tp78042 +a(g78039 +g78041 +S'most' +p78043 +tp78044 +a(g78041 +g78043 +S'other' +p78045 +tp78046 +a(g78043 +g78045 +S'decorative' +p78047 +tp78048 +a(g78045 +g78047 +S'arts' +p78049 +tp78050 +a(g78047 +g78049 +S'assumed' +p78051 +tp78052 +a(g78049 +g78051 +S'a' +p78053 +tp78054 +a(g78051 +g78053 +S'classical' +p78055 +tp78056 +a(g78053 +g78055 +S'style.' +p78057 +tp78058 +a(g78055 +g78057 +S'craftsmen' +p78059 +tp78060 +a(g78057 +g78059 +S'created' +p78061 +tp78062 +a(g78059 +g78061 +S'elegant' +p78063 +tp78064 +a(g78061 +g78063 +S'designs' +p78065 +tp78066 +a(g78063 +g78065 +S'based' +p78067 +tp78068 +a(g78065 +g78067 +S'on' +p78069 +tp78070 +a(g78067 +g78069 +S'interplays' +p78071 +tp78072 +a(g78069 +g78071 +S'of' +p78073 +tp78074 +a(g78071 +g78073 +S'graceful' +p78075 +tp78076 +a(g78073 +g78075 +S'curves' +p78077 +tp78078 +a(g78075 +g78077 +S'and' +p78079 +tp78080 +a(g78077 +g78079 +S'smooth' +p78081 +tp78082 +a(g78079 +g78081 +S'straight' +p78083 +tp78084 +a(g78081 +g78083 +S'lines.' +p78085 +tp78086 +a(g78083 +g78085 +S'a' +p78087 +tp78088 +a(g78085 +g78087 +S'corresponding' +p78089 +tp78090 +a(g78087 +g78089 +S'refinement' +p78091 +tp78092 +a(g78089 +g78091 +S'was' +p78093 +tp78094 +a(g78091 +g78093 +S'seen' +p78095 +tp78096 +a(g78093 +g78095 +S'in' +p78097 +tp78098 +a(g78095 +g78097 +S'surface' +p78099 +tp78100 +a(g78097 +g78099 +S'decoration.' +p78101 +tp78102 +a(g78099 +g78101 +S'this' +p78103 +tp78104 +a(g78101 +g78103 +S'silver' +p78105 +tp78106 +a(g78103 +g78105 +S'teapot,' +p78107 +tp78108 +a(g78105 +g78107 +S'made' +p78109 +tp78110 +a(g78107 +g78109 +S'in' +p78111 +tp78112 +a(g78109 +g78111 +S'the' +p78113 +tp78114 +a(g78111 +g78113 +S'late' +p78115 +tp78116 +a(g78113 +g78115 +S'eighteenth' +p78117 +tp78118 +a(g78115 +g78117 +S'century' +p78119 +tp78120 +a(g78117 +g78119 +S'by' +p78121 +tp78122 +a(g78119 +g78121 +S'isaac' +p78123 +tp78124 +a(g78121 +g78123 +S'hutton' +p78125 +tp78126 +a(g78123 +g78125 +S'in' +p78127 +tp78128 +a(g78125 +g78127 +S'albany,' +p78129 +tp78130 +a(g78127 +g78129 +S'new' +p78131 +tp78132 +a(g78129 +g78131 +S'york,' +p78133 +tp78134 +a(g78131 +g78133 +S'reflects' +p78135 +tp78136 +a(g78133 +g78135 +S'the' +p78137 +tp78138 +a(g78135 +g78137 +S'new' +p78139 +tp78140 +a(g78137 +g78139 +S'classicism.' +p78141 +tp78142 +a(g78139 +g78141 +S'notice' +p78143 +tp78144 +a(g78141 +g78143 +S'that' +p78145 +tp78146 +a(g78143 +g78145 +S'the' +p78147 +tp78148 +a(g78145 +g78147 +S'oval' +p78149 +tp78150 +a(g78147 +g78149 +S'body' +p78151 +tp78152 +a(g78149 +g78151 +S'is' +p78153 +tp78154 +a(g78151 +g78153 +S'shaped' +p78155 +tp78156 +a(g78153 +g78155 +S'into' +p78157 +tp78158 +a(g78155 +g78157 +S'serpentine' +p78159 +tp78160 +a(g78157 +g78159 +S'curves' +p78161 +tp78162 +a(g78159 +g78161 +S'that' +p78163 +tp78164 +a(g78161 +g78163 +S'form' +p78165 +tp78166 +a(g78163 +g78165 +S'vertical' +p78167 +tp78168 +a(g78165 +g78167 +S'panels.' +p78169 +tp78170 +a(g78167 +g78169 +S'the' +p78171 +tp78172 +a(g78169 +g78171 +S'theme' +p78173 +tp78174 +a(g78171 +g78173 +S'is' +p78175 +tp78176 +a(g78173 +g78175 +S'continued' +p78177 +tp78178 +a(g78175 +g78177 +S'in' +p78179 +tp78180 +a(g78177 +g78179 +S'the' +p78181 +tp78182 +a(g78179 +g78181 +S'straight,' +p78183 +tp78184 +a(g78181 +g78183 +S'tapering' +p78185 +tp78186 +a(g78183 +g78185 +S'spout,' +p78187 +tp78188 +a(g78185 +g78187 +S'which' +p78189 +tp78190 +a(g78187 +g78189 +S'is' +p78191 +tp78192 +a(g78189 +g78191 +S'oval' +p78193 +tp78194 +a(g78191 +g78193 +S'in' +p78195 +tp78196 +a(g78193 +g78195 +S'cross' +p78197 +tp78198 +a(g78195 +g78197 +S'section.' +p78199 +tp78200 +a(g78197 +g78199 +S'further' +p78201 +tp78202 +a(g78199 +g78201 +S'emphasizing' +p78203 +tp78204 +a(g78201 +g78203 +S'the' +p78205 +tp78206 +a(g78203 +g78205 +S'classical' +p78207 +tp78208 +a(g78205 +g78207 +S'design' +p78209 +tp78210 +a(g78207 +g78209 +S'are' +p78211 +tp78212 +a(g78209 +g78211 +S'an' +p78213 +tp78214 +a(g78211 +g78213 +S'urn' +p78215 +tp78216 +a(g78213 +g78215 +S'finial' +p78217 +tp78218 +a(g78215 +g78217 +S'atop' +p78219 +tp78220 +a(g78217 +g78219 +S'the' +p78221 +tp78222 +a(g78219 +g78221 +S'bell-shaped' +p78223 +tp78224 +a(g78221 +g78223 +S'lid' +p78225 +tp78226 +a(g78223 +g78225 +S'and' +p78227 +tp78228 +a(g78225 +g78227 +S'the' +p78229 +tp78230 +a(g78227 +g78229 +S'foliate' +p78231 +tp78232 +a(g78229 +g78231 +S'shield' +p78233 +tp78234 +a(g78231 +g78233 +S'medallion' +p78235 +tp78236 +a(g78233 +g78235 +S'that' +p78237 +tp78238 +a(g78235 +g78237 +S'decorates' +p78239 +tp78240 +a(g78237 +g78239 +S'the' +p78241 +tp78242 +a(g78239 +g78241 +S'side.' +p78243 +tp78244 +a(g78241 +g78243 +S'typical' +p78245 +tp78246 +a(g78243 +g78245 +S'of' +p78247 +tp78248 +a(g78245 +g78247 +S'new' +p78249 +tp78250 +a(g78247 +g78249 +S'york' +p78251 +tp78252 +a(g78249 +g78251 +S'teapots' +p78253 +tp78254 +a(g78251 +g78253 +S'during' +p78255 +tp78256 +a(g78253 +g78255 +S'this' +p78257 +tp78258 +a(g78255 +g78257 +S'period' +p78259 +tp78260 +a(g78257 +g78259 +S'are' +p78261 +tp78262 +a(g78259 +g78261 +S'the' +p78263 +tp78264 +a(g78261 +g78263 +S'bright-cut' +p78265 +tp78266 +a(g78263 +g78265 +S'bands' +p78267 +tp78268 +a(g78265 +g78267 +S'of' +p78269 +tp78270 +a(g78267 +g78269 +S'floral' +p78271 +tp78272 +a(g78269 +g78271 +S'swags' +p78273 +tp78274 +a(g78271 +g78273 +S'that' +p78275 +tp78276 +a(g78273 +g78275 +S'encircle' +p78277 +tp78278 +a(g78275 +g78277 +S'the' +p78279 +tp78280 +a(g78277 +g78279 +S'top' +p78281 +tp78282 +a(g78279 +g78281 +S'and' +p78283 +tp78284 +a(g78281 +g78283 +S'bottom' +p78285 +tp78286 +a(g78283 +g78285 +S'of' +p78287 +tp78288 +a(g78285 +g78287 +S'the' +p78289 +tp78290 +a(g78287 +g78289 +S'piece.' +p78291 +tp78292 +a(g78289 +g78291 +S'this' +p78293 +tp78294 +a(g78291 +g78293 +S'bright-cut' +p78295 +tp78296 +a(g78293 +g78295 +S'form' +p78297 +tp78298 +a(g78295 +g78297 +S'of' +p78299 +tp78300 +a(g78297 +g78299 +S'engraving,' +p78301 +tp78302 +a(g78299 +g78301 +S'achieved' +p78303 +tp78304 +a(g78301 +g78303 +S'by' +p78305 +tp78306 +a(g78303 +g78305 +S'using' +p78307 +tp78308 +a(g78305 +g78307 +S'a' +p78309 +tp78310 +a(g78307 +g78309 +S'small' +p78311 +tp78312 +a(g78309 +g78311 +S'gouge' +p78313 +tp78314 +a(g78311 +g78313 +S'to' +p78315 +tp78316 +a(g78313 +g78315 +S'chip-carve' +p78317 +tp78318 +a(g78315 +g78317 +S'the' +p78319 +tp78320 +a(g78317 +g78319 +S'decoration,' +p78321 +tp78322 +a(g78319 +g78321 +S'was' +p78323 +tp78324 +a(g78321 +g78323 +S'also' +p78325 +tp78326 +a(g78323 +g78325 +S'used' +p78327 +tp78328 +a(g78325 +g78327 +S'at' +p78329 +tp78330 +a(g78327 +g78329 +S'the' +p78331 +tp78332 +a(g78329 +g78331 +S'base' +p78333 +tp78334 +a(g78331 +g78333 +S'of' +p78335 +tp78336 +a(g78333 +g78335 +S'the' +p78337 +tp78338 +a(g78335 +g78337 +S'lid.' +p78339 +tp78340 +a(g78337 +g78339 +S'the' +p78341 +tp78342 +a(g78339 +g78341 +S'shape' +p78343 +tp78344 +a(g78341 +g78343 +S'of' +p78345 +tp78346 +a(g78343 +g78345 +S'the' +p78347 +tp78348 +a(g78345 +g78347 +S'wooden' +p78349 +tp78350 +a(g78347 +g78349 +S'scroll' +p78351 +tp78352 +a(g78349 +g78351 +S'handle' +p78353 +tp78354 +a(g78351 +g78353 +S'relates' +p78355 +tp78356 +a(g78353 +g78355 +S'to' +p78357 +tp78358 +a(g78355 +g78357 +S'the' +p78359 +tp78360 +a(g78357 +g78359 +S'undulating' +p78361 +tp78362 +a(g78359 +g78361 +S'surface' +p78363 +tp78364 +a(g78361 +g78363 +S'of' +p78365 +tp78366 +a(g78363 +g78365 +S'the' +p78367 +tp78368 +a(g78365 +g78367 +S'pot.' +p78369 +tp78370 +a(g78367 +g78369 +S'the' +p78371 +tp78372 +a(g78369 +g78371 +S'wooden' +p78373 +tp78374 +a(g78371 +g78373 +S'handle' +p78375 +tp78376 +a(g78373 +g78375 +S'protected' +p78377 +tp78378 +a(g78375 +g78377 +S'the' +p78379 +tp78380 +a(g78377 +g78379 +S'user' +p78381 +tp78382 +a(g78379 +g78381 +S'when' +p78383 +tp78384 +a(g78381 +g78383 +S'the' +p78385 +tp78386 +a(g78383 +g78385 +S'pot' +p78387 +tp78388 +a(g78385 +g78387 +S'was' +p78389 +tp78390 +a(g78387 +g78389 +S'filled' +p78391 +tp78392 +a(g78389 +g78391 +S'with' +p78393 +tp78394 +a(g78391 +g78393 +S'hot' +p78395 +tp78396 +a(g78393 +g78395 +S'tea.' +p78397 +tp78398 +a(g78395 +g78397 +S'a' +p78399 +tp78400 +a(g78397 +g78399 +S'love' +p78401 +tp78402 +a(g78399 +g78401 +S'of' +p78403 +tp78404 +a(g78401 +g78403 +S'embellishment' +p78405 +tp78406 +a(g78403 +g78405 +S'is' +p78407 +tp78408 +a(g78405 +g78407 +S'apparent' +p78409 +tp78410 +a(g78407 +g78409 +S'in' +p78411 +tp78412 +a(g78409 +g78411 +S'the' +p78413 +tp78414 +a(g78411 +g78413 +S'riding' +p78415 +tp78416 +a(g78413 +g78415 +S'gear' +p78417 +tp78418 +a(g78415 +g78417 +S'of' +p78419 +tp78420 +a(g78417 +g78419 +S'the' +p78421 +tp78422 +a(g78419 +g78421 +S'old' +p78423 +tp78424 +a(g78421 +g78423 +S'southwest,' +p78425 +tp78426 +a(g78423 +g78425 +S'including' +p78427 +tp78428 +a(g78425 +g78427 +S'everything' +p78429 +tp78430 +a(g78427 +g78429 +S'from' +p78431 +tp78432 +a(g78429 +g78431 +S'saddles' +p78433 +tp78434 +a(g78431 +g78433 +S'and' +p78435 +tp78436 +a(g78433 +g78435 +S'stirrups' +p78437 +tp78438 +a(g78435 +g78437 +S'to' +p78439 +tp78440 +a(g78437 +g78439 +S'bridles,' +p78441 +tp78442 +a(g78439 +g78441 +S'bits,' +p78443 +tp78444 +a(g78441 +g78443 +S'and' +p78445 +tp78446 +a(g78443 +g78445 +S'spurs.' +p78447 +tp78448 +a(g78445 +g78447 +S'the' +p78449 +tp78450 +a(g78447 +g78449 +S'materials' +p78451 +tp78452 +a(g78449 +g78451 +S'were' +p78453 +tp78454 +a(g78451 +g78453 +S'iron,' +p78455 +tp78456 +a(g78453 +g78455 +S'silver,' +p78457 +tp78458 +a(g78455 +g78457 +S'leather,' +p78459 +tp78460 +a(g78457 +g78459 +S'or' +p78461 +tp78462 +a(g78459 +g78461 +S'even' +p78463 +tp78464 +a(g78461 +g78463 +S'—' +p78465 +tp78466 +a(g78463 +g78465 +S'as' +p78467 +tp78468 +a(g78465 +g78467 +S'in' +p78469 +tp78470 +a(g78467 +g78469 +S'this' +p78471 +tp78472 +a(g78469 +g78471 +S"child's" +p78473 +tp78474 +a(g78471 +g78473 +S'sidesaddle' +p78475 +tp78476 +a(g78473 +g78475 +S'—' +p78477 +tp78478 +a(g78475 +g78477 +S'velvet' +p78479 +tp78480 +a(g78477 +g78479 +S'and' +p78481 +tp78482 +a(g78479 +g78481 +S'silk.' +p78483 +tp78484 +a(g78481 +g78483 +S'like' +p78485 +tp78486 +a(g78483 +g78485 +S'many' +p78487 +tp78488 +a(g78485 +g78487 +S'other' +p78489 +tp78490 +a(g78487 +g78489 +S'traditions' +p78491 +tp78492 +a(g78489 +g78491 +S'of' +p78493 +tp78494 +a(g78491 +g78493 +S'the' +p78495 +tp78496 +a(g78493 +g78495 +S'american' +p78497 +tp78498 +a(g78495 +g78497 +S'southwest,' +p78499 +tp78500 +a(g78497 +g78499 +S'this' +p78501 +tp78502 +a(g78499 +g78501 +S'craft' +p78503 +tp78504 +a(g78501 +g78503 +S'developed' +p78505 +tp78506 +a(g78503 +g78505 +S'from' +p78507 +tp78508 +a(g78505 +g78507 +S'mexican' +p78509 +tp78510 +a(g78507 +g78509 +S'practices' +p78511 +tp78512 +a(g78509 +g78511 +S'that' +p78513 +tp78514 +a(g78511 +g78513 +S'in' +p78515 +tp78516 +a(g78513 +g78515 +S'turn' +p78517 +tp78518 +a(g78515 +g78517 +S'had' +p78519 +tp78520 +a(g78517 +g78519 +S'their' +p78521 +tp78522 +a(g78519 +g78521 +S'origins' +p78523 +tp78524 +a(g78521 +g78523 +S'in' +p78525 +tp78526 +a(g78523 +g78525 +S'medieval' +p78527 +tp78528 +a(g78525 +g78527 +S'and' +p78529 +tp78530 +a(g78527 +g78529 +S'renaissance' +p78531 +tp78532 +a(g78529 +g78531 +S'spain.' +p78533 +tp78534 +a(g78531 +g78533 +S'this' +p78535 +tp78536 +a(g78533 +g78535 +S'saddle' +p78537 +tp78538 +a(g78535 +g78537 +S'is' +p78539 +tp78540 +a(g78537 +g78539 +S'a' +p78541 +tp78542 +a(g78539 +g78541 +S'particularly' +p78543 +tp78544 +a(g78541 +g78543 +S'handsome' +p78545 +tp78546 +a(g78543 +g78545 +S'piece.' +p78547 +tp78548 +a(g78545 +g78547 +S'it' +p78549 +tp78550 +a(g78547 +g78549 +S'was' +p78551 +tp78552 +a(g78549 +g78551 +S'made' +p78553 +tp78554 +a(g78551 +g78553 +S'about' +p78555 +tp78556 +a(g78553 +g78555 +S'1820' +p78557 +tp78558 +a(g78555 +g78557 +S'by' +p78559 +tp78560 +a(g78557 +g78559 +S'an' +p78561 +tp78562 +a(g78559 +g78561 +S'unknown' +p78563 +tp78564 +a(g78561 +g78563 +S'craftsman' +p78565 +tp78566 +a(g78563 +g78565 +S'in' +p78567 +tp78568 +a(g78565 +g78567 +S'monterey,' +p78569 +tp78570 +a(g78567 +g78569 +S'california.' +p78571 +tp78572 +a(g78569 +g78571 +S'the' +p78573 +tp78574 +a(g78571 +g78573 +S'designs' +p78575 +tp78576 +a(g78573 +g78575 +S'are' +p78577 +tp78578 +a(g78575 +g78577 +S'embroidered' +p78579 +tp78580 +a(g78577 +g78579 +S'in' +p78581 +tp78582 +a(g78579 +g78581 +S'silk' +p78583 +tp78584 +a(g78581 +g78583 +S'and' +p78585 +tp78586 +a(g78583 +g78585 +S'show' +p78587 +tp78588 +a(g78585 +g78587 +S'diana,' +p78589 +tp78590 +a(g78587 +g78589 +S'protectress' +p78591 +tp78592 +a(g78589 +g78591 +S'of' +p78593 +tp78594 +a(g78591 +g78593 +S'maidens,' +p78595 +tp78596 +a(g78593 +g78595 +S'in' +p78597 +tp78598 +a(g78595 +g78597 +S'a' +p78599 +tp78600 +a(g78597 +g78599 +S'chariot' +p78601 +tp78602 +a(g78599 +g78601 +S'drawn' +p78603 +tp78604 +a(g78601 +g78603 +S'by' +p78605 +tp78606 +a(g78603 +g78605 +S'two' +p78607 +tp78608 +a(g78605 +g78607 +S'goats,' +p78609 +tp78610 +a(g78607 +g78609 +S'and' +p78611 +tp78612 +a(g78609 +g78611 +S'cornucopias' +p78613 +tp78614 +a(g78611 +g78613 +S'—' +p78615 +tp78616 +a(g78613 +g78615 +S'attributes' +p78617 +tp78618 +a(g78615 +g78617 +S'identifying' +p78619 +tp78620 +a(g78617 +g78619 +S'the' +p78621 +tp78622 +a(g78619 +g78621 +S'goddess' +p78623 +tp78624 +a(g78621 +g78623 +S'with' +p78625 +tp78626 +a(g78623 +g78625 +S'fertility' +p78627 +tp78628 +a(g78625 +g78627 +S'rites' +p78629 +tp78630 +a(g78627 +g78629 +S'and' +p78631 +tp78632 +a(g78629 +g78631 +S'the' +p78633 +tp78634 +a(g78631 +g78633 +S'harvest.' +p78635 +tp78636 +a(g78633 +g78635 +S'the' +p78637 +tp78638 +a(g78635 +g78637 +S'seat' +p78639 +tp78640 +a(g78637 +g78639 +S'is' +p78641 +tp78642 +a(g78639 +g78641 +S'upholstered' +p78643 +tp78644 +a(g78641 +g78643 +S'in' +p78645 +tp78646 +a(g78643 +g78645 +S'padded' +p78647 +tp78648 +a(g78645 +g78647 +S'green' +p78649 +tp78650 +a(g78647 +g78649 +S'velvet.' +p78651 +tp78652 +a(g78649 +g78651 +S'in' +p78653 +tp78654 +a(g78651 +g78653 +S'this' +p78655 +tp78656 +a(g78653 +g78655 +S'inventive' +p78657 +tp78658 +a(g78655 +g78657 +S'interpretation' +p78659 +tp78660 +a(g78657 +g78659 +S'of' +p78661 +tp78662 +a(g78659 +g78661 +S'the' +p78663 +tp78664 +a(g78661 +g78663 +S'announcement' +p78665 +tp78666 +a(g78663 +g78665 +S'of' +p78667 +tp78668 +a(g78665 +g78667 +S"christ's" +p78669 +tp78670 +a(g78667 +g78669 +S'birth,' +p78671 +tp78672 +a(g78669 +g78671 +S'jacopo' +p78673 +tp78674 +a(g78671 +g78673 +S'bassano' +p78675 +tp78676 +a(g78673 +g78675 +S'merged' +p78677 +tp78678 +a(g78675 +g78677 +S'the' +p78679 +tp78680 +a(g78677 +g78679 +S'biblical' +p78681 +tp78682 +a(g78679 +g78681 +S'narrative' +p78683 +tp78684 +a(g78681 +g78683 +S'with' +p78685 +tp78686 +a(g78683 +g78685 +S'a' +p78687 +tp78688 +a(g78685 +g78687 +S'pastoral' +p78689 +tp78690 +a(g78687 +g78689 +S'scene.' +p78691 +tp78692 +a(g78689 +g78691 +S'rather' +p78693 +tp78694 +a(g78691 +g78693 +S'than' +p78695 +tp78696 +a(g78693 +g78695 +S'present' +p78697 +tp78698 +a(g78695 +g78697 +S'the' +p78699 +tp78700 +a(g78697 +g78699 +S'traditional' +p78701 +tp78702 +a(g78699 +g78701 +S'image' +p78703 +tp78704 +a(g78701 +g78703 +S'of' +p78705 +tp78706 +a(g78703 +g78705 +S'an' +p78707 +tp78708 +a(g78705 +g78707 +S'angel' +p78709 +tp78710 +a(g78707 +g78709 +S'appearing' +p78711 +tp78712 +a(g78709 +g78711 +S'before' +p78713 +tp78714 +a(g78711 +g78713 +S'three' +p78715 +tp78716 +a(g78713 +g78715 +S'shepherds' +p78717 +tp78718 +a(g78715 +g78717 +S'in' +p78719 +tp78720 +a(g78717 +g78719 +S'the' +p78721 +tp78722 +a(g78719 +g78721 +S'field,' +p78723 +tp78724 +a(g78721 +g78723 +S'the' +p78725 +tp78726 +a(g78723 +g78725 +S'miracle' +p78727 +tp78728 +a(g78725 +g78727 +S'is' +p78729 +tp78730 +a(g78727 +g78729 +S'here' +p78731 +tp78732 +a(g78729 +g78731 +S'experienced' +p78733 +tp78734 +a(g78731 +g78733 +S'by' +p78735 +tp78736 +a(g78733 +g78735 +S'a' +p78737 +tp78738 +a(g78735 +g78737 +S'family' +p78739 +tp78740 +a(g78737 +g78739 +S'group' +p78741 +tp78742 +a(g78739 +g78741 +S'placed' +p78743 +tp78744 +a(g78741 +g78743 +S'in' +p78745 +tp78746 +a(g78743 +g78745 +S'a' +p78747 +tp78748 +a(g78745 +g78747 +S'moonlit' +p78749 +tp78750 +a(g78747 +g78749 +S'landscape' +p78751 +tp78752 +a(g78749 +g78751 +S'that' +p78753 +tp78754 +a(g78751 +g78753 +S'recalls' +p78755 +tp78756 +a(g78753 +g78755 +S'the' +p78757 +tp78758 +a(g78755 +g78757 +S'mountainous' +p78759 +tp78760 +a(g78757 +g78759 +S'terrain' +p78761 +tp78762 +a(g78759 +g78761 +S'surrounding' +p78763 +tp78764 +a(g78761 +g78763 +S'the' +p78765 +tp78766 +a(g78763 +g78765 +S"artist's" +p78767 +tp78768 +a(g78765 +g78767 +S'native' +p78769 +tp78770 +a(g78767 +g78769 +S'town' +p78771 +tp78772 +a(g78769 +g78771 +S'of' +p78773 +tp78774 +a(g78771 +g78773 +S'bassano.' +p78775 +tp78776 +a(g78773 +g78775 +S'an' +p78777 +tp78778 +a(g78775 +g78777 +S'angel' +p78779 +tp78780 +a(g78777 +g78779 +S'descends' +p78781 +tp78782 +a(g78779 +g78781 +S'through' +p78783 +tp78784 +a(g78781 +g78783 +S'dark' +p78785 +tp78786 +a(g78783 +g78785 +S'clouds' +p78787 +tp78788 +a(g78785 +g78787 +S'in' +p78789 +tp78790 +a(g78787 +g78789 +S'a' +p78791 +tp78792 +a(g78789 +g78791 +S'flash' +p78793 +tp78794 +a(g78791 +g78793 +S'of' +p78795 +tp78796 +a(g78793 +g78795 +S'heavenly' +p78797 +tp78798 +a(g78795 +g78797 +S'light,' +p78799 +tp78800 +a(g78797 +g78799 +S'and' +p78801 +tp78802 +a(g78799 +g78801 +S'each' +p78803 +tp78804 +a(g78801 +g78803 +S'family' +p78805 +tp78806 +a(g78803 +g78805 +S'member' +p78807 +tp78808 +a(g78805 +g78807 +S'reacts' +p78809 +tp78810 +a(g78807 +g78809 +S'differently' +p78811 +tp78812 +a(g78809 +g78811 +S'to' +p78813 +tp78814 +a(g78811 +g78813 +S'the' +p78815 +tp78816 +a(g78813 +g78815 +S'presence' +p78817 +tp78818 +a(g78815 +g78817 +S'of' +p78819 +tp78820 +a(g78817 +g78819 +S'the' +p78821 +tp78822 +a(g78819 +g78821 +S'divine' +p78823 +tp78824 +a(g78821 +g78823 +S'messenger.' +p78825 +tp78826 +a(g78823 +g78825 +S'particularly' +p78827 +tp78828 +a(g78825 +g78827 +S'odd' +p78829 +tp78830 +a(g78827 +g78829 +S'is' +p78831 +tp78832 +a(g78829 +g78831 +S'the' +p78833 +tp78834 +a(g78831 +g78833 +S'inclusion' +p78835 +tp78836 +a(g78833 +g78835 +S'of' +p78837 +tp78838 +a(g78835 +g78837 +S'the' +p78839 +tp78840 +a(g78837 +g78839 +S'female' +p78841 +tp78842 +a(g78839 +g78841 +S'figure,' +p78843 +tp78844 +a(g78841 +g78843 +S'who' +p78845 +tp78846 +a(g78843 +g78845 +S'kneels' +p78847 +tp78848 +a(g78845 +g78847 +S'in' +p78849 +tp78850 +a(g78847 +g78849 +S'the' +p78851 +tp78852 +a(g78849 +g78851 +S'foreground' +p78853 +tp78854 +a(g78851 +g78853 +S'milking' +p78855 +tp78856 +a(g78853 +g78855 +S'a' +p78857 +tp78858 +a(g78855 +g78857 +S'cow.' +p78859 +tp78860 +a(g78857 +g78859 +S'unlike' +p78861 +tp78862 +a(g78859 +g78861 +S'the' +p78863 +tp78864 +a(g78861 +g78863 +S'bright' +p78865 +tp78866 +a(g78863 +g78865 +S'palette' +p78867 +tp78868 +a(g78865 +g78867 +S'and' +p78869 +tp78870 +a(g78867 +g78869 +S'tight' +p78871 +tp78872 +a(g78869 +g78871 +S'handling' +p78873 +tp78874 +a(g78871 +g78873 +S'of' +p78875 +tp78876 +a(g78873 +g78875 +S'paint' +p78877 +tp78878 +a(g78875 +g78877 +S'in' +p78879 +tp78880 +a(g78877 +g78879 +S'his' +p78881 +tp78882 +a(g78879 +g78881 +S'earlier' +p78883 +tp78884 +a(g78881 +g78883 +S'in' +p78885 +tp78886 +a(g78883 +g78885 +S'1939' +p78887 +tp78888 +a(g78885 +g78887 +S'the' +p78889 +tp78890 +a(g78887 +g78889 +S'saddle' +p78891 +tp78892 +a(g78889 +g78891 +S'blanket' +p78893 +tp78894 +a(g78891 +g78893 +S'portrayed' +p78895 +tp78896 +a(g78893 +g78895 +S'in' +p78897 +tp78898 +a(g78895 +g78897 +S'this' +p78899 +tp78900 +a(g78897 +g78899 +S'rendering' +p78901 +tp78902 +a(g78899 +g78901 +S'belonged' +p78903 +tp78904 +a(g78901 +g78903 +S'to' +p78905 +tp78906 +a(g78903 +g78905 +S'j.' +p78907 +tp78908 +a(g78905 +g78907 +S'g.' +p78909 +tp78910 +a(g78907 +g78909 +S'trescony,' +p78911 +tp78912 +a(g78909 +g78911 +S'owner' +p78913 +tp78914 +a(g78911 +g78913 +S'of' +p78915 +tp78916 +a(g78913 +g78915 +S'rancho' +p78917 +tp78918 +a(g78915 +g78917 +S'san' +p78919 +tp78920 +a(g78917 +g78919 +S'lucas' +p78921 +tp78922 +a(g78919 +g78921 +S'in' +p78923 +tp78924 +a(g78921 +g78923 +S'monterey' +p78925 +tp78926 +a(g78923 +g78925 +S'county,' +p78927 +tp78928 +a(g78925 +g78927 +S'california.' +p78929 +tp78930 +a(g78927 +g78929 +S'it' +p78931 +tp78932 +a(g78929 +g78931 +S'is' +p78933 +tp78934 +a(g78931 +g78933 +S'made' +p78935 +tp78936 +a(g78933 +g78935 +S'of' +p78937 +tp78938 +a(g78935 +g78937 +S'hand-spun' +p78939 +tp78940 +a(g78937 +g78939 +S'woolen' +p78941 +tp78942 +a(g78939 +g78941 +S'thread' +p78943 +tp78944 +a(g78941 +g78943 +S'dyed' +p78945 +tp78946 +a(g78943 +g78945 +S'with' +p78947 +tp78948 +a(g78945 +g78947 +S'native' +p78949 +tp78950 +a(g78947 +g78949 +S'dyes.' +p78951 +tp78952 +a(g78949 +g78951 +S'since' +p78953 +tp78954 +a(g78951 +g78953 +S'there' +p78955 +tp78956 +a(g78953 +g78955 +S'was' +p78957 +tp78958 +a(g78955 +g78957 +S'no' +p78959 +tp78960 +a(g78957 +g78959 +S'blanket-weaving' +p78961 +tp78962 +a(g78959 +g78961 +S'tradition' +p78963 +tp78964 +a(g78961 +g78963 +S'among' +p78965 +tp78966 +a(g78963 +g78965 +S'native' +p78967 +tp78968 +a(g78965 +g78967 +S'americans' +p78969 +tp78970 +a(g78967 +g78969 +S'in' +p78971 +tp78972 +a(g78969 +g78971 +S'california,' +p78973 +tp78974 +a(g78971 +g78973 +S'it' +p78975 +tp78976 +a(g78973 +g78975 +S'is' +p78977 +tp78978 +a(g78975 +g78977 +S'unlikely' +p78979 +tp78980 +a(g78977 +g78979 +S'that' +p78981 +tp78982 +a(g78979 +g78981 +S"trescony's" +p78983 +tp78984 +a(g78981 +g78983 +S'blanket' +p78985 +tp78986 +a(g78983 +g78985 +S'was' +p78987 +tp78988 +a(g78985 +g78987 +S'made' +p78989 +tp78990 +a(g78987 +g78989 +S'in' +p78991 +tp78992 +a(g78989 +g78991 +S'this' +p78993 +tp78994 +a(g78991 +g78993 +S'region.' +p78995 +tp78996 +a(g78993 +g78995 +S'it' +p78997 +tp78998 +a(g78995 +g78997 +S'seems' +p78999 +tp79000 +a(g78997 +g78999 +S'most' +p79001 +tp79002 +a(g78999 +g79001 +S'closely' +p79003 +tp79004 +a(g79001 +g79003 +S'related' +p79005 +tp79006 +a(g79003 +g79005 +S'to' +p79007 +tp79008 +a(g79005 +g79007 +S'a' +p79009 +tp79010 +a(g79007 +g79009 +S'hybrid' +p79011 +tp79012 +a(g79009 +g79011 +S'style' +p79013 +tp79014 +a(g79011 +g79013 +S'of' +p79015 +tp79016 +a(g79013 +g79015 +S'blanket-weaving' +p79017 +tp79018 +a(g79015 +g79017 +S'that' +p79019 +tp79020 +a(g79017 +g79019 +S'evolved' +p79021 +tp79022 +a(g79019 +g79021 +S'through' +p79023 +tp79024 +a(g79021 +g79023 +S'overlapping' +p79025 +tp79026 +a(g79023 +g79025 +S'traditions' +p79027 +tp79028 +a(g79025 +g79027 +S'among' +p79029 +tp79030 +a(g79027 +g79029 +S'indigenous' +p79031 +tp79032 +a(g79029 +g79031 +S'peoples' +p79033 +tp79034 +a(g79031 +g79033 +S'and' +p79035 +tp79036 +a(g79033 +g79035 +S'hispanic' +p79037 +tp79038 +a(g79035 +g79037 +S'settlers' +p79039 +tp79040 +a(g79037 +g79039 +S'in' +p79041 +tp79042 +a(g79039 +g79041 +S'northern' +p79043 +tp79044 +a(g79041 +g79043 +S'new' +p79045 +tp79046 +a(g79043 +g79045 +S'mexico,' +p79047 +tp79048 +a(g79045 +g79047 +S'along' +p79049 +tp79050 +a(g79047 +g79049 +S'with' +p79051 +tp79052 +a(g79049 +g79051 +S'significant' +p79053 +tp79054 +a(g79051 +g79053 +S'influence' +p79055 +tp79056 +a(g79053 +g79055 +S'from' +p79057 +tp79058 +a(g79055 +g79057 +S'mexico.' +p79059 +tp79060 +a(g79057 +g79059 +S'like' +p79061 +tp79062 +a(g79059 +g79061 +S'many' +p79063 +tp79064 +a(g79061 +g79063 +S'other' +p79065 +tp79066 +a(g79063 +g79065 +S'index' +p79067 +tp79068 +a(g79065 +g79067 +S'objects,' +p79069 +tp79070 +a(g79067 +g79069 +S'the' +p79071 +tp79072 +a(g79069 +g79071 +S'blanket' +p79073 +tp79074 +a(g79071 +g79073 +S'may' +p79075 +tp79076 +a(g79073 +g79075 +S'therefore' +p79077 +tp79078 +a(g79075 +g79077 +S'have' +p79079 +tp79080 +a(g79077 +g79079 +S'traveled' +p79081 +tp79082 +a(g79079 +g79081 +S'to' +p79083 +tp79084 +a(g79081 +g79083 +S'a' +p79085 +tp79086 +a(g79083 +g79085 +S'place' +p79087 +tp79088 +a(g79085 +g79087 +S'far' +p79089 +tp79090 +a(g79087 +g79089 +S'from' +p79091 +tp79092 +a(g79089 +g79091 +S'its' +p79093 +tp79094 +a(g79091 +g79093 +S'origin' +p79095 +tp79096 +a(g79093 +g79095 +S'by' +p79097 +tp79098 +a(g79095 +g79097 +S'the' +p79099 +tp79100 +a(g79097 +g79099 +S'time' +p79101 +tp79102 +a(g79099 +g79101 +S'it' +p79103 +tp79104 +a(g79101 +g79103 +S'was' +p79105 +tp79106 +a(g79103 +g79105 +S'rendered' +p79107 +tp79108 +a(g79105 +g79107 +S'in' +p79109 +tp79110 +a(g79107 +g79109 +S'the' +p79111 +tp79112 +a(g79109 +g79111 +S'1930s.' +p79113 +tp79114 +a(g79111 +g79113 +S'the' +p79115 +tp79116 +a(g79113 +g79115 +S'serrated' +p79117 +tp79118 +a(g79115 +g79117 +S'zig-zag' +p79119 +tp79120 +a(g79117 +g79119 +S'motif' +p79121 +tp79122 +a(g79119 +g79121 +S'in' +p79123 +tp79124 +a(g79121 +g79123 +S'this' +p79125 +tp79126 +a(g79123 +g79125 +S'rendering' +p79127 +tp79128 +a(g79125 +g79127 +S'probably' +p79129 +tp79130 +a(g79127 +g79129 +S'originated' +p79131 +tp79132 +a(g79129 +g79131 +S'in' +p79133 +tp79134 +a(g79131 +g79133 +S'central' +p79135 +tp79136 +a(g79133 +g79135 +S'or' +p79137 +tp79138 +a(g79135 +g79137 +S'northern' +p79139 +tp79140 +a(g79137 +g79139 +S'mexico' +p79141 +tp79142 +a(g79139 +g79141 +S'in' +p79143 +tp79144 +a(g79141 +g79143 +S'the' +p79145 +tp79146 +a(g79143 +g79145 +S'middle' +p79147 +tp79148 +a(g79145 +g79147 +S'of' +p79149 +tp79150 +a(g79147 +g79149 +S'the' +p79151 +tp79152 +a(g79149 +g79151 +S'nineteenth' +p79153 +tp79154 +a(g79151 +g79153 +S'century.' +p79155 +tp79156 +a(g79153 +g79155 +S'it' +p79157 +tp79158 +a(g79155 +g79157 +S'was' +p79159 +tp79160 +a(g79157 +g79159 +S'one' +p79161 +tp79162 +a(g79159 +g79161 +S'of' +p79163 +tp79164 +a(g79161 +g79163 +S'the' +p79165 +tp79166 +a(g79163 +g79165 +S'patterns' +p79167 +tp79168 +a(g79165 +g79167 +S'used' +p79169 +tp79170 +a(g79167 +g79169 +S'by' +p79171 +tp79172 +a(g79169 +g79171 +S'hispanic' +p79173 +tp79174 +a(g79171 +g79173 +S'mexican' +p79175 +tp79176 +a(g79173 +g79175 +S'weavers' +p79177 +tp79178 +a(g79175 +g79177 +S'for' +p79179 +tp79180 +a(g79177 +g79179 +S'an' +p79181 +tp79182 +a(g79179 +g79181 +S'intricately' +p79183 +tp79184 +a(g79181 +g79183 +S'woven,' +p79185 +tp79186 +a(g79183 +g79185 +S'splendidly' +p79187 +tp79188 +a(g79185 +g79187 +S'ornamented' +p79189 +tp79190 +a(g79187 +g79189 +S'garment' +p79191 +tp79192 +a(g79189 +g79191 +S'known' +p79193 +tp79194 +a(g79191 +g79193 +S'as' +p79195 +tp79196 +a(g79193 +g79195 +S'the' +p79197 +tp79198 +a(g79195 +g79197 +S'saltillo' +p79199 +tp79200 +a(g79197 +g79199 +S'serape.' +p79201 +tp79202 +a(g79199 +g79201 +S'this' +p79203 +tp79204 +a(g79201 +g79203 +S'pattern' +p79205 +tp79206 +a(g79203 +g79205 +S'was' +p79207 +tp79208 +a(g79205 +g79207 +S'then' +p79209 +tp79210 +a(g79207 +g79209 +S'used' +p79211 +tp79212 +a(g79209 +g79211 +S'by' +p79213 +tp79214 +a(g79211 +g79213 +S'new' +p79215 +tp79216 +a(g79213 +g79215 +S'mexican' +p79217 +tp79218 +a(g79215 +g79217 +S'weavers' +p79219 +tp79220 +a(g79217 +g79219 +S'in' +p79221 +tp79222 +a(g79219 +g79221 +S'the' +p79223 +tp79224 +a(g79221 +g79223 +S'mid-nineteenth' +p79225 +tp79226 +a(g79223 +g79225 +S'century.' +p79227 +tp79228 +a(g79225 +g79227 +S'both' +p79229 +tp79230 +a(g79227 +g79229 +S'hispanic' +p79231 +tp79232 +a(g79229 +g79231 +S'and' +p79233 +tp79234 +a(g79231 +g79233 +S'navajo' +p79235 +tp79236 +a(g79233 +g79235 +S'weavers' +p79237 +tp79238 +a(g79235 +g79237 +S'combined' +p79239 +tp79240 +a(g79237 +g79239 +S'zig-zags,' +p79241 +tp79242 +a(g79239 +g79241 +S'as' +p79243 +tp79244 +a(g79241 +g79243 +S'well' +p79245 +tp79246 +a(g79243 +g79245 +S'as' +p79247 +tp79248 +a(g79245 +g79247 +S'other' +p79249 +tp79250 +a(g79247 +g79249 +S'saltillo' +p79251 +tp79252 +a(g79249 +g79251 +S'patterns,' +p79253 +tp79254 +a(g79251 +g79253 +S'with' +p79255 +tp79256 +a(g79253 +g79255 +S'the' +p79257 +tp79258 +a(g79255 +g79257 +S'bands' +p79259 +tp79260 +a(g79257 +g79259 +S'of' +p79261 +tp79262 +a(g79259 +g79261 +S'plain' +p79263 +tp79264 +a(g79261 +g79263 +S'stripes' +p79265 +tp79266 +a(g79263 +g79265 +S'that' +p79267 +tp79268 +a(g79265 +g79267 +S'had' +p79269 +tp79270 +a(g79267 +g79269 +S'characterized' +p79271 +tp79272 +a(g79269 +g79271 +S'an' +p79273 +tp79274 +a(g79271 +g79273 +S'earlier,' +p79275 +tp79276 +a(g79273 +g79275 +S'simpler' +p79277 +tp79278 +a(g79275 +g79277 +S'blanket' +p79279 +tp79280 +a(g79277 +g79279 +S'style.' +p79281 +tp79282 +a(g79279 +g79281 +S'the' +p79283 +tp79284 +a(g79281 +g79283 +S'design' +p79285 +tp79286 +a(g79283 +g79285 +S'of' +p79287 +tp79288 +a(g79285 +g79287 +S'the' +p79289 +tp79290 +a(g79287 +g79289 +S'saddle' +p79291 +tp79292 +a(g79289 +g79291 +S'blanket' +p79293 +tp79294 +a(g79291 +g79293 +S'in' +p79295 +tp79296 +a(g79293 +g79295 +S'ethel' +p79297 +tp79298 +a(g79295 +g79297 +S"dougan's" +p79299 +tp79300 +a(g79297 +g79299 +S'rendering' +p79301 +tp79302 +a(g79299 +g79301 +S'may' +p79303 +tp79304 +a(g79301 +g79303 +S'have' +p79305 +tp79306 +a(g79303 +g79305 +S'resulted' +p79307 +tp79308 +a(g79305 +g79307 +S'from' +p79309 +tp79310 +a(g79307 +g79309 +S'this' +p79311 +tp79312 +a(g79309 +g79311 +S'particular' +p79313 +tp79314 +a(g79311 +g79313 +S'pairing' +p79315 +tp79316 +a(g79313 +g79315 +S'of' +p79317 +tp79318 +a(g79315 +g79317 +S'designs.' +p79319 +tp79320 +a(g79317 +g79319 +S'this' +p79321 +tp79322 +a(g79319 +g79321 +S'may' +p79323 +tp79324 +a(g79321 +g79323 +S'be' +p79325 +tp79326 +a(g79323 +g79325 +S'the' +p79327 +tp79328 +a(g79325 +g79327 +S'last' +p79329 +tp79330 +a(g79327 +g79329 +S'work' +p79331 +tp79332 +a(g79329 +g79331 +S'raphael' +p79333 +tp79334 +a(g79331 +g79333 +S'painted' +p79335 +tp79336 +a(g79333 +g79335 +S'in' +p79337 +tp79338 +a(g79335 +g79337 +S'florence' +p79339 +tp79340 +a(g79337 +g79339 +S'before' +p79341 +tp79342 +a(g79339 +g79341 +S'he' +p79343 +tp79344 +a(g79341 +g79343 +S'left' +p79345 +tp79346 +a(g79343 +g79345 +S'for' +p79347 +tp79348 +a(g79345 +g79347 +S'rome.' +p79349 +tp79350 +a(g79347 +g79349 +S'it' +p79351 +tp79352 +a(g79349 +g79351 +S'is' +p79353 +tp79354 +a(g79351 +g79353 +S'more' +p79355 +tp79356 +a(g79353 +g79355 +S'complex' +p79357 +tp79358 +a(g79355 +g79357 +S'than' +p79359 +tp79360 +a(g79357 +g79359 +S'the' +p79361 +tp79362 +a(g79359 +g79361 +S'in' +p79363 +tp79364 +a(g79361 +g79363 +S"raphael's" +p79365 +tp79366 +a(g79363 +g79365 +S'teakettles' +p79367 +tp79368 +a(g79365 +g79367 +S'were' +p79369 +tp79370 +a(g79367 +g79369 +S'the' +p79371 +tp79372 +a(g79369 +g79371 +S'most' +p79373 +tp79374 +a(g79371 +g79373 +S'popular' +p79375 +tp79376 +a(g79373 +g79375 +S'items' +p79377 +tp79378 +a(g79375 +g79377 +S'made' +p79379 +tp79380 +a(g79377 +g79379 +S'of' +p79381 +tp79382 +a(g79379 +g79381 +S'copper.' +p79383 +tp79384 +a(g79381 +g79383 +S'domestic' +p79385 +tp79386 +a(g79383 +g79385 +S'copperware' +p79387 +tp79388 +a(g79385 +g79387 +S'was' +p79389 +tp79390 +a(g79387 +g79389 +S'scarce' +p79391 +tp79392 +a(g79389 +g79391 +S'during' +p79393 +tp79394 +a(g79391 +g79393 +S'british' +p79395 +tp79396 +a(g79393 +g79395 +S'colonial' +p79397 +tp79398 +a(g79395 +g79397 +S'rule' +p79399 +tp79400 +a(g79397 +g79399 +S'because' +p79401 +tp79402 +a(g79399 +g79401 +S'the' +p79403 +tp79404 +a(g79401 +g79403 +S'smelting' +p79405 +tp79406 +a(g79403 +g79405 +S'of' +p79407 +tp79408 +a(g79405 +g79407 +S'copper' +p79409 +tp79410 +a(g79407 +g79409 +S'ore' +p79411 +tp79412 +a(g79409 +g79411 +S'was' +p79413 +tp79414 +a(g79411 +g79413 +S'restricted.' +p79415 +tp79416 +a(g79413 +g79415 +S'but,' +p79417 +tp79418 +a(g79415 +g79417 +S'as' +p79419 +tp79420 +a(g79417 +g79419 +S'the' +p79421 +tp79422 +a(g79419 +g79421 +S'number' +p79423 +tp79424 +a(g79421 +g79423 +S'of' +p79425 +tp79426 +a(g79423 +g79425 +S'facilities' +p79427 +tp79428 +a(g79425 +g79427 +S'for' +p79429 +tp79430 +a(g79427 +g79429 +S'the' +p79431 +tp79432 +a(g79429 +g79431 +S'production' +p79433 +tp79434 +a(g79431 +g79433 +S'of' +p79435 +tp79436 +a(g79433 +g79435 +S'sheet' +p79437 +tp79438 +a(g79435 +g79437 +S'copper' +p79439 +tp79440 +a(g79437 +g79439 +S'increased,' +p79441 +tp79442 +a(g79439 +g79441 +S'coppersmiths' +p79443 +tp79444 +a(g79441 +g79443 +S'produced' +p79445 +tp79446 +a(g79443 +g79445 +S'greater' +p79447 +tp79448 +a(g79445 +g79447 +S'varieties' +p79449 +tp79450 +a(g79447 +g79449 +S'of' +p79451 +tp79452 +a(g79449 +g79451 +S'household' +p79453 +tp79454 +a(g79451 +g79453 +S'utensils.' +p79455 +tp79456 +a(g79453 +g79455 +S'this' +p79457 +tp79458 +a(g79455 +g79457 +S'kettle,' +p79459 +tp79460 +a(g79457 +g79459 +S'dated' +p79461 +tp79462 +a(g79459 +g79461 +S'1799,' +p79463 +tp79464 +a(g79461 +g79463 +S'was' +p79465 +tp79466 +a(g79463 +g79465 +S'made' +p79467 +tp79468 +a(g79465 +g79467 +S'by' +p79469 +tp79470 +a(g79467 +g79469 +S'shaping' +p79471 +tp79472 +a(g79469 +g79471 +S'a' +p79473 +tp79474 +a(g79471 +g79473 +S'copper' +p79475 +tp79476 +a(g79473 +g79475 +S'sheet' +p79477 +tp79478 +a(g79475 +g79477 +S'into' +p79479 +tp79480 +a(g79477 +g79479 +S'a' +p79481 +tp79482 +a(g79479 +g79481 +S'cylinder' +p79483 +tp79484 +a(g79481 +g79483 +S'and' +p79485 +tp79486 +a(g79483 +g79485 +S'then' +p79487 +tp79488 +a(g79485 +g79487 +S'hammering' +p79489 +tp79490 +a(g79487 +g79489 +S'the' +p79491 +tp79492 +a(g79489 +g79491 +S'metal' +p79493 +tp79494 +a(g79491 +g79493 +S'to' +p79495 +tp79496 +a(g79493 +g79495 +S'the' +p79497 +tp79498 +a(g79495 +g79497 +S'desired' +p79499 +tp79500 +a(g79497 +g79499 +S'form.' +p79501 +tp79502 +a(g79499 +g79501 +S'although' +p79503 +tp79504 +a(g79501 +g79503 +S'the' +p79505 +tp79506 +a(g79503 +g79505 +S'design' +p79507 +tp79508 +a(g79505 +g79507 +S'of' +p79509 +tp79510 +a(g79507 +g79509 +S'copper' +p79511 +tp79512 +a(g79509 +g79511 +S'teakettles' +p79513 +tp79514 +a(g79511 +g79513 +S'was' +p79515 +tp79516 +a(g79513 +g79515 +S'derived' +p79517 +tp79518 +a(g79515 +g79517 +S'from' +p79519 +tp79520 +a(g79517 +g79519 +S'european' +p79521 +tp79522 +a(g79519 +g79521 +S'sources,' +p79523 +tp79524 +a(g79521 +g79523 +S'the' +p79525 +tp79526 +a(g79523 +g79525 +S'outward' +p79527 +tp79528 +a(g79525 +g79527 +S'flare' +p79529 +tp79530 +a(g79527 +g79529 +S'of' +p79531 +tp79532 +a(g79529 +g79531 +S'the' +p79533 +tp79534 +a(g79531 +g79533 +S'body' +p79535 +tp79536 +a(g79533 +g79535 +S'is' +p79537 +tp79538 +a(g79535 +g79537 +S'distinctly' +p79539 +tp79540 +a(g79537 +g79539 +S'american.' +p79541 +tp79542 +a(g79539 +g79541 +S'the' +p79543 +tp79544 +a(g79541 +g79543 +S'curve' +p79545 +tp79546 +a(g79543 +g79545 +S'of' +p79547 +tp79548 +a(g79545 +g79547 +S'the' +p79549 +tp79550 +a(g79547 +g79549 +S'handle,' +p79551 +tp79552 +a(g79549 +g79551 +S'and' +p79553 +tp79554 +a(g79551 +g79553 +S'domed' +p79555 +tp79556 +a(g79553 +g79555 +S'lid,' +p79557 +tp79558 +a(g79555 +g79557 +S'and' +p79559 +tp79560 +a(g79557 +g79559 +S'the' +p79561 +tp79562 +a(g79559 +g79561 +S'roundness' +p79563 +tp79564 +a(g79561 +g79563 +S'of' +p79565 +tp79566 +a(g79563 +g79565 +S'the' +p79567 +tp79568 +a(g79565 +g79567 +S"kettle's" +p79569 +tp79570 +a(g79567 +g79569 +S'body' +p79571 +tp79572 +a(g79569 +g79571 +S'are' +p79573 +tp79574 +a(g79571 +g79573 +S'in' +p79575 +tp79576 +a(g79573 +g79575 +S'contrast' +p79577 +tp79578 +a(g79575 +g79577 +S'with' +p79579 +tp79580 +a(g79577 +g79579 +S'the' +p79581 +tp79582 +a(g79579 +g79581 +S'sleek' +p79583 +tp79584 +a(g79581 +g79583 +S'appearance' +p79585 +tp79586 +a(g79583 +g79585 +S'of' +p79587 +tp79588 +a(g79585 +g79587 +S'the' +p79589 +tp79590 +a(g79587 +g79589 +S'gooseneck' +p79591 +tp79592 +a(g79589 +g79591 +S'spout.' +p79593 +tp79594 +a(g79591 +g79593 +S'coppersmiths' +p79595 +tp79596 +a(g79593 +g79595 +S'were' +p79597 +tp79598 +a(g79595 +g79597 +S'skilled' +p79599 +tp79600 +a(g79597 +g79599 +S'at' +p79601 +tp79602 +a(g79599 +g79601 +S'their' +p79603 +tp79604 +a(g79601 +g79603 +S'craft' +p79605 +tp79606 +a(g79603 +g79605 +S'and' +p79607 +tp79608 +a(g79605 +g79607 +S'often' +p79609 +tp79610 +a(g79607 +g79609 +S'signed' +p79611 +tp79612 +a(g79609 +g79611 +S'their' +p79613 +tp79614 +a(g79611 +g79613 +S'works.' +p79615 +tp79616 +a(g79613 +g79615 +S'the' +p79617 +tp79618 +a(g79615 +g79617 +S'flat' +p79619 +tp79620 +a(g79617 +g79619 +S'handle' +p79621 +tp79622 +a(g79619 +g79621 +S'of' +p79623 +tp79624 +a(g79621 +g79623 +S'the' +p79625 +tp79626 +a(g79623 +g79625 +S'teakettle' +p79627 +tp79628 +a(g79625 +g79627 +S'provided' +p79629 +tp79630 +a(g79627 +g79629 +S'a' +p79631 +tp79632 +a(g79629 +g79631 +S'convenient' +p79633 +tp79634 +a(g79631 +g79633 +S'surface' +p79635 +tp79636 +a(g79633 +g79635 +S'for' +p79637 +tp79638 +a(g79635 +g79637 +S'the' +p79639 +tp79640 +a(g79637 +g79639 +S"craftsman's" +p79641 +tp79642 +a(g79639 +g79641 +S'mark.' +p79643 +tp79644 +a(g79641 +g79643 +S'this' +p79645 +tp79646 +a(g79643 +g79645 +S'kettle' +p79647 +tp79648 +a(g79645 +g79647 +S'is' +p79649 +tp79650 +a(g79647 +g79649 +S'unmarked' +p79651 +tp79652 +a(g79649 +g79651 +S'but' +p79653 +tp79654 +a(g79651 +g79653 +S'has' +p79655 +tp79656 +a(g79653 +g79655 +S'been' +p79657 +tp79658 +a(g79655 +g79657 +S'engraved' +p79659 +tp79660 +a(g79657 +g79659 +S'instead' +p79661 +tp79662 +a(g79659 +g79661 +S'with' +p79663 +tp79664 +a(g79661 +g79663 +S'the' +p79665 +tp79666 +a(g79663 +g79665 +S'names' +p79667 +tp79668 +a(g79665 +g79667 +S'of' +p79669 +tp79670 +a(g79667 +g79669 +S'its' +p79671 +tp79672 +a(g79669 +g79671 +S'owners' +p79673 +tp79674 +a(g79671 +g79673 +S'and' +p79675 +tp79676 +a(g79673 +g79675 +S'their' +p79677 +tp79678 +a(g79675 +g79677 +S'birth' +p79679 +tp79680 +a(g79677 +g79679 +S'and' +p79681 +tp79682 +a(g79679 +g79681 +S'death' +p79683 +tp79684 +a(g79681 +g79683 +S'dates.' +p79685 +tp79686 +a(g79683 +g79685 +S'doll' +p79687 +tp79688 +a(g79685 +g79687 +S'furniture' +p79689 +tp79690 +a(g79687 +g79689 +S'and' +p79691 +tp79692 +a(g79689 +g79691 +S'accessories' +p79693 +tp79694 +a(g79691 +g79693 +S'must' +p79695 +tp79696 +a(g79693 +g79695 +S'be' +p79697 +tp79698 +a(g79695 +g79697 +S'included' +p79699 +tp79700 +a(g79697 +g79699 +S'among' +p79701 +tp79702 +a(g79699 +g79701 +S'the' +p79703 +tp79704 +a(g79701 +g79703 +S'toy' +p79705 +tp79706 +a(g79703 +g79705 +S'replicas' +p79707 +tp79708 +a(g79705 +g79707 +S'of' +p79709 +tp79710 +a(g79707 +g79709 +S'the' +p79711 +tp79712 +a(g79709 +g79711 +S'adult' +p79713 +tp79714 +a(g79711 +g79713 +S'world.' +p79715 +tp79716 +a(g79713 +g79715 +S'this' +p79717 +tp79718 +a(g79715 +g79717 +S'doll' +p79719 +tp79720 +a(g79717 +g79719 +S'buggy,' +p79721 +tp79722 +a(g79719 +g79721 +S'of' +p79723 +tp79724 +a(g79721 +g79723 +S'about' +p79725 +tp79726 +a(g79723 +g79725 +S'1867,' +p79727 +tp79728 +a(g79725 +g79727 +S'is' +p79729 +tp79730 +a(g79727 +g79729 +S'made' +p79731 +tp79732 +a(g79729 +g79731 +S'of' +p79733 +tp79734 +a(g79731 +g79733 +S'wood' +p79735 +tp79736 +a(g79733 +g79735 +S'and' +p79737 +tp79738 +a(g79735 +g79737 +S'is' +p79739 +tp79740 +a(g79737 +g79739 +S'styled' +p79741 +tp79742 +a(g79739 +g79741 +S'like' +p79743 +tp79744 +a(g79741 +g79743 +S'a' +p79745 +tp79746 +a(g79743 +g79745 +S'cabriolet,' +p79747 +tp79748 +a(g79745 +g79747 +S'or' +p79749 +tp79750 +a(g79747 +g79749 +S'horse' +p79751 +tp79752 +a(g79749 +g79751 +S'carriage.' +p79753 +tp79754 +a(g79751 +g79753 +S'the' +p79755 +tp79756 +a(g79753 +g79755 +S'hood,' +p79757 +tp79758 +a(g79755 +g79757 +S'or' +p79759 +tp79760 +a(g79757 +g79759 +S'calash,' +p79761 +tp79762 +a(g79759 +g79761 +S'is' +p79763 +tp79764 +a(g79761 +g79763 +S'fringed.' +p79765 +tp79766 +a(g79763 +g79765 +S'toleware' +p79767 +tp79768 +a(g79765 +g79767 +S'is' +p79769 +tp79770 +a(g79767 +g79769 +S'painted' +p79771 +tp79772 +a(g79769 +g79771 +S'tinplate.' +p79773 +tp79774 +a(g79771 +g79773 +S'also' +p79775 +tp79776 +a(g79773 +g79775 +S'called' +p79777 +tp79778 +a(g79775 +g79777 +S'"japanned-ware,"' +p79779 +tp79780 +a(g79777 +g79779 +S'it' +p79781 +tp79782 +a(g79779 +g79781 +S'originated' +p79783 +tp79784 +a(g79781 +g79783 +S'in' +p79785 +tp79786 +a(g79783 +g79785 +S'the' +p79787 +tp79788 +a(g79785 +g79787 +S'orient,' +p79789 +tp79790 +a(g79787 +g79789 +S'spread' +p79791 +tp79792 +a(g79789 +g79791 +S'to' +p79793 +tp79794 +a(g79791 +g79793 +S'europe,' +p79795 +tp79796 +a(g79793 +g79795 +S'and' +p79797 +tp79798 +a(g79795 +g79797 +S'then' +p79799 +tp79800 +a(g79797 +g79799 +S'to' +p79801 +tp79802 +a(g79799 +g79801 +S'america,' +p79803 +tp79804 +a(g79801 +g79803 +S'where' +p79805 +tp79806 +a(g79803 +g79805 +S'its' +p79807 +tp79808 +a(g79805 +g79807 +S'height' +p79809 +tp79810 +a(g79807 +g79809 +S'of' +p79811 +tp79812 +a(g79809 +g79811 +S'popularity' +p79813 +tp79814 +a(g79811 +g79813 +S'was' +p79815 +tp79816 +a(g79813 +g79815 +S'reached' +p79817 +tp79818 +a(g79815 +g79817 +S'in' +p79819 +tp79820 +a(g79817 +g79819 +S'the' +p79821 +tp79822 +a(g79819 +g79821 +S'nineteenth' +p79823 +tp79824 +a(g79821 +g79823 +S'century.' +p79825 +tp79826 +a(g79823 +g79825 +S'because' +p79827 +tp79828 +a(g79825 +g79827 +S'toleware' +p79829 +tp79830 +a(g79827 +g79829 +S'was' +p79831 +tp79832 +a(g79829 +g79831 +S'prized' +p79833 +tp79834 +a(g79831 +g79833 +S'for' +p79835 +tp79836 +a(g79833 +g79835 +S'its' +p79837 +tp79838 +a(g79835 +g79837 +S'decoration,' +p79839 +tp79840 +a(g79837 +g79839 +S'it' +p79841 +tp79842 +a(g79839 +g79841 +S'was' +p79843 +tp79844 +a(g79841 +g79843 +S'often' +p79845 +tp79846 +a(g79843 +g79845 +S'presented' +p79847 +tp79848 +a(g79845 +g79847 +S'as' +p79849 +tp79850 +a(g79847 +g79849 +S'a' +p79851 +tp79852 +a(g79849 +g79851 +S'wedding' +p79853 +tp79854 +a(g79851 +g79853 +S'or' +p79855 +tp79856 +a(g79853 +g79855 +S'birthday' +p79857 +tp79858 +a(g79855 +g79857 +S'gift' +p79859 +tp79860 +a(g79857 +g79859 +S'and' +p79861 +tp79862 +a(g79859 +g79861 +S'reserved' +p79863 +tp79864 +a(g79861 +g79863 +S'for' +p79865 +tp79866 +a(g79863 +g79865 +S'display.' +p79867 +tp79868 +a(g79865 +g79867 +S'like' +p79869 +tp79870 +a(g79867 +g79869 +S'this' +p79871 +tp79872 +a(g79869 +g79871 +S'box,' +p79873 +tp79874 +a(g79871 +g79873 +S'toleware' +p79875 +tp79876 +a(g79873 +g79875 +S'was' +p79877 +tp79878 +a(g79875 +g79877 +S'generally' +p79879 +tp79880 +a(g79877 +g79879 +S'painted' +p79881 +tp79882 +a(g79879 +g79881 +S'with' +p79883 +tp79884 +a(g79881 +g79883 +S'a' +p79885 +tp79886 +a(g79883 +g79885 +S'black' +p79887 +tp79888 +a(g79885 +g79887 +S'asphaltum' +p79889 +tp79890 +a(g79887 +g79889 +S'varnish' +p79891 +tp79892 +a(g79889 +g79891 +S'that' +p79893 +tp79894 +a(g79891 +g79893 +S'imitated' +p79895 +tp79896 +a(g79893 +g79895 +S'lacquer.' +p79897 +tp79898 +a(g79895 +g79897 +S'the' +p79899 +tp79900 +a(g79897 +g79899 +S'decoration' +p79901 +tp79902 +a(g79899 +g79901 +S'was' +p79903 +tp79904 +a(g79901 +g79903 +S'executed' +p79905 +tp79906 +a(g79903 +g79905 +S'with' +p79907 +tp79908 +a(g79905 +g79907 +S'oil' +p79909 +tp79910 +a(g79907 +g79909 +S'paint' +p79911 +tp79912 +a(g79909 +g79911 +S'in' +p79913 +tp79914 +a(g79911 +g79913 +S'bright' +p79915 +tp79916 +a(g79913 +g79915 +S'yellow,' +p79917 +tp79918 +a(g79915 +g79917 +S'greens,' +p79919 +tp79920 +a(g79917 +g79919 +S'blues,' +p79921 +tp79922 +a(g79919 +g79921 +S'and' +p79923 +tp79924 +a(g79921 +g79923 +S'oranges.' +p79925 +tp79926 +a(g79923 +g79925 +S'fruits,' +p79927 +tp79928 +a(g79925 +g79927 +S'flowers,' +p79929 +tp79930 +a(g79927 +g79929 +S'and' +p79931 +tp79932 +a(g79929 +g79931 +S'ornamental' +p79933 +tp79934 +a(g79931 +g79933 +S'swirls' +p79935 +tp79936 +a(g79933 +g79935 +S'provided' +p79937 +tp79938 +a(g79935 +g79937 +S'common' +p79939 +tp79940 +a(g79937 +g79939 +S'motifs.' +p79941 +tp79942 +a(g79939 +g79941 +S'this' +p79943 +tp79944 +a(g79941 +g79943 +S'document' +p79945 +tp79946 +a(g79943 +g79945 +S'box' +p79947 +tp79948 +a(g79945 +g79947 +S'was' +p79949 +tp79950 +a(g79947 +g79949 +S'a' +p79951 +tp79952 +a(g79949 +g79951 +S'type' +p79953 +tp79954 +a(g79951 +g79953 +S'used' +p79955 +tp79956 +a(g79953 +g79955 +S'for' +p79957 +tp79958 +a(g79955 +g79957 +S'string' +p79959 +tp79960 +a(g79957 +g79959 +S'money,' +p79961 +tp79962 +a(g79959 +g79961 +S'jewels,' +p79963 +tp79964 +a(g79961 +g79963 +S'and' +p79965 +tp79966 +a(g79963 +g79965 +S'valuable' +p79967 +tp79968 +a(g79965 +g79967 +S'papers.' +p79969 +tp79970 +a(g79967 +g79969 +S'it' +p79971 +tp79972 +a(g79969 +g79971 +S'was' +p79973 +tp79974 +a(g79971 +g79973 +S'probably' +p79975 +tp79976 +a(g79973 +g79975 +S'made' +p79977 +tp79978 +a(g79975 +g79977 +S'in' +p79979 +tp79980 +a(g79977 +g79979 +S'the' +p79981 +tp79982 +a(g79979 +g79981 +S'early' +p79983 +tp79984 +a(g79981 +g79983 +S'nineteenth' +p79985 +tp79986 +a(g79983 +g79985 +S'century' +p79987 +tp79988 +a(g79985 +g79987 +S'at' +p79989 +tp79990 +a(g79987 +g79989 +S'stevens' +p79991 +tp79992 +a(g79989 +g79991 +S'plains,' +p79993 +tp79994 +a(g79991 +g79993 +S'maine,' +p79995 +tp79996 +a(g79993 +g79995 +S'a' +p79997 +tp79998 +a(g79995 +g79997 +S'center' +p79999 +tp80000 +a(g79997 +g79999 +S'for' +p80001 +tp80002 +a(g79999 +g80001 +S'toleware' +p80003 +tp80004 +a(g80001 +g80003 +S'manufacture' +p80005 +tp80006 +a(g80003 +g80005 +S'in' +p80007 +tp80008 +a(g80005 +g80007 +S'that' +p80009 +tp80010 +a(g80007 +g80009 +S'period.' +p80011 +tp80012 +a(g80009 +g80011 +S'the' +p80013 +tp80014 +a(g80011 +g80013 +S'box' +p80015 +tp80016 +a(g80013 +g80015 +S'is' +p80017 +tp80018 +a(g80015 +g80017 +S'painted' +p80019 +tp80020 +a(g80017 +g80019 +S'with' +p80021 +tp80022 +a(g80019 +g80021 +S'asphaltum' +p80023 +tp80024 +a(g80021 +g80023 +S'and' +p80025 +tp80026 +a(g80023 +g80025 +S'decorated' +p80027 +tp80028 +a(g80025 +g80027 +S'with' +p80029 +tp80030 +a(g80027 +g80029 +S'a' +p80031 +tp80032 +a(g80029 +g80031 +S'type' +p80033 +tp80034 +a(g80031 +g80033 +S'of' +p80035 +tp80036 +a(g80033 +g80035 +S'oil' +p80037 +tp80038 +a(g80035 +g80037 +S'color' +p80039 +tp80040 +a(g80037 +g80039 +S'associated' +p80041 +tp80042 +a(g80039 +g80041 +S'connecticut' +p80043 +tp80044 +a(g80041 +g80043 +S'jappaners.' +p80045 +tp80046 +a(g80043 +g80045 +S'the' +p80047 +tp80048 +a(g80045 +g80047 +S'box' +p80049 +tp80050 +a(g80047 +g80049 +S'has' +p80051 +tp80052 +a(g80049 +g80051 +S'been' +p80053 +tp80054 +a(g80051 +g80053 +S'attributed' +p80055 +tp80056 +a(g80053 +g80055 +S'to' +p80057 +tp80058 +a(g80055 +g80057 +S'oliver' +p80059 +tp80060 +a(g80057 +g80059 +S'buckley,' +p80061 +tp80062 +a(g80059 +g80061 +S'a' +p80063 +tp80064 +a(g80061 +g80063 +S'japanner' +p80065 +tp80066 +a(g80063 +g80065 +S'who' +p80067 +tp80068 +a(g80065 +g80067 +S'was' +p80069 +tp80070 +a(g80067 +g80069 +S'trained' +p80071 +tp80072 +a(g80069 +g80071 +S'in' +p80073 +tp80074 +a(g80071 +g80073 +S'connecticut' +p80075 +tp80076 +a(g80073 +g80075 +S'and' +p80077 +tp80078 +a(g80075 +g80077 +S'settled' +p80079 +tp80080 +a(g80077 +g80079 +S'in' +p80081 +tp80082 +a(g80079 +g80081 +S'stevens' +p80083 +tp80084 +a(g80081 +g80083 +S'plains.' +p80085 +tp80086 +a(g80083 +g80085 +S'his' +p80087 +tp80088 +a(g80085 +g80087 +S'designs' +p80089 +tp80090 +a(g80087 +g80089 +S'usually' +p80091 +tp80092 +a(g80089 +g80091 +S'feature' +p80093 +tp80094 +a(g80091 +g80093 +S'a' +p80095 +tp80096 +a(g80093 +g80095 +S'round' +p80097 +tp80098 +a(g80095 +g80097 +S'spot' +p80099 +tp80100 +a(g80097 +g80099 +S'of' +p80101 +tp80102 +a(g80099 +g80101 +S'orange' +p80103 +tp80104 +a(g80101 +g80103 +S'with' +p80105 +tp80106 +a(g80103 +g80105 +S'brushstrokes' +p80107 +tp80108 +a(g80105 +g80107 +S'overlaid.' +p80109 +tp80110 +a(g80107 +g80109 +S'leaf' +p80111 +tp80112 +a(g80109 +g80111 +S'forms' +p80113 +tp80114 +a(g80111 +g80113 +S'fill' +p80115 +tp80116 +a(g80113 +g80115 +S'the' +p80117 +tp80118 +a(g80115 +g80117 +S'areas' +p80119 +tp80120 +a(g80117 +g80119 +S'between' +p80121 +tp80122 +a(g80119 +g80121 +S'spots.' +p80123 +tp80124 +a(g80121 +g80123 +S'the' +p80125 +tp80126 +a(g80123 +g80125 +S'handle' +p80127 +tp80128 +a(g80125 +g80127 +S'of' +p80129 +tp80130 +a(g80127 +g80129 +S'the' +p80131 +tp80132 +a(g80129 +g80131 +S'box' +p80133 +tp80134 +a(g80131 +g80133 +S'is' +p80135 +tp80136 +a(g80133 +g80135 +S'made' +p80137 +tp80138 +a(g80135 +g80137 +S'of' +p80139 +tp80140 +a(g80137 +g80139 +S'cast' +p80141 +tp80142 +a(g80139 +g80141 +S'brass' +p80143 +tp80144 +a(g80141 +g80143 +S'and' +p80145 +tp80146 +a(g80143 +g80145 +S'is' +p80147 +tp80148 +a(g80145 +g80147 +S'bolted' +p80149 +tp80150 +a(g80147 +g80149 +S'to' +p80151 +tp80152 +a(g80149 +g80151 +S'the' +p80153 +tp80154 +a(g80151 +g80153 +S'lid' +p80155 +tp80156 +a(g80153 +g80155 +S'with' +p80157 +tp80158 +a(g80155 +g80157 +S'two' +p80159 +tp80160 +a(g80157 +g80159 +S'round' +p80161 +tp80162 +a(g80159 +g80161 +S'brass' +p80163 +tp80164 +a(g80161 +g80163 +S'plates.' +p80165 +tp80166 +a(g80163 +g80165 +S'a' +p80167 +tp80168 +a(g80165 +g80167 +S'major' +p80169 +tp80170 +a(g80167 +g80169 +S'category' +p80171 +tp80172 +a(g80169 +g80171 +S'of' +p80173 +tp80174 +a(g80171 +g80173 +S'dolls' +p80175 +tp80176 +a(g80173 +g80175 +S'is' +p80177 +tp80178 +a(g80175 +g80177 +S'the' +p80179 +tp80180 +a(g80177 +g80179 +S'bisque' +p80181 +tp80182 +a(g80179 +g80181 +S'type.' +p80183 +tp80184 +a(g80181 +g80183 +S'bisque' +p80185 +tp80186 +a(g80183 +g80185 +S'is' +p80187 +tp80188 +a(g80185 +g80187 +S'a' +p80189 +tp80190 +a(g80187 +g80189 +S'ceramic' +p80191 +tp80192 +a(g80189 +g80191 +S'material' +p80193 +tp80194 +a(g80191 +g80193 +S'with' +p80195 +tp80196 +a(g80193 +g80195 +S'a' +p80197 +tp80198 +a(g80195 +g80197 +S'hard,' +p80199 +tp80200 +a(g80197 +g80199 +S'mat' +p80201 +tp80202 +a(g80199 +g80201 +S'surface.' +p80203 +tp80204 +a(g80201 +g80203 +S'often' +p80205 +tp80206 +a(g80203 +g80205 +S'used' +p80207 +tp80208 +a(g80205 +g80207 +S'for' +p80209 +tp80210 +a(g80207 +g80209 +S'the' +p80211 +tp80212 +a(g80209 +g80211 +S"doll's" +p80213 +tp80214 +a(g80211 +g80213 +S'head' +p80215 +tp80216 +a(g80213 +g80215 +S'alone,' +p80217 +tp80218 +a(g80215 +g80217 +S'the' +p80219 +tp80220 +a(g80217 +g80219 +S'quality' +p80221 +tp80222 +a(g80219 +g80221 +S'of' +p80223 +tp80224 +a(g80221 +g80223 +S'bisque' +p80225 +tp80226 +a(g80223 +g80225 +S'work' +p80227 +tp80228 +a(g80225 +g80227 +S'varies' +p80229 +tp80230 +a(g80227 +g80229 +S'considerably.' +p80231 +tp80232 +a(g80229 +g80231 +S'the' +p80233 +tp80234 +a(g80231 +g80233 +S'tiny' +p80235 +tp80236 +a(g80233 +g80235 +S'doll' +p80237 +tp80238 +a(g80235 +g80237 +S'is' +p80239 +tp80240 +a(g80237 +g80239 +S'only' +p80241 +tp80242 +a(g80239 +g80241 +S'four' +p80243 +tp80244 +a(g80241 +g80243 +S'inches' +p80245 +tp80246 +a(g80243 +g80245 +S'high.' +p80247 +tp80248 +a(g80245 +g80247 +S'it' +p80249 +tp80250 +a(g80247 +g80249 +S'has' +p80251 +tp80252 +a(g80249 +g80251 +S'real' +p80253 +tp80254 +a(g80251 +g80253 +S'hair' +p80255 +tp80256 +a(g80253 +g80255 +S'and' +p80257 +tp80258 +a(g80255 +g80257 +S'wears' +p80259 +tp80260 +a(g80257 +g80259 +S'a' +p80261 +tp80262 +a(g80259 +g80261 +S'lavender' +p80263 +tp80264 +a(g80261 +g80263 +S'dress' +p80265 +tp80266 +a(g80263 +g80265 +S'of' +p80267 +tp80268 +a(g80265 +g80267 +S'cotton' +p80269 +tp80270 +a(g80267 +g80269 +S'trimmed' +p80271 +tp80272 +a(g80269 +g80271 +S'with' +p80273 +tp80274 +a(g80271 +g80273 +S'lace,' +p80275 +tp80276 +a(g80273 +g80275 +S'a' +p80277 +tp80278 +a(g80275 +g80277 +S'purple' +p80279 +tp80280 +a(g80277 +g80279 +S'sash,' +p80281 +tp80282 +a(g80279 +g80281 +S'and' +p80283 +tp80284 +a(g80281 +g80283 +S'purple' +p80285 +tp80286 +a(g80283 +g80285 +S'bows' +p80287 +tp80288 +a(g80285 +g80287 +S'at' +p80289 +tp80290 +a(g80287 +g80289 +S'the' +p80291 +tp80292 +a(g80289 +g80291 +S'shoulders.' +p80293 +tp80294 +a(g80291 +g80293 +S'the' +p80295 +tp80296 +a(g80293 +g80295 +S'cotton' +p80297 +tp80298 +a(g80295 +g80297 +S'turban' +p80299 +tp80300 +a(g80297 +g80299 +S'is' +p80301 +tp80302 +a(g80299 +g80301 +S'black' +p80303 +tp80304 +a(g80301 +g80303 +S'and' +p80305 +tp80306 +a(g80303 +g80305 +S'turquoise;' +p80307 +tp80308 +a(g80305 +g80307 +S'the' +p80309 +tp80310 +a(g80307 +g80309 +S'blue' +p80311 +tp80312 +a(g80309 +g80311 +S'shoes' +p80313 +tp80314 +a(g80311 +g80313 +S'are' +p80315 +tp80316 +a(g80313 +g80315 +S'of' +p80317 +tp80318 +a(g80315 +g80317 +S'self' +p80319 +tp80320 +a(g80317 +g80319 +S'material,' +p80321 +tp80322 +a(g80319 +g80321 +S'that' +p80323 +tp80324 +a(g80321 +g80323 +S'is,' +p80325 +tp80326 +a(g80323 +g80325 +S'the' +p80327 +tp80328 +a(g80325 +g80327 +S'same' +p80329 +tp80330 +a(g80327 +g80329 +S'material' +p80331 +tp80332 +a(g80329 +g80331 +S'as' +p80333 +tp80334 +a(g80331 +g80333 +S'the' +p80335 +tp80336 +a(g80333 +g80335 +S"doll's" +p80337 +tp80338 +a(g80335 +g80337 +S'legs.' +p80339 +tp80340 +a(g80337 +g80339 +S'popular' +p80341 +tp80342 +a(g80339 +g80341 +S'in' +p80343 +tp80344 +a(g80341 +g80343 +S'america' +p80345 +tp80346 +a(g80343 +g80345 +S'in' +p80347 +tp80348 +a(g80345 +g80347 +S'the' +p80349 +tp80350 +a(g80347 +g80349 +S'1860s,' +p80351 +tp80352 +a(g80349 +g80351 +S'most' +p80353 +tp80354 +a(g80351 +g80353 +S'bisque' +p80355 +tp80356 +a(g80353 +g80355 +S'dolls' +p80357 +tp80358 +a(g80355 +g80357 +S'were' +p80359 +tp80360 +a(g80357 +g80359 +S'made' +p80361 +tp80362 +a(g80359 +g80361 +S'in' +p80363 +tp80364 +a(g80361 +g80363 +S'europe,' +p80365 +tp80366 +a(g80363 +g80365 +S'especially' +p80367 +tp80368 +a(g80365 +g80367 +S'in' +p80369 +tp80370 +a(g80367 +g80369 +S'france' +p80371 +tp80372 +a(g80369 +g80371 +S'and' +p80373 +tp80374 +a(g80371 +g80373 +S'germany.' +p80375 +tp80376 +a(g80373 +g80375 +S'some' +p80377 +tp80378 +a(g80375 +g80377 +S'examples' +p80379 +tp80380 +a(g80377 +g80379 +S'such' +p80381 +tp80382 +a(g80379 +g80381 +S'as' +p80383 +tp80384 +a(g80381 +g80383 +S'this' +p80385 +tp80386 +a(g80383 +g80385 +S'one' +p80387 +tp80388 +a(g80385 +g80387 +S'may' +p80389 +tp80390 +a(g80387 +g80389 +S'date' +p80391 +tp80392 +a(g80389 +g80391 +S'from' +p80393 +tp80394 +a(g80391 +g80393 +S'an' +p80395 +tp80396 +a(g80393 +g80395 +S'earlier' +p80397 +tp80398 +a(g80395 +g80397 +S'period.' +p80399 +tp80400 +a(g80397 +g80399 +S'one' +p80401 +tp80402 +a(g80399 +g80401 +S'type' +p80403 +tp80404 +a(g80401 +g80403 +S'of' +p80405 +tp80406 +a(g80403 +g80405 +S'bisque' +p80407 +tp80408 +a(g80405 +g80407 +S'used' +p80409 +tp80410 +a(g80407 +g80409 +S'for' +p80411 +tp80412 +a(g80409 +g80411 +S'dolls' +p80413 +tp80414 +a(g80411 +g80413 +S'was' +p80415 +tp80416 +a(g80413 +g80415 +S'known' +p80417 +tp80418 +a(g80415 +g80417 +S'as' +p80419 +tp80420 +a(g80417 +g80419 +S'"parian"' +p80421 +tp80422 +a(g80419 +g80421 +S'bisque;' +p80423 +tp80424 +a(g80421 +g80423 +S'this' +p80425 +tp80426 +a(g80423 +g80425 +S'was' +p80427 +tp80428 +a(g80425 +g80427 +S'usually' +p80429 +tp80430 +a(g80427 +g80429 +S'an' +p80431 +tp80432 +a(g80429 +g80431 +S'untinted' +p80433 +tp80434 +a(g80431 +g80433 +S'soft' +p80435 +tp80436 +a(g80433 +g80435 +S'paste' +p80437 +tp80438 +a(g80435 +g80437 +S'or' +p80439 +tp80440 +a(g80437 +g80439 +S'hard' +p80441 +tp80442 +a(g80439 +g80441 +S'paste' +p80443 +tp80444 +a(g80441 +g80443 +S'porcelain.' +p80445 +tp80446 +a(g80443 +g80445 +S'this' +p80447 +tp80448 +a(g80445 +g80447 +S'doll,' +p80449 +tp80450 +a(g80447 +g80449 +S'named' +p80451 +tp80452 +a(g80449 +g80451 +S'"cornelia,"' +p80453 +tp80454 +a(g80451 +g80453 +S'has' +p80455 +tp80456 +a(g80453 +g80455 +S'head,' +p80457 +tp80458 +a(g80455 +g80457 +S'arms,' +p80459 +tp80460 +a(g80457 +g80459 +S'and' +p80461 +tp80462 +a(g80459 +g80461 +S'legs' +p80463 +tp80464 +a(g80461 +g80463 +S'of' +p80465 +tp80466 +a(g80463 +g80465 +S'parian' +p80467 +tp80468 +a(g80465 +g80467 +S'bisque,' +p80469 +tp80470 +a(g80467 +g80469 +S'with' +p80471 +tp80472 +a(g80469 +g80471 +S'some' +p80473 +tp80474 +a(g80471 +g80473 +S'color' +p80475 +tp80476 +a(g80473 +g80475 +S'added' +p80477 +tp80478 +a(g80475 +g80477 +S'to' +p80479 +tp80480 +a(g80477 +g80479 +S'the' +p80481 +tp80482 +a(g80479 +g80481 +S'cheeks.' +p80483 +tp80484 +a(g80481 +g80483 +S'the' +p80485 +tp80486 +a(g80483 +g80485 +S"doll's" +p80487 +tp80488 +a(g80485 +g80487 +S'body' +p80489 +tp80490 +a(g80487 +g80489 +S'is' +p80491 +tp80492 +a(g80489 +g80491 +S'cloth.' +p80493 +tp80494 +a(g80491 +g80493 +S'the' +p80495 +tp80496 +a(g80493 +g80495 +S'date' +p80497 +tp80498 +a(g80495 +g80497 +S'of' +p80499 +tp80500 +a(g80497 +g80499 +S'the' +p80501 +tp80502 +a(g80499 +g80501 +S'doll' +p80503 +tp80504 +a(g80501 +g80503 +S'is' +p80505 +tp80506 +a(g80503 +g80505 +S'1876,' +p80507 +tp80508 +a(g80505 +g80507 +S'when' +p80509 +tp80510 +a(g80507 +g80509 +S'parian' +p80511 +tp80512 +a(g80509 +g80511 +S'dolls' +p80513 +tp80514 +a(g80511 +g80513 +S'with' +p80515 +tp80516 +a(g80513 +g80515 +S'molded' +p80517 +tp80518 +a(g80515 +g80517 +S'hairdos' +p80519 +tp80520 +a(g80517 +g80519 +S'were' +p80521 +tp80522 +a(g80519 +g80521 +S'popular.' +p80523 +tp80524 +a(g80521 +g80523 +S'wigged' +p80525 +tp80526 +a(g80523 +g80525 +S"dolls'" +p80527 +tp80528 +a(g80525 +g80527 +S'heads,' +p80529 +tp80530 +a(g80527 +g80529 +S'also' +p80531 +tp80532 +a(g80529 +g80531 +S'being' +p80533 +tp80534 +a(g80531 +g80533 +S'made' +p80535 +tp80536 +a(g80533 +g80535 +S'at' +p80537 +tp80538 +a(g80535 +g80537 +S'this' +p80539 +tp80540 +a(g80537 +g80539 +S'time,' +p80541 +tp80542 +a(g80539 +g80541 +S'were' +p80543 +tp80544 +a(g80541 +g80543 +S'principally' +p80545 +tp80546 +a(g80543 +g80545 +S'of' +p80547 +tp80548 +a(g80545 +g80547 +S'tinted' +p80549 +tp80550 +a(g80547 +g80549 +S'bisque.' +p80551 +tp80552 +a(g80549 +g80551 +S'note' +p80553 +tp80554 +a(g80551 +g80553 +S'the' +p80555 +tp80556 +a(g80553 +g80555 +S'ribbon' +p80557 +tp80558 +a(g80555 +g80557 +S'of' +p80559 +tp80560 +a(g80557 +g80559 +S'self' +p80561 +tp80562 +a(g80559 +g80561 +S'material' +p80563 +tp80564 +a(g80561 +g80563 +S'in' +p80565 +tp80566 +a(g80563 +g80565 +S'her' +p80567 +tp80568 +a(g80565 +g80567 +S'hair.' +p80569 +tp80570 +a(g80567 +g80569 +S'she' +p80571 +tp80572 +a(g80569 +g80571 +S'wears' +p80573 +tp80574 +a(g80571 +g80573 +S'a' +p80575 +tp80576 +a(g80573 +g80575 +S'velvet' +p80577 +tp80578 +a(g80575 +g80577 +S'dress' +p80579 +tp80580 +a(g80577 +g80579 +S'and' +p80581 +tp80582 +a(g80579 +g80581 +S'machine-embroidered' +p80583 +tp80584 +a(g80581 +g80583 +S'cotton' +p80585 +tp80586 +a(g80583 +g80585 +S'underwear.' +p80587 +tp80588 +a(g80585 +g80587 +S'her' +p80589 +tp80590 +a(g80587 +g80589 +S'eyes' +p80591 +tp80592 +a(g80589 +g80591 +S'are' +p80593 +tp80594 +a(g80591 +g80593 +S'of' +p80595 +tp80596 +a(g80593 +g80595 +S'glass.' +p80597 +tp80598 +a(g80595 +g80597 +S'this' +p80599 +tp80600 +a(g80597 +g80599 +S'doll' +p80601 +tp80602 +a(g80599 +g80601 +S'is' +p80603 +tp80604 +a(g80601 +g80603 +S'named' +p80605 +tp80606 +a(g80603 +g80605 +S'"hanna' +p80607 +tp80608 +a(g80605 +g80607 +S'hitch."' +p80609 +tp80610 +a(g80607 +g80609 +S'she' +p80611 +tp80612 +a(g80609 +g80611 +S'is' +p80613 +tp80614 +a(g80611 +g80613 +S'a' +p80615 +tp80616 +a(g80613 +g80615 +S'black' +p80617 +tp80618 +a(g80615 +g80617 +S'china-head' +p80619 +tp80620 +a(g80617 +g80619 +S'doll' +p80621 +tp80622 +a(g80619 +g80621 +S'made' +p80623 +tp80624 +a(g80621 +g80623 +S'in' +p80625 +tp80626 +a(g80623 +g80625 +S'germany' +p80627 +tp80628 +a(g80625 +g80627 +S'and' +p80629 +tp80630 +a(g80627 +g80629 +S'dating' +p80631 +tp80632 +a(g80629 +g80631 +S'from' +p80633 +tp80634 +a(g80631 +g80633 +S'1876.' +p80635 +tp80636 +a(g80633 +g80635 +S'she' +p80637 +tp80638 +a(g80635 +g80637 +S'has' +p80639 +tp80640 +a(g80637 +g80639 +S'kid' +p80641 +tp80642 +a(g80639 +g80641 +S'arms' +p80643 +tp80644 +a(g80641 +g80643 +S'and' +p80645 +tp80646 +a(g80643 +g80645 +S'a' +p80647 +tp80648 +a(g80645 +g80647 +S'cloth' +p80649 +tp80650 +a(g80647 +g80649 +S'body.' +p80651 +tp80652 +a(g80649 +g80651 +S'the' +p80653 +tp80654 +a(g80651 +g80653 +S"doll's" +p80655 +tp80656 +a(g80653 +g80655 +S'costume' +p80657 +tp80658 +a(g80655 +g80657 +S'is' +p80659 +tp80660 +a(g80657 +g80659 +S'of' +p80661 +tp80662 +a(g80659 +g80661 +S'gray-green' +p80663 +tp80664 +a(g80661 +g80663 +S'alpaca' +p80665 +tp80666 +a(g80663 +g80665 +S'with' +p80667 +tp80668 +a(g80665 +g80667 +S'a' +p80669 +tp80670 +a(g80667 +g80669 +S'plaid' +p80671 +tp80672 +a(g80669 +g80671 +S'taffeta' +p80673 +tp80674 +a(g80671 +g80673 +S'turban.' +p80675 +tp80676 +a(g80673 +g80675 +S'black' +p80677 +tp80678 +a(g80675 +g80677 +S'china-head' +p80679 +tp80680 +a(g80677 +g80679 +S'dolls' +p80681 +tp80682 +a(g80679 +g80681 +S'are' +p80683 +tp80684 +a(g80681 +g80683 +S'rare;' +p80685 +tp80686 +a(g80683 +g80685 +S'the' +p80687 +tp80688 +a(g80685 +g80687 +S'heads' +p80689 +tp80690 +a(g80687 +g80689 +S'for' +p80691 +tp80692 +a(g80689 +g80691 +S'such' +p80693 +tp80694 +a(g80691 +g80693 +S'dolls' +p80695 +tp80696 +a(g80693 +g80695 +S'were' +p80697 +tp80698 +a(g80695 +g80697 +S'more' +p80699 +tp80700 +a(g80697 +g80699 +S'often' +p80701 +tp80702 +a(g80699 +g80701 +S'made' +p80703 +tp80704 +a(g80701 +g80703 +S'of' +p80705 +tp80706 +a(g80703 +g80705 +S'bisque' +p80707 +tp80708 +a(g80705 +g80707 +S'or' +p80709 +tp80710 +a(g80707 +g80709 +S'other' +p80711 +tp80712 +a(g80709 +g80711 +S'materials.' +p80713 +tp80714 +a(g80711 +g80713 +S'germany' +p80715 +tp80716 +a(g80713 +g80715 +S'was' +p80717 +tp80718 +a(g80715 +g80717 +S'a' +p80719 +tp80720 +a(g80717 +g80719 +S'leader' +p80721 +tp80722 +a(g80719 +g80721 +S'in' +p80723 +tp80724 +a(g80721 +g80723 +S'the' +p80725 +tp80726 +a(g80723 +g80725 +S'production' +p80727 +tp80728 +a(g80725 +g80727 +S'of' +p80729 +tp80730 +a(g80727 +g80729 +S'china' +p80731 +tp80732 +a(g80729 +g80731 +S'dolls,' +p80733 +tp80734 +a(g80731 +g80733 +S'especially' +p80735 +tp80736 +a(g80733 +g80735 +S'after' +p80737 +tp80738 +a(g80735 +g80737 +S'1870' +p80739 +tp80740 +a(g80737 +g80739 +S'when' +p80741 +tp80742 +a(g80739 +g80741 +S'factory' +p80743 +tp80744 +a(g80741 +g80743 +S'methods' +p80745 +tp80746 +a(g80743 +g80745 +S'were' +p80747 +tp80748 +a(g80745 +g80747 +S'introduced.' +p80749 +tp80750 +a(g80747 +g80749 +S'a' +p80751 +tp80752 +a(g80749 +g80751 +S'great' +p80753 +tp80754 +a(g80751 +g80753 +S'number' +p80755 +tp80756 +a(g80753 +g80755 +S'of' +p80757 +tp80758 +a(g80755 +g80757 +S'china' +p80759 +tp80760 +a(g80757 +g80759 +S'and' +p80761 +tp80762 +a(g80759 +g80761 +S'bisque' +p80763 +tp80764 +a(g80761 +g80763 +S'dolls' +p80765 +tp80766 +a(g80763 +g80765 +S'in' +p80767 +tp80768 +a(g80765 +g80767 +S'the' +p80769 +tp80770 +a(g80767 +g80769 +S'nineteenth' +p80771 +tp80772 +a(g80769 +g80771 +S'century' +p80773 +tp80774 +a(g80771 +g80773 +S'came' +p80775 +tp80776 +a(g80773 +g80775 +S'from' +p80777 +tp80778 +a(g80775 +g80777 +S'germany' +p80779 +tp80780 +a(g80777 +g80779 +S'because' +p80781 +tp80782 +a(g80779 +g80781 +S'dollmakers' +p80783 +tp80784 +a(g80781 +g80783 +S'were' +p80785 +tp80786 +a(g80783 +g80785 +S'being' +p80787 +tp80788 +a(g80785 +g80787 +S'subsidized' +p80789 +tp80790 +a(g80787 +g80789 +S'by' +p80791 +tp80792 +a(g80789 +g80791 +S'the' +p80793 +tp80794 +a(g80791 +g80793 +S'government' +p80795 +tp80796 +a(g80793 +g80795 +S'and' +p80797 +tp80798 +a(g80795 +g80797 +S'could' +p80799 +tp80800 +a(g80797 +g80799 +S'sell' +p80801 +tp80802 +a(g80799 +g80801 +S'the' +p80803 +tp80804 +a(g80801 +g80803 +S'dolls' +p80805 +tp80806 +a(g80803 +g80805 +S'cheaply.' +p80807 +tp80808 +a(g80805 +g80807 +S'this' +p80809 +tp80810 +a(g80807 +g80809 +S'is' +p80811 +tp80812 +a(g80809 +g80811 +S'a' +p80813 +tp80814 +a(g80811 +g80813 +S'rare' +p80815 +tp80816 +a(g80813 +g80815 +S'and' +p80817 +tp80818 +a(g80815 +g80817 +S'interesting' +p80819 +tp80820 +a(g80817 +g80819 +S'peddler' +p80821 +tp80822 +a(g80819 +g80821 +S'doll;' +p80823 +tp80824 +a(g80821 +g80823 +S'it' +p80825 +tp80826 +a(g80823 +g80825 +S'represents' +p80827 +tp80828 +a(g80825 +g80827 +S'the' +p80829 +tp80830 +a(g80827 +g80829 +S'era' +p80831 +tp80832 +a(g80829 +g80831 +S'of' +p80833 +tp80834 +a(g80831 +g80833 +S'street' +p80835 +tp80836 +a(g80833 +g80835 +S'vendors,' +p80837 +tp80838 +a(g80835 +g80837 +S'who' +p80839 +tp80840 +a(g80837 +g80839 +S'sold' +p80841 +tp80842 +a(g80839 +g80841 +S'items' +p80843 +tp80844 +a(g80841 +g80843 +S'of' +p80845 +tp80846 +a(g80843 +g80845 +S'every' +p80847 +tp80848 +a(g80845 +g80847 +S'imaginable' +p80849 +tp80850 +a(g80847 +g80849 +S'description,' +p80851 +tp80852 +a(g80849 +g80851 +S'from' +p80853 +tp80854 +a(g80851 +g80853 +S'handmade' +p80855 +tp80856 +a(g80853 +g80855 +S'lace' +p80857 +tp80858 +a(g80855 +g80857 +S'to' +p80859 +tp80860 +a(g80857 +g80859 +S'kitchen' +p80861 +tp80862 +a(g80859 +g80861 +S'utensils.' +p80863 +tp80864 +a(g80861 +g80863 +S'this' +p80865 +tp80866 +a(g80863 +g80865 +S'china-headed' +p80867 +tp80868 +a(g80865 +g80867 +S'doll,' +p80869 +tp80870 +a(g80867 +g80869 +S'dating' +p80871 +tp80872 +a(g80869 +g80871 +S'about' +p80873 +tp80874 +a(g80871 +g80873 +S'1860,' +p80875 +tp80876 +a(g80873 +g80875 +S'carries' +p80877 +tp80878 +a(g80875 +g80877 +S'a' +p80879 +tp80880 +a(g80877 +g80879 +S'basket' +p80881 +tp80882 +a(g80879 +g80881 +S'filled' +p80883 +tp80884 +a(g80881 +g80883 +S'with' +p80885 +tp80886 +a(g80883 +g80885 +S'notions.' +p80887 +tp80888 +a(g80885 +g80887 +S'such' +p80889 +tp80890 +a(g80887 +g80889 +S'dolls' +p80891 +tp80892 +a(g80889 +g80891 +S'were' +p80893 +tp80894 +a(g80891 +g80893 +S'especially' +p80895 +tp80896 +a(g80893 +g80895 +S'popular' +p80897 +tp80898 +a(g80895 +g80897 +S'during' +p80899 +tp80900 +a(g80897 +g80899 +S'the' +p80901 +tp80902 +a(g80899 +g80901 +S'late' +p80903 +tp80904 +a(g80901 +g80903 +S'eighteenth' +p80905 +tp80906 +a(g80903 +g80905 +S'and' +p80907 +tp80908 +a(g80905 +g80907 +S'nineteenth' +p80909 +tp80910 +a(g80907 +g80909 +S'century' +p80911 +tp80912 +a(g80909 +g80911 +S'in' +p80913 +tp80914 +a(g80911 +g80913 +S'england,' +p80915 +tp80916 +a(g80913 +g80915 +S'where' +p80917 +tp80918 +a(g80915 +g80917 +S'peddlers' +p80919 +tp80920 +a(g80917 +g80919 +S'constantly' +p80921 +tp80922 +a(g80919 +g80921 +S'hawked' +p80923 +tp80924 +a(g80921 +g80923 +S'their' +p80925 +tp80926 +a(g80923 +g80925 +S'wares' +p80927 +tp80928 +a(g80925 +g80927 +S'on' +p80929 +tp80930 +a(g80927 +g80929 +S'the' +p80931 +tp80932 +a(g80929 +g80931 +S'streets.' +p80933 +tp80934 +a(g80931 +g80933 +S'handmade' +p80935 +tp80936 +a(g80933 +g80935 +S'dolls' +p80937 +tp80938 +a(g80935 +g80937 +S'were' +p80939 +tp80940 +a(g80937 +g80939 +S'among' +p80941 +tp80942 +a(g80939 +g80941 +S'the' +p80943 +tp80944 +a(g80941 +g80943 +S'many' +p80945 +tp80946 +a(g80943 +g80945 +S'crafts' +p80947 +tp80948 +a(g80945 +g80947 +S'produced' +p80949 +tp80950 +a(g80947 +g80949 +S'by' +p80951 +tp80952 +a(g80949 +g80951 +S'people' +p80953 +tp80954 +a(g80951 +g80953 +S'of' +p80955 +tp80956 +a(g80953 +g80955 +S'the' +p80957 +tp80958 +a(g80955 +g80957 +S'spanish' +p80959 +tp80960 +a(g80957 +g80959 +S'colonial' +p80961 +tp80962 +a(g80959 +g80961 +S'southwest.' +p80963 +tp80964 +a(g80961 +g80963 +S'this' +p80965 +tp80966 +a(g80963 +g80965 +S'rag' +p80967 +tp80968 +a(g80965 +g80967 +S'doll,' +p80969 +tp80970 +a(g80967 +g80969 +S'possibly' +p80971 +tp80972 +a(g80969 +g80971 +S'dating' +p80973 +tp80974 +a(g80971 +g80973 +S'from' +p80975 +tp80976 +a(g80973 +g80975 +S'1795,' +p80977 +tp80978 +a(g80975 +g80977 +S'was' +p80979 +tp80980 +a(g80977 +g80979 +S'made' +p80981 +tp80982 +a(g80979 +g80981 +S'by' +p80983 +tp80984 +a(g80981 +g80983 +S'a' +p80985 +tp80986 +a(g80983 +g80985 +S'california' +p80987 +tp80988 +a(g80985 +g80987 +S'indian' +p80989 +tp80990 +a(g80987 +g80989 +S'woman' +p80991 +tp80992 +a(g80989 +g80991 +S'for' +p80993 +tp80994 +a(g80991 +g80993 +S'the' +p80995 +tp80996 +a(g80993 +g80995 +S'original' +p80997 +tp80998 +a(g80995 +g80997 +S'owner,' +p80999 +tp81000 +a(g80997 +g80999 +S'a' +p81001 +tp81002 +a(g80999 +g81001 +S'mrs.' +p81003 +tp81004 +a(g81001 +g81003 +S'villa.' +p81005 +tp81006 +a(g81003 +g81005 +S'the' +p81007 +tp81008 +a(g81005 +g81007 +S'doll' +p81009 +tp81010 +a(g81007 +g81009 +S'may' +p81011 +tp81012 +a(g81009 +g81011 +S'be' +p81013 +tp81014 +a(g81011 +g81013 +S'seen' +p81015 +tp81016 +a(g81013 +g81015 +S'as' +p81017 +tp81018 +a(g81015 +g81017 +S'an' +p81019 +tp81020 +a(g81017 +g81019 +S"indian's" +p81021 +tp81022 +a(g81019 +g81021 +S'interpretation' +p81023 +tp81024 +a(g81021 +g81023 +S'of' +p81025 +tp81026 +a(g81023 +g81025 +S'spanish' +p81027 +tp81028 +a(g81025 +g81027 +S'colonial' +p81029 +tp81030 +a(g81027 +g81029 +S'women.' +p81031 +tp81032 +a(g81029 +g81031 +S'in' +p81033 +tp81034 +a(g81031 +g81033 +S'the' +p81035 +tp81036 +a(g81033 +g81035 +S'early' +p81037 +tp81038 +a(g81035 +g81037 +S'days' +p81039 +tp81040 +a(g81037 +g81039 +S'of' +p81041 +tp81042 +a(g81039 +g81041 +S'the' +p81043 +tp81044 +a(g81041 +g81043 +S'united' +p81045 +tp81046 +a(g81043 +g81045 +S'states,' +p81047 +tp81048 +a(g81045 +g81047 +S'southwest' +p81049 +tp81050 +a(g81047 +g81049 +S'arts' +p81051 +tp81052 +a(g81049 +g81051 +S'and' +p81053 +tp81054 +a(g81051 +g81053 +S'crafts' +p81055 +tp81056 +a(g81053 +g81055 +S'were' +p81057 +tp81058 +a(g81055 +g81057 +S'often' +p81059 +tp81060 +a(g81057 +g81059 +S'the' +p81061 +tp81062 +a(g81059 +g81061 +S'work' +p81063 +tp81064 +a(g81061 +g81063 +S'of' +p81065 +tp81066 +a(g81063 +g81065 +S'indian' +p81067 +tp81068 +a(g81065 +g81067 +S'artisans.' +p81069 +tp81070 +a(g81067 +g81069 +S'boy' +p81071 +tp81072 +a(g81069 +g81071 +S'dolls' +p81073 +tp81074 +a(g81071 +g81073 +S'have' +p81075 +tp81076 +a(g81073 +g81075 +S'never' +p81077 +tp81078 +a(g81075 +g81077 +S'been' +p81079 +tp81080 +a(g81077 +g81079 +S'common.' +p81081 +tp81082 +a(g81079 +g81081 +S'this' +p81083 +tp81084 +a(g81081 +g81083 +S'doll,' +p81085 +tp81086 +a(g81083 +g81085 +S'named' +p81087 +tp81088 +a(g81085 +g81087 +S'"johnnie,"' +p81089 +tp81090 +a(g81087 +g81089 +S'dates' +p81091 +tp81092 +a(g81089 +g81091 +S'from' +p81093 +tp81094 +a(g81091 +g81093 +S'the' +p81095 +tp81096 +a(g81093 +g81095 +S'early' +p81097 +tp81098 +a(g81095 +g81097 +S'nineteenth' +p81099 +tp81100 +a(g81097 +g81099 +S'century.' +p81101 +tp81102 +a(g81099 +g81101 +S'he' +p81103 +tp81104 +a(g81101 +g81103 +S'wears' +p81105 +tp81106 +a(g81103 +g81105 +S'a' +p81107 +tp81108 +a(g81105 +g81107 +S'blue' +p81109 +tp81110 +a(g81107 +g81109 +S'challis' +p81111 +tp81112 +a(g81109 +g81111 +S'suit' +p81113 +tp81114 +a(g81111 +g81113 +S'and' +p81115 +tp81116 +a(g81113 +g81115 +S'finely' +p81117 +tp81118 +a(g81115 +g81117 +S'hand-tucked' +p81119 +tp81120 +a(g81117 +g81119 +S'linens.' +p81121 +tp81122 +a(g81119 +g81121 +S'his' +p81123 +tp81124 +a(g81121 +g81123 +S'body' +p81125 +tp81126 +a(g81123 +g81125 +S'is' +p81127 +tp81128 +a(g81125 +g81127 +S'of' +p81129 +tp81130 +a(g81127 +g81129 +S'heavy' +p81131 +tp81132 +a(g81129 +g81131 +S'cotton' +p81133 +tp81134 +a(g81131 +g81133 +S'cloth' +p81135 +tp81136 +a(g81133 +g81135 +S'with' +p81137 +tp81138 +a(g81135 +g81137 +S'hair' +p81139 +tp81140 +a(g81137 +g81139 +S'and' +p81141 +tp81142 +a(g81139 +g81141 +S'features' +p81143 +tp81144 +a(g81141 +g81143 +S'embroidered' +p81145 +tp81146 +a(g81143 +g81145 +S'in' +p81147 +tp81148 +a(g81145 +g81147 +S'yarn.' +p81149 +tp81150 +a(g81147 +g81149 +S'his' +p81151 +tp81152 +a(g81149 +g81151 +S'expression' +p81153 +tp81154 +a(g81151 +g81153 +S'suggests' +p81155 +tp81156 +a(g81153 +g81155 +S'that' +p81157 +tp81158 +a(g81155 +g81157 +S'he' +p81159 +tp81160 +a(g81157 +g81159 +S'may' +p81161 +tp81162 +a(g81159 +g81161 +S'have' +p81163 +tp81164 +a(g81161 +g81163 +S'been' +p81165 +tp81166 +a(g81163 +g81165 +S'modeled' +p81167 +tp81168 +a(g81165 +g81167 +S'after' +p81169 +tp81170 +a(g81167 +g81169 +S'a' +p81171 +tp81172 +a(g81169 +g81171 +S'specific' +p81173 +tp81174 +a(g81171 +g81173 +S'little' +p81175 +tp81176 +a(g81173 +g81175 +S'boy.' +p81177 +tp81178 +a(g81175 +g81177 +S'the' +p81179 +tp81180 +a(g81177 +g81179 +S"1860's" +p81181 +tp81182 +a(g81179 +g81181 +S'began' +p81183 +tp81184 +a(g81181 +g81183 +S'a' +p81185 +tp81186 +a(g81183 +g81185 +S'golden' +p81187 +tp81188 +a(g81185 +g81187 +S'age' +p81189 +tp81190 +a(g81187 +g81189 +S'for' +p81191 +tp81192 +a(g81189 +g81191 +S'dolls.' +p81193 +tp81194 +a(g81191 +g81193 +S'it' +p81195 +tp81196 +a(g81193 +g81195 +S'was' +p81197 +tp81198 +a(g81195 +g81197 +S'also' +p81199 +tp81200 +a(g81197 +g81199 +S'during' +p81201 +tp81202 +a(g81199 +g81201 +S'this' +p81203 +tp81204 +a(g81201 +g81203 +S'decade' +p81205 +tp81206 +a(g81203 +g81205 +S'that' +p81207 +tp81208 +a(g81205 +g81207 +S'some' +p81209 +tp81210 +a(g81207 +g81209 +S'interesting' +p81211 +tp81212 +a(g81209 +g81211 +S'changes' +p81213 +tp81214 +a(g81211 +g81213 +S'in' +p81215 +tp81216 +a(g81213 +g81215 +S'doll-making' +p81217 +tp81218 +a(g81215 +g81217 +S'occurred' +p81219 +tp81220 +a(g81217 +g81219 +S'and' +p81221 +tp81222 +a(g81219 +g81221 +S'a' +p81223 +tp81224 +a(g81221 +g81223 +S'number' +p81225 +tp81226 +a(g81223 +g81225 +S'of' +p81227 +tp81228 +a(g81225 +g81227 +S'new' +p81229 +tp81230 +a(g81227 +g81229 +S'patents' +p81231 +tp81232 +a(g81229 +g81231 +S'were' +p81233 +tp81234 +a(g81231 +g81233 +S'obtained.' +p81235 +tp81236 +a(g81233 +g81235 +S'before' +p81237 +tp81238 +a(g81235 +g81237 +S'1860,' +p81239 +tp81240 +a(g81237 +g81239 +S'for' +p81241 +tp81242 +a(g81239 +g81241 +S'example,' +p81243 +tp81244 +a(g81241 +g81243 +S'dolls' +p81245 +tp81246 +a(g81243 +g81245 +S'were' +p81247 +tp81248 +a(g81245 +g81247 +S'not' +p81249 +tp81250 +a(g81247 +g81249 +S'jointed' +p81251 +tp81252 +a(g81249 +g81251 +S'and' +p81253 +tp81254 +a(g81251 +g81253 +S'therefore' +p81255 +tp81256 +a(g81253 +g81255 +S'usually' +p81257 +tp81258 +a(g81255 +g81257 +S'not' +p81259 +tp81260 +a(g81257 +g81259 +S'able' +p81261 +tp81262 +a(g81259 +g81261 +S'to' +p81263 +tp81264 +a(g81261 +g81263 +S'sit' +p81265 +tp81266 +a(g81263 +g81265 +S'down.' +p81267 +tp81268 +a(g81265 +g81267 +S'this' +p81269 +tp81270 +a(g81267 +g81269 +S'charming' +p81271 +tp81272 +a(g81269 +g81271 +S'mechanical' +p81273 +tp81274 +a(g81271 +g81273 +S'doll' +p81275 +tp81276 +a(g81273 +g81275 +S'of' +p81277 +tp81278 +a(g81275 +g81277 +S'the' +p81279 +tp81280 +a(g81277 +g81279 +S'early' +p81281 +tp81282 +a(g81279 +g81281 +S'1860s' +p81283 +tp81284 +a(g81281 +g81283 +S'mot' +p81285 +tp81286 +a(g81283 +g81285 +S'only' +p81287 +tp81288 +a(g81285 +g81287 +S'sits' +p81289 +tp81290 +a(g81287 +g81289 +S'on' +p81291 +tp81292 +a(g81289 +g81291 +S'her' +p81293 +tp81294 +a(g81291 +g81293 +S'three-wheeled' +p81295 +tp81296 +a(g81293 +g81295 +S'iron' +p81297 +tp81298 +a(g81295 +g81297 +S'velocipede,' +p81299 +tp81300 +a(g81297 +g81299 +S'but' +p81301 +tp81302 +a(g81299 +g81301 +S'strikes' +p81303 +tp81304 +a(g81301 +g81303 +S'the' +p81305 +tp81306 +a(g81303 +g81305 +S'bell' +p81307 +tp81308 +a(g81305 +g81307 +S'in' +p81309 +tp81310 +a(g81307 +g81309 +S'front' +p81311 +tp81312 +a(g81309 +g81311 +S'of' +p81313 +tp81314 +a(g81311 +g81313 +S'her' +p81315 +tp81316 +a(g81313 +g81315 +S'as' +p81317 +tp81318 +a(g81315 +g81317 +S'the' +p81319 +tp81320 +a(g81317 +g81319 +S'tricycle' +p81321 +tp81322 +a(g81319 +g81321 +S'moves.' +p81323 +tp81324 +a(g81321 +g81323 +S'the' +p81325 +tp81326 +a(g81323 +g81325 +S'rear' +p81327 +tp81328 +a(g81325 +g81327 +S'bell' +p81329 +tp81330 +a(g81327 +g81329 +S'chimes' +p81331 +tp81332 +a(g81329 +g81331 +S'with' +p81333 +tp81334 +a(g81331 +g81333 +S'the' +p81335 +tp81336 +a(g81333 +g81335 +S'forward' +p81337 +tp81338 +a(g81335 +g81337 +S'movement.' +p81339 +tp81340 +a(g81337 +g81339 +S'the' +p81341 +tp81342 +a(g81339 +g81341 +S'doll' +p81343 +tp81344 +a(g81341 +g81343 +S'is' +p81345 +tp81346 +a(g81343 +g81345 +S'dressed' +p81347 +tp81348 +a(g81345 +g81347 +S'in' +p81349 +tp81350 +a(g81347 +g81349 +S'a' +p81351 +tp81352 +a(g81349 +g81351 +S'black' +p81353 +tp81354 +a(g81351 +g81353 +S'velvet' +p81355 +tp81356 +a(g81353 +g81355 +S'jacket,' +p81357 +tp81358 +a(g81355 +g81357 +S'a' +p81359 +tp81360 +a(g81357 +g81359 +S'silk' +p81361 +tp81362 +a(g81359 +g81361 +S'blouse' +p81363 +tp81364 +a(g81361 +g81363 +S'trimmed' +p81365 +tp81366 +a(g81363 +g81365 +S'with' +p81367 +tp81368 +a(g81365 +g81367 +S'white' +p81369 +tp81370 +a(g81367 +g81369 +S'lace' +p81371 +tp81372 +a(g81369 +g81371 +S'at' +p81373 +tp81374 +a(g81371 +g81373 +S'the' +p81375 +tp81376 +a(g81373 +g81375 +S'neck' +p81377 +tp81378 +a(g81375 +g81377 +S'and' +p81379 +tp81380 +a(g81377 +g81379 +S'sleeves,' +p81381 +tp81382 +a(g81379 +g81381 +S'and' +p81383 +tp81384 +a(g81381 +g81383 +S'a' +p81385 +tp81386 +a(g81383 +g81385 +S'pink' +p81387 +tp81388 +a(g81385 +g81387 +S'and' +p81389 +tp81390 +a(g81387 +g81389 +S'white' +p81391 +tp81392 +a(g81389 +g81391 +S'striped' +p81393 +tp81394 +a(g81391 +g81393 +S'skirt.' +p81395 +tp81396 +a(g81393 +g81395 +S'notice' +p81397 +tp81398 +a(g81395 +g81397 +S'the' +p81399 +tp81400 +a(g81397 +g81399 +S'jaunty' +p81401 +tp81402 +a(g81399 +g81401 +S'til' +p81403 +tp81404 +a(g81401 +g81403 +S'of' +p81405 +tp81406 +a(g81403 +g81405 +S'the' +p81407 +tp81408 +a(g81405 +g81407 +S'satin' +p81409 +tp81410 +a(g81407 +g81409 +S'military-style' +p81411 +tp81412 +a(g81409 +g81411 +S'hat' +p81413 +tp81414 +a(g81411 +g81413 +S'adorned' +p81415 +tp81416 +a(g81413 +g81415 +S'with' +p81417 +tp81418 +a(g81415 +g81417 +S'pink' +p81419 +tp81420 +a(g81417 +g81419 +S'ribbons' +p81421 +tp81422 +a(g81419 +g81421 +S'and' +p81423 +tp81424 +a(g81421 +g81423 +S'braid.' +p81425 +tp81426 +a(g81423 +g81425 +S'this' +p81427 +tp81428 +a(g81425 +g81427 +S'doll' +p81429 +tp81430 +a(g81427 +g81429 +S'is' +p81431 +tp81432 +a(g81429 +g81431 +S'one' +p81433 +tp81434 +a(g81431 +g81433 +S'of' +p81435 +tp81436 +a(g81433 +g81435 +S'the' +p81437 +tp81438 +a(g81435 +g81437 +S'loveliest' +p81439 +tp81440 +a(g81437 +g81439 +S'of' +p81441 +tp81442 +a(g81439 +g81441 +S'the' +p81443 +tp81444 +a(g81441 +g81443 +S'so-called' +p81445 +tp81446 +a(g81443 +g81445 +S""milliner's" +p81447 +tp81448 +a(g81445 +g81447 +S'models."' +p81449 +tp81450 +a(g81447 +g81449 +S'the' +p81451 +tp81452 +a(g81449 +g81451 +S'term' +p81453 +tp81454 +a(g81451 +g81453 +S'is' +p81455 +tp81456 +a(g81453 +g81455 +S'actually' +p81457 +tp81458 +a(g81455 +g81457 +S'a' +p81459 +tp81460 +a(g81457 +g81459 +S'misnomer,' +p81461 +tp81462 +a(g81459 +g81461 +S'for' +p81463 +tp81464 +a(g81461 +g81463 +S'such' +p81465 +tp81466 +a(g81463 +g81465 +S'dolls' +p81467 +tp81468 +a(g81465 +g81467 +S'were' +p81469 +tp81470 +a(g81467 +g81469 +S'meant' +p81471 +tp81472 +a(g81469 +g81471 +S'to' +p81473 +tp81474 +a(g81471 +g81473 +S'be' +p81475 +tp81476 +a(g81473 +g81475 +S'used' +p81477 +tp81478 +a(g81475 +g81477 +S'as' +p81479 +tp81480 +a(g81477 +g81479 +S'toys.' +p81481 +tp81482 +a(g81479 +g81481 +S'many' +p81483 +tp81484 +a(g81481 +g81483 +S'early' +p81485 +tp81486 +a(g81483 +g81485 +S'nineteenth-century' +p81487 +tp81488 +a(g81485 +g81487 +S'paintings' +p81489 +tp81490 +a(g81487 +g81489 +S'show' +p81491 +tp81492 +a(g81489 +g81491 +S'children' +p81493 +tp81494 +a(g81491 +g81493 +S'holding' +p81495 +tp81496 +a(g81493 +g81495 +S'such' +p81497 +tp81498 +a(g81495 +g81497 +S'dolls.' +p81499 +tp81500 +a(g81497 +g81499 +S'there' +p81501 +tp81502 +a(g81499 +g81501 +S'may' +p81503 +tp81504 +a(g81501 +g81503 +S'have' +p81505 +tp81506 +a(g81503 +g81505 +S'been' +p81507 +tp81508 +a(g81505 +g81507 +S'actual' +p81509 +tp81510 +a(g81507 +g81509 +S"milliner's" +p81511 +tp81512 +a(g81509 +g81511 +S'models' +p81513 +tp81514 +a(g81511 +g81513 +S'before' +p81515 +tp81516 +a(g81513 +g81515 +S'the' +p81517 +tp81518 +a(g81515 +g81517 +S'toy' +p81519 +tp81520 +a(g81517 +g81519 +S'doll' +p81521 +tp81522 +a(g81519 +g81521 +S'of' +p81523 +tp81524 +a(g81521 +g81523 +S'that' +p81525 +tp81526 +a(g81523 +g81525 +S'name' +p81527 +tp81528 +a(g81525 +g81527 +S'came' +p81529 +tp81530 +a(g81527 +g81529 +S'into' +p81531 +tp81532 +a(g81529 +g81531 +S'use,' +p81533 +tp81534 +a(g81531 +g81533 +S'but' +p81535 +tp81536 +a(g81533 +g81535 +S'we' +p81537 +tp81538 +a(g81535 +g81537 +S'do' +p81539 +tp81540 +a(g81537 +g81539 +S'not' +p81541 +tp81542 +a(g81539 +g81541 +S'know' +p81543 +tp81544 +a(g81541 +g81543 +S'how' +p81545 +tp81546 +a(g81543 +g81545 +S'close' +p81547 +tp81548 +a(g81545 +g81547 +S'the' +p81549 +tp81550 +a(g81547 +g81549 +S'resemblance' +p81551 +tp81552 +a(g81549 +g81551 +S'between' +p81553 +tp81554 +a(g81551 +g81553 +S'the' +p81555 +tp81556 +a(g81553 +g81555 +S'two' +p81557 +tp81558 +a(g81555 +g81557 +S'may' +p81559 +tp81560 +a(g81557 +g81559 +S'have' +p81561 +tp81562 +a(g81559 +g81561 +S'been.' +p81563 +tp81564 +a(g81561 +g81563 +S'this' +p81565 +tp81566 +a(g81563 +g81565 +S'doll' +p81567 +tp81568 +a(g81565 +g81567 +S'is' +p81569 +tp81570 +a(g81567 +g81569 +S'dated' +p81571 +tp81572 +a(g81569 +g81571 +S'about' +p81573 +tp81574 +a(g81571 +g81573 +S'1834.' +p81575 +tp81576 +a(g81573 +g81575 +S'the' +p81577 +tp81578 +a(g81575 +g81577 +S'costume' +p81579 +tp81580 +a(g81577 +g81579 +S'is' +p81581 +tp81582 +a(g81579 +g81581 +S'simple' +p81583 +tp81584 +a(g81581 +g81583 +S'and' +p81585 +tp81586 +a(g81583 +g81585 +S'beautifully' +p81587 +tp81588 +a(g81585 +g81587 +S'made;' +p81589 +tp81590 +a(g81587 +g81589 +S'the' +p81591 +tp81592 +a(g81589 +g81591 +S'hairstyle' +p81593 +tp81594 +a(g81591 +g81593 +S'is' +p81595 +tp81596 +a(g81593 +g81595 +S'that' +p81597 +tp81598 +a(g81595 +g81597 +S'of' +p81599 +tp81600 +a(g81597 +g81599 +S'a' +p81601 +tp81602 +a(g81599 +g81601 +S'young' +p81603 +tp81604 +a(g81601 +g81603 +S'girl' +p81605 +tp81606 +a(g81603 +g81605 +S'of' +p81607 +tp81608 +a(g81605 +g81607 +S'the' +p81609 +tp81610 +a(g81607 +g81609 +S'period.' +p81611 +tp81612 +a(g81609 +g81611 +S'pantalettes' +p81613 +tp81614 +a(g81611 +g81613 +S'are' +p81615 +tp81616 +a(g81613 +g81615 +S'typical' +p81617 +tp81618 +a(g81615 +g81617 +S'for' +p81619 +tp81620 +a(g81617 +g81619 +S'this' +p81621 +tp81622 +a(g81619 +g81621 +S'sort' +p81623 +tp81624 +a(g81621 +g81623 +S'of' +p81625 +tp81626 +a(g81623 +g81625 +S'doll.' +p81627 +tp81628 +a(g81625 +g81627 +S'this' +p81629 +tp81630 +a(g81627 +g81629 +S'beautiful' +p81631 +tp81632 +a(g81629 +g81631 +S'wax' +p81633 +tp81634 +a(g81631 +g81633 +S'doll' +p81635 +tp81636 +a(g81633 +g81635 +S'of' +p81637 +tp81638 +a(g81635 +g81637 +S'about' +p81639 +tp81640 +a(g81637 +g81639 +S'1871' +p81641 +tp81642 +a(g81639 +g81641 +S'is' +p81643 +tp81644 +a(g81641 +g81643 +S'named' +p81645 +tp81646 +a(g81643 +g81645 +S'"belle' +p81647 +tp81648 +a(g81645 +g81647 +S'hervey."' +p81649 +tp81650 +a(g81647 +g81649 +S'she' +p81651 +tp81652 +a(g81649 +g81651 +S'has' +p81653 +tp81654 +a(g81651 +g81653 +S'real' +p81655 +tp81656 +a(g81653 +g81655 +S'hair' +p81657 +tp81658 +a(g81655 +g81657 +S'embedded' +p81659 +tp81660 +a(g81657 +g81659 +S'in' +p81661 +tp81662 +a(g81659 +g81661 +S'her' +p81663 +tp81664 +a(g81661 +g81663 +S'wax' +p81665 +tp81666 +a(g81663 +g81665 +S'head.' +p81667 +tp81668 +a(g81665 +g81667 +S'this' +p81669 +tp81670 +a(g81667 +g81669 +S'was' +p81671 +tp81672 +a(g81669 +g81671 +S'an' +p81673 +tp81674 +a(g81671 +g81673 +S'expensive' +p81675 +tp81676 +a(g81673 +g81675 +S'process,' +p81677 +tp81678 +a(g81675 +g81677 +S'characteristic' +p81679 +tp81680 +a(g81677 +g81679 +S'only' +p81681 +tp81682 +a(g81679 +g81681 +S'of' +p81683 +tp81684 +a(g81681 +g81683 +S'luxury' +p81685 +tp81686 +a(g81683 +g81685 +S'dolls.' +p81687 +tp81688 +a(g81685 +g81687 +S"belle's" +p81689 +tp81690 +a(g81687 +g81689 +S'arms' +p81691 +tp81692 +a(g81689 +g81691 +S'and' +p81693 +tp81694 +a(g81691 +g81693 +S'legs' +p81695 +tp81696 +a(g81693 +g81695 +S'are' +p81697 +tp81698 +a(g81695 +g81697 +S'also' +p81699 +tp81700 +a(g81697 +g81699 +S'wax,' +p81701 +tp81702 +a(g81699 +g81701 +S'while' +p81703 +tp81704 +a(g81701 +g81703 +S'her' +p81705 +tp81706 +a(g81703 +g81705 +S'torso' +p81707 +tp81708 +a(g81705 +g81707 +S'is' +p81709 +tp81710 +a(g81707 +g81709 +S'made' +p81711 +tp81712 +a(g81709 +g81711 +S'of' +p81713 +tp81714 +a(g81711 +g81713 +S'cloth.' +p81715 +tp81716 +a(g81713 +g81715 +S'her' +p81717 +tp81718 +a(g81715 +g81717 +S'eyes' +p81719 +tp81720 +a(g81717 +g81719 +S'are' +p81721 +tp81722 +a(g81719 +g81721 +S'glass.' +p81723 +tp81724 +a(g81721 +g81723 +S'the' +p81725 +tp81726 +a(g81723 +g81725 +S'overdress' +p81727 +tp81728 +a(g81725 +g81727 +S'with' +p81729 +tp81730 +a(g81727 +g81729 +S'postillion' +p81731 +tp81732 +a(g81729 +g81731 +S'is' +p81733 +tp81734 +a(g81731 +g81733 +S'of' +p81735 +tp81736 +a(g81733 +g81735 +S'black' +p81737 +tp81738 +a(g81735 +g81737 +S'taffeta' +p81739 +tp81740 +a(g81737 +g81739 +S'trimmed' +p81741 +tp81742 +a(g81739 +g81741 +S'with' +p81743 +tp81744 +a(g81741 +g81743 +S'pale' +p81745 +tp81746 +a(g81743 +g81745 +S'pink' +p81747 +tp81748 +a(g81745 +g81747 +S'silk' +p81749 +tp81750 +a(g81747 +g81749 +S'ribbon' +p81751 +tp81752 +a(g81749 +g81751 +S'and' +p81753 +tp81754 +a(g81751 +g81753 +S'black' +p81755 +tp81756 +a(g81753 +g81755 +S'lace;' +p81757 +tp81758 +a(g81755 +g81757 +S'there' +p81759 +tp81760 +a(g81757 +g81759 +S'are' +p81761 +tp81762 +a(g81759 +g81761 +S'pink' +p81763 +tp81764 +a(g81761 +g81763 +S'buttons' +p81765 +tp81766 +a(g81763 +g81765 +S'on' +p81767 +tp81768 +a(g81765 +g81767 +S'the' +p81769 +tp81770 +a(g81767 +g81769 +S'basque,' +p81771 +tp81772 +a(g81769 +g81771 +S'or' +p81773 +tp81774 +a(g81771 +g81773 +S'bodice,' +p81775 +tp81776 +a(g81773 +g81775 +S'and' +p81777 +tp81778 +a(g81775 +g81777 +S'the' +p81779 +tp81780 +a(g81777 +g81779 +S'shoes' +p81781 +tp81782 +a(g81779 +g81781 +S'are' +p81783 +tp81784 +a(g81781 +g81783 +S'bright' +p81785 +tp81786 +a(g81783 +g81785 +S'red' +p81787 +tp81788 +a(g81785 +g81787 +S'and' +p81789 +tp81790 +a(g81787 +g81789 +S'buttoned.' +p81791 +tp81792 +a(g81789 +g81791 +S'her' +p81793 +tp81794 +a(g81791 +g81793 +S'underclothes' +p81795 +tp81796 +a(g81793 +g81795 +S'are' +p81797 +tp81798 +a(g81795 +g81797 +S'trimmed' +p81799 +tp81800 +a(g81797 +g81799 +S'with' +p81801 +tp81802 +a(g81799 +g81801 +S'bands' +p81803 +tp81804 +a(g81801 +g81803 +S'of' +p81805 +tp81806 +a(g81803 +g81805 +S'tucked' +p81807 +tp81808 +a(g81805 +g81807 +S'muslin' +p81809 +tp81810 +a(g81807 +g81809 +S'and' +p81811 +tp81812 +a(g81809 +g81811 +S'lace;' +p81813 +tp81814 +a(g81811 +g81813 +S'there' +p81815 +tp81816 +a(g81813 +g81815 +S'is' +p81817 +tp81818 +a(g81815 +g81817 +S'a' +p81819 +tp81820 +a(g81817 +g81819 +S'pink' +p81821 +tp81822 +a(g81819 +g81821 +S'edge' +p81823 +tp81824 +a(g81821 +g81823 +S'on' +p81825 +tp81826 +a(g81823 +g81825 +S'the' +p81827 +tp81828 +a(g81825 +g81827 +S'dainty' +p81829 +tp81830 +a(g81827 +g81829 +S'lace' +p81831 +tp81832 +a(g81829 +g81831 +S'hose.' +p81833 +tp81834 +a(g81831 +g81833 +S'early' +p81835 +tp81836 +a(g81833 +g81835 +S'american' +p81837 +tp81838 +a(g81835 +g81837 +S'dolls' +p81839 +tp81840 +a(g81837 +g81839 +S'are' +p81841 +tp81842 +a(g81839 +g81841 +S'shown' +p81843 +tp81844 +a(g81841 +g81843 +S'in' +p81845 +tp81846 +a(g81843 +g81845 +S'a' +p81847 +tp81848 +a(g81845 +g81847 +S'wide' +p81849 +tp81850 +a(g81847 +g81849 +S'variety' +p81851 +tp81852 +a(g81849 +g81851 +S'of' +p81853 +tp81854 +a(g81851 +g81853 +S'costumes.' +p81855 +tp81856 +a(g81853 +g81855 +S'this' +p81857 +tp81858 +a(g81855 +g81857 +S'fine' +p81859 +tp81860 +a(g81857 +g81859 +S'doll' +p81861 +tp81862 +a(g81859 +g81861 +S'of' +p81863 +tp81864 +a(g81861 +g81863 +S'the' +p81865 +tp81866 +a(g81863 +g81865 +S'eighteenth' +p81867 +tp81868 +a(g81865 +g81867 +S'century' +p81869 +tp81870 +a(g81867 +g81869 +S'represents' +p81871 +tp81872 +a(g81869 +g81871 +S'a' +p81873 +tp81874 +a(g81871 +g81873 +S'quaker' +p81875 +tp81876 +a(g81873 +g81875 +S'woman.' +p81877 +tp81878 +a(g81875 +g81877 +S'the' +p81879 +tp81880 +a(g81877 +g81879 +S"doll's" +p81881 +tp81882 +a(g81879 +g81881 +S'head,' +p81883 +tp81884 +a(g81881 +g81883 +S'arms,' +p81885 +tp81886 +a(g81883 +g81885 +S'and' +p81887 +tp81888 +a(g81885 +g81887 +S'legs' +p81889 +tp81890 +a(g81887 +g81889 +S'are' +p81891 +tp81892 +a(g81889 +g81891 +S'made' +p81893 +tp81894 +a(g81891 +g81893 +S'of' +p81895 +tp81896 +a(g81893 +g81895 +S'carved' +p81897 +tp81898 +a(g81895 +g81897 +S'and' +p81899 +tp81900 +a(g81897 +g81899 +S'painted' +p81901 +tp81902 +a(g81899 +g81901 +S'wood.' +p81903 +tp81904 +a(g81901 +g81903 +S'throughout' +p81905 +tp81906 +a(g81903 +g81905 +S'history,' +p81907 +tp81908 +a(g81905 +g81907 +S'wood' +p81909 +tp81910 +a(g81907 +g81909 +S'has' +p81911 +tp81912 +a(g81909 +g81911 +S'been' +p81913 +tp81914 +a(g81911 +g81913 +S'one' +p81915 +tp81916 +a(g81913 +g81915 +S'of' +p81917 +tp81918 +a(g81915 +g81917 +S'the' +p81919 +tp81920 +a(g81917 +g81919 +S'most' +p81921 +tp81922 +a(g81919 +g81921 +S'frequently' +p81923 +tp81924 +a(g81921 +g81923 +S'used' +p81925 +tp81926 +a(g81923 +g81925 +S'materials' +p81927 +tp81928 +a(g81925 +g81927 +S'for' +p81929 +tp81930 +a(g81927 +g81929 +S'making' +p81931 +tp81932 +a(g81929 +g81931 +S'dolls.' +p81933 +tp81934 +a(g81931 +g81933 +S'for' +p81935 +tp81936 +a(g81933 +g81935 +S'many' +p81937 +tp81938 +a(g81935 +g81937 +S'dollmakers,' +p81939 +tp81940 +a(g81937 +g81939 +S'it' +p81941 +tp81942 +a(g81939 +g81941 +S'was' +p81943 +tp81944 +a(g81941 +g81943 +S'both' +p81945 +tp81946 +a(g81943 +g81945 +S'readily' +p81947 +tp81948 +a(g81945 +g81947 +S'available' +p81949 +tp81950 +a(g81947 +g81949 +S'and' +p81951 +tp81952 +a(g81949 +g81951 +S'inexpensive.' +p81953 +tp81954 +a(g81951 +g81953 +S'the' +p81955 +tp81956 +a(g81953 +g81955 +S'fashions' +p81957 +tp81958 +a(g81955 +g81957 +S'and' +p81959 +tp81960 +a(g81957 +g81959 +S'tastes' +p81961 +tp81962 +a(g81959 +g81961 +S'of' +p81963 +tp81964 +a(g81961 +g81963 +S'a' +p81965 +tp81966 +a(g81963 +g81965 +S'particular' +p81967 +tp81968 +a(g81965 +g81967 +S'era' +p81969 +tp81970 +a(g81967 +g81969 +S'may' +p81971 +tp81972 +a(g81969 +g81971 +S'often' +p81973 +tp81974 +a(g81971 +g81973 +S'be' +p81975 +tp81976 +a(g81973 +g81975 +S'reflected' +p81977 +tp81978 +a(g81975 +g81977 +S'in' +p81979 +tp81980 +a(g81977 +g81979 +S'its' +p81981 +tp81982 +a(g81979 +g81981 +S'dolls.' +p81983 +tp81984 +a(g81981 +g81983 +S'this' +p81985 +tp81986 +a(g81983 +g81985 +S'parian' +p81987 +tp81988 +a(g81985 +g81987 +S'bisque' +p81989 +tp81990 +a(g81987 +g81989 +S'doll,' +p81991 +tp81992 +a(g81989 +g81991 +S'dated' +p81993 +tp81994 +a(g81991 +g81993 +S'between' +p81995 +tp81996 +a(g81993 +g81995 +S'1840' +p81997 +tp81998 +a(g81995 +g81997 +S'and' +p81999 +tp82000 +a(g81997 +g81999 +S'1860,' +p82001 +tp82002 +a(g81999 +g82001 +S'wears' +p82003 +tp82004 +a(g82001 +g82003 +S'a' +p82005 +tp82006 +a(g82003 +g82005 +S'costume' +p82007 +tp82008 +a(g82005 +g82007 +S'of' +p82009 +tp82010 +a(g82007 +g82009 +S'sprigged' +p82011 +tp82012 +a(g82009 +g82011 +S'wool' +p82013 +tp82014 +a(g82011 +g82013 +S'challis' +p82015 +tp82016 +a(g82013 +g82015 +S'edged' +p82017 +tp82018 +a(g82015 +g82017 +S'with' +p82019 +tp82020 +a(g82017 +g82019 +S'coordinated' +p82021 +tp82022 +a(g82019 +g82021 +S'braid;' +p82023 +tp82024 +a(g82021 +g82023 +S'the' +p82025 +tp82026 +a(g82023 +g82025 +S'bonnet' +p82027 +tp82028 +a(g82025 +g82027 +S'is' +p82029 +tp82030 +a(g82027 +g82029 +S'velvet' +p82031 +tp82032 +a(g82029 +g82031 +S'edged' +p82033 +tp82034 +a(g82031 +g82033 +S'with' +p82035 +tp82036 +a(g82033 +g82035 +S'black' +p82037 +tp82038 +a(g82035 +g82037 +S'fringe.' +p82039 +tp82040 +a(g82037 +g82039 +S'the' +p82041 +tp82042 +a(g82039 +g82041 +S'style' +p82043 +tp82044 +a(g82041 +g82043 +S'dates' +p82045 +tp82046 +a(g82043 +g82045 +S'from' +p82047 +tp82048 +a(g82045 +g82047 +S'about' +p82049 +tp82050 +a(g82047 +g82049 +S'1850' +p82051 +tp82052 +a(g82049 +g82051 +S'when' +p82053 +tp82054 +a(g82051 +g82053 +S'patterned' +p82055 +tp82056 +a(g82053 +g82055 +S'fabrics' +p82057 +tp82058 +a(g82055 +g82057 +S'such' +p82059 +tp82060 +a(g82057 +g82059 +S'as' +p82061 +tp82062 +a(g82059 +g82061 +S'this' +p82063 +tp82064 +a(g82061 +g82063 +S'were' +p82065 +tp82066 +a(g82063 +g82065 +S'fashionable.' +p82067 +tp82068 +a(g82065 +g82067 +S'the' +p82069 +tp82070 +a(g82067 +g82069 +S"doll's" +p82071 +tp82072 +a(g82069 +g82071 +S'hairstyle' +p82073 +tp82074 +a(g82071 +g82073 +S'imitates' +p82075 +tp82076 +a(g82073 +g82075 +S'one' +p82077 +tp82078 +a(g82075 +g82077 +S'popular' +p82079 +tp82080 +a(g82077 +g82079 +S'with' +p82081 +tp82082 +a(g82079 +g82081 +S'children' +p82083 +tp82084 +a(g82081 +g82083 +S'between' +p82085 +tp82086 +a(g82083 +g82085 +S'the' +p82087 +tp82088 +a(g82085 +g82087 +S'1830s' +p82089 +tp82090 +a(g82087 +g82089 +S'and' +p82091 +tp82092 +a(g82089 +g82091 +S'1860s.' +p82093 +tp82094 +a(g82091 +g82093 +S'this' +p82095 +tp82096 +a(g82093 +g82095 +S'doll' +p82097 +tp82098 +a(g82095 +g82097 +S'has' +p82099 +tp82100 +a(g82097 +g82099 +S'a' +p82101 +tp82102 +a(g82099 +g82101 +S'fine' +p82103 +tp82104 +a(g82101 +g82103 +S'china' +p82105 +tp82106 +a(g82103 +g82105 +S'head.' +p82107 +tp82108 +a(g82105 +g82107 +S'she' +p82109 +tp82110 +a(g82107 +g82109 +S'wears' +p82111 +tp82112 +a(g82109 +g82111 +S'a' +p82113 +tp82114 +a(g82111 +g82113 +S'black' +p82115 +tp82116 +a(g82113 +g82115 +S'bonnet' +p82117 +tp82118 +a(g82115 +g82117 +S'over' +p82119 +tp82120 +a(g82117 +g82119 +S'a' +p82121 +tp82122 +a(g82119 +g82121 +S'close-fitting' +p82123 +tp82124 +a(g82121 +g82123 +S'white' +p82125 +tp82126 +a(g82123 +g82125 +S'cap.' +p82127 +tp82128 +a(g82125 +g82127 +S'her' +p82129 +tp82130 +a(g82127 +g82129 +S'dress' +p82131 +tp82132 +a(g82129 +g82131 +S'of' +p82133 +tp82134 +a(g82131 +g82133 +S'taupe' +p82135 +tp82136 +a(g82133 +g82135 +S'silk' +p82137 +tp82138 +a(g82135 +g82137 +S'has' +p82139 +tp82140 +a(g82137 +g82139 +S'a' +p82141 +tp82142 +a(g82139 +g82141 +S'full-gathered' +p82143 +tp82144 +a(g82141 +g82143 +S'skirt.' +p82145 +tp82146 +a(g82143 +g82145 +S'a' +p82147 +tp82148 +a(g82145 +g82147 +S'white' +p82149 +tp82150 +a(g82147 +g82149 +S'shawl' +p82151 +tp82152 +a(g82149 +g82151 +S'is' +p82153 +tp82154 +a(g82151 +g82153 +S'pinned' +p82155 +tp82156 +a(g82153 +g82155 +S'at' +p82157 +tp82158 +a(g82155 +g82157 +S'the' +p82159 +tp82160 +a(g82157 +g82159 +S'waist' +p82161 +tp82162 +a(g82159 +g82161 +S'with' +p82163 +tp82164 +a(g82161 +g82163 +S'an' +p82165 +tp82166 +a(g82163 +g82165 +S'organdy' +p82167 +tp82168 +a(g82165 +g82167 +S'kerchief' +p82169 +tp82170 +a(g82167 +g82169 +S'under' +p82171 +tp82172 +a(g82169 +g82171 +S'it.' +p82173 +tp82174 +a(g82171 +g82173 +S'three' +p82175 +tp82176 +a(g82173 +g82175 +S'white' +p82177 +tp82178 +a(g82175 +g82177 +S'petticoats' +p82179 +tp82180 +a(g82177 +g82179 +S'and' +p82181 +tp82182 +a(g82179 +g82181 +S'pantalettes' +p82183 +tp82184 +a(g82181 +g82183 +S'are' +p82185 +tp82186 +a(g82183 +g82185 +S'under' +p82187 +tp82188 +a(g82185 +g82187 +S'her' +p82189 +tp82190 +a(g82187 +g82189 +S'dress,' +p82191 +tp82192 +a(g82189 +g82191 +S'and' +p82193 +tp82194 +a(g82191 +g82193 +S'she' +p82195 +tp82196 +a(g82193 +g82195 +S'wears' +p82197 +tp82198 +a(g82195 +g82197 +S'high' +p82199 +tp82200 +a(g82197 +g82199 +S'black' +p82201 +tp82202 +a(g82199 +g82201 +S'shoes.' +p82203 +tp82204 +a(g82201 +g82203 +S'this' +p82205 +tp82206 +a(g82203 +g82205 +S'doll' +p82207 +tp82208 +a(g82205 +g82207 +S'dates' +p82209 +tp82210 +a(g82207 +g82209 +S'from' +p82211 +tp82212 +a(g82209 +g82211 +S'the' +p82213 +tp82214 +a(g82211 +g82213 +S'1840s' +p82215 +tp82216 +a(g82213 +g82215 +S'or' +p82217 +tp82218 +a(g82215 +g82217 +S'1850s,' +p82219 +tp82220 +a(g82217 +g82219 +S'when' +p82221 +tp82222 +a(g82219 +g82221 +S'china' +p82223 +tp82224 +a(g82221 +g82223 +S'dolls' +p82225 +tp82226 +a(g82223 +g82225 +S'were' +p82227 +tp82228 +a(g82225 +g82227 +S'becoming' +p82229 +tp82230 +a(g82227 +g82229 +S'popular.' +p82231 +tp82232 +a(g82229 +g82231 +S'unlike' +p82233 +tp82234 +a(g82231 +g82233 +S'the' +p82235 +tp82236 +a(g82233 +g82235 +S'all-cloth' +p82237 +tp82238 +a(g82235 +g82237 +S'dolls' +p82239 +tp82240 +a(g82237 +g82239 +S'that' +p82241 +tp82242 +a(g82239 +g82241 +S'were' +p82243 +tp82244 +a(g82241 +g82243 +S'often' +p82245 +tp82246 +a(g82243 +g82245 +S'homemade' +p82247 +tp82248 +a(g82245 +g82247 +S'in' +p82249 +tp82250 +a(g82247 +g82249 +S'early' +p82251 +tp82252 +a(g82249 +g82251 +S'america,' +p82253 +tp82254 +a(g82251 +g82253 +S'china' +p82255 +tp82256 +a(g82253 +g82255 +S'and' +p82257 +tp82258 +a(g82255 +g82257 +S'bisque' +p82259 +tp82260 +a(g82257 +g82259 +S'dolls' +p82261 +tp82262 +a(g82259 +g82261 +S'were' +p82263 +tp82264 +a(g82261 +g82263 +S'produced' +p82265 +tp82266 +a(g82263 +g82265 +S'in' +p82267 +tp82268 +a(g82265 +g82267 +S'factories.' +p82269 +tp82270 +a(g82267 +g82269 +S'papier-mâché' +p82271 +tp82272 +a(g82269 +g82271 +S'was' +p82273 +tp82274 +a(g82271 +g82273 +S'a' +p82275 +tp82276 +a(g82273 +g82275 +S'widely' +p82277 +tp82278 +a(g82275 +g82277 +S'used' +p82279 +tp82280 +a(g82277 +g82279 +S'substance' +p82281 +tp82282 +a(g82279 +g82281 +S'for' +p82283 +tp82284 +a(g82281 +g82283 +S'making' +p82285 +tp82286 +a(g82283 +g82285 +S'dolls.' +p82287 +tp82288 +a(g82285 +g82287 +S'papier-mâché' +p82289 +tp82290 +a(g82287 +g82289 +S'itself' +p82291 +tp82292 +a(g82289 +g82291 +S'is' +p82293 +tp82294 +a(g82291 +g82293 +S'a' +p82295 +tp82296 +a(g82293 +g82295 +S'composition' +p82297 +tp82298 +a(g82295 +g82297 +S'made' +p82299 +tp82300 +a(g82297 +g82299 +S'from' +p82301 +tp82302 +a(g82299 +g82301 +S'paper' +p82303 +tp82304 +a(g82301 +g82303 +S'pulp' +p82305 +tp82306 +a(g82303 +g82305 +S'combined' +p82307 +tp82308 +a(g82305 +g82307 +S'with' +p82309 +tp82310 +a(g82307 +g82309 +S'various' +p82311 +tp82312 +a(g82309 +g82311 +S'other' +p82313 +tp82314 +a(g82311 +g82313 +S'substances.' +p82315 +tp82316 +a(g82313 +g82315 +S'dolls' +p82317 +tp82318 +a(g82315 +g82317 +S'made' +p82319 +tp82320 +a(g82317 +g82319 +S'of' +p82321 +tp82322 +a(g82319 +g82321 +S'this' +p82323 +tp82324 +a(g82321 +g82323 +S'material' +p82325 +tp82326 +a(g82323 +g82325 +S'reached' +p82327 +tp82328 +a(g82325 +g82327 +S'a' +p82329 +tp82330 +a(g82327 +g82329 +S'height' +p82331 +tp82332 +a(g82329 +g82331 +S'of' +p82333 +tp82334 +a(g82331 +g82333 +S'popularity' +p82335 +tp82336 +a(g82333 +g82335 +S'in' +p82337 +tp82338 +a(g82335 +g82337 +S'the' +p82339 +tp82340 +a(g82337 +g82339 +S'mid-nineteenth' +p82341 +tp82342 +a(g82339 +g82341 +S'century.' +p82343 +tp82344 +a(g82341 +g82343 +S'they' +p82345 +tp82346 +a(g82343 +g82345 +S'first' +p82347 +tp82348 +a(g82345 +g82347 +S'appeared' +p82349 +tp82350 +a(g82347 +g82349 +S'much' +p82351 +tp82352 +a(g82349 +g82351 +S'earlier,' +p82353 +tp82354 +a(g82351 +g82353 +S'however.' +p82355 +tp82356 +a(g82353 +g82355 +S'edouard' +p82357 +tp82358 +a(g82355 +g82357 +S"fournier's" +p82359 +tp82360 +a(g82357 +g82359 +S'in' +p82361 +tp82362 +a(g82359 +g82361 +S'1862,' +p82363 +tp82364 +a(g82361 +g82363 +S'enuch' +p82365 +tp82366 +a(g82363 +g82365 +S'rice' +p82367 +tp82368 +a(g82365 +g82367 +S'morrison' +p82369 +tp82370 +a(g82367 +g82369 +S'obtained' +p82371 +tp82372 +a(g82369 +g82371 +S'patents' +p82373 +tp82374 +a(g82371 +g82373 +S'in' +p82375 +tp82376 +a(g82373 +g82375 +S'both' +p82377 +tp82378 +a(g82375 +g82377 +S'england' +p82379 +tp82380 +a(g82377 +g82379 +S'and' +p82381 +tp82382 +a(g82379 +g82381 +S'america' +p82383 +tp82384 +a(g82381 +g82383 +S'for' +p82385 +tp82386 +a(g82383 +g82385 +S'an' +p82387 +tp82388 +a(g82385 +g82387 +S'"autoperipatetikos,"' +p82389 +tp82390 +a(g82387 +g82389 +S'or' +p82391 +tp82392 +a(g82389 +g82391 +S'walking' +p82393 +tp82394 +a(g82391 +g82393 +S'doll.' +p82395 +tp82396 +a(g82393 +g82395 +S'the' +p82397 +tp82398 +a(g82395 +g82397 +S'walking' +p82399 +tp82400 +a(g82397 +g82399 +S'mechanism' +p82401 +tp82402 +a(g82399 +g82401 +S'was' +p82403 +tp82404 +a(g82401 +g82403 +S'operated' +p82405 +tp82406 +a(g82403 +g82405 +S'by' +p82407 +tp82408 +a(g82405 +g82407 +S'a' +p82409 +tp82410 +a(g82407 +g82409 +S'clock' +p82411 +tp82412 +a(g82409 +g82411 +S'spring.' +p82413 +tp82414 +a(g82411 +g82413 +S'the' +p82415 +tp82416 +a(g82413 +g82415 +S'underside' +p82417 +tp82418 +a(g82415 +g82417 +S'of' +p82419 +tp82420 +a(g82417 +g82419 +S'the' +p82421 +tp82422 +a(g82419 +g82421 +S'mechanism' +p82423 +tp82424 +a(g82421 +g82423 +S'is' +p82425 +tp82426 +a(g82423 +g82425 +S'illustrated' +p82427 +tp82428 +a(g82425 +g82427 +S'at' +p82429 +tp82430 +a(g82427 +g82429 +S'the' +p82431 +tp82432 +a(g82429 +g82431 +S'upper' +p82433 +tp82434 +a(g82431 +g82433 +S'left.' +p82435 +tp82436 +a(g82433 +g82435 +S'it' +p82437 +tp82438 +a(g82435 +g82437 +S'is' +p82439 +tp82440 +a(g82437 +g82439 +S'encased' +p82441 +tp82442 +a(g82439 +g82441 +S'in' +p82443 +tp82444 +a(g82441 +g82443 +S'a' +p82445 +tp82446 +a(g82443 +g82445 +S'wooden' +p82447 +tp82448 +a(g82445 +g82447 +S'base' +p82449 +tp82450 +a(g82447 +g82449 +S'attached' +p82451 +tp82452 +a(g82449 +g82451 +S'to' +p82453 +tp82454 +a(g82451 +g82453 +S'the' +p82455 +tp82456 +a(g82453 +g82455 +S'doll' +p82457 +tp82458 +a(g82455 +g82457 +S'with' +p82459 +tp82460 +a(g82457 +g82459 +S'papier-mâché' +p82461 +tp82462 +a(g82459 +g82461 +S'backwheel' +p82463 +tp82464 +a(g82461 +g82463 +S'pivots.' +p82465 +tp82466 +a(g82463 +g82465 +S'the' +p82467 +tp82468 +a(g82465 +g82467 +S'heads' +p82469 +tp82470 +a(g82467 +g82469 +S'of' +p82471 +tp82472 +a(g82469 +g82471 +S'walking' +p82473 +tp82474 +a(g82471 +g82473 +S'dolls' +p82475 +tp82476 +a(g82473 +g82475 +S'were' +p82477 +tp82478 +a(g82475 +g82477 +S'made' +p82479 +tp82480 +a(g82477 +g82479 +S'in' +p82481 +tp82482 +a(g82479 +g82481 +S'a' +p82483 +tp82484 +a(g82481 +g82483 +S'variety' +p82485 +tp82486 +a(g82483 +g82485 +S'of' +p82487 +tp82488 +a(g82485 +g82487 +S'materials;' +p82489 +tp82490 +a(g82487 +g82489 +S'this' +p82491 +tp82492 +a(g82489 +g82491 +S'one' +p82493 +tp82494 +a(g82491 +g82493 +S'is' +p82495 +tp82496 +a(g82493 +g82495 +S'parian' +p82497 +tp82498 +a(g82495 +g82497 +S'bisque.' +p82499 +tp82500 +a(g82497 +g82499 +S'the' +p82501 +tp82502 +a(g82499 +g82501 +S'arms' +p82503 +tp82504 +a(g82501 +g82503 +S'are' +p82505 +tp82506 +a(g82503 +g82505 +S'of' +p82507 +tp82508 +a(g82505 +g82507 +S'kid.' +p82509 +tp82510 +a(g82507 +g82509 +S'the' +p82511 +tp82512 +a(g82509 +g82511 +S"doll's" +p82513 +tp82514 +a(g82511 +g82513 +S'black' +p82515 +tp82516 +a(g82513 +g82515 +S'moiré' +p82517 +tp82518 +a(g82515 +g82517 +S'dress' +p82519 +tp82520 +a(g82517 +g82519 +S'is' +p82521 +tp82522 +a(g82519 +g82521 +S'trimmed' +p82523 +tp82524 +a(g82521 +g82523 +S'with' +p82525 +tp82526 +a(g82523 +g82525 +S'black' +p82527 +tp82528 +a(g82525 +g82527 +S'lace.' +p82529 +tp82530 +a(g82527 +g82529 +S'here' +p82531 +tp82532 +a(g82529 +g82531 +S'is' +p82533 +tp82534 +a(g82531 +g82533 +S'a' +p82535 +tp82536 +a(g82533 +g82535 +S'handmade' +p82537 +tp82538 +a(g82535 +g82537 +S'cloth' +p82539 +tp82540 +a(g82537 +g82539 +S'doll' +p82541 +tp82542 +a(g82539 +g82541 +S'representing' +p82543 +tp82544 +a(g82541 +g82543 +S'a' +p82545 +tp82546 +a(g82543 +g82545 +S'grandmother' +p82547 +tp82548 +a(g82545 +g82547 +S'knitting' +p82549 +tp82550 +a(g82547 +g82549 +S'a' +p82551 +tp82552 +a(g82549 +g82551 +S'red' +p82553 +tp82554 +a(g82551 +g82553 +S'wool' +p82555 +tp82556 +a(g82553 +g82555 +S'sock.' +p82557 +tp82558 +a(g82555 +g82557 +S'the' +p82559 +tp82560 +a(g82557 +g82559 +S'doll' +p82561 +tp82562 +a(g82559 +g82561 +S'was' +p82563 +tp82564 +a(g82561 +g82563 +S'made' +p82565 +tp82566 +a(g82563 +g82565 +S'by' +p82567 +tp82568 +a(g82565 +g82567 +S'a' +p82569 +tp82570 +a(g82567 +g82569 +S'southern' +p82571 +tp82572 +a(g82569 +g82571 +S'gentlewoman' +p82573 +tp82574 +a(g82571 +g82573 +S'who' +p82575 +tp82576 +a(g82573 +g82575 +S'supported' +p82577 +tp82578 +a(g82575 +g82577 +S'herself' +p82579 +tp82580 +a(g82577 +g82579 +S'after' +p82581 +tp82582 +a(g82579 +g82581 +S'the' +p82583 +tp82584 +a(g82581 +g82583 +S'civil' +p82585 +tp82586 +a(g82583 +g82585 +S'war' +p82587 +tp82588 +a(g82585 +g82587 +S'by' +p82589 +tp82590 +a(g82587 +g82589 +S'making' +p82591 +tp82592 +a(g82589 +g82591 +S'fine' +p82593 +tp82594 +a(g82591 +g82593 +S'cloth' +p82595 +tp82596 +a(g82593 +g82595 +S'dolls.' +p82597 +tp82598 +a(g82595 +g82597 +S'this' +p82599 +tp82600 +a(g82597 +g82599 +S'was' +p82601 +tp82602 +a(g82599 +g82601 +S'the' +p82603 +tp82604 +a(g82601 +g82603 +S'one-thousandth' +p82605 +tp82606 +a(g82603 +g82605 +S'doll' +p82607 +tp82608 +a(g82605 +g82607 +S'made' +p82609 +tp82610 +a(g82607 +g82609 +S'by' +p82611 +tp82612 +a(g82609 +g82611 +S'this' +p82613 +tp82614 +a(g82611 +g82613 +S'woman.' +p82615 +tp82616 +a(g82613 +g82615 +S'hundreds' +p82617 +tp82618 +a(g82615 +g82617 +S'of' +p82619 +tp82620 +a(g82617 +g82619 +S'dolls' +p82621 +tp82622 +a(g82619 +g82621 +S'made' +p82623 +tp82624 +a(g82621 +g82623 +S'by' +p82625 +tp82626 +a(g82623 +g82625 +S'american' +p82627 +tp82628 +a(g82625 +g82627 +S'indians' +p82629 +tp82630 +a(g82627 +g82629 +S'have' +p82631 +tp82632 +a(g82629 +g82631 +S'survived' +p82633 +tp82634 +a(g82631 +g82633 +S'in' +p82635 +tp82636 +a(g82633 +g82635 +S'public' +p82637 +tp82638 +a(g82635 +g82637 +S'and' +p82639 +tp82640 +a(g82637 +g82639 +S'private' +p82641 +tp82642 +a(g82639 +g82641 +S'collections.' +p82643 +tp82644 +a(g82641 +g82643 +S'these' +p82645 +tp82646 +a(g82643 +g82645 +S'two' +p82647 +tp82648 +a(g82645 +g82647 +S'apache' +p82649 +tp82650 +a(g82647 +g82649 +S'women' +p82651 +tp82652 +a(g82649 +g82651 +S'in' +p82653 +tp82654 +a(g82651 +g82653 +S'voluminous,' +p82655 +tp82656 +a(g82653 +g82655 +S'bright' +p82657 +tp82658 +a(g82655 +g82657 +S'cotton' +p82659 +tp82660 +a(g82657 +g82659 +S'dresses' +p82661 +tp82662 +a(g82659 +g82661 +S'were' +p82663 +tp82664 +a(g82661 +g82663 +S'made' +p82665 +tp82666 +a(g82663 +g82665 +S'in' +p82667 +tp82668 +a(g82665 +g82667 +S'arizona' +p82669 +tp82670 +a(g82667 +g82669 +S'around' +p82671 +tp82672 +a(g82669 +g82671 +S'1900.' +p82673 +tp82674 +a(g82671 +g82673 +S'they' +p82675 +tp82676 +a(g82673 +g82675 +S'were' +p82677 +tp82678 +a(g82675 +g82677 +S'passed' +p82679 +tp82680 +a(g82677 +g82679 +S'along' +p82681 +tp82682 +a(g82679 +g82681 +S'from' +p82683 +tp82684 +a(g82681 +g82683 +S'anna' +p82685 +tp82686 +a(g82683 +g82685 +S'kittare' +p82687 +tp82688 +a(g82685 +g82687 +S'of' +p82689 +tp82690 +a(g82687 +g82689 +S'san' +p82691 +tp82692 +a(g82689 +g82691 +S'carlos,' +p82693 +tp82694 +a(g82691 +g82693 +S'arizona,' +p82695 +tp82696 +a(g82693 +g82695 +S'the' +p82697 +tp82698 +a(g82695 +g82697 +S'original' +p82699 +tp82700 +a(g82697 +g82699 +S'owner,' +p82701 +tp82702 +a(g82699 +g82701 +S'until' +p82703 +tp82704 +a(g82701 +g82703 +S'they' +p82705 +tp82706 +a(g82703 +g82705 +S'found' +p82707 +tp82708 +a(g82705 +g82707 +S'a' +p82709 +tp82710 +a(g82707 +g82709 +S'permanent' +p82711 +tp82712 +a(g82709 +g82711 +S'home' +p82713 +tp82714 +a(g82711 +g82713 +S'in' +p82715 +tp82716 +a(g82713 +g82715 +S'massachusetts' +p82717 +tp82718 +a(g82715 +g82717 +S'at' +p82719 +tp82720 +a(g82717 +g82719 +S'the' +p82721 +tp82722 +a(g82719 +g82721 +S'wenham' +p82723 +tp82724 +a(g82721 +g82723 +S'historical' +p82725 +tp82726 +a(g82723 +g82725 +S'society.' +p82727 +tp82728 +a(g82725 +g82727 +S'the' +p82729 +tp82730 +a(g82727 +g82729 +S'dolls' +p82731 +tp82732 +a(g82729 +g82731 +S'have' +p82733 +tp82734 +a(g82731 +g82733 +S'cloth' +p82735 +tp82736 +a(g82733 +g82735 +S'bodies' +p82737 +tp82738 +a(g82735 +g82737 +S'and' +p82739 +tp82740 +a(g82737 +g82739 +S'yarn' +p82741 +tp82742 +a(g82739 +g82741 +S'hair.' +p82743 +tp82744 +a(g82741 +g82743 +S'carved' +p82745 +tp82746 +a(g82743 +g82745 +S'nuts' +p82747 +tp82748 +a(g82745 +g82747 +S'formed' +p82749 +tp82750 +a(g82747 +g82749 +S'the' +p82751 +tp82752 +a(g82749 +g82751 +S'heads' +p82753 +tp82754 +a(g82751 +g82753 +S'of' +p82755 +tp82756 +a(g82753 +g82755 +S'many' +p82757 +tp82758 +a(g82755 +g82757 +S'early' +p82759 +tp82760 +a(g82757 +g82759 +S'dolls.' +p82761 +tp82762 +a(g82759 +g82761 +S'different' +p82763 +tp82764 +a(g82761 +g82763 +S'kinds' +p82765 +tp82766 +a(g82763 +g82765 +S'of' +p82767 +tp82768 +a(g82765 +g82767 +S'nuts' +p82769 +tp82770 +a(g82767 +g82769 +S'were' +p82771 +tp82772 +a(g82769 +g82771 +S'used:' +p82773 +tp82774 +a(g82771 +g82773 +S'hazelnuts,' +p82775 +tp82776 +a(g82773 +g82775 +S'walnuts,' +p82777 +tp82778 +a(g82775 +g82777 +S'hickory' +p82779 +tp82780 +a(g82777 +g82779 +S'nuts,' +p82781 +tp82782 +a(g82779 +g82781 +S'and' +p82783 +tp82784 +a(g82781 +g82783 +S'even' +p82785 +tp82786 +a(g82783 +g82785 +S'cashews.' +p82787 +tp82788 +a(g82785 +g82787 +S'these' +p82789 +tp82790 +a(g82787 +g82789 +S'dolls' +p82791 +tp82792 +a(g82789 +g82791 +S'were' +p82793 +tp82794 +a(g82791 +g82793 +S'expendable' +p82795 +tp82796 +a(g82793 +g82795 +S'and' +p82797 +tp82798 +a(g82795 +g82797 +S'could' +p82799 +tp82800 +a(g82797 +g82799 +S'be' +p82801 +tp82802 +a(g82799 +g82801 +S'discarded' +p82803 +tp82804 +a(g82801 +g82803 +S'when' +p82805 +tp82806 +a(g82803 +g82805 +S'the' +p82807 +tp82808 +a(g82805 +g82807 +S'children' +p82809 +tp82810 +a(g82807 +g82809 +S'began' +p82811 +tp82812 +a(g82809 +g82811 +S'to' +p82813 +tp82814 +a(g82811 +g82813 +S'tire' +p82815 +tp82816 +a(g82813 +g82815 +S'of' +p82817 +tp82818 +a(g82815 +g82817 +S'them.' +p82819 +tp82820 +a(g82817 +g82819 +S'this' +p82821 +tp82822 +a(g82819 +g82821 +S'example' +p82823 +tp82824 +a(g82821 +g82823 +S'represents' +p82825 +tp82826 +a(g82823 +g82825 +S'a' +p82827 +tp82828 +a(g82825 +g82827 +S'colonial' +p82829 +tp82830 +a(g82827 +g82829 +S'gentlemen' +p82831 +tp82832 +a(g82829 +g82831 +S'with' +p82833 +tp82834 +a(g82831 +g82833 +S'elegant' +p82835 +tp82836 +a(g82833 +g82835 +S'clothes' +p82837 +tp82838 +a(g82835 +g82837 +S'and' +p82839 +tp82840 +a(g82837 +g82839 +S'a' +p82841 +tp82842 +a(g82839 +g82841 +S'wise' +p82843 +tp82844 +a(g82841 +g82843 +S'expression.' +p82845 +tp82846 +a(g82843 +g82845 +S'the' +p82847 +tp82848 +a(g82845 +g82847 +S'doll' +p82849 +tp82850 +a(g82847 +g82849 +S'is' +p82851 +tp82852 +a(g82849 +g82851 +S'from' +p82853 +tp82854 +a(g82851 +g82853 +S'wisconsin' +p82855 +tp82856 +a(g82853 +g82855 +S'and' +p82857 +tp82858 +a(g82855 +g82857 +S'was' +p82859 +tp82860 +a(g82857 +g82859 +S'made' +p82861 +tp82862 +a(g82859 +g82861 +S'in' +p82863 +tp82864 +a(g82861 +g82863 +S'the' +p82865 +tp82866 +a(g82863 +g82865 +S'eighteenth' +p82867 +tp82868 +a(g82865 +g82867 +S'century.' +p82869 +tp82870 +a(g82867 +g82869 +S'this' +p82871 +tp82872 +a(g82869 +g82871 +S'apple-head' +p82873 +tp82874 +a(g82871 +g82873 +S'trio' +p82875 +tp82876 +a(g82873 +g82875 +S'was' +p82877 +tp82878 +a(g82875 +g82877 +S'designed' +p82879 +tp82880 +a(g82877 +g82879 +S'and' +p82881 +tp82882 +a(g82879 +g82881 +S'made' +p82883 +tp82884 +a(g82881 +g82883 +S'in' +p82885 +tp82886 +a(g82883 +g82885 +S'north' +p82887 +tp82888 +a(g82885 +g82887 +S'carolina' +p82889 +tp82890 +a(g82887 +g82889 +S'about' +p82891 +tp82892 +a(g82889 +g82891 +S'1892.' +p82893 +tp82894 +a(g82891 +g82893 +S'apple-head' +p82895 +tp82896 +a(g82893 +g82895 +S'dolls' +p82897 +tp82898 +a(g82895 +g82897 +S'probably' +p82899 +tp82900 +a(g82897 +g82899 +S'originated' +p82901 +tp82902 +a(g82899 +g82901 +S'with' +p82903 +tp82904 +a(g82901 +g82903 +S'the' +p82905 +tp82906 +a(g82903 +g82905 +S'iroquois' +p82907 +tp82908 +a(g82905 +g82907 +S'indians.' +p82909 +tp82910 +a(g82907 +g82909 +S'the' +p82911 +tp82912 +a(g82909 +g82911 +S'expression' +p82913 +tp82914 +a(g82911 +g82913 +S'on' +p82915 +tp82916 +a(g82913 +g82915 +S'the' +p82917 +tp82918 +a(g82915 +g82917 +S'face' +p82919 +tp82920 +a(g82917 +g82919 +S'was' +p82921 +tp82922 +a(g82919 +g82921 +S'produced' +p82923 +tp82924 +a(g82921 +g82923 +S'by' +p82925 +tp82926 +a(g82923 +g82925 +S'pinching' +p82927 +tp82928 +a(g82925 +g82927 +S'the' +p82929 +tp82930 +a(g82927 +g82929 +S'surface' +p82931 +tp82932 +a(g82929 +g82931 +S'of' +p82933 +tp82934 +a(g82931 +g82933 +S'the' +p82935 +tp82936 +a(g82933 +g82935 +S'apple' +p82937 +tp82938 +a(g82935 +g82937 +S'when' +p82939 +tp82940 +a(g82937 +g82939 +S'it' +p82941 +tp82942 +a(g82939 +g82941 +S'began' +p82943 +tp82944 +a(g82941 +g82943 +S'to' +p82945 +tp82946 +a(g82943 +g82945 +S'shrink.' +p82947 +tp82948 +a(g82945 +g82947 +S'the' +p82949 +tp82950 +a(g82947 +g82949 +S'range' +p82951 +tp82952 +a(g82949 +g82951 +S'of' +p82953 +tp82954 +a(g82951 +g82953 +S'materials' +p82955 +tp82956 +a(g82953 +g82955 +S'used' +p82957 +tp82958 +a(g82955 +g82957 +S'to' +p82959 +tp82960 +a(g82957 +g82959 +S'make' +p82961 +tp82962 +a(g82959 +g82961 +S'dolls' +p82963 +tp82964 +a(g82961 +g82963 +S'shows' +p82965 +tp82966 +a(g82963 +g82965 +S'great' +p82967 +tp82968 +a(g82965 +g82967 +S'ingenuity.' +p82969 +tp82970 +a(g82967 +g82969 +S'in' +p82971 +tp82972 +a(g82969 +g82971 +S'the' +p82973 +tp82974 +a(g82971 +g82973 +S'eighteenth' +p82975 +tp82976 +a(g82973 +g82975 +S'and' +p82977 +tp82978 +a(g82975 +g82977 +S'early' +p82979 +tp82980 +a(g82977 +g82979 +S'nineteenth' +p82981 +tp82982 +a(g82979 +g82981 +S'centuries,' +p82983 +tp82984 +a(g82981 +g82983 +S'a' +p82985 +tp82986 +a(g82983 +g82985 +S'number' +p82987 +tp82988 +a(g82985 +g82987 +S'of' +p82989 +tp82990 +a(g82987 +g82989 +S'american' +p82991 +tp82992 +a(g82989 +g82991 +S'dolls' +p82993 +tp82994 +a(g82991 +g82993 +S'were' +p82995 +tp82996 +a(g82993 +g82995 +S'made' +p82997 +tp82998 +a(g82995 +g82997 +S'from' +p82999 +tp83000 +a(g82997 +g82999 +S'cornhusks' +p83001 +tp83002 +a(g82999 +g83001 +S'and' +p83003 +tp83004 +a(g83001 +g83003 +S'corncobs.' +p83005 +tp83006 +a(g83003 +g83005 +S'this' +p83007 +tp83008 +a(g83005 +g83007 +S'cornhusk' +p83009 +tp83010 +a(g83007 +g83009 +S'doll' +p83011 +tp83012 +a(g83009 +g83011 +S'was' +p83013 +tp83014 +a(g83011 +g83013 +S'made' +p83015 +tp83016 +a(g83013 +g83015 +S'about' +p83017 +tp83018 +a(g83015 +g83017 +S'1895' +p83019 +tp83020 +a(g83017 +g83019 +S'in' +p83021 +tp83022 +a(g83019 +g83021 +S'essex' +p83023 +tp83024 +a(g83021 +g83023 +S'county,' +p83025 +tp83026 +a(g83023 +g83025 +S'massachusetts.' +p83027 +tp83028 +a(g83025 +g83027 +S'the' +p83029 +tp83030 +a(g83027 +g83029 +S'husk' +p83031 +tp83032 +a(g83029 +g83031 +S'forms' +p83033 +tp83034 +a(g83031 +g83033 +S'the' +p83035 +tp83036 +a(g83033 +g83035 +S'head,' +p83037 +tp83038 +a(g83035 +g83037 +S'limbs,' +p83039 +tp83040 +a(g83037 +g83039 +S'and' +p83041 +tp83042 +a(g83039 +g83041 +S'clothes;' +p83043 +tp83044 +a(g83041 +g83043 +S'cornsilk' +p83045 +tp83046 +a(g83043 +g83045 +S'provides' +p83047 +tp83048 +a(g83045 +g83047 +S'the' +p83049 +tp83050 +a(g83047 +g83049 +S'hair.' +p83051 +tp83052 +a(g83049 +g83051 +S'cornhusk' +p83053 +tp83054 +a(g83051 +g83053 +S'dolls' +p83055 +tp83056 +a(g83053 +g83055 +S'may' +p83057 +tp83058 +a(g83055 +g83057 +S'have' +p83059 +tp83060 +a(g83057 +g83059 +S'been' +p83061 +tp83062 +a(g83059 +g83061 +S'invented' +p83063 +tp83064 +a(g83061 +g83063 +S'by' +p83065 +tp83066 +a(g83063 +g83065 +S'the' +p83067 +tp83068 +a(g83065 +g83067 +S'early' +p83069 +tp83070 +a(g83067 +g83069 +S'settlers' +p83071 +tp83072 +a(g83069 +g83071 +S'themselves' +p83073 +tp83074 +a(g83071 +g83073 +S'or' +p83075 +tp83076 +a(g83073 +g83075 +S'copied' +p83077 +tp83078 +a(g83075 +g83077 +S'from' +p83079 +tp83080 +a(g83077 +g83079 +S'the' +p83081 +tp83082 +a(g83079 +g83081 +S'indians.' +p83083 +tp83084 +a(g83081 +g83083 +S'improvised,' +p83085 +tp83086 +a(g83083 +g83085 +S'handmade' +p83087 +tp83088 +a(g83085 +g83087 +S'dolls' +p83089 +tp83090 +a(g83087 +g83089 +S'of' +p83091 +tp83092 +a(g83089 +g83091 +S'various' +p83093 +tp83094 +a(g83091 +g83093 +S'materials' +p83095 +tp83096 +a(g83093 +g83095 +S'are' +p83097 +tp83098 +a(g83095 +g83097 +S'a' +p83099 +tp83100 +a(g83097 +g83099 +S'tradition' +p83101 +tp83102 +a(g83099 +g83101 +S'in' +p83103 +tp83104 +a(g83101 +g83103 +S'america.' +p83105 +tp83106 +a(g83103 +g83105 +S'common' +p83107 +tp83108 +a(g83105 +g83107 +S'in' +p83109 +tp83110 +a(g83107 +g83109 +S'the' +p83111 +tp83112 +a(g83109 +g83111 +S'early' +p83113 +tp83114 +a(g83111 +g83113 +S'days' +p83115 +tp83116 +a(g83113 +g83115 +S'of' +p83117 +tp83118 +a(g83115 +g83117 +S'our' +p83119 +tp83120 +a(g83117 +g83119 +S'country,' +p83121 +tp83122 +a(g83119 +g83121 +S'homemade' +p83123 +tp83124 +a(g83121 +g83123 +S'dolls' +p83125 +tp83126 +a(g83123 +g83125 +S'are' +p83127 +tp83128 +a(g83125 +g83127 +S'still' +p83129 +tp83130 +a(g83127 +g83129 +S'found' +p83131 +tp83132 +a(g83129 +g83131 +S'in' +p83133 +tp83134 +a(g83131 +g83133 +S'areas' +p83135 +tp83136 +a(g83133 +g83135 +S'where' +p83137 +tp83138 +a(g83135 +g83137 +S'the' +p83139 +tp83140 +a(g83137 +g83139 +S'commercially' +p83141 +tp83142 +a(g83139 +g83141 +S'produced' +p83143 +tp83144 +a(g83141 +g83143 +S'type' +p83145 +tp83146 +a(g83143 +g83145 +S'is' +p83147 +tp83148 +a(g83145 +g83147 +S'not' +p83149 +tp83150 +a(g83147 +g83149 +S'easily' +p83151 +tp83152 +a(g83149 +g83151 +S'affordable.' +p83153 +tp83154 +a(g83151 +g83153 +S'spring' +p83155 +tp83156 +a(g83153 +g83155 +S'or' +p83157 +tp83158 +a(g83155 +g83157 +S'"clockwork"' +p83159 +tp83160 +a(g83157 +g83159 +S'mechanisms' +p83161 +tp83162 +a(g83159 +g83161 +S'were' +p83163 +tp83164 +a(g83161 +g83163 +S'sometimes' +p83165 +tp83166 +a(g83163 +g83165 +S'used' +p83167 +tp83168 +a(g83165 +g83167 +S'to' +p83169 +tp83170 +a(g83167 +g83169 +S'produce' +p83171 +tp83172 +a(g83169 +g83171 +S'sounds' +p83173 +tp83174 +a(g83171 +g83173 +S'in' +p83175 +tp83176 +a(g83173 +g83175 +S'toys' +p83177 +tp83178 +a(g83175 +g83177 +S'as' +p83179 +tp83180 +a(g83177 +g83179 +S'well' +p83181 +tp83182 +a(g83179 +g83181 +S'as' +p83183 +tp83184 +a(g83181 +g83183 +S'to' +p83185 +tp83186 +a(g83183 +g83185 +S'make' +p83187 +tp83188 +a(g83185 +g83187 +S'them' +p83189 +tp83190 +a(g83187 +g83189 +S'move.' +p83191 +tp83192 +a(g83189 +g83191 +S'music' +p83193 +tp83194 +a(g83191 +g83193 +S'boxes' +p83195 +tp83196 +a(g83193 +g83195 +S'were' +p83197 +tp83198 +a(g83195 +g83197 +S'operated' +p83199 +tp83200 +a(g83197 +g83199 +S'by' +p83201 +tp83202 +a(g83199 +g83201 +S'this' +p83203 +tp83204 +a(g83201 +g83203 +S'type' +p83205 +tp83206 +a(g83203 +g83205 +S'of' +p83207 +tp83208 +a(g83205 +g83207 +S'action,' +p83209 +tp83210 +a(g83207 +g83209 +S'as' +p83211 +tp83212 +a(g83209 +g83211 +S'is' +p83213 +tp83214 +a(g83211 +g83213 +S'this' +p83215 +tp83216 +a(g83213 +g83215 +S'mechanical' +p83217 +tp83218 +a(g83215 +g83217 +S'figure' +p83219 +tp83220 +a(g83217 +g83219 +S'of' +p83221 +tp83222 +a(g83219 +g83221 +S'a' +p83223 +tp83224 +a(g83221 +g83223 +S'man' +p83225 +tp83226 +a(g83223 +g83225 +S'with' +p83227 +tp83228 +a(g83225 +g83227 +S'a' +p83229 +tp83230 +a(g83227 +g83229 +S'cello.' +p83231 +tp83232 +a(g83229 +g83231 +S'when' +p83233 +tp83234 +a(g83231 +g83233 +S'the' +p83235 +tp83236 +a(g83233 +g83235 +S'toy' +p83237 +tp83238 +a(g83235 +g83237 +S'is' +p83239 +tp83240 +a(g83237 +g83239 +S'wound,' +p83241 +tp83242 +a(g83239 +g83241 +S'the' +p83243 +tp83244 +a(g83241 +g83243 +S'musician' +p83245 +tp83246 +a(g83243 +g83245 +S'nods' +p83247 +tp83248 +a(g83245 +g83247 +S'and' +p83249 +tp83250 +a(g83247 +g83249 +S'moves' +p83251 +tp83252 +a(g83249 +g83251 +S'his' +p83253 +tp83254 +a(g83251 +g83253 +S'bow.' +p83255 +tp83256 +a(g83253 +g83255 +S'the' +p83257 +tp83258 +a(g83255 +g83257 +S'toy,' +p83259 +tp83260 +a(g83257 +g83259 +S'dating' +p83261 +tp83262 +a(g83259 +g83261 +S'from' +p83263 +tp83264 +a(g83261 +g83263 +S'the' +p83265 +tp83266 +a(g83263 +g83265 +S'late' +p83267 +tp83268 +a(g83265 +g83267 +S'nineteenth' +p83269 +tp83270 +a(g83267 +g83269 +S'century,' +p83271 +tp83272 +a(g83269 +g83271 +S'plays' +p83273 +tp83274 +a(g83271 +g83273 +S'an' +p83275 +tp83276 +a(g83273 +g83275 +S'old-fashioned' +p83277 +tp83278 +a(g83275 +g83277 +S'dance' +p83279 +tp83280 +a(g83277 +g83279 +S'tune.' +p83281 +tp83282 +a(g83279 +g83281 +S'this' +p83283 +tp83284 +a(g83281 +g83283 +S'hollow,' +p83285 +tp83286 +a(g83283 +g83285 +S'articulated,' +p83287 +tp83288 +a(g83285 +g83287 +S'or' +p83289 +tp83290 +a(g83287 +g83289 +S'jointed,' +p83291 +tp83292 +a(g83289 +g83291 +S'figure' +p83293 +tp83294 +a(g83291 +g83293 +S'of' +p83295 +tp83296 +a(g83293 +g83295 +S'a' +p83297 +tp83298 +a(g83295 +g83297 +S'boy' +p83299 +tp83300 +a(g83297 +g83299 +S'illustrates' +p83301 +tp83302 +a(g83299 +g83301 +S'the' +p83303 +tp83304 +a(g83301 +g83303 +S'rather' +p83305 +tp83306 +a(g83303 +g83305 +S'complicated' +p83307 +tp83308 +a(g83305 +g83307 +S'animation' +p83309 +tp83310 +a(g83307 +g83309 +S'that' +p83311 +tp83312 +a(g83309 +g83311 +S'could' +p83313 +tp83314 +a(g83311 +g83313 +S'be' +p83315 +tp83316 +a(g83313 +g83315 +S'produced' +p83317 +tp83318 +a(g83315 +g83317 +S'with' +p83319 +tp83320 +a(g83317 +g83319 +S'spring' +p83321 +tp83322 +a(g83319 +g83321 +S'mechanisms.' +p83323 +tp83324 +a(g83321 +g83323 +S'the' +p83325 +tp83326 +a(g83323 +g83325 +S'windup' +p83327 +tp83328 +a(g83325 +g83327 +S'key' +p83329 +tp83330 +a(g83327 +g83329 +S'is' +p83331 +tp83332 +a(g83329 +g83331 +S'located' +p83333 +tp83334 +a(g83331 +g83333 +S'on' +p83335 +tp83336 +a(g83333 +g83335 +S'his' +p83337 +tp83338 +a(g83335 +g83337 +S'left' +p83339 +tp83340 +a(g83337 +g83339 +S'side;' +p83341 +tp83342 +a(g83339 +g83341 +S'it' +p83343 +tp83344 +a(g83341 +g83343 +S'is' +p83345 +tp83346 +a(g83343 +g83345 +S'attached' +p83347 +tp83348 +a(g83345 +g83347 +S'to' +p83349 +tp83350 +a(g83347 +g83349 +S'a' +p83351 +tp83352 +a(g83349 +g83351 +S'spring' +p83353 +tp83354 +a(g83351 +g83353 +S'inside' +p83355 +tp83356 +a(g83353 +g83355 +S'the' +p83357 +tp83358 +a(g83355 +g83357 +S'body.' +p83359 +tp83360 +a(g83357 +g83359 +S'as' +p83361 +tp83362 +a(g83359 +g83361 +S'the' +p83363 +tp83364 +a(g83361 +g83363 +S'spring' +p83365 +tp83366 +a(g83363 +g83365 +S'releases,' +p83367 +tp83368 +a(g83365 +g83367 +S'the' +p83369 +tp83370 +a(g83367 +g83369 +S'arms' +p83371 +tp83372 +a(g83369 +g83371 +S'revolve.' +p83373 +tp83374 +a(g83371 +g83373 +S'simultaneously,' +p83375 +tp83376 +a(g83373 +g83375 +S'the' +p83377 +tp83378 +a(g83375 +g83377 +S'upper' +p83379 +tp83380 +a(g83377 +g83379 +S'part' +p83381 +tp83382 +a(g83379 +g83381 +S'of' +p83383 +tp83384 +a(g83381 +g83383 +S'the' +p83385 +tp83386 +a(g83383 +g83385 +S'figure,' +p83387 +tp83388 +a(g83385 +g83387 +S'which' +p83389 +tp83390 +a(g83387 +g83389 +S'is' +p83391 +tp83392 +a(g83389 +g83391 +S'articulated' +p83393 +tp83394 +a(g83391 +g83393 +S'at' +p83395 +tp83396 +a(g83393 +g83395 +S'the' +p83397 +tp83398 +a(g83395 +g83397 +S'waist,' +p83399 +tp83400 +a(g83397 +g83399 +S'moves' +p83401 +tp83402 +a(g83399 +g83401 +S'from' +p83403 +tp83404 +a(g83401 +g83403 +S'side' +p83405 +tp83406 +a(g83403 +g83405 +S'to' +p83407 +tp83408 +a(g83405 +g83407 +S'side.' +p83409 +tp83410 +a(g83407 +g83409 +S'the' +p83411 +tp83412 +a(g83409 +g83411 +S'combined' +p83413 +tp83414 +a(g83411 +g83413 +S'actions' +p83415 +tp83416 +a(g83413 +g83415 +S'of' +p83417 +tp83418 +a(g83415 +g83417 +S'arms' +p83419 +tp83420 +a(g83417 +g83419 +S'and' +p83421 +tp83422 +a(g83419 +g83421 +S'body' +p83423 +tp83424 +a(g83421 +g83423 +S'move' +p83425 +tp83426 +a(g83423 +g83425 +S'the' +p83427 +tp83428 +a(g83425 +g83427 +S'figure' +p83429 +tp83430 +a(g83427 +g83429 +S'around' +p83431 +tp83432 +a(g83429 +g83431 +S'on' +p83433 +tp83434 +a(g83431 +g83433 +S'its' +p83435 +tp83436 +a(g83433 +g83435 +S'feet.' +p83437 +tp83438 +a(g83435 +g83437 +S'the' +p83439 +tp83440 +a(g83437 +g83439 +S'figure,' +p83441 +tp83442 +a(g83439 +g83441 +S'painted' +p83443 +tp83444 +a(g83441 +g83443 +S'with' +p83445 +tp83446 +a(g83443 +g83445 +S'oil' +p83447 +tp83448 +a(g83445 +g83447 +S'colors,' +p83449 +tp83450 +a(g83447 +g83449 +S'dates' +p83451 +tp83452 +a(g83449 +g83451 +S'from' +p83453 +tp83454 +a(g83451 +g83453 +S'the' +p83455 +tp83456 +a(g83453 +g83455 +S'late' +p83457 +tp83458 +a(g83455 +g83457 +S'nineteenth' +p83459 +tp83460 +a(g83457 +g83459 +S'century.' +p83461 +tp83462 +a(g83459 +g83461 +S'another' +p83463 +tp83464 +a(g83461 +g83463 +S'kind' +p83465 +tp83466 +a(g83463 +g83465 +S'of' +p83467 +tp83468 +a(g83465 +g83467 +S'toy' +p83469 +tp83470 +a(g83467 +g83469 +S'that' +p83471 +tp83472 +a(g83469 +g83471 +S'emitted' +p83473 +tp83474 +a(g83471 +g83473 +S'a' +p83475 +tp83476 +a(g83473 +g83475 +S'sound' +p83477 +tp83478 +a(g83475 +g83477 +S'was' +p83479 +tp83480 +a(g83477 +g83479 +S'the' +p83481 +tp83482 +a(g83479 +g83481 +S'squeak' +p83483 +tp83484 +a(g83481 +g83483 +S'toy.' +p83485 +tp83486 +a(g83483 +g83485 +S'an' +p83487 +tp83488 +a(g83485 +g83487 +S'example' +p83489 +tp83490 +a(g83487 +g83489 +S'is' +p83491 +tp83492 +a(g83489 +g83491 +S'this' +p83493 +tp83494 +a(g83491 +g83493 +S'kitten' +p83495 +tp83496 +a(g83493 +g83495 +S'holding' +p83497 +tp83498 +a(g83495 +g83497 +S'a' +p83499 +tp83500 +a(g83497 +g83499 +S'fiddle.' +p83501 +tp83502 +a(g83499 +g83501 +S'such' +p83503 +tp83504 +a(g83501 +g83503 +S'toys' +p83505 +tp83506 +a(g83503 +g83505 +S'were' +p83507 +tp83508 +a(g83505 +g83507 +S'made' +p83509 +tp83510 +a(g83507 +g83509 +S'in' +p83511 +tp83512 +a(g83509 +g83511 +S'a' +p83513 +tp83514 +a(g83511 +g83513 +S'wide' +p83515 +tp83516 +a(g83513 +g83515 +S'variety' +p83517 +tp83518 +a(g83515 +g83517 +S'of' +p83519 +tp83520 +a(g83517 +g83519 +S'birds' +p83521 +tp83522 +a(g83519 +g83521 +S'and' +p83523 +tp83524 +a(g83521 +g83523 +S'beasts.' +p83525 +tp83526 +a(g83523 +g83525 +S'the' +p83527 +tp83528 +a(g83525 +g83527 +S'figure' +p83529 +tp83530 +a(g83527 +g83529 +S'is' +p83531 +tp83532 +a(g83529 +g83531 +S'mounted' +p83533 +tp83534 +a(g83531 +g83533 +S'on' +p83535 +tp83536 +a(g83533 +g83535 +S'a' +p83537 +tp83538 +a(g83535 +g83537 +S'small' +p83539 +tp83540 +a(g83537 +g83539 +S'bellows' +p83541 +tp83542 +a(g83539 +g83541 +S'which,' +p83543 +tp83544 +a(g83541 +g83543 +S'when' +p83545 +tp83546 +a(g83543 +g83545 +S'depressed,' +p83547 +tp83548 +a(g83545 +g83547 +S'produces' +p83549 +tp83550 +a(g83547 +g83549 +S'a' +p83551 +tp83552 +a(g83549 +g83551 +S'sound' +p83553 +tp83554 +a(g83551 +g83553 +S'suggestive' +p83555 +tp83556 +a(g83553 +g83555 +S'of' +p83557 +tp83558 +a(g83555 +g83557 +S'the' +p83559 +tp83560 +a(g83557 +g83559 +S"animal's" +p83561 +tp83562 +a(g83559 +g83561 +S'natural' +p83563 +tp83564 +a(g83561 +g83563 +S'call.' +p83565 +tp83566 +a(g83563 +g83565 +S'a' +p83567 +tp83568 +a(g83565 +g83567 +S'true' +p83569 +tp83570 +a(g83567 +g83569 +S'rocking' +p83571 +tp83572 +a(g83569 +g83571 +S'horse,' +p83573 +tp83574 +a(g83571 +g83573 +S'this' +p83575 +tp83576 +a(g83573 +g83575 +S'piece' +p83577 +tp83578 +a(g83575 +g83577 +S'is' +p83579 +tp83580 +a(g83577 +g83579 +S'primitive' +p83581 +tp83582 +a(g83579 +g83581 +S'in' +p83583 +tp83584 +a(g83581 +g83583 +S'construction,' +p83585 +tp83586 +a(g83583 +g83585 +S'yet' +p83587 +tp83588 +a(g83585 +g83587 +S'its' +p83589 +tp83590 +a(g83587 +g83589 +S'design' +p83591 +tp83592 +a(g83589 +g83591 +S'is' +p83593 +tp83594 +a(g83591 +g83593 +S'vigorous' +p83595 +tp83596 +a(g83593 +g83595 +S'and' +p83597 +tp83598 +a(g83595 +g83597 +S'spirited.' +p83599 +tp83600 +a(g83597 +g83599 +S'the' +p83601 +tp83602 +a(g83599 +g83601 +S'stylized,' +p83603 +tp83604 +a(g83601 +g83603 +S'round' +p83605 +tp83606 +a(g83603 +g83605 +S'body' +p83607 +tp83608 +a(g83605 +g83607 +S'is' +p83609 +tp83610 +a(g83607 +g83609 +S'actually' +p83611 +tp83612 +a(g83609 +g83611 +S'a' +p83613 +tp83614 +a(g83611 +g83613 +S'single' +p83615 +tp83616 +a(g83613 +g83615 +S'wooden' +p83617 +tp83618 +a(g83615 +g83617 +S'log,' +p83619 +tp83620 +a(g83617 +g83619 +S'while' +p83621 +tp83622 +a(g83619 +g83621 +S'the' +p83623 +tp83624 +a(g83621 +g83623 +S'head' +p83625 +tp83626 +a(g83623 +g83625 +S'and' +p83627 +tp83628 +a(g83625 +g83627 +S'neck' +p83629 +tp83630 +a(g83627 +g83629 +S'are' +p83631 +tp83632 +a(g83629 +g83631 +S'carved' +p83633 +tp83634 +a(g83631 +g83633 +S'from' +p83635 +tp83636 +a(g83633 +g83635 +S'another' +p83637 +tp83638 +a(g83635 +g83637 +S'single' +p83639 +tp83640 +a(g83637 +g83639 +S'block.' +p83641 +tp83642 +a(g83639 +g83641 +S'the' +p83643 +tp83644 +a(g83641 +g83643 +S'flat,' +p83645 +tp83646 +a(g83643 +g83645 +S'stick' +p83647 +tp83648 +a(g83645 +g83647 +S'legs' +p83649 +tp83650 +a(g83647 +g83649 +S'are' +p83651 +tp83652 +a(g83649 +g83651 +S'mortised' +p83653 +tp83654 +a(g83651 +g83653 +S'into' +p83655 +tp83656 +a(g83653 +g83655 +S'the' +p83657 +tp83658 +a(g83655 +g83657 +S'underside' +p83659 +tp83660 +a(g83657 +g83659 +S'of' +p83661 +tp83662 +a(g83659 +g83661 +S'the' +p83663 +tp83664 +a(g83661 +g83663 +S'body.' +p83665 +tp83666 +a(g83663 +g83665 +S'the' +p83667 +tp83668 +a(g83665 +g83667 +S'horse' +p83669 +tp83670 +a(g83667 +g83669 +S'is' +p83671 +tp83672 +a(g83669 +g83671 +S'mounted' +p83673 +tp83674 +a(g83671 +g83673 +S'on' +p83675 +tp83676 +a(g83673 +g83675 +S'a' +p83677 +tp83678 +a(g83675 +g83677 +S'pair' +p83679 +tp83680 +a(g83677 +g83679 +S'of' +p83681 +tp83682 +a(g83679 +g83681 +S'rockers.' +p83683 +tp83684 +a(g83681 +g83683 +S'this' +p83685 +tp83686 +a(g83683 +g83685 +S'rocking' +p83687 +tp83688 +a(g83685 +g83687 +S'horse' +p83689 +tp83690 +a(g83687 +g83689 +S'was' +p83691 +tp83692 +a(g83689 +g83691 +S'made' +p83693 +tp83694 +a(g83691 +g83693 +S'between' +p83695 +tp83696 +a(g83693 +g83695 +S'1853' +p83697 +tp83698 +a(g83695 +g83697 +S'and' +p83699 +tp83700 +a(g83697 +g83699 +S'1856' +p83701 +tp83702 +a(g83699 +g83701 +S'by' +p83703 +tp83704 +a(g83701 +g83703 +S'benjamin' +p83705 +tp83706 +a(g83703 +g83705 +S'p.' +p83707 +tp83708 +a(g83705 +g83707 +S'crandall' +p83709 +tp83710 +a(g83707 +g83709 +S'of' +p83711 +tp83712 +a(g83709 +g83711 +S'new' +p83713 +tp83714 +a(g83711 +g83713 +S'york' +p83715 +tp83716 +a(g83713 +g83715 +S'city;' +p83717 +tp83718 +a(g83715 +g83717 +S'his' +p83719 +tp83720 +a(g83717 +g83719 +S'name' +p83721 +tp83722 +a(g83719 +g83721 +S'appears' +p83723 +tp83724 +a(g83721 +g83723 +S'on' +p83725 +tp83726 +a(g83723 +g83725 +S'the' +p83727 +tp83728 +a(g83725 +g83727 +S'under' +p83729 +tp83730 +a(g83727 +g83729 +S'surface' +p83731 +tp83732 +a(g83729 +g83731 +S'of' +p83733 +tp83734 +a(g83731 +g83733 +S'the' +p83735 +tp83736 +a(g83733 +g83735 +S'horse.' +p83737 +tp83738 +a(g83735 +g83737 +S'like' +p83739 +tp83740 +a(g83737 +g83739 +S'many' +p83741 +tp83742 +a(g83739 +g83741 +S'other' +p83743 +tp83744 +a(g83741 +g83743 +S'toy' +p83745 +tp83746 +a(g83743 +g83745 +S'makers,' +p83747 +tp83748 +a(g83745 +g83747 +S'crandall' +p83749 +tp83750 +a(g83747 +g83749 +S'did' +p83751 +tp83752 +a(g83749 +g83751 +S'not' +p83753 +tp83754 +a(g83751 +g83753 +S'produce' +p83755 +tp83756 +a(g83753 +g83755 +S'toys' +p83757 +tp83758 +a(g83755 +g83757 +S'exclusively' +p83759 +tp83760 +a(g83757 +g83759 +S'and' +p83761 +tp83762 +a(g83759 +g83761 +S'was' +p83763 +tp83764 +a(g83761 +g83763 +S'listed' +p83765 +tp83766 +a(g83763 +g83765 +S'also' +p83767 +tp83768 +a(g83765 +g83767 +S'as' +p83769 +tp83770 +a(g83767 +g83769 +S'a' +p83771 +tp83772 +a(g83769 +g83771 +S'carpenter' +p83773 +tp83774 +a(g83771 +g83773 +S'and' +p83775 +tp83776 +a(g83773 +g83775 +S'maker' +p83777 +tp83778 +a(g83775 +g83777 +S'of' +p83779 +tp83780 +a(g83777 +g83779 +S'wagons,' +p83781 +tp83782 +a(g83779 +g83781 +S'carriages,' +p83783 +tp83784 +a(g83781 +g83783 +S'and' +p83785 +tp83786 +a(g83783 +g83785 +S'perambulators.' +p83787 +tp83788 +a(g83785 +g83787 +S'raphael' +p83789 +tp83790 +a(g83787 +g83789 +S'was' +p83791 +tp83792 +a(g83789 +g83791 +S'born' +p83793 +tp83794 +a(g83791 +g83793 +S'in' +p83795 +tp83796 +a(g83793 +g83795 +S'urbino,' +p83797 +tp83798 +a(g83795 +g83797 +S'a' +p83799 +tp83800 +a(g83797 +g83799 +S'central' +p83801 +tp83802 +a(g83799 +g83801 +S'italian' +p83803 +tp83804 +a(g83801 +g83803 +S'duchy' +p83805 +tp83806 +a(g83803 +g83805 +S'noted' +p83807 +tp83808 +a(g83805 +g83807 +S'for' +p83809 +tp83810 +a(g83807 +g83809 +S'its' +p83811 +tp83812 +a(g83809 +g83811 +S'elegant' +p83813 +tp83814 +a(g83811 +g83813 +S'gentility' +p83815 +tp83816 +a(g83813 +g83815 +S'and' +p83817 +tp83818 +a(g83815 +g83817 +S'renaissance' +p83819 +tp83820 +a(g83817 +g83819 +S'scholarship.' +p83821 +tp83822 +a(g83819 +g83821 +S'he' +p83823 +tp83824 +a(g83821 +g83823 +S'moved' +p83825 +tp83826 +a(g83823 +g83825 +S'to' +p83827 +tp83828 +a(g83825 +g83827 +S'florence' +p83829 +tp83830 +a(g83827 +g83829 +S'toward' +p83831 +tp83832 +a(g83829 +g83831 +S'the' +p83833 +tp83834 +a(g83831 +g83833 +S'end' +p83835 +tp83836 +a(g83833 +g83835 +S'of' +p83837 +tp83838 +a(g83835 +g83837 +S'1504.' +p83839 +tp83840 +a(g83837 +g83839 +S'saint' +p83841 +tp83842 +a(g83839 +g83841 +S'george' +p83843 +tp83844 +a(g83841 +g83843 +S'and' +p83845 +tp83846 +a(g83843 +g83845 +S'the' +p83847 +tp83848 +a(g83845 +g83847 +S'dragon' +p83849 +tp83850 +a(g83847 +g83849 +S'one' +p83851 +tp83852 +a(g83849 +g83851 +S'unusual' +p83853 +tp83854 +a(g83851 +g83853 +S'feature' +p83855 +tp83856 +a(g83853 +g83855 +S'of' +p83857 +tp83858 +a(g83855 +g83857 +S'the' +p83859 +tp83860 +a(g83857 +g83859 +S'painting' +p83861 +tp83862 +a(g83859 +g83861 +S'is' +p83863 +tp83864 +a(g83861 +g83863 +S'the' +p83865 +tp83866 +a(g83863 +g83865 +S"saint's" +p83867 +tp83868 +a(g83865 +g83867 +S'blue' +p83869 +tp83870 +a(g83867 +g83869 +S'garter' +p83871 +tp83872 +a(g83869 +g83871 +S'on' +p83873 +tp83874 +a(g83871 +g83873 +S'his' +p83875 +tp83876 +a(g83873 +g83875 +S'armor–covered' +p83877 +tp83878 +a(g83875 +g83877 +S'leg.' +p83879 +tp83880 +a(g83877 +g83879 +S'its' +p83881 +tp83882 +a(g83879 +g83881 +S'inscription,' +p83883 +tp83884 +a(g83881 +g83883 +S'honi,' +p83885 +tp83886 +a(g83883 +g83885 +S'begins' +p83887 +tp83888 +a(g83885 +g83887 +S'the' +p83889 +tp83890 +a(g83887 +g83889 +S'phrase' +p83891 +tp83892 +a(g83889 +g83891 +S'this' +p83893 +tp83894 +a(g83891 +g83893 +S"doll's" +p83895 +tp83896 +a(g83893 +g83895 +S'sleigh' +p83897 +tp83898 +a(g83895 +g83897 +S'of' +p83899 +tp83900 +a(g83897 +g83899 +S'about' +p83901 +tp83902 +a(g83899 +g83901 +S'1887' +p83903 +tp83904 +a(g83901 +g83903 +S'has' +p83905 +tp83906 +a(g83903 +g83905 +S'painted' +p83907 +tp83908 +a(g83905 +g83907 +S'decorations' +p83909 +tp83910 +a(g83907 +g83909 +S'similar' +p83911 +tp83912 +a(g83909 +g83911 +S'to' +p83913 +tp83914 +a(g83911 +g83913 +S'those' +p83915 +tp83916 +a(g83913 +g83915 +S'found' +p83917 +tp83918 +a(g83915 +g83917 +S'on' +p83919 +tp83920 +a(g83917 +g83919 +S"children's" +p83921 +tp83922 +a(g83919 +g83921 +S'sleds' +p83923 +tp83924 +a(g83921 +g83923 +S'of' +p83925 +tp83926 +a(g83923 +g83925 +S'the' +p83927 +tp83928 +a(g83925 +g83927 +S'period.' +p83929 +tp83930 +a(g83927 +g83929 +S'it' +p83931 +tp83932 +a(g83929 +g83931 +S'is' +p83933 +tp83934 +a(g83931 +g83933 +S'wood' +p83935 +tp83936 +a(g83933 +g83935 +S'with' +p83937 +tp83938 +a(g83935 +g83937 +S'metal' +p83939 +tp83940 +a(g83937 +g83939 +S'wire' +p83941 +tp83942 +a(g83939 +g83941 +S'runners.' +p83943 +tp83944 +a(g83941 +g83943 +S'the' +p83945 +tp83946 +a(g83943 +g83945 +S'lining' +p83947 +tp83948 +a(g83945 +g83947 +S'is' +p83949 +tp83950 +a(g83947 +g83949 +S'blue' +p83951 +tp83952 +a(g83949 +g83951 +S'velvet.' +p83953 +tp83954 +a(g83951 +g83953 +S'this' +p83955 +tp83956 +a(g83953 +g83955 +S'was' +p83957 +tp83958 +a(g83955 +g83957 +S'one' +p83959 +tp83960 +a(g83957 +g83959 +S'of' +p83961 +tp83962 +a(g83959 +g83961 +S'the' +p83963 +tp83964 +a(g83961 +g83963 +S'rear' +p83965 +tp83966 +a(g83963 +g83965 +S'panels' +p83967 +tp83968 +a(g83965 +g83967 +S'of' +p83969 +tp83970 +a(g83967 +g83969 +S'duccio’s' +p83971 +tp83972 +a(g83969 +g83971 +S'magnificent' +p83973 +tp83974 +a(g83971 +g83973 +S'duccio' +p83975 +tp83976 +a(g83973 +g83975 +S'signed' +p83977 +tp83978 +a(g83975 +g83977 +S'the' +p83979 +tp83980 +a(g83977 +g83979 +S'main' +p83981 +tp83982 +a(g83979 +g83981 +S'section' +p83983 +tp83984 +a(g83981 +g83983 +S'of' +p83985 +tp83986 +a(g83983 +g83985 +S'the' +p83987 +tp83988 +a(g83985 +g83987 +S'this' +p83989 +tp83990 +a(g83987 +g83989 +S'rear' +p83991 +tp83992 +a(g83989 +g83991 +S'panel' +p83993 +tp83994 +a(g83991 +g83993 +S'of' +p83995 +tp83996 +a(g83993 +g83995 +S'the' +p83997 +tp83998 +a(g83995 +g83997 +S'not' +p83999 +tp84000 +a(g83997 +g83999 +S'all' +p84001 +tp84002 +a(g83999 +g84001 +S'paintings' +p84003 +tp84004 +a(g84001 +g84003 +S'in' +p84005 +tp84006 +a(g84003 +g84005 +S'a' +p84007 +tp84008 +a(g84005 +g84007 +S'renaissance' +p84009 +tp84010 +a(g84007 +g84009 +S'study' +p84011 +tp84012 +a(g84009 +g84011 +S'would' +p84013 +tp84014 +a(g84011 +g84013 +S'have' +p84015 +tp84016 +a(g84013 +g84015 +S'been' +p84017 +tp84018 +a(g84015 +g84017 +S'seen' +p84019 +tp84020 +a(g84017 +g84019 +S'on' +p84021 +tp84022 +a(g84019 +g84021 +S'the' +p84023 +tp84024 +a(g84021 +g84023 +S'wall;' +p84025 +tp84026 +a(g84023 +g84025 +S'even' +p84027 +tp84028 +a(g84025 +g84027 +S'the' +p84029 +tp84030 +a(g84027 +g84029 +S'greatest' +p84031 +tp84032 +a(g84029 +g84031 +S'artists' +p84033 +tp84034 +a(g84031 +g84033 +S'were' +p84035 +tp84036 +a(g84033 +g84035 +S'called' +p84037 +tp84038 +a(g84035 +g84037 +S'on' +p84039 +tp84040 +a(g84037 +g84039 +S'to' +p84041 +tp84042 +a(g84039 +g84041 +S'decorate' +p84043 +tp84044 +a(g84041 +g84043 +S'everyday' +p84045 +tp84046 +a(g84043 +g84045 +S'objects.' +p84047 +tp84048 +a(g84045 +g84047 +S'in' +p84049 +tp84050 +a(g84047 +g84049 +S'all' +p84051 +tp84052 +a(g84049 +g84051 +S'probability' +p84053 +tp84054 +a(g84051 +g84053 +S'this' +p84055 +tp84056 +a(g84053 +g84055 +S'small' +p84057 +tp84058 +a(g84055 +g84057 +S'panel' +p84059 +tp84060 +a(g84057 +g84059 +S'was' +p84061 +tp84062 +a(g84059 +g84061 +S'originally' +p84063 +tp84064 +a(g84061 +g84063 +S'part' +p84065 +tp84066 +a(g84063 +g84065 +S'of' +p84067 +tp84068 +a(g84065 +g84067 +S'a' +p84069 +tp84070 +a(g84067 +g84069 +S'box' +p84071 +tp84072 +a(g84069 +g84071 +S'or' +p84073 +tp84074 +a(g84071 +g84073 +S'cabinet.' +p84075 +tp84076 +a(g84073 +g84075 +S'under' +p84077 +tp84078 +a(g84075 +g84077 +S'the' +p84079 +tp84080 +a(g84077 +g84079 +S'bushy' +p84081 +tp84082 +a(g84079 +g84081 +S'plant' +p84083 +tp84084 +a(g84081 +g84083 +S'near' +p84085 +tp84086 +a(g84083 +g84085 +S'the' +p84087 +tp84088 +a(g84085 +g84087 +S'center' +p84089 +tp84090 +a(g84087 +g84089 +S'is' +p84091 +tp84092 +a(g84089 +g84091 +S'a' +p84093 +tp84094 +a(g84091 +g84093 +S'keyhole,' +p84095 +tp84096 +a(g84093 +g84095 +S'now' +p84097 +tp84098 +a(g84095 +g84097 +S'filled' +p84099 +tp84100 +a(g84097 +g84099 +S'and' +p84101 +tp84102 +a(g84099 +g84101 +S'overpainted' +p84103 +tp84104 +a(g84101 +g84103 +S'but' +p84105 +tp84106 +a(g84103 +g84105 +S'visible' +p84107 +tp84108 +a(g84105 +g84107 +S'in' +p84109 +tp84110 +a(g84107 +g84109 +S'x-radiographs.' +p84111 +tp84112 +a(g84109 +g84111 +S'seated' +p84113 +tp84114 +a(g84111 +g84113 +S'in' +p84115 +tp84116 +a(g84113 +g84115 +S'a' +p84117 +tp84118 +a(g84115 +g84117 +S'lyrical' +p84119 +tp84120 +a(g84117 +g84119 +S'landscape,' +p84121 +tp84122 +a(g84119 +g84121 +S'venus,' +p84123 +tp84124 +a(g84121 +g84123 +S'goddess' +p84125 +tp84126 +a(g84123 +g84125 +S'of' +p84127 +tp84128 +a(g84125 +g84127 +S'love,' +p84129 +tp84130 +a(g84127 +g84129 +S'seems' +p84131 +tp84132 +a(g84129 +g84131 +S'to' +p84133 +tp84134 +a(g84131 +g84133 +S'be' +p84135 +tp84136 +a(g84133 +g84135 +S'exchanging' +p84137 +tp84138 +a(g84135 +g84137 +S'something—exactly' +p84139 +tp84140 +a(g84137 +g84139 +S'what' +p84141 +tp84142 +a(g84139 +g84141 +S'is' +p84143 +tp84144 +a(g84141 +g84143 +S'no' +p84145 +tp84146 +a(g84143 +g84145 +S'longer' +p84147 +tp84148 +a(g84145 +g84147 +S'clear—with' +p84149 +tp84150 +a(g84147 +g84149 +S'her' +p84151 +tp84152 +a(g84149 +g84151 +S'son' +p84153 +tp84154 +a(g84151 +g84153 +S'cupid.' +p84155 +tp84156 +a(g84153 +g84155 +S'perhaps' +p84157 +tp84158 +a(g84155 +g84157 +S'the' +p84159 +tp84160 +a(g84157 +g84159 +S'scene' +p84161 +tp84162 +a(g84159 +g84161 +S'illustrated' +p84163 +tp84164 +a(g84161 +g84163 +S'some' +p84165 +tp84166 +a(g84163 +g84165 +S'episode' +p84167 +tp84168 +a(g84165 +g84167 +S'from' +p84169 +tp84170 +a(g84167 +g84169 +S'an' +p84171 +tp84172 +a(g84169 +g84171 +S'ancient' +p84173 +tp84174 +a(g84171 +g84173 +S'myth—or' +p84175 +tp84176 +a(g84173 +g84175 +S'perhaps' +p84177 +tp84178 +a(g84175 +g84177 +S'the' +p84179 +tp84180 +a(g84177 +g84179 +S'only' +p84181 +tp84182 +a(g84179 +g84181 +S'“subject”' +p84183 +tp84184 +a(g84181 +g84183 +S'is' +p84185 +tp84186 +a(g84183 +g84185 +S'its' +p84187 +tp84188 +a(g84185 +g84187 +S'poetic' +p84189 +tp84190 +a(g84187 +g84189 +S'mood.' +p84191 +tp84192 +a(g84189 +g84191 +S'brass' +p84193 +tp84194 +a(g84191 +g84193 +S'is' +p84195 +tp84196 +a(g84193 +g84195 +S'an' +p84197 +tp84198 +a(g84195 +g84197 +S'alloy' +p84199 +tp84200 +a(g84197 +g84199 +S'of' +p84201 +tp84202 +a(g84199 +g84201 +S'copper' +p84203 +tp84204 +a(g84201 +g84203 +S'and' +p84205 +tp84206 +a(g84203 +g84205 +S'zinc' +p84207 +tp84208 +a(g84205 +g84207 +S'that' +p84209 +tp84210 +a(g84207 +g84209 +S'was' +p84211 +tp84212 +a(g84209 +g84211 +S'popular' +p84213 +tp84214 +a(g84211 +g84213 +S'with' +p84215 +tp84216 +a(g84213 +g84215 +S'early' +p84217 +tp84218 +a(g84215 +g84217 +S'artisans' +p84219 +tp84220 +a(g84217 +g84219 +S'for' +p84221 +tp84222 +a(g84219 +g84221 +S'making' +p84223 +tp84224 +a(g84221 +g84223 +S'a' +p84225 +tp84226 +a(g84223 +g84225 +S'variety' +p84227 +tp84228 +a(g84225 +g84227 +S'of' +p84229 +tp84230 +a(g84227 +g84229 +S'household' +p84231 +tp84232 +a(g84229 +g84231 +S'articles.' +p84233 +tp84234 +a(g84231 +g84233 +S'brass' +p84235 +tp84236 +a(g84233 +g84235 +S'is' +p84237 +tp84238 +a(g84235 +g84237 +S'hard' +p84239 +tp84240 +a(g84237 +g84239 +S'yet' +p84241 +tp84242 +a(g84239 +g84241 +S'malleable' +p84243 +tp84244 +a(g84241 +g84243 +S'and' +p84245 +tp84246 +a(g84243 +g84245 +S'will' +p84247 +tp84248 +a(g84245 +g84247 +S'take' +p84249 +tp84250 +a(g84247 +g84249 +S'a' +p84251 +tp84252 +a(g84249 +g84251 +S'high' +p84253 +tp84254 +a(g84251 +g84253 +S'polish.' +p84255 +tp84256 +a(g84253 +g84255 +S'because' +p84257 +tp84258 +a(g84255 +g84257 +S'of' +p84259 +tp84260 +a(g84257 +g84259 +S'the' +p84261 +tp84262 +a(g84259 +g84261 +S'bright,' +p84263 +tp84264 +a(g84261 +g84263 +S'golden' +p84265 +tp84266 +a(g84263 +g84265 +S'beauty' +p84267 +tp84268 +a(g84265 +g84267 +S'of' +p84269 +tp84270 +a(g84267 +g84269 +S'this' +p84271 +tp84272 +a(g84269 +g84271 +S'metal,' +p84273 +tp84274 +a(g84271 +g84273 +S'articles' +p84275 +tp84276 +a(g84273 +g84275 +S'such' +p84277 +tp84278 +a(g84275 +g84277 +S'as' +p84279 +tp84280 +a(g84277 +g84279 +S'andirons,' +p84281 +tp84282 +a(g84279 +g84281 +S'candlesticks,' +p84283 +tp84284 +a(g84281 +g84283 +S'and' +p84285 +tp84286 +a(g84283 +g84285 +S'other' +p84287 +tp84288 +a(g84285 +g84287 +S'accessories' +p84289 +tp84290 +a(g84287 +g84289 +S'were' +p84291 +tp84292 +a(g84289 +g84291 +S'made' +p84293 +tp84294 +a(g84291 +g84293 +S'of' +p84295 +tp84296 +a(g84293 +g84295 +S'brass' +p84297 +tp84298 +a(g84295 +g84297 +S'for' +p84299 +tp84300 +a(g84297 +g84299 +S'fine' +p84301 +tp84302 +a(g84299 +g84301 +S'drawing' +p84303 +tp84304 +a(g84301 +g84303 +S'rooms.' +p84305 +tp84306 +a(g84303 +g84305 +S'this' +p84307 +tp84308 +a(g84305 +g84307 +S'brass' +p84309 +tp84310 +a(g84307 +g84309 +S'warming' +p84311 +tp84312 +a(g84309 +g84311 +S'pan' +p84313 +tp84314 +a(g84311 +g84313 +S'was' +p84315 +tp84316 +a(g84313 +g84315 +S'used' +p84317 +tp84318 +a(g84315 +g84317 +S'to' +p84319 +tp84320 +a(g84317 +g84319 +S'warm' +p84321 +tp84322 +a(g84319 +g84321 +S'cold' +p84323 +tp84324 +a(g84321 +g84323 +S'bedsheets' +p84325 +tp84326 +a(g84323 +g84325 +S'on' +p84327 +tp84328 +a(g84325 +g84327 +S'a' +p84329 +tp84330 +a(g84327 +g84329 +S'wintry' +p84331 +tp84332 +a(g84329 +g84331 +S'night.' +p84333 +tp84334 +a(g84331 +g84333 +S'bedwarmers' +p84335 +tp84336 +a(g84333 +g84335 +S'were' +p84337 +tp84338 +a(g84335 +g84337 +S'a' +p84339 +tp84340 +a(g84337 +g84339 +S'practical' +p84341 +tp84342 +a(g84339 +g84341 +S'necessity' +p84343 +tp84344 +a(g84341 +g84343 +S'in' +p84345 +tp84346 +a(g84343 +g84345 +S'cold' +p84347 +tp84348 +a(g84345 +g84347 +S'climates' +p84349 +tp84350 +a(g84347 +g84349 +S'until' +p84351 +tp84352 +a(g84349 +g84351 +S'modern' +p84353 +tp84354 +a(g84351 +g84353 +S'heating' +p84355 +tp84356 +a(g84353 +g84355 +S'systems' +p84357 +tp84358 +a(g84355 +g84357 +S'came' +p84359 +tp84360 +a(g84357 +g84359 +S'into' +p84361 +tp84362 +a(g84359 +g84361 +S'existence.' +p84363 +tp84364 +a(g84361 +g84363 +S'this' +p84365 +tp84366 +a(g84363 +g84365 +S'bedwarmer' +p84367 +tp84368 +a(g84365 +g84367 +S'was' +p84369 +tp84370 +a(g84367 +g84369 +S'constructed' +p84371 +tp84372 +a(g84369 +g84371 +S'with' +p84373 +tp84374 +a(g84371 +g84373 +S'a' +p84375 +tp84376 +a(g84373 +g84375 +S'hinged' +p84377 +tp84378 +a(g84375 +g84377 +S'lid' +p84379 +tp84380 +a(g84377 +g84379 +S'covering' +p84381 +tp84382 +a(g84379 +g84381 +S'a' +p84383 +tp84384 +a(g84381 +g84383 +S'pan' +p84385 +tp84386 +a(g84383 +g84385 +S'several' +p84387 +tp84388 +a(g84385 +g84387 +S'inches' +p84389 +tp84390 +a(g84387 +g84389 +S'deep' +p84391 +tp84392 +a(g84389 +g84391 +S'into' +p84393 +tp84394 +a(g84391 +g84393 +S'which' +p84395 +tp84396 +a(g84393 +g84395 +S'hot' +p84397 +tp84398 +a(g84395 +g84397 +S'coals' +p84399 +tp84400 +a(g84397 +g84399 +S'were' +p84401 +tp84402 +a(g84399 +g84401 +S'usually' +p84403 +tp84404 +a(g84401 +g84403 +S'placed.' +p84405 +tp84406 +a(g84403 +g84405 +S'holes' +p84407 +tp84408 +a(g84405 +g84407 +S'perforated' +p84409 +tp84410 +a(g84407 +g84409 +S'in' +p84411 +tp84412 +a(g84409 +g84411 +S'the' +p84413 +tp84414 +a(g84411 +g84413 +S'lid' +p84415 +tp84416 +a(g84413 +g84415 +S'allowed' +p84417 +tp84418 +a(g84415 +g84417 +S'smoke' +p84419 +tp84420 +a(g84417 +g84419 +S'to' +p84421 +tp84422 +a(g84419 +g84421 +S'escape.' +p84423 +tp84424 +a(g84421 +g84423 +S'wooden' +p84425 +tp84426 +a(g84423 +g84425 +S'handles,' +p84427 +tp84428 +a(g84425 +g84427 +S'often' +p84429 +tp84430 +a(g84427 +g84429 +S'several' +p84431 +tp84432 +a(g84429 +g84431 +S'feet' +p84433 +tp84434 +a(g84431 +g84433 +S'long,' +p84435 +tp84436 +a(g84433 +g84435 +S'were' +p84437 +tp84438 +a(g84435 +g84437 +S'attached' +p84439 +tp84440 +a(g84437 +g84439 +S'to' +p84441 +tp84442 +a(g84439 +g84441 +S'eighteenth-century' +p84443 +tp84444 +a(g84441 +g84443 +S'warming' +p84445 +tp84446 +a(g84443 +g84445 +S'pans' +p84447 +tp84448 +a(g84445 +g84447 +S'like' +p84449 +tp84450 +a(g84447 +g84449 +S'this' +p84451 +tp84452 +a(g84449 +g84451 +S'one.' +p84453 +tp84454 +a(g84451 +g84453 +S'this' +p84455 +tp84456 +a(g84453 +g84455 +S'pan' +p84457 +tp84458 +a(g84455 +g84457 +S'was' +p84459 +tp84460 +a(g84457 +g84459 +S'cast' +p84461 +tp84462 +a(g84459 +g84461 +S'from' +p84463 +tp84464 +a(g84461 +g84463 +S'a' +p84465 +tp84466 +a(g84463 +g84465 +S'sand' +p84467 +tp84468 +a(g84465 +g84467 +S'mold.' +p84469 +tp84470 +a(g84467 +g84469 +S'the' +p84471 +tp84472 +a(g84469 +g84471 +S'rims' +p84473 +tp84474 +a(g84471 +g84473 +S'of' +p84475 +tp84476 +a(g84473 +g84475 +S'the' +p84477 +tp84478 +a(g84475 +g84477 +S'lid' +p84479 +tp84480 +a(g84477 +g84479 +S'and' +p84481 +tp84482 +a(g84479 +g84481 +S'the' +p84483 +tp84484 +a(g84481 +g84483 +S'base' +p84485 +tp84486 +a(g84483 +g84485 +S'were' +p84487 +tp84488 +a(g84485 +g84487 +S'reinforced' +p84489 +tp84490 +a(g84487 +g84489 +S'with' +p84491 +tp84492 +a(g84489 +g84491 +S'wire' +p84493 +tp84494 +a(g84491 +g84493 +S'to' +p84495 +tp84496 +a(g84493 +g84495 +S'strengthen' +p84497 +tp84498 +a(g84495 +g84497 +S'the' +p84499 +tp84500 +a(g84497 +g84499 +S'edges' +p84501 +tp84502 +a(g84499 +g84501 +S'and' +p84503 +tp84504 +a(g84501 +g84503 +S'to' +p84505 +tp84506 +a(g84503 +g84505 +S'provide' +p84507 +tp84508 +a(g84505 +g84507 +S'a' +p84509 +tp84510 +a(g84507 +g84509 +S'neat' +p84511 +tp84512 +a(g84509 +g84511 +S'appearance.' +p84513 +tp84514 +a(g84511 +g84513 +S'after' +p84515 +tp84516 +a(g84513 +g84515 +S'the' +p84517 +tp84518 +a(g84515 +g84517 +S'pan' +p84519 +tp84520 +a(g84517 +g84519 +S'was' +p84521 +tp84522 +a(g84519 +g84521 +S'cast,' +p84523 +tp84524 +a(g84521 +g84523 +S'it' +p84525 +tp84526 +a(g84523 +g84525 +S'was' +p84527 +tp84528 +a(g84525 +g84527 +S'polished' +p84529 +tp84530 +a(g84527 +g84529 +S'by' +p84531 +tp84532 +a(g84529 +g84531 +S'hand' +p84533 +tp84534 +a(g84531 +g84533 +S'to' +p84535 +tp84536 +a(g84533 +g84535 +S'achieve' +p84537 +tp84538 +a(g84535 +g84537 +S'a' +p84539 +tp84540 +a(g84537 +g84539 +S'bright' +p84541 +tp84542 +a(g84539 +g84541 +S'shine.' +p84543 +tp84544 +a(g84541 +g84543 +S'the' +p84545 +tp84546 +a(g84543 +g84545 +S'lid' +p84547 +tp84548 +a(g84545 +g84547 +S'decoration' +p84549 +tp84550 +a(g84547 +g84549 +S'was' +p84551 +tp84552 +a(g84549 +g84551 +S'embossed,' +p84553 +tp84554 +a(g84551 +g84553 +S'a' +p84555 +tp84556 +a(g84553 +g84555 +S'process' +p84557 +tp84558 +a(g84555 +g84557 +S'done' +p84559 +tp84560 +a(g84557 +g84559 +S'by' +p84561 +tp84562 +a(g84559 +g84561 +S'hammer' +p84563 +tp84564 +a(g84561 +g84563 +S'and' +p84565 +tp84566 +a(g84563 +g84565 +S'chisel.' +p84567 +tp84568 +a(g84565 +g84567 +S'the' +p84569 +tp84570 +a(g84567 +g84569 +S'pattern' +p84571 +tp84572 +a(g84569 +g84571 +S'of' +p84573 +tp84574 +a(g84571 +g84573 +S'wavy' +p84575 +tp84576 +a(g84573 +g84575 +S'lines,' +p84577 +tp84578 +a(g84575 +g84577 +S'the' +p84579 +tp84580 +a(g84577 +g84579 +S'flowers,' +p84581 +tp84582 +a(g84579 +g84581 +S'and' +p84583 +tp84584 +a(g84581 +g84583 +S'the' +p84585 +tp84586 +a(g84583 +g84585 +S'rooster' +p84587 +tp84588 +a(g84585 +g84587 +S'lend' +p84589 +tp84590 +a(g84587 +g84589 +S'a' +p84591 +tp84592 +a(g84589 +g84591 +S'folk' +p84593 +tp84594 +a(g84591 +g84593 +S'art' +p84595 +tp84596 +a(g84593 +g84595 +S'quality' +p84597 +tp84598 +a(g84595 +g84597 +S'to' +p84599 +tp84600 +a(g84597 +g84599 +S'the' +p84601 +tp84602 +a(g84599 +g84601 +S'design.' +p84603 +tp84604 +a(g84601 +g84603 +S'this' +p84605 +tp84606 +a(g84603 +g84605 +S'carved' +p84607 +tp84608 +a(g84605 +g84607 +S'figure' +p84609 +tp84610 +a(g84607 +g84609 +S'is' +p84611 +tp84612 +a(g84609 +g84611 +S'a' +p84613 +tp84614 +a(g84611 +g84613 +S'whirligig.' +p84615 +tp84616 +a(g84613 +g84615 +S'used' +p84617 +tp84618 +a(g84615 +g84617 +S'as' +p84619 +tp84620 +a(g84617 +g84619 +S'both' +p84621 +tp84622 +a(g84619 +g84621 +S'a' +p84623 +tp84624 +a(g84621 +g84623 +S'toy' +p84625 +tp84626 +a(g84623 +g84625 +S'and' +p84627 +tp84628 +a(g84625 +g84627 +S'a' +p84629 +tp84630 +a(g84627 +g84629 +S'weather' +p84631 +tp84632 +a(g84629 +g84631 +S'vane,' +p84633 +tp84634 +a(g84631 +g84633 +S'the' +p84635 +tp84636 +a(g84633 +g84635 +S'whirligig' +p84637 +tp84638 +a(g84635 +g84637 +S'was' +p84639 +tp84640 +a(g84637 +g84639 +S'made' +p84641 +tp84642 +a(g84639 +g84641 +S'so' +p84643 +tp84644 +a(g84641 +g84643 +S'that' +p84645 +tp84646 +a(g84643 +g84645 +S'the' +p84647 +tp84648 +a(g84645 +g84647 +S'paddlelike' +p84649 +tp84650 +a(g84647 +g84649 +S'arms' +p84651 +tp84652 +a(g84649 +g84651 +S'could' +p84653 +tp84654 +a(g84651 +g84653 +S'rotate' +p84655 +tp84656 +a(g84653 +g84655 +S'in' +p84657 +tp84658 +a(g84655 +g84657 +S'the' +p84659 +tp84660 +a(g84657 +g84659 +S'wind.' +p84661 +tp84662 +a(g84659 +g84661 +S'the' +p84663 +tp84664 +a(g84661 +g84663 +S'head' +p84665 +tp84666 +a(g84663 +g84665 +S'and' +p84667 +tp84668 +a(g84665 +g84667 +S'body' +p84669 +tp84670 +a(g84667 +g84669 +S'are' +p84671 +tp84672 +a(g84669 +g84671 +S'made' +p84673 +tp84674 +a(g84671 +g84673 +S'from' +p84675 +tp84676 +a(g84673 +g84675 +S'a' +p84677 +tp84678 +a(g84675 +g84677 +S'single' +p84679 +tp84680 +a(g84677 +g84679 +S'piece' +p84681 +tp84682 +a(g84679 +g84681 +S'of' +p84683 +tp84684 +a(g84681 +g84683 +S'wood' +p84685 +tp84686 +a(g84683 +g84685 +S'while' +p84687 +tp84688 +a(g84685 +g84687 +S'the' +p84689 +tp84690 +a(g84687 +g84689 +S'arms' +p84691 +tp84692 +a(g84689 +g84691 +S'are' +p84693 +tp84694 +a(g84691 +g84693 +S'attached' +p84695 +tp84696 +a(g84693 +g84695 +S'by' +p84697 +tp84698 +a(g84695 +g84697 +S'a' +p84699 +tp84700 +a(g84697 +g84699 +S'rod' +p84701 +tp84702 +a(g84699 +g84701 +S'that' +p84703 +tp84704 +a(g84701 +g84703 +S'passes' +p84705 +tp84706 +a(g84703 +g84705 +S'through' +p84707 +tp84708 +a(g84705 +g84707 +S'the' +p84709 +tp84710 +a(g84707 +g84709 +S'shoulders.' +p84711 +tp84712 +a(g84709 +g84711 +S'made' +p84713 +tp84714 +a(g84711 +g84713 +S'about' +p84715 +tp84716 +a(g84713 +g84715 +S'1840,' +p84717 +tp84718 +a(g84715 +g84717 +S'this' +p84719 +tp84720 +a(g84717 +g84719 +S'whirligig' +p84721 +tp84722 +a(g84719 +g84721 +S'was' +p84723 +tp84724 +a(g84721 +g84723 +S'probably' +p84725 +tp84726 +a(g84723 +g84725 +S'carved' +p84727 +tp84728 +a(g84725 +g84727 +S'by' +p84729 +tp84730 +a(g84727 +g84729 +S'an' +p84731 +tp84732 +a(g84729 +g84731 +S'amateur.' +p84733 +tp84734 +a(g84731 +g84733 +S'the' +p84735 +tp84736 +a(g84733 +g84735 +S'poet' +p84737 +tp84738 +a(g84735 +g84737 +S'petrarch' +p84739 +tp84740 +a(g84737 +g84739 +S'called' +p84741 +tp84742 +a(g84739 +g84741 +S'venice' +p84743 +tp84744 +a(g84741 +g84743 +S'“a' +p84745 +tp84746 +a(g84743 +g84745 +S'world' +p84747 +tp84748 +a(g84745 +g84747 +S'apart.”' +p84749 +tp84750 +a(g84747 +g84749 +S'protected' +p84751 +tp84752 +a(g84749 +g84751 +S'by' +p84753 +tp84754 +a(g84751 +g84753 +S'a' +p84755 +tp84756 +a(g84753 +g84755 +S'bewildering' +p84757 +tp84758 +a(g84755 +g84757 +S'network' +p84759 +tp84760 +a(g84757 +g84759 +S'of' +p84761 +tp84762 +a(g84759 +g84761 +S'canals,' +p84763 +tp84764 +a(g84761 +g84763 +S'the' +p84765 +tp84766 +a(g84763 +g84765 +S'city' +p84767 +tp84768 +a(g84765 +g84767 +S'naturally' +p84769 +tp84770 +a(g84767 +g84769 +S'turned' +p84771 +tp84772 +a(g84769 +g84771 +S'to' +p84773 +tp84774 +a(g84771 +g84773 +S'the' +p84775 +tp84776 +a(g84773 +g84775 +S'sea' +p84777 +tp84778 +a(g84775 +g84777 +S'and,' +p84779 +tp84780 +a(g84777 +g84779 +S'in' +p84781 +tp84782 +a(g84779 +g84781 +S'the' +p84783 +tp84784 +a(g84781 +g84783 +S'thirteenth' +p84785 +tp84786 +a(g84783 +g84785 +S'and' +p84787 +tp84788 +a(g84785 +g84787 +S'fourteenth' +p84789 +tp84790 +a(g84787 +g84789 +S'centuries,' +p84791 +tp84792 +a(g84789 +g84791 +S'commanded' +p84793 +tp84794 +a(g84791 +g84793 +S'an' +p84795 +tp84796 +a(g84793 +g84795 +S'extensive' +p84797 +tp84798 +a(g84795 +g84797 +S'empire' +p84799 +tp84800 +a(g84797 +g84799 +S'in' +p84801 +tp84802 +a(g84799 +g84801 +S'the' +p84803 +tp84804 +a(g84801 +g84803 +S'eastern' +p84805 +tp84806 +a(g84803 +g84805 +S'mediterranean.' +p84807 +tp84808 +a(g84805 +g84807 +S'when' +p84809 +tp84810 +a(g84807 +g84809 +S'venetian' +p84811 +tp84812 +a(g84809 +g84811 +S'commercial' +p84813 +tp84814 +a(g84811 +g84813 +S'interests' +p84815 +tp84816 +a(g84813 +g84815 +S'diverted' +p84817 +tp84818 +a(g84815 +g84817 +S'the' +p84819 +tp84820 +a(g84817 +g84819 +S'fourth' +p84821 +tp84822 +a(g84819 +g84821 +S'crusade' +p84823 +tp84824 +a(g84821 +g84823 +S'from' +p84825 +tp84826 +a(g84823 +g84825 +S'the' +p84827 +tp84828 +a(g84825 +g84827 +S'holy' +p84829 +tp84830 +a(g84827 +g84829 +S'land' +p84831 +tp84832 +a(g84829 +g84831 +S'to' +p84833 +tp84834 +a(g84831 +g84833 +S'loot' +p84835 +tp84836 +a(g84833 +g84835 +S'the' +p84837 +tp84838 +a(g84835 +g84837 +S'riches' +p84839 +tp84840 +a(g84837 +g84839 +S'of' +p84841 +tp84842 +a(g84839 +g84841 +S'byzantium' +p84843 +tp84844 +a(g84841 +g84843 +S'instead,' +p84845 +tp84846 +a(g84843 +g84845 +S'many' +p84847 +tp84848 +a(g84845 +g84847 +S'greek' +p84849 +tp84850 +a(g84847 +g84849 +S'artists' +p84851 +tp84852 +a(g84849 +g84851 +S'were' +p84853 +tp84854 +a(g84851 +g84853 +S'forced' +p84855 +tp84856 +a(g84853 +g84855 +S'to' +p84857 +tp84858 +a(g84855 +g84857 +S'find' +p84859 +tp84860 +a(g84857 +g84859 +S'work' +p84861 +tp84862 +a(g84859 +g84861 +S'in' +p84863 +tp84864 +a(g84861 +g84863 +S'italy.' +p84865 +tp84866 +a(g84863 +g84865 +S'that' +p84867 +tp84868 +a(g84865 +g84867 +S'the' +p84869 +tp84870 +a(g84867 +g84869 +S'city' +p84871 +tp84872 +a(g84869 +g84871 +S'remained' +p84873 +tp84874 +a(g84871 +g84873 +S'tied' +p84875 +tp84876 +a(g84873 +g84875 +S'to' +p84877 +tp84878 +a(g84875 +g84877 +S'its' +p84879 +tp84880 +a(g84877 +g84879 +S'byzantine' +p84881 +tp84882 +a(g84879 +g84881 +S'traditions' +p84883 +tp84884 +a(g84881 +g84883 +S'is' +p84885 +tp84886 +a(g84883 +g84885 +S'evident' +p84887 +tp84888 +a(g84885 +g84887 +S'in' +p84889 +tp84890 +a(g84887 +g84889 +S'the' +p84891 +tp84892 +a(g84889 +g84891 +S'work' +p84893 +tp84894 +a(g84891 +g84893 +S'of' +p84895 +tp84896 +a(g84893 +g84895 +S'paolo' +p84897 +tp84898 +a(g84895 +g84897 +S'veneziano,' +p84899 +tp84900 +a(g84897 +g84899 +S'the' +p84901 +tp84902 +a(g84899 +g84901 +S'first' +p84903 +tp84904 +a(g84901 +g84903 +S'venetian' +p84905 +tp84906 +a(g84903 +g84905 +S'artist' +p84907 +tp84908 +a(g84905 +g84907 +S'we' +p84909 +tp84910 +a(g84907 +g84909 +S'know' +p84911 +tp84912 +a(g84909 +g84911 +S'by' +p84913 +tp84914 +a(g84911 +g84913 +S'name.' +p84915 +tp84916 +a(g84913 +g84915 +S'if' +p84917 +tp84918 +a(g84915 +g84917 +S'he' +p84919 +tp84920 +a(g84917 +g84919 +S'was' +p84921 +tp84922 +a(g84919 +g84921 +S'aware' +p84923 +tp84924 +a(g84921 +g84923 +S'of' +p84925 +tp84926 +a(g84923 +g84925 +S'the' +p84927 +tp84928 +a(g84925 +g84927 +S'more' +p84929 +tp84930 +a(g84927 +g84929 +S'naturalistic' +p84931 +tp84932 +a(g84929 +g84931 +S'styles' +p84933 +tp84934 +a(g84931 +g84933 +S'of' +p84935 +tp84936 +a(g84933 +g84935 +S'his' +p84937 +tp84938 +a(g84935 +g84937 +S'contemporaries' +p84939 +tp84940 +a(g84937 +g84939 +S'in' +p84941 +tp84942 +a(g84939 +g84941 +S'other' +p84943 +tp84944 +a(g84941 +g84943 +S'parts' +p84945 +tp84946 +a(g84943 +g84945 +S'of' +p84947 +tp84948 +a(g84945 +g84947 +S'italy,' +p84949 +tp84950 +a(g84947 +g84949 +S'he' +p84951 +tp84952 +a(g84949 +g84951 +S'chose' +p84953 +tp84954 +a(g84951 +g84953 +S'not' +p84955 +tp84956 +a(g84953 +g84955 +S'to' +p84957 +tp84958 +a(g84955 +g84957 +S'emulate' +p84959 +tp84960 +a(g84957 +g84959 +S'them.' +p84961 +tp84962 +a(g84959 +g84961 +S'this' +p84963 +tp84964 +a(g84961 +g84963 +S'painting’s' +p84965 +tp84966 +a(g84963 +g84965 +S'small' +p84967 +tp84968 +a(g84965 +g84967 +S'size' +p84969 +tp84970 +a(g84967 +g84969 +S'and' +p84971 +tp84972 +a(g84969 +g84971 +S'arched' +p84973 +tp84974 +a(g84971 +g84973 +S'shape' +p84975 +tp84976 +a(g84973 +g84975 +S'suggest' +p84977 +tp84978 +a(g84975 +g84977 +S'that' +p84979 +tp84980 +a(g84977 +g84979 +S'it' +p84981 +tp84982 +a(g84979 +g84981 +S'might' +p84983 +tp84984 +a(g84981 +g84983 +S'have' +p84985 +tp84986 +a(g84983 +g84985 +S'originally' +p84987 +tp84988 +a(g84985 +g84987 +S'crowned' +p84989 +tp84990 +a(g84987 +g84989 +S'a' +p84991 +tp84992 +a(g84989 +g84991 +S'larger' +p84993 +tp84994 +a(g84991 +g84993 +S'panel' +p84995 +tp84996 +a(g84993 +g84995 +S'in' +p84997 +tp84998 +a(g84995 +g84997 +S'a' +p84999 +tp85000 +a(g84997 +g84999 +S'multipart' +p85001 +tp85002 +a(g84999 +g85001 +S'altarpiece.' +p85003 +tp85004 +a(g85001 +g85003 +S'paolo’s' +p85005 +tp85006 +a(g85003 +g85005 +S'style' +p85007 +tp85008 +a(g85005 +g85007 +S'is' +p85009 +tp85010 +a(g85007 +g85009 +S'essentially' +p85011 +tp85012 +a(g85009 +g85011 +S'byzantine,' +p85013 +tp85014 +a(g85011 +g85013 +S'with' +p85015 +tp85016 +a(g85013 +g85015 +S'ethereal' +p85017 +tp85018 +a(g85015 +g85017 +S'figures' +p85019 +tp85020 +a(g85017 +g85019 +S'and' +p85021 +tp85022 +a(g85019 +g85021 +S'flat' +p85023 +tp85024 +a(g85021 +g85023 +S'gold' +p85025 +tp85026 +a(g85023 +g85025 +S'backgrounds.' +p85027 +tp85028 +a(g85025 +g85027 +S'but' +p85029 +tp85030 +a(g85027 +g85029 +S'his' +p85031 +tp85032 +a(g85029 +g85031 +S'form—the' +p85033 +tp85034 +a(g85031 +g85033 +S'altarpiece—is' +p85035 +tp85036 +a(g85033 +g85035 +S'a' +p85037 +tp85038 +a(g85035 +g85037 +S'western' +p85039 +tp85040 +a(g85037 +g85039 +S'one.' +p85041 +tp85042 +a(g85039 +g85041 +S"paolo's" +p85043 +tp85044 +a(g85041 +g85043 +S'the' +p85045 +tp85046 +a(g85043 +g85045 +S'stern' +p85047 +tp85048 +a(g85045 +g85047 +S'of' +p85049 +tp85050 +a(g85047 +g85049 +S'the' +p85051 +tp85052 +a(g85049 +g85051 +S'ship' +p85053 +tp85054 +a(g85051 +g85053 +S'was' +p85055 +tp85056 +a(g85053 +g85055 +S'usually' +p85057 +tp85058 +a(g85055 +g85057 +S'decorated' +p85059 +tp85060 +a(g85057 +g85059 +S'with' +p85061 +tp85062 +a(g85059 +g85061 +S'a' +p85063 +tp85064 +a(g85061 +g85063 +S'sternboard' +p85065 +tp85066 +a(g85063 +g85065 +S'or' +p85067 +tp85068 +a(g85065 +g85067 +S'sternpiece,' +p85069 +tp85070 +a(g85067 +g85069 +S'such' +p85071 +tp85072 +a(g85069 +g85071 +S'as' +p85073 +tp85074 +a(g85071 +g85073 +S'the' +p85075 +tp85076 +a(g85073 +g85075 +S'one' +p85077 +tp85078 +a(g85075 +g85077 +S'shown' +p85079 +tp85080 +a(g85077 +g85079 +S'here.' +p85081 +tp85082 +a(g85079 +g85081 +S'the' +p85083 +tp85084 +a(g85081 +g85083 +S'eagle' +p85085 +tp85086 +a(g85083 +g85085 +S'was' +p85087 +tp85088 +a(g85085 +g85087 +S'a' +p85089 +tp85090 +a(g85087 +g85089 +S'favorite' +p85091 +tp85092 +a(g85089 +g85091 +S'motif,' +p85093 +tp85094 +a(g85091 +g85093 +S'but' +p85095 +tp85096 +a(g85093 +g85095 +S'other' +p85097 +tp85098 +a(g85095 +g85097 +S'subjects' +p85099 +tp85100 +a(g85097 +g85099 +S'included' +p85101 +tp85102 +a(g85099 +g85101 +S'allegorical' +p85103 +tp85104 +a(g85101 +g85103 +S'figures,' +p85105 +tp85106 +a(g85103 +g85105 +S'the' +p85107 +tp85108 +a(g85105 +g85107 +S'american' +p85109 +tp85110 +a(g85107 +g85109 +S'indian,' +p85111 +tp85112 +a(g85109 +g85111 +S'and' +p85113 +tp85114 +a(g85111 +g85113 +S'occasionally' +p85115 +tp85116 +a(g85113 +g85115 +S'the' +p85117 +tp85118 +a(g85115 +g85117 +S'shipowner' +p85119 +tp85120 +a(g85117 +g85119 +S'or' +p85121 +tp85122 +a(g85119 +g85121 +S'his' +p85123 +tp85124 +a(g85121 +g85123 +S'wife.' +p85125 +tp85126 +a(g85123 +g85125 +S'this' +p85127 +tp85128 +a(g85125 +g85127 +S'sternpiece' +p85129 +tp85130 +a(g85127 +g85129 +S'was' +p85131 +tp85132 +a(g85129 +g85131 +S'made' +p85133 +tp85134 +a(g85131 +g85133 +S'for' +p85135 +tp85136 +a(g85133 +g85135 +S'the' +p85137 +tp85138 +a(g85135 +g85137 +S'the' +p85139 +tp85140 +a(g85137 +g85139 +S'ornament' +p85141 +tp85142 +a(g85139 +g85141 +S'of' +p85143 +tp85144 +a(g85141 +g85143 +S'circus' +p85145 +tp85146 +a(g85143 +g85145 +S'wagons' +p85147 +tp85148 +a(g85145 +g85147 +S'was' +p85149 +tp85150 +a(g85147 +g85149 +S'not' +p85151 +tp85152 +a(g85149 +g85151 +S'intended' +p85153 +tp85154 +a(g85151 +g85153 +S'to' +p85155 +tp85156 +a(g85153 +g85155 +S'be' +p85157 +tp85158 +a(g85155 +g85157 +S'studied' +p85159 +tp85160 +a(g85157 +g85159 +S'carefully;' +p85161 +tp85162 +a(g85159 +g85161 +S'it' +p85163 +tp85164 +a(g85161 +g85163 +S'was' +p85165 +tp85166 +a(g85163 +g85165 +S'meant' +p85167 +tp85168 +a(g85165 +g85167 +S'to' +p85169 +tp85170 +a(g85167 +g85169 +S'give' +p85171 +tp85172 +a(g85169 +g85171 +S'a' +p85173 +tp85174 +a(g85171 +g85173 +S'momentary' +p85175 +tp85176 +a(g85173 +g85175 +S'impression' +p85177 +tp85178 +a(g85175 +g85177 +S'in' +p85179 +tp85180 +a(g85177 +g85179 +S'the' +p85181 +tp85182 +a(g85179 +g85181 +S'passing' +p85183 +tp85184 +a(g85181 +g85183 +S'parade.' +p85185 +tp85186 +a(g85183 +g85185 +S'the' +p85187 +tp85188 +a(g85185 +g85187 +S'same' +p85189 +tp85190 +a(g85187 +g85189 +S'applied' +p85191 +tp85192 +a(g85189 +g85191 +S'to' +p85193 +tp85194 +a(g85191 +g85193 +S'the' +p85195 +tp85196 +a(g85193 +g85195 +S'lavish' +p85197 +tp85198 +a(g85195 +g85197 +S'floats' +p85199 +tp85200 +a(g85197 +g85199 +S'depicting' +p85201 +tp85202 +a(g85199 +g85201 +S'tableaux' +p85203 +tp85204 +a(g85201 +g85203 +S'of' +p85205 +tp85206 +a(g85203 +g85205 +S'historical' +p85207 +tp85208 +a(g85205 +g85207 +S'or' +p85209 +tp85210 +a(g85207 +g85209 +S'religious' +p85211 +tp85212 +a(g85209 +g85211 +S'events.' +p85213 +tp85214 +a(g85211 +g85213 +S'the' +p85215 +tp85216 +a(g85213 +g85215 +S'carvings' +p85217 +tp85218 +a(g85215 +g85217 +S'used' +p85219 +tp85220 +a(g85217 +g85219 +S'for' +p85221 +tp85222 +a(g85219 +g85221 +S'these' +p85223 +tp85224 +a(g85221 +g85223 +S'purposes' +p85225 +tp85226 +a(g85223 +g85225 +S'needed' +p85227 +tp85228 +a(g85225 +g85227 +S'to' +p85229 +tp85230 +a(g85227 +g85229 +S'be' +p85231 +tp85232 +a(g85229 +g85231 +S'robust' +p85233 +tp85234 +a(g85231 +g85233 +S'and' +p85235 +tp85236 +a(g85233 +g85235 +S'colorful' +p85237 +tp85238 +a(g85235 +g85237 +S'in' +p85239 +tp85240 +a(g85237 +g85239 +S'order' +p85241 +tp85242 +a(g85239 +g85241 +S'to' +p85243 +tp85244 +a(g85241 +g85243 +S'have' +p85245 +tp85246 +a(g85243 +g85245 +S'an' +p85247 +tp85248 +a(g85245 +g85247 +S'effect' +p85249 +tp85250 +a(g85247 +g85249 +S'as' +p85251 +tp85252 +a(g85249 +g85251 +S'they' +p85253 +tp85254 +a(g85251 +g85253 +S'passed' +p85255 +tp85256 +a(g85253 +g85255 +S'by' +p85257 +tp85258 +a(g85255 +g85257 +S'the' +p85259 +tp85260 +a(g85257 +g85259 +S'crowds.' +p85261 +tp85262 +a(g85259 +g85261 +S'this' +p85263 +tp85264 +a(g85261 +g85263 +S'ferocious' +p85265 +tp85266 +a(g85263 +g85265 +S'lion' +p85267 +tp85268 +a(g85265 +g85267 +S'was' +p85269 +tp85270 +a(g85267 +g85269 +S'designed' +p85271 +tp85272 +a(g85269 +g85271 +S'to' +p85273 +tp85274 +a(g85271 +g85273 +S'strike' +p85275 +tp85276 +a(g85273 +g85275 +S'terror' +p85277 +tp85278 +a(g85275 +g85277 +S'into' +p85279 +tp85280 +a(g85277 +g85279 +S'the' +p85281 +tp85282 +a(g85279 +g85281 +S'hearts' +p85283 +tp85284 +a(g85281 +g85283 +S'of' +p85285 +tp85286 +a(g85283 +g85285 +S'small' +p85287 +tp85288 +a(g85285 +g85287 +S'children.' +p85289 +tp85290 +a(g85287 +g85289 +S'this' +p85291 +tp85292 +a(g85289 +g85291 +S'shop' +p85293 +tp85294 +a(g85291 +g85293 +S'figure' +p85295 +tp85296 +a(g85293 +g85295 +S'clearly' +p85297 +tp85298 +a(g85295 +g85297 +S'advertises' +p85299 +tp85300 +a(g85297 +g85299 +S'the' +p85301 +tp85302 +a(g85299 +g85301 +S'lunch' +p85303 +tp85304 +a(g85301 +g85303 +S'offered' +p85305 +tp85306 +a(g85303 +g85305 +S'by' +p85307 +tp85308 +a(g85305 +g85307 +S'an' +p85309 +tp85310 +a(g85307 +g85309 +S'eatery.' +p85311 +tp85312 +a(g85309 +g85311 +S'less' +p85313 +tp85314 +a(g85311 +g85313 +S'visible' +p85315 +tp85316 +a(g85313 +g85315 +S'in' +p85317 +tp85318 +a(g85315 +g85317 +S'the' +p85319 +tp85320 +a(g85317 +g85319 +S'rendering' +p85321 +tp85322 +a(g85319 +g85321 +S'is' +p85323 +tp85324 +a(g85321 +g85323 +S'the' +p85325 +tp85326 +a(g85323 +g85325 +S'inscription,' +p85327 +tp85328 +a(g85325 +g85327 +S'"robb' +p85329 +tp85330 +a(g85327 +g85329 +S"manuf'r." +p85331 +tp85332 +a(g85329 +g85331 +S'114' +p85333 +tp85334 +a(g85331 +g85333 +S'centre' +p85335 +tp85336 +a(g85333 +g85335 +S'st.' +p85337 +tp85338 +a(g85335 +g85337 +S'new' +p85339 +tp85340 +a(g85337 +g85339 +S'york,"' +p85341 +tp85342 +a(g85339 +g85341 +S'which' +p85343 +tp85344 +a(g85341 +g85343 +S'refers' +p85345 +tp85346 +a(g85343 +g85345 +S'to' +p85347 +tp85348 +a(g85345 +g85347 +S'the' +p85349 +tp85350 +a(g85347 +g85349 +S'premier' +p85351 +tp85352 +a(g85349 +g85351 +S'carver' +p85353 +tp85354 +a(g85351 +g85353 +S'of' +p85355 +tp85356 +a(g85353 +g85355 +S'show' +p85357 +tp85358 +a(g85355 +g85357 +S'figures' +p85359 +tp85360 +a(g85357 +g85359 +S'and' +p85361 +tp85362 +a(g85359 +g85361 +S'trade' +p85363 +tp85364 +a(g85361 +g85363 +S'signs' +p85365 +tp85366 +a(g85363 +g85365 +S'at' +p85367 +tp85368 +a(g85365 +g85367 +S'the' +p85369 +tp85370 +a(g85367 +g85369 +S'time,' +p85371 +tp85372 +a(g85369 +g85371 +S'samuel' +p85373 +tp85374 +a(g85371 +g85373 +S'a.' +p85375 +tp85376 +a(g85373 +g85375 +S'robb' +p85377 +tp85378 +a(g85375 +g85377 +S'(1851-1928).' +p85379 +tp85380 +a(g85377 +g85379 +S'robb' +p85381 +tp85382 +a(g85379 +g85381 +S'had' +p85383 +tp85384 +a(g85381 +g85383 +S'been' +p85385 +tp85386 +a(g85383 +g85385 +S'apprenticed' +p85387 +tp85388 +a(g85385 +g85387 +S'to' +p85389 +tp85390 +a(g85387 +g85389 +S'a' +p85391 +tp85392 +a(g85389 +g85391 +S'carver' +p85393 +tp85394 +a(g85391 +g85393 +S'and' +p85395 +tp85396 +a(g85393 +g85395 +S'then' +p85397 +tp85398 +a(g85395 +g85397 +S'studied' +p85399 +tp85400 +a(g85397 +g85399 +S'drawing' +p85401 +tp85402 +a(g85399 +g85401 +S'from' +p85403 +tp85404 +a(g85401 +g85403 +S'life' +p85405 +tp85406 +a(g85403 +g85405 +S'and' +p85407 +tp85408 +a(g85405 +g85407 +S'from' +p85409 +tp85410 +a(g85407 +g85409 +S'casts' +p85411 +tp85412 +a(g85409 +g85411 +S'at' +p85413 +tp85414 +a(g85411 +g85413 +S'the' +p85415 +tp85416 +a(g85413 +g85415 +S'national' +p85417 +tp85418 +a(g85415 +g85417 +S'academy' +p85419 +tp85420 +a(g85417 +g85419 +S'of' +p85421 +tp85422 +a(g85419 +g85421 +S'design' +p85423 +tp85424 +a(g85421 +g85423 +S'and' +p85425 +tp85426 +a(g85423 +g85425 +S'perspective' +p85427 +tp85428 +a(g85425 +g85427 +S'drawing' +p85429 +tp85430 +a(g85427 +g85429 +S'at' +p85431 +tp85432 +a(g85429 +g85431 +S'cooper' +p85433 +tp85434 +a(g85431 +g85433 +S'union.' +p85435 +tp85436 +a(g85433 +g85435 +S'by' +p85437 +tp85438 +a(g85435 +g85437 +S'1875' +p85439 +tp85440 +a(g85437 +g85439 +S'he' +p85441 +tp85442 +a(g85439 +g85441 +S'had' +p85443 +tp85444 +a(g85441 +g85443 +S'set' +p85445 +tp85446 +a(g85443 +g85445 +S'up' +p85447 +tp85448 +a(g85445 +g85447 +S'his' +p85449 +tp85450 +a(g85447 +g85449 +S'own' +p85451 +tp85452 +a(g85449 +g85451 +S'shop' +p85453 +tp85454 +a(g85451 +g85453 +S'in' +p85455 +tp85456 +a(g85453 +g85455 +S'new' +p85457 +tp85458 +a(g85455 +g85457 +S'york.' +p85459 +tp85460 +a(g85457 +g85459 +S'during' +p85461 +tp85462 +a(g85459 +g85461 +S'this' +p85463 +tp85464 +a(g85461 +g85463 +S'decade' +p85465 +tp85466 +a(g85463 +g85465 +S'baseball' +p85467 +tp85468 +a(g85465 +g85467 +S'players' +p85469 +tp85470 +a(g85467 +g85469 +S'became' +p85471 +tp85472 +a(g85469 +g85471 +S'the' +p85473 +tp85474 +a(g85471 +g85473 +S'favorite' +p85475 +tp85476 +a(g85473 +g85475 +S'subject' +p85477 +tp85478 +a(g85475 +g85477 +S'for' +p85479 +tp85480 +a(g85477 +g85479 +S'cigar-store' +p85481 +tp85482 +a(g85479 +g85481 +S'carvings,' +p85483 +tp85484 +a(g85481 +g85483 +S'and' +p85485 +tp85486 +a(g85483 +g85485 +S"robb's" +p85487 +tp85488 +a(g85485 +g85487 +S'workshop' +p85489 +tp85490 +a(g85487 +g85489 +S'produced' +p85491 +tp85492 +a(g85489 +g85491 +S'several.' +p85493 +tp85494 +a(g85491 +g85493 +S'it' +p85495 +tp85496 +a(g85493 +g85495 +S'is' +p85497 +tp85498 +a(g85495 +g85497 +S'possible' +p85499 +tp85500 +a(g85497 +g85499 +S'that' +p85501 +tp85502 +a(g85499 +g85501 +S'the' +p85503 +tp85504 +a(g85501 +g85503 +S'mustachioed' +p85505 +tp85506 +a(g85503 +g85505 +S'batter' +p85507 +tp85508 +a(g85505 +g85507 +S'in' +p85509 +tp85510 +a(g85507 +g85509 +S"ryder's" +p85511 +tp85512 +a(g85509 +g85511 +S'rendering,' +p85513 +tp85514 +a(g85511 +g85513 +S'probably' +p85515 +tp85516 +a(g85513 +g85515 +S'carved' +p85517 +tp85518 +a(g85515 +g85517 +S'between' +p85519 +tp85520 +a(g85517 +g85519 +S'1888' +p85521 +tp85522 +a(g85519 +g85521 +S'and' +p85523 +tp85524 +a(g85521 +g85523 +S'1903,' +p85525 +tp85526 +a(g85523 +g85525 +S'is' +p85527 +tp85528 +a(g85525 +g85527 +S'mike' +p85529 +tp85530 +a(g85527 +g85529 +S'"king"' +p85531 +tp85532 +a(g85529 +g85531 +S'kelly,' +p85533 +tp85534 +a(g85531 +g85533 +S'to' +p85535 +tp85536 +a(g85533 +g85535 +S'whom' +p85537 +tp85538 +a(g85535 +g85537 +S'he' +p85539 +tp85540 +a(g85537 +g85539 +S'bears' +p85541 +tp85542 +a(g85539 +g85541 +S'a' +p85543 +tp85544 +a(g85541 +g85543 +S'strong' +p85545 +tp85546 +a(g85543 +g85545 +S'resemblance.' +p85547 +tp85548 +a(g85545 +g85547 +S'kelly,' +p85549 +tp85550 +a(g85547 +g85549 +S'a' +p85551 +tp85552 +a(g85549 +g85551 +S'catcher' +p85553 +tp85554 +a(g85551 +g85553 +S'who' +p85555 +tp85556 +a(g85553 +g85555 +S'played' +p85557 +tp85558 +a(g85555 +g85557 +S'for' +p85559 +tp85560 +a(g85557 +g85559 +S'cincinnati,' +p85561 +tp85562 +a(g85559 +g85561 +S'chicago,' +p85563 +tp85564 +a(g85561 +g85563 +S'boston,' +p85565 +tp85566 +a(g85563 +g85565 +S'and' +p85567 +tp85568 +a(g85565 +g85567 +S'new' +p85569 +tp85570 +a(g85567 +g85569 +S'york' +p85571 +tp85572 +a(g85569 +g85571 +S'between' +p85573 +tp85574 +a(g85571 +g85573 +S'1878' +p85575 +tp85576 +a(g85573 +g85575 +S'and' +p85577 +tp85578 +a(g85575 +g85577 +S'1893,' +p85579 +tp85580 +a(g85577 +g85579 +S'and' +p85581 +tp85582 +a(g85579 +g85581 +S'who' +p85583 +tp85584 +a(g85581 +g85583 +S'was' +p85585 +tp85586 +a(g85583 +g85585 +S'inducted' +p85587 +tp85588 +a(g85585 +g85587 +S'into' +p85589 +tp85590 +a(g85587 +g85589 +S'the' +p85591 +tp85592 +a(g85589 +g85591 +S'baseball' +p85593 +tp85594 +a(g85591 +g85593 +S'hall' +p85595 +tp85596 +a(g85593 +g85595 +S'of' +p85597 +tp85598 +a(g85595 +g85597 +S'fame' +p85599 +tp85600 +a(g85597 +g85599 +S'in' +p85601 +tp85602 +a(g85599 +g85601 +S'1945,' +p85603 +tp85604 +a(g85601 +g85603 +S'has' +p85605 +tp85606 +a(g85603 +g85605 +S'been' +p85607 +tp85608 +a(g85605 +g85607 +S'called' +p85609 +tp85610 +a(g85607 +g85609 +S'the' +p85611 +tp85612 +a(g85609 +g85611 +S'first' +p85613 +tp85614 +a(g85611 +g85613 +S'superstar' +p85615 +tp85616 +a(g85613 +g85615 +S'of' +p85617 +tp85618 +a(g85615 +g85617 +S'baseball.' +p85619 +tp85620 +a(g85617 +g85619 +S'a' +p85621 +tp85622 +a(g85619 +g85621 +S'"bulto"' +p85623 +tp85624 +a(g85621 +g85623 +S'was' +p85625 +tp85626 +a(g85623 +g85625 +S'used' +p85627 +tp85628 +a(g85625 +g85627 +S'for' +p85629 +tp85630 +a(g85627 +g85629 +S'daily' +p85631 +tp85632 +a(g85629 +g85631 +S'reverence,' +p85633 +tp85634 +a(g85631 +g85633 +S'for' +p85635 +tp85636 +a(g85633 +g85635 +S'general' +p85637 +tp85638 +a(g85635 +g85637 +S'decoration,' +p85639 +tp85640 +a(g85637 +g85639 +S'and' +p85641 +tp85642 +a(g85639 +g85641 +S'as' +p85643 +tp85644 +a(g85641 +g85643 +S'a' +p85645 +tp85646 +a(g85643 +g85645 +S'talisman.' +p85647 +tp85648 +a(g85645 +g85647 +S'"bultos"' +p85649 +tp85650 +a(g85647 +g85649 +S'were' +p85651 +tp85652 +a(g85649 +g85651 +S'placed' +p85653 +tp85654 +a(g85651 +g85653 +S'in' +p85655 +tp85656 +a(g85653 +g85655 +S'churches' +p85657 +tp85658 +a(g85655 +g85657 +S'and' +p85659 +tp85660 +a(g85657 +g85659 +S'private' +p85661 +tp85662 +a(g85659 +g85661 +S'homes.' +p85663 +tp85664 +a(g85661 +g85663 +S'"bultos"' +p85665 +tp85666 +a(g85663 +g85665 +S'and' +p85667 +tp85668 +a(g85665 +g85667 +S'"retablos"' +p85669 +tp85670 +a(g85667 +g85669 +S'were' +p85671 +tp85672 +a(g85669 +g85671 +S'often' +p85673 +tp85674 +a(g85671 +g85673 +S'produced' +p85675 +tp85676 +a(g85673 +g85675 +S'by' +p85677 +tp85678 +a(g85675 +g85677 +S'traveling' +p85679 +tp85680 +a(g85677 +g85679 +S'"santeros,"' +p85681 +tp85682 +a(g85679 +g85681 +S'who' +p85683 +tp85684 +a(g85681 +g85683 +S'went' +p85685 +tp85686 +a(g85683 +g85685 +S'from' +p85687 +tp85688 +a(g85685 +g85687 +S'town' +p85689 +tp85690 +a(g85687 +g85689 +S'to' +p85691 +tp85692 +a(g85689 +g85691 +S'town' +p85693 +tp85694 +a(g85691 +g85693 +S'selling' +p85695 +tp85696 +a(g85693 +g85695 +S'their' +p85697 +tp85698 +a(g85695 +g85697 +S'work.' +p85699 +tp85700 +a(g85697 +g85699 +S'this' +p85701 +tp85702 +a(g85699 +g85701 +S'figure' +p85703 +tp85704 +a(g85701 +g85703 +S'represents' +p85705 +tp85706 +a(g85703 +g85705 +S'saint' +p85707 +tp85708 +a(g85705 +g85707 +S'ignatius' +p85709 +tp85710 +a(g85707 +g85709 +S'loyola,' +p85711 +tp85712 +a(g85709 +g85711 +S'the' +p85713 +tp85714 +a(g85711 +g85713 +S'founder' +p85715 +tp85716 +a(g85713 +g85715 +S'of' +p85717 +tp85718 +a(g85715 +g85717 +S'the' +p85719 +tp85720 +a(g85717 +g85719 +S'jesuit' +p85721 +tp85722 +a(g85719 +g85721 +S'order.' +p85723 +tp85724 +a(g85721 +g85723 +S'the' +p85725 +tp85726 +a(g85723 +g85725 +S'identification' +p85727 +tp85728 +a(g85725 +g85727 +S'of' +p85729 +tp85730 +a(g85727 +g85729 +S'the' +p85731 +tp85732 +a(g85729 +g85731 +S'saint,' +p85733 +tp85734 +a(g85731 +g85733 +S'who' +p85735 +tp85736 +a(g85733 +g85735 +S'was' +p85737 +tp85738 +a(g85735 +g85737 +S'a' +p85739 +tp85740 +a(g85737 +g85739 +S'popular' +p85741 +tp85742 +a(g85739 +g85741 +S'subject' +p85743 +tp85744 +a(g85741 +g85743 +S'in' +p85745 +tp85746 +a(g85743 +g85745 +S'spanish' +p85747 +tp85748 +a(g85745 +g85747 +S'new' +p85749 +tp85750 +a(g85747 +g85749 +S'mexico,' +p85751 +tp85752 +a(g85749 +g85751 +S'is' +p85753 +tp85754 +a(g85751 +g85753 +S'based' +p85755 +tp85756 +a(g85753 +g85755 +S'on' +p85757 +tp85758 +a(g85755 +g85757 +S'the' +p85759 +tp85760 +a(g85757 +g85759 +S'monogram' +p85761 +tp85762 +a(g85759 +g85761 +S'ihs,' +p85763 +tp85764 +a(g85761 +g85763 +S'a' +p85765 +tp85766 +a(g85763 +g85765 +S'contraction' +p85767 +tp85768 +a(g85765 +g85767 +S'of' +p85769 +tp85770 +a(g85767 +g85769 +S'"jesus."' +p85771 +tp85772 +a(g85769 +g85771 +S'pennsylvania' +p85773 +tp85774 +a(g85771 +g85773 +S'german' +p85775 +tp85776 +a(g85773 +g85775 +S'glassware' +p85777 +tp85778 +a(g85775 +g85777 +S'was' +p85779 +tp85780 +a(g85777 +g85779 +S'best' +p85781 +tp85782 +a(g85779 +g85781 +S'known' +p85783 +tp85784 +a(g85781 +g85783 +S'through' +p85785 +tp85786 +a(g85783 +g85785 +S'the' +p85787 +tp85788 +a(g85785 +g85787 +S'artistry' +p85789 +tp85790 +a(g85787 +g85789 +S'of' +p85791 +tp85792 +a(g85789 +g85791 +S'"baron"' +p85793 +tp85794 +a(g85791 +g85793 +S'heinrich' +p85795 +tp85796 +a(g85793 +g85795 +S'wilhelm' +p85797 +tp85798 +a(g85795 +g85797 +S'stiegel.' +p85799 +tp85800 +a(g85797 +g85799 +S'stiegel' +p85801 +tp85802 +a(g85799 +g85801 +S'was' +p85803 +tp85804 +a(g85801 +g85803 +S'a' +p85805 +tp85806 +a(g85803 +g85805 +S'master' +p85807 +tp85808 +a(g85805 +g85807 +S'craftsman' +p85809 +tp85810 +a(g85807 +g85809 +S'who' +p85811 +tp85812 +a(g85809 +g85811 +S'became' +p85813 +tp85814 +a(g85811 +g85813 +S'a' +p85815 +tp85816 +a(g85813 +g85815 +S'legend' +p85817 +tp85818 +a(g85815 +g85817 +S'in' +p85819 +tp85820 +a(g85817 +g85819 +S'his' +p85821 +tp85822 +a(g85819 +g85821 +S'own' +p85823 +tp85824 +a(g85821 +g85823 +S'time' +p85825 +tp85826 +a(g85823 +g85825 +S'as' +p85827 +tp85828 +a(g85825 +g85827 +S'the' +p85829 +tp85830 +a(g85827 +g85829 +S'flamboyant' +p85831 +tp85832 +a(g85829 +g85831 +S'owner' +p85833 +tp85834 +a(g85831 +g85833 +S'of' +p85835 +tp85836 +a(g85833 +g85835 +S'iron' +p85837 +tp85838 +a(g85835 +g85837 +S'and' +p85839 +tp85840 +a(g85837 +g85839 +S'glassworks.' +p85841 +tp85842 +a(g85839 +g85841 +S'stiegel' +p85843 +tp85844 +a(g85841 +g85843 +S'glass' +p85845 +tp85846 +a(g85843 +g85845 +S'cannot' +p85847 +tp85848 +a(g85845 +g85847 +S'be' +p85849 +tp85850 +a(g85847 +g85849 +S'definitely' +p85851 +tp85852 +a(g85849 +g85851 +S'identified' +p85853 +tp85854 +a(g85851 +g85853 +S'since' +p85855 +tp85856 +a(g85853 +g85855 +S'his' +p85857 +tp85858 +a(g85855 +g85857 +S'workers' +p85859 +tp85860 +a(g85857 +g85859 +S'took' +p85861 +tp85862 +a(g85859 +g85861 +S'his' +p85863 +tp85864 +a(g85861 +g85863 +S'methods' +p85865 +tp85866 +a(g85863 +g85865 +S'to' +p85867 +tp85868 +a(g85865 +g85867 +S'other' +p85869 +tp85870 +a(g85867 +g85869 +S'factories' +p85871 +tp85872 +a(g85869 +g85871 +S'after' +p85873 +tp85874 +a(g85871 +g85873 +S'his' +p85875 +tp85876 +a(g85873 +g85875 +S'own' +p85877 +tp85878 +a(g85875 +g85877 +S'went' +p85879 +tp85880 +a(g85877 +g85879 +S'bankrupt.' +p85881 +tp85882 +a(g85879 +g85881 +S'however,' +p85883 +tp85884 +a(g85881 +g85883 +S'stiegel-type' +p85885 +tp85886 +a(g85883 +g85885 +S'flint' +p85887 +tp85888 +a(g85885 +g85887 +S'glass,' +p85889 +tp85890 +a(g85887 +g85889 +S'or' +p85891 +tp85892 +a(g85889 +g85891 +S'crystal,' +p85893 +tp85894 +a(g85891 +g85893 +S'was' +p85895 +tp85896 +a(g85893 +g85895 +S'widely' +p85897 +tp85898 +a(g85895 +g85897 +S'known' +p85899 +tp85900 +a(g85897 +g85899 +S'for' +p85901 +tp85902 +a(g85899 +g85901 +S'its' +p85903 +tp85904 +a(g85901 +g85903 +S'beauty,' +p85905 +tp85906 +a(g85903 +g85905 +S'fragility,' +p85907 +tp85908 +a(g85905 +g85907 +S'and' +p85909 +tp85910 +a(g85907 +g85909 +S'the' +p85911 +tp85912 +a(g85909 +g85911 +S'brilliance' +p85913 +tp85914 +a(g85911 +g85913 +S'of' +p85915 +tp85916 +a(g85913 +g85915 +S'its' +p85917 +tp85918 +a(g85915 +g85917 +S'colors.' +p85919 +tp85920 +a(g85917 +g85919 +S'a' +p85921 +tp85922 +a(g85919 +g85921 +S'wide' +p85923 +tp85924 +a(g85921 +g85923 +S'variety' +p85925 +tp85926 +a(g85923 +g85925 +S'of' +p85927 +tp85928 +a(g85925 +g85927 +S'glassware' +p85929 +tp85930 +a(g85927 +g85929 +S'--' +p85931 +tp85932 +a(g85929 +g85931 +S'from' +p85933 +tp85934 +a(g85931 +g85933 +S'wineglasses,' +p85935 +tp85936 +a(g85933 +g85935 +S'sugar' +p85937 +tp85938 +a(g85935 +g85937 +S'bowls,' +p85939 +tp85940 +a(g85937 +g85939 +S'and' +p85941 +tp85942 +a(g85939 +g85941 +S'cruets' +p85943 +tp85944 +a(g85941 +g85943 +S'to' +p85945 +tp85946 +a(g85943 +g85945 +S'windowpanes' +p85947 +tp85948 +a(g85945 +g85947 +S'and' +p85949 +tp85950 +a(g85947 +g85949 +S"chemists'" +p85951 +tp85952 +a(g85949 +g85951 +S'bottles' +p85953 +tp85954 +a(g85951 +g85953 +S'--' +p85955 +tp85956 +a(g85953 +g85955 +S'was' +p85957 +tp85958 +a(g85955 +g85957 +S'made' +p85959 +tp85960 +a(g85957 +g85959 +S'at' +p85961 +tp85962 +a(g85959 +g85961 +S'the' +p85963 +tp85964 +a(g85961 +g85963 +S'stiegel' +p85965 +tp85966 +a(g85963 +g85965 +S'furnace.' +p85967 +tp85968 +a(g85965 +g85967 +S'the' +p85969 +tp85970 +a(g85967 +g85969 +S'flask' +p85971 +tp85972 +a(g85969 +g85971 +S'shown' +p85973 +tp85974 +a(g85971 +g85973 +S'here' +p85975 +tp85976 +a(g85973 +g85975 +S'was' +p85977 +tp85978 +a(g85975 +g85977 +S'a' +p85979 +tp85980 +a(g85977 +g85979 +S'typical' +p85981 +tp85982 +a(g85979 +g85981 +S'stiegel' +p85983 +tp85984 +a(g85981 +g85983 +S'product.' +p85985 +tp85986 +a(g85983 +g85985 +S'stiegel' +p85987 +tp85988 +a(g85985 +g85987 +S'was' +p85989 +tp85990 +a(g85987 +g85989 +S'the' +p85991 +tp85992 +a(g85989 +g85991 +S'first' +p85993 +tp85994 +a(g85991 +g85993 +S'american' +p85995 +tp85996 +a(g85993 +g85995 +S'glass' +p85997 +tp85998 +a(g85995 +g85997 +S'manufacturer' +p85999 +tp86000 +a(g85997 +g85999 +S'to' +p86001 +tp86002 +a(g85999 +g86001 +S'enamel' +p86003 +tp86004 +a(g86001 +g86003 +S'glass.' +p86005 +tp86006 +a(g86003 +g86005 +S'pieces' +p86007 +tp86008 +a(g86005 +g86007 +S'made' +p86009 +tp86010 +a(g86007 +g86009 +S'of' +p86011 +tp86012 +a(g86009 +g86011 +S'white,' +p86013 +tp86014 +a(g86011 +g86013 +S'or' +p86015 +tp86016 +a(g86013 +g86015 +S'clear,' +p86017 +tp86018 +a(g86015 +g86017 +S'glass' +p86019 +tp86020 +a(g86017 +g86019 +S'have' +p86021 +tp86022 +a(g86019 +g86021 +S'their' +p86023 +tp86024 +a(g86021 +g86023 +S'decoration' +p86025 +tp86026 +a(g86023 +g86025 +S'of' +p86027 +tp86028 +a(g86025 +g86027 +S'birds,' +p86029 +tp86030 +a(g86027 +g86029 +S'tulips,' +p86031 +tp86032 +a(g86029 +g86031 +S'and' +p86033 +tp86034 +a(g86031 +g86033 +S'scrolls' +p86035 +tp86036 +a(g86033 +g86035 +S'painted' +p86037 +tp86038 +a(g86035 +g86037 +S'on' +p86039 +tp86040 +a(g86037 +g86039 +S'freehand' +p86041 +tp86042 +a(g86039 +g86041 +S'with' +p86043 +tp86044 +a(g86041 +g86043 +S'red,' +p86045 +tp86046 +a(g86043 +g86045 +S'green,' +p86047 +tp86048 +a(g86045 +g86047 +S'and' +p86049 +tp86050 +a(g86047 +g86049 +S'yellow' +p86051 +tp86052 +a(g86049 +g86051 +S'enamel.' +p86053 +tp86054 +a(g86051 +g86053 +S'the' +p86055 +tp86056 +a(g86053 +g86055 +S'motifs' +p86057 +tp86058 +a(g86055 +g86057 +S'used' +p86059 +tp86060 +a(g86057 +g86059 +S'reflect' +p86061 +tp86062 +a(g86059 +g86061 +S'typical' +p86063 +tp86064 +a(g86061 +g86063 +S'pennsylvania' +p86065 +tp86066 +a(g86063 +g86065 +S'german' +p86067 +tp86068 +a(g86065 +g86067 +S'traditions' +p86069 +tp86070 +a(g86067 +g86069 +S'of' +p86071 +tp86072 +a(g86069 +g86071 +S'decoration.' +p86073 +tp86074 +a(g86071 +g86073 +S'the' +p86075 +tp86076 +a(g86073 +g86075 +S'tradition' +p86077 +tp86078 +a(g86075 +g86077 +S'of' +p86079 +tp86080 +a(g86077 +g86079 +S'painted' +p86081 +tp86082 +a(g86079 +g86081 +S'decoration' +p86083 +tp86084 +a(g86081 +g86083 +S'goes' +p86085 +tp86086 +a(g86083 +g86085 +S'back' +p86087 +tp86088 +a(g86085 +g86087 +S'to' +p86089 +tp86090 +a(g86087 +g86089 +S'the' +p86091 +tp86092 +a(g86089 +g86091 +S'vogue' +p86093 +tp86094 +a(g86091 +g86093 +S'for' +p86095 +tp86096 +a(g86093 +g86095 +S'"japanning"' +p86097 +tp86098 +a(g86095 +g86097 +S'prevalent' +p86099 +tp86100 +a(g86097 +g86099 +S'in' +p86101 +tp86102 +a(g86099 +g86101 +S'the' +p86103 +tp86104 +a(g86101 +g86103 +S'william' +p86105 +tp86106 +a(g86103 +g86105 +S'and' +p86107 +tp86108 +a(g86105 +g86107 +S'mary' +p86109 +tp86110 +a(g86107 +g86109 +S'and' +p86111 +tp86112 +a(g86109 +g86111 +S'the' +p86113 +tp86114 +a(g86111 +g86113 +S'queen' +p86115 +tp86116 +a(g86113 +g86115 +S'anne' +p86117 +tp86118 +a(g86115 +g86117 +S'periods.' +p86119 +tp86120 +a(g86117 +g86119 +S'sheraton' +p86121 +tp86122 +a(g86119 +g86121 +S'"fancy' +p86123 +tp86124 +a(g86121 +g86123 +S'furniture,"' +p86125 +tp86126 +a(g86123 +g86125 +S'with' +p86127 +tp86128 +a(g86125 +g86127 +S'painted' +p86129 +tp86130 +a(g86127 +g86129 +S'decoration,' +p86131 +tp86132 +a(g86129 +g86131 +S'was' +p86133 +tp86134 +a(g86131 +g86133 +S'exceedingly' +p86135 +tp86136 +a(g86133 +g86135 +S'popular' +p86137 +tp86138 +a(g86135 +g86137 +S'in' +p86139 +tp86140 +a(g86137 +g86139 +S'the' +p86141 +tp86142 +a(g86139 +g86141 +S'early' +p86143 +tp86144 +a(g86141 +g86143 +S'nineteenth' +p86145 +tp86146 +a(g86143 +g86145 +S'century.' +p86147 +tp86148 +a(g86145 +g86147 +S'handsomely' +p86149 +tp86150 +a(g86147 +g86149 +S'painted' +p86151 +tp86152 +a(g86149 +g86151 +S'settees,' +p86153 +tp86154 +a(g86151 +g86153 +S'blending' +p86155 +tp86156 +a(g86153 +g86155 +S'two' +p86157 +tp86158 +a(g86155 +g86157 +S'or' +p86159 +tp86160 +a(g86157 +g86159 +S'three' +p86161 +tp86162 +a(g86159 +g86161 +S'chair' +p86163 +tp86164 +a(g86161 +g86163 +S'backs' +p86165 +tp86166 +a(g86163 +g86165 +S'into' +p86167 +tp86168 +a(g86165 +g86167 +S'a' +p86169 +tp86170 +a(g86167 +g86169 +S'single' +p86171 +tp86172 +a(g86169 +g86171 +S'unit,' +p86173 +tp86174 +a(g86171 +g86173 +S'were' +p86175 +tp86176 +a(g86173 +g86175 +S'produced' +p86177 +tp86178 +a(g86175 +g86177 +S'in' +p86179 +tp86180 +a(g86177 +g86179 +S'a' +p86181 +tp86182 +a(g86179 +g86181 +S'variety' +p86183 +tp86184 +a(g86181 +g86183 +S'of' +p86185 +tp86186 +a(g86183 +g86185 +S'designs' +p86187 +tp86188 +a(g86185 +g86187 +S'for' +p86189 +tp86190 +a(g86187 +g86189 +S'use' +p86191 +tp86192 +a(g86189 +g86191 +S'in' +p86193 +tp86194 +a(g86191 +g86193 +S'fashionable' +p86195 +tp86196 +a(g86193 +g86195 +S'drawing' +p86197 +tp86198 +a(g86195 +g86197 +S'rooms.' +p86199 +tp86200 +a(g86197 +g86199 +S'this' +p86201 +tp86202 +a(g86199 +g86201 +S'settee,' +p86203 +tp86204 +a(g86201 +g86203 +S'made' +p86205 +tp86206 +a(g86203 +g86205 +S'about' +p86207 +tp86208 +a(g86205 +g86207 +S'1800' +p86209 +tp86210 +a(g86207 +g86209 +S'in' +p86211 +tp86212 +a(g86209 +g86211 +S'new' +p86213 +tp86214 +a(g86211 +g86213 +S'york' +p86215 +tp86216 +a(g86213 +g86215 +S'city,' +p86217 +tp86218 +a(g86215 +g86217 +S'features' +p86219 +tp86220 +a(g86217 +g86219 +S'the' +p86221 +tp86222 +a(g86219 +g86221 +S'popular' +p86223 +tp86224 +a(g86221 +g86223 +S'sheraton' +p86225 +tp86226 +a(g86223 +g86225 +S'urn' +p86227 +tp86228 +a(g86225 +g86227 +S'and' +p86229 +tp86230 +a(g86227 +g86229 +S'floral' +p86231 +tp86232 +a(g86229 +g86231 +S'motifs,' +p86233 +tp86234 +a(g86231 +g86233 +S'which' +p86235 +tp86236 +a(g86233 +g86235 +S'were' +p86237 +tp86238 +a(g86235 +g86237 +S'favored' +p86239 +tp86240 +a(g86237 +g86239 +S'by' +p86241 +tp86242 +a(g86239 +g86241 +S'new' +p86243 +tp86244 +a(g86241 +g86243 +S'york' +p86245 +tp86246 +a(g86243 +g86245 +S'craftsmen.' +p86247 +tp86248 +a(g86245 +g86247 +S'dark' +p86249 +tp86250 +a(g86247 +g86249 +S'backgrounds,' +p86251 +tp86252 +a(g86249 +g86251 +S'such' +p86253 +tp86254 +a(g86251 +g86253 +S'as' +p86255 +tp86256 +a(g86253 +g86255 +S'that' +p86257 +tp86258 +a(g86255 +g86257 +S'seen' +p86259 +tp86260 +a(g86257 +g86259 +S'on' +p86261 +tp86262 +a(g86259 +g86261 +S'this' +p86263 +tp86264 +a(g86261 +g86263 +S'piece,' +p86265 +tp86266 +a(g86263 +g86265 +S'were' +p86267 +tp86268 +a(g86265 +g86267 +S'commonly' +p86269 +tp86270 +a(g86267 +g86269 +S'used' +p86271 +tp86272 +a(g86269 +g86271 +S'and' +p86273 +tp86274 +a(g86271 +g86273 +S'were' +p86275 +tp86276 +a(g86273 +g86275 +S'produced' +p86277 +tp86278 +a(g86275 +g86277 +S'by' +p86279 +tp86280 +a(g86277 +g86279 +S'applying' +p86281 +tp86282 +a(g86279 +g86281 +S'layers' +p86283 +tp86284 +a(g86281 +g86283 +S'of' +p86285 +tp86286 +a(g86283 +g86285 +S'varnishes' +p86287 +tp86288 +a(g86285 +g86287 +S'over' +p86289 +tp86290 +a(g86287 +g86289 +S'deep' +p86291 +tp86292 +a(g86289 +g86291 +S'brown,' +p86293 +tp86294 +a(g86291 +g86293 +S'green,' +p86295 +tp86296 +a(g86293 +g86295 +S'or' +p86297 +tp86298 +a(g86295 +g86297 +S'black' +p86299 +tp86300 +a(g86297 +g86299 +S'paint.' +p86301 +tp86302 +a(g86299 +g86301 +S'here,' +p86303 +tp86304 +a(g86301 +g86303 +S'the' +p86305 +tp86306 +a(g86303 +g86305 +S'background' +p86307 +tp86308 +a(g86305 +g86307 +S'provides' +p86309 +tp86310 +a(g86307 +g86309 +S'a' +p86311 +tp86312 +a(g86309 +g86311 +S'striking' +p86313 +tp86314 +a(g86311 +g86313 +S'contrast' +p86315 +tp86316 +a(g86313 +g86315 +S'to' +p86317 +tp86318 +a(g86315 +g86317 +S'the' +p86319 +tp86320 +a(g86317 +g86319 +S'touches' +p86321 +tp86322 +a(g86319 +g86321 +S'of' +p86323 +tp86324 +a(g86321 +g86323 +S'light' +p86325 +tp86326 +a(g86323 +g86325 +S'green,' +p86327 +tp86328 +a(g86325 +g86327 +S'cream,' +p86329 +tp86330 +a(g86327 +g86329 +S'pink,' +p86331 +tp86332 +a(g86329 +g86331 +S'and' +p86333 +tp86334 +a(g86331 +g86333 +S'white' +p86335 +tp86336 +a(g86333 +g86335 +S'used' +p86337 +tp86338 +a(g86335 +g86337 +S'to' +p86339 +tp86340 +a(g86337 +g86339 +S'highlight' +p86341 +tp86342 +a(g86339 +g86341 +S'the' +p86343 +tp86344 +a(g86341 +g86343 +S'urn' +p86345 +tp86346 +a(g86343 +g86345 +S'of' +p86347 +tp86348 +a(g86345 +g86347 +S'flowers.' +p86349 +tp86350 +a(g86347 +g86349 +S'delicately' +p86351 +tp86352 +a(g86349 +g86351 +S'painted' +p86353 +tp86354 +a(g86351 +g86353 +S'white' +p86355 +tp86356 +a(g86353 +g86355 +S'blossoms' +p86357 +tp86358 +a(g86355 +g86357 +S'adorn' +p86359 +tp86360 +a(g86357 +g86359 +S'the' +p86361 +tp86362 +a(g86359 +g86361 +S'uprights' +p86363 +tp86364 +a(g86361 +g86363 +S'of' +p86365 +tp86366 +a(g86363 +g86365 +S'the' +p86367 +tp86368 +a(g86365 +g86367 +S'seat' +p86369 +tp86370 +a(g86367 +g86369 +S'back' +p86371 +tp86372 +a(g86369 +g86371 +S'and' +p86373 +tp86374 +a(g86371 +g86373 +S'of' +p86375 +tp86376 +a(g86373 +g86375 +S'the' +p86377 +tp86378 +a(g86375 +g86377 +S'arms' +p86379 +tp86380 +a(g86377 +g86379 +S'and' +p86381 +tp86382 +a(g86379 +g86381 +S'legs;' +p86383 +tp86384 +a(g86381 +g86383 +S'they' +p86385 +tp86386 +a(g86383 +g86385 +S'are' +p86387 +tp86388 +a(g86385 +g86387 +S'reminiscent' +p86389 +tp86390 +a(g86387 +g86389 +S'of' +p86391 +tp86392 +a(g86389 +g86391 +S'the' +p86393 +tp86394 +a(g86391 +g86393 +S'carved' +p86395 +tp86396 +a(g86393 +g86395 +S'rosettes' +p86397 +tp86398 +a(g86395 +g86397 +S'found' +p86399 +tp86400 +a(g86397 +g86399 +S'on' +p86401 +tp86402 +a(g86399 +g86401 +S'other' +p86403 +tp86404 +a(g86401 +g86403 +S'sheraton' +p86405 +tp86406 +a(g86403 +g86405 +S'furniture.' +p86407 +tp86408 +a(g86405 +g86407 +S'isidore,' +p86409 +tp86410 +a(g86407 +g86409 +S'the' +p86411 +tp86412 +a(g86409 +g86411 +S'patron' +p86413 +tp86414 +a(g86411 +g86413 +S'saint' +p86415 +tp86416 +a(g86413 +g86415 +S'of' +p86417 +tp86418 +a(g86415 +g86417 +S'farmers' +p86419 +tp86420 +a(g86417 +g86419 +S'and' +p86421 +tp86422 +a(g86419 +g86421 +S'protector' +p86423 +tp86424 +a(g86421 +g86423 +S'of' +p86425 +tp86426 +a(g86423 +g86425 +S'crops,' +p86427 +tp86428 +a(g86425 +g86427 +S'was' +p86429 +tp86430 +a(g86427 +g86429 +S'a' +p86431 +tp86432 +a(g86429 +g86431 +S'farm' +p86433 +tp86434 +a(g86431 +g86433 +S'laborer' +p86435 +tp86436 +a(g86433 +g86435 +S'employed' +p86437 +tp86438 +a(g86435 +g86437 +S'by' +p86439 +tp86440 +a(g86437 +g86439 +S'a' +p86441 +tp86442 +a(g86439 +g86441 +S'wealthy' +p86443 +tp86444 +a(g86441 +g86443 +S'landowner' +p86445 +tp86446 +a(g86443 +g86445 +S'near' +p86447 +tp86448 +a(g86445 +g86447 +S'madrid' +p86449 +tp86450 +a(g86447 +g86449 +S'in' +p86451 +tp86452 +a(g86449 +g86451 +S'the' +p86453 +tp86454 +a(g86451 +g86453 +S'early' +p86455 +tp86456 +a(g86453 +g86455 +S'twelfth' +p86457 +tp86458 +a(g86455 +g86457 +S'century.' +p86459 +tp86460 +a(g86457 +g86459 +S'according' +p86461 +tp86462 +a(g86459 +g86461 +S'to' +p86463 +tp86464 +a(g86461 +g86463 +S'legend,' +p86465 +tp86466 +a(g86463 +g86465 +S'isidore' +p86467 +tp86468 +a(g86465 +g86467 +S'spent' +p86469 +tp86470 +a(g86467 +g86469 +S'so' +p86471 +tp86472 +a(g86469 +g86471 +S'many' +p86473 +tp86474 +a(g86471 +g86473 +S'hours' +p86475 +tp86476 +a(g86473 +g86475 +S'in' +p86477 +tp86478 +a(g86475 +g86477 +S'prayer' +p86479 +tp86480 +a(g86477 +g86479 +S'that' +p86481 +tp86482 +a(g86479 +g86481 +S'he' +p86483 +tp86484 +a(g86481 +g86483 +S'was' +p86485 +tp86486 +a(g86483 +g86485 +S'in' +p86487 +tp86488 +a(g86485 +g86487 +S'danger' +p86489 +tp86490 +a(g86487 +g86489 +S'of' +p86491 +tp86492 +a(g86489 +g86491 +S'falling' +p86493 +tp86494 +a(g86491 +g86493 +S'behind' +p86495 +tp86496 +a(g86493 +g86495 +S'with' +p86497 +tp86498 +a(g86495 +g86497 +S'his' +p86499 +tp86500 +a(g86497 +g86499 +S'farming' +p86501 +tp86502 +a(g86499 +g86501 +S'chores.' +p86503 +tp86504 +a(g86501 +g86503 +S'as' +p86505 +tp86506 +a(g86503 +g86505 +S'a' +p86507 +tp86508 +a(g86505 +g86507 +S'reward' +p86509 +tp86510 +a(g86507 +g86509 +S'for' +p86511 +tp86512 +a(g86509 +g86511 +S'his' +p86513 +tp86514 +a(g86511 +g86513 +S'exceptional' +p86515 +tp86516 +a(g86513 +g86515 +S'piety,' +p86517 +tp86518 +a(g86515 +g86517 +S'divine' +p86519 +tp86520 +a(g86517 +g86519 +S'intervention' +p86521 +tp86522 +a(g86519 +g86521 +S'dispatched' +p86523 +tp86524 +a(g86521 +g86523 +S'an' +p86525 +tp86526 +a(g86523 +g86525 +S'angel' +p86527 +tp86528 +a(g86525 +g86527 +S'to' +p86529 +tp86530 +a(g86527 +g86529 +S'help' +p86531 +tp86532 +a(g86529 +g86531 +S'isidore' +p86533 +tp86534 +a(g86531 +g86533 +S'finish' +p86535 +tp86536 +a(g86533 +g86535 +S'his' +p86537 +tp86538 +a(g86535 +g86537 +S'plowing' +p86539 +tp86540 +a(g86537 +g86539 +S'on' +p86541 +tp86542 +a(g86539 +g86541 +S'schedule.' +p86543 +tp86544 +a(g86541 +g86543 +S'this' +p86545 +tp86546 +a(g86543 +g86545 +S'miraculous' +p86547 +tp86548 +a(g86545 +g86547 +S'event' +p86549 +tp86550 +a(g86547 +g86549 +S'is' +p86551 +tp86552 +a(g86549 +g86551 +S'the' +p86553 +tp86554 +a(g86551 +g86553 +S'subject' +p86555 +tp86556 +a(g86553 +g86555 +S'of' +p86557 +tp86558 +a(g86555 +g86557 +S'an' +p86559 +tp86560 +a(g86557 +g86559 +S'eighteenth-century' +p86561 +tp86562 +a(g86559 +g86561 +S'new' +p86563 +tp86564 +a(g86561 +g86563 +S'mexican' +p86565 +tp86566 +a(g86563 +g86565 +S'devotional' +p86567 +tp86568 +a(g86565 +g86567 +S'sculpture,' +p86569 +tp86570 +a(g86567 +g86569 +S'or' +p86571 +tp86572 +a(g86569 +g86571 +S'some' +p86573 +tp86574 +a(g86571 +g86573 +S'of' +p86575 +tp86576 +a(g86573 +g86575 +S'the' +p86577 +tp86578 +a(g86575 +g86577 +S'most' +p86579 +tp86580 +a(g86577 +g86579 +S'interesting' +p86581 +tp86582 +a(g86579 +g86581 +S'dolls' +p86583 +tp86584 +a(g86581 +g86583 +S'were' +p86585 +tp86586 +a(g86583 +g86585 +S'modeled' +p86587 +tp86588 +a(g86585 +g86587 +S'after' +p86589 +tp86590 +a(g86587 +g86589 +S'famous' +p86591 +tp86592 +a(g86589 +g86591 +S'personalities.' +p86593 +tp86594 +a(g86591 +g86593 +S'this' +p86595 +tp86596 +a(g86593 +g86595 +S'doll' +p86597 +tp86598 +a(g86595 +g86597 +S'represents' +p86599 +tp86600 +a(g86597 +g86599 +S'general' +p86601 +tp86602 +a(g86599 +g86601 +S'ulysses' +p86603 +tp86604 +a(g86601 +g86603 +S's.' +p86605 +tp86606 +a(g86603 +g86605 +S'grant' +p86607 +tp86608 +a(g86605 +g86607 +S'of' +p86609 +tp86610 +a(g86607 +g86609 +S'the' +p86611 +tp86612 +a(g86609 +g86611 +S'u.s.' +p86613 +tp86614 +a(g86611 +g86613 +S'army.' +p86615 +tp86616 +a(g86613 +g86615 +S'it' +p86617 +tp86618 +a(g86615 +g86617 +S'was' +p86619 +tp86620 +a(g86617 +g86619 +S'made' +p86621 +tp86622 +a(g86619 +g86621 +S'in' +p86623 +tp86624 +a(g86621 +g86623 +S'the' +p86625 +tp86626 +a(g86623 +g86625 +S'1860s' +p86627 +tp86628 +a(g86625 +g86627 +S'for' +p86629 +tp86630 +a(g86627 +g86629 +S'a' +p86631 +tp86632 +a(g86629 +g86631 +S'woman' +p86633 +tp86634 +a(g86631 +g86633 +S'in' +p86635 +tp86636 +a(g86633 +g86635 +S'cressy,' +p86637 +tp86638 +a(g86635 +g86637 +S'michigan.' +p86639 +tp86640 +a(g86637 +g86639 +S'the' +p86641 +tp86642 +a(g86639 +g86641 +S'relationship' +p86643 +tp86644 +a(g86641 +g86643 +S'of' +p86645 +tp86646 +a(g86643 +g86645 +S'doll' +p86647 +tp86648 +a(g86645 +g86647 +S'types' +p86649 +tp86650 +a(g86647 +g86649 +S'to' +p86651 +tp86652 +a(g86649 +g86651 +S'historical' +p86653 +tp86654 +a(g86651 +g86653 +S'events' +p86655 +tp86656 +a(g86653 +g86655 +S'is' +p86657 +tp86658 +a(g86655 +g86657 +S'particularly' +p86659 +tp86660 +a(g86657 +g86659 +S'evident' +p86661 +tp86662 +a(g86659 +g86661 +S'in' +p86663 +tp86664 +a(g86661 +g86663 +S'this' +p86665 +tp86666 +a(g86663 +g86665 +S'case,' +p86667 +tp86668 +a(g86665 +g86667 +S'for' +p86669 +tp86670 +a(g86667 +g86669 +S'the' +p86671 +tp86672 +a(g86669 +g86671 +S'doll' +p86673 +tp86674 +a(g86671 +g86673 +S'appeared' +p86675 +tp86676 +a(g86673 +g86675 +S'at' +p86677 +tp86678 +a(g86675 +g86677 +S'the' +p86679 +tp86680 +a(g86677 +g86679 +S'time' +p86681 +tp86682 +a(g86679 +g86681 +S'of' +p86683 +tp86684 +a(g86681 +g86683 +S'the' +p86685 +tp86686 +a(g86683 +g86685 +S'civil' +p86687 +tp86688 +a(g86685 +g86687 +S'war' +p86689 +tp86690 +a(g86687 +g86689 +S'when' +p86691 +tp86692 +a(g86689 +g86691 +S'general' +p86693 +tp86694 +a(g86691 +g86693 +S'grant' +p86695 +tp86696 +a(g86693 +g86695 +S'was' +p86697 +tp86698 +a(g86695 +g86697 +S'at' +p86699 +tp86700 +a(g86697 +g86699 +S'the' +p86701 +tp86702 +a(g86699 +g86701 +S'height' +p86703 +tp86704 +a(g86701 +g86703 +S'of' +p86705 +tp86706 +a(g86703 +g86705 +S'his' +p86707 +tp86708 +a(g86705 +g86707 +S'popularity' +p86709 +tp86710 +a(g86707 +g86709 +S'in' +p86711 +tp86712 +a(g86709 +g86711 +S'the' +p86713 +tp86714 +a(g86711 +g86713 +S'north.' +p86715 +tp86716 +a(g86713 +g86715 +S'a' +p86717 +tp86718 +a(g86715 +g86717 +S'variety' +p86719 +tp86720 +a(g86717 +g86719 +S'of' +p86721 +tp86722 +a(g86719 +g86721 +S'materials' +p86723 +tp86724 +a(g86721 +g86723 +S'was' +p86725 +tp86726 +a(g86723 +g86725 +S'used' +p86727 +tp86728 +a(g86725 +g86727 +S'in' +p86729 +tp86730 +a(g86727 +g86729 +S'making' +p86731 +tp86732 +a(g86729 +g86731 +S'dolls' +p86733 +tp86734 +a(g86731 +g86733 +S'during' +p86735 +tp86736 +a(g86733 +g86735 +S'this' +p86737 +tp86738 +a(g86735 +g86737 +S'period,' +p86739 +tp86740 +a(g86737 +g86739 +S'including' +p86741 +tp86742 +a(g86739 +g86741 +S'papier-mâché' +p86743 +tp86744 +a(g86741 +g86743 +S'and' +p86745 +tp86746 +a(g86743 +g86745 +S'rag.' +p86747 +tp86748 +a(g86745 +g86747 +S'papier-mâché' +p86749 +tp86750 +a(g86747 +g86749 +S'was' +p86751 +tp86752 +a(g86749 +g86751 +S'used' +p86753 +tp86754 +a(g86751 +g86753 +S'for' +p86755 +tp86756 +a(g86753 +g86755 +S'the' +p86757 +tp86758 +a(g86755 +g86757 +S'head' +p86759 +tp86760 +a(g86757 +g86759 +S'of' +p86761 +tp86762 +a(g86759 +g86761 +S'the' +p86763 +tp86764 +a(g86761 +g86763 +S'general' +p86765 +tp86766 +a(g86763 +g86765 +S'grant' +p86767 +tp86768 +a(g86765 +g86767 +S'doll;' +p86769 +tp86770 +a(g86767 +g86769 +S'the' +p86771 +tp86772 +a(g86769 +g86771 +S'body' +p86773 +tp86774 +a(g86771 +g86773 +S'is' +p86775 +tp86776 +a(g86773 +g86775 +S'made' +p86777 +tp86778 +a(g86775 +g86777 +S'of' +p86779 +tp86780 +a(g86777 +g86779 +S'kid.' +p86781 +tp86782 +a(g86779 +g86781 +S'this' +p86783 +tp86784 +a(g86781 +g86783 +S"milliner's" +p86785 +tp86786 +a(g86783 +g86785 +S'model' +p86787 +tp86788 +a(g86785 +g86787 +S'doll' +p86789 +tp86790 +a(g86787 +g86789 +S'is' +p86791 +tp86792 +a(g86789 +g86791 +S'a' +p86793 +tp86794 +a(g86791 +g86793 +S'much' +p86795 +tp86796 +a(g86793 +g86795 +S'sought' +p86797 +tp86798 +a(g86795 +g86797 +S'after' +p86799 +tp86800 +a(g86797 +g86799 +S'type' +p86801 +tp86802 +a(g86799 +g86801 +S'with' +p86803 +tp86804 +a(g86801 +g86803 +S'a' +p86805 +tp86806 +a(g86803 +g86805 +S'knot' +p86807 +tp86808 +a(g86805 +g86807 +S'at' +p86809 +tp86810 +a(g86807 +g86809 +S'the' +p86811 +tp86812 +a(g86809 +g86811 +S'back' +p86813 +tp86814 +a(g86811 +g86813 +S'of' +p86815 +tp86816 +a(g86813 +g86815 +S'the' +p86817 +tp86818 +a(g86815 +g86817 +S'head.' +p86819 +tp86820 +a(g86817 +g86819 +S'because' +p86821 +tp86822 +a(g86819 +g86821 +S'her' +p86823 +tp86824 +a(g86821 +g86823 +S'ears' +p86825 +tp86826 +a(g86823 +g86825 +S'show,' +p86827 +tp86828 +a(g86825 +g86827 +S'this' +p86829 +tp86830 +a(g86827 +g86829 +S'doll' +p86831 +tp86832 +a(g86829 +g86831 +S'is' +p86833 +tp86834 +a(g86831 +g86833 +S'particularly' +p86835 +tp86836 +a(g86833 +g86835 +S'interesting' +p86837 +tp86838 +a(g86835 +g86837 +S'to' +p86839 +tp86840 +a(g86837 +g86839 +S'collectors.' +p86841 +tp86842 +a(g86839 +g86841 +S'most' +p86843 +tp86844 +a(g86841 +g86843 +S"milliner's" +p86845 +tp86846 +a(g86843 +g86845 +S'model' +p86847 +tp86848 +a(g86845 +g86847 +S'dolls' +p86849 +tp86850 +a(g86847 +g86849 +S'are' +p86851 +tp86852 +a(g86849 +g86851 +S'from' +p86853 +tp86854 +a(g86851 +g86853 +S'the' +p86855 +tp86856 +a(g86853 +g86855 +S'first' +p86857 +tp86858 +a(g86855 +g86857 +S'half' +p86859 +tp86860 +a(g86857 +g86859 +S'of' +p86861 +tp86862 +a(g86859 +g86861 +S'the' +p86863 +tp86864 +a(g86861 +g86863 +S'nineteenth' +p86865 +tp86866 +a(g86863 +g86865 +S'century.' +p86867 +tp86868 +a(g86865 +g86867 +S'this' +p86869 +tp86870 +a(g86867 +g86869 +S'one,' +p86871 +tp86872 +a(g86869 +g86871 +S'dating' +p86873 +tp86874 +a(g86871 +g86873 +S'from' +p86875 +tp86876 +a(g86873 +g86875 +S'1843,' +p86877 +tp86878 +a(g86875 +g86877 +S'wears' +p86879 +tp86880 +a(g86877 +g86879 +S'a' +p86881 +tp86882 +a(g86879 +g86881 +S'muslin' +p86883 +tp86884 +a(g86881 +g86883 +S'dress' +p86885 +tp86886 +a(g86883 +g86885 +S'and' +p86887 +tp86888 +a(g86885 +g86887 +S'muslin' +p86889 +tp86890 +a(g86887 +g86889 +S'pantalettes.' +p86891 +tp86892 +a(g86889 +g86891 +S'toy' +p86893 +tp86894 +a(g86891 +g86893 +S'makers' +p86895 +tp86896 +a(g86893 +g86895 +S'did' +p86897 +tp86898 +a(g86895 +g86897 +S'not' +p86899 +tp86900 +a(g86897 +g86899 +S'ignore' +p86901 +tp86902 +a(g86899 +g86901 +S"children's" +p86903 +tp86904 +a(g86901 +g86903 +S'appreciation' +p86905 +tp86906 +a(g86903 +g86905 +S'of' +p86907 +tp86908 +a(g86905 +g86907 +S'sound.' +p86909 +tp86910 +a(g86907 +g86909 +S'many' +p86911 +tp86912 +a(g86909 +g86911 +S'toys' +p86913 +tp86914 +a(g86911 +g86913 +S'incorporated' +p86915 +tp86916 +a(g86913 +g86915 +S'a' +p86917 +tp86918 +a(g86915 +g86917 +S'sound' +p86919 +tp86920 +a(g86917 +g86919 +S'device' +p86921 +tp86922 +a(g86919 +g86921 +S'of' +p86923 +tp86924 +a(g86921 +g86923 +S'some' +p86925 +tp86926 +a(g86923 +g86925 +S'sort,' +p86927 +tp86928 +a(g86925 +g86927 +S'and' +p86929 +tp86930 +a(g86927 +g86929 +S'in' +p86931 +tp86932 +a(g86929 +g86931 +S'certain' +p86933 +tp86934 +a(g86931 +g86933 +S'cases' +p86935 +tp86936 +a(g86933 +g86935 +S'even' +p86937 +tp86938 +a(g86935 +g86937 +S'musical' +p86939 +tp86940 +a(g86937 +g86939 +S'notes' +p86941 +tp86942 +a(g86939 +g86941 +S'were' +p86943 +tp86944 +a(g86941 +g86943 +S'played.' +p86945 +tp86946 +a(g86943 +g86945 +S'toys' +p86947 +tp86948 +a(g86945 +g86947 +S'like' +p86949 +tp86950 +a(g86947 +g86949 +S'this' +p86951 +tp86952 +a(g86949 +g86951 +S'bell' +p86953 +tp86954 +a(g86951 +g86953 +S'cart' +p86955 +tp86956 +a(g86953 +g86955 +S'of' +p86957 +tp86958 +a(g86955 +g86957 +S'about' +p86959 +tp86960 +a(g86957 +g86959 +S'1860' +p86961 +tp86962 +a(g86959 +g86961 +S'were' +p86963 +tp86964 +a(g86961 +g86963 +S'a' +p86965 +tp86966 +a(g86963 +g86965 +S'special' +p86967 +tp86968 +a(g86965 +g86967 +S'delight' +p86969 +tp86970 +a(g86967 +g86969 +S'for' +p86971 +tp86972 +a(g86969 +g86971 +S'children.' +p86973 +tp86974 +a(g86971 +g86973 +S'such' +p86975 +tp86976 +a(g86973 +g86975 +S'objects,' +p86977 +tp86978 +a(g86975 +g86977 +S'made' +p86979 +tp86980 +a(g86977 +g86979 +S'from' +p86981 +tp86982 +a(g86979 +g86981 +S'metal,' +p86983 +tp86984 +a(g86981 +g86983 +S'combined' +p86985 +tp86986 +a(g86983 +g86985 +S'sound' +p86987 +tp86988 +a(g86985 +g86987 +S'with' +p86989 +tp86990 +a(g86987 +g86989 +S'the' +p86991 +tp86992 +a(g86989 +g86991 +S'old' +p86993 +tp86994 +a(g86991 +g86993 +S'pull' +p86995 +tp86996 +a(g86993 +g86995 +S'toy' +p86997 +tp86998 +a(g86995 +g86997 +S'system' +p86999 +tp87000 +a(g86997 +g86999 +S'of' +p87001 +tp87002 +a(g86999 +g87001 +S'motion.' +p87003 +tp87004 +a(g87001 +g87003 +S'in' +p87005 +tp87006 +a(g87003 +g87005 +S'this' +p87007 +tp87008 +a(g87005 +g87007 +S'case,' +p87009 +tp87010 +a(g87007 +g87009 +S'a' +p87011 +tp87012 +a(g87009 +g87011 +S'cast' +p87013 +tp87014 +a(g87011 +g87013 +S'iron' +p87015 +tp87016 +a(g87013 +g87015 +S'clapper' +p87017 +tp87018 +a(g87015 +g87017 +S'strikes' +p87019 +tp87020 +a(g87017 +g87019 +S'inside' +p87021 +tp87022 +a(g87019 +g87021 +S'the' +p87023 +tp87024 +a(g87021 +g87023 +S'bell' +p87025 +tp87026 +a(g87023 +g87025 +S'as' +p87027 +tp87028 +a(g87025 +g87027 +S'the' +p87029 +tp87030 +a(g87027 +g87029 +S'toy' +p87031 +tp87032 +a(g87029 +g87031 +S'is' +p87033 +tp87034 +a(g87031 +g87033 +S'pulled' +p87035 +tp87036 +a(g87033 +g87035 +S'along' +p87037 +tp87038 +a(g87035 +g87037 +S'by' +p87039 +tp87040 +a(g87037 +g87039 +S'a' +p87041 +tp87042 +a(g87039 +g87041 +S'string.' +p87043 +tp87044 +a(g87041 +g87043 +S'the' +p87045 +tp87046 +a(g87043 +g87045 +S'cart' +p87047 +tp87048 +a(g87045 +g87047 +S'consists' +p87049 +tp87050 +a(g87047 +g87049 +S'of' +p87051 +tp87052 +a(g87049 +g87051 +S'two' +p87053 +tp87054 +a(g87051 +g87053 +S'cast' +p87055 +tp87056 +a(g87053 +g87055 +S'zinc' +p87057 +tp87058 +a(g87055 +g87057 +S'wheels' +p87059 +tp87060 +a(g87057 +g87059 +S'with' +p87061 +tp87062 +a(g87059 +g87061 +S'pierced' +p87063 +tp87064 +a(g87061 +g87063 +S'designs' +p87065 +tp87066 +a(g87063 +g87065 +S'of' +p87067 +tp87068 +a(g87065 +g87067 +S'repeated' +p87069 +tp87070 +a(g87067 +g87069 +S'heart' +p87071 +tp87072 +a(g87069 +g87071 +S'shapes;' +p87073 +tp87074 +a(g87071 +g87073 +S'the' +p87075 +tp87076 +a(g87073 +g87075 +S'bell' +p87077 +tp87078 +a(g87075 +g87077 +S'between' +p87079 +tp87080 +a(g87077 +g87079 +S'is' +p87081 +tp87082 +a(g87079 +g87081 +S'attached' +p87083 +tp87084 +a(g87081 +g87083 +S'to' +p87085 +tp87086 +a(g87083 +g87085 +S'the' +p87087 +tp87088 +a(g87085 +g87087 +S'round' +p87089 +tp87090 +a(g87087 +g87089 +S'iron' +p87091 +tp87092 +a(g87089 +g87091 +S'axle.' +p87093 +tp87094 +a(g87091 +g87093 +S'the' +p87095 +tp87096 +a(g87093 +g87095 +S'bell' +p87097 +tp87098 +a(g87095 +g87097 +S'is' +p87099 +tp87100 +a(g87097 +g87099 +S'fashioned' +p87101 +tp87102 +a(g87099 +g87101 +S'in' +p87103 +tp87104 +a(g87101 +g87103 +S'two' +p87105 +tp87106 +a(g87103 +g87105 +S'halves,' +p87107 +tp87108 +a(g87105 +g87107 +S'of' +p87109 +tp87110 +a(g87107 +g87109 +S'nickel-plated' +p87111 +tp87112 +a(g87109 +g87111 +S'brass.' +p87113 +tp87114 +a(g87111 +g87113 +S'the' +p87115 +tp87116 +a(g87113 +g87115 +S'horse' +p87117 +tp87118 +a(g87115 +g87117 +S'is' +p87119 +tp87120 +a(g87117 +g87119 +S'die' +p87121 +tp87122 +a(g87119 +g87121 +S'stamped' +p87123 +tp87124 +a(g87121 +g87123 +S'from' +p87125 +tp87126 +a(g87123 +g87125 +S'two' +p87127 +tp87128 +a(g87125 +g87127 +S'pieces' +p87129 +tp87130 +a(g87127 +g87129 +S'of' +p87131 +tp87132 +a(g87129 +g87131 +S'tinned' +p87133 +tp87134 +a(g87131 +g87133 +S'sheet' +p87135 +tp87136 +a(g87133 +g87135 +S'iron' +p87137 +tp87138 +a(g87135 +g87137 +S'and' +p87139 +tp87140 +a(g87137 +g87139 +S'soldered' +p87141 +tp87142 +a(g87139 +g87141 +S'together.' +p87143 +tp87144 +a(g87141 +g87143 +S'traces' +p87145 +tp87146 +a(g87143 +g87145 +S'of' +p87147 +tp87148 +a(g87145 +g87147 +S'paint' +p87149 +tp87150 +a(g87147 +g87149 +S'indicate' +p87151 +tp87152 +a(g87149 +g87151 +S'the' +p87153 +tp87154 +a(g87151 +g87153 +S'horse' +p87155 +tp87156 +a(g87153 +g87155 +S'was' +p87157 +tp87158 +a(g87155 +g87157 +S'originally' +p87159 +tp87160 +a(g87157 +g87159 +S'painted' +p87161 +tp87162 +a(g87159 +g87161 +S'black' +p87163 +tp87164 +a(g87161 +g87163 +S'and' +p87165 +tp87166 +a(g87163 +g87165 +S'decorated' +p87167 +tp87168 +a(g87165 +g87167 +S'with' +p87169 +tp87170 +a(g87167 +g87169 +S'touches' +p87171 +tp87172 +a(g87169 +g87171 +S'of' +p87173 +tp87174 +a(g87171 +g87173 +S'oil' +p87175 +tp87176 +a(g87173 +g87175 +S'color.' +p87177 +tp87178 +a(g87175 +g87177 +S'the' +p87179 +tp87180 +a(g87177 +g87179 +S'repertoire' +p87181 +tp87182 +a(g87179 +g87181 +S'of' +p87183 +tp87184 +a(g87181 +g87183 +S'puppets' +p87185 +tp87186 +a(g87183 +g87185 +S'is' +p87187 +tp87188 +a(g87185 +g87187 +S'an' +p87189 +tp87190 +a(g87187 +g87189 +S'extensive' +p87191 +tp87192 +a(g87189 +g87191 +S'one' +p87193 +tp87194 +a(g87191 +g87193 +S'and' +p87195 +tp87196 +a(g87193 +g87195 +S'includes' +p87197 +tp87198 +a(g87195 +g87197 +S'many' +p87199 +tp87200 +a(g87197 +g87199 +S'characters' +p87201 +tp87202 +a(g87199 +g87201 +S'and' +p87203 +tp87204 +a(g87201 +g87203 +S'animals.' +p87205 +tp87206 +a(g87203 +g87205 +S'this' +p87207 +tp87208 +a(g87205 +g87207 +S'bull' +p87209 +tp87210 +a(g87207 +g87209 +S'puppet' +p87211 +tp87212 +a(g87209 +g87211 +S'of' +p87213 +tp87214 +a(g87211 +g87213 +S'1890' +p87215 +tp87216 +a(g87213 +g87215 +S'is' +p87217 +tp87218 +a(g87215 +g87217 +S'particularly' +p87219 +tp87220 +a(g87217 +g87219 +S'appealing.' +p87221 +tp87222 +a(g87219 +g87221 +S'it' +p87223 +tp87224 +a(g87221 +g87223 +S'is' +p87225 +tp87226 +a(g87223 +g87225 +S'made' +p87227 +tp87228 +a(g87225 +g87227 +S'of' +p87229 +tp87230 +a(g87227 +g87229 +S'a' +p87231 +tp87232 +a(g87229 +g87231 +S'cloth' +p87233 +tp87234 +a(g87231 +g87233 +S'with' +p87235 +tp87236 +a(g87233 +g87235 +S'a' +p87237 +tp87238 +a(g87235 +g87237 +S'furry' +p87239 +tp87240 +a(g87237 +g87239 +S'texture.' +p87241 +tp87242 +a(g87239 +g87241 +S'the' +p87243 +tp87244 +a(g87241 +g87243 +S'strings' +p87245 +tp87246 +a(g87243 +g87245 +S'for' +p87247 +tp87248 +a(g87245 +g87247 +S'operating' +p87249 +tp87250 +a(g87247 +g87249 +S'the' +p87251 +tp87252 +a(g87249 +g87251 +S'puppet' +p87253 +tp87254 +a(g87251 +g87253 +S'are' +p87255 +tp87256 +a(g87253 +g87255 +S'clearly' +p87257 +tp87258 +a(g87255 +g87257 +S'visible' +p87259 +tp87260 +a(g87257 +g87259 +S'here.' +p87261 +tp87262 +a(g87259 +g87261 +S'puppets' +p87263 +tp87264 +a(g87261 +g87263 +S'have' +p87265 +tp87266 +a(g87263 +g87265 +S'a' +p87267 +tp87268 +a(g87265 +g87267 +S'long' +p87269 +tp87270 +a(g87267 +g87269 +S'history,' +p87271 +tp87272 +a(g87269 +g87271 +S'beginning' +p87273 +tp87274 +a(g87271 +g87273 +S'as' +p87275 +tp87276 +a(g87273 +g87275 +S'articulated' +p87277 +tp87278 +a(g87275 +g87277 +S'stick' +p87279 +tp87280 +a(g87277 +g87279 +S'figures' +p87281 +tp87282 +a(g87279 +g87281 +S'in' +p87283 +tp87284 +a(g87281 +g87283 +S'ancient' +p87285 +tp87286 +a(g87283 +g87285 +S'egypt,' +p87287 +tp87288 +a(g87285 +g87287 +S'india,' +p87289 +tp87290 +a(g87287 +g87289 +S'greece,' +p87291 +tp87292 +a(g87289 +g87291 +S'and' +p87293 +tp87294 +a(g87291 +g87293 +S'rome.' +p87295 +tp87296 +a(g87293 +g87295 +S'during' +p87297 +tp87298 +a(g87295 +g87297 +S'the' +p87299 +tp87300 +a(g87297 +g87299 +S'middle' +p87301 +tp87302 +a(g87299 +g87301 +S'ages,' +p87303 +tp87304 +a(g87301 +g87303 +S'puppets' +p87305 +tp87306 +a(g87303 +g87305 +S'were' +p87307 +tp87308 +a(g87305 +g87307 +S'used' +p87309 +tp87310 +a(g87307 +g87309 +S'in' +p87311 +tp87312 +a(g87309 +g87311 +S'miracle' +p87313 +tp87314 +a(g87311 +g87313 +S'plays.' +p87315 +tp87316 +a(g87313 +g87315 +S'and' +p87317 +tp87318 +a(g87315 +g87317 +S'in' +p87319 +tp87320 +a(g87317 +g87319 +S'early' +p87321 +tp87322 +a(g87319 +g87321 +S'america,' +p87323 +tp87324 +a(g87321 +g87323 +S'puppet' +p87325 +tp87326 +a(g87323 +g87325 +S'shows' +p87327 +tp87328 +a(g87325 +g87327 +S'provided' +p87329 +tp87330 +a(g87327 +g87329 +S'entertainment' +p87331 +tp87332 +a(g87329 +g87331 +S'in' +p87333 +tp87334 +a(g87331 +g87333 +S'remote' +p87335 +tp87336 +a(g87333 +g87335 +S'frontier' +p87337 +tp87338 +a(g87335 +g87337 +S'areas.' +p87339 +tp87340 +a(g87337 +g87339 +S'this' +p87341 +tp87342 +a(g87339 +g87341 +S'small' +p87343 +tp87344 +a(g87341 +g87343 +S'panel' +p87345 +tp87346 +a(g87343 +g87345 +S'by' +p87347 +tp87348 +a(g87345 +g87347 +S'lotto' +p87349 +tp87350 +a(g87347 +g87349 +S'can' +p87351 +tp87352 +a(g87349 +g87351 +S'be' +p87353 +tp87354 +a(g87351 +g87353 +S'dated' +p87355 +tp87356 +a(g87353 +g87355 +S'to' +p87357 +tp87358 +a(g87355 +g87357 +S'early' +p87359 +tp87360 +a(g87357 +g87359 +S'in' +p87361 +tp87362 +a(g87359 +g87361 +S'his' +p87363 +tp87364 +a(g87361 +g87363 +S'career' +p87365 +tp87366 +a(g87363 +g87365 +S'because' +p87367 +tp87368 +a(g87365 +g87367 +S'of' +p87369 +tp87370 +a(g87367 +g87369 +S'stylistic' +p87371 +tp87372 +a(g87369 +g87371 +S'similarities' +p87373 +tp87374 +a(g87371 +g87373 +S'to' +p87375 +tp87376 +a(g87373 +g87375 +S'the' +p87377 +tp87378 +a(g87375 +g87377 +S'subject' +p87379 +tp87380 +a(g87377 +g87379 +S'of' +p87381 +tp87382 +a(g87379 +g87381 +S'the' +p87383 +tp87384 +a(g87381 +g87383 +S'panel' +p87385 +tp87386 +a(g87383 +g87385 +S'has' +p87387 +tp87388 +a(g87385 +g87387 +S'been' +p87389 +tp87390 +a(g87387 +g87389 +S'the' +p87391 +tp87392 +a(g87389 +g87391 +S'cause' +p87393 +tp87394 +a(g87391 +g87393 +S'for' +p87395 +tp87396 +a(g87393 +g87395 +S'much' +p87397 +tp87398 +a(g87395 +g87397 +S'discussion.' +p87399 +tp87400 +a(g87397 +g87399 +S'a' +p87401 +tp87402 +a(g87399 +g87401 +S'variety' +p87403 +tp87404 +a(g87401 +g87403 +S'of' +p87405 +tp87406 +a(g87403 +g87405 +S'interpretations' +p87407 +tp87408 +a(g87405 +g87407 +S'have' +p87409 +tp87410 +a(g87407 +g87409 +S'been' +p87411 +tp87412 +a(g87409 +g87411 +S'suggested,' +p87413 +tp87414 +a(g87411 +g87413 +S'including' +p87415 +tp87416 +a(g87413 +g87415 +S'the' +p87417 +tp87418 +a(g87415 +g87417 +S'classical,' +p87419 +tp87420 +a(g87417 +g87419 +S'the' +p87421 +tp87422 +a(g87419 +g87421 +S'production' +p87423 +tp87424 +a(g87421 +g87423 +S'of' +p87425 +tp87426 +a(g87423 +g87425 +S'toy' +p87427 +tp87428 +a(g87425 +g87427 +S'locomotives' +p87429 +tp87430 +a(g87427 +g87429 +S'and' +p87431 +tp87432 +a(g87429 +g87431 +S'toy' +p87433 +tp87434 +a(g87431 +g87433 +S'trains' +p87435 +tp87436 +a(g87433 +g87435 +S'was' +p87437 +tp87438 +a(g87435 +g87437 +S'eventually' +p87439 +tp87440 +a(g87437 +g87439 +S'extended' +p87441 +tp87442 +a(g87439 +g87441 +S'to' +p87443 +tp87444 +a(g87441 +g87443 +S'comprise' +p87445 +tp87446 +a(g87443 +g87445 +S'an' +p87447 +tp87448 +a(g87445 +g87447 +S'entire' +p87449 +tp87450 +a(g87447 +g87449 +S'railway' +p87451 +tp87452 +a(g87449 +g87451 +S'system' +p87453 +tp87454 +a(g87451 +g87453 +S'in' +p87455 +tp87456 +a(g87453 +g87455 +S'miniature.' +p87457 +tp87458 +a(g87455 +g87457 +S'this' +p87459 +tp87460 +a(g87457 +g87459 +S'locomotive' +p87461 +tp87462 +a(g87459 +g87461 +S'and' +p87463 +tp87464 +a(g87461 +g87463 +S'tender' +p87465 +tp87466 +a(g87463 +g87465 +S'are' +p87467 +tp87468 +a(g87465 +g87467 +S'made' +p87469 +tp87470 +a(g87467 +g87469 +S'of' +p87471 +tp87472 +a(g87469 +g87471 +S'wood' +p87473 +tp87474 +a(g87471 +g87473 +S'and' +p87475 +tp87476 +a(g87473 +g87475 +S'date' +p87477 +tp87478 +a(g87475 +g87477 +S'from' +p87479 +tp87480 +a(g87477 +g87479 +S'about' +p87481 +tp87482 +a(g87479 +g87481 +S'1850.' +p87483 +tp87484 +a(g87481 +g87483 +S'like' +p87485 +tp87486 +a(g87483 +g87485 +S'its' +p87487 +tp87488 +a(g87485 +g87487 +S'real' +p87489 +tp87490 +a(g87487 +g87489 +S'counterpart' +p87491 +tp87492 +a(g87489 +g87491 +S'of' +p87493 +tp87494 +a(g87491 +g87493 +S'the' +p87495 +tp87496 +a(g87493 +g87495 +S'day,' +p87497 +tp87498 +a(g87495 +g87497 +S'this' +p87499 +tp87500 +a(g87497 +g87499 +S'model' +p87501 +tp87502 +a(g87499 +g87501 +S'had' +p87503 +tp87504 +a(g87501 +g87503 +S'a' +p87505 +tp87506 +a(g87503 +g87505 +S'name,' +p87507 +tp87508 +a(g87505 +g87507 +S'the' +p87509 +tp87510 +a(g87507 +g87509 +S'american' +p87511 +tp87512 +a(g87509 +g87511 +S'indians' +p87513 +tp87514 +a(g87511 +g87513 +S'made' +p87515 +tp87516 +a(g87513 +g87515 +S'dolls' +p87517 +tp87518 +a(g87515 +g87517 +S'depicting' +p87519 +tp87520 +a(g87517 +g87519 +S'white' +p87521 +tp87522 +a(g87519 +g87521 +S'settlers' +p87523 +tp87524 +a(g87521 +g87523 +S'as' +p87525 +tp87526 +a(g87523 +g87525 +S'well' +p87527 +tp87528 +a(g87525 +g87527 +S'as' +p87529 +tp87530 +a(g87527 +g87529 +S'their' +p87531 +tp87532 +a(g87529 +g87531 +S'own' +p87533 +tp87534 +a(g87531 +g87533 +S'people.' +p87535 +tp87536 +a(g87533 +g87535 +S'here' +p87537 +tp87538 +a(g87535 +g87537 +S'are' +p87539 +tp87540 +a(g87537 +g87539 +S'two' +p87541 +tp87542 +a(g87539 +g87541 +S'views' +p87543 +tp87544 +a(g87541 +g87543 +S'of' +p87545 +tp87546 +a(g87543 +g87545 +S'a' +p87547 +tp87548 +a(g87545 +g87547 +S'frontiersman' +p87549 +tp87550 +a(g87547 +g87549 +S'dressed' +p87551 +tp87552 +a(g87549 +g87551 +S'in' +p87553 +tp87554 +a(g87551 +g87553 +S'buckskin.' +p87555 +tp87556 +a(g87553 +g87555 +S'the' +p87557 +tp87558 +a(g87555 +g87557 +S'doll' +p87559 +tp87560 +a(g87557 +g87559 +S'was' +p87561 +tp87562 +a(g87559 +g87561 +S'made' +p87563 +tp87564 +a(g87561 +g87563 +S'in' +p87565 +tp87566 +a(g87563 +g87565 +S'about' +p87567 +tp87568 +a(g87565 +g87567 +S'1850' +p87569 +tp87570 +a(g87567 +g87569 +S'by' +p87571 +tp87572 +a(g87569 +g87571 +S'plains' +p87573 +tp87574 +a(g87571 +g87573 +S'indians.' +p87575 +tp87576 +a(g87573 +g87575 +S'compared' +p87577 +tp87578 +a(g87575 +g87577 +S'to' +p87579 +tp87580 +a(g87577 +g87579 +S'most' +p87581 +tp87582 +a(g87579 +g87581 +S'weathervanes,' +p87583 +tp87584 +a(g87581 +g87583 +S'which' +p87585 +tp87586 +a(g87583 +g87585 +S'are' +p87587 +tp87588 +a(g87585 +g87587 +S'single' +p87589 +tp87590 +a(g87587 +g87589 +S'figures,' +p87591 +tp87592 +a(g87589 +g87591 +S'this' +p87593 +tp87594 +a(g87591 +g87593 +S'example' +p87595 +tp87596 +a(g87593 +g87595 +S'was' +p87597 +tp87598 +a(g87595 +g87597 +S'an' +p87599 +tp87600 +a(g87597 +g87599 +S'ambitious' +p87601 +tp87602 +a(g87599 +g87601 +S'project.' +p87603 +tp87604 +a(g87601 +g87603 +S'carved' +p87605 +tp87606 +a(g87603 +g87605 +S'by' +p87607 +tp87608 +a(g87605 +g87607 +S'an' +p87609 +tp87610 +a(g87607 +g87609 +S'artisan' +p87611 +tp87612 +a(g87609 +g87611 +S'from' +p87613 +tp87614 +a(g87611 +g87613 +S'salem,' +p87615 +tp87616 +a(g87613 +g87615 +S'massachusetts,' +p87617 +tp87618 +a(g87615 +g87617 +S'the' +p87619 +tp87620 +a(g87617 +g87619 +S'three' +p87621 +tp87622 +a(g87619 +g87621 +S'figures' +p87623 +tp87624 +a(g87621 +g87623 +S'represent' +p87625 +tp87626 +a(g87623 +g87625 +S'an' +p87627 +tp87628 +a(g87625 +g87627 +S'indian,' +p87629 +tp87630 +a(g87627 +g87629 +S'on' +p87631 +tp87632 +a(g87629 +g87631 +S'a' +p87633 +tp87634 +a(g87631 +g87633 +S'horse,' +p87635 +tp87636 +a(g87633 +g87635 +S'about' +p87637 +tp87638 +a(g87635 +g87637 +S'to' +p87639 +tp87640 +a(g87637 +g87639 +S'spear' +p87641 +tp87642 +a(g87639 +g87641 +S'an' +p87643 +tp87644 +a(g87641 +g87643 +S'attacking' +p87645 +tp87646 +a(g87643 +g87645 +S'mountain' +p87647 +tp87648 +a(g87645 +g87647 +S'lion.' +p87649 +tp87650 +a(g87647 +g87649 +S'on' +p87651 +tp87652 +a(g87649 +g87651 +S'the' +p87653 +tp87654 +a(g87651 +g87653 +S'whole' +p87655 +tp87656 +a(g87653 +g87655 +S'the' +p87657 +tp87658 +a(g87655 +g87657 +S'composition' +p87659 +tp87660 +a(g87657 +g87659 +S'succeeds' +p87661 +tp87662 +a(g87659 +g87661 +S'well;' +p87663 +tp87664 +a(g87661 +g87663 +S'the' +p87665 +tp87666 +a(g87663 +g87665 +S'diagonal' +p87667 +tp87668 +a(g87665 +g87667 +S'line' +p87669 +tp87670 +a(g87667 +g87669 +S'of' +p87671 +tp87672 +a(g87669 +g87671 +S'the' +p87673 +tp87674 +a(g87671 +g87673 +S'spear' +p87675 +tp87676 +a(g87673 +g87675 +S'and' +p87677 +tp87678 +a(g87675 +g87677 +S'upward-lunging' +p87679 +tp87680 +a(g87677 +g87679 +S'animal' +p87681 +tp87682 +a(g87679 +g87681 +S'contrasts' +p87683 +tp87684 +a(g87681 +g87683 +S'with' +p87685 +tp87686 +a(g87683 +g87685 +S'the' +p87687 +tp87688 +a(g87685 +g87687 +S'backward' +p87689 +tp87690 +a(g87687 +g87689 +S'movement' +p87691 +tp87692 +a(g87689 +g87691 +S'of' +p87693 +tp87694 +a(g87691 +g87693 +S'the' +p87695 +tp87696 +a(g87693 +g87695 +S'horse.' +p87697 +tp87698 +a(g87695 +g87697 +S'the' +p87699 +tp87700 +a(g87697 +g87699 +S'tail' +p87701 +tp87702 +a(g87699 +g87701 +S'and' +p87703 +tp87704 +a(g87701 +g87703 +S'mane' +p87705 +tp87706 +a(g87703 +g87705 +S'of' +p87707 +tp87708 +a(g87705 +g87707 +S'the' +p87709 +tp87710 +a(g87707 +g87709 +S'horse' +p87711 +tp87712 +a(g87709 +g87711 +S'have' +p87713 +tp87714 +a(g87711 +g87713 +S'been' +p87715 +tp87716 +a(g87713 +g87715 +S'given' +p87717 +tp87718 +a(g87715 +g87717 +S'particular' +p87719 +tp87720 +a(g87717 +g87719 +S'attention' +p87721 +tp87722 +a(g87719 +g87721 +S'in' +p87723 +tp87724 +a(g87721 +g87723 +S'their' +p87725 +tp87726 +a(g87723 +g87725 +S'detail.' +p87727 +tp87728 +a(g87725 +g87727 +S'because' +p87729 +tp87730 +a(g87727 +g87729 +S'"printed"' +p87731 +tp87732 +a(g87729 +g87731 +S'butter' +p87733 +tp87734 +a(g87731 +g87733 +S'was' +p87735 +tp87736 +a(g87733 +g87735 +S'more' +p87737 +tp87738 +a(g87735 +g87737 +S'appealing' +p87739 +tp87740 +a(g87737 +g87739 +S'to' +p87741 +tp87742 +a(g87739 +g87741 +S'customers' +p87743 +tp87744 +a(g87741 +g87743 +S'than' +p87745 +tp87746 +a(g87743 +g87745 +S'plain' +p87747 +tp87748 +a(g87745 +g87747 +S'bricks,' +p87749 +tp87750 +a(g87747 +g87749 +S'butter' +p87751 +tp87752 +a(g87749 +g87751 +S'molds' +p87753 +tp87754 +a(g87751 +g87753 +S'were' +p87755 +tp87756 +a(g87753 +g87755 +S'used' +p87757 +tp87758 +a(g87755 +g87757 +S'to' +p87759 +tp87760 +a(g87757 +g87759 +S'shape' +p87761 +tp87762 +a(g87759 +g87761 +S'and' +p87763 +tp87764 +a(g87761 +g87763 +S'stamp' +p87765 +tp87766 +a(g87763 +g87765 +S'decorative' +p87767 +tp87768 +a(g87765 +g87767 +S'patterns' +p87769 +tp87770 +a(g87767 +g87769 +S'on' +p87771 +tp87772 +a(g87769 +g87771 +S'the' +p87773 +tp87774 +a(g87771 +g87773 +S'butter' +p87775 +tp87776 +a(g87773 +g87775 +S'sold' +p87777 +tp87778 +a(g87775 +g87777 +S'at' +p87779 +tp87780 +a(g87777 +g87779 +S'market.' +p87781 +tp87782 +a(g87779 +g87781 +S'pennsylvania' +p87783 +tp87784 +a(g87781 +g87783 +S'german' +p87785 +tp87786 +a(g87783 +g87785 +S'farmers' +p87787 +tp87788 +a(g87785 +g87787 +S'carved' +p87789 +tp87790 +a(g87787 +g87789 +S'the' +p87791 +tp87792 +a(g87789 +g87791 +S'molds' +p87793 +tp87794 +a(g87791 +g87793 +S'that' +p87795 +tp87796 +a(g87793 +g87795 +S'their' +p87797 +tp87798 +a(g87795 +g87797 +S'wives' +p87799 +tp87800 +a(g87797 +g87799 +S'used' +p87801 +tp87802 +a(g87799 +g87801 +S'to' +p87803 +tp87804 +a(g87801 +g87803 +S'prepare' +p87805 +tp87806 +a(g87803 +g87805 +S'the' +p87807 +tp87808 +a(g87805 +g87807 +S'butter' +p87809 +tp87810 +a(g87807 +g87809 +S'for' +p87811 +tp87812 +a(g87809 +g87811 +S'sale.' +p87813 +tp87814 +a(g87811 +g87813 +S'turned' +p87815 +tp87816 +a(g87813 +g87815 +S'on' +p87817 +tp87818 +a(g87815 +g87817 +S'a' +p87819 +tp87820 +a(g87817 +g87819 +S'lathe,' +p87821 +tp87822 +a(g87819 +g87821 +S'this' +p87823 +tp87824 +a(g87821 +g87823 +S'mold' +p87825 +tp87826 +a(g87823 +g87825 +S'and' +p87827 +tp87828 +a(g87825 +g87827 +S'its' +p87829 +tp87830 +a(g87827 +g87829 +S'handle' +p87831 +tp87832 +a(g87829 +g87831 +S'were' +p87833 +tp87834 +a(g87831 +g87833 +S'made' +p87835 +tp87836 +a(g87833 +g87835 +S'in' +p87837 +tp87838 +a(g87835 +g87837 +S'one' +p87839 +tp87840 +a(g87837 +g87839 +S'piece.' +p87841 +tp87842 +a(g87839 +g87841 +S'popular' +p87843 +tp87844 +a(g87841 +g87843 +S'motifs' +p87845 +tp87846 +a(g87843 +g87845 +S'were' +p87847 +tp87848 +a(g87845 +g87847 +S'sheaves' +p87849 +tp87850 +a(g87847 +g87849 +S'of' +p87851 +tp87852 +a(g87849 +g87851 +S'grain,' +p87853 +tp87854 +a(g87851 +g87853 +S'hearts,' +p87855 +tp87856 +a(g87853 +g87855 +S'american' +p87857 +tp87858 +a(g87855 +g87857 +S'eagles,' +p87859 +tp87860 +a(g87857 +g87859 +S'and' +p87861 +tp87862 +a(g87859 +g87861 +S'flowers.' +p87863 +tp87864 +a(g87861 +g87863 +S'this' +p87865 +tp87866 +a(g87863 +g87865 +S'mold' +p87867 +tp87868 +a(g87865 +g87867 +S'shows' +p87869 +tp87870 +a(g87867 +g87869 +S'a' +p87871 +tp87872 +a(g87869 +g87871 +S'large,' +p87873 +tp87874 +a(g87871 +g87873 +S'symmetrically' +p87875 +tp87876 +a(g87873 +g87875 +S'designed' +p87877 +tp87878 +a(g87875 +g87877 +S'tulip' +p87879 +tp87880 +a(g87877 +g87879 +S'surrounded' +p87881 +tp87882 +a(g87879 +g87881 +S'by' +p87883 +tp87884 +a(g87881 +g87883 +S'small' +p87885 +tp87886 +a(g87883 +g87885 +S'leaves' +p87887 +tp87888 +a(g87885 +g87887 +S'and' +p87889 +tp87890 +a(g87887 +g87889 +S'a' +p87891 +tp87892 +a(g87889 +g87891 +S'notched' +p87893 +tp87894 +a(g87891 +g87893 +S'border.' +p87895 +tp87896 +a(g87893 +g87895 +S'ironware' +p87897 +tp87898 +a(g87895 +g87897 +S'cast' +p87899 +tp87900 +a(g87897 +g87899 +S'at' +p87901 +tp87902 +a(g87899 +g87901 +S'the' +p87903 +tp87904 +a(g87901 +g87903 +S'foundry' +p87905 +tp87906 +a(g87903 +g87905 +S'or' +p87907 +tp87908 +a(g87905 +g87907 +S'wrought' +p87909 +tp87910 +a(g87907 +g87909 +S'by' +p87911 +tp87912 +a(g87909 +g87911 +S'a' +p87913 +tp87914 +a(g87911 +g87913 +S'blacksmith' +p87915 +tp87916 +a(g87913 +g87915 +S'was' +p87917 +tp87918 +a(g87915 +g87917 +S'heavy' +p87919 +tp87920 +a(g87917 +g87919 +S'and' +p87921 +tp87922 +a(g87919 +g87921 +S'cumbersome.' +p87923 +tp87924 +a(g87921 +g87923 +S'in' +p87925 +tp87926 +a(g87923 +g87925 +S'contrast,' +p87927 +tp87928 +a(g87925 +g87927 +S'the' +p87929 +tp87930 +a(g87927 +g87929 +S'lightness' +p87931 +tp87932 +a(g87929 +g87931 +S'of' +p87933 +tp87934 +a(g87931 +g87933 +S'tinplate' +p87935 +tp87936 +a(g87933 +g87935 +S'made' +p87937 +tp87938 +a(g87935 +g87937 +S'it' +p87939 +tp87940 +a(g87937 +g87939 +S'a' +p87941 +tp87942 +a(g87939 +g87941 +S'popular' +p87943 +tp87944 +a(g87941 +g87943 +S'metal' +p87945 +tp87946 +a(g87943 +g87945 +S'for' +p87947 +tp87948 +a(g87945 +g87947 +S'plain' +p87949 +tp87950 +a(g87947 +g87949 +S'and' +p87951 +tp87952 +a(g87949 +g87951 +S'decorative' +p87953 +tp87954 +a(g87951 +g87953 +S'household' +p87955 +tp87956 +a(g87953 +g87955 +S'utensils.' +p87957 +tp87958 +a(g87955 +g87957 +S'tinplate' +p87959 +tp87960 +a(g87957 +g87959 +S'was' +p87961 +tp87962 +a(g87959 +g87961 +S'made' +p87963 +tp87964 +a(g87961 +g87963 +S'from' +p87965 +tp87966 +a(g87963 +g87965 +S'thin' +p87967 +tp87968 +a(g87965 +g87967 +S'sheets' +p87969 +tp87970 +a(g87967 +g87969 +S'of' +p87971 +tp87972 +a(g87969 +g87971 +S'iron' +p87973 +tp87974 +a(g87971 +g87973 +S'coated' +p87975 +tp87976 +a(g87973 +g87975 +S'with' +p87977 +tp87978 +a(g87975 +g87977 +S'molten' +p87979 +tp87980 +a(g87977 +g87979 +S'tin.' +p87981 +tp87982 +a(g87979 +g87981 +S'this' +p87983 +tp87984 +a(g87981 +g87983 +S'combination' +p87985 +tp87986 +a(g87983 +g87985 +S'of' +p87987 +tp87988 +a(g87985 +g87987 +S'metals' +p87989 +tp87990 +a(g87987 +g87989 +S'is' +p87991 +tp87992 +a(g87989 +g87991 +S'rustproof,' +p87993 +tp87994 +a(g87991 +g87993 +S'with' +p87995 +tp87996 +a(g87993 +g87995 +S'the' +p87997 +tp87998 +a(g87995 +g87997 +S'strength' +p87999 +tp88000 +a(g87997 +g87999 +S'and' +p88001 +tp88002 +a(g87999 +g88001 +S'rigidity' +p88003 +tp88004 +a(g88001 +g88003 +S'of' +p88005 +tp88006 +a(g88003 +g88005 +S'iron' +p88007 +tp88008 +a(g88005 +g88007 +S'but' +p88009 +tp88010 +a(g88007 +g88009 +S'the' +p88011 +tp88012 +a(g88009 +g88011 +S'malleability' +p88013 +tp88014 +a(g88011 +g88013 +S'and' +p88015 +tp88016 +a(g88013 +g88015 +S'lightness' +p88017 +tp88018 +a(g88015 +g88017 +S'of' +p88019 +tp88020 +a(g88017 +g88019 +S'tin.' +p88021 +tp88022 +a(g88019 +g88021 +S'this' +p88023 +tp88024 +a(g88021 +g88023 +S'tin' +p88025 +tp88026 +a(g88023 +g88025 +S'cookie' +p88027 +tp88028 +a(g88025 +g88027 +S'cutter' +p88029 +tp88030 +a(g88027 +g88029 +S'was' +p88031 +tp88032 +a(g88029 +g88031 +S'a' +p88033 +tp88034 +a(g88031 +g88033 +S'common' +p88035 +tp88036 +a(g88033 +g88035 +S'item' +p88037 +tp88038 +a(g88035 +g88037 +S'made' +p88039 +tp88040 +a(g88037 +g88039 +S'by' +p88041 +tp88042 +a(g88039 +g88041 +S'pennsylvania' +p88043 +tp88044 +a(g88041 +g88043 +S'german' +p88045 +tp88046 +a(g88043 +g88045 +S'tinsmiths.' +p88047 +tp88048 +a(g88045 +g88047 +S'it' +p88049 +tp88050 +a(g88047 +g88049 +S'may' +p88051 +tp88052 +a(g88049 +g88051 +S'have' +p88053 +tp88054 +a(g88051 +g88053 +S'been' +p88055 +tp88056 +a(g88053 +g88055 +S'used' +p88057 +tp88058 +a(g88055 +g88057 +S'by' +p88059 +tp88060 +a(g88057 +g88059 +S'a' +p88061 +tp88062 +a(g88059 +g88061 +S'housewife' +p88063 +tp88064 +a(g88061 +g88063 +S'or' +p88065 +tp88066 +a(g88063 +g88065 +S'by' +p88067 +tp88068 +a(g88065 +g88067 +S'a' +p88069 +tp88070 +a(g88067 +g88069 +S'gingerbread' +p88071 +tp88072 +a(g88069 +g88071 +S'baker.' +p88073 +tp88074 +a(g88071 +g88073 +S'the' +p88075 +tp88076 +a(g88073 +g88075 +S'horse' +p88077 +tp88078 +a(g88075 +g88077 +S'and' +p88079 +tp88080 +a(g88077 +g88079 +S'rider' +p88081 +tp88082 +a(g88079 +g88081 +S'pattern' +p88083 +tp88084 +a(g88081 +g88083 +S'shown' +p88085 +tp88086 +a(g88083 +g88085 +S'here' +p88087 +tp88088 +a(g88085 +g88087 +S'was' +p88089 +tp88090 +a(g88087 +g88089 +S'popular.' +p88091 +tp88092 +a(g88089 +g88091 +S'other' +p88093 +tp88094 +a(g88091 +g88093 +S'common' +p88095 +tp88096 +a(g88093 +g88095 +S'patterns' +p88097 +tp88098 +a(g88095 +g88097 +S'were' +p88099 +tp88100 +a(g88097 +g88099 +S'deer,' +p88101 +tp88102 +a(g88099 +g88101 +S'stars,' +p88103 +tp88104 +a(g88101 +g88103 +S'eagles,' +p88105 +tp88106 +a(g88103 +g88105 +S'and' +p88107 +tp88108 +a(g88105 +g88107 +S'the' +p88109 +tp88110 +a(g88107 +g88109 +S'traditional' +p88111 +tp88112 +a(g88109 +g88111 +S'gingerbread' +p88113 +tp88114 +a(g88111 +g88113 +S'boy.' +p88115 +tp88116 +a(g88113 +g88115 +S'the' +p88117 +tp88118 +a(g88115 +g88117 +S'figure,' +p88119 +tp88120 +a(g88117 +g88119 +S'which' +p88121 +tp88122 +a(g88119 +g88121 +S'provided' +p88123 +tp88124 +a(g88121 +g88123 +S'the' +p88125 +tp88126 +a(g88123 +g88125 +S'cutting' +p88127 +tp88128 +a(g88125 +g88127 +S'edge,' +p88129 +tp88130 +a(g88127 +g88129 +S'was' +p88131 +tp88132 +a(g88129 +g88131 +S'shaped' +p88133 +tp88134 +a(g88131 +g88133 +S'of' +p88135 +tp88136 +a(g88133 +g88135 +S'thin' +p88137 +tp88138 +a(g88135 +g88137 +S'tin' +p88139 +tp88140 +a(g88137 +g88139 +S'ribbons' +p88141 +tp88142 +a(g88139 +g88141 +S'that' +p88143 +tp88144 +a(g88141 +g88143 +S'were' +p88145 +tp88146 +a(g88143 +g88145 +S'soldered' +p88147 +tp88148 +a(g88145 +g88147 +S'to' +p88149 +tp88150 +a(g88147 +g88149 +S'a' +p88151 +tp88152 +a(g88149 +g88151 +S'flat' +p88153 +tp88154 +a(g88151 +g88153 +S'base.' +p88155 +tp88156 +a(g88153 +g88155 +S'because' +p88157 +tp88158 +a(g88155 +g88157 +S'cookie' +p88159 +tp88160 +a(g88157 +g88159 +S'cutters' +p88161 +tp88162 +a(g88159 +g88161 +S'were' +p88163 +tp88164 +a(g88161 +g88163 +S'made' +p88165 +tp88166 +a(g88163 +g88165 +S'by' +p88167 +tp88168 +a(g88165 +g88167 +S'the' +p88169 +tp88170 +a(g88167 +g88169 +S'local' +p88171 +tp88172 +a(g88169 +g88171 +S'tinsmith' +p88173 +tp88174 +a(g88171 +g88173 +S'or' +p88175 +tp88176 +a(g88173 +g88175 +S'by' +p88177 +tp88178 +a(g88175 +g88177 +S'amateur' +p88179 +tp88180 +a(g88177 +g88179 +S'craftsmen,' +p88181 +tp88182 +a(g88179 +g88181 +S'the' +p88183 +tp88184 +a(g88181 +g88183 +S'simple' +p88185 +tp88186 +a(g88183 +g88185 +S'but' +p88187 +tp88188 +a(g88185 +g88187 +S'imaginative' +p88189 +tp88190 +a(g88187 +g88189 +S'shapes' +p88191 +tp88192 +a(g88189 +g88191 +S'display' +p88193 +tp88194 +a(g88191 +g88193 +S'a' +p88195 +tp88196 +a(g88193 +g88195 +S'true' +p88197 +tp88198 +a(g88195 +g88197 +S'folk' +p88199 +tp88200 +a(g88197 +g88199 +S'art' +p88201 +tp88202 +a(g88199 +g88201 +S'quality.' +p88203 +tp88204 +a(g88201 +g88203 +S'iron' +p88205 +tp88206 +a(g88203 +g88205 +S'is' +p88207 +tp88208 +a(g88205 +g88207 +S'one' +p88209 +tp88210 +a(g88207 +g88209 +S'of' +p88211 +tp88212 +a(g88209 +g88211 +S'the' +p88213 +tp88214 +a(g88211 +g88213 +S'most' +p88215 +tp88216 +a(g88213 +g88215 +S'abundant' +p88217 +tp88218 +a(g88215 +g88217 +S'minerals' +p88219 +tp88220 +a(g88217 +g88219 +S'available.' +p88221 +tp88222 +a(g88219 +g88221 +S'the' +p88223 +tp88224 +a(g88221 +g88223 +S'strength' +p88225 +tp88226 +a(g88223 +g88225 +S'and' +p88227 +tp88228 +a(g88225 +g88227 +S'malleability' +p88229 +tp88230 +a(g88227 +g88229 +S'of' +p88231 +tp88232 +a(g88229 +g88231 +S'this' +p88233 +tp88234 +a(g88231 +g88233 +S'metal' +p88235 +tp88236 +a(g88233 +g88235 +S'make' +p88237 +tp88238 +a(g88235 +g88237 +S'it' +p88239 +tp88240 +a(g88237 +g88239 +S'suitable' +p88241 +tp88242 +a(g88239 +g88241 +S'for' +p88243 +tp88244 +a(g88241 +g88243 +S'a' +p88245 +tp88246 +a(g88243 +g88245 +S'variety' +p88247 +tp88248 +a(g88245 +g88247 +S'of' +p88249 +tp88250 +a(g88247 +g88249 +S'useful' +p88251 +tp88252 +a(g88249 +g88251 +S'objects.' +p88253 +tp88254 +a(g88251 +g88253 +S'this' +p88255 +tp88256 +a(g88253 +g88255 +S'door' +p88257 +tp88258 +a(g88255 +g88257 +S'latch' +p88259 +tp88260 +a(g88257 +g88259 +S'is' +p88261 +tp88262 +a(g88259 +g88261 +S'made' +p88263 +tp88264 +a(g88261 +g88263 +S'of' +p88265 +tp88266 +a(g88263 +g88265 +S'wrought' +p88267 +tp88268 +a(g88265 +g88267 +S'iron' +p88269 +tp88270 +a(g88267 +g88269 +S'forged' +p88271 +tp88272 +a(g88269 +g88271 +S'by' +p88273 +tp88274 +a(g88271 +g88273 +S'a' +p88275 +tp88276 +a(g88273 +g88275 +S'blacksmith.' +p88277 +tp88278 +a(g88275 +g88277 +S'an' +p88279 +tp88280 +a(g88277 +g88279 +S'important' +p88281 +tp88282 +a(g88279 +g88281 +S'member' +p88283 +tp88284 +a(g88281 +g88283 +S'of' +p88285 +tp88286 +a(g88283 +g88285 +S'the' +p88287 +tp88288 +a(g88285 +g88287 +S'early' +p88289 +tp88290 +a(g88287 +g88289 +S'american' +p88291 +tp88292 +a(g88289 +g88291 +S'community,' +p88293 +tp88294 +a(g88291 +g88293 +S'the' +p88295 +tp88296 +a(g88293 +g88295 +S'blacksmith' +p88297 +tp88298 +a(g88295 +g88297 +S'produced' +p88299 +tp88300 +a(g88297 +g88299 +S'farm' +p88301 +tp88302 +a(g88299 +g88301 +S'tools' +p88303 +tp88304 +a(g88301 +g88303 +S'and' +p88305 +tp88306 +a(g88303 +g88305 +S'implements,' +p88307 +tp88308 +a(g88305 +g88307 +S'household' +p88309 +tp88310 +a(g88307 +g88309 +S'utensils,' +p88311 +tp88312 +a(g88309 +g88311 +S'and' +p88313 +tp88314 +a(g88311 +g88313 +S'other' +p88315 +tp88316 +a(g88313 +g88315 +S'hardware.' +p88317 +tp88318 +a(g88315 +g88317 +S'iron' +p88319 +tp88320 +a(g88317 +g88319 +S'bars' +p88321 +tp88322 +a(g88319 +g88321 +S'were' +p88323 +tp88324 +a(g88321 +g88323 +S'heated' +p88325 +tp88326 +a(g88323 +g88325 +S'at' +p88327 +tp88328 +a(g88325 +g88327 +S'the' +p88329 +tp88330 +a(g88327 +g88329 +S'forge' +p88331 +tp88332 +a(g88329 +g88331 +S'until' +p88333 +tp88334 +a(g88331 +g88333 +S'they' +p88335 +tp88336 +a(g88333 +g88335 +S'were' +p88337 +tp88338 +a(g88335 +g88337 +S'malleable.' +p88339 +tp88340 +a(g88337 +g88339 +S'then,' +p88341 +tp88342 +a(g88339 +g88341 +S'with' +p88343 +tp88344 +a(g88341 +g88343 +S'swift' +p88345 +tp88346 +a(g88343 +g88345 +S'strokes,' +p88347 +tp88348 +a(g88345 +g88347 +S'the' +p88349 +tp88350 +a(g88347 +g88349 +S'blacksmith' +p88351 +tp88352 +a(g88349 +g88351 +S'hammered' +p88353 +tp88354 +a(g88351 +g88353 +S'the' +p88355 +tp88356 +a(g88353 +g88355 +S'hot' +p88357 +tp88358 +a(g88355 +g88357 +S'iron' +p88359 +tp88360 +a(g88357 +g88359 +S'into' +p88361 +tp88362 +a(g88359 +g88361 +S'the' +p88363 +tp88364 +a(g88361 +g88363 +S'desired' +p88365 +tp88366 +a(g88363 +g88365 +S'shape.' +p88367 +tp88368 +a(g88365 +g88367 +S'this' +p88369 +tp88370 +a(g88367 +g88369 +S'door' +p88371 +tp88372 +a(g88369 +g88371 +S'latch' +p88373 +tp88374 +a(g88371 +g88373 +S'is' +p88375 +tp88376 +a(g88373 +g88375 +S'just' +p88377 +tp88378 +a(g88375 +g88377 +S'one' +p88379 +tp88380 +a(g88377 +g88379 +S'example' +p88381 +tp88382 +a(g88379 +g88381 +S'of' +p88383 +tp88384 +a(g88381 +g88383 +S'the' +p88385 +tp88386 +a(g88383 +g88385 +S"blacksmith's" +p88387 +tp88388 +a(g88385 +g88387 +S'craft.' +p88389 +tp88390 +a(g88387 +g88389 +S'made' +p88391 +tp88392 +a(g88389 +g88391 +S'by' +p88393 +tp88394 +a(g88391 +g88393 +S'a' +p88395 +tp88396 +a(g88393 +g88395 +S'pennsylvania' +p88397 +tp88398 +a(g88395 +g88397 +S'german,' +p88399 +tp88400 +a(g88397 +g88399 +S'it' +p88401 +tp88402 +a(g88399 +g88401 +S'is' +p88403 +tp88404 +a(g88401 +g88403 +S'called' +p88405 +tp88406 +a(g88403 +g88405 +S'a' +p88407 +tp88408 +a(g88405 +g88407 +S'"suffolk"' +p88409 +tp88410 +a(g88407 +g88409 +S'latch,' +p88411 +tp88412 +a(g88409 +g88411 +S'a' +p88413 +tp88414 +a(g88411 +g88413 +S'style' +p88415 +tp88416 +a(g88413 +g88415 +S'in' +p88417 +tp88418 +a(g88415 +g88417 +S'which' +p88419 +tp88420 +a(g88417 +g88419 +S'the' +p88421 +tp88422 +a(g88419 +g88421 +S'upper' +p88423 +tp88424 +a(g88421 +g88423 +S'and' +p88425 +tp88426 +a(g88423 +g88425 +S'lower' +p88427 +tp88428 +a(g88425 +g88427 +S'cusps,' +p88429 +tp88430 +a(g88427 +g88429 +S'or' +p88431 +tp88432 +a(g88429 +g88431 +S'plates,' +p88433 +tp88434 +a(g88431 +g88433 +S'are' +p88435 +tp88436 +a(g88433 +g88435 +S'joined' +p88437 +tp88438 +a(g88435 +g88437 +S'by' +p88439 +tp88440 +a(g88437 +g88439 +S'a' +p88441 +tp88442 +a(g88439 +g88441 +S'central' +p88443 +tp88444 +a(g88441 +g88443 +S'handle.' +p88445 +tp88446 +a(g88443 +g88445 +S'the' +p88447 +tp88448 +a(g88445 +g88447 +S'thumb-press' +p88449 +tp88450 +a(g88447 +g88449 +S'extending' +p88451 +tp88452 +a(g88449 +g88451 +S'through' +p88453 +tp88454 +a(g88451 +g88453 +S'a' +p88455 +tp88456 +a(g88453 +g88455 +S'hole' +p88457 +tp88458 +a(g88455 +g88457 +S'in' +p88459 +tp88460 +a(g88457 +g88459 +S'the' +p88461 +tp88462 +a(g88459 +g88461 +S'upper' +p88463 +tp88464 +a(g88461 +g88463 +S'cusp' +p88465 +tp88466 +a(g88463 +g88465 +S'attaches' +p88467 +tp88468 +a(g88465 +g88467 +S'to' +p88469 +tp88470 +a(g88467 +g88469 +S'the' +p88471 +tp88472 +a(g88469 +g88471 +S'locking' +p88473 +tp88474 +a(g88471 +g88473 +S'mechanism' +p88475 +tp88476 +a(g88473 +g88475 +S'on' +p88477 +tp88478 +a(g88475 +g88477 +S'the' +p88479 +tp88480 +a(g88477 +g88479 +S'back' +p88481 +tp88482 +a(g88479 +g88481 +S'of' +p88483 +tp88484 +a(g88481 +g88483 +S'the' +p88485 +tp88486 +a(g88483 +g88485 +S'door.' +p88487 +tp88488 +a(g88485 +g88487 +S'the' +p88489 +tp88490 +a(g88487 +g88489 +S'cusps' +p88491 +tp88492 +a(g88489 +g88491 +S'are' +p88493 +tp88494 +a(g88491 +g88493 +S'formed' +p88495 +tp88496 +a(g88493 +g88495 +S'in' +p88497 +tp88498 +a(g88495 +g88497 +S'an' +p88499 +tp88500 +a(g88497 +g88499 +S'arrowhead' +p88501 +tp88502 +a(g88499 +g88501 +S'design' +p88503 +tp88504 +a(g88501 +g88503 +S'and' +p88505 +tp88506 +a(g88503 +g88505 +S'embellished' +p88507 +tp88508 +a(g88505 +g88507 +S'with' +p88509 +tp88510 +a(g88507 +g88509 +S'curved' +p88511 +tp88512 +a(g88509 +g88511 +S'points.' +p88513 +tp88514 +a(g88511 +g88513 +S'a' +p88515 +tp88516 +a(g88513 +g88515 +S'desire' +p88517 +tp88518 +a(g88515 +g88517 +S'for' +p88519 +tp88520 +a(g88517 +g88519 +S'the' +p88521 +tp88522 +a(g88519 +g88521 +S'elaboration' +p88523 +tp88524 +a(g88521 +g88523 +S'of' +p88525 +tp88526 +a(g88523 +g88525 +S'simple,' +p88527 +tp88528 +a(g88525 +g88527 +S'everyday' +p88529 +tp88530 +a(g88527 +g88529 +S'objects' +p88531 +tp88532 +a(g88529 +g88531 +S'was' +p88533 +tp88534 +a(g88531 +g88533 +S'common' +p88535 +tp88536 +a(g88533 +g88535 +S'to' +p88537 +tp88538 +a(g88535 +g88537 +S'the' +p88539 +tp88540 +a(g88537 +g88539 +S'german' +p88541 +tp88542 +a(g88539 +g88541 +S'population' +p88543 +tp88544 +a(g88541 +g88543 +S'of' +p88545 +tp88546 +a(g88543 +g88545 +S'pennsylvania' +p88547 +tp88548 +a(g88545 +g88547 +S'as' +p88549 +tp88550 +a(g88547 +g88549 +S'an' +p88551 +tp88552 +a(g88549 +g88551 +S'extension' +p88553 +tp88554 +a(g88551 +g88553 +S'of' +p88555 +tp88556 +a(g88553 +g88555 +S'their' +p88557 +tp88558 +a(g88555 +g88557 +S'european' +p88559 +tp88560 +a(g88557 +g88559 +S'design' +p88561 +tp88562 +a(g88559 +g88561 +S'traditions.' +p88563 +tp88564 +a(g88561 +g88563 +S'toleware' +p88565 +tp88566 +a(g88563 +g88565 +S'is' +p88567 +tp88568 +a(g88565 +g88567 +S'painted' +p88569 +tp88570 +a(g88567 +g88569 +S'tinplate.' +p88571 +tp88572 +a(g88569 +g88571 +S'also' +p88573 +tp88574 +a(g88571 +g88573 +S'called' +p88575 +tp88576 +a(g88573 +g88575 +S'"japanned-ware,"' +p88577 +tp88578 +a(g88575 +g88577 +S'it' +p88579 +tp88580 +a(g88577 +g88579 +S'originated' +p88581 +tp88582 +a(g88579 +g88581 +S'in' +p88583 +tp88584 +a(g88581 +g88583 +S'the' +p88585 +tp88586 +a(g88583 +g88585 +S'orient,' +p88587 +tp88588 +a(g88585 +g88587 +S'spread' +p88589 +tp88590 +a(g88587 +g88589 +S'to' +p88591 +tp88592 +a(g88589 +g88591 +S'europe' +p88593 +tp88594 +a(g88591 +g88593 +S'and' +p88595 +tp88596 +a(g88593 +g88595 +S'then' +p88597 +tp88598 +a(g88595 +g88597 +S'to' +p88599 +tp88600 +a(g88597 +g88599 +S'america' +p88601 +tp88602 +a(g88599 +g88601 +S'where' +p88603 +tp88604 +a(g88601 +g88603 +S'it' +p88605 +tp88606 +a(g88603 +g88605 +S'reached' +p88607 +tp88608 +a(g88605 +g88607 +S'a' +p88609 +tp88610 +a(g88607 +g88609 +S'height' +p88611 +tp88612 +a(g88609 +g88611 +S'of' +p88613 +tp88614 +a(g88611 +g88613 +S'popularity' +p88615 +tp88616 +a(g88613 +g88615 +S'in' +p88617 +tp88618 +a(g88615 +g88617 +S'the' +p88619 +tp88620 +a(g88617 +g88619 +S'nineteenth' +p88621 +tp88622 +a(g88619 +g88621 +S'century.' +p88623 +tp88624 +a(g88621 +g88623 +S'because' +p88625 +tp88626 +a(g88623 +g88625 +S'toleware' +p88627 +tp88628 +a(g88625 +g88627 +S'was' +p88629 +tp88630 +a(g88627 +g88629 +S'prized' +p88631 +tp88632 +a(g88629 +g88631 +S'for' +p88633 +tp88634 +a(g88631 +g88633 +S'its' +p88635 +tp88636 +a(g88633 +g88635 +S'decoration,' +p88637 +tp88638 +a(g88635 +g88637 +S'it' +p88639 +tp88640 +a(g88637 +g88639 +S'was' +p88641 +tp88642 +a(g88639 +g88641 +S'often' +p88643 +tp88644 +a(g88641 +g88643 +S'presented' +p88645 +tp88646 +a(g88643 +g88645 +S'as' +p88647 +tp88648 +a(g88645 +g88647 +S'a' +p88649 +tp88650 +a(g88647 +g88649 +S'wedding' +p88651 +tp88652 +a(g88649 +g88651 +S'or' +p88653 +tp88654 +a(g88651 +g88653 +S'birthday' +p88655 +tp88656 +a(g88653 +g88655 +S'gift' +p88657 +tp88658 +a(g88655 +g88657 +S'and' +p88659 +tp88660 +a(g88657 +g88659 +S'reserved' +p88661 +tp88662 +a(g88659 +g88661 +S'for' +p88663 +tp88664 +a(g88661 +g88663 +S'display.' +p88665 +tp88666 +a(g88663 +g88665 +S'like' +p88667 +tp88668 +a(g88665 +g88667 +S'this' +p88669 +tp88670 +a(g88667 +g88669 +S'coffeepot,' +p88671 +tp88672 +a(g88669 +g88671 +S'toleware' +p88673 +tp88674 +a(g88671 +g88673 +S'was' +p88675 +tp88676 +a(g88673 +g88675 +S'generally' +p88677 +tp88678 +a(g88675 +g88677 +S'painted' +p88679 +tp88680 +a(g88677 +g88679 +S'with' +p88681 +tp88682 +a(g88679 +g88681 +S'a' +p88683 +tp88684 +a(g88681 +g88683 +S'black' +p88685 +tp88686 +a(g88683 +g88685 +S'asphaltum' +p88687 +tp88688 +a(g88685 +g88687 +S'varnish' +p88689 +tp88690 +a(g88687 +g88689 +S'that' +p88691 +tp88692 +a(g88689 +g88691 +S'imitated' +p88693 +tp88694 +a(g88691 +g88693 +S'lacquer.' +p88695 +tp88696 +a(g88693 +g88695 +S'the' +p88697 +tp88698 +a(g88695 +g88697 +S'decoration' +p88699 +tp88700 +a(g88697 +g88699 +S'was' +p88701 +tp88702 +a(g88699 +g88701 +S'executed' +p88703 +tp88704 +a(g88701 +g88703 +S'with' +p88705 +tp88706 +a(g88703 +g88705 +S'oil' +p88707 +tp88708 +a(g88705 +g88707 +S'paint' +p88709 +tp88710 +a(g88707 +g88709 +S'in' +p88711 +tp88712 +a(g88709 +g88711 +S'bright' +p88713 +tp88714 +a(g88711 +g88713 +S'yellows,' +p88715 +tp88716 +a(g88713 +g88715 +S'greens,' +p88717 +tp88718 +a(g88715 +g88717 +S'blues,' +p88719 +tp88720 +a(g88717 +g88719 +S'and' +p88721 +tp88722 +a(g88719 +g88721 +S'chinese' +p88723 +tp88724 +a(g88721 +g88723 +S'vermilion.' +p88725 +tp88726 +a(g88723 +g88725 +S'fruits,' +p88727 +tp88728 +a(g88725 +g88727 +S'flowers,' +p88729 +tp88730 +a(g88727 +g88729 +S'and' +p88731 +tp88732 +a(g88729 +g88731 +S'ornamental' +p88733 +tp88734 +a(g88731 +g88733 +S'swirls' +p88735 +tp88736 +a(g88733 +g88735 +S'were' +p88737 +tp88738 +a(g88735 +g88737 +S'common' +p88739 +tp88740 +a(g88737 +g88739 +S'motifs.' +p88741 +tp88742 +a(g88739 +g88741 +S'although' +p88743 +tp88744 +a(g88741 +g88743 +S'toleware' +p88745 +tp88746 +a(g88743 +g88745 +S'was' +p88747 +tp88748 +a(g88745 +g88747 +S'made' +p88749 +tp88750 +a(g88747 +g88749 +S'in' +p88751 +tp88752 +a(g88749 +g88751 +S'several' +p88753 +tp88754 +a(g88751 +g88753 +S'new' +p88755 +tp88756 +a(g88753 +g88755 +S'england' +p88757 +tp88758 +a(g88755 +g88757 +S'states' +p88759 +tp88760 +a(g88757 +g88759 +S'as' +p88761 +tp88762 +a(g88759 +g88761 +S'well' +p88763 +tp88764 +a(g88761 +g88763 +S'as' +p88765 +tp88766 +a(g88763 +g88765 +S'in' +p88767 +tp88768 +a(g88765 +g88767 +S'pennsylvania,' +p88769 +tp88770 +a(g88767 +g88769 +S'the' +p88771 +tp88772 +a(g88769 +g88771 +S'bold' +p88773 +tp88774 +a(g88771 +g88773 +S'colors' +p88775 +tp88776 +a(g88773 +g88775 +S'mark' +p88777 +tp88778 +a(g88775 +g88777 +S'this' +p88779 +tp88780 +a(g88777 +g88779 +S'pieces' +p88781 +tp88782 +a(g88779 +g88781 +S'as' +p88783 +tp88784 +a(g88781 +g88783 +S'pennsylvania' +p88785 +tp88786 +a(g88783 +g88785 +S'german.' +p88787 +tp88788 +a(g88785 +g88787 +S'iron' +p88789 +tp88790 +a(g88787 +g88789 +S'plantations,' +p88791 +tp88792 +a(g88789 +g88791 +S'and' +p88793 +tp88794 +a(g88791 +g88793 +S'later' +p88795 +tp88796 +a(g88793 +g88795 +S'foundries,' +p88797 +tp88798 +a(g88795 +g88797 +S'established' +p88799 +tp88800 +a(g88797 +g88799 +S'great' +p88801 +tp88802 +a(g88799 +g88801 +S'furnaces' +p88803 +tp88804 +a(g88801 +g88803 +S'for' +p88805 +tp88806 +a(g88803 +g88805 +S'casting' +p88807 +tp88808 +a(g88805 +g88807 +S'iron' +p88809 +tp88810 +a(g88807 +g88809 +S'products.' +p88811 +tp88812 +a(g88809 +g88811 +S'the' +p88813 +tp88814 +a(g88811 +g88813 +S'casting' +p88815 +tp88816 +a(g88813 +g88815 +S'process' +p88817 +tp88818 +a(g88815 +g88817 +S'included' +p88819 +tp88820 +a(g88817 +g88819 +S'carving' +p88821 +tp88822 +a(g88819 +g88821 +S'a' +p88823 +tp88824 +a(g88821 +g88823 +S'wooden' +p88825 +tp88826 +a(g88823 +g88825 +S'model' +p88827 +tp88828 +a(g88825 +g88827 +S'of' +p88829 +tp88830 +a(g88827 +g88829 +S'the' +p88831 +tp88832 +a(g88829 +g88831 +S'object' +p88833 +tp88834 +a(g88831 +g88833 +S'to' +p88835 +tp88836 +a(g88833 +g88835 +S'be' +p88837 +tp88838 +a(g88835 +g88837 +S'cast.' +p88839 +tp88840 +a(g88837 +g88839 +S'the' +p88841 +tp88842 +a(g88839 +g88841 +S'wooden' +p88843 +tp88844 +a(g88841 +g88843 +S'pattern' +p88845 +tp88846 +a(g88843 +g88845 +S'was' +p88847 +tp88848 +a(g88845 +g88847 +S'then' +p88849 +tp88850 +a(g88847 +g88849 +S'pressed' +p88851 +tp88852 +a(g88849 +g88851 +S'into' +p88853 +tp88854 +a(g88851 +g88853 +S'a' +p88855 +tp88856 +a(g88853 +g88855 +S'bed' +p88857 +tp88858 +a(g88855 +g88857 +S'of' +p88859 +tp88860 +a(g88857 +g88859 +S'sand' +p88861 +tp88862 +a(g88859 +g88861 +S'so' +p88863 +tp88864 +a(g88861 +g88863 +S'that' +p88865 +tp88866 +a(g88863 +g88865 +S'a' +p88867 +tp88868 +a(g88865 +g88867 +S'relief' +p88869 +tp88870 +a(g88867 +g88869 +S'of' +p88871 +tp88872 +a(g88869 +g88871 +S'the' +p88873 +tp88874 +a(g88871 +g88873 +S'form' +p88875 +tp88876 +a(g88873 +g88875 +S'remained.' +p88877 +tp88878 +a(g88875 +g88877 +S'molten' +p88879 +tp88880 +a(g88877 +g88879 +S'iron,' +p88881 +tp88882 +a(g88879 +g88881 +S'poured' +p88883 +tp88884 +a(g88881 +g88883 +S'into' +p88885 +tp88886 +a(g88883 +g88885 +S'the' +p88887 +tp88888 +a(g88885 +g88887 +S'sand' +p88889 +tp88890 +a(g88887 +g88889 +S'mold' +p88891 +tp88892 +a(g88889 +g88891 +S'and' +p88893 +tp88894 +a(g88891 +g88893 +S'allowed' +p88895 +tp88896 +a(g88893 +g88895 +S'to' +p88897 +tp88898 +a(g88895 +g88897 +S'cool,' +p88899 +tp88900 +a(g88897 +g88899 +S'resulted' +p88901 +tp88902 +a(g88899 +g88901 +S'in' +p88903 +tp88904 +a(g88901 +g88903 +S'the' +p88905 +tp88906 +a(g88903 +g88905 +S'cast' +p88907 +tp88908 +a(g88905 +g88907 +S'iron' +p88909 +tp88910 +a(g88907 +g88909 +S'product.' +p88911 +tp88912 +a(g88909 +g88911 +S'the' +p88913 +tp88914 +a(g88911 +g88913 +S'stove' +p88915 +tp88916 +a(g88913 +g88915 +S'plate' +p88917 +tp88918 +a(g88915 +g88917 +S'shown' +p88919 +tp88920 +a(g88917 +g88919 +S'here' +p88921 +tp88922 +a(g88919 +g88921 +S'was' +p88923 +tp88924 +a(g88921 +g88923 +S'produced' +p88925 +tp88926 +a(g88923 +g88925 +S'in' +p88927 +tp88928 +a(g88925 +g88927 +S'this' +p88929 +tp88930 +a(g88927 +g88929 +S'manner.' +p88931 +tp88932 +a(g88929 +g88931 +S'the' +p88933 +tp88934 +a(g88931 +g88933 +S'five-plate,' +p88935 +tp88936 +a(g88933 +g88935 +S'or' +p88937 +tp88938 +a(g88935 +g88937 +S'jamb,' +p88939 +tp88940 +a(g88937 +g88939 +S'stove' +p88941 +tp88942 +a(g88939 +g88941 +S'was' +p88943 +tp88944 +a(g88941 +g88943 +S'introduced' +p88945 +tp88946 +a(g88943 +g88945 +S'by' +p88947 +tp88948 +a(g88945 +g88947 +S'german' +p88949 +tp88950 +a(g88947 +g88949 +S'immigrants' +p88951 +tp88952 +a(g88949 +g88951 +S'in' +p88953 +tp88954 +a(g88951 +g88953 +S'the' +p88955 +tp88956 +a(g88953 +g88955 +S'late' +p88957 +tp88958 +a(g88955 +g88957 +S'eighteenth' +p88959 +tp88960 +a(g88957 +g88959 +S'century.' +p88961 +tp88962 +a(g88959 +g88961 +S'it' +p88963 +tp88964 +a(g88961 +g88963 +S'was' +p88965 +tp88966 +a(g88963 +g88965 +S'cube-shaped' +p88967 +tp88968 +a(g88965 +g88967 +S'with' +p88969 +tp88970 +a(g88967 +g88969 +S'five' +p88971 +tp88972 +a(g88969 +g88971 +S'sides,' +p88973 +tp88974 +a(g88971 +g88973 +S'or' +p88975 +tp88976 +a(g88973 +g88975 +S'plates,' +p88977 +tp88978 +a(g88975 +g88977 +S'of' +p88979 +tp88980 +a(g88977 +g88979 +S'cast' +p88981 +tp88982 +a(g88979 +g88981 +S'iron' +p88983 +tp88984 +a(g88981 +g88983 +S'and' +p88985 +tp88986 +a(g88983 +g88985 +S'the' +p88987 +tp88988 +a(g88985 +g88987 +S'sixth' +p88989 +tp88990 +a(g88987 +g88989 +S'side' +p88991 +tp88992 +a(g88989 +g88991 +S'opening' +p88993 +tp88994 +a(g88991 +g88993 +S'into' +p88995 +tp88996 +a(g88993 +g88995 +S'the' +p88997 +tp88998 +a(g88995 +g88997 +S'wall.' +p88999 +tp89000 +a(g88997 +g88999 +S'this' +p89001 +tp89002 +a(g88999 +g89001 +S'stove' +p89003 +tp89004 +a(g89001 +g89003 +S'plate' +p89005 +tp89006 +a(g89003 +g89005 +S'is' +p89007 +tp89008 +a(g89005 +g89007 +S'pennsylvania' +p89009 +tp89010 +a(g89007 +g89009 +S'german.' +p89011 +tp89012 +a(g89009 +g89011 +S'dated' +p89013 +tp89014 +a(g89011 +g89013 +S'1763,' +p89015 +tp89016 +a(g89013 +g89015 +S'it' +p89017 +tp89018 +a(g89015 +g89017 +S'was' +p89019 +tp89020 +a(g89017 +g89019 +S'made' +p89021 +tp89022 +a(g89019 +g89021 +S'at' +p89023 +tp89024 +a(g89021 +g89023 +S'the' +p89025 +tp89026 +a(g89023 +g89025 +S'furnace' +p89027 +tp89028 +a(g89025 +g89027 +S'of' +p89029 +tp89030 +a(g89027 +g89029 +S'george' +p89031 +tp89032 +a(g89029 +g89031 +S'stevenson' +p89033 +tp89034 +a(g89031 +g89033 +S'whose' +p89035 +tp89036 +a(g89033 +g89035 +S'name' +p89037 +tp89038 +a(g89035 +g89037 +S'appears' +p89039 +tp89040 +a(g89037 +g89039 +S'on' +p89041 +tp89042 +a(g89039 +g89041 +S'its' +p89043 +tp89044 +a(g89041 +g89043 +S'face.' +p89045 +tp89046 +a(g89043 +g89045 +S'the' +p89047 +tp89048 +a(g89045 +g89047 +S'flowers' +p89049 +tp89050 +a(g89047 +g89049 +S'and' +p89051 +tp89052 +a(g89049 +g89051 +S'heart' +p89053 +tp89054 +a(g89051 +g89053 +S'are' +p89055 +tp89056 +a(g89053 +g89055 +S'typical' +p89057 +tp89058 +a(g89055 +g89057 +S'of' +p89059 +tp89060 +a(g89057 +g89059 +S'pennsylvania' +p89061 +tp89062 +a(g89059 +g89061 +S'german' +p89063 +tp89064 +a(g89061 +g89063 +S'decoration.' +p89065 +tp89066 +a(g89063 +g89065 +S'an' +p89067 +tp89068 +a(g89065 +g89067 +S'architectural' +p89069 +tp89070 +a(g89067 +g89069 +S'motif' +p89071 +tp89072 +a(g89069 +g89071 +S'of' +p89073 +tp89074 +a(g89071 +g89073 +S'twisted' +p89075 +tp89076 +a(g89073 +g89075 +S'columns' +p89077 +tp89078 +a(g89075 +g89077 +S'and' +p89079 +tp89080 +a(g89077 +g89079 +S'arches' +p89081 +tp89082 +a(g89079 +g89081 +S'divides' +p89083 +tp89084 +a(g89081 +g89083 +S'the' +p89085 +tp89086 +a(g89083 +g89085 +S'space' +p89087 +tp89088 +a(g89085 +g89087 +S'into' +p89089 +tp89090 +a(g89087 +g89089 +S'areas' +p89091 +tp89092 +a(g89089 +g89091 +S'which' +p89093 +tp89094 +a(g89091 +g89093 +S'frame' +p89095 +tp89096 +a(g89093 +g89095 +S'tulips' +p89097 +tp89098 +a(g89095 +g89097 +S'and' +p89099 +tp89100 +a(g89097 +g89099 +S'a' +p89101 +tp89102 +a(g89099 +g89101 +S'heart.' +p89103 +tp89104 +a(g89101 +g89103 +S'this' +p89105 +tp89106 +a(g89103 +g89105 +S'polychrome' +p89107 +tp89108 +a(g89105 +g89107 +S'bird' +p89109 +tp89110 +a(g89107 +g89109 +S'resembles' +p89111 +tp89112 +a(g89109 +g89111 +S'a' +p89113 +tp89114 +a(g89111 +g89113 +S'parrot.' +p89115 +tp89116 +a(g89113 +g89115 +S'in' +p89117 +tp89118 +a(g89115 +g89117 +S'contrast' +p89119 +tp89120 +a(g89117 +g89119 +S'to' +p89121 +tp89122 +a(g89119 +g89121 +S'the' +p89123 +tp89124 +a(g89121 +g89123 +S'naturalistic' +p89125 +tp89126 +a(g89123 +g89125 +S'detail' +p89127 +tp89128 +a(g89125 +g89127 +S'of' +p89129 +tp89130 +a(g89127 +g89129 +S'the' +p89131 +tp89132 +a(g89129 +g89131 +S'owl,' +p89133 +tp89134 +a(g89131 +g89133 +S'the' +p89135 +tp89136 +a(g89133 +g89135 +S'parrot' +p89137 +tp89138 +a(g89135 +g89137 +S'is' +p89139 +tp89140 +a(g89137 +g89139 +S'smoothly' +p89141 +tp89142 +a(g89139 +g89141 +S'stylized' +p89143 +tp89144 +a(g89141 +g89143 +S'and' +p89145 +tp89146 +a(g89143 +g89145 +S'painted' +p89147 +tp89148 +a(g89145 +g89147 +S'in' +p89149 +tp89150 +a(g89147 +g89149 +S'the' +p89151 +tp89152 +a(g89149 +g89151 +S'bright' +p89153 +tp89154 +a(g89151 +g89153 +S'colors' +p89155 +tp89156 +a(g89153 +g89155 +S'typical' +p89157 +tp89158 +a(g89155 +g89157 +S'of' +p89159 +tp89160 +a(g89157 +g89159 +S'pennsylvania' +p89161 +tp89162 +a(g89159 +g89161 +S'german' +p89163 +tp89164 +a(g89161 +g89163 +S'decoration.' +p89165 +tp89166 +a(g89163 +g89165 +S'because' +p89167 +tp89168 +a(g89165 +g89167 +S'thin' +p89169 +tp89170 +a(g89167 +g89169 +S'wooden' +p89171 +tp89172 +a(g89169 +g89171 +S'legs' +p89173 +tp89174 +a(g89171 +g89173 +S'could' +p89175 +tp89176 +a(g89173 +g89175 +S'easily' +p89177 +tp89178 +a(g89175 +g89177 +S'break,' +p89179 +tp89180 +a(g89177 +g89179 +S'the' +p89181 +tp89182 +a(g89179 +g89181 +S'carver' +p89183 +tp89184 +a(g89181 +g89183 +S'has' +p89185 +tp89186 +a(g89183 +g89185 +S'ingeniously' +p89187 +tp89188 +a(g89185 +g89187 +S'substituted' +p89189 +tp89190 +a(g89187 +g89189 +S'wire' +p89191 +tp89192 +a(g89189 +g89191 +S'to' +p89193 +tp89194 +a(g89191 +g89193 +S'mount' +p89195 +tp89196 +a(g89193 +g89195 +S'the' +p89197 +tp89198 +a(g89195 +g89197 +S'bird' +p89199 +tp89200 +a(g89197 +g89199 +S'on' +p89201 +tp89202 +a(g89199 +g89201 +S'the' +p89203 +tp89204 +a(g89201 +g89203 +S'sawed-off' +p89205 +tp89206 +a(g89203 +g89205 +S'finial' +p89207 +tp89208 +a(g89205 +g89207 +S'of' +p89209 +tp89210 +a(g89207 +g89209 +S'a' +p89211 +tp89212 +a(g89209 +g89211 +S'bedpost.' +p89213 +tp89214 +a(g89211 +g89213 +S'built-in' +p89215 +tp89216 +a(g89213 +g89215 +S'cabinets' +p89217 +tp89218 +a(g89215 +g89217 +S'were' +p89219 +tp89220 +a(g89217 +g89219 +S'a' +p89221 +tp89222 +a(g89219 +g89221 +S'standard' +p89223 +tp89224 +a(g89221 +g89223 +S'feature' +p89225 +tp89226 +a(g89223 +g89225 +S'of' +p89227 +tp89228 +a(g89225 +g89227 +S'most' +p89229 +tp89230 +a(g89227 +g89229 +S'shaker' +p89231 +tp89232 +a(g89229 +g89231 +S'rooms.' +p89233 +tp89234 +a(g89231 +g89233 +S'by' +p89235 +tp89236 +a(g89233 +g89235 +S'building' +p89237 +tp89238 +a(g89235 +g89237 +S'in' +p89239 +tp89240 +a(g89237 +g89239 +S'drawers' +p89241 +tp89242 +a(g89239 +g89241 +S'and' +p89243 +tp89244 +a(g89241 +g89243 +S'cupboards,' +p89245 +tp89246 +a(g89243 +g89245 +S'greater' +p89247 +tp89248 +a(g89245 +g89247 +S'efficiency' +p89249 +tp89250 +a(g89247 +g89249 +S'was' +p89251 +tp89252 +a(g89249 +g89251 +S'achieved' +p89253 +tp89254 +a(g89251 +g89253 +S'in' +p89255 +tp89256 +a(g89253 +g89255 +S'utilizing' +p89257 +tp89258 +a(g89255 +g89257 +S'available' +p89259 +tp89260 +a(g89257 +g89259 +S'space.' +p89261 +tp89262 +a(g89259 +g89261 +S'often,' +p89263 +tp89264 +a(g89261 +g89263 +S'built-in' +p89265 +tp89266 +a(g89263 +g89265 +S'cabinets' +p89267 +tp89268 +a(g89265 +g89267 +S'were' +p89269 +tp89270 +a(g89267 +g89269 +S'stained,' +p89271 +tp89272 +a(g89269 +g89271 +S'like' +p89273 +tp89274 +a(g89271 +g89273 +S'these,' +p89275 +tp89276 +a(g89273 +g89275 +S'to' +p89277 +tp89278 +a(g89275 +g89277 +S'provide' +p89279 +tp89280 +a(g89277 +g89279 +S'a' +p89281 +tp89282 +a(g89279 +g89281 +S'contrasting' +p89283 +tp89284 +a(g89281 +g89283 +S'color' +p89285 +tp89286 +a(g89283 +g89285 +S'scheme.' +p89287 +tp89288 +a(g89285 +g89287 +S'the' +p89289 +tp89290 +a(g89287 +g89289 +S'knobs,' +p89291 +tp89292 +a(g89289 +g89291 +S'stained' +p89293 +tp89294 +a(g89291 +g89293 +S'darker' +p89295 +tp89296 +a(g89293 +g89295 +S'than' +p89297 +tp89298 +a(g89295 +g89297 +S'the' +p89299 +tp89300 +a(g89297 +g89299 +S'cabinets,' +p89301 +tp89302 +a(g89299 +g89301 +S'furnish' +p89303 +tp89304 +a(g89301 +g89303 +S'an' +p89305 +tp89306 +a(g89303 +g89305 +S'interesting' +p89307 +tp89308 +a(g89305 +g89307 +S'visual' +p89309 +tp89310 +a(g89307 +g89309 +S'pattern.' +p89311 +tp89312 +a(g89309 +g89311 +S'rows' +p89313 +tp89314 +a(g89311 +g89313 +S'of' +p89315 +tp89316 +a(g89313 +g89315 +S'pegs' +p89317 +tp89318 +a(g89315 +g89317 +S'lining' +p89319 +tp89320 +a(g89317 +g89319 +S'the' +p89321 +tp89322 +a(g89319 +g89321 +S'walls' +p89323 +tp89324 +a(g89321 +g89323 +S'were' +p89325 +tp89326 +a(g89323 +g89325 +S'another' +p89327 +tp89328 +a(g89325 +g89327 +S'standard' +p89329 +tp89330 +a(g89327 +g89329 +S'element' +p89331 +tp89332 +a(g89329 +g89331 +S'of' +p89333 +tp89334 +a(g89331 +g89333 +S'interior' +p89335 +tp89336 +a(g89333 +g89335 +S'design.' +p89337 +tp89338 +a(g89335 +g89337 +S'used' +p89339 +tp89340 +a(g89337 +g89339 +S'for' +p89341 +tp89342 +a(g89339 +g89341 +S'hanging' +p89343 +tp89344 +a(g89341 +g89343 +S'items' +p89345 +tp89346 +a(g89343 +g89345 +S'such' +p89347 +tp89348 +a(g89345 +g89347 +S'as' +p89349 +tp89350 +a(g89347 +g89349 +S'chairs' +p89351 +tp89352 +a(g89349 +g89351 +S'in' +p89353 +tp89354 +a(g89351 +g89353 +S'addition' +p89355 +tp89356 +a(g89353 +g89355 +S'to' +p89357 +tp89358 +a(g89355 +g89357 +S'coats' +p89359 +tp89360 +a(g89357 +g89359 +S'and' +p89361 +tp89362 +a(g89359 +g89361 +S'hats,' +p89363 +tp89364 +a(g89361 +g89363 +S'pegs' +p89365 +tp89366 +a(g89363 +g89365 +S'served' +p89367 +tp89368 +a(g89365 +g89367 +S'to' +p89369 +tp89370 +a(g89367 +g89369 +S'keep' +p89371 +tp89372 +a(g89369 +g89371 +S'a' +p89373 +tp89374 +a(g89371 +g89373 +S'variety' +p89375 +tp89376 +a(g89373 +g89375 +S'of' +p89377 +tp89378 +a(g89375 +g89377 +S'things' +p89379 +tp89380 +a(g89377 +g89379 +S'neatly' +p89381 +tp89382 +a(g89379 +g89381 +S'out' +p89383 +tp89384 +a(g89381 +g89383 +S'of' +p89385 +tp89386 +a(g89383 +g89385 +S'the' +p89387 +tp89388 +a(g89385 +g89387 +S'way.' +p89389 +tp89390 +a(g89387 +g89389 +S'this' +p89391 +tp89392 +a(g89389 +g89391 +S'goat' +p89393 +tp89394 +a(g89391 +g89393 +S'once' +p89395 +tp89396 +a(g89393 +g89395 +S'graced' +p89397 +tp89398 +a(g89395 +g89397 +S'the' +p89399 +tp89400 +a(g89397 +g89399 +S'island' +p89401 +tp89402 +a(g89399 +g89401 +S'park' +p89403 +tp89404 +a(g89401 +g89403 +S'carousel' +p89405 +tp89406 +a(g89403 +g89405 +S'in' +p89407 +tp89408 +a(g89405 +g89407 +S'portsmouth,' +p89409 +tp89410 +a(g89407 +g89409 +S'rhode' +p89411 +tp89412 +a(g89409 +g89411 +S'island,' +p89413 +tp89414 +a(g89411 +g89413 +S'which' +p89415 +tp89416 +a(g89413 +g89415 +S'opened' +p89417 +tp89418 +a(g89415 +g89417 +S'in' +p89419 +tp89420 +a(g89417 +g89419 +S'1905/1906.' +p89421 +tp89422 +a(g89419 +g89421 +S'the' +p89423 +tp89424 +a(g89421 +g89423 +S'carousel' +p89425 +tp89426 +a(g89423 +g89425 +S'was' +p89427 +tp89428 +a(g89425 +g89427 +S'one' +p89429 +tp89430 +a(g89427 +g89429 +S'of' +p89431 +tp89432 +a(g89429 +g89431 +S'about' +p89433 +tp89434 +a(g89431 +g89433 +S'forty' +p89435 +tp89436 +a(g89433 +g89435 +S'built' +p89437 +tp89438 +a(g89435 +g89437 +S'by' +p89439 +tp89440 +a(g89437 +g89439 +S'the' +p89441 +tp89442 +a(g89439 +g89441 +S'charles' +p89443 +tp89444 +a(g89441 +g89443 +S'i.d.' +p89445 +tp89446 +a(g89443 +g89445 +S'looff' +p89447 +tp89448 +a(g89445 +g89447 +S'company.' +p89449 +tp89450 +a(g89447 +g89449 +S'looff,' +p89451 +tp89452 +a(g89449 +g89451 +S'a' +p89453 +tp89454 +a(g89451 +g89453 +S'german' +p89455 +tp89456 +a(g89453 +g89455 +S'immigrant,' +p89457 +tp89458 +a(g89455 +g89457 +S'was' +p89459 +tp89460 +a(g89457 +g89459 +S'a' +p89461 +tp89462 +a(g89459 +g89461 +S'skilled' +p89463 +tp89464 +a(g89461 +g89463 +S'artisan' +p89465 +tp89466 +a(g89463 +g89465 +S'and' +p89467 +tp89468 +a(g89465 +g89467 +S'woodcarver.' +p89469 +tp89470 +a(g89467 +g89469 +S'the' +p89471 +tp89472 +a(g89469 +g89471 +S'success' +p89473 +tp89474 +a(g89471 +g89473 +S'of' +p89475 +tp89476 +a(g89473 +g89475 +S'his' +p89477 +tp89478 +a(g89475 +g89477 +S'first' +p89479 +tp89480 +a(g89477 +g89479 +S'carousel,' +p89481 +tp89482 +a(g89479 +g89481 +S'installed' +p89483 +tp89484 +a(g89481 +g89483 +S'in' +p89485 +tp89486 +a(g89483 +g89485 +S'1875' +p89487 +tp89488 +a(g89485 +g89487 +S'at' +p89489 +tp89490 +a(g89487 +g89489 +S'coney' +p89491 +tp89492 +a(g89489 +g89491 +S'island,' +p89493 +tp89494 +a(g89491 +g89493 +S'allowed' +p89495 +tp89496 +a(g89493 +g89495 +S'him' +p89497 +tp89498 +a(g89495 +g89497 +S'to' +p89499 +tp89500 +a(g89497 +g89499 +S'open' +p89501 +tp89502 +a(g89499 +g89501 +S'a' +p89503 +tp89504 +a(g89501 +g89503 +S'factory' +p89505 +tp89506 +a(g89503 +g89505 +S'in' +p89507 +tp89508 +a(g89505 +g89507 +S'brooklyn.' +p89509 +tp89510 +a(g89507 +g89509 +S'soon' +p89511 +tp89512 +a(g89509 +g89511 +S'he' +p89513 +tp89514 +a(g89511 +g89513 +S'had' +p89515 +tp89516 +a(g89513 +g89515 +S'factories' +p89517 +tp89518 +a(g89515 +g89517 +S'in' +p89519 +tp89520 +a(g89517 +g89519 +S'east' +p89521 +tp89522 +a(g89519 +g89521 +S'providence' +p89523 +tp89524 +a(g89521 +g89523 +S'(riverside),' +p89525 +tp89526 +a(g89523 +g89525 +S'rhode' +p89527 +tp89528 +a(g89525 +g89527 +S'island,' +p89529 +tp89530 +a(g89527 +g89529 +S'and' +p89531 +tp89532 +a(g89529 +g89531 +S'long' +p89533 +tp89534 +a(g89531 +g89533 +S'beach,' +p89535 +tp89536 +a(g89533 +g89535 +S'california.' +p89537 +tp89538 +a(g89535 +g89537 +S'looff' +p89539 +tp89540 +a(g89537 +g89539 +S'carved' +p89541 +tp89542 +a(g89539 +g89541 +S'many' +p89543 +tp89544 +a(g89541 +g89543 +S'works' +p89545 +tp89546 +a(g89543 +g89545 +S'himself' +p89547 +tp89548 +a(g89545 +g89547 +S'and,' +p89549 +tp89550 +a(g89547 +g89549 +S'as' +p89551 +tp89552 +a(g89549 +g89551 +S'his' +p89553 +tp89554 +a(g89551 +g89553 +S'business' +p89555 +tp89556 +a(g89553 +g89555 +S'grew,' +p89557 +tp89558 +a(g89555 +g89557 +S'also' +p89559 +tp89560 +a(g89557 +g89559 +S'employed' +p89561 +tp89562 +a(g89559 +g89561 +S'a' +p89563 +tp89564 +a(g89561 +g89563 +S'number' +p89565 +tp89566 +a(g89563 +g89565 +S'of' +p89567 +tp89568 +a(g89565 +g89567 +S'master' +p89569 +tp89570 +a(g89567 +g89569 +S'carvers' +p89571 +tp89572 +a(g89569 +g89571 +S'with' +p89573 +tp89574 +a(g89571 +g89573 +S'their' +p89575 +tp89576 +a(g89573 +g89575 +S'own' +p89577 +tp89578 +a(g89575 +g89577 +S'distinct' +p89579 +tp89580 +a(g89577 +g89579 +S'styles.' +p89581 +tp89582 +a(g89579 +g89581 +S'although' +p89583 +tp89584 +a(g89581 +g89583 +S'the' +p89585 +tp89586 +a(g89583 +g89585 +S'horse' +p89587 +tp89588 +a(g89585 +g89587 +S'was' +p89589 +tp89590 +a(g89587 +g89589 +S'the' +p89591 +tp89592 +a(g89589 +g89591 +S'most' +p89593 +tp89594 +a(g89591 +g89593 +S'popular' +p89595 +tp89596 +a(g89593 +g89595 +S'subject,' +p89597 +tp89598 +a(g89595 +g89597 +S'carousel' +p89599 +tp89600 +a(g89597 +g89599 +S'animals' +p89601 +tp89602 +a(g89599 +g89601 +S'often' +p89603 +tp89604 +a(g89601 +g89603 +S'included' +p89605 +tp89606 +a(g89603 +g89605 +S'dogs,' +p89607 +tp89608 +a(g89605 +g89607 +S'bears,' +p89609 +tp89610 +a(g89607 +g89609 +S'lions,' +p89611 +tp89612 +a(g89609 +g89611 +S'giraffes,' +p89613 +tp89614 +a(g89611 +g89613 +S'roosters,' +p89615 +tp89616 +a(g89613 +g89615 +S'ostriches,' +p89617 +tp89618 +a(g89615 +g89617 +S'and' +p89619 +tp89620 +a(g89617 +g89619 +S'reindeer.' +p89621 +tp89622 +a(g89619 +g89621 +S'this' +p89623 +tp89624 +a(g89621 +g89623 +S'particular' +p89625 +tp89626 +a(g89623 +g89625 +S'goat' +p89627 +tp89628 +a(g89625 +g89627 +S'was' +p89629 +tp89630 +a(g89627 +g89629 +S'recorded' +p89631 +tp89632 +a(g89629 +g89631 +S'by' +p89633 +tp89634 +a(g89631 +g89633 +S'index' +p89635 +tp89636 +a(g89633 +g89635 +S'artist' +p89637 +tp89638 +a(g89635 +g89637 +S'donald' +p89639 +tp89640 +a(g89637 +g89639 +S'donovan.' +p89641 +tp89642 +a(g89639 +g89641 +S'he' +p89643 +tp89644 +a(g89641 +g89643 +S'captured' +p89645 +tp89646 +a(g89643 +g89645 +S'the' +p89647 +tp89648 +a(g89645 +g89647 +S'well-used' +p89649 +tp89650 +a(g89647 +g89649 +S'figure' +p89651 +tp89652 +a(g89649 +g89651 +S'in' +p89653 +tp89654 +a(g89651 +g89653 +S'great' +p89655 +tp89656 +a(g89653 +g89655 +S'detail,' +p89657 +tp89658 +a(g89655 +g89657 +S'showing' +p89659 +tp89660 +a(g89657 +g89659 +S'the' +p89661 +tp89662 +a(g89659 +g89661 +S'eagle-head' +p89663 +tp89664 +a(g89661 +g89663 +S'saddle' +p89665 +tp89666 +a(g89663 +g89665 +S'cantle' +p89667 +tp89668 +a(g89665 +g89667 +S'and' +p89669 +tp89670 +a(g89667 +g89669 +S'the' +p89671 +tp89672 +a(g89669 +g89671 +S'weathered' +p89673 +tp89674 +a(g89671 +g89673 +S'paint' +p89675 +tp89676 +a(g89673 +g89675 +S'finish.' +p89677 +tp89678 +a(g89675 +g89677 +S'bird' +p89679 +tp89680 +a(g89677 +g89679 +S'carvings' +p89681 +tp89682 +a(g89679 +g89681 +S'such' +p89683 +tp89684 +a(g89681 +g89683 +S'as' +p89685 +tp89686 +a(g89683 +g89685 +S'this' +p89687 +tp89688 +a(g89685 +g89687 +S'dove' +p89689 +tp89690 +a(g89687 +g89689 +S'fulfilled' +p89691 +tp89692 +a(g89689 +g89691 +S'an' +p89693 +tp89694 +a(g89691 +g89693 +S'ornamental' +p89695 +tp89696 +a(g89693 +g89695 +S'function.' +p89697 +tp89698 +a(g89695 +g89697 +S'the' +p89699 +tp89700 +a(g89697 +g89699 +S'faithfully' +p89701 +tp89702 +a(g89699 +g89701 +S'rendered' +p89703 +tp89704 +a(g89701 +g89703 +S'shape' +p89705 +tp89706 +a(g89703 +g89705 +S'of' +p89707 +tp89708 +a(g89705 +g89707 +S'this' +p89709 +tp89710 +a(g89707 +g89709 +S'example' +p89711 +tp89712 +a(g89709 +g89711 +S'has' +p89713 +tp89714 +a(g89711 +g89713 +S'a' +p89715 +tp89716 +a(g89713 +g89715 +S'flowing' +p89717 +tp89718 +a(g89715 +g89717 +S'contour,' +p89719 +tp89720 +a(g89717 +g89719 +S'with' +p89721 +tp89722 +a(g89719 +g89721 +S'the' +p89723 +tp89724 +a(g89721 +g89723 +S'feathers,' +p89725 +tp89726 +a(g89723 +g89725 +S'claws,' +p89727 +tp89728 +a(g89725 +g89727 +S'and' +p89729 +tp89730 +a(g89727 +g89729 +S'bill' +p89731 +tp89732 +a(g89729 +g89731 +S'carefully' +p89733 +tp89734 +a(g89731 +g89733 +S'articulated.' +p89735 +tp89736 +a(g89733 +g89735 +S'while' +p89737 +tp89738 +a(g89735 +g89737 +S'decoys' +p89739 +tp89740 +a(g89737 +g89739 +S'were' +p89741 +tp89742 +a(g89739 +g89741 +S'usually' +p89743 +tp89744 +a(g89741 +g89743 +S'painted,' +p89745 +tp89746 +a(g89743 +g89745 +S'carvers' +p89747 +tp89748 +a(g89745 +g89747 +S'of' +p89749 +tp89750 +a(g89747 +g89749 +S'ornamental' +p89751 +tp89752 +a(g89749 +g89751 +S'birds' +p89753 +tp89754 +a(g89751 +g89753 +S'often' +p89755 +tp89756 +a(g89753 +g89755 +S'preferred' +p89757 +tp89758 +a(g89755 +g89757 +S'unpainted' +p89759 +tp89760 +a(g89757 +g89759 +S'natural' +p89761 +tp89762 +a(g89759 +g89761 +S'wood.' +p89763 +tp89764 +a(g89761 +g89763 +S'wooden' +p89765 +tp89766 +a(g89763 +g89765 +S'figures' +p89767 +tp89768 +a(g89765 +g89767 +S'produced' +p89769 +tp89770 +a(g89767 +g89769 +S'for' +p89771 +tp89772 +a(g89769 +g89771 +S'tobacco' +p89773 +tp89774 +a(g89771 +g89773 +S'shops' +p89775 +tp89776 +a(g89773 +g89775 +S'included' +p89777 +tp89778 +a(g89775 +g89777 +S'many' +p89779 +tp89780 +a(g89777 +g89779 +S'subjects' +p89781 +tp89782 +a(g89779 +g89781 +S'other' +p89783 +tp89784 +a(g89781 +g89783 +S'than' +p89785 +tp89786 +a(g89783 +g89785 +S'indians.' +p89787 +tp89788 +a(g89785 +g89787 +S'this' +p89789 +tp89790 +a(g89787 +g89789 +S'example' +p89791 +tp89792 +a(g89789 +g89791 +S'represents' +p89793 +tp89794 +a(g89791 +g89793 +S'a' +p89795 +tp89796 +a(g89793 +g89795 +S'lady' +p89797 +tp89798 +a(g89795 +g89797 +S'of' +p89799 +tp89800 +a(g89797 +g89799 +S'fashion,' +p89801 +tp89802 +a(g89799 +g89801 +S'dressed' +p89803 +tp89804 +a(g89801 +g89803 +S'in' +p89805 +tp89806 +a(g89803 +g89805 +S'a' +p89807 +tp89808 +a(g89805 +g89807 +S'costume' +p89809 +tp89810 +a(g89807 +g89809 +S'for' +p89811 +tp89812 +a(g89809 +g89811 +S'riding' +p89813 +tp89814 +a(g89811 +g89813 +S'a' +p89815 +tp89816 +a(g89813 +g89815 +S'horse.' +p89817 +tp89818 +a(g89815 +g89817 +S'her' +p89819 +tp89820 +a(g89817 +g89819 +S'stance' +p89821 +tp89822 +a(g89819 +g89821 +S'is' +p89823 +tp89824 +a(g89821 +g89823 +S'quite' +p89825 +tp89826 +a(g89823 +g89825 +S'daring' +p89827 +tp89828 +a(g89825 +g89827 +S'for' +p89829 +tp89830 +a(g89827 +g89829 +S'the' +p89831 +tp89832 +a(g89829 +g89831 +S'victorian' +p89833 +tp89834 +a(g89831 +g89833 +S'period:' +p89835 +tp89836 +a(g89833 +g89835 +S'by' +p89837 +tp89838 +a(g89835 +g89837 +S'revealing' +p89839 +tp89840 +a(g89837 +g89839 +S'her' +p89841 +tp89842 +a(g89839 +g89841 +S'ankles' +p89843 +tp89844 +a(g89841 +g89843 +S'she' +p89845 +tp89846 +a(g89843 +g89845 +S'shows' +p89847 +tp89848 +a(g89845 +g89847 +S'to' +p89849 +tp89850 +a(g89847 +g89849 +S'what' +p89851 +tp89852 +a(g89849 +g89851 +S'lengths' +p89853 +tp89854 +a(g89851 +g89853 +S'tobacconists' +p89855 +tp89856 +a(g89853 +g89855 +S'would' +p89857 +tp89858 +a(g89855 +g89857 +S'go' +p89859 +tp89860 +a(g89857 +g89859 +S'to' +p89861 +tp89862 +a(g89859 +g89861 +S'attract' +p89863 +tp89864 +a(g89861 +g89863 +S'customers.' +p89865 +tp89866 +a(g89863 +g89865 +S'the' +p89867 +tp89868 +a(g89865 +g89867 +S'figure' +p89869 +tp89870 +a(g89867 +g89869 +S'comes' +p89871 +tp89872 +a(g89869 +g89871 +S'from' +p89873 +tp89874 +a(g89871 +g89873 +S'arizona,' +p89875 +tp89876 +a(g89873 +g89875 +S'a' +p89877 +tp89878 +a(g89875 +g89877 +S'state' +p89879 +tp89880 +a(g89877 +g89879 +S'where' +p89881 +tp89882 +a(g89879 +g89881 +S'there' +p89883 +tp89884 +a(g89881 +g89883 +S'were' +p89885 +tp89886 +a(g89883 +g89885 +S'few' +p89887 +tp89888 +a(g89885 +g89887 +S'women' +p89889 +tp89890 +a(g89887 +g89889 +S'and' +p89891 +tp89892 +a(g89889 +g89891 +S'where' +p89893 +tp89894 +a(g89891 +g89893 +S'such' +p89895 +tp89896 +a(g89893 +g89895 +S'a' +p89897 +tp89898 +a(g89895 +g89897 +S'gesture' +p89899 +tp89900 +a(g89897 +g89899 +S'would' +p89901 +tp89902 +a(g89899 +g89901 +S'be' +p89903 +tp89904 +a(g89901 +g89903 +S'sure' +p89905 +tp89906 +a(g89903 +g89905 +S'to' +p89907 +tp89908 +a(g89905 +g89907 +S'command' +p89909 +tp89910 +a(g89907 +g89909 +S'attention.' +p89911 +tp89912 +a(g89909 +g89911 +S'the' +p89913 +tp89914 +a(g89911 +g89913 +S'fish,' +p89915 +tp89916 +a(g89913 +g89915 +S'one' +p89917 +tp89918 +a(g89915 +g89917 +S'of' +p89919 +tp89920 +a(g89917 +g89919 +S'the' +p89921 +tp89922 +a(g89919 +g89921 +S'symbols' +p89923 +tp89924 +a(g89921 +g89923 +S'of' +p89925 +tp89926 +a(g89923 +g89925 +S'christianity,' +p89927 +tp89928 +a(g89925 +g89927 +S'was' +p89929 +tp89930 +a(g89927 +g89929 +S'a' +p89931 +tp89932 +a(g89929 +g89931 +S'form' +p89933 +tp89934 +a(g89931 +g89933 +S'originally' +p89935 +tp89936 +a(g89933 +g89935 +S'used' +p89937 +tp89938 +a(g89935 +g89937 +S'for' +p89939 +tp89940 +a(g89937 +g89939 +S'church' +p89941 +tp89942 +a(g89939 +g89941 +S'weathervanes' +p89943 +tp89944 +a(g89941 +g89943 +S'in' +p89945 +tp89946 +a(g89943 +g89945 +S'europe' +p89947 +tp89948 +a(g89945 +g89947 +S'and' +p89949 +tp89950 +a(g89947 +g89949 +S'early' +p89951 +tp89952 +a(g89949 +g89951 +S'america.' +p89953 +tp89954 +a(g89951 +g89953 +S'fish' +p89955 +tp89956 +a(g89953 +g89955 +S'weathervanes' +p89957 +tp89958 +a(g89955 +g89957 +S'later' +p89959 +tp89960 +a(g89957 +g89959 +S'appeared' +p89961 +tp89962 +a(g89959 +g89961 +S'abundantly' +p89963 +tp89964 +a(g89961 +g89963 +S'along' +p89965 +tp89966 +a(g89963 +g89965 +S'the' +p89967 +tp89968 +a(g89965 +g89967 +S'eastern' +p89969 +tp89970 +a(g89967 +g89969 +S'coast,' +p89971 +tp89972 +a(g89969 +g89971 +S'particularly' +p89973 +tp89974 +a(g89971 +g89973 +S'in' +p89975 +tp89976 +a(g89973 +g89975 +S'new' +p89977 +tp89978 +a(g89975 +g89977 +S'england,' +p89979 +tp89980 +a(g89977 +g89979 +S'as' +p89981 +tp89982 +a(g89979 +g89981 +S'a' +p89983 +tp89984 +a(g89981 +g89983 +S'kind' +p89985 +tp89986 +a(g89983 +g89985 +S'of' +p89987 +tp89988 +a(g89985 +g89987 +S'regional' +p89989 +tp89990 +a(g89987 +g89989 +S'symbol.' +p89991 +tp89992 +a(g89989 +g89991 +S'this' +p89993 +tp89994 +a(g89991 +g89993 +S'example' +p89995 +tp89996 +a(g89993 +g89995 +S'exhibits' +p89997 +tp89998 +a(g89995 +g89997 +S'the' +p89999 +tp90000 +a(g89997 +g89999 +S'simple' +p90001 +tp90002 +a(g89999 +g90001 +S'repetition' +p90003 +tp90004 +a(g90001 +g90003 +S'of' +p90005 +tp90006 +a(g90003 +g90005 +S'pattern' +p90007 +tp90008 +a(g90005 +g90007 +S'--' +p90009 +tp90010 +a(g90007 +g90009 +S'here,' +p90011 +tp90012 +a(g90009 +g90011 +S'little' +p90013 +tp90014 +a(g90011 +g90013 +S'blocks' +p90015 +tp90016 +a(g90013 +g90015 +S'along' +p90017 +tp90018 +a(g90015 +g90017 +S'the' +p90019 +tp90020 +a(g90017 +g90019 +S'upper' +p90021 +tp90022 +a(g90019 +g90021 +S'and' +p90023 +tp90024 +a(g90021 +g90023 +S'lower' +p90025 +tp90026 +a(g90023 +g90025 +S'contours' +p90027 +tp90028 +a(g90025 +g90027 +S'--' +p90029 +tp90030 +a(g90027 +g90029 +S'that' +p90031 +tp90032 +a(g90029 +g90031 +S'is' +p90033 +tp90034 +a(g90031 +g90033 +S'a' +p90035 +tp90036 +a(g90033 +g90035 +S'characteristic' +p90037 +tp90038 +a(g90035 +g90037 +S'of' +p90039 +tp90040 +a(g90037 +g90039 +S'folk' +p90041 +tp90042 +a(g90039 +g90041 +S'art.' +p90043 +tp90044 +a(g90041 +g90043 +S'early' +p90045 +tp90046 +a(g90043 +g90045 +S'american' +p90047 +tp90048 +a(g90045 +g90047 +S'bird' +p90049 +tp90050 +a(g90047 +g90049 +S'carvings' +p90051 +tp90052 +a(g90049 +g90051 +S'were' +p90053 +tp90054 +a(g90051 +g90053 +S'frequently' +p90055 +tp90056 +a(g90053 +g90055 +S'used' +p90057 +tp90058 +a(g90055 +g90057 +S'as' +p90059 +tp90060 +a(g90057 +g90059 +S'ornaments' +p90061 +tp90062 +a(g90059 +g90061 +S'for' +p90063 +tp90064 +a(g90061 +g90063 +S'fences' +p90065 +tp90066 +a(g90063 +g90065 +S'or' +p90067 +tp90068 +a(g90065 +g90067 +S'gateposts.' +p90069 +tp90070 +a(g90067 +g90069 +S'one' +p90071 +tp90072 +a(g90069 +g90071 +S'such' +p90073 +tp90074 +a(g90071 +g90073 +S'carving' +p90075 +tp90076 +a(g90073 +g90075 +S'is' +p90077 +tp90078 +a(g90075 +g90077 +S'this' +p90079 +tp90080 +a(g90077 +g90079 +S'bird,' +p90081 +tp90082 +a(g90079 +g90081 +S'which' +p90083 +tp90084 +a(g90081 +g90083 +S'probably' +p90085 +tp90086 +a(g90083 +g90085 +S'represents' +p90087 +tp90088 +a(g90085 +g90087 +S'a' +p90089 +tp90090 +a(g90087 +g90089 +S'chicken,' +p90091 +tp90092 +a(g90089 +g90091 +S'as' +p90093 +tp90094 +a(g90091 +g90093 +S'suggested' +p90095 +tp90096 +a(g90093 +g90095 +S'by' +p90097 +tp90098 +a(g90095 +g90097 +S'its' +p90099 +tp90100 +a(g90097 +g90099 +S'head,' +p90101 +tp90102 +a(g90099 +g90101 +S'beak,' +p90103 +tp90104 +a(g90101 +g90103 +S'and' +p90105 +tp90106 +a(g90103 +g90105 +S'clawed' +p90107 +tp90108 +a(g90105 +g90107 +S'feet.' +p90109 +tp90110 +a(g90107 +g90109 +S'it' +p90111 +tp90112 +a(g90109 +g90111 +S'is' +p90113 +tp90114 +a(g90111 +g90113 +S'dated' +p90115 +tp90116 +a(g90113 +g90115 +S'1750.' +p90117 +tp90118 +a(g90115 +g90117 +S'after' +p90119 +tp90120 +a(g90117 +g90119 +S'1782,' +p90121 +tp90122 +a(g90119 +g90121 +S'the' +p90123 +tp90124 +a(g90121 +g90123 +S'eagle,' +p90125 +tp90126 +a(g90123 +g90125 +S'which' +p90127 +tp90128 +a(g90125 +g90127 +S'became' +p90129 +tp90130 +a(g90127 +g90129 +S'the' +p90131 +tp90132 +a(g90129 +g90131 +S'symbol' +p90133 +tp90134 +a(g90131 +g90133 +S'of' +p90135 +tp90136 +a(g90133 +g90135 +S'the' +p90137 +tp90138 +a(g90135 +g90137 +S'new' +p90139 +tp90140 +a(g90137 +g90139 +S'republic,' +p90141 +tp90142 +a(g90139 +g90141 +S'was' +p90143 +tp90144 +a(g90141 +g90143 +S'a' +p90145 +tp90146 +a(g90143 +g90145 +S'frequent' +p90147 +tp90148 +a(g90145 +g90147 +S'theme' +p90149 +tp90150 +a(g90147 +g90149 +S'of' +p90151 +tp90152 +a(g90149 +g90151 +S'woodcarvers' +p90153 +tp90154 +a(g90151 +g90153 +S'and' +p90155 +tp90156 +a(g90153 +g90155 +S'also' +p90157 +tp90158 +a(g90155 +g90157 +S'decorated' +p90159 +tp90160 +a(g90157 +g90159 +S'fence' +p90161 +tp90162 +a(g90159 +g90161 +S'and' +p90163 +tp90164 +a(g90161 +g90163 +S'gateposts.' +p90165 +tp90166 +a(g90163 +g90165 +S'a' +p90167 +tp90168 +a(g90165 +g90167 +S'much-admired' +p90169 +tp90170 +a(g90167 +g90169 +S'shop' +p90171 +tp90172 +a(g90169 +g90171 +S'sign' +p90173 +tp90174 +a(g90171 +g90173 +S'was' +p90175 +tp90176 +a(g90173 +g90175 +S'this' +p90177 +tp90178 +a(g90175 +g90177 +S'sheaf' +p90179 +tp90180 +a(g90177 +g90179 +S'of' +p90181 +tp90182 +a(g90179 +g90181 +S'wheat,' +p90183 +tp90184 +a(g90181 +g90183 +S'carved' +p90185 +tp90186 +a(g90183 +g90185 +S'in' +p90187 +tp90188 +a(g90185 +g90187 +S'relief' +p90189 +tp90190 +a(g90187 +g90189 +S'by' +p90191 +tp90192 +a(g90189 +g90191 +S'clark' +p90193 +tp90194 +a(g90191 +g90193 +S'noble' +p90195 +tp90196 +a(g90193 +g90195 +S'about' +p90197 +tp90198 +a(g90195 +g90197 +S'1900' +p90199 +tp90200 +a(g90197 +g90199 +S'for' +p90201 +tp90202 +a(g90199 +g90201 +S'a' +p90203 +tp90204 +a(g90201 +g90203 +S'bakery' +p90205 +tp90206 +a(g90203 +g90205 +S'building.' +p90207 +tp90208 +a(g90205 +g90207 +S'heads' +p90209 +tp90210 +a(g90207 +g90209 +S'and' +p90211 +tp90212 +a(g90209 +g90211 +S'stems' +p90213 +tp90214 +a(g90211 +g90213 +S'are' +p90215 +tp90216 +a(g90213 +g90215 +S'carefully' +p90217 +tp90218 +a(g90215 +g90217 +S'differentiated,' +p90219 +tp90220 +a(g90217 +g90219 +S'while' +p90221 +tp90222 +a(g90219 +g90221 +S'the' +p90223 +tp90224 +a(g90221 +g90223 +S'simplicity' +p90225 +tp90226 +a(g90223 +g90225 +S'of' +p90227 +tp90228 +a(g90225 +g90227 +S'the' +p90229 +tp90230 +a(g90227 +g90229 +S"sheaf's" +p90231 +tp90232 +a(g90229 +g90231 +S'contour' +p90233 +tp90234 +a(g90231 +g90233 +S'contributes' +p90235 +tp90236 +a(g90233 +g90235 +S'to' +p90237 +tp90238 +a(g90235 +g90237 +S'the' +p90239 +tp90240 +a(g90237 +g90239 +S'total' +p90241 +tp90242 +a(g90239 +g90241 +S'effect.' +p90243 +tp90244 +a(g90241 +g90243 +S'american' +p90245 +tp90246 +a(g90243 +g90245 +S'figurehead' +p90247 +tp90248 +a(g90245 +g90247 +S'carvers' +p90249 +tp90250 +a(g90247 +g90249 +S'were' +p90251 +tp90252 +a(g90249 +g90251 +S'famous' +p90253 +tp90254 +a(g90251 +g90253 +S'for' +p90255 +tp90256 +a(g90253 +g90255 +S'their' +p90257 +tp90258 +a(g90255 +g90257 +S'work,' +p90259 +tp90260 +a(g90257 +g90259 +S'which' +p90261 +tp90262 +a(g90259 +g90261 +S'flourished' +p90263 +tp90264 +a(g90261 +g90263 +S'from' +p90265 +tp90266 +a(g90263 +g90265 +S'colonial' +p90267 +tp90268 +a(g90265 +g90267 +S'times' +p90269 +tp90270 +a(g90267 +g90269 +S'until' +p90271 +tp90272 +a(g90269 +g90271 +S'the' +p90273 +tp90274 +a(g90271 +g90273 +S'late' +p90275 +tp90276 +a(g90273 +g90275 +S'nineteenth' +p90277 +tp90278 +a(g90275 +g90277 +S'century.' +p90279 +tp90280 +a(g90277 +g90279 +S'aside' +p90281 +tp90282 +a(g90279 +g90281 +S'from' +p90283 +tp90284 +a(g90281 +g90283 +S'figureheads,' +p90285 +tp90286 +a(g90283 +g90285 +S'these' +p90287 +tp90288 +a(g90285 +g90287 +S'versatile' +p90289 +tp90290 +a(g90287 +g90289 +S'craftsmen' +p90291 +tp90292 +a(g90289 +g90291 +S'also' +p90293 +tp90294 +a(g90291 +g90293 +S'produced' +p90295 +tp90296 +a(g90293 +g90295 +S'sternboards,' +p90297 +tp90298 +a(g90295 +g90297 +S'gangway' +p90299 +tp90300 +a(g90297 +g90299 +S'boards,' +p90301 +tp90302 +a(g90299 +g90301 +S'billetheads,' +p90303 +tp90304 +a(g90301 +g90303 +S'and' +p90305 +tp90306 +a(g90303 +g90305 +S'other' +p90307 +tp90308 +a(g90305 +g90307 +S'wooden' +p90309 +tp90310 +a(g90307 +g90309 +S'decorative' +p90311 +tp90312 +a(g90309 +g90311 +S'carvings' +p90313 +tp90314 +a(g90311 +g90313 +S'for' +p90315 +tp90316 +a(g90313 +g90315 +S'ships.' +p90317 +tp90318 +a(g90315 +g90317 +S'almost' +p90319 +tp90320 +a(g90317 +g90319 +S'every' +p90321 +tp90322 +a(g90319 +g90321 +S'class' +p90323 +tp90324 +a(g90321 +g90323 +S'of' +p90325 +tp90326 +a(g90323 +g90325 +S'ship,' +p90327 +tp90328 +a(g90325 +g90327 +S'from' +p90329 +tp90330 +a(g90327 +g90329 +S'steamboats' +p90331 +tp90332 +a(g90329 +g90331 +S'to' +p90333 +tp90334 +a(g90331 +g90333 +S'whalers' +p90335 +tp90336 +a(g90333 +g90335 +S'to' +p90337 +tp90338 +a(g90335 +g90337 +S'clipper' +p90339 +tp90340 +a(g90337 +g90339 +S'ships,' +p90341 +tp90342 +a(g90339 +g90341 +S'came' +p90343 +tp90344 +a(g90341 +g90343 +S'to' +p90345 +tp90346 +a(g90343 +g90345 +S'be' +p90347 +tp90348 +a(g90345 +g90347 +S'ornamented' +p90349 +tp90350 +a(g90347 +g90349 +S'with' +p90351 +tp90352 +a(g90349 +g90351 +S'carving.' +p90353 +tp90354 +a(g90351 +g90353 +S'there' +p90355 +tp90356 +a(g90353 +g90355 +S'was' +p90357 +tp90358 +a(g90355 +g90357 +S'great' +p90359 +tp90360 +a(g90357 +g90359 +S'variety' +p90361 +tp90362 +a(g90359 +g90361 +S'among' +p90363 +tp90364 +a(g90361 +g90363 +S'american' +p90365 +tp90366 +a(g90363 +g90365 +S'figureheads,' +p90367 +tp90368 +a(g90365 +g90367 +S'but' +p90369 +tp90370 +a(g90367 +g90369 +S'this' +p90371 +tp90372 +a(g90369 +g90371 +S'example' +p90373 +tp90374 +a(g90371 +g90373 +S'represents' +p90375 +tp90376 +a(g90373 +g90375 +S'the' +p90377 +tp90378 +a(g90375 +g90377 +S'most' +p90379 +tp90380 +a(g90377 +g90379 +S'characteristic' +p90381 +tp90382 +a(g90379 +g90381 +S'type:' +p90383 +tp90384 +a(g90381 +g90383 +S'a' +p90385 +tp90386 +a(g90383 +g90385 +S'full-length' +p90387 +tp90388 +a(g90385 +g90387 +S'female' +p90389 +tp90390 +a(g90387 +g90389 +S'figure,' +p90391 +tp90392 +a(g90389 +g90391 +S'seeming' +p90393 +tp90394 +a(g90391 +g90393 +S'to' +p90395 +tp90396 +a(g90393 +g90395 +S'step' +p90397 +tp90398 +a(g90395 +g90397 +S'forward' +p90399 +tp90400 +a(g90397 +g90399 +S'as' +p90401 +tp90402 +a(g90399 +g90401 +S'she' +p90403 +tp90404 +a(g90401 +g90403 +S'gazes' +p90405 +tp90406 +a(g90403 +g90405 +S'out' +p90407 +tp90408 +a(g90405 +g90407 +S'to' +p90409 +tp90410 +a(g90407 +g90409 +S'the' +p90411 +tp90412 +a(g90409 +g90411 +S'sea,' +p90413 +tp90414 +a(g90411 +g90413 +S'the' +p90415 +tp90416 +a(g90413 +g90415 +S'drapery' +p90417 +tp90418 +a(g90415 +g90417 +S'of' +p90419 +tp90420 +a(g90417 +g90419 +S'her' +p90421 +tp90422 +a(g90419 +g90421 +S'gown' +p90423 +tp90424 +a(g90421 +g90423 +S'apparently' +p90425 +tp90426 +a(g90423 +g90425 +S'windblown.' +p90427 +tp90428 +a(g90425 +g90427 +S'this' +p90429 +tp90430 +a(g90427 +g90429 +S'figurehead,' +p90431 +tp90432 +a(g90429 +g90431 +S'from' +p90433 +tp90434 +a(g90431 +g90433 +S'the' +p90435 +tp90436 +a(g90433 +g90435 +S'sailing' +p90437 +tp90438 +a(g90435 +g90437 +S'ship' +p90439 +tp90440 +a(g90437 +g90439 +S'this' +p90441 +tp90442 +a(g90439 +g90441 +S'pig' +p90443 +tp90444 +a(g90441 +g90443 +S'is' +p90445 +tp90446 +a(g90443 +g90445 +S'an' +p90447 +tp90448 +a(g90445 +g90447 +S'example' +p90449 +tp90450 +a(g90447 +g90449 +S'of' +p90451 +tp90452 +a(g90449 +g90451 +S'the' +p90453 +tp90454 +a(g90451 +g90453 +S'wide' +p90455 +tp90456 +a(g90453 +g90455 +S'variety' +p90457 +tp90458 +a(g90455 +g90457 +S'of' +p90459 +tp90460 +a(g90457 +g90459 +S'domestic' +p90461 +tp90462 +a(g90459 +g90461 +S'and' +p90463 +tp90464 +a(g90461 +g90463 +S'exotic' +p90465 +tp90466 +a(g90463 +g90465 +S'creatures' +p90467 +tp90468 +a(g90465 +g90467 +S'designed' +p90469 +tp90470 +a(g90467 +g90469 +S'for' +p90471 +tp90472 +a(g90469 +g90471 +S'carousels.' +p90473 +tp90474 +a(g90471 +g90473 +S'though' +p90475 +tp90476 +a(g90473 +g90475 +S'realistic,' +p90477 +tp90478 +a(g90475 +g90477 +S'it' +p90479 +tp90480 +a(g90477 +g90479 +S'is' +p90481 +tp90482 +a(g90479 +g90481 +S'made' +p90483 +tp90484 +a(g90481 +g90483 +S'particularly' +p90485 +tp90486 +a(g90483 +g90485 +S'appealing' +p90487 +tp90488 +a(g90485 +g90487 +S'for' +p90489 +tp90490 +a(g90487 +g90489 +S'the' +p90491 +tp90492 +a(g90489 +g90491 +S'purpose' +p90493 +tp90494 +a(g90491 +g90493 +S'of' +p90495 +tp90496 +a(g90493 +g90495 +S'the' +p90497 +tp90498 +a(g90495 +g90497 +S'carnival.' +p90499 +tp90500 +a(g90497 +g90499 +S'the' +p90501 +tp90502 +a(g90499 +g90501 +S'surface' +p90503 +tp90504 +a(g90501 +g90503 +S'modeling' +p90505 +tp90506 +a(g90503 +g90505 +S'is' +p90507 +tp90508 +a(g90505 +g90507 +S'dynamic,' +p90509 +tp90510 +a(g90507 +g90509 +S'and' +p90511 +tp90512 +a(g90509 +g90511 +S'the' +p90513 +tp90514 +a(g90511 +g90513 +S'accessories' +p90515 +tp90516 +a(g90513 +g90515 +S'are' +p90517 +tp90518 +a(g90515 +g90517 +S'well' +p90519 +tp90520 +a(g90517 +g90519 +S'carved.' +p90521 +tp90522 +a(g90519 +g90521 +S'while' +p90523 +tp90524 +a(g90521 +g90523 +S'hand-carved' +p90525 +tp90526 +a(g90523 +g90525 +S'wooden' +p90527 +tp90528 +a(g90525 +g90527 +S'carousel' +p90529 +tp90530 +a(g90527 +g90529 +S'animals' +p90531 +tp90532 +a(g90529 +g90531 +S'continued' +p90533 +tp90534 +a(g90531 +g90533 +S'to' +p90535 +tp90536 +a(g90533 +g90535 +S'be' +p90537 +tp90538 +a(g90535 +g90537 +S'made' +p90539 +tp90540 +a(g90537 +g90539 +S'well' +p90541 +tp90542 +a(g90539 +g90541 +S'into' +p90543 +tp90544 +a(g90541 +g90543 +S'the' +p90545 +tp90546 +a(g90543 +g90545 +S'nineteenth' +p90547 +tp90548 +a(g90545 +g90547 +S'century,' +p90549 +tp90550 +a(g90547 +g90549 +S'they' +p90551 +tp90552 +a(g90549 +g90551 +S'were' +p90553 +tp90554 +a(g90551 +g90553 +S'eventually' +p90555 +tp90556 +a(g90553 +g90555 +S'replaced' +p90557 +tp90558 +a(g90555 +g90557 +S'by' +p90559 +tp90560 +a(g90557 +g90559 +S'less' +p90561 +tp90562 +a(g90559 +g90561 +S'expensive' +p90563 +tp90564 +a(g90561 +g90563 +S'and' +p90565 +tp90566 +a(g90563 +g90565 +S'less' +p90567 +tp90568 +a(g90565 +g90567 +S'perishable' +p90569 +tp90570 +a(g90567 +g90569 +S'versions' +p90571 +tp90572 +a(g90569 +g90571 +S'in' +p90573 +tp90574 +a(g90571 +g90573 +S'metal,' +p90575 +tp90576 +a(g90573 +g90575 +S'plastic,' +p90577 +tp90578 +a(g90575 +g90577 +S'and' +p90579 +tp90580 +a(g90577 +g90579 +S'fiberglass.' +p90581 +tp90582 +a(g90579 +g90581 +S'a' +p90583 +tp90584 +a(g90581 +g90583 +S'fine' +p90585 +tp90586 +a(g90583 +g90585 +S'example' +p90587 +tp90588 +a(g90585 +g90587 +S'of' +p90589 +tp90590 +a(g90587 +g90589 +S'a' +p90591 +tp90592 +a(g90589 +g90591 +S"child's" +p90593 +tp90594 +a(g90591 +g90593 +S'toy' +p90595 +tp90596 +a(g90593 +g90595 +S'is' +p90597 +tp90598 +a(g90595 +g90597 +S'this' +p90599 +tp90600 +a(g90597 +g90599 +S'wooden' +p90601 +tp90602 +a(g90599 +g90601 +S'doll' +p90603 +tp90604 +a(g90601 +g90603 +S'made' +p90605 +tp90606 +a(g90603 +g90605 +S'of' +p90607 +tp90608 +a(g90605 +g90607 +S'pine.' +p90609 +tp90610 +a(g90607 +g90609 +S'in' +p90611 +tp90612 +a(g90609 +g90611 +S'the' +p90613 +tp90614 +a(g90611 +g90613 +S'long' +p90615 +tp90616 +a(g90613 +g90615 +S'history' +p90617 +tp90618 +a(g90615 +g90617 +S'of' +p90619 +tp90620 +a(g90617 +g90619 +S'doll-making,' +p90621 +tp90622 +a(g90619 +g90621 +S'wooden' +p90623 +tp90624 +a(g90621 +g90623 +S'ones' +p90625 +tp90626 +a(g90623 +g90625 +S'were' +p90627 +tp90628 +a(g90625 +g90627 +S'among' +p90629 +tp90630 +a(g90627 +g90629 +S'the' +p90631 +tp90632 +a(g90629 +g90631 +S'first' +p90633 +tp90634 +a(g90631 +g90633 +S'to' +p90635 +tp90636 +a(g90633 +g90635 +S'be' +p90637 +tp90638 +a(g90635 +g90637 +S'produced' +p90639 +tp90640 +a(g90637 +g90639 +S'in' +p90641 +tp90642 +a(g90639 +g90641 +S'any' +p90643 +tp90644 +a(g90641 +g90643 +S'quantity.' +p90645 +tp90646 +a(g90643 +g90645 +S'this' +p90647 +tp90648 +a(g90645 +g90647 +S'doll' +p90649 +tp90650 +a(g90647 +g90649 +S'comes' +p90651 +tp90652 +a(g90649 +g90651 +S'from' +p90653 +tp90654 +a(g90651 +g90653 +S'new' +p90655 +tp90656 +a(g90653 +g90655 +S'hampshire' +p90657 +tp90658 +a(g90655 +g90657 +S'where' +p90659 +tp90660 +a(g90657 +g90659 +S'it' +p90661 +tp90662 +a(g90659 +g90661 +S'was' +p90663 +tp90664 +a(g90661 +g90663 +S'probably' +p90665 +tp90666 +a(g90663 +g90665 +S'created' +p90667 +tp90668 +a(g90665 +g90667 +S'about' +p90669 +tp90670 +a(g90667 +g90669 +S'1790' +p90671 +tp90672 +a(g90669 +g90671 +S'by' +p90673 +tp90674 +a(g90671 +g90673 +S'a' +p90675 +tp90676 +a(g90673 +g90675 +S'carver' +p90677 +tp90678 +a(g90675 +g90677 +S'living' +p90679 +tp90680 +a(g90677 +g90679 +S'in' +p90681 +tp90682 +a(g90679 +g90681 +S'a' +p90683 +tp90684 +a(g90681 +g90683 +S'swiss' +p90685 +tp90686 +a(g90683 +g90685 +S'settlement.' +p90687 +tp90688 +a(g90685 +g90687 +S'the' +p90689 +tp90690 +a(g90687 +g90689 +S'unpainted,' +p90691 +tp90692 +a(g90689 +g90691 +S'natural' +p90693 +tp90694 +a(g90691 +g90693 +S'wood' +p90695 +tp90696 +a(g90693 +g90695 +S'has' +p90697 +tp90698 +a(g90695 +g90697 +S'a' +p90699 +tp90700 +a(g90697 +g90699 +S'smooth' +p90701 +tp90702 +a(g90699 +g90701 +S'and' +p90703 +tp90704 +a(g90701 +g90703 +S'beautifully' +p90705 +tp90706 +a(g90703 +g90705 +S'grained' +p90707 +tp90708 +a(g90705 +g90707 +S'surface.' +p90709 +tp90710 +a(g90707 +g90709 +S'the' +p90711 +tp90712 +a(g90709 +g90711 +S"doll's" +p90713 +tp90714 +a(g90711 +g90713 +S'dress' +p90715 +tp90716 +a(g90713 +g90715 +S'and' +p90717 +tp90718 +a(g90715 +g90717 +S'shoes' +p90719 +tp90720 +a(g90717 +g90719 +S'are' +p90721 +tp90722 +a(g90719 +g90721 +S'carved' +p90723 +tp90724 +a(g90721 +g90723 +S'in' +p90725 +tp90726 +a(g90723 +g90725 +S'the' +p90727 +tp90728 +a(g90725 +g90727 +S'wood.' +p90729 +tp90730 +a(g90727 +g90729 +S'pietro' +p90731 +tp90732 +a(g90729 +g90731 +S'vannucci,' +p90733 +tp90734 +a(g90731 +g90733 +S'called' +p90735 +tp90736 +a(g90733 +g90735 +S'perugino' +p90737 +tp90738 +a(g90735 +g90737 +S'after' +p90739 +tp90740 +a(g90737 +g90739 +S'the' +p90741 +tp90742 +a(g90739 +g90741 +S'city' +p90743 +tp90744 +a(g90741 +g90743 +S'in' +p90745 +tp90746 +a(g90743 +g90745 +S'which' +p90747 +tp90748 +a(g90745 +g90747 +S'he' +p90749 +tp90750 +a(g90747 +g90749 +S'often' +p90751 +tp90752 +a(g90749 +g90751 +S'lived,' +p90753 +tp90754 +a(g90751 +g90753 +S'collaborated' +p90755 +tp90756 +a(g90753 +g90755 +S'with' +p90757 +tp90758 +a(g90755 +g90757 +S'other' +p90759 +tp90760 +a(g90757 +g90759 +S'celebrated' +p90761 +tp90762 +a(g90759 +g90761 +S'painters' +p90763 +tp90764 +a(g90761 +g90763 +S'in' +p90765 +tp90766 +a(g90763 +g90765 +S'one' +p90767 +tp90768 +a(g90765 +g90767 +S'of' +p90769 +tp90770 +a(g90767 +g90769 +S'the' +p90771 +tp90772 +a(g90769 +g90771 +S'most' +p90773 +tp90774 +a(g90771 +g90773 +S'prestigious' +p90775 +tp90776 +a(g90773 +g90775 +S'commissions' +p90777 +tp90778 +a(g90775 +g90777 +S'of' +p90779 +tp90780 +a(g90777 +g90779 +S'the' +p90781 +tp90782 +a(g90779 +g90781 +S'late' +p90783 +tp90784 +a(g90781 +g90783 +S'fifteenth' +p90785 +tp90786 +a(g90783 +g90785 +S'century' +p90787 +tp90788 +a(g90785 +g90787 +S'--' +p90789 +tp90790 +a(g90787 +g90789 +S'the' +p90791 +tp90792 +a(g90789 +g90791 +S'decoration' +p90793 +tp90794 +a(g90791 +g90793 +S'of' +p90795 +tp90796 +a(g90793 +g90795 +S'the' +p90797 +tp90798 +a(g90795 +g90797 +S'walls' +p90799 +tp90800 +a(g90797 +g90799 +S'of' +p90801 +tp90802 +a(g90799 +g90801 +S'the' +p90803 +tp90804 +a(g90801 +g90803 +S'sistine' +p90805 +tp90806 +a(g90803 +g90805 +S'chapel' +p90807 +tp90808 +a(g90805 +g90807 +S'in' +p90809 +tp90810 +a(g90807 +g90809 +S'1481-1482.' +p90811 +tp90812 +a(g90809 +g90811 +S'he' +p90813 +tp90814 +a(g90811 +g90813 +S'headed' +p90815 +tp90816 +a(g90813 +g90815 +S'active' +p90817 +tp90818 +a(g90815 +g90817 +S'workshops' +p90819 +tp90820 +a(g90817 +g90819 +S'in' +p90821 +tp90822 +a(g90819 +g90821 +S'perugia' +p90823 +tp90824 +a(g90821 +g90823 +S'and' +p90825 +tp90826 +a(g90823 +g90825 +S'florence,' +p90827 +tp90828 +a(g90825 +g90827 +S'where' +p90829 +tp90830 +a(g90827 +g90829 +S'he' +p90831 +tp90832 +a(g90829 +g90831 +S'would' +p90833 +tp90834 +a(g90831 +g90833 +S'eventually' +p90835 +tp90836 +a(g90833 +g90835 +S'be' +p90837 +tp90838 +a(g90835 +g90837 +S'overshadowed' +p90839 +tp90840 +a(g90837 +g90839 +S'by' +p90841 +tp90842 +a(g90839 +g90841 +S'his' +p90843 +tp90844 +a(g90841 +g90843 +S'greatest' +p90845 +tp90846 +a(g90843 +g90845 +S'pupil,' +p90847 +tp90848 +a(g90845 +g90847 +S'raphael.' +p90849 +tp90850 +a(g90847 +g90849 +S"perugino's" +p90851 +tp90852 +a(g90849 +g90851 +S'from' +p90853 +tp90854 +a(g90851 +g90853 +S'the' +p90855 +tp90856 +a(g90853 +g90855 +S'late' +p90857 +tp90858 +a(g90855 +g90857 +S'seventeenth' +p90859 +tp90860 +a(g90857 +g90859 +S'to' +p90861 +tp90862 +a(g90859 +g90861 +S'the' +p90863 +tp90864 +a(g90861 +g90863 +S'early' +p90865 +tp90866 +a(g90863 +g90865 +S'twentieth' +p90867 +tp90868 +a(g90865 +g90867 +S'century' +p90869 +tp90870 +a(g90867 +g90869 +S"perugino's" +p90871 +tp90872 +a(g90869 +g90871 +S'this' +p90873 +tp90874 +a(g90871 +g90873 +S'toy' +p90875 +tp90876 +a(g90873 +g90875 +S'model' +p90877 +tp90878 +a(g90875 +g90877 +S'is' +p90879 +tp90880 +a(g90877 +g90879 +S'an' +p90881 +tp90882 +a(g90879 +g90881 +S'elegant' +p90883 +tp90884 +a(g90881 +g90883 +S'and' +p90885 +tp90886 +a(g90883 +g90885 +S'meticulous' +p90887 +tp90888 +a(g90885 +g90887 +S'example' +p90889 +tp90890 +a(g90887 +g90889 +S'of' +p90891 +tp90892 +a(g90889 +g90891 +S'a' +p90893 +tp90894 +a(g90891 +g90893 +S'nineteenth-century' +p90895 +tp90896 +a(g90893 +g90895 +S'horse-drawn' +p90897 +tp90898 +a(g90895 +g90897 +S'fire' +p90899 +tp90900 +a(g90897 +g90899 +S'engine.' +p90901 +tp90902 +a(g90899 +g90901 +S'the' +p90903 +tp90904 +a(g90901 +g90903 +S'engine' +p90905 +tp90906 +a(g90903 +g90905 +S'consists' +p90907 +tp90908 +a(g90905 +g90907 +S'of' +p90909 +tp90910 +a(g90907 +g90909 +S'a' +p90911 +tp90912 +a(g90909 +g90911 +S'vertical' +p90913 +tp90914 +a(g90911 +g90913 +S'cylindrical' +p90915 +tp90916 +a(g90913 +g90915 +S'boiler' +p90917 +tp90918 +a(g90915 +g90917 +S'at' +p90919 +tp90920 +a(g90917 +g90919 +S'the' +p90921 +tp90922 +a(g90919 +g90921 +S'back' +p90923 +tp90924 +a(g90921 +g90923 +S'mounted' +p90925 +tp90926 +a(g90923 +g90925 +S'on' +p90927 +tp90928 +a(g90925 +g90927 +S'two' +p90929 +tp90930 +a(g90927 +g90929 +S'pierced' +p90931 +tp90932 +a(g90929 +g90931 +S'wheels.' +p90933 +tp90934 +a(g90931 +g90933 +S'cast' +p90935 +tp90936 +a(g90933 +g90935 +S'iron' +p90937 +tp90938 +a(g90935 +g90937 +S'was' +p90939 +tp90940 +a(g90937 +g90939 +S'used' +p90941 +tp90942 +a(g90939 +g90941 +S'for' +p90943 +tp90944 +a(g90941 +g90943 +S'this' +p90945 +tp90946 +a(g90943 +g90945 +S'model.' +p90947 +tp90948 +a(g90945 +g90947 +S'while' +p90949 +tp90950 +a(g90947 +g90949 +S'cast' +p90951 +tp90952 +a(g90949 +g90951 +S'iron' +p90953 +tp90954 +a(g90951 +g90953 +S'had' +p90955 +tp90956 +a(g90953 +g90955 +S'been' +p90957 +tp90958 +a(g90955 +g90957 +S'used' +p90959 +tp90960 +a(g90957 +g90959 +S'earlier' +p90961 +tp90962 +a(g90959 +g90961 +S'in' +p90963 +tp90964 +a(g90961 +g90963 +S'the' +p90965 +tp90966 +a(g90963 +g90965 +S'century' +p90967 +tp90968 +a(g90965 +g90967 +S'for' +p90969 +tp90970 +a(g90967 +g90969 +S'some' +p90971 +tp90972 +a(g90969 +g90971 +S'toys' +p90973 +tp90974 +a(g90971 +g90973 +S'and' +p90975 +tp90976 +a(g90973 +g90975 +S'for' +p90977 +tp90978 +a(g90975 +g90977 +S'parts' +p90979 +tp90980 +a(g90977 +g90979 +S'such' +p90981 +tp90982 +a(g90979 +g90981 +S'as' +p90983 +tp90984 +a(g90981 +g90983 +S'wheels,' +p90985 +tp90986 +a(g90983 +g90985 +S'miniature' +p90987 +tp90988 +a(g90985 +g90987 +S'vehicles' +p90989 +tp90990 +a(g90987 +g90989 +S'made' +p90991 +tp90992 +a(g90989 +g90991 +S'entirely' +p90993 +tp90994 +a(g90991 +g90993 +S'of' +p90995 +tp90996 +a(g90993 +g90995 +S'iron' +p90997 +tp90998 +a(g90995 +g90997 +S'did' +p90999 +tp91000 +a(g90997 +g90999 +S'not' +p91001 +tp91002 +a(g90999 +g91001 +S'appear' +p91003 +tp91004 +a(g91001 +g91003 +S'until' +p91005 +tp91006 +a(g91003 +g91005 +S'the' +p91007 +tp91008 +a(g91005 +g91007 +S'1880s.' +p91009 +tp91010 +a(g91007 +g91009 +S'the' +p91011 +tp91012 +a(g91009 +g91011 +S'toy' +p91013 +tp91014 +a(g91011 +g91013 +S'was' +p91015 +tp91016 +a(g91013 +g91015 +S'made' +p91017 +tp91018 +a(g91015 +g91017 +S'between' +p91019 +tp91020 +a(g91017 +g91019 +S'about' +p91021 +tp91022 +a(g91019 +g91021 +S'1885' +p91023 +tp91024 +a(g91021 +g91023 +S'and' +p91025 +tp91026 +a(g91023 +g91025 +S'1900' +p91027 +tp91028 +a(g91025 +g91027 +S'by' +p91029 +tp91030 +a(g91027 +g91029 +S'the' +p91031 +tp91032 +a(g91029 +g91031 +S'ives' +p91033 +tp91034 +a(g91031 +g91033 +S'company' +p91035 +tp91036 +a(g91033 +g91035 +S'of' +p91037 +tp91038 +a(g91035 +g91037 +S'bridgeport,' +p91039 +tp91040 +a(g91037 +g91039 +S'connecticut,' +p91041 +tp91042 +a(g91039 +g91041 +S'a' +p91043 +tp91044 +a(g91041 +g91043 +S'pioneer' +p91045 +tp91046 +a(g91043 +g91045 +S'toy' +p91047 +tp91048 +a(g91045 +g91047 +S'maker' +p91049 +tp91050 +a(g91047 +g91049 +S'whose' +p91051 +tp91052 +a(g91049 +g91051 +S'products' +p91053 +tp91054 +a(g91051 +g91053 +S'are' +p91055 +tp91056 +a(g91053 +g91055 +S'considered' +p91057 +tp91058 +a(g91055 +g91057 +S'by' +p91059 +tp91060 +a(g91057 +g91059 +S'collectors' +p91061 +tp91062 +a(g91059 +g91061 +S'to' +p91063 +tp91064 +a(g91061 +g91063 +S'be' +p91065 +tp91066 +a(g91063 +g91065 +S'among' +p91067 +tp91068 +a(g91065 +g91067 +S'the' +p91069 +tp91070 +a(g91067 +g91069 +S'finest' +p91071 +tp91072 +a(g91069 +g91071 +S'made.' +p91073 +tp91074 +a(g91071 +g91073 +S'the' +p91075 +tp91076 +a(g91073 +g91075 +S'name' +p91077 +tp91078 +a(g91075 +g91077 +S'"phoenix,"' +p91079 +tp91080 +a(g91077 +g91079 +S'cast' +p91081 +tp91082 +a(g91079 +g91081 +S'in' +p91083 +tp91084 +a(g91081 +g91083 +S'relief' +p91085 +tp91086 +a(g91083 +g91085 +S'on' +p91087 +tp91088 +a(g91085 +g91087 +S'the' +p91089 +tp91090 +a(g91087 +g91089 +S'face' +p91091 +tp91092 +a(g91089 +g91091 +S'of' +p91093 +tp91094 +a(g91091 +g91093 +S'the' +p91095 +tp91096 +a(g91093 +g91095 +S'door' +p91097 +tp91098 +a(g91095 +g91097 +S'at' +p91099 +tp91100 +a(g91097 +g91099 +S'the' +p91101 +tp91102 +a(g91099 +g91101 +S'back' +p91103 +tp91104 +a(g91101 +g91103 +S'of' +p91105 +tp91106 +a(g91103 +g91105 +S'the' +p91107 +tp91108 +a(g91105 +g91107 +S'boiler,' +p91109 +tp91110 +a(g91107 +g91109 +S'was' +p91111 +tp91112 +a(g91109 +g91111 +S'frequently' +p91113 +tp91114 +a(g91111 +g91113 +S'used' +p91115 +tp91116 +a(g91113 +g91115 +S'by' +p91117 +tp91118 +a(g91115 +g91117 +S'ives' +p91119 +tp91120 +a(g91117 +g91119 +S'to' +p91121 +tp91122 +a(g91119 +g91121 +S'identify' +p91123 +tp91124 +a(g91121 +g91123 +S'its' +p91125 +tp91126 +a(g91123 +g91125 +S'toys.' +p91127 +tp91128 +a(g91125 +g91127 +S'decorative' +p91129 +tp91130 +a(g91127 +g91129 +S'ironwork' +p91131 +tp91132 +a(g91129 +g91131 +S'was' +p91133 +tp91134 +a(g91131 +g91133 +S'originally' +p91135 +tp91136 +a(g91133 +g91135 +S'wrought' +p91137 +tp91138 +a(g91135 +g91137 +S'at' +p91139 +tp91140 +a(g91137 +g91139 +S'the' +p91141 +tp91142 +a(g91139 +g91141 +S'forge.' +p91143 +tp91144 +a(g91141 +g91143 +S'used' +p91145 +tp91146 +a(g91143 +g91145 +S'for' +p91147 +tp91148 +a(g91145 +g91147 +S'gates,' +p91149 +tp91150 +a(g91147 +g91149 +S'grilles,' +p91151 +tp91152 +a(g91149 +g91151 +S'railings,' +p91153 +tp91154 +a(g91151 +g91153 +S'and' +p91155 +tp91156 +a(g91153 +g91155 +S'balconies,' +p91157 +tp91158 +a(g91155 +g91157 +S'such' +p91159 +tp91160 +a(g91157 +g91159 +S'ironwork' +p91161 +tp91162 +a(g91159 +g91161 +S'represented' +p91163 +tp91164 +a(g91161 +g91163 +S'the' +p91165 +tp91166 +a(g91163 +g91165 +S'height' +p91167 +tp91168 +a(g91165 +g91167 +S'of' +p91169 +tp91170 +a(g91167 +g91169 +S'the' +p91171 +tp91172 +a(g91169 +g91171 +S"blacksmith's" +p91173 +tp91174 +a(g91171 +g91173 +S'craft.' +p91175 +tp91176 +a(g91173 +g91175 +S'these' +p91177 +tp91178 +a(g91175 +g91177 +S'decorative' +p91179 +tp91180 +a(g91177 +g91179 +S'pieces' +p91181 +tp91182 +a(g91179 +g91181 +S'first' +p91183 +tp91184 +a(g91181 +g91183 +S'appeared' +p91185 +tp91186 +a(g91183 +g91185 +S'in' +p91187 +tp91188 +a(g91185 +g91187 +S'cities' +p91189 +tp91190 +a(g91187 +g91189 +S'such' +p91191 +tp91192 +a(g91189 +g91191 +S'as' +p91193 +tp91194 +a(g91191 +g91193 +S'new' +p91195 +tp91196 +a(g91193 +g91195 +S'orleans,' +p91197 +tp91198 +a(g91195 +g91197 +S'charleston,' +p91199 +tp91200 +a(g91197 +g91199 +S'and' +p91201 +tp91202 +a(g91199 +g91201 +S'baltimore.' +p91203 +tp91204 +a(g91201 +g91203 +S'by' +p91205 +tp91206 +a(g91203 +g91205 +S'the' +p91207 +tp91208 +a(g91205 +g91207 +S'early' +p91209 +tp91210 +a(g91207 +g91209 +S'nineteenth' +p91211 +tp91212 +a(g91209 +g91211 +S'century,' +p91213 +tp91214 +a(g91211 +g91213 +S'however,' +p91215 +tp91216 +a(g91213 +g91215 +S'foundries' +p91217 +tp91218 +a(g91215 +g91217 +S'were' +p91219 +tp91220 +a(g91217 +g91219 +S'producing' +p91221 +tp91222 +a(g91219 +g91221 +S'popular' +p91223 +tp91224 +a(g91221 +g91223 +S'cast' +p91225 +tp91226 +a(g91223 +g91225 +S'ironwork' +p91227 +tp91228 +a(g91225 +g91227 +S'for' +p91229 +tp91230 +a(g91227 +g91229 +S'other' +p91231 +tp91232 +a(g91229 +g91231 +S'regions.' +p91233 +tp91234 +a(g91231 +g91233 +S'this' +p91235 +tp91236 +a(g91233 +g91235 +S'cast' +p91237 +tp91238 +a(g91235 +g91237 +S'iron' +p91239 +tp91240 +a(g91237 +g91239 +S'panel' +p91241 +tp91242 +a(g91239 +g91241 +S'from' +p91243 +tp91244 +a(g91241 +g91243 +S'a' +p91245 +tp91246 +a(g91243 +g91245 +S'cemetery' +p91247 +tp91248 +a(g91245 +g91247 +S'gate' +p91249 +tp91250 +a(g91247 +g91249 +S'was' +p91251 +tp91252 +a(g91249 +g91251 +S'made' +p91253 +tp91254 +a(g91251 +g91253 +S'in' +p91255 +tp91256 +a(g91253 +g91255 +S'the' +p91257 +tp91258 +a(g91255 +g91257 +S'mid-nineteenth' +p91259 +tp91260 +a(g91257 +g91259 +S'century.' +p91261 +tp91262 +a(g91259 +g91261 +S'the' +p91263 +tp91264 +a(g91261 +g91263 +S'ornate' +p91265 +tp91266 +a(g91263 +g91265 +S'floral' +p91267 +tp91268 +a(g91265 +g91267 +S'and' +p91269 +tp91270 +a(g91267 +g91269 +S'arboreal' +p91271 +tp91272 +a(g91269 +g91271 +S'motifs' +p91273 +tp91274 +a(g91271 +g91273 +S'aretypical' +p91275 +tp91276 +a(g91273 +g91275 +S'of' +p91277 +tp91278 +a(g91275 +g91277 +S'victorian' +p91279 +tp91280 +a(g91277 +g91279 +S'decoration' +p91281 +tp91282 +a(g91279 +g91281 +S'popular' +p91283 +tp91284 +a(g91281 +g91283 +S'in' +p91285 +tp91286 +a(g91283 +g91285 +S'that' +p91287 +tp91288 +a(g91285 +g91287 +S'period.' +p91289 +tp91290 +a(g91287 +g91289 +S'the' +p91291 +tp91292 +a(g91289 +g91291 +S'lamb' +p91293 +tp91294 +a(g91291 +g91293 +S'resting' +p91295 +tp91296 +a(g91293 +g91295 +S'under' +p91297 +tp91298 +a(g91295 +g91297 +S'a' +p91299 +tp91300 +a(g91297 +g91299 +S'weeping' +p91301 +tp91302 +a(g91299 +g91301 +S'willow' +p91303 +tp91304 +a(g91301 +g91303 +S'tree' +p91305 +tp91306 +a(g91303 +g91305 +S'was' +p91307 +tp91308 +a(g91305 +g91307 +S'a' +p91309 +tp91310 +a(g91307 +g91309 +S'common' +p91311 +tp91312 +a(g91309 +g91311 +S'theme' +p91313 +tp91314 +a(g91311 +g91313 +S'symbolic' +p91315 +tp91316 +a(g91313 +g91315 +S'of' +p91317 +tp91318 +a(g91315 +g91317 +S'grief' +p91319 +tp91320 +a(g91317 +g91319 +S'and' +p91321 +tp91322 +a(g91319 +g91321 +S'appropriate' +p91323 +tp91324 +a(g91321 +g91323 +S'for' +p91325 +tp91326 +a(g91323 +g91325 +S'the' +p91327 +tp91328 +a(g91325 +g91327 +S"panel's" +p91329 +tp91330 +a(g91327 +g91329 +S'use' +p91331 +tp91332 +a(g91329 +g91331 +S'as' +p91333 +tp91334 +a(g91331 +g91333 +S'a' +p91335 +tp91336 +a(g91333 +g91335 +S'cemetery' +p91337 +tp91338 +a(g91335 +g91337 +S'ornament.' +p91339 +tp91340 +a(g91337 +g91339 +S'the' +p91341 +tp91342 +a(g91339 +g91341 +S'five-plate,' +p91343 +tp91344 +a(g91341 +g91343 +S'or' +p91345 +tp91346 +a(g91343 +g91345 +S'jamb,' +p91347 +tp91348 +a(g91345 +g91347 +S'stove' +p91349 +tp91350 +a(g91347 +g91349 +S'was' +p91351 +tp91352 +a(g91349 +g91351 +S'introduced' +p91353 +tp91354 +a(g91351 +g91353 +S'by' +p91355 +tp91356 +a(g91353 +g91355 +S'german' +p91357 +tp91358 +a(g91355 +g91357 +S'immigrants' +p91359 +tp91360 +a(g91357 +g91359 +S'in' +p91361 +tp91362 +a(g91359 +g91361 +S'the' +p91363 +tp91364 +a(g91361 +g91363 +S'early' +p91365 +tp91366 +a(g91363 +g91365 +S'nineteenth' +p91367 +tp91368 +a(g91365 +g91367 +S'century.' +p91369 +tp91370 +a(g91367 +g91369 +S'set' +p91371 +tp91372 +a(g91369 +g91371 +S'into' +p91373 +tp91374 +a(g91371 +g91373 +S'the' +p91375 +tp91376 +a(g91373 +g91375 +S'wall' +p91377 +tp91378 +a(g91375 +g91377 +S'and' +p91379 +tp91380 +a(g91377 +g91379 +S'fired' +p91381 +tp91382 +a(g91379 +g91381 +S'from' +p91383 +tp91384 +a(g91381 +g91383 +S'the' +p91385 +tp91386 +a(g91383 +g91385 +S'fireplace' +p91387 +tp91388 +a(g91385 +g91387 +S'of' +p91389 +tp91390 +a(g91387 +g91389 +S'an' +p91391 +tp91392 +a(g91389 +g91391 +S'adjoining' +p91393 +tp91394 +a(g91391 +g91393 +S'room,' +p91395 +tp91396 +a(g91393 +g91395 +S'these' +p91397 +tp91398 +a(g91395 +g91397 +S'stoves' +p91399 +tp91400 +a(g91397 +g91399 +S'used' +p91401 +tp91402 +a(g91399 +g91401 +S'fuel' +p91403 +tp91404 +a(g91401 +g91403 +S'more' +p91405 +tp91406 +a(g91403 +g91405 +S'efficiently' +p91407 +tp91408 +a(g91405 +g91407 +S'than' +p91409 +tp91410 +a(g91407 +g91409 +S'open' +p91411 +tp91412 +a(g91409 +g91411 +S'fireplaces' +p91413 +tp91414 +a(g91411 +g91413 +S'and' +p91415 +tp91416 +a(g91413 +g91415 +S'provided' +p91417 +tp91418 +a(g91415 +g91417 +S'greater' +p91419 +tp91420 +a(g91417 +g91419 +S'warmth' +p91421 +tp91422 +a(g91419 +g91421 +S'for' +p91423 +tp91424 +a(g91421 +g91423 +S'the' +p91425 +tp91426 +a(g91423 +g91425 +S'whole' +p91427 +tp91428 +a(g91425 +g91427 +S'room.' +p91429 +tp91430 +a(g91427 +g91429 +S'because' +p91431 +tp91432 +a(g91429 +g91431 +S'pennsylvania' +p91433 +tp91434 +a(g91431 +g91433 +S'had' +p91435 +tp91436 +a(g91433 +g91435 +S'rich' +p91437 +tp91438 +a(g91435 +g91437 +S'iron' +p91439 +tp91440 +a(g91437 +g91439 +S'ore' +p91441 +tp91442 +a(g91439 +g91441 +S'deposits,' +p91443 +tp91444 +a(g91441 +g91443 +S'pig' +p91445 +tp91446 +a(g91443 +g91445 +S'iron' +p91447 +tp91448 +a(g91445 +g91447 +S'was' +p91449 +tp91450 +a(g91447 +g91449 +S'readily' +p91451 +tp91452 +a(g91449 +g91451 +S'available.' +p91453 +tp91454 +a(g91451 +g91453 +S'iron' +p91455 +tp91456 +a(g91453 +g91455 +S'plantations' +p91457 +tp91458 +a(g91455 +g91457 +S'established' +p91459 +tp91460 +a(g91457 +g91459 +S'great' +p91461 +tp91462 +a(g91459 +g91461 +S'furnaces' +p91463 +tp91464 +a(g91461 +g91463 +S'and' +p91465 +tp91466 +a(g91463 +g91465 +S'cast' +p91467 +tp91468 +a(g91465 +g91467 +S'pots,' +p91469 +tp91470 +a(g91467 +g91469 +S'kettles,' +p91471 +tp91472 +a(g91469 +g91471 +S'and' +p91473 +tp91474 +a(g91471 +g91473 +S'other' +p91475 +tp91476 +a(g91473 +g91475 +S'household' +p91477 +tp91478 +a(g91475 +g91477 +S'utensils,' +p91479 +tp91480 +a(g91477 +g91479 +S'as' +p91481 +tp91482 +a(g91479 +g91481 +S'well' +p91483 +tp91484 +a(g91481 +g91483 +S'as' +p91485 +tp91486 +a(g91483 +g91485 +S'the' +p91487 +tp91488 +a(g91485 +g91487 +S'iron' +p91489 +tp91490 +a(g91487 +g91489 +S'stoveplates.' +p91491 +tp91492 +a(g91489 +g91491 +S'stoveplates' +p91493 +tp91494 +a(g91491 +g91493 +S'were' +p91495 +tp91496 +a(g91493 +g91495 +S'cast' +p91497 +tp91498 +a(g91495 +g91497 +S'in' +p91499 +tp91500 +a(g91497 +g91499 +S'sand' +p91501 +tp91502 +a(g91499 +g91501 +S'molds.' +p91503 +tp91504 +a(g91501 +g91503 +S'carved' +p91505 +tp91506 +a(g91503 +g91505 +S'wooden' +p91507 +tp91508 +a(g91505 +g91507 +S'designs' +p91509 +tp91510 +a(g91507 +g91509 +S'were' +p91511 +tp91512 +a(g91509 +g91511 +S'pressed' +p91513 +tp91514 +a(g91511 +g91513 +S'into' +p91515 +tp91516 +a(g91513 +g91515 +S'sand' +p91517 +tp91518 +a(g91515 +g91517 +S'so' +p91519 +tp91520 +a(g91517 +g91519 +S'that' +p91521 +tp91522 +a(g91519 +g91521 +S'a' +p91523 +tp91524 +a(g91521 +g91523 +S'relief' +p91525 +tp91526 +a(g91523 +g91525 +S'pattern' +p91527 +tp91528 +a(g91525 +g91527 +S'remained.' +p91529 +tp91530 +a(g91527 +g91529 +S'molten' +p91531 +tp91532 +a(g91529 +g91531 +S'iron' +p91533 +tp91534 +a(g91531 +g91533 +S'was' +p91535 +tp91536 +a(g91533 +g91535 +S'then' +p91537 +tp91538 +a(g91535 +g91537 +S'poured' +p91539 +tp91540 +a(g91537 +g91539 +S'into' +p91541 +tp91542 +a(g91539 +g91541 +S'the' +p91543 +tp91544 +a(g91541 +g91543 +S'sand' +p91545 +tp91546 +a(g91543 +g91545 +S'mold' +p91547 +tp91548 +a(g91545 +g91547 +S'and' +p91549 +tp91550 +a(g91547 +g91549 +S'allowed' +p91551 +tp91552 +a(g91549 +g91551 +S'to' +p91553 +tp91554 +a(g91551 +g91553 +S'cool.' +p91555 +tp91556 +a(g91553 +g91555 +S'common' +p91557 +tp91558 +a(g91555 +g91557 +S'stoveplate' +p91559 +tp91560 +a(g91557 +g91559 +S'motifs' +p91561 +tp91562 +a(g91559 +g91561 +S'were' +p91563 +tp91564 +a(g91561 +g91563 +S'the' +p91565 +tp91566 +a(g91563 +g91565 +S'flowers,' +p91567 +tp91568 +a(g91565 +g91567 +S'birds,' +p91569 +tp91570 +a(g91567 +g91569 +S'and' +p91571 +tp91572 +a(g91569 +g91571 +S'scrolls' +p91573 +tp91574 +a(g91571 +g91573 +S'of' +p91575 +tp91576 +a(g91573 +g91575 +S'pennsylvania' +p91577 +tp91578 +a(g91575 +g91577 +S'german' +p91579 +tp91580 +a(g91577 +g91579 +S'tradition,' +p91581 +tp91582 +a(g91579 +g91581 +S'as' +p91583 +tp91584 +a(g91581 +g91583 +S'well' +p91585 +tp91586 +a(g91583 +g91585 +S'as' +p91587 +tp91588 +a(g91585 +g91587 +S'biblical' +p91589 +tp91590 +a(g91587 +g91589 +S'scenes' +p91591 +tp91592 +a(g91589 +g91591 +S'or' +p91593 +tp91594 +a(g91591 +g91593 +S'scenes' +p91595 +tp91596 +a(g91593 +g91595 +S'with' +p91597 +tp91598 +a(g91595 +g91597 +S'a' +p91599 +tp91600 +a(g91597 +g91599 +S'moral' +p91601 +tp91602 +a(g91599 +g91601 +S'lesson.' +p91603 +tp91604 +a(g91601 +g91603 +S'this' +p91605 +tp91606 +a(g91603 +g91605 +S'stove' +p91607 +tp91608 +a(g91605 +g91607 +S'is' +p91609 +tp91610 +a(g91607 +g91609 +S'dated' +p91611 +tp91612 +a(g91609 +g91611 +S'1749.' +p91613 +tp91614 +a(g91611 +g91613 +S'the' +p91615 +tp91616 +a(g91613 +g91615 +S'front' +p91617 +tp91618 +a(g91615 +g91617 +S'plate' +p91619 +tp91620 +a(g91617 +g91619 +S'shows' +p91621 +tp91622 +a(g91619 +g91621 +S'death' +p91623 +tp91624 +a(g91621 +g91623 +S'in' +p91625 +tp91626 +a(g91623 +g91625 +S'the' +p91627 +tp91628 +a(g91625 +g91627 +S'form' +p91629 +tp91630 +a(g91627 +g91629 +S'of' +p91631 +tp91632 +a(g91629 +g91631 +S'a' +p91633 +tp91634 +a(g91631 +g91633 +S'horned' +p91635 +tp91636 +a(g91633 +g91635 +S'skeleton' +p91637 +tp91638 +a(g91635 +g91637 +S'wielding' +p91639 +tp91640 +a(g91637 +g91639 +S'a' +p91641 +tp91642 +a(g91639 +g91641 +S'stick' +p91643 +tp91644 +a(g91641 +g91643 +S'against' +p91645 +tp91646 +a(g91643 +g91645 +S'the' +p91647 +tp91648 +a(g91645 +g91647 +S'protests' +p91649 +tp91650 +a(g91647 +g91649 +S'of' +p91651 +tp91652 +a(g91649 +g91651 +S'a' +p91653 +tp91654 +a(g91651 +g91653 +S'mortal.' +p91655 +tp91656 +a(g91653 +g91655 +S'from' +p91657 +tp91658 +a(g91655 +g91657 +S'behind,' +p91659 +tp91660 +a(g91657 +g91659 +S'a' +p91661 +tp91662 +a(g91659 +g91661 +S'friend' +p91663 +tp91664 +a(g91661 +g91663 +S'is' +p91665 +tp91666 +a(g91663 +g91665 +S'trying' +p91667 +tp91668 +a(g91665 +g91667 +S'to' +p91669 +tp91670 +a(g91667 +g91669 +S'aid' +p91671 +tp91672 +a(g91669 +g91671 +S'the' +p91673 +tp91674 +a(g91671 +g91673 +S'unfortunate' +p91675 +tp91676 +a(g91673 +g91675 +S'victim.' +p91677 +tp91678 +a(g91675 +g91677 +S'andirons' +p91679 +tp91680 +a(g91677 +g91679 +S'came' +p91681 +tp91682 +a(g91679 +g91681 +S'into' +p91683 +tp91684 +a(g91681 +g91683 +S'use' +p91685 +tp91686 +a(g91683 +g91685 +S'when' +p91687 +tp91688 +a(g91685 +g91687 +S'formal' +p91689 +tp91690 +a(g91687 +g91689 +S'fireplaces' +p91691 +tp91692 +a(g91689 +g91691 +S'required' +p91693 +tp91694 +a(g91691 +g91693 +S'decorative' +p91695 +tp91696 +a(g91693 +g91695 +S'accessories,' +p91697 +tp91698 +a(g91695 +g91697 +S'particularly' +p91699 +tp91700 +a(g91697 +g91699 +S'in' +p91701 +tp91702 +a(g91699 +g91701 +S'drawing' +p91703 +tp91704 +a(g91701 +g91703 +S'rooms' +p91705 +tp91706 +a(g91703 +g91705 +S'and' +p91707 +tp91708 +a(g91705 +g91707 +S'in' +p91709 +tp91710 +a(g91707 +g91709 +S'taverns.' +p91711 +tp91712 +a(g91709 +g91711 +S'the' +p91713 +tp91714 +a(g91711 +g91713 +S'earliest' +p91715 +tp91716 +a(g91713 +g91715 +S'andirons' +p91717 +tp91718 +a(g91715 +g91717 +S'were' +p91719 +tp91720 +a(g91717 +g91719 +S'forged' +p91721 +tp91722 +a(g91719 +g91721 +S'of' +p91723 +tp91724 +a(g91721 +g91723 +S'wrought' +p91725 +tp91726 +a(g91723 +g91725 +S'iron' +p91727 +tp91728 +a(g91725 +g91727 +S'and' +p91729 +tp91730 +a(g91727 +g91729 +S'decorated' +p91731 +tp91732 +a(g91729 +g91731 +S'by' +p91733 +tp91734 +a(g91731 +g91733 +S'simple' +p91735 +tp91736 +a(g91733 +g91735 +S'scrolls' +p91737 +tp91738 +a(g91735 +g91737 +S'or' +p91739 +tp91740 +a(g91737 +g91739 +S'ogee' +p91741 +tp91742 +a(g91739 +g91741 +S'curves,' +p91743 +tp91744 +a(g91741 +g91743 +S'but' +p91745 +tp91746 +a(g91743 +g91745 +S'by' +p91747 +tp91748 +a(g91745 +g91747 +S'the' +p91749 +tp91750 +a(g91747 +g91749 +S'mid-eighteenth' +p91751 +tp91752 +a(g91749 +g91751 +S'century' +p91753 +tp91754 +a(g91751 +g91753 +S'foundries' +p91755 +tp91756 +a(g91753 +g91755 +S'were' +p91757 +tp91758 +a(g91755 +g91757 +S'producing' +p91759 +tp91760 +a(g91757 +g91759 +S'more' +p91761 +tp91762 +a(g91759 +g91761 +S'elaborate' +p91763 +tp91764 +a(g91761 +g91763 +S'cast' +p91765 +tp91766 +a(g91763 +g91765 +S'iron' +p91767 +tp91768 +a(g91765 +g91767 +S'varieties.' +p91769 +tp91770 +a(g91767 +g91769 +S'the' +p91771 +tp91772 +a(g91769 +g91771 +S'subject' +p91773 +tp91774 +a(g91771 +g91773 +S'of' +p91775 +tp91776 +a(g91773 +g91775 +S'this' +p91777 +tp91778 +a(g91775 +g91777 +S'andiron,' +p91779 +tp91780 +a(g91777 +g91779 +S'representing' +p91781 +tp91782 +a(g91779 +g91781 +S'a' +p91783 +tp91784 +a(g91781 +g91783 +S'"marching' +p91785 +tp91786 +a(g91783 +g91785 +S'hessian,"' +p91787 +tp91788 +a(g91785 +g91787 +S'became' +p91789 +tp91790 +a(g91787 +g91789 +S'popular' +p91791 +tp91792 +a(g91789 +g91791 +S'in' +p91793 +tp91794 +a(g91791 +g91793 +S'the' +p91795 +tp91796 +a(g91793 +g91795 +S'1780s' +p91797 +tp91798 +a(g91795 +g91797 +S'after' +p91799 +tp91800 +a(g91797 +g91799 +S'the' +p91801 +tp91802 +a(g91799 +g91801 +S'american' +p91803 +tp91804 +a(g91801 +g91803 +S'revolution.' +p91805 +tp91806 +a(g91803 +g91805 +S'playing' +p91807 +tp91808 +a(g91805 +g91807 +S'on' +p91809 +tp91810 +a(g91807 +g91809 +S'patriotic' +p91811 +tp91812 +a(g91809 +g91811 +S'sympathies,' +p91813 +tp91814 +a(g91811 +g91813 +S'this' +p91815 +tp91816 +a(g91813 +g91815 +S'andiron' +p91817 +tp91818 +a(g91815 +g91817 +S'represented' +p91819 +tp91820 +a(g91817 +g91819 +S'the' +p91821 +tp91822 +a(g91819 +g91821 +S'hessian' +p91823 +tp91824 +a(g91821 +g91823 +S'soldier' +p91825 +tp91826 +a(g91823 +g91825 +S'who' +p91827 +tp91828 +a(g91825 +g91827 +S'fought' +p91829 +tp91830 +a(g91827 +g91829 +S'for' +p91831 +tp91832 +a(g91829 +g91831 +S'the' +p91833 +tp91834 +a(g91831 +g91833 +S'british' +p91835 +tp91836 +a(g91833 +g91835 +S'as' +p91837 +tp91838 +a(g91835 +g91837 +S'a' +p91839 +tp91840 +a(g91837 +g91839 +S'mercenary.' +p91841 +tp91842 +a(g91839 +g91841 +S'human' +p91843 +tp91844 +a(g91841 +g91843 +S'figures' +p91845 +tp91846 +a(g91843 +g91845 +S'on' +p91847 +tp91848 +a(g91845 +g91847 +S'andirons' +p91849 +tp91850 +a(g91847 +g91849 +S'were' +p91851 +tp91852 +a(g91849 +g91851 +S'uncommon,' +p91853 +tp91854 +a(g91851 +g91853 +S'and' +p91855 +tp91856 +a(g91853 +g91855 +S'it' +p91857 +tp91858 +a(g91855 +g91857 +S'is' +p91859 +tp91860 +a(g91857 +g91859 +S'said' +p91861 +tp91862 +a(g91859 +g91861 +S'that' +p91863 +tp91864 +a(g91861 +g91863 +S'putting' +p91865 +tp91866 +a(g91863 +g91865 +S'this' +p91867 +tp91868 +a(g91865 +g91867 +S'figure' +p91869 +tp91870 +a(g91867 +g91869 +S'to' +p91871 +tp91872 +a(g91869 +g91871 +S'such' +p91873 +tp91874 +a(g91871 +g91873 +S'menial' +p91875 +tp91876 +a(g91873 +g91875 +S'use' +p91877 +tp91878 +a(g91875 +g91877 +S'symbolized' +p91879 +tp91880 +a(g91877 +g91879 +S'american' +p91881 +tp91882 +a(g91879 +g91881 +S'resentment' +p91883 +tp91884 +a(g91881 +g91883 +S'of' +p91885 +tp91886 +a(g91883 +g91885 +S'the' +p91887 +tp91888 +a(g91885 +g91887 +S'mercenary' +p91889 +tp91890 +a(g91887 +g91889 +S'soldier.' +p91891 +tp91892 +a(g91889 +g91891 +S'this' +p91893 +tp91894 +a(g91891 +g91893 +S'andiron,' +p91895 +tp91896 +a(g91893 +g91895 +S'cast' +p91897 +tp91898 +a(g91895 +g91897 +S'from' +p91899 +tp91900 +a(g91897 +g91899 +S'a' +p91901 +tp91902 +a(g91899 +g91901 +S'sand' +p91903 +tp91904 +a(g91901 +g91903 +S'mold,' +p91905 +tp91906 +a(g91903 +g91905 +S'is' +p91907 +tp91908 +a(g91905 +g91907 +S'in' +p91909 +tp91910 +a(g91907 +g91909 +S'high' +p91911 +tp91912 +a(g91909 +g91911 +S'relief.' +p91913 +tp91914 +a(g91911 +g91913 +S'polychrome' +p91915 +tp91916 +a(g91913 +g91915 +S'paints' +p91917 +tp91918 +a(g91915 +g91917 +S'were' +p91919 +tp91920 +a(g91917 +g91919 +S'used' +p91921 +tp91922 +a(g91919 +g91921 +S'to' +p91923 +tp91924 +a(g91921 +g91923 +S'set' +p91925 +tp91926 +a(g91923 +g91925 +S'off' +p91927 +tp91928 +a(g91925 +g91927 +S'the' +p91929 +tp91930 +a(g91927 +g91929 +S'details' +p91931 +tp91932 +a(g91929 +g91931 +S'of' +p91933 +tp91934 +a(g91931 +g91933 +S'the' +p91935 +tp91936 +a(g91933 +g91935 +S'uniform' +p91937 +tp91938 +a(g91935 +g91937 +S'and' +p91939 +tp91940 +a(g91937 +g91939 +S'the' +p91941 +tp91942 +a(g91939 +g91941 +S'facial' +p91943 +tp91944 +a(g91941 +g91943 +S'expression.' +p91945 +tp91946 +a(g91943 +g91945 +S'though' +p91947 +tp91948 +a(g91945 +g91947 +S'shaker' +p91949 +tp91950 +a(g91947 +g91949 +S'dress' +p91951 +tp91952 +a(g91949 +g91951 +S'conformed' +p91953 +tp91954 +a(g91951 +g91953 +S'somewhat' +p91955 +tp91956 +a(g91953 +g91955 +S'to' +p91957 +tp91958 +a(g91955 +g91957 +S'prevailing' +p91959 +tp91960 +a(g91957 +g91959 +S'styles,' +p91961 +tp91962 +a(g91959 +g91961 +S'it' +p91963 +tp91964 +a(g91961 +g91963 +S'emphasized' +p91965 +tp91966 +a(g91963 +g91965 +S'simplicity.' +p91967 +tp91968 +a(g91965 +g91967 +S'a' +p91969 +tp91970 +a(g91967 +g91969 +S'favorite' +p91971 +tp91972 +a(g91969 +g91971 +S'color' +p91973 +tp91974 +a(g91971 +g91973 +S'used' +p91975 +tp91976 +a(g91973 +g91975 +S'on' +p91977 +tp91978 +a(g91975 +g91977 +S'wood' +p91979 +tp91980 +a(g91977 +g91979 +S'and' +p91981 +tp91982 +a(g91979 +g91981 +S'fabric' +p91983 +tp91984 +a(g91981 +g91983 +S'alike' +p91985 +tp91986 +a(g91983 +g91985 +S'was' +p91987 +tp91988 +a(g91985 +g91987 +S'a' +p91989 +tp91990 +a(g91987 +g91989 +S'warm' +p91991 +tp91992 +a(g91989 +g91991 +S'brown' +p91993 +tp91994 +a(g91991 +g91993 +S'made' +p91995 +tp91996 +a(g91993 +g91995 +S'from' +p91997 +tp91998 +a(g91995 +g91997 +S'butternut' +p91999 +tp92000 +a(g91997 +g91999 +S'bark.' +p92001 +tp92002 +a(g91999 +g92001 +S'though' +p92003 +tp92004 +a(g92001 +g92003 +S'subdued' +p92005 +tp92006 +a(g92003 +g92005 +S'colors' +p92007 +tp92008 +a(g92005 +g92007 +S'reflect' +p92009 +tp92010 +a(g92007 +g92009 +S'the' +p92011 +tp92012 +a(g92009 +g92011 +S'humble,' +p92013 +tp92014 +a(g92011 +g92013 +S'self-effacing' +p92015 +tp92016 +a(g92013 +g92015 +S'shaker' +p92017 +tp92018 +a(g92015 +g92017 +S'spirit,' +p92019 +tp92020 +a(g92017 +g92019 +S'bright' +p92021 +tp92022 +a(g92019 +g92021 +S'colors' +p92023 +tp92024 +a(g92021 +g92023 +S'were' +p92025 +tp92026 +a(g92023 +g92025 +S'not' +p92027 +tp92028 +a(g92025 +g92027 +S'eliminated' +p92029 +tp92030 +a(g92027 +g92029 +S'entirely.' +p92031 +tp92032 +a(g92029 +g92031 +S'the' +p92033 +tp92034 +a(g92031 +g92033 +S"man's" +p92035 +tp92036 +a(g92033 +g92035 +S'costume' +p92037 +tp92038 +a(g92035 +g92037 +S'incorporates' +p92039 +tp92040 +a(g92037 +g92039 +S'a' +p92041 +tp92042 +a(g92039 +g92041 +S'blue' +p92043 +tp92044 +a(g92041 +g92043 +S'vest' +p92045 +tp92046 +a(g92043 +g92045 +S'with' +p92047 +tp92048 +a(g92045 +g92047 +S'a' +p92049 +tp92050 +a(g92047 +g92049 +S'brown' +p92051 +tp92052 +a(g92049 +g92051 +S'coat' +p92053 +tp92054 +a(g92051 +g92053 +S'and' +p92055 +tp92056 +a(g92053 +g92055 +S'trousers.' +p92057 +tp92058 +a(g92055 +g92057 +S'in' +p92059 +tp92060 +a(g92057 +g92059 +S'length' +p92061 +tp92062 +a(g92059 +g92061 +S'and' +p92063 +tp92064 +a(g92061 +g92063 +S'cut,' +p92065 +tp92066 +a(g92063 +g92065 +S'the' +p92067 +tp92068 +a(g92065 +g92067 +S'coat' +p92069 +tp92070 +a(g92067 +g92069 +S'retains' +p92071 +tp92072 +a(g92069 +g92071 +S'a' +p92073 +tp92074 +a(g92071 +g92073 +S'lingering' +p92075 +tp92076 +a(g92073 +g92075 +S'suggestion' +p92077 +tp92078 +a(g92075 +g92077 +S'of' +p92079 +tp92080 +a(g92077 +g92079 +S'eighteenth-century' +p92081 +tp92082 +a(g92079 +g92081 +S'style.' +p92083 +tp92084 +a(g92081 +g92083 +S'in' +p92085 +tp92086 +a(g92083 +g92085 +S'keeping' +p92087 +tp92088 +a(g92085 +g92087 +S'with' +p92089 +tp92090 +a(g92087 +g92089 +S'their' +p92091 +tp92092 +a(g92089 +g92091 +S'religious' +p92093 +tp92094 +a(g92091 +g92093 +S'beliefs,' +p92095 +tp92096 +a(g92093 +g92095 +S'shakers' +p92097 +tp92098 +a(g92095 +g92097 +S'rejected' +p92099 +tp92100 +a(g92097 +g92099 +S'individualism' +p92101 +tp92102 +a(g92099 +g92101 +S'in' +p92103 +tp92104 +a(g92101 +g92103 +S'costume.' +p92105 +tp92106 +a(g92103 +g92105 +S'though' +p92107 +tp92108 +a(g92105 +g92107 +S'shaker' +p92109 +tp92110 +a(g92107 +g92109 +S'dress' +p92111 +tp92112 +a(g92109 +g92111 +S'conformed' +p92113 +tp92114 +a(g92111 +g92113 +S'somewhat' +p92115 +tp92116 +a(g92113 +g92115 +S'to' +p92117 +tp92118 +a(g92115 +g92117 +S'prevailing' +p92119 +tp92120 +a(g92117 +g92119 +S'styles,' +p92121 +tp92122 +a(g92119 +g92121 +S'it' +p92123 +tp92124 +a(g92121 +g92123 +S'emphasized' +p92125 +tp92126 +a(g92123 +g92125 +S'simplicity.' +p92127 +tp92128 +a(g92125 +g92127 +S'a' +p92129 +tp92130 +a(g92127 +g92129 +S'favorite' +p92131 +tp92132 +a(g92129 +g92131 +S'color' +p92133 +tp92134 +a(g92131 +g92133 +S'used' +p92135 +tp92136 +a(g92133 +g92135 +S'on' +p92137 +tp92138 +a(g92135 +g92137 +S'wood' +p92139 +tp92140 +a(g92137 +g92139 +S'and' +p92141 +tp92142 +a(g92139 +g92141 +S'fabric' +p92143 +tp92144 +a(g92141 +g92143 +S'alike' +p92145 +tp92146 +a(g92143 +g92145 +S'was' +p92147 +tp92148 +a(g92145 +g92147 +S'a' +p92149 +tp92150 +a(g92147 +g92149 +S'warm' +p92151 +tp92152 +a(g92149 +g92151 +S'brown' +p92153 +tp92154 +a(g92151 +g92153 +S'made' +p92155 +tp92156 +a(g92153 +g92155 +S'from' +p92157 +tp92158 +a(g92155 +g92157 +S'butternut' +p92159 +tp92160 +a(g92157 +g92159 +S'bark.' +p92161 +tp92162 +a(g92159 +g92161 +S'though' +p92163 +tp92164 +a(g92161 +g92163 +S'subdued' +p92165 +tp92166 +a(g92163 +g92165 +S'colors' +p92167 +tp92168 +a(g92165 +g92167 +S'reflect' +p92169 +tp92170 +a(g92167 +g92169 +S'the' +p92171 +tp92172 +a(g92169 +g92171 +S'humble,' +p92173 +tp92174 +a(g92171 +g92173 +S'self-effacing' +p92175 +tp92176 +a(g92173 +g92175 +S'shaker' +p92177 +tp92178 +a(g92175 +g92177 +S'spirit,' +p92179 +tp92180 +a(g92177 +g92179 +S'bright' +p92181 +tp92182 +a(g92179 +g92181 +S'colors' +p92183 +tp92184 +a(g92181 +g92183 +S'were' +p92185 +tp92186 +a(g92183 +g92185 +S'not' +p92187 +tp92188 +a(g92185 +g92187 +S'eliminated' +p92189 +tp92190 +a(g92187 +g92189 +S'entirely.' +p92191 +tp92192 +a(g92189 +g92191 +S'the' +p92193 +tp92194 +a(g92191 +g92193 +S"woman's" +p92195 +tp92196 +a(g92193 +g92195 +S'costume' +p92197 +tp92198 +a(g92195 +g92197 +S'has' +p92199 +tp92200 +a(g92197 +g92199 +S'tight,' +p92201 +tp92202 +a(g92199 +g92201 +S'narrow' +p92203 +tp92204 +a(g92201 +g92203 +S'sleeves,' +p92205 +tp92206 +a(g92203 +g92205 +S'a' +p92207 +tp92208 +a(g92205 +g92207 +S'triangular' +p92209 +tp92210 +a(g92207 +g92209 +S'kerchief,' +p92211 +tp92212 +a(g92209 +g92211 +S'and' +p92213 +tp92214 +a(g92211 +g92213 +S'a' +p92215 +tp92216 +a(g92213 +g92215 +S'bell-shaped' +p92217 +tp92218 +a(g92215 +g92217 +S'skirt' +p92219 +tp92220 +a(g92217 +g92219 +S'that' +p92221 +tp92222 +a(g92219 +g92221 +S'completely' +p92223 +tp92224 +a(g92221 +g92223 +S'obscures' +p92225 +tp92226 +a(g92223 +g92225 +S'the' +p92227 +tp92228 +a(g92225 +g92227 +S'figure.' +p92229 +tp92230 +a(g92227 +g92229 +S'even' +p92231 +tp92232 +a(g92229 +g92231 +S'so,' +p92233 +tp92234 +a(g92231 +g92233 +S'severity' +p92235 +tp92236 +a(g92233 +g92235 +S'is' +p92237 +tp92238 +a(g92235 +g92237 +S'relieved' +p92239 +tp92240 +a(g92237 +g92239 +S'through' +p92241 +tp92242 +a(g92239 +g92241 +S'the' +p92243 +tp92244 +a(g92241 +g92243 +S'use' +p92245 +tp92246 +a(g92243 +g92245 +S'of' +p92247 +tp92248 +a(g92245 +g92247 +S'white' +p92249 +tp92250 +a(g92247 +g92249 +S'and' +p92251 +tp92252 +a(g92249 +g92251 +S'orange' +p92253 +tp92254 +a(g92251 +g92253 +S'with' +p92255 +tp92256 +a(g92253 +g92255 +S'blue' +p92257 +tp92258 +a(g92255 +g92257 +S'trimmings.' +p92259 +tp92260 +a(g92257 +g92259 +S'in' +p92261 +tp92262 +a(g92259 +g92261 +S'keeping' +p92263 +tp92264 +a(g92261 +g92263 +S'with' +p92265 +tp92266 +a(g92263 +g92265 +S'their' +p92267 +tp92268 +a(g92265 +g92267 +S'religious' +p92269 +tp92270 +a(g92267 +g92269 +S'beliefs,' +p92271 +tp92272 +a(g92269 +g92271 +S'shakers' +p92273 +tp92274 +a(g92271 +g92273 +S'rejected' +p92275 +tp92276 +a(g92273 +g92275 +S'individualism' +p92277 +tp92278 +a(g92275 +g92277 +S'in' +p92279 +tp92280 +a(g92277 +g92279 +S'costume.' +p92281 +tp92282 +a(g92279 +g92281 +S'the' +p92283 +tp92284 +a(g92281 +g92283 +S'other' +p92285 +tp92286 +a(g92283 +g92285 +S'form' +p92287 +tp92288 +a(g92285 +g92287 +S'of' +p92289 +tp92290 +a(g92287 +g92289 +S'artistic' +p92291 +tp92292 +a(g92289 +g92291 +S'expression' +p92293 +tp92294 +a(g92291 +g92293 +S'most' +p92295 +tp92296 +a(g92293 +g92295 +S'common' +p92297 +tp92298 +a(g92295 +g92297 +S'to' +p92299 +tp92300 +a(g92297 +g92299 +S'colonial' +p92301 +tp92302 +a(g92299 +g92301 +S'new' +p92303 +tp92304 +a(g92301 +g92303 +S'mexico' +p92305 +tp92306 +a(g92303 +g92305 +S'was' +p92307 +tp92308 +a(g92305 +g92307 +S'the' +p92309 +tp92310 +a(g92307 +g92309 +S'"bulto."' +p92311 +tp92312 +a(g92309 +g92311 +S'also' +p92313 +tp92314 +a(g92311 +g92313 +S'made' +p92315 +tp92316 +a(g92313 +g92315 +S'by' +p92317 +tp92318 +a(g92315 +g92317 +S'the' +p92319 +tp92320 +a(g92317 +g92319 +S'"santeros,"' +p92321 +tp92322 +a(g92319 +g92321 +S'these' +p92323 +tp92324 +a(g92321 +g92323 +S'are' +p92325 +tp92326 +a(g92323 +g92325 +S'small' +p92327 +tp92328 +a(g92325 +g92327 +S'carvings' +p92329 +tp92330 +a(g92327 +g92329 +S'in' +p92331 +tp92332 +a(g92329 +g92331 +S'the' +p92333 +tp92334 +a(g92331 +g92333 +S'round' +p92335 +tp92336 +a(g92333 +g92335 +S'representing' +p92337 +tp92338 +a(g92335 +g92337 +S'a' +p92339 +tp92340 +a(g92337 +g92339 +S'single' +p92341 +tp92342 +a(g92339 +g92341 +S'religious' +p92343 +tp92344 +a(g92341 +g92343 +S'figure' +p92345 +tp92346 +a(g92343 +g92345 +S'or' +p92347 +tp92348 +a(g92345 +g92347 +S'a' +p92349 +tp92350 +a(g92347 +g92349 +S'group.' +p92351 +tp92352 +a(g92349 +g92351 +S'usually' +p92353 +tp92354 +a(g92351 +g92353 +S'made' +p92355 +tp92356 +a(g92353 +g92355 +S'of' +p92357 +tp92358 +a(g92355 +g92357 +S'cottonwood' +p92359 +tp92360 +a(g92357 +g92359 +S'roots' +p92361 +tp92362 +a(g92359 +g92361 +S'or' +p92363 +tp92364 +a(g92361 +g92363 +S'pine,' +p92365 +tp92366 +a(g92363 +g92365 +S'the' +p92367 +tp92368 +a(g92365 +g92367 +S'figures' +p92369 +tp92370 +a(g92367 +g92369 +S'were' +p92371 +tp92372 +a(g92369 +g92371 +S'covered' +p92373 +tp92374 +a(g92371 +g92373 +S'with' +p92375 +tp92376 +a(g92373 +g92375 +S'gesso' +p92377 +tp92378 +a(g92375 +g92377 +S'ground' +p92379 +tp92380 +a(g92377 +g92379 +S'and' +p92381 +tp92382 +a(g92379 +g92381 +S'painted.' +p92383 +tp92384 +a(g92381 +g92383 +S'this' +p92385 +tp92386 +a(g92383 +g92385 +S'"bulto"' +p92387 +tp92388 +a(g92385 +g92387 +S'depicts' +p92389 +tp92390 +a(g92387 +g92389 +S'the' +p92391 +tp92392 +a(g92389 +g92391 +S'holy' +p92393 +tp92394 +a(g92391 +g92393 +S'trinity.' +p92395 +tp92396 +a(g92393 +g92395 +S'here,' +p92397 +tp92398 +a(g92395 +g92397 +S'the' +p92399 +tp92400 +a(g92397 +g92399 +S'three' +p92401 +tp92402 +a(g92399 +g92401 +S'figures' +p92403 +tp92404 +a(g92401 +g92403 +S'seem' +p92405 +tp92406 +a(g92403 +g92405 +S'grown' +p92407 +tp92408 +a(g92405 +g92407 +S'together,' +p92409 +tp92410 +a(g92407 +g92409 +S'giving' +p92411 +tp92412 +a(g92409 +g92411 +S'additional' +p92413 +tp92414 +a(g92411 +g92413 +S'emphasis' +p92415 +tp92416 +a(g92413 +g92415 +S'to' +p92417 +tp92418 +a(g92415 +g92417 +S'the' +p92419 +tp92420 +a(g92417 +g92419 +S'idea' +p92421 +tp92422 +a(g92419 +g92421 +S'of' +p92423 +tp92424 +a(g92421 +g92423 +S'the' +p92425 +tp92426 +a(g92423 +g92425 +S'trinity.' +p92427 +tp92428 +a(g92425 +g92427 +S'a' +p92429 +tp92430 +a(g92427 +g92429 +S'knotted' +p92431 +tp92432 +a(g92429 +g92431 +S'leather' +p92433 +tp92434 +a(g92431 +g92433 +S'thong' +p92435 +tp92436 +a(g92433 +g92435 +S'is' +p92437 +tp92438 +a(g92435 +g92437 +S'tied' +p92439 +tp92440 +a(g92437 +g92439 +S'around' +p92441 +tp92442 +a(g92439 +g92441 +S'the' +p92443 +tp92444 +a(g92441 +g92443 +S'figures.' +p92445 +tp92446 +a(g92443 +g92445 +S'because' +p92447 +tp92448 +a(g92445 +g92447 +S'efficiency' +p92449 +tp92450 +a(g92447 +g92449 +S'and' +p92451 +tp92452 +a(g92449 +g92451 +S'order' +p92453 +tp92454 +a(g92451 +g92453 +S'were' +p92455 +tp92456 +a(g92453 +g92455 +S'dominant' +p92457 +tp92458 +a(g92455 +g92457 +S'themes' +p92459 +tp92460 +a(g92457 +g92459 +S'in' +p92461 +tp92462 +a(g92459 +g92461 +S'shaker' +p92463 +tp92464 +a(g92461 +g92463 +S'life,' +p92465 +tp92466 +a(g92463 +g92465 +S'many' +p92467 +tp92468 +a(g92465 +g92467 +S'types' +p92469 +tp92470 +a(g92467 +g92469 +S'of' +p92471 +tp92472 +a(g92469 +g92471 +S'cabinets' +p92473 +tp92474 +a(g92471 +g92473 +S'and' +p92475 +tp92476 +a(g92473 +g92475 +S'chests' +p92477 +tp92478 +a(g92475 +g92477 +S'were' +p92479 +tp92480 +a(g92477 +g92479 +S'built' +p92481 +tp92482 +a(g92479 +g92481 +S'for' +p92483 +tp92484 +a(g92481 +g92483 +S'storage.' +p92485 +tp92486 +a(g92483 +g92485 +S'this' +p92487 +tp92488 +a(g92485 +g92487 +S'cabinet' +p92489 +tp92490 +a(g92487 +g92489 +S'is' +p92491 +tp92492 +a(g92489 +g92491 +S'also' +p92493 +tp92494 +a(g92491 +g92493 +S'a' +p92495 +tp92496 +a(g92493 +g92495 +S'secretary.' +p92497 +tp92498 +a(g92495 +g92497 +S'it' +p92499 +tp92500 +a(g92497 +g92499 +S'was' +p92501 +tp92502 +a(g92499 +g92501 +S'used' +p92503 +tp92504 +a(g92501 +g92503 +S'by' +p92505 +tp92506 +a(g92503 +g92505 +S'trustees' +p92507 +tp92508 +a(g92505 +g92507 +S'of' +p92509 +tp92510 +a(g92507 +g92509 +S'the' +p92511 +tp92512 +a(g92509 +g92511 +S'community' +p92513 +tp92514 +a(g92511 +g92513 +S'who' +p92515 +tp92516 +a(g92513 +g92515 +S'were' +p92517 +tp92518 +a(g92515 +g92517 +S'responsible' +p92519 +tp92520 +a(g92517 +g92519 +S'for' +p92521 +tp92522 +a(g92519 +g92521 +S'all' +p92523 +tp92524 +a(g92521 +g92523 +S'business' +p92525 +tp92526 +a(g92523 +g92525 +S'matters' +p92527 +tp92528 +a(g92525 +g92527 +S'with' +p92529 +tp92530 +a(g92527 +g92529 +S'the' +p92531 +tp92532 +a(g92529 +g92531 +S'outside' +p92533 +tp92534 +a(g92531 +g92533 +S'world' +p92535 +tp92536 +a(g92533 +g92535 +S'and' +p92537 +tp92538 +a(g92535 +g92537 +S'with' +p92539 +tp92540 +a(g92537 +g92539 +S'other' +p92541 +tp92542 +a(g92539 +g92541 +S'shaker' +p92543 +tp92544 +a(g92541 +g92543 +S'communities.' +p92545 +tp92546 +a(g92543 +g92545 +S'because' +p92547 +tp92548 +a(g92545 +g92547 +S'the' +p92549 +tp92550 +a(g92547 +g92549 +S'cabinets' +p92551 +tp92552 +a(g92549 +g92551 +S'and' +p92553 +tp92554 +a(g92551 +g92553 +S'drawers' +p92555 +tp92556 +a(g92553 +g92555 +S'are' +p92557 +tp92558 +a(g92555 +g92557 +S'identical' +p92559 +tp92560 +a(g92557 +g92559 +S'on' +p92561 +tp92562 +a(g92559 +g92561 +S'each' +p92563 +tp92564 +a(g92561 +g92563 +S'side,' +p92565 +tp92566 +a(g92563 +g92565 +S'the' +p92567 +tp92568 +a(g92565 +g92567 +S'secretary' +p92569 +tp92570 +a(g92567 +g92569 +S'could' +p92571 +tp92572 +a(g92569 +g92571 +S'be' +p92573 +tp92574 +a(g92571 +g92573 +S'used' +p92575 +tp92576 +a(g92573 +g92575 +S'by' +p92577 +tp92578 +a(g92575 +g92577 +S'two' +p92579 +tp92580 +a(g92577 +g92579 +S'trustees.' +p92581 +tp92582 +a(g92579 +g92581 +S'the' +p92583 +tp92584 +a(g92581 +g92583 +S'fall' +p92585 +tp92586 +a(g92583 +g92585 +S'front,' +p92587 +tp92588 +a(g92585 +g92587 +S'used' +p92589 +tp92590 +a(g92587 +g92589 +S'as' +p92591 +tp92592 +a(g92589 +g92591 +S'a' +p92593 +tp92594 +a(g92591 +g92593 +S'writing' +p92595 +tp92596 +a(g92593 +g92595 +S'surface,' +p92597 +tp92598 +a(g92595 +g92597 +S'provided' +p92599 +tp92600 +a(g92597 +g92599 +S'sufficient' +p92601 +tp92602 +a(g92599 +g92601 +S'space' +p92603 +tp92604 +a(g92601 +g92603 +S'for' +p92605 +tp92606 +a(g92603 +g92605 +S'both' +p92607 +tp92608 +a(g92605 +g92607 +S'to' +p92609 +tp92610 +a(g92607 +g92609 +S'work' +p92611 +tp92612 +a(g92609 +g92611 +S'at' +p92613 +tp92614 +a(g92611 +g92613 +S'the' +p92615 +tp92616 +a(g92613 +g92615 +S'same' +p92617 +tp92618 +a(g92615 +g92617 +S'time.' +p92619 +tp92620 +a(g92617 +g92619 +S'because' +p92621 +tp92622 +a(g92619 +g92621 +S'storage' +p92623 +tp92624 +a(g92621 +g92623 +S'was' +p92625 +tp92626 +a(g92623 +g92625 +S'important,' +p92627 +tp92628 +a(g92625 +g92627 +S'the' +p92629 +tp92630 +a(g92627 +g92629 +S'piece' +p92631 +tp92632 +a(g92629 +g92631 +S'is' +p92633 +tp92634 +a(g92631 +g92633 +S'equipped' +p92635 +tp92636 +a(g92633 +g92635 +S'with' +p92637 +tp92638 +a(g92635 +g92637 +S'ample' +p92639 +tp92640 +a(g92637 +g92639 +S'drawers' +p92641 +tp92642 +a(g92639 +g92641 +S'and' +p92643 +tp92644 +a(g92641 +g92643 +S'cupboards' +p92645 +tp92646 +a(g92643 +g92645 +S'for' +p92647 +tp92648 +a(g92645 +g92647 +S'efficient' +p92649 +tp92650 +a(g92647 +g92649 +S'organization' +p92651 +tp92652 +a(g92649 +g92651 +S'of' +p92653 +tp92654 +a(g92651 +g92653 +S'papers' +p92655 +tp92656 +a(g92653 +g92655 +S'and' +p92657 +tp92658 +a(g92655 +g92657 +S'documents.' +p92659 +tp92660 +a(g92657 +g92659 +S'an' +p92661 +tp92662 +a(g92659 +g92661 +S'interesting' +p92663 +tp92664 +a(g92661 +g92663 +S'feature' +p92665 +tp92666 +a(g92663 +g92665 +S'of' +p92667 +tp92668 +a(g92665 +g92667 +S'shaker' +p92669 +tp92670 +a(g92667 +g92669 +S'secretaries' +p92671 +tp92672 +a(g92669 +g92671 +S'is' +p92673 +tp92674 +a(g92671 +g92673 +S'that' +p92675 +tp92676 +a(g92673 +g92675 +S'craftsmen' +p92677 +tp92678 +a(g92675 +g92677 +S'found' +p92679 +tp92680 +a(g92677 +g92679 +S'no' +p92681 +tp92682 +a(g92679 +g92681 +S'advantage' +p92683 +tp92684 +a(g92681 +g92683 +S'in' +p92685 +tp92686 +a(g92683 +g92685 +S'sacrificing' +p92687 +tp92688 +a(g92685 +g92687 +S'drawer' +p92689 +tp92690 +a(g92687 +g92689 +S'space' +p92691 +tp92692 +a(g92689 +g92691 +S'for' +p92693 +tp92694 +a(g92691 +g92693 +S'the' +p92695 +tp92696 +a(g92693 +g92695 +S'sake' +p92697 +tp92698 +a(g92695 +g92697 +S'of' +p92699 +tp92700 +a(g92697 +g92699 +S'recessed' +p92701 +tp92702 +a(g92699 +g92701 +S'kneeholes.' +p92703 +tp92704 +a(g92701 +g92703 +S'chests,' +p92705 +tp92706 +a(g92703 +g92705 +S'like' +p92707 +tp92708 +a(g92705 +g92707 +S'this' +p92709 +tp92710 +a(g92707 +g92709 +S'one,' +p92711 +tp92712 +a(g92709 +g92711 +S'were' +p92713 +tp92714 +a(g92711 +g92713 +S'made' +p92715 +tp92716 +a(g92713 +g92715 +S'for' +p92717 +tp92718 +a(g92715 +g92717 +S'storage' +p92719 +tp92720 +a(g92717 +g92719 +S'of' +p92721 +tp92722 +a(g92719 +g92721 +S'blankets' +p92723 +tp92724 +a(g92721 +g92723 +S'and' +p92725 +tp92726 +a(g92723 +g92725 +S'other' +p92727 +tp92728 +a(g92725 +g92727 +S'bulky' +p92729 +tp92730 +a(g92727 +g92729 +S'items.' +p92731 +tp92732 +a(g92729 +g92731 +S'of' +p92733 +tp92734 +a(g92731 +g92733 +S'the' +p92735 +tp92736 +a(g92733 +g92735 +S'traditional' +p92737 +tp92738 +a(g92735 +g92737 +S'features' +p92739 +tp92740 +a(g92737 +g92739 +S'of' +p92741 +tp92742 +a(g92739 +g92741 +S'chest' +p92743 +tp92744 +a(g92741 +g92743 +S'design,' +p92745 +tp92746 +a(g92743 +g92745 +S'only' +p92747 +tp92748 +a(g92745 +g92747 +S'the' +p92749 +tp92750 +a(g92747 +g92749 +S'slightly' +p92751 +tp92752 +a(g92749 +g92751 +S'projecting' +p92753 +tp92754 +a(g92751 +g92753 +S'lid,' +p92755 +tp92756 +a(g92753 +g92755 +S'the' +p92757 +tp92758 +a(g92755 +g92757 +S'reduced' +p92759 +tp92760 +a(g92757 +g92759 +S'keyhole,' +p92761 +tp92762 +a(g92759 +g92761 +S'and' +p92763 +tp92764 +a(g92761 +g92763 +S'the' +p92765 +tp92766 +a(g92763 +g92765 +S'slightly' +p92767 +tp92768 +a(g92765 +g92767 +S'projecting' +p92769 +tp92770 +a(g92767 +g92769 +S'base' +p92771 +tp92772 +a(g92769 +g92771 +S'remain.' +p92773 +tp92774 +a(g92771 +g92773 +S'in' +p92775 +tp92776 +a(g92773 +g92775 +S'the' +p92777 +tp92778 +a(g92775 +g92777 +S'place' +p92779 +tp92780 +a(g92777 +g92779 +S'of' +p92781 +tp92782 +a(g92779 +g92781 +S'carved' +p92783 +tp92784 +a(g92781 +g92783 +S'or' +p92785 +tp92786 +a(g92783 +g92785 +S'painted' +p92787 +tp92788 +a(g92785 +g92787 +S'panels' +p92789 +tp92790 +a(g92787 +g92789 +S'common' +p92791 +tp92792 +a(g92789 +g92791 +S'in' +p92793 +tp92794 +a(g92791 +g92793 +S'chests' +p92795 +tp92796 +a(g92793 +g92795 +S'of' +p92797 +tp92798 +a(g92795 +g92797 +S'the' +p92799 +tp92800 +a(g92797 +g92799 +S'outside' +p92801 +tp92802 +a(g92799 +g92801 +S'world,' +p92803 +tp92804 +a(g92801 +g92803 +S'shakers' +p92805 +tp92806 +a(g92803 +g92805 +S'allowed' +p92807 +tp92808 +a(g92805 +g92807 +S'the' +p92809 +tp92810 +a(g92807 +g92809 +S'grain' +p92811 +tp92812 +a(g92809 +g92811 +S'of' +p92813 +tp92814 +a(g92811 +g92813 +S'the' +p92815 +tp92816 +a(g92813 +g92815 +S'wood' +p92817 +tp92818 +a(g92815 +g92817 +S'alone' +p92819 +tp92820 +a(g92817 +g92819 +S'to' +p92821 +tp92822 +a(g92819 +g92821 +S'decorate' +p92823 +tp92824 +a(g92821 +g92823 +S'the' +p92825 +tp92826 +a(g92823 +g92825 +S'immaculate' +p92827 +tp92828 +a(g92825 +g92827 +S'expanse' +p92829 +tp92830 +a(g92827 +g92829 +S'of' +p92831 +tp92832 +a(g92829 +g92831 +S'broad' +p92833 +tp92834 +a(g92831 +g92833 +S'surface.' +p92835 +tp92836 +a(g92833 +g92835 +S'shaker' +p92837 +tp92838 +a(g92835 +g92837 +S'simplicity' +p92839 +tp92840 +a(g92837 +g92839 +S'is' +p92841 +tp92842 +a(g92839 +g92841 +S'nowhere' +p92843 +tp92844 +a(g92841 +g92843 +S'more' +p92845 +tp92846 +a(g92843 +g92845 +S'evident' +p92847 +tp92848 +a(g92845 +g92847 +S'than' +p92849 +tp92850 +a(g92847 +g92849 +S'in' +p92851 +tp92852 +a(g92849 +g92851 +S'chair' +p92853 +tp92854 +a(g92851 +g92853 +S'design.' +p92855 +tp92856 +a(g92853 +g92855 +S'outwardly' +p92857 +tp92858 +a(g92855 +g92857 +S'straightforward,' +p92859 +tp92860 +a(g92857 +g92859 +S'each' +p92861 +tp92862 +a(g92859 +g92861 +S'element' +p92863 +tp92864 +a(g92861 +g92863 +S'of' +p92865 +tp92866 +a(g92863 +g92865 +S'the' +p92867 +tp92868 +a(g92865 +g92867 +S'design' +p92869 +tp92870 +a(g92867 +g92869 +S'was' +p92871 +tp92872 +a(g92869 +g92871 +S'carefully' +p92873 +tp92874 +a(g92871 +g92873 +S'considered' +p92875 +tp92876 +a(g92873 +g92875 +S'for' +p92877 +tp92878 +a(g92875 +g92877 +S'greatest' +p92879 +tp92880 +a(g92877 +g92879 +S'efficiency' +p92881 +tp92882 +a(g92879 +g92881 +S'in' +p92883 +tp92884 +a(g92881 +g92883 +S'use.' +p92885 +tp92886 +a(g92883 +g92885 +S'this' +p92887 +tp92888 +a(g92885 +g92887 +S'is' +p92889 +tp92890 +a(g92887 +g92889 +S'a' +p92891 +tp92892 +a(g92889 +g92891 +S'tilting' +p92893 +tp92894 +a(g92891 +g92893 +S'chair' +p92895 +tp92896 +a(g92893 +g92895 +S'named' +p92897 +tp92898 +a(g92895 +g92897 +S'for' +p92899 +tp92900 +a(g92897 +g92899 +S'the' +p92901 +tp92902 +a(g92899 +g92901 +S'device' +p92903 +tp92904 +a(g92901 +g92903 +S'attached' +p92905 +tp92906 +a(g92903 +g92905 +S'to' +p92907 +tp92908 +a(g92905 +g92907 +S'the' +p92909 +tp92910 +a(g92907 +g92909 +S'back' +p92911 +tp92912 +a(g92909 +g92911 +S'legs.' +p92913 +tp92914 +a(g92911 +g92913 +S'a' +p92915 +tp92916 +a(g92913 +g92915 +S'ball-and-socket' +p92917 +tp92918 +a(g92915 +g92917 +S'joint' +p92919 +tp92920 +a(g92917 +g92919 +S'was' +p92921 +tp92922 +a(g92919 +g92921 +S'invented' +p92923 +tp92924 +a(g92921 +g92923 +S'by' +p92925 +tp92926 +a(g92923 +g92925 +S'the' +p92927 +tp92928 +a(g92925 +g92927 +S'shakers' +p92929 +tp92930 +a(g92927 +g92929 +S'so' +p92931 +tp92932 +a(g92929 +g92931 +S'that' +p92933 +tp92934 +a(g92931 +g92933 +S'the' +p92935 +tp92936 +a(g92933 +g92935 +S'chair' +p92937 +tp92938 +a(g92935 +g92937 +S'could' +p92939 +tp92940 +a(g92937 +g92939 +S'be' +p92941 +tp92942 +a(g92939 +g92941 +S'tilted' +p92943 +tp92944 +a(g92941 +g92943 +S'backward' +p92945 +tp92946 +a(g92943 +g92945 +S'without' +p92947 +tp92948 +a(g92945 +g92947 +S'having' +p92949 +tp92950 +a(g92947 +g92949 +S'the' +p92951 +tp92952 +a(g92949 +g92951 +S'legs' +p92953 +tp92954 +a(g92951 +g92953 +S'scratch' +p92955 +tp92956 +a(g92953 +g92955 +S'the' +p92957 +tp92958 +a(g92955 +g92957 +S'floor' +p92959 +tp92960 +a(g92957 +g92959 +S'or' +p92961 +tp92962 +a(g92959 +g92961 +S'cause' +p92963 +tp92964 +a(g92961 +g92963 +S'unnecessary' +p92965 +tp92966 +a(g92963 +g92965 +S'wear' +p92967 +tp92968 +a(g92965 +g92967 +S'of' +p92969 +tp92970 +a(g92967 +g92969 +S'the' +p92971 +tp92972 +a(g92969 +g92971 +S'rugs.' +p92973 +tp92974 +a(g92971 +g92973 +S'shaker' +p92975 +tp92976 +a(g92973 +g92975 +S'chairs' +p92977 +tp92978 +a(g92975 +g92977 +S'were' +p92979 +tp92980 +a(g92977 +g92979 +S'famous' +p92981 +tp92982 +a(g92979 +g92981 +S'for' +p92983 +tp92984 +a(g92981 +g92983 +S'being' +p92985 +tp92986 +a(g92983 +g92985 +S'light' +p92987 +tp92988 +a(g92985 +g92987 +S'in' +p92989 +tp92990 +a(g92987 +g92989 +S'weight' +p92991 +tp92992 +a(g92989 +g92991 +S'yet' +p92993 +tp92994 +a(g92991 +g92993 +S'sturdy.' +p92995 +tp92996 +a(g92993 +g92995 +S'because' +p92997 +tp92998 +a(g92995 +g92997 +S'they' +p92999 +tp93000 +a(g92997 +g92999 +S'were' +p93001 +tp93002 +a(g92999 +g93001 +S'light' +p93003 +tp93004 +a(g93001 +g93003 +S'they' +p93005 +tp93006 +a(g93003 +g93005 +S'could' +p93007 +tp93008 +a(g93005 +g93007 +S'be' +p93009 +tp93010 +a(g93007 +g93009 +S'hung' +p93011 +tp93012 +a(g93009 +g93011 +S'on' +p93013 +tp93014 +a(g93011 +g93013 +S'the' +p93015 +tp93016 +a(g93013 +g93015 +S'walls' +p93017 +tp93018 +a(g93015 +g93017 +S'while' +p93019 +tp93020 +a(g93017 +g93019 +S'the' +p93021 +tp93022 +a(g93019 +g93021 +S'floors' +p93023 +tp93024 +a(g93021 +g93023 +S'were' +p93025 +tp93026 +a(g93023 +g93025 +S'being' +p93027 +tp93028 +a(g93025 +g93027 +S'cleaned;' +p93029 +tp93030 +a(g93027 +g93029 +S'their' +p93031 +tp93032 +a(g93029 +g93031 +S'sturdiness' +p93033 +tp93034 +a(g93031 +g93033 +S'provided' +p93035 +tp93036 +a(g93033 +g93035 +S'durability' +p93037 +tp93038 +a(g93035 +g93037 +S'over' +p93039 +tp93040 +a(g93037 +g93039 +S'many' +p93041 +tp93042 +a(g93039 +g93041 +S'years.' +p93043 +tp93044 +a(g93041 +g93043 +S'the' +p93045 +tp93046 +a(g93043 +g93045 +S'seat' +p93047 +tp93048 +a(g93045 +g93047 +S'of' +p93049 +tp93050 +a(g93047 +g93049 +S'this' +p93051 +tp93052 +a(g93049 +g93051 +S'chair' +p93053 +tp93054 +a(g93051 +g93053 +S'is' +p93055 +tp93056 +a(g93053 +g93055 +S'made' +p93057 +tp93058 +a(g93055 +g93057 +S'of' +p93059 +tp93060 +a(g93057 +g93059 +S'cane.' +p93061 +tp93062 +a(g93059 +g93061 +S'caned' +p93063 +tp93064 +a(g93061 +g93063 +S'chairs' +p93065 +tp93066 +a(g93063 +g93065 +S'were' +p93067 +tp93068 +a(g93065 +g93067 +S'uncommon' +p93069 +tp93070 +a(g93067 +g93069 +S'except' +p93071 +tp93072 +a(g93069 +g93071 +S'at' +p93073 +tp93074 +a(g93071 +g93073 +S'the' +p93075 +tp93076 +a(g93073 +g93075 +S'colony' +p93077 +tp93078 +a(g93075 +g93077 +S'of' +p93079 +tp93080 +a(g93077 +g93079 +S'enfield,' +p93081 +tp93082 +a(g93079 +g93081 +S'new' +p93083 +tp93084 +a(g93081 +g93083 +S'hampshire.' +p93085 +tp93086 +a(g93083 +g93085 +S'this' +p93087 +tp93088 +a(g93085 +g93087 +S'owl' +p93089 +tp93090 +a(g93087 +g93089 +S'was' +p93091 +tp93092 +a(g93089 +g93091 +S'whittled' +p93093 +tp93094 +a(g93091 +g93093 +S'by' +p93095 +tp93096 +a(g93093 +g93095 +S'aaron' +p93097 +tp93098 +a(g93095 +g93097 +S'mountz,' +p93099 +tp93100 +a(g93097 +g93099 +S'a' +p93101 +tp93102 +a(g93099 +g93101 +S'friend' +p93103 +tp93104 +a(g93101 +g93103 +S'and' +p93105 +tp93106 +a(g93103 +g93105 +S'follower' +p93107 +tp93108 +a(g93105 +g93107 +S'of' +p93109 +tp93110 +a(g93107 +g93109 +S"schimmel's." +p93111 +tp93112 +a(g93109 +g93111 +S'birds' +p93113 +tp93114 +a(g93111 +g93113 +S'were' +p93115 +tp93116 +a(g93113 +g93115 +S'a' +p93117 +tp93118 +a(g93115 +g93117 +S'favorite' +p93119 +tp93120 +a(g93117 +g93119 +S'theme' +p93121 +tp93122 +a(g93119 +g93121 +S'of' +p93123 +tp93124 +a(g93121 +g93123 +S'both' +p93125 +tp93126 +a(g93123 +g93125 +S'wood-carvers.' +p93127 +tp93128 +a(g93125 +g93127 +S'this' +p93129 +tp93130 +a(g93127 +g93129 +S'one' +p93131 +tp93132 +a(g93129 +g93131 +S'is' +p93133 +tp93134 +a(g93131 +g93133 +S'done' +p93135 +tp93136 +a(g93133 +g93135 +S'with' +p93137 +tp93138 +a(g93135 +g93137 +S'a' +p93139 +tp93140 +a(g93137 +g93139 +S'naturalism' +p93141 +tp93142 +a(g93139 +g93141 +S'of' +p93143 +tp93144 +a(g93141 +g93143 +S'form' +p93145 +tp93146 +a(g93143 +g93145 +S'that' +p93147 +tp93148 +a(g93145 +g93147 +S'is' +p93149 +tp93150 +a(g93147 +g93149 +S'enhanced' +p93151 +tp93152 +a(g93149 +g93151 +S'with' +p93153 +tp93154 +a(g93151 +g93153 +S'the' +p93155 +tp93156 +a(g93153 +g93155 +S'detail' +p93157 +tp93158 +a(g93155 +g93157 +S'of' +p93159 +tp93160 +a(g93157 +g93159 +S'stylized' +p93161 +tp93162 +a(g93159 +g93161 +S'feathers.' +p93163 +tp93164 +a(g93161 +g93163 +S'by' +p93165 +tp93166 +a(g93163 +g93165 +S'careful' +p93167 +tp93168 +a(g93165 +g93167 +S'cross-hatching,' +p93169 +tp93170 +a(g93167 +g93169 +S'each' +p93171 +tp93172 +a(g93169 +g93171 +S'feather' +p93173 +tp93174 +a(g93171 +g93173 +S'is' +p93175 +tp93176 +a(g93173 +g93175 +S'represented' +p93177 +tp93178 +a(g93175 +g93177 +S'in' +p93179 +tp93180 +a(g93177 +g93179 +S'a' +p93181 +tp93182 +a(g93179 +g93181 +S'way' +p93183 +tp93184 +a(g93181 +g93183 +S'that' +p93185 +tp93186 +a(g93183 +g93185 +S'is' +p93187 +tp93188 +a(g93185 +g93187 +S'lively' +p93189 +tp93190 +a(g93187 +g93189 +S'while' +p93191 +tp93192 +a(g93189 +g93191 +S'providing' +p93193 +tp93194 +a(g93191 +g93193 +S'an' +p93195 +tp93196 +a(g93193 +g93195 +S'interesting' +p93197 +tp93198 +a(g93195 +g93197 +S'surface' +p93199 +tp93200 +a(g93197 +g93199 +S'texture.' +p93201 +tp93202 +a(g93199 +g93201 +S'mountz' +p93203 +tp93204 +a(g93201 +g93203 +S'has' +p93205 +tp93206 +a(g93203 +g93205 +S'rendered' +p93207 +tp93208 +a(g93205 +g93207 +S'this' +p93209 +tp93210 +a(g93207 +g93209 +S'carving' +p93211 +tp93212 +a(g93209 +g93211 +S'not' +p93213 +tp93214 +a(g93211 +g93213 +S'only' +p93215 +tp93216 +a(g93213 +g93215 +S'as' +p93217 +tp93218 +a(g93215 +g93217 +S'an' +p93219 +tp93220 +a(g93217 +g93219 +S'individual' +p93221 +tp93222 +a(g93219 +g93221 +S'owl,' +p93223 +tp93224 +a(g93221 +g93223 +S'but,' +p93225 +tp93226 +a(g93223 +g93225 +S'by' +p93227 +tp93228 +a(g93225 +g93227 +S'its' +p93229 +tp93230 +a(g93227 +g93229 +S'wise' +p93231 +tp93232 +a(g93229 +g93231 +S'and' +p93233 +tp93234 +a(g93231 +g93233 +S'aloof' +p93235 +tp93236 +a(g93233 +g93235 +S'countenance,' +p93237 +tp93238 +a(g93235 +g93237 +S'as' +p93239 +tp93240 +a(g93237 +g93239 +S'a' +p93241 +tp93242 +a(g93239 +g93241 +S'symbol' +p93243 +tp93244 +a(g93241 +g93243 +S'of' +p93245 +tp93246 +a(g93243 +g93245 +S'owl-ness.' +p93247 +tp93248 +a(g93245 +g93247 +S'though' +p93249 +tp93250 +a(g93247 +g93249 +S'many' +p93251 +tp93252 +a(g93249 +g93251 +S'of' +p93253 +tp93254 +a(g93251 +g93253 +S'his' +p93255 +tp93256 +a(g93253 +g93255 +S'carvings' +p93257 +tp93258 +a(g93255 +g93257 +S'were' +p93259 +tp93260 +a(g93257 +g93259 +S'painted,' +p93261 +tp93262 +a(g93259 +g93261 +S'mountz' +p93263 +tp93264 +a(g93261 +g93263 +S'left' +p93265 +tp93266 +a(g93263 +g93265 +S'this' +p93267 +tp93268 +a(g93265 +g93267 +S'owl' +p93269 +tp93270 +a(g93267 +g93269 +S'in' +p93271 +tp93272 +a(g93269 +g93271 +S'unfinished' +p93273 +tp93274 +a(g93271 +g93273 +S'wood.' +p93275 +tp93276 +a(g93273 +g93275 +S'dower' +p93277 +tp93278 +a(g93275 +g93277 +S'chests' +p93279 +tp93280 +a(g93277 +g93279 +S'were' +p93281 +tp93282 +a(g93279 +g93281 +S'a' +p93283 +tp93284 +a(g93281 +g93283 +S'necessary' +p93285 +tp93286 +a(g93283 +g93285 +S'item' +p93287 +tp93288 +a(g93285 +g93287 +S'for' +p93289 +tp93290 +a(g93287 +g93289 +S'every' +p93291 +tp93292 +a(g93289 +g93291 +S'pennsylvania' +p93293 +tp93294 +a(g93291 +g93293 +S'german' +p93295 +tp93296 +a(g93293 +g93295 +S'girl' +p93297 +tp93298 +a(g93295 +g93297 +S'preparing' +p93299 +tp93300 +a(g93297 +g93299 +S'for' +p93301 +tp93302 +a(g93299 +g93301 +S'marriage.' +p93303 +tp93304 +a(g93301 +g93303 +S'they' +p93305 +tp93306 +a(g93303 +g93305 +S'were' +p93307 +tp93308 +a(g93305 +g93307 +S'used' +p93309 +tp93310 +a(g93307 +g93309 +S'to' +p93311 +tp93312 +a(g93309 +g93311 +S'store' +p93313 +tp93314 +a(g93311 +g93313 +S'the' +p93315 +tp93316 +a(g93313 +g93315 +S'linens,' +p93317 +tp93318 +a(g93315 +g93317 +S'needlework,' +p93319 +tp93320 +a(g93317 +g93319 +S'and' +p93321 +tp93322 +a(g93319 +g93321 +S'household' +p93323 +tp93324 +a(g93321 +g93323 +S'accessories' +p93325 +tp93326 +a(g93323 +g93325 +S'that' +p93327 +tp93328 +a(g93325 +g93327 +S'she' +p93329 +tp93330 +a(g93327 +g93329 +S'collected' +p93331 +tp93332 +a(g93329 +g93331 +S'over' +p93333 +tp93334 +a(g93331 +g93333 +S'the' +p93335 +tp93336 +a(g93333 +g93335 +S'years.' +p93337 +tp93338 +a(g93335 +g93337 +S'like' +p93339 +tp93340 +a(g93337 +g93339 +S'other' +p93341 +tp93342 +a(g93339 +g93341 +S'large' +p93343 +tp93344 +a(g93341 +g93343 +S'pieces' +p93345 +tp93346 +a(g93343 +g93345 +S'of' +p93347 +tp93348 +a(g93345 +g93347 +S'furniture,' +p93349 +tp93350 +a(g93347 +g93349 +S'dower' +p93351 +tp93352 +a(g93349 +g93351 +S'chests' +p93353 +tp93354 +a(g93351 +g93353 +S'were' +p93355 +tp93356 +a(g93353 +g93355 +S'made' +p93357 +tp93358 +a(g93355 +g93357 +S'by' +p93359 +tp93360 +a(g93357 +g93359 +S'the' +p93361 +tp93362 +a(g93359 +g93361 +S'village' +p93363 +tp93364 +a(g93361 +g93363 +S'carpenter' +p93365 +tp93366 +a(g93363 +g93365 +S'or' +p93367 +tp93368 +a(g93365 +g93367 +S'by' +p93369 +tp93370 +a(g93367 +g93369 +S'the' +p93371 +tp93372 +a(g93369 +g93371 +S'farmer' +p93373 +tp93374 +a(g93371 +g93373 +S'himself,' +p93375 +tp93376 +a(g93373 +g93375 +S'but' +p93377 +tp93378 +a(g93375 +g93377 +S'they' +p93379 +tp93380 +a(g93377 +g93379 +S'were' +p93381 +tp93382 +a(g93379 +g93381 +S'painted' +p93383 +tp93384 +a(g93381 +g93383 +S'by' +p93385 +tp93386 +a(g93383 +g93385 +S'an' +p93387 +tp93388 +a(g93385 +g93387 +S'itinerant' +p93389 +tp93390 +a(g93387 +g93389 +S'decorator.' +p93391 +tp93392 +a(g93389 +g93391 +S'usually' +p93393 +tp93394 +a(g93391 +g93393 +S'three' +p93395 +tp93396 +a(g93393 +g93395 +S'to' +p93397 +tp93398 +a(g93395 +g93397 +S'four' +p93399 +tp93400 +a(g93397 +g93399 +S'feet' +p93401 +tp93402 +a(g93399 +g93401 +S'long,' +p93403 +tp93404 +a(g93401 +g93403 +S'they' +p93405 +tp93406 +a(g93403 +g93405 +S'were' +p93407 +tp93408 +a(g93405 +g93407 +S'placed' +p93409 +tp93410 +a(g93407 +g93409 +S'in' +p93411 +tp93412 +a(g93409 +g93411 +S'the' +p93413 +tp93414 +a(g93411 +g93413 +S'bedroom' +p93415 +tp93416 +a(g93413 +g93415 +S'or' +p93417 +tp93418 +a(g93415 +g93417 +S'parlor.' +p93419 +tp93420 +a(g93417 +g93419 +S'dower' +p93421 +tp93422 +a(g93419 +g93421 +S'chests' +p93423 +tp93424 +a(g93421 +g93423 +S'were' +p93425 +tp93426 +a(g93423 +g93425 +S'decorated' +p93427 +tp93428 +a(g93425 +g93427 +S'with' +p93429 +tp93430 +a(g93427 +g93429 +S'traditional' +p93431 +tp93432 +a(g93429 +g93431 +S'symbols:' +p93433 +tp93434 +a(g93431 +g93433 +S'flowers,' +p93435 +tp93436 +a(g93433 +g93435 +S'birds,' +p93437 +tp93438 +a(g93435 +g93437 +S'hearts,' +p93439 +tp93440 +a(g93437 +g93439 +S'scrolls,' +p93441 +tp93442 +a(g93439 +g93441 +S'and' +p93443 +tp93444 +a(g93441 +g93443 +S'geometrical' +p93445 +tp93446 +a(g93443 +g93445 +S'designs.' +p93447 +tp93448 +a(g93445 +g93447 +S'this' +p93449 +tp93450 +a(g93447 +g93449 +S'one,' +p93451 +tp93452 +a(g93449 +g93451 +S'set' +p93453 +tp93454 +a(g93451 +g93453 +S'on' +p93455 +tp93456 +a(g93453 +g93455 +S'bracket' +p93457 +tp93458 +a(g93455 +g93457 +S'feet,' +p93459 +tp93460 +a(g93457 +g93459 +S'displays' +p93461 +tp93462 +a(g93459 +g93461 +S'typically' +p93463 +tp93464 +a(g93461 +g93463 +S'bold' +p93465 +tp93466 +a(g93463 +g93465 +S'and' +p93467 +tp93468 +a(g93465 +g93467 +S'elaborate' +p93469 +tp93470 +a(g93467 +g93469 +S'decoration.' +p93471 +tp93472 +a(g93469 +g93471 +S'the' +p93473 +tp93474 +a(g93471 +g93473 +S'painted' +p93475 +tp93476 +a(g93473 +g93475 +S'panels' +p93477 +tp93478 +a(g93475 +g93477 +S'suggest' +p93479 +tp93480 +a(g93477 +g93479 +S'an' +p93481 +tp93482 +a(g93479 +g93481 +S'architectural' +p93483 +tp93484 +a(g93481 +g93483 +S'arrangement,' +p93485 +tp93486 +a(g93483 +g93485 +S'a' +p93487 +tp93488 +a(g93485 +g93487 +S'common' +p93489 +tp93490 +a(g93487 +g93489 +S'mode' +p93491 +tp93492 +a(g93489 +g93491 +S'of' +p93493 +tp93494 +a(g93491 +g93493 +S'decoration.' +p93495 +tp93496 +a(g93493 +g93495 +S'ornate' +p93497 +tp93498 +a(g93495 +g93497 +S'columns' +p93499 +tp93500 +a(g93497 +g93499 +S'and' +p93501 +tp93502 +a(g93499 +g93501 +S'arches' +p93503 +tp93504 +a(g93501 +g93503 +S'enframered' +p93505 +tp93506 +a(g93503 +g93505 +S'and' +p93507 +tp93508 +a(g93505 +g93507 +S'black' +p93509 +tp93510 +a(g93507 +g93509 +S'flowers' +p93511 +tp93512 +a(g93509 +g93511 +S'growing' +p93513 +tp93514 +a(g93511 +g93513 +S'out' +p93515 +tp93516 +a(g93513 +g93515 +S'of' +p93517 +tp93518 +a(g93515 +g93517 +S'urns.' +p93519 +tp93520 +a(g93517 +g93519 +S'the' +p93521 +tp93522 +a(g93519 +g93521 +S'small' +p93523 +tp93524 +a(g93521 +g93523 +S'central' +p93525 +tp93526 +a(g93523 +g93525 +S'panel' +p93527 +tp93528 +a(g93525 +g93527 +S'was' +p93529 +tp93530 +a(g93527 +g93529 +S'reserved' +p93531 +tp93532 +a(g93529 +g93531 +S'for' +p93533 +tp93534 +a(g93531 +g93533 +S'the' +p93535 +tp93536 +a(g93533 +g93535 +S"bride's" +p93537 +tp93538 +a(g93535 +g93537 +S'name' +p93539 +tp93540 +a(g93537 +g93539 +S'and' +p93541 +tp93542 +a(g93539 +g93541 +S'the' +p93543 +tp93544 +a(g93541 +g93543 +S'date,' +p93545 +tp93546 +a(g93543 +g93545 +S'while' +p93547 +tp93548 +a(g93545 +g93547 +S'the' +p93549 +tp93550 +a(g93547 +g93549 +S'side' +p93551 +tp93552 +a(g93549 +g93551 +S'panels' +p93553 +tp93554 +a(g93551 +g93553 +S'extend' +p93555 +tp93556 +a(g93553 +g93555 +S'the' +p93557 +tp93558 +a(g93555 +g93557 +S'architectural' +p93559 +tp93560 +a(g93557 +g93559 +S'motif.' +p93561 +tp93562 +a(g93559 +g93561 +S'busts' +p93563 +tp93564 +a(g93561 +g93563 +S'or' +p93565 +tp93566 +a(g93563 +g93565 +S'half-length' +p93567 +tp93568 +a(g93565 +g93567 +S'figureheads' +p93569 +tp93570 +a(g93567 +g93569 +S'were' +p93571 +tp93572 +a(g93569 +g93571 +S'often' +p93573 +tp93574 +a(g93571 +g93573 +S'used' +p93575 +tp93576 +a(g93573 +g93575 +S'for' +p93577 +tp93578 +a(g93575 +g93577 +S'small' +p93579 +tp93580 +a(g93577 +g93579 +S'ships.' +p93581 +tp93582 +a(g93579 +g93581 +S'this' +p93583 +tp93584 +a(g93581 +g93583 +S'piece' +p93585 +tp93586 +a(g93583 +g93585 +S'was' +p93587 +tp93588 +a(g93585 +g93587 +S'made' +p93589 +tp93590 +a(g93587 +g93589 +S'for' +p93591 +tp93592 +a(g93589 +g93591 +S'a' +p93593 +tp93594 +a(g93591 +g93593 +S'new' +p93595 +tp93596 +a(g93593 +g93595 +S'bedford' +p93597 +tp93598 +a(g93595 +g93597 +S'whaler' +p93599 +tp93600 +a(g93597 +g93599 +S'called' +p93601 +tp93602 +a(g93599 +g93601 +S'the' +p93603 +tp93604 +a(g93601 +g93603 +S'although' +p93605 +tp93606 +a(g93603 +g93605 +S'the' +p93607 +tp93608 +a(g93605 +g93607 +S'various' +p93609 +tp93610 +a(g93607 +g93609 +S'shaker' +p93611 +tp93612 +a(g93609 +g93611 +S'communities' +p93613 +tp93614 +a(g93611 +g93613 +S'shared' +p93615 +tp93616 +a(g93613 +g93615 +S'the' +p93617 +tp93618 +a(g93615 +g93617 +S'same' +p93619 +tp93620 +a(g93617 +g93619 +S'beliefs' +p93621 +tp93622 +a(g93619 +g93621 +S'and' +p93623 +tp93624 +a(g93621 +g93623 +S'organization,' +p93625 +tp93626 +a(g93623 +g93625 +S'differences' +p93627 +tp93628 +a(g93625 +g93627 +S'were' +p93629 +tp93630 +a(g93627 +g93629 +S'reflected' +p93631 +tp93632 +a(g93629 +g93631 +S'by' +p93633 +tp93634 +a(g93631 +g93633 +S'certain' +p93635 +tp93636 +a(g93633 +g93635 +S'designs.' +p93637 +tp93638 +a(g93635 +g93637 +S'this' +p93639 +tp93640 +a(g93637 +g93639 +S'rug,' +p93641 +tp93642 +a(g93639 +g93641 +S'from' +p93643 +tp93644 +a(g93641 +g93643 +S'pleasant' +p93645 +tp93646 +a(g93643 +g93645 +S'hill,' +p93647 +tp93648 +a(g93645 +g93647 +S'kentucky,' +p93649 +tp93650 +a(g93647 +g93649 +S'shows' +p93651 +tp93652 +a(g93649 +g93651 +S'an' +p93653 +tp93654 +a(g93651 +g93653 +S'exuberant' +p93655 +tp93656 +a(g93653 +g93655 +S'decorative' +p93657 +tp93658 +a(g93655 +g93657 +S'pattern' +p93659 +tp93660 +a(g93657 +g93659 +S'not' +p93661 +tp93662 +a(g93659 +g93661 +S'found' +p93663 +tp93664 +a(g93661 +g93663 +S'in' +p93665 +tp93666 +a(g93663 +g93665 +S'rug' +p93667 +tp93668 +a(g93665 +g93667 +S'designs' +p93669 +tp93670 +a(g93667 +g93669 +S'of' +p93671 +tp93672 +a(g93669 +g93671 +S'the' +p93673 +tp93674 +a(g93671 +g93673 +S'new' +p93675 +tp93676 +a(g93673 +g93675 +S'england' +p93677 +tp93678 +a(g93675 +g93677 +S'communities.' +p93679 +tp93680 +a(g93677 +g93679 +S'shakers' +p93681 +tp93682 +a(g93679 +g93681 +S'used' +p93683 +tp93684 +a(g93681 +g93683 +S'several' +p93685 +tp93686 +a(g93683 +g93685 +S'techniques' +p93687 +tp93688 +a(g93685 +g93687 +S'for' +p93689 +tp93690 +a(g93687 +g93689 +S'rug-making,' +p93691 +tp93692 +a(g93689 +g93691 +S'including' +p93693 +tp93694 +a(g93691 +g93693 +S'braiding,' +p93695 +tp93696 +a(g93693 +g93695 +S'tufting,' +p93697 +tp93698 +a(g93695 +g93697 +S'and' +p93699 +tp93700 +a(g93697 +g93699 +S'shirring.' +p93701 +tp93702 +a(g93699 +g93701 +S'in' +p93703 +tp93704 +a(g93701 +g93703 +S'each' +p93705 +tp93706 +a(g93703 +g93705 +S'case,' +p93707 +tp93708 +a(g93705 +g93707 +S'wool' +p93709 +tp93710 +a(g93707 +g93709 +S'threads' +p93711 +tp93712 +a(g93709 +g93711 +S'or' +p93713 +tp93714 +a(g93711 +g93713 +S'pieces' +p93715 +tp93716 +a(g93713 +g93715 +S'of' +p93717 +tp93718 +a(g93715 +g93717 +S'woolen' +p93719 +tp93720 +a(g93717 +g93719 +S'cloth' +p93721 +tp93722 +a(g93719 +g93721 +S'were' +p93723 +tp93724 +a(g93721 +g93723 +S'sewn' +p93725 +tp93726 +a(g93723 +g93725 +S'to' +p93727 +tp93728 +a(g93725 +g93727 +S'a' +p93729 +tp93730 +a(g93727 +g93729 +S'cloth' +p93731 +tp93732 +a(g93729 +g93731 +S'base.' +p93733 +tp93734 +a(g93731 +g93733 +S'this' +p93735 +tp93736 +a(g93733 +g93735 +S'rug' +p93737 +tp93738 +a(g93735 +g93737 +S'was' +p93739 +tp93740 +a(g93737 +g93739 +S'made' +p93741 +tp93742 +a(g93739 +g93741 +S'with' +p93743 +tp93744 +a(g93741 +g93743 +S'dyed' +p93745 +tp93746 +a(g93743 +g93745 +S'rags' +p93747 +tp93748 +a(g93745 +g93747 +S'shirred' +p93749 +tp93750 +a(g93747 +g93749 +S'and' +p93751 +tp93752 +a(g93749 +g93751 +S'sewn' +p93753 +tp93754 +a(g93751 +g93753 +S'to' +p93755 +tp93756 +a(g93753 +g93755 +S'a' +p93757 +tp93758 +a(g93755 +g93757 +S'gunny' +p93759 +tp93760 +a(g93757 +g93759 +S'sack' +p93761 +tp93762 +a(g93759 +g93761 +S'backing.' +p93763 +tp93764 +a(g93761 +g93763 +S'shaker' +p93765 +tp93766 +a(g93763 +g93765 +S'rugs' +p93767 +tp93768 +a(g93765 +g93767 +S'were' +p93769 +tp93770 +a(g93767 +g93769 +S'often' +p93771 +tp93772 +a(g93769 +g93771 +S'colorful' +p93773 +tp93774 +a(g93771 +g93773 +S'and' +p93775 +tp93776 +a(g93773 +g93775 +S'the' +p93777 +tp93778 +a(g93775 +g93777 +S'designs' +p93779 +tp93780 +a(g93777 +g93779 +S'lively;' +p93781 +tp93782 +a(g93779 +g93781 +S'this' +p93783 +tp93784 +a(g93781 +g93783 +S'one' +p93785 +tp93786 +a(g93783 +g93785 +S'suggests' +p93787 +tp93788 +a(g93785 +g93787 +S'a' +p93789 +tp93790 +a(g93787 +g93789 +S'symmetrical' +p93791 +tp93792 +a(g93789 +g93791 +S'scheme' +p93793 +tp93794 +a(g93791 +g93793 +S'that' +p93795 +tp93796 +a(g93793 +g93795 +S'has' +p93797 +tp93798 +a(g93795 +g93797 +S'gone' +p93799 +tp93800 +a(g93797 +g93799 +S'slightly' +p93801 +tp93802 +a(g93799 +g93801 +S'awry.' +p93803 +tp93804 +a(g93801 +g93803 +S'this' +p93805 +tp93806 +a(g93803 +g93805 +S'is' +p93807 +tp93808 +a(g93805 +g93807 +S'a' +p93809 +tp93810 +a(g93807 +g93809 +S'woodcut' +p93811 +tp93812 +a(g93809 +g93811 +S'done' +p93813 +tp93814 +a(g93811 +g93813 +S'by' +p93815 +tp93816 +a(g93813 +g93815 +S'heinrich' +p93817 +tp93818 +a(g93815 +g93817 +S'otto' +p93819 +tp93820 +a(g93817 +g93819 +S'in' +p93821 +tp93822 +a(g93819 +g93821 +S'1722.' +p93823 +tp93824 +a(g93821 +g93823 +S'a' +p93825 +tp93826 +a(g93823 +g93825 +S'versatile' +p93827 +tp93828 +a(g93825 +g93827 +S'decorator,' +p93829 +tp93830 +a(g93827 +g93829 +S'otto' +p93831 +tp93832 +a(g93829 +g93831 +S'made' +p93833 +tp93834 +a(g93831 +g93833 +S'fracturs' +p93835 +tp93836 +a(g93833 +g93835 +S'drawn' +p93837 +tp93838 +a(g93835 +g93837 +S'and' +p93839 +tp93840 +a(g93837 +g93839 +S'painted' +p93841 +tp93842 +a(g93839 +g93841 +S'by' +p93843 +tp93844 +a(g93841 +g93843 +S'hand' +p93845 +tp93846 +a(g93843 +g93845 +S'as' +p93847 +tp93848 +a(g93845 +g93847 +S'well' +p93849 +tp93850 +a(g93847 +g93849 +S'as' +p93851 +tp93852 +a(g93849 +g93851 +S'printed' +p93853 +tp93854 +a(g93851 +g93853 +S'from' +p93855 +tp93856 +a(g93853 +g93855 +S'blocks' +p93857 +tp93858 +a(g93855 +g93857 +S'of' +p93859 +tp93860 +a(g93857 +g93859 +S'wood' +p93861 +tp93862 +a(g93859 +g93861 +S'that' +p93863 +tp93864 +a(g93861 +g93863 +S'he' +p93865 +tp93866 +a(g93863 +g93865 +S'carved' +p93867 +tp93868 +a(g93865 +g93867 +S'himself.' +p93869 +tp93870 +a(g93867 +g93869 +S'this' +p93871 +tp93872 +a(g93869 +g93871 +S'woodcut' +p93873 +tp93874 +a(g93871 +g93873 +S'was' +p93875 +tp93876 +a(g93873 +g93875 +S'added' +p93877 +tp93878 +a(g93875 +g93877 +S'to' +p93879 +tp93880 +a(g93877 +g93879 +S'a' +p93881 +tp93882 +a(g93879 +g93881 +S'printed' +p93883 +tp93884 +a(g93881 +g93883 +S'sheet' +p93885 +tp93886 +a(g93883 +g93885 +S'and' +p93887 +tp93888 +a(g93885 +g93887 +S'colored' +p93889 +tp93890 +a(g93887 +g93889 +S'with' +p93891 +tp93892 +a(g93889 +g93891 +S'paints' +p93893 +tp93894 +a(g93891 +g93893 +S'and' +p93895 +tp93896 +a(g93893 +g93895 +S'dyes' +p93897 +tp93898 +a(g93895 +g93897 +S'made' +p93899 +tp93900 +a(g93897 +g93899 +S'from' +p93901 +tp93902 +a(g93899 +g93901 +S'materials' +p93903 +tp93904 +a(g93901 +g93903 +S'at' +p93905 +tp93906 +a(g93903 +g93905 +S'hand.' +p93907 +tp93908 +a(g93905 +g93907 +S'used' +p93909 +tp93910 +a(g93907 +g93909 +S'as' +p93911 +tp93912 +a(g93909 +g93911 +S'a' +p93913 +tp93914 +a(g93911 +g93913 +S'wall' +p93915 +tp93916 +a(g93913 +g93915 +S'decoration,' +p93917 +tp93918 +a(g93915 +g93917 +S'the' +p93919 +tp93920 +a(g93917 +g93919 +S'text' +p93921 +tp93922 +a(g93919 +g93921 +S'is' +p93923 +tp93924 +a(g93921 +g93923 +S'a' +p93925 +tp93926 +a(g93923 +g93925 +S'hymn' +p93927 +tp93928 +a(g93925 +g93927 +S'telling' +p93929 +tp93930 +a(g93927 +g93929 +S'the' +p93931 +tp93932 +a(g93929 +g93931 +S'story' +p93933 +tp93934 +a(g93931 +g93933 +S'of' +p93935 +tp93936 +a(g93933 +g93935 +S'the' +p93937 +tp93938 +a(g93935 +g93937 +S'temptation' +p93939 +tp93940 +a(g93937 +g93939 +S'of' +p93941 +tp93942 +a(g93939 +g93941 +S'eve.' +p93943 +tp93944 +a(g93941 +g93943 +S'traditional' +p93945 +tp93946 +a(g93943 +g93945 +S'bird' +p93947 +tp93948 +a(g93945 +g93947 +S'and' +p93949 +tp93950 +a(g93947 +g93949 +S'flower' +p93951 +tp93952 +a(g93949 +g93951 +S'motifs' +p93953 +tp93954 +a(g93951 +g93953 +S'frame' +p93955 +tp93956 +a(g93953 +g93955 +S'the' +p93957 +tp93958 +a(g93955 +g93957 +S'text' +p93959 +tp93960 +a(g93957 +g93959 +S'and' +p93961 +tp93962 +a(g93959 +g93961 +S'central' +p93963 +tp93964 +a(g93961 +g93963 +S'illustration' +p93965 +tp93966 +a(g93963 +g93965 +S'of' +p93967 +tp93968 +a(g93965 +g93967 +S'the' +p93969 +tp93970 +a(g93967 +g93969 +S'story.' +p93971 +tp93972 +a(g93969 +g93971 +S'notice' +p93973 +tp93974 +a(g93971 +g93973 +S'the' +p93975 +tp93976 +a(g93973 +g93975 +S'colorful' +p93977 +tp93978 +a(g93975 +g93977 +S'birds' +p93979 +tp93980 +a(g93977 +g93979 +S'and' +p93981 +tp93982 +a(g93979 +g93981 +S'flowers' +p93983 +tp93984 +a(g93981 +g93983 +S'in' +p93985 +tp93986 +a(g93983 +g93985 +S'contrast' +p93987 +tp93988 +a(g93985 +g93987 +S'to' +p93989 +tp93990 +a(g93987 +g93989 +S'the' +p93991 +tp93992 +a(g93989 +g93991 +S'primitive' +p93993 +tp93994 +a(g93991 +g93993 +S'human' +p93995 +tp93996 +a(g93993 +g93995 +S'forms' +p93997 +tp93998 +a(g93995 +g93997 +S'and' +p93999 +tp94000 +a(g93997 +g93999 +S'the' +p94001 +tp94002 +a(g93999 +g94001 +S'sticklike' +p94003 +tp94004 +a(g94001 +g94003 +S'tree.' +p94005 +tp94006 +a(g94003 +g94005 +S'the' +p94007 +tp94008 +a(g94005 +g94007 +S'madonna' +p94009 +tp94010 +a(g94007 +g94009 +S'of' +p94011 +tp94012 +a(g94009 +g94011 +S'the' +p94013 +tp94014 +a(g94011 +g94013 +S'carnation' +p94015 +tp94016 +a(g94013 +g94015 +S'though' +p94017 +tp94018 +a(g94015 +g94017 +S'not' +p94019 +tp94020 +a(g94017 +g94019 +S'as' +p94021 +tp94022 +a(g94019 +g94021 +S'well' +p94023 +tp94024 +a(g94021 +g94023 +S'known' +p94025 +tp94026 +a(g94023 +g94025 +S'today,' +p94027 +tp94028 +a(g94025 +g94027 +S'luini' +p94029 +tp94030 +a(g94027 +g94029 +S'was' +p94031 +tp94032 +a(g94029 +g94031 +S'once' +p94033 +tp94034 +a(g94031 +g94033 +S'considered' +p94035 +tp94036 +a(g94033 +g94035 +S'the' +p94037 +tp94038 +a(g94035 +g94037 +S'leading' +p94039 +tp94040 +a(g94037 +g94039 +S'painter' +p94041 +tp94042 +a(g94039 +g94041 +S'from' +p94043 +tp94044 +a(g94041 +g94043 +S'the' +p94045 +tp94046 +a(g94043 +g94045 +S'lombardy' +p94047 +tp94048 +a(g94045 +g94047 +S'region' +p94049 +tp94050 +a(g94047 +g94049 +S'of' +p94051 +tp94052 +a(g94049 +g94051 +S'northern' +p94053 +tp94054 +a(g94051 +g94053 +S'italy.' +p94055 +tp94056 +a(g94053 +g94055 +S'he' +p94057 +tp94058 +a(g94055 +g94057 +S'was' +p94059 +tp94060 +a(g94057 +g94059 +S'born' +p94061 +tp94062 +a(g94059 +g94061 +S'about' +p94063 +tp94064 +a(g94061 +g94063 +S'1480' +p94065 +tp94066 +a(g94063 +g94065 +S'and' +p94067 +tp94068 +a(g94065 +g94067 +S'trained' +p94069 +tp94070 +a(g94067 +g94069 +S'with' +p94071 +tp94072 +a(g94069 +g94071 +S'several' +p94073 +tp94074 +a(g94071 +g94073 +S'local' +p94075 +tp94076 +a(g94073 +g94075 +S'masters,' +p94077 +tp94078 +a(g94075 +g94077 +S'but' +p94079 +tp94080 +a(g94077 +g94079 +S'his' +p94081 +tp94082 +a(g94079 +g94081 +S'life' +p94083 +tp94084 +a(g94081 +g94083 +S'and' +p94085 +tp94086 +a(g94083 +g94085 +S'art' +p94087 +tp94088 +a(g94085 +g94087 +S'were' +p94089 +tp94090 +a(g94087 +g94089 +S'transformed' +p94091 +tp94092 +a(g94089 +g94091 +S'by' +p94093 +tp94094 +a(g94091 +g94093 +S'encountering' +p94095 +tp94096 +a(g94093 +g94095 +S'the' +p94097 +tp94098 +a(g94095 +g94097 +S'work' +p94099 +tp94100 +a(g94097 +g94099 +S'of' +p94101 +tp94102 +a(g94099 +g94101 +S'leonardo' +p94103 +tp94104 +a(g94101 +g94103 +S'da' +p94105 +tp94106 +a(g94103 +g94105 +S'vinci,' +p94107 +tp94108 +a(g94105 +g94107 +S'who' +p94109 +tp94110 +a(g94107 +g94109 +S'visited' +p94111 +tp94112 +a(g94109 +g94111 +S'milan' +p94113 +tp94114 +a(g94111 +g94113 +S'once' +p94115 +tp94116 +a(g94113 +g94115 +S'in' +p94117 +tp94118 +a(g94115 +g94117 +S'the' +p94119 +tp94120 +a(g94117 +g94119 +S'late' +p94121 +tp94122 +a(g94119 +g94121 +S'15th' +p94123 +tp94124 +a(g94121 +g94123 +S'century' +p94125 +tp94126 +a(g94123 +g94125 +S'and' +p94127 +tp94128 +a(g94125 +g94127 +S'again' +p94129 +tp94130 +a(g94127 +g94129 +S'briefly' +p94131 +tp94132 +a(g94129 +g94131 +S'in' +p94133 +tp94134 +a(g94131 +g94133 +S'the' +p94135 +tp94136 +a(g94133 +g94135 +S'early' +p94137 +tp94138 +a(g94135 +g94137 +S'16th' +p94139 +tp94140 +a(g94137 +g94139 +S'century.' +p94141 +tp94142 +a(g94139 +g94141 +S'leonardo,' +p94143 +tp94144 +a(g94141 +g94143 +S'as' +p94145 +tp94146 +a(g94143 +g94145 +S'a' +p94147 +tp94148 +a(g94145 +g94147 +S'young' +p94149 +tp94150 +a(g94147 +g94149 +S'artist' +p94151 +tp94152 +a(g94149 +g94151 +S'in' +p94153 +tp94154 +a(g94151 +g94153 +S'florence,' +p94155 +tp94156 +a(g94153 +g94155 +S'painted' +p94157 +tp94158 +a(g94155 +g94157 +S'several' +p94159 +tp94160 +a(g94157 +g94159 +S'pictures' +p94161 +tp94162 +a(g94159 +g94161 +S'with' +p94163 +tp94164 +a(g94161 +g94163 +S'the' +p94165 +tp94166 +a(g94163 +g94165 +S'same' +p94167 +tp94168 +a(g94165 +g94167 +S'theme' +p94169 +tp94170 +a(g94167 +g94169 +S'as' +p94171 +tp94172 +a(g94169 +g94171 +S'that' +p94173 +tp94174 +a(g94171 +g94173 +S'seen' +p94175 +tp94176 +a(g94173 +g94175 +S'in' +p94177 +tp94178 +a(g94175 +g94177 +S'this' +p94179 +tp94180 +a(g94177 +g94179 +S'painting:' +p94181 +tp94182 +a(g94179 +g94181 +S'the' +p94183 +tp94184 +a(g94181 +g94183 +S'christ' +p94185 +tp94186 +a(g94183 +g94185 +S'child' +p94187 +tp94188 +a(g94185 +g94187 +S'reaching' +p94189 +tp94190 +a(g94187 +g94189 +S'for' +p94191 +tp94192 +a(g94189 +g94191 +S'a' +p94193 +tp94194 +a(g94191 +g94193 +S'flower.' +p94195 +tp94196 +a(g94193 +g94195 +S'and' +p94197 +tp94198 +a(g94195 +g94197 +S'it' +p94199 +tp94200 +a(g94197 +g94199 +S'seems' +p94201 +tp94202 +a(g94199 +g94201 +S'clear' +p94203 +tp94204 +a(g94201 +g94203 +S'that' +p94205 +tp94206 +a(g94203 +g94205 +S'luini' +p94207 +tp94208 +a(g94205 +g94207 +S'is' +p94209 +tp94210 +a(g94207 +g94209 +S'indebted' +p94211 +tp94212 +a(g94209 +g94211 +S'to' +p94213 +tp94214 +a(g94211 +g94213 +S'leonardo' +p94215 +tp94216 +a(g94213 +g94215 +S'not' +p94217 +tp94218 +a(g94215 +g94217 +S'only' +p94219 +tp94220 +a(g94217 +g94219 +S'for' +p94221 +tp94222 +a(g94219 +g94221 +S'this' +p94223 +tp94224 +a(g94221 +g94223 +S'poignant' +p94225 +tp94226 +a(g94223 +g94225 +S'theme' +p94227 +tp94228 +a(g94225 +g94227 +S'but' +p94229 +tp94230 +a(g94227 +g94229 +S'for' +p94231 +tp94232 +a(g94229 +g94231 +S'other' +p94233 +tp94234 +a(g94231 +g94233 +S'aspects' +p94235 +tp94236 +a(g94233 +g94235 +S'of' +p94237 +tp94238 +a(g94235 +g94237 +S'the' +p94239 +tp94240 +a(g94237 +g94239 +S'painting' +p94241 +tp94242 +a(g94239 +g94241 +S'as' +p94243 +tp94244 +a(g94241 +g94243 +S'well:' +p94245 +tp94246 +a(g94243 +g94245 +S'the' +p94247 +tp94248 +a(g94245 +g94247 +S'dark' +p94249 +tp94250 +a(g94247 +g94249 +S'background,' +p94251 +tp94252 +a(g94249 +g94251 +S'the' +p94253 +tp94254 +a(g94251 +g94253 +S'softness' +p94255 +tp94256 +a(g94253 +g94255 +S'of' +p94257 +tp94258 +a(g94255 +g94257 +S'the' +p94259 +tp94260 +a(g94257 +g94259 +S'forms,' +p94261 +tp94262 +a(g94259 +g94261 +S'the' +p94263 +tp94264 +a(g94261 +g94263 +S'chiaroscuro' +p94265 +tp94266 +a(g94263 +g94265 +S'(light' +p94267 +tp94268 +a(g94265 +g94267 +S'and' +p94269 +tp94270 +a(g94267 +g94269 +S'dark)' +p94271 +tp94272 +a(g94269 +g94271 +S'modeling,' +p94273 +tp94274 +a(g94271 +g94273 +S'the' +p94275 +tp94276 +a(g94273 +g94275 +S'sweet' +p94277 +tp94278 +a(g94275 +g94277 +S'sentiment' +p94279 +tp94280 +a(g94277 +g94279 +S'of' +p94281 +tp94282 +a(g94279 +g94281 +S'the' +p94283 +tp94284 +a(g94281 +g94283 +S'figures,' +p94285 +tp94286 +a(g94283 +g94285 +S'the' +p94287 +tp94288 +a(g94285 +g94287 +S'turning' +p94289 +tp94290 +a(g94287 +g94289 +S'pose' +p94291 +tp94292 +a(g94289 +g94291 +S'of' +p94293 +tp94294 +a(g94291 +g94293 +S'the' +p94295 +tp94296 +a(g94293 +g94295 +S'child.' +p94297 +tp94298 +a(g94295 +g94297 +S'luini' +p94299 +tp94300 +a(g94297 +g94299 +S'was' +p94301 +tp94302 +a(g94299 +g94301 +S'a' +p94303 +tp94304 +a(g94301 +g94303 +S'great' +p94305 +tp94306 +a(g94303 +g94305 +S'painter' +p94307 +tp94308 +a(g94305 +g94307 +S'of' +p94309 +tp94310 +a(g94307 +g94309 +S'religious' +p94311 +tp94312 +a(g94309 +g94311 +S'images,' +p94313 +tp94314 +a(g94311 +g94313 +S'including' +p94315 +tp94316 +a(g94313 +g94315 +S'frescoes,' +p94317 +tp94318 +a(g94315 +g94317 +S'wood' +p94319 +tp94320 +a(g94317 +g94319 +S'panels,' +p94321 +tp94322 +a(g94319 +g94321 +S'large' +p94323 +tp94324 +a(g94321 +g94323 +S'altarpieces,' +p94325 +tp94326 +a(g94323 +g94325 +S'and' +p94327 +tp94328 +a(g94325 +g94327 +S'small' +p94329 +tp94330 +a(g94327 +g94329 +S'devotional' +p94331 +tp94332 +a(g94329 +g94331 +S'works' +p94333 +tp94334 +a(g94331 +g94333 +S'for' +p94335 +tp94336 +a(g94333 +g94335 +S'the' +p94337 +tp94338 +a(g94335 +g94337 +S'home.' +p94339 +tp94340 +a(g94337 +g94339 +S'he' +p94341 +tp94342 +a(g94339 +g94341 +S'was' +p94343 +tp94344 +a(g94341 +g94343 +S'obviously' +p94345 +tp94346 +a(g94343 +g94345 +S'very' +p94347 +tp94348 +a(g94345 +g94347 +S'popular' +p94349 +tp94350 +a(g94347 +g94349 +S'in' +p94351 +tp94352 +a(g94349 +g94351 +S'his' +p94353 +tp94354 +a(g94351 +g94353 +S'own' +p94355 +tp94356 +a(g94353 +g94355 +S'time,' +p94357 +tp94358 +a(g94355 +g94357 +S'as' +p94359 +tp94360 +a(g94357 +g94359 +S'there' +p94361 +tp94362 +a(g94359 +g94361 +S'are' +p94363 +tp94364 +a(g94361 +g94363 +S'countless' +p94365 +tp94366 +a(g94363 +g94365 +S'copies' +p94367 +tp94368 +a(g94365 +g94367 +S'of' +p94369 +tp94370 +a(g94367 +g94369 +S'his' +p94371 +tp94372 +a(g94369 +g94371 +S'paintings.' +p94373 +tp94374 +a(g94371 +g94373 +S'then' +p94375 +tp94376 +a(g94373 +g94375 +S'he' +p94377 +tp94378 +a(g94375 +g94377 +S'regained' +p94379 +tp94380 +a(g94377 +g94379 +S'popularity' +p94381 +tp94382 +a(g94379 +g94381 +S'in' +p94383 +tp94384 +a(g94381 +g94383 +S'the' +p94385 +tp94386 +a(g94383 +g94385 +S'19th' +p94387 +tp94388 +a(g94385 +g94387 +S'century' +p94389 +tp94390 +a(g94387 +g94389 +S'when' +p94391 +tp94392 +a(g94389 +g94391 +S'the' +p94393 +tp94394 +a(g94391 +g94393 +S'famous' +p94395 +tp94396 +a(g94393 +g94395 +S'critic' +p94397 +tp94398 +a(g94395 +g94397 +S'john' +p94399 +tp94400 +a(g94397 +g94399 +S'ruskin' +p94401 +tp94402 +a(g94399 +g94401 +S'decided' +p94403 +tp94404 +a(g94401 +g94403 +S'that' +p94405 +tp94406 +a(g94403 +g94405 +S'luini' +p94407 +tp94408 +a(g94405 +g94407 +S'was' +p94409 +tp94410 +a(g94407 +g94409 +S'greater' +p94411 +tp94412 +a(g94409 +g94411 +S'than' +p94413 +tp94414 +a(g94411 +g94413 +S'leonardo,' +p94415 +tp94416 +a(g94413 +g94415 +S'and' +p94417 +tp94418 +a(g94415 +g94417 +S'many' +p94419 +tp94420 +a(g94417 +g94419 +S'readers' +p94421 +tp94422 +a(g94419 +g94421 +S'went' +p94423 +tp94424 +a(g94421 +g94423 +S'to' +p94425 +tp94426 +a(g94423 +g94425 +S'italy' +p94427 +tp94428 +a(g94425 +g94427 +S'looking' +p94429 +tp94430 +a(g94427 +g94429 +S'for' +p94431 +tp94432 +a(g94429 +g94431 +S'his' +p94433 +tp94434 +a(g94431 +g94433 +S'works.' +p94435 +tp94436 +a(g94433 +g94435 +S'carousel' +p94437 +tp94438 +a(g94435 +g94437 +S'sculpture' +p94439 +tp94440 +a(g94437 +g94439 +S'was' +p94441 +tp94442 +a(g94439 +g94441 +S'another' +p94443 +tp94444 +a(g94441 +g94443 +S'type' +p94445 +tp94446 +a(g94443 +g94445 +S'of' +p94447 +tp94448 +a(g94445 +g94447 +S'woodcarving' +p94449 +tp94450 +a(g94447 +g94449 +S'important' +p94451 +tp94452 +a(g94449 +g94451 +S'to' +p94453 +tp94454 +a(g94451 +g94453 +S'circuses' +p94455 +tp94456 +a(g94453 +g94455 +S'and' +p94457 +tp94458 +a(g94455 +g94457 +S'to' +p94459 +tp94460 +a(g94457 +g94459 +S'amusement' +p94461 +tp94462 +a(g94459 +g94461 +S'parks.' +p94463 +tp94464 +a(g94461 +g94463 +S'while' +p94465 +tp94466 +a(g94463 +g94465 +S'crude' +p94467 +tp94468 +a(g94465 +g94467 +S'carousels' +p94469 +tp94470 +a(g94467 +g94469 +S'of' +p94471 +tp94472 +a(g94469 +g94471 +S'various' +p94473 +tp94474 +a(g94471 +g94473 +S'kinds' +p94475 +tp94476 +a(g94473 +g94475 +S'had' +p94477 +tp94478 +a(g94475 +g94477 +S'been' +p94479 +tp94480 +a(g94477 +g94479 +S'available' +p94481 +tp94482 +a(g94479 +g94481 +S'in' +p94483 +tp94484 +a(g94481 +g94483 +S'america' +p94485 +tp94486 +a(g94483 +g94485 +S'before' +p94487 +tp94488 +a(g94485 +g94487 +S'the' +p94489 +tp94490 +a(g94487 +g94489 +S'civil' +p94491 +tp94492 +a(g94489 +g94491 +S'war,' +p94493 +tp94494 +a(g94491 +g94493 +S'the' +p94495 +tp94496 +a(g94493 +g94495 +S'carousel' +p94497 +tp94498 +a(g94495 +g94497 +S'with' +p94499 +tp94500 +a(g94497 +g94499 +S'a' +p94501 +tp94502 +a(g94499 +g94501 +S'rotating' +p94503 +tp94504 +a(g94501 +g94503 +S'platform' +p94505 +tp94506 +a(g94503 +g94505 +S'did' +p94507 +tp94508 +a(g94505 +g94507 +S'not' +p94509 +tp94510 +a(g94507 +g94509 +S'appear' +p94511 +tp94512 +a(g94509 +g94511 +S'until' +p94513 +tp94514 +a(g94511 +g94513 +S'1879,' +p94515 +tp94516 +a(g94513 +g94515 +S'when' +p94517 +tp94518 +a(g94515 +g94517 +S'a' +p94519 +tp94520 +a(g94517 +g94519 +S'version' +p94521 +tp94522 +a(g94519 +g94521 +S'was' +p94523 +tp94524 +a(g94521 +g94523 +S'first' +p94525 +tp94526 +a(g94523 +g94525 +S'made' +p94527 +tp94528 +a(g94525 +g94527 +S'in' +p94529 +tp94530 +a(g94527 +g94529 +S'north' +p94531 +tp94532 +a(g94529 +g94531 +S'tonawanda,' +p94533 +tp94534 +a(g94531 +g94533 +S'new' +p94535 +tp94536 +a(g94533 +g94535 +S'york.' +p94537 +tp94538 +a(g94535 +g94537 +S'carousels' +p94539 +tp94540 +a(g94537 +g94539 +S'became' +p94541 +tp94542 +a(g94539 +g94541 +S'regular' +p94543 +tp94544 +a(g94541 +g94543 +S'attractions' +p94545 +tp94546 +a(g94543 +g94545 +S'at' +p94547 +tp94548 +a(g94545 +g94547 +S'fairs' +p94549 +tp94550 +a(g94547 +g94549 +S'and' +p94551 +tp94552 +a(g94549 +g94551 +S'carnivals' +p94553 +tp94554 +a(g94551 +g94553 +S'as' +p94555 +tp94556 +a(g94553 +g94555 +S'well' +p94557 +tp94558 +a(g94555 +g94557 +S'as' +p94559 +tp94560 +a(g94557 +g94559 +S'at' +p94561 +tp94562 +a(g94559 +g94561 +S'circuses.' +p94563 +tp94564 +a(g94561 +g94563 +S'their' +p94565 +tp94566 +a(g94563 +g94565 +S'numbers' +p94567 +tp94568 +a(g94565 +g94567 +S'increased' +p94569 +tp94570 +a(g94567 +g94569 +S'greatly' +p94571 +tp94572 +a(g94569 +g94571 +S'during' +p94573 +tp94574 +a(g94571 +g94573 +S'the' +p94575 +tp94576 +a(g94573 +g94575 +S'last' +p94577 +tp94578 +a(g94575 +g94577 +S'years' +p94579 +tp94580 +a(g94577 +g94579 +S'of' +p94581 +tp94582 +a(g94579 +g94581 +S'the' +p94583 +tp94584 +a(g94581 +g94583 +S'nineteenth' +p94585 +tp94586 +a(g94583 +g94585 +S'century.' +p94587 +tp94588 +a(g94585 +g94587 +S'one' +p94589 +tp94590 +a(g94587 +g94589 +S'of' +p94591 +tp94592 +a(g94589 +g94591 +S'the' +p94593 +tp94594 +a(g94591 +g94593 +S'best-known' +p94595 +tp94596 +a(g94593 +g94595 +S'makers' +p94597 +tp94598 +a(g94595 +g94597 +S'of' +p94599 +tp94600 +a(g94597 +g94599 +S'carousel' +p94601 +tp94602 +a(g94599 +g94601 +S'animals' +p94603 +tp94604 +a(g94601 +g94603 +S'was' +p94605 +tp94606 +a(g94603 +g94605 +S'charles' +p94607 +tp94608 +a(g94605 +g94607 +S'looff,' +p94609 +tp94610 +a(g94607 +g94609 +S'who' +p94611 +tp94612 +a(g94609 +g94611 +S'worked' +p94613 +tp94614 +a(g94611 +g94613 +S'in' +p94615 +tp94616 +a(g94613 +g94615 +S'riverside,' +p94617 +tp94618 +a(g94615 +g94617 +S'rhode' +p94619 +tp94620 +a(g94617 +g94619 +S'island,' +p94621 +tp94622 +a(g94619 +g94621 +S'and' +p94623 +tp94624 +a(g94621 +g94623 +S'produced' +p94625 +tp94626 +a(g94623 +g94625 +S'a' +p94627 +tp94628 +a(g94625 +g94627 +S'wide' +p94629 +tp94630 +a(g94627 +g94629 +S'range' +p94631 +tp94632 +a(g94629 +g94631 +S'of' +p94633 +tp94634 +a(g94631 +g94633 +S'animal' +p94635 +tp94636 +a(g94633 +g94635 +S'figures' +p94637 +tp94638 +a(g94635 +g94637 +S'between' +p94639 +tp94640 +a(g94637 +g94639 +S'1876' +p94641 +tp94642 +a(g94639 +g94641 +S'and' +p94643 +tp94644 +a(g94641 +g94643 +S'1918.' +p94645 +tp94646 +a(g94643 +g94645 +S'looff' +p94647 +tp94648 +a(g94645 +g94647 +S'probably' +p94649 +tp94650 +a(g94647 +g94649 +S'carved' +p94651 +tp94652 +a(g94649 +g94651 +S'this' +p94653 +tp94654 +a(g94651 +g94653 +S'fine,' +p94655 +tp94656 +a(g94653 +g94655 +S'galloping' +p94657 +tp94658 +a(g94655 +g94657 +S'steed' +p94659 +tp94660 +a(g94657 +g94659 +S'after' +p94661 +tp94662 +a(g94659 +g94661 +S'the' +p94663 +tp94664 +a(g94661 +g94663 +S'turn' +p94665 +tp94666 +a(g94663 +g94665 +S'of' +p94667 +tp94668 +a(g94665 +g94667 +S'the' +p94669 +tp94670 +a(g94667 +g94669 +S'century,' +p94671 +tp94672 +a(g94669 +g94671 +S'since' +p94673 +tp94674 +a(g94671 +g94673 +S'it' +p94675 +tp94676 +a(g94673 +g94675 +S'is' +p94677 +tp94678 +a(g94675 +g94677 +S'consistent' +p94679 +tp94680 +a(g94677 +g94679 +S'with' +p94681 +tp94682 +a(g94679 +g94681 +S'his' +p94683 +tp94684 +a(g94681 +g94683 +S'late' +p94685 +tp94686 +a(g94683 +g94685 +S'style' +p94687 +tp94688 +a(g94685 +g94687 +S'both' +p94689 +tp94690 +a(g94687 +g94689 +S'in' +p94691 +tp94692 +a(g94689 +g94691 +S'liveliness' +p94693 +tp94694 +a(g94691 +g94693 +S'and' +p94695 +tp94696 +a(g94693 +g94695 +S'in' +p94697 +tp94698 +a(g94695 +g94697 +S'the' +p94699 +tp94700 +a(g94697 +g94699 +S'splendor' +p94701 +tp94702 +a(g94699 +g94701 +S'of' +p94703 +tp94704 +a(g94701 +g94703 +S'the' +p94705 +tp94706 +a(g94703 +g94705 +S"animal's" +p94707 +tp94708 +a(g94705 +g94707 +S'mane' +p94709 +tp94710 +a(g94707 +g94709 +S'and' +p94711 +tp94712 +a(g94709 +g94711 +S'accessories.' +p94713 +tp94714 +a(g94711 +g94713 +S'this' +p94715 +tp94716 +a(g94713 +g94715 +S'milk' +p94717 +tp94718 +a(g94715 +g94717 +S'wagon' +p94719 +tp94720 +a(g94717 +g94719 +S'is' +p94721 +tp94722 +a(g94719 +g94721 +S'made' +p94723 +tp94724 +a(g94721 +g94723 +S'from' +p94725 +tp94726 +a(g94723 +g94725 +S'a' +p94727 +tp94728 +a(g94725 +g94727 +S'combination' +p94729 +tp94730 +a(g94727 +g94729 +S'of' +p94731 +tp94732 +a(g94729 +g94731 +S'materials:' +p94733 +tp94734 +a(g94731 +g94733 +S'the' +p94735 +tp94736 +a(g94733 +g94735 +S'horse' +p94737 +tp94738 +a(g94735 +g94737 +S'and' +p94739 +tp94740 +a(g94737 +g94739 +S'figure' +p94741 +tp94742 +a(g94739 +g94741 +S'are' +p94743 +tp94744 +a(g94741 +g94743 +S'plaster,' +p94745 +tp94746 +a(g94743 +g94745 +S'the' +p94747 +tp94748 +a(g94745 +g94747 +S'wagon' +p94749 +tp94750 +a(g94747 +g94749 +S'is' +p94751 +tp94752 +a(g94749 +g94751 +S'wood,' +p94753 +tp94754 +a(g94751 +g94753 +S'and' +p94755 +tp94756 +a(g94753 +g94755 +S'the' +p94757 +tp94758 +a(g94755 +g94757 +S'large' +p94759 +tp94760 +a(g94757 +g94759 +S'milk' +p94761 +tp94762 +a(g94759 +g94761 +S'cans' +p94763 +tp94764 +a(g94761 +g94763 +S'and' +p94765 +tp94766 +a(g94763 +g94765 +S'dipper' +p94767 +tp94768 +a(g94765 +g94767 +S'are' +p94769 +tp94770 +a(g94767 +g94769 +S'tin.' +p94771 +tp94772 +a(g94769 +g94771 +S'the' +p94773 +tp94774 +a(g94771 +g94773 +S'wagon' +p94775 +tp94776 +a(g94773 +g94775 +S'dates' +p94777 +tp94778 +a(g94775 +g94777 +S'from' +p94779 +tp94780 +a(g94777 +g94779 +S'1870.' +p94781 +tp94782 +a(g94779 +g94781 +S'before' +p94783 +tp94784 +a(g94781 +g94783 +S'that' +p94785 +tp94786 +a(g94783 +g94785 +S'time,' +p94787 +tp94788 +a(g94785 +g94787 +S'milk' +p94789 +tp94790 +a(g94787 +g94789 +S'was' +p94791 +tp94792 +a(g94789 +g94791 +S'delivered' +p94793 +tp94794 +a(g94791 +g94793 +S'from' +p94795 +tp94796 +a(g94793 +g94795 +S'house' +p94797 +tp94798 +a(g94795 +g94797 +S'to' +p94799 +tp94800 +a(g94797 +g94799 +S'house' +p94801 +tp94802 +a(g94799 +g94801 +S'by' +p94803 +tp94804 +a(g94801 +g94803 +S'farm' +p94805 +tp94806 +a(g94803 +g94805 +S'wagons.' +p94807 +tp94808 +a(g94805 +g94807 +S'the' +p94809 +tp94810 +a(g94807 +g94809 +S'lake' +p94811 +tp94812 +a(g94809 +g94811 +S'wagon' +p94813 +tp94814 +a(g94811 +g94813 +S'company' +p94815 +tp94816 +a(g94813 +g94815 +S'built' +p94817 +tp94818 +a(g94815 +g94817 +S'the' +p94819 +tp94820 +a(g94817 +g94819 +S'first' +p94821 +tp94822 +a(g94819 +g94821 +S'vehicle' +p94823 +tp94824 +a(g94821 +g94823 +S'to' +p94825 +tp94826 +a(g94823 +g94825 +S'be' +p94827 +tp94828 +a(g94825 +g94827 +S'used' +p94829 +tp94830 +a(g94827 +g94829 +S'exclusively' +p94831 +tp94832 +a(g94829 +g94831 +S'for' +p94833 +tp94834 +a(g94831 +g94833 +S'milk' +p94835 +tp94836 +a(g94833 +g94835 +S'delivery' +p94837 +tp94838 +a(g94835 +g94837 +S'in' +p94839 +tp94840 +a(g94837 +g94839 +S'new' +p94841 +tp94842 +a(g94839 +g94841 +S'york' +p94843 +tp94844 +a(g94841 +g94843 +S'city.' +p94845 +tp94846 +a(g94843 +g94845 +S'this' +p94847 +tp94848 +a(g94845 +g94847 +S'type' +p94849 +tp94850 +a(g94847 +g94849 +S'of' +p94851 +tp94852 +a(g94849 +g94851 +S'wagon' +p94853 +tp94854 +a(g94851 +g94853 +S'then' +p94855 +tp94856 +a(g94853 +g94855 +S'remained' +p94857 +tp94858 +a(g94855 +g94857 +S'in' +p94859 +tp94860 +a(g94857 +g94859 +S'general' +p94861 +tp94862 +a(g94859 +g94861 +S'use' +p94863 +tp94864 +a(g94861 +g94863 +S'until' +p94865 +tp94866 +a(g94863 +g94865 +S'it' +p94867 +tp94868 +a(g94865 +g94867 +S'was' +p94869 +tp94870 +a(g94867 +g94869 +S'replaced' +p94871 +tp94872 +a(g94869 +g94871 +S'by' +p94873 +tp94874 +a(g94871 +g94873 +S'the' +p94875 +tp94876 +a(g94873 +g94875 +S'closed' +p94877 +tp94878 +a(g94875 +g94877 +S'wagon.' +p94879 +tp94880 +a(g94877 +g94879 +S'milk' +p94881 +tp94882 +a(g94879 +g94881 +S'was' +p94883 +tp94884 +a(g94881 +g94883 +S'dipped' +p94885 +tp94886 +a(g94883 +g94885 +S'from' +p94887 +tp94888 +a(g94885 +g94887 +S'the' +p94889 +tp94890 +a(g94887 +g94889 +S'large' +p94891 +tp94892 +a(g94889 +g94891 +S'cans' +p94893 +tp94894 +a(g94891 +g94893 +S'into' +p94895 +tp94896 +a(g94893 +g94895 +S'pitchers' +p94897 +tp94898 +a(g94895 +g94897 +S'brought' +p94899 +tp94900 +a(g94897 +g94899 +S'to' +p94901 +tp94902 +a(g94899 +g94901 +S'the' +p94903 +tp94904 +a(g94901 +g94903 +S'driver' +p94905 +tp94906 +a(g94903 +g94905 +S'by' +p94907 +tp94908 +a(g94905 +g94907 +S'housewives.' +p94909 +tp94910 +a(g94907 +g94909 +S'subjects' +p94911 +tp94912 +a(g94909 +g94911 +S'like' +p94913 +tp94914 +a(g94911 +g94913 +S'this' +p94915 +tp94916 +a(g94913 +g94915 +S'one,' +p94917 +tp94918 +a(g94915 +g94917 +S'taken' +p94919 +tp94920 +a(g94917 +g94919 +S'from' +p94921 +tp94922 +a(g94919 +g94921 +S'the' +p94923 +tp94924 +a(g94921 +g94923 +S'writings' +p94925 +tp94926 +a(g94923 +g94925 +S'of' +p94927 +tp94928 +a(g94925 +g94927 +S'the' +p94929 +tp94930 +a(g94927 +g94929 +S'ancient' +p94931 +tp94932 +a(g94929 +g94931 +S'roman' +p94933 +tp94934 +a(g94931 +g94933 +S'author' +p94935 +tp94936 +a(g94933 +g94935 +S'livy,' +p94937 +tp94938 +a(g94935 +g94937 +S'displayed' +p94939 +tp94940 +a(g94937 +g94939 +S'the' +p94941 +tp94942 +a(g94939 +g94941 +S'learning' +p94943 +tp94944 +a(g94941 +g94943 +S'and' +p94945 +tp94946 +a(g94943 +g94945 +S'sophistication' +p94947 +tp94948 +a(g94945 +g94947 +S'of' +p94949 +tp94950 +a(g94947 +g94949 +S'renaissance' +p94951 +tp94952 +a(g94949 +g94951 +S'patrons' +p94953 +tp94954 +a(g94951 +g94953 +S'and' +p94955 +tp94956 +a(g94953 +g94955 +S'were' +p94957 +tp94958 +a(g94955 +g94957 +S'especially' +p94959 +tp94960 +a(g94957 +g94959 +S'popular' +p94961 +tp94962 +a(g94959 +g94961 +S'in' +p94963 +tp94964 +a(g94961 +g94963 +S'domestic' +p94965 +tp94966 +a(g94963 +g94965 +S'settings.' +p94967 +tp94968 +a(g94965 +g94967 +S'the' +p94969 +tp94970 +a(g94967 +g94969 +S'size' +p94971 +tp94972 +a(g94969 +g94971 +S'of' +p94973 +tp94974 +a(g94971 +g94973 +S'this' +p94975 +tp94976 +a(g94973 +g94975 +S'painting' +p94977 +tp94978 +a(g94975 +g94977 +S'suggests' +p94979 +tp94980 +a(g94977 +g94979 +S'that' +p94981 +tp94982 +a(g94979 +g94981 +S'it' +p94983 +tp94984 +a(g94981 +g94983 +S'was' +p94985 +tp94986 +a(g94983 +g94985 +S'probably' +p94987 +tp94988 +a(g94985 +g94987 +S'displayed' +p94989 +tp94990 +a(g94987 +g94989 +S'like' +p94991 +tp94992 +a(g94989 +g94991 +S'a' +p94993 +tp94994 +a(g94991 +g94993 +S'frieze' +p94995 +tp94996 +a(g94993 +g94995 +S'with' +p94997 +tp94998 +a(g94995 +g94997 +S'other' +p94999 +tp95000 +a(g94997 +g94999 +S'panels' +p95001 +tp95002 +a(g94999 +g95001 +S'in' +p95003 +tp95004 +a(g95001 +g95003 +S'the' +p95005 +tp95006 +a(g95003 +g95005 +S'home' +p95007 +tp95008 +a(g95005 +g95007 +S'of' +p95009 +tp95010 +a(g95007 +g95009 +S'a' +p95011 +tp95012 +a(g95009 +g95011 +S'wealthy' +p95013 +tp95014 +a(g95011 +g95013 +S'florentine' +p95015 +tp95016 +a(g95013 +g95015 +S'family.' +p95017 +tp95018 +a(g95015 +g95017 +S'here,' +p95019 +tp95020 +a(g95017 +g95019 +S'the' +p95021 +tp95022 +a(g95019 +g95021 +S'roman' +p95023 +tp95024 +a(g95021 +g95023 +S'senate' +p95025 +tp95026 +a(g95023 +g95025 +S'honors' +p95027 +tp95028 +a(g95025 +g95027 +S'the' +p95029 +tp95030 +a(g95027 +g95029 +S'hero' +p95031 +tp95032 +a(g95029 +g95031 +S'camillus' +p95033 +tp95034 +a(g95031 +g95033 +S'with' +p95035 +tp95036 +a(g95033 +g95035 +S'a' +p95037 +tp95038 +a(g95035 +g95037 +S'triumphal' +p95039 +tp95040 +a(g95037 +g95039 +S'parade' +p95041 +tp95042 +a(g95039 +g95041 +S'through' +p95043 +tp95044 +a(g95041 +g95043 +S'rome.' +p95045 +tp95046 +a(g95043 +g95045 +S'camillus' +p95047 +tp95048 +a(g95045 +g95047 +S'returned' +p95049 +tp95050 +a(g95047 +g95049 +S'from' +p95051 +tp95052 +a(g95049 +g95051 +S'exile' +p95053 +tp95054 +a(g95051 +g95053 +S'to' +p95055 +tp95056 +a(g95053 +g95055 +S'rescue' +p95057 +tp95058 +a(g95055 +g95057 +S'rome' +p95059 +tp95060 +a(g95057 +g95059 +S'from' +p95061 +tp95062 +a(g95059 +g95061 +S'besieging' +p95063 +tp95064 +a(g95061 +g95063 +S'gauls.' +p95065 +tp95066 +a(g95063 +g95065 +S'when' +p95067 +tp95068 +a(g95065 +g95067 +S'informed' +p95069 +tp95070 +a(g95067 +g95069 +S'that' +p95071 +tp95072 +a(g95069 +g95071 +S'the' +p95073 +tp95074 +a(g95071 +g95073 +S'city' +p95075 +tp95076 +a(g95073 +g95075 +S'was' +p95077 +tp95078 +a(g95075 +g95077 +S'ready' +p95079 +tp95080 +a(g95077 +g95079 +S'to' +p95081 +tp95082 +a(g95079 +g95081 +S'capitulate' +p95083 +tp95084 +a(g95081 +g95083 +S'by' +p95085 +tp95086 +a(g95083 +g95085 +S'paying' +p95087 +tp95088 +a(g95085 +g95087 +S'off' +p95089 +tp95090 +a(g95087 +g95089 +S'the' +p95091 +tp95092 +a(g95089 +g95091 +S'enemy,' +p95093 +tp95094 +a(g95091 +g95093 +S'camillus' +p95095 +tp95096 +a(g95093 +g95095 +S'stirred' +p95097 +tp95098 +a(g95095 +g95097 +S'his' +p95099 +tp95100 +a(g95097 +g95099 +S'troops' +p95101 +tp95102 +a(g95099 +g95101 +S'and' +p95103 +tp95104 +a(g95101 +g95103 +S'fellow' +p95105 +tp95106 +a(g95103 +g95105 +S'citizens' +p95107 +tp95108 +a(g95105 +g95107 +S'with' +p95109 +tp95110 +a(g95107 +g95109 +S'powerful' +p95111 +tp95112 +a(g95109 +g95111 +S'rhetoric.' +p95113 +tp95114 +a(g95111 +g95113 +S'"with' +p95115 +tp95116 +a(g95113 +g95115 +S'iron,"' +p95117 +tp95118 +a(g95115 +g95117 +S'he' +p95119 +tp95120 +a(g95117 +g95119 +S'said,' +p95121 +tp95122 +a(g95119 +g95121 +S'"and' +p95123 +tp95124 +a(g95121 +g95123 +S'not' +p95125 +tp95126 +a(g95123 +g95125 +S'with' +p95127 +tp95128 +a(g95125 +g95127 +S'gold,' +p95129 +tp95130 +a(g95127 +g95129 +S'rome' +p95131 +tp95132 +a(g95129 +g95131 +S'buys' +p95133 +tp95134 +a(g95131 +g95133 +S'her' +p95135 +tp95136 +a(g95133 +g95135 +S'freedom."' +p95137 +tp95138 +a(g95135 +g95137 +S'this' +p95139 +tp95140 +a(g95137 +g95139 +S'spirit' +p95141 +tp95142 +a(g95139 +g95141 +S'of' +p95143 +tp95144 +a(g95141 +g95143 +S'republican' +p95145 +tp95146 +a(g95143 +g95145 +S'virtue' +p95147 +tp95148 +a(g95145 +g95147 +S'appealed' +p95149 +tp95150 +a(g95147 +g95149 +S'to' +p95151 +tp95152 +a(g95149 +g95151 +S'fifteenth-century' +p95153 +tp95154 +a(g95151 +g95153 +S'florentines,' +p95155 +tp95156 +a(g95153 +g95155 +S'who' +p95157 +tp95158 +a(g95155 +g95157 +S'regarded' +p95159 +tp95160 +a(g95157 +g95159 +S'ancient' +p95161 +tp95162 +a(g95159 +g95161 +S'rome' +p95163 +tp95164 +a(g95161 +g95163 +S'as' +p95165 +tp95166 +a(g95163 +g95165 +S'a' +p95167 +tp95168 +a(g95165 +g95167 +S'paradigm' +p95169 +tp95170 +a(g95167 +g95169 +S'for' +p95171 +tp95172 +a(g95169 +g95171 +S'their' +p95173 +tp95174 +a(g95171 +g95173 +S'own' +p95175 +tp95176 +a(g95173 +g95175 +S'city.' +p95177 +tp95178 +a(g95175 +g95177 +S'the' +p95179 +tp95180 +a(g95177 +g95179 +S"scene's" +p95181 +tp95182 +a(g95179 +g95181 +S'relevance' +p95183 +tp95184 +a(g95181 +g95183 +S'was' +p95185 +tp95186 +a(g95183 +g95185 +S'enhanced' +p95187 +tp95188 +a(g95185 +g95187 +S'by' +p95189 +tp95190 +a(g95187 +g95189 +S'its' +p95191 +tp95192 +a(g95189 +g95191 +S'contemporary' +p95193 +tp95194 +a(g95191 +g95193 +S'costumes' +p95195 +tp95196 +a(g95193 +g95195 +S'and' +p95197 +tp95198 +a(g95195 +g95197 +S'other' +p95199 +tp95200 +a(g95197 +g95199 +S'familiar' +p95201 +tp95202 +a(g95199 +g95201 +S'details.' +p95203 +tp95204 +a(g95201 +g95203 +S'the' +p95205 +tp95206 +a(g95203 +g95205 +S'decorated' +p95207 +tp95208 +a(g95205 +g95207 +S'parade' +p95209 +tp95210 +a(g95207 +g95209 +S'floats' +p95211 +tp95212 +a(g95209 +g95211 +S'recalled' +p95213 +tp95214 +a(g95211 +g95213 +S'the' +p95215 +tp95216 +a(g95213 +g95215 +S'lavish' +p95217 +tp95218 +a(g95215 +g95217 +S'spectacle' +p95219 +tp95220 +a(g95217 +g95219 +S'of' +p95221 +tp95222 +a(g95219 +g95221 +S'processions' +p95223 +tp95224 +a(g95221 +g95223 +S'in' +p95225 +tp95226 +a(g95223 +g95225 +S'florence.' +p95227 +tp95228 +a(g95225 +g95227 +S'the' +p95229 +tp95230 +a(g95227 +g95229 +S'battered' +p95231 +tp95232 +a(g95229 +g95231 +S'and' +p95233 +tp95234 +a(g95231 +g95233 +S'blood-stained' +p95235 +tp95236 +a(g95233 +g95235 +S'walls' +p95237 +tp95238 +a(g95235 +g95237 +S'of' +p95239 +tp95240 +a(g95237 +g95239 +S'the' +p95241 +tp95242 +a(g95239 +g95241 +S'city' +p95243 +tp95244 +a(g95241 +g95243 +S'enclose' +p95245 +tp95246 +a(g95243 +g95245 +S'several' +p95247 +tp95248 +a(g95245 +g95247 +S'buildings' +p95249 +tp95250 +a(g95247 +g95249 +S'that' +p95251 +tp95252 +a(g95249 +g95251 +S'could' +p95253 +tp95254 +a(g95251 +g95253 +S'be' +p95255 +tp95256 +a(g95253 +g95255 +S'recognized' +p95257 +tp95258 +a(g95255 +g95257 +S'in' +p95259 +tp95260 +a(g95257 +g95259 +S'rome,' +p95261 +tp95262 +a(g95259 +g95261 +S'including' +p95263 +tp95264 +a(g95261 +g95263 +S'the' +p95265 +tp95266 +a(g95263 +g95265 +S'dome' +p95267 +tp95268 +a(g95265 +g95267 +S'of' +p95269 +tp95270 +a(g95267 +g95269 +S'the' +p95271 +tp95272 +a(g95269 +g95271 +S'pantheon' +p95273 +tp95274 +a(g95271 +g95273 +S'and' +p95275 +tp95276 +a(g95273 +g95275 +S'the' +p95277 +tp95278 +a(g95275 +g95277 +S'drums' +p95279 +tp95280 +a(g95277 +g95279 +S'of' +p95281 +tp95282 +a(g95279 +g95281 +S'castel' +p95283 +tp95284 +a(g95281 +g95283 +S"sant'angelo." +p95285 +tp95286 +a(g95283 +g95285 +S'the' +p95287 +tp95288 +a(g95285 +g95287 +S'heraldic' +p95289 +tp95290 +a(g95287 +g95289 +S'colors' +p95291 +tp95292 +a(g95289 +g95291 +S'that' +p95293 +tp95294 +a(g95291 +g95293 +S'drape' +p95295 +tp95296 +a(g95293 +g95295 +S'the' +p95297 +tp95298 +a(g95295 +g95297 +S'horses' +p95299 +tp95300 +a(g95297 +g95299 +S'probably' +p95301 +tp95302 +a(g95299 +g95301 +S'belonged' +p95303 +tp95304 +a(g95301 +g95303 +S'to' +p95305 +tp95306 +a(g95303 +g95305 +S'the' +p95307 +tp95308 +a(g95305 +g95307 +S"painting's" +p95309 +tp95310 +a(g95307 +g95309 +S'patron,' +p95311 +tp95312 +a(g95309 +g95311 +S'as' +p95313 +tp95314 +a(g95311 +g95313 +S'yet' +p95315 +tp95316 +a(g95313 +g95315 +S'unidentified.' +p95317 +tp95318 +a(g95315 +g95317 +S'at' +p95319 +tp95320 +a(g95317 +g95319 +S'the' +p95321 +tp95322 +a(g95319 +g95321 +S'end' +p95323 +tp95324 +a(g95321 +g95323 +S'of' +p95325 +tp95326 +a(g95323 +g95325 +S'the' +p95327 +tp95328 +a(g95325 +g95327 +S'seventeenth' +p95329 +tp95330 +a(g95327 +g95329 +S'century' +p95331 +tp95332 +a(g95329 +g95331 +S'and' +p95333 +tp95334 +a(g95331 +g95333 +S'in' +p95335 +tp95336 +a(g95333 +g95335 +S'the' +p95337 +tp95338 +a(g95335 +g95337 +S'early' +p95339 +tp95340 +a(g95337 +g95339 +S'part' +p95341 +tp95342 +a(g95339 +g95341 +S'of' +p95343 +tp95344 +a(g95341 +g95343 +S'the' +p95345 +tp95346 +a(g95343 +g95345 +S'eighteenth' +p95347 +tp95348 +a(g95345 +g95347 +S'century,' +p95349 +tp95350 +a(g95347 +g95349 +S'the' +p95351 +tp95352 +a(g95349 +g95351 +S'newly' +p95353 +tp95354 +a(g95351 +g95353 +S'affluent' +p95355 +tp95356 +a(g95353 +g95355 +S'colonists' +p95357 +tp95358 +a(g95355 +g95357 +S'created' +p95359 +tp95360 +a(g95357 +g95359 +S'a' +p95361 +tp95362 +a(g95359 +g95361 +S'demand' +p95363 +tp95364 +a(g95361 +g95363 +S'for' +p95365 +tp95366 +a(g95363 +g95365 +S'finely' +p95367 +tp95368 +a(g95365 +g95367 +S'crafted' +p95369 +tp95370 +a(g95367 +g95369 +S'furniture.' +p95371 +tp95372 +a(g95369 +g95371 +S'american' +p95373 +tp95374 +a(g95371 +g95373 +S'cabinetmakers' +p95375 +tp95376 +a(g95373 +g95375 +S'responded' +p95377 +tp95378 +a(g95375 +g95377 +S'through' +p95379 +tp95380 +a(g95377 +g95379 +S'the' +p95381 +tp95382 +a(g95379 +g95381 +S'use' +p95383 +tp95384 +a(g95381 +g95383 +S'of' +p95385 +tp95386 +a(g95383 +g95385 +S'richer' +p95387 +tp95388 +a(g95385 +g95387 +S'woods' +p95389 +tp95390 +a(g95387 +g95389 +S'and' +p95391 +tp95392 +a(g95389 +g95391 +S'by' +p95393 +tp95394 +a(g95391 +g95393 +S'modifying' +p95395 +tp95396 +a(g95393 +g95395 +S'the' +p95397 +tp95398 +a(g95395 +g95397 +S'earlier' +p95399 +tp95400 +a(g95397 +g95399 +S'jacobean' +p95401 +tp95402 +a(g95399 +g95401 +S'forms' +p95403 +tp95404 +a(g95401 +g95403 +S'in' +p95405 +tp95406 +a(g95403 +g95405 +S'order' +p95407 +tp95408 +a(g95405 +g95407 +S'to' +p95409 +tp95410 +a(g95407 +g95409 +S'achieve' +p95411 +tp95412 +a(g95409 +g95411 +S'the' +p95413 +tp95414 +a(g95411 +g95413 +S'lighter,' +p95415 +tp95416 +a(g95413 +g95415 +S'more' +p95417 +tp95418 +a(g95415 +g95417 +S'graceful' +p95419 +tp95420 +a(g95417 +g95419 +S'designs' +p95421 +tp95422 +a(g95419 +g95421 +S'preferred' +p95423 +tp95424 +a(g95421 +g95423 +S'by' +p95425 +tp95426 +a(g95423 +g95425 +S'fashionable' +p95427 +tp95428 +a(g95425 +g95427 +S'patrons.' +p95429 +tp95430 +a(g95427 +g95429 +S'the' +p95431 +tp95432 +a(g95429 +g95431 +S'taste' +p95433 +tp95434 +a(g95431 +g95433 +S'of' +p95435 +tp95436 +a(g95433 +g95435 +S'the' +p95437 +tp95438 +a(g95435 +g95437 +S'well-to-do' +p95439 +tp95440 +a(g95437 +g95439 +S'colonists' +p95441 +tp95442 +a(g95439 +g95441 +S'and' +p95443 +tp95444 +a(g95441 +g95443 +S'the' +p95445 +tp95446 +a(g95443 +g95445 +S'products' +p95447 +tp95448 +a(g95445 +g95447 +S'of' +p95449 +tp95450 +a(g95447 +g95449 +S'american' +p95451 +tp95452 +a(g95449 +g95451 +S'craftsmen' +p95453 +tp95454 +a(g95451 +g95453 +S'reflected' +p95455 +tp95456 +a(g95453 +g95455 +S'the' +p95457 +tp95458 +a(g95455 +g95457 +S'influence' +p95459 +tp95460 +a(g95457 +g95459 +S'of' +p95461 +tp95462 +a(g95459 +g95461 +S'new' +p95463 +tp95464 +a(g95461 +g95463 +S'fashions' +p95465 +tp95466 +a(g95463 +g95465 +S'in' +p95467 +tp95468 +a(g95465 +g95467 +S'english' +p95469 +tp95470 +a(g95467 +g95469 +S'furniture' +p95471 +tp95472 +a(g95469 +g95471 +S'design.' +p95473 +tp95474 +a(g95471 +g95473 +S'english' +p95475 +tp95476 +a(g95473 +g95475 +S'cabinetry' +p95477 +tp95478 +a(g95475 +g95477 +S'began' +p95479 +tp95480 +a(g95477 +g95479 +S'to' +p95481 +tp95482 +a(g95479 +g95481 +S'take' +p95483 +tp95484 +a(g95481 +g95483 +S'on' +p95485 +tp95486 +a(g95483 +g95485 +S'some' +p95487 +tp95488 +a(g95485 +g95487 +S'of' +p95489 +tp95490 +a(g95487 +g95489 +S'the' +p95491 +tp95492 +a(g95489 +g95491 +S'elegance' +p95493 +tp95494 +a(g95491 +g95493 +S'of' +p95495 +tp95496 +a(g95493 +g95495 +S'french' +p95497 +tp95498 +a(g95495 +g95497 +S'styles' +p95499 +tp95500 +a(g95497 +g95499 +S'as' +p95501 +tp95502 +a(g95499 +g95501 +S'a' +p95503 +tp95504 +a(g95501 +g95503 +S'result' +p95505 +tp95506 +a(g95503 +g95505 +S'of' +p95507 +tp95508 +a(g95505 +g95507 +S'the' +p95509 +tp95510 +a(g95507 +g95509 +S'work' +p95511 +tp95512 +a(g95509 +g95511 +S'of' +p95513 +tp95514 +a(g95511 +g95513 +S'continental' +p95515 +tp95516 +a(g95513 +g95515 +S'craftsmen' +p95517 +tp95518 +a(g95515 +g95517 +S'who' +p95519 +tp95520 +a(g95517 +g95519 +S'came' +p95521 +tp95522 +a(g95519 +g95521 +S'to' +p95523 +tp95524 +a(g95521 +g95523 +S'england' +p95525 +tp95526 +a(g95523 +g95525 +S'in' +p95527 +tp95528 +a(g95525 +g95527 +S'the' +p95529 +tp95530 +a(g95527 +g95529 +S'late' +p95531 +tp95532 +a(g95529 +g95531 +S'seventeenth' +p95533 +tp95534 +a(g95531 +g95533 +S'century.' +p95535 +tp95536 +a(g95533 +g95535 +S'a' +p95537 +tp95538 +a(g95535 +g95537 +S'style' +p95539 +tp95540 +a(g95537 +g95539 +S'called' +p95541 +tp95542 +a(g95539 +g95541 +S'william' +p95543 +tp95544 +a(g95541 +g95543 +S'and' +p95545 +tp95546 +a(g95543 +g95545 +S'mary' +p95547 +tp95548 +a(g95545 +g95547 +S'after' +p95549 +tp95550 +a(g95547 +g95549 +S'the' +p95551 +tp95552 +a(g95549 +g95551 +S'reigning' +p95553 +tp95554 +a(g95551 +g95553 +S'english' +p95555 +tp95556 +a(g95553 +g95555 +S'monarchs' +p95557 +tp95558 +a(g95555 +g95557 +S'thus' +p95559 +tp95560 +a(g95557 +g95559 +S'evolved' +p95561 +tp95562 +a(g95559 +g95561 +S'in' +p95563 +tp95564 +a(g95561 +g95563 +S'england' +p95565 +tp95566 +a(g95563 +g95565 +S'after' +p95567 +tp95568 +a(g95565 +g95567 +S'1660' +p95569 +tp95570 +a(g95567 +g95569 +S'and' +p95571 +tp95572 +a(g95569 +g95571 +S'was' +p95573 +tp95574 +a(g95571 +g95573 +S'adopted' +p95575 +tp95576 +a(g95573 +g95575 +S'by' +p95577 +tp95578 +a(g95575 +g95577 +S'american' +p95579 +tp95580 +a(g95577 +g95579 +S'cabinetmakers' +p95581 +tp95582 +a(g95579 +g95581 +S'at' +p95583 +tp95584 +a(g95581 +g95583 +S'the' +p95585 +tp95586 +a(g95583 +g95585 +S'end' +p95587 +tp95588 +a(g95585 +g95587 +S'of' +p95589 +tp95590 +a(g95587 +g95589 +S'the' +p95591 +tp95592 +a(g95589 +g95591 +S'century.' +p95593 +tp95594 +a(g95591 +g95593 +S'although' +p95595 +tp95596 +a(g95593 +g95595 +S'jacobean' +p95597 +tp95598 +a(g95595 +g95597 +S'decorative' +p95599 +tp95600 +a(g95597 +g95599 +S'techniques' +p95601 +tp95602 +a(g95599 +g95601 +S'such' +p95603 +tp95604 +a(g95601 +g95603 +S'as' +p95605 +tp95606 +a(g95603 +g95605 +S'turning' +p95607 +tp95608 +a(g95605 +g95607 +S'and' +p95609 +tp95610 +a(g95607 +g95609 +S'carving' +p95611 +tp95612 +a(g95609 +g95611 +S'were' +p95613 +tp95614 +a(g95611 +g95613 +S'retained' +p95615 +tp95616 +a(g95613 +g95615 +S'in' +p95617 +tp95618 +a(g95615 +g95617 +S'furniture' +p95619 +tp95620 +a(g95617 +g95619 +S'design,' +p95621 +tp95622 +a(g95619 +g95621 +S'proportions' +p95623 +tp95624 +a(g95621 +g95623 +S'were' +p95625 +tp95626 +a(g95623 +g95625 +S'refined,' +p95627 +tp95628 +a(g95625 +g95627 +S'curves' +p95629 +tp95630 +a(g95627 +g95629 +S'and' +p95631 +tp95632 +a(g95629 +g95631 +S'angles' +p95633 +tp95634 +a(g95631 +g95633 +S'added,' +p95635 +tp95636 +a(g95633 +g95635 +S'and' +p95637 +tp95638 +a(g95635 +g95637 +S'structural' +p95639 +tp95640 +a(g95637 +g95639 +S'members' +p95641 +tp95642 +a(g95639 +g95641 +S'made' +p95643 +tp95644 +a(g95641 +g95643 +S'slimmer.' +p95645 +tp95646 +a(g95643 +g95645 +S'this' +p95647 +tp95648 +a(g95645 +g95647 +S'pine' +p95649 +tp95650 +a(g95647 +g95649 +S'and' +p95651 +tp95652 +a(g95649 +g95651 +S'walnut' +p95653 +tp95654 +a(g95651 +g95653 +S'table' +p95655 +tp95656 +a(g95653 +g95655 +S'with' +p95657 +tp95658 +a(g95655 +g95657 +S'a' +p95659 +tp95660 +a(g95657 +g95659 +S'circular' +p95661 +tp95662 +a(g95659 +g95661 +S'top' +p95663 +tp95664 +a(g95661 +g95663 +S'and' +p95665 +tp95666 +a(g95663 +g95665 +S'three' +p95667 +tp95668 +a(g95665 +g95667 +S'finely' +p95669 +tp95670 +a(g95667 +g95669 +S'turned' +p95671 +tp95672 +a(g95669 +g95671 +S'legs' +p95673 +tp95674 +a(g95671 +g95673 +S'splayed' +p95675 +tp95676 +a(g95673 +g95675 +S'outward' +p95677 +tp95678 +a(g95675 +g95677 +S'at' +p95679 +tp95680 +a(g95677 +g95679 +S'a' +p95681 +tp95682 +a(g95679 +g95681 +S'vigorous' +p95683 +tp95684 +a(g95681 +g95683 +S'angle' +p95685 +tp95686 +a(g95683 +g95685 +S'is' +p95687 +tp95688 +a(g95685 +g95687 +S'a' +p95689 +tp95690 +a(g95687 +g95689 +S'popular' +p95691 +tp95692 +a(g95689 +g95691 +S'william' +p95693 +tp95694 +a(g95691 +g95693 +S'and' +p95695 +tp95696 +a(g95693 +g95695 +S'mary' +p95697 +tp95698 +a(g95695 +g95697 +S'form.' +p95699 +tp95700 +a(g95697 +g95699 +S'the' +p95701 +tp95702 +a(g95699 +g95701 +S'angle' +p95703 +tp95704 +a(g95701 +g95703 +S'of' +p95705 +tp95706 +a(g95703 +g95705 +S'the' +p95707 +tp95708 +a(g95705 +g95707 +S'legs' +p95709 +tp95710 +a(g95707 +g95709 +S'and' +p95711 +tp95712 +a(g95709 +g95711 +S'the' +p95713 +tp95714 +a(g95711 +g95713 +S'curve' +p95715 +tp95716 +a(g95713 +g95715 +S'of' +p95717 +tp95718 +a(g95715 +g95717 +S'the' +p95719 +tp95720 +a(g95717 +g95719 +S'round' +p95721 +tp95722 +a(g95719 +g95721 +S'table' +p95723 +tp95724 +a(g95721 +g95723 +S'avoid' +p95725 +tp95726 +a(g95723 +g95725 +S'the' +p95727 +tp95728 +a(g95725 +g95727 +S'heaviness' +p95729 +tp95730 +a(g95727 +g95729 +S'of' +p95731 +tp95732 +a(g95729 +g95731 +S'the' +p95733 +tp95734 +a(g95731 +g95733 +S'earlier' +p95735 +tp95736 +a(g95733 +g95735 +S'jacobean' +p95737 +tp95738 +a(g95735 +g95737 +S'square' +p95739 +tp95740 +a(g95737 +g95739 +S'forms.' +p95741 +tp95742 +a(g95739 +g95741 +S'the' +p95743 +tp95744 +a(g95741 +g95743 +S'bulbous' +p95745 +tp95746 +a(g95743 +g95745 +S'uprights' +p95747 +tp95748 +a(g95745 +g95747 +S'of' +p95749 +tp95750 +a(g95747 +g95749 +S'jacobean' +p95751 +tp95752 +a(g95749 +g95751 +S'furniture' +p95753 +tp95754 +a(g95751 +g95753 +S'have' +p95755 +tp95756 +a(g95753 +g95755 +S'given' +p95757 +tp95758 +a(g95755 +g95757 +S'way' +p95759 +tp95760 +a(g95757 +g95759 +S'to' +p95761 +tp95762 +a(g95759 +g95761 +S'slim' +p95763 +tp95764 +a(g95761 +g95763 +S'and' +p95765 +tp95766 +a(g95763 +g95765 +S'varied' +p95767 +tp95768 +a(g95765 +g95767 +S'turnings.' +p95769 +tp95770 +a(g95767 +g95769 +S'the' +p95771 +tp95772 +a(g95769 +g95771 +S'total' +p95773 +tp95774 +a(g95771 +g95773 +S'effect' +p95775 +tp95776 +a(g95773 +g95775 +S'is' +p95777 +tp95778 +a(g95775 +g95777 +S'one' +p95779 +tp95780 +a(g95777 +g95779 +S'of' +p95781 +tp95782 +a(g95779 +g95781 +S'lightness' +p95783 +tp95784 +a(g95781 +g95783 +S'and' +p95785 +tp95786 +a(g95783 +g95785 +S'refinement.' +p95787 +tp95788 +a(g95785 +g95787 +S'this' +p95789 +tp95790 +a(g95787 +g95789 +S'small' +p95791 +tp95792 +a(g95789 +g95791 +S'panel' +p95793 +tp95794 +a(g95791 +g95793 +S'originally' +p95795 +tp95796 +a(g95793 +g95795 +S'functioned' +p95797 +tp95798 +a(g95795 +g95797 +S'as' +p95799 +tp95800 +a(g95797 +g95799 +S'a' +p95801 +tp95802 +a(g95799 +g95801 +S'cover' +p95803 +tp95804 +a(g95801 +g95803 +S'for' +p95805 +tp95806 +a(g95803 +g95805 +S'a' +p95807 +tp95808 +a(g95805 +g95807 +S'portrait.' +p95809 +tp95810 +a(g95807 +g95809 +S'covers' +p95811 +tp95812 +a(g95809 +g95811 +S'not' +p95813 +tp95814 +a(g95811 +g95813 +S'only' +p95815 +tp95816 +a(g95813 +g95815 +S'protected' +p95817 +tp95818 +a(g95815 +g95817 +S'the' +p95819 +tp95820 +a(g95817 +g95819 +S'painting' +p95821 +tp95822 +a(g95819 +g95821 +S'underneath,' +p95823 +tp95824 +a(g95821 +g95823 +S'but' +p95825 +tp95826 +a(g95823 +g95825 +S'allowed' +p95827 +tp95828 +a(g95825 +g95827 +S'the' +p95829 +tp95830 +a(g95827 +g95829 +S'artist' +p95831 +tp95832 +a(g95829 +g95831 +S'to' +p95833 +tp95834 +a(g95831 +g95833 +S'expand' +p95835 +tp95836 +a(g95833 +g95835 +S'symbolically' +p95837 +tp95838 +a(g95835 +g95837 +S'on' +p95839 +tp95840 +a(g95837 +g95839 +S'particular' +p95841 +tp95842 +a(g95839 +g95841 +S'facets' +p95843 +tp95844 +a(g95841 +g95843 +S'of' +p95845 +tp95846 +a(g95843 +g95845 +S'the' +p95847 +tp95848 +a(g95845 +g95847 +S"patron's" +p95849 +tp95850 +a(g95847 +g95849 +S'personality' +p95851 +tp95852 +a(g95849 +g95851 +S'and' +p95853 +tp95854 +a(g95851 +g95853 +S'concerns.' +p95855 +tp95856 +a(g95853 +g95855 +S'this' +p95857 +tp95858 +a(g95855 +g95857 +S'allegorical' +p95859 +tp95860 +a(g95857 +g95859 +S'scene' +p95861 +tp95862 +a(g95859 +g95861 +S'covered' +p95863 +tp95864 +a(g95861 +g95863 +S'a' +p95865 +tp95866 +a(g95863 +g95865 +S'portrait,' +p95867 +tp95868 +a(g95865 +g95867 +S'now' +p95869 +tp95870 +a(g95867 +g95869 +S'in' +p95871 +tp95872 +a(g95869 +g95871 +S'naples,' +p95873 +tp95874 +a(g95871 +g95873 +S'of' +p95875 +tp95876 +a(g95873 +g95875 +S'bernardo' +p95877 +tp95878 +a(g95875 +g95877 +S"de'" +p95879 +tp95880 +a(g95877 +g95879 +S'rossi,' +p95881 +tp95882 +a(g95879 +g95881 +S'bishop' +p95883 +tp95884 +a(g95881 +g95883 +S'of' +p95885 +tp95886 +a(g95883 +g95885 +S'trevisio.' +p95887 +tp95888 +a(g95885 +g95887 +S'rossi' +p95889 +tp95890 +a(g95887 +g95889 +S'had' +p95891 +tp95892 +a(g95889 +g95891 +S'only' +p95893 +tp95894 +a(g95891 +g95893 +S'recently' +p95895 +tp95896 +a(g95893 +g95895 +S'survived' +p95897 +tp95898 +a(g95895 +g95897 +S'an' +p95899 +tp95900 +a(g95897 +g95899 +S'assassination' +p95901 +tp95902 +a(g95899 +g95901 +S'attempt' +p95903 +tp95904 +a(g95901 +g95903 +S'when' +p95905 +tp95906 +a(g95903 +g95905 +S'lotto' +p95907 +tp95908 +a(g95905 +g95907 +S'painted' +p95909 +tp95910 +a(g95907 +g95909 +S'him.' +p95911 +tp95912 +a(g95909 +g95911 +S'this' +p95913 +tp95914 +a(g95911 +g95913 +S'scene' +p95915 +tp95916 +a(g95913 +g95915 +S'presents' +p95917 +tp95918 +a(g95915 +g95917 +S'a' +p95919 +tp95920 +a(g95917 +g95919 +S'view' +p95921 +tp95922 +a(g95919 +g95921 +S'of' +p95923 +tp95924 +a(g95921 +g95923 +S'the' +p95925 +tp95926 +a(g95923 +g95925 +S"bishop's" +p95927 +tp95928 +a(g95925 +g95927 +S'virtue' +p95929 +tp95930 +a(g95927 +g95929 +S'and' +p95931 +tp95932 +a(g95929 +g95931 +S'perseverance—and' +p95933 +tp95934 +a(g95931 +g95933 +S'the' +p95935 +tp95936 +a(g95933 +g95935 +S'ultimate' +p95937 +tp95938 +a(g95935 +g95937 +S'award' +p95939 +tp95940 +a(g95937 +g95939 +S'available' +p95941 +tp95942 +a(g95939 +g95941 +S'to' +p95943 +tp95944 +a(g95941 +g95943 +S'those' +p95945 +tp95946 +a(g95943 +g95945 +S'who' +p95947 +tp95948 +a(g95945 +g95947 +S'choose' +p95949 +tp95950 +a(g95947 +g95949 +S'a' +p95951 +tp95952 +a(g95949 +g95951 +S'difficult' +p95953 +tp95954 +a(g95951 +g95953 +S'path' +p95955 +tp95956 +a(g95953 +g95955 +S'over' +p95957 +tp95958 +a(g95955 +g95957 +S'more' +p95959 +tp95960 +a(g95957 +g95959 +S'immediate' +p95961 +tp95962 +a(g95959 +g95961 +S'and' +p95963 +tp95964 +a(g95961 +g95963 +S'worldly' +p95965 +tp95966 +a(g95963 +g95965 +S'gratifications.' +p95967 +tp95968 +a(g95965 +g95967 +S'the' +p95969 +tp95970 +a(g95967 +g95969 +S'panel' +p95971 +tp95972 +a(g95969 +g95971 +S'is' +p95973 +tp95974 +a(g95971 +g95973 +S'clearly' +p95975 +tp95976 +a(g95973 +g95975 +S'divided' +p95977 +tp95978 +a(g95975 +g95977 +S'in' +p95979 +tp95980 +a(g95977 +g95979 +S'two' +p95981 +tp95982 +a(g95979 +g95981 +S'halves' +p95983 +tp95984 +a(g95981 +g95983 +S'by' +p95985 +tp95986 +a(g95983 +g95985 +S'the' +p95987 +tp95988 +a(g95985 +g95987 +S'central' +p95989 +tp95990 +a(g95987 +g95989 +S'tree.' +p95991 +tp95992 +a(g95989 +g95991 +S'on' +p95993 +tp95994 +a(g95991 +g95993 +S'the' +p95995 +tp95996 +a(g95993 +g95995 +S'right' +p95997 +tp95998 +a(g95995 +g95997 +S'side,' +p95999 +tp96000 +a(g95997 +g95999 +S'a' +p96001 +tp96002 +a(g95999 +g96001 +S'drunken' +p96003 +tp96004 +a(g96001 +g96003 +S'satyr' +p96005 +tp96006 +a(g96003 +g96005 +S'peers' +p96007 +tp96008 +a(g96005 +g96007 +S'into' +p96009 +tp96010 +a(g96007 +g96009 +S'a' +p96011 +tp96012 +a(g96009 +g96011 +S'wine' +p96013 +tp96014 +a(g96011 +g96013 +S'pitcher,' +p96015 +tp96016 +a(g96013 +g96015 +S'the' +p96017 +tp96018 +a(g96015 +g96017 +S'intoxicating' +p96019 +tp96020 +a(g96017 +g96019 +S'liquid' +p96021 +tp96022 +a(g96019 +g96021 +S'already' +p96023 +tp96024 +a(g96021 +g96023 +S'spilled' +p96025 +tp96026 +a(g96023 +g96025 +S'around' +p96027 +tp96028 +a(g96025 +g96027 +S'him.' +p96029 +tp96030 +a(g96027 +g96029 +S'his' +p96031 +tp96032 +a(g96029 +g96031 +S'surroundings' +p96033 +tp96034 +a(g96031 +g96033 +S'are' +p96035 +tp96036 +a(g96033 +g96035 +S'lush' +p96037 +tp96038 +a(g96035 +g96037 +S'and' +p96039 +tp96040 +a(g96037 +g96039 +S'green,' +p96041 +tp96042 +a(g96039 +g96041 +S'but' +p96043 +tp96044 +a(g96041 +g96043 +S'farther' +p96045 +tp96046 +a(g96043 +g96045 +S'in' +p96047 +tp96048 +a(g96045 +g96047 +S'the' +p96049 +tp96050 +a(g96047 +g96049 +S'distance' +p96051 +tp96052 +a(g96049 +g96051 +S'a' +p96053 +tp96054 +a(g96051 +g96053 +S'storm' +p96055 +tp96056 +a(g96053 +g96055 +S'rises' +p96057 +tp96058 +a(g96055 +g96057 +S'and' +p96059 +tp96060 +a(g96057 +g96059 +S'a' +p96061 +tp96062 +a(g96059 +g96061 +S'ship' +p96063 +tp96064 +a(g96061 +g96063 +S'sinks' +p96065 +tp96066 +a(g96063 +g96065 +S'below' +p96067 +tp96068 +a(g96065 +g96067 +S'the' +p96069 +tp96070 +a(g96067 +g96069 +S'waves.' +p96071 +tp96072 +a(g96069 +g96071 +S'on' +p96073 +tp96074 +a(g96071 +g96073 +S'the' +p96075 +tp96076 +a(g96073 +g96075 +S'other' +p96077 +tp96078 +a(g96075 +g96077 +S'side,' +p96079 +tp96080 +a(g96077 +g96079 +S'where' +p96081 +tp96082 +a(g96079 +g96081 +S'we' +p96083 +tp96084 +a(g96081 +g96083 +S'find' +p96085 +tp96086 +a(g96083 +g96085 +S"rossi's" +p96087 +tp96088 +a(g96085 +g96087 +S'coat-of-arms' +p96089 +tp96090 +a(g96087 +g96089 +S'leaning' +p96091 +tp96092 +a(g96089 +g96091 +S'against' +p96093 +tp96094 +a(g96091 +g96093 +S'a' +p96095 +tp96096 +a(g96093 +g96095 +S'tree,' +p96097 +tp96098 +a(g96095 +g96097 +S'an' +p96099 +tp96100 +a(g96097 +g96099 +S'industrious' +p96101 +tp96102 +a(g96099 +g96101 +S'child' +p96103 +tp96104 +a(g96101 +g96103 +S'busies' +p96105 +tp96106 +a(g96103 +g96105 +S'himself' +p96107 +tp96108 +a(g96105 +g96107 +S'with' +p96109 +tp96110 +a(g96107 +g96109 +S'tools.' +p96111 +tp96112 +a(g96109 +g96111 +S'here' +p96113 +tp96114 +a(g96111 +g96113 +S'the' +p96115 +tp96116 +a(g96113 +g96115 +S'land' +p96117 +tp96118 +a(g96115 +g96117 +S'is' +p96119 +tp96120 +a(g96117 +g96119 +S'parched' +p96121 +tp96122 +a(g96119 +g96121 +S'and' +p96123 +tp96124 +a(g96121 +g96123 +S'rocky,' +p96125 +tp96126 +a(g96123 +g96125 +S'but' +p96127 +tp96128 +a(g96125 +g96127 +S'in' +p96129 +tp96130 +a(g96127 +g96129 +S'the' +p96131 +tp96132 +a(g96129 +g96131 +S'distance' +p96133 +tp96134 +a(g96131 +g96133 +S'the' +p96135 +tp96136 +a(g96133 +g96135 +S'same' +p96137 +tp96138 +a(g96135 +g96137 +S'child,' +p96139 +tp96140 +a(g96137 +g96139 +S'now' +p96141 +tp96142 +a(g96139 +g96141 +S'with' +p96143 +tp96144 +a(g96141 +g96143 +S'an' +p96145 +tp96146 +a(g96143 +g96145 +S"angel's" +p96147 +tp96148 +a(g96145 +g96147 +S'wings,' +p96149 +tp96150 +a(g96147 +g96149 +S'climbs' +p96151 +tp96152 +a(g96149 +g96151 +S'a' +p96153 +tp96154 +a(g96151 +g96153 +S'hill' +p96155 +tp96156 +a(g96153 +g96155 +S'toward' +p96157 +tp96158 +a(g96155 +g96157 +S'a' +p96159 +tp96160 +a(g96157 +g96159 +S'brilliant' +p96161 +tp96162 +a(g96159 +g96161 +S'radiance.' +p96163 +tp96164 +a(g96161 +g96163 +S'even' +p96165 +tp96166 +a(g96163 +g96165 +S'the' +p96167 +tp96168 +a(g96165 +g96167 +S'tree' +p96169 +tp96170 +a(g96167 +g96169 +S'sprouts' +p96171 +tp96172 +a(g96169 +g96171 +S'with' +p96173 +tp96174 +a(g96171 +g96173 +S'new' +p96175 +tp96176 +a(g96173 +g96175 +S'life,' +p96177 +tp96178 +a(g96175 +g96177 +S'but' +p96179 +tp96180 +a(g96177 +g96179 +S'on' +p96181 +tp96182 +a(g96179 +g96181 +S'the' +p96183 +tp96184 +a(g96181 +g96183 +S'left' +p96185 +tp96186 +a(g96183 +g96185 +S'side' +p96187 +tp96188 +a(g96185 +g96187 +S'only.' +p96189 +tp96190 +a(g96187 +g96189 +S'it' +p96191 +tp96192 +a(g96189 +g96191 +S'may' +p96193 +tp96194 +a(g96191 +g96193 +S'refer' +p96195 +tp96196 +a(g96193 +g96195 +S'to' +p96197 +tp96198 +a(g96195 +g96197 +S'job' +p96199 +tp96200 +a(g96197 +g96199 +S'14:7:' +p96201 +tp96202 +a(g96199 +g96201 +S'"for' +p96203 +tp96204 +a(g96201 +g96203 +S'there' +p96205 +tp96206 +a(g96203 +g96205 +S'is' +p96207 +tp96208 +a(g96205 +g96207 +S'hope' +p96209 +tp96210 +a(g96207 +g96209 +S'of' +p96211 +tp96212 +a(g96209 +g96211 +S'a' +p96213 +tp96214 +a(g96211 +g96213 +S'tree,' +p96215 +tp96216 +a(g96213 +g96215 +S'if' +p96217 +tp96218 +a(g96215 +g96217 +S'it' +p96219 +tp96220 +a(g96217 +g96219 +S'be' +p96221 +tp96222 +a(g96219 +g96221 +S'cut' +p96223 +tp96224 +a(g96221 +g96223 +S'down,' +p96225 +tp96226 +a(g96223 +g96225 +S'that' +p96227 +tp96228 +a(g96225 +g96227 +S'it' +p96229 +tp96230 +a(g96227 +g96229 +S'will' +p96231 +tp96232 +a(g96229 +g96231 +S'sprout' +p96233 +tp96234 +a(g96231 +g96233 +S'again."' +p96235 +tp96236 +a(g96233 +g96235 +S'the' +p96237 +tp96238 +a(g96235 +g96237 +S'bishop,' +p96239 +tp96240 +a(g96237 +g96239 +S'like' +p96241 +tp96242 +a(g96239 +g96241 +S'job' +p96243 +tp96244 +a(g96241 +g96243 +S'beset' +p96245 +tp96246 +a(g96243 +g96245 +S'by' +p96247 +tp96248 +a(g96245 +g96247 +S'troubles,' +p96249 +tp96250 +a(g96247 +g96249 +S'would' +p96251 +tp96252 +a(g96249 +g96251 +S'also' +p96253 +tp96254 +a(g96251 +g96253 +S'flourish' +p96255 +tp96256 +a(g96253 +g96255 +S'through' +p96257 +tp96258 +a(g96255 +g96257 +S'steadfast' +p96259 +tp96260 +a(g96257 +g96259 +S'virtue.' +p96261 +tp96262 +a(g96259 +g96261 +S'the' +p96263 +tp96264 +a(g96261 +g96263 +S'clarity' +p96265 +tp96266 +a(g96263 +g96265 +S'of' +p96267 +tp96268 +a(g96265 +g96267 +S"lotto's" +p96269 +tp96270 +a(g96267 +g96269 +S'landscape' +p96271 +tp96272 +a(g96269 +g96271 +S'has' +p96273 +tp96274 +a(g96271 +g96273 +S'little' +p96275 +tp96276 +a(g96273 +g96275 +S'to' +p96277 +tp96278 +a(g96275 +g96277 +S'do' +p96279 +tp96280 +a(g96277 +g96279 +S'with' +p96281 +tp96282 +a(g96279 +g96281 +S'the' +p96283 +tp96284 +a(g96281 +g96283 +S'soft' +p96285 +tp96286 +a(g96283 +g96285 +S'dreaminess' +p96287 +tp96288 +a(g96285 +g96287 +S'recently' +p96289 +tp96290 +a(g96287 +g96289 +S'introduced' +p96291 +tp96292 +a(g96289 +g96291 +S'by' +p96293 +tp96294 +a(g96291 +g96293 +S'giorgione.' +p96295 +tp96296 +a(g96293 +g96295 +S'it' +p96297 +tp96298 +a(g96295 +g96297 +S'shows' +p96299 +tp96300 +a(g96297 +g96299 +S'instead' +p96301 +tp96302 +a(g96299 +g96301 +S'the' +p96303 +tp96304 +a(g96301 +g96303 +S'continuing' +p96305 +tp96306 +a(g96303 +g96305 +S'influence' +p96307 +tp96308 +a(g96305 +g96307 +S'of' +p96309 +tp96310 +a(g96307 +g96309 +S'the' +p96311 +tp96312 +a(g96309 +g96311 +S'kind' +p96313 +tp96314 +a(g96311 +g96313 +S'of' +p96315 +tp96316 +a(g96313 +g96315 +S'precision' +p96317 +tp96318 +a(g96315 +g96317 +S'found' +p96319 +tp96320 +a(g96317 +g96319 +S'in' +p96321 +tp96322 +a(g96319 +g96321 +S'northern' +p96323 +tp96324 +a(g96321 +g96323 +S'art,' +p96325 +tp96326 +a(g96323 +g96325 +S'especially' +p96327 +tp96328 +a(g96325 +g96327 +S'that' +p96329 +tp96330 +a(g96327 +g96329 +S'of' +p96331 +tp96332 +a(g96329 +g96331 +S'the' +p96333 +tp96334 +a(g96331 +g96333 +S'german' +p96335 +tp96336 +a(g96333 +g96335 +S'pietro' +p96337 +tp96338 +a(g96335 +g96337 +S'vannucci,' +p96339 +tp96340 +a(g96337 +g96339 +S'called' +p96341 +tp96342 +a(g96339 +g96341 +S'perugino' +p96343 +tp96344 +a(g96341 +g96343 +S'after' +p96345 +tp96346 +a(g96343 +g96345 +S'the' +p96347 +tp96348 +a(g96345 +g96347 +S'city' +p96349 +tp96350 +a(g96347 +g96349 +S'in' +p96351 +tp96352 +a(g96349 +g96351 +S'which' +p96353 +tp96354 +a(g96351 +g96353 +S'he' +p96355 +tp96356 +a(g96353 +g96355 +S'often' +p96357 +tp96358 +a(g96355 +g96357 +S'lived,' +p96359 +tp96360 +a(g96357 +g96359 +S'collaborated' +p96361 +tp96362 +a(g96359 +g96361 +S'with' +p96363 +tp96364 +a(g96361 +g96363 +S'other' +p96365 +tp96366 +a(g96363 +g96365 +S'celebrated' +p96367 +tp96368 +a(g96365 +g96367 +S'painters' +p96369 +tp96370 +a(g96367 +g96369 +S'in' +p96371 +tp96372 +a(g96369 +g96371 +S'one' +p96373 +tp96374 +a(g96371 +g96373 +S'of' +p96375 +tp96376 +a(g96373 +g96375 +S'the' +p96377 +tp96378 +a(g96375 +g96377 +S'most' +p96379 +tp96380 +a(g96377 +g96379 +S'prestigious' +p96381 +tp96382 +a(g96379 +g96381 +S'commissions' +p96383 +tp96384 +a(g96381 +g96383 +S'of' +p96385 +tp96386 +a(g96383 +g96385 +S'the' +p96387 +tp96388 +a(g96385 +g96387 +S'late' +p96389 +tp96390 +a(g96387 +g96389 +S'fifteenth' +p96391 +tp96392 +a(g96389 +g96391 +S'century' +p96393 +tp96394 +a(g96391 +g96393 +S'--' +p96395 +tp96396 +a(g96393 +g96395 +S'the' +p96397 +tp96398 +a(g96395 +g96397 +S'decoration' +p96399 +tp96400 +a(g96397 +g96399 +S'of' +p96401 +tp96402 +a(g96399 +g96401 +S'the' +p96403 +tp96404 +a(g96401 +g96403 +S'walls' +p96405 +tp96406 +a(g96403 +g96405 +S'of' +p96407 +tp96408 +a(g96405 +g96407 +S'the' +p96409 +tp96410 +a(g96407 +g96409 +S'sistine' +p96411 +tp96412 +a(g96409 +g96411 +S'chapel' +p96413 +tp96414 +a(g96411 +g96413 +S'in' +p96415 +tp96416 +a(g96413 +g96415 +S'1481-1482.' +p96417 +tp96418 +a(g96415 +g96417 +S'he' +p96419 +tp96420 +a(g96417 +g96419 +S'headed' +p96421 +tp96422 +a(g96419 +g96421 +S'active' +p96423 +tp96424 +a(g96421 +g96423 +S'workshops' +p96425 +tp96426 +a(g96423 +g96425 +S'in' +p96427 +tp96428 +a(g96425 +g96427 +S'perugia' +p96429 +tp96430 +a(g96427 +g96429 +S'and' +p96431 +tp96432 +a(g96429 +g96431 +S'florence,' +p96433 +tp96434 +a(g96431 +g96433 +S'where' +p96435 +tp96436 +a(g96433 +g96435 +S'he' +p96437 +tp96438 +a(g96435 +g96437 +S'would' +p96439 +tp96440 +a(g96437 +g96439 +S'eventually' +p96441 +tp96442 +a(g96439 +g96441 +S'be' +p96443 +tp96444 +a(g96441 +g96443 +S'overshadowed' +p96445 +tp96446 +a(g96443 +g96445 +S'by' +p96447 +tp96448 +a(g96445 +g96447 +S'his' +p96449 +tp96450 +a(g96447 +g96449 +S'greatest' +p96451 +tp96452 +a(g96449 +g96451 +S'pupil,' +p96453 +tp96454 +a(g96451 +g96453 +S'raphael.' +p96455 +tp96456 +a(g96453 +g96455 +S"perugino's" +p96457 +tp96458 +a(g96455 +g96457 +S'from' +p96459 +tp96460 +a(g96457 +g96459 +S'the' +p96461 +tp96462 +a(g96459 +g96461 +S'late' +p96463 +tp96464 +a(g96461 +g96463 +S'seventeenth' +p96465 +tp96466 +a(g96463 +g96465 +S'to' +p96467 +tp96468 +a(g96465 +g96467 +S'the' +p96469 +tp96470 +a(g96467 +g96469 +S'early' +p96471 +tp96472 +a(g96469 +g96471 +S'twentieth' +p96473 +tp96474 +a(g96471 +g96473 +S'century' +p96475 +tp96476 +a(g96473 +g96475 +S"perugino's" +p96477 +tp96478 +a(g96475 +g96477 +S'long' +p96479 +tp96480 +a(g96477 +g96479 +S'thought' +p96481 +tp96482 +a(g96479 +g96481 +S'to' +p96483 +tp96484 +a(g96481 +g96483 +S'have' +p96485 +tp96486 +a(g96483 +g96485 +S'been' +p96487 +tp96488 +a(g96485 +g96487 +S'painted' +p96489 +tp96490 +a(g96487 +g96489 +S'by' +p96491 +tp96492 +a(g96489 +g96491 +S'caravaggio,' +p96493 +tp96494 +a(g96491 +g96493 +S'this' +p96495 +tp96496 +a(g96493 +g96495 +S'still' +p96497 +tp96498 +a(g96495 +g96497 +S'life' +p96499 +tp96500 +a(g96497 +g96499 +S'shares' +p96501 +tp96502 +a(g96499 +g96501 +S'his' +p96503 +tp96504 +a(g96501 +g96503 +S'naturalistic' +p96505 +tp96506 +a(g96503 +g96505 +S'arrangement' +p96507 +tp96508 +a(g96505 +g96507 +S'of' +p96509 +tp96510 +a(g96507 +g96509 +S'foodstuffs,' +p96511 +tp96512 +a(g96509 +g96511 +S'placed' +p96513 +tp96514 +a(g96511 +g96513 +S'close' +p96515 +tp96516 +a(g96513 +g96515 +S'to' +p96517 +tp96518 +a(g96515 +g96517 +S'the' +p96519 +tp96520 +a(g96517 +g96519 +S'front' +p96521 +tp96522 +a(g96519 +g96521 +S'of' +p96523 +tp96524 +a(g96521 +g96523 +S'the' +p96525 +tp96526 +a(g96523 +g96525 +S'picture' +p96527 +tp96528 +a(g96525 +g96527 +S'plane.' +p96529 +tp96530 +a(g96527 +g96529 +S'here,' +p96531 +tp96532 +a(g96529 +g96531 +S'however,' +p96533 +tp96534 +a(g96531 +g96533 +S'the' +p96535 +tp96536 +a(g96533 +g96535 +S'painter' +p96537 +tp96538 +a(g96535 +g96537 +S'has' +p96539 +tp96540 +a(g96537 +g96539 +S'used' +p96541 +tp96542 +a(g96539 +g96541 +S'light' +p96543 +tp96544 +a(g96541 +g96543 +S'to' +p96545 +tp96546 +a(g96543 +g96545 +S'soften' +p96547 +tp96548 +a(g96545 +g96547 +S'the' +p96549 +tp96550 +a(g96547 +g96549 +S'forms' +p96551 +tp96552 +a(g96549 +g96551 +S'of' +p96553 +tp96554 +a(g96551 +g96553 +S'ripe' +p96555 +tp96556 +a(g96553 +g96555 +S'fruit—edges' +p96557 +tp96558 +a(g96555 +g96557 +S'of' +p96559 +tp96560 +a(g96557 +g96559 +S'the' +p96561 +tp96562 +a(g96559 +g96561 +S'highlighted' +p96563 +tp96564 +a(g96561 +g96563 +S'apple' +p96565 +tp96566 +a(g96563 +g96565 +S'on' +p96567 +tp96568 +a(g96565 +g96567 +S'the' +p96569 +tp96570 +a(g96567 +g96569 +S'pewter' +p96571 +tp96572 +a(g96569 +g96571 +S'plate' +p96573 +tp96574 +a(g96571 +g96573 +S'seem' +p96575 +tp96576 +a(g96573 +g96575 +S'to' +p96577 +tp96578 +a(g96575 +g96577 +S'blur' +p96579 +tp96580 +a(g96577 +g96579 +S'and' +p96581 +tp96582 +a(g96579 +g96581 +S'dissolve.' +p96583 +tp96584 +a(g96581 +g96583 +S'this' +p96585 +tp96586 +a(g96583 +g96585 +S'is' +p96587 +tp96588 +a(g96585 +g96587 +S'characteristic' +p96589 +tp96590 +a(g96587 +g96589 +S'of' +p96591 +tp96592 +a(g96589 +g96591 +S'works' +p96593 +tp96594 +a(g96591 +g96593 +S'painted' +p96595 +tp96596 +a(g96593 +g96595 +S'by' +p96597 +tp96598 +a(g96595 +g96597 +S'an' +p96599 +tp96600 +a(g96597 +g96599 +S'artist' +p96601 +tp96602 +a(g96599 +g96601 +S'dubbed' +p96603 +tp96604 +a(g96601 +g96603 +S'the' +p96605 +tp96606 +a(g96603 +g96605 +S'pensionante' +p96607 +tp96608 +a(g96605 +g96607 +S'del' +p96609 +tp96610 +a(g96607 +g96609 +S'saraceni,' +p96611 +tp96612 +a(g96609 +g96611 +S'literally,' +p96613 +tp96614 +a(g96611 +g96613 +S'the' +p96615 +tp96616 +a(g96613 +g96615 +S'boarder' +p96617 +tp96618 +a(g96615 +g96617 +S'of' +p96619 +tp96620 +a(g96617 +g96619 +S'saraceni.' +p96621 +tp96622 +a(g96619 +g96621 +S'carlo' +p96623 +tp96624 +a(g96621 +g96623 +S'saraceni' +p96625 +tp96626 +a(g96623 +g96625 +S'was' +p96627 +tp96628 +a(g96625 +g96627 +S'one' +p96629 +tp96630 +a(g96627 +g96629 +S'of' +p96631 +tp96632 +a(g96629 +g96631 +S'the' +p96633 +tp96634 +a(g96631 +g96633 +S'many' +p96635 +tp96636 +a(g96633 +g96635 +S'painters' +p96637 +tp96638 +a(g96635 +g96637 +S'in' +p96639 +tp96640 +a(g96637 +g96639 +S'rome' +p96641 +tp96642 +a(g96639 +g96641 +S'who' +p96643 +tp96644 +a(g96641 +g96643 +S'were' +p96645 +tp96646 +a(g96643 +g96645 +S'heavily' +p96647 +tp96648 +a(g96645 +g96647 +S'influenced' +p96649 +tp96650 +a(g96647 +g96649 +S'by' +p96651 +tp96652 +a(g96649 +g96651 +S'caravaggio.' +p96653 +tp96654 +a(g96651 +g96653 +S'a' +p96655 +tp96656 +a(g96653 +g96655 +S'slight' +p96657 +tp96658 +a(g96655 +g96657 +S'elevation' +p96659 +tp96660 +a(g96657 +g96659 +S'in' +p96661 +tp96662 +a(g96659 +g96661 +S'viewpoint' +p96663 +tp96664 +a(g96661 +g96663 +S'reduces' +p96665 +tp96666 +a(g96663 +g96665 +S'the' +p96667 +tp96668 +a(g96665 +g96667 +S'formality' +p96669 +tp96670 +a(g96667 +g96669 +S'of' +p96671 +tp96672 +a(g96669 +g96671 +S'this' +p96673 +tp96674 +a(g96671 +g96673 +S'composition,' +p96675 +tp96676 +a(g96673 +g96675 +S'but' +p96677 +tp96678 +a(g96675 +g96677 +S'it' +p96679 +tp96680 +a(g96677 +g96679 +S'nevertheless' +p96681 +tp96682 +a(g96679 +g96681 +S'evinces' +p96683 +tp96684 +a(g96681 +g96683 +S'the' +p96685 +tp96686 +a(g96683 +g96685 +S'strong' +p96687 +tp96688 +a(g96685 +g96687 +S'sense' +p96689 +tp96690 +a(g96687 +g96689 +S'of' +p96691 +tp96692 +a(g96689 +g96691 +S'geometry' +p96693 +tp96694 +a(g96691 +g96693 +S'underlying' +p96695 +tp96696 +a(g96693 +g96695 +S'its' +p96697 +tp96698 +a(g96695 +g96697 +S'organization—stronger' +p96699 +tp96700 +a(g96697 +g96699 +S'than' +p96701 +tp96702 +a(g96699 +g96701 +S'in' +p96703 +tp96704 +a(g96701 +g96703 +S'saraceni’s' +p96705 +tp96706 +a(g96703 +g96705 +S'or' +p96707 +tp96708 +a(g96705 +g96707 +S'caravaggio’s' +p96709 +tp96710 +a(g96707 +g96709 +S'own' +p96711 +tp96712 +a(g96709 +g96711 +S'paintings.' +p96713 +tp96714 +a(g96711 +g96713 +S'notice,' +p96715 +tp96716 +a(g96713 +g96715 +S'for' +p96717 +tp96718 +a(g96715 +g96717 +S'example,' +p96719 +tp96720 +a(g96717 +g96719 +S'the' +p96721 +tp96722 +a(g96719 +g96721 +S'repetition' +p96723 +tp96724 +a(g96721 +g96723 +S'of' +p96725 +tp96726 +a(g96723 +g96725 +S'round' +p96727 +tp96728 +a(g96725 +g96727 +S'form' +p96729 +tp96730 +a(g96727 +g96729 +S'in' +p96731 +tp96732 +a(g96729 +g96731 +S'the' +p96733 +tp96734 +a(g96731 +g96733 +S'melons,' +p96735 +tp96736 +a(g96733 +g96735 +S'plates,' +p96737 +tp96738 +a(g96735 +g96737 +S'and' +p96739 +tp96740 +a(g96737 +g96739 +S'swelling' +p96741 +tp96742 +a(g96739 +g96741 +S'wine' +p96743 +tp96744 +a(g96741 +g96743 +S'carafe.' +p96745 +tp96746 +a(g96743 +g96745 +S'this' +p96747 +tp96748 +a(g96745 +g96747 +S'insistent' +p96749 +tp96750 +a(g96747 +g96749 +S'structure,' +p96751 +tp96752 +a(g96749 +g96751 +S'together' +p96753 +tp96754 +a(g96751 +g96753 +S'with' +p96755 +tp96756 +a(g96753 +g96755 +S'a' +p96757 +tp96758 +a(g96755 +g96757 +S'certain' +p96759 +tp96760 +a(g96757 +g96759 +S'elusive' +p96761 +tp96762 +a(g96759 +g96761 +S'and' +p96763 +tp96764 +a(g96761 +g96763 +S'undefinable' +p96765 +tp96766 +a(g96763 +g96765 +S'“melancholy,”' +p96767 +tp96768 +a(g96765 +g96767 +S'has' +p96769 +tp96770 +a(g96767 +g96769 +S'suggested' +p96771 +tp96772 +a(g96769 +g96771 +S'to' +p96773 +tp96774 +a(g96771 +g96773 +S'some' +p96775 +tp96776 +a(g96773 +g96775 +S'scholars' +p96777 +tp96778 +a(g96775 +g96777 +S'that' +p96779 +tp96780 +a(g96777 +g96779 +S'the' +p96781 +tp96782 +a(g96779 +g96781 +S'painter' +p96783 +tp96784 +a(g96781 +g96783 +S'was' +p96785 +tp96786 +a(g96783 +g96785 +S'french.' +p96787 +tp96788 +a(g96785 +g96787 +S'saraceni' +p96789 +tp96790 +a(g96787 +g96789 +S'was' +p96791 +tp96792 +a(g96789 +g96791 +S'known' +p96793 +tp96794 +a(g96791 +g96793 +S'as' +p96795 +tp96796 +a(g96793 +g96795 +S'a' +p96797 +tp96798 +a(g96795 +g96797 +S'francophile' +p96799 +tp96800 +a(g96797 +g96799 +S'and' +p96801 +tp96802 +a(g96799 +g96801 +S'is' +p96803 +tp96804 +a(g96801 +g96803 +S'documented' +p96805 +tp96806 +a(g96803 +g96805 +S'as' +p96807 +tp96808 +a(g96805 +g96807 +S'having' +p96809 +tp96810 +a(g96807 +g96809 +S'accommodated' +p96811 +tp96812 +a(g96809 +g96811 +S'at' +p96813 +tp96814 +a(g96811 +g96813 +S'least' +p96815 +tp96816 +a(g96813 +g96815 +S'one' +p96817 +tp96818 +a(g96815 +g96817 +S'french' +p96819 +tp96820 +a(g96817 +g96819 +S'artist' +p96821 +tp96822 +a(g96819 +g96821 +S'in' +p96823 +tp96824 +a(g96821 +g96823 +S'his' +p96825 +tp96826 +a(g96823 +g96825 +S'house—hence' +p96827 +tp96828 +a(g96825 +g96827 +S'the' +p96829 +tp96830 +a(g96827 +g96829 +S'name' +p96831 +tp96832 +a(g96829 +g96831 +S'pensionante.' +p96833 +tp96834 +a(g96831 +g96833 +S'some' +p96835 +tp96836 +a(g96833 +g96835 +S'dozen' +p96837 +tp96838 +a(g96835 +g96837 +S'paintings' +p96839 +tp96840 +a(g96837 +g96839 +S'are' +p96841 +tp96842 +a(g96839 +g96841 +S'thought' +p96843 +tp96844 +a(g96841 +g96843 +S'to' +p96845 +tp96846 +a(g96843 +g96845 +S'be' +p96847 +tp96848 +a(g96845 +g96847 +S'by' +p96849 +tp96850 +a(g96847 +g96849 +S'the' +p96851 +tp96852 +a(g96849 +g96851 +S'same' +p96853 +tp96854 +a(g96851 +g96853 +S'hand' +p96855 +tp96856 +a(g96853 +g96855 +S'but' +p96857 +tp96858 +a(g96855 +g96857 +S'the' +p96859 +tp96860 +a(g96857 +g96859 +S'artist’s' +p96861 +tp96862 +a(g96859 +g96861 +S'identity' +p96863 +tp96864 +a(g96861 +g96863 +S'remains' +p96865 +tp96866 +a(g96863 +g96865 +S'unknown.' +p96867 +tp96868 +a(g96865 +g96867 +S'because' +p96869 +tp96870 +a(g96867 +g96869 +S'tin' +p96871 +tp96872 +a(g96869 +g96871 +S'is' +p96873 +tp96874 +a(g96871 +g96873 +S'unable' +p96875 +tp96876 +a(g96873 +g96875 +S'to' +p96877 +tp96878 +a(g96875 +g96877 +S'withstand' +p96879 +tp96880 +a(g96877 +g96879 +S'hard' +p96881 +tp96882 +a(g96879 +g96881 +S'use,' +p96883 +tp96884 +a(g96881 +g96883 +S'most' +p96885 +tp96886 +a(g96883 +g96885 +S'plain' +p96887 +tp96888 +a(g96885 +g96887 +S'domestic' +p96889 +tp96890 +a(g96887 +g96889 +S'articles' +p96891 +tp96892 +a(g96889 +g96891 +S'have' +p96893 +tp96894 +a(g96891 +g96893 +S'not' +p96895 +tp96896 +a(g96893 +g96895 +S'survived.' +p96897 +tp96898 +a(g96895 +g96897 +S'in' +p96899 +tp96900 +a(g96897 +g96899 +S'contrast,' +p96901 +tp96902 +a(g96899 +g96901 +S'decorated' +p96903 +tp96904 +a(g96901 +g96903 +S'tinware,' +p96905 +tp96906 +a(g96903 +g96905 +S'commonly' +p96907 +tp96908 +a(g96905 +g96907 +S'presented' +p96909 +tp96910 +a(g96907 +g96909 +S'as' +p96911 +tp96912 +a(g96909 +g96911 +S'gifts' +p96913 +tp96914 +a(g96911 +g96913 +S'and' +p96915 +tp96916 +a(g96913 +g96915 +S'reserved' +p96917 +tp96918 +a(g96915 +g96917 +S'for' +p96919 +tp96920 +a(g96917 +g96919 +S'display,' +p96921 +tp96922 +a(g96919 +g96921 +S'remains' +p96923 +tp96924 +a(g96921 +g96923 +S'in' +p96925 +tp96926 +a(g96923 +g96925 +S'relatively' +p96927 +tp96928 +a(g96925 +g96927 +S'good' +p96929 +tp96930 +a(g96927 +g96929 +S'condition.' +p96931 +tp96932 +a(g96929 +g96931 +S'some' +p96933 +tp96934 +a(g96931 +g96933 +S'tinware' +p96935 +tp96936 +a(g96933 +g96935 +S'was' +p96937 +tp96938 +a(g96935 +g96937 +S'decorated' +p96939 +tp96940 +a(g96937 +g96939 +S'by' +p96941 +tp96942 +a(g96939 +g96941 +S'painting' +p96943 +tp96944 +a(g96941 +g96943 +S'or' +p96945 +tp96946 +a(g96943 +g96945 +S'by' +p96947 +tp96948 +a(g96945 +g96947 +S'punching' +p96949 +tp96950 +a(g96947 +g96949 +S'designs' +p96951 +tp96952 +a(g96949 +g96951 +S'into' +p96953 +tp96954 +a(g96951 +g96953 +S'the' +p96955 +tp96956 +a(g96953 +g96955 +S'surface.' +p96957 +tp96958 +a(g96955 +g96957 +S'made' +p96959 +tp96960 +a(g96957 +g96959 +S'about' +p96961 +tp96962 +a(g96959 +g96961 +S'1830,' +p96963 +tp96964 +a(g96961 +g96963 +S'this' +p96965 +tp96966 +a(g96963 +g96965 +S'pennsylvania' +p96967 +tp96968 +a(g96965 +g96967 +S'german' +p96969 +tp96970 +a(g96967 +g96969 +S'coffeepot' +p96971 +tp96972 +a(g96969 +g96971 +S'was' +p96973 +tp96974 +a(g96971 +g96973 +S'made' +p96975 +tp96976 +a(g96973 +g96975 +S'from' +p96977 +tp96978 +a(g96975 +g96977 +S'flat' +p96979 +tp96980 +a(g96977 +g96979 +S'sheets' +p96981 +tp96982 +a(g96979 +g96981 +S'of' +p96983 +tp96984 +a(g96981 +g96983 +S'tin' +p96985 +tp96986 +a(g96983 +g96985 +S'hammered' +p96987 +tp96988 +a(g96985 +g96987 +S'in' +p96989 +tp96990 +a(g96987 +g96989 +S'separate' +p96991 +tp96992 +a(g96989 +g96991 +S'sections' +p96993 +tp96994 +a(g96991 +g96993 +S'over' +p96995 +tp96996 +a(g96993 +g96995 +S'molds.' +p96997 +tp96998 +a(g96995 +g96997 +S'the' +p96999 +tp97000 +a(g96997 +g96999 +S'decoration' +p97001 +tp97002 +a(g96999 +g97001 +S'was' +p97003 +tp97004 +a(g97001 +g97003 +S'raised' +p97005 +tp97006 +a(g97003 +g97005 +S'by' +p97007 +tp97008 +a(g97005 +g97007 +S'dots' +p97009 +tp97010 +a(g97007 +g97009 +S'punched' +p97011 +tp97012 +a(g97009 +g97011 +S'in' +p97013 +tp97014 +a(g97011 +g97013 +S'from' +p97015 +tp97016 +a(g97013 +g97015 +S'the' +p97017 +tp97018 +a(g97015 +g97017 +S'back' +p97019 +tp97020 +a(g97017 +g97019 +S'creating' +p97021 +tp97022 +a(g97019 +g97021 +S'an' +p97023 +tp97024 +a(g97021 +g97023 +S'embossed' +p97025 +tp97026 +a(g97023 +g97025 +S'effect.' +p97027 +tp97028 +a(g97025 +g97027 +S'the' +p97029 +tp97030 +a(g97027 +g97029 +S'punched' +p97031 +tp97032 +a(g97029 +g97031 +S'sections' +p97033 +tp97034 +a(g97031 +g97033 +S'were' +p97035 +tp97036 +a(g97033 +g97035 +S'then' +p97037 +tp97038 +a(g97035 +g97037 +S'shaped' +p97039 +tp97040 +a(g97037 +g97039 +S'and' +p97041 +tp97042 +a(g97039 +g97041 +S'soldered' +p97043 +tp97044 +a(g97041 +g97043 +S'together.' +p97045 +tp97046 +a(g97043 +g97045 +S'in' +p97047 +tp97048 +a(g97045 +g97047 +S'the' +p97049 +tp97050 +a(g97047 +g97049 +S'pennsylvania' +p97051 +tp97052 +a(g97049 +g97051 +S'german' +p97053 +tp97054 +a(g97051 +g97053 +S'manner,' +p97055 +tp97056 +a(g97053 +g97055 +S'a' +p97057 +tp97058 +a(g97055 +g97057 +S'stylized' +p97059 +tp97060 +a(g97057 +g97059 +S'floral' +p97061 +tp97062 +a(g97059 +g97061 +S'and' +p97063 +tp97064 +a(g97061 +g97063 +S'geometric' +p97065 +tp97066 +a(g97063 +g97065 +S'pattern' +p97067 +tp97068 +a(g97065 +g97067 +S'decorates' +p97069 +tp97070 +a(g97067 +g97069 +S'the' +p97071 +tp97072 +a(g97069 +g97071 +S'pot.' +p97073 +tp97074 +a(g97071 +g97073 +S'the' +p97075 +tp97076 +a(g97073 +g97075 +S'pot' +p97077 +tp97078 +a(g97075 +g97077 +S'is' +p97079 +tp97080 +a(g97077 +g97079 +S'finished' +p97081 +tp97082 +a(g97079 +g97081 +S'with' +p97083 +tp97084 +a(g97081 +g97083 +S'a' +p97085 +tp97086 +a(g97083 +g97085 +S'reeded' +p97087 +tp97088 +a(g97085 +g97087 +S'spout' +p97089 +tp97090 +a(g97087 +g97089 +S'and' +p97091 +tp97092 +a(g97089 +g97091 +S'a' +p97093 +tp97094 +a(g97091 +g97093 +S'black' +p97095 +tp97096 +a(g97093 +g97095 +S'wooden' +p97097 +tp97098 +a(g97095 +g97097 +S'knob.' +p97099 +tp97100 +a(g97097 +g97099 +S'the' +p97101 +tp97102 +a(g97099 +g97101 +S'scroll' +p97103 +tp97104 +a(g97101 +g97103 +S'handle,' +p97105 +tp97106 +a(g97103 +g97105 +S'also' +p97107 +tp97108 +a(g97105 +g97107 +S'of' +p97109 +tp97110 +a(g97107 +g97109 +S'black' +p97111 +tp97112 +a(g97109 +g97111 +S'wood,' +p97113 +tp97114 +a(g97111 +g97113 +S'suggests' +p97115 +tp97116 +a(g97113 +g97115 +S'forms' +p97117 +tp97118 +a(g97115 +g97117 +S'associated' +p97119 +tp97120 +a(g97117 +g97119 +S'with' +p97121 +tp97122 +a(g97119 +g97121 +S'the' +p97123 +tp97124 +a(g97121 +g97123 +S'handles' +p97125 +tp97126 +a(g97123 +g97125 +S'of' +p97127 +tp97128 +a(g97125 +g97127 +S'pewter' +p97129 +tp97130 +a(g97127 +g97129 +S'and' +p97131 +tp97132 +a(g97129 +g97131 +S'silver' +p97133 +tp97134 +a(g97131 +g97133 +S'pots.' +p97135 +tp97136 +a(g97133 +g97135 +S'however,' +p97137 +tp97138 +a(g97135 +g97137 +S'in' +p97139 +tp97140 +a(g97137 +g97139 +S'this' +p97141 +tp97142 +a(g97139 +g97141 +S'case,' +p97143 +tp97144 +a(g97141 +g97143 +S'the' +p97145 +tp97146 +a(g97143 +g97145 +S'handle' +p97147 +tp97148 +a(g97145 +g97147 +S'is' +p97149 +tp97150 +a(g97147 +g97149 +S'crude' +p97151 +tp97152 +a(g97149 +g97151 +S'and' +p97153 +tp97154 +a(g97151 +g97153 +S'out' +p97155 +tp97156 +a(g97153 +g97155 +S'of' +p97157 +tp97158 +a(g97155 +g97157 +S'proportion' +p97159 +tp97160 +a(g97157 +g97159 +S'to' +p97161 +tp97162 +a(g97159 +g97161 +S'the' +p97163 +tp97164 +a(g97161 +g97163 +S'body.' +p97165 +tp97166 +a(g97163 +g97165 +S'though' +p97167 +tp97168 +a(g97165 +g97167 +S'the' +p97169 +tp97170 +a(g97167 +g97169 +S'tinsmith' +p97171 +tp97172 +a(g97169 +g97171 +S'copied' +p97173 +tp97174 +a(g97171 +g97173 +S'styles' +p97175 +tp97176 +a(g97173 +g97175 +S'prevalent' +p97177 +tp97178 +a(g97175 +g97177 +S'in' +p97179 +tp97180 +a(g97177 +g97179 +S'the' +p97181 +tp97182 +a(g97179 +g97181 +S'finer' +p97183 +tp97184 +a(g97181 +g97183 +S'metal' +p97185 +tp97186 +a(g97183 +g97185 +S'crafts,' +p97187 +tp97188 +a(g97185 +g97187 +S'his' +p97189 +tp97190 +a(g97187 +g97189 +S'work' +p97191 +tp97192 +a(g97189 +g97191 +S'was' +p97193 +tp97194 +a(g97191 +g97193 +S'obviously' +p97195 +tp97196 +a(g97193 +g97195 +S'more' +p97197 +tp97198 +a(g97195 +g97197 +S'akin' +p97199 +tp97200 +a(g97197 +g97199 +S'to' +p97201 +tp97202 +a(g97199 +g97201 +S'that' +p97203 +tp97204 +a(g97201 +g97203 +S'of' +p97205 +tp97206 +a(g97203 +g97205 +S'the' +p97207 +tp97208 +a(g97205 +g97207 +S'folk' +p97209 +tp97210 +a(g97207 +g97209 +S'artist' +p97211 +tp97212 +a(g97209 +g97211 +S'in' +p97213 +tp97214 +a(g97211 +g97213 +S'simplicity' +p97215 +tp97216 +a(g97213 +g97215 +S'of' +p97217 +tp97218 +a(g97215 +g97217 +S'conception' +p97219 +tp97220 +a(g97217 +g97219 +S'and' +p97221 +tp97222 +a(g97219 +g97221 +S'execution.' +p97223 +tp97224 +a(g97221 +g97223 +S'the' +p97225 +tp97226 +a(g97223 +g97225 +S'art' +p97227 +tp97228 +a(g97225 +g97227 +S'of' +p97229 +tp97230 +a(g97227 +g97229 +S'carving' +p97231 +tp97232 +a(g97229 +g97231 +S'wooden' +p97233 +tp97234 +a(g97231 +g97233 +S'birds,' +p97235 +tp97236 +a(g97233 +g97235 +S'whether' +p97237 +tp97238 +a(g97235 +g97237 +S'for' +p97239 +tp97240 +a(g97237 +g97239 +S'use' +p97241 +tp97242 +a(g97239 +g97241 +S'as' +p97243 +tp97244 +a(g97241 +g97243 +S'decoys' +p97245 +tp97246 +a(g97243 +g97245 +S'or' +p97247 +tp97248 +a(g97245 +g97247 +S'for' +p97249 +tp97250 +a(g97247 +g97249 +S'purely' +p97251 +tp97252 +a(g97249 +g97251 +S'ornamental' +p97253 +tp97254 +a(g97251 +g97253 +S'purposes,' +p97255 +tp97256 +a(g97253 +g97255 +S'has' +p97257 +tp97258 +a(g97255 +g97257 +S'long' +p97259 +tp97260 +a(g97257 +g97259 +S'been' +p97261 +tp97262 +a(g97259 +g97261 +S'popular' +p97263 +tp97264 +a(g97261 +g97263 +S'in' +p97265 +tp97266 +a(g97263 +g97265 +S'america.' +p97267 +tp97268 +a(g97265 +g97267 +S'this' +p97269 +tp97270 +a(g97267 +g97269 +S'example' +p97271 +tp97272 +a(g97269 +g97271 +S'is' +p97273 +tp97274 +a(g97271 +g97273 +S'from' +p97275 +tp97276 +a(g97273 +g97275 +S'the' +p97277 +tp97278 +a(g97275 +g97277 +S'mason' +p97279 +tp97280 +a(g97277 +g97279 +S'factory' +p97281 +tp97282 +a(g97279 +g97281 +S'in' +p97283 +tp97284 +a(g97281 +g97283 +S'detroit,' +p97285 +tp97286 +a(g97283 +g97285 +S'which' +p97287 +tp97288 +a(g97285 +g97287 +S'was' +p97289 +tp97290 +a(g97287 +g97289 +S'active' +p97291 +tp97292 +a(g97289 +g97291 +S'from' +p97293 +tp97294 +a(g97291 +g97293 +S'1896' +p97295 +tp97296 +a(g97293 +g97295 +S'to' +p97297 +tp97298 +a(g97295 +g97297 +S'1924.' +p97299 +tp97300 +a(g97297 +g97299 +S'large' +p97301 +tp97302 +a(g97299 +g97301 +S'workshops' +p97303 +tp97304 +a(g97301 +g97303 +S'produced' +p97305 +tp97306 +a(g97303 +g97305 +S'decoys' +p97307 +tp97308 +a(g97305 +g97307 +S'in' +p97309 +tp97310 +a(g97307 +g97309 +S'response' +p97311 +tp97312 +a(g97309 +g97311 +S'to' +p97313 +tp97314 +a(g97311 +g97313 +S'the' +p97315 +tp97316 +a(g97313 +g97315 +S'demands' +p97317 +tp97318 +a(g97315 +g97317 +S'of' +p97319 +tp97320 +a(g97317 +g97319 +S'commercial' +p97321 +tp97322 +a(g97319 +g97321 +S'hunters' +p97323 +tp97324 +a(g97321 +g97323 +S'before' +p97325 +tp97326 +a(g97323 +g97325 +S'the' +p97327 +tp97328 +a(g97325 +g97327 +S'industry' +p97329 +tp97330 +a(g97327 +g97329 +S'came' +p97331 +tp97332 +a(g97329 +g97331 +S'to' +p97333 +tp97334 +a(g97331 +g97333 +S'a' +p97335 +tp97336 +a(g97333 +g97335 +S'sudden' +p97337 +tp97338 +a(g97335 +g97337 +S'end' +p97339 +tp97340 +a(g97337 +g97339 +S'with' +p97341 +tp97342 +a(g97339 +g97341 +S'the' +p97343 +tp97344 +a(g97341 +g97343 +S'passage' +p97345 +tp97346 +a(g97343 +g97345 +S'of' +p97347 +tp97348 +a(g97345 +g97347 +S'the' +p97349 +tp97350 +a(g97347 +g97349 +S'migratory' +p97351 +tp97352 +a(g97349 +g97351 +S'bird' +p97353 +tp97354 +a(g97351 +g97353 +S'treaty' +p97355 +tp97356 +a(g97353 +g97355 +S'act' +p97357 +tp97358 +a(g97355 +g97357 +S'in' +p97359 +tp97360 +a(g97357 +g97359 +S'1918.' +p97361 +tp97362 +a(g97359 +g97361 +S'the' +p97363 +tp97364 +a(g97361 +g97363 +S'mason' +p97365 +tp97366 +a(g97363 +g97365 +S'factory' +p97367 +tp97368 +a(g97365 +g97367 +S'was' +p97369 +tp97370 +a(g97367 +g97369 +S'one' +p97371 +tp97372 +a(g97369 +g97371 +S'of' +p97373 +tp97374 +a(g97371 +g97373 +S'the' +p97375 +tp97376 +a(g97373 +g97375 +S'most' +p97377 +tp97378 +a(g97375 +g97377 +S'important' +p97379 +tp97380 +a(g97377 +g97379 +S'suppliers' +p97381 +tp97382 +a(g97379 +g97381 +S'of' +p97383 +tp97384 +a(g97381 +g97383 +S'factory' +p97385 +tp97386 +a(g97383 +g97385 +S'decoys,' +p97387 +tp97388 +a(g97385 +g97387 +S'offering' +p97389 +tp97390 +a(g97387 +g97389 +S'five' +p97391 +tp97392 +a(g97389 +g97391 +S'different' +p97393 +tp97394 +a(g97391 +g97393 +S'grades' +p97395 +tp97396 +a(g97393 +g97395 +S'that' +p97397 +tp97398 +a(g97395 +g97397 +S'varied' +p97399 +tp97400 +a(g97397 +g97399 +S'in' +p97401 +tp97402 +a(g97399 +g97401 +S'detail' +p97403 +tp97404 +a(g97401 +g97403 +S'and' +p97405 +tp97406 +a(g97403 +g97405 +S'degree' +p97407 +tp97408 +a(g97405 +g97407 +S'of' +p97409 +tp97410 +a(g97407 +g97409 +S'hand-finishing.' +p97411 +tp97412 +a(g97409 +g97411 +S'this' +p97413 +tp97414 +a(g97411 +g97413 +S'decoy' +p97415 +tp97416 +a(g97413 +g97415 +S'was' +p97417 +tp97418 +a(g97415 +g97417 +S'rated' +p97419 +tp97420 +a(g97417 +g97419 +S'a' +p97421 +tp97422 +a(g97419 +g97421 +S'challenge' +p97423 +tp97424 +a(g97421 +g97423 +S'grade' +p97425 +tp97426 +a(g97423 +g97425 +S'(next' +p97427 +tp97428 +a(g97425 +g97427 +S'to' +p97429 +tp97430 +a(g97427 +g97429 +S'best).' +p97431 +tp97432 +a(g97429 +g97431 +S'it' +p97433 +tp97434 +a(g97431 +g97433 +S'was' +p97435 +tp97436 +a(g97433 +g97435 +S'carved' +p97437 +tp97438 +a(g97435 +g97437 +S'from' +p97439 +tp97440 +a(g97437 +g97439 +S'a' +p97441 +tp97442 +a(g97439 +g97441 +S'single' +p97443 +tp97444 +a(g97441 +g97443 +S'block' +p97445 +tp97446 +a(g97443 +g97445 +S'of' +p97447 +tp97448 +a(g97445 +g97447 +S'wood' +p97449 +tp97450 +a(g97447 +g97449 +S'except' +p97451 +tp97452 +a(g97449 +g97451 +S'for' +p97453 +tp97454 +a(g97451 +g97453 +S'the' +p97455 +tp97456 +a(g97453 +g97455 +S'head,' +p97457 +tp97458 +a(g97455 +g97457 +S'which' +p97459 +tp97460 +a(g97457 +g97459 +S'was' +p97461 +tp97462 +a(g97459 +g97461 +S'attached' +p97463 +tp97464 +a(g97461 +g97463 +S'separately' +p97465 +tp97466 +a(g97463 +g97465 +S'and' +p97467 +tp97468 +a(g97465 +g97467 +S'featured' +p97469 +tp97470 +a(g97467 +g97469 +S'glass' +p97471 +tp97472 +a(g97469 +g97471 +S'eyes.' +p97473 +tp97474 +a(g97471 +g97473 +S'the' +p97475 +tp97476 +a(g97473 +g97475 +S'originally' +p97477 +tp97478 +a(g97475 +g97477 +S'fine' +p97479 +tp97480 +a(g97477 +g97479 +S'paint' +p97481 +tp97482 +a(g97479 +g97481 +S'surface' +p97483 +tp97484 +a(g97481 +g97483 +S'has' +p97485 +tp97486 +a(g97483 +g97485 +S'worn' +p97487 +tp97488 +a(g97485 +g97487 +S'considerably,' +p97489 +tp97490 +a(g97487 +g97489 +S'but' +p97491 +tp97492 +a(g97489 +g97491 +S'the' +p97493 +tp97494 +a(g97491 +g97493 +S'bird' +p97495 +tp97496 +a(g97493 +g97495 +S'is' +p97497 +tp97498 +a(g97495 +g97497 +S'still' +p97499 +tp97500 +a(g97497 +g97499 +S'recognizable' +p97501 +tp97502 +a(g97499 +g97501 +S'as' +p97503 +tp97504 +a(g97501 +g97503 +S'a' +p97505 +tp97506 +a(g97503 +g97505 +S'bufflehead' +p97507 +tp97508 +a(g97505 +g97507 +S'drake,' +p97509 +tp97510 +a(g97507 +g97509 +S'even' +p97511 +tp97512 +a(g97509 +g97511 +S'though' +p97513 +tp97514 +a(g97511 +g97513 +S'it' +p97515 +tp97516 +a(g97513 +g97515 +S'is' +p97517 +tp97518 +a(g97515 +g97517 +S'slightly' +p97519 +tp97520 +a(g97517 +g97519 +S'longer' +p97521 +tp97522 +a(g97519 +g97521 +S'and' +p97523 +tp97524 +a(g97521 +g97523 +S'less' +p97525 +tp97526 +a(g97523 +g97525 +S'stocky' +p97527 +tp97528 +a(g97525 +g97527 +S'than' +p97529 +tp97530 +a(g97527 +g97529 +S'its' +p97531 +tp97532 +a(g97529 +g97531 +S'living' +p97533 +tp97534 +a(g97531 +g97533 +S'match.' +p97535 +tp97536 +a(g97533 +g97535 +S'decoy' +p97537 +tp97538 +a(g97535 +g97537 +S'forms' +p97539 +tp97540 +a(g97537 +g97539 +S'were' +p97541 +tp97542 +a(g97539 +g97541 +S'typically' +p97543 +tp97544 +a(g97541 +g97543 +S'kept' +p97545 +tp97546 +a(g97543 +g97545 +S'low' +p97547 +tp97548 +a(g97545 +g97547 +S'and' +p97549 +tp97550 +a(g97547 +g97549 +S'broad' +p97551 +tp97552 +a(g97549 +g97551 +S'to' +p97553 +tp97554 +a(g97551 +g97553 +S'prevent' +p97555 +tp97556 +a(g97553 +g97555 +S'them' +p97557 +tp97558 +a(g97555 +g97557 +S'from' +p97559 +tp97560 +a(g97557 +g97559 +S'overturning' +p97561 +tp97562 +a(g97559 +g97561 +S'in' +p97563 +tp97564 +a(g97561 +g97563 +S'rough' +p97565 +tp97566 +a(g97563 +g97565 +S'water.' +p97567 +tp97568 +a(g97565 +g97567 +S'in' +p97569 +tp97570 +a(g97567 +g97569 +S'colonial' +p97571 +tp97572 +a(g97569 +g97571 +S'days,' +p97573 +tp97574 +a(g97571 +g97573 +S'gateleg' +p97575 +tp97576 +a(g97573 +g97575 +S'dropleaf' +p97577 +tp97578 +a(g97575 +g97577 +S'tables' +p97579 +tp97580 +a(g97577 +g97579 +S'were' +p97581 +tp97582 +a(g97579 +g97581 +S'popular' +p97583 +tp97584 +a(g97581 +g97583 +S'because' +p97585 +tp97586 +a(g97583 +g97585 +S'they' +p97587 +tp97588 +a(g97585 +g97587 +S'saved' +p97589 +tp97590 +a(g97587 +g97589 +S'space.' +p97591 +tp97592 +a(g97589 +g97591 +S'american' +p97593 +tp97594 +a(g97591 +g97593 +S'gateleg' +p97595 +tp97596 +a(g97593 +g97595 +S'tables' +p97597 +tp97598 +a(g97595 +g97597 +S'followed' +p97599 +tp97600 +a(g97597 +g97599 +S'early' +p97601 +tp97602 +a(g97599 +g97601 +S'seventeenth-century' +p97603 +tp97604 +a(g97601 +g97603 +S'english' +p97605 +tp97606 +a(g97603 +g97605 +S'prototypes.' +p97607 +tp97608 +a(g97605 +g97607 +S'they' +p97609 +tp97610 +a(g97607 +g97609 +S'always' +p97611 +tp97612 +a(g97609 +g97611 +S'had' +p97613 +tp97614 +a(g97611 +g97613 +S'two' +p97615 +tp97616 +a(g97613 +g97615 +S'swinging' +p97617 +tp97618 +a(g97615 +g97617 +S'legs' +p97619 +tp97620 +a(g97617 +g97619 +S'to' +p97621 +tp97622 +a(g97619 +g97621 +S'support' +p97623 +tp97624 +a(g97621 +g97623 +S'the' +p97625 +tp97626 +a(g97623 +g97625 +S'hinged' +p97627 +tp97628 +a(g97625 +g97627 +S'dropleaf' +p97629 +tp97630 +a(g97627 +g97629 +S'ends,' +p97631 +tp97632 +a(g97629 +g97631 +S'yet' +p97633 +tp97634 +a(g97631 +g97633 +S'the' +p97635 +tp97636 +a(g97633 +g97635 +S'shape' +p97637 +tp97638 +a(g97635 +g97637 +S'of' +p97639 +tp97640 +a(g97637 +g97639 +S'the' +p97641 +tp97642 +a(g97639 +g97641 +S'tabletop' +p97643 +tp97644 +a(g97641 +g97643 +S'varied.' +p97645 +tp97646 +a(g97643 +g97645 +S'this' +p97647 +tp97648 +a(g97645 +g97647 +S'table' +p97649 +tp97650 +a(g97647 +g97649 +S'has' +p97651 +tp97652 +a(g97649 +g97651 +S'an' +p97653 +tp97654 +a(g97651 +g97653 +S'oval' +p97655 +tp97656 +a(g97653 +g97655 +S'top,' +p97657 +tp97658 +a(g97655 +g97657 +S'but' +p97659 +tp97660 +a(g97657 +g97659 +S'square,' +p97661 +tp97662 +a(g97659 +g97661 +S'round,' +p97663 +tp97664 +a(g97661 +g97663 +S'and' +p97665 +tp97666 +a(g97663 +g97665 +S'rectangular' +p97667 +tp97668 +a(g97665 +g97667 +S'tops' +p97669 +tp97670 +a(g97667 +g97669 +S'were' +p97671 +tp97672 +a(g97669 +g97671 +S'also' +p97673 +tp97674 +a(g97671 +g97673 +S'common.' +p97675 +tp97676 +a(g97673 +g97675 +S'the' +p97677 +tp97678 +a(g97675 +g97677 +S'wood' +p97679 +tp97680 +a(g97677 +g97679 +S'used' +p97681 +tp97682 +a(g97679 +g97681 +S'for' +p97683 +tp97684 +a(g97681 +g97683 +S'this' +p97685 +tp97686 +a(g97683 +g97685 +S'example' +p97687 +tp97688 +a(g97685 +g97687 +S'is' +p97689 +tp97690 +a(g97687 +g97689 +S'walnut,' +p97691 +tp97692 +a(g97689 +g97691 +S'a' +p97693 +tp97694 +a(g97691 +g97693 +S'finer' +p97695 +tp97696 +a(g97693 +g97695 +S'wood' +p97697 +tp97698 +a(g97695 +g97697 +S'than' +p97699 +tp97700 +a(g97697 +g97699 +S'the' +p97701 +tp97702 +a(g97699 +g97701 +S'oak' +p97703 +tp97704 +a(g97701 +g97703 +S'that' +p97705 +tp97706 +a(g97703 +g97705 +S'was' +p97707 +tp97708 +a(g97705 +g97707 +S'predominant' +p97709 +tp97710 +a(g97707 +g97709 +S'earlier.' +p97711 +tp97712 +a(g97709 +g97711 +S'in' +p97713 +tp97714 +a(g97711 +g97713 +S'the' +p97715 +tp97716 +a(g97713 +g97715 +S'use' +p97717 +tp97718 +a(g97715 +g97717 +S'of' +p97719 +tp97720 +a(g97717 +g97719 +S'walnut,' +p97721 +tp97722 +a(g97719 +g97721 +S'this' +p97723 +tp97724 +a(g97721 +g97723 +S'table' +p97725 +tp97726 +a(g97723 +g97725 +S'can' +p97727 +tp97728 +a(g97725 +g97727 +S'be' +p97729 +tp97730 +a(g97727 +g97729 +S'considered' +p97731 +tp97732 +a(g97729 +g97731 +S'a' +p97733 +tp97734 +a(g97731 +g97733 +S'departure' +p97735 +tp97736 +a(g97733 +g97735 +S'from' +p97737 +tp97738 +a(g97735 +g97737 +S'the' +p97739 +tp97740 +a(g97737 +g97739 +S'traditions' +p97741 +tp97742 +a(g97739 +g97741 +S'of' +p97743 +tp97744 +a(g97741 +g97743 +S'the' +p97745 +tp97746 +a(g97743 +g97745 +S'jacobian' +p97747 +tp97748 +a(g97745 +g97747 +S'style—it' +p97749 +tp97750 +a(g97747 +g97749 +S'heralds' +p97751 +tp97752 +a(g97749 +g97751 +S'the' +p97753 +tp97754 +a(g97751 +g97753 +S'approach' +p97755 +tp97756 +a(g97753 +g97755 +S'of' +p97757 +tp97758 +a(g97755 +g97757 +S'the' +p97759 +tp97760 +a(g97757 +g97759 +S'william' +p97761 +tp97762 +a(g97759 +g97761 +S'and' +p97763 +tp97764 +a(g97761 +g97763 +S'mary' +p97765 +tp97766 +a(g97763 +g97765 +S'style' +p97767 +tp97768 +a(g97765 +g97767 +S'in' +p97769 +tp97770 +a(g97767 +g97769 +S'eighteenth-century' +p97771 +tp97772 +a(g97769 +g97771 +S'america.' +p97773 +tp97774 +a(g97771 +g97773 +S'the' +p97775 +tp97776 +a(g97773 +g97775 +S'index' +p97777 +tp97778 +a(g97775 +g97777 +S'data' +p97779 +tp97780 +a(g97777 +g97779 +S'sheet' +p97781 +tp97782 +a(g97779 +g97781 +S'indicates' +p97783 +tp97784 +a(g97781 +g97783 +S'that' +p97785 +tp97786 +a(g97783 +g97785 +S'the' +p97787 +tp97788 +a(g97785 +g97787 +S'piece' +p97789 +tp97790 +a(g97787 +g97789 +S'belonged' +p97791 +tp97792 +a(g97789 +g97791 +S'to' +p97793 +tp97794 +a(g97791 +g97793 +S'a' +p97795 +tp97796 +a(g97793 +g97795 +S'family' +p97797 +tp97798 +a(g97795 +g97797 +S'in' +p97799 +tp97800 +a(g97797 +g97799 +S'lewes,' +p97801 +tp97802 +a(g97799 +g97801 +S'delaware,' +p97803 +tp97804 +a(g97801 +g97803 +S'and' +p97805 +tp97806 +a(g97803 +g97805 +S'that' +p97807 +tp97808 +a(g97805 +g97807 +S'it' +p97809 +tp97810 +a(g97807 +g97809 +S'dates' +p97811 +tp97812 +a(g97809 +g97811 +S'from' +p97813 +tp97814 +a(g97811 +g97813 +S'about' +p97815 +tp97816 +a(g97813 +g97815 +S'1680,' +p97817 +tp97818 +a(g97815 +g97817 +S'but' +p97819 +tp97820 +a(g97817 +g97819 +S'it' +p97821 +tp97822 +a(g97819 +g97821 +S'may' +p97823 +tp97824 +a(g97821 +g97823 +S'have' +p97825 +tp97826 +a(g97823 +g97825 +S'been' +p97827 +tp97828 +a(g97825 +g97827 +S'made' +p97829 +tp97830 +a(g97827 +g97829 +S'slightly' +p97831 +tp97832 +a(g97829 +g97831 +S'later.' +p97833 +tp97834 +a(g97831 +g97833 +S'a' +p97835 +tp97836 +a(g97833 +g97835 +S'patriotic' +p97837 +tp97838 +a(g97835 +g97837 +S'whirlwind' +p97839 +tp97840 +a(g97837 +g97839 +S'overtook' +p97841 +tp97842 +a(g97839 +g97841 +S'mid–town' +p97843 +tp97844 +a(g97841 +g97843 +S'manhattan' +p97845 +tp97846 +a(g97843 +g97845 +S'as' +p97847 +tp97848 +a(g97845 +g97847 +S'america' +p97849 +tp97850 +a(g97847 +g97849 +S'entered' +p97851 +tp97852 +a(g97849 +g97851 +S'the' +p97853 +tp97854 +a(g97851 +g97853 +S'first' +p97855 +tp97856 +a(g97853 +g97855 +S'world' +p97857 +tp97858 +a(g97855 +g97857 +S'war' +p97859 +tp97860 +a(g97857 +g97859 +S'in' +p97861 +tp97862 +a(g97859 +g97861 +S'the' +p97863 +tp97864 +a(g97861 +g97863 +S'spring' +p97865 +tp97866 +a(g97863 +g97865 +S'of' +p97867 +tp97868 +a(g97865 +g97867 +S'1917.' +p97869 +tp97870 +a(g97867 +g97869 +S'on' +p97871 +tp97872 +a(g97869 +g97871 +S'fifth' +p97873 +tp97874 +a(g97871 +g97873 +S'avenue,' +p97875 +tp97876 +a(g97873 +g97875 +S'the' +p97877 +tp97878 +a(g97875 +g97877 +S'british' +p97879 +tp97880 +a(g97877 +g97879 +S'union' +p97881 +tp97882 +a(g97879 +g97881 +S'jack,' +p97883 +tp97884 +a(g97881 +g97883 +S'the' +p97885 +tp97886 +a(g97883 +g97885 +S'french' +p97887 +tp97888 +a(g97885 +g97887 +S'tricolor,' +p97889 +tp97890 +a(g97887 +g97889 +S'and' +p97891 +tp97892 +a(g97889 +g97891 +S'stars' +p97893 +tp97894 +a(g97891 +g97893 +S'and' +p97895 +tp97896 +a(g97893 +g97895 +S'stripes' +p97897 +tp97898 +a(g97895 +g97897 +S'were' +p97899 +tp97900 +a(g97897 +g97899 +S'displayed' +p97901 +tp97902 +a(g97899 +g97901 +S'prominently' +p97903 +tp97904 +a(g97901 +g97903 +S'during' +p97905 +tp97906 +a(g97903 +g97905 +S'parades' +p97907 +tp97908 +a(g97905 +g97907 +S'honoring' +p97909 +tp97910 +a(g97907 +g97909 +S"america's" +p97911 +tp97912 +a(g97909 +g97911 +S'allies.' +p97913 +tp97914 +a(g97911 +g97913 +S'the' +p97915 +tp97916 +a(g97913 +g97915 +S'colorful' +p97917 +tp97918 +a(g97915 +g97917 +S'pageantry' +p97919 +tp97920 +a(g97917 +g97919 +S'inspired' +p97921 +tp97922 +a(g97919 +g97921 +S'childe' +p97923 +tp97924 +a(g97921 +g97923 +S'hassam,' +p97925 +tp97926 +a(g97923 +g97925 +S'who' +p97927 +tp97928 +a(g97925 +g97927 +S'dedicated' +p97929 +tp97930 +a(g97927 +g97929 +S'this' +p97931 +tp97932 +a(g97929 +g97931 +S'picture' +p97933 +tp97934 +a(g97931 +g97933 +S'"to' +p97935 +tp97936 +a(g97933 +g97935 +S'the' +p97937 +tp97938 +a(g97935 +g97937 +S'coming' +p97939 +tp97940 +a(g97937 +g97939 +S'together' +p97941 +tp97942 +a(g97939 +g97941 +S'of' +p97943 +tp97944 +a(g97941 +g97943 +S'[our]' +p97945 +tp97946 +a(g97943 +g97945 +S'three' +p97947 +tp97948 +a(g97945 +g97947 +S'peoples' +p97949 +tp97950 +a(g97947 +g97949 +S'in' +p97951 +tp97952 +a(g97949 +g97951 +S'the' +p97953 +tp97954 +a(g97951 +g97953 +S'fight' +p97955 +tp97956 +a(g97953 +g97955 +S'for' +p97957 +tp97958 +a(g97955 +g97957 +S'democracy."' +p97959 +tp97960 +a(g97957 +g97959 +S"hassam's" +p97961 +tp97962 +a(g97959 +g97961 +S'flag' +p97963 +tp97964 +a(g97961 +g97963 +S'paintings' +p97965 +tp97966 +a(g97963 +g97965 +S'were' +p97967 +tp97968 +a(g97965 +g97967 +S'first' +p97969 +tp97970 +a(g97967 +g97969 +S'shown' +p97971 +tp97972 +a(g97969 +g97971 +S'as' +p97973 +tp97974 +a(g97971 +g97973 +S'a' +p97975 +tp97976 +a(g97973 +g97975 +S'group' +p97977 +tp97978 +a(g97975 +g97977 +S'in' +p97979 +tp97980 +a(g97977 +g97979 +S'new' +p97981 +tp97982 +a(g97979 +g97981 +S"york's" +p97983 +tp97984 +a(g97981 +g97983 +S'durand–ruel' +p97985 +tp97986 +a(g97983 +g97985 +S'gallery' +p97987 +tp97988 +a(g97985 +g97987 +S'in' +p97989 +tp97990 +a(g97987 +g97989 +S'november' +p97991 +tp97992 +a(g97989 +g97991 +S'1918,' +p97993 +tp97994 +a(g97991 +g97993 +S'just' +p97995 +tp97996 +a(g97993 +g97995 +S'four' +p97997 +tp97998 +a(g97995 +g97997 +S'days' +p97999 +tp98000 +a(g97997 +g97999 +S'after' +p98001 +tp98002 +a(g97999 +g98001 +S'the' +p98003 +tp98004 +a(g98001 +g98003 +S'armistice' +p98005 +tp98006 +a(g98003 +g98005 +S'was' +p98007 +tp98008 +a(g98005 +g98007 +S'declared.' +p98009 +tp98010 +a(g98007 +g98009 +S'thus,' +p98011 +tp98012 +a(g98009 +g98011 +S'the' +p98013 +tp98014 +a(g98011 +g98013 +S'works,' +p98015 +tp98016 +a(g98013 +g98015 +S'originally' +p98017 +tp98018 +a(g98015 +g98017 +S'created' +p98019 +tp98020 +a(g98017 +g98019 +S'to' +p98021 +tp98022 +a(g98019 +g98021 +S'herald' +p98023 +tp98024 +a(g98021 +g98023 +S"america's" +p98025 +tp98026 +a(g98023 +g98025 +S'entry' +p98027 +tp98028 +a(g98025 +g98027 +S'into' +p98029 +tp98030 +a(g98027 +g98029 +S'the' +p98031 +tp98032 +a(g98029 +g98031 +S'war,' +p98033 +tp98034 +a(g98031 +g98033 +S'also' +p98035 +tp98036 +a(g98033 +g98035 +S'served' +p98037 +tp98038 +a(g98035 +g98037 +S'to' +p98039 +tp98040 +a(g98037 +g98039 +S'commemorate' +p98041 +tp98042 +a(g98039 +g98041 +S'its' +p98043 +tp98044 +a(g98041 +g98043 +S'victorious' +p98045 +tp98046 +a(g98043 +g98045 +S'resolution.' +p98047 +tp98048 +a(g98045 +g98047 +S'hassam' +p98049 +tp98050 +a(g98047 +g98049 +S'had' +p98051 +tp98052 +a(g98049 +g98051 +S'studied' +p98053 +tp98054 +a(g98051 +g98053 +S'in' +p98055 +tp98056 +a(g98053 +g98055 +S'paris' +p98057 +tp98058 +a(g98055 +g98057 +S'from' +p98059 +tp98060 +a(g98057 +g98059 +S'1886–1889' +p98061 +tp98062 +a(g98059 +g98061 +S'and' +p98063 +tp98064 +a(g98061 +g98063 +S'was' +p98065 +tp98066 +a(g98063 +g98065 +S'strongly' +p98067 +tp98068 +a(g98065 +g98067 +S'influenced' +p98069 +tp98070 +a(g98067 +g98069 +S'by' +p98071 +tp98072 +a(g98069 +g98071 +S'the' +p98073 +tp98074 +a(g98071 +g98073 +S'impressionists.' +p98075 +tp98076 +a(g98073 +g98075 +S'in' +p98077 +tp98078 +a(g98075 +g98077 +S'many' +p98079 +tp98080 +a(g98077 +g98079 +S'respects,' +p98081 +tp98082 +a(g98079 +g98081 +S'homer' +p98083 +tp98084 +a(g98081 +g98083 +S'developed' +p98085 +tp98086 +a(g98083 +g98085 +S'a' +p98087 +tp98088 +a(g98085 +g98087 +S'penchant' +p98089 +tp98090 +a(g98087 +g98089 +S'for' +p98091 +tp98092 +a(g98089 +g98091 +S'forceful' +p98093 +tp98094 +a(g98091 +g98093 +S'realism' +p98095 +tp98096 +a(g98093 +g98095 +S'early' +p98097 +tp98098 +a(g98095 +g98097 +S'in' +p98099 +tp98100 +a(g98097 +g98099 +S'his' +p98101 +tp98102 +a(g98099 +g98101 +S'career.' +p98103 +tp98104 +a(g98101 +g98103 +S'following' +p98105 +tp98106 +a(g98103 +g98105 +S'an' +p98107 +tp98108 +a(g98105 +g98107 +S'apprenticeship' +p98109 +tp98110 +a(g98107 +g98109 +S'in' +p98111 +tp98112 +a(g98109 +g98111 +S'a' +p98113 +tp98114 +a(g98111 +g98113 +S'boston' +p98115 +tp98116 +a(g98113 +g98115 +S'lithography' +p98117 +tp98118 +a(g98115 +g98117 +S'shop,' +p98119 +tp98120 +a(g98117 +g98119 +S'he' +p98121 +tp98122 +a(g98119 +g98121 +S'supported' +p98123 +tp98124 +a(g98121 +g98123 +S'himself' +p98125 +tp98126 +a(g98123 +g98125 +S'as' +p98127 +tp98128 +a(g98125 +g98127 +S'a' +p98129 +tp98130 +a(g98127 +g98129 +S'freelance' +p98131 +tp98132 +a(g98129 +g98131 +S'illustrator,' +p98133 +tp98134 +a(g98131 +g98133 +S'creating' +p98135 +tp98136 +a(g98133 +g98135 +S'a' +p98137 +tp98138 +a(g98135 +g98137 +S'wide' +p98139 +tp98140 +a(g98137 +g98139 +S'variety' +p98141 +tp98142 +a(g98139 +g98141 +S'of' +p98143 +tp98144 +a(g98141 +g98143 +S'popular' +p98145 +tp98146 +a(g98143 +g98145 +S'images' +p98147 +tp98148 +a(g98145 +g98147 +S'that' +p98149 +tp98150 +a(g98147 +g98149 +S'subsequently' +p98151 +tp98152 +a(g98149 +g98151 +S'were' +p98153 +tp98154 +a(g98151 +g98153 +S'published' +p98155 +tp98156 +a(g98153 +g98155 +S'as' +p98157 +tp98158 +a(g98155 +g98157 +S'wood' +p98159 +tp98160 +a(g98157 +g98159 +S'engravings' +p98161 +tp98162 +a(g98159 +g98161 +S'in' +p98163 +tp98164 +a(g98161 +g98163 +S'national' +p98165 +tp98166 +a(g98163 +g98165 +S'periodicals' +p98167 +tp98168 +a(g98165 +g98167 +S'like' +p98169 +tp98170 +a(g98167 +g98169 +S'upon' +p98171 +tp98172 +a(g98169 +g98171 +S'his' +p98173 +tp98174 +a(g98171 +g98173 +S'return' +p98175 +tp98176 +a(g98173 +g98175 +S'to' +p98177 +tp98178 +a(g98175 +g98177 +S'the' +p98179 +tp98180 +a(g98177 +g98179 +S'united' +p98181 +tp98182 +a(g98179 +g98181 +S'states,' +p98183 +tp98184 +a(g98181 +g98183 +S'homer' +p98185 +tp98186 +a(g98183 +g98185 +S'turned' +p98187 +tp98188 +a(g98185 +g98187 +S'his' +p98189 +tp98190 +a(g98187 +g98189 +S'attention' +p98191 +tp98192 +a(g98189 +g98191 +S'to' +p98193 +tp98194 +a(g98191 +g98193 +S'lively' +p98195 +tp98196 +a(g98193 +g98195 +S'scenes' +p98197 +tp98198 +a(g98195 +g98197 +S'of' +p98199 +tp98200 +a(g98197 +g98199 +S'sports' +p98201 +tp98202 +a(g98199 +g98201 +S'and' +p98203 +tp98204 +a(g98201 +g98203 +S'recreation,' +p98205 +tp98206 +a(g98203 +g98205 +S'painting' +p98207 +tp98208 +a(g98205 +g98207 +S'warm' +p98209 +tp98210 +a(g98207 +g98209 +S'and' +p98211 +tp98212 +a(g98209 +g98211 +S'appealing' +p98213 +tp98214 +a(g98211 +g98213 +S'images' +p98215 +tp98216 +a(g98213 +g98215 +S'that' +p98217 +tp98218 +a(g98215 +g98217 +S'perfectly' +p98219 +tp98220 +a(g98217 +g98219 +S'suited' +p98221 +tp98222 +a(g98219 +g98221 +S'the' +p98223 +tp98224 +a(g98221 +g98223 +S'prevalent' +p98225 +tp98226 +a(g98223 +g98225 +S'postwar' +p98227 +tp98228 +a(g98225 +g98227 +S'nostalgia' +p98229 +tp98230 +a(g98227 +g98229 +S'for' +p98231 +tp98232 +a(g98229 +g98231 +S'a' +p98233 +tp98234 +a(g98231 +g98233 +S'simpler,' +p98235 +tp98236 +a(g98233 +g98235 +S'more' +p98237 +tp98238 +a(g98235 +g98237 +S'innocent' +p98239 +tp98240 +a(g98237 +g98239 +S'america.' +p98241 +tp98242 +a(g98239 +g98241 +S'courbet' +p98243 +tp98244 +a(g98241 +g98243 +S'painted' +p98245 +tp98246 +a(g98243 +g98245 +S'events' +p98247 +tp98248 +a(g98245 +g98247 +S'and' +p98249 +tp98250 +a(g98247 +g98249 +S'scenery' +p98251 +tp98252 +a(g98249 +g98251 +S'primarily' +p98253 +tp98254 +a(g98251 +g98253 +S'from' +p98255 +tp98256 +a(g98253 +g98255 +S'his' +p98257 +tp98258 +a(g98255 +g98257 +S'native' +p98259 +tp98260 +a(g98257 +g98259 +S'ornans,' +p98261 +tp98262 +a(g98259 +g98261 +S'a' +p98263 +tp98264 +a(g98261 +g98263 +S'village' +p98265 +tp98266 +a(g98263 +g98265 +S'in' +p98267 +tp98268 +a(g98265 +g98267 +S'the' +p98269 +tp98270 +a(g98267 +g98269 +S'remote' +p98271 +tp98272 +a(g98269 +g98271 +S'franche-comté' +p98273 +tp98274 +a(g98271 +g98273 +S'region.' +p98275 +tp98276 +a(g98273 +g98275 +S'a' +p98277 +tp98278 +a(g98275 +g98277 +S'proponent' +p98279 +tp98280 +a(g98277 +g98279 +S'of' +p98281 +tp98282 +a(g98279 +g98281 +S'realism,' +p98283 +tp98284 +a(g98281 +g98283 +S'he' +p98285 +tp98286 +a(g98283 +g98285 +S'challenged' +p98287 +tp98288 +a(g98285 +g98287 +S'traditional' +p98289 +tp98290 +a(g98287 +g98289 +S'ideas' +p98291 +tp98292 +a(g98289 +g98291 +S'about' +p98293 +tp98294 +a(g98291 +g98293 +S'art' +p98295 +tp98296 +a(g98293 +g98295 +S'by' +p98297 +tp98298 +a(g98295 +g98297 +S'depicting' +p98299 +tp98300 +a(g98297 +g98299 +S'simple' +p98301 +tp98302 +a(g98299 +g98301 +S'peasants' +p98303 +tp98304 +a(g98301 +g98303 +S'and' +p98305 +tp98306 +a(g98303 +g98305 +S'rustic' +p98307 +tp98308 +a(g98305 +g98307 +S'scenery' +p98309 +tp98310 +a(g98307 +g98309 +S'with' +p98311 +tp98312 +a(g98309 +g98311 +S'dignity' +p98313 +tp98314 +a(g98311 +g98313 +S'and' +p98315 +tp98316 +a(g98313 +g98315 +S'on' +p98317 +tp98318 +a(g98315 +g98317 +S'the' +p98319 +tp98320 +a(g98317 +g98319 +S'grand' +p98321 +tp98322 +a(g98319 +g98321 +S'scale' +p98323 +tp98324 +a(g98321 +g98323 +S'usually' +p98325 +tp98326 +a(g98323 +g98325 +S'reserved' +p98327 +tp98328 +a(g98325 +g98327 +S'for' +p98329 +tp98330 +a(g98327 +g98329 +S'history' +p98331 +tp98332 +a(g98329 +g98331 +S'paintings.' +p98333 +tp98334 +a(g98331 +g98333 +S'overhanging' +p98335 +tp98336 +a(g98333 +g98335 +S'trees' +p98337 +tp98338 +a(g98335 +g98337 +S'and' +p98339 +tp98340 +a(g98337 +g98339 +S'lush' +p98341 +tp98342 +a(g98339 +g98341 +S'green' +p98343 +tp98344 +a(g98341 +g98343 +S'undergrowth' +p98345 +tp98346 +a(g98343 +g98345 +S'surround' +p98347 +tp98348 +a(g98345 +g98347 +S'a' +p98349 +tp98350 +a(g98347 +g98349 +S'narrow' +p98351 +tp98352 +a(g98349 +g98351 +S'waterway' +p98353 +tp98354 +a(g98351 +g98353 +S'in' +p98355 +tp98356 +a(g98353 +g98355 +S'the' +p98357 +tp98358 +a(g98355 +g98357 +S'forest' +p98359 +tp98360 +a(g98357 +g98359 +S'interior' +p98361 +tp98362 +a(g98359 +g98361 +S'shown' +p98363 +tp98364 +a(g98361 +g98363 +S'in' +p98365 +tp98366 +a(g98363 +g98365 +S'when' +p98367 +tp98368 +a(g98365 +g98367 +S'he' +p98369 +tp98370 +a(g98367 +g98369 +S'exhibited' +p98371 +tp98372 +a(g98369 +g98371 +S'this' +p98373 +tp98374 +a(g98371 +g98373 +S'painting' +p98375 +tp98376 +a(g98373 +g98375 +S'at' +p98377 +tp98378 +a(g98375 +g98377 +S'the' +p98379 +tp98380 +a(g98377 +g98379 +S'exposition' +p98381 +tp98382 +a(g98379 +g98381 +S'universelle' +p98383 +tp98384 +a(g98381 +g98383 +S'in' +p98385 +tp98386 +a(g98383 +g98385 +S'1855,' +p98387 +tp98388 +a(g98385 +g98387 +S'courbet' +p98389 +tp98390 +a(g98387 +g98389 +S'specifically' +p98391 +tp98392 +a(g98389 +g98391 +S'identified' +p98393 +tp98394 +a(g98391 +g98393 +S'the' +p98395 +tp98396 +a(g98393 +g98395 +S'wooded' +p98397 +tp98398 +a(g98395 +g98397 +S'gorge' +p98399 +tp98400 +a(g98397 +g98399 +S'in' +p98401 +tp98402 +a(g98399 +g98401 +S'both' +p98403 +tp98404 +a(g98401 +g98403 +S'members' +p98405 +tp98406 +a(g98403 +g98405 +S'of' +p98407 +tp98408 +a(g98405 +g98407 +S'this' +p98409 +tp98410 +a(g98407 +g98409 +S'club' +p98411 +tp98412 +a(g98409 +g98411 +S'in' +p98413 +tp98414 +a(g98411 +g98413 +S'the' +p98415 +tp98416 +a(g98413 +g98415 +S'painting' +p98417 +tp98418 +a(g98415 +g98417 +S'one' +p98419 +tp98420 +a(g98417 +g98419 +S'can' +p98421 +tp98422 +a(g98419 +g98421 +S'almost' +p98423 +tp98424 +a(g98421 +g98423 +S'sense' +p98425 +tp98426 +a(g98423 +g98425 +S'the' +p98427 +tp98428 +a(g98425 +g98427 +S'atmosphere' +p98429 +tp98430 +a(g98427 +g98429 +S'of' +p98431 +tp98432 +a(g98429 +g98431 +S'stale' +p98433 +tp98434 +a(g98431 +g98433 +S'cigar' +p98435 +tp98436 +a(g98433 +g98435 +S'smoke' +p98437 +tp98438 +a(g98435 +g98437 +S'and' +p98439 +tp98440 +a(g98437 +g98439 +S'body' +p98441 +tp98442 +a(g98439 +g98441 +S'heat' +p98443 +tp98444 +a(g98441 +g98443 +S'that' +p98445 +tp98446 +a(g98443 +g98445 +S'typified' +p98447 +tp98448 +a(g98445 +g98447 +S'these' +p98449 +tp98450 +a(g98447 +g98449 +S'back–room' +p98451 +tp98452 +a(g98449 +g98451 +S'bouts.' +p98453 +tp98454 +a(g98451 +g98453 +S'at' +p98455 +tp98456 +a(g98453 +g98455 +S'the' +p98457 +tp98458 +a(g98455 +g98457 +S"match's" +p98459 +tp98460 +a(g98457 +g98459 +S'frenzied' +p98461 +tp98462 +a(g98459 +g98461 +S'climax,' +p98463 +tp98464 +a(g98461 +g98463 +S'the' +p98465 +tp98466 +a(g98463 +g98465 +S'victorious' +p98467 +tp98468 +a(g98465 +g98467 +S'fighter' +p98469 +tp98470 +a(g98467 +g98469 +S'on' +p98471 +tp98472 +a(g98469 +g98471 +S'the' +p98473 +tp98474 +a(g98471 +g98473 +S'right' +p98475 +tp98476 +a(g98473 +g98475 +S'lunges' +p98477 +tp98478 +a(g98475 +g98477 +S'forward,' +p98479 +tp98480 +a(g98477 +g98479 +S'while' +p98481 +tp98482 +a(g98479 +g98481 +S'the' +p98483 +tp98484 +a(g98481 +g98483 +S'nearly' +p98485 +tp98486 +a(g98483 +g98485 +S'vanquished' +p98487 +tp98488 +a(g98485 +g98487 +S'boxer' +p98489 +tp98490 +a(g98487 +g98489 +S'on' +p98491 +tp98492 +a(g98489 +g98491 +S'the' +p98493 +tp98494 +a(g98491 +g98493 +S'left,' +p98495 +tp98496 +a(g98493 +g98495 +S'his' +p98497 +tp98498 +a(g98495 +g98497 +S'face' +p98499 +tp98500 +a(g98497 +g98499 +S'contorted' +p98501 +tp98502 +a(g98499 +g98501 +S'with' +p98503 +tp98504 +a(g98501 +g98503 +S'pain,' +p98505 +tp98506 +a(g98503 +g98505 +S'weakly' +p98507 +tp98508 +a(g98505 +g98507 +S'resists' +p98509 +tp98510 +a(g98507 +g98509 +S'the' +p98511 +tp98512 +a(g98509 +g98511 +S'blow' +p98513 +tp98514 +a(g98511 +g98513 +S'and' +p98515 +tp98516 +a(g98513 +g98515 +S'momentarily' +p98517 +tp98518 +a(g98515 +g98517 +S'postpones' +p98519 +tp98520 +a(g98517 +g98519 +S'his' +p98521 +tp98522 +a(g98519 +g98521 +S'imminent' +p98523 +tp98524 +a(g98521 +g98523 +S'defeat.' +p98525 +tp98526 +a(g98523 +g98525 +S"bellows'" +p98527 +tp98528 +a(g98525 +g98527 +S'rapid,' +p98529 +tp98530 +a(g98527 +g98529 +S'slashing' +p98531 +tp98532 +a(g98529 +g98531 +S'brushwork,' +p98533 +tp98534 +a(g98531 +g98533 +S'his' +p98535 +tp98536 +a(g98533 +g98535 +S'characteristic' +p98537 +tp98538 +a(g98535 +g98537 +S'use' +p98539 +tp98540 +a(g98537 +g98539 +S'of' +p98541 +tp98542 +a(g98539 +g98541 +S'dramatic' +p98543 +tp98544 +a(g98541 +g98543 +S'lighting' +p98545 +tp98546 +a(g98543 +g98545 +S'and' +p98547 +tp98548 +a(g98545 +g98547 +S'lurid' +p98549 +tp98550 +a(g98547 +g98549 +S'color,' +p98551 +tp98552 +a(g98549 +g98551 +S'his' +p98553 +tp98554 +a(g98551 +g98553 +S'selection' +p98555 +tp98556 +a(g98553 +g98555 +S'of' +p98557 +tp98558 +a(g98555 +g98557 +S'stark' +p98559 +tp98560 +a(g98557 +g98559 +S'angles' +p98561 +tp98562 +a(g98559 +g98561 +S'and' +p98563 +tp98564 +a(g98561 +g98563 +S'dramatic' +p98565 +tp98566 +a(g98563 +g98565 +S'close–ups' +p98567 +tp98568 +a(g98565 +g98567 +S'all' +p98569 +tp98570 +a(g98567 +g98569 +S'enhance' +p98571 +tp98572 +a(g98569 +g98571 +S'the' +p98573 +tp98574 +a(g98571 +g98573 +S"scene's" +p98575 +tp98576 +a(g98573 +g98575 +S'immediacy.' +p98577 +tp98578 +a(g98575 +g98577 +S'members' +p98579 +tp98580 +a(g98577 +g98579 +S'of' +p98581 +tp98582 +a(g98579 +g98581 +S'the' +p98583 +tp98584 +a(g98581 +g98583 +S'audience,' +p98585 +tp98586 +a(g98583 +g98585 +S'their' +p98587 +tp98588 +a(g98585 +g98587 +S'faces' +p98589 +tp98590 +a(g98587 +g98589 +S'horribly' +p98591 +tp98592 +a(g98589 +g98591 +S'disfigured' +p98593 +tp98594 +a(g98591 +g98593 +S'by' +p98595 +tp98596 +a(g98593 +g98595 +S'vicarious' +p98597 +tp98598 +a(g98595 +g98597 +S'passion,' +p98599 +tp98600 +a(g98597 +g98599 +S'display' +p98601 +tp98602 +a(g98599 +g98601 +S'an' +p98603 +tp98604 +a(g98601 +g98603 +S'animalistic' +p98605 +tp98606 +a(g98603 +g98605 +S'bloodlust' +p98607 +tp98608 +a(g98605 +g98607 +S'that' +p98609 +tp98610 +a(g98607 +g98609 +S'reveals' +p98611 +tp98612 +a(g98609 +g98611 +S'much' +p98613 +tp98614 +a(g98611 +g98613 +S'about' +p98615 +tp98616 +a(g98613 +g98615 +S'the' +p98617 +tp98618 +a(g98615 +g98617 +S'darker' +p98619 +tp98620 +a(g98617 +g98619 +S'aspects' +p98621 +tp98622 +a(g98619 +g98621 +S'of' +p98623 +tp98624 +a(g98621 +g98623 +S'human' +p98625 +tp98626 +a(g98623 +g98625 +S'nature.' +p98627 +tp98628 +a(g98625 +g98627 +S'the' +p98629 +tp98630 +a(g98627 +g98629 +S'artist' +p98631 +tp98632 +a(g98629 +g98631 +S'is' +p98633 +tp98634 +a(g98631 +g98633 +S'suggesting' +p98635 +tp98636 +a(g98633 +g98635 +S'that' +p98637 +tp98638 +a(g98635 +g98637 +S'the' +p98639 +tp98640 +a(g98637 +g98639 +S'men' +p98641 +tp98642 +a(g98639 +g98641 +S'in' +p98643 +tp98644 +a(g98641 +g98643 +S'the' +p98645 +tp98646 +a(g98643 +g98645 +S'ring,' +p98647 +tp98648 +a(g98645 +g98647 +S'teamed' +p98649 +tp98650 +a(g98647 +g98649 +S'in' +p98651 +tp98652 +a(g98649 +g98651 +S'their' +p98653 +tp98654 +a(g98651 +g98653 +S'physical' +p98655 +tp98656 +a(g98653 +g98655 +S'struggle,' +p98657 +tp98658 +a(g98655 +g98657 +S'also' +p98659 +tp98660 +a(g98657 +g98659 +S'must' +p98661 +tp98662 +a(g98659 +g98661 +S'contend' +p98663 +tp98664 +a(g98661 +g98663 +S'with' +p98665 +tp98666 +a(g98663 +g98665 +S'the' +p98667 +tp98668 +a(g98665 +g98667 +S'larger,' +p98669 +tp98670 +a(g98667 +g98669 +S'perhaps' +p98671 +tp98672 +a(g98669 +g98671 +S'even' +p98673 +tp98674 +a(g98671 +g98673 +S'more' +p98675 +tp98676 +a(g98673 +g98675 +S'brutal' +p98677 +tp98678 +a(g98675 +g98677 +S'adversary' +p98679 +tp98680 +a(g98677 +g98679 +S'of' +p98681 +tp98682 +a(g98679 +g98681 +S'social' +p98683 +tp98684 +a(g98681 +g98683 +S'injustice.' +p98685 +tp98686 +a(g98683 +g98685 +S'chester' +p98689 +tp98690 +a(g98687 +g98689 +S'dale' +p98691 +tp98692 +a(g98689 +g98691 +S'at' +p98693 +tp98694 +a(g98691 +g98693 +S'the' +p98695 +tp98696 +a(g98693 +g98695 +S'suggestion' +p98697 +tp98698 +a(g98695 +g98697 +S'of' +p98699 +tp98700 +a(g98697 +g98699 +S'his' +p98701 +tp98702 +a(g98699 +g98701 +S'friend,' +p98703 +tp98704 +a(g98701 +g98703 +S'the' +p98705 +tp98706 +a(g98703 +g98705 +S'painter' +p98707 +tp98708 +a(g98705 +g98707 +S'george' +p98709 +tp98710 +a(g98707 +g98709 +S'bellows,' +p98711 +tp98712 +a(g98709 +g98711 +S'chester' +p98713 +tp98714 +a(g98711 +g98713 +S'dale' +p98715 +tp98716 +a(g98713 +g98715 +S'posed' +p98717 +tp98718 +a(g98715 +g98717 +S'holding' +p98719 +tp98720 +a(g98717 +g98719 +S'a' +p98721 +tp98722 +a(g98719 +g98721 +S'golf' +p98723 +tp98724 +a(g98721 +g98723 +S'club;' +p98725 +tp98726 +a(g98723 +g98725 +S'as' +p98727 +tp98728 +a(g98725 +g98727 +S'youths,' +p98729 +tp98730 +a(g98727 +g98729 +S'both' +p98731 +tp98732 +a(g98729 +g98731 +S'artist' +p98733 +tp98734 +a(g98731 +g98733 +S'and' +p98735 +tp98736 +a(g98733 +g98735 +S'sitter' +p98737 +tp98738 +a(g98735 +g98737 +S'had' +p98739 +tp98740 +a(g98737 +g98739 +S'been' +p98741 +tp98742 +a(g98739 +g98741 +S'semiprofessional' +p98743 +tp98744 +a(g98741 +g98743 +S'athletes.' +p98745 +tp98746 +a(g98743 +g98745 +S'rather' +p98747 +tp98748 +a(g98745 +g98747 +S'than' +p98749 +tp98750 +a(g98747 +g98749 +S'celebrating' +p98751 +tp98752 +a(g98749 +g98751 +S'nature' +p98753 +tp98754 +a(g98751 +g98753 +S'in' +p98755 +tp98756 +a(g98753 +g98755 +S'the' +p98757 +tp98758 +a(g98755 +g98757 +S'tradition' +p98759 +tp98760 +a(g98757 +g98759 +S'of' +p98761 +tp98762 +a(g98759 +g98761 +S'the' +p98763 +tp98764 +a(g98761 +g98763 +S'hudson' +p98765 +tp98766 +a(g98763 +g98765 +S'river' +p98767 +tp98768 +a(g98765 +g98767 +S'school,' +p98769 +tp98770 +a(g98767 +g98769 +S'george' +p98771 +tp98772 +a(g98769 +g98771 +S"inness'" +p98773 +tp98774 +a(g98771 +g98773 +S'whether' +p98775 +tp98776 +a(g98773 +g98775 +S'it' +p98777 +tp98778 +a(g98775 +g98777 +S'is' +p98779 +tp98780 +a(g98777 +g98779 +S'read' +p98781 +tp98782 +a(g98779 +g98781 +S'as' +p98783 +tp98784 +a(g98781 +g98783 +S'an' +p98785 +tp98786 +a(g98783 +g98785 +S'enthusiastic' +p98787 +tp98788 +a(g98785 +g98787 +S'affirmation' +p98789 +tp98790 +a(g98787 +g98789 +S'of' +p98791 +tp98792 +a(g98789 +g98791 +S'technology' +p98793 +tp98794 +a(g98791 +g98793 +S'or' +p98795 +tp98796 +a(g98793 +g98795 +S'as' +p98797 +tp98798 +a(g98795 +g98797 +S'a' +p98799 +tp98800 +a(g98797 +g98799 +S'belated' +p98801 +tp98802 +a(g98799 +g98801 +S'lament' +p98803 +tp98804 +a(g98801 +g98803 +S'for' +p98805 +tp98806 +a(g98803 +g98805 +S'a' +p98807 +tp98808 +a(g98805 +g98807 +S'rapidly' +p98809 +tp98810 +a(g98807 +g98809 +S'vanishing' +p98811 +tp98812 +a(g98809 +g98811 +S'wilderness,' +p98813 +tp98814 +a(g98811 +g98813 +S'this' +p98815 +tp98816 +a(g98813 +g98815 +S'painting' +p98817 +tp98818 +a(g98815 +g98817 +S'exemplifies' +p98819 +tp98820 +a(g98817 +g98819 +S'a' +p98821 +tp98822 +a(g98819 +g98821 +S'crucial' +p98823 +tp98824 +a(g98821 +g98823 +S'philosophical' +p98825 +tp98826 +a(g98823 +g98825 +S'dilemma' +p98827 +tp98828 +a(g98825 +g98827 +S'that' +p98829 +tp98830 +a(g98827 +g98829 +S'confronted' +p98831 +tp98832 +a(g98829 +g98831 +S'many' +p98833 +tp98834 +a(g98831 +g98833 +S'americans' +p98835 +tp98836 +a(g98833 +g98835 +S'in' +p98837 +tp98838 +a(g98835 +g98837 +S'the' +p98839 +tp98840 +a(g98837 +g98839 +S'1850s;' +p98841 +tp98842 +a(g98839 +g98841 +S'expansion' +p98843 +tp98844 +a(g98841 +g98843 +S'inevitably' +p98845 +tp98846 +a(g98843 +g98845 +S'necessitated' +p98847 +tp98848 +a(g98845 +g98847 +S'the' +p98849 +tp98850 +a(g98847 +g98849 +S'widespread' +p98851 +tp98852 +a(g98849 +g98851 +S'destruction' +p98853 +tp98854 +a(g98851 +g98853 +S'of' +p98855 +tp98856 +a(g98853 +g98855 +S'unspoiled' +p98857 +tp98858 +a(g98855 +g98857 +S'nature,' +p98859 +tp98860 +a(g98857 +g98859 +S'itself' +p98861 +tp98862 +a(g98859 +g98861 +S'a' +p98863 +tp98864 +a(g98861 +g98863 +S'still-powerful' +p98865 +tp98866 +a(g98863 +g98865 +S'symbol' +p98867 +tp98868 +a(g98865 +g98867 +S'of' +p98869 +tp98870 +a(g98867 +g98869 +S'the' +p98871 +tp98872 +a(g98869 +g98871 +S"nation's" +p98873 +tp98874 +a(g98871 +g98873 +S'greatness.' +p98875 +tp98876 +a(g98873 +g98875 +S'although' +p98877 +tp98878 +a(g98875 +g98877 +S'it' +p98879 +tp98880 +a(g98877 +g98879 +S'was' +p98881 +tp98882 +a(g98879 +g98881 +S'initially' +p98883 +tp98884 +a(g98881 +g98883 +S'commissioned' +p98885 +tp98886 +a(g98883 +g98885 +S'as' +p98887 +tp98888 +a(g98885 +g98887 +S'an' +p98889 +tp98890 +a(g98887 +g98889 +S'homage' +p98891 +tp98892 +a(g98889 +g98891 +S'to' +p98893 +tp98894 +a(g98891 +g98893 +S'the' +p98895 +tp98896 +a(g98893 +g98895 +S'machine,' +p98897 +tp98898 +a(g98895 +g98897 +S"inness'" +p98899 +tp98900 +a(g98897 +g98899 +S'pietro' +p98901 +tp98902 +a(g98899 +g98901 +S'vannucci,' +p98903 +tp98904 +a(g98901 +g98903 +S'called' +p98905 +tp98906 +a(g98903 +g98905 +S'perugino' +p98907 +tp98908 +a(g98905 +g98907 +S'after' +p98909 +tp98910 +a(g98907 +g98909 +S'the' +p98911 +tp98912 +a(g98909 +g98911 +S'city' +p98913 +tp98914 +a(g98911 +g98913 +S'in' +p98915 +tp98916 +a(g98913 +g98915 +S'which' +p98917 +tp98918 +a(g98915 +g98917 +S'he' +p98919 +tp98920 +a(g98917 +g98919 +S'often' +p98921 +tp98922 +a(g98919 +g98921 +S'lived,' +p98923 +tp98924 +a(g98921 +g98923 +S'collaborated' +p98925 +tp98926 +a(g98923 +g98925 +S'with' +p98927 +tp98928 +a(g98925 +g98927 +S'other' +p98929 +tp98930 +a(g98927 +g98929 +S'celebrated' +p98931 +tp98932 +a(g98929 +g98931 +S'painters' +p98933 +tp98934 +a(g98931 +g98933 +S'in' +p98935 +tp98936 +a(g98933 +g98935 +S'one' +p98937 +tp98938 +a(g98935 +g98937 +S'of' +p98939 +tp98940 +a(g98937 +g98939 +S'the' +p98941 +tp98942 +a(g98939 +g98941 +S'most' +p98943 +tp98944 +a(g98941 +g98943 +S'prestigious' +p98945 +tp98946 +a(g98943 +g98945 +S'commissions' +p98947 +tp98948 +a(g98945 +g98947 +S'of' +p98949 +tp98950 +a(g98947 +g98949 +S'the' +p98951 +tp98952 +a(g98949 +g98951 +S'late' +p98953 +tp98954 +a(g98951 +g98953 +S'fifteenth' +p98955 +tp98956 +a(g98953 +g98955 +S'century' +p98957 +tp98958 +a(g98955 +g98957 +S'--' +p98959 +tp98960 +a(g98957 +g98959 +S'the' +p98961 +tp98962 +a(g98959 +g98961 +S'decoration' +p98963 +tp98964 +a(g98961 +g98963 +S'of' +p98965 +tp98966 +a(g98963 +g98965 +S'the' +p98967 +tp98968 +a(g98965 +g98967 +S'walls' +p98969 +tp98970 +a(g98967 +g98969 +S'of' +p98971 +tp98972 +a(g98969 +g98971 +S'the' +p98973 +tp98974 +a(g98971 +g98973 +S'sistine' +p98975 +tp98976 +a(g98973 +g98975 +S'chapel' +p98977 +tp98978 +a(g98975 +g98977 +S'in' +p98979 +tp98980 +a(g98977 +g98979 +S'1481-1482.' +p98981 +tp98982 +a(g98979 +g98981 +S'he' +p98983 +tp98984 +a(g98981 +g98983 +S'headed' +p98985 +tp98986 +a(g98983 +g98985 +S'active' +p98987 +tp98988 +a(g98985 +g98987 +S'workshops' +p98989 +tp98990 +a(g98987 +g98989 +S'in' +p98991 +tp98992 +a(g98989 +g98991 +S'perugia' +p98993 +tp98994 +a(g98991 +g98993 +S'and' +p98995 +tp98996 +a(g98993 +g98995 +S'florence,' +p98997 +tp98998 +a(g98995 +g98997 +S'where' +p98999 +tp99000 +a(g98997 +g98999 +S'he' +p99001 +tp99002 +a(g98999 +g99001 +S'would' +p99003 +tp99004 +a(g99001 +g99003 +S'eventually' +p99005 +tp99006 +a(g99003 +g99005 +S'be' +p99007 +tp99008 +a(g99005 +g99007 +S'overshadowed' +p99009 +tp99010 +a(g99007 +g99009 +S'by' +p99011 +tp99012 +a(g99009 +g99011 +S'his' +p99013 +tp99014 +a(g99011 +g99013 +S'greatest' +p99015 +tp99016 +a(g99013 +g99015 +S'pupil,' +p99017 +tp99018 +a(g99015 +g99017 +S'raphael.' +p99019 +tp99020 +a(g99017 +g99019 +S"perugino's" +p99021 +tp99022 +a(g99019 +g99021 +S'from' +p99023 +tp99024 +a(g99021 +g99023 +S'the' +p99025 +tp99026 +a(g99023 +g99025 +S'late' +p99027 +tp99028 +a(g99025 +g99027 +S'seventeenth' +p99029 +tp99030 +a(g99027 +g99029 +S'to' +p99031 +tp99032 +a(g99029 +g99031 +S'the' +p99033 +tp99034 +a(g99031 +g99033 +S'early' +p99035 +tp99036 +a(g99033 +g99035 +S'twentieth' +p99037 +tp99038 +a(g99035 +g99037 +S'century' +p99039 +tp99040 +a(g99037 +g99039 +S"perugino's" +p99041 +tp99042 +a(g99039 +g99041 +S'the' +p99043 +tp99044 +a(g99041 +g99043 +S'lifeless' +p99045 +tp99046 +a(g99043 +g99045 +S'and' +p99047 +tp99048 +a(g99045 +g99047 +S'gaunt' +p99049 +tp99050 +a(g99047 +g99049 +S'body' +p99051 +tp99052 +a(g99049 +g99051 +S'of' +p99053 +tp99054 +a(g99051 +g99053 +S'christ' +p99055 +tp99056 +a(g99053 +g99055 +S'slumps' +p99057 +tp99058 +a(g99055 +g99057 +S'in' +p99059 +tp99060 +a(g99057 +g99059 +S'the' +p99061 +tp99062 +a(g99059 +g99061 +S'arms' +p99063 +tp99064 +a(g99061 +g99063 +S'of' +p99065 +tp99066 +a(g99063 +g99065 +S'an' +p99067 +tp99068 +a(g99065 +g99067 +S'angel,' +p99069 +tp99070 +a(g99067 +g99069 +S'whose' +p99071 +tp99072 +a(g99069 +g99071 +S'face' +p99073 +tp99074 +a(g99071 +g99073 +S'is' +p99075 +tp99076 +a(g99073 +g99075 +S'marked' +p99077 +tp99078 +a(g99075 +g99077 +S'by' +p99079 +tp99080 +a(g99077 +g99079 +S'quiet' +p99081 +tp99082 +a(g99079 +g99081 +S'grief.' +p99083 +tp99084 +a(g99081 +g99083 +S'in' +p99085 +tp99086 +a(g99083 +g99085 +S'the' +p99087 +tp99088 +a(g99085 +g99087 +S'corner' +p99089 +tp99090 +a(g99087 +g99089 +S'the' +p99091 +tp99092 +a(g99089 +g99091 +S'hand' +p99093 +tp99094 +a(g99091 +g99093 +S'of' +p99095 +tp99096 +a(g99093 +g99095 +S'god,' +p99097 +tp99098 +a(g99095 +g99097 +S'emerging' +p99099 +tp99100 +a(g99097 +g99099 +S'from' +p99101 +tp99102 +a(g99099 +g99101 +S'a' +p99103 +tp99104 +a(g99101 +g99103 +S'swirl' +p99105 +tp99106 +a(g99103 +g99105 +S'of' +p99107 +tp99108 +a(g99105 +g99107 +S'stylized' +p99109 +tp99110 +a(g99107 +g99109 +S'clouds,' +p99111 +tp99112 +a(g99109 +g99111 +S'points' +p99113 +tp99114 +a(g99111 +g99113 +S'with' +p99115 +tp99116 +a(g99113 +g99115 +S'a' +p99117 +tp99118 +a(g99115 +g99117 +S'gesture' +p99119 +tp99120 +a(g99117 +g99119 +S'of' +p99121 +tp99122 +a(g99119 +g99121 +S'benediction' +p99123 +tp99124 +a(g99121 +g99123 +S'to' +p99125 +tp99126 +a(g99123 +g99125 +S'the' +p99127 +tp99128 +a(g99125 +g99127 +S'dove' +p99129 +tp99130 +a(g99127 +g99129 +S'of' +p99131 +tp99132 +a(g99129 +g99131 +S'the' +p99133 +tp99134 +a(g99131 +g99133 +S'holy' +p99135 +tp99136 +a(g99133 +g99135 +S'spirit' +p99137 +tp99138 +a(g99135 +g99137 +S'as' +p99139 +tp99140 +a(g99137 +g99139 +S'it' +p99141 +tp99142 +a(g99139 +g99141 +S'descends' +p99143 +tp99144 +a(g99141 +g99143 +S'to' +p99145 +tp99146 +a(g99143 +g99145 +S'the' +p99147 +tp99148 +a(g99145 +g99147 +S'head' +p99149 +tp99150 +a(g99147 +g99149 +S'of' +p99151 +tp99152 +a(g99149 +g99151 +S'jesus.' +p99153 +tp99154 +a(g99151 +g99153 +S'such' +p99155 +tp99156 +a(g99153 +g99155 +S'images' +p99157 +tp99158 +a(g99155 +g99157 +S'inspired' +p99159 +tp99160 +a(g99157 +g99159 +S'the' +p99161 +tp99162 +a(g99159 +g99161 +S'viewer' +p99163 +tp99164 +a(g99161 +g99163 +S'to' +p99165 +tp99166 +a(g99163 +g99165 +S'contemplate' +p99167 +tp99168 +a(g99165 +g99167 +S'and' +p99169 +tp99170 +a(g99167 +g99169 +S'identify' +p99171 +tp99172 +a(g99169 +g99171 +S'with' +p99173 +tp99174 +a(g99171 +g99173 +S'the' +p99175 +tp99176 +a(g99173 +g99175 +S'suffering' +p99177 +tp99178 +a(g99175 +g99177 +S'of' +p99179 +tp99180 +a(g99177 +g99179 +S'christ.' +p99181 +tp99182 +a(g99179 +g99181 +S'dramatic' +p99183 +tp99184 +a(g99181 +g99183 +S'depictions' +p99185 +tp99186 +a(g99183 +g99185 +S'of' +p99187 +tp99188 +a(g99185 +g99187 +S'great' +p99189 +tp99190 +a(g99187 +g99189 +S'pathos' +p99191 +tp99192 +a(g99189 +g99191 +S'and' +p99193 +tp99194 +a(g99191 +g99193 +S'immediacy,' +p99195 +tp99196 +a(g99193 +g99195 +S'called' +p99197 +tp99198 +a(g99195 +g99197 +S'this' +p99199 +tp99200 +a(g99197 +g99199 +S'small' +p99201 +tp99202 +a(g99199 +g99201 +S'alabaster' +p99203 +tp99204 +a(g99201 +g99203 +S'relief,' +p99205 +tp99206 +a(g99203 +g99205 +S'probably' +p99207 +tp99208 +a(g99205 +g99207 +S'made' +p99209 +tp99210 +a(g99207 +g99209 +S'by' +p99211 +tp99212 +a(g99209 +g99211 +S'a' +p99213 +tp99214 +a(g99211 +g99213 +S'mary' +p99215 +tp99216 +a(g99213 +g99215 +S'and' +p99217 +tp99218 +a(g99215 +g99217 +S"joseph's" +p99219 +tp99220 +a(g99217 +g99219 +S'flight' +p99221 +tp99222 +a(g99219 +g99221 +S'with' +p99223 +tp99224 +a(g99221 +g99223 +S'jesus' +p99225 +tp99226 +a(g99223 +g99225 +S'to' +p99227 +tp99228 +a(g99225 +g99227 +S'escape' +p99229 +tp99230 +a(g99227 +g99229 +S"herod's" +p99231 +tp99232 +a(g99229 +g99231 +S'slaughter' +p99233 +tp99234 +a(g99231 +g99233 +S'of' +p99235 +tp99236 +a(g99233 +g99235 +S'the' +p99237 +tp99238 +a(g99235 +g99237 +S'hebrew' +p99239 +tp99240 +a(g99237 +g99239 +S'babies' +p99241 +tp99242 +a(g99239 +g99241 +S'is' +p99243 +tp99244 +a(g99241 +g99243 +S'recounted' +p99245 +tp99246 +a(g99243 +g99245 +S'in' +p99247 +tp99248 +a(g99245 +g99247 +S'the' +p99249 +tp99250 +a(g99247 +g99249 +S'gospel' +p99251 +tp99252 +a(g99249 +g99251 +S'of' +p99253 +tp99254 +a(g99251 +g99253 +S'matthew.' +p99255 +tp99256 +a(g99253 +g99255 +S'the' +p99257 +tp99258 +a(g99255 +g99257 +S'subject' +p99259 +tp99260 +a(g99257 +g99259 +S'is' +p99261 +tp99262 +a(g99259 +g99261 +S'often' +p99263 +tp99264 +a(g99261 +g99263 +S'found' +p99265 +tp99266 +a(g99263 +g99265 +S'on' +p99267 +tp99268 +a(g99265 +g99267 +S'predellas,' +p99269 +tp99270 +a(g99267 +g99269 +S'the' +p99271 +tp99272 +a(g99269 +g99271 +S'small' +p99273 +tp99274 +a(g99271 +g99273 +S'scenes' +p99275 +tp99276 +a(g99273 +g99275 +S'at' +p99277 +tp99278 +a(g99275 +g99277 +S'the' +p99279 +tp99280 +a(g99277 +g99279 +S'base' +p99281 +tp99282 +a(g99279 +g99281 +S'of' +p99283 +tp99284 +a(g99281 +g99283 +S'altarpieces,' +p99285 +tp99286 +a(g99283 +g99285 +S'but' +p99287 +tp99288 +a(g99285 +g99287 +S'this' +p99289 +tp99290 +a(g99287 +g99289 +S'painting' +p99291 +tp99292 +a(g99289 +g99291 +S'is' +p99293 +tp99294 +a(g99291 +g99293 +S'too' +p99295 +tp99296 +a(g99293 +g99295 +S'large' +p99297 +tp99298 +a(g99295 +g99297 +S'to' +p99299 +tp99300 +a(g99297 +g99299 +S'be' +p99301 +tp99302 +a(g99299 +g99301 +S'a' +p99303 +tp99304 +a(g99301 +g99303 +S'predella' +p99305 +tp99306 +a(g99303 +g99305 +S'panel.' +p99307 +tp99308 +a(g99305 +g99307 +S'nor' +p99309 +tp99310 +a(g99307 +g99309 +S'is' +p99311 +tp99312 +a(g99309 +g99311 +S'it' +p99313 +tp99314 +a(g99311 +g99313 +S'likely' +p99315 +tp99316 +a(g99313 +g99315 +S'to' +p99317 +tp99318 +a(g99315 +g99317 +S'have' +p99319 +tp99320 +a(g99317 +g99319 +S'been' +p99321 +tp99322 +a(g99319 +g99321 +S'the' +p99323 +tp99324 +a(g99321 +g99323 +S'central' +p99325 +tp99326 +a(g99323 +g99325 +S'section' +p99327 +tp99328 +a(g99325 +g99327 +S'of' +p99329 +tp99330 +a(g99327 +g99329 +S'an' +p99331 +tp99332 +a(g99329 +g99331 +S'altarpiece—those' +p99333 +tp99334 +a(g99331 +g99333 +S'were' +p99335 +tp99336 +a(g99333 +g99335 +S'usually' +p99337 +tp99338 +a(g99335 +g99337 +S'meditative,' +p99339 +tp99340 +a(g99337 +g99339 +S'devotional' +p99341 +tp99342 +a(g99339 +g99341 +S'images' +p99343 +tp99344 +a(g99341 +g99343 +S'rather' +p99345 +tp99346 +a(g99343 +g99345 +S'than' +p99347 +tp99348 +a(g99345 +g99347 +S'narrative' +p99349 +tp99350 +a(g99347 +g99349 +S'ones' +p99351 +tp99352 +a(g99349 +g99351 +S'like' +p99353 +tp99354 +a(g99351 +g99353 +S'this.' +p99355 +tp99356 +a(g99353 +g99355 +S'perhaps' +p99357 +tp99358 +a(g99355 +g99357 +S'it' +p99359 +tp99360 +a(g99357 +g99359 +S'was' +p99361 +tp99362 +a(g99359 +g99361 +S'made' +p99363 +tp99364 +a(g99361 +g99363 +S'for' +p99365 +tp99366 +a(g99363 +g99365 +S'a' +p99367 +tp99368 +a(g99365 +g99367 +S'religious' +p99369 +tp99370 +a(g99367 +g99369 +S'confraternity.' +p99371 +tp99372 +a(g99369 +g99371 +S'such' +p99373 +tp99374 +a(g99371 +g99373 +S'while' +p99375 +tp99376 +a(g99373 +g99375 +S'bellini' +p99377 +tp99378 +a(g99375 +g99377 +S'began' +p99379 +tp99380 +a(g99377 +g99379 +S'to' +p99381 +tp99382 +a(g99379 +g99381 +S'use' +p99383 +tp99384 +a(g99381 +g99383 +S'layered' +p99385 +tp99386 +a(g99383 +g99385 +S'oil' +p99387 +tp99388 +a(g99385 +g99387 +S'glazes' +p99389 +tp99390 +a(g99387 +g99389 +S'to' +p99391 +tp99392 +a(g99389 +g99391 +S'soften' +p99393 +tp99394 +a(g99391 +g99393 +S'the' +p99395 +tp99396 +a(g99393 +g99395 +S'edges' +p99397 +tp99398 +a(g99395 +g99397 +S'of' +p99399 +tp99400 +a(g99397 +g99399 +S'his' +p99401 +tp99402 +a(g99399 +g99401 +S'forms,' +p99403 +tp99404 +a(g99401 +g99403 +S'the' +p99405 +tp99406 +a(g99403 +g99405 +S'younger' +p99407 +tp99408 +a(g99405 +g99407 +S'carpaccio' +p99409 +tp99410 +a(g99407 +g99409 +S'continued' +p99411 +tp99412 +a(g99409 +g99411 +S'to' +p99413 +tp99414 +a(g99411 +g99413 +S'favor' +p99415 +tp99416 +a(g99413 +g99415 +S'a' +p99417 +tp99418 +a(g99415 +g99417 +S'harder' +p99419 +tp99420 +a(g99417 +g99419 +S'(and' +p99421 +tp99422 +a(g99419 +g99421 +S'increasingly' +p99423 +tp99424 +a(g99421 +g99423 +S'old-fashioned)' +p99425 +tp99426 +a(g99423 +g99425 +S'line.' +p99427 +tp99428 +a(g99425 +g99427 +S'in' +p99429 +tp99430 +a(g99427 +g99429 +S'this' +p99431 +tp99432 +a(g99429 +g99431 +S'case,' +p99433 +tp99434 +a(g99431 +g99433 +S'though,' +p99435 +tp99436 +a(g99433 +g99435 +S'it' +p99437 +tp99438 +a(g99435 +g99437 +S'enhances' +p99439 +tp99440 +a(g99437 +g99439 +S'his' +p99441 +tp99442 +a(g99439 +g99441 +S'narrative' +p99443 +tp99444 +a(g99441 +g99443 +S'purpose:' +p99445 +tp99446 +a(g99443 +g99445 +S'hard' +p99447 +tp99448 +a(g99445 +g99447 +S'contours' +p99449 +tp99450 +a(g99447 +g99449 +S'accentuate' +p99451 +tp99452 +a(g99449 +g99451 +S'the' +p99453 +tp99454 +a(g99451 +g99453 +S'gait' +p99455 +tp99456 +a(g99453 +g99455 +S'of' +p99457 +tp99458 +a(g99455 +g99457 +S'the' +p99459 +tp99460 +a(g99457 +g99459 +S'ass' +p99461 +tp99462 +a(g99459 +g99461 +S'and' +p99463 +tp99464 +a(g99461 +g99463 +S'the' +p99465 +tp99466 +a(g99463 +g99465 +S'long' +p99467 +tp99468 +a(g99465 +g99467 +S'stride' +p99469 +tp99470 +a(g99467 +g99469 +S'of' +p99471 +tp99472 +a(g99469 +g99471 +S'joseph,' +p99473 +tp99474 +a(g99471 +g99473 +S'and' +p99475 +tp99476 +a(g99473 +g99475 +S'they' +p99477 +tp99478 +a(g99475 +g99477 +S'help' +p99479 +tp99480 +a(g99477 +g99479 +S'frame' +p99481 +tp99482 +a(g99479 +g99481 +S'the' +p99483 +tp99484 +a(g99481 +g99483 +S'virgin' +p99485 +tp99486 +a(g99483 +g99485 +S'and' +p99487 +tp99488 +a(g99485 +g99487 +S'child' +p99489 +tp99490 +a(g99487 +g99489 +S'in' +p99491 +tp99492 +a(g99489 +g99491 +S'a' +p99493 +tp99494 +a(g99491 +g99493 +S'way' +p99495 +tp99496 +a(g99493 +g99495 +S'that' +p99497 +tp99498 +a(g99495 +g99497 +S'almost' +p99499 +tp99500 +a(g99497 +g99499 +S'enthrones' +p99501 +tp99502 +a(g99499 +g99501 +S'them' +p99503 +tp99504 +a(g99501 +g99503 +S'on' +p99505 +tp99506 +a(g99503 +g99505 +S'their' +p99507 +tp99508 +a(g99505 +g99507 +S'humble' +p99509 +tp99510 +a(g99507 +g99509 +S'mount.' +p99511 +tp99512 +a(g99509 +g99511 +S'in' +p99513 +tp99514 +a(g99511 +g99513 +S'contrast,' +p99515 +tp99516 +a(g99513 +g99515 +S'the' +p99517 +tp99518 +a(g99515 +g99517 +S'luminous' +p99519 +tp99520 +a(g99517 +g99519 +S'undersides' +p99521 +tp99522 +a(g99519 +g99521 +S'of' +p99523 +tp99524 +a(g99521 +g99523 +S'the' +p99525 +tp99526 +a(g99523 +g99525 +S'clouds' +p99527 +tp99528 +a(g99525 +g99527 +S'reveal' +p99529 +tp99530 +a(g99527 +g99529 +S'the' +p99531 +tp99532 +a(g99529 +g99531 +S'influence' +p99533 +tp99534 +a(g99531 +g99533 +S'of' +p99535 +tp99536 +a(g99533 +g99535 +S"bellini's" +p99537 +tp99538 +a(g99535 +g99537 +S'treatment' +p99539 +tp99540 +a(g99537 +g99539 +S'of' +p99541 +tp99542 +a(g99539 +g99541 +S'light.' +p99543 +tp99544 +a(g99541 +g99543 +S'william' +p99545 +tp99546 +a(g99543 +g99545 +S'merritt' +p99547 +tp99548 +a(g99545 +g99547 +S'chase,' +p99549 +tp99550 +a(g99547 +g99549 +S'an' +p99551 +tp99552 +a(g99549 +g99551 +S'influential' +p99553 +tp99554 +a(g99551 +g99553 +S'art' +p99555 +tp99556 +a(g99553 +g99555 +S'teacher' +p99557 +tp99558 +a(g99555 +g99557 +S'and' +p99559 +tp99560 +a(g99557 +g99559 +S'one' +p99561 +tp99562 +a(g99559 +g99561 +S'of' +p99563 +tp99564 +a(g99561 +g99563 +S'the' +p99565 +tp99566 +a(g99563 +g99565 +S'leading' +p99567 +tp99568 +a(g99565 +g99567 +S'exponents' +p99569 +tp99570 +a(g99567 +g99569 +S'of' +p99571 +tp99572 +a(g99569 +g99571 +S'american' +p99573 +tp99574 +a(g99571 +g99573 +S'impressionism,' +p99575 +tp99576 +a(g99573 +g99575 +S'captured' +p99577 +tp99578 +a(g99575 +g99577 +S'the' +p99579 +tp99580 +a(g99577 +g99579 +S'genteel,' +p99581 +tp99582 +a(g99579 +g99581 +S'privileged' +p99583 +tp99584 +a(g99581 +g99583 +S'life' +p99585 +tp99586 +a(g99583 +g99585 +S'of' +p99587 +tp99588 +a(g99585 +g99587 +S'polite' +p99589 +tp99590 +a(g99587 +g99589 +S'society' +p99591 +tp99592 +a(g99589 +g99591 +S'in' +p99593 +tp99594 +a(g99591 +g99593 +S'the' +p99595 +tp99596 +a(g99593 +g99595 +S'1890s.' +p99597 +tp99598 +a(g99595 +g99597 +S"chase's" +p99599 +tp99600 +a(g99597 +g99599 +S'rendering' +p99601 +tp99602 +a(g99599 +g99601 +S'of' +p99603 +tp99604 +a(g99601 +g99603 +S'light,' +p99605 +tp99606 +a(g99603 +g99605 +S'his' +p99607 +tp99608 +a(g99605 +g99607 +S'facile' +p99609 +tp99610 +a(g99607 +g99609 +S'brushwork,' +p99611 +tp99612 +a(g99609 +g99611 +S'and' +p99613 +tp99614 +a(g99611 +g99613 +S'his' +p99615 +tp99616 +a(g99613 +g99615 +S'choice' +p99617 +tp99618 +a(g99615 +g99617 +S'of' +p99619 +tp99620 +a(g99617 +g99619 +S'everyday' +p99621 +tp99622 +a(g99619 +g99621 +S'subject' +p99623 +tp99624 +a(g99621 +g99623 +S'matter' +p99625 +tp99626 +a(g99623 +g99625 +S'all' +p99627 +tp99628 +a(g99625 +g99627 +S'recall' +p99629 +tp99630 +a(g99627 +g99629 +S'the' +p99631 +tp99632 +a(g99629 +g99631 +S'work' +p99633 +tp99634 +a(g99631 +g99633 +S'of' +p99635 +tp99636 +a(g99633 +g99635 +S'the' +p99637 +tp99638 +a(g99635 +g99637 +S'french' +p99639 +tp99640 +a(g99637 +g99639 +S'impressionists;' +p99641 +tp99642 +a(g99639 +g99641 +S'yet,' +p99643 +tp99644 +a(g99641 +g99643 +S'unlike' +p99645 +tp99646 +a(g99643 +g99645 +S'his' +p99647 +tp99648 +a(g99645 +g99647 +S'european' +p99649 +tp99650 +a(g99647 +g99649 +S'contemporaries,' +p99651 +tp99652 +a(g99649 +g99651 +S'the' +p99653 +tp99654 +a(g99651 +g99653 +S'artist' +p99655 +tp99656 +a(g99653 +g99655 +S'carefully' +p99657 +tp99658 +a(g99655 +g99657 +S'composed' +p99659 +tp99660 +a(g99657 +g99659 +S'his' +p99661 +tp99662 +a(g99659 +g99661 +S'paintings' +p99663 +tp99664 +a(g99661 +g99663 +S'to' +p99665 +tp99666 +a(g99663 +g99665 +S'underscore' +p99667 +tp99668 +a(g99665 +g99667 +S'abstract' +p99669 +tp99670 +a(g99667 +g99669 +S'elements.' +p99671 +tp99672 +a(g99669 +g99671 +S'simple' +p99673 +tp99674 +a(g99671 +g99673 +S'rectangular' +p99675 +tp99676 +a(g99673 +g99675 +S'patterns' +p99677 +tp99678 +a(g99675 +g99677 +S'of' +p99679 +tp99680 +a(g99677 +g99679 +S'the' +p99681 +tp99682 +a(g99679 +g99681 +S'floor,' +p99683 +tp99684 +a(g99681 +g99683 +S'wall,' +p99685 +tp99686 +a(g99683 +g99685 +S'and' +p99687 +tp99688 +a(g99685 +g99687 +S'couch' +p99689 +tp99690 +a(g99687 +g99689 +S'are' +p99691 +tp99692 +a(g99689 +g99691 +S'echoed' +p99693 +tp99694 +a(g99691 +g99693 +S'in' +p99695 +tp99696 +a(g99693 +g99695 +S'the' +p99697 +tp99698 +a(g99695 +g99697 +S'framed' +p99699 +tp99700 +a(g99697 +g99699 +S'pictures' +p99701 +tp99702 +a(g99699 +g99701 +S'and' +p99703 +tp99704 +a(g99701 +g99703 +S'wall' +p99705 +tp99706 +a(g99703 +g99705 +S'hangings' +p99707 +tp99708 +a(g99705 +g99707 +S'while' +p99709 +tp99710 +a(g99707 +g99709 +S'they' +p99711 +tp99712 +a(g99709 +g99711 +S'are' +p99713 +tp99714 +a(g99711 +g99713 +S'contrasted' +p99715 +tp99716 +a(g99713 +g99715 +S'to' +p99717 +tp99718 +a(g99715 +g99717 +S'the' +p99719 +tp99720 +a(g99717 +g99719 +S'more' +p99721 +tp99722 +a(g99719 +g99721 +S'curvilinear' +p99723 +tp99724 +a(g99721 +g99723 +S'figures,' +p99725 +tp99726 +a(g99723 +g99725 +S'chair,' +p99727 +tp99728 +a(g99725 +g99727 +S'and' +p99729 +tp99730 +a(g99727 +g99729 +S'plump' +p99731 +tp99732 +a(g99729 +g99731 +S'pillows.' +p99733 +tp99734 +a(g99731 +g99733 +S'the' +p99735 +tp99736 +a(g99733 +g99735 +S'mirror' +p99737 +tp99738 +a(g99735 +g99737 +S'framing' +p99739 +tp99740 +a(g99737 +g99739 +S'mrs.' +p99741 +tp99742 +a(g99739 +g99741 +S'chase' +p99743 +tp99744 +a(g99741 +g99743 +S'offers' +p99745 +tp99746 +a(g99743 +g99745 +S'a' +p99747 +tp99748 +a(g99745 +g99747 +S'surprising' +p99749 +tp99750 +a(g99747 +g99749 +S'reflection' +p99751 +tp99752 +a(g99749 +g99751 +S'of' +p99753 +tp99754 +a(g99751 +g99753 +S'a' +p99755 +tp99756 +a(g99753 +g99755 +S'wall' +p99757 +tp99758 +a(g99755 +g99757 +S'behind' +p99759 +tp99760 +a(g99757 +g99759 +S'the' +p99761 +tp99762 +a(g99759 +g99761 +S'viewer;' +p99763 +tp99764 +a(g99761 +g99763 +S"chase's" +p99765 +tp99766 +a(g99763 +g99765 +S'compositional' +p99767 +tp99768 +a(g99765 +g99767 +S'arrangement' +p99769 +tp99770 +a(g99767 +g99769 +S'and' +p99771 +tp99772 +a(g99769 +g99771 +S'his' +p99773 +tp99774 +a(g99771 +g99773 +S'use' +p99775 +tp99776 +a(g99773 +g99775 +S'of' +p99777 +tp99778 +a(g99775 +g99777 +S'reflected' +p99779 +tp99780 +a(g99777 +g99779 +S'imagery' +p99781 +tp99782 +a(g99779 +g99781 +S'suggest' +p99783 +tp99784 +a(g99781 +g99783 +S'that' +p99785 +tp99786 +a(g99783 +g99785 +S'he' +p99787 +tp99788 +a(g99785 +g99787 +S'may' +p99789 +tp99790 +a(g99787 +g99789 +S'have' +p99791 +tp99792 +a(g99789 +g99791 +S'been' +p99793 +tp99794 +a(g99791 +g99793 +S'paying' +p99795 +tp99796 +a(g99793 +g99795 +S'homage' +p99797 +tp99798 +a(g99795 +g99797 +S'to' +p99799 +tp99800 +a(g99797 +g99799 +S'the' +p99801 +tp99802 +a(g99799 +g99801 +S'17th–century' +p99803 +tp99804 +a(g99801 +g99803 +S'spanish' +p99805 +tp99806 +a(g99803 +g99805 +S'artist' +p99807 +tp99808 +a(g99805 +g99807 +S'velázquez,' +p99809 +tp99810 +a(g99807 +g99809 +S'whose' +p99811 +tp99812 +a(g99809 +g99811 +S'much–admired' +p99813 +tp99814 +a(g99811 +g99813 +S'painting' +p99815 +tp99816 +a(g99813 +g99815 +S'when' +p99817 +tp99818 +a(g99815 +g99817 +S'thomas' +p99819 +tp99820 +a(g99817 +g99819 +S'sully' +p99821 +tp99822 +a(g99819 +g99821 +S'painted' +p99823 +tp99824 +a(g99821 +g99823 +S'fifteen-year-old' +p99825 +tp99826 +a(g99823 +g99825 +S'eliza' +p99827 +tp99828 +a(g99825 +g99827 +S'ridgely' +p99829 +tp99830 +a(g99827 +g99829 +S'in' +p99831 +tp99832 +a(g99829 +g99831 +S'the' +p99833 +tp99834 +a(g99831 +g99833 +S'spring' +p99835 +tp99836 +a(g99833 +g99835 +S'of' +p99837 +tp99838 +a(g99835 +g99837 +S'1818,' +p99839 +tp99840 +a(g99837 +g99839 +S'he' +p99841 +tp99842 +a(g99839 +g99841 +S'was' +p99843 +tp99844 +a(g99841 +g99843 +S'widely' +p99845 +tp99846 +a(g99843 +g99845 +S'regarded' +p99847 +tp99848 +a(g99845 +g99847 +S'as' +p99849 +tp99850 +a(g99847 +g99849 +S"america's" +p99851 +tp99852 +a(g99849 +g99851 +S'leading' +p99853 +tp99854 +a(g99851 +g99853 +S'artist.' +p99855 +tp99856 +a(g99853 +g99855 +S'particularly' +p99857 +tp99858 +a(g99855 +g99857 +S'noted' +p99859 +tp99860 +a(g99857 +g99859 +S'for' +p99861 +tp99862 +a(g99859 +g99861 +S'his' +p99863 +tp99864 +a(g99861 +g99863 +S'graceful' +p99865 +tp99866 +a(g99863 +g99865 +S'images' +p99867 +tp99868 +a(g99865 +g99867 +S'of' +p99869 +tp99870 +a(g99867 +g99869 +S'women,' +p99871 +tp99872 +a(g99869 +g99871 +S'he' +p99873 +tp99874 +a(g99871 +g99873 +S'was' +p99875 +tp99876 +a(g99873 +g99875 +S'a' +p99877 +tp99878 +a(g99875 +g99877 +S'natural' +p99879 +tp99880 +a(g99877 +g99879 +S'choice' +p99881 +tp99882 +a(g99879 +g99881 +S'to' +p99883 +tp99884 +a(g99881 +g99883 +S'paint' +p99885 +tp99886 +a(g99883 +g99885 +S'this' +p99887 +tp99888 +a(g99885 +g99887 +S'baltimore' +p99889 +tp99890 +a(g99887 +g99889 +S"merchant's" +p99891 +tp99892 +a(g99889 +g99891 +S'daughter.' +p99893 +tp99894 +a(g99891 +g99893 +S'in' +p99895 +tp99896 +a(g99893 +g99895 +S'painting' +p99897 +tp99898 +a(g99895 +g99897 +S'eliza,' +p99899 +tp99900 +a(g99897 +g99899 +S'sully' +p99901 +tp99902 +a(g99899 +g99901 +S'emphasized' +p99903 +tp99904 +a(g99901 +g99903 +S'her' +p99905 +tp99906 +a(g99903 +g99905 +S'privileged' +p99907 +tp99908 +a(g99905 +g99907 +S'social' +p99909 +tp99910 +a(g99907 +g99909 +S'status' +p99911 +tp99912 +a(g99909 +g99911 +S'as' +p99913 +tp99914 +a(g99911 +g99913 +S'well' +p99915 +tp99916 +a(g99913 +g99915 +S'as' +p99917 +tp99918 +a(g99915 +g99917 +S'her' +p99919 +tp99920 +a(g99917 +g99919 +S'delicate,' +p99921 +tp99922 +a(g99919 +g99921 +S'youthful' +p99923 +tp99924 +a(g99921 +g99923 +S'charm.' +p99925 +tp99926 +a(g99923 +g99925 +S'her' +p99927 +tp99928 +a(g99925 +g99927 +S'family' +p99929 +tp99930 +a(g99927 +g99929 +S'affluence' +p99931 +tp99932 +a(g99929 +g99931 +S'is' +p99933 +tp99934 +a(g99931 +g99933 +S'indicated' +p99935 +tp99936 +a(g99933 +g99935 +S'by' +p99937 +tp99938 +a(g99935 +g99937 +S'her' +p99939 +tp99940 +a(g99937 +g99939 +S'up-to-the-minute' +p99941 +tp99942 +a(g99939 +g99941 +S'hair' +p99943 +tp99944 +a(g99941 +g99943 +S'style' +p99945 +tp99946 +a(g99943 +g99945 +S'and' +p99947 +tp99948 +a(g99945 +g99947 +S'dress,' +p99949 +tp99950 +a(g99947 +g99949 +S'inspired' +p99951 +tp99952 +a(g99949 +g99951 +S'by' +p99953 +tp99954 +a(g99951 +g99953 +S'contemporary' +p99955 +tp99956 +a(g99953 +g99955 +S'european' +p99957 +tp99958 +a(g99955 +g99957 +S'designs' +p99959 +tp99960 +a(g99957 +g99959 +S'in' +p99961 +tp99962 +a(g99959 +g99961 +S'the' +p99963 +tp99964 +a(g99961 +g99963 +S'neo-grecian' +p99965 +tp99966 +a(g99963 +g99965 +S'manner.' +p99967 +tp99968 +a(g99965 +g99967 +S'the' +p99969 +tp99970 +a(g99967 +g99969 +S'satin' +p99971 +tp99972 +a(g99969 +g99971 +S'of' +p99973 +tp99974 +a(g99971 +g99973 +S'her' +p99975 +tp99976 +a(g99973 +g99975 +S'empire' +p99977 +tp99978 +a(g99975 +g99977 +S'gown' +p99979 +tp99980 +a(g99977 +g99979 +S'is' +p99981 +tp99982 +a(g99979 +g99981 +S'carefully' +p99983 +tp99984 +a(g99981 +g99983 +S'described' +p99985 +tp99986 +a(g99983 +g99985 +S'through' +p99987 +tp99988 +a(g99985 +g99987 +S'fluid' +p99989 +tp99990 +a(g99987 +g99989 +S'brushwork' +p99991 +tp99992 +a(g99989 +g99991 +S'and' +p99993 +tp99994 +a(g99991 +g99993 +S'brilliant' +p99995 +tp99996 +a(g99993 +g99995 +S'highlights.' +p99997 +tp99998 +a(g99995 +g99997 +S'eliza,' +p99999 +tp100000 +a(g99997 +g99999 +S'as' +p100001 +tp100002 +a(g99999 +g100001 +S'a' +p100003 +tp100004 +a(g100001 +g100003 +S'young' +p100005 +tp100006 +a(g100003 +g100005 +S'lady' +p100007 +tp100008 +a(g100005 +g100007 +S'of' +p100009 +tp100010 +a(g100007 +g100009 +S'cultural' +p100011 +tp100012 +a(g100009 +g100011 +S'accomplishment,' +p100013 +tp100014 +a(g100011 +g100013 +S'posed' +p100015 +tp100016 +a(g100013 +g100015 +S'with' +p100017 +tp100018 +a(g100015 +g100017 +S'her' +p100019 +tp100020 +a(g100017 +g100019 +S'european' +p100021 +tp100022 +a(g100019 +g100021 +S'pedal' +p100023 +tp100024 +a(g100021 +g100023 +S'harp.' +p100025 +tp100026 +a(g100023 +g100025 +S'she' +p100027 +tp100028 +a(g100025 +g100027 +S'idly' +p100029 +tp100030 +a(g100027 +g100029 +S'plucks' +p100031 +tp100032 +a(g100029 +g100031 +S'the' +p100033 +tp100034 +a(g100031 +g100033 +S'harp' +p100035 +tp100036 +a(g100033 +g100035 +S'strings' +p100037 +tp100038 +a(g100035 +g100037 +S'and' +p100039 +tp100040 +a(g100037 +g100039 +S'gazes' +p100041 +tp100042 +a(g100039 +g100041 +S'dreamily' +p100043 +tp100044 +a(g100041 +g100043 +S'into' +p100045 +tp100046 +a(g100043 +g100045 +S'space,' +p100047 +tp100048 +a(g100045 +g100047 +S'as' +p100049 +tp100050 +a(g100047 +g100049 +S'if' +p100051 +tp100052 +a(g100049 +g100051 +S'musing' +p100053 +tp100054 +a(g100051 +g100053 +S'on' +p100055 +tp100056 +a(g100053 +g100055 +S'the' +p100057 +tp100058 +a(g100055 +g100057 +S'lyrical' +p100059 +tp100060 +a(g100057 +g100059 +S'chord' +p100061 +tp100062 +a(g100059 +g100061 +S'she' +p100063 +tp100064 +a(g100061 +g100063 +S'strikes.' +p100065 +tp100066 +a(g100063 +g100065 +S'a' +p100067 +tp100068 +a(g100065 +g100067 +S'fiery' +p100069 +tp100070 +a(g100067 +g100069 +S'sunset' +p100071 +tp100072 +a(g100069 +g100071 +S'heightens' +p100073 +tp100074 +a(g100071 +g100073 +S'the' +p100075 +tp100076 +a(g100073 +g100075 +S'romantic' +p100077 +tp100078 +a(g100075 +g100077 +S'reverie.' +p100079 +tp100080 +a(g100077 +g100079 +S'although' +p100081 +tp100082 +a(g100079 +g100081 +S'she' +p100083 +tp100084 +a(g100081 +g100083 +S'may' +p100085 +tp100086 +a(g100083 +g100085 +S'very' +p100087 +tp100088 +a(g100085 +g100087 +S'well' +p100089 +tp100090 +a(g100087 +g100089 +S'have' +p100091 +tp100092 +a(g100089 +g100091 +S'possessed' +p100093 +tp100094 +a(g100091 +g100093 +S'luminous' +p100095 +tp100096 +a(g100093 +g100095 +S'eyes,' +p100097 +tp100098 +a(g100095 +g100097 +S'arched' +p100099 +tp100100 +a(g100097 +g100099 +S'brows,' +p100101 +tp100102 +a(g100099 +g100101 +S'and' +p100103 +tp100104 +a(g100101 +g100103 +S'a' +p100105 +tp100106 +a(g100103 +g100105 +S'porcelain' +p100107 +tp100108 +a(g100105 +g100107 +S'complexion,' +p100109 +tp100110 +a(g100107 +g100109 +S'miss' +p100111 +tp100112 +a(g100109 +g100111 +S"ridgely's" +p100113 +tp100114 +a(g100111 +g100113 +S'figure' +p100115 +tp100116 +a(g100113 +g100115 +S'has' +p100117 +tp100118 +a(g100115 +g100117 +S'been' +p100119 +tp100120 +a(g100117 +g100119 +S'greatly' +p100121 +tp100122 +a(g100119 +g100121 +S'idealized.' +p100123 +tp100124 +a(g100121 +g100123 +S'sully,' +p100125 +tp100126 +a(g100123 +g100125 +S'for' +p100127 +tp100128 +a(g100125 +g100127 +S'the' +p100129 +tp100130 +a(g100127 +g100129 +S'sake' +p100131 +tp100132 +a(g100129 +g100131 +S'of' +p100133 +tp100134 +a(g100131 +g100133 +S'fashionable' +p100135 +tp100136 +a(g100133 +g100135 +S'elegance,' +p100137 +tp100138 +a(g100135 +g100137 +S'exaggerated' +p100139 +tp100140 +a(g100137 +g100139 +S'her' +p100141 +tp100142 +a(g100139 +g100141 +S'legs' +p100143 +tp100144 +a(g100141 +g100143 +S'to' +p100145 +tp100146 +a(g100143 +g100145 +S'half' +p100147 +tp100148 +a(g100145 +g100147 +S'again' +p100149 +tp100150 +a(g100147 +g100149 +S'as' +p100151 +tp100152 +a(g100149 +g100151 +S'long' +p100153 +tp100154 +a(g100151 +g100153 +S'as' +p100155 +tp100156 +a(g100153 +g100155 +S'any' +p100157 +tp100158 +a(g100155 +g100157 +S'conceivably' +p100159 +tp100160 +a(g100157 +g100159 +S'normal' +p100161 +tp100162 +a(g100159 +g100161 +S'proportion.' +p100163 +tp100164 +a(g100161 +g100163 +S'sully' +p100165 +tp100166 +a(g100163 +g100165 +S'once' +p100167 +tp100168 +a(g100165 +g100167 +S'wrote,' +p100169 +tp100170 +a(g100167 +g100169 +S'"from' +p100171 +tp100172 +a(g100169 +g100171 +S'long' +p100173 +tp100174 +a(g100171 +g100173 +S'experience' +p100175 +tp100176 +a(g100173 +g100175 +S'i' +p100177 +tp100178 +a(g100175 +g100177 +S'know' +p100179 +tp100180 +a(g100177 +g100179 +S'that' +p100181 +tp100182 +a(g100179 +g100181 +S'resemblance' +p100183 +tp100184 +a(g100181 +g100183 +S'in' +p100185 +tp100186 +a(g100183 +g100185 +S'a' +p100187 +tp100188 +a(g100185 +g100187 +S'portrait' +p100189 +tp100190 +a(g100187 +g100189 +S'is' +p100191 +tp100192 +a(g100189 +g100191 +S'essential;' +p100193 +tp100194 +a(g100191 +g100193 +S'but' +p100195 +tp100196 +a(g100193 +g100195 +S'no' +p100197 +tp100198 +a(g100195 +g100197 +S'fault' +p100199 +tp100200 +a(g100197 +g100199 +S'will' +p100201 +tp100202 +a(g100199 +g100201 +S'be' +p100203 +tp100204 +a(g100201 +g100203 +S'found' +p100205 +tp100206 +a(g100203 +g100205 +S'with' +p100207 +tp100208 +a(g100205 +g100207 +S'the' +p100209 +tp100210 +a(g100207 +g100209 +S'artist,' +p100211 +tp100212 +a(g100209 +g100211 +S'at' +p100213 +tp100214 +a(g100211 +g100213 +S'least' +p100215 +tp100216 +a(g100213 +g100215 +S'by' +p100217 +tp100218 +a(g100215 +g100217 +S'the' +p100219 +tp100220 +a(g100217 +g100219 +S'sitter,' +p100221 +tp100222 +a(g100219 +g100221 +S'if' +p100223 +tp100224 +a(g100221 +g100223 +S'he' +p100225 +tp100226 +a(g100223 +g100225 +S'improve' +p100227 +tp100228 +a(g100225 +g100227 +S'the' +p100229 +tp100230 +a(g100227 +g100229 +S'appearance."' +p100231 +tp100232 +a(g100229 +g100231 +S'the' +p100233 +tp100234 +a(g100231 +g100233 +S'most' +p100235 +tp100236 +a(g100233 +g100235 +S'avid' +p100237 +tp100238 +a(g100235 +g100237 +S'customers' +p100239 +tp100240 +a(g100237 +g100239 +S'for' +p100241 +tp100242 +a(g100239 +g100241 +S"canaletto's" +p100243 +tp100244 +a(g100241 +g100243 +S'views' +p100245 +tp100246 +a(g100243 +g100245 +S'of' +p100247 +tp100248 +a(g100245 +g100247 +S'venice' +p100249 +tp100250 +a(g100247 +g100249 +S'were' +p100251 +tp100252 +a(g100249 +g100251 +S'the' +p100253 +tp100254 +a(g100251 +g100253 +S'english' +p100255 +tp100256 +a(g100253 +g100255 +S'gentlemen' +p100257 +tp100258 +a(g100255 +g100257 +S'who' +p100259 +tp100260 +a(g100257 +g100259 +S'flocked' +p100261 +tp100262 +a(g100259 +g100261 +S'to' +p100263 +tp100264 +a(g100261 +g100263 +S'the' +p100265 +tp100266 +a(g100263 +g100265 +S'city' +p100267 +tp100268 +a(g100265 +g100267 +S'as' +p100269 +tp100270 +a(g100267 +g100269 +S'tourists' +p100271 +tp100272 +a(g100269 +g100271 +S'during' +p100273 +tp100274 +a(g100271 +g100273 +S'the' +p100275 +tp100276 +a(g100273 +g100275 +S'eighteenth' +p100277 +tp100278 +a(g100275 +g100277 +S'century.' +p100279 +tp100280 +a(g100277 +g100279 +S'the' +p100281 +tp100282 +a(g100279 +g100281 +S'buyer' +p100283 +tp100284 +a(g100281 +g100283 +S'of' +p100285 +tp100286 +a(g100283 +g100285 +S'the' +p100287 +tp100288 +a(g100285 +g100287 +S'it' +p100289 +tp100290 +a(g100287 +g100289 +S'was' +p100291 +tp100292 +a(g100289 +g100291 +S"canaletto's" +p100293 +tp100294 +a(g100291 +g100293 +S'loving' +p100295 +tp100296 +a(g100293 +g100295 +S'transcription,' +p100297 +tp100298 +a(g100295 +g100297 +S'detail' +p100299 +tp100300 +a(g100297 +g100299 +S'by' +p100301 +tp100302 +a(g100299 +g100301 +S'detail,' +p100303 +tp100304 +a(g100301 +g100303 +S'of' +p100305 +tp100306 +a(g100303 +g100305 +S'his' +p100307 +tp100308 +a(g100305 +g100307 +S'native' +p100309 +tp100310 +a(g100307 +g100309 +S'city' +p100311 +tp100312 +a(g100309 +g100311 +S'that' +p100313 +tp100314 +a(g100311 +g100313 +S'made' +p100315 +tp100316 +a(g100313 +g100315 +S'his' +p100317 +tp100318 +a(g100315 +g100317 +S'paintings' +p100319 +tp100320 +a(g100317 +g100319 +S'so' +p100321 +tp100322 +a(g100319 +g100321 +S'popular:' +p100323 +tp100324 +a(g100321 +g100323 +S'each' +p100325 +tp100326 +a(g100323 +g100325 +S'view' +p100327 +tp100328 +a(g100325 +g100327 +S'vividly' +p100329 +tp100330 +a(g100327 +g100329 +S'calls' +p100331 +tp100332 +a(g100329 +g100331 +S'to' +p100333 +tp100334 +a(g100331 +g100333 +S'mind' +p100335 +tp100336 +a(g100333 +g100335 +S'a' +p100337 +tp100338 +a(g100335 +g100337 +S'particular' +p100339 +tp100340 +a(g100337 +g100339 +S'time' +p100341 +tp100342 +a(g100339 +g100341 +S'and' +p100343 +tp100344 +a(g100341 +g100343 +S'place.' +p100345 +tp100346 +a(g100343 +g100345 +S'here' +p100347 +tp100348 +a(g100345 +g100347 +S'it' +p100349 +tp100350 +a(g100347 +g100349 +S'is' +p100351 +tp100352 +a(g100349 +g100351 +S'morning' +p100353 +tp100354 +a(g100351 +g100353 +S'activity' +p100355 +tp100356 +a(g100353 +g100355 +S'on' +p100357 +tp100358 +a(g100355 +g100357 +S'the' +p100359 +tp100360 +a(g100357 +g100359 +S'quay' +p100361 +tp100362 +a(g100359 +g100361 +S'near' +p100363 +tp100364 +a(g100361 +g100363 +S'st.' +p100365 +tp100366 +a(g100363 +g100365 +S"mark's" +p100367 +tp100368 +a(g100365 +g100367 +S'square' +p100369 +tp100370 +a(g100367 +g100369 +S'that' +p100371 +tp100372 +a(g100369 +g100371 +S'canaletto' +p100373 +tp100374 +a(g100371 +g100373 +S'recreated' +p100375 +tp100376 +a(g100373 +g100375 +S'with' +p100377 +tp100378 +a(g100375 +g100377 +S'such' +p100379 +tp100380 +a(g100377 +g100379 +S'specificity.' +p100381 +tp100382 +a(g100379 +g100381 +S'groups' +p100383 +tp100384 +a(g100381 +g100383 +S'of' +p100385 +tp100386 +a(g100383 +g100385 +S'people' +p100387 +tp100388 +a(g100385 +g100387 +S'idle' +p100389 +tp100390 +a(g100387 +g100389 +S'along' +p100391 +tp100392 +a(g100389 +g100391 +S'the' +p100393 +tp100394 +a(g100391 +g100393 +S'landing' +p100395 +tp100396 +a(g100393 +g100395 +S'dock' +p100397 +tp100398 +a(g100395 +g100397 +S'while' +p100399 +tp100400 +a(g100397 +g100399 +S'a' +p100401 +tp100402 +a(g100399 +g100401 +S'fishmonger' +p100403 +tp100404 +a(g100401 +g100403 +S'shows' +p100405 +tp100406 +a(g100403 +g100405 +S'the' +p100407 +tp100408 +a(g100405 +g100407 +S"day's" +p100409 +tp100410 +a(g100407 +g100409 +S'catch' +p100411 +tp100412 +a(g100409 +g100411 +S'of' +p100413 +tp100414 +a(g100411 +g100413 +S'eels' +p100415 +tp100416 +a(g100413 +g100415 +S'to' +p100417 +tp100418 +a(g100415 +g100417 +S'a' +p100419 +tp100420 +a(g100417 +g100419 +S'bewigged' +p100421 +tp100422 +a(g100419 +g100421 +S'pair' +p100423 +tp100424 +a(g100421 +g100423 +S'of' +p100425 +tp100426 +a(g100423 +g100425 +S'gentlemen.' +p100427 +tp100428 +a(g100425 +g100427 +S'gondolas' +p100429 +tp100430 +a(g100427 +g100429 +S'and' +p100431 +tp100432 +a(g100429 +g100431 +S'ocean-going' +p100433 +tp100434 +a(g100431 +g100433 +S'vessels' +p100435 +tp100436 +a(g100433 +g100435 +S'ply' +p100437 +tp100438 +a(g100435 +g100437 +S'the' +p100439 +tp100440 +a(g100437 +g100439 +S'waterways.' +p100441 +tp100442 +a(g100439 +g100441 +S'canaletto' +p100443 +tp100444 +a(g100441 +g100443 +S'conveyed' +p100445 +tp100446 +a(g100443 +g100445 +S'the' +p100447 +tp100448 +a(g100445 +g100447 +S'sunlight' +p100449 +tp100450 +a(g100447 +g100449 +S'that' +p100451 +tp100452 +a(g100449 +g100451 +S'drenches' +p100453 +tp100454 +a(g100451 +g100453 +S'venice' +p100455 +tp100456 +a(g100453 +g100455 +S'in' +p100457 +tp100458 +a(g100455 +g100457 +S'fair' +p100459 +tp100460 +a(g100457 +g100459 +S'weather,' +p100461 +tp100462 +a(g100459 +g100461 +S'sparkling' +p100463 +tp100464 +a(g100461 +g100463 +S'off' +p100465 +tp100466 +a(g100463 +g100465 +S'the' +p100467 +tp100468 +a(g100465 +g100467 +S'canals' +p100469 +tp100470 +a(g100467 +g100469 +S'and' +p100471 +tp100472 +a(g100469 +g100471 +S'revealing' +p100473 +tp100474 +a(g100471 +g100473 +S'fine-etched' +p100475 +tp100476 +a(g100473 +g100475 +S'details' +p100477 +tp100478 +a(g100475 +g100477 +S'of' +p100479 +tp100480 +a(g100477 +g100479 +S'the' +p100481 +tp100482 +a(g100479 +g100481 +S'tiles' +p100483 +tp100484 +a(g100481 +g100483 +S'on' +p100485 +tp100486 +a(g100483 +g100485 +S'distant' +p100487 +tp100488 +a(g100485 +g100487 +S'rooftops' +p100489 +tp100490 +a(g100487 +g100489 +S'or' +p100491 +tp100492 +a(g100489 +g100491 +S'the' +p100493 +tp100494 +a(g100491 +g100493 +S'bricks' +p100495 +tp100496 +a(g100493 +g100495 +S'beneath' +p100497 +tp100498 +a(g100495 +g100497 +S'peeling' +p100499 +tp100500 +a(g100497 +g100499 +S'stucco.' +p100501 +tp100502 +a(g100499 +g100501 +S'across' +p100503 +tp100504 +a(g100501 +g100503 +S'the' +p100505 +tp100506 +a(g100503 +g100505 +S'lagoon' +p100507 +tp100508 +a(g100505 +g100507 +S'toward' +p100509 +tp100510 +a(g100507 +g100509 +S'the' +p100511 +tp100512 +a(g100509 +g100511 +S'island' +p100513 +tp100514 +a(g100511 +g100513 +S'of' +p100515 +tp100516 +a(g100513 +g100515 +S'san' +p100517 +tp100518 +a(g100515 +g100517 +S'giorgio' +p100519 +tp100520 +a(g100517 +g100519 +S'appear' +p100521 +tp100522 +a(g100519 +g100521 +S'(left)' +p100523 +tp100524 +a(g100521 +g100523 +S'the' +p100525 +tp100526 +a(g100523 +g100525 +S'domed' +p100527 +tp100528 +a(g100525 +g100527 +S'church' +p100529 +tp100530 +a(g100527 +g100529 +S'of' +p100531 +tp100532 +a(g100529 +g100531 +S'the' +p100533 +tp100534 +a(g100531 +g100533 +S'redentore' +p100535 +tp100536 +a(g100533 +g100535 +S'by' +p100537 +tp100538 +a(g100535 +g100537 +S'the' +p100539 +tp100540 +a(g100537 +g100539 +S'sixteenth-century' +p100541 +tp100542 +a(g100539 +g100541 +S'architect' +p100543 +tp100544 +a(g100541 +g100543 +S'palladio,' +p100545 +tp100546 +a(g100543 +g100545 +S'the' +p100547 +tp100548 +a(g100545 +g100547 +S'double' +p100549 +tp100550 +a(g100547 +g100549 +S'domed' +p100551 +tp100552 +a(g100549 +g100551 +S'church' +p100553 +tp100554 +a(g100551 +g100553 +S'of' +p100555 +tp100556 +a(g100553 +g100555 +S'santa' +p100557 +tp100558 +a(g100555 +g100557 +S'maria' +p100559 +tp100560 +a(g100557 +g100559 +S'della' +p100561 +tp100562 +a(g100559 +g100561 +S'salute,' +p100563 +tp100564 +a(g100561 +g100563 +S'designed' +p100565 +tp100566 +a(g100563 +g100565 +S'by' +p100567 +tp100568 +a(g100565 +g100567 +S'longhena' +p100569 +tp100570 +a(g100567 +g100569 +S'in' +p100571 +tp100572 +a(g100569 +g100571 +S'the' +p100573 +tp100574 +a(g100571 +g100573 +S'seventeenth' +p100575 +tp100576 +a(g100573 +g100575 +S'century,' +p100577 +tp100578 +a(g100575 +g100577 +S'and' +p100579 +tp100580 +a(g100577 +g100579 +S'(center)' +p100581 +tp100582 +a(g100579 +g100581 +S'the' +p100583 +tp100584 +a(g100581 +g100583 +S'customs' +p100585 +tp100586 +a(g100583 +g100585 +S'house.' +p100587 +tp100588 +a(g100585 +g100587 +S'by' +p100589 +tp100590 +a(g100587 +g100589 +S'his' +p100591 +tp100592 +a(g100589 +g100591 +S'own' +p100593 +tp100594 +a(g100591 +g100593 +S'account,' +p100595 +tp100596 +a(g100593 +g100595 +S'ryder' +p100597 +tp100598 +a(g100595 +g100597 +S'was' +p100599 +tp100600 +a(g100597 +g100599 +S'so' +p100601 +tp100602 +a(g100599 +g100601 +S'enthralled' +p100603 +tp100604 +a(g100601 +g100603 +S'by' +p100605 +tp100606 +a(g100603 +g100605 +S'a' +p100607 +tp100608 +a(g100605 +g100607 +S'five-hour' +p100609 +tp100610 +a(g100607 +g100609 +S'performance' +p100611 +tp100612 +a(g100609 +g100611 +S'of' +p100613 +tp100614 +a(g100611 +g100613 +S"wagner's" +p100615 +tp100616 +a(g100613 +g100615 +S"wagner's" +p100617 +tp100618 +a(g100615 +g100617 +S'orchestration' +p100619 +tp100620 +a(g100617 +g100619 +S'engulfed' +p100621 +tp100622 +a(g100619 +g100621 +S'listeners' +p100623 +tp100624 +a(g100621 +g100623 +S'with' +p100625 +tp100626 +a(g100623 +g100625 +S'an' +p100627 +tp100628 +a(g100625 +g100627 +S'overwhelming' +p100629 +tp100630 +a(g100627 +g100629 +S'torrent' +p100631 +tp100632 +a(g100629 +g100631 +S'of' +p100633 +tp100634 +a(g100631 +g100633 +S'sound,' +p100635 +tp100636 +a(g100633 +g100635 +S'and' +p100637 +tp100638 +a(g100635 +g100637 +S"ryder's" +p100639 +tp100640 +a(g100637 +g100639 +S'composition' +p100641 +tp100642 +a(g100639 +g100641 +S'offers' +p100643 +tp100644 +a(g100641 +g100643 +S'a' +p100645 +tp100646 +a(g100643 +g100645 +S'visual' +p100647 +tp100648 +a(g100645 +g100647 +S'counterpart' +p100649 +tp100650 +a(g100647 +g100649 +S'to' +p100651 +tp100652 +a(g100649 +g100651 +S'this' +p100653 +tp100654 +a(g100651 +g100653 +S'rhapsodic' +p100655 +tp100656 +a(g100653 +g100655 +S'aesthetic' +p100657 +tp100658 +a(g100655 +g100657 +S'experience.' +p100659 +tp100660 +a(g100657 +g100659 +S'although' +p100661 +tp100662 +a(g100659 +g100661 +S"ryder's" +p100663 +tp100664 +a(g100661 +g100663 +S'technical' +p100665 +tp100666 +a(g100663 +g100665 +S'naiveté' +p100667 +tp100668 +a(g100665 +g100667 +S'and' +p100669 +tp100670 +a(g100667 +g100669 +S'his' +p100671 +tp100672 +a(g100669 +g100671 +S'unorthodox' +p100673 +tp100674 +a(g100671 +g100673 +S'methods' +p100675 +tp100676 +a(g100673 +g100675 +S'have' +p100677 +tp100678 +a(g100675 +g100677 +S'caused' +p100679 +tp100680 +a(g100677 +g100679 +S'the' +p100681 +tp100682 +a(g100679 +g100681 +S'surfaces' +p100683 +tp100684 +a(g100681 +g100683 +S'of' +p100685 +tp100686 +a(g100683 +g100685 +S'his' +p100687 +tp100688 +a(g100685 +g100687 +S'once-luminous' +p100689 +tp100690 +a(g100687 +g100689 +S'paintings' +p100691 +tp100692 +a(g100689 +g100691 +S'to' +p100693 +tp100694 +a(g100691 +g100693 +S'crack' +p100695 +tp100696 +a(g100693 +g100695 +S'and' +p100697 +tp100698 +a(g100695 +g100697 +S'darken' +p100699 +tp100700 +a(g100697 +g100699 +S'over' +p100701 +tp100702 +a(g100699 +g100701 +S'time,' +p100703 +tp100704 +a(g100701 +g100703 +S'the' +p100705 +tp100706 +a(g100703 +g100705 +S'expressive' +p100707 +tp100708 +a(g100705 +g100707 +S'power' +p100709 +tp100710 +a(g100707 +g100709 +S'and' +p100711 +tp100712 +a(g100709 +g100711 +S'emotional' +p100713 +tp100714 +a(g100711 +g100713 +S'intensity' +p100715 +tp100716 +a(g100713 +g100715 +S'of' +p100717 +tp100718 +a(g100715 +g100717 +S'his' +p100719 +tp100720 +a(g100717 +g100719 +S'art' +p100721 +tp100722 +a(g100719 +g100721 +S'endures.' +p100723 +tp100724 +a(g100721 +g100723 +S'madame' +p100725 +tp100726 +a(g100723 +g100725 +S'marguerite' +p100727 +tp100728 +a(g100725 +g100727 +S'bergeret' +p100729 +tp100730 +a(g100727 +g100729 +S'was' +p100731 +tp100732 +a(g100729 +g100731 +S'the' +p100733 +tp100734 +a(g100731 +g100733 +S'wife' +p100735 +tp100736 +a(g100733 +g100735 +S'and' +p100737 +tp100738 +a(g100735 +g100737 +S'sister' +p100739 +tp100740 +a(g100737 +g100739 +S'of' +p100741 +tp100742 +a(g100739 +g100741 +S'two' +p100743 +tp100744 +a(g100741 +g100743 +S'of' +p100745 +tp100746 +a(g100743 +g100745 +S'the' +p100747 +tp100748 +a(g100745 +g100747 +S'eighteenth' +p100749 +tp100750 +a(g100747 +g100749 +S"century's" +p100751 +tp100752 +a(g100749 +g100751 +S'most' +p100753 +tp100754 +a(g100751 +g100753 +S'ardent' +p100755 +tp100756 +a(g100753 +g100755 +S'art' +p100757 +tp100758 +a(g100755 +g100757 +S'patrons.' +p100759 +tp100760 +a(g100757 +g100759 +S'her' +p100761 +tp100762 +a(g100759 +g100761 +S'brother,' +p100763 +tp100764 +a(g100761 +g100763 +S'the' +p100765 +tp100766 +a(g100763 +g100765 +S'abbé' +p100767 +tp100768 +a(g100765 +g100767 +S'jean' +p100769 +tp100770 +a(g100767 +g100769 +S'claude' +p100771 +tp100772 +a(g100769 +g100771 +S'de' +p100773 +tp100774 +a(g100771 +g100773 +S'saint-non' +p100775 +tp100776 +a(g100773 +g100775 +S'traveled' +p100777 +tp100778 +a(g100775 +g100777 +S'to' +p100779 +tp100780 +a(g100777 +g100779 +S'italy' +p100781 +tp100782 +a(g100779 +g100781 +S'with' +p100783 +tp100784 +a(g100781 +g100783 +S'hubert' +p100785 +tp100786 +a(g100783 +g100785 +S'robert' +p100787 +tp100788 +a(g100785 +g100787 +S'and' +p100789 +tp100790 +a(g100787 +g100789 +S'jean-honoré' +p100791 +tp100792 +a(g100789 +g100791 +S'fragonard.' +p100793 +tp100794 +a(g100791 +g100793 +S'her' +p100795 +tp100796 +a(g100793 +g100795 +S'husband,' +p100797 +tp100798 +a(g100795 +g100797 +S'jacques' +p100799 +tp100800 +a(g100797 +g100799 +S'onésime' +p100801 +tp100802 +a(g100799 +g100801 +S'bergeret,' +p100803 +tp100804 +a(g100801 +g100803 +S'a' +p100805 +tp100806 +a(g100803 +g100805 +S'wealthy' +p100807 +tp100808 +a(g100805 +g100807 +S'financier,' +p100809 +tp100810 +a(g100807 +g100809 +S'became' +p100811 +tp100812 +a(g100809 +g100811 +S'a' +p100813 +tp100814 +a(g100811 +g100813 +S'celebrated' +p100815 +tp100816 +a(g100813 +g100815 +S'connoisseur' +p100817 +tp100818 +a(g100815 +g100817 +S'and' +p100819 +tp100820 +a(g100817 +g100819 +S'collector.' +p100821 +tp100822 +a(g100819 +g100821 +S'in' +p100823 +tp100824 +a(g100821 +g100823 +S'the' +p100825 +tp100826 +a(g100823 +g100825 +S'1740s' +p100827 +tp100828 +a(g100825 +g100827 +S'boucher' +p100829 +tp100830 +a(g100827 +g100829 +S'was' +p100831 +tp100832 +a(g100829 +g100831 +S'establishing' +p100833 +tp100834 +a(g100831 +g100833 +S'himself' +p100835 +tp100836 +a(g100833 +g100835 +S'as' +p100837 +tp100838 +a(g100835 +g100837 +S'a' +p100839 +tp100840 +a(g100837 +g100839 +S'mature' +p100841 +tp100842 +a(g100839 +g100841 +S'painter' +p100843 +tp100844 +a(g100841 +g100843 +S'in' +p100845 +tp100846 +a(g100843 +g100845 +S'parisian' +p100847 +tp100848 +a(g100845 +g100847 +S'art' +p100849 +tp100850 +a(g100847 +g100849 +S'circles.' +p100851 +tp100852 +a(g100849 +g100851 +S'in' +p100853 +tp100854 +a(g100851 +g100853 +S'this' +p100855 +tp100856 +a(g100853 +g100855 +S'portrait' +p100857 +tp100858 +a(g100855 +g100857 +S'he' +p100859 +tp100860 +a(g100857 +g100859 +S'defines' +p100861 +tp100862 +a(g100859 +g100861 +S'the' +p100863 +tp100864 +a(g100861 +g100863 +S'chic' +p100865 +tp100866 +a(g100863 +g100865 +S'of' +p100867 +tp100868 +a(g100865 +g100867 +S'that' +p100869 +tp100870 +a(g100867 +g100869 +S'decade:' +p100871 +tp100872 +a(g100869 +g100871 +S'madame' +p100873 +tp100874 +a(g100871 +g100873 +S'bergeret' +p100875 +tp100876 +a(g100873 +g100875 +S'is' +p100877 +tp100878 +a(g100875 +g100877 +S'placed' +p100879 +tp100880 +a(g100877 +g100879 +S'in' +p100881 +tp100882 +a(g100879 +g100881 +S'a' +p100883 +tp100884 +a(g100881 +g100883 +S'garden' +p100885 +tp100886 +a(g100883 +g100885 +S'setting,' +p100887 +tp100888 +a(g100885 +g100887 +S'dressed' +p100889 +tp100890 +a(g100887 +g100889 +S'in' +p100891 +tp100892 +a(g100889 +g100891 +S'a' +p100893 +tp100894 +a(g100891 +g100893 +S'creamy' +p100895 +tp100896 +a(g100893 +g100895 +S'silk' +p100897 +tp100898 +a(g100895 +g100897 +S'gown,' +p100899 +tp100900 +a(g100897 +g100899 +S'tight' +p100901 +tp100902 +a(g100899 +g100901 +S'in' +p100903 +tp100904 +a(g100901 +g100903 +S'the' +p100905 +tp100906 +a(g100903 +g100905 +S'bodice' +p100907 +tp100908 +a(g100905 +g100907 +S'with' +p100909 +tp100910 +a(g100907 +g100909 +S'puffed' +p100911 +tp100912 +a(g100909 +g100911 +S'sleeves' +p100913 +tp100914 +a(g100911 +g100913 +S'highlighted' +p100915 +tp100916 +a(g100913 +g100915 +S'with' +p100917 +tp100918 +a(g100915 +g100917 +S'blue' +p100919 +tp100920 +a(g100917 +g100919 +S'ribbons.' +p100921 +tp100922 +a(g100919 +g100921 +S'her' +p100923 +tp100924 +a(g100921 +g100923 +S'face' +p100925 +tp100926 +a(g100923 +g100925 +S'glows' +p100927 +tp100928 +a(g100925 +g100927 +S'with' +p100929 +tp100930 +a(g100927 +g100929 +S'youth' +p100931 +tp100932 +a(g100929 +g100931 +S'and' +p100933 +tp100934 +a(g100931 +g100933 +S'beauty' +p100935 +tp100936 +a(g100933 +g100935 +S'depicted' +p100937 +tp100938 +a(g100935 +g100937 +S'in' +p100939 +tp100940 +a(g100937 +g100939 +S'translucent' +p100941 +tp100942 +a(g100939 +g100941 +S'whites.' +p100943 +tp100944 +a(g100941 +g100943 +S'the' +p100945 +tp100946 +a(g100943 +g100945 +S'most' +p100947 +tp100948 +a(g100945 +g100947 +S'important' +p100949 +tp100950 +a(g100947 +g100949 +S'motif,' +p100951 +tp100952 +a(g100949 +g100951 +S'and' +p100953 +tp100954 +a(g100951 +g100953 +S'the' +p100955 +tp100956 +a(g100953 +g100955 +S'charm' +p100957 +tp100958 +a(g100955 +g100957 +S'of' +p100959 +tp100960 +a(g100957 +g100959 +S'the' +p100961 +tp100962 +a(g100959 +g100961 +S'composition,' +p100963 +tp100964 +a(g100961 +g100963 +S'is' +p100965 +tp100966 +a(g100963 +g100965 +S'the' +p100967 +tp100968 +a(g100965 +g100967 +S'profusion' +p100969 +tp100970 +a(g100967 +g100969 +S'of' +p100971 +tp100972 +a(g100969 +g100971 +S'roses' +p100973 +tp100974 +a(g100971 +g100973 +S'--' +p100975 +tp100976 +a(g100973 +g100975 +S'emerging' +p100977 +tp100978 +a(g100975 +g100977 +S'from' +p100979 +tp100980 +a(g100977 +g100979 +S'a' +p100981 +tp100982 +a(g100979 +g100981 +S'bronze' +p100983 +tp100984 +a(g100981 +g100983 +S'vase,' +p100985 +tp100986 +a(g100983 +g100985 +S'decorating' +p100987 +tp100988 +a(g100985 +g100987 +S'her' +p100989 +tp100990 +a(g100987 +g100989 +S'sleeves' +p100991 +tp100992 +a(g100989 +g100991 +S'and' +p100993 +tp100994 +a(g100991 +g100993 +S'hair,' +p100995 +tp100996 +a(g100993 +g100995 +S'and' +p100997 +tp100998 +a(g100995 +g100997 +S'arranged' +p100999 +tp101000 +a(g100997 +g100999 +S'across' +p101001 +tp101002 +a(g100999 +g101001 +S'the' +p101003 +tp101004 +a(g101001 +g101003 +S'bench' +p101005 +tp101006 +a(g101003 +g101005 +S'and' +p101007 +tp101008 +a(g101005 +g101007 +S'on' +p101009 +tp101010 +a(g101007 +g101009 +S'the' +p101011 +tp101012 +a(g101009 +g101011 +S'foreground' +p101013 +tp101014 +a(g101011 +g101013 +S'plane.' +p101015 +tp101016 +a(g101013 +g101015 +S'sacred' +p101017 +tp101018 +a(g101015 +g101017 +S'to' +p101019 +tp101020 +a(g101017 +g101019 +S'venus,' +p101021 +tp101022 +a(g101019 +g101021 +S'the' +p101023 +tp101024 +a(g101021 +g101023 +S'rose' +p101025 +tp101026 +a(g101023 +g101025 +S'was' +p101027 +tp101028 +a(g101025 +g101027 +S'a' +p101029 +tp101030 +a(g101027 +g101029 +S'symbol' +p101031 +tp101032 +a(g101029 +g101031 +S'well' +p101033 +tp101034 +a(g101031 +g101033 +S'suited' +p101035 +tp101036 +a(g101033 +g101035 +S'for' +p101037 +tp101038 +a(g101035 +g101037 +S'a' +p101039 +tp101040 +a(g101037 +g101039 +S'portrait' +p101041 +tp101042 +a(g101039 +g101041 +S'of' +p101043 +tp101044 +a(g101041 +g101043 +S"bergeret's" +p101045 +tp101046 +a(g101043 +g101045 +S'beloved' +p101047 +tp101048 +a(g101045 +g101047 +S'wife.' +p101049 +tp101050 +a(g101047 +g101049 +S"boucher's" +p101051 +tp101052 +a(g101049 +g101051 +S'vast' +p101053 +tp101054 +a(g101051 +g101053 +S'talents' +p101055 +tp101056 +a(g101053 +g101055 +S'were' +p101057 +tp101058 +a(g101055 +g101057 +S'quickly' +p101059 +tp101060 +a(g101057 +g101059 +S'noticed' +p101061 +tp101062 +a(g101059 +g101061 +S'by' +p101063 +tp101064 +a(g101061 +g101063 +S'the' +p101065 +tp101066 +a(g101063 +g101065 +S"king's" +p101067 +tp101068 +a(g101065 +g101067 +S'new' +p101069 +tp101070 +a(g101067 +g101069 +S'mistress' +p101071 +tp101072 +a(g101069 +g101071 +S'madame' +p101073 +tp101074 +a(g101071 +g101073 +S'de' +p101075 +tp101076 +a(g101073 +g101075 +S'pompadour.' +p101077 +tp101078 +a(g101075 +g101077 +S'boucher' +p101079 +tp101080 +a(g101077 +g101079 +S'became' +p101081 +tp101082 +a(g101079 +g101081 +S'her' +p101083 +tp101084 +a(g101081 +g101083 +S'favorite' +p101085 +tp101086 +a(g101083 +g101085 +S'painter,' +p101087 +tp101088 +a(g101085 +g101087 +S'and' +p101089 +tp101090 +a(g101087 +g101089 +S'he' +p101091 +tp101092 +a(g101089 +g101091 +S'produced' +p101093 +tp101094 +a(g101091 +g101093 +S'several' +p101095 +tp101096 +a(g101093 +g101095 +S'portraits' +p101097 +tp101098 +a(g101095 +g101097 +S'of' +p101099 +tp101100 +a(g101097 +g101099 +S'her,' +p101101 +tp101102 +a(g101099 +g101101 +S'the' +p101103 +tp101104 +a(g101101 +g101103 +S'most' +p101105 +tp101106 +a(g101103 +g101105 +S'celebrated' +p101107 +tp101108 +a(g101105 +g101107 +S'modeled' +p101109 +tp101110 +a(g101107 +g101109 +S'on' +p101111 +tp101112 +a(g101109 +g101111 +S'his' +p101113 +tp101114 +a(g101111 +g101113 +S'earlier' +p101115 +tp101116 +a(g101113 +g101115 +S'depiction' +p101117 +tp101118 +a(g101115 +g101117 +S'of' +p101119 +tp101120 +a(g101117 +g101119 +S'madame' +p101121 +tp101122 +a(g101119 +g101121 +S'bergeret.' +p101123 +tp101124 +a(g101121 +g101123 +S'françois-hubert' +p101125 +tp101126 +a(g101123 +g101125 +S'drouais' +p101127 +tp101128 +a(g101125 +g101127 +S'dated' +p101129 +tp101130 +a(g101127 +g101129 +S'his' +p101131 +tp101132 +a(g101129 +g101131 +S'life-size' +p101133 +tp101134 +a(g101131 +g101133 +S'informal' +p101135 +tp101136 +a(g101133 +g101135 +S'family' +p101137 +tp101138 +a(g101135 +g101137 +S'portrait' +p101139 +tp101140 +a(g101137 +g101139 +S'1' +p101141 +tp101142 +a(g101139 +g101141 +S'april' +p101143 +tp101144 +a(g101141 +g101143 +S'1756,' +p101145 +tp101146 +a(g101143 +g101145 +S'thereby' +p101147 +tp101148 +a(g101145 +g101147 +S'revealing' +p101149 +tp101150 +a(g101147 +g101149 +S'a' +p101151 +tp101152 +a(g101149 +g101151 +S'hidden' +p101153 +tp101154 +a(g101151 +g101153 +S'meaning.' +p101155 +tp101156 +a(g101153 +g101155 +S'in' +p101157 +tp101158 +a(g101155 +g101157 +S'the' +p101159 +tp101160 +a(g101157 +g101159 +S'medieval' +p101161 +tp101162 +a(g101159 +g101161 +S'calendar' +p101163 +tp101164 +a(g101161 +g101163 +S'new' +p101165 +tp101166 +a(g101163 +g101165 +S"year's" +p101167 +tp101168 +a(g101165 +g101167 +S'day' +p101169 +tp101170 +a(g101167 +g101169 +S'coincided' +p101171 +tp101172 +a(g101169 +g101171 +S'with' +p101173 +tp101174 +a(g101171 +g101173 +S'the' +p101175 +tp101176 +a(g101173 +g101175 +S'vernal' +p101177 +tp101178 +a(g101175 +g101177 +S'equinox' +p101179 +tp101180 +a(g101177 +g101179 +S'of' +p101181 +tp101182 +a(g101179 +g101181 +S'25' +p101183 +tp101184 +a(g101181 +g101183 +S'march,' +p101185 +tp101186 +a(g101183 +g101185 +S'and' +p101187 +tp101188 +a(g101185 +g101187 +S'1' +p101189 +tp101190 +a(g101187 +g101189 +S'april,' +p101191 +tp101192 +a(g101189 +g101191 +S'which' +p101193 +tp101194 +a(g101191 +g101193 +S'marked' +p101195 +tp101196 +a(g101193 +g101195 +S'the' +p101197 +tp101198 +a(g101195 +g101197 +S'beginning' +p101199 +tp101200 +a(g101197 +g101199 +S'of' +p101201 +tp101202 +a(g101199 +g101201 +S'spring,' +p101203 +tp101204 +a(g101201 +g101203 +S'was' +p101205 +tp101206 +a(g101203 +g101205 +S'celebrated' +p101207 +tp101208 +a(g101205 +g101207 +S'with' +p101209 +tp101210 +a(g101207 +g101209 +S'festivities' +p101211 +tp101212 +a(g101209 +g101211 +S'and' +p101213 +tp101214 +a(g101211 +g101213 +S'gift-giving.' +p101215 +tp101216 +a(g101213 +g101215 +S'after' +p101217 +tp101218 +a(g101215 +g101217 +S'the' +p101219 +tp101220 +a(g101217 +g101219 +S'gregorian' +p101221 +tp101222 +a(g101219 +g101221 +S'calendar' +p101223 +tp101224 +a(g101221 +g101223 +S'of' +p101225 +tp101226 +a(g101223 +g101225 +S'1582' +p101227 +tp101228 +a(g101225 +g101227 +S'proclaimed' +p101229 +tp101230 +a(g101227 +g101229 +S'1' +p101231 +tp101232 +a(g101229 +g101231 +S'january' +p101233 +tp101234 +a(g101231 +g101233 +S'as' +p101235 +tp101236 +a(g101233 +g101235 +S'new' +p101237 +tp101238 +a(g101235 +g101237 +S"year's" +p101239 +tp101240 +a(g101237 +g101239 +S'day,' +p101241 +tp101242 +a(g101239 +g101241 +S'the' +p101243 +tp101244 +a(g101241 +g101243 +S'tradition' +p101245 +tp101246 +a(g101243 +g101245 +S'of' +p101247 +tp101248 +a(g101245 +g101247 +S'exchanging' +p101249 +tp101250 +a(g101247 +g101249 +S'springtime' +p101251 +tp101252 +a(g101249 +g101251 +S'gifts' +p101253 +tp101254 +a(g101251 +g101253 +S'on' +p101255 +tp101256 +a(g101253 +g101255 +S'1' +p101257 +tp101258 +a(g101255 +g101257 +S'april' +p101259 +tp101260 +a(g101257 +g101259 +S'continued' +p101261 +tp101262 +a(g101259 +g101261 +S'and' +p101263 +tp101264 +a(g101261 +g101263 +S'is' +p101265 +tp101266 +a(g101263 +g101265 +S'still' +p101267 +tp101268 +a(g101265 +g101267 +S'celebrated' +p101269 +tp101270 +a(g101267 +g101269 +S'today,' +p101271 +tp101272 +a(g101269 +g101271 +S'albeit' +p101273 +tp101274 +a(g101271 +g101273 +S'in' +p101275 +tp101276 +a(g101273 +g101275 +S'a' +p101277 +tp101278 +a(g101275 +g101277 +S'rather' +p101279 +tp101280 +a(g101277 +g101279 +S'distilled' +p101281 +tp101282 +a(g101279 +g101281 +S'form' +p101283 +tp101284 +a(g101281 +g101283 +S'as' +p101285 +tp101286 +a(g101283 +g101285 +S'april' +p101287 +tp101288 +a(g101285 +g101287 +S"fool's" +p101289 +tp101290 +a(g101287 +g101289 +S'day.' +p101291 +tp101292 +a(g101289 +g101291 +S'the' +p101293 +tp101294 +a(g101291 +g101293 +S'springtime' +p101295 +tp101296 +a(g101293 +g101295 +S'exchange' +p101297 +tp101298 +a(g101295 +g101297 +S'of' +p101299 +tp101300 +a(g101297 +g101299 +S'gifts' +p101301 +tp101302 +a(g101299 +g101301 +S'is' +p101303 +tp101304 +a(g101301 +g101303 +S'elaborately' +p101305 +tp101306 +a(g101303 +g101305 +S'displayed' +p101307 +tp101308 +a(g101305 +g101307 +S'in' +p101309 +tp101310 +a(g101307 +g101309 +S"drouais'" +p101311 +tp101312 +a(g101309 +g101311 +S'work:' +p101313 +tp101314 +a(g101311 +g101313 +S'the' +p101315 +tp101316 +a(g101313 +g101315 +S'little' +p101317 +tp101318 +a(g101315 +g101317 +S'girl' +p101319 +tp101320 +a(g101317 +g101319 +S'presents' +p101321 +tp101322 +a(g101319 +g101321 +S'flowers' +p101323 +tp101324 +a(g101321 +g101323 +S'to' +p101325 +tp101326 +a(g101323 +g101325 +S'her' +p101327 +tp101328 +a(g101325 +g101327 +S'mother,' +p101329 +tp101330 +a(g101327 +g101329 +S'the' +p101331 +tp101332 +a(g101329 +g101331 +S'husband' +p101333 +tp101334 +a(g101331 +g101333 +S'reads' +p101335 +tp101336 +a(g101333 +g101335 +S'a' +p101337 +tp101338 +a(g101335 +g101337 +S'letter' +p101339 +tp101340 +a(g101337 +g101339 +S'or' +p101341 +tp101342 +a(g101339 +g101341 +S'sonnet' +p101343 +tp101344 +a(g101341 +g101343 +S'to' +p101345 +tp101346 +a(g101343 +g101345 +S'his' +p101347 +tp101348 +a(g101345 +g101347 +S'wife,' +p101349 +tp101350 +a(g101347 +g101349 +S'and' +p101351 +tp101352 +a(g101349 +g101351 +S'the' +p101353 +tp101354 +a(g101351 +g101353 +S'wife,' +p101355 +tp101356 +a(g101353 +g101355 +S'while' +p101357 +tp101358 +a(g101355 +g101357 +S'arranging' +p101359 +tp101360 +a(g101357 +g101359 +S'flowers' +p101361 +tp101362 +a(g101359 +g101361 +S'in' +p101363 +tp101364 +a(g101361 +g101363 +S'her' +p101365 +tp101366 +a(g101363 +g101365 +S"daughter's" +p101367 +tp101368 +a(g101365 +g101367 +S'hair,' +p101369 +tp101370 +a(g101367 +g101369 +S'also' +p101371 +tp101372 +a(g101369 +g101371 +S'points' +p101373 +tp101374 +a(g101371 +g101373 +S'to' +p101375 +tp101376 +a(g101373 +g101375 +S'their' +p101377 +tp101378 +a(g101375 +g101377 +S'child' +p101379 +tp101380 +a(g101377 +g101379 +S'as' +p101381 +tp101382 +a(g101379 +g101381 +S'a' +p101383 +tp101384 +a(g101381 +g101383 +S'symbolic' +p101385 +tp101386 +a(g101383 +g101385 +S'gift' +p101387 +tp101388 +a(g101385 +g101387 +S'to' +p101389 +tp101390 +a(g101387 +g101389 +S'her' +p101391 +tp101392 +a(g101389 +g101391 +S'husband.' +p101393 +tp101394 +a(g101391 +g101393 +S'drouais' +p101395 +tp101396 +a(g101393 +g101395 +S'does' +p101397 +tp101398 +a(g101395 +g101397 +S'not' +p101399 +tp101400 +a(g101397 +g101399 +S'provide' +p101401 +tp101402 +a(g101399 +g101401 +S'enough' +p101403 +tp101404 +a(g101401 +g101403 +S'specific' +p101405 +tp101406 +a(g101403 +g101405 +S'information' +p101407 +tp101408 +a(g101405 +g101407 +S'for' +p101409 +tp101410 +a(g101407 +g101409 +S'us' +p101411 +tp101412 +a(g101409 +g101411 +S'to' +p101413 +tp101414 +a(g101411 +g101413 +S'identify' +p101415 +tp101416 +a(g101413 +g101415 +S'his' +p101417 +tp101418 +a(g101415 +g101417 +S'sitters,' +p101419 +tp101420 +a(g101417 +g101419 +S'but' +p101421 +tp101422 +a(g101419 +g101421 +S'he' +p101423 +tp101424 +a(g101421 +g101423 +S'does' +p101425 +tp101426 +a(g101423 +g101425 +S'give' +p101427 +tp101428 +a(g101425 +g101427 +S'an' +p101429 +tp101430 +a(g101427 +g101429 +S'intimate' +p101431 +tp101432 +a(g101429 +g101431 +S'view' +p101433 +tp101434 +a(g101431 +g101433 +S'into' +p101435 +tp101436 +a(g101433 +g101435 +S'the' +p101437 +tp101438 +a(g101435 +g101437 +S'boudoir.' +p101439 +tp101440 +a(g101437 +g101439 +S'neither' +p101441 +tp101442 +a(g101439 +g101441 +S'husband' +p101443 +tp101444 +a(g101441 +g101443 +S'nor' +p101445 +tp101446 +a(g101443 +g101445 +S'wife' +p101447 +tp101448 +a(g101445 +g101447 +S'are' +p101449 +tp101450 +a(g101447 +g101449 +S'fully' +p101451 +tp101452 +a(g101449 +g101451 +S'dressed;' +p101453 +tp101454 +a(g101451 +g101453 +S'she' +p101455 +tp101456 +a(g101453 +g101455 +S'wears' +p101457 +tp101458 +a(g101455 +g101457 +S'a' +p101459 +tp101460 +a(g101457 +g101459 +S'smock' +p101461 +tp101462 +a(g101459 +g101461 +S'to' +p101463 +tp101464 +a(g101461 +g101463 +S'prevent' +p101465 +tp101466 +a(g101463 +g101465 +S'powder' +p101467 +tp101468 +a(g101465 +g101467 +S'from' +p101469 +tp101470 +a(g101467 +g101469 +S'spoiling' +p101471 +tp101472 +a(g101469 +g101471 +S'her' +p101473 +tp101474 +a(g101471 +g101473 +S'dress,' +p101475 +tp101476 +a(g101473 +g101475 +S'and' +p101477 +tp101478 +a(g101475 +g101477 +S'he' +p101479 +tp101480 +a(g101477 +g101479 +S'wears' +p101481 +tp101482 +a(g101479 +g101481 +S'a' +p101483 +tp101484 +a(g101481 +g101483 +S'silken' +p101485 +tp101486 +a(g101483 +g101485 +S'housecoat' +p101487 +tp101488 +a(g101485 +g101487 +S'embroidered' +p101489 +tp101490 +a(g101487 +g101489 +S'with' +p101491 +tp101492 +a(g101489 +g101491 +S'fashionable' +p101493 +tp101494 +a(g101491 +g101493 +S'oriental' +p101495 +tp101496 +a(g101493 +g101495 +S'motifs.' +p101497 +tp101498 +a(g101495 +g101497 +S'like' +p101499 +tp101500 +a(g101497 +g101499 +S'his' +p101501 +tp101502 +a(g101499 +g101501 +S'master' +p101503 +tp101504 +a(g101501 +g101503 +S'boucher,' +p101505 +tp101506 +a(g101503 +g101505 +S'drouais' +p101507 +tp101508 +a(g101505 +g101507 +S'relishes' +p101509 +tp101510 +a(g101507 +g101509 +S'in' +p101511 +tp101512 +a(g101509 +g101511 +S'the' +p101513 +tp101514 +a(g101511 +g101513 +S'display' +p101515 +tp101516 +a(g101513 +g101515 +S'of' +p101517 +tp101518 +a(g101515 +g101517 +S'contrasting' +p101519 +tp101520 +a(g101517 +g101519 +S'tones' +p101521 +tp101522 +a(g101519 +g101521 +S'and' +p101523 +tp101524 +a(g101521 +g101523 +S'sumptuous' +p101525 +tp101526 +a(g101523 +g101525 +S'colors.' +p101527 +tp101528 +a(g101525 +g101527 +S'boys' +p101529 +tp101530 +a(g101527 +g101529 +S'are' +p101531 +tp101532 +a(g101529 +g101531 +S'shown' +p101533 +tp101534 +a(g101531 +g101533 +S'romping' +p101535 +tp101536 +a(g101533 +g101535 +S'at' +p101537 +tp101538 +a(g101535 +g101537 +S'the' +p101539 +tp101540 +a(g101537 +g101539 +S'edge' +p101541 +tp101542 +a(g101539 +g101541 +S'of' +p101543 +tp101544 +a(g101541 +g101543 +S'a' +p101545 +tp101546 +a(g101543 +g101545 +S'forest' +p101547 +tp101548 +a(g101545 +g101547 +S'park' +p101549 +tp101550 +a(g101547 +g101549 +S'in' +p101551 +tp101552 +a(g101549 +g101551 +S'a' +p101553 +tp101554 +a(g101551 +g101553 +S'game' +p101555 +tp101556 +a(g101553 +g101555 +S'of' +p101557 +tp101558 +a(g101555 +g101557 +S'horse' +p101559 +tp101560 +a(g101557 +g101559 +S'and' +p101561 +tp101562 +a(g101559 +g101561 +S'rider,' +p101563 +tp101564 +a(g101561 +g101563 +S'their' +p101565 +tp101566 +a(g101563 +g101565 +S'disheveled' +p101567 +tp101568 +a(g101565 +g101567 +S'exuberance' +p101569 +tp101570 +a(g101567 +g101569 +S'in' +p101571 +tp101572 +a(g101569 +g101571 +S'contrast' +p101573 +tp101574 +a(g101571 +g101573 +S'to' +p101575 +tp101576 +a(g101573 +g101575 +S'the' +p101577 +tp101578 +a(g101575 +g101577 +S'rather' +p101579 +tp101580 +a(g101577 +g101579 +S'prim' +p101581 +tp101582 +a(g101579 +g101581 +S'couple' +p101583 +tp101584 +a(g101581 +g101583 +S'nearby.' +p101585 +tp101586 +a(g101583 +g101585 +S'these' +p101587 +tp101588 +a(g101585 +g101587 +S'boys' +p101589 +tp101590 +a(g101587 +g101589 +S'benefit' +p101591 +tp101592 +a(g101589 +g101591 +S'from' +p101593 +tp101594 +a(g101591 +g101593 +S'a' +p101595 +tp101596 +a(g101593 +g101595 +S'new' +p101597 +tp101598 +a(g101595 +g101597 +S'attitude' +p101599 +tp101600 +a(g101597 +g101599 +S'toward' +p101601 +tp101602 +a(g101599 +g101601 +S'childhood,' +p101603 +tp101604 +a(g101601 +g101603 +S'influenced' +p101605 +tp101606 +a(g101603 +g101605 +S'by' +p101607 +tp101608 +a(g101605 +g101607 +S'rousseau,' +p101609 +tp101610 +a(g101607 +g101609 +S'who' +p101611 +tp101612 +a(g101609 +g101611 +S'argued' +p101613 +tp101614 +a(g101611 +g101613 +S'that' +p101615 +tp101616 +a(g101613 +g101615 +S'children' +p101617 +tp101618 +a(g101615 +g101617 +S'should' +p101619 +tp101620 +a(g101617 +g101619 +S'be' +p101621 +tp101622 +a(g101619 +g101621 +S'left' +p101623 +tp101624 +a(g101621 +g101623 +S'to' +p101625 +tp101626 +a(g101623 +g101625 +S'follow' +p101627 +tp101628 +a(g101625 +g101627 +S'their' +p101629 +tp101630 +a(g101627 +g101629 +S'natural' +p101631 +tp101632 +a(g101629 +g101631 +S'instincts.' +p101633 +tp101634 +a(g101631 +g101633 +S'in' +p101635 +tp101636 +a(g101633 +g101635 +S'this' +p101637 +tp101638 +a(g101635 +g101637 +S'tender' +p101639 +tp101640 +a(g101637 +g101639 +S'scene' +p101641 +tp101642 +a(g101639 +g101641 +S'may' +p101643 +tp101644 +a(g101641 +g101643 +S'illustrate' +p101645 +tp101646 +a(g101643 +g101645 +S'an' +p101647 +tp101648 +a(g101645 +g101647 +S'episode' +p101649 +tp101650 +a(g101647 +g101649 +S'from' +p101651 +tp101652 +a(g101649 +g101651 +S'a' +p101653 +tp101654 +a(g101651 +g101653 +S'sentimental' +p101655 +tp101656 +a(g101653 +g101655 +S'novel,' +p101657 +tp101658 +a(g101655 +g101657 +S'like' +p101659 +tp101660 +a(g101657 +g101659 +S'jacques' +p101661 +tp101662 +a(g101659 +g101661 +S'onésime' +p101663 +tp101664 +a(g101661 +g101663 +S'de' +p101665 +tp101666 +a(g101663 +g101665 +S'bergeret,' +p101667 +tp101668 +a(g101665 +g101667 +S'lalive' +p101669 +tp101670 +a(g101667 +g101669 +S'de' +p101671 +tp101672 +a(g101669 +g101671 +S'jully' +p101673 +tp101674 +a(g101671 +g101673 +S'(1725-79)' +p101675 +tp101676 +a(g101673 +g101675 +S'was' +p101677 +tp101678 +a(g101675 +g101677 +S'an' +p101679 +tp101680 +a(g101677 +g101679 +S'influential' +p101681 +tp101682 +a(g101679 +g101681 +S'collector,' +p101683 +tp101684 +a(g101681 +g101683 +S'amateur,' +p101685 +tp101686 +a(g101683 +g101685 +S'and' +p101687 +tp101688 +a(g101685 +g101687 +S'painter' +p101689 +tp101690 +a(g101687 +g101689 +S'in' +p101691 +tp101692 +a(g101689 +g101691 +S'the' +p101693 +tp101694 +a(g101691 +g101693 +S'parisian' +p101695 +tp101696 +a(g101693 +g101695 +S'art' +p101697 +tp101698 +a(g101695 +g101697 +S'world' +p101699 +tp101700 +a(g101697 +g101699 +S'of' +p101701 +tp101702 +a(g101699 +g101701 +S'the' +p101703 +tp101704 +a(g101701 +g101703 +S'1750s' +p101705 +tp101706 +a(g101703 +g101705 +S'and' +p101707 +tp101708 +a(g101705 +g101707 +S'1760s.' +p101709 +tp101710 +a(g101707 +g101709 +S'one' +p101711 +tp101712 +a(g101709 +g101711 +S'of' +p101713 +tp101714 +a(g101711 +g101713 +S'jean-baptiste' +p101715 +tp101716 +a(g101713 +g101715 +S"greuze's" +p101717 +tp101718 +a(g101715 +g101717 +S'first' +p101719 +tp101720 +a(g101717 +g101719 +S'patrons,' +p101721 +tp101722 +a(g101719 +g101721 +S'lalive' +p101723 +tp101724 +a(g101721 +g101723 +S'is' +p101725 +tp101726 +a(g101723 +g101725 +S'depicted' +p101727 +tp101728 +a(g101725 +g101727 +S'seated' +p101729 +tp101730 +a(g101727 +g101729 +S'on' +p101731 +tp101732 +a(g101729 +g101731 +S'a' +p101733 +tp101734 +a(g101731 +g101733 +S'chair' +p101735 +tp101736 +a(g101733 +g101735 +S'he' +p101737 +tp101738 +a(g101735 +g101737 +S'had' +p101739 +tp101740 +a(g101737 +g101739 +S'commissioned' +p101741 +tp101742 +a(g101739 +g101741 +S'as' +p101743 +tp101744 +a(g101741 +g101743 +S'part' +p101745 +tp101746 +a(g101743 +g101745 +S'of' +p101747 +tp101748 +a(g101745 +g101747 +S'a' +p101749 +tp101750 +a(g101747 +g101749 +S'suite' +p101751 +tp101752 +a(g101749 +g101751 +S'of' +p101753 +tp101754 +a(g101751 +g101753 +S'furniture' +p101755 +tp101756 +a(g101753 +g101755 +S'greuze' +p101757 +tp101758 +a(g101755 +g101757 +S'placed' +p101759 +tp101760 +a(g101757 +g101759 +S'lalive' +p101761 +tp101762 +a(g101759 +g101761 +S'in' +p101763 +tp101764 +a(g101761 +g101763 +S'the' +p101765 +tp101766 +a(g101763 +g101765 +S'center' +p101767 +tp101768 +a(g101765 +g101767 +S'of' +p101769 +tp101770 +a(g101767 +g101769 +S'the' +p101771 +tp101772 +a(g101769 +g101771 +S'canvas;' +p101773 +tp101774 +a(g101771 +g101773 +S'his' +p101775 +tp101776 +a(g101773 +g101775 +S'torso' +p101777 +tp101778 +a(g101775 +g101777 +S'twists' +p101779 +tp101780 +a(g101777 +g101779 +S'toward' +p101781 +tp101782 +a(g101779 +g101781 +S'the' +p101783 +tp101784 +a(g101781 +g101783 +S'harp,' +p101785 +tp101786 +a(g101783 +g101785 +S'as' +p101787 +tp101788 +a(g101785 +g101787 +S'his' +p101789 +tp101790 +a(g101787 +g101789 +S'head,' +p101791 +tp101792 +a(g101789 +g101791 +S'shown' +p101793 +tp101794 +a(g101791 +g101793 +S'in' +p101795 +tp101796 +a(g101793 +g101795 +S'three-quarter' +p101797 +tp101798 +a(g101795 +g101797 +S'pose,' +p101799 +tp101800 +a(g101797 +g101799 +S'turns' +p101801 +tp101802 +a(g101799 +g101801 +S'to' +p101803 +tp101804 +a(g101801 +g101803 +S'the' +p101805 +tp101806 +a(g101803 +g101805 +S'viewer.' +p101807 +tp101808 +a(g101805 +g101807 +S'he' +p101809 +tp101810 +a(g101807 +g101809 +S'is' +p101811 +tp101812 +a(g101809 +g101811 +S'casually' +p101813 +tp101814 +a(g101811 +g101813 +S'attired' +p101815 +tp101816 +a(g101813 +g101815 +S'in' +p101817 +tp101818 +a(g101815 +g101817 +S'a' +p101819 +tp101820 +a(g101817 +g101819 +S'white' +p101821 +tp101822 +a(g101819 +g101821 +S'silk' +p101823 +tp101824 +a(g101821 +g101823 +S'dressing' +p101825 +tp101826 +a(g101823 +g101825 +S'gown,' +p101827 +tp101828 +a(g101825 +g101827 +S'a' +p101829 +tp101830 +a(g101827 +g101829 +S'scarf' +p101831 +tp101832 +a(g101829 +g101831 +S'around' +p101833 +tp101834 +a(g101831 +g101833 +S'his' +p101835 +tp101836 +a(g101833 +g101835 +S'neck,' +p101837 +tp101838 +a(g101835 +g101837 +S'and' +p101839 +tp101840 +a(g101837 +g101839 +S'his' +p101841 +tp101842 +a(g101839 +g101841 +S'britches' +p101843 +tp101844 +a(g101841 +g101843 +S'unbuttoned' +p101845 +tp101846 +a(g101843 +g101845 +S'at' +p101847 +tp101848 +a(g101845 +g101847 +S'the' +p101849 +tp101850 +a(g101847 +g101849 +S'knees.' +p101851 +tp101852 +a(g101849 +g101851 +S'the' +p101853 +tp101854 +a(g101851 +g101853 +S'captivating' +p101855 +tp101856 +a(g101853 +g101855 +S'expression,' +p101857 +tp101858 +a(g101855 +g101857 +S'a' +p101859 +tp101860 +a(g101857 +g101859 +S'faint' +p101861 +tp101862 +a(g101859 +g101861 +S'smile' +p101863 +tp101864 +a(g101861 +g101863 +S'and' +p101865 +tp101866 +a(g101863 +g101865 +S'slightly' +p101867 +tp101868 +a(g101865 +g101867 +S'raised' +p101869 +tp101870 +a(g101867 +g101869 +S'eyebrows,' +p101871 +tp101872 +a(g101869 +g101871 +S'further' +p101873 +tp101874 +a(g101871 +g101873 +S'enhances' +p101875 +tp101876 +a(g101873 +g101875 +S'the' +p101877 +tp101878 +a(g101875 +g101877 +S'contrived' +p101879 +tp101880 +a(g101877 +g101879 +S'informality' +p101881 +tp101882 +a(g101879 +g101881 +S'of' +p101883 +tp101884 +a(g101881 +g101883 +S'the' +p101885 +tp101886 +a(g101883 +g101885 +S'portrait.' +p101887 +tp101888 +a(g101885 +g101887 +S'the' +p101889 +tp101890 +a(g101887 +g101889 +S'emphasis' +p101891 +tp101892 +a(g101889 +g101891 +S'on' +p101893 +tp101894 +a(g101891 +g101893 +S'the' +p101895 +tp101896 +a(g101893 +g101895 +S'face' +p101897 +tp101898 +a(g101895 +g101897 +S'and' +p101899 +tp101900 +a(g101897 +g101899 +S'hands' +p101901 +tp101902 +a(g101899 +g101901 +S'counterbalances' +p101903 +tp101904 +a(g101901 +g101903 +S'the' +p101905 +tp101906 +a(g101903 +g101905 +S'rigid' +p101907 +tp101908 +a(g101905 +g101907 +S'series' +p101909 +tp101910 +a(g101907 +g101909 +S'of' +p101911 +tp101912 +a(g101909 +g101911 +S'parallel' +p101913 +tp101914 +a(g101911 +g101913 +S'vertical' +p101915 +tp101916 +a(g101913 +g101915 +S'lines' +p101917 +tp101918 +a(g101915 +g101917 +S'that' +p101919 +tp101920 +a(g101917 +g101919 +S'define' +p101921 +tp101922 +a(g101919 +g101921 +S'the' +p101923 +tp101924 +a(g101921 +g101923 +S'space.' +p101925 +tp101926 +a(g101923 +g101925 +S'the' +p101927 +tp101928 +a(g101925 +g101927 +S'prominent' +p101929 +tp101930 +a(g101927 +g101929 +S'display' +p101931 +tp101932 +a(g101929 +g101931 +S'of' +p101933 +tp101934 +a(g101931 +g101933 +S'the' +p101935 +tp101936 +a(g101933 +g101935 +S'harp,' +p101937 +tp101938 +a(g101935 +g101937 +S'accompanied' +p101939 +tp101940 +a(g101937 +g101939 +S'by' +p101941 +tp101942 +a(g101939 +g101941 +S'the' +p101943 +tp101944 +a(g101941 +g101943 +S'furniture' +p101945 +tp101946 +a(g101943 +g101945 +S'with' +p101947 +tp101948 +a(g101945 +g101947 +S'the' +p101949 +tp101950 +a(g101947 +g101949 +S'portfolio' +p101951 +tp101952 +a(g101949 +g101951 +S'of' +p101953 +tp101954 +a(g101951 +g101953 +S'drawings' +p101955 +tp101956 +a(g101953 +g101955 +S'and' +p101957 +tp101958 +a(g101955 +g101957 +S'statue' +p101959 +tp101960 +a(g101957 +g101959 +S'of' +p101961 +tp101962 +a(g101959 +g101961 +S'the' +p101963 +tp101964 +a(g101961 +g101963 +S'erythrean' +p101965 +tp101966 +a(g101963 +g101965 +S'sibyl' +p101967 +tp101968 +a(g101965 +g101967 +S'in' +p101969 +tp101970 +a(g101967 +g101969 +S'the' +p101971 +tp101972 +a(g101969 +g101971 +S'background,' +p101973 +tp101974 +a(g101971 +g101973 +S'suggests' +p101975 +tp101976 +a(g101973 +g101975 +S'that' +p101977 +tp101978 +a(g101975 +g101977 +S'greuze' +p101979 +tp101980 +a(g101977 +g101979 +S'has' +p101981 +tp101982 +a(g101979 +g101981 +S'depicted' +p101983 +tp101984 +a(g101981 +g101983 +S'lalive' +p101985 +tp101986 +a(g101983 +g101985 +S'as' +p101987 +tp101988 +a(g101985 +g101987 +S'a' +p101989 +tp101990 +a(g101987 +g101989 +S'new' +p101991 +tp101992 +a(g101989 +g101991 +S'apollo,' +p101993 +tp101994 +a(g101991 +g101993 +S'alluding' +p101995 +tp101996 +a(g101993 +g101995 +S'to' +p101997 +tp101998 +a(g101995 +g101997 +S'his' +p101999 +tp102000 +a(g101997 +g101999 +S'patronage' +p102001 +tp102002 +a(g101999 +g102001 +S'of' +p102003 +tp102004 +a(g102001 +g102003 +S'the' +p102005 +tp102006 +a(g102003 +g102005 +S'arts.' +p102007 +tp102008 +a(g102005 +g102007 +S'antoine' +p102009 +tp102010 +a(g102007 +g102009 +S"watteau's" +p102011 +tp102012 +a(g102009 +g102011 +S'the' +p102013 +tp102014 +a(g102011 +g102013 +S'garland' +p102015 +tp102016 +a(g102013 +g102015 +S'of' +p102017 +tp102018 +a(g102015 +g102017 +S'flowers' +p102019 +tp102020 +a(g102017 +g102019 +S'in' +p102021 +tp102022 +a(g102019 +g102021 +S'the' +p102023 +tp102024 +a(g102021 +g102023 +S'foreground' +p102025 +tp102026 +a(g102023 +g102025 +S'steps' +p102027 +tp102028 +a(g102025 +g102027 +S'suggests' +p102029 +tp102030 +a(g102027 +g102029 +S'the' +p102031 +tp102032 +a(g102029 +g102031 +S'actors' +p102033 +tp102034 +a(g102031 +g102033 +S'are' +p102035 +tp102036 +a(g102033 +g102035 +S'taking' +p102037 +tp102038 +a(g102035 +g102037 +S'a' +p102039 +tp102040 +a(g102037 +g102039 +S'bow' +p102041 +tp102042 +a(g102039 +g102041 +S'after' +p102043 +tp102044 +a(g102041 +g102043 +S'their' +p102045 +tp102046 +a(g102043 +g102045 +S'performance;' +p102047 +tp102048 +a(g102045 +g102047 +S'however' +p102049 +tp102050 +a(g102047 +g102049 +S'the' +p102051 +tp102052 +a(g102049 +g102051 +S'members' +p102053 +tp102054 +a(g102051 +g102053 +S'united' +p102055 +tp102056 +a(g102053 +g102055 +S'here' +p102057 +tp102058 +a(g102055 +g102057 +S'were' +p102059 +tp102060 +a(g102057 +g102059 +S'probably' +p102061 +tp102062 +a(g102059 +g102061 +S"watteau's" +p102063 +tp102064 +a(g102061 +g102063 +S'own' +p102065 +tp102066 +a(g102063 +g102065 +S'invention,' +p102067 +tp102068 +a(g102065 +g102067 +S'and' +p102069 +tp102070 +a(g102067 +g102069 +S'connected' +p102071 +tp102072 +a(g102069 +g102071 +S'to' +p102073 +tp102074 +a(g102071 +g102073 +S'a' +p102075 +tp102076 +a(g102073 +g102075 +S'specific' +p102077 +tp102078 +a(g102075 +g102077 +S'play' +p102079 +tp102080 +a(g102077 +g102079 +S'or' +p102081 +tp102082 +a(g102079 +g102081 +S'troupe.' +p102083 +tp102084 +a(g102081 +g102083 +S'this' +p102085 +tp102086 +a(g102083 +g102085 +S'tension' +p102087 +tp102088 +a(g102085 +g102087 +S'between' +p102089 +tp102090 +a(g102087 +g102089 +S'illusion' +p102091 +tp102092 +a(g102089 +g102091 +S'and' +p102093 +tp102094 +a(g102091 +g102093 +S'reality' +p102095 +tp102096 +a(g102093 +g102095 +S'is' +p102097 +tp102098 +a(g102095 +g102097 +S'typical' +p102099 +tp102100 +a(g102097 +g102099 +S'of' +p102101 +tp102102 +a(g102099 +g102101 +S'watteau' +p102103 +tp102104 +a(g102101 +g102103 +S'and' +p102105 +tp102106 +a(g102103 +g102105 +S'influenced' +p102107 +tp102108 +a(g102105 +g102107 +S'a' +p102109 +tp102110 +a(g102107 +g102109 +S'generation' +p102111 +tp102112 +a(g102109 +g102111 +S'of' +p102113 +tp102114 +a(g102111 +g102113 +S'his' +p102115 +tp102116 +a(g102113 +g102115 +S'followers' +p102117 +tp102118 +a(g102115 +g102117 +S'to' +p102119 +tp102120 +a(g102117 +g102119 +S'explore' +p102121 +tp102122 +a(g102119 +g102121 +S'the' +p102123 +tp102124 +a(g102121 +g102123 +S'relationships' +p102125 +tp102126 +a(g102123 +g102125 +S'between' +p102127 +tp102128 +a(g102125 +g102127 +S'painting' +p102129 +tp102130 +a(g102127 +g102129 +S'and' +p102131 +tp102132 +a(g102129 +g102131 +S'theater.' +p102133 +tp102134 +a(g102131 +g102133 +S'louis' +p102135 +tp102136 +a(g102133 +g102135 +S'le' +p102137 +tp102138 +a(g102135 +g102137 +S'nain' +p102139 +tp102140 +a(g102137 +g102139 +S'lived' +p102141 +tp102142 +a(g102139 +g102141 +S'in' +p102143 +tp102144 +a(g102141 +g102143 +S'a' +p102145 +tp102146 +a(g102143 +g102145 +S'region' +p102147 +tp102148 +a(g102145 +g102147 +S'to' +p102149 +tp102150 +a(g102147 +g102149 +S'the' +p102151 +tp102152 +a(g102149 +g102151 +S'north' +p102153 +tp102154 +a(g102151 +g102153 +S'of' +p102155 +tp102156 +a(g102153 +g102155 +S'paris' +p102157 +tp102158 +a(g102155 +g102157 +S'known' +p102159 +tp102160 +a(g102157 +g102159 +S'for' +p102161 +tp102162 +a(g102159 +g102161 +S'its' +p102163 +tp102164 +a(g102161 +g102163 +S'open' +p102165 +tp102166 +a(g102163 +g102165 +S'fields' +p102167 +tp102168 +a(g102165 +g102167 +S'that' +p102169 +tp102170 +a(g102167 +g102169 +S'produced' +p102171 +tp102172 +a(g102169 +g102171 +S'cereals' +p102173 +tp102174 +a(g102171 +g102173 +S'and' +p102175 +tp102176 +a(g102173 +g102175 +S'grain.' +p102177 +tp102178 +a(g102175 +g102177 +S'although' +p102179 +tp102180 +a(g102177 +g102179 +S'he' +p102181 +tp102182 +a(g102179 +g102181 +S'settled' +p102183 +tp102184 +a(g102181 +g102183 +S'in' +p102185 +tp102186 +a(g102183 +g102185 +S'paris' +p102187 +tp102188 +a(g102185 +g102187 +S'with' +p102189 +tp102190 +a(g102187 +g102189 +S'his' +p102191 +tp102192 +a(g102189 +g102191 +S'two' +p102193 +tp102194 +a(g102191 +g102193 +S'brothers,' +p102195 +tp102196 +a(g102193 +g102195 +S'who' +p102197 +tp102198 +a(g102195 +g102197 +S'were' +p102199 +tp102200 +a(g102197 +g102199 +S'also' +p102201 +tp102202 +a(g102199 +g102201 +S'painters,' +p102203 +tp102204 +a(g102201 +g102203 +S'he' +p102205 +tp102206 +a(g102203 +g102205 +S'produced' +p102207 +tp102208 +a(g102205 +g102207 +S'a' +p102209 +tp102210 +a(g102207 +g102209 +S'series' +p102211 +tp102212 +a(g102209 +g102211 +S'of' +p102213 +tp102214 +a(g102211 +g102213 +S'rural' +p102215 +tp102216 +a(g102213 +g102215 +S'images' +p102217 +tp102218 +a(g102215 +g102217 +S'that' +p102219 +tp102220 +a(g102217 +g102219 +S'recall' +p102221 +tp102222 +a(g102219 +g102221 +S'the' +p102223 +tp102224 +a(g102221 +g102223 +S'landscape' +p102225 +tp102226 +a(g102223 +g102225 +S'of' +p102227 +tp102228 +a(g102225 +g102227 +S'his' +p102229 +tp102230 +a(g102227 +g102229 +S'youth.' +p102231 +tp102232 +a(g102229 +g102231 +S'in' +p102233 +tp102234 +a(g102231 +g102233 +S'the' +p102235 +tp102236 +a(g102233 +g102235 +S'their' +p102237 +tp102238 +a(g102235 +g102237 +S'fitted' +p102239 +tp102240 +a(g102237 +g102239 +S'clothes' +p102241 +tp102242 +a(g102239 +g102241 +S'and' +p102243 +tp102244 +a(g102241 +g102243 +S'shoes' +p102245 +tp102246 +a(g102243 +g102245 +S'suggest' +p102247 +tp102248 +a(g102245 +g102247 +S'that' +p102249 +tp102250 +a(g102247 +g102249 +S'the' +p102251 +tp102252 +a(g102249 +g102251 +S'children' +p102253 +tp102254 +a(g102251 +g102253 +S'were' +p102255 +tp102256 +a(g102253 +g102255 +S'not' +p102257 +tp102258 +a(g102255 +g102257 +S'peasants' +p102259 +tp102260 +a(g102257 +g102259 +S'but' +p102261 +tp102262 +a(g102259 +g102261 +S'perhaps' +p102263 +tp102264 +a(g102261 +g102263 +S'members' +p102265 +tp102266 +a(g102263 +g102265 +S'of' +p102267 +tp102268 +a(g102265 +g102267 +S'an' +p102269 +tp102270 +a(g102267 +g102269 +S'emerging' +p102271 +tp102272 +a(g102269 +g102271 +S'class' +p102273 +tp102274 +a(g102271 +g102273 +S'of' +p102275 +tp102276 +a(g102273 +g102275 +S'farmers' +p102277 +tp102278 +a(g102275 +g102277 +S'acquiring' +p102279 +tp102280 +a(g102277 +g102279 +S'land' +p102281 +tp102282 +a(g102279 +g102281 +S'in' +p102283 +tp102284 +a(g102281 +g102283 +S'the' +p102285 +tp102286 +a(g102283 +g102285 +S'early' +p102287 +tp102288 +a(g102285 +g102287 +S'decades' +p102289 +tp102290 +a(g102287 +g102289 +S'of' +p102291 +tp102292 +a(g102289 +g102291 +S'the' +p102293 +tp102294 +a(g102291 +g102293 +S'century.' +p102295 +tp102296 +a(g102293 +g102295 +S'le' +p102297 +tp102298 +a(g102295 +g102297 +S"nain's" +p102299 +tp102300 +a(g102297 +g102299 +S'emphasis' +p102301 +tp102302 +a(g102299 +g102301 +S'on' +p102303 +tp102304 +a(g102301 +g102303 +S'the' +p102305 +tp102306 +a(g102303 +g102305 +S'land' +p102307 +tp102308 +a(g102305 +g102307 +S'in' +p102309 +tp102310 +a(g102307 +g102309 +S'this' +p102311 +tp102312 +a(g102309 +g102311 +S'composition' +p102313 +tp102314 +a(g102311 +g102313 +S'implies' +p102315 +tp102316 +a(g102313 +g102315 +S'that' +p102317 +tp102318 +a(g102315 +g102317 +S'the' +p102319 +tp102320 +a(g102317 +g102319 +S'rich' +p102321 +tp102322 +a(g102319 +g102321 +S'soil' +p102323 +tp102324 +a(g102321 +g102323 +S'holds' +p102325 +tp102326 +a(g102323 +g102325 +S'potential' +p102327 +tp102328 +a(g102325 +g102327 +S'profits' +p102329 +tp102330 +a(g102327 +g102329 +S'for' +p102331 +tp102332 +a(g102329 +g102331 +S'these' +p102333 +tp102334 +a(g102331 +g102333 +S'new' +p102335 +tp102336 +a(g102333 +g102335 +S'landowners.' +p102337 +tp102338 +a(g102335 +g102337 +S'the' +p102339 +tp102340 +a(g102337 +g102339 +S'le' +p102341 +tp102342 +a(g102339 +g102341 +S"nains'" +p102343 +tp102344 +a(g102341 +g102343 +S'rural' +p102345 +tp102346 +a(g102343 +g102345 +S'subjects' +p102347 +tp102348 +a(g102345 +g102347 +S'were' +p102349 +tp102350 +a(g102347 +g102349 +S'very' +p102351 +tp102352 +a(g102349 +g102351 +S'popular,' +p102353 +tp102354 +a(g102351 +g102353 +S'suggesting' +p102355 +tp102356 +a(g102353 +g102355 +S'their' +p102357 +tp102358 +a(g102355 +g102357 +S'patrons' +p102359 +tp102360 +a(g102357 +g102359 +S'appreciated' +p102361 +tp102362 +a(g102359 +g102361 +S'the' +p102363 +tp102364 +a(g102361 +g102363 +S'agricultural' +p102365 +tp102366 +a(g102363 +g102365 +S'messages' +p102367 +tp102368 +a(g102365 +g102367 +S'encoded' +p102369 +tp102370 +a(g102367 +g102369 +S'in' +p102371 +tp102372 +a(g102369 +g102371 +S'the' +p102373 +tp102374 +a(g102371 +g102373 +S'structure' +p102375 +tp102376 +a(g102373 +g102375 +S'of' +p102377 +tp102378 +a(g102375 +g102377 +S'the' +p102379 +tp102380 +a(g102377 +g102379 +S'paintings.' +p102381 +tp102382 +a(g102379 +g102381 +S'nattier' +p102383 +tp102384 +a(g102381 +g102383 +S'entered' +p102385 +tp102386 +a(g102383 +g102385 +S'the' +p102387 +tp102388 +a(g102385 +g102387 +S'academy' +p102389 +tp102390 +a(g102387 +g102389 +S'as' +p102391 +tp102392 +a(g102389 +g102391 +S'a' +p102393 +tp102394 +a(g102391 +g102393 +S'history' +p102395 +tp102396 +a(g102393 +g102395 +S'painter,' +p102397 +tp102398 +a(g102395 +g102397 +S'but' +p102399 +tp102400 +a(g102397 +g102399 +S'after' +p102401 +tp102402 +a(g102399 +g102401 +S'financial' +p102403 +tp102404 +a(g102401 +g102403 +S'losses' +p102405 +tp102406 +a(g102403 +g102405 +S'in' +p102407 +tp102408 +a(g102405 +g102407 +S'a' +p102409 +tp102410 +a(g102407 +g102409 +S'shaky' +p102411 +tp102412 +a(g102409 +g102411 +S'market' +p102413 +tp102414 +a(g102411 +g102413 +S'scheme' +p102415 +tp102416 +a(g102413 +g102415 +S'he' +p102417 +tp102418 +a(g102415 +g102417 +S'turned' +p102419 +tp102420 +a(g102417 +g102419 +S'to' +p102421 +tp102422 +a(g102419 +g102421 +S'a' +p102423 +tp102424 +a(g102421 +g102423 +S'more' +p102425 +tp102426 +a(g102423 +g102425 +S'profitable' +p102427 +tp102428 +a(g102425 +g102427 +S'career' +p102429 +tp102430 +a(g102427 +g102429 +S'as' +p102431 +tp102432 +a(g102429 +g102431 +S'a' +p102433 +tp102434 +a(g102431 +g102433 +S'portraitist.' +p102435 +tp102436 +a(g102433 +g102435 +S'before' +p102437 +tp102438 +a(g102435 +g102437 +S'long' +p102439 +tp102440 +a(g102437 +g102439 +S'he' +p102441 +tp102442 +a(g102439 +g102441 +S'was' +p102443 +tp102444 +a(g102441 +g102443 +S'the' +p102445 +tp102446 +a(g102443 +g102445 +S'most' +p102447 +tp102448 +a(g102445 +g102447 +S'fashionable' +p102449 +tp102450 +a(g102447 +g102449 +S'painter' +p102451 +tp102452 +a(g102449 +g102451 +S'in' +p102453 +tp102454 +a(g102451 +g102453 +S'paris.' +p102455 +tp102456 +a(g102453 +g102455 +S'his' +p102457 +tp102458 +a(g102455 +g102457 +S'daughter' +p102459 +tp102460 +a(g102457 +g102459 +S'wrote' +p102461 +tp102462 +a(g102459 +g102461 +S'that' +p102463 +tp102464 +a(g102461 +g102463 +S'he' +p102465 +tp102466 +a(g102463 +g102465 +S'had' +p102467 +tp102468 +a(g102465 +g102467 +S'"reconciled' +p102469 +tp102470 +a(g102467 +g102469 +S'the' +p102471 +tp102472 +a(g102469 +g102471 +S'two' +p102473 +tp102474 +a(g102471 +g102473 +S'major' +p102475 +tp102476 +a(g102473 +g102475 +S'branches' +p102477 +tp102478 +a(g102475 +g102477 +S'of' +p102479 +tp102480 +a(g102477 +g102479 +S'art"' +p102481 +tp102482 +a(g102479 +g102481 +S'for' +p102483 +tp102484 +a(g102481 +g102483 +S'he' +p102485 +tp102486 +a(g102483 +g102485 +S'specialized' +p102487 +tp102488 +a(g102485 +g102487 +S'in' +p102489 +tp102490 +a(g102487 +g102489 +S'historical' +p102491 +tp102492 +a(g102489 +g102491 +S'portraits,' +p102493 +tp102494 +a(g102491 +g102493 +S'casting' +p102495 +tp102496 +a(g102493 +g102495 +S'his' +p102497 +tp102498 +a(g102495 +g102497 +S'sitters' +p102499 +tp102500 +a(g102497 +g102499 +S'in' +p102501 +tp102502 +a(g102499 +g102501 +S'mythological' +p102503 +tp102504 +a(g102501 +g102503 +S'or' +p102505 +tp102506 +a(g102503 +g102505 +S'literary' +p102507 +tp102508 +a(g102505 +g102507 +S'roles.' +p102509 +tp102510 +a(g102507 +g102509 +S'madame' +p102511 +tp102512 +a(g102509 +g102511 +S'de' +p102513 +tp102514 +a(g102511 +g102513 +S'caumartin' +p102515 +tp102516 +a(g102513 +g102515 +S'as' +p102517 +tp102518 +a(g102515 +g102517 +S'hebe' +p102519 +tp102520 +a(g102517 +g102519 +S'although' +p102521 +tp102522 +a(g102519 +g102521 +S'nicolas' +p102523 +tp102524 +a(g102521 +g102523 +S"poussin's" +p102525 +tp102526 +a(g102523 +g102525 +S'work' +p102527 +tp102528 +a(g102525 +g102527 +S'exerted' +p102529 +tp102530 +a(g102527 +g102529 +S'an' +p102531 +tp102532 +a(g102529 +g102531 +S'enormous' +p102533 +tp102534 +a(g102531 +g102533 +S'influence' +p102535 +tp102536 +a(g102533 +g102535 +S'on' +p102537 +tp102538 +a(g102535 +g102537 +S'the' +p102539 +tp102540 +a(g102537 +g102539 +S'development' +p102541 +tp102542 +a(g102539 +g102541 +S'of' +p102543 +tp102544 +a(g102541 +g102543 +S'french' +p102545 +tp102546 +a(g102543 +g102545 +S'seventeenth-century' +p102547 +tp102548 +a(g102545 +g102547 +S'painting,' +p102549 +tp102550 +a(g102547 +g102549 +S'the' +p102551 +tp102552 +a(g102549 +g102551 +S'artist' +p102553 +tp102554 +a(g102551 +g102553 +S'perfected' +p102555 +tp102556 +a(g102553 +g102555 +S'his' +p102557 +tp102558 +a(g102555 +g102557 +S'style' +p102559 +tp102560 +a(g102557 +g102559 +S'in' +p102561 +tp102562 +a(g102559 +g102561 +S'rome,' +p102563 +tp102564 +a(g102561 +g102563 +S'incorporating' +p102565 +tp102566 +a(g102563 +g102565 +S'the' +p102567 +tp102568 +a(g102565 +g102567 +S'lessons' +p102569 +tp102570 +a(g102567 +g102569 +S'of' +p102571 +tp102572 +a(g102569 +g102571 +S'renaissance' +p102573 +tp102574 +a(g102571 +g102573 +S'and' +p102575 +tp102576 +a(g102573 +g102575 +S'contemporary' +p102577 +tp102578 +a(g102575 +g102577 +S'italian' +p102579 +tp102580 +a(g102577 +g102579 +S'painters' +p102581 +tp102582 +a(g102579 +g102581 +S'into' +p102583 +tp102584 +a(g102581 +g102583 +S'his' +p102585 +tp102586 +a(g102583 +g102585 +S'own' +p102587 +tp102588 +a(g102585 +g102587 +S'idiom.' +p102589 +tp102590 +a(g102587 +g102589 +S"poussin's" +p102591 +tp102592 +a(g102589 +g102591 +S'in' +p102593 +tp102594 +a(g102591 +g102593 +S"poussin's" +p102595 +tp102596 +a(g102593 +g102595 +S'composition,' +p102597 +tp102598 +a(g102595 +g102597 +S'the' +p102599 +tp102600 +a(g102597 +g102599 +S'river' +p102601 +tp102602 +a(g102599 +g102601 +S'jordan' +p102603 +tp102604 +a(g102601 +g102603 +S'winds' +p102605 +tp102606 +a(g102603 +g102605 +S'through' +p102607 +tp102608 +a(g102605 +g102607 +S'the' +p102609 +tp102610 +a(g102607 +g102609 +S'foreground' +p102611 +tp102612 +a(g102609 +g102611 +S'plane' +p102613 +tp102614 +a(g102611 +g102613 +S'where' +p102615 +tp102616 +a(g102613 +g102615 +S'he' +p102617 +tp102618 +a(g102615 +g102617 +S'has' +p102619 +tp102620 +a(g102617 +g102619 +S'placed' +p102621 +tp102622 +a(g102619 +g102621 +S'thirteen' +p102623 +tp102624 +a(g102621 +g102623 +S'figures.' +p102625 +tp102626 +a(g102623 +g102625 +S'christ' +p102627 +tp102628 +a(g102625 +g102627 +S'is' +p102629 +tp102630 +a(g102627 +g102629 +S'located' +p102631 +tp102632 +a(g102629 +g102631 +S'to' +p102633 +tp102634 +a(g102631 +g102633 +S'the' +p102635 +tp102636 +a(g102633 +g102635 +S'right' +p102637 +tp102638 +a(g102635 +g102637 +S'of' +p102639 +tp102640 +a(g102637 +g102639 +S'the' +p102641 +tp102642 +a(g102639 +g102641 +S'canvas;' +p102643 +tp102644 +a(g102641 +g102643 +S'on' +p102645 +tp102646 +a(g102643 +g102645 +S'his' +p102647 +tp102648 +a(g102645 +g102647 +S'left' +p102649 +tp102650 +a(g102647 +g102649 +S'side' +p102651 +tp102652 +a(g102649 +g102651 +S'--' +p102653 +tp102654 +a(g102651 +g102653 +S'which' +p102655 +tp102656 +a(g102653 +g102655 +S'represents' +p102657 +tp102658 +a(g102655 +g102657 +S'paradise' +p102659 +tp102660 +a(g102657 +g102659 +S'--' +p102661 +tp102662 +a(g102659 +g102661 +S'two' +p102663 +tp102664 +a(g102661 +g102663 +S'figures,' +p102665 +tp102666 +a(g102663 +g102665 +S'probably' +p102667 +tp102668 +a(g102665 +g102667 +S'wingless' +p102669 +tp102670 +a(g102667 +g102669 +S'angels,' +p102671 +tp102672 +a(g102669 +g102671 +S'kneel' +p102673 +tp102674 +a(g102671 +g102673 +S'to' +p102675 +tp102676 +a(g102673 +g102675 +S'help' +p102677 +tp102678 +a(g102675 +g102677 +S'him.' +p102679 +tp102680 +a(g102677 +g102679 +S'to' +p102681 +tp102682 +a(g102679 +g102681 +S'his' +p102683 +tp102684 +a(g102681 +g102683 +S'right,' +p102685 +tp102686 +a(g102683 +g102685 +S'on' +p102687 +tp102688 +a(g102685 +g102687 +S'the' +p102689 +tp102690 +a(g102687 +g102689 +S'earthly' +p102691 +tp102692 +a(g102689 +g102691 +S'side' +p102693 +tp102694 +a(g102691 +g102693 +S'of' +p102695 +tp102696 +a(g102693 +g102695 +S'the' +p102697 +tp102698 +a(g102695 +g102697 +S'jordan,' +p102699 +tp102700 +a(g102697 +g102699 +S'saint' +p102701 +tp102702 +a(g102699 +g102701 +S'john' +p102703 +tp102704 +a(g102701 +g102703 +S'holds' +p102705 +tp102706 +a(g102703 +g102705 +S'a' +p102707 +tp102708 +a(g102705 +g102707 +S'vessel' +p102709 +tp102710 +a(g102707 +g102709 +S'over' +p102711 +tp102712 +a(g102709 +g102711 +S"christ's" +p102713 +tp102714 +a(g102711 +g102713 +S'head.' +p102715 +tp102716 +a(g102713 +g102715 +S'the' +p102717 +tp102718 +a(g102715 +g102717 +S'reactions' +p102719 +tp102720 +a(g102717 +g102719 +S'of' +p102721 +tp102722 +a(g102719 +g102721 +S'the' +p102723 +tp102724 +a(g102721 +g102723 +S'figures' +p102725 +tp102726 +a(g102723 +g102725 +S'to' +p102727 +tp102728 +a(g102725 +g102727 +S'the' +p102729 +tp102730 +a(g102727 +g102729 +S'right' +p102731 +tp102732 +a(g102729 +g102731 +S'of' +p102733 +tp102734 +a(g102731 +g102733 +S'christ' +p102735 +tp102736 +a(g102733 +g102735 +S'demonstrate' +p102737 +tp102738 +a(g102735 +g102737 +S'why' +p102739 +tp102740 +a(g102737 +g102739 +S'mastery' +p102741 +tp102742 +a(g102739 +g102741 +S'of' +p102743 +tp102744 +a(g102741 +g102743 +S'the' +p102745 +tp102746 +a(g102743 +g102745 +S'human' +p102747 +tp102748 +a(g102745 +g102747 +S'form' +p102749 +tp102750 +a(g102747 +g102749 +S'was' +p102751 +tp102752 +a(g102749 +g102751 +S'essential' +p102753 +tp102754 +a(g102751 +g102753 +S'to' +p102755 +tp102756 +a(g102753 +g102755 +S'history' +p102757 +tp102758 +a(g102755 +g102757 +S'painting.' +p102759 +tp102760 +a(g102757 +g102759 +S'the' +p102761 +tp102762 +a(g102759 +g102761 +S'row' +p102763 +tp102764 +a(g102761 +g102763 +S'of' +p102765 +tp102766 +a(g102763 +g102765 +S'figures' +p102767 +tp102768 +a(g102765 +g102767 +S'behind' +p102769 +tp102770 +a(g102767 +g102769 +S'saint' +p102771 +tp102772 +a(g102769 +g102771 +S'john' +p102773 +tp102774 +a(g102771 +g102773 +S'have' +p102775 +tp102776 +a(g102773 +g102775 +S'anguished' +p102777 +tp102778 +a(g102775 +g102777 +S'expressions' +p102779 +tp102780 +a(g102777 +g102779 +S'and' +p102781 +tp102782 +a(g102779 +g102781 +S'contorted' +p102783 +tp102784 +a(g102781 +g102783 +S'poses.' +p102785 +tp102786 +a(g102783 +g102785 +S'poussin' +p102787 +tp102788 +a(g102785 +g102787 +S'has' +p102789 +tp102790 +a(g102787 +g102789 +S'depicted' +p102791 +tp102792 +a(g102789 +g102791 +S'the' +p102793 +tp102794 +a(g102791 +g102793 +S'specific' +p102795 +tp102796 +a(g102793 +g102795 +S'moment' +p102797 +tp102798 +a(g102795 +g102797 +S'when' +p102799 +tp102800 +a(g102797 +g102799 +S'the' +p102801 +tp102802 +a(g102799 +g102801 +S'voice' +p102803 +tp102804 +a(g102801 +g102803 +S'of' +p102805 +tp102806 +a(g102803 +g102805 +S'the' +p102807 +tp102808 +a(g102805 +g102807 +S'lord' +p102809 +tp102810 +a(g102807 +g102809 +S'proclaimed:' +p102811 +tp102812 +a(g102809 +g102811 +S'"this' +p102813 +tp102814 +a(g102811 +g102813 +S'is' +p102815 +tp102816 +a(g102813 +g102815 +S'my' +p102817 +tp102818 +a(g102815 +g102817 +S'beloved' +p102819 +tp102820 +a(g102817 +g102819 +S'son,' +p102821 +tp102822 +a(g102819 +g102821 +S'in' +p102823 +tp102824 +a(g102821 +g102823 +S'whom' +p102825 +tp102826 +a(g102823 +g102825 +S'i' +p102827 +tp102828 +a(g102825 +g102827 +S'am' +p102829 +tp102830 +a(g102827 +g102829 +S'well' +p102831 +tp102832 +a(g102829 +g102831 +S'pleased"' +p102833 +tp102834 +a(g102831 +g102833 +S'(matthew' +p102835 +tp102836 +a(g102833 +g102835 +S'3:17).' +p102837 +tp102838 +a(g102835 +g102837 +S'by' +p102839 +tp102840 +a(g102837 +g102839 +S'presenting' +p102841 +tp102842 +a(g102839 +g102841 +S'complex' +p102843 +tp102844 +a(g102841 +g102843 +S'poses' +p102845 +tp102846 +a(g102843 +g102845 +S'and' +p102847 +tp102848 +a(g102845 +g102847 +S'physiognomies,' +p102849 +tp102850 +a(g102847 +g102849 +S'poussin' +p102851 +tp102852 +a(g102849 +g102851 +S'has' +p102853 +tp102854 +a(g102851 +g102853 +S'evoked' +p102855 +tp102856 +a(g102853 +g102855 +S'a' +p102857 +tp102858 +a(g102855 +g102857 +S'very' +p102859 +tp102860 +a(g102857 +g102859 +S'human' +p102861 +tp102862 +a(g102859 +g102861 +S'reaction' +p102863 +tp102864 +a(g102861 +g102863 +S'--' +p102865 +tp102866 +a(g102863 +g102865 +S'the' +p102867 +tp102868 +a(g102865 +g102867 +S'fear' +p102869 +tp102870 +a(g102867 +g102869 +S'of' +p102871 +tp102872 +a(g102869 +g102871 +S'those' +p102873 +tp102874 +a(g102871 +g102873 +S'present' +p102875 +tp102876 +a(g102873 +g102875 +S'as' +p102877 +tp102878 +a(g102875 +g102877 +S'they' +p102879 +tp102880 +a(g102877 +g102879 +S'acknowledge' +p102881 +tp102882 +a(g102879 +g102881 +S'christ' +p102883 +tp102884 +a(g102881 +g102883 +S'as' +p102885 +tp102886 +a(g102883 +g102885 +S'the' +p102887 +tp102888 +a(g102885 +g102887 +S'son' +p102889 +tp102890 +a(g102887 +g102889 +S'of' +p102891 +tp102892 +a(g102889 +g102891 +S'god' +p102893 +tp102894 +a(g102891 +g102893 +S'--' +p102895 +tp102896 +a(g102893 +g102895 +S'thereby' +p102897 +tp102898 +a(g102895 +g102897 +S'encouraging' +p102899 +tp102900 +a(g102897 +g102899 +S'the' +p102901 +tp102902 +a(g102899 +g102901 +S'viewer' +p102903 +tp102904 +a(g102901 +g102903 +S'to' +p102905 +tp102906 +a(g102903 +g102905 +S'identify' +p102907 +tp102908 +a(g102905 +g102907 +S'with' +p102909 +tp102910 +a(g102907 +g102909 +S'this' +p102911 +tp102912 +a(g102909 +g102911 +S'significant' +p102913 +tp102914 +a(g102911 +g102913 +S'moment.' +p102915 +tp102916 +a(g102913 +g102915 +S'politics' +p102917 +tp102918 +a(g102915 +g102917 +S'played' +p102919 +tp102920 +a(g102917 +g102919 +S'an' +p102921 +tp102922 +a(g102919 +g102921 +S'important' +p102923 +tp102924 +a(g102921 +g102923 +S'role' +p102925 +tp102926 +a(g102923 +g102925 +S'in' +p102927 +tp102928 +a(g102925 +g102927 +S'the' +p102929 +tp102930 +a(g102927 +g102929 +S'career' +p102931 +tp102932 +a(g102929 +g102931 +S'of' +p102933 +tp102934 +a(g102931 +g102933 +S'madame' +p102935 +tp102936 +a(g102933 +g102935 +S'vigée-lebrun.' +p102937 +tp102938 +a(g102935 +g102937 +S'a' +p102939 +tp102940 +a(g102937 +g102939 +S'painter' +p102941 +tp102942 +a(g102939 +g102941 +S'to' +p102943 +tp102944 +a(g102941 +g102943 +S'marie' +p102945 +tp102946 +a(g102943 +g102945 +S'antoinette' +p102947 +tp102948 +a(g102945 +g102947 +S'since' +p102949 +tp102950 +a(g102947 +g102949 +S'1779,' +p102951 +tp102952 +a(g102949 +g102951 +S'she' +p102953 +tp102954 +a(g102951 +g102953 +S'was' +p102955 +tp102956 +a(g102953 +g102955 +S'elected' +p102957 +tp102958 +a(g102955 +g102957 +S'to' +p102959 +tp102960 +a(g102957 +g102959 +S'the' +p102961 +tp102962 +a(g102959 +g102961 +S'royal' +p102963 +tp102964 +a(g102961 +g102963 +S'academy' +p102965 +tp102966 +a(g102963 +g102965 +S'of' +p102967 +tp102968 +a(g102965 +g102967 +S'painting' +p102969 +tp102970 +a(g102967 +g102969 +S'by' +p102971 +tp102972 +a(g102969 +g102971 +S'the' +p102973 +tp102974 +a(g102971 +g102973 +S"queen's" +p102975 +tp102976 +a(g102973 +g102975 +S'decree' +p102977 +tp102978 +a(g102975 +g102977 +S'in' +p102979 +tp102980 +a(g102977 +g102979 +S'1783.' +p102981 +tp102982 +a(g102979 +g102981 +S'her' +p102983 +tp102984 +a(g102981 +g102983 +S'close' +p102985 +tp102986 +a(g102983 +g102985 +S'ties' +p102987 +tp102988 +a(g102985 +g102987 +S'to' +p102989 +tp102990 +a(g102987 +g102989 +S'the' +p102991 +tp102992 +a(g102989 +g102991 +S'royal' +p102993 +tp102994 +a(g102991 +g102993 +S'family' +p102995 +tp102996 +a(g102993 +g102995 +S'put' +p102997 +tp102998 +a(g102995 +g102997 +S'her' +p102999 +tp103000 +a(g102997 +g102999 +S'life' +p103001 +tp103002 +a(g102999 +g103001 +S'in' +p103003 +tp103004 +a(g103001 +g103003 +S'danger' +p103005 +tp103006 +a(g103003 +g103005 +S'during' +p103007 +tp103008 +a(g103005 +g103007 +S'the' +p103009 +tp103010 +a(g103007 +g103009 +S'revolution' +p103011 +tp103012 +a(g103009 +g103011 +S'and' +p103013 +tp103014 +a(g103011 +g103013 +S'she' +p103015 +tp103016 +a(g103013 +g103015 +S'fled' +p103017 +tp103018 +a(g103015 +g103017 +S'france' +p103019 +tp103020 +a(g103017 +g103019 +S'in' +p103021 +tp103022 +a(g103019 +g103021 +S'1789,' +p103023 +tp103024 +a(g103021 +g103023 +S'not' +p103025 +tp103026 +a(g103023 +g103025 +S'to' +p103027 +tp103028 +a(g103025 +g103027 +S'return' +p103029 +tp103030 +a(g103027 +g103029 +S'until' +p103031 +tp103032 +a(g103029 +g103031 +S'1802.' +p103033 +tp103034 +a(g103031 +g103033 +S'therefore,' +p103035 +tp103036 +a(g103033 +g103035 +S'it' +p103037 +tp103038 +a(g103035 +g103037 +S'is' +p103039 +tp103040 +a(g103037 +g103039 +S'not' +p103041 +tp103042 +a(g103039 +g103041 +S'surprising' +p103043 +tp103044 +a(g103041 +g103043 +S'that' +p103045 +tp103046 +a(g103043 +g103045 +S'her' +p103047 +tp103048 +a(g103045 +g103047 +S'portraits' +p103049 +tp103050 +a(g103047 +g103049 +S'of' +p103051 +tp103052 +a(g103049 +g103051 +S'society' +p103053 +tp103054 +a(g103051 +g103053 +S'ladies' +p103055 +tp103056 +a(g103053 +g103055 +S'reveal' +p103057 +tp103058 +a(g103055 +g103057 +S'graceful' +p103059 +tp103060 +a(g103057 +g103059 +S'poses,' +p103061 +tp103062 +a(g103059 +g103061 +S'finished' +p103063 +tp103064 +a(g103061 +g103063 +S'surfaces,' +p103065 +tp103066 +a(g103063 +g103065 +S'and' +p103067 +tp103068 +a(g103065 +g103067 +S'sweet,' +p103069 +tp103070 +a(g103067 +g103069 +S'but' +p103071 +tp103072 +a(g103069 +g103071 +S'controlled' +p103073 +tp103074 +a(g103071 +g103073 +S'expressions,' +p103075 +tp103076 +a(g103073 +g103075 +S'that' +p103077 +tp103078 +a(g103075 +g103077 +S'both' +p103079 +tp103080 +a(g103077 +g103079 +S'mask' +p103081 +tp103082 +a(g103079 +g103081 +S'and' +p103083 +tp103084 +a(g103081 +g103083 +S'betray' +p103085 +tp103086 +a(g103083 +g103085 +S'the' +p103087 +tp103088 +a(g103085 +g103087 +S'charged' +p103089 +tp103090 +a(g103087 +g103089 +S'political' +p103091 +tp103092 +a(g103089 +g103091 +S'climate' +p103093 +tp103094 +a(g103091 +g103093 +S'surrounding' +p103095 +tp103096 +a(g103093 +g103095 +S'her' +p103097 +tp103098 +a(g103095 +g103097 +S'sitters.' +p103099 +tp103100 +a(g103097 +g103099 +S'this' +p103101 +tp103102 +a(g103099 +g103101 +S'young' +p103103 +tp103104 +a(g103101 +g103103 +S"woman's" +p103105 +tp103106 +a(g103103 +g103105 +S'elaborate' +p103107 +tp103108 +a(g103105 +g103107 +S'costume' +p103109 +tp103110 +a(g103107 +g103109 +S'displays' +p103111 +tp103112 +a(g103109 +g103111 +S'three' +p103113 +tp103114 +a(g103111 +g103113 +S'different' +p103115 +tp103116 +a(g103113 +g103115 +S'foreign' +p103117 +tp103118 +a(g103115 +g103117 +S'cultures.' +p103119 +tp103120 +a(g103117 +g103119 +S'her' +p103121 +tp103122 +a(g103119 +g103121 +S'turban' +p103123 +tp103124 +a(g103121 +g103123 +S'and' +p103125 +tp103126 +a(g103123 +g103125 +S'jacket' +p103127 +tp103128 +a(g103125 +g103127 +S'recall' +p103129 +tp103130 +a(g103127 +g103129 +S'a' +p103131 +tp103132 +a(g103129 +g103131 +S'turkish' +p103133 +tp103134 +a(g103131 +g103133 +S'harem' +p103135 +tp103136 +a(g103133 +g103135 +S'outfit.' +p103137 +tp103138 +a(g103135 +g103137 +S'the' +p103139 +tp103140 +a(g103137 +g103139 +S'allusions' +p103141 +tp103142 +a(g103139 +g103141 +S'to' +p103143 +tp103144 +a(g103141 +g103143 +S'the' +p103145 +tp103146 +a(g103143 +g103145 +S'exotic' +p103147 +tp103148 +a(g103145 +g103147 +S'orient' +p103149 +tp103150 +a(g103147 +g103149 +S'signal' +p103151 +tp103152 +a(g103149 +g103151 +S'an' +p103153 +tp103154 +a(g103151 +g103153 +S'escape' +p103155 +tp103156 +a(g103153 +g103155 +S'from' +p103157 +tp103158 +a(g103155 +g103157 +S'the' +p103159 +tp103160 +a(g103157 +g103159 +S'present' +p103161 +tp103162 +a(g103159 +g103161 +S'as' +p103163 +tp103164 +a(g103161 +g103163 +S'well' +p103165 +tp103166 +a(g103163 +g103165 +S'as' +p103167 +tp103168 +a(g103165 +g103167 +S'an' +p103169 +tp103170 +a(g103167 +g103169 +S'enlightenment' +p103171 +tp103172 +a(g103169 +g103171 +S'acceptance' +p103173 +tp103174 +a(g103171 +g103173 +S'of' +p103175 +tp103176 +a(g103173 +g103175 +S'non-western' +p103177 +tp103178 +a(g103175 +g103177 +S'ideas.' +p103179 +tp103180 +a(g103177 +g103179 +S'her' +p103181 +tp103182 +a(g103179 +g103181 +S'flowing' +p103183 +tp103184 +a(g103181 +g103183 +S'white' +p103185 +tp103186 +a(g103183 +g103185 +S'gown' +p103187 +tp103188 +a(g103185 +g103187 +S'recalls' +p103189 +tp103190 +a(g103187 +g103189 +S'the' +p103191 +tp103192 +a(g103189 +g103191 +S'costumes' +p103193 +tp103194 +a(g103191 +g103193 +S'of' +p103195 +tp103196 +a(g103193 +g103195 +S'ancient' +p103197 +tp103198 +a(g103195 +g103197 +S'greece' +p103199 +tp103200 +a(g103197 +g103199 +S'and' +p103201 +tp103202 +a(g103199 +g103201 +S'rome,' +p103203 +tp103204 +a(g103201 +g103203 +S'meant' +p103205 +tp103206 +a(g103203 +g103205 +S'to' +p103207 +tp103208 +a(g103205 +g103207 +S'inspire' +p103209 +tp103210 +a(g103207 +g103209 +S'republican' +p103211 +tp103212 +a(g103209 +g103211 +S'virtues.' +p103213 +tp103214 +a(g103211 +g103213 +S'the' +p103215 +tp103216 +a(g103213 +g103215 +S'prominent' +p103217 +tp103218 +a(g103215 +g103217 +S'wedgwood' +p103219 +tp103220 +a(g103217 +g103219 +S'cameo' +p103221 +tp103222 +a(g103219 +g103221 +S'at' +p103223 +tp103224 +a(g103221 +g103223 +S'her' +p103225 +tp103226 +a(g103223 +g103225 +S'sash' +p103227 +tp103228 +a(g103225 +g103227 +S'is' +p103229 +tp103230 +a(g103227 +g103229 +S'english;' +p103231 +tp103232 +a(g103229 +g103231 +S'at' +p103233 +tp103234 +a(g103231 +g103233 +S'this' +p103235 +tp103236 +a(g103233 +g103235 +S'time' +p103237 +tp103238 +a(g103235 +g103237 +S'british' +p103239 +tp103240 +a(g103237 +g103239 +S'imports' +p103241 +tp103242 +a(g103239 +g103241 +S'represented' +p103243 +tp103244 +a(g103241 +g103243 +S'products' +p103245 +tp103246 +a(g103243 +g103245 +S'of' +p103247 +tp103248 +a(g103245 +g103247 +S'another' +p103249 +tp103250 +a(g103247 +g103249 +S'political' +p103251 +tp103252 +a(g103249 +g103251 +S'system,' +p103253 +tp103254 +a(g103251 +g103253 +S'a' +p103255 +tp103256 +a(g103253 +g103255 +S'parliamentary' +p103257 +tp103258 +a(g103255 +g103257 +S'monarchy,' +p103259 +tp103260 +a(g103257 +g103259 +S'that' +p103261 +tp103262 +a(g103259 +g103261 +S'was' +p103263 +tp103264 +a(g103261 +g103263 +S'considered' +p103265 +tp103266 +a(g103263 +g103265 +S'as' +p103267 +tp103268 +a(g103265 +g103267 +S'a' +p103269 +tp103270 +a(g103267 +g103269 +S'potential' +p103271 +tp103272 +a(g103269 +g103271 +S'model' +p103273 +tp103274 +a(g103271 +g103273 +S'for' +p103275 +tp103276 +a(g103273 +g103275 +S'france.' +p103277 +tp103278 +a(g103275 +g103277 +S'in' +p103279 +tp103280 +a(g103277 +g103279 +S'rigorously' +p103281 +tp103282 +a(g103279 +g103281 +S'detailing' +p103283 +tp103284 +a(g103281 +g103283 +S'the' +p103285 +tp103286 +a(g103283 +g103285 +S'costume,' +p103287 +tp103288 +a(g103285 +g103287 +S'vigée-lebrun' +p103289 +tp103290 +a(g103287 +g103289 +S'shows' +p103291 +tp103292 +a(g103289 +g103291 +S'how' +p103293 +tp103294 +a(g103291 +g103293 +S'deeply' +p103295 +tp103296 +a(g103293 +g103295 +S'contemporary' +p103297 +tp103298 +a(g103295 +g103297 +S'politics' +p103299 +tp103300 +a(g103297 +g103299 +S'had' +p103301 +tp103302 +a(g103299 +g103301 +S'penetrated' +p103303 +tp103304 +a(g103301 +g103303 +S'daily' +p103305 +tp103306 +a(g103303 +g103305 +S'life.' +p103307 +tp103308 +a(g103305 +g103307 +S'the' +p103309 +tp103310 +a(g103307 +g103309 +S"subject's" +p103311 +tp103312 +a(g103309 +g103311 +S'engaging' +p103313 +tp103314 +a(g103311 +g103313 +S'expression' +p103315 +tp103316 +a(g103313 +g103315 +S'conveys' +p103317 +tp103318 +a(g103315 +g103317 +S'the' +p103319 +tp103320 +a(g103317 +g103319 +S'nascent' +p103321 +tp103322 +a(g103319 +g103321 +S'tensions' +p103323 +tp103324 +a(g103321 +g103323 +S'of' +p103325 +tp103326 +a(g103323 +g103325 +S'the' +p103327 +tp103328 +a(g103325 +g103327 +S'period.' +p103329 +tp103330 +a(g103327 +g103329 +S'jean-auguste-dominique' +p103331 +tp103332 +a(g103329 +g103331 +S'ingres,' +p103333 +tp103334 +a(g103331 +g103333 +S'a' +p103335 +tp103336 +a(g103333 +g103335 +S'student' +p103337 +tp103338 +a(g103335 +g103337 +S'of' +p103339 +tp103340 +a(g103337 +g103339 +S'david,' +p103341 +tp103342 +a(g103339 +g103341 +S'promulgated' +p103343 +tp103344 +a(g103341 +g103343 +S'his' +p103345 +tp103346 +a(g103343 +g103345 +S"master's" +p103347 +tp103348 +a(g103345 +g103347 +S'neoclassical' +p103349 +tp103350 +a(g103347 +g103349 +S'aesthetic' +p103351 +tp103352 +a(g103349 +g103351 +S'throughout' +p103353 +tp103354 +a(g103351 +g103353 +S'his' +p103355 +tp103356 +a(g103353 +g103355 +S'long' +p103357 +tp103358 +a(g103355 +g103357 +S'and' +p103359 +tp103360 +a(g103357 +g103359 +S'very' +p103361 +tp103362 +a(g103359 +g103361 +S'successful' +p103363 +tp103364 +a(g103361 +g103363 +S'career.' +p103365 +tp103366 +a(g103363 +g103365 +S'ingres' +p103367 +tp103368 +a(g103365 +g103367 +S'espoused' +p103369 +tp103370 +a(g103367 +g103369 +S'the' +p103371 +tp103372 +a(g103369 +g103371 +S'supremacy' +p103373 +tp103374 +a(g103371 +g103373 +S'of' +p103375 +tp103376 +a(g103373 +g103375 +S'line' +p103377 +tp103378 +a(g103375 +g103377 +S'over' +p103379 +tp103380 +a(g103377 +g103379 +S'color,' +p103381 +tp103382 +a(g103379 +g103381 +S'the' +p103383 +tp103384 +a(g103381 +g103383 +S'study' +p103385 +tp103386 +a(g103383 +g103385 +S'of' +p103387 +tp103388 +a(g103385 +g103387 +S'antique' +p103389 +tp103390 +a(g103387 +g103389 +S'sculpture,' +p103391 +tp103392 +a(g103389 +g103391 +S'and' +p103393 +tp103394 +a(g103391 +g103393 +S'the' +p103395 +tp103396 +a(g103393 +g103395 +S'value' +p103397 +tp103398 +a(g103395 +g103397 +S'of' +p103399 +tp103400 +a(g103397 +g103399 +S'drawing' +p103401 +tp103402 +a(g103399 +g103401 +S'after' +p103403 +tp103404 +a(g103401 +g103403 +S'the' +p103405 +tp103406 +a(g103403 +g103405 +S'live' +p103407 +tp103408 +a(g103405 +g103407 +S'model,' +p103409 +tp103410 +a(g103407 +g103409 +S'principles' +p103411 +tp103412 +a(g103409 +g103411 +S'he' +p103413 +tp103414 +a(g103411 +g103413 +S'perfected' +p103415 +tp103416 +a(g103413 +g103415 +S'in' +p103417 +tp103418 +a(g103415 +g103417 +S'his' +p103419 +tp103420 +a(g103417 +g103419 +S'expressive' +p103421 +tp103422 +a(g103419 +g103421 +S'use' +p103423 +tp103424 +a(g103421 +g103423 +S'of' +p103425 +tp103426 +a(g103423 +g103425 +S'line' +p103427 +tp103428 +a(g103425 +g103427 +S'to' +p103429 +tp103430 +a(g103427 +g103429 +S'define' +p103431 +tp103432 +a(g103429 +g103431 +S'form.' +p103433 +tp103434 +a(g103431 +g103433 +S'madame' +p103435 +tp103436 +a(g103433 +g103435 +S'moitessier,' +p103437 +tp103438 +a(g103435 +g103437 +S'the' +p103439 +tp103440 +a(g103437 +g103439 +S'daughter' +p103441 +tp103442 +a(g103439 +g103441 +S'of' +p103443 +tp103444 +a(g103441 +g103443 +S'a' +p103445 +tp103446 +a(g103443 +g103445 +S'wealthy' +p103447 +tp103448 +a(g103445 +g103447 +S'government' +p103449 +tp103450 +a(g103447 +g103449 +S'official' +p103451 +tp103452 +a(g103449 +g103451 +S'and' +p103453 +tp103454 +a(g103451 +g103453 +S'wife' +p103455 +tp103456 +a(g103453 +g103455 +S'of' +p103457 +tp103458 +a(g103455 +g103457 +S'a' +p103459 +tp103460 +a(g103457 +g103459 +S'lace' +p103461 +tp103462 +a(g103459 +g103461 +S'merchant,' +p103463 +tp103464 +a(g103461 +g103463 +S'is' +p103465 +tp103466 +a(g103463 +g103465 +S'shown' +p103467 +tp103468 +a(g103465 +g103467 +S'in' +p103469 +tp103470 +a(g103467 +g103469 +S'three-quarter' +p103471 +tp103472 +a(g103469 +g103471 +S'length' +p103473 +tp103474 +a(g103471 +g103473 +S'against' +p103475 +tp103476 +a(g103473 +g103475 +S'a' +p103477 +tp103478 +a(g103475 +g103477 +S'magenta' +p103479 +tp103480 +a(g103477 +g103479 +S'damask' +p103481 +tp103482 +a(g103479 +g103481 +S'background.' +p103483 +tp103484 +a(g103481 +g103483 +S'she' +p103485 +tp103486 +a(g103483 +g103485 +S'wears' +p103487 +tp103488 +a(g103485 +g103487 +S'a' +p103489 +tp103490 +a(g103487 +g103489 +S'black' +p103491 +tp103492 +a(g103489 +g103491 +S'velvet' +p103493 +tp103494 +a(g103491 +g103493 +S'evening' +p103495 +tp103496 +a(g103493 +g103495 +S'dress' +p103497 +tp103498 +a(g103495 +g103497 +S'with' +p103499 +tp103500 +a(g103497 +g103499 +S'a' +p103501 +tp103502 +a(g103499 +g103501 +S'white' +p103503 +tp103504 +a(g103501 +g103503 +S'lace' +p103505 +tp103506 +a(g103503 +g103505 +S'band' +p103507 +tp103508 +a(g103505 +g103507 +S'at' +p103509 +tp103510 +a(g103507 +g103509 +S'the' +p103511 +tp103512 +a(g103509 +g103511 +S'top' +p103513 +tp103514 +a(g103511 +g103513 +S'which' +p103515 +tp103516 +a(g103513 +g103515 +S'is' +p103517 +tp103518 +a(g103515 +g103517 +S'overlaid' +p103519 +tp103520 +a(g103517 +g103519 +S'with' +p103521 +tp103522 +a(g103519 +g103521 +S'a' +p103523 +tp103524 +a(g103521 +g103523 +S'black' +p103525 +tp103526 +a(g103523 +g103525 +S'lace' +p103527 +tp103528 +a(g103525 +g103527 +S'shawl.' +p103529 +tp103530 +a(g103527 +g103529 +S'the' +p103531 +tp103532 +a(g103529 +g103531 +S'black' +p103533 +tp103534 +a(g103531 +g103533 +S'dress' +p103535 +tp103536 +a(g103533 +g103535 +S'and' +p103537 +tp103538 +a(g103535 +g103537 +S'her' +p103539 +tp103540 +a(g103537 +g103539 +S'skin' +p103541 +tp103542 +a(g103539 +g103541 +S'offset' +p103543 +tp103544 +a(g103541 +g103543 +S'her' +p103545 +tp103546 +a(g103543 +g103545 +S'glistening' +p103547 +tp103548 +a(g103545 +g103547 +S'jewels.' +p103549 +tp103550 +a(g103547 +g103549 +S'the' +p103551 +tp103552 +a(g103549 +g103551 +S'surface' +p103553 +tp103554 +a(g103551 +g103553 +S'is' +p103555 +tp103556 +a(g103553 +g103555 +S'finely' +p103557 +tp103558 +a(g103555 +g103557 +S'finished,' +p103559 +tp103560 +a(g103557 +g103559 +S'and' +p103561 +tp103562 +a(g103559 +g103561 +S'the' +p103563 +tp103564 +a(g103561 +g103563 +S'brushstroke' +p103565 +tp103566 +a(g103563 +g103565 +S'almost' +p103567 +tp103568 +a(g103565 +g103567 +S'invisible.' +p103569 +tp103570 +a(g103567 +g103569 +S'ingres' +p103571 +tp103572 +a(g103569 +g103571 +S'has' +p103573 +tp103574 +a(g103571 +g103573 +S'simplified' +p103575 +tp103576 +a(g103573 +g103575 +S'madame' +p103577 +tp103578 +a(g103575 +g103577 +S"moitessier's" +p103579 +tp103580 +a(g103577 +g103579 +S'features,' +p103581 +tp103582 +a(g103579 +g103581 +S'recalling' +p103583 +tp103584 +a(g103581 +g103583 +S'a' +p103585 +tp103586 +a(g103583 +g103585 +S'greco-roman' +p103587 +tp103588 +a(g103585 +g103587 +S'ideal.' +p103589 +tp103590 +a(g103587 +g103589 +S'her' +p103591 +tp103592 +a(g103589 +g103591 +S'hairstyle' +p103593 +tp103594 +a(g103591 +g103593 +S'and' +p103595 +tp103596 +a(g103593 +g103595 +S'the' +p103597 +tp103598 +a(g103595 +g103597 +S'decorative' +p103599 +tp103600 +a(g103597 +g103599 +S'halo' +p103601 +tp103602 +a(g103599 +g103601 +S'of' +p103603 +tp103604 +a(g103601 +g103603 +S'roses' +p103605 +tp103606 +a(g103603 +g103605 +S'further' +p103607 +tp103608 +a(g103605 +g103607 +S'accentuate' +p103609 +tp103610 +a(g103607 +g103609 +S'the' +p103611 +tp103612 +a(g103609 +g103611 +S'fact' +p103613 +tp103614 +a(g103611 +g103613 +S'that' +p103615 +tp103616 +a(g103613 +g103615 +S'her' +p103617 +tp103618 +a(g103615 +g103617 +S'face' +p103619 +tp103620 +a(g103617 +g103619 +S'is' +p103621 +tp103622 +a(g103619 +g103621 +S'perfectly' +p103623 +tp103624 +a(g103621 +g103623 +S'oval' +p103625 +tp103626 +a(g103623 +g103625 +S'and' +p103627 +tp103628 +a(g103625 +g103627 +S'her' +p103629 +tp103630 +a(g103627 +g103629 +S'features' +p103631 +tp103632 +a(g103629 +g103631 +S'symmetrical.' +p103633 +tp103634 +a(g103631 +g103633 +S'the' +p103635 +tp103636 +a(g103633 +g103635 +S"sitter's" +p103637 +tp103638 +a(g103635 +g103637 +S'body' +p103639 +tp103640 +a(g103637 +g103639 +S'is' +p103641 +tp103642 +a(g103639 +g103641 +S'rather' +p103643 +tp103644 +a(g103641 +g103643 +S'flat,' +p103645 +tp103646 +a(g103643 +g103645 +S'thus' +p103647 +tp103648 +a(g103645 +g103647 +S'emphasizing' +p103649 +tp103650 +a(g103647 +g103649 +S'that' +p103651 +tp103652 +a(g103649 +g103651 +S'the' +p103653 +tp103654 +a(g103651 +g103653 +S'figure-ground' +p103655 +tp103656 +a(g103653 +g103655 +S'relationship' +p103657 +tp103658 +a(g103655 +g103657 +S'is' +p103659 +tp103660 +a(g103657 +g103659 +S'a' +p103661 +tp103662 +a(g103659 +g103661 +S'play' +p103663 +tp103664 +a(g103661 +g103663 +S'between' +p103665 +tp103666 +a(g103663 +g103665 +S'lines' +p103667 +tp103668 +a(g103665 +g103667 +S'and' +p103669 +tp103670 +a(g103667 +g103669 +S'shapes.' +p103671 +tp103672 +a(g103669 +g103671 +S'ingres,' +p103673 +tp103674 +a(g103671 +g103673 +S'by' +p103675 +tp103676 +a(g103673 +g103675 +S'exploiting' +p103677 +tp103678 +a(g103675 +g103677 +S'the' +p103679 +tp103680 +a(g103677 +g103679 +S'curvilinear' +p103681 +tp103682 +a(g103679 +g103681 +S'possibilities' +p103683 +tp103684 +a(g103681 +g103683 +S'of' +p103685 +tp103686 +a(g103683 +g103685 +S'the' +p103687 +tp103688 +a(g103685 +g103687 +S'female' +p103689 +tp103690 +a(g103687 +g103689 +S'form,' +p103691 +tp103692 +a(g103689 +g103691 +S'has' +p103693 +tp103694 +a(g103691 +g103693 +S'transformed' +p103695 +tp103696 +a(g103693 +g103695 +S'madame' +p103697 +tp103698 +a(g103695 +g103697 +S'moitessier' +p103699 +tp103700 +a(g103697 +g103699 +S'into' +p103701 +tp103702 +a(g103699 +g103701 +S'a' +p103703 +tp103704 +a(g103701 +g103703 +S'monumental' +p103705 +tp103706 +a(g103703 +g103705 +S'vision' +p103707 +tp103708 +a(g103705 +g103707 +S'of' +p103709 +tp103710 +a(g103707 +g103709 +S'ideal' +p103711 +tp103712 +a(g103709 +g103711 +S'beauty.' +p103713 +tp103714 +a(g103711 +g103713 +S'in' +p103715 +tp103716 +a(g103713 +g103715 +S'this' +p103717 +tp103718 +a(g103715 +g103717 +S'lush' +p103719 +tp103720 +a(g103717 +g103719 +S'park' +p103721 +tp103722 +a(g103719 +g103721 +S'elegant' +p103723 +tp103724 +a(g103721 +g103723 +S'young' +p103725 +tp103726 +a(g103723 +g103725 +S'aristocrats' +p103727 +tp103728 +a(g103725 +g103727 +S'flirt,' +p103729 +tp103730 +a(g103727 +g103729 +S'dance,' +p103731 +tp103732 +a(g103729 +g103731 +S'and' +p103733 +tp103734 +a(g103731 +g103733 +S'engage' +p103735 +tp103736 +a(g103733 +g103735 +S'in' +p103737 +tp103738 +a(g103735 +g103737 +S'intimate' +p103739 +tp103740 +a(g103737 +g103739 +S'conversation,' +p103741 +tp103742 +a(g103739 +g103741 +S'each' +p103743 +tp103744 +a(g103741 +g103743 +S'couple' +p103745 +tp103746 +a(g103743 +g103745 +S'an' +p103747 +tp103748 +a(g103745 +g103747 +S'"episode"' +p103749 +tp103750 +a(g103747 +g103749 +S'in' +p103751 +tp103752 +a(g103749 +g103751 +S'the' +p103753 +tp103754 +a(g103751 +g103753 +S'progress' +p103755 +tp103756 +a(g103753 +g103755 +S'of' +p103757 +tp103758 +a(g103755 +g103757 +S'courtship.' +p103759 +tp103760 +a(g103757 +g103759 +S'their' +p103761 +tp103762 +a(g103759 +g103761 +S'anecdotal' +p103763 +tp103764 +a(g103761 +g103763 +S'character' +p103765 +tp103766 +a(g103763 +g103765 +S'makes' +p103767 +tp103768 +a(g103765 +g103767 +S"pater's" +p103769 +tp103770 +a(g103767 +g103769 +S'paintings' +p103771 +tp103772 +a(g103769 +g103771 +S'less' +p103773 +tp103774 +a(g103771 +g103773 +S'ambiguous' +p103775 +tp103776 +a(g103773 +g103775 +S'than' +p103777 +tp103778 +a(g103775 +g103777 +S'pater' +p103779 +tp103780 +a(g103777 +g103779 +S'studied' +p103781 +tp103782 +a(g103779 +g103781 +S'under' +p103783 +tp103784 +a(g103781 +g103783 +S'watteau—who' +p103785 +tp103786 +a(g103783 +g103785 +S'admitted' +p103787 +tp103788 +a(g103785 +g103787 +S'to' +p103789 +tp103790 +a(g103787 +g103789 +S'being' +p103791 +tp103792 +a(g103789 +g103791 +S'an' +p103793 +tp103794 +a(g103791 +g103793 +S'impatient' +p103795 +tp103796 +a(g103793 +g103795 +S'master—and' +p103797 +tp103798 +a(g103795 +g103797 +S'took' +p103799 +tp103800 +a(g103797 +g103799 +S'over' +p103801 +tp103802 +a(g103799 +g103801 +S'his' +p103803 +tp103804 +a(g103801 +g103803 +S'commissions' +p103805 +tp103806 +a(g103803 +g103805 +S'after' +p103807 +tp103808 +a(g103805 +g103807 +S'he' +p103809 +tp103810 +a(g103807 +g103809 +S'died.' +p103811 +tp103812 +a(g103809 +g103811 +S'haunted' +p103813 +tp103814 +a(g103811 +g103813 +S'by' +p103815 +tp103816 +a(g103813 +g103815 +S'fear' +p103817 +tp103818 +a(g103815 +g103817 +S'of' +p103819 +tp103820 +a(g103817 +g103819 +S'poverty,' +p103821 +tp103822 +a(g103819 +g103821 +S'pater' +p103823 +tp103824 +a(g103821 +g103823 +S'worked' +p103825 +tp103826 +a(g103823 +g103825 +S'incessantly' +p103827 +tp103828 +a(g103825 +g103827 +S'but' +p103829 +tp103830 +a(g103827 +g103829 +S'also' +p103831 +tp103832 +a(g103829 +g103831 +S'rather' +p103833 +tp103834 +a(g103831 +g103833 +S'mechanically,' +p103835 +tp103836 +a(g103833 +g103835 +S'reusing' +p103837 +tp103838 +a(g103835 +g103837 +S'figure' +p103839 +tp103840 +a(g103837 +g103839 +S'groups' +p103841 +tp103842 +a(g103839 +g103841 +S'and' +p103843 +tp103844 +a(g103841 +g103843 +S'motifs' +p103845 +tp103846 +a(g103843 +g103845 +S'from' +p103847 +tp103848 +a(g103845 +g103847 +S'one' +p103849 +tp103850 +a(g103847 +g103849 +S'painting' +p103851 +tp103852 +a(g103849 +g103851 +S'to' +p103853 +tp103854 +a(g103851 +g103853 +S'the' +p103855 +tp103856 +a(g103853 +g103855 +S'next.' +p103857 +tp103858 +a(g103855 +g103857 +S'he' +p103859 +tp103860 +a(g103857 +g103859 +S'was' +p103861 +tp103862 +a(g103859 +g103861 +S'received' +p103863 +tp103864 +a(g103861 +g103863 +S'by' +p103865 +tp103866 +a(g103863 +g103865 +S'the' +p103867 +tp103868 +a(g103865 +g103867 +S'academy' +p103869 +tp103870 +a(g103867 +g103869 +S'as' +p103871 +tp103872 +a(g103869 +g103871 +S'a' +p103873 +tp103874 +a(g103871 +g103873 +S'painter' +p103875 +tp103876 +a(g103873 +g103875 +S'of' +p103877 +tp103878 +a(g103875 +g103877 +S'"modern' +p103879 +tp103880 +a(g103877 +g103879 +S'subjects,"' +p103881 +tp103882 +a(g103879 +g103881 +S'and' +p103883 +tp103884 +a(g103881 +g103883 +S'more' +p103885 +tp103886 +a(g103883 +g103885 +S'than' +p103887 +tp103888 +a(g103885 +g103887 +S'six' +p103889 +tp103890 +a(g103887 +g103889 +S'hundred' +p103891 +tp103892 +a(g103889 +g103891 +S'of' +p103893 +tp103894 +a(g103891 +g103893 +S'his' +p103895 +tp103896 +a(g103893 +g103895 +S'several' +p103897 +tp103898 +a(g103895 +g103897 +S'of' +p103899 +tp103900 +a(g103897 +g103899 +S'the' +p103901 +tp103902 +a(g103899 +g103901 +S'poses' +p103903 +tp103904 +a(g103901 +g103903 +S'in' +p103905 +tp103906 +a(g103903 +g103905 +S'this' +p103907 +tp103908 +a(g103905 +g103907 +S'painting' +p103909 +tp103910 +a(g103907 +g103909 +S'and' +p103911 +tp103912 +a(g103909 +g103911 +S"pater's" +p103913 +tp103914 +a(g103911 +g103913 +S'unfinished' +p103915 +tp103916 +a(g103913 +g103915 +S'a' +p103917 +tp103918 +a(g103915 +g103917 +S'fevered' +p103919 +tp103920 +a(g103917 +g103919 +S'intensity' +p103921 +tp103922 +a(g103919 +g103921 +S'in' +p103923 +tp103924 +a(g103921 +g103923 +S'this' +p103925 +tp103926 +a(g103923 +g103925 +S'portraval' +p103927 +tp103928 +a(g103925 +g103927 +S'of' +p103929 +tp103930 +a(g103927 +g103929 +S'saint' +p103931 +tp103932 +a(g103929 +g103931 +S'sebastian' +p103933 +tp103934 +a(g103931 +g103933 +S'marks' +p103935 +tp103936 +a(g103933 +g103935 +S'it' +p103937 +tp103938 +a(g103935 +g103937 +S'as' +p103939 +tp103940 +a(g103937 +g103939 +S'a' +p103941 +tp103942 +a(g103939 +g103941 +S'characteristic' +p103943 +tp103944 +a(g103941 +g103943 +S'work' +p103945 +tp103946 +a(g103943 +g103945 +S'by' +p103947 +tp103948 +a(g103945 +g103947 +S'tanzio,' +p103949 +tp103950 +a(g103947 +g103949 +S'whose' +p103951 +tp103952 +a(g103949 +g103951 +S'native' +p103953 +tp103954 +a(g103951 +g103953 +S'village' +p103955 +tp103956 +a(g103953 +g103955 +S'of' +p103957 +tp103958 +a(g103955 +g103957 +S'varallo' +p103959 +tp103960 +a(g103957 +g103959 +S'in' +p103961 +tp103962 +a(g103959 +g103961 +S'the' +p103963 +tp103964 +a(g103961 +g103963 +S'mountains' +p103965 +tp103966 +a(g103963 +g103965 +S'north' +p103967 +tp103968 +a(g103965 +g103967 +S'of' +p103969 +tp103970 +a(g103967 +g103969 +S'milan' +p103971 +tp103972 +a(g103969 +g103971 +S'was' +p103973 +tp103974 +a(g103971 +g103973 +S'a' +p103975 +tp103976 +a(g103973 +g103975 +S'major' +p103977 +tp103978 +a(g103975 +g103977 +S'center' +p103979 +tp103980 +a(g103977 +g103979 +S'of' +p103981 +tp103982 +a(g103979 +g103981 +S'popular' +p103983 +tp103984 +a(g103981 +g103983 +S'piety.' +p103985 +tp103986 +a(g103983 +g103985 +S'the' +p103987 +tp103988 +a(g103985 +g103987 +S'painter' +p103989 +tp103990 +a(g103987 +g103989 +S'has' +p103991 +tp103992 +a(g103989 +g103991 +S'shown' +p103993 +tp103994 +a(g103991 +g103993 +S'sebastian,' +p103995 +tp103996 +a(g103993 +g103995 +S'who' +p103997 +tp103998 +a(g103995 +g103997 +S'was' +p103999 +tp104000 +a(g103997 +g103999 +S'persecuted' +p104001 +tp104002 +a(g103999 +g104001 +S'as' +p104003 +tp104004 +a(g104001 +g104003 +S'a' +p104005 +tp104006 +a(g104003 +g104005 +S'christian' +p104007 +tp104008 +a(g104005 +g104007 +S'under' +p104009 +tp104010 +a(g104007 +g104009 +S'diocletian,' +p104011 +tp104012 +a(g104009 +g104011 +S'being' +p104013 +tp104014 +a(g104011 +g104013 +S'rescued' +p104015 +tp104016 +a(g104013 +g104015 +S'by' +p104017 +tp104018 +a(g104015 +g104017 +S'angels' +p104019 +tp104020 +a(g104017 +g104019 +S'after' +p104021 +tp104022 +a(g104019 +g104021 +S'the' +p104023 +tp104024 +a(g104021 +g104023 +S'assault' +p104025 +tp104026 +a(g104023 +g104025 +S'on' +p104027 +tp104028 +a(g104025 +g104027 +S'him' +p104029 +tp104030 +a(g104027 +g104029 +S'by' +p104031 +tp104032 +a(g104029 +g104031 +S'the' +p104033 +tp104034 +a(g104031 +g104033 +S"emperor's" +p104035 +tp104036 +a(g104033 +g104035 +S'archers.' +p104037 +tp104038 +a(g104035 +g104037 +S'the' +p104039 +tp104040 +a(g104037 +g104039 +S'thickset' +p104041 +tp104042 +a(g104039 +g104041 +S'figure' +p104043 +tp104044 +a(g104041 +g104043 +S'at' +p104045 +tp104046 +a(g104043 +g104045 +S'the' +p104047 +tp104048 +a(g104045 +g104047 +S'right' +p104049 +tp104050 +a(g104047 +g104049 +S'who' +p104051 +tp104052 +a(g104049 +g104051 +S'tenderly' +p104053 +tp104054 +a(g104051 +g104053 +S'steadies' +p104055 +tp104056 +a(g104053 +g104055 +S"sebastian's" +p104057 +tp104058 +a(g104055 +g104057 +S'body' +p104059 +tp104060 +a(g104057 +g104059 +S'for' +p104061 +tp104062 +a(g104059 +g104061 +S'the' +p104063 +tp104064 +a(g104061 +g104063 +S"angel's" +p104065 +tp104066 +a(g104063 +g104065 +S'ministrations' +p104067 +tp104068 +a(g104065 +g104067 +S'may' +p104069 +tp104070 +a(g104067 +g104069 +S'be' +p104071 +tp104072 +a(g104069 +g104071 +S'saint' +p104073 +tp104074 +a(g104071 +g104073 +S'irene,' +p104075 +tp104076 +a(g104073 +g104075 +S'who' +p104077 +tp104078 +a(g104075 +g104077 +S'nursed' +p104079 +tp104080 +a(g104077 +g104079 +S'the' +p104081 +tp104082 +a(g104079 +g104081 +S'martyr' +p104083 +tp104084 +a(g104081 +g104083 +S'back' +p104085 +tp104086 +a(g104083 +g104085 +S'to' +p104087 +tp104088 +a(g104085 +g104087 +S'health.' +p104089 +tp104090 +a(g104087 +g104089 +S'the' +p104091 +tp104092 +a(g104089 +g104091 +S'visual' +p104093 +tp104094 +a(g104091 +g104093 +S'excitement' +p104095 +tp104096 +a(g104093 +g104095 +S'of' +p104097 +tp104098 +a(g104095 +g104097 +S"tanzio's" +p104099 +tp104100 +a(g104097 +g104099 +S'portrayal' +p104101 +tp104102 +a(g104099 +g104101 +S'serves' +p104103 +tp104104 +a(g104101 +g104103 +S'to' +p104105 +tp104106 +a(g104103 +g104105 +S'convey' +p104107 +tp104108 +a(g104105 +g104107 +S"sebastian's" +p104109 +tp104110 +a(g104107 +g104109 +S'state' +p104111 +tp104112 +a(g104109 +g104111 +S'of' +p104113 +tp104114 +a(g104111 +g104113 +S'emotional' +p104115 +tp104116 +a(g104113 +g104115 +S'transport' +p104117 +tp104118 +a(g104115 +g104117 +S'and' +p104119 +tp104120 +a(g104117 +g104119 +S'transcendence' +p104121 +tp104122 +a(g104119 +g104121 +S'of' +p104123 +tp104124 +a(g104121 +g104123 +S'bodily' +p104125 +tp104126 +a(g104123 +g104125 +S'pain.' +p104127 +tp104128 +a(g104125 +g104127 +S'contributing' +p104129 +tp104130 +a(g104127 +g104129 +S'to' +p104131 +tp104132 +a(g104129 +g104131 +S'the' +p104133 +tp104134 +a(g104131 +g104133 +S'fervid' +p104135 +tp104136 +a(g104133 +g104135 +S'drama' +p104137 +tp104138 +a(g104135 +g104137 +S'is' +p104139 +tp104140 +a(g104137 +g104139 +S'the' +p104141 +tp104142 +a(g104139 +g104141 +S'extreme' +p104143 +tp104144 +a(g104141 +g104143 +S'compression' +p104145 +tp104146 +a(g104143 +g104145 +S'of' +p104147 +tp104148 +a(g104145 +g104147 +S'the' +p104149 +tp104150 +a(g104147 +g104149 +S'composition.' +p104151 +tp104152 +a(g104149 +g104151 +S"tanzio's" +p104153 +tp104154 +a(g104151 +g104153 +S'large,' +p104155 +tp104156 +a(g104153 +g104155 +S'solid' +p104157 +tp104158 +a(g104155 +g104157 +S'forms' +p104159 +tp104160 +a(g104157 +g104159 +S'are' +p104161 +tp104162 +a(g104159 +g104161 +S'crowded' +p104163 +tp104164 +a(g104161 +g104163 +S'by' +p104165 +tp104166 +a(g104163 +g104165 +S'the' +p104167 +tp104168 +a(g104165 +g104167 +S'frame,' +p104169 +tp104170 +a(g104167 +g104169 +S'seeming' +p104171 +tp104172 +a(g104169 +g104171 +S'to' +p104173 +tp104174 +a(g104171 +g104173 +S'twist' +p104175 +tp104176 +a(g104173 +g104175 +S'and' +p104177 +tp104178 +a(g104175 +g104177 +S'strain' +p104179 +tp104180 +a(g104177 +g104179 +S'to' +p104181 +tp104182 +a(g104179 +g104181 +S'fit' +p104183 +tp104184 +a(g104181 +g104183 +S'its' +p104185 +tp104186 +a(g104183 +g104185 +S'confines.' +p104187 +tp104188 +a(g104185 +g104187 +S'if' +p104189 +tp104190 +a(g104187 +g104189 +S'the' +p104191 +tp104192 +a(g104189 +g104191 +S'vivid' +p104193 +tp104194 +a(g104191 +g104193 +S'illusionism' +p104195 +tp104196 +a(g104193 +g104195 +S'and' +p104197 +tp104198 +a(g104195 +g104197 +S'sharp' +p104199 +tp104200 +a(g104197 +g104199 +S'contrasts' +p104201 +tp104202 +a(g104199 +g104201 +S'of' +p104203 +tp104204 +a(g104201 +g104203 +S'light' +p104205 +tp104206 +a(g104203 +g104205 +S'and' +p104207 +tp104208 +a(g104205 +g104207 +S'dark' +p104209 +tp104210 +a(g104207 +g104209 +S'--' +p104211 +tp104212 +a(g104209 +g104211 +S'pulsating' +p104213 +tp104214 +a(g104211 +g104213 +S'in' +p104215 +tp104216 +a(g104213 +g104215 +S'the' +p104217 +tp104218 +a(g104215 +g104217 +S'drapery' +p104219 +tp104220 +a(g104217 +g104219 +S'across' +p104221 +tp104222 +a(g104219 +g104221 +S"sebastian's" +p104223 +tp104224 +a(g104221 +g104223 +S'lap' +p104225 +tp104226 +a(g104223 +g104225 +S'and' +p104227 +tp104228 +a(g104225 +g104227 +S'in' +p104229 +tp104230 +a(g104227 +g104229 +S'the' +p104231 +tp104232 +a(g104229 +g104231 +S'spiky' +p104233 +tp104234 +a(g104231 +g104233 +S'patterns' +p104235 +tp104236 +a(g104233 +g104235 +S'of' +p104237 +tp104238 +a(g104235 +g104237 +S'expressively' +p104239 +tp104240 +a(g104237 +g104239 +S'tapering' +p104241 +tp104242 +a(g104239 +g104241 +S'fingers' +p104243 +tp104244 +a(g104241 +g104243 +S'--' +p104245 +tp104246 +a(g104243 +g104245 +S'reveal' +p104247 +tp104248 +a(g104245 +g104247 +S'a' +p104249 +tp104250 +a(g104247 +g104249 +S'study' +p104251 +tp104252 +a(g104249 +g104251 +S'of' +p104253 +tp104254 +a(g104251 +g104253 +S"caravaggio's" +p104255 +tp104256 +a(g104253 +g104255 +S'art,' +p104257 +tp104258 +a(g104255 +g104257 +S"tanzio's" +p104259 +tp104260 +a(g104257 +g104259 +S'use' +p104261 +tp104262 +a(g104259 +g104261 +S'of' +p104263 +tp104264 +a(g104261 +g104263 +S'discordant' +p104265 +tp104266 +a(g104263 +g104265 +S'colors' +p104267 +tp104268 +a(g104265 +g104267 +S'is' +p104269 +tp104270 +a(g104267 +g104269 +S'uniquely' +p104271 +tp104272 +a(g104269 +g104271 +S'his' +p104273 +tp104274 +a(g104271 +g104273 +S'own.' +p104275 +tp104276 +a(g104273 +g104275 +S'the' +p104277 +tp104278 +a(g104275 +g104277 +S'poet' +p104279 +tp104280 +a(g104277 +g104279 +S'walt' +p104281 +tp104282 +a(g104279 +g104281 +S'whitman' +p104283 +tp104284 +a(g104281 +g104283 +S'declared,' +p104285 +tp104286 +a(g104283 +g104285 +S'“eakins' +p104287 +tp104288 +a(g104285 +g104287 +S'is' +p104289 +tp104290 +a(g104287 +g104289 +S'not' +p104291 +tp104292 +a(g104289 +g104291 +S'a' +p104293 +tp104294 +a(g104291 +g104293 +S'painter,' +p104295 +tp104296 +a(g104293 +g104295 +S'he' +p104297 +tp104298 +a(g104295 +g104297 +S'is' +p104299 +tp104300 +a(g104297 +g104299 +S'a' +p104301 +tp104302 +a(g104299 +g104301 +S'force.”' +p104303 +tp104304 +a(g104301 +g104303 +S'indeed,' +p104305 +tp104306 +a(g104303 +g104305 +S'the' +p104307 +tp104308 +a(g104305 +g104307 +S'uncompromising' +p104309 +tp104310 +a(g104307 +g104309 +S'honesty' +p104311 +tp104312 +a(g104309 +g104311 +S'in' +p104313 +tp104314 +a(g104311 +g104313 +S'eakins’' +p104315 +tp104316 +a(g104313 +g104315 +S'portraits' +p104317 +tp104318 +a(g104315 +g104317 +S'was' +p104319 +tp104320 +a(g104317 +g104319 +S'thought' +p104321 +tp104322 +a(g104319 +g104321 +S'too' +p104323 +tp104324 +a(g104321 +g104323 +S'crude' +p104325 +tp104326 +a(g104323 +g104325 +S'for' +p104327 +tp104328 +a(g104325 +g104327 +S'social' +p104329 +tp104330 +a(g104327 +g104329 +S'propriety.' +p104331 +tp104332 +a(g104329 +g104331 +S'as' +p104333 +tp104334 +a(g104331 +g104333 +S'one' +p104335 +tp104336 +a(g104333 +g104335 +S'philadelphia' +p104337 +tp104338 +a(g104335 +g104337 +S'gentleman' +p104339 +tp104340 +a(g104337 +g104339 +S'joked,' +p104341 +tp104342 +a(g104339 +g104341 +S'eakins' +p104343 +tp104344 +a(g104341 +g104343 +S'“would' +p104345 +tp104346 +a(g104343 +g104345 +S'bring' +p104347 +tp104348 +a(g104345 +g104347 +S'out' +p104349 +tp104350 +a(g104347 +g104349 +S'all' +p104351 +tp104352 +a(g104349 +g104351 +S'the' +p104353 +tp104354 +a(g104351 +g104353 +S'traits' +p104355 +tp104356 +a(g104353 +g104355 +S'of' +p104357 +tp104358 +a(g104355 +g104357 +S'my' +p104359 +tp104360 +a(g104357 +g104359 +S'character' +p104361 +tp104362 +a(g104359 +g104361 +S'that' +p104363 +tp104364 +a(g104361 +g104363 +S'i' +p104365 +tp104366 +a(g104363 +g104365 +S'had' +p104367 +tp104368 +a(g104365 +g104367 +S'been' +p104369 +tp104370 +a(g104367 +g104369 +S'trying' +p104371 +tp104372 +a(g104369 +g104371 +S'to' +p104373 +tp104374 +a(g104371 +g104373 +S'hide' +p104375 +tp104376 +a(g104373 +g104375 +S'from' +p104377 +tp104378 +a(g104375 +g104377 +S'the' +p104379 +tp104380 +a(g104377 +g104379 +S'public' +p104381 +tp104382 +a(g104379 +g104381 +S'for' +p104383 +tp104384 +a(g104381 +g104383 +S'years.”' +p104385 +tp104386 +a(g104383 +g104385 +S'a' +p104387 +tp104388 +a(g104385 +g104387 +S'few' +p104389 +tp104390 +a(g104387 +g104389 +S'doctors,' +p104391 +tp104392 +a(g104389 +g104391 +S'professors,' +p104393 +tp104394 +a(g104391 +g104393 +S'and' +p104395 +tp104396 +a(g104393 +g104395 +S'other' +p104397 +tp104398 +a(g104395 +g104397 +S'intellectuals' +p104399 +tp104400 +a(g104397 +g104399 +S'did' +p104401 +tp104402 +a(g104399 +g104401 +S'appreciate' +p104403 +tp104404 +a(g104401 +g104403 +S'his' +p104405 +tp104406 +a(g104403 +g104405 +S'penetrating' +p104407 +tp104408 +a(g104405 +g104407 +S'analyses.' +p104409 +tp104410 +a(g104407 +g104409 +S'the' +p104411 +tp104412 +a(g104409 +g104411 +S'full-length' +p104413 +tp104414 +a(g104411 +g104413 +S'the' +p104415 +tp104416 +a(g104413 +g104415 +S'church' +p104417 +tp104418 +a(g104415 +g104417 +S'scholar,' +p104419 +tp104420 +a(g104417 +g104419 +S'at' +p104421 +tp104422 +a(g104419 +g104421 +S'age' +p104423 +tp104424 +a(g104421 +g104423 +S'sixty-three,' +p104425 +tp104426 +a(g104423 +g104425 +S'was' +p104427 +tp104428 +a(g104425 +g104427 +S'only' +p104429 +tp104430 +a(g104427 +g104429 +S'two' +p104431 +tp104432 +a(g104429 +g104431 +S'years' +p104433 +tp104434 +a(g104431 +g104433 +S'older' +p104435 +tp104436 +a(g104433 +g104435 +S'than' +p104437 +tp104438 +a(g104435 +g104437 +S'the' +p104439 +tp104440 +a(g104437 +g104439 +S'painter;' +p104441 +tp104442 +a(g104439 +g104441 +S'even' +p104443 +tp104444 +a(g104441 +g104443 +S'so,' +p104445 +tp104446 +a(g104443 +g104445 +S'eakins' +p104447 +tp104448 +a(g104445 +g104447 +S'rudely' +p104449 +tp104450 +a(g104447 +g104449 +S'called' +p104451 +tp104452 +a(g104449 +g104451 +S'falconio' +p104453 +tp104454 +a(g104451 +g104453 +S'“the' +p104455 +tp104456 +a(g104453 +g104455 +S'old' +p104457 +tp104458 +a(g104455 +g104457 +S'man.”' +p104459 +tp104460 +a(g104457 +g104459 +S'eakins’' +p104461 +tp104462 +a(g104459 +g104461 +S'manners' +p104463 +tp104464 +a(g104461 +g104463 +S'were' +p104465 +tp104466 +a(g104463 +g104465 +S'blunt,' +p104467 +tp104468 +a(g104465 +g104467 +S'and' +p104469 +tp104470 +a(g104467 +g104469 +S'his' +p104471 +tp104472 +a(g104469 +g104471 +S'art' +p104473 +tp104474 +a(g104471 +g104473 +S'seldom' +p104475 +tp104476 +a(g104473 +g104475 +S'flattered.' +p104477 +tp104478 +a(g104475 +g104477 +S'among' +p104479 +tp104480 +a(g104477 +g104479 +S'the' +p104481 +tp104482 +a(g104479 +g104481 +S'national' +p104483 +tp104484 +a(g104481 +g104483 +S'gallery’s' +p104485 +tp104486 +a(g104483 +g104485 +S'other' +p104487 +tp104488 +a(g104485 +g104487 +S'candid,' +p104489 +tp104490 +a(g104487 +g104489 +S'late' +p104491 +tp104492 +a(g104489 +g104491 +S'portraits' +p104493 +tp104494 +a(g104491 +g104493 +S'by' +p104495 +tp104496 +a(g104493 +g104495 +S'eakins' +p104497 +tp104498 +a(g104495 +g104497 +S'are' +p104499 +tp104500 +a(g104497 +g104499 +S'widespread' +p104501 +tp104502 +a(g104499 +g104501 +S'interest' +p104503 +tp104504 +a(g104501 +g104503 +S'in' +p104505 +tp104506 +a(g104503 +g104505 +S'the' +p104507 +tp104508 +a(g104505 +g104507 +S'story' +p104509 +tp104510 +a(g104507 +g104509 +S'of' +p104511 +tp104512 +a(g104509 +g104511 +S'laocoön,' +p104513 +tp104514 +a(g104511 +g104513 +S'a' +p104515 +tp104516 +a(g104513 +g104515 +S'mythical' +p104517 +tp104518 +a(g104515 +g104517 +S'priest' +p104519 +tp104520 +a(g104517 +g104519 +S'of' +p104521 +tp104522 +a(g104519 +g104521 +S'troy,' +p104523 +tp104524 +a(g104521 +g104523 +S'developed' +p104525 +tp104526 +a(g104523 +g104525 +S'after' +p104527 +tp104528 +a(g104525 +g104527 +S'an' +p104529 +tp104530 +a(g104527 +g104529 +S'ancient,' +p104531 +tp104532 +a(g104529 +g104531 +S'monumental' +p104533 +tp104534 +a(g104531 +g104533 +S'sculpture' +p104535 +tp104536 +a(g104533 +g104535 +S'representing' +p104537 +tp104538 +a(g104535 +g104537 +S'him' +p104539 +tp104540 +a(g104537 +g104539 +S'and' +p104541 +tp104542 +a(g104539 +g104541 +S'his' +p104543 +tp104544 +a(g104541 +g104543 +S'two' +p104545 +tp104546 +a(g104543 +g104545 +S'sons' +p104547 +tp104548 +a(g104545 +g104547 +S'was' +p104549 +tp104550 +a(g104547 +g104549 +S'unearthed' +p104551 +tp104552 +a(g104549 +g104551 +S'in' +p104553 +tp104554 +a(g104551 +g104553 +S'1506' +p104555 +tp104556 +a(g104553 +g104555 +S'in' +p104557 +tp104558 +a(g104555 +g104557 +S'rome.' +p104559 +tp104560 +a(g104557 +g104559 +S'suspecting' +p104561 +tp104562 +a(g104559 +g104561 +S'trickery,' +p104563 +tp104564 +a(g104561 +g104563 +S'laocoön' +p104565 +tp104566 +a(g104563 +g104565 +S'had' +p104567 +tp104568 +a(g104565 +g104567 +S'warned' +p104569 +tp104570 +a(g104567 +g104569 +S'his' +p104571 +tp104572 +a(g104569 +g104571 +S'countrymen' +p104573 +tp104574 +a(g104571 +g104573 +S'not' +p104575 +tp104576 +a(g104573 +g104575 +S'to' +p104577 +tp104578 +a(g104575 +g104577 +S'accept' +p104579 +tp104580 +a(g104577 +g104579 +S'the' +p104581 +tp104582 +a(g104579 +g104581 +S'wooden' +p104583 +tp104584 +a(g104581 +g104583 +S'horse' +p104585 +tp104586 +a(g104583 +g104585 +S'left' +p104587 +tp104588 +a(g104585 +g104587 +S'outside' +p104589 +tp104590 +a(g104587 +g104589 +S'troy' +p104591 +tp104592 +a(g104589 +g104591 +S'by' +p104593 +tp104594 +a(g104591 +g104593 +S'the' +p104595 +tp104596 +a(g104593 +g104595 +S'greeks' +p104597 +tp104598 +a(g104595 +g104597 +S'and' +p104599 +tp104600 +a(g104597 +g104599 +S'had' +p104601 +tp104602 +a(g104599 +g104601 +S'hurled' +p104603 +tp104604 +a(g104601 +g104603 +S'his' +p104605 +tp104606 +a(g104603 +g104605 +S'spear' +p104607 +tp104608 +a(g104605 +g104607 +S'at' +p104609 +tp104610 +a(g104607 +g104609 +S'it' +p104611 +tp104612 +a(g104609 +g104611 +S'to' +p104613 +tp104614 +a(g104611 +g104613 +S'prove' +p104615 +tp104616 +a(g104613 +g104615 +S'that' +p104617 +tp104618 +a(g104615 +g104617 +S'it' +p104619 +tp104620 +a(g104617 +g104619 +S'was' +p104621 +tp104622 +a(g104619 +g104621 +S'hollow.' +p104623 +tp104624 +a(g104621 +g104623 +S'thus' +p104625 +tp104626 +a(g104623 +g104625 +S'the' +p104627 +tp104628 +a(g104625 +g104627 +S'priest' +p104629 +tp104630 +a(g104627 +g104629 +S'incurred' +p104631 +tp104632 +a(g104629 +g104631 +S'the' +p104633 +tp104634 +a(g104631 +g104633 +S'wrath' +p104635 +tp104636 +a(g104633 +g104635 +S'of' +p104637 +tp104638 +a(g104635 +g104637 +S'the' +p104639 +tp104640 +a(g104637 +g104639 +S'gods,' +p104641 +tp104642 +a(g104639 +g104641 +S'for' +p104643 +tp104644 +a(g104641 +g104643 +S'desecrating' +p104645 +tp104646 +a(g104643 +g104645 +S'an' +p104647 +tp104648 +a(g104645 +g104647 +S'object' +p104649 +tp104650 +a(g104647 +g104649 +S'dedicated' +p104651 +tp104652 +a(g104649 +g104651 +S'to' +p104653 +tp104654 +a(g104651 +g104653 +S'the' +p104655 +tp104656 +a(g104653 +g104655 +S'goddess' +p104657 +tp104658 +a(g104655 +g104657 +S'athena.' +p104659 +tp104660 +a(g104657 +g104659 +S'el' +p104661 +tp104662 +a(g104659 +g104661 +S'greco' +p104663 +tp104664 +a(g104661 +g104663 +S'depicted' +p104665 +tp104666 +a(g104663 +g104665 +S'serpents,' +p104667 +tp104668 +a(g104665 +g104667 +S'sent' +p104669 +tp104670 +a(g104667 +g104669 +S'by' +p104671 +tp104672 +a(g104669 +g104671 +S'the' +p104673 +tp104674 +a(g104671 +g104673 +S'angry' +p104675 +tp104676 +a(g104673 +g104675 +S'gods,' +p104677 +tp104678 +a(g104675 +g104677 +S'engaging' +p104679 +tp104680 +a(g104677 +g104679 +S'laocoön' +p104681 +tp104682 +a(g104679 +g104681 +S'and' +p104683 +tp104684 +a(g104681 +g104683 +S'one' +p104685 +tp104686 +a(g104683 +g104685 +S'son' +p104687 +tp104688 +a(g104685 +g104687 +S'in' +p104689 +tp104690 +a(g104687 +g104689 +S'a' +p104691 +tp104692 +a(g104689 +g104691 +S'mortal' +p104693 +tp104694 +a(g104691 +g104693 +S'struggle,' +p104695 +tp104696 +a(g104693 +g104695 +S'while' +p104697 +tp104698 +a(g104695 +g104697 +S'a' +p104699 +tp104700 +a(g104697 +g104699 +S'second' +p104701 +tp104702 +a(g104699 +g104701 +S'son' +p104703 +tp104704 +a(g104701 +g104703 +S'lies' +p104705 +tp104706 +a(g104703 +g104705 +S'already' +p104707 +tp104708 +a(g104705 +g104707 +S'dead' +p104709 +tp104710 +a(g104707 +g104709 +S'at' +p104711 +tp104712 +a(g104709 +g104711 +S'his' +p104713 +tp104714 +a(g104711 +g104713 +S"father's" +p104715 +tp104716 +a(g104713 +g104715 +S'side.' +p104717 +tp104718 +a(g104715 +g104717 +S'the' +p104719 +tp104720 +a(g104717 +g104719 +S'identity' +p104721 +tp104722 +a(g104719 +g104721 +S'of' +p104723 +tp104724 +a(g104721 +g104723 +S'the' +p104725 +tp104726 +a(g104723 +g104725 +S'unfinished' +p104727 +tp104728 +a(g104725 +g104727 +S'figures' +p104729 +tp104730 +a(g104727 +g104729 +S'on' +p104731 +tp104732 +a(g104729 +g104731 +S'the' +p104733 +tp104734 +a(g104731 +g104733 +S'right' +p104735 +tp104736 +a(g104733 +g104735 +S'continues' +p104737 +tp104738 +a(g104735 +g104737 +S'to' +p104739 +tp104740 +a(g104737 +g104739 +S'be' +p104741 +tp104742 +a(g104739 +g104741 +S'debated;' +p104743 +tp104744 +a(g104741 +g104743 +S'perhaps' +p104745 +tp104746 +a(g104743 +g104745 +S'they' +p104747 +tp104748 +a(g104745 +g104747 +S'represent' +p104749 +tp104750 +a(g104747 +g104749 +S'the' +p104751 +tp104752 +a(g104749 +g104751 +S'gods' +p104753 +tp104754 +a(g104751 +g104753 +S'themselves' +p104755 +tp104756 +a(g104753 +g104755 +S'supervising' +p104757 +tp104758 +a(g104755 +g104757 +S'their' +p104759 +tp104760 +a(g104757 +g104759 +S'vengeance.' +p104761 +tp104762 +a(g104759 +g104761 +S'utilizing' +p104763 +tp104764 +a(g104761 +g104763 +S'every' +p104765 +tp104766 +a(g104763 +g104765 +S'available' +p104767 +tp104768 +a(g104765 +g104767 +S'means' +p104769 +tp104770 +a(g104767 +g104769 +S'—' +p104771 +tp104772 +a(g104769 +g104771 +S'writhing' +p104773 +tp104774 +a(g104771 +g104773 +S'line,' +p104775 +tp104776 +a(g104773 +g104775 +S'lurid' +p104777 +tp104778 +a(g104775 +g104777 +S'color,' +p104779 +tp104780 +a(g104777 +g104779 +S'and' +p104781 +tp104782 +a(g104779 +g104781 +S'illogically' +p104783 +tp104784 +a(g104781 +g104783 +S'conceived' +p104785 +tp104786 +a(g104783 +g104785 +S'space' +p104787 +tp104788 +a(g104785 +g104787 +S'—' +p104789 +tp104790 +a(g104787 +g104789 +S'the' +p104791 +tp104792 +a(g104789 +g104791 +S'artist' +p104793 +tp104794 +a(g104791 +g104793 +S'projected' +p104795 +tp104796 +a(g104793 +g104795 +S'an' +p104797 +tp104798 +a(g104795 +g104797 +S'unrelieved' +p104799 +tp104800 +a(g104797 +g104799 +S'sense' +p104801 +tp104802 +a(g104799 +g104801 +S'of' +p104803 +tp104804 +a(g104801 +g104803 +S'doom.' +p104805 +tp104806 +a(g104803 +g104805 +S'the' +p104807 +tp104808 +a(g104805 +g104807 +S'figures' +p104809 +tp104810 +a(g104807 +g104809 +S'seem' +p104811 +tp104812 +a(g104809 +g104811 +S'incorporeal;' +p104813 +tp104814 +a(g104811 +g104813 +S'sinuous' +p104815 +tp104816 +a(g104813 +g104815 +S'outlines' +p104817 +tp104818 +a(g104815 +g104817 +S'and' +p104819 +tp104820 +a(g104817 +g104819 +S'anti–natural' +p104821 +tp104822 +a(g104819 +g104821 +S'flesh' +p104823 +tp104824 +a(g104821 +g104823 +S'tones' +p104825 +tp104826 +a(g104823 +g104825 +S'contribute' +p104827 +tp104828 +a(g104825 +g104827 +S'to' +p104829 +tp104830 +a(g104827 +g104829 +S'their' +p104831 +tp104832 +a(g104829 +g104831 +S'specterlike' +p104833 +tp104834 +a(g104831 +g104833 +S'appearance.' +p104835 +tp104836 +a(g104833 +g104835 +S'the' +p104837 +tp104838 +a(g104835 +g104837 +S'striking' +p104839 +tp104840 +a(g104837 +g104839 +S'setting' +p104841 +tp104842 +a(g104839 +g104841 +S'carries' +p104843 +tp104844 +a(g104841 +g104843 +S'this' +p104845 +tp104846 +a(g104843 +g104845 +S'visionary' +p104847 +tp104848 +a(g104845 +g104847 +S'late' +p104849 +tp104850 +a(g104847 +g104849 +S'work' +p104851 +tp104852 +a(g104849 +g104851 +S'of' +p104853 +tp104854 +a(g104851 +g104853 +S'el' +p104855 +tp104856 +a(g104853 +g104855 +S'greco' +p104857 +tp104858 +a(g104855 +g104857 +S'to' +p104859 +tp104860 +a(g104857 +g104859 +S'an' +p104861 +tp104862 +a(g104859 +g104861 +S'apocalyptic' +p104863 +tp104864 +a(g104861 +g104863 +S'extreme.' +p104865 +tp104866 +a(g104863 +g104865 +S'did' +p104867 +tp104868 +a(g104865 +g104867 +S'el' +p104869 +tp104870 +a(g104867 +g104869 +S'greco' +p104871 +tp104872 +a(g104869 +g104871 +S'intend' +p104873 +tp104874 +a(g104871 +g104873 +S'to' +p104875 +tp104876 +a(g104873 +g104875 +S'relate' +p104877 +tp104878 +a(g104875 +g104877 +S'this' +p104879 +tp104880 +a(g104877 +g104879 +S'mythical' +p104881 +tp104882 +a(g104879 +g104881 +S'theme' +p104883 +tp104884 +a(g104881 +g104883 +S'of' +p104885 +tp104886 +a(g104883 +g104885 +S'conflict' +p104887 +tp104888 +a(g104885 +g104887 +S'and' +p104889 +tp104890 +a(g104887 +g104889 +S'divine' +p104891 +tp104892 +a(g104889 +g104891 +S'retribution' +p104893 +tp104894 +a(g104891 +g104893 +S'to' +p104895 +tp104896 +a(g104893 +g104895 +S'the' +p104897 +tp104898 +a(g104895 +g104897 +S'inquisition' +p104899 +tp104900 +a(g104897 +g104899 +S'then' +p104901 +tp104902 +a(g104899 +g104901 +S'raging' +p104903 +tp104904 +a(g104901 +g104903 +S'in' +p104905 +tp104906 +a(g104903 +g104905 +S'toledo?' +p104907 +tp104908 +a(g104905 +g104907 +S'whatever' +p104909 +tp104910 +a(g104907 +g104909 +S'the' +p104911 +tp104912 +a(g104909 +g104911 +S'case,' +p104913 +tp104914 +a(g104911 +g104913 +S'the' +p104915 +tp104916 +a(g104913 +g104915 +S'story' +p104917 +tp104918 +a(g104915 +g104917 +S'of' +p104919 +tp104920 +a(g104917 +g104919 +S'laocoön' +p104921 +tp104922 +a(g104919 +g104921 +S'is' +p104923 +tp104924 +a(g104921 +g104923 +S'the' +p104925 +tp104926 +a(g104923 +g104925 +S'only' +p104927 +tp104928 +a(g104925 +g104927 +S'classical' +p104929 +tp104930 +a(g104927 +g104929 +S'theme' +p104931 +tp104932 +a(g104929 +g104931 +S'he' +p104933 +tp104934 +a(g104931 +g104933 +S'is' +p104935 +tp104936 +a(g104933 +g104935 +S'known' +p104937 +tp104938 +a(g104935 +g104937 +S'to' +p104939 +tp104940 +a(g104937 +g104939 +S'have' +p104941 +tp104942 +a(g104939 +g104941 +S'painted.' +p104943 +tp104944 +a(g104941 +g104943 +S'in' +p104945 +tp104946 +a(g104943 +g104945 +S'1877,' +p104947 +tp104948 +a(g104945 +g104947 +S'mary' +p104949 +tp104950 +a(g104947 +g104949 +S"cassatt's" +p104951 +tp104952 +a(g104949 +g104951 +S'parents' +p104953 +tp104954 +a(g104951 +g104953 +S'came' +p104955 +tp104956 +a(g104953 +g104955 +S'to' +p104957 +tp104958 +a(g104955 +g104957 +S'live' +p104959 +tp104960 +a(g104957 +g104959 +S'with' +p104961 +tp104962 +a(g104959 +g104961 +S'her' +p104963 +tp104964 +a(g104961 +g104963 +S'in' +p104965 +tp104966 +a(g104963 +g104965 +S'paris.' +p104967 +tp104968 +a(g104965 +g104967 +S'from' +p104969 +tp104970 +a(g104967 +g104969 +S'this' +p104971 +tp104972 +a(g104969 +g104971 +S'time' +p104973 +tp104974 +a(g104971 +g104973 +S'on,' +p104975 +tp104976 +a(g104973 +g104975 +S'her' +p104977 +tp104978 +a(g104975 +g104977 +S'mother' +p104979 +tp104980 +a(g104977 +g104979 +S'katherine' +p104981 +tp104982 +a(g104979 +g104981 +S'became' +p104983 +tp104984 +a(g104981 +g104983 +S'a' +p104985 +tp104986 +a(g104983 +g104985 +S'favorite' +p104987 +tp104988 +a(g104985 +g104987 +S'subject' +p104989 +tp104990 +a(g104987 +g104989 +S'for' +p104991 +tp104992 +a(g104989 +g104991 +S"cassatt's" +p104993 +tp104994 +a(g104991 +g104993 +S'paintings,' +p104995 +tp104996 +a(g104993 +g104995 +S'drawings,' +p104997 +tp104998 +a(g104995 +g104997 +S'and' +p104999 +tp105000 +a(g104997 +g104999 +S'prints.' +p105001 +tp105002 +a(g104999 +g105001 +S'in' +p105003 +tp105004 +a(g105001 +g105003 +S'this' +p105005 +tp105006 +a(g105003 +g105005 +S'portrait,' +p105007 +tp105008 +a(g105005 +g105007 +S'mrs.' +p105009 +tp105010 +a(g105007 +g105009 +S'cassatt,' +p105011 +tp105012 +a(g105009 +g105011 +S'who' +p105013 +tp105014 +a(g105011 +g105013 +S'was' +p105015 +tp105016 +a(g105013 +g105015 +S'in' +p105017 +tp105018 +a(g105015 +g105017 +S'poor' +p105019 +tp105020 +a(g105017 +g105019 +S'health,' +p105021 +tp105022 +a(g105019 +g105021 +S'sits' +p105023 +tp105024 +a(g105021 +g105023 +S'in' +p105025 +tp105026 +a(g105023 +g105025 +S'a' +p105027 +tp105028 +a(g105025 +g105027 +S'chair,' +p105029 +tp105030 +a(g105027 +g105029 +S'her' +p105031 +tp105032 +a(g105029 +g105031 +S'head' +p105033 +tp105034 +a(g105031 +g105033 +S'resting' +p105035 +tp105036 +a(g105033 +g105035 +S'on' +p105037 +tp105038 +a(g105035 +g105037 +S'her' +p105039 +tp105040 +a(g105037 +g105039 +S'hand;' +p105041 +tp105042 +a(g105039 +g105041 +S'she' +p105043 +tp105044 +a(g105041 +g105043 +S'seems' +p105045 +tp105046 +a(g105043 +g105045 +S'immersed' +p105047 +tp105048 +a(g105045 +g105047 +S'in' +p105049 +tp105050 +a(g105047 +g105049 +S'a' +p105051 +tp105052 +a(g105049 +g105051 +S'contemplative' +p105053 +tp105054 +a(g105051 +g105053 +S'reverie.' +p105055 +tp105056 +a(g105053 +g105055 +S'this' +p105057 +tp105058 +a(g105055 +g105057 +S'complex' +p105059 +tp105060 +a(g105057 +g105059 +S'print' +p105061 +tp105062 +a(g105059 +g105061 +S'combines' +p105063 +tp105064 +a(g105061 +g105063 +S'both' +p105065 +tp105066 +a(g105063 +g105065 +S'in' +p105067 +tp105068 +a(g105065 +g105067 +S'the' +p105069 +tp105070 +a(g105067 +g105069 +S'final' +p105071 +tp105072 +a(g105069 +g105071 +S'this' +p105073 +tp105074 +a(g105071 +g105073 +S'dashing' +p105075 +tp105076 +a(g105073 +g105075 +S'young' +p105077 +tp105078 +a(g105075 +g105077 +S'captain' +p105079 +tp105080 +a(g105077 +g105079 +S'was' +p105081 +tp105082 +a(g105079 +g105081 +S'to' +p105083 +tp105084 +a(g105081 +g105083 +S'become' +p105085 +tp105086 +a(g105083 +g105085 +S'one' +p105087 +tp105088 +a(g105085 +g105087 +S'of' +p105089 +tp105090 +a(g105087 +g105089 +S"america's" +p105091 +tp105092 +a(g105089 +g105091 +S'most' +p105093 +tp105094 +a(g105091 +g105093 +S'famous' +p105095 +tp105096 +a(g105093 +g105095 +S'naval' +p105097 +tp105098 +a(g105095 +g105097 +S'commanders.' +p105099 +tp105100 +a(g105097 +g105099 +S'in' +p105101 +tp105102 +a(g105099 +g105101 +S'the' +p105103 +tp105104 +a(g105101 +g105103 +S'summer' +p105105 +tp105106 +a(g105103 +g105105 +S'of' +p105107 +tp105108 +a(g105105 +g105107 +S'1813,' +p105109 +tp105110 +a(g105107 +g105109 +S'charles' +p105111 +tp105112 +a(g105109 +g105111 +S'stewart' +p105113 +tp105114 +a(g105111 +g105113 +S'took' +p105115 +tp105116 +a(g105113 +g105115 +S'command' +p105117 +tp105118 +a(g105115 +g105117 +S'of' +p105119 +tp105120 +a(g105117 +g105119 +S'the' +p105121 +tp105122 +a(g105119 +g105121 +S'portrayed' +p105123 +tp105124 +a(g105121 +g105123 +S'at' +p105125 +tp105126 +a(g105123 +g105125 +S'age' +p105127 +tp105128 +a(g105125 +g105127 +S'thirty-three,' +p105129 +tp105130 +a(g105127 +g105129 +S'the' +p105131 +tp105132 +a(g105129 +g105131 +S'captain' +p105133 +tp105134 +a(g105131 +g105133 +S'reveals' +p105135 +tp105136 +a(g105133 +g105135 +S'his' +p105137 +tp105138 +a(g105135 +g105137 +S'years' +p105139 +tp105140 +a(g105137 +g105139 +S'of' +p105141 +tp105142 +a(g105139 +g105141 +S'active' +p105143 +tp105144 +a(g105141 +g105143 +S'duty' +p105145 +tp105146 +a(g105143 +g105145 +S'by' +p105147 +tp105148 +a(g105145 +g105147 +S'his' +p105149 +tp105150 +a(g105147 +g105149 +S'vigorous' +p105151 +tp105152 +a(g105149 +g105151 +S'stance,' +p105153 +tp105154 +a(g105151 +g105153 +S'feet' +p105155 +tp105156 +a(g105153 +g105155 +S'braced' +p105157 +tp105158 +a(g105155 +g105157 +S'apart' +p105159 +tp105160 +a(g105157 +g105159 +S'as' +p105161 +tp105162 +a(g105159 +g105161 +S'though' +p105163 +tp105164 +a(g105161 +g105163 +S'planted' +p105165 +tp105166 +a(g105163 +g105165 +S'on' +p105167 +tp105168 +a(g105165 +g105167 +S'a' +p105169 +tp105170 +a(g105167 +g105169 +S'rolling' +p105171 +tp105172 +a(g105169 +g105171 +S'deck' +p105173 +tp105174 +a(g105171 +g105173 +S'--' +p105175 +tp105176 +a(g105173 +g105175 +S'an' +p105177 +tp105178 +a(g105175 +g105177 +S'assertive,' +p105179 +tp105180 +a(g105177 +g105179 +S'even' +p105181 +tp105182 +a(g105179 +g105181 +S'swaggering,' +p105183 +tp105184 +a(g105181 +g105183 +S'posture' +p105185 +tp105186 +a(g105183 +g105185 +S'most' +p105187 +tp105188 +a(g105185 +g105187 +S'unexpected' +p105189 +tp105190 +a(g105187 +g105189 +S'in' +p105191 +tp105192 +a(g105189 +g105191 +S'a' +p105193 +tp105194 +a(g105191 +g105193 +S'formal' +p105195 +tp105196 +a(g105193 +g105195 +S'portrait.' +p105197 +tp105198 +a(g105195 +g105197 +S'his' +p105199 +tp105200 +a(g105197 +g105199 +S'thumb' +p105201 +tp105202 +a(g105199 +g105201 +S'aggressively' +p105203 +tp105204 +a(g105201 +g105203 +S'presses' +p105205 +tp105206 +a(g105203 +g105205 +S'down' +p105207 +tp105208 +a(g105205 +g105207 +S'upon' +p105209 +tp105210 +a(g105207 +g105209 +S'the' +p105211 +tp105212 +a(g105209 +g105211 +S"desk's" +p105213 +tp105214 +a(g105211 +g105213 +S'naval' +p105215 +tp105216 +a(g105213 +g105215 +S'charts,' +p105217 +tp105218 +a(g105215 +g105217 +S'and' +p105219 +tp105220 +a(g105217 +g105219 +S'a' +p105221 +tp105222 +a(g105219 +g105221 +S'world' +p105223 +tp105224 +a(g105221 +g105223 +S'globe' +p105225 +tp105226 +a(g105223 +g105225 +S'emerges' +p105227 +tp105228 +a(g105225 +g105227 +S'beneath' +p105229 +tp105230 +a(g105227 +g105229 +S'the' +p105231 +tp105232 +a(g105229 +g105231 +S'tablecloth.' +p105233 +tp105234 +a(g105231 +g105233 +S'the' +p105235 +tp105236 +a(g105233 +g105235 +S'white,' +p105237 +tp105238 +a(g105235 +g105237 +S'lower' +p105239 +tp105240 +a(g105237 +g105239 +S'half' +p105241 +tp105242 +a(g105239 +g105241 +S'of' +p105243 +tp105244 +a(g105241 +g105243 +S"stewart's" +p105245 +tp105246 +a(g105243 +g105245 +S'uniform' +p105247 +tp105248 +a(g105245 +g105247 +S'stands' +p105249 +tp105250 +a(g105247 +g105249 +S'out' +p105251 +tp105252 +a(g105249 +g105251 +S'against' +p105253 +tp105254 +a(g105251 +g105253 +S'the' +p105255 +tp105256 +a(g105253 +g105255 +S'shaded' +p105257 +tp105258 +a(g105255 +g105257 +S'room,' +p105259 +tp105260 +a(g105257 +g105259 +S'while' +p105261 +tp105262 +a(g105259 +g105261 +S'a' +p105263 +tp105264 +a(g105261 +g105263 +S'shaft' +p105265 +tp105266 +a(g105263 +g105265 +S'of' +p105267 +tp105268 +a(g105265 +g105267 +S'sunshine' +p105269 +tp105270 +a(g105267 +g105269 +S'on' +p105271 +tp105272 +a(g105269 +g105271 +S'the' +p105273 +tp105274 +a(g105271 +g105273 +S'upper' +p105275 +tp105276 +a(g105273 +g105275 +S'wall' +p105277 +tp105278 +a(g105275 +g105277 +S'silhouettes' +p105279 +tp105280 +a(g105277 +g105279 +S'his' +p105281 +tp105282 +a(g105279 +g105281 +S'dark,' +p105283 +tp105284 +a(g105281 +g105283 +S'navy' +p105285 +tp105286 +a(g105283 +g105285 +S'coat' +p105287 +tp105288 +a(g105285 +g105287 +S'and' +p105289 +tp105290 +a(g105287 +g105289 +S'cocked' +p105291 +tp105292 +a(g105289 +g105291 +S'elbow.' +p105293 +tp105294 +a(g105291 +g105293 +S'captain' +p105295 +tp105296 +a(g105293 +g105295 +S'charles' +p105297 +tp105298 +a(g105295 +g105297 +S'stewart' +p105299 +tp105300 +a(g105297 +g105299 +S'here,' +p105301 +tp105302 +a(g105299 +g105301 +S'tintoretto' +p105303 +tp105304 +a(g105301 +g105303 +S'combined' +p105305 +tp105306 +a(g105303 +g105305 +S'a' +p105307 +tp105308 +a(g105305 +g105307 +S'traditional' +p105309 +tp105310 +a(g105307 +g105309 +S'religious' +p105311 +tp105312 +a(g105309 +g105311 +S'subject' +p105313 +tp105314 +a(g105311 +g105313 +S'with' +p105315 +tp105316 +a(g105313 +g105315 +S'a' +p105317 +tp105318 +a(g105315 +g105317 +S'tender' +p105319 +tp105320 +a(g105317 +g105319 +S'image' +p105321 +tp105322 +a(g105319 +g105321 +S'of' +p105323 +tp105324 +a(g105321 +g105323 +S'young' +p105325 +tp105326 +a(g105323 +g105325 +S'motherhood.' +p105327 +tp105328 +a(g105325 +g105327 +S'shown' +p105329 +tp105330 +a(g105327 +g105329 +S'in' +p105331 +tp105332 +a(g105329 +g105331 +S'half-length,' +p105333 +tp105334 +a(g105331 +g105333 +S'the' +p105335 +tp105336 +a(g105333 +g105335 +S'virgin' +p105337 +tp105338 +a(g105335 +g105337 +S'mary' +p105339 +tp105340 +a(g105337 +g105339 +S'is' +p105341 +tp105342 +a(g105339 +g105341 +S'seated' +p105343 +tp105344 +a(g105341 +g105343 +S'in' +p105345 +tp105346 +a(g105343 +g105345 +S'an' +p105347 +tp105348 +a(g105345 +g105347 +S'unidentified' +p105349 +tp105350 +a(g105347 +g105349 +S'space,' +p105351 +tp105352 +a(g105349 +g105351 +S'with' +p105353 +tp105354 +a(g105351 +g105353 +S'the' +p105355 +tp105356 +a(g105353 +g105355 +S'christ' +p105357 +tp105358 +a(g105355 +g105357 +S'child' +p105359 +tp105360 +a(g105357 +g105359 +S'lying' +p105361 +tp105362 +a(g105359 +g105361 +S'contentedly' +p105363 +tp105364 +a(g105361 +g105363 +S'across' +p105365 +tp105366 +a(g105363 +g105365 +S'her' +p105367 +tp105368 +a(g105365 +g105367 +S'knees' +p105369 +tp105370 +a(g105367 +g105369 +S'in' +p105371 +tp105372 +a(g105369 +g105371 +S'a' +p105373 +tp105374 +a(g105371 +g105373 +S'pose' +p105375 +tp105376 +a(g105373 +g105375 +S'that' +p105377 +tp105378 +a(g105375 +g105377 +S'prefigures' +p105379 +tp105380 +a(g105377 +g105379 +S'images' +p105381 +tp105382 +a(g105379 +g105381 +S'of' +p105383 +tp105384 +a(g105381 +g105383 +S'the' +p105385 +tp105386 +a(g105383 +g105385 +S'in' +p105387 +tp105388 +a(g105385 +g105387 +S'contrast' +p105389 +tp105390 +a(g105387 +g105389 +S'to' +p105391 +tp105392 +a(g105389 +g105391 +S'the' +p105393 +tp105394 +a(g105391 +g105393 +S'dramatic' +p105395 +tp105396 +a(g105393 +g105395 +S'use' +p105397 +tp105398 +a(g105395 +g105397 +S'of' +p105399 +tp105400 +a(g105397 +g105399 +S'color' +p105401 +tp105402 +a(g105399 +g105401 +S'found' +p105403 +tp105404 +a(g105401 +g105403 +S'in' +p105405 +tp105406 +a(g105403 +g105405 +S'many' +p105407 +tp105408 +a(g105405 +g105407 +S'of' +p105409 +tp105410 +a(g105407 +g105409 +S"tintoretto's" +p105411 +tp105412 +a(g105409 +g105411 +S'late' +p105413 +tp105414 +a(g105411 +g105413 +S'works,' +p105415 +tp105416 +a(g105413 +g105415 +S'his' +p105417 +tp105418 +a(g105415 +g105417 +S'palette' +p105419 +tp105420 +a(g105417 +g105419 +S'is' +p105421 +tp105422 +a(g105419 +g105421 +S'here' +p105423 +tp105424 +a(g105421 +g105423 +S'light' +p105425 +tp105426 +a(g105423 +g105425 +S'and' +p105427 +tp105428 +a(g105425 +g105427 +S'harmonious.' +p105429 +tp105430 +a(g105427 +g105429 +S'the' +p105431 +tp105432 +a(g105429 +g105431 +S'warm' +p105433 +tp105434 +a(g105431 +g105433 +S'yellow' +p105435 +tp105436 +a(g105433 +g105435 +S'of' +p105437 +tp105438 +a(g105435 +g105437 +S'the' +p105439 +tp105440 +a(g105437 +g105439 +S'background' +p105441 +tp105442 +a(g105439 +g105441 +S'balances' +p105443 +tp105444 +a(g105441 +g105443 +S'the' +p105445 +tp105446 +a(g105443 +g105445 +S'soft' +p105447 +tp105448 +a(g105445 +g105447 +S'red' +p105449 +tp105450 +a(g105447 +g105449 +S'of' +p105451 +tp105452 +a(g105449 +g105451 +S'the' +p105453 +tp105454 +a(g105451 +g105453 +S"virgin's" +p105455 +tp105456 +a(g105453 +g105455 +S'dress' +p105457 +tp105458 +a(g105455 +g105457 +S'and' +p105459 +tp105460 +a(g105457 +g105459 +S'the' +p105461 +tp105462 +a(g105459 +g105461 +S"child's" +p105463 +tp105464 +a(g105461 +g105463 +S'rosy' +p105465 +tp105466 +a(g105463 +g105465 +S'flesh.' +p105467 +tp105468 +a(g105465 +g105467 +S'the' +p105469 +tp105470 +a(g105467 +g105469 +S'paint' +p105471 +tp105472 +a(g105469 +g105471 +S'is' +p105473 +tp105474 +a(g105471 +g105473 +S'thinly' +p105475 +tp105476 +a(g105473 +g105475 +S'applied' +p105477 +tp105478 +a(g105475 +g105477 +S'with' +p105479 +tp105480 +a(g105477 +g105479 +S'the' +p105481 +tp105482 +a(g105479 +g105481 +S'rapid,' +p105483 +tp105484 +a(g105481 +g105483 +S'confident' +p105485 +tp105486 +a(g105483 +g105485 +S'brushstrokes' +p105487 +tp105488 +a(g105485 +g105487 +S'that' +p105489 +tp105490 +a(g105487 +g105489 +S'characterize' +p105491 +tp105492 +a(g105489 +g105491 +S"tintoretto's" +p105493 +tp105494 +a(g105491 +g105493 +S'later' +p105495 +tp105496 +a(g105493 +g105495 +S'style.' +p105497 +tp105498 +a(g105495 +g105497 +S'the' +p105499 +tp105500 +a(g105497 +g105499 +S"painting's" +p105501 +tp105502 +a(g105499 +g105501 +S'small' +p105503 +tp105504 +a(g105501 +g105503 +S'size' +p105505 +tp105506 +a(g105503 +g105505 +S'and' +p105507 +tp105508 +a(g105505 +g105507 +S'intimate' +p105509 +tp105510 +a(g105507 +g105509 +S'mood' +p105511 +tp105512 +a(g105509 +g105511 +S'suggest' +p105513 +tp105514 +a(g105511 +g105513 +S'that' +p105515 +tp105516 +a(g105513 +g105515 +S'it' +p105517 +tp105518 +a(g105515 +g105517 +S'was' +p105519 +tp105520 +a(g105517 +g105519 +S'made' +p105521 +tp105522 +a(g105519 +g105521 +S'for' +p105523 +tp105524 +a(g105521 +g105523 +S'personal' +p105525 +tp105526 +a(g105523 +g105525 +S'devotion' +p105527 +tp105528 +a(g105525 +g105527 +S'in' +p105529 +tp105530 +a(g105527 +g105529 +S'a' +p105531 +tp105532 +a(g105529 +g105531 +S'private' +p105533 +tp105534 +a(g105531 +g105533 +S'home.' +p105535 +tp105536 +a(g105533 +g105535 +S'at' +p105537 +tp105538 +a(g105535 +g105537 +S'age' +p105539 +tp105540 +a(g105537 +g105539 +S'forty-seven,' +p105541 +tp105542 +a(g105539 +g105541 +S'homer' +p105543 +tp105544 +a(g105541 +g105543 +S'settled' +p105545 +tp105546 +a(g105543 +g105545 +S'in' +p105547 +tp105548 +a(g105545 +g105547 +S'prout’s' +p105549 +tp105550 +a(g105547 +g105549 +S'neck,' +p105551 +tp105552 +a(g105549 +g105551 +S'maine.' +p105553 +tp105554 +a(g105551 +g105553 +S'always' +p105555 +tp105556 +a(g105553 +g105555 +S'a' +p105557 +tp105558 +a(g105555 +g105557 +S'silent' +p105559 +tp105560 +a(g105557 +g105559 +S'bachelor' +p105561 +tp105562 +a(g105559 +g105561 +S'who' +p105563 +tp105564 +a(g105561 +g105563 +S'guarded' +p105565 +tp105566 +a(g105563 +g105565 +S'his' +p105567 +tp105568 +a(g105565 +g105567 +S'technical' +p105569 +tp105570 +a(g105567 +g105569 +S'methods' +p105571 +tp105572 +a(g105569 +g105571 +S'and' +p105573 +tp105574 +a(g105571 +g105573 +S'personal' +p105575 +tp105576 +a(g105573 +g105575 +S'beliefs,' +p105577 +tp105578 +a(g105575 +g105577 +S'he' +p105579 +tp105580 +a(g105577 +g105579 +S'became' +p105581 +tp105582 +a(g105579 +g105581 +S'almost' +p105583 +tp105584 +a(g105581 +g105583 +S'a' +p105585 +tp105586 +a(g105583 +g105585 +S'recluse.' +p105587 +tp105588 +a(g105585 +g105587 +S'when' +p105589 +tp105590 +a(g105587 +g105589 +S'he' +p105591 +tp105592 +a(g105589 +g105591 +S'left' +p105593 +tp105594 +a(g105591 +g105593 +S'the' +p105595 +tp105596 +a(g105593 +g105595 +S'coast' +p105597 +tp105598 +a(g105595 +g105597 +S'of' +p105599 +tp105600 +a(g105597 +g105599 +S'maine,' +p105601 +tp105602 +a(g105599 +g105601 +S'it' +p105603 +tp105604 +a(g105601 +g105603 +S'was' +p105605 +tp105606 +a(g105603 +g105605 +S'to' +p105607 +tp105608 +a(g105605 +g105607 +S'fish' +p105609 +tp105610 +a(g105607 +g105609 +S'or' +p105611 +tp105612 +a(g105609 +g105611 +S'hunt' +p105613 +tp105614 +a(g105611 +g105613 +S'in' +p105615 +tp105616 +a(g105613 +g105615 +S'the' +p105617 +tp105618 +a(g105615 +g105617 +S'adirondack' +p105619 +tp105620 +a(g105617 +g105619 +S'mountains' +p105621 +tp105622 +a(g105619 +g105621 +S'and' +p105623 +tp105624 +a(g105621 +g105623 +S'canada' +p105625 +tp105626 +a(g105623 +g105625 +S'or' +p105627 +tp105628 +a(g105625 +g105627 +S'the' +p105629 +tp105630 +a(g105627 +g105629 +S'caribbean' +p105631 +tp105632 +a(g105629 +g105631 +S'sea' +p105633 +tp105634 +a(g105631 +g105633 +S'and' +p105635 +tp105636 +a(g105633 +g105635 +S'bermuda—' +p105637 +tp105638 +a(g105635 +g105637 +S'taking' +p105639 +tp105640 +a(g105637 +g105639 +S'his' +p105641 +tp105642 +a(g105639 +g105641 +S'watercolor' +p105643 +tp105644 +a(g105641 +g105643 +S'supplies' +p105645 +tp105646 +a(g105643 +g105645 +S'with' +p105647 +tp105648 +a(g105645 +g105647 +S'him.' +p105649 +tp105650 +a(g105647 +g105649 +S'homer’s' +p105651 +tp105652 +a(g105649 +g105651 +S'to' +p105653 +tp105654 +a(g105651 +g105653 +S'clarify' +p105655 +tp105656 +a(g105653 +g105655 +S'that' +p105657 +tp105658 +a(g105655 +g105657 +S'the' +p105659 +tp105660 +a(g105657 +g105659 +S'stag' +p105661 +tp105662 +a(g105659 +g105661 +S'is' +p105663 +tp105664 +a(g105661 +g105663 +S'already' +p105665 +tp105666 +a(g105663 +g105665 +S'dead' +p105667 +tp105668 +a(g105665 +g105667 +S'and' +p105669 +tp105670 +a(g105667 +g105669 +S'no' +p105671 +tp105672 +a(g105669 +g105671 +S'longer' +p105673 +tp105674 +a(g105671 +g105673 +S'struggling,' +p105675 +tp105676 +a(g105673 +g105675 +S'however,' +p105677 +tp105678 +a(g105675 +g105677 +S'homer' +p105679 +tp105680 +a(g105677 +g105679 +S'did' +p105681 +tp105682 +a(g105679 +g105681 +S'repaint' +p105683 +tp105684 +a(g105681 +g105683 +S'the' +p105685 +tp105686 +a(g105683 +g105685 +S'churning' +p105687 +tp105688 +a(g105685 +g105687 +S'water' +p105689 +tp105690 +a(g105687 +g105689 +S'to' +p105691 +tp105692 +a(g105689 +g105691 +S'hide' +p105693 +tp105694 +a(g105691 +g105693 +S'more' +p105695 +tp105696 +a(g105693 +g105695 +S'of' +p105697 +tp105698 +a(g105695 +g105697 +S'the' +p105699 +tp105700 +a(g105697 +g105699 +S'animal.' +p105701 +tp105702 +a(g105699 +g105701 +S'the' +p105703 +tp105704 +a(g105701 +g105703 +S'hunter,' +p105705 +tp105706 +a(g105703 +g105705 +S'therefore,' +p105707 +tp105708 +a(g105705 +g105707 +S'simply' +p105709 +tp105710 +a(g105707 +g105709 +S'ties' +p105711 +tp105712 +a(g105709 +g105711 +S'up' +p105713 +tp105714 +a(g105711 +g105713 +S'a' +p105715 +tp105716 +a(g105713 +g105715 +S'heavy' +p105717 +tp105718 +a(g105715 +g105717 +S'load,' +p105719 +tp105720 +a(g105717 +g105719 +S'calling' +p105721 +tp105722 +a(g105719 +g105721 +S'off' +p105723 +tp105724 +a(g105721 +g105723 +S'the' +p105725 +tp105726 +a(g105723 +g105725 +S'hound' +p105727 +tp105728 +a(g105725 +g105727 +S'so' +p105729 +tp105730 +a(g105727 +g105729 +S'it' +p105731 +tp105732 +a(g105729 +g105731 +S'will' +p105733 +tp105734 +a(g105731 +g105733 +S'not' +p105735 +tp105736 +a(g105733 +g105735 +S'jump' +p105737 +tp105738 +a(g105735 +g105737 +S'into' +p105739 +tp105740 +a(g105737 +g105739 +S'the' +p105741 +tp105742 +a(g105739 +g105741 +S'boat' +p105743 +tp105744 +a(g105741 +g105743 +S'and' +p105745 +tp105746 +a(g105743 +g105745 +S'swamp' +p105747 +tp105748 +a(g105745 +g105747 +S'it.' +p105749 +tp105750 +a(g105747 +g105749 +S'homer' +p105751 +tp105752 +a(g105749 +g105751 +S'once' +p105753 +tp105754 +a(g105751 +g105753 +S'asked' +p105755 +tp105756 +a(g105753 +g105755 +S'a' +p105757 +tp105758 +a(g105755 +g105757 +S'museum' +p105759 +tp105760 +a(g105757 +g105759 +S'curator,' +p105761 +tp105762 +a(g105759 +g105761 +S'“did' +p105763 +tp105764 +a(g105761 +g105763 +S'you' +p105765 +tp105766 +a(g105763 +g105765 +S'notice' +p105767 +tp105768 +a(g105765 +g105767 +S'the' +p105769 +tp105770 +a(g105767 +g105769 +S'boy’s' +p105771 +tp105772 +a(g105769 +g105771 +S'hands—all' +p105773 +tp105774 +a(g105771 +g105773 +S'sunburnt;' +p105775 +tp105776 +a(g105773 +g105775 +S'the' +p105777 +tp105778 +a(g105775 +g105777 +S'wrists' +p105779 +tp105780 +a(g105777 +g105779 +S'somewhat' +p105781 +tp105782 +a(g105779 +g105781 +S'sunburnt,' +p105783 +tp105784 +a(g105781 +g105783 +S'but' +p105785 +tp105786 +a(g105783 +g105785 +S'not' +p105787 +tp105788 +a(g105785 +g105787 +S'as' +p105789 +tp105790 +a(g105787 +g105789 +S'brown' +p105791 +tp105792 +a(g105789 +g105791 +S'as' +p105793 +tp105794 +a(g105791 +g105793 +S'his' +p105795 +tp105796 +a(g105793 +g105795 +S'hands;' +p105797 +tp105798 +a(g105795 +g105797 +S'and' +p105799 +tp105800 +a(g105797 +g105799 +S'the' +p105801 +tp105802 +a(g105799 +g105801 +S'bit' +p105803 +tp105804 +a(g105801 +g105803 +S'of' +p105805 +tp105806 +a(g105803 +g105805 +S'forearm' +p105807 +tp105808 +a(g105805 +g105807 +S'where' +p105809 +tp105810 +a(g105807 +g105809 +S'his' +p105811 +tp105812 +a(g105809 +g105811 +S'sleeve' +p105813 +tp105814 +a(g105811 +g105813 +S'is' +p105815 +tp105816 +a(g105813 +g105815 +S'pulled' +p105817 +tp105818 +a(g105815 +g105817 +S'back' +p105819 +tp105820 +a(g105817 +g105819 +S'not' +p105821 +tp105822 +a(g105819 +g105821 +S'sunburnt' +p105823 +tp105824 +a(g105821 +g105823 +S'at' +p105825 +tp105826 +a(g105823 +g105825 +S'all?' +p105827 +tp105828 +a(g105825 +g105827 +S'i' +p105829 +tp105830 +a(g105827 +g105829 +S'spent' +p105831 +tp105832 +a(g105829 +g105831 +S'more' +p105833 +tp105834 +a(g105831 +g105833 +S'than' +p105835 +tp105836 +a(g105833 +g105835 +S'a' +p105837 +tp105838 +a(g105835 +g105837 +S'week' +p105839 +tp105840 +a(g105837 +g105839 +S'painting' +p105841 +tp105842 +a(g105839 +g105841 +S'those' +p105843 +tp105844 +a(g105841 +g105843 +S'hands.”' +p105845 +tp105846 +a(g105843 +g105845 +S'henri' +p105847 +tp105848 +a(g105845 +g105847 +S'ii' +p105849 +tp105850 +a(g105847 +g105849 +S'de' +p105851 +tp105852 +a(g105849 +g105851 +S'lorraine' +p105853 +tp105854 +a(g105851 +g105853 +S'on' +p105855 +tp105856 +a(g105853 +g105855 +S'7' +p105857 +tp105858 +a(g105855 +g105857 +S'april' +p105859 +tp105860 +a(g105857 +g105859 +S'1778,' +p105861 +tp105862 +a(g105859 +g105861 +S'william' +p105863 +tp105864 +a(g105861 +g105863 +S'pitt,' +p105865 +tp105866 +a(g105863 +g105865 +S'the' +p105867 +tp105868 +a(g105865 +g105867 +S'first' +p105869 +tp105870 +a(g105867 +g105869 +S'earl' +p105871 +tp105872 +a(g105869 +g105871 +S'of' +p105873 +tp105874 +a(g105871 +g105873 +S'chatham,' +p105875 +tp105876 +a(g105873 +g105875 +S'rose' +p105877 +tp105878 +a(g105875 +g105877 +S'to' +p105879 +tp105880 +a(g105877 +g105879 +S'speak' +p105881 +tp105882 +a(g105879 +g105881 +S'in' +p105883 +tp105884 +a(g105881 +g105883 +S'the' +p105885 +tp105886 +a(g105883 +g105885 +S'house' +p105887 +tp105888 +a(g105885 +g105887 +S'of' +p105889 +tp105890 +a(g105887 +g105889 +S'lords.' +p105891 +tp105892 +a(g105889 +g105891 +S'in' +p105893 +tp105894 +a(g105891 +g105893 +S'the' +p105895 +tp105896 +a(g105893 +g105895 +S'midst' +p105897 +tp105898 +a(g105895 +g105897 +S'of' +p105899 +tp105900 +a(g105897 +g105899 +S'debate' +p105901 +tp105902 +a(g105899 +g105901 +S'about' +p105903 +tp105904 +a(g105901 +g105903 +S'the' +p105905 +tp105906 +a(g105903 +g105905 +S'colonial' +p105907 +tp105908 +a(g105905 +g105907 +S'revolutionaries,' +p105909 +tp105910 +a(g105907 +g105909 +S'he' +p105911 +tp105912 +a(g105909 +g105911 +S'suffered' +p105913 +tp105914 +a(g105911 +g105913 +S'a' +p105915 +tp105916 +a(g105913 +g105915 +S'stroke.' +p105917 +tp105918 +a(g105915 +g105917 +S'the' +p105919 +tp105920 +a(g105917 +g105919 +S'earl’s' +p105921 +tp105922 +a(g105919 +g105921 +S'death' +p105923 +tp105924 +a(g105921 +g105923 +S'removed' +p105925 +tp105926 +a(g105923 +g105925 +S'one' +p105927 +tp105928 +a(g105925 +g105927 +S'of' +p105929 +tp105930 +a(g105927 +g105929 +S'britain’s' +p105931 +tp105932 +a(g105929 +g105931 +S'leading' +p105933 +tp105934 +a(g105931 +g105933 +S'political' +p105935 +tp105936 +a(g105933 +g105935 +S'moderates' +p105937 +tp105938 +a(g105935 +g105937 +S'during' +p105939 +tp105940 +a(g105937 +g105939 +S'the' +p105941 +tp105942 +a(g105939 +g105941 +S'critical' +p105943 +tp105944 +a(g105941 +g105943 +S'years' +p105945 +tp105946 +a(g105943 +g105945 +S'of' +p105947 +tp105948 +a(g105945 +g105947 +S'the' +p105949 +tp105950 +a(g105947 +g105949 +S'american' +p105951 +tp105952 +a(g105949 +g105951 +S'war' +p105953 +tp105954 +a(g105951 +g105953 +S'of' +p105955 +tp105956 +a(g105953 +g105955 +S'independence.' +p105957 +tp105958 +a(g105955 +g105957 +S'this' +p105959 +tp105960 +a(g105957 +g105959 +S'small' +p105961 +tp105962 +a(g105959 +g105961 +S'oil' +p105963 +tp105964 +a(g105961 +g105963 +S'painting' +p105965 +tp105966 +a(g105963 +g105965 +S'is' +p105967 +tp105968 +a(g105965 +g105967 +S'copley’s' +p105969 +tp105970 +a(g105967 +g105969 +S'preliminary' +p105971 +tp105972 +a(g105969 +g105971 +S'compositional' +p105973 +tp105974 +a(g105971 +g105973 +S'sketch' +p105975 +tp105976 +a(g105973 +g105975 +S'for' +p105977 +tp105978 +a(g105975 +g105977 +S'a' +p105979 +tp105980 +a(g105977 +g105979 +S'large' +p105981 +tp105982 +a(g105979 +g105981 +S'canvas' +p105983 +tp105984 +a(g105981 +g105983 +S'now' +p105985 +tp105986 +a(g105983 +g105985 +S'in' +p105987 +tp105988 +a(g105985 +g105987 +S'the' +p105989 +tp105990 +a(g105987 +g105989 +S'tate' +p105991 +tp105992 +a(g105989 +g105991 +S'gallery,' +p105993 +tp105994 +a(g105991 +g105993 +S'london.' +p105995 +tp105996 +a(g105993 +g105995 +S'in' +p105997 +tp105998 +a(g105995 +g105997 +S'proper' +p105999 +tp106000 +a(g105997 +g105999 +S'academic' +p106001 +tp106002 +a(g105999 +g106001 +S'procedure,' +p106003 +tp106004 +a(g106001 +g106003 +S'copley' +p106005 +tp106006 +a(g106003 +g106005 +S'first' +p106007 +tp106008 +a(g106005 +g106007 +S'used' +p106009 +tp106010 +a(g106007 +g106009 +S'browns' +p106011 +tp106012 +a(g106009 +g106011 +S'and' +p106013 +tp106014 +a(g106011 +g106013 +S'grays' +p106015 +tp106016 +a(g106013 +g106015 +S'to' +p106017 +tp106018 +a(g106015 +g106017 +S'work' +p106019 +tp106020 +a(g106017 +g106019 +S'out' +p106021 +tp106022 +a(g106019 +g106021 +S'the' +p106023 +tp106024 +a(g106021 +g106023 +S'overall' +p106025 +tp106026 +a(g106023 +g106025 +S'distribution' +p106027 +tp106028 +a(g106025 +g106027 +S'of' +p106029 +tp106030 +a(g106027 +g106029 +S'the' +p106031 +tp106032 +a(g106029 +g106031 +S'scene' +p106033 +tp106034 +a(g106031 +g106033 +S'before' +p106035 +tp106036 +a(g106033 +g106035 +S'considering' +p106037 +tp106038 +a(g106035 +g106037 +S'the' +p106039 +tp106040 +a(g106037 +g106039 +S'color' +p106041 +tp106042 +a(g106039 +g106041 +S'scheme' +p106043 +tp106044 +a(g106041 +g106043 +S'and' +p106045 +tp106046 +a(g106043 +g106045 +S'details.' +p106047 +tp106048 +a(g106045 +g106047 +S'sunshine' +p106049 +tp106050 +a(g106047 +g106049 +S'pours' +p106051 +tp106052 +a(g106049 +g106051 +S'in' +p106053 +tp106054 +a(g106051 +g106053 +S'from' +p106055 +tp106056 +a(g106053 +g106055 +S'a' +p106057 +tp106058 +a(g106055 +g106057 +S'roundel' +p106059 +tp106060 +a(g106057 +g106059 +S'window' +p106061 +tp106062 +a(g106059 +g106061 +S'over' +p106063 +tp106064 +a(g106061 +g106063 +S'the' +p106065 +tp106066 +a(g106063 +g106065 +S'throne' +p106067 +tp106068 +a(g106065 +g106067 +S'canopy,' +p106069 +tp106070 +a(g106067 +g106069 +S'spotlighting' +p106071 +tp106072 +a(g106069 +g106071 +S'the' +p106073 +tp106074 +a(g106071 +g106073 +S'stricken' +p106075 +tp106076 +a(g106073 +g106075 +S'pitt.' +p106077 +tp106078 +a(g106075 +g106077 +S'the' +p106079 +tp106080 +a(g106077 +g106079 +S'pencil' +p106081 +tp106082 +a(g106079 +g106081 +S'lines' +p106083 +tp106084 +a(g106081 +g106083 +S'drawn' +p106085 +tp106086 +a(g106083 +g106085 +S'over' +p106087 +tp106088 +a(g106085 +g106087 +S'this' +p106089 +tp106090 +a(g106087 +g106089 +S'study' +p106091 +tp106092 +a(g106089 +g106091 +S'create' +p106093 +tp106094 +a(g106091 +g106093 +S'a' +p106095 +tp106096 +a(g106093 +g106095 +S'proportional' +p106097 +tp106098 +a(g106095 +g106097 +S'grid' +p106099 +tp106100 +a(g106097 +g106099 +S'called' +p106101 +tp106102 +a(g106099 +g106101 +S'“squaring”' +p106103 +tp106104 +a(g106101 +g106103 +S'that' +p106105 +tp106106 +a(g106103 +g106105 +S'enabled' +p106107 +tp106108 +a(g106105 +g106107 +S'the' +p106109 +tp106110 +a(g106107 +g106109 +S'artist' +p106111 +tp106112 +a(g106109 +g106111 +S'to' +p106113 +tp106114 +a(g106111 +g106113 +S'transfer' +p106115 +tp106116 +a(g106113 +g106115 +S'and' +p106117 +tp106118 +a(g106115 +g106117 +S'enlarge' +p106119 +tp106120 +a(g106117 +g106119 +S'the' +p106121 +tp106122 +a(g106119 +g106121 +S'design.' +p106123 +tp106124 +a(g106121 +g106123 +S'in' +p106125 +tp106126 +a(g106123 +g106125 +S'1781,' +p106127 +tp106128 +a(g106125 +g106127 +S'after' +p106129 +tp106130 +a(g106127 +g106129 +S'two' +p106131 +tp106132 +a(g106129 +g106131 +S'years’' +p106133 +tp106134 +a(g106131 +g106133 +S'work,' +p106135 +tp106136 +a(g106133 +g106135 +S'copley' +p106137 +tp106138 +a(g106135 +g106137 +S'installed' +p106139 +tp106140 +a(g106137 +g106139 +S'his' +p106141 +tp106142 +a(g106139 +g106141 +S'ten-foot-wide' +p106143 +tp106144 +a(g106141 +g106143 +S'picture' +p106145 +tp106146 +a(g106143 +g106145 +S'in' +p106147 +tp106148 +a(g106145 +g106147 +S'a' +p106149 +tp106150 +a(g106147 +g106149 +S'pavilion' +p106151 +tp106152 +a(g106149 +g106151 +S'and' +p106153 +tp106154 +a(g106151 +g106153 +S'charged' +p106155 +tp106156 +a(g106153 +g106155 +S'admission' +p106157 +tp106158 +a(g106155 +g106157 +S'to' +p106159 +tp106160 +a(g106157 +g106159 +S'his' +p106161 +tp106162 +a(g106159 +g106161 +S'popular' +p106163 +tp106164 +a(g106161 +g106163 +S'one-work' +p106165 +tp106166 +a(g106163 +g106165 +S'show.' +p106167 +tp106168 +a(g106165 +g106167 +S'how' +p106169 +tp106170 +a(g106167 +g106169 +S'copley' +p106171 +tp106172 +a(g106169 +g106171 +S'had' +p106173 +tp106174 +a(g106171 +g106173 +S'persuaded' +p106175 +tp106176 +a(g106173 +g106175 +S'fifty-five' +p106177 +tp106178 +a(g106175 +g106177 +S'noblemen' +p106179 +tp106180 +a(g106177 +g106179 +S'to' +p106181 +tp106182 +a(g106179 +g106181 +S'sit' +p106183 +tp106184 +a(g106181 +g106183 +S'for' +p106185 +tp106186 +a(g106183 +g106185 +S'their' +p106187 +tp106188 +a(g106185 +g106187 +S'portraits' +p106189 +tp106190 +a(g106187 +g106189 +S'became' +p106191 +tp106192 +a(g106189 +g106191 +S'the' +p106193 +tp106194 +a(g106191 +g106193 +S'talk' +p106195 +tp106196 +a(g106193 +g106195 +S'of' +p106197 +tp106198 +a(g106195 +g106197 +S'british' +p106199 +tp106200 +a(g106197 +g106199 +S'society.' +p106201 +tp106202 +a(g106199 +g106201 +S'according' +p106203 +tp106204 +a(g106201 +g106203 +S'to' +p106205 +tp106206 +a(g106203 +g106205 +S'mary’s' +p106207 +tp106208 +a(g106205 +g106207 +S'legend,' +p106209 +tp106210 +a(g106207 +g106209 +S'after' +p106211 +tp106212 +a(g106209 +g106211 +S'her' +p106213 +tp106214 +a(g106211 +g106213 +S'death' +p106215 +tp106216 +a(g106213 +g106215 +S'she' +p106217 +tp106218 +a(g106215 +g106217 +S'was' +p106219 +tp106220 +a(g106217 +g106219 +S'crowned' +p106221 +tp106222 +a(g106219 +g106221 +S'the' +p106223 +tp106224 +a(g106221 +g106223 +S'queen' +p106225 +tp106226 +a(g106223 +g106225 +S'of' +p106227 +tp106228 +a(g106225 +g106227 +S'heaven' +p106229 +tp106230 +a(g106227 +g106229 +S'by' +p106231 +tp106232 +a(g106229 +g106231 +S'her' +p106233 +tp106234 +a(g106231 +g106233 +S'son' +p106235 +tp106236 +a(g106233 +g106235 +S'jesus.' +p106237 +tp106238 +a(g106235 +g106237 +S'here,' +p106239 +tp106240 +a(g106237 +g106239 +S'musical' +p106241 +tp106242 +a(g106239 +g106241 +S'angels' +p106243 +tp106244 +a(g106241 +g106243 +S'serenade' +p106245 +tp106246 +a(g106243 +g106245 +S'her' +p106247 +tp106248 +a(g106245 +g106247 +S'coronation.' +p106249 +tp106250 +a(g106247 +g106249 +S'dressed' +p106251 +tp106252 +a(g106249 +g106251 +S'in' +p106253 +tp106254 +a(g106251 +g106253 +S'pale' +p106255 +tp106256 +a(g106253 +g106255 +S'olive' +p106257 +tp106258 +a(g106255 +g106257 +S'green,' +p106259 +tp106260 +a(g106257 +g106259 +S'one' +p106261 +tp106262 +a(g106259 +g106261 +S'angel' +p106263 +tp106264 +a(g106261 +g106263 +S'plays' +p106265 +tp106266 +a(g106263 +g106265 +S'a' +p106267 +tp106268 +a(g106265 +g106267 +S'lute' +p106269 +tp106270 +a(g106267 +g106269 +S'while' +p106271 +tp106272 +a(g106269 +g106271 +S'another,' +p106273 +tp106274 +a(g106271 +g106273 +S'garbed' +p106275 +tp106276 +a(g106273 +g106275 +S'in' +p106277 +tp106278 +a(g106275 +g106277 +S'iridescent' +p106279 +tp106280 +a(g106277 +g106279 +S'robes,' +p106281 +tp106282 +a(g106279 +g106281 +S'strums' +p106283 +tp106284 +a(g106281 +g106283 +S'a' +p106285 +tp106286 +a(g106283 +g106285 +S'mandore.' +p106287 +tp106288 +a(g106285 +g106287 +S'such' +p106289 +tp106290 +a(g106287 +g106289 +S'pastel' +p106291 +tp106292 +a(g106289 +g106291 +S'colors' +p106293 +tp106294 +a(g106291 +g106293 +S'infuse' +p106295 +tp106296 +a(g106293 +g106295 +S'the' +p106297 +tp106298 +a(g106295 +g106297 +S'poetic' +p106299 +tp106300 +a(g106297 +g106299 +S'paintings' +p106301 +tp106302 +a(g106299 +g106301 +S'of' +p106303 +tp106304 +a(g106301 +g106303 +S'agnolo' +p106305 +tp106306 +a(g106303 +g106305 +S'gaddi,' +p106307 +tp106308 +a(g106305 +g106307 +S'who' +p106309 +tp106310 +a(g106307 +g106309 +S'also' +p106311 +tp106312 +a(g106309 +g106311 +S'preferred' +p106313 +tp106314 +a(g106311 +g106313 +S'intricate,' +p106315 +tp106316 +a(g106313 +g106315 +S'delicate' +p106317 +tp106318 +a(g106315 +g106317 +S'patterns.' +p106319 +tp106320 +a(g106317 +g106319 +S'the' +p106321 +tp106322 +a(g106319 +g106321 +S'surface' +p106323 +tp106324 +a(g106321 +g106323 +S'of' +p106325 +tp106326 +a(g106323 +g106325 +S'the' +p106327 +tp106328 +a(g106325 +g106327 +S'painted' +p106329 +tp106330 +a(g106327 +g106329 +S'gesso' +p106331 +tp106332 +a(g106329 +g106331 +S'plaster' +p106333 +tp106334 +a(g106331 +g106333 +S'was' +p106335 +tp106336 +a(g106333 +g106335 +S'textured' +p106337 +tp106338 +a(g106335 +g106337 +S'by' +p106339 +tp106340 +a(g106337 +g106339 +S'designs' +p106341 +tp106342 +a(g106339 +g106341 +S'impressed' +p106343 +tp106344 +a(g106341 +g106343 +S'with' +p106345 +tp106346 +a(g106343 +g106345 +S'punching' +p106347 +tp106348 +a(g106345 +g106347 +S'tools.' +p106349 +tp106350 +a(g106347 +g106349 +S'the' +p106351 +tp106352 +a(g106349 +g106351 +S'crowns' +p106353 +tp106354 +a(g106351 +g106353 +S'of' +p106355 +tp106356 +a(g106353 +g106355 +S'the' +p106357 +tp106358 +a(g106355 +g106357 +S'madonna' +p106359 +tp106360 +a(g106357 +g106359 +S'and' +p106361 +tp106362 +a(g106359 +g106361 +S'christ' +p106363 +tp106364 +a(g106361 +g106363 +S'are' +p106365 +tp106366 +a(g106363 +g106365 +S'so' +p106367 +tp106368 +a(g106365 +g106367 +S'deeply' +p106369 +tp106370 +a(g106367 +g106369 +S'indented' +p106371 +tp106372 +a(g106369 +g106371 +S'as' +p106373 +tp106374 +a(g106371 +g106373 +S'to' +p106375 +tp106376 +a(g106373 +g106375 +S'appear' +p106377 +tp106378 +a(g106375 +g106377 +S'three-dimensional.' +p106379 +tp106380 +a(g106377 +g106379 +S'in' +p106381 +tp106382 +a(g106379 +g106381 +S'a' +p106383 +tp106384 +a(g106381 +g106383 +S'large' +p106385 +tp106386 +a(g106383 +g106385 +S'altarpiece' +p106387 +tp106388 +a(g106385 +g106387 +S'by' +p106389 +tp106390 +a(g106387 +g106389 +S'gaddi,' +p106391 +tp106392 +a(g106389 +g106391 +S"murillo's" +p106393 +tp106394 +a(g106391 +g106393 +S'great' +p106395 +tp106396 +a(g106393 +g106395 +S'talent' +p106397 +tp106398 +a(g106395 +g106397 +S'for' +p106399 +tp106400 +a(g106397 +g106399 +S'dramatic' +p106401 +tp106402 +a(g106399 +g106401 +S'painting' +p106403 +tp106404 +a(g106401 +g106403 +S'is' +p106405 +tp106406 +a(g106403 +g106405 +S'apparent' +p106407 +tp106408 +a(g106405 +g106407 +S'in' +p106409 +tp106410 +a(g106407 +g106409 +S'this' +p106411 +tp106412 +a(g106409 +g106411 +S'monumental' +p106413 +tp106414 +a(g106411 +g106413 +S'depiction' +p106415 +tp106416 +a(g106413 +g106415 +S'of' +p106417 +tp106418 +a(g106415 +g106417 +S'the' +p106419 +tp106420 +a(g106417 +g106419 +S'familiar' +p106421 +tp106422 +a(g106419 +g106421 +S'parable' +p106423 +tp106424 +a(g106421 +g106423 +S'of' +p106425 +tp106426 +a(g106423 +g106425 +S'the' +p106427 +tp106428 +a(g106425 +g106427 +S'prodigal' +p106429 +tp106430 +a(g106427 +g106429 +S'son,' +p106431 +tp106432 +a(g106429 +g106431 +S'an' +p106433 +tp106434 +a(g106431 +g106433 +S'allegory' +p106435 +tp106436 +a(g106433 +g106435 +S'of' +p106437 +tp106438 +a(g106435 +g106437 +S'repentance' +p106439 +tp106440 +a(g106437 +g106439 +S'and' +p106441 +tp106442 +a(g106439 +g106441 +S'divine' +p106443 +tp106444 +a(g106441 +g106443 +S'forgiveness.' +p106445 +tp106446 +a(g106443 +g106445 +S'with' +p106447 +tp106448 +a(g106445 +g106447 +S'players' +p106449 +tp106450 +a(g106447 +g106449 +S'and' +p106451 +tp106452 +a(g106449 +g106451 +S'props' +p106453 +tp106454 +a(g106451 +g106453 +S'effectively' +p106455 +tp106456 +a(g106453 +g106455 +S'placed' +p106457 +tp106458 +a(g106455 +g106457 +S'to' +p106459 +tp106460 +a(g106457 +g106459 +S'underscore' +p106461 +tp106462 +a(g106459 +g106461 +S'the' +p106463 +tp106464 +a(g106461 +g106463 +S'drama,' +p106465 +tp106466 +a(g106463 +g106465 +S'it' +p106467 +tp106468 +a(g106465 +g106467 +S'is' +p106469 +tp106470 +a(g106467 +g106469 +S'reminiscent' +p106471 +tp106472 +a(g106469 +g106471 +S'of' +p106473 +tp106474 +a(g106471 +g106473 +S'a' +p106475 +tp106476 +a(g106473 +g106475 +S'well-staged' +p106477 +tp106478 +a(g106475 +g106477 +S'theater' +p106479 +tp106480 +a(g106477 +g106479 +S'piece.' +p106481 +tp106482 +a(g106479 +g106481 +S'the' +p106483 +tp106484 +a(g106481 +g106483 +S'artist' +p106485 +tp106486 +a(g106483 +g106485 +S'selected' +p106487 +tp106488 +a(g106485 +g106487 +S'the' +p106489 +tp106490 +a(g106487 +g106489 +S'essential' +p106491 +tp106492 +a(g106489 +g106491 +S'elements' +p106493 +tp106494 +a(g106491 +g106493 +S'of' +p106495 +tp106496 +a(g106493 +g106495 +S'the' +p106497 +tp106498 +a(g106495 +g106497 +S"story's" +p106499 +tp106500 +a(g106497 +g106499 +S'climax:' +p106501 +tp106502 +a(g106499 +g106501 +S'the' +p106503 +tp106504 +a(g106501 +g106503 +S'penitent' +p106505 +tp106506 +a(g106503 +g106505 +S'son' +p106507 +tp106508 +a(g106505 +g106507 +S'welcomed' +p106509 +tp106510 +a(g106507 +g106509 +S'home' +p106511 +tp106512 +a(g106509 +g106511 +S'by' +p106513 +tp106514 +a(g106511 +g106513 +S'his' +p106515 +tp106516 +a(g106513 +g106515 +S'forgiving' +p106517 +tp106518 +a(g106515 +g106517 +S'father;' +p106519 +tp106520 +a(g106517 +g106519 +S'the' +p106521 +tp106522 +a(g106519 +g106521 +S'rich' +p106523 +tp106524 +a(g106521 +g106523 +S'garments' +p106525 +tp106526 +a(g106523 +g106525 +S'and' +p106527 +tp106528 +a(g106525 +g106527 +S'ring' +p106529 +tp106530 +a(g106527 +g106529 +S'that' +p106531 +tp106532 +a(g106529 +g106531 +S'signify' +p106533 +tp106534 +a(g106531 +g106533 +S'the' +p106535 +tp106536 +a(g106533 +g106535 +S'errant' +p106537 +tp106538 +a(g106535 +g106537 +S"son's" +p106539 +tp106540 +a(g106537 +g106539 +S'restoration' +p106541 +tp106542 +a(g106539 +g106541 +S'to' +p106543 +tp106544 +a(g106541 +g106543 +S'his' +p106545 +tp106546 +a(g106543 +g106545 +S'former' +p106547 +tp106548 +a(g106545 +g106547 +S'position' +p106549 +tp106550 +a(g106547 +g106549 +S'in' +p106551 +tp106552 +a(g106549 +g106551 +S'the' +p106553 +tp106554 +a(g106551 +g106553 +S'family;' +p106555 +tp106556 +a(g106553 +g106555 +S'and' +p106557 +tp106558 +a(g106555 +g106557 +S'the' +p106559 +tp106560 +a(g106557 +g106559 +S'fatted' +p106561 +tp106562 +a(g106559 +g106561 +S'calf' +p106563 +tp106564 +a(g106561 +g106563 +S'being' +p106565 +tp106566 +a(g106563 +g106565 +S'led' +p106567 +tp106568 +a(g106565 +g106567 +S'to' +p106569 +tp106570 +a(g106567 +g106569 +S'the' +p106571 +tp106572 +a(g106569 +g106571 +S'slaughter' +p106573 +tp106574 +a(g106571 +g106573 +S'for' +p106575 +tp106576 +a(g106573 +g106575 +S'the' +p106577 +tp106578 +a(g106575 +g106577 +S'celebratory' +p106579 +tp106580 +a(g106577 +g106579 +S'banquet.' +p106581 +tp106582 +a(g106579 +g106581 +S'the' +p106583 +tp106584 +a(g106581 +g106583 +S'larger-than-life,' +p106585 +tp106586 +a(g106583 +g106585 +S'central,' +p106587 +tp106588 +a(g106585 +g106587 +S'pyramidal' +p106589 +tp106590 +a(g106587 +g106589 +S'grouping' +p106591 +tp106592 +a(g106589 +g106591 +S'of' +p106593 +tp106594 +a(g106591 +g106593 +S'father' +p106595 +tp106596 +a(g106593 +g106595 +S'and' +p106597 +tp106598 +a(g106595 +g106597 +S'son' +p106599 +tp106600 +a(g106597 +g106599 +S'dominates' +p106601 +tp106602 +a(g106599 +g106601 +S'the' +p106603 +tp106604 +a(g106601 +g106603 +S'picture,' +p106605 +tp106606 +a(g106603 +g106605 +S'while' +p106607 +tp106608 +a(g106605 +g106607 +S'the' +p106609 +tp106610 +a(g106607 +g106609 +S'richest' +p106611 +tp106612 +a(g106609 +g106611 +S'color' +p106613 +tp106614 +a(g106611 +g106613 +S'is' +p106615 +tp106616 +a(g106613 +g106615 +S'reserved' +p106617 +tp106618 +a(g106615 +g106617 +S'for' +p106619 +tp106620 +a(g106617 +g106619 +S'the' +p106621 +tp106622 +a(g106619 +g106621 +S'servant' +p106623 +tp106624 +a(g106621 +g106623 +S'bearing' +p106625 +tp106626 +a(g106623 +g106625 +S'the' +p106627 +tp106628 +a(g106625 +g106627 +S'new' +p106629 +tp106630 +a(g106627 +g106629 +S'garments.' +p106631 +tp106632 +a(g106629 +g106631 +S'murillo' +p106633 +tp106634 +a(g106631 +g106633 +S'may' +p106635 +tp106636 +a(g106633 +g106635 +S'have' +p106637 +tp106638 +a(g106635 +g106637 +S'chosen' +p106639 +tp106640 +a(g106637 +g106639 +S'to' +p106641 +tp106642 +a(g106639 +g106641 +S'emphasize' +p106643 +tp106644 +a(g106641 +g106643 +S'that' +p106645 +tp106646 +a(g106643 +g106645 +S'aspect' +p106647 +tp106648 +a(g106645 +g106647 +S'of' +p106649 +tp106650 +a(g106647 +g106649 +S'the' +p106651 +tp106652 +a(g106649 +g106651 +S'parable' +p106653 +tp106654 +a(g106651 +g106653 +S'--' +p106655 +tp106656 +a(g106653 +g106655 +S'symbolic' +p106657 +tp106658 +a(g106655 +g106657 +S'of' +p106659 +tp106660 +a(g106657 +g106659 +S'charity' +p106661 +tp106662 +a(g106659 +g106661 +S'--' +p106663 +tp106664 +a(g106661 +g106663 +S'because' +p106665 +tp106666 +a(g106663 +g106665 +S'of' +p106667 +tp106668 +a(g106665 +g106667 +S'the' +p106669 +tp106670 +a(g106667 +g106669 +S'nature' +p106671 +tp106672 +a(g106669 +g106671 +S'of' +p106673 +tp106674 +a(g106671 +g106673 +S'the' +p106675 +tp106676 +a(g106673 +g106675 +S'commission.' +p106677 +tp106678 +a(g106675 +g106677 +S"murillo's" +p106679 +tp106680 +a(g106677 +g106679 +S'model' +p106681 +tp106682 +a(g106679 +g106681 +S'was' +p106683 +tp106684 +a(g106681 +g106683 +S'the' +p106685 +tp106686 +a(g106683 +g106685 +S'life' +p106687 +tp106688 +a(g106685 +g106687 +S'around' +p106689 +tp106690 +a(g106687 +g106689 +S'him;' +p106691 +tp106692 +a(g106689 +g106691 +S'part' +p106693 +tp106694 +a(g106691 +g106693 +S'of' +p106695 +tp106696 +a(g106693 +g106695 +S'the' +p106697 +tp106698 +a(g106695 +g106697 +S'appeal' +p106699 +tp106700 +a(g106697 +g106699 +S'of' +p106701 +tp106702 +a(g106699 +g106701 +S'this' +p106703 +tp106704 +a(g106701 +g106703 +S'canvas' +p106705 +tp106706 +a(g106703 +g106705 +S'lies' +p106707 +tp106708 +a(g106705 +g106707 +S'in' +p106709 +tp106710 +a(g106707 +g106709 +S'its' +p106711 +tp106712 +a(g106709 +g106711 +S'human' +p106713 +tp106714 +a(g106711 +g106713 +S'touches' +p106715 +tp106716 +a(g106713 +g106715 +S'--' +p106717 +tp106718 +a(g106715 +g106717 +S'the' +p106719 +tp106720 +a(g106717 +g106719 +S'realism' +p106721 +tp106722 +a(g106719 +g106721 +S'of' +p106723 +tp106724 +a(g106721 +g106723 +S'the' +p106725 +tp106726 +a(g106723 +g106725 +S"prodigal's" +p106727 +tp106728 +a(g106725 +g106727 +S'dirty' +p106729 +tp106730 +a(g106727 +g106729 +S'feet,' +p106731 +tp106732 +a(g106729 +g106731 +S'the' +p106733 +tp106734 +a(g106731 +g106733 +S'puppy' +p106735 +tp106736 +a(g106733 +g106735 +S'jumping' +p106737 +tp106738 +a(g106735 +g106737 +S'up' +p106739 +tp106740 +a(g106737 +g106739 +S'to' +p106741 +tp106742 +a(g106739 +g106741 +S'greet' +p106743 +tp106744 +a(g106741 +g106743 +S'his' +p106745 +tp106746 +a(g106743 +g106745 +S'master,' +p106747 +tp106748 +a(g106745 +g106747 +S'and' +p106749 +tp106750 +a(g106747 +g106749 +S'perhaps' +p106751 +tp106752 +a(g106749 +g106751 +S'most' +p106753 +tp106754 +a(g106751 +g106753 +S'of' +p106755 +tp106756 +a(g106753 +g106755 +S'all,' +p106757 +tp106758 +a(g106755 +g106757 +S'the' +p106759 +tp106760 +a(g106757 +g106759 +S'ingenuous' +p106761 +tp106762 +a(g106759 +g106761 +S'smile' +p106763 +tp106764 +a(g106761 +g106763 +S'of' +p106765 +tp106766 +a(g106763 +g106765 +S'the' +p106767 +tp106768 +a(g106765 +g106767 +S'little' +p106769 +tp106770 +a(g106767 +g106769 +S'urchin' +p106771 +tp106772 +a(g106769 +g106771 +S'leading' +p106773 +tp106774 +a(g106771 +g106773 +S'the' +p106775 +tp106776 +a(g106773 +g106775 +S'calf.' +p106777 +tp106778 +a(g106775 +g106777 +S"sargent's" +p106779 +tp106780 +a(g106777 +g106779 +S'inordinate' +p106781 +tp106782 +a(g106779 +g106781 +S'technical' +p106783 +tp106784 +a(g106781 +g106783 +S'facility,' +p106785 +tp106786 +a(g106783 +g106785 +S'coupled' +p106787 +tp106788 +a(g106785 +g106787 +S'with' +p106789 +tp106790 +a(g106787 +g106789 +S'his' +p106791 +tp106792 +a(g106789 +g106791 +S'ability' +p106793 +tp106794 +a(g106791 +g106793 +S'to' +p106795 +tp106796 +a(g106793 +g106795 +S'portray' +p106797 +tp106798 +a(g106795 +g106797 +S'elegant' +p106799 +tp106800 +a(g106797 +g106799 +S'sitters' +p106801 +tp106802 +a(g106799 +g106801 +S'in' +p106803 +tp106804 +a(g106801 +g106803 +S'sumptuous' +p106805 +tp106806 +a(g106803 +g106805 +S'surroundings,' +p106807 +tp106808 +a(g106805 +g106807 +S'made' +p106809 +tp106810 +a(g106807 +g106809 +S'him' +p106811 +tp106812 +a(g106809 +g106811 +S'extremely' +p106813 +tp106814 +a(g106811 +g106813 +S'popular' +p106815 +tp106816 +a(g106813 +g106815 +S'with' +p106817 +tp106818 +a(g106815 +g106817 +S'wealthy' +p106819 +tp106820 +a(g106817 +g106819 +S'patrons' +p106821 +tp106822 +a(g106819 +g106821 +S'on' +p106823 +tp106824 +a(g106821 +g106823 +S'both' +p106825 +tp106826 +a(g106823 +g106825 +S'sides' +p106827 +tp106828 +a(g106825 +g106827 +S'of' +p106829 +tp106830 +a(g106827 +g106829 +S'the' +p106831 +tp106832 +a(g106829 +g106831 +S'atlantic.' +p106833 +tp106834 +a(g106831 +g106833 +S'despite' +p106835 +tp106836 +a(g106833 +g106835 +S'his' +p106837 +tp106838 +a(g106835 +g106837 +S'success' +p106839 +tp106840 +a(g106837 +g106839 +S'as' +p106841 +tp106842 +a(g106839 +g106841 +S'one' +p106843 +tp106844 +a(g106841 +g106843 +S'of' +p106845 +tp106846 +a(g106843 +g106845 +S'the' +p106847 +tp106848 +a(g106845 +g106847 +S'most' +p106849 +tp106850 +a(g106847 +g106849 +S'sought–after' +p106851 +tp106852 +a(g106849 +g106851 +S'portraitists' +p106853 +tp106854 +a(g106851 +g106853 +S'of' +p106855 +tp106856 +a(g106853 +g106855 +S'the' +p106857 +tp106858 +a(g106855 +g106857 +S'late' +p106859 +tp106860 +a(g106857 +g106859 +S'victorian' +p106861 +tp106862 +a(g106859 +g106861 +S'era,' +p106863 +tp106864 +a(g106861 +g106863 +S'sargent' +p106865 +tp106866 +a(g106863 +g106865 +S'eventually' +p106867 +tp106868 +a(g106865 +g106867 +S'became' +p106869 +tp106870 +a(g106867 +g106869 +S'exasperated' +p106871 +tp106872 +a(g106869 +g106871 +S'by' +p106873 +tp106874 +a(g106871 +g106873 +S'the' +p106875 +tp106876 +a(g106873 +g106875 +S'whim' +p106877 +tp106878 +a(g106875 +g106877 +S'and' +p106879 +tp106880 +a(g106877 +g106879 +S'vanities' +p106881 +tp106882 +a(g106879 +g106881 +S'of' +p106883 +tp106884 +a(g106881 +g106883 +S'prominent' +p106885 +tp106886 +a(g106883 +g106885 +S'sitters.' +p106887 +tp106888 +a(g106885 +g106887 +S'by' +p106889 +tp106890 +a(g106887 +g106889 +S'1909' +p106891 +tp106892 +a(g106889 +g106891 +S'he' +p106893 +tp106894 +a(g106891 +g106893 +S'had' +p106895 +tp106896 +a(g106893 +g106895 +S'abandoned' +p106897 +tp106898 +a(g106895 +g106897 +S'conventional' +p106899 +tp106900 +a(g106897 +g106899 +S'portraiture' +p106901 +tp106902 +a(g106899 +g106901 +S'in' +p106903 +tp106904 +a(g106901 +g106903 +S'order' +p106905 +tp106906 +a(g106903 +g106905 +S'to' +p106907 +tp106908 +a(g106905 +g106907 +S'"experiment' +p106909 +tp106910 +a(g106907 +g106909 +S'with' +p106911 +tp106912 +a(g106909 +g106911 +S'more' +p106913 +tp106914 +a(g106911 +g106913 +S'imaginary' +p106915 +tp106916 +a(g106913 +g106915 +S'fields."' +p106917 +tp106918 +a(g106915 +g106917 +S'the' +p106919 +tp106920 +a(g106917 +g106919 +S'this' +p106921 +tp106922 +a(g106919 +g106921 +S'small' +p106923 +tp106924 +a(g106921 +g106923 +S'panel' +p106925 +tp106926 +a(g106923 +g106925 +S'was' +p106927 +tp106928 +a(g106925 +g106927 +S'originally' +p106929 +tp106930 +a(g106927 +g106929 +S'half' +p106931 +tp106932 +a(g106929 +g106931 +S'of' +p106933 +tp106934 +a(g106931 +g106933 +S'a' +p106935 +tp106936 +a(g106933 +g106935 +S'two-part' +p106937 +tp106938 +a(g106935 +g106937 +S'panel' +p106939 +tp106940 +a(g106937 +g106939 +S'made' +p106941 +tp106942 +a(g106939 +g106941 +S'for' +p106943 +tp106944 +a(g106941 +g106943 +S'private' +p106945 +tp106946 +a(g106943 +g106945 +S'devotion.' +p106947 +tp106948 +a(g106945 +g106947 +S'rich' +p106949 +tp106950 +a(g106947 +g106949 +S'with' +p106951 +tp106952 +a(g106949 +g106951 +S'textured' +p106953 +tp106954 +a(g106951 +g106953 +S'gold' +p106955 +tp106956 +a(g106953 +g106955 +S'and' +p106957 +tp106958 +a(g106955 +g106957 +S'marked' +p106959 +tp106960 +a(g106957 +g106959 +S'by' +p106961 +tp106962 +a(g106959 +g106961 +S"gabriel's" +p106963 +tp106964 +a(g106961 +g106963 +S'graceful' +p106965 +tp106966 +a(g106963 +g106965 +S'silhouette,' +p106967 +tp106968 +a(g106965 +g106967 +S'it' +p106969 +tp106970 +a(g106967 +g106969 +S'is' +p106971 +tp106972 +a(g106969 +g106971 +S'typical' +p106973 +tp106974 +a(g106971 +g106973 +S'of' +p106975 +tp106976 +a(g106973 +g106975 +S'simone’s' +p106977 +tp106978 +a(g106975 +g106977 +S'refined' +p106979 +tp106980 +a(g106977 +g106979 +S'style.' +p106981 +tp106982 +a(g106979 +g106981 +S'note' +p106983 +tp106984 +a(g106981 +g106983 +S'the' +p106985 +tp106986 +a(g106983 +g106985 +S"angel's" +p106987 +tp106988 +a(g106985 +g106987 +S'ornate' +p106989 +tp106990 +a(g106987 +g106989 +S'robe.' +p106991 +tp106992 +a(g106989 +g106991 +S'in' +p106993 +tp106994 +a(g106991 +g106993 +S'the' +p106995 +tp106996 +a(g106993 +g106995 +S'decades' +p106997 +tp106998 +a(g106995 +g106997 +S'following' +p106999 +tp107000 +a(g106997 +g106999 +S'marco' +p107001 +tp107002 +a(g106999 +g107001 +S"polo's" +p107003 +tp107004 +a(g107001 +g107003 +S'return' +p107005 +tp107006 +a(g107003 +g107005 +S'from' +p107007 +tp107008 +a(g107005 +g107007 +S'china,' +p107009 +tp107010 +a(g107007 +g107009 +S'thousands' +p107011 +tp107012 +a(g107009 +g107011 +S'of' +p107013 +tp107014 +a(g107011 +g107013 +S'caravans' +p107015 +tp107016 +a(g107013 +g107015 +S'traveled' +p107017 +tp107018 +a(g107015 +g107017 +S'the' +p107019 +tp107020 +a(g107017 +g107019 +S'silk' +p107021 +tp107022 +a(g107019 +g107021 +S'route' +p107023 +tp107024 +a(g107021 +g107023 +S'carrying' +p107025 +tp107026 +a(g107023 +g107025 +S'luxurious' +p107027 +tp107028 +a(g107025 +g107027 +S'textiles' +p107029 +tp107030 +a(g107027 +g107029 +S'west.' +p107031 +tp107032 +a(g107029 +g107031 +S'as' +p107033 +tp107034 +a(g107031 +g107033 +S'woven' +p107035 +tp107036 +a(g107033 +g107035 +S'patterns' +p107037 +tp107038 +a(g107035 +g107037 +S'of' +p107039 +tp107040 +a(g107037 +g107039 +S'brocade' +p107041 +tp107042 +a(g107039 +g107041 +S'and' +p107043 +tp107044 +a(g107041 +g107043 +S'damask' +p107045 +tp107046 +a(g107043 +g107045 +S'replaced' +p107047 +tp107048 +a(g107045 +g107047 +S'embroidered' +p107049 +tp107050 +a(g107047 +g107049 +S'and' +p107051 +tp107052 +a(g107049 +g107051 +S'appliqued' +p107053 +tp107054 +a(g107051 +g107053 +S'decoration,' +p107055 +tp107056 +a(g107053 +g107055 +S'italian' +p107057 +tp107058 +a(g107055 +g107057 +S'cities' +p107059 +tp107060 +a(g107057 +g107059 +S'grew' +p107061 +tp107062 +a(g107059 +g107061 +S'wealthy' +p107063 +tp107064 +a(g107061 +g107063 +S'from' +p107065 +tp107066 +a(g107063 +g107065 +S'textile' +p107067 +tp107068 +a(g107065 +g107067 +S'production' +p107069 +tp107070 +a(g107067 +g107069 +S'and' +p107071 +tp107072 +a(g107069 +g107071 +S'trade.' +p107073 +tp107074 +a(g107071 +g107073 +S'simone' +p107075 +tp107076 +a(g107073 +g107075 +S'martini' +p107077 +tp107078 +a(g107075 +g107077 +S'devised' +p107079 +tp107080 +a(g107077 +g107079 +S'new' +p107081 +tp107082 +a(g107079 +g107081 +S'ways' +p107083 +tp107084 +a(g107081 +g107083 +S'to' +p107085 +tp107086 +a(g107083 +g107085 +S're-create' +p107087 +tp107088 +a(g107085 +g107087 +S'the' +p107089 +tp107090 +a(g107087 +g107089 +S'look' +p107091 +tp107092 +a(g107089 +g107091 +S'of' +p107093 +tp107094 +a(g107091 +g107093 +S'these' +p107095 +tp107096 +a(g107093 +g107095 +S'fabrics,' +p107097 +tp107098 +a(g107095 +g107097 +S'and' +p107099 +tp107100 +a(g107097 +g107099 +S'since' +p107101 +tp107102 +a(g107099 +g107101 +S'much' +p107103 +tp107104 +a(g107101 +g107103 +S'of' +p107105 +tp107106 +a(g107103 +g107105 +S'the' +p107107 +tp107108 +a(g107105 +g107107 +S'original' +p107109 +tp107110 +a(g107107 +g107109 +S'paint' +p107111 +tp107112 +a(g107109 +g107111 +S'of' +p107113 +tp107114 +a(g107111 +g107113 +S'this' +p107115 +tp107116 +a(g107113 +g107115 +S'panel' +p107117 +tp107118 +a(g107115 +g107117 +S'has' +p107119 +tp107120 +a(g107117 +g107119 +S'been' +p107121 +tp107122 +a(g107119 +g107121 +S'lost,' +p107123 +tp107124 +a(g107121 +g107123 +S'it' +p107125 +tp107126 +a(g107123 +g107125 +S'is' +p107127 +tp107128 +a(g107125 +g107127 +S'possible' +p107129 +tp107130 +a(g107127 +g107129 +S'to' +p107131 +tp107132 +a(g107129 +g107131 +S'see' +p107133 +tp107134 +a(g107131 +g107133 +S'his' +p107135 +tp107136 +a(g107133 +g107135 +S'technique.' +p107137 +tp107138 +a(g107135 +g107137 +S'the' +p107139 +tp107140 +a(g107137 +g107139 +S'entire' +p107141 +tp107142 +a(g107139 +g107141 +S'panel,' +p107143 +tp107144 +a(g107141 +g107143 +S'except' +p107145 +tp107146 +a(g107143 +g107145 +S'for' +p107147 +tp107148 +a(g107145 +g107147 +S'the' +p107149 +tp107150 +a(g107147 +g107149 +S'hands' +p107151 +tp107152 +a(g107149 +g107151 +S'and' +p107153 +tp107154 +a(g107151 +g107153 +S'face,' +p107155 +tp107156 +a(g107153 +g107155 +S'was' +p107157 +tp107158 +a(g107155 +g107157 +S'gilded' +p107159 +tp107160 +a(g107157 +g107159 +S'over' +p107161 +tp107162 +a(g107159 +g107161 +S'an' +p107163 +tp107164 +a(g107161 +g107163 +S'underlayer' +p107165 +tp107166 +a(g107163 +g107165 +S'of' +p107167 +tp107168 +a(g107165 +g107167 +S'red.' +p107169 +tp107170 +a(g107167 +g107169 +S'next' +p107171 +tp107172 +a(g107169 +g107171 +S'simone' +p107173 +tp107174 +a(g107171 +g107173 +S'painted' +p107175 +tp107176 +a(g107173 +g107175 +S'the' +p107177 +tp107178 +a(g107175 +g107177 +S'angel’s' +p107179 +tp107180 +a(g107177 +g107179 +S'robe' +p107181 +tp107182 +a(g107179 +g107181 +S'in' +p107183 +tp107184 +a(g107181 +g107183 +S'delicate' +p107185 +tp107186 +a(g107183 +g107185 +S'pinks,' +p107187 +tp107188 +a(g107185 +g107187 +S'shadowed' +p107189 +tp107190 +a(g107187 +g107189 +S'with' +p107191 +tp107192 +a(g107189 +g107191 +S'darker' +p107193 +tp107194 +a(g107191 +g107193 +S'tones' +p107195 +tp107196 +a(g107193 +g107195 +S'to' +p107197 +tp107198 +a(g107195 +g107197 +S'define' +p107199 +tp107200 +a(g107197 +g107199 +S'folds' +p107201 +tp107202 +a(g107199 +g107201 +S'and' +p107203 +tp107204 +a(g107201 +g107203 +S'the' +p107205 +tp107206 +a(g107203 +g107205 +S'body.' +p107207 +tp107208 +a(g107205 +g107207 +S'after' +p107209 +tp107210 +a(g107207 +g107209 +S'tracing' +p107211 +tp107212 +a(g107209 +g107211 +S'the' +p107213 +tp107214 +a(g107211 +g107213 +S'outlines' +p107215 +tp107216 +a(g107213 +g107215 +S'of' +p107217 +tp107218 +a(g107215 +g107217 +S'the' +p107219 +tp107220 +a(g107217 +g107219 +S'brocade,' +p107221 +tp107222 +a(g107219 +g107221 +S'he' +p107223 +tp107224 +a(g107221 +g107223 +S'scraped' +p107225 +tp107226 +a(g107223 +g107225 +S'away' +p107227 +tp107228 +a(g107225 +g107227 +S'the' +p107229 +tp107230 +a(g107227 +g107229 +S'paint' +p107231 +tp107232 +a(g107229 +g107231 +S'in' +p107233 +tp107234 +a(g107231 +g107233 +S'the' +p107235 +tp107236 +a(g107233 +g107235 +S'pattern' +p107237 +tp107238 +a(g107235 +g107237 +S'area' +p107239 +tp107240 +a(g107237 +g107239 +S'to' +p107241 +tp107242 +a(g107239 +g107241 +S'reveal' +p107243 +tp107244 +a(g107241 +g107243 +S'the' +p107245 +tp107246 +a(g107243 +g107245 +S'gilding' +p107247 +tp107248 +a(g107245 +g107247 +S'below,' +p107249 +tp107250 +a(g107247 +g107249 +S'and' +p107251 +tp107252 +a(g107249 +g107251 +S'finally' +p107253 +tp107254 +a(g107251 +g107253 +S'textured' +p107255 +tp107256 +a(g107253 +g107255 +S'the' +p107257 +tp107258 +a(g107255 +g107257 +S'gold' +p107259 +tp107260 +a(g107257 +g107259 +S'with' +p107261 +tp107262 +a(g107259 +g107261 +S'tiny' +p107263 +tp107264 +a(g107261 +g107263 +S'punches.' +p107265 +tp107266 +a(g107263 +g107265 +S'this' +p107267 +tp107268 +a(g107265 +g107267 +S'technique' +p107269 +tp107270 +a(g107267 +g107269 +S'may' +p107271 +tp107272 +a(g107269 +g107271 +S'have' +p107273 +tp107274 +a(g107271 +g107273 +S'been' +p107275 +tp107276 +a(g107273 +g107275 +S'inspired' +p107277 +tp107278 +a(g107275 +g107277 +S'by' +p107279 +tp107280 +a(g107277 +g107279 +S'islamic' +p107281 +tp107282 +a(g107279 +g107281 +S'“sgraffito”' +p107283 +tp107284 +a(g107281 +g107283 +S'(scratched)' +p107285 +tp107286 +a(g107283 +g107285 +S'ceramics,' +p107287 +tp107288 +a(g107285 +g107287 +S'which' +p107289 +tp107290 +a(g107287 +g107289 +S'were' +p107291 +tp107292 +a(g107289 +g107291 +S'imported' +p107293 +tp107294 +a(g107291 +g107293 +S'into' +p107295 +tp107296 +a(g107293 +g107295 +S'italy.' +p107297 +tp107298 +a(g107295 +g107297 +S'saint' +p107299 +tp107300 +a(g107297 +g107299 +S'jerome' +p107301 +tp107302 +a(g107299 +g107301 +S'is' +p107303 +tp107304 +a(g107301 +g107303 +S'often' +p107305 +tp107306 +a(g107303 +g107305 +S'depicted' +p107307 +tp107308 +a(g107305 +g107307 +S'on' +p107309 +tp107310 +a(g107307 +g107309 +S'small' +p107311 +tp107312 +a(g107309 +g107311 +S'devotional' +p107313 +tp107314 +a(g107311 +g107313 +S'panels' +p107315 +tp107316 +a(g107313 +g107315 +S'like' +p107317 +tp107318 +a(g107315 +g107317 +S'this' +p107319 +tp107320 +a(g107317 +g107319 +S'one.' +p107321 +tp107322 +a(g107319 +g107321 +S'because' +p107323 +tp107324 +a(g107321 +g107323 +S'he' +p107325 +tp107326 +a(g107323 +g107325 +S'had' +p107327 +tp107328 +a(g107325 +g107327 +S'translated' +p107329 +tp107330 +a(g107327 +g107329 +S'the' +p107331 +tp107332 +a(g107329 +g107331 +S'bible' +p107333 +tp107334 +a(g107331 +g107333 +S'into' +p107335 +tp107336 +a(g107333 +g107335 +S'latin,' +p107337 +tp107338 +a(g107335 +g107337 +S'the' +p107339 +tp107340 +a(g107337 +g107339 +S'saint' +p107341 +tp107342 +a(g107339 +g107341 +S'was' +p107343 +tp107344 +a(g107341 +g107343 +S'a' +p107345 +tp107346 +a(g107343 +g107345 +S'favorite' +p107347 +tp107348 +a(g107345 +g107347 +S'of' +p107349 +tp107350 +a(g107347 +g107349 +S'renaissance' +p107351 +tp107352 +a(g107349 +g107351 +S'humanists' +p107353 +tp107354 +a(g107351 +g107353 +S'and' +p107355 +tp107356 +a(g107353 +g107355 +S'was' +p107357 +tp107358 +a(g107355 +g107357 +S'often' +p107359 +tp107360 +a(g107357 +g107359 +S'shown' +p107361 +tp107362 +a(g107359 +g107361 +S'reading' +p107363 +tp107364 +a(g107361 +g107363 +S'in' +p107365 +tp107366 +a(g107363 +g107365 +S'a' +p107367 +tp107368 +a(g107365 +g107367 +S'study.' +p107369 +tp107370 +a(g107367 +g107369 +S'other' +p107371 +tp107372 +a(g107369 +g107371 +S'depictions' +p107373 +tp107374 +a(g107371 +g107373 +S'showed' +p107375 +tp107376 +a(g107373 +g107375 +S'him' +p107377 +tp107378 +a(g107375 +g107377 +S'in' +p107379 +tp107380 +a(g107377 +g107379 +S'the' +p107381 +tp107382 +a(g107379 +g107381 +S'wilderness,' +p107383 +tp107384 +a(g107381 +g107383 +S'living' +p107385 +tp107386 +a(g107383 +g107385 +S'as' +p107387 +tp107388 +a(g107385 +g107387 +S'a' +p107389 +tp107390 +a(g107387 +g107389 +S'hermit' +p107391 +tp107392 +a(g107389 +g107391 +S'and' +p107393 +tp107394 +a(g107391 +g107393 +S'beating' +p107395 +tp107396 +a(g107393 +g107395 +S'his' +p107397 +tp107398 +a(g107395 +g107397 +S'breast' +p107399 +tp107400 +a(g107397 +g107399 +S'in' +p107401 +tp107402 +a(g107399 +g107401 +S'penance.' +p107403 +tp107404 +a(g107401 +g107403 +S'here' +p107405 +tp107406 +a(g107403 +g107405 +S'the' +p107407 +tp107408 +a(g107405 +g107407 +S'two' +p107409 +tp107410 +a(g107407 +g107409 +S'types' +p107411 +tp107412 +a(g107409 +g107411 +S'are' +p107413 +tp107414 +a(g107411 +g107413 +S'combined.' +p107415 +tp107416 +a(g107413 +g107415 +S'in' +p107417 +tp107418 +a(g107415 +g107417 +S'fact,' +p107419 +tp107420 +a(g107417 +g107419 +S'the' +p107421 +tp107422 +a(g107419 +g107421 +S'elderly' +p107423 +tp107424 +a(g107421 +g107423 +S'saint' +p107425 +tp107426 +a(g107423 +g107425 +S'and' +p107427 +tp107428 +a(g107425 +g107427 +S'his' +p107429 +tp107430 +a(g107427 +g107429 +S'lion' +p107431 +tp107432 +a(g107429 +g107431 +S'companion,' +p107433 +tp107434 +a(g107431 +g107433 +S'shifted' +p107435 +tp107436 +a(g107433 +g107435 +S'to' +p107437 +tp107438 +a(g107435 +g107437 +S'the' +p107439 +tp107440 +a(g107437 +g107439 +S'lower' +p107441 +tp107442 +a(g107439 +g107441 +S'right,' +p107443 +tp107444 +a(g107441 +g107443 +S'occupy' +p107445 +tp107446 +a(g107443 +g107445 +S'only' +p107447 +tp107448 +a(g107445 +g107447 +S'a' +p107449 +tp107450 +a(g107447 +g107449 +S'small' +p107451 +tp107452 +a(g107449 +g107451 +S'area' +p107453 +tp107454 +a(g107451 +g107453 +S'of' +p107455 +tp107456 +a(g107453 +g107455 +S'the' +p107457 +tp107458 +a(g107455 +g107457 +S'painting.' +p107459 +tp107460 +a(g107457 +g107459 +S'the' +p107461 +tp107462 +a(g107459 +g107461 +S'landscape' +p107463 +tp107464 +a(g107461 +g107463 +S'commands' +p107465 +tp107466 +a(g107463 +g107465 +S'center' +p107467 +tp107468 +a(g107465 +g107467 +S'stage,' +p107469 +tp107470 +a(g107467 +g107469 +S'filled' +p107471 +tp107472 +a(g107469 +g107471 +S'with' +p107473 +tp107474 +a(g107471 +g107473 +S'a' +p107475 +tp107476 +a(g107473 +g107475 +S'distant' +p107477 +tp107478 +a(g107475 +g107477 +S'view' +p107479 +tp107480 +a(g107477 +g107479 +S'and' +p107481 +tp107482 +a(g107479 +g107481 +S'abundant' +p107483 +tp107484 +a(g107481 +g107483 +S'life,' +p107485 +tp107486 +a(g107483 +g107485 +S'all' +p107487 +tp107488 +a(g107485 +g107487 +S'washed' +p107489 +tp107490 +a(g107487 +g107489 +S'with' +p107491 +tp107492 +a(g107489 +g107491 +S'a' +p107493 +tp107494 +a(g107491 +g107493 +S'radiant' +p107495 +tp107496 +a(g107493 +g107495 +S'light.' +p107497 +tp107498 +a(g107495 +g107497 +S'many' +p107499 +tp107500 +a(g107497 +g107499 +S'of' +p107501 +tp107502 +a(g107499 +g107501 +S'the' +p107503 +tp107504 +a(g107501 +g107503 +S'plants' +p107505 +tp107506 +a(g107503 +g107505 +S'and' +p107507 +tp107508 +a(g107505 +g107507 +S'animals' +p107509 +tp107510 +a(g107507 +g107509 +S'have' +p107511 +tp107512 +a(g107509 +g107511 +S'various' +p107513 +tp107514 +a(g107511 +g107513 +S'symbolic' +p107515 +tp107516 +a(g107513 +g107515 +S'meanings—the' +p107517 +tp107518 +a(g107515 +g107517 +S'rabbits,' +p107519 +tp107520 +a(g107517 +g107519 +S'for' +p107521 +tp107522 +a(g107519 +g107521 +S'example,' +p107523 +tp107524 +a(g107521 +g107523 +S'could' +p107525 +tp107526 +a(g107523 +g107525 +S'serve' +p107527 +tp107528 +a(g107525 +g107527 +S'as' +p107529 +tp107530 +a(g107527 +g107529 +S'reminders' +p107531 +tp107532 +a(g107529 +g107531 +S'of' +p107533 +tp107534 +a(g107531 +g107533 +S'lust' +p107535 +tp107536 +a(g107533 +g107535 +S'or' +p107537 +tp107538 +a(g107535 +g107537 +S'christian' +p107539 +tp107540 +a(g107537 +g107539 +S'meekness.' +p107541 +tp107542 +a(g107539 +g107541 +S'rather' +p107543 +tp107544 +a(g107541 +g107543 +S'than' +p107545 +tp107546 +a(g107543 +g107545 +S'intending' +p107547 +tp107548 +a(g107545 +g107547 +S'that' +p107549 +tp107550 +a(g107547 +g107549 +S'we' +p107551 +tp107552 +a(g107549 +g107551 +S'"read"' +p107553 +tp107554 +a(g107551 +g107553 +S'them' +p107555 +tp107556 +a(g107553 +g107555 +S'as' +p107557 +tp107558 +a(g107555 +g107557 +S'symbols,' +p107559 +tp107560 +a(g107557 +g107559 +S'perhaps' +p107561 +tp107562 +a(g107559 +g107561 +S'bellini' +p107563 +tp107564 +a(g107561 +g107563 +S'means' +p107565 +tp107566 +a(g107563 +g107565 +S'us' +p107567 +tp107568 +a(g107565 +g107567 +S'to' +p107569 +tp107570 +a(g107567 +g107569 +S'see' +p107571 +tp107572 +a(g107569 +g107571 +S'them' +p107573 +tp107574 +a(g107571 +g107573 +S'simply' +p107575 +tp107576 +a(g107573 +g107575 +S'as' +p107577 +tp107578 +a(g107575 +g107577 +S'part' +p107579 +tp107580 +a(g107577 +g107579 +S'of' +p107581 +tp107582 +a(g107579 +g107581 +S'a' +p107583 +tp107584 +a(g107581 +g107583 +S'vast' +p107585 +tp107586 +a(g107583 +g107585 +S'and' +p107587 +tp107588 +a(g107585 +g107587 +S'rich' +p107589 +tp107590 +a(g107587 +g107589 +S'nature.' +p107591 +tp107592 +a(g107589 +g107591 +S'perhaps,' +p107593 +tp107594 +a(g107591 +g107593 +S'paradoxically,' +p107595 +tp107596 +a(g107593 +g107595 +S'it' +p107597 +tp107598 +a(g107595 +g107597 +S'was' +p107599 +tp107600 +a(g107597 +g107599 +S'because' +p107601 +tp107602 +a(g107599 +g107601 +S'venice' +p107603 +tp107604 +a(g107601 +g107603 +S'was' +p107605 +tp107606 +a(g107603 +g107605 +S'so' +p107607 +tp107608 +a(g107605 +g107607 +S'intensely' +p107609 +tp107610 +a(g107607 +g107609 +S'urban—it' +p107611 +tp107612 +a(g107609 +g107611 +S'was' +p107613 +tp107614 +a(g107611 +g107613 +S'a' +p107615 +tp107616 +a(g107613 +g107615 +S'largely' +p107617 +tp107618 +a(g107615 +g107617 +S'artificial' +p107619 +tp107620 +a(g107617 +g107619 +S'environment' +p107621 +tp107622 +a(g107619 +g107621 +S'constructed' +p107623 +tp107624 +a(g107621 +g107623 +S'on' +p107625 +tp107626 +a(g107623 +g107625 +S'pilings' +p107627 +tp107628 +a(g107625 +g107627 +S'and' +p107629 +tp107630 +a(g107627 +g107629 +S'scant' +p107631 +tp107632 +a(g107629 +g107631 +S'marshy' +p107633 +tp107634 +a(g107631 +g107633 +S'ground—that' +p107635 +tp107636 +a(g107633 +g107635 +S'its' +p107637 +tp107638 +a(g107635 +g107637 +S'artists' +p107639 +tp107640 +a(g107637 +g107639 +S'developed' +p107641 +tp107642 +a(g107639 +g107641 +S'into' +p107643 +tp107644 +a(g107641 +g107643 +S'such' +p107645 +tp107646 +a(g107643 +g107645 +S'evocative' +p107647 +tp107648 +a(g107645 +g107647 +S'landscape' +p107649 +tp107650 +a(g107647 +g107649 +S'painters.' +p107651 +tp107652 +a(g107649 +g107651 +S'their' +p107653 +tp107654 +a(g107651 +g107653 +S'approach,' +p107655 +tp107656 +a(g107653 +g107655 +S'in' +p107657 +tp107658 +a(g107655 +g107657 +S'contrast' +p107659 +tp107660 +a(g107657 +g107659 +S'to' +p107661 +tp107662 +a(g107659 +g107661 +S'contemporaries' +p107663 +tp107664 +a(g107661 +g107663 +S'elsewhere,' +p107665 +tp107666 +a(g107663 +g107665 +S'was' +p107667 +tp107668 +a(g107665 +g107667 +S'more' +p107669 +tp107670 +a(g107667 +g107669 +S'intuitive' +p107671 +tp107672 +a(g107669 +g107671 +S'than' +p107673 +tp107674 +a(g107671 +g107673 +S'scientific:' +p107675 +tp107676 +a(g107673 +g107675 +S'they' +p107677 +tp107678 +a(g107675 +g107677 +S'responded' +p107679 +tp107680 +a(g107677 +g107679 +S'to,' +p107681 +tp107682 +a(g107679 +g107681 +S'rather' +p107683 +tp107684 +a(g107681 +g107683 +S'than' +p107685 +tp107686 +a(g107683 +g107685 +S'recorded,' +p107687 +tp107688 +a(g107685 +g107687 +S'nature.' +p107689 +tp107690 +a(g107687 +g107689 +S'the' +p107691 +tp107692 +a(g107689 +g107691 +S'style' +p107693 +tp107694 +a(g107691 +g107693 +S'of' +p107695 +tp107696 +a(g107693 +g107695 +S'fra' +p107697 +tp107698 +a(g107695 +g107697 +S'carnevale,' +p107699 +tp107700 +a(g107697 +g107699 +S'which' +p107701 +tp107702 +a(g107699 +g107701 +S'draws' +p107703 +tp107704 +a(g107701 +g107703 +S'on' +p107705 +tp107706 +a(g107703 +g107705 +S'older' +p107707 +tp107708 +a(g107705 +g107707 +S'artists' +p107709 +tp107710 +a(g107707 +g107709 +S'like' +p107711 +tp107712 +a(g107709 +g107711 +S'fra' +p107713 +tp107714 +a(g107711 +g107713 +S'filippo' +p107715 +tp107716 +a(g107713 +g107715 +S'lippi,' +p107717 +tp107718 +a(g107715 +g107717 +S'also' +p107719 +tp107720 +a(g107717 +g107719 +S'shows' +p107721 +tp107722 +a(g107719 +g107721 +S'evidence' +p107723 +tp107724 +a(g107721 +g107723 +S'of' +p107725 +tp107726 +a(g107723 +g107725 +S'newer' +p107727 +tp107728 +a(g107725 +g107727 +S'trends,' +p107729 +tp107730 +a(g107727 +g107729 +S'especially' +p107731 +tp107732 +a(g107729 +g107731 +S'in' +p107733 +tp107734 +a(g107731 +g107733 +S'his' +p107735 +tp107736 +a(g107733 +g107735 +S'treatment' +p107737 +tp107738 +a(g107735 +g107737 +S'of' +p107739 +tp107740 +a(g107737 +g107739 +S'distant' +p107741 +tp107742 +a(g107739 +g107741 +S'space.' +p107743 +tp107744 +a(g107741 +g107743 +S'follow' +p107745 +tp107746 +a(g107743 +g107745 +S'the' +p107747 +tp107748 +a(g107745 +g107747 +S'lines' +p107749 +tp107750 +a(g107747 +g107749 +S'of' +p107751 +tp107752 +a(g107749 +g107751 +S'the' +p107753 +tp107754 +a(g107751 +g107753 +S'architecture:' +p107755 +tp107756 +a(g107753 +g107755 +S'the' +p107757 +tp107758 +a(g107755 +g107757 +S'regular' +p107759 +tp107760 +a(g107757 +g107759 +S'rhythm' +p107761 +tp107762 +a(g107759 +g107761 +S'of' +p107763 +tp107764 +a(g107761 +g107763 +S'arcades' +p107765 +tp107766 +a(g107763 +g107765 +S'and' +p107767 +tp107768 +a(g107765 +g107767 +S'arches' +p107769 +tp107770 +a(g107767 +g107769 +S'recedes' +p107771 +tp107772 +a(g107769 +g107771 +S'into' +p107773 +tp107774 +a(g107771 +g107773 +S'the' +p107775 +tp107776 +a(g107773 +g107775 +S'background.' +p107777 +tp107778 +a(g107775 +g107777 +S'the' +p107779 +tp107780 +a(g107777 +g107779 +S'grid' +p107781 +tp107782 +a(g107779 +g107781 +S'formed' +p107783 +tp107784 +a(g107781 +g107783 +S'by' +p107785 +tp107786 +a(g107783 +g107785 +S'the' +p107787 +tp107788 +a(g107785 +g107787 +S'courtyard' +p107789 +tp107790 +a(g107787 +g107789 +S'measures' +p107791 +tp107792 +a(g107789 +g107791 +S'the' +p107793 +tp107794 +a(g107791 +g107793 +S'distance' +p107795 +tp107796 +a(g107793 +g107795 +S'for' +p107797 +tp107798 +a(g107795 +g107797 +S'our' +p107799 +tp107800 +a(g107797 +g107799 +S'eye.' +p107801 +tp107802 +a(g107799 +g107801 +S'these' +p107803 +tp107804 +a(g107801 +g107803 +S'converging' +p107805 +tp107806 +a(g107803 +g107805 +S'perspective' +p107807 +tp107808 +a(g107805 +g107807 +S'lines' +p107809 +tp107810 +a(g107807 +g107809 +S'lead' +p107811 +tp107812 +a(g107809 +g107811 +S'to' +p107813 +tp107814 +a(g107811 +g107813 +S'a' +p107815 +tp107816 +a(g107813 +g107815 +S'door' +p107817 +tp107818 +a(g107815 +g107817 +S'beyond' +p107819 +tp107820 +a(g107817 +g107819 +S'which' +p107821 +tp107822 +a(g107819 +g107821 +S'we' +p107823 +tp107824 +a(g107821 +g107823 +S'glimpse' +p107825 +tp107826 +a(g107823 +g107825 +S'a' +p107827 +tp107828 +a(g107825 +g107827 +S'lush' +p107829 +tp107830 +a(g107827 +g107829 +S'garden.' +p107831 +tp107832 +a(g107829 +g107831 +S'this' +p107833 +tp107834 +a(g107831 +g107833 +S'is' +p107835 +tp107836 +a(g107833 +g107835 +S'not' +p107837 +tp107838 +a(g107835 +g107837 +S'a' +p107839 +tp107840 +a(g107837 +g107839 +S'random' +p107841 +tp107842 +a(g107839 +g107841 +S'choice' +p107843 +tp107844 +a(g107841 +g107843 +S'of' +p107845 +tp107846 +a(g107843 +g107845 +S'landscape.' +p107847 +tp107848 +a(g107845 +g107847 +S'the' +p107849 +tp107850 +a(g107847 +g107849 +S'artist' +p107851 +tp107852 +a(g107849 +g107851 +S'has' +p107853 +tp107854 +a(g107851 +g107853 +S'used' +p107855 +tp107856 +a(g107853 +g107855 +S'perspective' +p107857 +tp107858 +a(g107855 +g107857 +S'not' +p107859 +tp107860 +a(g107857 +g107859 +S'simply' +p107861 +tp107862 +a(g107859 +g107861 +S'to' +p107863 +tp107864 +a(g107861 +g107863 +S'create' +p107865 +tp107866 +a(g107863 +g107865 +S'a' +p107867 +tp107868 +a(g107865 +g107867 +S'convincing' +p107869 +tp107870 +a(g107867 +g107869 +S'depiction' +p107871 +tp107872 +a(g107869 +g107871 +S'of' +p107873 +tp107874 +a(g107871 +g107873 +S'space,' +p107875 +tp107876 +a(g107873 +g107875 +S'but' +p107877 +tp107878 +a(g107875 +g107877 +S'to' +p107879 +tp107880 +a(g107877 +g107879 +S'lead' +p107881 +tp107882 +a(g107879 +g107881 +S'us' +p107883 +tp107884 +a(g107881 +g107883 +S'to' +p107885 +tp107886 +a(g107883 +g107885 +S'see' +p107887 +tp107888 +a(g107885 +g107887 +S'the' +p107889 +tp107890 +a(g107887 +g107889 +S'theological' +p107891 +tp107892 +a(g107889 +g107891 +S'implications' +p107893 +tp107894 +a(g107891 +g107893 +S'of' +p107895 +tp107896 +a(g107893 +g107895 +S'his' +p107897 +tp107898 +a(g107895 +g107897 +S'scene.' +p107899 +tp107900 +a(g107897 +g107899 +S'in' +p107901 +tp107902 +a(g107899 +g107901 +S'reference' +p107903 +tp107904 +a(g107901 +g107903 +S'to' +p107905 +tp107906 +a(g107903 +g107905 +S'her' +p107907 +tp107908 +a(g107905 +g107907 +S'virginity,' +p107909 +tp107910 +a(g107907 +g107909 +S'mary' +p107911 +tp107912 +a(g107909 +g107911 +S'was' +p107913 +tp107914 +a(g107911 +g107913 +S'often' +p107915 +tp107916 +a(g107913 +g107915 +S'called' +p107917 +tp107918 +a(g107915 +g107917 +S'the' +p107919 +tp107920 +a(g107917 +g107919 +S'beginning' +p107921 +tp107922 +a(g107919 +g107921 +S'in' +p107923 +tp107924 +a(g107921 +g107923 +S'the' +p107925 +tp107926 +a(g107923 +g107925 +S'mid-1300s,' +p107927 +tp107928 +a(g107925 +g107927 +S'an' +p107929 +tp107930 +a(g107927 +g107929 +S'official' +p107931 +tp107932 +a(g107929 +g107931 +S'portrait' +p107933 +tp107934 +a(g107931 +g107933 +S'of' +p107935 +tp107936 +a(g107933 +g107935 +S'each' +p107937 +tp107938 +a(g107935 +g107937 +S'new' +p107939 +tp107940 +a(g107937 +g107939 +S'doge,' +p107941 +tp107942 +a(g107939 +g107941 +S'the' +p107943 +tp107944 +a(g107941 +g107943 +S'elected' +p107945 +tp107946 +a(g107943 +g107945 +S'head' +p107947 +tp107948 +a(g107945 +g107947 +S'of' +p107949 +tp107950 +a(g107947 +g107949 +S'the' +p107951 +tp107952 +a(g107949 +g107951 +S'venetian' +p107953 +tp107954 +a(g107951 +g107953 +S'republic,' +p107955 +tp107956 +a(g107953 +g107955 +S'was' +p107957 +tp107958 +a(g107955 +g107957 +S'hung' +p107959 +tp107960 +a(g107957 +g107959 +S'in' +p107961 +tp107962 +a(g107959 +g107961 +S'the' +p107963 +tp107964 +a(g107961 +g107963 +S'room' +p107965 +tp107966 +a(g107963 +g107965 +S'where' +p107967 +tp107968 +a(g107965 +g107967 +S'the' +p107969 +tp107970 +a(g107967 +g107969 +S"city's" +p107971 +tp107972 +a(g107969 +g107971 +S'governing' +p107973 +tp107974 +a(g107971 +g107973 +S'council' +p107975 +tp107976 +a(g107973 +g107975 +S'met.' +p107977 +tp107978 +a(g107975 +g107977 +S'paintings' +p107979 +tp107980 +a(g107977 +g107979 +S'commissioned' +p107981 +tp107982 +a(g107979 +g107981 +S'by' +p107983 +tp107984 +a(g107981 +g107983 +S"venice's" +p107985 +tp107986 +a(g107983 +g107985 +S'religious' +p107987 +tp107988 +a(g107985 +g107987 +S'confraternities' +p107989 +tp107990 +a(g107987 +g107989 +S'sometimes' +p107991 +tp107992 +a(g107989 +g107991 +S'also' +p107993 +tp107994 +a(g107991 +g107993 +S'included' +p107995 +tp107996 +a(g107993 +g107995 +S'likenesses' +p107997 +tp107998 +a(g107995 +g107997 +S'of' +p107999 +tp108000 +a(g107997 +g107999 +S'the' +p108001 +tp108002 +a(g107999 +g108001 +S"society's" +p108003 +tp108004 +a(g108001 +g108003 +S'leading' +p108005 +tp108006 +a(g108003 +g108005 +S'members.' +p108007 +tp108008 +a(g108005 +g108007 +S'single' +p108009 +tp108010 +a(g108007 +g108009 +S'portraits' +p108011 +tp108012 +a(g108009 +g108011 +S'of' +p108013 +tp108014 +a(g108011 +g108013 +S'private' +p108015 +tp108016 +a(g108013 +g108015 +S'individuals,' +p108017 +tp108018 +a(g108015 +g108017 +S'however,' +p108019 +tp108020 +a(g108017 +g108019 +S'were' +p108021 +tp108022 +a(g108019 +g108021 +S'virtually' +p108023 +tp108024 +a(g108021 +g108023 +S'unknown' +p108025 +tp108026 +a(g108023 +g108025 +S'until' +p108027 +tp108028 +a(g108025 +g108027 +S'the' +p108029 +tp108030 +a(g108027 +g108029 +S'1470s.' +p108031 +tp108032 +a(g108029 +g108031 +S'venetians' +p108033 +tp108034 +a(g108031 +g108033 +S'credited' +p108035 +tp108036 +a(g108033 +g108035 +S'their' +p108037 +tp108038 +a(g108035 +g108037 +S'new' +p108039 +tp108040 +a(g108037 +g108039 +S'popularity' +p108041 +tp108042 +a(g108039 +g108041 +S'to' +p108043 +tp108044 +a(g108041 +g108043 +S'bellini.' +p108045 +tp108046 +a(g108043 +g108045 +S'his' +p108047 +tp108048 +a(g108045 +g108047 +S'portraits' +p108049 +tp108050 +a(g108047 +g108049 +S'spawned' +p108051 +tp108052 +a(g108049 +g108051 +S'such' +p108053 +tp108054 +a(g108051 +g108053 +S'demand' +p108055 +tp108056 +a(g108053 +g108055 +S'for' +p108057 +tp108058 +a(g108055 +g108057 +S'likenesses' +p108059 +tp108060 +a(g108057 +g108059 +S'of' +p108061 +tp108062 +a(g108059 +g108061 +S'family' +p108063 +tp108064 +a(g108061 +g108063 +S'members' +p108065 +tp108066 +a(g108063 +g108065 +S'that' +p108067 +tp108068 +a(g108065 +g108067 +S'his' +p108069 +tp108070 +a(g108067 +g108069 +S'contemporaries' +p108071 +tp108072 +a(g108069 +g108071 +S'reported' +p108073 +tp108074 +a(g108071 +g108073 +S'it' +p108075 +tp108076 +a(g108073 +g108075 +S'common' +p108077 +tp108078 +a(g108075 +g108077 +S'to' +p108079 +tp108080 +a(g108077 +g108079 +S'see' +p108081 +tp108082 +a(g108079 +g108081 +S'the' +p108083 +tp108084 +a(g108081 +g108083 +S'faces' +p108085 +tp108086 +a(g108083 +g108085 +S'of' +p108087 +tp108088 +a(g108085 +g108087 +S'four' +p108089 +tp108090 +a(g108087 +g108089 +S'generations' +p108091 +tp108092 +a(g108089 +g108091 +S'in' +p108093 +tp108094 +a(g108091 +g108093 +S'a' +p108095 +tp108096 +a(g108093 +g108095 +S'single' +p108097 +tp108098 +a(g108095 +g108097 +S'household.' +p108099 +tp108100 +a(g108097 +g108099 +S'the' +p108101 +tp108102 +a(g108099 +g108101 +S'individualized' +p108103 +tp108104 +a(g108101 +g108103 +S'features' +p108105 +tp108106 +a(g108103 +g108105 +S'of' +p108107 +tp108108 +a(g108105 +g108107 +S'this' +p108109 +tp108110 +a(g108107 +g108109 +S'young' +p108111 +tp108112 +a(g108109 +g108111 +S'man' +p108113 +tp108114 +a(g108111 +g108113 +S'are' +p108115 +tp108116 +a(g108113 +g108115 +S'carefully' +p108117 +tp108118 +a(g108115 +g108117 +S'defined' +p108119 +tp108120 +a(g108117 +g108119 +S'but' +p108121 +tp108122 +a(g108119 +g108121 +S'do' +p108123 +tp108124 +a(g108121 +g108123 +S'not' +p108125 +tp108126 +a(g108123 +g108125 +S'reveal' +p108127 +tp108128 +a(g108125 +g108127 +S'much' +p108129 +tp108130 +a(g108127 +g108129 +S'about' +p108131 +tp108132 +a(g108129 +g108131 +S'his' +p108133 +tp108134 +a(g108131 +g108133 +S'personality.' +p108135 +tp108136 +a(g108133 +g108135 +S'in' +p108137 +tp108138 +a(g108135 +g108137 +S'fact,' +p108139 +tp108140 +a(g108137 +g108139 +S'all' +p108141 +tp108142 +a(g108139 +g108141 +S'of' +p108143 +tp108144 +a(g108141 +g108143 +S"bellini's" +p108145 +tp108146 +a(g108143 +g108145 +S'portraits' +p108147 +tp108148 +a(g108145 +g108147 +S'of' +p108149 +tp108150 +a(g108147 +g108149 +S'young' +p108151 +tp108152 +a(g108149 +g108151 +S'men' +p108153 +tp108154 +a(g108151 +g108153 +S'share' +p108155 +tp108156 +a(g108153 +g108155 +S'a' +p108157 +tp108158 +a(g108155 +g108157 +S'reserved' +p108159 +tp108160 +a(g108157 +g108159 +S'dignity' +p108161 +tp108162 +a(g108159 +g108161 +S'but' +p108163 +tp108164 +a(g108161 +g108163 +S'deny' +p108165 +tp108166 +a(g108163 +g108165 +S'a' +p108167 +tp108168 +a(g108165 +g108167 +S'more' +p108169 +tp108170 +a(g108167 +g108169 +S'penetrating' +p108171 +tp108172 +a(g108169 +g108171 +S'look' +p108173 +tp108174 +a(g108171 +g108173 +S'into' +p108175 +tp108176 +a(g108173 +g108175 +S'the' +p108177 +tp108178 +a(g108175 +g108177 +S"sitter's" +p108179 +tp108180 +a(g108177 +g108179 +S'character.' +p108181 +tp108182 +a(g108179 +g108181 +S'venetian' +p108183 +tp108184 +a(g108181 +g108183 +S'men' +p108185 +tp108186 +a(g108183 +g108185 +S'of' +p108187 +tp108188 +a(g108185 +g108187 +S'both' +p108189 +tp108190 +a(g108187 +g108189 +S'the' +p108191 +tp108192 +a(g108189 +g108191 +S'patrician' +p108193 +tp108194 +a(g108191 +g108193 +S'and' +p108195 +tp108196 +a(g108193 +g108195 +S'the' +p108197 +tp108198 +a(g108195 +g108197 +S'citizen' +p108199 +tp108200 +a(g108197 +g108199 +S'classes' +p108201 +tp108202 +a(g108199 +g108201 +S'wore' +p108203 +tp108204 +a(g108201 +g108203 +S'a' +p108205 +tp108206 +a(g108203 +g108205 +S'long,' +p108207 +tp108208 +a(g108205 +g108207 +S'simple' +p108209 +tp108210 +a(g108207 +g108209 +S'black' +p108211 +tp108212 +a(g108209 +g108211 +S'robe,' +p108213 +tp108214 +a(g108211 +g108213 +S'a' +p108215 +tp108216 +a(g108213 +g108215 +S'small' +p108217 +tp108218 +a(g108215 +g108217 +S'black' +p108219 +tp108220 +a(g108217 +g108219 +S'hat,' +p108221 +tp108222 +a(g108219 +g108221 +S'and' +p108223 +tp108224 +a(g108221 +g108223 +S'a' +p108225 +tp108226 +a(g108223 +g108225 +S'stole' +p108227 +tp108228 +a(g108225 +g108227 +S'over' +p108229 +tp108230 +a(g108227 +g108229 +S'the' +p108231 +tp108232 +a(g108229 +g108231 +S'shoulder' +p108233 +tp108234 +a(g108231 +g108233 +S'or' +p108235 +tp108236 +a(g108233 +g108235 +S'sometimes,' +p108237 +tp108238 +a(g108235 +g108237 +S'as' +p108239 +tp108240 +a(g108237 +g108239 +S'here,' +p108241 +tp108242 +a(g108239 +g108241 +S'over' +p108243 +tp108244 +a(g108241 +g108243 +S'the' +p108245 +tp108246 +a(g108243 +g108245 +S'head.' +p108247 +tp108248 +a(g108245 +g108247 +S'red' +p108249 +tp108250 +a(g108247 +g108249 +S'gowns' +p108251 +tp108252 +a(g108249 +g108251 +S'worn' +p108253 +tp108254 +a(g108251 +g108253 +S'by' +p108255 +tp108256 +a(g108253 +g108255 +S'senators' +p108257 +tp108258 +a(g108255 +g108257 +S'were' +p108259 +tp108260 +a(g108257 +g108259 +S'also' +p108261 +tp108262 +a(g108259 +g108261 +S'prescribed' +p108263 +tp108264 +a(g108261 +g108263 +S'for' +p108265 +tp108266 +a(g108263 +g108265 +S'certain' +p108267 +tp108268 +a(g108265 +g108267 +S'ceremonial' +p108269 +tp108270 +a(g108267 +g108269 +S'occasions.' +p108271 +tp108272 +a(g108269 +g108271 +S'both' +p108273 +tp108274 +a(g108271 +g108273 +S'this' +p108275 +tp108276 +a(g108273 +g108275 +S'panel' +p108277 +tp108278 +a(g108275 +g108277 +S'of' +p108279 +tp108280 +a(g108277 +g108279 +S'ginevra' +p108281 +tp108282 +a(g108279 +g108281 +S'bentivoglio' +p108283 +tp108284 +a(g108281 +g108283 +S'and' +p108285 +tp108286 +a(g108283 +g108285 +S'the' +p108287 +tp108288 +a(g108285 +g108287 +S'companion' +p108289 +tp108290 +a(g108287 +g108289 +S'portrait' +p108291 +tp108292 +a(g108289 +g108291 +S'of' +p108293 +tp108294 +a(g108291 +g108293 +S'her' +p108295 +tp108296 +a(g108293 +g108295 +S'husband,' +p108297 +tp108298 +a(g108295 +g108297 +S'renaissance' +p108299 +tp108300 +a(g108297 +g108299 +S'profile' +p108301 +tp108302 +a(g108299 +g108301 +S'portraits' +p108303 +tp108304 +a(g108301 +g108303 +S'recalled' +p108305 +tp108306 +a(g108303 +g108305 +S'the' +p108307 +tp108308 +a(g108305 +g108307 +S'images' +p108309 +tp108310 +a(g108307 +g108309 +S'of' +p108311 +tp108312 +a(g108309 +g108311 +S'emperors' +p108313 +tp108314 +a(g108311 +g108313 +S'and' +p108315 +tp108316 +a(g108313 +g108315 +S'deities' +p108317 +tp108318 +a(g108315 +g108317 +S'on' +p108319 +tp108320 +a(g108317 +g108319 +S'the' +p108321 +tp108322 +a(g108319 +g108321 +S'ancient' +p108323 +tp108324 +a(g108321 +g108323 +S'roman' +p108325 +tp108326 +a(g108323 +g108325 +S'coins' +p108327 +tp108328 +a(g108325 +g108327 +S'and' +p108329 +tp108330 +a(g108327 +g108329 +S'medals' +p108331 +tp108332 +a(g108329 +g108331 +S'that' +p108333 +tp108334 +a(g108331 +g108333 +S'were' +p108335 +tp108336 +a(g108333 +g108335 +S'so' +p108337 +tp108338 +a(g108335 +g108337 +S'highly' +p108339 +tp108340 +a(g108337 +g108339 +S'prized' +p108341 +tp108342 +a(g108339 +g108341 +S'at' +p108343 +tp108344 +a(g108341 +g108343 +S'the' +p108345 +tp108346 +a(g108343 +g108345 +S'time.' +p108347 +tp108348 +a(g108345 +g108347 +S'moreover,' +p108349 +tp108350 +a(g108347 +g108349 +S'the' +p108351 +tp108352 +a(g108349 +g108351 +S'profile' +p108353 +tp108354 +a(g108351 +g108353 +S'format,' +p108355 +tp108356 +a(g108353 +g108355 +S'which' +p108357 +tp108358 +a(g108355 +g108357 +S'isolates' +p108359 +tp108360 +a(g108357 +g108359 +S'the' +p108361 +tp108362 +a(g108359 +g108361 +S'sitter' +p108363 +tp108364 +a(g108361 +g108363 +S'from' +p108365 +tp108366 +a(g108363 +g108365 +S'the' +p108367 +tp108368 +a(g108365 +g108367 +S'observer,' +p108369 +tp108370 +a(g108367 +g108369 +S'was' +p108371 +tp108372 +a(g108369 +g108371 +S'particularly' +p108373 +tp108374 +a(g108371 +g108373 +S'appropriate' +p108375 +tp108376 +a(g108373 +g108375 +S'to' +p108377 +tp108378 +a(g108375 +g108377 +S"giovanni's" +p108379 +tp108380 +a(g108377 +g108379 +S'position' +p108381 +tp108382 +a(g108379 +g108381 +S'as' +p108383 +tp108384 +a(g108381 +g108383 +S'a' +p108385 +tp108386 +a(g108383 +g108385 +S'strong-willed' +p108387 +tp108388 +a(g108385 +g108387 +S'lord.' +p108389 +tp108390 +a(g108387 +g108389 +S'ercole' +p108391 +tp108392 +a(g108389 +g108391 +S"de'" +p108393 +tp108394 +a(g108391 +g108393 +S'roberti' +p108395 +tp108396 +a(g108393 +g108395 +S'absorbed' +p108397 +tp108398 +a(g108395 +g108397 +S'francesco' +p108399 +tp108400 +a(g108397 +g108399 +S'del' +p108401 +tp108402 +a(g108399 +g108401 +S"cossa's" +p108403 +tp108404 +a(g108401 +g108403 +S'and' +p108405 +tp108406 +a(g108403 +g108405 +S'cosimo' +p108407 +tp108408 +a(g108405 +g108407 +S"tura's" +p108409 +tp108410 +a(g108407 +g108409 +S'eccentric' +p108411 +tp108412 +a(g108409 +g108411 +S'style;' +p108413 +tp108414 +a(g108411 +g108413 +S'yet' +p108415 +tp108416 +a(g108413 +g108415 +S'he' +p108417 +tp108418 +a(g108415 +g108417 +S'was' +p108419 +tp108420 +a(g108417 +g108419 +S'also' +p108421 +tp108422 +a(g108419 +g108421 +S'aware' +p108423 +tp108424 +a(g108421 +g108423 +S'of' +p108425 +tp108426 +a(g108423 +g108425 +S'the' +p108427 +tp108428 +a(g108425 +g108427 +S'meticulous' +p108429 +tp108430 +a(g108427 +g108429 +S'realism' +p108431 +tp108432 +a(g108429 +g108431 +S'of' +p108433 +tp108434 +a(g108431 +g108433 +S'contemporary' +p108435 +tp108436 +a(g108433 +g108435 +S'flemish' +p108437 +tp108438 +a(g108435 +g108437 +S'art,' +p108439 +tp108440 +a(g108437 +g108439 +S'as' +p108441 +tp108442 +a(g108439 +g108441 +S'is' +p108443 +tp108444 +a(g108441 +g108443 +S'indicated' +p108445 +tp108446 +a(g108443 +g108445 +S'by' +p108447 +tp108448 +a(g108445 +g108447 +S'the' +p108449 +tp108450 +a(g108447 +g108449 +S'lustrous' +p108451 +tp108452 +a(g108449 +g108451 +S'pearls' +p108453 +tp108454 +a(g108451 +g108453 +S'and' +p108455 +tp108456 +a(g108453 +g108455 +S'gems' +p108457 +tp108458 +a(g108455 +g108457 +S'so' +p108459 +tp108460 +a(g108457 +g108459 +S'prominently' +p108461 +tp108462 +a(g108459 +g108461 +S'displayed' +p108463 +tp108464 +a(g108461 +g108463 +S'on' +p108465 +tp108466 +a(g108463 +g108465 +S"ginevra's" +p108467 +tp108468 +a(g108465 +g108467 +S'sleeve.' +p108469 +tp108470 +a(g108467 +g108469 +S'but' +p108471 +tp108472 +a(g108469 +g108471 +S'the' +p108473 +tp108474 +a(g108471 +g108473 +S'single' +p108475 +tp108476 +a(g108473 +g108475 +S'most' +p108477 +tp108478 +a(g108475 +g108477 +S'salient' +p108479 +tp108480 +a(g108477 +g108479 +S'element' +p108481 +tp108482 +a(g108479 +g108481 +S'in' +p108483 +tp108484 +a(g108481 +g108483 +S"ercole's" +p108485 +tp108486 +a(g108483 +g108485 +S'style' +p108487 +tp108488 +a(g108485 +g108487 +S'is' +p108489 +tp108490 +a(g108487 +g108489 +S'his' +p108491 +tp108492 +a(g108489 +g108491 +S'superior' +p108493 +tp108494 +a(g108491 +g108493 +S'draftsmanship.' +p108495 +tp108496 +a(g108493 +g108495 +S'an' +p108497 +tp108498 +a(g108495 +g108497 +S'energetic' +p108499 +tp108500 +a(g108497 +g108499 +S'yet' +p108501 +tp108502 +a(g108499 +g108501 +S'nervous' +p108503 +tp108504 +a(g108501 +g108503 +S'line' +p108505 +tp108506 +a(g108503 +g108505 +S'describes' +p108507 +tp108508 +a(g108505 +g108507 +S'the' +p108509 +tp108510 +a(g108507 +g108509 +S'flowing' +p108511 +tp108512 +a(g108509 +g108511 +S'contours' +p108513 +tp108514 +a(g108511 +g108513 +S'of' +p108515 +tp108516 +a(g108513 +g108515 +S"ginevra's" +p108517 +tp108518 +a(g108515 +g108517 +S'head,' +p108519 +tp108520 +a(g108517 +g108519 +S'the' +p108521 +tp108522 +a(g108519 +g108521 +S'swirling' +p108523 +tp108524 +a(g108521 +g108523 +S'concentric' +p108525 +tp108526 +a(g108523 +g108525 +S'rhythms' +p108527 +tp108528 +a(g108525 +g108527 +S'of' +p108529 +tp108530 +a(g108527 +g108529 +S'her' +p108531 +tp108532 +a(g108529 +g108531 +S'hair,' +p108533 +tp108534 +a(g108531 +g108533 +S'and' +p108535 +tp108536 +a(g108533 +g108535 +S'the' +p108537 +tp108538 +a(g108535 +g108537 +S'stiff,' +p108539 +tp108540 +a(g108537 +g108539 +S'parallel' +p108541 +tp108542 +a(g108539 +g108541 +S'folds' +p108543 +tp108544 +a(g108541 +g108543 +S'of' +p108545 +tp108546 +a(g108543 +g108545 +S'her' +p108547 +tp108548 +a(g108545 +g108547 +S'kerchief.' +p108549 +tp108550 +a(g108547 +g108549 +S'giovanni' +p108551 +tp108552 +a(g108549 +g108551 +S'di' +p108553 +tp108554 +a(g108551 +g108553 +S"paolo's" +p108555 +tp108556 +a(g108553 +g108555 +S'disregarding' +p108557 +tp108558 +a(g108555 +g108557 +S'naturalistic' +p108559 +tp108560 +a(g108557 +g108559 +S'detail' +p108561 +tp108562 +a(g108559 +g108561 +S'in' +p108563 +tp108564 +a(g108561 +g108563 +S'favor' +p108565 +tp108566 +a(g108563 +g108565 +S'of' +p108567 +tp108568 +a(g108565 +g108567 +S'flat,' +p108569 +tp108570 +a(g108567 +g108569 +S'decorative' +p108571 +tp108572 +a(g108569 +g108571 +S'pattern,' +p108573 +tp108574 +a(g108571 +g108573 +S'giovanni' +p108575 +tp108576 +a(g108573 +g108575 +S'was' +p108577 +tp108578 +a(g108575 +g108577 +S'nevertheless' +p108579 +tp108580 +a(g108577 +g108579 +S'aware' +p108581 +tp108582 +a(g108579 +g108581 +S'of' +p108583 +tp108584 +a(g108581 +g108583 +S'current' +p108585 +tp108586 +a(g108583 +g108585 +S'renaissance' +p108587 +tp108588 +a(g108585 +g108587 +S'experiments' +p108589 +tp108590 +a(g108587 +g108589 +S'in' +p108591 +tp108592 +a(g108589 +g108591 +S'linear' +p108593 +tp108594 +a(g108591 +g108593 +S'perspective,' +p108595 +tp108596 +a(g108593 +g108595 +S'as' +p108597 +tp108598 +a(g108595 +g108597 +S'exemplified' +p108599 +tp108600 +a(g108597 +g108599 +S'by' +p108601 +tp108602 +a(g108599 +g108601 +S'the' +p108603 +tp108604 +a(g108601 +g108603 +S'receding' +p108605 +tp108606 +a(g108603 +g108605 +S'floor' +p108607 +tp108608 +a(g108605 +g108607 +S'tiles' +p108609 +tp108610 +a(g108607 +g108609 +S'in' +p108611 +tp108612 +a(g108609 +g108611 +S'both' +p108613 +tp108614 +a(g108611 +g108613 +S'the' +p108615 +tp108616 +a(g108613 +g108615 +S'central' +p108617 +tp108618 +a(g108615 +g108617 +S'loggia' +p108619 +tp108620 +a(g108617 +g108619 +S'and' +p108621 +tp108622 +a(g108619 +g108621 +S"joseph's" +p108623 +tp108624 +a(g108621 +g108623 +S'cubicle.' +p108625 +tp108626 +a(g108623 +g108625 +S'the' +p108627 +tp108628 +a(g108625 +g108627 +S"artist's" +p108629 +tp108630 +a(g108627 +g108629 +S'decision,' +p108631 +tp108632 +a(g108629 +g108631 +S'however,' +p108633 +tp108634 +a(g108631 +g108633 +S'not' +p108635 +tp108636 +a(g108633 +g108635 +S'to' +p108637 +tp108638 +a(g108635 +g108637 +S'follow' +p108639 +tp108640 +a(g108637 +g108639 +S'realistic' +p108641 +tp108642 +a(g108639 +g108641 +S'spatial' +p108643 +tp108644 +a(g108641 +g108643 +S'and' +p108645 +tp108646 +a(g108643 +g108645 +S'scale' +p108647 +tp108648 +a(g108645 +g108647 +S'relationships' +p108649 +tp108650 +a(g108647 +g108649 +S'completely,' +p108651 +tp108652 +a(g108649 +g108651 +S'and' +p108653 +tp108654 +a(g108651 +g108653 +S'his' +p108655 +tp108656 +a(g108653 +g108655 +S'use' +p108657 +tp108658 +a(g108655 +g108657 +S'of' +p108659 +tp108660 +a(g108657 +g108659 +S'willowy,' +p108661 +tp108662 +a(g108659 +g108661 +S'elegantly' +p108663 +tp108664 +a(g108661 +g108663 +S'dressed' +p108665 +tp108666 +a(g108663 +g108665 +S'figures,' +p108667 +tp108668 +a(g108665 +g108667 +S'place' +p108669 +tp108670 +a(g108667 +g108669 +S'him' +p108671 +tp108672 +a(g108669 +g108671 +S'firmly' +p108673 +tp108674 +a(g108671 +g108673 +S'within' +p108675 +tp108676 +a(g108673 +g108675 +S'the' +p108677 +tp108678 +a(g108675 +g108677 +S'medieval' +p108679 +tp108680 +a(g108677 +g108679 +S'pictorial' +p108681 +tp108682 +a(g108679 +g108681 +S'tradition,' +p108683 +tp108684 +a(g108681 +g108683 +S'now' +p108685 +tp108686 +a(g108683 +g108685 +S'reappearing' +p108687 +tp108688 +a(g108685 +g108687 +S'as' +p108689 +tp108690 +a(g108687 +g108689 +S'the' +p108691 +tp108692 +a(g108689 +g108691 +S'international' +p108693 +tp108694 +a(g108691 +g108693 +S'style.' +p108695 +tp108696 +a(g108693 +g108695 +S'antonello' +p108697 +tp108698 +a(g108695 +g108697 +S'da' +p108699 +tp108700 +a(g108697 +g108699 +S'messina' +p108701 +tp108702 +a(g108699 +g108701 +S'probably' +p108703 +tp108704 +a(g108701 +g108703 +S'painted' +p108705 +tp108706 +a(g108703 +g108705 +S'this' +p108707 +tp108708 +a(g108705 +g108707 +S'work' +p108709 +tp108710 +a(g108707 +g108709 +S'during' +p108711 +tp108712 +a(g108709 +g108711 +S'his' +p108713 +tp108714 +a(g108711 +g108713 +S'eighteen-month' +p108715 +tp108716 +a(g108713 +g108715 +S'visit' +p108717 +tp108718 +a(g108715 +g108717 +S'to' +p108719 +tp108720 +a(g108717 +g108719 +S'venice,' +p108721 +tp108722 +a(g108719 +g108721 +S'at' +p108723 +tp108724 +a(g108721 +g108723 +S'which' +p108725 +tp108726 +a(g108723 +g108725 +S'time,' +p108727 +tp108728 +a(g108725 +g108727 +S'it' +p108729 +tp108730 +a(g108727 +g108729 +S'was' +p108731 +tp108732 +a(g108729 +g108731 +S'once' +p108733 +tp108734 +a(g108731 +g108733 +S'thought,' +p108735 +tp108736 +a(g108733 +g108735 +S'he' +p108737 +tp108738 +a(g108735 +g108737 +S'introduced' +p108739 +tp108740 +a(g108737 +g108739 +S'venetian' +p108741 +tp108742 +a(g108739 +g108741 +S'artists' +p108743 +tp108744 +a(g108741 +g108743 +S'to' +p108745 +tp108746 +a(g108743 +g108745 +S'oil' +p108747 +tp108748 +a(g108745 +g108747 +S'paints.' +p108749 +tp108750 +a(g108747 +g108749 +S'it' +p108751 +tp108752 +a(g108749 +g108751 +S'is' +p108753 +tp108754 +a(g108751 +g108753 +S'now' +p108755 +tp108756 +a(g108753 +g108755 +S'known' +p108757 +tp108758 +a(g108755 +g108757 +S'that' +p108759 +tp108760 +a(g108757 +g108759 +S'they' +p108761 +tp108762 +a(g108759 +g108761 +S'were' +p108763 +tp108764 +a(g108761 +g108763 +S'using' +p108765 +tp108766 +a(g108763 +g108765 +S'oils' +p108767 +tp108768 +a(g108765 +g108767 +S'well' +p108769 +tp108770 +a(g108767 +g108769 +S'before' +p108771 +tp108772 +a(g108769 +g108771 +S"antonello's" +p108773 +tp108774 +a(g108771 +g108773 +S'arrival.' +p108775 +tp108776 +a(g108773 +g108775 +S'for' +p108777 +tp108778 +a(g108775 +g108777 +S'many' +p108779 +tp108780 +a(g108777 +g108779 +S'years' +p108781 +tp108782 +a(g108779 +g108781 +S'italian' +p108783 +tp108784 +a(g108781 +g108783 +S'merchants' +p108785 +tp108786 +a(g108783 +g108785 +S'returning' +p108787 +tp108788 +a(g108785 +g108787 +S'from' +p108789 +tp108790 +a(g108787 +g108789 +S'business' +p108791 +tp108792 +a(g108789 +g108791 +S'in' +p108793 +tp108794 +a(g108791 +g108793 +S'the' +p108795 +tp108796 +a(g108793 +g108795 +S'low' +p108797 +tp108798 +a(g108795 +g108797 +S'countries' +p108799 +tp108800 +a(g108797 +g108799 +S'had' +p108801 +tp108802 +a(g108799 +g108801 +S'brought' +p108803 +tp108804 +a(g108801 +g108803 +S'home' +p108805 +tp108806 +a(g108803 +g108805 +S'netherlandish' +p108807 +tp108808 +a(g108805 +g108807 +S'oil' +p108809 +tp108810 +a(g108807 +g108809 +S'paintings.' +p108811 +tp108812 +a(g108809 +g108811 +S'an' +p108813 +tp108814 +a(g108811 +g108813 +S'eager' +p108815 +tp108816 +a(g108813 +g108815 +S'market' +p108817 +tp108818 +a(g108815 +g108817 +S'for' +p108819 +tp108820 +a(g108817 +g108819 +S'these' +p108821 +tp108822 +a(g108819 +g108821 +S'highly' +p108823 +tp108824 +a(g108821 +g108823 +S'detailed' +p108825 +tp108826 +a(g108823 +g108825 +S'and' +p108827 +tp108828 +a(g108825 +g108827 +S'naturalistic' +p108829 +tp108830 +a(g108827 +g108829 +S'works' +p108831 +tp108832 +a(g108829 +g108831 +S'already' +p108833 +tp108834 +a(g108831 +g108833 +S'existed' +p108835 +tp108836 +a(g108833 +g108835 +S'--' +p108837 +tp108838 +a(g108835 +g108837 +S'probably' +p108839 +tp108840 +a(g108837 +g108839 +S'this' +p108841 +tp108842 +a(g108839 +g108841 +S'prospect' +p108843 +tp108844 +a(g108841 +g108843 +S'led' +p108845 +tp108846 +a(g108843 +g108845 +S'antonello' +p108847 +tp108848 +a(g108845 +g108847 +S'north' +p108849 +tp108850 +a(g108847 +g108849 +S'to' +p108851 +tp108852 +a(g108849 +g108851 +S'venice' +p108853 +tp108854 +a(g108851 +g108853 +S'in' +p108855 +tp108856 +a(g108853 +g108855 +S'the' +p108857 +tp108858 +a(g108855 +g108857 +S'first' +p108859 +tp108860 +a(g108857 +g108859 +S'place' +p108861 +tp108862 +a(g108859 +g108861 +S'--' +p108863 +tp108864 +a(g108861 +g108863 +S'and' +p108865 +tp108866 +a(g108863 +g108865 +S'venetian' +p108867 +tp108868 +a(g108865 +g108867 +S'painters' +p108869 +tp108870 +a(g108867 +g108869 +S'themselves' +p108871 +tp108872 +a(g108869 +g108871 +S'were' +p108873 +tp108874 +a(g108871 +g108873 +S'experimenting' +p108875 +tp108876 +a(g108873 +g108875 +S'with' +p108877 +tp108878 +a(g108875 +g108877 +S'the' +p108879 +tp108880 +a(g108877 +g108879 +S'new' +p108881 +tp108882 +a(g108879 +g108881 +S'medium.' +p108883 +tp108884 +a(g108881 +g108883 +S'nevertheless,' +p108885 +tp108886 +a(g108883 +g108885 +S'antonello' +p108887 +tp108888 +a(g108885 +g108887 +S'does' +p108889 +tp108890 +a(g108887 +g108889 +S'seem' +p108891 +tp108892 +a(g108889 +g108891 +S'to' +p108893 +tp108894 +a(g108891 +g108893 +S'have' +p108895 +tp108896 +a(g108893 +g108895 +S'exerted' +p108897 +tp108898 +a(g108895 +g108897 +S'a' +p108899 +tp108900 +a(g108897 +g108899 +S'strong' +p108901 +tp108902 +a(g108899 +g108901 +S'influence:' +p108903 +tp108904 +a(g108901 +g108903 +S'venetian' +p108905 +tp108906 +a(g108903 +g108905 +S'painting' +p108907 +tp108908 +a(g108905 +g108907 +S'simply' +p108909 +tp108910 +a(g108907 +g108909 +S'looked' +p108911 +tp108912 +a(g108909 +g108911 +S'different' +p108913 +tp108914 +a(g108911 +g108913 +S'after' +p108915 +tp108916 +a(g108913 +g108915 +S'his' +p108917 +tp108918 +a(g108915 +g108917 +S'stay' +p108919 +tp108920 +a(g108917 +g108919 +S'than' +p108921 +tp108922 +a(g108919 +g108921 +S'it' +p108923 +tp108924 +a(g108921 +g108923 +S'had' +p108925 +tp108926 +a(g108923 +g108925 +S'before.' +p108927 +tp108928 +a(g108925 +g108927 +S'probably' +p108929 +tp108930 +a(g108927 +g108929 +S'his' +p108931 +tp108932 +a(g108929 +g108931 +S'contribution' +p108933 +tp108934 +a(g108931 +g108933 +S'was' +p108935 +tp108936 +a(g108933 +g108935 +S'to' +p108937 +tp108938 +a(g108935 +g108937 +S'teach' +p108939 +tp108940 +a(g108937 +g108939 +S'techniques' +p108941 +tp108942 +a(g108939 +g108941 +S'for' +p108943 +tp108944 +a(g108941 +g108943 +S'using' +p108945 +tp108946 +a(g108943 +g108945 +S'oils.' +p108947 +tp108948 +a(g108945 +g108947 +S'before' +p108949 +tp108950 +a(g108947 +g108949 +S'his' +p108951 +tp108952 +a(g108949 +g108951 +S'arrival' +p108953 +tp108954 +a(g108951 +g108953 +S'venetian' +p108955 +tp108956 +a(g108953 +g108955 +S'painters' +p108957 +tp108958 +a(g108955 +g108957 +S'had' +p108959 +tp108960 +a(g108957 +g108959 +S'sometimes' +p108961 +tp108962 +a(g108959 +g108961 +S'applied' +p108963 +tp108964 +a(g108961 +g108963 +S'oils' +p108965 +tp108966 +a(g108963 +g108965 +S'in' +p108967 +tp108968 +a(g108965 +g108967 +S'alternating' +p108969 +tp108970 +a(g108967 +g108969 +S'layers' +p108971 +tp108972 +a(g108969 +g108971 +S'with' +p108973 +tp108974 +a(g108971 +g108973 +S'tempera' +p108975 +tp108976 +a(g108973 +g108975 +S'or' +p108977 +tp108978 +a(g108975 +g108977 +S'brushed' +p108979 +tp108980 +a(g108977 +g108979 +S'them' +p108981 +tp108982 +a(g108979 +g108981 +S'on' +p108983 +tp108984 +a(g108981 +g108983 +S'with' +p108985 +tp108986 +a(g108983 +g108985 +S'the' +p108987 +tp108988 +a(g108985 +g108987 +S'same' +p108989 +tp108990 +a(g108987 +g108989 +S'short' +p108991 +tp108992 +a(g108989 +g108991 +S'parallel' +p108993 +tp108994 +a(g108991 +g108993 +S'strokes' +p108995 +tp108996 +a(g108993 +g108995 +S'they' +p108997 +tp108998 +a(g108995 +g108997 +S'used' +p108999 +tp109000 +a(g108997 +g108999 +S'for' +p109001 +tp109002 +a(g108999 +g109001 +S'opaque' +p109003 +tp109004 +a(g109001 +g109003 +S'colors.' +p109005 +tp109006 +a(g109003 +g109005 +S'these' +p109007 +tp109008 +a(g109005 +g109007 +S'practices' +p109009 +tp109010 +a(g109007 +g109009 +S'effectively' +p109011 +tp109012 +a(g109009 +g109011 +S'blocked' +p109013 +tp109014 +a(g109011 +g109013 +S'the' +p109015 +tp109016 +a(g109013 +g109015 +S'full' +p109017 +tp109018 +a(g109015 +g109017 +S'ability' +p109019 +tp109020 +a(g109017 +g109019 +S'of' +p109021 +tp109022 +a(g109019 +g109021 +S'oil' +p109023 +tp109024 +a(g109021 +g109023 +S'paint' +p109025 +tp109026 +a(g109023 +g109025 +S'to' +p109027 +tp109028 +a(g109025 +g109027 +S'capture' +p109029 +tp109030 +a(g109027 +g109029 +S'and' +p109031 +tp109032 +a(g109029 +g109031 +S'reflect' +p109033 +tp109034 +a(g109031 +g109033 +S'light,' +p109035 +tp109036 +a(g109033 +g109035 +S'which' +p109037 +tp109038 +a(g109035 +g109037 +S'is' +p109039 +tp109040 +a(g109037 +g109039 +S'achieved' +p109041 +tp109042 +a(g109039 +g109041 +S'only' +p109043 +tp109044 +a(g109041 +g109043 +S'when' +p109045 +tp109046 +a(g109043 +g109045 +S'translucent' +p109047 +tp109048 +a(g109045 +g109047 +S'pigments' +p109049 +tp109050 +a(g109047 +g109049 +S'are' +p109051 +tp109052 +a(g109049 +g109051 +S'built' +p109053 +tp109054 +a(g109051 +g109053 +S'up' +p109055 +tp109056 +a(g109053 +g109055 +S'in' +p109057 +tp109058 +a(g109055 +g109057 +S'thin,' +p109059 +tp109060 +a(g109057 +g109059 +S'blended' +p109061 +tp109062 +a(g109059 +g109061 +S'layers.' +p109063 +tp109064 +a(g109061 +g109063 +S'this' +p109065 +tp109066 +a(g109063 +g109065 +S'painting' +p109067 +tp109068 +a(g109065 +g109067 +S'is' +p109069 +tp109070 +a(g109067 +g109069 +S'based' +p109071 +tp109072 +a(g109069 +g109071 +S'on' +p109073 +tp109074 +a(g109071 +g109073 +S'the' +p109075 +tp109076 +a(g109073 +g109075 +S'book' +p109077 +tp109078 +a(g109075 +g109077 +S'of' +p109079 +tp109080 +a(g109077 +g109079 +S'tobit' +p109081 +tp109082 +a(g109079 +g109081 +S'which' +p109083 +tp109084 +a(g109081 +g109083 +S'tells' +p109085 +tp109086 +a(g109083 +g109085 +S'the' +p109087 +tp109088 +a(g109085 +g109087 +S'story' +p109089 +tp109090 +a(g109087 +g109089 +S'of' +p109091 +tp109092 +a(g109089 +g109091 +S'tobit' +p109093 +tp109094 +a(g109091 +g109093 +S'of' +p109095 +tp109096 +a(g109093 +g109095 +S'nenevah.' +p109097 +tp109098 +a(g109095 +g109097 +S'tobit' +p109099 +tp109100 +a(g109097 +g109099 +S'is' +p109101 +tp109102 +a(g109099 +g109101 +S'described' +p109103 +tp109104 +a(g109101 +g109103 +S'as' +p109105 +tp109106 +a(g109103 +g109105 +S'a' +p109107 +tp109108 +a(g109105 +g109107 +S'man' +p109109 +tp109110 +a(g109107 +g109109 +S'of' +p109111 +tp109112 +a(g109109 +g109111 +S'good' +p109113 +tp109114 +a(g109111 +g109113 +S'faith' +p109115 +tp109116 +a(g109113 +g109115 +S'who' +p109117 +tp109118 +a(g109115 +g109117 +S'suffers' +p109119 +tp109120 +a(g109117 +g109119 +S'from' +p109121 +tp109122 +a(g109119 +g109121 +S'blindness' +p109123 +tp109124 +a(g109121 +g109123 +S'and' +p109125 +tp109126 +a(g109123 +g109125 +S'poverty.' +p109127 +tp109128 +a(g109125 +g109127 +S'he' +p109129 +tp109130 +a(g109127 +g109129 +S'sent' +p109131 +tp109132 +a(g109129 +g109131 +S'his' +p109133 +tp109134 +a(g109131 +g109133 +S'son,' +p109135 +tp109136 +a(g109133 +g109135 +S'tobias,' +p109137 +tp109138 +a(g109135 +g109137 +S'to' +p109139 +tp109140 +a(g109137 +g109139 +S'a' +p109141 +tp109142 +a(g109139 +g109141 +S'distant' +p109143 +tp109144 +a(g109141 +g109143 +S'city' +p109145 +tp109146 +a(g109143 +g109145 +S'to' +p109147 +tp109148 +a(g109145 +g109147 +S'collect' +p109149 +tp109150 +a(g109147 +g109149 +S'money' +p109151 +tp109152 +a(g109149 +g109151 +S'he' +p109153 +tp109154 +a(g109151 +g109153 +S'had' +p109155 +tp109156 +a(g109153 +g109155 +S'deposited' +p109157 +tp109158 +a(g109155 +g109157 +S'there,' +p109159 +tp109160 +a(g109157 +g109159 +S'and' +p109161 +tp109162 +a(g109159 +g109161 +S'hired' +p109163 +tp109164 +a(g109161 +g109163 +S'a' +p109165 +tp109166 +a(g109163 +g109165 +S'companion' +p109167 +tp109168 +a(g109165 +g109167 +S'to' +p109169 +tp109170 +a(g109167 +g109169 +S'accompany' +p109171 +tp109172 +a(g109169 +g109171 +S'the' +p109173 +tp109174 +a(g109171 +g109173 +S'youth.' +p109175 +tp109176 +a(g109173 +g109175 +S'the' +p109177 +tp109178 +a(g109175 +g109177 +S'companion' +p109179 +tp109180 +a(g109177 +g109179 +S'was' +p109181 +tp109182 +a(g109179 +g109181 +S'actually' +p109183 +tp109184 +a(g109181 +g109183 +S'the' +p109185 +tp109186 +a(g109183 +g109185 +S'archangel' +p109187 +tp109188 +a(g109185 +g109187 +S'raphael' +p109189 +tp109190 +a(g109187 +g109189 +S'in' +p109191 +tp109192 +a(g109189 +g109191 +S'disguise.' +p109193 +tp109194 +a(g109191 +g109193 +S'their' +p109195 +tp109196 +a(g109193 +g109195 +S'journey' +p109197 +tp109198 +a(g109195 +g109197 +S'was' +p109199 +tp109200 +a(g109197 +g109199 +S'successful:' +p109201 +tp109202 +a(g109199 +g109201 +S'not' +p109203 +tp109204 +a(g109201 +g109203 +S'only' +p109205 +tp109206 +a(g109203 +g109205 +S'was' +p109207 +tp109208 +a(g109205 +g109207 +S'the' +p109209 +tp109210 +a(g109207 +g109209 +S'money' +p109211 +tp109212 +a(g109209 +g109211 +S'recovered,' +p109213 +tp109214 +a(g109211 +g109213 +S'but' +p109215 +tp109216 +a(g109213 +g109215 +S'medicine' +p109217 +tp109218 +a(g109215 +g109217 +S'made' +p109219 +tp109220 +a(g109217 +g109219 +S'from' +p109221 +tp109222 +a(g109219 +g109221 +S'a' +p109223 +tp109224 +a(g109221 +g109223 +S'monstrous' +p109225 +tp109226 +a(g109223 +g109225 +S'fish' +p109227 +tp109228 +a(g109225 +g109227 +S'tobias' +p109229 +tp109230 +a(g109227 +g109229 +S'encounters' +p109231 +tp109232 +a(g109229 +g109231 +S'along' +p109233 +tp109234 +a(g109231 +g109233 +S'the' +p109235 +tp109236 +a(g109233 +g109235 +S'way' +p109237 +tp109238 +a(g109235 +g109237 +S'cures' +p109239 +tp109240 +a(g109237 +g109239 +S"tobit's" +p109241 +tp109242 +a(g109239 +g109241 +S'blindness.' +p109243 +tp109244 +a(g109241 +g109243 +S'in' +p109245 +tp109246 +a(g109243 +g109245 +S'hebrew,' +p109247 +tp109248 +a(g109245 +g109247 +S"raphael's" +p109249 +tp109250 +a(g109247 +g109249 +S'name' +p109251 +tp109252 +a(g109249 +g109251 +S'means' +p109253 +tp109254 +a(g109251 +g109253 +S'"god' +p109255 +tp109256 +a(g109253 +g109255 +S'has' +p109257 +tp109258 +a(g109255 +g109257 +S'healed."' +p109259 +tp109260 +a(g109257 +g109259 +S'in' +p109261 +tp109262 +a(g109259 +g109261 +S'this' +p109263 +tp109264 +a(g109261 +g109263 +S'painting,' +p109265 +tp109266 +a(g109263 +g109265 +S'raphael' +p109267 +tp109268 +a(g109265 +g109267 +S'holds' +p109269 +tp109270 +a(g109267 +g109269 +S'a' +p109271 +tp109272 +a(g109269 +g109271 +S'golden' +p109273 +tp109274 +a(g109271 +g109273 +S'mortar' +p109275 +tp109276 +a(g109273 +g109275 +S'used' +p109277 +tp109278 +a(g109275 +g109277 +S'for' +p109279 +tp109280 +a(g109277 +g109279 +S'compounding' +p109281 +tp109282 +a(g109279 +g109281 +S'medicinal' +p109283 +tp109284 +a(g109281 +g109283 +S'ingredients.' +p109285 +tp109286 +a(g109283 +g109285 +S'although' +p109287 +tp109288 +a(g109285 +g109287 +S'the' +p109289 +tp109290 +a(g109287 +g109289 +S'archangel' +p109291 +tp109292 +a(g109289 +g109291 +S'is' +p109293 +tp109294 +a(g109291 +g109293 +S'usually' +p109295 +tp109296 +a(g109293 +g109295 +S'shown' +p109297 +tp109298 +a(g109295 +g109297 +S'with' +p109299 +tp109300 +a(g109297 +g109299 +S'a' +p109301 +tp109302 +a(g109299 +g109301 +S'mortar' +p109303 +tp109304 +a(g109301 +g109303 +S'or' +p109305 +tp109306 +a(g109303 +g109305 +S'medicine' +p109307 +tp109308 +a(g109305 +g109307 +S'box,' +p109309 +tp109310 +a(g109307 +g109309 +S'his' +p109311 +tp109312 +a(g109309 +g109311 +S'identity' +p109313 +tp109314 +a(g109311 +g109313 +S'here' +p109315 +tp109316 +a(g109313 +g109315 +S'is' +p109317 +tp109318 +a(g109315 +g109317 +S'established' +p109319 +tp109320 +a(g109317 +g109319 +S'by' +p109321 +tp109322 +a(g109319 +g109321 +S'the' +p109323 +tp109324 +a(g109321 +g109323 +S'presence' +p109325 +tp109326 +a(g109323 +g109325 +S'of' +p109327 +tp109328 +a(g109325 +g109327 +S'tobias' +p109329 +tp109330 +a(g109327 +g109329 +S'holding' +p109331 +tp109332 +a(g109329 +g109331 +S'a' +p109333 +tp109334 +a(g109331 +g109333 +S'fish.' +p109335 +tp109336 +a(g109333 +g109335 +S'raphael' +p109337 +tp109338 +a(g109335 +g109337 +S'is' +p109339 +tp109340 +a(g109337 +g109339 +S'named' +p109341 +tp109342 +a(g109339 +g109341 +S'only' +p109343 +tp109344 +a(g109341 +g109343 +S'in' +p109345 +tp109346 +a(g109343 +g109345 +S'the' +p109347 +tp109348 +a(g109345 +g109347 +S'book' +p109349 +tp109350 +a(g109347 +g109349 +S'of' +p109351 +tp109352 +a(g109349 +g109351 +S'tobit.' +p109353 +tp109354 +a(g109351 +g109353 +S'the' +p109355 +tp109356 +a(g109353 +g109355 +S'story' +p109357 +tp109358 +a(g109355 +g109357 +S'of' +p109359 +tp109360 +a(g109357 +g109359 +S'tobit' +p109361 +tp109362 +a(g109359 +g109361 +S'may' +p109363 +tp109364 +a(g109361 +g109363 +S'have' +p109365 +tp109366 +a(g109363 +g109365 +S'been' +p109367 +tp109368 +a(g109365 +g109367 +S'particularly' +p109369 +tp109370 +a(g109367 +g109369 +S'popular' +p109371 +tp109372 +a(g109369 +g109371 +S'in' +p109373 +tp109374 +a(g109371 +g109373 +S'fifteenth-century' +p109375 +tp109376 +a(g109373 +g109375 +S'florence' +p109377 +tp109378 +a(g109375 +g109377 +S'because' +p109379 +tp109380 +a(g109377 +g109379 +S'of' +p109381 +tp109382 +a(g109379 +g109381 +S'its' +p109383 +tp109384 +a(g109381 +g109383 +S'appeal' +p109385 +tp109386 +a(g109383 +g109385 +S'to' +p109387 +tp109388 +a(g109385 +g109387 +S'merchant' +p109389 +tp109390 +a(g109387 +g109389 +S'families,' +p109391 +tp109392 +a(g109389 +g109391 +S'whose' +p109393 +tp109394 +a(g109391 +g109393 +S'sons' +p109395 +tp109396 +a(g109393 +g109395 +S'were' +p109397 +tp109398 +a(g109395 +g109397 +S'often' +p109399 +tp109400 +a(g109397 +g109399 +S'sent' +p109401 +tp109402 +a(g109399 +g109401 +S'to' +p109403 +tp109404 +a(g109401 +g109403 +S'trade' +p109405 +tp109406 +a(g109403 +g109405 +S'in' +p109407 +tp109408 +a(g109405 +g109407 +S'far-away' +p109409 +tp109410 +a(g109407 +g109409 +S'cities.' +p109411 +tp109412 +a(g109409 +g109411 +S'paintings' +p109413 +tp109414 +a(g109411 +g109413 +S'of' +p109415 +tp109416 +a(g109413 +g109415 +S'tobias' +p109417 +tp109418 +a(g109415 +g109417 +S'and' +p109419 +tp109420 +a(g109417 +g109419 +S'his' +p109421 +tp109422 +a(g109419 +g109421 +S'angelic' +p109423 +tp109424 +a(g109421 +g109423 +S'guardian' +p109425 +tp109426 +a(g109423 +g109425 +S'were' +p109427 +tp109428 +a(g109425 +g109427 +S'likely' +p109429 +tp109430 +a(g109427 +g109429 +S'commissioned' +p109431 +tp109432 +a(g109429 +g109431 +S'as' +p109433 +tp109434 +a(g109431 +g109433 +S'dedications' +p109435 +tp109436 +a(g109433 +g109435 +S'to' +p109437 +tp109438 +a(g109435 +g109437 +S'ensure' +p109439 +tp109440 +a(g109437 +g109439 +S'a' +p109441 +tp109442 +a(g109439 +g109441 +S'safe' +p109443 +tp109444 +a(g109441 +g109443 +S'journey,' +p109445 +tp109446 +a(g109443 +g109445 +S'or' +p109447 +tp109448 +a(g109445 +g109447 +S'offer' +p109449 +tp109450 +a(g109447 +g109449 +S'thanks' +p109451 +tp109452 +a(g109449 +g109451 +S'for' +p109453 +tp109454 +a(g109451 +g109453 +S'a' +p109455 +tp109456 +a(g109453 +g109455 +S'safe' +p109457 +tp109458 +a(g109455 +g109457 +S'return.' +p109459 +tp109460 +a(g109457 +g109459 +S'the' +p109461 +tp109462 +a(g109459 +g109461 +S"painting's" +p109463 +tp109464 +a(g109461 +g109463 +S'suggestion' +p109465 +tp109466 +a(g109463 +g109465 +S'of' +p109467 +tp109468 +a(g109465 +g109467 +S'reward' +p109469 +tp109470 +a(g109467 +g109469 +S'for' +p109471 +tp109472 +a(g109469 +g109471 +S'fair' +p109473 +tp109474 +a(g109471 +g109473 +S'dealing' +p109475 +tp109476 +a(g109473 +g109475 +S'may' +p109477 +tp109478 +a(g109475 +g109477 +S'have' +p109479 +tp109480 +a(g109477 +g109479 +S'been' +p109481 +tp109482 +a(g109479 +g109481 +S'equally' +p109483 +tp109484 +a(g109481 +g109483 +S'welcome.' +p109485 +tp109486 +a(g109483 +g109485 +S'judith' +p109487 +tp109488 +a(g109485 +g109487 +S'leyster\xe2\x80\x99s' +p109489 +tp109490 +a(g109487 +g109489 +S'leyster' +p109491 +tp109492 +a(g109489 +g109491 +S'was' +p109493 +tp109494 +a(g109491 +g109493 +S'accepted' +p109495 +tp109496 +a(g109493 +g109495 +S'into' +p109497 +tp109498 +a(g109495 +g109497 +S'the' +p109499 +tp109500 +a(g109497 +g109499 +S'professional' +p109501 +tp109502 +a(g109499 +g109501 +S'artists\xe2\x80\x99' +p109503 +tp109504 +a(g109501 +g109503 +S'guild' +p109505 +tp109506 +a(g109503 +g109505 +S'of' +p109507 +tp109508 +a(g109505 +g109507 +S'saint' +p109509 +tp109510 +a(g109507 +g109509 +S'luke\xe2\x80\x99s' +p109511 +tp109512 +a(g109509 +g109511 +S'guild' +p109513 +tp109514 +a(g109511 +g109513 +S'of' +p109515 +tp109516 +a(g109513 +g109515 +S'haarlem' +p109517 +tp109518 +a(g109515 +g109517 +S'as' +p109519 +tp109520 +a(g109517 +g109519 +S'an' +p109521 +tp109522 +a(g109519 +g109521 +S'independent' +p109523 +tp109524 +a(g109521 +g109523 +S'master' +p109525 +tp109526 +a(g109523 +g109525 +S'in' +p109527 +tp109528 +a(g109525 +g109527 +S'1633,' +p109529 +tp109530 +a(g109527 +g109529 +S'a' +p109531 +tp109532 +a(g109529 +g109531 +S'rarity' +p109533 +tp109534 +a(g109531 +g109533 +S'for' +p109535 +tp109536 +a(g109533 +g109535 +S'a' +p109537 +tp109538 +a(g109535 +g109537 +S'female' +p109539 +tp109540 +a(g109537 +g109539 +S'artist' +p109541 +tp109542 +a(g109539 +g109541 +S'at' +p109543 +tp109544 +a(g109541 +g109543 +S'the' +p109545 +tp109546 +a(g109543 +g109545 +S'time.' +p109547 +tp109548 +a(g109545 +g109547 +S'as' +p109549 +tp109550 +a(g109547 +g109549 +S'such,' +p109551 +tp109552 +a(g109549 +g109551 +S'leyster' +p109553 +tp109554 +a(g109551 +g109553 +S'was' +p109555 +tp109556 +a(g109553 +g109555 +S'entitled' +p109557 +tp109558 +a(g109555 +g109557 +S'to' +p109559 +tp109560 +a(g109557 +g109559 +S'establish' +p109561 +tp109562 +a(g109559 +g109561 +S'her' +p109563 +tp109564 +a(g109561 +g109563 +S'own' +p109565 +tp109566 +a(g109563 +g109565 +S'workshop' +p109567 +tp109568 +a(g109565 +g109567 +S'and' +p109569 +tp109570 +a(g109567 +g109569 +S'take' +p109571 +tp109572 +a(g109569 +g109571 +S'paying' +p109573 +tp109574 +a(g109571 +g109573 +S'students.' +p109575 +tp109576 +a(g109573 +g109575 +S'early' +p109577 +tp109578 +a(g109575 +g109577 +S'chroniclers' +p109579 +tp109580 +a(g109577 +g109579 +S'of' +p109581 +tp109582 +a(g109579 +g109581 +S'haarlem' +p109583 +tp109584 +a(g109581 +g109583 +S'praised' +p109585 +tp109586 +a(g109583 +g109585 +S'her' +p109587 +tp109588 +a(g109585 +g109587 +S'proficiency' +p109589 +tp109590 +a(g109587 +g109589 +S'and' +p109591 +tp109592 +a(g109589 +g109591 +S'talent.' +p109593 +tp109594 +a(g109591 +g109593 +S'she' +p109595 +tp109596 +a(g109593 +g109595 +S'was' +p109597 +tp109598 +a(g109595 +g109597 +S'celebrated' +p109599 +tp109600 +a(g109597 +g109599 +S'as' +p109601 +tp109602 +a(g109599 +g109601 +S'"the' +p109603 +tp109604 +a(g109601 +g109603 +S'true' +p109605 +tp109606 +a(g109603 +g109605 +S'leading' +p109607 +tp109608 +a(g109605 +g109607 +S'star"' +p109609 +tp109610 +a(g109607 +g109609 +S'in' +p109611 +tp109612 +a(g109609 +g109611 +S'art,' +p109613 +tp109614 +a(g109611 +g109613 +S'a' +p109615 +tp109616 +a(g109613 +g109615 +S'clever' +p109617 +tp109618 +a(g109615 +g109617 +S'allusion' +p109619 +tp109620 +a(g109617 +g109619 +S'to' +p109621 +tp109622 +a(g109619 +g109621 +S'her' +p109623 +tp109624 +a(g109621 +g109623 +S'family' +p109625 +tp109626 +a(g109623 +g109625 +S'name,' +p109627 +tp109628 +a(g109625 +g109627 +S'which' +p109629 +tp109630 +a(g109627 +g109629 +S'means' +p109631 +tp109632 +a(g109629 +g109631 +S'"lodestar."' +p109633 +tp109634 +a(g109631 +g109633 +S'leyster' +p109635 +tp109636 +a(g109633 +g109635 +S'incorporated' +p109637 +tp109638 +a(g109635 +g109637 +S'a' +p109639 +tp109640 +a(g109637 +g109639 +S'star' +p109641 +tp109642 +a(g109639 +g109641 +S'in' +p109643 +tp109644 +a(g109641 +g109643 +S'her' +p109645 +tp109646 +a(g109643 +g109645 +S'professional' +p109647 +tp109648 +a(g109645 +g109647 +S'signature,' +p109649 +tp109650 +a(g109647 +g109649 +S'the' +p109651 +tp109652 +a(g109649 +g109651 +S'monogram' +p109653 +tp109654 +a(g109651 +g109653 +S'jl*.' +p109655 +tp109656 +a(g109653 +g109655 +S'following' +p109657 +tp109658 +a(g109655 +g109657 +S'her' +p109659 +tp109660 +a(g109657 +g109659 +S'marriage' +p109661 +tp109662 +a(g109659 +g109661 +S'in' +p109663 +tp109664 +a(g109661 +g109663 +S'1636' +p109665 +tp109666 +a(g109663 +g109665 +S'to' +p109667 +tp109668 +a(g109665 +g109667 +S'fellow' +p109669 +tp109670 +a(g109667 +g109669 +S'haarlem' +p109671 +tp109672 +a(g109669 +g109671 +S'artist' +p109673 +tp109674 +a(g109671 +g109673 +S'jan' +p109675 +tp109676 +a(g109673 +g109675 +S'miense' +p109677 +tp109678 +a(g109675 +g109677 +S'molenaer,' +p109679 +tp109680 +a(g109677 +g109679 +S'leyster' +p109681 +tp109682 +a(g109679 +g109681 +S'stopped' +p109683 +tp109684 +a(g109681 +g109683 +S'producing' +p109685 +tp109686 +a(g109683 +g109685 +S'art' +p109687 +tp109688 +a(g109685 +g109687 +S'in' +p109689 +tp109690 +a(g109687 +g109689 +S'her' +p109691 +tp109692 +a(g109689 +g109691 +S'own' +p109693 +tp109694 +a(g109691 +g109693 +S'name' +p109695 +tp109696 +a(g109693 +g109695 +S'but' +p109697 +tp109698 +a(g109695 +g109697 +S'probably' +p109699 +tp109700 +a(g109697 +g109699 +S'continued' +p109701 +tp109702 +a(g109699 +g109701 +S'to' +p109703 +tp109704 +a(g109701 +g109703 +S'paint' +p109705 +tp109706 +a(g109703 +g109705 +S'in' +p109707 +tp109708 +a(g109705 +g109707 +S'collaboration' +p109709 +tp109710 +a(g109707 +g109709 +S'with' +p109711 +tp109712 +a(g109709 +g109711 +S'her' +p109713 +tp109714 +a(g109711 +g109713 +S'husband.' +p109715 +tp109716 +a(g109713 +g109715 +S'during' +p109717 +tp109718 +a(g109715 +g109717 +S'the' +p109719 +tp109720 +a(g109717 +g109719 +S'thirteenth' +p109721 +tp109722 +a(g109719 +g109721 +S'century,' +p109723 +tp109724 +a(g109721 +g109723 +S'the' +p109725 +tp109726 +a(g109723 +g109725 +S'art' +p109727 +tp109728 +a(g109725 +g109727 +S'of' +p109729 +tp109730 +a(g109727 +g109729 +S'the' +p109731 +tp109732 +a(g109729 +g109731 +S'catholic' +p109733 +tp109734 +a(g109731 +g109733 +S'west' +p109735 +tp109736 +a(g109733 +g109735 +S'and' +p109737 +tp109738 +a(g109735 +g109737 +S'orthodox' +p109739 +tp109740 +a(g109737 +g109739 +S'east' +p109741 +tp109742 +a(g109739 +g109741 +S'intermingled,' +p109743 +tp109744 +a(g109741 +g109743 +S'resulting' +p109745 +tp109746 +a(g109743 +g109745 +S'in' +p109747 +tp109748 +a(g109745 +g109747 +S'a' +p109749 +tp109750 +a(g109747 +g109749 +S'byzantine' +p109751 +tp109752 +a(g109749 +g109751 +S'style' +p109753 +tp109754 +a(g109751 +g109753 +S'in' +p109755 +tp109756 +a(g109753 +g109755 +S'italy.' +p109757 +tp109758 +a(g109755 +g109757 +S'this' +p109759 +tp109760 +a(g109757 +g109759 +S'icon' +p109761 +tp109762 +a(g109759 +g109761 +S'or' +p109763 +tp109764 +a(g109761 +g109763 +S'"holy' +p109765 +tp109766 +a(g109763 +g109765 +S'image,"' +p109767 +tp109768 +a(g109765 +g109767 +S'probably' +p109769 +tp109770 +a(g109767 +g109769 +S'painted' +p109771 +tp109772 +a(g109769 +g109771 +S'by' +p109773 +tp109774 +a(g109771 +g109773 +S'a' +p109775 +tp109776 +a(g109773 +g109775 +S'greek' +p109777 +tp109778 +a(g109775 +g109777 +S'artist' +p109779 +tp109780 +a(g109777 +g109779 +S'working' +p109781 +tp109782 +a(g109779 +g109781 +S'in' +p109783 +tp109784 +a(g109781 +g109783 +S'italy,' +p109785 +tp109786 +a(g109783 +g109785 +S'is' +p109787 +tp109788 +a(g109785 +g109787 +S'a' +p109789 +tp109790 +a(g109787 +g109789 +S'perfect' +p109791 +tp109792 +a(g109789 +g109791 +S'example' +p109793 +tp109794 +a(g109791 +g109793 +S'of' +p109795 +tp109796 +a(g109793 +g109795 +S'this' +p109797 +tp109798 +a(g109795 +g109797 +S'fusion.' +p109799 +tp109800 +a(g109797 +g109799 +S'known' +p109801 +tp109802 +a(g109799 +g109801 +S'also' +p109803 +tp109804 +a(g109801 +g109803 +S'as' +p109805 +tp109806 +a(g109803 +g109805 +S'the' +p109807 +tp109808 +a(g109805 +g109807 +S'"kahn' +p109809 +tp109810 +a(g109807 +g109809 +S'madonna"' +p109811 +tp109812 +a(g109809 +g109811 +S'from' +p109813 +tp109814 +a(g109811 +g109813 +S'the' +p109815 +tp109816 +a(g109813 +g109815 +S'name' +p109817 +tp109818 +a(g109815 +g109817 +S'of' +p109819 +tp109820 +a(g109817 +g109819 +S'the' +p109821 +tp109822 +a(g109819 +g109821 +S'previous' +p109823 +tp109824 +a(g109821 +g109823 +S'owner,' +p109825 +tp109826 +a(g109823 +g109825 +S'the' +p109827 +tp109828 +a(g109825 +g109827 +S'large' +p109829 +tp109830 +a(g109827 +g109829 +S'panel' +p109831 +tp109832 +a(g109829 +g109831 +S'represents' +p109833 +tp109834 +a(g109831 +g109833 +S'a' +p109835 +tp109836 +a(g109833 +g109835 +S'full-length' +p109837 +tp109838 +a(g109835 +g109837 +S'figure' +p109839 +tp109840 +a(g109837 +g109839 +S'of' +p109841 +tp109842 +a(g109839 +g109841 +S'mary' +p109843 +tp109844 +a(g109841 +g109843 +S'enthroned' +p109845 +tp109846 +a(g109843 +g109845 +S'as' +p109847 +tp109848 +a(g109845 +g109847 +S'queen' +p109849 +tp109850 +a(g109847 +g109849 +S'of' +p109851 +tp109852 +a(g109849 +g109851 +S'heaven.' +p109853 +tp109854 +a(g109851 +g109853 +S'she' +p109855 +tp109856 +a(g109853 +g109855 +S'holds' +p109857 +tp109858 +a(g109855 +g109857 +S'the' +p109859 +tp109860 +a(g109857 +g109859 +S'infant' +p109861 +tp109862 +a(g109859 +g109861 +S'christ' +p109863 +tp109864 +a(g109861 +g109863 +S'who,' +p109865 +tp109866 +a(g109863 +g109865 +S'true' +p109867 +tp109868 +a(g109865 +g109867 +S'to' +p109869 +tp109870 +a(g109867 +g109869 +S'medieval' +p109871 +tp109872 +a(g109869 +g109871 +S'convention,' +p109873 +tp109874 +a(g109871 +g109873 +S'is' +p109875 +tp109876 +a(g109873 +g109875 +S'a' +p109877 +tp109878 +a(g109875 +g109877 +S'miniature' +p109879 +tp109880 +a(g109877 +g109879 +S'adult.' +p109881 +tp109882 +a(g109879 +g109881 +S'in' +p109883 +tp109884 +a(g109881 +g109883 +S'the' +p109885 +tp109886 +a(g109883 +g109885 +S'flanking' +p109887 +tp109888 +a(g109885 +g109887 +S'medallions,' +p109889 +tp109890 +a(g109887 +g109889 +S'archangels' +p109891 +tp109892 +a(g109889 +g109891 +S'hold' +p109893 +tp109894 +a(g109891 +g109893 +S'orbs' +p109895 +tp109896 +a(g109893 +g109895 +S'and' +p109897 +tp109898 +a(g109895 +g109897 +S'scepters,' +p109899 +tp109900 +a(g109897 +g109899 +S'emphasizing' +p109901 +tp109902 +a(g109899 +g109901 +S"mary's" +p109903 +tp109904 +a(g109901 +g109903 +S'imperial' +p109905 +tp109906 +a(g109903 +g109905 +S'role.' +p109907 +tp109908 +a(g109905 +g109907 +S'in' +p109909 +tp109910 +a(g109907 +g109909 +S'this,' +p109911 +tp109912 +a(g109909 +g109911 +S'the' +p109913 +tp109914 +a(g109911 +g109913 +S'"hodegetria"' +p109915 +tp109916 +a(g109913 +g109915 +S'type' +p109917 +tp109918 +a(g109915 +g109917 +S'of' +p109919 +tp109920 +a(g109917 +g109919 +S'madonna,' +p109921 +tp109922 +a(g109919 +g109921 +S'she' +p109923 +tp109924 +a(g109921 +g109923 +S'directs' +p109925 +tp109926 +a(g109923 +g109925 +S'the' +p109927 +tp109928 +a(g109925 +g109927 +S"viewer's" +p109929 +tp109930 +a(g109927 +g109929 +S'attention' +p109931 +tp109932 +a(g109929 +g109931 +S'to' +p109933 +tp109934 +a(g109931 +g109933 +S'christ,' +p109935 +tp109936 +a(g109933 +g109935 +S'thus' +p109937 +tp109938 +a(g109935 +g109937 +S'pointing' +p109939 +tp109940 +a(g109937 +g109939 +S'the' +p109941 +tp109942 +a(g109939 +g109941 +S'way' +p109943 +tp109944 +a(g109941 +g109943 +S'to' +p109945 +tp109946 +a(g109943 +g109945 +S'salvation.' +p109947 +tp109948 +a(g109945 +g109947 +S'there' +p109949 +tp109950 +a(g109947 +g109949 +S'are' +p109951 +tp109952 +a(g109949 +g109951 +S'distinct' +p109953 +tp109954 +a(g109951 +g109953 +S'similarities' +p109955 +tp109956 +a(g109953 +g109955 +S'in' +p109957 +tp109958 +a(g109955 +g109957 +S'style' +p109959 +tp109960 +a(g109957 +g109959 +S'and' +p109961 +tp109962 +a(g109959 +g109961 +S'subject' +p109963 +tp109964 +a(g109961 +g109963 +S'matter' +p109965 +tp109966 +a(g109963 +g109965 +S'between' +p109967 +tp109968 +a(g109965 +g109967 +S'this' +p109969 +tp109970 +a(g109967 +g109969 +S'painting' +p109971 +tp109972 +a(g109969 +g109971 +S'and' +p109973 +tp109974 +a(g109971 +g109973 +S'the' +p109975 +tp109976 +a(g109973 +g109975 +S'byzantine' +p109977 +tp109978 +a(g109975 +g109977 +S'icons' +p109979 +tp109980 +a(g109977 +g109979 +S'painted' +p109981 +tp109982 +a(g109979 +g109981 +S'in' +p109983 +tp109984 +a(g109981 +g109983 +S'the' +p109985 +tp109986 +a(g109983 +g109985 +S'east' +p109987 +tp109988 +a(g109985 +g109987 +S'for' +p109989 +tp109990 +a(g109987 +g109989 +S'the' +p109991 +tp109992 +a(g109989 +g109991 +S'greek' +p109993 +tp109994 +a(g109991 +g109993 +S'orthodox' +p109995 +tp109996 +a(g109993 +g109995 +S'church.' +p109997 +tp109998 +a(g109995 +g109997 +S'the' +p109999 +tp110000 +a(g109997 +g109999 +S'graceful' +p110001 +tp110002 +a(g109999 +g110001 +S'movement' +p110003 +tp110004 +a(g110001 +g110003 +S'of' +p110005 +tp110006 +a(g110003 +g110005 +S'the' +p110007 +tp110008 +a(g110005 +g110007 +S'figures,' +p110009 +tp110010 +a(g110007 +g110009 +S'the' +p110011 +tp110012 +a(g110009 +g110011 +S'gold' +p110013 +tp110014 +a(g110011 +g110013 +S'striations' +p110015 +tp110016 +a(g110013 +g110015 +S'on' +p110017 +tp110018 +a(g110015 +g110017 +S'the' +p110019 +tp110020 +a(g110017 +g110019 +S'drapery' +p110021 +tp110022 +a(g110019 +g110021 +S'which' +p110023 +tp110024 +a(g110021 +g110023 +S'simulate' +p110025 +tp110026 +a(g110023 +g110025 +S'shimmering' +p110027 +tp110028 +a(g110025 +g110027 +S'light,' +p110029 +tp110030 +a(g110027 +g110029 +S'and' +p110031 +tp110032 +a(g110029 +g110031 +S'the' +p110033 +tp110034 +a(g110031 +g110033 +S'flowing,' +p110035 +tp110036 +a(g110033 +g110035 +S'rhythmic' +p110037 +tp110038 +a(g110035 +g110037 +S'lines' +p110039 +tp110040 +a(g110037 +g110039 +S'identify' +p110041 +tp110042 +a(g110039 +g110041 +S'the' +p110043 +tp110044 +a(g110041 +g110043 +S'artist' +p110045 +tp110046 +a(g110043 +g110045 +S'as' +p110047 +tp110048 +a(g110045 +g110047 +S'a' +p110049 +tp110050 +a(g110047 +g110049 +S'greek' +p110051 +tp110052 +a(g110049 +g110051 +S'painter.' +p110053 +tp110054 +a(g110051 +g110053 +S'but' +p110055 +tp110056 +a(g110053 +g110055 +S'an' +p110057 +tp110058 +a(g110055 +g110057 +S'italian' +p110059 +tp110060 +a(g110057 +g110059 +S'influence' +p110061 +tp110062 +a(g110059 +g110061 +S'is' +p110063 +tp110064 +a(g110061 +g110063 +S'notable' +p110065 +tp110066 +a(g110063 +g110065 +S'in' +p110067 +tp110068 +a(g110065 +g110067 +S'the' +p110069 +tp110070 +a(g110067 +g110069 +S'tooled' +p110071 +tp110072 +a(g110069 +g110071 +S'decoration' +p110073 +tp110074 +a(g110071 +g110073 +S'of' +p110075 +tp110076 +a(g110073 +g110075 +S'the' +p110077 +tp110078 +a(g110075 +g110077 +S'halos,' +p110079 +tp110080 +a(g110077 +g110079 +S'the' +p110081 +tp110082 +a(g110079 +g110081 +S'perspective' +p110083 +tp110084 +a(g110081 +g110083 +S'of' +p110085 +tp110086 +a(g110083 +g110085 +S'the' +p110087 +tp110088 +a(g110085 +g110087 +S'wooden' +p110089 +tp110090 +a(g110087 +g110089 +S'throne' +p110091 +tp110092 +a(g110089 +g110091 +S'with' +p110093 +tp110094 +a(g110091 +g110093 +S'its' +p110095 +tp110096 +a(g110093 +g110095 +S'high' +p110097 +tp110098 +a(g110095 +g110097 +S'back,' +p110099 +tp110100 +a(g110097 +g110099 +S'the' +p110101 +tp110102 +a(g110099 +g110101 +S'delicate' +p110103 +tp110104 +a(g110101 +g110103 +S'gradations' +p110105 +tp110106 +a(g110103 +g110105 +S'of' +p110107 +tp110108 +a(g110105 +g110107 +S'light' +p110109 +tp110110 +a(g110107 +g110109 +S'and' +p110111 +tp110112 +a(g110109 +g110111 +S'shade,' +p110113 +tp110114 +a(g110111 +g110113 +S'and' +p110115 +tp110116 +a(g110113 +g110115 +S'the' +p110117 +tp110118 +a(g110115 +g110117 +S'distinctly' +p110119 +tp110120 +a(g110117 +g110119 +S'tuscan' +p110121 +tp110122 +a(g110119 +g110121 +S'scheme' +p110123 +tp110124 +a(g110121 +g110123 +S'of' +p110125 +tp110126 +a(g110123 +g110125 +S'the' +p110127 +tp110128 +a(g110125 +g110127 +S'rectangular' +p110129 +tp110130 +a(g110127 +g110129 +S'panel' +p110131 +tp110132 +a(g110129 +g110131 +S'with' +p110133 +tp110134 +a(g110131 +g110133 +S'a' +p110135 +tp110136 +a(g110133 +g110135 +S'full-length' +p110137 +tp110138 +a(g110135 +g110137 +S'depiction' +p110139 +tp110140 +a(g110137 +g110139 +S'of' +p110141 +tp110142 +a(g110139 +g110141 +S'the' +p110143 +tp110144 +a(g110141 +g110143 +S'enthroned' +p110145 +tp110146 +a(g110143 +g110145 +S'virgin.' +p110147 +tp110148 +a(g110145 +g110147 +S'the' +p110149 +tp110150 +a(g110147 +g110149 +S'obscure' +p110151 +tp110152 +a(g110149 +g110151 +S'iconography' +p110153 +tp110154 +a(g110151 +g110153 +S'of' +p110155 +tp110156 +a(g110153 +g110155 +S"dosso's" +p110157 +tp110158 +a(g110155 +g110157 +S'canvas' +p110159 +tp110160 +a(g110157 +g110159 +S'has' +p110161 +tp110162 +a(g110159 +g110161 +S'caused' +p110163 +tp110164 +a(g110161 +g110163 +S'much' +p110165 +tp110166 +a(g110163 +g110165 +S'speculation.' +p110167 +tp110168 +a(g110165 +g110167 +S'in' +p110169 +tp110170 +a(g110167 +g110169 +S'the' +p110171 +tp110172 +a(g110169 +g110171 +S'past' +p110173 +tp110174 +a(g110171 +g110173 +S'it' +p110175 +tp110176 +a(g110173 +g110175 +S'has' +p110177 +tp110178 +a(g110175 +g110177 +S'been' +p110179 +tp110180 +a(g110177 +g110179 +S'titled' +p110181 +tp110182 +a(g110179 +g110181 +S'simply' +p110183 +tp110184 +a(g110181 +g110183 +S'two' +p110185 +tp110186 +a(g110183 +g110185 +S'other' +p110187 +tp110188 +a(g110185 +g110187 +S'surviving' +p110189 +tp110190 +a(g110187 +g110189 +S'scenes' +p110191 +tp110192 +a(g110189 +g110191 +S'from' +p110193 +tp110194 +a(g110191 +g110193 +S'the' +p110195 +tp110196 +a(g110193 +g110195 +S'gentile' +p110197 +tp110198 +a(g110195 +g110197 +S'da' +p110199 +tp110200 +a(g110197 +g110199 +S"fabriano's" +p110201 +tp110202 +a(g110199 +g110201 +S'patrons' +p110203 +tp110204 +a(g110201 +g110203 +S'were' +p110205 +tp110206 +a(g110203 +g110205 +S'princes,' +p110207 +tp110208 +a(g110205 +g110207 +S'the' +p110209 +tp110210 +a(g110207 +g110209 +S'church,' +p110211 +tp110212 +a(g110209 +g110211 +S'and' +p110213 +tp110214 +a(g110211 +g110213 +S'various' +p110215 +tp110216 +a(g110213 +g110215 +S'city' +p110217 +tp110218 +a(g110215 +g110217 +S'governments' +p110219 +tp110220 +a(g110217 +g110219 +S'as' +p110221 +tp110222 +a(g110219 +g110221 +S'well' +p110223 +tp110224 +a(g110221 +g110223 +S'as' +p110225 +tp110226 +a(g110223 +g110225 +S'the' +p110227 +tp110228 +a(g110225 +g110227 +S'customary' +p110229 +tp110230 +a(g110227 +g110229 +S'merchant' +p110231 +tp110232 +a(g110229 +g110231 +S'clients.' +p110233 +tp110234 +a(g110231 +g110233 +S'his' +p110235 +tp110236 +a(g110233 +g110235 +S'art' +p110237 +tp110238 +a(g110235 +g110237 +S'has' +p110239 +tp110240 +a(g110237 +g110239 +S'a' +p110241 +tp110242 +a(g110239 +g110241 +S'cosmopolitan' +p110243 +tp110244 +a(g110241 +g110243 +S'flavor,' +p110245 +tp110246 +a(g110243 +g110245 +S'in' +p110247 +tp110248 +a(g110245 +g110247 +S'which' +p110249 +tp110250 +a(g110247 +g110249 +S'brilliant' +p110251 +tp110252 +a(g110249 +g110251 +S'color,' +p110253 +tp110254 +a(g110251 +g110253 +S'textural' +p110255 +tp110256 +a(g110253 +g110255 +S'richness,' +p110257 +tp110258 +a(g110255 +g110257 +S'and' +p110259 +tp110260 +a(g110257 +g110259 +S'ornamental' +p110261 +tp110262 +a(g110259 +g110261 +S'pattern' +p110263 +tp110264 +a(g110261 +g110263 +S'are' +p110265 +tp110266 +a(g110263 +g110265 +S'combined.' +p110267 +tp110268 +a(g110265 +g110267 +S'in' +p110269 +tp110270 +a(g110267 +g110269 +S'the' +p110271 +tp110272 +a(g110269 +g110271 +S"gentile's" +p110273 +tp110274 +a(g110271 +g110273 +S'art' +p110275 +tp110276 +a(g110273 +g110275 +S'is' +p110277 +tp110278 +a(g110275 +g110277 +S'typical' +p110279 +tp110280 +a(g110277 +g110279 +S'of' +p110281 +tp110282 +a(g110279 +g110281 +S'the' +p110283 +tp110284 +a(g110281 +g110283 +S'international' +p110285 +tp110286 +a(g110283 +g110285 +S'style,' +p110287 +tp110288 +a(g110285 +g110287 +S'a' +p110289 +tp110290 +a(g110287 +g110289 +S'manner' +p110291 +tp110292 +a(g110289 +g110291 +S'of' +p110293 +tp110294 +a(g110291 +g110293 +S'painting' +p110295 +tp110296 +a(g110293 +g110295 +S'which' +p110297 +tp110298 +a(g110295 +g110297 +S'became' +p110299 +tp110300 +a(g110297 +g110299 +S'popular' +p110301 +tp110302 +a(g110299 +g110301 +S'at' +p110303 +tp110304 +a(g110301 +g110303 +S'courts' +p110305 +tp110306 +a(g110303 +g110305 +S'throughout' +p110307 +tp110308 +a(g110305 +g110307 +S'europe' +p110309 +tp110310 +a(g110307 +g110309 +S'in' +p110311 +tp110312 +a(g110309 +g110311 +S'the' +p110313 +tp110314 +a(g110311 +g110313 +S'late' +p110315 +tp110316 +a(g110313 +g110315 +S'fourteenth' +p110317 +tp110318 +a(g110315 +g110317 +S'and' +p110319 +tp110320 +a(g110317 +g110319 +S'early' +p110321 +tp110322 +a(g110319 +g110321 +S'fifteenth' +p110323 +tp110324 +a(g110321 +g110323 +S'centuries.' +p110325 +tp110326 +a(g110323 +g110325 +S'characterized' +p110327 +tp110328 +a(g110325 +g110327 +S'by' +p110329 +tp110330 +a(g110327 +g110329 +S'a' +p110331 +tp110332 +a(g110329 +g110331 +S'refined' +p110333 +tp110334 +a(g110331 +g110333 +S'decorative' +p110335 +tp110336 +a(g110333 +g110335 +S'elegance,' +p110337 +tp110338 +a(g110335 +g110337 +S'a' +p110339 +tp110340 +a(g110337 +g110339 +S'concern' +p110341 +tp110342 +a(g110339 +g110341 +S'for' +p110343 +tp110344 +a(g110341 +g110343 +S'continuous' +p110345 +tp110346 +a(g110343 +g110345 +S'rhythms,' +p110347 +tp110348 +a(g110345 +g110347 +S'and' +p110349 +tp110350 +a(g110347 +g110349 +S'the' +p110351 +tp110352 +a(g110349 +g110351 +S'lavish' +p110353 +tp110354 +a(g110351 +g110353 +S'use' +p110355 +tp110356 +a(g110353 +g110355 +S'of' +p110357 +tp110358 +a(g110355 +g110357 +S'gold' +p110359 +tp110360 +a(g110357 +g110359 +S'and' +p110361 +tp110362 +a(g110359 +g110361 +S'bright' +p110363 +tp110364 +a(g110361 +g110363 +S'colors,' +p110365 +tp110366 +a(g110363 +g110365 +S'this' +p110367 +tp110368 +a(g110365 +g110367 +S'aristocratic' +p110369 +tp110370 +a(g110367 +g110369 +S'manner' +p110371 +tp110372 +a(g110369 +g110371 +S'fused' +p110373 +tp110374 +a(g110371 +g110373 +S'the' +p110375 +tp110376 +a(g110373 +g110375 +S'stylized' +p110377 +tp110378 +a(g110375 +g110377 +S'art' +p110379 +tp110380 +a(g110377 +g110379 +S'of' +p110381 +tp110382 +a(g110379 +g110381 +S'the' +p110383 +tp110384 +a(g110381 +g110383 +S'middle' +p110385 +tp110386 +a(g110383 +g110385 +S'ages' +p110387 +tp110388 +a(g110385 +g110387 +S'with' +p110389 +tp110390 +a(g110387 +g110389 +S'the' +p110391 +tp110392 +a(g110389 +g110391 +S'emerging' +p110393 +tp110394 +a(g110391 +g110393 +S'naturalistic' +p110395 +tp110396 +a(g110393 +g110395 +S'interests' +p110397 +tp110398 +a(g110395 +g110397 +S'of' +p110399 +tp110400 +a(g110397 +g110399 +S'the' +p110401 +tp110402 +a(g110399 +g110401 +S'renaissance.' +p110403 +tp110404 +a(g110401 +g110403 +S"giotto's" +p110405 +tp110406 +a(g110403 +g110405 +S'explorations' +p110407 +tp110408 +a(g110405 +g110407 +S'and' +p110409 +tp110410 +a(g110407 +g110409 +S'innovations' +p110411 +tp110412 +a(g110409 +g110411 +S'in' +p110413 +tp110414 +a(g110411 +g110413 +S'art' +p110415 +tp110416 +a(g110413 +g110415 +S'during' +p110417 +tp110418 +a(g110415 +g110417 +S'the' +p110419 +tp110420 +a(g110417 +g110419 +S'early' +p110421 +tp110422 +a(g110419 +g110421 +S'fourteenth' +p110423 +tp110424 +a(g110421 +g110423 +S'century' +p110425 +tp110426 +a(g110423 +g110425 +S'developed,' +p110427 +tp110428 +a(g110425 +g110427 +S'a' +p110429 +tp110430 +a(g110427 +g110429 +S'full' +p110431 +tp110432 +a(g110429 +g110431 +S'century' +p110433 +tp110434 +a(g110431 +g110433 +S'later,' +p110435 +tp110436 +a(g110433 +g110435 +S'into' +p110437 +tp110438 +a(g110435 +g110437 +S'the' +p110439 +tp110440 +a(g110437 +g110439 +S'italian' +p110441 +tp110442 +a(g110439 +g110441 +S'renaissance.' +p110443 +tp110444 +a(g110441 +g110443 +S'besides' +p110445 +tp110446 +a(g110443 +g110445 +S'making' +p110447 +tp110448 +a(g110445 +g110447 +S'panel' +p110449 +tp110450 +a(g110447 +g110449 +S'paintings,' +p110451 +tp110452 +a(g110449 +g110451 +S'he' +p110453 +tp110454 +a(g110451 +g110453 +S'executed' +p110455 +tp110456 +a(g110453 +g110455 +S'many' +p110457 +tp110458 +a(g110455 +g110457 +S'fresco' +p110459 +tp110460 +a(g110457 +g110459 +S'cycles,' +p110461 +tp110462 +a(g110459 +g110461 +S'the' +p110463 +tp110464 +a(g110461 +g110463 +S'most' +p110465 +tp110466 +a(g110463 +g110465 +S'famous' +p110467 +tp110468 +a(g110465 +g110467 +S'at' +p110469 +tp110470 +a(g110467 +g110469 +S'the' +p110471 +tp110472 +a(g110469 +g110471 +S'arena' +p110473 +tp110474 +a(g110471 +g110473 +S'chapel,' +p110475 +tp110476 +a(g110473 +g110475 +S'padua,' +p110477 +tp110478 +a(g110475 +g110477 +S'and' +p110479 +tp110480 +a(g110477 +g110479 +S'he' +p110481 +tp110482 +a(g110479 +g110481 +S'also' +p110483 +tp110484 +a(g110481 +g110483 +S'worked' +p110485 +tp110486 +a(g110483 +g110485 +S'as' +p110487 +tp110488 +a(g110485 +g110487 +S'an' +p110489 +tp110490 +a(g110487 +g110489 +S'architect' +p110491 +tp110492 +a(g110489 +g110491 +S'and' +p110493 +tp110494 +a(g110491 +g110493 +S'sculptor.' +p110495 +tp110496 +a(g110493 +g110495 +S'transformed' +p110497 +tp110498 +a(g110495 +g110497 +S'by' +p110499 +tp110500 +a(g110497 +g110499 +S'giotto,' +p110501 +tp110502 +a(g110499 +g110501 +S'the' +p110503 +tp110504 +a(g110501 +g110503 +S'stylized' +p110505 +tp110506 +a(g110503 +g110505 +S'figures' +p110507 +tp110508 +a(g110505 +g110507 +S'in' +p110509 +tp110510 +a(g110507 +g110509 +S'paintings' +p110511 +tp110512 +a(g110509 +g110511 +S'such' +p110513 +tp110514 +a(g110511 +g110513 +S'as' +p110515 +tp110516 +a(g110513 +g110515 +S'the' +p110517 +tp110518 +a(g110515 +g110517 +S'painted' +p110519 +tp110520 +a(g110517 +g110519 +S'during' +p110521 +tp110522 +a(g110519 +g110521 +S'the' +p110523 +tp110524 +a(g110521 +g110523 +S'latter' +p110525 +tp110526 +a(g110523 +g110525 +S'part' +p110527 +tp110528 +a(g110525 +g110527 +S'of' +p110529 +tp110530 +a(g110527 +g110529 +S"giotto's" +p110531 +tp110532 +a(g110529 +g110531 +S'career,' +p110533 +tp110534 +a(g110531 +g110533 +S'the' +p110535 +tp110536 +a(g110533 +g110535 +S'in' +p110537 +tp110538 +a(g110535 +g110537 +S'1775,' +p110539 +tp110540 +a(g110537 +g110539 +S'gilbert' +p110541 +tp110542 +a(g110539 +g110541 +S'stuart' +p110543 +tp110544 +a(g110541 +g110543 +S'set' +p110545 +tp110546 +a(g110543 +g110545 +S'sail' +p110547 +tp110548 +a(g110545 +g110547 +S'for' +p110549 +tp110550 +a(g110547 +g110549 +S'london' +p110551 +tp110552 +a(g110549 +g110551 +S'where' +p110553 +tp110554 +a(g110551 +g110553 +S'benjamin' +p110555 +tp110556 +a(g110553 +g110555 +S'west' +p110557 +tp110558 +a(g110555 +g110557 +S'welcomed' +p110559 +tp110560 +a(g110557 +g110559 +S'the' +p110561 +tp110562 +a(g110559 +g110561 +S'destitute' +p110563 +tp110564 +a(g110561 +g110563 +S'young' +p110565 +tp110566 +a(g110563 +g110565 +S'man' +p110567 +tp110568 +a(g110565 +g110567 +S'into' +p110569 +tp110570 +a(g110567 +g110569 +S'his' +p110571 +tp110572 +a(g110569 +g110571 +S'home.' +p110573 +tp110574 +a(g110571 +g110573 +S'the' +p110575 +tp110576 +a(g110573 +g110575 +S'unorthodox' +p110577 +tp110578 +a(g110575 +g110577 +S'motif' +p110579 +tp110580 +a(g110577 +g110579 +S'of' +p110581 +tp110582 +a(g110579 +g110581 +S'skating' +p110583 +tp110584 +a(g110581 +g110583 +S'--' +p110585 +tp110586 +a(g110583 +g110585 +S'indeed,' +p110587 +tp110588 +a(g110585 +g110587 +S'any' +p110589 +tp110590 +a(g110587 +g110589 +S'presentation' +p110591 +tp110592 +a(g110589 +g110591 +S'of' +p110593 +tp110594 +a(g110591 +g110593 +S'vigorous' +p110595 +tp110596 +a(g110593 +g110595 +S'movement' +p110597 +tp110598 +a(g110595 +g110597 +S'at' +p110599 +tp110600 +a(g110597 +g110599 +S'all' +p110601 +tp110602 +a(g110599 +g110601 +S'--' +p110603 +tp110604 +a(g110601 +g110603 +S'had' +p110605 +tp110606 +a(g110603 +g110605 +S'absolutely' +p110607 +tp110608 +a(g110605 +g110607 +S'no' +p110609 +tp110610 +a(g110607 +g110609 +S'precedent' +p110611 +tp110612 +a(g110609 +g110611 +S'in' +p110613 +tp110614 +a(g110611 +g110613 +S"britain's" +p110615 +tp110616 +a(g110613 +g110615 +S'"grand' +p110617 +tp110618 +a(g110615 +g110617 +S'manner"' +p110619 +tp110620 +a(g110617 +g110619 +S'tradition' +p110621 +tp110622 +a(g110619 +g110621 +S'of' +p110623 +tp110624 +a(g110621 +g110623 +S'life-size' +p110625 +tp110626 +a(g110623 +g110625 +S'society' +p110627 +tp110628 +a(g110625 +g110627 +S'portraiture.' +p110629 +tp110630 +a(g110627 +g110629 +S'the' +p110631 +tp110632 +a(g110629 +g110631 +S'painter' +p110633 +tp110634 +a(g110631 +g110633 +S'recalled' +p110635 +tp110636 +a(g110633 +g110635 +S'that' +p110637 +tp110638 +a(g110635 +g110637 +S'when' +p110639 +tp110640 +a(g110637 +g110639 +S'william' +p110641 +tp110642 +a(g110639 +g110641 +S'grant,' +p110643 +tp110644 +a(g110641 +g110643 +S'from' +p110645 +tp110646 +a(g110643 +g110645 +S'congalton' +p110647 +tp110648 +a(g110645 +g110647 +S'near' +p110649 +tp110650 +a(g110647 +g110649 +S'edinburgh,' +p110651 +tp110652 +a(g110649 +g110651 +S'arrived' +p110653 +tp110654 +a(g110651 +g110653 +S'to' +p110655 +tp110656 +a(g110653 +g110655 +S'have' +p110657 +tp110658 +a(g110655 +g110657 +S'his' +p110659 +tp110660 +a(g110657 +g110659 +S'picture' +p110661 +tp110662 +a(g110659 +g110661 +S'painted,' +p110663 +tp110664 +a(g110661 +g110663 +S'the' +p110665 +tp110666 +a(g110663 +g110665 +S'scottish' +p110667 +tp110668 +a(g110665 +g110667 +S'sitter' +p110669 +tp110670 +a(g110667 +g110669 +S'remarked' +p110671 +tp110672 +a(g110669 +g110671 +S'that,' +p110673 +tp110674 +a(g110671 +g110673 +S'"on' +p110675 +tp110676 +a(g110673 +g110675 +S'account' +p110677 +tp110678 +a(g110675 +g110677 +S'of' +p110679 +tp110680 +a(g110677 +g110679 +S'the' +p110681 +tp110682 +a(g110679 +g110681 +S'excessive' +p110683 +tp110684 +a(g110681 +g110683 +S'coldness' +p110685 +tp110686 +a(g110683 +g110685 +S'of' +p110687 +tp110688 +a(g110685 +g110687 +S'the' +p110689 +tp110690 +a(g110687 +g110689 +S'weather' +p110691 +tp110692 +a(g110689 +g110691 +S'.' +p110693 +tp110694 +a(g110691 +g110693 +S'.' +p110695 +tp110696 +a(g110693 +g110695 +S'.' +p110697 +tp110698 +a(g110695 +g110697 +S'the' +p110699 +tp110700 +a(g110697 +g110699 +S'day' +p110701 +tp110702 +a(g110699 +g110701 +S'was' +p110703 +tp110704 +a(g110701 +g110703 +S'better' +p110705 +tp110706 +a(g110703 +g110705 +S'suited' +p110707 +tp110708 +a(g110705 +g110707 +S'for' +p110709 +tp110710 +a(g110707 +g110709 +S'skating' +p110711 +tp110712 +a(g110709 +g110711 +S'than' +p110713 +tp110714 +a(g110711 +g110713 +S'sitting' +p110715 +tp110716 +a(g110713 +g110715 +S'for' +p110717 +tp110718 +a(g110715 +g110717 +S"one's" +p110719 +tp110720 +a(g110717 +g110719 +S'portrait."' +p110721 +tp110722 +a(g110719 +g110721 +S'thus' +p110723 +tp110724 +a(g110721 +g110723 +S'artist' +p110725 +tp110726 +a(g110723 +g110725 +S'and' +p110727 +tp110728 +a(g110725 +g110727 +S'sitter' +p110729 +tp110730 +a(g110727 +g110729 +S'went' +p110731 +tp110732 +a(g110729 +g110731 +S'off' +p110733 +tp110734 +a(g110731 +g110733 +S'to' +p110735 +tp110736 +a(g110733 +g110735 +S'skate' +p110737 +tp110738 +a(g110735 +g110737 +S'on' +p110739 +tp110740 +a(g110737 +g110739 +S'the' +p110741 +tp110742 +a(g110739 +g110741 +S'serpentine' +p110743 +tp110744 +a(g110741 +g110743 +S'river' +p110745 +tp110746 +a(g110743 +g110745 +S'in' +p110747 +tp110748 +a(g110745 +g110747 +S'hyde' +p110749 +tp110750 +a(g110747 +g110749 +S'park.' +p110751 +tp110752 +a(g110749 +g110751 +S'when' +p110753 +tp110754 +a(g110751 +g110753 +S'he' +p110755 +tp110756 +a(g110753 +g110755 +S'returned' +p110757 +tp110758 +a(g110755 +g110757 +S'to' +p110759 +tp110760 +a(g110757 +g110759 +S"west's" +p110761 +tp110762 +a(g110759 +g110761 +S'studio' +p110763 +tp110764 +a(g110761 +g110763 +S'with' +p110765 +tp110766 +a(g110763 +g110765 +S'grant,' +p110767 +tp110768 +a(g110765 +g110767 +S'stuart' +p110769 +tp110770 +a(g110767 +g110769 +S'conceived' +p110771 +tp110772 +a(g110769 +g110771 +S'the' +p110773 +tp110774 +a(g110771 +g110773 +S'idea' +p110775 +tp110776 +a(g110773 +g110775 +S'of' +p110777 +tp110778 +a(g110775 +g110777 +S'portraying' +p110779 +tp110780 +a(g110777 +g110779 +S'his' +p110781 +tp110782 +a(g110779 +g110781 +S'subject' +p110783 +tp110784 +a(g110781 +g110783 +S'on' +p110785 +tp110786 +a(g110783 +g110785 +S'ice' +p110787 +tp110788 +a(g110785 +g110787 +S'skates' +p110789 +tp110790 +a(g110787 +g110789 +S'in' +p110791 +tp110792 +a(g110789 +g110791 +S'a' +p110793 +tp110794 +a(g110791 +g110793 +S'winter' +p110795 +tp110796 +a(g110793 +g110795 +S'landscape,' +p110797 +tp110798 +a(g110795 +g110797 +S'with' +p110799 +tp110800 +a(g110797 +g110799 +S'the' +p110801 +tp110802 +a(g110799 +g110801 +S'twin' +p110803 +tp110804 +a(g110801 +g110803 +S'towers' +p110805 +tp110806 +a(g110803 +g110805 +S'of' +p110807 +tp110808 +a(g110805 +g110807 +S'westminster' +p110809 +tp110810 +a(g110807 +g110809 +S'abbey' +p110811 +tp110812 +a(g110809 +g110811 +S'far' +p110813 +tp110814 +a(g110811 +g110813 +S'in' +p110815 +tp110816 +a(g110813 +g110815 +S'the' +p110817 +tp110818 +a(g110815 +g110817 +S'distance.' +p110819 +tp110820 +a(g110817 +g110819 +S'in' +p110821 +tp110822 +a(g110819 +g110821 +S'this' +p110823 +tp110824 +a(g110821 +g110823 +S'innovative' +p110825 +tp110826 +a(g110823 +g110825 +S'design,' +p110827 +tp110828 +a(g110825 +g110827 +S'grant' +p110829 +tp110830 +a(g110827 +g110829 +S'glides' +p110831 +tp110832 +a(g110829 +g110831 +S'effortlessly' +p110833 +tp110834 +a(g110831 +g110833 +S'forward' +p110835 +tp110836 +a(g110833 +g110835 +S'with' +p110837 +tp110838 +a(g110835 +g110837 +S'arms' +p110839 +tp110840 +a(g110837 +g110839 +S'crossed' +p110841 +tp110842 +a(g110839 +g110841 +S'over' +p110843 +tp110844 +a(g110841 +g110843 +S'his' +p110845 +tp110846 +a(g110843 +g110845 +S'chest' +p110847 +tp110848 +a(g110845 +g110847 +S'in' +p110849 +tp110850 +a(g110847 +g110849 +S'typical' +p110851 +tp110852 +a(g110849 +g110851 +S'eighteenth-century' +p110853 +tp110854 +a(g110851 +g110853 +S'skating' +p110855 +tp110856 +a(g110853 +g110855 +S'form.' +p110857 +tp110858 +a(g110855 +g110857 +S'except' +p110859 +tp110860 +a(g110857 +g110859 +S'for' +p110861 +tp110862 +a(g110859 +g110861 +S'his' +p110863 +tp110864 +a(g110861 +g110863 +S'folded' +p110865 +tp110866 +a(g110863 +g110865 +S'arms,' +p110867 +tp110868 +a(g110865 +g110867 +S'the' +p110869 +tp110870 +a(g110867 +g110869 +S"figure's" +p110871 +tp110872 +a(g110869 +g110871 +S'stance' +p110873 +tp110874 +a(g110871 +g110873 +S'derives' +p110875 +tp110876 +a(g110873 +g110875 +S'from' +p110877 +tp110878 +a(g110875 +g110877 +S'an' +p110879 +tp110880 +a(g110877 +g110879 +S'ancient' +p110881 +tp110882 +a(g110879 +g110881 +S'roman' +p110883 +tp110884 +a(g110881 +g110883 +S'statue,' +p110885 +tp110886 +a(g110883 +g110885 +S'the' +p110887 +tp110888 +a(g110885 +g110887 +S'like' +p110889 +tp110890 +a(g110887 +g110889 +S'gauguin' +p110891 +tp110892 +a(g110889 +g110891 +S'had' +p110893 +tp110894 +a(g110891 +g110893 +S'always' +p110895 +tp110896 +a(g110893 +g110895 +S'been' +p110897 +tp110898 +a(g110895 +g110897 +S'preoccupied' +p110899 +tp110900 +a(g110897 +g110899 +S'with' +p110901 +tp110902 +a(g110899 +g110901 +S'the' +p110903 +tp110904 +a(g110901 +g110903 +S'role' +p110905 +tp110906 +a(g110903 +g110905 +S'of' +p110907 +tp110908 +a(g110905 +g110907 +S'color,' +p110909 +tp110910 +a(g110907 +g110909 +S'calling' +p110911 +tp110912 +a(g110909 +g110911 +S'it' +p110913 +tp110914 +a(g110911 +g110913 +S'a' +p110915 +tp110916 +a(g110913 +g110915 +S'"profound' +p110917 +tp110918 +a(g110915 +g110917 +S'and' +p110919 +tp110920 +a(g110917 +g110919 +S'mysterious' +p110921 +tp110922 +a(g110919 +g110921 +S'language,' +p110923 +tp110924 +a(g110921 +g110923 +S'a' +p110925 +tp110926 +a(g110923 +g110925 +S'language' +p110927 +tp110928 +a(g110925 +g110927 +S'of' +p110929 +tp110930 +a(g110927 +g110929 +S'the' +p110931 +tp110932 +a(g110929 +g110931 +S'dream."' +p110933 +tp110934 +a(g110931 +g110933 +S'he' +p110935 +tp110936 +a(g110933 +g110935 +S'described' +p110937 +tp110938 +a(g110935 +g110937 +S'its' +p110939 +tp110940 +a(g110937 +g110939 +S'effects' +p110941 +tp110942 +a(g110939 +g110941 +S'as' +p110943 +tp110944 +a(g110941 +g110943 +S'akin' +p110945 +tp110946 +a(g110943 +g110945 +S'to' +p110947 +tp110948 +a(g110945 +g110947 +S'music' +p110949 +tp110950 +a(g110947 +g110949 +S'and' +p110951 +tp110952 +a(g110949 +g110951 +S'its' +p110953 +tp110954 +a(g110951 +g110953 +S'relationships' +p110955 +tp110956 +a(g110953 +g110955 +S'to' +p110957 +tp110958 +a(g110955 +g110957 +S'musical' +p110959 +tp110960 +a(g110957 +g110959 +S'harmonies.' +p110961 +tp110962 +a(g110959 +g110961 +S'the' +p110963 +tp110964 +a(g110961 +g110963 +S'gentle' +p110965 +tp110966 +a(g110963 +g110965 +S'tones' +p110967 +tp110968 +a(g110965 +g110967 +S'here—the' +p110969 +tp110970 +a(g110967 +g110969 +S'soft' +p110971 +tp110972 +a(g110969 +g110971 +S'mat' +p110973 +tp110974 +a(g110971 +g110973 +S'of' +p110975 +tp110976 +a(g110973 +g110975 +S'pinks' +p110977 +tp110978 +a(g110975 +g110977 +S'that' +p110979 +tp110980 +a(g110977 +g110979 +S'carpets' +p110981 +tp110982 +a(g110979 +g110981 +S'the' +p110983 +tp110984 +a(g110981 +g110983 +S'foreground,' +p110985 +tp110986 +a(g110983 +g110985 +S'the' +p110987 +tp110988 +a(g110985 +g110987 +S'swirls' +p110989 +tp110990 +a(g110987 +g110989 +S'of' +p110991 +tp110992 +a(g110989 +g110991 +S'lavender' +p110993 +tp110994 +a(g110991 +g110993 +S'water—seem' +p110995 +tp110996 +a(g110993 +g110995 +S'to' +p110997 +tp110998 +a(g110995 +g110997 +S'be' +p110999 +tp111000 +a(g110997 +g110999 +S'scented' +p111001 +tp111002 +a(g110999 +g111001 +S'with' +p111003 +tp111004 +a(g111001 +g111003 +S'the' +p111005 +tp111006 +a(g111003 +g111005 +S'sweet' +p111007 +tp111008 +a(g111005 +g111007 +S'perfumes' +p111009 +tp111010 +a(g111007 +g111009 +S'of' +p111011 +tp111012 +a(g111009 +g111011 +S'paradise.' +p111013 +tp111014 +a(g111011 +g111013 +S'this' +p111015 +tp111016 +a(g111013 +g111015 +S'is' +p111017 +tp111018 +a(g111015 +g111017 +S'one' +p111019 +tp111020 +a(g111017 +g111019 +S'of' +p111021 +tp111022 +a(g111019 +g111021 +S'the' +p111023 +tp111024 +a(g111021 +g111023 +S'most' +p111025 +tp111026 +a(g111023 +g111025 +S'sumptuous' +p111027 +tp111028 +a(g111025 +g111027 +S'of' +p111029 +tp111030 +a(g111027 +g111029 +S'all' +p111031 +tp111032 +a(g111029 +g111031 +S"gauguin's" +p111033 +tp111034 +a(g111031 +g111033 +S'paintings.' +p111035 +tp111036 +a(g111033 +g111035 +S'located' +p111037 +tp111038 +a(g111035 +g111037 +S'on' +p111039 +tp111040 +a(g111037 +g111039 +S'the' +p111041 +tp111042 +a(g111039 +g111041 +S'seine' +p111043 +tp111044 +a(g111041 +g111043 +S'approximately' +p111045 +tp111046 +a(g111043 +g111045 +S'nine' +p111047 +tp111048 +a(g111045 +g111047 +S'miles' +p111049 +tp111050 +a(g111047 +g111049 +S'west' +p111051 +tp111052 +a(g111049 +g111051 +S'of' +p111053 +tp111054 +a(g111051 +g111053 +S'paris,' +p111055 +tp111056 +a(g111053 +g111055 +S'chatou' +p111057 +tp111058 +a(g111055 +g111057 +S'was' +p111059 +tp111060 +a(g111057 +g111059 +S'a' +p111061 +tp111062 +a(g111059 +g111061 +S'site' +p111063 +tp111064 +a(g111061 +g111063 +S'popular' +p111065 +tp111066 +a(g111063 +g111065 +S'with' +p111067 +tp111068 +a(g111065 +g111067 +S'parisian' +p111069 +tp111070 +a(g111067 +g111069 +S'day-trippers.' +p111071 +tp111072 +a(g111069 +g111071 +S'its' +p111073 +tp111074 +a(g111071 +g111073 +S'accessibility' +p111075 +tp111076 +a(g111073 +g111075 +S'to' +p111077 +tp111078 +a(g111075 +g111077 +S'the' +p111079 +tp111080 +a(g111077 +g111079 +S'capital' +p111081 +tp111082 +a(g111079 +g111081 +S'and' +p111083 +tp111084 +a(g111081 +g111083 +S'its' +p111085 +tp111086 +a(g111083 +g111085 +S'proximity' +p111087 +tp111088 +a(g111085 +g111087 +S'to' +p111089 +tp111090 +a(g111087 +g111089 +S'the' +p111091 +tp111092 +a(g111089 +g111091 +S'water' +p111093 +tp111094 +a(g111091 +g111093 +S'made' +p111095 +tp111096 +a(g111093 +g111095 +S'it' +p111097 +tp111098 +a(g111095 +g111097 +S'ideal' +p111099 +tp111100 +a(g111097 +g111099 +S'for' +p111101 +tp111102 +a(g111099 +g111101 +S'a' +p111103 +tp111104 +a(g111101 +g111103 +S'variety' +p111105 +tp111106 +a(g111103 +g111105 +S'of' +p111107 +tp111108 +a(g111105 +g111107 +S'leisure' +p111109 +tp111110 +a(g111107 +g111109 +S'activities,' +p111111 +tp111112 +a(g111109 +g111111 +S'including' +p111113 +tp111114 +a(g111111 +g111113 +S'swimming,' +p111115 +tp111116 +a(g111113 +g111115 +S'promenading,' +p111117 +tp111118 +a(g111115 +g111117 +S'and,' +p111119 +tp111120 +a(g111117 +g111119 +S'of' +p111121 +tp111122 +a(g111119 +g111121 +S'course,' +p111123 +tp111124 +a(g111121 +g111123 +S'boating.' +p111125 +tp111126 +a(g111123 +g111125 +S'among' +p111127 +tp111128 +a(g111125 +g111127 +S'its' +p111129 +tp111130 +a(g111127 +g111129 +S'notable' +p111131 +tp111132 +a(g111129 +g111131 +S'attractions' +p111133 +tp111134 +a(g111131 +g111133 +S'was' +p111135 +tp111136 +a(g111133 +g111135 +S'the' +p111137 +tp111138 +a(g111135 +g111137 +S'maison' +p111139 +tp111140 +a(g111137 +g111139 +S'fournaise,' +p111141 +tp111142 +a(g111139 +g111141 +S'one' +p111143 +tp111144 +a(g111141 +g111143 +S'of' +p111145 +tp111146 +a(g111143 +g111145 +S'the' +p111147 +tp111148 +a(g111145 +g111147 +S'many' +p111149 +tp111150 +a(g111147 +g111149 +S'suburban' +p111151 +tp111152 +a(g111149 +g111151 +S'taverns' +p111153 +tp111154 +a(g111151 +g111153 +S'and' +p111155 +tp111156 +a(g111153 +g111155 +S'restaurants' +p111157 +tp111158 +a(g111155 +g111157 +S'that' +p111159 +tp111160 +a(g111157 +g111159 +S'had' +p111161 +tp111162 +a(g111159 +g111161 +S'sprung' +p111163 +tp111164 +a(g111161 +g111163 +S'up' +p111165 +tp111166 +a(g111163 +g111165 +S'in' +p111167 +tp111168 +a(g111165 +g111167 +S'the' +p111169 +tp111170 +a(g111167 +g111169 +S'nineteenth' +p111171 +tp111172 +a(g111169 +g111171 +S'century' +p111173 +tp111174 +a(g111171 +g111173 +S'to' +p111175 +tp111176 +a(g111173 +g111175 +S'cater' +p111177 +tp111178 +a(g111175 +g111177 +S'to' +p111179 +tp111180 +a(g111177 +g111179 +S'the' +p111181 +tp111182 +a(g111179 +g111181 +S'needs' +p111183 +tp111184 +a(g111181 +g111183 +S'of' +p111185 +tp111186 +a(g111183 +g111185 +S'the' +p111187 +tp111188 +a(g111185 +g111187 +S'growing' +p111189 +tp111190 +a(g111187 +g111189 +S'throng' +p111191 +tp111192 +a(g111189 +g111191 +S'of' +p111193 +tp111194 +a(g111191 +g111193 +S'weekend' +p111195 +tp111196 +a(g111193 +g111195 +S'visitors.' +p111197 +tp111198 +a(g111195 +g111197 +S'a' +p111199 +tp111200 +a(g111197 +g111199 +S'favorite' +p111201 +tp111202 +a(g111199 +g111201 +S'meeting' +p111203 +tp111204 +a(g111201 +g111203 +S'place' +p111205 +tp111206 +a(g111203 +g111205 +S'of' +p111207 +tp111208 +a(g111205 +g111207 +S'boating' +p111209 +tp111210 +a(g111207 +g111209 +S'parties,' +p111211 +tp111212 +a(g111209 +g111211 +S'the' +p111213 +tp111214 +a(g111211 +g111213 +S'maison' +p111215 +tp111216 +a(g111213 +g111215 +S'fournaise' +p111217 +tp111218 +a(g111215 +g111217 +S'held' +p111219 +tp111220 +a(g111217 +g111219 +S'a' +p111221 +tp111222 +a(g111219 +g111221 +S'particular' +p111223 +tp111224 +a(g111221 +g111223 +S'appeal' +p111225 +tp111226 +a(g111223 +g111225 +S'for' +p111227 +tp111228 +a(g111225 +g111227 +S'renoir,' +p111229 +tp111230 +a(g111227 +g111229 +S'who' +p111231 +tp111232 +a(g111229 +g111231 +S'became' +p111233 +tp111234 +a(g111231 +g111233 +S'a' +p111235 +tp111236 +a(g111233 +g111235 +S'friend' +p111237 +tp111238 +a(g111235 +g111237 +S'of' +p111239 +tp111240 +a(g111237 +g111239 +S'the' +p111241 +tp111242 +a(g111239 +g111241 +S'fournaise' +p111243 +tp111244 +a(g111241 +g111243 +S'family' +p111245 +tp111246 +a(g111243 +g111245 +S'in' +p111247 +tp111248 +a(g111245 +g111247 +S'1875.' +p111249 +tp111250 +a(g111247 +g111249 +S'in' +p111251 +tp111252 +a(g111249 +g111251 +S'the' +p111253 +tp111254 +a(g111251 +g111253 +S'years' +p111255 +tp111256 +a(g111253 +g111255 +S'that' +p111257 +tp111258 +a(g111255 +g111257 +S'followed,' +p111259 +tp111260 +a(g111257 +g111259 +S'he' +p111261 +tp111262 +a(g111259 +g111261 +S'would' +p111263 +tp111264 +a(g111261 +g111263 +S'paint' +p111265 +tp111266 +a(g111263 +g111265 +S'a' +p111267 +tp111268 +a(g111265 +g111267 +S'number' +p111269 +tp111270 +a(g111267 +g111269 +S'of' +p111271 +tp111272 +a(g111269 +g111271 +S'works' +p111273 +tp111274 +a(g111271 +g111273 +S'in' +p111275 +tp111276 +a(g111273 +g111275 +S'and' +p111277 +tp111278 +a(g111275 +g111277 +S'around' +p111279 +tp111280 +a(g111277 +g111279 +S'that' +p111281 +tp111282 +a(g111279 +g111281 +S'locale;' +p111283 +tp111284 +a(g111281 +g111283 +S'nine' +p111285 +tp111286 +a(g111283 +g111285 +S'of' +p111287 +tp111288 +a(g111285 +g111287 +S'his' +p111289 +tp111290 +a(g111287 +g111289 +S'figure' +p111291 +tp111292 +a(g111289 +g111291 +S'paintings' +p111293 +tp111294 +a(g111291 +g111293 +S'and' +p111295 +tp111296 +a(g111293 +g111295 +S'seven' +p111297 +tp111298 +a(g111295 +g111297 +S'of' +p111299 +tp111300 +a(g111297 +g111299 +S'his' +p111301 +tp111302 +a(g111299 +g111301 +S'landscapes' +p111303 +tp111304 +a(g111301 +g111303 +S'have' +p111305 +tp111306 +a(g111303 +g111305 +S'been' +p111307 +tp111308 +a(g111305 +g111307 +S'associated' +p111309 +tp111310 +a(g111307 +g111309 +S'with' +p111311 +tp111312 +a(g111309 +g111311 +S'chatou,' +p111313 +tp111314 +a(g111311 +g111313 +S'including' +p111315 +tp111316 +a(g111313 +g111315 +S'what' +p111317 +tp111318 +a(g111315 +g111317 +S'is' +p111319 +tp111320 +a(g111317 +g111319 +S'perhaps' +p111321 +tp111322 +a(g111319 +g111321 +S'the' +p111323 +tp111324 +a(g111321 +g111323 +S'artist\xe2\x80\x99s' +p111325 +tp111326 +a(g111323 +g111325 +S'most' +p111327 +tp111328 +a(g111325 +g111327 +S'famous' +p111329 +tp111330 +a(g111327 +g111329 +S'painting,' +p111331 +tp111332 +a(g111329 +g111331 +S'oarsmen' +p111333 +tp111334 +a(g111331 +g111333 +S'at' +p111335 +tp111336 +a(g111333 +g111335 +S'chatou' +p111337 +tp111338 +a(g111335 +g111337 +S'"the' +p111339 +tp111340 +a(g111337 +g111339 +S'chic' +p111341 +tp111342 +a(g111339 +g111341 +S'thing' +p111343 +tp111344 +a(g111341 +g111343 +S'to' +p111345 +tp111346 +a(g111343 +g111345 +S'do' +p111347 +tp111348 +a(g111345 +g111347 +S'on' +p111349 +tp111350 +a(g111347 +g111349 +S'sundays,"' +p111351 +tp111352 +a(g111349 +g111351 +S'renoir' +p111353 +tp111354 +a(g111351 +g111353 +S'later' +p111355 +tp111356 +a(g111353 +g111355 +S'reminisced,' +p111357 +tp111358 +a(g111355 +g111357 +S'"was' +p111359 +tp111360 +a(g111357 +g111359 +S'to' +p111361 +tp111362 +a(g111359 +g111361 +S'bring' +p111363 +tp111364 +a(g111361 +g111363 +S'pretty' +p111365 +tp111366 +a(g111363 +g111365 +S'girls' +p111367 +tp111368 +a(g111365 +g111367 +S'rowing' +p111369 +tp111370 +a(g111367 +g111369 +S'there.' +p111371 +tp111372 +a(g111369 +g111371 +S'.' +p111373 +tp111374 +a(g111371 +g111373 +S'.' +p111375 +tp111376 +a(g111373 +g111375 +S'.' +p111377 +tp111378 +a(g111375 +g111377 +S'it' +p111379 +tp111380 +a(g111377 +g111379 +S'was' +p111381 +tp111382 +a(g111379 +g111381 +S'there' +p111383 +tp111384 +a(g111381 +g111383 +S'that' +p111385 +tp111386 +a(g111383 +g111385 +S'i' +p111387 +tp111388 +a(g111385 +g111387 +S'found' +p111389 +tp111390 +a(g111387 +g111389 +S'models' +p111391 +tp111392 +a(g111389 +g111391 +S'who' +p111393 +tp111394 +a(g111391 +g111393 +S'were' +p111395 +tp111396 +a(g111393 +g111395 +S'willing,' +p111397 +tp111398 +a(g111395 +g111397 +S'if' +p111399 +tp111400 +a(g111397 +g111399 +S'for' +p111401 +tp111402 +a(g111399 +g111401 +S'an' +p111403 +tp111404 +a(g111401 +g111403 +S'instant,' +p111405 +tp111406 +a(g111403 +g111405 +S'to' +p111407 +tp111408 +a(g111405 +g111407 +S'lend' +p111409 +tp111410 +a(g111407 +g111409 +S'me' +p111411 +tp111412 +a(g111409 +g111411 +S'their' +p111413 +tp111414 +a(g111411 +g111413 +S'youth' +p111415 +tp111416 +a(g111413 +g111415 +S'and' +p111417 +tp111418 +a(g111415 +g111417 +S'grace."' +p111419 +tp111420 +a(g111417 +g111419 +S'with' +p111421 +tp111422 +a(g111419 +g111421 +S'its' +p111423 +tp111424 +a(g111421 +g111423 +S'celebration' +p111425 +tp111426 +a(g111423 +g111425 +S'of' +p111427 +tp111428 +a(g111425 +g111427 +S'leisure' +p111429 +tp111430 +a(g111427 +g111429 +S'culture,' +p111431 +tp111432 +a(g111429 +g111431 +S'its' +p111433 +tp111434 +a(g111431 +g111433 +S'lush,' +p111435 +tp111436 +a(g111433 +g111435 +S'vibrant' +p111437 +tp111438 +a(g111435 +g111437 +S'color,' +p111439 +tp111440 +a(g111437 +g111439 +S'and' +p111441 +tp111442 +a(g111439 +g111441 +S'its' +p111443 +tp111444 +a(g111441 +g111443 +S'flickering' +p111445 +tp111446 +a(g111443 +g111445 +S'brushwork,' +p111447 +tp111448 +a(g111445 +g111447 +S'(text' +p111449 +tp111450 +a(g111447 +g111449 +S'by' +p111451 +tp111452 +a(g111449 +g111451 +S'kimberly' +p111453 +tp111454 +a(g111451 +g111453 +S'jones,' +p111455 +tp111456 +a(g111453 +g111455 +S'notes' +p111457 +tp111458 +a(g111455 +g111457 +S'' +p111461 +tp111462 +a(g111459 +g111461 +S'' +p111465 +tp111466 +a(g111463 +g111465 +S'' +p111469 +tp111470 +a(g111467 +g111469 +S'merton' +p111471 +tp111472 +a(g111469 +g111471 +S'at' +p111473 +tp111474 +a(g111471 +g111473 +S'oxford' +p111475 +tp111476 +a(g111473 +g111475 +S'university' +p111477 +tp111478 +a(g111475 +g111477 +S'is' +p111479 +tp111480 +a(g111477 +g111479 +S'among' +p111481 +tp111482 +a(g111479 +g111481 +S'the' +p111483 +tp111484 +a(g111481 +g111483 +S'oldest' +p111485 +tp111486 +a(g111483 +g111485 +S'colleges' +p111487 +tp111488 +a(g111485 +g111487 +S'in' +p111489 +tp111490 +a(g111487 +g111489 +S'the' +p111491 +tp111492 +a(g111489 +g111491 +S'english-speaking' +p111493 +tp111494 +a(g111491 +g111493 +S'world.' +p111495 +tp111496 +a(g111493 +g111495 +S'in' +p111497 +tp111498 +a(g111495 +g111497 +S'1264-1274,' +p111499 +tp111500 +a(g111497 +g111499 +S'the' +p111501 +tp111502 +a(g111499 +g111501 +S'chancellor' +p111503 +tp111504 +a(g111501 +g111503 +S'of' +p111505 +tp111506 +a(g111503 +g111505 +S'england,' +p111507 +tp111508 +a(g111505 +g111507 +S'walter' +p111509 +tp111510 +a(g111507 +g111509 +S'de' +p111511 +tp111512 +a(g111509 +g111511 +S'merton,' +p111513 +tp111514 +a(g111511 +g111513 +S'endowed' +p111515 +tp111516 +a(g111513 +g111515 +S'it' +p111517 +tp111518 +a(g111515 +g111517 +S'as' +p111519 +tp111520 +a(g111517 +g111519 +S'a' +p111521 +tp111522 +a(g111519 +g111521 +S'secular' +p111523 +tp111524 +a(g111521 +g111523 +S'institution' +p111525 +tp111526 +a(g111523 +g111525 +S'patterned' +p111527 +tp111528 +a(g111525 +g111527 +S'after' +p111529 +tp111530 +a(g111527 +g111529 +S'higher' +p111531 +tp111532 +a(g111529 +g111531 +S'education' +p111533 +tp111534 +a(g111531 +g111533 +S'in' +p111535 +tp111536 +a(g111533 +g111535 +S'religious' +p111537 +tp111538 +a(g111535 +g111537 +S'orders.' +p111539 +tp111540 +a(g111537 +g111539 +S'this' +p111541 +tp111542 +a(g111539 +g111541 +S"painting's" +p111543 +tp111544 +a(g111541 +g111543 +S'background' +p111545 +tp111546 +a(g111543 +g111545 +S'depicts' +p111547 +tp111548 +a(g111545 +g111547 +S'merton' +p111549 +tp111550 +a(g111547 +g111549 +S'college,' +p111551 +tp111552 +a(g111549 +g111551 +S'including' +p111553 +tp111554 +a(g111551 +g111553 +S'its' +p111555 +tp111556 +a(g111553 +g111555 +S'chapel' +p111557 +tp111558 +a(g111555 +g111557 +S'tower,' +p111559 +tp111560 +a(g111557 +g111559 +S'as' +p111561 +tp111562 +a(g111559 +g111561 +S'seen' +p111563 +tp111564 +a(g111561 +g111563 +S'from' +p111565 +tp111566 +a(g111563 +g111565 +S'christ' +p111567 +tp111568 +a(g111565 +g111567 +S'church' +p111569 +tp111570 +a(g111567 +g111569 +S'meadow;' +p111571 +tp111572 +a(g111569 +g111571 +S'these' +p111573 +tp111574 +a(g111571 +g111573 +S'thirteenth-' +p111575 +tp111576 +a(g111573 +g111575 +S'to' +p111577 +tp111578 +a(g111575 +g111577 +S'fifteenth-century' +p111579 +tp111580 +a(g111577 +g111579 +S'buildings' +p111581 +tp111582 +a(g111579 +g111581 +S'still' +p111583 +tp111584 +a(g111581 +g111583 +S'stand.' +p111585 +tp111586 +a(g111583 +g111585 +S'details' +p111587 +tp111588 +a(g111585 +g111587 +S'that' +p111589 +tp111590 +a(g111587 +g111589 +S'show' +p111591 +tp111592 +a(g111589 +g111591 +S'changes' +p111593 +tp111594 +a(g111591 +g111593 +S'to' +p111595 +tp111596 +a(g111593 +g111595 +S'the' +p111597 +tp111598 +a(g111595 +g111597 +S'architecture' +p111599 +tp111600 +a(g111597 +g111599 +S'date' +p111601 +tp111602 +a(g111599 +g111601 +S'the' +p111603 +tp111604 +a(g111601 +g111603 +S'picture' +p111605 +tp111606 +a(g111603 +g111605 +S'to' +p111607 +tp111608 +a(g111605 +g111607 +S'around' +p111609 +tp111610 +a(g111607 +g111609 +S'1754/1755.' +p111611 +tp111612 +a(g111609 +g111611 +S'the' +p111613 +tp111614 +a(g111611 +g111613 +S'unidentified' +p111615 +tp111616 +a(g111613 +g111615 +S'youth' +p111617 +tp111618 +a(g111615 +g111617 +S'wears' +p111619 +tp111620 +a(g111617 +g111619 +S'the' +p111621 +tp111622 +a(g111619 +g111621 +S'black' +p111623 +tp111624 +a(g111621 +g111623 +S'gown' +p111625 +tp111626 +a(g111623 +g111625 +S'of' +p111627 +tp111628 +a(g111625 +g111627 +S'an' +p111629 +tp111630 +a(g111627 +g111629 +S'undergraduate,' +p111631 +tp111632 +a(g111629 +g111631 +S'a' +p111633 +tp111634 +a(g111631 +g111633 +S'robe' +p111635 +tp111636 +a(g111633 +g111635 +S'without' +p111637 +tp111638 +a(g111635 +g111637 +S'a' +p111639 +tp111640 +a(g111637 +g111639 +S'hood.' +p111641 +tp111642 +a(g111639 +g111641 +S'he' +p111643 +tp111644 +a(g111641 +g111643 +S'holds' +p111645 +tp111646 +a(g111643 +g111645 +S'a' +p111647 +tp111648 +a(g111645 +g111647 +S'black' +p111649 +tp111650 +a(g111647 +g111649 +S'mortarboard' +p111651 +tp111652 +a(g111649 +g111651 +S'and' +p111653 +tp111654 +a(g111651 +g111653 +S'wears' +p111655 +tp111656 +a(g111653 +g111655 +S'a' +p111657 +tp111658 +a(g111655 +g111657 +S'simple' +p111659 +tp111660 +a(g111657 +g111659 +S'white' +p111661 +tp111662 +a(g111659 +g111661 +S'cravat.' +p111663 +tp111664 +a(g111661 +g111663 +S'(today,' +p111665 +tp111666 +a(g111663 +g111665 +S'oxford’s' +p111667 +tp111668 +a(g111665 +g111667 +S'male' +p111669 +tp111670 +a(g111667 +g111669 +S'students' +p111671 +tp111672 +a(g111669 +g111671 +S'wear' +p111673 +tp111674 +a(g111671 +g111673 +S'white' +p111675 +tp111676 +a(g111673 +g111675 +S'bow' +p111677 +tp111678 +a(g111675 +g111677 +S'ties.)' +p111679 +tp111680 +a(g111677 +g111679 +S'underneath' +p111681 +tp111682 +a(g111679 +g111681 +S'this' +p111683 +tp111684 +a(g111681 +g111683 +S'plain' +p111685 +tp111686 +a(g111683 +g111685 +S'gown,' +p111687 +tp111688 +a(g111685 +g111687 +S'though,' +p111689 +tp111690 +a(g111687 +g111689 +S'he' +p111691 +tp111692 +a(g111689 +g111691 +S'sports' +p111693 +tp111694 +a(g111691 +g111693 +S'a' +p111695 +tp111696 +a(g111693 +g111695 +S'satin' +p111697 +tp111698 +a(g111695 +g111697 +S'coat' +p111699 +tp111700 +a(g111697 +g111699 +S'and' +p111701 +tp111702 +a(g111699 +g111701 +S'a' +p111703 +tp111704 +a(g111701 +g111703 +S'waistcoat' +p111705 +tp111706 +a(g111703 +g111705 +S'with' +p111707 +tp111708 +a(g111705 +g111707 +S'ostentatious' +p111709 +tp111710 +a(g111707 +g111709 +S'embroidery.' +p111711 +tp111712 +a(g111709 +g111711 +S'the' +p111713 +tp111714 +a(g111711 +g111713 +S'absence' +p111715 +tp111716 +a(g111713 +g111715 +S'of' +p111717 +tp111718 +a(g111715 +g111717 +S'sleeves' +p111719 +tp111720 +a(g111717 +g111719 +S'on' +p111721 +tp111722 +a(g111719 +g111721 +S'his' +p111723 +tp111724 +a(g111721 +g111723 +S'academic' +p111725 +tp111726 +a(g111723 +g111725 +S'robe' +p111727 +tp111728 +a(g111725 +g111727 +S'marks' +p111729 +tp111730 +a(g111727 +g111729 +S'this' +p111731 +tp111732 +a(g111729 +g111731 +S'aristocrat' +p111733 +tp111734 +a(g111731 +g111733 +S'as' +p111735 +tp111736 +a(g111733 +g111735 +S'a' +p111737 +tp111738 +a(g111735 +g111737 +S'“commoner,”' +p111739 +tp111740 +a(g111737 +g111739 +S'meaning' +p111741 +tp111742 +a(g111739 +g111741 +S'a' +p111743 +tp111744 +a(g111741 +g111743 +S'student' +p111745 +tp111746 +a(g111743 +g111745 +S'who' +p111747 +tp111748 +a(g111745 +g111747 +S'paid' +p111749 +tp111750 +a(g111747 +g111749 +S'tuition.' +p111751 +tp111752 +a(g111749 +g111751 +S'a' +p111753 +tp111754 +a(g111751 +g111753 +S'gown' +p111755 +tp111756 +a(g111753 +g111755 +S'with' +p111757 +tp111758 +a(g111755 +g111757 +S'short' +p111759 +tp111760 +a(g111757 +g111759 +S'sleeves' +p111761 +tp111762 +a(g111759 +g111761 +S'indicates' +p111763 +tp111764 +a(g111761 +g111763 +S'a' +p111765 +tp111766 +a(g111763 +g111765 +S'“scholar,”' +p111767 +tp111768 +a(g111765 +g111767 +S'or' +p111769 +tp111770 +a(g111767 +g111769 +S'someone' +p111771 +tp111772 +a(g111769 +g111771 +S'who' +p111773 +tp111774 +a(g111771 +g111773 +S'required' +p111775 +tp111776 +a(g111773 +g111775 +S'a' +p111777 +tp111778 +a(g111775 +g111777 +S'financial' +p111779 +tp111780 +a(g111777 +g111779 +S'grant.' +p111781 +tp111782 +a(g111779 +g111781 +S'the' +p111783 +tp111784 +a(g111781 +g111783 +S'painter' +p111785 +tp111786 +a(g111783 +g111785 +S'george' +p111787 +tp111788 +a(g111785 +g111787 +S'knapton,' +p111789 +tp111790 +a(g111787 +g111789 +S'son' +p111791 +tp111792 +a(g111789 +g111791 +S'of' +p111793 +tp111794 +a(g111791 +g111793 +S'a' +p111795 +tp111796 +a(g111793 +g111795 +S'prosperous' +p111797 +tp111798 +a(g111795 +g111797 +S'london' +p111799 +tp111800 +a(g111797 +g111799 +S'bookseller,' +p111801 +tp111802 +a(g111799 +g111801 +S'spent' +p111803 +tp111804 +a(g111801 +g111803 +S'seven' +p111805 +tp111806 +a(g111803 +g111805 +S'years' +p111807 +tp111808 +a(g111805 +g111807 +S'studying' +p111809 +tp111810 +a(g111807 +g111809 +S'in' +p111811 +tp111812 +a(g111809 +g111811 +S'italy.' +p111813 +tp111814 +a(g111811 +g111813 +S'a' +p111815 +tp111816 +a(g111813 +g111815 +S'major' +p111817 +tp111818 +a(g111815 +g111817 +S'artist' +p111819 +tp111820 +a(g111817 +g111819 +S'in' +p111821 +tp111822 +a(g111819 +g111821 +S'pastel' +p111823 +tp111824 +a(g111821 +g111823 +S'chalks,' +p111825 +tp111826 +a(g111823 +g111825 +S'knapton' +p111827 +tp111828 +a(g111825 +g111827 +S'capped' +p111829 +tp111830 +a(g111827 +g111829 +S'his' +p111831 +tp111832 +a(g111829 +g111831 +S'career' +p111833 +tp111834 +a(g111831 +g111833 +S'as' +p111835 +tp111836 +a(g111833 +g111835 +S'curator' +p111837 +tp111838 +a(g111835 +g111837 +S'of' +p111839 +tp111840 +a(g111837 +g111839 +S'the' +p111841 +tp111842 +a(g111839 +g111841 +S'british' +p111843 +tp111844 +a(g111841 +g111843 +S'royal' +p111845 +tp111846 +a(g111843 +g111845 +S'picture' +p111847 +tp111848 +a(g111845 +g111847 +S'collection.' +p111849 +tp111850 +a(g111847 +g111849 +S'right' +p111851 +tp111852 +a(g111849 +g111851 +S'and' +p111853 +tp111854 +a(g111851 +g111853 +S'left' +p111855 +tp111856 +a(g111853 +g111855 +S'we' +p111857 +tp111858 +a(g111855 +g111857 +S'witness' +p111859 +tp111860 +a(g111857 +g111859 +S'the' +p111861 +tp111862 +a(g111859 +g111861 +S'scene' +p111863 +tp111864 +a(g111861 +g111863 +S'from' +p111865 +tp111866 +a(g111863 +g111865 +S'the' +p111867 +tp111868 +a(g111865 +g111867 +S"ducks'" +p111869 +tp111870 +a(g111867 +g111869 +S'elevated' +p111871 +tp111872 +a(g111869 +g111871 +S'vantage' +p111873 +tp111874 +a(g111871 +g111873 +S'point,' +p111875 +tp111876 +a(g111873 +g111875 +S'a' +p111877 +tp111878 +a(g111875 +g111877 +S'precarious' +p111879 +tp111880 +a(g111877 +g111879 +S'perspective' +p111881 +tp111882 +a(g111879 +g111881 +S'that' +p111883 +tp111884 +a(g111881 +g111883 +S'encourages' +p111885 +tp111886 +a(g111883 +g111885 +S'empathy' +p111887 +tp111888 +a(g111885 +g111887 +S'with' +p111889 +tp111890 +a(g111887 +g111889 +S'the' +p111891 +tp111892 +a(g111889 +g111891 +S'threatened' +p111893 +tp111894 +a(g111891 +g111893 +S'creatures.' +p111895 +tp111896 +a(g111893 +g111895 +S'by' +p111897 +tp111898 +a(g111895 +g111897 +S'underscoring' +p111899 +tp111900 +a(g111897 +g111899 +S'the' +p111901 +tp111902 +a(g111899 +g111901 +S'fleeting' +p111903 +tp111904 +a(g111901 +g111903 +S'nature' +p111905 +tp111906 +a(g111903 +g111905 +S'of' +p111907 +tp111908 +a(g111905 +g111907 +S'these' +p111909 +tp111910 +a(g111907 +g111909 +S"birds'" +p111911 +tp111912 +a(g111909 +g111911 +S'existence,' +p111913 +tp111914 +a(g111911 +g111913 +S'homer' +p111915 +tp111916 +a(g111913 +g111915 +S'reminds' +p111917 +tp111918 +a(g111915 +g111917 +S'viewers' +p111919 +tp111920 +a(g111917 +g111919 +S'of' +p111921 +tp111922 +a(g111919 +g111921 +S'the' +p111923 +tp111924 +a(g111921 +g111923 +S'fragility' +p111925 +tp111926 +a(g111923 +g111925 +S'of' +p111927 +tp111928 +a(g111925 +g111927 +S'their' +p111929 +tp111930 +a(g111927 +g111929 +S'own.' +p111931 +tp111932 +a(g111929 +g111931 +S'the' +p111933 +tp111934 +a(g111931 +g111933 +S'expression' +p111935 +tp111936 +a(g111933 +g111935 +S'of' +p111937 +tp111938 +a(g111935 +g111937 +S'calculating,' +p111939 +tp111940 +a(g111937 +g111939 +S'almost' +p111941 +tp111942 +a(g111939 +g111941 +S'cruel,' +p111943 +tp111944 +a(g111941 +g111943 +S'appraisal—amplified' +p111945 +tp111946 +a(g111943 +g111945 +S'by' +p111947 +tp111948 +a(g111945 +g111947 +S'his' +p111949 +tp111950 +a(g111947 +g111949 +S'closed' +p111951 +tp111952 +a(g111949 +g111951 +S'fist—gives' +p111953 +tp111954 +a(g111951 +g111953 +S'this' +p111955 +tp111956 +a(g111953 +g111955 +S'man' +p111957 +tp111958 +a(g111955 +g111957 +S'an' +p111959 +tp111960 +a(g111957 +g111959 +S'aggressive' +p111961 +tp111962 +a(g111959 +g111961 +S'air,' +p111963 +tp111964 +a(g111961 +g111963 +S'but' +p111965 +tp111966 +a(g111963 +g111965 +S'we' +p111967 +tp111968 +a(g111965 +g111967 +S'do' +p111969 +tp111970 +a(g111967 +g111969 +S'not' +p111971 +tp111972 +a(g111969 +g111971 +S'know' +p111973 +tp111974 +a(g111971 +g111973 +S'his' +p111975 +tp111976 +a(g111973 +g111975 +S'identity.' +p111977 +tp111978 +a(g111975 +g111977 +S'the' +p111979 +tp111980 +a(g111977 +g111979 +S'inscription' +p111981 +tp111982 +a(g111979 +g111981 +S'on' +p111983 +tp111984 +a(g111981 +g111983 +S'the' +p111985 +tp111986 +a(g111983 +g111985 +S'parapet' +p111987 +tp111988 +a(g111985 +g111987 +S'does' +p111989 +tp111990 +a(g111987 +g111989 +S'not' +p111991 +tp111992 +a(g111989 +g111991 +S'help.' +p111993 +tp111994 +a(g111991 +g111993 +S'these' +p111995 +tp111996 +a(g111993 +g111995 +S'letters,' +p111997 +tp111998 +a(g111995 +g111997 +S'like' +p111999 +tp112000 +a(g111997 +g111999 +S'other' +p112001 +tp112002 +a(g111999 +g112001 +S'paintings' +p112003 +tp112004 +a(g112001 +g112003 +S'associated' +p112005 +tp112006 +a(g112003 +g112005 +S'with' +p112007 +tp112008 +a(g112005 +g112007 +S'giorgione,' +p112009 +tp112010 +a(g112007 +g112009 +S'this' +p112011 +tp112012 +a(g112009 +g112011 +S'one' +p112013 +tp112014 +a(g112011 +g112013 +S'presents' +p112015 +tp112016 +a(g112013 +g112015 +S'difficulties' +p112017 +tp112018 +a(g112015 +g112017 +S'of' +p112019 +tp112020 +a(g112017 +g112019 +S'attribution.' +p112021 +tp112022 +a(g112019 +g112021 +S'both' +p112023 +tp112024 +a(g112021 +g112023 +S'titian' +p112025 +tp112026 +a(g112023 +g112025 +S'and' +p112027 +tp112028 +a(g112025 +g112027 +S'nardo,' +p112029 +tp112030 +a(g112027 +g112029 +S'who' +p112031 +tp112032 +a(g112029 +g112031 +S'with' +p112033 +tp112034 +a(g112031 +g112033 +S'brothers' +p112035 +tp112036 +a(g112033 +g112035 +S'nardo’s' +p112037 +tp112038 +a(g112035 +g112037 +S'virgin,' +p112039 +tp112040 +a(g112037 +g112039 +S'despite' +p112041 +tp112042 +a(g112039 +g112041 +S'her' +p112043 +tp112044 +a(g112041 +g112043 +S'soft' +p112045 +tp112046 +a(g112043 +g112045 +S'expression,' +p112047 +tp112048 +a(g112045 +g112047 +S'appears' +p112049 +tp112050 +a(g112047 +g112049 +S'removed' +p112051 +tp112052 +a(g112049 +g112051 +S'from' +p112053 +tp112054 +a(g112051 +g112053 +S'human' +p112055 +tp112056 +a(g112053 +g112055 +S'concerns.' +p112057 +tp112058 +a(g112055 +g112057 +S'bright,' +p112059 +tp112060 +a(g112057 +g112059 +S'artificial' +p112061 +tp112062 +a(g112059 +g112061 +S'colors' +p112063 +tp112064 +a(g112061 +g112063 +S'separate' +p112065 +tp112066 +a(g112063 +g112065 +S'her' +p112067 +tp112068 +a(g112065 +g112067 +S'from' +p112069 +tp112070 +a(g112067 +g112069 +S'the' +p112071 +tp112072 +a(g112069 +g112071 +S'real' +p112073 +tp112074 +a(g112071 +g112073 +S'world,' +p112075 +tp112076 +a(g112073 +g112075 +S'and' +p112077 +tp112078 +a(g112075 +g112077 +S'the' +p112079 +tp112080 +a(g112077 +g112079 +S'stiff' +p112081 +tp112082 +a(g112079 +g112081 +S'saints' +p112083 +tp112084 +a(g112081 +g112083 +S'on' +p112085 +tp112086 +a(g112083 +g112085 +S'either' +p112087 +tp112088 +a(g112085 +g112087 +S'side' +p112089 +tp112090 +a(g112087 +g112089 +S'underscore' +p112091 +tp112092 +a(g112089 +g112091 +S'her' +p112093 +tp112094 +a(g112091 +g112093 +S'hierarchical' +p112095 +tp112096 +a(g112093 +g112095 +S'importance.' +p112097 +tp112098 +a(g112095 +g112097 +S'around' +p112099 +tp112100 +a(g112097 +g112099 +S'the' +p112101 +tp112102 +a(g112099 +g112101 +S'middle' +p112103 +tp112104 +a(g112101 +g112103 +S'of' +p112105 +tp112106 +a(g112103 +g112105 +S'the' +p112107 +tp112108 +a(g112105 +g112107 +S'fourteenth' +p112109 +tp112110 +a(g112107 +g112109 +S'century,' +p112111 +tp112112 +a(g112109 +g112111 +S'florentine' +p112113 +tp112114 +a(g112111 +g112113 +S'artists' +p112115 +tp112116 +a(g112113 +g112115 +S'like' +p112117 +tp112118 +a(g112115 +g112117 +S'nardo' +p112119 +tp112120 +a(g112117 +g112119 +S'and' +p112121 +tp112122 +a(g112119 +g112121 +S'his' +p112123 +tp112124 +a(g112121 +g112123 +S'brothers' +p112125 +tp112126 +a(g112123 +g112125 +S'abandoned' +p112127 +tp112128 +a(g112125 +g112127 +S'the' +p112129 +tp112130 +a(g112127 +g112129 +S'human' +p112131 +tp112132 +a(g112129 +g112131 +S'concerns' +p112133 +tp112134 +a(g112131 +g112133 +S'and' +p112135 +tp112136 +a(g112133 +g112135 +S'naturalism' +p112137 +tp112138 +a(g112135 +g112137 +S'of' +p112139 +tp112140 +a(g112137 +g112139 +S'giotto.' +p112141 +tp112142 +a(g112139 +g112141 +S'for' +p112143 +tp112144 +a(g112141 +g112143 +S'several' +p112145 +tp112146 +a(g112143 +g112145 +S'decades' +p112147 +tp112148 +a(g112145 +g112147 +S'the' +p112149 +tp112150 +a(g112147 +g112149 +S'older,' +p112151 +tp112152 +a(g112149 +g112151 +S'traditional' +p112153 +tp112154 +a(g112151 +g112153 +S'styles' +p112155 +tp112156 +a(g112153 +g112155 +S'again' +p112157 +tp112158 +a(g112155 +g112157 +S'predominated.' +p112159 +tp112160 +a(g112157 +g112159 +S'art' +p112161 +tp112162 +a(g112159 +g112161 +S'historians' +p112163 +tp112164 +a(g112161 +g112163 +S'continue' +p112165 +tp112166 +a(g112163 +g112165 +S'to' +p112167 +tp112168 +a(g112165 +g112167 +S'debate' +p112169 +tp112170 +a(g112167 +g112169 +S'why' +p112171 +tp112172 +a(g112169 +g112171 +S'this' +p112173 +tp112174 +a(g112171 +g112173 +S'occurred.' +p112175 +tp112176 +a(g112173 +g112175 +S'perhaps' +p112177 +tp112178 +a(g112175 +g112177 +S'giotto’s' +p112179 +tp112180 +a(g112177 +g112179 +S'work' +p112181 +tp112182 +a(g112179 +g112181 +S'was' +p112183 +tp112184 +a(g112181 +g112183 +S'only' +p112185 +tp112186 +a(g112183 +g112185 +S'appreciated,' +p112187 +tp112188 +a(g112185 +g112187 +S'as' +p112189 +tp112190 +a(g112187 +g112189 +S'petrarch' +p112191 +tp112192 +a(g112189 +g112191 +S'believed,' +p112193 +tp112194 +a(g112191 +g112193 +S'by' +p112195 +tp112196 +a(g112193 +g112195 +S'a' +p112197 +tp112198 +a(g112195 +g112197 +S'small,' +p112199 +tp112200 +a(g112197 +g112199 +S'educated' +p112201 +tp112202 +a(g112199 +g112201 +S'elite.' +p112203 +tp112204 +a(g112201 +g112203 +S'perhaps' +p112205 +tp112206 +a(g112203 +g112205 +S'intensified' +p112207 +tp112208 +a(g112205 +g112207 +S'religious' +p112209 +tp112210 +a(g112207 +g112209 +S'sentiment' +p112211 +tp112212 +a(g112209 +g112211 +S'following' +p112213 +tp112214 +a(g112211 +g112213 +S'the' +p112215 +tp112216 +a(g112213 +g112215 +S'plague' +p112217 +tp112218 +a(g112215 +g112217 +S'of' +p112219 +tp112220 +a(g112217 +g112219 +S'1348—when' +p112221 +tp112222 +a(g112219 +g112221 +S'up' +p112223 +tp112224 +a(g112221 +g112223 +S'to' +p112225 +tp112226 +a(g112223 +g112225 +S'half' +p112227 +tp112228 +a(g112225 +g112227 +S'the' +p112229 +tp112230 +a(g112227 +g112229 +S'population' +p112231 +tp112232 +a(g112229 +g112231 +S'of' +p112233 +tp112234 +a(g112231 +g112233 +S'italian' +p112235 +tp112236 +a(g112233 +g112235 +S'cities' +p112237 +tp112238 +a(g112235 +g112237 +S'died' +p112239 +tp112240 +a(g112237 +g112239 +S'within' +p112241 +tp112242 +a(g112239 +g112241 +S'a' +p112243 +tp112244 +a(g112241 +g112243 +S'few' +p112245 +tp112246 +a(g112243 +g112245 +S'weeks—prompted' +p112247 +tp112248 +a(g112245 +g112247 +S'this' +p112249 +tp112250 +a(g112247 +g112249 +S'conservatism.' +p112251 +tp112252 +a(g112249 +g112251 +S'or' +p112253 +tp112254 +a(g112251 +g112253 +S'perhaps' +p112255 +tp112256 +a(g112253 +g112255 +S'the' +p112257 +tp112258 +a(g112255 +g112257 +S'deaths' +p112259 +tp112260 +a(g112257 +g112259 +S'of' +p112261 +tp112262 +a(g112259 +g112261 +S'so' +p112263 +tp112264 +a(g112261 +g112263 +S'many' +p112265 +tp112266 +a(g112263 +g112265 +S'artists' +p112267 +tp112268 +a(g112265 +g112267 +S'and' +p112269 +tp112270 +a(g112267 +g112269 +S'patrons' +p112271 +tp112272 +a(g112269 +g112271 +S'changed' +p112273 +tp112274 +a(g112271 +g112273 +S'the' +p112275 +tp112276 +a(g112273 +g112275 +S'nature' +p112277 +tp112278 +a(g112275 +g112277 +S'of' +p112279 +tp112280 +a(g112277 +g112279 +S'commissions' +p112281 +tp112282 +a(g112279 +g112281 +S'and' +p112283 +tp112284 +a(g112281 +g112283 +S'workshop' +p112285 +tp112286 +a(g112283 +g112285 +S'practice.' +p112287 +tp112288 +a(g112285 +g112287 +S'at' +p112289 +tp112290 +a(g112287 +g112289 +S'the' +p112291 +tp112292 +a(g112289 +g112291 +S'core' +p112293 +tp112294 +a(g112291 +g112293 +S'of' +p112295 +tp112296 +a(g112293 +g112295 +S'renaissance' +p112297 +tp112298 +a(g112295 +g112297 +S'art' +p112299 +tp112300 +a(g112297 +g112299 +S'is' +p112301 +tp112302 +a(g112299 +g112301 +S'the' +p112303 +tp112304 +a(g112301 +g112303 +S'revival' +p112305 +tp112306 +a(g112303 +g112305 +S'of' +p112307 +tp112308 +a(g112305 +g112307 +S'the' +p112309 +tp112310 +a(g112307 +g112309 +S'classical' +p112311 +tp112312 +a(g112309 +g112311 +S'past,' +p112313 +tp112314 +a(g112311 +g112313 +S'and' +p112315 +tp112316 +a(g112313 +g112315 +S'in' +p112317 +tp112318 +a(g112315 +g112317 +S'his' +p112319 +tp112320 +a(g112317 +g112319 +S'yet' +p112321 +tp112322 +a(g112319 +g112321 +S'titian' +p112323 +tp112324 +a(g112321 +g112323 +S'breathed' +p112325 +tp112326 +a(g112323 +g112325 +S'a' +p112327 +tp112328 +a(g112325 +g112327 +S'warmth' +p112329 +tp112330 +a(g112327 +g112329 +S'and' +p112331 +tp112332 +a(g112329 +g112331 +S'life' +p112333 +tp112334 +a(g112331 +g112333 +S'into' +p112335 +tp112336 +a(g112333 +g112335 +S'the' +p112337 +tp112338 +a(g112335 +g112337 +S'remote' +p112339 +tp112340 +a(g112337 +g112339 +S'source' +p112341 +tp112342 +a(g112339 +g112341 +S'to' +p112343 +tp112344 +a(g112341 +g112343 +S'conjure' +p112345 +tp112346 +a(g112343 +g112345 +S'a' +p112347 +tp112348 +a(g112345 +g112347 +S'startlingly' +p112349 +tp112350 +a(g112347 +g112349 +S'immediate' +p112351 +tp112352 +a(g112349 +g112351 +S'and' +p112353 +tp112354 +a(g112351 +g112353 +S'sensual' +p112355 +tp112356 +a(g112353 +g112355 +S'modern' +p112357 +tp112358 +a(g112355 +g112357 +S'venus.' +p112359 +tp112360 +a(g112357 +g112359 +S'her' +p112361 +tp112362 +a(g112359 +g112361 +S'pliant' +p112363 +tp112364 +a(g112361 +g112363 +S'flesh' +p112365 +tp112366 +a(g112363 +g112365 +S'seems' +p112367 +tp112368 +a(g112365 +g112367 +S'to' +p112369 +tp112370 +a(g112367 +g112369 +S'melt' +p112371 +tp112372 +a(g112369 +g112371 +S'at' +p112373 +tp112374 +a(g112371 +g112373 +S'the' +p112375 +tp112376 +a(g112373 +g112375 +S'touch' +p112377 +tp112378 +a(g112375 +g112377 +S'of' +p112379 +tp112380 +a(g112377 +g112379 +S'the' +p112381 +tp112382 +a(g112379 +g112381 +S'cupid' +p112383 +tp112384 +a(g112381 +g112383 +S'who' +p112385 +tp112386 +a(g112383 +g112385 +S'strains' +p112387 +tp112388 +a(g112385 +g112387 +S'to' +p112389 +tp112390 +a(g112387 +g112389 +S'bestow' +p112391 +tp112392 +a(g112389 +g112391 +S'on' +p112393 +tp112394 +a(g112391 +g112393 +S'her' +p112395 +tp112396 +a(g112393 +g112395 +S'the' +p112397 +tp112398 +a(g112395 +g112397 +S'crown' +p112399 +tp112400 +a(g112397 +g112399 +S'of' +p112401 +tp112402 +a(g112399 +g112401 +S'love.' +p112403 +tp112404 +a(g112401 +g112403 +S'while' +p112405 +tp112406 +a(g112403 +g112405 +S'she' +p112407 +tp112408 +a(g112405 +g112407 +S'pulls' +p112409 +tp112410 +a(g112407 +g112409 +S'about' +p112411 +tp112412 +a(g112409 +g112411 +S'her' +p112413 +tp112414 +a(g112411 +g112413 +S'a' +p112415 +tp112416 +a(g112413 +g112415 +S'wine–colored' +p112417 +tp112418 +a(g112415 +g112417 +S'velvet' +p112419 +tp112420 +a(g112417 +g112419 +S'wrap' +p112421 +tp112422 +a(g112419 +g112421 +S'lined' +p112423 +tp112424 +a(g112421 +g112423 +S'in' +p112425 +tp112426 +a(g112423 +g112425 +S'fur,' +p112427 +tp112428 +a(g112425 +g112427 +S'soft,' +p112429 +tp112430 +a(g112427 +g112429 +S'opulent,' +p112431 +tp112432 +a(g112429 +g112431 +S'and' +p112433 +tp112434 +a(g112431 +g112433 +S'evoking' +p112435 +tp112436 +a(g112433 +g112435 +S'the' +p112437 +tp112438 +a(g112435 +g112437 +S'sense' +p112439 +tp112440 +a(g112437 +g112439 +S'of' +p112441 +tp112442 +a(g112439 +g112441 +S'touch,' +p112443 +tp112444 +a(g112441 +g112443 +S'venus' +p112445 +tp112446 +a(g112443 +g112445 +S'reveals' +p112447 +tp112448 +a(g112445 +g112447 +S'her' +p112449 +tp112450 +a(g112447 +g112449 +S'body' +p112451 +tp112452 +a(g112449 +g112451 +S'as' +p112453 +tp112454 +a(g112451 +g112453 +S'much' +p112455 +tp112456 +a(g112453 +g112455 +S'as' +p112457 +tp112458 +a(g112455 +g112457 +S'she' +p112459 +tp112460 +a(g112457 +g112459 +S'conceals' +p112461 +tp112462 +a(g112459 +g112461 +S'it.' +p112463 +tp112464 +a(g112461 +g112463 +S'the' +p112465 +tp112466 +a(g112463 +g112465 +S'beautiful' +p112467 +tp112468 +a(g112465 +g112467 +S'woman' +p112469 +tp112470 +a(g112467 +g112469 +S'gazing' +p112471 +tp112472 +a(g112469 +g112471 +S'at' +p112473 +tp112474 +a(g112471 +g112473 +S'her' +p112475 +tp112476 +a(g112473 +g112475 +S'reflection' +p112477 +tp112478 +a(g112475 +g112477 +S'is' +p112479 +tp112480 +a(g112477 +g112479 +S'a' +p112481 +tp112482 +a(g112479 +g112481 +S'favorite' +p112483 +tp112484 +a(g112481 +g112483 +S'theme' +p112485 +tp112486 +a(g112483 +g112485 +S'of' +p112487 +tp112488 +a(g112485 +g112487 +S'renaissance' +p112489 +tp112490 +a(g112487 +g112489 +S'love' +p112491 +tp112492 +a(g112489 +g112491 +S'poetry' +p112493 +tp112494 +a(g112491 +g112493 +S'in' +p112495 +tp112496 +a(g112493 +g112495 +S'which' +p112497 +tp112498 +a(g112495 +g112497 +S'the' +p112499 +tp112500 +a(g112497 +g112499 +S'writer' +p112501 +tp112502 +a(g112499 +g112501 +S'envies' +p112503 +tp112504 +a(g112501 +g112503 +S'the' +p112505 +tp112506 +a(g112503 +g112505 +S'fortunate' +p112507 +tp112508 +a(g112505 +g112507 +S'mirror' +p112509 +tp112510 +a(g112507 +g112509 +S'that' +p112511 +tp112512 +a(g112509 +g112511 +S'enjoys' +p112513 +tp112514 +a(g112511 +g112513 +S'his' +p112515 +tp112516 +a(g112513 +g112515 +S"lady's" +p112517 +tp112518 +a(g112515 +g112517 +S'splendid' +p112519 +tp112520 +a(g112517 +g112519 +S'image.' +p112521 +tp112522 +a(g112519 +g112521 +S'viewed' +p112523 +tp112524 +a(g112521 +g112523 +S'from' +p112525 +tp112526 +a(g112523 +g112525 +S'any' +p112527 +tp112528 +a(g112525 +g112527 +S'direction,' +p112529 +tp112530 +a(g112527 +g112529 +S'the' +p112531 +tp112532 +a(g112529 +g112531 +S'swaying,' +p112533 +tp112534 +a(g112531 +g112533 +S'strutting' +p112535 +tp112536 +a(g112533 +g112535 +S'ratapoil' +p112537 +tp112538 +a(g112535 +g112537 +S'is' +p112539 +tp112540 +a(g112537 +g112539 +S"daumier's" +p112541 +tp112542 +a(g112539 +g112541 +S'brilliant' +p112543 +tp112544 +a(g112541 +g112543 +S'stab' +p112545 +tp112546 +a(g112543 +g112545 +S'at' +p112547 +tp112548 +a(g112545 +g112547 +S'the' +p112549 +tp112550 +a(g112547 +g112549 +S'political' +p112551 +tp112552 +a(g112549 +g112551 +S'ambitions' +p112553 +tp112554 +a(g112551 +g112553 +S'of' +p112555 +tp112556 +a(g112553 +g112555 +S'louis-napoleon,' +p112557 +tp112558 +a(g112555 +g112557 +S'who' +p112559 +tp112560 +a(g112557 +g112559 +S'would' +p112561 +tp112562 +a(g112559 +g112561 +S'proclaim' +p112563 +tp112564 +a(g112561 +g112563 +S'himself' +p112565 +tp112566 +a(g112563 +g112565 +S'emperor' +p112567 +tp112568 +a(g112565 +g112567 +S'of' +p112569 +tp112570 +a(g112567 +g112569 +S'france' +p112571 +tp112572 +a(g112569 +g112571 +S'in' +p112573 +tp112574 +a(g112571 +g112573 +S'1852.' +p112575 +tp112576 +a(g112573 +g112575 +S'daumier' +p112577 +tp112578 +a(g112575 +g112577 +S'strongly' +p112579 +tp112580 +a(g112577 +g112579 +S'supported' +p112581 +tp112582 +a(g112579 +g112581 +S'the' +p112583 +tp112584 +a(g112581 +g112583 +S'nascent' +p112585 +tp112586 +a(g112583 +g112585 +S'french' +p112587 +tp112588 +a(g112585 +g112587 +S'democracy' +p112589 +tp112590 +a(g112587 +g112589 +S'and' +p112591 +tp112592 +a(g112589 +g112591 +S'used' +p112593 +tp112594 +a(g112591 +g112593 +S'his' +p112595 +tp112596 +a(g112593 +g112595 +S'art—both' +p112597 +tp112598 +a(g112595 +g112597 +S'his' +p112599 +tp112600 +a(g112597 +g112599 +S'drawn' +p112601 +tp112602 +a(g112599 +g112601 +S'caricatures' +p112603 +tp112604 +a(g112601 +g112603 +S'of' +p112605 +tp112606 +a(g112603 +g112605 +S'ratapoil' +p112607 +tp112608 +a(g112605 +g112607 +S'that' +p112609 +tp112610 +a(g112607 +g112609 +S'appeared' +p112611 +tp112612 +a(g112609 +g112611 +S'in' +p112613 +tp112614 +a(g112611 +g112613 +S'the' +p112615 +tp112616 +a(g112613 +g112615 +S'satiric' +p112617 +tp112618 +a(g112615 +g112617 +S'journal' +p112619 +tp112620 +a(g112617 +g112619 +S'daumier' +p112621 +tp112622 +a(g112619 +g112621 +S'used' +p112623 +tp112624 +a(g112621 +g112623 +S'a' +p112625 +tp112626 +a(g112623 +g112625 +S'rough-modeled' +p112627 +tp112628 +a(g112625 +g112627 +S'realism' +p112629 +tp112630 +a(g112627 +g112629 +S'to' +p112631 +tp112632 +a(g112629 +g112631 +S'detail' +p112633 +tp112634 +a(g112631 +g112633 +S'the' +p112635 +tp112636 +a(g112633 +g112635 +S'character' +p112637 +tp112638 +a(g112635 +g112637 +S'of' +p112639 +tp112640 +a(g112637 +g112639 +S'ratapoil.' +p112641 +tp112642 +a(g112639 +g112641 +S'with' +p112643 +tp112644 +a(g112641 +g112643 +S'hat' +p112645 +tp112646 +a(g112643 +g112645 +S'crumpled' +p112647 +tp112648 +a(g112645 +g112647 +S'and' +p112649 +tp112650 +a(g112647 +g112649 +S'smashed' +p112651 +tp112652 +a(g112649 +g112651 +S'down' +p112653 +tp112654 +a(g112651 +g112653 +S'over' +p112655 +tp112656 +a(g112653 +g112655 +S'a' +p112657 +tp112658 +a(g112655 +g112657 +S'bony' +p112659 +tp112660 +a(g112657 +g112659 +S'skull,' +p112661 +tp112662 +a(g112659 +g112661 +S'eye' +p112663 +tp112664 +a(g112661 +g112663 +S'glaring,' +p112665 +tp112666 +a(g112663 +g112665 +S'nose' +p112667 +tp112668 +a(g112665 +g112667 +S'broken,' +p112669 +tp112670 +a(g112667 +g112669 +S'mustache' +p112671 +tp112672 +a(g112669 +g112671 +S'and' +p112673 +tp112674 +a(g112671 +g112673 +S'beard' +p112675 +tp112676 +a(g112673 +g112675 +S'pointed' +p112677 +tp112678 +a(g112675 +g112677 +S'to' +p112679 +tp112680 +a(g112677 +g112679 +S'a' +p112681 +tp112682 +a(g112679 +g112681 +S'satanic' +p112683 +tp112684 +a(g112681 +g112683 +S'extreme,' +p112685 +tp112686 +a(g112683 +g112685 +S'and' +p112687 +tp112688 +a(g112685 +g112687 +S'outmoded' +p112689 +tp112690 +a(g112687 +g112689 +S'frockcoat' +p112691 +tp112692 +a(g112689 +g112691 +S'and' +p112693 +tp112694 +a(g112691 +g112693 +S'trousers' +p112695 +tp112696 +a(g112693 +g112695 +S'streaming' +p112697 +tp112698 +a(g112695 +g112697 +S'over' +p112699 +tp112700 +a(g112697 +g112699 +S'an' +p112701 +tp112702 +a(g112699 +g112701 +S'emaciated' +p112703 +tp112704 +a(g112701 +g112703 +S'torso,' +p112705 +tp112706 +a(g112703 +g112705 +S'ratapoil' +p112707 +tp112708 +a(g112705 +g112707 +S'seems' +p112709 +tp112710 +a(g112707 +g112709 +S'a' +p112711 +tp112712 +a(g112709 +g112711 +S'mix' +p112713 +tp112714 +a(g112711 +g112713 +S'of' +p112715 +tp112716 +a(g112713 +g112715 +S'self-confident' +p112717 +tp112718 +a(g112715 +g112717 +S'dandy' +p112719 +tp112720 +a(g112717 +g112719 +S'and' +p112721 +tp112722 +a(g112719 +g112721 +S'has-been' +p112723 +tp112724 +a(g112721 +g112723 +S'thug.' +p112725 +tp112726 +a(g112723 +g112725 +S'sweeping' +p112727 +tp112728 +a(g112725 +g112727 +S'diagonals' +p112729 +tp112730 +a(g112727 +g112729 +S'invigorate' +p112731 +tp112732 +a(g112729 +g112731 +S'the' +p112733 +tp112734 +a(g112731 +g112733 +S'figure:' +p112735 +tp112736 +a(g112733 +g112735 +S"ratapoil's" +p112737 +tp112738 +a(g112735 +g112737 +S'neck' +p112739 +tp112740 +a(g112737 +g112739 +S'and' +p112741 +tp112742 +a(g112739 +g112741 +S'jaw' +p112743 +tp112744 +a(g112741 +g112743 +S'turn' +p112745 +tp112746 +a(g112743 +g112745 +S'hard' +p112747 +tp112748 +a(g112745 +g112747 +S'to' +p112749 +tp112750 +a(g112747 +g112749 +S'one' +p112751 +tp112752 +a(g112749 +g112751 +S'side,' +p112753 +tp112754 +a(g112751 +g112753 +S'shoulders,' +p112755 +tp112756 +a(g112753 +g112755 +S'chest,' +p112757 +tp112758 +a(g112755 +g112757 +S'and' +p112759 +tp112760 +a(g112757 +g112759 +S'right' +p112761 +tp112762 +a(g112759 +g112761 +S'leg' +p112763 +tp112764 +a(g112761 +g112763 +S'propel' +p112765 +tp112766 +a(g112763 +g112765 +S'him' +p112767 +tp112768 +a(g112765 +g112767 +S'forward' +p112769 +tp112770 +a(g112767 +g112769 +S'as' +p112771 +tp112772 +a(g112769 +g112771 +S'he' +p112773 +tp112774 +a(g112771 +g112773 +S'arches' +p112775 +tp112776 +a(g112773 +g112775 +S'his' +p112777 +tp112778 +a(g112775 +g112777 +S'back' +p112779 +tp112780 +a(g112777 +g112779 +S'in' +p112781 +tp112782 +a(g112779 +g112781 +S'a' +p112783 +tp112784 +a(g112781 +g112783 +S'dramatic' +p112785 +tp112786 +a(g112783 +g112785 +S'curve,' +p112787 +tp112788 +a(g112785 +g112787 +S'grasping' +p112789 +tp112790 +a(g112787 +g112789 +S'his' +p112791 +tp112792 +a(g112789 +g112791 +S'club' +p112793 +tp112794 +a(g112791 +g112793 +S'behind' +p112795 +tp112796 +a(g112793 +g112795 +S'him.' +p112797 +tp112798 +a(g112795 +g112797 +S'though' +p112799 +tp112800 +a(g112797 +g112799 +S'less' +p112801 +tp112802 +a(g112799 +g112801 +S'than' +p112803 +tp112804 +a(g112801 +g112803 +S'18' +p112805 +tp112806 +a(g112803 +g112805 +S'inches' +p112807 +tp112808 +a(g112805 +g112807 +S'tall,' +p112809 +tp112810 +a(g112807 +g112809 +S'in' +p112811 +tp112812 +a(g112809 +g112811 +S'classical' +p112813 +tp112814 +a(g112811 +g112813 +S'mythology,' +p112815 +tp112816 +a(g112813 +g112815 +S'pluto,' +p112817 +tp112818 +a(g112815 +g112817 +S'the' +p112819 +tp112820 +a(g112817 +g112819 +S'god' +p112821 +tp112822 +a(g112819 +g112821 +S'of' +p112823 +tp112824 +a(g112821 +g112823 +S'the' +p112825 +tp112826 +a(g112823 +g112825 +S'underworld,' +p112827 +tp112828 +a(g112825 +g112827 +S'abducted' +p112829 +tp112830 +a(g112827 +g112829 +S'the' +p112831 +tp112832 +a(g112829 +g112831 +S'maiden' +p112833 +tp112834 +a(g112831 +g112833 +S'proserpine' +p112835 +tp112836 +a(g112833 +g112835 +S'to' +p112837 +tp112838 +a(g112835 +g112837 +S'make' +p112839 +tp112840 +a(g112837 +g112839 +S'her' +p112841 +tp112842 +a(g112839 +g112841 +S'his' +p112843 +tp112844 +a(g112841 +g112843 +S'wife' +p112845 +tp112846 +a(g112843 +g112845 +S'and' +p112847 +tp112848 +a(g112845 +g112847 +S'the' +p112849 +tp112850 +a(g112847 +g112849 +S'queen' +p112851 +tp112852 +a(g112849 +g112851 +S'of' +p112853 +tp112854 +a(g112851 +g112853 +S'hades.' +p112855 +tp112856 +a(g112853 +g112855 +S'turner,' +p112857 +tp112858 +a(g112855 +g112857 +S'in' +p112859 +tp112860 +a(g112857 +g112859 +S'this' +p112861 +tp112862 +a(g112859 +g112861 +S'entry' +p112863 +tp112864 +a(g112861 +g112863 +S'from' +p112865 +tp112866 +a(g112863 +g112865 +S'the' +p112867 +tp112868 +a(g112865 +g112867 +S'1839' +p112869 +tp112870 +a(g112867 +g112869 +S'royal' +p112871 +tp112872 +a(g112869 +g112871 +S'academy' +p112873 +tp112874 +a(g112871 +g112873 +S'exhibition,' +p112875 +tp112876 +a(g112873 +g112875 +S'depicted' +p112877 +tp112878 +a(g112875 +g112877 +S'the' +p112879 +tp112880 +a(g112877 +g112879 +S'moment' +p112881 +tp112882 +a(g112879 +g112881 +S'when' +p112883 +tp112884 +a(g112881 +g112883 +S'pluto’s' +p112885 +tp112886 +a(g112883 +g112885 +S'fiery' +p112887 +tp112888 +a(g112885 +g112887 +S'chariot' +p112889 +tp112890 +a(g112887 +g112889 +S'erupts' +p112891 +tp112892 +a(g112889 +g112891 +S'earthward,' +p112893 +tp112894 +a(g112891 +g112893 +S'burning' +p112895 +tp112896 +a(g112893 +g112895 +S'the' +p112897 +tp112898 +a(g112895 +g112897 +S'meadow' +p112899 +tp112900 +a(g112897 +g112899 +S'and' +p112901 +tp112902 +a(g112899 +g112901 +S'terrifying' +p112903 +tp112904 +a(g112901 +g112903 +S'proserpine’s' +p112905 +tp112906 +a(g112903 +g112905 +S'attendants.' +p112907 +tp112908 +a(g112905 +g112907 +S'the' +p112909 +tp112910 +a(g112907 +g112909 +S'setting,' +p112911 +tp112912 +a(g112909 +g112911 +S'equally' +p112913 +tp112914 +a(g112911 +g112913 +S'dramatic,' +p112915 +tp112916 +a(g112913 +g112915 +S'is' +p112917 +tp112918 +a(g112915 +g112917 +S'a' +p112919 +tp112920 +a(g112917 +g112919 +S'fantasy' +p112921 +tp112922 +a(g112919 +g112921 +S'based' +p112923 +tp112924 +a(g112921 +g112923 +S'upon' +p112925 +tp112926 +a(g112923 +g112925 +S'the' +p112927 +tp112928 +a(g112925 +g112927 +S'hills,' +p112929 +tp112930 +a(g112927 +g112929 +S'gorges,' +p112931 +tp112932 +a(g112929 +g112931 +S'waterfalls,' +p112933 +tp112934 +a(g112931 +g112933 +S'and' +p112935 +tp112936 +a(g112933 +g112935 +S'ruins' +p112937 +tp112938 +a(g112935 +g112937 +S'at' +p112939 +tp112940 +a(g112937 +g112939 +S'tivoli,' +p112941 +tp112942 +a(g112939 +g112941 +S'an' +p112943 +tp112944 +a(g112941 +g112943 +S'ancient' +p112945 +tp112946 +a(g112943 +g112945 +S'village' +p112947 +tp112948 +a(g112945 +g112947 +S'near' +p112949 +tp112950 +a(g112947 +g112949 +S'rome.' +p112951 +tp112952 +a(g112949 +g112951 +S'this' +p112953 +tp112954 +a(g112951 +g112953 +S'brilliantly' +p112955 +tp112956 +a(g112953 +g112955 +S'colored,' +p112957 +tp112958 +a(g112955 +g112957 +S'richly' +p112959 +tp112960 +a(g112957 +g112959 +S'decorated' +p112961 +tp112962 +a(g112959 +g112961 +S'circular' +p112963 +tp112964 +a(g112961 +g112963 +S'panel' +p112965 +tp112966 +a(g112963 +g112965 +S'presents' +p112967 +tp112968 +a(g112965 +g112967 +S'a' +p112969 +tp112970 +a(g112967 +g112969 +S'splendid' +p112971 +tp112972 +a(g112969 +g112971 +S'vision' +p112973 +tp112974 +a(g112971 +g112973 +S'of' +p112975 +tp112976 +a(g112973 +g112975 +S'the' +p112977 +tp112978 +a(g112975 +g112977 +S'arrival' +p112979 +tp112980 +a(g112977 +g112979 +S'of' +p112981 +tp112982 +a(g112979 +g112981 +S'the' +p112983 +tp112984 +a(g112981 +g112983 +S'magi,' +p112985 +tp112986 +a(g112983 +g112985 +S'accompanied' +p112987 +tp112988 +a(g112985 +g112987 +S'by' +p112989 +tp112990 +a(g112987 +g112989 +S'a' +p112991 +tp112992 +a(g112989 +g112991 +S'courtly' +p112993 +tp112994 +a(g112991 +g112993 +S'entourage.' +p112995 +tp112996 +a(g112993 +g112995 +S'a' +p112997 +tp112998 +a(g112995 +g112997 +S'1492' +p112999 +tp113000 +a(g112997 +g112999 +S'inventory' +p113001 +tp113002 +a(g112999 +g113001 +S'of' +p113003 +tp113004 +a(g113001 +g113003 +S'lorenzo' +p113005 +tp113006 +a(g113003 +g113005 +S"de'" +p113007 +tp113008 +a(g113005 +g113007 +S"medici's" +p113009 +tp113010 +a(g113007 +g113009 +S'estate' +p113011 +tp113012 +a(g113009 +g113011 +S'possibly' +p113013 +tp113014 +a(g113011 +g113013 +S'identifies' +p113015 +tp113016 +a(g113013 +g113015 +S'this' +p113017 +tp113018 +a(g113015 +g113017 +S'picture' +p113019 +tp113020 +a(g113017 +g113019 +S'as' +p113021 +tp113022 +a(g113019 +g113021 +S'the' +p113023 +tp113024 +a(g113021 +g113023 +S'most' +p113025 +tp113026 +a(g113023 +g113025 +S'valuable' +p113027 +tp113028 +a(g113025 +g113027 +S'in' +p113029 +tp113030 +a(g113027 +g113029 +S'the' +p113031 +tp113032 +a(g113029 +g113031 +S'collection' +p113033 +tp113034 +a(g113031 +g113033 +S'of' +p113035 +tp113036 +a(g113033 +g113035 +S'the' +p113037 +tp113038 +a(g113035 +g113037 +S'powerful' +p113039 +tp113040 +a(g113037 +g113039 +S'florentine' +p113041 +tp113042 +a(g113039 +g113041 +S'family,' +p113043 +tp113044 +a(g113041 +g113043 +S'and' +p113045 +tp113046 +a(g113043 +g113045 +S'attributes' +p113047 +tp113048 +a(g113045 +g113047 +S'it' +p113049 +tp113050 +a(g113047 +g113049 +S'to' +p113051 +tp113052 +a(g113049 +g113051 +S'fra' +p113053 +tp113054 +a(g113051 +g113053 +S'angelico.' +p113055 +tp113056 +a(g113053 +g113055 +S'the' +p113057 +tp113058 +a(g113055 +g113057 +S'fra' +p113059 +tp113060 +a(g113057 +g113059 +S'angelico' +p113061 +tp113062 +a(g113059 +g113061 +S'was' +p113063 +tp113064 +a(g113061 +g113063 +S'a' +p113065 +tp113066 +a(g113063 +g113065 +S'dominican' +p113067 +tp113068 +a(g113065 +g113067 +S'known' +p113069 +tp113070 +a(g113067 +g113069 +S'for' +p113071 +tp113072 +a(g113069 +g113071 +S'his' +p113073 +tp113074 +a(g113071 +g113073 +S'great' +p113075 +tp113076 +a(g113073 +g113075 +S'monastic' +p113077 +tp113078 +a(g113075 +g113077 +S'devotion;' +p113079 +tp113080 +a(g113077 +g113079 +S'his' +p113081 +tp113082 +a(g113079 +g113081 +S'saintly' +p113083 +tp113084 +a(g113081 +g113083 +S'deportment' +p113085 +tp113086 +a(g113083 +g113085 +S'is' +p113087 +tp113088 +a(g113085 +g113087 +S'mirrored' +p113089 +tp113090 +a(g113087 +g113089 +S'in' +p113091 +tp113092 +a(g113089 +g113091 +S'the' +p113093 +tp113094 +a(g113091 +g113093 +S'quiet' +p113095 +tp113096 +a(g113093 +g113095 +S'piety' +p113097 +tp113098 +a(g113095 +g113097 +S'of' +p113099 +tp113100 +a(g113097 +g113099 +S'his' +p113101 +tp113102 +a(g113099 +g113101 +S'paintings.' +p113103 +tp113104 +a(g113101 +g113103 +S'the' +p113105 +tp113106 +a(g113103 +g113105 +S'representation' +p113107 +tp113108 +a(g113105 +g113107 +S'of' +p113109 +tp113110 +a(g113107 +g113109 +S'the' +p113111 +tp113112 +a(g113109 +g113111 +S'virgin' +p113113 +tp113114 +a(g113111 +g113113 +S'mary' +p113115 +tp113116 +a(g113113 +g113115 +S'here' +p113117 +tp113118 +a(g113115 +g113117 +S'characterizes' +p113119 +tp113120 +a(g113117 +g113119 +S'his' +p113121 +tp113122 +a(g113119 +g113121 +S'style' +p113123 +tp113124 +a(g113121 +g113123 +S'in' +p113125 +tp113126 +a(g113123 +g113125 +S'the' +p113127 +tp113128 +a(g113125 +g113127 +S'pure,' +p113129 +tp113130 +a(g113127 +g113129 +S'simple' +p113131 +tp113132 +a(g113129 +g113131 +S'form' +p113133 +tp113134 +a(g113131 +g113133 +S'of' +p113135 +tp113136 +a(g113133 +g113135 +S'her' +p113137 +tp113138 +a(g113135 +g113137 +S'head' +p113139 +tp113140 +a(g113137 +g113139 +S'and' +p113141 +tp113142 +a(g113139 +g113141 +S'the' +p113143 +tp113144 +a(g113141 +g113143 +S'gentle' +p113145 +tp113146 +a(g113143 +g113145 +S'refinement' +p113147 +tp113148 +a(g113145 +g113147 +S'of' +p113149 +tp113150 +a(g113147 +g113149 +S'her' +p113151 +tp113152 +a(g113149 +g113151 +S'features.' +p113153 +tp113154 +a(g113151 +g113153 +S'fra' +p113155 +tp113156 +a(g113153 +g113155 +S"filippo's" +p113157 +tp113158 +a(g113155 +g113157 +S'earthy' +p113159 +tp113160 +a(g113157 +g113159 +S'style' +p113161 +tp113162 +a(g113159 +g113161 +S'appeals' +p113163 +tp113164 +a(g113161 +g113163 +S'to' +p113165 +tp113166 +a(g113163 +g113165 +S'the' +p113167 +tp113168 +a(g113165 +g113167 +S'viewer' +p113169 +tp113170 +a(g113167 +g113169 +S'in' +p113171 +tp113172 +a(g113169 +g113171 +S'the' +p113173 +tp113174 +a(g113171 +g113173 +S'portrayal' +p113175 +tp113176 +a(g113173 +g113175 +S'of' +p113177 +tp113178 +a(g113175 +g113177 +S'massive' +p113179 +tp113180 +a(g113177 +g113179 +S'forms' +p113181 +tp113182 +a(g113179 +g113181 +S'and' +p113183 +tp113184 +a(g113181 +g113183 +S'well–articulated' +p113185 +tp113186 +a(g113183 +g113185 +S'figures.' +p113187 +tp113188 +a(g113185 +g113187 +S'in' +p113189 +tp113190 +a(g113187 +g113189 +S'the' +p113191 +tp113192 +a(g113189 +g113191 +S'while' +p113193 +tp113194 +a(g113191 +g113193 +S'several' +p113195 +tp113196 +a(g113193 +g113195 +S'elements' +p113197 +tp113198 +a(g113195 +g113197 +S'of' +p113199 +tp113200 +a(g113197 +g113199 +S'the' +p113201 +tp113202 +a(g113199 +g113201 +S'painting' +p113203 +tp113204 +a(g113201 +g113203 +S'can' +p113205 +tp113206 +a(g113203 +g113205 +S'be' +p113207 +tp113208 +a(g113205 +g113207 +S'seen' +p113209 +tp113210 +a(g113207 +g113209 +S'as' +p113211 +tp113212 +a(g113209 +g113211 +S'symbolic—for' +p113213 +tp113214 +a(g113211 +g113213 +S'example,' +p113215 +tp113216 +a(g113213 +g113215 +S'the' +p113217 +tp113218 +a(g113215 +g113217 +S'peacock' +p113219 +tp113220 +a(g113217 +g113219 +S'was' +p113221 +tp113222 +a(g113219 +g113221 +S'considered' +p113223 +tp113224 +a(g113221 +g113223 +S'a' +p113225 +tp113226 +a(g113223 +g113225 +S'symbol' +p113227 +tp113228 +a(g113225 +g113227 +S'of' +p113229 +tp113230 +a(g113227 +g113229 +S'immortality—the' +p113231 +tp113232 +a(g113229 +g113231 +S'a' +p113233 +tp113234 +a(g113231 +g113233 +S'contract' +p113235 +tp113236 +a(g113233 +g113235 +S'for' +p113237 +tp113238 +a(g113235 +g113237 +S'an' +p113239 +tp113240 +a(g113237 +g113239 +S'altarpiece,' +p113241 +tp113242 +a(g113239 +g113241 +S'executed' +p113243 +tp113244 +a(g113241 +g113243 +S'between' +p113245 +tp113246 +a(g113243 +g113245 +S'the' +p113247 +tp113248 +a(g113245 +g113247 +S'artist' +p113249 +tp113250 +a(g113247 +g113249 +S'and' +p113251 +tp113252 +a(g113249 +g113251 +S'the' +p113253 +tp113254 +a(g113251 +g113253 +S'confraternity' +p113255 +tp113256 +a(g113253 +g113255 +S'of' +p113257 +tp113258 +a(g113255 +g113257 +S'the' +p113259 +tp113260 +a(g113257 +g113259 +S'purification' +p113261 +tp113262 +a(g113259 +g113261 +S'of' +p113263 +tp113264 +a(g113261 +g113263 +S'the' +p113265 +tp113266 +a(g113263 +g113265 +S'virgin,' +p113267 +tp113268 +a(g113265 +g113267 +S'gives' +p113269 +tp113270 +a(g113267 +g113269 +S'explicit' +p113271 +tp113272 +a(g113269 +g113271 +S'instructions.' +p113273 +tp113274 +a(g113271 +g113273 +S'the' +p113275 +tp113276 +a(g113273 +g113275 +S'artist' +p113277 +tp113278 +a(g113275 +g113277 +S'"is' +p113279 +tp113280 +a(g113277 +g113279 +S'obligated' +p113281 +tp113282 +a(g113279 +g113281 +S'to' +p113283 +tp113284 +a(g113281 +g113283 +S'apply' +p113285 +tp113286 +a(g113283 +g113285 +S'himself' +p113287 +tp113288 +a(g113285 +g113287 +S'to' +p113289 +tp113290 +a(g113287 +g113289 +S'this' +p113291 +tp113292 +a(g113289 +g113291 +S'painting' +p113293 +tp113294 +a(g113291 +g113293 +S'so' +p113295 +tp113296 +a(g113293 +g113295 +S'that' +p113297 +tp113298 +a(g113295 +g113297 +S'the' +p113299 +tp113300 +a(g113297 +g113299 +S'said' +p113301 +tp113302 +a(g113299 +g113301 +S'picture' +p113303 +tp113304 +a(g113301 +g113303 +S'will' +p113305 +tp113306 +a(g113303 +g113305 +S'excel,' +p113307 +tp113308 +a(g113305 +g113307 +S'or' +p113309 +tp113310 +a(g113307 +g113309 +S'at' +p113311 +tp113312 +a(g113309 +g113311 +S'least' +p113313 +tp113314 +a(g113311 +g113313 +S'favorably' +p113315 +tp113316 +a(g113313 +g113315 +S'compare' +p113317 +tp113318 +a(g113315 +g113317 +S'with,' +p113319 +tp113320 +a(g113317 +g113319 +S'every' +p113321 +tp113322 +a(g113319 +g113321 +S'good' +p113323 +tp113324 +a(g113321 +g113323 +S'picture' +p113325 +tp113326 +a(g113323 +g113325 +S'made' +p113327 +tp113328 +a(g113325 +g113327 +S'thus' +p113329 +tp113330 +a(g113327 +g113329 +S'far' +p113331 +tp113332 +a(g113329 +g113331 +S'by' +p113333 +tp113334 +a(g113331 +g113333 +S'[him]."' +p113335 +tp113336 +a(g113333 +g113335 +S'the' +p113337 +tp113338 +a(g113335 +g113337 +S'appearance' +p113339 +tp113340 +a(g113337 +g113339 +S'of' +p113341 +tp113342 +a(g113339 +g113341 +S'the' +p113343 +tp113344 +a(g113341 +g113343 +S'central' +p113345 +tp113346 +a(g113343 +g113345 +S'section' +p113347 +tp113348 +a(g113345 +g113347 +S'is' +p113349 +tp113350 +a(g113347 +g113349 +S'carefully' +p113351 +tp113352 +a(g113349 +g113351 +S'prescribed:' +p113353 +tp113354 +a(g113351 +g113353 +S'the' +p113355 +tp113356 +a(g113353 +g113355 +S'virgin' +p113357 +tp113358 +a(g113355 +g113357 +S'is' +p113359 +tp113360 +a(g113357 +g113359 +S'to' +p113361 +tp113362 +a(g113359 +g113361 +S'be' +p113363 +tp113364 +a(g113361 +g113363 +S'flanked' +p113365 +tp113366 +a(g113363 +g113365 +S'by' +p113367 +tp113368 +a(g113365 +g113367 +S'john' +p113369 +tp113370 +a(g113367 +g113369 +S'the' +p113371 +tp113372 +a(g113369 +g113371 +S'baptist' +p113373 +tp113374 +a(g113371 +g113373 +S'and' +p113375 +tp113376 +a(g113373 +g113375 +S'five' +p113377 +tp113378 +a(g113375 +g113377 +S'other' +p113379 +tp113380 +a(g113377 +g113379 +S'named' +p113381 +tp113382 +a(g113379 +g113381 +S'saints' +p113383 +tp113384 +a(g113381 +g113383 +S'"with' +p113385 +tp113386 +a(g113383 +g113385 +S'all' +p113387 +tp113388 +a(g113385 +g113387 +S'the' +p113389 +tp113390 +a(g113387 +g113389 +S'usual' +p113391 +tp113392 +a(g113389 +g113391 +S'attributes."' +p113393 +tp113394 +a(g113391 +g113393 +S'gozzoli' +p113395 +tp113396 +a(g113393 +g113395 +S'must' +p113397 +tp113398 +a(g113395 +g113397 +S'also' +p113399 +tp113400 +a(g113397 +g113399 +S'"with' +p113401 +tp113402 +a(g113399 +g113401 +S'his' +p113403 +tp113404 +a(g113401 +g113403 +S'own' +p113405 +tp113406 +a(g113403 +g113405 +S'hand...paint' +p113407 +tp113408 +a(g113405 +g113407 +S'at' +p113409 +tp113410 +a(g113407 +g113409 +S'the' +p113411 +tp113412 +a(g113409 +g113411 +S'bottom,' +p113413 +tp113414 +a(g113411 +g113413 +S'that' +p113415 +tp113416 +a(g113413 +g113415 +S'is' +p113417 +tp113418 +a(g113415 +g113417 +S'in' +p113419 +tp113420 +a(g113417 +g113419 +S'the' +p113421 +tp113422 +a(g113419 +g113421 +S'this' +p113423 +tp113424 +a(g113421 +g113423 +S'is' +p113425 +tp113426 +a(g113423 +g113425 +S'one' +p113427 +tp113428 +a(g113425 +g113427 +S'of' +p113429 +tp113430 +a(g113427 +g113429 +S'those' +p113431 +tp113432 +a(g113429 +g113431 +S'knowledge' +p113433 +tp113434 +a(g113431 +g113433 +S'of' +p113435 +tp113436 +a(g113433 +g113435 +S"giorgione's" +p113437 +tp113438 +a(g113435 +g113437 +S'life' +p113439 +tp113440 +a(g113437 +g113439 +S'and' +p113441 +tp113442 +a(g113439 +g113441 +S'career' +p113443 +tp113444 +a(g113441 +g113443 +S'is' +p113445 +tp113446 +a(g113443 +g113445 +S'in' +p113447 +tp113448 +a(g113445 +g113447 +S'inverse' +p113449 +tp113450 +a(g113447 +g113449 +S'proportion' +p113451 +tp113452 +a(g113449 +g113451 +S'to' +p113453 +tp113454 +a(g113451 +g113453 +S'his' +p113455 +tp113456 +a(g113453 +g113455 +S'importance.' +p113457 +tp113458 +a(g113455 +g113457 +S'he' +p113459 +tp113460 +a(g113457 +g113459 +S'remains' +p113461 +tp113462 +a(g113459 +g113461 +S'one' +p113463 +tp113464 +a(g113461 +g113463 +S'of' +p113465 +tp113466 +a(g113463 +g113465 +S'the' +p113467 +tp113468 +a(g113465 +g113467 +S'least' +p113469 +tp113470 +a(g113467 +g113469 +S'documented' +p113471 +tp113472 +a(g113469 +g113471 +S'and' +p113473 +tp113474 +a(g113471 +g113473 +S'most' +p113475 +tp113476 +a(g113473 +g113475 +S'influential' +p113477 +tp113478 +a(g113475 +g113477 +S'of' +p113479 +tp113480 +a(g113477 +g113479 +S'all' +p113481 +tp113482 +a(g113479 +g113481 +S'renaissance' +p113483 +tp113484 +a(g113481 +g113483 +S'painters.' +p113485 +tp113486 +a(g113483 +g113485 +S'a' +p113487 +tp113488 +a(g113485 +g113487 +S'single' +p113489 +tp113490 +a(g113487 +g113489 +S'signed' +p113491 +tp113492 +a(g113489 +g113491 +S'painting' +p113493 +tp113494 +a(g113491 +g113493 +S'exists.' +p113495 +tp113496 +a(g113493 +g113495 +S'beyond' +p113497 +tp113498 +a(g113495 +g113497 +S'that,' +p113499 +tp113500 +a(g113497 +g113499 +S'scholars' +p113501 +tp113502 +a(g113499 +g113501 +S'must' +p113503 +tp113504 +a(g113501 +g113503 +S'attempt' +p113505 +tp113506 +a(g113503 +g113505 +S'to' +p113507 +tp113508 +a(g113505 +g113507 +S'identify' +p113509 +tp113510 +a(g113507 +g113509 +S'his' +p113511 +tp113512 +a(g113509 +g113511 +S'works' +p113513 +tp113514 +a(g113511 +g113513 +S'on' +p113515 +tp113516 +a(g113513 +g113515 +S'the' +p113517 +tp113518 +a(g113515 +g113517 +S'basis' +p113519 +tp113520 +a(g113517 +g113519 +S'of' +p113521 +tp113522 +a(g113519 +g113521 +S'style' +p113523 +tp113524 +a(g113521 +g113523 +S'and' +p113525 +tp113526 +a(g113523 +g113525 +S'on' +p113527 +tp113528 +a(g113525 +g113527 +S'sixteenth-century' +p113529 +tp113530 +a(g113527 +g113529 +S'household' +p113531 +tp113532 +a(g113529 +g113531 +S'inventories,' +p113533 +tp113534 +a(g113531 +g113533 +S'which' +p113535 +tp113536 +a(g113533 +g113535 +S'provide' +p113537 +tp113538 +a(g113535 +g113537 +S'only' +p113539 +tp113540 +a(g113537 +g113539 +S'brief' +p113541 +tp113542 +a(g113539 +g113541 +S'indications' +p113543 +tp113544 +a(g113541 +g113543 +S'of' +p113545 +tp113546 +a(g113543 +g113545 +S'subject' +p113547 +tp113548 +a(g113545 +g113547 +S'matter.' +p113549 +tp113550 +a(g113547 +g113549 +S'many' +p113551 +tp113552 +a(g113549 +g113551 +S'of' +p113553 +tp113554 +a(g113551 +g113553 +S"giorgione's" +p113555 +tp113556 +a(g113553 +g113555 +S'paintings' +p113557 +tp113558 +a(g113555 +g113557 +S'were' +p113559 +tp113560 +a(g113557 +g113559 +S'made' +p113561 +tp113562 +a(g113559 +g113561 +S'for' +p113563 +tp113564 +a(g113561 +g113563 +S'private' +p113565 +tp113566 +a(g113563 +g113565 +S'patrons,' +p113567 +tp113568 +a(g113565 +g113567 +S'so' +p113569 +tp113570 +a(g113567 +g113569 +S'that' +p113571 +tp113572 +a(g113569 +g113571 +S'records,' +p113573 +tp113574 +a(g113571 +g113573 +S'which' +p113575 +tp113576 +a(g113573 +g113575 +S'typically' +p113577 +tp113578 +a(g113575 +g113577 +S'document' +p113579 +tp113580 +a(g113577 +g113579 +S'large' +p113581 +tp113582 +a(g113579 +g113581 +S'civic' +p113583 +tp113584 +a(g113581 +g113583 +S'and' +p113585 +tp113586 +a(g113583 +g113585 +S'religious' +p113587 +tp113588 +a(g113585 +g113587 +S'commissions,' +p113589 +tp113590 +a(g113587 +g113589 +S'are' +p113591 +tp113592 +a(g113589 +g113591 +S'not' +p113593 +tp113594 +a(g113591 +g113593 +S'available.' +p113595 +tp113596 +a(g113593 +g113595 +S'difficulty' +p113597 +tp113598 +a(g113595 +g113597 +S'also' +p113599 +tp113600 +a(g113597 +g113599 +S'arises' +p113601 +tp113602 +a(g113599 +g113601 +S'in' +p113603 +tp113604 +a(g113601 +g113603 +S'distinguishing' +p113605 +tp113606 +a(g113603 +g113605 +S'the' +p113607 +tp113608 +a(g113605 +g113607 +S'early' +p113609 +tp113610 +a(g113607 +g113609 +S'work' +p113611 +tp113612 +a(g113609 +g113611 +S'of' +p113613 +tp113614 +a(g113611 +g113613 +S'giorgione' +p113615 +tp113616 +a(g113613 +g113615 +S'from' +p113617 +tp113618 +a(g113615 +g113617 +S'that' +p113619 +tp113620 +a(g113617 +g113619 +S'of' +p113621 +tp113622 +a(g113619 +g113621 +S'near' +p113623 +tp113624 +a(g113621 +g113623 +S'contemporaries' +p113625 +tp113626 +a(g113623 +g113625 +S'like' +p113627 +tp113628 +a(g113625 +g113627 +S'this' +p113629 +tp113630 +a(g113627 +g113629 +S'painting' +p113631 +tp113632 +a(g113629 +g113631 +S'must' +p113633 +tp113634 +a(g113631 +g113633 +S'be' +p113635 +tp113636 +a(g113633 +g113635 +S'one' +p113637 +tp113638 +a(g113635 +g113637 +S'of' +p113639 +tp113640 +a(g113637 +g113639 +S'those' +p113641 +tp113642 +a(g113639 +g113641 +S'early' +p113643 +tp113644 +a(g113641 +g113643 +S'works.' +p113645 +tp113646 +a(g113643 +g113645 +S'the' +p113647 +tp113648 +a(g113645 +g113647 +S'figures,' +p113649 +tp113650 +a(g113647 +g113649 +S'especially' +p113651 +tp113652 +a(g113649 +g113651 +S'the' +p113653 +tp113654 +a(g113651 +g113653 +S'aged,' +p113655 +tp113656 +a(g113653 +g113655 +S'bearded' +p113657 +tp113658 +a(g113655 +g113657 +S'joseph,' +p113659 +tp113660 +a(g113657 +g113659 +S'closely' +p113661 +tp113662 +a(g113659 +g113661 +S'resemble' +p113663 +tp113664 +a(g113661 +g113663 +S'those' +p113665 +tp113666 +a(g113663 +g113665 +S'of' +p113667 +tp113668 +a(g113665 +g113667 +S'bellini.' +p113669 +tp113670 +a(g113667 +g113669 +S'joseph' +p113671 +tp113672 +a(g113669 +g113671 +S'sits' +p113673 +tp113674 +a(g113671 +g113673 +S'on' +p113675 +tp113676 +a(g113673 +g113675 +S'an' +p113677 +tp113678 +a(g113675 +g113677 +S'unfinished' +p113679 +tp113680 +a(g113677 +g113679 +S'wall,' +p113681 +tp113682 +a(g113679 +g113681 +S'while' +p113683 +tp113684 +a(g113681 +g113683 +S'mother' +p113685 +tp113686 +a(g113683 +g113685 +S'and' +p113687 +tp113688 +a(g113685 +g113687 +S'child' +p113689 +tp113690 +a(g113687 +g113689 +S'are' +p113691 +tp113692 +a(g113689 +g113691 +S'seated' +p113693 +tp113694 +a(g113691 +g113693 +S'on' +p113695 +tp113696 +a(g113693 +g113695 +S'a' +p113697 +tp113698 +a(g113695 +g113697 +S'humble' +p113699 +tp113700 +a(g113697 +g113699 +S'rock' +p113701 +tp113702 +a(g113699 +g113701 +S'that' +p113703 +tp113704 +a(g113701 +g113703 +S'emphasizes' +p113705 +tp113706 +a(g113703 +g113705 +S"christ's" +p113707 +tp113708 +a(g113705 +g113707 +S'humility' +p113709 +tp113710 +a(g113707 +g113709 +S'and' +p113711 +tp113712 +a(g113709 +g113711 +S'humanity.' +p113713 +tp113714 +a(g113711 +g113713 +S'the' +p113715 +tp113716 +a(g113713 +g113715 +S'symbolism' +p113717 +tp113718 +a(g113715 +g113717 +S'of' +p113719 +tp113720 +a(g113717 +g113719 +S'the' +p113721 +tp113722 +a(g113719 +g113721 +S'unfinished' +p113723 +tp113724 +a(g113721 +g113723 +S'wall' +p113725 +tp113726 +a(g113723 +g113725 +S'also' +p113727 +tp113728 +a(g113725 +g113727 +S'refers' +p113729 +tp113730 +a(g113727 +g113729 +S'to' +p113731 +tp113732 +a(g113729 +g113731 +S'the' +p113733 +tp113734 +a(g113731 +g113733 +S'incomplete' +p113735 +tp113736 +a(g113733 +g113735 +S'and' +p113737 +tp113738 +a(g113735 +g113737 +S'imperfect' +p113739 +tp113740 +a(g113737 +g113739 +S'era' +p113741 +tp113742 +a(g113739 +g113741 +S'before' +p113743 +tp113744 +a(g113741 +g113743 +S"christ's" +p113745 +tp113746 +a(g113743 +g113745 +S'birth.' +p113747 +tp113748 +a(g113745 +g113747 +S'the' +p113749 +tp113750 +a(g113747 +g113749 +S'precision' +p113751 +tp113752 +a(g113749 +g113751 +S'of' +p113753 +tp113754 +a(g113751 +g113753 +S'detail,' +p113755 +tp113756 +a(g113753 +g113755 +S'particularly' +p113757 +tp113758 +a(g113755 +g113757 +S'of' +p113759 +tp113760 +a(g113757 +g113759 +S'the' +p113761 +tp113762 +a(g113759 +g113761 +S'plants' +p113763 +tp113764 +a(g113761 +g113763 +S'and' +p113765 +tp113766 +a(g113763 +g113765 +S'rocks' +p113767 +tp113768 +a(g113765 +g113767 +S'in' +p113769 +tp113770 +a(g113767 +g113769 +S'the' +p113771 +tp113772 +a(g113769 +g113771 +S'foreground,' +p113773 +tp113774 +a(g113771 +g113773 +S'suggests' +p113775 +tp113776 +a(g113773 +g113775 +S'the' +p113777 +tp113778 +a(g113775 +g113777 +S'influence' +p113779 +tp113780 +a(g113777 +g113779 +S'of' +p113781 +tp113782 +a(g113779 +g113781 +S'paintings' +p113783 +tp113784 +a(g113781 +g113783 +S'from' +p113785 +tp113786 +a(g113783 +g113785 +S'northern' +p113787 +tp113788 +a(g113785 +g113787 +S'europe,' +p113789 +tp113790 +a(g113787 +g113789 +S'which' +p113791 +tp113792 +a(g113789 +g113791 +S'could' +p113793 +tp113794 +a(g113791 +g113793 +S'be' +p113795 +tp113796 +a(g113793 +g113795 +S'seen' +p113797 +tp113798 +a(g113795 +g113797 +S'in' +p113799 +tp113800 +a(g113797 +g113799 +S'venice' +p113801 +tp113802 +a(g113799 +g113801 +S'in' +p113803 +tp113804 +a(g113801 +g113803 +S'large' +p113805 +tp113806 +a(g113803 +g113805 +S'numbers' +p113807 +tp113808 +a(g113805 +g113807 +S'and' +p113809 +tp113810 +a(g113807 +g113809 +S'were' +p113811 +tp113812 +a(g113809 +g113811 +S'also' +p113813 +tp113814 +a(g113811 +g113813 +S'known' +p113815 +tp113816 +a(g113813 +g113815 +S'through' +p113817 +tp113818 +a(g113815 +g113817 +S'prints.' +p113819 +tp113820 +a(g113817 +g113819 +S'the' +p113821 +tp113822 +a(g113819 +g113821 +S'story' +p113823 +tp113824 +a(g113821 +g113823 +S'of' +p113825 +tp113826 +a(g113823 +g113825 +S'the' +p113827 +tp113828 +a(g113825 +g113827 +S'wise' +p113829 +tp113830 +a(g113827 +g113829 +S'and' +p113831 +tp113832 +a(g113829 +g113831 +S'foolish' +p113833 +tp113834 +a(g113831 +g113833 +S'virgins' +p113835 +tp113836 +a(g113833 +g113835 +S'is' +p113837 +tp113838 +a(g113835 +g113837 +S'told' +p113839 +tp113840 +a(g113837 +g113839 +S'in' +p113841 +tp113842 +a(g113839 +g113841 +S'the' +p113843 +tp113844 +a(g113841 +g113843 +S'biblical' +p113845 +tp113846 +a(g113843 +g113845 +S'book' +p113847 +tp113848 +a(g113845 +g113847 +S'of' +p113849 +tp113850 +a(g113847 +g113849 +S'matthew.' +p113851 +tp113852 +a(g113849 +g113851 +S'preparing' +p113853 +tp113854 +a(g113851 +g113853 +S'for' +p113855 +tp113856 +a(g113853 +g113855 +S'marriage,' +p113857 +tp113858 +a(g113855 +g113857 +S'five' +p113859 +tp113860 +a(g113857 +g113859 +S'wise' +p113861 +tp113862 +a(g113859 +g113861 +S'virgins' +p113863 +tp113864 +a(g113861 +g113863 +S'carefully' +p113865 +tp113866 +a(g113863 +g113865 +S'provided' +p113867 +tp113868 +a(g113865 +g113867 +S'oil' +p113869 +tp113870 +a(g113867 +g113869 +S'for' +p113871 +tp113872 +a(g113869 +g113871 +S'their' +p113873 +tp113874 +a(g113871 +g113873 +S'lamps' +p113875 +tp113876 +a(g113873 +g113875 +S'and' +p113877 +tp113878 +a(g113875 +g113877 +S'awaited' +p113879 +tp113880 +a(g113877 +g113879 +S'the' +p113881 +tp113882 +a(g113879 +g113881 +S'bridegroom.' +p113883 +tp113884 +a(g113881 +g113883 +S'five' +p113885 +tp113886 +a(g113883 +g113885 +S'foolish' +p113887 +tp113888 +a(g113885 +g113887 +S'virgins,' +p113889 +tp113890 +a(g113887 +g113889 +S'on' +p113891 +tp113892 +a(g113889 +g113891 +S'the' +p113893 +tp113894 +a(g113891 +g113893 +S'other' +p113895 +tp113896 +a(g113893 +g113895 +S'hand,' +p113897 +tp113898 +a(g113895 +g113897 +S'missed' +p113899 +tp113900 +a(g113897 +g113899 +S'the' +p113901 +tp113902 +a(g113899 +g113901 +S'bridegroom' +p113903 +tp113904 +a(g113901 +g113903 +S'when' +p113905 +tp113906 +a(g113903 +g113905 +S'they' +p113907 +tp113908 +a(g113905 +g113907 +S'left' +p113909 +tp113910 +a(g113907 +g113909 +S'their' +p113911 +tp113912 +a(g113909 +g113911 +S'homes' +p113913 +tp113914 +a(g113911 +g113913 +S'in' +p113915 +tp113916 +a(g113913 +g113915 +S'search' +p113917 +tp113918 +a(g113915 +g113917 +S'of' +p113919 +tp113920 +a(g113917 +g113919 +S'more' +p113921 +tp113922 +a(g113919 +g113921 +S'oil.' +p113923 +tp113924 +a(g113921 +g113923 +S'the' +p113925 +tp113926 +a(g113923 +g113925 +S'parable' +p113927 +tp113928 +a(g113925 +g113927 +S'was' +p113929 +tp113930 +a(g113927 +g113929 +S'often' +p113931 +tp113932 +a(g113929 +g113931 +S'interpreted' +p113933 +tp113934 +a(g113931 +g113933 +S'in' +p113935 +tp113936 +a(g113933 +g113935 +S'terms' +p113937 +tp113938 +a(g113935 +g113937 +S'of' +p113939 +tp113940 +a(g113937 +g113939 +S'the' +p113941 +tp113942 +a(g113939 +g113941 +S'last' +p113943 +tp113944 +a(g113941 +g113943 +S'judgment' +p113945 +tp113946 +a(g113943 +g113945 +S'and' +p113947 +tp113948 +a(g113945 +g113947 +S'the' +p113949 +tp113950 +a(g113947 +g113949 +S'need' +p113951 +tp113952 +a(g113949 +g113951 +S'to' +p113953 +tp113954 +a(g113951 +g113953 +S'be' +p113955 +tp113956 +a(g113953 +g113955 +S'constantly' +p113957 +tp113958 +a(g113955 +g113957 +S'prepared' +p113959 +tp113960 +a(g113957 +g113959 +S'for' +p113961 +tp113962 +a(g113959 +g113961 +S'the' +p113963 +tp113964 +a(g113961 +g113963 +S'second' +p113965 +tp113966 +a(g113963 +g113965 +S'coming.' +p113967 +tp113968 +a(g113965 +g113967 +S'otherwise' +p113969 +tp113970 +a(g113967 +g113969 +S'unusual' +p113971 +tp113972 +a(g113969 +g113971 +S'for' +p113973 +tp113974 +a(g113971 +g113973 +S'early' +p113975 +tp113976 +a(g113973 +g113975 +S'sixteenth-century' +p113977 +tp113978 +a(g113975 +g113977 +S'italy,' +p113979 +tp113980 +a(g113977 +g113979 +S'this' +p113981 +tp113982 +a(g113979 +g113981 +S'subject' +p113983 +tp113984 +a(g113981 +g113983 +S'would' +p113985 +tp113986 +a(g113983 +g113985 +S'have' +p113987 +tp113988 +a(g113985 +g113987 +S'had' +p113989 +tp113990 +a(g113987 +g113989 +S'obvious' +p113991 +tp113992 +a(g113989 +g113991 +S'significance' +p113993 +tp113994 +a(g113991 +g113993 +S'for' +p113995 +tp113996 +a(g113993 +g113995 +S'brides,' +p113997 +tp113998 +a(g113995 +g113997 +S'and' +p113999 +tp114000 +a(g113997 +g113999 +S'this' +p114001 +tp114002 +a(g113999 +g114001 +S'painting' +p114003 +tp114004 +a(g114001 +g114003 +S'is' +p114005 +tp114006 +a(g114003 +g114005 +S'possibly' +p114007 +tp114008 +a(g114005 +g114007 +S'an' +p114009 +tp114010 +a(g114007 +g114009 +S'idealized' +p114011 +tp114012 +a(g114009 +g114011 +S'portrait' +p114013 +tp114014 +a(g114011 +g114013 +S'intended' +p114015 +tp114016 +a(g114013 +g114015 +S'as' +p114017 +tp114018 +a(g114015 +g114017 +S'a' +p114019 +tp114020 +a(g114017 +g114019 +S'wedding' +p114021 +tp114022 +a(g114019 +g114021 +S'gift.' +p114023 +tp114024 +a(g114021 +g114023 +S'a' +p114025 +tp114026 +a(g114023 +g114025 +S'faint' +p114027 +tp114028 +a(g114025 +g114027 +S'inscription' +p114029 +tp114030 +a(g114027 +g114029 +S'on' +p114031 +tp114032 +a(g114029 +g114031 +S'the' +p114033 +tp114034 +a(g114031 +g114033 +S'painting' +p114035 +tp114036 +a(g114033 +g114035 +S'has' +p114037 +tp114038 +a(g114035 +g114037 +S'often' +p114039 +tp114040 +a(g114037 +g114039 +S'been' +p114041 +tp114042 +a(g114039 +g114041 +S'interpreted' +p114043 +tp114044 +a(g114041 +g114043 +S'as' +p114045 +tp114046 +a(g114043 +g114045 +S'a' +p114047 +tp114048 +a(g114045 +g114047 +S'reference' +p114049 +tp114050 +a(g114047 +g114049 +S'to' +p114051 +tp114052 +a(g114049 +g114051 +S'vittoria' +p114053 +tp114054 +a(g114051 +g114053 +S'colonna,' +p114055 +tp114056 +a(g114053 +g114055 +S'a' +p114057 +tp114058 +a(g114055 +g114057 +S'poet' +p114059 +tp114060 +a(g114057 +g114059 +S'best' +p114061 +tp114062 +a(g114059 +g114061 +S'known' +p114063 +tp114064 +a(g114061 +g114063 +S'for' +p114065 +tp114066 +a(g114063 +g114065 +S'her' +p114067 +tp114068 +a(g114065 +g114067 +S'friendship' +p114069 +tp114070 +a(g114067 +g114069 +S'with' +p114071 +tp114072 +a(g114069 +g114071 +S'michelangelo.' +p114073 +tp114074 +a(g114071 +g114073 +S'perhaps' +p114075 +tp114076 +a(g114073 +g114075 +S'the' +p114077 +tp114078 +a(g114075 +g114077 +S'painting' +p114079 +tp114080 +a(g114077 +g114079 +S'was' +p114081 +tp114082 +a(g114079 +g114081 +S'done' +p114083 +tp114084 +a(g114081 +g114083 +S'to' +p114085 +tp114086 +a(g114083 +g114085 +S'commemorate' +p114087 +tp114088 +a(g114085 +g114087 +S'her' +p114089 +tp114090 +a(g114087 +g114089 +S'wedding' +p114091 +tp114092 +a(g114089 +g114091 +S'in' +p114093 +tp114094 +a(g114091 +g114093 +S'1509.' +p114095 +tp114096 +a(g114093 +g114095 +S'several' +p114097 +tp114098 +a(g114095 +g114097 +S'seventeenth-century' +p114099 +tp114100 +a(g114097 +g114099 +S'editions' +p114101 +tp114102 +a(g114099 +g114101 +S'of' +p114103 +tp114104 +a(g114101 +g114103 +S'her' +p114105 +tp114106 +a(g114103 +g114105 +S'works' +p114107 +tp114108 +a(g114105 +g114107 +S'used' +p114109 +tp114110 +a(g114107 +g114109 +S'engravings' +p114111 +tp114112 +a(g114109 +g114111 +S'based' +p114113 +tp114114 +a(g114111 +g114113 +S'on' +p114115 +tp114116 +a(g114113 +g114115 +S'this' +p114117 +tp114118 +a(g114115 +g114117 +S'painting' +p114119 +tp114120 +a(g114117 +g114119 +S'as' +p114121 +tp114122 +a(g114119 +g114121 +S'a' +p114123 +tp114124 +a(g114121 +g114123 +S'frontispiece.' +p114125 +tp114126 +a(g114123 +g114125 +S'vittoria,' +p114127 +tp114128 +a(g114125 +g114127 +S'however,' +p114129 +tp114130 +a(g114127 +g114129 +S'lived' +p114131 +tp114132 +a(g114129 +g114131 +S'in' +p114133 +tp114134 +a(g114131 +g114133 +S'rome,' +p114135 +tp114136 +a(g114133 +g114135 +S'and' +p114137 +tp114138 +a(g114135 +g114137 +S'sebastiano' +p114139 +tp114140 +a(g114137 +g114139 +S'worked' +p114141 +tp114142 +a(g114139 +g114141 +S'in' +p114143 +tp114144 +a(g114141 +g114143 +S'venice' +p114145 +tp114146 +a(g114143 +g114145 +S'until' +p114147 +tp114148 +a(g114145 +g114147 +S'1511.' +p114149 +tp114150 +a(g114147 +g114149 +S'furthermore,' +p114151 +tp114152 +a(g114149 +g114151 +S'paintings' +p114153 +tp114154 +a(g114151 +g114153 +S'like' +p114155 +tp114156 +a(g114153 +g114155 +S'this' +p114157 +tp114158 +a(g114155 +g114157 +S'one' +p114159 +tp114160 +a(g114157 +g114159 +S'were' +p114161 +tp114162 +a(g114159 +g114161 +S'more' +p114163 +tp114164 +a(g114161 +g114163 +S'popular' +p114165 +tp114166 +a(g114163 +g114165 +S'in' +p114167 +tp114168 +a(g114165 +g114167 +S'venice' +p114169 +tp114170 +a(g114167 +g114169 +S'than' +p114171 +tp114172 +a(g114169 +g114171 +S'in' +p114173 +tp114174 +a(g114171 +g114173 +S'rome.' +p114175 +tp114176 +a(g114173 +g114175 +S'venetian' +p114177 +tp114178 +a(g114175 +g114177 +S'works' +p114179 +tp114180 +a(g114177 +g114179 +S'depicting' +p114181 +tp114182 +a(g114179 +g114181 +S'beautiful' +p114183 +tp114184 +a(g114181 +g114183 +S'young' +p114185 +tp114186 +a(g114183 +g114185 +S'women' +p114187 +tp114188 +a(g114185 +g114187 +S'with' +p114189 +tp114190 +a(g114187 +g114189 +S'locks' +p114191 +tp114192 +a(g114189 +g114191 +S'of' +p114193 +tp114194 +a(g114191 +g114193 +S'hair' +p114195 +tp114196 +a(g114193 +g114195 +S'tumbling' +p114197 +tp114198 +a(g114195 +g114197 +S'to' +p114199 +tp114200 +a(g114197 +g114199 +S'creamy' +p114201 +tp114202 +a(g114199 +g114201 +S'shoulders' +p114203 +tp114204 +a(g114201 +g114203 +S'and' +p114205 +tp114206 +a(g114203 +g114205 +S'revealing' +p114207 +tp114208 +a(g114205 +g114207 +S'necklines' +p114209 +tp114210 +a(g114207 +g114209 +S'may' +p114211 +tp114212 +a(g114209 +g114211 +S'have' +p114213 +tp114214 +a(g114211 +g114213 +S'been' +p114215 +tp114216 +a(g114213 +g114215 +S'idealized' +p114217 +tp114218 +a(g114215 +g114217 +S'portraits' +p114219 +tp114220 +a(g114217 +g114219 +S'or' +p114221 +tp114222 +a(g114219 +g114221 +S'fanciful' +p114223 +tp114224 +a(g114221 +g114223 +S'creations' +p114225 +tp114226 +a(g114223 +g114225 +S'painted' +p114227 +tp114228 +a(g114225 +g114227 +S'for' +p114229 +tp114230 +a(g114227 +g114229 +S'a' +p114231 +tp114232 +a(g114229 +g114231 +S'gentleman’s' +p114233 +tp114234 +a(g114231 +g114233 +S'private' +p114235 +tp114236 +a(g114233 +g114235 +S'enjoyment.' +p114237 +tp114238 +a(g114235 +g114237 +S'the' +p114239 +tp114240 +a(g114237 +g114239 +S'models' +p114241 +tp114242 +a(g114239 +g114241 +S'for' +p114243 +tp114244 +a(g114241 +g114243 +S'these' +p114245 +tp114246 +a(g114243 +g114245 +S'the' +p114247 +tp114248 +a(g114245 +g114247 +S'the' +p114249 +tp114250 +a(g114247 +g114249 +S'virgin,' +p114251 +tp114252 +a(g114249 +g114251 +S'saint' +p114253 +tp114254 +a(g114251 +g114253 +S'john' +p114255 +tp114256 +a(g114253 +g114255 +S'the' +p114257 +tp114258 +a(g114255 +g114257 +S'evangelist,' +p114259 +tp114260 +a(g114257 +g114259 +S'and' +p114261 +tp114262 +a(g114259 +g114261 +S'mary' +p114263 +tp114264 +a(g114261 +g114263 +S'magdalene' +p114265 +tp114266 +a(g114263 +g114265 +S'have' +p114267 +tp114268 +a(g114265 +g114267 +S'assembled' +p114269 +tp114270 +a(g114267 +g114269 +S'at' +p114271 +tp114272 +a(g114269 +g114271 +S"christ's" +p114273 +tp114274 +a(g114271 +g114273 +S'tomb' +p114275 +tp114276 +a(g114273 +g114275 +S'and' +p114277 +tp114278 +a(g114275 +g114277 +S'hold' +p114279 +tp114280 +a(g114277 +g114279 +S'up' +p114281 +tp114282 +a(g114279 +g114281 +S'his' +p114283 +tp114284 +a(g114281 +g114283 +S'gray,' +p114285 +tp114286 +a(g114283 +g114285 +S'lifeless' +p114287 +tp114288 +a(g114285 +g114287 +S'body' +p114289 +tp114290 +a(g114287 +g114289 +S'against' +p114291 +tp114292 +a(g114289 +g114291 +S'the' +p114293 +tp114294 +a(g114291 +g114293 +S'marble' +p114295 +tp114296 +a(g114293 +g114295 +S'sarcophagus.' +p114297 +tp114298 +a(g114295 +g114297 +S'behind' +p114299 +tp114300 +a(g114297 +g114299 +S'them' +p114301 +tp114302 +a(g114299 +g114301 +S'is' +p114303 +tp114304 +a(g114301 +g114303 +S'the' +p114305 +tp114306 +a(g114303 +g114305 +S'dark' +p114307 +tp114308 +a(g114305 +g114307 +S'mouth' +p114309 +tp114310 +a(g114307 +g114309 +S'of' +p114311 +tp114312 +a(g114309 +g114311 +S'the' +p114313 +tp114314 +a(g114311 +g114313 +S'rock' +p114315 +tp114316 +a(g114313 +g114315 +S'cut' +p114317 +tp114318 +a(g114315 +g114317 +S'tomb,' +p114319 +tp114320 +a(g114317 +g114319 +S'and' +p114321 +tp114322 +a(g114319 +g114321 +S'beyond' +p114323 +tp114324 +a(g114321 +g114323 +S'it' +p114325 +tp114326 +a(g114323 +g114325 +S'opens' +p114327 +tp114328 +a(g114325 +g114327 +S'a' +p114329 +tp114330 +a(g114327 +g114329 +S'verdant' +p114331 +tp114332 +a(g114329 +g114331 +S'river' +p114333 +tp114334 +a(g114331 +g114333 +S'landscape.' +p114335 +tp114336 +a(g114333 +g114335 +S'moretto' +p114337 +tp114338 +a(g114335 +g114337 +S'has' +p114339 +tp114340 +a(g114337 +g114339 +S'frozen' +p114341 +tp114342 +a(g114339 +g114341 +S'the' +p114343 +tp114344 +a(g114341 +g114343 +S'mourners' +p114345 +tp114346 +a(g114343 +g114345 +S'in' +p114347 +tp114348 +a(g114345 +g114347 +S'their' +p114349 +tp114350 +a(g114347 +g114349 +S'awkward' +p114351 +tp114352 +a(g114349 +g114351 +S'poses,' +p114353 +tp114354 +a(g114351 +g114353 +S'their' +p114355 +tp114356 +a(g114353 +g114355 +S'strain' +p114357 +tp114358 +a(g114355 +g114357 +S'fueling' +p114359 +tp114360 +a(g114357 +g114359 +S'the' +p114361 +tp114362 +a(g114359 +g114361 +S'anguished' +p114363 +tp114364 +a(g114361 +g114363 +S'pitch' +p114365 +tp114366 +a(g114363 +g114365 +S'of' +p114367 +tp114368 +a(g114365 +g114367 +S'the' +p114369 +tp114370 +a(g114367 +g114369 +S'image.' +p114371 +tp114372 +a(g114369 +g114371 +S'by' +p114373 +tp114374 +a(g114371 +g114373 +S'contrast,' +p114375 +tp114376 +a(g114373 +g114375 +S'the' +p114377 +tp114378 +a(g114375 +g114377 +S'disposition' +p114379 +tp114380 +a(g114377 +g114379 +S'of' +p114381 +tp114382 +a(g114379 +g114381 +S"christ's" +p114383 +tp114384 +a(g114381 +g114383 +S'body' +p114385 +tp114386 +a(g114383 +g114385 +S'is' +p114387 +tp114388 +a(g114385 +g114387 +S'almost' +p114389 +tp114390 +a(g114387 +g114389 +S'balletic.' +p114391 +tp114392 +a(g114389 +g114391 +S'it' +p114393 +tp114394 +a(g114391 +g114393 +S'stands' +p114395 +tp114396 +a(g114393 +g114395 +S'out' +p114397 +tp114398 +a(g114395 +g114397 +S'pale' +p114399 +tp114400 +a(g114397 +g114399 +S'against' +p114401 +tp114402 +a(g114399 +g114401 +S'the' +p114403 +tp114404 +a(g114401 +g114403 +S'deep' +p114405 +tp114406 +a(g114403 +g114405 +S'colors' +p114407 +tp114408 +a(g114405 +g114407 +S'of' +p114409 +tp114410 +a(g114407 +g114409 +S'the' +p114411 +tp114412 +a(g114409 +g114411 +S"mourners'" +p114413 +tp114414 +a(g114411 +g114413 +S'robes.' +p114415 +tp114416 +a(g114413 +g114415 +S"moretto's" +p114417 +tp114418 +a(g114415 +g114417 +S'palette' +p114419 +tp114420 +a(g114417 +g114419 +S'is' +p114421 +tp114422 +a(g114419 +g114421 +S'rich' +p114423 +tp114424 +a(g114421 +g114423 +S'but' +p114425 +tp114426 +a(g114423 +g114425 +S'acerbic,' +p114427 +tp114428 +a(g114425 +g114427 +S'darkening' +p114429 +tp114430 +a(g114427 +g114429 +S'to' +p114431 +tp114432 +a(g114429 +g114431 +S'iron-gray' +p114433 +tp114434 +a(g114431 +g114433 +S'in' +p114435 +tp114436 +a(g114433 +g114435 +S'the' +p114437 +tp114438 +a(g114435 +g114437 +S'shadows.' +p114439 +tp114440 +a(g114437 +g114439 +S'although' +p114441 +tp114442 +a(g114439 +g114441 +S'moretto' +p114443 +tp114444 +a(g114441 +g114443 +S'had' +p114445 +tp114446 +a(g114443 +g114445 +S'absorbed' +p114447 +tp114448 +a(g114445 +g114447 +S'the' +p114449 +tp114450 +a(g114447 +g114449 +S'styles' +p114451 +tp114452 +a(g114449 +g114451 +S'of' +p114453 +tp114454 +a(g114451 +g114453 +S'the' +p114455 +tp114456 +a(g114453 +g114455 +S'venetians,' +p114457 +tp114458 +a(g114455 +g114457 +S'especially' +p114459 +tp114460 +a(g114457 +g114459 +S'their' +p114461 +tp114462 +a(g114459 +g114461 +S'brilliant' +p114463 +tp114464 +a(g114461 +g114463 +S'experiments' +p114465 +tp114466 +a(g114463 +g114465 +S'with' +p114467 +tp114468 +a(g114465 +g114467 +S'color' +p114469 +tp114470 +a(g114467 +g114469 +S'and' +p114471 +tp114472 +a(g114469 +g114471 +S'light,' +p114473 +tp114474 +a(g114471 +g114473 +S'this' +p114475 +tp114476 +a(g114473 +g114475 +S'intensely' +p114477 +tp114478 +a(g114475 +g114477 +S'emotional' +p114479 +tp114480 +a(g114477 +g114479 +S'ranuccio' +p114481 +tp114482 +a(g114479 +g114481 +S'farnese' +p114483 +tp114484 +a(g114481 +g114483 +S'was' +p114485 +tp114486 +a(g114483 +g114485 +S'twelve' +p114487 +tp114488 +a(g114485 +g114487 +S'years' +p114489 +tp114490 +a(g114487 +g114489 +S'old' +p114491 +tp114492 +a(g114489 +g114491 +S'when' +p114493 +tp114494 +a(g114491 +g114493 +S'titian' +p114495 +tp114496 +a(g114493 +g114495 +S'painted' +p114497 +tp114498 +a(g114495 +g114497 +S'his' +p114499 +tp114500 +a(g114497 +g114499 +S'portrait.' +p114501 +tp114502 +a(g114499 +g114501 +S'the' +p114503 +tp114504 +a(g114501 +g114503 +S'boy' +p114505 +tp114506 +a(g114503 +g114505 +S'had' +p114507 +tp114508 +a(g114505 +g114507 +S'been' +p114509 +tp114510 +a(g114507 +g114509 +S'sent' +p114511 +tp114512 +a(g114509 +g114511 +S'to' +p114513 +tp114514 +a(g114511 +g114513 +S'venice' +p114515 +tp114516 +a(g114513 +g114515 +S'by' +p114517 +tp114518 +a(g114515 +g114517 +S'his' +p114519 +tp114520 +a(g114517 +g114519 +S'grandfather,' +p114521 +tp114522 +a(g114519 +g114521 +S'pope' +p114523 +tp114524 +a(g114521 +g114523 +S'paul' +p114525 +tp114526 +a(g114523 +g114525 +S'iii,' +p114527 +tp114528 +a(g114525 +g114527 +S'to' +p114529 +tp114530 +a(g114527 +g114529 +S'become' +p114531 +tp114532 +a(g114529 +g114531 +S'prior' +p114533 +tp114534 +a(g114531 +g114533 +S'of' +p114535 +tp114536 +a(g114533 +g114535 +S'an' +p114537 +tp114538 +a(g114535 +g114537 +S'important' +p114539 +tp114540 +a(g114537 +g114539 +S'property' +p114541 +tp114542 +a(g114539 +g114541 +S'belonging' +p114543 +tp114544 +a(g114541 +g114543 +S'to' +p114545 +tp114546 +a(g114543 +g114545 +S'the' +p114547 +tp114548 +a(g114545 +g114547 +S'knights' +p114549 +tp114550 +a(g114547 +g114549 +S'of' +p114551 +tp114552 +a(g114549 +g114551 +S'malta.' +p114553 +tp114554 +a(g114551 +g114553 +S'as' +p114555 +tp114556 +a(g114553 +g114555 +S'a' +p114557 +tp114558 +a(g114555 +g114557 +S'member' +p114559 +tp114560 +a(g114557 +g114559 +S'of' +p114561 +tp114562 +a(g114559 +g114561 +S'the' +p114563 +tp114564 +a(g114561 +g114563 +S'powerful' +p114565 +tp114566 +a(g114563 +g114565 +S'and' +p114567 +tp114568 +a(g114565 +g114567 +S'aristocratic' +p114569 +tp114570 +a(g114567 +g114569 +S'farnese' +p114571 +tp114572 +a(g114569 +g114571 +S'family,' +p114573 +tp114574 +a(g114571 +g114573 +S'ranuccio' +p114575 +tp114576 +a(g114573 +g114575 +S'went' +p114577 +tp114578 +a(g114575 +g114577 +S'on' +p114579 +tp114580 +a(g114577 +g114579 +S'to' +p114581 +tp114582 +a(g114579 +g114581 +S'an' +p114583 +tp114584 +a(g114581 +g114583 +S'illustrious' +p114585 +tp114586 +a(g114583 +g114585 +S'ecclesiastical' +p114587 +tp114588 +a(g114585 +g114587 +S'career.' +p114589 +tp114590 +a(g114587 +g114589 +S'he' +p114591 +tp114592 +a(g114589 +g114591 +S'was' +p114593 +tp114594 +a(g114591 +g114593 +S'made' +p114595 +tp114596 +a(g114593 +g114595 +S'archbishop' +p114597 +tp114598 +a(g114595 +g114597 +S'of' +p114599 +tp114600 +a(g114597 +g114599 +S'naples' +p114601 +tp114602 +a(g114599 +g114601 +S'at' +p114603 +tp114604 +a(g114601 +g114603 +S'the' +p114605 +tp114606 +a(g114603 +g114605 +S'age' +p114607 +tp114608 +a(g114605 +g114607 +S'of' +p114609 +tp114610 +a(g114607 +g114609 +S'fourteen,' +p114611 +tp114612 +a(g114609 +g114611 +S'and' +p114613 +tp114614 +a(g114611 +g114613 +S'he' +p114615 +tp114616 +a(g114613 +g114615 +S'later' +p114617 +tp114618 +a(g114615 +g114617 +S'served' +p114619 +tp114620 +a(g114617 +g114619 +S'as' +p114621 +tp114622 +a(g114619 +g114621 +S'bishop' +p114623 +tp114624 +a(g114621 +g114623 +S'of' +p114625 +tp114626 +a(g114623 +g114625 +S'bologna,' +p114627 +tp114628 +a(g114625 +g114627 +S'archbishop' +p114629 +tp114630 +a(g114627 +g114629 +S'of' +p114631 +tp114632 +a(g114629 +g114631 +S'milan' +p114633 +tp114634 +a(g114631 +g114633 +S'and' +p114635 +tp114636 +a(g114633 +g114635 +S'ravenna,' +p114637 +tp114638 +a(g114635 +g114637 +S'and' +p114639 +tp114640 +a(g114637 +g114639 +S'cardinal' +p114641 +tp114642 +a(g114639 +g114641 +S"sant'angelo," +p114643 +tp114644 +a(g114641 +g114643 +S'dying' +p114645 +tp114646 +a(g114643 +g114645 +S'when' +p114647 +tp114648 +a(g114645 +g114647 +S'he' +p114649 +tp114650 +a(g114647 +g114649 +S'was' +p114651 +tp114652 +a(g114649 +g114651 +S'only' +p114653 +tp114654 +a(g114651 +g114653 +S'thirty–five' +p114655 +tp114656 +a(g114653 +g114655 +S'years' +p114657 +tp114658 +a(g114655 +g114657 +S'old.' +p114659 +tp114660 +a(g114657 +g114659 +S'adult' +p114661 +tp114662 +a(g114659 +g114661 +S'responsibility' +p114663 +tp114664 +a(g114661 +g114663 +S'came' +p114665 +tp114666 +a(g114663 +g114665 +S'to' +p114667 +tp114668 +a(g114665 +g114667 +S'ranuccio' +p114669 +tp114670 +a(g114667 +g114669 +S'when' +p114671 +tp114672 +a(g114669 +g114671 +S'still' +p114673 +tp114674 +a(g114671 +g114673 +S'a' +p114675 +tp114676 +a(g114673 +g114675 +S'child,' +p114677 +tp114678 +a(g114675 +g114677 +S'as' +p114679 +tp114680 +a(g114677 +g114679 +S'titian' +p114681 +tp114682 +a(g114679 +g114681 +S'so' +p114683 +tp114684 +a(g114681 +g114683 +S'brilliantly' +p114685 +tp114686 +a(g114683 +g114685 +S'conveyed' +p114687 +tp114688 +a(g114685 +g114687 +S'through' +p114689 +tp114690 +a(g114687 +g114689 +S'the' +p114691 +tp114692 +a(g114689 +g114691 +S'cloak' +p114693 +tp114694 +a(g114691 +g114693 +S'of' +p114695 +tp114696 +a(g114693 +g114695 +S'office,' +p114697 +tp114698 +a(g114695 +g114697 +S'too' +p114699 +tp114700 +a(g114697 +g114699 +S'large' +p114701 +tp114702 +a(g114699 +g114701 +S'and' +p114703 +tp114704 +a(g114701 +g114703 +S'heavy,' +p114705 +tp114706 +a(g114703 +g114705 +S'sliding' +p114707 +tp114708 +a(g114705 +g114707 +S'off' +p114709 +tp114710 +a(g114707 +g114709 +S'the' +p114711 +tp114712 +a(g114709 +g114711 +S"youth's" +p114713 +tp114714 +a(g114711 +g114713 +S'small' +p114715 +tp114716 +a(g114713 +g114715 +S'shoulders.' +p114717 +tp114718 +a(g114715 +g114717 +S'the' +p114719 +tp114720 +a(g114717 +g114719 +S'boy' +p114721 +tp114722 +a(g114719 +g114721 +S'in' +p114723 +tp114724 +a(g114721 +g114723 +S'the' +p114725 +tp114726 +a(g114723 +g114725 +S'role' +p114727 +tp114728 +a(g114725 +g114727 +S'of' +p114729 +tp114730 +a(g114727 +g114729 +S'the' +p114731 +tp114732 +a(g114729 +g114731 +S'man' +p114733 +tp114734 +a(g114731 +g114733 +S'is' +p114735 +tp114736 +a(g114733 +g114735 +S'what' +p114737 +tp114738 +a(g114735 +g114737 +S'gives' +p114739 +tp114740 +a(g114737 +g114739 +S'this' +p114741 +tp114742 +a(g114739 +g114741 +S'characterization' +p114743 +tp114744 +a(g114741 +g114743 +S'such' +p114745 +tp114746 +a(g114743 +g114745 +S'poignancy.' +p114747 +tp114748 +a(g114745 +g114747 +S'portraits' +p114749 +tp114750 +a(g114747 +g114749 +S'by' +p114751 +tp114752 +a(g114749 +g114751 +S'titian' +p114753 +tp114754 +a(g114751 +g114753 +S'were' +p114755 +tp114756 +a(g114753 +g114755 +S'in' +p114757 +tp114758 +a(g114755 +g114757 +S'great' +p114759 +tp114760 +a(g114757 +g114759 +S'demand,' +p114761 +tp114762 +a(g114759 +g114761 +S'distinguished' +p114763 +tp114764 +a(g114761 +g114763 +S'as' +p114765 +tp114766 +a(g114763 +g114765 +S'they' +p114767 +tp114768 +a(g114765 +g114767 +S'were' +p114769 +tp114770 +a(g114767 +g114769 +S'for' +p114771 +tp114772 +a(g114769 +g114771 +S'their' +p114773 +tp114774 +a(g114771 +g114773 +S'remarkable' +p114775 +tp114776 +a(g114773 +g114775 +S'insight' +p114777 +tp114778 +a(g114775 +g114777 +S'into' +p114779 +tp114780 +a(g114777 +g114779 +S'character' +p114781 +tp114782 +a(g114779 +g114781 +S'and' +p114783 +tp114784 +a(g114781 +g114783 +S'their' +p114785 +tp114786 +a(g114783 +g114785 +S'brilliant' +p114787 +tp114788 +a(g114785 +g114787 +S'technique.' +p114789 +tp114790 +a(g114787 +g114789 +S'nowhere' +p114791 +tp114792 +a(g114789 +g114791 +S'is' +p114793 +tp114794 +a(g114791 +g114793 +S'the' +p114795 +tp114796 +a(g114793 +g114795 +S"painter's" +p114797 +tp114798 +a(g114795 +g114797 +S'genius' +p114799 +tp114800 +a(g114797 +g114799 +S'more' +p114801 +tp114802 +a(g114799 +g114801 +S'in' +p114803 +tp114804 +a(g114801 +g114803 +S'evidence' +p114805 +tp114806 +a(g114803 +g114805 +S'than' +p114807 +tp114808 +a(g114805 +g114807 +S'in' +p114809 +tp114810 +a(g114807 +g114809 +S'this' +p114811 +tp114812 +a(g114809 +g114811 +S'image.' +p114813 +tp114814 +a(g114811 +g114813 +S'limiting' +p114815 +tp114816 +a(g114813 +g114815 +S'his' +p114817 +tp114818 +a(g114815 +g114817 +S'palette' +p114819 +tp114820 +a(g114817 +g114819 +S'to' +p114821 +tp114822 +a(g114819 +g114821 +S'black,' +p114823 +tp114824 +a(g114821 +g114823 +S'white,' +p114825 +tp114826 +a(g114823 +g114825 +S'and' +p114827 +tp114828 +a(g114825 +g114827 +S'rose,' +p114829 +tp114830 +a(g114827 +g114829 +S'titian' +p114831 +tp114832 +a(g114829 +g114831 +S'enlivened' +p114833 +tp114834 +a(g114831 +g114833 +S'the' +p114835 +tp114836 +a(g114833 +g114835 +S'surface' +p114837 +tp114838 +a(g114835 +g114837 +S'with' +p114839 +tp114840 +a(g114837 +g114839 +S'light:' +p114841 +tp114842 +a(g114839 +g114841 +S'the' +p114843 +tp114844 +a(g114841 +g114843 +S'dull' +p114845 +tp114846 +a(g114843 +g114845 +S'gleam' +p114847 +tp114848 +a(g114845 +g114847 +S'rippling' +p114849 +tp114850 +a(g114847 +g114849 +S'over' +p114851 +tp114852 +a(g114849 +g114851 +S'the' +p114853 +tp114854 +a(g114851 +g114853 +S'sleeves' +p114855 +tp114856 +a(g114853 +g114855 +S'of' +p114857 +tp114858 +a(g114855 +g114857 +S'the' +p114859 +tp114860 +a(g114857 +g114859 +S'velvet' +p114861 +tp114862 +a(g114859 +g114861 +S'cloak;' +p114863 +tp114864 +a(g114861 +g114863 +S'the' +p114865 +tp114866 +a(g114863 +g114865 +S'fitful' +p114867 +tp114868 +a(g114865 +g114867 +S'pattern' +p114869 +tp114870 +a(g114867 +g114869 +S'flickering' +p114871 +tp114872 +a(g114869 +g114871 +S'across' +p114873 +tp114874 +a(g114871 +g114873 +S'the' +p114875 +tp114876 +a(g114873 +g114875 +S'slashed' +p114877 +tp114878 +a(g114875 +g114877 +S'doublet;' +p114879 +tp114880 +a(g114877 +g114879 +S'and' +p114881 +tp114882 +a(g114879 +g114881 +S'the' +p114883 +tp114884 +a(g114881 +g114883 +S'changing' +p114885 +tp114886 +a(g114883 +g114885 +S'reflections' +p114887 +tp114888 +a(g114885 +g114887 +S'on' +p114889 +tp114890 +a(g114887 +g114889 +S'the' +p114891 +tp114892 +a(g114889 +g114891 +S'satin' +p114893 +tp114894 +a(g114891 +g114893 +S'maltese' +p114895 +tp114896 +a(g114893 +g114895 +S'cross.' +p114897 +tp114898 +a(g114895 +g114897 +S'this' +p114899 +tp114900 +a(g114897 +g114899 +S'unusually' +p114901 +tp114902 +a(g114899 +g114901 +S'large' +p114903 +tp114904 +a(g114901 +g114903 +S'panel' +p114905 +tp114906 +a(g114903 +g114905 +S'painting' +p114907 +tp114908 +a(g114905 +g114907 +S'depicts' +p114909 +tp114910 +a(g114907 +g114909 +S'three' +p114911 +tp114912 +a(g114909 +g114911 +S'facets' +p114913 +tp114914 +a(g114911 +g114913 +S'of' +p114915 +tp114916 +a(g114913 +g114915 +S'marian' +p114917 +tp114918 +a(g114915 +g114917 +S'iconography:' +p114919 +tp114920 +a(g114917 +g114919 +S'the' +p114921 +tp114922 +a(g114919 +g114921 +S"virgin's" +p114923 +tp114924 +a(g114921 +g114923 +S'corporeal' +p114925 +tp114926 +a(g114923 +g114925 +S'assumption,' +p114927 +tp114928 +a(g114925 +g114927 +S'the' +p114929 +tp114930 +a(g114927 +g114929 +S'immaculate' +p114931 +tp114932 +a(g114929 +g114931 +S'conception—the' +p114933 +tp114934 +a(g114931 +g114933 +S'crescent' +p114935 +tp114936 +a(g114933 +g114935 +S'moon' +p114937 +tp114938 +a(g114935 +g114937 +S'and' +p114939 +tp114940 +a(g114937 +g114939 +S'the' +p114941 +tp114942 +a(g114939 +g114941 +S'radiance' +p114943 +tp114944 +a(g114941 +g114943 +S'behind' +p114945 +tp114946 +a(g114943 +g114945 +S'her' +p114947 +tp114948 +a(g114945 +g114947 +S'identify' +p114949 +tp114950 +a(g114947 +g114949 +S'mary' +p114951 +tp114952 +a(g114949 +g114951 +S'as' +p114953 +tp114954 +a(g114951 +g114953 +S'the' +p114955 +tp114956 +a(g114953 +g114955 +S'woman' +p114957 +tp114958 +a(g114955 +g114957 +S'of' +p114959 +tp114960 +a(g114957 +g114959 +S'the' +p114961 +tp114962 +a(g114959 +g114961 +S'apocalyse,' +p114963 +tp114964 +a(g114961 +g114963 +S'mentioned' +p114965 +tp114966 +a(g114963 +g114965 +S'in' +p114967 +tp114968 +a(g114965 +g114967 +S'revelation' +p114969 +tp114970 +a(g114967 +g114969 +S'12:i—and' +p114971 +tp114972 +a(g114969 +g114971 +S'the' +p114973 +tp114974 +a(g114971 +g114973 +S'coronation' +p114975 +tp114976 +a(g114973 +g114975 +S'of' +p114977 +tp114978 +a(g114975 +g114977 +S'the' +p114979 +tp114980 +a(g114977 +g114979 +S'virgin.' +p114981 +tp114982 +a(g114979 +g114981 +S'the' +p114983 +tp114984 +a(g114981 +g114983 +S'painting' +p114985 +tp114986 +a(g114983 +g114985 +S'is' +p114987 +tp114988 +a(g114985 +g114987 +S'of' +p114989 +tp114990 +a(g114987 +g114989 +S'great' +p114991 +tp114992 +a(g114989 +g114991 +S'interest' +p114993 +tp114994 +a(g114991 +g114993 +S'to' +p114995 +tp114996 +a(g114993 +g114995 +S'musicologists' +p114997 +tp114998 +a(g114995 +g114997 +S'in' +p114999 +tp115000 +a(g114997 +g114999 +S'that' +p115001 +tp115002 +a(g114999 +g115001 +S'it' +p115003 +tp115004 +a(g115001 +g115003 +S'depicts' +p115005 +tp115006 +a(g115003 +g115005 +S'renaissance' +p115007 +tp115008 +a(g115005 +g115007 +S'instruments' +p115009 +tp115010 +a(g115007 +g115009 +S'with' +p115011 +tp115012 +a(g115009 +g115011 +S'great' +p115013 +tp115014 +a(g115011 +g115013 +S'accuracy' +p115015 +tp115016 +a(g115013 +g115015 +S'and' +p115017 +tp115018 +a(g115015 +g115017 +S'also' +p115019 +tp115020 +a(g115017 +g115019 +S'reflects' +p115021 +tp115022 +a(g115019 +g115021 +S'contemporary' +p115023 +tp115024 +a(g115021 +g115023 +S'performance' +p115025 +tp115026 +a(g115023 +g115025 +S'practices' +p115027 +tp115028 +a(g115025 +g115027 +S'in' +p115029 +tp115030 +a(g115027 +g115029 +S'the' +p115031 +tp115032 +a(g115029 +g115031 +S'arrangement' +p115033 +tp115034 +a(g115031 +g115033 +S'of' +p115035 +tp115036 +a(g115033 +g115035 +S'the' +p115037 +tp115038 +a(g115035 +g115037 +S'music–making' +p115039 +tp115040 +a(g115037 +g115039 +S'angels.' +p115041 +tp115042 +a(g115039 +g115041 +S'at' +p115043 +tp115044 +a(g115041 +g115043 +S'the' +p115045 +tp115046 +a(g115043 +g115045 +S'top,' +p115047 +tp115048 +a(g115045 +g115047 +S'a' +p115049 +tp115050 +a(g115047 +g115049 +S'full' +p115051 +tp115052 +a(g115049 +g115051 +S'orchestra' +p115053 +tp115054 +a(g115051 +g115053 +S'plays' +p115055 +tp115056 +a(g115053 +g115055 +S'before' +p115057 +tp115058 +a(g115055 +g115057 +S'the' +p115059 +tp115060 +a(g115057 +g115059 +S'three' +p115061 +tp115062 +a(g115059 +g115061 +S'figures' +p115063 +tp115064 +a(g115061 +g115063 +S'of' +p115065 +tp115066 +a(g115063 +g115065 +S'the' +p115067 +tp115068 +a(g115065 +g115067 +S'trinity.' +p115069 +tp115070 +a(g115067 +g115069 +S'the' +p115071 +tp115072 +a(g115069 +g115071 +S'ensemble' +p115073 +tp115074 +a(g115071 +g115073 +S'around' +p115075 +tp115076 +a(g115073 +g115075 +S'the' +p115077 +tp115078 +a(g115075 +g115077 +S'virgin' +p115079 +tp115080 +a(g115077 +g115079 +S'is' +p115081 +tp115082 +a(g115079 +g115081 +S'a' +p115083 +tp115084 +a(g115081 +g115083 +S'mixed' +p115085 +tp115086 +a(g115083 +g115085 +S'consort' +p115087 +tp115088 +a(g115085 +g115087 +S'composed' +p115089 +tp115090 +a(g115087 +g115089 +S'of' +p115091 +tp115092 +a(g115089 +g115091 +S'"loud"' +p115093 +tp115094 +a(g115091 +g115093 +S'instruments' +p115095 +tp115096 +a(g115093 +g115095 +S'(trumpets' +p115097 +tp115098 +a(g115095 +g115097 +S'and' +p115099 +tp115100 +a(g115097 +g115099 +S'shawms)' +p115101 +tp115102 +a(g115099 +g115101 +S'and' +p115103 +tp115104 +a(g115101 +g115103 +S'"soft"' +p115105 +tp115106 +a(g115103 +g115105 +S'instruments' +p115107 +tp115108 +a(g115105 +g115107 +S'(vielle,' +p115109 +tp115110 +a(g115107 +g115109 +S'lute,' +p115111 +tp115112 +a(g115109 +g115111 +S'and' +p115113 +tp115114 +a(g115111 +g115113 +S'harp).' +p115115 +tp115116 +a(g115113 +g115115 +S'two' +p115117 +tp115118 +a(g115115 +g115117 +S'of' +p115119 +tp115120 +a(g115117 +g115119 +S'the' +p115121 +tp115122 +a(g115119 +g115121 +S'singing' +p115123 +tp115124 +a(g115121 +g115123 +S'angels' +p115125 +tp115126 +a(g115123 +g115125 +S'hold' +p115127 +tp115128 +a(g115125 +g115127 +S'books' +p115129 +tp115130 +a(g115127 +g115129 +S'bearing' +p115131 +tp115132 +a(g115129 +g115131 +S'legible' +p115133 +tp115134 +a(g115131 +g115133 +S'lyrics' +p115135 +tp115136 +a(g115133 +g115135 +S'and' +p115137 +tp115138 +a(g115135 +g115137 +S'notations.' +p115139 +tp115140 +a(g115137 +g115139 +S'this' +p115141 +tp115142 +a(g115139 +g115141 +S'music,' +p115143 +tp115144 +a(g115141 +g115143 +S'which' +p115145 +tp115146 +a(g115143 +g115145 +S'is' +p115147 +tp115148 +a(g115145 +g115147 +S'the' +p115149 +tp115150 +a(g115147 +g115149 +S'source' +p115151 +tp115152 +a(g115149 +g115151 +S'of' +p115153 +tp115154 +a(g115151 +g115153 +S'the' +p115155 +tp115156 +a(g115153 +g115155 +S"painting's" +p115157 +tp115158 +a(g115155 +g115157 +S'title,' +p115159 +tp115160 +a(g115157 +g115159 +S'has' +p115161 +tp115162 +a(g115159 +g115161 +S'been' +p115163 +tp115164 +a(g115161 +g115163 +S'identified' +p115165 +tp115166 +a(g115163 +g115165 +S'as' +p115167 +tp115168 +a(g115165 +g115167 +S'derived' +p115169 +tp115170 +a(g115167 +g115169 +S'from' +p115171 +tp115172 +a(g115169 +g115171 +S'a' +p115173 +tp115174 +a(g115171 +g115173 +S'setting' +p115175 +tp115176 +a(g115173 +g115175 +S'of' +p115177 +tp115178 +a(g115175 +g115177 +S'the' +p115179 +tp115180 +a(g115177 +g115179 +S'marian' +p115181 +tp115182 +a(g115179 +g115181 +S'antiphon,' +p115183 +tp115184 +a(g115181 +g115183 +S'historians' +p115185 +tp115186 +a(g115183 +g115185 +S'refer' +p115187 +tp115188 +a(g115185 +g115187 +S'to' +p115189 +tp115190 +a(g115187 +g115189 +S'the' +p115191 +tp115192 +a(g115189 +g115191 +S'artist' +p115193 +tp115194 +a(g115191 +g115193 +S'as' +p115195 +tp115196 +a(g115193 +g115195 +S'the' +p115197 +tp115198 +a(g115195 +g115197 +S'master' +p115199 +tp115200 +a(g115197 +g115199 +S'of' +p115201 +tp115202 +a(g115199 +g115201 +S'the' +p115203 +tp115204 +a(g115201 +g115203 +S'saint' +p115205 +tp115206 +a(g115203 +g115205 +S'lucy' +p115207 +tp115208 +a(g115205 +g115207 +S'legend' +p115209 +tp115210 +a(g115207 +g115209 +S'because' +p115211 +tp115212 +a(g115209 +g115211 +S'his' +p115213 +tp115214 +a(g115211 +g115213 +S'principal' +p115215 +tp115216 +a(g115213 +g115215 +S'work,' +p115217 +tp115218 +a(g115215 +g115217 +S'an' +p115219 +tp115220 +a(g115217 +g115219 +S'alterpiece' +p115221 +tp115222 +a(g115219 +g115221 +S'dated' +p115223 +tp115224 +a(g115221 +g115223 +S'1480,' +p115225 +tp115226 +a(g115223 +g115225 +S'depicts' +p115227 +tp115228 +a(g115225 +g115227 +S'episodes' +p115229 +tp115230 +a(g115227 +g115229 +S'from' +p115231 +tp115232 +a(g115229 +g115231 +S'the' +p115233 +tp115234 +a(g115231 +g115233 +S'life' +p115235 +tp115236 +a(g115233 +g115235 +S'of' +p115237 +tp115238 +a(g115235 +g115237 +S'that' +p115239 +tp115240 +a(g115237 +g115239 +S'saint.' +p115241 +tp115242 +a(g115239 +g115241 +S'his' +p115243 +tp115244 +a(g115241 +g115243 +S'style' +p115245 +tp115246 +a(g115243 +g115245 +S'is' +p115247 +tp115248 +a(g115245 +g115247 +S'characterized' +p115249 +tp115250 +a(g115247 +g115249 +S'in' +p115251 +tp115252 +a(g115249 +g115251 +S'both' +p115253 +tp115254 +a(g115251 +g115253 +S'paintings' +p115255 +tp115256 +a(g115253 +g115255 +S'by' +p115257 +tp115258 +a(g115255 +g115257 +S'oval' +p115259 +tp115260 +a(g115257 +g115259 +S'faces' +p115261 +tp115262 +a(g115259 +g115261 +S'that' +p115263 +tp115264 +a(g115261 +g115263 +S'are' +p115265 +tp115266 +a(g115263 +g115265 +S'restrained' +p115267 +tp115268 +a(g115265 +g115267 +S'in' +p115269 +tp115270 +a(g115267 +g115269 +S'expression,' +p115271 +tp115272 +a(g115269 +g115271 +S'the' +p115273 +tp115274 +a(g115271 +g115273 +S'use' +p115275 +tp115276 +a(g115273 +g115275 +S'of' +p115277 +tp115278 +a(g115275 +g115277 +S'extraordinarily' +p115279 +tp115280 +a(g115277 +g115279 +S'intense' +p115281 +tp115282 +a(g115279 +g115281 +S'color,' +p115283 +tp115284 +a(g115281 +g115283 +S'and' +p115285 +tp115286 +a(g115283 +g115285 +S'a' +p115287 +tp115288 +a(g115285 +g115287 +S'tendency' +p115289 +tp115290 +a(g115287 +g115289 +S'to' +p115291 +tp115292 +a(g115289 +g115291 +S'over–emphasize' +p115293 +tp115294 +a(g115291 +g115293 +S'elaborate' +p115295 +tp115296 +a(g115293 +g115295 +S'textures.' +p115297 +tp115298 +a(g115295 +g115297 +S'clovis' +p115299 +tp115300 +a(g115297 +g115299 +S'(d.' +p115301 +tp115302 +a(g115299 +g115301 +S'511)' +p115303 +tp115304 +a(g115301 +g115303 +S'was' +p115305 +tp115306 +a(g115303 +g115305 +S'the' +p115307 +tp115308 +a(g115305 +g115307 +S'founder' +p115309 +tp115310 +a(g115307 +g115309 +S'of' +p115311 +tp115312 +a(g115309 +g115311 +S'the' +p115313 +tp115314 +a(g115311 +g115313 +S'merovingian' +p115315 +tp115316 +a(g115313 +g115315 +S'dynasty' +p115317 +tp115318 +a(g115315 +g115317 +S'and' +p115319 +tp115320 +a(g115317 +g115319 +S'the' +p115321 +tp115322 +a(g115319 +g115321 +S'first' +p115323 +tp115324 +a(g115321 +g115323 +S'christian' +p115325 +tp115326 +a(g115323 +g115325 +S'king' +p115327 +tp115328 +a(g115325 +g115327 +S'of' +p115329 +tp115330 +a(g115327 +g115329 +S'france.' +p115331 +tp115332 +a(g115329 +g115331 +S'the' +p115333 +tp115334 +a(g115331 +g115333 +S'setting' +p115335 +tp115336 +a(g115333 +g115335 +S'for' +p115337 +tp115338 +a(g115335 +g115337 +S'his' +p115339 +tp115340 +a(g115337 +g115339 +S'baptism' +p115341 +tp115342 +a(g115339 +g115341 +S'can' +p115343 +tp115344 +a(g115341 +g115343 +S'be' +p115345 +tp115346 +a(g115343 +g115345 +S'recognized' +p115347 +tp115348 +a(g115345 +g115347 +S'as' +p115349 +tp115350 +a(g115347 +g115349 +S'sainte-chapelle,' +p115351 +tp115352 +a(g115349 +g115351 +S'the' +p115353 +tp115354 +a(g115351 +g115353 +S'royal' +p115355 +tp115356 +a(g115353 +g115355 +S'chapel' +p115357 +tp115358 +a(g115355 +g115357 +S'on' +p115359 +tp115360 +a(g115357 +g115359 +S'the' +p115361 +tp115362 +a(g115359 +g115361 +S'ile-de-la-cité' +p115363 +tp115364 +a(g115361 +g115363 +S'in' +p115365 +tp115366 +a(g115363 +g115365 +S'paris.' +p115367 +tp115368 +a(g115365 +g115367 +S'among' +p115369 +tp115370 +a(g115367 +g115369 +S'the' +p115371 +tp115372 +a(g115369 +g115371 +S'witnesses' +p115373 +tp115374 +a(g115371 +g115373 +S'is' +p115375 +tp115376 +a(g115373 +g115375 +S'his' +p115377 +tp115378 +a(g115375 +g115377 +S'wife,' +p115379 +tp115380 +a(g115377 +g115379 +S'clothilde,' +p115381 +tp115382 +a(g115379 +g115381 +S'who' +p115383 +tp115384 +a(g115381 +g115383 +S'was' +p115385 +tp115386 +a(g115383 +g115385 +S'largely' +p115387 +tp115388 +a(g115385 +g115387 +S'responsible' +p115389 +tp115390 +a(g115387 +g115389 +S'for' +p115391 +tp115392 +a(g115389 +g115391 +S'his' +p115393 +tp115394 +a(g115391 +g115393 +S'conversion.' +p115395 +tp115396 +a(g115393 +g115395 +S'in' +p115397 +tp115398 +a(g115395 +g115397 +S'the' +p115399 +tp115400 +a(g115397 +g115399 +S'companion' +p115401 +tp115402 +a(g115399 +g115401 +S'work,' +p115403 +tp115404 +a(g115401 +g115403 +S'the' +p115405 +tp115406 +a(g115403 +g115405 +S'companion' +p115407 +tp115408 +a(g115405 +g115407 +S'work' +p115409 +tp115410 +a(g115407 +g115409 +S'with' +p115411 +tp115412 +a(g115409 +g115411 +S'the' +p115413 +tp115414 +a(g115411 +g115413 +S'scene' +p115415 +tp115416 +a(g115413 +g115415 +S'at' +p115417 +tp115418 +a(g115415 +g115417 +S'notre-dame' +p115419 +tp115420 +a(g115417 +g115419 +S'was' +p115421 +tp115422 +a(g115419 +g115421 +S'painted,' +p115423 +tp115424 +a(g115421 +g115423 +S'at' +p115425 +tp115426 +a(g115423 +g115425 +S'least' +p115427 +tp115428 +a(g115425 +g115427 +S'in' +p115429 +tp115430 +a(g115427 +g115429 +S'part,' +p115431 +tp115432 +a(g115429 +g115431 +S'by' +p115433 +tp115434 +a(g115431 +g115433 +S'workshop' +p115435 +tp115436 +a(g115433 +g115435 +S'assistants.' +p115437 +tp115438 +a(g115435 +g115437 +S'whether' +p115439 +tp115440 +a(g115437 +g115439 +S'the' +p115441 +tp115442 +a(g115439 +g115441 +S'master' +p115443 +tp115444 +a(g115441 +g115443 +S'artist' +p115445 +tp115446 +a(g115443 +g115445 +S'himself' +p115447 +tp115448 +a(g115445 +g115447 +S'was' +p115449 +tp115450 +a(g115447 +g115449 +S'a' +p115451 +tp115452 +a(g115449 +g115451 +S'french' +p115453 +tp115454 +a(g115451 +g115453 +S'painter' +p115455 +tp115456 +a(g115453 +g115455 +S'trained' +p115457 +tp115458 +a(g115455 +g115457 +S'in' +p115459 +tp115460 +a(g115457 +g115459 +S'the' +p115461 +tp115462 +a(g115459 +g115461 +S'north' +p115463 +tp115464 +a(g115461 +g115463 +S'or' +p115465 +tp115466 +a(g115463 +g115465 +S'a' +p115467 +tp115468 +a(g115465 +g115467 +S'northerner' +p115469 +tp115470 +a(g115467 +g115469 +S'who' +p115471 +tp115472 +a(g115469 +g115471 +S'emigrated' +p115473 +tp115474 +a(g115471 +g115473 +S'to' +p115475 +tp115476 +a(g115473 +g115475 +S'france,' +p115477 +tp115478 +a(g115475 +g115477 +S'his' +p115479 +tp115480 +a(g115477 +g115479 +S'style' +p115481 +tp115482 +a(g115479 +g115481 +S'has' +p115483 +tp115484 +a(g115481 +g115483 +S'the' +p115485 +tp115486 +a(g115483 +g115485 +S'detail' +p115487 +tp115488 +a(g115485 +g115487 +S'and' +p115489 +tp115490 +a(g115487 +g115489 +S'precision' +p115491 +tp115492 +a(g115489 +g115491 +S'of' +p115493 +tp115494 +a(g115491 +g115493 +S'netherlandish' +p115495 +tp115496 +a(g115493 +g115495 +S'painting.' +p115497 +tp115498 +a(g115495 +g115497 +S'his' +p115499 +tp115500 +a(g115497 +g115499 +S'assistants,' +p115501 +tp115502 +a(g115499 +g115501 +S'on' +p115503 +tp115504 +a(g115501 +g115503 +S'the' +p115505 +tp115506 +a(g115503 +g115505 +S'other' +p115507 +tp115508 +a(g115505 +g115507 +S'hand,' +p115509 +tp115510 +a(g115507 +g115509 +S'display' +p115511 +tp115512 +a(g115509 +g115511 +S'the' +p115513 +tp115514 +a(g115511 +g115513 +S'simplified' +p115515 +tp115516 +a(g115513 +g115515 +S'and' +p115517 +tp115518 +a(g115515 +g115517 +S'more' +p115519 +tp115520 +a(g115517 +g115519 +S'solid' +p115521 +tp115522 +a(g115519 +g115521 +S'forms' +p115523 +tp115524 +a(g115521 +g115523 +S'of' +p115525 +tp115526 +a(g115523 +g115525 +S'french' +p115527 +tp115528 +a(g115525 +g115527 +S'art.' +p115529 +tp115530 +a(g115527 +g115529 +S'compare,' +p115531 +tp115532 +a(g115529 +g115531 +S'for' +p115533 +tp115534 +a(g115531 +g115533 +S'example,' +p115535 +tp115536 +a(g115533 +g115535 +S'the' +p115537 +tp115538 +a(g115535 +g115537 +S'limestone' +p115539 +tp115540 +a(g115537 +g115539 +S'blocks,' +p115541 +tp115542 +a(g115539 +g115541 +S'which' +p115543 +tp115544 +a(g115541 +g115543 +S'are' +p115545 +tp115546 +a(g115543 +g115545 +S'textured' +p115547 +tp115548 +a(g115545 +g115547 +S'and' +p115549 +tp115550 +a(g115547 +g115549 +S'carefully' +p115551 +tp115552 +a(g115549 +g115551 +S'differentiated' +p115553 +tp115554 +a(g115551 +g115553 +S'in' +p115555 +tp115556 +a(g115553 +g115555 +S'the' +p115557 +tp115558 +a(g115555 +g115557 +S'baptism' +p115559 +tp115560 +a(g115557 +g115559 +S'scene' +p115561 +tp115562 +a(g115559 +g115561 +S'but' +p115563 +tp115564 +a(g115561 +g115563 +S'which' +p115565 +tp115566 +a(g115563 +g115565 +S'have' +p115567 +tp115568 +a(g115565 +g115567 +S'a' +p115569 +tp115570 +a(g115567 +g115569 +S'smoother,' +p115571 +tp115572 +a(g115569 +g115571 +S'more' +p115573 +tp115574 +a(g115571 +g115573 +S'uniform' +p115575 +tp115576 +a(g115573 +g115575 +S'look' +p115577 +tp115578 +a(g115575 +g115577 +S'in' +p115579 +tp115580 +a(g115577 +g115579 +S'the' +p115581 +tp115582 +a(g115579 +g115581 +S'other' +p115583 +tp115584 +a(g115581 +g115583 +S'painting.' +p115585 +tp115586 +a(g115583 +g115585 +S'the' +p115587 +tp115588 +a(g115585 +g115587 +S'assistants' +p115589 +tp115590 +a(g115587 +g115589 +S'tended' +p115591 +tp115592 +a(g115589 +g115591 +S'to' +p115593 +tp115594 +a(g115591 +g115593 +S'outline' +p115595 +tp115596 +a(g115593 +g115595 +S'features' +p115597 +tp115598 +a(g115595 +g115597 +S'and' +p115599 +tp115600 +a(g115597 +g115599 +S'to' +p115601 +tp115602 +a(g115599 +g115601 +S'contrast' +p115603 +tp115604 +a(g115601 +g115603 +S'colors' +p115605 +tp115606 +a(g115603 +g115605 +S'and' +p115607 +tp115608 +a(g115605 +g115607 +S'shapes' +p115609 +tp115610 +a(g115607 +g115609 +S'more' +p115611 +tp115612 +a(g115609 +g115611 +S'abruptly.' +p115613 +tp115614 +a(g115611 +g115613 +S'dürer' +p115615 +tp115616 +a(g115613 +g115615 +S'was' +p115617 +tp115618 +a(g115615 +g115617 +S'born' +p115619 +tp115620 +a(g115617 +g115619 +S'in' +p115621 +tp115622 +a(g115619 +g115621 +S'nuremberg' +p115623 +tp115624 +a(g115621 +g115623 +S'and' +p115625 +tp115626 +a(g115623 +g115625 +S'received' +p115627 +tp115628 +a(g115625 +g115627 +S'a' +p115629 +tp115630 +a(g115627 +g115629 +S'typical' +p115631 +tp115632 +a(g115629 +g115631 +S'medieval' +p115633 +tp115634 +a(g115631 +g115633 +S'training' +p115635 +tp115636 +a(g115633 +g115635 +S'from' +p115637 +tp115638 +a(g115635 +g115637 +S'his' +p115639 +tp115640 +a(g115637 +g115639 +S'goldsmith' +p115641 +tp115642 +a(g115639 +g115641 +S'father' +p115643 +tp115644 +a(g115641 +g115643 +S'and' +p115645 +tp115646 +a(g115643 +g115645 +S'from' +p115647 +tp115648 +a(g115645 +g115647 +S'the' +p115649 +tp115650 +a(g115647 +g115649 +S'nuremberg' +p115651 +tp115652 +a(g115649 +g115651 +S'painter' +p115653 +tp115654 +a(g115651 +g115653 +S'michael' +p115655 +tp115656 +a(g115653 +g115655 +S'wolgemut.' +p115657 +tp115658 +a(g115655 +g115657 +S'yet' +p115659 +tp115660 +a(g115657 +g115659 +S'he' +p115661 +tp115662 +a(g115659 +g115661 +S'was' +p115663 +tp115664 +a(g115661 +g115663 +S'one' +p115665 +tp115666 +a(g115663 +g115665 +S'of' +p115667 +tp115668 +a(g115665 +g115667 +S'the' +p115669 +tp115670 +a(g115667 +g115669 +S'major' +p115671 +tp115672 +a(g115669 +g115671 +S'transmitters' +p115673 +tp115674 +a(g115671 +g115673 +S'of' +p115675 +tp115676 +a(g115673 +g115675 +S'the' +p115677 +tp115678 +a(g115675 +g115677 +S'ideas' +p115679 +tp115680 +a(g115677 +g115679 +S'of' +p115681 +tp115682 +a(g115679 +g115681 +S'the' +p115683 +tp115684 +a(g115681 +g115683 +S'italian' +p115685 +tp115686 +a(g115683 +g115685 +S'renaissance' +p115687 +tp115688 +a(g115685 +g115687 +S'to' +p115689 +tp115690 +a(g115687 +g115689 +S'artists' +p115691 +tp115692 +a(g115689 +g115691 +S'in' +p115693 +tp115694 +a(g115691 +g115693 +S'the' +p115695 +tp115696 +a(g115693 +g115695 +S'north.' +p115697 +tp115698 +a(g115695 +g115697 +S'this' +p115699 +tp115700 +a(g115697 +g115699 +S'was' +p115701 +tp115702 +a(g115699 +g115701 +S'the' +p115703 +tp115704 +a(g115701 +g115703 +S'result' +p115705 +tp115706 +a(g115703 +g115705 +S'of' +p115707 +tp115708 +a(g115705 +g115707 +S'direct' +p115709 +tp115710 +a(g115707 +g115709 +S'experience' +p115711 +tp115712 +a(g115709 +g115711 +S'acquired' +p115713 +tp115714 +a(g115711 +g115713 +S'on' +p115715 +tp115716 +a(g115713 +g115715 +S'two' +p115717 +tp115718 +a(g115715 +g115717 +S'trips' +p115719 +tp115720 +a(g115717 +g115719 +S'to' +p115721 +tp115722 +a(g115719 +g115721 +S'italy,' +p115723 +tp115724 +a(g115721 +g115723 +S'as' +p115725 +tp115726 +a(g115723 +g115725 +S'well' +p115727 +tp115728 +a(g115725 +g115727 +S'as' +p115729 +tp115730 +a(g115727 +g115729 +S'of' +p115731 +tp115732 +a(g115729 +g115731 +S'his' +p115733 +tp115734 +a(g115731 +g115733 +S'own' +p115735 +tp115736 +a(g115733 +g115735 +S'diligent' +p115737 +tp115738 +a(g115735 +g115737 +S'study' +p115739 +tp115740 +a(g115737 +g115739 +S'of' +p115741 +tp115742 +a(g115739 +g115741 +S'ideal' +p115743 +tp115744 +a(g115741 +g115743 +S'figural' +p115745 +tp115746 +a(g115743 +g115745 +S'proportions' +p115747 +tp115748 +a(g115745 +g115747 +S'and' +p115749 +tp115750 +a(g115747 +g115749 +S'perspective.' +p115751 +tp115752 +a(g115749 +g115751 +S'dürer' +p115753 +tp115754 +a(g115751 +g115753 +S'traveled' +p115755 +tp115756 +a(g115753 +g115755 +S'to' +p115757 +tp115758 +a(g115755 +g115757 +S'venice' +p115759 +tp115760 +a(g115757 +g115759 +S'in' +p115761 +tp115762 +a(g115759 +g115761 +S'1494/1495' +p115763 +tp115764 +a(g115761 +g115763 +S'and' +p115765 +tp115766 +a(g115763 +g115765 +S'1505/1507.' +p115767 +tp115768 +a(g115765 +g115767 +S'while' +p115769 +tp115770 +a(g115767 +g115769 +S'there,' +p115771 +tp115772 +a(g115769 +g115771 +S'he' +p115773 +tp115774 +a(g115771 +g115773 +S'became' +p115775 +tp115776 +a(g115773 +g115775 +S'well' +p115777 +tp115778 +a(g115775 +g115777 +S'acquainted' +p115779 +tp115780 +a(g115777 +g115779 +S'with' +p115781 +tp115782 +a(g115779 +g115781 +S'giovanni' +p115783 +tp115784 +a(g115781 +g115783 +S'bellini,' +p115785 +tp115786 +a(g115783 +g115785 +S'whose' +p115787 +tp115788 +a(g115785 +g115787 +S'influence' +p115789 +tp115790 +a(g115787 +g115789 +S'is' +p115791 +tp115792 +a(g115789 +g115791 +S'evident' +p115793 +tp115794 +a(g115791 +g115793 +S'in' +p115795 +tp115796 +a(g115793 +g115795 +S'the' +p115797 +tp115798 +a(g115795 +g115797 +S'on' +p115799 +tp115800 +a(g115797 +g115799 +S'the' +p115801 +tp115802 +a(g115799 +g115801 +S'other' +p115803 +tp115804 +a(g115801 +g115803 +S'hand,' +p115805 +tp115806 +a(g115803 +g115805 +S"mary's" +p115807 +tp115808 +a(g115805 +g115807 +S'placement' +p115809 +tp115810 +a(g115807 +g115809 +S'in' +p115811 +tp115812 +a(g115809 +g115811 +S'the' +p115813 +tp115814 +a(g115811 +g115813 +S'corner' +p115815 +tp115816 +a(g115813 +g115815 +S'of' +p115817 +tp115818 +a(g115815 +g115817 +S'a' +p115819 +tp115820 +a(g115817 +g115819 +S'room' +p115821 +tp115822 +a(g115819 +g115821 +S'with' +p115823 +tp115824 +a(g115821 +g115823 +S'a' +p115825 +tp115826 +a(g115823 +g115825 +S'window' +p115827 +tp115828 +a(g115825 +g115827 +S'open' +p115829 +tp115830 +a(g115827 +g115829 +S'on' +p115831 +tp115832 +a(g115829 +g115831 +S'a' +p115833 +tp115834 +a(g115831 +g115833 +S'distant' +p115835 +tp115836 +a(g115833 +g115835 +S'view' +p115837 +tp115838 +a(g115835 +g115837 +S'indicates' +p115839 +tp115840 +a(g115837 +g115839 +S"dürer's" +p115841 +tp115842 +a(g115839 +g115841 +S'familiarity' +p115843 +tp115844 +a(g115841 +g115843 +S'with' +p115845 +tp115846 +a(g115843 +g115845 +S'netherlandish' +p115847 +tp115848 +a(g115845 +g115847 +S'devotional' +p115849 +tp115850 +a(g115847 +g115849 +S'images.' +p115851 +tp115852 +a(g115849 +g115851 +S'the' +p115853 +tp115854 +a(g115851 +g115853 +S'minute' +p115855 +tp115856 +a(g115853 +g115855 +S'treatment' +p115857 +tp115858 +a(g115855 +g115857 +S'of' +p115859 +tp115860 +a(g115857 +g115859 +S'the' +p115861 +tp115862 +a(g115859 +g115861 +S'alpine' +p115863 +tp115864 +a(g115861 +g115863 +S'landscape' +p115865 +tp115866 +a(g115863 +g115865 +S'and' +p115867 +tp115868 +a(g115865 +g115867 +S'the' +p115869 +tp115870 +a(g115867 +g115869 +S'careful' +p115871 +tp115872 +a(g115869 +g115871 +S'delineation' +p115873 +tp115874 +a(g115871 +g115873 +S'of' +p115875 +tp115876 +a(g115873 +g115875 +S'all' +p115877 +tp115878 +a(g115875 +g115877 +S'textures' +p115879 +tp115880 +a(g115877 +g115879 +S'and' +p115881 +tp115882 +a(g115879 +g115881 +S'surfaces' +p115883 +tp115884 +a(g115881 +g115883 +S'equally' +p115885 +tp115886 +a(g115883 +g115885 +S'remind' +p115887 +tp115888 +a(g115885 +g115887 +S'one' +p115889 +tp115890 +a(g115887 +g115889 +S'of' +p115891 +tp115892 +a(g115889 +g115891 +S"dürer's" +p115893 +tp115894 +a(g115891 +g115893 +S'persistent' +p115895 +tp115896 +a(g115893 +g115895 +S'fascination' +p115897 +tp115898 +a(g115895 +g115897 +S'with' +p115899 +tp115900 +a(g115897 +g115899 +S'the' +p115901 +tp115902 +a(g115899 +g115901 +S"north's" +p115903 +tp115904 +a(g115901 +g115903 +S'tradition' +p115905 +tp115906 +a(g115903 +g115905 +S'of' +p115907 +tp115908 +a(g115905 +g115907 +S'visual' +p115909 +tp115910 +a(g115907 +g115909 +S'exactitude.' +p115911 +tp115912 +a(g115909 +g115911 +S'the' +p115913 +tp115914 +a(g115911 +g115913 +S'this' +p115915 +tp115916 +a(g115913 +g115915 +S'scene' +p115917 +tp115918 +a(g115915 +g115917 +S'is' +p115919 +tp115920 +a(g115917 +g115919 +S'painted' +p115921 +tp115922 +a(g115919 +g115921 +S'on' +p115923 +tp115924 +a(g115921 +g115923 +S'the' +p115925 +tp115926 +a(g115923 +g115925 +S'reverse' +p115927 +tp115928 +a(g115925 +g115927 +S'side' +p115929 +tp115930 +a(g115927 +g115929 +S'of' +p115931 +tp115932 +a(g115929 +g115931 +S"dürer's" +p115933 +tp115934 +a(g115931 +g115933 +S'this' +p115935 +tp115936 +a(g115933 +g115935 +S'scene' +p115937 +tp115938 +a(g115935 +g115937 +S'was' +p115939 +tp115940 +a(g115937 +g115939 +S'important' +p115941 +tp115942 +a(g115939 +g115941 +S'for' +p115943 +tp115944 +a(g115941 +g115943 +S'the' +p115945 +tp115946 +a(g115943 +g115945 +S'moral' +p115947 +tp115948 +a(g115945 +g115947 +S'lesson' +p115949 +tp115950 +a(g115947 +g115949 +S'it' +p115951 +tp115952 +a(g115949 +g115951 +S'taught.' +p115953 +tp115954 +a(g115951 +g115953 +S'like' +p115955 +tp115956 +a(g115953 +g115955 +S'the' +p115957 +tp115958 +a(g115955 +g115957 +S'story' +p115959 +tp115960 +a(g115957 +g115959 +S'of' +p115961 +tp115962 +a(g115959 +g115961 +S'noah' +p115963 +tp115964 +a(g115961 +g115963 +S'and' +p115965 +tp115966 +a(g115963 +g115965 +S'the' +p115967 +tp115968 +a(g115965 +g115967 +S'flood,' +p115969 +tp115970 +a(g115967 +g115969 +S'that' +p115971 +tp115972 +a(g115969 +g115971 +S'of' +p115973 +tp115974 +a(g115971 +g115973 +S'lot' +p115975 +tp115976 +a(g115973 +g115975 +S'and' +p115977 +tp115978 +a(g115975 +g115977 +S'the' +p115979 +tp115980 +a(g115977 +g115979 +S'desolation' +p115981 +tp115982 +a(g115979 +g115981 +S'of' +p115983 +tp115984 +a(g115981 +g115983 +S'sodom' +p115985 +tp115986 +a(g115983 +g115985 +S'and' +p115987 +tp115988 +a(g115985 +g115987 +S'gomorrah' +p115989 +tp115990 +a(g115987 +g115989 +S'was' +p115991 +tp115992 +a(g115989 +g115991 +S'an' +p115993 +tp115994 +a(g115991 +g115993 +S'allegory' +p115995 +tp115996 +a(g115993 +g115995 +S'demonstrating' +p115997 +tp115998 +a(g115995 +g115997 +S'the' +p115999 +tp116000 +a(g115997 +g115999 +S'power' +p116001 +tp116002 +a(g115999 +g116001 +S'of' +p116003 +tp116004 +a(g116001 +g116003 +S'god' +p116005 +tp116006 +a(g116003 +g116005 +S'to' +p116007 +tp116008 +a(g116005 +g116007 +S'save' +p116009 +tp116010 +a(g116007 +g116009 +S'the' +p116011 +tp116012 +a(g116009 +g116011 +S'righteous.' +p116013 +tp116014 +a(g116011 +g116013 +S'since' +p116015 +tp116016 +a(g116013 +g116015 +S'the' +p116017 +tp116018 +a(g116015 +g116017 +S'combination' +p116019 +tp116020 +a(g116017 +g116019 +S'of' +p116021 +tp116022 +a(g116019 +g116021 +S'the' +p116023 +tp116024 +a(g116021 +g116023 +S'story' +p116025 +tp116026 +a(g116023 +g116025 +S'of' +p116027 +tp116028 +a(g116025 +g116027 +S'lot' +p116029 +tp116030 +a(g116027 +g116029 +S'with' +p116031 +tp116032 +a(g116029 +g116031 +S'the' +p116033 +tp116034 +a(g116031 +g116033 +S'depiction' +p116035 +tp116036 +a(g116033 +g116035 +S'of' +p116037 +tp116038 +a(g116035 +g116037 +S'the' +p116039 +tp116040 +a(g116037 +g116039 +S'virgin' +p116041 +tp116042 +a(g116039 +g116041 +S'and' +p116043 +tp116044 +a(g116041 +g116043 +S'child' +p116045 +tp116046 +a(g116043 +g116045 +S'is' +p116047 +tp116048 +a(g116045 +g116047 +S'extremely' +p116049 +tp116050 +a(g116047 +g116049 +S'unusual,' +p116051 +tp116052 +a(g116049 +g116051 +S'the' +p116053 +tp116054 +a(g116051 +g116053 +S'exact' +p116055 +tp116056 +a(g116053 +g116055 +S'relation' +p116057 +tp116058 +a(g116055 +g116057 +S'of' +p116059 +tp116060 +a(g116057 +g116059 +S'the' +p116061 +tp116062 +a(g116059 +g116061 +S'two' +p116063 +tp116064 +a(g116061 +g116063 +S'images' +p116065 +tp116066 +a(g116063 +g116065 +S'remains' +p116067 +tp116068 +a(g116065 +g116067 +S'unclear.' +p116069 +tp116070 +a(g116067 +g116069 +S'however,' +p116071 +tp116072 +a(g116069 +g116071 +S'they' +p116073 +tp116074 +a(g116071 +g116073 +S'could' +p116075 +tp116076 +a(g116073 +g116075 +S'be' +p116077 +tp116078 +a(g116075 +g116077 +S'understood' +p116079 +tp116080 +a(g116077 +g116079 +S'as' +p116081 +tp116082 +a(g116079 +g116081 +S'two' +p116083 +tp116084 +a(g116081 +g116083 +S'examples' +p116085 +tp116086 +a(g116083 +g116085 +S'of' +p116087 +tp116088 +a(g116085 +g116087 +S'the' +p116089 +tp116090 +a(g116087 +g116089 +S'value' +p116091 +tp116092 +a(g116089 +g116091 +S'of' +p116093 +tp116094 +a(g116091 +g116093 +S'a' +p116095 +tp116096 +a(g116093 +g116095 +S'just' +p116097 +tp116098 +a(g116095 +g116097 +S'life' +p116099 +tp116100 +a(g116097 +g116099 +S'and' +p116101 +tp116102 +a(g116099 +g116101 +S'of' +p116103 +tp116104 +a(g116101 +g116103 +S'the' +p116105 +tp116106 +a(g116103 +g116105 +S'pervasive' +p116107 +tp116108 +a(g116105 +g116107 +S'grace' +p116109 +tp116110 +a(g116107 +g116109 +S'of' +p116111 +tp116112 +a(g116109 +g116111 +S'god,' +p116113 +tp116114 +a(g116111 +g116113 +S'especially' +p116115 +tp116116 +a(g116113 +g116115 +S'if' +p116117 +tp116118 +a(g116115 +g116117 +S'the' +p116119 +tp116120 +a(g116117 +g116119 +S'although' +p116121 +tp116122 +a(g116119 +g116121 +S'the' +p116123 +tp116124 +a(g116121 +g116123 +S"sitter's" +p116125 +tp116126 +a(g116123 +g116125 +S'identity' +p116127 +tp116128 +a(g116125 +g116127 +S'is' +p116129 +tp116130 +a(g116127 +g116129 +S'not' +p116131 +tp116132 +a(g116129 +g116131 +S'verified,' +p116133 +tp116134 +a(g116131 +g116133 +S'he' +p116135 +tp116136 +a(g116133 +g116135 +S'is' +p116137 +tp116138 +a(g116135 +g116137 +S'possibly' +p116139 +tp116140 +a(g116137 +g116139 +S'johann' +p116141 +tp116142 +a(g116139 +g116141 +S'dorsch,' +p116143 +tp116144 +a(g116141 +g116143 +S'a' +p116145 +tp116146 +a(g116143 +g116145 +S'cleric' +p116147 +tp116148 +a(g116145 +g116147 +S'in' +p116149 +tp116150 +a(g116147 +g116149 +S'nuremberg.' +p116151 +tp116152 +a(g116149 +g116151 +S'the' +p116153 +tp116154 +a(g116151 +g116153 +S"clergyman's" +p116155 +tp116156 +a(g116153 +g116155 +S'ardor,' +p116157 +tp116158 +a(g116155 +g116157 +S'spiritual' +p116159 +tp116160 +a(g116157 +g116159 +S'zeal,' +p116161 +tp116162 +a(g116159 +g116161 +S'and' +p116163 +tp116164 +a(g116161 +g116163 +S'intense' +p116165 +tp116166 +a(g116163 +g116165 +S'determination' +p116167 +tp116168 +a(g116165 +g116167 +S'are' +p116169 +tp116170 +a(g116167 +g116169 +S'communicated' +p116171 +tp116172 +a(g116169 +g116171 +S'through' +p116173 +tp116174 +a(g116171 +g116173 +S'the' +p116175 +tp116176 +a(g116173 +g116175 +S'turn' +p116177 +tp116178 +a(g116175 +g116177 +S'of' +p116179 +tp116180 +a(g116177 +g116179 +S'the' +p116181 +tp116182 +a(g116179 +g116181 +S'head,' +p116183 +tp116184 +a(g116181 +g116183 +S'the' +p116185 +tp116186 +a(g116183 +g116185 +S'fixed,' +p116187 +tp116188 +a(g116185 +g116187 +S'staring' +p116189 +tp116190 +a(g116187 +g116189 +S'eyes,' +p116191 +tp116192 +a(g116189 +g116191 +S'and' +p116193 +tp116194 +a(g116191 +g116193 +S'the' +p116195 +tp116196 +a(g116193 +g116195 +S'tight,' +p116197 +tp116198 +a(g116195 +g116197 +S'compressed' +p116199 +tp116200 +a(g116197 +g116199 +S'lips.' +p116201 +tp116202 +a(g116199 +g116201 +S'with' +p116203 +tp116204 +a(g116201 +g116203 +S'great' +p116205 +tp116206 +a(g116203 +g116205 +S'respect' +p116207 +tp116208 +a(g116205 +g116207 +S'for' +p116209 +tp116210 +a(g116207 +g116209 +S'reality,' +p116211 +tp116212 +a(g116209 +g116211 +S'dürer' +p116213 +tp116214 +a(g116211 +g116213 +S'has' +p116215 +tp116216 +a(g116213 +g116215 +S'recorded' +p116217 +tp116218 +a(g116215 +g116217 +S'every' +p116219 +tp116220 +a(g116217 +g116219 +S'detail' +p116221 +tp116222 +a(g116219 +g116221 +S'of' +p116223 +tp116224 +a(g116221 +g116223 +S'the' +p116225 +tp116226 +a(g116223 +g116225 +S"man's" +p116227 +tp116228 +a(g116225 +g116227 +S'appearance' +p116229 +tp116230 +a(g116227 +g116229 +S'regardless' +p116231 +tp116232 +a(g116229 +g116231 +S'of' +p116233 +tp116234 +a(g116231 +g116233 +S'how' +p116235 +tp116236 +a(g116233 +g116235 +S'small' +p116237 +tp116238 +a(g116235 +g116237 +S'or' +p116239 +tp116240 +a(g116237 +g116239 +S'unimportant' +p116241 +tp116242 +a(g116239 +g116241 +S'it' +p116243 +tp116244 +a(g116241 +g116243 +S'may' +p116245 +tp116246 +a(g116243 +g116245 +S'be:' +p116247 +tp116248 +a(g116245 +g116247 +S'the' +p116249 +tp116250 +a(g116247 +g116249 +S'wrinkles' +p116251 +tp116252 +a(g116249 +g116251 +S'and' +p116253 +tp116254 +a(g116251 +g116253 +S'lines' +p116255 +tp116256 +a(g116253 +g116255 +S'of' +p116257 +tp116258 +a(g116255 +g116257 +S'the' +p116259 +tp116260 +a(g116257 +g116259 +S'face,' +p116261 +tp116262 +a(g116259 +g116261 +S'the' +p116263 +tp116264 +a(g116261 +g116263 +S'individual' +p116265 +tp116266 +a(g116263 +g116265 +S'strands' +p116267 +tp116268 +a(g116265 +g116267 +S'of' +p116269 +tp116270 +a(g116267 +g116269 +S'fine' +p116271 +tp116272 +a(g116269 +g116271 +S'hair,' +p116273 +tp116274 +a(g116271 +g116273 +S'the' +p116275 +tp116276 +a(g116273 +g116275 +S'coarse' +p116277 +tp116278 +a(g116275 +g116277 +S'skin' +p116279 +tp116280 +a(g116277 +g116279 +S'texture,' +p116281 +tp116282 +a(g116279 +g116281 +S'and' +p116283 +tp116284 +a(g116281 +g116283 +S'even' +p116285 +tp116286 +a(g116283 +g116285 +S'the' +p116287 +tp116288 +a(g116285 +g116287 +S'reflection' +p116289 +tp116290 +a(g116287 +g116289 +S'of' +p116291 +tp116292 +a(g116289 +g116291 +S'window' +p116293 +tp116294 +a(g116291 +g116293 +S'panes' +p116295 +tp116296 +a(g116293 +g116295 +S'in' +p116297 +tp116298 +a(g116295 +g116297 +S'the' +p116299 +tp116300 +a(g116297 +g116299 +S'irises' +p116301 +tp116302 +a(g116299 +g116301 +S'of' +p116303 +tp116304 +a(g116301 +g116303 +S'the' +p116305 +tp116306 +a(g116303 +g116305 +S'eyes.' +p116307 +tp116308 +a(g116305 +g116307 +S'this' +p116309 +tp116310 +a(g116307 +g116309 +S'incisive' +p116311 +tp116312 +a(g116309 +g116311 +S'clarity' +p116313 +tp116314 +a(g116311 +g116313 +S'and' +p116315 +tp116316 +a(g116313 +g116315 +S'accuracy' +p116317 +tp116318 +a(g116315 +g116317 +S'derive' +p116319 +tp116320 +a(g116317 +g116319 +S'in' +p116321 +tp116322 +a(g116319 +g116321 +S'large' +p116323 +tp116324 +a(g116321 +g116323 +S'part' +p116325 +tp116326 +a(g116323 +g116325 +S'from' +p116327 +tp116328 +a(g116325 +g116327 +S"dürer's" +p116329 +tp116330 +a(g116327 +g116329 +S'experience' +p116331 +tp116332 +a(g116329 +g116331 +S'in' +p116333 +tp116334 +a(g116331 +g116333 +S'the' +p116335 +tp116336 +a(g116333 +g116335 +S'graphic' +p116337 +tp116338 +a(g116335 +g116337 +S'arts.' +p116339 +tp116340 +a(g116337 +g116339 +S'the' +p116341 +tp116342 +a(g116339 +g116341 +S'portrait' +p116343 +tp116344 +a(g116341 +g116343 +S'is' +p116345 +tp116346 +a(g116343 +g116345 +S'of' +p116347 +tp116348 +a(g116345 +g116347 +S'further' +p116349 +tp116350 +a(g116347 +g116349 +S'interest' +p116351 +tp116352 +a(g116349 +g116351 +S'for' +p116353 +tp116354 +a(g116351 +g116353 +S'having' +p116355 +tp116356 +a(g116353 +g116355 +S'been' +p116357 +tp116358 +a(g116355 +g116357 +S'painted' +p116359 +tp116360 +a(g116357 +g116359 +S'on' +p116361 +tp116362 +a(g116359 +g116361 +S'parchment' +p116363 +tp116364 +a(g116361 +g116363 +S'rather' +p116365 +tp116366 +a(g116363 +g116365 +S'than' +p116367 +tp116368 +a(g116365 +g116367 +S'on' +p116369 +tp116370 +a(g116367 +g116369 +S'wood,' +p116371 +tp116372 +a(g116369 +g116371 +S'which' +p116373 +tp116374 +a(g116371 +g116373 +S'was' +p116375 +tp116376 +a(g116373 +g116375 +S'still' +p116377 +tp116378 +a(g116375 +g116377 +S'the' +p116379 +tp116380 +a(g116377 +g116379 +S'most' +p116381 +tp116382 +a(g116379 +g116381 +S'common' +p116383 +tp116384 +a(g116381 +g116383 +S'support.' +p116385 +tp116386 +a(g116383 +g116385 +S'experimenting' +p116387 +tp116388 +a(g116385 +g116387 +S'with' +p116389 +tp116390 +a(g116387 +g116389 +S'techniques' +p116391 +tp116392 +a(g116389 +g116391 +S'and' +p116393 +tp116394 +a(g116391 +g116393 +S'materials,' +p116395 +tp116396 +a(g116393 +g116395 +S'dürer' +p116397 +tp116398 +a(g116395 +g116397 +S'also' +p116399 +tp116400 +a(g116397 +g116399 +S'used' +p116401 +tp116402 +a(g116399 +g116401 +S'silk' +p116403 +tp116404 +a(g116401 +g116403 +S'and' +p116405 +tp116406 +a(g116403 +g116405 +S'linen' +p116407 +tp116408 +a(g116405 +g116407 +S'at' +p116409 +tp116410 +a(g116407 +g116409 +S'times.' +p116411 +tp116412 +a(g116409 +g116411 +S'the' +p116413 +tp116414 +a(g116411 +g116413 +S'animal' +p116415 +tp116416 +a(g116413 +g116415 +S'skin' +p116417 +tp116418 +a(g116415 +g116417 +S'gives' +p116419 +tp116420 +a(g116417 +g116419 +S'the' +p116421 +tp116422 +a(g116419 +g116421 +S'paint' +p116423 +tp116424 +a(g116421 +g116423 +S'surface' +p116425 +tp116426 +a(g116423 +g116425 +S'a' +p116427 +tp116428 +a(g116425 +g116427 +S'fine,' +p116429 +tp116430 +a(g116427 +g116429 +S'smooth' +p116431 +tp116432 +a(g116429 +g116431 +S'quality' +p116433 +tp116434 +a(g116431 +g116433 +S'and' +p116435 +tp116436 +a(g116433 +g116435 +S'lends' +p116437 +tp116438 +a(g116435 +g116437 +S'amazing' +p116439 +tp116440 +a(g116437 +g116439 +S'richness' +p116441 +tp116442 +a(g116439 +g116441 +S'to' +p116443 +tp116444 +a(g116441 +g116443 +S'the' +p116445 +tp116446 +a(g116443 +g116445 +S'oil' +p116447 +tp116448 +a(g116445 +g116447 +S'colors.' +p116449 +tp116450 +a(g116447 +g116449 +S'as' +p116451 +tp116452 +a(g116449 +g116451 +S'europeans' +p116453 +tp116454 +a(g116451 +g116453 +S'came' +p116455 +tp116456 +a(g116453 +g116455 +S'to' +p116457 +tp116458 +a(g116455 +g116457 +S'understand' +p116459 +tp116460 +a(g116457 +g116459 +S'the' +p116461 +tp116462 +a(g116459 +g116461 +S'world' +p116463 +tp116464 +a(g116461 +g116463 +S'through' +p116465 +tp116466 +a(g116463 +g116465 +S'printed' +p116467 +tp116468 +a(g116465 +g116467 +S'maps' +p116469 +tp116470 +a(g116467 +g116469 +S'and' +p116471 +tp116472 +a(g116469 +g116471 +S'geographies,' +p116473 +tp116474 +a(g116471 +g116473 +S'landscape' +p116475 +tp116476 +a(g116473 +g116475 +S'emerged' +p116477 +tp116478 +a(g116475 +g116477 +S'as' +p116479 +tp116480 +a(g116477 +g116479 +S'a' +p116481 +tp116482 +a(g116479 +g116481 +S'popular' +p116483 +tp116484 +a(g116481 +g116483 +S'subject.' +p116485 +tp116486 +a(g116483 +g116485 +S'the' +p116487 +tp116488 +a(g116485 +g116487 +S'italian' +p116489 +tp116490 +a(g116487 +g116489 +S'artist' +p116491 +tp116492 +a(g116489 +g116491 +S'and' +p116493 +tp116494 +a(g116491 +g116493 +S'biographer' +p116495 +tp116496 +a(g116493 +g116495 +S'this' +p116497 +tp116498 +a(g116495 +g116497 +S'painting' +p116499 +tp116500 +a(g116497 +g116499 +S'may' +p116501 +tp116502 +a(g116499 +g116501 +S'be' +p116503 +tp116504 +a(g116501 +g116503 +S'the' +p116505 +tp116506 +a(g116503 +g116505 +S'work' +p116507 +tp116508 +a(g116505 +g116507 +S'of' +p116509 +tp116510 +a(g116507 +g116509 +S'matthys' +p116511 +tp116512 +a(g116509 +g116511 +S'cock,' +p116513 +tp116514 +a(g116511 +g116513 +S'whose' +p116515 +tp116516 +a(g116513 +g116515 +S'brother' +p116517 +tp116518 +a(g116515 +g116517 +S'legends' +p116519 +tp116520 +a(g116517 +g116519 +S'of' +p116521 +tp116522 +a(g116519 +g116521 +S'anthony' +p116523 +tp116524 +a(g116521 +g116523 +S'abbot' +p116525 +tp116526 +a(g116523 +g116525 +S'relate' +p116527 +tp116528 +a(g116525 +g116527 +S'how' +p116529 +tp116530 +a(g116527 +g116529 +S'the' +p116531 +tp116532 +a(g116529 +g116531 +S'pious' +p116533 +tp116534 +a(g116531 +g116533 +S'early' +p116535 +tp116536 +a(g116533 +g116535 +S'christian,' +p116537 +tp116538 +a(g116535 +g116537 +S'forsaking' +p116539 +tp116540 +a(g116537 +g116539 +S'society,' +p116541 +tp116542 +a(g116539 +g116541 +S'journeyed' +p116543 +tp116544 +a(g116541 +g116543 +S'into' +p116545 +tp116546 +a(g116543 +g116545 +S'the' +p116547 +tp116548 +a(g116545 +g116547 +S'wilderness' +p116549 +tp116550 +a(g116547 +g116549 +S'to' +p116551 +tp116552 +a(g116549 +g116551 +S'seek' +p116553 +tp116554 +a(g116551 +g116553 +S'god.' +p116555 +tp116556 +a(g116553 +g116555 +S'anthony' +p116557 +tp116558 +a(g116555 +g116557 +S'appears' +p116559 +tp116560 +a(g116557 +g116559 +S'twice' +p116561 +tp116562 +a(g116559 +g116561 +S'in' +p116563 +tp116564 +a(g116561 +g116563 +S'this' +p116565 +tp116566 +a(g116563 +g116565 +S'painting;' +p116567 +tp116568 +a(g116565 +g116567 +S'in' +p116569 +tp116570 +a(g116567 +g116569 +S'his' +p116571 +tp116572 +a(g116569 +g116571 +S'foreground' +p116573 +tp116574 +a(g116571 +g116573 +S'retreat,' +p116575 +tp116576 +a(g116573 +g116575 +S'he' +p116577 +tp116578 +a(g116575 +g116577 +S'resists' +p116579 +tp116580 +a(g116577 +g116579 +S'the' +p116581 +tp116582 +a(g116579 +g116581 +S"devil's" +p116583 +tp116584 +a(g116581 +g116583 +S'manifold' +p116585 +tp116586 +a(g116583 +g116585 +S'temptations.' +p116587 +tp116588 +a(g116585 +g116587 +S'after' +p116589 +tp116590 +a(g116587 +g116589 +S'failing' +p116591 +tp116592 +a(g116589 +g116591 +S'to' +p116593 +tp116594 +a(g116591 +g116593 +S'yield' +p116595 +tp116596 +a(g116593 +g116595 +S'to' +p116597 +tp116598 +a(g116595 +g116597 +S'the' +p116599 +tp116600 +a(g116597 +g116599 +S'evil' +p116601 +tp116602 +a(g116599 +g116601 +S'lures,' +p116603 +tp116604 +a(g116601 +g116603 +S'he' +p116605 +tp116606 +a(g116603 +g116605 +S'is' +p116607 +tp116608 +a(g116605 +g116607 +S'shown' +p116609 +tp116610 +a(g116607 +g116609 +S'again' +p116611 +tp116612 +a(g116609 +g116611 +S'being' +p116613 +tp116614 +a(g116611 +g116613 +S'physically' +p116615 +tp116616 +a(g116613 +g116615 +S'tortured' +p116617 +tp116618 +a(g116615 +g116617 +S'while' +p116619 +tp116620 +a(g116617 +g116619 +S'carried' +p116621 +tp116622 +a(g116619 +g116621 +S'aloft' +p116623 +tp116624 +a(g116621 +g116623 +S'by' +p116625 +tp116626 +a(g116623 +g116625 +S'demons.' +p116627 +tp116628 +a(g116625 +g116627 +S'yet,' +p116629 +tp116630 +a(g116627 +g116629 +S'the' +p116631 +tp116632 +a(g116629 +g116631 +S'saint' +p116633 +tp116634 +a(g116631 +g116633 +S'was' +p116635 +tp116636 +a(g116633 +g116635 +S'saved' +p116637 +tp116638 +a(g116635 +g116637 +S'by' +p116639 +tp116640 +a(g116637 +g116639 +S'the' +p116641 +tp116642 +a(g116639 +g116641 +S'purity' +p116643 +tp116644 +a(g116641 +g116643 +S'of' +p116645 +tp116646 +a(g116643 +g116645 +S'his' +p116647 +tp116648 +a(g116645 +g116647 +S'soul.' +p116649 +tp116650 +a(g116647 +g116649 +S'the' +p116651 +tp116652 +a(g116649 +g116651 +S'religious' +p116653 +tp116654 +a(g116651 +g116653 +S'subject' +p116655 +tp116656 +a(g116653 +g116655 +S'is' +p116657 +tp116658 +a(g116655 +g116657 +S'presented' +p116659 +tp116660 +a(g116657 +g116659 +S'in' +p116661 +tp116662 +a(g116659 +g116661 +S'a' +p116663 +tp116664 +a(g116661 +g116663 +S'revolutionary' +p116665 +tp116666 +a(g116663 +g116665 +S'fashion;' +p116667 +tp116668 +a(g116665 +g116667 +S'generations' +p116669 +tp116670 +a(g116667 +g116669 +S'of' +p116671 +tp116672 +a(g116669 +g116671 +S'earlier' +p116673 +tp116674 +a(g116671 +g116673 +S'artists' +p116675 +tp116676 +a(g116673 +g116675 +S'had' +p116677 +tp116678 +a(g116675 +g116677 +S'tended' +p116679 +tp116680 +a(g116677 +g116679 +S'to' +p116681 +tp116682 +a(g116679 +g116681 +S'treat' +p116683 +tp116684 +a(g116681 +g116683 +S'landscape' +p116685 +tp116686 +a(g116683 +g116685 +S'as' +p116687 +tp116688 +a(g116685 +g116687 +S'an' +p116689 +tp116690 +a(g116687 +g116689 +S'unobtrusive' +p116691 +tp116692 +a(g116689 +g116691 +S'backdrop' +p116693 +tp116694 +a(g116691 +g116693 +S'of' +p116695 +tp116696 +a(g116693 +g116695 +S'secondary' +p116697 +tp116698 +a(g116695 +g116697 +S'importance,' +p116699 +tp116700 +a(g116697 +g116699 +S'whereas' +p116701 +tp116702 +a(g116699 +g116701 +S'now' +p116703 +tp116704 +a(g116701 +g116703 +S'the' +p116705 +tp116706 +a(g116703 +g116705 +S'landscape' +p116707 +tp116708 +a(g116705 +g116707 +S'dominates' +p116709 +tp116710 +a(g116707 +g116709 +S'the' +p116711 +tp116712 +a(g116709 +g116711 +S'subject' +p116713 +tp116714 +a(g116711 +g116713 +S'to' +p116715 +tp116716 +a(g116713 +g116715 +S'such' +p116717 +tp116718 +a(g116715 +g116717 +S'an' +p116719 +tp116720 +a(g116717 +g116719 +S'extent' +p116721 +tp116722 +a(g116719 +g116721 +S'that' +p116723 +tp116724 +a(g116721 +g116723 +S'the' +p116725 +tp116726 +a(g116723 +g116725 +S'temptation' +p116727 +tp116728 +a(g116725 +g116727 +S'of' +p116729 +tp116730 +a(g116727 +g116729 +S'saint' +p116731 +tp116732 +a(g116729 +g116731 +S'anthony' +p116733 +tp116734 +a(g116731 +g116733 +S'seems' +p116735 +tp116736 +a(g116733 +g116735 +S'only' +p116737 +tp116738 +a(g116735 +g116737 +S'incidental.' +p116739 +tp116740 +a(g116737 +g116739 +S'this' +p116741 +tp116742 +a(g116739 +g116741 +S'change' +p116743 +tp116744 +a(g116741 +g116743 +S'of' +p116745 +tp116746 +a(g116743 +g116745 +S'emphasis' +p116747 +tp116748 +a(g116745 +g116747 +S'marks' +p116749 +tp116750 +a(g116747 +g116749 +S'an' +p116751 +tp116752 +a(g116749 +g116751 +S'important' +p116753 +tp116754 +a(g116751 +g116753 +S'advance' +p116755 +tp116756 +a(g116753 +g116755 +S'toward' +p116757 +tp116758 +a(g116755 +g116757 +S'the' +p116759 +tp116760 +a(g116757 +g116759 +S'development' +p116761 +tp116762 +a(g116759 +g116761 +S'of' +p116763 +tp116764 +a(g116761 +g116763 +S'pure' +p116765 +tp116766 +a(g116763 +g116765 +S'landscape' +p116767 +tp116768 +a(g116765 +g116767 +S'painting,' +p116769 +tp116770 +a(g116767 +g116769 +S'in' +p116771 +tp116772 +a(g116769 +g116771 +S'which' +p116773 +tp116774 +a(g116771 +g116773 +S'pieter' +p116775 +tp116776 +a(g116773 +g116775 +S'bruegel' +p116777 +tp116778 +a(g116775 +g116777 +S'the' +p116779 +tp116780 +a(g116777 +g116779 +S'elder' +p116781 +tp116782 +a(g116779 +g116781 +S'was' +p116783 +tp116784 +a(g116781 +g116783 +S'an' +p116785 +tp116786 +a(g116783 +g116785 +S'instrumental' +p116787 +tp116788 +a(g116785 +g116787 +S'figure.' +p116789 +tp116790 +a(g116787 +g116789 +S'already,' +p116791 +tp116792 +a(g116789 +g116791 +S'that' +p116793 +tp116794 +a(g116791 +g116793 +S'delight' +p116795 +tp116796 +a(g116793 +g116795 +S'in' +p116797 +tp116798 +a(g116795 +g116797 +S'the' +p116799 +tp116800 +a(g116797 +g116799 +S'natural' +p116801 +tp116802 +a(g116799 +g116801 +S'world' +p116803 +tp116804 +a(g116801 +g116803 +S'is' +p116805 +tp116806 +a(g116803 +g116805 +S'apparent' +p116807 +tp116808 +a(g116805 +g116807 +S'here' +p116809 +tp116810 +a(g116807 +g116809 +S'in' +p116811 +tp116812 +a(g116809 +g116811 +S'the' +p116813 +tp116814 +a(g116811 +g116813 +S'shadowy' +p116815 +tp116816 +a(g116813 +g116815 +S'depths' +p116817 +tp116818 +a(g116815 +g116817 +S'of' +p116819 +tp116820 +a(g116817 +g116819 +S'leafy' +p116821 +tp116822 +a(g116819 +g116821 +S'forests,' +p116823 +tp116824 +a(g116821 +g116823 +S'contrasting' +p116825 +tp116826 +a(g116823 +g116825 +S'with' +p116827 +tp116828 +a(g116825 +g116827 +S'open' +p116829 +tp116830 +a(g116827 +g116829 +S'vistas' +p116831 +tp116832 +a(g116829 +g116831 +S'of' +p116833 +tp116834 +a(g116831 +g116833 +S'waterways,' +p116835 +tp116836 +a(g116833 +g116835 +S'villages,' +p116837 +tp116838 +a(g116835 +g116837 +S'and' +p116839 +tp116840 +a(g116837 +g116839 +S'towns' +p116841 +tp116842 +a(g116839 +g116841 +S'bathed' +p116843 +tp116844 +a(g116841 +g116843 +S'in' +p116845 +tp116846 +a(g116843 +g116845 +S'pearly' +p116847 +tp116848 +a(g116845 +g116847 +S'light.' +p116849 +tp116850 +a(g116847 +g116849 +S'perhaps' +p116851 +tp116852 +a(g116849 +g116851 +S'the' +p116853 +tp116854 +a(g116851 +g116853 +S'juxtaposition' +p116855 +tp116856 +a(g116853 +g116855 +S'of' +p116857 +tp116858 +a(g116855 +g116857 +S'a' +p116859 +tp116860 +a(g116857 +g116859 +S'peaceful' +p116861 +tp116862 +a(g116859 +g116861 +S'landscape' +p116863 +tp116864 +a(g116861 +g116863 +S'with' +p116865 +tp116866 +a(g116863 +g116865 +S'the' +p116867 +tp116868 +a(g116865 +g116867 +S'temptations' +p116869 +tp116870 +a(g116867 +g116869 +S'and' +p116871 +tp116872 +a(g116869 +g116871 +S'attacks' +p116873 +tp116874 +a(g116871 +g116873 +S'of' +p116875 +tp116876 +a(g116873 +g116875 +S'demons' +p116877 +tp116878 +a(g116875 +g116877 +S'was' +p116879 +tp116880 +a(g116877 +g116879 +S'a' +p116881 +tp116882 +a(g116879 +g116881 +S'subtle' +p116883 +tp116884 +a(g116881 +g116883 +S'statement' +p116885 +tp116886 +a(g116883 +g116885 +S'by' +p116887 +tp116888 +a(g116885 +g116887 +S'this' +p116889 +tp116890 +a(g116887 +g116889 +S'bruegel' +p116891 +tp116892 +a(g116889 +g116891 +S'follower' +p116893 +tp116894 +a(g116891 +g116893 +S'on' +p116895 +tp116896 +a(g116893 +g116895 +S'the' +p116897 +tp116898 +a(g116895 +g116897 +S'political' +p116899 +tp116900 +a(g116897 +g116899 +S'and' +p116901 +tp116902 +a(g116899 +g116901 +S'moral' +p116903 +tp116904 +a(g116901 +g116903 +S'brutalities' +p116905 +tp116906 +a(g116903 +g116905 +S'of' +p116907 +tp116908 +a(g116905 +g116907 +S'his' +p116909 +tp116910 +a(g116907 +g116909 +S'time.' +p116911 +tp116912 +a(g116909 +g116911 +S'possibly' +p116913 +tp116914 +a(g116911 +g116913 +S'saint' +p116915 +tp116916 +a(g116913 +g116915 +S'anthony' +p116917 +tp116918 +a(g116915 +g116917 +S'is' +p116919 +tp116920 +a(g116917 +g116919 +S'meant' +p116921 +tp116922 +a(g116919 +g116921 +S'allegorically' +p116923 +tp116924 +a(g116921 +g116923 +S'to' +p116925 +tp116926 +a(g116923 +g116925 +S'represent' +p116927 +tp116928 +a(g116925 +g116927 +S'everyman' +p116929 +tp116930 +a(g116927 +g116929 +S'caught' +p116931 +tp116932 +a(g116929 +g116931 +S'up' +p116933 +tp116934 +a(g116931 +g116933 +S'in' +p116935 +tp116936 +a(g116933 +g116935 +S'a' +p116937 +tp116938 +a(g116935 +g116937 +S'world' +p116939 +tp116940 +a(g116937 +g116939 +S'gone' +p116941 +tp116942 +a(g116939 +g116941 +S'mad.' +p116943 +tp116944 +a(g116941 +g116943 +S'according' +p116945 +tp116946 +a(g116943 +g116945 +S'to' +p116947 +tp116948 +a(g116945 +g116947 +S'roman' +p116949 +tp116950 +a(g116947 +g116949 +S'mythology,' +p116951 +tp116952 +a(g116949 +g116951 +S'the' +p116953 +tp116954 +a(g116951 +g116953 +S'infant' +p116955 +tp116956 +a(g116953 +g116955 +S'jupiter' +p116957 +tp116958 +a(g116955 +g116957 +S'was' +p116959 +tp116960 +a(g116957 +g116959 +S'concealed' +p116961 +tp116962 +a(g116959 +g116961 +S'from' +p116963 +tp116964 +a(g116961 +g116963 +S'his' +p116965 +tp116966 +a(g116963 +g116965 +S'murderous' +p116967 +tp116968 +a(g116965 +g116967 +S'father' +p116969 +tp116970 +a(g116967 +g116969 +S'on' +p116971 +tp116972 +a(g116969 +g116971 +S'the' +p116973 +tp116974 +a(g116971 +g116973 +S'island' +p116975 +tp116976 +a(g116973 +g116975 +S'of' +p116977 +tp116978 +a(g116975 +g116977 +S'crete.' +p116979 +tp116980 +a(g116977 +g116979 +S'the' +p116981 +tp116982 +a(g116979 +g116981 +S'princess' +p116983 +tp116984 +a(g116981 +g116983 +S'amalthea' +p116985 +tp116986 +a(g116983 +g116985 +S'uses' +p116987 +tp116988 +a(g116985 +g116987 +S'a' +p116989 +tp116990 +a(g116987 +g116989 +S"goat's" +p116991 +tp116992 +a(g116989 +g116991 +S'horn,' +p116993 +tp116994 +a(g116991 +g116993 +S'or' +p116995 +tp116996 +a(g116993 +g116995 +S'cornucopia,' +p116997 +tp116998 +a(g116995 +g116997 +S'to' +p116999 +tp117000 +a(g116997 +g116999 +S'give' +p117001 +tp117002 +a(g116999 +g117001 +S'him' +p117003 +tp117004 +a(g117001 +g117003 +S'milk' +p117005 +tp117006 +a(g117003 +g117005 +S'to' +p117007 +tp117008 +a(g117005 +g117007 +S'drink,' +p117009 +tp117010 +a(g117007 +g117009 +S'while' +p117011 +tp117012 +a(g117009 +g117011 +S'her' +p117013 +tp117014 +a(g117011 +g117013 +S'sister' +p117015 +tp117016 +a(g117013 +g117015 +S'melissa' +p117017 +tp117018 +a(g117015 +g117017 +S'holds' +p117019 +tp117020 +a(g117017 +g117019 +S'a' +p117021 +tp117022 +a(g117019 +g117021 +S'honeycomb' +p117023 +tp117024 +a(g117021 +g117023 +S'for' +p117025 +tp117026 +a(g117023 +g117025 +S'him' +p117027 +tp117028 +a(g117025 +g117027 +S'to' +p117029 +tp117030 +a(g117027 +g117029 +S'eat.' +p117031 +tp117032 +a(g117029 +g117031 +S'thus' +p117033 +tp117034 +a(g117031 +g117033 +S'nurtured' +p117035 +tp117036 +a(g117033 +g117035 +S'in' +p117037 +tp117038 +a(g117035 +g117037 +S'secret,' +p117039 +tp117040 +a(g117037 +g117039 +S'jupiter' +p117041 +tp117042 +a(g117039 +g117041 +S'grew' +p117043 +tp117044 +a(g117041 +g117043 +S'to' +p117045 +tp117046 +a(g117043 +g117045 +S'manhood' +p117047 +tp117048 +a(g117045 +g117047 +S'and' +p117049 +tp117050 +a(g117047 +g117049 +S'overthrew' +p117051 +tp117052 +a(g117049 +g117051 +S'his' +p117053 +tp117054 +a(g117051 +g117053 +S'father' +p117055 +tp117056 +a(g117053 +g117055 +S'to' +p117057 +tp117058 +a(g117055 +g117057 +S'become' +p117059 +tp117060 +a(g117057 +g117059 +S'king' +p117061 +tp117062 +a(g117059 +g117061 +S'of' +p117063 +tp117064 +a(g117061 +g117063 +S'the' +p117065 +tp117066 +a(g117063 +g117065 +S'olympian' +p117067 +tp117068 +a(g117065 +g117067 +S'deities.' +p117069 +tp117070 +a(g117067 +g117069 +S'in' +p117071 +tp117072 +a(g117069 +g117071 +S'the' +p117073 +tp117074 +a(g117071 +g117073 +S'otherwise' +p117075 +tp117076 +a(g117073 +g117075 +S'muted' +p117077 +tp117078 +a(g117075 +g117077 +S'color' +p117079 +tp117080 +a(g117077 +g117079 +S'scheme,' +p117081 +tp117082 +a(g117079 +g117081 +S'the' +p117083 +tp117084 +a(g117081 +g117083 +S'princess' +p117085 +tp117086 +a(g117083 +g117085 +S'holding' +p117087 +tp117088 +a(g117085 +g117087 +S'jupiter' +p117089 +tp117090 +a(g117087 +g117089 +S'wears' +p117091 +tp117092 +a(g117089 +g117091 +S'pure' +p117093 +tp117094 +a(g117091 +g117093 +S'yellow' +p117095 +tp117096 +a(g117093 +g117095 +S'and' +p117097 +tp117098 +a(g117095 +g117097 +S'blue,' +p117099 +tp117100 +a(g117097 +g117099 +S'attracting' +p117101 +tp117102 +a(g117099 +g117101 +S'attention' +p117103 +tp117104 +a(g117101 +g117103 +S'to' +p117105 +tp117106 +a(g117103 +g117105 +S'the' +p117107 +tp117108 +a(g117105 +g117107 +S'main' +p117109 +tp117110 +a(g117107 +g117109 +S'character.' +p117111 +tp117112 +a(g117109 +g117111 +S"poussin's" +p117113 +tp117114 +a(g117111 +g117113 +S'coherent' +p117115 +tp117116 +a(g117113 +g117115 +S'compositions' +p117117 +tp117118 +a(g117115 +g117117 +S'and' +p117119 +tp117120 +a(g117117 +g117119 +S'lucid' +p117121 +tp117122 +a(g117119 +g117121 +S'color' +p117123 +tp117124 +a(g117121 +g117123 +S'contrasts' +p117125 +tp117126 +a(g117123 +g117125 +S'were' +p117127 +tp117128 +a(g117125 +g117127 +S'in' +p117129 +tp117130 +a(g117127 +g117129 +S'accord' +p117131 +tp117132 +a(g117129 +g117131 +S'with' +p117133 +tp117134 +a(g117131 +g117133 +S'a' +p117135 +tp117136 +a(g117133 +g117135 +S'belief' +p117137 +tp117138 +a(g117135 +g117137 +S'that' +p117139 +tp117140 +a(g117137 +g117139 +S'painting,' +p117141 +tp117142 +a(g117139 +g117141 +S'like' +p117143 +tp117144 +a(g117141 +g117143 +S'mathematics,' +p117145 +tp117146 +a(g117143 +g117145 +S'was' +p117147 +tp117148 +a(g117145 +g117147 +S'governed' +p117149 +tp117150 +a(g117147 +g117149 +S'by' +p117151 +tp117152 +a(g117149 +g117151 +S'absolute' +p117153 +tp117154 +a(g117151 +g117153 +S'logic.' +p117155 +tp117156 +a(g117153 +g117155 +S'to' +p117157 +tp117158 +a(g117155 +g117157 +S'obtain' +p117159 +tp117160 +a(g117157 +g117159 +S'these' +p117161 +tp117162 +a(g117159 +g117161 +S'calculated' +p117163 +tp117164 +a(g117161 +g117163 +S'effects,' +p117165 +tp117166 +a(g117163 +g117165 +S'poussin' +p117167 +tp117168 +a(g117165 +g117167 +S'often' +p117169 +tp117170 +a(g117167 +g117169 +S'constructed' +p117171 +tp117172 +a(g117169 +g117171 +S'a' +p117173 +tp117174 +a(g117171 +g117173 +S'theatrical' +p117175 +tp117176 +a(g117173 +g117175 +S'shadow' +p117177 +tp117178 +a(g117175 +g117177 +S'box' +p117179 +tp117180 +a(g117177 +g117179 +S'which,' +p117181 +tp117182 +a(g117179 +g117181 +S'filled' +p117183 +tp117184 +a(g117181 +g117183 +S'with' +p117185 +tp117186 +a(g117183 +g117185 +S'movable' +p117187 +tp117188 +a(g117185 +g117187 +S'wax' +p117189 +tp117190 +a(g117187 +g117189 +S'manikins,' +p117191 +tp117192 +a(g117189 +g117191 +S'served' +p117193 +tp117194 +a(g117191 +g117193 +S'as' +p117195 +tp117196 +a(g117193 +g117195 +S'a' +p117197 +tp117198 +a(g117195 +g117197 +S'model' +p117199 +tp117200 +a(g117197 +g117199 +S'for' +p117201 +tp117202 +a(g117199 +g117201 +S'his' +p117203 +tp117204 +a(g117201 +g117203 +S'final' +p117205 +tp117206 +a(g117203 +g117205 +S'picture.' +p117207 +tp117208 +a(g117205 +g117207 +S'ingres' +p117209 +tp117210 +a(g117207 +g117209 +S'painted' +p117211 +tp117212 +a(g117209 +g117211 +S'this' +p117213 +tp117214 +a(g117211 +g117213 +S'scene' +p117215 +tp117216 +a(g117213 +g117215 +S'while' +p117217 +tp117218 +a(g117215 +g117217 +S'he' +p117219 +tp117220 +a(g117217 +g117219 +S'was' +p117221 +tp117222 +a(g117219 +g117221 +S'living' +p117223 +tp117224 +a(g117221 +g117223 +S'in' +p117225 +tp117226 +a(g117223 +g117225 +S'italy.' +p117227 +tp117228 +a(g117225 +g117227 +S'the' +p117229 +tp117230 +a(g117227 +g117229 +S"painting's" +p117231 +tp117232 +a(g117229 +g117231 +S'extreme' +p117233 +tp117234 +a(g117231 +g117233 +S'visual' +p117235 +tp117236 +a(g117233 +g117235 +S'accuracy,' +p117237 +tp117238 +a(g117235 +g117237 +S'which' +p117239 +tp117240 +a(g117237 +g117239 +S'reproduces' +p117241 +tp117242 +a(g117239 +g117241 +S"michelangelo's" +p117243 +tp117244 +a(g117241 +g117243 +S'the' +p117245 +tp117246 +a(g117243 +g117245 +S'circumstances' +p117247 +tp117248 +a(g117245 +g117247 +S'of' +p117249 +tp117250 +a(g117247 +g117249 +S'the' +p117251 +tp117252 +a(g117249 +g117251 +S"work's" +p117253 +tp117254 +a(g117251 +g117253 +S'commission' +p117255 +tp117256 +a(g117253 +g117255 +S'are' +p117257 +tp117258 +a(g117255 +g117257 +S'somewhat' +p117259 +tp117260 +a(g117257 +g117259 +S'surprising,' +p117261 +tp117262 +a(g117259 +g117261 +S'since' +p117263 +tp117264 +a(g117261 +g117263 +S'ingres' +p117265 +tp117266 +a(g117263 +g117265 +S'painted' +p117267 +tp117268 +a(g117265 +g117267 +S'it' +p117269 +tp117270 +a(g117267 +g117269 +S'for' +p117271 +tp117272 +a(g117269 +g117271 +S'a' +p117273 +tp117274 +a(g117271 +g117273 +S'prominent' +p117275 +tp117276 +a(g117273 +g117275 +S'french' +p117277 +tp117278 +a(g117275 +g117277 +S'official' +p117279 +tp117280 +a(g117277 +g117279 +S'in' +p117281 +tp117282 +a(g117279 +g117281 +S'rome' +p117283 +tp117284 +a(g117281 +g117283 +S'who' +p117285 +tp117286 +a(g117283 +g117285 +S'might' +p117287 +tp117288 +a(g117285 +g117287 +S'have' +p117289 +tp117290 +a(g117287 +g117289 +S'been' +p117291 +tp117292 +a(g117289 +g117291 +S'expected' +p117293 +tp117294 +a(g117291 +g117293 +S'to' +p117295 +tp117296 +a(g117293 +g117295 +S'avoid' +p117297 +tp117298 +a(g117295 +g117297 +S'such' +p117299 +tp117300 +a(g117297 +g117299 +S'a' +p117301 +tp117302 +a(g117299 +g117301 +S'potentially' +p117303 +tp117304 +a(g117301 +g117303 +S'controversial' +p117305 +tp117306 +a(g117303 +g117305 +S'subject.' +p117307 +tp117308 +a(g117305 +g117307 +S'he' +p117309 +tp117310 +a(g117307 +g117309 +S'was' +p117311 +tp117312 +a(g117309 +g117311 +S'charles' +p117313 +tp117314 +a(g117311 +g117313 +S'marcotte,' +p117315 +tp117316 +a(g117313 +g117315 +S'a' +p117317 +tp117318 +a(g117315 +g117317 +S'good' +p117319 +tp117320 +a(g117317 +g117319 +S'friend' +p117321 +tp117322 +a(g117319 +g117321 +S'of' +p117323 +tp117324 +a(g117321 +g117323 +S"ingres'" +p117325 +tp117326 +a(g117323 +g117325 +S'and' +p117327 +tp117328 +a(g117325 +g117327 +S'one' +p117329 +tp117330 +a(g117327 +g117329 +S'of' +p117331 +tp117332 +a(g117329 +g117331 +S'his' +p117333 +tp117334 +a(g117331 +g117333 +S'most' +p117335 +tp117336 +a(g117333 +g117335 +S'important' +p117337 +tp117338 +a(g117335 +g117337 +S'patrons,' +p117339 +tp117340 +a(g117337 +g117339 +S'whose' +p117341 +tp117342 +a(g117339 +g117341 +S'ingres,' +p117343 +tp117344 +a(g117341 +g117343 +S'unlike' +p117345 +tp117346 +a(g117343 +g117345 +S'david' +p117347 +tp117348 +a(g117345 +g117347 +S'in' +p117349 +tp117350 +a(g117347 +g117349 +S'whose' +p117351 +tp117352 +a(g117349 +g117351 +S'studio' +p117353 +tp117354 +a(g117351 +g117353 +S'he' +p117355 +tp117356 +a(g117353 +g117355 +S'studied,' +p117357 +tp117358 +a(g117355 +g117357 +S'remained' +p117359 +tp117360 +a(g117357 +g117359 +S'blind' +p117361 +tp117362 +a(g117359 +g117361 +S'to' +p117363 +tp117364 +a(g117361 +g117363 +S'politics,' +p117365 +tp117366 +a(g117363 +g117365 +S'devoting' +p117367 +tp117368 +a(g117365 +g117367 +S'himself' +p117369 +tp117370 +a(g117367 +g117369 +S'instead' +p117371 +tp117372 +a(g117369 +g117371 +S'to' +p117373 +tp117374 +a(g117371 +g117373 +S'the' +p117375 +tp117376 +a(g117373 +g117375 +S'perfection' +p117377 +tp117378 +a(g117375 +g117377 +S'of' +p117379 +tp117380 +a(g117377 +g117379 +S'his' +p117381 +tp117382 +a(g117379 +g117381 +S'art.' +p117383 +tp117384 +a(g117381 +g117383 +S'various' +p117385 +tp117386 +a(g117383 +g117385 +S'explanations' +p117387 +tp117388 +a(g117385 +g117387 +S'are' +p117389 +tp117390 +a(g117387 +g117389 +S'given' +p117391 +tp117392 +a(g117389 +g117391 +S'for' +p117393 +tp117394 +a(g117391 +g117393 +S'francesco' +p117395 +tp117396 +a(g117393 +g117395 +S"d'ubertino" +p117397 +tp117398 +a(g117395 +g117397 +S"verdi's" +p117399 +tp117400 +a(g117397 +g117399 +S'nickname,' +p117401 +tp117402 +a(g117399 +g117401 +S'bacchiacca.' +p117403 +tp117404 +a(g117401 +g117403 +S'it' +p117405 +tp117406 +a(g117403 +g117405 +S'is' +p117407 +tp117408 +a(g117405 +g117407 +S'tempting' +p117409 +tp117410 +a(g117407 +g117409 +S'to' +p117411 +tp117412 +a(g117409 +g117411 +S'see' +p117413 +tp117414 +a(g117411 +g117413 +S'a' +p117415 +tp117416 +a(g117413 +g117415 +S'connection' +p117417 +tp117418 +a(g117415 +g117417 +S'with' +p117419 +tp117420 +a(g117417 +g117419 +S'this' +p117421 +tp117422 +a(g117419 +g117421 +S'is' +p117423 +tp117424 +a(g117421 +g117423 +S'not' +p117425 +tp117426 +a(g117423 +g117425 +S'appropriation' +p117427 +tp117428 +a(g117425 +g117427 +S'by' +p117429 +tp117430 +a(g117427 +g117429 +S'an' +p117431 +tp117432 +a(g117429 +g117431 +S'artist' +p117433 +tp117434 +a(g117431 +g117433 +S'unwilling' +p117435 +tp117436 +a(g117433 +g117435 +S'or' +p117437 +tp117438 +a(g117435 +g117437 +S'unable' +p117439 +tp117440 +a(g117437 +g117439 +S'to' +p117441 +tp117442 +a(g117439 +g117441 +S'devise' +p117443 +tp117444 +a(g117441 +g117443 +S'something' +p117445 +tp117446 +a(g117443 +g117445 +S'new,' +p117447 +tp117448 +a(g117445 +g117447 +S'however.' +p117449 +tp117450 +a(g117447 +g117449 +S'bacchiacca' +p117451 +tp117452 +a(g117449 +g117451 +S'was' +p117453 +tp117454 +a(g117451 +g117453 +S'a' +p117455 +tp117456 +a(g117453 +g117455 +S'court' +p117457 +tp117458 +a(g117455 +g117457 +S'painter' +p117459 +tp117460 +a(g117457 +g117459 +S'to' +p117461 +tp117462 +a(g117459 +g117461 +S'cosimo' +p117463 +tp117464 +a(g117461 +g117463 +S"de'" +p117465 +tp117466 +a(g117463 +g117465 +S'medici' +p117467 +tp117468 +a(g117465 +g117467 +S'in' +p117469 +tp117470 +a(g117467 +g117469 +S'florence,' +p117471 +tp117472 +a(g117469 +g117471 +S'where' +p117473 +tp117474 +a(g117471 +g117473 +S'patrons' +p117475 +tp117476 +a(g117473 +g117475 +S'would' +p117477 +tp117478 +a(g117475 +g117477 +S'have' +p117479 +tp117480 +a(g117477 +g117479 +S'delighted' +p117481 +tp117482 +a(g117479 +g117481 +S'in' +p117483 +tp117484 +a(g117481 +g117483 +S'puzzling' +p117485 +tp117486 +a(g117483 +g117485 +S'out' +p117487 +tp117488 +a(g117485 +g117487 +S'his' +p117489 +tp117490 +a(g117487 +g117489 +S'sources.' +p117491 +tp117492 +a(g117489 +g117491 +S'admirers' +p117493 +tp117494 +a(g117491 +g117493 +S'of' +p117495 +tp117496 +a(g117493 +g117495 +S'the' +p117497 +tp117498 +a(g117495 +g117497 +S'then' +p117499 +tp117500 +a(g117497 +g117499 +S'current' +p117501 +tp117502 +a(g117499 +g117501 +S'mannerist' +p117503 +tp117504 +a(g117501 +g117503 +S'style,' +p117505 +tp117506 +a(g117503 +g117505 +S'which' +p117507 +tp117508 +a(g117505 +g117507 +S'depended' +p117509 +tp117510 +a(g117507 +g117509 +S'on' +p117511 +tp117512 +a(g117509 +g117511 +S'complexity' +p117513 +tp117514 +a(g117511 +g117513 +S'and' +p117515 +tp117516 +a(g117513 +g117515 +S'artifice' +p117517 +tp117518 +a(g117515 +g117517 +S'over' +p117519 +tp117520 +a(g117517 +g117519 +S'naturalistic' +p117521 +tp117522 +a(g117519 +g117521 +S'representation,' +p117523 +tp117524 +a(g117521 +g117523 +S'they' +p117525 +tp117526 +a(g117523 +g117525 +S'would' +p117527 +tp117528 +a(g117525 +g117527 +S'also' +p117529 +tp117530 +a(g117527 +g117529 +S'have' +p117531 +tp117532 +a(g117529 +g117531 +S'appreciated' +p117533 +tp117534 +a(g117531 +g117533 +S'his' +p117535 +tp117536 +a(g117533 +g117535 +S"pictures'" +p117537 +tp117538 +a(g117535 +g117537 +S'among' +p117539 +tp117540 +a(g117537 +g117539 +S'all' +p117541 +tp117542 +a(g117539 +g117541 +S'these' +p117543 +tp117544 +a(g117541 +g117543 +S'creatures' +p117545 +tp117546 +a(g117543 +g117545 +S'only' +p117547 +tp117548 +a(g117545 +g117547 +S'the' +p117549 +tp117550 +a(g117547 +g117549 +S'quail' +p117551 +tp117552 +a(g117549 +g117551 +S'relate' +p117553 +tp117554 +a(g117551 +g117553 +S'to' +p117555 +tp117556 +a(g117553 +g117555 +S'the' +p117557 +tp117558 +a(g117555 +g117557 +S'biblical' +p117559 +tp117560 +a(g117557 +g117559 +S'story.' +p117561 +tp117562 +a(g117559 +g117561 +S'a' +p117563 +tp117564 +a(g117561 +g117563 +S'day' +p117565 +tp117566 +a(g117563 +g117565 +S'after' +p117567 +tp117568 +a(g117565 +g117567 +S'the' +p117569 +tp117570 +a(g117567 +g117569 +S'birds' +p117571 +tp117572 +a(g117569 +g117571 +S'arrived' +p117573 +tp117574 +a(g117571 +g117573 +S'to' +p117575 +tp117576 +a(g117573 +g117575 +S'alleviate' +p117577 +tp117578 +a(g117575 +g117577 +S'the' +p117579 +tp117580 +a(g117577 +g117579 +S"israelites'" +p117581 +tp117582 +a(g117579 +g117581 +S'hunger,' +p117583 +tp117584 +a(g117581 +g117583 +S'god' +p117585 +tp117586 +a(g117583 +g117585 +S'provided' +p117587 +tp117588 +a(g117585 +g117587 +S'manna' +p117589 +tp117590 +a(g117587 +g117589 +S'from' +p117591 +tp117592 +a(g117589 +g117591 +S'the' +p117593 +tp117594 +a(g117591 +g117593 +S'sky.' +p117595 +tp117596 +a(g117593 +g117595 +S'here' +p117597 +tp117598 +a(g117595 +g117597 +S'moses—in' +p117599 +tp117600 +a(g117597 +g117599 +S'bright' +p117601 +tp117602 +a(g117599 +g117601 +S'pink,' +p117603 +tp117604 +a(g117601 +g117603 +S'light' +p117605 +tp117606 +a(g117603 +g117605 +S'emanating' +p117607 +tp117608 +a(g117605 +g117607 +S'from' +p117609 +tp117610 +a(g117607 +g117609 +S'his' +p117611 +tp117612 +a(g117609 +g117611 +S'head—commands' +p117613 +tp117614 +a(g117611 +g117613 +S'his' +p117615 +tp117616 +a(g117613 +g117615 +S'people' +p117617 +tp117618 +a(g117615 +g117617 +S'to' +p117619 +tp117620 +a(g117617 +g117619 +S'gather' +p117621 +tp117622 +a(g117619 +g117621 +S'the' +p117623 +tp117624 +a(g117621 +g117623 +S'almost' +p117625 +tp117626 +a(g117623 +g117625 +S'invisible' +p117627 +tp117628 +a(g117625 +g117627 +S'bread.' +p117629 +tp117630 +a(g117627 +g117629 +S'perhaps' +p117631 +tp117632 +a(g117629 +g117631 +S'this' +p117633 +tp117634 +a(g117631 +g117633 +S'painting' +p117635 +tp117636 +a(g117633 +g117635 +S'was' +p117637 +tp117638 +a(g117635 +g117637 +S'part' +p117639 +tp117640 +a(g117637 +g117639 +S'of' +p117641 +tp117642 +a(g117639 +g117641 +S'a' +p117643 +tp117644 +a(g117641 +g117643 +S'campaign' +p117645 +tp117646 +a(g117643 +g117645 +S'to' +p117647 +tp117648 +a(g117645 +g117647 +S'depict' +p117649 +tp117650 +a(g117647 +g117649 +S'cosimo' +p117651 +tp117652 +a(g117649 +g117651 +S'as' +p117653 +tp117654 +a(g117651 +g117653 +S'a' +p117655 +tp117656 +a(g117653 +g117655 +S'new' +p117657 +tp117658 +a(g117655 +g117657 +S'moses,' +p117659 +tp117660 +a(g117657 +g117659 +S'one' +p117661 +tp117662 +a(g117659 +g117661 +S'who' +p117663 +tp117664 +a(g117661 +g117663 +S'would' +p117665 +tp117666 +a(g117663 +g117665 +S'provide' +p117667 +tp117668 +a(g117665 +g117667 +S'the' +p117669 +tp117670 +a(g117667 +g117669 +S'florentines' +p117671 +tp117672 +a(g117669 +g117671 +S'with' +p117673 +tp117674 +a(g117671 +g117673 +S'prosperity—an' +p117675 +tp117676 +a(g117673 +g117675 +S'abundance' +p117677 +tp117678 +a(g117675 +g117677 +S'suggested' +p117679 +tp117680 +a(g117677 +g117679 +S'even' +p117681 +tp117682 +a(g117679 +g117681 +S'in' +p117683 +tp117684 +a(g117681 +g117683 +S'the' +p117685 +tp117686 +a(g117683 +g117685 +S'fullness' +p117687 +tp117688 +a(g117685 +g117687 +S'of' +p117689 +tp117690 +a(g117687 +g117689 +S"bacchiacca's" +p117691 +tp117692 +a(g117689 +g117691 +S'composition.' +p117693 +tp117694 +a(g117691 +g117693 +S'"remember' +p117695 +tp117696 +a(g117693 +g117695 +S'me,' +p117697 +tp117698 +a(g117695 +g117697 +S'o' +p117699 +tp117700 +a(g117697 +g117699 +S'mother' +p117701 +tp117702 +a(g117699 +g117701 +S'of' +p117703 +tp117704 +a(g117701 +g117703 +S'god.' +p117705 +tp117706 +a(g117703 +g117705 +S'o' +p117707 +tp117708 +a(g117705 +g117707 +S'queen' +p117709 +tp117710 +a(g117707 +g117709 +S'of' +p117711 +tp117712 +a(g117709 +g117711 +S'heaven,' +p117713 +tp117714 +a(g117711 +g117713 +S'rejoice."' +p117715 +tp117716 +a(g117713 +g117715 +S'these' +p117717 +tp117718 +a(g117715 +g117717 +S'words,' +p117719 +tp117720 +a(g117717 +g117719 +S'taken' +p117721 +tp117722 +a(g117719 +g117721 +S'from' +p117723 +tp117724 +a(g117721 +g117723 +S'an' +p117725 +tp117726 +a(g117723 +g117725 +S'easter' +p117727 +tp117728 +a(g117725 +g117727 +S'psalm' +p117729 +tp117730 +a(g117727 +g117729 +S'sung' +p117731 +tp117732 +a(g117729 +g117731 +S'in' +p117733 +tp117734 +a(g117731 +g117733 +S'the' +p117735 +tp117736 +a(g117733 +g117735 +S"virgin's" +p117737 +tp117738 +a(g117735 +g117737 +S'honor,' +p117739 +tp117740 +a(g117737 +g117739 +S'appear' +p117741 +tp117742 +a(g117739 +g117741 +S'on' +p117743 +tp117744 +a(g117741 +g117743 +S'the' +p117745 +tp117746 +a(g117743 +g117745 +S'golden' +p117747 +tp117748 +a(g117745 +g117747 +S'arch' +p117749 +tp117750 +a(g117747 +g117749 +S'at' +p117751 +tp117752 +a(g117749 +g117751 +S'the' +p117753 +tp117754 +a(g117751 +g117753 +S'top' +p117755 +tp117756 +a(g117753 +g117755 +S'of' +p117757 +tp117758 +a(g117755 +g117757 +S'carlo' +p117759 +tp117760 +a(g117757 +g117759 +S"crivelli's" +p117761 +tp117762 +a(g117759 +g117761 +S"crivelli's" +p117763 +tp117764 +a(g117761 +g117763 +S'painting' +p117765 +tp117766 +a(g117763 +g117765 +S'originally' +p117767 +tp117768 +a(g117765 +g117767 +S'constituted' +p117769 +tp117770 +a(g117767 +g117769 +S'the' +p117771 +tp117772 +a(g117769 +g117771 +S'central' +p117773 +tp117774 +a(g117771 +g117773 +S'section' +p117775 +tp117776 +a(g117773 +g117775 +S'of' +p117777 +tp117778 +a(g117775 +g117777 +S'a' +p117779 +tp117780 +a(g117777 +g117779 +S'polyptych' +p117781 +tp117782 +a(g117779 +g117781 +S'in' +p117783 +tp117784 +a(g117781 +g117783 +S'the' +p117785 +tp117786 +a(g117783 +g117785 +S'parish' +p117787 +tp117788 +a(g117785 +g117787 +S'church' +p117789 +tp117790 +a(g117787 +g117789 +S'at' +p117791 +tp117792 +a(g117789 +g117791 +S'porto' +p117793 +tp117794 +a(g117791 +g117793 +S'san' +p117795 +tp117796 +a(g117793 +g117795 +S'giorgio,' +p117797 +tp117798 +a(g117795 +g117797 +S'near' +p117799 +tp117800 +a(g117797 +g117799 +S'fermi.' +p117801 +tp117802 +a(g117799 +g117801 +S'the' +p117803 +tp117804 +a(g117801 +g117803 +S'crisp,' +p117805 +tp117806 +a(g117803 +g117805 +S'sculptural' +p117807 +tp117808 +a(g117805 +g117807 +S'forms' +p117809 +tp117810 +a(g117807 +g117809 +S'reflect' +p117811 +tp117812 +a(g117809 +g117811 +S"crivelli's" +p117813 +tp117814 +a(g117811 +g117813 +S'probable' +p117815 +tp117816 +a(g117813 +g117815 +S'training' +p117817 +tp117818 +a(g117815 +g117817 +S'in' +p117819 +tp117820 +a(g117817 +g117819 +S'the' +p117821 +tp117822 +a(g117819 +g117821 +S'humanist' +p117823 +tp117824 +a(g117821 +g117823 +S'center' +p117825 +tp117826 +a(g117823 +g117825 +S'of' +p117827 +tp117828 +a(g117825 +g117827 +S'padua.' +p117829 +tp117830 +a(g117827 +g117829 +S'yet' +p117831 +tp117832 +a(g117829 +g117831 +S'the' +p117833 +tp117834 +a(g117831 +g117833 +S'manner' +p117835 +tp117836 +a(g117833 +g117835 +S'in' +p117837 +tp117838 +a(g117835 +g117837 +S'which' +p117839 +tp117840 +a(g117837 +g117839 +S"crivelli's" +p117841 +tp117842 +a(g117839 +g117841 +S'figures' +p117843 +tp117844 +a(g117841 +g117843 +S'are' +p117845 +tp117846 +a(g117843 +g117845 +S'modeled' +p117847 +tp117848 +a(g117845 +g117847 +S'in' +p117849 +tp117850 +a(g117847 +g117849 +S'light' +p117851 +tp117852 +a(g117849 +g117851 +S'and' +p117853 +tp117854 +a(g117851 +g117853 +S'shade' +p117855 +tp117856 +a(g117853 +g117855 +S'also' +p117857 +tp117858 +a(g117855 +g117857 +S'expresses' +p117859 +tp117860 +a(g117857 +g117859 +S'a' +p117861 +tp117862 +a(g117859 +g117861 +S'broader' +p117863 +tp117864 +a(g117861 +g117863 +S'renaissance' +p117865 +tp117866 +a(g117863 +g117865 +S'concern' +p117867 +tp117868 +a(g117865 +g117867 +S'with' +p117869 +tp117870 +a(g117867 +g117869 +S'direct' +p117871 +tp117872 +a(g117869 +g117871 +S'observation' +p117873 +tp117874 +a(g117871 +g117873 +S'of' +p117875 +tp117876 +a(g117873 +g117875 +S'nature.' +p117877 +tp117878 +a(g117875 +g117877 +S"crivelli's" +p117879 +tp117880 +a(g117877 +g117879 +S'very' +p117881 +tp117882 +a(g117879 +g117881 +S'personal,' +p117883 +tp117884 +a(g117881 +g117883 +S'almost' +p117885 +tp117886 +a(g117883 +g117885 +S'metallic' +p117887 +tp117888 +a(g117885 +g117887 +S'style' +p117889 +tp117890 +a(g117887 +g117889 +S'must' +p117891 +tp117892 +a(g117889 +g117891 +S'in' +p117893 +tp117894 +a(g117891 +g117893 +S'large' +p117895 +tp117896 +a(g117893 +g117895 +S'part' +p117897 +tp117898 +a(g117895 +g117897 +S'be' +p117899 +tp117900 +a(g117897 +g117899 +S'explained' +p117901 +tp117902 +a(g117899 +g117901 +S'by' +p117903 +tp117904 +a(g117901 +g117903 +S'the' +p117905 +tp117906 +a(g117903 +g117905 +S'events' +p117907 +tp117908 +a(g117905 +g117907 +S'of' +p117909 +tp117910 +a(g117907 +g117909 +S'his' +p117911 +tp117912 +a(g117909 +g117911 +S'life.' +p117913 +tp117914 +a(g117911 +g117913 +S'he' +p117915 +tp117916 +a(g117913 +g117915 +S'was' +p117917 +tp117918 +a(g117915 +g117917 +S'born' +p117919 +tp117920 +a(g117917 +g117919 +S'in' +p117921 +tp117922 +a(g117919 +g117921 +S'venice' +p117923 +tp117924 +a(g117921 +g117923 +S'where' +p117925 +tp117926 +a(g117923 +g117925 +S'the' +p117927 +tp117928 +a(g117925 +g117927 +S'gothic' +p117929 +tp117930 +a(g117927 +g117929 +S'tradition' +p117931 +tp117932 +a(g117929 +g117931 +S'lingered' +p117933 +tp117934 +a(g117931 +g117933 +S'well' +p117935 +tp117936 +a(g117933 +g117935 +S'into' +p117937 +tp117938 +a(g117935 +g117937 +S'the' +p117939 +tp117940 +a(g117937 +g117939 +S'fifteenth' +p117941 +tp117942 +a(g117939 +g117941 +S'century.' +p117943 +tp117944 +a(g117941 +g117943 +S'after' +p117945 +tp117946 +a(g117943 +g117945 +S'spending' +p117947 +tp117948 +a(g117945 +g117947 +S'some' +p117949 +tp117950 +a(g117947 +g117949 +S'time' +p117951 +tp117952 +a(g117949 +g117951 +S'in' +p117953 +tp117954 +a(g117951 +g117953 +S'padua,' +p117955 +tp117956 +a(g117953 +g117955 +S'he' +p117957 +tp117958 +a(g117955 +g117957 +S'settled' +p117959 +tp117960 +a(g117957 +g117959 +S'in' +p117961 +tp117962 +a(g117959 +g117961 +S'the' +p117963 +tp117964 +a(g117961 +g117963 +S'marches' +p117965 +tp117966 +a(g117963 +g117965 +S'on' +p117967 +tp117968 +a(g117965 +g117967 +S'the' +p117969 +tp117970 +a(g117967 +g117969 +S'adriatic,' +p117971 +tp117972 +a(g117969 +g117971 +S'and' +p117973 +tp117974 +a(g117971 +g117973 +S'there' +p117975 +tp117976 +a(g117973 +g117975 +S'remained' +p117977 +tp117978 +a(g117975 +g117977 +S'relatively' +p117979 +tp117980 +a(g117977 +g117979 +S'unaffected' +p117981 +tp117982 +a(g117979 +g117981 +S'by' +p117983 +tp117984 +a(g117981 +g117983 +S'new' +p117985 +tp117986 +a(g117983 +g117985 +S'trends.' +p117987 +tp117988 +a(g117985 +g117987 +S'domenico' +p117989 +tp117990 +a(g117987 +g117989 +S'fetti' +p117991 +tp117992 +a(g117989 +g117991 +S'was' +p117993 +tp117994 +a(g117991 +g117993 +S'in' +p117995 +tp117996 +a(g117993 +g117995 +S'rome' +p117997 +tp117998 +a(g117995 +g117997 +S'in' +p117999 +tp118000 +a(g117997 +g117999 +S'1606' +p118001 +tp118002 +a(g117999 +g118001 +S'when' +p118003 +tp118004 +a(g118001 +g118003 +S'the' +p118005 +tp118006 +a(g118003 +g118005 +S'veil' +p118007 +tp118008 +a(g118005 +g118007 +S'of' +p118009 +tp118010 +a(g118007 +g118009 +S'veronica,' +p118011 +tp118012 +a(g118009 +g118011 +S'one' +p118013 +tp118014 +a(g118011 +g118013 +S'of' +p118015 +tp118016 +a(g118013 +g118015 +S'the' +p118017 +tp118018 +a(g118015 +g118017 +S'oldest' +p118019 +tp118020 +a(g118017 +g118019 +S'and' +p118021 +tp118022 +a(g118019 +g118021 +S'most' +p118023 +tp118024 +a(g118021 +g118023 +S'venerated' +p118025 +tp118026 +a(g118023 +g118025 +S'relics' +p118027 +tp118028 +a(g118025 +g118027 +S'in' +p118029 +tp118030 +a(g118027 +g118029 +S'christendom,' +p118031 +tp118032 +a(g118029 +g118031 +S'was' +p118033 +tp118034 +a(g118031 +g118033 +S'installed' +p118035 +tp118036 +a(g118033 +g118035 +S'in' +p118037 +tp118038 +a(g118035 +g118037 +S'the' +p118039 +tp118040 +a(g118037 +g118039 +S'crossing' +p118041 +tp118042 +a(g118039 +g118041 +S'of' +p118043 +tp118044 +a(g118041 +g118043 +S'st.' +p118045 +tp118046 +a(g118043 +g118045 +S"peter's" +p118047 +tp118048 +a(g118045 +g118047 +S'basilica.' +p118049 +tp118050 +a(g118047 +g118049 +S'according' +p118051 +tp118052 +a(g118049 +g118051 +S'to' +p118053 +tp118054 +a(g118051 +g118053 +S'medieval' +p118055 +tp118056 +a(g118053 +g118055 +S'legend,' +p118057 +tp118058 +a(g118055 +g118057 +S'the' +p118059 +tp118060 +a(g118057 +g118059 +S'veil' +p118061 +tp118062 +a(g118059 +g118061 +S'belonged' +p118063 +tp118064 +a(g118061 +g118063 +S'to' +p118065 +tp118066 +a(g118063 +g118065 +S'a' +p118067 +tp118068 +a(g118065 +g118067 +S'woman' +p118069 +tp118070 +a(g118067 +g118069 +S'who' +p118071 +tp118072 +a(g118069 +g118071 +S'took' +p118073 +tp118074 +a(g118071 +g118073 +S'pity' +p118075 +tp118076 +a(g118073 +g118075 +S'on' +p118077 +tp118078 +a(g118075 +g118077 +S'christ' +p118079 +tp118080 +a(g118077 +g118079 +S'as' +p118081 +tp118082 +a(g118079 +g118081 +S'he' +p118083 +tp118084 +a(g118081 +g118083 +S'toiled' +p118085 +tp118086 +a(g118083 +g118085 +S'with' +p118087 +tp118088 +a(g118085 +g118087 +S'his' +p118089 +tp118090 +a(g118087 +g118089 +S'burden' +p118091 +tp118092 +a(g118089 +g118091 +S'of' +p118093 +tp118094 +a(g118091 +g118093 +S'the' +p118095 +tp118096 +a(g118093 +g118095 +S'cross' +p118097 +tp118098 +a(g118095 +g118097 +S'to' +p118099 +tp118100 +a(g118097 +g118099 +S'golgotha.' +p118101 +tp118102 +a(g118099 +g118101 +S'she' +p118103 +tp118104 +a(g118101 +g118103 +S'gave' +p118105 +tp118106 +a(g118103 +g118105 +S'christ' +p118107 +tp118108 +a(g118105 +g118107 +S'her' +p118109 +tp118110 +a(g118107 +g118109 +S'kerchief' +p118111 +tp118112 +a(g118109 +g118111 +S'to' +p118113 +tp118114 +a(g118111 +g118113 +S'wipe' +p118115 +tp118116 +a(g118113 +g118115 +S'his' +p118117 +tp118118 +a(g118115 +g118117 +S'brow,' +p118119 +tp118120 +a(g118117 +g118119 +S'and' +p118121 +tp118122 +a(g118119 +g118121 +S'when' +p118123 +tp118124 +a(g118121 +g118123 +S'he' +p118125 +tp118126 +a(g118123 +g118125 +S'returned' +p118127 +tp118128 +a(g118125 +g118127 +S'the' +p118129 +tp118130 +a(g118127 +g118129 +S'cloth,' +p118131 +tp118132 +a(g118129 +g118131 +S'his' +p118133 +tp118134 +a(g118131 +g118133 +S'image' +p118135 +tp118136 +a(g118133 +g118135 +S'miraculously' +p118137 +tp118138 +a(g118135 +g118137 +S'had' +p118139 +tp118140 +a(g118137 +g118139 +S'been' +p118141 +tp118142 +a(g118139 +g118141 +S'impressed' +p118143 +tp118144 +a(g118141 +g118143 +S'upon' +p118145 +tp118146 +a(g118143 +g118145 +S'it.' +p118147 +tp118148 +a(g118145 +g118147 +S'this' +p118149 +tp118150 +a(g118147 +g118149 +S'kerchief' +p118151 +tp118152 +a(g118149 +g118151 +S'was' +p118153 +tp118154 +a(g118151 +g118153 +S'believed' +p118155 +tp118156 +a(g118153 +g118155 +S'to' +p118157 +tp118158 +a(g118155 +g118157 +S'have' +p118159 +tp118160 +a(g118157 +g118159 +S'been' +p118161 +tp118162 +a(g118159 +g118161 +S'preserved' +p118163 +tp118164 +a(g118161 +g118163 +S'as' +p118165 +tp118166 +a(g118163 +g118165 +S'the' +p118167 +tp118168 +a(g118165 +g118167 +S'relic' +p118169 +tp118170 +a(g118167 +g118169 +S'called' +p118171 +tp118172 +a(g118169 +g118171 +S'the' +p118173 +tp118174 +a(g118171 +g118173 +S'"true' +p118175 +tp118176 +a(g118173 +g118175 +S'image"' +p118177 +tp118178 +a(g118175 +g118177 +S'or,' +p118179 +tp118180 +a(g118177 +g118179 +S'in' +p118181 +tp118182 +a(g118179 +g118181 +S'latin,' +p118183 +tp118184 +a(g118181 +g118183 +S"fetti's" +p118185 +tp118186 +a(g118183 +g118185 +S'depiction' +p118187 +tp118188 +a(g118185 +g118187 +S'of' +p118189 +tp118190 +a(g118187 +g118189 +S'the' +p118191 +tp118192 +a(g118189 +g118191 +S'relic' +p118193 +tp118194 +a(g118191 +g118193 +S'is' +p118195 +tp118196 +a(g118193 +g118195 +S'compellingly' +p118197 +tp118198 +a(g118195 +g118197 +S'realistic.' +p118199 +tp118200 +a(g118197 +g118199 +S'isolated' +p118201 +tp118202 +a(g118199 +g118201 +S'against' +p118203 +tp118204 +a(g118201 +g118203 +S'a' +p118205 +tp118206 +a(g118203 +g118205 +S'dark' +p118207 +tp118208 +a(g118205 +g118207 +S'background' +p118209 +tp118210 +a(g118207 +g118209 +S'and' +p118211 +tp118212 +a(g118209 +g118211 +S'draped' +p118213 +tp118214 +a(g118211 +g118213 +S'over' +p118215 +tp118216 +a(g118213 +g118215 +S'a' +p118217 +tp118218 +a(g118215 +g118217 +S'bar,' +p118219 +tp118220 +a(g118217 +g118219 +S'the' +p118221 +tp118222 +a(g118219 +g118221 +S"fabric's" +p118223 +tp118224 +a(g118221 +g118223 +S'texture,' +p118225 +tp118226 +a(g118223 +g118225 +S'folds,' +p118227 +tp118228 +a(g118225 +g118227 +S'and' +p118229 +tp118230 +a(g118227 +g118229 +S'fringed' +p118231 +tp118232 +a(g118229 +g118231 +S'border' +p118233 +tp118234 +a(g118231 +g118233 +S'are' +p118235 +tp118236 +a(g118233 +g118235 +S'rendered' +p118237 +tp118238 +a(g118235 +g118237 +S'with' +p118239 +tp118240 +a(g118237 +g118239 +S'painstaking' +p118241 +tp118242 +a(g118239 +g118241 +S'care.' +p118243 +tp118244 +a(g118241 +g118243 +S'hovering' +p118245 +tp118246 +a(g118243 +g118245 +S'on' +p118247 +tp118248 +a(g118245 +g118247 +S'its' +p118249 +tp118250 +a(g118247 +g118249 +S'surface' +p118251 +tp118252 +a(g118249 +g118251 +S'is' +p118253 +tp118254 +a(g118251 +g118253 +S"christ's" +p118255 +tp118256 +a(g118253 +g118255 +S'visage' +p118257 +tp118258 +a(g118255 +g118257 +S'--' +p118259 +tp118260 +a(g118257 +g118259 +S'the' +p118261 +tp118262 +a(g118259 +g118261 +S'flesh' +p118263 +tp118264 +a(g118261 +g118263 +S'solidly' +p118265 +tp118266 +a(g118263 +g118265 +S'modeled' +p118267 +tp118268 +a(g118265 +g118267 +S'and' +p118269 +tp118270 +a(g118267 +g118269 +S'tangible.' +p118271 +tp118272 +a(g118269 +g118271 +S"fetti's" +p118273 +tp118274 +a(g118271 +g118273 +S'amazingly' +p118275 +tp118276 +a(g118273 +g118275 +S'true' +p118277 +tp118278 +a(g118275 +g118277 +S'image' +p118279 +tp118280 +a(g118277 +g118279 +S'of' +p118281 +tp118282 +a(g118279 +g118281 +S'the' +p118283 +tp118284 +a(g118281 +g118283 +S'"true' +p118285 +tp118286 +a(g118283 +g118285 +S'image"' +p118287 +tp118288 +a(g118285 +g118287 +S'is,' +p118289 +tp118290 +a(g118287 +g118289 +S'in' +p118291 +tp118292 +a(g118289 +g118291 +S'a' +p118293 +tp118294 +a(g118291 +g118293 +S'sense,' +p118295 +tp118296 +a(g118293 +g118295 +S'a' +p118297 +tp118298 +a(g118295 +g118297 +S'metaphor' +p118299 +tp118300 +a(g118297 +g118299 +S'of' +p118301 +tp118302 +a(g118299 +g118301 +S'the' +p118303 +tp118304 +a(g118301 +g118303 +S'task' +p118305 +tp118306 +a(g118303 +g118305 +S'of' +p118307 +tp118308 +a(g118305 +g118307 +S'the' +p118309 +tp118310 +a(g118307 +g118309 +S'painter.' +p118311 +tp118312 +a(g118309 +g118311 +S'this' +p118313 +tp118314 +a(g118311 +g118313 +S'is' +p118315 +tp118316 +a(g118313 +g118315 +S'not' +p118317 +tp118318 +a(g118315 +g118317 +S'merely' +p118319 +tp118320 +a(g118317 +g118319 +S'a' +p118321 +tp118322 +a(g118319 +g118321 +S'brilliant' +p118323 +tp118324 +a(g118321 +g118323 +S'and' +p118325 +tp118326 +a(g118323 +g118325 +S'self-conscious' +p118327 +tp118328 +a(g118325 +g118327 +S'exhibition' +p118329 +tp118330 +a(g118327 +g118329 +S'of' +p118331 +tp118332 +a(g118329 +g118331 +S'the' +p118333 +tp118334 +a(g118331 +g118333 +S"painter's" +p118335 +tp118336 +a(g118333 +g118335 +S'skill,' +p118337 +tp118338 +a(g118335 +g118337 +S'however,' +p118339 +tp118340 +a(g118337 +g118339 +S'but' +p118341 +tp118342 +a(g118339 +g118341 +S'a' +p118343 +tp118344 +a(g118341 +g118343 +S'sensitive' +p118345 +tp118346 +a(g118343 +g118345 +S'and' +p118347 +tp118348 +a(g118345 +g118347 +S'deeply' +p118349 +tp118350 +a(g118347 +g118349 +S'felt' +p118351 +tp118352 +a(g118349 +g118351 +S'portrayal' +p118353 +tp118354 +a(g118351 +g118353 +S'of' +p118355 +tp118356 +a(g118353 +g118355 +S'christ' +p118357 +tp118358 +a(g118355 +g118357 +S'at' +p118359 +tp118360 +a(g118357 +g118359 +S'the' +p118361 +tp118362 +a(g118359 +g118361 +S'moment' +p118363 +tp118364 +a(g118361 +g118363 +S'of' +p118365 +tp118366 +a(g118363 +g118365 +S'his' +p118367 +tp118368 +a(g118365 +g118367 +S'most' +p118369 +tp118370 +a(g118367 +g118369 +S'intense' +p118371 +tp118372 +a(g118369 +g118371 +S'physical' +p118373 +tp118374 +a(g118371 +g118373 +S'and' +p118375 +tp118376 +a(g118373 +g118375 +S'spiritual' +p118377 +tp118378 +a(g118375 +g118377 +S'suffering.' +p118379 +tp118380 +a(g118377 +g118379 +S'originally' +p118381 +tp118382 +a(g118379 +g118381 +S'forming' +p118383 +tp118384 +a(g118381 +g118383 +S'part' +p118385 +tp118386 +a(g118383 +g118385 +S'of' +p118387 +tp118388 +a(g118385 +g118387 +S'the' +p118389 +tp118390 +a(g118387 +g118389 +S'back' +p118391 +tp118392 +a(g118389 +g118391 +S'of' +p118393 +tp118394 +a(g118391 +g118393 +S'an' +p118395 +tp118396 +a(g118393 +g118395 +S'altarpiece,' +p118397 +tp118398 +a(g118395 +g118397 +S'this' +p118399 +tp118400 +a(g118397 +g118399 +S'panel' +p118401 +tp118402 +a(g118399 +g118401 +S'when' +p118403 +tp118404 +a(g118401 +g118403 +S'joined' +p118405 +tp118406 +a(g118403 +g118405 +S'with' +p118407 +tp118408 +a(g118405 +g118407 +S'a' +p118409 +tp118410 +a(g118407 +g118409 +S'the' +p118411 +tp118412 +a(g118409 +g118411 +S'artist' +p118413 +tp118414 +a(g118411 +g118413 +S'apparently' +p118415 +tp118416 +a(g118413 +g118415 +S'modeled' +p118417 +tp118418 +a(g118415 +g118417 +S'the' +p118419 +tp118420 +a(g118417 +g118419 +S'arcade' +p118421 +tp118422 +a(g118419 +g118421 +S'and' +p118423 +tp118424 +a(g118421 +g118423 +S'the' +p118425 +tp118426 +a(g118423 +g118425 +S'roman-style' +p118427 +tp118428 +a(g118425 +g118427 +S'dress' +p118429 +tp118430 +a(g118427 +g118429 +S'after' +p118431 +tp118432 +a(g118429 +g118431 +S'an' +p118433 +tp118434 +a(g118431 +g118433 +S'early' +p118435 +tp118436 +a(g118433 +g118435 +S'christian' +p118437 +tp118438 +a(g118435 +g118437 +S'sarcophagus' +p118439 +tp118440 +a(g118437 +g118439 +S'unearthed' +p118441 +tp118442 +a(g118439 +g118441 +S'in' +p118443 +tp118444 +a(g118441 +g118443 +S'1262.' +p118445 +tp118446 +a(g118443 +g118445 +S'this' +p118447 +tp118448 +a(g118445 +g118447 +S'marble' +p118449 +tp118450 +a(g118447 +g118449 +S'coffin' +p118451 +tp118452 +a(g118449 +g118451 +S'was' +p118453 +tp118454 +a(g118451 +g118453 +S'reused' +p118455 +tp118456 +a(g118453 +g118455 +S'for' +p118457 +tp118458 +a(g118455 +g118457 +S'the' +p118459 +tp118460 +a(g118457 +g118459 +S'burial' +p118461 +tp118462 +a(g118459 +g118461 +S'of' +p118463 +tp118464 +a(g118461 +g118463 +S'the' +p118465 +tp118466 +a(g118463 +g118465 +S'blessed' +p118467 +tp118468 +a(g118465 +g118467 +S'egido,' +p118469 +tp118470 +a(g118467 +g118469 +S'a' +p118471 +tp118472 +a(g118469 +g118471 +S'companion' +p118473 +tp118474 +a(g118471 +g118473 +S'of' +p118475 +tp118476 +a(g118473 +g118475 +S'saint' +p118477 +tp118478 +a(g118475 +g118477 +S'francis,' +p118479 +tp118480 +a(g118477 +g118479 +S'in' +p118481 +tp118482 +a(g118479 +g118481 +S'the' +p118483 +tp118484 +a(g118481 +g118483 +S'crypt' +p118485 +tp118486 +a(g118483 +g118485 +S'of' +p118487 +tp118488 +a(g118485 +g118487 +S'the' +p118489 +tp118490 +a(g118487 +g118489 +S'church' +p118491 +tp118492 +a(g118489 +g118491 +S'of' +p118493 +tp118494 +a(g118491 +g118493 +S'san' +p118495 +tp118496 +a(g118493 +g118495 +S'francesco' +p118497 +tp118498 +a(g118495 +g118497 +S'al' +p118499 +tp118500 +a(g118497 +g118499 +S'prato' +p118501 +tp118502 +a(g118499 +g118501 +S'in' +p118503 +tp118504 +a(g118501 +g118503 +S'perugia.' +p118505 +tp118506 +a(g118503 +g118505 +S'probably' +p118507 +tp118508 +a(g118505 +g118507 +S'the' +p118509 +tp118510 +a(g118507 +g118509 +S'two' +p118511 +tp118512 +a(g118509 +g118511 +S'panels' +p118513 +tp118514 +a(g118511 +g118513 +S'here' +p118515 +tp118516 +a(g118513 +g118515 +S'were' +p118517 +tp118518 +a(g118515 +g118517 +S'originally' +p118519 +tp118520 +a(g118517 +g118519 +S'in' +p118521 +tp118522 +a(g118519 +g118521 +S'the' +p118523 +tp118524 +a(g118521 +g118523 +S'same' +p118525 +tp118526 +a(g118523 +g118525 +S'church,' +p118527 +tp118528 +a(g118525 +g118527 +S'placed' +p118529 +tp118530 +a(g118527 +g118529 +S'on' +p118531 +tp118532 +a(g118529 +g118531 +S'the' +p118533 +tp118534 +a(g118531 +g118533 +S'altar' +p118535 +tp118536 +a(g118533 +g118535 +S'directly' +p118537 +tp118538 +a(g118535 +g118537 +S'above' +p118539 +tp118540 +a(g118537 +g118539 +S"egido's" +p118541 +tp118542 +a(g118539 +g118541 +S'coffin.' +p118543 +tp118544 +a(g118541 +g118543 +S'note' +p118545 +tp118546 +a(g118543 +g118545 +S'how' +p118547 +tp118548 +a(g118545 +g118547 +S'faces' +p118549 +tp118550 +a(g118547 +g118549 +S'and' +p118551 +tp118552 +a(g118549 +g118551 +S'folds' +p118553 +tp118554 +a(g118551 +g118553 +S'of' +p118555 +tp118556 +a(g118553 +g118555 +S'cloth' +p118557 +tp118558 +a(g118555 +g118557 +S'are' +p118559 +tp118560 +a(g118557 +g118559 +S'defined' +p118561 +tp118562 +a(g118559 +g118561 +S'with' +p118563 +tp118564 +a(g118561 +g118563 +S'white' +p118565 +tp118566 +a(g118563 +g118565 +S'highlights' +p118567 +tp118568 +a(g118565 +g118567 +S'applied' +p118569 +tp118570 +a(g118567 +g118569 +S'over' +p118571 +tp118572 +a(g118569 +g118571 +S'the' +p118573 +tp118574 +a(g118571 +g118573 +S'background' +p118575 +tp118576 +a(g118573 +g118575 +S'colors.' +p118577 +tp118578 +a(g118575 +g118577 +S'later' +p118579 +tp118580 +a(g118577 +g118579 +S'works' +p118581 +tp118582 +a(g118579 +g118581 +S'in' +p118583 +tp118584 +a(g118581 +g118583 +S'the' +p118585 +tp118586 +a(g118583 +g118585 +S"gallery's" +p118587 +tp118588 +a(g118585 +g118587 +S'collection—' +p118589 +tp118590 +a(g118587 +g118589 +S'in' +p118591 +tp118592 +a(g118589 +g118591 +S'the' +p118593 +tp118594 +a(g118591 +g118593 +S'early' +p118595 +tp118596 +a(g118593 +g118595 +S'middle' +p118597 +tp118598 +a(g118595 +g118597 +S'ages,' +p118599 +tp118600 +a(g118597 +g118599 +S'mary' +p118601 +tp118602 +a(g118599 +g118601 +S'normally' +p118603 +tp118604 +a(g118601 +g118603 +S'was' +p118605 +tp118606 +a(g118603 +g118605 +S'represented' +p118607 +tp118608 +a(g118605 +g118607 +S'enthroned' +p118609 +tp118610 +a(g118607 +g118609 +S'as' +p118611 +tp118612 +a(g118609 +g118611 +S'the' +p118613 +tp118614 +a(g118611 +g118613 +S'queen' +p118615 +tp118616 +a(g118613 +g118615 +S'of' +p118617 +tp118618 +a(g118615 +g118617 +S'heaven.' +p118619 +tp118620 +a(g118617 +g118619 +S'at' +p118621 +tp118622 +a(g118619 +g118621 +S'the' +p118623 +tp118624 +a(g118621 +g118623 +S'beginning' +p118625 +tp118626 +a(g118623 +g118625 +S'of' +p118627 +tp118628 +a(g118625 +g118627 +S'the' +p118629 +tp118630 +a(g118627 +g118629 +S'1300s,' +p118631 +tp118632 +a(g118629 +g118631 +S'though,' +p118633 +tp118634 +a(g118631 +g118633 +S'partly' +p118635 +tp118636 +a(g118633 +g118635 +S'due' +p118637 +tp118638 +a(g118635 +g118637 +S'to' +p118639 +tp118640 +a(g118637 +g118639 +S'the' +p118641 +tp118642 +a(g118639 +g118641 +S'humanistic' +p118643 +tp118644 +a(g118641 +g118643 +S'teachings' +p118645 +tp118646 +a(g118643 +g118645 +S'of' +p118647 +tp118648 +a(g118645 +g118647 +S'saint' +p118649 +tp118650 +a(g118647 +g118649 +S'francis' +p118651 +tp118652 +a(g118649 +g118651 +S'of' +p118653 +tp118654 +a(g118651 +g118653 +S'assisi,' +p118655 +tp118656 +a(g118653 +g118655 +S'a' +p118657 +tp118658 +a(g118655 +g118657 +S'new' +p118659 +tp118660 +a(g118657 +g118659 +S'subject' +p118661 +tp118662 +a(g118659 +g118661 +S'emerged—the' +p118663 +tp118664 +a(g118661 +g118663 +S'madonna' +p118665 +tp118666 +a(g118663 +g118665 +S'of' +p118667 +tp118668 +a(g118665 +g118667 +S'humility—which' +p118669 +tp118670 +a(g118667 +g118669 +S'shows' +p118671 +tp118672 +a(g118669 +g118671 +S'mary' +p118673 +tp118674 +a(g118671 +g118673 +S'seated' +p118675 +tp118676 +a(g118673 +g118675 +S'upon' +p118677 +tp118678 +a(g118675 +g118677 +S'the' +p118679 +tp118680 +a(g118677 +g118679 +S'ground' +p118681 +tp118682 +a(g118679 +g118681 +S'or,' +p118683 +tp118684 +a(g118681 +g118683 +S'as' +p118685 +tp118686 +a(g118683 +g118685 +S'in' +p118687 +tp118688 +a(g118685 +g118687 +S'this' +p118689 +tp118690 +a(g118687 +g118689 +S'case,' +p118691 +tp118692 +a(g118689 +g118691 +S'a' +p118693 +tp118694 +a(g118691 +g118693 +S'cushion.' +p118695 +tp118696 +a(g118693 +g118695 +S'this' +p118697 +tp118698 +a(g118695 +g118697 +S'madonna' +p118699 +tp118700 +a(g118697 +g118699 +S'of' +p118701 +tp118702 +a(g118699 +g118701 +S'humility' +p118703 +tp118704 +a(g118701 +g118703 +S'adds' +p118705 +tp118706 +a(g118703 +g118705 +S'the' +p118707 +tp118708 +a(g118705 +g118707 +S'theme' +p118709 +tp118710 +a(g118707 +g118709 +S'of' +p118711 +tp118712 +a(g118709 +g118711 +S'the' +p118713 +tp118714 +a(g118711 +g118713 +S'baby' +p118715 +tp118716 +a(g118713 +g118715 +S'jesus' +p118717 +tp118718 +a(g118715 +g118717 +S'reaching' +p118719 +tp118720 +a(g118717 +g118719 +S'for' +p118721 +tp118722 +a(g118719 +g118721 +S'his' +p118723 +tp118724 +a(g118721 +g118723 +S'mother’s' +p118725 +tp118726 +a(g118723 +g118725 +S'breast' +p118727 +tp118728 +a(g118725 +g118727 +S'to' +p118729 +tp118730 +a(g118727 +g118729 +S'nurse.' +p118731 +tp118732 +a(g118729 +g118731 +S'god' +p118733 +tp118734 +a(g118731 +g118733 +S'the' +p118735 +tp118736 +a(g118733 +g118735 +S'father' +p118737 +tp118738 +a(g118735 +g118737 +S'appears' +p118739 +tp118740 +a(g118737 +g118739 +S'overhead,' +p118741 +tp118742 +a(g118739 +g118741 +S'and' +p118743 +tp118744 +a(g118741 +g118743 +S'the' +p118745 +tp118746 +a(g118743 +g118745 +S'dove' +p118747 +tp118748 +a(g118745 +g118747 +S'of' +p118749 +tp118750 +a(g118747 +g118749 +S'the' +p118751 +tp118752 +a(g118749 +g118751 +S'holy' +p118753 +tp118754 +a(g118751 +g118753 +S'spirit' +p118755 +tp118756 +a(g118753 +g118755 +S'flies' +p118757 +tp118758 +a(g118755 +g118757 +S'down' +p118759 +tp118760 +a(g118757 +g118759 +S'upon' +p118761 +tp118762 +a(g118759 +g118761 +S'rays' +p118763 +tp118764 +a(g118761 +g118763 +S'of' +p118765 +tp118766 +a(g118763 +g118765 +S'light.' +p118767 +tp118768 +a(g118765 +g118767 +S'thus,' +p118769 +tp118770 +a(g118767 +g118769 +S'the' +p118771 +tp118772 +a(g118769 +g118771 +S'entire' +p118773 +tp118774 +a(g118771 +g118773 +S'trinity' +p118775 +tp118776 +a(g118773 +g118775 +S'is' +p118777 +tp118778 +a(g118775 +g118777 +S'present' +p118779 +tp118780 +a(g118777 +g118779 +S'along' +p118781 +tp118782 +a(g118779 +g118781 +S'with' +p118783 +tp118784 +a(g118781 +g118783 +S'the' +p118785 +tp118786 +a(g118783 +g118785 +S'virgin.' +p118787 +tp118788 +a(g118785 +g118787 +S'andrea' +p118789 +tp118790 +a(g118787 +g118789 +S'orcagna' +p118791 +tp118792 +a(g118789 +g118791 +S'was' +p118793 +tp118794 +a(g118791 +g118793 +S'the' +p118795 +tp118796 +a(g118793 +g118795 +S'eldest' +p118797 +tp118798 +a(g118795 +g118797 +S'of' +p118799 +tp118800 +a(g118797 +g118799 +S'three' +p118801 +tp118802 +a(g118799 +g118801 +S'artist' +p118803 +tp118804 +a(g118801 +g118803 +S'brothers' +p118805 +tp118806 +a(g118803 +g118805 +S'who' +p118807 +tp118808 +a(g118805 +g118807 +S'often' +p118809 +tp118810 +a(g118807 +g118809 +S'collaborated.' +p118811 +tp118812 +a(g118809 +g118811 +S'jacopo' +p118813 +tp118814 +a(g118811 +g118813 +S'di' +p118815 +tp118816 +a(g118813 +g118815 +S'cione,' +p118817 +tp118818 +a(g118815 +g118817 +S'the' +p118819 +tp118820 +a(g118817 +g118819 +S'youngest' +p118821 +tp118822 +a(g118819 +g118821 +S'brother,' +p118823 +tp118824 +a(g118821 +g118823 +S'may' +p118825 +tp118826 +a(g118823 +g118825 +S'have' +p118827 +tp118828 +a(g118825 +g118827 +S'assisted' +p118829 +tp118830 +a(g118827 +g118829 +S'orcagna' +p118831 +tp118832 +a(g118829 +g118831 +S'in' +p118833 +tp118834 +a(g118831 +g118833 +S'the' +p118835 +tp118836 +a(g118833 +g118835 +S'execution' +p118837 +tp118838 +a(g118835 +g118837 +S'of' +p118839 +tp118840 +a(g118837 +g118839 +S'this' +p118841 +tp118842 +a(g118839 +g118841 +S'work.' +p118843 +tp118844 +a(g118841 +g118843 +S'a' +p118845 +tp118846 +a(g118843 +g118845 +S'small' +p118847 +tp118848 +a(g118845 +g118847 +S'triptych' +p118849 +tp118850 +a(g118847 +g118849 +S'or' +p118851 +tp118852 +a(g118849 +g118851 +S'three-part' +p118853 +tp118854 +a(g118851 +g118853 +S'altarpiece' +p118855 +tp118856 +a(g118853 +g118855 +S'by' +p118857 +tp118858 +a(g118855 +g118857 +S'their' +p118859 +tp118860 +a(g118857 +g118859 +S'middle' +p118861 +tp118862 +a(g118859 +g118861 +S'brother,' +p118863 +tp118864 +a(g118861 +g118863 +S'along' +p118865 +tp118866 +a(g118863 +g118865 +S'with' +p118867 +tp118868 +a(g118865 +g118867 +S'although' +p118869 +tp118870 +a(g118867 +g118869 +S'he' +p118871 +tp118872 +a(g118869 +g118871 +S'lived' +p118873 +tp118874 +a(g118871 +g118873 +S'in' +p118875 +tp118876 +a(g118873 +g118875 +S'the' +p118877 +tp118878 +a(g118875 +g118877 +S'third' +p118879 +tp118880 +a(g118877 +g118879 +S'century,' +p118881 +tp118882 +a(g118879 +g118881 +S'the' +p118883 +tp118884 +a(g118881 +g118883 +S'saint' +p118885 +tp118886 +a(g118883 +g118885 +S'is' +p118887 +tp118888 +a(g118885 +g118887 +S'depicted' +p118889 +tp118890 +a(g118887 +g118889 +S'in' +p118891 +tp118892 +a(g118889 +g118891 +S'contemporary' +p118893 +tp118894 +a(g118891 +g118893 +S'guise.' +p118895 +tp118896 +a(g118893 +g118895 +S'the' +p118897 +tp118898 +a(g118895 +g118897 +S'arms' +p118899 +tp118900 +a(g118897 +g118899 +S'of' +p118901 +tp118902 +a(g118899 +g118901 +S'a' +p118903 +tp118904 +a(g118901 +g118903 +S'prominent' +p118905 +tp118906 +a(g118903 +g118905 +S'sienese' +p118907 +tp118908 +a(g118905 +g118907 +S'family' +p118909 +tp118910 +a(g118907 +g118909 +S'appear' +p118911 +tp118912 +a(g118909 +g118911 +S'over' +p118913 +tp118914 +a(g118911 +g118913 +S'a' +p118915 +tp118916 +a(g118913 +g118915 +S'doorway,' +p118917 +tp118918 +a(g118915 +g118917 +S'and' +p118919 +tp118920 +a(g118917 +g118919 +S'some' +p118921 +tp118922 +a(g118919 +g118921 +S'of' +p118923 +tp118924 +a(g118921 +g118923 +S'the' +p118925 +tp118926 +a(g118923 +g118925 +S'architecture' +p118927 +tp118928 +a(g118925 +g118927 +S'may' +p118929 +tp118930 +a(g118927 +g118929 +S'reflect' +p118931 +tp118932 +a(g118929 +g118931 +S'specific' +p118933 +tp118934 +a(g118931 +g118933 +S'buildings' +p118935 +tp118936 +a(g118933 +g118935 +S'in' +p118937 +tp118938 +a(g118935 +g118937 +S'the' +p118939 +tp118940 +a(g118937 +g118939 +S'city' +p118941 +tp118942 +a(g118939 +g118941 +S'and' +p118943 +tp118944 +a(g118941 +g118943 +S'surrounding' +p118945 +tp118946 +a(g118943 +g118945 +S'area.' +p118947 +tp118948 +a(g118945 +g118947 +S'here' +p118949 +tp118950 +a(g118947 +g118949 +S'are' +p118951 +tp118952 +a(g118949 +g118951 +S'beggars' +p118953 +tp118954 +a(g118951 +g118953 +S'with' +p118955 +tp118956 +a(g118953 +g118955 +S'patches' +p118957 +tp118958 +a(g118955 +g118957 +S'on' +p118959 +tp118960 +a(g118957 +g118959 +S'their' +p118961 +tp118962 +a(g118959 +g118961 +S'clothing,' +p118963 +tp118964 +a(g118961 +g118963 +S'a' +p118965 +tp118966 +a(g118963 +g118965 +S'blind' +p118967 +tp118968 +a(g118965 +g118967 +S'man' +p118969 +tp118970 +a(g118967 +g118969 +S'being' +p118971 +tp118972 +a(g118969 +g118971 +S'led' +p118973 +tp118974 +a(g118971 +g118973 +S'by' +p118975 +tp118976 +a(g118973 +g118975 +S'his' +p118977 +tp118978 +a(g118975 +g118977 +S'small' +p118979 +tp118980 +a(g118977 +g118979 +S'dog,' +p118981 +tp118982 +a(g118979 +g118981 +S'and' +p118983 +tp118984 +a(g118981 +g118983 +S'on' +p118985 +tp118986 +a(g118983 +g118985 +S'the' +p118987 +tp118988 +a(g118985 +g118987 +S'balcony,' +p118989 +tp118990 +a(g118987 +g118989 +S'the' +p118991 +tp118992 +a(g118989 +g118991 +S'iron' +p118993 +tp118994 +a(g118991 +g118993 +S'spikes' +p118995 +tp118996 +a(g118993 +g118995 +S'that' +p118997 +tp118998 +a(g118995 +g118997 +S'supported' +p118999 +tp119000 +a(g118997 +g118999 +S'awnings' +p119001 +tp119002 +a(g118999 +g119001 +S'against' +p119003 +tp119004 +a(g119001 +g119003 +S'the' +p119005 +tp119006 +a(g119003 +g119005 +S'summer' +p119007 +tp119008 +a(g119005 +g119007 +S'sun.' +p119009 +tp119010 +a(g119007 +g119009 +S'like' +p119011 +tp119012 +a(g119009 +g119011 +S'the' +p119013 +tp119014 +a(g119011 +g119013 +S'dramatic' +p119015 +tp119016 +a(g119013 +g119015 +S'sermons' +p119017 +tp119018 +a(g119015 +g119017 +S'of' +p119019 +tp119020 +a(g119017 +g119019 +S'street' +p119021 +tp119022 +a(g119019 +g119021 +S'preachers' +p119023 +tp119024 +a(g119021 +g119023 +S'and' +p119025 +tp119026 +a(g119023 +g119025 +S'the' +p119027 +tp119028 +a(g119025 +g119027 +S'performance' +p119029 +tp119030 +a(g119027 +g119029 +S'of' +p119031 +tp119032 +a(g119029 +g119031 +S'religious' +p119033 +tp119034 +a(g119031 +g119033 +S'plays,' +p119035 +tp119036 +a(g119033 +g119035 +S'in' +p119037 +tp119038 +a(g119035 +g119037 +S'which' +p119039 +tp119040 +a(g119037 +g119039 +S'townspeople' +p119041 +tp119042 +a(g119039 +g119041 +S'acted' +p119043 +tp119044 +a(g119041 +g119043 +S'the' +p119045 +tp119046 +a(g119043 +g119045 +S'parts' +p119047 +tp119048 +a(g119045 +g119047 +S'of' +p119049 +tp119050 +a(g119047 +g119049 +S'saints,' +p119051 +tp119052 +a(g119049 +g119051 +S'these' +p119053 +tp119054 +a(g119051 +g119053 +S'details' +p119055 +tp119056 +a(g119053 +g119055 +S'helped' +p119057 +tp119058 +a(g119055 +g119057 +S'viewers' +p119059 +tp119060 +a(g119057 +g119059 +S'visualize' +p119061 +tp119062 +a(g119059 +g119061 +S'sacred' +p119063 +tp119064 +a(g119061 +g119063 +S'events' +p119065 +tp119066 +a(g119063 +g119065 +S'with' +p119067 +tp119068 +a(g119065 +g119067 +S'immediacy' +p119069 +tp119070 +a(g119067 +g119069 +S'and' +p119071 +tp119072 +a(g119069 +g119071 +S'vividness.' +p119073 +tp119074 +a(g119071 +g119073 +S'the' +p119075 +tp119076 +a(g119073 +g119075 +S'artist' +p119077 +tp119078 +a(g119075 +g119077 +S'combined' +p119079 +tp119080 +a(g119077 +g119079 +S'tradition—note' +p119081 +tp119082 +a(g119079 +g119081 +S'the' +p119083 +tp119084 +a(g119081 +g119083 +S'typically' +p119085 +tp119086 +a(g119083 +g119085 +S'sienese' +p119087 +tp119088 +a(g119085 +g119087 +S'brilliance' +p119089 +tp119090 +a(g119087 +g119089 +S'of' +p119091 +tp119092 +a(g119089 +g119091 +S'his' +p119093 +tp119094 +a(g119091 +g119093 +S'pinks' +p119095 +tp119096 +a(g119093 +g119095 +S'and' +p119097 +tp119098 +a(g119095 +g119097 +S'greens—with' +p119099 +tp119100 +a(g119097 +g119099 +S'a' +p119101 +tp119102 +a(g119099 +g119101 +S'new' +p119103 +tp119104 +a(g119101 +g119103 +S'interest' +p119105 +tp119106 +a(g119103 +g119105 +S'in' +p119107 +tp119108 +a(g119105 +g119107 +S'landscape' +p119109 +tp119110 +a(g119107 +g119109 +S'and' +p119111 +tp119112 +a(g119109 +g119111 +S'experiments' +p119113 +tp119114 +a(g119111 +g119113 +S'in' +p119115 +tp119116 +a(g119113 +g119115 +S'perspective.' +p119117 +tp119118 +a(g119115 +g119117 +S'through' +p119119 +tp119120 +a(g119117 +g119119 +S'windows' +p119121 +tp119122 +a(g119119 +g119121 +S'and' +p119123 +tp119124 +a(g119121 +g119123 +S'doorways' +p119125 +tp119126 +a(g119123 +g119125 +S'overlapping' +p119127 +tp119128 +a(g119125 +g119127 +S'layers' +p119129 +tp119130 +a(g119127 +g119129 +S'make' +p119131 +tp119132 +a(g119129 +g119131 +S'depth' +p119133 +tp119134 +a(g119131 +g119133 +S'legible.' +p119135 +tp119136 +a(g119133 +g119135 +S'the' +p119137 +tp119138 +a(g119135 +g119137 +S'venetian' +p119139 +tp119140 +a(g119137 +g119139 +S'master' +p119141 +tp119142 +a(g119139 +g119141 +S'tintoretto' +p119143 +tp119144 +a(g119141 +g119143 +S'marshaled' +p119145 +tp119146 +a(g119143 +g119145 +S'the' +p119147 +tp119148 +a(g119145 +g119147 +S'unstable' +p119149 +tp119150 +a(g119147 +g119149 +S'forces' +p119151 +tp119152 +a(g119149 +g119151 +S'of' +p119153 +tp119154 +a(g119151 +g119153 +S'nature' +p119155 +tp119156 +a(g119153 +g119155 +S'to' +p119157 +tp119158 +a(g119155 +g119157 +S'heighten' +p119159 +tp119160 +a(g119157 +g119159 +S'the' +p119161 +tp119162 +a(g119159 +g119161 +S'drama' +p119163 +tp119164 +a(g119161 +g119163 +S'of' +p119165 +tp119166 +a(g119163 +g119165 +S'this' +p119167 +tp119168 +a(g119165 +g119167 +S'scene' +p119169 +tp119170 +a(g119167 +g119169 +S'from' +p119171 +tp119172 +a(g119169 +g119171 +S"john's" +p119173 +tp119174 +a(g119171 +g119173 +S'gospel;' +p119175 +tp119176 +a(g119173 +g119175 +S'the' +p119177 +tp119178 +a(g119175 +g119177 +S'wind' +p119179 +tp119180 +a(g119177 +g119179 +S'that' +p119181 +tp119182 +a(g119179 +g119181 +S'fills' +p119183 +tp119184 +a(g119181 +g119183 +S'the' +p119185 +tp119186 +a(g119183 +g119185 +S'sail' +p119187 +tp119188 +a(g119185 +g119187 +S'and' +p119189 +tp119190 +a(g119187 +g119189 +S'bends' +p119191 +tp119192 +a(g119189 +g119191 +S'the' +p119193 +tp119194 +a(g119191 +g119193 +S'mast' +p119195 +tp119196 +a(g119193 +g119195 +S'also' +p119197 +tp119198 +a(g119195 +g119197 +S'agitates' +p119199 +tp119200 +a(g119197 +g119199 +S'the' +p119201 +tp119202 +a(g119199 +g119201 +S'sea' +p119203 +tp119204 +a(g119201 +g119203 +S'and' +p119205 +tp119206 +a(g119203 +g119205 +S'sky,' +p119207 +tp119208 +a(g119205 +g119207 +S'and' +p119209 +tp119210 +a(g119207 +g119209 +S'the' +p119211 +tp119212 +a(g119209 +g119211 +S'rocky' +p119213 +tp119214 +a(g119211 +g119213 +S'waves' +p119215 +tp119216 +a(g119213 +g119215 +S'meet' +p119217 +tp119218 +a(g119215 +g119217 +S'the' +p119219 +tp119220 +a(g119217 +g119219 +S'low' +p119221 +tp119222 +a(g119219 +g119221 +S'clouds' +p119223 +tp119224 +a(g119221 +g119223 +S'that' +p119225 +tp119226 +a(g119223 +g119225 +S'blow' +p119227 +tp119228 +a(g119225 +g119227 +S'onto' +p119229 +tp119230 +a(g119227 +g119229 +S'the' +p119231 +tp119232 +a(g119229 +g119231 +S'land.' +p119233 +tp119234 +a(g119231 +g119233 +S"christ's" +p119235 +tp119236 +a(g119233 +g119235 +S'outstretched' +p119237 +tp119238 +a(g119235 +g119237 +S'arm' +p119239 +tp119240 +a(g119237 +g119239 +S'draws' +p119241 +tp119242 +a(g119239 +g119241 +S'peter' +p119243 +tp119244 +a(g119241 +g119243 +S'like' +p119245 +tp119246 +a(g119243 +g119245 +S'a' +p119247 +tp119248 +a(g119245 +g119247 +S'magnet,' +p119249 +tp119250 +a(g119247 +g119249 +S'the' +p119251 +tp119252 +a(g119249 +g119251 +S'charge' +p119253 +tp119254 +a(g119251 +g119253 +S'between' +p119255 +tp119256 +a(g119253 +g119255 +S'them' +p119257 +tp119258 +a(g119255 +g119257 +S'creating' +p119259 +tp119260 +a(g119257 +g119259 +S'a' +p119261 +tp119262 +a(g119259 +g119261 +S'dynamic' +p119263 +tp119264 +a(g119261 +g119263 +S'link' +p119265 +tp119266 +a(g119263 +g119265 +S'between' +p119267 +tp119268 +a(g119265 +g119267 +S'the' +p119269 +tp119270 +a(g119267 +g119269 +S'center' +p119271 +tp119272 +a(g119269 +g119271 +S'of' +p119273 +tp119274 +a(g119271 +g119273 +S'the' +p119275 +tp119276 +a(g119273 +g119275 +S'picture' +p119277 +tp119278 +a(g119275 +g119277 +S'and' +p119279 +tp119280 +a(g119277 +g119279 +S'the' +p119281 +tp119282 +a(g119279 +g119281 +S'left' +p119283 +tp119284 +a(g119281 +g119283 +S'foreground.' +p119285 +tp119286 +a(g119283 +g119285 +S'tintoretto' +p119287 +tp119288 +a(g119285 +g119287 +S'has' +p119289 +tp119290 +a(g119287 +g119289 +S'broken' +p119291 +tp119292 +a(g119289 +g119291 +S'all' +p119293 +tp119294 +a(g119291 +g119293 +S'forms' +p119295 +tp119296 +a(g119293 +g119295 +S'into' +p119297 +tp119298 +a(g119295 +g119297 +S'multiple' +p119299 +tp119300 +a(g119297 +g119299 +S'planes,' +p119301 +tp119302 +a(g119299 +g119301 +S'splintering' +p119303 +tp119304 +a(g119301 +g119303 +S'the' +p119305 +tp119306 +a(g119303 +g119305 +S'light,' +p119307 +tp119308 +a(g119305 +g119307 +S'and' +p119309 +tp119310 +a(g119307 +g119309 +S'frosting' +p119311 +tp119312 +a(g119309 +g119311 +S'the' +p119313 +tp119314 +a(g119311 +g119313 +S'edges' +p119315 +tp119316 +a(g119313 +g119315 +S'with' +p119317 +tp119318 +a(g119315 +g119317 +S'a' +p119319 +tp119320 +a(g119317 +g119319 +S'brush' +p119321 +tp119322 +a(g119319 +g119321 +S'loaded' +p119323 +tp119324 +a(g119321 +g119323 +S'with' +p119325 +tp119326 +a(g119323 +g119325 +S'dry,' +p119327 +tp119328 +a(g119325 +g119327 +S'lead-white' +p119329 +tp119330 +a(g119327 +g119329 +S'oil' +p119331 +tp119332 +a(g119329 +g119331 +S'paint.' +p119333 +tp119334 +a(g119331 +g119333 +S'this' +p119335 +tp119336 +a(g119333 +g119335 +S'use' +p119337 +tp119338 +a(g119335 +g119337 +S'of' +p119339 +tp119340 +a(g119337 +g119339 +S'a' +p119341 +tp119342 +a(g119339 +g119341 +S'thick,' +p119343 +tp119344 +a(g119341 +g119343 +S'white' +p119345 +tp119346 +a(g119343 +g119345 +S'impasto' +p119347 +tp119348 +a(g119345 +g119347 +S'to' +p119349 +tp119350 +a(g119347 +g119349 +S'accent' +p119351 +tp119352 +a(g119349 +g119351 +S'the' +p119353 +tp119354 +a(g119351 +g119353 +S'highlights' +p119355 +tp119356 +a(g119353 +g119355 +S'and' +p119357 +tp119358 +a(g119355 +g119357 +S'as' +p119359 +tp119360 +a(g119357 +g119359 +S'a' +p119361 +tp119362 +a(g119359 +g119361 +S'ghostly' +p119363 +tp119364 +a(g119361 +g119363 +S'shorthand,' +p119365 +tp119366 +a(g119363 +g119365 +S'as' +p119367 +tp119368 +a(g119365 +g119367 +S'in' +p119369 +tp119370 +a(g119367 +g119369 +S'the' +p119371 +tp119372 +a(g119369 +g119371 +S'grassy' +p119373 +tp119374 +a(g119371 +g119373 +S'shore' +p119375 +tp119376 +a(g119373 +g119375 +S'at' +p119377 +tp119378 +a(g119375 +g119377 +S"christ's" +p119379 +tp119380 +a(g119377 +g119379 +S'feet,' +p119381 +tp119382 +a(g119379 +g119381 +S'is' +p119383 +tp119384 +a(g119381 +g119383 +S'a' +p119385 +tp119386 +a(g119383 +g119385 +S'hallmark' +p119387 +tp119388 +a(g119385 +g119387 +S'of' +p119389 +tp119390 +a(g119387 +g119389 +S"tintoretto's" +p119391 +tp119392 +a(g119389 +g119391 +S'bravura' +p119393 +tp119394 +a(g119391 +g119393 +S'style.' +p119395 +tp119396 +a(g119393 +g119395 +S'too' +p119397 +tp119398 +a(g119395 +g119397 +S'wild' +p119399 +tp119400 +a(g119397 +g119399 +S'and' +p119401 +tp119402 +a(g119399 +g119401 +S'improvisatory' +p119403 +tp119404 +a(g119401 +g119403 +S'to' +p119405 +tp119406 +a(g119403 +g119405 +S'find' +p119407 +tp119408 +a(g119405 +g119407 +S'a' +p119409 +tp119410 +a(g119407 +g119409 +S'real' +p119411 +tp119412 +a(g119409 +g119411 +S'following' +p119413 +tp119414 +a(g119411 +g119413 +S'among' +p119415 +tp119416 +a(g119413 +g119415 +S'his' +p119417 +tp119418 +a(g119415 +g119417 +S'compatriots' +p119419 +tp119420 +a(g119417 +g119419 +S'in' +p119421 +tp119422 +a(g119419 +g119421 +S'venice,' +p119423 +tp119424 +a(g119421 +g119423 +S"tintoretto's" +p119425 +tp119426 +a(g119423 +g119425 +S'bold' +p119427 +tp119428 +a(g119425 +g119427 +S'expressions' +p119429 +tp119430 +a(g119427 +g119429 +S'instead' +p119431 +tp119432 +a(g119429 +g119431 +S'fired' +p119433 +tp119434 +a(g119431 +g119433 +S'the' +p119435 +tp119436 +a(g119433 +g119435 +S'imagination' +p119437 +tp119438 +a(g119435 +g119437 +S'of' +p119439 +tp119440 +a(g119437 +g119439 +S'one' +p119441 +tp119442 +a(g119439 +g119441 +S'kindred' +p119443 +tp119444 +a(g119441 +g119443 +S'temperament:' +p119445 +tp119446 +a(g119443 +g119445 +S'el' +p119447 +tp119448 +a(g119445 +g119447 +S'greco,' +p119449 +tp119450 +a(g119447 +g119449 +S'who' +p119451 +tp119452 +a(g119449 +g119451 +S'studied' +p119453 +tp119454 +a(g119451 +g119453 +S'there' +p119455 +tp119456 +a(g119453 +g119455 +S'before' +p119457 +tp119458 +a(g119455 +g119457 +S'moving' +p119459 +tp119460 +a(g119457 +g119459 +S'to' +p119461 +tp119462 +a(g119459 +g119461 +S'spain.' +p119463 +tp119464 +a(g119461 +g119463 +S'so' +p119465 +tp119466 +a(g119463 +g119465 +S'close' +p119467 +tp119468 +a(g119465 +g119467 +S'in' +p119469 +tp119470 +a(g119467 +g119469 +S'style' +p119471 +tp119472 +a(g119469 +g119471 +S'and' +p119473 +tp119474 +a(g119471 +g119473 +S'spirit' +p119475 +tp119476 +a(g119473 +g119475 +S'was' +p119477 +tp119478 +a(g119475 +g119477 +S'el' +p119479 +tp119480 +a(g119477 +g119479 +S"greco's" +p119481 +tp119482 +a(g119479 +g119481 +S'art' +p119483 +tp119484 +a(g119481 +g119483 +S'that,' +p119485 +tp119486 +a(g119483 +g119485 +S'earlier' +p119487 +tp119488 +a(g119485 +g119487 +S'in' +p119489 +tp119490 +a(g119487 +g119489 +S'this' +p119491 +tp119492 +a(g119489 +g119491 +S'century,' +p119493 +tp119494 +a(g119491 +g119493 +S'some' +p119495 +tp119496 +a(g119493 +g119495 +S'experts' +p119497 +tp119498 +a(g119495 +g119497 +S'believed' +p119499 +tp119500 +a(g119497 +g119499 +S'that' +p119501 +tp119502 +a(g119499 +g119501 +S'he,' +p119503 +tp119504 +a(g119501 +g119503 +S'and' +p119505 +tp119506 +a(g119503 +g119505 +S'not' +p119507 +tp119508 +a(g119505 +g119507 +S'tintoretto,' +p119509 +tp119510 +a(g119507 +g119509 +S'had' +p119511 +tp119512 +a(g119509 +g119511 +S'painted' +p119513 +tp119514 +a(g119511 +g119513 +S'the' +p119515 +tp119516 +a(g119513 +g119515 +S'the' +p119517 +tp119518 +a(g119515 +g119517 +S'son' +p119519 +tp119520 +a(g119517 +g119519 +S'of' +p119521 +tp119522 +a(g119519 +g119521 +S'a' +p119523 +tp119524 +a(g119521 +g119523 +S'venetian' +p119525 +tp119526 +a(g119523 +g119525 +S'statesman,' +p119527 +tp119528 +a(g119525 +g119527 +S'pietro' +p119529 +tp119530 +a(g119527 +g119529 +S'bembo' +p119531 +tp119532 +a(g119529 +g119531 +S'(1470–1547)' +p119533 +tp119534 +a(g119531 +g119533 +S'is' +p119535 +tp119536 +a(g119533 +g119535 +S'recognized' +p119537 +tp119538 +a(g119535 +g119537 +S'as' +p119539 +tp119540 +a(g119537 +g119539 +S'one' +p119541 +tp119542 +a(g119539 +g119541 +S'of' +p119543 +tp119544 +a(g119541 +g119543 +S'the' +p119545 +tp119546 +a(g119543 +g119545 +S'most' +p119547 +tp119548 +a(g119545 +g119547 +S'celebrated' +p119549 +tp119550 +a(g119547 +g119549 +S'diplomats,' +p119551 +tp119552 +a(g119549 +g119551 +S'poets,' +p119553 +tp119554 +a(g119551 +g119553 +S'and' +p119555 +tp119556 +a(g119553 +g119555 +S'humanist' +p119557 +tp119558 +a(g119555 +g119557 +S'scholars' +p119559 +tp119560 +a(g119557 +g119559 +S'of' +p119561 +tp119562 +a(g119559 +g119561 +S'the' +p119563 +tp119564 +a(g119561 +g119563 +S'sixteenth' +p119565 +tp119566 +a(g119563 +g119565 +S'century.' +p119567 +tp119568 +a(g119565 +g119567 +S'in' +p119569 +tp119570 +a(g119567 +g119569 +S'1513,' +p119571 +tp119572 +a(g119569 +g119571 +S'after' +p119573 +tp119574 +a(g119571 +g119573 +S'taking' +p119575 +tp119576 +a(g119573 +g119575 +S'holy' +p119577 +tp119578 +a(g119575 +g119577 +S'orders,' +p119579 +tp119580 +a(g119577 +g119579 +S'he' +p119581 +tp119582 +a(g119579 +g119581 +S'became' +p119583 +tp119584 +a(g119581 +g119583 +S'secretary' +p119585 +tp119586 +a(g119583 +g119585 +S'to' +p119587 +tp119588 +a(g119585 +g119587 +S'pope' +p119589 +tp119590 +a(g119587 +g119589 +S'leo' +p119591 +tp119592 +a(g119589 +g119591 +S'x' +p119593 +tp119594 +a(g119591 +g119593 +S'in' +p119595 +tp119596 +a(g119593 +g119595 +S'rome.' +p119597 +tp119598 +a(g119595 +g119597 +S'bembo' +p119599 +tp119600 +a(g119597 +g119599 +S'was' +p119601 +tp119602 +a(g119599 +g119601 +S'appointed' +p119603 +tp119604 +a(g119601 +g119603 +S'librarian' +p119605 +tp119606 +a(g119603 +g119605 +S'of' +p119607 +tp119608 +a(g119605 +g119607 +S'st.' +p119609 +tp119610 +a(g119607 +g119609 +S"mark's" +p119611 +tp119612 +a(g119609 +g119611 +S'cathedral' +p119613 +tp119614 +a(g119611 +g119613 +S'in' +p119615 +tp119616 +a(g119613 +g119615 +S'1530,' +p119617 +tp119618 +a(g119615 +g119617 +S'and' +p119619 +tp119620 +a(g119617 +g119619 +S'he' +p119621 +tp119622 +a(g119619 +g119621 +S'became' +p119623 +tp119624 +a(g119621 +g119623 +S'official' +p119625 +tp119626 +a(g119623 +g119625 +S'historian' +p119627 +tp119628 +a(g119625 +g119627 +S'for' +p119629 +tp119630 +a(g119627 +g119629 +S'the' +p119631 +tp119632 +a(g119629 +g119631 +S'city' +p119633 +tp119634 +a(g119631 +g119633 +S'of' +p119635 +tp119636 +a(g119633 +g119635 +S'venice.' +p119637 +tp119638 +a(g119635 +g119637 +S'titian' +p119639 +tp119640 +a(g119637 +g119639 +S'probably' +p119641 +tp119642 +a(g119639 +g119641 +S'painted' +p119643 +tp119644 +a(g119641 +g119643 +S'this' +p119645 +tp119646 +a(g119643 +g119645 +S'official' +p119647 +tp119648 +a(g119645 +g119647 +S'portrait' +p119649 +tp119650 +a(g119647 +g119649 +S'to' +p119651 +tp119652 +a(g119649 +g119651 +S'commemorate' +p119653 +tp119654 +a(g119651 +g119653 +S"bembo's" +p119655 +tp119656 +a(g119653 +g119655 +S'elevation' +p119657 +tp119658 +a(g119655 +g119657 +S'to' +p119659 +tp119660 +a(g119657 +g119659 +S'cardinal' +p119661 +tp119662 +a(g119659 +g119661 +S'in' +p119663 +tp119664 +a(g119661 +g119663 +S'march' +p119665 +tp119666 +a(g119663 +g119665 +S'1539.' +p119667 +tp119668 +a(g119665 +g119667 +S'in' +p119669 +tp119670 +a(g119667 +g119669 +S'this,' +p119671 +tp119672 +a(g119669 +g119671 +S'his' +p119673 +tp119674 +a(g119671 +g119673 +S'second' +p119675 +tp119676 +a(g119673 +g119675 +S'portrait' +p119677 +tp119678 +a(g119675 +g119677 +S'of' +p119679 +tp119680 +a(g119677 +g119679 +S'pietro' +p119681 +tp119682 +a(g119679 +g119681 +S'bembo,' +p119683 +tp119684 +a(g119681 +g119683 +S'titian' +p119685 +tp119686 +a(g119683 +g119685 +S'portrayed' +p119687 +tp119688 +a(g119685 +g119687 +S'his' +p119689 +tp119690 +a(g119687 +g119689 +S'lifelong' +p119691 +tp119692 +a(g119689 +g119691 +S'friend' +p119693 +tp119694 +a(g119691 +g119693 +S'as' +p119695 +tp119696 +a(g119693 +g119695 +S'an' +p119697 +tp119698 +a(g119695 +g119697 +S'intelligent,' +p119699 +tp119700 +a(g119697 +g119699 +S'dynamic' +p119701 +tp119702 +a(g119699 +g119701 +S'individual.' +p119703 +tp119704 +a(g119701 +g119703 +S"bembo's" +p119705 +tp119706 +a(g119703 +g119705 +S'dark' +p119707 +tp119708 +a(g119705 +g119707 +S'eyes' +p119709 +tp119710 +a(g119707 +g119709 +S'are' +p119711 +tp119712 +a(g119709 +g119711 +S'bright' +p119713 +tp119714 +a(g119711 +g119713 +S'and' +p119715 +tp119716 +a(g119713 +g119715 +S'alert;' +p119717 +tp119718 +a(g119715 +g119717 +S'his' +p119719 +tp119720 +a(g119717 +g119719 +S'short' +p119721 +tp119722 +a(g119719 +g119721 +S'gray' +p119723 +tp119724 +a(g119721 +g119723 +S'beard' +p119725 +tp119726 +a(g119723 +g119725 +S'is' +p119727 +tp119728 +a(g119725 +g119727 +S'softly' +p119729 +tp119730 +a(g119727 +g119729 +S'modeled.' +p119731 +tp119732 +a(g119729 +g119731 +S'his' +p119733 +tp119734 +a(g119731 +g119733 +S'angular' +p119735 +tp119736 +a(g119733 +g119735 +S'features' +p119737 +tp119738 +a(g119735 +g119737 +S'are' +p119739 +tp119740 +a(g119737 +g119739 +S'somewhat' +p119741 +tp119742 +a(g119739 +g119741 +S'idealized' +p119743 +tp119744 +a(g119741 +g119743 +S'and' +p119745 +tp119746 +a(g119743 +g119745 +S'give' +p119747 +tp119748 +a(g119745 +g119747 +S'him' +p119749 +tp119750 +a(g119747 +g119749 +S'the' +p119751 +tp119752 +a(g119749 +g119751 +S'appearance' +p119753 +tp119754 +a(g119751 +g119753 +S'of' +p119755 +tp119756 +a(g119753 +g119755 +S'a' +p119757 +tp119758 +a(g119755 +g119757 +S'man' +p119759 +tp119760 +a(g119757 +g119759 +S'younger' +p119761 +tp119762 +a(g119759 +g119761 +S'than' +p119763 +tp119764 +a(g119761 +g119763 +S'his' +p119765 +tp119766 +a(g119763 +g119765 +S'seventy' +p119767 +tp119768 +a(g119765 +g119767 +S'years.' +p119769 +tp119770 +a(g119767 +g119769 +S'wearing' +p119771 +tp119772 +a(g119769 +g119771 +S'the' +p119773 +tp119774 +a(g119771 +g119773 +S'scarlet' +p119775 +tp119776 +a(g119773 +g119775 +S'cape' +p119777 +tp119778 +a(g119775 +g119777 +S'and' +p119779 +tp119780 +a(g119777 +g119779 +S'this' +p119781 +tp119782 +a(g119779 +g119781 +S'work' +p119783 +tp119784 +a(g119781 +g119783 +S'shows' +p119785 +tp119786 +a(g119783 +g119785 +S'the' +p119787 +tp119788 +a(g119785 +g119787 +S'madonna' +p119789 +tp119790 +a(g119787 +g119789 +S'and' +p119791 +tp119792 +a(g119789 +g119791 +S'child' +p119793 +tp119794 +a(g119791 +g119793 +S'seated' +p119795 +tp119796 +a(g119793 +g119795 +S'in' +p119797 +tp119798 +a(g119795 +g119797 +S'a' +p119799 +tp119800 +a(g119797 +g119799 +S'garden' +p119801 +tp119802 +a(g119799 +g119801 +S'that' +p119803 +tp119804 +a(g119801 +g119803 +S'represents' +p119805 +tp119806 +a(g119803 +g119805 +S'eden.' +p119807 +tp119808 +a(g119805 +g119807 +S'the' +p119809 +tp119810 +a(g119807 +g119809 +S'orange' +p119811 +tp119812 +a(g119809 +g119811 +S'trees' +p119813 +tp119814 +a(g119811 +g119813 +S'bloom' +p119815 +tp119816 +a(g119813 +g119815 +S'with' +p119817 +tp119818 +a(g119815 +g119817 +S'pure' +p119819 +tp119820 +a(g119817 +g119819 +S'white' +p119821 +tp119822 +a(g119819 +g119821 +S'flowers' +p119823 +tp119824 +a(g119821 +g119823 +S'that' +p119825 +tp119826 +a(g119823 +g119825 +S'symbolize' +p119827 +tp119828 +a(g119825 +g119827 +S"mary's" +p119829 +tp119830 +a(g119827 +g119829 +S'virginity.' +p119831 +tp119832 +a(g119829 +g119831 +S'an' +p119833 +tp119834 +a(g119831 +g119833 +S'annunciation' +p119835 +tp119836 +a(g119833 +g119835 +S'scene' +p119837 +tp119838 +a(g119835 +g119837 +S'appears' +p119839 +tp119840 +a(g119837 +g119839 +S'in' +p119841 +tp119842 +a(g119839 +g119841 +S'the' +p119843 +tp119844 +a(g119841 +g119843 +S'raised' +p119845 +tp119846 +a(g119843 +g119845 +S'and' +p119847 +tp119848 +a(g119845 +g119847 +S'gilded' +p119849 +tp119850 +a(g119847 +g119849 +S'foliate' +p119851 +tp119852 +a(g119849 +g119851 +S'scrolls' +p119853 +tp119854 +a(g119851 +g119853 +S'at' +p119855 +tp119856 +a(g119853 +g119855 +S'the' +p119857 +tp119858 +a(g119855 +g119857 +S'top' +p119859 +tp119860 +a(g119857 +g119859 +S'of' +p119861 +tp119862 +a(g119859 +g119861 +S'the' +p119863 +tp119864 +a(g119861 +g119863 +S'painting.' +p119865 +tp119866 +a(g119863 +g119865 +S'since' +p119867 +tp119868 +a(g119865 +g119867 +S'antiquity,' +p119869 +tp119870 +a(g119867 +g119869 +S'sleep' +p119871 +tp119872 +a(g119869 +g119871 +S'was' +p119873 +tp119874 +a(g119871 +g119873 +S'regarded' +p119875 +tp119876 +a(g119873 +g119875 +S'as' +p119877 +tp119878 +a(g119875 +g119877 +S'"the' +p119879 +tp119880 +a(g119877 +g119879 +S'brother' +p119881 +tp119882 +a(g119879 +g119881 +S'of' +p119883 +tp119884 +a(g119881 +g119883 +S'death,"' +p119885 +tp119886 +a(g119883 +g119885 +S'and' +p119887 +tp119888 +a(g119885 +g119887 +S'during' +p119889 +tp119890 +a(g119887 +g119889 +S'the' +p119891 +tp119892 +a(g119889 +g119891 +S'renaissance,' +p119893 +tp119894 +a(g119891 +g119893 +S'representations' +p119895 +tp119896 +a(g119893 +g119895 +S'of' +p119897 +tp119898 +a(g119895 +g119897 +S'the' +p119899 +tp119900 +a(g119897 +g119899 +S'sleeping' +p119901 +tp119902 +a(g119899 +g119901 +S'christ' +p119903 +tp119904 +a(g119901 +g119903 +S'child' +p119905 +tp119906 +a(g119903 +g119905 +S'were' +p119907 +tp119908 +a(g119905 +g119907 +S'considered' +p119909 +tp119910 +a(g119907 +g119909 +S'prefigurations' +p119911 +tp119912 +a(g119909 +g119911 +S'of' +p119913 +tp119914 +a(g119911 +g119913 +S'the' +p119915 +tp119916 +a(g119913 +g119915 +S'death' +p119917 +tp119918 +a(g119915 +g119917 +S'that' +p119919 +tp119920 +a(g119917 +g119919 +S'he' +p119921 +tp119922 +a(g119919 +g119921 +S'would' +p119923 +tp119924 +a(g119921 +g119923 +S'suffer' +p119925 +tp119926 +a(g119923 +g119925 +S'for' +p119927 +tp119928 +a(g119925 +g119927 +S'mankind.' +p119929 +tp119930 +a(g119927 +g119929 +S'in' +p119931 +tp119932 +a(g119929 +g119931 +S'cosmè' +p119933 +tp119934 +a(g119931 +g119933 +S"tura's" +p119935 +tp119936 +a(g119933 +g119935 +S'painting,' +p119937 +tp119938 +a(g119935 +g119937 +S'death' +p119939 +tp119940 +a(g119937 +g119939 +S'is' +p119941 +tp119942 +a(g119939 +g119941 +S'also' +p119943 +tp119944 +a(g119941 +g119943 +S'foreshadowed' +p119945 +tp119946 +a(g119943 +g119945 +S'by' +p119947 +tp119948 +a(g119945 +g119947 +S'the' +p119949 +tp119950 +a(g119947 +g119949 +S'stone' +p119951 +tp119952 +a(g119949 +g119951 +S'sarcophagus' +p119953 +tp119954 +a(g119951 +g119953 +S'on' +p119955 +tp119956 +a(g119953 +g119955 +S'which' +p119957 +tp119958 +a(g119955 +g119957 +S'mary' +p119959 +tp119960 +a(g119957 +g119959 +S'is' +p119961 +tp119962 +a(g119959 +g119961 +S'seated.' +p119963 +tp119964 +a(g119961 +g119963 +S'cosmè' +p119965 +tp119966 +a(g119963 +g119965 +S'tura' +p119967 +tp119968 +a(g119965 +g119967 +S'is' +p119969 +tp119970 +a(g119967 +g119969 +S'considered' +p119971 +tp119972 +a(g119969 +g119971 +S'the' +p119973 +tp119974 +a(g119971 +g119973 +S'first' +p119975 +tp119976 +a(g119973 +g119975 +S'great' +p119977 +tp119978 +a(g119975 +g119977 +S'painter' +p119979 +tp119980 +a(g119977 +g119979 +S'in' +p119981 +tp119982 +a(g119979 +g119981 +S'renaissance' +p119983 +tp119984 +a(g119981 +g119983 +S'ferrara,' +p119985 +tp119986 +a(g119983 +g119985 +S'a' +p119987 +tp119988 +a(g119985 +g119987 +S'city' +p119989 +tp119990 +a(g119987 +g119989 +S'in' +p119991 +tp119992 +a(g119989 +g119991 +S'northern' +p119993 +tp119994 +a(g119991 +g119993 +S'italy.' +p119995 +tp119996 +a(g119993 +g119995 +S'he' +p119997 +tp119998 +a(g119995 +g119997 +S'spent' +p119999 +tp120000 +a(g119997 +g119999 +S'most' +p120001 +tp120002 +a(g119999 +g120001 +S'of' +p120003 +tp120004 +a(g120001 +g120003 +S'his' +p120005 +tp120006 +a(g120003 +g120005 +S'professional' +p120007 +tp120008 +a(g120005 +g120007 +S'life' +p120009 +tp120010 +a(g120007 +g120009 +S'in' +p120011 +tp120012 +a(g120009 +g120011 +S'the' +p120013 +tp120014 +a(g120011 +g120013 +S'service' +p120015 +tp120016 +a(g120013 +g120015 +S'of' +p120017 +tp120018 +a(g120015 +g120017 +S'the' +p120019 +tp120020 +a(g120017 +g120019 +S'noble' +p120021 +tp120022 +a(g120019 +g120021 +S"d'este" +p120023 +tp120024 +a(g120021 +g120023 +S'family,' +p120025 +tp120026 +a(g120023 +g120025 +S'the' +p120027 +tp120028 +a(g120025 +g120027 +S'dukes' +p120029 +tp120030 +a(g120027 +g120029 +S'of' +p120031 +tp120032 +a(g120029 +g120031 +S'ferrara.' +p120033 +tp120034 +a(g120031 +g120033 +S'because' +p120035 +tp120036 +a(g120033 +g120035 +S'ferrara' +p120037 +tp120038 +a(g120035 +g120037 +S'lacked' +p120039 +tp120040 +a(g120037 +g120039 +S'strong' +p120041 +tp120042 +a(g120039 +g120041 +S'artistic' +p120043 +tp120044 +a(g120041 +g120043 +S'traditions,' +p120045 +tp120046 +a(g120043 +g120045 +S'cosmè' +p120047 +tp120048 +a(g120045 +g120047 +S'was' +p120049 +tp120050 +a(g120047 +g120049 +S'free' +p120051 +tp120052 +a(g120049 +g120051 +S'to' +p120053 +tp120054 +a(g120051 +g120053 +S'develop' +p120055 +tp120056 +a(g120053 +g120055 +S'a' +p120057 +tp120058 +a(g120055 +g120057 +S'very' +p120059 +tp120060 +a(g120057 +g120059 +S'personal' +p120061 +tp120062 +a(g120059 +g120061 +S'style.' +p120063 +tp120064 +a(g120061 +g120063 +S'he' +p120065 +tp120066 +a(g120063 +g120065 +S'may' +p120067 +tp120068 +a(g120065 +g120067 +S'have' +p120069 +tp120070 +a(g120067 +g120069 +S'been' +p120071 +tp120072 +a(g120069 +g120071 +S'inspired' +p120073 +tp120074 +a(g120071 +g120073 +S'by' +p120075 +tp120076 +a(g120073 +g120075 +S'the' +p120077 +tp120078 +a(g120075 +g120077 +S'works' +p120079 +tp120080 +a(g120077 +g120079 +S'of' +p120081 +tp120082 +a(g120079 +g120081 +S'tuscan' +p120083 +tp120084 +a(g120081 +g120083 +S'and' +p120085 +tp120086 +a(g120083 +g120085 +S'paduan' +p120087 +tp120088 +a(g120085 +g120087 +S'artists,' +p120089 +tp120090 +a(g120087 +g120089 +S'as' +p120091 +tp120092 +a(g120089 +g120091 +S'well' +p120093 +tp120094 +a(g120091 +g120093 +S'as' +p120095 +tp120096 +a(g120093 +g120095 +S'by' +p120097 +tp120098 +a(g120095 +g120097 +S'the' +p120099 +tp120100 +a(g120097 +g120099 +S'flemish,' +p120101 +tp120102 +a(g120099 +g120101 +S'some' +p120103 +tp120104 +a(g120101 +g120103 +S'of' +p120105 +tp120106 +a(g120103 +g120105 +S'whose' +p120107 +tp120108 +a(g120105 +g120107 +S'paintings' +p120109 +tp120110 +a(g120107 +g120109 +S'figured' +p120111 +tp120112 +a(g120109 +g120111 +S'in' +p120113 +tp120114 +a(g120111 +g120113 +S'ferrarese' +p120115 +tp120116 +a(g120113 +g120115 +S'collections' +p120117 +tp120118 +a(g120115 +g120117 +S'in' +p120119 +tp120120 +a(g120117 +g120119 +S'the' +p120121 +tp120122 +a(g120119 +g120121 +S'fifteenth' +p120123 +tp120124 +a(g120121 +g120123 +S'century.' +p120125 +tp120126 +a(g120123 +g120125 +S'in' +p120127 +tp120128 +a(g120125 +g120127 +S'this' +p120129 +tp120130 +a(g120127 +g120129 +S'early' +p120131 +tp120132 +a(g120129 +g120131 +S'work,' +p120133 +tp120134 +a(g120131 +g120133 +S'cosmè' +p120135 +tp120136 +a(g120133 +g120135 +S'showed' +p120137 +tp120138 +a(g120135 +g120137 +S'an' +p120139 +tp120140 +a(g120137 +g120139 +S'eccentric' +p120141 +tp120142 +a(g120139 +g120141 +S'tendency' +p120143 +tp120144 +a(g120141 +g120143 +S'to' +p120145 +tp120146 +a(g120143 +g120145 +S'exaggerate' +p120147 +tp120148 +a(g120145 +g120147 +S'human' +p120149 +tp120150 +a(g120147 +g120149 +S'anatomy' +p120151 +tp120152 +a(g120149 +g120151 +S'for' +p120153 +tp120154 +a(g120151 +g120153 +S'expressive' +p120155 +tp120156 +a(g120153 +g120155 +S'ends,' +p120157 +tp120158 +a(g120155 +g120157 +S'as' +p120159 +tp120160 +a(g120157 +g120159 +S'seen' +p120161 +tp120162 +a(g120159 +g120161 +S'in' +p120163 +tp120164 +a(g120161 +g120163 +S'the' +p120165 +tp120166 +a(g120163 +g120165 +S'treatment' +p120167 +tp120168 +a(g120165 +g120167 +S'of' +p120169 +tp120170 +a(g120167 +g120169 +S'the' +p120171 +tp120172 +a(g120169 +g120171 +S"virgin's" +p120173 +tp120174 +a(g120171 +g120173 +S'elongated' +p120175 +tp120176 +a(g120173 +g120175 +S'hands.' +p120177 +tp120178 +a(g120175 +g120177 +S'purposeful' +p120179 +tp120180 +a(g120177 +g120179 +S'distortions' +p120181 +tp120182 +a(g120179 +g120181 +S'increase' +p120183 +tp120184 +a(g120181 +g120183 +S'in' +p120185 +tp120186 +a(g120183 +g120185 +S'his' +p120187 +tp120188 +a(g120185 +g120187 +S'later' +p120189 +tp120190 +a(g120187 +g120189 +S'works,' +p120191 +tp120192 +a(g120189 +g120191 +S'which' +p120193 +tp120194 +a(g120191 +g120193 +S'reverberate' +p120195 +tp120196 +a(g120193 +g120195 +S'with' +p120197 +tp120198 +a(g120195 +g120197 +S'spiritual' +p120199 +tp120200 +a(g120197 +g120199 +S'and' +p120201 +tp120202 +a(g120199 +g120201 +S'emotional' +p120203 +tp120204 +a(g120201 +g120203 +S'fervor.' +p120205 +tp120206 +a(g120203 +g120205 +S'an' +p120207 +tp120208 +a(g120205 +g120207 +S'historical' +p120209 +tp120210 +a(g120207 +g120209 +S'tale' +p120211 +tp120212 +a(g120209 +g120211 +S'told' +p120213 +tp120214 +a(g120211 +g120213 +S'by' +p120215 +tp120216 +a(g120213 +g120215 +S'livy,' +p120217 +tp120218 +a(g120215 +g120217 +S'ovid,' +p120219 +tp120220 +a(g120217 +g120219 +S'and' +p120221 +tp120222 +a(g120219 +g120221 +S'even' +p120223 +tp120224 +a(g120221 +g120223 +S'shakespeare' +p120225 +tp120226 +a(g120223 +g120225 +S'is' +p120227 +tp120228 +a(g120225 +g120227 +S'the' +p120229 +tp120230 +a(g120227 +g120229 +S'rape' +p120231 +tp120232 +a(g120229 +g120231 +S'of' +p120233 +tp120234 +a(g120231 +g120233 +S'lucretia.' +p120235 +tp120236 +a(g120233 +g120235 +S'sextus' +p120237 +tp120238 +a(g120235 +g120237 +S'tarquinius,' +p120239 +tp120240 +a(g120237 +g120239 +S'son' +p120241 +tp120242 +a(g120239 +g120241 +S'of' +p120243 +tp120244 +a(g120241 +g120243 +S'the' +p120245 +tp120246 +a(g120243 +g120245 +S'etruscan' +p120247 +tp120248 +a(g120245 +g120247 +S'king' +p120249 +tp120250 +a(g120247 +g120249 +S'of' +p120251 +tp120252 +a(g120249 +g120251 +S'rome,' +p120253 +tp120254 +a(g120251 +g120253 +S'forced' +p120255 +tp120256 +a(g120253 +g120255 +S'the' +p120257 +tp120258 +a(g120255 +g120257 +S'roman' +p120259 +tp120260 +a(g120257 +g120259 +S'matron' +p120261 +tp120262 +a(g120259 +g120261 +S'to' +p120263 +tp120264 +a(g120261 +g120263 +S'submit' +p120265 +tp120266 +a(g120263 +g120265 +S'to' +p120267 +tp120268 +a(g120265 +g120267 +S'his' +p120269 +tp120270 +a(g120267 +g120269 +S'advances' +p120271 +tp120272 +a(g120269 +g120271 +S'by' +p120273 +tp120274 +a(g120271 +g120273 +S'threatening' +p120275 +tp120276 +a(g120273 +g120275 +S'to' +p120277 +tp120278 +a(g120275 +g120277 +S'kill' +p120279 +tp120280 +a(g120277 +g120279 +S'her' +p120281 +tp120282 +a(g120279 +g120281 +S'and,' +p120283 +tp120284 +a(g120281 +g120283 +S'then,' +p120285 +tp120286 +a(g120283 +g120285 +S'to' +p120287 +tp120288 +a(g120285 +g120287 +S'make' +p120289 +tp120290 +a(g120287 +g120289 +S'it' +p120291 +tp120292 +a(g120289 +g120291 +S'seem' +p120293 +tp120294 +a(g120291 +g120293 +S'that' +p120295 +tp120296 +a(g120293 +g120295 +S'she' +p120297 +tp120298 +a(g120295 +g120297 +S'had' +p120299 +tp120300 +a(g120297 +g120299 +S'been' +p120301 +tp120302 +a(g120299 +g120301 +S'caught' +p120303 +tp120304 +a(g120301 +g120303 +S'in' +p120305 +tp120306 +a(g120303 +g120305 +S'adultery.' +p120307 +tp120308 +a(g120305 +g120307 +S'afterward,' +p120309 +tp120310 +a(g120307 +g120309 +S'lucretia' +p120311 +tp120312 +a(g120309 +g120311 +S'told' +p120313 +tp120314 +a(g120311 +g120313 +S'her' +p120315 +tp120316 +a(g120313 +g120315 +S'family' +p120317 +tp120318 +a(g120315 +g120317 +S'of' +p120319 +tp120320 +a(g120317 +g120319 +S'this' +p120321 +tp120322 +a(g120319 +g120321 +S'outrage' +p120323 +tp120324 +a(g120321 +g120323 +S'and' +p120325 +tp120326 +a(g120323 +g120325 +S'took' +p120327 +tp120328 +a(g120325 +g120327 +S'her' +p120329 +tp120330 +a(g120327 +g120329 +S'own' +p120331 +tp120332 +a(g120329 +g120331 +S'life.' +p120333 +tp120334 +a(g120331 +g120333 +S'her' +p120335 +tp120336 +a(g120333 +g120335 +S'family' +p120337 +tp120338 +a(g120335 +g120337 +S'avenged' +p120339 +tp120340 +a(g120337 +g120339 +S'her' +p120341 +tp120342 +a(g120339 +g120341 +S'honor' +p120343 +tp120344 +a(g120341 +g120343 +S'by' +p120345 +tp120346 +a(g120343 +g120345 +S'overthrowing' +p120347 +tp120348 +a(g120345 +g120347 +S'the' +p120349 +tp120350 +a(g120347 +g120349 +S'tyrannical' +p120351 +tp120352 +a(g120349 +g120351 +S'king,' +p120353 +tp120354 +a(g120351 +g120353 +S'an' +p120355 +tp120356 +a(g120353 +g120355 +S'act' +p120357 +tp120358 +a(g120355 +g120357 +S'which' +p120359 +tp120360 +a(g120357 +g120359 +S'led' +p120361 +tp120362 +a(g120359 +g120361 +S'to' +p120363 +tp120364 +a(g120361 +g120363 +S'the' +p120365 +tp120366 +a(g120363 +g120365 +S'establishment' +p120367 +tp120368 +a(g120365 +g120367 +S'of' +p120369 +tp120370 +a(g120367 +g120369 +S'the' +p120371 +tp120372 +a(g120369 +g120371 +S'roman' +p120373 +tp120374 +a(g120371 +g120373 +S'republic.' +p120375 +tp120376 +a(g120373 +g120375 +S'lucretia,' +p120377 +tp120378 +a(g120375 +g120377 +S'as' +p120379 +tp120380 +a(g120377 +g120379 +S'an' +p120381 +tp120382 +a(g120379 +g120381 +S'exemplar' +p120383 +tp120384 +a(g120381 +g120383 +S'of' +p120385 +tp120386 +a(g120383 +g120385 +S'feminine' +p120387 +tp120388 +a(g120385 +g120387 +S'virtue' +p120389 +tp120390 +a(g120387 +g120389 +S'and' +p120391 +tp120392 +a(g120389 +g120391 +S'roman' +p120393 +tp120394 +a(g120391 +g120393 +S'stoicism,' +p120395 +tp120396 +a(g120393 +g120395 +S'was' +p120397 +tp120398 +a(g120395 +g120397 +S'a' +p120399 +tp120400 +a(g120397 +g120399 +S'favorite' +p120401 +tp120402 +a(g120399 +g120401 +S'subject' +p120403 +tp120404 +a(g120401 +g120403 +S'for' +p120405 +tp120406 +a(g120403 +g120405 +S'baroque' +p120407 +tp120408 +a(g120405 +g120407 +S'painters' +p120409 +tp120410 +a(g120407 +g120409 +S'who' +p120411 +tp120412 +a(g120409 +g120411 +S'reveled' +p120413 +tp120414 +a(g120411 +g120413 +S'in' +p120415 +tp120416 +a(g120413 +g120415 +S'depicting' +p120417 +tp120418 +a(g120415 +g120417 +S'the' +p120419 +tp120420 +a(g120417 +g120419 +S'extreme' +p120421 +tp120422 +a(g120419 +g120421 +S'passion' +p120423 +tp120424 +a(g120421 +g120423 +S'and' +p120425 +tp120426 +a(g120423 +g120425 +S'violence' +p120427 +tp120428 +a(g120425 +g120427 +S'of' +p120429 +tp120430 +a(g120427 +g120429 +S'the' +p120431 +tp120432 +a(g120429 +g120431 +S'story.' +p120433 +tp120434 +a(g120431 +g120433 +S'if' +p120435 +tp120436 +a(g120433 +g120435 +S"crespi's" +p120437 +tp120438 +a(g120435 +g120437 +S'subject' +p120439 +tp120440 +a(g120437 +g120439 +S'is' +p120441 +tp120442 +a(g120439 +g120441 +S'classical,' +p120443 +tp120444 +a(g120441 +g120443 +S'his' +p120445 +tp120446 +a(g120443 +g120445 +S'style' +p120447 +tp120448 +a(g120445 +g120447 +S'is' +p120449 +tp120450 +a(g120447 +g120449 +S'decidedly' +p120451 +tp120452 +a(g120449 +g120451 +S'not.' +p120453 +tp120454 +a(g120451 +g120453 +S'he' +p120455 +tp120456 +a(g120453 +g120455 +S'shows' +p120457 +tp120458 +a(g120455 +g120457 +S'sextus' +p120459 +tp120460 +a(g120457 +g120459 +S'tarquinius' +p120461 +tp120462 +a(g120459 +g120461 +S'as' +p120463 +tp120464 +a(g120461 +g120463 +S'he' +p120465 +tp120466 +a(g120463 +g120465 +S'rushes' +p120467 +tp120468 +a(g120465 +g120467 +S'in' +p120469 +tp120470 +a(g120467 +g120469 +S'and' +p120471 +tp120472 +a(g120469 +g120471 +S'forces' +p120473 +tp120474 +a(g120471 +g120473 +S'himself' +p120475 +tp120476 +a(g120473 +g120475 +S'on' +p120477 +tp120478 +a(g120475 +g120477 +S'lucretia,' +p120479 +tp120480 +a(g120477 +g120479 +S'in' +p120481 +tp120482 +a(g120479 +g120481 +S'his' +p120483 +tp120484 +a(g120481 +g120483 +S'haste' +p120485 +tp120486 +a(g120483 +g120485 +S'entangling' +p120487 +tp120488 +a(g120485 +g120487 +S'himself' +p120489 +tp120490 +a(g120487 +g120489 +S'in' +p120491 +tp120492 +a(g120489 +g120491 +S'the' +p120493 +tp120494 +a(g120491 +g120493 +S'rustling' +p120495 +tp120496 +a(g120493 +g120495 +S'silk' +p120497 +tp120498 +a(g120495 +g120497 +S'curtains' +p120499 +tp120500 +a(g120497 +g120499 +S'of' +p120501 +tp120502 +a(g120499 +g120501 +S"lucretia's" +p120503 +tp120504 +a(g120501 +g120503 +S'bed.' +p120505 +tp120506 +a(g120503 +g120505 +S'the' +p120507 +tp120508 +a(g120505 +g120507 +S'rough-looking' +p120509 +tp120510 +a(g120507 +g120509 +S'villain' +p120511 +tp120512 +a(g120509 +g120511 +S'has' +p120513 +tp120514 +a(g120511 +g120513 +S'dropped' +p120515 +tp120516 +a(g120513 +g120515 +S'his' +p120517 +tp120518 +a(g120515 +g120517 +S'dagger' +p120519 +tp120520 +a(g120517 +g120519 +S'and' +p120521 +tp120522 +a(g120519 +g120521 +S'now' +p120523 +tp120524 +a(g120521 +g120523 +S'remonstrates' +p120525 +tp120526 +a(g120523 +g120525 +S'with' +p120527 +tp120528 +a(g120525 +g120527 +S'lucretia' +p120529 +tp120530 +a(g120527 +g120529 +S'to' +p120531 +tp120532 +a(g120529 +g120531 +S'cease' +p120533 +tp120534 +a(g120531 +g120533 +S'her' +p120535 +tp120536 +a(g120533 +g120535 +S'futile' +p120537 +tp120538 +a(g120535 +g120537 +S'protest.' +p120539 +tp120540 +a(g120537 +g120539 +S"crespi's" +p120541 +tp120542 +a(g120539 +g120541 +S'brush' +p120543 +tp120544 +a(g120541 +g120543 +S'moved' +p120545 +tp120546 +a(g120543 +g120545 +S'with' +p120547 +tp120548 +a(g120545 +g120547 +S'great' +p120549 +tp120550 +a(g120547 +g120549 +S'speed,' +p120551 +tp120552 +a(g120549 +g120551 +S'and' +p120553 +tp120554 +a(g120551 +g120553 +S'he' +p120555 +tp120556 +a(g120553 +g120555 +S'made' +p120557 +tp120558 +a(g120555 +g120557 +S'dramatic' +p120559 +tp120560 +a(g120557 +g120559 +S'use' +p120561 +tp120562 +a(g120559 +g120561 +S'of' +p120563 +tp120564 +a(g120561 +g120563 +S'light,' +p120565 +tp120566 +a(g120563 +g120565 +S'contrasting' +p120567 +tp120568 +a(g120565 +g120567 +S'the' +p120569 +tp120570 +a(g120567 +g120569 +S'luminous' +p120571 +tp120572 +a(g120569 +g120571 +S'face' +p120573 +tp120574 +a(g120571 +g120573 +S'of' +p120575 +tp120576 +a(g120573 +g120575 +S'virtuous' +p120577 +tp120578 +a(g120575 +g120577 +S'lucretia' +p120579 +tp120580 +a(g120577 +g120579 +S'with' +p120581 +tp120582 +a(g120579 +g120581 +S'the' +p120583 +tp120584 +a(g120581 +g120583 +S'sinister,' +p120585 +tp120586 +a(g120583 +g120585 +S'shadowed' +p120587 +tp120588 +a(g120585 +g120587 +S'profile' +p120589 +tp120590 +a(g120587 +g120589 +S'of' +p120591 +tp120592 +a(g120589 +g120591 +S'her' +p120593 +tp120594 +a(g120591 +g120593 +S'attacker.' +p120595 +tp120596 +a(g120593 +g120595 +S'even' +p120597 +tp120598 +a(g120595 +g120597 +S'the' +p120599 +tp120600 +a(g120597 +g120599 +S'carved' +p120601 +tp120602 +a(g120599 +g120601 +S'horse' +p120603 +tp120604 +a(g120601 +g120603 +S'of' +p120605 +tp120606 +a(g120603 +g120605 +S"lucretia's" +p120607 +tp120608 +a(g120605 +g120607 +S'bed' +p120609 +tp120610 +a(g120607 +g120609 +S'comes' +p120611 +tp120612 +a(g120609 +g120611 +S'alive,' +p120613 +tp120614 +a(g120611 +g120613 +S'stirred' +p120615 +tp120616 +a(g120613 +g120615 +S'by' +p120617 +tp120618 +a(g120615 +g120617 +S'the' +p120619 +tp120620 +a(g120617 +g120619 +S'violent' +p120621 +tp120622 +a(g120619 +g120621 +S'episode.' +p120623 +tp120624 +a(g120621 +g120623 +S'in' +p120625 +tp120626 +a(g120623 +g120625 +S'this' +p120627 +tp120628 +a(g120625 +g120627 +S'panel' +p120629 +tp120630 +a(g120627 +g120629 +S'bosch' +p120631 +tp120632 +a(g120629 +g120631 +S'shows' +p120633 +tp120634 +a(g120631 +g120633 +S'us' +p120635 +tp120636 +a(g120633 +g120635 +S'the' +p120637 +tp120638 +a(g120635 +g120637 +S'last' +p120639 +tp120640 +a(g120637 +g120639 +S'moments' +p120641 +tp120642 +a(g120639 +g120641 +S'in' +p120643 +tp120644 +a(g120641 +g120643 +S'the' +p120645 +tp120646 +a(g120643 +g120645 +S'life' +p120647 +tp120648 +a(g120645 +g120647 +S'of' +p120649 +tp120650 +a(g120647 +g120649 +S'a' +p120651 +tp120652 +a(g120649 +g120651 +S'miser,' +p120653 +tp120654 +a(g120651 +g120653 +S'just' +p120655 +tp120656 +a(g120653 +g120655 +S'before' +p120657 +tp120658 +a(g120655 +g120657 +S'his' +p120659 +tp120660 +a(g120657 +g120659 +S'eternal' +p120661 +tp120662 +a(g120659 +g120661 +S'fate' +p120663 +tp120664 +a(g120661 +g120663 +S'is' +p120665 +tp120666 +a(g120663 +g120665 +S'decided.' +p120667 +tp120668 +a(g120665 +g120667 +S'a' +p120669 +tp120670 +a(g120667 +g120669 +S'little' +p120671 +tp120672 +a(g120669 +g120671 +S'monster' +p120673 +tp120674 +a(g120671 +g120673 +S'peeping' +p120675 +tp120676 +a(g120673 +g120675 +S'out' +p120677 +tp120678 +a(g120675 +g120677 +S'from' +p120679 +tp120680 +a(g120677 +g120679 +S'under' +p120681 +tp120682 +a(g120679 +g120681 +S'the' +p120683 +tp120684 +a(g120681 +g120683 +S'bed–curtains' +p120685 +tp120686 +a(g120683 +g120685 +S'tempts' +p120687 +tp120688 +a(g120685 +g120687 +S'the' +p120689 +tp120690 +a(g120687 +g120689 +S'miser' +p120691 +tp120692 +a(g120689 +g120691 +S'with' +p120693 +tp120694 +a(g120691 +g120693 +S'a' +p120695 +tp120696 +a(g120693 +g120695 +S'bag' +p120697 +tp120698 +a(g120695 +g120697 +S'of' +p120699 +tp120700 +a(g120697 +g120699 +S'gold,' +p120701 +tp120702 +a(g120699 +g120701 +S'while' +p120703 +tp120704 +a(g120701 +g120703 +S'an' +p120705 +tp120706 +a(g120703 +g120705 +S'angel' +p120707 +tp120708 +a(g120705 +g120707 +S'kneeling' +p120709 +tp120710 +a(g120707 +g120709 +S'at' +p120711 +tp120712 +a(g120709 +g120711 +S'the' +p120713 +tp120714 +a(g120711 +g120713 +S'right' +p120715 +tp120716 +a(g120713 +g120715 +S'encourages' +p120717 +tp120718 +a(g120715 +g120717 +S'him' +p120719 +tp120720 +a(g120717 +g120719 +S'to' +p120721 +tp120722 +a(g120719 +g120721 +S'acknowledge' +p120723 +tp120724 +a(g120721 +g120723 +S'the' +p120725 +tp120726 +a(g120723 +g120725 +S'crucifix' +p120727 +tp120728 +a(g120725 +g120727 +S'in' +p120729 +tp120730 +a(g120727 +g120729 +S'the' +p120731 +tp120732 +a(g120729 +g120731 +S'window.' +p120733 +tp120734 +a(g120731 +g120733 +S'death,' +p120735 +tp120736 +a(g120733 +g120735 +S'holding' +p120737 +tp120738 +a(g120735 +g120737 +S'an' +p120739 +tp120740 +a(g120737 +g120739 +S'arrow,' +p120741 +tp120742 +a(g120739 +g120741 +S'enters' +p120743 +tp120744 +a(g120741 +g120743 +S'at' +p120745 +tp120746 +a(g120743 +g120745 +S'the' +p120747 +tp120748 +a(g120745 +g120747 +S'left.' +p120749 +tp120750 +a(g120747 +g120749 +S'oppositions' +p120751 +tp120752 +a(g120749 +g120751 +S'of' +p120753 +tp120754 +a(g120751 +g120753 +S'good' +p120755 +tp120756 +a(g120753 +g120755 +S'and' +p120757 +tp120758 +a(g120755 +g120757 +S'evil' +p120759 +tp120760 +a(g120757 +g120759 +S'occur' +p120761 +tp120762 +a(g120759 +g120761 +S'throughout' +p120763 +tp120764 +a(g120761 +g120763 +S'the' +p120765 +tp120766 +a(g120763 +g120765 +S'painting.' +p120767 +tp120768 +a(g120765 +g120767 +S'a' +p120769 +tp120770 +a(g120767 +g120769 +S'lantern' +p120771 +tp120772 +a(g120769 +g120771 +S'containing' +p120773 +tp120774 +a(g120771 +g120773 +S'the' +p120775 +tp120776 +a(g120773 +g120775 +S'fire' +p120777 +tp120778 +a(g120775 +g120777 +S'of' +p120779 +tp120780 +a(g120777 +g120779 +S'hell,' +p120781 +tp120782 +a(g120779 +g120781 +S'carried' +p120783 +tp120784 +a(g120781 +g120783 +S'by' +p120785 +tp120786 +a(g120783 +g120785 +S'the' +p120787 +tp120788 +a(g120785 +g120787 +S'demon' +p120789 +tp120790 +a(g120787 +g120789 +S'atop' +p120791 +tp120792 +a(g120789 +g120791 +S'the' +p120793 +tp120794 +a(g120791 +g120793 +S'bed' +p120795 +tp120796 +a(g120793 +g120795 +S'canopy,' +p120797 +tp120798 +a(g120795 +g120797 +S'balances' +p120799 +tp120800 +a(g120797 +g120799 +S'the' +p120801 +tp120802 +a(g120799 +g120801 +S'cross' +p120803 +tp120804 +a(g120801 +g120803 +S'which' +p120805 +tp120806 +a(g120803 +g120805 +S'emits' +p120807 +tp120808 +a(g120805 +g120807 +S'a' +p120809 +tp120810 +a(g120807 +g120809 +S'single' +p120811 +tp120812 +a(g120809 +g120811 +S'ray' +p120813 +tp120814 +a(g120811 +g120813 +S'of' +p120815 +tp120816 +a(g120813 +g120815 +S'divine' +p120817 +tp120818 +a(g120815 +g120817 +S'light.' +p120819 +tp120820 +a(g120817 +g120819 +S'the' +p120821 +tp120822 +a(g120819 +g120821 +S'figure' +p120823 +tp120824 +a(g120821 +g120823 +S'in' +p120825 +tp120826 +a(g120823 +g120825 +S'the' +p120827 +tp120828 +a(g120825 +g120827 +S'middle' +p120829 +tp120830 +a(g120827 +g120829 +S'ground,' +p120831 +tp120832 +a(g120829 +g120831 +S'perhaps' +p120833 +tp120834 +a(g120831 +g120833 +S'representing' +p120835 +tp120836 +a(g120833 +g120835 +S'the' +p120837 +tp120838 +a(g120835 +g120837 +S'miser' +p120839 +tp120840 +a(g120837 +g120839 +S'earlier' +p120841 +tp120842 +a(g120839 +g120841 +S'in' +p120843 +tp120844 +a(g120841 +g120843 +S'his' +p120845 +tp120846 +a(g120843 +g120845 +S'life,' +p120847 +tp120848 +a(g120845 +g120847 +S'is' +p120849 +tp120850 +a(g120847 +g120849 +S'shown' +p120851 +tp120852 +a(g120849 +g120851 +S'as' +p120853 +tp120854 +a(g120851 +g120853 +S'hypocritical;' +p120855 +tp120856 +a(g120853 +g120855 +S'with' +p120857 +tp120858 +a(g120855 +g120857 +S'one' +p120859 +tp120860 +a(g120857 +g120859 +S'hand' +p120861 +tp120862 +a(g120859 +g120861 +S'he' +p120863 +tp120864 +a(g120861 +g120863 +S'puts' +p120865 +tp120866 +a(g120863 +g120865 +S'coins' +p120867 +tp120868 +a(g120865 +g120867 +S'into' +p120869 +tp120870 +a(g120867 +g120869 +S'the' +p120871 +tp120872 +a(g120869 +g120871 +S'strongbox' +p120873 +tp120874 +a(g120871 +g120873 +S'where' +p120875 +tp120876 +a(g120873 +g120875 +S'they' +p120877 +tp120878 +a(g120875 +g120877 +S'are' +p120879 +tp120880 +a(g120877 +g120879 +S'collected' +p120881 +tp120882 +a(g120879 +g120881 +S'by' +p120883 +tp120884 +a(g120881 +g120883 +S'a' +p120885 +tp120886 +a(g120883 +g120885 +S'rat–faced' +p120887 +tp120888 +a(g120885 +g120887 +S'demon,' +p120889 +tp120890 +a(g120887 +g120889 +S'and' +p120891 +tp120892 +a(g120889 +g120891 +S'with' +p120893 +tp120894 +a(g120891 +g120893 +S'the' +p120895 +tp120896 +a(g120893 +g120895 +S'other' +p120897 +tp120898 +a(g120895 +g120897 +S'he' +p120899 +tp120900 +a(g120897 +g120899 +S'fingers' +p120901 +tp120902 +a(g120899 +g120901 +S'a' +p120903 +tp120904 +a(g120901 +g120903 +S'rosary,' +p120905 +tp120906 +a(g120903 +g120905 +S'attempting' +p120907 +tp120908 +a(g120905 +g120907 +S'to' +p120909 +tp120910 +a(g120907 +g120909 +S'serve' +p120911 +tp120912 +a(g120909 +g120911 +S'god' +p120913 +tp120914 +a(g120911 +g120913 +S'and' +p120915 +tp120916 +a(g120913 +g120915 +S'mammon' +p120917 +tp120918 +a(g120915 +g120917 +S'at' +p120919 +tp120920 +a(g120917 +g120919 +S'the' +p120921 +tp120922 +a(g120919 +g120921 +S'same' +p120923 +tp120924 +a(g120921 +g120923 +S'time.' +p120925 +tp120926 +a(g120923 +g120925 +S'a' +p120927 +tp120928 +a(g120925 +g120927 +S'demon' +p120929 +tp120930 +a(g120927 +g120929 +S'emerging' +p120931 +tp120932 +a(g120929 +g120931 +S'from' +p120933 +tp120934 +a(g120931 +g120933 +S'underneath' +p120935 +tp120936 +a(g120933 +g120935 +S'the' +p120937 +tp120938 +a(g120935 +g120937 +S'chest' +p120939 +tp120940 +a(g120937 +g120939 +S'holds' +p120941 +tp120942 +a(g120939 +g120941 +S'up' +p120943 +tp120944 +a(g120941 +g120943 +S'a' +p120945 +tp120946 +a(g120943 +g120945 +S'paper' +p120947 +tp120948 +a(g120945 +g120947 +S'sealed' +p120949 +tp120950 +a(g120947 +g120949 +S'with' +p120951 +tp120952 +a(g120949 +g120951 +S'red' +p120953 +tp120954 +a(g120951 +g120953 +S'wax' +p120955 +tp120956 +a(g120953 +g120955 +S'—' +p120957 +tp120958 +a(g120955 +g120957 +S'perhaps' +p120959 +tp120960 +a(g120957 +g120959 +S'a' +p120961 +tp120962 +a(g120959 +g120961 +S'letter' +p120963 +tp120964 +a(g120961 +g120963 +S'of' +p120965 +tp120966 +a(g120963 +g120965 +S'indulgence' +p120967 +tp120968 +a(g120965 +g120967 +S'or' +p120969 +tp120970 +a(g120967 +g120969 +S'a' +p120971 +tp120972 +a(g120969 +g120971 +S'document' +p120973 +tp120974 +a(g120971 +g120973 +S'that' +p120975 +tp120976 +a(g120973 +g120975 +S'refers' +p120977 +tp120978 +a(g120975 +g120977 +S'to' +p120979 +tp120980 +a(g120977 +g120979 +S'the' +p120981 +tp120982 +a(g120979 +g120981 +S"miser's" +p120983 +tp120984 +a(g120981 +g120983 +S'mercenary' +p120985 +tp120986 +a(g120983 +g120985 +S'activities.' +p120987 +tp120988 +a(g120985 +g120987 +S'this' +p120989 +tp120990 +a(g120987 +g120989 +S'type' +p120991 +tp120992 +a(g120989 +g120991 +S'of' +p120993 +tp120994 +a(g120991 +g120993 +S'deathbed' +p120995 +tp120996 +a(g120993 +g120995 +S'scene' +p120997 +tp120998 +a(g120995 +g120997 +S'derives' +p120999 +tp121000 +a(g120997 +g120999 +S'from' +p121001 +tp121002 +a(g120999 +g121001 +S'an' +p121003 +tp121004 +a(g121001 +g121003 +S'early' +p121005 +tp121006 +a(g121003 +g121005 +S'printed' +p121007 +tp121008 +a(g121005 +g121007 +S'book,' +p121009 +tp121010 +a(g121007 +g121009 +S'the' +p121011 +tp121012 +a(g121009 +g121011 +S'while' +p121013 +tp121014 +a(g121011 +g121013 +S'at' +p121015 +tp121016 +a(g121013 +g121015 +S'stockholm,' +p121017 +tp121018 +a(g121015 +g121017 +S'bourdon' +p121019 +tp121020 +a(g121017 +g121019 +S'painted' +p121021 +tp121022 +a(g121019 +g121021 +S'ebba' +p121023 +tp121024 +a(g121021 +g121023 +S'sparre' +p121025 +tp121026 +a(g121023 +g121025 +S'(1626-1662),' +p121027 +tp121028 +a(g121025 +g121027 +S'a' +p121029 +tp121030 +a(g121027 +g121029 +S'lady-in-waiting' +p121031 +tp121032 +a(g121029 +g121031 +S'to' +p121033 +tp121034 +a(g121031 +g121033 +S'and' +p121035 +tp121036 +a(g121033 +g121035 +S'intimate' +p121037 +tp121038 +a(g121035 +g121037 +S'companion' +p121039 +tp121040 +a(g121037 +g121039 +S'of' +p121041 +tp121042 +a(g121039 +g121041 +S"sweden's" +p121043 +tp121044 +a(g121041 +g121043 +S'queen' +p121045 +tp121046 +a(g121043 +g121045 +S'christina.' +p121047 +tp121048 +a(g121045 +g121047 +S'the' +p121049 +tp121050 +a(g121047 +g121049 +S'animated' +p121051 +tp121052 +a(g121049 +g121051 +S'portrayal' +p121053 +tp121054 +a(g121051 +g121053 +S'of' +p121055 +tp121056 +a(g121053 +g121055 +S'the' +p121057 +tp121058 +a(g121055 +g121057 +S'countess' +p121059 +tp121060 +a(g121057 +g121059 +S'and' +p121061 +tp121062 +a(g121059 +g121061 +S'the' +p121063 +tp121064 +a(g121061 +g121063 +S'bold' +p121065 +tp121066 +a(g121063 +g121065 +S'lighting' +p121067 +tp121068 +a(g121065 +g121067 +S'derive' +p121069 +tp121070 +a(g121067 +g121069 +S'from' +p121071 +tp121072 +a(g121069 +g121071 +S'portraits' +p121073 +tp121074 +a(g121071 +g121073 +S'by' +p121075 +tp121076 +a(g121073 +g121075 +S'the' +p121077 +tp121078 +a(g121075 +g121077 +S'flemish' +p121079 +tp121080 +a(g121077 +g121079 +S'master' +p121081 +tp121082 +a(g121079 +g121081 +S'champaigne,' +p121083 +tp121084 +a(g121081 +g121083 +S'the' +p121085 +tp121086 +a(g121083 +g121085 +S'only' +p121087 +tp121088 +a(g121085 +g121087 +S'artist' +p121089 +tp121090 +a(g121087 +g121089 +S'represented' +p121091 +tp121092 +a(g121089 +g121091 +S'in' +p121093 +tp121094 +a(g121091 +g121093 +S'this' +p121095 +tp121096 +a(g121093 +g121095 +S'tour' +p121097 +tp121098 +a(g121095 +g121097 +S'who' +p121099 +tp121100 +a(g121097 +g121099 +S'never' +p121101 +tp121102 +a(g121099 +g121101 +S'visited' +p121103 +tp121104 +a(g121101 +g121103 +S'italy,' +p121105 +tp121106 +a(g121103 +g121105 +S'was' +p121107 +tp121108 +a(g121105 +g121107 +S'born' +p121109 +tp121110 +a(g121107 +g121109 +S'and' +p121111 +tp121112 +a(g121109 +g121111 +S'trained' +p121113 +tp121114 +a(g121111 +g121113 +S'in' +p121115 +tp121116 +a(g121113 +g121115 +S'brussels.' +p121117 +tp121118 +a(g121115 +g121117 +S'arriving' +p121119 +tp121120 +a(g121117 +g121119 +S'in' +p121121 +tp121122 +a(g121119 +g121121 +S'paris' +p121123 +tp121124 +a(g121121 +g121123 +S'in' +p121125 +tp121126 +a(g121123 +g121125 +S'1621,' +p121127 +tp121128 +a(g121125 +g121127 +S'he' +p121129 +tp121130 +a(g121127 +g121129 +S'adapted' +p121131 +tp121132 +a(g121129 +g121131 +S'the' +p121133 +tp121134 +a(g121131 +g121133 +S'french' +p121135 +tp121136 +a(g121133 +g121135 +S'decorative' +p121137 +tp121138 +a(g121135 +g121137 +S'style' +p121139 +tp121140 +a(g121137 +g121139 +S'but' +p121141 +tp121142 +a(g121139 +g121141 +S'retained' +p121143 +tp121144 +a(g121141 +g121143 +S'his' +p121145 +tp121146 +a(g121143 +g121145 +S'flemish' +p121147 +tp121148 +a(g121145 +g121147 +S'realism' +p121149 +tp121150 +a(g121147 +g121149 +S'and' +p121151 +tp121152 +a(g121149 +g121151 +S'interest' +p121153 +tp121154 +a(g121151 +g121153 +S'in' +p121155 +tp121156 +a(g121153 +g121155 +S'minute' +p121157 +tp121158 +a(g121155 +g121157 +S'details.' +p121159 +tp121160 +a(g121157 +g121159 +S'a' +p121161 +tp121162 +a(g121159 +g121161 +S'founder' +p121163 +tp121164 +a(g121161 +g121163 +S'of' +p121165 +tp121166 +a(g121163 +g121165 +S'the' +p121167 +tp121168 +a(g121165 +g121167 +S'academy' +p121169 +tp121170 +a(g121167 +g121169 +S'in' +p121171 +tp121172 +a(g121169 +g121171 +S'france,' +p121173 +tp121174 +a(g121171 +g121173 +S'by' +p121175 +tp121176 +a(g121173 +g121175 +S'the' +p121177 +tp121178 +a(g121175 +g121177 +S'1640s' +p121179 +tp121180 +a(g121177 +g121179 +S'champaigne' +p121181 +tp121182 +a(g121179 +g121181 +S'converted' +p121183 +tp121184 +a(g121181 +g121183 +S'to' +p121185 +tp121186 +a(g121183 +g121185 +S'jansenism,' +p121187 +tp121188 +a(g121185 +g121187 +S'a' +p121189 +tp121190 +a(g121187 +g121189 +S'particularly' +p121191 +tp121192 +a(g121189 +g121191 +S'severe' +p121193 +tp121194 +a(g121191 +g121193 +S'branch' +p121195 +tp121196 +a(g121193 +g121195 +S'of' +p121197 +tp121198 +a(g121195 +g121197 +S'catholicism,' +p121199 +tp121200 +a(g121197 +g121199 +S'and' +p121201 +tp121202 +a(g121199 +g121201 +S'his' +p121203 +tp121204 +a(g121201 +g121203 +S'subsequent' +p121205 +tp121206 +a(g121203 +g121205 +S'works' +p121207 +tp121208 +a(g121205 +g121207 +S'reveal' +p121209 +tp121210 +a(g121207 +g121209 +S'an' +p121211 +tp121212 +a(g121209 +g121211 +S'ascetic' +p121213 +tp121214 +a(g121211 +g121213 +S'tendency' +p121215 +tp121216 +a(g121213 +g121215 +S'toward' +p121217 +tp121218 +a(g121215 +g121217 +S'grays' +p121219 +tp121220 +a(g121217 +g121219 +S'and' +p121221 +tp121222 +a(g121219 +g121221 +S'browns.' +p121223 +tp121224 +a(g121221 +g121223 +S'omer' +p121225 +tp121226 +a(g121223 +g121225 +S'talon' +p121227 +tp121228 +a(g121225 +g121227 +S'(1595–1652),' +p121229 +tp121230 +a(g121227 +g121229 +S'a' +p121231 +tp121232 +a(g121229 +g121231 +S'liberal' +p121233 +tp121234 +a(g121231 +g121233 +S'attorney' +p121235 +tp121236 +a(g121233 +g121235 +S'general' +p121237 +tp121238 +a(g121235 +g121237 +S'of' +p121239 +tp121240 +a(g121237 +g121239 +S'the' +p121241 +tp121242 +a(g121239 +g121241 +S'french' +p121243 +tp121244 +a(g121241 +g121243 +S'parliament,' +p121245 +tp121246 +a(g121243 +g121245 +S'fought' +p121247 +tp121248 +a(g121245 +g121247 +S'against' +p121249 +tp121250 +a(g121247 +g121249 +S'the' +p121251 +tp121252 +a(g121249 +g121251 +S'tyranny' +p121253 +tp121254 +a(g121251 +g121253 +S'of' +p121255 +tp121256 +a(g121253 +g121255 +S'louis' +p121257 +tp121258 +a(g121255 +g121257 +S"xiv's" +p121259 +tp121260 +a(g121257 +g121259 +S'ministers.' +p121261 +tp121262 +a(g121259 +g121261 +S'the' +p121263 +tp121264 +a(g121261 +g121263 +S'somber' +p121265 +tp121266 +a(g121263 +g121265 +S'tonality' +p121267 +tp121268 +a(g121265 +g121267 +S'of' +p121269 +tp121270 +a(g121267 +g121269 +S'judicial' +p121271 +tp121272 +a(g121269 +g121271 +S'robes' +p121273 +tp121274 +a(g121271 +g121273 +S'in' +p121275 +tp121276 +a(g121273 +g121275 +S'blood' +p121277 +tp121278 +a(g121275 +g121277 +S'red' +p121279 +tp121280 +a(g121277 +g121279 +S'and' +p121281 +tp121282 +a(g121279 +g121281 +S'ash' +p121283 +tp121284 +a(g121281 +g121283 +S'black' +p121285 +tp121286 +a(g121283 +g121285 +S'typifies' +p121287 +tp121288 +a(g121285 +g121287 +S"champaigne's" +p121289 +tp121290 +a(g121287 +g121289 +S'later' +p121291 +tp121292 +a(g121289 +g121291 +S'work.' +p121293 +tp121294 +a(g121291 +g121293 +S'the' +p121295 +tp121296 +a(g121293 +g121295 +S"artist's" +p121297 +tp121298 +a(g121295 +g121297 +S'flemish' +p121299 +tp121300 +a(g121297 +g121299 +S'heritage' +p121301 +tp121302 +a(g121299 +g121301 +S'explains' +p121303 +tp121304 +a(g121301 +g121303 +S'the' +p121305 +tp121306 +a(g121303 +g121305 +S'candid' +p121307 +tp121308 +a(g121305 +g121307 +S'face' +p121309 +tp121310 +a(g121307 +g121309 +S'with' +p121311 +tp121312 +a(g121309 +g121311 +S'its' +p121313 +tp121314 +a(g121311 +g121313 +S'stern' +p121315 +tp121316 +a(g121313 +g121315 +S'gaze' +p121317 +tp121318 +a(g121315 +g121317 +S'and' +p121319 +tp121320 +a(g121317 +g121319 +S'the' +p121321 +tp121322 +a(g121319 +g121321 +S'attention' +p121323 +tp121324 +a(g121321 +g121323 +S'to' +p121325 +tp121326 +a(g121323 +g121325 +S'detailed' +p121327 +tp121328 +a(g121325 +g121327 +S'textures,' +p121329 +tp121330 +a(g121327 +g121329 +S'but' +p121331 +tp121332 +a(g121329 +g121331 +S'french' +p121333 +tp121334 +a(g121331 +g121333 +S'influence' +p121335 +tp121336 +a(g121333 +g121335 +S'accounts' +p121337 +tp121338 +a(g121335 +g121337 +S'for' +p121339 +tp121340 +a(g121337 +g121339 +S'the' +p121341 +tp121342 +a(g121339 +g121341 +S'formal' +p121343 +tp121344 +a(g121341 +g121343 +S'composition,' +p121345 +tp121346 +a(g121343 +g121345 +S'such' +p121347 +tp121348 +a(g121345 +g121347 +S'as' +p121349 +tp121350 +a(g121347 +g121349 +S'the' +p121351 +tp121352 +a(g121349 +g121351 +S'open' +p121353 +tp121354 +a(g121351 +g121353 +S'robe' +p121355 +tp121356 +a(g121353 +g121355 +S'creating' +p121357 +tp121358 +a(g121355 +g121357 +S'a' +p121359 +tp121360 +a(g121357 +g121359 +S'diagonal' +p121361 +tp121362 +a(g121359 +g121361 +S'line' +p121363 +tp121364 +a(g121361 +g121363 +S'that' +p121365 +tp121366 +a(g121363 +g121365 +S'rises' +p121367 +tp121368 +a(g121365 +g121367 +S'toward' +p121369 +tp121370 +a(g121367 +g121369 +S'the' +p121371 +tp121372 +a(g121369 +g121371 +S'head.' +p121373 +tp121374 +a(g121371 +g121373 +S'when' +p121375 +tp121376 +a(g121373 +g121375 +S'chardin' +p121377 +tp121378 +a(g121375 +g121377 +S'returned' +p121379 +tp121380 +a(g121377 +g121379 +S'to' +p121381 +tp121382 +a(g121379 +g121381 +S'still-life' +p121383 +tp121384 +a(g121381 +g121383 +S'painting' +p121385 +tp121386 +a(g121383 +g121385 +S'late' +p121387 +tp121388 +a(g121385 +g121387 +S'in' +p121389 +tp121390 +a(g121387 +g121389 +S'his' +p121391 +tp121392 +a(g121389 +g121391 +S'life,' +p121393 +tp121394 +a(g121391 +g121393 +S'he' +p121395 +tp121396 +a(g121393 +g121395 +S'employed' +p121397 +tp121398 +a(g121395 +g121397 +S'a' +p121399 +tp121400 +a(g121397 +g121399 +S'freer' +p121401 +tp121402 +a(g121399 +g121401 +S'style' +p121403 +tp121404 +a(g121401 +g121403 +S'than' +p121405 +tp121406 +a(g121403 +g121405 +S'the' +p121407 +tp121408 +a(g121405 +g121407 +S'more' +p121409 +tp121410 +a(g121407 +g121409 +S'refined' +p121411 +tp121412 +a(g121409 +g121411 +S'technique' +p121413 +tp121414 +a(g121411 +g121413 +S'he' +p121415 +tp121416 +a(g121413 +g121415 +S'had' +p121417 +tp121418 +a(g121415 +g121417 +S'used' +p121419 +tp121420 +a(g121417 +g121419 +S'for' +p121421 +tp121422 +a(g121419 +g121421 +S'figures.' +p121423 +tp121424 +a(g121421 +g121423 +S'his' +p121425 +tp121426 +a(g121423 +g121425 +S'contemporaries' +p121427 +tp121428 +a(g121425 +g121427 +S'painted' +p121429 +tp121430 +a(g121427 +g121429 +S'dead' +p121431 +tp121432 +a(g121429 +g121431 +S'game' +p121433 +tp121434 +a(g121431 +g121433 +S'with' +p121435 +tp121436 +a(g121433 +g121435 +S"trompe-l'oeil" +p121437 +tp121438 +a(g121435 +g121437 +S'(literally,' +p121439 +tp121440 +a(g121437 +g121439 +S'"fool' +p121441 +tp121442 +a(g121439 +g121441 +S'the' +p121443 +tp121444 +a(g121441 +g121443 +S'eye")' +p121445 +tp121446 +a(g121443 +g121445 +S'realism' +p121447 +tp121448 +a(g121445 +g121447 +S'and' +p121449 +tp121450 +a(g121447 +g121449 +S'great' +p121451 +tp121452 +a(g121449 +g121451 +S'virtuosity,' +p121453 +tp121454 +a(g121451 +g121453 +S'but' +p121455 +tp121456 +a(g121453 +g121455 +S'chardin' +p121457 +tp121458 +a(g121455 +g121457 +S'chose' +p121459 +tp121460 +a(g121457 +g121459 +S'instead' +p121461 +tp121462 +a(g121459 +g121461 +S'to' +p121463 +tp121464 +a(g121461 +g121463 +S'evoke' +p121465 +tp121466 +a(g121463 +g121465 +S'the' +p121467 +tp121468 +a(g121465 +g121467 +S'limp' +p121469 +tp121470 +a(g121467 +g121469 +S'plumpness' +p121471 +tp121472 +a(g121469 +g121471 +S'of' +p121473 +tp121474 +a(g121471 +g121473 +S'these' +p121475 +tp121476 +a(g121473 +g121475 +S'animals' +p121477 +tp121478 +a(g121475 +g121477 +S'with' +p121479 +tp121480 +a(g121477 +g121479 +S'softness' +p121481 +tp121482 +a(g121479 +g121481 +S'and' +p121483 +tp121484 +a(g121481 +g121483 +S'a' +p121485 +tp121486 +a(g121483 +g121485 +S'certain' +p121487 +tp121488 +a(g121485 +g121487 +S'ambiguity.' +p121489 +tp121490 +a(g121487 +g121489 +S'an' +p121491 +tp121492 +a(g121489 +g121491 +S'array' +p121493 +tp121494 +a(g121491 +g121493 +S'of' +p121495 +tp121496 +a(g121493 +g121495 +S'tones' +p121497 +tp121498 +a(g121495 +g121497 +S'spreads' +p121499 +tp121500 +a(g121497 +g121499 +S'like' +p121501 +tp121502 +a(g121499 +g121501 +S'light' +p121503 +tp121504 +a(g121501 +g121503 +S'diffusing' +p121505 +tp121506 +a(g121503 +g121505 +S'across' +p121507 +tp121508 +a(g121505 +g121507 +S'this' +p121509 +tp121510 +a(g121507 +g121509 +S'canvas.' +p121511 +tp121512 +a(g121509 +g121511 +S'vivid' +p121513 +tp121514 +a(g121511 +g121513 +S'highlights' +p121515 +tp121516 +a(g121513 +g121515 +S'of' +p121517 +tp121518 +a(g121515 +g121517 +S'turquoise' +p121519 +tp121520 +a(g121517 +g121519 +S'and' +p121521 +tp121522 +a(g121519 +g121521 +S'coral' +p121523 +tp121524 +a(g121521 +g121523 +S'in' +p121525 +tp121526 +a(g121523 +g121525 +S'the' +p121527 +tp121528 +a(g121525 +g121527 +S'feathers' +p121529 +tp121530 +a(g121527 +g121529 +S'punctuate' +p121531 +tp121532 +a(g121529 +g121531 +S'the' +p121533 +tp121534 +a(g121531 +g121533 +S'warm' +p121535 +tp121536 +a(g121533 +g121535 +S'neutrals' +p121537 +tp121538 +a(g121535 +g121537 +S'and' +p121539 +tp121540 +a(g121537 +g121539 +S'are' +p121541 +tp121542 +a(g121539 +g121541 +S'echoed' +p121543 +tp121544 +a(g121541 +g121543 +S'with' +p121545 +tp121546 +a(g121543 +g121545 +S'ever' +p121547 +tp121548 +a(g121545 +g121547 +S'diminishing' +p121549 +tp121550 +a(g121547 +g121549 +S'strength' +p121551 +tp121552 +a(g121549 +g121551 +S'from' +p121553 +tp121554 +a(g121551 +g121553 +S'left' +p121555 +tp121556 +a(g121553 +g121555 +S'to' +p121557 +tp121558 +a(g121555 +g121557 +S'right.' +p121559 +tp121560 +a(g121557 +g121559 +S'the' +p121561 +tp121562 +a(g121559 +g121561 +S'feathers' +p121563 +tp121564 +a(g121561 +g121563 +S'are' +p121565 +tp121566 +a(g121563 +g121565 +S'painted' +p121567 +tp121568 +a(g121565 +g121567 +S'with' +p121569 +tp121570 +a(g121567 +g121569 +S'smooth' +p121571 +tp121572 +a(g121569 +g121571 +S'scalloping' +p121573 +tp121574 +a(g121571 +g121573 +S'arcs,' +p121575 +tp121576 +a(g121573 +g121575 +S'while' +p121577 +tp121578 +a(g121575 +g121577 +S'the' +p121579 +tp121580 +a(g121577 +g121579 +S'fur' +p121581 +tp121582 +a(g121579 +g121581 +S'of' +p121583 +tp121584 +a(g121581 +g121583 +S'the' +p121585 +tp121586 +a(g121583 +g121585 +S'rabbits' +p121587 +tp121588 +a(g121585 +g121587 +S'is' +p121589 +tp121590 +a(g121587 +g121589 +S'made' +p121591 +tp121592 +a(g121589 +g121591 +S'with' +p121593 +tp121594 +a(g121591 +g121593 +S'thicker' +p121595 +tp121596 +a(g121593 +g121595 +S'paint' +p121597 +tp121598 +a(g121595 +g121597 +S'puckered' +p121599 +tp121600 +a(g121597 +g121599 +S'on' +p121601 +tp121602 +a(g121599 +g121601 +S'the' +p121603 +tp121604 +a(g121601 +g121603 +S'surface.' +p121605 +tp121606 +a(g121603 +g121605 +S'approach' +p121607 +tp121608 +a(g121605 +g121607 +S'the' +p121609 +tp121610 +a(g121607 +g121609 +S'painting,' +p121611 +tp121612 +a(g121609 +g121611 +S'as' +p121613 +tp121614 +a(g121611 +g121613 +S'the' +p121615 +tp121616 +a(g121613 +g121615 +S'critic' +p121617 +tp121618 +a(g121615 +g121617 +S'diderot' +p121619 +tp121620 +a(g121617 +g121619 +S'suggested' +p121621 +tp121622 +a(g121619 +g121621 +S'visitors' +p121623 +tp121624 +a(g121621 +g121623 +S'to' +p121625 +tp121626 +a(g121623 +g121625 +S'the' +p121627 +tp121628 +a(g121625 +g121627 +S'salon' +p121629 +tp121630 +a(g121627 +g121629 +S'exhibitions' +p121631 +tp121632 +a(g121629 +g121631 +S'do,' +p121633 +tp121634 +a(g121631 +g121633 +S'and' +p121635 +tp121636 +a(g121633 +g121635 +S'the' +p121637 +tp121638 +a(g121635 +g121637 +S'forms' +p121639 +tp121640 +a(g121637 +g121639 +S'of' +p121641 +tp121642 +a(g121639 +g121641 +S'the' +p121643 +tp121644 +a(g121641 +g121643 +S'game' +p121645 +tp121646 +a(g121643 +g121645 +S'disappear' +p121647 +tp121648 +a(g121645 +g121647 +S'into' +p121649 +tp121650 +a(g121647 +g121649 +S'a' +p121651 +tp121652 +a(g121649 +g121651 +S'mosaic' +p121653 +tp121654 +a(g121651 +g121653 +S'of' +p121655 +tp121656 +a(g121653 +g121655 +S'pure' +p121657 +tp121658 +a(g121655 +g121657 +S'paint.' +p121659 +tp121660 +a(g121657 +g121659 +S'"move' +p121661 +tp121662 +a(g121659 +g121661 +S'away,"' +p121663 +tp121664 +a(g121661 +g121663 +S'diderot' +p121665 +tp121666 +a(g121663 +g121665 +S'continued,' +p121667 +tp121668 +a(g121665 +g121667 +S'"and' +p121669 +tp121670 +a(g121667 +g121669 +S'everything' +p121671 +tp121672 +a(g121669 +g121671 +S'creates' +p121673 +tp121674 +a(g121671 +g121673 +S'itself' +p121675 +tp121676 +a(g121673 +g121675 +S'and' +p121677 +tp121678 +a(g121675 +g121677 +S'reappears."' +p121679 +tp121680 +a(g121677 +g121679 +S'through' +p121681 +tp121682 +a(g121679 +g121681 +S'the' +p121683 +tp121684 +a(g121681 +g121683 +S'simple' +p121685 +tp121686 +a(g121683 +g121685 +S'action' +p121687 +tp121688 +a(g121685 +g121687 +S'depicted' +p121689 +tp121690 +a(g121687 +g121689 +S'here,' +p121691 +tp121692 +a(g121689 +g121691 +S'chardin' +p121693 +tp121694 +a(g121691 +g121693 +S'reveals' +p121695 +tp121696 +a(g121693 +g121695 +S'dignity' +p121697 +tp121698 +a(g121695 +g121697 +S'and' +p121699 +tp121700 +a(g121697 +g121699 +S'beauty' +p121701 +tp121702 +a(g121699 +g121701 +S'in' +p121703 +tp121704 +a(g121701 +g121703 +S'everyday' +p121705 +tp121706 +a(g121703 +g121705 +S'life.' +p121707 +tp121708 +a(g121705 +g121707 +S'the' +p121709 +tp121710 +a(g121707 +g121709 +S"woman's" +p121711 +tp121712 +a(g121709 +g121711 +S'expression' +p121713 +tp121714 +a(g121711 +g121713 +S'as' +p121715 +tp121716 +a(g121713 +g121715 +S'she' +p121717 +tp121718 +a(g121715 +g121717 +S'concentrates' +p121719 +tp121720 +a(g121717 +g121719 +S'on' +p121721 +tp121722 +a(g121719 +g121721 +S'her' +p121723 +tp121724 +a(g121721 +g121723 +S'task' +p121725 +tp121726 +a(g121723 +g121725 +S'suggests' +p121727 +tp121728 +a(g121725 +g121727 +S'that' +p121729 +tp121730 +a(g121727 +g121729 +S'her' +p121731 +tp121732 +a(g121729 +g121731 +S'thoughts' +p121733 +tp121734 +a(g121731 +g121733 +S'are' +p121735 +tp121736 +a(g121733 +g121735 +S'elsewhere,' +p121737 +tp121738 +a(g121735 +g121737 +S'perhaps' +p121739 +tp121740 +a(g121737 +g121739 +S'with' +p121741 +tp121742 +a(g121739 +g121741 +S'the' +p121743 +tp121744 +a(g121741 +g121743 +S'invalid' +p121745 +tp121746 +a(g121743 +g121745 +S'whose' +p121747 +tp121748 +a(g121745 +g121747 +S'meal' +p121749 +tp121750 +a(g121747 +g121749 +S'she' +p121751 +tp121752 +a(g121749 +g121751 +S'is' +p121753 +tp121754 +a(g121751 +g121753 +S'preparing' +p121755 +tp121756 +a(g121753 +g121755 +S'(chardin' +p121757 +tp121758 +a(g121755 +g121757 +S'lost' +p121759 +tp121760 +a(g121757 +g121759 +S'his' +p121761 +tp121762 +a(g121759 +g121761 +S'first' +p121763 +tp121764 +a(g121761 +g121763 +S'wife' +p121765 +tp121766 +a(g121763 +g121765 +S'and' +p121767 +tp121768 +a(g121765 +g121767 +S'young' +p121769 +tp121770 +a(g121767 +g121769 +S'daughter' +p121771 +tp121772 +a(g121769 +g121771 +S'to' +p121773 +tp121774 +a(g121771 +g121773 +S'illness).' +p121775 +tp121776 +a(g121773 +g121775 +S'each' +p121777 +tp121778 +a(g121775 +g121777 +S'object' +p121779 +tp121780 +a(g121777 +g121779 +S'receives' +p121781 +tp121782 +a(g121779 +g121781 +S'careful' +p121783 +tp121784 +a(g121781 +g121783 +S'treatment' +p121785 +tp121786 +a(g121783 +g121785 +S'from' +p121787 +tp121788 +a(g121785 +g121787 +S'the' +p121789 +tp121790 +a(g121787 +g121789 +S"artist's" +p121791 +tp121792 +a(g121789 +g121791 +S'brush.' +p121793 +tp121794 +a(g121791 +g121793 +S'the' +p121795 +tp121796 +a(g121793 +g121795 +S'table' +p121797 +tp121798 +a(g121795 +g121797 +S'setting' +p121799 +tp121800 +a(g121797 +g121799 +S'is' +p121801 +tp121802 +a(g121799 +g121801 +S'a' +p121803 +tp121804 +a(g121801 +g121803 +S'harmony' +p121805 +tp121806 +a(g121803 +g121805 +S'of' +p121807 +tp121808 +a(g121805 +g121807 +S'white' +p121809 +tp121810 +a(g121807 +g121809 +S'tones:' +p121811 +tp121812 +a(g121809 +g121811 +S'jug,' +p121813 +tp121814 +a(g121811 +g121813 +S'tablecloth,' +p121815 +tp121816 +a(g121813 +g121815 +S'egg,' +p121817 +tp121818 +a(g121815 +g121817 +S'and' +p121819 +tp121820 +a(g121817 +g121819 +S'plate,' +p121821 +tp121822 +a(g121819 +g121821 +S'each' +p121823 +tp121824 +a(g121821 +g121823 +S'subtly' +p121825 +tp121826 +a(g121823 +g121825 +S'different.' +p121827 +tp121828 +a(g121825 +g121827 +S'every' +p121829 +tp121830 +a(g121827 +g121829 +S'pot,' +p121831 +tp121832 +a(g121829 +g121831 +S'each' +p121833 +tp121834 +a(g121831 +g121833 +S'piece' +p121835 +tp121836 +a(g121833 +g121835 +S'of' +p121837 +tp121838 +a(g121835 +g121837 +S'crockery' +p121839 +tp121840 +a(g121837 +g121839 +S'is' +p121841 +tp121842 +a(g121839 +g121841 +S'palpably' +p121843 +tp121844 +a(g121841 +g121843 +S'present.' +p121845 +tp121846 +a(g121843 +g121845 +S'as' +p121847 +tp121848 +a(g121845 +g121847 +S'diderot' +p121849 +tp121850 +a(g121847 +g121849 +S'wrote' +p121851 +tp121852 +a(g121849 +g121851 +S'of' +p121853 +tp121854 +a(g121851 +g121853 +S'chardin,' +p121855 +tp121856 +a(g121853 +g121855 +S'"it' +p121857 +tp121858 +a(g121855 +g121857 +S'is' +p121859 +tp121860 +a(g121857 +g121859 +S'not' +p121861 +tp121862 +a(g121859 +g121861 +S'white,' +p121863 +tp121864 +a(g121861 +g121863 +S'red,' +p121865 +tp121866 +a(g121863 +g121865 +S'or' +p121867 +tp121868 +a(g121865 +g121867 +S'black' +p121869 +tp121870 +a(g121867 +g121869 +S'pigment' +p121871 +tp121872 +a(g121869 +g121871 +S'that' +p121873 +tp121874 +a(g121871 +g121873 +S'you' +p121875 +tp121876 +a(g121873 +g121875 +S'mix' +p121877 +tp121878 +a(g121875 +g121877 +S'on' +p121879 +tp121880 +a(g121877 +g121879 +S'your' +p121881 +tp121882 +a(g121879 +g121881 +S'palette,' +p121883 +tp121884 +a(g121881 +g121883 +S'it' +p121885 +tp121886 +a(g121883 +g121885 +S'is' +p121887 +tp121888 +a(g121885 +g121887 +S'the' +p121889 +tp121890 +a(g121887 +g121889 +S'very' +p121891 +tp121892 +a(g121889 +g121891 +S'substance' +p121893 +tp121894 +a(g121891 +g121893 +S'of' +p121895 +tp121896 +a(g121893 +g121895 +S'objects."' +p121897 +tp121898 +a(g121895 +g121897 +S"chardin's" +p121899 +tp121900 +a(g121897 +g121899 +S'modest' +p121901 +tp121902 +a(g121899 +g121901 +S'subjects—like' +p121903 +tp121904 +a(g121901 +g121903 +S'this' +p121905 +tp121906 +a(g121903 +g121905 +S'and' +p121907 +tp121908 +a(g121905 +g121907 +S'that' +p121909 +tp121910 +a(g121907 +g121909 +S'of' +p121911 +tp121912 +a(g121909 +g121911 +S'the' +p121913 +tp121914 +a(g121911 +g121913 +S'in' +p121915 +tp121916 +a(g121913 +g121915 +S'1632' +p121917 +tp121918 +a(g121915 +g121917 +S'anthony' +p121919 +tp121920 +a(g121917 +g121919 +S'van' +p121921 +tp121922 +a(g121919 +g121921 +S'dyck' +p121923 +tp121924 +a(g121921 +g121923 +S'was' +p121925 +tp121926 +a(g121923 +g121925 +S'invited' +p121927 +tp121928 +a(g121925 +g121927 +S'to' +p121929 +tp121930 +a(g121927 +g121929 +S'england' +p121931 +tp121932 +a(g121929 +g121931 +S'to' +p121933 +tp121934 +a(g121931 +g121933 +S'work' +p121935 +tp121936 +a(g121933 +g121935 +S'at' +p121937 +tp121938 +a(g121935 +g121937 +S'the' +p121939 +tp121940 +a(g121937 +g121939 +S'court' +p121941 +tp121942 +a(g121939 +g121941 +S'of' +p121943 +tp121944 +a(g121941 +g121943 +S'charles' +p121945 +tp121946 +a(g121943 +g121945 +S'i.' +p121947 +tp121948 +a(g121945 +g121947 +S'there' +p121949 +tp121950 +a(g121947 +g121949 +S'he' +p121951 +tp121952 +a(g121949 +g121951 +S'painted' +p121953 +tp121954 +a(g121951 +g121953 +S'many' +p121955 +tp121956 +a(g121953 +g121955 +S'impressive' +p121957 +tp121958 +a(g121955 +g121957 +S'portraits,' +p121959 +tp121960 +a(g121957 +g121959 +S'including' +p121961 +tp121962 +a(g121959 +g121961 +S'this' +p121963 +tp121964 +a(g121961 +g121963 +S'depiction' +p121965 +tp121966 +a(g121963 +g121965 +S'of' +p121967 +tp121968 +a(g121965 +g121967 +S'queen' +p121969 +tp121970 +a(g121967 +g121969 +S'henrietta' +p121971 +tp121972 +a(g121969 +g121971 +S'maria' +p121973 +tp121974 +a(g121971 +g121973 +S'at' +p121975 +tp121976 +a(g121973 +g121975 +S'age' +p121977 +tp121978 +a(g121975 +g121977 +S'24.' +p121979 +tp121980 +a(g121977 +g121979 +S'the' +p121981 +tp121982 +a(g121979 +g121981 +S'french–born' +p121983 +tp121984 +a(g121981 +g121983 +S'queen' +p121985 +tp121986 +a(g121983 +g121985 +S'exerted' +p121987 +tp121988 +a(g121985 +g121987 +S'a' +p121989 +tp121990 +a(g121987 +g121989 +S'strong' +p121991 +tp121992 +a(g121989 +g121991 +S'influence' +p121993 +tp121994 +a(g121991 +g121993 +S'on' +p121995 +tp121996 +a(g121993 +g121995 +S'court' +p121997 +tp121998 +a(g121995 +g121997 +S'fashion' +p121999 +tp122000 +a(g121997 +g121999 +S'and' +p122001 +tp122002 +a(g121999 +g122001 +S'protocol,' +p122003 +tp122004 +a(g122001 +g122003 +S'introducing' +p122005 +tp122006 +a(g122003 +g122005 +S'to' +p122007 +tp122008 +a(g122005 +g122007 +S'england' +p122009 +tp122010 +a(g122007 +g122009 +S'the' +p122011 +tp122012 +a(g122009 +g122011 +S'fashions' +p122013 +tp122014 +a(g122011 +g122013 +S'of' +p122015 +tp122016 +a(g122013 +g122015 +S'the' +p122017 +tp122018 +a(g122015 +g122017 +S'continent;' +p122019 +tp122020 +a(g122017 +g122019 +S'she' +p122021 +tp122022 +a(g122019 +g122021 +S'is' +p122023 +tp122024 +a(g122021 +g122023 +S'shown' +p122025 +tp122026 +a(g122023 +g122025 +S'here' +p122027 +tp122028 +a(g122025 +g122027 +S'dressed' +p122029 +tp122030 +a(g122027 +g122029 +S'for' +p122031 +tp122032 +a(g122029 +g122031 +S'the' +p122033 +tp122034 +a(g122031 +g122033 +S'hunt' +p122035 +tp122036 +a(g122033 +g122035 +S'in' +p122037 +tp122038 +a(g122035 +g122037 +S'a' +p122039 +tp122040 +a(g122037 +g122039 +S'satin' +p122041 +tp122042 +a(g122039 +g122041 +S'riding' +p122043 +tp122044 +a(g122041 +g122043 +S'costume' +p122045 +tp122046 +a(g122043 +g122045 +S'with' +p122047 +tp122048 +a(g122045 +g122047 +S'a' +p122049 +tp122050 +a(g122047 +g122049 +S'delicate' +p122051 +tp122052 +a(g122049 +g122051 +S'lace' +p122053 +tp122054 +a(g122051 +g122053 +S'collar' +p122055 +tp122056 +a(g122053 +g122055 +S'instead' +p122057 +tp122058 +a(g122055 +g122057 +S'of' +p122059 +tp122060 +a(g122057 +g122059 +S'the' +p122061 +tp122062 +a(g122059 +g122061 +S'stiff' +p122063 +tp122064 +a(g122061 +g122063 +S'elizabethan' +p122065 +tp122066 +a(g122063 +g122065 +S'ruff.' +p122067 +tp122068 +a(g122065 +g122067 +S'the' +p122069 +tp122070 +a(g122067 +g122069 +S"queen's" +p122071 +tp122072 +a(g122069 +g122071 +S'love' +p122073 +tp122074 +a(g122071 +g122073 +S'of' +p122075 +tp122076 +a(g122073 +g122075 +S'amusement' +p122077 +tp122078 +a(g122075 +g122077 +S'is' +p122079 +tp122080 +a(g122077 +g122079 +S'symbolized' +p122081 +tp122082 +a(g122079 +g122081 +S'by' +p122083 +tp122084 +a(g122081 +g122083 +S'the' +p122085 +tp122086 +a(g122083 +g122085 +S'presence' +p122087 +tp122088 +a(g122085 +g122087 +S'of' +p122089 +tp122090 +a(g122087 +g122089 +S'the' +p122091 +tp122092 +a(g122089 +g122091 +S'dwarf' +p122093 +tp122094 +a(g122091 +g122093 +S'and' +p122095 +tp122096 +a(g122093 +g122095 +S'monkey,' +p122097 +tp122098 +a(g122095 +g122097 +S'both' +p122099 +tp122100 +a(g122097 +g122099 +S'royal' +p122101 +tp122102 +a(g122099 +g122101 +S'favorites.' +p122103 +tp122104 +a(g122101 +g122103 +S'jeffrey' +p122105 +tp122106 +a(g122103 +g122105 +S'hudson,' +p122107 +tp122108 +a(g122105 +g122107 +S'a' +p122109 +tp122110 +a(g122107 +g122109 +S'dwarf,' +p122111 +tp122112 +a(g122109 +g122111 +S'had' +p122113 +tp122114 +a(g122111 +g122113 +S'been' +p122115 +tp122116 +a(g122113 +g122115 +S'presented' +p122117 +tp122118 +a(g122115 +g122117 +S'to' +p122119 +tp122120 +a(g122117 +g122119 +S'the' +p122121 +tp122122 +a(g122119 +g122121 +S'queen' +p122123 +tp122124 +a(g122121 +g122123 +S'as' +p122125 +tp122126 +a(g122123 +g122125 +S'a' +p122127 +tp122128 +a(g122125 +g122127 +S'gift' +p122129 +tp122130 +a(g122127 +g122129 +S'when' +p122131 +tp122132 +a(g122129 +g122131 +S'he' +p122133 +tp122134 +a(g122131 +g122133 +S'was' +p122135 +tp122136 +a(g122133 +g122135 +S'eight' +p122137 +tp122138 +a(g122135 +g122137 +S'years' +p122139 +tp122140 +a(g122137 +g122139 +S'old' +p122141 +tp122142 +a(g122139 +g122141 +S'and' +p122143 +tp122144 +a(g122141 +g122143 +S'remained' +p122145 +tp122146 +a(g122143 +g122145 +S'a' +p122147 +tp122148 +a(g122145 +g122147 +S'faithful' +p122149 +tp122150 +a(g122147 +g122149 +S'advisor' +p122151 +tp122152 +a(g122149 +g122151 +S'until' +p122153 +tp122154 +a(g122151 +g122153 +S'her' +p122155 +tp122156 +a(g122153 +g122155 +S'death.' +p122157 +tp122158 +a(g122155 +g122157 +S'the' +p122159 +tp122160 +a(g122157 +g122159 +S'portrait' +p122161 +tp122162 +a(g122159 +g122161 +S'superbly' +p122163 +tp122164 +a(g122161 +g122163 +S'demonstrates' +p122165 +tp122166 +a(g122163 +g122165 +S'van' +p122167 +tp122168 +a(g122165 +g122167 +S"dyck's" +p122169 +tp122170 +a(g122167 +g122169 +S'working' +p122171 +tp122172 +a(g122169 +g122171 +S'methods' +p122173 +tp122174 +a(g122171 +g122173 +S'and' +p122175 +tp122176 +a(g122173 +g122175 +S'the' +p122177 +tp122178 +a(g122175 +g122177 +S'reasons' +p122179 +tp122180 +a(g122177 +g122179 +S'for' +p122181 +tp122182 +a(g122179 +g122181 +S'his' +p122183 +tp122184 +a(g122181 +g122183 +S'phenomenal' +p122185 +tp122186 +a(g122183 +g122185 +S'success.' +p122187 +tp122188 +a(g122185 +g122187 +S'henrietta' +p122189 +tp122190 +a(g122187 +g122189 +S'probably' +p122191 +tp122192 +a(g122189 +g122191 +S'posed' +p122193 +tp122194 +a(g122191 +g122193 +S'only' +p122195 +tp122196 +a(g122193 +g122195 +S'briefly' +p122197 +tp122198 +a(g122195 +g122197 +S'for' +p122199 +tp122200 +a(g122197 +g122199 +S'a' +p122201 +tp122202 +a(g122199 +g122201 +S'sketch,' +p122203 +tp122204 +a(g122201 +g122203 +S'so' +p122205 +tp122206 +a(g122203 +g122205 +S'the' +p122207 +tp122208 +a(g122205 +g122207 +S'painting' +p122209 +tp122210 +a(g122207 +g122209 +S'itself' +p122211 +tp122212 +a(g122209 +g122211 +S'had' +p122213 +tp122214 +a(g122211 +g122213 +S'to' +p122215 +tp122216 +a(g122213 +g122215 +S'be' +p122217 +tp122218 +a(g122215 +g122217 +S'executed' +p122219 +tp122220 +a(g122217 +g122219 +S'from' +p122221 +tp122222 +a(g122219 +g122221 +S'a' +p122223 +tp122224 +a(g122221 +g122223 +S'model' +p122225 +tp122226 +a(g122223 +g122225 +S'or' +p122227 +tp122228 +a(g122225 +g122227 +S'mannequin' +p122229 +tp122230 +a(g122227 +g122229 +S'attired' +p122231 +tp122232 +a(g122229 +g122231 +S'in' +p122233 +tp122234 +a(g122231 +g122233 +S'the' +p122235 +tp122236 +a(g122233 +g122235 +S"queen's" +p122237 +tp122238 +a(g122235 +g122237 +S'costume.' +p122239 +tp122240 +a(g122237 +g122239 +S'the' +p122241 +tp122242 +a(g122239 +g122241 +S'artist' +p122243 +tp122244 +a(g122241 +g122243 +S'shows' +p122245 +tp122246 +a(g122243 +g122245 +S'a' +p122247 +tp122248 +a(g122245 +g122247 +S'tall' +p122249 +tp122250 +a(g122247 +g122249 +S'woman' +p122251 +tp122252 +a(g122249 +g122251 +S'with' +p122253 +tp122254 +a(g122251 +g122253 +S'an' +p122255 +tp122256 +a(g122253 +g122255 +S'oval' +p122257 +tp122258 +a(g122255 +g122257 +S'face,' +p122259 +tp122260 +a(g122257 +g122259 +S'pointed' +p122261 +tp122262 +a(g122259 +g122261 +S'chin,' +p122263 +tp122264 +a(g122261 +g122263 +S'and' +p122265 +tp122266 +a(g122263 +g122265 +S'long' +p122267 +tp122268 +a(g122265 +g122267 +S'nose.' +p122269 +tp122270 +a(g122267 +g122269 +S'according' +p122271 +tp122272 +a(g122269 +g122271 +S'to' +p122273 +tp122274 +a(g122271 +g122273 +S'sketches' +p122275 +tp122276 +a(g122273 +g122275 +S'done' +p122277 +tp122278 +a(g122275 +g122277 +S'from' +p122279 +tp122280 +a(g122277 +g122279 +S'life,' +p122281 +tp122282 +a(g122279 +g122281 +S'however,' +p122283 +tp122284 +a(g122281 +g122283 +S'the' +p122285 +tp122286 +a(g122283 +g122285 +S'queen' +p122287 +tp122288 +a(g122285 +g122287 +S'was' +p122289 +tp122290 +a(g122287 +g122289 +S'actually' +p122291 +tp122292 +a(g122289 +g122291 +S'a' +p122293 +tp122294 +a(g122291 +g122293 +S'petite' +p122295 +tp122296 +a(g122293 +g122295 +S'person' +p122297 +tp122298 +a(g122295 +g122297 +S'with' +p122299 +tp122300 +a(g122297 +g122299 +S'a' +p122301 +tp122302 +a(g122299 +g122301 +S'round' +p122303 +tp122304 +a(g122301 +g122303 +S'head' +p122305 +tp122306 +a(g122303 +g122305 +S'and' +p122307 +tp122308 +a(g122305 +g122307 +S'small' +p122309 +tp122310 +a(g122307 +g122309 +S'features.' +p122311 +tp122312 +a(g122309 +g122311 +S'she' +p122313 +tp122314 +a(g122311 +g122313 +S'thus' +p122315 +tp122316 +a(g122313 +g122315 +S'has' +p122317 +tp122318 +a(g122315 +g122317 +S'been' +p122319 +tp122320 +a(g122317 +g122319 +S'greatly' +p122321 +tp122322 +a(g122319 +g122321 +S'idealized' +p122323 +tp122324 +a(g122321 +g122323 +S'in' +p122325 +tp122326 +a(g122323 +g122325 +S'the' +p122327 +tp122328 +a(g122325 +g122327 +S'portrait.' +p122329 +tp122330 +a(g122327 +g122329 +S'the' +p122331 +tp122332 +a(g122329 +g122331 +S'fluted' +p122333 +tp122334 +a(g122331 +g122333 +S'column' +p122335 +tp122336 +a(g122333 +g122335 +S'emphasizes' +p122337 +tp122338 +a(g122335 +g122337 +S'her' +p122339 +tp122340 +a(g122337 +g122339 +S'already' +p122341 +tp122342 +a(g122339 +g122341 +S'exaggerated' +p122343 +tp122344 +a(g122341 +g122343 +S'height,' +p122345 +tp122346 +a(g122343 +g122345 +S'and' +p122347 +tp122348 +a(g122345 +g122347 +S'the' +p122349 +tp122350 +a(g122347 +g122349 +S'crown' +p122351 +tp122352 +a(g122349 +g122351 +S'and' +p122353 +tp122354 +a(g122351 +g122353 +S'cloth' +p122355 +tp122356 +a(g122353 +g122355 +S'of' +p122357 +tp122358 +a(g122355 +g122357 +S'gold' +p122359 +tp122360 +a(g122357 +g122359 +S'signify' +p122361 +tp122362 +a(g122359 +g122361 +S'her' +p122363 +tp122364 +a(g122361 +g122363 +S'royalty.' +p122365 +tp122366 +a(g122363 +g122365 +S'these' +p122367 +tp122368 +a(g122365 +g122367 +S'two' +p122369 +tp122370 +a(g122367 +g122369 +S'panels' +p122371 +tp122372 +a(g122369 +g122371 +S'are' +p122373 +tp122374 +a(g122371 +g122373 +S'painted' +p122375 +tp122376 +a(g122373 +g122375 +S'with' +p122377 +tp122378 +a(g122375 +g122377 +S'the' +p122379 +tp122380 +a(g122377 +g122379 +S'subtly' +p122381 +tp122382 +a(g122379 +g122381 +S'varied' +p122383 +tp122384 +a(g122381 +g122383 +S'grays' +p122385 +tp122386 +a(g122383 +g122385 +S'known' +p122387 +tp122388 +a(g122385 +g122387 +S'by' +p122389 +tp122390 +a(g122387 +g122389 +S'the' +p122391 +tp122392 +a(g122389 +g122391 +S'french' +p122393 +tp122394 +a(g122391 +g122393 +S'term' +p122395 +tp122396 +a(g122393 +g122395 +S'“grisaille,”' +p122397 +tp122398 +a(g122395 +g122397 +S'a' +p122399 +tp122400 +a(g122397 +g122399 +S'palette' +p122401 +tp122402 +a(g122399 +g122401 +S'that' +p122403 +tp122404 +a(g122401 +g122403 +S'mimicked' +p122405 +tp122406 +a(g122403 +g122405 +S'the' +p122407 +tp122408 +a(g122405 +g122407 +S'appearance' +p122409 +tp122410 +a(g122407 +g122409 +S'of' +p122411 +tp122412 +a(g122409 +g122411 +S'stone' +p122413 +tp122414 +a(g122411 +g122413 +S'sculpture' +p122415 +tp122416 +a(g122413 +g122415 +S'and' +p122417 +tp122418 +a(g122415 +g122417 +S'was' +p122419 +tp122420 +a(g122417 +g122419 +S'used' +p122421 +tp122422 +a(g122419 +g122421 +S'most' +p122423 +tp122424 +a(g122421 +g122423 +S'often,' +p122425 +tp122426 +a(g122423 +g122425 +S'as' +p122427 +tp122428 +a(g122425 +g122427 +S'here,' +p122429 +tp122430 +a(g122427 +g122429 +S'on' +p122431 +tp122432 +a(g122429 +g122431 +S'the' +p122433 +tp122434 +a(g122431 +g122433 +S'exteriors' +p122435 +tp122436 +a(g122433 +g122435 +S'of' +p122437 +tp122438 +a(g122435 +g122437 +S'altarpiece' +p122439 +tp122440 +a(g122437 +g122439 +S'shutters.' +p122441 +tp122442 +a(g122439 +g122441 +S'seen' +p122443 +tp122444 +a(g122441 +g122443 +S'in' +p122445 +tp122446 +a(g122443 +g122445 +S'the' +p122447 +tp122448 +a(g122445 +g122447 +S'desert' +p122449 +tp122450 +a(g122447 +g122449 +S'where' +p122451 +tp122452 +a(g122449 +g122451 +S'he' +p122453 +tp122454 +a(g122451 +g122453 +S'lived' +p122455 +tp122456 +a(g122453 +g122455 +S'for' +p122457 +tp122458 +a(g122455 +g122457 +S'a' +p122459 +tp122460 +a(g122457 +g122459 +S'time' +p122461 +tp122462 +a(g122459 +g122461 +S'as' +p122463 +tp122464 +a(g122461 +g122463 +S'a' +p122465 +tp122466 +a(g122463 +g122465 +S'hermit,' +p122467 +tp122468 +a(g122465 +g122467 +S'jerome' +p122469 +tp122470 +a(g122467 +g122469 +S'holds' +p122471 +tp122472 +a(g122469 +g122471 +S'the' +p122473 +tp122474 +a(g122471 +g122473 +S'stone' +p122475 +tp122476 +a(g122473 +g122475 +S'he' +p122477 +tp122478 +a(g122475 +g122477 +S'used' +p122479 +tp122480 +a(g122477 +g122479 +S'to' +p122481 +tp122482 +a(g122479 +g122481 +S'beat' +p122483 +tp122484 +a(g122481 +g122483 +S'his' +p122485 +tp122486 +a(g122483 +g122485 +S'chest' +p122487 +tp122488 +a(g122485 +g122487 +S'in' +p122489 +tp122490 +a(g122487 +g122489 +S'penance' +p122491 +tp122492 +a(g122489 +g122491 +S'for' +p122493 +tp122494 +a(g122491 +g122493 +S'the' +p122495 +tp122496 +a(g122493 +g122495 +S'visions' +p122497 +tp122498 +a(g122495 +g122497 +S'of' +p122499 +tp122500 +a(g122497 +g122499 +S'pleasure' +p122501 +tp122502 +a(g122499 +g122501 +S'that' +p122503 +tp122504 +a(g122501 +g122503 +S'interrupted' +p122505 +tp122506 +a(g122503 +g122505 +S'his' +p122507 +tp122508 +a(g122505 +g122507 +S'meditations.' +p122509 +tp122510 +a(g122507 +g122509 +S'he' +p122511 +tp122512 +a(g122509 +g122511 +S'looks' +p122513 +tp122514 +a(g122511 +g122513 +S'to' +p122515 +tp122516 +a(g122513 +g122515 +S'a' +p122517 +tp122518 +a(g122515 +g122517 +S'crucifix' +p122519 +tp122520 +a(g122517 +g122519 +S'growing' +p122521 +tp122522 +a(g122519 +g122521 +S'out' +p122523 +tp122524 +a(g122521 +g122523 +S'of' +p122525 +tp122526 +a(g122523 +g122525 +S'a' +p122527 +tp122528 +a(g122525 +g122527 +S'gnarled' +p122529 +tp122530 +a(g122527 +g122529 +S'and' +p122531 +tp122532 +a(g122529 +g122531 +S'lifeless' +p122533 +tp122534 +a(g122531 +g122533 +S'tree.' +p122535 +tp122536 +a(g122533 +g122535 +S'the' +p122537 +tp122538 +a(g122535 +g122537 +S'imagery' +p122539 +tp122540 +a(g122537 +g122539 +S'suggests' +p122541 +tp122542 +a(g122539 +g122541 +S'both' +p122543 +tp122544 +a(g122541 +g122543 +S'death' +p122545 +tp122546 +a(g122543 +g122545 +S'and' +p122547 +tp122548 +a(g122545 +g122547 +S'salvation,' +p122549 +tp122550 +a(g122547 +g122549 +S'and' +p122551 +tp122552 +a(g122549 +g122551 +S'it' +p122553 +tp122554 +a(g122551 +g122553 +S'would' +p122555 +tp122556 +a(g122553 +g122555 +S'also' +p122557 +tp122558 +a(g122555 +g122557 +S'recall' +p122559 +tp122560 +a(g122557 +g122559 +S'for' +p122561 +tp122562 +a(g122559 +g122561 +S'contemporary' +p122563 +tp122564 +a(g122561 +g122563 +S'viewers' +p122565 +tp122566 +a(g122563 +g122565 +S'medieval' +p122567 +tp122568 +a(g122565 +g122567 +S'legends' +p122569 +tp122570 +a(g122567 +g122569 +S'connecting' +p122571 +tp122572 +a(g122569 +g122571 +S'the' +p122573 +tp122574 +a(g122571 +g122573 +S'wood' +p122575 +tp122576 +a(g122573 +g122575 +S'of' +p122577 +tp122578 +a(g122575 +g122577 +S'the' +p122579 +tp122580 +a(g122577 +g122579 +S'cross' +p122581 +tp122582 +a(g122579 +g122581 +S'to' +p122583 +tp122584 +a(g122581 +g122583 +S'the' +p122585 +tp122586 +a(g122583 +g122585 +S'tree' +p122587 +tp122588 +a(g122585 +g122587 +S'of' +p122589 +tp122590 +a(g122587 +g122589 +S'life' +p122591 +tp122592 +a(g122589 +g122591 +S'and' +p122593 +tp122594 +a(g122591 +g122593 +S'the' +p122595 +tp122596 +a(g122593 +g122595 +S'tree' +p122597 +tp122598 +a(g122595 +g122597 +S'of' +p122599 +tp122600 +a(g122597 +g122599 +S'knowledge.' +p122601 +tp122602 +a(g122599 +g122601 +S'jerome' +p122603 +tp122604 +a(g122601 +g122603 +S'is' +p122605 +tp122606 +a(g122603 +g122605 +S'accompanied' +p122607 +tp122608 +a(g122605 +g122607 +S'by' +p122609 +tp122610 +a(g122607 +g122609 +S'the' +p122611 +tp122612 +a(g122609 +g122611 +S'lion' +p122613 +tp122614 +a(g122611 +g122613 +S'who,' +p122615 +tp122616 +a(g122613 +g122615 +S'according' +p122617 +tp122618 +a(g122615 +g122617 +S'to' +p122619 +tp122620 +a(g122617 +g122619 +S'legend,' +p122621 +tp122622 +a(g122619 +g122621 +S'became' +p122623 +tp122624 +a(g122621 +g122623 +S'his' +p122625 +tp122626 +a(g122623 +g122625 +S'faithful' +p122627 +tp122628 +a(g122625 +g122627 +S'companion' +p122629 +tp122630 +a(g122627 +g122629 +S'after' +p122631 +tp122632 +a(g122629 +g122631 +S'the' +p122633 +tp122634 +a(g122631 +g122633 +S'saint' +p122635 +tp122636 +a(g122633 +g122635 +S'removed' +p122637 +tp122638 +a(g122635 +g122637 +S'a' +p122639 +tp122640 +a(g122637 +g122639 +S'thorn' +p122641 +tp122642 +a(g122639 +g122641 +S'from' +p122643 +tp122644 +a(g122641 +g122643 +S'its' +p122645 +tp122646 +a(g122643 +g122645 +S'paw.' +p122647 +tp122648 +a(g122645 +g122647 +S'in' +p122649 +tp122650 +a(g122647 +g122649 +S'the' +p122651 +tp122652 +a(g122649 +g122651 +S'distance' +p122653 +tp122654 +a(g122651 +g122653 +S'unfolds' +p122655 +tp122656 +a(g122653 +g122655 +S'the' +p122657 +tp122658 +a(g122655 +g122657 +S'story' +p122659 +tp122660 +a(g122657 +g122659 +S'of' +p122661 +tp122662 +a(g122659 +g122661 +S'his' +p122663 +tp122664 +a(g122661 +g122663 +S'false' +p122665 +tp122666 +a(g122663 +g122665 +S'accusation' +p122667 +tp122668 +a(g122665 +g122667 +S'of' +p122669 +tp122670 +a(g122667 +g122669 +S'the' +p122671 +tp122672 +a(g122669 +g122671 +S'lion—that' +p122673 +tp122674 +a(g122671 +g122673 +S'it' +p122675 +tp122676 +a(g122673 +g122675 +S'had' +p122677 +tp122678 +a(g122675 +g122677 +S'devoured' +p122679 +tp122680 +a(g122677 +g122679 +S'a' +p122681 +tp122682 +a(g122679 +g122681 +S'caravan' +p122683 +tp122684 +a(g122681 +g122683 +S'donkey—and' +p122685 +tp122686 +a(g122683 +g122685 +S'their' +p122687 +tp122688 +a(g122685 +g122687 +S'subsequent' +p122689 +tp122690 +a(g122687 +g122689 +S'joyful' +p122691 +tp122692 +a(g122689 +g122691 +S'reunion' +p122693 +tp122694 +a(g122691 +g122693 +S'at' +p122695 +tp122696 +a(g122693 +g122695 +S'the' +p122697 +tp122698 +a(g122695 +g122697 +S'upper' +p122699 +tp122700 +a(g122697 +g122699 +S'right.' +p122701 +tp122702 +a(g122699 +g122701 +S'gossaert' +p122703 +tp122704 +a(g122701 +g122703 +S'was' +p122705 +tp122706 +a(g122703 +g122705 +S'apparently' +p122707 +tp122708 +a(g122705 +g122707 +S'the' +p122709 +tp122710 +a(g122707 +g122709 +S'first' +p122711 +tp122712 +a(g122709 +g122711 +S'netherlandish' +p122713 +tp122714 +a(g122711 +g122713 +S'artist' +p122715 +tp122716 +a(g122713 +g122715 +S'to' +p122717 +tp122718 +a(g122715 +g122717 +S'travel' +p122719 +tp122720 +a(g122717 +g122719 +S'in' +p122721 +tp122722 +a(g122719 +g122721 +S'italy,' +p122723 +tp122724 +a(g122721 +g122723 +S'but' +p122725 +tp122726 +a(g122723 +g122725 +S'it' +p122727 +tp122728 +a(g122725 +g122727 +S'is' +p122729 +tp122730 +a(g122727 +g122729 +S'unclear' +p122731 +tp122732 +a(g122729 +g122731 +S'whether' +p122733 +tp122734 +a(g122731 +g122733 +S'he' +p122735 +tp122736 +a(g122733 +g122735 +S'painted' +p122737 +tp122738 +a(g122735 +g122737 +S'saint' +p122739 +tp122740 +a(g122737 +g122739 +S'jerome' +p122741 +tp122742 +a(g122739 +g122741 +S'before' +p122743 +tp122744 +a(g122741 +g122743 +S'or' +p122745 +tp122746 +a(g122743 +g122745 +S'after' +p122747 +tp122748 +a(g122745 +g122747 +S'his' +p122749 +tp122750 +a(g122747 +g122749 +S'trip.' +p122751 +tp122752 +a(g122749 +g122751 +S"jerome's" +p122753 +tp122754 +a(g122751 +g122753 +S'robust' +p122755 +tp122756 +a(g122753 +g122755 +S'physique' +p122757 +tp122758 +a(g122755 +g122757 +S'and' +p122759 +tp122760 +a(g122757 +g122759 +S'beardlessness,' +p122761 +tp122762 +a(g122759 +g122761 +S'uncommon' +p122763 +tp122764 +a(g122761 +g122763 +S'in' +p122765 +tp122766 +a(g122763 +g122765 +S'medieval' +p122767 +tp122768 +a(g122765 +g122767 +S'representations,' +p122769 +tp122770 +a(g122767 +g122769 +S'could' +p122771 +tp122772 +a(g122769 +g122771 +S'have' +p122773 +tp122774 +a(g122771 +g122773 +S'been' +p122775 +tp122776 +a(g122773 +g122775 +S'inspired' +p122777 +tp122778 +a(g122775 +g122777 +S'by' +p122779 +tp122780 +a(g122777 +g122779 +S'ancient' +p122781 +tp122782 +a(g122779 +g122781 +S'or' +p122783 +tp122784 +a(g122781 +g122783 +S'italian' +p122785 +tp122786 +a(g122783 +g122785 +S'renaissance' +p122787 +tp122788 +a(g122785 +g122787 +S'works,' +p122789 +tp122790 +a(g122787 +g122789 +S'but' +p122791 +tp122792 +a(g122789 +g122791 +S'the' +p122793 +tp122794 +a(g122791 +g122793 +S'darkly' +p122795 +tp122796 +a(g122793 +g122795 +S'threatening' +p122797 +tp122798 +a(g122795 +g122797 +S'landscape' +p122799 +tp122800 +a(g122797 +g122799 +S'and' +p122801 +tp122802 +a(g122799 +g122801 +S'the' +p122803 +tp122804 +a(g122801 +g122803 +S"lion's" +p122805 +tp122806 +a(g122803 +g122805 +S'unnaturally' +p122807 +tp122808 +a(g122805 +g122807 +S'flat' +p122809 +tp122810 +a(g122807 +g122809 +S'face' +p122811 +tp122812 +a(g122809 +g122811 +S'seem' +p122813 +tp122814 +a(g122811 +g122813 +S'more' +p122815 +tp122816 +a(g122813 +g122815 +S'at' +p122817 +tp122818 +a(g122815 +g122817 +S'home' +p122819 +tp122820 +a(g122817 +g122819 +S'in' +p122821 +tp122822 +a(g122819 +g122821 +S'northern' +p122823 +tp122824 +a(g122821 +g122823 +S'art.' +p122825 +tp122826 +a(g122823 +g122825 +S'christ' +p122827 +tp122828 +a(g122825 +g122827 +S'is' +p122829 +tp122830 +a(g122827 +g122829 +S'shown' +p122831 +tp122832 +a(g122829 +g122831 +S'here' +p122833 +tp122834 +a(g122831 +g122833 +S'at' +p122835 +tp122836 +a(g122833 +g122835 +S'the' +p122837 +tp122838 +a(g122835 +g122837 +S'scene' +p122839 +tp122840 +a(g122837 +g122839 +S'of' +p122841 +tp122842 +a(g122839 +g122841 +S'his' +p122843 +tp122844 +a(g122841 +g122843 +S'first' +p122845 +tp122846 +a(g122843 +g122845 +S'miracle—the' +p122847 +tp122848 +a(g122845 +g122847 +S'transformation' +p122849 +tp122850 +a(g122847 +g122849 +S'of' +p122851 +tp122852 +a(g122849 +g122851 +S'water' +p122853 +tp122854 +a(g122851 +g122853 +S'into' +p122855 +tp122856 +a(g122853 +g122855 +S'wine.' +p122857 +tp122858 +a(g122855 +g122857 +S'he' +p122859 +tp122860 +a(g122857 +g122859 +S'stands' +p122861 +tp122862 +a(g122859 +g122861 +S'at' +p122863 +tp122864 +a(g122861 +g122863 +S'the' +p122865 +tp122866 +a(g122863 +g122865 +S'banquet' +p122867 +tp122868 +a(g122865 +g122867 +S'table' +p122869 +tp122870 +a(g122867 +g122869 +S'of' +p122871 +tp122872 +a(g122869 +g122871 +S'a' +p122873 +tp122874 +a(g122871 +g122873 +S'wedding,' +p122875 +tp122876 +a(g122873 +g122875 +S'his' +p122877 +tp122878 +a(g122875 +g122877 +S'right' +p122879 +tp122880 +a(g122877 +g122879 +S'hand' +p122881 +tp122882 +a(g122879 +g122881 +S'raised' +p122883 +tp122884 +a(g122881 +g122883 +S'in' +p122885 +tp122886 +a(g122883 +g122885 +S'a' +p122887 +tp122888 +a(g122885 +g122887 +S'gesture' +p122889 +tp122890 +a(g122887 +g122889 +S'of' +p122891 +tp122892 +a(g122889 +g122891 +S'benediction,' +p122893 +tp122894 +a(g122891 +g122893 +S'while' +p122895 +tp122896 +a(g122893 +g122895 +S'a' +p122897 +tp122898 +a(g122895 +g122897 +S'servant,' +p122899 +tp122900 +a(g122897 +g122899 +S'pointing' +p122901 +tp122902 +a(g122899 +g122901 +S'to' +p122903 +tp122904 +a(g122901 +g122903 +S'the' +p122905 +tp122906 +a(g122903 +g122905 +S'clay' +p122907 +tp122908 +a(g122905 +g122907 +S'jars' +p122909 +tp122910 +a(g122907 +g122909 +S'on' +p122911 +tp122912 +a(g122909 +g122911 +S'the' +p122913 +tp122914 +a(g122911 +g122913 +S'floor' +p122915 +tp122916 +a(g122913 +g122915 +S'as' +p122917 +tp122918 +a(g122915 +g122917 +S'if' +p122919 +tp122920 +a(g122917 +g122919 +S'to' +p122921 +tp122922 +a(g122919 +g122921 +S'explain' +p122923 +tp122924 +a(g122921 +g122923 +S'what' +p122925 +tp122926 +a(g122923 +g122925 +S'has' +p122927 +tp122928 +a(g122925 +g122927 +S'just' +p122929 +tp122930 +a(g122927 +g122929 +S'taken' +p122931 +tp122932 +a(g122929 +g122931 +S'place,' +p122933 +tp122934 +a(g122931 +g122933 +S'offers' +p122935 +tp122936 +a(g122933 +g122935 +S'the' +p122937 +tp122938 +a(g122935 +g122937 +S'bridal' +p122939 +tp122940 +a(g122937 +g122939 +S'pair' +p122941 +tp122942 +a(g122939 +g122941 +S'a' +p122943 +tp122944 +a(g122941 +g122943 +S'goblet' +p122945 +tp122946 +a(g122943 +g122945 +S'of' +p122947 +tp122948 +a(g122945 +g122947 +S'the' +p122949 +tp122950 +a(g122947 +g122949 +S'transformed' +p122951 +tp122952 +a(g122949 +g122951 +S'liquid.' +p122953 +tp122954 +a(g122951 +g122953 +S'that' +p122955 +tp122956 +a(g122953 +g122955 +S'the' +p122957 +tp122958 +a(g122955 +g122957 +S'artist' +p122959 +tp122960 +a(g122957 +g122959 +S'has' +p122961 +tp122962 +a(g122959 +g122961 +S'absorbed' +p122963 +tp122964 +a(g122961 +g122963 +S'the' +p122965 +tp122966 +a(g122963 +g122965 +S'traditions' +p122967 +tp122968 +a(g122965 +g122967 +S'of' +p122969 +tp122970 +a(g122967 +g122969 +S'15th–century' +p122971 +tp122972 +a(g122969 +g122971 +S'flemish' +p122973 +tp122974 +a(g122971 +g122973 +S'painting' +p122975 +tp122976 +a(g122973 +g122975 +S'is' +p122977 +tp122978 +a(g122975 +g122977 +S'evident' +p122979 +tp122980 +a(g122977 +g122979 +S'in' +p122981 +tp122982 +a(g122979 +g122981 +S'his' +p122983 +tp122984 +a(g122981 +g122983 +S'mastery' +p122985 +tp122986 +a(g122983 +g122985 +S'of' +p122987 +tp122988 +a(g122985 +g122987 +S'the' +p122989 +tp122990 +a(g122987 +g122989 +S'oil' +p122991 +tp122992 +a(g122989 +g122991 +S'technique' +p122993 +tp122994 +a(g122991 +g122993 +S'and' +p122995 +tp122996 +a(g122993 +g122995 +S'his' +p122997 +tp122998 +a(g122995 +g122997 +S'meticulous' +p122999 +tp123000 +a(g122997 +g122999 +S'rendering' +p123001 +tp123002 +a(g122999 +g123001 +S'of' +p123003 +tp123004 +a(g123001 +g123003 +S'texture' +p123005 +tp123006 +a(g123003 +g123005 +S'and' +p123007 +tp123008 +a(g123005 +g123007 +S'minute' +p123009 +tp123010 +a(g123007 +g123009 +S'detail.' +p123011 +tp123012 +a(g123009 +g123011 +S'combined' +p123013 +tp123014 +a(g123011 +g123013 +S'with' +p123015 +tp123016 +a(g123013 +g123015 +S'these' +p123017 +tp123018 +a(g123015 +g123017 +S'elements' +p123019 +tp123020 +a(g123017 +g123019 +S'are' +p123021 +tp123022 +a(g123019 +g123021 +S'purely' +p123023 +tp123024 +a(g123021 +g123023 +S'spanish' +p123025 +tp123026 +a(g123023 +g123025 +S'ones,' +p123027 +tp123028 +a(g123025 +g123027 +S'such' +p123029 +tp123030 +a(g123027 +g123029 +S'as' +p123031 +tp123032 +a(g123029 +g123031 +S'the' +p123033 +tp123034 +a(g123031 +g123033 +S'solemn' +p123035 +tp123036 +a(g123033 +g123035 +S'faces' +p123037 +tp123038 +a(g123035 +g123037 +S'with' +p123039 +tp123040 +a(g123037 +g123039 +S'downturned' +p123041 +tp123042 +a(g123039 +g123041 +S'mouths' +p123043 +tp123044 +a(g123041 +g123043 +S'and' +p123045 +tp123046 +a(g123043 +g123045 +S'the' +p123047 +tp123048 +a(g123045 +g123047 +S'recognizably' +p123049 +tp123050 +a(g123047 +g123049 +S'spanish' +p123051 +tp123052 +a(g123049 +g123051 +S'costumes.' +p123053 +tp123054 +a(g123051 +g123053 +S'the' +p123055 +tp123056 +a(g123053 +g123055 +S'unidentified' +p123057 +tp123058 +a(g123055 +g123057 +S"artist's" +p123059 +tp123060 +a(g123057 +g123059 +S'name' +p123061 +tp123062 +a(g123059 +g123061 +S'is' +p123063 +tp123064 +a(g123061 +g123063 +S'derived' +p123065 +tp123066 +a(g123063 +g123065 +S'from' +p123067 +tp123068 +a(g123065 +g123067 +S'his' +p123069 +tp123070 +a(g123067 +g123069 +S'principal' +p123071 +tp123072 +a(g123069 +g123071 +S'work,' +p123073 +tp123074 +a(g123071 +g123073 +S'ferdinand' +p123075 +tp123076 +a(g123073 +g123075 +S'and' +p123077 +tp123078 +a(g123075 +g123077 +S'isabel' +p123079 +tp123080 +a(g123077 +g123079 +S'became' +p123081 +tp123082 +a(g123079 +g123081 +S'known' +p123083 +tp123084 +a(g123081 +g123083 +S'as' +p123085 +tp123086 +a(g123083 +g123085 +S'the' +p123087 +tp123088 +a(g123085 +g123087 +S'"catholic' +p123089 +tp123090 +a(g123087 +g123089 +S'kings"' +p123091 +tp123092 +a(g123089 +g123091 +S'because' +p123093 +tp123094 +a(g123091 +g123093 +S'of' +p123095 +tp123096 +a(g123093 +g123095 +S'their' +p123097 +tp123098 +a(g123095 +g123097 +S'religious' +p123099 +tp123100 +a(g123097 +g123099 +S'zeal,' +p123101 +tp123102 +a(g123099 +g123101 +S'offering' +p123103 +tp123104 +a(g123101 +g123103 +S'the' +p123105 +tp123106 +a(g123103 +g123105 +S'jews' +p123107 +tp123108 +a(g123105 +g123107 +S'and' +p123109 +tp123110 +a(g123107 +g123109 +S'moors' +p123111 +tp123112 +a(g123109 +g123111 +S'the' +p123113 +tp123114 +a(g123111 +g123113 +S'choice' +p123115 +tp123116 +a(g123113 +g123115 +S'of' +p123117 +tp123118 +a(g123115 +g123117 +S'converting' +p123119 +tp123120 +a(g123117 +g123119 +S'to' +p123121 +tp123122 +a(g123119 +g123121 +S'catholicism' +p123123 +tp123124 +a(g123121 +g123123 +S'or' +p123125 +tp123126 +a(g123123 +g123125 +S'being' +p123127 +tp123128 +a(g123125 +g123127 +S'expelled' +p123129 +tp123130 +a(g123127 +g123129 +S'from' +p123131 +tp123132 +a(g123129 +g123131 +S'spain.' +p123133 +tp123134 +a(g123131 +g123133 +S'two' +p123135 +tp123136 +a(g123133 +g123135 +S'paintings' +p123137 +tp123138 +a(g123135 +g123137 +S'in' +p123139 +tp123140 +a(g123137 +g123139 +S'the' +p123141 +tp123142 +a(g123139 +g123141 +S'national' +p123143 +tp123144 +a(g123141 +g123143 +S'gallery,' +p123145 +tp123146 +a(g123143 +g123145 +S'which' +p123147 +tp123148 +a(g123145 +g123147 +S'depict' +p123149 +tp123150 +a(g123147 +g123149 +S'coats' +p123151 +tp123152 +a(g123149 +g123151 +S'of' +p123153 +tp123154 +a(g123151 +g123153 +S'arms' +p123155 +tp123156 +a(g123153 +g123155 +S'of' +p123157 +tp123158 +a(g123155 +g123157 +S'ferdinand' +p123159 +tp123160 +a(g123157 +g123159 +S'and' +p123161 +tp123162 +a(g123159 +g123161 +S'isabel,' +p123163 +tp123164 +a(g123161 +g123163 +S'must' +p123165 +tp123166 +a(g123163 +g123165 +S'have' +p123167 +tp123168 +a(g123165 +g123167 +S'been' +p123169 +tp123170 +a(g123167 +g123169 +S'commissioned' +p123171 +tp123172 +a(g123169 +g123171 +S'by' +p123173 +tp123174 +a(g123171 +g123173 +S'or' +p123175 +tp123176 +a(g123173 +g123175 +S'for' +p123177 +tp123178 +a(g123175 +g123177 +S'the' +p123179 +tp123180 +a(g123177 +g123179 +S'monarchs.' +p123181 +tp123182 +a(g123179 +g123181 +S'along' +p123183 +tp123184 +a(g123181 +g123183 +S'with' +p123185 +tp123186 +a(g123183 +g123185 +S'six' +p123187 +tp123188 +a(g123185 +g123187 +S'pictures' +p123189 +tp123190 +a(g123187 +g123189 +S'now' +p123191 +tp123192 +a(g123189 +g123191 +S'in' +p123193 +tp123194 +a(g123191 +g123193 +S'other' +p123195 +tp123196 +a(g123193 +g123195 +S'museums,' +p123197 +tp123198 +a(g123195 +g123197 +S'they' +p123199 +tp123200 +a(g123197 +g123199 +S'formed' +p123201 +tp123202 +a(g123199 +g123201 +S'parts' +p123203 +tp123204 +a(g123201 +g123203 +S'of' +p123205 +tp123206 +a(g123203 +g123205 +S'an' +p123207 +tp123208 +a(g123205 +g123207 +S'altarpiece' +p123209 +tp123210 +a(g123207 +g123209 +S'probably' +p123211 +tp123212 +a(g123209 +g123211 +S'painted' +p123213 +tp123214 +a(g123211 +g123213 +S'for' +p123215 +tp123216 +a(g123213 +g123215 +S'a' +p123217 +tp123218 +a(g123215 +g123217 +S'church' +p123219 +tp123220 +a(g123217 +g123219 +S'or' +p123221 +tp123222 +a(g123219 +g123221 +S'convent' +p123223 +tp123224 +a(g123221 +g123223 +S'in' +p123225 +tp123226 +a(g123223 +g123225 +S'valladolid' +p123227 +tp123228 +a(g123225 +g123227 +S'in' +p123229 +tp123230 +a(g123227 +g123229 +S'north' +p123231 +tp123232 +a(g123229 +g123231 +S'central' +p123233 +tp123234 +a(g123231 +g123233 +S'spain.' +p123235 +tp123236 +a(g123233 +g123235 +S'the' +p123237 +tp123238 +a(g123235 +g123237 +S'high' +p123239 +tp123240 +a(g123237 +g123239 +S'quality' +p123241 +tp123242 +a(g123239 +g123241 +S'of' +p123243 +tp123244 +a(g123241 +g123243 +S'the' +p123245 +tp123246 +a(g123243 +g123245 +S'altarpiece' +p123247 +tp123248 +a(g123245 +g123247 +S'and' +p123249 +tp123250 +a(g123247 +g123249 +S'its' +p123251 +tp123252 +a(g123249 +g123251 +S'probable' +p123253 +tp123254 +a(g123251 +g123253 +S'royal' +p123255 +tp123256 +a(g123253 +g123255 +S'patronage' +p123257 +tp123258 +a(g123255 +g123257 +S'have' +p123259 +tp123260 +a(g123257 +g123259 +S'given' +p123261 +tp123262 +a(g123259 +g123261 +S'the' +p123263 +tp123264 +a(g123261 +g123263 +S'painter' +p123265 +tp123266 +a(g123263 +g123265 +S'the' +p123267 +tp123268 +a(g123265 +g123267 +S'name' +p123269 +tp123270 +a(g123267 +g123269 +S'master' +p123271 +tp123272 +a(g123269 +g123271 +S'of' +p123273 +tp123274 +a(g123271 +g123273 +S'the' +p123275 +tp123276 +a(g123273 +g123275 +S'catholic' +p123277 +tp123278 +a(g123275 +g123277 +S'kings.' +p123279 +tp123280 +a(g123277 +g123279 +S'the' +p123281 +tp123282 +a(g123279 +g123281 +S'last' +p123283 +tp123284 +a(g123281 +g123283 +S'incident' +p123285 +tp123286 +a(g123283 +g123285 +S'of' +p123287 +tp123288 +a(g123285 +g123287 +S"jesus'" +p123289 +tp123290 +a(g123287 +g123289 +S'childhood' +p123291 +tp123292 +a(g123289 +g123291 +S'recorded' +p123293 +tp123294 +a(g123291 +g123293 +S'in' +p123295 +tp123296 +a(g123293 +g123295 +S'the' +p123297 +tp123298 +a(g123295 +g123297 +S'bible' +p123299 +tp123300 +a(g123297 +g123299 +S'derives' +p123301 +tp123302 +a(g123299 +g123301 +S'from' +p123303 +tp123304 +a(g123301 +g123303 +S'luke' +p123305 +tp123306 +a(g123303 +g123305 +S'(2:41-52).' +p123307 +tp123308 +a(g123305 +g123307 +S'leaving' +p123309 +tp123310 +a(g123307 +g123309 +S'jerusalem' +p123311 +tp123312 +a(g123309 +g123311 +S'after' +p123313 +tp123314 +a(g123311 +g123313 +S'celebrating' +p123315 +tp123316 +a(g123313 +g123315 +S'the' +p123317 +tp123318 +a(g123315 +g123317 +S'passover' +p123319 +tp123320 +a(g123317 +g123319 +S'feast,' +p123321 +tp123322 +a(g123319 +g123321 +S'joseph' +p123323 +tp123324 +a(g123321 +g123323 +S'and' +p123325 +tp123326 +a(g123323 +g123325 +S'mary' +p123327 +tp123328 +a(g123325 +g123327 +S'discovered' +p123329 +tp123330 +a(g123327 +g123329 +S'that' +p123331 +tp123332 +a(g123329 +g123331 +S'jesus' +p123333 +tp123334 +a(g123331 +g123333 +S'was' +p123335 +tp123336 +a(g123333 +g123335 +S'not' +p123337 +tp123338 +a(g123335 +g123337 +S'in' +p123339 +tp123340 +a(g123337 +g123339 +S'the' +p123341 +tp123342 +a(g123339 +g123341 +S'caravan.' +p123343 +tp123344 +a(g123341 +g123343 +S'returning' +p123345 +tp123346 +a(g123343 +g123345 +S'and' +p123347 +tp123348 +a(g123345 +g123347 +S'searching' +p123349 +tp123350 +a(g123347 +g123349 +S'for' +p123351 +tp123352 +a(g123349 +g123351 +S'three' +p123353 +tp123354 +a(g123351 +g123353 +S'days,' +p123355 +tp123356 +a(g123353 +g123355 +S'they' +p123357 +tp123358 +a(g123355 +g123357 +S'found' +p123359 +tp123360 +a(g123357 +g123359 +S'the' +p123361 +tp123362 +a(g123359 +g123361 +S'boy' +p123363 +tp123364 +a(g123361 +g123363 +S'in' +p123365 +tp123366 +a(g123363 +g123365 +S'scholarly' +p123367 +tp123368 +a(g123365 +g123367 +S'dispute' +p123369 +tp123370 +a(g123367 +g123369 +S'in' +p123371 +tp123372 +a(g123369 +g123371 +S'the' +p123373 +tp123374 +a(g123371 +g123373 +S'temple.' +p123375 +tp123376 +a(g123373 +g123375 +S'deep' +p123377 +tp123378 +a(g123375 +g123377 +S'space' +p123379 +tp123380 +a(g123377 +g123379 +S'is' +p123381 +tp123382 +a(g123379 +g123381 +S'skillfully' +p123383 +tp123384 +a(g123381 +g123383 +S'indicated' +p123385 +tp123386 +a(g123383 +g123385 +S'by' +p123387 +tp123388 +a(g123385 +g123387 +S'contrasting' +p123389 +tp123390 +a(g123387 +g123389 +S'the' +p123391 +tp123392 +a(g123389 +g123391 +S'large' +p123393 +tp123394 +a(g123391 +g123393 +S'scale' +p123395 +tp123396 +a(g123393 +g123395 +S'of' +p123397 +tp123398 +a(g123395 +g123397 +S'the' +p123399 +tp123400 +a(g123397 +g123399 +S'foreground' +p123401 +tp123402 +a(g123399 +g123401 +S'figures' +p123403 +tp123404 +a(g123401 +g123403 +S'with' +p123405 +tp123406 +a(g123403 +g123405 +S'the' +p123407 +tp123408 +a(g123405 +g123407 +S'distant' +p123409 +tp123410 +a(g123407 +g123409 +S'view' +p123411 +tp123412 +a(g123409 +g123411 +S'of' +p123413 +tp123414 +a(g123411 +g123413 +S'a' +p123415 +tp123416 +a(g123413 +g123415 +S'town' +p123417 +tp123418 +a(g123415 +g123417 +S'glimpsed' +p123419 +tp123420 +a(g123417 +g123419 +S'through' +p123421 +tp123422 +a(g123419 +g123421 +S'the' +p123423 +tp123424 +a(g123421 +g123423 +S'door' +p123425 +tp123426 +a(g123423 +g123425 +S'behind' +p123427 +tp123428 +a(g123425 +g123427 +S'joseph' +p123429 +tp123430 +a(g123427 +g123429 +S'and' +p123431 +tp123432 +a(g123429 +g123431 +S'mary.' +p123433 +tp123434 +a(g123431 +g123433 +S'the' +p123435 +tp123436 +a(g123433 +g123435 +S'stained-glass' +p123437 +tp123438 +a(g123435 +g123437 +S'windows' +p123439 +tp123440 +a(g123437 +g123439 +S'bear' +p123441 +tp123442 +a(g123439 +g123441 +S'the' +p123443 +tp123444 +a(g123441 +g123443 +S'heraldry' +p123445 +tp123446 +a(g123443 +g123445 +S'of' +p123447 +tp123448 +a(g123445 +g123447 +S'ferdinard' +p123449 +tp123450 +a(g123447 +g123449 +S'and' +p123451 +tp123452 +a(g123449 +g123451 +S'isabel' +p123453 +tp123454 +a(g123451 +g123453 +S'as' +p123455 +tp123456 +a(g123453 +g123455 +S'well' +p123457 +tp123458 +a(g123455 +g123457 +S'as' +p123459 +tp123460 +a(g123457 +g123459 +S'of' +p123461 +tp123462 +a(g123459 +g123461 +S'maximilian' +p123463 +tp123464 +a(g123461 +g123463 +S'i' +p123465 +tp123466 +a(g123463 +g123465 +S'of' +p123467 +tp123468 +a(g123465 +g123467 +S'the' +p123469 +tp123470 +a(g123467 +g123469 +S'holy' +p123471 +tp123472 +a(g123469 +g123471 +S'roman' +p123473 +tp123474 +a(g123471 +g123473 +S'empire.' +p123475 +tp123476 +a(g123473 +g123475 +S'the' +p123477 +tp123478 +a(g123475 +g123477 +S'spanish' +p123479 +tp123480 +a(g123477 +g123479 +S"monarchs'" +p123481 +tp123482 +a(g123479 +g123481 +S'daughter' +p123483 +tp123484 +a(g123481 +g123483 +S'and' +p123485 +tp123486 +a(g123483 +g123485 +S'son' +p123487 +tp123488 +a(g123485 +g123487 +S'were' +p123489 +tp123490 +a(g123487 +g123489 +S'married' +p123491 +tp123492 +a(g123489 +g123491 +S'to' +p123493 +tp123494 +a(g123491 +g123493 +S'the' +p123495 +tp123496 +a(g123493 +g123495 +S'son' +p123497 +tp123498 +a(g123495 +g123497 +S'and' +p123499 +tp123500 +a(g123497 +g123499 +S'daughter' +p123501 +tp123502 +a(g123499 +g123501 +S'respectively' +p123503 +tp123504 +a(g123501 +g123503 +S'of' +p123505 +tp123506 +a(g123503 +g123505 +S'the' +p123507 +tp123508 +a(g123505 +g123507 +S'holy' +p123509 +tp123510 +a(g123507 +g123509 +S'roman' +p123511 +tp123512 +a(g123509 +g123511 +S'emperor' +p123513 +tp123514 +a(g123511 +g123513 +S'in' +p123515 +tp123516 +a(g123513 +g123515 +S'1496' +p123517 +tp123518 +a(g123515 +g123517 +S'and' +p123519 +tp123520 +a(g123517 +g123519 +S'1497.' +p123521 +tp123522 +a(g123519 +g123521 +S'thus' +p123523 +tp123524 +a(g123521 +g123523 +S'the' +p123525 +tp123526 +a(g123523 +g123525 +S'altarpiece' +p123527 +tp123528 +a(g123525 +g123527 +S'may' +p123529 +tp123530 +a(g123527 +g123529 +S'have' +p123531 +tp123532 +a(g123529 +g123531 +S'commemorated' +p123533 +tp123534 +a(g123531 +g123533 +S'these' +p123535 +tp123536 +a(g123533 +g123535 +S'dynastic' +p123537 +tp123538 +a(g123535 +g123537 +S'weddings.' +p123539 +tp123540 +a(g123537 +g123539 +S'this' +p123541 +tp123542 +a(g123539 +g123541 +S'two-sided' +p123543 +tp123544 +a(g123541 +g123543 +S'panel' +p123545 +tp123546 +a(g123543 +g123545 +S'was' +p123547 +tp123548 +a(g123545 +g123547 +S'once' +p123549 +tp123550 +a(g123547 +g123549 +S'the' +p123551 +tp123552 +a(g123549 +g123551 +S'right' +p123553 +tp123554 +a(g123551 +g123553 +S'wing' +p123555 +tp123556 +a(g123553 +g123555 +S'of' +p123557 +tp123558 +a(g123555 +g123557 +S'a' +p123559 +tp123560 +a(g123557 +g123559 +S'diptych.' +p123561 +tp123562 +a(g123559 +g123561 +S'on' +p123563 +tp123564 +a(g123561 +g123563 +S'the' +p123565 +tp123566 +a(g123563 +g123565 +S'front' +p123567 +tp123568 +a(g123565 +g123567 +S'we' +p123569 +tp123570 +a(g123567 +g123569 +S'see' +p123571 +tp123572 +a(g123569 +g123571 +S'veronica,' +p123573 +tp123574 +a(g123571 +g123573 +S'among' +p123575 +tp123576 +a(g123573 +g123575 +S'the' +p123577 +tp123578 +a(g123575 +g123577 +S'most' +p123579 +tp123580 +a(g123577 +g123579 +S'venerated' +p123581 +tp123582 +a(g123579 +g123581 +S'saints' +p123583 +tp123584 +a(g123581 +g123583 +S'of' +p123585 +tp123586 +a(g123583 +g123585 +S'the' +p123587 +tp123588 +a(g123585 +g123587 +S'middle' +p123589 +tp123590 +a(g123587 +g123589 +S'ages' +p123591 +tp123592 +a(g123589 +g123591 +S'and' +p123593 +tp123594 +a(g123591 +g123593 +S'renaissance.' +p123595 +tp123596 +a(g123593 +g123595 +S'several' +p123597 +tp123598 +a(g123595 +g123597 +S'legends' +p123599 +tp123600 +a(g123597 +g123599 +S'about' +p123601 +tp123602 +a(g123599 +g123601 +S'her' +p123603 +tp123604 +a(g123601 +g123603 +S'were' +p123605 +tp123606 +a(g123603 +g123605 +S'conflated' +p123607 +tp123608 +a(g123605 +g123607 +S'and' +p123609 +tp123610 +a(g123607 +g123609 +S'she' +p123611 +tp123612 +a(g123609 +g123611 +S'was' +p123613 +tp123614 +a(g123611 +g123613 +S'identified' +p123615 +tp123616 +a(g123613 +g123615 +S'with' +p123617 +tp123618 +a(g123615 +g123617 +S'different' +p123619 +tp123620 +a(g123617 +g123619 +S'people,' +p123621 +tp123622 +a(g123619 +g123621 +S'including' +p123623 +tp123624 +a(g123621 +g123623 +S'the' +p123625 +tp123626 +a(g123623 +g123625 +S'compassionate' +p123627 +tp123628 +a(g123625 +g123627 +S'woman' +p123629 +tp123630 +a(g123627 +g123629 +S'who' +p123631 +tp123632 +a(g123629 +g123631 +S'gave' +p123633 +tp123634 +a(g123631 +g123633 +S'jesus' +p123635 +tp123636 +a(g123633 +g123635 +S'a' +p123637 +tp123638 +a(g123635 +g123637 +S'cloth' +p123639 +tp123640 +a(g123637 +g123639 +S'as' +p123641 +tp123642 +a(g123639 +g123641 +S'he' +p123643 +tp123644 +a(g123641 +g123643 +S'struggled' +p123645 +tp123646 +a(g123643 +g123645 +S'on' +p123647 +tp123648 +a(g123645 +g123647 +S'the' +p123649 +tp123650 +a(g123647 +g123649 +S'way' +p123651 +tp123652 +a(g123649 +g123651 +S'to' +p123653 +tp123654 +a(g123651 +g123653 +S'calvary;' +p123655 +tp123656 +a(g123653 +g123655 +S'when' +p123657 +tp123658 +a(g123655 +g123657 +S'he' +p123659 +tp123660 +a(g123657 +g123659 +S'wiped' +p123661 +tp123662 +a(g123659 +g123661 +S'his' +p123663 +tp123664 +a(g123661 +g123663 +S'brow' +p123665 +tp123666 +a(g123663 +g123665 +S'with' +p123667 +tp123668 +a(g123665 +g123667 +S'the' +p123669 +tp123670 +a(g123667 +g123669 +S'cloth,' +p123671 +tp123672 +a(g123669 +g123671 +S'it' +p123673 +tp123674 +a(g123671 +g123673 +S'was' +p123675 +tp123676 +a(g123673 +g123675 +S'miraculously' +p123677 +tp123678 +a(g123675 +g123677 +S'imprinted' +p123679 +tp123680 +a(g123677 +g123679 +S'with' +p123681 +tp123682 +a(g123679 +g123681 +S'his' +p123683 +tp123684 +a(g123681 +g123683 +S'face.' +p123685 +tp123686 +a(g123683 +g123685 +S'by' +p123687 +tp123688 +a(g123685 +g123687 +S'the' +p123689 +tp123690 +a(g123687 +g123689 +S'12th' +p123691 +tp123692 +a(g123689 +g123691 +S'century,' +p123693 +tp123694 +a(g123691 +g123693 +S'a' +p123695 +tp123696 +a(g123693 +g123695 +S'cloth' +p123697 +tp123698 +a(g123695 +g123697 +S'believed' +p123699 +tp123700 +a(g123697 +g123699 +S'to' +p123701 +tp123702 +a(g123699 +g123701 +S'be' +p123703 +tp123704 +a(g123701 +g123703 +S"veronica's" +p123705 +tp123706 +a(g123703 +g123705 +S'veil' +p123707 +tp123708 +a(g123705 +g123707 +S'had' +p123709 +tp123710 +a(g123707 +g123709 +S'entered' +p123711 +tp123712 +a(g123709 +g123711 +S'the' +p123713 +tp123714 +a(g123711 +g123713 +S'vatican.' +p123715 +tp123716 +a(g123713 +g123715 +S'indulgences' +p123717 +tp123718 +a(g123715 +g123717 +S'(reducing' +p123719 +tp123720 +a(g123717 +g123719 +S'time' +p123721 +tp123722 +a(g123719 +g123721 +S'in' +p123723 +tp123724 +a(g123721 +g123723 +S'purgatory' +p123725 +tp123726 +a(g123723 +g123725 +S'and' +p123727 +tp123728 +a(g123725 +g123727 +S'even' +p123729 +tp123730 +a(g123727 +g123729 +S'remitting' +p123731 +tp123732 +a(g123729 +g123731 +S'sin)' +p123733 +tp123734 +a(g123731 +g123733 +S'were' +p123735 +tp123736 +a(g123733 +g123735 +S'granted' +p123737 +tp123738 +a(g123735 +g123737 +S'for' +p123739 +tp123740 +a(g123737 +g123739 +S'reciting' +p123741 +tp123742 +a(g123739 +g123741 +S'prayers' +p123743 +tp123744 +a(g123741 +g123743 +S'either' +p123745 +tp123746 +a(g123743 +g123745 +S'before' +p123747 +tp123748 +a(g123745 +g123747 +S'the' +p123749 +tp123750 +a(g123747 +g123749 +S'relic' +p123751 +tp123752 +a(g123749 +g123751 +S'or' +p123753 +tp123754 +a(g123751 +g123753 +S'before' +p123755 +tp123756 +a(g123753 +g123755 +S'images' +p123757 +tp123758 +a(g123755 +g123757 +S'of' +p123759 +tp123760 +a(g123757 +g123759 +S'it.' +p123761 +tp123762 +a(g123759 +g123761 +S'veronica' +p123763 +tp123764 +a(g123761 +g123763 +S'was' +p123765 +tp123766 +a(g123763 +g123765 +S'also' +p123767 +tp123768 +a(g123765 +g123767 +S'invoked' +p123769 +tp123770 +a(g123767 +g123769 +S'against' +p123771 +tp123772 +a(g123769 +g123771 +S'the' +p123773 +tp123774 +a(g123771 +g123773 +S'danger' +p123775 +tp123776 +a(g123773 +g123775 +S'of' +p123777 +tp123778 +a(g123775 +g123777 +S'sudden' +p123779 +tp123780 +a(g123777 +g123779 +S'death' +p123781 +tp123782 +a(g123779 +g123781 +S'before' +p123783 +tp123784 +a(g123781 +g123783 +S'confession.' +p123785 +tp123786 +a(g123783 +g123785 +S'on' +p123787 +tp123788 +a(g123785 +g123787 +S'the' +p123789 +tp123790 +a(g123787 +g123789 +S'memling' +p123791 +tp123792 +a(g123789 +g123791 +S'worked' +p123793 +tp123794 +a(g123791 +g123793 +S'primarily' +p123795 +tp123796 +a(g123793 +g123795 +S'for' +p123797 +tp123798 +a(g123795 +g123797 +S'the' +p123799 +tp123800 +a(g123797 +g123799 +S'middle' +p123801 +tp123802 +a(g123799 +g123801 +S'class' +p123803 +tp123804 +a(g123801 +g123803 +S'and' +p123805 +tp123806 +a(g123803 +g123805 +S'the' +p123807 +tp123808 +a(g123805 +g123807 +S'resident' +p123809 +tp123810 +a(g123807 +g123809 +S'italian' +p123811 +tp123812 +a(g123809 +g123811 +S'community' +p123813 +tp123814 +a(g123811 +g123813 +S'in' +p123815 +tp123816 +a(g123813 +g123815 +S'bruges.' +p123817 +tp123818 +a(g123815 +g123817 +S'he' +p123819 +tp123820 +a(g123817 +g123819 +S'apparently' +p123821 +tp123822 +a(g123819 +g123821 +S'studied' +p123823 +tp123824 +a(g123821 +g123823 +S'with' +p123825 +tp123826 +a(g123823 +g123825 +S'the' +p123827 +tp123828 +a(g123825 +g123827 +S'panels,' +p123829 +tp123830 +a(g123827 +g123829 +S'the' +p123831 +tp123832 +a(g123829 +g123831 +S'marriage' +p123833 +tp123834 +a(g123831 +g123833 +S'of' +p123835 +tp123836 +a(g123833 +g123835 +S'the' +p123837 +tp123838 +a(g123835 +g123837 +S'virgin' +p123839 +tp123840 +a(g123837 +g123839 +S'and' +p123841 +tp123842 +a(g123839 +g123841 +S'joseph' +p123843 +tp123844 +a(g123841 +g123843 +S'is' +p123845 +tp123846 +a(g123843 +g123845 +S'a' +p123847 +tp123848 +a(g123845 +g123847 +S'story' +p123849 +tp123850 +a(g123847 +g123849 +S'not' +p123851 +tp123852 +a(g123849 +g123851 +S'found' +p123853 +tp123854 +a(g123851 +g123853 +S'in' +p123855 +tp123856 +a(g123853 +g123855 +S'the' +p123857 +tp123858 +a(g123855 +g123857 +S'bible' +p123859 +tp123860 +a(g123857 +g123859 +S'but' +p123861 +tp123862 +a(g123859 +g123861 +S'popular' +p123863 +tp123864 +a(g123861 +g123863 +S'in' +p123865 +tp123866 +a(g123863 +g123865 +S'late' +p123867 +tp123868 +a(g123865 +g123867 +S'medieval' +p123869 +tp123870 +a(g123867 +g123869 +S'religious' +p123871 +tp123872 +a(g123869 +g123871 +S'literature.' +p123873 +tp123874 +a(g123871 +g123873 +S'in' +p123875 +tp123876 +a(g123873 +g123875 +S'though' +p123877 +tp123878 +a(g123875 +g123877 +S'van' +p123879 +tp123880 +a(g123877 +g123879 +S'orley' +p123881 +tp123882 +a(g123879 +g123881 +S'assimilated' +p123883 +tp123884 +a(g123881 +g123883 +S'renaissance' +p123885 +tp123886 +a(g123883 +g123885 +S'style,' +p123887 +tp123888 +a(g123885 +g123887 +S'it' +p123889 +tp123890 +a(g123887 +g123889 +S'is' +p123891 +tp123892 +a(g123889 +g123891 +S'not' +p123893 +tp123894 +a(g123891 +g123893 +S'clear' +p123895 +tp123896 +a(g123893 +g123895 +S'whether' +p123897 +tp123898 +a(g123895 +g123897 +S'he' +p123899 +tp123900 +a(g123897 +g123899 +S'actually' +p123901 +tp123902 +a(g123899 +g123901 +S'traveled' +p123903 +tp123904 +a(g123901 +g123903 +S'to' +p123905 +tp123906 +a(g123903 +g123905 +S'italy.' +p123907 +tp123908 +a(g123905 +g123907 +S'italian' +p123909 +tp123910 +a(g123907 +g123909 +S'style' +p123911 +tp123912 +a(g123909 +g123911 +S'moved' +p123913 +tp123914 +a(g123911 +g123913 +S'north' +p123915 +tp123916 +a(g123913 +g123915 +S'in' +p123917 +tp123918 +a(g123915 +g123917 +S'a' +p123919 +tp123920 +a(g123917 +g123919 +S'number' +p123921 +tp123922 +a(g123919 +g123921 +S'of' +p123923 +tp123924 +a(g123921 +g123923 +S'ways.' +p123925 +tp123926 +a(g123923 +g123925 +S'the' +p123927 +tp123928 +a(g123925 +g123927 +S'elaborate' +p123929 +tp123930 +a(g123927 +g123929 +S'renaissance' +p123931 +tp123932 +a(g123929 +g123931 +S'porticoes' +p123933 +tp123934 +a(g123931 +g123933 +S'here' +p123935 +tp123936 +a(g123933 +g123935 +S'may' +p123937 +tp123938 +a(g123935 +g123937 +S'have' +p123939 +tp123940 +a(g123937 +g123939 +S'been' +p123941 +tp123942 +a(g123939 +g123941 +S'influenced,' +p123943 +tp123944 +a(g123941 +g123943 +S'for' +p123945 +tp123946 +a(g123943 +g123945 +S'example,' +p123947 +tp123948 +a(g123945 +g123947 +S'by' +p123949 +tp123950 +a(g123947 +g123949 +S'the' +p123951 +tp123952 +a(g123949 +g123951 +S'drawings' +p123953 +tp123954 +a(g123951 +g123953 +S'of' +p123955 +tp123956 +a(g123953 +g123955 +S'other' +p123957 +tp123958 +a(g123955 +g123957 +S'northern' +p123959 +tp123960 +a(g123957 +g123959 +S'artists.' +p123961 +tp123962 +a(g123959 +g123961 +S'or' +p123963 +tp123964 +a(g123961 +g123963 +S'they' +p123965 +tp123966 +a(g123963 +g123965 +S'may' +p123967 +tp123968 +a(g123965 +g123967 +S'reflect' +p123969 +tp123970 +a(g123967 +g123969 +S'the' +p123971 +tp123972 +a(g123969 +g123971 +S'ceremonial' +p123973 +tp123974 +a(g123971 +g123973 +S'structures' +p123975 +tp123976 +a(g123973 +g123975 +S'erected' +p123977 +tp123978 +a(g123975 +g123977 +S'for' +p123979 +tp123980 +a(g123977 +g123979 +S'the' +p123981 +tp123982 +a(g123979 +g123981 +S'triumphal' +p123983 +tp123984 +a(g123981 +g123983 +S'entry' +p123985 +tp123986 +a(g123983 +g123985 +S'of' +p123987 +tp123988 +a(g123985 +g123987 +S'holy' +p123989 +tp123990 +a(g123987 +g123989 +S'roman' +p123991 +tp123992 +a(g123989 +g123991 +S'emperor' +p123993 +tp123994 +a(g123991 +g123993 +S'charles' +p123995 +tp123996 +a(g123993 +g123995 +S'v' +p123997 +tp123998 +a(g123995 +g123997 +S'into' +p123999 +tp124000 +a(g123997 +g123999 +S'bruges.' +p124001 +tp124002 +a(g123999 +g124001 +S'a' +p124003 +tp124004 +a(g124001 +g124003 +S'few' +p124005 +tp124006 +a(g124003 +g124005 +S'years' +p124007 +tp124008 +a(g124005 +g124007 +S'after' +p124009 +tp124010 +a(g124007 +g124009 +S'these' +p124011 +tp124012 +a(g124009 +g124011 +S'panels' +p124013 +tp124014 +a(g124011 +g124013 +S'were' +p124015 +tp124016 +a(g124013 +g124015 +S'painted,' +p124017 +tp124018 +a(g124015 +g124017 +S'van' +p124019 +tp124020 +a(g124017 +g124019 +S'orley' +p124021 +tp124022 +a(g124019 +g124021 +S'himself' +p124023 +tp124024 +a(g124021 +g124023 +S'received' +p124025 +tp124026 +a(g124023 +g124025 +S'a' +p124027 +tp124028 +a(g124025 +g124027 +S'series' +p124029 +tp124030 +a(g124027 +g124029 +S'of' +p124031 +tp124032 +a(g124029 +g124031 +S'influential' +p124033 +tp124034 +a(g124031 +g124033 +S'designs' +p124035 +tp124036 +a(g124033 +g124035 +S'by' +p124037 +tp124038 +a(g124035 +g124037 +S'hubert' +p124039 +tp124040 +a(g124037 +g124039 +S'robert,' +p124041 +tp124042 +a(g124039 +g124041 +S'known' +p124043 +tp124044 +a(g124041 +g124043 +S'as' +p124045 +tp124046 +a(g124043 +g124045 +S'"robert' +p124047 +tp124048 +a(g124045 +g124047 +S'of' +p124049 +tp124050 +a(g124047 +g124049 +S'the' +p124051 +tp124052 +a(g124049 +g124051 +S'ruins,"' +p124053 +tp124054 +a(g124051 +g124053 +S'spent' +p124055 +tp124056 +a(g124053 +g124055 +S'eleven' +p124057 +tp124058 +a(g124055 +g124057 +S'years' +p124059 +tp124060 +a(g124057 +g124059 +S'as' +p124061 +tp124062 +a(g124059 +g124061 +S'a' +p124063 +tp124064 +a(g124061 +g124063 +S'student' +p124065 +tp124066 +a(g124063 +g124065 +S'in' +p124067 +tp124068 +a(g124065 +g124067 +S'rome' +p124069 +tp124070 +a(g124067 +g124069 +S'from' +p124071 +tp124072 +a(g124069 +g124071 +S'1754' +p124073 +tp124074 +a(g124071 +g124073 +S'until' +p124075 +tp124076 +a(g124073 +g124075 +S'1765.' +p124077 +tp124078 +a(g124075 +g124077 +S'during' +p124079 +tp124080 +a(g124077 +g124079 +S'his' +p124081 +tp124082 +a(g124079 +g124081 +S'sojourn' +p124083 +tp124084 +a(g124081 +g124083 +S'he' +p124085 +tp124086 +a(g124083 +g124085 +S'studied' +p124087 +tp124088 +a(g124085 +g124087 +S'at' +p124089 +tp124090 +a(g124087 +g124089 +S'the' +p124091 +tp124092 +a(g124089 +g124091 +S'french' +p124093 +tp124094 +a(g124091 +g124093 +S'academy,' +p124095 +tp124096 +a(g124093 +g124095 +S'but' +p124097 +tp124098 +a(g124095 +g124097 +S'dedicated' +p124099 +tp124100 +a(g124097 +g124099 +S'most' +p124101 +tp124102 +a(g124099 +g124101 +S'of' +p124103 +tp124104 +a(g124101 +g124103 +S'his' +p124105 +tp124106 +a(g124103 +g124105 +S'energy' +p124107 +tp124108 +a(g124105 +g124107 +S'to' +p124109 +tp124110 +a(g124107 +g124109 +S'sketching' +p124111 +tp124112 +a(g124109 +g124111 +S'the' +p124113 +tp124114 +a(g124111 +g124113 +S'eternal' +p124115 +tp124116 +a(g124113 +g124115 +S'city' +p124117 +tp124118 +a(g124115 +g124117 +S'and' +p124119 +tp124120 +a(g124117 +g124119 +S'the' +p124121 +tp124122 +a(g124119 +g124121 +S'roman' +p124123 +tp124124 +a(g124121 +g124123 +S'in' +p124125 +tp124126 +a(g124123 +g124125 +S'robert' +p124127 +tp124128 +a(g124125 +g124127 +S'has' +p124129 +tp124130 +a(g124127 +g124129 +S'combined' +p124131 +tp124132 +a(g124129 +g124131 +S'the' +p124133 +tp124134 +a(g124131 +g124133 +S'grandeur' +p124135 +tp124136 +a(g124133 +g124135 +S'of' +p124137 +tp124138 +a(g124135 +g124137 +S'ancient' +p124139 +tp124140 +a(g124137 +g124139 +S'rome' +p124141 +tp124142 +a(g124139 +g124141 +S'with' +p124143 +tp124144 +a(g124141 +g124143 +S'the' +p124145 +tp124146 +a(g124143 +g124145 +S'anecdotal.' +p124147 +tp124148 +a(g124145 +g124147 +S'for' +p124149 +tp124150 +a(g124147 +g124149 +S'example,' +p124151 +tp124152 +a(g124149 +g124151 +S'the' +p124153 +tp124154 +a(g124151 +g124153 +S'young' +p124155 +tp124156 +a(g124153 +g124155 +S'man' +p124157 +tp124158 +a(g124155 +g124157 +S'on' +p124159 +tp124160 +a(g124157 +g124159 +S'the' +p124161 +tp124162 +a(g124159 +g124161 +S'right' +p124163 +tp124164 +a(g124161 +g124163 +S'bank' +p124165 +tp124166 +a(g124163 +g124165 +S'admires' +p124167 +tp124168 +a(g124165 +g124167 +S'the' +p124169 +tp124170 +a(g124167 +g124169 +S'washerwoman' +p124171 +tp124172 +a(g124169 +g124171 +S'opposite,' +p124173 +tp124174 +a(g124171 +g124173 +S'while' +p124175 +tp124176 +a(g124173 +g124175 +S'the' +p124177 +tp124178 +a(g124175 +g124177 +S'old' +p124179 +tp124180 +a(g124177 +g124179 +S'woman' +p124181 +tp124182 +a(g124179 +g124181 +S'on' +p124183 +tp124184 +a(g124181 +g124183 +S'the' +p124185 +tp124186 +a(g124183 +g124185 +S'pier' +p124187 +tp124188 +a(g124185 +g124187 +S'entices' +p124189 +tp124190 +a(g124187 +g124189 +S'her' +p124191 +tp124192 +a(g124189 +g124191 +S'cat' +p124193 +tp124194 +a(g124191 +g124193 +S'to' +p124195 +tp124196 +a(g124193 +g124195 +S'return.' +p124197 +tp124198 +a(g124195 +g124197 +S'robert,' +p124199 +tp124200 +a(g124197 +g124199 +S'by' +p124201 +tp124202 +a(g124199 +g124201 +S'linking' +p124203 +tp124204 +a(g124201 +g124203 +S'present' +p124205 +tp124206 +a(g124203 +g124205 +S'and' +p124207 +tp124208 +a(g124205 +g124207 +S'past' +p124209 +tp124210 +a(g124207 +g124209 +S'under' +p124211 +tp124212 +a(g124209 +g124211 +S'the' +p124213 +tp124214 +a(g124211 +g124213 +S'warm' +p124215 +tp124216 +a(g124213 +g124215 +S'light' +p124217 +tp124218 +a(g124215 +g124217 +S'of' +p124219 +tp124220 +a(g124217 +g124219 +S'the' +p124221 +tp124222 +a(g124219 +g124221 +S'italian' +p124223 +tp124224 +a(g124221 +g124223 +S'sun,' +p124225 +tp124226 +a(g124223 +g124225 +S'reminds' +p124227 +tp124228 +a(g124225 +g124227 +S'us' +p124229 +tp124230 +a(g124227 +g124229 +S'that' +p124231 +tp124232 +a(g124229 +g124231 +S'bridges' +p124233 +tp124234 +a(g124231 +g124233 +S'are' +p124235 +tp124236 +a(g124233 +g124235 +S'emblems' +p124237 +tp124238 +a(g124235 +g124237 +S'of' +p124239 +tp124240 +a(g124237 +g124239 +S'the' +p124241 +tp124242 +a(g124239 +g124241 +S'passage' +p124243 +tp124244 +a(g124241 +g124243 +S'of' +p124245 +tp124246 +a(g124243 +g124245 +S'time,' +p124247 +tp124248 +a(g124245 +g124247 +S'thus' +p124249 +tp124250 +a(g124247 +g124249 +S'evoking' +p124251 +tp124252 +a(g124249 +g124251 +S'a' +p124253 +tp124254 +a(g124251 +g124253 +S'nostalgia' +p124255 +tp124256 +a(g124253 +g124255 +S'for' +p124257 +tp124258 +a(g124255 +g124257 +S'the' +p124259 +tp124260 +a(g124257 +g124259 +S'glory' +p124261 +tp124262 +a(g124259 +g124261 +S'of' +p124263 +tp124264 +a(g124261 +g124263 +S'ancient' +p124265 +tp124266 +a(g124263 +g124265 +S'rome.' +p124267 +tp124268 +a(g124265 +g124267 +S'giuliano' +p124269 +tp124270 +a(g124267 +g124269 +S'medici,' +p124271 +tp124272 +a(g124269 +g124271 +S'the' +p124273 +tp124274 +a(g124271 +g124273 +S'younger' +p124275 +tp124276 +a(g124273 +g124275 +S'brother' +p124277 +tp124278 +a(g124275 +g124277 +S'of' +p124279 +tp124280 +a(g124277 +g124279 +S'lorenzo,' +p124281 +tp124282 +a(g124279 +g124281 +S'was' +p124283 +tp124284 +a(g124281 +g124283 +S'nursing' +p124285 +tp124286 +a(g124283 +g124285 +S'a' +p124287 +tp124288 +a(g124285 +g124287 +S'bad' +p124289 +tp124290 +a(g124287 +g124289 +S'knee' +p124291 +tp124292 +a(g124289 +g124291 +S'on' +p124293 +tp124294 +a(g124291 +g124293 +S'easter' +p124295 +tp124296 +a(g124293 +g124295 +S'day' +p124297 +tp124298 +a(g124295 +g124297 +S'1478' +p124299 +tp124300 +a(g124297 +g124299 +S'and' +p124301 +tp124302 +a(g124299 +g124301 +S'had' +p124303 +tp124304 +a(g124301 +g124303 +S'to' +p124305 +tp124306 +a(g124303 +g124305 +S'be' +p124307 +tp124308 +a(g124305 +g124307 +S'helped' +p124309 +tp124310 +a(g124307 +g124309 +S'to' +p124311 +tp124312 +a(g124309 +g124311 +S'the' +p124313 +tp124314 +a(g124311 +g124313 +S'cathedral—by' +p124315 +tp124316 +a(g124313 +g124315 +S'the' +p124317 +tp124318 +a(g124315 +g124317 +S'very' +p124319 +tp124320 +a(g124317 +g124319 +S'men' +p124321 +tp124322 +a(g124319 +g124321 +S'who' +p124323 +tp124324 +a(g124321 +g124323 +S'were' +p124325 +tp124326 +a(g124323 +g124325 +S'plotting' +p124327 +tp124328 +a(g124325 +g124327 +S'to' +p124329 +tp124330 +a(g124327 +g124329 +S'kill' +p124331 +tp124332 +a(g124329 +g124331 +S'him' +p124333 +tp124334 +a(g124331 +g124333 +S'and' +p124335 +tp124336 +a(g124333 +g124335 +S'his' +p124337 +tp124338 +a(g124335 +g124337 +S'brother' +p124339 +tp124340 +a(g124337 +g124339 +S'during' +p124341 +tp124342 +a(g124339 +g124341 +S'mass.' +p124343 +tp124344 +a(g124341 +g124343 +S'the' +p124345 +tp124346 +a(g124343 +g124345 +S'assassins,' +p124347 +tp124348 +a(g124345 +g124347 +S'members' +p124349 +tp124350 +a(g124347 +g124349 +S'and' +p124351 +tp124352 +a(g124349 +g124351 +S'supporters' +p124353 +tp124354 +a(g124351 +g124353 +S'of' +p124355 +tp124356 +a(g124353 +g124355 +S'the' +p124357 +tp124358 +a(g124355 +g124357 +S'pazzi' +p124359 +tp124360 +a(g124357 +g124359 +S'family,' +p124361 +tp124362 +a(g124359 +g124361 +S'banking' +p124363 +tp124364 +a(g124361 +g124363 +S'rivals' +p124365 +tp124366 +a(g124363 +g124365 +S'of' +p124367 +tp124368 +a(g124365 +g124367 +S'the' +p124369 +tp124370 +a(g124367 +g124369 +S'medici,' +p124371 +tp124372 +a(g124369 +g124371 +S'awaited' +p124373 +tp124374 +a(g124371 +g124373 +S'their' +p124375 +tp124376 +a(g124373 +g124375 +S'signal.' +p124377 +tp124378 +a(g124375 +g124377 +S'as' +p124379 +tp124380 +a(g124377 +g124379 +S'worshipers' +p124381 +tp124382 +a(g124379 +g124381 +S'bowed' +p124383 +tp124384 +a(g124381 +g124383 +S'their' +p124385 +tp124386 +a(g124383 +g124385 +S'heads' +p124387 +tp124388 +a(g124385 +g124387 +S'at' +p124389 +tp124390 +a(g124387 +g124389 +S'the' +p124391 +tp124392 +a(g124389 +g124391 +S'elevation' +p124393 +tp124394 +a(g124391 +g124393 +S'of' +p124395 +tp124396 +a(g124393 +g124395 +S'the' +p124397 +tp124398 +a(g124395 +g124397 +S'host,' +p124399 +tp124400 +a(g124397 +g124399 +S'giuliano' +p124401 +tp124402 +a(g124399 +g124401 +S'was' +p124403 +tp124404 +a(g124401 +g124403 +S'brutally' +p124405 +tp124406 +a(g124403 +g124405 +S'stabbed.' +p124407 +tp124408 +a(g124405 +g124407 +S'lorenzo' +p124409 +tp124410 +a(g124407 +g124409 +S'escaped' +p124411 +tp124412 +a(g124409 +g124411 +S'to' +p124413 +tp124414 +a(g124411 +g124413 +S'the' +p124415 +tp124416 +a(g124413 +g124415 +S'sacristy,' +p124417 +tp124418 +a(g124415 +g124417 +S'remaining' +p124419 +tp124420 +a(g124417 +g124419 +S'there' +p124421 +tp124422 +a(g124419 +g124421 +S'while' +p124423 +tp124424 +a(g124421 +g124423 +S'the' +p124425 +tp124426 +a(g124423 +g124425 +S'pazzi' +p124427 +tp124428 +a(g124425 +g124427 +S'partisans' +p124429 +tp124430 +a(g124427 +g124429 +S'attempted' +p124431 +tp124432 +a(g124429 +g124431 +S'to' +p124433 +tp124434 +a(g124431 +g124433 +S'seize' +p124435 +tp124436 +a(g124433 +g124435 +S'the' +p124437 +tp124438 +a(g124435 +g124437 +S'government.' +p124439 +tp124440 +a(g124437 +g124439 +S'they' +p124441 +tp124442 +a(g124439 +g124441 +S'soon' +p124443 +tp124444 +a(g124441 +g124443 +S'failed,' +p124445 +tp124446 +a(g124443 +g124445 +S'however,' +p124447 +tp124448 +a(g124445 +g124447 +S'and' +p124449 +tp124450 +a(g124447 +g124449 +S'lorenzo' +p124451 +tp124452 +a(g124449 +g124451 +S'resumed' +p124453 +tp124454 +a(g124451 +g124453 +S'control.' +p124455 +tp124456 +a(g124453 +g124455 +S'the' +p124457 +tp124458 +a(g124455 +g124457 +S'murder' +p124459 +tp124460 +a(g124457 +g124459 +S'of' +p124461 +tp124462 +a(g124459 +g124461 +S'giuliano' +p124463 +tp124464 +a(g124461 +g124463 +S'shocked' +p124465 +tp124466 +a(g124463 +g124465 +S'florence,' +p124467 +tp124468 +a(g124465 +g124467 +S'and' +p124469 +tp124470 +a(g124467 +g124469 +S'a' +p124471 +tp124472 +a(g124469 +g124471 +S'number' +p124473 +tp124474 +a(g124471 +g124473 +S'of' +p124475 +tp124476 +a(g124473 +g124475 +S'portraits' +p124477 +tp124478 +a(g124475 +g124477 +S'were' +p124479 +tp124480 +a(g124477 +g124479 +S'ordered' +p124481 +tp124482 +a(g124479 +g124481 +S'for' +p124483 +tp124484 +a(g124481 +g124483 +S'public' +p124485 +tp124486 +a(g124483 +g124485 +S'display' +p124487 +tp124488 +a(g124485 +g124487 +S'to' +p124489 +tp124490 +a(g124487 +g124489 +S'serve' +p124491 +tp124492 +a(g124489 +g124491 +S'both' +p124493 +tp124494 +a(g124491 +g124493 +S'as' +p124495 +tp124496 +a(g124493 +g124495 +S'memorials' +p124497 +tp124498 +a(g124495 +g124497 +S'and' +p124499 +tp124500 +a(g124497 +g124499 +S'as' +p124501 +tp124502 +a(g124499 +g124501 +S'warnings' +p124503 +tp124504 +a(g124501 +g124503 +S'to' +p124505 +tp124506 +a(g124503 +g124505 +S'other' +p124507 +tp124508 +a(g124505 +g124507 +S'plotters.' +p124509 +tp124510 +a(g124507 +g124509 +S"botticelli's" +p124511 +tp124512 +a(g124509 +g124511 +S'painting' +p124513 +tp124514 +a(g124511 +g124513 +S'may' +p124515 +tp124516 +a(g124513 +g124515 +S'have' +p124517 +tp124518 +a(g124515 +g124517 +S'been' +p124519 +tp124520 +a(g124517 +g124519 +S'the' +p124521 +tp124522 +a(g124519 +g124521 +S'prototype' +p124523 +tp124524 +a(g124521 +g124523 +S'for' +p124525 +tp124526 +a(g124523 +g124525 +S'others,' +p124527 +tp124528 +a(g124525 +g124527 +S'and' +p124529 +tp124530 +a(g124527 +g124529 +S'lent' +p124531 +tp124532 +a(g124529 +g124531 +S'symbolic' +p124533 +tp124534 +a(g124531 +g124533 +S'gravity' +p124535 +tp124536 +a(g124533 +g124535 +S'to' +p124537 +tp124538 +a(g124535 +g124537 +S'guiliano\xe2\x80\x99s' +p124539 +tp124540 +a(g124537 +g124539 +S'passing,' +p124541 +tp124542 +a(g124539 +g124541 +S'showing' +p124543 +tp124544 +a(g124541 +g124543 +S'him' +p124545 +tp124546 +a(g124543 +g124545 +S'as' +p124547 +tp124548 +a(g124545 +g124547 +S'an' +p124549 +tp124550 +a(g124547 +g124549 +S'icon,' +p124551 +tp124552 +a(g124549 +g124551 +S'almost' +p124553 +tp124554 +a(g124551 +g124553 +S'a' +p124555 +tp124556 +a(g124553 +g124555 +S'saint.' +p124557 +tp124558 +a(g124555 +g124557 +S'the' +p124559 +tp124560 +a(g124557 +g124559 +S'open' +p124561 +tp124562 +a(g124559 +g124561 +S'window' +p124563 +tp124564 +a(g124561 +g124563 +S'and' +p124565 +tp124566 +a(g124563 +g124565 +S'mourning' +p124567 +tp124568 +a(g124565 +g124567 +S'dove' +p124569 +tp124570 +a(g124567 +g124569 +S'were' +p124571 +tp124572 +a(g124569 +g124571 +S'familiar' +p124573 +tp124574 +a(g124571 +g124573 +S'symbols' +p124575 +tp124576 +a(g124573 +g124575 +S'of' +p124577 +tp124578 +a(g124575 +g124577 +S'death,' +p124579 +tp124580 +a(g124577 +g124579 +S'alluding' +p124581 +tp124582 +a(g124579 +g124581 +S'to' +p124583 +tp124584 +a(g124581 +g124583 +S'the' +p124585 +tp124586 +a(g124583 +g124585 +S'flight' +p124587 +tp124588 +a(g124585 +g124587 +S'of' +p124589 +tp124590 +a(g124587 +g124589 +S'the' +p124591 +tp124592 +a(g124589 +g124591 +S'soul' +p124593 +tp124594 +a(g124591 +g124593 +S'and' +p124595 +tp124596 +a(g124593 +g124595 +S'the' +p124597 +tp124598 +a(g124595 +g124597 +S"deceased's" +p124599 +tp124600 +a(g124597 +g124599 +S'passage' +p124601 +tp124602 +a(g124599 +g124601 +S'to' +p124603 +tp124604 +a(g124601 +g124603 +S'the' +p124605 +tp124606 +a(g124603 +g124605 +S'afterlife.' +p124607 +tp124608 +a(g124605 +g124607 +S'some' +p124609 +tp124610 +a(g124607 +g124609 +S'scholars,' +p124611 +tp124612 +a(g124609 +g124611 +S'noting' +p124613 +tp124614 +a(g124611 +g124613 +S'the' +p124615 +tp124616 +a(g124613 +g124615 +S'lowered' +p124617 +tp124618 +a(g124615 +g124617 +S'eyelids,' +p124619 +tp124620 +a(g124617 +g124619 +S'suggest' +p124621 +tp124622 +a(g124619 +g124621 +S'this' +p124623 +tp124624 +a(g124621 +g124623 +S'portrait' +p124625 +tp124626 +a(g124623 +g124625 +S'was' +p124627 +tp124628 +a(g124625 +g124627 +S'painted' +p124629 +tp124630 +a(g124627 +g124629 +S'posthumously' +p124631 +tp124632 +a(g124629 +g124631 +S'from' +p124633 +tp124634 +a(g124631 +g124633 +S'a' +p124635 +tp124636 +a(g124633 +g124635 +S'death' +p124637 +tp124638 +a(g124635 +g124637 +S'mask.' +p124639 +tp124640 +a(g124637 +g124639 +S'it' +p124641 +tp124642 +a(g124639 +g124641 +S'might' +p124643 +tp124644 +a(g124641 +g124643 +S'be' +p124645 +tp124646 +a(g124643 +g124645 +S'said' +p124647 +tp124648 +a(g124645 +g124647 +S'that' +p124649 +tp124650 +a(g124647 +g124649 +S'with' +p124651 +tp124652 +a(g124649 +g124651 +S'paintings' +p124653 +tp124654 +a(g124651 +g124653 +S'like' +p124655 +tp124656 +a(g124653 +g124655 +S'this' +p124657 +tp124658 +a(g124655 +g124657 +S'one,' +p124659 +tp124660 +a(g124657 +g124659 +S'annibale' +p124661 +tp124662 +a(g124659 +g124661 +S'carracci' +p124663 +tp124664 +a(g124661 +g124663 +S'invented' +p124665 +tp124666 +a(g124663 +g124665 +S'the' +p124667 +tp124668 +a(g124665 +g124667 +S'landscape' +p124669 +tp124670 +a(g124667 +g124669 +S'as' +p124671 +tp124672 +a(g124669 +g124671 +S'a' +p124673 +tp124674 +a(g124671 +g124673 +S'subject' +p124675 +tp124676 +a(g124673 +g124675 +S'for' +p124677 +tp124678 +a(g124675 +g124677 +S'italian' +p124679 +tp124680 +a(g124677 +g124679 +S'baroque' +p124681 +tp124682 +a(g124679 +g124681 +S'painting.' +p124683 +tp124684 +a(g124681 +g124683 +S'nature' +p124685 +tp124686 +a(g124683 +g124685 +S'here' +p124687 +tp124688 +a(g124685 +g124687 +S'is' +p124689 +tp124690 +a(g124687 +g124689 +S'appreciated' +p124691 +tp124692 +a(g124689 +g124691 +S'first' +p124693 +tp124694 +a(g124691 +g124693 +S'and' +p124695 +tp124696 +a(g124693 +g124695 +S'foremost' +p124697 +tp124698 +a(g124695 +g124697 +S'for' +p124699 +tp124700 +a(g124697 +g124699 +S'herself' +p124701 +tp124702 +a(g124699 +g124701 +S'and' +p124703 +tp124704 +a(g124701 +g124703 +S'not' +p124705 +tp124706 +a(g124703 +g124705 +S'as' +p124707 +tp124708 +a(g124705 +g124707 +S'the' +p124709 +tp124710 +a(g124707 +g124709 +S'backdrop' +p124711 +tp124712 +a(g124709 +g124711 +S'for' +p124713 +tp124714 +a(g124711 +g124713 +S'a' +p124715 +tp124716 +a(g124713 +g124715 +S'story.' +p124717 +tp124718 +a(g124715 +g124717 +S'a' +p124719 +tp124720 +a(g124717 +g124719 +S'mellow' +p124721 +tp124722 +a(g124719 +g124721 +S'sunlight' +p124723 +tp124724 +a(g124721 +g124723 +S'dapples' +p124725 +tp124726 +a(g124723 +g124725 +S'the' +p124727 +tp124728 +a(g124725 +g124727 +S'land' +p124729 +tp124730 +a(g124727 +g124729 +S'and' +p124731 +tp124732 +a(g124729 +g124731 +S'picks' +p124733 +tp124734 +a(g124731 +g124733 +S'out' +p124735 +tp124736 +a(g124733 +g124735 +S'the' +p124737 +tp124738 +a(g124735 +g124737 +S'ripples' +p124739 +tp124740 +a(g124737 +g124739 +S'disturbing' +p124741 +tp124742 +a(g124739 +g124741 +S'the' +p124743 +tp124744 +a(g124741 +g124743 +S'surface' +p124745 +tp124746 +a(g124743 +g124745 +S'of' +p124747 +tp124748 +a(g124745 +g124747 +S'the' +p124749 +tp124750 +a(g124747 +g124749 +S'river.' +p124751 +tp124752 +a(g124749 +g124751 +S'the' +p124753 +tp124754 +a(g124751 +g124753 +S'gold' +p124755 +tp124756 +a(g124753 +g124755 +S'in' +p124757 +tp124758 +a(g124755 +g124757 +S'the' +p124759 +tp124760 +a(g124757 +g124759 +S'treetops' +p124761 +tp124762 +a(g124759 +g124761 +S'suggests' +p124763 +tp124764 +a(g124761 +g124763 +S'a' +p124765 +tp124766 +a(g124763 +g124765 +S'day' +p124767 +tp124768 +a(g124765 +g124767 +S'in' +p124769 +tp124770 +a(g124767 +g124769 +S'early' +p124771 +tp124772 +a(g124769 +g124771 +S'autumn.' +p124773 +tp124774 +a(g124771 +g124773 +S'brightly' +p124775 +tp124776 +a(g124773 +g124775 +S'clad' +p124777 +tp124778 +a(g124775 +g124777 +S'in' +p124779 +tp124780 +a(g124777 +g124779 +S'red' +p124781 +tp124782 +a(g124779 +g124781 +S'and' +p124783 +tp124784 +a(g124781 +g124783 +S'white,' +p124785 +tp124786 +a(g124783 +g124785 +S'a' +p124787 +tp124788 +a(g124785 +g124787 +S'boatman' +p124789 +tp124790 +a(g124787 +g124789 +S'poles' +p124791 +tp124792 +a(g124789 +g124791 +S'his' +p124793 +tp124794 +a(g124791 +g124793 +S'craft' +p124795 +tp124796 +a(g124793 +g124795 +S'through' +p124797 +tp124798 +a(g124795 +g124797 +S'the' +p124799 +tp124800 +a(g124797 +g124799 +S'shallow' +p124801 +tp124802 +a(g124799 +g124801 +S'water.' +p124803 +tp124804 +a(g124801 +g124803 +S'in' +p124805 +tp124806 +a(g124803 +g124805 +S'the' +p124807 +tp124808 +a(g124805 +g124807 +S'company' +p124809 +tp124810 +a(g124807 +g124809 +S'of' +p124811 +tp124812 +a(g124809 +g124811 +S'his' +p124813 +tp124814 +a(g124811 +g124813 +S'brother' +p124815 +tp124816 +a(g124813 +g124815 +S'agostino' +p124817 +tp124818 +a(g124815 +g124817 +S'and' +p124819 +tp124820 +a(g124817 +g124819 +S'his' +p124821 +tp124822 +a(g124819 +g124821 +S'cousin' +p124823 +tp124824 +a(g124821 +g124823 +S'lodovico' +p124825 +tp124826 +a(g124823 +g124825 +S'carracci,' +p124827 +tp124828 +a(g124825 +g124827 +S'annibale' +p124829 +tp124830 +a(g124827 +g124829 +S'made' +p124831 +tp124832 +a(g124829 +g124831 +S'excursions' +p124833 +tp124834 +a(g124831 +g124833 +S'into' +p124835 +tp124836 +a(g124833 +g124835 +S'the' +p124837 +tp124838 +a(g124835 +g124837 +S'country' +p124839 +tp124840 +a(g124837 +g124839 +S'in' +p124841 +tp124842 +a(g124839 +g124841 +S'order' +p124843 +tp124844 +a(g124841 +g124843 +S'to' +p124845 +tp124846 +a(g124843 +g124845 +S'sketch' +p124847 +tp124848 +a(g124845 +g124847 +S'the' +p124849 +tp124850 +a(g124847 +g124849 +S'landscape.' +p124851 +tp124852 +a(g124849 +g124851 +S'from' +p124853 +tp124854 +a(g124851 +g124853 +S'these' +p124855 +tp124856 +a(g124853 +g124855 +S'quick' +p124857 +tp124858 +a(g124855 +g124857 +S'studies' +p124859 +tp124860 +a(g124857 +g124859 +S'made' +p124861 +tp124862 +a(g124859 +g124861 +S'on' +p124863 +tp124864 +a(g124861 +g124863 +S'the' +p124865 +tp124866 +a(g124863 +g124865 +S'spot' +p124867 +tp124868 +a(g124865 +g124867 +S'he' +p124869 +tp124870 +a(g124867 +g124869 +S'worked' +p124871 +tp124872 +a(g124869 +g124871 +S'up' +p124873 +tp124874 +a(g124871 +g124873 +S'his' +p124875 +tp124876 +a(g124873 +g124875 +S'paintings' +p124877 +tp124878 +a(g124875 +g124877 +S'in' +p124879 +tp124880 +a(g124877 +g124879 +S'the' +p124881 +tp124882 +a(g124879 +g124881 +S'studio.' +p124883 +tp124884 +a(g124881 +g124883 +S'the' +p124885 +tp124886 +a(g124883 +g124885 +S'resulting' +p124887 +tp124888 +a(g124885 +g124887 +S'composition' +p124889 +tp124890 +a(g124887 +g124889 +S'is' +p124891 +tp124892 +a(g124889 +g124891 +S'an' +p124893 +tp124894 +a(g124891 +g124893 +S'artful' +p124895 +tp124896 +a(g124893 +g124895 +S'balancing' +p124897 +tp124898 +a(g124895 +g124897 +S'of' +p124899 +tp124900 +a(g124897 +g124899 +S'forms.' +p124901 +tp124902 +a(g124899 +g124901 +S'as' +p124903 +tp124904 +a(g124901 +g124903 +S'the' +p124905 +tp124906 +a(g124903 +g124905 +S'river' +p124907 +tp124908 +a(g124905 +g124907 +S'wends' +p124909 +tp124910 +a(g124907 +g124909 +S'its' +p124911 +tp124912 +a(g124909 +g124911 +S'way' +p124913 +tp124914 +a(g124911 +g124913 +S'through' +p124915 +tp124916 +a(g124913 +g124915 +S'the' +p124917 +tp124918 +a(g124915 +g124917 +S'countryside' +p124919 +tp124920 +a(g124917 +g124919 +S'towards' +p124921 +tp124922 +a(g124919 +g124921 +S'the' +p124923 +tp124924 +a(g124921 +g124923 +S'foreground,' +p124925 +tp124926 +a(g124923 +g124925 +S'the' +p124927 +tp124928 +a(g124925 +g124927 +S'spits' +p124929 +tp124930 +a(g124927 +g124929 +S'of' +p124931 +tp124932 +a(g124929 +g124931 +S'land' +p124933 +tp124934 +a(g124931 +g124933 +S'that' +p124935 +tp124936 +a(g124933 +g124935 +S'chart' +p124937 +tp124938 +a(g124935 +g124937 +S'its' +p124939 +tp124940 +a(g124937 +g124939 +S'course' +p124941 +tp124942 +a(g124939 +g124941 +S'are' +p124943 +tp124944 +a(g124941 +g124943 +S'made' +p124945 +tp124946 +a(g124943 +g124945 +S'to' +p124947 +tp124948 +a(g124945 +g124947 +S'recede' +p124949 +tp124950 +a(g124947 +g124949 +S'and' +p124951 +tp124952 +a(g124949 +g124951 +S'project' +p124953 +tp124954 +a(g124951 +g124953 +S'in' +p124955 +tp124956 +a(g124953 +g124955 +S'an' +p124957 +tp124958 +a(g124955 +g124957 +S'alternating' +p124959 +tp124960 +a(g124957 +g124959 +S'rhythm' +p124961 +tp124962 +a(g124959 +g124961 +S'of' +p124963 +tp124964 +a(g124961 +g124963 +S'triangles.' +p124965 +tp124966 +a(g124963 +g124965 +S'trees,' +p124967 +tp124968 +a(g124965 +g124967 +S'like' +p124969 +tp124970 +a(g124967 +g124969 +S'signposts,' +p124971 +tp124972 +a(g124969 +g124971 +S'mark' +p124973 +tp124974 +a(g124971 +g124973 +S'the' +p124975 +tp124976 +a(g124973 +g124975 +S'progress' +p124977 +tp124978 +a(g124975 +g124977 +S'of' +p124979 +tp124980 +a(g124977 +g124979 +S'recession' +p124981 +tp124982 +a(g124979 +g124981 +S'into' +p124983 +tp124984 +a(g124981 +g124983 +S'the' +p124985 +tp124986 +a(g124983 +g124985 +S'distance.' +p124987 +tp124988 +a(g124985 +g124987 +S'at' +p124989 +tp124990 +a(g124987 +g124989 +S'the' +p124991 +tp124992 +a(g124989 +g124991 +S'same' +p124993 +tp124994 +a(g124991 +g124993 +S'time' +p124995 +tp124996 +a(g124993 +g124995 +S'the' +p124997 +tp124998 +a(g124995 +g124997 +S'bold' +p124999 +tp125000 +a(g124997 +g124999 +S'strokes' +p125001 +tp125002 +a(g124999 +g125001 +S'of' +p125003 +tp125004 +a(g125001 +g125003 +S'dark' +p125005 +tp125006 +a(g125003 +g125005 +S'trees' +p125007 +tp125008 +a(g125005 +g125007 +S'in' +p125009 +tp125010 +a(g125007 +g125009 +S'the' +p125011 +tp125012 +a(g125009 +g125011 +S'foreground' +p125013 +tp125014 +a(g125011 +g125013 +S'form' +p125015 +tp125016 +a(g125013 +g125015 +S'a' +p125017 +tp125018 +a(g125015 +g125017 +S'dramatic' +p125019 +tp125020 +a(g125017 +g125019 +S'pattern' +p125021 +tp125022 +a(g125019 +g125021 +S'on' +p125023 +tp125024 +a(g125021 +g125023 +S'the' +p125025 +tp125026 +a(g125023 +g125025 +S'surface' +p125027 +tp125028 +a(g125025 +g125027 +S'to' +p125029 +tp125030 +a(g125027 +g125029 +S'snap' +p125031 +tp125032 +a(g125029 +g125031 +S'the' +p125033 +tp125034 +a(g125031 +g125033 +S"spectator's" +p125035 +tp125036 +a(g125033 +g125035 +S'attention' +p125037 +tp125038 +a(g125035 +g125037 +S'back' +p125039 +tp125040 +a(g125037 +g125039 +S'from' +p125041 +tp125042 +a(g125039 +g125041 +S'the' +p125043 +tp125044 +a(g125041 +g125043 +S'hazy' +p125045 +tp125046 +a(g125043 +g125045 +S'blue' +p125047 +tp125048 +a(g125045 +g125047 +S'of' +p125049 +tp125050 +a(g125047 +g125049 +S'the' +p125051 +tp125052 +a(g125049 +g125051 +S'distant' +p125053 +tp125054 +a(g125051 +g125053 +S'horizon.' +p125055 +tp125056 +a(g125053 +g125055 +S'we' +p125057 +tp125058 +a(g125055 +g125057 +S'recognize' +p125059 +tp125060 +a(g125057 +g125059 +S'this' +p125061 +tp125062 +a(g125059 +g125061 +S'sleeping' +p125063 +tp125064 +a(g125061 +g125063 +S'figure' +p125065 +tp125066 +a(g125063 +g125065 +S'as' +p125067 +tp125068 +a(g125065 +g125067 +S'saint' +p125069 +tp125070 +a(g125067 +g125069 +S'catherine' +p125071 +tp125072 +a(g125069 +g125071 +S'by' +p125073 +tp125074 +a(g125071 +g125073 +S'the' +p125075 +tp125076 +a(g125073 +g125075 +S'fragment' +p125077 +tp125078 +a(g125075 +g125077 +S'of' +p125079 +tp125080 +a(g125077 +g125079 +S'spiked' +p125081 +tp125082 +a(g125079 +g125081 +S'wheel' +p125083 +tp125084 +a(g125081 +g125083 +S'in' +p125085 +tp125086 +a(g125083 +g125085 +S'the' +p125087 +tp125088 +a(g125085 +g125087 +S'lower' +p125089 +tp125090 +a(g125087 +g125089 +S'left' +p125091 +tp125092 +a(g125089 +g125091 +S'corner,' +p125093 +tp125094 +a(g125091 +g125093 +S'which' +p125095 +tp125096 +a(g125093 +g125095 +S'was' +p125097 +tp125098 +a(g125095 +g125097 +S'the' +p125099 +tp125100 +a(g125097 +g125099 +S'instrument' +p125101 +tp125102 +a(g125099 +g125101 +S'of' +p125103 +tp125104 +a(g125101 +g125103 +S'an' +p125105 +tp125106 +a(g125103 +g125105 +S'attempted' +p125107 +tp125108 +a(g125105 +g125107 +S'martyrdom.' +p125109 +tp125110 +a(g125107 +g125109 +S'here' +p125111 +tp125112 +a(g125109 +g125111 +S'lodovico' +p125113 +tp125114 +a(g125111 +g125113 +S'carracci' +p125115 +tp125116 +a(g125113 +g125115 +S'represented' +p125117 +tp125118 +a(g125115 +g125117 +S'her' +p125119 +tp125120 +a(g125117 +g125119 +S'legendary' +p125121 +tp125122 +a(g125119 +g125121 +S'dream' +p125123 +tp125124 +a(g125121 +g125123 +S'in' +p125125 +tp125126 +a(g125123 +g125125 +S'which' +p125127 +tp125128 +a(g125125 +g125127 +S'mary' +p125129 +tp125130 +a(g125127 +g125129 +S'and' +p125131 +tp125132 +a(g125129 +g125131 +S'the' +p125133 +tp125134 +a(g125131 +g125133 +S'infant' +p125135 +tp125136 +a(g125133 +g125135 +S'christ,' +p125137 +tp125138 +a(g125135 +g125137 +S'accompanied' +p125139 +tp125140 +a(g125137 +g125139 +S'by' +p125141 +tp125142 +a(g125139 +g125141 +S'angels,' +p125143 +tp125144 +a(g125141 +g125143 +S'appeared' +p125145 +tp125146 +a(g125143 +g125145 +S'to' +p125147 +tp125148 +a(g125145 +g125147 +S'her.' +p125149 +tp125150 +a(g125147 +g125149 +S'plighting' +p125151 +tp125152 +a(g125149 +g125151 +S'his' +p125153 +tp125154 +a(g125151 +g125153 +S'troth,' +p125155 +tp125156 +a(g125153 +g125155 +S'christ' +p125157 +tp125158 +a(g125155 +g125157 +S'placed' +p125159 +tp125160 +a(g125157 +g125159 +S'a' +p125161 +tp125162 +a(g125159 +g125161 +S'ring' +p125163 +tp125164 +a(g125161 +g125163 +S'on' +p125165 +tp125166 +a(g125163 +g125165 +S"catherine's" +p125167 +tp125168 +a(g125165 +g125167 +S'finger,' +p125169 +tp125170 +a(g125167 +g125169 +S'and' +p125171 +tp125172 +a(g125169 +g125171 +S'through' +p125173 +tp125174 +a(g125171 +g125173 +S'this' +p125175 +tp125176 +a(g125173 +g125175 +S'mystic' +p125177 +tp125178 +a(g125175 +g125177 +S'marriage' +p125179 +tp125180 +a(g125177 +g125179 +S'she' +p125181 +tp125182 +a(g125179 +g125181 +S'became' +p125183 +tp125184 +a(g125181 +g125183 +S'his' +p125185 +tp125186 +a(g125183 +g125185 +S'bride.' +p125187 +tp125188 +a(g125185 +g125187 +S'to' +p125189 +tp125190 +a(g125187 +g125189 +S'cast' +p125191 +tp125192 +a(g125189 +g125191 +S'the' +p125193 +tp125194 +a(g125191 +g125193 +S'event' +p125195 +tp125196 +a(g125193 +g125195 +S'as' +p125197 +tp125198 +a(g125195 +g125197 +S'a' +p125199 +tp125200 +a(g125197 +g125199 +S'dream,' +p125201 +tp125202 +a(g125199 +g125201 +S'rather' +p125203 +tp125204 +a(g125201 +g125203 +S'than' +p125205 +tp125206 +a(g125203 +g125205 +S'having' +p125207 +tp125208 +a(g125205 +g125207 +S'saint' +p125209 +tp125210 +a(g125207 +g125209 +S'catherine' +p125211 +tp125212 +a(g125209 +g125211 +S'receive' +p125213 +tp125214 +a(g125211 +g125213 +S'the' +p125215 +tp125216 +a(g125213 +g125215 +S'ring' +p125217 +tp125218 +a(g125215 +g125217 +S'while' +p125219 +tp125220 +a(g125217 +g125219 +S'awake,' +p125221 +tp125222 +a(g125219 +g125221 +S'is' +p125223 +tp125224 +a(g125221 +g125223 +S"lodovico's" +p125225 +tp125226 +a(g125223 +g125225 +S'innovation.' +p125227 +tp125228 +a(g125225 +g125227 +S'two' +p125229 +tp125230 +a(g125227 +g125229 +S'angels' +p125231 +tp125232 +a(g125229 +g125231 +S'at' +p125233 +tp125234 +a(g125231 +g125233 +S'the' +p125235 +tp125236 +a(g125233 +g125235 +S'left' +p125237 +tp125238 +a(g125235 +g125237 +S'look' +p125239 +tp125240 +a(g125237 +g125239 +S'on' +p125241 +tp125242 +a(g125239 +g125241 +S'with' +p125243 +tp125244 +a(g125241 +g125243 +S'protective' +p125245 +tp125246 +a(g125243 +g125245 +S'tenderness,' +p125247 +tp125248 +a(g125245 +g125247 +S'while' +p125249 +tp125250 +a(g125247 +g125249 +S'others' +p125251 +tp125252 +a(g125249 +g125251 +S'barely' +p125253 +tp125254 +a(g125251 +g125253 +S'emerge' +p125255 +tp125256 +a(g125253 +g125255 +S'amid' +p125257 +tp125258 +a(g125255 +g125257 +S'the' +p125259 +tp125260 +a(g125257 +g125259 +S'vaporous' +p125261 +tp125262 +a(g125259 +g125261 +S'bronze' +p125263 +tp125264 +a(g125261 +g125263 +S'radiance' +p125265 +tp125266 +a(g125263 +g125265 +S'at' +p125267 +tp125268 +a(g125265 +g125267 +S'the' +p125269 +tp125270 +a(g125267 +g125269 +S'right' +p125271 +tp125272 +a(g125269 +g125271 +S'--' +p125273 +tp125274 +a(g125271 +g125273 +S'spirit' +p125275 +tp125276 +a(g125273 +g125275 +S'becoming' +p125277 +tp125278 +a(g125275 +g125277 +S'matter.' +p125279 +tp125280 +a(g125277 +g125279 +S'the' +p125281 +tp125282 +a(g125279 +g125281 +S'figures,' +p125283 +tp125284 +a(g125281 +g125283 +S'solid' +p125285 +tp125286 +a(g125283 +g125285 +S'and' +p125287 +tp125288 +a(g125285 +g125287 +S'robust,' +p125289 +tp125290 +a(g125287 +g125289 +S'bask' +p125291 +tp125292 +a(g125289 +g125291 +S'in' +p125293 +tp125294 +a(g125291 +g125293 +S'an' +p125295 +tp125296 +a(g125293 +g125295 +S'indeterminate' +p125297 +tp125298 +a(g125295 +g125297 +S'setting.' +p125299 +tp125300 +a(g125297 +g125299 +S'a' +p125301 +tp125302 +a(g125299 +g125301 +S'languorous' +p125303 +tp125304 +a(g125301 +g125303 +S'warmth' +p125305 +tp125306 +a(g125303 +g125305 +S'pervades' +p125307 +tp125308 +a(g125305 +g125307 +S'the' +p125309 +tp125310 +a(g125307 +g125309 +S'scene' +p125311 +tp125312 +a(g125309 +g125311 +S'and' +p125313 +tp125314 +a(g125311 +g125313 +S'slows' +p125315 +tp125316 +a(g125313 +g125315 +S'the' +p125317 +tp125318 +a(g125315 +g125317 +S'composition.' +p125319 +tp125320 +a(g125317 +g125319 +S'at' +p125321 +tp125322 +a(g125319 +g125321 +S'the' +p125323 +tp125324 +a(g125321 +g125323 +S'same' +p125325 +tp125326 +a(g125323 +g125325 +S'time,' +p125327 +tp125328 +a(g125325 +g125327 +S'the' +p125329 +tp125330 +a(g125327 +g125329 +S'quirky' +p125331 +tp125332 +a(g125329 +g125331 +S'folds' +p125333 +tp125334 +a(g125331 +g125333 +S'and' +p125335 +tp125336 +a(g125333 +g125335 +S'pleats' +p125337 +tp125338 +a(g125335 +g125337 +S'cascading' +p125339 +tp125340 +a(g125337 +g125339 +S'down' +p125341 +tp125342 +a(g125339 +g125341 +S"catherine's" +p125343 +tp125344 +a(g125341 +g125343 +S'garments' +p125345 +tp125346 +a(g125343 +g125345 +S'impart' +p125347 +tp125348 +a(g125345 +g125347 +S'a' +p125349 +tp125350 +a(g125347 +g125349 +S'vertiginous' +p125351 +tp125352 +a(g125349 +g125351 +S'sensation' +p125353 +tp125354 +a(g125351 +g125353 +S'--' +p125355 +tp125356 +a(g125353 +g125355 +S'the' +p125357 +tp125358 +a(g125355 +g125357 +S'dizziness' +p125359 +tp125360 +a(g125357 +g125359 +S'of' +p125361 +tp125362 +a(g125359 +g125361 +S'sleep.' +p125363 +tp125364 +a(g125361 +g125363 +S'lodovico' +p125365 +tp125366 +a(g125363 +g125365 +S'was' +p125367 +tp125368 +a(g125365 +g125367 +S'the' +p125369 +tp125370 +a(g125367 +g125369 +S'eldest' +p125371 +tp125372 +a(g125369 +g125371 +S'of' +p125373 +tp125374 +a(g125371 +g125373 +S'the' +p125375 +tp125376 +a(g125373 +g125375 +S'three' +p125377 +tp125378 +a(g125375 +g125377 +S'carracci,' +p125379 +tp125380 +a(g125377 +g125379 +S'the' +p125381 +tp125382 +a(g125379 +g125381 +S'family' +p125383 +tp125384 +a(g125381 +g125383 +S'of' +p125385 +tp125386 +a(g125383 +g125385 +S'bolognese' +p125387 +tp125388 +a(g125385 +g125387 +S'artists' +p125389 +tp125390 +a(g125387 +g125389 +S'who' +p125391 +tp125392 +a(g125389 +g125391 +S'inaugurated' +p125393 +tp125394 +a(g125391 +g125393 +S'the' +p125395 +tp125396 +a(g125393 +g125395 +S'age' +p125397 +tp125398 +a(g125395 +g125397 +S'of' +p125399 +tp125400 +a(g125397 +g125399 +S'the' +p125401 +tp125402 +a(g125399 +g125401 +S'baroque.' +p125403 +tp125404 +a(g125401 +g125403 +S'his' +p125405 +tp125406 +a(g125403 +g125405 +S'depictions' +p125407 +tp125408 +a(g125405 +g125407 +S'of' +p125409 +tp125410 +a(g125407 +g125409 +S'saints' +p125411 +tp125412 +a(g125409 +g125411 +S'in' +p125413 +tp125414 +a(g125411 +g125413 +S'states' +p125415 +tp125416 +a(g125413 +g125415 +S'of' +p125417 +tp125418 +a(g125415 +g125417 +S'visionary' +p125419 +tp125420 +a(g125417 +g125419 +S'ecstasy' +p125421 +tp125422 +a(g125419 +g125421 +S'were' +p125423 +tp125424 +a(g125421 +g125423 +S'highly' +p125425 +tp125426 +a(g125423 +g125425 +S'prized' +p125427 +tp125428 +a(g125425 +g125427 +S'in' +p125429 +tp125430 +a(g125427 +g125429 +S'an' +p125431 +tp125432 +a(g125429 +g125431 +S'age' +p125433 +tp125434 +a(g125431 +g125433 +S'when' +p125435 +tp125436 +a(g125433 +g125435 +S'the' +p125437 +tp125438 +a(g125435 +g125437 +S'purpose' +p125439 +tp125440 +a(g125437 +g125439 +S'of' +p125441 +tp125442 +a(g125439 +g125441 +S'religious' +p125443 +tp125444 +a(g125441 +g125443 +S'art' +p125445 +tp125446 +a(g125443 +g125445 +S'was' +p125447 +tp125448 +a(g125445 +g125447 +S'to' +p125449 +tp125450 +a(g125447 +g125449 +S'arouse' +p125451 +tp125452 +a(g125449 +g125451 +S'intensely' +p125453 +tp125454 +a(g125451 +g125453 +S'pious' +p125455 +tp125456 +a(g125453 +g125455 +S'emotions' +p125457 +tp125458 +a(g125455 +g125457 +S'in' +p125459 +tp125460 +a(g125457 +g125459 +S'the' +p125461 +tp125462 +a(g125459 +g125461 +S'spectator.' +p125463 +tp125464 +a(g125461 +g125463 +S'the' +p125465 +tp125466 +a(g125463 +g125465 +S'workshop' +p125467 +tp125468 +a(g125465 +g125467 +S'of' +p125469 +tp125470 +a(g125467 +g125469 +S'a' +p125471 +tp125472 +a(g125469 +g125471 +S'renaissance' +p125473 +tp125474 +a(g125471 +g125473 +S'artist' +p125475 +tp125476 +a(g125473 +g125475 +S'was' +p125477 +tp125478 +a(g125475 +g125477 +S'both' +p125479 +tp125480 +a(g125477 +g125479 +S'studio' +p125481 +tp125482 +a(g125479 +g125481 +S'and' +p125483 +tp125484 +a(g125481 +g125483 +S'school,' +p125485 +tp125486 +a(g125483 +g125485 +S'where' +p125487 +tp125488 +a(g125485 +g125487 +S'apprentices' +p125489 +tp125490 +a(g125487 +g125489 +S'were' +p125491 +tp125492 +a(g125489 +g125491 +S'trained' +p125493 +tp125494 +a(g125491 +g125493 +S'to' +p125495 +tp125496 +a(g125493 +g125495 +S'paint' +p125497 +tp125498 +a(g125495 +g125497 +S'in' +p125499 +tp125500 +a(g125497 +g125499 +S'the' +p125501 +tp125502 +a(g125499 +g125501 +S'style' +p125503 +tp125504 +a(g125501 +g125503 +S'of' +p125505 +tp125506 +a(g125503 +g125505 +S'the' +p125507 +tp125508 +a(g125505 +g125507 +S'master.' +p125509 +tp125510 +a(g125507 +g125509 +S'since' +p125511 +tp125512 +a(g125509 +g125511 +S'large' +p125513 +tp125514 +a(g125511 +g125513 +S'commissions' +p125515 +tp125516 +a(g125513 +g125515 +S'required' +p125517 +tp125518 +a(g125515 +g125517 +S'the' +p125519 +tp125520 +a(g125517 +g125519 +S'efforts' +p125521 +tp125522 +a(g125519 +g125521 +S'of' +p125523 +tp125524 +a(g125521 +g125523 +S'many' +p125525 +tp125526 +a(g125523 +g125525 +S'painters,' +p125527 +tp125528 +a(g125525 +g125527 +S'backgrounds,' +p125529 +tp125530 +a(g125527 +g125529 +S'still-life' +p125531 +tp125532 +a(g125529 +g125531 +S'details,' +p125533 +tp125534 +a(g125531 +g125533 +S'and' +p125535 +tp125536 +a(g125533 +g125535 +S'secondary' +p125537 +tp125538 +a(g125535 +g125537 +S'figures' +p125539 +tp125540 +a(g125537 +g125539 +S'were' +p125541 +tp125542 +a(g125539 +g125541 +S'often' +p125543 +tp125544 +a(g125541 +g125543 +S'painted' +p125545 +tp125546 +a(g125543 +g125545 +S'by' +p125547 +tp125548 +a(g125545 +g125547 +S'assistants.' +p125549 +tp125550 +a(g125547 +g125549 +S'a' +p125551 +tp125552 +a(g125549 +g125551 +S'master' +p125553 +tp125554 +a(g125551 +g125553 +S'might' +p125555 +tp125556 +a(g125553 +g125555 +S'also' +p125557 +tp125558 +a(g125555 +g125557 +S'give' +p125559 +tp125560 +a(g125557 +g125559 +S'lesser' +p125561 +tp125562 +a(g125559 +g125561 +S'commissions' +p125563 +tp125564 +a(g125561 +g125563 +S'entirely' +p125565 +tp125566 +a(g125563 +g125565 +S'over' +p125567 +tp125568 +a(g125565 +g125567 +S'to' +p125569 +tp125570 +a(g125567 +g125569 +S'his' +p125571 +tp125572 +a(g125569 +g125571 +S'assistants,' +p125573 +tp125574 +a(g125571 +g125573 +S'simply' +p125575 +tp125576 +a(g125573 +g125575 +S'approving' +p125577 +tp125578 +a(g125575 +g125577 +S'the' +p125579 +tp125580 +a(g125577 +g125579 +S'work' +p125581 +tp125582 +a(g125579 +g125581 +S'as' +p125583 +tp125584 +a(g125581 +g125583 +S'meeting' +p125585 +tp125586 +a(g125583 +g125585 +S'his' +p125587 +tp125588 +a(g125585 +g125587 +S'standard.' +p125589 +tp125590 +a(g125587 +g125589 +S'it' +p125591 +tp125592 +a(g125589 +g125591 +S'is' +p125593 +tp125594 +a(g125591 +g125593 +S'often' +p125595 +tp125596 +a(g125593 +g125595 +S'difficult' +p125597 +tp125598 +a(g125595 +g125597 +S'to' +p125599 +tp125600 +a(g125597 +g125599 +S'distinguish' +p125601 +tp125602 +a(g125599 +g125601 +S'the' +p125603 +tp125604 +a(g125601 +g125603 +S'work' +p125605 +tp125606 +a(g125603 +g125605 +S'of' +p125607 +tp125608 +a(g125605 +g125607 +S'the' +p125609 +tp125610 +a(g125607 +g125609 +S'master' +p125611 +tp125612 +a(g125609 +g125611 +S'from' +p125613 +tp125614 +a(g125611 +g125613 +S'that' +p125615 +tp125616 +a(g125613 +g125615 +S'of' +p125617 +tp125618 +a(g125615 +g125617 +S'talented' +p125619 +tp125620 +a(g125617 +g125619 +S'assistants' +p125621 +tp125622 +a(g125619 +g125621 +S'whose' +p125623 +tp125624 +a(g125621 +g125623 +S'individual' +p125625 +tp125626 +a(g125623 +g125625 +S'styles' +p125627 +tp125628 +a(g125625 +g125627 +S'were' +p125629 +tp125630 +a(g125627 +g125629 +S'not' +p125631 +tp125632 +a(g125629 +g125631 +S'yet' +p125633 +tp125634 +a(g125631 +g125633 +S'fully' +p125635 +tp125636 +a(g125633 +g125635 +S'developed.' +p125637 +tp125638 +a(g125635 +g125637 +S'this' +p125639 +tp125640 +a(g125637 +g125639 +S'small' +p125641 +tp125642 +a(g125639 +g125641 +S'devotional' +p125643 +tp125644 +a(g125641 +g125643 +S'panel' +p125645 +tp125646 +a(g125643 +g125645 +S'is' +p125647 +tp125648 +a(g125645 +g125647 +S'painted' +p125649 +tp125650 +a(g125647 +g125649 +S'in' +p125651 +tp125652 +a(g125649 +g125651 +S'the' +p125653 +tp125654 +a(g125651 +g125653 +S'style' +p125655 +tp125656 +a(g125653 +g125655 +S'of' +p125657 +tp125658 +a(g125655 +g125657 +S'this' +p125659 +tp125660 +a(g125657 +g125659 +S'panel,' +p125661 +tp125662 +a(g125659 +g125661 +S'the' +p125663 +tp125664 +a(g125661 +g125663 +S'gallery’s' +p125665 +tp125666 +a(g125663 +g125665 +S'here' +p125667 +tp125668 +a(g125665 +g125667 +S'we' +p125669 +tp125670 +a(g125667 +g125669 +S'see' +p125671 +tp125672 +a(g125669 +g125671 +S'a' +p125673 +tp125674 +a(g125671 +g125673 +S'sequence' +p125675 +tp125676 +a(g125673 +g125675 +S'of' +p125677 +tp125678 +a(g125675 +g125677 +S'three' +p125679 +tp125680 +a(g125677 +g125679 +S'separate' +p125681 +tp125682 +a(g125679 +g125681 +S'events' +p125683 +tp125684 +a(g125681 +g125683 +S'from' +p125685 +tp125686 +a(g125683 +g125685 +S'the' +p125687 +tp125688 +a(g125685 +g125687 +S'baptist’s' +p125689 +tp125690 +a(g125687 +g125689 +S'infancy.' +p125691 +tp125692 +a(g125689 +g125691 +S'first,' +p125693 +tp125694 +a(g125691 +g125693 +S'two' +p125695 +tp125696 +a(g125693 +g125695 +S'women' +p125697 +tp125698 +a(g125695 +g125697 +S'admire' +p125699 +tp125700 +a(g125697 +g125699 +S'the' +p125701 +tp125702 +a(g125699 +g125701 +S'new' +p125703 +tp125704 +a(g125701 +g125703 +S'infant,' +p125705 +tp125706 +a(g125703 +g125705 +S'while' +p125707 +tp125708 +a(g125705 +g125707 +S'a' +p125709 +tp125710 +a(g125707 +g125709 +S'child' +p125711 +tp125712 +a(g125709 +g125711 +S'peers' +p125713 +tp125714 +a(g125711 +g125713 +S'in' +p125715 +tp125716 +a(g125713 +g125715 +S'from' +p125717 +tp125718 +a(g125715 +g125717 +S'the' +p125719 +tp125720 +a(g125717 +g125719 +S'doorway.' +p125721 +tp125722 +a(g125719 +g125721 +S'next,' +p125723 +tp125724 +a(g125721 +g125723 +S'john’s' +p125725 +tp125726 +a(g125723 +g125725 +S'father,' +p125727 +tp125728 +a(g125725 +g125727 +S'zacharias,' +p125729 +tp125730 +a(g125727 +g125729 +S'writes' +p125731 +tp125732 +a(g125729 +g125731 +S'“his' +p125733 +tp125734 +a(g125731 +g125733 +S'name' +p125735 +tp125736 +a(g125733 +g125735 +S'is' +p125737 +tp125738 +a(g125735 +g125737 +S'john”' +p125739 +tp125740 +a(g125737 +g125739 +S'on' +p125741 +tp125742 +a(g125739 +g125741 +S'a' +p125743 +tp125744 +a(g125741 +g125743 +S'scroll.' +p125745 +tp125746 +a(g125743 +g125745 +S'while' +p125747 +tp125748 +a(g125745 +g125747 +S'writing' +p125749 +tp125750 +a(g125747 +g125749 +S'he' +p125751 +tp125752 +a(g125749 +g125751 +S'regains' +p125753 +tp125754 +a(g125751 +g125753 +S'the' +p125755 +tp125756 +a(g125753 +g125755 +S'power' +p125757 +tp125758 +a(g125755 +g125757 +S'of' +p125759 +tp125760 +a(g125757 +g125759 +S'speech,' +p125761 +tp125762 +a(g125759 +g125761 +S'which' +p125763 +tp125764 +a(g125761 +g125763 +S'had' +p125765 +tp125766 +a(g125763 +g125765 +S'been' +p125767 +tp125768 +a(g125765 +g125767 +S'taken' +p125769 +tp125770 +a(g125767 +g125769 +S'from' +p125771 +tp125772 +a(g125769 +g125771 +S'him' +p125773 +tp125774 +a(g125771 +g125773 +S'because' +p125775 +tp125776 +a(g125773 +g125775 +S'he' +p125777 +tp125778 +a(g125775 +g125777 +S'was' +p125779 +tp125780 +a(g125777 +g125779 +S'skeptical' +p125781 +tp125782 +a(g125779 +g125781 +S'of' +p125783 +tp125784 +a(g125781 +g125783 +S'god’s' +p125785 +tp125786 +a(g125783 +g125785 +S'announcement' +p125787 +tp125788 +a(g125785 +g125787 +S'that' +p125789 +tp125790 +a(g125787 +g125789 +S'his' +p125791 +tp125792 +a(g125789 +g125791 +S'elderly' +p125793 +tp125794 +a(g125791 +g125793 +S'wife' +p125795 +tp125796 +a(g125793 +g125795 +S'would' +p125797 +tp125798 +a(g125795 +g125797 +S'conceive.' +p125799 +tp125800 +a(g125797 +g125799 +S'one' +p125801 +tp125802 +a(g125799 +g125801 +S'witness' +p125803 +tp125804 +a(g125801 +g125803 +S'looks' +p125805 +tp125806 +a(g125803 +g125805 +S'right,' +p125807 +tp125808 +a(g125805 +g125807 +S'leading' +p125809 +tp125810 +a(g125807 +g125809 +S'our' +p125811 +tp125812 +a(g125809 +g125811 +S'eye' +p125813 +tp125814 +a(g125811 +g125813 +S'to' +p125815 +tp125816 +a(g125813 +g125815 +S'the' +p125817 +tp125818 +a(g125815 +g125817 +S'third' +p125819 +tp125820 +a(g125817 +g125819 +S'scene,' +p125821 +tp125822 +a(g125819 +g125821 +S'where' +p125823 +tp125824 +a(g125821 +g125823 +S'the' +p125825 +tp125826 +a(g125823 +g125825 +S'infant' +p125827 +tp125828 +a(g125825 +g125827 +S'john' +p125829 +tp125830 +a(g125827 +g125829 +S'struggles' +p125831 +tp125832 +a(g125829 +g125831 +S'while' +p125833 +tp125834 +a(g125831 +g125833 +S'being' +p125835 +tp125836 +a(g125833 +g125835 +S'circumcised.' +p125837 +tp125838 +a(g125835 +g125837 +S'the' +p125839 +tp125840 +a(g125837 +g125839 +S'panel’s' +p125841 +tp125842 +a(g125839 +g125841 +S'strong' +p125843 +tp125844 +a(g125841 +g125843 +S'narrative' +p125845 +tp125846 +a(g125843 +g125845 +S'sense' +p125847 +tp125848 +a(g125845 +g125847 +S'and' +p125849 +tp125850 +a(g125847 +g125849 +S'broad,' +p125851 +tp125852 +a(g125849 +g125851 +S'simple' +p125853 +tp125854 +a(g125851 +g125853 +S'figures' +p125855 +tp125856 +a(g125853 +g125855 +S'reflect' +p125857 +tp125858 +a(g125855 +g125857 +S'giotto’s' +p125859 +tp125860 +a(g125857 +g125859 +S'influence.' +p125861 +tp125862 +a(g125859 +g125861 +S'but' +p125863 +tp125864 +a(g125861 +g125863 +S'its' +p125865 +tp125866 +a(g125863 +g125865 +S'strongly' +p125867 +tp125868 +a(g125865 +g125867 +S'contrasting' +p125869 +tp125870 +a(g125867 +g125869 +S'colors' +p125871 +tp125872 +a(g125869 +g125871 +S'and' +p125873 +tp125874 +a(g125871 +g125873 +S'rich' +p125875 +tp125876 +a(g125873 +g125875 +S'detail—the' +p125877 +tp125878 +a(g125875 +g125877 +S'patterned' +p125879 +tp125880 +a(g125877 +g125879 +S'background,' +p125881 +tp125882 +a(g125879 +g125881 +S'the' +p125883 +tp125884 +a(g125881 +g125883 +S'heavy' +p125885 +tp125886 +a(g125883 +g125885 +S'curtains,' +p125887 +tp125888 +a(g125885 +g125887 +S'and' +p125889 +tp125890 +a(g125887 +g125889 +S'architectural' +p125891 +tp125892 +a(g125889 +g125891 +S'decoration—express' +p125893 +tp125894 +a(g125891 +g125893 +S'the' +p125895 +tp125896 +a(g125893 +g125895 +S'younger' +p125897 +tp125898 +a(g125895 +g125897 +S'artist’s' +p125899 +tp125900 +a(g125897 +g125899 +S'own' +p125901 +tp125902 +a(g125899 +g125901 +S'preferences.' +p125903 +tp125904 +a(g125901 +g125903 +S'throughout' +p125905 +tp125906 +a(g125903 +g125905 +S'his' +p125907 +tp125908 +a(g125905 +g125907 +S'career' +p125909 +tp125910 +a(g125907 +g125909 +S'tiepolo' +p125911 +tp125912 +a(g125909 +g125911 +S'painted' +p125913 +tp125914 +a(g125911 +g125913 +S'small' +p125915 +tp125916 +a(g125913 +g125915 +S'pictures' +p125917 +tp125918 +a(g125915 +g125917 +S'of' +p125919 +tp125920 +a(g125917 +g125919 +S'mythological' +p125921 +tp125922 +a(g125919 +g125921 +S'themes,' +p125923 +tp125924 +a(g125921 +g125923 +S'which' +p125925 +tp125926 +a(g125923 +g125925 +S'proved' +p125927 +tp125928 +a(g125925 +g125927 +S'extremely' +p125929 +tp125930 +a(g125927 +g125929 +S'popular.' +p125931 +tp125932 +a(g125929 +g125931 +S'the' +p125933 +tp125934 +a(g125931 +g125933 +S'subjects' +p125935 +tp125936 +a(g125933 +g125935 +S'of' +p125937 +tp125938 +a(g125935 +g125937 +S'these' +p125939 +tp125940 +a(g125937 +g125939 +S'works' +p125941 +tp125942 +a(g125939 +g125941 +S'came' +p125943 +tp125944 +a(g125941 +g125943 +S'from' +p125945 +tp125946 +a(g125943 +g125945 +S'the' +p125947 +tp125948 +a(g125945 +g125947 +S'best–known' +p125949 +tp125950 +a(g125947 +g125949 +S'episodes' +p125951 +tp125952 +a(g125949 +g125951 +S'from' +p125953 +tp125954 +a(g125951 +g125953 +S'ancient' +p125955 +tp125956 +a(g125953 +g125955 +S'literature,' +p125957 +tp125958 +a(g125955 +g125957 +S'but' +p125959 +tp125960 +a(g125957 +g125959 +S'his' +p125961 +tp125962 +a(g125959 +g125961 +S'conception' +p125963 +tp125964 +a(g125961 +g125963 +S'of' +p125965 +tp125966 +a(g125963 +g125965 +S'the' +p125967 +tp125968 +a(g125965 +g125967 +S'stories' +p125969 +tp125970 +a(g125967 +g125969 +S'was' +p125971 +tp125972 +a(g125969 +g125971 +S'varied' +p125973 +tp125974 +a(g125971 +g125973 +S'and' +p125975 +tp125976 +a(g125973 +g125975 +S'original.' +p125977 +tp125978 +a(g125975 +g125977 +S'his' +p125979 +tp125980 +a(g125977 +g125979 +S'depiction' +p125981 +tp125982 +a(g125979 +g125981 +S'of' +p125983 +tp125984 +a(g125981 +g125983 +S'apollo' +p125985 +tp125986 +a(g125983 +g125985 +S'and' +p125987 +tp125988 +a(g125985 +g125987 +S'daphne' +p125989 +tp125990 +a(g125987 +g125989 +S'comes' +p125991 +tp125992 +a(g125989 +g125991 +S'directly' +p125993 +tp125994 +a(g125991 +g125993 +S'from' +p125995 +tp125996 +a(g125993 +g125995 +S"ovid's" +p125997 +tp125998 +a(g125995 +g125997 +S'the' +p125999 +tp126000 +a(g125997 +g125999 +S'beginning' +p126001 +tp126002 +a(g125999 +g126001 +S'in' +p126003 +tp126004 +a(g126001 +g126003 +S'the' +p126005 +tp126006 +a(g126003 +g126005 +S'1550s,' +p126007 +tp126008 +a(g126005 +g126007 +S'tintoretto' +p126009 +tp126010 +a(g126007 +g126009 +S'and' +p126011 +tp126012 +a(g126009 +g126011 +S'his' +p126013 +tp126014 +a(g126011 +g126013 +S'studio' +p126015 +tp126016 +a(g126013 +g126015 +S'received' +p126017 +tp126018 +a(g126015 +g126017 +S'numerous' +p126019 +tp126020 +a(g126017 +g126019 +S'commissions' +p126021 +tp126022 +a(g126019 +g126021 +S'for' +p126023 +tp126024 +a(g126021 +g126023 +S'portraits' +p126025 +tp126026 +a(g126023 +g126025 +S'of' +p126027 +tp126028 +a(g126025 +g126027 +S'venetian' +p126029 +tp126030 +a(g126027 +g126029 +S'civic' +p126031 +tp126032 +a(g126029 +g126031 +S'leaders.' +p126033 +tp126034 +a(g126031 +g126033 +S'this' +p126035 +tp126036 +a(g126033 +g126035 +S'work,' +p126037 +tp126038 +a(g126035 +g126037 +S'painted' +p126039 +tp126040 +a(g126037 +g126039 +S'entirely' +p126041 +tp126042 +a(g126039 +g126041 +S'by' +p126043 +tp126044 +a(g126041 +g126043 +S'tintoretto' +p126045 +tp126046 +a(g126043 +g126045 +S'between' +p126047 +tp126048 +a(g126045 +g126047 +S'1575' +p126049 +tp126050 +a(g126047 +g126049 +S'and' +p126051 +tp126052 +a(g126049 +g126051 +S'1585,' +p126053 +tp126054 +a(g126051 +g126053 +S'is' +p126055 +tp126056 +a(g126053 +g126055 +S'one' +p126057 +tp126058 +a(g126055 +g126057 +S'of' +p126059 +tp126060 +a(g126057 +g126059 +S'the' +p126061 +tp126062 +a(g126059 +g126061 +S'finest' +p126063 +tp126064 +a(g126061 +g126063 +S'surviving' +p126065 +tp126066 +a(g126063 +g126065 +S'examples' +p126067 +tp126068 +a(g126065 +g126067 +S'of' +p126069 +tp126070 +a(g126067 +g126069 +S'a' +p126071 +tp126072 +a(g126069 +g126071 +S'new' +p126073 +tp126074 +a(g126071 +g126073 +S'and' +p126075 +tp126076 +a(g126073 +g126075 +S'fashionable' +p126077 +tp126078 +a(g126075 +g126077 +S'portrait' +p126079 +tp126080 +a(g126077 +g126079 +S'type.' +p126081 +tp126082 +a(g126079 +g126081 +S'the' +p126083 +tp126084 +a(g126081 +g126083 +S'sitter' +p126085 +tp126086 +a(g126083 +g126085 +S'is' +p126087 +tp126088 +a(g126085 +g126087 +S'dressed' +p126089 +tp126090 +a(g126087 +g126089 +S'in' +p126091 +tp126092 +a(g126089 +g126091 +S'a' +p126093 +tp126094 +a(g126091 +g126093 +S'crimson' +p126095 +tp126096 +a(g126093 +g126095 +S'velvet' +p126097 +tp126098 +a(g126095 +g126097 +S'robe' +p126099 +tp126100 +a(g126097 +g126099 +S'lined' +p126101 +tp126102 +a(g126099 +g126101 +S'with' +p126103 +tp126104 +a(g126101 +g126103 +S'ermine.' +p126105 +tp126106 +a(g126103 +g126105 +S'a' +p126107 +tp126108 +a(g126105 +g126107 +S'richly' +p126109 +tp126110 +a(g126107 +g126109 +S'patterned' +p126111 +tp126112 +a(g126109 +g126111 +S'stole' +p126113 +tp126114 +a(g126111 +g126113 +S'is' +p126115 +tp126116 +a(g126113 +g126115 +S'draped' +p126117 +tp126118 +a(g126115 +g126117 +S'over' +p126119 +tp126120 +a(g126117 +g126119 +S'his' +p126121 +tp126122 +a(g126119 +g126121 +S'right' +p126123 +tp126124 +a(g126121 +g126123 +S'shoulder.' +p126125 +tp126126 +a(g126123 +g126125 +S'together,' +p126127 +tp126128 +a(g126125 +g126127 +S'these' +p126129 +tp126130 +a(g126127 +g126129 +S'garments' +p126131 +tp126132 +a(g126129 +g126131 +S'identify' +p126133 +tp126134 +a(g126131 +g126133 +S'him' +p126135 +tp126136 +a(g126133 +g126135 +S'as' +p126137 +tp126138 +a(g126135 +g126137 +S'a' +p126139 +tp126140 +a(g126137 +g126139 +S'procurator,' +p126141 +tp126142 +a(g126139 +g126141 +S'a' +p126143 +tp126144 +a(g126141 +g126143 +S'venetian' +p126145 +tp126146 +a(g126143 +g126145 +S'civic' +p126147 +tp126148 +a(g126145 +g126147 +S'official' +p126149 +tp126150 +a(g126147 +g126149 +S'similar' +p126151 +tp126152 +a(g126149 +g126151 +S'to' +p126153 +tp126154 +a(g126151 +g126153 +S'a' +p126155 +tp126156 +a(g126153 +g126155 +S'chancellor' +p126157 +tp126158 +a(g126155 +g126157 +S'or' +p126159 +tp126160 +a(g126157 +g126159 +S'senator.' +p126161 +tp126162 +a(g126159 +g126161 +S'seated' +p126163 +tp126164 +a(g126161 +g126163 +S'in' +p126165 +tp126166 +a(g126163 +g126165 +S'a' +p126167 +tp126168 +a(g126165 +g126167 +S'three-quarter' +p126169 +tp126170 +a(g126167 +g126169 +S'pose,' +p126171 +tp126172 +a(g126169 +g126171 +S'the' +p126173 +tp126174 +a(g126171 +g126173 +S'man' +p126175 +tp126176 +a(g126173 +g126175 +S'turns' +p126177 +tp126178 +a(g126175 +g126177 +S'his' +p126179 +tp126180 +a(g126177 +g126179 +S'head' +p126181 +tp126182 +a(g126179 +g126181 +S'as' +p126183 +tp126184 +a(g126181 +g126183 +S'if' +p126185 +tp126186 +a(g126183 +g126185 +S'to' +p126187 +tp126188 +a(g126185 +g126187 +S'address' +p126189 +tp126190 +a(g126187 +g126189 +S'the' +p126191 +tp126192 +a(g126189 +g126191 +S'viewer.' +p126193 +tp126194 +a(g126191 +g126193 +S'his' +p126195 +tp126196 +a(g126193 +g126195 +S'position' +p126197 +tp126198 +a(g126195 +g126197 +S'of' +p126199 +tp126200 +a(g126197 +g126199 +S'authority' +p126201 +tp126202 +a(g126199 +g126201 +S'is' +p126203 +tp126204 +a(g126201 +g126203 +S'conveyed' +p126205 +tp126206 +a(g126203 +g126205 +S'by' +p126207 +tp126208 +a(g126205 +g126207 +S'his' +p126209 +tp126210 +a(g126207 +g126209 +S'serious' +p126211 +tp126212 +a(g126209 +g126211 +S'expression' +p126213 +tp126214 +a(g126211 +g126213 +S'and' +p126215 +tp126216 +a(g126213 +g126215 +S'his' +p126217 +tp126218 +a(g126215 +g126217 +S'firm' +p126219 +tp126220 +a(g126217 +g126219 +S'grip' +p126221 +tp126222 +a(g126219 +g126221 +S'on' +p126223 +tp126224 +a(g126221 +g126223 +S'the' +p126225 +tp126226 +a(g126223 +g126225 +S'arm' +p126227 +tp126228 +a(g126225 +g126227 +S'of' +p126229 +tp126230 +a(g126227 +g126229 +S'the' +p126231 +tp126232 +a(g126229 +g126231 +S'chair.' +p126233 +tp126234 +a(g126231 +g126233 +S'the' +p126235 +tp126236 +a(g126233 +g126235 +S"painting's" +p126237 +tp126238 +a(g126235 +g126237 +S'large' +p126239 +tp126240 +a(g126237 +g126239 +S'format' +p126241 +tp126242 +a(g126239 +g126241 +S'and' +p126243 +tp126244 +a(g126241 +g126243 +S'the' +p126245 +tp126246 +a(g126243 +g126245 +S'voluminous' +p126247 +tp126248 +a(g126245 +g126247 +S'bulk' +p126249 +tp126250 +a(g126247 +g126249 +S'of' +p126251 +tp126252 +a(g126249 +g126251 +S'the' +p126253 +tp126254 +a(g126251 +g126253 +S'costume' +p126255 +tp126256 +a(g126253 +g126255 +S'reinforce' +p126257 +tp126258 +a(g126255 +g126257 +S'the' +p126259 +tp126260 +a(g126257 +g126259 +S'unidentified' +p126261 +tp126262 +a(g126259 +g126261 +S"sitter's" +p126263 +tp126264 +a(g126261 +g126263 +S'high' +p126265 +tp126266 +a(g126263 +g126265 +S'official' +p126267 +tp126268 +a(g126265 +g126267 +S'status.' +p126269 +tp126270 +a(g126267 +g126269 +S'with' +p126271 +tp126272 +a(g126269 +g126271 +S'its' +p126273 +tp126274 +a(g126271 +g126273 +S'saturated' +p126275 +tp126276 +a(g126273 +g126275 +S'colors' +p126277 +tp126278 +a(g126275 +g126277 +S'and' +p126279 +tp126280 +a(g126277 +g126279 +S'assured' +p126281 +tp126282 +a(g126279 +g126281 +S'brushwork,' +p126283 +tp126284 +a(g126281 +g126283 +S'this' +p126285 +tp126286 +a(g126283 +g126285 +S'portrait' +p126287 +tp126288 +a(g126285 +g126287 +S'stands' +p126289 +tp126290 +a(g126287 +g126289 +S'out' +p126291 +tp126292 +a(g126289 +g126291 +S'as' +p126293 +tp126294 +a(g126291 +g126293 +S'a' +p126295 +tp126296 +a(g126293 +g126295 +S'superb' +p126297 +tp126298 +a(g126295 +g126297 +S'example' +p126299 +tp126300 +a(g126297 +g126299 +S'of' +p126301 +tp126302 +a(g126299 +g126301 +S"tintoretto's" +p126303 +tp126304 +a(g126301 +g126303 +S'later' +p126305 +tp126306 +a(g126303 +g126305 +S'painting' +p126307 +tp126308 +a(g126305 +g126307 +S'style.' +p126309 +tp126310 +a(g126307 +g126309 +S'while' +p126311 +tp126312 +a(g126309 +g126311 +S'the' +p126313 +tp126314 +a(g126311 +g126313 +S'garment' +p126315 +tp126316 +a(g126313 +g126315 +S'is' +p126317 +tp126318 +a(g126315 +g126317 +S'very' +p126319 +tp126320 +a(g126317 +g126319 +S'thinly' +p126321 +tp126322 +a(g126319 +g126321 +S'painted' +p126323 +tp126324 +a(g126321 +g126323 +S'with' +p126325 +tp126326 +a(g126323 +g126325 +S'red' +p126327 +tp126328 +a(g126325 +g126327 +S'glazes,' +p126329 +tp126330 +a(g126327 +g126329 +S'broad' +p126331 +tp126332 +a(g126329 +g126331 +S'strokes' +p126333 +tp126334 +a(g126331 +g126333 +S'of' +p126335 +tp126336 +a(g126333 +g126335 +S'white' +p126337 +tp126338 +a(g126335 +g126337 +S'create' +p126339 +tp126340 +a(g126337 +g126339 +S'highlights' +p126341 +tp126342 +a(g126339 +g126341 +S'on' +p126343 +tp126344 +a(g126341 +g126343 +S'the' +p126345 +tp126346 +a(g126343 +g126345 +S'edges' +p126347 +tp126348 +a(g126345 +g126347 +S'of' +p126349 +tp126350 +a(g126347 +g126349 +S'the' +p126351 +tp126352 +a(g126349 +g126351 +S'fabric' +p126353 +tp126354 +a(g126351 +g126353 +S'folds.' +p126355 +tp126356 +a(g126353 +g126355 +S'as' +p126357 +tp126358 +a(g126355 +g126357 +S'suggested' +p126359 +tp126360 +a(g126357 +g126359 +S'by' +p126361 +tp126362 +a(g126359 +g126361 +S'his' +p126363 +tp126364 +a(g126361 +g126363 +S'name' +p126365 +tp126366 +a(g126363 +g126365 +S'of' +p126367 +tp126368 +a(g126365 +g126367 +S'veronese,' +p126369 +tp126370 +a(g126367 +g126369 +S'paolo' +p126371 +tp126372 +a(g126369 +g126371 +S'caliari' +p126373 +tp126374 +a(g126371 +g126373 +S'was' +p126375 +tp126376 +a(g126373 +g126375 +S'born' +p126377 +tp126378 +a(g126375 +g126377 +S'in' +p126379 +tp126380 +a(g126377 +g126379 +S'the' +p126381 +tp126382 +a(g126379 +g126381 +S'northern' +p126383 +tp126384 +a(g126381 +g126383 +S'italian' +p126385 +tp126386 +a(g126383 +g126385 +S'town' +p126387 +tp126388 +a(g126385 +g126387 +S'of' +p126389 +tp126390 +a(g126387 +g126389 +S'verona.' +p126391 +tp126392 +a(g126389 +g126391 +S'following' +p126393 +tp126394 +a(g126391 +g126393 +S'his' +p126395 +tp126396 +a(g126393 +g126395 +S'training' +p126397 +tp126398 +a(g126395 +g126397 +S'and' +p126399 +tp126400 +a(g126397 +g126399 +S'early' +p126401 +tp126402 +a(g126399 +g126401 +S'success' +p126403 +tp126404 +a(g126401 +g126403 +S'there,' +p126405 +tp126406 +a(g126403 +g126405 +S'the' +p126407 +tp126408 +a(g126405 +g126407 +S'artist' +p126409 +tp126410 +a(g126407 +g126409 +S'moved' +p126411 +tp126412 +a(g126409 +g126411 +S'to' +p126413 +tp126414 +a(g126411 +g126413 +S'venice' +p126415 +tp126416 +a(g126413 +g126415 +S'in' +p126417 +tp126418 +a(g126415 +g126417 +S'1553,' +p126419 +tp126420 +a(g126417 +g126419 +S'where' +p126421 +tp126422 +a(g126419 +g126421 +S'he,' +p126423 +tp126424 +a(g126421 +g126423 +S'like' +p126425 +tp126426 +a(g126423 +g126425 +S'tintoretto' +p126427 +tp126428 +a(g126425 +g126427 +S'and' +p126429 +tp126430 +a(g126427 +g126429 +S'bassano,' +p126431 +tp126432 +a(g126429 +g126431 +S'was' +p126433 +tp126434 +a(g126431 +g126433 +S'influenced' +p126435 +tp126436 +a(g126433 +g126435 +S'by' +p126437 +tp126438 +a(g126435 +g126437 +S"titian's" +p126439 +tp126440 +a(g126437 +g126439 +S'bold' +p126441 +tp126442 +a(g126439 +g126441 +S'coloristic' +p126443 +tp126444 +a(g126441 +g126443 +S'and' +p126445 +tp126446 +a(g126443 +g126445 +S'compositional' +p126447 +tp126448 +a(g126445 +g126447 +S'approaches.' +p126449 +tp126450 +a(g126447 +g126449 +S'the' +p126451 +tp126452 +a(g126449 +g126451 +S'story' +p126453 +tp126454 +a(g126451 +g126453 +S'of' +p126455 +tp126456 +a(g126453 +g126455 +S'rebecca' +p126457 +tp126458 +a(g126455 +g126457 +S'at' +p126459 +tp126460 +a(g126457 +g126459 +S'the' +p126461 +tp126462 +a(g126459 +g126461 +S'well' +p126463 +tp126464 +a(g126461 +g126463 +S'comes' +p126465 +tp126466 +a(g126463 +g126465 +S'from' +p126467 +tp126468 +a(g126465 +g126467 +S'the' +p126469 +tp126470 +a(g126467 +g126469 +S'book' +p126471 +tp126472 +a(g126469 +g126471 +S'of' +p126473 +tp126474 +a(g126471 +g126473 +S'genesis.' +p126475 +tp126476 +a(g126473 +g126475 +S'the' +p126477 +tp126478 +a(g126475 +g126477 +S'aged' +p126479 +tp126480 +a(g126477 +g126479 +S'abraham,' +p126481 +tp126482 +a(g126479 +g126481 +S'wanting' +p126483 +tp126484 +a(g126481 +g126483 +S'a' +p126485 +tp126486 +a(g126483 +g126485 +S'wife' +p126487 +tp126488 +a(g126485 +g126487 +S'for' +p126489 +tp126490 +a(g126487 +g126489 +S'his' +p126491 +tp126492 +a(g126489 +g126491 +S'son' +p126493 +tp126494 +a(g126491 +g126493 +S'isaac,' +p126495 +tp126496 +a(g126493 +g126495 +S'sent' +p126497 +tp126498 +a(g126495 +g126497 +S'his' +p126499 +tp126500 +a(g126497 +g126499 +S'servant' +p126501 +tp126502 +a(g126499 +g126501 +S'eliezer' +p126503 +tp126504 +a(g126501 +g126503 +S'to' +p126505 +tp126506 +a(g126503 +g126505 +S'his' +p126507 +tp126508 +a(g126505 +g126507 +S'homeland' +p126509 +tp126510 +a(g126507 +g126509 +S'of' +p126511 +tp126512 +a(g126509 +g126511 +S'mesopotamia' +p126513 +tp126514 +a(g126511 +g126513 +S'to' +p126515 +tp126516 +a(g126513 +g126515 +S'find' +p126517 +tp126518 +a(g126515 +g126517 +S'a' +p126519 +tp126520 +a(g126517 +g126519 +S'suitable' +p126521 +tp126522 +a(g126519 +g126521 +S'woman.' +p126523 +tp126524 +a(g126521 +g126523 +S'tired' +p126525 +tp126526 +a(g126523 +g126525 +S'after' +p126527 +tp126528 +a(g126525 +g126527 +S'his' +p126529 +tp126530 +a(g126527 +g126529 +S'long' +p126531 +tp126532 +a(g126529 +g126531 +S'journey,' +p126533 +tp126534 +a(g126531 +g126533 +S'eliezer' +p126535 +tp126536 +a(g126533 +g126535 +S'stopped' +p126537 +tp126538 +a(g126535 +g126537 +S'at' +p126539 +tp126540 +a(g126537 +g126539 +S'a' +p126541 +tp126542 +a(g126539 +g126541 +S'well' +p126543 +tp126544 +a(g126541 +g126543 +S'and' +p126545 +tp126546 +a(g126543 +g126545 +S'prayed' +p126547 +tp126548 +a(g126545 +g126547 +S'for' +p126549 +tp126550 +a(g126547 +g126549 +S'guidance.' +p126551 +tp126552 +a(g126549 +g126551 +S'when' +p126553 +tp126554 +a(g126551 +g126553 +S'rebecca' +p126555 +tp126556 +a(g126553 +g126555 +S'offered' +p126557 +tp126558 +a(g126555 +g126557 +S'water' +p126559 +tp126560 +a(g126557 +g126559 +S'to' +p126561 +tp126562 +a(g126559 +g126561 +S'eliezer' +p126563 +tp126564 +a(g126561 +g126563 +S'and' +p126565 +tp126566 +a(g126563 +g126565 +S'his' +p126567 +tp126568 +a(g126565 +g126567 +S'camels,' +p126569 +tp126570 +a(g126567 +g126569 +S'the' +p126571 +tp126572 +a(g126569 +g126571 +S'old' +p126573 +tp126574 +a(g126571 +g126573 +S'steward' +p126575 +tp126576 +a(g126573 +g126575 +S'recognized' +p126577 +tp126578 +a(g126575 +g126577 +S'her' +p126579 +tp126580 +a(g126577 +g126579 +S'as' +p126581 +tp126582 +a(g126579 +g126581 +S'the' +p126583 +tp126584 +a(g126581 +g126583 +S'appointed' +p126585 +tp126586 +a(g126583 +g126585 +S'bride' +p126587 +tp126588 +a(g126585 +g126587 +S'and' +p126589 +tp126590 +a(g126587 +g126589 +S'presented' +p126591 +tp126592 +a(g126589 +g126591 +S'her' +p126593 +tp126594 +a(g126591 +g126593 +S'with' +p126595 +tp126596 +a(g126593 +g126595 +S'the' +p126597 +tp126598 +a(g126595 +g126597 +S'betrothal' +p126599 +tp126600 +a(g126597 +g126599 +S'jewels' +p126601 +tp126602 +a(g126599 +g126601 +S'offered' +p126603 +tp126604 +a(g126601 +g126603 +S'by' +p126605 +tp126606 +a(g126603 +g126605 +S'the' +p126607 +tp126608 +a(g126605 +g126607 +S'kneeling' +p126609 +tp126610 +a(g126607 +g126609 +S'servant.' +p126611 +tp126612 +a(g126609 +g126611 +S'originally' +p126613 +tp126614 +a(g126611 +g126613 +S'part' +p126615 +tp126616 +a(g126613 +g126615 +S'of' +p126617 +tp126618 +a(g126615 +g126617 +S'a' +p126619 +tp126620 +a(g126617 +g126619 +S'decorative' +p126621 +tp126622 +a(g126619 +g126621 +S'cycle' +p126623 +tp126624 +a(g126621 +g126623 +S'of' +p126625 +tp126626 +a(g126623 +g126625 +S'ten' +p126627 +tp126628 +a(g126625 +g126627 +S'biblical' +p126629 +tp126630 +a(g126627 +g126629 +S'scenes,' +p126631 +tp126632 +a(g126629 +g126631 +S'this' +p126633 +tp126634 +a(g126631 +g126633 +S'large' +p126635 +tp126636 +a(g126633 +g126635 +S'canvas' +p126637 +tp126638 +a(g126635 +g126637 +S'displays' +p126639 +tp126640 +a(g126637 +g126639 +S'an' +p126641 +tp126642 +a(g126639 +g126641 +S'interest' +p126643 +tp126644 +a(g126641 +g126643 +S'in' +p126645 +tp126646 +a(g126643 +g126645 +S'nature' +p126647 +tp126648 +a(g126645 +g126647 +S'that' +p126649 +tp126650 +a(g126647 +g126649 +S'is' +p126651 +tp126652 +a(g126649 +g126651 +S'often' +p126653 +tp126654 +a(g126651 +g126653 +S'noted' +p126655 +tp126656 +a(g126653 +g126655 +S'in' +p126657 +tp126658 +a(g126655 +g126657 +S"veronese's" +p126659 +tp126660 +a(g126657 +g126659 +S'later' +p126661 +tp126662 +a(g126659 +g126661 +S'works.' +p126663 +tp126664 +a(g126661 +g126663 +S'the' +p126665 +tp126666 +a(g126663 +g126665 +S'deeply' +p126667 +tp126668 +a(g126665 +g126667 +S'receding' +p126669 +tp126670 +a(g126667 +g126669 +S'landscape' +p126671 +tp126672 +a(g126669 +g126671 +S'at' +p126673 +tp126674 +a(g126671 +g126673 +S'right' +p126675 +tp126676 +a(g126673 +g126675 +S'balances' +p126677 +tp126678 +a(g126675 +g126677 +S'the' +p126679 +tp126680 +a(g126677 +g126679 +S'large,' +p126681 +tp126682 +a(g126679 +g126681 +S'elegantly' +p126683 +tp126684 +a(g126681 +g126683 +S'posed' +p126685 +tp126686 +a(g126683 +g126685 +S'figures' +p126687 +tp126688 +a(g126685 +g126687 +S'in' +p126689 +tp126690 +a(g126687 +g126689 +S'the' +p126691 +tp126692 +a(g126689 +g126691 +S'left' +p126693 +tp126694 +a(g126691 +g126693 +S'foreground.' +p126695 +tp126696 +a(g126693 +g126695 +S'gleaming' +p126697 +tp126698 +a(g126695 +g126697 +S'copper' +p126699 +tp126700 +a(g126697 +g126699 +S'pots' +p126701 +tp126702 +a(g126699 +g126701 +S'and' +p126703 +tp126704 +a(g126701 +g126703 +S'luxurious' +p126705 +tp126706 +a(g126703 +g126705 +S'orange,' +p126707 +tp126708 +a(g126705 +g126707 +S'rose,' +p126709 +tp126710 +a(g126707 +g126709 +S'and' +p126711 +tp126712 +a(g126709 +g126711 +S'yellow' +p126713 +tp126714 +a(g126711 +g126713 +S'fabrics' +p126715 +tp126716 +a(g126713 +g126715 +S'provide' +p126717 +tp126718 +a(g126715 +g126717 +S'a' +p126719 +tp126720 +a(g126717 +g126719 +S'sharp' +p126721 +tp126722 +a(g126719 +g126721 +S'contrast' +p126723 +tp126724 +a(g126721 +g126723 +S'with' +p126725 +tp126726 +a(g126723 +g126725 +S'the' +p126727 +tp126728 +a(g126725 +g126727 +S'darkness' +p126729 +tp126730 +a(g126727 +g126729 +S'of' +p126731 +tp126732 +a(g126729 +g126731 +S'the' +p126733 +tp126734 +a(g126731 +g126733 +S'lush' +p126735 +tp126736 +a(g126733 +g126735 +S'vegetation' +p126737 +tp126738 +a(g126735 +g126737 +S'and' +p126739 +tp126740 +a(g126737 +g126739 +S'the' +p126741 +tp126742 +a(g126739 +g126741 +S'evening' +p126743 +tp126744 +a(g126741 +g126743 +S'sky.' +p126745 +tp126746 +a(g126743 +g126745 +S'the' +p126747 +tp126748 +a(g126745 +g126747 +S'fanciful' +p126749 +tp126750 +a(g126747 +g126749 +S'camels' +p126751 +tp126752 +a(g126749 +g126751 +S'add' +p126753 +tp126754 +a(g126751 +g126753 +S'an' +p126755 +tp126756 +a(g126753 +g126755 +S'exotic' +p126757 +tp126758 +a(g126755 +g126757 +S'touch' +p126759 +tp126760 +a(g126757 +g126759 +S'to' +p126761 +tp126762 +a(g126759 +g126761 +S"veronese's" +p126763 +tp126764 +a(g126761 +g126763 +S'poetic' +p126765 +tp126766 +a(g126763 +g126765 +S'interpretation' +p126767 +tp126768 +a(g126765 +g126767 +S'of' +p126769 +tp126770 +a(g126767 +g126769 +S'the' +p126771 +tp126772 +a(g126769 +g126771 +S'story.' +p126773 +tp126774 +a(g126771 +g126773 +S'saint' +p126775 +tp126776 +a(g126773 +g126775 +S'clare,' +p126777 +tp126778 +a(g126775 +g126777 +S'a' +p126779 +tp126780 +a(g126777 +g126779 +S'wealthy' +p126781 +tp126782 +a(g126779 +g126781 +S'woman' +p126783 +tp126784 +a(g126781 +g126783 +S'from' +p126785 +tp126786 +a(g126783 +g126785 +S'the' +p126787 +tp126788 +a(g126785 +g126787 +S'central' +p126789 +tp126790 +a(g126787 +g126789 +S'italian' +p126791 +tp126792 +a(g126789 +g126791 +S'town' +p126793 +tp126794 +a(g126791 +g126793 +S'of' +p126795 +tp126796 +a(g126793 +g126795 +S'assisi,' +p126797 +tp126798 +a(g126795 +g126797 +S'gave' +p126799 +tp126800 +a(g126797 +g126799 +S'up' +p126801 +tp126802 +a(g126799 +g126801 +S'all' +p126803 +tp126804 +a(g126801 +g126803 +S'her' +p126805 +tp126806 +a(g126803 +g126805 +S'possessions' +p126807 +tp126808 +a(g126805 +g126807 +S'to' +p126809 +tp126810 +a(g126807 +g126809 +S'pursue' +p126811 +tp126812 +a(g126809 +g126811 +S'the' +p126813 +tp126814 +a(g126811 +g126813 +S'goals' +p126815 +tp126816 +a(g126813 +g126815 +S'of' +p126817 +tp126818 +a(g126815 +g126817 +S'poverty' +p126819 +tp126820 +a(g126817 +g126819 +S'and' +p126821 +tp126822 +a(g126819 +g126821 +S'service' +p126823 +tp126824 +a(g126821 +g126823 +S'preached' +p126825 +tp126826 +a(g126823 +g126825 +S'by' +p126827 +tp126828 +a(g126825 +g126827 +S'saint' +p126829 +tp126830 +a(g126827 +g126829 +S'francis.' +p126831 +tp126832 +a(g126829 +g126831 +S'she' +p126833 +tp126834 +a(g126831 +g126833 +S'founded' +p126835 +tp126836 +a(g126833 +g126835 +S'an' +p126837 +tp126838 +a(g126835 +g126837 +S'order' +p126839 +tp126840 +a(g126837 +g126839 +S'of' +p126841 +tp126842 +a(g126839 +g126841 +S'nuns' +p126843 +tp126844 +a(g126841 +g126843 +S'known' +p126845 +tp126846 +a(g126843 +g126845 +S'as' +p126847 +tp126848 +a(g126845 +g126847 +S'the' +p126849 +tp126850 +a(g126847 +g126849 +S'poor' +p126851 +tp126852 +a(g126849 +g126851 +S'clares,' +p126853 +tp126854 +a(g126851 +g126853 +S'which' +p126855 +tp126856 +a(g126853 +g126855 +S'was' +p126857 +tp126858 +a(g126855 +g126857 +S'recognized' +p126859 +tp126860 +a(g126857 +g126859 +S'by' +p126861 +tp126862 +a(g126859 +g126861 +S'the' +p126863 +tp126864 +a(g126861 +g126863 +S'pope' +p126865 +tp126866 +a(g126863 +g126865 +S'in' +p126867 +tp126868 +a(g126865 +g126867 +S'1253.' +p126869 +tp126870 +a(g126867 +g126869 +S'this' +p126871 +tp126872 +a(g126869 +g126871 +S'painting' +p126873 +tp126874 +a(g126871 +g126873 +S'depicts' +p126875 +tp126876 +a(g126873 +g126875 +S'the' +p126877 +tp126878 +a(g126875 +g126877 +S'vision' +p126879 +tp126880 +a(g126877 +g126879 +S'of' +p126881 +tp126882 +a(g126879 +g126881 +S'the' +p126883 +tp126884 +a(g126881 +g126883 +S'death' +p126885 +tp126886 +a(g126883 +g126885 +S'of' +p126887 +tp126888 +a(g126885 +g126887 +S'saint' +p126889 +tp126890 +a(g126887 +g126889 +S'clare' +p126891 +tp126892 +a(g126889 +g126891 +S'as' +p126893 +tp126894 +a(g126891 +g126893 +S'experienced' +p126895 +tp126896 +a(g126893 +g126895 +S'by' +p126897 +tp126898 +a(g126895 +g126897 +S'one' +p126899 +tp126900 +a(g126897 +g126899 +S'of' +p126901 +tp126902 +a(g126899 +g126901 +S'her' +p126903 +tp126904 +a(g126901 +g126903 +S'followers,' +p126905 +tp126906 +a(g126903 +g126905 +S'sister' +p126907 +tp126908 +a(g126905 +g126907 +S'benvenuta' +p126909 +tp126910 +a(g126907 +g126909 +S'of' +p126911 +tp126912 +a(g126909 +g126911 +S'diambra.' +p126913 +tp126914 +a(g126911 +g126913 +S'in' +p126915 +tp126916 +a(g126913 +g126915 +S'the' +p126917 +tp126918 +a(g126915 +g126917 +S'vision' +p126919 +tp126920 +a(g126917 +g126919 +S'of' +p126921 +tp126922 +a(g126919 +g126921 +S'saint' +p126923 +tp126924 +a(g126921 +g126923 +S'benvenuta,' +p126925 +tp126926 +a(g126923 +g126925 +S'the' +p126927 +tp126928 +a(g126925 +g126927 +S'virgin' +p126929 +tp126930 +a(g126927 +g126929 +S'mary' +p126931 +tp126932 +a(g126929 +g126931 +S'and' +p126933 +tp126934 +a(g126931 +g126933 +S'a' +p126935 +tp126936 +a(g126933 +g126935 +S'procession' +p126937 +tp126938 +a(g126935 +g126937 +S'of' +p126939 +tp126940 +a(g126937 +g126939 +S'virgin' +p126941 +tp126942 +a(g126939 +g126941 +S'martyrs' +p126943 +tp126944 +a(g126941 +g126943 +S'appeared' +p126945 +tp126946 +a(g126943 +g126945 +S'to' +p126947 +tp126948 +a(g126945 +g126947 +S'saint' +p126949 +tp126950 +a(g126947 +g126949 +S'clare' +p126951 +tp126952 +a(g126949 +g126951 +S'on' +p126953 +tp126954 +a(g126951 +g126953 +S'her' +p126955 +tp126956 +a(g126953 +g126955 +S'deathbed.' +p126957 +tp126958 +a(g126955 +g126957 +S'here' +p126959 +tp126960 +a(g126957 +g126959 +S'mary,' +p126961 +tp126962 +a(g126959 +g126961 +S'dressed' +p126963 +tp126964 +a(g126961 +g126963 +S'in' +p126965 +tp126966 +a(g126963 +g126965 +S'a' +p126967 +tp126968 +a(g126965 +g126967 +S'rich' +p126969 +tp126970 +a(g126967 +g126969 +S'brocade' +p126971 +tp126972 +a(g126969 +g126971 +S'robe,' +p126973 +tp126974 +a(g126971 +g126973 +S'supports' +p126975 +tp126976 +a(g126973 +g126975 +S'saint' +p126977 +tp126978 +a(g126975 +g126977 +S"clare's" +p126979 +tp126980 +a(g126977 +g126979 +S'head,' +p126981 +tp126982 +a(g126979 +g126981 +S'while' +p126983 +tp126984 +a(g126981 +g126983 +S'the' +p126985 +tp126986 +a(g126983 +g126985 +S'other' +p126987 +tp126988 +a(g126985 +g126987 +S'elegantly' +p126989 +tp126990 +a(g126987 +g126989 +S'robed' +p126991 +tp126992 +a(g126989 +g126991 +S'and' +p126993 +tp126994 +a(g126991 +g126993 +S'crowned' +p126995 +tp126996 +a(g126993 +g126995 +S'saints' +p126997 +tp126998 +a(g126995 +g126997 +S'follow' +p126999 +tp127000 +a(g126997 +g126999 +S'behind,' +p127001 +tp127002 +a(g126999 +g127001 +S'identified' +p127003 +tp127004 +a(g127001 +g127003 +S'by' +p127005 +tp127006 +a(g127003 +g127005 +S'the' +p127007 +tp127008 +a(g127005 +g127007 +S'tiny' +p127009 +tp127010 +a(g127007 +g127009 +S'attributes' +p127011 +tp127012 +a(g127009 +g127011 +S'they' +p127013 +tp127014 +a(g127011 +g127013 +S'hold.' +p127015 +tp127016 +a(g127013 +g127015 +S'the' +p127017 +tp127018 +a(g127015 +g127017 +S'work' +p127019 +tp127020 +a(g127017 +g127019 +S'of' +p127021 +tp127022 +a(g127019 +g127021 +S'the' +p127023 +tp127024 +a(g127021 +g127023 +S'master' +p127025 +tp127026 +a(g127023 +g127025 +S'of' +p127027 +tp127028 +a(g127025 +g127027 +S'heiligenkreuz,' +p127029 +tp127030 +a(g127027 +g127029 +S'who' +p127031 +tp127032 +a(g127029 +g127031 +S'was' +p127033 +tp127034 +a(g127031 +g127033 +S'probably' +p127035 +tp127036 +a(g127033 +g127035 +S'active' +p127037 +tp127038 +a(g127035 +g127037 +S'in' +p127039 +tp127040 +a(g127037 +g127039 +S'lower' +p127041 +tp127042 +a(g127039 +g127041 +S'austria,' +p127043 +tp127044 +a(g127041 +g127043 +S'illustrates' +p127045 +tp127046 +a(g127043 +g127045 +S'the' +p127047 +tp127048 +a(g127045 +g127047 +S'cosmopolitan' +p127049 +tp127050 +a(g127047 +g127049 +S'aspect' +p127051 +tp127052 +a(g127049 +g127051 +S'of' +p127053 +tp127054 +a(g127051 +g127053 +S'the' +p127055 +tp127056 +a(g127053 +g127055 +S'international' +p127057 +tp127058 +a(g127055 +g127057 +S'style,' +p127059 +tp127060 +a(g127057 +g127059 +S'which' +p127061 +tp127062 +a(g127059 +g127061 +S'flourished' +p127063 +tp127064 +a(g127061 +g127063 +S'around' +p127065 +tp127066 +a(g127063 +g127065 +S'1400.' +p127067 +tp127068 +a(g127065 +g127067 +S'while' +p127069 +tp127070 +a(g127067 +g127069 +S'his' +p127071 +tp127072 +a(g127069 +g127071 +S'exaggerated' +p127073 +tp127074 +a(g127071 +g127073 +S'figures' +p127075 +tp127076 +a(g127073 +g127075 +S'with' +p127077 +tp127078 +a(g127075 +g127077 +S'their' +p127079 +tp127080 +a(g127077 +g127079 +S'bulbous' +p127081 +tp127082 +a(g127079 +g127081 +S'foreheads' +p127083 +tp127084 +a(g127081 +g127083 +S'and' +p127085 +tp127086 +a(g127083 +g127085 +S'clinging' +p127087 +tp127088 +a(g127085 +g127087 +S'drapery' +p127089 +tp127090 +a(g127087 +g127089 +S'are' +p127091 +tp127092 +a(g127089 +g127091 +S'characteristically' +p127093 +tp127094 +a(g127091 +g127093 +S'austrian,' +p127095 +tp127096 +a(g127093 +g127095 +S'the' +p127097 +tp127098 +a(g127095 +g127097 +S'anonymous' +p127099 +tp127100 +a(g127097 +g127099 +S'painter' +p127101 +tp127102 +a(g127099 +g127101 +S'must' +p127103 +tp127104 +a(g127101 +g127103 +S'also' +p127105 +tp127106 +a(g127103 +g127105 +S'have' +p127107 +tp127108 +a(g127105 +g127107 +S'been' +p127109 +tp127110 +a(g127107 +g127109 +S'aware' +p127111 +tp127112 +a(g127109 +g127111 +S'of' +p127113 +tp127114 +a(g127111 +g127113 +S'the' +p127115 +tp127116 +a(g127113 +g127115 +S'most' +p127117 +tp127118 +a(g127115 +g127117 +S'advanced' +p127119 +tp127120 +a(g127117 +g127119 +S'art' +p127121 +tp127122 +a(g127119 +g127121 +S'produced' +p127123 +tp127124 +a(g127121 +g127123 +S'at' +p127125 +tp127126 +a(g127123 +g127125 +S'the' +p127127 +tp127128 +a(g127125 +g127127 +S'courts' +p127129 +tp127130 +a(g127127 +g127129 +S'of' +p127131 +tp127132 +a(g127129 +g127131 +S'paris' +p127133 +tp127134 +a(g127131 +g127133 +S'and' +p127135 +tp127136 +a(g127133 +g127135 +S'prague.' +p127137 +tp127138 +a(g127135 +g127137 +S'thus' +p127139 +tp127140 +a(g127137 +g127139 +S'the' +p127141 +tp127142 +a(g127139 +g127141 +S'surface' +p127143 +tp127144 +a(g127141 +g127143 +S'of' +p127145 +tp127146 +a(g127143 +g127145 +S'the' +p127147 +tp127148 +a(g127145 +g127147 +S'panel' +p127149 +tp127150 +a(g127147 +g127149 +S'is' +p127151 +tp127152 +a(g127149 +g127151 +S'worked' +p127153 +tp127154 +a(g127151 +g127153 +S'in' +p127155 +tp127156 +a(g127153 +g127155 +S'a' +p127157 +tp127158 +a(g127155 +g127157 +S'variety' +p127159 +tp127160 +a(g127157 +g127159 +S'of' +p127161 +tp127162 +a(g127159 +g127161 +S'different' +p127163 +tp127164 +a(g127161 +g127163 +S'techniques' +p127165 +tp127166 +a(g127163 +g127165 +S'to' +p127167 +tp127168 +a(g127165 +g127167 +S'fashion' +p127169 +tp127170 +a(g127167 +g127169 +S'a' +p127171 +tp127172 +a(g127169 +g127171 +S'particularly' +p127173 +tp127174 +a(g127171 +g127173 +S'splendid' +p127175 +tp127176 +a(g127173 +g127175 +S'object.' +p127177 +tp127178 +a(g127175 +g127177 +S'in' +p127179 +tp127180 +a(g127177 +g127179 +S'the' +p127181 +tp127182 +a(g127179 +g127181 +S'mid-1400s,' +p127183 +tp127184 +a(g127181 +g127183 +S'sano' +p127185 +tp127186 +a(g127183 +g127185 +S'di' +p127187 +tp127188 +a(g127185 +g127187 +S"pietro's" +p127189 +tp127190 +a(g127187 +g127189 +S'workshop' +p127191 +tp127192 +a(g127189 +g127191 +S'was' +p127193 +tp127194 +a(g127191 +g127193 +S'the' +p127195 +tp127196 +a(g127193 +g127195 +S'busiest' +p127197 +tp127198 +a(g127195 +g127197 +S'in' +p127199 +tp127200 +a(g127197 +g127199 +S'siena.' +p127201 +tp127202 +a(g127199 +g127201 +S'he' +p127203 +tp127204 +a(g127201 +g127203 +S'and' +p127205 +tp127206 +a(g127203 +g127205 +S'his' +p127207 +tp127208 +a(g127205 +g127207 +S'assistants' +p127209 +tp127210 +a(g127207 +g127209 +S'produced—we' +p127211 +tp127212 +a(g127209 +g127211 +S'might' +p127213 +tp127214 +a(g127211 +g127213 +S'almost' +p127215 +tp127216 +a(g127213 +g127215 +S'say' +p127217 +tp127218 +a(g127215 +g127217 +S'mass' +p127219 +tp127220 +a(g127217 +g127219 +S'produced—scores' +p127221 +tp127222 +a(g127219 +g127221 +S'of' +p127223 +tp127224 +a(g127221 +g127223 +S'devotional' +p127225 +tp127226 +a(g127223 +g127225 +S'panels' +p127227 +tp127228 +a(g127225 +g127227 +S'like' +p127229 +tp127230 +a(g127227 +g127229 +S'this' +p127231 +tp127232 +a(g127229 +g127231 +S'one,' +p127233 +tp127234 +a(g127231 +g127233 +S'often' +p127235 +tp127236 +a(g127233 +g127235 +S'for' +p127237 +tp127238 +a(g127235 +g127237 +S'religious' +p127239 +tp127240 +a(g127237 +g127239 +S'fraternities.' +p127241 +tp127242 +a(g127239 +g127241 +S'his' +p127243 +tp127244 +a(g127241 +g127243 +S'half-length' +p127245 +tp127246 +a(g127243 +g127245 +S'madonnas' +p127247 +tp127248 +a(g127245 +g127247 +S'are' +p127249 +tp127250 +a(g127247 +g127249 +S'iconlike,' +p127251 +tp127252 +a(g127249 +g127251 +S'objects' +p127253 +tp127254 +a(g127251 +g127253 +S'for' +p127255 +tp127256 +a(g127253 +g127255 +S'contemplation.' +p127257 +tp127258 +a(g127255 +g127257 +S'mother' +p127259 +tp127260 +a(g127257 +g127259 +S'and' +p127261 +tp127262 +a(g127259 +g127261 +S'child' +p127263 +tp127264 +a(g127261 +g127263 +S'are' +p127265 +tp127266 +a(g127263 +g127265 +S'surrounded' +p127267 +tp127268 +a(g127265 +g127267 +S'by' +p127269 +tp127270 +a(g127267 +g127269 +S'saints' +p127271 +tp127272 +a(g127269 +g127271 +S'and' +p127273 +tp127274 +a(g127271 +g127273 +S'angels,' +p127275 +tp127276 +a(g127273 +g127275 +S'wreathed' +p127277 +tp127278 +a(g127275 +g127277 +S'by' +p127279 +tp127280 +a(g127277 +g127279 +S'their' +p127281 +tp127282 +a(g127279 +g127281 +S'halos.' +p127283 +tp127284 +a(g127281 +g127283 +S'the' +p127285 +tp127286 +a(g127283 +g127285 +S'bright' +p127287 +tp127288 +a(g127285 +g127287 +S'colors' +p127289 +tp127290 +a(g127287 +g127289 +S'and' +p127291 +tp127292 +a(g127289 +g127291 +S'the' +p127293 +tp127294 +a(g127291 +g127293 +S'rich' +p127295 +tp127296 +a(g127293 +g127295 +S'gold,' +p127297 +tp127298 +a(g127295 +g127297 +S'textured' +p127299 +tp127300 +a(g127297 +g127299 +S'with' +p127301 +tp127302 +a(g127299 +g127301 +S'punched' +p127303 +tp127304 +a(g127301 +g127303 +S'decoration,' +p127305 +tp127306 +a(g127303 +g127305 +S'have' +p127307 +tp127308 +a(g127305 +g127307 +S'a' +p127309 +tp127310 +a(g127307 +g127309 +S'jewellike' +p127311 +tp127312 +a(g127309 +g127311 +S'quality' +p127313 +tp127314 +a(g127311 +g127313 +S'that' +p127315 +tp127316 +a(g127313 +g127315 +S'appealed' +p127317 +tp127318 +a(g127315 +g127317 +S'to' +p127319 +tp127320 +a(g127317 +g127319 +S'the' +p127321 +tp127322 +a(g127319 +g127321 +S'sienese' +p127323 +tp127324 +a(g127321 +g127323 +S'taste' +p127325 +tp127326 +a(g127323 +g127325 +S'for' +p127327 +tp127328 +a(g127325 +g127327 +S'ornament' +p127329 +tp127330 +a(g127327 +g127329 +S'and' +p127331 +tp127332 +a(g127329 +g127331 +S'luxury.' +p127333 +tp127334 +a(g127331 +g127333 +S"sano's" +p127335 +tp127336 +a(g127333 +g127335 +S'images' +p127337 +tp127338 +a(g127335 +g127337 +S'met' +p127339 +tp127340 +a(g127337 +g127339 +S'conventional' +p127341 +tp127342 +a(g127339 +g127341 +S'religious' +p127343 +tp127344 +a(g127341 +g127343 +S'expectations' +p127345 +tp127346 +a(g127343 +g127345 +S'as' +p127347 +tp127348 +a(g127345 +g127347 +S'well.' +p127349 +tp127350 +a(g127347 +g127349 +S'this' +p127351 +tp127352 +a(g127349 +g127351 +S"madonna's" +p127353 +tp127354 +a(g127351 +g127353 +S'wide' +p127355 +tp127356 +a(g127353 +g127355 +S'oval' +p127357 +tp127358 +a(g127355 +g127357 +S'face' +p127359 +tp127360 +a(g127357 +g127359 +S'and' +p127361 +tp127362 +a(g127359 +g127361 +S'narrow' +p127363 +tp127364 +a(g127361 +g127363 +S'almond' +p127365 +tp127366 +a(g127363 +g127365 +S'eyes' +p127367 +tp127368 +a(g127365 +g127367 +S'have' +p127369 +tp127370 +a(g127367 +g127369 +S'the' +p127371 +tp127372 +a(g127369 +g127371 +S'look' +p127373 +tp127374 +a(g127371 +g127373 +S'of' +p127375 +tp127376 +a(g127373 +g127375 +S'a' +p127377 +tp127378 +a(g127375 +g127377 +S'virgin' +p127379 +tp127380 +a(g127377 +g127379 +S'painted' +p127381 +tp127382 +a(g127379 +g127381 +S'a' +p127383 +tp127384 +a(g127381 +g127383 +S'hundred' +p127385 +tp127386 +a(g127383 +g127385 +S'years' +p127387 +tp127388 +a(g127385 +g127387 +S'earlier.' +p127389 +tp127390 +a(g127387 +g127389 +S'the' +p127391 +tp127392 +a(g127389 +g127391 +S'saints' +p127393 +tp127394 +a(g127391 +g127393 +S'are' +p127395 +tp127396 +a(g127393 +g127395 +S'jerome' +p127397 +tp127398 +a(g127395 +g127397 +S'(left)' +p127399 +tp127400 +a(g127397 +g127399 +S'and' +p127401 +tp127402 +a(g127399 +g127401 +S'bernardino' +p127403 +tp127404 +a(g127401 +g127403 +S'(right).' +p127405 +tp127406 +a(g127403 +g127405 +S'sano' +p127407 +tp127408 +a(g127405 +g127407 +S'would' +p127409 +tp127410 +a(g127407 +g127409 +S'have' +p127411 +tp127412 +a(g127409 +g127411 +S'seen' +p127413 +tp127414 +a(g127411 +g127413 +S'the' +p127415 +tp127416 +a(g127413 +g127415 +S'latter' +p127417 +tp127418 +a(g127415 +g127417 +S'preaching' +p127419 +tp127420 +a(g127417 +g127419 +S'in' +p127421 +tp127422 +a(g127419 +g127421 +S'the' +p127423 +tp127424 +a(g127421 +g127423 +S'campo,' +p127425 +tp127426 +a(g127423 +g127425 +S"siena's" +p127427 +tp127428 +a(g127425 +g127427 +S'central' +p127429 +tp127430 +a(g127427 +g127429 +S'public' +p127431 +tp127432 +a(g127429 +g127431 +S'square.' +p127433 +tp127434 +a(g127431 +g127433 +S'in' +p127435 +tp127436 +a(g127433 +g127435 +S'frescoes,' +p127437 +tp127438 +a(g127435 +g127437 +S'sano' +p127439 +tp127440 +a(g127437 +g127439 +S'recorded' +p127441 +tp127442 +a(g127439 +g127441 +S'the' +p127443 +tp127444 +a(g127441 +g127443 +S'throngs' +p127445 +tp127446 +a(g127443 +g127445 +S'and' +p127447 +tp127448 +a(g127445 +g127447 +S'festival' +p127449 +tp127450 +a(g127447 +g127449 +S'atmosphere' +p127451 +tp127452 +a(g127449 +g127451 +S'that' +p127453 +tp127454 +a(g127451 +g127453 +S'attended' +p127455 +tp127456 +a(g127453 +g127455 +S"bernardino's" +p127457 +tp127458 +a(g127455 +g127457 +S'dawn' +p127459 +tp127460 +a(g127457 +g127459 +S'sermons.' +p127461 +tp127462 +a(g127459 +g127461 +S'here' +p127463 +tp127464 +a(g127461 +g127463 +S'he' +p127465 +tp127466 +a(g127463 +g127465 +S'gives' +p127467 +tp127468 +a(g127465 +g127467 +S'the' +p127469 +tp127470 +a(g127467 +g127469 +S'saint' +p127471 +tp127472 +a(g127469 +g127471 +S'the' +p127473 +tp127474 +a(g127471 +g127473 +S'sunken' +p127475 +tp127476 +a(g127473 +g127475 +S'cheeks' +p127477 +tp127478 +a(g127475 +g127477 +S'of' +p127479 +tp127480 +a(g127477 +g127479 +S'a' +p127481 +tp127482 +a(g127479 +g127481 +S'man' +p127483 +tp127484 +a(g127481 +g127483 +S'who' +p127485 +tp127486 +a(g127483 +g127485 +S'has' +p127487 +tp127488 +a(g127485 +g127487 +S'lost' +p127489 +tp127490 +a(g127487 +g127489 +S'all' +p127491 +tp127492 +a(g127489 +g127491 +S'his' +p127493 +tp127494 +a(g127491 +g127493 +S'teeth' +p127495 +tp127496 +a(g127493 +g127495 +S'to' +p127497 +tp127498 +a(g127495 +g127497 +S'ascetic' +p127499 +tp127500 +a(g127497 +g127499 +S'self-denial.' +p127501 +tp127502 +a(g127499 +g127501 +S'when' +p127503 +tp127504 +a(g127501 +g127503 +S'first' +p127505 +tp127506 +a(g127503 +g127505 +S'documented' +p127507 +tp127508 +a(g127505 +g127507 +S'as' +p127509 +tp127510 +a(g127507 +g127509 +S'an' +p127511 +tp127512 +a(g127509 +g127511 +S'independent' +p127513 +tp127514 +a(g127511 +g127513 +S'master,' +p127515 +tp127516 +a(g127513 +g127515 +S'sano' +p127517 +tp127518 +a(g127515 +g127517 +S'was' +p127519 +tp127520 +a(g127517 +g127519 +S'already' +p127521 +tp127522 +a(g127519 +g127521 +S'in' +p127523 +tp127524 +a(g127521 +g127523 +S'his' +p127525 +tp127526 +a(g127523 +g127525 +S'thirties.' +p127527 +tp127528 +a(g127525 +g127527 +S'he' +p127529 +tp127530 +a(g127527 +g127529 +S'seems' +p127531 +tp127532 +a(g127529 +g127531 +S'to' +p127533 +tp127534 +a(g127531 +g127533 +S'have' +p127535 +tp127536 +a(g127533 +g127535 +S'studied' +p127537 +tp127538 +a(g127535 +g127537 +S'in' +p127539 +tp127540 +a(g127537 +g127539 +S'in' +p127541 +tp127542 +a(g127539 +g127541 +S'seventeenth-century' +p127543 +tp127544 +a(g127541 +g127543 +S'spain,' +p127545 +tp127546 +a(g127543 +g127545 +S'the' +p127547 +tp127548 +a(g127545 +g127547 +S'religious' +p127549 +tp127550 +a(g127547 +g127549 +S'orders' +p127551 +tp127552 +a(g127549 +g127551 +S'were' +p127553 +tp127554 +a(g127551 +g127553 +S'unrivaled' +p127555 +tp127556 +a(g127553 +g127555 +S'in' +p127557 +tp127558 +a(g127555 +g127557 +S'their' +p127559 +tp127560 +a(g127557 +g127559 +S'patronage' +p127561 +tp127562 +a(g127559 +g127561 +S'of' +p127563 +tp127564 +a(g127561 +g127563 +S'the' +p127565 +tp127566 +a(g127563 +g127565 +S'arts.' +p127567 +tp127568 +a(g127565 +g127567 +S'among' +p127569 +tp127570 +a(g127567 +g127569 +S'the' +p127571 +tp127572 +a(g127569 +g127571 +S'most' +p127573 +tp127574 +a(g127571 +g127573 +S'important' +p127575 +tp127576 +a(g127573 +g127575 +S'were' +p127577 +tp127578 +a(g127575 +g127577 +S'the' +p127579 +tp127580 +a(g127577 +g127579 +S'hieronymites,' +p127581 +tp127582 +a(g127579 +g127581 +S'whose' +p127583 +tp127584 +a(g127581 +g127583 +S'white' +p127585 +tp127586 +a(g127583 +g127585 +S'and' +p127587 +tp127588 +a(g127585 +g127587 +S'brown' +p127589 +tp127590 +a(g127587 +g127589 +S'habits' +p127591 +tp127592 +a(g127589 +g127591 +S'are' +p127593 +tp127594 +a(g127591 +g127593 +S'worn' +p127595 +tp127596 +a(g127593 +g127595 +S'by' +p127597 +tp127598 +a(g127595 +g127597 +S'these' +p127599 +tp127600 +a(g127597 +g127599 +S'three' +p127601 +tp127602 +a(g127599 +g127601 +S'saints:' +p127603 +tp127604 +a(g127601 +g127603 +S'paula,' +p127605 +tp127606 +a(g127603 +g127605 +S'her' +p127607 +tp127608 +a(g127605 +g127607 +S'daughter' +p127609 +tp127610 +a(g127607 +g127609 +S'eustochium,' +p127611 +tp127612 +a(g127609 +g127611 +S'and' +p127613 +tp127614 +a(g127611 +g127613 +S'sophronius' +p127615 +tp127616 +a(g127613 +g127615 +S'eusebius' +p127617 +tp127618 +a(g127615 +g127617 +S'hieronymous,' +p127619 +tp127620 +a(g127617 +g127619 +S'called' +p127621 +tp127622 +a(g127619 +g127621 +S'jerome' +p127623 +tp127624 +a(g127621 +g127623 +S'in' +p127625 +tp127626 +a(g127623 +g127625 +S'english.' +p127627 +tp127628 +a(g127625 +g127627 +S'under' +p127629 +tp127630 +a(g127627 +g127629 +S"jerome's" +p127631 +tp127632 +a(g127629 +g127631 +S'spiritual' +p127633 +tp127634 +a(g127631 +g127633 +S'direction,' +p127635 +tp127636 +a(g127633 +g127635 +S'the' +p127637 +tp127638 +a(g127635 +g127637 +S'two' +p127639 +tp127640 +a(g127637 +g127639 +S'women' +p127641 +tp127642 +a(g127639 +g127641 +S'founded' +p127643 +tp127644 +a(g127641 +g127643 +S'a' +p127645 +tp127646 +a(g127643 +g127645 +S'hospice' +p127647 +tp127648 +a(g127645 +g127647 +S'and' +p127649 +tp127650 +a(g127647 +g127649 +S'convent' +p127651 +tp127652 +a(g127649 +g127651 +S'in' +p127653 +tp127654 +a(g127651 +g127653 +S'the' +p127655 +tp127656 +a(g127653 +g127655 +S'holy' +p127657 +tp127658 +a(g127655 +g127657 +S'land' +p127659 +tp127660 +a(g127657 +g127659 +S'that' +p127661 +tp127662 +a(g127659 +g127661 +S'were' +p127663 +tp127664 +a(g127661 +g127663 +S'regarded' +p127665 +tp127666 +a(g127663 +g127665 +S'as' +p127667 +tp127668 +a(g127665 +g127667 +S'the' +p127669 +tp127670 +a(g127667 +g127669 +S'initial' +p127671 +tp127672 +a(g127669 +g127671 +S'establishments' +p127673 +tp127674 +a(g127671 +g127673 +S'of' +p127675 +tp127676 +a(g127673 +g127675 +S'the' +p127677 +tp127678 +a(g127675 +g127677 +S'hieronymite' +p127679 +tp127680 +a(g127677 +g127679 +S'order.' +p127681 +tp127682 +a(g127679 +g127681 +S'paula' +p127683 +tp127684 +a(g127681 +g127683 +S'and' +p127685 +tp127686 +a(g127683 +g127685 +S'jerome' +p127687 +tp127688 +a(g127685 +g127687 +S'hold' +p127689 +tp127690 +a(g127687 +g127689 +S'books,' +p127691 +tp127692 +a(g127689 +g127691 +S'alluding' +p127693 +tp127694 +a(g127691 +g127693 +S'to' +p127695 +tp127696 +a(g127693 +g127695 +S"jerome's" +p127697 +tp127698 +a(g127695 +g127697 +S'role' +p127699 +tp127700 +a(g127697 +g127699 +S'as' +p127701 +tp127702 +a(g127699 +g127701 +S'the' +p127703 +tp127704 +a(g127701 +g127703 +S'translator' +p127705 +tp127706 +a(g127703 +g127705 +S'of' +p127707 +tp127708 +a(g127705 +g127707 +S'the' +p127709 +tp127710 +a(g127707 +g127709 +S'bible' +p127711 +tp127712 +a(g127709 +g127711 +S'into' +p127713 +tp127714 +a(g127711 +g127713 +S'latin.' +p127715 +tp127716 +a(g127713 +g127715 +S'paula,' +p127717 +tp127718 +a(g127715 +g127717 +S'a' +p127719 +tp127720 +a(g127717 +g127719 +S'well-educated' +p127721 +tp127722 +a(g127719 +g127721 +S'woman' +p127723 +tp127724 +a(g127721 +g127723 +S'from' +p127725 +tp127726 +a(g127723 +g127725 +S'an' +p127727 +tp127728 +a(g127725 +g127727 +S'illustrious' +p127729 +tp127730 +a(g127727 +g127729 +S'roman' +p127731 +tp127732 +a(g127729 +g127731 +S'family,' +p127733 +tp127734 +a(g127731 +g127733 +S'assisted' +p127735 +tp127736 +a(g127733 +g127735 +S'jerome' +p127737 +tp127738 +a(g127735 +g127737 +S'with' +p127739 +tp127740 +a(g127737 +g127739 +S'translations' +p127741 +tp127742 +a(g127739 +g127741 +S'from' +p127743 +tp127744 +a(g127741 +g127743 +S'greek.' +p127745 +tp127746 +a(g127743 +g127745 +S'although' +p127747 +tp127748 +a(g127745 +g127747 +S'jerome' +p127749 +tp127750 +a(g127747 +g127749 +S'is' +p127751 +tp127752 +a(g127749 +g127751 +S'traditionally' +p127753 +tp127754 +a(g127751 +g127753 +S'shown' +p127755 +tp127756 +a(g127753 +g127755 +S'in' +p127757 +tp127758 +a(g127755 +g127757 +S'a' +p127759 +tp127760 +a(g127757 +g127759 +S"cardinal's" +p127761 +tp127762 +a(g127759 +g127761 +S'garb,' +p127763 +tp127764 +a(g127761 +g127763 +S'this' +p127765 +tp127766 +a(g127763 +g127765 +S'is' +p127767 +tp127768 +a(g127765 +g127767 +S'ahistorical.' +p127769 +tp127770 +a(g127767 +g127769 +S'he' +p127771 +tp127772 +a(g127769 +g127771 +S'died' +p127773 +tp127774 +a(g127771 +g127773 +S'around' +p127775 +tp127776 +a(g127773 +g127775 +S'420,' +p127777 +tp127778 +a(g127775 +g127777 +S'but' +p127779 +tp127780 +a(g127777 +g127779 +S'the' +p127781 +tp127782 +a(g127779 +g127781 +S'office' +p127783 +tp127784 +a(g127781 +g127783 +S'of' +p127785 +tp127786 +a(g127783 +g127785 +S'cardinal' +p127787 +tp127788 +a(g127785 +g127787 +S'was' +p127789 +tp127790 +a(g127787 +g127789 +S'not' +p127791 +tp127792 +a(g127789 +g127791 +S'created' +p127793 +tp127794 +a(g127791 +g127793 +S'until' +p127795 +tp127796 +a(g127793 +g127795 +S'the' +p127797 +tp127798 +a(g127795 +g127797 +S'end' +p127799 +tp127800 +a(g127797 +g127799 +S'of' +p127801 +tp127802 +a(g127799 +g127801 +S'the' +p127803 +tp127804 +a(g127801 +g127803 +S'eleventh' +p127805 +tp127806 +a(g127803 +g127805 +S'century,' +p127807 +tp127808 +a(g127805 +g127807 +S'and' +p127809 +tp127810 +a(g127807 +g127809 +S'the' +p127811 +tp127812 +a(g127809 +g127811 +S'red' +p127813 +tp127814 +a(g127811 +g127813 +S'robe' +p127815 +tp127816 +a(g127813 +g127815 +S'and' +p127817 +tp127818 +a(g127815 +g127817 +S'hat' +p127819 +tp127820 +a(g127817 +g127819 +S'were' +p127821 +tp127822 +a(g127819 +g127821 +S'not' +p127823 +tp127824 +a(g127821 +g127823 +S'adopted' +p127825 +tp127826 +a(g127823 +g127825 +S'until' +p127827 +tp127828 +a(g127825 +g127827 +S'the' +p127829 +tp127830 +a(g127827 +g127829 +S'mid-1200s.' +p127831 +tp127832 +a(g127829 +g127831 +S'this' +p127833 +tp127834 +a(g127831 +g127833 +S'work' +p127835 +tp127836 +a(g127833 +g127835 +S'relies' +p127837 +tp127838 +a(g127835 +g127837 +S'on' +p127839 +tp127840 +a(g127837 +g127839 +S'a' +p127841 +tp127842 +a(g127839 +g127841 +S'formula' +p127843 +tp127844 +a(g127841 +g127843 +S'zurbarán' +p127845 +tp127846 +a(g127843 +g127845 +S'used' +p127847 +tp127848 +a(g127845 +g127847 +S'for' +p127849 +tp127850 +a(g127847 +g127849 +S'a' +p127851 +tp127852 +a(g127849 +g127851 +S'series' +p127853 +tp127854 +a(g127851 +g127853 +S'of' +p127855 +tp127856 +a(g127853 +g127855 +S'pictures' +p127857 +tp127858 +a(g127855 +g127857 +S'he' +p127859 +tp127860 +a(g127857 +g127859 +S'painted' +p127861 +tp127862 +a(g127859 +g127861 +S'in' +p127863 +tp127864 +a(g127861 +g127863 +S'the' +p127865 +tp127866 +a(g127863 +g127865 +S'late' +p127867 +tp127868 +a(g127865 +g127867 +S'1630s' +p127869 +tp127870 +a(g127867 +g127869 +S'for' +p127871 +tp127872 +a(g127869 +g127871 +S'the' +p127873 +tp127874 +a(g127871 +g127873 +S'hieronymite' +p127875 +tp127876 +a(g127873 +g127875 +S'monastery' +p127877 +tp127878 +a(g127875 +g127877 +S'of' +p127879 +tp127880 +a(g127877 +g127879 +S'guadalupe.' +p127881 +tp127882 +a(g127879 +g127881 +S'there' +p127883 +tp127884 +a(g127881 +g127883 +S'is' +p127885 +tp127886 +a(g127883 +g127885 +S'extensive' +p127887 +tp127888 +a(g127885 +g127887 +S'reworking' +p127889 +tp127890 +a(g127887 +g127889 +S'in' +p127891 +tp127892 +a(g127889 +g127891 +S'the' +p127893 +tp127894 +a(g127891 +g127893 +S'contours' +p127895 +tp127896 +a(g127893 +g127895 +S'of' +p127897 +tp127898 +a(g127895 +g127897 +S'the' +p127899 +tp127900 +a(g127897 +g127899 +S'figures' +p127901 +tp127902 +a(g127899 +g127901 +S'--' +p127903 +tp127904 +a(g127901 +g127903 +S'probably' +p127905 +tp127906 +a(g127903 +g127905 +S'an' +p127907 +tp127908 +a(g127905 +g127907 +S'indication' +p127909 +tp127910 +a(g127907 +g127909 +S'that' +p127911 +tp127912 +a(g127909 +g127911 +S'while' +p127913 +tp127914 +a(g127911 +g127913 +S'zurbarán' +p127915 +tp127916 +a(g127913 +g127915 +S'established' +p127917 +tp127918 +a(g127915 +g127917 +S'the' +p127919 +tp127920 +a(g127917 +g127919 +S'composition,' +p127921 +tp127922 +a(g127919 +g127921 +S'the' +p127923 +tp127924 +a(g127921 +g127923 +S'actual' +p127925 +tp127926 +a(g127923 +g127925 +S'painting' +p127927 +tp127928 +a(g127925 +g127927 +S'was' +p127929 +tp127930 +a(g127927 +g127929 +S'carried' +p127931 +tp127932 +a(g127929 +g127931 +S'out' +p127933 +tp127934 +a(g127931 +g127933 +S'by' +p127935 +tp127936 +a(g127933 +g127935 +S'assistants.' +p127937 +tp127938 +a(g127935 +g127937 +S"paula's" +p127939 +tp127940 +a(g127937 +g127939 +S'robe,' +p127941 +tp127942 +a(g127939 +g127941 +S'for' +p127943 +tp127944 +a(g127941 +g127943 +S'example,' +p127945 +tp127946 +a(g127943 +g127945 +S'appears' +p127947 +tp127948 +a(g127945 +g127947 +S'doughy' +p127949 +tp127950 +a(g127947 +g127949 +S'and' +p127951 +tp127952 +a(g127949 +g127951 +S'lacks' +p127953 +tp127954 +a(g127951 +g127953 +S'volume' +p127955 +tp127956 +a(g127953 +g127955 +S'as' +p127957 +tp127958 +a(g127955 +g127957 +S'it' +p127959 +tp127960 +a(g127957 +g127959 +S'falls' +p127961 +tp127962 +a(g127959 +g127961 +S'to' +p127963 +tp127964 +a(g127961 +g127963 +S'the' +p127965 +tp127966 +a(g127963 +g127965 +S'floor.' +p127967 +tp127968 +a(g127965 +g127967 +S'her' +p127969 +tp127970 +a(g127967 +g127969 +S'stony' +p127971 +tp127972 +a(g127969 +g127971 +S'expression' +p127973 +tp127974 +a(g127971 +g127973 +S'and' +p127975 +tp127976 +a(g127973 +g127975 +S'awkward' +p127977 +tp127978 +a(g127975 +g127977 +S'thumb' +p127979 +tp127980 +a(g127977 +g127979 +S'also' +p127981 +tp127982 +a(g127979 +g127981 +S'suggest' +p127983 +tp127984 +a(g127981 +g127983 +S'the' +p127985 +tp127986 +a(g127983 +g127985 +S'hand' +p127987 +tp127988 +a(g127985 +g127987 +S'of' +p127989 +tp127990 +a(g127987 +g127989 +S'an' +p127991 +tp127992 +a(g127989 +g127991 +S'assistant.' +p127993 +tp127994 +a(g127991 +g127993 +S'a' +p127995 +tp127996 +a(g127993 +g127995 +S'man' +p127997 +tp127998 +a(g127995 +g127997 +S'who' +p127999 +tp128000 +a(g127997 +g127999 +S'has' +p128001 +tp128002 +a(g127999 +g128001 +S'seen' +p128003 +tp128004 +a(g128001 +g128003 +S'a' +p128005 +tp128006 +a(g128003 +g128005 +S'nymph' +p128007 +tp128008 +a(g128005 +g128007 +S'"becomes' +p128009 +tp128010 +a(g128007 +g128009 +S'possessed' +p128011 +tp128012 +a(g128009 +g128011 +S'by' +p128013 +tp128014 +a(g128011 +g128013 +S'nymphs"' +p128015 +tp128016 +a(g128013 +g128015 +S'according' +p128017 +tp128018 +a(g128015 +g128017 +S'to' +p128019 +tp128020 +a(g128017 +g128019 +S'ancient' +p128021 +tp128022 +a(g128019 +g128021 +S'greek' +p128023 +tp128024 +a(g128021 +g128023 +S'lore.' +p128025 +tp128026 +a(g128023 +g128025 +S'nymphs' +p128027 +tp128028 +a(g128025 +g128027 +S'were' +p128029 +tp128030 +a(g128027 +g128029 +S'embodiments' +p128031 +tp128032 +a(g128029 +g128031 +S'of' +p128033 +tp128034 +a(g128031 +g128033 +S'the' +p128035 +tp128036 +a(g128033 +g128035 +S'spirit' +p128037 +tp128038 +a(g128035 +g128037 +S'of' +p128039 +tp128040 +a(g128037 +g128039 +S'nature,' +p128041 +tp128042 +a(g128039 +g128041 +S'so' +p128043 +tp128044 +a(g128041 +g128043 +S'there' +p128045 +tp128046 +a(g128043 +g128045 +S'are' +p128047 +tp128048 +a(g128045 +g128047 +S'many' +p128049 +tp128050 +a(g128047 +g128049 +S'kinds—nymphs' +p128051 +tp128052 +a(g128049 +g128051 +S'of' +p128053 +tp128054 +a(g128051 +g128053 +S'rivers' +p128055 +tp128056 +a(g128053 +g128055 +S'and' +p128057 +tp128058 +a(g128055 +g128057 +S'woodlands,' +p128059 +tp128060 +a(g128057 +g128059 +S'streams' +p128061 +tp128062 +a(g128059 +g128061 +S'and' +p128063 +tp128064 +a(g128061 +g128063 +S'mountains.' +p128065 +tp128066 +a(g128063 +g128065 +S'nereids' +p128067 +tp128068 +a(g128065 +g128067 +S'are' +p128069 +tp128070 +a(g128067 +g128069 +S'nymphs' +p128071 +tp128072 +a(g128069 +g128071 +S'of' +p128073 +tp128074 +a(g128071 +g128073 +S'the' +p128075 +tp128076 +a(g128073 +g128075 +S'sea' +p128077 +tp128078 +a(g128075 +g128077 +S'(specifically' +p128079 +tp128080 +a(g128077 +g128079 +S'the' +p128081 +tp128082 +a(g128079 +g128081 +S'fifty' +p128083 +tp128084 +a(g128081 +g128083 +S'daughters' +p128085 +tp128086 +a(g128083 +g128085 +S'of' +p128087 +tp128088 +a(g128085 +g128087 +S'the' +p128089 +tp128090 +a(g128087 +g128089 +S'old' +p128091 +tp128092 +a(g128089 +g128091 +S'sea' +p128093 +tp128094 +a(g128091 +g128093 +S'god' +p128095 +tp128096 +a(g128093 +g128095 +S'nereus),' +p128097 +tp128098 +a(g128095 +g128097 +S'and' +p128099 +tp128100 +a(g128097 +g128099 +S'usually' +p128101 +tp128102 +a(g128099 +g128101 +S'are' +p128103 +tp128104 +a(g128101 +g128103 +S'benevolent' +p128105 +tp128106 +a(g128103 +g128105 +S'and' +p128107 +tp128108 +a(g128105 +g128107 +S'playful,' +p128109 +tp128110 +a(g128107 +g128109 +S'taking' +p128111 +tp128112 +a(g128109 +g128111 +S'care' +p128113 +tp128114 +a(g128111 +g128113 +S'with' +p128115 +tp128116 +a(g128113 +g128115 +S'the' +p128117 +tp128118 +a(g128115 +g128117 +S'fate' +p128119 +tp128120 +a(g128117 +g128119 +S'of' +p128121 +tp128122 +a(g128119 +g128121 +S'sailors.' +p128123 +tp128124 +a(g128121 +g128123 +S'although' +p128125 +tp128126 +a(g128123 +g128125 +S'mortal,' +p128127 +tp128128 +a(g128125 +g128127 +S'they' +p128129 +tp128130 +a(g128127 +g128129 +S'live' +p128131 +tp128132 +a(g128129 +g128131 +S'supernaturally' +p128133 +tp128134 +a(g128131 +g128133 +S'long' +p128135 +tp128136 +a(g128133 +g128135 +S'lives.' +p128137 +tp128138 +a(g128135 +g128137 +S'among' +p128139 +tp128140 +a(g128137 +g128139 +S'the' +p128141 +tp128142 +a(g128139 +g128141 +S'best-known' +p128143 +tp128144 +a(g128141 +g128143 +S'nereids' +p128145 +tp128146 +a(g128143 +g128145 +S'are' +p128147 +tp128148 +a(g128145 +g128147 +S'thetis,' +p128149 +tp128150 +a(g128147 +g128149 +S'mother' +p128151 +tp128152 +a(g128149 +g128151 +S'of' +p128153 +tp128154 +a(g128151 +g128153 +S'achilles,' +p128155 +tp128156 +a(g128153 +g128155 +S'and' +p128157 +tp128158 +a(g128155 +g128157 +S'amphitrite,' +p128159 +tp128160 +a(g128157 +g128159 +S'wife' +p128161 +tp128162 +a(g128159 +g128161 +S'of' +p128163 +tp128164 +a(g128161 +g128163 +S'poseidon,' +p128165 +tp128166 +a(g128163 +g128165 +S'but' +p128167 +tp128168 +a(g128165 +g128167 +S'no' +p128169 +tp128170 +a(g128167 +g128169 +S'specific' +p128171 +tp128172 +a(g128169 +g128171 +S'attributes' +p128173 +tp128174 +a(g128171 +g128173 +S'identify' +p128175 +tp128176 +a(g128173 +g128175 +S'this' +p128177 +tp128178 +a(g128175 +g128177 +S'one.' +p128179 +tp128180 +a(g128177 +g128179 +S'this' +p128181 +tp128182 +a(g128179 +g128181 +S"nereid's" +p128183 +tp128184 +a(g128181 +g128183 +S'head' +p128185 +tp128186 +a(g128183 +g128185 +S'is' +p128187 +tp128188 +a(g128185 +g128187 +S'thrown' +p128189 +tp128190 +a(g128187 +g128189 +S'back' +p128191 +tp128192 +a(g128189 +g128191 +S'with' +p128193 +tp128194 +a(g128191 +g128193 +S'abandon,' +p128195 +tp128196 +a(g128193 +g128195 +S'her' +p128197 +tp128198 +a(g128195 +g128197 +S'lithe' +p128199 +tp128200 +a(g128197 +g128199 +S'body' +p128201 +tp128202 +a(g128199 +g128201 +S'in' +p128203 +tp128204 +a(g128201 +g128203 +S'counterpoint' +p128205 +tp128206 +a(g128203 +g128205 +S'with' +p128207 +tp128208 +a(g128205 +g128207 +S'a' +p128209 +tp128210 +a(g128207 +g128209 +S'sea' +p128211 +tp128212 +a(g128209 +g128211 +S'monster' +p128213 +tp128214 +a(g128211 +g128213 +S'that' +p128215 +tp128216 +a(g128213 +g128215 +S'helps' +p128217 +tp128218 +a(g128215 +g128217 +S'support' +p128219 +tp128220 +a(g128217 +g128219 +S'the' +p128221 +tp128222 +a(g128219 +g128221 +S'weight' +p128223 +tp128224 +a(g128221 +g128223 +S'of' +p128225 +tp128226 +a(g128223 +g128225 +S'the' +p128227 +tp128228 +a(g128225 +g128227 +S'marble.' +p128229 +tp128230 +a(g128227 +g128229 +S'voluminous' +p128231 +tp128232 +a(g128229 +g128231 +S'twists' +p128233 +tp128234 +a(g128231 +g128233 +S'of' +p128235 +tp128236 +a(g128233 +g128235 +S'fabric' +p128237 +tp128238 +a(g128235 +g128237 +S'cross' +p128239 +tp128240 +a(g128237 +g128239 +S'diagonally' +p128241 +tp128242 +a(g128239 +g128241 +S'over' +p128243 +tp128244 +a(g128241 +g128243 +S'her,' +p128245 +tp128246 +a(g128243 +g128245 +S'contributing' +p128247 +tp128248 +a(g128245 +g128247 +S'dynamic' +p128249 +tp128250 +a(g128247 +g128249 +S'energy' +p128251 +tp128252 +a(g128249 +g128251 +S'to' +p128253 +tp128254 +a(g128251 +g128253 +S'her' +p128255 +tp128256 +a(g128253 +g128255 +S'pose.' +p128257 +tp128258 +a(g128255 +g128257 +S'the' +p128259 +tp128260 +a(g128257 +g128259 +S'marble' +p128261 +tp128262 +a(g128259 +g128261 +S'here' +p128263 +tp128264 +a(g128261 +g128263 +S'is' +p128265 +tp128266 +a(g128263 +g128265 +S'deeply' +p128267 +tp128268 +a(g128265 +g128267 +S'cut,' +p128269 +tp128270 +a(g128267 +g128269 +S'creating' +p128271 +tp128272 +a(g128269 +g128271 +S'dark' +p128273 +tp128274 +a(g128271 +g128273 +S'pockets' +p128275 +tp128276 +a(g128273 +g128275 +S'of' +p128277 +tp128278 +a(g128275 +g128277 +S'shadow' +p128279 +tp128280 +a(g128277 +g128279 +S'that' +p128281 +tp128282 +a(g128279 +g128281 +S'enliven' +p128283 +tp128284 +a(g128281 +g128283 +S'the' +p128285 +tp128286 +a(g128283 +g128285 +S'surface.' +p128287 +tp128288 +a(g128285 +g128287 +S'she' +p128289 +tp128290 +a(g128287 +g128289 +S'is' +p128291 +tp128292 +a(g128289 +g128291 +S'attributed' +p128293 +tp128294 +a(g128291 +g128293 +S'to' +p128295 +tp128296 +a(g128293 +g128295 +S'giuseppe' +p128297 +tp128298 +a(g128295 +g128297 +S'mazzuoli,' +p128299 +tp128300 +a(g128297 +g128299 +S'who' +p128301 +tp128302 +a(g128299 +g128301 +S'as' +p128303 +tp128304 +a(g128301 +g128303 +S'a' +p128305 +tp128306 +a(g128303 +g128305 +S'young' +p128307 +tp128308 +a(g128305 +g128307 +S'man' +p128309 +tp128310 +a(g128307 +g128309 +S'worked' +p128311 +tp128312 +a(g128309 +g128311 +S'with' +p128313 +tp128314 +a(g128311 +g128313 +S'this' +p128315 +tp128316 +a(g128313 +g128315 +S'work,' +p128317 +tp128318 +a(g128315 +g128317 +S'along' +p128319 +tp128320 +a(g128317 +g128319 +S'with' +p128321 +tp128322 +a(g128319 +g128321 +S'it' +p128323 +tp128324 +a(g128321 +g128323 +S'was' +p128325 +tp128326 +a(g128323 +g128325 +S'clodion' +p128327 +tp128328 +a(g128325 +g128327 +S'who' +p128329 +tp128330 +a(g128327 +g128329 +S'arranged' +p128331 +tp128332 +a(g128329 +g128331 +S'for' +p128333 +tp128334 +a(g128331 +g128333 +S'the' +p128335 +tp128336 +a(g128333 +g128335 +S'expensive' +p128337 +tp128338 +a(g128335 +g128337 +S'carrara' +p128339 +tp128340 +a(g128337 +g128339 +S'marble' +p128341 +tp128342 +a(g128339 +g128341 +S'used' +p128343 +tp128344 +a(g128341 +g128343 +S'for' +p128345 +tp128346 +a(g128343 +g128345 +S'all' +p128347 +tp128348 +a(g128345 +g128347 +S'of' +p128349 +tp128350 +a(g128347 +g128349 +S"terray's" +p128351 +tp128352 +a(g128349 +g128351 +S'statues,' +p128353 +tp128354 +a(g128351 +g128353 +S'urging' +p128355 +tp128356 +a(g128353 +g128355 +S'his' +p128357 +tp128358 +a(g128355 +g128357 +S'source' +p128359 +tp128360 +a(g128357 +g128359 +S'not' +p128361 +tp128362 +a(g128359 +g128361 +S'to' +p128363 +tp128364 +a(g128361 +g128363 +S'divulge' +p128365 +tp128366 +a(g128363 +g128365 +S'the' +p128367 +tp128368 +a(g128365 +g128367 +S'name' +p128369 +tp128370 +a(g128367 +g128369 +S'of' +p128371 +tp128372 +a(g128369 +g128371 +S'his' +p128373 +tp128374 +a(g128371 +g128373 +S'unpopular' +p128375 +tp128376 +a(g128373 +g128375 +S'client.' +p128377 +tp128378 +a(g128375 +g128377 +S'clodion' +p128379 +tp128380 +a(g128377 +g128379 +S'had' +p128381 +tp128382 +a(g128379 +g128381 +S'lived' +p128383 +tp128384 +a(g128381 +g128383 +S'in' +p128385 +tp128386 +a(g128383 +g128385 +S'italy' +p128387 +tp128388 +a(g128385 +g128387 +S'for' +p128389 +tp128390 +a(g128387 +g128389 +S'nine' +p128391 +tp128392 +a(g128389 +g128391 +S'years' +p128393 +tp128394 +a(g128391 +g128393 +S'after' +p128395 +tp128396 +a(g128393 +g128395 +S'winning' +p128397 +tp128398 +a(g128395 +g128397 +S'the' +p128399 +tp128400 +a(g128397 +g128399 +S'prix' +p128401 +tp128402 +a(g128399 +g128401 +S'de' +p128403 +tp128404 +a(g128401 +g128403 +S'rome.' +p128405 +tp128406 +a(g128403 +g128405 +S'a' +p128407 +tp128408 +a(g128405 +g128407 +S'vision' +p128409 +tp128410 +a(g128407 +g128409 +S'of' +p128411 +tp128412 +a(g128409 +g128411 +S'antiquity' +p128413 +tp128414 +a(g128411 +g128413 +S'he' +p128415 +tp128416 +a(g128413 +g128415 +S'acquired' +p128417 +tp128418 +a(g128415 +g128417 +S'while' +p128419 +tp128420 +a(g128417 +g128419 +S'in' +p128421 +tp128422 +a(g128419 +g128421 +S'italy' +p128423 +tp128424 +a(g128421 +g128423 +S'—' +p128425 +tp128426 +a(g128423 +g128425 +S'a' +p128427 +tp128428 +a(g128425 +g128427 +S'wooded' +p128429 +tp128430 +a(g128427 +g128429 +S'arcadia' +p128431 +tp128432 +a(g128429 +g128431 +S'where' +p128433 +tp128434 +a(g128431 +g128433 +S'young' +p128435 +tp128436 +a(g128433 +g128435 +S'satyrs' +p128437 +tp128438 +a(g128435 +g128437 +S'and' +p128439 +tp128440 +a(g128437 +g128439 +S'nymphs' +p128441 +tp128442 +a(g128439 +g128441 +S'cavort' +p128443 +tp128444 +a(g128441 +g128443 +S'—' +p128445 +tp128446 +a(g128443 +g128445 +S'continued' +p128447 +tp128448 +a(g128445 +g128447 +S'to' +p128449 +tp128450 +a(g128447 +g128449 +S'be' +p128451 +tp128452 +a(g128449 +g128451 +S'his' +p128453 +tp128454 +a(g128451 +g128453 +S'greatest' +p128455 +tp128456 +a(g128453 +g128455 +S'inspiration.' +p128457 +tp128458 +a(g128455 +g128457 +S'after' +p128459 +tp128460 +a(g128457 +g128459 +S'his' +p128461 +tp128462 +a(g128459 +g128461 +S'return' +p128463 +tp128464 +a(g128461 +g128463 +S'to' +p128465 +tp128466 +a(g128463 +g128465 +S'paris,' +p128467 +tp128468 +a(g128465 +g128467 +S'these' +p128469 +tp128470 +a(g128467 +g128469 +S'subjects' +p128471 +tp128472 +a(g128469 +g128471 +S'delighted' +p128473 +tp128474 +a(g128471 +g128473 +S'the' +p128475 +tp128476 +a(g128473 +g128475 +S'aristocratic' +p128477 +tp128478 +a(g128475 +g128477 +S'and' +p128479 +tp128480 +a(g128477 +g128479 +S'wealthy' +p128481 +tp128482 +a(g128479 +g128481 +S'bourgeois' +p128483 +tp128484 +a(g128481 +g128483 +S'clients' +p128485 +tp128486 +a(g128483 +g128485 +S'who' +p128487 +tp128488 +a(g128485 +g128487 +S'flooded' +p128489 +tp128490 +a(g128487 +g128489 +S'him' +p128491 +tp128492 +a(g128489 +g128491 +S'with' +p128493 +tp128494 +a(g128491 +g128493 +S'commissions' +p128495 +tp128496 +a(g128493 +g128495 +S'to' +p128497 +tp128498 +a(g128495 +g128497 +S'decorate' +p128499 +tp128500 +a(g128497 +g128499 +S'their' +p128501 +tp128502 +a(g128499 +g128501 +S'homes.' +p128503 +tp128504 +a(g128501 +g128503 +S'clodion' +p128505 +tp128506 +a(g128503 +g128505 +S'prepared' +p128507 +tp128508 +a(g128505 +g128507 +S'a' +p128509 +tp128510 +a(g128507 +g128509 +S'terracotta' +p128511 +tp128512 +a(g128509 +g128511 +S'model' +p128513 +tp128514 +a(g128511 +g128513 +S'for' +p128515 +tp128516 +a(g128513 +g128515 +S'one' +p128517 +tp128518 +a(g128515 +g128517 +S'of' +p128519 +tp128520 +a(g128517 +g128519 +S'his' +p128521 +tp128522 +a(g128519 +g128521 +S'contemporaries' +p128523 +tp128524 +a(g128521 +g128523 +S'noted' +p128525 +tp128526 +a(g128523 +g128525 +S'that' +p128527 +tp128528 +a(g128525 +g128527 +S'houdon,' +p128529 +tp128530 +a(g128527 +g128529 +S'the' +p128531 +tp128532 +a(g128529 +g128531 +S'most' +p128533 +tp128534 +a(g128531 +g128533 +S'successful' +p128535 +tp128536 +a(g128533 +g128535 +S'portrait' +p128537 +tp128538 +a(g128535 +g128537 +S'sculptor' +p128539 +tp128540 +a(g128537 +g128539 +S'of' +p128541 +tp128542 +a(g128539 +g128541 +S'his' +p128543 +tp128544 +a(g128541 +g128543 +S'day,' +p128545 +tp128546 +a(g128543 +g128545 +S'"pushed' +p128547 +tp128548 +a(g128545 +g128547 +S'truth' +p128549 +tp128550 +a(g128547 +g128549 +S'to' +p128551 +tp128552 +a(g128549 +g128551 +S'the' +p128553 +tp128554 +a(g128551 +g128553 +S'bitter' +p128555 +tp128556 +a(g128553 +g128555 +S'end."' +p128557 +tp128558 +a(g128555 +g128557 +S'this' +p128559 +tp128560 +a(g128557 +g128559 +S'bust' +p128561 +tp128562 +a(g128559 +g128561 +S'captures' +p128563 +tp128564 +a(g128561 +g128563 +S'the' +p128565 +tp128566 +a(g128563 +g128565 +S'fleshy' +p128567 +tp128568 +a(g128565 +g128567 +S'and' +p128569 +tp128570 +a(g128567 +g128569 +S'disheveled' +p128571 +tp128572 +a(g128569 +g128571 +S'scoundrel' +p128573 +tp128574 +a(g128571 +g128573 +S'cagliostro,' +p128575 +tp128576 +a(g128573 +g128575 +S'who' +p128577 +tp128578 +a(g128575 +g128577 +S'bilked' +p128579 +tp128580 +a(g128577 +g128579 +S'the' +p128581 +tp128582 +a(g128579 +g128581 +S'courts' +p128583 +tp128584 +a(g128581 +g128583 +S'of' +p128585 +tp128586 +a(g128583 +g128585 +S'europe' +p128587 +tp128588 +a(g128585 +g128587 +S'as' +p128589 +tp128590 +a(g128587 +g128589 +S'an' +p128591 +tp128592 +a(g128589 +g128591 +S'alchemist' +p128593 +tp128594 +a(g128591 +g128593 +S'and' +p128595 +tp128596 +a(g128593 +g128595 +S'mesmerizer.' +p128597 +tp128598 +a(g128595 +g128597 +S'he' +p128599 +tp128600 +a(g128597 +g128599 +S'was' +p128601 +tp128602 +a(g128599 +g128601 +S'implicated' +p128603 +tp128604 +a(g128601 +g128603 +S'in' +p128605 +tp128606 +a(g128603 +g128605 +S'the' +p128607 +tp128608 +a(g128605 +g128607 +S'notorious' +p128609 +tp128610 +a(g128607 +g128609 +S'affair' +p128611 +tp128612 +a(g128609 +g128611 +S'of' +p128613 +tp128614 +a(g128611 +g128613 +S'the' +p128615 +tp128616 +a(g128613 +g128615 +S'diamond' +p128617 +tp128618 +a(g128615 +g128617 +S'necklace,' +p128619 +tp128620 +a(g128617 +g128619 +S'which' +p128621 +tp128622 +a(g128619 +g128621 +S'galvanized' +p128623 +tp128624 +a(g128621 +g128623 +S'public' +p128625 +tp128626 +a(g128623 +g128625 +S'opinion' +p128627 +tp128628 +a(g128625 +g128627 +S'against' +p128629 +tp128630 +a(g128627 +g128629 +S'the' +p128631 +tp128632 +a(g128629 +g128631 +S'french' +p128633 +tp128634 +a(g128631 +g128633 +S'royal' +p128635 +tp128636 +a(g128633 +g128635 +S'family' +p128637 +tp128638 +a(g128635 +g128637 +S'when' +p128639 +tp128640 +a(g128637 +g128639 +S'it' +p128641 +tp128642 +a(g128639 +g128641 +S'appeared' +p128643 +tp128644 +a(g128641 +g128643 +S'that' +p128645 +tp128646 +a(g128643 +g128645 +S'marie-antoinette' +p128647 +tp128648 +a(g128645 +g128647 +S'had' +p128649 +tp128650 +a(g128647 +g128649 +S'purchased' +p128651 +tp128652 +a(g128649 +g128651 +S'an' +p128653 +tp128654 +a(g128651 +g128653 +S'extravagant' +p128655 +tp128656 +a(g128653 +g128655 +S'necklace' +p128657 +tp128658 +a(g128655 +g128657 +S'at' +p128659 +tp128660 +a(g128657 +g128659 +S'a' +p128661 +tp128662 +a(g128659 +g128661 +S'time' +p128663 +tp128664 +a(g128661 +g128663 +S'of' +p128665 +tp128666 +a(g128663 +g128665 +S'strained' +p128667 +tp128668 +a(g128665 +g128667 +S'public' +p128669 +tp128670 +a(g128667 +g128669 +S'finances.' +p128671 +tp128672 +a(g128669 +g128671 +S'in' +p128673 +tp128674 +a(g128671 +g128673 +S'fact,' +p128675 +tp128676 +a(g128673 +g128675 +S'an' +p128677 +tp128678 +a(g128675 +g128677 +S'ambitious' +p128679 +tp128680 +a(g128677 +g128679 +S'dupe' +p128681 +tp128682 +a(g128679 +g128681 +S'had' +p128683 +tp128684 +a(g128681 +g128683 +S'made' +p128685 +tp128686 +a(g128683 +g128685 +S'the' +p128687 +tp128688 +a(g128685 +g128687 +S'purchase' +p128689 +tp128690 +a(g128687 +g128689 +S'in' +p128691 +tp128692 +a(g128689 +g128691 +S'hopes' +p128693 +tp128694 +a(g128691 +g128693 +S'of' +p128695 +tp128696 +a(g128693 +g128695 +S'currying' +p128697 +tp128698 +a(g128695 +g128697 +S'the' +p128699 +tp128700 +a(g128697 +g128699 +S"queen's" +p128701 +tp128702 +a(g128699 +g128701 +S'favor.' +p128703 +tp128704 +a(g128701 +g128703 +S'cagliostro' +p128705 +tp128706 +a(g128703 +g128705 +S'was' +p128707 +tp128708 +a(g128705 +g128707 +S'suspected' +p128709 +tp128710 +a(g128707 +g128709 +S'of' +p128711 +tp128712 +a(g128709 +g128711 +S'acting' +p128713 +tp128714 +a(g128711 +g128713 +S'as' +p128715 +tp128716 +a(g128713 +g128715 +S'a' +p128717 +tp128718 +a(g128715 +g128717 +S'go-between,' +p128719 +tp128720 +a(g128717 +g128719 +S'and' +p128721 +tp128722 +a(g128719 +g128721 +S'though' +p128723 +tp128724 +a(g128721 +g128723 +S'no' +p128725 +tp128726 +a(g128723 +g128725 +S'charges' +p128727 +tp128728 +a(g128725 +g128727 +S'were' +p128729 +tp128730 +a(g128727 +g128729 +S'proven,' +p128731 +tp128732 +a(g128729 +g128731 +S'he' +p128733 +tp128734 +a(g128731 +g128733 +S'was' +p128735 +tp128736 +a(g128733 +g128735 +S'expelled' +p128737 +tp128738 +a(g128735 +g128737 +S'from' +p128739 +tp128740 +a(g128737 +g128739 +S'france' +p128741 +tp128742 +a(g128739 +g128741 +S'in' +p128743 +tp128744 +a(g128741 +g128743 +S'1786,' +p128745 +tp128746 +a(g128743 +g128745 +S'the' +p128747 +tp128748 +a(g128745 +g128747 +S'same' +p128749 +tp128750 +a(g128747 +g128749 +S'year' +p128751 +tp128752 +a(g128749 +g128751 +S'this' +p128753 +tp128754 +a(g128751 +g128753 +S'bust' +p128755 +tp128756 +a(g128753 +g128755 +S'is' +p128757 +tp128758 +a(g128755 +g128757 +S'dated.' +p128759 +tp128760 +a(g128757 +g128759 +S'he' +p128761 +tp128762 +a(g128759 +g128761 +S'died' +p128763 +tp128764 +a(g128761 +g128763 +S'in' +p128765 +tp128766 +a(g128763 +g128765 +S'a' +p128767 +tp128768 +a(g128765 +g128767 +S'prison' +p128769 +tp128770 +a(g128767 +g128769 +S'in' +p128771 +tp128772 +a(g128769 +g128771 +S'rome' +p128773 +tp128774 +a(g128771 +g128773 +S'about' +p128775 +tp128776 +a(g128773 +g128775 +S'fifteen' +p128777 +tp128778 +a(g128775 +g128777 +S'years' +p128779 +tp128780 +a(g128777 +g128779 +S'later,' +p128781 +tp128782 +a(g128779 +g128781 +S'condemned' +p128783 +tp128784 +a(g128781 +g128783 +S'by' +p128785 +tp128786 +a(g128783 +g128785 +S'the' +p128787 +tp128788 +a(g128785 +g128787 +S'pope' +p128789 +tp128790 +a(g128787 +g128789 +S'as' +p128791 +tp128792 +a(g128789 +g128791 +S'a' +p128793 +tp128794 +a(g128791 +g128793 +S'heretic.' +p128795 +tp128796 +a(g128793 +g128795 +S"cagliostro's" +p128797 +tp128798 +a(g128795 +g128797 +S'spirited' +p128799 +tp128800 +a(g128797 +g128799 +S'portrait' +p128801 +tp128802 +a(g128799 +g128801 +S'contrasts' +p128803 +tp128804 +a(g128801 +g128803 +S'with' +p128805 +tp128806 +a(g128803 +g128805 +S"houdon's" +p128807 +tp128808 +a(g128805 +g128807 +S'cool' +p128809 +tp128810 +a(g128807 +g128809 +S'and' +p128811 +tp128812 +a(g128809 +g128811 +S'impersonal' +p128813 +tp128814 +a(g128811 +g128813 +S'the' +p128815 +tp128816 +a(g128813 +g128815 +S'small' +p128817 +tp128818 +a(g128815 +g128817 +S'watering' +p128819 +tp128820 +a(g128817 +g128819 +S'pitcher' +p128821 +tp128822 +a(g128819 +g128821 +S'held' +p128823 +tp128824 +a(g128821 +g128823 +S'by' +p128825 +tp128826 +a(g128823 +g128825 +S'the' +p128827 +tp128828 +a(g128825 +g128827 +S'female' +p128829 +tp128830 +a(g128827 +g128829 +S'figure' +p128831 +tp128832 +a(g128829 +g128831 +S'identifies' +p128833 +tp128834 +a(g128831 +g128833 +S'her' +p128835 +tp128836 +a(g128833 +g128835 +S'as' +p128837 +tp128838 +a(g128835 +g128837 +S'a' +p128839 +tp128840 +a(g128837 +g128839 +S'personification' +p128841 +tp128842 +a(g128839 +g128841 +S'of' +p128843 +tp128844 +a(g128841 +g128843 +S'the' +p128845 +tp128846 +a(g128843 +g128845 +S'dew;' +p128847 +tp128848 +a(g128845 +g128847 +S'the' +p128849 +tp128850 +a(g128847 +g128849 +S'butterfly-winged' +p128851 +tp128852 +a(g128849 +g128851 +S'boy' +p128853 +tp128854 +a(g128851 +g128853 +S'is' +p128855 +tp128856 +a(g128853 +g128855 +S'zephyr,' +p128857 +tp128858 +a(g128855 +g128857 +S'the' +p128859 +tp128860 +a(g128857 +g128859 +S'gentle' +p128861 +tp128862 +a(g128859 +g128861 +S'west' +p128863 +tp128864 +a(g128861 +g128863 +S'wind.' +p128865 +tp128866 +a(g128863 +g128865 +S'the' +p128867 +tp128868 +a(g128865 +g128867 +S'sculpture' +p128869 +tp128870 +a(g128867 +g128869 +S'may' +p128871 +tp128872 +a(g128869 +g128871 +S'have' +p128873 +tp128874 +a(g128871 +g128873 +S'been' +p128875 +tp128876 +a(g128873 +g128875 +S'designed' +p128877 +tp128878 +a(g128875 +g128877 +S'for' +p128879 +tp128880 +a(g128877 +g128879 +S'the' +p128881 +tp128882 +a(g128879 +g128881 +S'gardens' +p128883 +tp128884 +a(g128881 +g128883 +S'of' +p128885 +tp128886 +a(g128883 +g128885 +S'the' +p128887 +tp128888 +a(g128885 +g128887 +S'royal' +p128889 +tp128890 +a(g128887 +g128889 +S'pavilion' +p128891 +tp128892 +a(g128889 +g128891 +S'of' +p128893 +tp128894 +a(g128891 +g128893 +S'louis' +p128895 +tp128896 +a(g128893 +g128895 +S"xiv's" +p128897 +tp128898 +a(g128895 +g128897 +S'chateau' +p128899 +tp128900 +a(g128897 +g128899 +S'at' +p128901 +tp128902 +a(g128899 +g128901 +S'marly,' +p128903 +tp128904 +a(g128901 +g128903 +S'but' +p128905 +tp128906 +a(g128903 +g128905 +S'was' +p128907 +tp128908 +a(g128905 +g128907 +S'apparently' +p128909 +tp128910 +a(g128907 +g128909 +S'never' +p128911 +tp128912 +a(g128909 +g128911 +S'installed' +p128913 +tp128914 +a(g128911 +g128913 +S'there.' +p128915 +tp128916 +a(g128913 +g128915 +S'in' +p128917 +tp128918 +a(g128915 +g128917 +S'1762' +p128919 +tp128920 +a(g128917 +g128919 +S'it' +p128921 +tp128922 +a(g128919 +g128921 +S'was' +p128923 +tp128924 +a(g128921 +g128923 +S'at' +p128925 +tp128926 +a(g128923 +g128925 +S'louis' +p128927 +tp128928 +a(g128925 +g128927 +S"xv's" +p128929 +tp128930 +a(g128927 +g128929 +S'chateau' +p128931 +tp128932 +a(g128929 +g128931 +S'de' +p128933 +tp128934 +a(g128931 +g128933 +S'la' +p128935 +tp128936 +a(g128933 +g128935 +S'muette.' +p128937 +tp128938 +a(g128935 +g128937 +S'an' +p128939 +tp128940 +a(g128937 +g128939 +S'inventory' +p128941 +tp128942 +a(g128939 +g128941 +S'described' +p128943 +tp128944 +a(g128941 +g128943 +S'the' +p128945 +tp128946 +a(g128943 +g128945 +S'work' +p128947 +tp128948 +a(g128945 +g128947 +S'as' +p128949 +tp128950 +a(g128947 +g128949 +S'having' +p128951 +tp128952 +a(g128949 +g128951 +S'been' +p128953 +tp128954 +a(g128951 +g128953 +S'begun' +p128955 +tp128956 +a(g128953 +g128955 +S'by' +p128957 +tp128958 +a(g128955 +g128957 +S'massou,' +p128959 +tp128960 +a(g128957 +g128959 +S'continued' +p128961 +tp128962 +a(g128959 +g128961 +S'by' +p128963 +tp128964 +a(g128961 +g128963 +S'flamen,' +p128965 +tp128966 +a(g128963 +g128965 +S'and' +p128967 +tp128968 +a(g128965 +g128967 +S'completed' +p128969 +tp128970 +a(g128967 +g128969 +S'by' +p128971 +tp128972 +a(g128969 +g128971 +S'rebillé.' +p128973 +tp128974 +a(g128971 +g128973 +S'the' +p128975 +tp128976 +a(g128973 +g128975 +S'problems' +p128977 +tp128978 +a(g128975 +g128977 +S'of' +p128979 +tp128980 +a(g128977 +g128979 +S'attribution' +p128981 +tp128982 +a(g128979 +g128981 +S'are' +p128983 +tp128984 +a(g128981 +g128983 +S'still' +p128985 +tp128986 +a(g128983 +g128985 +S'being' +p128987 +tp128988 +a(g128985 +g128987 +S'studied,' +p128989 +tp128990 +a(g128987 +g128989 +S'complicated' +p128991 +tp128992 +a(g128989 +g128991 +S'by' +p128993 +tp128994 +a(g128991 +g128993 +S'the' +p128995 +tp128996 +a(g128993 +g128995 +S'fact' +p128997 +tp128998 +a(g128995 +g128997 +S'that' +p128999 +tp129000 +a(g128997 +g128999 +S"flamen's" +p129001 +tp129002 +a(g128999 +g129001 +S'and' +p129003 +tp129004 +a(g129001 +g129003 +S"massou's" +p129005 +tp129006 +a(g129003 +g129005 +S'sons' +p129007 +tp129008 +a(g129005 +g129007 +S'were' +p129009 +tp129010 +a(g129007 +g129009 +S'also' +p129011 +tp129012 +a(g129009 +g129011 +S'sculptors' +p129013 +tp129014 +a(g129011 +g129013 +S'and' +p129015 +tp129016 +a(g129013 +g129015 +S'that' +p129017 +tp129018 +a(g129015 +g129017 +S'there' +p129019 +tp129020 +a(g129017 +g129019 +S'were' +p129021 +tp129022 +a(g129019 +g129021 +S'two' +p129023 +tp129024 +a(g129021 +g129023 +S'contemporary' +p129025 +tp129026 +a(g129023 +g129025 +S'artists' +p129027 +tp129028 +a(g129025 +g129027 +S'named' +p129029 +tp129030 +a(g129027 +g129029 +S'rebillé,' +p129031 +tp129032 +a(g129029 +g129031 +S'neither' +p129033 +tp129034 +a(g129031 +g129033 +S'very' +p129035 +tp129036 +a(g129033 +g129035 +S'well' +p129037 +tp129038 +a(g129035 +g129037 +S'known.' +p129039 +tp129040 +a(g129037 +g129039 +S'the' +p129041 +tp129042 +a(g129039 +g129041 +S'sculptures' +p129043 +tp129044 +a(g129041 +g129043 +S'made' +p129045 +tp129046 +a(g129043 +g129045 +S'for' +p129047 +tp129048 +a(g129045 +g129047 +S'marly' +p129049 +tp129050 +a(g129047 +g129049 +S'were' +p129051 +tp129052 +a(g129049 +g129051 +S'noted' +p129053 +tp129054 +a(g129051 +g129053 +S'for' +p129055 +tp129056 +a(g129053 +g129055 +S'a' +p129057 +tp129058 +a(g129055 +g129057 +S'new' +p129059 +tp129060 +a(g129057 +g129059 +S'freedom' +p129061 +tp129062 +a(g129059 +g129061 +S'in' +p129063 +tp129064 +a(g129061 +g129063 +S'style.' +p129065 +tp129066 +a(g129063 +g129065 +S'the' +p129067 +tp129068 +a(g129065 +g129067 +S'figure' +p129069 +tp129070 +a(g129067 +g129069 +S'of' +p129071 +tp129072 +a(g129069 +g129071 +S'dew' +p129073 +tp129074 +a(g129071 +g129073 +S'shares' +p129075 +tp129076 +a(g129073 +g129075 +S'their' +p129077 +tp129078 +a(g129075 +g129077 +S'easy' +p129079 +tp129080 +a(g129077 +g129079 +S'movement' +p129081 +tp129082 +a(g129079 +g129081 +S'and' +p129083 +tp129084 +a(g129081 +g129083 +S'intimacy,' +p129085 +tp129086 +a(g129083 +g129085 +S'but' +p129087 +tp129088 +a(g129085 +g129087 +S'her' +p129089 +tp129090 +a(g129087 +g129089 +S'elongated' +p129091 +tp129092 +a(g129089 +g129091 +S'proportions,' +p129093 +tp129094 +a(g129091 +g129093 +S'light' +p129095 +tp129096 +a(g129093 +g129095 +S'drapery,' +p129097 +tp129098 +a(g129095 +g129097 +S'and' +p129099 +tp129100 +a(g129097 +g129099 +S'supple' +p129101 +tp129102 +a(g129099 +g129101 +S'grace' +p129103 +tp129104 +a(g129101 +g129103 +S'suggest' +p129105 +tp129106 +a(g129103 +g129105 +S'that' +p129107 +tp129108 +a(g129105 +g129107 +S'she' +p129109 +tp129110 +a(g129107 +g129109 +S'may' +p129111 +tp129112 +a(g129109 +g129111 +S'have' +p129113 +tp129114 +a(g129111 +g129113 +S'been' +p129115 +tp129116 +a(g129113 +g129115 +S'the' +p129117 +tp129118 +a(g129115 +g129117 +S'work' +p129119 +tp129120 +a(g129117 +g129119 +S'of' +p129121 +tp129122 +a(g129119 +g129121 +S'the' +p129123 +tp129124 +a(g129121 +g129123 +S'next' +p129125 +tp129126 +a(g129123 +g129125 +S'generation' +p129127 +tp129128 +a(g129125 +g129127 +S'of' +p129129 +tp129130 +a(g129127 +g129129 +S'sculptors.' +p129131 +tp129132 +a(g129129 +g129131 +S'a' +p129133 +tp129134 +a(g129131 +g129133 +S'latin' +p129135 +tp129136 +a(g129133 +g129135 +S'inscription' +p129137 +tp129138 +a(g129135 +g129137 +S'identifies' +p129139 +tp129140 +a(g129137 +g129139 +S'this' +p129141 +tp129142 +a(g129139 +g129141 +S'figure' +p129143 +tp129144 +a(g129141 +g129143 +S'as' +p129145 +tp129146 +a(g129143 +g129145 +S'calliope,' +p129147 +tp129148 +a(g129145 +g129147 +S'muse' +p129149 +tp129150 +a(g129147 +g129149 +S'of' +p129151 +tp129152 +a(g129149 +g129151 +S'epic' +p129153 +tp129154 +a(g129151 +g129153 +S'poetry.' +p129155 +tp129156 +a(g129153 +g129155 +S'although' +p129157 +tp129158 +a(g129155 +g129157 +S'pajou' +p129159 +tp129160 +a(g129157 +g129159 +S'was' +p129161 +tp129162 +a(g129159 +g129161 +S'known' +p129163 +tp129164 +a(g129161 +g129163 +S'to' +p129165 +tp129166 +a(g129163 +g129165 +S'have' +p129167 +tp129168 +a(g129165 +g129167 +S'carved' +p129169 +tp129170 +a(g129167 +g129169 +S'several' +p129171 +tp129172 +a(g129169 +g129171 +S'muses' +p129173 +tp129174 +a(g129171 +g129173 +S'as' +p129175 +tp129176 +a(g129173 +g129175 +S'garden' +p129177 +tp129178 +a(g129175 +g129177 +S'decorations,' +p129179 +tp129180 +a(g129177 +g129179 +S'this' +p129181 +tp129182 +a(g129179 +g129181 +S'work' +p129183 +tp129184 +a(g129181 +g129183 +S'is' +p129185 +tp129186 +a(g129183 +g129185 +S'unsigned' +p129187 +tp129188 +a(g129185 +g129187 +S'and' +p129189 +tp129190 +a(g129187 +g129189 +S'its' +p129191 +tp129192 +a(g129189 +g129191 +S'attribution' +p129193 +tp129194 +a(g129191 +g129193 +S'still' +p129195 +tp129196 +a(g129193 +g129195 +S'being' +p129197 +tp129198 +a(g129195 +g129197 +S'studied.' +p129199 +tp129200 +a(g129197 +g129199 +S'the' +p129201 +tp129202 +a(g129199 +g129201 +S'sculptor' +p129203 +tp129204 +a(g129201 +g129203 +S'shows' +p129205 +tp129206 +a(g129203 +g129205 +S'a' +p129207 +tp129208 +a(g129205 +g129207 +S'natural' +p129209 +tp129210 +a(g129207 +g129209 +S'affinity' +p129211 +tp129212 +a(g129209 +g129211 +S'for' +p129213 +tp129214 +a(g129211 +g129213 +S'the' +p129215 +tp129216 +a(g129213 +g129215 +S'calm' +p129217 +tp129218 +a(g129215 +g129217 +S'restraint' +p129219 +tp129220 +a(g129217 +g129219 +S'of' +p129221 +tp129222 +a(g129219 +g129221 +S'neoclassicism,' +p129223 +tp129224 +a(g129221 +g129223 +S'which' +p129225 +tp129226 +a(g129223 +g129225 +S'grew' +p129227 +tp129228 +a(g129225 +g129227 +S'in' +p129229 +tp129230 +a(g129227 +g129229 +S'popularity' +p129231 +tp129232 +a(g129229 +g129231 +S'in' +p129233 +tp129234 +a(g129231 +g129233 +S'the' +p129235 +tp129236 +a(g129233 +g129235 +S'later' +p129237 +tp129238 +a(g129235 +g129237 +S'decades' +p129239 +tp129240 +a(g129237 +g129239 +S'of' +p129241 +tp129242 +a(g129239 +g129241 +S'the' +p129243 +tp129244 +a(g129241 +g129243 +S'eighteenth' +p129245 +tp129246 +a(g129243 +g129245 +S'century.' +p129247 +tp129248 +a(g129245 +g129247 +S'compare' +p129249 +tp129250 +a(g129247 +g129249 +S'the' +p129251 +tp129252 +a(g129249 +g129251 +S'quiet' +p129253 +tp129254 +a(g129251 +g129253 +S'silhouette' +p129255 +tp129256 +a(g129253 +g129255 +S'and' +p129257 +tp129258 +a(g129255 +g129257 +S'dignified' +p129259 +tp129260 +a(g129257 +g129259 +S'stance' +p129261 +tp129262 +a(g129259 +g129261 +S'of' +p129263 +tp129264 +a(g129261 +g129263 +S'calliope' +p129265 +tp129266 +a(g129263 +g129265 +S'with' +p129267 +tp129268 +a(g129265 +g129267 +S'the' +p129269 +tp129270 +a(g129267 +g129269 +S'complex' +p129271 +tp129272 +a(g129269 +g129271 +S'twisting' +p129273 +tp129274 +a(g129271 +g129273 +S'motion' +p129275 +tp129276 +a(g129273 +g129275 +S'of' +p129277 +tp129278 +a(g129275 +g129277 +S'pajou,' +p129279 +tp129280 +a(g129277 +g129279 +S'who' +p129281 +tp129282 +a(g129279 +g129281 +S'came' +p129283 +tp129284 +a(g129281 +g129283 +S'from' +p129285 +tp129286 +a(g129283 +g129285 +S'a' +p129287 +tp129288 +a(g129285 +g129287 +S'family' +p129289 +tp129290 +a(g129287 +g129289 +S'of' +p129291 +tp129292 +a(g129289 +g129291 +S'minor' +p129293 +tp129294 +a(g129291 +g129293 +S'sculptors,' +p129295 +tp129296 +a(g129293 +g129295 +S'was' +p129297 +tp129298 +a(g129295 +g129297 +S'among' +p129299 +tp129300 +a(g129297 +g129299 +S'the' +p129301 +tp129302 +a(g129299 +g129301 +S'busiest' +p129303 +tp129304 +a(g129301 +g129303 +S'artists' +p129305 +tp129306 +a(g129303 +g129305 +S'of' +p129307 +tp129308 +a(g129305 +g129307 +S'his' +p129309 +tp129310 +a(g129307 +g129309 +S'generation.' +p129311 +tp129312 +a(g129309 +g129311 +S'he' +p129313 +tp129314 +a(g129311 +g129313 +S'was' +p129315 +tp129316 +a(g129313 +g129315 +S'a' +p129317 +tp129318 +a(g129315 +g129317 +S'favorite' +p129319 +tp129320 +a(g129317 +g129319 +S'of' +p129321 +tp129322 +a(g129319 +g129321 +S'madame' +p129323 +tp129324 +a(g129321 +g129323 +S'du' +p129325 +tp129326 +a(g129323 +g129325 +S'barry,' +p129327 +tp129328 +a(g129325 +g129327 +S'louis' +p129329 +tp129330 +a(g129327 +g129329 +S"xvi's" +p129331 +tp129332 +a(g129329 +g129331 +S'mistress,' +p129333 +tp129334 +a(g129331 +g129333 +S'and' +p129335 +tp129336 +a(g129333 +g129335 +S'received' +p129337 +tp129338 +a(g129335 +g129337 +S'a' +p129339 +tp129340 +a(g129337 +g129339 +S'number' +p129341 +tp129342 +a(g129339 +g129341 +S'of' +p129343 +tp129344 +a(g129341 +g129343 +S'royal' +p129345 +tp129346 +a(g129343 +g129345 +S'and' +p129347 +tp129348 +a(g129345 +g129347 +S'public' +p129349 +tp129350 +a(g129347 +g129349 +S'commissions,' +p129351 +tp129352 +a(g129349 +g129351 +S'but' +p129353 +tp129354 +a(g129351 +g129353 +S'he' +p129355 +tp129356 +a(g129353 +g129355 +S'is' +p129357 +tp129358 +a(g129355 +g129357 +S'perhaps' +p129359 +tp129360 +a(g129357 +g129359 +S'best' +p129361 +tp129362 +a(g129359 +g129361 +S'known' +p129363 +tp129364 +a(g129361 +g129363 +S'for' +p129365 +tp129366 +a(g129363 +g129365 +S'his' +p129367 +tp129368 +a(g129365 +g129367 +S'portrait' +p129369 +tp129370 +a(g129367 +g129369 +S'busts.' +p129371 +tp129372 +a(g129369 +g129371 +S'these' +p129373 +tp129374 +a(g129371 +g129373 +S'brought' +p129375 +tp129376 +a(g129373 +g129375 +S'him' +p129377 +tp129378 +a(g129375 +g129377 +S'many' +p129379 +tp129380 +a(g129377 +g129379 +S'private' +p129381 +tp129382 +a(g129379 +g129381 +S'patrons,' +p129383 +tp129384 +a(g129381 +g129383 +S'and,' +p129385 +tp129386 +a(g129383 +g129385 +S'unlike' +p129387 +tp129388 +a(g129385 +g129387 +S'many' +p129389 +tp129390 +a(g129387 +g129389 +S'other' +p129391 +tp129392 +a(g129389 +g129391 +S'artists,' +p129393 +tp129394 +a(g129391 +g129393 +S'he' +p129395 +tp129396 +a(g129393 +g129395 +S'was' +p129397 +tp129398 +a(g129395 +g129397 +S'able' +p129399 +tp129400 +a(g129397 +g129399 +S'to' +p129401 +tp129402 +a(g129399 +g129401 +S'accommodate' +p129403 +tp129404 +a(g129401 +g129403 +S'a' +p129405 +tp129406 +a(g129403 +g129405 +S'new' +p129407 +tp129408 +a(g129405 +g129407 +S'clientele' +p129409 +tp129410 +a(g129407 +g129409 +S'after' +p129411 +tp129412 +a(g129409 +g129411 +S'the' +p129413 +tp129414 +a(g129411 +g129413 +S'revolution.' +p129415 +tp129416 +a(g129413 +g129415 +S'with' +p129417 +tp129418 +a(g129415 +g129417 +S'terray' +p129419 +tp129420 +a(g129417 +g129419 +S'is' +p129421 +tp129422 +a(g129419 +g129421 +S'representative' +p129423 +tp129424 +a(g129421 +g129423 +S'of' +p129425 +tp129426 +a(g129423 +g129425 +S'the' +p129427 +tp129428 +a(g129425 +g129427 +S'private' +p129429 +tp129430 +a(g129427 +g129429 +S'patrons' +p129431 +tp129432 +a(g129429 +g129431 +S'who' +p129433 +tp129434 +a(g129431 +g129433 +S'transformed' +p129435 +tp129436 +a(g129433 +g129435 +S'the' +p129437 +tp129438 +a(g129435 +g129437 +S'monumental' +p129439 +tp129440 +a(g129437 +g129439 +S'public' +p129441 +tp129442 +a(g129439 +g129441 +S'works' +p129443 +tp129444 +a(g129441 +g129443 +S'of' +p129445 +tp129446 +a(g129443 +g129445 +S'the' +p129447 +tp129448 +a(g129445 +g129447 +S'preceding' +p129449 +tp129450 +a(g129447 +g129449 +S'century' +p129451 +tp129452 +a(g129449 +g129451 +S'into' +p129453 +tp129454 +a(g129451 +g129453 +S'the' +p129455 +tp129456 +a(g129453 +g129455 +S'more' +p129457 +tp129458 +a(g129455 +g129457 +S'intimate' +p129459 +tp129460 +a(g129457 +g129459 +S'works' +p129461 +tp129462 +a(g129459 +g129461 +S'admired' +p129463 +tp129464 +a(g129461 +g129463 +S'by' +p129465 +tp129466 +a(g129463 +g129465 +S'eighteenth-century' +p129467 +tp129468 +a(g129465 +g129467 +S'collectors.' +p129469 +tp129470 +a(g129467 +g129469 +S'he' +p129471 +tp129472 +a(g129469 +g129471 +S'was' +p129473 +tp129474 +a(g129471 +g129473 +S'among' +p129475 +tp129476 +a(g129473 +g129475 +S'the' +p129477 +tp129478 +a(g129475 +g129477 +S'most' +p129479 +tp129480 +a(g129477 +g129479 +S'unpopular' +p129481 +tp129482 +a(g129479 +g129481 +S'of' +p129483 +tp129484 +a(g129481 +g129483 +S'all' +p129485 +tp129486 +a(g129483 +g129485 +S'louis' +p129487 +tp129488 +a(g129485 +g129487 +S"xv's" +p129489 +tp129490 +a(g129487 +g129489 +S'ministers,' +p129491 +tp129492 +a(g129489 +g129491 +S'accused' +p129493 +tp129494 +a(g129491 +g129493 +S'of' +p129495 +tp129496 +a(g129493 +g129495 +S'excessive' +p129497 +tp129498 +a(g129495 +g129497 +S'luxury.' +p129499 +tp129500 +a(g129497 +g129499 +S'when' +p129501 +tp129502 +a(g129499 +g129501 +S'he' +p129503 +tp129504 +a(g129501 +g129503 +S'was' +p129505 +tp129506 +a(g129503 +g129505 +S'swiftly' +p129507 +tp129508 +a(g129505 +g129507 +S'dismissed' +p129509 +tp129510 +a(g129507 +g129509 +S'by' +p129511 +tp129512 +a(g129509 +g129511 +S'the' +p129513 +tp129514 +a(g129511 +g129513 +S'new' +p129515 +tp129516 +a(g129513 +g129515 +S'king' +p129517 +tp129518 +a(g129515 +g129517 +S'after' +p129519 +tp129520 +a(g129517 +g129519 +S'louis' +p129521 +tp129522 +a(g129519 +g129521 +S"xv's" +p129523 +tp129524 +a(g129521 +g129523 +S'death' +p129525 +tp129526 +a(g129523 +g129525 +S'in' +p129527 +tp129528 +a(g129525 +g129527 +S'1774,' +p129529 +tp129530 +a(g129527 +g129529 +S'a' +p129531 +tp129532 +a(g129529 +g129531 +S'parisian' +p129533 +tp129534 +a(g129531 +g129533 +S'mob' +p129535 +tp129536 +a(g129533 +g129535 +S'burned' +p129537 +tp129538 +a(g129535 +g129537 +S'him' +p129539 +tp129540 +a(g129537 +g129539 +S'in' +p129541 +tp129542 +a(g129539 +g129541 +S'effigy.' +p129543 +tp129544 +a(g129541 +g129543 +S'public' +p129545 +tp129546 +a(g129543 +g129545 +S'opinion' +p129547 +tp129548 +a(g129545 +g129547 +S'notwithstanding,' +p129549 +tp129550 +a(g129547 +g129549 +S'he' +p129551 +tp129552 +a(g129549 +g129551 +S'seems' +p129553 +tp129554 +a(g129551 +g129553 +S'to' +p129555 +tp129556 +a(g129553 +g129555 +S'have' +p129557 +tp129558 +a(g129555 +g129557 +S'tried' +p129559 +tp129560 +a(g129557 +g129559 +S'to' +p129561 +tp129562 +a(g129559 +g129561 +S'make' +p129563 +tp129564 +a(g129561 +g129563 +S'much-needed' +p129565 +tp129566 +a(g129563 +g129565 +S'economies' +p129567 +tp129568 +a(g129565 +g129567 +S'in' +p129569 +tp129570 +a(g129567 +g129569 +S'public' +p129571 +tp129572 +a(g129569 +g129571 +S'spending,' +p129573 +tp129574 +a(g129571 +g129573 +S'reform' +p129575 +tp129576 +a(g129573 +g129575 +S'taxes,' +p129577 +tp129578 +a(g129575 +g129577 +S'and' +p129579 +tp129580 +a(g129577 +g129579 +S'reduce' +p129581 +tp129582 +a(g129579 +g129581 +S'bloated' +p129583 +tp129584 +a(g129581 +g129583 +S'state' +p129585 +tp129586 +a(g129583 +g129585 +S'pensions.' +p129587 +tp129588 +a(g129585 +g129587 +S'the' +p129589 +tp129590 +a(g129587 +g129589 +S'identity' +p129591 +tp129592 +a(g129589 +g129591 +S'of' +p129593 +tp129594 +a(g129591 +g129593 +S'the' +p129595 +tp129596 +a(g129593 +g129595 +S'women' +p129597 +tp129598 +a(g129595 +g129597 +S'portrayed' +p129599 +tp129600 +a(g129597 +g129599 +S'here' +p129601 +tp129602 +a(g129599 +g129601 +S'has' +p129603 +tp129604 +a(g129601 +g129603 +S'been' +p129605 +tp129606 +a(g129603 +g129605 +S'the' +p129607 +tp129608 +a(g129605 +g129607 +S'source' +p129609 +tp129610 +a(g129607 +g129609 +S'of' +p129611 +tp129612 +a(g129609 +g129611 +S'much' +p129613 +tp129614 +a(g129611 +g129613 +S'scholarly' +p129615 +tp129616 +a(g129613 +g129615 +S'debate.' +p129617 +tp129618 +a(g129615 +g129617 +S'correspondence' +p129619 +tp129620 +a(g129617 +g129619 +S'among' +p129621 +tp129622 +a(g129619 +g129621 +S'members' +p129623 +tp129624 +a(g129621 +g129623 +S'of' +p129625 +tp129626 +a(g129623 +g129625 +S'the' +p129627 +tp129628 +a(g129625 +g129627 +S'morisot' +p129629 +tp129630 +a(g129627 +g129629 +S'family' +p129631 +tp129632 +a(g129629 +g129631 +S'indicates' +p129633 +tp129634 +a(g129631 +g129633 +S'that' +p129635 +tp129636 +a(g129633 +g129635 +S'during' +p129637 +tp129638 +a(g129635 +g129637 +S'the' +p129639 +tp129640 +a(g129637 +g129639 +S'autumn' +p129641 +tp129642 +a(g129639 +g129641 +S'of' +p129643 +tp129644 +a(g129641 +g129643 +S'1869' +p129645 +tp129646 +a(g129643 +g129645 +S'morisot' +p129647 +tp129648 +a(g129645 +g129647 +S'undertook' +p129649 +tp129650 +a(g129647 +g129649 +S'a' +p129651 +tp129652 +a(g129649 +g129651 +S'double' +p129653 +tp129654 +a(g129651 +g129653 +S'portrait' +p129655 +tp129656 +a(g129653 +g129655 +S'of' +p129657 +tp129658 +a(g129655 +g129657 +S'two' +p129659 +tp129660 +a(g129657 +g129659 +S'sisters,' +p129661 +tp129662 +a(g129659 +g129661 +S'the' +p129663 +tp129664 +a(g129661 +g129663 +S'delaroches,' +p129665 +tp129666 +a(g129663 +g129665 +S'who' +p129667 +tp129668 +a(g129665 +g129667 +S'sat' +p129669 +tp129670 +a(g129667 +g129669 +S'for' +p129671 +tp129672 +a(g129669 +g129671 +S'her' +p129673 +tp129674 +a(g129671 +g129673 +S'three' +p129675 +tp129676 +a(g129673 +g129675 +S'times.' +p129677 +tp129678 +a(g129675 +g129677 +S'some' +p129679 +tp129680 +a(g129677 +g129679 +S'scholars' +p129681 +tp129682 +a(g129679 +g129681 +S'have' +p129683 +tp129684 +a(g129681 +g129683 +S'thus' +p129685 +tp129686 +a(g129683 +g129685 +S'posited' +p129687 +tp129688 +a(g129685 +g129687 +S'that' +p129689 +tp129690 +a(g129687 +g129689 +S'this' +p129691 +tp129692 +a(g129689 +g129691 +S'work' +p129693 +tp129694 +a(g129691 +g129693 +S'is' +p129695 +tp129696 +a(g129693 +g129695 +S'the' +p129697 +tp129698 +a(g129695 +g129697 +S'result' +p129699 +tp129700 +a(g129697 +g129699 +S'of' +p129701 +tp129702 +a(g129699 +g129701 +S'those' +p129703 +tp129704 +a(g129701 +g129703 +S'sittings.' +p129705 +tp129706 +a(g129703 +g129705 +S'executed' +p129707 +tp129708 +a(g129705 +g129707 +S'shortly' +p129709 +tp129710 +a(g129707 +g129709 +S'after' +p129711 +tp129712 +a(g129709 +g129711 +S'edma\xe2\x80\x99s' +p129713 +tp129714 +a(g129711 +g129713 +S'marriage' +p129715 +tp129716 +a(g129713 +g129715 +S'and' +p129717 +tp129718 +a(g129715 +g129717 +S'the' +p129719 +tp129720 +a(g129717 +g129719 +S'sisters\xe2\x80\x99' +p129721 +tp129722 +a(g129719 +g129721 +S'subsequent' +p129723 +tp129724 +a(g129721 +g129723 +S'separation,' +p129725 +tp129726 +a(g129723 +g129725 +S'the' +p129727 +tp129728 +a(g129725 +g129727 +S'painting' +p129729 +tp129730 +a(g129727 +g129729 +S'depicts' +p129731 +tp129732 +a(g129729 +g129731 +S'an' +p129733 +tp129734 +a(g129731 +g129733 +S'intimate,' +p129735 +tp129736 +a(g129733 +g129735 +S'if' +p129737 +tp129738 +a(g129735 +g129737 +S'posed,' +p129739 +tp129740 +a(g129737 +g129739 +S'moment.' +p129741 +tp129742 +a(g129739 +g129741 +S'the' +p129743 +tp129744 +a(g129741 +g129743 +S'correspondence' +p129745 +tp129746 +a(g129743 +g129745 +S'between' +p129747 +tp129748 +a(g129745 +g129747 +S'berthe' +p129749 +tp129750 +a(g129747 +g129749 +S'and' +p129751 +tp129752 +a(g129749 +g129751 +S'edma' +p129753 +tp129754 +a(g129751 +g129753 +S'reveals' +p129755 +tp129756 +a(g129753 +g129755 +S'that' +p129757 +tp129758 +a(g129755 +g129757 +S'each' +p129759 +tp129760 +a(g129757 +g129759 +S'sister' +p129761 +tp129762 +a(g129759 +g129761 +S'viewed' +p129763 +tp129764 +a(g129761 +g129763 +S'the' +p129765 +tp129766 +a(g129763 +g129765 +S'other' +p129767 +tp129768 +a(g129765 +g129767 +S'as' +p129769 +tp129770 +a(g129767 +g129769 +S'her' +p129771 +tp129772 +a(g129769 +g129771 +S'foil;' +p129773 +tp129774 +a(g129771 +g129773 +S'the' +p129775 +tp129776 +a(g129773 +g129775 +S'letters' +p129777 +tp129778 +a(g129775 +g129777 +S'also' +p129779 +tp129780 +a(g129777 +g129779 +S'include' +p129781 +tp129782 +a(g129779 +g129781 +S'many' +p129783 +tp129784 +a(g129781 +g129783 +S'references' +p129785 +tp129786 +a(g129783 +g129785 +S'to' +p129787 +tp129788 +a(g129785 +g129787 +S'their' +p129789 +tp129790 +a(g129787 +g129789 +S'closeness' +p129791 +tp129792 +a(g129789 +g129791 +S'prior' +p129793 +tp129794 +a(g129791 +g129793 +S'to' +p129795 +tp129796 +a(g129793 +g129795 +S'edma\xe2\x80\x99s' +p129797 +tp129798 +a(g129795 +g129797 +S'marriage' +p129799 +tp129800 +a(g129797 +g129799 +S'and' +p129801 +tp129802 +a(g129799 +g129801 +S'their' +p129803 +tp129804 +a(g129801 +g129803 +S'wish' +p129805 +tp129806 +a(g129803 +g129805 +S'to' +p129807 +tp129808 +a(g129805 +g129807 +S'be' +p129809 +tp129810 +a(g129807 +g129809 +S'reunited.' +p129811 +tp129812 +a(g129809 +g129811 +S'an' +p129813 +tp129814 +a(g129811 +g129813 +S'intricately' +p129815 +tp129816 +a(g129813 +g129815 +S'rendered' +p129817 +tp129818 +a(g129815 +g129817 +S'fan' +p129819 +tp129820 +a(g129817 +g129819 +S'held' +p129821 +tp129822 +a(g129819 +g129821 +S'by' +p129823 +tp129824 +a(g129821 +g129823 +S'the' +p129825 +tp129826 +a(g129823 +g129825 +S'figure' +p129827 +tp129828 +a(g129825 +g129827 +S'on' +p129829 +tp129830 +a(g129827 +g129829 +S'the' +p129831 +tp129832 +a(g129829 +g129831 +S'right' +p129833 +tp129834 +a(g129831 +g129833 +S'calls' +p129835 +tp129836 +a(g129833 +g129835 +S'attention' +p129837 +tp129838 +a(g129835 +g129837 +S'to' +p129839 +tp129840 +a(g129837 +g129839 +S'the' +p129841 +tp129842 +a(g129839 +g129841 +S'fan' +p129843 +tp129844 +a(g129841 +g129843 +S'on' +p129845 +tp129846 +a(g129843 +g129845 +S'the' +p129847 +tp129848 +a(g129845 +g129847 +S'wall' +p129849 +tp129850 +a(g129847 +g129849 +S'behind' +p129851 +tp129852 +a(g129849 +g129851 +S'the' +p129853 +tp129854 +a(g129851 +g129853 +S'two' +p129855 +tp129856 +a(g129853 +g129855 +S'women.' +p129857 +tp129858 +a(g129855 +g129857 +S'given' +p129859 +tp129860 +a(g129857 +g129859 +S'to' +p129861 +tp129862 +a(g129859 +g129861 +S'morisot' +p129863 +tp129864 +a(g129861 +g129863 +S'by' +p129865 +tp129866 +a(g129863 +g129865 +S'her' +p129867 +tp129868 +a(g129865 +g129867 +S'good' +p129869 +tp129870 +a(g129867 +g129869 +S'friend' +p129871 +tp129872 +a(g129869 +g129871 +S'the' +p129873 +tp129874 +a(g129871 +g129873 +S'artist' +p129875 +tp129876 +a(g129873 +g129875 +S'edgar' +p129877 +tp129878 +a(g129875 +g129877 +S'degas,' +p129879 +tp129880 +a(g129877 +g129879 +S'the' +p129881 +tp129882 +a(g129879 +g129881 +S'framed' +p129883 +tp129884 +a(g129881 +g129883 +S'fan' +p129885 +tp129886 +a(g129883 +g129885 +S'indicates' +p129887 +tp129888 +a(g129885 +g129887 +S'that' +p129889 +tp129890 +a(g129887 +g129889 +S'the' +p129891 +tp129892 +a(g129889 +g129891 +S'painting' +p129893 +tp129894 +a(g129891 +g129893 +S'was' +p129895 +tp129896 +a(g129893 +g129895 +S'executed' +p129897 +tp129898 +a(g129895 +g129897 +S'in' +p129899 +tp129900 +a(g129897 +g129899 +S'the' +p129901 +tp129902 +a(g129899 +g129901 +S'intimacy' +p129903 +tp129904 +a(g129901 +g129903 +S'of' +p129905 +tp129906 +a(g129903 +g129905 +S'the' +p129907 +tp129908 +a(g129905 +g129907 +S'morisot' +p129909 +tp129910 +a(g129907 +g129909 +S'home.' +p129911 +tp129912 +a(g129909 +g129911 +S'degas' +p129913 +tp129914 +a(g129911 +g129913 +S'painted' +p129915 +tp129916 +a(g129913 +g129915 +S'several' +p129917 +tp129918 +a(g129915 +g129917 +S'fans' +p129919 +tp129920 +a(g129917 +g129919 +S'during' +p129921 +tp129922 +a(g129919 +g129921 +S'his' +p129923 +tp129924 +a(g129921 +g129923 +S'career;' +p129925 +tp129926 +a(g129923 +g129925 +S'they' +p129927 +tp129928 +a(g129925 +g129927 +S'reflect' +p129929 +tp129930 +a(g129927 +g129929 +S'the' +p129931 +tp129932 +a(g129929 +g129931 +S'increasing' +p129933 +tp129934 +a(g129931 +g129933 +S'popularity' +p129935 +tp129936 +a(g129933 +g129935 +S'in' +p129937 +tp129938 +a(g129935 +g129937 +S'france' +p129939 +tp129940 +a(g129937 +g129939 +S'of' +p129941 +tp129942 +a(g129939 +g129941 +S'japanese' +p129943 +tp129944 +a(g129941 +g129943 +S'fans' +p129945 +tp129946 +a(g129943 +g129945 +S'and' +p129947 +tp129948 +a(g129945 +g129947 +S'woodblock' +p129949 +tp129950 +a(g129947 +g129949 +S'prints' +p129951 +tp129952 +a(g129949 +g129951 +S'as' +p129953 +tp129954 +a(g129951 +g129953 +S'well' +p129955 +tp129956 +a(g129953 +g129955 +S'as' +p129957 +tp129958 +a(g129955 +g129957 +S'a' +p129959 +tp129960 +a(g129957 +g129959 +S'growing' +p129961 +tp129962 +a(g129959 +g129961 +S'taste' +p129963 +tp129964 +a(g129961 +g129963 +S'for' +p129965 +tp129966 +a(g129963 +g129965 +S'all' +p129967 +tp129968 +a(g129965 +g129967 +S'things' +p129969 +tp129970 +a(g129967 +g129969 +S'spanish.' +p129971 +tp129972 +a(g129969 +g129971 +S'the' +p129973 +tp129974 +a(g129971 +g129973 +S'fan' +p129975 +tp129976 +a(g129973 +g129975 +S'he' +p129977 +tp129978 +a(g129975 +g129977 +S'gave' +p129979 +tp129980 +a(g129977 +g129979 +S'to' +p129981 +tp129982 +a(g129979 +g129981 +S'morisot' +p129983 +tp129984 +a(g129981 +g129983 +S'(' +p129985 +tp129986 +a(g129983 +g129985 +S'in' +p129987 +tp129988 +a(g129985 +g129987 +S'this' +p129989 +tp129990 +a(g129987 +g129989 +S'portrait,' +p129991 +tp129992 +a(g129989 +g129991 +S'morisot' +p129993 +tp129994 +a(g129991 +g129993 +S'depicted' +p129995 +tp129996 +a(g129993 +g129995 +S'both' +p129997 +tp129998 +a(g129995 +g129997 +S'sitters' +p129999 +tp130000 +a(g129997 +g129999 +S'in' +p130001 +tp130002 +a(g129999 +g130001 +S'day' +p130003 +tp130004 +a(g130001 +g130003 +S'dresses' +p130005 +tp130006 +a(g130003 +g130005 +S'suitable' +p130007 +tp130008 +a(g130005 +g130007 +S'for' +p130009 +tp130010 +a(g130007 +g130009 +S'receiving' +p130011 +tp130012 +a(g130009 +g130011 +S'familiar' +p130013 +tp130014 +a(g130011 +g130013 +S'company.' +p130015 +tp130016 +a(g130013 +g130015 +S'(text' +p130017 +tp130018 +a(g130015 +g130017 +S'by' +p130019 +tp130020 +a(g130017 +g130019 +S'daniella' +p130021 +tp130022 +a(g130019 +g130021 +S'berman,' +p130023 +tp130024 +a(g130021 +g130023 +S'notes' +p130025 +tp130026 +a(g130023 +g130025 +S'' +p130029 +tp130030 +a(g130027 +g130029 +S'' +p130033 +tp130034 +a(g130031 +g130033 +S'' +p130037 +tp130038 +a(g130035 +g130037 +S'captain' +p130039 +tp130040 +a(g130037 +g130039 +S'pocklington,' +p130041 +tp130042 +a(g130039 +g130041 +S'who' +p130043 +tp130044 +a(g130041 +g130043 +S'wears' +p130045 +tp130046 +a(g130043 +g130045 +S'the' +p130047 +tp130048 +a(g130045 +g130047 +S'uniform' +p130049 +tp130050 +a(g130047 +g130049 +S'of' +p130051 +tp130052 +a(g130049 +g130051 +S'the' +p130053 +tp130054 +a(g130051 +g130053 +S'scots' +p130055 +tp130056 +a(g130053 +g130055 +S'guard,' +p130057 +tp130058 +a(g130055 +g130057 +S'retired' +p130059 +tp130060 +a(g130057 +g130059 +S'from' +p130061 +tp130062 +a(g130059 +g130061 +S'the' +p130063 +tp130064 +a(g130061 +g130063 +S'third' +p130065 +tp130066 +a(g130063 +g130065 +S'regiment' +p130067 +tp130068 +a(g130065 +g130067 +S'in' +p130069 +tp130070 +a(g130067 +g130069 +S'1769,' +p130071 +tp130072 +a(g130069 +g130071 +S'the' +p130073 +tp130074 +a(g130071 +g130073 +S'same' +p130075 +tp130076 +a(g130073 +g130075 +S'year' +p130077 +tp130078 +a(g130075 +g130077 +S'that' +p130079 +tp130080 +a(g130077 +g130079 +S'stubbs' +p130081 +tp130082 +a(g130079 +g130081 +S'painted' +p130083 +tp130084 +a(g130081 +g130083 +S'this' +p130085 +tp130086 +a(g130083 +g130085 +S'group' +p130087 +tp130088 +a(g130085 +g130087 +S'portrait.' +p130089 +tp130090 +a(g130087 +g130089 +S'seated' +p130091 +tp130092 +a(g130089 +g130091 +S'on' +p130093 +tp130094 +a(g130091 +g130093 +S'the' +p130095 +tp130096 +a(g130093 +g130095 +S'bench' +p130097 +tp130098 +a(g130095 +g130097 +S'is' +p130099 +tp130100 +a(g130097 +g130099 +S'the' +p130101 +tp130102 +a(g130099 +g130101 +S"captain's" +p130103 +tp130104 +a(g130101 +g130103 +S'wife,' +p130105 +tp130106 +a(g130103 +g130105 +S'pleasance,' +p130107 +tp130108 +a(g130105 +g130107 +S'who' +p130109 +tp130110 +a(g130107 +g130109 +S'is' +p130111 +tp130112 +a(g130109 +g130111 +S'probably' +p130113 +tp130114 +a(g130111 +g130113 +S'wearing' +p130115 +tp130116 +a(g130113 +g130115 +S'bridal' +p130117 +tp130118 +a(g130115 +g130117 +S'clothes.' +p130119 +tp130120 +a(g130117 +g130119 +S'the' +p130121 +tp130122 +a(g130119 +g130121 +S'woman' +p130123 +tp130124 +a(g130121 +g130123 +S'standing' +p130125 +tp130126 +a(g130123 +g130125 +S'behind' +p130127 +tp130128 +a(g130125 +g130127 +S'pleasance' +p130129 +tp130130 +a(g130127 +g130129 +S'is' +p130131 +tp130132 +a(g130129 +g130131 +S'presumably' +p130133 +tp130134 +a(g130131 +g130133 +S"pocklington's" +p130135 +tp130136 +a(g130133 +g130135 +S'sister,' +p130137 +tp130138 +a(g130135 +g130137 +S'frances.' +p130139 +tp130140 +a(g130137 +g130139 +S"stubbs'" +p130141 +tp130142 +a(g130139 +g130141 +S'fame' +p130143 +tp130144 +a(g130141 +g130143 +S'is' +p130145 +tp130146 +a(g130143 +g130145 +S'based' +p130147 +tp130148 +a(g130145 +g130147 +S'on' +p130149 +tp130150 +a(g130147 +g130149 +S'his' +p130151 +tp130152 +a(g130149 +g130151 +S'precise' +p130153 +tp130154 +a(g130151 +g130153 +S'and' +p130155 +tp130156 +a(g130153 +g130155 +S'naturalistic' +p130157 +tp130158 +a(g130155 +g130157 +S'depictions' +p130159 +tp130160 +a(g130157 +g130159 +S'of' +p130161 +tp130162 +a(g130159 +g130161 +S'animals,' +p130163 +tp130164 +a(g130161 +g130163 +S'primarily' +p130165 +tp130166 +a(g130163 +g130165 +S'horses,' +p130167 +tp130168 +a(g130165 +g130167 +S'even' +p130169 +tp130170 +a(g130167 +g130169 +S'in' +p130171 +tp130172 +a(g130169 +g130171 +S'paintings' +p130173 +tp130174 +a(g130171 +g130173 +S'such' +p130175 +tp130176 +a(g130173 +g130175 +S'as' +p130177 +tp130178 +a(g130175 +g130177 +S'this' +p130179 +tp130180 +a(g130177 +g130179 +S'that' +p130181 +tp130182 +a(g130179 +g130181 +S'are' +p130183 +tp130184 +a(g130181 +g130183 +S'ostensibly' +p130185 +tp130186 +a(g130183 +g130185 +S'about' +p130187 +tp130188 +a(g130185 +g130187 +S'human' +p130189 +tp130190 +a(g130187 +g130189 +S'matters.' +p130191 +tp130192 +a(g130189 +g130191 +S'stubbs' +p130193 +tp130194 +a(g130191 +g130193 +S'lived' +p130195 +tp130196 +a(g130193 +g130195 +S'in' +p130197 +tp130198 +a(g130195 +g130197 +S'a' +p130199 +tp130200 +a(g130197 +g130199 +S'world' +p130201 +tp130202 +a(g130199 +g130201 +S'fascinated' +p130203 +tp130204 +a(g130201 +g130203 +S'with' +p130205 +tp130206 +a(g130203 +g130205 +S'scientific' +p130207 +tp130208 +a(g130205 +g130207 +S'inquiry;' +p130209 +tp130210 +a(g130207 +g130209 +S'he' +p130211 +tp130212 +a(g130209 +g130211 +S'himself' +p130213 +tp130214 +a(g130211 +g130213 +S'actually' +p130215 +tp130216 +a(g130213 +g130215 +S'performed' +p130217 +tp130218 +a(g130215 +g130217 +S'dissections' +p130219 +tp130220 +a(g130217 +g130219 +S'of' +p130221 +tp130222 +a(g130219 +g130221 +S'animals' +p130223 +tp130224 +a(g130221 +g130223 +S'to' +p130225 +tp130226 +a(g130223 +g130225 +S'fully' +p130227 +tp130228 +a(g130225 +g130227 +S'understand' +p130229 +tp130230 +a(g130227 +g130229 +S'their' +p130231 +tp130232 +a(g130229 +g130231 +S'anatomy.' +p130233 +tp130234 +a(g130231 +g130233 +S"stubbs'" +p130235 +tp130236 +a(g130233 +g130235 +S'interest' +p130237 +tp130238 +a(g130235 +g130237 +S'in' +p130239 +tp130240 +a(g130237 +g130239 +S'the' +p130241 +tp130242 +a(g130239 +g130241 +S'structure' +p130243 +tp130244 +a(g130241 +g130243 +S'and' +p130245 +tp130246 +a(g130243 +g130245 +S'complexity' +p130247 +tp130248 +a(g130245 +g130247 +S'of' +p130249 +tp130250 +a(g130247 +g130249 +S'living' +p130251 +tp130252 +a(g130249 +g130251 +S'things' +p130253 +tp130254 +a(g130251 +g130253 +S'led' +p130255 +tp130256 +a(g130253 +g130255 +S'him' +p130257 +tp130258 +a(g130255 +g130257 +S'to' +p130259 +tp130260 +a(g130257 +g130259 +S'adopt' +p130261 +tp130262 +a(g130259 +g130261 +S'a' +p130263 +tp130264 +a(g130261 +g130263 +S'working' +p130265 +tp130266 +a(g130263 +g130265 +S'style' +p130267 +tp130268 +a(g130265 +g130267 +S'in' +p130269 +tp130270 +a(g130267 +g130269 +S'which' +p130271 +tp130272 +a(g130269 +g130271 +S'he' +p130273 +tp130274 +a(g130271 +g130273 +S'first' +p130275 +tp130276 +a(g130273 +g130275 +S'painted' +p130277 +tp130278 +a(g130275 +g130277 +S'the' +p130279 +tp130280 +a(g130277 +g130279 +S'individual' +p130281 +tp130282 +a(g130279 +g130281 +S'figures' +p130283 +tp130284 +a(g130281 +g130283 +S'and' +p130285 +tp130286 +a(g130283 +g130285 +S'then' +p130287 +tp130288 +a(g130285 +g130287 +S'completed' +p130289 +tp130290 +a(g130287 +g130289 +S'the' +p130291 +tp130292 +a(g130289 +g130291 +S'background' +p130293 +tp130294 +a(g130291 +g130293 +S'and' +p130295 +tp130296 +a(g130293 +g130295 +S'secondary' +p130297 +tp130298 +a(g130295 +g130297 +S'details.' +p130299 +tp130300 +a(g130297 +g130299 +S'the' +p130301 +tp130302 +a(g130299 +g130301 +S'subjects' +p130303 +tp130304 +a(g130301 +g130303 +S'are' +p130305 +tp130306 +a(g130303 +g130305 +S'arranged' +p130307 +tp130308 +a(g130305 +g130307 +S'in' +p130309 +tp130310 +a(g130307 +g130309 +S'a' +p130311 +tp130312 +a(g130309 +g130311 +S'friezelike' +p130313 +tp130314 +a(g130311 +g130313 +S'pattern' +p130315 +tp130316 +a(g130313 +g130315 +S'against' +p130317 +tp130318 +a(g130315 +g130317 +S'the' +p130319 +tp130320 +a(g130317 +g130319 +S'darker,' +p130321 +tp130322 +a(g130319 +g130321 +S'more' +p130323 +tp130324 +a(g130321 +g130323 +S'muted' +p130325 +tp130326 +a(g130323 +g130325 +S'shades' +p130327 +tp130328 +a(g130325 +g130327 +S'of' +p130329 +tp130330 +a(g130327 +g130329 +S'the' +p130331 +tp130332 +a(g130329 +g130331 +S'massive' +p130333 +tp130334 +a(g130331 +g130333 +S'tree' +p130335 +tp130336 +a(g130333 +g130335 +S'and' +p130337 +tp130338 +a(g130335 +g130337 +S'fanciful' +p130339 +tp130340 +a(g130337 +g130339 +S'landscape.' +p130341 +tp130342 +a(g130339 +g130341 +S'stubbs' +p130343 +tp130344 +a(g130341 +g130343 +S'was' +p130345 +tp130346 +a(g130343 +g130345 +S'not' +p130347 +tp130348 +a(g130345 +g130347 +S'invited' +p130349 +tp130350 +a(g130347 +g130349 +S'to' +p130351 +tp130352 +a(g130349 +g130351 +S'exhibit' +p130353 +tp130354 +a(g130351 +g130353 +S'at' +p130355 +tp130356 +a(g130353 +g130355 +S'the' +p130357 +tp130358 +a(g130355 +g130357 +S'royal' +p130359 +tp130360 +a(g130357 +g130359 +S'academy' +p130361 +tp130362 +a(g130359 +g130361 +S'because' +p130363 +tp130364 +a(g130361 +g130363 +S'he' +p130365 +tp130366 +a(g130363 +g130365 +S'had' +p130367 +tp130368 +a(g130365 +g130367 +S'been' +p130369 +tp130370 +a(g130367 +g130369 +S'labeled' +p130371 +tp130372 +a(g130369 +g130371 +S'as' +p130373 +tp130374 +a(g130371 +g130373 +S'a' +p130375 +tp130376 +a(g130373 +g130375 +S'horse' +p130377 +tp130378 +a(g130375 +g130377 +S'painter,' +p130379 +tp130380 +a(g130377 +g130379 +S'and' +p130381 +tp130382 +a(g130379 +g130381 +S'his' +p130383 +tp130384 +a(g130381 +g130383 +S'popularity' +p130385 +tp130386 +a(g130383 +g130385 +S'sank' +p130387 +tp130388 +a(g130385 +g130387 +S'even' +p130389 +tp130390 +a(g130387 +g130389 +S'lower' +p130391 +tp130392 +a(g130389 +g130391 +S'during' +p130393 +tp130394 +a(g130391 +g130393 +S'the' +p130395 +tp130396 +a(g130393 +g130395 +S'romantic' +p130397 +tp130398 +a(g130395 +g130397 +S'era.' +p130399 +tp130400 +a(g130397 +g130399 +S'now' +p130401 +tp130402 +a(g130399 +g130401 +S'in' +p130403 +tp130404 +a(g130401 +g130403 +S'an' +p130405 +tp130406 +a(g130403 +g130405 +S'age' +p130407 +tp130408 +a(g130405 +g130407 +S'that' +p130409 +tp130410 +a(g130407 +g130409 +S'looks' +p130411 +tp130412 +a(g130409 +g130411 +S'back' +p130413 +tp130414 +a(g130411 +g130413 +S'on' +p130415 +tp130416 +a(g130413 +g130415 +S'pioneers' +p130417 +tp130418 +a(g130415 +g130417 +S'such' +p130419 +tp130420 +a(g130417 +g130419 +S'as' +p130421 +tp130422 +a(g130419 +g130421 +S'stubbs' +p130423 +tp130424 +a(g130421 +g130423 +S'with' +p130425 +tp130426 +a(g130423 +g130425 +S'fascination' +p130427 +tp130428 +a(g130425 +g130427 +S'and' +p130429 +tp130430 +a(g130427 +g130429 +S'respect,' +p130431 +tp130432 +a(g130429 +g130431 +S'his' +p130433 +tp130434 +a(g130431 +g130433 +S'stature' +p130435 +tp130436 +a(g130433 +g130435 +S'as' +p130437 +tp130438 +a(g130435 +g130437 +S'an' +p130439 +tp130440 +a(g130437 +g130439 +S'artist' +p130441 +tp130442 +a(g130439 +g130441 +S'has' +p130443 +tp130444 +a(g130441 +g130443 +S'greatly' +p130445 +tp130446 +a(g130443 +g130445 +S'increased.' +p130447 +tp130448 +a(g130445 +g130447 +S'english' +p130449 +tp130450 +a(g130447 +g130449 +S'sculptors' +p130451 +tp130452 +a(g130449 +g130451 +S'in' +p130453 +tp130454 +a(g130451 +g130453 +S'the' +p130455 +tp130456 +a(g130453 +g130455 +S'fourteenth' +p130457 +tp130458 +a(g130455 +g130457 +S'and' +p130459 +tp130460 +a(g130457 +g130459 +S'fifteenth' +p130461 +tp130462 +a(g130459 +g130461 +S'centuries' +p130463 +tp130464 +a(g130461 +g130463 +S'made' +p130465 +tp130466 +a(g130463 +g130465 +S'extensive' +p130467 +tp130468 +a(g130465 +g130467 +S'use' +p130469 +tp130470 +a(g130467 +g130469 +S'of' +p130471 +tp130472 +a(g130469 +g130471 +S'alabaster,' +p130473 +tp130474 +a(g130471 +g130473 +S'a' +p130475 +tp130476 +a(g130473 +g130475 +S'stone' +p130477 +tp130478 +a(g130475 +g130477 +S'readily' +p130479 +tp130480 +a(g130477 +g130479 +S'available' +p130481 +tp130482 +a(g130479 +g130481 +S'in' +p130483 +tp130484 +a(g130481 +g130483 +S'the' +p130485 +tp130486 +a(g130483 +g130485 +S'british' +p130487 +tp130488 +a(g130485 +g130487 +S'isles,' +p130489 +tp130490 +a(g130487 +g130489 +S'which' +p130491 +tp130492 +a(g130489 +g130491 +S'they' +p130493 +tp130494 +a(g130491 +g130493 +S'enlivened' +p130495 +tp130496 +a(g130493 +g130495 +S'with' +p130497 +tp130498 +a(g130495 +g130497 +S'polychromy.' +p130499 +tp130500 +a(g130497 +g130499 +S'much' +p130501 +tp130502 +a(g130499 +g130501 +S'religious' +p130503 +tp130504 +a(g130501 +g130503 +S'sculpture' +p130505 +tp130506 +a(g130503 +g130505 +S'was' +p130507 +tp130508 +a(g130505 +g130507 +S'destroyed' +p130509 +tp130510 +a(g130507 +g130509 +S'in' +p130511 +tp130512 +a(g130509 +g130511 +S'england' +p130513 +tp130514 +a(g130511 +g130513 +S'and' +p130515 +tp130516 +a(g130513 +g130515 +S'elsewhere' +p130517 +tp130518 +a(g130515 +g130517 +S'in' +p130519 +tp130520 +a(g130517 +g130519 +S'iconoclastic' +p130521 +tp130522 +a(g130519 +g130521 +S'attacks' +p130523 +tp130524 +a(g130521 +g130523 +S'that' +p130525 +tp130526 +a(g130523 +g130525 +S'accompanied' +p130527 +tp130528 +a(g130525 +g130527 +S'the' +p130529 +tp130530 +a(g130527 +g130529 +S'protestant' +p130531 +tp130532 +a(g130529 +g130531 +S'reformation.' +p130533 +tp130534 +a(g130531 +g130533 +S'this' +p130535 +tp130536 +a(g130533 +g130535 +S'statuary' +p130537 +tp130538 +a(g130535 +g130537 +S'group,' +p130539 +tp130540 +a(g130537 +g130539 +S'fully' +p130541 +tp130542 +a(g130539 +g130541 +S'carved' +p130543 +tp130544 +a(g130541 +g130543 +S'both' +p130545 +tp130546 +a(g130543 +g130545 +S'in' +p130547 +tp130548 +a(g130545 +g130547 +S'front' +p130549 +tp130550 +a(g130547 +g130549 +S'and' +p130551 +tp130552 +a(g130549 +g130551 +S'back,' +p130553 +tp130554 +a(g130551 +g130553 +S'is' +p130555 +tp130556 +a(g130553 +g130555 +S'therefore' +p130557 +tp130558 +a(g130555 +g130557 +S'a' +p130559 +tp130560 +a(g130557 +g130559 +S'great' +p130561 +tp130562 +a(g130559 +g130561 +S'rarity.' +p130563 +tp130564 +a(g130561 +g130563 +S'its' +p130565 +tp130566 +a(g130563 +g130565 +S'survival' +p130567 +tp130568 +a(g130565 +g130567 +S'no' +p130569 +tp130570 +a(g130567 +g130569 +S'doubt' +p130571 +tp130572 +a(g130569 +g130571 +S'owes' +p130573 +tp130574 +a(g130571 +g130573 +S'much' +p130575 +tp130576 +a(g130573 +g130575 +S'to' +p130577 +tp130578 +a(g130575 +g130577 +S'the' +p130579 +tp130580 +a(g130577 +g130579 +S'fact' +p130581 +tp130582 +a(g130579 +g130581 +S'that' +p130583 +tp130584 +a(g130581 +g130583 +S'it' +p130585 +tp130586 +a(g130583 +g130585 +S'was' +p130587 +tp130588 +a(g130585 +g130587 +S'preserved,' +p130589 +tp130590 +a(g130587 +g130589 +S'from' +p130591 +tp130592 +a(g130589 +g130591 +S'an' +p130593 +tp130594 +a(g130591 +g130593 +S'unknown' +p130595 +tp130596 +a(g130593 +g130595 +S'early' +p130597 +tp130598 +a(g130595 +g130597 +S'date' +p130599 +tp130600 +a(g130597 +g130599 +S'until' +p130601 +tp130602 +a(g130599 +g130601 +S'after' +p130603 +tp130604 +a(g130601 +g130603 +S'1880,' +p130605 +tp130606 +a(g130603 +g130605 +S'at' +p130607 +tp130608 +a(g130605 +g130607 +S'the' +p130609 +tp130610 +a(g130607 +g130609 +S'dominican' +p130611 +tp130612 +a(g130609 +g130611 +S'convent' +p130613 +tp130614 +a(g130611 +g130613 +S'of' +p130615 +tp130616 +a(g130613 +g130615 +S'san' +p130617 +tp130618 +a(g130615 +g130617 +S'juan' +p130619 +tp130620 +a(g130617 +g130619 +S'at' +p130621 +tp130622 +a(g130619 +g130621 +S'quejana' +p130623 +tp130624 +a(g130621 +g130623 +S'in' +p130625 +tp130626 +a(g130623 +g130625 +S'the' +p130627 +tp130628 +a(g130625 +g130627 +S'province' +p130629 +tp130630 +a(g130627 +g130629 +S'of' +p130631 +tp130632 +a(g130629 +g130631 +S'alava,' +p130633 +tp130634 +a(g130631 +g130633 +S'spain.' +p130635 +tp130636 +a(g130633 +g130635 +S'the' +p130637 +tp130638 +a(g130635 +g130637 +S'sculptor' +p130639 +tp130640 +a(g130637 +g130639 +S'has' +p130641 +tp130642 +a(g130639 +g130641 +S'designed' +p130643 +tp130644 +a(g130641 +g130643 +S'a' +p130645 +tp130646 +a(g130643 +g130645 +S'saint' +p130647 +tp130648 +a(g130645 +g130647 +S'who' +p130649 +tp130650 +a(g130647 +g130649 +S'seems' +p130651 +tp130652 +a(g130649 +g130651 +S'to' +p130653 +tp130654 +a(g130651 +g130653 +S'tower' +p130655 +tp130656 +a(g130653 +g130655 +S'over' +p130657 +tp130658 +a(g130655 +g130657 +S'his' +p130659 +tp130660 +a(g130657 +g130659 +S'elegantly' +p130661 +tp130662 +a(g130659 +g130661 +S'curving' +p130663 +tp130664 +a(g130661 +g130663 +S'horse' +p130665 +tp130666 +a(g130663 +g130665 +S'as' +p130667 +tp130668 +a(g130665 +g130667 +S'he' +p130669 +tp130670 +a(g130667 +g130669 +S'plunges' +p130671 +tp130672 +a(g130669 +g130671 +S'a' +p130673 +tp130674 +a(g130671 +g130673 +S'lance' +p130675 +tp130676 +a(g130673 +g130675 +S'(now' +p130677 +tp130678 +a(g130675 +g130677 +S'mostly' +p130679 +tp130680 +a(g130677 +g130679 +S'destroyed)' +p130681 +tp130682 +a(g130679 +g130681 +S'into' +p130683 +tp130684 +a(g130681 +g130683 +S'the' +p130685 +tp130686 +a(g130683 +g130685 +S'resisting' +p130687 +tp130688 +a(g130685 +g130687 +S'dragon.' +p130689 +tp130690 +a(g130687 +g130689 +S'these' +p130691 +tp130692 +a(g130689 +g130691 +S'figures' +p130693 +tp130694 +a(g130691 +g130693 +S'are' +p130695 +tp130696 +a(g130693 +g130695 +S'united' +p130697 +tp130698 +a(g130695 +g130697 +S'in' +p130699 +tp130700 +a(g130697 +g130699 +S'a' +p130701 +tp130702 +a(g130699 +g130701 +S'wonderfully' +p130703 +tp130704 +a(g130701 +g130703 +S'compact' +p130705 +tp130706 +a(g130703 +g130705 +S'composition,' +p130707 +tp130708 +a(g130705 +g130707 +S'with' +p130709 +tp130710 +a(g130707 +g130709 +S'a' +p130711 +tp130712 +a(g130709 +g130711 +S'graceful' +p130713 +tp130714 +a(g130711 +g130713 +S'silhouette' +p130715 +tp130716 +a(g130713 +g130715 +S'that' +p130717 +tp130718 +a(g130715 +g130717 +S'survives' +p130719 +tp130720 +a(g130717 +g130719 +S'in' +p130721 +tp130722 +a(g130719 +g130721 +S'spite' +p130723 +tp130724 +a(g130721 +g130723 +S'of' +p130725 +tp130726 +a(g130723 +g130725 +S'important' +p130727 +tp130728 +a(g130725 +g130727 +S'losses' +p130729 +tp130730 +a(g130727 +g130729 +S'like' +p130731 +tp130732 +a(g130729 +g130731 +S'the' +p130733 +tp130734 +a(g130731 +g130733 +S'head' +p130735 +tp130736 +a(g130733 +g130735 +S'of' +p130737 +tp130738 +a(g130735 +g130737 +S'the' +p130739 +tp130740 +a(g130737 +g130739 +S'rescued' +p130741 +tp130742 +a(g130739 +g130741 +S'princess,' +p130743 +tp130744 +a(g130741 +g130743 +S'who' +p130745 +tp130746 +a(g130743 +g130745 +S'holds' +p130747 +tp130748 +a(g130745 +g130747 +S'the' +p130749 +tp130750 +a(g130747 +g130749 +S'dragon' +p130751 +tp130752 +a(g130749 +g130751 +S'by' +p130753 +tp130754 +a(g130751 +g130753 +S'a' +p130755 +tp130756 +a(g130753 +g130755 +S'leash' +p130757 +tp130758 +a(g130755 +g130757 +S'made' +p130759 +tp130760 +a(g130757 +g130759 +S'from' +p130761 +tp130762 +a(g130759 +g130761 +S'her' +p130763 +tp130764 +a(g130761 +g130763 +S'belt.' +p130765 +tp130766 +a(g130763 +g130765 +S'noteworthy' +p130767 +tp130768 +a(g130765 +g130767 +S'is' +p130769 +tp130770 +a(g130767 +g130769 +S'the' +p130771 +tp130772 +a(g130769 +g130771 +S"sculptor's" +p130773 +tp130774 +a(g130771 +g130773 +S'decision' +p130775 +tp130776 +a(g130773 +g130775 +S'to' +p130777 +tp130778 +a(g130775 +g130777 +S'carve' +p130779 +tp130780 +a(g130777 +g130779 +S'the' +p130781 +tp130782 +a(g130779 +g130781 +S'figures' +p130783 +tp130784 +a(g130781 +g130783 +S'with' +p130785 +tp130786 +a(g130783 +g130785 +S'large,' +p130787 +tp130788 +a(g130785 +g130787 +S'smooth' +p130789 +tp130790 +a(g130787 +g130789 +S'surfaces,' +p130791 +tp130792 +a(g130789 +g130791 +S'leaving' +p130793 +tp130794 +a(g130791 +g130793 +S'the' +p130795 +tp130796 +a(g130793 +g130795 +S'textures' +p130797 +tp130798 +a(g130795 +g130797 +S'of' +p130799 +tp130800 +a(g130797 +g130799 +S'chain' +p130801 +tp130802 +a(g130799 +g130801 +S'mail,' +p130803 +tp130804 +a(g130801 +g130803 +S'horse' +p130805 +tp130806 +a(g130803 +g130805 +S'hair' +p130807 +tp130808 +a(g130805 +g130807 +S'on' +p130809 +tp130810 +a(g130807 +g130809 +S'the' +p130811 +tp130812 +a(g130809 +g130811 +S'mane,' +p130813 +tp130814 +a(g130811 +g130813 +S'and' +p130815 +tp130816 +a(g130813 +g130815 +S'scales' +p130817 +tp130818 +a(g130815 +g130817 +S'on' +p130819 +tp130820 +a(g130817 +g130819 +S'the' +p130821 +tp130822 +a(g130819 +g130821 +S'dragon' +p130823 +tp130824 +a(g130821 +g130823 +S'to' +p130825 +tp130826 +a(g130823 +g130825 +S'be' +p130827 +tp130828 +a(g130825 +g130827 +S'applied' +p130829 +tp130830 +a(g130827 +g130829 +S'in' +p130831 +tp130832 +a(g130829 +g130831 +S'paint.' +p130833 +tp130834 +a(g130831 +g130833 +S'originally' +p130835 +tp130836 +a(g130833 +g130835 +S'a' +p130837 +tp130838 +a(g130835 +g130837 +S'pennsylvania' +p130839 +tp130840 +a(g130837 +g130839 +S'schoolteacher,' +p130841 +tp130842 +a(g130839 +g130841 +S'leopold' +p130843 +tp130844 +a(g130841 +g130843 +S'gould' +p130845 +tp130846 +a(g130843 +g130845 +S'seyffert' +p130847 +tp130848 +a(g130845 +g130847 +S'depicted' +p130849 +tp130850 +a(g130847 +g130849 +S'samuel' +p130851 +tp130852 +a(g130849 +g130851 +S'kress' +p130853 +tp130854 +a(g130851 +g130853 +S'and' +p130855 +tp130856 +a(g130853 +g130855 +S'his' +p130857 +tp130858 +a(g130855 +g130857 +S'brother' +p130859 +tp130860 +a(g130857 +g130859 +S'cranach,' +p130861 +tp130862 +a(g130859 +g130861 +S'court' +p130863 +tp130864 +a(g130861 +g130863 +S'painter' +p130865 +tp130866 +a(g130863 +g130865 +S'to' +p130867 +tp130868 +a(g130865 +g130867 +S'the' +p130869 +tp130870 +a(g130867 +g130869 +S'dukes' +p130871 +tp130872 +a(g130869 +g130871 +S'of' +p130873 +tp130874 +a(g130871 +g130873 +S'saxony,' +p130875 +tp130876 +a(g130873 +g130875 +S'employed' +p130877 +tp130878 +a(g130875 +g130877 +S'a' +p130879 +tp130880 +a(g130877 +g130879 +S'highly' +p130881 +tp130882 +a(g130879 +g130881 +S'sophisticated,' +p130883 +tp130884 +a(g130881 +g130883 +S'stylized' +p130885 +tp130886 +a(g130883 +g130885 +S'manner,' +p130887 +tp130888 +a(g130885 +g130887 +S'evident' +p130889 +tp130890 +a(g130887 +g130889 +S'here' +p130891 +tp130892 +a(g130889 +g130891 +S'in' +p130893 +tp130894 +a(g130891 +g130893 +S'the' +p130895 +tp130896 +a(g130893 +g130895 +S'rich' +p130897 +tp130898 +a(g130895 +g130897 +S'coloring' +p130899 +tp130900 +a(g130897 +g130899 +S'and' +p130901 +tp130902 +a(g130899 +g130901 +S'decorative' +p130903 +tp130904 +a(g130901 +g130903 +S'folds' +p130905 +tp130906 +a(g130903 +g130905 +S'of' +p130907 +tp130908 +a(g130905 +g130907 +S"mary's" +p130909 +tp130910 +a(g130907 +g130909 +S'elaborate' +p130911 +tp130912 +a(g130909 +g130911 +S'garments.' +p130913 +tp130914 +a(g130911 +g130913 +S'on' +p130915 +tp130916 +a(g130913 +g130915 +S'his' +p130917 +tp130918 +a(g130915 +g130917 +S'knee' +p130919 +tp130920 +a(g130917 +g130919 +S'jesus' +p130921 +tp130922 +a(g130919 +g130921 +S'balances' +p130923 +tp130924 +a(g130921 +g130923 +S'an' +p130925 +tp130926 +a(g130923 +g130925 +S'apple,' +p130927 +tp130928 +a(g130925 +g130927 +S'symbolizing' +p130929 +tp130930 +a(g130927 +g130929 +S'the' +p130931 +tp130932 +a(g130929 +g130931 +S'forbidden' +p130933 +tp130934 +a(g130931 +g130933 +S'fruit' +p130935 +tp130936 +a(g130933 +g130935 +S'and' +p130937 +tp130938 +a(g130935 +g130937 +S'implying' +p130939 +tp130940 +a(g130937 +g130939 +S'that' +p130941 +tp130942 +a(g130939 +g130941 +S'christ' +p130943 +tp130944 +a(g130941 +g130943 +S'will' +p130945 +tp130946 +a(g130943 +g130945 +S'redeem' +p130947 +tp130948 +a(g130945 +g130947 +S'humanity.' +p130949 +tp130950 +a(g130947 +g130949 +S'he' +p130951 +tp130952 +a(g130949 +g130951 +S'eats' +p130953 +tp130954 +a(g130951 +g130953 +S'a' +p130955 +tp130956 +a(g130953 +g130955 +S'grape' +p130957 +tp130958 +a(g130955 +g130957 +S'from' +p130959 +tp130960 +a(g130957 +g130959 +S'the' +p130961 +tp130962 +a(g130959 +g130961 +S'bunch' +p130963 +tp130964 +a(g130961 +g130963 +S'offered' +p130965 +tp130966 +a(g130963 +g130965 +S'by' +p130967 +tp130968 +a(g130965 +g130967 +S'his' +p130969 +tp130970 +a(g130967 +g130969 +S'mother.' +p130971 +tp130972 +a(g130969 +g130971 +S'these' +p130973 +tp130974 +a(g130971 +g130973 +S'grapes' +p130975 +tp130976 +a(g130973 +g130975 +S'and' +p130977 +tp130978 +a(g130975 +g130977 +S'the' +p130979 +tp130980 +a(g130977 +g130979 +S'glass' +p130981 +tp130982 +a(g130979 +g130981 +S'on' +p130983 +tp130984 +a(g130981 +g130983 +S'the' +p130985 +tp130986 +a(g130983 +g130985 +S'parapet' +p130987 +tp130988 +a(g130985 +g130987 +S'refer' +p130989 +tp130990 +a(g130987 +g130989 +S'to' +p130991 +tp130992 +a(g130989 +g130991 +S'the' +p130993 +tp130994 +a(g130991 +g130993 +S'eucharistic' +p130995 +tp130996 +a(g130993 +g130995 +S'wine' +p130997 +tp130998 +a(g130995 +g130997 +S'of' +p130999 +tp131000 +a(g130997 +g130999 +S'the' +p131001 +tp131002 +a(g130999 +g131001 +S'last' +p131003 +tp131004 +a(g131001 +g131003 +S'supper.' +p131005 +tp131006 +a(g131003 +g131005 +S'small' +p131007 +tp131008 +a(g131005 +g131007 +S'devotional' +p131009 +tp131010 +a(g131007 +g131009 +S'images' +p131011 +tp131012 +a(g131009 +g131011 +S'such' +p131013 +tp131014 +a(g131011 +g131013 +S'as' +p131015 +tp131016 +a(g131013 +g131015 +S'this' +p131017 +tp131018 +a(g131015 +g131017 +S'were' +p131019 +tp131020 +a(g131017 +g131019 +S'produced' +p131021 +tp131022 +a(g131019 +g131021 +S'in' +p131023 +tp131024 +a(g131021 +g131023 +S'large' +p131025 +tp131026 +a(g131023 +g131025 +S'numbers' +p131027 +tp131028 +a(g131025 +g131027 +S'by' +p131029 +tp131030 +a(g131027 +g131029 +S'craftsmen' +p131031 +tp131032 +a(g131029 +g131031 +S'and' +p131033 +tp131034 +a(g131031 +g131033 +S'lesser-known' +p131035 +tp131036 +a(g131033 +g131035 +S'artists' +p131037 +tp131038 +a(g131035 +g131037 +S'for' +p131039 +tp131040 +a(g131037 +g131039 +S'the' +p131041 +tp131042 +a(g131039 +g131041 +S'homes' +p131043 +tp131044 +a(g131041 +g131043 +S'of' +p131045 +tp131046 +a(g131043 +g131045 +S"florence's" +p131047 +tp131048 +a(g131045 +g131047 +S'middle' +p131049 +tp131050 +a(g131047 +g131049 +S'class.' +p131051 +tp131052 +a(g131049 +g131051 +S'these' +p131053 +tp131054 +a(g131051 +g131053 +S'artists' +p131055 +tp131056 +a(g131053 +g131055 +S'often' +p131057 +tp131058 +a(g131055 +g131057 +S'filled' +p131059 +tp131060 +a(g131057 +g131059 +S'in' +p131061 +tp131062 +a(g131059 +g131061 +S'at' +p131063 +tp131064 +a(g131061 +g131063 +S'leading' +p131065 +tp131066 +a(g131063 +g131065 +S'workshops' +p131067 +tp131068 +a(g131065 +g131067 +S'when' +p131069 +tp131070 +a(g131067 +g131069 +S'extra' +p131071 +tp131072 +a(g131069 +g131071 +S'assistants' +p131073 +tp131074 +a(g131071 +g131073 +S'were' +p131075 +tp131076 +a(g131073 +g131075 +S'needed' +p131077 +tp131078 +a(g131075 +g131077 +S'for' +p131079 +tp131080 +a(g131077 +g131079 +S'important' +p131081 +tp131082 +a(g131079 +g131081 +S'commissions.' +p131083 +tp131084 +a(g131081 +g131083 +S'we' +p131085 +tp131086 +a(g131083 +g131085 +S'know,' +p131087 +tp131088 +a(g131085 +g131087 +S'for' +p131089 +tp131090 +a(g131087 +g131089 +S'example,' +p131091 +tp131092 +a(g131089 +g131091 +S'that' +p131093 +tp131094 +a(g131091 +g131093 +S'jacopo' +p131095 +tp131096 +a(g131093 +g131095 +S'worked' +p131097 +tp131098 +a(g131095 +g131097 +S'with' +p131099 +tp131100 +a(g131097 +g131099 +S'filippo' +p131101 +tp131102 +a(g131099 +g131101 +S'lippi,' +p131103 +tp131104 +a(g131101 +g131103 +S'ghirlandaio,' +p131105 +tp131106 +a(g131103 +g131105 +S'and' +p131107 +tp131108 +a(g131105 +g131107 +S'botticelli.' +p131109 +tp131110 +a(g131107 +g131109 +S'this' +p131111 +tp131112 +a(g131109 +g131111 +S'painting' +p131113 +tp131114 +a(g131111 +g131113 +S'reflects' +p131115 +tp131116 +a(g131113 +g131115 +S'the' +p131117 +tp131118 +a(g131115 +g131117 +S'concerns' +p131119 +tp131120 +a(g131117 +g131119 +S'of' +p131121 +tp131122 +a(g131119 +g131121 +S'florentine' +p131123 +tp131124 +a(g131121 +g131123 +S'merchants' +p131125 +tp131126 +a(g131123 +g131125 +S'and' +p131127 +tp131128 +a(g131125 +g131127 +S'their' +p131129 +tp131130 +a(g131127 +g131129 +S'pride' +p131131 +tp131132 +a(g131129 +g131131 +S'in' +p131133 +tp131134 +a(g131131 +g131133 +S'the' +p131135 +tp131136 +a(g131133 +g131135 +S'city.' +p131137 +tp131138 +a(g131135 +g131137 +S'john' +p131139 +tp131140 +a(g131137 +g131139 +S'the' +p131141 +tp131142 +a(g131139 +g131141 +S'baptist' +p131143 +tp131144 +a(g131141 +g131143 +S'was' +p131145 +tp131146 +a(g131143 +g131145 +S'the' +p131147 +tp131148 +a(g131145 +g131147 +S'patron' +p131149 +tp131150 +a(g131147 +g131149 +S'saint' +p131151 +tp131152 +a(g131149 +g131151 +S'of' +p131153 +tp131154 +a(g131151 +g131153 +S'florence,' +p131155 +tp131156 +a(g131153 +g131155 +S'and' +p131157 +tp131158 +a(g131155 +g131157 +S'we' +p131159 +tp131160 +a(g131157 +g131159 +S'see' +p131161 +tp131162 +a(g131159 +g131161 +S'him' +p131163 +tp131164 +a(g131161 +g131163 +S'here' +p131165 +tp131166 +a(g131163 +g131165 +S'before' +p131167 +tp131168 +a(g131165 +g131167 +S'the' +p131169 +tp131170 +a(g131167 +g131169 +S'city' +p131171 +tp131172 +a(g131169 +g131171 +S'skyline.' +p131173 +tp131174 +a(g131171 +g131173 +S'clear' +p131175 +tp131176 +a(g131173 +g131175 +S'in' +p131177 +tp131178 +a(g131175 +g131177 +S'the' +p131179 +tp131180 +a(g131177 +g131179 +S'distant' +p131181 +tp131182 +a(g131179 +g131181 +S'landscape' +p131183 +tp131184 +a(g131181 +g131183 +S'are' +p131185 +tp131186 +a(g131183 +g131185 +S'the' +p131187 +tp131188 +a(g131185 +g131187 +S'palazzo' +p131189 +tp131190 +a(g131187 +g131189 +S'vecchio,' +p131191 +tp131192 +a(g131189 +g131191 +S'center' +p131193 +tp131194 +a(g131191 +g131193 +S'of' +p131195 +tp131196 +a(g131193 +g131195 +S'the' +p131197 +tp131198 +a(g131195 +g131197 +S'city' +p131199 +tp131200 +a(g131197 +g131199 +S'administration;' +p131201 +tp131202 +a(g131199 +g131201 +S"brunelleschi's" +p131203 +tp131204 +a(g131201 +g131203 +S'huge' +p131205 +tp131206 +a(g131203 +g131205 +S'cathedral' +p131207 +tp131208 +a(g131205 +g131207 +S'dome;' +p131209 +tp131210 +a(g131207 +g131209 +S'and' +p131211 +tp131212 +a(g131209 +g131211 +S'the' +p131213 +tp131214 +a(g131211 +g131213 +S'campanile' +p131215 +tp131216 +a(g131213 +g131215 +S'designed' +p131217 +tp131218 +a(g131215 +g131217 +S'by' +p131219 +tp131220 +a(g131217 +g131219 +S'in' +p131221 +tp131222 +a(g131219 +g131221 +S'the' +p131223 +tp131224 +a(g131221 +g131223 +S'decade' +p131225 +tp131226 +a(g131223 +g131225 +S'following' +p131227 +tp131228 +a(g131225 +g131227 +S'the' +p131229 +tp131230 +a(g131227 +g131229 +S'civil' +p131231 +tp131232 +a(g131229 +g131231 +S'war,' +p131233 +tp131234 +a(g131231 +g131233 +S'rowing' +p131235 +tp131236 +a(g131233 +g131235 +S'became' +p131237 +tp131238 +a(g131235 +g131237 +S'one' +p131239 +tp131240 +a(g131237 +g131239 +S'of' +p131241 +tp131242 +a(g131239 +g131241 +S'america’s' +p131243 +tp131244 +a(g131241 +g131243 +S'most' +p131245 +tp131246 +a(g131243 +g131245 +S'popular' +p131247 +tp131248 +a(g131245 +g131247 +S'spectator' +p131249 +tp131250 +a(g131247 +g131249 +S'sports.' +p131251 +tp131252 +a(g131249 +g131251 +S'when' +p131253 +tp131254 +a(g131251 +g131253 +S'its' +p131255 +tp131256 +a(g131253 +g131255 +S'champions,' +p131257 +tp131258 +a(g131255 +g131257 +S'the' +p131259 +tp131260 +a(g131257 +g131259 +S'biglin' +p131261 +tp131262 +a(g131259 +g131261 +S'brothers' +p131263 +tp131264 +a(g131261 +g131263 +S'of' +p131265 +tp131266 +a(g131263 +g131265 +S'new' +p131267 +tp131268 +a(g131265 +g131267 +S'york,' +p131269 +tp131270 +a(g131267 +g131269 +S'visited' +p131271 +tp131272 +a(g131269 +g131271 +S'philadelphia' +p131273 +tp131274 +a(g131271 +g131273 +S'in' +p131275 +tp131276 +a(g131273 +g131275 +S'the' +p131277 +tp131278 +a(g131275 +g131277 +S'early' +p131279 +tp131280 +a(g131277 +g131279 +S'1870s,' +p131281 +tp131282 +a(g131279 +g131281 +S'thomas' +p131283 +tp131284 +a(g131281 +g131283 +S'eakins' +p131285 +tp131286 +a(g131283 +g131285 +S'made' +p131287 +tp131288 +a(g131285 +g131287 +S'numerous' +p131289 +tp131290 +a(g131287 +g131289 +S'paintings' +p131291 +tp131292 +a(g131289 +g131291 +S'and' +p131293 +tp131294 +a(g131291 +g131293 +S'drawings' +p131295 +tp131296 +a(g131293 +g131295 +S'of' +p131297 +tp131298 +a(g131295 +g131297 +S'them' +p131299 +tp131300 +a(g131297 +g131299 +S'and' +p131301 +tp131302 +a(g131299 +g131301 +S'other' +p131303 +tp131304 +a(g131301 +g131303 +S'racers.' +p131305 +tp131306 +a(g131303 +g131305 +S'here,' +p131307 +tp131308 +a(g131305 +g131307 +S'the' +p131309 +tp131310 +a(g131307 +g131309 +S'bank' +p131311 +tp131312 +a(g131309 +g131311 +S'of' +p131313 +tp131314 +a(g131311 +g131313 +S'the' +p131315 +tp131316 +a(g131313 +g131315 +S'schuylkill' +p131317 +tp131318 +a(g131315 +g131317 +S'river' +p131319 +tp131320 +a(g131317 +g131319 +S'divides' +p131321 +tp131322 +a(g131319 +g131321 +S'the' +p131323 +tp131324 +a(g131321 +g131323 +S'composition' +p131325 +tp131326 +a(g131323 +g131325 +S'in' +p131327 +tp131328 +a(g131325 +g131327 +S'two.' +p131329 +tp131330 +a(g131327 +g131329 +S'the' +p131331 +tp131332 +a(g131329 +g131331 +S'boatmen' +p131333 +tp131334 +a(g131331 +g131333 +S'and' +p131335 +tp131336 +a(g131333 +g131335 +S'the' +p131337 +tp131338 +a(g131335 +g131337 +S'entering' +p131339 +tp131340 +a(g131337 +g131339 +S'prow' +p131341 +tp131342 +a(g131339 +g131341 +S'of' +p131343 +tp131344 +a(g131341 +g131343 +S'a' +p131345 +tp131346 +a(g131343 +g131345 +S'competing' +p131347 +tp131348 +a(g131345 +g131347 +S'craft' +p131349 +tp131350 +a(g131347 +g131349 +S'fill' +p131351 +tp131352 +a(g131349 +g131351 +S'the' +p131353 +tp131354 +a(g131351 +g131353 +S'lower' +p131355 +tp131356 +a(g131353 +g131355 +S'half' +p131357 +tp131358 +a(g131355 +g131357 +S'with' +p131359 +tp131360 +a(g131357 +g131359 +S'their' +p131361 +tp131362 +a(g131359 +g131361 +S'immediate,' +p131363 +tp131364 +a(g131361 +g131363 +S'large-scale' +p131365 +tp131366 +a(g131363 +g131365 +S'presence.' +p131367 +tp131368 +a(g131365 +g131367 +S'the' +p131369 +tp131370 +a(g131367 +g131369 +S'upper' +p131371 +tp131372 +a(g131369 +g131371 +S'and' +p131373 +tp131374 +a(g131371 +g131373 +S'distant' +p131375 +tp131376 +a(g131373 +g131375 +S'half' +p131377 +tp131378 +a(g131375 +g131377 +S'contains' +p131379 +tp131380 +a(g131377 +g131379 +S'a' +p131381 +tp131382 +a(g131379 +g131381 +S'four-man' +p131383 +tp131384 +a(g131381 +g131383 +S'rowing' +p131385 +tp131386 +a(g131383 +g131385 +S'crew,' +p131387 +tp131388 +a(g131385 +g131387 +S'crowds' +p131389 +tp131390 +a(g131387 +g131389 +S'on' +p131391 +tp131392 +a(g131389 +g131391 +S'the' +p131393 +tp131394 +a(g131391 +g131393 +S'shore,' +p131395 +tp131396 +a(g131393 +g131395 +S'and' +p131397 +tp131398 +a(g131395 +g131397 +S'spectators' +p131399 +tp131400 +a(g131397 +g131399 +S'following' +p131401 +tp131402 +a(g131399 +g131401 +S'in' +p131403 +tp131404 +a(g131401 +g131403 +S'flagdecked' +p131405 +tp131406 +a(g131403 +g131405 +S'steamboats.' +p131407 +tp131408 +a(g131405 +g131407 +S'himself' +p131409 +tp131410 +a(g131407 +g131409 +S'an' +p131411 +tp131412 +a(g131409 +g131411 +S'amateur' +p131413 +tp131414 +a(g131411 +g131413 +S'oarsman' +p131415 +tp131416 +a(g131413 +g131415 +S'and' +p131417 +tp131418 +a(g131415 +g131417 +S'a' +p131419 +tp131420 +a(g131417 +g131419 +S'friend' +p131421 +tp131422 +a(g131419 +g131421 +S'of' +p131423 +tp131424 +a(g131421 +g131423 +S'the' +p131425 +tp131426 +a(g131423 +g131425 +S'biglins,' +p131427 +tp131428 +a(g131425 +g131427 +S'eakins' +p131429 +tp131430 +a(g131427 +g131429 +S'portrays' +p131431 +tp131432 +a(g131429 +g131431 +S'john' +p131433 +tp131434 +a(g131431 +g131433 +S'with' +p131435 +tp131436 +a(g131433 +g131435 +S'his' +p131437 +tp131438 +a(g131435 +g131437 +S'blade' +p131439 +tp131440 +a(g131437 +g131439 +S'still' +p131441 +tp131442 +a(g131439 +g131441 +S'feathered,' +p131443 +tp131444 +a(g131441 +g131443 +S'almost' +p131445 +tp131446 +a(g131443 +g131445 +S'at' +p131447 +tp131448 +a(g131445 +g131447 +S'the' +p131449 +tp131450 +a(g131447 +g131449 +S'end' +p131451 +tp131452 +a(g131449 +g131451 +S'of' +p131453 +tp131454 +a(g131451 +g131453 +S'his' +p131455 +tp131456 +a(g131453 +g131455 +S'return' +p131457 +tp131458 +a(g131455 +g131457 +S'motion.' +p131459 +tp131460 +a(g131457 +g131459 +S'barney,' +p131461 +tp131462 +a(g131459 +g131461 +S'a' +p131463 +tp131464 +a(g131461 +g131463 +S'split-second' +p131465 +tp131466 +a(g131463 +g131465 +S'ahead' +p131467 +tp131468 +a(g131465 +g131467 +S'in' +p131469 +tp131470 +a(g131467 +g131469 +S'his' +p131471 +tp131472 +a(g131469 +g131471 +S'stroke,' +p131473 +tp131474 +a(g131471 +g131473 +S'watches' +p131475 +tp131476 +a(g131473 +g131475 +S'for' +p131477 +tp131478 +a(g131475 +g131477 +S'his' +p131479 +tp131480 +a(g131477 +g131479 +S'younger' +p131481 +tp131482 +a(g131479 +g131481 +S'brother’s' +p131483 +tp131484 +a(g131481 +g131483 +S'oar' +p131485 +tp131486 +a(g131483 +g131485 +S'to' +p131487 +tp131488 +a(g131485 +g131487 +S'bite' +p131489 +tp131490 +a(g131487 +g131489 +S'the' +p131491 +tp131492 +a(g131489 +g131491 +S'water.' +p131493 +tp131494 +a(g131491 +g131493 +S'both' +p131495 +tp131496 +a(g131493 +g131495 +S'ends' +p131497 +tp131498 +a(g131495 +g131497 +S'of' +p131499 +tp131500 +a(g131497 +g131499 +S'the' +p131501 +tp131502 +a(g131499 +g131501 +S'biglins’' +p131503 +tp131504 +a(g131501 +g131503 +S'pair-oared' +p131505 +tp131506 +a(g131503 +g131505 +S'boat' +p131507 +tp131508 +a(g131505 +g131507 +S'project' +p131509 +tp131510 +a(g131507 +g131509 +S'beyond' +p131511 +tp131512 +a(g131509 +g131511 +S'the' +p131513 +tp131514 +a(g131511 +g131513 +S'picture’s' +p131515 +tp131516 +a(g131513 +g131515 +S'edges,' +p131517 +tp131518 +a(g131515 +g131517 +S'generating' +p131519 +tp131520 +a(g131517 +g131519 +S'a' +p131521 +tp131522 +a(g131519 +g131521 +S'sense' +p131523 +tp131524 +a(g131521 +g131523 +S'of' +p131525 +tp131526 +a(g131523 +g131525 +S'urgency,' +p131527 +tp131528 +a(g131525 +g131527 +S'as' +p131529 +tp131530 +a(g131527 +g131529 +S'does' +p131531 +tp131532 +a(g131529 +g131531 +S'the' +p131533 +tp131534 +a(g131531 +g131533 +S'other' +p131535 +tp131536 +a(g131533 +g131535 +S'prow' +p131537 +tp131538 +a(g131535 +g131537 +S'jutting' +p131539 +tp131540 +a(g131537 +g131539 +S'suddenly' +p131541 +tp131542 +a(g131539 +g131541 +S'into' +p131543 +tp131544 +a(g131541 +g131543 +S'view.' +p131545 +tp131546 +a(g131543 +g131545 +S'the' +p131547 +tp131548 +a(g131545 +g131547 +S'precision' +p131549 +tp131550 +a(g131547 +g131549 +S'of' +p131551 +tp131552 +a(g131549 +g131551 +S'eakins’' +p131553 +tp131554 +a(g131551 +g131553 +S'style' +p131555 +tp131556 +a(g131553 +g131555 +S'reflects' +p131557 +tp131558 +a(g131555 +g131557 +S'his' +p131559 +tp131560 +a(g131557 +g131559 +S'upbringing' +p131561 +tp131562 +a(g131559 +g131561 +S'as' +p131563 +tp131564 +a(g131561 +g131563 +S'the' +p131565 +tp131566 +a(g131563 +g131565 +S'son' +p131567 +tp131568 +a(g131565 +g131567 +S'of' +p131569 +tp131570 +a(g131567 +g131569 +S'a' +p131571 +tp131572 +a(g131569 +g131571 +S'teacher' +p131573 +tp131574 +a(g131571 +g131573 +S'of' +p131575 +tp131576 +a(g131573 +g131575 +S'penmanship.' +p131577 +tp131578 +a(g131575 +g131577 +S'he' +p131579 +tp131580 +a(g131577 +g131579 +S'studied' +p131581 +tp131582 +a(g131579 +g131581 +S'under' +p131583 +tp131584 +a(g131581 +g131583 +S'academic' +p131585 +tp131586 +a(g131583 +g131585 +S'artists' +p131587 +tp131588 +a(g131585 +g131587 +S'in' +p131589 +tp131590 +a(g131587 +g131589 +S'paris' +p131591 +tp131592 +a(g131589 +g131591 +S'and' +p131593 +tp131594 +a(g131591 +g131593 +S'traveled' +p131595 +tp131596 +a(g131593 +g131595 +S'in' +p131597 +tp131598 +a(g131595 +g131597 +S'europe' +p131599 +tp131600 +a(g131597 +g131599 +S'from' +p131601 +tp131602 +a(g131599 +g131601 +S'1866' +p131603 +tp131604 +a(g131601 +g131603 +S'to' +p131605 +tp131606 +a(g131603 +g131605 +S'1870.' +p131607 +tp131608 +a(g131605 +g131607 +S'to' +p131609 +tp131610 +a(g131607 +g131609 +S'further' +p131611 +tp131612 +a(g131609 +g131611 +S'his' +p131613 +tp131614 +a(g131611 +g131613 +S'understanding' +p131615 +tp131616 +a(g131613 +g131615 +S'of' +p131617 +tp131618 +a(g131615 +g131617 +S'anatomy,' +p131619 +tp131620 +a(g131617 +g131619 +S'eakins' +p131621 +tp131622 +a(g131619 +g131621 +S'participated' +p131623 +tp131624 +a(g131621 +g131623 +S'in' +p131625 +tp131626 +a(g131623 +g131625 +S'dissections' +p131627 +tp131628 +a(g131625 +g131627 +S'at' +p131629 +tp131630 +a(g131627 +g131629 +S"philadelphia's" +p131631 +tp131632 +a(g131629 +g131631 +S'jefferson' +p131633 +tp131634 +a(g131631 +g131633 +S'medical' +p131635 +tp131636 +a(g131633 +g131635 +S'college' +p131637 +tp131638 +a(g131635 +g131637 +S'in' +p131639 +tp131640 +a(g131637 +g131639 +S'1872-1874.' +p131641 +tp131642 +a(g131639 +g131641 +S'robert' +p131643 +tp131644 +a(g131641 +g131643 +S'henri' +p131645 +tp131646 +a(g131643 +g131645 +S'urged' +p131647 +tp131648 +a(g131645 +g131647 +S'his' +p131649 +tp131650 +a(g131647 +g131649 +S'students' +p131651 +tp131652 +a(g131649 +g131651 +S'in' +p131653 +tp131654 +a(g131651 +g131653 +S'philadelphia' +p131655 +tp131656 +a(g131653 +g131655 +S'and' +p131657 +tp131658 +a(g131655 +g131657 +S'new' +p131659 +tp131660 +a(g131657 +g131659 +S'york' +p131661 +tp131662 +a(g131659 +g131661 +S'to' +p131663 +tp131664 +a(g131661 +g131663 +S'reject' +p131665 +tp131666 +a(g131663 +g131665 +S'idealism' +p131667 +tp131668 +a(g131665 +g131667 +S'and' +p131669 +tp131670 +a(g131667 +g131669 +S'to' +p131671 +tp131672 +a(g131669 +g131671 +S'focus' +p131673 +tp131674 +a(g131671 +g131673 +S'instead' +p131675 +tp131676 +a(g131673 +g131675 +S'on' +p131677 +tp131678 +a(g131675 +g131677 +S'reality,' +p131679 +tp131680 +a(g131677 +g131679 +S'whether' +p131681 +tp131682 +a(g131679 +g131681 +S'it' +p131683 +tp131684 +a(g131681 +g131683 +S'be' +p131685 +tp131686 +a(g131683 +g131685 +S'banal' +p131687 +tp131688 +a(g131685 +g131687 +S'or' +p131689 +tp131690 +a(g131687 +g131689 +S'harsh.' +p131691 +tp131692 +a(g131689 +g131691 +S'“draw' +p131693 +tp131694 +a(g131691 +g131693 +S'your' +p131695 +tp131696 +a(g131693 +g131695 +S'material' +p131697 +tp131698 +a(g131695 +g131697 +S'from' +p131699 +tp131700 +a(g131697 +g131699 +S'the' +p131701 +tp131702 +a(g131699 +g131701 +S'life' +p131703 +tp131704 +a(g131701 +g131703 +S'around' +p131705 +tp131706 +a(g131703 +g131705 +S'you,' +p131707 +tp131708 +a(g131705 +g131707 +S'from' +p131709 +tp131710 +a(g131707 +g131709 +S'all' +p131711 +tp131712 +a(g131709 +g131711 +S'of' +p131713 +tp131714 +a(g131711 +g131713 +S'it.' +p131715 +tp131716 +a(g131713 +g131715 +S'there' +p131717 +tp131718 +a(g131715 +g131717 +S'is' +p131719 +tp131720 +a(g131717 +g131719 +S'beauty' +p131721 +tp131722 +a(g131719 +g131721 +S'in' +p131723 +tp131724 +a(g131721 +g131723 +S'everything' +p131725 +tp131726 +a(g131723 +g131725 +S'if' +p131727 +tp131728 +a(g131725 +g131727 +S'it' +p131729 +tp131730 +a(g131727 +g131729 +S'looks' +p131731 +tp131732 +a(g131729 +g131731 +S'beautiful' +p131733 +tp131734 +a(g131731 +g131733 +S'to' +p131735 +tp131736 +a(g131733 +g131735 +S'your' +p131737 +tp131738 +a(g131735 +g131737 +S'eyes.' +p131739 +tp131740 +a(g131737 +g131739 +S'you' +p131741 +tp131742 +a(g131739 +g131741 +S'can' +p131743 +tp131744 +a(g131741 +g131743 +S'find' +p131745 +tp131746 +a(g131743 +g131745 +S'it' +p131747 +tp131748 +a(g131745 +g131747 +S'anywhere,' +p131749 +tp131750 +a(g131747 +g131749 +S'everywhere.”' +p131751 +tp131752 +a(g131749 +g131751 +S"henri's" +p131753 +tp131754 +a(g131751 +g131753 +S'john' +p131755 +tp131756 +a(g131753 +g131755 +S'adams' +p131757 +tp131758 +a(g131755 +g131757 +S'was' +p131759 +tp131760 +a(g131757 +g131759 +S'vice' +p131761 +tp131762 +a(g131759 +g131761 +S'president' +p131763 +tp131764 +a(g131761 +g131763 +S'during' +p131765 +tp131766 +a(g131763 +g131765 +S'both' +p131767 +tp131768 +a(g131765 +g131767 +S'of' +p131769 +tp131770 +a(g131767 +g131769 +S'george' +p131771 +tp131772 +a(g131769 +g131771 +S"washington's" +p131773 +tp131774 +a(g131771 +g131773 +S'terms' +p131775 +tp131776 +a(g131773 +g131775 +S'and' +p131777 +tp131778 +a(g131775 +g131777 +S'served' +p131779 +tp131780 +a(g131777 +g131779 +S'as' +p131781 +tp131782 +a(g131779 +g131781 +S'chief' +p131783 +tp131784 +a(g131781 +g131783 +S'executive' +p131785 +tp131786 +a(g131783 +g131785 +S'himself' +p131787 +tp131788 +a(g131785 +g131787 +S'from' +p131789 +tp131790 +a(g131787 +g131789 +S'1797' +p131791 +tp131792 +a(g131789 +g131791 +S'to' +p131793 +tp131794 +a(g131791 +g131793 +S'1801.' +p131795 +tp131796 +a(g131793 +g131795 +S'this' +p131797 +tp131798 +a(g131795 +g131797 +S'likeness' +p131799 +tp131800 +a(g131797 +g131799 +S'was' +p131801 +tp131802 +a(g131799 +g131801 +S'begun' +p131803 +tp131804 +a(g131801 +g131803 +S'in' +p131805 +tp131806 +a(g131803 +g131805 +S'philadelphia' +p131807 +tp131808 +a(g131805 +g131807 +S'during' +p131809 +tp131810 +a(g131807 +g131809 +S'his' +p131811 +tp131812 +a(g131809 +g131811 +S'presidency,' +p131813 +tp131814 +a(g131811 +g131813 +S'and' +p131815 +tp131816 +a(g131813 +g131815 +S'shows' +p131817 +tp131818 +a(g131815 +g131817 +S'adams' +p131819 +tp131820 +a(g131817 +g131819 +S'at' +p131821 +tp131822 +a(g131819 +g131821 +S'sixty-five' +p131823 +tp131824 +a(g131821 +g131823 +S'years' +p131825 +tp131826 +a(g131823 +g131825 +S'of' +p131827 +tp131828 +a(g131825 +g131827 +S'age;' +p131829 +tp131830 +a(g131827 +g131829 +S'however,' +p131831 +tp131832 +a(g131829 +g131831 +S'like' +p131833 +tp131834 +a(g131831 +g131833 +S'its' +p131835 +tp131836 +a(g131833 +g131835 +S'companion' +p131837 +tp131838 +a(g131835 +g131837 +S'portrait,' +p131839 +tp131840 +a(g131837 +g131839 +S'although' +p131841 +tp131842 +a(g131839 +g131841 +S'the' +p131843 +tp131844 +a(g131841 +g131843 +S'second' +p131845 +tp131846 +a(g131843 +g131845 +S'president' +p131847 +tp131848 +a(g131845 +g131847 +S'was' +p131849 +tp131850 +a(g131847 +g131849 +S'a' +p131851 +tp131852 +a(g131849 +g131851 +S'patient' +p131853 +tp131854 +a(g131851 +g131853 +S'sitter,' +p131855 +tp131856 +a(g131853 +g131855 +S'the' +p131857 +tp131858 +a(g131855 +g131857 +S'impish' +p131859 +tp131860 +a(g131857 +g131859 +S'painter' +p131861 +tp131862 +a(g131859 +g131861 +S'later' +p131863 +tp131864 +a(g131861 +g131863 +S'delighted' +p131865 +tp131866 +a(g131863 +g131865 +S'in' +p131867 +tp131868 +a(g131865 +g131867 +S'telling' +p131869 +tp131870 +a(g131867 +g131869 +S'a' +p131871 +tp131872 +a(g131869 +g131871 +S'friend,' +p131873 +tp131874 +a(g131871 +g131873 +S'"isn\'t' +p131875 +tp131876 +a(g131873 +g131875 +S'it' +p131877 +tp131878 +a(g131875 +g131877 +S'like?' +p131879 +tp131880 +a(g131877 +g131879 +S'do' +p131881 +tp131882 +a(g131879 +g131881 +S'you' +p131883 +tp131884 +a(g131881 +g131883 +S'know' +p131885 +tp131886 +a(g131883 +g131885 +S'what' +p131887 +tp131888 +a(g131885 +g131887 +S'he' +p131889 +tp131890 +a(g131887 +g131889 +S'is' +p131891 +tp131892 +a(g131889 +g131891 +S'about' +p131893 +tp131894 +a(g131891 +g131893 +S'to' +p131895 +tp131896 +a(g131893 +g131895 +S'do?' +p131897 +tp131898 +a(g131895 +g131897 +S'he' +p131899 +tp131900 +a(g131897 +g131899 +S'is' +p131901 +tp131902 +a(g131899 +g131901 +S'about' +p131903 +tp131904 +a(g131901 +g131903 +S'to' +p131905 +tp131906 +a(g131903 +g131905 +S'sneeze!"' +p131907 +tp131908 +a(g131905 +g131907 +S'(both' +p131909 +tp131910 +a(g131907 +g131909 +S'the' +p131911 +tp131912 +a(g131909 +g131911 +S'artist' +p131913 +tp131914 +a(g131911 +g131913 +S'and' +p131915 +tp131916 +a(g131913 +g131915 +S'the' +p131917 +tp131918 +a(g131915 +g131917 +S'sitter' +p131919 +tp131920 +a(g131917 +g131919 +S'habitually' +p131921 +tp131922 +a(g131919 +g131921 +S'used' +p131923 +tp131924 +a(g131921 +g131923 +S'snuff.)' +p131925 +tp131926 +a(g131923 +g131925 +S'in' +p131927 +tp131928 +a(g131925 +g131927 +S'this' +p131929 +tp131930 +a(g131927 +g131929 +S'sketch' +p131931 +tp131932 +a(g131929 +g131931 +S'from' +p131933 +tp131934 +a(g131931 +g131933 +S'life,' +p131935 +tp131936 +a(g131933 +g131935 +S'soft' +p131937 +tp131938 +a(g131935 +g131937 +S'brushstrokes' +p131939 +tp131940 +a(g131937 +g131939 +S'merely' +p131941 +tp131942 +a(g131939 +g131941 +S'suggest' +p131943 +tp131944 +a(g131941 +g131943 +S'rustling' +p131945 +tp131946 +a(g131943 +g131945 +S'movement' +p131947 +tp131948 +a(g131945 +g131947 +S'and' +p131949 +tp131950 +a(g131947 +g131949 +S'indistinct' +p131951 +tp131952 +a(g131949 +g131951 +S'contours' +p131953 +tp131954 +a(g131951 +g131953 +S'in' +p131955 +tp131956 +a(g131953 +g131955 +S'the' +p131957 +tp131958 +a(g131955 +g131957 +S'hair' +p131959 +tp131960 +a(g131957 +g131959 +S'and' +p131961 +tp131962 +a(g131959 +g131961 +S'lace.' +p131963 +tp131964 +a(g131961 +g131963 +S'the' +p131965 +tp131966 +a(g131963 +g131965 +S'portrait' +p131967 +tp131968 +a(g131965 +g131967 +S'subtly' +p131969 +tp131970 +a(g131967 +g131969 +S'expresses' +p131971 +tp131972 +a(g131969 +g131971 +S'the' +p131973 +tp131974 +a(g131971 +g131973 +S'inquisitive,' +p131975 +tp131976 +a(g131973 +g131975 +S'analytic' +p131977 +tp131978 +a(g131975 +g131977 +S'aspects' +p131979 +tp131980 +a(g131977 +g131979 +S'of' +p131981 +tp131982 +a(g131979 +g131981 +S"adams'" +p131983 +tp131984 +a(g131981 +g131983 +S'character;' +p131985 +tp131986 +a(g131983 +g131985 +S'seated' +p131987 +tp131988 +a(g131985 +g131987 +S'low' +p131989 +tp131990 +a(g131987 +g131989 +S'in' +p131991 +tp131992 +a(g131989 +g131991 +S'the' +p131993 +tp131994 +a(g131991 +g131993 +S'composition,' +p131995 +tp131996 +a(g131993 +g131995 +S'he' +p131997 +tp131998 +a(g131995 +g131997 +S'confronts' +p131999 +tp132000 +a(g131997 +g131999 +S'the' +p132001 +tp132002 +a(g131999 +g132001 +S'viewer' +p132003 +tp132004 +a(g132001 +g132003 +S'directly.' +p132005 +tp132006 +a(g132003 +g132005 +S'the' +p132007 +tp132008 +a(g132005 +g132007 +S'pose' +p132009 +tp132010 +a(g132007 +g132009 +S'of' +p132011 +tp132012 +a(g132009 +g132011 +S'this' +p132013 +tp132014 +a(g132011 +g132013 +S'first' +p132015 +tp132016 +a(g132013 +g132015 +S'study' +p132017 +tp132018 +a(g132015 +g132017 +S'of' +p132019 +tp132020 +a(g132017 +g132019 +S'adams' +p132021 +tp132022 +a(g132019 +g132021 +S'inspired' +p132023 +tp132024 +a(g132021 +g132023 +S"stuart's" +p132025 +tp132026 +a(g132023 +g132025 +S'replica' +p132027 +tp132028 +a(g132025 +g132027 +S'in' +p132029 +tp132030 +a(g132027 +g132029 +S'the' +p132031 +tp132032 +a(g132029 +g132031 +S'mrs.' +p132033 +tp132034 +a(g132031 +g132033 +S'john' +p132035 +tp132036 +a(g132033 +g132035 +S'adams' +p132037 +tp132038 +a(g132035 +g132037 +S'felt' +p132039 +tp132040 +a(g132037 +g132039 +S'that' +p132041 +tp132042 +a(g132039 +g132041 +S'"if' +p132043 +tp132044 +a(g132041 +g132043 +S'we' +p132045 +tp132046 +a(g132043 +g132045 +S'mean' +p132047 +tp132048 +a(g132045 +g132047 +S'to' +p132049 +tp132050 +a(g132047 +g132049 +S'have' +p132051 +tp132052 +a(g132049 +g132051 +S'heroes,' +p132053 +tp132054 +a(g132051 +g132053 +S'statesmen' +p132055 +tp132056 +a(g132053 +g132055 +S'and' +p132057 +tp132058 +a(g132055 +g132057 +S'philosophers,' +p132059 +tp132060 +a(g132057 +g132059 +S'we' +p132061 +tp132062 +a(g132059 +g132061 +S'should' +p132063 +tp132064 +a(g132061 +g132063 +S'have' +p132065 +tp132066 +a(g132063 +g132065 +S'learned' +p132067 +tp132068 +a(g132065 +g132067 +S'women."' +p132069 +tp132070 +a(g132067 +g132069 +S"stuart's" +p132071 +tp132072 +a(g132069 +g132071 +S'portrait,' +p132073 +tp132074 +a(g132071 +g132073 +S'begun' +p132075 +tp132076 +a(g132073 +g132075 +S'when' +p132077 +tp132078 +a(g132075 +g132077 +S'the' +p132079 +tp132080 +a(g132077 +g132079 +S'first' +p132081 +tp132082 +a(g132079 +g132081 +S'lady' +p132083 +tp132084 +a(g132081 +g132083 +S'was' +p132085 +tp132086 +a(g132083 +g132085 +S'fifty-six,' +p132087 +tp132088 +a(g132085 +g132087 +S'captures' +p132089 +tp132090 +a(g132087 +g132089 +S'the' +p132091 +tp132092 +a(g132089 +g132091 +S'patrician' +p132093 +tp132094 +a(g132091 +g132093 +S'beauty' +p132095 +tp132096 +a(g132093 +g132095 +S'of' +p132097 +tp132098 +a(g132095 +g132097 +S'her' +p132099 +tp132100 +a(g132097 +g132099 +S'straight' +p132101 +tp132102 +a(g132099 +g132101 +S'nose' +p132103 +tp132104 +a(g132101 +g132103 +S'and' +p132105 +tp132106 +a(g132103 +g132105 +S'arched' +p132107 +tp132108 +a(g132105 +g132107 +S'brows.' +p132109 +tp132110 +a(g132107 +g132109 +S'the' +p132111 +tp132112 +a(g132109 +g132111 +S'forthright' +p132113 +tp132114 +a(g132111 +g132113 +S'painting' +p132115 +tp132116 +a(g132113 +g132115 +S'also' +p132117 +tp132118 +a(g132115 +g132117 +S'leaves' +p132119 +tp132120 +a(g132117 +g132119 +S'little' +p132121 +tp132122 +a(g132119 +g132121 +S'doubt' +p132123 +tp132124 +a(g132121 +g132123 +S'about' +p132125 +tp132126 +a(g132123 +g132125 +S'the' +p132127 +tp132128 +a(g132125 +g132127 +S'force' +p132129 +tp132130 +a(g132127 +g132129 +S'of' +p132131 +tp132132 +a(g132129 +g132131 +S'character,' +p132133 +tp132134 +a(g132131 +g132133 +S'intellect,' +p132135 +tp132136 +a(g132133 +g132135 +S'and' +p132137 +tp132138 +a(g132135 +g132137 +S'principles' +p132139 +tp132140 +a(g132137 +g132139 +S'of' +p132141 +tp132142 +a(g132139 +g132141 +S'this' +p132143 +tp132144 +a(g132141 +g132143 +S'daughter' +p132145 +tp132146 +a(g132143 +g132145 +S'of' +p132147 +tp132148 +a(g132145 +g132147 +S'a' +p132149 +tp132150 +a(g132147 +g132149 +S'massachusetts' +p132151 +tp132152 +a(g132149 +g132151 +S'minister.' +p132153 +tp132154 +a(g132151 +g132153 +S'this' +p132155 +tp132156 +a(g132153 +g132155 +S'likeness' +p132157 +tp132158 +a(g132155 +g132157 +S'was' +p132159 +tp132160 +a(g132157 +g132159 +S"stuart's" +p132161 +tp132162 +a(g132159 +g132161 +S'only' +p132163 +tp132164 +a(g132161 +g132163 +S'completed' +p132165 +tp132166 +a(g132163 +g132165 +S'picture' +p132167 +tp132168 +a(g132165 +g132167 +S'of' +p132169 +tp132170 +a(g132167 +g132169 +S'abigail' +p132171 +tp132172 +a(g132169 +g132171 +S'smith' +p132173 +tp132174 +a(g132171 +g132173 +S'adams.' +p132175 +tp132176 +a(g132173 +g132175 +S'it' +p132177 +tp132178 +a(g132175 +g132177 +S'and' +p132179 +tp132180 +a(g132177 +g132179 +S'its' +p132181 +tp132182 +a(g132179 +g132181 +S'companion' +p132183 +tp132184 +a(g132181 +g132183 +S'piece' +p132185 +tp132186 +a(g132183 +g132185 +S'of' +p132187 +tp132188 +a(g132185 +g132187 +S'her' +p132189 +tp132190 +a(g132187 +g132189 +S'husband,' +p132191 +tp132192 +a(g132189 +g132191 +S'this' +p132193 +tp132194 +a(g132191 +g132193 +S'picture' +p132195 +tp132196 +a(g132193 +g132195 +S'was' +p132197 +tp132198 +a(g132195 +g132197 +S'inspired' +p132199 +tp132200 +a(g132197 +g132199 +S'by' +p132201 +tp132202 +a(g132199 +g132201 +S'goya’s' +p132203 +tp132204 +a(g132201 +g132203 +S'many' +p132205 +tp132206 +a(g132203 +g132205 +S'paintings,' +p132207 +tp132208 +a(g132205 +g132207 +S'drawings,' +p132209 +tp132210 +a(g132207 +g132209 +S'and' +p132211 +tp132212 +a(g132209 +g132211 +S'prints' +p132213 +tp132214 +a(g132211 +g132213 +S'of' +p132215 +tp132216 +a(g132213 +g132215 +S'bullrings.' +p132217 +tp132218 +a(g132215 +g132217 +S'goya' +p132219 +tp132220 +a(g132217 +g132219 +S'often' +p132221 +tp132222 +a(g132219 +g132221 +S'troweled' +p132223 +tp132224 +a(g132221 +g132223 +S'on' +p132225 +tp132226 +a(g132223 +g132225 +S'thick' +p132227 +tp132228 +a(g132225 +g132227 +S'paint' +p132229 +tp132230 +a(g132227 +g132229 +S'textures' +p132231 +tp132232 +a(g132229 +g132231 +S'with' +p132233 +tp132234 +a(g132231 +g132233 +S'the' +p132235 +tp132236 +a(g132233 +g132235 +S'flexible' +p132237 +tp132238 +a(g132235 +g132237 +S'blade' +p132239 +tp132240 +a(g132237 +g132239 +S'of' +p132241 +tp132242 +a(g132239 +g132241 +S'his' +p132243 +tp132244 +a(g132241 +g132243 +S'palette' +p132245 +tp132246 +a(g132243 +g132245 +S'knife,' +p132247 +tp132248 +a(g132245 +g132247 +S'just' +p132249 +tp132250 +a(g132247 +g132249 +S'as' +p132251 +tp132252 +a(g132249 +g132251 +S'this' +p132253 +tp132254 +a(g132251 +g132253 +S'later' +p132255 +tp132256 +a(g132253 +g132255 +S'follower' +p132257 +tp132258 +a(g132255 +g132257 +S'did.' +p132259 +tp132260 +a(g132257 +g132259 +S'goya’s' +p132261 +tp132262 +a(g132259 +g132261 +S'own' +p132263 +tp132264 +a(g132261 +g132263 +S'works' +p132265 +tp132266 +a(g132263 +g132265 +S'accurately' +p132267 +tp132268 +a(g132265 +g132267 +S'convey' +p132269 +tp132270 +a(g132267 +g132269 +S'the' +p132271 +tp132272 +a(g132269 +g132271 +S'danger' +p132273 +tp132274 +a(g132271 +g132273 +S'to' +p132275 +tp132276 +a(g132273 +g132275 +S'professional' +p132277 +tp132278 +a(g132275 +g132277 +S'athletes.' +p132279 +tp132280 +a(g132277 +g132279 +S'lucas’' +p132281 +tp132282 +a(g132279 +g132281 +S'humorous' +p132283 +tp132284 +a(g132281 +g132283 +S'design,' +p132285 +tp132286 +a(g132283 +g132285 +S'however,' +p132287 +tp132288 +a(g132285 +g132287 +S'places' +p132289 +tp132290 +a(g132287 +g132289 +S'two' +p132291 +tp132292 +a(g132289 +g132291 +S'folk' +p132293 +tp132294 +a(g132291 +g132293 +S'contests' +p132295 +tp132296 +a(g132293 +g132295 +S'inside' +p132297 +tp132298 +a(g132295 +g132297 +S'a' +p132299 +tp132300 +a(g132297 +g132299 +S'formal' +p132301 +tp132302 +a(g132299 +g132301 +S'arena.' +p132303 +tp132304 +a(g132301 +g132303 +S'during' +p132305 +tp132306 +a(g132303 +g132305 +S'giorgione' +p132307 +tp132308 +a(g132305 +g132307 +S'has' +p132309 +tp132310 +a(g132307 +g132309 +S'always' +p132311 +tp132312 +a(g132309 +g132311 +S'been' +p132313 +tp132314 +a(g132311 +g132313 +S'considered' +p132315 +tp132316 +a(g132313 +g132315 +S'one' +p132317 +tp132318 +a(g132315 +g132317 +S'of' +p132319 +tp132320 +a(g132317 +g132319 +S'the' +p132321 +tp132322 +a(g132319 +g132321 +S'greatest' +p132323 +tp132324 +a(g132321 +g132323 +S'artists' +p132325 +tp132326 +a(g132323 +g132325 +S'of' +p132327 +tp132328 +a(g132325 +g132327 +S'the' +p132329 +tp132330 +a(g132327 +g132329 +S'renaissance,' +p132331 +tp132332 +a(g132329 +g132331 +S'and' +p132333 +tp132334 +a(g132331 +g132333 +S'one' +p132335 +tp132336 +a(g132333 +g132335 +S'whose' +p132337 +tp132338 +a(g132335 +g132337 +S'influence' +p132339 +tp132340 +a(g132337 +g132339 +S'on' +p132341 +tp132342 +a(g132339 +g132341 +S'following' +p132343 +tp132344 +a(g132341 +g132343 +S'generations' +p132345 +tp132346 +a(g132343 +g132345 +S'of' +p132347 +tp132348 +a(g132345 +g132347 +S'painters' +p132349 +tp132350 +a(g132347 +g132349 +S'was' +p132351 +tp132352 +a(g132349 +g132351 +S'considerable.' +p132353 +tp132354 +a(g132351 +g132353 +S'for' +p132355 +tp132356 +a(g132353 +g132355 +S'all' +p132357 +tp132358 +a(g132355 +g132357 +S'his' +p132359 +tp132360 +a(g132357 +g132359 +S'fame,' +p132361 +tp132362 +a(g132359 +g132361 +S'very' +p132363 +tp132364 +a(g132361 +g132363 +S'little' +p132365 +tp132366 +a(g132363 +g132365 +S'is' +p132367 +tp132368 +a(g132365 +g132367 +S'known' +p132369 +tp132370 +a(g132367 +g132369 +S'about' +p132371 +tp132372 +a(g132369 +g132371 +S'his' +p132373 +tp132374 +a(g132371 +g132373 +S'short' +p132375 +tp132376 +a(g132373 +g132375 +S'life' +p132377 +tp132378 +a(g132375 +g132377 +S'(he' +p132379 +tp132380 +a(g132377 +g132379 +S'may' +p132381 +tp132382 +a(g132379 +g132381 +S'have' +p132383 +tp132384 +a(g132381 +g132383 +S'died' +p132385 +tp132386 +a(g132383 +g132385 +S'during' +p132387 +tp132388 +a(g132385 +g132387 +S'a' +p132389 +tp132390 +a(g132387 +g132389 +S'plague' +p132391 +tp132392 +a(g132389 +g132391 +S'epidemic' +p132393 +tp132394 +a(g132391 +g132393 +S'in' +p132395 +tp132396 +a(g132393 +g132395 +S'1510' +p132397 +tp132398 +a(g132395 +g132397 +S'at' +p132399 +tp132400 +a(g132397 +g132399 +S'age' +p132401 +tp132402 +a(g132399 +g132401 +S'32' +p132403 +tp132404 +a(g132401 +g132403 +S'or' +p132405 +tp132406 +a(g132403 +g132405 +S'33),' +p132407 +tp132408 +a(g132405 +g132407 +S'and' +p132409 +tp132410 +a(g132407 +g132409 +S'only' +p132411 +tp132412 +a(g132409 +g132411 +S'a' +p132413 +tp132414 +a(g132411 +g132413 +S'few' +p132415 +tp132416 +a(g132413 +g132415 +S'paintings' +p132417 +tp132418 +a(g132415 +g132417 +S'can' +p132419 +tp132420 +a(g132417 +g132419 +S'be' +p132421 +tp132422 +a(g132419 +g132421 +S'definitively' +p132423 +tp132424 +a(g132421 +g132423 +S'attributed' +p132425 +tp132426 +a(g132423 +g132425 +S'to' +p132427 +tp132428 +a(g132425 +g132427 +S'him.' +p132429 +tp132430 +a(g132427 +g132429 +S'he' +p132431 +tp132432 +a(g132429 +g132431 +S'initially' +p132433 +tp132434 +a(g132431 +g132433 +S'studied' +p132435 +tp132436 +a(g132433 +g132435 +S'with' +p132437 +tp132438 +a(g132435 +g132437 +S'giovanni' +p132439 +tp132440 +a(g132437 +g132439 +S'bellini,' +p132441 +tp132442 +a(g132439 +g132441 +S'seems' +p132443 +tp132444 +a(g132441 +g132443 +S'to' +p132445 +tp132446 +a(g132443 +g132445 +S'have' +p132447 +tp132448 +a(g132445 +g132447 +S'been' +p132449 +tp132450 +a(g132447 +g132449 +S'influenced' +p132451 +tp132452 +a(g132449 +g132451 +S'by' +p132453 +tp132454 +a(g132451 +g132453 +S'leonardo,' +p132455 +tp132456 +a(g132453 +g132455 +S'and' +p132457 +tp132458 +a(g132455 +g132457 +S'could' +p132459 +tp132460 +a(g132457 +g132459 +S'claim' +p132461 +tp132462 +a(g132459 +g132461 +S'titian' +p132463 +tp132464 +a(g132461 +g132463 +S'and' +p132465 +tp132466 +a(g132463 +g132465 +S'sebastiano' +p132467 +tp132468 +a(g132465 +g132467 +S'del' +p132469 +tp132470 +a(g132467 +g132469 +S'piombo' +p132471 +tp132472 +a(g132469 +g132471 +S'as' +p132473 +tp132474 +a(g132471 +g132473 +S'his' +p132475 +tp132476 +a(g132473 +g132475 +S'pupils.' +p132477 +tp132478 +a(g132475 +g132477 +S'the' +p132479 +tp132480 +a(g132477 +g132479 +S'orphaned' +p132481 +tp132482 +a(g132479 +g132481 +S'at' +p132483 +tp132484 +a(g132481 +g132483 +S'a' +p132485 +tp132486 +a(g132483 +g132485 +S'young' +p132487 +tp132488 +a(g132485 +g132487 +S'age,' +p132489 +tp132490 +a(g132487 +g132489 +S'filippo' +p132491 +tp132492 +a(g132489 +g132491 +S'lippi' +p132493 +tp132494 +a(g132491 +g132493 +S'was' +p132495 +tp132496 +a(g132493 +g132495 +S'raised' +p132497 +tp132498 +a(g132495 +g132497 +S'in' +p132499 +tp132500 +a(g132497 +g132499 +S'the' +p132501 +tp132502 +a(g132499 +g132501 +S'carmelite' +p132503 +tp132504 +a(g132501 +g132503 +S'convent' +p132505 +tp132506 +a(g132503 +g132505 +S'of' +p132507 +tp132508 +a(g132505 +g132507 +S'santa' +p132509 +tp132510 +a(g132507 +g132509 +S'maria' +p132511 +tp132512 +a(g132509 +g132511 +S'in' +p132513 +tp132514 +a(g132511 +g132513 +S'florence,' +p132515 +tp132516 +a(g132513 +g132515 +S'where' +p132517 +tp132518 +a(g132515 +g132517 +S'he' +p132519 +tp132520 +a(g132517 +g132519 +S'would' +p132521 +tp132522 +a(g132519 +g132521 +S'undoubtedly' +p132523 +tp132524 +a(g132521 +g132523 +S'have' +p132525 +tp132526 +a(g132523 +g132525 +S'seen' +p132527 +tp132528 +a(g132525 +g132527 +S'masaccio' +p132529 +tp132530 +a(g132527 +g132529 +S'and' +p132531 +tp132532 +a(g132529 +g132531 +S'masolino' +p132533 +tp132534 +a(g132531 +g132533 +S'at' +p132535 +tp132536 +a(g132533 +g132535 +S'work' +p132537 +tp132538 +a(g132535 +g132537 +S'on' +p132539 +tp132540 +a(g132537 +g132539 +S'the' +p132541 +tp132542 +a(g132539 +g132541 +S'frescoes' +p132543 +tp132544 +a(g132541 +g132543 +S'in' +p132545 +tp132546 +a(g132543 +g132545 +S'the' +p132547 +tp132548 +a(g132545 +g132547 +S'brancacci' +p132549 +tp132550 +a(g132547 +g132549 +S'chapel.' +p132551 +tp132552 +a(g132549 +g132551 +S'he' +p132553 +tp132554 +a(g132551 +g132553 +S'took' +p132555 +tp132556 +a(g132553 +g132555 +S'vows' +p132557 +tp132558 +a(g132555 +g132557 +S'himself,' +p132559 +tp132560 +a(g132557 +g132559 +S'but' +p132561 +tp132562 +a(g132559 +g132561 +S'proved' +p132563 +tp132564 +a(g132561 +g132563 +S'to' +p132565 +tp132566 +a(g132563 +g132565 +S'be' +p132567 +tp132568 +a(g132565 +g132567 +S'wholly' +p132569 +tp132570 +a(g132567 +g132569 +S'unsuited' +p132571 +tp132572 +a(g132569 +g132571 +S'to' +p132573 +tp132574 +a(g132571 +g132573 +S'religious' +p132575 +tp132576 +a(g132573 +g132575 +S'life.' +p132577 +tp132578 +a(g132575 +g132577 +S'his' +p132579 +tp132580 +a(g132577 +g132579 +S'name' +p132581 +tp132582 +a(g132579 +g132581 +S'surfaces' +p132583 +tp132584 +a(g132581 +g132583 +S'often' +p132585 +tp132586 +a(g132583 +g132585 +S'in' +p132587 +tp132588 +a(g132585 +g132587 +S'court' +p132589 +tp132590 +a(g132587 +g132589 +S'documents.' +p132591 +tp132592 +a(g132589 +g132591 +S'tried' +p132593 +tp132594 +a(g132591 +g132593 +S'for' +p132595 +tp132596 +a(g132593 +g132595 +S'embezzlement' +p132597 +tp132598 +a(g132595 +g132597 +S'(even' +p132599 +tp132600 +a(g132597 +g132599 +S'tortured' +p132601 +tp132602 +a(g132599 +g132601 +S'on' +p132603 +tp132604 +a(g132601 +g132603 +S'the' +p132605 +tp132606 +a(g132603 +g132605 +S'rack),' +p132607 +tp132608 +a(g132605 +g132607 +S'he' +p132609 +tp132610 +a(g132607 +g132609 +S'lived' +p132611 +tp132612 +a(g132609 +g132611 +S'openly' +p132613 +tp132614 +a(g132611 +g132613 +S'with' +p132615 +tp132616 +a(g132613 +g132615 +S'a' +p132617 +tp132618 +a(g132615 +g132617 +S'carmelite' +p132619 +tp132620 +a(g132617 +g132619 +S'nun,' +p132621 +tp132622 +a(g132619 +g132621 +S'lucretia' +p132623 +tp132624 +a(g132621 +g132623 +S'buti,' +p132625 +tp132626 +a(g132623 +g132625 +S'who' +p132627 +tp132628 +a(g132625 +g132627 +S'was' +p132629 +tp132630 +a(g132627 +g132629 +S'his' +p132631 +tp132632 +a(g132629 +g132631 +S'model' +p132633 +tp132634 +a(g132631 +g132633 +S'and' +p132635 +tp132636 +a(g132633 +g132635 +S'with' +p132637 +tp132638 +a(g132635 +g132637 +S'whom' +p132639 +tp132640 +a(g132637 +g132639 +S'he' +p132641 +tp132642 +a(g132639 +g132641 +S'had' +p132643 +tp132644 +a(g132641 +g132643 +S'a' +p132645 +tp132646 +a(g132643 +g132645 +S'son—painter' +p132647 +tp132648 +a(g132645 +g132647 +S"filippo's" +p132649 +tp132650 +a(g132647 +g132649 +S'virgin' +p132651 +tp132652 +a(g132649 +g132651 +S'is' +p132653 +tp132654 +a(g132651 +g132653 +S'wistful' +p132655 +tp132656 +a(g132653 +g132655 +S'and' +p132657 +tp132658 +a(g132655 +g132657 +S'slightly' +p132659 +tp132660 +a(g132657 +g132659 +S'melancholy,' +p132661 +tp132662 +a(g132659 +g132661 +S'while' +p132663 +tp132664 +a(g132661 +g132663 +S'the' +p132665 +tp132666 +a(g132663 +g132665 +S"infant's" +p132667 +tp132668 +a(g132665 +g132667 +S'heavy,' +p132669 +tp132670 +a(g132667 +g132669 +S'almost' +p132671 +tp132672 +a(g132669 +g132671 +S'muscular' +p132673 +tp132674 +a(g132671 +g132673 +S'form' +p132675 +tp132676 +a(g132673 +g132675 +S'recalls' +p132677 +tp132678 +a(g132675 +g132677 +S"masaccio's" +p132679 +tp132680 +a(g132677 +g132679 +S'emphatically' +p132681 +tp132682 +a(g132679 +g132681 +S'three-dimensional' +p132683 +tp132684 +a(g132681 +g132683 +S'figures.' +p132685 +tp132686 +a(g132683 +g132685 +S'masaccio' +p132687 +tp132688 +a(g132685 +g132687 +S'had' +p132689 +tp132690 +a(g132687 +g132689 +S'used' +p132691 +tp132692 +a(g132689 +g132691 +S'strongly' +p132693 +tp132694 +a(g132691 +g132693 +S'directional' +p132695 +tp132696 +a(g132693 +g132695 +S'light' +p132697 +tp132698 +a(g132695 +g132697 +S'to' +p132699 +tp132700 +a(g132697 +g132699 +S'reveal' +p132701 +tp132702 +a(g132699 +g132701 +S'the' +p132703 +tp132704 +a(g132701 +g132703 +S'form' +p132705 +tp132706 +a(g132703 +g132705 +S'of' +p132707 +tp132708 +a(g132705 +g132707 +S'his' +p132709 +tp132710 +a(g132707 +g132709 +S'figures.' +p132711 +tp132712 +a(g132709 +g132711 +S"filippo's" +p132713 +tp132714 +a(g132711 +g132713 +S'virgin' +p132715 +tp132716 +a(g132713 +g132715 +S'and' +p132717 +tp132718 +a(g132715 +g132717 +S'child,' +p132719 +tp132720 +a(g132717 +g132719 +S'on' +p132721 +tp132722 +a(g132719 +g132721 +S'the' +p132723 +tp132724 +a(g132721 +g132723 +S'other' +p132725 +tp132726 +a(g132723 +g132725 +S'hand,' +p132727 +tp132728 +a(g132725 +g132727 +S'are' +p132729 +tp132730 +a(g132727 +g132729 +S'bathed' +p132731 +tp132732 +a(g132729 +g132731 +S'in' +p132733 +tp132734 +a(g132731 +g132733 +S'an' +p132735 +tp132736 +a(g132733 +g132735 +S'overall' +p132737 +tp132738 +a(g132735 +g132737 +S'glow' +p132739 +tp132740 +a(g132737 +g132739 +S'that' +p132741 +tp132742 +a(g132739 +g132741 +S'prevents' +p132743 +tp132744 +a(g132741 +g132743 +S'the' +p132745 +tp132746 +a(g132743 +g132745 +S'modeling' +p132747 +tp132748 +a(g132745 +g132747 +S'of' +p132749 +tp132750 +a(g132747 +g132749 +S'the' +p132751 +tp132752 +a(g132749 +g132751 +S'figures' +p132753 +tp132754 +a(g132751 +g132753 +S'from' +p132755 +tp132756 +a(g132753 +g132755 +S'overpowering' +p132757 +tp132758 +a(g132755 +g132757 +S'the' +p132759 +tp132760 +a(g132757 +g132759 +S'graceful' +p132761 +tp132762 +a(g132759 +g132761 +S'and' +p132763 +tp132764 +a(g132761 +g132763 +S'well-defined' +p132765 +tp132766 +a(g132763 +g132765 +S'line' +p132767 +tp132768 +a(g132765 +g132767 +S'of' +p132769 +tp132770 +a(g132767 +g132769 +S'his' +p132771 +tp132772 +a(g132769 +g132771 +S'composition.' +p132773 +tp132774 +a(g132771 +g132773 +S'as' +p132775 +tp132776 +a(g132773 +g132775 +S'filippo' +p132777 +tp132778 +a(g132775 +g132777 +S'grew' +p132779 +tp132780 +a(g132777 +g132779 +S'older' +p132781 +tp132782 +a(g132779 +g132781 +S'his' +p132783 +tp132784 +a(g132781 +g132783 +S'reliance' +p132785 +tp132786 +a(g132783 +g132785 +S'on' +p132787 +tp132788 +a(g132785 +g132787 +S'line' +p132789 +tp132790 +a(g132787 +g132789 +S'increased' +p132791 +tp132792 +a(g132789 +g132791 +S'and' +p132793 +tp132794 +a(g132791 +g132793 +S"masaccio's" +p132795 +tp132796 +a(g132793 +g132795 +S'influence' +p132797 +tp132798 +a(g132795 +g132797 +S'lessened.' +p132799 +tp132800 +a(g132797 +g132799 +S'lessing' +p132801 +tp132802 +a(g132799 +g132801 +S'julius' +p132803 +tp132804 +a(g132801 +g132803 +S'rosenwald' +p132805 +tp132806 +a(g132803 +g132805 +S'(1891-1979)' +p132807 +tp132808 +a(g132805 +g132807 +S'followed' +p132809 +tp132810 +a(g132807 +g132809 +S'his' +p132811 +tp132812 +a(g132809 +g132811 +S'father' +p132813 +tp132814 +a(g132811 +g132813 +S'in' +p132815 +tp132816 +a(g132813 +g132815 +S'directing' +p132817 +tp132818 +a(g132815 +g132817 +S'the' +p132819 +tp132820 +a(g132817 +g132819 +S'mail-order' +p132821 +tp132822 +a(g132819 +g132821 +S'firm' +p132823 +tp132824 +a(g132821 +g132823 +S'of' +p132825 +tp132826 +a(g132823 +g132825 +S'sears,' +p132827 +tp132828 +a(g132825 +g132827 +S'roebuck' +p132829 +tp132830 +a(g132827 +g132829 +S'&' +p132831 +tp132832 +a(g132829 +g132831 +S'company.' +p132833 +tp132834 +a(g132831 +g132833 +S'in' +p132835 +tp132836 +a(g132833 +g132835 +S'1939,' +p132837 +tp132838 +a(g132835 +g132837 +S'the' +p132839 +tp132840 +a(g132837 +g132839 +S'younger' +p132841 +tp132842 +a(g132839 +g132841 +S'rosenwald' +p132843 +tp132844 +a(g132841 +g132843 +S'retired' +p132845 +tp132846 +a(g132843 +g132845 +S'from' +p132847 +tp132848 +a(g132845 +g132847 +S'business' +p132849 +tp132850 +a(g132847 +g132849 +S'to' +p132851 +tp132852 +a(g132849 +g132851 +S'devote' +p132853 +tp132854 +a(g132851 +g132853 +S'himself' +p132855 +tp132856 +a(g132853 +g132855 +S'to' +p132857 +tp132858 +a(g132855 +g132857 +S'public' +p132859 +tp132860 +a(g132857 +g132859 +S'service' +p132861 +tp132862 +a(g132859 +g132861 +S'and' +p132863 +tp132864 +a(g132861 +g132863 +S'to' +p132865 +tp132866 +a(g132863 +g132865 +S'his' +p132867 +tp132868 +a(g132865 +g132867 +S'love' +p132869 +tp132870 +a(g132867 +g132869 +S'of' +p132871 +tp132872 +a(g132869 +g132871 +S'prints' +p132873 +tp132874 +a(g132871 +g132873 +S'and' +p132875 +tp132876 +a(g132873 +g132875 +S'drawings' +p132877 +tp132878 +a(g132875 +g132877 +S'from' +p132879 +tp132880 +a(g132877 +g132879 +S'the' +p132881 +tp132882 +a(g132879 +g132881 +S'middle' +p132883 +tp132884 +a(g132881 +g132883 +S'ages' +p132885 +tp132886 +a(g132883 +g132885 +S'to' +p132887 +tp132888 +a(g132885 +g132887 +S'the' +p132889 +tp132890 +a(g132887 +g132889 +S'present.' +p132891 +tp132892 +a(g132889 +g132891 +S'in' +p132893 +tp132894 +a(g132891 +g132893 +S'1941,' +p132895 +tp132896 +a(g132893 +g132895 +S'only' +p132897 +tp132898 +a(g132895 +g132897 +S'months' +p132899 +tp132900 +a(g132897 +g132899 +S'after' +p132901 +tp132902 +a(g132899 +g132901 +S'the' +p132903 +tp132904 +a(g132901 +g132903 +S'national' +p132905 +tp132906 +a(g132903 +g132905 +S'gallery' +p132907 +tp132908 +a(g132905 +g132907 +S'opened,' +p132909 +tp132910 +a(g132907 +g132909 +S'rosenwald' +p132911 +tp132912 +a(g132909 +g132911 +S'began' +p132913 +tp132914 +a(g132911 +g132913 +S'donating' +p132915 +tp132916 +a(g132913 +g132915 +S'selections' +p132917 +tp132918 +a(g132915 +g132917 +S'from' +p132919 +tp132920 +a(g132917 +g132919 +S'his' +p132921 +tp132922 +a(g132919 +g132921 +S'collection' +p132923 +tp132924 +a(g132921 +g132923 +S'of' +p132925 +tp132926 +a(g132923 +g132925 +S'works' +p132927 +tp132928 +a(g132925 +g132927 +S'on' +p132929 +tp132930 +a(g132927 +g132929 +S'paper.' +p132931 +tp132932 +a(g132929 +g132931 +S'he' +p132933 +tp132934 +a(g132931 +g132933 +S'also' +p132935 +tp132936 +a(g132933 +g132935 +S'freely' +p132937 +tp132938 +a(g132935 +g132937 +S'lent' +p132939 +tp132940 +a(g132937 +g132939 +S'graphic' +p132941 +tp132942 +a(g132939 +g132941 +S'art' +p132943 +tp132944 +a(g132941 +g132943 +S'from' +p132945 +tp132946 +a(g132943 +g132945 +S'his' +p132947 +tp132948 +a(g132945 +g132947 +S'home' +p132949 +tp132950 +a(g132947 +g132949 +S'outside' +p132951 +tp132952 +a(g132949 +g132951 +S'philadelphia' +p132953 +tp132954 +a(g132951 +g132953 +S'for' +p132955 +tp132956 +a(g132953 +g132955 +S'public' +p132957 +tp132958 +a(g132955 +g132957 +S'exhibition' +p132959 +tp132960 +a(g132957 +g132959 +S'or' +p132961 +tp132962 +a(g132959 +g132961 +S'scholarly' +p132963 +tp132964 +a(g132961 +g132963 +S'inspection' +p132965 +tp132966 +a(g132963 +g132965 +S'in' +p132967 +tp132968 +a(g132965 +g132967 +S'washington.' +p132969 +tp132970 +a(g132967 +g132969 +S'by' +p132971 +tp132972 +a(g132969 +g132971 +S'the' +p132973 +tp132974 +a(g132971 +g132973 +S'time' +p132975 +tp132976 +a(g132973 +g132975 +S'of' +p132977 +tp132978 +a(g132975 +g132977 +S"rosenwald's" +p132979 +tp132980 +a(g132977 +g132979 +S'death,' +p132981 +tp132982 +a(g132979 +g132981 +S'his' +p132983 +tp132984 +a(g132981 +g132983 +S'gifts' +p132985 +tp132986 +a(g132983 +g132985 +S'to' +p132987 +tp132988 +a(g132985 +g132987 +S'the' +p132989 +tp132990 +a(g132987 +g132989 +S'gallery' +p132991 +tp132992 +a(g132989 +g132991 +S'totaled' +p132993 +tp132994 +a(g132991 +g132993 +S'some' +p132995 +tp132996 +a(g132993 +g132995 +S'22,000' +p132997 +tp132998 +a(g132995 +g132997 +S'drawings' +p132999 +tp133000 +a(g132997 +g132999 +S'and' +p133001 +tp133002 +a(g132999 +g133001 +S'prints.' +p133003 +tp133004 +a(g133001 +g133003 +S'he' +p133005 +tp133006 +a(g133003 +g133005 +S'donated' +p133007 +tp133008 +a(g133005 +g133007 +S'his' +p133009 +tp133010 +a(g133007 +g133009 +S'rare' +p133011 +tp133012 +a(g133009 +g133011 +S'illustrated' +p133013 +tp133014 +a(g133011 +g133013 +S'books' +p133015 +tp133016 +a(g133013 +g133015 +S'and' +p133017 +tp133018 +a(g133015 +g133017 +S'manuscripts' +p133019 +tp133020 +a(g133017 +g133019 +S'to' +p133021 +tp133022 +a(g133019 +g133021 +S'the' +p133023 +tp133024 +a(g133021 +g133023 +S'library' +p133025 +tp133026 +a(g133023 +g133025 +S'of' +p133027 +tp133028 +a(g133025 +g133027 +S'congress.' +p133029 +tp133030 +a(g133027 +g133029 +S'gardner' +p133031 +tp133032 +a(g133029 +g133031 +S'cox' +p133033 +tp133034 +a(g133031 +g133033 +S'achieved' +p133035 +tp133036 +a(g133033 +g133035 +S'fame' +p133037 +tp133038 +a(g133035 +g133037 +S'for' +p133039 +tp133040 +a(g133037 +g133039 +S'the' +p133041 +tp133042 +a(g133039 +g133041 +S'sound' +p133043 +tp133044 +a(g133041 +g133043 +S'draftsmanship' +p133045 +tp133046 +a(g133043 +g133045 +S'and' +p133047 +tp133048 +a(g133045 +g133047 +S'understanding' +p133049 +tp133050 +a(g133047 +g133049 +S'of' +p133051 +tp133052 +a(g133049 +g133051 +S'anatomy' +p133053 +tp133054 +a(g133051 +g133053 +S'that' +p133055 +tp133056 +a(g133053 +g133055 +S'underlie' +p133057 +tp133058 +a(g133055 +g133057 +S"rosenwald's" +p133059 +tp133060 +a(g133057 +g133059 +S'informal' +p133061 +tp133062 +a(g133059 +g133061 +S'likeness.' +p133063 +tp133064 +a(g133061 +g133063 +S'dressed' +p133065 +tp133066 +a(g133063 +g133065 +S'in' +p133067 +tp133068 +a(g133065 +g133067 +S'fanciful' +p133069 +tp133070 +a(g133067 +g133069 +S'armor,' +p133071 +tp133072 +a(g133069 +g133071 +S'alexander' +p133073 +tp133074 +a(g133071 +g133073 +S'here' +p133075 +tp133076 +a(g133073 +g133075 +S'exemplifies' +p133077 +tp133078 +a(g133075 +g133077 +S'the' +p133079 +tp133080 +a(g133077 +g133079 +S'powerful' +p133081 +tp133082 +a(g133079 +g133081 +S'leader' +p133083 +tp133084 +a(g133081 +g133083 +S'capable' +p133085 +tp133086 +a(g133083 +g133085 +S'of' +p133087 +tp133088 +a(g133085 +g133087 +S'controlling' +p133089 +tp133090 +a(g133087 +g133089 +S'several' +p133091 +tp133092 +a(g133089 +g133091 +S'regions' +p133093 +tp133094 +a(g133091 +g133093 +S'and' +p133095 +tp133096 +a(g133093 +g133095 +S'cultures' +p133097 +tp133098 +a(g133095 +g133097 +S'in' +p133099 +tp133100 +a(g133097 +g133099 +S'a' +p133101 +tp133102 +a(g133099 +g133101 +S'vast' +p133103 +tp133104 +a(g133101 +g133103 +S'expanding' +p133105 +tp133106 +a(g133103 +g133105 +S'empire.' +p133107 +tp133108 +a(g133105 +g133107 +S'a' +p133109 +tp133110 +a(g133107 +g133109 +S'relief' +p133111 +tp133112 +a(g133109 +g133111 +S'of' +p133113 +tp133114 +a(g133111 +g133113 +S'alexander,' +p133115 +tp133116 +a(g133113 +g133115 +S'reportedly' +p133117 +tp133118 +a(g133115 +g133117 +S'done' +p133119 +tp133120 +a(g133117 +g133119 +S'in' +p133121 +tp133122 +a(g133119 +g133121 +S'metal,' +p133123 +tp133124 +a(g133121 +g133123 +S'and' +p133125 +tp133126 +a(g133123 +g133125 +S'a' +p133127 +tp133128 +a(g133125 +g133127 +S'pendant' +p133129 +tp133130 +a(g133127 +g133129 +S'relief' +p133131 +tp133132 +a(g133129 +g133131 +S'of' +p133133 +tp133134 +a(g133131 +g133133 +S'his' +p133135 +tp133136 +a(g133133 +g133135 +S'adversary' +p133137 +tp133138 +a(g133135 +g133137 +S'darius' +p133139 +tp133140 +a(g133137 +g133139 +S'were' +p133141 +tp133142 +a(g133139 +g133141 +S'presented' +p133143 +tp133144 +a(g133141 +g133143 +S'to' +p133145 +tp133146 +a(g133143 +g133145 +S'king' +p133147 +tp133148 +a(g133145 +g133147 +S'matthias' +p133149 +tp133150 +a(g133147 +g133149 +S'corvinus' +p133151 +tp133152 +a(g133149 +g133151 +S'of' +p133153 +tp133154 +a(g133151 +g133153 +S'hungary' +p133155 +tp133156 +a(g133153 +g133155 +S'in' +p133157 +tp133158 +a(g133155 +g133157 +S'1480' +p133159 +tp133160 +a(g133157 +g133159 +S'as' +p133161 +tp133162 +a(g133159 +g133161 +S'a' +p133163 +tp133164 +a(g133161 +g133163 +S'diplomatic' +p133165 +tp133166 +a(g133163 +g133165 +S'gift' +p133167 +tp133168 +a(g133165 +g133167 +S'from' +p133169 +tp133170 +a(g133167 +g133169 +S'lorenzo' +p133171 +tp133172 +a(g133169 +g133171 +S"de'" +p133173 +tp133174 +a(g133171 +g133173 +S'medici.' +p133175 +tp133176 +a(g133173 +g133175 +S'the' +p133177 +tp133178 +a(g133175 +g133177 +S'reliefs,' +p133179 +tp133180 +a(g133177 +g133179 +S'flattering' +p133181 +tp133182 +a(g133179 +g133181 +S'gifts' +p133183 +tp133184 +a(g133181 +g133183 +S'from' +p133185 +tp133186 +a(g133183 +g133185 +S'one' +p133187 +tp133188 +a(g133185 +g133187 +S'great' +p133189 +tp133190 +a(g133187 +g133189 +S'humanist' +p133191 +tp133192 +a(g133189 +g133191 +S'patron' +p133193 +tp133194 +a(g133191 +g133193 +S'to' +p133195 +tp133196 +a(g133193 +g133195 +S'another,' +p133197 +tp133198 +a(g133195 +g133197 +S'sought' +p133199 +tp133200 +a(g133197 +g133199 +S'to' +p133201 +tp133202 +a(g133199 +g133201 +S'equate' +p133203 +tp133204 +a(g133201 +g133203 +S"alexander's" +p133205 +tp133206 +a(g133203 +g133205 +S'campaigns' +p133207 +tp133208 +a(g133205 +g133207 +S'with' +p133209 +tp133210 +a(g133207 +g133209 +S'those' +p133211 +tp133212 +a(g133209 +g133211 +S'of' +p133213 +tp133214 +a(g133211 +g133213 +S'corvinus,' +p133215 +tp133216 +a(g133213 +g133215 +S'who' +p133217 +tp133218 +a(g133215 +g133217 +S'was' +p133219 +tp133220 +a(g133217 +g133219 +S'engaged' +p133221 +tp133222 +a(g133219 +g133221 +S'in' +p133223 +tp133224 +a(g133221 +g133223 +S'driving' +p133225 +tp133226 +a(g133223 +g133225 +S'back' +p133227 +tp133228 +a(g133225 +g133227 +S'an' +p133229 +tp133230 +a(g133227 +g133229 +S'invading' +p133231 +tp133232 +a(g133229 +g133231 +S'ottoman' +p133233 +tp133234 +a(g133231 +g133233 +S'army.' +p133235 +tp133236 +a(g133233 +g133235 +S'lorenzo' +p133237 +tp133238 +a(g133235 +g133237 +S'was' +p133239 +tp133240 +a(g133237 +g133239 +S'aware' +p133241 +tp133242 +a(g133239 +g133241 +S'that' +p133243 +tp133244 +a(g133241 +g133243 +S'successful' +p133245 +tp133246 +a(g133243 +g133245 +S'resistance' +p133247 +tp133248 +a(g133245 +g133247 +S'to' +p133249 +tp133250 +a(g133247 +g133249 +S'the' +p133251 +tp133252 +a(g133249 +g133251 +S'ottoman' +p133253 +tp133254 +a(g133251 +g133253 +S'invasions' +p133255 +tp133256 +a(g133253 +g133255 +S'would' +p133257 +tp133258 +a(g133255 +g133257 +S'protect' +p133259 +tp133260 +a(g133257 +g133259 +S'the' +p133261 +tp133262 +a(g133259 +g133261 +S'rest' +p133263 +tp133264 +a(g133261 +g133263 +S'of' +p133265 +tp133266 +a(g133263 +g133265 +S'europe,' +p133267 +tp133268 +a(g133265 +g133267 +S'including' +p133269 +tp133270 +a(g133267 +g133269 +S'florence,' +p133271 +tp133272 +a(g133269 +g133271 +S'from' +p133273 +tp133274 +a(g133271 +g133273 +S'the' +p133275 +tp133276 +a(g133273 +g133275 +S'ever-present' +p133277 +tp133278 +a(g133275 +g133277 +S'ottoman' +p133279 +tp133280 +a(g133277 +g133279 +S'threat.' +p133281 +tp133282 +a(g133279 +g133281 +S'during' +p133283 +tp133284 +a(g133281 +g133283 +S'the' +p133285 +tp133286 +a(g133283 +g133285 +S'few' +p133287 +tp133288 +a(g133285 +g133287 +S'decades' +p133289 +tp133290 +a(g133287 +g133289 +S'of' +p133291 +tp133292 +a(g133289 +g133291 +S"corvinus'" +p133293 +tp133294 +a(g133291 +g133293 +S'reign,' +p133295 +tp133296 +a(g133293 +g133295 +S'the' +p133297 +tp133298 +a(g133295 +g133297 +S'hungarian' +p133299 +tp133300 +a(g133297 +g133299 +S'court' +p133301 +tp133302 +a(g133299 +g133301 +S'rivaled' +p133303 +tp133304 +a(g133301 +g133303 +S'those' +p133305 +tp133306 +a(g133303 +g133305 +S'of' +p133307 +tp133308 +a(g133305 +g133307 +S'italy' +p133309 +tp133310 +a(g133307 +g133309 +S'in' +p133311 +tp133312 +a(g133309 +g133311 +S'its' +p133313 +tp133314 +a(g133311 +g133313 +S'artistic' +p133315 +tp133316 +a(g133313 +g133315 +S'patronage.' +p133317 +tp133318 +a(g133315 +g133317 +S'designing' +p133319 +tp133320 +a(g133317 +g133319 +S"alexander's" +p133321 +tp133322 +a(g133319 +g133321 +S'armor' +p133323 +tp133324 +a(g133321 +g133323 +S'in' +p133325 +tp133326 +a(g133323 +g133325 +S'an' +p133327 +tp133328 +a(g133325 +g133327 +S'ancient' +p133329 +tp133330 +a(g133327 +g133329 +S'style,' +p133331 +tp133332 +a(g133329 +g133331 +S'verrocchio' +p133333 +tp133334 +a(g133331 +g133333 +S'also' +p133335 +tp133336 +a(g133333 +g133335 +S'embellished' +p133337 +tp133338 +a(g133335 +g133337 +S'it' +p133339 +tp133340 +a(g133337 +g133339 +S'to' +p133341 +tp133342 +a(g133339 +g133341 +S'his' +p133343 +tp133344 +a(g133341 +g133343 +S'own' +p133345 +tp133346 +a(g133343 +g133345 +S'fancy.' +p133347 +tp133348 +a(g133345 +g133347 +S'certainly' +p133349 +tp133350 +a(g133347 +g133349 +S'the' +p133351 +tp133352 +a(g133349 +g133351 +S'winged' +p133353 +tp133354 +a(g133351 +g133353 +S'head' +p133355 +tp133356 +a(g133353 +g133355 +S'screaming' +p133357 +tp133358 +a(g133355 +g133357 +S'in' +p133359 +tp133360 +a(g133357 +g133359 +S'fury' +p133361 +tp133362 +a(g133359 +g133361 +S'was' +p133363 +tp133364 +a(g133361 +g133363 +S'indicative' +p133365 +tp133366 +a(g133363 +g133365 +S'of' +p133367 +tp133368 +a(g133365 +g133367 +S'the' +p133369 +tp133370 +a(g133367 +g133369 +S"commander's" +p133371 +tp133372 +a(g133369 +g133371 +S'military' +p133373 +tp133374 +a(g133371 +g133373 +S'ferocity,' +p133375 +tp133376 +a(g133373 +g133375 +S'while' +p133377 +tp133378 +a(g133375 +g133377 +S'the' +p133379 +tp133380 +a(g133377 +g133379 +S'elaborate' +p133381 +tp133382 +a(g133379 +g133381 +S'dragon' +p133383 +tp133384 +a(g133381 +g133383 +S'helmet' +p133385 +tp133386 +a(g133383 +g133385 +S'with' +p133387 +tp133388 +a(g133385 +g133387 +S'ribbon' +p133389 +tp133390 +a(g133387 +g133389 +S'was' +p133391 +tp133392 +a(g133389 +g133391 +S'fitting' +p133393 +tp133394 +a(g133391 +g133393 +S'for' +p133395 +tp133396 +a(g133393 +g133395 +S'his' +p133397 +tp133398 +a(g133395 +g133397 +S'status' +p133399 +tp133400 +a(g133397 +g133399 +S'as' +p133401 +tp133402 +a(g133399 +g133401 +S'a' +p133403 +tp133404 +a(g133401 +g133403 +S'king.' +p133405 +tp133406 +a(g133403 +g133405 +S'any' +p133407 +tp133408 +a(g133405 +g133407 +S'allegorical' +p133409 +tp133410 +a(g133407 +g133409 +S'meaning' +p133411 +tp133412 +a(g133409 +g133411 +S'is' +p133413 +tp133414 +a(g133411 +g133413 +S'hard' +p133415 +tp133416 +a(g133413 +g133415 +S'to' +p133417 +tp133418 +a(g133415 +g133417 +S'derive,' +p133419 +tp133420 +a(g133417 +g133419 +S'because' +p133421 +tp133422 +a(g133419 +g133421 +S'verrocchio' +p133423 +tp133424 +a(g133421 +g133423 +S'and' +p133425 +tp133426 +a(g133423 +g133425 +S'his' +p133427 +tp133428 +a(g133425 +g133427 +S'contemporaries' +p133429 +tp133430 +a(g133427 +g133429 +S'often' +p133431 +tp133432 +a(g133429 +g133431 +S'designed' +p133433 +tp133434 +a(g133431 +g133433 +S'such' +p133435 +tp133436 +a(g133433 +g133435 +S'rich' +p133437 +tp133438 +a(g133435 +g133437 +S'and' +p133439 +tp133440 +a(g133437 +g133439 +S'fantastic' +p133441 +tp133442 +a(g133439 +g133441 +S'armor' +p133443 +tp133444 +a(g133441 +g133443 +S'for' +p133445 +tp133446 +a(g133443 +g133445 +S'florentines' +p133447 +tp133448 +a(g133445 +g133447 +S'to' +p133449 +tp133450 +a(g133447 +g133449 +S'wear' +p133451 +tp133452 +a(g133449 +g133451 +S'in' +p133453 +tp133454 +a(g133451 +g133453 +S'jousts.' +p133455 +tp133456 +a(g133453 +g133455 +S'the' +p133457 +tp133458 +a(g133455 +g133457 +S'railway' +p133459 +tp133460 +a(g133457 +g133459 +S'' +p133461 +tp133462 +a(g133459 +g133461 +S'the' +p133463 +tp133464 +a(g133461 +g133463 +S'focus' +p133465 +tp133466 +a(g133463 +g133465 +S'of' +p133467 +tp133468 +a(g133465 +g133467 +S'the' +p133469 +tp133470 +a(g133467 +g133469 +S'composition' +p133471 +tp133472 +a(g133469 +g133471 +S'is' +p133473 +tp133474 +a(g133471 +g133473 +S'a' +p133475 +tp133476 +a(g133473 +g133475 +S'pair' +p133477 +tp133478 +a(g133475 +g133477 +S'of' +p133479 +tp133480 +a(g133477 +g133479 +S'figures:' +p133481 +tp133482 +a(g133479 +g133481 +S'a' +p133483 +tp133484 +a(g133481 +g133483 +S'little' +p133485 +tp133486 +a(g133483 +g133485 +S'girl' +p133487 +tp133488 +a(g133485 +g133487 +S'believed' +p133489 +tp133490 +a(g133487 +g133489 +S'to' +p133491 +tp133492 +a(g133489 +g133491 +S'be' +p133493 +tp133494 +a(g133491 +g133493 +S'the' +p133495 +tp133496 +a(g133493 +g133495 +S'daughter' +p133497 +tp133498 +a(g133495 +g133497 +S'of' +p133499 +tp133500 +a(g133497 +g133499 +S'manet\xe2\x80\x99s' +p133501 +tp133502 +a(g133499 +g133501 +S'neighbor,' +p133503 +tp133504 +a(g133501 +g133503 +S'the' +p133505 +tp133506 +a(g133503 +g133505 +S'artist' +p133507 +tp133508 +a(g133505 +g133507 +S'alphonse' +p133509 +tp133510 +a(g133507 +g133509 +S'hirsch,' +p133511 +tp133512 +a(g133509 +g133511 +S'and' +p133513 +tp133514 +a(g133511 +g133513 +S'a' +p133515 +tp133516 +a(g133513 +g133515 +S'woman' +p133517 +tp133518 +a(g133515 +g133517 +S'immediately' +p133519 +tp133520 +a(g133517 +g133519 +S'recognizable' +p133521 +tp133522 +a(g133519 +g133521 +S'as' +p133523 +tp133524 +a(g133521 +g133523 +S'victorine' +p133525 +tp133526 +a(g133523 +g133525 +S'meurent,' +p133527 +tp133528 +a(g133525 +g133527 +S'manet\xe2\x80\x99s' +p133529 +tp133530 +a(g133527 +g133529 +S'favorite' +p133531 +tp133532 +a(g133529 +g133531 +S'model' +p133533 +tp133534 +a(g133531 +g133533 +S'in' +p133535 +tp133536 +a(g133533 +g133535 +S'the' +p133537 +tp133538 +a(g133535 +g133537 +S'1860s' +p133539 +tp133540 +a(g133537 +g133539 +S'who' +p133541 +tp133542 +a(g133539 +g133541 +S'appeared' +p133543 +tp133544 +a(g133541 +g133543 +S'in' +p133545 +tp133546 +a(g133543 +g133545 +S'the' +p133547 +tp133548 +a(g133545 +g133547 +S'artist\xe2\x80\x99s' +p133549 +tp133550 +a(g133547 +g133549 +S'most' +p133551 +tp133552 +a(g133549 +g133551 +S'notorious' +p133553 +tp133554 +a(g133551 +g133553 +S'works,' +p133555 +tp133556 +a(g133553 +g133555 +S'the' +p133557 +tp133558 +a(g133555 +g133557 +S'as' +p133559 +tp133560 +a(g133557 +g133559 +S'burty\xe2\x80\x99s' +p133561 +tp133562 +a(g133559 +g133561 +S'account' +p133563 +tp133564 +a(g133561 +g133563 +S'suggests,' +p133565 +tp133566 +a(g133563 +g133565 +S'in' +p133567 +tp133568 +a(g133565 +g133567 +S'1874,' +p133569 +tp133570 +a(g133567 +g133569 +S'just' +p133571 +tp133572 +a(g133569 +g133571 +S'as' +p133573 +tp133574 +a(g133571 +g133573 +S'the' +p133575 +tp133576 +a(g133573 +g133575 +S'impressionists' +p133577 +tp133578 +a(g133575 +g133577 +S'were' +p133579 +tp133580 +a(g133577 +g133579 +S'preparing' +p133581 +tp133582 +a(g133579 +g133581 +S'to' +p133583 +tp133584 +a(g133581 +g133583 +S'mount' +p133585 +tp133586 +a(g133583 +g133585 +S'their' +p133587 +tp133588 +a(g133585 +g133587 +S'first' +p133589 +tp133590 +a(g133587 +g133589 +S'group' +p133591 +tp133592 +a(g133589 +g133591 +S'exhibition,' +p133593 +tp133594 +a(g133591 +g133593 +S'manet' +p133595 +tp133596 +a(g133593 +g133595 +S'submitted' +p133597 +tp133598 +a(g133595 +g133597 +S'four' +p133599 +tp133600 +a(g133597 +g133599 +S'works' +p133601 +tp133602 +a(g133599 +g133601 +S'for' +p133603 +tp133604 +a(g133601 +g133603 +S'exhibition' +p133605 +tp133606 +a(g133603 +g133605 +S'at' +p133607 +tp133608 +a(g133605 +g133607 +S'the' +p133609 +tp133610 +a(g133607 +g133609 +S'paris' +p133611 +tp133612 +a(g133609 +g133611 +S'salon.' +p133613 +tp133614 +a(g133611 +g133613 +S'two' +p133615 +tp133616 +a(g133613 +g133615 +S'were' +p133617 +tp133618 +a(g133615 +g133617 +S'rejected' +p133619 +tp133620 +a(g133617 +g133619 +S'outright—the' +p133621 +tp133622 +a(g133619 +g133621 +S'first' +p133623 +tp133624 +a(g133621 +g133623 +S'time' +p133625 +tp133626 +a(g133623 +g133625 +S'in' +p133627 +tp133628 +a(g133625 +g133627 +S'seven' +p133629 +tp133630 +a(g133627 +g133629 +S'years' +p133631 +tp133632 +a(g133629 +g133631 +S'that' +p133633 +tp133634 +a(g133631 +g133633 +S'any' +p133635 +tp133636 +a(g133633 +g133635 +S'of' +p133637 +tp133638 +a(g133635 +g133637 +S'his' +p133639 +tp133640 +a(g133637 +g133639 +S'works' +p133641 +tp133642 +a(g133639 +g133641 +S'had' +p133643 +tp133644 +a(g133641 +g133643 +S'been' +p133645 +tp133646 +a(g133643 +g133645 +S'refused—but' +p133647 +tp133648 +a(g133645 +g133647 +S'two' +p133649 +tp133650 +a(g133647 +g133649 +S'others' +p133651 +tp133652 +a(g133649 +g133651 +S'were' +p133653 +tp133654 +a(g133651 +g133653 +S'accepted:' +p133655 +tp133656 +a(g133653 +g133655 +S'a' +p133657 +tp133658 +a(g133655 +g133657 +S'watercolor' +p133659 +tp133660 +a(g133657 +g133659 +S'and' +p133661 +tp133662 +a(g133659 +g133661 +S'this' +p133663 +tp133664 +a(g133661 +g133663 +S'painting,' +p133665 +tp133666 +a(g133663 +g133665 +S'which' +p133667 +tp133668 +a(g133665 +g133667 +S'he' +p133669 +tp133670 +a(g133667 +g133669 +S'exhibited' +p133671 +tp133672 +a(g133669 +g133671 +S'under' +p133673 +tp133674 +a(g133671 +g133673 +S'the' +p133675 +tp133676 +a(g133673 +g133675 +S'ambiguous' +p133677 +tp133678 +a(g133675 +g133677 +S'title' +p133679 +tp133680 +a(g133677 +g133679 +S'(text' +p133681 +tp133682 +a(g133679 +g133681 +S'by' +p133683 +tp133684 +a(g133681 +g133683 +S'kimberly' +p133685 +tp133686 +a(g133683 +g133685 +S'jones,' +p133687 +tp133688 +a(g133685 +g133687 +S'notes' +p133689 +tp133690 +a(g133687 +g133689 +S'' +p133693 +tp133694 +a(g133691 +g133693 +S'' +p133697 +tp133698 +a(g133695 +g133697 +S'' +p133701 +tp133702 +a(g133699 +g133701 +S'the' +p133703 +tp133704 +a(g133701 +g133703 +S'nephew' +p133705 +tp133706 +a(g133703 +g133705 +S'of' +p133707 +tp133708 +a(g133705 +g133707 +S'one' +p133709 +tp133710 +a(g133707 +g133709 +S'of' +p133711 +tp133712 +a(g133709 +g133711 +S'the' +p133713 +tp133714 +a(g133711 +g133713 +S'most' +p133715 +tp133716 +a(g133713 +g133715 +S'important' +p133717 +tp133718 +a(g133715 +g133717 +S'french' +p133719 +tp133720 +a(g133717 +g133719 +S'generals' +p133721 +tp133722 +a(g133719 +g133721 +S'in' +p133723 +tp133724 +a(g133721 +g133723 +S'spain,' +p133725 +tp133726 +a(g133723 +g133725 +S'the' +p133727 +tp133728 +a(g133725 +g133727 +S'young' +p133729 +tp133730 +a(g133727 +g133729 +S'victor' +p133731 +tp133732 +a(g133729 +g133731 +S'guye' +p133733 +tp133734 +a(g133731 +g133733 +S'wears' +p133735 +tp133736 +a(g133733 +g133735 +S'the' +p133737 +tp133738 +a(g133735 +g133737 +S'uniform' +p133739 +tp133740 +a(g133737 +g133739 +S'of' +p133741 +tp133742 +a(g133739 +g133741 +S'the' +p133743 +tp133744 +a(g133741 +g133743 +S'order' +p133745 +tp133746 +a(g133743 +g133745 +S'of' +p133747 +tp133748 +a(g133745 +g133747 +S'pages' +p133749 +tp133750 +a(g133747 +g133749 +S'to' +p133751 +tp133752 +a(g133749 +g133751 +S'joseph' +p133753 +tp133754 +a(g133751 +g133753 +S'bonaparte,' +p133755 +tp133756 +a(g133753 +g133755 +S'napoleon’s' +p133757 +tp133758 +a(g133755 +g133757 +S'brother' +p133759 +tp133760 +a(g133757 +g133759 +S'who' +p133761 +tp133762 +a(g133759 +g133761 +S'had' +p133763 +tp133764 +a(g133761 +g133763 +S'been' +p133765 +tp133766 +a(g133763 +g133765 +S'appointed' +p133767 +tp133768 +a(g133765 +g133767 +S'king' +p133769 +tp133770 +a(g133767 +g133769 +S'of' +p133771 +tp133772 +a(g133769 +g133771 +S'spain.' +p133773 +tp133774 +a(g133771 +g133773 +S'at' +p133775 +tp133776 +a(g133773 +g133775 +S'six' +p133777 +tp133778 +a(g133775 +g133777 +S'or' +p133779 +tp133780 +a(g133777 +g133779 +S'seven' +p133781 +tp133782 +a(g133779 +g133781 +S'years' +p133783 +tp133784 +a(g133781 +g133783 +S'of' +p133785 +tp133786 +a(g133783 +g133785 +S'age,' +p133787 +tp133788 +a(g133785 +g133787 +S'victor' +p133789 +tp133790 +a(g133787 +g133789 +S'was' +p133791 +tp133792 +a(g133789 +g133791 +S'probably' +p133793 +tp133794 +a(g133791 +g133793 +S'too' +p133795 +tp133796 +a(g133793 +g133795 +S'young' +p133797 +tp133798 +a(g133795 +g133797 +S'to' +p133799 +tp133800 +a(g133797 +g133799 +S'act' +p133801 +tp133802 +a(g133799 +g133801 +S'as' +p133803 +tp133804 +a(g133801 +g133803 +S'a' +p133805 +tp133806 +a(g133803 +g133805 +S'court' +p133807 +tp133808 +a(g133805 +g133807 +S'page.' +p133809 +tp133810 +a(g133807 +g133809 +S'even' +p133811 +tp133812 +a(g133809 +g133811 +S'so,' +p133813 +tp133814 +a(g133811 +g133813 +S'he' +p133815 +tp133816 +a(g133813 +g133815 +S'might' +p133817 +tp133818 +a(g133815 +g133817 +S'have' +p133819 +tp133820 +a(g133817 +g133819 +S'been' +p133821 +tp133822 +a(g133819 +g133821 +S'permitted' +p133823 +tp133824 +a(g133821 +g133823 +S'to' +p133825 +tp133826 +a(g133823 +g133825 +S'wear' +p133827 +tp133828 +a(g133825 +g133827 +S'the' +p133829 +tp133830 +a(g133827 +g133829 +S'prestigious' +p133831 +tp133832 +a(g133829 +g133831 +S'uniform' +p133833 +tp133834 +a(g133831 +g133833 +S'through' +p133835 +tp133836 +a(g133833 +g133835 +S'his' +p133837 +tp133838 +a(g133835 +g133837 +S'uncle’s' +p133839 +tp133840 +a(g133837 +g133839 +S'influence.' +p133841 +tp133842 +a(g133839 +g133841 +S'goya' +p133843 +tp133844 +a(g133841 +g133843 +S're-created' +p133845 +tp133846 +a(g133843 +g133845 +S'the' +p133847 +tp133848 +a(g133845 +g133847 +S'uniform’s' +p133849 +tp133850 +a(g133847 +g133849 +S'gold' +p133851 +tp133852 +a(g133849 +g133851 +S'braid' +p133853 +tp133854 +a(g133851 +g133853 +S'with' +p133855 +tp133856 +a(g133853 +g133855 +S'scintillating' +p133857 +tp133858 +a(g133855 +g133857 +S'flecks' +p133859 +tp133860 +a(g133857 +g133859 +S'and' +p133861 +tp133862 +a(g133859 +g133861 +S'daubs' +p133863 +tp133864 +a(g133861 +g133863 +S'of' +p133865 +tp133866 +a(g133863 +g133865 +S'this' +p133867 +tp133868 +a(g133865 +g133867 +S'picture' +p133869 +tp133870 +a(g133867 +g133869 +S'matches' +p133871 +tp133872 +a(g133869 +g133871 +S'a' +p133873 +tp133874 +a(g133871 +g133873 +S'companion' +p133875 +tp133876 +a(g133873 +g133875 +S'portrait' +p133877 +tp133878 +a(g133875 +g133877 +S'of' +p133879 +tp133880 +a(g133877 +g133879 +S'the' +p133881 +tp133882 +a(g133879 +g133881 +S'boy’s' +p133883 +tp133884 +a(g133881 +g133883 +S'uncle,' +p133885 +tp133886 +a(g133883 +g133885 +S'in' +p133887 +tp133888 +a(g133885 +g133887 +S'this' +p133889 +tp133890 +a(g133887 +g133889 +S'somber' +p133891 +tp133892 +a(g133889 +g133891 +S'still' +p133893 +tp133894 +a(g133891 +g133893 +S'life' +p133895 +tp133896 +a(g133893 +g133895 +S'of' +p133897 +tp133898 +a(g133895 +g133897 +S'a' +p133899 +tp133900 +a(g133897 +g133899 +S'cluttered' +p133901 +tp133902 +a(g133899 +g133901 +S'victorian' +p133903 +tp133904 +a(g133901 +g133903 +S'interior,' +p133905 +tp133906 +a(g133903 +g133905 +S'well-worn' +p133907 +tp133908 +a(g133905 +g133907 +S'yet' +p133909 +tp133910 +a(g133907 +g133909 +S'once-precious' +p133911 +tp133912 +a(g133909 +g133911 +S'objects' +p133913 +tp133914 +a(g133911 +g133913 +S'have' +p133915 +tp133916 +a(g133913 +g133915 +S'been' +p133917 +tp133918 +a(g133915 +g133917 +S'rendered' +p133919 +tp133920 +a(g133917 +g133919 +S'so' +p133921 +tp133922 +a(g133919 +g133921 +S'meticulously' +p133923 +tp133924 +a(g133921 +g133923 +S'that' +p133925 +tp133926 +a(g133923 +g133925 +S'the' +p133927 +tp133928 +a(g133925 +g133927 +S"artist's" +p133929 +tp133930 +a(g133927 +g133929 +S'brushstrokes' +p133931 +tp133932 +a(g133929 +g133931 +S'are' +p133933 +tp133934 +a(g133931 +g133933 +S'barely' +p133935 +tp133936 +a(g133933 +g133935 +S'discernible.' +p133937 +tp133938 +a(g133935 +g133937 +S"harnett's" +p133939 +tp133940 +a(g133937 +g133939 +S'exquisitely' +p133941 +tp133942 +a(g133939 +g133941 +S'subtle' +p133943 +tp133944 +a(g133941 +g133943 +S'tonal' +p133945 +tp133946 +a(g133943 +g133945 +S'modulations' +p133947 +tp133948 +a(g133945 +g133947 +S'and' +p133949 +tp133950 +a(g133947 +g133949 +S'his' +p133951 +tp133952 +a(g133949 +g133951 +S'ability' +p133953 +tp133954 +a(g133951 +g133953 +S'to' +p133955 +tp133956 +a(g133953 +g133955 +S'differentiate' +p133957 +tp133958 +a(g133955 +g133957 +S'textures' +p133959 +tp133960 +a(g133957 +g133959 +S'make' +p133961 +tp133962 +a(g133959 +g133961 +S'this' +p133963 +tp133964 +a(g133961 +g133963 +S'painting' +p133965 +tp133966 +a(g133963 +g133965 +S'a' +p133967 +tp133968 +a(g133965 +g133967 +S'tour-de-force' +p133969 +tp133970 +a(g133967 +g133969 +S'of' +p133971 +tp133972 +a(g133969 +g133971 +S'artistic' +p133973 +tp133974 +a(g133971 +g133973 +S'illusionism.' +p133975 +tp133976 +a(g133973 +g133975 +S'such' +p133977 +tp133978 +a(g133975 +g133977 +S'historically,' +p133979 +tp133980 +a(g133977 +g133979 +S'such' +p133981 +tp133982 +a(g133979 +g133981 +S'a' +p133983 +tp133984 +a(g133981 +g133983 +S'courbet' +p133985 +tp133986 +a(g133983 +g133985 +S'painted' +p133987 +tp133988 +a(g133985 +g133987 +S'events' +p133989 +tp133990 +a(g133987 +g133989 +S'and' +p133991 +tp133992 +a(g133989 +g133991 +S'scenery' +p133993 +tp133994 +a(g133991 +g133993 +S'primarily' +p133995 +tp133996 +a(g133993 +g133995 +S'from' +p133997 +tp133998 +a(g133995 +g133997 +S'his' +p133999 +tp134000 +a(g133997 +g133999 +S'native' +p134001 +tp134002 +a(g133999 +g134001 +S'ornans,' +p134003 +tp134004 +a(g134001 +g134003 +S'a' +p134005 +tp134006 +a(g134003 +g134005 +S'village' +p134007 +tp134008 +a(g134005 +g134007 +S'in' +p134009 +tp134010 +a(g134007 +g134009 +S'the' +p134011 +tp134012 +a(g134009 +g134011 +S'remote' +p134013 +tp134014 +a(g134011 +g134013 +S'franche-comté' +p134015 +tp134016 +a(g134013 +g134015 +S'region.' +p134017 +tp134018 +a(g134015 +g134017 +S'a' +p134019 +tp134020 +a(g134017 +g134019 +S'proponent' +p134021 +tp134022 +a(g134019 +g134021 +S'of' +p134023 +tp134024 +a(g134021 +g134023 +S'realism,' +p134025 +tp134026 +a(g134023 +g134025 +S'he' +p134027 +tp134028 +a(g134025 +g134027 +S'challenged' +p134029 +tp134030 +a(g134027 +g134029 +S'traditional' +p134031 +tp134032 +a(g134029 +g134031 +S'ideas' +p134033 +tp134034 +a(g134031 +g134033 +S'about' +p134035 +tp134036 +a(g134033 +g134035 +S'art' +p134037 +tp134038 +a(g134035 +g134037 +S'by' +p134039 +tp134040 +a(g134037 +g134039 +S'depicting' +p134041 +tp134042 +a(g134039 +g134041 +S'simple' +p134043 +tp134044 +a(g134041 +g134043 +S'peasants' +p134045 +tp134046 +a(g134043 +g134045 +S'and' +p134047 +tp134048 +a(g134045 +g134047 +S'rustic' +p134049 +tp134050 +a(g134047 +g134049 +S'scenery' +p134051 +tp134052 +a(g134049 +g134051 +S'with' +p134053 +tp134054 +a(g134051 +g134053 +S'dignity' +p134055 +tp134056 +a(g134053 +g134055 +S'and' +p134057 +tp134058 +a(g134055 +g134057 +S'on' +p134059 +tp134060 +a(g134057 +g134059 +S'the' +p134061 +tp134062 +a(g134059 +g134061 +S'grandscale' +p134063 +tp134064 +a(g134061 +g134063 +S'usually' +p134065 +tp134066 +a(g134063 +g134065 +S'reserved' +p134067 +tp134068 +a(g134065 +g134067 +S'for' +p134069 +tp134070 +a(g134067 +g134069 +S'history' +p134071 +tp134072 +a(g134069 +g134071 +S'paintings.' +p134073 +tp134074 +a(g134071 +g134073 +S'la' +p134075 +tp134076 +a(g134073 +g134075 +S'grotte' +p134077 +tp134078 +a(g134075 +g134077 +S'de' +p134079 +tp134080 +a(g134077 +g134079 +S'la' +p134081 +tp134082 +a(g134079 +g134081 +S'loue' +p134083 +tp134084 +a(g134081 +g134083 +S'the' +p134085 +tp134086 +a(g134083 +g134085 +S'subjects' +p134087 +tp134088 +a(g134085 +g134087 +S'of' +p134089 +tp134090 +a(g134087 +g134089 +S'these' +p134091 +tp134092 +a(g134089 +g134091 +S'gilt-bronze' +p134093 +tp134094 +a(g134091 +g134093 +S'andirons' +p134095 +tp134096 +a(g134093 +g134095 +S'create' +p134097 +tp134098 +a(g134095 +g134097 +S'visual' +p134099 +tp134100 +a(g134097 +g134099 +S'puns' +p134101 +tp134102 +a(g134099 +g134101 +S'on' +p134103 +tp134104 +a(g134101 +g134103 +S'the' +p134105 +tp134106 +a(g134103 +g134105 +S'english' +p134107 +tp134108 +a(g134105 +g134107 +S'synonym' +p134109 +tp134110 +a(g134107 +g134109 +S'firedogs' +p134111 +tp134112 +a(g134109 +g134111 +S'and' +p134113 +tp134114 +a(g134111 +g134113 +S'its' +p134115 +tp134116 +a(g134113 +g134115 +S'french' +p134117 +tp134118 +a(g134115 +g134117 +S'equivalent,' +p134119 +tp134120 +a(g134117 +g134119 +S'chenets.' +p134121 +tp134122 +a(g134119 +g134121 +S'presumably' +p134123 +tp134124 +a(g134121 +g134123 +S'made' +p134125 +tp134126 +a(g134123 +g134125 +S'for' +p134127 +tp134128 +a(g134125 +g134127 +S'a' +p134129 +tp134130 +a(g134127 +g134129 +S'hunting' +p134131 +tp134132 +a(g134129 +g134131 +S'lodge,' +p134133 +tp134134 +a(g134131 +g134133 +S'these' +p134135 +tp134136 +a(g134133 +g134135 +S'firedogs' +p134137 +tp134138 +a(g134135 +g134137 +S'depict' +p134139 +tp134140 +a(g134137 +g134139 +S'hounds' +p134141 +tp134142 +a(g134139 +g134141 +S'fighting' +p134143 +tp134144 +a(g134141 +g134143 +S'a' +p134145 +tp134146 +a(g134143 +g134145 +S'boar' +p134147 +tp134148 +a(g134145 +g134147 +S'and' +p134149 +tp134150 +a(g134147 +g134149 +S'a' +p134151 +tp134152 +a(g134149 +g134151 +S'wolf' +p134153 +tp134154 +a(g134151 +g134153 +S'who' +p134155 +tp134156 +a(g134153 +g134155 +S'both' +p134157 +tp134158 +a(g134155 +g134157 +S'have' +p134159 +tp134160 +a(g134157 +g134159 +S'already' +p134161 +tp134162 +a(g134159 +g134161 +S'killed' +p134163 +tp134164 +a(g134161 +g134163 +S'one' +p134165 +tp134166 +a(g134163 +g134165 +S'dog.' +p134167 +tp134168 +a(g134165 +g134167 +S'the' +p134169 +tp134170 +a(g134167 +g134169 +S'lively' +p134171 +tp134172 +a(g134169 +g134171 +S'sculpture' +p134173 +tp134174 +a(g134171 +g134173 +S'groups' +p134175 +tp134176 +a(g134173 +g134175 +S'appear' +p134177 +tp134178 +a(g134175 +g134177 +S'to' +p134179 +tp134180 +a(g134177 +g134179 +S'be' +p134181 +tp134182 +a(g134179 +g134181 +S'the' +p134183 +tp134184 +a(g134181 +g134183 +S'work' +p134185 +tp134186 +a(g134183 +g134185 +S'of' +p134187 +tp134188 +a(g134185 +g134187 +S'fantasy' +p134189 +tp134190 +a(g134187 +g134189 +S'marks' +p134191 +tp134192 +a(g134189 +g134191 +S'the' +p134193 +tp134194 +a(g134191 +g134193 +S'marble' +p134195 +tp134196 +a(g134193 +g134195 +S'chimneypiece' +p134197 +tp134198 +a(g134195 +g134197 +S'(cheminée),' +p134199 +tp134200 +a(g134197 +g134199 +S'carved' +p134201 +tp134202 +a(g134199 +g134201 +S'about' +p134203 +tp134204 +a(g134201 +g134203 +S'1750.' +p134205 +tp134206 +a(g134203 +g134205 +S'its' +p134207 +tp134208 +a(g134205 +g134207 +S'motifs' +p134209 +tp134210 +a(g134207 +g134209 +S'of' +p134211 +tp134212 +a(g134209 +g134211 +S'seashells' +p134213 +tp134214 +a(g134211 +g134213 +S'are' +p134215 +tp134216 +a(g134213 +g134215 +S'so' +p134217 +tp134218 +a(g134215 +g134217 +S'extravagantly' +p134219 +tp134220 +a(g134217 +g134219 +S'scalloped' +p134221 +tp134222 +a(g134219 +g134221 +S'that' +p134223 +tp134224 +a(g134221 +g134223 +S'they' +p134225 +tp134226 +a(g134223 +g134225 +S'dissolve' +p134227 +tp134228 +a(g134225 +g134227 +S'into' +p134229 +tp134230 +a(g134227 +g134229 +S'curves' +p134231 +tp134232 +a(g134229 +g134231 +S'purely' +p134233 +tp134234 +a(g134231 +g134233 +S'for' +p134235 +tp134236 +a(g134233 +g134235 +S'the' +p134237 +tp134238 +a(g134235 +g134237 +S'sake' +p134239 +tp134240 +a(g134237 +g134239 +S'of' +p134241 +tp134242 +a(g134239 +g134241 +S'curves.' +p134243 +tp134244 +a(g134241 +g134243 +S'the' +p134245 +tp134246 +a(g134243 +g134245 +S'relief' +p134247 +tp134248 +a(g134245 +g134247 +S'sculpture' +p134249 +tp134250 +a(g134247 +g134249 +S'of' +p134251 +tp134252 +a(g134249 +g134251 +S'the' +p134253 +tp134254 +a(g134251 +g134253 +S'cast-iron' +p134255 +tp134256 +a(g134253 +g134255 +S'fireback' +p134257 +tp134258 +a(g134255 +g134257 +S'is' +p134259 +tp134260 +a(g134257 +g134259 +S'cleverly' +p134261 +tp134262 +a(g134259 +g134261 +S'chosen' +p134263 +tp134264 +a(g134261 +g134263 +S'from' +p134265 +tp134266 +a(g134263 +g134265 +S'classical' +p134267 +tp134268 +a(g134265 +g134267 +S'mythology.' +p134269 +tp134270 +a(g134267 +g134269 +S'in' +p134271 +tp134272 +a(g134269 +g134271 +S'the' +p134273 +tp134274 +a(g134271 +g134273 +S'cavern' +p134275 +tp134276 +a(g134273 +g134275 +S'of' +p134277 +tp134278 +a(g134275 +g134277 +S'hades,' +p134279 +tp134280 +a(g134277 +g134279 +S'pluto' +p134281 +tp134282 +a(g134279 +g134281 +S'carries' +p134283 +tp134284 +a(g134281 +g134283 +S'his' +p134285 +tp134286 +a(g134283 +g134285 +S'two-pronged' +p134287 +tp134288 +a(g134285 +g134287 +S'poker' +p134289 +tp134290 +a(g134287 +g134289 +S'for' +p134291 +tp134292 +a(g134289 +g134291 +S'brimstone.' +p134293 +tp134294 +a(g134291 +g134293 +S'entertaining' +p134295 +tp134296 +a(g134293 +g134295 +S'him,' +p134297 +tp134298 +a(g134295 +g134297 +S'the' +p134299 +tp134300 +a(g134297 +g134299 +S'musician' +p134301 +tp134302 +a(g134299 +g134301 +S'orpheus' +p134303 +tp134304 +a(g134301 +g134303 +S'plays' +p134305 +tp134306 +a(g134303 +g134305 +S'bagpipes' +p134307 +tp134308 +a(g134305 +g134307 +S'in' +p134309 +tp134310 +a(g134307 +g134309 +S'an' +p134311 +tp134312 +a(g134309 +g134311 +S'attempt' +p134313 +tp134314 +a(g134311 +g134313 +S'to' +p134315 +tp134316 +a(g134313 +g134315 +S'reclaim' +p134317 +tp134318 +a(g134315 +g134317 +S'his' +p134319 +tp134320 +a(g134317 +g134319 +S'wife' +p134321 +tp134322 +a(g134319 +g134321 +S'eurydice' +p134323 +tp134324 +a(g134321 +g134323 +S'from' +p134325 +tp134326 +a(g134323 +g134325 +S'the' +p134327 +tp134328 +a(g134325 +g134327 +S'realm' +p134329 +tp134330 +a(g134327 +g134329 +S'of' +p134331 +tp134332 +a(g134329 +g134331 +S'the' +p134333 +tp134334 +a(g134331 +g134333 +S'dead.' +p134335 +tp134336 +a(g134333 +g134335 +S'behind' +p134337 +tp134338 +a(g134335 +g134337 +S'blazing' +p134339 +tp134340 +a(g134337 +g134339 +S'logs,' +p134341 +tp134342 +a(g134339 +g134341 +S'this' +p134343 +tp134344 +a(g134341 +g134343 +S'scene' +p134345 +tp134346 +a(g134343 +g134345 +S'would' +p134347 +tp134348 +a(g134345 +g134347 +S'take' +p134349 +tp134350 +a(g134347 +g134349 +S'place,' +p134351 +tp134352 +a(g134349 +g134351 +S'appropriately,' +p134353 +tp134354 +a(g134351 +g134353 +S'in' +p134355 +tp134356 +a(g134353 +g134355 +S'hellfire.' +p134357 +tp134358 +a(g134355 +g134357 +S'atop' +p134359 +tp134360 +a(g134357 +g134359 +S'the' +p134361 +tp134362 +a(g134359 +g134361 +S'mantel' +p134363 +tp134364 +a(g134361 +g134363 +S'is' +p134365 +tp134366 +a(g134363 +g134365 +S'a' +p134367 +tp134368 +a(g134365 +g134367 +S'charming' +p134369 +tp134370 +a(g134367 +g134369 +S'marble' +p134371 +tp134372 +a(g134369 +g134371 +S'statuette,' +p134373 +tp134374 +a(g134371 +g134373 +S'the' +p134375 +tp134376 +a(g134373 +g134375 +S'punishment' +p134377 +tp134378 +a(g134375 +g134377 +S'of' +p134379 +tp134380 +a(g134377 +g134379 +S'cupid,' +p134381 +tp134382 +a(g134379 +g134381 +S'a' +p134383 +tp134384 +a(g134381 +g134383 +S'highly' +p134385 +tp134386 +a(g134383 +g134385 +S'popular' +p134387 +tp134388 +a(g134385 +g134387 +S'design' +p134389 +tp134390 +a(g134387 +g134389 +S'by' +p134391 +tp134392 +a(g134389 +g134391 +S'the' +p134393 +tp134394 +a(g134391 +g134393 +S'mazziere' +p134395 +tp134396 +a(g134393 +g134395 +S'brothers' +p134397 +tp134398 +a(g134395 +g134397 +S'ran' +p134399 +tp134400 +a(g134397 +g134399 +S'a' +p134401 +tp134402 +a(g134399 +g134401 +S'significant' +p134403 +tp134404 +a(g134401 +g134403 +S'workshop' +p134405 +tp134406 +a(g134403 +g134405 +S'in' +p134407 +tp134408 +a(g134405 +g134407 +S'florence' +p134409 +tp134410 +a(g134407 +g134409 +S'in' +p134411 +tp134412 +a(g134409 +g134411 +S'the' +p134413 +tp134414 +a(g134411 +g134413 +S'late' +p134415 +tp134416 +a(g134413 +g134415 +S'fifteenth' +p134417 +tp134418 +a(g134415 +g134417 +S'and' +p134419 +tp134420 +a(g134417 +g134419 +S'early' +p134421 +tp134422 +a(g134419 +g134421 +S'sixteenth' +p134423 +tp134424 +a(g134421 +g134423 +S'centuries,' +p134425 +tp134426 +a(g134423 +g134425 +S'but' +p134427 +tp134428 +a(g134425 +g134427 +S'were' +p134429 +tp134430 +a(g134427 +g134429 +S'known' +p134431 +tp134432 +a(g134429 +g134431 +S'only' +p134433 +tp134434 +a(g134431 +g134433 +S'through' +p134435 +tp134436 +a(g134433 +g134435 +S'mentions' +p134437 +tp134438 +a(g134435 +g134437 +S'in' +p134439 +tp134440 +a(g134437 +g134439 +S'archives.' +p134441 +tp134442 +a(g134439 +g134441 +S'it' +p134443 +tp134444 +a(g134441 +g134443 +S'was' +p134445 +tp134446 +a(g134443 +g134445 +S'not' +p134447 +tp134448 +a(g134445 +g134447 +S'until' +p134449 +tp134450 +a(g134447 +g134449 +S'1988' +p134451 +tp134452 +a(g134449 +g134451 +S'that' +p134453 +tp134454 +a(g134451 +g134453 +S'scholars' +p134455 +tp134456 +a(g134453 +g134455 +S'were' +p134457 +tp134458 +a(g134455 +g134457 +S'able' +p134459 +tp134460 +a(g134457 +g134459 +S'to' +p134461 +tp134462 +a(g134459 +g134461 +S'link' +p134463 +tp134464 +a(g134461 +g134463 +S'them' +p134465 +tp134466 +a(g134463 +g134465 +S'with' +p134467 +tp134468 +a(g134465 +g134467 +S'actual' +p134469 +tp134470 +a(g134467 +g134469 +S'paintings' +p134471 +tp134472 +a(g134469 +g134471 +S'and' +p134473 +tp134474 +a(g134471 +g134473 +S'drawings,' +p134475 +tp134476 +a(g134473 +g134475 +S'which' +p134477 +tp134478 +a(g134475 +g134477 +S'up' +p134479 +tp134480 +a(g134477 +g134479 +S'to' +p134481 +tp134482 +a(g134479 +g134481 +S'that' +p134483 +tp134484 +a(g134481 +g134483 +S'time' +p134485 +tp134486 +a(g134483 +g134485 +S'had' +p134487 +tp134488 +a(g134485 +g134487 +S'been' +p134489 +tp134490 +a(g134487 +g134489 +S'assigned' +p134491 +tp134492 +a(g134489 +g134491 +S'to' +p134493 +tp134494 +a(g134491 +g134493 +S'an' +p134495 +tp134496 +a(g134493 +g134495 +S'unidentified' +p134497 +tp134498 +a(g134495 +g134497 +S'artist' +p134499 +tp134500 +a(g134497 +g134499 +S'called' +p134501 +tp134502 +a(g134499 +g134501 +S'the' +p134503 +tp134504 +a(g134501 +g134503 +S'"master' +p134505 +tp134506 +a(g134503 +g134505 +S'of' +p134507 +tp134508 +a(g134505 +g134507 +S'santo' +p134509 +tp134510 +a(g134507 +g134509 +S'spirito."' +p134511 +tp134512 +a(g134509 +g134511 +S'the' +p134513 +tp134514 +a(g134511 +g134513 +S'workshop' +p134515 +tp134516 +a(g134513 +g134515 +S'seems' +p134517 +tp134518 +a(g134515 +g134517 +S'to' +p134519 +tp134520 +a(g134517 +g134519 +S'have' +p134521 +tp134522 +a(g134519 +g134521 +S'eagerly' +p134523 +tp134524 +a(g134521 +g134523 +S'adopted' +p134525 +tp134526 +a(g134523 +g134525 +S'innovations—for' +p134527 +tp134528 +a(g134525 +g134527 +S'example,' +p134529 +tp134530 +a(g134527 +g134529 +S'this' +p134531 +tp134532 +a(g134529 +g134531 +S'sitter,' +p134533 +tp134534 +a(g134531 +g134533 +S'like' +p134535 +tp134536 +a(g134533 +g134535 +S'the' +p134537 +tp134538 +a(g134535 +g134537 +S'unidentified' +p134539 +tp134540 +a(g134537 +g134539 +S'youth' +p134541 +tp134542 +a(g134539 +g134541 +S'wears' +p134543 +tp134544 +a(g134541 +g134543 +S'a' +p134545 +tp134546 +a(g134543 +g134545 +S'tight-fitting' +p134547 +tp134548 +a(g134545 +g134547 +S'red' +p134549 +tp134550 +a(g134547 +g134549 +S'doublet' +p134551 +tp134552 +a(g134549 +g134551 +S'of' +p134553 +tp134554 +a(g134551 +g134553 +S'the' +p134555 +tp134556 +a(g134553 +g134555 +S'type' +p134557 +tp134558 +a(g134555 +g134557 +S'that' +p134559 +tp134560 +a(g134557 +g134559 +S'came' +p134561 +tp134562 +a(g134559 +g134561 +S'into' +p134563 +tp134564 +a(g134561 +g134563 +S'fashion' +p134565 +tp134566 +a(g134563 +g134565 +S'at' +p134567 +tp134568 +a(g134565 +g134567 +S'the' +p134569 +tp134570 +a(g134567 +g134569 +S'end' +p134571 +tp134572 +a(g134569 +g134571 +S'of' +p134573 +tp134574 +a(g134571 +g134573 +S'the' +p134575 +tp134576 +a(g134573 +g134575 +S'fifteenth' +p134577 +tp134578 +a(g134575 +g134577 +S'century.' +p134579 +tp134580 +a(g134577 +g134579 +S'the' +p134581 +tp134582 +a(g134579 +g134581 +S'slits' +p134583 +tp134584 +a(g134581 +g134583 +S'in' +p134585 +tp134586 +a(g134583 +g134585 +S'the' +p134587 +tp134588 +a(g134585 +g134587 +S'arms' +p134589 +tp134590 +a(g134587 +g134589 +S'of' +p134591 +tp134592 +a(g134589 +g134591 +S'this' +p134593 +tp134594 +a(g134591 +g134593 +S'doublet' +p134595 +tp134596 +a(g134593 +g134595 +S'not' +p134597 +tp134598 +a(g134595 +g134597 +S'only' +p134599 +tp134600 +a(g134597 +g134599 +S'show' +p134601 +tp134602 +a(g134599 +g134601 +S'off' +p134603 +tp134604 +a(g134601 +g134603 +S'the' +p134605 +tp134606 +a(g134603 +g134605 +S'fine' +p134607 +tp134608 +a(g134605 +g134607 +S'quality' +p134609 +tp134610 +a(g134607 +g134609 +S'of' +p134611 +tp134612 +a(g134609 +g134611 +S'the' +p134613 +tp134614 +a(g134611 +g134613 +S'young' +p134615 +tp134616 +a(g134613 +g134615 +S"man's" +p134617 +tp134618 +a(g134615 +g134617 +S'chemise,' +p134619 +tp134620 +a(g134617 +g134619 +S'but' +p134621 +tp134622 +a(g134619 +g134621 +S'they' +p134623 +tp134624 +a(g134621 +g134623 +S'were' +p134625 +tp134626 +a(g134623 +g134625 +S'also' +p134627 +tp134628 +a(g134625 +g134627 +S'probably' +p134629 +tp134630 +a(g134627 +g134629 +S'needed' +p134631 +tp134632 +a(g134629 +g134631 +S'for' +p134633 +tp134634 +a(g134631 +g134633 +S'full' +p134635 +tp134636 +a(g134633 +g134635 +S'range' +p134637 +tp134638 +a(g134635 +g134637 +S'of' +p134639 +tp134640 +a(g134637 +g134639 +S'motion.' +p134641 +tp134642 +a(g134639 +g134641 +S'much' +p134643 +tp134644 +a(g134641 +g134643 +S'of' +p134645 +tp134646 +a(g134643 +g134645 +S"florence's" +p134647 +tp134648 +a(g134645 +g134647 +S'wealth' +p134649 +tp134650 +a(g134647 +g134649 +S'was' +p134651 +tp134652 +a(g134649 +g134651 +S'based' +p134653 +tp134654 +a(g134651 +g134653 +S'on' +p134655 +tp134656 +a(g134653 +g134655 +S'textiles,' +p134657 +tp134658 +a(g134655 +g134657 +S'and' +p134659 +tp134660 +a(g134657 +g134659 +S'an' +p134661 +tp134662 +a(g134659 +g134661 +S'appreciation' +p134663 +tp134664 +a(g134661 +g134663 +S'for' +p134665 +tp134666 +a(g134663 +g134665 +S'fine' +p134667 +tp134668 +a(g134665 +g134667 +S'silk' +p134669 +tp134670 +a(g134667 +g134669 +S'and' +p134671 +tp134672 +a(g134669 +g134671 +S'woolen' +p134673 +tp134674 +a(g134671 +g134673 +S'cloth' +p134675 +tp134676 +a(g134673 +g134675 +S'was' +p134677 +tp134678 +a(g134675 +g134677 +S'regarded' +p134679 +tp134680 +a(g134677 +g134679 +S'as' +p134681 +tp134682 +a(g134679 +g134681 +S'something' +p134683 +tp134684 +a(g134681 +g134683 +S'of' +p134685 +tp134686 +a(g134683 +g134685 +S'a' +p134687 +tp134688 +a(g134685 +g134687 +S'florentine' +p134689 +tp134690 +a(g134687 +g134689 +S'birthright.' +p134691 +tp134692 +a(g134689 +g134691 +S'seven' +p134693 +tp134694 +a(g134691 +g134693 +S'guilds' +p134695 +tp134696 +a(g134693 +g134695 +S'oversaw' +p134697 +tp134698 +a(g134695 +g134697 +S'the' +p134699 +tp134700 +a(g134697 +g134699 +S'production' +p134701 +tp134702 +a(g134699 +g134701 +S'of' +p134703 +tp134704 +a(g134701 +g134703 +S'everything' +p134705 +tp134706 +a(g134703 +g134705 +S'from' +p134707 +tp134708 +a(g134705 +g134707 +S'wool' +p134709 +tp134710 +a(g134707 +g134709 +S'berets,' +p134711 +tp134712 +a(g134709 +g134711 +S'like' +p134713 +tp134714 +a(g134711 +g134713 +S'the' +p134715 +tp134716 +a(g134713 +g134715 +S'one' +p134717 +tp134718 +a(g134715 +g134717 +S'worn' +p134719 +tp134720 +a(g134717 +g134719 +S'by' +p134721 +tp134722 +a(g134719 +g134721 +S'the' +p134723 +tp134724 +a(g134721 +g134723 +S'youth' +p134725 +tp134726 +a(g134723 +g134725 +S'in' +p134727 +tp134728 +a(g134725 +g134727 +S'the' +p134729 +tp134730 +a(g134727 +g134729 +S'painting,' +p134731 +tp134732 +a(g134729 +g134731 +S'to' +p134733 +tp134734 +a(g134731 +g134733 +S'shoe' +p134735 +tp134736 +a(g134733 +g134735 +S'soles.' +p134737 +tp134738 +a(g134735 +g134737 +S'it' +p134739 +tp134740 +a(g134737 +g134739 +S'has' +p134741 +tp134742 +a(g134739 +g134741 +S'been' +p134743 +tp134744 +a(g134741 +g134743 +S'estimated' +p134745 +tp134746 +a(g134743 +g134745 +S'that' +p134747 +tp134748 +a(g134745 +g134747 +S'a' +p134749 +tp134750 +a(g134747 +g134749 +S'weaver' +p134751 +tp134752 +a(g134749 +g134751 +S'of' +p134753 +tp134754 +a(g134751 +g134753 +S'brocaded' +p134755 +tp134756 +a(g134753 +g134755 +S'velvets,' +p134757 +tp134758 +a(g134755 +g134757 +S'the' +p134759 +tp134760 +a(g134757 +g134759 +S'most' +p134761 +tp134762 +a(g134759 +g134761 +S'luxurious' +p134763 +tp134764 +a(g134761 +g134763 +S'fabric' +p134765 +tp134766 +a(g134763 +g134765 +S'available,' +p134767 +tp134768 +a(g134765 +g134767 +S'earned' +p134769 +tp134770 +a(g134767 +g134769 +S'more' +p134771 +tp134772 +a(g134769 +g134771 +S'in' +p134773 +tp134774 +a(g134771 +g134773 +S'a' +p134775 +tp134776 +a(g134773 +g134775 +S'year' +p134777 +tp134778 +a(g134775 +g134777 +S'than' +p134779 +tp134780 +a(g134777 +g134779 +S'the' +p134781 +tp134782 +a(g134779 +g134781 +S'architect' +p134783 +tp134784 +a(g134781 +g134783 +S'brunelleschi,' +p134785 +tp134786 +a(g134783 +g134785 +S'who' +p134787 +tp134788 +a(g134785 +g134787 +S'designed' +p134789 +tp134790 +a(g134787 +g134789 +S'the' +p134791 +tp134792 +a(g134789 +g134791 +S'dome' +p134793 +tp134794 +a(g134791 +g134793 +S'for' +p134795 +tp134796 +a(g134793 +g134795 +S"florence's" +p134797 +tp134798 +a(g134795 +g134797 +S'cathedral.' +p134799 +tp134800 +a(g134797 +g134799 +S'the' +p134801 +tp134802 +a(g134799 +g134801 +S'color' +p134803 +tp134804 +a(g134801 +g134803 +S'red,' +p134805 +tp134806 +a(g134803 +g134805 +S'used' +p134807 +tp134808 +a(g134805 +g134807 +S'for' +p134809 +tp134810 +a(g134807 +g134809 +S'some' +p134811 +tp134812 +a(g134809 +g134811 +S'official' +p134813 +tp134814 +a(g134811 +g134813 +S'garments' +p134815 +tp134816 +a(g134813 +g134815 +S'in' +p134817 +tp134818 +a(g134815 +g134817 +S'florence,' +p134819 +tp134820 +a(g134817 +g134819 +S'was' +p134821 +tp134822 +a(g134819 +g134821 +S'produced' +p134823 +tp134824 +a(g134821 +g134823 +S'by' +p134825 +tp134826 +a(g134823 +g134825 +S'a' +p134827 +tp134828 +a(g134825 +g134827 +S'range' +p134829 +tp134830 +a(g134827 +g134829 +S'of' +p134831 +tp134832 +a(g134829 +g134831 +S'dyes.' +p134833 +tp134834 +a(g134831 +g134833 +S'the' +p134835 +tp134836 +a(g134833 +g134835 +S'most' +p134837 +tp134838 +a(g134835 +g134837 +S'expensive' +p134839 +tp134840 +a(g134837 +g134839 +S'red' +p134841 +tp134842 +a(g134839 +g134841 +S'cloth,' +p134843 +tp134844 +a(g134841 +g134843 +S'a' +p134845 +tp134846 +a(g134843 +g134845 +S'note' +p134847 +tp134848 +a(g134845 +g134847 +S'of' +p134849 +tp134850 +a(g134847 +g134849 +S'ambiguity' +p134851 +tp134852 +a(g134849 +g134851 +S'or' +p134853 +tp134854 +a(g134851 +g134853 +S'unease' +p134855 +tp134856 +a(g134853 +g134855 +S'often' +p134857 +tp134858 +a(g134855 +g134857 +S'gives' +p134859 +tp134860 +a(g134857 +g134859 +S'a' +p134861 +tp134862 +a(g134859 +g134861 +S'piquant' +p134863 +tp134864 +a(g134861 +g134863 +S'quality' +p134865 +tp134866 +a(g134863 +g134865 +S'to' +p134867 +tp134868 +a(g134865 +g134867 +S'german' +p134869 +tp134870 +a(g134867 +g134869 +S'adaptations' +p134871 +tp134872 +a(g134869 +g134871 +S'of' +p134873 +tp134874 +a(g134871 +g134873 +S'the' +p134875 +tp134876 +a(g134873 +g134875 +S'renaissance' +p134877 +tp134878 +a(g134875 +g134877 +S'ideal.' +p134879 +tp134880 +a(g134877 +g134879 +S"cranach's" +p134881 +tp134882 +a(g134879 +g134881 +S'painting' +p134883 +tp134884 +a(g134881 +g134883 +S'of' +p134885 +tp134886 +a(g134883 +g134885 +S'a' +p134887 +tp134888 +a(g134885 +g134887 +S'classical' +p134889 +tp134890 +a(g134887 +g134889 +S'nymph' +p134891 +tp134892 +a(g134889 +g134891 +S'represents' +p134893 +tp134894 +a(g134891 +g134893 +S'an' +p134895 +tp134896 +a(g134893 +g134895 +S'italian' +p134897 +tp134898 +a(g134895 +g134897 +S'theme' +p134899 +tp134900 +a(g134897 +g134899 +S'but' +p134901 +tp134902 +a(g134899 +g134901 +S'gives' +p134903 +tp134904 +a(g134901 +g134903 +S'it' +p134905 +tp134906 +a(g134903 +g134905 +S'a' +p134907 +tp134908 +a(g134905 +g134907 +S'moralizing' +p134909 +tp134910 +a(g134907 +g134909 +S'twist' +p134911 +tp134912 +a(g134909 +g134911 +S'common' +p134913 +tp134914 +a(g134911 +g134913 +S'to' +p134915 +tp134916 +a(g134913 +g134915 +S'late' +p134917 +tp134918 +a(g134915 +g134917 +S'gothic' +p134919 +tp134920 +a(g134917 +g134919 +S'courtly' +p134921 +tp134922 +a(g134919 +g134921 +S'and' +p134923 +tp134924 +a(g134921 +g134923 +S'amorous' +p134925 +tp134926 +a(g134923 +g134925 +S'subjects.' +p134927 +tp134928 +a(g134925 +g134927 +S'the' +p134929 +tp134930 +a(g134927 +g134929 +S'nymph' +p134931 +tp134932 +a(g134929 +g134931 +S'reclines' +p134933 +tp134934 +a(g134931 +g134933 +S'beside' +p134935 +tp134936 +a(g134933 +g134935 +S'a' +p134937 +tp134938 +a(g134935 +g134937 +S'spring,' +p134939 +tp134940 +a(g134937 +g134939 +S'perhaps' +p134941 +tp134942 +a(g134939 +g134941 +S'a' +p134943 +tp134944 +a(g134941 +g134943 +S'reference' +p134945 +tp134946 +a(g134943 +g134945 +S'to' +p134947 +tp134948 +a(g134945 +g134947 +S'a' +p134949 +tp134950 +a(g134947 +g134949 +S'legendary' +p134951 +tp134952 +a(g134949 +g134951 +S'ancient' +p134953 +tp134954 +a(g134951 +g134953 +S'roman' +p134955 +tp134956 +a(g134953 +g134955 +S'fountain' +p134957 +tp134958 +a(g134955 +g134957 +S'with' +p134959 +tp134960 +a(g134957 +g134959 +S'which' +p134961 +tp134962 +a(g134959 +g134961 +S'a' +p134963 +tp134964 +a(g134961 +g134963 +S'latin' +p134965 +tp134966 +a(g134963 +g134965 +S'verse' +p134967 +tp134968 +a(g134965 +g134967 +S'was' +p134969 +tp134970 +a(g134967 +g134969 +S'associated.' +p134971 +tp134972 +a(g134969 +g134971 +S'the' +p134973 +tp134974 +a(g134971 +g134973 +S'text' +p134975 +tp134976 +a(g134973 +g134975 +S'was' +p134977 +tp134978 +a(g134975 +g134977 +S'translated' +p134979 +tp134980 +a(g134977 +g134979 +S'by' +p134981 +tp134982 +a(g134979 +g134981 +S'alexander' +p134983 +tp134984 +a(g134981 +g134983 +S'pope' +p134985 +tp134986 +a(g134983 +g134985 +S'in' +p134987 +tp134988 +a(g134985 +g134987 +S'1725:' +p134989 +tp134990 +a(g134987 +g134989 +S'the' +p134991 +tp134992 +a(g134989 +g134991 +S'inscription' +p134993 +tp134994 +a(g134991 +g134993 +S'on' +p134995 +tp134996 +a(g134993 +g134995 +S'this' +p134997 +tp134998 +a(g134995 +g134997 +S'painting' +p134999 +tp135000 +a(g134997 +g134999 +S'--' +p135001 +tp135002 +a(g134999 +g135001 +S'lady' +p135003 +tp135004 +a(g135001 +g135003 +S'with' +p135005 +tp135006 +a(g135003 +g135005 +S'a' +p135007 +tp135008 +a(g135005 +g135007 +S'fan' +p135009 +tp135010 +a(g135007 +g135009 +S'about' +p135011 +tp135012 +a(g135009 +g135011 +S'340' +p135013 +tp135014 +a(g135011 +g135013 +S'b.c.,' +p135015 +tp135016 +a(g135013 +g135015 +S'the' +p135017 +tp135018 +a(g135015 +g135017 +S'cities' +p135019 +tp135020 +a(g135017 +g135019 +S'of' +p135021 +tp135022 +a(g135019 +g135021 +S'southern' +p135023 +tp135024 +a(g135021 +g135023 +S'italy' +p135025 +tp135026 +a(g135023 +g135025 +S'revolted' +p135027 +tp135028 +a(g135025 +g135027 +S'against' +p135029 +tp135030 +a(g135027 +g135029 +S'the' +p135031 +tp135032 +a(g135029 +g135031 +S'authority' +p135033 +tp135034 +a(g135031 +g135033 +S'of' +p135035 +tp135036 +a(g135033 +g135035 +S'rome.' +p135037 +tp135038 +a(g135035 +g135037 +S'at' +p135039 +tp135040 +a(g135037 +g135039 +S'their' +p135041 +tp135042 +a(g135039 +g135041 +S'camp' +p135043 +tp135044 +a(g135041 +g135043 +S'near' +p135045 +tp135046 +a(g135043 +g135045 +S'naples,' +p135047 +tp135048 +a(g135045 +g135047 +S'the' +p135049 +tp135050 +a(g135047 +g135049 +S'roman' +p135051 +tp135052 +a(g135049 +g135051 +S'leaders' +p135053 +tp135054 +a(g135051 +g135053 +S'were' +p135055 +tp135056 +a(g135053 +g135055 +S'visited' +p135057 +tp135058 +a(g135055 +g135057 +S'by' +p135059 +tp135060 +a(g135057 +g135059 +S'a' +p135061 +tp135062 +a(g135059 +g135061 +S'divine' +p135063 +tp135064 +a(g135061 +g135063 +S'apparition' +p135065 +tp135066 +a(g135063 +g135065 +S'who' +p135067 +tp135068 +a(g135065 +g135067 +S'declared' +p135069 +tp135070 +a(g135067 +g135069 +S'that' +p135071 +tp135072 +a(g135069 +g135071 +S'the' +p135073 +tp135074 +a(g135071 +g135073 +S'army' +p135075 +tp135076 +a(g135073 +g135075 +S'of' +p135077 +tp135078 +a(g135075 +g135077 +S'one' +p135079 +tp135080 +a(g135077 +g135079 +S'side' +p135081 +tp135082 +a(g135079 +g135081 +S'and' +p135083 +tp135084 +a(g135081 +g135083 +S'the' +p135085 +tp135086 +a(g135083 +g135085 +S'commander' +p135087 +tp135088 +a(g135085 +g135087 +S'of' +p135089 +tp135090 +a(g135087 +g135089 +S'the' +p135091 +tp135092 +a(g135089 +g135091 +S'other' +p135093 +tp135094 +a(g135091 +g135093 +S'must' +p135095 +tp135096 +a(g135093 +g135095 +S'be' +p135097 +tp135098 +a(g135095 +g135097 +S'sacrificed' +p135099 +tp135100 +a(g135097 +g135099 +S'to' +p135101 +tp135102 +a(g135099 +g135101 +S'the' +p135103 +tp135104 +a(g135101 +g135103 +S'underworld.' +p135105 +tp135106 +a(g135103 +g135105 +S'the' +p135107 +tp135108 +a(g135105 +g135107 +S'prophecy' +p135109 +tp135110 +a(g135107 +g135109 +S'meant' +p135111 +tp135112 +a(g135109 +g135111 +S'that' +p135113 +tp135114 +a(g135111 +g135113 +S'the' +p135115 +tp135116 +a(g135113 +g135115 +S'side' +p135117 +tp135118 +a(g135115 +g135117 +S'that' +p135119 +tp135120 +a(g135117 +g135119 +S'lost' +p135121 +tp135122 +a(g135119 +g135121 +S'its' +p135123 +tp135124 +a(g135121 +g135123 +S'general' +p135125 +tp135126 +a(g135123 +g135125 +S'would' +p135127 +tp135128 +a(g135125 +g135127 +S'be' +p135129 +tp135130 +a(g135127 +g135129 +S'victorious.' +p135131 +tp135132 +a(g135129 +g135131 +S'here' +p135133 +tp135134 +a(g135131 +g135133 +S'decius' +p135135 +tp135136 +a(g135133 +g135135 +S'mus,' +p135137 +tp135138 +a(g135135 +g135137 +S'standing' +p135139 +tp135140 +a(g135137 +g135139 +S'on' +p135141 +tp135142 +a(g135139 +g135141 +S'a' +p135143 +tp135144 +a(g135141 +g135143 +S'dais,' +p135145 +tp135146 +a(g135143 +g135145 +S'tells' +p135147 +tp135148 +a(g135145 +g135147 +S'his' +p135149 +tp135150 +a(g135147 +g135149 +S'troops' +p135151 +tp135152 +a(g135149 +g135151 +S'that,' +p135153 +tp135154 +a(g135151 +g135153 +S'for' +p135155 +tp135156 +a(g135153 +g135155 +S'the' +p135157 +tp135158 +a(g135155 +g135157 +S'sake' +p135159 +tp135160 +a(g135157 +g135159 +S'of' +p135161 +tp135162 +a(g135159 +g135161 +S'roman' +p135163 +tp135164 +a(g135161 +g135163 +S'victory,' +p135165 +tp135166 +a(g135163 +g135165 +S'he' +p135167 +tp135168 +a(g135165 +g135167 +S'would' +p135169 +tp135170 +a(g135167 +g135169 +S'allow' +p135171 +tp135172 +a(g135169 +g135171 +S'himself' +p135173 +tp135174 +a(g135171 +g135173 +S'to' +p135175 +tp135176 +a(g135173 +g135175 +S'be' +p135177 +tp135178 +a(g135175 +g135177 +S'killed.' +p135179 +tp135180 +a(g135177 +g135179 +S'symbolizing' +p135181 +tp135182 +a(g135179 +g135181 +S'jupiter,' +p135183 +tp135184 +a(g135181 +g135183 +S'the' +p135185 +tp135186 +a(g135183 +g135185 +S'roman' +p135187 +tp135188 +a(g135185 +g135187 +S'king' +p135189 +tp135190 +a(g135187 +g135189 +S'of' +p135191 +tp135192 +a(g135189 +g135191 +S'the' +p135193 +tp135194 +a(g135191 +g135193 +S'gods,' +p135195 +tp135196 +a(g135193 +g135195 +S'a' +p135197 +tp135198 +a(g135195 +g135197 +S'mighty' +p135199 +tp135200 +a(g135197 +g135199 +S'eagle' +p135201 +tp135202 +a(g135199 +g135201 +S'clutches' +p135203 +tp135204 +a(g135201 +g135203 +S'lightning' +p135205 +tp135206 +a(g135203 +g135205 +S'bolts' +p135207 +tp135208 +a(g135205 +g135207 +S'in' +p135209 +tp135210 +a(g135207 +g135209 +S'its' +p135211 +tp135212 +a(g135209 +g135211 +S'talons' +p135213 +tp135214 +a(g135211 +g135213 +S'and' +p135215 +tp135216 +a(g135213 +g135215 +S'hovers' +p135217 +tp135218 +a(g135215 +g135217 +S'behind' +p135219 +tp135220 +a(g135217 +g135219 +S'decius' +p135221 +tp135222 +a(g135219 +g135221 +S'mus.' +p135223 +tp135224 +a(g135221 +g135223 +S'rubens' +p135225 +tp135226 +a(g135223 +g135225 +S'derived' +p135227 +tp135228 +a(g135225 +g135227 +S'the' +p135229 +tp135230 +a(g135227 +g135229 +S"soldiers'" +p135231 +tp135232 +a(g135229 +g135231 +S'armor,' +p135233 +tp135234 +a(g135231 +g135233 +S'helmets,' +p135235 +tp135236 +a(g135233 +g135235 +S'shields,' +p135237 +tp135238 +a(g135235 +g135237 +S'and' +p135239 +tp135240 +a(g135237 +g135239 +S'military' +p135241 +tp135242 +a(g135239 +g135241 +S'standards' +p135243 +tp135244 +a(g135241 +g135243 +S'from' +p135245 +tp135246 +a(g135243 +g135245 +S'ancient' +p135247 +tp135248 +a(g135245 +g135247 +S'roman' +p135249 +tp135250 +a(g135247 +g135249 +S'sculpture.' +p135251 +tp135252 +a(g135249 +g135251 +S'the' +p135253 +tp135254 +a(g135251 +g135253 +S'whole' +p135255 +tp135256 +a(g135253 +g135255 +S'composition,' +p135257 +tp135258 +a(g135255 +g135257 +S'in' +p135259 +tp135260 +a(g135257 +g135259 +S'fact,' +p135261 +tp135262 +a(g135259 +g135261 +S'with' +p135263 +tp135264 +a(g135261 +g135263 +S'its' +p135265 +tp135266 +a(g135263 +g135265 +S'large' +p135267 +tp135268 +a(g135265 +g135267 +S'figures' +p135269 +tp135270 +a(g135267 +g135269 +S'silhouetted' +p135271 +tp135272 +a(g135269 +g135271 +S'in' +p135273 +tp135274 +a(g135271 +g135273 +S'the' +p135275 +tp135276 +a(g135273 +g135275 +S'foreground,' +p135277 +tp135278 +a(g135275 +g135277 +S'recalls' +p135279 +tp135280 +a(g135277 +g135279 +S'the' +p135281 +tp135282 +a(g135279 +g135281 +S'appearance' +p135283 +tp135284 +a(g135281 +g135283 +S'of' +p135285 +tp135286 +a(g135283 +g135285 +S'bas-reliefs' +p135287 +tp135288 +a(g135285 +g135287 +S'carved' +p135289 +tp135290 +a(g135287 +g135289 +S'on' +p135291 +tp135292 +a(g135289 +g135291 +S'roman' +p135293 +tp135294 +a(g135291 +g135293 +S'victory' +p135295 +tp135296 +a(g135293 +g135295 +S'monuments.' +p135297 +tp135298 +a(g135295 +g135297 +S'the' +p135299 +tp135300 +a(g135297 +g135299 +S'subject' +p135301 +tp135302 +a(g135299 +g135301 +S'is' +p135303 +tp135304 +a(g135301 +g135303 +S'the' +p135305 +tp135306 +a(g135303 +g135305 +S'first' +p135307 +tp135308 +a(g135305 +g135307 +S'in' +p135309 +tp135310 +a(g135307 +g135309 +S'a' +p135311 +tp135312 +a(g135309 +g135311 +S'series' +p135313 +tp135314 +a(g135311 +g135313 +S'of' +p135315 +tp135316 +a(g135313 +g135315 +S'eight' +p135317 +tp135318 +a(g135315 +g135317 +S'tapestry' +p135319 +tp135320 +a(g135317 +g135319 +S'designs' +p135321 +tp135322 +a(g135319 +g135321 +S'on' +p135323 +tp135324 +a(g135321 +g135323 +S'the' +p135325 +tp135326 +a(g135323 +g135325 +S'theme' +p135327 +tp135328 +a(g135325 +g135327 +S'of' +p135329 +tp135330 +a(g135327 +g135329 +S'decius' +p135331 +tp135332 +a(g135329 +g135331 +S'mus,' +p135333 +tp135334 +a(g135331 +g135333 +S'which' +p135335 +tp135336 +a(g135333 +g135335 +S'rubens' +p135337 +tp135338 +a(g135335 +g135337 +S'completed' +p135339 +tp135340 +a(g135337 +g135339 +S'for' +p135341 +tp135342 +a(g135339 +g135341 +S'a' +p135343 +tp135344 +a(g135341 +g135343 +S'genoese' +p135345 +tp135346 +a(g135343 +g135345 +S'patron.' +p135347 +tp135348 +a(g135345 +g135347 +S'the' +p135349 +tp135350 +a(g135347 +g135349 +S'panel' +p135351 +tp135352 +a(g135349 +g135351 +S'is' +p135353 +tp135354 +a(g135351 +g135353 +S'a' +p135355 +tp135356 +a(g135353 +g135355 +S'small' +p135357 +tp135358 +a(g135355 +g135357 +S'model,' +p135359 +tp135360 +a(g135357 +g135359 +S'that' +p135361 +tp135362 +a(g135359 +g135361 +S'was' +p135363 +tp135364 +a(g135361 +g135363 +S'enlarged' +p135365 +tp135366 +a(g135363 +g135365 +S'by' +p135367 +tp135368 +a(g135365 +g135367 +S'workshop' +p135369 +tp135370 +a(g135367 +g135369 +S'assistants' +p135371 +tp135372 +a(g135369 +g135371 +S'into' +p135373 +tp135374 +a(g135371 +g135373 +S'the' +p135375 +tp135376 +a(g135373 +g135375 +S'full-size' +p135377 +tp135378 +a(g135375 +g135377 +S'picture,' +p135379 +tp135380 +a(g135377 +g135379 +S'called' +p135381 +tp135382 +a(g135379 +g135381 +S'a' +p135383 +tp135384 +a(g135381 +g135383 +S'cartoon,' +p135385 +tp135386 +a(g135383 +g135385 +S'that' +p135387 +tp135388 +a(g135385 +g135387 +S'was' +p135389 +tp135390 +a(g135387 +g135389 +S'sent' +p135391 +tp135392 +a(g135389 +g135391 +S'to' +p135393 +tp135394 +a(g135391 +g135393 +S'weavers' +p135395 +tp135396 +a(g135393 +g135395 +S'in' +p135397 +tp135398 +a(g135395 +g135397 +S'brussels.' +p135399 +tp135400 +a(g135397 +g135399 +S'in' +p135401 +tp135402 +a(g135399 +g135401 +S'this' +p135403 +tp135404 +a(g135401 +g135403 +S'tempestuous' +p135405 +tp135406 +a(g135403 +g135405 +S'scene,' +p135407 +tp135408 +a(g135405 +g135407 +S'el' +p135409 +tp135410 +a(g135407 +g135409 +S'greco' +p135411 +tp135412 +a(g135409 +g135411 +S'depicted' +p135413 +tp135414 +a(g135411 +g135413 +S'an' +p135415 +tp135416 +a(g135413 +g135415 +S'angry' +p135417 +tp135418 +a(g135415 +g135417 +S'christ' +p135419 +tp135420 +a(g135417 +g135419 +S'driving' +p135421 +tp135422 +a(g135419 +g135421 +S'the' +p135423 +tp135424 +a(g135421 +g135423 +S'moneychangers' +p135425 +tp135426 +a(g135423 +g135425 +S'from' +p135427 +tp135428 +a(g135425 +g135427 +S'the' +p135429 +tp135430 +a(g135427 +g135429 +S'temple.' +p135431 +tp135432 +a(g135429 +g135431 +S'an' +p135433 +tp135434 +a(g135431 +g135433 +S'uncommon' +p135435 +tp135436 +a(g135433 +g135435 +S'theme,' +p135437 +tp135438 +a(g135435 +g135437 +S'it' +p135439 +tp135440 +a(g135437 +g135439 +S'became' +p135441 +tp135442 +a(g135439 +g135441 +S'increasingly' +p135443 +tp135444 +a(g135441 +g135443 +S'popular' +p135445 +tp135446 +a(g135443 +g135445 +S'in' +p135447 +tp135448 +a(g135445 +g135447 +S'the' +p135449 +tp135450 +a(g135447 +g135449 +S'latter' +p135451 +tp135452 +a(g135449 +g135451 +S'half' +p135453 +tp135454 +a(g135451 +g135453 +S'of' +p135455 +tp135456 +a(g135453 +g135455 +S'the' +p135457 +tp135458 +a(g135455 +g135457 +S'sixteenth' +p135459 +tp135460 +a(g135457 +g135459 +S'century,' +p135461 +tp135462 +a(g135459 +g135461 +S'promoted' +p135463 +tp135464 +a(g135461 +g135463 +S'by' +p135465 +tp135466 +a(g135463 +g135465 +S'the' +p135467 +tp135468 +a(g135465 +g135467 +S'council' +p135469 +tp135470 +a(g135467 +g135469 +S'of' +p135471 +tp135472 +a(g135469 +g135471 +S'trent' +p135473 +tp135474 +a(g135471 +g135473 +S'as' +p135475 +tp135476 +a(g135473 +g135475 +S'a' +p135477 +tp135478 +a(g135475 +g135477 +S'symbol' +p135479 +tp135480 +a(g135477 +g135479 +S'of' +p135481 +tp135482 +a(g135479 +g135481 +S'the' +p135483 +tp135484 +a(g135481 +g135483 +S'catholic' +p135485 +tp135486 +a(g135483 +g135485 +S"church's" +p135487 +tp135488 +a(g135485 +g135487 +S'attempt' +p135489 +tp135490 +a(g135487 +g135489 +S'to' +p135491 +tp135492 +a(g135489 +g135491 +S'purify' +p135493 +tp135494 +a(g135491 +g135493 +S'itself' +p135495 +tp135496 +a(g135493 +g135495 +S'after' +p135497 +tp135498 +a(g135495 +g135497 +S'the' +p135499 +tp135500 +a(g135497 +g135499 +S'protestant' +p135501 +tp135502 +a(g135499 +g135501 +S'reformation.' +p135503 +tp135504 +a(g135501 +g135503 +S'here' +p135505 +tp135506 +a(g135503 +g135505 +S'el' +p135507 +tp135508 +a(g135505 +g135507 +S'greco' +p135509 +tp135510 +a(g135507 +g135509 +S'portrayed' +p135511 +tp135512 +a(g135509 +g135511 +S'partially' +p135513 +tp135514 +a(g135511 +g135513 +S'draped' +p135515 +tp135516 +a(g135513 +g135515 +S'women' +p135517 +tp135518 +a(g135515 +g135517 +S'and' +p135519 +tp135520 +a(g135517 +g135519 +S'bare-chested' +p135521 +tp135522 +a(g135519 +g135521 +S'men' +p135523 +tp135524 +a(g135521 +g135523 +S'writhing' +p135525 +tp135526 +a(g135523 +g135525 +S'and' +p135527 +tp135528 +a(g135525 +g135527 +S'twisting' +p135529 +tp135530 +a(g135527 +g135529 +S'to' +p135531 +tp135532 +a(g135529 +g135531 +S'escape' +p135533 +tp135534 +a(g135531 +g135533 +S'the' +p135535 +tp135536 +a(g135533 +g135535 +S'blows' +p135537 +tp135538 +a(g135535 +g135537 +S'of' +p135539 +tp135540 +a(g135537 +g135539 +S"christ's" +p135541 +tp135542 +a(g135539 +g135541 +S'scourge,' +p135543 +tp135544 +a(g135541 +g135543 +S'emphasizing' +p135545 +tp135546 +a(g135543 +g135545 +S'the' +p135547 +tp135548 +a(g135545 +g135547 +S'agitation' +p135549 +tp135550 +a(g135547 +g135549 +S'of' +p135551 +tp135552 +a(g135549 +g135551 +S'the' +p135553 +tp135554 +a(g135551 +g135553 +S'participants' +p135555 +tp135556 +a(g135553 +g135555 +S'and' +p135557 +tp135558 +a(g135555 +g135557 +S'exaggerating' +p135559 +tp135560 +a(g135557 +g135559 +S'their' +p135561 +tp135562 +a(g135559 +g135561 +S'irreverence.' +p135563 +tp135564 +a(g135561 +g135563 +S'the' +p135565 +tp135566 +a(g135563 +g135565 +S'setting' +p135567 +tp135568 +a(g135565 +g135567 +S'is' +p135569 +tp135570 +a(g135567 +g135569 +S'one' +p135571 +tp135572 +a(g135569 +g135571 +S'of' +p135573 +tp135574 +a(g135571 +g135573 +S'classical' +p135575 +tp135576 +a(g135573 +g135575 +S'grandeur,' +p135577 +tp135578 +a(g135575 +g135577 +S'more' +p135579 +tp135580 +a(g135577 +g135579 +S'reminiscent' +p135581 +tp135582 +a(g135579 +g135581 +S'of' +p135583 +tp135584 +a(g135581 +g135583 +S'an' +p135585 +tp135586 +a(g135583 +g135585 +S'italian' +p135587 +tp135588 +a(g135585 +g135587 +S'renaissance' +p135589 +tp135590 +a(g135587 +g135589 +S'palace' +p135591 +tp135592 +a(g135589 +g135591 +S'than' +p135593 +tp135594 +a(g135591 +g135593 +S'of' +p135595 +tp135596 +a(g135593 +g135595 +S'the' +p135597 +tp135598 +a(g135595 +g135597 +S'sacred' +p135599 +tp135600 +a(g135597 +g135599 +S'precincts' +p135601 +tp135602 +a(g135599 +g135601 +S'of' +p135603 +tp135604 +a(g135601 +g135603 +S'the' +p135605 +tp135606 +a(g135603 +g135605 +S'temple' +p135607 +tp135608 +a(g135605 +g135607 +S'in' +p135609 +tp135610 +a(g135607 +g135609 +S'jerusalem.' +p135611 +tp135612 +a(g135609 +g135611 +S'this' +p135613 +tp135614 +a(g135611 +g135613 +S'panel' +p135615 +tp135616 +a(g135613 +g135615 +S'was' +p135617 +tp135618 +a(g135615 +g135617 +S'painted' +p135619 +tp135620 +a(g135617 +g135619 +S'in' +p135621 +tp135622 +a(g135619 +g135621 +S'venice' +p135623 +tp135624 +a(g135621 +g135623 +S'before' +p135625 +tp135626 +a(g135623 +g135625 +S'el' +p135627 +tp135628 +a(g135625 +g135627 +S'greco' +p135629 +tp135630 +a(g135627 +g135629 +S'made' +p135631 +tp135632 +a(g135629 +g135631 +S'his' +p135633 +tp135634 +a(g135631 +g135633 +S'way' +p135635 +tp135636 +a(g135633 +g135635 +S'to' +p135637 +tp135638 +a(g135635 +g135637 +S'spain.' +p135639 +tp135640 +a(g135637 +g135639 +S'the' +p135641 +tp135642 +a(g135639 +g135641 +S'illusionistic' +p135643 +tp135644 +a(g135641 +g135643 +S'space' +p135645 +tp135646 +a(g135643 +g135645 +S'and' +p135647 +tp135648 +a(g135645 +g135647 +S'voluptuous' +p135649 +tp135650 +a(g135647 +g135649 +S'figures' +p135651 +tp135652 +a(g135649 +g135651 +S'in' +p135653 +tp135654 +a(g135651 +g135653 +S'this' +p135655 +tp135656 +a(g135653 +g135655 +S'early' +p135657 +tp135658 +a(g135655 +g135657 +S'work' +p135659 +tp135660 +a(g135657 +g135659 +S'are' +p135661 +tp135662 +a(g135659 +g135661 +S'vastly' +p135663 +tp135664 +a(g135661 +g135663 +S'different' +p135665 +tp135666 +a(g135663 +g135665 +S'from' +p135667 +tp135668 +a(g135665 +g135667 +S'the' +p135669 +tp135670 +a(g135667 +g135669 +S'flattened' +p135671 +tp135672 +a(g135669 +g135671 +S'space' +p135673 +tp135674 +a(g135671 +g135673 +S'and' +p135675 +tp135676 +a(g135673 +g135675 +S'stylized' +p135677 +tp135678 +a(g135675 +g135677 +S'forms' +p135679 +tp135680 +a(g135677 +g135679 +S'of' +p135681 +tp135682 +a(g135679 +g135681 +S'byzantine' +p135683 +tp135684 +a(g135681 +g135683 +S'art,' +p135685 +tp135686 +a(g135683 +g135685 +S'which' +p135687 +tp135688 +a(g135685 +g135687 +S'continued' +p135689 +tp135690 +a(g135687 +g135689 +S'to' +p135691 +tp135692 +a(g135689 +g135691 +S'dominate' +p135693 +tp135694 +a(g135691 +g135693 +S'painting' +p135695 +tp135696 +a(g135693 +g135695 +S'in' +p135697 +tp135698 +a(g135695 +g135697 +S'el' +p135699 +tp135700 +a(g135697 +g135699 +S"greco's" +p135701 +tp135702 +a(g135699 +g135701 +S'native' +p135703 +tp135704 +a(g135701 +g135703 +S'crete.' +p135705 +tp135706 +a(g135703 +g135705 +S'el' +p135707 +tp135708 +a(g135705 +g135707 +S"greco's" +p135709 +tp135710 +a(g135707 +g135709 +S'arrival' +p135711 +tp135712 +a(g135709 +g135711 +S'in' +p135713 +tp135714 +a(g135711 +g135713 +S'venice,' +p135715 +tp135716 +a(g135713 +g135715 +S'in' +p135717 +tp135718 +a(g135715 +g135717 +S'about' +p135719 +tp135720 +a(g135717 +g135719 +S'1567,' +p135721 +tp135722 +a(g135719 +g135721 +S'coincided' +p135723 +tp135724 +a(g135721 +g135723 +S'with' +p135725 +tp135726 +a(g135723 +g135725 +S'a' +p135727 +tp135728 +a(g135725 +g135727 +S'high' +p135729 +tp135730 +a(g135727 +g135729 +S'point' +p135731 +tp135732 +a(g135729 +g135731 +S'in' +p135733 +tp135734 +a(g135731 +g135733 +S'that' +p135735 +tp135736 +a(g135733 +g135735 +S"city's" +p135737 +tp135738 +a(g135735 +g135737 +S'artistic' +p135739 +tp135740 +a(g135737 +g135739 +S'achievement.' +p135741 +tp135742 +a(g135739 +g135741 +S'that' +p135743 +tp135744 +a(g135741 +g135743 +S'the' +p135745 +tp135746 +a(g135743 +g135745 +S'cretan' +p135747 +tp135748 +a(g135745 +g135747 +S'artist' +p135749 +tp135750 +a(g135747 +g135749 +S'had' +p135751 +tp135752 +a(g135749 +g135751 +S'absorbed' +p135753 +tp135754 +a(g135751 +g135753 +S'the' +p135755 +tp135756 +a(g135753 +g135755 +S'influence' +p135757 +tp135758 +a(g135755 +g135757 +S'of' +p135759 +tp135760 +a(g135757 +g135759 +S'the' +p135761 +tp135762 +a(g135759 +g135761 +S'venetian' +p135763 +tp135764 +a(g135761 +g135763 +S'masters' +p135765 +tp135766 +a(g135763 +g135765 +S'and' +p135767 +tp135768 +a(g135765 +g135767 +S'taught' +p135769 +tp135770 +a(g135767 +g135769 +S'himself' +p135771 +tp135772 +a(g135769 +g135771 +S'a' +p135773 +tp135774 +a(g135771 +g135773 +S'new' +p135775 +tp135776 +a(g135773 +g135775 +S'way' +p135777 +tp135778 +a(g135775 +g135777 +S'of' +p135779 +tp135780 +a(g135777 +g135779 +S'painting' +p135781 +tp135782 +a(g135779 +g135781 +S'is' +p135783 +tp135784 +a(g135781 +g135783 +S'evident' +p135785 +tp135786 +a(g135783 +g135785 +S'in' +p135787 +tp135788 +a(g135785 +g135787 +S'the' +p135789 +tp135790 +a(g135787 +g135789 +S'movement' +p135791 +tp135792 +a(g135789 +g135791 +S'and' +p135793 +tp135794 +a(g135791 +g135793 +S'drama,' +p135795 +tp135796 +a(g135793 +g135795 +S'solidly' +p135797 +tp135798 +a(g135795 +g135797 +S'modeled' +p135799 +tp135800 +a(g135797 +g135799 +S'figures,' +p135801 +tp135802 +a(g135799 +g135801 +S'and' +p135803 +tp135804 +a(g135801 +g135803 +S'boldly' +p135805 +tp135806 +a(g135803 +g135805 +S'brushed' +p135807 +tp135808 +a(g135805 +g135807 +S'colors' +p135809 +tp135810 +a(g135807 +g135809 +S'of' +p135811 +tp135812 +a(g135809 +g135811 +S'this' +p135813 +tp135814 +a(g135811 +g135813 +S'panel.' +p135815 +tp135816 +a(g135813 +g135815 +S'the' +p135817 +tp135818 +a(g135815 +g135817 +S'influence' +p135819 +tp135820 +a(g135817 +g135819 +S'of' +p135821 +tp135822 +a(g135819 +g135821 +S'the' +p135823 +tp135824 +a(g135821 +g135823 +S'venetians' +p135825 +tp135826 +a(g135823 +g135825 +S'is' +p135827 +tp135828 +a(g135825 +g135827 +S'equally' +p135829 +tp135830 +a(g135827 +g135829 +S'evident' +p135831 +tp135832 +a(g135829 +g135831 +S'in' +p135833 +tp135834 +a(g135831 +g135833 +S'the' +p135835 +tp135836 +a(g135833 +g135835 +S'elaborate' +p135837 +tp135838 +a(g135835 +g135837 +S'architectural' +p135839 +tp135840 +a(g135837 +g135839 +S'setting' +p135841 +tp135842 +a(g135839 +g135841 +S'with' +p135843 +tp135844 +a(g135841 +g135843 +S'its' +p135845 +tp135846 +a(g135843 +g135845 +S'complicated' +p135847 +tp135848 +a(g135845 +g135847 +S'perspective.' +p135849 +tp135850 +a(g135847 +g135849 +S'the' +p135851 +tp135852 +a(g135849 +g135851 +S'theological' +p135853 +tp135854 +a(g135851 +g135853 +S'virtue' +p135855 +tp135856 +a(g135853 +g135855 +S'of' +p135857 +tp135858 +a(g135855 +g135857 +S'charity' +p135859 +tp135860 +a(g135857 +g135859 +S'is' +p135861 +tp135862 +a(g135859 +g135861 +S'traditionally' +p135863 +tp135864 +a(g135861 +g135863 +S'represented' +p135865 +tp135866 +a(g135863 +g135865 +S'by' +p135867 +tp135868 +a(g135865 +g135867 +S'a' +p135869 +tp135870 +a(g135867 +g135869 +S'woman' +p135871 +tp135872 +a(g135869 +g135871 +S'with' +p135873 +tp135874 +a(g135871 +g135873 +S'several' +p135875 +tp135876 +a(g135873 +g135875 +S'small' +p135877 +tp135878 +a(g135875 +g135877 +S'children,' +p135879 +tp135880 +a(g135877 +g135879 +S'one' +p135881 +tp135882 +a(g135879 +g135881 +S'of' +p135883 +tp135884 +a(g135881 +g135883 +S'whom' +p135885 +tp135886 +a(g135883 +g135885 +S'she' +p135887 +tp135888 +a(g135885 +g135887 +S'is' +p135889 +tp135890 +a(g135887 +g135889 +S'shown' +p135891 +tp135892 +a(g135889 +g135891 +S'nursing.' +p135893 +tp135894 +a(g135891 +g135893 +S'here,' +p135895 +tp135896 +a(g135893 +g135895 +S'those' +p135897 +tp135898 +a(g135895 +g135897 +S'figures' +p135899 +tp135900 +a(g135897 +g135899 +S'appear' +p135901 +tp135902 +a(g135899 +g135901 +S'hard' +p135903 +tp135904 +a(g135901 +g135903 +S'and' +p135905 +tp135906 +a(g135903 +g135905 +S'solid' +p135907 +tp135908 +a(g135905 +g135907 +S'amidst' +p135909 +tp135910 +a(g135907 +g135909 +S'a' +p135911 +tp135912 +a(g135909 +g135911 +S'smoky,' +p135913 +tp135914 +a(g135911 +g135913 +S'undefined' +p135915 +tp135916 +a(g135913 +g135915 +S'setting.' +p135917 +tp135918 +a(g135915 +g135917 +S'sharp' +p135919 +tp135920 +a(g135917 +g135919 +S'colors,' +p135921 +tp135922 +a(g135919 +g135921 +S'like' +p135923 +tp135924 +a(g135921 +g135923 +S'the' +p135925 +tp135926 +a(g135923 +g135925 +S'pink' +p135927 +tp135928 +a(g135925 +g135927 +S'and' +p135929 +tp135930 +a(g135927 +g135929 +S'turquoise' +p135931 +tp135932 +a(g135929 +g135931 +S'of' +p135933 +tp135934 +a(g135931 +g135933 +S'the' +p135935 +tp135936 +a(g135933 +g135935 +S'garments' +p135937 +tp135938 +a(g135935 +g135937 +S'or' +p135939 +tp135940 +a(g135937 +g135939 +S'the' +p135941 +tp135942 +a(g135939 +g135941 +S'burnt' +p135943 +tp135944 +a(g135941 +g135943 +S'orange' +p135945 +tp135946 +a(g135943 +g135945 +S'and' +p135947 +tp135948 +a(g135945 +g135947 +S'purple' +p135949 +tp135950 +a(g135947 +g135949 +S'stripes' +p135951 +tp135952 +a(g135949 +g135951 +S'of' +p135953 +tp135954 +a(g135951 +g135953 +S'the' +p135955 +tp135956 +a(g135953 +g135955 +S'tablecloth,' +p135957 +tp135958 +a(g135955 +g135957 +S'heighten' +p135959 +tp135960 +a(g135957 +g135959 +S'this' +p135961 +tp135962 +a(g135959 +g135961 +S'contrast' +p135963 +tp135964 +a(g135961 +g135963 +S'of' +p135965 +tp135966 +a(g135963 +g135965 +S'tangible' +p135967 +tp135968 +a(g135965 +g135967 +S'form' +p135969 +tp135970 +a(g135967 +g135969 +S'and' +p135971 +tp135972 +a(g135969 +g135971 +S'indeterminate' +p135973 +tp135974 +a(g135971 +g135973 +S'space.' +p135975 +tp135976 +a(g135973 +g135975 +S'it' +p135977 +tp135978 +a(g135975 +g135977 +S'is,' +p135979 +tp135980 +a(g135977 +g135979 +S'above' +p135981 +tp135982 +a(g135979 +g135981 +S'all,' +p135983 +tp135984 +a(g135981 +g135983 +S'in' +p135985 +tp135986 +a(g135983 +g135985 +S'the' +p135987 +tp135988 +a(g135985 +g135987 +S'ideal' +p135989 +tp135990 +a(g135987 +g135989 +S'grace' +p135991 +tp135992 +a(g135989 +g135991 +S'of' +p135993 +tp135994 +a(g135991 +g135993 +S'slowly' +p135995 +tp135996 +a(g135993 +g135995 +S'revolving' +p135997 +tp135998 +a(g135995 +g135997 +S'poses' +p135999 +tp136000 +a(g135997 +g135999 +S'that' +p136001 +tp136002 +a(g135999 +g136001 +S'the' +p136003 +tp136004 +a(g136001 +g136003 +S'real' +p136005 +tp136006 +a(g136003 +g136005 +S'expressive' +p136007 +tp136008 +a(g136005 +g136007 +S'force' +p136009 +tp136010 +a(g136007 +g136009 +S'of' +p136011 +tp136012 +a(g136009 +g136011 +S'the' +p136013 +tp136014 +a(g136011 +g136013 +S'picture' +p136015 +tp136016 +a(g136013 +g136015 +S'is' +p136017 +tp136018 +a(g136015 +g136017 +S'conveyed.' +p136019 +tp136020 +a(g136017 +g136019 +S'that' +p136021 +tp136022 +a(g136019 +g136021 +S'the' +p136023 +tp136024 +a(g136021 +g136023 +S'subject' +p136025 +tp136026 +a(g136023 +g136025 +S'is' +p136027 +tp136028 +a(g136025 +g136027 +S'subservient' +p136029 +tp136030 +a(g136027 +g136029 +S'to' +p136031 +tp136032 +a(g136029 +g136031 +S'the' +p136033 +tp136034 +a(g136031 +g136033 +S'style' +p136035 +tp136036 +a(g136033 +g136035 +S'in' +p136037 +tp136038 +a(g136035 +g136037 +S'this' +p136039 +tp136040 +a(g136037 +g136039 +S'painting' +p136041 +tp136042 +a(g136039 +g136041 +S'is' +p136043 +tp136044 +a(g136041 +g136043 +S'underlined' +p136045 +tp136046 +a(g136043 +g136045 +S'by' +p136047 +tp136048 +a(g136045 +g136047 +S'the' +p136049 +tp136050 +a(g136047 +g136049 +S'fact' +p136051 +tp136052 +a(g136049 +g136051 +S'that' +p136053 +tp136054 +a(g136051 +g136053 +S'the' +p136055 +tp136056 +a(g136053 +g136055 +S'panel' +p136057 +tp136058 +a(g136055 +g136057 +S'was' +p136059 +tp136060 +a(g136057 +g136059 +S'first' +p136061 +tp136062 +a(g136059 +g136061 +S'planned' +p136063 +tp136064 +a(g136061 +g136063 +S'as' +p136065 +tp136066 +a(g136063 +g136065 +S'a' +p136067 +tp136068 +a(g136065 +g136067 +S'andrea' +p136069 +tp136070 +a(g136067 +g136069 +S"d'agnolo" +p136071 +tp136072 +a(g136069 +g136071 +S'was' +p136073 +tp136074 +a(g136071 +g136073 +S'called' +p136075 +tp136076 +a(g136073 +g136075 +S'"del' +p136077 +tp136078 +a(g136075 +g136077 +S'sarto"' +p136079 +tp136080 +a(g136077 +g136079 +S'from' +p136081 +tp136082 +a(g136079 +g136081 +S'his' +p136083 +tp136084 +a(g136081 +g136083 +S"father's" +p136085 +tp136086 +a(g136083 +g136085 +S'trade' +p136087 +tp136088 +a(g136085 +g136087 +S'as' +p136089 +tp136090 +a(g136087 +g136089 +S'a' +p136091 +tp136092 +a(g136089 +g136091 +S'tailor.' +p136093 +tp136094 +a(g136091 +g136093 +S'he' +p136095 +tp136096 +a(g136093 +g136095 +S'had' +p136097 +tp136098 +a(g136095 +g136097 +S'a' +p136099 +tp136100 +a(g136097 +g136099 +S'successful' +p136101 +tp136102 +a(g136099 +g136101 +S'and' +p136103 +tp136104 +a(g136101 +g136103 +S'productive' +p136105 +tp136106 +a(g136103 +g136105 +S'career' +p136107 +tp136108 +a(g136105 +g136107 +S'in' +p136109 +tp136110 +a(g136107 +g136109 +S'florence' +p136111 +tp136112 +a(g136109 +g136111 +S'and' +p136113 +tp136114 +a(g136111 +g136113 +S'was' +p136115 +tp136116 +a(g136113 +g136115 +S'particularly' +p136117 +tp136118 +a(g136115 +g136117 +S'celebrated' +p136119 +tp136120 +a(g136117 +g136119 +S'for' +p136121 +tp136122 +a(g136119 +g136121 +S'the' +p136123 +tp136124 +a(g136121 +g136123 +S'beauty' +p136125 +tp136126 +a(g136123 +g136125 +S'and' +p136127 +tp136128 +a(g136125 +g136127 +S'originality' +p136129 +tp136130 +a(g136127 +g136129 +S'of' +p136131 +tp136132 +a(g136129 +g136131 +S'his' +p136133 +tp136134 +a(g136131 +g136133 +S'color.' +p136135 +tp136136 +a(g136133 +g136135 +S'sarto' +p136137 +tp136138 +a(g136135 +g136137 +S'worked' +p136139 +tp136140 +a(g136137 +g136139 +S'briefly' +p136141 +tp136142 +a(g136139 +g136141 +S'at' +p136143 +tp136144 +a(g136141 +g136143 +S'the' +p136145 +tp136146 +a(g136143 +g136145 +S'court' +p136147 +tp136148 +a(g136145 +g136147 +S'of' +p136149 +tp136150 +a(g136147 +g136149 +S'francis' +p136151 +tp136152 +a(g136149 +g136151 +S'i' +p136153 +tp136154 +a(g136151 +g136153 +S'at' +p136155 +tp136156 +a(g136153 +g136155 +S'fontainebleau' +p136157 +tp136158 +a(g136155 +g136157 +S'in' +p136159 +tp136160 +a(g136157 +g136159 +S'1518.' +p136161 +tp136162 +a(g136159 +g136161 +S'this' +p136163 +tp136164 +a(g136161 +g136163 +S'in' +p136165 +tp136166 +a(g136163 +g136165 +S'1544,' +p136167 +tp136168 +a(g136165 +g136167 +S'titian' +p136169 +tp136170 +a(g136167 +g136169 +S'was' +p136171 +tp136172 +a(g136169 +g136171 +S'commissioned' +p136173 +tp136174 +a(g136171 +g136173 +S'to' +p136175 +tp136176 +a(g136173 +g136175 +S'paint' +p136177 +tp136178 +a(g136175 +g136177 +S'secluded' +p136179 +tp136180 +a(g136177 +g136179 +S'on' +p136181 +tp136182 +a(g136179 +g136181 +S'the' +p136183 +tp136184 +a(g136181 +g136183 +S'greek' +p136185 +tp136186 +a(g136183 +g136185 +S'island' +p136187 +tp136188 +a(g136185 +g136187 +S'of' +p136189 +tp136190 +a(g136187 +g136189 +S'patmos,' +p136191 +tp136192 +a(g136189 +g136191 +S'saint' +p136193 +tp136194 +a(g136191 +g136193 +S'john' +p136195 +tp136196 +a(g136193 +g136195 +S'the' +p136197 +tp136198 +a(g136195 +g136197 +S'evangelist' +p136199 +tp136200 +a(g136197 +g136199 +S'experienced' +p136201 +tp136202 +a(g136199 +g136201 +S'his' +p136203 +tp136204 +a(g136201 +g136203 +S'apocalyptic' +p136205 +tp136206 +a(g136203 +g136205 +S'vision' +p136207 +tp136208 +a(g136205 +g136207 +S'of' +p136209 +tp136210 +a(g136207 +g136209 +S'the' +p136211 +tp136212 +a(g136209 +g136211 +S'second' +p136213 +tp136214 +a(g136211 +g136213 +S'coming' +p136215 +tp136216 +a(g136213 +g136215 +S'of' +p136217 +tp136218 +a(g136215 +g136217 +S'christ.' +p136219 +tp136220 +a(g136217 +g136219 +S'this' +p136221 +tp136222 +a(g136219 +g136221 +S'painting' +p136223 +tp136224 +a(g136221 +g136223 +S'depicts' +p136225 +tp136226 +a(g136223 +g136225 +S'the' +p136227 +tp136228 +a(g136225 +g136227 +S'moment' +p136229 +tp136230 +a(g136227 +g136229 +S'when' +p136231 +tp136232 +a(g136229 +g136231 +S'he' +p136233 +tp136234 +a(g136231 +g136233 +S'was' +p136235 +tp136236 +a(g136233 +g136235 +S'inspired' +p136237 +tp136238 +a(g136235 +g136237 +S'by' +p136239 +tp136240 +a(g136237 +g136239 +S'god' +p136241 +tp136242 +a(g136239 +g136241 +S'to' +p136243 +tp136244 +a(g136241 +g136243 +S'write' +p136245 +tp136246 +a(g136243 +g136245 +S'the' +p136247 +tp136248 +a(g136245 +g136247 +S'book' +p136249 +tp136250 +a(g136247 +g136249 +S'of' +p136251 +tp136252 +a(g136249 +g136251 +S'revelation.' +p136253 +tp136254 +a(g136251 +g136253 +S'seen' +p136255 +tp136256 +a(g136253 +g136255 +S'from' +p136257 +tp136258 +a(g136255 +g136257 +S'a' +p136259 +tp136260 +a(g136257 +g136259 +S'low' +p136261 +tp136262 +a(g136259 +g136261 +S'vantage' +p136263 +tp136264 +a(g136261 +g136263 +S'point' +p136265 +tp136266 +a(g136263 +g136265 +S'and' +p136267 +tp136268 +a(g136265 +g136267 +S'dramatically' +p136269 +tp136270 +a(g136267 +g136269 +S'silhouetted' +p136271 +tp136272 +a(g136269 +g136271 +S'against' +p136273 +tp136274 +a(g136271 +g136273 +S'the' +p136275 +tp136276 +a(g136273 +g136275 +S'sky,' +p136277 +tp136278 +a(g136275 +g136277 +S'the' +p136279 +tp136280 +a(g136277 +g136279 +S'heroic' +p136281 +tp136282 +a(g136279 +g136281 +S'figure' +p136283 +tp136284 +a(g136281 +g136283 +S'of' +p136285 +tp136286 +a(g136283 +g136285 +S'john' +p136287 +tp136288 +a(g136285 +g136287 +S'is' +p136289 +tp136290 +a(g136287 +g136289 +S'radically' +p136291 +tp136292 +a(g136289 +g136291 +S'foreshortened.' +p136293 +tp136294 +a(g136291 +g136293 +S'with' +p136295 +tp136296 +a(g136293 +g136295 +S'bent' +p136297 +tp136298 +a(g136295 +g136297 +S'knees' +p136299 +tp136300 +a(g136297 +g136299 +S'and' +p136301 +tp136302 +a(g136299 +g136301 +S'upthrust' +p136303 +tp136304 +a(g136301 +g136303 +S'arms,' +p136305 +tp136306 +a(g136303 +g136305 +S'he' +p136307 +tp136308 +a(g136305 +g136307 +S'looks' +p136309 +tp136310 +a(g136307 +g136309 +S'up' +p136311 +tp136312 +a(g136309 +g136311 +S'to' +p136313 +tp136314 +a(g136311 +g136313 +S'witness' +p136315 +tp136316 +a(g136313 +g136315 +S'god,' +p136317 +tp136318 +a(g136315 +g136317 +S'accompanied' +p136319 +tp136320 +a(g136317 +g136319 +S'by' +p136321 +tp136322 +a(g136319 +g136321 +S'angels,' +p136323 +tp136324 +a(g136321 +g136323 +S'bursting' +p136325 +tp136326 +a(g136323 +g136325 +S'through' +p136327 +tp136328 +a(g136325 +g136327 +S'the' +p136329 +tp136330 +a(g136327 +g136329 +S'clouds' +p136331 +tp136332 +a(g136329 +g136331 +S'above' +p136333 +tp136334 +a(g136331 +g136333 +S'his' +p136335 +tp136336 +a(g136333 +g136335 +S'head.' +p136337 +tp136338 +a(g136335 +g136337 +S'the' +p136339 +tp136340 +a(g136337 +g136339 +S'brilliant' +p136341 +tp136342 +a(g136339 +g136341 +S'hues' +p136343 +tp136344 +a(g136341 +g136343 +S'of' +p136345 +tp136346 +a(g136343 +g136345 +S'yellow,' +p136347 +tp136348 +a(g136345 +g136347 +S'blue,' +p136349 +tp136350 +a(g136347 +g136349 +S'and' +p136351 +tp136352 +a(g136349 +g136351 +S'red' +p136353 +tp136354 +a(g136351 +g136353 +S'draw' +p136355 +tp136356 +a(g136353 +g136355 +S'the' +p136357 +tp136358 +a(g136355 +g136357 +S'eye' +p136359 +tp136360 +a(g136357 +g136359 +S'upward' +p136361 +tp136362 +a(g136359 +g136361 +S'through' +p136363 +tp136364 +a(g136361 +g136363 +S'the' +p136365 +tp136366 +a(g136363 +g136365 +S'physical' +p136367 +tp136368 +a(g136365 +g136367 +S'boundaries' +p136369 +tp136370 +a(g136367 +g136369 +S'of' +p136371 +tp136372 +a(g136369 +g136371 +S'the' +p136373 +tp136374 +a(g136371 +g136373 +S'ceiling' +p136375 +tp136376 +a(g136373 +g136375 +S'and' +p136377 +tp136378 +a(g136375 +g136377 +S'into' +p136379 +tp136380 +a(g136377 +g136379 +S'the' +p136381 +tp136382 +a(g136379 +g136381 +S'heavenly' +p136383 +tp136384 +a(g136381 +g136383 +S'realm.' +p136385 +tp136386 +a(g136383 +g136385 +S'the' +p136387 +tp136388 +a(g136385 +g136387 +S'emotional' +p136389 +tp136390 +a(g136387 +g136389 +S'impact' +p136391 +tp136392 +a(g136389 +g136391 +S'of' +p136393 +tp136394 +a(g136391 +g136393 +S'the' +p136395 +tp136396 +a(g136393 +g136395 +S'subject' +p136397 +tp136398 +a(g136395 +g136397 +S'is' +p136399 +tp136400 +a(g136397 +g136399 +S'further' +p136401 +tp136402 +a(g136399 +g136401 +S'intensified' +p136403 +tp136404 +a(g136401 +g136403 +S'by' +p136405 +tp136406 +a(g136403 +g136405 +S"titian's" +p136407 +tp136408 +a(g136405 +g136407 +S'broad,' +p136409 +tp136410 +a(g136407 +g136409 +S'expressive' +p136411 +tp136412 +a(g136409 +g136411 +S'brushstrokes.' +p136413 +tp136414 +a(g136411 +g136413 +S'in' +p136415 +tp136416 +a(g136413 +g136415 +S'the' +p136417 +tp136418 +a(g136415 +g136417 +S'north' +p136419 +tp136420 +a(g136417 +g136419 +S'italian' +p136421 +tp136422 +a(g136419 +g136421 +S'city' +p136423 +tp136424 +a(g136421 +g136423 +S'of' +p136425 +tp136426 +a(g136423 +g136425 +S'padua,' +p136427 +tp136428 +a(g136425 +g136427 +S'a' +p136429 +tp136430 +a(g136427 +g136429 +S'major' +p136431 +tp136432 +a(g136429 +g136431 +S'center' +p136433 +tp136434 +a(g136431 +g136433 +S'of' +p136435 +tp136436 +a(g136433 +g136435 +S'renaissance' +p136437 +tp136438 +a(g136435 +g136437 +S'bronze' +p136439 +tp136440 +a(g136437 +g136439 +S'production,' +p136441 +tp136442 +a(g136439 +g136441 +S'riccio' +p136443 +tp136444 +a(g136441 +g136443 +S'stood' +p136445 +tp136446 +a(g136443 +g136445 +S'out' +p136447 +tp136448 +a(g136445 +g136447 +S'as' +p136449 +tp136450 +a(g136447 +g136449 +S'the' +p136451 +tp136452 +a(g136449 +g136451 +S'most' +p136453 +tp136454 +a(g136451 +g136453 +S'brilliant' +p136455 +tp136456 +a(g136453 +g136455 +S'master.' +p136457 +tp136458 +a(g136455 +g136457 +S'the' +p136459 +tp136460 +a(g136457 +g136459 +S'entombment' +p136461 +tp136462 +a(g136459 +g136461 +S'of' +p136463 +tp136464 +a(g136461 +g136463 +S'christ' +p136465 +tp136466 +a(g136463 +g136465 +S'is' +p136467 +tp136468 +a(g136465 +g136467 +S'a' +p136469 +tp136470 +a(g136467 +g136469 +S'recurring' +p136471 +tp136472 +a(g136469 +g136471 +S'subject' +p136473 +tp136474 +a(g136471 +g136473 +S'in' +p136475 +tp136476 +a(g136473 +g136475 +S'his' +p136477 +tp136478 +a(g136475 +g136477 +S'reliefs.' +p136479 +tp136480 +a(g136477 +g136479 +S'this' +p136481 +tp136482 +a(g136479 +g136481 +S'is' +p136483 +tp136484 +a(g136481 +g136483 +S'his' +p136485 +tp136486 +a(g136483 +g136485 +S'largest' +p136487 +tp136488 +a(g136485 +g136487 +S'single' +p136489 +tp136490 +a(g136487 +g136489 +S'relief' +p136491 +tp136492 +a(g136489 +g136491 +S'and' +p136493 +tp136494 +a(g136491 +g136493 +S'his' +p136495 +tp136496 +a(g136493 +g136495 +S'masterpiece' +p136497 +tp136498 +a(g136495 +g136497 +S'on' +p136499 +tp136500 +a(g136497 +g136499 +S'the' +p136501 +tp136502 +a(g136499 +g136501 +S'theme.' +p136503 +tp136504 +a(g136501 +g136503 +S'riccio' +p136505 +tp136506 +a(g136503 +g136505 +S'modeled' +p136507 +tp136508 +a(g136505 +g136507 +S'his' +p136509 +tp136510 +a(g136507 +g136509 +S'crowd' +p136511 +tp136512 +a(g136509 +g136511 +S'of' +p136513 +tp136514 +a(g136511 +g136513 +S'mourners' +p136515 +tp136516 +a(g136513 +g136515 +S'in' +p136517 +tp136518 +a(g136515 +g136517 +S'such' +p136519 +tp136520 +a(g136517 +g136519 +S'high' +p136521 +tp136522 +a(g136519 +g136521 +S'relief' +p136523 +tp136524 +a(g136521 +g136523 +S'that' +p136525 +tp136526 +a(g136523 +g136525 +S'many' +p136527 +tp136528 +a(g136525 +g136527 +S'emerge' +p136529 +tp136530 +a(g136527 +g136529 +S'almost' +p136531 +tp136532 +a(g136529 +g136531 +S'as' +p136533 +tp136534 +a(g136531 +g136533 +S'separate' +p136535 +tp136536 +a(g136533 +g136535 +S'statuettes.' +p136537 +tp136538 +a(g136535 +g136537 +S'to' +p136539 +tp136540 +a(g136537 +g136539 +S'an' +p136541 +tp136542 +a(g136539 +g136541 +S'astonishing' +p136543 +tp136544 +a(g136541 +g136543 +S'degree,' +p136545 +tp136546 +a(g136543 +g136545 +S'space' +p136547 +tp136548 +a(g136545 +g136547 +S'penetrates' +p136549 +tp136550 +a(g136547 +g136549 +S'the' +p136551 +tp136552 +a(g136549 +g136551 +S'crowd' +p136553 +tp136554 +a(g136551 +g136553 +S'and' +p136555 +tp136556 +a(g136553 +g136555 +S'the' +p136557 +tp136558 +a(g136555 +g136557 +S'landscape,' +p136559 +tp136560 +a(g136557 +g136559 +S'flowing' +p136561 +tp136562 +a(g136559 +g136561 +S'behind' +p136563 +tp136564 +a(g136561 +g136563 +S'the' +p136565 +tp136566 +a(g136563 +g136565 +S'freestanding' +p136567 +tp136568 +a(g136565 +g136567 +S'trees.' +p136569 +tp136570 +a(g136567 +g136569 +S'people' +p136571 +tp136572 +a(g136569 +g136571 +S'of' +p136573 +tp136574 +a(g136571 +g136573 +S'all' +p136575 +tp136576 +a(g136573 +g136575 +S'ages' +p136577 +tp136578 +a(g136575 +g136577 +S'join' +p136579 +tp136580 +a(g136577 +g136579 +S'in' +p136581 +tp136582 +a(g136579 +g136581 +S'the' +p136583 +tp136584 +a(g136581 +g136583 +S'funeral' +p136585 +tp136586 +a(g136583 +g136585 +S'procession,' +p136587 +tp136588 +a(g136585 +g136587 +S'their' +p136589 +tp136590 +a(g136587 +g136589 +S'faces' +p136591 +tp136592 +a(g136589 +g136591 +S'and' +p136593 +tp136594 +a(g136591 +g136593 +S'costumes' +p136595 +tp136596 +a(g136593 +g136595 +S'rendered' +p136597 +tp136598 +a(g136595 +g136597 +S'with' +p136599 +tp136600 +a(g136597 +g136599 +S'strength' +p136601 +tp136602 +a(g136599 +g136601 +S'and' +p136603 +tp136604 +a(g136601 +g136603 +S'precision.' +p136605 +tp136606 +a(g136603 +g136605 +S'their' +p136607 +tp136608 +a(g136605 +g136607 +S'expressions' +p136609 +tp136610 +a(g136607 +g136609 +S'range' +p136611 +tp136612 +a(g136609 +g136611 +S'from' +p136613 +tp136614 +a(g136611 +g136613 +S'stoic' +p136615 +tp136616 +a(g136613 +g136615 +S'sorrow' +p136617 +tp136618 +a(g136615 +g136617 +S'to' +p136619 +tp136620 +a(g136617 +g136619 +S'wild' +p136621 +tp136622 +a(g136619 +g136621 +S'outbursts,' +p136623 +tp136624 +a(g136621 +g136623 +S'with' +p136625 +tp136626 +a(g136623 +g136625 +S'streaming' +p136627 +tp136628 +a(g136625 +g136627 +S'hair,' +p136629 +tp136630 +a(g136627 +g136629 +S'gesticulating' +p136631 +tp136632 +a(g136629 +g136631 +S'arms,' +p136633 +tp136634 +a(g136631 +g136633 +S'and' +p136635 +tp136636 +a(g136633 +g136635 +S'mouths' +p136637 +tp136638 +a(g136635 +g136637 +S'open' +p136639 +tp136640 +a(g136637 +g136639 +S'in' +p136641 +tp136642 +a(g136639 +g136641 +S'howls.' +p136643 +tp136644 +a(g136641 +g136643 +S'these' +p136645 +tp136646 +a(g136643 +g136645 +S'frantic' +p136647 +tp136648 +a(g136645 +g136647 +S'attitudes' +p136649 +tp136650 +a(g136647 +g136649 +S'had' +p136651 +tp136652 +a(g136649 +g136651 +S'precedents' +p136653 +tp136654 +a(g136651 +g136653 +S'in' +p136655 +tp136656 +a(g136653 +g136655 +S'the' +p136657 +tp136658 +a(g136655 +g136657 +S'art' +p136659 +tp136660 +a(g136657 +g136659 +S'of' +p136661 +tp136662 +a(g136659 +g136661 +S'antiquity' +p136663 +tp136664 +a(g136661 +g136663 +S'and' +p136665 +tp136666 +a(g136663 +g136665 +S'in' +p136667 +tp136668 +a(g136665 +g136667 +S'the' +p136669 +tp136670 +a(g136667 +g136669 +S'works' +p136671 +tp136672 +a(g136669 +g136671 +S'of' +p136673 +tp136674 +a(g136671 +g136673 +S'donatello' +p136675 +tp136676 +a(g136673 +g136675 +S'and' +p136677 +tp136678 +a(g136675 +g136677 +S'his' +p136679 +tp136680 +a(g136677 +g136679 +S'pupil' +p136681 +tp136682 +a(g136679 +g136681 +S'bellano' +p136683 +tp136684 +a(g136681 +g136683 +S'that' +p136685 +tp136686 +a(g136683 +g136685 +S'riccio' +p136687 +tp136688 +a(g136685 +g136687 +S'could' +p136689 +tp136690 +a(g136687 +g136689 +S'see' +p136691 +tp136692 +a(g136689 +g136691 +S'in' +p136693 +tp136694 +a(g136691 +g136693 +S'padua.' +p136695 +tp136696 +a(g136693 +g136695 +S'the' +p136697 +tp136698 +a(g136695 +g136697 +S'scene' +p136699 +tp136700 +a(g136697 +g136699 +S'also' +p136701 +tp136702 +a(g136699 +g136701 +S'recalls' +p136703 +tp136704 +a(g136701 +g136703 +S'the' +p136705 +tp136706 +a(g136703 +g136705 +S'funeral' +p136707 +tp136708 +a(g136705 +g136707 +S'of' +p136709 +tp136710 +a(g136707 +g136709 +S'the' +p136711 +tp136712 +a(g136709 +g136711 +S'mythological' +p136713 +tp136714 +a(g136711 +g136713 +S'hero' +p136715 +tp136716 +a(g136713 +g136715 +S'meleager,' +p136717 +tp136718 +a(g136715 +g136717 +S'depicted' +p136719 +tp136720 +a(g136717 +g136719 +S'on' +p136721 +tp136722 +a(g136719 +g136721 +S'many' +p136723 +tp136724 +a(g136721 +g136723 +S'roman' +p136725 +tp136726 +a(g136723 +g136725 +S'sarcophagi' +p136727 +tp136728 +a(g136725 +g136727 +S'and' +p136729 +tp136730 +a(g136727 +g136729 +S'recommended' +p136731 +tp136732 +a(g136729 +g136731 +S'to' +p136733 +tp136734 +a(g136731 +g136733 +S'artists' +p136735 +tp136736 +a(g136733 +g136735 +S'by' +p136737 +tp136738 +a(g136735 +g136737 +S'the' +p136739 +tp136740 +a(g136737 +g136739 +S'theorist' +p136741 +tp136742 +a(g136739 +g136741 +S'alberti' +p136743 +tp136744 +a(g136741 +g136743 +S'as' +p136745 +tp136746 +a(g136743 +g136745 +S'a' +p136747 +tp136748 +a(g136745 +g136747 +S'convincing' +p136749 +tp136750 +a(g136747 +g136749 +S'portrayal' +p136751 +tp136752 +a(g136749 +g136751 +S'of' +p136753 +tp136754 +a(g136751 +g136753 +S'a' +p136755 +tp136756 +a(g136753 +g136755 +S'dead' +p136757 +tp136758 +a(g136755 +g136757 +S'man' +p136759 +tp136760 +a(g136757 +g136759 +S'weighing' +p136761 +tp136762 +a(g136759 +g136761 +S'down' +p136763 +tp136764 +a(g136761 +g136763 +S'his' +p136765 +tp136766 +a(g136763 +g136765 +S'bearers.' +p136767 +tp136768 +a(g136765 +g136767 +S'the' +p136769 +tp136770 +a(g136767 +g136769 +S'man' +p136771 +tp136772 +a(g136769 +g136771 +S'just' +p136773 +tp136774 +a(g136771 +g136773 +S'in' +p136775 +tp136776 +a(g136773 +g136775 +S'front' +p136777 +tp136778 +a(g136775 +g136777 +S'of' +p136779 +tp136780 +a(g136777 +g136779 +S"christ's" +p136781 +tp136782 +a(g136779 +g136781 +S'feet' +p136783 +tp136784 +a(g136781 +g136783 +S'carries' +p136785 +tp136786 +a(g136783 +g136785 +S'an' +p136787 +tp136788 +a(g136785 +g136787 +S'urn' +p136789 +tp136790 +a(g136787 +g136789 +S'inscribed' +p136791 +tp136792 +a(g136789 +g136791 +S'aerdna,' +p136793 +tp136794 +a(g136791 +g136793 +S'"andrea"' +p136795 +tp136796 +a(g136793 +g136795 +S'spelled' +p136797 +tp136798 +a(g136795 +g136797 +S'backwards.' +p136799 +tp136800 +a(g136797 +g136799 +S'the' +p136801 +tp136802 +a(g136799 +g136801 +S'presence' +p136803 +tp136804 +a(g136801 +g136803 +S'of' +p136805 +tp136806 +a(g136803 +g136805 +S'this' +p136807 +tp136808 +a(g136805 +g136807 +S'barely' +p136809 +tp136810 +a(g136807 +g136809 +S'disguised' +p136811 +tp136812 +a(g136809 +g136811 +S'signature' +p136813 +tp136814 +a(g136811 +g136813 +S'has' +p136815 +tp136816 +a(g136813 +g136815 +S'led' +p136817 +tp136818 +a(g136815 +g136817 +S'to' +p136819 +tp136820 +a(g136817 +g136819 +S'speculation' +p136821 +tp136822 +a(g136819 +g136821 +S'that' +p136823 +tp136824 +a(g136821 +g136823 +S'the' +p136825 +tp136826 +a(g136823 +g136825 +S'artist' +p136827 +tp136828 +a(g136825 +g136827 +S'intended' +p136829 +tp136830 +a(g136827 +g136829 +S'this' +p136831 +tp136832 +a(g136829 +g136831 +S'relief' +p136833 +tp136834 +a(g136831 +g136833 +S'to' +p136835 +tp136836 +a(g136833 +g136835 +S'mark' +p136837 +tp136838 +a(g136835 +g136837 +S'his' +p136839 +tp136840 +a(g136837 +g136839 +S'own' +p136841 +tp136842 +a(g136839 +g136841 +S'tomb.' +p136843 +tp136844 +a(g136841 +g136843 +S'leone' +p136845 +tp136846 +a(g136843 +g136845 +S'battista' +p136847 +tp136848 +a(g136845 +g136847 +S'alberti,' +p136849 +tp136850 +a(g136847 +g136849 +S'among' +p136851 +tp136852 +a(g136849 +g136851 +S'the' +p136853 +tp136854 +a(g136851 +g136853 +S'most' +p136855 +tp136856 +a(g136853 +g136855 +S'broadly' +p136857 +tp136858 +a(g136855 +g136857 +S'talented' +p136859 +tp136860 +a(g136857 +g136859 +S'men' +p136861 +tp136862 +a(g136859 +g136861 +S'of' +p136863 +tp136864 +a(g136861 +g136863 +S'the' +p136865 +tp136866 +a(g136863 +g136865 +S'renaissance,' +p136867 +tp136868 +a(g136865 +g136867 +S'is' +p136869 +tp136870 +a(g136867 +g136869 +S'celebrated' +p136871 +tp136872 +a(g136869 +g136871 +S'for' +p136873 +tp136874 +a(g136871 +g136873 +S'his' +p136875 +tp136876 +a(g136873 +g136875 +S'treatises' +p136877 +tp136878 +a(g136875 +g136877 +S'on' +p136879 +tp136880 +a(g136877 +g136879 +S'painting,' +p136881 +tp136882 +a(g136879 +g136881 +S'sculpture,' +p136883 +tp136884 +a(g136881 +g136883 +S'and' +p136885 +tp136886 +a(g136883 +g136885 +S'architecture.' +p136887 +tp136888 +a(g136885 +g136887 +S'he' +p136889 +tp136890 +a(g136887 +g136889 +S'was' +p136891 +tp136892 +a(g136889 +g136891 +S'also' +p136893 +tp136894 +a(g136891 +g136893 +S'accomplished' +p136895 +tp136896 +a(g136893 +g136895 +S'in' +p136897 +tp136898 +a(g136895 +g136897 +S'the' +p136899 +tp136900 +a(g136897 +g136899 +S'fields' +p136901 +tp136902 +a(g136899 +g136901 +S'of' +p136903 +tp136904 +a(g136901 +g136903 +S'law,' +p136905 +tp136906 +a(g136903 +g136905 +S'philosophy,' +p136907 +tp136908 +a(g136905 +g136907 +S'mathematics,' +p136909 +tp136910 +a(g136907 +g136909 +S'and' +p136911 +tp136912 +a(g136909 +g136911 +S'science.' +p136913 +tp136914 +a(g136911 +g136913 +S'besides' +p136915 +tp136916 +a(g136913 +g136915 +S'experimenting' +p136917 +tp136918 +a(g136915 +g136917 +S'with' +p136919 +tp136920 +a(g136917 +g136919 +S'painting' +p136921 +tp136922 +a(g136919 +g136921 +S'and' +p136923 +tp136924 +a(g136921 +g136923 +S'sculpture,' +p136925 +tp136926 +a(g136923 +g136925 +S'he' +p136927 +tp136928 +a(g136925 +g136927 +S'designed' +p136929 +tp136930 +a(g136927 +g136929 +S'great' +p136931 +tp136932 +a(g136929 +g136931 +S'churches' +p136933 +tp136934 +a(g136931 +g136933 +S'in' +p136935 +tp136936 +a(g136933 +g136935 +S'the' +p136937 +tp136938 +a(g136935 +g136937 +S'north' +p136939 +tp136940 +a(g136937 +g136939 +S'italian' +p136941 +tp136942 +a(g136939 +g136941 +S'cities' +p136943 +tp136944 +a(g136941 +g136943 +S'of' +p136945 +tp136946 +a(g136943 +g136945 +S'rimini' +p136947 +tp136948 +a(g136945 +g136947 +S'and' +p136949 +tp136950 +a(g136947 +g136949 +S'mantua,' +p136951 +tp136952 +a(g136949 +g136951 +S'whose' +p136953 +tp136954 +a(g136951 +g136953 +S'rulers' +p136955 +tp136956 +a(g136953 +g136955 +S'he' +p136957 +tp136958 +a(g136955 +g136957 +S'advised' +p136959 +tp136960 +a(g136957 +g136959 +S'on' +p136961 +tp136962 +a(g136959 +g136961 +S'the' +p136963 +tp136964 +a(g136961 +g136963 +S'arts.' +p136965 +tp136966 +a(g136963 +g136965 +S'he' +p136967 +tp136968 +a(g136965 +g136967 +S'also' +p136969 +tp136970 +a(g136967 +g136969 +S'served' +p136971 +tp136972 +a(g136969 +g136971 +S'as' +p136973 +tp136974 +a(g136971 +g136973 +S'architectural' +p136975 +tp136976 +a(g136973 +g136975 +S'advisor' +p136977 +tp136978 +a(g136975 +g136977 +S'to' +p136979 +tp136980 +a(g136977 +g136979 +S'pope' +p136981 +tp136982 +a(g136979 +g136981 +S'nicholas' +p136983 +tp136984 +a(g136981 +g136983 +S'v.' +p136985 +tp136986 +a(g136983 +g136985 +S'this' +p136987 +tp136988 +a(g136985 +g136987 +S'bronze' +p136989 +tp136990 +a(g136987 +g136989 +S'is' +p136991 +tp136992 +a(g136989 +g136991 +S'probably' +p136993 +tp136994 +a(g136991 +g136993 +S'cast' +p136995 +tp136996 +a(g136993 +g136995 +S'from' +p136997 +tp136998 +a(g136995 +g136997 +S'a' +p136999 +tp137000 +a(g136997 +g136999 +S'wax' +p137001 +tp137002 +a(g136999 +g137001 +S'model,' +p137003 +tp137004 +a(g137001 +g137003 +S'in' +p137005 +tp137006 +a(g137003 +g137005 +S'a' +p137007 +tp137008 +a(g137005 +g137007 +S'shape' +p137009 +tp137010 +a(g137007 +g137009 +S'and' +p137011 +tp137012 +a(g137009 +g137011 +S'design' +p137013 +tp137014 +a(g137011 +g137013 +S'inspired' +p137015 +tp137016 +a(g137013 +g137015 +S'by' +p137017 +tp137018 +a(g137015 +g137017 +S'an' +p137019 +tp137020 +a(g137017 +g137019 +S'ancient' +p137021 +tp137022 +a(g137019 +g137021 +S'roman' +p137023 +tp137024 +a(g137021 +g137023 +S'carved' +p137025 +tp137026 +a(g137023 +g137025 +S'gem.' +p137027 +tp137028 +a(g137025 +g137027 +S'the' +p137029 +tp137030 +a(g137027 +g137029 +S'folds' +p137031 +tp137032 +a(g137029 +g137031 +S'around' +p137033 +tp137034 +a(g137031 +g137033 +S'the' +p137035 +tp137036 +a(g137033 +g137035 +S'neck' +p137037 +tp137038 +a(g137035 +g137037 +S'suggest' +p137039 +tp137040 +a(g137037 +g137039 +S'classical' +p137041 +tp137042 +a(g137039 +g137041 +S'drapery.' +p137043 +tp137044 +a(g137041 +g137043 +S'the' +p137045 +tp137046 +a(g137043 +g137045 +S'closely' +p137047 +tp137048 +a(g137045 +g137047 +S'cropped' +p137049 +tp137050 +a(g137047 +g137049 +S'cap' +p137051 +tp137052 +a(g137049 +g137051 +S'of' +p137053 +tp137054 +a(g137051 +g137053 +S'hair' +p137055 +tp137056 +a(g137053 +g137055 +S'can' +p137057 +tp137058 +a(g137055 +g137057 +S'be' +p137059 +tp137060 +a(g137057 +g137059 +S'associated' +p137061 +tp137062 +a(g137059 +g137061 +S'both' +p137063 +tp137064 +a(g137061 +g137063 +S'with' +p137065 +tp137066 +a(g137063 +g137065 +S'roman' +p137067 +tp137068 +a(g137065 +g137067 +S'and' +p137069 +tp137070 +a(g137067 +g137069 +S'mid-fifteenth-century' +p137071 +tp137072 +a(g137069 +g137071 +S'styles.' +p137073 +tp137074 +a(g137071 +g137073 +S'its' +p137075 +tp137076 +a(g137073 +g137075 +S'fluffy' +p137077 +tp137078 +a(g137075 +g137077 +S'tufts' +p137079 +tp137080 +a(g137077 +g137079 +S'recall' +p137081 +tp137082 +a(g137079 +g137081 +S'the' +p137083 +tp137084 +a(g137081 +g137083 +S'mane' +p137085 +tp137086 +a(g137083 +g137085 +S'of' +p137087 +tp137088 +a(g137085 +g137087 +S"alberti's" +p137089 +tp137090 +a(g137087 +g137089 +S'namesake,' +p137091 +tp137092 +a(g137089 +g137091 +S'the' +p137093 +tp137094 +a(g137091 +g137093 +S'lion' +p137095 +tp137096 +a(g137093 +g137095 +S'the' +p137097 +tp137098 +a(g137095 +g137097 +S'clean,' +p137099 +tp137100 +a(g137097 +g137099 +S'continuous' +p137101 +tp137102 +a(g137099 +g137101 +S'lines,' +p137103 +tp137104 +a(g137101 +g137103 +S'proudly' +p137105 +tp137106 +a(g137103 +g137105 +S'lifted' +p137107 +tp137108 +a(g137105 +g137107 +S'head,' +p137109 +tp137110 +a(g137107 +g137109 +S'and' +p137111 +tp137112 +a(g137109 +g137111 +S'distant' +p137113 +tp137114 +a(g137111 +g137113 +S'gaze' +p137115 +tp137116 +a(g137113 +g137115 +S'give' +p137117 +tp137118 +a(g137115 +g137117 +S"alberti's" +p137119 +tp137120 +a(g137117 +g137119 +S'features' +p137121 +tp137122 +a(g137119 +g137121 +S'a' +p137123 +tp137124 +a(g137121 +g137123 +S'noble,' +p137125 +tp137126 +a(g137123 +g137125 +S'idealized' +p137127 +tp137128 +a(g137125 +g137127 +S'character.' +p137129 +tp137130 +a(g137127 +g137129 +S'under' +p137131 +tp137132 +a(g137129 +g137131 +S'his' +p137133 +tp137134 +a(g137131 +g137133 +S'chin' +p137135 +tp137136 +a(g137133 +g137135 +S'is' +p137137 +tp137138 +a(g137135 +g137137 +S'his' +p137139 +tp137140 +a(g137137 +g137139 +S'personal' +p137141 +tp137142 +a(g137139 +g137141 +S'emblem,' +p137143 +tp137144 +a(g137141 +g137143 +S'a' +p137145 +tp137146 +a(g137143 +g137145 +S'winged' +p137147 +tp137148 +a(g137145 +g137147 +S'eye.' +p137149 +tp137150 +a(g137147 +g137149 +S'alberti' +p137151 +tp137152 +a(g137149 +g137151 +S'wrote' +p137153 +tp137154 +a(g137151 +g137153 +S'of' +p137155 +tp137156 +a(g137153 +g137155 +S'the' +p137157 +tp137158 +a(g137155 +g137157 +S'eye' +p137159 +tp137160 +a(g137157 +g137159 +S'as' +p137161 +tp137162 +a(g137159 +g137161 +S'the' +p137163 +tp137164 +a(g137161 +g137163 +S'most' +p137165 +tp137166 +a(g137163 +g137165 +S'powerful,' +p137167 +tp137168 +a(g137165 +g137167 +S'swift,' +p137169 +tp137170 +a(g137167 +g137169 +S'and' +p137171 +tp137172 +a(g137169 +g137171 +S'worthy' +p137173 +tp137174 +a(g137171 +g137173 +S'of' +p137175 +tp137176 +a(g137173 +g137175 +S'human' +p137177 +tp137178 +a(g137175 +g137177 +S'parts,' +p137179 +tp137180 +a(g137177 +g137179 +S'reminding' +p137181 +tp137182 +a(g137179 +g137181 +S'us' +p137183 +tp137184 +a(g137181 +g137183 +S'to' +p137185 +tp137186 +a(g137183 +g137185 +S'be' +p137187 +tp137188 +a(g137185 +g137187 +S'ever' +p137189 +tp137190 +a(g137187 +g137189 +S'vigilant' +p137191 +tp137192 +a(g137189 +g137191 +S'in' +p137193 +tp137194 +a(g137191 +g137193 +S'the' +p137195 +tp137196 +a(g137193 +g137195 +S'pursuit' +p137197 +tp137198 +a(g137195 +g137197 +S'of' +p137199 +tp137200 +a(g137197 +g137199 +S'what' +p137201 +tp137202 +a(g137199 +g137201 +S'is' +p137203 +tp137204 +a(g137201 +g137203 +S'good.' +p137205 +tp137206 +a(g137203 +g137205 +S'the' +p137207 +tp137208 +a(g137205 +g137207 +S'image' +p137209 +tp137210 +a(g137207 +g137209 +S'is' +p137211 +tp137212 +a(g137209 +g137211 +S'also' +p137213 +tp137214 +a(g137211 +g137213 +S'meant' +p137215 +tp137216 +a(g137213 +g137215 +S'to' +p137217 +tp137218 +a(g137215 +g137217 +S'represent' +p137219 +tp137220 +a(g137217 +g137219 +S'the' +p137221 +tp137222 +a(g137219 +g137221 +S'all-seeing' +p137223 +tp137224 +a(g137221 +g137223 +S'eye' +p137225 +tp137226 +a(g137223 +g137225 +S'of' +p137227 +tp137228 +a(g137225 +g137227 +S'god.' +p137229 +tp137230 +a(g137227 +g137229 +S'this' +p137231 +tp137232 +a(g137229 +g137231 +S'work' +p137233 +tp137234 +a(g137231 +g137233 +S'reflects' +p137235 +tp137236 +a(g137233 +g137235 +S'the' +p137237 +tp137238 +a(g137235 +g137237 +S'relief' +p137239 +tp137240 +a(g137237 +g137239 +S'style' +p137241 +tp137242 +a(g137239 +g137241 +S'of' +p137243 +tp137244 +a(g137241 +g137243 +S'the' +p137245 +tp137246 +a(g137243 +g137245 +S'great' +p137247 +tp137248 +a(g137245 +g137247 +S'florentine' +p137249 +tp137250 +a(g137247 +g137249 +S'sculptor' +p137251 +tp137252 +a(g137249 +g137251 +S'donatello,' +p137253 +tp137254 +a(g137251 +g137253 +S'whose' +p137255 +tp137256 +a(g137253 +g137255 +S'approach' +p137257 +tp137258 +a(g137255 +g137257 +S'to' +p137259 +tp137260 +a(g137257 +g137259 +S'statuary' +p137261 +tp137262 +a(g137259 +g137261 +S'is' +p137263 +tp137264 +a(g137261 +g137263 +S'glimpsed' +p137265 +tp137266 +a(g137263 +g137265 +S'in' +p137267 +tp137268 +a(g137265 +g137267 +S'the' +p137269 +tp137270 +a(g137267 +g137269 +S'terra-cotta' +p137271 +tp137272 +a(g137269 +g137271 +S'the' +p137273 +tp137274 +a(g137271 +g137273 +S'figures' +p137275 +tp137276 +a(g137273 +g137275 +S'appear' +p137277 +tp137278 +a(g137275 +g137277 +S'in' +p137279 +tp137280 +a(g137277 +g137279 +S'a' +p137281 +tp137282 +a(g137279 +g137281 +S'close-up' +p137283 +tp137284 +a(g137281 +g137283 +S'view' +p137285 +tp137286 +a(g137283 +g137285 +S'on' +p137287 +tp137288 +a(g137285 +g137287 +S'a' +p137289 +tp137290 +a(g137287 +g137289 +S'balcony' +p137291 +tp137292 +a(g137289 +g137291 +S'or' +p137293 +tp137294 +a(g137291 +g137293 +S'parapet.' +p137295 +tp137296 +a(g137293 +g137295 +S'the' +p137297 +tp137298 +a(g137295 +g137297 +S'child' +p137299 +tp137300 +a(g137297 +g137299 +S'stands' +p137301 +tp137302 +a(g137299 +g137301 +S'on' +p137303 +tp137304 +a(g137301 +g137303 +S'the' +p137305 +tp137306 +a(g137303 +g137305 +S'ledge' +p137307 +tp137308 +a(g137305 +g137307 +S'in' +p137309 +tp137310 +a(g137307 +g137309 +S'a' +p137311 +tp137312 +a(g137309 +g137311 +S'lively' +p137313 +tp137314 +a(g137311 +g137313 +S'pose' +p137315 +tp137316 +a(g137313 +g137315 +S'that' +p137317 +tp137318 +a(g137315 +g137317 +S'combines' +p137319 +tp137320 +a(g137317 +g137319 +S'a' +p137321 +tp137322 +a(g137319 +g137321 +S'forward' +p137323 +tp137324 +a(g137321 +g137323 +S'shift' +p137325 +tp137326 +a(g137323 +g137325 +S'of' +p137327 +tp137328 +a(g137325 +g137327 +S'his' +p137329 +tp137330 +a(g137327 +g137329 +S'weight' +p137331 +tp137332 +a(g137329 +g137331 +S'with' +p137333 +tp137334 +a(g137331 +g137333 +S'a' +p137335 +tp137336 +a(g137333 +g137335 +S'twist' +p137337 +tp137338 +a(g137335 +g137337 +S'backward' +p137339 +tp137340 +a(g137337 +g137339 +S'to' +p137341 +tp137342 +a(g137339 +g137341 +S'cling' +p137343 +tp137344 +a(g137341 +g137343 +S'to' +p137345 +tp137346 +a(g137343 +g137345 +S'his' +p137347 +tp137348 +a(g137345 +g137347 +S'mother.' +p137349 +tp137350 +a(g137347 +g137349 +S'with' +p137351 +tp137352 +a(g137349 +g137351 +S'delicate' +p137353 +tp137354 +a(g137351 +g137353 +S'modulations' +p137355 +tp137356 +a(g137353 +g137355 +S'of' +p137357 +tp137358 +a(g137355 +g137357 +S'his' +p137359 +tp137360 +a(g137357 +g137359 +S'wax' +p137361 +tp137362 +a(g137359 +g137361 +S'model,' +p137363 +tp137364 +a(g137361 +g137363 +S'the' +p137365 +tp137366 +a(g137363 +g137365 +S'sculptor' +p137367 +tp137368 +a(g137365 +g137367 +S'varied' +p137369 +tp137370 +a(g137367 +g137369 +S'the' +p137371 +tp137372 +a(g137369 +g137371 +S'textures' +p137373 +tp137374 +a(g137371 +g137373 +S'of' +p137375 +tp137376 +a(g137373 +g137375 +S'crumpled' +p137377 +tp137378 +a(g137375 +g137377 +S'cloth,' +p137379 +tp137380 +a(g137377 +g137379 +S'fine' +p137381 +tp137382 +a(g137379 +g137381 +S'fringe,' +p137383 +tp137384 +a(g137381 +g137383 +S'and' +p137385 +tp137386 +a(g137383 +g137385 +S'feathery' +p137387 +tp137388 +a(g137385 +g137387 +S'hair,' +p137389 +tp137390 +a(g137387 +g137389 +S'set' +p137391 +tp137392 +a(g137389 +g137391 +S'against' +p137393 +tp137394 +a(g137391 +g137393 +S'powerful' +p137395 +tp137396 +a(g137393 +g137395 +S'architecture.' +p137397 +tp137398 +a(g137395 +g137397 +S'the' +p137399 +tp137400 +a(g137397 +g137399 +S'gestures' +p137401 +tp137402 +a(g137399 +g137401 +S'of' +p137403 +tp137404 +a(g137401 +g137403 +S'the' +p137405 +tp137406 +a(g137403 +g137405 +S"madonna's" +p137407 +tp137408 +a(g137405 +g137407 +S'and' +p137409 +tp137410 +a(g137407 +g137409 +S"child's" +p137411 +tp137412 +a(g137409 +g137411 +S'hands,' +p137413 +tp137414 +a(g137411 +g137413 +S'paralleling' +p137415 +tp137416 +a(g137413 +g137415 +S'each' +p137417 +tp137418 +a(g137415 +g137417 +S'other' +p137419 +tp137420 +a(g137417 +g137419 +S'with' +p137421 +tp137422 +a(g137419 +g137421 +S'choreographic' +p137423 +tp137424 +a(g137421 +g137423 +S'grace,' +p137425 +tp137426 +a(g137423 +g137425 +S'recall' +p137427 +tp137428 +a(g137425 +g137427 +S'those' +p137429 +tp137430 +a(g137427 +g137429 +S'of' +p137431 +tp137432 +a(g137429 +g137431 +S"donatello's" +p137433 +tp137434 +a(g137431 +g137433 +S'statues' +p137435 +tp137436 +a(g137433 +g137435 +S'at' +p137437 +tp137438 +a(g137435 +g137437 +S'the' +p137439 +tp137440 +a(g137437 +g137439 +S'basilica' +p137441 +tp137442 +a(g137439 +g137441 +S'of' +p137443 +tp137444 +a(g137441 +g137443 +S'saint' +p137445 +tp137446 +a(g137443 +g137445 +S'anthony' +p137447 +tp137448 +a(g137445 +g137447 +S'in' +p137449 +tp137450 +a(g137447 +g137449 +S'padua.' +p137451 +tp137452 +a(g137449 +g137451 +S'here' +p137453 +tp137454 +a(g137451 +g137453 +S'the' +p137455 +tp137456 +a(g137453 +g137455 +S'figures' +p137457 +tp137458 +a(g137455 +g137457 +S'seem' +p137459 +tp137460 +a(g137457 +g137459 +S'to' +p137461 +tp137462 +a(g137459 +g137461 +S'reach' +p137463 +tp137464 +a(g137461 +g137463 +S'out' +p137465 +tp137466 +a(g137463 +g137465 +S'in' +p137467 +tp137468 +a(g137465 +g137467 +S'greeting' +p137469 +tp137470 +a(g137467 +g137469 +S'toward' +p137471 +tp137472 +a(g137469 +g137471 +S'acclaiming' +p137473 +tp137474 +a(g137471 +g137473 +S'worshippers.' +p137475 +tp137476 +a(g137473 +g137475 +S'one' +p137477 +tp137478 +a(g137475 +g137477 +S'scholar' +p137479 +tp137480 +a(g137477 +g137479 +S'has' +p137481 +tp137482 +a(g137479 +g137481 +S'named' +p137483 +tp137484 +a(g137481 +g137483 +S'the' +p137485 +tp137486 +a(g137483 +g137485 +S'composition' +p137487 +tp137488 +a(g137485 +g137487 +S'"the' +p137489 +tp137490 +a(g137487 +g137489 +S'madonna' +p137491 +tp137492 +a(g137489 +g137491 +S'of' +p137493 +tp137494 +a(g137491 +g137493 +S'welcome."' +p137495 +tp137496 +a(g137493 +g137495 +S'pisanello,' +p137497 +tp137498 +a(g137495 +g137497 +S'who' +p137499 +tp137500 +a(g137497 +g137499 +S'was' +p137501 +tp137502 +a(g137499 +g137501 +S'a' +p137503 +tp137504 +a(g137501 +g137503 +S'painter' +p137505 +tp137506 +a(g137503 +g137505 +S'as' +p137507 +tp137508 +a(g137505 +g137507 +S'well' +p137509 +tp137510 +a(g137507 +g137509 +S'as' +p137511 +tp137512 +a(g137509 +g137511 +S'a' +p137513 +tp137514 +a(g137511 +g137513 +S'medalist,' +p137515 +tp137516 +a(g137513 +g137515 +S'is' +p137517 +tp137518 +a(g137515 +g137517 +S'generally' +p137519 +tp137520 +a(g137517 +g137519 +S'credited' +p137521 +tp137522 +a(g137519 +g137521 +S'with' +p137523 +tp137524 +a(g137521 +g137523 +S'having' +p137525 +tp137526 +a(g137523 +g137525 +S'invented' +p137527 +tp137528 +a(g137525 +g137527 +S'the' +p137529 +tp137530 +a(g137527 +g137529 +S'renaissance' +p137531 +tp137532 +a(g137529 +g137531 +S'medal' +p137533 +tp137534 +a(g137531 +g137533 +S'form,' +p137535 +tp137536 +a(g137533 +g137535 +S'as' +p137537 +tp137538 +a(g137535 +g137537 +S'well' +p137539 +tp137540 +a(g137537 +g137539 +S'as' +p137541 +tp137542 +a(g137539 +g137541 +S'having' +p137543 +tp137544 +a(g137541 +g137543 +S'brought' +p137545 +tp137546 +a(g137543 +g137545 +S'it' +p137547 +tp137548 +a(g137545 +g137547 +S'to' +p137549 +tp137550 +a(g137547 +g137549 +S'its' +p137551 +tp137552 +a(g137549 +g137551 +S'highest' +p137553 +tp137554 +a(g137551 +g137553 +S'potential.' +p137555 +tp137556 +a(g137553 +g137555 +S'he' +p137557 +tp137558 +a(g137555 +g137557 +S'made' +p137559 +tp137560 +a(g137557 +g137559 +S'several' +p137561 +tp137562 +a(g137559 +g137561 +S'medals' +p137563 +tp137564 +a(g137561 +g137563 +S'of' +p137565 +tp137566 +a(g137563 +g137565 +S'the' +p137567 +tp137568 +a(g137565 +g137567 +S'marquess' +p137569 +tp137570 +a(g137567 +g137569 +S'of' +p137571 +tp137572 +a(g137569 +g137571 +S'ferrara,' +p137573 +tp137574 +a(g137571 +g137573 +S'this' +p137575 +tp137576 +a(g137573 +g137575 +S'one' +p137577 +tp137578 +a(g137575 +g137577 +S'being' +p137579 +tp137580 +a(g137577 +g137579 +S'for' +p137581 +tp137582 +a(g137579 +g137581 +S'the' +p137583 +tp137584 +a(g137581 +g137583 +S'occasion' +p137585 +tp137586 +a(g137583 +g137585 +S'of' +p137587 +tp137588 +a(g137585 +g137587 +S"leonello's" +p137589 +tp137590 +a(g137587 +g137589 +S'marriage' +p137591 +tp137592 +a(g137589 +g137591 +S'to' +p137593 +tp137594 +a(g137591 +g137593 +S'maria' +p137595 +tp137596 +a(g137593 +g137595 +S'of' +p137597 +tp137598 +a(g137595 +g137597 +S'aragon' +p137599 +tp137600 +a(g137597 +g137599 +S'in' +p137601 +tp137602 +a(g137599 +g137601 +S'1444.' +p137603 +tp137604 +a(g137601 +g137603 +S'the' +p137605 +tp137606 +a(g137603 +g137605 +S'composition' +p137607 +tp137608 +a(g137605 +g137607 +S'of' +p137609 +tp137610 +a(g137607 +g137609 +S'the' +p137611 +tp137612 +a(g137609 +g137611 +S'the' +p137613 +tp137614 +a(g137611 +g137613 +S'inscription' +p137615 +tp137616 +a(g137613 +g137615 +S'across' +p137617 +tp137618 +a(g137615 +g137617 +S'the' +p137619 +tp137620 +a(g137617 +g137619 +S'field' +p137621 +tp137622 +a(g137619 +g137621 +S'and' +p137623 +tp137624 +a(g137621 +g137623 +S'around' +p137625 +tp137626 +a(g137623 +g137625 +S'the' +p137627 +tp137628 +a(g137625 +g137627 +S'bottom' +p137629 +tp137630 +a(g137627 +g137629 +S'of' +p137631 +tp137632 +a(g137629 +g137631 +S'the' +p137633 +tp137634 +a(g137631 +g137633 +S'obverse,' +p137635 +tp137636 +a(g137633 +g137635 +S'leonellvs' +p137637 +tp137638 +a(g137635 +g137637 +S'marchio' +p137639 +tp137640 +a(g137637 +g137639 +S'estensis' +p137641 +tp137642 +a(g137639 +g137641 +S'd(ominus)' +p137643 +tp137644 +a(g137641 +g137643 +S'ferrarie' +p137645 +tp137646 +a(g137643 +g137645 +S'regii' +p137647 +tp137648 +a(g137645 +g137647 +S'et' +p137649 +tp137650 +a(g137647 +g137649 +S'mutine,' +p137651 +tp137652 +a(g137649 +g137651 +S'identifies' +p137653 +tp137654 +a(g137651 +g137653 +S'leonello' +p137655 +tp137656 +a(g137653 +g137655 +S'as' +p137657 +tp137658 +a(g137655 +g137657 +S'marquess' +p137659 +tp137660 +a(g137657 +g137659 +S'of' +p137661 +tp137662 +a(g137659 +g137661 +S'este' +p137663 +tp137664 +a(g137661 +g137663 +S'and' +p137665 +tp137666 +a(g137663 +g137665 +S'lord' +p137667 +tp137668 +a(g137665 +g137667 +S'of' +p137669 +tp137670 +a(g137667 +g137669 +S'ferrara,' +p137671 +tp137672 +a(g137669 +g137671 +S'reggio,' +p137673 +tp137674 +a(g137671 +g137673 +S'and' +p137675 +tp137676 +a(g137673 +g137675 +S'modena.' +p137677 +tp137678 +a(g137675 +g137677 +S'the' +p137679 +tp137680 +a(g137677 +g137679 +S'truncated' +p137681 +tp137682 +a(g137679 +g137681 +S'inscription' +p137683 +tp137684 +a(g137681 +g137683 +S'around' +p137685 +tp137686 +a(g137683 +g137685 +S'the' +p137687 +tp137688 +a(g137685 +g137687 +S'top,' +p137689 +tp137690 +a(g137687 +g137689 +S'ge' +p137691 +tp137692 +a(g137689 +g137691 +S'r' +p137693 +tp137694 +a(g137691 +g137693 +S'ar,' +p137695 +tp137696 +a(g137693 +g137695 +S'is' +p137697 +tp137698 +a(g137695 +g137697 +S'an' +p137699 +tp137700 +a(g137697 +g137699 +S'abbreviation' +p137701 +tp137702 +a(g137699 +g137701 +S'of' +p137703 +tp137704 +a(g137701 +g137703 +S'gener' +p137705 +tp137706 +a(g137703 +g137705 +S'regis' +p137707 +tp137708 +a(g137705 +g137707 +S'aragonum,' +p137709 +tp137710 +a(g137707 +g137709 +S'identifying' +p137711 +tp137712 +a(g137709 +g137711 +S'him' +p137713 +tp137714 +a(g137711 +g137713 +S'(through' +p137715 +tp137716 +a(g137713 +g137715 +S'his' +p137717 +tp137718 +a(g137715 +g137717 +S'marriage)' +p137719 +tp137720 +a(g137717 +g137719 +S'as' +p137721 +tp137722 +a(g137719 +g137721 +S'the' +p137723 +tp137724 +a(g137721 +g137723 +S'son-in-law' +p137725 +tp137726 +a(g137723 +g137725 +S'of' +p137727 +tp137728 +a(g137725 +g137727 +S'king' +p137729 +tp137730 +a(g137727 +g137729 +S'alfonso' +p137731 +tp137732 +a(g137729 +g137731 +S'v' +p137733 +tp137734 +a(g137731 +g137733 +S'of' +p137735 +tp137736 +a(g137733 +g137735 +S'aragon,' +p137737 +tp137738 +a(g137735 +g137737 +S'ruler' +p137739 +tp137740 +a(g137737 +g137739 +S'of' +p137741 +tp137742 +a(g137739 +g137741 +S'naples;' +p137743 +tp137744 +a(g137741 +g137743 +S"leonello's" +p137745 +tp137746 +a(g137743 +g137745 +S'marriage' +p137747 +tp137748 +a(g137745 +g137747 +S'to' +p137749 +tp137750 +a(g137747 +g137749 +S'maria' +p137751 +tp137752 +a(g137749 +g137751 +S'brought' +p137753 +tp137754 +a(g137751 +g137753 +S'him' +p137755 +tp137756 +a(g137753 +g137755 +S'a' +p137757 +tp137758 +a(g137755 +g137757 +S'bride' +p137759 +tp137760 +a(g137757 +g137759 +S'who' +p137761 +tp137762 +a(g137759 +g137761 +S'increased' +p137763 +tp137764 +a(g137761 +g137763 +S'his' +p137765 +tp137766 +a(g137763 +g137765 +S'prestige' +p137767 +tp137768 +a(g137765 +g137767 +S'by' +p137769 +tp137770 +a(g137767 +g137769 +S'associating' +p137771 +tp137772 +a(g137769 +g137771 +S'him' +p137773 +tp137774 +a(g137771 +g137773 +S'with' +p137775 +tp137776 +a(g137773 +g137775 +S'the' +p137777 +tp137778 +a(g137775 +g137777 +S'powerful' +p137779 +tp137780 +a(g137777 +g137779 +S'neapolitan' +p137781 +tp137782 +a(g137779 +g137781 +S'court.' +p137783 +tp137784 +a(g137781 +g137783 +S'portrait' +p137785 +tp137786 +a(g137783 +g137785 +S'medals' +p137787 +tp137788 +a(g137785 +g137787 +S'were' +p137789 +tp137790 +a(g137787 +g137789 +S'inspired' +p137791 +tp137792 +a(g137789 +g137791 +S'by' +p137793 +tp137794 +a(g137791 +g137793 +S'the' +p137795 +tp137796 +a(g137793 +g137795 +S'ancient' +p137797 +tp137798 +a(g137795 +g137797 +S'world,' +p137799 +tp137800 +a(g137797 +g137799 +S'in' +p137801 +tp137802 +a(g137799 +g137801 +S'particular' +p137803 +tp137804 +a(g137801 +g137803 +S'the' +p137805 +tp137806 +a(g137803 +g137805 +S'roman' +p137807 +tp137808 +a(g137805 +g137807 +S'coins' +p137809 +tp137810 +a(g137807 +g137809 +S'that' +p137811 +tp137812 +a(g137809 +g137811 +S'many' +p137813 +tp137814 +a(g137811 +g137813 +S'humanists' +p137815 +tp137816 +a(g137813 +g137815 +S'avidly' +p137817 +tp137818 +a(g137815 +g137817 +S'collected.' +p137819 +tp137820 +a(g137817 +g137819 +S'in' +p137821 +tp137822 +a(g137819 +g137821 +S'his' +p137823 +tp137824 +a(g137821 +g137823 +S'medal' +p137825 +tp137826 +a(g137823 +g137825 +S'alfonso' +p137827 +tp137828 +a(g137825 +g137827 +S'ruspagiari' +p137829 +tp137830 +a(g137827 +g137829 +S'refers' +p137831 +tp137832 +a(g137829 +g137831 +S'to' +p137833 +tp137834 +a(g137831 +g137833 +S'himself' +p137835 +tp137836 +a(g137833 +g137835 +S'four' +p137837 +tp137838 +a(g137835 +g137837 +S'times:' +p137839 +tp137840 +a(g137837 +g137839 +S'with' +p137841 +tp137842 +a(g137839 +g137841 +S'a' +p137843 +tp137844 +a(g137841 +g137843 +S'self-portrait;' +p137845 +tp137846 +a(g137843 +g137845 +S'with' +p137847 +tp137848 +a(g137845 +g137847 +S'his' +p137849 +tp137850 +a(g137847 +g137849 +S'name' +p137851 +tp137852 +a(g137849 +g137851 +S'around' +p137853 +tp137854 +a(g137851 +g137853 +S'the' +p137855 +tp137856 +a(g137853 +g137855 +S'edge;' +p137857 +tp137858 +a(g137855 +g137857 +S'with' +p137859 +tp137860 +a(g137857 +g137859 +S'his' +p137861 +tp137862 +a(g137859 +g137861 +S'initials' +p137863 +tp137864 +a(g137861 +g137863 +S'under' +p137865 +tp137866 +a(g137863 +g137865 +S'the' +p137867 +tp137868 +a(g137865 +g137867 +S'bust;' +p137869 +tp137870 +a(g137867 +g137869 +S'and' +p137871 +tp137872 +a(g137869 +g137871 +S'with' +p137873 +tp137874 +a(g137871 +g137873 +S'the' +p137875 +tp137876 +a(g137873 +g137875 +S'latin' +p137877 +tp137878 +a(g137875 +g137877 +S'word' +p137879 +tp137880 +a(g137877 +g137879 +S'in' +p137881 +tp137882 +a(g137879 +g137881 +S'contrast' +p137883 +tp137884 +a(g137881 +g137883 +S'to' +p137885 +tp137886 +a(g137883 +g137885 +S'the' +p137887 +tp137888 +a(g137885 +g137887 +S'more' +p137889 +tp137890 +a(g137887 +g137889 +S'personal' +p137891 +tp137892 +a(g137889 +g137891 +S'significance' +p137893 +tp137894 +a(g137891 +g137893 +S'of' +p137895 +tp137896 +a(g137893 +g137895 +S"pisanello's" +p137897 +tp137898 +a(g137895 +g137897 +S'on' +p137899 +tp137900 +a(g137897 +g137899 +S'the' +p137901 +tp137902 +a(g137899 +g137901 +S'reverse,' +p137903 +tp137904 +a(g137901 +g137903 +S'the' +p137905 +tp137906 +a(g137903 +g137905 +S'distinctive' +p137907 +tp137908 +a(g137905 +g137907 +S'profiles' +p137909 +tp137910 +a(g137907 +g137909 +S'of' +p137911 +tp137912 +a(g137909 +g137911 +S'the' +p137913 +tp137914 +a(g137911 +g137913 +S'two' +p137915 +tp137916 +a(g137913 +g137915 +S'rulers' +p137917 +tp137918 +a(g137915 +g137917 +S'are' +p137919 +tp137920 +a(g137917 +g137919 +S'recognizable' +p137921 +tp137922 +a(g137919 +g137921 +S'in' +p137923 +tp137924 +a(g137921 +g137923 +S'the' +p137925 +tp137926 +a(g137923 +g137925 +S'two' +p137927 +tp137928 +a(g137925 +g137927 +S'standing' +p137929 +tp137930 +a(g137927 +g137929 +S'figures' +p137931 +tp137932 +a(g137929 +g137931 +S'holding' +p137933 +tp137934 +a(g137931 +g137933 +S'hands.' +p137935 +tp137936 +a(g137933 +g137935 +S'these' +p137937 +tp137938 +a(g137935 +g137937 +S'represent' +p137939 +tp137940 +a(g137937 +g137939 +S'henri' +p137941 +tp137942 +a(g137939 +g137941 +S'as' +p137943 +tp137944 +a(g137941 +g137943 +S'mars,' +p137945 +tp137946 +a(g137943 +g137945 +S'the' +p137947 +tp137948 +a(g137945 +g137947 +S'god' +p137949 +tp137950 +a(g137947 +g137949 +S'of' +p137951 +tp137952 +a(g137949 +g137951 +S'war,' +p137953 +tp137954 +a(g137951 +g137953 +S'and' +p137955 +tp137956 +a(g137953 +g137955 +S'marie' +p137957 +tp137958 +a(g137955 +g137957 +S'as' +p137959 +tp137960 +a(g137957 +g137959 +S'pallas,' +p137961 +tp137962 +a(g137959 +g137961 +S'the' +p137963 +tp137964 +a(g137961 +g137963 +S'goddess' +p137965 +tp137966 +a(g137963 +g137965 +S'of' +p137967 +tp137968 +a(g137965 +g137967 +S'wisdom' +p137969 +tp137970 +a(g137967 +g137969 +S'and' +p137971 +tp137972 +a(g137969 +g137971 +S'the' +p137973 +tp137974 +a(g137971 +g137973 +S'arts.' +p137975 +tp137976 +a(g137973 +g137975 +S'beneath' +p137977 +tp137978 +a(g137975 +g137977 +S'their' +p137979 +tp137980 +a(g137977 +g137979 +S'clasped' +p137981 +tp137982 +a(g137979 +g137981 +S'hands' +p137983 +tp137984 +a(g137981 +g137983 +S'stands' +p137985 +tp137986 +a(g137983 +g137985 +S'the' +p137987 +tp137988 +a(g137985 +g137987 +S'young' +p137989 +tp137990 +a(g137987 +g137989 +S'child,' +p137991 +tp137992 +a(g137989 +g137991 +S'their' +p137993 +tp137994 +a(g137991 +g137993 +S'son' +p137995 +tp137996 +a(g137993 +g137995 +S'louis.' +p137997 +tp137998 +a(g137995 +g137997 +S'the' +p137999 +tp138000 +a(g137997 +g137999 +S'inscription' +p138001 +tp138002 +a(g137999 +g138001 +S'around' +p138003 +tp138004 +a(g138001 +g138003 +S'the' +p138005 +tp138006 +a(g138003 +g138005 +S'top,' +p138007 +tp138008 +a(g138005 +g138007 +S'propago' +p138009 +tp138010 +a(g138007 +g138009 +S'imperi,' +p138011 +tp138012 +a(g138009 +g138011 +S'"the' +p138013 +tp138014 +a(g138011 +g138013 +S'offspring' +p138015 +tp138016 +a(g138013 +g138015 +S'of' +p138017 +tp138018 +a(g138015 +g138017 +S'the' +p138019 +tp138020 +a(g138017 +g138019 +S'empire,"' +p138021 +tp138022 +a(g138019 +g138021 +S'reflects' +p138023 +tp138024 +a(g138021 +g138023 +S'the' +p138025 +tp138026 +a(g138023 +g138025 +S'dynastic' +p138027 +tp138028 +a(g138025 +g138027 +S'aspirations' +p138029 +tp138030 +a(g138027 +g138029 +S'of' +p138031 +tp138032 +a(g138029 +g138031 +S'henri' +p138033 +tp138034 +a(g138031 +g138033 +S'and' +p138035 +tp138036 +a(g138033 +g138035 +S'marie,' +p138037 +tp138038 +a(g138035 +g138037 +S'based' +p138039 +tp138040 +a(g138037 +g138039 +S'on' +p138041 +tp138042 +a(g138039 +g138041 +S'their' +p138043 +tp138044 +a(g138041 +g138043 +S'hopes' +p138045 +tp138046 +a(g138043 +g138045 +S'for' +p138047 +tp138048 +a(g138045 +g138047 +S'young' +p138049 +tp138050 +a(g138047 +g138049 +S"louis'" +p138051 +tp138052 +a(g138049 +g138051 +S'future.' +p138053 +tp138054 +a(g138051 +g138053 +S'rubens' +p138055 +tp138056 +a(g138053 +g138055 +S'served' +p138057 +tp138058 +a(g138055 +g138057 +S'albert' +p138059 +tp138060 +a(g138057 +g138059 +S'and' +p138061 +tp138062 +a(g138059 +g138061 +S'isabella,' +p138063 +tp138064 +a(g138061 +g138063 +S'the' +p138065 +tp138066 +a(g138063 +g138065 +S'spanish' +p138067 +tp138068 +a(g138065 +g138067 +S'governors' +p138069 +tp138070 +a(g138067 +g138069 +S'of' +p138071 +tp138072 +a(g138069 +g138071 +S'the' +p138073 +tp138074 +a(g138071 +g138073 +S'netherlands,' +p138075 +tp138076 +a(g138073 +g138075 +S'as' +p138077 +tp138078 +a(g138075 +g138077 +S'both' +p138079 +tp138080 +a(g138077 +g138079 +S'court' +p138081 +tp138082 +a(g138079 +g138081 +S'artist' +p138083 +tp138084 +a(g138081 +g138083 +S'and' +p138085 +tp138086 +a(g138083 +g138085 +S'diplomat.' +p138087 +tp138088 +a(g138085 +g138087 +S'isabella' +p138089 +tp138090 +a(g138087 +g138089 +S'commissioned' +p138091 +tp138092 +a(g138089 +g138091 +S'rubens' +p138093 +tp138094 +a(g138091 +g138093 +S'to' +p138095 +tp138096 +a(g138093 +g138095 +S'design' +p138097 +tp138098 +a(g138095 +g138097 +S'twenty' +p138099 +tp138100 +a(g138097 +g138099 +S'tapestries' +p138101 +tp138102 +a(g138099 +g138101 +S'for' +p138103 +tp138104 +a(g138101 +g138103 +S'the' +p138105 +tp138106 +a(g138103 +g138105 +S'convent' +p138107 +tp138108 +a(g138105 +g138107 +S'of' +p138109 +tp138110 +a(g138107 +g138109 +S'the' +p138111 +tp138112 +a(g138109 +g138111 +S'poor' +p138113 +tp138114 +a(g138111 +g138113 +S'clares' +p138115 +tp138116 +a(g138113 +g138115 +S'in' +p138117 +tp138118 +a(g138115 +g138117 +S'madrid,' +p138119 +tp138120 +a(g138117 +g138119 +S'where' +p138121 +tp138122 +a(g138119 +g138121 +S'she' +p138123 +tp138124 +a(g138121 +g138123 +S'had' +p138125 +tp138126 +a(g138123 +g138125 +S'lived' +p138127 +tp138128 +a(g138125 +g138127 +S'and' +p138129 +tp138130 +a(g138127 +g138129 +S'studied' +p138131 +tp138132 +a(g138129 +g138131 +S'as' +p138133 +tp138134 +a(g138131 +g138133 +S'a' +p138135 +tp138136 +a(g138133 +g138135 +S'girl.' +p138137 +tp138138 +a(g138135 +g138137 +S'woven' +p138139 +tp138140 +a(g138137 +g138139 +S'in' +p138141 +tp138142 +a(g138139 +g138141 +S'brussels,' +p138143 +tp138144 +a(g138141 +g138143 +S'the' +p138145 +tp138146 +a(g138143 +g138145 +S'series—which' +p138147 +tp138148 +a(g138145 +g138147 +S'is' +p138149 +tp138150 +a(g138147 +g138149 +S'still' +p138151 +tp138152 +a(g138149 +g138151 +S'in' +p138153 +tp138154 +a(g138151 +g138153 +S'the' +p138155 +tp138156 +a(g138153 +g138155 +S'convent' +p138157 +tp138158 +a(g138155 +g138157 +S'(now' +p138159 +tp138160 +a(g138157 +g138159 +S'a' +p138161 +tp138162 +a(g138159 +g138161 +S'museum)—celebrated' +p138163 +tp138164 +a(g138161 +g138163 +S'the' +p138165 +tp138166 +a(g138163 +g138165 +S'eucharist,' +p138167 +tp138168 +a(g138165 +g138167 +S'the' +p138169 +tp138170 +a(g138167 +g138169 +S'christian' +p138171 +tp138172 +a(g138169 +g138171 +S'sacrament' +p138173 +tp138174 +a(g138171 +g138173 +S'that' +p138175 +tp138176 +a(g138173 +g138175 +S'reenacts' +p138177 +tp138178 +a(g138175 +g138177 +S"jesus'" +p138179 +tp138180 +a(g138177 +g138179 +S'transformation' +p138181 +tp138182 +a(g138179 +g138181 +S'of' +p138183 +tp138184 +a(g138181 +g138183 +S'bread' +p138185 +tp138186 +a(g138183 +g138185 +S'and' +p138187 +tp138188 +a(g138185 +g138187 +S'wine' +p138189 +tp138190 +a(g138187 +g138189 +S'into' +p138191 +tp138192 +a(g138189 +g138191 +S'his' +p138193 +tp138194 +a(g138191 +g138193 +S'body' +p138195 +tp138196 +a(g138193 +g138195 +S'and' +p138197 +tp138198 +a(g138195 +g138197 +S'blood' +p138199 +tp138200 +a(g138197 +g138199 +S'at' +p138201 +tp138202 +a(g138199 +g138201 +S'the' +p138203 +tp138204 +a(g138201 +g138203 +S'last' +p138205 +tp138206 +a(g138203 +g138205 +S'supper.' +p138207 +tp138208 +a(g138205 +g138207 +S'this' +p138209 +tp138210 +a(g138207 +g138209 +S'painting' +p138211 +tp138212 +a(g138209 +g138211 +S'is' +p138213 +tp138214 +a(g138211 +g138213 +S'a' +p138215 +tp138216 +a(g138213 +g138215 +S'rubens' +p138217 +tp138218 +a(g138215 +g138217 +S'presents' +p138219 +tp138220 +a(g138217 +g138219 +S'the' +p138221 +tp138222 +a(g138219 +g138221 +S'narrative' +p138223 +tp138224 +a(g138221 +g138223 +S'as' +p138225 +tp138226 +a(g138223 +g138225 +S'though' +p138227 +tp138228 +a(g138225 +g138227 +S'it' +p138229 +tp138230 +a(g138227 +g138229 +S'appears' +p138231 +tp138232 +a(g138229 +g138231 +S'on' +p138233 +tp138234 +a(g138231 +g138233 +S'a' +p138235 +tp138236 +a(g138233 +g138235 +S'tapestry' +p138237 +tp138238 +a(g138235 +g138237 +S'itself.' +p138239 +tp138240 +a(g138237 +g138239 +S'cherubs' +p138241 +tp138242 +a(g138239 +g138241 +S'carry' +p138243 +tp138244 +a(g138241 +g138243 +S'the' +p138245 +tp138246 +a(g138243 +g138245 +S'heavy,' +p138247 +tp138248 +a(g138245 +g138247 +S'fringed' +p138249 +tp138250 +a(g138247 +g138249 +S'fabric' +p138251 +tp138252 +a(g138249 +g138251 +S'before' +p138253 +tp138254 +a(g138251 +g138253 +S'an' +p138255 +tp138256 +a(g138253 +g138255 +S'imposing' +p138257 +tp138258 +a(g138255 +g138257 +S'architectural' +p138259 +tp138260 +a(g138257 +g138259 +S'setting.' +p138261 +tp138262 +a(g138259 +g138261 +S'on' +p138263 +tp138264 +a(g138261 +g138263 +S'the' +p138265 +tp138266 +a(g138263 +g138265 +S'right,' +p138267 +tp138268 +a(g138265 +g138267 +S'two' +p138269 +tp138270 +a(g138267 +g138269 +S'attendants' +p138271 +tp138272 +a(g138269 +g138271 +S'seem' +p138273 +tp138274 +a(g138271 +g138273 +S'to' +p138275 +tp138276 +a(g138273 +g138275 +S'climb' +p138277 +tp138278 +a(g138275 +g138277 +S'from' +p138279 +tp138280 +a(g138277 +g138279 +S'a' +p138281 +tp138282 +a(g138279 +g138281 +S'wine' +p138283 +tp138284 +a(g138281 +g138283 +S'cellar.' +p138285 +tp138286 +a(g138283 +g138285 +S'are' +p138287 +tp138288 +a(g138285 +g138287 +S'they' +p138289 +tp138290 +a(g138287 +g138289 +S'real' +p138291 +tp138292 +a(g138289 +g138291 +S'men' +p138293 +tp138294 +a(g138291 +g138293 +S'standing' +p138295 +tp138296 +a(g138293 +g138295 +S'in' +p138297 +tp138298 +a(g138295 +g138297 +S'front' +p138299 +tp138300 +a(g138297 +g138299 +S'of' +p138301 +tp138302 +a(g138299 +g138301 +S'the' +p138303 +tp138304 +a(g138301 +g138303 +S'tapestry,' +p138305 +tp138306 +a(g138303 +g138305 +S'or' +p138307 +tp138308 +a(g138305 +g138307 +S'images' +p138309 +tp138310 +a(g138307 +g138309 +S'woven' +p138311 +tp138312 +a(g138309 +g138311 +S'inside' +p138313 +tp138314 +a(g138311 +g138313 +S'it?' +p138315 +tp138316 +a(g138313 +g138315 +S'such' +p138317 +tp138318 +a(g138315 +g138317 +S'confounding' +p138319 +tp138320 +a(g138317 +g138319 +S'illusion' +p138321 +tp138322 +a(g138319 +g138321 +S'delighted' +p138323 +tp138324 +a(g138321 +g138323 +S'baroque' +p138325 +tp138326 +a(g138323 +g138325 +S'audiences.' +p138327 +tp138328 +a(g138325 +g138327 +S"cézanne's" +p138329 +tp138330 +a(g138327 +g138329 +S'paintings' +p138331 +tp138332 +a(g138329 +g138331 +S'after' +p138333 +tp138334 +a(g138331 +g138333 +S'about' +p138335 +tp138336 +a(g138333 +g138335 +S'1895' +p138337 +tp138338 +a(g138335 +g138337 +S'are' +p138339 +tp138340 +a(g138337 +g138339 +S'more' +p138341 +tp138342 +a(g138339 +g138341 +S'somber,' +p138343 +tp138344 +a(g138341 +g138343 +S'more' +p138345 +tp138346 +a(g138343 +g138345 +S'mysterious' +p138347 +tp138348 +a(g138345 +g138347 +S'than' +p138349 +tp138350 +a(g138347 +g138349 +S'those' +p138351 +tp138352 +a(g138349 +g138351 +S'of' +p138353 +tp138354 +a(g138351 +g138353 +S'earlier' +p138355 +tp138356 +a(g138353 +g138355 +S'years.' +p138357 +tp138358 +a(g138355 +g138357 +S'his' +p138359 +tp138360 +a(g138357 +g138359 +S'colors' +p138361 +tp138362 +a(g138359 +g138361 +S'deepen,' +p138363 +tp138364 +a(g138361 +g138363 +S'and' +p138365 +tp138366 +a(g138363 +g138365 +S'his' +p138367 +tp138368 +a(g138365 +g138367 +S'brushwork' +p138369 +tp138370 +a(g138367 +g138369 +S'assumes' +p138371 +tp138372 +a(g138369 +g138371 +S'greater' +p138373 +tp138374 +a(g138371 +g138373 +S'expression.' +p138375 +tp138376 +a(g138373 +g138375 +S'spaces' +p138377 +tp138378 +a(g138375 +g138377 +S'become' +p138379 +tp138380 +a(g138377 +g138379 +S'more' +p138381 +tp138382 +a(g138379 +g138381 +S'enclosed.' +p138383 +tp138384 +a(g138381 +g138383 +S'compare' +p138385 +tp138386 +a(g138383 +g138385 +S'this' +p138387 +tp138388 +a(g138385 +g138387 +S'landscape' +p138389 +tp138390 +a(g138387 +g138389 +S'with' +p138391 +tp138392 +a(g138389 +g138391 +S'that' +p138393 +tp138394 +a(g138391 +g138393 +S'painting' +p138395 +tp138396 +a(g138393 +g138395 +S'is' +p138397 +tp138398 +a(g138395 +g138397 +S'open,' +p138399 +tp138400 +a(g138397 +g138399 +S'while' +p138401 +tp138402 +a(g138399 +g138401 +S'a' +p138403 +tp138404 +a(g138401 +g138403 +S'web' +p138405 +tp138406 +a(g138403 +g138405 +S'of' +p138407 +tp138408 +a(g138405 +g138407 +S'branches' +p138409 +tp138410 +a(g138407 +g138409 +S'screens' +p138411 +tp138412 +a(g138409 +g138411 +S'this' +p138413 +tp138414 +a(g138411 +g138413 +S'one.' +p138415 +tp138416 +a(g138413 +g138415 +S'this' +p138417 +tp138418 +a(g138415 +g138417 +S'place' +p138419 +tp138420 +a(g138417 +g138419 +S'is' +p138421 +tp138422 +a(g138419 +g138421 +S'crabbed' +p138423 +tp138424 +a(g138421 +g138423 +S'and' +p138425 +tp138426 +a(g138423 +g138425 +S'remote—much' +p138427 +tp138428 +a(g138425 +g138427 +S'more' +p138429 +tp138430 +a(g138427 +g138429 +S'difficult' +p138431 +tp138432 +a(g138429 +g138431 +S'and' +p138433 +tp138434 +a(g138431 +g138433 +S'forbidding.' +p138435 +tp138436 +a(g138433 +g138435 +S'compare' +p138437 +tp138438 +a(g138435 +g138437 +S'the' +p138439 +tp138440 +a(g138437 +g138439 +S'skies,' +p138441 +tp138442 +a(g138439 +g138441 +S'too.' +p138443 +tp138444 +a(g138441 +g138443 +S'this' +p138445 +tp138446 +a(g138443 +g138445 +S'blue' +p138447 +tp138448 +a(g138445 +g138447 +S'is' +p138449 +tp138450 +a(g138447 +g138449 +S'no' +p138451 +tp138452 +a(g138449 +g138451 +S'longer' +p138453 +tp138454 +a(g138451 +g138453 +S'airy,' +p138455 +tp138456 +a(g138453 +g138455 +S'but' +p138457 +tp138458 +a(g138455 +g138457 +S'leaden,' +p138459 +tp138460 +a(g138457 +g138459 +S'darkened' +p138461 +tp138462 +a(g138459 +g138461 +S'with' +p138463 +tp138464 +a(g138461 +g138463 +S'touches' +p138465 +tp138466 +a(g138463 +g138465 +S'of' +p138467 +tp138468 +a(g138465 +g138467 +S'purple' +p138469 +tp138470 +a(g138467 +g138469 +S'and' +p138471 +tp138472 +a(g138469 +g138471 +S'green.' +p138473 +tp138474 +a(g138471 +g138473 +S'even' +p138475 +tp138476 +a(g138473 +g138475 +S'the' +p138477 +tp138478 +a(g138475 +g138477 +S'pale' +p138479 +tp138480 +a(g138477 +g138479 +S'buildings' +p138481 +tp138482 +a(g138479 +g138481 +S'have' +p138483 +tp138484 +a(g138481 +g138483 +S'been' +p138485 +tp138486 +a(g138483 +g138485 +S'replaced' +p138487 +tp138488 +a(g138485 +g138487 +S'by' +p138489 +tp138490 +a(g138487 +g138489 +S'a' +p138491 +tp138492 +a(g138489 +g138491 +S'deeper' +p138493 +tp138494 +a(g138491 +g138493 +S'ocher.' +p138495 +tp138496 +a(g138493 +g138495 +S'late' +p138497 +tp138498 +a(g138495 +g138497 +S'in' +p138499 +tp138500 +a(g138497 +g138499 +S'his' +p138501 +tp138502 +a(g138499 +g138501 +S'life' +p138503 +tp138504 +a(g138501 +g138503 +S'cézanne' +p138505 +tp138506 +a(g138503 +g138505 +S'was' +p138507 +tp138508 +a(g138505 +g138507 +S'attracted' +p138509 +tp138510 +a(g138507 +g138509 +S'not' +p138511 +tp138512 +a(g138509 +g138511 +S'only' +p138513 +tp138514 +a(g138511 +g138513 +S'to' +p138515 +tp138516 +a(g138513 +g138515 +S'the' +p138517 +tp138518 +a(g138515 +g138517 +S'fundamental' +p138519 +tp138520 +a(g138517 +g138519 +S'order' +p138521 +tp138522 +a(g138519 +g138521 +S'of' +p138523 +tp138524 +a(g138521 +g138523 +S'nature,' +p138525 +tp138526 +a(g138523 +g138525 +S'but' +p138527 +tp138528 +a(g138525 +g138527 +S'also' +p138529 +tp138530 +a(g138527 +g138529 +S'its' +p138531 +tp138532 +a(g138529 +g138531 +S'chaos' +p138533 +tp138534 +a(g138531 +g138533 +S'and' +p138535 +tp138536 +a(g138533 +g138535 +S'restlessness.' +p138537 +tp138538 +a(g138535 +g138537 +S'the' +p138539 +tp138540 +a(g138537 +g138539 +S'moody' +p138541 +tp138542 +a(g138539 +g138541 +S'loneliness' +p138543 +tp138544 +a(g138541 +g138543 +S'of' +p138545 +tp138546 +a(g138543 +g138545 +S'this' +p138547 +tp138548 +a(g138545 +g138547 +S'place' +p138549 +tp138550 +a(g138547 +g138549 +S'seems' +p138551 +tp138552 +a(g138549 +g138551 +S'matched' +p138553 +tp138554 +a(g138551 +g138553 +S'to' +p138555 +tp138556 +a(g138553 +g138555 +S'his' +p138557 +tp138558 +a(g138555 +g138557 +S'own.' +p138559 +tp138560 +a(g138557 +g138559 +S'he' +p138561 +tp138562 +a(g138559 +g138561 +S'painted' +p138563 +tp138564 +a(g138561 +g138563 +S'château' +p138565 +tp138566 +a(g138563 +g138565 +S'noir' +p138567 +tp138568 +a(g138565 +g138567 +S'several' +p138569 +tp138570 +a(g138567 +g138569 +S'times.' +p138571 +tp138572 +a(g138569 +g138571 +S'it' +p138573 +tp138574 +a(g138571 +g138573 +S'was' +p138575 +tp138576 +a(g138573 +g138575 +S'the' +p138577 +tp138578 +a(g138575 +g138577 +S'subject' +p138579 +tp138580 +a(g138577 +g138579 +S'of' +p138581 +tp138582 +a(g138579 +g138581 +S'local' +p138583 +tp138584 +a(g138581 +g138583 +S'legends' +p138585 +tp138586 +a(g138583 +g138585 +S'and' +p138587 +tp138588 +a(g138585 +g138587 +S'had' +p138589 +tp138590 +a(g138587 +g138589 +S'earlier' +p138591 +tp138592 +a(g138589 +g138591 +S'been' +p138593 +tp138594 +a(g138591 +g138593 +S'called' +p138595 +tp138596 +a(g138593 +g138595 +S'château' +p138597 +tp138598 +a(g138595 +g138597 +S'diable,' +p138599 +tp138600 +a(g138597 +g138599 +S'"castle' +p138601 +tp138602 +a(g138599 +g138601 +S'of' +p138603 +tp138604 +a(g138601 +g138603 +S'the' +p138605 +tp138606 +a(g138603 +g138605 +S'devil."' +p138607 +tp138608 +a(g138605 +g138607 +S'with' +p138609 +tp138610 +a(g138607 +g138609 +S'its' +p138611 +tp138612 +a(g138609 +g138611 +S'gothic' +p138613 +tp138614 +a(g138611 +g138613 +S'windows' +p138615 +tp138616 +a(g138613 +g138615 +S'and' +p138617 +tp138618 +a(g138615 +g138617 +S'incomplete' +p138619 +tp138620 +a(g138617 +g138619 +S'walls,' +p138621 +tp138622 +a(g138619 +g138621 +S'it' +p138623 +tp138624 +a(g138621 +g138623 +S'has' +p138625 +tp138626 +a(g138623 +g138625 +S'the' +p138627 +tp138628 +a(g138625 +g138627 +S'look' +p138629 +tp138630 +a(g138627 +g138629 +S'of' +p138631 +tp138632 +a(g138629 +g138631 +S'a' +p138633 +tp138634 +a(g138631 +g138633 +S'ruin.' +p138635 +tp138636 +a(g138633 +g138635 +S'cézanne' +p138637 +tp138638 +a(g138635 +g138637 +S'still' +p138639 +tp138640 +a(g138637 +g138639 +S'painted' +p138641 +tp138642 +a(g138639 +g138641 +S'in' +p138643 +tp138644 +a(g138641 +g138643 +S'the' +p138645 +tp138646 +a(g138643 +g138645 +S'open' +p138647 +tp138648 +a(g138645 +g138647 +S'air,' +p138649 +tp138650 +a(g138647 +g138649 +S'directly' +p138651 +tp138652 +a(g138649 +g138651 +S'in' +p138653 +tp138654 +a(g138651 +g138653 +S'front' +p138655 +tp138656 +a(g138653 +g138655 +S'of' +p138657 +tp138658 +a(g138655 +g138657 +S'his' +p138659 +tp138660 +a(g138657 +g138659 +S'subject,' +p138661 +tp138662 +a(g138659 +g138661 +S'as' +p138663 +tp138664 +a(g138661 +g138663 +S'impressionist' +p138665 +tp138666 +a(g138663 +g138665 +S'camille' +p138667 +tp138668 +a(g138665 +g138667 +S'pissarro' +p138669 +tp138670 +a(g138667 +g138669 +S'had' +p138671 +tp138672 +a(g138669 +g138671 +S'encouraged' +p138673 +tp138674 +a(g138671 +g138673 +S'him' +p138675 +tp138676 +a(g138673 +g138675 +S'to' +p138677 +tp138678 +a(g138675 +g138677 +S'do.' +p138679 +tp138680 +a(g138677 +g138679 +S'but' +p138681 +tp138682 +a(g138679 +g138681 +S'this' +p138683 +tp138684 +a(g138681 +g138683 +S'is' +p138685 +tp138686 +a(g138683 +g138685 +S'far' +p138687 +tp138688 +a(g138685 +g138687 +S'from' +p138689 +tp138690 +a(g138687 +g138689 +S'a' +p138691 +tp138692 +a(g138689 +g138691 +S'quick' +p138693 +tp138694 +a(g138691 +g138693 +S'recording' +p138695 +tp138696 +a(g138693 +g138695 +S'of' +p138697 +tp138698 +a(g138695 +g138697 +S'fleeting' +p138699 +tp138700 +a(g138697 +g138699 +S'visual' +p138701 +tp138702 +a(g138699 +g138701 +S'effects.' +p138703 +tp138704 +a(g138701 +g138703 +S'it' +p138705 +tp138706 +a(g138703 +g138705 +S'is' +p138707 +tp138708 +a(g138705 +g138707 +S'a' +p138709 +tp138710 +a(g138707 +g138709 +S'long' +p138711 +tp138712 +a(g138709 +g138711 +S'and' +p138713 +tp138714 +a(g138711 +g138713 +S'intense' +p138715 +tp138716 +a(g138713 +g138715 +S'meditation,' +p138717 +tp138718 +a(g138715 +g138717 +S'an' +p138719 +tp138720 +a(g138717 +g138719 +S'attempt' +p138721 +tp138722 +a(g138719 +g138721 +S'to' +p138723 +tp138724 +a(g138721 +g138723 +S'"realize"—to' +p138725 +tp138726 +a(g138723 +g138725 +S'use' +p138727 +tp138728 +a(g138725 +g138727 +S"cézanne's" +p138729 +tp138730 +a(g138727 +g138729 +S'word—his' +p138731 +tp138732 +a(g138729 +g138731 +S'complete' +p138733 +tp138734 +a(g138731 +g138733 +S'sensation' +p138735 +tp138736 +a(g138733 +g138735 +S'of' +p138737 +tp138738 +a(g138735 +g138737 +S'this' +p138739 +tp138740 +a(g138737 +g138739 +S'place,' +p138741 +tp138742 +a(g138739 +g138741 +S'which' +p138743 +tp138744 +a(g138741 +g138743 +S'involves' +p138745 +tp138746 +a(g138743 +g138745 +S'his' +p138747 +tp138748 +a(g138745 +g138747 +S'temperament,' +p138749 +tp138750 +a(g138747 +g138749 +S'his' +p138751 +tp138752 +a(g138749 +g138751 +S'vision,' +p138753 +tp138754 +a(g138751 +g138753 +S'and' +p138755 +tp138756 +a(g138753 +g138755 +S'his' +p138757 +tp138758 +a(g138755 +g138757 +S'mind' +p138759 +tp138760 +a(g138757 +g138759 +S'equally.' +p138761 +tp138762 +a(g138759 +g138761 +S'this' +p138763 +tp138764 +a(g138761 +g138763 +S'portrait' +p138765 +tp138766 +a(g138763 +g138765 +S'of' +p138767 +tp138768 +a(g138765 +g138767 +S"cézanne's" +p138769 +tp138770 +a(g138767 +g138769 +S'longtime' +p138771 +tp138772 +a(g138769 +g138771 +S'gardener' +p138773 +tp138774 +a(g138771 +g138773 +S'is' +p138775 +tp138776 +a(g138773 +g138775 +S'one' +p138777 +tp138778 +a(g138775 +g138777 +S'of' +p138779 +tp138780 +a(g138777 +g138779 +S'the' +p138781 +tp138782 +a(g138779 +g138781 +S'paintings' +p138783 +tp138784 +a(g138781 +g138783 +S'he' +p138785 +tp138786 +a(g138783 +g138785 +S'was' +p138787 +tp138788 +a(g138785 +g138787 +S'working' +p138789 +tp138790 +a(g138787 +g138789 +S'on' +p138791 +tp138792 +a(g138789 +g138791 +S'in' +p138793 +tp138794 +a(g138791 +g138793 +S'the' +p138795 +tp138796 +a(g138793 +g138795 +S'days' +p138797 +tp138798 +a(g138795 +g138797 +S'just' +p138799 +tp138800 +a(g138797 +g138799 +S'before' +p138801 +tp138802 +a(g138799 +g138801 +S'his' +p138803 +tp138804 +a(g138801 +g138803 +S'death.' +p138805 +tp138806 +a(g138803 +g138805 +S'it' +p138807 +tp138808 +a(g138805 +g138807 +S'occupied' +p138809 +tp138810 +a(g138807 +g138809 +S'him' +p138811 +tp138812 +a(g138809 +g138811 +S'for' +p138813 +tp138814 +a(g138811 +g138813 +S'quite' +p138815 +tp138816 +a(g138813 +g138815 +S'some' +p138817 +tp138818 +a(g138815 +g138817 +S'time.' +p138819 +tp138820 +a(g138817 +g138819 +S'a' +p138821 +tp138822 +a(g138819 +g138821 +S'look' +p138823 +tp138824 +a(g138821 +g138823 +S'at' +p138825 +tp138826 +a(g138823 +g138825 +S'the' +p138827 +tp138828 +a(g138825 +g138827 +S'canvas' +p138829 +tp138830 +a(g138827 +g138829 +S'from' +p138831 +tp138832 +a(g138829 +g138831 +S'an' +p138833 +tp138834 +a(g138831 +g138833 +S'angle' +p138835 +tp138836 +a(g138833 +g138835 +S'reveals' +p138837 +tp138838 +a(g138835 +g138837 +S'heavy' +p138839 +tp138840 +a(g138837 +g138839 +S'ridges' +p138841 +tp138842 +a(g138839 +g138841 +S'of' +p138843 +tp138844 +a(g138841 +g138843 +S'paint,' +p138845 +tp138846 +a(g138843 +g138845 +S'especially' +p138847 +tp138848 +a(g138845 +g138847 +S'along' +p138849 +tp138850 +a(g138847 +g138849 +S'the' +p138851 +tp138852 +a(g138849 +g138851 +S'contours' +p138853 +tp138854 +a(g138851 +g138853 +S'where' +p138855 +tp138856 +a(g138853 +g138855 +S'one' +p138857 +tp138858 +a(g138855 +g138857 +S'shape' +p138859 +tp138860 +a(g138857 +g138859 +S'meets' +p138861 +tp138862 +a(g138859 +g138861 +S'another.' +p138863 +tp138864 +a(g138861 +g138863 +S'around' +p138865 +tp138866 +a(g138863 +g138865 +S"vallier's" +p138867 +tp138868 +a(g138865 +g138867 +S'head' +p138869 +tp138870 +a(g138867 +g138869 +S'extends' +p138871 +tp138872 +a(g138869 +g138871 +S'a' +p138873 +tp138874 +a(g138871 +g138873 +S'thick,' +p138875 +tp138876 +a(g138873 +g138875 +S'dark' +p138877 +tp138878 +a(g138875 +g138877 +S'penumbra—evidence' +p138879 +tp138880 +a(g138877 +g138879 +S'of' +p138881 +tp138882 +a(g138879 +g138881 +S'extensive' +p138883 +tp138884 +a(g138881 +g138883 +S'reworking.' +p138885 +tp138886 +a(g138883 +g138885 +S'similar' +p138887 +tp138888 +a(g138885 +g138887 +S'evidence' +p138889 +tp138890 +a(g138887 +g138889 +S'of' +p138891 +tp138892 +a(g138889 +g138891 +S'his' +p138893 +tp138894 +a(g138891 +g138893 +S'struggles' +p138895 +tp138896 +a(g138893 +g138895 +S'to' +p138897 +tp138898 +a(g138895 +g138897 +S'attain' +p138899 +tp138900 +a(g138897 +g138899 +S'just' +p138901 +tp138902 +a(g138899 +g138901 +S'the' +p138903 +tp138904 +a(g138901 +g138903 +S'right' +p138905 +tp138906 +a(g138903 +g138905 +S'contour' +p138907 +tp138908 +a(g138905 +g138907 +S'can' +p138909 +tp138910 +a(g138907 +g138909 +S'be' +p138911 +tp138912 +a(g138909 +g138911 +S'seen' +p138913 +tp138914 +a(g138911 +g138913 +S'on' +p138915 +tp138916 +a(g138913 +g138915 +S'many' +p138917 +tp138918 +a(g138915 +g138917 +S'of' +p138919 +tp138920 +a(g138917 +g138919 +S'his' +p138921 +tp138922 +a(g138919 +g138921 +S'late' +p138923 +tp138924 +a(g138921 +g138923 +S'works.' +p138925 +tp138926 +a(g138923 +g138925 +S'pigments' +p138927 +tp138928 +a(g138925 +g138927 +S'on' +p138929 +tp138930 +a(g138927 +g138929 +S'dark' +p138931 +tp138932 +a(g138929 +g138931 +S'colors' +p138933 +tp138934 +a(g138931 +g138933 +S'contribute' +p138935 +tp138936 +a(g138933 +g138935 +S'to' +p138937 +tp138938 +a(g138935 +g138937 +S'a' +p138939 +tp138940 +a(g138937 +g138939 +S'sense' +p138941 +tp138942 +a(g138939 +g138941 +S'of' +p138943 +tp138944 +a(g138941 +g138943 +S'airlessness,' +p138945 +tp138946 +a(g138943 +g138945 +S'even' +p138947 +tp138948 +a(g138945 +g138947 +S'gloom.' +p138949 +tp138950 +a(g138947 +g138949 +S'little' +p138951 +tp138952 +a(g138949 +g138951 +S'characterization' +p138953 +tp138954 +a(g138951 +g138953 +S'comes' +p138955 +tp138956 +a(g138953 +g138955 +S'from' +p138957 +tp138958 +a(g138955 +g138957 +S'the' +p138959 +tp138960 +a(g138957 +g138959 +S'face—more' +p138961 +tp138962 +a(g138959 +g138961 +S'than' +p138963 +tp138964 +a(g138961 +g138963 +S'expression' +p138965 +tp138966 +a(g138963 +g138965 +S'it' +p138967 +tp138968 +a(g138965 +g138967 +S'is' +p138969 +tp138970 +a(g138967 +g138969 +S'the' +p138971 +tp138972 +a(g138969 +g138971 +S"gardener's" +p138973 +tp138974 +a(g138971 +g138973 +S'pose' +p138975 +tp138976 +a(g138973 +g138975 +S'that' +p138977 +tp138978 +a(g138975 +g138977 +S'conveys' +p138979 +tp138980 +a(g138977 +g138979 +S'his' +p138981 +tp138982 +a(g138979 +g138981 +S'simple,' +p138983 +tp138984 +a(g138981 +g138983 +S'solid' +p138985 +tp138986 +a(g138983 +g138985 +S'nature.' +p138987 +tp138988 +a(g138985 +g138987 +S'cézanne' +p138989 +tp138990 +a(g138987 +g138989 +S'apparently' +p138991 +tp138992 +a(g138989 +g138991 +S'attached' +p138993 +tp138994 +a(g138991 +g138993 +S'great' +p138995 +tp138996 +a(g138993 +g138995 +S'importance' +p138997 +tp138998 +a(g138995 +g138997 +S'to' +p138999 +tp139000 +a(g138997 +g138999 +S'this' +p139001 +tp139002 +a(g138999 +g139001 +S'painting,' +p139003 +tp139004 +a(g139001 +g139003 +S'one' +p139005 +tp139006 +a(g139003 +g139005 +S'of' +p139007 +tp139008 +a(g139005 +g139007 +S'several' +p139009 +tp139010 +a(g139007 +g139009 +S'of' +p139011 +tp139012 +a(g139009 +g139011 +S'vallier' +p139013 +tp139014 +a(g139011 +g139013 +S'begun' +p139015 +tp139016 +a(g139013 +g139015 +S'several' +p139017 +tp139018 +a(g139015 +g139017 +S'years' +p139019 +tp139020 +a(g139017 +g139019 +S'earlier.' +p139021 +tp139022 +a(g139019 +g139021 +S'he' +p139023 +tp139024 +a(g139021 +g139023 +S'told' +p139025 +tp139026 +a(g139023 +g139025 +S'visitors' +p139027 +tp139028 +a(g139025 +g139027 +S'who' +p139029 +tp139030 +a(g139027 +g139029 +S'saw' +p139031 +tp139032 +a(g139029 +g139031 +S'it' +p139033 +tp139034 +a(g139031 +g139033 +S'still' +p139035 +tp139036 +a(g139033 +g139035 +S'unfinished' +p139037 +tp139038 +a(g139035 +g139037 +S'in' +p139039 +tp139040 +a(g139037 +g139039 +S'his' +p139041 +tp139042 +a(g139039 +g139041 +S'studio,' +p139043 +tp139044 +a(g139041 +g139043 +S'"if' +p139045 +tp139046 +a(g139043 +g139045 +S'i' +p139047 +tp139048 +a(g139045 +g139047 +S'succeed' +p139049 +tp139050 +a(g139047 +g139049 +S'with' +p139051 +tp139052 +a(g139049 +g139051 +S'this' +p139053 +tp139054 +a(g139051 +g139053 +S'fellow,' +p139055 +tp139056 +a(g139053 +g139055 +S'it' +p139057 +tp139058 +a(g139055 +g139057 +S'will' +p139059 +tp139060 +a(g139057 +g139059 +S'mean' +p139061 +tp139062 +a(g139059 +g139061 +S'that' +p139063 +tp139064 +a(g139061 +g139063 +S'the' +p139065 +tp139066 +a(g139063 +g139065 +S'theory' +p139067 +tp139068 +a(g139065 +g139067 +S'was' +p139069 +tp139070 +a(g139067 +g139069 +S'correct."' +p139071 +tp139072 +a(g139069 +g139071 +S'as' +p139073 +tp139074 +a(g139071 +g139073 +S'late' +p139075 +tp139076 +a(g139073 +g139075 +S'as' +p139077 +tp139078 +a(g139075 +g139077 +S'1906,' +p139079 +tp139080 +a(g139077 +g139079 +S'the' +p139081 +tp139082 +a(g139079 +g139081 +S'year' +p139083 +tp139084 +a(g139081 +g139083 +S'he' +p139085 +tp139086 +a(g139083 +g139085 +S'died,' +p139087 +tp139088 +a(g139085 +g139087 +S'associates' +p139089 +tp139090 +a(g139087 +g139089 +S'said' +p139091 +tp139092 +a(g139089 +g139091 +S'cézanne' +p139093 +tp139094 +a(g139091 +g139093 +S'was' +p139095 +tp139096 +a(g139093 +g139095 +S'still' +p139097 +tp139098 +a(g139095 +g139097 +S'planning' +p139099 +tp139100 +a(g139097 +g139099 +S'to' +p139101 +tp139102 +a(g139099 +g139101 +S'"write' +p139103 +tp139104 +a(g139101 +g139103 +S'out' +p139105 +tp139106 +a(g139103 +g139105 +S'his' +p139107 +tp139108 +a(g139105 +g139107 +S'ideas' +p139109 +tp139110 +a(g139107 +g139109 +S'on' +p139111 +tp139112 +a(g139109 +g139111 +S'painting."' +p139113 +tp139114 +a(g139111 +g139113 +S'but' +p139115 +tp139116 +a(g139113 +g139115 +S'he' +p139117 +tp139118 +a(g139115 +g139117 +S'did' +p139119 +tp139120 +a(g139117 +g139119 +S'not.' +p139121 +tp139122 +a(g139119 +g139121 +S'we' +p139123 +tp139124 +a(g139121 +g139123 +S'have' +p139125 +tp139126 +a(g139123 +g139125 +S'only' +p139127 +tp139128 +a(g139125 +g139127 +S'letters' +p139129 +tp139130 +a(g139127 +g139129 +S'and' +p139131 +tp139132 +a(g139129 +g139131 +S'comments' +p139133 +tp139134 +a(g139131 +g139133 +S'recalled' +p139135 +tp139136 +a(g139133 +g139135 +S'by' +p139137 +tp139138 +a(g139135 +g139137 +S'others.' +p139139 +tp139140 +a(g139137 +g139139 +S'out' +p139141 +tp139142 +a(g139139 +g139141 +S'of' +p139143 +tp139144 +a(g139141 +g139143 +S'context,' +p139145 +tp139146 +a(g139143 +g139145 +S'many' +p139147 +tp139148 +a(g139145 +g139147 +S'seem' +p139149 +tp139150 +a(g139147 +g139149 +S'contradictory,' +p139151 +tp139152 +a(g139149 +g139151 +S'and' +p139153 +tp139154 +a(g139151 +g139153 +S'others' +p139155 +tp139156 +a(g139153 +g139155 +S'are' +p139157 +tp139158 +a(g139155 +g139157 +S'colored' +p139159 +tp139160 +a(g139157 +g139159 +S'by' +p139161 +tp139162 +a(g139159 +g139161 +S'the' +p139163 +tp139164 +a(g139161 +g139163 +S'ideas' +p139165 +tp139166 +a(g139163 +g139165 +S'of' +p139167 +tp139168 +a(g139165 +g139167 +S'those' +p139169 +tp139170 +a(g139167 +g139169 +S'reporting' +p139171 +tp139172 +a(g139169 +g139171 +S'them.' +p139173 +tp139174 +a(g139171 +g139173 +S'philibert' +p139175 +tp139176 +a(g139173 +g139175 +S'rouvière' +p139177 +tp139178 +a(g139175 +g139177 +S'stands' +p139179 +tp139180 +a(g139177 +g139179 +S'before' +p139181 +tp139182 +a(g139179 +g139181 +S'us' +p139183 +tp139184 +a(g139181 +g139183 +S'as' +p139185 +tp139186 +a(g139183 +g139185 +S'he' +p139187 +tp139188 +a(g139185 +g139187 +S'did' +p139189 +tp139190 +a(g139187 +g139189 +S'before' +p139191 +tp139192 +a(g139189 +g139191 +S'parisian' +p139193 +tp139194 +a(g139191 +g139193 +S'theatergoers' +p139195 +tp139196 +a(g139193 +g139195 +S'as' +p139197 +tp139198 +a(g139195 +g139197 +S"shakespeare's" +p139199 +tp139200 +a(g139197 +g139199 +S'melancholy' +p139201 +tp139202 +a(g139199 +g139201 +S'prince' +p139203 +tp139204 +a(g139201 +g139203 +S'of' +p139205 +tp139206 +a(g139203 +g139205 +S'denmark,' +p139207 +tp139208 +a(g139205 +g139207 +S'isolated' +p139209 +tp139210 +a(g139207 +g139209 +S'on' +p139211 +tp139212 +a(g139209 +g139211 +S'stage' +p139213 +tp139214 +a(g139211 +g139213 +S'during' +p139215 +tp139216 +a(g139213 +g139215 +S'one' +p139217 +tp139218 +a(g139215 +g139217 +S'of' +p139219 +tp139220 +a(g139217 +g139219 +S'the' +p139221 +tp139222 +a(g139219 +g139221 +S"play's" +p139223 +tp139224 +a(g139221 +g139223 +S'great' +p139225 +tp139226 +a(g139223 +g139225 +S'soliloquies.' +p139227 +tp139228 +a(g139225 +g139227 +S'the' +p139229 +tp139230 +a(g139227 +g139229 +S'actor,' +p139231 +tp139232 +a(g139229 +g139231 +S'who' +p139233 +tp139234 +a(g139231 +g139233 +S'had' +p139235 +tp139236 +a(g139233 +g139235 +S'been' +p139237 +tp139238 +a(g139235 +g139237 +S'trained' +p139239 +tp139240 +a(g139237 +g139239 +S'as' +p139241 +tp139242 +a(g139239 +g139241 +S'a' +p139243 +tp139244 +a(g139241 +g139243 +S'painter,' +p139245 +tp139246 +a(g139243 +g139245 +S'modeled' +p139247 +tp139248 +a(g139245 +g139247 +S'his' +p139249 +tp139250 +a(g139247 +g139249 +S'portrayal' +p139251 +tp139252 +a(g139249 +g139251 +S'of' +p139253 +tp139254 +a(g139251 +g139253 +S'hamlet' +p139255 +tp139256 +a(g139253 +g139255 +S'on' +p139257 +tp139258 +a(g139255 +g139257 +S'engravings' +p139259 +tp139260 +a(g139257 +g139259 +S'of' +p139261 +tp139262 +a(g139259 +g139261 +S'scenes' +p139263 +tp139264 +a(g139261 +g139263 +S'from' +p139265 +tp139266 +a(g139263 +g139265 +S'the' +p139267 +tp139268 +a(g139265 +g139267 +S'play' +p139269 +tp139270 +a(g139267 +g139269 +S'by' +p139271 +tp139272 +a(g139269 +g139271 +S'there' +p139273 +tp139274 +a(g139271 +g139273 +S'was' +p139275 +tp139276 +a(g139273 +g139275 +S'a' +p139277 +tp139278 +a(g139275 +g139277 +S'long' +p139279 +tp139280 +a(g139277 +g139279 +S'french' +p139281 +tp139282 +a(g139279 +g139281 +S'tradition' +p139283 +tp139284 +a(g139281 +g139283 +S'of' +p139285 +tp139286 +a(g139283 +g139285 +S'painting' +p139287 +tp139288 +a(g139285 +g139287 +S'actors' +p139289 +tp139290 +a(g139287 +g139289 +S'in' +p139291 +tp139292 +a(g139289 +g139291 +S'their' +p139293 +tp139294 +a(g139291 +g139293 +S'most' +p139295 +tp139296 +a(g139293 +g139295 +S'famous' +p139297 +tp139298 +a(g139295 +g139297 +S'roles,' +p139299 +tp139300 +a(g139297 +g139299 +S'but' +p139301 +tp139302 +a(g139299 +g139301 +S"manet's" +p139303 +tp139304 +a(g139301 +g139303 +S'rouvière' +p139305 +tp139306 +a(g139303 +g139305 +S'may' +p139307 +tp139308 +a(g139305 +g139307 +S'also' +p139309 +tp139310 +a(g139307 +g139309 +S'owe' +p139311 +tp139312 +a(g139309 +g139311 +S'something' +p139313 +tp139314 +a(g139311 +g139313 +S'to' +p139315 +tp139316 +a(g139313 +g139315 +S'a' +p139317 +tp139318 +a(g139315 +g139317 +S'work' +p139319 +tp139320 +a(g139317 +g139319 +S'by' +p139321 +tp139322 +a(g139319 +g139321 +S'john' +p139323 +tp139324 +a(g139321 +g139323 +S'singleton' +p139325 +tp139326 +a(g139323 +g139325 +S'copley,' +p139327 +tp139328 +a(g139325 +g139327 +S"america's" +p139329 +tp139330 +a(g139327 +g139329 +S'most' +p139331 +tp139332 +a(g139329 +g139331 +S'important' +p139333 +tp139334 +a(g139331 +g139333 +S'colonial' +p139335 +tp139336 +a(g139333 +g139335 +S'painter,' +p139337 +tp139338 +a(g139335 +g139337 +S'was' +p139339 +tp139340 +a(g139337 +g139339 +S'born' +p139341 +tp139342 +a(g139339 +g139341 +S'in' +p139343 +tp139344 +a(g139341 +g139343 +S'boston' +p139345 +tp139346 +a(g139343 +g139345 +S'of' +p139347 +tp139348 +a(g139345 +g139347 +S'irish' +p139349 +tp139350 +a(g139347 +g139349 +S'parents.' +p139351 +tp139352 +a(g139349 +g139351 +S'in' +p139353 +tp139354 +a(g139351 +g139353 +S'1748' +p139355 +tp139356 +a(g139353 +g139355 +S"copley's" +p139357 +tp139358 +a(g139355 +g139357 +S'widowed' +p139359 +tp139360 +a(g139357 +g139359 +S'mother' +p139361 +tp139362 +a(g139359 +g139361 +S'married' +p139363 +tp139364 +a(g139361 +g139363 +S'peter' +p139365 +tp139366 +a(g139363 +g139365 +S'pelham,' +p139367 +tp139368 +a(g139365 +g139367 +S'a' +p139369 +tp139370 +a(g139367 +g139369 +S'painter' +p139371 +tp139372 +a(g139369 +g139371 +S'and' +p139373 +tp139374 +a(g139371 +g139373 +S'engraver.' +p139375 +tp139376 +a(g139373 +g139375 +S"copley's" +p139377 +tp139378 +a(g139375 +g139377 +S'stepfather' +p139379 +tp139380 +a(g139377 +g139379 +S'probably' +p139381 +tp139382 +a(g139379 +g139381 +S'gave' +p139383 +tp139384 +a(g139381 +g139383 +S'him' +p139385 +tp139386 +a(g139383 +g139385 +S'some' +p139387 +tp139388 +a(g139385 +g139387 +S'art' +p139389 +tp139390 +a(g139387 +g139389 +S'lessons' +p139391 +tp139392 +a(g139389 +g139391 +S'but' +p139393 +tp139394 +a(g139391 +g139393 +S'died' +p139395 +tp139396 +a(g139393 +g139395 +S'when' +p139397 +tp139398 +a(g139395 +g139397 +S'copley' +p139399 +tp139400 +a(g139397 +g139399 +S'was' +p139401 +tp139402 +a(g139399 +g139401 +S'only' +p139403 +tp139404 +a(g139401 +g139403 +S'thirteen.' +p139405 +tp139406 +a(g139403 +g139405 +S'in' +p139407 +tp139408 +a(g139405 +g139407 +S'later' +p139409 +tp139410 +a(g139407 +g139409 +S'years' +p139411 +tp139412 +a(g139409 +g139411 +S'the' +p139413 +tp139414 +a(g139411 +g139413 +S'painter' +p139415 +tp139416 +a(g139413 +g139415 +S'claimed' +p139417 +tp139418 +a(g139415 +g139417 +S'he' +p139419 +tp139420 +a(g139417 +g139419 +S'was' +p139421 +tp139422 +a(g139419 +g139421 +S'self–taught.' +p139423 +tp139424 +a(g139421 +g139423 +S'copley,' +p139425 +tp139426 +a(g139423 +g139425 +S'who' +p139427 +tp139428 +a(g139425 +g139427 +S'was' +p139429 +tp139430 +a(g139427 +g139429 +S'extremely' +p139431 +tp139432 +a(g139429 +g139431 +S'observant,' +p139433 +tp139434 +a(g139431 +g139433 +S'presumably' +p139435 +tp139436 +a(g139433 +g139435 +S'learned' +p139437 +tp139438 +a(g139435 +g139437 +S'about' +p139439 +tp139440 +a(g139437 +g139439 +S'art' +p139441 +tp139442 +a(g139439 +g139441 +S'largely' +p139443 +tp139444 +a(g139441 +g139443 +S'by' +p139445 +tp139446 +a(g139443 +g139445 +S'watching' +p139447 +tp139448 +a(g139445 +g139447 +S'other' +p139449 +tp139450 +a(g139447 +g139449 +S'english–trained' +p139451 +tp139452 +a(g139449 +g139451 +S'painters' +p139453 +tp139454 +a(g139451 +g139453 +S'who' +p139455 +tp139456 +a(g139453 +g139455 +S'were' +p139457 +tp139458 +a(g139455 +g139457 +S'working' +p139459 +tp139460 +a(g139457 +g139459 +S'in' +p139461 +tp139462 +a(g139459 +g139461 +S'the' +p139463 +tp139464 +a(g139461 +g139463 +S'new' +p139465 +tp139466 +a(g139463 +g139465 +S'world' +p139467 +tp139468 +a(g139465 +g139467 +S'and' +p139469 +tp139470 +a(g139467 +g139469 +S'by' +p139471 +tp139472 +a(g139469 +g139471 +S'studying' +p139473 +tp139474 +a(g139471 +g139473 +S'engravings' +p139475 +tp139476 +a(g139473 +g139475 +S'imported' +p139477 +tp139478 +a(g139475 +g139477 +S'from' +p139479 +tp139480 +a(g139477 +g139479 +S'europe.' +p139481 +tp139482 +a(g139479 +g139481 +S'much' +p139483 +tp139484 +a(g139481 +g139483 +S'more' +p139485 +tp139486 +a(g139483 +g139485 +S'important' +p139487 +tp139488 +a(g139485 +g139487 +S'was' +p139489 +tp139490 +a(g139487 +g139489 +S'his' +p139491 +tp139492 +a(g139489 +g139491 +S'innate' +p139493 +tp139494 +a(g139491 +g139493 +S'ability' +p139495 +tp139496 +a(g139493 +g139495 +S'to' +p139497 +tp139498 +a(g139495 +g139497 +S'record' +p139499 +tp139500 +a(g139497 +g139499 +S'details' +p139501 +tp139502 +a(g139499 +g139501 +S'objectively' +p139503 +tp139504 +a(g139501 +g139503 +S'and' +p139505 +tp139506 +a(g139503 +g139505 +S'to' +p139507 +tp139508 +a(g139505 +g139507 +S'suggest' +p139509 +tp139510 +a(g139507 +g139509 +S'character.' +p139511 +tp139512 +a(g139509 +g139511 +S'gilbert' +p139513 +tp139514 +a(g139511 +g139513 +S'stuart' +p139515 +tp139516 +a(g139513 +g139515 +S'would' +p139517 +tp139518 +a(g139515 +g139517 +S'later' +p139519 +tp139520 +a(g139517 +g139519 +S'say' +p139521 +tp139522 +a(g139519 +g139521 +S'of' +p139523 +tp139524 +a(g139521 +g139523 +S'the' +p139525 +tp139526 +a(g139523 +g139525 +S'uncompromising' +p139527 +tp139528 +a(g139525 +g139527 +S'realism' +p139529 +tp139530 +a(g139527 +g139529 +S'in' +p139531 +tp139532 +a(g139529 +g139531 +S"copley's" +p139533 +tp139534 +a(g139531 +g139533 +S'about' +p139535 +tp139536 +a(g139533 +g139535 +S'seventy' +p139537 +tp139538 +a(g139535 +g139537 +S'years' +p139539 +tp139540 +a(g139537 +g139539 +S'old' +p139541 +tp139542 +a(g139539 +g139541 +S'when' +p139543 +tp139544 +a(g139541 +g139543 +S'he' +p139545 +tp139546 +a(g139543 +g139545 +S'posed' +p139547 +tp139548 +a(g139545 +g139547 +S'for' +p139549 +tp139550 +a(g139547 +g139549 +S'copley,' +p139551 +tp139552 +a(g139549 +g139551 +S'sargent' +p139553 +tp139554 +a(g139551 +g139553 +S'had' +p139555 +tp139556 +a(g139553 +g139555 +S'dropped' +p139557 +tp139558 +a(g139555 +g139557 +S'out' +p139559 +tp139560 +a(g139557 +g139559 +S'of' +p139561 +tp139562 +a(g139559 +g139561 +S'harvard' +p139563 +tp139564 +a(g139561 +g139563 +S'college' +p139565 +tp139566 +a(g139563 +g139565 +S'to' +p139567 +tp139568 +a(g139565 +g139567 +S'enter' +p139569 +tp139570 +a(g139567 +g139569 +S'business' +p139571 +tp139572 +a(g139569 +g139571 +S'in' +p139573 +tp139574 +a(g139571 +g139573 +S'his' +p139575 +tp139576 +a(g139573 +g139575 +S'native' +p139577 +tp139578 +a(g139575 +g139577 +S'gloucester.' +p139579 +tp139580 +a(g139577 +g139579 +S'after' +p139581 +tp139582 +a(g139579 +g139581 +S'the' +p139583 +tp139584 +a(g139581 +g139583 +S'death' +p139585 +tp139586 +a(g139583 +g139585 +S'of' +p139587 +tp139588 +a(g139585 +g139587 +S'his' +p139589 +tp139590 +a(g139587 +g139589 +S'first' +p139591 +tp139592 +a(g139589 +g139591 +S'wife,' +p139593 +tp139594 +a(g139591 +g139593 +S'this' +p139595 +tp139596 +a(g139593 +g139595 +S'prosperous' +p139597 +tp139598 +a(g139595 +g139597 +S'merchant' +p139599 +tp139600 +a(g139597 +g139599 +S'and' +p139601 +tp139602 +a(g139599 +g139601 +S'shipowner' +p139603 +tp139604 +a(g139601 +g139603 +S'married' +p139605 +tp139606 +a(g139603 +g139605 +S'a' +p139607 +tp139608 +a(g139605 +g139607 +S'rich' +p139609 +tp139610 +a(g139607 +g139609 +S'widow' +p139611 +tp139612 +a(g139609 +g139611 +S'from' +p139613 +tp139614 +a(g139611 +g139613 +S'salem.' +p139615 +tp139616 +a(g139613 +g139615 +S"copley's" +p139617 +tp139618 +a(g139615 +g139617 +S'portrayal' +p139619 +tp139620 +a(g139617 +g139619 +S'shows' +p139621 +tp139622 +a(g139619 +g139621 +S'him' +p139623 +tp139624 +a(g139621 +g139623 +S'nonchalantly' +p139625 +tp139626 +a(g139623 +g139625 +S'leaning' +p139627 +tp139628 +a(g139625 +g139627 +S'on' +p139629 +tp139630 +a(g139627 +g139629 +S'a' +p139631 +tp139632 +a(g139629 +g139631 +S'marble' +p139633 +tp139634 +a(g139631 +g139633 +S'pedestal' +p139635 +tp139636 +a(g139633 +g139635 +S'as' +p139637 +tp139638 +a(g139635 +g139637 +S'a' +p139639 +tp139640 +a(g139637 +g139639 +S'symbol' +p139641 +tp139642 +a(g139639 +g139641 +S'of' +p139643 +tp139644 +a(g139641 +g139643 +S'prestige;' +p139645 +tp139646 +a(g139643 +g139645 +S'since' +p139647 +tp139648 +a(g139645 +g139647 +S'carved' +p139649 +tp139650 +a(g139647 +g139649 +S'stone' +p139651 +tp139652 +a(g139649 +g139651 +S'monuments' +p139653 +tp139654 +a(g139651 +g139653 +S'were' +p139655 +tp139656 +a(g139653 +g139655 +S'rather' +p139657 +tp139658 +a(g139655 +g139657 +S'rare' +p139659 +tp139660 +a(g139657 +g139659 +S'in' +p139661 +tp139662 +a(g139659 +g139661 +S'the' +p139663 +tp139664 +a(g139661 +g139663 +S'colonies,' +p139665 +tp139666 +a(g139663 +g139665 +S'this' +p139667 +tp139668 +a(g139665 +g139667 +S'imaginary' +p139669 +tp139670 +a(g139667 +g139669 +S'device' +p139671 +tp139672 +a(g139669 +g139671 +S'must' +p139673 +tp139674 +a(g139671 +g139673 +S'be' +p139675 +tp139676 +a(g139673 +g139675 +S'borrowed' +p139677 +tp139678 +a(g139675 +g139677 +S'from' +p139679 +tp139680 +a(g139677 +g139679 +S'european' +p139681 +tp139682 +a(g139679 +g139681 +S'prints' +p139683 +tp139684 +a(g139681 +g139683 +S'of' +p139685 +tp139686 +a(g139683 +g139685 +S'potentates.' +p139687 +tp139688 +a(g139685 +g139687 +S'such' +p139689 +tp139690 +a(g139687 +g139689 +S'penetrating' +p139691 +tp139692 +a(g139689 +g139691 +S'likenesses' +p139693 +tp139694 +a(g139691 +g139693 +S'made' +p139695 +tp139696 +a(g139693 +g139695 +S'copley' +p139697 +tp139698 +a(g139695 +g139697 +S'the' +p139699 +tp139700 +a(g139697 +g139699 +S'best–paid' +p139701 +tp139702 +a(g139699 +g139701 +S'artist' +p139703 +tp139704 +a(g139701 +g139703 +S'in' +p139705 +tp139706 +a(g139703 +g139705 +S'colonial' +p139707 +tp139708 +a(g139705 +g139707 +S'america.' +p139709 +tp139710 +a(g139707 +g139709 +S'by' +p139711 +tp139712 +a(g139709 +g139711 +S'shipping' +p139713 +tp139714 +a(g139711 +g139713 +S'some' +p139715 +tp139716 +a(g139713 +g139715 +S'of' +p139717 +tp139718 +a(g139715 +g139717 +S'his' +p139719 +tp139720 +a(g139717 +g139719 +S'canvases' +p139721 +tp139722 +a(g139719 +g139721 +S'to' +p139723 +tp139724 +a(g139721 +g139723 +S'london' +p139725 +tp139726 +a(g139723 +g139725 +S'for' +p139727 +tp139728 +a(g139725 +g139727 +S'criticism,' +p139729 +tp139730 +a(g139727 +g139729 +S'copley' +p139731 +tp139732 +a(g139729 +g139731 +S'soon' +p139733 +tp139734 +a(g139731 +g139733 +S'became' +p139735 +tp139736 +a(g139733 +g139735 +S'known' +p139737 +tp139738 +a(g139735 +g139737 +S'in' +p139739 +tp139740 +a(g139737 +g139739 +S'england.' +p139741 +tp139742 +a(g139739 +g139741 +S'seventeen' +p139743 +tp139744 +a(g139741 +g139743 +S'years' +p139745 +tp139746 +a(g139743 +g139745 +S'after' +p139747 +tp139748 +a(g139745 +g139747 +S'benjamin' +p139749 +tp139750 +a(g139747 +g139749 +S'west' +p139751 +tp139752 +a(g139749 +g139751 +S'settled' +p139753 +tp139754 +a(g139751 +g139753 +S'in' +p139755 +tp139756 +a(g139753 +g139755 +S'england,' +p139757 +tp139758 +a(g139755 +g139757 +S'a' +p139759 +tp139760 +a(g139757 +g139759 +S'london' +p139761 +tp139762 +a(g139759 +g139761 +S"newspaper's" +p139763 +tp139764 +a(g139761 +g139763 +S'review' +p139765 +tp139766 +a(g139763 +g139765 +S'of' +p139767 +tp139768 +a(g139765 +g139767 +S'the' +p139769 +tp139770 +a(g139767 +g139769 +S'1780' +p139771 +tp139772 +a(g139769 +g139771 +S'royal' +p139773 +tp139774 +a(g139771 +g139773 +S'academy' +p139775 +tp139776 +a(g139773 +g139775 +S'exhibition' +p139777 +tp139778 +a(g139775 +g139777 +S'stated' +p139779 +tp139780 +a(g139777 +g139779 +S'that' +p139781 +tp139782 +a(g139779 +g139781 +S'standing' +p139783 +tp139784 +a(g139781 +g139783 +S'in' +p139785 +tp139786 +a(g139783 +g139785 +S'a' +p139787 +tp139788 +a(g139785 +g139787 +S'boat' +p139789 +tp139790 +a(g139787 +g139789 +S'at' +p139791 +tp139792 +a(g139789 +g139791 +S'the' +p139793 +tp139794 +a(g139791 +g139793 +S'left,' +p139795 +tp139796 +a(g139793 +g139795 +S'for' +p139797 +tp139798 +a(g139795 +g139797 +S'instance,' +p139799 +tp139800 +a(g139797 +g139799 +S'vice' +p139801 +tp139802 +a(g139799 +g139801 +S'admiral' +p139803 +tp139804 +a(g139801 +g139803 +S'george' +p139805 +tp139806 +a(g139803 +g139805 +S'rooke' +p139807 +tp139808 +a(g139805 +g139807 +S'embodies' +p139809 +tp139810 +a(g139807 +g139809 +S'heroic' +p139811 +tp139812 +a(g139809 +g139811 +S'command' +p139813 +tp139814 +a(g139811 +g139813 +S'with' +p139815 +tp139816 +a(g139813 +g139815 +S'his' +p139817 +tp139818 +a(g139815 +g139817 +S'upright' +p139819 +tp139820 +a(g139817 +g139819 +S'posture' +p139821 +tp139822 +a(g139819 +g139821 +S'and' +p139823 +tp139824 +a(g139821 +g139823 +S'raised' +p139825 +tp139826 +a(g139823 +g139825 +S'sword.' +p139827 +tp139828 +a(g139825 +g139827 +S'yet,' +p139829 +tp139830 +a(g139827 +g139829 +S'in' +p139831 +tp139832 +a(g139829 +g139831 +S'order' +p139833 +tp139834 +a(g139831 +g139833 +S'to' +p139835 +tp139836 +a(g139833 +g139835 +S'survey' +p139837 +tp139838 +a(g139835 +g139837 +S'the' +p139839 +tp139840 +a(g139837 +g139839 +S'maneuvers,' +p139841 +tp139842 +a(g139839 +g139841 +S'he' +p139843 +tp139844 +a(g139841 +g139843 +S'undoubtedly' +p139845 +tp139846 +a(g139843 +g139845 +S'gave' +p139847 +tp139848 +a(g139845 +g139847 +S'orders' +p139849 +tp139850 +a(g139847 +g139849 +S'from' +p139851 +tp139852 +a(g139849 +g139851 +S'a' +p139853 +tp139854 +a(g139851 +g139853 +S'distance.' +p139855 +tp139856 +a(g139853 +g139855 +S'beached' +p139857 +tp139858 +a(g139855 +g139857 +S'in' +p139859 +tp139860 +a(g139857 +g139859 +S'the' +p139861 +tp139862 +a(g139859 +g139861 +S'center' +p139863 +tp139864 +a(g139861 +g139863 +S'distance' +p139865 +tp139866 +a(g139863 +g139865 +S'is' +p139867 +tp139868 +a(g139865 +g139867 +S'the' +p139869 +tp139870 +a(g139867 +g139869 +S'french' +p139871 +tp139872 +a(g139869 +g139871 +S'flagship,' +p139873 +tp139874 +a(g139871 +g139873 +S'the' +p139875 +tp139876 +a(g139873 +g139875 +S'cranach' +p139877 +tp139878 +a(g139875 +g139877 +S'painted' +p139879 +tp139880 +a(g139877 +g139879 +S'this' +p139881 +tp139882 +a(g139879 +g139881 +S'woman' +p139883 +tp139884 +a(g139881 +g139883 +S'and' +p139885 +tp139886 +a(g139883 +g139885 +S'her' +p139887 +tp139888 +a(g139885 +g139887 +S'husband' +p139889 +tp139890 +a(g139887 +g139889 +S'(' +p139891 +tp139892 +a(g139889 +g139891 +S'this' +p139893 +tp139894 +a(g139891 +g139893 +S"couple's" +p139895 +tp139896 +a(g139893 +g139895 +S'identity' +p139897 +tp139898 +a(g139895 +g139897 +S'remains' +p139899 +tp139900 +a(g139897 +g139899 +S'unknown.' +p139901 +tp139902 +a(g139899 +g139901 +S'the' +p139903 +tp139904 +a(g139901 +g139903 +S'lack' +p139905 +tp139906 +a(g139903 +g139905 +S'of' +p139907 +tp139908 +a(g139905 +g139907 +S'distracting' +p139909 +tp139910 +a(g139907 +g139909 +S'details' +p139911 +tp139912 +a(g139909 +g139911 +S'such' +p139913 +tp139914 +a(g139911 +g139913 +S'as' +p139915 +tp139916 +a(g139913 +g139915 +S'jewelry' +p139917 +tp139918 +a(g139915 +g139917 +S'or' +p139919 +tp139920 +a(g139917 +g139919 +S'elaborate' +p139921 +tp139922 +a(g139919 +g139921 +S'embroidery' +p139923 +tp139924 +a(g139921 +g139923 +S'and' +p139925 +tp139926 +a(g139923 +g139925 +S'the' +p139927 +tp139928 +a(g139925 +g139927 +S'featureless' +p139929 +tp139930 +a(g139927 +g139929 +S'green' +p139931 +tp139932 +a(g139929 +g139931 +S'backgrounds' +p139933 +tp139934 +a(g139931 +g139933 +S'focus' +p139935 +tp139936 +a(g139933 +g139935 +S'attention' +p139937 +tp139938 +a(g139935 +g139937 +S'on' +p139939 +tp139940 +a(g139937 +g139939 +S'their' +p139941 +tp139942 +a(g139939 +g139941 +S'faces,' +p139943 +tp139944 +a(g139941 +g139943 +S'which' +p139945 +tp139946 +a(g139943 +g139945 +S'are' +p139947 +tp139948 +a(g139945 +g139947 +S'naturalistic' +p139949 +tp139950 +a(g139947 +g139949 +S'likenesses.' +p139951 +tp139952 +a(g139949 +g139951 +S'what' +p139953 +tp139954 +a(g139951 +g139953 +S'is' +p139955 +tp139956 +a(g139953 +g139955 +S'striking' +p139957 +tp139958 +a(g139955 +g139957 +S'though' +p139959 +tp139960 +a(g139957 +g139959 +S'not' +p139961 +tp139962 +a(g139959 +g139961 +S'unusual' +p139963 +tp139964 +a(g139961 +g139963 +S'about' +p139965 +tp139966 +a(g139963 +g139965 +S'their' +p139967 +tp139968 +a(g139965 +g139967 +S'portrayal' +p139969 +tp139970 +a(g139967 +g139969 +S'is' +p139971 +tp139972 +a(g139969 +g139971 +S'the' +p139973 +tp139974 +a(g139971 +g139973 +S'way' +p139975 +tp139976 +a(g139973 +g139975 +S'the' +p139977 +tp139978 +a(g139975 +g139977 +S"man's" +p139979 +tp139980 +a(g139977 +g139979 +S'portrait' +p139981 +tp139982 +a(g139979 +g139981 +S'is' +p139983 +tp139984 +a(g139981 +g139983 +S'dominant.' +p139985 +tp139986 +a(g139983 +g139985 +S'he' +p139987 +tp139988 +a(g139985 +g139987 +S'is' +p139989 +tp139990 +a(g139987 +g139989 +S'much' +p139991 +tp139992 +a(g139989 +g139991 +S'larger,' +p139993 +tp139994 +a(g139991 +g139993 +S'and' +p139995 +tp139996 +a(g139993 +g139995 +S'his' +p139997 +tp139998 +a(g139995 +g139997 +S'shoulders' +p139999 +tp140000 +a(g139997 +g139999 +S'extend' +p140001 +tp140002 +a(g139999 +g140001 +S'beyond' +p140003 +tp140004 +a(g140001 +g140003 +S'the' +p140005 +tp140006 +a(g140003 +g140005 +S'frame' +p140007 +tp140008 +a(g140005 +g140007 +S'of' +p140009 +tp140010 +a(g140007 +g140009 +S'the' +p140011 +tp140012 +a(g140009 +g140011 +S'painting,' +p140013 +tp140014 +a(g140011 +g140013 +S'while' +p140015 +tp140016 +a(g140013 +g140015 +S'hers' +p140017 +tp140018 +a(g140015 +g140017 +S'is' +p140019 +tp140020 +a(g140017 +g140019 +S'a' +p140021 +tp140022 +a(g140019 +g140021 +S'smaller,' +p140023 +tp140024 +a(g140021 +g140023 +S'less' +p140025 +tp140026 +a(g140023 +g140025 +S'imposing' +p140027 +tp140028 +a(g140025 +g140027 +S'figure.' +p140029 +tp140030 +a(g140027 +g140029 +S'her' +p140031 +tp140032 +a(g140029 +g140031 +S'pale' +p140033 +tp140034 +a(g140031 +g140033 +S'face' +p140035 +tp140036 +a(g140033 +g140035 +S'seems' +p140037 +tp140038 +a(g140035 +g140037 +S'drawn' +p140039 +tp140040 +a(g140037 +g140039 +S'in' +p140041 +tp140042 +a(g140039 +g140041 +S'comparison' +p140043 +tp140044 +a(g140041 +g140043 +S'to' +p140045 +tp140046 +a(g140043 +g140045 +S'his' +p140047 +tp140048 +a(g140045 +g140047 +S'ruddy' +p140049 +tp140050 +a(g140047 +g140049 +S'complexion.' +p140051 +tp140052 +a(g140049 +g140051 +S'the' +p140053 +tp140054 +a(g140051 +g140053 +S'opposing' +p140055 +tp140056 +a(g140053 +g140055 +S'turn' +p140057 +tp140058 +a(g140055 +g140057 +S'of' +p140059 +tp140060 +a(g140057 +g140059 +S'their' +p140061 +tp140062 +a(g140059 +g140061 +S'heads' +p140063 +tp140064 +a(g140061 +g140063 +S'indicates' +p140065 +tp140066 +a(g140063 +g140065 +S'that' +p140067 +tp140068 +a(g140065 +g140067 +S'he' +p140069 +tp140070 +a(g140067 +g140069 +S'occupied' +p140071 +tp140072 +a(g140069 +g140071 +S'the' +p140073 +tp140074 +a(g140071 +g140073 +S'place' +p140075 +tp140076 +a(g140073 +g140075 +S'of' +p140077 +tp140078 +a(g140075 +g140077 +S'honor' +p140079 +tp140080 +a(g140077 +g140079 +S'on' +p140081 +tp140082 +a(g140079 +g140081 +S'the' +p140083 +tp140084 +a(g140081 +g140083 +S'left' +p140085 +tp140086 +a(g140083 +g140085 +S'side.' +p140087 +tp140088 +a(g140085 +g140087 +S'it' +p140089 +tp140090 +a(g140087 +g140089 +S'is' +p140091 +tp140092 +a(g140089 +g140091 +S'likely' +p140093 +tp140094 +a(g140091 +g140093 +S'that' +p140095 +tp140096 +a(g140093 +g140095 +S'the' +p140097 +tp140098 +a(g140095 +g140097 +S'portraits' +p140099 +tp140100 +a(g140097 +g140099 +S'were' +p140101 +tp140102 +a(g140099 +g140101 +S'intended' +p140103 +tp140104 +a(g140101 +g140103 +S'to' +p140105 +tp140106 +a(g140103 +g140105 +S'flank' +p140107 +tp140108 +a(g140105 +g140107 +S'a' +p140109 +tp140110 +a(g140107 +g140109 +S'window:' +p140111 +tp140112 +a(g140109 +g140111 +S'notice' +p140113 +tp140114 +a(g140111 +g140113 +S'how' +p140115 +tp140116 +a(g140113 +g140115 +S'the' +p140117 +tp140118 +a(g140115 +g140117 +S'shadows' +p140119 +tp140120 +a(g140117 +g140119 +S'are' +p140121 +tp140122 +a(g140119 +g140121 +S'cast' +p140123 +tp140124 +a(g140121 +g140123 +S'in' +p140125 +tp140126 +a(g140123 +g140125 +S'opposite' +p140127 +tp140128 +a(g140125 +g140127 +S'directions' +p140129 +tp140130 +a(g140127 +g140129 +S'and' +p140131 +tp140132 +a(g140129 +g140131 +S'how' +p140133 +tp140134 +a(g140131 +g140133 +S'the' +p140135 +tp140136 +a(g140133 +g140135 +S'reflections' +p140137 +tp140138 +a(g140135 +g140137 +S'of' +p140139 +tp140140 +a(g140137 +g140139 +S'window' +p140141 +tp140142 +a(g140139 +g140141 +S'panes' +p140143 +tp140144 +a(g140141 +g140143 +S'can' +p140145 +tp140146 +a(g140143 +g140145 +S'be' +p140147 +tp140148 +a(g140145 +g140147 +S'seen' +p140149 +tp140150 +a(g140147 +g140149 +S'in' +p140151 +tp140152 +a(g140149 +g140151 +S'their' +p140153 +tp140154 +a(g140151 +g140153 +S'eyes.' +p140155 +tp140156 +a(g140153 +g140155 +S'(in' +p140157 +tp140158 +a(g140155 +g140157 +S'this' +p140159 +tp140160 +a(g140157 +g140159 +S'large' +p140161 +tp140162 +a(g140159 +g140161 +S'panel' +p140163 +tp140164 +a(g140161 +g140163 +S'painting' +p140165 +tp140166 +a(g140163 +g140165 +S'by' +p140167 +tp140168 +a(g140165 +g140167 +S'a' +p140169 +tp140170 +a(g140167 +g140169 +S'follower' +p140171 +tp140172 +a(g140169 +g140171 +S'of' +p140173 +tp140174 +a(g140171 +g140173 +S'robert' +p140175 +tp140176 +a(g140173 +g140175 +S'campin' +p140177 +tp140178 +a(g140175 +g140177 +S'combines' +p140179 +tp140180 +a(g140177 +g140179 +S'the' +p140181 +tp140182 +a(g140179 +g140181 +S'new' +p140183 +tp140184 +a(g140181 +g140183 +S'interest' +p140185 +tp140186 +a(g140183 +g140185 +S'in' +p140187 +tp140188 +a(g140185 +g140187 +S'nature' +p140189 +tp140190 +a(g140187 +g140189 +S'of' +p140191 +tp140192 +a(g140189 +g140191 +S'the' +p140193 +tp140194 +a(g140191 +g140193 +S'fifteenth-century' +p140195 +tp140196 +a(g140193 +g140195 +S'netherlandish' +p140197 +tp140198 +a(g140195 +g140197 +S'artists' +p140199 +tp140200 +a(g140197 +g140199 +S'with' +p140201 +tp140202 +a(g140199 +g140201 +S'a' +p140203 +tp140204 +a(g140201 +g140203 +S'long' +p140205 +tp140206 +a(g140203 +g140205 +S'tradition' +p140207 +tp140208 +a(g140205 +g140207 +S'of' +p140209 +tp140210 +a(g140207 +g140209 +S'symbolic' +p140211 +tp140212 +a(g140209 +g140211 +S'religious' +p140213 +tp140214 +a(g140211 +g140213 +S'painting.' +p140215 +tp140216 +a(g140213 +g140215 +S'there' +p140217 +tp140218 +a(g140215 +g140217 +S'is' +p140219 +tp140220 +a(g140217 +g140219 +S'a' +p140221 +tp140222 +a(g140219 +g140221 +S'thoroughly' +p140223 +tp140224 +a(g140221 +g140223 +S'believable' +p140225 +tp140226 +a(g140223 +g140225 +S'quality' +p140227 +tp140228 +a(g140225 +g140227 +S'about' +p140229 +tp140230 +a(g140227 +g140229 +S'the' +p140231 +tp140232 +a(g140229 +g140231 +S'heavy' +p140233 +tp140234 +a(g140231 +g140233 +S'folds' +p140235 +tp140236 +a(g140233 +g140235 +S'of' +p140237 +tp140238 +a(g140235 +g140237 +S'drapery,' +p140239 +tp140240 +a(g140237 +g140239 +S'the' +p140241 +tp140242 +a(g140239 +g140241 +S'delicate' +p140243 +tp140244 +a(g140241 +g140243 +S'leaves' +p140245 +tp140246 +a(g140243 +g140245 +S'of' +p140247 +tp140248 +a(g140245 +g140247 +S'the' +p140249 +tp140250 +a(g140247 +g140249 +S'flowers,' +p140251 +tp140252 +a(g140249 +g140251 +S'and' +p140253 +tp140254 +a(g140251 +g140253 +S'the' +p140255 +tp140256 +a(g140253 +g140255 +S'shallow' +p140257 +tp140258 +a(g140255 +g140257 +S'space' +p140259 +tp140260 +a(g140257 +g140259 +S'within' +p140261 +tp140262 +a(g140259 +g140261 +S'the' +p140263 +tp140264 +a(g140261 +g140263 +S'garden' +p140265 +tp140266 +a(g140263 +g140265 +S'walls.' +p140267 +tp140268 +a(g140265 +g140267 +S'yet' +p140269 +tp140270 +a(g140267 +g140269 +S'this' +p140271 +tp140272 +a(g140269 +g140271 +S'world' +p140273 +tp140274 +a(g140271 +g140273 +S'is' +p140275 +tp140276 +a(g140273 +g140275 +S'invested' +p140277 +tp140278 +a(g140275 +g140277 +S'with' +p140279 +tp140280 +a(g140277 +g140279 +S'mystical' +p140281 +tp140282 +a(g140279 +g140281 +S'overtones' +p140283 +tp140284 +a(g140281 +g140283 +S'through' +p140285 +tp140286 +a(g140283 +g140285 +S'the' +p140287 +tp140288 +a(g140285 +g140287 +S"figures'" +p140289 +tp140290 +a(g140287 +g140289 +S'quiet' +p140291 +tp140292 +a(g140289 +g140291 +S'poses' +p140293 +tp140294 +a(g140291 +g140293 +S'and' +p140295 +tp140296 +a(g140293 +g140295 +S'the' +p140297 +tp140298 +a(g140295 +g140297 +S'minutely' +p140299 +tp140300 +a(g140297 +g140299 +S'observed' +p140301 +tp140302 +a(g140299 +g140301 +S'details' +p140303 +tp140304 +a(g140301 +g140303 +S'which' +p140305 +tp140306 +a(g140303 +g140305 +S'are' +p140307 +tp140308 +a(g140305 +g140307 +S'painted' +p140309 +tp140310 +a(g140307 +g140309 +S'in' +p140311 +tp140312 +a(g140309 +g140311 +S'glowing' +p140313 +tp140314 +a(g140311 +g140313 +S'oil' +p140315 +tp140316 +a(g140313 +g140315 +S'colors' +p140317 +tp140318 +a(g140315 +g140317 +S'and' +p140319 +tp140320 +a(g140317 +g140319 +S'displayed' +p140321 +tp140322 +a(g140319 +g140321 +S'in' +p140323 +tp140324 +a(g140321 +g140323 +S'a' +p140325 +tp140326 +a(g140323 +g140325 +S'steady' +p140327 +tp140328 +a(g140325 +g140327 +S'light.' +p140329 +tp140330 +a(g140327 +g140329 +S'john' +p140331 +tp140332 +a(g140329 +g140331 +S'the' +p140333 +tp140334 +a(g140331 +g140333 +S'baptist' +p140335 +tp140336 +a(g140333 +g140335 +S'holds' +p140337 +tp140338 +a(g140335 +g140337 +S'a' +p140339 +tp140340 +a(g140337 +g140339 +S'lamb,' +p140341 +tp140342 +a(g140339 +g140341 +S'recalling' +p140343 +tp140344 +a(g140341 +g140343 +S'his' +p140345 +tp140346 +a(g140343 +g140345 +S'recognition' +p140347 +tp140348 +a(g140345 +g140347 +S'of' +p140349 +tp140350 +a(g140347 +g140349 +S'christ' +p140351 +tp140352 +a(g140349 +g140351 +S'as' +p140353 +tp140354 +a(g140351 +g140353 +S'the' +p140355 +tp140356 +a(g140353 +g140355 +S'"lamb' +p140357 +tp140358 +a(g140355 +g140357 +S'of' +p140359 +tp140360 +a(g140357 +g140359 +S'god."' +p140361 +tp140362 +a(g140359 +g140361 +S'seated' +p140363 +tp140364 +a(g140361 +g140363 +S'on' +p140365 +tp140366 +a(g140363 +g140365 +S'the' +p140367 +tp140368 +a(g140365 +g140367 +S'left' +p140369 +tp140370 +a(g140367 +g140369 +S'is' +p140371 +tp140372 +a(g140369 +g140371 +S'catherine' +p140373 +tp140374 +a(g140371 +g140373 +S'of' +p140375 +tp140376 +a(g140373 +g140375 +S'alexandria' +p140377 +tp140378 +a(g140375 +g140377 +S'with' +p140379 +tp140380 +a(g140377 +g140379 +S'her' +p140381 +tp140382 +a(g140379 +g140381 +S'sword' +p140383 +tp140384 +a(g140381 +g140383 +S'and' +p140385 +tp140386 +a(g140383 +g140385 +S'wheel,' +p140387 +tp140388 +a(g140385 +g140387 +S'the' +p140389 +tp140390 +a(g140387 +g140389 +S'instruments' +p140391 +tp140392 +a(g140389 +g140391 +S'of' +p140393 +tp140394 +a(g140391 +g140393 +S'her' +p140395 +tp140396 +a(g140393 +g140395 +S'martyrdom.' +p140397 +tp140398 +a(g140395 +g140397 +S'saint' +p140399 +tp140400 +a(g140397 +g140399 +S'barbara' +p140401 +tp140402 +a(g140399 +g140401 +S'offers' +p140403 +tp140404 +a(g140401 +g140403 +S'jesus' +p140405 +tp140406 +a(g140403 +g140405 +S'an' +p140407 +tp140408 +a(g140405 +g140407 +S'apple' +p140409 +tp140410 +a(g140407 +g140409 +S'or' +p140411 +tp140412 +a(g140409 +g140411 +S'a' +p140413 +tp140414 +a(g140411 +g140413 +S'quince,' +p140415 +tp140416 +a(g140413 +g140415 +S'an' +p140417 +tp140418 +a(g140415 +g140417 +S'age-old' +p140419 +tp140420 +a(g140417 +g140419 +S'symbol' +p140421 +tp140422 +a(g140419 +g140421 +S'of' +p140423 +tp140424 +a(g140421 +g140423 +S'love.' +p140425 +tp140426 +a(g140423 +g140425 +S'her' +p140427 +tp140428 +a(g140425 +g140427 +S'special' +p140429 +tp140430 +a(g140427 +g140429 +S'attribute' +p140431 +tp140432 +a(g140429 +g140431 +S'is' +p140433 +tp140434 +a(g140431 +g140433 +S'the' +p140435 +tp140436 +a(g140433 +g140435 +S'impregnable' +p140437 +tp140438 +a(g140435 +g140437 +S'tower,' +p140439 +tp140440 +a(g140437 +g140439 +S'a' +p140441 +tp140442 +a(g140439 +g140441 +S'symbol' +p140443 +tp140444 +a(g140441 +g140443 +S'of' +p140445 +tp140446 +a(g140443 +g140445 +S'her' +p140447 +tp140448 +a(g140445 +g140447 +S'chastity.' +p140449 +tp140450 +a(g140447 +g140449 +S'half-hidden' +p140451 +tp140452 +a(g140449 +g140451 +S'by' +p140453 +tp140454 +a(g140451 +g140453 +S'saint' +p140455 +tp140456 +a(g140453 +g140455 +S"anthony's" +p140457 +tp140458 +a(g140455 +g140457 +S'robe,' +p140459 +tp140460 +a(g140457 +g140459 +S'a' +p140461 +tp140462 +a(g140459 +g140461 +S'pig' +p140463 +tp140464 +a(g140461 +g140463 +S'beside' +p140465 +tp140466 +a(g140463 +g140465 +S'him' +p140467 +tp140468 +a(g140465 +g140467 +S'symbolizes' +p140469 +tp140470 +a(g140467 +g140469 +S'gluttony,' +p140471 +tp140472 +a(g140469 +g140471 +S'recalling' +p140473 +tp140474 +a(g140471 +g140473 +S'his' +p140475 +tp140476 +a(g140473 +g140475 +S'triumph' +p140477 +tp140478 +a(g140475 +g140477 +S'over' +p140479 +tp140480 +a(g140477 +g140479 +S'temptation.' +p140481 +tp140482 +a(g140479 +g140481 +S'the' +p140483 +tp140484 +a(g140481 +g140483 +S'walled' +p140485 +tp140486 +a(g140483 +g140485 +S'garden' +p140487 +tp140488 +a(g140485 +g140487 +S'refers' +p140489 +tp140490 +a(g140487 +g140489 +S'to' +p140491 +tp140492 +a(g140489 +g140491 +S'a' +p140493 +tp140494 +a(g140491 +g140493 +S'passage' +p140495 +tp140496 +a(g140493 +g140495 +S'from' +p140497 +tp140498 +a(g140495 +g140497 +S'the' +p140499 +tp140500 +a(g140497 +g140499 +S'song' +p140501 +tp140502 +a(g140499 +g140501 +S'of' +p140503 +tp140504 +a(g140501 +g140503 +S'solomon' +p140505 +tp140506 +a(g140503 +g140505 +S'where' +p140507 +tp140508 +a(g140505 +g140507 +S'a' +p140509 +tp140510 +a(g140507 +g140509 +S'bridegroom' +p140511 +tp140512 +a(g140509 +g140511 +S'speaks' +p140513 +tp140514 +a(g140511 +g140513 +S'of' +p140515 +tp140516 +a(g140513 +g140515 +S'his' +p140517 +tp140518 +a(g140515 +g140517 +S'beloved' +p140519 +tp140520 +a(g140517 +g140519 +S'as' +p140521 +tp140522 +a(g140519 +g140521 +S'"a' +p140523 +tp140524 +a(g140521 +g140523 +S'garden' +p140525 +tp140526 +a(g140523 +g140525 +S'enclosed' +p140527 +tp140528 +a(g140525 +g140527 +S'...' +p140529 +tp140530 +a(g140527 +g140529 +S'a' +p140531 +tp140532 +a(g140529 +g140531 +S'fountain' +p140533 +tp140534 +a(g140531 +g140533 +S'sealed."' +p140535 +tp140536 +a(g140533 +g140535 +S'to' +p140537 +tp140538 +a(g140535 +g140537 +S'early' +p140539 +tp140540 +a(g140537 +g140539 +S'christian' +p140541 +tp140542 +a(g140539 +g140541 +S'and' +p140543 +tp140544 +a(g140541 +g140543 +S'medieval' +p140545 +tp140546 +a(g140543 +g140545 +S'theologians,' +p140547 +tp140548 +a(g140545 +g140547 +S'mary' +p140549 +tp140550 +a(g140547 +g140549 +S'became' +p140551 +tp140552 +a(g140549 +g140551 +S'associated' +p140553 +tp140554 +a(g140551 +g140553 +S'with' +p140555 +tp140556 +a(g140553 +g140555 +S'this' +p140557 +tp140558 +a(g140555 +g140557 +S'bride,' +p140559 +tp140560 +a(g140557 +g140559 +S'and' +p140561 +tp140562 +a(g140559 +g140561 +S'the' +p140563 +tp140564 +a(g140561 +g140563 +S'enclosed' +p140565 +tp140566 +a(g140563 +g140565 +S'garden' +p140567 +tp140568 +a(g140565 +g140567 +S'symbolized' +p140569 +tp140570 +a(g140567 +g140569 +S'her' +p140571 +tp140572 +a(g140569 +g140571 +S'virginity' +p140573 +tp140574 +a(g140571 +g140573 +S'and' +p140575 +tp140576 +a(g140573 +g140575 +S'also' +p140577 +tp140578 +a(g140575 +g140577 +S'the' +p140579 +tp140580 +a(g140577 +g140579 +S'lost' +p140581 +tp140582 +a(g140579 +g140581 +S'eden' +p140583 +tp140584 +a(g140581 +g140583 +S'which' +p140585 +tp140586 +a(g140583 +g140585 +S'is' +p140587 +tp140588 +a(g140585 +g140587 +S'regained' +p140589 +tp140590 +a(g140587 +g140589 +S'through' +p140591 +tp140592 +a(g140589 +g140591 +S"christ's" +p140593 +tp140594 +a(g140591 +g140593 +S'birth.' +p140595 +tp140596 +a(g140593 +g140595 +S'even' +p140597 +tp140598 +a(g140595 +g140597 +S'the' +p140599 +tp140600 +a(g140597 +g140599 +S'doorway' +p140601 +tp140602 +a(g140599 +g140601 +S'recalls' +p140603 +tp140604 +a(g140601 +g140603 +S"christ's" +p140605 +tp140606 +a(g140603 +g140605 +S'saying,' +p140607 +tp140608 +a(g140605 +g140607 +S'"i' +p140609 +tp140610 +a(g140607 +g140609 +S'am' +p140611 +tp140612 +a(g140609 +g140611 +S'the' +p140613 +tp140614 +a(g140611 +g140613 +S'door.' +p140615 +tp140616 +a(g140613 +g140615 +S'no' +p140617 +tp140618 +a(g140615 +g140617 +S'man' +p140619 +tp140620 +a(g140617 +g140619 +S'cometh' +p140621 +tp140622 +a(g140619 +g140621 +S'unto' +p140623 +tp140624 +a(g140621 +g140623 +S'the' +p140625 +tp140626 +a(g140623 +g140625 +S'father' +p140627 +tp140628 +a(g140625 +g140627 +S'but' +p140629 +tp140630 +a(g140627 +g140629 +S'by' +p140631 +tp140632 +a(g140629 +g140631 +S'me."' +p140633 +tp140634 +a(g140631 +g140633 +S'a' +p140635 +tp140636 +a(g140633 +g140635 +S'visitor' +p140637 +tp140638 +a(g140635 +g140637 +S'to' +p140639 +tp140640 +a(g140637 +g140639 +S'el' +p140641 +tp140642 +a(g140639 +g140641 +S"greco's" +p140643 +tp140644 +a(g140641 +g140643 +S'studio' +p140645 +tp140646 +a(g140643 +g140645 +S'wrote' +p140647 +tp140648 +a(g140645 +g140647 +S'of' +p140649 +tp140650 +a(g140647 +g140649 +S'seeing' +p140651 +tp140652 +a(g140649 +g140651 +S'small' +p140653 +tp140654 +a(g140651 +g140653 +S'versions' +p140655 +tp140656 +a(g140653 +g140655 +S'of' +p140657 +tp140658 +a(g140655 +g140657 +S'the' +p140659 +tp140660 +a(g140657 +g140659 +S"painter's" +p140661 +tp140662 +a(g140659 +g140661 +S'most' +p140663 +tp140664 +a(g140661 +g140663 +S'famous' +p140665 +tp140666 +a(g140663 +g140665 +S'works.' +p140667 +tp140668 +a(g140665 +g140667 +S'they' +p140669 +tp140670 +a(g140667 +g140669 +S'provided' +p140671 +tp140672 +a(g140669 +g140671 +S'models' +p140673 +tp140674 +a(g140671 +g140673 +S'for' +p140675 +tp140676 +a(g140673 +g140675 +S'clients' +p140677 +tp140678 +a(g140675 +g140677 +S'who' +p140679 +tp140680 +a(g140677 +g140679 +S'wished' +p140681 +tp140682 +a(g140679 +g140681 +S'to' +p140683 +tp140684 +a(g140681 +g140683 +S'have' +p140685 +tp140686 +a(g140683 +g140685 +S'copies' +p140687 +tp140688 +a(g140685 +g140687 +S'made—such' +p140689 +tp140690 +a(g140687 +g140689 +S'as' +p140691 +tp140692 +a(g140689 +g140691 +S'the' +p140693 +tp140694 +a(g140691 +g140693 +S'smaller' +p140695 +tp140696 +a(g140693 +g140695 +S'this' +p140697 +tp140698 +a(g140695 +g140697 +S'scene,' +p140699 +tp140700 +a(g140697 +g140699 +S'in' +p140701 +tp140702 +a(g140699 +g140701 +S'which' +p140703 +tp140704 +a(g140701 +g140703 +S'the' +p140705 +tp140706 +a(g140703 +g140705 +S"virgin's" +p140707 +tp140708 +a(g140705 +g140707 +S'mother,' +p140709 +tp140710 +a(g140707 +g140709 +S'saint' +p140711 +tp140712 +a(g140709 +g140711 +S'anne,' +p140713 +tp140714 +a(g140711 +g140713 +S'and' +p140715 +tp140716 +a(g140713 +g140715 +S'the' +p140717 +tp140718 +a(g140715 +g140717 +S'infant' +p140719 +tp140720 +a(g140717 +g140719 +S'john' +p140721 +tp140722 +a(g140719 +g140721 +S'the' +p140723 +tp140724 +a(g140721 +g140723 +S'baptist' +p140725 +tp140726 +a(g140723 +g140725 +S'join' +p140727 +tp140728 +a(g140725 +g140727 +S'mary' +p140729 +tp140730 +a(g140727 +g140729 +S'and' +p140731 +tp140732 +a(g140729 +g140731 +S'joseph' +p140733 +tp140734 +a(g140731 +g140733 +S'in' +p140735 +tp140736 +a(g140733 +g140735 +S'admiring' +p140737 +tp140738 +a(g140735 +g140737 +S'the' +p140739 +tp140740 +a(g140737 +g140739 +S'sleeping' +p140741 +tp140742 +a(g140739 +g140741 +S'jesus,' +p140743 +tp140744 +a(g140741 +g140743 +S'is' +p140745 +tp140746 +a(g140743 +g140745 +S'not' +p140747 +tp140748 +a(g140745 +g140747 +S'described' +p140749 +tp140750 +a(g140747 +g140749 +S'in' +p140751 +tp140752 +a(g140749 +g140751 +S'the' +p140753 +tp140754 +a(g140751 +g140753 +S'bible.' +p140755 +tp140756 +a(g140753 +g140755 +S'it' +p140757 +tp140758 +a(g140755 +g140757 +S'is' +p140759 +tp140760 +a(g140757 +g140759 +S'one' +p140761 +tp140762 +a(g140759 +g140761 +S'of' +p140763 +tp140764 +a(g140761 +g140763 +S'el' +p140765 +tp140766 +a(g140763 +g140765 +S"greco's" +p140767 +tp140768 +a(g140765 +g140767 +S'many' +p140769 +tp140770 +a(g140767 +g140769 +S'inventions' +p140771 +tp140772 +a(g140769 +g140771 +S'intended' +p140773 +tp140774 +a(g140771 +g140773 +S'to' +p140775 +tp140776 +a(g140773 +g140775 +S'further' +p140777 +tp140778 +a(g140775 +g140777 +S'the' +p140779 +tp140780 +a(g140777 +g140779 +S'aims' +p140781 +tp140782 +a(g140779 +g140781 +S'of' +p140783 +tp140784 +a(g140781 +g140783 +S'the' +p140785 +tp140786 +a(g140783 +g140785 +S'counter-reformation.' +p140787 +tp140788 +a(g140785 +g140787 +S'the' +p140789 +tp140790 +a(g140787 +g140789 +S'complex' +p140791 +tp140792 +a(g140789 +g140791 +S'symbolism' +p140793 +tp140794 +a(g140791 +g140793 +S'of' +p140795 +tp140796 +a(g140793 +g140795 +S'the' +p140797 +tp140798 +a(g140795 +g140797 +S'holy' +p140799 +tp140800 +a(g140797 +g140799 +S'family' +p140801 +tp140802 +a(g140799 +g140801 +S'suggests' +p140803 +tp140804 +a(g140801 +g140803 +S"christ's" +p140805 +tp140806 +a(g140803 +g140805 +S'eventual' +p140807 +tp140808 +a(g140805 +g140807 +S'death' +p140809 +tp140810 +a(g140807 +g140809 +S'and' +p140811 +tp140812 +a(g140809 +g140811 +S'resurrection,' +p140813 +tp140814 +a(g140811 +g140813 +S'hinted' +p140815 +tp140816 +a(g140813 +g140815 +S'at' +p140817 +tp140818 +a(g140815 +g140817 +S'by' +p140819 +tp140820 +a(g140817 +g140819 +S'the' +p140821 +tp140822 +a(g140819 +g140821 +S"infant's" +p140823 +tp140824 +a(g140821 +g140823 +S'deep' +p140825 +tp140826 +a(g140823 +g140825 +S'sleep' +p140827 +tp140828 +a(g140825 +g140827 +S'and' +p140829 +tp140830 +a(g140827 +g140829 +S'by' +p140831 +tp140832 +a(g140829 +g140831 +S'the' +p140833 +tp140834 +a(g140831 +g140833 +S'way' +p140835 +tp140836 +a(g140833 +g140835 +S'he' +p140837 +tp140838 +a(g140835 +g140837 +S'lies' +p140839 +tp140840 +a(g140837 +g140839 +S'in' +p140841 +tp140842 +a(g140839 +g140841 +S'his' +p140843 +tp140844 +a(g140841 +g140843 +S"mother's" +p140845 +tp140846 +a(g140843 +g140845 +S'lap.' +p140847 +tp140848 +a(g140845 +g140847 +S'this' +p140849 +tp140850 +a(g140847 +g140849 +S'pose,' +p140851 +tp140852 +a(g140849 +g140851 +S'known' +p140853 +tp140854 +a(g140851 +g140853 +S'in' +p140855 +tp140856 +a(g140853 +g140855 +S'italian' +p140857 +tp140858 +a(g140855 +g140857 +S'as' +p140859 +tp140860 +a(g140857 +g140859 +S'the' +p140861 +tp140862 +a(g140859 +g140861 +S'pietà' +p140863 +tp140864 +a(g140861 +g140863 +S'(pity),' +p140865 +tp140866 +a(g140863 +g140865 +S'is' +p140867 +tp140868 +a(g140865 +g140867 +S'most' +p140869 +tp140870 +a(g140867 +g140869 +S'often' +p140871 +tp140872 +a(g140869 +g140871 +S'used' +p140873 +tp140874 +a(g140871 +g140873 +S'to' +p140875 +tp140876 +a(g140873 +g140875 +S'show' +p140877 +tp140878 +a(g140875 +g140877 +S'the' +p140879 +tp140880 +a(g140877 +g140879 +S'virgin' +p140881 +tp140882 +a(g140879 +g140881 +S'holding' +p140883 +tp140884 +a(g140881 +g140883 +S'her' +p140885 +tp140886 +a(g140883 +g140885 +S"son's" +p140887 +tp140888 +a(g140885 +g140887 +S'body' +p140889 +tp140890 +a(g140887 +g140889 +S'after' +p140891 +tp140892 +a(g140889 +g140891 +S'his' +p140893 +tp140894 +a(g140891 +g140893 +S'crucifixion.' +p140895 +tp140896 +a(g140893 +g140895 +S'looking' +p140897 +tp140898 +a(g140895 +g140897 +S'up' +p140899 +tp140900 +a(g140897 +g140899 +S'in' +p140901 +tp140902 +a(g140899 +g140901 +S'amazement' +p140903 +tp140904 +a(g140901 +g140903 +S'as' +p140905 +tp140906 +a(g140903 +g140905 +S'christ' +p140907 +tp140908 +a(g140905 +g140907 +S'ascends' +p140909 +tp140910 +a(g140907 +g140909 +S'into' +p140911 +tp140912 +a(g140909 +g140911 +S'heaven' +p140913 +tp140914 +a(g140911 +g140913 +S'are' +p140915 +tp140916 +a(g140913 +g140915 +S'the' +p140917 +tp140918 +a(g140915 +g140917 +S'twelve' +p140919 +tp140920 +a(g140917 +g140919 +S'apostles.' +p140921 +tp140922 +a(g140919 +g140921 +S'kneeling' +p140923 +tp140924 +a(g140921 +g140923 +S'with' +p140925 +tp140926 +a(g140923 +g140925 +S'them' +p140927 +tp140928 +a(g140925 +g140927 +S'is' +p140929 +tp140930 +a(g140927 +g140929 +S'the' +p140931 +tp140932 +a(g140929 +g140931 +S'virgin,' +p140933 +tp140934 +a(g140931 +g140933 +S'the' +p140935 +tp140936 +a(g140933 +g140935 +S'only' +p140937 +tp140938 +a(g140935 +g140937 +S'one' +p140939 +tp140940 +a(g140937 +g140939 +S'to' +p140941 +tp140942 +a(g140939 +g140941 +S'have' +p140943 +tp140944 +a(g140941 +g140943 +S'a' +p140945 +tp140946 +a(g140943 +g140945 +S'halo.' +p140947 +tp140948 +a(g140945 +g140947 +S'although' +p140949 +tp140950 +a(g140947 +g140949 +S'few' +p140951 +tp140952 +a(g140949 +g140951 +S'of' +p140953 +tp140954 +a(g140951 +g140953 +S'the' +p140955 +tp140956 +a(g140953 +g140955 +S'men' +p140957 +tp140958 +a(g140955 +g140957 +S'can' +p140959 +tp140960 +a(g140957 +g140959 +S'be' +p140961 +tp140962 +a(g140959 +g140961 +S'identified,' +p140963 +tp140964 +a(g140961 +g140963 +S'john' +p140965 +tp140966 +a(g140963 +g140965 +S'the' +p140967 +tp140968 +a(g140965 +g140967 +S'evangelist' +p140969 +tp140970 +a(g140967 +g140969 +S'is' +p140971 +tp140972 +a(g140969 +g140971 +S'recognizable.' +p140973 +tp140974 +a(g140971 +g140973 +S'he' +p140975 +tp140976 +a(g140973 +g140975 +S'is' +p140977 +tp140978 +a(g140975 +g140977 +S'the' +p140979 +tp140980 +a(g140977 +g140979 +S'blond,' +p140981 +tp140982 +a(g140979 +g140981 +S'beardless' +p140983 +tp140984 +a(g140981 +g140983 +S'youth' +p140985 +tp140986 +a(g140983 +g140985 +S'dressed' +p140987 +tp140988 +a(g140985 +g140987 +S'in' +p140989 +tp140990 +a(g140987 +g140989 +S'green' +p140991 +tp140992 +a(g140989 +g140991 +S'who' +p140993 +tp140994 +a(g140991 +g140993 +S'solicitously' +p140995 +tp140996 +a(g140993 +g140995 +S'puts' +p140997 +tp140998 +a(g140995 +g140997 +S'his' +p140999 +tp141000 +a(g140997 +g140999 +S'arm' +p141001 +tp141002 +a(g140999 +g141001 +S'around' +p141003 +tp141004 +a(g141001 +g141003 +S'mary.' +p141005 +tp141006 +a(g141003 +g141005 +S'surrounding' +p141007 +tp141008 +a(g141005 +g141007 +S'the' +p141009 +tp141010 +a(g141007 +g141009 +S'risen' +p141011 +tp141012 +a(g141009 +g141011 +S'christ' +p141013 +tp141014 +a(g141011 +g141013 +S'are' +p141015 +tp141016 +a(g141013 +g141015 +S'a' +p141017 +tp141018 +a(g141015 +g141017 +S'group' +p141019 +tp141020 +a(g141017 +g141019 +S'of' +p141021 +tp141022 +a(g141019 +g141021 +S'old' +p141023 +tp141024 +a(g141021 +g141023 +S'testament' +p141025 +tp141026 +a(g141023 +g141025 +S'personages' +p141027 +tp141028 +a(g141025 +g141027 +S'who' +p141029 +tp141030 +a(g141027 +g141029 +S'either' +p141031 +tp141032 +a(g141029 +g141031 +S'predicted' +p141033 +tp141034 +a(g141031 +g141033 +S'or' +p141035 +tp141036 +a(g141033 +g141035 +S'foreshadowed' +p141037 +tp141038 +a(g141035 +g141037 +S'events' +p141039 +tp141040 +a(g141037 +g141039 +S'of' +p141041 +tp141042 +a(g141039 +g141041 +S'his' +p141043 +tp141044 +a(g141041 +g141043 +S'life' +p141045 +tp141046 +a(g141043 +g141045 +S'on' +p141047 +tp141048 +a(g141045 +g141047 +S'earth.' +p141049 +tp141050 +a(g141047 +g141049 +S'the' +p141051 +tp141052 +a(g141049 +g141051 +S'gold' +p141053 +tp141054 +a(g141051 +g141053 +S'background,' +p141055 +tp141056 +a(g141053 +g141055 +S'bright' +p141057 +tp141058 +a(g141055 +g141057 +S'colors,' +p141059 +tp141060 +a(g141057 +g141059 +S'and' +p141061 +tp141062 +a(g141059 +g141061 +S'compact' +p141063 +tp141064 +a(g141061 +g141063 +S'space' +p141065 +tp141066 +a(g141063 +g141065 +S'reveal' +p141067 +tp141068 +a(g141065 +g141067 +S'the' +p141069 +tp141070 +a(g141067 +g141069 +S'lingering' +p141071 +tp141072 +a(g141069 +g141071 +S'influence' +p141073 +tp141074 +a(g141071 +g141073 +S'of' +p141075 +tp141076 +a(g141073 +g141075 +S'the' +p141077 +tp141078 +a(g141075 +g141077 +S'international' +p141079 +tp141080 +a(g141077 +g141079 +S'gothic.' +p141081 +tp141082 +a(g141079 +g141081 +S'however,' +p141083 +tp141084 +a(g141081 +g141083 +S'a' +p141085 +tp141086 +a(g141083 +g141085 +S'new' +p141087 +tp141088 +a(g141085 +g141087 +S'spirit' +p141089 +tp141090 +a(g141087 +g141089 +S'of' +p141091 +tp141092 +a(g141089 +g141091 +S'visual' +p141093 +tp141094 +a(g141091 +g141093 +S'observation' +p141095 +tp141096 +a(g141093 +g141095 +S'also' +p141097 +tp141098 +a(g141095 +g141097 +S'can' +p141099 +tp141100 +a(g141097 +g141099 +S'be' +p141101 +tp141102 +a(g141099 +g141101 +S'detected.' +p141103 +tp141104 +a(g141101 +g141103 +S'the' +p141105 +tp141106 +a(g141103 +g141105 +S'sharp,' +p141107 +tp141108 +a(g141105 +g141107 +S'angular' +p141109 +tp141110 +a(g141107 +g141109 +S'folds' +p141111 +tp141112 +a(g141109 +g141111 +S'of' +p141113 +tp141114 +a(g141111 +g141113 +S'the' +p141115 +tp141116 +a(g141113 +g141115 +S'drapery' +p141117 +tp141118 +a(g141115 +g141117 +S'evoke' +p141119 +tp141120 +a(g141117 +g141119 +S'the' +p141121 +tp141122 +a(g141119 +g141121 +S'perception' +p141123 +tp141124 +a(g141121 +g141123 +S'of' +p141125 +tp141126 +a(g141123 +g141125 +S'real' +p141127 +tp141128 +a(g141125 +g141127 +S'human' +p141129 +tp141130 +a(g141127 +g141129 +S'forms' +p141131 +tp141132 +a(g141129 +g141131 +S'beneath' +p141133 +tp141134 +a(g141131 +g141133 +S'the' +p141135 +tp141136 +a(g141133 +g141135 +S'material.' +p141137 +tp141138 +a(g141135 +g141137 +S'further,' +p141139 +tp141140 +a(g141137 +g141139 +S'the' +p141141 +tp141142 +a(g141139 +g141141 +S'faces' +p141143 +tp141144 +a(g141141 +g141143 +S'of' +p141145 +tp141146 +a(g141143 +g141145 +S'the' +p141147 +tp141148 +a(g141145 +g141147 +S'apostles' +p141149 +tp141150 +a(g141147 +g141149 +S'reveal' +p141151 +tp141152 +a(g141149 +g141151 +S'a' +p141153 +tp141154 +a(g141151 +g141153 +S'broad' +p141155 +tp141156 +a(g141153 +g141155 +S'variety' +p141157 +tp141158 +a(g141155 +g141157 +S'of' +p141159 +tp141160 +a(g141157 +g141159 +S'human' +p141161 +tp141162 +a(g141159 +g141161 +S'emotions.' +p141163 +tp141164 +a(g141161 +g141163 +S'this' +p141165 +tp141166 +a(g141163 +g141165 +S'panel' +p141167 +tp141168 +a(g141165 +g141167 +S'was' +p141169 +tp141170 +a(g141167 +g141169 +S'once' +p141171 +tp141172 +a(g141169 +g141171 +S'part' +p141173 +tp141174 +a(g141171 +g141173 +S'of' +p141175 +tp141176 +a(g141173 +g141175 +S'the' +p141177 +tp141178 +a(g141175 +g141177 +S'high' +p141179 +tp141180 +a(g141177 +g141179 +S'altar' +p141181 +tp141182 +a(g141179 +g141181 +S'in' +p141183 +tp141184 +a(g141181 +g141183 +S'the' +p141185 +tp141186 +a(g141183 +g141185 +S'cistercian' +p141187 +tp141188 +a(g141185 +g141187 +S'abbey' +p141189 +tp141190 +a(g141187 +g141189 +S'church' +p141191 +tp141192 +a(g141189 +g141191 +S'of' +p141193 +tp141194 +a(g141191 +g141193 +S'marienfeld' +p141195 +tp141196 +a(g141193 +g141195 +S'at' +p141197 +tp141198 +a(g141195 +g141197 +S'münster.' +p141199 +tp141200 +a(g141197 +g141199 +S'at' +p141201 +tp141202 +a(g141199 +g141201 +S'its' +p141203 +tp141204 +a(g141201 +g141203 +S'center' +p141205 +tp141206 +a(g141203 +g141205 +S'was' +p141207 +tp141208 +a(g141205 +g141207 +S'a' +p141209 +tp141210 +a(g141207 +g141209 +S'richly' +p141211 +tp141212 +a(g141209 +g141211 +S'gilded' +p141213 +tp141214 +a(g141211 +g141213 +S'sculpture' +p141215 +tp141216 +a(g141213 +g141215 +S'of' +p141217 +tp141218 +a(g141215 +g141217 +S'the' +p141219 +tp141220 +a(g141217 +g141219 +S'virgin' +p141221 +tp141222 +a(g141219 +g141221 +S'and' +p141223 +tp141224 +a(g141221 +g141223 +S'child.' +p141225 +tp141226 +a(g141223 +g141225 +S'folding' +p141227 +tp141228 +a(g141225 +g141227 +S'wings' +p141229 +tp141230 +a(g141227 +g141229 +S'extended' +p141231 +tp141232 +a(g141229 +g141231 +S'from' +p141233 +tp141234 +a(g141231 +g141233 +S'this' +p141235 +tp141236 +a(g141233 +g141235 +S'core' +p141237 +tp141238 +a(g141235 +g141237 +S'with' +p141239 +tp141240 +a(g141237 +g141239 +S'pictures' +p141241 +tp141242 +a(g141239 +g141241 +S'on' +p141243 +tp141244 +a(g141241 +g141243 +S'the' +p141245 +tp141246 +a(g141243 +g141245 +S'fronts' +p141247 +tp141248 +a(g141245 +g141247 +S'and' +p141249 +tp141250 +a(g141247 +g141249 +S'backs.' +p141251 +tp141252 +a(g141249 +g141251 +S'when' +p141253 +tp141254 +a(g141251 +g141253 +S'the' +p141255 +tp141256 +a(g141253 +g141255 +S'shutters' +p141257 +tp141258 +a(g141255 +g141257 +S'were' +p141259 +tp141260 +a(g141257 +g141259 +S'open,' +p141261 +tp141262 +a(g141259 +g141261 +S'eight' +p141263 +tp141264 +a(g141261 +g141263 +S'scenes' +p141265 +tp141266 +a(g141263 +g141265 +S'--' +p141267 +tp141268 +a(g141265 +g141267 +S'including' +p141269 +tp141270 +a(g141267 +g141269 +S'the' +p141271 +tp141272 +a(g141269 +g141271 +S'national' +p141273 +tp141274 +a(g141271 +g141273 +S"gallery's" +p141275 +tp141276 +a(g141273 +g141275 +S'painting' +p141277 +tp141278 +a(g141275 +g141277 +S'--' +p141279 +tp141280 +a(g141277 +g141279 +S'revealed' +p141281 +tp141282 +a(g141279 +g141281 +S'the' +p141283 +tp141284 +a(g141281 +g141283 +S'story' +p141285 +tp141286 +a(g141283 +g141285 +S'of' +p141287 +tp141288 +a(g141285 +g141287 +S"mary's" +p141289 +tp141290 +a(g141287 +g141289 +S'life.' +p141291 +tp141292 +a(g141289 +g141291 +S'in' +p141293 +tp141294 +a(g141291 +g141293 +S'the' +p141295 +tp141296 +a(g141293 +g141295 +S'closed' +p141297 +tp141298 +a(g141295 +g141297 +S'positions,' +p141299 +tp141300 +a(g141297 +g141299 +S'eight' +p141301 +tp141302 +a(g141299 +g141301 +S'other' +p141303 +tp141304 +a(g141301 +g141303 +S'subjects' +p141305 +tp141306 +a(g141303 +g141305 +S'recounted' +p141307 +tp141308 +a(g141305 +g141307 +S"christ's" +p141309 +tp141310 +a(g141307 +g141309 +S'passion.' +p141311 +tp141312 +a(g141309 +g141311 +S'at' +p141313 +tp141314 +a(g141311 +g141313 +S'the' +p141315 +tp141316 +a(g141313 +g141315 +S'center' +p141317 +tp141318 +a(g141315 +g141317 +S'of' +p141319 +tp141320 +a(g141317 +g141319 +S'this' +p141321 +tp141322 +a(g141319 +g141321 +S'image' +p141323 +tp141324 +a(g141321 +g141323 +S'is' +p141325 +tp141326 +a(g141323 +g141325 +S'john,' +p141327 +tp141328 +a(g141325 +g141327 +S'the' +p141329 +tp141330 +a(g141327 +g141329 +S'oldest' +p141331 +tp141332 +a(g141329 +g141331 +S'son' +p141333 +tp141334 +a(g141331 +g141333 +S'of' +p141335 +tp141336 +a(g141333 +g141335 +S'the' +p141337 +tp141338 +a(g141335 +g141337 +S'prominent' +p141339 +tp141340 +a(g141337 +g141339 +S'westwood' +p141341 +tp141342 +a(g141339 +g141341 +S'family' +p141343 +tp141344 +a(g141341 +g141343 +S'from' +p141345 +tp141346 +a(g141343 +g141345 +S'baltimore,' +p141347 +tp141348 +a(g141345 +g141347 +S'extending' +p141349 +tp141350 +a(g141347 +g141349 +S'his' +p141351 +tp141352 +a(g141349 +g141351 +S'arm' +p141353 +tp141354 +a(g141351 +g141353 +S'behind' +p141355 +tp141356 +a(g141353 +g141355 +S'and' +p141357 +tp141358 +a(g141355 +g141357 +S'across' +p141359 +tp141360 +a(g141357 +g141359 +S'two' +p141361 +tp141362 +a(g141359 +g141361 +S'younger' +p141363 +tp141364 +a(g141361 +g141363 +S'children.' +p141365 +tp141366 +a(g141363 +g141365 +S'the' +p141367 +tp141368 +a(g141365 +g141367 +S'smaller' +p141369 +tp141370 +a(g141367 +g141369 +S'boys' +p141371 +tp141372 +a(g141369 +g141371 +S'stand' +p141373 +tp141374 +a(g141371 +g141373 +S'close' +p141375 +tp141376 +a(g141373 +g141375 +S'together,' +p141377 +tp141378 +a(g141375 +g141377 +S'hands' +p141379 +tp141380 +a(g141377 +g141379 +S'clasped.' +p141381 +tp141382 +a(g141379 +g141381 +S'all' +p141383 +tp141384 +a(g141381 +g141383 +S'three' +p141385 +tp141386 +a(g141383 +g141385 +S'are' +p141387 +tp141388 +a(g141385 +g141387 +S'dressed' +p141389 +tp141390 +a(g141387 +g141389 +S'in' +p141391 +tp141392 +a(g141389 +g141391 +S'high-waisted' +p141393 +tp141394 +a(g141391 +g141393 +S'trouser' +p141395 +tp141396 +a(g141393 +g141395 +S'suits,' +p141397 +tp141398 +a(g141395 +g141397 +S'fashionable' +p141399 +tp141400 +a(g141397 +g141399 +S'for' +p141401 +tp141402 +a(g141399 +g141401 +S'male' +p141403 +tp141404 +a(g141401 +g141403 +S'children' +p141405 +tp141406 +a(g141403 +g141405 +S'at' +p141407 +tp141408 +a(g141405 +g141407 +S'the' +p141409 +tp141410 +a(g141407 +g141409 +S'time,' +p141411 +tp141412 +a(g141409 +g141411 +S'and' +p141413 +tp141414 +a(g141411 +g141413 +S'hold' +p141415 +tp141416 +a(g141413 +g141415 +S'a' +p141417 +tp141418 +a(g141415 +g141417 +S'branch' +p141419 +tp141420 +a(g141417 +g141419 +S'or' +p141421 +tp141422 +a(g141419 +g141421 +S'flowers' +p141423 +tp141424 +a(g141421 +g141423 +S'as' +p141425 +tp141426 +a(g141423 +g141425 +S'if' +p141427 +tp141428 +a(g141425 +g141427 +S"they've" +p141429 +tp141430 +a(g141427 +g141429 +S'just' +p141431 +tp141432 +a(g141429 +g141431 +S'returned' +p141433 +tp141434 +a(g141431 +g141433 +S'from' +p141435 +tp141436 +a(g141433 +g141435 +S'the' +p141437 +tp141438 +a(g141435 +g141437 +S'outdoors.' +p141439 +tp141440 +a(g141437 +g141439 +S'the' +p141441 +tp141442 +a(g141439 +g141441 +S'family' +p141443 +tp141444 +a(g141441 +g141443 +S'pet' +p141445 +tp141446 +a(g141443 +g141445 +S'featured' +p141447 +tp141448 +a(g141445 +g141447 +S'in' +p141449 +tp141450 +a(g141447 +g141449 +S'the' +p141451 +tp141452 +a(g141449 +g141451 +S'bottom' +p141453 +tp141454 +a(g141451 +g141453 +S'right' +p141455 +tp141456 +a(g141453 +g141455 +S'holds' +p141457 +tp141458 +a(g141455 +g141457 +S'a' +p141459 +tp141460 +a(g141457 +g141459 +S'bird' +p141461 +tp141462 +a(g141459 +g141461 +S'in' +p141463 +tp141464 +a(g141461 +g141463 +S'its' +p141465 +tp141466 +a(g141463 +g141465 +S'mouth,' +p141467 +tp141468 +a(g141465 +g141467 +S'clearly' +p141469 +tp141470 +a(g141467 +g141469 +S'having' +p141471 +tp141472 +a(g141469 +g141471 +S'found' +p141473 +tp141474 +a(g141471 +g141473 +S'it' +p141475 +tp141476 +a(g141473 +g141475 +S'outside' +p141477 +tp141478 +a(g141475 +g141477 +S'as' +p141479 +tp141480 +a(g141477 +g141479 +S'well.' +p141481 +tp141482 +a(g141479 +g141481 +S'joshua' +p141483 +tp141484 +a(g141481 +g141483 +S"johnson's" +p141485 +tp141486 +a(g141483 +g141485 +S'sympathetic' +p141487 +tp141488 +a(g141485 +g141487 +S'pose' +p141489 +tp141490 +a(g141487 +g141489 +S'of' +p141491 +tp141492 +a(g141489 +g141491 +S'the' +p141493 +tp141494 +a(g141491 +g141493 +S'three' +p141495 +tp141496 +a(g141493 +g141495 +S'boys' +p141497 +tp141498 +a(g141495 +g141497 +S'makes' +p141499 +tp141500 +a(g141497 +g141499 +S'their' +p141501 +tp141502 +a(g141499 +g141501 +S'brotherly' +p141503 +tp141504 +a(g141501 +g141503 +S'relationship' +p141505 +tp141506 +a(g141503 +g141505 +S'the' +p141507 +tp141508 +a(g141505 +g141507 +S'subject' +p141509 +tp141510 +a(g141507 +g141509 +S'of' +p141511 +tp141512 +a(g141509 +g141511 +S'this' +p141513 +tp141514 +a(g141511 +g141513 +S'portrait.' +p141515 +tp141516 +a(g141513 +g141515 +S'a' +p141517 +tp141518 +a(g141515 +g141517 +S'free' +p141519 +tp141520 +a(g141517 +g141519 +S'black' +p141521 +tp141522 +a(g141519 +g141521 +S'artist' +p141523 +tp141524 +a(g141521 +g141523 +S'who' +p141525 +tp141526 +a(g141523 +g141525 +S'worked' +p141527 +tp141528 +a(g141525 +g141527 +S'in' +p141529 +tp141530 +a(g141527 +g141529 +S'baltimore,' +p141531 +tp141532 +a(g141529 +g141531 +S'maryland,' +p141533 +tp141534 +a(g141531 +g141533 +S'during' +p141535 +tp141536 +a(g141533 +g141535 +S'the' +p141537 +tp141538 +a(g141535 +g141537 +S'late' +p141539 +tp141540 +a(g141537 +g141539 +S'eighteenth' +p141541 +tp141542 +a(g141539 +g141541 +S'and' +p141543 +tp141544 +a(g141541 +g141543 +S'early' +p141545 +tp141546 +a(g141543 +g141545 +S'nineteenth' +p141547 +tp141548 +a(g141545 +g141547 +S'centuries,' +p141549 +tp141550 +a(g141547 +g141549 +S'johnson' +p141551 +tp141552 +a(g141549 +g141551 +S'is' +p141553 +tp141554 +a(g141551 +g141553 +S'known' +p141555 +tp141556 +a(g141553 +g141555 +S'for' +p141557 +tp141558 +a(g141555 +g141557 +S'his' +p141559 +tp141560 +a(g141557 +g141559 +S'skillful' +p141561 +tp141562 +a(g141559 +g141561 +S'use' +p141563 +tp141564 +a(g141561 +g141563 +S'of' +p141565 +tp141566 +a(g141563 +g141565 +S'design' +p141567 +tp141568 +a(g141565 +g141567 +S'and' +p141569 +tp141570 +a(g141567 +g141569 +S'balanced' +p141571 +tp141572 +a(g141569 +g141571 +S'composition,' +p141573 +tp141574 +a(g141571 +g141573 +S'as' +p141575 +tp141576 +a(g141573 +g141575 +S'seen' +p141577 +tp141578 +a(g141575 +g141577 +S'in' +p141579 +tp141580 +a(g141577 +g141579 +S'the' +p141581 +tp141582 +a(g141579 +g141581 +S'son' +p141583 +tp141584 +a(g141581 +g141583 +S'of' +p141585 +tp141586 +a(g141583 +g141585 +S'a' +p141587 +tp141588 +a(g141585 +g141587 +S'white' +p141589 +tp141590 +a(g141587 +g141589 +S'father' +p141591 +tp141592 +a(g141589 +g141591 +S'and' +p141593 +tp141594 +a(g141591 +g141593 +S'a' +p141595 +tp141596 +a(g141593 +g141595 +S'black' +p141597 +tp141598 +a(g141595 +g141597 +S'mother,' +p141599 +tp141600 +a(g141597 +g141599 +S'johnson' +p141601 +tp141602 +a(g141599 +g141601 +S'was' +p141603 +tp141604 +a(g141601 +g141603 +S'born' +p141605 +tp141606 +a(g141603 +g141605 +S'into' +p141607 +tp141608 +a(g141605 +g141607 +S'slavery' +p141609 +tp141610 +a(g141607 +g141609 +S'around' +p141611 +tp141612 +a(g141609 +g141611 +S'1763' +p141613 +tp141614 +a(g141611 +g141613 +S'and' +p141615 +tp141616 +a(g141613 +g141615 +S'freed' +p141617 +tp141618 +a(g141615 +g141617 +S'in' +p141619 +tp141620 +a(g141617 +g141619 +S'1782.' +p141621 +tp141622 +a(g141619 +g141621 +S'having' +p141623 +tp141624 +a(g141621 +g141623 +S'received' +p141625 +tp141626 +a(g141623 +g141625 +S'minimal' +p141627 +tp141628 +a(g141625 +g141627 +S'training' +p141629 +tp141630 +a(g141627 +g141629 +S'in' +p141631 +tp141632 +a(g141629 +g141631 +S'art,' +p141633 +tp141634 +a(g141631 +g141633 +S'perhaps' +p141635 +tp141636 +a(g141633 +g141635 +S'from' +p141637 +tp141638 +a(g141635 +g141637 +S'one' +p141639 +tp141640 +a(g141637 +g141639 +S'of' +p141641 +tp141642 +a(g141639 +g141641 +S'the' +p141643 +tp141644 +a(g141641 +g141643 +S'artists' +p141645 +tp141646 +a(g141643 +g141645 +S'in' +p141647 +tp141648 +a(g141645 +g141647 +S'the' +p141649 +tp141650 +a(g141647 +g141649 +S'extended' +p141651 +tp141652 +a(g141649 +g141651 +S'peale' +p141653 +tp141654 +a(g141651 +g141653 +S'family,' +p141655 +tp141656 +a(g141653 +g141655 +S'he' +p141657 +tp141658 +a(g141655 +g141657 +S'practiced' +p141659 +tp141660 +a(g141657 +g141659 +S'as' +p141661 +tp141662 +a(g141659 +g141661 +S'a' +p141663 +tp141664 +a(g141661 +g141663 +S'portrait' +p141665 +tp141666 +a(g141663 +g141665 +S'painter,' +p141667 +tp141668 +a(g141665 +g141667 +S'advertising' +p141669 +tp141670 +a(g141667 +g141669 +S'his' +p141671 +tp141672 +a(g141669 +g141671 +S'service' +p141673 +tp141674 +a(g141671 +g141673 +S'in' +p141675 +tp141676 +a(g141673 +g141675 +S"baltimore's" +p141677 +tp141678 +a(g141675 +g141677 +S'city' +p141679 +tp141680 +a(g141677 +g141679 +S'directories' +p141681 +tp141682 +a(g141679 +g141681 +S'from' +p141683 +tp141684 +a(g141681 +g141683 +S'1796' +p141685 +tp141686 +a(g141683 +g141685 +S'to' +p141687 +tp141688 +a(g141685 +g141687 +S'1824.' +p141689 +tp141690 +a(g141687 +g141689 +S'roughly' +p141691 +tp141692 +a(g141689 +g141691 +S'eighty' +p141693 +tp141694 +a(g141691 +g141693 +S'portraits' +p141695 +tp141696 +a(g141693 +g141695 +S'are' +p141697 +tp141698 +a(g141695 +g141697 +S'now' +p141699 +tp141700 +a(g141697 +g141699 +S'attributed' +p141701 +tp141702 +a(g141699 +g141701 +S'to' +p141703 +tp141704 +a(g141701 +g141703 +S'him.' +p141705 +tp141706 +a(g141703 +g141705 +S'cézanne' +p141707 +tp141708 +a(g141705 +g141707 +S'explored' +p141709 +tp141710 +a(g141707 +g141709 +S'an' +p141711 +tp141712 +a(g141709 +g141711 +S'astonishing' +p141713 +tp141714 +a(g141711 +g141713 +S'range' +p141715 +tp141716 +a(g141713 +g141715 +S'of' +p141717 +tp141718 +a(g141715 +g141717 +S'subjects,' +p141719 +tp141720 +a(g141717 +g141719 +S'the' +p141721 +tp141722 +a(g141719 +g141721 +S'rare' +p141723 +tp141724 +a(g141721 +g141723 +S'painter' +p141725 +tp141726 +a(g141723 +g141725 +S'among' +p141727 +tp141728 +a(g141725 +g141727 +S'his' +p141729 +tp141730 +a(g141727 +g141729 +S'peers' +p141731 +tp141732 +a(g141729 +g141731 +S'to' +p141733 +tp141734 +a(g141731 +g141733 +S'devote' +p141735 +tp141736 +a(g141733 +g141735 +S'extensive' +p141737 +tp141738 +a(g141735 +g141737 +S'time' +p141739 +tp141740 +a(g141737 +g141739 +S'to' +p141741 +tp141742 +a(g141739 +g141741 +S'landscape,' +p141743 +tp141744 +a(g141741 +g141743 +S'portraiture,' +p141745 +tp141746 +a(g141743 +g141745 +S'figural' +p141747 +tp141748 +a(g141745 +g141747 +S'scenes,' +p141749 +tp141750 +a(g141747 +g141749 +S'and' +p141751 +tp141752 +a(g141749 +g141751 +S'still' +p141753 +tp141754 +a(g141751 +g141753 +S'life.' +p141755 +tp141756 +a(g141753 +g141755 +S'the' +p141757 +tp141758 +a(g141755 +g141757 +S'latter' +p141759 +tp141760 +a(g141757 +g141759 +S'remained' +p141761 +tp141762 +a(g141759 +g141761 +S'central' +p141763 +tp141764 +a(g141761 +g141763 +S'to' +p141765 +tp141766 +a(g141763 +g141765 +S'his' +p141767 +tp141768 +a(g141765 +g141767 +S'artistic' +p141769 +tp141770 +a(g141767 +g141769 +S'practice' +p141771 +tp141772 +a(g141769 +g141771 +S'from' +p141773 +tp141774 +a(g141771 +g141773 +S'the' +p141775 +tp141776 +a(g141773 +g141775 +S'beginning' +p141777 +tp141778 +a(g141775 +g141777 +S'to' +p141779 +tp141780 +a(g141777 +g141779 +S'the' +p141781 +tp141782 +a(g141779 +g141781 +S'end.' +p141783 +tp141784 +a(g141781 +g141783 +S'this' +p141785 +tp141786 +a(g141783 +g141785 +S'late' +p141787 +tp141788 +a(g141785 +g141787 +S'still' +p141789 +tp141790 +a(g141787 +g141789 +S'life' +p141791 +tp141792 +a(g141789 +g141791 +S'consists' +p141793 +tp141794 +a(g141791 +g141793 +S'of' +p141795 +tp141796 +a(g141793 +g141795 +S'simple' +p141797 +tp141798 +a(g141795 +g141797 +S'props' +p141799 +tp141800 +a(g141797 +g141799 +S'he' +p141801 +tp141802 +a(g141799 +g141801 +S'kept' +p141803 +tp141804 +a(g141801 +g141803 +S'in' +p141805 +tp141806 +a(g141803 +g141805 +S'his' +p141807 +tp141808 +a(g141805 +g141807 +S'studio' +p141809 +tp141810 +a(g141807 +g141809 +S'and' +p141811 +tp141812 +a(g141809 +g141811 +S'used' +p141813 +tp141814 +a(g141811 +g141813 +S'in' +p141815 +tp141816 +a(g141813 +g141815 +S'many' +p141817 +tp141818 +a(g141815 +g141817 +S'of' +p141819 +tp141820 +a(g141817 +g141819 +S'his' +p141821 +tp141822 +a(g141819 +g141821 +S'compositions.' +p141823 +tp141824 +a(g141821 +g141823 +S'the' +p141825 +tp141826 +a(g141823 +g141825 +S'patterned' +p141827 +tp141828 +a(g141825 +g141827 +S'drapery' +p141829 +tp141830 +a(g141827 +g141829 +S'and' +p141831 +tp141832 +a(g141829 +g141831 +S'the' +p141833 +tp141834 +a(g141831 +g141833 +S'pitcher' +p141835 +tp141836 +a(g141833 +g141835 +S'with' +p141837 +tp141838 +a(g141835 +g141837 +S'floral' +p141839 +tp141840 +a(g141837 +g141839 +S'decoration' +p141841 +tp141842 +a(g141839 +g141841 +S'appear,' +p141843 +tp141844 +a(g141841 +g141843 +S'together' +p141845 +tp141846 +a(g141843 +g141845 +S'with' +p141847 +tp141848 +a(g141845 +g141847 +S'fruit' +p141849 +tp141850 +a(g141847 +g141849 +S'and' +p141851 +tp141852 +a(g141849 +g141851 +S'a' +p141853 +tp141854 +a(g141851 +g141853 +S'white' +p141855 +tp141856 +a(g141853 +g141855 +S'cloth,' +p141857 +tp141858 +a(g141855 +g141857 +S'in' +p141859 +tp141860 +a(g141857 +g141859 +S'slightly' +p141861 +tp141862 +a(g141859 +g141861 +S'different' +p141863 +tp141864 +a(g141861 +g141863 +S'arrangements' +p141865 +tp141866 +a(g141863 +g141865 +S'on' +p141867 +tp141868 +a(g141865 +g141867 +S'tabletops' +p141869 +tp141870 +a(g141867 +g141869 +S'in' +p141871 +tp141872 +a(g141869 +g141871 +S'five' +p141873 +tp141874 +a(g141871 +g141873 +S'other' +p141875 +tp141876 +a(g141873 +g141875 +S'paintings' +p141877 +tp141878 +a(g141875 +g141877 +S'made' +p141879 +tp141880 +a(g141877 +g141879 +S'in' +p141881 +tp141882 +a(g141879 +g141881 +S'the' +p141883 +tp141884 +a(g141881 +g141883 +S'late' +p141885 +tp141886 +a(g141883 +g141885 +S'1890s.' +p141887 +tp141888 +a(g141885 +g141887 +S'this' +p141889 +tp141890 +a(g141887 +g141889 +S'particular' +p141891 +tp141892 +a(g141889 +g141891 +S'drapery' +p141893 +tp141894 +a(g141891 +g141893 +S'was' +p141895 +tp141896 +a(g141893 +g141895 +S'a' +p141897 +tp141898 +a(g141895 +g141897 +S'favorite' +p141899 +tp141900 +a(g141897 +g141899 +S'motif' +p141901 +tp141902 +a(g141899 +g141901 +S'of' +p141903 +tp141904 +a(g141901 +g141903 +S'the' +p141905 +tp141906 +a(g141903 +g141905 +S'artist.' +p141907 +tp141908 +a(g141905 +g141907 +S'he' +p141909 +tp141910 +a(g141907 +g141909 +S'first' +p141911 +tp141912 +a(g141909 +g141911 +S'included' +p141913 +tp141914 +a(g141911 +g141913 +S'it' +p141915 +tp141916 +a(g141913 +g141915 +S'in' +p141917 +tp141918 +a(g141915 +g141917 +S'works' +p141919 +tp141920 +a(g141917 +g141919 +S'he' +p141921 +tp141922 +a(g141919 +g141921 +S'made' +p141923 +tp141924 +a(g141921 +g141923 +S'in' +p141925 +tp141926 +a(g141923 +g141925 +S'paris' +p141927 +tp141928 +a(g141925 +g141927 +S'(see' +p141929 +tp141930 +a(g141927 +g141929 +S'of' +p141931 +tp141932 +a(g141929 +g141931 +S'all' +p141933 +tp141934 +a(g141931 +g141933 +S'the' +p141935 +tp141936 +a(g141933 +g141935 +S'possible' +p141937 +tp141938 +a(g141935 +g141937 +S'painting' +p141939 +tp141940 +a(g141937 +g141939 +S'genres,' +p141941 +tp141942 +a(g141939 +g141941 +S'the' +p141943 +tp141944 +a(g141941 +g141943 +S'still' +p141945 +tp141946 +a(g141943 +g141945 +S'life' +p141947 +tp141948 +a(g141945 +g141947 +S'was' +p141949 +tp141950 +a(g141947 +g141949 +S'traditionally' +p141951 +tp141952 +a(g141949 +g141951 +S'scorned' +p141953 +tp141954 +a(g141951 +g141953 +S'by' +p141955 +tp141956 +a(g141953 +g141955 +S'critics' +p141957 +tp141958 +a(g141955 +g141957 +S'and' +p141959 +tp141960 +a(g141957 +g141959 +S'theorists' +p141961 +tp141962 +a(g141959 +g141961 +S'as' +p141963 +tp141964 +a(g141961 +g141963 +S'being' +p141965 +tp141966 +a(g141963 +g141965 +S'the' +p141967 +tp141968 +a(g141965 +g141967 +S'least' +p141969 +tp141970 +a(g141967 +g141969 +S'noble,' +p141971 +tp141972 +a(g141969 +g141971 +S'for' +p141973 +tp141974 +a(g141971 +g141973 +S'it' +p141975 +tp141976 +a(g141973 +g141975 +S'was' +p141977 +tp141978 +a(g141975 +g141977 +S'considered' +p141979 +tp141980 +a(g141977 +g141979 +S'to' +p141981 +tp141982 +a(g141979 +g141981 +S'be' +p141983 +tp141984 +a(g141981 +g141983 +S'a' +p141985 +tp141986 +a(g141983 +g141985 +S'mere' +p141987 +tp141988 +a(g141985 +g141987 +S'replication' +p141989 +tp141990 +a(g141987 +g141989 +S'of' +p141991 +tp141992 +a(g141989 +g141991 +S'inanimate' +p141993 +tp141994 +a(g141991 +g141993 +S'objects' +p141995 +tp141996 +a(g141993 +g141995 +S'that' +p141997 +tp141998 +a(g141995 +g141997 +S'demanded' +p141999 +tp142000 +a(g141997 +g141999 +S'little' +p142001 +tp142002 +a(g141999 +g142001 +S'of' +p142003 +tp142004 +a(g142001 +g142003 +S'the' +p142005 +tp142006 +a(g142003 +g142005 +S'artist\xe2\x80\x99s' +p142007 +tp142008 +a(g142005 +g142007 +S'imagination.' +p142009 +tp142010 +a(g142007 +g142009 +S'yet' +p142011 +tp142012 +a(g142009 +g142011 +S'the' +p142013 +tp142014 +a(g142011 +g142013 +S'still' +p142015 +tp142016 +a(g142013 +g142015 +S'life' +p142017 +tp142018 +a(g142015 +g142017 +S'allows' +p142019 +tp142020 +a(g142017 +g142019 +S'the' +p142021 +tp142022 +a(g142019 +g142021 +S'artist' +p142023 +tp142024 +a(g142021 +g142023 +S'an' +p142025 +tp142026 +a(g142023 +g142025 +S'enormous' +p142027 +tp142028 +a(g142025 +g142027 +S'element' +p142029 +tp142030 +a(g142027 +g142029 +S'of' +p142031 +tp142032 +a(g142029 +g142031 +S'control—in' +p142033 +tp142034 +a(g142031 +g142033 +S'the' +p142035 +tp142036 +a(g142033 +g142035 +S'choice' +p142037 +tp142038 +a(g142035 +g142037 +S'of' +p142039 +tp142040 +a(g142037 +g142039 +S'objects' +p142041 +tp142042 +a(g142039 +g142041 +S'and' +p142043 +tp142044 +a(g142041 +g142043 +S'in' +p142045 +tp142046 +a(g142043 +g142045 +S'their' +p142047 +tp142048 +a(g142045 +g142047 +S'arrangement' +p142049 +tp142050 +a(g142047 +g142049 +S'into' +p142051 +tp142052 +a(g142049 +g142051 +S'seemingly' +p142053 +tp142054 +a(g142051 +g142053 +S'endless' +p142055 +tp142056 +a(g142053 +g142055 +S'variations,' +p142057 +tp142058 +a(g142055 +g142057 +S'which' +p142059 +tp142060 +a(g142057 +g142059 +S'must' +p142061 +tp142062 +a(g142059 +g142061 +S'have' +p142063 +tp142064 +a(g142061 +g142063 +S'been' +p142065 +tp142066 +a(g142063 +g142065 +S'the' +p142067 +tp142068 +a(g142065 +g142067 +S'essence' +p142069 +tp142070 +a(g142067 +g142069 +S'of' +p142071 +tp142072 +a(g142069 +g142071 +S'its' +p142073 +tp142074 +a(g142071 +g142073 +S'appeal' +p142075 +tp142076 +a(g142073 +g142075 +S'for' +p142077 +tp142078 +a(g142075 +g142077 +S'cézanne.' +p142079 +tp142080 +a(g142077 +g142079 +S'in' +p142081 +tp142082 +a(g142079 +g142081 +S'still' +p142083 +tp142084 +a(g142081 +g142083 +S'life' +p142085 +tp142086 +a(g142083 +g142085 +S'after' +p142087 +tp142088 +a(g142085 +g142087 +S'still' +p142089 +tp142090 +a(g142087 +g142089 +S'life' +p142091 +tp142092 +a(g142089 +g142091 +S'he' +p142093 +tp142094 +a(g142091 +g142093 +S'explored' +p142095 +tp142096 +a(g142093 +g142095 +S'the' +p142097 +tp142098 +a(g142095 +g142097 +S'correspondences' +p142099 +tp142100 +a(g142097 +g142099 +S'among' +p142101 +tp142102 +a(g142099 +g142101 +S'objects,' +p142103 +tp142104 +a(g142101 +g142103 +S'searching' +p142105 +tp142106 +a(g142103 +g142105 +S'for' +p142107 +tp142108 +a(g142105 +g142107 +S'harmony' +p142109 +tp142110 +a(g142107 +g142109 +S'and' +p142111 +tp142112 +a(g142109 +g142111 +S'balance' +p142113 +tp142114 +a(g142111 +g142113 +S'in' +p142115 +tp142116 +a(g142113 +g142115 +S'form' +p142117 +tp142118 +a(g142115 +g142117 +S'and' +p142119 +tp142120 +a(g142117 +g142119 +S'color.' +p142121 +tp142122 +a(g142119 +g142121 +S'the' +p142123 +tp142124 +a(g142121 +g142123 +S'modest' +p142125 +tp142126 +a(g142123 +g142125 +S'household' +p142127 +tp142128 +a(g142125 +g142127 +S'wares' +p142129 +tp142130 +a(g142127 +g142129 +S'that' +p142131 +tp142132 +a(g142129 +g142131 +S'cézanne' +p142133 +tp142134 +a(g142131 +g142133 +S'preferred' +p142135 +tp142136 +a(g142133 +g142135 +S'to' +p142137 +tp142138 +a(g142135 +g142137 +S'depict' +p142139 +tp142140 +a(g142137 +g142139 +S'evoke' +p142141 +tp142142 +a(g142139 +g142141 +S'the' +p142143 +tp142144 +a(g142141 +g142143 +S'rustic' +p142145 +tp142146 +a(g142143 +g142145 +S'still' +p142147 +tp142148 +a(g142145 +g142147 +S'lifes' +p142149 +tp142150 +a(g142147 +g142149 +S'of' +p142151 +tp142152 +a(g142149 +g142151 +S'jean' +p142153 +tp142154 +a(g142151 +g142153 +S'siméon' +p142155 +tp142156 +a(g142153 +g142155 +S'chardin,' +p142157 +tp142158 +a(g142155 +g142157 +S'whom' +p142159 +tp142160 +a(g142157 +g142159 +S'he' +p142161 +tp142162 +a(g142159 +g142161 +S'greatly' +p142163 +tp142164 +a(g142161 +g142163 +S'admired,' +p142165 +tp142166 +a(g142163 +g142165 +S'but' +p142167 +tp142168 +a(g142165 +g142167 +S'cézanne\xe2\x80\x99s' +p142169 +tp142170 +a(g142167 +g142169 +S'orchestrated' +p142171 +tp142172 +a(g142169 +g142171 +S'play' +p142173 +tp142174 +a(g142171 +g142173 +S'on' +p142175 +tp142176 +a(g142173 +g142175 +S'pictorial' +p142177 +tp142178 +a(g142175 +g142177 +S'structure,' +p142179 +tp142180 +a(g142177 +g142179 +S'rhythm,' +p142181 +tp142182 +a(g142179 +g142181 +S'line,' +p142183 +tp142184 +a(g142181 +g142183 +S'and' +p142185 +tp142186 +a(g142183 +g142185 +S'shape' +p142187 +tp142188 +a(g142185 +g142187 +S'elevates' +p142189 +tp142190 +a(g142187 +g142189 +S'them' +p142191 +tp142192 +a(g142189 +g142191 +S'out' +p142193 +tp142194 +a(g142191 +g142193 +S'of' +p142195 +tp142196 +a(g142193 +g142195 +S'the' +p142197 +tp142198 +a(g142195 +g142197 +S'realm' +p142199 +tp142200 +a(g142197 +g142199 +S'of' +p142201 +tp142202 +a(g142199 +g142201 +S'the' +p142203 +tp142204 +a(g142201 +g142203 +S'humble.' +p142205 +tp142206 +a(g142203 +g142205 +S'nothing' +p142207 +tp142208 +a(g142205 +g142207 +S'seems' +p142209 +tp142210 +a(g142207 +g142209 +S'random' +p142211 +tp142212 +a(g142209 +g142211 +S'in' +p142213 +tp142214 +a(g142211 +g142213 +S'this' +p142215 +tp142216 +a(g142213 +g142215 +S'imposing' +p142217 +tp142218 +a(g142215 +g142217 +S'canvas,' +p142219 +tp142220 +a(g142217 +g142219 +S'with' +p142221 +tp142222 +a(g142219 +g142221 +S'its' +p142223 +tp142224 +a(g142221 +g142223 +S'dramatic' +p142225 +tp142226 +a(g142223 +g142225 +S'sweep' +p142227 +tp142228 +a(g142225 +g142227 +S'of' +p142229 +tp142230 +a(g142227 +g142229 +S'drapery' +p142231 +tp142232 +a(g142229 +g142231 +S'that' +p142233 +tp142234 +a(g142231 +g142233 +S'tumbles' +p142235 +tp142236 +a(g142233 +g142235 +S'onto' +p142237 +tp142238 +a(g142235 +g142237 +S'the' +p142239 +tp142240 +a(g142237 +g142239 +S'table' +p142241 +tp142242 +a(g142239 +g142241 +S'and' +p142243 +tp142244 +a(g142241 +g142243 +S'envelops' +p142245 +tp142246 +a(g142243 +g142245 +S'the' +p142247 +tp142248 +a(g142245 +g142247 +S'pitcher.' +p142249 +tp142250 +a(g142247 +g142249 +S'triangular' +p142251 +tp142252 +a(g142249 +g142251 +S'folds' +p142253 +tp142254 +a(g142251 +g142253 +S'in' +p142255 +tp142256 +a(g142253 +g142255 +S'the' +p142257 +tp142258 +a(g142255 +g142257 +S'fabric' +p142259 +tp142260 +a(g142257 +g142259 +S'echo' +p142261 +tp142262 +a(g142259 +g142261 +S'the' +p142263 +tp142264 +a(g142261 +g142263 +S'pyramid' +p142265 +tp142266 +a(g142263 +g142265 +S'of' +p142267 +tp142268 +a(g142265 +g142267 +S'peaches' +p142269 +tp142270 +a(g142267 +g142269 +S'stacked' +p142271 +tp142272 +a(g142269 +g142271 +S'on' +p142273 +tp142274 +a(g142271 +g142273 +S'the' +p142275 +tp142276 +a(g142273 +g142275 +S'white' +p142277 +tp142278 +a(g142275 +g142277 +S'dish,' +p142279 +tp142280 +a(g142277 +g142279 +S'while' +p142281 +tp142282 +a(g142279 +g142281 +S'the' +p142283 +tp142284 +a(g142281 +g142283 +S'three' +p142285 +tp142286 +a(g142283 +g142285 +S'bright' +p142287 +tp142288 +a(g142285 +g142287 +S'accents' +p142289 +tp142290 +a(g142287 +g142289 +S'of' +p142291 +tp142292 +a(g142289 +g142291 +S'pitcher,' +p142293 +tp142294 +a(g142291 +g142293 +S'flower' +p142295 +tp142296 +a(g142293 +g142295 +S'holder,' +p142297 +tp142298 +a(g142295 +g142297 +S'and' +p142299 +tp142300 +a(g142297 +g142299 +S'napkin—set' +p142301 +tp142302 +a(g142299 +g142301 +S'off' +p142303 +tp142304 +a(g142301 +g142303 +S'against' +p142305 +tp142306 +a(g142303 +g142305 +S'an' +p142307 +tp142308 +a(g142305 +g142307 +S'otherwise' +p142309 +tp142310 +a(g142307 +g142309 +S'muted' +p142311 +tp142312 +a(g142309 +g142311 +S'color' +p142313 +tp142314 +a(g142311 +g142313 +S'scheme—form' +p142315 +tp142316 +a(g142313 +g142315 +S'another' +p142317 +tp142318 +a(g142315 +g142317 +S'inverted' +p142319 +tp142320 +a(g142317 +g142319 +S'triangle.' +p142321 +tp142322 +a(g142319 +g142321 +S'undulating' +p142323 +tp142324 +a(g142321 +g142323 +S'lines' +p142325 +tp142326 +a(g142323 +g142325 +S'of' +p142327 +tp142328 +a(g142325 +g142327 +S'the' +p142329 +tp142330 +a(g142327 +g142329 +S'faience' +p142331 +tp142332 +a(g142329 +g142331 +S'resonate' +p142333 +tp142334 +a(g142331 +g142333 +S'with' +p142335 +tp142336 +a(g142333 +g142335 +S'waves' +p142337 +tp142338 +a(g142335 +g142337 +S'of' +p142339 +tp142340 +a(g142337 +g142339 +S'the' +p142341 +tp142342 +a(g142339 +g142341 +S'table' +p142343 +tp142344 +a(g142341 +g142343 +S'skirt;' +p142345 +tp142346 +a(g142343 +g142345 +S'the' +p142347 +tp142348 +a(g142345 +g142347 +S'swelling' +p142349 +tp142350 +a(g142347 +g142349 +S'volume' +p142351 +tp142352 +a(g142349 +g142351 +S'of' +p142353 +tp142354 +a(g142351 +g142353 +S'pitcher' +p142355 +tp142356 +a(g142353 +g142355 +S'strikes' +p142357 +tp142358 +a(g142355 +g142357 +S'a' +p142359 +tp142360 +a(g142357 +g142359 +S'chord' +p142361 +tp142362 +a(g142359 +g142361 +S'with' +p142363 +tp142364 +a(g142361 +g142363 +S'the' +p142365 +tp142366 +a(g142363 +g142365 +S'plump' +p142367 +tp142368 +a(g142365 +g142367 +S'fruit;' +p142369 +tp142370 +a(g142367 +g142369 +S'and' +p142371 +tp142372 +a(g142369 +g142371 +S'little' +p142373 +tp142374 +a(g142371 +g142373 +S'touches' +p142375 +tp142376 +a(g142373 +g142375 +S'of' +p142377 +tp142378 +a(g142375 +g142377 +S'light' +p142379 +tp142380 +a(g142377 +g142379 +S'blue' +p142381 +tp142382 +a(g142379 +g142381 +S'pigment' +p142383 +tp142384 +a(g142381 +g142383 +S'mark' +p142385 +tp142386 +a(g142383 +g142385 +S'and' +p142387 +tp142388 +a(g142385 +g142387 +S'unite' +p142389 +tp142390 +a(g142387 +g142389 +S'curtain,' +p142391 +tp142392 +a(g142389 +g142391 +S'napkin,' +p142393 +tp142394 +a(g142391 +g142393 +S'and' +p142395 +tp142396 +a(g142393 +g142395 +S'vase.' +p142397 +tp142398 +a(g142395 +g142397 +S'the' +p142399 +tp142400 +a(g142397 +g142399 +S'peaches' +p142401 +tp142402 +a(g142399 +g142401 +S'and' +p142403 +tp142404 +a(g142401 +g142403 +S'apples' +p142405 +tp142406 +a(g142403 +g142405 +S'are' +p142407 +tp142408 +a(g142405 +g142407 +S'glowing' +p142409 +tp142410 +a(g142407 +g142409 +S'globes' +p142411 +tp142412 +a(g142409 +g142411 +S'of' +p142413 +tp142414 +a(g142411 +g142413 +S'orange,' +p142415 +tp142416 +a(g142413 +g142415 +S'yellow,' +p142417 +tp142418 +a(g142415 +g142417 +S'and' +p142419 +tp142420 +a(g142417 +g142419 +S'red,' +p142421 +tp142422 +a(g142419 +g142421 +S'seemingly' +p142423 +tp142424 +a(g142421 +g142423 +S'freshly' +p142425 +tp142426 +a(g142423 +g142425 +S'picked.' +p142427 +tp142428 +a(g142425 +g142427 +S'cézanne' +p142429 +tp142430 +a(g142427 +g142429 +S'felt' +p142431 +tp142432 +a(g142429 +g142431 +S'especially' +p142433 +tp142434 +a(g142431 +g142433 +S'drawn' +p142435 +tp142436 +a(g142433 +g142435 +S'to' +p142437 +tp142438 +a(g142435 +g142437 +S'fruits,' +p142439 +tp142440 +a(g142437 +g142439 +S'confiding' +p142441 +tp142442 +a(g142439 +g142441 +S'to' +p142443 +tp142444 +a(g142441 +g142443 +S'a' +p142445 +tp142446 +a(g142443 +g142445 +S'friend' +p142447 +tp142448 +a(g142445 +g142447 +S'that' +p142449 +tp142450 +a(g142447 +g142449 +S'"they' +p142451 +tp142452 +a(g142449 +g142451 +S'love' +p142453 +tp142454 +a(g142451 +g142453 +S'having' +p142455 +tp142456 +a(g142453 +g142455 +S'their' +p142457 +tp142458 +a(g142455 +g142457 +S'portraits' +p142459 +tp142460 +a(g142457 +g142459 +S'done.' +p142461 +tp142462 +a(g142459 +g142461 +S'.' +p142463 +tp142464 +a(g142461 +g142463 +S'.' +p142465 +tp142466 +a(g142463 +g142465 +S'.' +p142467 +tp142468 +a(g142465 +g142467 +S'they' +p142469 +tp142470 +a(g142467 +g142469 +S'exhale' +p142471 +tp142472 +a(g142469 +g142471 +S'their' +p142473 +tp142474 +a(g142471 +g142473 +S'message' +p142475 +tp142476 +a(g142473 +g142475 +S'with' +p142477 +tp142478 +a(g142475 +g142477 +S'their' +p142479 +tp142480 +a(g142477 +g142479 +S'scent.' +p142481 +tp142482 +a(g142479 +g142481 +S'they' +p142483 +tp142484 +a(g142481 +g142483 +S'reach' +p142485 +tp142486 +a(g142483 +g142485 +S'you' +p142487 +tp142488 +a(g142485 +g142487 +S'with' +p142489 +tp142490 +a(g142487 +g142489 +S'all' +p142491 +tp142492 +a(g142489 +g142491 +S'their' +p142493 +tp142494 +a(g142491 +g142493 +S'smells' +p142495 +tp142496 +a(g142493 +g142495 +S'and' +p142497 +tp142498 +a(g142495 +g142497 +S'tell' +p142499 +tp142500 +a(g142497 +g142499 +S'you' +p142501 +tp142502 +a(g142499 +g142501 +S'about' +p142503 +tp142504 +a(g142501 +g142503 +S'the' +p142505 +tp142506 +a(g142503 +g142505 +S'fields' +p142507 +tp142508 +a(g142505 +g142507 +S'they\xe2\x80\x99ve' +p142509 +tp142510 +a(g142507 +g142509 +S'left,' +p142511 +tp142512 +a(g142509 +g142511 +S'the' +p142513 +tp142514 +a(g142511 +g142513 +S'rain' +p142515 +tp142516 +a(g142513 +g142515 +S'that' +p142517 +tp142518 +a(g142515 +g142517 +S'made' +p142519 +tp142520 +a(g142517 +g142519 +S'them' +p142521 +tp142522 +a(g142519 +g142521 +S'grow,' +p142523 +tp142524 +a(g142521 +g142523 +S'the' +p142525 +tp142526 +a(g142523 +g142525 +S'dawns' +p142527 +tp142528 +a(g142525 +g142527 +S'they' +p142529 +tp142530 +a(g142527 +g142529 +S'watched.' +p142531 +tp142532 +a(g142529 +g142531 +S'when' +p142533 +tp142534 +a(g142531 +g142533 +S'i\xe2\x80\x99m' +p142535 +tp142536 +a(g142533 +g142535 +S'outlining' +p142537 +tp142538 +a(g142535 +g142537 +S'the' +p142539 +tp142540 +a(g142537 +g142539 +S'skin' +p142541 +tp142542 +a(g142539 +g142541 +S'of' +p142543 +tp142544 +a(g142541 +g142543 +S'a' +p142545 +tp142546 +a(g142543 +g142545 +S'lovely' +p142547 +tp142548 +a(g142545 +g142547 +S'peach' +p142549 +tp142550 +a(g142547 +g142549 +S'with' +p142551 +tp142552 +a(g142549 +g142551 +S'soft' +p142553 +tp142554 +a(g142551 +g142553 +S'touches' +p142555 +tp142556 +a(g142553 +g142555 +S'of' +p142557 +tp142558 +a(g142555 +g142557 +S'paint,' +p142559 +tp142560 +a(g142557 +g142559 +S'or' +p142561 +tp142562 +a(g142559 +g142561 +S'a' +p142563 +tp142564 +a(g142561 +g142563 +S'sad' +p142565 +tp142566 +a(g142563 +g142565 +S'old' +p142567 +tp142568 +a(g142565 +g142567 +S'apple,' +p142569 +tp142570 +a(g142567 +g142569 +S'i' +p142571 +tp142572 +a(g142569 +g142571 +S'catch' +p142573 +tp142574 +a(g142571 +g142573 +S'a' +p142575 +tp142576 +a(g142573 +g142575 +S'glimpse' +p142577 +tp142578 +a(g142575 +g142577 +S'in' +p142579 +tp142580 +a(g142577 +g142579 +S'the' +p142581 +tp142582 +a(g142579 +g142581 +S'reflections' +p142583 +tp142584 +a(g142581 +g142583 +S'they' +p142585 +tp142586 +a(g142583 +g142585 +S'exchange' +p142587 +tp142588 +a(g142585 +g142587 +S'of' +p142589 +tp142590 +a(g142587 +g142589 +S'.' +p142591 +tp142592 +a(g142589 +g142591 +S'.' +p142593 +tp142594 +a(g142591 +g142593 +S'.' +p142595 +tp142596 +a(g142593 +g142595 +S'the' +p142597 +tp142598 +a(g142595 +g142597 +S'same' +p142599 +tp142600 +a(g142597 +g142599 +S'love' +p142601 +tp142602 +a(g142599 +g142601 +S'of' +p142603 +tp142604 +a(g142601 +g142603 +S'the' +p142605 +tp142606 +a(g142603 +g142605 +S'sun,' +p142607 +tp142608 +a(g142605 +g142607 +S'the' +p142609 +tp142610 +a(g142607 +g142609 +S'same' +p142611 +tp142612 +a(g142609 +g142611 +S'recollection' +p142613 +tp142614 +a(g142611 +g142613 +S'of' +p142615 +tp142616 +a(g142613 +g142615 +S'the' +p142617 +tp142618 +a(g142615 +g142617 +S'dew,' +p142619 +tp142620 +a(g142617 +g142619 +S'a' +p142621 +tp142622 +a(g142619 +g142621 +S'freshness."' +p142623 +tp142624 +a(g142621 +g142623 +S'cézanne\xe2\x80\x99s' +p142625 +tp142626 +a(g142623 +g142625 +S'still' +p142627 +tp142628 +a(g142625 +g142627 +S'lifes' +p142629 +tp142630 +a(g142627 +g142629 +S'rank' +p142631 +tp142632 +a(g142629 +g142631 +S'among' +p142633 +tp142634 +a(g142631 +g142633 +S'his' +p142635 +tp142636 +a(g142633 +g142635 +S'finest' +p142637 +tp142638 +a(g142635 +g142637 +S'achievements,' +p142639 +tp142640 +a(g142637 +g142639 +S'something' +p142641 +tp142642 +a(g142639 +g142641 +S'his' +p142643 +tp142644 +a(g142641 +g142643 +S'contemporaries' +p142645 +tp142646 +a(g142643 +g142645 +S'began' +p142647 +tp142648 +a(g142645 +g142647 +S'to' +p142649 +tp142650 +a(g142647 +g142649 +S'acknowledge' +p142651 +tp142652 +a(g142649 +g142651 +S'in' +p142653 +tp142654 +a(g142651 +g142653 +S'the' +p142655 +tp142656 +a(g142653 +g142655 +S'last' +p142657 +tp142658 +a(g142655 +g142657 +S'decade' +p142659 +tp142660 +a(g142657 +g142659 +S'of' +p142661 +tp142662 +a(g142659 +g142661 +S'his' +p142663 +tp142664 +a(g142661 +g142663 +S'life.' +p142665 +tp142666 +a(g142663 +g142665 +S'the' +p142667 +tp142668 +a(g142665 +g142667 +S'still' +p142669 +tp142670 +a(g142667 +g142669 +S'lifes' +p142671 +tp142672 +a(g142669 +g142671 +S'in' +p142673 +tp142674 +a(g142671 +g142673 +S'particular' +p142675 +tp142676 +a(g142673 +g142675 +S'exhibit' +p142677 +tp142678 +a(g142675 +g142677 +S'some' +p142679 +tp142680 +a(g142677 +g142679 +S'of' +p142681 +tp142682 +a(g142679 +g142681 +S'the' +p142683 +tp142684 +a(g142681 +g142683 +S'artist\xe2\x80\x99s' +p142685 +tp142686 +a(g142683 +g142685 +S'most' +p142687 +tp142688 +a(g142685 +g142687 +S'influential' +p142689 +tp142690 +a(g142687 +g142689 +S'innovations' +p142691 +tp142692 +a(g142689 +g142691 +S'involving' +p142693 +tp142694 +a(g142691 +g142693 +S'pictorial' +p142695 +tp142696 +a(g142693 +g142695 +S'space.' +p142697 +tp142698 +a(g142695 +g142697 +S'here' +p142699 +tp142700 +a(g142697 +g142699 +S'the' +p142701 +tp142702 +a(g142699 +g142701 +S'top' +p142703 +tp142704 +a(g142701 +g142703 +S'of' +p142705 +tp142706 +a(g142703 +g142705 +S'the' +p142707 +tp142708 +a(g142705 +g142707 +S'table' +p142709 +tp142710 +a(g142707 +g142709 +S'is' +p142711 +tp142712 +a(g142709 +g142711 +S'tilted' +p142713 +tp142714 +a(g142711 +g142713 +S'precariously,' +p142715 +tp142716 +a(g142713 +g142715 +S'and' +p142717 +tp142718 +a(g142715 +g142717 +S'the' +p142719 +tp142720 +a(g142717 +g142719 +S'lines' +p142721 +tp142722 +a(g142719 +g142721 +S'that' +p142723 +tp142724 +a(g142721 +g142723 +S'create' +p142725 +tp142726 +a(g142723 +g142725 +S'its' +p142727 +tp142728 +a(g142725 +g142727 +S'right' +p142729 +tp142730 +a(g142727 +g142729 +S'side' +p142731 +tp142732 +a(g142729 +g142731 +S'fail' +p142733 +tp142734 +a(g142731 +g142733 +S'to' +p142735 +tp142736 +a(g142733 +g142735 +S'converge' +p142737 +tp142738 +a(g142735 +g142737 +S'toward' +p142739 +tp142740 +a(g142737 +g142739 +S'a' +p142741 +tp142742 +a(g142739 +g142741 +S'single' +p142743 +tp142744 +a(g142741 +g142743 +S'vanishing' +p142745 +tp142746 +a(g142743 +g142745 +S'point.' +p142747 +tp142748 +a(g142745 +g142747 +S'cézanne' +p142749 +tp142750 +a(g142747 +g142749 +S'was' +p142751 +tp142752 +a(g142749 +g142751 +S'among' +p142753 +tp142754 +a(g142751 +g142753 +S'the' +p142755 +tp142756 +a(g142753 +g142755 +S'first' +p142757 +tp142758 +a(g142755 +g142757 +S'painters' +p142759 +tp142760 +a(g142757 +g142759 +S'to' +p142761 +tp142762 +a(g142759 +g142761 +S'offer' +p142763 +tp142764 +a(g142761 +g142763 +S'disparate' +p142765 +tp142766 +a(g142763 +g142765 +S'views' +p142767 +tp142768 +a(g142765 +g142767 +S'of' +p142769 +tp142770 +a(g142767 +g142769 +S'the' +p142771 +tp142772 +a(g142769 +g142771 +S'same' +p142773 +tp142774 +a(g142771 +g142773 +S'object,' +p142775 +tp142776 +a(g142773 +g142775 +S'as' +p142777 +tp142778 +a(g142775 +g142777 +S'he' +p142779 +tp142780 +a(g142777 +g142779 +S'did' +p142781 +tp142782 +a(g142779 +g142781 +S'here' +p142783 +tp142784 +a(g142781 +g142783 +S'with' +p142785 +tp142786 +a(g142783 +g142785 +S'the' +p142787 +tp142788 +a(g142785 +g142787 +S'pitcher:' +p142789 +tp142790 +a(g142787 +g142789 +S'its' +p142791 +tp142792 +a(g142789 +g142791 +S'mouth' +p142793 +tp142794 +a(g142791 +g142793 +S'opens' +p142795 +tp142796 +a(g142793 +g142795 +S'wide' +p142797 +tp142798 +a(g142795 +g142797 +S'as' +p142799 +tp142800 +a(g142797 +g142799 +S'if' +p142801 +tp142802 +a(g142799 +g142801 +S'viewed' +p142803 +tp142804 +a(g142801 +g142803 +S'from' +p142805 +tp142806 +a(g142803 +g142805 +S'above' +p142807 +tp142808 +a(g142805 +g142807 +S'even' +p142809 +tp142810 +a(g142807 +g142809 +S'while' +p142811 +tp142812 +a(g142809 +g142811 +S'its' +p142813 +tp142814 +a(g142811 +g142813 +S'body' +p142815 +tp142816 +a(g142813 +g142815 +S'suggests' +p142817 +tp142818 +a(g142815 +g142817 +S'that' +p142819 +tp142820 +a(g142817 +g142819 +S'it' +p142821 +tp142822 +a(g142819 +g142821 +S'is' +p142823 +tp142824 +a(g142821 +g142823 +S'seen' +p142825 +tp142826 +a(g142823 +g142825 +S'at' +p142827 +tp142828 +a(g142825 +g142827 +S'eye' +p142829 +tp142830 +a(g142827 +g142829 +S'level.' +p142831 +tp142832 +a(g142829 +g142831 +S'the' +p142833 +tp142834 +a(g142831 +g142833 +S'subsequent' +p142835 +tp142836 +a(g142833 +g142835 +S'generation' +p142837 +tp142838 +a(g142835 +g142837 +S'of' +p142839 +tp142840 +a(g142837 +g142839 +S'cubist' +p142841 +tp142842 +a(g142839 +g142841 +S'painters' +p142843 +tp142844 +a(g142841 +g142843 +S'drew' +p142845 +tp142846 +a(g142843 +g142845 +S'inspiration' +p142847 +tp142848 +a(g142845 +g142847 +S'from' +p142849 +tp142850 +a(g142847 +g142849 +S'these' +p142851 +tp142852 +a(g142849 +g142851 +S'liberties' +p142853 +tp142854 +a(g142851 +g142853 +S'with' +p142855 +tp142856 +a(g142853 +g142855 +S'perspective' +p142857 +tp142858 +a(g142855 +g142857 +S'and' +p142859 +tp142860 +a(g142857 +g142859 +S'forged' +p142861 +tp142862 +a(g142859 +g142861 +S'an' +p142863 +tp142864 +a(g142861 +g142863 +S'even' +p142865 +tp142866 +a(g142863 +g142865 +S'more' +p142867 +tp142868 +a(g142865 +g142867 +S'radical' +p142869 +tp142870 +a(g142867 +g142869 +S'break' +p142871 +tp142872 +a(g142869 +g142871 +S'with' +p142873 +tp142874 +a(g142871 +g142873 +S'pictorial' +p142875 +tp142876 +a(g142873 +g142875 +S'tradition.' +p142877 +tp142878 +a(g142875 +g142877 +S'(text' +p142879 +tp142880 +a(g142877 +g142879 +S'by' +p142881 +tp142882 +a(g142879 +g142881 +S'margaret' +p142883 +tp142884 +a(g142881 +g142883 +S'doyle,' +p142885 +tp142886 +a(g142883 +g142885 +S'notes' +p142887 +tp142888 +a(g142885 +g142887 +S'' +p142891 +tp142892 +a(g142889 +g142891 +S'' +p142895 +tp142896 +a(g142893 +g142895 +S'' +p142899 +tp142900 +a(g142897 +g142899 +S'the' +p142901 +tp142902 +a(g142899 +g142901 +S'annunciation' +p142903 +tp142904 +a(g142901 +g142903 +S'described' +p142905 +tp142906 +a(g142903 +g142905 +S'by' +p142907 +tp142908 +a(g142905 +g142907 +S'saint' +p142909 +tp142910 +a(g142907 +g142909 +S'luke' +p142911 +tp142912 +a(g142909 +g142911 +S'is' +p142913 +tp142914 +a(g142911 +g142913 +S'interpreted' +p142915 +tp142916 +a(g142913 +g142915 +S'in' +p142917 +tp142918 +a(g142915 +g142917 +S'terms' +p142919 +tp142920 +a(g142917 +g142919 +S'of' +p142921 +tp142922 +a(g142919 +g142921 +S'actuality' +p142923 +tp142924 +a(g142921 +g142923 +S'in' +p142925 +tp142926 +a(g142923 +g142925 +S'this' +p142927 +tp142928 +a(g142925 +g142927 +S'painting,' +p142929 +tp142930 +a(g142927 +g142929 +S'which' +p142931 +tp142932 +a(g142929 +g142931 +S'was' +p142933 +tp142934 +a(g142931 +g142933 +S'probably' +p142935 +tp142936 +a(g142933 +g142935 +S'once' +p142937 +tp142938 +a(g142935 +g142937 +S'the' +p142939 +tp142940 +a(g142937 +g142939 +S'left' +p142941 +tp142942 +a(g142939 +g142941 +S'wing' +p142943 +tp142944 +a(g142941 +g142943 +S'of' +p142945 +tp142946 +a(g142943 +g142945 +S'a' +p142947 +tp142948 +a(g142945 +g142947 +S'triptych.' +p142949 +tp142950 +a(g142947 +g142949 +S'the' +p142951 +tp142952 +a(g142949 +g142951 +S'forms—even' +p142953 +tp142954 +a(g142951 +g142953 +S'that' +p142955 +tp142956 +a(g142953 +g142955 +S'of' +p142957 +tp142958 +a(g142955 +g142957 +S'the' +p142959 +tp142960 +a(g142957 +g142959 +S'archangel—seem' +p142961 +tp142962 +a(g142959 +g142961 +S'to' +p142963 +tp142964 +a(g142961 +g142963 +S'have' +p142965 +tp142966 +a(g142963 +g142965 +S'weight' +p142967 +tp142968 +a(g142965 +g142967 +S'and' +p142969 +tp142970 +a(g142967 +g142969 +S'volume.' +p142971 +tp142972 +a(g142969 +g142971 +S'light' +p142973 +tp142974 +a(g142971 +g142973 +S'and' +p142975 +tp142976 +a(g142973 +g142975 +S'shadow' +p142977 +tp142978 +a(g142975 +g142977 +S'play' +p142979 +tp142980 +a(g142977 +g142979 +S'over' +p142981 +tp142982 +a(g142979 +g142981 +S'them' +p142983 +tp142984 +a(g142981 +g142983 +S'in' +p142985 +tp142986 +a(g142983 +g142985 +S'a' +p142987 +tp142988 +a(g142985 +g142987 +S'natural' +p142989 +tp142990 +a(g142987 +g142989 +S'way,' +p142991 +tp142992 +a(g142989 +g142991 +S'and' +p142993 +tp142994 +a(g142991 +g142993 +S'with' +p142995 +tp142996 +a(g142993 +g142995 +S'amazing' +p142997 +tp142998 +a(g142995 +g142997 +S'skill,' +p142999 +tp143000 +a(g142997 +g142999 +S'jan' +p143001 +tp143002 +a(g142999 +g143001 +S'van' +p143003 +tp143004 +a(g143001 +g143003 +S'eyck' +p143005 +tp143006 +a(g143003 +g143005 +S'has' +p143007 +tp143008 +a(g143005 +g143007 +S'distinguished' +p143009 +tp143010 +a(g143007 +g143009 +S'between' +p143011 +tp143012 +a(g143009 +g143011 +S'the' +p143013 +tp143014 +a(g143011 +g143013 +S'textures' +p143015 +tp143016 +a(g143013 +g143015 +S'of' +p143017 +tp143018 +a(g143015 +g143017 +S'materials' +p143019 +tp143020 +a(g143017 +g143019 +S'ranging' +p143021 +tp143022 +a(g143019 +g143021 +S'from' +p143023 +tp143024 +a(g143021 +g143023 +S'hard,' +p143025 +tp143026 +a(g143023 +g143025 +S'polished' +p143027 +tp143028 +a(g143025 +g143027 +S'stone' +p143029 +tp143030 +a(g143027 +g143029 +S'to' +p143031 +tp143032 +a(g143029 +g143031 +S'the' +p143033 +tp143034 +a(g143031 +g143033 +S'soft,' +p143035 +tp143036 +a(g143033 +g143035 +S'fragile' +p143037 +tp143038 +a(g143035 +g143037 +S'petals' +p143039 +tp143040 +a(g143037 +g143039 +S'of' +p143041 +tp143042 +a(g143039 +g143041 +S'flowers.' +p143043 +tp143044 +a(g143041 +g143043 +S'yet' +p143045 +tp143046 +a(g143043 +g143045 +S'religious' +p143047 +tp143048 +a(g143045 +g143047 +S'symbolism' +p143049 +tp143050 +a(g143047 +g143049 +S'speaks' +p143051 +tp143052 +a(g143049 +g143051 +S'from' +p143053 +tp143054 +a(g143051 +g143053 +S'every' +p143055 +tp143056 +a(g143053 +g143055 +S'detail,' +p143057 +tp143058 +a(g143055 +g143057 +S'expounding' +p143059 +tp143060 +a(g143057 +g143059 +S'the' +p143061 +tp143062 +a(g143059 +g143061 +S'significance' +p143063 +tp143064 +a(g143061 +g143063 +S'of' +p143065 +tp143066 +a(g143063 +g143065 +S'the' +p143067 +tp143068 +a(g143065 +g143067 +S'annunciation,' +p143069 +tp143070 +a(g143067 +g143069 +S'and' +p143071 +tp143072 +a(g143069 +g143071 +S'the' +p143073 +tp143074 +a(g143071 +g143073 +S'relationship' +p143075 +tp143076 +a(g143073 +g143075 +S'of' +p143077 +tp143078 +a(g143075 +g143077 +S'the' +p143079 +tp143080 +a(g143077 +g143079 +S'old' +p143081 +tp143082 +a(g143079 +g143081 +S'testament' +p143083 +tp143084 +a(g143081 +g143083 +S'to' +p143085 +tp143086 +a(g143083 +g143085 +S'the' +p143087 +tp143088 +a(g143085 +g143087 +S'new.' +p143089 +tp143090 +a(g143087 +g143089 +S'the' +p143091 +tp143092 +a(g143089 +g143091 +S'structure' +p143093 +tp143094 +a(g143091 +g143093 +S'of' +p143095 +tp143096 +a(g143093 +g143095 +S'the' +p143097 +tp143098 +a(g143095 +g143097 +S'church' +p143099 +tp143100 +a(g143097 +g143099 +S'can' +p143101 +tp143102 +a(g143099 +g143101 +S'be' +p143103 +tp143104 +a(g143101 +g143103 +S'interpreted' +p143105 +tp143106 +a(g143103 +g143105 +S'symbolically;' +p143107 +tp143108 +a(g143105 +g143107 +S'the' +p143109 +tp143110 +a(g143107 +g143109 +S'dark' +p143111 +tp143112 +a(g143109 +g143111 +S'upper' +p143113 +tp143114 +a(g143111 +g143113 +S'story,' +p143115 +tp143116 +a(g143113 +g143115 +S'with' +p143117 +tp143118 +a(g143115 +g143117 +S'its' +p143119 +tp143120 +a(g143117 +g143119 +S'single,' +p143121 +tp143122 +a(g143119 +g143121 +S'stained–glass' +p143123 +tp143124 +a(g143121 +g143123 +S'window' +p143125 +tp143126 +a(g143123 +g143125 +S'of' +p143127 +tp143128 +a(g143125 +g143127 +S'jehovah,' +p143129 +tp143130 +a(g143127 +g143129 +S'may' +p143131 +tp143132 +a(g143129 +g143131 +S'refer' +p143133 +tp143134 +a(g143131 +g143133 +S'to' +p143135 +tp143136 +a(g143133 +g143135 +S'the' +p143137 +tp143138 +a(g143135 +g143137 +S'former' +p143139 +tp143140 +a(g143137 +g143139 +S'era' +p143141 +tp143142 +a(g143139 +g143141 +S'of' +p143143 +tp143144 +a(g143141 +g143143 +S'the' +p143145 +tp143146 +a(g143143 +g143145 +S'old' +p143147 +tp143148 +a(g143145 +g143147 +S'testament,' +p143149 +tp143150 +a(g143147 +g143149 +S'while' +p143151 +tp143152 +a(g143149 +g143151 +S'the' +p143153 +tp143154 +a(g143151 +g143153 +S'lower' +p143155 +tp143156 +a(g143153 +g143155 +S'part' +p143157 +tp143158 +a(g143155 +g143157 +S'of' +p143159 +tp143160 +a(g143157 +g143159 +S'the' +p143161 +tp143162 +a(g143159 +g143161 +S'building,' +p143163 +tp143164 +a(g143161 +g143163 +S'already' +p143165 +tp143166 +a(g143163 +g143165 +S'illuminated' +p143167 +tp143168 +a(g143165 +g143167 +S'by' +p143169 +tp143170 +a(g143167 +g143169 +S'the' +p143171 +tp143172 +a(g143169 +g143171 +S'"light' +p143173 +tp143174 +a(g143171 +g143173 +S'of' +p143175 +tp143176 +a(g143173 +g143175 +S'the' +p143177 +tp143178 +a(g143175 +g143177 +S'world"' +p143179 +tp143180 +a(g143177 +g143179 +S'and' +p143181 +tp143182 +a(g143179 +g143181 +S'dominated' +p143183 +tp143184 +a(g143181 +g143183 +S'by' +p143185 +tp143186 +a(g143183 +g143185 +S'transparent,' +p143187 +tp143188 +a(g143185 +g143187 +S'triple' +p143189 +tp143190 +a(g143187 +g143189 +S'windows' +p143191 +tp143192 +a(g143189 +g143191 +S'symbolizing' +p143193 +tp143194 +a(g143191 +g143193 +S'the' +p143195 +tp143196 +a(g143193 +g143195 +S'trinity,' +p143197 +tp143198 +a(g143195 +g143197 +S'may' +p143199 +tp143200 +a(g143197 +g143199 +S'refer' +p143201 +tp143202 +a(g143199 +g143201 +S'to' +p143203 +tp143204 +a(g143201 +g143203 +S'the' +p143205 +tp143206 +a(g143203 +g143205 +S'era' +p143207 +tp143208 +a(g143205 +g143207 +S'of' +p143209 +tp143210 +a(g143207 +g143209 +S'grace' +p143211 +tp143212 +a(g143209 +g143211 +S'of' +p143213 +tp143214 +a(g143211 +g143213 +S'the' +p143215 +tp143216 +a(g143213 +g143215 +S'new' +p143217 +tp143218 +a(g143215 +g143217 +S'testament.' +p143219 +tp143220 +a(g143217 +g143219 +S'the' +p143221 +tp143222 +a(g143219 +g143221 +S'idea' +p143223 +tp143224 +a(g143221 +g143223 +S'of' +p143225 +tp143226 +a(g143223 +g143225 +S'passing' +p143227 +tp143228 +a(g143225 +g143227 +S'from' +p143229 +tp143230 +a(g143227 +g143229 +S'old' +p143231 +tp143232 +a(g143229 +g143231 +S'to' +p143233 +tp143234 +a(g143231 +g143233 +S'new' +p143235 +tp143236 +a(g143233 +g143235 +S'is' +p143237 +tp143238 +a(g143235 +g143237 +S'further' +p143239 +tp143240 +a(g143237 +g143239 +S'manifested' +p143241 +tp143242 +a(g143239 +g143241 +S'in' +p143243 +tp143244 +a(g143241 +g143243 +S'the' +p143245 +tp143246 +a(g143243 +g143245 +S'transition' +p143247 +tp143248 +a(g143245 +g143247 +S'from' +p143249 +tp143250 +a(g143247 +g143249 +S'the' +p143251 +tp143252 +a(g143249 +g143251 +S'romanesque' +p143253 +tp143254 +a(g143251 +g143253 +S'round–arched' +p143255 +tp143256 +a(g143253 +g143255 +S'windows' +p143257 +tp143258 +a(g143255 +g143257 +S'of' +p143259 +tp143260 +a(g143257 +g143259 +S'the' +p143261 +tp143262 +a(g143259 +g143261 +S'upper' +p143263 +tp143264 +a(g143261 +g143263 +S'story' +p143265 +tp143266 +a(g143263 +g143265 +S'to' +p143267 +tp143268 +a(g143265 +g143267 +S'the' +p143269 +tp143270 +a(g143267 +g143269 +S'early' +p143271 +tp143272 +a(g143269 +g143271 +S'gothic' +p143273 +tp143274 +a(g143271 +g143273 +S'pointed' +p143275 +tp143276 +a(g143273 +g143275 +S'arches' +p143277 +tp143278 +a(g143275 +g143277 +S'of' +p143279 +tp143280 +a(g143277 +g143279 +S'the' +p143281 +tp143282 +a(g143279 +g143281 +S'lower' +p143283 +tp143284 +a(g143281 +g143283 +S'zone,' +p143285 +tp143286 +a(g143283 +g143285 +S'and' +p143287 +tp143288 +a(g143285 +g143287 +S'also' +p143289 +tp143290 +a(g143287 +g143289 +S'in' +p143291 +tp143292 +a(g143289 +g143291 +S'the' +p143293 +tp143294 +a(g143291 +g143293 +S'depictions' +p143295 +tp143296 +a(g143293 +g143295 +S'on' +p143297 +tp143298 +a(g143295 +g143297 +S'the' +p143299 +tp143300 +a(g143297 +g143299 +S'floor' +p143301 +tp143302 +a(g143299 +g143301 +S'tiles:' +p143303 +tp143304 +a(g143301 +g143303 +S'david' +p143305 +tp143306 +a(g143303 +g143305 +S'beheading' +p143307 +tp143308 +a(g143305 +g143307 +S'goliath' +p143309 +tp143310 +a(g143307 +g143309 +S'and' +p143311 +tp143312 +a(g143309 +g143311 +S'samson' +p143313 +tp143314 +a(g143311 +g143313 +S'destroying' +p143315 +tp143316 +a(g143313 +g143315 +S'the' +p143317 +tp143318 +a(g143315 +g143317 +S'philistine' +p143319 +tp143320 +a(g143317 +g143319 +S'temple' +p143321 +tp143322 +a(g143319 +g143321 +S'are' +p143323 +tp143324 +a(g143321 +g143323 +S'both' +p143325 +tp143326 +a(g143323 +g143325 +S'old' +p143327 +tp143328 +a(g143325 +g143327 +S'testament' +p143329 +tp143330 +a(g143327 +g143329 +S'events' +p143331 +tp143332 +a(g143329 +g143331 +S'in' +p143333 +tp143334 +a(g143331 +g143333 +S'the' +p143335 +tp143336 +a(g143333 +g143335 +S'salvation' +p143337 +tp143338 +a(g143335 +g143337 +S'of' +p143339 +tp143340 +a(g143337 +g143339 +S'the' +p143341 +tp143342 +a(g143339 +g143341 +S'jewish' +p143343 +tp143344 +a(g143341 +g143343 +S'people' +p143345 +tp143346 +a(g143343 +g143345 +S'which' +p143347 +tp143348 +a(g143345 +g143347 +S'prefigure' +p143349 +tp143350 +a(g143347 +g143349 +S'the' +p143351 +tp143352 +a(g143349 +g143351 +S'salvation' +p143353 +tp143354 +a(g143351 +g143353 +S'of' +p143355 +tp143356 +a(g143353 +g143355 +S'humankind' +p143357 +tp143358 +a(g143355 +g143357 +S'through' +p143359 +tp143360 +a(g143357 +g143359 +S'the' +p143361 +tp143362 +a(g143359 +g143361 +S'coming' +p143363 +tp143364 +a(g143361 +g143363 +S'of' +p143365 +tp143366 +a(g143363 +g143365 +S'christ.' +p143367 +tp143368 +a(g143365 +g143367 +S'manet' +p143369 +tp143370 +a(g143367 +g143369 +S'is' +p143371 +tp143372 +a(g143369 +g143371 +S'known' +p143373 +tp143374 +a(g143371 +g143373 +S'overwhelmingly' +p143375 +tp143376 +a(g143373 +g143375 +S'for' +p143377 +tp143378 +a(g143375 +g143377 +S'his' +p143379 +tp143380 +a(g143377 +g143379 +S'paintings' +p143381 +tp143382 +a(g143379 +g143381 +S'of' +p143383 +tp143384 +a(g143381 +g143383 +S'people,' +p143385 +tp143386 +a(g143383 +g143385 +S'but' +p143387 +tp143388 +a(g143385 +g143387 +S'he' +p143389 +tp143390 +a(g143387 +g143389 +S'called' +p143391 +tp143392 +a(g143389 +g143391 +S'still' +p143393 +tp143394 +a(g143391 +g143393 +S'life' +p143395 +tp143396 +a(g143393 +g143395 +S'"the' +p143397 +tp143398 +a(g143395 +g143397 +S'touchstone' +p143399 +tp143400 +a(g143397 +g143399 +S'of' +p143401 +tp143402 +a(g143399 +g143401 +S'painting,"' +p143403 +tp143404 +a(g143401 +g143403 +S'and' +p143405 +tp143406 +a(g143403 +g143405 +S'it' +p143407 +tp143408 +a(g143405 +g143407 +S'accounts' +p143409 +tp143410 +a(g143407 +g143409 +S'for' +p143411 +tp143412 +a(g143409 +g143411 +S'about' +p143413 +tp143414 +a(g143411 +g143413 +S'twenty' +p143415 +tp143416 +a(g143413 +g143415 +S'percent' +p143417 +tp143418 +a(g143415 +g143417 +S'of' +p143419 +tp143420 +a(g143417 +g143419 +S'his' +p143421 +tp143422 +a(g143419 +g143421 +S'work.' +p143423 +tp143424 +a(g143421 +g143423 +S'most' +p143425 +tp143426 +a(g143423 +g143425 +S'of' +p143427 +tp143428 +a(g143425 +g143427 +S'his' +p143429 +tp143430 +a(g143427 +g143429 +S'still' +p143431 +tp143432 +a(g143429 +g143431 +S'lifes,' +p143433 +tp143434 +a(g143431 +g143433 +S'like' +p143435 +tp143436 +a(g143433 +g143435 +S'this' +p143437 +tp143438 +a(g143435 +g143437 +S'one,' +p143439 +tp143440 +a(g143437 +g143439 +S'were' +p143441 +tp143442 +a(g143439 +g143441 +S'painted' +p143443 +tp143444 +a(g143441 +g143443 +S'in' +p143445 +tp143446 +a(g143443 +g143445 +S'the' +p143447 +tp143448 +a(g143445 +g143447 +S'1860s.' +p143449 +tp143450 +a(g143447 +g143449 +S'at' +p143451 +tp143452 +a(g143449 +g143451 +S'the' +p143453 +tp143454 +a(g143451 +g143453 +S'time,' +p143455 +tp143456 +a(g143453 +g143455 +S'still' +p143457 +tp143458 +a(g143455 +g143457 +S'life' +p143459 +tp143460 +a(g143457 +g143459 +S'enjoyed' +p143461 +tp143462 +a(g143459 +g143461 +S'great' +p143463 +tp143464 +a(g143461 +g143463 +S'popularity' +p143465 +tp143466 +a(g143463 +g143465 +S'among' +p143467 +tp143468 +a(g143465 +g143467 +S'the' +p143469 +tp143470 +a(g143467 +g143469 +S'bourgeois' +p143471 +tp143472 +a(g143469 +g143471 +S'citizens' +p143473 +tp143474 +a(g143471 +g143473 +S'of' +p143475 +tp143476 +a(g143473 +g143475 +S'the' +p143477 +tp143478 +a(g143475 +g143477 +S'second' +p143479 +tp143480 +a(g143477 +g143479 +S'empire.' +p143481 +tp143482 +a(g143479 +g143481 +S'dining' +p143483 +tp143484 +a(g143481 +g143483 +S'rooms' +p143485 +tp143486 +a(g143483 +g143485 +S'were' +p143487 +tp143488 +a(g143485 +g143487 +S'filled' +p143489 +tp143490 +a(g143487 +g143489 +S'with' +p143491 +tp143492 +a(g143489 +g143491 +S'depictions' +p143493 +tp143494 +a(g143491 +g143493 +S'of' +p143495 +tp143496 +a(g143493 +g143495 +S'lush' +p143497 +tp143498 +a(g143495 +g143497 +S'bouquets' +p143499 +tp143500 +a(g143497 +g143499 +S'and' +p143501 +tp143502 +a(g143499 +g143501 +S'lavish' +p143503 +tp143504 +a(g143501 +g143503 +S'repasts' +p143505 +tp143506 +a(g143503 +g143505 +S'that' +p143507 +tp143508 +a(g143505 +g143507 +S'suggested' +p143509 +tp143510 +a(g143507 +g143509 +S'their' +p143511 +tp143512 +a(g143509 +g143511 +S"owners'" +p143513 +tp143514 +a(g143511 +g143513 +S'comfortable' +p143515 +tp143516 +a(g143513 +g143515 +S'lives.' +p143517 +tp143518 +a(g143515 +g143517 +S'bourgeois' +p143519 +tp143520 +a(g143517 +g143519 +S'tastes' +p143521 +tp143522 +a(g143519 +g143521 +S'tended' +p143523 +tp143524 +a(g143521 +g143523 +S'toward' +p143525 +tp143526 +a(g143523 +g143525 +S'the' +p143527 +tp143528 +a(g143525 +g143527 +S'finely' +p143529 +tp143530 +a(g143527 +g143529 +S'detailed' +p143531 +tp143532 +a(g143529 +g143531 +S'and' +p143533 +tp143534 +a(g143531 +g143533 +S'highly' +p143535 +tp143536 +a(g143533 +g143535 +S'finished' +p143537 +tp143538 +a(g143535 +g143537 +S'work' +p143539 +tp143540 +a(g143537 +g143539 +S'of' +p143541 +tp143542 +a(g143539 +g143541 +S'more' +p143543 +tp143544 +a(g143541 +g143543 +S'conventional' +p143545 +tp143546 +a(g143543 +g143545 +S'artists,' +p143547 +tp143548 +a(g143545 +g143547 +S'however.' +p143549 +tp143550 +a(g143547 +g143549 +S'a' +p143551 +tp143552 +a(g143549 +g143551 +S'satirist' +p143553 +tp143554 +a(g143551 +g143553 +S'looked' +p143555 +tp143556 +a(g143553 +g143555 +S'at' +p143557 +tp143558 +a(g143555 +g143557 +S"manet's" +p143559 +tp143560 +a(g143557 +g143559 +S'painting' +p143561 +tp143562 +a(g143559 +g143561 +S'when' +p143563 +tp143564 +a(g143561 +g143563 +S'it' +p143565 +tp143566 +a(g143563 +g143565 +S'was' +p143567 +tp143568 +a(g143565 +g143567 +S'exhibited' +p143569 +tp143570 +a(g143567 +g143569 +S'in' +p143571 +tp143572 +a(g143569 +g143571 +S'1867' +p143573 +tp143574 +a(g143571 +g143573 +S'and' +p143575 +tp143576 +a(g143573 +g143575 +S'remarked,' +p143577 +tp143578 +a(g143575 +g143577 +S'"i' +p143579 +tp143580 +a(g143577 +g143579 +S'do' +p143581 +tp143582 +a(g143579 +g143581 +S'not' +p143583 +tp143584 +a(g143581 +g143583 +S'know' +p143585 +tp143586 +a(g143583 +g143585 +S'much' +p143587 +tp143588 +a(g143585 +g143587 +S'about' +p143589 +tp143590 +a(g143587 +g143589 +S'melons,' +p143591 +tp143592 +a(g143589 +g143591 +S'but' +p143593 +tp143594 +a(g143591 +g143593 +S'this' +p143595 +tp143596 +a(g143593 +g143595 +S'one' +p143597 +tp143598 +a(g143595 +g143597 +S'seems' +p143599 +tp143600 +a(g143597 +g143599 +S'past' +p143601 +tp143602 +a(g143599 +g143601 +S'its' +p143603 +tp143604 +a(g143601 +g143603 +S'prime."' +p143605 +tp143606 +a(g143603 +g143605 +S'what' +p143607 +tp143608 +a(g143605 +g143607 +S'contemporary' +p143609 +tp143610 +a(g143607 +g143609 +S'viewers' +p143611 +tp143612 +a(g143609 +g143611 +S'did' +p143613 +tp143614 +a(g143611 +g143613 +S'not' +p143615 +tp143616 +a(g143613 +g143615 +S'like' +p143617 +tp143618 +a(g143615 +g143617 +S'in' +p143619 +tp143620 +a(g143617 +g143619 +S"manet's" +p143621 +tp143622 +a(g143619 +g143621 +S'painting' +p143623 +tp143624 +a(g143621 +g143623 +S'is' +p143625 +tp143626 +a(g143623 +g143625 +S'precisely' +p143627 +tp143628 +a(g143625 +g143627 +S'what' +p143629 +tp143630 +a(g143627 +g143629 +S'attracts' +p143631 +tp143632 +a(g143629 +g143631 +S'us' +p143633 +tp143634 +a(g143631 +g143633 +S'today:' +p143635 +tp143636 +a(g143633 +g143635 +S'its' +p143637 +tp143638 +a(g143635 +g143637 +S'bold' +p143639 +tp143640 +a(g143637 +g143639 +S'style.' +p143641 +tp143642 +a(g143639 +g143641 +S'sudden' +p143643 +tp143644 +a(g143641 +g143643 +S'transitions' +p143645 +tp143646 +a(g143643 +g143645 +S'of' +p143647 +tp143648 +a(g143645 +g143647 +S'color—not' +p143649 +tp143650 +a(g143647 +g143649 +S'a' +p143651 +tp143652 +a(g143649 +g143651 +S'gradual' +p143653 +tp143654 +a(g143651 +g143653 +S'modulation' +p143655 +tp143656 +a(g143653 +g143655 +S'of' +p143657 +tp143658 +a(g143655 +g143657 +S'tone—give' +p143659 +tp143660 +a(g143657 +g143659 +S'shape' +p143661 +tp143662 +a(g143659 +g143661 +S'to' +p143663 +tp143664 +a(g143661 +g143663 +S'the' +p143665 +tp143666 +a(g143663 +g143665 +S'objects.' +p143667 +tp143668 +a(g143665 +g143667 +S'each' +p143669 +tp143670 +a(g143667 +g143669 +S'brushstroke' +p143671 +tp143672 +a(g143669 +g143671 +S'stands' +p143673 +tp143674 +a(g143671 +g143673 +S'independently.' +p143675 +tp143676 +a(g143673 +g143675 +S'they' +p143677 +tp143678 +a(g143675 +g143677 +S'rivet' +p143679 +tp143680 +a(g143677 +g143679 +S'attention' +p143681 +tp143682 +a(g143679 +g143681 +S'on' +p143683 +tp143684 +a(g143681 +g143683 +S'the' +p143685 +tp143686 +a(g143683 +g143685 +S'canvas' +p143687 +tp143688 +a(g143685 +g143687 +S'surface,' +p143689 +tp143690 +a(g143687 +g143689 +S'on' +p143691 +tp143692 +a(g143689 +g143691 +S'the' +p143693 +tp143694 +a(g143691 +g143693 +S'painting' +p143695 +tp143696 +a(g143693 +g143695 +S'itself.' +p143697 +tp143698 +a(g143695 +g143697 +S'the' +p143699 +tp143700 +a(g143697 +g143699 +S'simple' +p143701 +tp143702 +a(g143699 +g143701 +S'tabletop' +p143703 +tp143704 +a(g143701 +g143703 +S'assemblage' +p143705 +tp143706 +a(g143703 +g143705 +S'does' +p143707 +tp143708 +a(g143705 +g143707 +S'not' +p143709 +tp143710 +a(g143707 +g143709 +S'point,' +p143711 +tp143712 +a(g143709 +g143711 +S'either,' +p143713 +tp143714 +a(g143711 +g143713 +S'to' +p143715 +tp143716 +a(g143713 +g143715 +S'any' +p143717 +tp143718 +a(g143715 +g143717 +S'meaning' +p143719 +tp143720 +a(g143717 +g143719 +S'outside' +p143721 +tp143722 +a(g143719 +g143721 +S'itself.' +p143723 +tp143724 +a(g143721 +g143723 +S"manet's" +p143725 +tp143726 +a(g143723 +g143725 +S'arrangement' +p143727 +tp143728 +a(g143725 +g143727 +S'stands' +p143729 +tp143730 +a(g143727 +g143729 +S'on' +p143731 +tp143732 +a(g143729 +g143731 +S'its' +p143733 +tp143734 +a(g143731 +g143733 +S'own' +p143735 +tp143736 +a(g143733 +g143735 +S'terms,' +p143737 +tp143738 +a(g143735 +g143737 +S'without' +p143739 +tp143740 +a(g143737 +g143739 +S'allegorical' +p143741 +tp143742 +a(g143739 +g143741 +S'allusions—common' +p143743 +tp143744 +a(g143741 +g143743 +S'in' +p143745 +tp143746 +a(g143743 +g143745 +S'earlier' +p143747 +tp143748 +a(g143745 +g143747 +S'still' +p143749 +tp143750 +a(g143747 +g143749 +S'lifes—to' +p143751 +tp143752 +a(g143749 +g143751 +S'abundance' +p143753 +tp143754 +a(g143751 +g143753 +S'or' +p143755 +tp143756 +a(g143753 +g143755 +S'the' +p143757 +tp143758 +a(g143755 +g143757 +S'transitory' +p143759 +tp143760 +a(g143757 +g143759 +S'nature' +p143761 +tp143762 +a(g143759 +g143761 +S'of' +p143763 +tp143764 +a(g143761 +g143763 +S'life.' +p143765 +tp143766 +a(g143763 +g143765 +S'although' +p143767 +tp143768 +a(g143765 +g143767 +S'his' +p143769 +tp143770 +a(g143767 +g143769 +S'work' +p143771 +tp143772 +a(g143769 +g143771 +S'harkens' +p143773 +tp143774 +a(g143771 +g143773 +S'back' +p143775 +tp143776 +a(g143773 +g143775 +S'to' +p143777 +tp143778 +a(g143775 +g143777 +S'dutch' +p143779 +tp143780 +a(g143777 +g143779 +S'banquet' +p143781 +tp143782 +a(g143779 +g143781 +S'pictures' +p143783 +tp143784 +a(g143781 +g143783 +S'from' +p143785 +tp143786 +a(g143783 +g143785 +S'the' +p143787 +tp143788 +a(g143785 +g143787 +S'seventeenth' +p143789 +tp143790 +a(g143787 +g143789 +S'century,' +p143791 +tp143792 +a(g143789 +g143791 +S'it' +p143793 +tp143794 +a(g143791 +g143793 +S'has' +p143795 +tp143796 +a(g143793 +g143795 +S'a' +p143797 +tp143798 +a(g143795 +g143797 +S'distinctly' +p143799 +tp143800 +a(g143797 +g143799 +S'modern' +p143801 +tp143802 +a(g143799 +g143801 +S'feel.' +p143803 +tp143804 +a(g143801 +g143803 +S'the' +p143805 +tp143806 +a(g143803 +g143805 +S'red-coated' +p143807 +tp143808 +a(g143805 +g143807 +S'william' +p143809 +tp143810 +a(g143807 +g143809 +S'fitch' +p143811 +tp143812 +a(g143809 +g143811 +S'(1756-1795),' +p143813 +tp143814 +a(g143811 +g143813 +S'an' +p143815 +tp143816 +a(g143813 +g143815 +S'american-born' +p143817 +tp143818 +a(g143815 +g143817 +S'officer' +p143819 +tp143820 +a(g143817 +g143819 +S'in' +p143821 +tp143822 +a(g143819 +g143821 +S'the' +p143823 +tp143824 +a(g143821 +g143823 +S'british' +p143825 +tp143826 +a(g143823 +g143825 +S'army,' +p143827 +tp143828 +a(g143825 +g143827 +S'prepares' +p143829 +tp143830 +a(g143827 +g143829 +S'to' +p143831 +tp143832 +a(g143829 +g143831 +S'depart' +p143833 +tp143834 +a(g143831 +g143833 +S'on' +p143835 +tp143836 +a(g143833 +g143835 +S'a' +p143837 +tp143838 +a(g143835 +g143837 +S'magnificent' +p143839 +tp143840 +a(g143837 +g143839 +S'steed.' +p143841 +tp143842 +a(g143839 +g143841 +S'since' +p143843 +tp143844 +a(g143841 +g143843 +S'colonel' +p143845 +tp143846 +a(g143843 +g143845 +S'fitch' +p143847 +tp143848 +a(g143845 +g143847 +S'had' +p143849 +tp143850 +a(g143847 +g143849 +S'been' +p143851 +tp143852 +a(g143849 +g143851 +S'killed' +p143853 +tp143854 +a(g143851 +g143853 +S'in' +p143855 +tp143856 +a(g143853 +g143855 +S'action' +p143857 +tp143858 +a(g143855 +g143857 +S'at' +p143859 +tp143860 +a(g143857 +g143859 +S'jamaica' +p143861 +tp143862 +a(g143859 +g143861 +S'six' +p143863 +tp143864 +a(g143861 +g143863 +S'years' +p143865 +tp143866 +a(g143863 +g143865 +S'before' +p143867 +tp143868 +a(g143865 +g143867 +S'this' +p143869 +tp143870 +a(g143867 +g143869 +S'gigantic' +p143871 +tp143872 +a(g143869 +g143871 +S'group' +p143873 +tp143874 +a(g143871 +g143873 +S'portrait' +p143875 +tp143876 +a(g143873 +g143875 +S'was' +p143877 +tp143878 +a(g143875 +g143877 +S'exhibited' +p143879 +tp143880 +a(g143877 +g143879 +S'at' +p143881 +tp143882 +a(g143879 +g143881 +S'the' +p143883 +tp143884 +a(g143881 +g143883 +S'royal' +p143885 +tp143886 +a(g143883 +g143885 +S'academy' +p143887 +tp143888 +a(g143885 +g143887 +S'in' +p143889 +tp143890 +a(g143887 +g143889 +S'1801,' +p143891 +tp143892 +a(g143889 +g143891 +S'copley' +p143893 +tp143894 +a(g143891 +g143893 +S'must' +p143895 +tp143896 +a(g143893 +g143895 +S'have' +p143897 +tp143898 +a(g143895 +g143897 +S'painted' +p143899 +tp143900 +a(g143897 +g143899 +S'his' +p143901 +tp143902 +a(g143899 +g143901 +S'late' +p143903 +tp143904 +a(g143901 +g143903 +S'friend’s' +p143905 +tp143906 +a(g143903 +g143905 +S'image' +p143907 +tp143908 +a(g143905 +g143907 +S'from' +p143909 +tp143910 +a(g143907 +g143909 +S'memory' +p143911 +tp143912 +a(g143909 +g143911 +S'or' +p143913 +tp143914 +a(g143911 +g143913 +S'from' +p143915 +tp143916 +a(g143913 +g143915 +S'other' +p143917 +tp143918 +a(g143915 +g143917 +S'likenesses.' +p143919 +tp143920 +a(g143917 +g143919 +S'fitch’s' +p143921 +tp143922 +a(g143919 +g143921 +S'two' +p143923 +tp143924 +a(g143921 +g143923 +S'sisters,' +p143925 +tp143926 +a(g143923 +g143925 +S'dressed' +p143927 +tp143928 +a(g143925 +g143927 +S'in' +p143929 +tp143930 +a(g143927 +g143929 +S'mourning,' +p143931 +tp143932 +a(g143929 +g143931 +S'reach' +p143933 +tp143934 +a(g143931 +g143933 +S'poignantly' +p143935 +tp143936 +a(g143933 +g143935 +S'toward' +p143937 +tp143938 +a(g143935 +g143937 +S'their' +p143939 +tp143940 +a(g143937 +g143939 +S'lost' +p143941 +tp143942 +a(g143939 +g143941 +S'brother.' +p143943 +tp143944 +a(g143941 +g143943 +S'the' +p143945 +tp143946 +a(g143943 +g143945 +S'antique' +p143947 +tp143948 +a(g143945 +g143947 +S'urn' +p143949 +tp143950 +a(g143947 +g143949 +S'is' +p143951 +tp143952 +a(g143949 +g143951 +S'a' +p143953 +tp143954 +a(g143951 +g143953 +S'funerary' +p143955 +tp143956 +a(g143953 +g143955 +S'emblem,' +p143957 +tp143958 +a(g143955 +g143957 +S'and' +p143959 +tp143960 +a(g143957 +g143959 +S'the' +p143961 +tp143962 +a(g143959 +g143961 +S'fiery' +p143963 +tp143964 +a(g143961 +g143963 +S'sunset' +p143965 +tp143966 +a(g143963 +g143965 +S'is' +p143967 +tp143968 +a(g143965 +g143967 +S'a' +p143969 +tp143970 +a(g143967 +g143969 +S'reminder' +p143971 +tp143972 +a(g143969 +g143971 +S'of' +p143973 +tp143974 +a(g143971 +g143973 +S'time’s' +p143975 +tp143976 +a(g143973 +g143975 +S'passage.' +p143977 +tp143978 +a(g143975 +g143977 +S'tino' +p143979 +tp143980 +a(g143977 +g143979 +S'di' +p143981 +tp143982 +a(g143979 +g143981 +S'camaino,' +p143983 +tp143984 +a(g143981 +g143983 +S'a' +p143985 +tp143986 +a(g143983 +g143985 +S'sculptor' +p143987 +tp143988 +a(g143985 +g143987 +S'born' +p143989 +tp143990 +a(g143987 +g143989 +S'in' +p143991 +tp143992 +a(g143989 +g143991 +S'siena' +p143993 +tp143994 +a(g143991 +g143993 +S'who' +p143995 +tp143996 +a(g143993 +g143995 +S'died' +p143997 +tp143998 +a(g143995 +g143997 +S'in' +p143999 +tp144000 +a(g143997 +g143999 +S'naples,' +p144001 +tp144002 +a(g143999 +g144001 +S'could' +p144003 +tp144004 +a(g144001 +g144003 +S'coax' +p144005 +tp144006 +a(g144003 +g144005 +S'remarkably' +p144007 +tp144008 +a(g144005 +g144007 +S'soft' +p144009 +tp144010 +a(g144007 +g144009 +S'effects' +p144011 +tp144012 +a(g144009 +g144011 +S'from' +p144013 +tp144014 +a(g144011 +g144013 +S'marble.' +p144015 +tp144016 +a(g144013 +g144015 +S'the' +p144017 +tp144018 +a(g144015 +g144017 +S'figures' +p144019 +tp144020 +a(g144017 +g144019 +S'in' +p144021 +tp144022 +a(g144019 +g144021 +S'this' +p144023 +tp144024 +a(g144021 +g144023 +S'relief,' +p144025 +tp144026 +a(g144023 +g144025 +S'gentle' +p144027 +tp144028 +a(g144025 +g144027 +S'and' +p144029 +tp144030 +a(g144027 +g144029 +S'supple,' +p144031 +tp144032 +a(g144029 +g144031 +S'with' +p144033 +tp144034 +a(g144031 +g144033 +S'flowing' +p144035 +tp144036 +a(g144033 +g144035 +S'garments,' +p144037 +tp144038 +a(g144035 +g144037 +S'respond' +p144039 +tp144040 +a(g144037 +g144039 +S'tenderly' +p144041 +tp144042 +a(g144039 +g144041 +S'to' +p144043 +tp144044 +a(g144041 +g144043 +S'each' +p144045 +tp144046 +a(g144043 +g144045 +S'other.' +p144047 +tp144048 +a(g144045 +g144047 +S'the' +p144049 +tp144050 +a(g144047 +g144049 +S'saints' +p144051 +tp144052 +a(g144049 +g144051 +S'standing' +p144053 +tp144054 +a(g144051 +g144053 +S'on' +p144055 +tp144056 +a(g144053 +g144055 +S'either' +p144057 +tp144058 +a(g144055 +g144057 +S'side' +p144059 +tp144060 +a(g144057 +g144059 +S'of' +p144061 +tp144062 +a(g144059 +g144061 +S'the' +p144063 +tp144064 +a(g144061 +g144063 +S'madonna' +p144065 +tp144066 +a(g144063 +g144065 +S'and' +p144067 +tp144068 +a(g144065 +g144067 +S'child' +p144069 +tp144070 +a(g144067 +g144069 +S'are' +p144071 +tp144072 +a(g144069 +g144071 +S'probably' +p144073 +tp144074 +a(g144071 +g144073 +S'the' +p144075 +tp144076 +a(g144073 +g144075 +S'early' +p144077 +tp144078 +a(g144075 +g144077 +S'thirteenth-century' +p144079 +tp144080 +a(g144077 +g144079 +S'francis' +p144081 +tp144082 +a(g144079 +g144081 +S'of' +p144083 +tp144084 +a(g144081 +g144083 +S'assisi' +p144085 +tp144086 +a(g144083 +g144085 +S'and' +p144087 +tp144088 +a(g144085 +g144087 +S'his' +p144089 +tp144090 +a(g144087 +g144089 +S'follower' +p144091 +tp144092 +a(g144089 +g144091 +S'clare,' +p144093 +tp144094 +a(g144091 +g144093 +S'who' +p144095 +tp144096 +a(g144093 +g144095 +S'founded' +p144097 +tp144098 +a(g144095 +g144097 +S'an' +p144099 +tp144100 +a(g144097 +g144099 +S'order' +p144101 +tp144102 +a(g144099 +g144101 +S'of' +p144103 +tp144104 +a(g144101 +g144103 +S'franciscan' +p144105 +tp144106 +a(g144103 +g144105 +S'nuns.' +p144107 +tp144108 +a(g144105 +g144107 +S'saint' +p144109 +tp144110 +a(g144107 +g144109 +S'clare' +p144111 +tp144112 +a(g144109 +g144111 +S'and' +p144113 +tp144114 +a(g144111 +g144113 +S'the' +p144115 +tp144116 +a(g144113 +g144115 +S'virgin' +p144117 +tp144118 +a(g144115 +g144117 +S'mary' +p144119 +tp144120 +a(g144117 +g144119 +S'both' +p144121 +tp144122 +a(g144119 +g144121 +S'reach' +p144123 +tp144124 +a(g144121 +g144123 +S'out' +p144125 +tp144126 +a(g144123 +g144125 +S'to' +p144127 +tp144128 +a(g144125 +g144127 +S'touch' +p144129 +tp144130 +a(g144127 +g144129 +S'a' +p144131 +tp144132 +a(g144129 +g144131 +S'nun' +p144133 +tp144134 +a(g144131 +g144133 +S'who' +p144135 +tp144136 +a(g144133 +g144135 +S'kneels' +p144137 +tp144138 +a(g144135 +g144137 +S'before' +p144139 +tp144140 +a(g144137 +g144139 +S'them.' +p144141 +tp144142 +a(g144139 +g144141 +S'the' +p144143 +tp144144 +a(g144141 +g144143 +S'woman' +p144145 +tp144146 +a(g144143 +g144145 +S'wearing' +p144147 +tp144148 +a(g144145 +g144147 +S'a' +p144149 +tp144150 +a(g144147 +g144149 +S'veil,' +p144151 +tp144152 +a(g144149 +g144151 +S'but' +p144153 +tp144154 +a(g144151 +g144153 +S'carrying' +p144155 +tp144156 +a(g144153 +g144155 +S'a' +p144157 +tp144158 +a(g144155 +g144157 +S'crown' +p144159 +tp144160 +a(g144157 +g144159 +S'around' +p144161 +tp144162 +a(g144159 +g144161 +S'her' +p144163 +tp144164 +a(g144161 +g144163 +S'arm,' +p144165 +tp144166 +a(g144163 +g144165 +S'has' +p144167 +tp144168 +a(g144165 +g144167 +S'been' +p144169 +tp144170 +a(g144167 +g144169 +S'identified' +p144171 +tp144172 +a(g144169 +g144171 +S'as' +p144173 +tp144174 +a(g144171 +g144173 +S'queen' +p144175 +tp144176 +a(g144173 +g144175 +S'sancia' +p144177 +tp144178 +a(g144175 +g144177 +S'of' +p144179 +tp144180 +a(g144177 +g144179 +S'naples.' +p144181 +tp144182 +a(g144179 +g144181 +S'out' +p144183 +tp144184 +a(g144181 +g144183 +S'of' +p144185 +tp144186 +a(g144183 +g144185 +S'devotion' +p144187 +tp144188 +a(g144185 +g144187 +S'to' +p144189 +tp144190 +a(g144187 +g144189 +S'the' +p144191 +tp144192 +a(g144189 +g144191 +S'religious' +p144193 +tp144194 +a(g144191 +g144193 +S'orders' +p144195 +tp144196 +a(g144193 +g144195 +S'of' +p144197 +tp144198 +a(g144195 +g144197 +S'saints' +p144199 +tp144200 +a(g144197 +g144199 +S'francis' +p144201 +tp144202 +a(g144199 +g144201 +S'and' +p144203 +tp144204 +a(g144201 +g144203 +S'clare,' +p144205 +tp144206 +a(g144203 +g144205 +S'she' +p144207 +tp144208 +a(g144205 +g144207 +S'reportedly' +p144209 +tp144210 +a(g144207 +g144209 +S'often' +p144211 +tp144212 +a(g144209 +g144211 +S'exchanged' +p144213 +tp144214 +a(g144211 +g144213 +S'her' +p144215 +tp144216 +a(g144213 +g144215 +S'regal' +p144217 +tp144218 +a(g144215 +g144217 +S'garments' +p144219 +tp144220 +a(g144217 +g144219 +S'for' +p144221 +tp144222 +a(g144219 +g144221 +S'the' +p144223 +tp144224 +a(g144221 +g144223 +S'habit' +p144225 +tp144226 +a(g144223 +g144225 +S'of' +p144227 +tp144228 +a(g144225 +g144227 +S'a' +p144229 +tp144230 +a(g144227 +g144229 +S'nun,' +p144231 +tp144232 +a(g144229 +g144231 +S'and' +p144233 +tp144234 +a(g144231 +g144233 +S'thus' +p144235 +tp144236 +a(g144233 +g144235 +S'she' +p144237 +tp144238 +a(g144235 +g144237 +S'appears' +p144239 +tp144240 +a(g144237 +g144239 +S'here—with' +p144241 +tp144242 +a(g144239 +g144241 +S'her' +p144243 +tp144244 +a(g144241 +g144243 +S'earthly' +p144245 +tp144246 +a(g144243 +g144245 +S'crown' +p144247 +tp144248 +a(g144245 +g144247 +S'removed' +p144249 +tp144250 +a(g144247 +g144249 +S'in' +p144251 +tp144252 +a(g144249 +g144251 +S'deference' +p144253 +tp144254 +a(g144251 +g144253 +S'to' +p144255 +tp144256 +a(g144253 +g144255 +S'the' +p144257 +tp144258 +a(g144255 +g144257 +S'celestial' +p144259 +tp144260 +a(g144257 +g144259 +S'crown' +p144261 +tp144262 +a(g144259 +g144261 +S'worn' +p144263 +tp144264 +a(g144261 +g144263 +S'by' +p144265 +tp144266 +a(g144263 +g144265 +S'the' +p144267 +tp144268 +a(g144265 +g144267 +S'madonna.' +p144269 +tp144270 +a(g144267 +g144269 +S'in' +p144271 +tp144272 +a(g144269 +g144271 +S'1343,' +p144273 +tp144274 +a(g144271 +g144273 +S'after' +p144275 +tp144276 +a(g144273 +g144275 +S'the' +p144277 +tp144278 +a(g144275 +g144277 +S'death' +p144279 +tp144280 +a(g144277 +g144279 +S'of' +p144281 +tp144282 +a(g144279 +g144281 +S'her' +p144283 +tp144284 +a(g144281 +g144283 +S'husband,' +p144285 +tp144286 +a(g144283 +g144285 +S'robert' +p144287 +tp144288 +a(g144285 +g144287 +S'the' +p144289 +tp144290 +a(g144287 +g144289 +S'wise' +p144291 +tp144292 +a(g144289 +g144291 +S'of' +p144293 +tp144294 +a(g144291 +g144293 +S'naples,' +p144295 +tp144296 +a(g144293 +g144295 +S'sancia' +p144297 +tp144298 +a(g144295 +g144297 +S'joined' +p144299 +tp144300 +a(g144297 +g144299 +S'the' +p144301 +tp144302 +a(g144299 +g144301 +S'order' +p144303 +tp144304 +a(g144301 +g144303 +S'of' +p144305 +tp144306 +a(g144303 +g144305 +S'saint' +p144307 +tp144308 +a(g144305 +g144307 +S'clare.' +p144309 +tp144310 +a(g144307 +g144309 +S'jacopo' +p144311 +tp144312 +a(g144309 +g144311 +S'della' +p144313 +tp144314 +a(g144311 +g144313 +S'quercia' +p144315 +tp144316 +a(g144313 +g144315 +S'was' +p144317 +tp144318 +a(g144315 +g144317 +S'born' +p144319 +tp144320 +a(g144317 +g144319 +S'in' +p144321 +tp144322 +a(g144319 +g144321 +S'siena,' +p144323 +tp144324 +a(g144321 +g144323 +S'where' +p144325 +tp144326 +a(g144323 +g144325 +S'he' +p144327 +tp144328 +a(g144325 +g144327 +S'was' +p144329 +tp144330 +a(g144327 +g144329 +S'probably' +p144331 +tp144332 +a(g144329 +g144331 +S'trained' +p144333 +tp144334 +a(g144331 +g144333 +S'by' +p144335 +tp144336 +a(g144333 +g144335 +S'his' +p144337 +tp144338 +a(g144335 +g144337 +S'father,' +p144339 +tp144340 +a(g144337 +g144339 +S'piero' +p144341 +tp144342 +a(g144339 +g144341 +S'di' +p144343 +tp144344 +a(g144341 +g144343 +S'angelo.' +p144345 +tp144346 +a(g144343 +g144345 +S'he' +p144347 +tp144348 +a(g144345 +g144347 +S'was' +p144349 +tp144350 +a(g144347 +g144349 +S'active' +p144351 +tp144352 +a(g144349 +g144351 +S'in' +p144353 +tp144354 +a(g144351 +g144353 +S'lucca,' +p144355 +tp144356 +a(g144353 +g144355 +S'ferrara,' +p144357 +tp144358 +a(g144355 +g144357 +S'siena,' +p144359 +tp144360 +a(g144357 +g144359 +S'and' +p144361 +tp144362 +a(g144359 +g144361 +S'bologna,' +p144363 +tp144364 +a(g144361 +g144363 +S'where' +p144365 +tp144366 +a(g144363 +g144365 +S'he' +p144367 +tp144368 +a(g144365 +g144367 +S'carved' +p144369 +tp144370 +a(g144367 +g144369 +S'works' +p144371 +tp144372 +a(g144369 +g144371 +S'in' +p144373 +tp144374 +a(g144371 +g144373 +S'both' +p144375 +tp144376 +a(g144373 +g144375 +S'marble' +p144377 +tp144378 +a(g144375 +g144377 +S'and' +p144379 +tp144380 +a(g144377 +g144379 +S'wood.' +p144381 +tp144382 +a(g144379 +g144381 +S'as' +p144383 +tp144384 +a(g144381 +g144383 +S'the' +p144385 +tp144386 +a(g144383 +g144385 +S'most' +p144387 +tp144388 +a(g144385 +g144387 +S'important' +p144389 +tp144390 +a(g144387 +g144389 +S'sculptor' +p144391 +tp144392 +a(g144389 +g144391 +S'of' +p144393 +tp144394 +a(g144391 +g144393 +S'siena,' +p144395 +tp144396 +a(g144393 +g144395 +S'della' +p144397 +tp144398 +a(g144395 +g144397 +S'quercia' +p144399 +tp144400 +a(g144397 +g144399 +S'strongly' +p144401 +tp144402 +a(g144399 +g144401 +S'influenced' +p144403 +tp144404 +a(g144401 +g144403 +S'the' +p144405 +tp144406 +a(g144403 +g144405 +S'younger' +p144407 +tp144408 +a(g144405 +g144407 +S'florentine' +p144409 +tp144410 +a(g144407 +g144409 +S'master' +p144411 +tp144412 +a(g144409 +g144411 +S'the' +p144413 +tp144414 +a(g144411 +g144413 +S'devotional' +p144415 +tp144416 +a(g144413 +g144415 +S'theme' +p144417 +tp144418 +a(g144415 +g144417 +S'of' +p144419 +tp144420 +a(g144417 +g144419 +S'the' +p144421 +tp144422 +a(g144419 +g144421 +S'madonna' +p144423 +tp144424 +a(g144421 +g144423 +S'of' +p144425 +tp144426 +a(g144423 +g144425 +S'humility' +p144427 +tp144428 +a(g144425 +g144427 +S'originated' +p144429 +tp144430 +a(g144427 +g144429 +S'in' +p144431 +tp144432 +a(g144429 +g144431 +S'sienese' +p144433 +tp144434 +a(g144431 +g144433 +S'painting' +p144435 +tp144436 +a(g144433 +g144435 +S'during' +p144437 +tp144438 +a(g144435 +g144437 +S'the' +p144439 +tp144440 +a(g144437 +g144439 +S'fourteenth' +p144441 +tp144442 +a(g144439 +g144441 +S'century.' +p144443 +tp144444 +a(g144441 +g144443 +S'the' +p144445 +tp144446 +a(g144443 +g144445 +S'virgin' +p144447 +tp144448 +a(g144445 +g144447 +S'is' +p144449 +tp144450 +a(g144447 +g144449 +S'seated' +p144451 +tp144452 +a(g144449 +g144451 +S'humbly' +p144453 +tp144454 +a(g144451 +g144453 +S'on' +p144455 +tp144456 +a(g144453 +g144455 +S'the' +p144457 +tp144458 +a(g144455 +g144457 +S'ground,' +p144459 +tp144460 +a(g144457 +g144459 +S'in' +p144461 +tp144462 +a(g144459 +g144461 +S'a' +p144463 +tp144464 +a(g144461 +g144463 +S'pose' +p144465 +tp144466 +a(g144463 +g144465 +S'that' +p144467 +tp144468 +a(g144465 +g144467 +S'emphasizes' +p144469 +tp144470 +a(g144467 +g144469 +S'her' +p144471 +tp144472 +a(g144469 +g144471 +S'humanity' +p144473 +tp144474 +a(g144471 +g144473 +S'and' +p144475 +tp144476 +a(g144473 +g144475 +S'her' +p144477 +tp144478 +a(g144475 +g144477 +S'submission' +p144479 +tp144480 +a(g144477 +g144479 +S'to' +p144481 +tp144482 +a(g144479 +g144481 +S'divine' +p144483 +tp144484 +a(g144481 +g144483 +S'will.' +p144485 +tp144486 +a(g144483 +g144485 +S'with' +p144487 +tp144488 +a(g144485 +g144487 +S'her' +p144489 +tp144490 +a(g144487 +g144489 +S'left' +p144491 +tp144492 +a(g144489 +g144491 +S'knee' +p144493 +tp144494 +a(g144491 +g144493 +S'bent' +p144495 +tp144496 +a(g144493 +g144495 +S'beneath' +p144497 +tp144498 +a(g144495 +g144497 +S'her' +p144499 +tp144500 +a(g144497 +g144499 +S'and' +p144501 +tp144502 +a(g144499 +g144501 +S'her' +p144503 +tp144504 +a(g144501 +g144503 +S'right' +p144505 +tp144506 +a(g144503 +g144505 +S'knee' +p144507 +tp144508 +a(g144505 +g144507 +S'slightly' +p144509 +tp144510 +a(g144507 +g144509 +S'raised,' +p144511 +tp144512 +a(g144509 +g144511 +S'she' +p144513 +tp144514 +a(g144511 +g144513 +S'holds' +p144515 +tp144516 +a(g144513 +g144515 +S'the' +p144517 +tp144518 +a(g144515 +g144517 +S'christ' +p144519 +tp144520 +a(g144517 +g144519 +S'child' +p144521 +tp144522 +a(g144519 +g144521 +S'on' +p144523 +tp144524 +a(g144521 +g144523 +S'her' +p144525 +tp144526 +a(g144523 +g144525 +S'lap.' +p144527 +tp144528 +a(g144525 +g144527 +S'jesus' +p144529 +tp144530 +a(g144527 +g144529 +S'clutches' +p144531 +tp144532 +a(g144529 +g144531 +S'his' +p144533 +tp144534 +a(g144531 +g144533 +S'mother’s' +p144535 +tp144536 +a(g144533 +g144535 +S'dress' +p144537 +tp144538 +a(g144535 +g144537 +S'as' +p144539 +tp144540 +a(g144537 +g144539 +S'he' +p144541 +tp144542 +a(g144539 +g144541 +S'turns' +p144543 +tp144544 +a(g144541 +g144543 +S'his' +p144545 +tp144546 +a(g144543 +g144545 +S'head' +p144547 +tp144548 +a(g144545 +g144547 +S'toward' +p144549 +tp144550 +a(g144547 +g144549 +S'the' +p144551 +tp144552 +a(g144549 +g144551 +S'viewer,' +p144553 +tp144554 +a(g144551 +g144553 +S'as' +p144555 +tp144556 +a(g144553 +g144555 +S'if' +p144557 +tp144558 +a(g144555 +g144557 +S'distracted' +p144559 +tp144560 +a(g144557 +g144559 +S'from' +p144561 +tp144562 +a(g144559 +g144561 +S'nursing.' +p144563 +tp144564 +a(g144561 +g144563 +S'both' +p144565 +tp144566 +a(g144563 +g144565 +S'mother' +p144567 +tp144568 +a(g144565 +g144567 +S'and' +p144569 +tp144570 +a(g144567 +g144569 +S'child' +p144571 +tp144572 +a(g144569 +g144571 +S'are' +p144573 +tp144574 +a(g144571 +g144573 +S'draped' +p144575 +tp144576 +a(g144573 +g144575 +S'with' +p144577 +tp144578 +a(g144575 +g144577 +S'heavy' +p144579 +tp144580 +a(g144577 +g144579 +S'fabrics' +p144581 +tp144582 +a(g144579 +g144581 +S'that' +p144583 +tp144584 +a(g144581 +g144583 +S'fall' +p144585 +tp144586 +a(g144583 +g144585 +S'in' +p144587 +tp144588 +a(g144585 +g144587 +S'soft,' +p144589 +tp144590 +a(g144587 +g144589 +S'rhythmic' +p144591 +tp144592 +a(g144589 +g144591 +S'folds' +p144593 +tp144594 +a(g144591 +g144593 +S'over' +p144595 +tp144596 +a(g144593 +g144595 +S'their' +p144597 +tp144598 +a(g144595 +g144597 +S'substantial' +p144599 +tp144600 +a(g144597 +g144599 +S'bodies.' +p144601 +tp144602 +a(g144599 +g144601 +S'traces' +p144603 +tp144604 +a(g144601 +g144603 +S'of' +p144605 +tp144606 +a(g144603 +g144605 +S'gilding' +p144607 +tp144608 +a(g144605 +g144607 +S'and' +p144609 +tp144610 +a(g144607 +g144609 +S'polychromy' +p144611 +tp144612 +a(g144609 +g144611 +S'can' +p144613 +tp144614 +a(g144611 +g144613 +S'be' +p144615 +tp144616 +a(g144613 +g144615 +S'seen' +p144617 +tp144618 +a(g144615 +g144617 +S'on' +p144619 +tp144620 +a(g144617 +g144619 +S'the' +p144621 +tp144622 +a(g144619 +g144621 +S'hair' +p144623 +tp144624 +a(g144621 +g144623 +S'of' +p144625 +tp144626 +a(g144623 +g144625 +S'the' +p144627 +tp144628 +a(g144625 +g144627 +S'figures' +p144629 +tp144630 +a(g144627 +g144629 +S'and' +p144631 +tp144632 +a(g144629 +g144631 +S'along' +p144633 +tp144634 +a(g144631 +g144633 +S'the' +p144635 +tp144636 +a(g144633 +g144635 +S'inner' +p144637 +tp144638 +a(g144635 +g144637 +S'folds' +p144639 +tp144640 +a(g144637 +g144639 +S'and' +p144641 +tp144642 +a(g144639 +g144641 +S'hems' +p144643 +tp144644 +a(g144641 +g144643 +S'of' +p144645 +tp144646 +a(g144643 +g144645 +S'the' +p144647 +tp144648 +a(g144645 +g144647 +S'garments.' +p144649 +tp144650 +a(g144647 +g144649 +S'the' +p144651 +tp144652 +a(g144649 +g144651 +S'robust' +p144653 +tp144654 +a(g144651 +g144653 +S'figures' +p144655 +tp144656 +a(g144653 +g144655 +S'and' +p144657 +tp144658 +a(g144655 +g144657 +S'compact' +p144659 +tp144660 +a(g144657 +g144659 +S'composition' +p144661 +tp144662 +a(g144659 +g144661 +S'endow' +p144663 +tp144664 +a(g144661 +g144663 +S'this' +p144665 +tp144666 +a(g144663 +g144665 +S'work' +p144667 +tp144668 +a(g144665 +g144667 +S'with' +p144669 +tp144670 +a(g144667 +g144669 +S'a' +p144671 +tp144672 +a(g144669 +g144671 +S'monumental' +p144673 +tp144674 +a(g144671 +g144673 +S'quality' +p144675 +tp144676 +a(g144673 +g144675 +S'that' +p144677 +tp144678 +a(g144675 +g144677 +S'belies' +p144679 +tp144680 +a(g144677 +g144679 +S'its' +p144681 +tp144682 +a(g144679 +g144681 +S'small' +p144683 +tp144684 +a(g144681 +g144683 +S'size.' +p144685 +tp144686 +a(g144683 +g144685 +S'giovanni' +p144687 +tp144688 +a(g144685 +g144687 +S'di' +p144689 +tp144690 +a(g144687 +g144689 +S'balduccio’s' +p144691 +tp144692 +a(g144689 +g144691 +S'the' +p144693 +tp144694 +a(g144691 +g144693 +S'quatrefoil' +p144695 +tp144696 +a(g144693 +g144695 +S'or' +p144697 +tp144698 +a(g144695 +g144697 +S'four-lobed' +p144699 +tp144700 +a(g144697 +g144699 +S'shape' +p144701 +tp144702 +a(g144699 +g144701 +S'of' +p144703 +tp144704 +a(g144701 +g144703 +S'the' +p144705 +tp144706 +a(g144703 +g144705 +S'lozenge' +p144707 +tp144708 +a(g144705 +g144707 +S'from' +p144709 +tp144710 +a(g144707 +g144709 +S'which' +p144711 +tp144712 +a(g144709 +g144711 +S'charity' +p144713 +tp144714 +a(g144711 +g144713 +S'and' +p144715 +tp144716 +a(g144713 +g144715 +S'the' +p144717 +tp144718 +a(g144715 +g144717 +S'children' +p144719 +tp144720 +a(g144717 +g144719 +S'seem' +p144721 +tp144722 +a(g144719 +g144721 +S'to' +p144723 +tp144724 +a(g144721 +g144723 +S'emerge' +p144725 +tp144726 +a(g144723 +g144725 +S'is' +p144727 +tp144728 +a(g144725 +g144727 +S'typical' +p144729 +tp144730 +a(g144727 +g144729 +S'of' +p144731 +tp144732 +a(g144729 +g144731 +S'ornamental' +p144733 +tp144734 +a(g144731 +g144733 +S'forms' +p144735 +tp144736 +a(g144733 +g144735 +S'that' +p144737 +tp144738 +a(g144735 +g144737 +S'also' +p144739 +tp144740 +a(g144737 +g144739 +S'appear' +p144741 +tp144742 +a(g144739 +g144741 +S'in' +p144743 +tp144744 +a(g144741 +g144743 +S'gothic' +p144745 +tp144746 +a(g144743 +g144745 +S'manuscript' +p144747 +tp144748 +a(g144745 +g144747 +S'illumination,' +p144749 +tp144750 +a(g144747 +g144749 +S'stained' +p144751 +tp144752 +a(g144749 +g144751 +S'glass,' +p144753 +tp144754 +a(g144751 +g144753 +S'and' +p144755 +tp144756 +a(g144753 +g144755 +S'architecture.' +p144757 +tp144758 +a(g144755 +g144757 +S'the' +p144759 +tp144760 +a(g144757 +g144759 +S'marble' +p144761 +tp144762 +a(g144759 +g144761 +S'relief' +p144763 +tp144764 +a(g144761 +g144763 +S'comes' +p144765 +tp144766 +a(g144763 +g144765 +S'from' +p144767 +tp144768 +a(g144765 +g144767 +S'a' +p144769 +tp144770 +a(g144767 +g144769 +S'set' +p144771 +tp144772 +a(g144769 +g144771 +S'of' +p144773 +tp144774 +a(g144771 +g144773 +S'at' +p144775 +tp144776 +a(g144773 +g144775 +S'least' +p144777 +tp144778 +a(g144775 +g144777 +S'sixteen,' +p144779 +tp144780 +a(g144777 +g144779 +S'whose' +p144781 +tp144782 +a(g144779 +g144781 +S'surviving' +p144783 +tp144784 +a(g144781 +g144783 +S'elements' +p144785 +tp144786 +a(g144783 +g144785 +S'represent' +p144787 +tp144788 +a(g144785 +g144787 +S'christ’s' +p144789 +tp144790 +a(g144787 +g144789 +S'twelve' +p144791 +tp144792 +a(g144789 +g144791 +S'apostles' +p144793 +tp144794 +a(g144791 +g144793 +S'and' +p144795 +tp144796 +a(g144793 +g144795 +S'the' +p144797 +tp144798 +a(g144795 +g144797 +S'virtues' +p144799 +tp144800 +a(g144797 +g144799 +S'of' +p144801 +tp144802 +a(g144799 +g144801 +S'truth,' +p144803 +tp144804 +a(g144801 +g144803 +S'obedience,' +p144805 +tp144806 +a(g144803 +g144805 +S'poverty,' +p144807 +tp144808 +a(g144805 +g144807 +S'and' +p144809 +tp144810 +a(g144807 +g144809 +S'charity.' +p144811 +tp144812 +a(g144809 +g144811 +S'most' +p144813 +tp144814 +a(g144811 +g144813 +S'are' +p144815 +tp144816 +a(g144813 +g144815 +S'still' +p144817 +tp144818 +a(g144815 +g144817 +S'set' +p144819 +tp144820 +a(g144817 +g144819 +S'into' +p144821 +tp144822 +a(g144819 +g144821 +S'the' +p144823 +tp144824 +a(g144821 +g144823 +S'outside' +p144825 +tp144826 +a(g144823 +g144825 +S'walls' +p144827 +tp144828 +a(g144825 +g144827 +S'of' +p144829 +tp144830 +a(g144827 +g144829 +S'the' +p144831 +tp144832 +a(g144829 +g144831 +S'church' +p144833 +tp144834 +a(g144831 +g144833 +S'of' +p144835 +tp144836 +a(g144833 +g144835 +S'orsanmichele' +p144837 +tp144838 +a(g144835 +g144837 +S'in' +p144839 +tp144840 +a(g144837 +g144839 +S'florence.' +p144841 +tp144842 +a(g144839 +g144841 +S'angel' +p144843 +tp144844 +a(g144841 +g144843 +S'with' +p144845 +tp144846 +a(g144843 +g144845 +S'symphonia' +p144847 +tp144848 +a(g144845 +g144847 +S'such' +p144849 +tp144850 +a(g144847 +g144849 +S'figures,' +p144851 +tp144852 +a(g144849 +g144851 +S'carved' +p144853 +tp144854 +a(g144851 +g144853 +S'in' +p144855 +tp144856 +a(g144853 +g144855 +S'the' +p144857 +tp144858 +a(g144855 +g144857 +S'round,' +p144859 +tp144860 +a(g144857 +g144859 +S'might' +p144861 +tp144862 +a(g144859 +g144861 +S'have' +p144863 +tp144864 +a(g144861 +g144863 +S'stood' +p144865 +tp144866 +a(g144863 +g144865 +S'on' +p144867 +tp144868 +a(g144865 +g144867 +S'top' +p144869 +tp144870 +a(g144867 +g144869 +S'of' +p144871 +tp144872 +a(g144869 +g144871 +S'the' +p144873 +tp144874 +a(g144871 +g144873 +S'pinnacles' +p144875 +tp144876 +a(g144873 +g144875 +S'of' +p144877 +tp144878 +a(g144875 +g144877 +S'a' +p144879 +tp144880 +a(g144877 +g144879 +S'complex' +p144881 +tp144882 +a(g144879 +g144881 +S'gothic' +p144883 +tp144884 +a(g144881 +g144883 +S'monument' +p144885 +tp144886 +a(g144883 +g144885 +S'whose' +p144887 +tp144888 +a(g144885 +g144887 +S'central' +p144889 +tp144890 +a(g144887 +g144889 +S'image' +p144891 +tp144892 +a(g144889 +g144891 +S'would' +p144893 +tp144894 +a(g144891 +g144893 +S'have' +p144895 +tp144896 +a(g144893 +g144895 +S'represented' +p144897 +tp144898 +a(g144895 +g144897 +S'christ,' +p144899 +tp144900 +a(g144897 +g144899 +S'the' +p144901 +tp144902 +a(g144899 +g144901 +S'virgin,' +p144903 +tp144904 +a(g144901 +g144903 +S'or' +p144905 +tp144906 +a(g144903 +g144905 +S'both.' +p144907 +tp144908 +a(g144905 +g144907 +S'since' +p144909 +tp144910 +a(g144907 +g144909 +S'both' +p144911 +tp144912 +a(g144909 +g144911 +S'angels' +p144913 +tp144914 +a(g144911 +g144913 +S'look' +p144915 +tp144916 +a(g144913 +g144915 +S'to' +p144917 +tp144918 +a(g144915 +g144917 +S'their' +p144919 +tp144920 +a(g144917 +g144919 +S'right,' +p144921 +tp144922 +a(g144919 +g144921 +S'they' +p144923 +tp144924 +a(g144921 +g144923 +S'must' +p144925 +tp144926 +a(g144923 +g144925 +S'have' +p144927 +tp144928 +a(g144925 +g144927 +S'been' +p144929 +tp144930 +a(g144927 +g144929 +S'placed' +p144931 +tp144932 +a(g144929 +g144931 +S'on' +p144933 +tp144934 +a(g144931 +g144933 +S'the' +p144935 +tp144936 +a(g144933 +g144935 +S'same' +p144937 +tp144938 +a(g144935 +g144937 +S'side' +p144939 +tp144940 +a(g144937 +g144939 +S'of' +p144941 +tp144942 +a(g144939 +g144941 +S'the' +p144943 +tp144944 +a(g144941 +g144943 +S'main' +p144945 +tp144946 +a(g144943 +g144945 +S'subject.' +p144947 +tp144948 +a(g144945 +g144947 +S'the' +p144949 +tp144950 +a(g144947 +g144949 +S'notable' +p144951 +tp144952 +a(g144949 +g144951 +S'differences' +p144953 +tp144954 +a(g144951 +g144953 +S'in' +p144955 +tp144956 +a(g144953 +g144955 +S'their' +p144957 +tp144958 +a(g144955 +g144957 +S'faces,' +p144959 +tp144960 +a(g144957 +g144959 +S'movements,' +p144961 +tp144962 +a(g144959 +g144961 +S'and' +p144963 +tp144964 +a(g144961 +g144963 +S'drapery' +p144965 +tp144966 +a(g144963 +g144965 +S'styles' +p144967 +tp144968 +a(g144965 +g144967 +S'suggest' +p144969 +tp144970 +a(g144967 +g144969 +S'more' +p144971 +tp144972 +a(g144969 +g144971 +S'than' +p144973 +tp144974 +a(g144971 +g144973 +S'one' +p144975 +tp144976 +a(g144973 +g144975 +S'hand' +p144977 +tp144978 +a(g144975 +g144977 +S'was' +p144979 +tp144980 +a(g144977 +g144979 +S'involved' +p144981 +tp144982 +a(g144979 +g144981 +S'in' +p144983 +tp144984 +a(g144981 +g144983 +S'their' +p144985 +tp144986 +a(g144983 +g144985 +S'creation.' +p144987 +tp144988 +a(g144985 +g144987 +S'in' +p144989 +tp144990 +a(g144987 +g144989 +S'this' +p144991 +tp144992 +a(g144989 +g144991 +S'scene' +p144993 +tp144994 +a(g144991 +g144993 +S'diana,' +p144995 +tp144996 +a(g144993 +g144995 +S'virgin' +p144997 +tp144998 +a(g144995 +g144997 +S'goddess' +p144999 +tp145000 +a(g144997 +g144999 +S'of' +p145001 +tp145002 +a(g144999 +g145001 +S'the' +p145003 +tp145004 +a(g145001 +g145003 +S'hunt,' +p145005 +tp145006 +a(g145003 +g145005 +S'steals' +p145007 +tp145008 +a(g145005 +g145007 +S'forth' +p145009 +tp145010 +a(g145007 +g145009 +S'through' +p145011 +tp145012 +a(g145009 +g145011 +S'the' +p145013 +tp145014 +a(g145011 +g145013 +S'moonlight' +p145015 +tp145016 +a(g145013 +g145015 +S'to' +p145017 +tp145018 +a(g145015 +g145017 +S'kiss' +p145019 +tp145020 +a(g145017 +g145019 +S'the' +p145021 +tp145022 +a(g145019 +g145021 +S'sleeping' +p145023 +tp145024 +a(g145021 +g145023 +S'shepherd' +p145025 +tp145026 +a(g145023 +g145025 +S'endymion,' +p145027 +tp145028 +a(g145025 +g145027 +S'whom' +p145029 +tp145030 +a(g145027 +g145029 +S'the' +p145031 +tp145032 +a(g145029 +g145031 +S'gods' +p145033 +tp145034 +a(g145031 +g145033 +S'granted' +p145035 +tp145036 +a(g145033 +g145035 +S'eternal' +p145037 +tp145038 +a(g145035 +g145037 +S'sleep' +p145039 +tp145040 +a(g145037 +g145039 +S'to' +p145041 +tp145042 +a(g145039 +g145041 +S'preserve' +p145043 +tp145044 +a(g145041 +g145043 +S'his' +p145045 +tp145046 +a(g145043 +g145045 +S'beauty' +p145047 +tp145048 +a(g145045 +g145047 +S'and' +p145049 +tp145050 +a(g145047 +g145049 +S'youth.' +p145051 +tp145052 +a(g145049 +g145051 +S'the' +p145053 +tp145054 +a(g145051 +g145053 +S'love' +p145055 +tp145056 +a(g145053 +g145055 +S'letter' +p145057 +tp145058 +a(g145055 +g145057 +S'the' +p145059 +tp145060 +a(g145057 +g145059 +S'scene' +p145061 +tp145062 +a(g145059 +g145061 +S'is' +p145063 +tp145064 +a(g145061 +g145063 +S'a' +p145065 +tp145066 +a(g145063 +g145065 +S'pastoral' +p145067 +tp145068 +a(g145065 +g145067 +S'idyll.' +p145069 +tp145070 +a(g145067 +g145069 +S'the' +p145071 +tp145072 +a(g145069 +g145071 +S'young' +p145073 +tp145074 +a(g145071 +g145073 +S'"shepherdesses"' +p145075 +tp145076 +a(g145073 +g145075 +S'wear' +p145077 +tp145078 +a(g145075 +g145077 +S'fine' +p145079 +tp145080 +a(g145077 +g145079 +S'silks,' +p145081 +tp145082 +a(g145079 +g145081 +S'and' +p145083 +tp145084 +a(g145081 +g145083 +S'a' +p145085 +tp145086 +a(g145083 +g145085 +S'contemporary' +p145087 +tp145088 +a(g145085 +g145087 +S'audience' +p145089 +tp145090 +a(g145087 +g145089 +S'would' +p145091 +tp145092 +a(g145089 +g145091 +S'understand' +p145093 +tp145094 +a(g145091 +g145093 +S'an' +p145095 +tp145096 +a(g145093 +g145095 +S'erotic' +p145097 +tp145098 +a(g145095 +g145097 +S'promise' +p145099 +tp145100 +a(g145097 +g145099 +S'in' +p145101 +tp145102 +a(g145099 +g145101 +S'the' +p145103 +tp145104 +a(g145101 +g145103 +S'display' +p145105 +tp145106 +a(g145103 +g145105 +S'of' +p145107 +tp145108 +a(g145105 +g145107 +S'pink' +p145109 +tp145110 +a(g145107 +g145109 +S'toes.' +p145111 +tp145112 +a(g145109 +g145111 +S'idealized' +p145113 +tp145114 +a(g145111 +g145113 +S'visions' +p145115 +tp145116 +a(g145113 +g145115 +S'of' +p145117 +tp145118 +a(g145115 +g145117 +S'country' +p145119 +tp145120 +a(g145117 +g145119 +S'life' +p145121 +tp145122 +a(g145119 +g145121 +S'were' +p145123 +tp145124 +a(g145121 +g145123 +S'common' +p145125 +tp145126 +a(g145123 +g145125 +S'on' +p145127 +tp145128 +a(g145125 +g145127 +S'the' +p145129 +tp145130 +a(g145127 +g145129 +S'stage' +p145131 +tp145132 +a(g145129 +g145131 +S'and' +p145133 +tp145134 +a(g145131 +g145133 +S'in' +p145135 +tp145136 +a(g145133 +g145135 +S'real-life' +p145137 +tp145138 +a(g145135 +g145137 +S'masquerades.' +p145139 +tp145140 +a(g145137 +g145139 +S'denis' +p145141 +tp145142 +a(g145139 +g145141 +S'diderot,' +p145143 +tp145144 +a(g145141 +g145143 +S'disdainful' +p145145 +tp145146 +a(g145143 +g145145 +S'of' +p145147 +tp145148 +a(g145145 +g145147 +S'the' +p145149 +tp145150 +a(g145147 +g145149 +S'frivolity' +p145151 +tp145152 +a(g145149 +g145151 +S'of' +p145153 +tp145154 +a(g145151 +g145153 +S"boucher's" +p145155 +tp145156 +a(g145153 +g145155 +S'scenes,' +p145157 +tp145158 +a(g145155 +g145157 +S'complained,' +p145159 +tp145160 +a(g145157 +g145159 +S'"shall' +p145161 +tp145162 +a(g145159 +g145161 +S'i' +p145163 +tp145164 +a(g145161 +g145163 +S'never' +p145165 +tp145166 +a(g145163 +g145165 +S'be' +p145167 +tp145168 +a(g145165 +g145167 +S'rid' +p145169 +tp145170 +a(g145167 +g145169 +S'of' +p145171 +tp145172 +a(g145169 +g145171 +S'these' +p145173 +tp145174 +a(g145171 +g145173 +S'damned' +p145175 +tp145176 +a(g145173 +g145175 +S'pastorals?"' +p145177 +tp145178 +a(g145175 +g145177 +S'yet' +p145179 +tp145180 +a(g145177 +g145179 +S'the' +p145181 +tp145182 +a(g145179 +g145181 +S'encyclopedist,' +p145183 +tp145184 +a(g145181 +g145183 +S'who' +p145185 +tp145186 +a(g145183 +g145185 +S'was' +p145187 +tp145188 +a(g145185 +g145187 +S'an' +p145189 +tp145190 +a(g145187 +g145189 +S'influential' +p145191 +tp145192 +a(g145189 +g145191 +S'critic,' +p145193 +tp145194 +a(g145191 +g145193 +S'also' +p145195 +tp145196 +a(g145193 +g145195 +S'appreciated' +p145197 +tp145198 +a(g145195 +g145197 +S'the' +p145199 +tp145200 +a(g145197 +g145199 +S'brilliance' +p145201 +tp145202 +a(g145199 +g145201 +S'of' +p145203 +tp145204 +a(g145201 +g145203 +S"boucher's" +p145205 +tp145206 +a(g145203 +g145205 +S'painting,' +p145207 +tp145208 +a(g145205 +g145207 +S'which' +p145209 +tp145210 +a(g145207 +g145209 +S'captures' +p145211 +tp145212 +a(g145209 +g145211 +S'the' +p145213 +tp145214 +a(g145211 +g145213 +S'luminous' +p145215 +tp145216 +a(g145213 +g145215 +S'colors' +p145217 +tp145218 +a(g145215 +g145217 +S'of' +p145219 +tp145220 +a(g145217 +g145219 +S'shells,' +p145221 +tp145222 +a(g145219 +g145221 +S'butterflies,' +p145223 +tp145224 +a(g145221 +g145223 +S'and' +p145225 +tp145226 +a(g145223 +g145225 +S'polished' +p145227 +tp145228 +a(g145225 +g145227 +S'stones—objects' +p145229 +tp145230 +a(g145227 +g145229 +S'the' +p145231 +tp145232 +a(g145229 +g145231 +S'artist' +p145233 +tp145234 +a(g145231 +g145233 +S'collected' +p145235 +tp145236 +a(g145233 +g145235 +S'so' +p145237 +tp145238 +a(g145235 +g145237 +S'he' +p145239 +tp145240 +a(g145237 +g145239 +S'could' +p145241 +tp145242 +a(g145239 +g145241 +S'copy' +p145243 +tp145244 +a(g145241 +g145243 +S'their' +p145245 +tp145246 +a(g145243 +g145245 +S'fragile' +p145247 +tp145248 +a(g145245 +g145247 +S'iridescence.' +p145249 +tp145250 +a(g145247 +g145249 +S'moroni' +p145251 +tp145252 +a(g145249 +g145251 +S'studied' +p145253 +tp145254 +a(g145251 +g145253 +S'painting' +p145255 +tp145256 +a(g145253 +g145255 +S'with' +p145257 +tp145258 +a(g145255 +g145257 +S'moretto' +p145259 +tp145260 +a(g145257 +g145259 +S'in' +p145261 +tp145262 +a(g145259 +g145261 +S'brescia' +p145263 +tp145264 +a(g145261 +g145263 +S'before' +p145265 +tp145266 +a(g145263 +g145265 +S'he' +p145267 +tp145268 +a(g145265 +g145267 +S'settled' +p145269 +tp145270 +a(g145267 +g145269 +S'in' +p145271 +tp145272 +a(g145269 +g145271 +S'nearby' +p145273 +tp145274 +a(g145271 +g145273 +S'bergamo,' +p145275 +tp145276 +a(g145273 +g145275 +S'where' +p145277 +tp145278 +a(g145275 +g145277 +S'he' +p145279 +tp145280 +a(g145277 +g145279 +S'remained' +p145281 +tp145282 +a(g145279 +g145281 +S'for' +p145283 +tp145284 +a(g145281 +g145283 +S'most' +p145285 +tp145286 +a(g145283 +g145285 +S'of' +p145287 +tp145288 +a(g145285 +g145287 +S'his' +p145289 +tp145290 +a(g145287 +g145289 +S'career.' +p145291 +tp145292 +a(g145289 +g145291 +S'he' +p145293 +tp145294 +a(g145291 +g145293 +S'also' +p145295 +tp145296 +a(g145293 +g145295 +S'seems' +p145297 +tp145298 +a(g145295 +g145297 +S'to' +p145299 +tp145300 +a(g145297 +g145299 +S'have' +p145301 +tp145302 +a(g145299 +g145301 +S'spent' +p145303 +tp145304 +a(g145301 +g145303 +S'some' +p145305 +tp145306 +a(g145303 +g145305 +S'time' +p145307 +tp145308 +a(g145305 +g145307 +S'in' +p145309 +tp145310 +a(g145307 +g145309 +S'trent.' +p145311 +tp145312 +a(g145309 +g145311 +S'the' +p145313 +tp145314 +a(g145311 +g145313 +S'subject' +p145315 +tp145316 +a(g145313 +g145315 +S'of' +p145317 +tp145318 +a(g145315 +g145317 +S'this' +p145319 +tp145320 +a(g145317 +g145319 +S'portrait' +p145321 +tp145322 +a(g145319 +g145321 +S'is' +p145323 +tp145324 +a(g145321 +g145323 +S'usually' +p145325 +tp145326 +a(g145323 +g145325 +S'identified' +p145327 +tp145328 +a(g145325 +g145327 +S'as' +p145329 +tp145330 +a(g145327 +g145329 +S'gian' +p145331 +tp145332 +a(g145329 +g145331 +S'federico' +p145333 +tp145334 +a(g145331 +g145333 +S'madruzzo,' +p145335 +tp145336 +a(g145333 +g145335 +S'a' +p145337 +tp145338 +a(g145335 +g145337 +S'nephew' +p145339 +tp145340 +a(g145337 +g145339 +S'of' +p145341 +tp145342 +a(g145339 +g145341 +S'the' +p145343 +tp145344 +a(g145341 +g145343 +S'prince-bishop' +p145345 +tp145346 +a(g145343 +g145345 +S'of' +p145347 +tp145348 +a(g145345 +g145347 +S'trent.' +p145349 +tp145350 +a(g145347 +g145349 +S'the' +p145351 +tp145352 +a(g145349 +g145351 +S'full-length' +p145353 +tp145354 +a(g145351 +g145353 +S'portrait' +p145355 +tp145356 +a(g145353 +g145355 +S'format' +p145357 +tp145358 +a(g145355 +g145357 +S'was' +p145359 +tp145360 +a(g145357 +g145359 +S'relatively' +p145361 +tp145362 +a(g145359 +g145361 +S'new' +p145363 +tp145364 +a(g145361 +g145363 +S'in' +p145365 +tp145366 +a(g145363 +g145365 +S'italy' +p145367 +tp145368 +a(g145365 +g145367 +S'and' +p145369 +tp145370 +a(g145367 +g145369 +S'perhaps' +p145371 +tp145372 +a(g145369 +g145371 +S'had' +p145373 +tp145374 +a(g145371 +g145373 +S'been' +p145375 +tp145376 +a(g145373 +g145375 +S'inspired' +p145377 +tp145378 +a(g145375 +g145377 +S'by' +p145379 +tp145380 +a(g145377 +g145379 +S'examples' +p145381 +tp145382 +a(g145379 +g145381 +S'from' +p145383 +tp145384 +a(g145381 +g145383 +S'the' +p145385 +tp145386 +a(g145383 +g145385 +S'north.' +p145387 +tp145388 +a(g145385 +g145387 +S'its' +p145389 +tp145390 +a(g145387 +g145389 +S'imposing' +p145391 +tp145392 +a(g145389 +g145391 +S'formality' +p145393 +tp145394 +a(g145391 +g145393 +S'is' +p145395 +tp145396 +a(g145393 +g145395 +S'especially' +p145397 +tp145398 +a(g145395 +g145397 +S'suited' +p145399 +tp145400 +a(g145397 +g145399 +S'for' +p145401 +tp145402 +a(g145399 +g145401 +S'public' +p145403 +tp145404 +a(g145401 +g145403 +S'portraits,' +p145405 +tp145406 +a(g145403 +g145405 +S'and' +p145407 +tp145408 +a(g145405 +g145407 +S'here' +p145409 +tp145410 +a(g145407 +g145409 +S'the' +p145411 +tp145412 +a(g145409 +g145411 +S'subject' +p145413 +tp145414 +a(g145411 +g145413 +S'wears' +p145415 +tp145416 +a(g145413 +g145415 +S'a' +p145417 +tp145418 +a(g145415 +g145417 +S"diplomat's" +p145419 +tp145420 +a(g145417 +g145419 +S'robes.' +p145421 +tp145422 +a(g145419 +g145421 +S'however,' +p145423 +tp145424 +a(g145421 +g145423 +S'the' +p145425 +tp145426 +a(g145423 +g145425 +S'presence' +p145427 +tp145428 +a(g145425 +g145427 +S'of' +p145429 +tp145430 +a(g145427 +g145429 +S'a' +p145431 +tp145432 +a(g145429 +g145431 +S'small' +p145433 +tp145434 +a(g145431 +g145433 +S'dog,' +p145435 +tp145436 +a(g145433 +g145435 +S'traditionally' +p145437 +tp145438 +a(g145435 +g145437 +S'a' +p145439 +tp145440 +a(g145437 +g145439 +S'symbol' +p145441 +tp145442 +a(g145439 +g145441 +S'of' +p145443 +tp145444 +a(g145441 +g145443 +S'loyalty,' +p145445 +tp145446 +a(g145443 +g145445 +S'suggests' +p145447 +tp145448 +a(g145445 +g145447 +S'this' +p145449 +tp145450 +a(g145447 +g145449 +S'painting' +p145451 +tp145452 +a(g145449 +g145451 +S'may' +p145453 +tp145454 +a(g145451 +g145453 +S'have' +p145455 +tp145456 +a(g145453 +g145455 +S'been' +p145457 +tp145458 +a(g145455 +g145457 +S'intended' +p145459 +tp145460 +a(g145457 +g145459 +S'for' +p145461 +tp145462 +a(g145459 +g145461 +S'a' +p145463 +tp145464 +a(g145461 +g145463 +S'domestic' +p145465 +tp145466 +a(g145463 +g145465 +S'setting.' +p145467 +tp145468 +a(g145465 +g145467 +S"moroni's" +p145469 +tp145470 +a(g145467 +g145469 +S'realistic' +p145471 +tp145472 +a(g145469 +g145471 +S'depictions' +p145473 +tp145474 +a(g145471 +g145473 +S'have' +p145475 +tp145476 +a(g145473 +g145475 +S'ensured' +p145477 +tp145478 +a(g145475 +g145477 +S'his' +p145479 +tp145480 +a(g145477 +g145479 +S'reputation' +p145481 +tp145482 +a(g145479 +g145481 +S'as' +p145483 +tp145484 +a(g145481 +g145483 +S'one' +p145485 +tp145486 +a(g145483 +g145485 +S'of' +p145487 +tp145488 +a(g145485 +g145487 +S'the' +p145489 +tp145490 +a(g145487 +g145489 +S'finest' +p145491 +tp145492 +a(g145489 +g145491 +S'portraitists' +p145493 +tp145494 +a(g145491 +g145493 +S'of' +p145495 +tp145496 +a(g145493 +g145495 +S'the' +p145497 +tp145498 +a(g145495 +g145497 +S'sixteenth' +p145499 +tp145500 +a(g145497 +g145499 +S'century.' +p145501 +tp145502 +a(g145499 +g145501 +S'his' +p145503 +tp145504 +a(g145501 +g145503 +S'religious' +p145505 +tp145506 +a(g145503 +g145505 +S'works,' +p145507 +tp145508 +a(g145505 +g145507 +S'however,' +p145509 +tp145510 +a(g145507 +g145509 +S'have' +p145511 +tp145512 +a(g145509 +g145511 +S'usually' +p145513 +tp145514 +a(g145511 +g145513 +S'been' +p145515 +tp145516 +a(g145513 +g145515 +S'viewed' +p145517 +tp145518 +a(g145515 +g145517 +S'as' +p145519 +tp145520 +a(g145517 +g145519 +S'bland' +p145521 +tp145522 +a(g145519 +g145521 +S'reiterations' +p145523 +tp145524 +a(g145521 +g145523 +S'of' +p145525 +tp145526 +a(g145523 +g145525 +S'themes' +p145527 +tp145528 +a(g145525 +g145527 +S'he' +p145529 +tp145530 +a(g145527 +g145529 +S'learned' +p145531 +tp145532 +a(g145529 +g145531 +S'from' +p145533 +tp145534 +a(g145531 +g145533 +S'moretto.' +p145535 +tp145536 +a(g145533 +g145535 +S'in' +p145537 +tp145538 +a(g145535 +g145537 +S'recent' +p145539 +tp145540 +a(g145537 +g145539 +S'years,' +p145541 +tp145542 +a(g145539 +g145541 +S'scholars' +p145543 +tp145544 +a(g145541 +g145543 +S'have' +p145545 +tp145546 +a(g145543 +g145545 +S'begun' +p145547 +tp145548 +a(g145545 +g145547 +S'to' +p145549 +tp145550 +a(g145547 +g145549 +S'reconsider' +p145551 +tp145552 +a(g145549 +g145551 +S'them' +p145553 +tp145554 +a(g145551 +g145553 +S'in' +p145555 +tp145556 +a(g145553 +g145555 +S'relation' +p145557 +tp145558 +a(g145555 +g145557 +S'to' +p145559 +tp145560 +a(g145557 +g145559 +S'the' +p145561 +tp145562 +a(g145559 +g145561 +S'council' +p145563 +tp145564 +a(g145561 +g145563 +S'of' +p145565 +tp145566 +a(g145563 +g145565 +S'trent' +p145567 +tp145568 +a(g145565 +g145567 +S'(1545-1563),' +p145569 +tp145570 +a(g145567 +g145569 +S'which' +p145571 +tp145572 +a(g145569 +g145571 +S'was' +p145573 +tp145574 +a(g145571 +g145573 +S'convened' +p145575 +tp145576 +a(g145573 +g145575 +S'to' +p145577 +tp145578 +a(g145575 +g145577 +S'address' +p145579 +tp145580 +a(g145577 +g145579 +S'the' +p145581 +tp145582 +a(g145579 +g145581 +S'protestant' +p145583 +tp145584 +a(g145581 +g145583 +S'challenge.' +p145585 +tp145586 +a(g145583 +g145585 +S'reformers' +p145587 +tp145588 +a(g145585 +g145587 +S'in' +p145589 +tp145590 +a(g145587 +g145589 +S'the' +p145591 +tp145592 +a(g145589 +g145591 +S'roman' +p145593 +tp145594 +a(g145591 +g145593 +S'catholic' +p145595 +tp145596 +a(g145593 +g145595 +S'church' +p145597 +tp145598 +a(g145595 +g145597 +S'stressed' +p145599 +tp145600 +a(g145597 +g145599 +S'the' +p145601 +tp145602 +a(g145599 +g145601 +S'role' +p145603 +tp145604 +a(g145601 +g145603 +S'of' +p145605 +tp145606 +a(g145603 +g145605 +S'mental' +p145607 +tp145608 +a(g145605 +g145607 +S'images' +p145609 +tp145610 +a(g145607 +g145609 +S'as' +p145611 +tp145612 +a(g145609 +g145611 +S'a' +p145613 +tp145614 +a(g145611 +g145613 +S'focus' +p145615 +tp145616 +a(g145613 +g145615 +S'for' +p145617 +tp145618 +a(g145615 +g145617 +S'meditation' +p145619 +tp145620 +a(g145617 +g145619 +S'and' +p145621 +tp145622 +a(g145619 +g145621 +S'urged' +p145623 +tp145624 +a(g145621 +g145623 +S'painters' +p145625 +tp145626 +a(g145623 +g145625 +S'to' +p145627 +tp145628 +a(g145625 +g145627 +S'produce' +p145629 +tp145630 +a(g145627 +g145629 +S'religious' +p145631 +tp145632 +a(g145629 +g145631 +S'art' +p145633 +tp145634 +a(g145631 +g145633 +S'that' +p145635 +tp145636 +a(g145633 +g145635 +S'was' +p145637 +tp145638 +a(g145635 +g145637 +S'clear' +p145639 +tp145640 +a(g145637 +g145639 +S'and' +p145641 +tp145642 +a(g145639 +g145641 +S'direct,' +p145643 +tp145644 +a(g145641 +g145643 +S'the' +p145645 +tp145646 +a(g145643 +g145645 +S'sort' +p145647 +tp145648 +a(g145645 +g145647 +S'of' +p145649 +tp145650 +a(g145647 +g145649 +S'explicit' +p145651 +tp145652 +a(g145649 +g145651 +S'image' +p145653 +tp145654 +a(g145651 +g145653 +S'seen,' +p145655 +tp145656 +a(g145653 +g145655 +S'for' +p145657 +tp145658 +a(g145655 +g145657 +S'example,' +p145659 +tp145660 +a(g145657 +g145659 +S'in' +p145661 +tp145662 +a(g145659 +g145661 +S"moroni's" +p145663 +tp145664 +a(g145661 +g145663 +S'painting' +p145665 +tp145666 +a(g145663 +g145665 +S'while' +p145667 +tp145668 +a(g145665 +g145667 +S'noah' +p145669 +tp145670 +a(g145667 +g145669 +S'and' +p145671 +tp145672 +a(g145669 +g145671 +S'his' +p145673 +tp145674 +a(g145671 +g145673 +S'wife' +p145675 +tp145676 +a(g145673 +g145675 +S'sleep' +p145677 +tp145678 +a(g145675 +g145677 +S'in' +p145679 +tp145680 +a(g145677 +g145679 +S'their' +p145681 +tp145682 +a(g145679 +g145681 +S'tent,' +p145683 +tp145684 +a(g145681 +g145683 +S'the' +p145685 +tp145686 +a(g145683 +g145685 +S'biblical' +p145687 +tp145688 +a(g145685 +g145687 +S'flood' +p145689 +tp145690 +a(g145687 +g145689 +S'begins.' +p145691 +tp145692 +a(g145689 +g145691 +S'in' +p145693 +tp145694 +a(g145691 +g145693 +S'a' +p145695 +tp145696 +a(g145693 +g145695 +S'spiraling' +p145697 +tp145698 +a(g145695 +g145697 +S'vortex' +p145699 +tp145700 +a(g145697 +g145699 +S'of' +p145701 +tp145702 +a(g145699 +g145701 +S'rain' +p145703 +tp145704 +a(g145701 +g145703 +S'and' +p145705 +tp145706 +a(g145703 +g145705 +S'moonlight,' +p145707 +tp145708 +a(g145705 +g145707 +S'birds' +p145709 +tp145710 +a(g145707 +g145709 +S'and' +p145711 +tp145712 +a(g145709 +g145711 +S'beasts' +p145713 +tp145714 +a(g145711 +g145713 +S'head' +p145715 +tp145716 +a(g145713 +g145715 +S'toward' +p145717 +tp145718 +a(g145715 +g145717 +S'the' +p145719 +tp145720 +a(g145717 +g145719 +S'distant' +p145721 +tp145722 +a(g145719 +g145721 +S'ark.' +p145723 +tp145724 +a(g145721 +g145723 +S'this' +p145725 +tp145726 +a(g145723 +g145725 +S'is' +p145727 +tp145728 +a(g145725 +g145727 +S'a' +p145729 +tp145730 +a(g145727 +g145729 +S'preliminary' +p145731 +tp145732 +a(g145729 +g145731 +S'version' +p145733 +tp145734 +a(g145731 +g145733 +S'of' +p145735 +tp145736 +a(g145733 +g145735 +S'a' +p145737 +tp145738 +a(g145735 +g145737 +S'canvas' +p145739 +tp145740 +a(g145737 +g145739 +S'shown' +p145741 +tp145742 +a(g145739 +g145741 +S'in' +p145743 +tp145744 +a(g145741 +g145743 +S'the' +p145745 +tp145746 +a(g145743 +g145745 +S'1843' +p145747 +tp145748 +a(g145745 +g145747 +S'royal' +p145749 +tp145750 +a(g145747 +g145749 +S'academy.' +p145751 +tp145752 +a(g145749 +g145751 +S'now' +p145753 +tp145754 +a(g145751 +g145753 +S'in' +p145755 +tp145756 +a(g145753 +g145755 +S'london’s' +p145757 +tp145758 +a(g145755 +g145757 +S'tate' +p145759 +tp145760 +a(g145757 +g145759 +S'gallery,' +p145761 +tp145762 +a(g145759 +g145761 +S'the' +p145763 +tp145764 +a(g145761 +g145763 +S'final' +p145765 +tp145766 +a(g145763 +g145765 +S'work' +p145767 +tp145768 +a(g145765 +g145767 +S'uses' +p145769 +tp145770 +a(g145767 +g145769 +S'stronger' +p145771 +tp145772 +a(g145769 +g145771 +S'color' +p145773 +tp145774 +a(g145771 +g145773 +S'contrasts' +p145775 +tp145776 +a(g145773 +g145775 +S'but' +p145777 +tp145778 +a(g145775 +g145777 +S'is' +p145779 +tp145780 +a(g145777 +g145779 +S'equally' +p145781 +tp145782 +a(g145779 +g145781 +S'evocative' +p145783 +tp145784 +a(g145781 +g145783 +S'and' +p145785 +tp145786 +a(g145783 +g145785 +S'sketchy.' +p145787 +tp145788 +a(g145785 +g145787 +S'burchard,' +p145789 +tp145790 +a(g145787 +g145789 +S'the' +p145791 +tp145792 +a(g145789 +g145791 +S'english-born' +p145793 +tp145794 +a(g145791 +g145793 +S'first' +p145795 +tp145796 +a(g145793 +g145795 +S'bishop' +p145797 +tp145798 +a(g145795 +g145797 +S'of' +p145799 +tp145800 +a(g145797 +g145799 +S'würzburg,' +p145801 +tp145802 +a(g145799 +g145801 +S'germany,' +p145803 +tp145804 +a(g145801 +g145803 +S'died' +p145805 +tp145806 +a(g145803 +g145805 +S'in' +p145807 +tp145808 +a(g145805 +g145807 +S'754.' +p145809 +tp145810 +a(g145807 +g145809 +S'in' +p145811 +tp145812 +a(g145809 +g145811 +S'this' +p145813 +tp145814 +a(g145811 +g145813 +S'imaginary' +p145815 +tp145816 +a(g145813 +g145815 +S'portrait,' +p145817 +tp145818 +a(g145815 +g145817 +S'he' +p145819 +tp145820 +a(g145817 +g145819 +S'raises' +p145821 +tp145822 +a(g145819 +g145821 +S'his' +p145823 +tp145824 +a(g145821 +g145823 +S'right' +p145825 +tp145826 +a(g145823 +g145825 +S'hand' +p145827 +tp145828 +a(g145825 +g145827 +S'in' +p145829 +tp145830 +a(g145827 +g145829 +S'blessing.' +p145831 +tp145832 +a(g145829 +g145831 +S'his' +p145833 +tp145834 +a(g145831 +g145833 +S'left' +p145835 +tp145836 +a(g145833 +g145835 +S'hand' +p145837 +tp145838 +a(g145835 +g145837 +S'once' +p145839 +tp145840 +a(g145837 +g145839 +S'held' +p145841 +tp145842 +a(g145839 +g145841 +S'a' +p145843 +tp145844 +a(g145841 +g145843 +S'curving' +p145845 +tp145846 +a(g145843 +g145845 +S'crozier.' +p145847 +tp145848 +a(g145845 +g145847 +S'the' +p145849 +tp145850 +a(g145847 +g145849 +S"figure's" +p145851 +tp145852 +a(g145849 +g145851 +S'facial' +p145853 +tp145854 +a(g145851 +g145853 +S'type' +p145855 +tp145856 +a(g145853 +g145855 +S'occurs' +p145857 +tp145858 +a(g145855 +g145857 +S'repeatedly' +p145859 +tp145860 +a(g145857 +g145859 +S'in' +p145861 +tp145862 +a(g145859 +g145861 +S'the' +p145863 +tp145864 +a(g145861 +g145863 +S'wood' +p145865 +tp145866 +a(g145863 +g145865 +S'and' +p145867 +tp145868 +a(g145865 +g145867 +S'stone' +p145869 +tp145870 +a(g145867 +g145869 +S'sculptures' +p145871 +tp145872 +a(g145869 +g145871 +S'of' +p145873 +tp145874 +a(g145871 +g145873 +S'this' +p145875 +tp145876 +a(g145873 +g145875 +S'famous' +p145877 +tp145878 +a(g145875 +g145877 +S'german' +p145879 +tp145880 +a(g145877 +g145879 +S'master:' +p145881 +tp145882 +a(g145879 +g145881 +S'prominent' +p145883 +tp145884 +a(g145881 +g145883 +S'nose' +p145885 +tp145886 +a(g145883 +g145885 +S'and' +p145887 +tp145888 +a(g145885 +g145887 +S'cheekbones,' +p145889 +tp145890 +a(g145887 +g145889 +S'strong' +p145891 +tp145892 +a(g145889 +g145891 +S'chin,' +p145893 +tp145894 +a(g145891 +g145893 +S'long,' +p145895 +tp145896 +a(g145893 +g145895 +S'sunken' +p145897 +tp145898 +a(g145895 +g145897 +S'cheeks,' +p145899 +tp145900 +a(g145897 +g145899 +S'and' +p145901 +tp145902 +a(g145899 +g145901 +S'finely' +p145903 +tp145904 +a(g145901 +g145903 +S'outlined,' +p145905 +tp145906 +a(g145903 +g145905 +S'downturned' +p145907 +tp145908 +a(g145905 +g145907 +S'mouth' +p145909 +tp145910 +a(g145907 +g145909 +S'and' +p145911 +tp145912 +a(g145909 +g145911 +S'eyes,' +p145913 +tp145914 +a(g145911 +g145913 +S'suggesting' +p145915 +tp145916 +a(g145913 +g145915 +S'a' +p145917 +tp145918 +a(g145915 +g145917 +S'mood' +p145919 +tp145920 +a(g145917 +g145919 +S'of' +p145921 +tp145922 +a(g145919 +g145921 +S'slightly' +p145923 +tp145924 +a(g145921 +g145923 +S'sorrowful' +p145925 +tp145926 +a(g145923 +g145925 +S'contemplation.' +p145927 +tp145928 +a(g145925 +g145927 +S'in' +p145929 +tp145930 +a(g145927 +g145929 +S'this' +p145931 +tp145932 +a(g145929 +g145931 +S'careworn,' +p145933 +tp145934 +a(g145931 +g145933 +S'sensitive' +p145935 +tp145936 +a(g145933 +g145935 +S'face,' +p145937 +tp145938 +a(g145935 +g145937 +S'riemenschneider' +p145939 +tp145940 +a(g145937 +g145939 +S'explored' +p145941 +tp145942 +a(g145939 +g145941 +S'the' +p145943 +tp145944 +a(g145941 +g145943 +S'psychology' +p145945 +tp145946 +a(g145943 +g145945 +S'of' +p145947 +tp145948 +a(g145945 +g145947 +S'a' +p145949 +tp145950 +a(g145947 +g145949 +S'man' +p145951 +tp145952 +a(g145949 +g145951 +S'on' +p145953 +tp145954 +a(g145951 +g145953 +S'whom' +p145955 +tp145956 +a(g145953 +g145955 +S'spiritual' +p145957 +tp145958 +a(g145955 +g145957 +S'authority' +p145959 +tp145960 +a(g145957 +g145959 +S'seems' +p145961 +tp145962 +a(g145959 +g145961 +S'to' +p145963 +tp145964 +a(g145961 +g145963 +S'weigh' +p145965 +tp145966 +a(g145963 +g145965 +S'heavily.' +p145967 +tp145968 +a(g145965 +g145967 +S'hollowed' +p145969 +tp145970 +a(g145967 +g145969 +S'out' +p145971 +tp145972 +a(g145969 +g145971 +S'to' +p145973 +tp145974 +a(g145971 +g145973 +S'make' +p145975 +tp145976 +a(g145973 +g145975 +S'it' +p145977 +tp145978 +a(g145975 +g145977 +S'light,' +p145979 +tp145980 +a(g145977 +g145979 +S'the' +p145981 +tp145982 +a(g145979 +g145981 +S'bust' +p145983 +tp145984 +a(g145981 +g145983 +S'may' +p145985 +tp145986 +a(g145983 +g145985 +S'once' +p145987 +tp145988 +a(g145985 +g145987 +S'have' +p145989 +tp145990 +a(g145987 +g145989 +S'been' +p145991 +tp145992 +a(g145989 +g145991 +S'carried' +p145993 +tp145994 +a(g145991 +g145993 +S'in' +p145995 +tp145996 +a(g145993 +g145995 +S'religious' +p145997 +tp145998 +a(g145995 +g145997 +S'processions.' +p145999 +tp146000 +a(g145997 +g145999 +S'it' +p146001 +tp146002 +a(g145999 +g146001 +S'has' +p146003 +tp146004 +a(g146001 +g146003 +S'experienced' +p146005 +tp146006 +a(g146003 +g146005 +S'some' +p146007 +tp146008 +a(g146005 +g146007 +S'alterations' +p146009 +tp146010 +a(g146007 +g146009 +S'since' +p146011 +tp146012 +a(g146009 +g146011 +S'it' +p146013 +tp146014 +a(g146011 +g146013 +S'was' +p146015 +tp146016 +a(g146013 +g146015 +S'carved;' +p146017 +tp146018 +a(g146015 +g146017 +S'the' +p146019 +tp146020 +a(g146017 +g146019 +S'square,' +p146021 +tp146022 +a(g146019 +g146021 +S'diamond-shaped' +p146023 +tp146024 +a(g146021 +g146023 +S'cut' +p146025 +tp146026 +a(g146023 +g146025 +S'on' +p146027 +tp146028 +a(g146025 +g146027 +S'the' +p146029 +tp146030 +a(g146027 +g146029 +S'chest' +p146031 +tp146032 +a(g146029 +g146031 +S'was' +p146033 +tp146034 +a(g146031 +g146033 +S'certainly' +p146035 +tp146036 +a(g146033 +g146035 +S'made' +p146037 +tp146038 +a(g146035 +g146037 +S'well' +p146039 +tp146040 +a(g146037 +g146039 +S'after' +p146041 +tp146042 +a(g146039 +g146041 +S'the' +p146043 +tp146044 +a(g146041 +g146043 +S'sculpture' +p146045 +tp146046 +a(g146043 +g146045 +S'was' +p146047 +tp146048 +a(g146045 +g146047 +S'finished,' +p146049 +tp146050 +a(g146047 +g146049 +S'possibly' +p146051 +tp146052 +a(g146049 +g146051 +S'in' +p146053 +tp146054 +a(g146051 +g146053 +S'order' +p146055 +tp146056 +a(g146053 +g146055 +S'to' +p146057 +tp146058 +a(g146055 +g146057 +S'fill' +p146059 +tp146060 +a(g146057 +g146059 +S'the' +p146061 +tp146062 +a(g146059 +g146061 +S'recess' +p146063 +tp146064 +a(g146061 +g146063 +S'with' +p146065 +tp146066 +a(g146063 +g146065 +S'relics.' +p146067 +tp146068 +a(g146065 +g146067 +S'tiny' +p146069 +tp146070 +a(g146067 +g146069 +S'traces' +p146071 +tp146072 +a(g146069 +g146071 +S'of' +p146073 +tp146074 +a(g146071 +g146073 +S'original' +p146075 +tp146076 +a(g146073 +g146075 +S'coloring,' +p146077 +tp146078 +a(g146075 +g146077 +S'removed' +p146079 +tp146080 +a(g146077 +g146079 +S'long' +p146081 +tp146082 +a(g146079 +g146081 +S'ago,' +p146083 +tp146084 +a(g146081 +g146083 +S'may' +p146085 +tp146086 +a(g146083 +g146085 +S'be' +p146087 +tp146088 +a(g146085 +g146087 +S'noticed,' +p146089 +tp146090 +a(g146087 +g146089 +S'for' +p146091 +tp146092 +a(g146089 +g146091 +S'instance' +p146093 +tp146094 +a(g146091 +g146093 +S'on' +p146095 +tp146096 +a(g146093 +g146095 +S'the' +p146097 +tp146098 +a(g146095 +g146097 +S'cope' +p146099 +tp146100 +a(g146097 +g146099 +S'(mantle),' +p146101 +tp146102 +a(g146099 +g146101 +S'where' +p146103 +tp146104 +a(g146101 +g146103 +S'bits' +p146105 +tp146106 +a(g146103 +g146105 +S'of' +p146107 +tp146108 +a(g146105 +g146107 +S'blue' +p146109 +tp146110 +a(g146107 +g146109 +S'and' +p146111 +tp146112 +a(g146109 +g146111 +S'yellow' +p146113 +tp146114 +a(g146111 +g146113 +S'remain.' +p146115 +tp146116 +a(g146113 +g146115 +S'although' +p146117 +tp146118 +a(g146115 +g146117 +S'this' +p146119 +tp146120 +a(g146117 +g146119 +S'particular' +p146121 +tp146122 +a(g146119 +g146121 +S'bust' +p146123 +tp146124 +a(g146121 +g146123 +S'was' +p146125 +tp146126 +a(g146123 +g146125 +S'polychromed,' +p146127 +tp146128 +a(g146125 +g146127 +S'riemenschneider' +p146129 +tp146130 +a(g146127 +g146129 +S'was' +p146131 +tp146132 +a(g146129 +g146131 +S'a' +p146133 +tp146134 +a(g146131 +g146133 +S'pioneer' +p146135 +tp146136 +a(g146133 +g146135 +S'in' +p146137 +tp146138 +a(g146135 +g146137 +S'the' +p146139 +tp146140 +a(g146137 +g146139 +S'use' +p146141 +tp146142 +a(g146139 +g146141 +S'of' +p146143 +tp146144 +a(g146141 +g146143 +S'bare,' +p146145 +tp146146 +a(g146143 +g146145 +S'unpainted' +p146147 +tp146148 +a(g146145 +g146147 +S'wood' +p146149 +tp146150 +a(g146147 +g146149 +S'for' +p146151 +tp146152 +a(g146149 +g146151 +S'the' +p146153 +tp146154 +a(g146151 +g146153 +S'sculpture' +p146155 +tp146156 +a(g146153 +g146155 +S'on' +p146157 +tp146158 +a(g146155 +g146157 +S'his' +p146159 +tp146160 +a(g146157 +g146159 +S'major' +p146161 +tp146162 +a(g146159 +g146161 +S'altarpieces.' +p146163 +tp146164 +a(g146161 +g146163 +S'the' +p146165 +tp146166 +a(g146163 +g146165 +S'black' +p146167 +tp146168 +a(g146165 +g146167 +S'rings' +p146169 +tp146170 +a(g146167 +g146169 +S'around' +p146171 +tp146172 +a(g146169 +g146171 +S'the' +p146173 +tp146174 +a(g146171 +g146173 +S'pupils,' +p146175 +tp146176 +a(g146173 +g146175 +S'however,' +p146177 +tp146178 +a(g146175 +g146177 +S'so' +p146179 +tp146180 +a(g146177 +g146179 +S'important' +p146181 +tp146182 +a(g146179 +g146181 +S'to' +p146183 +tp146184 +a(g146181 +g146183 +S'the' +p146185 +tp146186 +a(g146183 +g146185 +S'dreamy' +p146187 +tp146188 +a(g146185 +g146187 +S'expression' +p146189 +tp146190 +a(g146187 +g146189 +S'of' +p146191 +tp146192 +a(g146189 +g146191 +S'the' +p146193 +tp146194 +a(g146191 +g146193 +S'eyes,' +p146195 +tp146196 +a(g146193 +g146195 +S'are' +p146197 +tp146198 +a(g146195 +g146197 +S'typical' +p146199 +tp146200 +a(g146197 +g146199 +S'of' +p146201 +tp146202 +a(g146199 +g146201 +S"riemenschneider's" +p146203 +tp146204 +a(g146201 +g146203 +S'figures.' +p146205 +tp146206 +a(g146203 +g146205 +S'gainsborough,' +p146207 +tp146208 +a(g146205 +g146207 +S'who' +p146209 +tp146210 +a(g146207 +g146209 +S'never' +p146211 +tp146212 +a(g146209 +g146211 +S'left' +p146213 +tp146214 +a(g146211 +g146213 +S'england,' +p146215 +tp146216 +a(g146213 +g146215 +S'devised' +p146217 +tp146218 +a(g146215 +g146217 +S'an' +p146219 +tp146220 +a(g146217 +g146219 +S'idiosyncratic' +p146221 +tp146222 +a(g146219 +g146221 +S'style' +p146223 +tp146224 +a(g146221 +g146223 +S'of' +p146225 +tp146226 +a(g146223 +g146225 +S'rapidly' +p146227 +tp146228 +a(g146225 +g146227 +S'improvised' +p146229 +tp146230 +a(g146227 +g146229 +S'brushstrokes' +p146231 +tp146232 +a(g146229 +g146231 +S'of' +p146233 +tp146234 +a(g146231 +g146233 +S'multicolored' +p146235 +tp146236 +a(g146233 +g146235 +S'paint,' +p146237 +tp146238 +a(g146235 +g146237 +S'evident' +p146239 +tp146240 +a(g146237 +g146239 +S'in' +p146241 +tp146242 +a(g146239 +g146241 +S'his' +p146243 +tp146244 +a(g146241 +g146243 +S'reynolds,' +p146245 +tp146246 +a(g146243 +g146245 +S'the' +p146247 +tp146248 +a(g146245 +g146247 +S'first' +p146249 +tp146250 +a(g146247 +g146249 +S'president' +p146251 +tp146252 +a(g146249 +g146251 +S'of' +p146253 +tp146254 +a(g146251 +g146253 +S'the' +p146255 +tp146256 +a(g146253 +g146255 +S'royal' +p146257 +tp146258 +a(g146255 +g146257 +S'academy,' +p146259 +tp146260 +a(g146257 +g146259 +S'had' +p146261 +tp146262 +a(g146259 +g146261 +S'spent' +p146263 +tp146264 +a(g146261 +g146263 +S'three' +p146265 +tp146266 +a(g146263 +g146265 +S'years' +p146267 +tp146268 +a(g146265 +g146267 +S'in' +p146269 +tp146270 +a(g146267 +g146269 +S'italy,' +p146271 +tp146272 +a(g146269 +g146271 +S'acquiring' +p146273 +tp146274 +a(g146271 +g146273 +S'a' +p146275 +tp146276 +a(g146273 +g146275 +S'vast' +p146277 +tp146278 +a(g146275 +g146277 +S'knowledge' +p146279 +tp146280 +a(g146277 +g146279 +S'of' +p146281 +tp146282 +a(g146279 +g146281 +S'classical' +p146283 +tp146284 +a(g146281 +g146283 +S'and' +p146285 +tp146286 +a(g146283 +g146285 +S'renaissance' +p146287 +tp146288 +a(g146285 +g146287 +S'art.' +p146289 +tp146290 +a(g146287 +g146289 +S'his' +p146291 +tp146292 +a(g146289 +g146291 +S'portrayal' +p146293 +tp146294 +a(g146291 +g146293 +S'of' +p146295 +tp146296 +a(g146293 +g146295 +S'the' +p146297 +tp146298 +a(g146295 +g146297 +S'high' +p146299 +tp146300 +a(g146297 +g146299 +S'sheriff' +p146301 +tp146302 +a(g146299 +g146301 +S'of' +p146303 +tp146304 +a(g146301 +g146303 +S'nottingham,' +p146305 +tp146306 +a(g146303 +g146305 +S'displayed' +p146307 +tp146308 +a(g146305 +g146307 +S'at' +p146309 +tp146310 +a(g146307 +g146309 +S'the' +p146311 +tp146312 +a(g146309 +g146311 +S'royal' +p146313 +tp146314 +a(g146311 +g146313 +S'academy' +p146315 +tp146316 +a(g146313 +g146315 +S'in' +p146317 +tp146318 +a(g146315 +g146317 +S'1843,' +p146319 +tp146320 +a(g146317 +g146319 +S'turner’s' +p146321 +tp146322 +a(g146319 +g146321 +S'late' +p146323 +tp146324 +a(g146321 +g146323 +S'view' +p146325 +tp146326 +a(g146323 +g146325 +S'of' +p146327 +tp146328 +a(g146325 +g146327 +S'venice' +p146329 +tp146330 +a(g146327 +g146329 +S'shows' +p146331 +tp146332 +a(g146329 +g146331 +S'the' +p146333 +tp146334 +a(g146331 +g146333 +S'customs' +p146335 +tp146336 +a(g146333 +g146335 +S'house,' +p146337 +tp146338 +a(g146335 +g146337 +S'or' +p146339 +tp146340 +a(g146337 +g146339 +S'dogana,' +p146341 +tp146342 +a(g146339 +g146341 +S'from' +p146343 +tp146344 +a(g146341 +g146343 +S'an' +p146345 +tp146346 +a(g146343 +g146345 +S'angle' +p146347 +tp146348 +a(g146345 +g146347 +S'opposite' +p146349 +tp146350 +a(g146347 +g146349 +S'to' +p146351 +tp146352 +a(g146349 +g146351 +S'that' +p146353 +tp146354 +a(g146351 +g146353 +S'seen' +p146355 +tp146356 +a(g146353 +g146355 +S'in' +p146357 +tp146358 +a(g146355 +g146357 +S'his' +p146359 +tp146360 +a(g146357 +g146359 +S'1834' +p146361 +tp146362 +a(g146359 +g146361 +S'picture.' +p146363 +tp146364 +a(g146361 +g146363 +S'behind' +p146365 +tp146366 +a(g146363 +g146365 +S'the' +p146367 +tp146368 +a(g146365 +g146367 +S'dogana,' +p146369 +tp146370 +a(g146367 +g146369 +S'the' +p146371 +tp146372 +a(g146369 +g146371 +S'domes' +p146373 +tp146374 +a(g146371 +g146373 +S'of' +p146375 +tp146376 +a(g146373 +g146375 +S'the' +p146377 +tp146378 +a(g146375 +g146377 +S'church' +p146379 +tp146380 +a(g146377 +g146379 +S'of' +p146381 +tp146382 +a(g146379 +g146381 +S'santa' +p146383 +tp146384 +a(g146381 +g146383 +S'maria' +p146385 +tp146386 +a(g146383 +g146385 +S'della' +p146387 +tp146388 +a(g146385 +g146387 +S'salute' +p146389 +tp146390 +a(g146387 +g146389 +S'rise' +p146391 +tp146392 +a(g146389 +g146391 +S'against' +p146393 +tp146394 +a(g146391 +g146393 +S'the' +p146395 +tp146396 +a(g146393 +g146395 +S'vibrantly' +p146397 +tp146398 +a(g146395 +g146397 +S'luminous' +p146399 +tp146400 +a(g146397 +g146399 +S'sky.' +p146401 +tp146402 +a(g146399 +g146401 +S'although' +p146403 +tp146404 +a(g146401 +g146403 +S'his' +p146405 +tp146406 +a(g146403 +g146405 +S'early' +p146407 +tp146408 +a(g146405 +g146407 +S'works' +p146409 +tp146410 +a(g146407 +g146409 +S'had' +p146411 +tp146412 +a(g146409 +g146411 +S'made' +p146413 +tp146414 +a(g146411 +g146413 +S'turner' +p146415 +tp146416 +a(g146413 +g146415 +S'wealthy' +p146417 +tp146418 +a(g146415 +g146417 +S'and' +p146419 +tp146420 +a(g146417 +g146419 +S'famous,' +p146421 +tp146422 +a(g146419 +g146421 +S'this' +p146423 +tp146424 +a(g146421 +g146423 +S'later' +p146425 +tp146426 +a(g146423 +g146425 +S'style—in' +p146427 +tp146428 +a(g146425 +g146427 +S'which' +p146429 +tp146430 +a(g146427 +g146429 +S'light' +p146431 +tp146432 +a(g146429 +g146431 +S'evaporates' +p146433 +tp146434 +a(g146431 +g146433 +S'the' +p146435 +tp146436 +a(g146433 +g146435 +S'solid' +p146437 +tp146438 +a(g146435 +g146437 +S'forms—was' +p146439 +tp146440 +a(g146437 +g146439 +S'far' +p146441 +tp146442 +a(g146439 +g146441 +S'too' +p146443 +tp146444 +a(g146441 +g146443 +S'avant-garde' +p146445 +tp146446 +a(g146443 +g146445 +S'for' +p146447 +tp146448 +a(g146445 +g146447 +S'his' +p146449 +tp146450 +a(g146447 +g146449 +S'contemporaries' +p146451 +tp146452 +a(g146449 +g146451 +S'to' +p146453 +tp146454 +a(g146451 +g146453 +S'comprehend.' +p146455 +tp146456 +a(g146453 +g146455 +S'in' +p146457 +tp146458 +a(g146455 +g146457 +S'retrospect,' +p146459 +tp146460 +a(g146457 +g146459 +S'however,' +p146461 +tp146462 +a(g146459 +g146461 +S'it' +p146463 +tp146464 +a(g146461 +g146463 +S'is' +p146465 +tp146466 +a(g146463 +g146465 +S'such' +p146467 +tp146468 +a(g146465 +g146467 +S'late' +p146469 +tp146470 +a(g146467 +g146469 +S'works' +p146471 +tp146472 +a(g146469 +g146471 +S'that' +p146473 +tp146474 +a(g146471 +g146473 +S'had' +p146475 +tp146476 +a(g146473 +g146475 +S'the' +p146477 +tp146478 +a(g146475 +g146477 +S'most' +p146479 +tp146480 +a(g146477 +g146479 +S'impact' +p146481 +tp146482 +a(g146479 +g146481 +S'upon' +p146483 +tp146484 +a(g146481 +g146483 +S'subsequent' +p146485 +tp146486 +a(g146483 +g146485 +S'landscapists.' +p146487 +tp146488 +a(g146485 +g146487 +S'(the' +p146489 +tp146490 +a(g146487 +g146489 +S'parapet' +p146491 +tp146492 +a(g146489 +g146491 +S'at' +p146493 +tp146494 +a(g146491 +g146493 +S'the' +p146495 +tp146496 +a(g146493 +g146495 +S'bottom' +p146497 +tp146498 +a(g146495 +g146497 +S'right' +p146499 +tp146500 +a(g146497 +g146499 +S'is' +p146501 +tp146502 +a(g146499 +g146501 +S'formally' +p146503 +tp146504 +a(g146501 +g146503 +S'inscribed' +p146505 +tp146506 +a(g146503 +g146505 +S'with' +p146507 +tp146508 +a(g146505 +g146507 +S'turner’s' +p146509 +tp146510 +a(g146507 +g146509 +S'full' +p146511 +tp146512 +a(g146509 +g146511 +S'initials,' +p146513 +tp146514 +a(g146511 +g146513 +S'born' +p146515 +tp146516 +a(g146513 +g146515 +S'marie' +p146517 +tp146518 +a(g146515 +g146517 +S'henriette' +p146519 +tp146520 +a(g146517 +g146519 +S'alphonsine' +p146521 +tp146522 +a(g146519 +g146521 +S'grossin' +p146523 +tp146524 +a(g146521 +g146523 +S'in' +p146525 +tp146526 +a(g146523 +g146525 +S'1857,' +p146527 +tp146528 +a(g146525 +g146527 +S'henriette' +p146529 +tp146530 +a(g146527 +g146529 +S'was' +p146531 +tp146532 +a(g146529 +g146531 +S'the' +p146533 +tp146534 +a(g146531 +g146533 +S'daughter' +p146535 +tp146536 +a(g146533 +g146535 +S'of' +p146537 +tp146538 +a(g146535 +g146537 +S'aline' +p146539 +tp146540 +a(g146537 +g146539 +S'grossin,' +p146541 +tp146542 +a(g146539 +g146541 +S'an' +p146543 +tp146544 +a(g146541 +g146543 +S'unmarried' +p146545 +tp146546 +a(g146543 +g146545 +S'milliner' +p146547 +tp146548 +a(g146545 +g146547 +S'residing' +p146549 +tp146550 +a(g146547 +g146549 +S'in' +p146551 +tp146552 +a(g146549 +g146551 +S'paris.' +p146553 +tp146554 +a(g146551 +g146553 +S'in' +p146555 +tp146556 +a(g146553 +g146555 +S'1872,' +p146557 +tp146558 +a(g146555 +g146557 +S'the' +p146559 +tp146560 +a(g146557 +g146559 +S'fifteenyear-' +p146561 +tp146562 +a(g146559 +g146561 +S'old' +p146563 +tp146564 +a(g146561 +g146563 +S'henriette' +p146565 +tp146566 +a(g146563 +g146565 +S'enrolled' +p146567 +tp146568 +a(g146565 +g146567 +S'in' +p146569 +tp146570 +a(g146567 +g146569 +S'the' +p146571 +tp146572 +a(g146569 +g146571 +S'paris' +p146573 +tp146574 +a(g146571 +g146573 +S'conservatoire.' +p146575 +tp146576 +a(g146573 +g146575 +S'the' +p146577 +tp146578 +a(g146575 +g146577 +S'following' +p146579 +tp146580 +a(g146577 +g146579 +S'year,' +p146581 +tp146582 +a(g146579 +g146581 +S'she' +p146583 +tp146584 +a(g146581 +g146583 +S'toured' +p146585 +tp146586 +a(g146583 +g146585 +S'the' +p146587 +tp146588 +a(g146585 +g146587 +S'provinces' +p146589 +tp146590 +a(g146587 +g146589 +S'but' +p146591 +tp146592 +a(g146589 +g146591 +S'returned' +p146593 +tp146594 +a(g146591 +g146593 +S'home' +p146595 +tp146596 +a(g146593 +g146595 +S'to' +p146597 +tp146598 +a(g146595 +g146597 +S'paris' +p146599 +tp146600 +a(g146597 +g146599 +S'in' +p146601 +tp146602 +a(g146599 +g146601 +S'1874,' +p146603 +tp146604 +a(g146601 +g146603 +S'where' +p146605 +tp146606 +a(g146603 +g146605 +S'she' +p146607 +tp146608 +a(g146605 +g146607 +S'began' +p146609 +tp146610 +a(g146607 +g146609 +S'to' +p146611 +tp146612 +a(g146609 +g146611 +S'pursue' +p146613 +tp146614 +a(g146611 +g146613 +S'her' +p146615 +tp146616 +a(g146613 +g146615 +S'stage' +p146617 +tp146618 +a(g146615 +g146617 +S'career' +p146619 +tp146620 +a(g146617 +g146619 +S'in' +p146621 +tp146622 +a(g146619 +g146621 +S'earnest,' +p146623 +tp146624 +a(g146621 +g146623 +S'appearing' +p146625 +tp146626 +a(g146623 +g146625 +S'in' +p146627 +tp146628 +a(g146625 +g146627 +S'minor' +p146629 +tp146630 +a(g146627 +g146629 +S'roles' +p146631 +tp146632 +a(g146629 +g146631 +S'at' +p146633 +tp146634 +a(g146631 +g146633 +S'the' +p146635 +tp146636 +a(g146633 +g146635 +S'théâtre' +p146637 +tp146638 +a(g146635 +g146637 +S'de' +p146639 +tp146640 +a(g146637 +g146639 +S'l\xe2\x80\x99ambigu-comique.' +p146641 +tp146642 +a(g146639 +g146641 +S'adopting' +p146643 +tp146644 +a(g146641 +g146643 +S'the' +p146645 +tp146646 +a(g146643 +g146645 +S'stage' +p146647 +tp146648 +a(g146645 +g146647 +S'name' +p146649 +tp146650 +a(g146647 +g146649 +S'henriette' +p146651 +tp146652 +a(g146649 +g146651 +S'henriot,' +p146653 +tp146654 +a(g146651 +g146653 +S'the' +p146655 +tp146656 +a(g146653 +g146655 +S'aspiring' +p146657 +tp146658 +a(g146655 +g146657 +S'actress' +p146659 +tp146660 +a(g146657 +g146659 +S'worked' +p146661 +tp146662 +a(g146659 +g146661 +S'as' +p146663 +tp146664 +a(g146661 +g146663 +S'an' +p146665 +tp146666 +a(g146663 +g146665 +S'artist\xe2\x80\x99s' +p146667 +tp146668 +a(g146665 +g146667 +S'model' +p146669 +tp146670 +a(g146667 +g146669 +S'to' +p146671 +tp146672 +a(g146669 +g146671 +S'pay' +p146673 +tp146674 +a(g146671 +g146673 +S'the' +p146675 +tp146676 +a(g146673 +g146675 +S'rent' +p146677 +tp146678 +a(g146675 +g146677 +S'before' +p146679 +tp146680 +a(g146677 +g146679 +S'achieving' +p146681 +tp146682 +a(g146679 +g146681 +S'modest' +p146683 +tp146684 +a(g146681 +g146683 +S'fame' +p146685 +tp146686 +a(g146683 +g146685 +S'as' +p146687 +tp146688 +a(g146685 +g146687 +S'a' +p146689 +tp146690 +a(g146687 +g146689 +S'vaudeville' +p146691 +tp146692 +a(g146689 +g146691 +S'star.' +p146693 +tp146694 +a(g146691 +g146693 +S'she' +p146695 +tp146696 +a(g146693 +g146695 +S'retired' +p146697 +tp146698 +a(g146695 +g146697 +S'from' +p146699 +tp146700 +a(g146697 +g146699 +S'the' +p146701 +tp146702 +a(g146699 +g146701 +S'stage' +p146703 +tp146704 +a(g146701 +g146703 +S'following' +p146705 +tp146706 +a(g146703 +g146705 +S'the' +p146707 +tp146708 +a(g146705 +g146707 +S'death' +p146709 +tp146710 +a(g146707 +g146709 +S'in' +p146711 +tp146712 +a(g146709 +g146711 +S'1900' +p146713 +tp146714 +a(g146711 +g146713 +S'of' +p146715 +tp146716 +a(g146713 +g146715 +S'her' +p146717 +tp146718 +a(g146715 +g146717 +S'daughter' +p146719 +tp146720 +a(g146717 +g146719 +S'jane—a' +p146721 +tp146722 +a(g146719 +g146721 +S'promising' +p146723 +tp146724 +a(g146721 +g146723 +S'young' +p146725 +tp146726 +a(g146723 +g146725 +S'actress' +p146727 +tp146728 +a(g146725 +g146727 +S'who' +p146729 +tp146730 +a(g146727 +g146729 +S'was' +p146731 +tp146732 +a(g146729 +g146731 +S'the' +p146733 +tp146734 +a(g146731 +g146733 +S'victim' +p146735 +tp146736 +a(g146733 +g146735 +S'of' +p146737 +tp146738 +a(g146735 +g146737 +S'a' +p146739 +tp146740 +a(g146737 +g146739 +S'fire' +p146741 +tp146742 +a(g146739 +g146741 +S'at' +p146743 +tp146744 +a(g146741 +g146743 +S'the' +p146745 +tp146746 +a(g146743 +g146745 +S'comedie-française—and' +p146747 +tp146748 +a(g146745 +g146747 +S'eventually' +p146749 +tp146750 +a(g146747 +g146749 +S'sank' +p146751 +tp146752 +a(g146749 +g146751 +S'into' +p146753 +tp146754 +a(g146751 +g146753 +S'obscurity.' +p146755 +tp146756 +a(g146753 +g146755 +S'henriette' +p146757 +tp146758 +a(g146755 +g146757 +S'was' +p146759 +tp146760 +a(g146757 +g146759 +S'renoir\xe2\x80\x99s' +p146761 +tp146762 +a(g146759 +g146761 +S'favorite' +p146763 +tp146764 +a(g146761 +g146763 +S'model' +p146765 +tp146766 +a(g146763 +g146765 +S'in' +p146767 +tp146768 +a(g146765 +g146767 +S'the' +p146769 +tp146770 +a(g146767 +g146769 +S'1870s,' +p146771 +tp146772 +a(g146769 +g146771 +S'appearing' +p146773 +tp146774 +a(g146771 +g146773 +S'in' +p146775 +tp146776 +a(g146773 +g146775 +S'at' +p146777 +tp146778 +a(g146775 +g146777 +S'least' +p146779 +tp146780 +a(g146777 +g146779 +S'eleven' +p146781 +tp146782 +a(g146779 +g146781 +S'of' +p146783 +tp146784 +a(g146781 +g146783 +S'the' +p146785 +tp146786 +a(g146783 +g146785 +S'paintings' +p146787 +tp146788 +a(g146785 +g146787 +S'he' +p146789 +tp146790 +a(g146787 +g146789 +S'produced' +p146791 +tp146792 +a(g146789 +g146791 +S'between' +p146793 +tp146794 +a(g146791 +g146793 +S'the' +p146795 +tp146796 +a(g146793 +g146795 +S'years' +p146797 +tp146798 +a(g146795 +g146797 +S'1874' +p146799 +tp146800 +a(g146797 +g146799 +S'and' +p146801 +tp146802 +a(g146799 +g146801 +S'1876,' +p146803 +tp146804 +a(g146801 +g146803 +S'including' +p146805 +tp146806 +a(g146803 +g146805 +S'the' +p146807 +tp146808 +a(g146805 +g146807 +S'sumptuous' +p146809 +tp146810 +a(g146807 +g146809 +S'full-length' +p146811 +tp146812 +a(g146809 +g146811 +S'portrait' +p146813 +tp146814 +a(g146811 +g146813 +S'renoir\xe2\x80\x99s' +p146815 +tp146816 +a(g146813 +g146815 +S'artistry' +p146817 +tp146818 +a(g146815 +g146817 +S'is' +p146819 +tp146820 +a(g146817 +g146819 +S'equally' +p146821 +tp146822 +a(g146819 +g146821 +S'evident' +p146823 +tp146824 +a(g146821 +g146823 +S'in' +p146825 +tp146826 +a(g146823 +g146825 +S'the' +p146827 +tp146828 +a(g146825 +g146827 +S'work\xe2\x80\x99s' +p146829 +tp146830 +a(g146827 +g146829 +S'composition.' +p146831 +tp146832 +a(g146829 +g146831 +S'renoir' +p146833 +tp146834 +a(g146831 +g146833 +S'depicted' +p146835 +tp146836 +a(g146833 +g146835 +S'henriette' +p146837 +tp146838 +a(g146835 +g146837 +S'in' +p146839 +tp146840 +a(g146837 +g146839 +S'a' +p146841 +tp146842 +a(g146839 +g146841 +S'half-length' +p146843 +tp146844 +a(g146841 +g146843 +S'format' +p146845 +tp146846 +a(g146843 +g146845 +S'with' +p146847 +tp146848 +a(g146845 +g146847 +S'her' +p146849 +tp146850 +a(g146847 +g146849 +S'hands' +p146851 +tp146852 +a(g146849 +g146851 +S'folded' +p146853 +tp146854 +a(g146851 +g146853 +S'demurely' +p146855 +tp146856 +a(g146853 +g146855 +S'in' +p146857 +tp146858 +a(g146855 +g146857 +S'her' +p146859 +tp146860 +a(g146857 +g146859 +S'lap.' +p146861 +tp146862 +a(g146859 +g146861 +S'while' +p146863 +tp146864 +a(g146861 +g146863 +S'the' +p146865 +tp146866 +a(g146863 +g146865 +S'face' +p146867 +tp146868 +a(g146865 +g146867 +S'is' +p146869 +tp146870 +a(g146867 +g146869 +S'carefully' +p146871 +tp146872 +a(g146869 +g146871 +S'rendered,' +p146873 +tp146874 +a(g146871 +g146873 +S'the' +p146875 +tp146876 +a(g146873 +g146875 +S'remainder' +p146877 +tp146878 +a(g146875 +g146877 +S'of' +p146879 +tp146880 +a(g146877 +g146879 +S'the' +p146881 +tp146882 +a(g146879 +g146881 +S'picture' +p146883 +tp146884 +a(g146881 +g146883 +S'has' +p146885 +tp146886 +a(g146883 +g146885 +S'the' +p146887 +tp146888 +a(g146885 +g146887 +S'rough,' +p146889 +tp146890 +a(g146887 +g146889 +S'unfinished' +p146891 +tp146892 +a(g146889 +g146891 +S'quality' +p146893 +tp146894 +a(g146891 +g146893 +S'of' +p146895 +tp146896 +a(g146893 +g146895 +S'a' +p146897 +tp146898 +a(g146895 +g146897 +S'sketch,' +p146899 +tp146900 +a(g146897 +g146899 +S'which' +p146901 +tp146902 +a(g146899 +g146901 +S'serves' +p146903 +tp146904 +a(g146901 +g146903 +S'to' +p146905 +tp146906 +a(g146903 +g146905 +S'focus' +p146907 +tp146908 +a(g146905 +g146907 +S'attention' +p146909 +tp146910 +a(g146907 +g146909 +S'upon' +p146911 +tp146912 +a(g146909 +g146911 +S'her' +p146913 +tp146914 +a(g146911 +g146913 +S'visage.' +p146915 +tp146916 +a(g146913 +g146915 +S'the' +p146917 +tp146918 +a(g146915 +g146917 +S'paint' +p146919 +tp146920 +a(g146917 +g146919 +S'is,' +p146921 +tp146922 +a(g146919 +g146921 +S'for' +p146923 +tp146924 +a(g146921 +g146923 +S'the' +p146925 +tp146926 +a(g146923 +g146925 +S'most' +p146927 +tp146928 +a(g146925 +g146927 +S'part,' +p146929 +tp146930 +a(g146927 +g146929 +S'thinly' +p146931 +tp146932 +a(g146929 +g146931 +S'applied,' +p146933 +tp146934 +a(g146931 +g146933 +S'a' +p146935 +tp146936 +a(g146933 +g146935 +S'technique' +p146937 +tp146938 +a(g146935 +g146937 +S'particularly' +p146939 +tp146940 +a(g146937 +g146939 +S'well' +p146941 +tp146942 +a(g146939 +g146941 +S'suited' +p146943 +tp146944 +a(g146941 +g146943 +S'to' +p146945 +tp146946 +a(g146943 +g146945 +S'depicting' +p146947 +tp146948 +a(g146945 +g146947 +S'the' +p146949 +tp146950 +a(g146947 +g146949 +S'diaphanous' +p146951 +tp146952 +a(g146949 +g146951 +S'fabric' +p146953 +tp146954 +a(g146951 +g146953 +S'of' +p146955 +tp146956 +a(g146953 +g146955 +S'her' +p146957 +tp146958 +a(g146955 +g146957 +S'dress,' +p146959 +tp146960 +a(g146957 +g146959 +S'which' +p146961 +tp146962 +a(g146959 +g146961 +S'seems' +p146963 +tp146964 +a(g146961 +g146963 +S'almost' +p146965 +tp146966 +a(g146963 +g146965 +S'to' +p146967 +tp146968 +a(g146965 +g146967 +S'merge' +p146969 +tp146970 +a(g146967 +g146969 +S'with' +p146971 +tp146972 +a(g146969 +g146971 +S'the' +p146973 +tp146974 +a(g146971 +g146973 +S'background.' +p146975 +tp146976 +a(g146973 +g146975 +S'in' +p146977 +tp146978 +a(g146975 +g146977 +S'the' +p146979 +tp146980 +a(g146977 +g146979 +S'delicacy' +p146981 +tp146982 +a(g146979 +g146981 +S'of' +p146983 +tp146984 +a(g146981 +g146983 +S'the' +p146985 +tp146986 +a(g146983 +g146985 +S'paint' +p146987 +tp146988 +a(g146985 +g146987 +S'handling' +p146989 +tp146990 +a(g146987 +g146989 +S'and' +p146991 +tp146992 +a(g146989 +g146991 +S'its' +p146993 +tp146994 +a(g146991 +g146993 +S'soft-hued' +p146995 +tp146996 +a(g146993 +g146995 +S'palette,' +p146997 +tp146998 +a(g146995 +g146997 +S'this' +p146999 +tp147000 +a(g146997 +g146999 +S'is' +p147001 +tp147002 +a(g146999 +g147001 +S'the' +p147003 +tp147004 +a(g147001 +g147003 +S'only' +p147005 +tp147006 +a(g147003 +g147005 +S'portrait' +p147007 +tp147008 +a(g147005 +g147007 +S'of' +p147009 +tp147010 +a(g147007 +g147009 +S'herself' +p147011 +tp147012 +a(g147009 +g147011 +S'by' +p147013 +tp147014 +a(g147011 +g147013 +S'renoir' +p147015 +tp147016 +a(g147013 +g147015 +S'that' +p147017 +tp147018 +a(g147015 +g147017 +S'henriette' +p147019 +tp147020 +a(g147017 +g147019 +S'ever' +p147021 +tp147022 +a(g147019 +g147021 +S'owned.' +p147023 +tp147024 +a(g147021 +g147023 +S'(text' +p147025 +tp147026 +a(g147023 +g147025 +S'by' +p147027 +tp147028 +a(g147025 +g147027 +S'kimberly' +p147029 +tp147030 +a(g147027 +g147029 +S'jones,' +p147031 +tp147032 +a(g147029 +g147031 +S'notes' +p147033 +tp147034 +a(g147031 +g147033 +S'' +p147037 +tp147038 +a(g147035 +g147037 +S'' +p147041 +tp147042 +a(g147039 +g147041 +S'the' +p147043 +tp147044 +a(g147041 +g147043 +S'still' +p147045 +tp147046 +a(g147043 +g147045 +S'life' +p147047 +tp147048 +a(g147045 +g147047 +S'was' +p147049 +tp147050 +a(g147047 +g147049 +S'developed' +p147051 +tp147052 +a(g147049 +g147051 +S'as' +p147053 +tp147054 +a(g147051 +g147053 +S'a' +p147055 +tp147056 +a(g147053 +g147055 +S'separate' +p147057 +tp147058 +a(g147055 +g147057 +S'category' +p147059 +tp147060 +a(g147057 +g147059 +S'of' +p147061 +tp147062 +a(g147059 +g147061 +S'painting' +p147063 +tp147064 +a(g147061 +g147063 +S'in' +p147065 +tp147066 +a(g147063 +g147065 +S'the' +p147067 +tp147068 +a(g147065 +g147067 +S'seventeenth' +p147069 +tp147070 +a(g147067 +g147069 +S'century.' +p147071 +tp147072 +a(g147069 +g147071 +S'dutch' +p147073 +tp147074 +a(g147071 +g147073 +S'artists' +p147075 +tp147076 +a(g147073 +g147075 +S'worked' +p147077 +tp147078 +a(g147075 +g147077 +S'in' +p147079 +tp147080 +a(g147077 +g147079 +S'a' +p147081 +tp147082 +a(g147079 +g147081 +S'variety' +p147083 +tp147084 +a(g147081 +g147083 +S'of' +p147085 +tp147086 +a(g147083 +g147085 +S'still–life' +p147087 +tp147088 +a(g147085 +g147087 +S'traditions' +p147089 +tp147090 +a(g147087 +g147089 +S'that' +p147091 +tp147092 +a(g147089 +g147091 +S'ranged' +p147093 +tp147094 +a(g147091 +g147093 +S'from' +p147095 +tp147096 +a(g147093 +g147095 +S'banquet' +p147097 +tp147098 +a(g147095 +g147097 +S'pieces' +p147099 +tp147100 +a(g147097 +g147099 +S'to' +p147101 +tp147102 +a(g147099 +g147101 +S'paintings' +p147103 +tp147104 +a(g147101 +g147103 +S'focused' +p147105 +tp147106 +a(g147103 +g147105 +S'solely' +p147107 +tp147108 +a(g147105 +g147107 +S'on' +p147109 +tp147110 +a(g147107 +g147109 +S'fruit,' +p147111 +tp147112 +a(g147109 +g147111 +S'shells,' +p147113 +tp147114 +a(g147111 +g147113 +S'books,' +p147115 +tp147116 +a(g147113 +g147115 +S'or' +p147117 +tp147118 +a(g147115 +g147117 +S'flowers.' +p147119 +tp147120 +a(g147117 +g147119 +S'de' +p147121 +tp147122 +a(g147119 +g147121 +S'heem' +p147123 +tp147124 +a(g147121 +g147123 +S'was' +p147125 +tp147126 +a(g147123 +g147125 +S'one' +p147127 +tp147128 +a(g147125 +g147127 +S'of' +p147129 +tp147130 +a(g147127 +g147129 +S'the' +p147131 +tp147132 +a(g147129 +g147131 +S'most' +p147133 +tp147134 +a(g147131 +g147133 +S'gifted' +p147135 +tp147136 +a(g147133 +g147135 +S'and' +p147137 +tp147138 +a(g147135 +g147137 +S'versatile' +p147139 +tp147140 +a(g147137 +g147139 +S'of' +p147141 +tp147142 +a(g147139 +g147141 +S'these' +p147143 +tp147144 +a(g147141 +g147143 +S'artists,' +p147145 +tp147146 +a(g147143 +g147145 +S'and' +p147147 +tp147148 +a(g147145 +g147147 +S'one' +p147149 +tp147150 +a(g147147 +g147149 +S'of' +p147151 +tp147152 +a(g147149 +g147151 +S'the' +p147153 +tp147154 +a(g147151 +g147153 +S'most' +p147155 +tp147156 +a(g147153 +g147155 +S'influential.' +p147157 +tp147158 +a(g147155 +g147157 +S'his' +p147159 +tp147160 +a(g147157 +g147159 +S'consummate' +p147161 +tp147162 +a(g147159 +g147161 +S'technique' +p147163 +tp147164 +a(g147161 +g147163 +S'allowed' +p147165 +tp147166 +a(g147163 +g147165 +S'him' +p147167 +tp147168 +a(g147165 +g147167 +S'to' +p147169 +tp147170 +a(g147167 +g147169 +S'portray' +p147171 +tp147172 +a(g147169 +g147171 +S'a' +p147173 +tp147174 +a(g147171 +g147173 +S'great' +p147175 +tp147176 +a(g147173 +g147175 +S'variety' +p147177 +tp147178 +a(g147175 +g147177 +S'of' +p147179 +tp147180 +a(g147177 +g147179 +S'textures' +p147181 +tp147182 +a(g147179 +g147181 +S'in' +p147183 +tp147184 +a(g147181 +g147183 +S'a' +p147185 +tp147186 +a(g147183 +g147185 +S'convincing' +p147187 +tp147188 +a(g147185 +g147187 +S'manner.' +p147189 +tp147190 +a(g147187 +g147189 +S'in' +p147191 +tp147192 +a(g147189 +g147191 +S'this' +p147193 +tp147194 +a(g147191 +g147193 +S'flower' +p147195 +tp147196 +a(g147193 +g147195 +S'painting' +p147197 +tp147198 +a(g147195 +g147197 +S'we' +p147199 +tp147200 +a(g147197 +g147199 +S'can' +p147201 +tp147202 +a(g147199 +g147201 +S'delight' +p147203 +tp147204 +a(g147201 +g147203 +S'in' +p147205 +tp147206 +a(g147203 +g147205 +S'his' +p147207 +tp147208 +a(g147205 +g147207 +S'realistic' +p147209 +tp147210 +a(g147207 +g147209 +S'depiction' +p147211 +tp147212 +a(g147209 +g147211 +S'of' +p147213 +tp147214 +a(g147211 +g147213 +S'tulip' +p147215 +tp147216 +a(g147213 +g147215 +S'petals,' +p147217 +tp147218 +a(g147215 +g147217 +S'long' +p147219 +tp147220 +a(g147217 +g147219 +S'bent' +p147221 +tp147222 +a(g147219 +g147221 +S'reeds' +p147223 +tp147224 +a(g147221 +g147223 +S'of' +p147225 +tp147226 +a(g147223 +g147225 +S'wheat,' +p147227 +tp147228 +a(g147225 +g147227 +S'minute' +p147229 +tp147230 +a(g147227 +g147229 +S'animals' +p147231 +tp147232 +a(g147229 +g147231 +S'including' +p147233 +tp147234 +a(g147231 +g147233 +S'butterflies,' +p147235 +tp147236 +a(g147233 +g147235 +S'ants,' +p147237 +tp147238 +a(g147235 +g147237 +S'snails,' +p147239 +tp147240 +a(g147237 +g147239 +S'caterpillars,' +p147241 +tp147242 +a(g147239 +g147241 +S'and' +p147243 +tp147244 +a(g147241 +g147243 +S'finally,' +p147245 +tp147246 +a(g147243 +g147245 +S'reflections' +p147247 +tp147248 +a(g147245 +g147247 +S'on' +p147249 +tp147250 +a(g147247 +g147249 +S'the' +p147251 +tp147252 +a(g147249 +g147251 +S'transparent' +p147253 +tp147254 +a(g147251 +g147253 +S'glass' +p147255 +tp147256 +a(g147253 +g147255 +S'vase.' +p147257 +tp147258 +a(g147255 +g147257 +S'de' +p147259 +tp147260 +a(g147257 +g147259 +S'heem' +p147261 +tp147262 +a(g147259 +g147261 +S'also' +p147263 +tp147264 +a(g147261 +g147263 +S'had' +p147265 +tp147266 +a(g147263 +g147265 +S'great' +p147267 +tp147268 +a(g147265 +g147267 +S'compositional' +p147269 +tp147270 +a(g147267 +g147269 +S'sensitivity.' +p147271 +tp147272 +a(g147269 +g147271 +S'over' +p147273 +tp147274 +a(g147271 +g147273 +S'twenty' +p147275 +tp147276 +a(g147273 +g147275 +S'types' +p147277 +tp147278 +a(g147275 +g147277 +S'of' +p147279 +tp147280 +a(g147277 +g147279 +S'flowers,' +p147281 +tp147282 +a(g147279 +g147281 +S'vegetables,' +p147283 +tp147284 +a(g147281 +g147283 +S'and' +p147285 +tp147286 +a(g147283 +g147285 +S'grains' +p147287 +tp147288 +a(g147285 +g147287 +S'have' +p147289 +tp147290 +a(g147287 +g147289 +S'been' +p147291 +tp147292 +a(g147289 +g147291 +S'brought' +p147293 +tp147294 +a(g147291 +g147293 +S'together' +p147295 +tp147296 +a(g147293 +g147295 +S'here' +p147297 +tp147298 +a(g147295 +g147297 +S'in' +p147299 +tp147300 +a(g147297 +g147299 +S'a' +p147301 +tp147302 +a(g147299 +g147301 +S'way' +p147303 +tp147304 +a(g147301 +g147303 +S'that' +p147305 +tp147306 +a(g147303 +g147305 +S'permits' +p147307 +tp147308 +a(g147305 +g147307 +S'their' +p147309 +tp147310 +a(g147307 +g147309 +S'colors' +p147311 +tp147312 +a(g147309 +g147311 +S'and' +p147313 +tp147314 +a(g147311 +g147313 +S'shapes' +p147315 +tp147316 +a(g147313 +g147315 +S'to' +p147317 +tp147318 +a(g147315 +g147317 +S'balance' +p147319 +tp147320 +a(g147317 +g147319 +S'in' +p147321 +tp147322 +a(g147319 +g147321 +S'an' +p147323 +tp147324 +a(g147321 +g147323 +S'harmonious' +p147325 +tp147326 +a(g147323 +g147325 +S'arrangement.' +p147327 +tp147328 +a(g147325 +g147327 +S'despite' +p147329 +tp147330 +a(g147327 +g147329 +S'de' +p147331 +tp147332 +a(g147329 +g147331 +S"heem's" +p147333 +tp147334 +a(g147331 +g147333 +S'realistic' +p147335 +tp147336 +a(g147333 +g147335 +S'depiction,' +p147337 +tp147338 +a(g147335 +g147337 +S'this' +p147339 +tp147340 +a(g147337 +g147339 +S'floral' +p147341 +tp147342 +a(g147339 +g147341 +S'arrangement' +p147343 +tp147344 +a(g147341 +g147343 +S'never' +p147345 +tp147346 +a(g147343 +g147345 +S'actually' +p147347 +tp147348 +a(g147345 +g147347 +S'could' +p147349 +tp147350 +a(g147347 +g147349 +S'have' +p147351 +tp147352 +a(g147349 +g147351 +S'existed.' +p147353 +tp147354 +a(g147351 +g147353 +S'the' +p147355 +tp147356 +a(g147353 +g147355 +S'flowers' +p147357 +tp147358 +a(g147355 +g147357 +S'represented' +p147359 +tp147360 +a(g147357 +g147359 +S'grow' +p147361 +tp147362 +a(g147359 +g147361 +S'at' +p147363 +tp147364 +a(g147361 +g147363 +S'different' +p147365 +tp147366 +a(g147363 +g147365 +S'seasons' +p147367 +tp147368 +a(g147365 +g147367 +S'of' +p147369 +tp147370 +a(g147367 +g147369 +S'the' +p147371 +tp147372 +a(g147369 +g147371 +S'year.' +p147373 +tp147374 +a(g147371 +g147373 +S'in' +p147375 +tp147376 +a(g147373 +g147375 +S'many' +p147377 +tp147378 +a(g147375 +g147377 +S'of' +p147379 +tp147380 +a(g147377 +g147379 +S'his' +p147381 +tp147382 +a(g147379 +g147381 +S'paintings' +p147383 +tp147384 +a(g147381 +g147383 +S'de' +p147385 +tp147386 +a(g147383 +g147385 +S'heem' +p147387 +tp147388 +a(g147385 +g147387 +S'chose' +p147389 +tp147390 +a(g147387 +g147389 +S'to' +p147391 +tp147392 +a(g147389 +g147391 +S'include' +p147393 +tp147394 +a(g147391 +g147393 +S'specific' +p147395 +tp147396 +a(g147393 +g147395 +S'animals' +p147397 +tp147398 +a(g147395 +g147397 +S'and' +p147399 +tp147400 +a(g147397 +g147399 +S'flowers' +p147401 +tp147402 +a(g147399 +g147401 +S'because' +p147403 +tp147404 +a(g147401 +g147403 +S'of' +p147405 +tp147406 +a(g147403 +g147405 +S'their' +p147407 +tp147408 +a(g147405 +g147407 +S'symbolic' +p147409 +tp147410 +a(g147407 +g147409 +S'meanings;' +p147411 +tp147412 +a(g147409 +g147411 +S'the' +p147413 +tp147414 +a(g147411 +g147413 +S'butterfly,' +p147415 +tp147416 +a(g147413 +g147415 +S'for' +p147417 +tp147418 +a(g147415 +g147417 +S'example,' +p147419 +tp147420 +a(g147417 +g147419 +S'is' +p147421 +tp147422 +a(g147419 +g147421 +S'often' +p147423 +tp147424 +a(g147421 +g147423 +S'a' +p147425 +tp147426 +a(g147423 +g147425 +S'symbol' +p147427 +tp147428 +a(g147425 +g147427 +S'for' +p147429 +tp147430 +a(g147427 +g147429 +S'the' +p147431 +tp147432 +a(g147429 +g147431 +S'resurrection.' +p147433 +tp147434 +a(g147431 +g147433 +S'in' +p147435 +tp147436 +a(g147433 +g147435 +S'june' +p147437 +tp147438 +a(g147435 +g147437 +S'1774,' +p147439 +tp147440 +a(g147437 +g147439 +S'when' +p147441 +tp147442 +a(g147439 +g147441 +S'he' +p147443 +tp147444 +a(g147441 +g147443 +S'was' +p147445 +tp147446 +a(g147443 +g147445 +S'already' +p147447 +tp147448 +a(g147445 +g147447 +S'thirty-five' +p147449 +tp147450 +a(g147447 +g147449 +S'years' +p147451 +tp147452 +a(g147449 +g147451 +S'old,' +p147453 +tp147454 +a(g147451 +g147453 +S'copley' +p147455 +tp147456 +a(g147453 +g147455 +S'decided' +p147457 +tp147458 +a(g147455 +g147457 +S'that' +p147459 +tp147460 +a(g147457 +g147459 +S'he' +p147461 +tp147462 +a(g147459 +g147461 +S'must' +p147463 +tp147464 +a(g147461 +g147463 +S'go' +p147465 +tp147466 +a(g147463 +g147465 +S'to' +p147467 +tp147468 +a(g147465 +g147467 +S'europe.' +p147469 +tp147470 +a(g147467 +g147469 +S'although' +p147471 +tp147472 +a(g147469 +g147471 +S'he' +p147473 +tp147474 +a(g147471 +g147473 +S'intended' +p147475 +tp147476 +a(g147473 +g147475 +S'to' +p147477 +tp147478 +a(g147475 +g147477 +S'stay' +p147479 +tp147480 +a(g147477 +g147479 +S'abroad' +p147481 +tp147482 +a(g147479 +g147481 +S'just' +p147483 +tp147484 +a(g147481 +g147483 +S'long' +p147485 +tp147486 +a(g147483 +g147485 +S'enough' +p147487 +tp147488 +a(g147485 +g147487 +S'to' +p147489 +tp147490 +a(g147487 +g147489 +S'acquire' +p147491 +tp147492 +a(g147489 +g147491 +S'artistic' +p147493 +tp147494 +a(g147491 +g147493 +S'sophistication,' +p147495 +tp147496 +a(g147493 +g147495 +S'the' +p147497 +tp147498 +a(g147495 +g147497 +S'american' +p147499 +tp147500 +a(g147497 +g147499 +S'revolution' +p147501 +tp147502 +a(g147499 +g147501 +S'changed' +p147503 +tp147504 +a(g147501 +g147503 +S'his' +p147505 +tp147506 +a(g147503 +g147505 +S'plans.' +p147507 +tp147508 +a(g147505 +g147507 +S'studying' +p147509 +tp147510 +a(g147507 +g147509 +S'in' +p147511 +tp147512 +a(g147509 +g147511 +S'rome' +p147513 +tp147514 +a(g147511 +g147513 +S'and' +p147515 +tp147516 +a(g147513 +g147515 +S'stopping' +p147517 +tp147518 +a(g147515 +g147517 +S'in' +p147519 +tp147520 +a(g147517 +g147519 +S'many' +p147521 +tp147522 +a(g147519 +g147521 +S'continental' +p147523 +tp147524 +a(g147521 +g147523 +S'cities,' +p147525 +tp147526 +a(g147523 +g147525 +S'copley' +p147527 +tp147528 +a(g147525 +g147527 +S'arrived' +p147529 +tp147530 +a(g147527 +g147529 +S'in' +p147531 +tp147532 +a(g147529 +g147531 +S'london' +p147533 +tp147534 +a(g147531 +g147533 +S'in' +p147535 +tp147536 +a(g147533 +g147535 +S'october' +p147537 +tp147538 +a(g147535 +g147537 +S'1775.' +p147539 +tp147540 +a(g147537 +g147539 +S'there' +p147541 +tp147542 +a(g147539 +g147541 +S'he' +p147543 +tp147544 +a(g147541 +g147543 +S'was' +p147545 +tp147546 +a(g147543 +g147545 +S'joined' +p147547 +tp147548 +a(g147545 +g147547 +S'by' +p147549 +tp147550 +a(g147547 +g147549 +S'his' +p147551 +tp147552 +a(g147549 +g147551 +S'wife,' +p147553 +tp147554 +a(g147551 +g147553 +S'children,' +p147555 +tp147556 +a(g147553 +g147555 +S'and' +p147557 +tp147558 +a(g147555 +g147557 +S'father-in-law,' +p147559 +tp147560 +a(g147557 +g147559 +S'richard' +p147561 +tp147562 +a(g147559 +g147561 +S'clarke,' +p147563 +tp147564 +a(g147561 +g147563 +S'one' +p147565 +tp147566 +a(g147563 +g147565 +S'of' +p147567 +tp147568 +a(g147565 +g147567 +S'the' +p147569 +tp147570 +a(g147567 +g147569 +S'tory' +p147571 +tp147572 +a(g147569 +g147571 +S'merchants' +p147573 +tp147574 +a(g147571 +g147573 +S'whose' +p147575 +tp147576 +a(g147573 +g147575 +S'investments' +p147577 +tp147578 +a(g147575 +g147577 +S'had' +p147579 +tp147580 +a(g147577 +g147579 +S'been' +p147581 +tp147582 +a(g147579 +g147581 +S'dumped' +p147583 +tp147584 +a(g147581 +g147583 +S'overboard' +p147585 +tp147586 +a(g147583 +g147585 +S'at' +p147587 +tp147588 +a(g147585 +g147587 +S'the' +p147589 +tp147590 +a(g147587 +g147589 +S'boston' +p147591 +tp147592 +a(g147589 +g147591 +S'tea' +p147593 +tp147594 +a(g147591 +g147593 +S'party.' +p147595 +tp147596 +a(g147593 +g147595 +S'in' +p147597 +tp147598 +a(g147595 +g147597 +S'i777' +p147599 +tp147600 +a(g147597 +g147599 +S'at' +p147601 +tp147602 +a(g147599 +g147601 +S'the' +p147603 +tp147604 +a(g147601 +g147603 +S'royal' +p147605 +tp147606 +a(g147603 +g147605 +S'academy,' +p147607 +tp147608 +a(g147605 +g147607 +S'copley' +p147609 +tp147610 +a(g147607 +g147609 +S'exhibited' +p147611 +tp147612 +a(g147609 +g147611 +S'in' +p147613 +tp147614 +a(g147611 +g147613 +S'the' +p147615 +tp147616 +a(g147613 +g147615 +S'early' +p147617 +tp147618 +a(g147615 +g147617 +S'1400s,' +p147619 +tp147620 +a(g147617 +g147619 +S'the' +p147621 +tp147622 +a(g147619 +g147621 +S'sienese' +p147623 +tp147624 +a(g147621 +g147623 +S'artist' +p147625 +tp147626 +a(g147623 +g147625 +S'most' +p147627 +tp147628 +a(g147625 +g147627 +S'influenced' +p147629 +tp147630 +a(g147627 +g147629 +S'by' +p147631 +tp147632 +a(g147629 +g147631 +S'the' +p147633 +tp147634 +a(g147631 +g147633 +S'new' +p147635 +tp147636 +a(g147633 +g147635 +S'florentine' +p147637 +tp147638 +a(g147635 +g147637 +S'style' +p147639 +tp147640 +a(g147637 +g147639 +S'of' +p147641 +tp147642 +a(g147639 +g147641 +S'painting' +p147643 +tp147644 +a(g147641 +g147643 +S'was' +p147645 +tp147646 +a(g147643 +g147645 +S'domenico' +p147647 +tp147648 +a(g147645 +g147647 +S'di' +p147649 +tp147650 +a(g147647 +g147649 +S'bartolo.' +p147651 +tp147652 +a(g147649 +g147651 +S'he' +p147653 +tp147654 +a(g147651 +g147653 +S'was,' +p147655 +tp147656 +a(g147653 +g147655 +S'in' +p147657 +tp147658 +a(g147655 +g147657 +S'fact,' +p147659 +tp147660 +a(g147657 +g147659 +S'the' +p147661 +tp147662 +a(g147659 +g147661 +S'only' +p147663 +tp147664 +a(g147661 +g147663 +S'sienese' +p147665 +tp147666 +a(g147663 +g147665 +S'painter' +p147667 +tp147668 +a(g147665 +g147667 +S'of' +p147669 +tp147670 +a(g147667 +g147669 +S'his' +p147671 +tp147672 +a(g147669 +g147671 +S'day' +p147673 +tp147674 +a(g147671 +g147673 +S'to' +p147675 +tp147676 +a(g147673 +g147675 +S'receive' +p147677 +tp147678 +a(g147675 +g147677 +S'commissions' +p147679 +tp147680 +a(g147677 +g147679 +S'from' +p147681 +tp147682 +a(g147679 +g147681 +S'florentine' +p147683 +tp147684 +a(g147681 +g147683 +S'clients.' +p147685 +tp147686 +a(g147683 +g147685 +S'this' +p147687 +tp147688 +a(g147685 +g147687 +S'small' +p147689 +tp147690 +a(g147687 +g147689 +S'panel' +p147691 +tp147692 +a(g147689 +g147691 +S'is' +p147693 +tp147694 +a(g147691 +g147693 +S'one' +p147695 +tp147696 +a(g147693 +g147695 +S'of' +p147697 +tp147698 +a(g147695 +g147697 +S'the' +p147699 +tp147700 +a(g147697 +g147699 +S'first' +p147701 +tp147702 +a(g147699 +g147701 +S'in' +p147703 +tp147704 +a(g147701 +g147703 +S'siena' +p147705 +tp147706 +a(g147703 +g147705 +S'to' +p147707 +tp147708 +a(g147705 +g147707 +S'reflect' +p147709 +tp147710 +a(g147707 +g147709 +S'the' +p147711 +tp147712 +a(g147709 +g147711 +S'innovations' +p147713 +tp147714 +a(g147711 +g147713 +S'of' +p147715 +tp147716 +a(g147713 +g147715 +S'the' +p147717 +tp147718 +a(g147715 +g147717 +S'florentine' +p147719 +tp147720 +a(g147717 +g147719 +S'painter' +p147721 +tp147722 +a(g147719 +g147721 +S"domenico's" +p147723 +tp147724 +a(g147721 +g147723 +S'use' +p147725 +tp147726 +a(g147723 +g147725 +S'of' +p147727 +tp147728 +a(g147725 +g147727 +S'light,' +p147729 +tp147730 +a(g147727 +g147729 +S'perspective,' +p147731 +tp147732 +a(g147729 +g147731 +S'and' +p147733 +tp147734 +a(g147731 +g147733 +S'classical' +p147735 +tp147736 +a(g147733 +g147735 +S'motifs' +p147737 +tp147738 +a(g147735 +g147737 +S'suggest' +p147739 +tp147740 +a(g147737 +g147739 +S'that' +p147741 +tp147742 +a(g147739 +g147741 +S'he' +p147743 +tp147744 +a(g147741 +g147743 +S'painted' +p147745 +tp147746 +a(g147743 +g147745 +S'this' +p147747 +tp147748 +a(g147745 +g147747 +S'after' +p147749 +tp147750 +a(g147747 +g147749 +S'seeing' +p147751 +tp147752 +a(g147749 +g147751 +S'the' +p147753 +tp147754 +a(g147751 +g147753 +S'work' +p147755 +tp147756 +a(g147753 +g147755 +S'of' +p147757 +tp147758 +a(g147755 +g147757 +S'masaccio' +p147759 +tp147760 +a(g147757 +g147759 +S'and' +p147761 +tp147762 +a(g147759 +g147761 +S'others' +p147763 +tp147764 +a(g147761 +g147763 +S'in' +p147765 +tp147766 +a(g147763 +g147765 +S'florence.' +p147767 +tp147768 +a(g147765 +g147767 +S'he' +p147769 +tp147770 +a(g147767 +g147769 +S'is' +p147771 +tp147772 +a(g147769 +g147771 +S'unlikely' +p147773 +tp147774 +a(g147771 +g147773 +S'to' +p147775 +tp147776 +a(g147773 +g147775 +S'have' +p147777 +tp147778 +a(g147775 +g147777 +S'studied' +p147779 +tp147780 +a(g147777 +g147779 +S'there,' +p147781 +tp147782 +a(g147779 +g147781 +S'however;' +p147783 +tp147784 +a(g147781 +g147783 +S'other' +p147785 +tp147786 +a(g147783 +g147785 +S'elements' +p147787 +tp147788 +a(g147785 +g147787 +S'of' +p147789 +tp147790 +a(g147787 +g147789 +S'his' +p147791 +tp147792 +a(g147789 +g147791 +S'work' +p147793 +tp147794 +a(g147791 +g147793 +S'are' +p147795 +tp147796 +a(g147793 +g147795 +S'typically' +p147797 +tp147798 +a(g147795 +g147797 +S'sienese,' +p147799 +tp147800 +a(g147797 +g147799 +S'for' +p147801 +tp147802 +a(g147799 +g147801 +S'example,' +p147803 +tp147804 +a(g147801 +g147803 +S'the' +p147805 +tp147806 +a(g147803 +g147805 +S'bright' +p147807 +tp147808 +a(g147805 +g147807 +S'pastel' +p147809 +tp147810 +a(g147807 +g147809 +S'pinks' +p147811 +tp147812 +a(g147809 +g147811 +S'for' +p147813 +tp147814 +a(g147811 +g147813 +S'the' +p147815 +tp147816 +a(g147813 +g147815 +S'niche.' +p147817 +tp147818 +a(g147815 +g147817 +S"domenico's" +p147819 +tp147820 +a(g147817 +g147819 +S'experiments' +p147821 +tp147822 +a(g147819 +g147821 +S'were' +p147823 +tp147824 +a(g147821 +g147823 +S'not' +p147825 +tp147826 +a(g147823 +g147825 +S'taken' +p147827 +tp147828 +a(g147825 +g147827 +S'up' +p147829 +tp147830 +a(g147827 +g147829 +S'by' +p147831 +tp147832 +a(g147829 +g147831 +S'his' +p147833 +tp147834 +a(g147831 +g147833 +S'contemporaries,' +p147835 +tp147836 +a(g147833 +g147835 +S'but' +p147837 +tp147838 +a(g147835 +g147837 +S'they' +p147839 +tp147840 +a(g147837 +g147839 +S'did' +p147841 +tp147842 +a(g147839 +g147841 +S'influence' +p147843 +tp147844 +a(g147841 +g147843 +S'artists' +p147845 +tp147846 +a(g147843 +g147845 +S'in' +p147847 +tp147848 +a(g147845 +g147847 +S'the' +p147849 +tp147850 +a(g147847 +g147849 +S'next' +p147851 +tp147852 +a(g147849 +g147851 +S'generation.' +p147853 +tp147854 +a(g147851 +g147853 +S'anne' +p147855 +tp147856 +a(g147853 +g147855 +S'and' +p147857 +tp147858 +a(g147855 +g147857 +S'joachim' +p147859 +tp147860 +a(g147857 +g147859 +S'were' +p147861 +tp147862 +a(g147859 +g147861 +S'elderly' +p147863 +tp147864 +a(g147861 +g147863 +S'and' +p147865 +tp147866 +a(g147863 +g147865 +S'almost' +p147867 +tp147868 +a(g147865 +g147867 +S'without' +p147869 +tp147870 +a(g147867 +g147869 +S'hope' +p147871 +tp147872 +a(g147869 +g147871 +S'of' +p147873 +tp147874 +a(g147871 +g147873 +S'having' +p147875 +tp147876 +a(g147873 +g147875 +S'children;' +p147877 +tp147878 +a(g147875 +g147877 +S'when' +p147879 +tp147880 +a(g147877 +g147879 +S'an' +p147881 +tp147882 +a(g147879 +g147881 +S'angel' +p147883 +tp147884 +a(g147881 +g147883 +S'announced' +p147885 +tp147886 +a(g147883 +g147885 +S'that' +p147887 +tp147888 +a(g147885 +g147887 +S'anne' +p147889 +tp147890 +a(g147887 +g147889 +S'would' +p147891 +tp147892 +a(g147889 +g147891 +S'conceive,' +p147893 +tp147894 +a(g147891 +g147893 +S'she' +p147895 +tp147896 +a(g147893 +g147895 +S'promised' +p147897 +tp147898 +a(g147895 +g147897 +S'the' +p147899 +tp147900 +a(g147897 +g147899 +S'child' +p147901 +tp147902 +a(g147899 +g147901 +S'to' +p147903 +tp147904 +a(g147901 +g147903 +S"god's" +p147905 +tp147906 +a(g147903 +g147905 +S'service.' +p147907 +tp147908 +a(g147905 +g147907 +S'here,' +p147909 +tp147910 +a(g147907 +g147909 +S'the' +p147911 +tp147912 +a(g147909 +g147911 +S'young' +p147913 +tp147914 +a(g147911 +g147913 +S'virgin,' +p147915 +tp147916 +a(g147913 +g147915 +S'aged' +p147917 +tp147918 +a(g147915 +g147917 +S'four' +p147919 +tp147920 +a(g147917 +g147919 +S'or' +p147921 +tp147922 +a(g147919 +g147921 +S'five,' +p147923 +tp147924 +a(g147921 +g147923 +S'takes' +p147925 +tp147926 +a(g147923 +g147925 +S'leave' +p147927 +tp147928 +a(g147925 +g147927 +S'of' +p147929 +tp147930 +a(g147927 +g147929 +S'her' +p147931 +tp147932 +a(g147929 +g147931 +S'family' +p147933 +tp147934 +a(g147931 +g147933 +S'to' +p147935 +tp147936 +a(g147933 +g147935 +S'enter' +p147937 +tp147938 +a(g147935 +g147937 +S'the' +p147939 +tp147940 +a(g147937 +g147939 +S'temple.' +p147941 +tp147942 +a(g147939 +g147941 +S'devotion' +p147943 +tp147944 +a(g147941 +g147943 +S'to' +p147945 +tp147946 +a(g147943 +g147945 +S'the' +p147947 +tp147948 +a(g147945 +g147947 +S'virgin' +p147949 +tp147950 +a(g147947 +g147949 +S'was' +p147951 +tp147952 +a(g147949 +g147951 +S'especially' +p147953 +tp147954 +a(g147951 +g147953 +S'strong' +p147955 +tp147956 +a(g147953 +g147955 +S'in' +p147957 +tp147958 +a(g147955 +g147957 +S'siena,' +p147959 +tp147960 +a(g147957 +g147959 +S'where' +p147961 +tp147962 +a(g147959 +g147961 +S'she' +p147963 +tp147964 +a(g147961 +g147963 +S'was' +p147965 +tp147966 +a(g147963 +g147965 +S'patron' +p147967 +tp147968 +a(g147965 +g147967 +S'saint.' +p147969 +tp147970 +a(g147967 +g147969 +S'this' +p147971 +tp147972 +a(g147969 +g147971 +S'panel' +p147973 +tp147974 +a(g147971 +g147973 +S'was' +p147975 +tp147976 +a(g147973 +g147975 +S'probably' +p147977 +tp147978 +a(g147975 +g147977 +S'part' +p147979 +tp147980 +a(g147977 +g147979 +S'of' +p147981 +tp147982 +a(g147979 +g147981 +S'a' +p147983 +tp147984 +a(g147981 +g147983 +S'large' +p147985 +tp147986 +a(g147983 +g147985 +S'altarpiece' +p147987 +tp147988 +a(g147985 +g147987 +S'commissioned' +p147989 +tp147990 +a(g147987 +g147989 +S'for' +p147991 +tp147992 +a(g147989 +g147991 +S'the' +p147993 +tp147994 +a(g147991 +g147993 +S"city's" +p147995 +tp147996 +a(g147993 +g147995 +S'cathedral,' +p147997 +tp147998 +a(g147995 +g147997 +S'where' +p147999 +tp148000 +a(g147997 +g147999 +S'it' +p148001 +tp148002 +a(g147999 +g148001 +S'would' +p148003 +tp148004 +a(g148001 +g148003 +S'have' +p148005 +tp148006 +a(g148003 +g148005 +S'been' +p148007 +tp148008 +a(g148005 +g148007 +S'seen' +p148009 +tp148010 +a(g148007 +g148009 +S'near' +p148011 +tp148012 +a(g148009 +g148011 +S'duccio’s' +p148013 +tp148014 +a(g148011 +g148013 +S'own' +p148015 +tp148016 +a(g148013 +g148015 +S'altarpiece' +p148017 +tp148018 +a(g148015 +g148017 +S'dedicated' +p148019 +tp148020 +a(g148017 +g148019 +S'to' +p148021 +tp148022 +a(g148019 +g148021 +S'the' +p148023 +tp148024 +a(g148021 +g148023 +S'virgin' +p148025 +tp148026 +a(g148023 +g148025 +S'in' +p148027 +tp148028 +a(g148025 +g148027 +S'majesty,' +p148029 +tp148030 +a(g148027 +g148029 +S'the' +p148031 +tp148032 +a(g148029 +g148031 +S'paolo,' +p148033 +tp148034 +a(g148031 +g148033 +S'following' +p148035 +tp148036 +a(g148033 +g148035 +S'in' +p148037 +tp148038 +a(g148035 +g148037 +S'the' +p148039 +tp148040 +a(g148037 +g148039 +S'tradition' +p148041 +tp148042 +a(g148039 +g148041 +S'of' +p148043 +tp148044 +a(g148041 +g148043 +S'duccio' +p148045 +tp148046 +a(g148043 +g148045 +S'and' +p148047 +tp148048 +a(g148045 +g148047 +S'simone' +p148049 +tp148050 +a(g148047 +g148049 +S'martini,' +p148051 +tp148052 +a(g148049 +g148051 +S'used' +p148053 +tp148054 +a(g148051 +g148053 +S'a' +p148055 +tp148056 +a(g148053 +g148055 +S'brilliant' +p148057 +tp148058 +a(g148055 +g148057 +S'palette—note' +p148059 +tp148060 +a(g148057 +g148059 +S'the' +p148061 +tp148062 +a(g148059 +g148061 +S'mosaiclike' +p148063 +tp148064 +a(g148061 +g148063 +S'impression' +p148065 +tp148066 +a(g148063 +g148065 +S'of' +p148067 +tp148068 +a(g148065 +g148067 +S'his' +p148069 +tp148070 +a(g148067 +g148069 +S'strong' +p148071 +tp148072 +a(g148069 +g148071 +S'colors,' +p148073 +tp148074 +a(g148071 +g148073 +S'which' +p148075 +tp148076 +a(g148073 +g148075 +S'range' +p148077 +tp148078 +a(g148075 +g148077 +S'from' +p148079 +tp148080 +a(g148077 +g148079 +S'cool' +p148081 +tp148082 +a(g148079 +g148081 +S'blues' +p148083 +tp148084 +a(g148081 +g148083 +S'to' +p148085 +tp148086 +a(g148083 +g148085 +S'salmony' +p148087 +tp148088 +a(g148085 +g148087 +S'pinks' +p148089 +tp148090 +a(g148087 +g148089 +S'and' +p148091 +tp148092 +a(g148089 +g148091 +S'glassy' +p148093 +tp148094 +a(g148091 +g148093 +S'greens.' +p148095 +tp148096 +a(g148093 +g148095 +S'at' +p148097 +tp148098 +a(g148095 +g148097 +S'the' +p148099 +tp148100 +a(g148097 +g148099 +S'same' +p148101 +tp148102 +a(g148099 +g148101 +S'time,' +p148103 +tp148104 +a(g148101 +g148103 +S'paolo' +p148105 +tp148106 +a(g148103 +g148105 +S'has' +p148107 +tp148108 +a(g148105 +g148107 +S'infused' +p148109 +tp148110 +a(g148107 +g148109 +S'his' +p148111 +tp148112 +a(g148109 +g148111 +S'scene' +p148113 +tp148114 +a(g148111 +g148113 +S'with' +p148115 +tp148116 +a(g148113 +g148115 +S'an' +p148117 +tp148118 +a(g148115 +g148117 +S'appealing' +p148119 +tp148120 +a(g148117 +g148119 +S'naturalness—legacy' +p148121 +tp148122 +a(g148119 +g148121 +S'from' +p148123 +tp148124 +a(g148121 +g148123 +S'another' +p148125 +tp148126 +a(g148123 +g148125 +S'sienese' +p148127 +tp148128 +a(g148125 +g148127 +S'master,' +p148129 +tp148130 +a(g148127 +g148129 +S'pietro' +p148131 +tp148132 +a(g148129 +g148131 +S'lorenzetti.' +p148133 +tp148134 +a(g148131 +g148133 +S'paolo' +p148135 +tp148136 +a(g148133 +g148135 +S'concentrates' +p148137 +tp148138 +a(g148135 +g148137 +S'not' +p148139 +tp148140 +a(g148137 +g148139 +S'on' +p148141 +tp148142 +a(g148139 +g148141 +S'the' +p148143 +tp148144 +a(g148141 +g148143 +S'awe-inspiring' +p148145 +tp148146 +a(g148143 +g148145 +S'majesty' +p148147 +tp148148 +a(g148145 +g148147 +S'of' +p148149 +tp148150 +a(g148147 +g148149 +S'the' +p148151 +tp148152 +a(g148149 +g148151 +S'virgin,' +p148153 +tp148154 +a(g148151 +g148153 +S'but' +p148155 +tp148156 +a(g148153 +g148155 +S'on' +p148157 +tp148158 +a(g148155 +g148157 +S'the' +p148159 +tp148160 +a(g148157 +g148159 +S'human' +p148161 +tp148162 +a(g148159 +g148161 +S'aspects' +p148163 +tp148164 +a(g148161 +g148163 +S'of' +p148165 +tp148166 +a(g148163 +g148165 +S'her' +p148167 +tp148168 +a(g148165 +g148167 +S'story.' +p148169 +tp148170 +a(g148167 +g148169 +S'the' +p148171 +tp148172 +a(g148169 +g148171 +S'young' +p148173 +tp148174 +a(g148171 +g148173 +S'virgin' +p148175 +tp148176 +a(g148173 +g148175 +S'pauses' +p148177 +tp148178 +a(g148175 +g148177 +S'on' +p148179 +tp148180 +a(g148177 +g148179 +S'the' +p148181 +tp148182 +a(g148179 +g148181 +S'dais.' +p148183 +tp148184 +a(g148181 +g148183 +S'her' +p148185 +tp148186 +a(g148183 +g148185 +S'expression' +p148187 +tp148188 +a(g148185 +g148187 +S'as' +p148189 +tp148190 +a(g148187 +g148189 +S'she' +p148191 +tp148192 +a(g148189 +g148191 +S'turns' +p148193 +tp148194 +a(g148191 +g148193 +S'a' +p148195 +tp148196 +a(g148193 +g148195 +S'final' +p148197 +tp148198 +a(g148195 +g148197 +S'time' +p148199 +tp148200 +a(g148197 +g148199 +S'toward' +p148201 +tp148202 +a(g148199 +g148201 +S'her' +p148203 +tp148204 +a(g148201 +g148203 +S'parents' +p148205 +tp148206 +a(g148203 +g148205 +S'is' +p148207 +tp148208 +a(g148205 +g148207 +S'tender' +p148209 +tp148210 +a(g148207 +g148209 +S'and' +p148211 +tp148212 +a(g148209 +g148211 +S'rueful—the' +p148213 +tp148214 +a(g148211 +g148213 +S'genuine' +p148215 +tp148216 +a(g148213 +g148215 +S'response' +p148217 +tp148218 +a(g148215 +g148217 +S'of' +p148219 +tp148220 +a(g148217 +g148219 +S'a' +p148221 +tp148222 +a(g148219 +g148221 +S'child.' +p148223 +tp148224 +a(g148221 +g148223 +S'bacchus' +p148225 +tp148226 +a(g148223 +g148225 +S'is' +p148227 +tp148228 +a(g148225 +g148227 +S'typically' +p148229 +tp148230 +a(g148227 +g148229 +S'portrayed' +p148231 +tp148232 +a(g148229 +g148231 +S'as' +p148233 +tp148234 +a(g148231 +g148233 +S'a' +p148235 +tp148236 +a(g148233 +g148235 +S'young' +p148237 +tp148238 +a(g148235 +g148237 +S'man' +p148239 +tp148240 +a(g148237 +g148239 +S'wreathed' +p148241 +tp148242 +a(g148239 +g148241 +S'with' +p148243 +tp148244 +a(g148241 +g148243 +S'vines,' +p148245 +tp148246 +a(g148243 +g148245 +S'his' +p148247 +tp148248 +a(g148245 +g148247 +S'body' +p148249 +tp148250 +a(g148247 +g148249 +S'slouched' +p148251 +tp148252 +a(g148249 +g148251 +S'with' +p148253 +tp148254 +a(g148251 +g148253 +S'the' +p148255 +tp148256 +a(g148253 +g148255 +S'intoxicating' +p148257 +tp148258 +a(g148255 +g148257 +S'effect' +p148259 +tp148260 +a(g148257 +g148259 +S'of' +p148261 +tp148262 +a(g148259 +g148261 +S'drink.' +p148263 +tp148264 +a(g148261 +g148263 +S'this' +p148265 +tp148266 +a(g148263 +g148265 +S'young' +p148267 +tp148268 +a(g148265 +g148267 +S'child,' +p148269 +tp148270 +a(g148267 +g148269 +S'who' +p148271 +tp148272 +a(g148269 +g148271 +S'wears' +p148273 +tp148274 +a(g148271 +g148273 +S'an' +p148275 +tp148276 +a(g148273 +g148275 +S'ivy' +p148277 +tp148278 +a(g148275 +g148277 +S'wreath' +p148279 +tp148280 +a(g148277 +g148279 +S'and' +p148281 +tp148282 +a(g148279 +g148281 +S'holds' +p148283 +tp148284 +a(g148281 +g148283 +S'a' +p148285 +tp148286 +a(g148283 +g148285 +S'wine' +p148287 +tp148288 +a(g148285 +g148287 +S'pitcher,' +p148289 +tp148290 +a(g148287 +g148289 +S'must' +p148291 +tp148292 +a(g148289 +g148291 +S'also' +p148293 +tp148294 +a(g148291 +g148293 +S'represent' +p148295 +tp148296 +a(g148293 +g148295 +S'the' +p148297 +tp148298 +a(g148295 +g148297 +S'god' +p148299 +tp148300 +a(g148297 +g148299 +S'of' +p148301 +tp148302 +a(g148299 +g148301 +S'wine.' +p148303 +tp148304 +a(g148301 +g148303 +S'as' +p148305 +tp148306 +a(g148303 +g148305 +S'a' +p148307 +tp148308 +a(g148305 +g148307 +S'god' +p148309 +tp148310 +a(g148307 +g148309 +S'of' +p148311 +tp148312 +a(g148309 +g148311 +S'agriculture,' +p148313 +tp148314 +a(g148311 +g148313 +S'bacchus' +p148315 +tp148316 +a(g148313 +g148315 +S'was' +p148317 +tp148318 +a(g148315 +g148317 +S'sometimes' +p148319 +tp148320 +a(g148317 +g148319 +S'depicted' +p148321 +tp148322 +a(g148319 +g148321 +S'as' +p148323 +tp148324 +a(g148321 +g148323 +S'aging' +p148325 +tp148326 +a(g148323 +g148325 +S'along' +p148327 +tp148328 +a(g148325 +g148327 +S'with' +p148329 +tp148330 +a(g148327 +g148329 +S'the' +p148331 +tp148332 +a(g148329 +g148331 +S'seasons,' +p148333 +tp148334 +a(g148331 +g148333 +S'in' +p148335 +tp148336 +a(g148333 +g148335 +S'much' +p148337 +tp148338 +a(g148335 +g148337 +S'the' +p148339 +tp148340 +a(g148337 +g148339 +S'same' +p148341 +tp148342 +a(g148339 +g148341 +S'way' +p148343 +tp148344 +a(g148341 +g148343 +S'that' +p148345 +tp148346 +a(g148343 +g148345 +S'the' +p148347 +tp148348 +a(g148345 +g148347 +S'new' +p148349 +tp148350 +a(g148347 +g148349 +S'year' +p148351 +tp148352 +a(g148349 +g148351 +S'comes' +p148353 +tp148354 +a(g148351 +g148353 +S'in' +p148355 +tp148356 +a(g148353 +g148355 +S'as' +p148357 +tp148358 +a(g148355 +g148357 +S'a' +p148359 +tp148360 +a(g148357 +g148359 +S'baby' +p148361 +tp148362 +a(g148359 +g148361 +S'and' +p148363 +tp148364 +a(g148361 +g148363 +S'goes' +p148365 +tp148366 +a(g148363 +g148365 +S'out' +p148367 +tp148368 +a(g148365 +g148367 +S'as' +p148369 +tp148370 +a(g148367 +g148369 +S'an' +p148371 +tp148372 +a(g148369 +g148371 +S'old' +p148373 +tp148374 +a(g148371 +g148373 +S'man.' +p148375 +tp148376 +a(g148373 +g148375 +S'in' +p148377 +tp148378 +a(g148375 +g148377 +S'winter,' +p148379 +tp148380 +a(g148377 +g148379 +S'when' +p148381 +tp148382 +a(g148379 +g148381 +S'crops' +p148383 +tp148384 +a(g148381 +g148383 +S'were' +p148385 +tp148386 +a(g148383 +g148385 +S'just' +p148387 +tp148388 +a(g148385 +g148387 +S'starting' +p148389 +tp148390 +a(g148387 +g148389 +S'to' +p148391 +tp148392 +a(g148389 +g148391 +S'grow,' +p148393 +tp148394 +a(g148391 +g148393 +S'bacchus' +p148395 +tp148396 +a(g148393 +g148395 +S'took' +p148397 +tp148398 +a(g148395 +g148397 +S'the' +p148399 +tp148400 +a(g148397 +g148399 +S'guise' +p148401 +tp148402 +a(g148399 +g148401 +S'of' +p148403 +tp148404 +a(g148401 +g148403 +S'a' +p148405 +tp148406 +a(g148403 +g148405 +S'young' +p148407 +tp148408 +a(g148405 +g148407 +S'boy—as' +p148409 +tp148410 +a(g148407 +g148409 +S'pretty,' +p148411 +tp148412 +a(g148409 +g148411 +S'roman' +p148413 +tp148414 +a(g148411 +g148413 +S'poets' +p148415 +tp148416 +a(g148413 +g148415 +S'said,' +p148417 +tp148418 +a(g148415 +g148417 +S'as' +p148419 +tp148420 +a(g148417 +g148419 +S'a' +p148421 +tp148422 +a(g148419 +g148421 +S'curly-haired' +p148423 +tp148424 +a(g148421 +g148423 +S'girl.' +p148425 +tp148426 +a(g148423 +g148425 +S'bellini' +p148427 +tp148428 +a(g148425 +g148427 +S'used' +p148429 +tp148430 +a(g148427 +g148429 +S'this' +p148431 +tp148432 +a(g148429 +g148431 +S'same' +p148433 +tp148434 +a(g148431 +g148433 +S'figure' +p148435 +tp148436 +a(g148433 +g148435 +S'in' +p148437 +tp148438 +a(g148435 +g148437 +S'the' +p148439 +tp148440 +a(g148437 +g148439 +S'petrus' +p148441 +tp148442 +a(g148439 +g148441 +S'christus' +p148443 +tp148444 +a(g148441 +g148443 +S'was' +p148445 +tp148446 +a(g148443 +g148445 +S'the' +p148447 +tp148448 +a(g148445 +g148447 +S'leading' +p148449 +tp148450 +a(g148447 +g148449 +S'artist' +p148451 +tp148452 +a(g148449 +g148451 +S'in' +p148453 +tp148454 +a(g148451 +g148453 +S'bruges' +p148455 +tp148456 +a(g148453 +g148455 +S'after' +p148457 +tp148458 +a(g148455 +g148457 +S'the' +p148459 +tp148460 +a(g148457 +g148459 +S'death' +p148461 +tp148462 +a(g148459 +g148461 +S'of' +p148463 +tp148464 +a(g148461 +g148463 +S'the' +p148465 +tp148466 +a(g148463 +g148465 +S"woman's" +p148467 +tp148468 +a(g148465 +g148467 +S'costume' +p148469 +tp148470 +a(g148467 +g148469 +S'is' +p148471 +tp148472 +a(g148469 +g148471 +S'that' +p148473 +tp148474 +a(g148471 +g148473 +S'of' +p148475 +tp148476 +a(g148473 +g148475 +S'a' +p148477 +tp148478 +a(g148475 +g148477 +S'wealthy' +p148479 +tp148480 +a(g148477 +g148479 +S'matron' +p148481 +tp148482 +a(g148479 +g148481 +S'from' +p148483 +tp148484 +a(g148481 +g148483 +S'the' +p148485 +tp148486 +a(g148483 +g148485 +S'low' +p148487 +tp148488 +a(g148485 +g148487 +S'countries,' +p148489 +tp148490 +a(g148487 +g148489 +S'but' +p148491 +tp148492 +a(g148489 +g148491 +S'the' +p148493 +tp148494 +a(g148491 +g148493 +S'coat' +p148495 +tp148496 +a(g148493 +g148495 +S'of' +p148497 +tp148498 +a(g148495 +g148497 +S'arms' +p148499 +tp148500 +a(g148497 +g148499 +S'depicted' +p148501 +tp148502 +a(g148499 +g148501 +S'is' +p148503 +tp148504 +a(g148501 +g148503 +S'that' +p148505 +tp148506 +a(g148503 +g148505 +S'of' +p148507 +tp148508 +a(g148505 +g148507 +S'the' +p148509 +tp148510 +a(g148507 +g148509 +S'vivaldi,' +p148511 +tp148512 +a(g148509 +g148511 +S'a' +p148513 +tp148514 +a(g148511 +g148513 +S'prominent' +p148515 +tp148516 +a(g148513 +g148515 +S'genoese' +p148517 +tp148518 +a(g148515 +g148517 +S'family' +p148519 +tp148520 +a(g148517 +g148519 +S'with' +p148521 +tp148522 +a(g148519 +g148521 +S'extensive' +p148523 +tp148524 +a(g148521 +g148523 +S'banking' +p148525 +tp148526 +a(g148523 +g148525 +S'and' +p148527 +tp148528 +a(g148525 +g148527 +S'commercial' +p148529 +tp148530 +a(g148527 +g148529 +S'interests' +p148531 +tp148532 +a(g148529 +g148531 +S'in' +p148533 +tp148534 +a(g148531 +g148533 +S'the' +p148535 +tp148536 +a(g148533 +g148535 +S'north.' +p148537 +tp148538 +a(g148535 +g148537 +S'stuck' +p148539 +tp148540 +a(g148537 +g148539 +S'to' +p148541 +tp148542 +a(g148539 +g148541 +S'the' +p148543 +tp148544 +a(g148541 +g148543 +S'wall' +p148545 +tp148546 +a(g148543 +g148545 +S'with' +p148547 +tp148548 +a(g148545 +g148547 +S'dabs' +p148549 +tp148550 +a(g148547 +g148549 +S'of' +p148551 +tp148552 +a(g148549 +g148551 +S'red' +p148553 +tp148554 +a(g148551 +g148553 +S'sealing' +p148555 +tp148556 +a(g148553 +g148555 +S'wax' +p148557 +tp148558 +a(g148555 +g148557 +S'is' +p148559 +tp148560 +a(g148557 +g148559 +S'a' +p148561 +tp148562 +a(g148559 +g148561 +S'woodcut.' +p148563 +tp148564 +a(g148561 +g148563 +S'it' +p148565 +tp148566 +a(g148563 +g148565 +S'depicts' +p148567 +tp148568 +a(g148565 +g148567 +S'saint' +p148569 +tp148570 +a(g148567 +g148569 +S'elizabeth' +p148571 +tp148572 +a(g148569 +g148571 +S'of' +p148573 +tp148574 +a(g148571 +g148573 +S'thuringia,' +p148575 +tp148576 +a(g148573 +g148575 +S'so' +p148577 +tp148578 +a(g148575 +g148577 +S'in' +p148579 +tp148580 +a(g148577 +g148579 +S'all' +p148581 +tp148582 +a(g148579 +g148581 +S'likelihood' +p148583 +tp148584 +a(g148581 +g148583 +S'the' +p148585 +tp148586 +a(g148583 +g148585 +S"woman's" +p148587 +tp148588 +a(g148585 +g148587 +S'name' +p148589 +tp148590 +a(g148587 +g148589 +S'was' +p148591 +tp148592 +a(g148589 +g148591 +S'also' +p148593 +tp148594 +a(g148591 +g148593 +S'elizabeth' +p148595 +tp148596 +a(g148593 +g148595 +S'or' +p148597 +tp148598 +a(g148595 +g148597 +S'some' +p148599 +tp148600 +a(g148597 +g148599 +S'variant' +p148601 +tp148602 +a(g148599 +g148601 +S'of' +p148603 +tp148604 +a(g148601 +g148603 +S'it.' +p148605 +tp148606 +a(g148603 +g148605 +S'undoubtedly,' +p148607 +tp148608 +a(g148605 +g148607 +S'she' +p148609 +tp148610 +a(g148607 +g148609 +S'and' +p148611 +tp148612 +a(g148609 +g148611 +S'her' +p148613 +tp148614 +a(g148611 +g148613 +S'husband,' +p148615 +tp148616 +a(g148613 +g148615 +S'known' +p148617 +tp148618 +a(g148615 +g148617 +S'to' +p148619 +tp148620 +a(g148617 +g148619 +S'be' +p148621 +tp148622 +a(g148619 +g148621 +S'a' +p148623 +tp148624 +a(g148621 +g148623 +S'member' +p148625 +tp148626 +a(g148623 +g148625 +S'of' +p148627 +tp148628 +a(g148625 +g148627 +S'the' +p148629 +tp148630 +a(g148627 +g148629 +S'lomellini' +p148631 +tp148632 +a(g148629 +g148631 +S'family' +p148633 +tp148634 +a(g148631 +g148633 +S'by' +p148635 +tp148636 +a(g148633 +g148635 +S'the' +p148637 +tp148638 +a(g148635 +g148637 +S'coat' +p148639 +tp148640 +a(g148637 +g148639 +S'of' +p148641 +tp148642 +a(g148639 +g148641 +S'arms' +p148643 +tp148644 +a(g148641 +g148643 +S'on' +p148645 +tp148646 +a(g148643 +g148645 +S'his' +p148647 +tp148648 +a(g148645 +g148647 +S'portrait,' +p148649 +tp148650 +a(g148647 +g148649 +S'were' +p148651 +tp148652 +a(g148649 +g148651 +S'part' +p148653 +tp148654 +a(g148651 +g148653 +S'of' +p148655 +tp148656 +a(g148653 +g148655 +S'the' +p148657 +tp148658 +a(g148655 +g148657 +S'large' +p148659 +tp148660 +a(g148657 +g148659 +S'italian' +p148661 +tp148662 +a(g148659 +g148661 +S'business' +p148663 +tp148664 +a(g148661 +g148663 +S'community' +p148665 +tp148666 +a(g148663 +g148665 +S'in' +p148667 +tp148668 +a(g148665 +g148667 +S'bruges.' +p148669 +tp148670 +a(g148667 +g148669 +S'these' +p148671 +tp148672 +a(g148669 +g148671 +S'families,' +p148673 +tp148674 +a(g148671 +g148673 +S'because' +p148675 +tp148676 +a(g148673 +g148675 +S'they' +p148677 +tp148678 +a(g148675 +g148677 +S'carried' +p148679 +tp148680 +a(g148677 +g148679 +S'small' +p148681 +tp148682 +a(g148679 +g148681 +S'panels' +p148683 +tp148684 +a(g148681 +g148683 +S'like' +p148685 +tp148686 +a(g148683 +g148685 +S'this' +p148687 +tp148688 +a(g148685 +g148687 +S'one' +p148689 +tp148690 +a(g148687 +g148689 +S'home' +p148691 +tp148692 +a(g148689 +g148691 +S'with' +p148693 +tp148694 +a(g148691 +g148693 +S'them,' +p148695 +tp148696 +a(g148693 +g148695 +S'played' +p148697 +tp148698 +a(g148695 +g148697 +S'an' +p148699 +tp148700 +a(g148697 +g148699 +S'important' +p148701 +tp148702 +a(g148699 +g148701 +S'role' +p148703 +tp148704 +a(g148701 +g148703 +S'in' +p148705 +tp148706 +a(g148703 +g148705 +S'spreading' +p148707 +tp148708 +a(g148705 +g148707 +S'the' +p148709 +tp148710 +a(g148707 +g148709 +S'oil' +p148711 +tp148712 +a(g148709 +g148711 +S'technique' +p148713 +tp148714 +a(g148711 +g148713 +S'and' +p148715 +tp148716 +a(g148713 +g148715 +S'the' +p148717 +tp148718 +a(g148715 +g148717 +S'precise' +p148719 +tp148720 +a(g148717 +g148719 +S'style' +p148721 +tp148722 +a(g148719 +g148721 +S'of' +p148723 +tp148724 +a(g148721 +g148723 +S'northern' +p148725 +tp148726 +a(g148723 +g148725 +S'paintings' +p148727 +tp148728 +a(g148725 +g148727 +S'to' +p148729 +tp148730 +a(g148727 +g148729 +S'italy.' +p148731 +tp148732 +a(g148729 +g148731 +S'as' +p148733 +tp148734 +a(g148731 +g148733 +S'mother' +p148735 +tp148736 +a(g148733 +g148735 +S'of' +p148737 +tp148738 +a(g148735 +g148737 +S'the' +p148739 +tp148740 +a(g148737 +g148739 +S'emperor' +p148741 +tp148742 +a(g148739 +g148741 +S'constantine,' +p148743 +tp148744 +a(g148741 +g148743 +S'saint' +p148745 +tp148746 +a(g148743 +g148745 +S'helena' +p148747 +tp148748 +a(g148745 +g148747 +S'journeyed' +p148749 +tp148750 +a(g148747 +g148749 +S'to' +p148751 +tp148752 +a(g148749 +g148751 +S'the' +p148753 +tp148754 +a(g148751 +g148753 +S'holy' +p148755 +tp148756 +a(g148753 +g148755 +S'land,' +p148757 +tp148758 +a(g148755 +g148757 +S'where' +p148759 +tp148760 +a(g148757 +g148759 +S'she' +p148761 +tp148762 +a(g148759 +g148761 +S'found' +p148763 +tp148764 +a(g148761 +g148763 +S'the' +p148765 +tp148766 +a(g148763 +g148765 +S'true' +p148767 +tp148768 +a(g148765 +g148767 +S'cross,' +p148769 +tp148770 +a(g148767 +g148769 +S'the' +p148771 +tp148772 +a(g148769 +g148771 +S'cross' +p148773 +tp148774 +a(g148771 +g148773 +S'of' +p148775 +tp148776 +a(g148773 +g148775 +S'the' +p148777 +tp148778 +a(g148775 +g148777 +S'crucifixion,' +p148779 +tp148780 +a(g148777 +g148779 +S'which' +p148781 +tp148782 +a(g148779 +g148781 +S'she' +p148783 +tp148784 +a(g148781 +g148783 +S'holds' +p148785 +tp148786 +a(g148783 +g148785 +S'here.' +p148787 +tp148788 +a(g148785 +g148787 +S'scenes' +p148789 +tp148790 +a(g148787 +g148789 +S'of' +p148791 +tp148792 +a(g148789 +g148791 +S'saints' +p148793 +tp148794 +a(g148791 +g148793 +S'in' +p148795 +tp148796 +a(g148793 +g148795 +S'landscape' +p148797 +tp148798 +a(g148795 +g148797 +S'settings' +p148799 +tp148800 +a(g148797 +g148799 +S'like' +p148801 +tp148802 +a(g148799 +g148801 +S'this' +p148803 +tp148804 +a(g148801 +g148803 +S'were' +p148805 +tp148806 +a(g148803 +g148805 +S'something' +p148807 +tp148808 +a(g148805 +g148807 +S'of' +p148809 +tp148810 +a(g148807 +g148809 +S'a' +p148811 +tp148812 +a(g148809 +g148811 +S'specialty' +p148813 +tp148814 +a(g148811 +g148813 +S'of' +p148815 +tp148816 +a(g148813 +g148815 +S'the' +p148817 +tp148818 +a(g148815 +g148817 +S'artist.' +p148819 +tp148820 +a(g148817 +g148819 +S'cima' +p148821 +tp148822 +a(g148819 +g148821 +S'had' +p148823 +tp148824 +a(g148821 +g148823 +S'moved' +p148825 +tp148826 +a(g148823 +g148825 +S'to' +p148827 +tp148828 +a(g148825 +g148827 +S'venice' +p148829 +tp148830 +a(g148827 +g148829 +S'by' +p148831 +tp148832 +a(g148829 +g148831 +S'the' +p148833 +tp148834 +a(g148831 +g148833 +S'mid-1480s' +p148835 +tp148836 +a(g148833 +g148835 +S'but' +p148837 +tp148838 +a(g148835 +g148837 +S'always' +p148839 +tp148840 +a(g148837 +g148839 +S'remained' +p148841 +tp148842 +a(g148839 +g148841 +S'in' +p148843 +tp148844 +a(g148841 +g148843 +S'close' +p148845 +tp148846 +a(g148843 +g148845 +S'contact' +p148847 +tp148848 +a(g148845 +g148847 +S'with' +p148849 +tp148850 +a(g148847 +g148849 +S'his' +p148851 +tp148852 +a(g148849 +g148851 +S'hometown' +p148853 +tp148854 +a(g148851 +g148853 +S'of' +p148855 +tp148856 +a(g148853 +g148855 +S'conegliano' +p148857 +tp148858 +a(g148855 +g148857 +S'on' +p148859 +tp148860 +a(g148857 +g148859 +S'the' +p148861 +tp148862 +a(g148859 +g148861 +S'mainland.' +p148863 +tp148864 +a(g148861 +g148863 +S'the' +p148865 +tp148866 +a(g148863 +g148865 +S"town's" +p148867 +tp148868 +a(g148865 +g148867 +S'castello' +p148869 +tp148870 +a(g148867 +g148869 +S'and' +p148871 +tp148872 +a(g148869 +g148871 +S'other' +p148873 +tp148874 +a(g148871 +g148873 +S'landmarks' +p148875 +tp148876 +a(g148873 +g148875 +S'appear' +p148877 +tp148878 +a(g148875 +g148877 +S'in' +p148879 +tp148880 +a(g148877 +g148879 +S'the' +p148881 +tp148882 +a(g148879 +g148881 +S'background' +p148883 +tp148884 +a(g148881 +g148883 +S'of' +p148885 +tp148886 +a(g148883 +g148885 +S'this' +p148887 +tp148888 +a(g148885 +g148887 +S'small' +p148889 +tp148890 +a(g148887 +g148889 +S'devotional' +p148891 +tp148892 +a(g148889 +g148891 +S'panel.' +p148893 +tp148894 +a(g148891 +g148893 +S'almost' +p148895 +tp148896 +a(g148893 +g148895 +S'all' +p148897 +tp148898 +a(g148895 +g148897 +S'of' +p148899 +tp148900 +a(g148897 +g148899 +S"cima's" +p148901 +tp148902 +a(g148899 +g148901 +S'paintings' +p148903 +tp148904 +a(g148901 +g148903 +S'include' +p148905 +tp148906 +a(g148903 +g148905 +S'idyllic' +p148907 +tp148908 +a(g148905 +g148907 +S'landscapes' +p148909 +tp148910 +a(g148907 +g148909 +S'that' +p148911 +tp148912 +a(g148909 +g148911 +S'recall' +p148913 +tp148914 +a(g148911 +g148913 +S'the' +p148915 +tp148916 +a(g148913 +g148915 +S'mountainous' +p148917 +tp148918 +a(g148915 +g148917 +S'region' +p148919 +tp148920 +a(g148917 +g148919 +S'of' +p148921 +tp148922 +a(g148919 +g148921 +S'his' +p148923 +tp148924 +a(g148921 +g148923 +S'home.' +p148925 +tp148926 +a(g148923 +g148925 +S'cima' +p148927 +tp148928 +a(g148925 +g148927 +S'formed' +p148929 +tp148930 +a(g148927 +g148929 +S'his' +p148931 +tp148932 +a(g148929 +g148931 +S'artistic' +p148933 +tp148934 +a(g148931 +g148933 +S'style' +p148935 +tp148936 +a(g148933 +g148935 +S'early' +p148937 +tp148938 +a(g148935 +g148937 +S'in' +p148939 +tp148940 +a(g148937 +g148939 +S'life' +p148941 +tp148942 +a(g148939 +g148941 +S'and' +p148943 +tp148944 +a(g148941 +g148943 +S'never' +p148945 +tp148946 +a(g148943 +g148945 +S'deviated' +p148947 +tp148948 +a(g148945 +g148947 +S'from' +p148949 +tp148950 +a(g148947 +g148949 +S'it.' +p148951 +tp148952 +a(g148949 +g148951 +S'even' +p148953 +tp148954 +a(g148951 +g148953 +S'though' +p148955 +tp148956 +a(g148953 +g148955 +S'his' +p148957 +tp148958 +a(g148955 +g148957 +S'clear' +p148959 +tp148960 +a(g148957 +g148959 +S'colors' +p148961 +tp148962 +a(g148959 +g148961 +S'and' +p148963 +tp148964 +a(g148961 +g148963 +S'meticulous' +p148965 +tp148966 +a(g148963 +g148965 +S'detail' +p148967 +tp148968 +a(g148965 +g148967 +S'became' +p148969 +tp148970 +a(g148967 +g148969 +S'a' +p148971 +tp148972 +a(g148969 +g148971 +S'bit' +p148973 +tp148974 +a(g148971 +g148973 +S'old-fashioned,' +p148975 +tp148976 +a(g148973 +g148975 +S'his' +p148977 +tp148978 +a(g148975 +g148977 +S'work' +p148979 +tp148980 +a(g148977 +g148979 +S'remained' +p148981 +tp148982 +a(g148979 +g148981 +S'popular' +p148983 +tp148984 +a(g148981 +g148983 +S'with' +p148985 +tp148986 +a(g148983 +g148985 +S'venetian' +p148987 +tp148988 +a(g148985 +g148987 +S'patrons,' +p148989 +tp148990 +a(g148987 +g148989 +S'especially' +p148991 +tp148992 +a(g148989 +g148991 +S'the' +p148993 +tp148994 +a(g148991 +g148993 +S'more' +p148995 +tp148996 +a(g148993 +g148995 +S'conservative' +p148997 +tp148998 +a(g148995 +g148997 +S'ones.' +p148999 +tp149000 +a(g148997 +g148999 +S'in' +p149001 +tp149002 +a(g148999 +g149001 +S'the' +p149003 +tp149004 +a(g149001 +g149003 +S'1490s,' +p149005 +tp149006 +a(g149003 +g149005 +S'when' +p149007 +tp149008 +a(g149005 +g149007 +S'françois' +p149009 +tp149010 +a(g149007 +g149009 +S'clouet,' +p149011 +tp149012 +a(g149009 +g149011 +S'the' +p149013 +tp149014 +a(g149011 +g149013 +S'son' +p149015 +tp149016 +a(g149013 +g149015 +S'of' +p149017 +tp149018 +a(g149015 +g149017 +S'a' +p149019 +tp149020 +a(g149017 +g149019 +S'netherlandish' +p149021 +tp149022 +a(g149019 +g149021 +S'artist,' +p149023 +tp149024 +a(g149021 +g149023 +S'became' +p149025 +tp149026 +a(g149023 +g149025 +S'court' +p149027 +tp149028 +a(g149025 +g149027 +S'painter' +p149029 +tp149030 +a(g149027 +g149029 +S'to' +p149031 +tp149032 +a(g149029 +g149031 +S'the' +p149033 +tp149034 +a(g149031 +g149033 +S'french' +p149035 +tp149036 +a(g149033 +g149035 +S'kings' +p149037 +tp149038 +a(g149035 +g149037 +S'francis' +p149039 +tp149040 +a(g149037 +g149039 +S'i,' +p149041 +tp149042 +a(g149039 +g149041 +S'henry' +p149043 +tp149044 +a(g149041 +g149043 +S'ii' +p149045 +tp149046 +a(g149043 +g149045 +S'and' +p149047 +tp149048 +a(g149045 +g149047 +S'charles' +p149049 +tp149050 +a(g149047 +g149049 +S'ix.' +p149051 +tp149052 +a(g149049 +g149051 +S'in' +p149053 +tp149054 +a(g149051 +g149053 +S'this' +p149055 +tp149056 +a(g149053 +g149055 +S'renaissance' +p149057 +tp149058 +a(g149055 +g149057 +S'portrait' +p149059 +tp149060 +a(g149057 +g149059 +S'clouet' +p149061 +tp149062 +a(g149059 +g149061 +S'has' +p149063 +tp149064 +a(g149061 +g149063 +S'depicted' +p149065 +tp149066 +a(g149063 +g149065 +S'a' +p149067 +tp149068 +a(g149065 +g149067 +S'female' +p149069 +tp149070 +a(g149067 +g149069 +S'nude,' +p149071 +tp149072 +a(g149069 +g149071 +S'whose' +p149073 +tp149074 +a(g149071 +g149073 +S'identity' +p149075 +tp149076 +a(g149073 +g149075 +S'is' +p149077 +tp149078 +a(g149075 +g149077 +S'unknown,' +p149079 +tp149080 +a(g149077 +g149079 +S'at' +p149081 +tp149082 +a(g149079 +g149081 +S'her' +p149083 +tp149084 +a(g149081 +g149083 +S'bath.' +p149085 +tp149086 +a(g149083 +g149085 +S'the' +p149087 +tp149088 +a(g149085 +g149087 +S'bather' +p149089 +tp149090 +a(g149087 +g149089 +S'is' +p149091 +tp149092 +a(g149089 +g149091 +S'seated' +p149093 +tp149094 +a(g149091 +g149093 +S'in' +p149095 +tp149096 +a(g149093 +g149095 +S'her' +p149097 +tp149098 +a(g149095 +g149097 +S'tub,' +p149099 +tp149100 +a(g149097 +g149099 +S'which' +p149101 +tp149102 +a(g149099 +g149101 +S'is' +p149103 +tp149104 +a(g149101 +g149103 +S'lined' +p149105 +tp149106 +a(g149103 +g149105 +S'with' +p149107 +tp149108 +a(g149105 +g149107 +S'a' +p149109 +tp149110 +a(g149107 +g149109 +S'white' +p149111 +tp149112 +a(g149109 +g149111 +S'cloth' +p149113 +tp149114 +a(g149111 +g149113 +S'and' +p149115 +tp149116 +a(g149113 +g149115 +S'hung' +p149117 +tp149118 +a(g149115 +g149117 +S'on' +p149119 +tp149120 +a(g149117 +g149119 +S'both' +p149121 +tp149122 +a(g149119 +g149121 +S'sides' +p149123 +tp149124 +a(g149121 +g149123 +S'with' +p149125 +tp149126 +a(g149123 +g149125 +S'regal' +p149127 +tp149128 +a(g149125 +g149127 +S'crimson' +p149129 +tp149130 +a(g149127 +g149129 +S'curtains' +p149131 +tp149132 +a(g149129 +g149131 +S'to' +p149133 +tp149134 +a(g149131 +g149133 +S'ward' +p149135 +tp149136 +a(g149133 +g149135 +S'off' +p149137 +tp149138 +a(g149135 +g149137 +S'the' +p149139 +tp149140 +a(g149137 +g149139 +S'cold.' +p149141 +tp149142 +a(g149139 +g149141 +S'her' +p149143 +tp149144 +a(g149141 +g149143 +S'left' +p149145 +tp149146 +a(g149143 +g149145 +S'hand' +p149147 +tp149148 +a(g149145 +g149147 +S'draws' +p149149 +tp149150 +a(g149147 +g149149 +S'back' +p149151 +tp149152 +a(g149149 +g149151 +S'the' +p149153 +tp149154 +a(g149151 +g149153 +S'bath' +p149155 +tp149156 +a(g149153 +g149155 +S'sheet' +p149157 +tp149158 +a(g149155 +g149157 +S'revealing' +p149159 +tp149160 +a(g149157 +g149159 +S'the' +p149161 +tp149162 +a(g149159 +g149161 +S"artist's" +p149163 +tp149164 +a(g149161 +g149163 +S'name' +p149165 +tp149166 +a(g149163 +g149165 +S'inscribed' +p149167 +tp149168 +a(g149165 +g149167 +S'below,' +p149169 +tp149170 +a(g149167 +g149169 +S'while' +p149171 +tp149172 +a(g149169 +g149171 +S'her' +p149173 +tp149174 +a(g149171 +g149173 +S'right' +p149175 +tp149176 +a(g149173 +g149175 +S'hand' +p149177 +tp149178 +a(g149175 +g149177 +S'rests' +p149179 +tp149180 +a(g149177 +g149179 +S'on' +p149181 +tp149182 +a(g149179 +g149181 +S'a' +p149183 +tp149184 +a(g149181 +g149183 +S'covered' +p149185 +tp149186 +a(g149183 +g149185 +S'board' +p149187 +tp149188 +a(g149185 +g149187 +S'that' +p149189 +tp149190 +a(g149187 +g149189 +S'displays' +p149191 +tp149192 +a(g149189 +g149191 +S'a' +p149193 +tp149194 +a(g149191 +g149193 +S'sumptuously' +p149195 +tp149196 +a(g149193 +g149195 +S'rendered' +p149197 +tp149198 +a(g149195 +g149197 +S'still' +p149199 +tp149200 +a(g149197 +g149199 +S'life.' +p149201 +tp149202 +a(g149199 +g149201 +S'slightly' +p149203 +tp149204 +a(g149201 +g149203 +S'behind' +p149205 +tp149206 +a(g149203 +g149205 +S'the' +p149207 +tp149208 +a(g149205 +g149207 +S'bather' +p149209 +tp149210 +a(g149207 +g149209 +S'a' +p149211 +tp149212 +a(g149209 +g149211 +S'young' +p149213 +tp149214 +a(g149211 +g149213 +S'boy' +p149215 +tp149216 +a(g149213 +g149215 +S'reaches' +p149217 +tp149218 +a(g149215 +g149217 +S'for' +p149219 +tp149220 +a(g149217 +g149219 +S'some' +p149221 +tp149222 +a(g149219 +g149221 +S'grapes' +p149223 +tp149224 +a(g149221 +g149223 +S'as' +p149225 +tp149226 +a(g149223 +g149225 +S'a' +p149227 +tp149228 +a(g149225 +g149227 +S'smiling' +p149229 +tp149230 +a(g149227 +g149229 +S'wet' +p149231 +tp149232 +a(g149229 +g149231 +S'nurse' +p149233 +tp149234 +a(g149231 +g149233 +S'suckles' +p149235 +tp149236 +a(g149233 +g149235 +S'a' +p149237 +tp149238 +a(g149235 +g149237 +S'baby.' +p149239 +tp149240 +a(g149237 +g149239 +S'in' +p149241 +tp149242 +a(g149239 +g149241 +S'the' +p149243 +tp149244 +a(g149241 +g149243 +S'background,' +p149245 +tp149246 +a(g149243 +g149245 +S'a' +p149247 +tp149248 +a(g149245 +g149247 +S'maid' +p149249 +tp149250 +a(g149247 +g149249 +S'is' +p149251 +tp149252 +a(g149249 +g149251 +S'seen' +p149253 +tp149254 +a(g149251 +g149253 +S'holding' +p149255 +tp149256 +a(g149253 +g149255 +S'a' +p149257 +tp149258 +a(g149255 +g149257 +S'metal' +p149259 +tp149260 +a(g149257 +g149259 +S'pitcher' +p149261 +tp149262 +a(g149259 +g149261 +S'of' +p149263 +tp149264 +a(g149261 +g149263 +S'bath' +p149265 +tp149266 +a(g149263 +g149265 +S'water' +p149267 +tp149268 +a(g149265 +g149267 +S'as' +p149269 +tp149270 +a(g149267 +g149269 +S'more' +p149271 +tp149272 +a(g149269 +g149271 +S'water' +p149273 +tp149274 +a(g149271 +g149273 +S'is' +p149275 +tp149276 +a(g149273 +g149275 +S'heated' +p149277 +tp149278 +a(g149275 +g149277 +S'in' +p149279 +tp149280 +a(g149277 +g149279 +S'the' +p149281 +tp149282 +a(g149279 +g149281 +S'fireplace.' +p149283 +tp149284 +a(g149281 +g149283 +S'the' +p149285 +tp149286 +a(g149283 +g149285 +S'allusion' +p149287 +tp149288 +a(g149285 +g149287 +S'is' +p149289 +tp149290 +a(g149287 +g149289 +S'to' +p149291 +tp149292 +a(g149289 +g149291 +S'a' +p149293 +tp149294 +a(g149291 +g149293 +S'happy,' +p149295 +tp149296 +a(g149293 +g149295 +S'healthy' +p149297 +tp149298 +a(g149295 +g149297 +S'home.' +p149299 +tp149300 +a(g149297 +g149299 +S'the' +p149301 +tp149302 +a(g149299 +g149301 +S'masklike' +p149303 +tp149304 +a(g149301 +g149303 +S'symmetry' +p149305 +tp149306 +a(g149303 +g149305 +S'of' +p149307 +tp149308 +a(g149305 +g149307 +S'the' +p149309 +tp149310 +a(g149307 +g149309 +S"bather's" +p149311 +tp149312 +a(g149309 +g149311 +S'face' +p149313 +tp149314 +a(g149311 +g149313 +S'makes' +p149315 +tp149316 +a(g149313 +g149315 +S'exact' +p149317 +tp149318 +a(g149315 +g149317 +S'identification' +p149319 +tp149320 +a(g149317 +g149319 +S'difficult;' +p149321 +tp149322 +a(g149319 +g149321 +S'scholars' +p149323 +tp149324 +a(g149321 +g149323 +S'have' +p149325 +tp149326 +a(g149323 +g149325 +S'suggested' +p149327 +tp149328 +a(g149325 +g149327 +S'that' +p149329 +tp149330 +a(g149327 +g149329 +S'her' +p149331 +tp149332 +a(g149329 +g149331 +S'aristocratic' +p149333 +tp149334 +a(g149331 +g149333 +S'features' +p149335 +tp149336 +a(g149333 +g149335 +S'indicate' +p149337 +tp149338 +a(g149335 +g149337 +S'that' +p149339 +tp149340 +a(g149337 +g149339 +S'she' +p149341 +tp149342 +a(g149339 +g149341 +S'is' +p149343 +tp149344 +a(g149341 +g149343 +S'one' +p149345 +tp149346 +a(g149343 +g149345 +S'of' +p149347 +tp149348 +a(g149345 +g149347 +S'several' +p149349 +tp149350 +a(g149347 +g149349 +S'royal' +p149351 +tp149352 +a(g149349 +g149351 +S'mistresses,' +p149353 +tp149354 +a(g149351 +g149353 +S'most' +p149355 +tp149356 +a(g149353 +g149355 +S'notable' +p149357 +tp149358 +a(g149355 +g149357 +S'among' +p149359 +tp149360 +a(g149357 +g149359 +S'them' +p149361 +tp149362 +a(g149359 +g149361 +S'diane' +p149363 +tp149364 +a(g149361 +g149363 +S'de' +p149365 +tp149366 +a(g149363 +g149365 +S'poitiers,' +p149367 +tp149368 +a(g149365 +g149367 +S'the' +p149369 +tp149370 +a(g149367 +g149369 +S'mistress' +p149371 +tp149372 +a(g149369 +g149371 +S'of' +p149373 +tp149374 +a(g149371 +g149373 +S'henry' +p149375 +tp149376 +a(g149373 +g149375 +S'ii.' +p149377 +tp149378 +a(g149375 +g149377 +S'it' +p149379 +tp149380 +a(g149377 +g149379 +S'is' +p149381 +tp149382 +a(g149379 +g149381 +S'possible' +p149383 +tp149384 +a(g149381 +g149383 +S'that' +p149385 +tp149386 +a(g149383 +g149385 +S'the' +p149387 +tp149388 +a(g149385 +g149387 +S'nude,' +p149389 +tp149390 +a(g149387 +g149389 +S'a' +p149391 +tp149392 +a(g149389 +g149391 +S'venus' +p149393 +tp149394 +a(g149391 +g149393 +S'type,' +p149395 +tp149396 +a(g149393 +g149395 +S'represents' +p149397 +tp149398 +a(g149395 +g149397 +S'ideal' +p149399 +tp149400 +a(g149397 +g149399 +S'beauty' +p149401 +tp149402 +a(g149399 +g149401 +S'rather' +p149403 +tp149404 +a(g149401 +g149403 +S'than' +p149405 +tp149406 +a(g149403 +g149405 +S'a' +p149407 +tp149408 +a(g149405 +g149407 +S'specific' +p149409 +tp149410 +a(g149407 +g149409 +S'individual.' +p149411 +tp149412 +a(g149409 +g149411 +S'the' +p149413 +tp149414 +a(g149411 +g149413 +S'contrast' +p149415 +tp149416 +a(g149413 +g149415 +S'of' +p149417 +tp149418 +a(g149415 +g149417 +S'the' +p149419 +tp149420 +a(g149417 +g149419 +S'smoothly' +p149421 +tp149422 +a(g149419 +g149421 +S'rendered' +p149423 +tp149424 +a(g149421 +g149423 +S'nude' +p149425 +tp149426 +a(g149423 +g149425 +S'figure' +p149427 +tp149428 +a(g149425 +g149427 +S'to' +p149429 +tp149430 +a(g149427 +g149429 +S'the' +p149431 +tp149432 +a(g149429 +g149431 +S'intricate' +p149433 +tp149434 +a(g149431 +g149433 +S'surface' +p149435 +tp149436 +a(g149433 +g149435 +S'details' +p149437 +tp149438 +a(g149435 +g149437 +S'of' +p149439 +tp149440 +a(g149437 +g149439 +S'the' +p149441 +tp149442 +a(g149439 +g149441 +S'fruit,' +p149443 +tp149444 +a(g149441 +g149443 +S'draperies,' +p149445 +tp149446 +a(g149443 +g149445 +S'and' +p149447 +tp149448 +a(g149445 +g149447 +S'jewelry,' +p149449 +tp149450 +a(g149447 +g149449 +S'presents' +p149451 +tp149452 +a(g149449 +g149451 +S'a' +p149453 +tp149454 +a(g149451 +g149453 +S'union' +p149455 +tp149456 +a(g149453 +g149455 +S'of' +p149457 +tp149458 +a(g149455 +g149457 +S'flemish' +p149459 +tp149460 +a(g149457 +g149459 +S'and' +p149461 +tp149462 +a(g149459 +g149461 +S'italian' +p149463 +tp149464 +a(g149461 +g149463 +S'motifs' +p149465 +tp149466 +a(g149463 +g149465 +S'that' +p149467 +tp149468 +a(g149465 +g149467 +S'characterized' +p149469 +tp149470 +a(g149467 +g149469 +S'french' +p149471 +tp149472 +a(g149469 +g149471 +S'courtly' +p149473 +tp149474 +a(g149471 +g149473 +S'art' +p149475 +tp149476 +a(g149473 +g149475 +S'of' +p149477 +tp149478 +a(g149475 +g149477 +S'the' +p149479 +tp149480 +a(g149477 +g149479 +S'sixteenth' +p149481 +tp149482 +a(g149479 +g149481 +S'century.' +p149483 +tp149484 +a(g149481 +g149483 +S'when' +p149485 +tp149486 +a(g149483 +g149485 +S'david' +p149487 +tp149488 +a(g149485 +g149487 +S'married' +p149489 +tp149490 +a(g149487 +g149489 +S'marguerite-charlotte' +p149491 +tp149492 +a(g149489 +g149491 +S'pécoul,' +p149493 +tp149494 +a(g149491 +g149493 +S'the' +p149495 +tp149496 +a(g149493 +g149495 +S'young' +p149497 +tp149498 +a(g149495 +g149497 +S'daughter' +p149499 +tp149500 +a(g149497 +g149499 +S'of' +p149501 +tp149502 +a(g149499 +g149501 +S'a' +p149503 +tp149504 +a(g149501 +g149503 +S'prosperous' +p149505 +tp149506 +a(g149503 +g149505 +S'builder' +p149507 +tp149508 +a(g149505 +g149507 +S'with' +p149509 +tp149510 +a(g149507 +g149509 +S'connections' +p149511 +tp149512 +a(g149509 +g149511 +S'at' +p149513 +tp149514 +a(g149511 +g149513 +S'louis' +p149515 +tp149516 +a(g149513 +g149515 +S"xvi's" +p149517 +tp149518 +a(g149515 +g149517 +S'court,' +p149519 +tp149520 +a(g149517 +g149519 +S'he' +p149521 +tp149522 +a(g149519 +g149521 +S'was' +p149523 +tp149524 +a(g149521 +g149523 +S'literally' +p149525 +tp149526 +a(g149523 +g149525 +S'twice' +p149527 +tp149528 +a(g149525 +g149527 +S'her' +p149529 +tp149530 +a(g149527 +g149529 +S'age.' +p149531 +tp149532 +a(g149529 +g149531 +S'their' +p149533 +tp149534 +a(g149531 +g149533 +S'marriage' +p149535 +tp149536 +a(g149533 +g149535 +S'was' +p149537 +tp149538 +a(g149535 +g149537 +S'at' +p149539 +tp149540 +a(g149537 +g149539 +S'times' +p149541 +tp149542 +a(g149539 +g149541 +S'stormy;' +p149543 +tp149544 +a(g149541 +g149543 +S'they' +p149545 +tp149546 +a(g149543 +g149545 +S'separated,' +p149547 +tp149548 +a(g149545 +g149547 +S'divorced,' +p149549 +tp149550 +a(g149547 +g149549 +S'and' +p149551 +tp149552 +a(g149549 +g149551 +S'remarried.' +p149553 +tp149554 +a(g149551 +g149553 +S'david' +p149555 +tp149556 +a(g149553 +g149555 +S'spoke' +p149557 +tp149558 +a(g149555 +g149557 +S'of' +p149559 +tp149560 +a(g149557 +g149559 +S'her' +p149561 +tp149562 +a(g149559 +g149561 +S'as' +p149563 +tp149564 +a(g149561 +g149563 +S'a' +p149565 +tp149566 +a(g149563 +g149565 +S'"woman' +p149567 +tp149568 +a(g149565 +g149567 +S'whose' +p149569 +tp149570 +a(g149567 +g149569 +S'virtues' +p149571 +tp149572 +a(g149569 +g149571 +S'and' +p149573 +tp149574 +a(g149571 +g149573 +S'character' +p149575 +tp149576 +a(g149573 +g149575 +S'had' +p149577 +tp149578 +a(g149575 +g149577 +S'assured' +p149579 +tp149580 +a(g149577 +g149579 +S'the' +p149581 +tp149582 +a(g149579 +g149581 +S'happiness' +p149583 +tp149584 +a(g149581 +g149583 +S'of' +p149585 +tp149586 +a(g149583 +g149585 +S'his' +p149587 +tp149588 +a(g149585 +g149587 +S'life."' +p149589 +tp149590 +a(g149587 +g149589 +S'political' +p149591 +tp149592 +a(g149589 +g149591 +S'disagreements,' +p149593 +tp149594 +a(g149591 +g149593 +S'particularly' +p149595 +tp149596 +a(g149593 +g149595 +S'his' +p149597 +tp149598 +a(g149595 +g149597 +S'attachment' +p149599 +tp149600 +a(g149597 +g149599 +S'to' +p149601 +tp149602 +a(g149599 +g149601 +S'the' +p149603 +tp149604 +a(g149601 +g149603 +S'ruthless' +p149605 +tp149606 +a(g149603 +g149605 +S'robespierre,' +p149607 +tp149608 +a(g149605 +g149607 +S'may' +p149609 +tp149610 +a(g149607 +g149609 +S'have' +p149611 +tp149612 +a(g149609 +g149611 +S'exacerbated' +p149613 +tp149614 +a(g149611 +g149613 +S'their' +p149615 +tp149616 +a(g149613 +g149615 +S'personal' +p149617 +tp149618 +a(g149615 +g149617 +S'differences.' +p149619 +tp149620 +a(g149617 +g149619 +S'however,' +p149621 +tp149622 +a(g149619 +g149621 +S'after' +p149623 +tp149624 +a(g149621 +g149623 +S'robespierre' +p149625 +tp149626 +a(g149623 +g149625 +S'was' +p149627 +tp149628 +a(g149625 +g149627 +S'executed' +p149629 +tp149630 +a(g149627 +g149629 +S'and' +p149631 +tp149632 +a(g149629 +g149631 +S'david' +p149633 +tp149634 +a(g149631 +g149633 +S'himself' +p149635 +tp149636 +a(g149633 +g149635 +S'imprisoned—and' +p149637 +tp149638 +a(g149635 +g149637 +S'threatened' +p149639 +tp149640 +a(g149637 +g149639 +S'with' +p149641 +tp149642 +a(g149639 +g149641 +S'the' +p149643 +tp149644 +a(g149641 +g149643 +S'guillotine—his' +p149645 +tp149646 +a(g149643 +g149645 +S'wife' +p149647 +tp149648 +a(g149645 +g149647 +S'rallied' +p149649 +tp149650 +a(g149647 +g149649 +S'to' +p149651 +tp149652 +a(g149649 +g149651 +S'him' +p149653 +tp149654 +a(g149651 +g149653 +S'with' +p149655 +tp149656 +a(g149653 +g149655 +S'great' +p149657 +tp149658 +a(g149655 +g149657 +S'courage.' +p149659 +tp149660 +a(g149657 +g149659 +S'her' +p149661 +tp149662 +a(g149659 +g149661 +S'tireless' +p149663 +tp149664 +a(g149661 +g149663 +S'appeals' +p149665 +tp149666 +a(g149663 +g149665 +S'secured' +p149667 +tp149668 +a(g149665 +g149667 +S'his' +p149669 +tp149670 +a(g149667 +g149669 +S'release,' +p149671 +tp149672 +a(g149669 +g149671 +S'and' +p149673 +tp149674 +a(g149671 +g149673 +S'they' +p149675 +tp149676 +a(g149673 +g149675 +S'remained' +p149677 +tp149678 +a(g149675 +g149677 +S'together' +p149679 +tp149680 +a(g149677 +g149679 +S'until' +p149681 +tp149682 +a(g149679 +g149681 +S'her' +p149683 +tp149684 +a(g149681 +g149683 +S'death.' +p149685 +tp149686 +a(g149683 +g149685 +S"david's" +p149687 +tp149688 +a(g149685 +g149687 +S'frank' +p149689 +tp149690 +a(g149687 +g149689 +S'but' +p149691 +tp149692 +a(g149689 +g149691 +S'sympathetic' +p149693 +tp149694 +a(g149691 +g149693 +S'portrait' +p149695 +tp149696 +a(g149693 +g149695 +S'catches' +p149697 +tp149698 +a(g149695 +g149697 +S'not' +p149699 +tp149700 +a(g149697 +g149699 +S'only' +p149701 +tp149702 +a(g149699 +g149701 +S'the' +p149703 +tp149704 +a(g149701 +g149703 +S'homeliness' +p149705 +tp149706 +a(g149703 +g149705 +S'of' +p149707 +tp149708 +a(g149705 +g149707 +S'his' +p149709 +tp149710 +a(g149707 +g149709 +S"wife's" +p149711 +tp149712 +a(g149709 +g149711 +S'features,' +p149713 +tp149714 +a(g149711 +g149713 +S'but' +p149715 +tp149716 +a(g149713 +g149715 +S'her' +p149717 +tp149718 +a(g149715 +g149717 +S'intelligence' +p149719 +tp149720 +a(g149717 +g149719 +S'and' +p149721 +tp149722 +a(g149719 +g149721 +S'directness' +p149723 +tp149724 +a(g149721 +g149723 +S'as' +p149725 +tp149726 +a(g149723 +g149725 +S'well.' +p149727 +tp149728 +a(g149725 +g149727 +S'unlike' +p149729 +tp149730 +a(g149727 +g149729 +S'many' +p149731 +tp149732 +a(g149729 +g149731 +S'of' +p149733 +tp149734 +a(g149731 +g149733 +S"david's" +p149735 +tp149736 +a(g149733 +g149735 +S'works,' +p149737 +tp149738 +a(g149735 +g149737 +S'this' +p149739 +tp149740 +a(g149737 +g149739 +S'portrait' +p149741 +tp149742 +a(g149739 +g149741 +S'was' +p149743 +tp149744 +a(g149741 +g149743 +S'painted' +p149745 +tp149746 +a(g149743 +g149745 +S'entirely' +p149747 +tp149748 +a(g149745 +g149747 +S'by' +p149749 +tp149750 +a(g149747 +g149749 +S'his' +p149751 +tp149752 +a(g149749 +g149751 +S'own' +p149753 +tp149754 +a(g149751 +g149753 +S'hand.' +p149755 +tp149756 +a(g149753 +g149755 +S'its' +p149757 +tp149758 +a(g149755 +g149757 +S'technique' +p149759 +tp149760 +a(g149757 +g149759 +S'is' +p149761 +tp149762 +a(g149759 +g149761 +S'freer' +p149763 +tp149764 +a(g149761 +g149763 +S'than' +p149765 +tp149766 +a(g149763 +g149765 +S'the' +p149767 +tp149768 +a(g149765 +g149767 +S'austere' +p149769 +tp149770 +a(g149767 +g149769 +S'style' +p149771 +tp149772 +a(g149769 +g149771 +S'he' +p149773 +tp149774 +a(g149771 +g149773 +S'applied' +p149775 +tp149776 +a(g149773 +g149775 +S'to' +p149777 +tp149778 +a(g149775 +g149777 +S'less' +p149779 +tp149780 +a(g149777 +g149779 +S'intimate' +p149781 +tp149782 +a(g149779 +g149781 +S'subjects.' +p149783 +tp149784 +a(g149781 +g149783 +S'the' +p149785 +tp149786 +a(g149783 +g149785 +S'satiny' +p149787 +tp149788 +a(g149785 +g149787 +S'texture' +p149789 +tp149790 +a(g149787 +g149789 +S'of' +p149791 +tp149792 +a(g149789 +g149791 +S'her' +p149793 +tp149794 +a(g149791 +g149793 +S'dress,' +p149795 +tp149796 +a(g149793 +g149795 +S'unadorned' +p149797 +tp149798 +a(g149795 +g149797 +S'by' +p149799 +tp149800 +a(g149797 +g149799 +S'jewelry' +p149801 +tp149802 +a(g149799 +g149801 +S'as' +p149803 +tp149804 +a(g149801 +g149803 +S'madame' +p149805 +tp149806 +a(g149803 +g149805 +S'david' +p149807 +tp149808 +a(g149805 +g149807 +S'surrendered' +p149809 +tp149810 +a(g149807 +g149809 +S'hers' +p149811 +tp149812 +a(g149809 +g149811 +S'in' +p149813 +tp149814 +a(g149811 +g149813 +S'support' +p149815 +tp149816 +a(g149813 +g149815 +S'of' +p149817 +tp149818 +a(g149815 +g149817 +S'the' +p149819 +tp149820 +a(g149817 +g149819 +S'revolution,' +p149821 +tp149822 +a(g149819 +g149821 +S'is' +p149823 +tp149824 +a(g149821 +g149823 +S'created' +p149825 +tp149826 +a(g149823 +g149825 +S'with' +p149827 +tp149828 +a(g149825 +g149827 +S'heavy' +p149829 +tp149830 +a(g149827 +g149829 +S'brushes' +p149831 +tp149832 +a(g149829 +g149831 +S'of' +p149833 +tp149834 +a(g149831 +g149833 +S'thick' +p149835 +tp149836 +a(g149833 +g149835 +S'pigment,' +p149837 +tp149838 +a(g149835 +g149837 +S'the' +p149839 +tp149840 +a(g149837 +g149839 +S'plume' +p149841 +tp149842 +a(g149839 +g149841 +S'with' +p149843 +tp149844 +a(g149841 +g149843 +S'lighter' +p149845 +tp149846 +a(g149843 +g149845 +S'strokes' +p149847 +tp149848 +a(g149845 +g149847 +S'of' +p149849 +tp149850 +a(g149847 +g149849 +S'thinner' +p149851 +tp149852 +a(g149849 +g149851 +S'color.' +p149853 +tp149854 +a(g149851 +g149853 +S'these' +p149855 +tp149856 +a(g149853 +g149855 +S'exuberant' +p149857 +tp149858 +a(g149855 +g149857 +S'surfaces' +p149859 +tp149860 +a(g149857 +g149859 +S'contrast' +p149861 +tp149862 +a(g149859 +g149861 +S'with' +p149863 +tp149864 +a(g149861 +g149863 +S'the' +p149865 +tp149866 +a(g149863 +g149865 +S'restrained' +p149867 +tp149868 +a(g149865 +g149867 +S'precision' +p149869 +tp149870 +a(g149867 +g149869 +S'of' +p149871 +tp149872 +a(g149869 +g149871 +S'the' +p149873 +tp149874 +a(g149871 +g149873 +S'accessories' +p149875 +tp149876 +a(g149873 +g149875 +S'in' +p149877 +tp149878 +a(g149875 +g149877 +S"napoleon's" +p149879 +tp149880 +a(g149877 +g149879 +S'portrait.' +p149881 +tp149882 +a(g149879 +g149881 +S'careful' +p149883 +tp149884 +a(g149881 +g149883 +S'examination' +p149885 +tp149886 +a(g149883 +g149885 +S'of' +p149887 +tp149888 +a(g149885 +g149887 +S'the' +p149889 +tp149890 +a(g149887 +g149889 +S'details' +p149891 +tp149892 +a(g149889 +g149891 +S'embedded' +p149893 +tp149894 +a(g149891 +g149893 +S'in' +p149895 +tp149896 +a(g149893 +g149895 +S'this' +p149897 +tp149898 +a(g149895 +g149897 +S'portrait' +p149899 +tp149900 +a(g149897 +g149899 +S'reveals' +p149901 +tp149902 +a(g149899 +g149901 +S'the' +p149903 +tp149904 +a(g149901 +g149903 +S'key' +p149905 +tp149906 +a(g149903 +g149905 +S'to' +p149907 +tp149908 +a(g149905 +g149907 +S"david's" +p149909 +tp149910 +a(g149907 +g149909 +S'success' +p149911 +tp149912 +a(g149909 +g149911 +S'as' +p149913 +tp149914 +a(g149911 +g149913 +S'a' +p149915 +tp149916 +a(g149913 +g149915 +S'painter' +p149917 +tp149918 +a(g149915 +g149917 +S'during' +p149919 +tp149920 +a(g149917 +g149919 +S'the' +p149921 +tp149922 +a(g149919 +g149921 +S'time' +p149923 +tp149924 +a(g149921 +g149923 +S'of' +p149925 +tp149926 +a(g149923 +g149925 +S'louis' +p149927 +tp149928 +a(g149925 +g149927 +S'xvi,' +p149929 +tp149930 +a(g149927 +g149929 +S'robespierre,' +p149931 +tp149932 +a(g149929 +g149931 +S'and' +p149933 +tp149934 +a(g149931 +g149933 +S'napoleon:' +p149935 +tp149936 +a(g149933 +g149935 +S'the' +p149937 +tp149938 +a(g149935 +g149937 +S"artist's" +p149939 +tp149940 +a(g149937 +g149939 +S'ability' +p149941 +tp149942 +a(g149939 +g149941 +S'to' +p149943 +tp149944 +a(g149941 +g149943 +S'transform' +p149945 +tp149946 +a(g149943 +g149945 +S'his' +p149947 +tp149948 +a(g149945 +g149947 +S'subjects' +p149949 +tp149950 +a(g149947 +g149949 +S'into' +p149951 +tp149952 +a(g149949 +g149951 +S'politically' +p149953 +tp149954 +a(g149951 +g149953 +S'powerful' +p149955 +tp149956 +a(g149953 +g149955 +S'icons.' +p149957 +tp149958 +a(g149955 +g149957 +S'napoleon' +p149959 +tp149960 +a(g149957 +g149959 +S'is' +p149961 +tp149962 +a(g149959 +g149961 +S'placed' +p149963 +tp149964 +a(g149961 +g149963 +S'in' +p149965 +tp149966 +a(g149963 +g149965 +S'the' +p149967 +tp149968 +a(g149965 +g149967 +S'center' +p149969 +tp149970 +a(g149967 +g149969 +S'of' +p149971 +tp149972 +a(g149969 +g149971 +S'a' +p149973 +tp149974 +a(g149971 +g149973 +S'vertical' +p149975 +tp149976 +a(g149973 +g149975 +S'canvas' +p149977 +tp149978 +a(g149975 +g149977 +S'dressed' +p149979 +tp149980 +a(g149977 +g149979 +S'in' +p149981 +tp149982 +a(g149979 +g149981 +S'his' +p149983 +tp149984 +a(g149981 +g149983 +S'uniform' +p149985 +tp149986 +a(g149983 +g149985 +S'as' +p149987 +tp149988 +a(g149985 +g149987 +S'a' +p149989 +tp149990 +a(g149987 +g149989 +S'colonel' +p149991 +tp149992 +a(g149989 +g149991 +S'of' +p149993 +tp149994 +a(g149991 +g149993 +S'the' +p149995 +tp149996 +a(g149993 +g149995 +S'foot' +p149997 +tp149998 +a(g149995 +g149997 +S'grenadiers' +p149999 +tp150000 +a(g149997 +g149999 +S'of' +p150001 +tp150002 +a(g149999 +g150001 +S'the' +p150003 +tp150004 +a(g150001 +g150003 +S'imperial' +p150005 +tp150006 +a(g150003 +g150005 +S'guard.' +p150007 +tp150008 +a(g150005 +g150007 +S'his' +p150009 +tp150010 +a(g150007 +g150009 +S'pose—the' +p150011 +tp150012 +a(g150009 +g150011 +S'slightly' +p150013 +tp150014 +a(g150011 +g150013 +S'hunched' +p150015 +tp150016 +a(g150013 +g150015 +S'shoulders' +p150017 +tp150018 +a(g150015 +g150017 +S'and' +p150019 +tp150020 +a(g150017 +g150019 +S'hand' +p150021 +tp150022 +a(g150019 +g150021 +S'inserted' +p150023 +tp150024 +a(g150021 +g150023 +S'into' +p150025 +tp150026 +a(g150023 +g150025 +S'his' +p150027 +tp150028 +a(g150025 +g150027 +S'vest—contrasts' +p150029 +tp150030 +a(g150027 +g150029 +S'to' +p150031 +tp150032 +a(g150029 +g150031 +S'the' +p150033 +tp150034 +a(g150031 +g150033 +S'formality' +p150035 +tp150036 +a(g150033 +g150035 +S'of' +p150037 +tp150038 +a(g150035 +g150037 +S'his' +p150039 +tp150040 +a(g150037 +g150039 +S'costume.' +p150041 +tp150042 +a(g150039 +g150041 +S'in' +p150043 +tp150044 +a(g150041 +g150043 +S'addition,' +p150045 +tp150046 +a(g150043 +g150045 +S'his' +p150047 +tp150048 +a(g150045 +g150047 +S'cuffs' +p150049 +tp150050 +a(g150047 +g150049 +S'are' +p150051 +tp150052 +a(g150049 +g150051 +S'unbuttoned,' +p150053 +tp150054 +a(g150051 +g150053 +S'his' +p150055 +tp150056 +a(g150053 +g150055 +S'leggings' +p150057 +tp150058 +a(g150055 +g150057 +S'wrinkled,' +p150059 +tp150060 +a(g150057 +g150059 +S'and' +p150061 +tp150062 +a(g150059 +g150061 +S'his' +p150063 +tp150064 +a(g150061 +g150063 +S'hair' +p150065 +tp150066 +a(g150063 +g150065 +S'disheveled.' +p150067 +tp150068 +a(g150065 +g150067 +S'david,' +p150069 +tp150070 +a(g150067 +g150069 +S'in' +p150071 +tp150072 +a(g150069 +g150071 +S'a' +p150073 +tp150074 +a(g150071 +g150073 +S'letter' +p150075 +tp150076 +a(g150073 +g150075 +S'to' +p150077 +tp150078 +a(g150075 +g150077 +S'the' +p150079 +tp150080 +a(g150077 +g150079 +S'patron' +p150081 +tp150082 +a(g150079 +g150081 +S'of' +p150083 +tp150084 +a(g150081 +g150083 +S'this' +p150085 +tp150086 +a(g150083 +g150085 +S'portrait,' +p150087 +tp150088 +a(g150085 +g150087 +S'alexander' +p150089 +tp150090 +a(g150087 +g150089 +S'douglas,' +p150091 +tp150092 +a(g150089 +g150091 +S'the' +p150093 +tp150094 +a(g150091 +g150093 +S'tenth' +p150095 +tp150096 +a(g150093 +g150095 +S'duke' +p150097 +tp150098 +a(g150095 +g150097 +S'of' +p150099 +tp150100 +a(g150097 +g150099 +S'hamilton,' +p150101 +tp150102 +a(g150099 +g150101 +S'explained' +p150103 +tp150104 +a(g150101 +g150103 +S'that' +p150105 +tp150106 +a(g150103 +g150105 +S'his' +p150107 +tp150108 +a(g150105 +g150107 +S'appearance' +p150109 +tp150110 +a(g150107 +g150109 +S'was' +p150111 +tp150112 +a(g150109 +g150111 +S'designed' +p150113 +tp150114 +a(g150111 +g150113 +S'to' +p150115 +tp150116 +a(g150113 +g150115 +S'show' +p150117 +tp150118 +a(g150115 +g150117 +S'that' +p150119 +tp150120 +a(g150117 +g150119 +S'napoleon' +p150121 +tp150122 +a(g150119 +g150121 +S'had' +p150123 +tp150124 +a(g150121 +g150123 +S'spent' +p150125 +tp150126 +a(g150123 +g150125 +S'the' +p150127 +tp150128 +a(g150125 +g150127 +S'night' +p150129 +tp150130 +a(g150127 +g150129 +S'in' +p150131 +tp150132 +a(g150129 +g150131 +S'his' +p150133 +tp150134 +a(g150131 +g150133 +S'study' +p150135 +tp150136 +a(g150133 +g150135 +S'composing' +p150137 +tp150138 +a(g150135 +g150137 +S'the' +p150139 +tp150140 +a(g150137 +g150139 +S'napoleonic' +p150141 +tp150142 +a(g150139 +g150141 +S'code,' +p150143 +tp150144 +a(g150141 +g150143 +S'an' +p150145 +tp150146 +a(g150143 +g150145 +S'impression' +p150147 +tp150148 +a(g150145 +g150147 +S'enforced' +p150149 +tp150150 +a(g150147 +g150149 +S'by' +p150151 +tp150152 +a(g150149 +g150151 +S'details,' +p150153 +tp150154 +a(g150151 +g150153 +S'such' +p150155 +tp150156 +a(g150153 +g150155 +S'as' +p150157 +tp150158 +a(g150155 +g150157 +S'the' +p150159 +tp150160 +a(g150157 +g150159 +S'flickering' +p150161 +tp150162 +a(g150159 +g150161 +S'candles' +p150163 +tp150164 +a(g150161 +g150163 +S'that' +p150165 +tp150166 +a(g150163 +g150165 +S'are' +p150167 +tp150168 +a(g150165 +g150167 +S'almost' +p150169 +tp150170 +a(g150167 +g150169 +S'extinguished,' +p150171 +tp150172 +a(g150169 +g150171 +S'the' +p150173 +tp150174 +a(g150171 +g150173 +S'quill' +p150175 +tp150176 +a(g150173 +g150175 +S'pen' +p150177 +tp150178 +a(g150175 +g150177 +S'and' +p150179 +tp150180 +a(g150177 +g150179 +S'papers' +p150181 +tp150182 +a(g150179 +g150181 +S'scattered' +p150183 +tp150184 +a(g150181 +g150183 +S'on' +p150185 +tp150186 +a(g150183 +g150185 +S'the' +p150187 +tp150188 +a(g150185 +g150187 +S'desk,' +p150189 +tp150190 +a(g150187 +g150189 +S'and' +p150191 +tp150192 +a(g150189 +g150191 +S'the' +p150193 +tp150194 +a(g150191 +g150193 +S'clock' +p150195 +tp150196 +a(g150193 +g150195 +S'on' +p150197 +tp150198 +a(g150195 +g150197 +S'the' +p150199 +tp150200 +a(g150197 +g150199 +S'wall' +p150201 +tp150202 +a(g150199 +g150201 +S'which' +p150203 +tp150204 +a(g150201 +g150203 +S'points' +p150205 +tp150206 +a(g150203 +g150205 +S'to' +p150207 +tp150208 +a(g150205 +g150207 +S'4:13' +p150209 +tp150210 +a(g150207 +g150209 +S'a.m.' +p150211 +tp150212 +a(g150209 +g150211 +S'david' +p150213 +tp150214 +a(g150211 +g150213 +S'strategically' +p150215 +tp150216 +a(g150213 +g150215 +S'placed' +p150217 +tp150218 +a(g150215 +g150217 +S'the' +p150219 +tp150220 +a(g150217 +g150219 +S'sword' +p150221 +tp150222 +a(g150219 +g150221 +S'on' +p150223 +tp150224 +a(g150221 +g150223 +S'the' +p150225 +tp150226 +a(g150223 +g150225 +S'chair' +p150227 +tp150228 +a(g150225 +g150227 +S'to' +p150229 +tp150230 +a(g150227 +g150229 +S'allude' +p150231 +tp150232 +a(g150229 +g150231 +S'to' +p150233 +tp150234 +a(g150231 +g150233 +S"napoleon's" +p150235 +tp150236 +a(g150233 +g150235 +S'military' +p150237 +tp150238 +a(g150235 +g150237 +S'success,' +p150239 +tp150240 +a(g150237 +g150239 +S'while' +p150241 +tp150242 +a(g150239 +g150241 +S'the' +p150243 +tp150244 +a(g150241 +g150243 +S'prominent' +p150245 +tp150246 +a(g150243 +g150245 +S'display' +p150247 +tp150248 +a(g150245 +g150247 +S'of' +p150249 +tp150250 +a(g150247 +g150249 +S'the' +p150251 +tp150252 +a(g150249 +g150251 +S'word' +p150253 +tp150254 +a(g150251 +g150253 +S'"code"' +p150255 +tp150256 +a(g150253 +g150255 +S'in' +p150257 +tp150258 +a(g150255 +g150257 +S'his' +p150259 +tp150260 +a(g150257 +g150259 +S'papers,' +p150261 +tp150262 +a(g150259 +g150261 +S'suggests' +p150263 +tp150264 +a(g150261 +g150263 +S'his' +p150265 +tp150266 +a(g150263 +g150265 +S'administrative' +p150267 +tp150268 +a(g150265 +g150267 +S'achievements.' +p150269 +tp150270 +a(g150267 +g150269 +S'other' +p150271 +tp150272 +a(g150269 +g150271 +S'decorative' +p150273 +tp150274 +a(g150271 +g150273 +S'details—the' +p150275 +tp150276 +a(g150273 +g150275 +S'heraldic' +p150277 +tp150278 +a(g150275 +g150277 +S'bees' +p150279 +tp150280 +a(g150277 +g150279 +S'and' +p150281 +tp150282 +a(g150279 +g150281 +S'the' +p150283 +tp150284 +a(g150281 +g150283 +S'fleurs–de–lys—are' +p150285 +tp150286 +a(g150283 +g150285 +S'symbols' +p150287 +tp150288 +a(g150285 +g150287 +S'of' +p150289 +tp150290 +a(g150287 +g150289 +S'french' +p150291 +tp150292 +a(g150289 +g150291 +S'absolutism,' +p150293 +tp150294 +a(g150291 +g150293 +S'and' +p150295 +tp150296 +a(g150293 +g150295 +S'imply' +p150297 +tp150298 +a(g150295 +g150297 +S"napoleon's" +p150299 +tp150300 +a(g150297 +g150299 +S'power' +p150301 +tp150302 +a(g150299 +g150301 +S'as' +p150303 +tp150304 +a(g150301 +g150303 +S'ruler.' +p150305 +tp150306 +a(g150303 +g150305 +S'with' +p150307 +tp150308 +a(g150305 +g150307 +S"children's" +p150309 +tp150310 +a(g150307 +g150309 +S'games' +p150311 +tp150312 +a(g150309 +g150311 +S'glimpsed' +p150313 +tp150314 +a(g150311 +g150313 +S'from' +p150315 +tp150316 +a(g150313 +g150315 +S'above' +p150317 +tp150318 +a(g150315 +g150317 +S'in' +p150319 +tp150320 +a(g150317 +g150319 +S'an' +p150321 +tp150322 +a(g150319 +g150321 +S'immense' +p150323 +tp150324 +a(g150321 +g150323 +S'expanse' +p150325 +tp150326 +a(g150323 +g150325 +S'of' +p150327 +tp150328 +a(g150325 +g150327 +S'earth' +p150329 +tp150330 +a(g150327 +g150329 +S'and' +p150331 +tp150332 +a(g150329 +g150331 +S'sky,' +p150333 +tp150334 +a(g150331 +g150333 +S'fragonard' +p150335 +tp150336 +a(g150333 +g150335 +S'presents' +p150337 +tp150338 +a(g150335 +g150337 +S'a' +p150339 +tp150340 +a(g150337 +g150339 +S'vision' +p150341 +tp150342 +a(g150339 +g150341 +S'of' +p150343 +tp150344 +a(g150341 +g150343 +S'nature,' +p150345 +tp150346 +a(g150343 +g150345 +S'imposing' +p150347 +tp150348 +a(g150345 +g150347 +S'yet' +p150349 +tp150350 +a(g150347 +g150349 +S'tamed' +p150351 +tp150352 +a(g150349 +g150351 +S'by' +p150353 +tp150354 +a(g150351 +g150353 +S'civilization.' +p150355 +tp150356 +a(g150353 +g150355 +S'these' +p150357 +tp150358 +a(g150355 +g150357 +S'are' +p150359 +tp150360 +a(g150357 +g150359 +S'not' +p150361 +tp150362 +a(g150359 +g150361 +S'forests,' +p150363 +tp150364 +a(g150361 +g150363 +S'but' +p150365 +tp150366 +a(g150363 +g150365 +S'gardens' +p150367 +tp150368 +a(g150365 +g150367 +S'resembling' +p150369 +tp150370 +a(g150367 +g150369 +S'the' +p150371 +tp150372 +a(g150369 +g150371 +S'magical' +p150373 +tp150374 +a(g150371 +g150373 +S'villa' +p150375 +tp150376 +a(g150373 +g150375 +S"d'este," +p150377 +tp150378 +a(g150375 +g150377 +S'where' +p150379 +tp150380 +a(g150377 +g150379 +S'fragonard' +p150381 +tp150382 +a(g150379 +g150381 +S'sketched' +p150383 +tp150384 +a(g150381 +g150383 +S'in' +p150385 +tp150386 +a(g150383 +g150385 +S'italy.' +p150387 +tp150388 +a(g150385 +g150387 +S'light' +p150389 +tp150390 +a(g150387 +g150389 +S'creates' +p150391 +tp150392 +a(g150389 +g150391 +S'volume' +p150393 +tp150394 +a(g150391 +g150393 +S'in' +p150395 +tp150396 +a(g150393 +g150395 +S'the' +p150397 +tp150398 +a(g150395 +g150397 +S'towering' +p150399 +tp150400 +a(g150397 +g150399 +S'clouds' +p150401 +tp150402 +a(g150399 +g150401 +S'and' +p150403 +tp150404 +a(g150401 +g150403 +S'breaks' +p150405 +tp150406 +a(g150403 +g150405 +S'through' +p150407 +tp150408 +a(g150405 +g150407 +S'in' +p150409 +tp150410 +a(g150407 +g150409 +S'patches' +p150411 +tp150412 +a(g150409 +g150411 +S'on' +p150413 +tp150414 +a(g150411 +g150413 +S'the' +p150415 +tp150416 +a(g150413 +g150415 +S'ground' +p150417 +tp150418 +a(g150415 +g150417 +S'to' +p150419 +tp150420 +a(g150417 +g150419 +S'illuminate' +p150421 +tp150422 +a(g150419 +g150421 +S'the' +p150423 +tp150424 +a(g150421 +g150423 +S'small' +p150425 +tp150426 +a(g150423 +g150425 +S'figures' +p150427 +tp150428 +a(g150425 +g150427 +S'as' +p150429 +tp150430 +a(g150427 +g150429 +S'if' +p150431 +tp150432 +a(g150429 +g150431 +S'they' +p150433 +tp150434 +a(g150431 +g150433 +S'were' +p150435 +tp150436 +a(g150433 +g150435 +S'on' +p150437 +tp150438 +a(g150435 +g150437 +S'a' +p150439 +tp150440 +a(g150437 +g150439 +S'distant' +p150441 +tp150442 +a(g150439 +g150441 +S'stage.' +p150443 +tp150444 +a(g150441 +g150443 +S'the' +p150445 +tp150446 +a(g150443 +g150445 +S'swing' +p150447 +tp150448 +a(g150445 +g150447 +S'matthias' +p150449 +tp150450 +a(g150447 +g150449 +S"grünewald's" +p150451 +tp150452 +a(g150449 +g150451 +S'in' +p150453 +tp150454 +a(g150451 +g150453 +S'order' +p150455 +tp150456 +a(g150453 +g150455 +S'to' +p150457 +tp150458 +a(g150455 +g150457 +S'communicate' +p150459 +tp150460 +a(g150457 +g150459 +S'this' +p150461 +tp150462 +a(g150459 +g150461 +S'mystical' +p150463 +tp150464 +a(g150461 +g150463 +S'belief,' +p150465 +tp150466 +a(g150463 +g150465 +S'grünewald' +p150467 +tp150468 +a(g150465 +g150467 +S'resorted' +p150469 +tp150470 +a(g150467 +g150469 +S'to' +p150471 +tp150472 +a(g150469 +g150471 +S'a' +p150473 +tp150474 +a(g150471 +g150473 +S'mixture' +p150475 +tp150476 +a(g150473 +g150475 +S'of' +p150477 +tp150478 +a(g150475 +g150477 +S'ghastly' +p150479 +tp150480 +a(g150477 +g150479 +S'realism' +p150481 +tp150482 +a(g150479 +g150481 +S'and' +p150483 +tp150484 +a(g150481 +g150483 +S'coloristic' +p150485 +tp150486 +a(g150483 +g150485 +S'expressiveness.' +p150487 +tp150488 +a(g150485 +g150487 +S'silhouetted' +p150489 +tp150490 +a(g150487 +g150489 +S'against' +p150491 +tp150492 +a(g150489 +g150491 +S'a' +p150493 +tp150494 +a(g150491 +g150493 +S'greenish–blue' +p150495 +tp150496 +a(g150493 +g150495 +S'sky' +p150497 +tp150498 +a(g150495 +g150497 +S'and' +p150499 +tp150500 +a(g150497 +g150499 +S'illuminated' +p150501 +tp150502 +a(g150499 +g150501 +S'by' +p150503 +tp150504 +a(g150501 +g150503 +S'an' +p150505 +tp150506 +a(g150503 +g150505 +S'undefined' +p150507 +tp150508 +a(g150505 +g150507 +S'light' +p150509 +tp150510 +a(g150507 +g150509 +S'source,' +p150511 +tp150512 +a(g150509 +g150511 +S"christ's" +p150513 +tp150514 +a(g150511 +g150513 +S'emaciated' +p150515 +tp150516 +a(g150513 +g150515 +S'frame' +p150517 +tp150518 +a(g150515 +g150517 +S'sags' +p150519 +tp150520 +a(g150517 +g150519 +S'limply' +p150521 +tp150522 +a(g150519 +g150521 +S'on' +p150523 +tp150524 +a(g150521 +g150523 +S'the' +p150525 +tp150526 +a(g150523 +g150525 +S'cross.' +p150527 +tp150528 +a(g150525 +g150527 +S'his' +p150529 +tp150530 +a(g150527 +g150529 +S'twisted' +p150531 +tp150532 +a(g150529 +g150531 +S'feet' +p150533 +tp150534 +a(g150531 +g150533 +S'and' +p150535 +tp150536 +a(g150533 +g150535 +S'hands,' +p150537 +tp150538 +a(g150535 +g150537 +S'crown' +p150539 +tp150540 +a(g150537 +g150539 +S'of' +p150541 +tp150542 +a(g150539 +g150541 +S'thorns,' +p150543 +tp150544 +a(g150541 +g150543 +S'agonized' +p150545 +tp150546 +a(g150543 +g150545 +S'expression,' +p150547 +tp150548 +a(g150545 +g150547 +S'and' +p150549 +tp150550 +a(g150547 +g150549 +S'ragged' +p150551 +tp150552 +a(g150549 +g150551 +S'loincloth' +p150553 +tp150554 +a(g150551 +g150553 +S'convey' +p150555 +tp150556 +a(g150553 +g150555 +S'the' +p150557 +tp150558 +a(g150555 +g150557 +S'terrible' +p150559 +tp150560 +a(g150557 +g150559 +S'physical' +p150561 +tp150562 +a(g150559 +g150561 +S'and' +p150563 +tp150564 +a(g150561 +g150563 +S'emotional' +p150565 +tp150566 +a(g150563 +g150565 +S'suffering' +p150567 +tp150568 +a(g150565 +g150567 +S'he' +p150569 +tp150570 +a(g150567 +g150569 +S'has' +p150571 +tp150572 +a(g150569 +g150571 +S'endured.' +p150573 +tp150574 +a(g150571 +g150573 +S'this' +p150575 +tp150576 +a(g150573 +g150575 +S'abject' +p150577 +tp150578 +a(g150575 +g150577 +S'mood' +p150579 +tp150580 +a(g150577 +g150579 +S'is' +p150581 +tp150582 +a(g150579 +g150581 +S'intensified' +p150583 +tp150584 +a(g150581 +g150583 +S'by' +p150585 +tp150586 +a(g150583 +g150585 +S'the' +p150587 +tp150588 +a(g150585 +g150587 +S'anguished' +p150589 +tp150590 +a(g150587 +g150589 +S'expressions' +p150591 +tp150592 +a(g150589 +g150591 +S'and' +p150593 +tp150594 +a(g150591 +g150593 +S'demonstrative' +p150595 +tp150596 +a(g150593 +g150595 +S'gestures' +p150597 +tp150598 +a(g150595 +g150597 +S'of' +p150599 +tp150600 +a(g150597 +g150599 +S'john' +p150601 +tp150602 +a(g150599 +g150601 +S'the' +p150603 +tp150604 +a(g150601 +g150603 +S'evangelist,' +p150605 +tp150606 +a(g150603 +g150605 +S'the' +p150607 +tp150608 +a(g150605 +g150607 +S'virgin' +p150609 +tp150610 +a(g150607 +g150609 +S'mary,' +p150611 +tp150612 +a(g150609 +g150611 +S'and' +p150613 +tp150614 +a(g150611 +g150613 +S'the' +p150615 +tp150616 +a(g150613 +g150615 +S'kneeling' +p150617 +tp150618 +a(g150615 +g150617 +S'mary' +p150619 +tp150620 +a(g150617 +g150619 +S'magdalene.' +p150621 +tp150622 +a(g150619 +g150621 +S"grünewald's" +p150623 +tp150624 +a(g150621 +g150623 +S'dissonant,' +p150625 +tp150626 +a(g150623 +g150625 +S'eerie' +p150627 +tp150628 +a(g150625 +g150627 +S'colors' +p150629 +tp150630 +a(g150627 +g150629 +S'were' +p150631 +tp150632 +a(g150629 +g150631 +S'also' +p150633 +tp150634 +a(g150631 +g150633 +S'rooted' +p150635 +tp150636 +a(g150633 +g150635 +S'in' +p150637 +tp150638 +a(g150635 +g150637 +S'biblical' +p150639 +tp150640 +a(g150637 +g150639 +S'fact.' +p150641 +tp150642 +a(g150639 +g150641 +S'the' +p150643 +tp150644 +a(g150641 +g150643 +S'murky' +p150645 +tp150646 +a(g150643 +g150645 +S'sky,' +p150647 +tp150648 +a(g150645 +g150647 +S'for' +p150649 +tp150650 +a(g150647 +g150649 +S'instance,' +p150651 +tp150652 +a(g150649 +g150651 +S'corresponds' +p150653 +tp150654 +a(g150651 +g150653 +S'to' +p150655 +tp150656 +a(g150653 +g150655 +S'saint' +p150657 +tp150658 +a(g150655 +g150657 +S"luke's" +p150659 +tp150660 +a(g150657 +g150659 +S'description' +p150661 +tp150662 +a(g150659 +g150661 +S'of' +p150663 +tp150664 +a(g150661 +g150663 +S'"a' +p150665 +tp150666 +a(g150663 +g150665 +S'darkness' +p150667 +tp150668 +a(g150665 +g150667 +S'over' +p150669 +tp150670 +a(g150667 +g150669 +S'all' +p150671 +tp150672 +a(g150669 +g150671 +S'the' +p150673 +tp150674 +a(g150671 +g150673 +S'earth"' +p150675 +tp150676 +a(g150673 +g150675 +S'at' +p150677 +tp150678 +a(g150675 +g150677 +S'the' +p150679 +tp150680 +a(g150677 +g150679 +S'time' +p150681 +tp150682 +a(g150679 +g150681 +S'of' +p150683 +tp150684 +a(g150681 +g150683 +S'the' +p150685 +tp150686 +a(g150683 +g150685 +S'crucifixion.' +p150687 +tp150688 +a(g150685 +g150687 +S'grünewald,' +p150689 +tp150690 +a(g150687 +g150689 +S'who' +p150691 +tp150692 +a(g150689 +g150691 +S'himself' +p150693 +tp150694 +a(g150691 +g150693 +S'witnessed' +p150695 +tp150696 +a(g150693 +g150695 +S'a' +p150697 +tp150698 +a(g150695 +g150697 +S'full' +p150699 +tp150700 +a(g150697 +g150699 +S'eclipse' +p150701 +tp150702 +a(g150699 +g150701 +S'in' +p150703 +tp150704 +a(g150701 +g150703 +S'1502,' +p150705 +tp150706 +a(g150703 +g150705 +S'has' +p150707 +tp150708 +a(g150705 +g150707 +S're–created' +p150709 +tp150710 +a(g150707 +g150709 +S'here' +p150711 +tp150712 +a(g150709 +g150711 +S'the' +p150713 +tp150714 +a(g150711 +g150713 +S'dark' +p150715 +tp150716 +a(g150713 +g150715 +S'and' +p150717 +tp150718 +a(g150715 +g150717 +S'rich' +p150719 +tp150720 +a(g150717 +g150719 +S'tonalities' +p150721 +tp150722 +a(g150719 +g150721 +S'associated' +p150723 +tp150724 +a(g150721 +g150723 +S'with' +p150725 +tp150726 +a(g150723 +g150725 +S'such' +p150727 +tp150728 +a(g150725 +g150727 +S'natural' +p150729 +tp150730 +a(g150727 +g150729 +S'phenomena.' +p150731 +tp150732 +a(g150729 +g150731 +S'today,' +p150733 +tp150734 +a(g150731 +g150733 +S'only' +p150735 +tp150736 +a(g150733 +g150735 +S'twenty' +p150737 +tp150738 +a(g150735 +g150737 +S'paintings' +p150739 +tp150740 +a(g150737 +g150739 +S'by' +p150741 +tp150742 +a(g150739 +g150741 +S'grünewald' +p150743 +tp150744 +a(g150741 +g150743 +S'are' +p150745 +tp150746 +a(g150743 +g150745 +S'extant,' +p150747 +tp150748 +a(g150745 +g150747 +S'and' +p150749 +tp150750 +a(g150747 +g150749 +S'juan' +p150751 +tp150752 +a(g150749 +g150751 +S'de' +p150753 +tp150754 +a(g150751 +g150753 +S'flandes' +p150755 +tp150756 +a(g150753 +g150755 +S'("jan' +p150757 +tp150758 +a(g150755 +g150757 +S'of' +p150759 +tp150760 +a(g150757 +g150759 +S'flanders")' +p150761 +tp150762 +a(g150759 +g150761 +S'came' +p150763 +tp150764 +a(g150761 +g150763 +S'from' +p150765 +tp150766 +a(g150763 +g150765 +S'the' +p150767 +tp150768 +a(g150765 +g150767 +S'north—and' +p150769 +tp150770 +a(g150767 +g150769 +S'possibly' +p150771 +tp150772 +a(g150769 +g150771 +S'trained' +p150773 +tp150774 +a(g150771 +g150773 +S'in' +p150775 +tp150776 +a(g150773 +g150775 +S'ghent—but' +p150777 +tp150778 +a(g150775 +g150777 +S'his' +p150779 +tp150780 +a(g150777 +g150779 +S'entire' +p150781 +tp150782 +a(g150779 +g150781 +S'reputation' +p150783 +tp150784 +a(g150781 +g150783 +S'is' +p150785 +tp150786 +a(g150783 +g150785 +S'based' +p150787 +tp150788 +a(g150785 +g150787 +S'on' +p150789 +tp150790 +a(g150787 +g150789 +S'work' +p150791 +tp150792 +a(g150789 +g150791 +S'painted' +p150793 +tp150794 +a(g150791 +g150793 +S'in' +p150795 +tp150796 +a(g150793 +g150795 +S'spain,' +p150797 +tp150798 +a(g150795 +g150797 +S'where' +p150799 +tp150800 +a(g150797 +g150799 +S'he' +p150801 +tp150802 +a(g150799 +g150801 +S'served' +p150803 +tp150804 +a(g150801 +g150803 +S'as' +p150805 +tp150806 +a(g150803 +g150805 +S'court' +p150807 +tp150808 +a(g150805 +g150807 +S'artist' +p150809 +tp150810 +a(g150807 +g150809 +S'to' +p150811 +tp150812 +a(g150809 +g150811 +S'queen' +p150813 +tp150814 +a(g150811 +g150813 +S'isabella.' +p150815 +tp150816 +a(g150813 +g150815 +S'the' +p150817 +tp150818 +a(g150815 +g150817 +S'backgrounds' +p150819 +tp150820 +a(g150817 +g150819 +S'in' +p150821 +tp150822 +a(g150819 +g150821 +S'paintings' +p150823 +tp150824 +a(g150821 +g150823 +S'by' +p150825 +tp150826 +a(g150823 +g150825 +S'juan' +p150827 +tp150828 +a(g150825 +g150827 +S'de' +p150829 +tp150830 +a(g150827 +g150829 +S'flandes' +p150831 +tp150832 +a(g150829 +g150831 +S'are' +p150833 +tp150834 +a(g150831 +g150833 +S'often' +p150835 +tp150836 +a(g150833 +g150835 +S'enlivened' +p150837 +tp150838 +a(g150835 +g150837 +S'with' +p150839 +tp150840 +a(g150837 +g150839 +S'charming' +p150841 +tp150842 +a(g150839 +g150841 +S'narrative' +p150843 +tp150844 +a(g150841 +g150843 +S'vignettes,' +p150845 +tp150846 +a(g150843 +g150845 +S'characteristic' +p150847 +tp150848 +a(g150845 +g150847 +S'of' +p150849 +tp150850 +a(g150847 +g150849 +S'works' +p150851 +tp150852 +a(g150849 +g150851 +S'from' +p150853 +tp150854 +a(g150851 +g150853 +S'the' +p150855 +tp150856 +a(g150853 +g150855 +S'netherlandish' +p150857 +tp150858 +a(g150855 +g150857 +S'city' +p150859 +tp150860 +a(g150857 +g150859 +S'of' +p150861 +tp150862 +a(g150859 +g150861 +S'ghent.' +p150863 +tp150864 +a(g150861 +g150863 +S'here,' +p150865 +tp150866 +a(g150863 +g150865 +S'a' +p150867 +tp150868 +a(g150865 +g150867 +S'young' +p150869 +tp150870 +a(g150867 +g150869 +S'shepherd' +p150871 +tp150872 +a(g150869 +g150871 +S'is' +p150873 +tp150874 +a(g150871 +g150873 +S'struck' +p150875 +tp150876 +a(g150873 +g150875 +S'with' +p150877 +tp150878 +a(g150875 +g150877 +S'awe' +p150879 +tp150880 +a(g150877 +g150879 +S'and' +p150881 +tp150882 +a(g150879 +g150881 +S'wonder' +p150883 +tp150884 +a(g150881 +g150883 +S'as' +p150885 +tp150886 +a(g150883 +g150885 +S'an' +p150887 +tp150888 +a(g150885 +g150887 +S'angel' +p150889 +tp150890 +a(g150887 +g150889 +S'appears' +p150891 +tp150892 +a(g150889 +g150891 +S'in' +p150893 +tp150894 +a(g150891 +g150893 +S'a' +p150895 +tp150896 +a(g150893 +g150895 +S'brilliant' +p150897 +tp150898 +a(g150895 +g150897 +S'globe' +p150899 +tp150900 +a(g150897 +g150899 +S'of' +p150901 +tp150902 +a(g150899 +g150901 +S'light' +p150903 +tp150904 +a(g150901 +g150903 +S'to' +p150905 +tp150906 +a(g150903 +g150905 +S'announce' +p150907 +tp150908 +a(g150905 +g150907 +S'the' +p150909 +tp150910 +a(g150907 +g150909 +S'birth' +p150911 +tp150912 +a(g150909 +g150911 +S'of' +p150913 +tp150914 +a(g150911 +g150913 +S'christ,' +p150915 +tp150916 +a(g150913 +g150915 +S'while' +p150917 +tp150918 +a(g150915 +g150917 +S'his' +p150919 +tp150920 +a(g150917 +g150919 +S'older' +p150921 +tp150922 +a(g150919 +g150921 +S'companion' +p150923 +tp150924 +a(g150921 +g150923 +S'continues' +p150925 +tp150926 +a(g150923 +g150925 +S'to' +p150927 +tp150928 +a(g150925 +g150927 +S'doze.' +p150929 +tp150930 +a(g150927 +g150929 +S'in' +p150931 +tp150932 +a(g150929 +g150931 +S'the' +p150933 +tp150934 +a(g150931 +g150933 +S'manger' +p150935 +tp150936 +a(g150933 +g150935 +S'an' +p150937 +tp150938 +a(g150935 +g150937 +S'ox' +p150939 +tp150940 +a(g150937 +g150939 +S'and' +p150941 +tp150942 +a(g150939 +g150941 +S'ass' +p150943 +tp150944 +a(g150941 +g150943 +S'eat' +p150945 +tp150946 +a(g150943 +g150945 +S'from' +p150947 +tp150948 +a(g150945 +g150947 +S'a' +p150949 +tp150950 +a(g150947 +g150949 +S'straw-filled' +p150951 +tp150952 +a(g150949 +g150951 +S'trough,' +p150953 +tp150954 +a(g150951 +g150953 +S'an' +p150955 +tp150956 +a(g150953 +g150955 +S'allusion' +p150957 +tp150958 +a(g150955 +g150957 +S'to' +p150959 +tp150960 +a(g150957 +g150959 +S'a' +p150961 +tp150962 +a(g150959 +g150961 +S'passage' +p150963 +tp150964 +a(g150961 +g150963 +S'in' +p150965 +tp150966 +a(g150963 +g150965 +S'the' +p150967 +tp150968 +a(g150965 +g150967 +S'book' +p150969 +tp150970 +a(g150967 +g150969 +S'of' +p150971 +tp150972 +a(g150969 +g150971 +S'isaiah' +p150973 +tp150974 +a(g150971 +g150973 +S'in' +p150975 +tp150976 +a(g150973 +g150975 +S'which' +p150977 +tp150978 +a(g150975 +g150977 +S'isaiah' +p150979 +tp150980 +a(g150977 +g150979 +S'prophesized' +p150981 +tp150982 +a(g150979 +g150981 +S'even' +p150983 +tp150984 +a(g150981 +g150983 +S'livestock' +p150985 +tp150986 +a(g150983 +g150985 +S'would' +p150987 +tp150988 +a(g150985 +g150987 +S'recognize' +p150989 +tp150990 +a(g150987 +g150989 +S'the' +p150991 +tp150992 +a(g150989 +g150991 +S'infant' +p150993 +tp150994 +a(g150991 +g150993 +S'jesus' +p150995 +tp150996 +a(g150993 +g150995 +S'as' +p150997 +tp150998 +a(g150995 +g150997 +S'their' +p150999 +tp151000 +a(g150997 +g150999 +S'master.' +p151001 +tp151002 +a(g150999 +g151001 +S'an' +p151003 +tp151004 +a(g151001 +g151003 +S'owl' +p151005 +tp151006 +a(g151003 +g151005 +S'perched' +p151007 +tp151008 +a(g151005 +g151007 +S'on' +p151009 +tp151010 +a(g151007 +g151009 +S'the' +p151011 +tp151012 +a(g151009 +g151011 +S'crumbling' +p151013 +tp151014 +a(g151011 +g151013 +S'stable—the' +p151015 +tp151016 +a(g151013 +g151015 +S'deteriorated' +p151017 +tp151018 +a(g151015 +g151017 +S'state' +p151019 +tp151020 +a(g151017 +g151019 +S'representing' +p151021 +tp151022 +a(g151019 +g151021 +S'a' +p151023 +tp151024 +a(g151021 +g151023 +S'transition' +p151025 +tp151026 +a(g151023 +g151025 +S'to' +p151027 +tp151028 +a(g151025 +g151027 +S'a' +p151029 +tp151030 +a(g151027 +g151029 +S'new' +p151031 +tp151032 +a(g151029 +g151031 +S'world' +p151033 +tp151034 +a(g151031 +g151033 +S'order—may' +p151035 +tp151036 +a(g151033 +g151035 +S'refer' +p151037 +tp151038 +a(g151035 +g151037 +S'to' +p151039 +tp151040 +a(g151037 +g151039 +S'the' +p151041 +tp151042 +a(g151039 +g151041 +S'darkness' +p151043 +tp151044 +a(g151041 +g151043 +S'dispelled' +p151045 +tp151046 +a(g151043 +g151045 +S'by' +p151047 +tp151048 +a(g151045 +g151047 +S"christ's" +p151049 +tp151050 +a(g151047 +g151049 +S'birth.' +p151051 +tp151052 +a(g151049 +g151051 +S'although' +p151053 +tp151054 +a(g151051 +g151053 +S'the' +p151055 +tp151056 +a(g151053 +g151055 +S'original' +p151057 +tp151058 +a(g151055 +g151057 +S'reference' +p151059 +tp151060 +a(g151057 +g151059 +S'to' +p151061 +tp151062 +a(g151059 +g151061 +S'the' +p151063 +tp151064 +a(g151061 +g151063 +S'wise' +p151065 +tp151066 +a(g151063 +g151065 +S'men,' +p151067 +tp151068 +a(g151065 +g151067 +S'or' +p151069 +tp151070 +a(g151067 +g151069 +S'magi,' +p151071 +tp151072 +a(g151069 +g151071 +S'in' +p151073 +tp151074 +a(g151071 +g151073 +S'the' +p151075 +tp151076 +a(g151073 +g151075 +S'gospel' +p151077 +tp151078 +a(g151075 +g151077 +S'of' +p151079 +tp151080 +a(g151077 +g151079 +S'matthew' +p151081 +tp151082 +a(g151079 +g151081 +S'is' +p151083 +tp151084 +a(g151081 +g151083 +S'minimal,' +p151085 +tp151086 +a(g151083 +g151085 +S'churchmen' +p151087 +tp151088 +a(g151085 +g151087 +S'eventually' +p151089 +tp151090 +a(g151087 +g151089 +S'elevated' +p151091 +tp151092 +a(g151089 +g151091 +S'them' +p151093 +tp151094 +a(g151091 +g151093 +S'to' +p151095 +tp151096 +a(g151093 +g151095 +S'the' +p151097 +tp151098 +a(g151095 +g151097 +S'status' +p151099 +tp151100 +a(g151097 +g151099 +S'of' +p151101 +tp151102 +a(g151099 +g151101 +S'kings,' +p151103 +tp151104 +a(g151101 +g151103 +S'gave' +p151105 +tp151106 +a(g151103 +g151105 +S'them' +p151107 +tp151108 +a(g151105 +g151107 +S'names' +p151109 +tp151110 +a(g151107 +g151109 +S'--' +p151111 +tp151112 +a(g151109 +g151111 +S'balthasar,' +p151113 +tp151114 +a(g151111 +g151113 +S'caspar,' +p151115 +tp151116 +a(g151113 +g151115 +S'and' +p151117 +tp151118 +a(g151115 +g151117 +S'melchior' +p151119 +tp151120 +a(g151117 +g151119 +S'--' +p151121 +tp151122 +a(g151119 +g151121 +S'and' +p151123 +tp151124 +a(g151121 +g151123 +S'invested' +p151125 +tp151126 +a(g151123 +g151125 +S'their' +p151127 +tp151128 +a(g151125 +g151127 +S'gifts' +p151129 +tp151130 +a(g151127 +g151129 +S'of' +p151131 +tp151132 +a(g151129 +g151131 +S'gold,' +p151133 +tp151134 +a(g151131 +g151133 +S'frankincense,' +p151135 +tp151136 +a(g151133 +g151135 +S'and' +p151137 +tp151138 +a(g151135 +g151137 +S'myrrh' +p151139 +tp151140 +a(g151137 +g151139 +S'with' +p151141 +tp151142 +a(g151139 +g151141 +S'specific' +p151143 +tp151144 +a(g151141 +g151143 +S'meanings.' +p151145 +tp151146 +a(g151143 +g151145 +S'the' +p151147 +tp151148 +a(g151145 +g151147 +S'royal' +p151149 +tp151150 +a(g151147 +g151149 +S'status' +p151151 +tp151152 +a(g151149 +g151151 +S'and' +p151153 +tp151154 +a(g151151 +g151153 +S'foreign' +p151155 +tp151156 +a(g151153 +g151155 +S'origins' +p151157 +tp151158 +a(g151155 +g151157 +S'of' +p151159 +tp151160 +a(g151157 +g151159 +S'the' +p151161 +tp151162 +a(g151159 +g151161 +S'three' +p151163 +tp151164 +a(g151161 +g151163 +S'travelers' +p151165 +tp151166 +a(g151163 +g151165 +S'inspired' +p151167 +tp151168 +a(g151165 +g151167 +S'medieval' +p151169 +tp151170 +a(g151167 +g151169 +S'and' +p151171 +tp151172 +a(g151169 +g151171 +S'renaissance' +p151173 +tp151174 +a(g151171 +g151173 +S'artists,' +p151175 +tp151176 +a(g151173 +g151175 +S'who' +p151177 +tp151178 +a(g151175 +g151177 +S'gave' +p151179 +tp151180 +a(g151177 +g151179 +S'free' +p151181 +tp151182 +a(g151179 +g151181 +S'reign' +p151183 +tp151184 +a(g151181 +g151183 +S'to' +p151185 +tp151186 +a(g151183 +g151185 +S'their' +p151187 +tp151188 +a(g151185 +g151187 +S'imaginations' +p151189 +tp151190 +a(g151187 +g151189 +S'in' +p151191 +tp151192 +a(g151189 +g151191 +S'treating' +p151193 +tp151194 +a(g151191 +g151193 +S'the' +p151195 +tp151196 +a(g151193 +g151195 +S'colorful' +p151197 +tp151198 +a(g151195 +g151197 +S'subject.' +p151199 +tp151200 +a(g151197 +g151199 +S'juan' +p151201 +tp151202 +a(g151199 +g151201 +S'de' +p151203 +tp151204 +a(g151201 +g151203 +S'flandes' +p151205 +tp151206 +a(g151203 +g151205 +S'(john' +p151207 +tp151208 +a(g151205 +g151207 +S'of' +p151209 +tp151210 +a(g151207 +g151209 +S'flanders)' +p151211 +tp151212 +a(g151209 +g151211 +S'took' +p151213 +tp151214 +a(g151211 +g151213 +S'the' +p151215 +tp151216 +a(g151213 +g151215 +S'opportunity' +p151217 +tp151218 +a(g151215 +g151217 +S'to' +p151219 +tp151220 +a(g151217 +g151219 +S'paint' +p151221 +tp151222 +a(g151219 +g151221 +S'a' +p151223 +tp151224 +a(g151221 +g151223 +S'fanciful' +p151225 +tp151226 +a(g151223 +g151225 +S'scene' +p151227 +tp151228 +a(g151225 +g151227 +S'replete' +p151229 +tp151230 +a(g151227 +g151229 +S'with' +p151231 +tp151232 +a(g151229 +g151231 +S'opulent' +p151233 +tp151234 +a(g151231 +g151233 +S'costumes,' +p151235 +tp151236 +a(g151233 +g151235 +S'gleaming' +p151237 +tp151238 +a(g151235 +g151237 +S'gold' +p151239 +tp151240 +a(g151237 +g151239 +S'and' +p151241 +tp151242 +a(g151239 +g151241 +S'jewels,' +p151243 +tp151244 +a(g151241 +g151243 +S'and' +p151245 +tp151246 +a(g151243 +g151245 +S'varied' +p151247 +tp151248 +a(g151245 +g151247 +S'racial' +p151249 +tp151250 +a(g151247 +g151249 +S'types.' +p151251 +tp151252 +a(g151249 +g151251 +S'all' +p151253 +tp151254 +a(g151251 +g151253 +S'wear' +p151255 +tp151256 +a(g151253 +g151255 +S'exotic' +p151257 +tp151258 +a(g151255 +g151257 +S'headgear' +p151259 +tp151260 +a(g151257 +g151259 +S'and' +p151261 +tp151262 +a(g151259 +g151261 +S'carry' +p151263 +tp151264 +a(g151261 +g151263 +S'ornate' +p151265 +tp151266 +a(g151263 +g151265 +S'vessels' +p151267 +tp151268 +a(g151265 +g151267 +S'containing' +p151269 +tp151270 +a(g151267 +g151269 +S'their' +p151271 +tp151272 +a(g151269 +g151271 +S'gifts.' +p151273 +tp151274 +a(g151271 +g151273 +S'visible' +p151275 +tp151276 +a(g151273 +g151275 +S'in' +p151277 +tp151278 +a(g151275 +g151277 +S'the' +p151279 +tp151280 +a(g151277 +g151279 +S'distance,' +p151281 +tp151282 +a(g151279 +g151281 +S'on' +p151283 +tp151284 +a(g151281 +g151283 +S'horseback,' +p151285 +tp151286 +a(g151283 +g151285 +S'are' +p151287 +tp151288 +a(g151285 +g151287 +S'several' +p151289 +tp151290 +a(g151287 +g151289 +S'smaller' +p151291 +tp151292 +a(g151289 +g151291 +S'figures,' +p151293 +tp151294 +a(g151291 +g151293 +S'members' +p151295 +tp151296 +a(g151293 +g151295 +S'of' +p151297 +tp151298 +a(g151295 +g151297 +S'the' +p151299 +tp151300 +a(g151297 +g151299 +S"kings'" +p151301 +tp151302 +a(g151299 +g151301 +S'retinue.' +p151303 +tp151304 +a(g151301 +g151303 +S'although' +p151305 +tp151306 +a(g151303 +g151305 +S'there' +p151307 +tp151308 +a(g151305 +g151307 +S'are' +p151309 +tp151310 +a(g151307 +g151309 +S'numerous' +p151311 +tp151312 +a(g151309 +g151311 +S'references' +p151313 +tp151314 +a(g151311 +g151313 +S'to' +p151315 +tp151316 +a(g151313 +g151315 +S'this' +p151317 +tp151318 +a(g151315 +g151317 +S'presumably' +p151319 +tp151320 +a(g151317 +g151319 +S'northern' +p151321 +tp151322 +a(g151319 +g151321 +S'painter' +p151323 +tp151324 +a(g151321 +g151323 +S'in' +p151325 +tp151326 +a(g151323 +g151325 +S'the' +p151327 +tp151328 +a(g151325 +g151327 +S'records' +p151329 +tp151330 +a(g151327 +g151329 +S'of' +p151331 +tp151332 +a(g151329 +g151331 +S'his' +p151333 +tp151334 +a(g151331 +g151333 +S'spanish' +p151335 +tp151336 +a(g151333 +g151335 +S'patrons,' +p151337 +tp151338 +a(g151335 +g151337 +S'nothing' +p151339 +tp151340 +a(g151337 +g151339 +S'is' +p151341 +tp151342 +a(g151339 +g151341 +S'known' +p151343 +tp151344 +a(g151341 +g151343 +S'of' +p151345 +tp151346 +a(g151343 +g151345 +S'his' +p151347 +tp151348 +a(g151345 +g151347 +S'early' +p151349 +tp151350 +a(g151347 +g151349 +S'years.' +p151351 +tp151352 +a(g151349 +g151351 +S'his' +p151353 +tp151354 +a(g151351 +g151353 +S'reputation' +p151355 +tp151356 +a(g151353 +g151355 +S'as' +p151357 +tp151358 +a(g151355 +g151357 +S'an' +p151359 +tp151360 +a(g151357 +g151359 +S'artist' +p151361 +tp151362 +a(g151359 +g151361 +S'derives' +p151363 +tp151364 +a(g151361 +g151363 +S'entirely' +p151365 +tp151366 +a(g151363 +g151365 +S'from' +p151367 +tp151368 +a(g151365 +g151367 +S'the' +p151369 +tp151370 +a(g151367 +g151369 +S'works' +p151371 +tp151372 +a(g151369 +g151371 +S'he' +p151373 +tp151374 +a(g151371 +g151373 +S'produced' +p151375 +tp151376 +a(g151373 +g151375 +S'in' +p151377 +tp151378 +a(g151375 +g151377 +S'spain,' +p151379 +tp151380 +a(g151377 +g151379 +S'where' +p151381 +tp151382 +a(g151379 +g151381 +S'he' +p151383 +tp151384 +a(g151381 +g151383 +S'served' +p151385 +tp151386 +a(g151383 +g151385 +S'as' +p151387 +tp151388 +a(g151385 +g151387 +S'court' +p151389 +tp151390 +a(g151387 +g151389 +S'painter' +p151391 +tp151392 +a(g151389 +g151391 +S'to' +p151393 +tp151394 +a(g151391 +g151393 +S'queen' +p151395 +tp151396 +a(g151393 +g151395 +S'isabella' +p151397 +tp151398 +a(g151395 +g151397 +S'until' +p151399 +tp151400 +a(g151397 +g151399 +S'her' +p151401 +tp151402 +a(g151399 +g151401 +S'death' +p151403 +tp151404 +a(g151401 +g151403 +S'in' +p151405 +tp151406 +a(g151403 +g151405 +S'1504.' +p151407 +tp151408 +a(g151405 +g151407 +S'later,' +p151409 +tp151410 +a(g151407 +g151409 +S'he' +p151411 +tp151412 +a(g151409 +g151411 +S'painted' +p151413 +tp151414 +a(g151411 +g151413 +S'this' +p151415 +tp151416 +a(g151413 +g151415 +S'panel' +p151417 +tp151418 +a(g151415 +g151417 +S'and' +p151419 +tp151420 +a(g151417 +g151419 +S'its' +p151421 +tp151422 +a(g151419 +g151421 +S'three' +p151423 +tp151424 +a(g151421 +g151423 +S'companion' +p151425 +tp151426 +a(g151423 +g151425 +S'pieces,' +p151427 +tp151428 +a(g151425 +g151427 +S'also' +p151429 +tp151430 +a(g151427 +g151429 +S'in' +p151431 +tp151432 +a(g151429 +g151431 +S'the' +p151433 +tp151434 +a(g151431 +g151433 +S'national' +p151435 +tp151436 +a(g151433 +g151435 +S'gallery;' +p151437 +tp151438 +a(g151435 +g151437 +S'together,' +p151439 +tp151440 +a(g151437 +g151439 +S'they' +p151441 +tp151442 +a(g151439 +g151441 +S'once' +p151443 +tp151444 +a(g151441 +g151443 +S'formed' +p151445 +tp151446 +a(g151443 +g151445 +S'part' +p151447 +tp151448 +a(g151445 +g151447 +S'of' +p151449 +tp151450 +a(g151447 +g151449 +S'a' +p151451 +tp151452 +a(g151449 +g151451 +S'large' +p151453 +tp151454 +a(g151451 +g151453 +S'altarpiece' +p151455 +tp151456 +a(g151453 +g151455 +S'in' +p151457 +tp151458 +a(g151455 +g151457 +S'the' +p151459 +tp151460 +a(g151457 +g151459 +S'church' +p151461 +tp151462 +a(g151459 +g151461 +S'of' +p151463 +tp151464 +a(g151461 +g151463 +S'san' +p151465 +tp151466 +a(g151463 +g151465 +S'lázaro' +p151467 +tp151468 +a(g151465 +g151467 +S'in' +p151469 +tp151470 +a(g151467 +g151469 +S'palencia.' +p151471 +tp151472 +a(g151469 +g151471 +S'the' +p151473 +tp151474 +a(g151471 +g151473 +S'gospels' +p151475 +tp151476 +a(g151473 +g151475 +S'relate' +p151477 +tp151478 +a(g151475 +g151477 +S'that' +p151479 +tp151480 +a(g151477 +g151479 +S'when' +p151481 +tp151482 +a(g151479 +g151481 +S'jesus' +p151483 +tp151484 +a(g151481 +g151483 +S'was' +p151485 +tp151486 +a(g151483 +g151485 +S'baptized' +p151487 +tp151488 +a(g151485 +g151487 +S'in' +p151489 +tp151490 +a(g151487 +g151489 +S'the' +p151491 +tp151492 +a(g151489 +g151491 +S'river' +p151493 +tp151494 +a(g151491 +g151493 +S'jordan,' +p151495 +tp151496 +a(g151493 +g151495 +S'he' +p151497 +tp151498 +a(g151495 +g151497 +S'saw' +p151499 +tp151500 +a(g151497 +g151499 +S'the' +p151501 +tp151502 +a(g151499 +g151501 +S'heavens' +p151503 +tp151504 +a(g151501 +g151503 +S'open' +p151505 +tp151506 +a(g151503 +g151505 +S'and' +p151507 +tp151508 +a(g151505 +g151507 +S'the' +p151509 +tp151510 +a(g151507 +g151509 +S'holy' +p151511 +tp151512 +a(g151509 +g151511 +S'spirit' +p151513 +tp151514 +a(g151511 +g151513 +S'descend' +p151515 +tp151516 +a(g151513 +g151515 +S'toward' +p151517 +tp151518 +a(g151515 +g151517 +S'him' +p151519 +tp151520 +a(g151517 +g151519 +S'like' +p151521 +tp151522 +a(g151519 +g151521 +S'a' +p151523 +tp151524 +a(g151521 +g151523 +S'dove.' +p151525 +tp151526 +a(g151523 +g151525 +S'god' +p151527 +tp151528 +a(g151525 +g151527 +S'the' +p151529 +tp151530 +a(g151527 +g151529 +S'father' +p151531 +tp151532 +a(g151529 +g151531 +S'then' +p151533 +tp151534 +a(g151531 +g151533 +S'spoke,' +p151535 +tp151536 +a(g151533 +g151535 +S'"this' +p151537 +tp151538 +a(g151535 +g151537 +S'is' +p151539 +tp151540 +a(g151537 +g151539 +S'my' +p151541 +tp151542 +a(g151539 +g151541 +S'beloved' +p151543 +tp151544 +a(g151541 +g151543 +S'son,' +p151545 +tp151546 +a(g151543 +g151545 +S'in' +p151547 +tp151548 +a(g151545 +g151547 +S'whom' +p151549 +tp151550 +a(g151547 +g151549 +S'i' +p151551 +tp151552 +a(g151549 +g151551 +S'am' +p151553 +tp151554 +a(g151551 +g151553 +S'well' +p151555 +tp151556 +a(g151553 +g151555 +S'pleased."' +p151557 +tp151558 +a(g151555 +g151557 +S'both' +p151559 +tp151560 +a(g151557 +g151559 +S'appear' +p151561 +tp151562 +a(g151559 +g151561 +S'within' +p151563 +tp151564 +a(g151561 +g151563 +S'the' +p151565 +tp151566 +a(g151563 +g151565 +S'round' +p151567 +tp151568 +a(g151565 +g151567 +S'mandorlas' +p151569 +tp151570 +a(g151567 +g151569 +S'that' +p151571 +tp151572 +a(g151569 +g151571 +S'juan' +p151573 +tp151574 +a(g151571 +g151573 +S'de' +p151575 +tp151576 +a(g151573 +g151575 +S'flandes' +p151577 +tp151578 +a(g151575 +g151577 +S'painted' +p151579 +tp151580 +a(g151577 +g151579 +S'in' +p151581 +tp151582 +a(g151579 +g151581 +S'many' +p151583 +tp151584 +a(g151581 +g151583 +S'of' +p151585 +tp151586 +a(g151583 +g151585 +S'the' +p151587 +tp151588 +a(g151585 +g151587 +S'surviving' +p151589 +tp151590 +a(g151587 +g151589 +S'panels' +p151591 +tp151592 +a(g151589 +g151591 +S'of' +p151593 +tp151594 +a(g151591 +g151593 +S'his' +p151595 +tp151596 +a(g151593 +g151595 +S'original' +p151597 +tp151598 +a(g151595 +g151597 +S'altarpiece.' +p151599 +tp151600 +a(g151597 +g151599 +S'the' +p151601 +tp151602 +a(g151599 +g151601 +S'formality' +p151603 +tp151604 +a(g151601 +g151603 +S'and' +p151605 +tp151606 +a(g151603 +g151605 +S'clear' +p151607 +tp151608 +a(g151605 +g151607 +S'outlines' +p151609 +tp151610 +a(g151607 +g151609 +S'of' +p151611 +tp151612 +a(g151609 +g151611 +S"largillière's" +p151613 +tp151614 +a(g151611 +g151613 +S'the' +p151615 +tp151616 +a(g151613 +g151615 +S'anonymous' +p151617 +tp151618 +a(g151615 +g151617 +S'master' +p151619 +tp151620 +a(g151617 +g151619 +S'who' +p151621 +tp151622 +a(g151619 +g151621 +S'painted' +p151623 +tp151624 +a(g151621 +g151623 +S'this' +p151625 +tp151626 +a(g151623 +g151625 +S'work' +p151627 +tp151628 +a(g151625 +g151627 +S'was' +p151629 +tp151630 +a(g151627 +g151629 +S'the' +p151631 +tp151632 +a(g151629 +g151631 +S'leading' +p151633 +tp151634 +a(g151631 +g151633 +S'painter' +p151635 +tp151636 +a(g151633 +g151635 +S'in' +p151637 +tp151638 +a(g151635 +g151637 +S'cologne' +p151639 +tp151640 +a(g151637 +g151639 +S'shortly' +p151641 +tp151642 +a(g151639 +g151641 +S'after' +p151643 +tp151644 +a(g151641 +g151643 +S'1400.' +p151645 +tp151646 +a(g151643 +g151645 +S'his' +p151647 +tp151648 +a(g151645 +g151647 +S'name' +p151649 +tp151650 +a(g151647 +g151649 +S'derives' +p151651 +tp151652 +a(g151649 +g151651 +S'from' +p151653 +tp151654 +a(g151651 +g151653 +S'his' +p151655 +tp151656 +a(g151653 +g151655 +S'finest' +p151657 +tp151658 +a(g151655 +g151657 +S'work,' +p151659 +tp151660 +a(g151657 +g151659 +S'the' +p151661 +tp151662 +a(g151659 +g151661 +S'painting' +p151663 +tp151664 +a(g151661 +g151663 +S'was' +p151665 +tp151666 +a(g151663 +g151665 +S'probably' +p151667 +tp151668 +a(g151665 +g151667 +S'used' +p151669 +tp151670 +a(g151667 +g151669 +S'as' +p151671 +tp151672 +a(g151669 +g151671 +S'a' +p151673 +tp151674 +a(g151671 +g151673 +S'focus' +p151675 +tp151676 +a(g151673 +g151675 +S'for' +p151677 +tp151678 +a(g151675 +g151677 +S'prayers' +p151679 +tp151680 +a(g151677 +g151679 +S'and' +p151681 +tp151682 +a(g151679 +g151681 +S'meditation' +p151683 +tp151684 +a(g151681 +g151683 +S'by' +p151685 +tp151686 +a(g151683 +g151685 +S'a' +p151687 +tp151688 +a(g151685 +g151687 +S'carthusian' +p151689 +tp151690 +a(g151687 +g151689 +S'monk,' +p151691 +tp151692 +a(g151689 +g151691 +S'since' +p151693 +tp151694 +a(g151691 +g151693 +S'a' +p151695 +tp151696 +a(g151693 +g151695 +S'member' +p151697 +tp151698 +a(g151695 +g151697 +S'of' +p151699 +tp151700 +a(g151697 +g151699 +S'that' +p151701 +tp151702 +a(g151699 +g151701 +S'monastic' +p151703 +tp151704 +a(g151701 +g151703 +S'order' +p151705 +tp151706 +a(g151703 +g151705 +S'is' +p151707 +tp151708 +a(g151705 +g151707 +S'shown' +p151709 +tp151710 +a(g151707 +g151709 +S'kneeling' +p151711 +tp151712 +a(g151709 +g151711 +S'at' +p151713 +tp151714 +a(g151711 +g151713 +S'the' +p151715 +tp151716 +a(g151713 +g151715 +S'right' +p151717 +tp151718 +a(g151715 +g151717 +S'of' +p151719 +tp151720 +a(g151717 +g151719 +S'the' +p151721 +tp151722 +a(g151719 +g151721 +S'cross.' +p151723 +tp151724 +a(g151721 +g151723 +S'the' +p151725 +tp151726 +a(g151723 +g151725 +S"painting's" +p151727 +tp151728 +a(g151725 +g151727 +S'small' +p151729 +tp151730 +a(g151727 +g151729 +S'size' +p151731 +tp151732 +a(g151729 +g151731 +S'would' +p151733 +tp151734 +a(g151731 +g151733 +S'make' +p151735 +tp151736 +a(g151733 +g151735 +S'it' +p151737 +tp151738 +a(g151735 +g151737 +S'suitable' +p151739 +tp151740 +a(g151737 +g151739 +S'for' +p151741 +tp151742 +a(g151739 +g151741 +S'such' +p151743 +tp151744 +a(g151741 +g151743 +S'use,' +p151745 +tp151746 +a(g151743 +g151745 +S'probably' +p151747 +tp151748 +a(g151745 +g151747 +S'in' +p151749 +tp151750 +a(g151747 +g151749 +S'the' +p151751 +tp151752 +a(g151749 +g151751 +S"monk's" +p151753 +tp151754 +a(g151751 +g151753 +S'cell.' +p151755 +tp151756 +a(g151753 +g151755 +S'cologne' +p151757 +tp151758 +a(g151755 +g151757 +S'was' +p151759 +tp151760 +a(g151757 +g151759 +S'the' +p151761 +tp151762 +a(g151759 +g151761 +S'largest' +p151763 +tp151764 +a(g151761 +g151763 +S'and' +p151765 +tp151766 +a(g151763 +g151765 +S'most' +p151767 +tp151768 +a(g151765 +g151767 +S'densely' +p151769 +tp151770 +a(g151767 +g151769 +S'populated' +p151771 +tp151772 +a(g151769 +g151771 +S'city' +p151773 +tp151774 +a(g151771 +g151773 +S'in' +p151775 +tp151776 +a(g151773 +g151775 +S'germany' +p151777 +tp151778 +a(g151775 +g151777 +S'at' +p151779 +tp151780 +a(g151777 +g151779 +S'the' +p151781 +tp151782 +a(g151779 +g151781 +S'end' +p151783 +tp151784 +a(g151781 +g151783 +S'of' +p151785 +tp151786 +a(g151783 +g151785 +S'the' +p151787 +tp151788 +a(g151785 +g151787 +S'middle' +p151789 +tp151790 +a(g151787 +g151789 +S'ages.' +p151791 +tp151792 +a(g151789 +g151791 +S'it' +p151793 +tp151794 +a(g151791 +g151793 +S'supported' +p151795 +tp151796 +a(g151793 +g151795 +S'a' +p151797 +tp151798 +a(g151795 +g151797 +S'wealthy' +p151799 +tp151800 +a(g151797 +g151799 +S'middle' +p151801 +tp151802 +a(g151799 +g151801 +S'class' +p151803 +tp151804 +a(g151801 +g151803 +S'and' +p151805 +tp151806 +a(g151803 +g151805 +S'many' +p151807 +tp151808 +a(g151805 +g151807 +S'religious' +p151809 +tp151810 +a(g151807 +g151809 +S'institutions,' +p151811 +tp151812 +a(g151809 +g151811 +S'including' +p151813 +tp151814 +a(g151811 +g151813 +S'the' +p151815 +tp151816 +a(g151813 +g151815 +S'charterhouse' +p151817 +tp151818 +a(g151815 +g151817 +S'of' +p151819 +tp151820 +a(g151817 +g151819 +S'saint' +p151821 +tp151822 +a(g151819 +g151821 +S'barbara,' +p151823 +tp151824 +a(g151821 +g151823 +S'for' +p151825 +tp151826 +a(g151823 +g151825 +S'which' +p151827 +tp151828 +a(g151825 +g151827 +S'this' +p151829 +tp151830 +a(g151827 +g151829 +S'bonnier' +p151831 +tp151832 +a(g151829 +g151831 +S'was' +p151833 +tp151834 +a(g151831 +g151833 +S'the' +p151835 +tp151836 +a(g151833 +g151835 +S'perfect' +p151837 +tp151838 +a(g151835 +g151837 +S'eighteenth-century' +p151839 +tp151840 +a(g151837 +g151839 +S'although' +p151841 +tp151842 +a(g151839 +g151841 +S'called' +p151843 +tp151844 +a(g151841 +g151843 +S'a' +p151845 +tp151846 +a(g151843 +g151845 +S'nativity,' +p151847 +tp151848 +a(g151845 +g151847 +S'this' +p151849 +tp151850 +a(g151847 +g151849 +S'painting' +p151851 +tp151852 +a(g151849 +g151851 +S'lacks' +p151853 +tp151854 +a(g151851 +g151853 +S'the' +p151855 +tp151856 +a(g151853 +g151855 +S'manger,' +p151857 +tp151858 +a(g151855 +g151857 +S'ox,' +p151859 +tp151860 +a(g151857 +g151859 +S'and' +p151861 +tp151862 +a(g151859 +g151861 +S'ass' +p151863 +tp151864 +a(g151861 +g151863 +S'traditionally' +p151865 +tp151866 +a(g151863 +g151865 +S'found' +p151867 +tp151868 +a(g151865 +g151867 +S'in' +p151869 +tp151870 +a(g151867 +g151869 +S'scenes' +p151871 +tp151872 +a(g151869 +g151871 +S'of' +p151873 +tp151874 +a(g151871 +g151873 +S"christ's" +p151875 +tp151876 +a(g151873 +g151875 +S'birth.' +p151877 +tp151878 +a(g151875 +g151877 +S'it' +p151879 +tp151880 +a(g151877 +g151879 +S'would' +p151881 +tp151882 +a(g151879 +g151881 +S'be' +p151883 +tp151884 +a(g151881 +g151883 +S'better' +p151885 +tp151886 +a(g151883 +g151885 +S'interpreted' +p151887 +tp151888 +a(g151885 +g151887 +S'as' +p151889 +tp151890 +a(g151887 +g151889 +S'a' +p151891 +tp151892 +a(g151889 +g151891 +S'mystical' +p151893 +tp151894 +a(g151891 +g151893 +S'adoration' +p151895 +tp151896 +a(g151893 +g151895 +S'of' +p151897 +tp151898 +a(g151895 +g151897 +S'saints.' +p151899 +tp151900 +a(g151897 +g151899 +S'john' +p151901 +tp151902 +a(g151899 +g151901 +S'the' +p151903 +tp151904 +a(g151901 +g151903 +S'baptist,' +p151905 +tp151906 +a(g151903 +g151905 +S'catherine' +p151907 +tp151908 +a(g151905 +g151907 +S'of' +p151909 +tp151910 +a(g151907 +g151909 +S'alexandria,' +p151911 +tp151912 +a(g151909 +g151911 +S'and' +p151913 +tp151914 +a(g151911 +g151913 +S'the' +p151915 +tp151916 +a(g151913 +g151915 +S'virgin' +p151917 +tp151918 +a(g151915 +g151917 +S'are' +p151919 +tp151920 +a(g151917 +g151919 +S'in' +p151921 +tp151922 +a(g151919 +g151921 +S'the' +p151923 +tp151924 +a(g151921 +g151923 +S'foreground.' +p151925 +tp151926 +a(g151923 +g151925 +S'from' +p151927 +tp151928 +a(g151925 +g151927 +S'left' +p151929 +tp151930 +a(g151927 +g151929 +S'to' +p151931 +tp151932 +a(g151929 +g151931 +S'right' +p151933 +tp151934 +a(g151931 +g151933 +S'standing' +p151935 +tp151936 +a(g151933 +g151935 +S'behind' +p151937 +tp151938 +a(g151935 +g151937 +S'them' +p151939 +tp151940 +a(g151937 +g151939 +S'are' +p151941 +tp151942 +a(g151939 +g151941 +S'sebastian,' +p151943 +tp151944 +a(g151941 +g151943 +S'pierced' +p151945 +tp151946 +a(g151943 +g151945 +S'with' +p151947 +tp151948 +a(g151945 +g151947 +S'arrows;' +p151949 +tp151950 +a(g151947 +g151949 +S'the' +p151951 +tp151952 +a(g151949 +g151951 +S'pilgrim' +p151953 +tp151954 +a(g151951 +g151953 +S'james' +p151955 +tp151956 +a(g151953 +g151955 +S'major;' +p151957 +tp151958 +a(g151955 +g151957 +S'joseph,' +p151959 +tp151960 +a(g151957 +g151959 +S'the' +p151961 +tp151962 +a(g151959 +g151961 +S'husband' +p151963 +tp151964 +a(g151961 +g151963 +S'of' +p151965 +tp151966 +a(g151963 +g151965 +S'mary;' +p151967 +tp151968 +a(g151965 +g151967 +S'and' +p151969 +tp151970 +a(g151967 +g151969 +S'the' +p151971 +tp151972 +a(g151969 +g151971 +S'pilgrim' +p151973 +tp151974 +a(g151971 +g151973 +S'roch.' +p151975 +tp151976 +a(g151973 +g151975 +S'soaring' +p151977 +tp151978 +a(g151975 +g151977 +S'through' +p151979 +tp151980 +a(g151977 +g151979 +S'the' +p151981 +tp151982 +a(g151979 +g151981 +S'heavens' +p151983 +tp151984 +a(g151981 +g151983 +S'is' +p151985 +tp151986 +a(g151983 +g151985 +S'god' +p151987 +tp151988 +a(g151985 +g151987 +S'the' +p151989 +tp151990 +a(g151987 +g151989 +S'father' +p151991 +tp151992 +a(g151989 +g151991 +S'accompanied' +p151993 +tp151994 +a(g151991 +g151993 +S'by' +p151995 +tp151996 +a(g151993 +g151995 +S'a' +p151997 +tp151998 +a(g151995 +g151997 +S'phalanx' +p151999 +tp152000 +a(g151997 +g151999 +S'of' +p152001 +tp152002 +a(g151999 +g152001 +S'putti.' +p152003 +tp152004 +a(g152001 +g152003 +S'commissioned' +p152005 +tp152006 +a(g152003 +g152005 +S'by' +p152007 +tp152008 +a(g152005 +g152007 +S'a' +p152009 +tp152010 +a(g152007 +g152009 +S'member' +p152011 +tp152012 +a(g152009 +g152011 +S'of' +p152013 +tp152014 +a(g152011 +g152013 +S'the' +p152015 +tp152016 +a(g152013 +g152015 +S'baciadonne' +p152017 +tp152018 +a(g152015 +g152017 +S'family' +p152019 +tp152020 +a(g152017 +g152019 +S'of' +p152021 +tp152022 +a(g152019 +g152021 +S'genoa,' +p152023 +tp152024 +a(g152021 +g152023 +S'this' +p152025 +tp152026 +a(g152023 +g152025 +S'large' +p152027 +tp152028 +a(g152025 +g152027 +S'altarpiece' +p152029 +tp152030 +a(g152027 +g152029 +S'is' +p152031 +tp152032 +a(g152029 +g152031 +S'the' +p152033 +tp152034 +a(g152031 +g152033 +S'most' +p152035 +tp152036 +a(g152033 +g152035 +S'important' +p152037 +tp152038 +a(g152035 +g152037 +S'religious' +p152039 +tp152040 +a(g152037 +g152039 +S'painting' +p152041 +tp152042 +a(g152039 +g152041 +S'by' +p152043 +tp152044 +a(g152041 +g152043 +S'perino' +p152045 +tp152046 +a(g152043 +g152045 +S'del' +p152047 +tp152048 +a(g152045 +g152047 +S'vaga' +p152049 +tp152050 +a(g152047 +g152049 +S'to' +p152051 +tp152052 +a(g152049 +g152051 +S'survive.' +p152053 +tp152054 +a(g152051 +g152053 +S'perino' +p152055 +tp152056 +a(g152053 +g152055 +S'had' +p152057 +tp152058 +a(g152055 +g152057 +S'been' +p152059 +tp152060 +a(g152057 +g152059 +S'a' +p152061 +tp152062 +a(g152059 +g152061 +S'pupil' +p152063 +tp152064 +a(g152061 +g152063 +S'of' +p152065 +tp152066 +a(g152063 +g152065 +S'raphael' +p152067 +tp152068 +a(g152065 +g152067 +S'in' +p152069 +tp152070 +a(g152067 +g152069 +S'rome,' +p152071 +tp152072 +a(g152069 +g152071 +S'and' +p152073 +tp152074 +a(g152071 +g152073 +S'his' +p152075 +tp152076 +a(g152073 +g152075 +S'indebtedness' +p152077 +tp152078 +a(g152075 +g152077 +S'to' +p152079 +tp152080 +a(g152077 +g152079 +S'his' +p152081 +tp152082 +a(g152079 +g152081 +S'master' +p152083 +tp152084 +a(g152081 +g152083 +S'is' +p152085 +tp152086 +a(g152083 +g152085 +S'evident' +p152087 +tp152088 +a(g152085 +g152087 +S'here' +p152089 +tp152090 +a(g152087 +g152089 +S'in' +p152091 +tp152092 +a(g152089 +g152091 +S'the' +p152093 +tp152094 +a(g152091 +g152093 +S'idealization' +p152095 +tp152096 +a(g152093 +g152095 +S'of' +p152097 +tp152098 +a(g152095 +g152097 +S'the' +p152099 +tp152100 +a(g152097 +g152099 +S'figures' +p152101 +tp152102 +a(g152099 +g152101 +S'and' +p152103 +tp152104 +a(g152101 +g152103 +S'the' +p152105 +tp152106 +a(g152103 +g152105 +S'grace' +p152107 +tp152108 +a(g152105 +g152107 +S'of' +p152109 +tp152110 +a(g152107 +g152109 +S'the' +p152111 +tp152112 +a(g152109 +g152111 +S'postures.' +p152113 +tp152114 +a(g152111 +g152113 +S'like' +p152115 +tp152116 +a(g152113 +g152115 +S'others' +p152117 +tp152118 +a(g152115 +g152117 +S'of' +p152119 +tp152120 +a(g152117 +g152119 +S'his' +p152121 +tp152122 +a(g152119 +g152121 +S'generation,' +p152123 +tp152124 +a(g152121 +g152123 +S'however,' +p152125 +tp152126 +a(g152123 +g152125 +S'perino' +p152127 +tp152128 +a(g152125 +g152127 +S'departed' +p152129 +tp152130 +a(g152127 +g152129 +S'from' +p152131 +tp152132 +a(g152129 +g152131 +S"raphael's" +p152133 +tp152134 +a(g152131 +g152133 +S'serene' +p152135 +tp152136 +a(g152133 +g152135 +S'harmonies' +p152137 +tp152138 +a(g152135 +g152137 +S'to' +p152139 +tp152140 +a(g152137 +g152139 +S'instill' +p152141 +tp152142 +a(g152139 +g152141 +S'in' +p152143 +tp152144 +a(g152141 +g152143 +S'his' +p152145 +tp152146 +a(g152143 +g152145 +S'works' +p152147 +tp152148 +a(g152145 +g152147 +S'a' +p152149 +tp152150 +a(g152147 +g152149 +S'greater' +p152151 +tp152152 +a(g152149 +g152151 +S'degree' +p152153 +tp152154 +a(g152151 +g152153 +S'of' +p152155 +tp152156 +a(g152153 +g152155 +S'tension' +p152157 +tp152158 +a(g152155 +g152157 +S'and' +p152159 +tp152160 +a(g152157 +g152159 +S'artifice.' +p152161 +tp152162 +a(g152159 +g152161 +S'in' +p152163 +tp152164 +a(g152161 +g152163 +S'this' +p152165 +tp152166 +a(g152163 +g152165 +S'altarpiece' +p152167 +tp152168 +a(g152165 +g152167 +S'the' +p152169 +tp152170 +a(g152167 +g152169 +S'studied' +p152171 +tp152172 +a(g152169 +g152171 +S'gestures' +p152173 +tp152174 +a(g152171 +g152173 +S'hang' +p152175 +tp152176 +a(g152173 +g152175 +S'in' +p152177 +tp152178 +a(g152175 +g152177 +S'the' +p152179 +tp152180 +a(g152177 +g152179 +S'air' +p152181 +tp152182 +a(g152179 +g152181 +S'as' +p152183 +tp152184 +a(g152181 +g152183 +S'if' +p152185 +tp152186 +a(g152183 +g152185 +S'to' +p152187 +tp152188 +a(g152185 +g152187 +S'function' +p152189 +tp152190 +a(g152187 +g152189 +S'in' +p152191 +tp152192 +a(g152189 +g152191 +S'the' +p152193 +tp152194 +a(g152191 +g152193 +S'place' +p152195 +tp152196 +a(g152193 +g152195 +S'of' +p152197 +tp152198 +a(g152195 +g152197 +S'speech.' +p152199 +tp152200 +a(g152197 +g152199 +S'poses' +p152201 +tp152202 +a(g152199 +g152201 +S'seem' +p152203 +tp152204 +a(g152201 +g152203 +S'choreographed' +p152205 +tp152206 +a(g152203 +g152205 +S'and,' +p152207 +tp152208 +a(g152205 +g152207 +S'in' +p152209 +tp152210 +a(g152207 +g152209 +S'several' +p152211 +tp152212 +a(g152209 +g152211 +S'instances,' +p152213 +tp152214 +a(g152211 +g152213 +S'tipped' +p152215 +tp152216 +a(g152213 +g152215 +S'off' +p152217 +tp152218 +a(g152215 +g152217 +S'balance.' +p152219 +tp152220 +a(g152217 +g152219 +S'rich' +p152221 +tp152222 +a(g152219 +g152221 +S'colors' +p152223 +tp152224 +a(g152221 +g152223 +S'glow' +p152225 +tp152226 +a(g152223 +g152225 +S'phosphorescently' +p152227 +tp152228 +a(g152225 +g152227 +S'with' +p152229 +tp152230 +a(g152227 +g152229 +S'a' +p152231 +tp152232 +a(g152229 +g152231 +S'stained-glass' +p152233 +tp152234 +a(g152231 +g152233 +S'intensity' +p152235 +tp152236 +a(g152233 +g152235 +S'out' +p152237 +tp152238 +a(g152235 +g152237 +S'of' +p152239 +tp152240 +a(g152237 +g152239 +S'the' +p152241 +tp152242 +a(g152239 +g152241 +S'oddly' +p152243 +tp152244 +a(g152241 +g152243 +S'dark' +p152245 +tp152246 +a(g152243 +g152245 +S'morning.' +p152247 +tp152248 +a(g152245 +g152247 +S'as' +p152249 +tp152250 +a(g152247 +g152249 +S'recounted' +p152251 +tp152252 +a(g152249 +g152251 +S'in' +p152253 +tp152254 +a(g152251 +g152253 +S'the' +p152255 +tp152256 +a(g152253 +g152255 +S'new' +p152257 +tp152258 +a(g152255 +g152257 +S"testament's" +p152259 +tp152260 +a(g152257 +g152259 +S'apocrypha,' +p152261 +tp152262 +a(g152259 +g152261 +S"jesus'" +p152263 +tp152264 +a(g152261 +g152263 +S'mother' +p152265 +tp152266 +a(g152263 +g152265 +S'was' +p152267 +tp152268 +a(g152265 +g152267 +S'physically' +p152269 +tp152270 +a(g152267 +g152269 +S'raised' +p152271 +tp152272 +a(g152269 +g152271 +S'(assumed)' +p152273 +tp152274 +a(g152271 +g152273 +S'to' +p152275 +tp152276 +a(g152273 +g152275 +S'heaven' +p152277 +tp152278 +a(g152275 +g152277 +S'after' +p152279 +tp152280 +a(g152277 +g152279 +S'her' +p152281 +tp152282 +a(g152279 +g152281 +S'death.' +p152283 +tp152284 +a(g152281 +g152283 +S'a' +p152285 +tp152286 +a(g152283 +g152285 +S'choir' +p152287 +tp152288 +a(g152285 +g152287 +S'of' +p152289 +tp152290 +a(g152287 +g152289 +S'angels' +p152291 +tp152292 +a(g152289 +g152291 +S'lifts' +p152293 +tp152294 +a(g152291 +g152293 +S"mary's" +p152295 +tp152296 +a(g152293 +g152295 +S'body' +p152297 +tp152298 +a(g152295 +g152297 +S'upward' +p152299 +tp152300 +a(g152297 +g152299 +S'in' +p152301 +tp152302 +a(g152299 +g152301 +S'a' +p152303 +tp152304 +a(g152301 +g152303 +S'dramatic' +p152305 +tp152306 +a(g152303 +g152305 +S'spiraling' +p152307 +tp152308 +a(g152305 +g152307 +S'motion' +p152309 +tp152310 +a(g152307 +g152309 +S'toward' +p152311 +tp152312 +a(g152309 +g152311 +S'a' +p152313 +tp152314 +a(g152311 +g152313 +S'burst' +p152315 +tp152316 +a(g152313 +g152315 +S'of' +p152317 +tp152318 +a(g152315 +g152317 +S'divine' +p152319 +tp152320 +a(g152317 +g152319 +S'light.' +p152321 +tp152322 +a(g152319 +g152321 +S'the' +p152323 +tp152324 +a(g152321 +g152323 +S'twelve' +p152325 +tp152326 +a(g152323 +g152325 +S'apostles' +p152327 +tp152328 +a(g152325 +g152327 +S'gather' +p152329 +tp152330 +a(g152327 +g152329 +S'around' +p152331 +tp152332 +a(g152329 +g152331 +S'her' +p152333 +tp152334 +a(g152331 +g152333 +S'tomb.' +p152335 +tp152336 +a(g152333 +g152335 +S'some' +p152337 +tp152338 +a(g152335 +g152337 +S'raise' +p152339 +tp152340 +a(g152337 +g152339 +S'their' +p152341 +tp152342 +a(g152339 +g152341 +S'hands' +p152343 +tp152344 +a(g152341 +g152343 +S'in' +p152345 +tp152346 +a(g152343 +g152345 +S'awe;' +p152347 +tp152348 +a(g152345 +g152347 +S'others' +p152349 +tp152350 +a(g152347 +g152349 +S'reach' +p152351 +tp152352 +a(g152349 +g152351 +S'down' +p152353 +tp152354 +a(g152351 +g152353 +S'to' +p152355 +tp152356 +a(g152353 +g152355 +S'touch' +p152357 +tp152358 +a(g152355 +g152357 +S'her' +p152359 +tp152360 +a(g152357 +g152359 +S'discarded' +p152361 +tp152362 +a(g152359 +g152361 +S'shroud.' +p152363 +tp152364 +a(g152361 +g152363 +S'the' +p152365 +tp152366 +a(g152363 +g152365 +S'three' +p152367 +tp152368 +a(g152365 +g152367 +S'holy' +p152369 +tp152370 +a(g152367 +g152369 +S'women' +p152371 +tp152372 +a(g152369 +g152371 +S'are' +p152373 +tp152374 +a(g152371 +g152373 +S'probably' +p152375 +tp152376 +a(g152373 +g152375 +S'mary' +p152377 +tp152378 +a(g152375 +g152377 +S'magdalene' +p152379 +tp152380 +a(g152377 +g152379 +S'and' +p152381 +tp152382 +a(g152379 +g152381 +S'the' +p152383 +tp152384 +a(g152381 +g152383 +S'virgin' +p152385 +tp152386 +a(g152383 +g152385 +S"mary's" +p152387 +tp152388 +a(g152385 +g152387 +S'two' +p152389 +tp152390 +a(g152387 +g152389 +S'sisters.' +p152391 +tp152392 +a(g152389 +g152391 +S'the' +p152393 +tp152394 +a(g152391 +g152393 +S'kneeling' +p152395 +tp152396 +a(g152393 +g152395 +S'woman' +p152397 +tp152398 +a(g152395 +g152397 +S'holds' +p152399 +tp152400 +a(g152397 +g152399 +S'a' +p152401 +tp152402 +a(g152399 +g152401 +S'flower,' +p152403 +tp152404 +a(g152401 +g152403 +S'referring' +p152405 +tp152406 +a(g152403 +g152405 +S'to' +p152407 +tp152408 +a(g152405 +g152407 +S'the' +p152409 +tp152410 +a(g152407 +g152409 +S'blossoms' +p152411 +tp152412 +a(g152409 +g152411 +S'that' +p152413 +tp152414 +a(g152411 +g152413 +S'miraculously' +p152415 +tp152416 +a(g152413 +g152415 +S'filled' +p152417 +tp152418 +a(g152415 +g152417 +S'the' +p152419 +tp152420 +a(g152417 +g152419 +S'empty' +p152421 +tp152422 +a(g152419 +g152421 +S'coffin.' +p152423 +tp152424 +a(g152421 +g152423 +S'in' +p152425 +tp152426 +a(g152423 +g152425 +S'1611,' +p152427 +tp152428 +a(g152425 +g152427 +S'the' +p152429 +tp152430 +a(g152427 +g152429 +S'cathedral' +p152431 +tp152432 +a(g152429 +g152431 +S'at' +p152433 +tp152434 +a(g152431 +g152433 +S'antwerp' +p152435 +tp152436 +a(g152433 +g152435 +S'announced' +p152437 +tp152438 +a(g152435 +g152437 +S'a' +p152439 +tp152440 +a(g152437 +g152439 +S'competition' +p152441 +tp152442 +a(g152439 +g152441 +S'for' +p152443 +tp152444 +a(g152441 +g152443 +S'an' +p152445 +tp152446 +a(g152443 +g152445 +S'assumption' +p152447 +tp152448 +a(g152445 +g152447 +S'altar.' +p152449 +tp152450 +a(g152447 +g152449 +S'on' +p152451 +tp152452 +a(g152449 +g152451 +S'february' +p152453 +tp152454 +a(g152451 +g152453 +S'16,' +p152455 +tp152456 +a(g152453 +g152455 +S'1618,' +p152457 +tp152458 +a(g152455 +g152457 +S'rubens' +p152459 +tp152460 +a(g152457 +g152459 +S'submitted' +p152461 +tp152462 +a(g152459 +g152461 +S'two' +p152463 +tp152464 +a(g152461 +g152463 +S'models.' +p152465 +tp152466 +a(g152463 +g152465 +S'he' +p152467 +tp152468 +a(g152465 +g152467 +S'finished' +p152469 +tp152470 +a(g152467 +g152469 +S'the' +p152471 +tp152472 +a(g152469 +g152471 +S'huge' +p152473 +tp152474 +a(g152471 +g152473 +S'altarpiece' +p152475 +tp152476 +a(g152473 +g152475 +S'on' +p152477 +tp152478 +a(g152475 +g152477 +S'september' +p152479 +tp152480 +a(g152477 +g152479 +S'30,' +p152481 +tp152482 +a(g152479 +g152481 +S'1626.' +p152483 +tp152484 +a(g152481 +g152483 +S'thus,' +p152485 +tp152486 +a(g152483 +g152485 +S'fifteen' +p152487 +tp152488 +a(g152485 +g152487 +S'years' +p152489 +tp152490 +a(g152487 +g152489 +S'elapsed' +p152491 +tp152492 +a(g152489 +g152491 +S'between' +p152493 +tp152494 +a(g152491 +g152493 +S'the' +p152495 +tp152496 +a(g152493 +g152495 +S'beginning' +p152497 +tp152498 +a(g152495 +g152497 +S'and' +p152499 +tp152500 +a(g152497 +g152499 +S'conclusion' +p152501 +tp152502 +a(g152499 +g152501 +S'of' +p152503 +tp152504 +a(g152501 +g152503 +S'this' +p152505 +tp152506 +a(g152503 +g152505 +S'project.' +p152507 +tp152508 +a(g152505 +g152507 +S'the' +p152509 +tp152510 +a(g152507 +g152509 +S'cathedral' +p152511 +tp152512 +a(g152509 +g152511 +S'needed' +p152513 +tp152514 +a(g152511 +g152513 +S'the' +p152515 +tp152516 +a(g152513 +g152515 +S'time' +p152517 +tp152518 +a(g152515 +g152517 +S'to' +p152519 +tp152520 +a(g152517 +g152519 +S'complete' +p152521 +tp152522 +a(g152519 +g152521 +S'a' +p152523 +tp152524 +a(g152521 +g152523 +S'majestic' +p152525 +tp152526 +a(g152523 +g152525 +S'marble' +p152527 +tp152528 +a(g152525 +g152527 +S'frame.' +p152529 +tp152530 +a(g152527 +g152529 +S'this' +p152531 +tp152532 +a(g152529 +g152531 +S'oil' +p152533 +tp152534 +a(g152531 +g152533 +S'sketch' +p152535 +tp152536 +a(g152533 +g152535 +S'is' +p152537 +tp152538 +a(g152535 +g152537 +S'probably' +p152539 +tp152540 +a(g152537 +g152539 +S'a' +p152541 +tp152542 +a(g152539 +g152541 +S'replica' +p152543 +tp152544 +a(g152541 +g152543 +S'of' +p152545 +tp152546 +a(g152543 +g152545 +S"rubens'" +p152547 +tp152548 +a(g152545 +g152547 +S'original' +p152549 +tp152550 +a(g152547 +g152549 +S"saenredam's" +p152551 +tp152552 +a(g152549 +g152551 +S'paintings' +p152553 +tp152554 +a(g152551 +g152553 +S'are' +p152555 +tp152556 +a(g152553 +g152555 +S'almost' +p152557 +tp152558 +a(g152555 +g152557 +S'always' +p152559 +tp152560 +a(g152557 +g152559 +S'church' +p152561 +tp152562 +a(g152559 +g152561 +S'interiors' +p152563 +tp152564 +a(g152561 +g152563 +S'in' +p152565 +tp152566 +a(g152563 +g152565 +S'which' +p152567 +tp152568 +a(g152565 +g152567 +S'the' +p152569 +tp152570 +a(g152567 +g152569 +S'luminous' +p152571 +tp152572 +a(g152569 +g152571 +S'and' +p152573 +tp152574 +a(g152571 +g152573 +S'balanced' +p152575 +tp152576 +a(g152573 +g152575 +S'treatment' +p152577 +tp152578 +a(g152575 +g152577 +S'of' +p152579 +tp152580 +a(g152577 +g152579 +S'the' +p152581 +tp152582 +a(g152579 +g152581 +S'architecture' +p152583 +tp152584 +a(g152581 +g152583 +S'has' +p152585 +tp152586 +a(g152583 +g152585 +S'the' +p152587 +tp152588 +a(g152585 +g152587 +S'elegance' +p152589 +tp152590 +a(g152587 +g152589 +S'of' +p152591 +tp152592 +a(g152589 +g152591 +S'an' +p152593 +tp152594 +a(g152591 +g152593 +S'abstract' +p152595 +tp152596 +a(g152593 +g152595 +S'design.' +p152597 +tp152598 +a(g152595 +g152597 +S'in' +p152599 +tp152600 +a(g152597 +g152599 +S'this' +p152601 +tp152602 +a(g152599 +g152601 +S'painting' +p152603 +tp152604 +a(g152601 +g152603 +S'saenredam' +p152605 +tp152606 +a(g152603 +g152605 +S'not' +p152607 +tp152608 +a(g152605 +g152607 +S'only' +p152609 +tp152610 +a(g152607 +g152609 +S'gives' +p152611 +tp152612 +a(g152609 +g152611 +S'an' +p152613 +tp152614 +a(g152611 +g152613 +S'apparently' +p152615 +tp152616 +a(g152613 +g152615 +S'accurate' +p152617 +tp152618 +a(g152615 +g152617 +S'portrayal' +p152619 +tp152620 +a(g152617 +g152619 +S'of' +p152621 +tp152622 +a(g152619 +g152621 +S'the' +p152623 +tp152624 +a(g152621 +g152623 +S'details' +p152625 +tp152626 +a(g152623 +g152625 +S'of' +p152627 +tp152628 +a(g152625 +g152627 +S'the' +p152629 +tp152630 +a(g152627 +g152629 +S'cathedral' +p152631 +tp152632 +a(g152629 +g152631 +S'of' +p152633 +tp152634 +a(g152631 +g152633 +S'saint' +p152635 +tp152636 +a(g152633 +g152635 +S'john,' +p152637 +tp152638 +a(g152635 +g152637 +S'but' +p152639 +tp152640 +a(g152637 +g152639 +S'also' +p152641 +tp152642 +a(g152639 +g152641 +S'creates' +p152643 +tp152644 +a(g152641 +g152643 +S'a' +p152645 +tp152646 +a(g152643 +g152645 +S'unified' +p152647 +tp152648 +a(g152645 +g152647 +S'feeling' +p152649 +tp152650 +a(g152647 +g152649 +S'of' +p152651 +tp152652 +a(g152649 +g152651 +S'spaciousness' +p152653 +tp152654 +a(g152651 +g152653 +S'and' +p152655 +tp152656 +a(g152653 +g152655 +S'light.' +p152657 +tp152658 +a(g152655 +g152657 +S'the' +p152659 +tp152660 +a(g152657 +g152659 +S'town' +p152661 +tp152662 +a(g152659 +g152661 +S'of' +p152663 +tp152664 +a(g152661 +g152663 +S"'s–hertogenbosch," +p152665 +tp152666 +a(g152663 +g152665 +S'near' +p152667 +tp152668 +a(g152665 +g152667 +S'the' +p152669 +tp152670 +a(g152667 +g152669 +S'dutch–flemish' +p152671 +tp152672 +a(g152669 +g152671 +S'border,' +p152673 +tp152674 +a(g152671 +g152673 +S'became' +p152675 +tp152676 +a(g152673 +g152675 +S'part' +p152677 +tp152678 +a(g152675 +g152677 +S'of' +p152679 +tp152680 +a(g152677 +g152679 +S'the' +p152681 +tp152682 +a(g152679 +g152681 +S'united' +p152683 +tp152684 +a(g152681 +g152683 +S'provinces,' +p152685 +tp152686 +a(g152683 +g152685 +S'a' +p152687 +tp152688 +a(g152685 +g152687 +S'group' +p152689 +tp152690 +a(g152687 +g152689 +S'of' +p152691 +tp152692 +a(g152689 +g152691 +S'northern' +p152693 +tp152694 +a(g152691 +g152693 +S'dutch' +p152695 +tp152696 +a(g152693 +g152695 +S'states' +p152697 +tp152698 +a(g152695 +g152697 +S'that' +p152699 +tp152700 +a(g152697 +g152699 +S'were' +p152701 +tp152702 +a(g152699 +g152701 +S'protestant' +p152703 +tp152704 +a(g152701 +g152703 +S'and' +p152705 +tp152706 +a(g152703 +g152705 +S'seceded' +p152707 +tp152708 +a(g152705 +g152707 +S'from' +p152709 +tp152710 +a(g152707 +g152709 +S'the' +p152711 +tp152712 +a(g152709 +g152711 +S'catholic' +p152713 +tp152714 +a(g152711 +g152713 +S'south' +p152715 +tp152716 +a(g152713 +g152715 +S'in' +p152717 +tp152718 +a(g152715 +g152717 +S'1629,' +p152719 +tp152720 +a(g152717 +g152719 +S'only' +p152721 +tp152722 +a(g152719 +g152721 +S'three' +p152723 +tp152724 +a(g152721 +g152723 +S'years' +p152725 +tp152726 +a(g152723 +g152725 +S'before' +p152727 +tp152728 +a(g152725 +g152727 +S'saenredam' +p152729 +tp152730 +a(g152727 +g152729 +S'visited' +p152731 +tp152732 +a(g152729 +g152731 +S'it.' +p152733 +tp152734 +a(g152731 +g152733 +S'thus' +p152735 +tp152736 +a(g152733 +g152735 +S'the' +p152737 +tp152738 +a(g152735 +g152737 +S'cathedral,' +p152739 +tp152740 +a(g152737 +g152739 +S'unlike' +p152741 +tp152742 +a(g152739 +g152741 +S'other' +p152743 +tp152744 +a(g152741 +g152743 +S'dutch' +p152745 +tp152746 +a(g152743 +g152745 +S'churches,' +p152747 +tp152748 +a(g152745 +g152747 +S'still' +p152749 +tp152750 +a(g152747 +g152749 +S'retained' +p152751 +tp152752 +a(g152749 +g152751 +S'the' +p152753 +tp152754 +a(g152751 +g152753 +S'decorations' +p152755 +tp152756 +a(g152753 +g152755 +S'associated' +p152757 +tp152758 +a(g152755 +g152757 +S'with' +p152759 +tp152760 +a(g152757 +g152759 +S'catholic' +p152761 +tp152762 +a(g152759 +g152761 +S'ceremony,' +p152763 +tp152764 +a(g152761 +g152763 +S'notably' +p152765 +tp152766 +a(g152763 +g152765 +S'the' +p152767 +tp152768 +a(g152765 +g152767 +S'elaborate' +p152769 +tp152770 +a(g152767 +g152769 +S'black' +p152771 +tp152772 +a(g152769 +g152771 +S'and' +p152773 +tp152774 +a(g152771 +g152773 +S'white' +p152775 +tp152776 +a(g152773 +g152775 +S'baroque' +p152777 +tp152778 +a(g152775 +g152777 +S'altar' +p152779 +tp152780 +a(g152777 +g152779 +S'with' +p152781 +tp152782 +a(g152779 +g152781 +S'its' +p152783 +tp152784 +a(g152781 +g152783 +S'statues' +p152785 +tp152786 +a(g152783 +g152785 +S'of' +p152787 +tp152788 +a(g152785 +g152787 +S'the' +p152789 +tp152790 +a(g152787 +g152789 +S'virgin' +p152791 +tp152792 +a(g152789 +g152791 +S'and' +p152793 +tp152794 +a(g152791 +g152793 +S'child' +p152795 +tp152796 +a(g152793 +g152795 +S'and' +p152797 +tp152798 +a(g152795 +g152797 +S'saint' +p152799 +tp152800 +a(g152797 +g152799 +S'john,' +p152801 +tp152802 +a(g152799 +g152801 +S'and' +p152803 +tp152804 +a(g152801 +g152803 +S'the' +p152805 +tp152806 +a(g152803 +g152805 +S'altar\xe2\x80\x99s' +p152807 +tp152808 +a(g152805 +g152807 +S'memorial' +p152809 +tp152810 +a(g152807 +g152809 +S'tablets' +p152811 +tp152812 +a(g152809 +g152811 +S'to' +p152813 +tp152814 +a(g152811 +g152813 +S'the' +p152815 +tp152816 +a(g152813 +g152815 +S'catholic' +p152817 +tp152818 +a(g152815 +g152817 +S'habsburg' +p152819 +tp152820 +a(g152817 +g152819 +S'rulers' +p152821 +tp152822 +a(g152819 +g152821 +S'philip' +p152823 +tp152824 +a(g152821 +g152823 +S'ii' +p152825 +tp152826 +a(g152823 +g152825 +S'and' +p152827 +tp152828 +a(g152825 +g152827 +S'albert' +p152829 +tp152830 +a(g152827 +g152829 +S'of' +p152831 +tp152832 +a(g152829 +g152831 +S'austria.' +p152833 +tp152834 +a(g152831 +g152833 +S'saenredam' +p152835 +tp152836 +a(g152833 +g152835 +S'subtly' +p152837 +tp152838 +a(g152835 +g152837 +S'changed' +p152839 +tp152840 +a(g152837 +g152839 +S'the' +p152841 +tp152842 +a(g152839 +g152841 +S'proportions' +p152843 +tp152844 +a(g152841 +g152843 +S'of' +p152845 +tp152846 +a(g152843 +g152845 +S'columns' +p152847 +tp152848 +a(g152845 +g152847 +S'and' +p152849 +tp152850 +a(g152847 +g152849 +S'arches' +p152851 +tp152852 +a(g152849 +g152851 +S'to' +p152853 +tp152854 +a(g152851 +g152853 +S'enhance' +p152855 +tp152856 +a(g152853 +g152855 +S'our' +p152857 +tp152858 +a(g152855 +g152857 +S'sense' +p152859 +tp152860 +a(g152857 +g152859 +S'of' +p152861 +tp152862 +a(g152859 +g152861 +S'a' +p152863 +tp152864 +a(g152861 +g152863 +S'soaring' +p152865 +tp152866 +a(g152863 +g152865 +S'architecture.' +p152867 +tp152868 +a(g152865 +g152867 +S'abraham' +p152869 +tp152870 +a(g152867 +g152869 +S'bloemaert\xe2\x80\x99s' +p152871 +tp152872 +a(g152869 +g152871 +S'as' +p152873 +tp152874 +a(g152871 +g152873 +S'the' +p152875 +tp152876 +a(g152873 +g152875 +S'foremost' +p152877 +tp152878 +a(g152875 +g152877 +S'innovator' +p152879 +tp152880 +a(g152877 +g152879 +S'in' +p152881 +tp152882 +a(g152879 +g152881 +S'the' +p152883 +tp152884 +a(g152881 +g152883 +S'accurate' +p152885 +tp152886 +a(g152883 +g152885 +S'depiction' +p152887 +tp152888 +a(g152885 +g152887 +S'of' +p152889 +tp152890 +a(g152887 +g152889 +S'buildings,' +p152891 +tp152892 +a(g152889 +g152891 +S'saenredam' +p152893 +tp152894 +a(g152891 +g152893 +S'has' +p152895 +tp152896 +a(g152893 +g152895 +S'earned' +p152897 +tp152898 +a(g152895 +g152897 +S'the' +p152899 +tp152900 +a(g152897 +g152899 +S'title' +p152901 +tp152902 +a(g152899 +g152901 +S'of' +p152903 +tp152904 +a(g152901 +g152903 +S'“first' +p152905 +tp152906 +a(g152903 +g152905 +S'portraitist' +p152907 +tp152908 +a(g152905 +g152907 +S'of' +p152909 +tp152910 +a(g152907 +g152909 +S'architecture.”' +p152911 +tp152912 +a(g152909 +g152911 +S'the' +p152913 +tp152914 +a(g152911 +g152913 +S'son' +p152915 +tp152916 +a(g152913 +g152915 +S'of' +p152917 +tp152918 +a(g152915 +g152917 +S'an' +p152919 +tp152920 +a(g152917 +g152919 +S'engraver,' +p152921 +tp152922 +a(g152919 +g152921 +S'he' +p152923 +tp152924 +a(g152921 +g152923 +S'developed' +p152925 +tp152926 +a(g152923 +g152925 +S'draftsmanship' +p152927 +tp152928 +a(g152925 +g152927 +S'so' +p152929 +tp152930 +a(g152927 +g152929 +S'precise' +p152931 +tp152932 +a(g152929 +g152931 +S'that' +p152933 +tp152934 +a(g152931 +g152933 +S'it' +p152935 +tp152936 +a(g152933 +g152935 +S'is' +p152937 +tp152938 +a(g152935 +g152937 +S'difficult' +p152939 +tp152940 +a(g152937 +g152939 +S'to' +p152941 +tp152942 +a(g152939 +g152941 +S'believe' +p152943 +tp152944 +a(g152941 +g152943 +S'he' +p152945 +tp152946 +a(g152943 +g152945 +S'never' +p152947 +tp152948 +a(g152945 +g152947 +S'visited' +p152949 +tp152950 +a(g152947 +g152949 +S'italy' +p152951 +tp152952 +a(g152949 +g152951 +S'to' +p152953 +tp152954 +a(g152951 +g152953 +S'see' +p152955 +tp152956 +a(g152953 +g152955 +S'the' +p152957 +tp152958 +a(g152955 +g152957 +S'site' +p152959 +tp152960 +a(g152957 +g152959 +S'of' +p152961 +tp152962 +a(g152959 +g152961 +S'saint' +p152963 +tp152964 +a(g152961 +g152963 +S'peter’s,' +p152965 +tp152966 +a(g152963 +g152965 +S'the' +p152967 +tp152968 +a(g152965 +g152967 +S'subject' +p152969 +tp152970 +a(g152967 +g152969 +S'of' +p152971 +tp152972 +a(g152969 +g152971 +S'this' +p152973 +tp152974 +a(g152971 +g152973 +S'convincing' +p152975 +tp152976 +a(g152973 +g152975 +S'view.' +p152977 +tp152978 +a(g152975 +g152977 +S'in' +p152979 +tp152980 +a(g152977 +g152979 +S'the' +p152981 +tp152982 +a(g152979 +g152981 +S'1530s,' +p152983 +tp152984 +a(g152981 +g152983 +S'the' +p152985 +tp152986 +a(g152983 +g152985 +S'flemish' +p152987 +tp152988 +a(g152985 +g152987 +S'artist' +p152989 +tp152990 +a(g152987 +g152989 +S'the' +p152991 +tp152992 +a(g152989 +g152991 +S'ancient,' +p152993 +tp152994 +a(g152991 +g152993 +S'circular' +p152995 +tp152996 +a(g152993 +g152995 +S'chapel' +p152997 +tp152998 +a(g152995 +g152997 +S'of' +p152999 +tp153000 +a(g152997 +g152999 +S'santa' +p153001 +tp153002 +a(g152999 +g153001 +S'maria' +p153003 +tp153004 +a(g153001 +g153003 +S'della' +p153005 +tp153006 +a(g153003 +g153005 +S'febbre' +p153007 +tp153008 +a(g153005 +g153007 +S'stands' +p153009 +tp153010 +a(g153007 +g153009 +S'beside' +p153011 +tp153012 +a(g153009 +g153011 +S'the' +p153013 +tp153014 +a(g153011 +g153013 +S'famous' +p153015 +tp153016 +a(g153013 +g153015 +S'vatican' +p153017 +tp153018 +a(g153015 +g153017 +S'obelisk' +p153019 +tp153020 +a(g153017 +g153019 +S'that,' +p153021 +tp153022 +a(g153019 +g153021 +S'in' +p153023 +tp153024 +a(g153021 +g153023 +S'1586,' +p153025 +tp153026 +a(g153023 +g153025 +S'was' +p153027 +tp153028 +a(g153025 +g153027 +S'moved' +p153029 +tp153030 +a(g153027 +g153029 +S'in' +p153031 +tp153032 +a(g153029 +g153031 +S'front' +p153033 +tp153034 +a(g153031 +g153033 +S'of' +p153035 +tp153036 +a(g153033 +g153035 +S'saint' +p153037 +tp153038 +a(g153035 +g153037 +S'peter’s' +p153039 +tp153040 +a(g153037 +g153039 +S'basilica.' +p153041 +tp153042 +a(g153039 +g153041 +S'behind' +p153043 +tp153044 +a(g153041 +g153043 +S'ramshackle' +p153045 +tp153046 +a(g153043 +g153045 +S'old' +p153047 +tp153048 +a(g153045 +g153047 +S'saint' +p153049 +tp153050 +a(g153047 +g153049 +S'peter’s' +p153051 +tp153052 +a(g153049 +g153051 +S'rise' +p153053 +tp153054 +a(g153051 +g153053 +S'the' +p153055 +tp153056 +a(g153053 +g153055 +S'piers' +p153057 +tp153058 +a(g153055 +g153057 +S'of' +p153059 +tp153060 +a(g153057 +g153059 +S'michelangelo’s' +p153061 +tp153062 +a(g153059 +g153061 +S'dome' +p153063 +tp153064 +a(g153061 +g153063 +S'for' +p153065 +tp153066 +a(g153063 +g153065 +S'new' +p153067 +tp153068 +a(g153065 +g153067 +S'saint' +p153069 +tp153070 +a(g153067 +g153069 +S'peter’s.' +p153071 +tp153072 +a(g153069 +g153071 +S'saenredam' +p153073 +tp153074 +a(g153071 +g153073 +S'portrayed' +p153075 +tp153076 +a(g153073 +g153075 +S'the' +p153077 +tp153078 +a(g153075 +g153077 +S'whole' +p153079 +tp153080 +a(g153077 +g153079 +S'construction' +p153081 +tp153082 +a(g153079 +g153081 +S'site' +p153083 +tp153084 +a(g153081 +g153083 +S'as' +p153085 +tp153086 +a(g153083 +g153085 +S'though' +p153087 +tp153088 +a(g153085 +g153087 +S'it' +p153089 +tp153090 +a(g153087 +g153089 +S'were' +p153091 +tp153092 +a(g153089 +g153091 +S'an' +p153093 +tp153094 +a(g153091 +g153093 +S'abandoned,' +p153095 +tp153096 +a(g153093 +g153095 +S'overgrown' +p153097 +tp153098 +a(g153095 +g153097 +S'ruin.' +p153099 +tp153100 +a(g153097 +g153099 +S'an' +p153101 +tp153102 +a(g153099 +g153101 +S'artificial' +p153103 +tp153104 +a(g153101 +g153103 +S'color' +p153105 +tp153106 +a(g153103 +g153105 +S'scheme' +p153107 +tp153108 +a(g153105 +g153107 +S'marks' +p153109 +tp153110 +a(g153107 +g153109 +S'the' +p153111 +tp153112 +a(g153109 +g153111 +S'earliest' +p153113 +tp153114 +a(g153111 +g153113 +S'period' +p153115 +tp153116 +a(g153113 +g153115 +S'of' +p153117 +tp153118 +a(g153115 +g153117 +S'dutch' +p153119 +tp153120 +a(g153117 +g153119 +S'landscape' +p153121 +tp153122 +a(g153119 +g153121 +S'painting,' +p153123 +tp153124 +a(g153121 +g153123 +S'developed' +p153125 +tp153126 +a(g153123 +g153125 +S'in' +p153127 +tp153128 +a(g153125 +g153127 +S'the' +p153129 +tp153130 +a(g153127 +g153129 +S'sixteenth' +p153131 +tp153132 +a(g153129 +g153131 +S'century.' +p153133 +tp153134 +a(g153131 +g153133 +S'to' +p153135 +tp153136 +a(g153133 +g153135 +S'create' +p153137 +tp153138 +a(g153135 +g153137 +S'a' +p153139 +tp153140 +a(g153137 +g153139 +S'feeling' +p153141 +tp153142 +a(g153139 +g153141 +S'of' +p153143 +tp153144 +a(g153141 +g153143 +S'depth,' +p153145 +tp153146 +a(g153143 +g153145 +S'saenredam' +p153147 +tp153148 +a(g153145 +g153147 +S'overlapped' +p153149 +tp153150 +a(g153147 +g153149 +S'layers' +p153151 +tp153152 +a(g153149 +g153151 +S'of' +p153153 +tp153154 +a(g153151 +g153153 +S'contrasting' +p153155 +tp153156 +a(g153153 +g153155 +S'tone:' +p153157 +tp153158 +a(g153155 +g153157 +S'a' +p153159 +tp153160 +a(g153157 +g153159 +S'dark' +p153161 +tp153162 +a(g153159 +g153161 +S'foreground,' +p153163 +tp153164 +a(g153161 +g153163 +S'through' +p153165 +tp153166 +a(g153163 +g153165 +S'the' +p153167 +tp153168 +a(g153165 +g153167 +S'buildings’' +p153169 +tp153170 +a(g153167 +g153169 +S'pinkish' +p153171 +tp153172 +a(g153169 +g153171 +S'yellow,' +p153173 +tp153174 +a(g153171 +g153173 +S'to' +p153175 +tp153176 +a(g153173 +g153175 +S'a' +p153177 +tp153178 +a(g153175 +g153177 +S'distant' +p153179 +tp153180 +a(g153177 +g153179 +S'valley' +p153181 +tp153182 +a(g153179 +g153181 +S'in' +p153183 +tp153184 +a(g153181 +g153183 +S'bright' +p153185 +tp153186 +a(g153183 +g153185 +S'blues' +p153187 +tp153188 +a(g153185 +g153187 +S'and' +p153189 +tp153190 +a(g153187 +g153189 +S'greens.' +p153191 +tp153192 +a(g153189 +g153191 +S'elijah,' +p153193 +tp153194 +a(g153191 +g153193 +S'sturdy' +p153195 +tp153196 +a(g153193 +g153195 +S'and' +p153197 +tp153198 +a(g153195 +g153197 +S'peasantlike,' +p153199 +tp153200 +a(g153197 +g153199 +S'looks' +p153201 +tp153202 +a(g153199 +g153201 +S'with' +p153203 +tp153204 +a(g153201 +g153203 +S'reflective' +p153205 +tp153206 +a(g153203 +g153205 +S'intensity' +p153207 +tp153208 +a(g153205 +g153207 +S'at' +p153209 +tp153210 +a(g153207 +g153209 +S'a' +p153211 +tp153212 +a(g153209 +g153211 +S'black' +p153213 +tp153214 +a(g153211 +g153213 +S'bird' +p153215 +tp153216 +a(g153213 +g153215 +S'perched' +p153217 +tp153218 +a(g153215 +g153217 +S'above' +p153219 +tp153220 +a(g153217 +g153219 +S'his' +p153221 +tp153222 +a(g153219 +g153221 +S'head,' +p153223 +tp153224 +a(g153221 +g153223 +S'grasping' +p153225 +tp153226 +a(g153223 +g153225 +S'a' +p153227 +tp153228 +a(g153225 +g153227 +S'large' +p153229 +tp153230 +a(g153227 +g153229 +S'hunk' +p153231 +tp153232 +a(g153229 +g153231 +S'of' +p153233 +tp153234 +a(g153231 +g153233 +S'bread' +p153235 +tp153236 +a(g153233 +g153235 +S'in' +p153237 +tp153238 +a(g153235 +g153237 +S'its' +p153239 +tp153240 +a(g153237 +g153239 +S'beak.' +p153241 +tp153242 +a(g153239 +g153241 +S'the' +p153243 +tp153244 +a(g153241 +g153243 +S'word' +p153245 +tp153246 +a(g153243 +g153245 +S'of' +p153247 +tp153248 +a(g153245 +g153247 +S'the' +p153249 +tp153250 +a(g153247 +g153249 +S'lord' +p153251 +tp153252 +a(g153249 +g153251 +S'had' +p153253 +tp153254 +a(g153251 +g153253 +S'come' +p153255 +tp153256 +a(g153253 +g153255 +S'to' +p153257 +tp153258 +a(g153255 +g153257 +S'him' +p153259 +tp153260 +a(g153257 +g153259 +S'(i' +p153261 +tp153262 +a(g153259 +g153261 +S'kings' +p153263 +tp153264 +a(g153261 +g153263 +S'17:3-4):' +p153265 +tp153266 +a(g153263 +g153265 +S'"go' +p153267 +tp153268 +a(g153265 +g153267 +S'away' +p153269 +tp153270 +a(g153267 +g153269 +S'from' +p153271 +tp153272 +a(g153269 +g153271 +S'here,' +p153273 +tp153274 +a(g153271 +g153273 +S'go' +p153275 +tp153276 +a(g153273 +g153275 +S'eastward,' +p153277 +tp153278 +a(g153275 +g153277 +S'and' +p153279 +tp153280 +a(g153277 +g153279 +S'hide' +p153281 +tp153282 +a(g153279 +g153281 +S'yourself....i' +p153283 +tp153284 +a(g153281 +g153283 +S'have' +p153285 +tp153286 +a(g153283 +g153285 +S'ordered' +p153287 +tp153288 +a(g153285 +g153287 +S'the' +p153289 +tp153290 +a(g153287 +g153289 +S'ravens' +p153291 +tp153292 +a(g153289 +g153291 +S'to' +p153293 +tp153294 +a(g153291 +g153293 +S'bring' +p153295 +tp153296 +a(g153293 +g153295 +S'you' +p153297 +tp153298 +a(g153295 +g153297 +S'food."' +p153299 +tp153300 +a(g153297 +g153299 +S'it' +p153301 +tp153302 +a(g153299 +g153301 +S'was' +p153303 +tp153304 +a(g153301 +g153303 +S'an' +p153305 +tp153306 +a(g153303 +g153305 +S'absolute' +p153307 +tp153308 +a(g153305 +g153307 +S'act' +p153309 +tp153310 +a(g153307 +g153309 +S'of' +p153311 +tp153312 +a(g153309 +g153311 +S'faith' +p153313 +tp153314 +a(g153311 +g153313 +S'and' +p153315 +tp153316 +a(g153313 +g153315 +S'love' +p153317 +tp153318 +a(g153315 +g153317 +S'to' +p153319 +tp153320 +a(g153317 +g153319 +S'obey' +p153321 +tp153322 +a(g153319 +g153321 +S'the' +p153323 +tp153324 +a(g153321 +g153323 +S'command,' +p153325 +tp153326 +a(g153323 +g153325 +S'trusting' +p153327 +tp153328 +a(g153325 +g153327 +S'only' +p153329 +tp153330 +a(g153327 +g153329 +S'in' +p153331 +tp153332 +a(g153329 +g153331 +S"god's" +p153333 +tp153334 +a(g153331 +g153333 +S'provision' +p153335 +tp153336 +a(g153333 +g153335 +S'for' +p153337 +tp153338 +a(g153335 +g153337 +S'his' +p153339 +tp153340 +a(g153337 +g153339 +S'survival.' +p153341 +tp153342 +a(g153339 +g153341 +S'from' +p153343 +tp153344 +a(g153341 +g153343 +S'the' +p153345 +tp153346 +a(g153343 +g153345 +S'earliest' +p153347 +tp153348 +a(g153345 +g153347 +S'days' +p153349 +tp153350 +a(g153347 +g153349 +S'of' +p153351 +tp153352 +a(g153349 +g153351 +S'christian' +p153353 +tp153354 +a(g153351 +g153353 +S'monasticism,' +p153355 +tp153356 +a(g153353 +g153355 +S'elijah' +p153357 +tp153358 +a(g153355 +g153357 +S'was' +p153359 +tp153360 +a(g153357 +g153359 +S'regarded' +p153361 +tp153362 +a(g153359 +g153361 +S'as' +p153363 +tp153364 +a(g153361 +g153363 +S'the' +p153365 +tp153366 +a(g153363 +g153365 +S'prototype' +p153367 +tp153368 +a(g153365 +g153367 +S'of' +p153369 +tp153370 +a(g153367 +g153369 +S'all' +p153371 +tp153372 +a(g153369 +g153371 +S'those' +p153373 +tp153374 +a(g153371 +g153373 +S'who' +p153375 +tp153376 +a(g153373 +g153375 +S'"dwelt' +p153377 +tp153378 +a(g153375 +g153377 +S'in' +p153379 +tp153380 +a(g153377 +g153379 +S'the' +p153381 +tp153382 +a(g153379 +g153381 +S'desert,"' +p153383 +tp153384 +a(g153381 +g153383 +S'either' +p153385 +tp153386 +a(g153383 +g153385 +S'alone' +p153387 +tp153388 +a(g153385 +g153387 +S'as' +p153389 +tp153390 +a(g153387 +g153389 +S'hermits' +p153391 +tp153392 +a(g153389 +g153391 +S'or' +p153393 +tp153394 +a(g153391 +g153393 +S'in' +p153395 +tp153396 +a(g153393 +g153395 +S'communities' +p153397 +tp153398 +a(g153395 +g153397 +S'with' +p153399 +tp153400 +a(g153397 +g153399 +S'other' +p153401 +tp153402 +a(g153399 +g153401 +S'holy' +p153403 +tp153404 +a(g153401 +g153403 +S'men.' +p153405 +tp153406 +a(g153403 +g153405 +S'in' +p153407 +tp153408 +a(g153405 +g153407 +S'the' +p153409 +tp153410 +a(g153407 +g153409 +S'living' +p153411 +tp153412 +a(g153409 +g153411 +S'tradition' +p153413 +tp153414 +a(g153411 +g153413 +S'of' +p153415 +tp153416 +a(g153413 +g153415 +S'monasticism,' +p153417 +tp153418 +a(g153415 +g153417 +S'the' +p153419 +tp153420 +a(g153417 +g153419 +S'authority' +p153421 +tp153422 +a(g153419 +g153421 +S'and' +p153423 +tp153424 +a(g153421 +g153423 +S'spiritual' +p153425 +tp153426 +a(g153423 +g153425 +S'wisdom' +p153427 +tp153428 +a(g153425 +g153427 +S'of' +p153429 +tp153430 +a(g153427 +g153429 +S'one' +p153431 +tp153432 +a(g153429 +g153431 +S'abbot' +p153433 +tp153434 +a(g153431 +g153433 +S'is' +p153435 +tp153436 +a(g153433 +g153435 +S'passed' +p153437 +tp153438 +a(g153435 +g153437 +S'down' +p153439 +tp153440 +a(g153437 +g153439 +S'to' +p153441 +tp153442 +a(g153439 +g153441 +S'the' +p153443 +tp153444 +a(g153441 +g153443 +S'next.' +p153445 +tp153446 +a(g153443 +g153445 +S'this' +p153447 +tp153448 +a(g153445 +g153447 +S'transfer' +p153449 +tp153450 +a(g153447 +g153449 +S'of' +p153451 +tp153452 +a(g153449 +g153451 +S'power' +p153453 +tp153454 +a(g153451 +g153453 +S'began' +p153455 +tp153456 +a(g153453 +g153455 +S'when' +p153457 +tp153458 +a(g153455 +g153457 +S'elijah' +p153459 +tp153460 +a(g153457 +g153459 +S'first' +p153461 +tp153462 +a(g153459 +g153461 +S'handed' +p153463 +tp153464 +a(g153461 +g153463 +S'his' +p153465 +tp153466 +a(g153463 +g153465 +S'cloak' +p153467 +tp153468 +a(g153465 +g153467 +S'to' +p153469 +tp153470 +a(g153467 +g153469 +S'his' +p153471 +tp153472 +a(g153469 +g153471 +S'successor' +p153473 +tp153474 +a(g153471 +g153473 +S'elisha,' +p153475 +tp153476 +a(g153473 +g153475 +S'an' +p153477 +tp153478 +a(g153475 +g153477 +S'episode' +p153479 +tp153480 +a(g153477 +g153479 +S'depicted' +p153481 +tp153482 +a(g153479 +g153481 +S'in' +p153483 +tp153484 +a(g153481 +g153483 +S'the' +p153485 +tp153486 +a(g153483 +g153485 +S'background' +p153487 +tp153488 +a(g153485 +g153487 +S'of' +p153489 +tp153490 +a(g153487 +g153489 +S'this' +p153491 +tp153492 +a(g153489 +g153491 +S'painting.' +p153493 +tp153494 +a(g153491 +g153493 +S'in' +p153495 +tp153496 +a(g153493 +g153495 +S'a' +p153497 +tp153498 +a(g153495 +g153497 +S'small' +p153499 +tp153500 +a(g153497 +g153499 +S'cloud,' +p153501 +tp153502 +a(g153499 +g153501 +S'elijah' +p153503 +tp153504 +a(g153501 +g153503 +S'is' +p153505 +tp153506 +a(g153503 +g153505 +S'taken' +p153507 +tp153508 +a(g153505 +g153507 +S'heavenward' +p153509 +tp153510 +a(g153507 +g153509 +S'in' +p153511 +tp153512 +a(g153509 +g153511 +S'a' +p153513 +tp153514 +a(g153511 +g153513 +S'fiery' +p153515 +tp153516 +a(g153513 +g153515 +S'chariot' +p153517 +tp153518 +a(g153515 +g153517 +S'as' +p153519 +tp153520 +a(g153517 +g153519 +S'proof' +p153521 +tp153522 +a(g153519 +g153521 +S'of' +p153523 +tp153524 +a(g153521 +g153523 +S"god's" +p153525 +tp153526 +a(g153523 +g153525 +S'call.' +p153527 +tp153528 +a(g153525 +g153527 +S'this' +p153529 +tp153530 +a(g153527 +g153529 +S'painting,' +p153531 +tp153532 +a(g153529 +g153531 +S'along' +p153533 +tp153534 +a(g153531 +g153533 +S'with' +p153535 +tp153536 +a(g153533 +g153535 +S'a' +p153537 +tp153538 +a(g153535 +g153537 +S'companion' +p153539 +tp153540 +a(g153537 +g153539 +S'work' +p153541 +tp153542 +a(g153539 +g153541 +S'showing' +p153543 +tp153544 +a(g153541 +g153543 +S'the' +p153545 +tp153546 +a(g153543 +g153545 +S'two' +p153547 +tp153548 +a(g153545 +g153547 +S'hermit' +p153549 +tp153550 +a(g153547 +g153549 +S'saints' +p153551 +tp153552 +a(g153549 +g153551 +S'anthony' +p153553 +tp153554 +a(g153551 +g153553 +S'and' +p153555 +tp153556 +a(g153553 +g153555 +S'paul,' +p153557 +tp153558 +a(g153555 +g153557 +S'was' +p153559 +tp153560 +a(g153557 +g153559 +S'possibly' +p153561 +tp153562 +a(g153559 +g153561 +S'commissioned' +p153563 +tp153564 +a(g153561 +g153563 +S'for' +p153565 +tp153566 +a(g153563 +g153565 +S'a' +p153567 +tp153568 +a(g153565 +g153567 +S'carmelite' +p153569 +tp153570 +a(g153567 +g153569 +S'church' +p153571 +tp153572 +a(g153569 +g153571 +S'in' +p153573 +tp153574 +a(g153571 +g153573 +S"savoldo's" +p153575 +tp153576 +a(g153573 +g153575 +S'hometown' +p153577 +tp153578 +a(g153575 +g153577 +S'of' +p153579 +tp153580 +a(g153577 +g153579 +S'brescia.' +p153581 +tp153582 +a(g153579 +g153581 +S'elijah' +p153583 +tp153584 +a(g153581 +g153583 +S'held' +p153585 +tp153586 +a(g153583 +g153585 +S'special' +p153587 +tp153588 +a(g153585 +g153587 +S'significance' +p153589 +tp153590 +a(g153587 +g153589 +S'for' +p153591 +tp153592 +a(g153589 +g153591 +S'the' +p153593 +tp153594 +a(g153591 +g153593 +S'carmelites,' +p153595 +tp153596 +a(g153593 +g153595 +S'who,' +p153597 +tp153598 +a(g153595 +g153597 +S'as' +p153599 +tp153600 +a(g153597 +g153599 +S'their' +p153601 +tp153602 +a(g153599 +g153601 +S'name' +p153603 +tp153604 +a(g153601 +g153603 +S'suggests,' +p153605 +tp153606 +a(g153603 +g153605 +S'traced' +p153607 +tp153608 +a(g153605 +g153607 +S'their' +p153609 +tp153610 +a(g153607 +g153609 +S'origin' +p153611 +tp153612 +a(g153609 +g153611 +S'to' +p153613 +tp153614 +a(g153611 +g153613 +S'elijah' +p153615 +tp153616 +a(g153613 +g153615 +S'in' +p153617 +tp153618 +a(g153615 +g153617 +S'the' +p153619 +tp153620 +a(g153617 +g153619 +S'jordan' +p153621 +tp153622 +a(g153619 +g153621 +S'valley.' +p153623 +tp153624 +a(g153621 +g153623 +S'the' +p153625 +tp153626 +a(g153623 +g153625 +S'faith' +p153627 +tp153628 +a(g153625 +g153627 +S'and' +p153629 +tp153630 +a(g153627 +g153629 +S'moral' +p153631 +tp153632 +a(g153629 +g153631 +S'austerity' +p153633 +tp153634 +a(g153631 +g153633 +S'of' +p153635 +tp153636 +a(g153633 +g153635 +S'these' +p153637 +tp153638 +a(g153635 +g153637 +S'men' +p153639 +tp153640 +a(g153637 +g153639 +S'could' +p153641 +tp153642 +a(g153639 +g153641 +S'have' +p153643 +tp153644 +a(g153641 +g153643 +S'appealed' +p153645 +tp153646 +a(g153643 +g153645 +S'to' +p153647 +tp153648 +a(g153645 +g153647 +S'many' +p153649 +tp153650 +a(g153647 +g153649 +S'other' +p153651 +tp153652 +a(g153649 +g153651 +S'patrons' +p153653 +tp153654 +a(g153651 +g153653 +S'as' +p153655 +tp153656 +a(g153653 +g153655 +S'well.' +p153657 +tp153658 +a(g153655 +g153657 +S'heemskerck' +p153659 +tp153660 +a(g153657 +g153659 +S'spent' +p153661 +tp153662 +a(g153659 +g153661 +S'several' +p153663 +tp153664 +a(g153661 +g153663 +S'years' +p153665 +tp153666 +a(g153663 +g153665 +S'in' +p153667 +tp153668 +a(g153665 +g153667 +S'italy,' +p153669 +tp153670 +a(g153667 +g153669 +S'where' +p153671 +tp153672 +a(g153669 +g153671 +S'he' +p153673 +tp153674 +a(g153671 +g153673 +S'supported' +p153675 +tp153676 +a(g153673 +g153675 +S'himself' +p153677 +tp153678 +a(g153675 +g153677 +S'at' +p153679 +tp153680 +a(g153677 +g153679 +S'times' +p153681 +tp153682 +a(g153679 +g153681 +S'with' +p153683 +tp153684 +a(g153681 +g153683 +S'the' +p153685 +tp153686 +a(g153683 +g153685 +S'particularly' +p153687 +tp153688 +a(g153685 +g153687 +S'northern' +p153689 +tp153690 +a(g153687 +g153689 +S'specialty' +p153691 +tp153692 +a(g153689 +g153691 +S'of' +p153693 +tp153694 +a(g153691 +g153693 +S'landscape' +p153695 +tp153696 +a(g153693 +g153695 +S'painting.' +p153697 +tp153698 +a(g153695 +g153697 +S'but' +p153699 +tp153700 +a(g153697 +g153699 +S'this' +p153701 +tp153702 +a(g153699 +g153701 +S'picture' +p153703 +tp153704 +a(g153701 +g153703 +S'was' +p153705 +tp153706 +a(g153703 +g153705 +S'produced' +p153707 +tp153708 +a(g153705 +g153707 +S'before' +p153709 +tp153710 +a(g153707 +g153709 +S'his' +p153711 +tp153712 +a(g153709 +g153711 +S'first' +p153713 +tp153714 +a(g153711 +g153713 +S'trip' +p153715 +tp153716 +a(g153713 +g153715 +S'there.' +p153717 +tp153718 +a(g153715 +g153717 +S'it' +p153719 +tp153720 +a(g153717 +g153719 +S'shows' +p153721 +tp153722 +a(g153719 +g153721 +S'the' +p153723 +tp153724 +a(g153721 +g153723 +S'influence' +p153725 +tp153726 +a(g153723 +g153725 +S'of' +p153727 +tp153728 +a(g153725 +g153727 +S'his' +p153729 +tp153730 +a(g153727 +g153729 +S'teacher,' +p153731 +tp153732 +a(g153729 +g153731 +S'jan' +p153733 +tp153734 +a(g153731 +g153733 +S'van' +p153735 +tp153736 +a(g153733 +g153735 +S'scorel,' +p153737 +tp153738 +a(g153735 +g153737 +S'who' +p153739 +tp153740 +a(g153737 +g153739 +S'had' +p153741 +tp153742 +a(g153739 +g153741 +S'already' +p153743 +tp153744 +a(g153741 +g153743 +S'brought' +p153745 +tp153746 +a(g153743 +g153745 +S'back' +p153747 +tp153748 +a(g153745 +g153747 +S'to' +p153749 +tp153750 +a(g153747 +g153749 +S'the' +p153751 +tp153752 +a(g153749 +g153751 +S'netherlands' +p153753 +tp153754 +a(g153751 +g153753 +S'an' +p153755 +tp153756 +a(g153753 +g153755 +S'italian' +p153757 +tp153758 +a(g153755 +g153757 +S'feeling' +p153759 +tp153760 +a(g153757 +g153759 +S'for' +p153761 +tp153762 +a(g153759 +g153761 +S'large,' +p153763 +tp153764 +a(g153761 +g153763 +S'sculptural' +p153765 +tp153766 +a(g153763 +g153765 +S'figures' +p153767 +tp153768 +a(g153765 +g153767 +S'and' +p153769 +tp153770 +a(g153767 +g153769 +S'a' +p153771 +tp153772 +a(g153769 +g153771 +S'landscape' +p153773 +tp153774 +a(g153771 +g153773 +S'repertoire' +p153775 +tp153776 +a(g153773 +g153775 +S'that' +p153777 +tp153778 +a(g153775 +g153777 +S'included' +p153779 +tp153780 +a(g153777 +g153779 +S'fanciful' +p153781 +tp153782 +a(g153779 +g153781 +S'ruins' +p153783 +tp153784 +a(g153781 +g153783 +S'and' +p153785 +tp153786 +a(g153783 +g153785 +S'idyllic' +p153787 +tp153788 +a(g153785 +g153787 +S'motifs' +p153789 +tp153790 +a(g153787 +g153789 +S'copied' +p153791 +tp153792 +a(g153789 +g153791 +S'from' +p153793 +tp153794 +a(g153791 +g153793 +S'ancient' +p153795 +tp153796 +a(g153793 +g153795 +S'art.' +p153797 +tp153798 +a(g153795 +g153797 +S'this' +p153799 +tp153800 +a(g153797 +g153799 +S'panel' +p153801 +tp153802 +a(g153799 +g153801 +S'was' +p153803 +tp153804 +a(g153801 +g153803 +S'long' +p153805 +tp153806 +a(g153803 +g153805 +S'thought' +p153807 +tp153808 +a(g153805 +g153807 +S'to' +p153809 +tp153810 +a(g153807 +g153809 +S'be' +p153811 +tp153812 +a(g153809 +g153811 +S'the' +p153813 +tp153814 +a(g153811 +g153813 +S'work' +p153815 +tp153816 +a(g153813 +g153815 +S'of' +p153817 +tp153818 +a(g153815 +g153817 +S'van' +p153819 +tp153820 +a(g153817 +g153819 +S'scorel;' +p153821 +tp153822 +a(g153819 +g153821 +S'if' +p153823 +tp153824 +a(g153821 +g153823 +S'heemskerck' +p153825 +tp153826 +a(g153823 +g153825 +S'painted' +p153827 +tp153828 +a(g153825 +g153827 +S'it' +p153829 +tp153830 +a(g153827 +g153829 +S'while' +p153831 +tp153832 +a(g153829 +g153831 +S'in' +p153833 +tp153834 +a(g153831 +g153833 +S'van' +p153835 +tp153836 +a(g153833 +g153835 +S'scorel’s' +p153837 +tp153838 +a(g153835 +g153837 +S'studio,' +p153839 +tp153840 +a(g153837 +g153839 +S'it' +p153841 +tp153842 +a(g153839 +g153841 +S'may' +p153843 +tp153844 +a(g153841 +g153843 +S'have' +p153845 +tp153846 +a(g153843 +g153845 +S'been' +p153847 +tp153848 +a(g153845 +g153847 +S'sold' +p153849 +tp153850 +a(g153847 +g153849 +S'as' +p153851 +tp153852 +a(g153849 +g153851 +S'such.' +p153853 +tp153854 +a(g153851 +g153853 +S'the' +p153855 +tp153856 +a(g153853 +g153855 +S'story' +p153857 +tp153858 +a(g153855 +g153857 +S'of' +p153859 +tp153860 +a(g153857 +g153859 +S'the' +p153861 +tp153862 +a(g153859 +g153861 +S'holy' +p153863 +tp153864 +a(g153861 +g153863 +S'family’s' +p153865 +tp153866 +a(g153863 +g153865 +S'flight' +p153867 +tp153868 +a(g153865 +g153867 +S'into' +p153869 +tp153870 +a(g153867 +g153869 +S'egypt' +p153871 +tp153872 +a(g153869 +g153871 +S'to' +p153873 +tp153874 +a(g153871 +g153873 +S'avoid' +p153875 +tp153876 +a(g153873 +g153875 +S'herod’s' +p153877 +tp153878 +a(g153875 +g153877 +S'legions' +p153879 +tp153880 +a(g153877 +g153879 +S'became' +p153881 +tp153882 +a(g153879 +g153881 +S'a' +p153883 +tp153884 +a(g153881 +g153883 +S'popular' +p153885 +tp153886 +a(g153883 +g153885 +S'vehicle' +p153887 +tp153888 +a(g153885 +g153887 +S'for' +p153889 +tp153890 +a(g153887 +g153889 +S'landscape' +p153891 +tp153892 +a(g153889 +g153891 +S'painting.' +p153893 +tp153894 +a(g153891 +g153893 +S'here,' +p153895 +tp153896 +a(g153893 +g153895 +S'the' +p153897 +tp153898 +a(g153895 +g153897 +S'exotic' +p153899 +tp153900 +a(g153897 +g153899 +S'locale' +p153901 +tp153902 +a(g153899 +g153901 +S'is' +p153903 +tp153904 +a(g153901 +g153903 +S'reminiscent' +p153905 +tp153906 +a(g153903 +g153905 +S'of' +p153907 +tp153908 +a(g153905 +g153907 +S'sacred' +p153909 +tp153910 +a(g153907 +g153909 +S'groves' +p153911 +tp153912 +a(g153909 +g153911 +S'in' +p153913 +tp153914 +a(g153911 +g153913 +S'ancient' +p153915 +tp153916 +a(g153913 +g153915 +S'italy.' +p153917 +tp153918 +a(g153915 +g153917 +S'against' +p153919 +tp153920 +a(g153917 +g153919 +S'this' +p153921 +tp153922 +a(g153919 +g153921 +S'ambiguous' +p153923 +tp153924 +a(g153921 +g153923 +S'panorama,' +p153925 +tp153926 +a(g153923 +g153925 +S'the' +p153927 +tp153928 +a(g153925 +g153927 +S'large' +p153929 +tp153930 +a(g153927 +g153929 +S'image' +p153931 +tp153932 +a(g153929 +g153931 +S'of' +p153933 +tp153934 +a(g153931 +g153933 +S'the' +p153935 +tp153936 +a(g153933 +g153935 +S'virgin' +p153937 +tp153938 +a(g153935 +g153937 +S'and' +p153939 +tp153940 +a(g153937 +g153939 +S'child' +p153941 +tp153942 +a(g153939 +g153941 +S'takes' +p153943 +tp153944 +a(g153941 +g153943 +S'on' +p153945 +tp153946 +a(g153943 +g153945 +S'the' +p153947 +tp153948 +a(g153945 +g153947 +S'quality' +p153949 +tp153950 +a(g153947 +g153949 +S'of' +p153951 +tp153952 +a(g153949 +g153951 +S'an' +p153953 +tp153954 +a(g153951 +g153953 +S'icon.' +p153955 +tp153956 +a(g153953 +g153955 +S'the' +p153957 +tp153958 +a(g153955 +g153957 +S'crystal' +p153959 +tp153960 +a(g153957 +g153959 +S'globe' +p153961 +tp153962 +a(g153959 +g153961 +S'on' +p153963 +tp153964 +a(g153961 +g153963 +S'which' +p153965 +tp153966 +a(g153963 +g153965 +S'jesus' +p153967 +tp153968 +a(g153965 +g153967 +S'rests' +p153969 +tp153970 +a(g153967 +g153969 +S'suggests' +p153971 +tp153972 +a(g153969 +g153971 +S'his' +p153973 +tp153974 +a(g153971 +g153973 +S'dominion' +p153975 +tp153976 +a(g153973 +g153975 +S'over' +p153977 +tp153978 +a(g153975 +g153977 +S'the' +p153979 +tp153980 +a(g153977 +g153979 +S'world,' +p153981 +tp153982 +a(g153979 +g153981 +S'the' +p153983 +tp153984 +a(g153981 +g153983 +S'butterfly' +p153985 +tp153986 +a(g153983 +g153985 +S'his' +p153987 +tp153988 +a(g153985 +g153987 +S'resurrection.' +p153989 +tp153990 +a(g153987 +g153989 +S'because' +p153991 +tp153992 +a(g153989 +g153991 +S'they' +p153993 +tp153994 +a(g153991 +g153993 +S'are' +p153995 +tp153996 +a(g153993 +g153995 +S'painted' +p153997 +tp153998 +a(g153995 +g153997 +S'in' +p153999 +tp154000 +a(g153997 +g153999 +S'rich' +p154001 +tp154002 +a(g153999 +g154001 +S'colors' +p154003 +tp154004 +a(g154001 +g154003 +S'and' +p154005 +tp154006 +a(g154003 +g154005 +S'with' +p154007 +tp154008 +a(g154005 +g154007 +S'distinct' +p154009 +tp154010 +a(g154007 +g154009 +S'clarity,' +p154011 +tp154012 +a(g154009 +g154011 +S'they' +p154013 +tp154014 +a(g154011 +g154013 +S'seem' +p154015 +tp154016 +a(g154013 +g154015 +S'quite' +p154017 +tp154018 +a(g154015 +g154017 +S'near' +p154019 +tp154020 +a(g154017 +g154019 +S'to' +p154021 +tp154022 +a(g154019 +g154021 +S'us.' +p154023 +tp154024 +a(g154021 +g154023 +S'features' +p154025 +tp154026 +a(g154023 +g154025 +S'in' +p154027 +tp154028 +a(g154025 +g154027 +S'the' +p154029 +tp154030 +a(g154027 +g154029 +S'distance,' +p154031 +tp154032 +a(g154029 +g154031 +S'by' +p154033 +tp154034 +a(g154031 +g154033 +S'contrast,' +p154035 +tp154036 +a(g154033 +g154035 +S'are' +p154037 +tp154038 +a(g154035 +g154037 +S'obscured' +p154039 +tp154040 +a(g154037 +g154039 +S'by' +p154041 +tp154042 +a(g154039 +g154041 +S'a' +p154043 +tp154044 +a(g154041 +g154043 +S'progressive' +p154045 +tp154046 +a(g154043 +g154045 +S'shift' +p154047 +tp154048 +a(g154045 +g154047 +S'to' +p154049 +tp154050 +a(g154047 +g154049 +S'blue' +p154051 +tp154052 +a(g154049 +g154051 +S'that' +p154053 +tp154054 +a(g154051 +g154053 +S'mimics' +p154055 +tp154056 +a(g154053 +g154055 +S'the' +p154057 +tp154058 +a(g154055 +g154057 +S'intervening' +p154059 +tp154060 +a(g154057 +g154059 +S'haze' +p154061 +tp154062 +a(g154059 +g154061 +S'of' +p154063 +tp154064 +a(g154061 +g154063 +S'the' +p154065 +tp154066 +a(g154063 +g154065 +S'atmosphere.' +p154067 +tp154068 +a(g154065 +g154067 +S'one' +p154069 +tp154070 +a(g154067 +g154069 +S'of' +p154071 +tp154072 +a(g154069 +g154071 +S'the' +p154073 +tp154074 +a(g154071 +g154073 +S'earliest' +p154075 +tp154076 +a(g154073 +g154075 +S'italian' +p154077 +tp154078 +a(g154075 +g154077 +S'group' +p154079 +tp154080 +a(g154077 +g154079 +S'portraits,' +p154081 +tp154082 +a(g154079 +g154081 +S'this' +p154083 +tp154084 +a(g154081 +g154083 +S'painting' +p154085 +tp154086 +a(g154083 +g154085 +S'depicts' +p154087 +tp154088 +a(g154085 +g154087 +S'cardinal' +p154089 +tp154090 +a(g154087 +g154089 +S'bandinello' +p154091 +tp154092 +a(g154089 +g154091 +S'sauli' +p154093 +tp154094 +a(g154091 +g154093 +S'and' +p154095 +tp154096 +a(g154093 +g154095 +S'three' +p154097 +tp154098 +a(g154095 +g154097 +S'companions' +p154099 +tp154100 +a(g154097 +g154099 +S'gathered' +p154101 +tp154102 +a(g154099 +g154101 +S'around' +p154103 +tp154104 +a(g154101 +g154103 +S'a' +p154105 +tp154106 +a(g154103 +g154105 +S'table' +p154107 +tp154108 +a(g154105 +g154107 +S'covered' +p154109 +tp154110 +a(g154107 +g154109 +S'with' +p154111 +tp154112 +a(g154109 +g154111 +S'a' +p154113 +tp154114 +a(g154111 +g154113 +S'turkish' +p154115 +tp154116 +a(g154113 +g154115 +S'carpet.' +p154117 +tp154118 +a(g154115 +g154117 +S'set' +p154119 +tp154120 +a(g154117 +g154119 +S'within' +p154121 +tp154122 +a(g154119 +g154121 +S'a' +p154123 +tp154124 +a(g154121 +g154123 +S'narrow' +p154125 +tp154126 +a(g154123 +g154125 +S'space' +p154127 +tp154128 +a(g154125 +g154127 +S'closed' +p154129 +tp154130 +a(g154127 +g154129 +S'off' +p154131 +tp154132 +a(g154129 +g154131 +S'by' +p154133 +tp154134 +a(g154131 +g154133 +S'a' +p154135 +tp154136 +a(g154133 +g154135 +S'rich' +p154137 +tp154138 +a(g154135 +g154137 +S'green' +p154139 +tp154140 +a(g154137 +g154139 +S'wall' +p154141 +tp154142 +a(g154139 +g154141 +S'hanging,' +p154143 +tp154144 +a(g154141 +g154143 +S'the' +p154145 +tp154146 +a(g154143 +g154145 +S'figures' +p154147 +tp154148 +a(g154145 +g154147 +S'appear' +p154149 +tp154150 +a(g154147 +g154149 +S'to' +p154151 +tp154152 +a(g154149 +g154151 +S'have' +p154153 +tp154154 +a(g154151 +g154153 +S'been' +p154155 +tp154156 +a(g154153 +g154155 +S'discussing' +p154157 +tp154158 +a(g154155 +g154157 +S'the' +p154159 +tp154160 +a(g154157 +g154159 +S'geography' +p154161 +tp154162 +a(g154159 +g154161 +S'manuscript' +p154163 +tp154164 +a(g154161 +g154163 +S'lying' +p154165 +tp154166 +a(g154163 +g154165 +S'open' +p154167 +tp154168 +a(g154165 +g154167 +S'before' +p154169 +tp154170 +a(g154167 +g154169 +S'them.' +p154171 +tp154172 +a(g154169 +g154171 +S'bandinello' +p154173 +tp154174 +a(g154171 +g154173 +S'sauli' +p154175 +tp154176 +a(g154173 +g154175 +S'of' +p154177 +tp154178 +a(g154175 +g154177 +S'genoa' +p154179 +tp154180 +a(g154177 +g154179 +S'was' +p154181 +tp154182 +a(g154179 +g154181 +S'elevated' +p154183 +tp154184 +a(g154181 +g154183 +S'to' +p154185 +tp154186 +a(g154183 +g154185 +S'the' +p154187 +tp154188 +a(g154185 +g154187 +S'rank' +p154189 +tp154190 +a(g154187 +g154189 +S'of' +p154191 +tp154192 +a(g154189 +g154191 +S'cardinal' +p154193 +tp154194 +a(g154191 +g154193 +S'by' +p154195 +tp154196 +a(g154193 +g154195 +S'pope' +p154197 +tp154198 +a(g154195 +g154197 +S'julius' +p154199 +tp154200 +a(g154197 +g154199 +S'ii' +p154201 +tp154202 +a(g154199 +g154201 +S'in' +p154203 +tp154204 +a(g154201 +g154203 +S'1511.' +p154205 +tp154206 +a(g154203 +g154205 +S'in' +p154207 +tp154208 +a(g154205 +g154207 +S'1516,' +p154209 +tp154210 +a(g154207 +g154209 +S'when' +p154211 +tp154212 +a(g154209 +g154211 +S'this' +p154213 +tp154214 +a(g154211 +g154213 +S'painting' +p154215 +tp154216 +a(g154213 +g154215 +S'was' +p154217 +tp154218 +a(g154215 +g154217 +S'completed,' +p154219 +tp154220 +a(g154217 +g154219 +S'sauli' +p154221 +tp154222 +a(g154219 +g154221 +S'was' +p154223 +tp154224 +a(g154221 +g154223 +S'at' +p154225 +tp154226 +a(g154223 +g154225 +S'the' +p154227 +tp154228 +a(g154225 +g154227 +S'height' +p154229 +tp154230 +a(g154227 +g154229 +S'of' +p154231 +tp154232 +a(g154229 +g154231 +S'his' +p154233 +tp154234 +a(g154231 +g154233 +S'prestige' +p154235 +tp154236 +a(g154233 +g154235 +S'and' +p154237 +tp154238 +a(g154235 +g154237 +S'influence' +p154239 +tp154240 +a(g154237 +g154239 +S'in' +p154241 +tp154242 +a(g154239 +g154241 +S'rome.' +p154243 +tp154244 +a(g154241 +g154243 +S'his' +p154245 +tp154246 +a(g154243 +g154245 +S'fortunes' +p154247 +tp154248 +a(g154245 +g154247 +S'quickly' +p154249 +tp154250 +a(g154247 +g154249 +S'changed,' +p154251 +tp154252 +a(g154249 +g154251 +S'for' +p154253 +tp154254 +a(g154251 +g154253 +S'he' +p154255 +tp154256 +a(g154253 +g154255 +S'was' +p154257 +tp154258 +a(g154255 +g154257 +S'imprisoned' +p154259 +tp154260 +a(g154257 +g154259 +S'in' +p154261 +tp154262 +a(g154259 +g154261 +S'1517' +p154263 +tp154264 +a(g154261 +g154263 +S'for' +p154265 +tp154266 +a(g154263 +g154265 +S'plotting' +p154267 +tp154268 +a(g154265 +g154267 +S'against' +p154269 +tp154270 +a(g154267 +g154269 +S'pope' +p154271 +tp154272 +a(g154269 +g154271 +S'leo' +p154273 +tp154274 +a(g154271 +g154273 +S'x.' +p154275 +tp154276 +a(g154273 +g154275 +S'the' +p154277 +tp154278 +a(g154275 +g154277 +S'artist,' +p154279 +tp154280 +a(g154277 +g154279 +S'sebastiano' +p154281 +tp154282 +a(g154279 +g154281 +S'luciani,' +p154283 +tp154284 +a(g154281 +g154283 +S'is' +p154285 +tp154286 +a(g154283 +g154285 +S'better' +p154287 +tp154288 +a(g154285 +g154287 +S'known' +p154289 +tp154290 +a(g154287 +g154289 +S'as' +p154291 +tp154292 +a(g154289 +g154291 +S'sebastiano' +p154293 +tp154294 +a(g154291 +g154293 +S'del' +p154295 +tp154296 +a(g154293 +g154295 +S'piombo' +p154297 +tp154298 +a(g154295 +g154297 +S'from' +p154299 +tp154300 +a(g154297 +g154299 +S'his' +p154301 +tp154302 +a(g154299 +g154301 +S'appointment' +p154303 +tp154304 +a(g154301 +g154303 +S'in' +p154305 +tp154306 +a(g154303 +g154305 +S'1531' +p154307 +tp154308 +a(g154305 +g154307 +S'to' +p154309 +tp154310 +a(g154307 +g154309 +S'the' +p154311 +tp154312 +a(g154309 +g154311 +S'office' +p154313 +tp154314 +a(g154311 +g154313 +S'of' +p154315 +tp154316 +a(g154313 +g154315 +S'keeper' +p154317 +tp154318 +a(g154315 +g154317 +S'of' +p154319 +tp154320 +a(g154317 +g154319 +S'the' +p154321 +tp154322 +a(g154319 +g154321 +S'papal' +p154323 +tp154324 +a(g154321 +g154323 +S'seal,' +p154325 +tp154326 +a(g154323 +g154325 +S'or' +p154327 +tp154328 +a(g154325 +g154327 +S'unlike' +p154329 +tp154330 +a(g154327 +g154329 +S'the' +p154331 +tp154332 +a(g154329 +g154331 +S'sitters' +p154333 +tp154334 +a(g154331 +g154333 +S'in' +p154335 +tp154336 +a(g154333 +g154335 +S'many' +p154337 +tp154338 +a(g154335 +g154337 +S'similar' +p154339 +tp154340 +a(g154337 +g154339 +S'portraits' +p154341 +tp154342 +a(g154339 +g154341 +S'who' +p154343 +tp154344 +a(g154341 +g154343 +S'are' +p154345 +tp154346 +a(g154343 +g154345 +S'shown' +p154347 +tp154348 +a(g154345 +g154347 +S'in' +p154349 +tp154350 +a(g154347 +g154349 +S'front' +p154351 +tp154352 +a(g154349 +g154351 +S'of' +p154353 +tp154354 +a(g154351 +g154353 +S'an' +p154355 +tp154356 +a(g154353 +g154355 +S'open' +p154357 +tp154358 +a(g154355 +g154357 +S'window,' +p154359 +tp154360 +a(g154357 +g154359 +S'this' +p154361 +tp154362 +a(g154359 +g154361 +S'man' +p154363 +tp154364 +a(g154361 +g154363 +S'wearing' +p154365 +tp154366 +a(g154363 +g154365 +S'the' +p154367 +tp154368 +a(g154365 +g154367 +S'simple' +p154369 +tp154370 +a(g154367 +g154369 +S'black' +p154371 +tp154372 +a(g154369 +g154371 +S'robes' +p154373 +tp154374 +a(g154371 +g154373 +S'of' +p154375 +tp154376 +a(g154373 +g154375 +S'a' +p154377 +tp154378 +a(g154375 +g154377 +S'scholar' +p154379 +tp154380 +a(g154377 +g154379 +S'is' +p154381 +tp154382 +a(g154379 +g154381 +S'posed' +p154383 +tp154384 +a(g154381 +g154383 +S'in' +p154385 +tp154386 +a(g154383 +g154385 +S'an' +p154387 +tp154388 +a(g154385 +g154387 +S'enclosed,' +p154389 +tp154390 +a(g154387 +g154389 +S'quiet' +p154391 +tp154392 +a(g154389 +g154391 +S'place' +p154393 +tp154394 +a(g154391 +g154393 +S'appropriate' +p154395 +tp154396 +a(g154393 +g154395 +S'for' +p154397 +tp154398 +a(g154395 +g154397 +S'study' +p154399 +tp154400 +a(g154397 +g154399 +S'and' +p154401 +tp154402 +a(g154399 +g154401 +S'concentration.' +p154403 +tp154404 +a(g154401 +g154403 +S'his' +p154405 +tp154406 +a(g154403 +g154405 +S'three-quarter' +p154407 +tp154408 +a(g154405 +g154407 +S'pose' +p154409 +tp154410 +a(g154407 +g154409 +S'was' +p154411 +tp154412 +a(g154409 +g154411 +S'newly' +p154413 +tp154414 +a(g154411 +g154413 +S'introduced' +p154415 +tp154416 +a(g154413 +g154415 +S'around' +p154417 +tp154418 +a(g154415 +g154417 +S'1520.' +p154419 +tp154420 +a(g154417 +g154419 +S'restricted' +p154421 +tp154422 +a(g154419 +g154421 +S'colors' +p154423 +tp154424 +a(g154421 +g154423 +S'in' +p154425 +tp154426 +a(g154423 +g154425 +S'the' +p154427 +tp154428 +a(g154425 +g154427 +S'clothing' +p154429 +tp154430 +a(g154427 +g154429 +S'and' +p154431 +tp154432 +a(g154429 +g154431 +S'face' +p154433 +tp154434 +a(g154431 +g154433 +S'leave' +p154435 +tp154436 +a(g154433 +g154435 +S'the' +p154437 +tp154438 +a(g154435 +g154437 +S'small' +p154439 +tp154440 +a(g154437 +g154439 +S'arrangement' +p154441 +tp154442 +a(g154439 +g154441 +S'on' +p154443 +tp154444 +a(g154441 +g154443 +S'the' +p154445 +tp154446 +a(g154443 +g154445 +S'left' +p154447 +tp154448 +a(g154445 +g154447 +S'as' +p154449 +tp154450 +a(g154447 +g154449 +S'the' +p154451 +tp154452 +a(g154449 +g154451 +S'brightest' +p154453 +tp154454 +a(g154451 +g154453 +S'area' +p154455 +tp154456 +a(g154453 +g154455 +S'of' +p154457 +tp154458 +a(g154455 +g154457 +S'the' +p154459 +tp154460 +a(g154457 +g154459 +S'composition.' +p154461 +tp154462 +a(g154459 +g154461 +S'our' +p154463 +tp154464 +a(g154461 +g154463 +S'attention' +p154465 +tp154466 +a(g154463 +g154465 +S'is' +p154467 +tp154468 +a(g154465 +g154467 +S'drawn' +p154469 +tp154470 +a(g154467 +g154469 +S'to' +p154471 +tp154472 +a(g154469 +g154471 +S'the' +p154473 +tp154474 +a(g154471 +g154473 +S'tools' +p154475 +tp154476 +a(g154473 +g154475 +S'of' +p154477 +tp154478 +a(g154475 +g154477 +S'his' +p154479 +tp154480 +a(g154477 +g154479 +S'scholarly' +p154481 +tp154482 +a(g154479 +g154481 +S'pursuit:' +p154483 +tp154484 +a(g154481 +g154483 +S'books,' +p154485 +tp154486 +a(g154483 +g154485 +S'writing' +p154487 +tp154488 +a(g154485 +g154487 +S'implements,' +p154489 +tp154490 +a(g154487 +g154489 +S'and' +p154491 +tp154492 +a(g154489 +g154491 +S'a' +p154493 +tp154494 +a(g154491 +g154493 +S'globe.' +p154495 +tp154496 +a(g154493 +g154495 +S'(maps' +p154497 +tp154498 +a(g154495 +g154497 +S'were' +p154499 +tp154500 +a(g154497 +g154499 +S'first' +p154501 +tp154502 +a(g154499 +g154501 +S'applied' +p154503 +tp154504 +a(g154501 +g154503 +S'to' +p154505 +tp154506 +a(g154503 +g154505 +S'spheres' +p154507 +tp154508 +a(g154505 +g154507 +S'in' +p154509 +tp154510 +a(g154507 +g154509 +S'the' +p154511 +tp154512 +a(g154509 +g154511 +S'early' +p154513 +tp154514 +a(g154511 +g154513 +S'sixteenth' +p154515 +tp154516 +a(g154513 +g154515 +S'century.)' +p154517 +tp154518 +a(g154515 +g154517 +S'it' +p154519 +tp154520 +a(g154517 +g154519 +S'has' +p154521 +tp154522 +a(g154519 +g154521 +S'been' +p154523 +tp154524 +a(g154521 +g154523 +S'suggested' +p154525 +tp154526 +a(g154523 +g154525 +S'that' +p154527 +tp154528 +a(g154525 +g154527 +S'the' +p154529 +tp154530 +a(g154527 +g154529 +S'sitter' +p154531 +tp154532 +a(g154529 +g154531 +S'might' +p154533 +tp154534 +a(g154531 +g154533 +S'be' +p154535 +tp154536 +a(g154533 +g154535 +S'marcantonio' +p154537 +tp154538 +a(g154535 +g154537 +S'flaminio,' +p154539 +tp154540 +a(g154537 +g154539 +S'a' +p154541 +tp154542 +a(g154539 +g154541 +S'noted' +p154543 +tp154544 +a(g154541 +g154543 +S'scholar' +p154545 +tp154546 +a(g154543 +g154545 +S'and' +p154547 +tp154548 +a(g154545 +g154547 +S'poet' +p154549 +tp154550 +a(g154547 +g154549 +S'who' +p154551 +tp154552 +a(g154549 +g154551 +S'was' +p154553 +tp154554 +a(g154551 +g154553 +S'a' +p154555 +tp154556 +a(g154553 +g154555 +S'friend' +p154557 +tp154558 +a(g154555 +g154557 +S'of' +p154559 +tp154560 +a(g154557 +g154559 +S'the' +p154561 +tp154562 +a(g154559 +g154561 +S'artist.' +p154563 +tp154564 +a(g154561 +g154563 +S'sebastiano' +p154565 +tp154566 +a(g154563 +g154565 +S'must' +p154567 +tp154568 +a(g154565 +g154567 +S'have' +p154569 +tp154570 +a(g154567 +g154569 +S'painted' +p154571 +tp154572 +a(g154569 +g154571 +S'this' +p154573 +tp154574 +a(g154571 +g154573 +S'in' +p154575 +tp154576 +a(g154573 +g154575 +S'rome,' +p154577 +tp154578 +a(g154575 +g154577 +S'although' +p154579 +tp154580 +a(g154577 +g154579 +S'its' +p154581 +tp154582 +a(g154579 +g154581 +S'style' +p154583 +tp154584 +a(g154581 +g154583 +S'retains' +p154585 +tp154586 +a(g154583 +g154585 +S'traces' +p154587 +tp154588 +a(g154585 +g154587 +S'of' +p154589 +tp154590 +a(g154587 +g154589 +S'his' +p154591 +tp154592 +a(g154589 +g154591 +S'venetian' +p154593 +tp154594 +a(g154591 +g154593 +S'training.' +p154595 +tp154596 +a(g154593 +g154595 +S'this' +p154597 +tp154598 +a(g154595 +g154597 +S'is' +p154599 +tp154600 +a(g154597 +g154599 +S'particularly' +p154601 +tp154602 +a(g154599 +g154601 +S'evident' +p154603 +tp154604 +a(g154601 +g154603 +S'in' +p154605 +tp154606 +a(g154603 +g154605 +S'the' +p154607 +tp154608 +a(g154605 +g154607 +S'richness' +p154609 +tp154610 +a(g154607 +g154609 +S'of' +p154611 +tp154612 +a(g154609 +g154611 +S'its' +p154613 +tp154614 +a(g154611 +g154613 +S'pigment' +p154615 +tp154616 +a(g154613 +g154615 +S'--' +p154617 +tp154618 +a(g154615 +g154617 +S'even' +p154619 +tp154620 +a(g154617 +g154619 +S'the' +p154621 +tp154622 +a(g154619 +g154621 +S'somber' +p154623 +tp154624 +a(g154621 +g154623 +S'tones' +p154625 +tp154626 +a(g154623 +g154625 +S'have' +p154627 +tp154628 +a(g154625 +g154627 +S'luxurious' +p154629 +tp154630 +a(g154627 +g154629 +S'texture' +p154631 +tp154632 +a(g154629 +g154631 +S'--' +p154633 +tp154634 +a(g154631 +g154633 +S'and' +p154635 +tp154636 +a(g154633 +g154635 +S'in' +p154637 +tp154638 +a(g154635 +g154637 +S'the' +p154639 +tp154640 +a(g154637 +g154639 +S'slight' +p154641 +tp154642 +a(g154639 +g154641 +S'melancholy' +p154643 +tp154644 +a(g154641 +g154643 +S'that' +p154645 +tp154646 +a(g154643 +g154645 +S'distinguishes' +p154647 +tp154648 +a(g154645 +g154647 +S'the' +p154649 +tp154650 +a(g154647 +g154649 +S"man's" +p154651 +tp154652 +a(g154649 +g154651 +S'face.' +p154653 +tp154654 +a(g154651 +g154653 +S'(admittedly,' +p154655 +tp154656 +a(g154653 +g154655 +S'such' +p154657 +tp154658 +a(g154655 +g154657 +S'melancholy' +p154659 +tp154660 +a(g154657 +g154659 +S'would' +p154661 +tp154662 +a(g154659 +g154661 +S'have' +p154663 +tp154664 +a(g154661 +g154663 +S'been' +p154665 +tp154666 +a(g154663 +g154665 +S'expected' +p154667 +tp154668 +a(g154665 +g154667 +S'of' +p154669 +tp154670 +a(g154667 +g154669 +S'a' +p154671 +tp154672 +a(g154669 +g154671 +S'gentleman' +p154673 +tp154674 +a(g154671 +g154673 +S'poet.)' +p154675 +tp154676 +a(g154673 +g154675 +S'the' +p154677 +tp154678 +a(g154675 +g154677 +S'use' +p154679 +tp154680 +a(g154677 +g154679 +S'of' +p154681 +tp154682 +a(g154679 +g154681 +S'light,' +p154683 +tp154684 +a(g154681 +g154683 +S'however,' +p154685 +tp154686 +a(g154683 +g154685 +S'shows' +p154687 +tp154688 +a(g154685 +g154687 +S'the' +p154689 +tp154690 +a(g154687 +g154689 +S'new' +p154691 +tp154692 +a(g154689 +g154691 +S'influence' +p154693 +tp154694 +a(g154691 +g154693 +S'of' +p154695 +tp154696 +a(g154693 +g154695 +S'artists' +p154697 +tp154698 +a(g154695 +g154697 +S'in' +p154699 +tp154700 +a(g154697 +g154699 +S'rome:' +p154701 +tp154702 +a(g154699 +g154701 +S'rather' +p154703 +tp154704 +a(g154701 +g154703 +S'than' +p154705 +tp154706 +a(g154703 +g154705 +S'infusing' +p154707 +tp154708 +a(g154705 +g154707 +S'the' +p154709 +tp154710 +a(g154707 +g154709 +S'scene,' +p154711 +tp154712 +a(g154709 +g154711 +S'light' +p154713 +tp154714 +a(g154711 +g154713 +S'sculpts' +p154715 +tp154716 +a(g154713 +g154715 +S'the' +p154717 +tp154718 +a(g154715 +g154717 +S'figure' +p154719 +tp154720 +a(g154717 +g154719 +S'with' +p154721 +tp154722 +a(g154719 +g154721 +S'strong' +p154723 +tp154724 +a(g154721 +g154723 +S'three-dimensional' +p154725 +tp154726 +a(g154723 +g154725 +S'form.' +p154727 +tp154728 +a(g154725 +g154727 +S'sebastiano' +p154729 +tp154730 +a(g154727 +g154729 +S'had' +p154731 +tp154732 +a(g154729 +g154731 +S'always' +p154733 +tp154734 +a(g154731 +g154733 +S'modeled' +p154735 +tp154736 +a(g154733 +g154735 +S'his' +p154737 +tp154738 +a(g154735 +g154737 +S'figures' +p154739 +tp154740 +a(g154737 +g154739 +S'more' +p154741 +tp154742 +a(g154739 +g154741 +S'emphatically' +p154743 +tp154744 +a(g154741 +g154743 +S'than' +p154745 +tp154746 +a(g154743 +g154745 +S'most' +p154747 +tp154748 +a(g154745 +g154747 +S'other' +p154749 +tp154750 +a(g154747 +g154749 +S'venetian' +p154751 +tp154752 +a(g154749 +g154751 +S'painters,' +p154753 +tp154754 +a(g154751 +g154753 +S'and' +p154755 +tp154756 +a(g154753 +g154755 +S'his' +p154757 +tp154758 +a(g154755 +g154757 +S'natural' +p154759 +tp154760 +a(g154757 +g154759 +S'inclination' +p154761 +tp154762 +a(g154759 +g154761 +S'was' +p154763 +tp154764 +a(g154761 +g154763 +S'reinforced' +p154765 +tp154766 +a(g154763 +g154765 +S'by' +p154767 +tp154768 +a(g154765 +g154767 +S'contact' +p154769 +tp154770 +a(g154767 +g154769 +S'in' +p154771 +tp154772 +a(g154769 +g154771 +S'rome' +p154773 +tp154774 +a(g154771 +g154773 +S'with' +p154775 +tp154776 +a(g154773 +g154775 +S'the' +p154777 +tp154778 +a(g154775 +g154777 +S'patrician' +p154779 +tp154780 +a(g154777 +g154779 +S'andrea' +p154781 +tp154782 +a(g154779 +g154781 +S'gritti' +p154783 +tp154784 +a(g154781 +g154783 +S'(1455–1538)' +p154785 +tp154786 +a(g154783 +g154785 +S'was' +p154787 +tp154788 +a(g154785 +g154787 +S'elected' +p154789 +tp154790 +a(g154787 +g154789 +S'doge,' +p154791 +tp154792 +a(g154789 +g154791 +S'or' +p154793 +tp154794 +a(g154791 +g154793 +S'duke,' +p154795 +tp154796 +a(g154793 +g154795 +S'of' +p154797 +tp154798 +a(g154795 +g154797 +S'venice' +p154799 +tp154800 +a(g154797 +g154799 +S'in' +p154801 +tp154802 +a(g154799 +g154801 +S'1523,' +p154803 +tp154804 +a(g154801 +g154803 +S'after' +p154805 +tp154806 +a(g154803 +g154805 +S'having' +p154807 +tp154808 +a(g154805 +g154807 +S'served' +p154809 +tp154810 +a(g154807 +g154809 +S'the' +p154811 +tp154812 +a(g154809 +g154811 +S'city' +p154813 +tp154814 +a(g154811 +g154813 +S'as' +p154815 +tp154816 +a(g154813 +g154815 +S'a' +p154817 +tp154818 +a(g154815 +g154817 +S'military' +p154819 +tp154820 +a(g154817 +g154819 +S'commander' +p154821 +tp154822 +a(g154819 +g154821 +S'and' +p154823 +tp154824 +a(g154821 +g154823 +S'diplomat.' +p154825 +tp154826 +a(g154823 +g154825 +S'renowned' +p154827 +tp154828 +a(g154825 +g154827 +S'for' +p154829 +tp154830 +a(g154827 +g154829 +S'his' +p154831 +tp154832 +a(g154829 +g154831 +S'forceful' +p154833 +tp154834 +a(g154831 +g154833 +S'personality' +p154835 +tp154836 +a(g154833 +g154835 +S'and' +p154837 +tp154838 +a(g154835 +g154837 +S'his' +p154839 +tp154840 +a(g154837 +g154839 +S'promotion' +p154841 +tp154842 +a(g154839 +g154841 +S'of' +p154843 +tp154844 +a(g154841 +g154843 +S'the' +p154845 +tp154846 +a(g154843 +g154845 +S'arts,' +p154847 +tp154848 +a(g154845 +g154847 +S'gritti' +p154849 +tp154850 +a(g154847 +g154849 +S'remained' +p154851 +tp154852 +a(g154849 +g154851 +S'an' +p154853 +tp154854 +a(g154851 +g154853 +S'active' +p154855 +tp154856 +a(g154853 +g154855 +S'civic' +p154857 +tp154858 +a(g154855 +g154857 +S'leader' +p154859 +tp154860 +a(g154857 +g154859 +S'until' +p154861 +tp154862 +a(g154859 +g154861 +S'his' +p154863 +tp154864 +a(g154861 +g154863 +S'death' +p154865 +tp154866 +a(g154863 +g154865 +S'in' +p154867 +tp154868 +a(g154865 +g154867 +S'1538.' +p154869 +tp154870 +a(g154867 +g154869 +S'titian' +p154871 +tp154872 +a(g154869 +g154871 +S'painted' +p154873 +tp154874 +a(g154871 +g154873 +S'gritti' +p154875 +tp154876 +a(g154873 +g154875 +S'twice' +p154877 +tp154878 +a(g154875 +g154877 +S'during' +p154879 +tp154880 +a(g154877 +g154879 +S'his' +p154881 +tp154882 +a(g154879 +g154881 +S'reign.' +p154883 +tp154884 +a(g154881 +g154883 +S'he' +p154885 +tp154886 +a(g154883 +g154885 +S'completed' +p154887 +tp154888 +a(g154885 +g154887 +S'this' +p154889 +tp154890 +a(g154887 +g154889 +S'posthumous' +p154891 +tp154892 +a(g154889 +g154891 +S'portrait,' +p154893 +tp154894 +a(g154891 +g154893 +S'which' +p154895 +tp154896 +a(g154893 +g154895 +S'might' +p154897 +tp154898 +a(g154895 +g154897 +S'have' +p154899 +tp154900 +a(g154897 +g154899 +S'been' +p154901 +tp154902 +a(g154899 +g154901 +S'commissioned' +p154903 +tp154904 +a(g154901 +g154903 +S'as' +p154905 +tp154906 +a(g154903 +g154905 +S'a' +p154907 +tp154908 +a(g154905 +g154907 +S'memorial' +p154909 +tp154910 +a(g154907 +g154909 +S'by' +p154911 +tp154912 +a(g154909 +g154911 +S'the' +p154913 +tp154914 +a(g154911 +g154913 +S"doge's" +p154915 +tp154916 +a(g154913 +g154915 +S'family,' +p154917 +tp154918 +a(g154915 +g154917 +S'around' +p154919 +tp154920 +a(g154917 +g154919 +S'1546–1548.' +p154921 +tp154922 +a(g154919 +g154921 +S'dressed' +p154923 +tp154924 +a(g154921 +g154923 +S'in' +p154925 +tp154926 +a(g154923 +g154925 +S'the' +p154927 +tp154928 +a(g154925 +g154927 +S'brocade' +p154929 +tp154930 +a(g154927 +g154929 +S'robes' +p154931 +tp154932 +a(g154929 +g154931 +S'and' +p154933 +tp154934 +a(g154931 +g154933 +S'conical' +p154935 +tp154936 +a(g154933 +g154935 +S'hat' +p154937 +tp154938 +a(g154935 +g154937 +S'of' +p154939 +tp154940 +a(g154937 +g154939 +S'his' +p154941 +tp154942 +a(g154939 +g154941 +S'office,' +p154943 +tp154944 +a(g154941 +g154943 +S'gritti' +p154945 +tp154946 +a(g154943 +g154945 +S'makes' +p154947 +tp154948 +a(g154945 +g154947 +S'a' +p154949 +tp154950 +a(g154947 +g154949 +S'grand' +p154951 +tp154952 +a(g154949 +g154951 +S'impression.' +p154953 +tp154954 +a(g154951 +g154953 +S'glancing' +p154955 +tp154956 +a(g154953 +g154955 +S'sternly' +p154957 +tp154958 +a(g154955 +g154957 +S'to' +p154959 +tp154960 +a(g154957 +g154959 +S'the' +p154961 +tp154962 +a(g154959 +g154961 +S"viewer's" +p154963 +tp154964 +a(g154961 +g154963 +S'left,' +p154965 +tp154966 +a(g154963 +g154965 +S'he' +p154967 +tp154968 +a(g154965 +g154967 +S'gathers' +p154969 +tp154970 +a(g154967 +g154969 +S'up' +p154971 +tp154972 +a(g154969 +g154971 +S'his' +p154973 +tp154974 +a(g154971 +g154973 +S'cloak' +p154975 +tp154976 +a(g154973 +g154975 +S'with' +p154977 +tp154978 +a(g154975 +g154977 +S'his' +p154979 +tp154980 +a(g154977 +g154979 +S'right' +p154981 +tp154982 +a(g154979 +g154981 +S'hand' +p154983 +tp154984 +a(g154981 +g154983 +S'and' +p154985 +tp154986 +a(g154983 +g154985 +S'appears' +p154987 +tp154988 +a(g154985 +g154987 +S'to' +p154989 +tp154990 +a(g154987 +g154989 +S'stride' +p154991 +tp154992 +a(g154989 +g154991 +S'forward,' +p154993 +tp154994 +a(g154991 +g154993 +S'as' +p154995 +tp154996 +a(g154993 +g154995 +S'if' +p154997 +tp154998 +a(g154995 +g154997 +S'in' +p154999 +tp155000 +a(g154997 +g154999 +S'a' +p155001 +tp155002 +a(g154999 +g155001 +S'ceremonial' +p155003 +tp155004 +a(g155001 +g155003 +S'procession.' +p155005 +tp155006 +a(g155003 +g155005 +S'titian' +p155007 +tp155008 +a(g155005 +g155007 +S'further' +p155009 +tp155010 +a(g155007 +g155009 +S'enhanced' +p155011 +tp155012 +a(g155009 +g155011 +S'the' +p155013 +tp155014 +a(g155011 +g155013 +S'monumental' +p155015 +tp155016 +a(g155013 +g155015 +S'presence' +p155017 +tp155018 +a(g155015 +g155017 +S'of' +p155019 +tp155020 +a(g155017 +g155019 +S'the' +p155021 +tp155022 +a(g155019 +g155021 +S'sitter' +p155023 +tp155024 +a(g155021 +g155023 +S'by' +p155025 +tp155026 +a(g155023 +g155025 +S'extending' +p155027 +tp155028 +a(g155025 +g155027 +S'his' +p155029 +tp155030 +a(g155027 +g155029 +S'image' +p155031 +tp155032 +a(g155029 +g155031 +S'fully' +p155033 +tp155034 +a(g155031 +g155033 +S'to' +p155035 +tp155036 +a(g155033 +g155035 +S'the' +p155037 +tp155038 +a(g155035 +g155037 +S'edges' +p155039 +tp155040 +a(g155037 +g155039 +S'of' +p155041 +tp155042 +a(g155039 +g155041 +S'the' +p155043 +tp155044 +a(g155041 +g155043 +S'canvas.' +p155045 +tp155046 +a(g155043 +g155045 +S'with' +p155047 +tp155048 +a(g155045 +g155047 +S'its' +p155049 +tp155050 +a(g155047 +g155049 +S'free,' +p155051 +tp155052 +a(g155049 +g155051 +S'expressive' +p155053 +tp155054 +a(g155051 +g155053 +S'brushwork,' +p155055 +tp155056 +a(g155053 +g155055 +S'this' +p155057 +tp155058 +a(g155055 +g155057 +S'portrait' +p155059 +tp155060 +a(g155057 +g155059 +S'well' +p155061 +tp155062 +a(g155059 +g155061 +S'exemplifies' +p155063 +tp155064 +a(g155061 +g155063 +S"titian's" +p155065 +tp155066 +a(g155063 +g155065 +S'mature' +p155067 +tp155068 +a(g155065 +g155067 +S'painting' +p155069 +tp155070 +a(g155067 +g155069 +S'style.' +p155071 +tp155072 +a(g155069 +g155071 +S'because' +p155073 +tp155074 +a(g155071 +g155073 +S'the' +p155075 +tp155076 +a(g155073 +g155075 +S'canvas' +p155077 +tp155078 +a(g155075 +g155077 +S'has' +p155079 +tp155080 +a(g155077 +g155079 +S'never' +p155081 +tp155082 +a(g155079 +g155081 +S'been' +p155083 +tp155084 +a(g155081 +g155083 +S'flattened' +p155085 +tp155086 +a(g155083 +g155085 +S'by' +p155087 +tp155088 +a(g155085 +g155087 +S'the' +p155089 +tp155090 +a(g155087 +g155089 +S'process' +p155091 +tp155092 +a(g155089 +g155091 +S'of' +p155093 +tp155094 +a(g155091 +g155093 +S'lining,' +p155095 +tp155096 +a(g155093 +g155095 +S'the' +p155097 +tp155098 +a(g155095 +g155097 +S'varying' +p155099 +tp155100 +a(g155097 +g155099 +S'surface' +p155101 +tp155102 +a(g155099 +g155101 +S'textures,' +p155103 +tp155104 +a(g155101 +g155103 +S'such' +p155105 +tp155106 +a(g155103 +g155105 +S'as' +p155107 +tp155108 +a(g155105 +g155107 +S'the' +p155109 +tp155110 +a(g155107 +g155109 +S'transparent' +p155111 +tp155112 +a(g155109 +g155111 +S'red' +p155113 +tp155114 +a(g155111 +g155113 +S'of' +p155115 +tp155116 +a(g155113 +g155115 +S'the' +p155117 +tp155118 +a(g155115 +g155117 +S'robe' +p155119 +tp155120 +a(g155117 +g155119 +S'and' +p155121 +tp155122 +a(g155119 +g155121 +S'the' +p155123 +tp155124 +a(g155121 +g155123 +S'heavy' +p155125 +tp155126 +a(g155123 +g155125 +S'impasto' +p155127 +tp155128 +a(g155125 +g155127 +S'of' +p155129 +tp155130 +a(g155127 +g155129 +S'the' +p155131 +tp155132 +a(g155129 +g155131 +S'white' +p155133 +tp155134 +a(g155131 +g155133 +S'fur' +p155135 +tp155136 +a(g155133 +g155135 +S'and' +p155137 +tp155138 +a(g155135 +g155137 +S'gold' +p155139 +tp155140 +a(g155137 +g155139 +S'buttons,' +p155141 +tp155142 +a(g155139 +g155141 +S'reveal' +p155143 +tp155144 +a(g155141 +g155143 +S'the' +p155145 +tp155146 +a(g155143 +g155145 +S'ways' +p155147 +tp155148 +a(g155145 +g155147 +S'titian' +p155149 +tp155150 +a(g155147 +g155149 +S'applied' +p155151 +tp155152 +a(g155149 +g155151 +S'his' +p155153 +tp155154 +a(g155151 +g155153 +S'paints.' +p155155 +tp155156 +a(g155153 +g155155 +S'the' +p155157 +tp155158 +a(g155155 +g155157 +S'mystery' +p155159 +tp155160 +a(g155157 +g155159 +S'of' +p155161 +tp155162 +a(g155159 +g155161 +S"mary's" +p155163 +tp155164 +a(g155161 +g155163 +S'physical' +p155165 +tp155166 +a(g155163 +g155165 +S'ascent' +p155167 +tp155168 +a(g155165 +g155167 +S'into' +p155169 +tp155170 +a(g155167 +g155169 +S'heaven' +p155171 +tp155172 +a(g155169 +g155171 +S'was' +p155173 +tp155174 +a(g155171 +g155173 +S'a' +p155175 +tp155176 +a(g155173 +g155175 +S'favorite' +p155177 +tp155178 +a(g155175 +g155177 +S'theme' +p155179 +tp155180 +a(g155177 +g155179 +S'during' +p155181 +tp155182 +a(g155179 +g155181 +S'the' +p155183 +tp155184 +a(g155181 +g155183 +S'counter-reformation,' +p155185 +tp155186 +a(g155183 +g155185 +S'when' +p155187 +tp155188 +a(g155185 +g155187 +S'the' +p155189 +tp155190 +a(g155187 +g155189 +S'catholic' +p155191 +tp155192 +a(g155189 +g155191 +S'church' +p155193 +tp155194 +a(g155191 +g155193 +S'was' +p155195 +tp155196 +a(g155193 +g155195 +S'reaffirming' +p155197 +tp155198 +a(g155195 +g155197 +S'its' +p155199 +tp155200 +a(g155197 +g155199 +S'devotion' +p155201 +tp155202 +a(g155199 +g155201 +S'to' +p155203 +tp155204 +a(g155201 +g155203 +S'the' +p155205 +tp155206 +a(g155203 +g155205 +S'virgin.' +p155207 +tp155208 +a(g155205 +g155207 +S'in' +p155209 +tp155210 +a(g155207 +g155209 +S'its' +p155211 +tp155212 +a(g155209 +g155211 +S'sensuous' +p155213 +tp155214 +a(g155211 +g155213 +S'beauty' +p155215 +tp155216 +a(g155213 +g155215 +S'and' +p155217 +tp155218 +a(g155215 +g155217 +S'dramatic' +p155219 +tp155220 +a(g155217 +g155219 +S'appeal,' +p155221 +tp155222 +a(g155219 +g155221 +S'juan' +p155223 +tp155224 +a(g155221 +g155223 +S'de' +p155225 +tp155226 +a(g155223 +g155225 +S'valdés' +p155227 +tp155228 +a(g155225 +g155227 +S"leal's" +p155229 +tp155230 +a(g155227 +g155229 +S'depiction' +p155231 +tp155232 +a(g155229 +g155231 +S'characterizes' +p155233 +tp155234 +a(g155231 +g155233 +S'the' +p155235 +tp155236 +a(g155233 +g155235 +S'baroque' +p155237 +tp155238 +a(g155235 +g155237 +S'style' +p155239 +tp155240 +a(g155237 +g155239 +S'at' +p155241 +tp155242 +a(g155239 +g155241 +S'its' +p155243 +tp155244 +a(g155241 +g155243 +S'most' +p155245 +tp155246 +a(g155243 +g155245 +S'operatic.' +p155247 +tp155248 +a(g155245 +g155247 +S'amidst' +p155249 +tp155250 +a(g155247 +g155249 +S'spiraling' +p155251 +tp155252 +a(g155249 +g155251 +S'forms,' +p155253 +tp155254 +a(g155251 +g155253 +S'swirling' +p155255 +tp155256 +a(g155253 +g155255 +S'draperies,' +p155257 +tp155258 +a(g155255 +g155257 +S'and' +p155259 +tp155260 +a(g155257 +g155259 +S'extravagant' +p155261 +tp155262 +a(g155259 +g155261 +S'gestures,' +p155263 +tp155264 +a(g155261 +g155263 +S'the' +p155265 +tp155266 +a(g155263 +g155265 +S'figure' +p155267 +tp155268 +a(g155265 +g155267 +S'of' +p155269 +tp155270 +a(g155267 +g155269 +S'mary,' +p155271 +tp155272 +a(g155269 +g155271 +S'arms' +p155273 +tp155274 +a(g155271 +g155273 +S'outstretched,' +p155275 +tp155276 +a(g155273 +g155275 +S'is' +p155277 +tp155278 +a(g155275 +g155277 +S'borne' +p155279 +tp155280 +a(g155277 +g155279 +S'aloft' +p155281 +tp155282 +a(g155279 +g155281 +S'on' +p155283 +tp155284 +a(g155281 +g155283 +S'the' +p155285 +tp155286 +a(g155283 +g155285 +S'wings' +p155287 +tp155288 +a(g155285 +g155287 +S'of' +p155289 +tp155290 +a(g155287 +g155289 +S'a' +p155291 +tp155292 +a(g155289 +g155291 +S'robust' +p155293 +tp155294 +a(g155291 +g155293 +S'group' +p155295 +tp155296 +a(g155293 +g155295 +S'of' +p155297 +tp155298 +a(g155295 +g155297 +S'angels,' +p155299 +tp155300 +a(g155297 +g155299 +S'while' +p155301 +tp155302 +a(g155299 +g155301 +S'a' +p155303 +tp155304 +a(g155301 +g155303 +S'choir' +p155305 +tp155306 +a(g155303 +g155305 +S'of' +p155307 +tp155308 +a(g155305 +g155307 +S'less' +p155309 +tp155310 +a(g155307 +g155309 +S'corporeal' +p155311 +tp155312 +a(g155309 +g155311 +S'angels' +p155313 +tp155314 +a(g155311 +g155313 +S'makes' +p155315 +tp155316 +a(g155313 +g155315 +S'music' +p155317 +tp155318 +a(g155315 +g155317 +S'in' +p155319 +tp155320 +a(g155317 +g155319 +S'the' +p155321 +tp155322 +a(g155319 +g155321 +S'background.' +p155323 +tp155324 +a(g155321 +g155323 +S'the' +p155325 +tp155326 +a(g155323 +g155325 +S'excitement' +p155327 +tp155328 +a(g155325 +g155327 +S'of' +p155329 +tp155330 +a(g155327 +g155329 +S'the' +p155331 +tp155332 +a(g155329 +g155331 +S'supernatural' +p155333 +tp155334 +a(g155331 +g155333 +S'event' +p155335 +tp155336 +a(g155333 +g155335 +S'is' +p155337 +tp155338 +a(g155335 +g155337 +S'sustained' +p155339 +tp155340 +a(g155337 +g155339 +S'by' +p155341 +tp155342 +a(g155339 +g155341 +S'the' +p155343 +tp155344 +a(g155341 +g155343 +S'varied' +p155345 +tp155346 +a(g155343 +g155345 +S'poses' +p155347 +tp155348 +a(g155345 +g155347 +S'and' +p155349 +tp155350 +a(g155347 +g155349 +S'dramatic' +p155351 +tp155352 +a(g155349 +g155351 +S'gestures' +p155353 +tp155354 +a(g155351 +g155353 +S'of' +p155355 +tp155356 +a(g155353 +g155355 +S'the' +p155357 +tp155358 +a(g155355 +g155357 +S'animated' +p155359 +tp155360 +a(g155357 +g155359 +S'figures' +p155361 +tp155362 +a(g155359 +g155361 +S'gathered' +p155363 +tp155364 +a(g155361 +g155363 +S'around' +p155365 +tp155366 +a(g155363 +g155365 +S'the' +p155367 +tp155368 +a(g155365 +g155367 +S'tomb' +p155369 +tp155370 +a(g155367 +g155369 +S'below.' +p155371 +tp155372 +a(g155369 +g155371 +S'saint' +p155373 +tp155374 +a(g155371 +g155373 +S'paul,' +p155375 +tp155376 +a(g155373 +g155375 +S'closest' +p155377 +tp155378 +a(g155375 +g155377 +S'to' +p155379 +tp155380 +a(g155377 +g155379 +S'us,' +p155381 +tp155382 +a(g155379 +g155381 +S'shields' +p155383 +tp155384 +a(g155381 +g155383 +S'his' +p155385 +tp155386 +a(g155383 +g155385 +S'eyes' +p155387 +tp155388 +a(g155385 +g155387 +S'against' +p155389 +tp155390 +a(g155387 +g155389 +S'the' +p155391 +tp155392 +a(g155389 +g155391 +S'radiant' +p155393 +tp155394 +a(g155391 +g155393 +S'light.' +p155395 +tp155396 +a(g155393 +g155395 +S'utilizing' +p155397 +tp155398 +a(g155395 +g155397 +S'a' +p155399 +tp155400 +a(g155397 +g155399 +S'popular' +p155401 +tp155402 +a(g155399 +g155401 +S'device' +p155403 +tp155404 +a(g155401 +g155403 +S'of' +p155405 +tp155406 +a(g155403 +g155405 +S'baroque' +p155407 +tp155408 +a(g155405 +g155407 +S'painting,' +p155409 +tp155410 +a(g155407 +g155409 +S'valdés' +p155411 +tp155412 +a(g155409 +g155411 +S'leal' +p155413 +tp155414 +a(g155411 +g155413 +S'placed' +p155415 +tp155416 +a(g155413 +g155415 +S'the' +p155417 +tp155418 +a(g155415 +g155417 +S'monumental' +p155419 +tp155420 +a(g155417 +g155419 +S'figures' +p155421 +tp155422 +a(g155419 +g155421 +S'of' +p155423 +tp155424 +a(g155421 +g155423 +S'two' +p155425 +tp155426 +a(g155423 +g155425 +S'of' +p155427 +tp155428 +a(g155425 +g155427 +S'the' +p155429 +tp155430 +a(g155427 +g155429 +S'apostles' +p155431 +tp155432 +a(g155429 +g155431 +S'in' +p155433 +tp155434 +a(g155431 +g155433 +S'the' +p155435 +tp155436 +a(g155433 +g155435 +S'foreground' +p155437 +tp155438 +a(g155435 +g155437 +S'to' +p155439 +tp155440 +a(g155437 +g155439 +S'lead' +p155441 +tp155442 +a(g155439 +g155441 +S'the' +p155443 +tp155444 +a(g155441 +g155443 +S'eye' +p155445 +tp155446 +a(g155443 +g155445 +S'into' +p155447 +tp155448 +a(g155445 +g155447 +S'the' +p155449 +tp155450 +a(g155447 +g155449 +S'composition' +p155451 +tp155452 +a(g155449 +g155451 +S'and' +p155453 +tp155454 +a(g155451 +g155453 +S'to' +p155455 +tp155456 +a(g155453 +g155455 +S'establish' +p155457 +tp155458 +a(g155455 +g155457 +S'a' +p155459 +tp155460 +a(g155457 +g155459 +S'sense' +p155461 +tp155462 +a(g155459 +g155461 +S'of' +p155463 +tp155464 +a(g155461 +g155463 +S'scale.' +p155465 +tp155466 +a(g155463 +g155465 +S'in' +p155467 +tp155468 +a(g155465 +g155467 +S'this' +p155469 +tp155470 +a(g155467 +g155469 +S'instance,' +p155471 +tp155472 +a(g155469 +g155471 +S'their' +p155473 +tp155474 +a(g155471 +g155473 +S'position' +p155475 +tp155476 +a(g155473 +g155475 +S'also' +p155477 +tp155478 +a(g155475 +g155477 +S'serves' +p155479 +tp155480 +a(g155477 +g155479 +S'to' +p155481 +tp155482 +a(g155479 +g155481 +S'create' +p155483 +tp155484 +a(g155481 +g155483 +S'the' +p155485 +tp155486 +a(g155483 +g155485 +S'impression' +p155487 +tp155488 +a(g155485 +g155487 +S'that,' +p155489 +tp155490 +a(g155487 +g155489 +S'like' +p155491 +tp155492 +a(g155489 +g155491 +S'the' +p155493 +tp155494 +a(g155491 +g155493 +S'viewer,' +p155495 +tp155496 +a(g155493 +g155495 +S'they' +p155497 +tp155498 +a(g155495 +g155497 +S'have' +p155499 +tp155500 +a(g155497 +g155499 +S'just' +p155501 +tp155502 +a(g155499 +g155501 +S'come' +p155503 +tp155504 +a(g155501 +g155503 +S'upon' +p155505 +tp155506 +a(g155503 +g155505 +S'the' +p155507 +tp155508 +a(g155505 +g155507 +S'scene' +p155509 +tp155510 +a(g155507 +g155509 +S'from' +p155511 +tp155512 +a(g155509 +g155511 +S'a' +p155513 +tp155514 +a(g155511 +g155513 +S'point' +p155515 +tp155516 +a(g155513 +g155515 +S'outside' +p155517 +tp155518 +a(g155515 +g155517 +S'the' +p155519 +tp155520 +a(g155517 +g155519 +S'picture' +p155521 +tp155522 +a(g155519 +g155521 +S'space.' +p155523 +tp155524 +a(g155521 +g155523 +S'renowned' +p155525 +tp155526 +a(g155523 +g155525 +S'for' +p155527 +tp155528 +a(g155525 +g155527 +S'his' +p155529 +tp155530 +a(g155527 +g155529 +S'vivacious' +p155531 +tp155532 +a(g155529 +g155531 +S'brushwork,' +p155533 +tp155534 +a(g155531 +g155533 +S'valdés' +p155535 +tp155536 +a(g155533 +g155535 +S'leal' +p155537 +tp155538 +a(g155535 +g155537 +S'was' +p155539 +tp155540 +a(g155537 +g155539 +S'also' +p155541 +tp155542 +a(g155539 +g155541 +S'a' +p155543 +tp155544 +a(g155541 +g155543 +S'superb' +p155545 +tp155546 +a(g155543 +g155545 +S'colorist,' +p155547 +tp155548 +a(g155545 +g155547 +S'whose' +p155549 +tp155550 +a(g155547 +g155549 +S'pale' +p155551 +tp155552 +a(g155549 +g155551 +S'but' +p155553 +tp155554 +a(g155551 +g155553 +S'vibrant' +p155555 +tp155556 +a(g155553 +g155555 +S'palette' +p155557 +tp155558 +a(g155555 +g155557 +S'anticipated' +p155559 +tp155560 +a(g155557 +g155559 +S'the' +p155561 +tp155562 +a(g155559 +g155561 +S'decorative' +p155563 +tp155564 +a(g155561 +g155563 +S'tones' +p155565 +tp155566 +a(g155563 +g155565 +S'of' +p155567 +tp155568 +a(g155565 +g155567 +S'the' +p155569 +tp155570 +a(g155567 +g155569 +S'rococo' +p155571 +tp155572 +a(g155569 +g155571 +S'style' +p155573 +tp155574 +a(g155571 +g155573 +S'of' +p155575 +tp155576 +a(g155573 +g155575 +S'the' +p155577 +tp155578 +a(g155575 +g155577 +S'eighteenth' +p155579 +tp155580 +a(g155577 +g155579 +S'century.' +p155581 +tp155582 +a(g155579 +g155581 +S'in' +p155583 +tp155584 +a(g155581 +g155583 +S'a' +p155585 +tp155586 +a(g155583 +g155585 +S'city' +p155587 +tp155588 +a(g155585 +g155587 +S'filled' +p155589 +tp155590 +a(g155587 +g155589 +S'with' +p155591 +tp155592 +a(g155589 +g155591 +S'artists,' +p155593 +tp155594 +a(g155591 +g155593 +S'the' +p155595 +tp155596 +a(g155593 +g155595 +S'busiest' +p155597 +tp155598 +a(g155595 +g155597 +S'workshop' +p155599 +tp155600 +a(g155597 +g155599 +S'in' +p155601 +tp155602 +a(g155599 +g155601 +S'the' +p155603 +tp155604 +a(g155601 +g155603 +S'later' +p155605 +tp155606 +a(g155603 +g155605 +S'1400s' +p155607 +tp155608 +a(g155605 +g155607 +S'was' +p155609 +tp155610 +a(g155607 +g155609 +S'that' +p155611 +tp155612 +a(g155609 +g155611 +S'of' +p155613 +tp155614 +a(g155611 +g155613 +S'domenico' +p155615 +tp155616 +a(g155613 +g155615 +S'ghirlandaio.' +p155617 +tp155618 +a(g155615 +g155617 +S'his' +p155619 +tp155620 +a(g155617 +g155619 +S'popularity' +p155621 +tp155622 +a(g155619 +g155621 +S'rested' +p155623 +tp155624 +a(g155621 +g155623 +S'on' +p155625 +tp155626 +a(g155623 +g155625 +S'the' +p155627 +tp155628 +a(g155625 +g155627 +S'conventional' +p155629 +tp155630 +a(g155627 +g155629 +S'piety' +p155631 +tp155632 +a(g155629 +g155631 +S'of' +p155633 +tp155634 +a(g155631 +g155633 +S'his' +p155635 +tp155636 +a(g155633 +g155635 +S'images,' +p155637 +tp155638 +a(g155635 +g155637 +S'his' +p155639 +tp155640 +a(g155637 +g155639 +S'direct' +p155641 +tp155642 +a(g155639 +g155641 +S'and' +p155643 +tp155644 +a(g155641 +g155643 +S'forthright' +p155645 +tp155646 +a(g155643 +g155645 +S'style,' +p155647 +tp155648 +a(g155645 +g155647 +S'and' +p155649 +tp155650 +a(g155647 +g155649 +S'his' +p155651 +tp155652 +a(g155649 +g155651 +S'high' +p155653 +tp155654 +a(g155651 +g155653 +S'standards' +p155655 +tp155656 +a(g155653 +g155655 +S'of' +p155657 +tp155658 +a(g155655 +g155657 +S'craftsmanship.' +p155659 +tp155660 +a(g155657 +g155659 +S'these' +p155661 +tp155662 +a(g155659 +g155661 +S'qualities' +p155663 +tp155664 +a(g155661 +g155663 +S'probably' +p155665 +tp155666 +a(g155663 +g155665 +S'appealed' +p155667 +tp155668 +a(g155665 +g155667 +S'to' +p155669 +tp155670 +a(g155667 +g155669 +S'the' +p155671 +tp155672 +a(g155669 +g155671 +S'average' +p155673 +tp155674 +a(g155671 +g155673 +S'florentine,' +p155675 +tp155676 +a(g155673 +g155675 +S'who' +p155677 +tp155678 +a(g155675 +g155677 +S'was' +p155679 +tp155680 +a(g155677 +g155679 +S'less' +p155681 +tp155682 +a(g155679 +g155681 +S'attracted' +p155683 +tp155684 +a(g155681 +g155683 +S'by' +p155685 +tp155686 +a(g155683 +g155685 +S'the' +p155687 +tp155688 +a(g155685 +g155687 +S'humanist' +p155689 +tp155690 +a(g155687 +g155689 +S'erudition' +p155691 +tp155692 +a(g155689 +g155691 +S'and' +p155693 +tp155694 +a(g155691 +g155693 +S'advanced' +p155695 +tp155696 +a(g155693 +g155695 +S'tastes' +p155697 +tp155698 +a(g155695 +g155697 +S'that' +p155699 +tp155700 +a(g155697 +g155699 +S'enthralled' +p155701 +tp155702 +a(g155699 +g155701 +S'the' +p155703 +tp155704 +a(g155701 +g155703 +S"city's" +p155705 +tp155706 +a(g155703 +g155705 +S'elite.' +p155707 +tp155708 +a(g155705 +g155707 +S'works' +p155709 +tp155710 +a(g155707 +g155709 +S'like' +p155711 +tp155712 +a(g155709 +g155711 +S'this' +p155713 +tp155714 +a(g155711 +g155713 +S'devout' +p155715 +tp155716 +a(g155713 +g155715 +S'image' +p155717 +tp155718 +a(g155715 +g155717 +S'contrast' +p155719 +tp155720 +a(g155717 +g155719 +S'with' +p155721 +tp155722 +a(g155719 +g155721 +S'the' +p155723 +tp155724 +a(g155721 +g155723 +S'sensuality' +p155725 +tp155726 +a(g155723 +g155725 +S'and' +p155727 +tp155728 +a(g155725 +g155727 +S'luxury' +p155729 +tp155730 +a(g155727 +g155729 +S'denounced' +p155731 +tp155732 +a(g155729 +g155731 +S'by' +p155733 +tp155734 +a(g155731 +g155733 +S'savonarola.' +p155735 +tp155736 +a(g155733 +g155735 +S'the' +p155737 +tp155738 +a(g155735 +g155737 +S'gold' +p155739 +tp155740 +a(g155737 +g155739 +S'background' +p155741 +tp155742 +a(g155739 +g155741 +S'is' +p155743 +tp155744 +a(g155741 +g155743 +S'unusual—a' +p155745 +tp155746 +a(g155743 +g155745 +S'little' +p155747 +tp155748 +a(g155745 +g155747 +S'old-fashioned' +p155749 +tp155750 +a(g155747 +g155749 +S'for' +p155751 +tp155752 +a(g155749 +g155751 +S'a' +p155753 +tp155754 +a(g155751 +g155753 +S'painting' +p155755 +tp155756 +a(g155753 +g155755 +S'done' +p155757 +tp155758 +a(g155755 +g155757 +S'in' +p155759 +tp155760 +a(g155757 +g155759 +S'the' +p155761 +tp155762 +a(g155759 +g155761 +S'1470s.' +p155763 +tp155764 +a(g155761 +g155763 +S'it' +p155765 +tp155766 +a(g155763 +g155765 +S'is' +p155767 +tp155768 +a(g155765 +g155767 +S'not' +p155769 +tp155770 +a(g155767 +g155769 +S'clear' +p155771 +tp155772 +a(g155769 +g155771 +S'whether' +p155773 +tp155774 +a(g155771 +g155773 +S'the' +p155775 +tp155776 +a(g155773 +g155775 +S'present' +p155777 +tp155778 +a(g155775 +g155777 +S'gilt' +p155779 +tp155780 +a(g155777 +g155779 +S'surface' +p155781 +tp155782 +a(g155779 +g155781 +S'(not' +p155783 +tp155784 +a(g155781 +g155783 +S'original)' +p155785 +tp155786 +a(g155783 +g155785 +S'replaced' +p155787 +tp155788 +a(g155785 +g155787 +S'original' +p155789 +tp155790 +a(g155787 +g155789 +S'gilding' +p155791 +tp155792 +a(g155789 +g155791 +S'or' +p155793 +tp155794 +a(g155791 +g155793 +S'was' +p155795 +tp155796 +a(g155793 +g155795 +S'applied' +p155797 +tp155798 +a(g155795 +g155797 +S'over' +p155799 +tp155800 +a(g155797 +g155799 +S'a' +p155801 +tp155802 +a(g155799 +g155801 +S'now-obliterated' +p155803 +tp155804 +a(g155801 +g155803 +S'landscape,' +p155805 +tp155806 +a(g155803 +g155805 +S'such' +p155807 +tp155808 +a(g155805 +g155807 +S'as' +p155809 +tp155810 +a(g155807 +g155809 +S'seen' +p155811 +tp155812 +a(g155809 +g155811 +S'elsewhere' +p155813 +tp155814 +a(g155811 +g155813 +S'in' +p155815 +tp155816 +a(g155813 +g155815 +S'this' +p155817 +tp155818 +a(g155815 +g155817 +S'room.' +p155819 +tp155820 +a(g155817 +g155819 +S'if' +p155821 +tp155822 +a(g155819 +g155821 +S'the' +p155823 +tp155824 +a(g155821 +g155823 +S'painting' +p155825 +tp155826 +a(g155823 +g155825 +S'was' +p155827 +tp155828 +a(g155825 +g155827 +S'gilded' +p155829 +tp155830 +a(g155827 +g155829 +S'from' +p155831 +tp155832 +a(g155829 +g155831 +S'the' +p155833 +tp155834 +a(g155831 +g155833 +S'outset,' +p155835 +tp155836 +a(g155833 +g155835 +S'this' +p155837 +tp155838 +a(g155835 +g155837 +S'would' +p155839 +tp155840 +a(g155837 +g155839 +S'have' +p155841 +tp155842 +a(g155839 +g155841 +S'been' +p155843 +tp155844 +a(g155841 +g155843 +S'specified' +p155845 +tp155846 +a(g155843 +g155845 +S'in' +p155847 +tp155848 +a(g155845 +g155847 +S'the' +p155849 +tp155850 +a(g155847 +g155849 +S'contract' +p155851 +tp155852 +a(g155849 +g155851 +S'between' +p155853 +tp155854 +a(g155851 +g155853 +S'artist' +p155855 +tp155856 +a(g155853 +g155855 +S'and' +p155857 +tp155858 +a(g155855 +g155857 +S'patron.' +p155859 +tp155860 +a(g155857 +g155859 +S'until' +p155861 +tp155862 +a(g155859 +g155861 +S'the' +p155863 +tp155864 +a(g155861 +g155863 +S'mid-fifteenth' +p155865 +tp155866 +a(g155863 +g155865 +S'century,' +p155867 +tp155868 +a(g155865 +g155867 +S'the' +p155869 +tp155870 +a(g155867 +g155869 +S'intrinsic' +p155871 +tp155872 +a(g155869 +g155871 +S'value' +p155873 +tp155874 +a(g155871 +g155873 +S'of' +p155875 +tp155876 +a(g155873 +g155875 +S'materials—gold' +p155877 +tp155878 +a(g155875 +g155877 +S'and' +p155879 +tp155880 +a(g155877 +g155879 +S'costly' +p155881 +tp155882 +a(g155879 +g155881 +S'pigments' +p155883 +tp155884 +a(g155881 +g155883 +S'such' +p155885 +tp155886 +a(g155883 +g155885 +S'as' +p155887 +tp155888 +a(g155885 +g155887 +S'ultramarine,' +p155889 +tp155890 +a(g155887 +g155889 +S'which' +p155891 +tp155892 +a(g155889 +g155891 +S'is' +p155893 +tp155894 +a(g155891 +g155893 +S'made' +p155895 +tp155896 +a(g155893 +g155895 +S'from' +p155897 +tp155898 +a(g155895 +g155897 +S'the' +p155899 +tp155900 +a(g155897 +g155899 +S'semiprecious' +p155901 +tp155902 +a(g155899 +g155901 +S'stone' +p155903 +tp155904 +a(g155901 +g155903 +S'lapis' +p155905 +tp155906 +a(g155903 +g155905 +S'lazuli—accounted' +p155907 +tp155908 +a(g155905 +g155907 +S'for' +p155909 +tp155910 +a(g155907 +g155909 +S'much' +p155911 +tp155912 +a(g155909 +g155911 +S'of' +p155913 +tp155914 +a(g155911 +g155913 +S'a' +p155915 +tp155916 +a(g155913 +g155915 +S"painting's" +p155917 +tp155918 +a(g155915 +g155917 +S'worth.' +p155919 +tp155920 +a(g155917 +g155919 +S'by' +p155921 +tp155922 +a(g155919 +g155921 +S'the' +p155923 +tp155924 +a(g155921 +g155923 +S'time' +p155925 +tp155926 +a(g155923 +g155925 +S'this' +p155927 +tp155928 +a(g155925 +g155927 +S'work' +p155929 +tp155930 +a(g155927 +g155929 +S'was' +p155931 +tp155932 +a(g155929 +g155931 +S'made,' +p155933 +tp155934 +a(g155931 +g155933 +S'however,' +p155935 +tp155936 +a(g155933 +g155935 +S'the' +p155937 +tp155938 +a(g155935 +g155937 +S'emphasis' +p155939 +tp155940 +a(g155937 +g155939 +S'had' +p155941 +tp155942 +a(g155939 +g155941 +S'shifted.' +p155943 +tp155944 +a(g155941 +g155943 +S'patrons' +p155945 +tp155946 +a(g155943 +g155945 +S'had' +p155947 +tp155948 +a(g155945 +g155947 +S'come' +p155949 +tp155950 +a(g155947 +g155949 +S'to' +p155951 +tp155952 +a(g155949 +g155951 +S'value' +p155953 +tp155954 +a(g155951 +g155953 +S'instead' +p155955 +tp155956 +a(g155953 +g155955 +S'the' +p155957 +tp155958 +a(g155955 +g155957 +S'skill' +p155959 +tp155960 +a(g155957 +g155959 +S'of' +p155961 +tp155962 +a(g155959 +g155961 +S'the' +p155963 +tp155964 +a(g155961 +g155963 +S'painter,' +p155965 +tp155966 +a(g155963 +g155965 +S'as' +p155967 +tp155968 +a(g155965 +g155967 +S'we' +p155969 +tp155970 +a(g155967 +g155969 +S'do' +p155971 +tp155972 +a(g155969 +g155971 +S'today.' +p155973 +tp155974 +a(g155971 +g155973 +S'ceres,' +p155975 +tp155976 +a(g155973 +g155975 +S'roman' +p155977 +tp155978 +a(g155975 +g155977 +S'goddess' +p155979 +tp155980 +a(g155977 +g155979 +S'of' +p155981 +tp155982 +a(g155979 +g155981 +S'the' +p155983 +tp155984 +a(g155981 +g155983 +S'harvest,' +p155985 +tp155986 +a(g155983 +g155985 +S'is' +p155987 +tp155988 +a(g155985 +g155987 +S'surrounded' +p155989 +tp155990 +a(g155987 +g155989 +S'by' +p155991 +tp155992 +a(g155989 +g155991 +S'signs' +p155993 +tp155994 +a(g155991 +g155993 +S'of' +p155995 +tp155996 +a(g155993 +g155995 +S'the' +p155997 +tp155998 +a(g155995 +g155997 +S'summer' +p155999 +tp156000 +a(g155997 +g155999 +S'zodiac:' +p156001 +tp156002 +a(g155999 +g156001 +S'gemini,' +p156003 +tp156004 +a(g156001 +g156003 +S'cancer,' +p156005 +tp156006 +a(g156003 +g156005 +S'and' +p156007 +tp156008 +a(g156005 +g156007 +S'leo.' +p156009 +tp156010 +a(g156007 +g156009 +S'this' +p156011 +tp156012 +a(g156009 +g156011 +S'is' +p156013 +tp156014 +a(g156011 +g156013 +S'one' +p156015 +tp156016 +a(g156013 +g156015 +S'of' +p156017 +tp156018 +a(g156015 +g156017 +S'four' +p156019 +tp156020 +a(g156017 +g156019 +S'paintings' +p156021 +tp156022 +a(g156019 +g156021 +S'of' +p156023 +tp156024 +a(g156021 +g156023 +S'the' +p156025 +tp156026 +a(g156023 +g156025 +S'seasons' +p156027 +tp156028 +a(g156025 +g156027 +S'in' +p156029 +tp156030 +a(g156027 +g156029 +S'mythological' +p156031 +tp156032 +a(g156029 +g156031 +S'garb' +p156033 +tp156034 +a(g156031 +g156033 +S'that' +p156035 +tp156036 +a(g156033 +g156035 +S'watteau' +p156037 +tp156038 +a(g156035 +g156037 +S'painted' +p156039 +tp156040 +a(g156037 +g156039 +S'for' +p156041 +tp156042 +a(g156039 +g156041 +S'the' +p156043 +tp156044 +a(g156041 +g156043 +S'home' +p156045 +tp156046 +a(g156043 +g156045 +S'of' +p156047 +tp156048 +a(g156045 +g156047 +S'pierre' +p156049 +tp156050 +a(g156047 +g156049 +S'crozat.' +p156051 +tp156052 +a(g156049 +g156051 +S'none' +p156053 +tp156054 +a(g156051 +g156053 +S'of' +p156055 +tp156056 +a(g156053 +g156055 +S'the' +p156057 +tp156058 +a(g156055 +g156057 +S'others' +p156059 +tp156060 +a(g156057 +g156059 +S'survive.' +p156061 +tp156062 +a(g156059 +g156061 +S'watteau' +p156063 +tp156064 +a(g156061 +g156063 +S'lived' +p156065 +tp156066 +a(g156063 +g156065 +S'briefly' +p156067 +tp156068 +a(g156065 +g156067 +S'in' +p156069 +tp156070 +a(g156067 +g156069 +S'the' +p156071 +tp156072 +a(g156069 +g156071 +S'crozat' +p156073 +tp156074 +a(g156071 +g156073 +S'household,' +p156075 +tp156076 +a(g156073 +g156075 +S'studying' +p156077 +tp156078 +a(g156075 +g156077 +S'the' +p156079 +tp156080 +a(g156077 +g156079 +S'wealthy' +p156081 +tp156082 +a(g156079 +g156081 +S"banker's" +p156083 +tp156084 +a(g156081 +g156083 +S'impressive' +p156085 +tp156086 +a(g156083 +g156085 +S'art' +p156087 +tp156088 +a(g156085 +g156087 +S'collection,' +p156089 +tp156090 +a(g156087 +g156089 +S'particularly' +p156091 +tp156092 +a(g156089 +g156091 +S'works' +p156093 +tp156094 +a(g156091 +g156093 +S'by' +p156095 +tp156096 +a(g156093 +g156095 +S'watteau' +p156097 +tp156098 +a(g156095 +g156097 +S'was' +p156099 +tp156100 +a(g156097 +g156099 +S'probably' +p156101 +tp156102 +a(g156099 +g156101 +S'introduced' +p156103 +tp156104 +a(g156101 +g156103 +S'to' +p156105 +tp156106 +a(g156103 +g156105 +S'crozat' +p156107 +tp156108 +a(g156105 +g156107 +S'by' +p156109 +tp156110 +a(g156107 +g156109 +S'shortly' +p156111 +tp156112 +a(g156109 +g156111 +S'before' +p156113 +tp156114 +a(g156111 +g156113 +S'1722,' +p156115 +tp156116 +a(g156113 +g156115 +S'owen' +p156117 +tp156118 +a(g156115 +g156117 +S'mcswiny,' +p156119 +tp156120 +a(g156117 +g156119 +S'a' +p156121 +tp156122 +a(g156119 +g156121 +S'bankrupt' +p156123 +tp156124 +a(g156121 +g156123 +S'irishman' +p156125 +tp156126 +a(g156123 +g156125 +S'who' +p156127 +tp156128 +a(g156125 +g156127 +S'had' +p156129 +tp156130 +a(g156127 +g156129 +S'settled' +p156131 +tp156132 +a(g156129 +g156131 +S'in' +p156133 +tp156134 +a(g156131 +g156133 +S'italy' +p156135 +tp156136 +a(g156133 +g156135 +S'to' +p156137 +tp156138 +a(g156135 +g156137 +S'escape' +p156139 +tp156140 +a(g156137 +g156139 +S'his' +p156141 +tp156142 +a(g156139 +g156141 +S'creditors,' +p156143 +tp156144 +a(g156141 +g156143 +S'commissioned' +p156145 +tp156146 +a(g156143 +g156145 +S'twenty-four' +p156147 +tp156148 +a(g156145 +g156147 +S'large' +p156149 +tp156150 +a(g156147 +g156149 +S'canvases' +p156151 +tp156152 +a(g156149 +g156151 +S'from' +p156153 +tp156154 +a(g156151 +g156153 +S'prominent' +p156155 +tp156156 +a(g156153 +g156155 +S'venetian' +p156157 +tp156158 +a(g156155 +g156157 +S'and' +p156159 +tp156160 +a(g156157 +g156159 +S'bolognese' +p156161 +tp156162 +a(g156159 +g156161 +S'painters' +p156163 +tp156164 +a(g156161 +g156163 +S'as' +p156165 +tp156166 +a(g156163 +g156165 +S'a' +p156167 +tp156168 +a(g156165 +g156167 +S'commercial' +p156169 +tp156170 +a(g156167 +g156169 +S'venture.' +p156171 +tp156172 +a(g156169 +g156171 +S'by' +p156173 +tp156174 +a(g156171 +g156173 +S'profession' +p156175 +tp156176 +a(g156173 +g156175 +S'a' +p156177 +tp156178 +a(g156175 +g156177 +S'theater' +p156179 +tp156180 +a(g156177 +g156179 +S'impresario,' +p156181 +tp156182 +a(g156179 +g156181 +S'he' +p156183 +tp156184 +a(g156181 +g156183 +S'concocted' +p156185 +tp156186 +a(g156183 +g156185 +S'this' +p156187 +tp156188 +a(g156185 +g156187 +S'series' +p156189 +tp156190 +a(g156187 +g156189 +S'of' +p156191 +tp156192 +a(g156189 +g156191 +S'allegorical' +p156193 +tp156194 +a(g156191 +g156193 +S'monuments' +p156195 +tp156196 +a(g156193 +g156195 +S'commemorating' +p156197 +tp156198 +a(g156195 +g156197 +S'recently' +p156199 +tp156200 +a(g156197 +g156199 +S'deceased' +p156201 +tp156202 +a(g156199 +g156201 +S'british' +p156203 +tp156204 +a(g156201 +g156203 +S'monarchs' +p156205 +tp156206 +a(g156203 +g156205 +S'and' +p156207 +tp156208 +a(g156205 +g156207 +S'aristocrats,' +p156209 +tp156210 +a(g156207 +g156209 +S'hoping' +p156211 +tp156212 +a(g156209 +g156211 +S'that' +p156213 +tp156214 +a(g156211 +g156213 +S'their' +p156215 +tp156216 +a(g156213 +g156215 +S'wealthy' +p156217 +tp156218 +a(g156215 +g156217 +S'heirs' +p156219 +tp156220 +a(g156217 +g156219 +S'might' +p156221 +tp156222 +a(g156219 +g156221 +S'purchase' +p156223 +tp156224 +a(g156221 +g156223 +S'the' +p156225 +tp156226 +a(g156223 +g156225 +S'works.' +p156227 +tp156228 +a(g156225 +g156227 +S"mcswiny's" +p156229 +tp156230 +a(g156227 +g156229 +S'"tombs,"' +p156231 +tp156232 +a(g156229 +g156231 +S'as' +p156233 +tp156234 +a(g156231 +g156233 +S'they' +p156235 +tp156236 +a(g156233 +g156235 +S'came' +p156237 +tp156238 +a(g156235 +g156237 +S'to' +p156239 +tp156240 +a(g156237 +g156239 +S'be' +p156241 +tp156242 +a(g156239 +g156241 +S'called,' +p156243 +tp156244 +a(g156241 +g156243 +S'proved' +p156245 +tp156246 +a(g156243 +g156245 +S'to' +p156247 +tp156248 +a(g156245 +g156247 +S'be' +p156249 +tp156250 +a(g156247 +g156249 +S'unintelligible;' +p156251 +tp156252 +a(g156249 +g156251 +S'no' +p156253 +tp156254 +a(g156251 +g156253 +S'one,' +p156255 +tp156256 +a(g156253 +g156255 +S'not' +p156257 +tp156258 +a(g156255 +g156257 +S'even' +p156259 +tp156260 +a(g156257 +g156259 +S'the' +p156261 +tp156262 +a(g156259 +g156261 +S'artists' +p156263 +tp156264 +a(g156261 +g156263 +S'who' +p156265 +tp156266 +a(g156263 +g156265 +S'painted' +p156267 +tp156268 +a(g156265 +g156267 +S'them,' +p156269 +tp156270 +a(g156267 +g156269 +S'ever' +p156271 +tp156272 +a(g156269 +g156271 +S'had' +p156273 +tp156274 +a(g156271 +g156273 +S'a' +p156275 +tp156276 +a(g156273 +g156275 +S'clear' +p156277 +tp156278 +a(g156275 +g156277 +S'notion' +p156279 +tp156280 +a(g156277 +g156279 +S'of' +p156281 +tp156282 +a(g156279 +g156281 +S'what' +p156283 +tp156284 +a(g156281 +g156283 +S'the' +p156285 +tp156286 +a(g156283 +g156285 +S'pictures' +p156287 +tp156288 +a(g156285 +g156287 +S'represented.' +p156289 +tp156290 +a(g156287 +g156289 +S'this' +p156291 +tp156292 +a(g156289 +g156291 +S'ornate' +p156293 +tp156294 +a(g156291 +g156293 +S'and' +p156295 +tp156296 +a(g156293 +g156295 +S'fanciful' +p156297 +tp156298 +a(g156295 +g156297 +S'memorial,' +p156299 +tp156300 +a(g156297 +g156299 +S'for' +p156301 +tp156302 +a(g156299 +g156301 +S'example,' +p156303 +tp156304 +a(g156301 +g156303 +S'alludes' +p156305 +tp156306 +a(g156303 +g156305 +S'only' +p156307 +tp156308 +a(g156305 +g156307 +S'vaguely' +p156309 +tp156310 +a(g156307 +g156309 +S'to' +p156311 +tp156312 +a(g156309 +g156311 +S'the' +p156313 +tp156314 +a(g156311 +g156313 +S"subject's" +p156315 +tp156316 +a(g156313 +g156315 +S'naval' +p156317 +tp156318 +a(g156315 +g156317 +S'career.' +p156319 +tp156320 +a(g156317 +g156319 +S'the' +p156321 +tp156322 +a(g156319 +g156321 +S'admiral' +p156323 +tp156324 +a(g156321 +g156323 +S'himself' +p156325 +tp156326 +a(g156323 +g156325 +S'does' +p156327 +tp156328 +a(g156325 +g156327 +S'not' +p156329 +tp156330 +a(g156327 +g156329 +S'appear,' +p156331 +tp156332 +a(g156329 +g156331 +S'nor' +p156333 +tp156334 +a(g156331 +g156333 +S'does' +p156335 +tp156336 +a(g156333 +g156335 +S'the' +p156337 +tp156338 +a(g156335 +g156337 +S'shield' +p156339 +tp156340 +a(g156337 +g156339 +S'in' +p156341 +tp156342 +a(g156339 +g156341 +S'the' +p156343 +tp156344 +a(g156341 +g156343 +S'right' +p156345 +tp156346 +a(g156343 +g156345 +S'foreground' +p156347 +tp156348 +a(g156345 +g156347 +S'bear' +p156349 +tp156350 +a(g156347 +g156349 +S'his' +p156351 +tp156352 +a(g156349 +g156351 +S'exact' +p156353 +tp156354 +a(g156351 +g156353 +S'coat-of-arms.' +p156355 +tp156356 +a(g156353 +g156355 +S'only' +p156357 +tp156358 +a(g156355 +g156357 +S'the' +p156359 +tp156360 +a(g156357 +g156359 +S'fountain' +p156361 +tp156362 +a(g156359 +g156361 +S'hints' +p156363 +tp156364 +a(g156361 +g156363 +S'at' +p156365 +tp156366 +a(g156363 +g156365 +S'the' +p156367 +tp156368 +a(g156365 +g156367 +S'maritime' +p156369 +tp156370 +a(g156367 +g156369 +S'theme' +p156371 +tp156372 +a(g156369 +g156371 +S'with' +p156373 +tp156374 +a(g156371 +g156373 +S'its' +p156375 +tp156376 +a(g156373 +g156375 +S'ancient' +p156377 +tp156378 +a(g156375 +g156377 +S"ships'" +p156379 +tp156380 +a(g156377 +g156379 +S'prows' +p156381 +tp156382 +a(g156379 +g156381 +S'and' +p156383 +tp156384 +a(g156381 +g156383 +S'rudders,' +p156385 +tp156386 +a(g156383 +g156385 +S'statues' +p156387 +tp156388 +a(g156385 +g156387 +S'of' +p156389 +tp156390 +a(g156387 +g156389 +S'tritons' +p156391 +tp156392 +a(g156389 +g156391 +S'riding' +p156393 +tp156394 +a(g156391 +g156393 +S'dolphins,' +p156395 +tp156396 +a(g156393 +g156395 +S'and' +p156397 +tp156398 +a(g156395 +g156397 +S'a' +p156399 +tp156400 +a(g156397 +g156399 +S'bas-relief' +p156401 +tp156402 +a(g156399 +g156401 +S'of' +p156403 +tp156404 +a(g156401 +g156403 +S'neptune,' +p156405 +tp156406 +a(g156403 +g156405 +S'god' +p156407 +tp156408 +a(g156405 +g156407 +S'of' +p156409 +tp156410 +a(g156407 +g156409 +S'the' +p156411 +tp156412 +a(g156409 +g156411 +S'sea.' +p156413 +tp156414 +a(g156411 +g156413 +S'the' +p156415 +tp156416 +a(g156413 +g156415 +S'shovell' +p156417 +tp156418 +a(g156415 +g156417 +S'canvas' +p156419 +tp156420 +a(g156417 +g156419 +S'is' +p156421 +tp156422 +a(g156419 +g156421 +S'a' +p156423 +tp156424 +a(g156421 +g156423 +S'collaboration' +p156425 +tp156426 +a(g156423 +g156425 +S'by' +p156427 +tp156428 +a(g156425 +g156427 +S'marco' +p156429 +tp156430 +a(g156427 +g156429 +S'ricci,' +p156431 +tp156432 +a(g156429 +g156431 +S'who' +p156433 +tp156434 +a(g156431 +g156433 +S'contributed' +p156435 +tp156436 +a(g156433 +g156435 +S'the' +p156437 +tp156438 +a(g156435 +g156437 +S'picturesque' +p156439 +tp156440 +a(g156437 +g156439 +S'landscape' +p156441 +tp156442 +a(g156439 +g156441 +S'and' +p156443 +tp156444 +a(g156441 +g156443 +S'theatrical' +p156445 +tp156446 +a(g156443 +g156445 +S'architecture,' +p156447 +tp156448 +a(g156445 +g156447 +S'and' +p156449 +tp156450 +a(g156447 +g156449 +S'his' +p156451 +tp156452 +a(g156449 +g156451 +S'uncle' +p156453 +tp156454 +a(g156451 +g156453 +S'sebastiano' +p156455 +tp156456 +a(g156453 +g156455 +S'ricci,' +p156457 +tp156458 +a(g156455 +g156457 +S'who' +p156459 +tp156460 +a(g156457 +g156459 +S'painted' +p156461 +tp156462 +a(g156459 +g156461 +S'the' +p156463 +tp156464 +a(g156461 +g156463 +S'figures' +p156465 +tp156466 +a(g156463 +g156465 +S'and' +p156467 +tp156468 +a(g156465 +g156467 +S'statuary.' +p156469 +tp156470 +a(g156467 +g156469 +S'the' +p156471 +tp156472 +a(g156469 +g156471 +S'two' +p156473 +tp156474 +a(g156471 +g156473 +S"riccis'" +p156475 +tp156476 +a(g156473 +g156475 +S'use' +p156477 +tp156478 +a(g156475 +g156477 +S'of' +p156479 +tp156480 +a(g156477 +g156479 +S'fluffy' +p156481 +tp156482 +a(g156479 +g156481 +S'textures' +p156483 +tp156484 +a(g156481 +g156483 +S'and' +p156485 +tp156486 +a(g156483 +g156485 +S'decorative' +p156487 +tp156488 +a(g156485 +g156487 +S'colors' +p156489 +tp156490 +a(g156487 +g156489 +S'marks' +p156491 +tp156492 +a(g156489 +g156491 +S'the' +p156493 +tp156494 +a(g156491 +g156493 +S'emerging' +p156495 +tp156496 +a(g156493 +g156495 +S'rococo' +p156497 +tp156498 +a(g156495 +g156497 +S'style.' +p156499 +tp156500 +a(g156497 +g156499 +S'this' +p156501 +tp156502 +a(g156499 +g156501 +S'portrait' +p156503 +tp156504 +a(g156501 +g156503 +S'is' +p156505 +tp156506 +a(g156503 +g156505 +S'less' +p156507 +tp156508 +a(g156505 +g156507 +S'precisely' +p156509 +tp156510 +a(g156507 +g156509 +S'detailed,' +p156511 +tp156512 +a(g156509 +g156511 +S'less' +p156513 +tp156514 +a(g156511 +g156513 +S'“objective,”' +p156515 +tp156516 +a(g156513 +g156515 +S'than' +p156517 +tp156518 +a(g156515 +g156517 +S'others' +p156519 +tp156520 +a(g156517 +g156519 +S'in' +p156521 +tp156522 +a(g156519 +g156521 +S'this' +p156523 +tp156524 +a(g156521 +g156523 +S'room,' +p156525 +tp156526 +a(g156523 +g156525 +S'partly' +p156527 +tp156528 +a(g156525 +g156527 +S'as' +p156529 +tp156530 +a(g156527 +g156529 +S'the' +p156531 +tp156532 +a(g156529 +g156531 +S'result' +p156533 +tp156534 +a(g156531 +g156533 +S'of' +p156535 +tp156536 +a(g156533 +g156535 +S'rosso’s' +p156537 +tp156538 +a(g156535 +g156537 +S'technique.' +p156539 +tp156540 +a(g156537 +g156539 +S'to' +p156541 +tp156542 +a(g156539 +g156541 +S'a' +p156543 +tp156544 +a(g156541 +g156543 +S'greater' +p156545 +tp156546 +a(g156543 +g156545 +S'extent' +p156547 +tp156548 +a(g156545 +g156547 +S'than' +p156549 +tp156550 +a(g156547 +g156549 +S'most' +p156551 +tp156552 +a(g156549 +g156551 +S'of' +p156553 +tp156554 +a(g156551 +g156553 +S'his' +p156555 +tp156556 +a(g156553 +g156555 +S'contemporaries' +p156557 +tp156558 +a(g156555 +g156557 +S'in' +p156559 +tp156560 +a(g156557 +g156559 +S'florence,' +p156561 +tp156562 +a(g156559 +g156561 +S'rosso' +p156563 +tp156564 +a(g156561 +g156563 +S'left' +p156565 +tp156566 +a(g156563 +g156565 +S'his' +p156567 +tp156568 +a(g156565 +g156567 +S'brushstrokes' +p156569 +tp156570 +a(g156567 +g156569 +S'visible.' +p156571 +tp156572 +a(g156569 +g156571 +S'this' +p156573 +tp156574 +a(g156571 +g156573 +S'man' +p156575 +tp156576 +a(g156573 +g156575 +S'holds' +p156577 +tp156578 +a(g156575 +g156577 +S'none' +p156579 +tp156580 +a(g156577 +g156579 +S'of' +p156581 +tp156582 +a(g156579 +g156581 +S'the' +p156583 +tp156584 +a(g156581 +g156583 +S'attributes' +p156585 +tp156586 +a(g156583 +g156585 +S'that' +p156587 +tp156588 +a(g156585 +g156587 +S'normally' +p156589 +tp156590 +a(g156587 +g156589 +S'help' +p156591 +tp156592 +a(g156589 +g156591 +S'define' +p156593 +tp156594 +a(g156591 +g156593 +S'a' +p156595 +tp156596 +a(g156593 +g156595 +S'sitter’s' +p156597 +tp156598 +a(g156595 +g156597 +S'persona;' +p156599 +tp156600 +a(g156597 +g156599 +S'his' +p156601 +tp156602 +a(g156599 +g156601 +S'character' +p156603 +tp156604 +a(g156601 +g156603 +S'is' +p156605 +tp156606 +a(g156603 +g156605 +S'established' +p156607 +tp156608 +a(g156605 +g156607 +S'by' +p156609 +tp156610 +a(g156607 +g156609 +S'his' +p156611 +tp156612 +a(g156609 +g156611 +S'strongly' +p156613 +tp156614 +a(g156611 +g156613 +S'projecting' +p156615 +tp156616 +a(g156613 +g156615 +S'elbow.' +p156617 +tp156618 +a(g156615 +g156617 +S'light' +p156619 +tp156620 +a(g156617 +g156619 +S'rakes' +p156621 +tp156622 +a(g156619 +g156621 +S'across' +p156623 +tp156624 +a(g156621 +g156623 +S'it' +p156625 +tp156626 +a(g156623 +g156625 +S'and' +p156627 +tp156628 +a(g156625 +g156627 +S'seems' +p156629 +tp156630 +a(g156627 +g156629 +S'to' +p156631 +tp156632 +a(g156629 +g156631 +S'push' +p156633 +tp156634 +a(g156631 +g156633 +S'his' +p156635 +tp156636 +a(g156633 +g156635 +S'gesture' +p156637 +tp156638 +a(g156635 +g156637 +S'to' +p156639 +tp156640 +a(g156637 +g156639 +S'the' +p156641 +tp156642 +a(g156639 +g156641 +S'front' +p156643 +tp156644 +a(g156641 +g156643 +S'of' +p156645 +tp156646 +a(g156643 +g156645 +S'the' +p156647 +tp156648 +a(g156645 +g156647 +S'picture' +p156649 +tp156650 +a(g156647 +g156649 +S'plane.' +p156651 +tp156652 +a(g156649 +g156651 +S'the' +p156653 +tp156654 +a(g156651 +g156653 +S'image' +p156655 +tp156656 +a(g156653 +g156655 +S'crowds' +p156657 +tp156658 +a(g156655 +g156657 +S'the' +p156659 +tp156660 +a(g156657 +g156659 +S'panel.' +p156661 +tp156662 +a(g156659 +g156661 +S'such' +p156663 +tp156664 +a(g156661 +g156663 +S'concentration' +p156665 +tp156666 +a(g156663 +g156665 +S'and' +p156667 +tp156668 +a(g156665 +g156667 +S'stylization' +p156669 +tp156670 +a(g156667 +g156669 +S'complement' +p156671 +tp156672 +a(g156669 +g156671 +S'the' +p156673 +tp156674 +a(g156671 +g156673 +S'man’s' +p156675 +tp156676 +a(g156673 +g156675 +S'expression,' +p156677 +tp156678 +a(g156675 +g156677 +S'which' +p156679 +tp156680 +a(g156677 +g156679 +S'is' +p156681 +tp156682 +a(g156679 +g156681 +S'at' +p156683 +tp156684 +a(g156681 +g156683 +S'once' +p156685 +tp156686 +a(g156683 +g156685 +S'haughty' +p156687 +tp156688 +a(g156685 +g156687 +S'and' +p156689 +tp156690 +a(g156687 +g156689 +S'slightly' +p156691 +tp156692 +a(g156689 +g156691 +S'sad' +p156693 +tp156694 +a(g156691 +g156693 +S'and' +p156695 +tp156696 +a(g156693 +g156695 +S'may' +p156697 +tp156698 +a(g156695 +g156697 +S'reflect' +p156699 +tp156700 +a(g156697 +g156699 +S'an' +p156701 +tp156702 +a(g156699 +g156701 +S'ideal' +p156703 +tp156704 +a(g156701 +g156703 +S'of' +p156705 +tp156706 +a(g156703 +g156705 +S'male' +p156707 +tp156708 +a(g156705 +g156707 +S'deportment.' +p156709 +tp156710 +a(g156707 +g156709 +S'rosso—he' +p156711 +tp156712 +a(g156709 +g156711 +S'was' +p156713 +tp156714 +a(g156711 +g156713 +S'called' +p156715 +tp156716 +a(g156713 +g156715 +S'“the' +p156717 +tp156718 +a(g156715 +g156717 +S'red”' +p156719 +tp156720 +a(g156717 +g156719 +S'for' +p156721 +tp156722 +a(g156719 +g156721 +S'his' +p156723 +tp156724 +a(g156721 +g156723 +S'red' +p156725 +tp156726 +a(g156723 +g156725 +S'hair—probably' +p156727 +tp156728 +a(g156725 +g156727 +S'painted' +p156729 +tp156730 +a(g156727 +g156729 +S'this' +p156731 +tp156732 +a(g156729 +g156731 +S'not' +p156733 +tp156734 +a(g156731 +g156733 +S'long' +p156735 +tp156736 +a(g156733 +g156735 +S'before' +p156737 +tp156738 +a(g156735 +g156737 +S'the' +p156739 +tp156740 +a(g156737 +g156739 +S'artist' +p156741 +tp156742 +a(g156739 +g156741 +S'left' +p156743 +tp156744 +a(g156741 +g156743 +S'to' +p156745 +tp156746 +a(g156743 +g156745 +S'work' +p156747 +tp156748 +a(g156745 +g156747 +S'in' +p156749 +tp156750 +a(g156747 +g156749 +S'fontainebleau.' +p156751 +tp156752 +a(g156749 +g156751 +S'in' +p156753 +tp156754 +a(g156751 +g156753 +S'italy,' +p156755 +tp156756 +a(g156753 +g156755 +S'rosso’s' +p156757 +tp156758 +a(g156755 +g156757 +S'personal,' +p156759 +tp156760 +a(g156757 +g156759 +S'introverted' +p156761 +tp156762 +a(g156759 +g156761 +S'style' +p156763 +tp156764 +a(g156761 +g156763 +S'did' +p156765 +tp156766 +a(g156763 +g156765 +S'not' +p156767 +tp156768 +a(g156765 +g156767 +S'exert' +p156769 +tp156770 +a(g156767 +g156769 +S'much' +p156771 +tp156772 +a(g156769 +g156771 +S'influence,' +p156773 +tp156774 +a(g156771 +g156773 +S'but' +p156775 +tp156776 +a(g156773 +g156775 +S'in' +p156777 +tp156778 +a(g156775 +g156777 +S'france' +p156779 +tp156780 +a(g156777 +g156779 +S'it' +p156781 +tp156782 +a(g156779 +g156781 +S'was' +p156783 +tp156784 +a(g156781 +g156783 +S'an' +p156785 +tp156786 +a(g156783 +g156785 +S'important' +p156787 +tp156788 +a(g156785 +g156787 +S'starting' +p156789 +tp156790 +a(g156787 +g156789 +S'point' +p156791 +tp156792 +a(g156789 +g156791 +S'for' +p156793 +tp156794 +a(g156791 +g156793 +S'mannerism' +p156795 +tp156796 +a(g156793 +g156795 +S'in' +p156797 +tp156798 +a(g156795 +g156797 +S'the' +p156799 +tp156800 +a(g156797 +g156799 +S'north.' +p156801 +tp156802 +a(g156799 +g156801 +S'on' +p156803 +tp156804 +a(g156801 +g156803 +S'at' +p156805 +tp156806 +a(g156803 +g156805 +S'least' +p156807 +tp156808 +a(g156805 +g156807 +S'four' +p156809 +tp156810 +a(g156807 +g156809 +S'occasions' +p156811 +tp156812 +a(g156809 +g156811 +S'during' +p156813 +tp156814 +a(g156811 +g156813 +S'his' +p156815 +tp156816 +a(g156813 +g156815 +S'long' +p156817 +tp156818 +a(g156815 +g156817 +S'stay' +p156819 +tp156820 +a(g156817 +g156819 +S'in' +p156821 +tp156822 +a(g156819 +g156821 +S'italy' +p156823 +tp156824 +a(g156821 +g156823 +S'(1600–1609),' +p156825 +tp156826 +a(g156823 +g156825 +S'rubens' +p156827 +tp156828 +a(g156825 +g156827 +S'worked' +p156829 +tp156830 +a(g156827 +g156829 +S'in' +p156831 +tp156832 +a(g156829 +g156831 +S'genoa,' +p156833 +tp156834 +a(g156831 +g156833 +S'a' +p156835 +tp156836 +a(g156833 +g156835 +S'prosperous' +p156837 +tp156838 +a(g156835 +g156837 +S'seaport.' +p156839 +tp156840 +a(g156837 +g156839 +S'he' +p156841 +tp156842 +a(g156839 +g156841 +S'painted' +p156843 +tp156844 +a(g156841 +g156843 +S'this' +p156845 +tp156846 +a(g156843 +g156845 +S'proud' +p156847 +tp156848 +a(g156845 +g156847 +S'genoese' +p156849 +tp156850 +a(g156847 +g156849 +S'aristocrat' +p156851 +tp156852 +a(g156849 +g156851 +S'in' +p156853 +tp156854 +a(g156851 +g156853 +S'1606,' +p156855 +tp156856 +a(g156853 +g156855 +S'the' +p156857 +tp156858 +a(g156855 +g156857 +S'year' +p156859 +tp156860 +a(g156857 +g156859 +S'following' +p156861 +tp156862 +a(g156859 +g156861 +S'her' +p156863 +tp156864 +a(g156861 +g156863 +S'marriage.' +p156865 +tp156866 +a(g156863 +g156865 +S'it' +p156867 +tp156868 +a(g156865 +g156867 +S'is' +p156869 +tp156870 +a(g156867 +g156869 +S'one' +p156871 +tp156872 +a(g156869 +g156871 +S'of' +p156873 +tp156874 +a(g156871 +g156873 +S'a' +p156875 +tp156876 +a(g156873 +g156875 +S'number' +p156877 +tp156878 +a(g156875 +g156877 +S'of' +p156879 +tp156880 +a(g156877 +g156879 +S'female' +p156881 +tp156882 +a(g156879 +g156881 +S'portraits' +p156883 +tp156884 +a(g156881 +g156883 +S'rubens' +p156885 +tp156886 +a(g156883 +g156885 +S'made' +p156887 +tp156888 +a(g156885 +g156887 +S'in' +p156889 +tp156890 +a(g156887 +g156889 +S'genoa,' +p156891 +tp156892 +a(g156889 +g156891 +S'a' +p156893 +tp156894 +a(g156891 +g156893 +S'city' +p156895 +tp156896 +a(g156893 +g156895 +S'renowned' +p156897 +tp156898 +a(g156895 +g156897 +S'as' +p156899 +tp156900 +a(g156897 +g156899 +S'a' +p156901 +tp156902 +a(g156899 +g156901 +S'the' +p156903 +tp156904 +a(g156901 +g156903 +S"marchesa's" +p156905 +tp156906 +a(g156903 +g156905 +S'stately' +p156907 +tp156908 +a(g156905 +g156907 +S'pose' +p156909 +tp156910 +a(g156907 +g156909 +S'is' +p156911 +tp156912 +a(g156909 +g156911 +S'far' +p156913 +tp156914 +a(g156911 +g156913 +S'from' +p156915 +tp156916 +a(g156913 +g156915 +S'static;' +p156917 +tp156918 +a(g156915 +g156917 +S'it' +p156919 +tp156920 +a(g156917 +g156919 +S'is' +p156921 +tp156922 +a(g156919 +g156921 +S'activated' +p156923 +tp156924 +a(g156921 +g156923 +S'by' +p156925 +tp156926 +a(g156923 +g156925 +S'light,' +p156927 +tp156928 +a(g156925 +g156927 +S'by' +p156929 +tp156930 +a(g156927 +g156929 +S'the' +p156931 +tp156932 +a(g156929 +g156931 +S'diagonal' +p156933 +tp156934 +a(g156931 +g156933 +S'flow' +p156935 +tp156936 +a(g156933 +g156935 +S'of' +p156937 +tp156938 +a(g156935 +g156937 +S'a' +p156939 +tp156940 +a(g156937 +g156939 +S'red' +p156941 +tp156942 +a(g156939 +g156941 +S'curtain,' +p156943 +tp156944 +a(g156941 +g156943 +S'and' +p156945 +tp156946 +a(g156943 +g156945 +S'by' +p156947 +tp156948 +a(g156945 +g156947 +S"rubens'" +p156949 +tp156950 +a(g156947 +g156949 +S'bravura' +p156951 +tp156952 +a(g156949 +g156951 +S'brushwork.' +p156953 +tp156954 +a(g156951 +g156953 +S'the' +p156955 +tp156956 +a(g156953 +g156955 +S"marchesa's" +p156957 +tp156958 +a(g156955 +g156957 +S'silvery' +p156959 +tp156960 +a(g156957 +g156959 +S'satin' +p156961 +tp156962 +a(g156959 +g156961 +S'dress' +p156963 +tp156964 +a(g156961 +g156963 +S'is' +p156965 +tp156966 +a(g156963 +g156965 +S'built' +p156967 +tp156968 +a(g156965 +g156967 +S'up' +p156969 +tp156970 +a(g156967 +g156969 +S'of' +p156971 +tp156972 +a(g156969 +g156971 +S'layers' +p156973 +tp156974 +a(g156971 +g156973 +S'of' +p156975 +tp156976 +a(g156973 +g156975 +S'translucent' +p156977 +tp156978 +a(g156975 +g156977 +S'glazes' +p156979 +tp156980 +a(g156977 +g156979 +S'and' +p156981 +tp156982 +a(g156979 +g156981 +S'highlighted' +p156983 +tp156984 +a(g156981 +g156983 +S'with' +p156985 +tp156986 +a(g156983 +g156985 +S'thick,' +p156987 +tp156988 +a(g156985 +g156987 +S'freely' +p156989 +tp156990 +a(g156987 +g156989 +S'painted' +p156991 +tp156992 +a(g156989 +g156991 +S'strokes.' +p156993 +tp156994 +a(g156991 +g156993 +S'rubens' +p156995 +tp156996 +a(g156993 +g156995 +S'combined' +p156997 +tp156998 +a(g156995 +g156997 +S'this' +p156999 +tp157000 +a(g156997 +g156999 +S'bold,' +p157001 +tp157002 +a(g156999 +g157001 +S'painterly' +p157003 +tp157004 +a(g157001 +g157003 +S'style—which' +p157005 +tp157006 +a(g157003 +g157005 +S'he' +p157007 +tp157008 +a(g157005 +g157007 +S'learned' +p157009 +tp157010 +a(g157007 +g157009 +S'from' +p157011 +tp157012 +a(g157009 +g157011 +S'his' +p157013 +tp157014 +a(g157011 +g157013 +S'study' +p157015 +tp157016 +a(g157013 +g157015 +S'of' +p157017 +tp157018 +a(g157015 +g157017 +S'venetian' +p157019 +tp157020 +a(g157017 +g157019 +S'artists' +p157021 +tp157022 +a(g157019 +g157021 +S'like' +p157023 +tp157024 +a(g157021 +g157023 +S'veronese,' +p157025 +tp157026 +a(g157023 +g157025 +S'tintoretto,' +p157027 +tp157028 +a(g157025 +g157027 +S'and' +p157029 +tp157030 +a(g157027 +g157029 +S'titian—with' +p157031 +tp157032 +a(g157029 +g157031 +S'the' +p157033 +tp157034 +a(g157031 +g157033 +S'tradition' +p157035 +tp157036 +a(g157033 +g157035 +S'for' +p157037 +tp157038 +a(g157035 +g157037 +S'detailed,' +p157039 +tp157040 +a(g157037 +g157039 +S'carefully' +p157041 +tp157042 +a(g157039 +g157041 +S'observed' +p157043 +tp157044 +a(g157041 +g157043 +S'surfaces' +p157045 +tp157046 +a(g157043 +g157045 +S'from' +p157047 +tp157048 +a(g157045 +g157047 +S'his' +p157049 +tp157050 +a(g157047 +g157049 +S'native' +p157051 +tp157052 +a(g157049 +g157051 +S'flanders.' +p157053 +tp157054 +a(g157051 +g157053 +S'compare,' +p157055 +tp157056 +a(g157053 +g157055 +S'for' +p157057 +tp157058 +a(g157055 +g157057 +S'example,' +p157059 +tp157060 +a(g157057 +g157059 +S'the' +p157061 +tp157062 +a(g157059 +g157061 +S'expressive' +p157063 +tp157064 +a(g157061 +g157063 +S'painting' +p157065 +tp157066 +a(g157063 +g157065 +S'technique' +p157067 +tp157068 +a(g157065 +g157067 +S'in' +p157069 +tp157070 +a(g157067 +g157069 +S'the' +p157071 +tp157072 +a(g157069 +g157071 +S'dress' +p157073 +tp157074 +a(g157071 +g157073 +S'and' +p157075 +tp157076 +a(g157073 +g157075 +S'curtain' +p157077 +tp157078 +a(g157075 +g157077 +S'with' +p157079 +tp157080 +a(g157077 +g157079 +S'the' +p157081 +tp157082 +a(g157079 +g157081 +S'precise' +p157083 +tp157084 +a(g157081 +g157083 +S'handling' +p157085 +tp157086 +a(g157083 +g157085 +S'of' +p157087 +tp157088 +a(g157085 +g157087 +S'the' +p157089 +tp157090 +a(g157087 +g157089 +S'architecture.' +p157091 +tp157092 +a(g157089 +g157091 +S'precocious' +p157093 +tp157094 +a(g157091 +g157093 +S'and' +p157095 +tp157096 +a(g157093 +g157095 +S'widely' +p157097 +tp157098 +a(g157095 +g157097 +S'traveled,' +p157099 +tp157100 +a(g157097 +g157099 +S'vouet' +p157101 +tp157102 +a(g157099 +g157101 +S'already' +p157103 +tp157104 +a(g157101 +g157103 +S'had' +p157105 +tp157106 +a(g157103 +g157105 +S'worked' +p157107 +tp157108 +a(g157105 +g157107 +S'in' +p157109 +tp157110 +a(g157107 +g157109 +S'london,' +p157111 +tp157112 +a(g157109 +g157111 +S'constantinople,' +p157113 +tp157114 +a(g157111 +g157113 +S'and' +p157115 +tp157116 +a(g157113 +g157115 +S'venice' +p157117 +tp157118 +a(g157115 +g157117 +S'before' +p157119 +tp157120 +a(g157117 +g157119 +S'reaching' +p157121 +tp157122 +a(g157119 +g157121 +S'rome' +p157123 +tp157124 +a(g157121 +g157123 +S'in' +p157125 +tp157126 +a(g157123 +g157125 +S'1614.' +p157127 +tp157128 +a(g157125 +g157127 +S'louis' +p157129 +tp157130 +a(g157127 +g157129 +S'xiii' +p157131 +tp157132 +a(g157129 +g157131 +S'summoned' +p157133 +tp157134 +a(g157131 +g157133 +S'him' +p157135 +tp157136 +a(g157133 +g157135 +S'back' +p157137 +tp157138 +a(g157135 +g157137 +S'to' +p157139 +tp157140 +a(g157137 +g157139 +S'paris' +p157141 +tp157142 +a(g157139 +g157141 +S'in' +p157143 +tp157144 +a(g157141 +g157143 +S'1627' +p157145 +tp157146 +a(g157143 +g157145 +S'to' +p157147 +tp157148 +a(g157145 +g157147 +S'become' +p157149 +tp157150 +a(g157147 +g157149 +S'chief' +p157151 +tp157152 +a(g157149 +g157151 +S'court' +p157153 +tp157154 +a(g157151 +g157153 +S'artist.' +p157155 +tp157156 +a(g157153 +g157155 +S'training' +p157157 +tp157158 +a(g157155 +g157157 +S'many' +p157159 +tp157160 +a(g157157 +g157159 +S'french' +p157161 +tp157162 +a(g157159 +g157161 +S'painters,' +p157163 +tp157164 +a(g157161 +g157163 +S'vouet' +p157165 +tp157166 +a(g157163 +g157165 +S'exercised' +p157167 +tp157168 +a(g157165 +g157167 +S'his' +p157169 +tp157170 +a(g157167 +g157169 +S'power' +p157171 +tp157172 +a(g157169 +g157171 +S'by' +p157173 +tp157174 +a(g157171 +g157173 +S'brashly' +p157175 +tp157176 +a(g157173 +g157175 +S'setting' +p157177 +tp157178 +a(g157175 +g157177 +S'up' +p157179 +tp157180 +a(g157177 +g157179 +S'a' +p157181 +tp157182 +a(g157179 +g157181 +S'rival' +p157183 +tp157184 +a(g157181 +g157183 +S'institution' +p157185 +tp157186 +a(g157183 +g157185 +S'to' +p157187 +tp157188 +a(g157185 +g157187 +S'the' +p157189 +tp157190 +a(g157187 +g157189 +S'royal' +p157191 +tp157192 +a(g157189 +g157191 +S'academy' +p157193 +tp157194 +a(g157191 +g157193 +S'of' +p157195 +tp157196 +a(g157193 +g157195 +S'art.' +p157197 +tp157198 +a(g157195 +g157197 +S'resting' +p157199 +tp157200 +a(g157197 +g157199 +S'beside' +p157201 +tp157202 +a(g157199 +g157201 +S'a' +p157203 +tp157204 +a(g157201 +g157203 +S'temple' +p157205 +tp157206 +a(g157203 +g157205 +S'to' +p157207 +tp157208 +a(g157205 +g157207 +S'apollo,' +p157209 +tp157210 +a(g157207 +g157209 +S'the' +p157211 +tp157212 +a(g157209 +g157211 +S'god' +p157213 +tp157214 +a(g157211 +g157213 +S'of' +p157215 +tp157216 +a(g157213 +g157215 +S'creativity,' +p157217 +tp157218 +a(g157215 +g157217 +S'two' +p157219 +tp157220 +a(g157217 +g157219 +S'muses' +p157221 +tp157222 +a(g157219 +g157221 +S'personify' +p157223 +tp157224 +a(g157221 +g157223 +S'aspects' +p157225 +tp157226 +a(g157223 +g157225 +S'of' +p157227 +tp157228 +a(g157225 +g157227 +S'human' +p157229 +tp157230 +a(g157227 +g157229 +S'knowledge.' +p157231 +tp157232 +a(g157229 +g157231 +S'urania,' +p157233 +tp157234 +a(g157231 +g157233 +S'the' +p157235 +tp157236 +a(g157233 +g157235 +S'muse' +p157237 +tp157238 +a(g157235 +g157237 +S'of' +p157239 +tp157240 +a(g157237 +g157239 +S'astronomy,' +p157241 +tp157242 +a(g157239 +g157241 +S'wears' +p157243 +tp157244 +a(g157241 +g157243 +S'a' +p157245 +tp157246 +a(g157243 +g157245 +S'diadem' +p157247 +tp157248 +a(g157245 +g157247 +S'of' +p157249 +tp157250 +a(g157247 +g157249 +S'stars' +p157251 +tp157252 +a(g157249 +g157251 +S'and' +p157253 +tp157254 +a(g157251 +g157253 +S'leans' +p157255 +tp157256 +a(g157253 +g157255 +S'against' +p157257 +tp157258 +a(g157255 +g157257 +S'a' +p157259 +tp157260 +a(g157257 +g157259 +S'celestial' +p157261 +tp157262 +a(g157259 +g157261 +S'globe.' +p157263 +tp157264 +a(g157261 +g157263 +S'the' +p157265 +tp157266 +a(g157263 +g157265 +S'patroness' +p157267 +tp157268 +a(g157265 +g157267 +S'of' +p157269 +tp157270 +a(g157267 +g157269 +S'epic' +p157271 +tp157272 +a(g157269 +g157271 +S'poetry' +p157273 +tp157274 +a(g157271 +g157273 +S'and' +p157275 +tp157276 +a(g157273 +g157275 +S'history,' +p157277 +tp157278 +a(g157275 +g157277 +S'calliope' +p157279 +tp157280 +a(g157277 +g157279 +S'is' +p157281 +tp157282 +a(g157279 +g157281 +S'crowned' +p157283 +tp157284 +a(g157281 +g157283 +S'with' +p157285 +tp157286 +a(g157283 +g157285 +S'gold' +p157287 +tp157288 +a(g157285 +g157287 +S'and' +p157289 +tp157290 +a(g157287 +g157289 +S'holds' +p157291 +tp157292 +a(g157289 +g157291 +S'a' +p157293 +tp157294 +a(g157291 +g157293 +S'volume' +p157295 +tp157296 +a(g157293 +g157295 +S'of' +p157297 +tp157298 +a(g157295 +g157297 +S"homer's" +p157299 +tp157300 +a(g157297 +g157299 +S'simon' +p157301 +tp157302 +a(g157299 +g157301 +S"vouet's" +p157303 +tp157304 +a(g157301 +g157303 +S'earlier' +p157305 +tp157306 +a(g157303 +g157305 +S'roman' +p157307 +tp157308 +a(g157305 +g157307 +S'manner' +p157309 +tp157310 +a(g157307 +g157309 +S'differs' +p157311 +tp157312 +a(g157309 +g157311 +S'greatly' +p157313 +tp157314 +a(g157311 +g157313 +S'from' +p157315 +tp157316 +a(g157313 +g157315 +S'the' +p157317 +tp157318 +a(g157315 +g157317 +S'restrained' +p157319 +tp157320 +a(g157317 +g157319 +S'taste' +p157321 +tp157322 +a(g157319 +g157321 +S'he' +p157323 +tp157324 +a(g157321 +g157323 +S'adopted' +p157325 +tp157326 +a(g157323 +g157325 +S'in' +p157327 +tp157328 +a(g157325 +g157327 +S'france.' +p157329 +tp157330 +a(g157327 +g157329 +S'his' +p157331 +tp157332 +a(g157329 +g157331 +S'among' +p157333 +tp157334 +a(g157331 +g157333 +S'the' +p157335 +tp157336 +a(g157333 +g157335 +S'outstanding' +p157337 +tp157338 +a(g157335 +g157337 +S'german' +p157339 +tp157340 +a(g157337 +g157339 +S'artists' +p157341 +tp157342 +a(g157339 +g157341 +S'of' +p157343 +tp157344 +a(g157341 +g157343 +S'the' +p157345 +tp157346 +a(g157343 +g157345 +S'period' +p157347 +tp157348 +a(g157345 +g157347 +S'around' +p157349 +tp157350 +a(g157347 +g157349 +S'1500' +p157351 +tp157352 +a(g157349 +g157351 +S'was' +p157353 +tp157354 +a(g157351 +g157353 +S'hans' +p157355 +tp157356 +a(g157353 +g157355 +S'baldung' +p157357 +tp157358 +a(g157355 +g157357 +S'grien,' +p157359 +tp157360 +a(g157357 +g157359 +S'a' +p157361 +tp157362 +a(g157359 +g157361 +S'printmaker' +p157363 +tp157364 +a(g157361 +g157363 +S'and' +p157365 +tp157366 +a(g157363 +g157365 +S'painter.' +p157367 +tp157368 +a(g157365 +g157367 +S'he' +p157369 +tp157370 +a(g157367 +g157369 +S'produced' +p157371 +tp157372 +a(g157369 +g157371 +S'book' +p157373 +tp157374 +a(g157371 +g157373 +S'illustrations,' +p157375 +tp157376 +a(g157373 +g157375 +S'devotional' +p157377 +tp157378 +a(g157375 +g157377 +S'woodcuts,' +p157379 +tp157380 +a(g157377 +g157379 +S'stained-glass' +p157381 +tp157382 +a(g157379 +g157381 +S'window' +p157383 +tp157384 +a(g157381 +g157383 +S'designs,' +p157385 +tp157386 +a(g157383 +g157385 +S'portraits,' +p157387 +tp157388 +a(g157385 +g157387 +S'and' +p157389 +tp157390 +a(g157387 +g157389 +S'morality' +p157391 +tp157392 +a(g157389 +g157391 +S'paintings' +p157393 +tp157394 +a(g157391 +g157393 +S'as' +p157395 +tp157396 +a(g157393 +g157395 +S'well' +p157397 +tp157398 +a(g157395 +g157397 +S'as' +p157399 +tp157400 +a(g157397 +g157399 +S'religious' +p157401 +tp157402 +a(g157399 +g157401 +S'panels' +p157403 +tp157404 +a(g157401 +g157403 +S'such' +p157405 +tp157406 +a(g157403 +g157405 +S'as' +p157407 +tp157408 +a(g157405 +g157407 +S'this' +p157409 +tp157410 +a(g157407 +g157409 +S'one.' +p157411 +tp157412 +a(g157409 +g157411 +S'john' +p157413 +tp157414 +a(g157411 +g157413 +S'the' +p157415 +tp157416 +a(g157413 +g157415 +S'baptist' +p157417 +tp157418 +a(g157415 +g157417 +S'is' +p157419 +tp157420 +a(g157417 +g157419 +S'here' +p157421 +tp157422 +a(g157419 +g157421 +S'depicted' +p157423 +tp157424 +a(g157421 +g157423 +S'to' +p157425 +tp157426 +a(g157423 +g157425 +S'the' +p157427 +tp157428 +a(g157425 +g157427 +S'left' +p157429 +tp157430 +a(g157427 +g157429 +S'of' +p157431 +tp157432 +a(g157429 +g157431 +S'jesus.' +p157433 +tp157434 +a(g157431 +g157433 +S'he' +p157435 +tp157436 +a(g157433 +g157435 +S'simultaneously' +p157437 +tp157438 +a(g157435 +g157437 +S'gestures' +p157439 +tp157440 +a(g157437 +g157439 +S'to' +p157441 +tp157442 +a(g157439 +g157441 +S'the' +p157443 +tp157444 +a(g157441 +g157443 +S'lamb' +p157445 +tp157446 +a(g157443 +g157445 +S'at' +p157447 +tp157448 +a(g157445 +g157447 +S'his' +p157449 +tp157450 +a(g157447 +g157449 +S'feet' +p157451 +tp157452 +a(g157449 +g157451 +S'and' +p157453 +tp157454 +a(g157451 +g157453 +S'to' +p157455 +tp157456 +a(g157453 +g157455 +S'the' +p157457 +tp157458 +a(g157455 +g157457 +S'infant,' +p157459 +tp157460 +a(g157457 +g157459 +S'visually' +p157461 +tp157462 +a(g157459 +g157461 +S'alluding' +p157463 +tp157464 +a(g157461 +g157463 +S'to' +p157465 +tp157466 +a(g157463 +g157465 +S'his' +p157467 +tp157468 +a(g157465 +g157467 +S'own' +p157469 +tp157470 +a(g157467 +g157469 +S'description' +p157471 +tp157472 +a(g157469 +g157471 +S'of' +p157473 +tp157474 +a(g157471 +g157473 +S'christ' +p157475 +tp157476 +a(g157473 +g157475 +S'as' +p157477 +tp157478 +a(g157475 +g157477 +S'"the' +p157479 +tp157480 +a(g157477 +g157479 +S'lamb' +p157481 +tp157482 +a(g157479 +g157481 +S'of' +p157483 +tp157484 +a(g157481 +g157483 +S'god."' +p157485 +tp157486 +a(g157483 +g157485 +S'the' +p157487 +tp157488 +a(g157485 +g157487 +S"virgin's" +p157489 +tp157490 +a(g157487 +g157489 +S'mother,' +p157491 +tp157492 +a(g157489 +g157491 +S'saint' +p157493 +tp157494 +a(g157491 +g157493 +S'anne,' +p157495 +tp157496 +a(g157493 +g157495 +S'although' +p157497 +tp157498 +a(g157495 +g157497 +S'dressed' +p157499 +tp157500 +a(g157497 +g157499 +S'in' +p157501 +tp157502 +a(g157499 +g157501 +S'a' +p157503 +tp157504 +a(g157501 +g157503 +S'sixteenth-century' +p157505 +tp157506 +a(g157503 +g157505 +S'wimple,' +p157507 +tp157508 +a(g157505 +g157507 +S'wears' +p157509 +tp157510 +a(g157507 +g157509 +S'her' +p157511 +tp157512 +a(g157509 +g157511 +S'traditional' +p157513 +tp157514 +a(g157511 +g157513 +S'robe' +p157515 +tp157516 +a(g157513 +g157515 +S'of' +p157517 +tp157518 +a(g157515 +g157517 +S'red,' +p157519 +tp157520 +a(g157517 +g157519 +S'a' +p157521 +tp157522 +a(g157519 +g157521 +S'symbol' +p157523 +tp157524 +a(g157521 +g157523 +S'of' +p157525 +tp157526 +a(g157523 +g157525 +S'divine' +p157527 +tp157528 +a(g157525 +g157527 +S'love.' +p157529 +tp157530 +a(g157527 +g157529 +S'garbed' +p157531 +tp157532 +a(g157529 +g157531 +S'in' +p157533 +tp157534 +a(g157531 +g157533 +S'green,' +p157535 +tp157536 +a(g157533 +g157535 +S'symbolic' +p157537 +tp157538 +a(g157535 +g157537 +S'of' +p157539 +tp157540 +a(g157537 +g157539 +S'rebirth' +p157541 +tp157542 +a(g157539 +g157541 +S'and' +p157543 +tp157544 +a(g157541 +g157543 +S'eternal' +p157545 +tp157546 +a(g157543 +g157545 +S'life,' +p157547 +tp157548 +a(g157545 +g157547 +S'mary' +p157549 +tp157550 +a(g157547 +g157549 +S'offers' +p157551 +tp157552 +a(g157549 +g157551 +S'jesus' +p157553 +tp157554 +a(g157551 +g157553 +S'an' +p157555 +tp157556 +a(g157553 +g157555 +S'apple.' +p157557 +tp157558 +a(g157555 +g157557 +S'this' +p157559 +tp157560 +a(g157557 +g157559 +S'fruit,' +p157561 +tp157562 +a(g157559 +g157561 +S'associated' +p157563 +tp157564 +a(g157561 +g157563 +S'with' +p157565 +tp157566 +a(g157563 +g157565 +S'the' +p157567 +tp157568 +a(g157565 +g157567 +S'fall' +p157569 +tp157570 +a(g157567 +g157569 +S'of' +p157571 +tp157572 +a(g157569 +g157571 +S'adam' +p157573 +tp157574 +a(g157571 +g157573 +S'and' +p157575 +tp157576 +a(g157573 +g157575 +S'eve,' +p157577 +tp157578 +a(g157575 +g157577 +S'here' +p157579 +tp157580 +a(g157577 +g157579 +S'signifies' +p157581 +tp157582 +a(g157579 +g157581 +S'mary' +p157583 +tp157584 +a(g157581 +g157583 +S'as' +p157585 +tp157586 +a(g157583 +g157585 +S'the' +p157587 +tp157588 +a(g157585 +g157587 +S'new' +p157589 +tp157590 +a(g157587 +g157589 +S'eve' +p157591 +tp157592 +a(g157589 +g157591 +S'and' +p157593 +tp157594 +a(g157591 +g157593 +S'christ' +p157595 +tp157596 +a(g157593 +g157595 +S'as' +p157597 +tp157598 +a(g157595 +g157597 +S'the' +p157599 +tp157600 +a(g157597 +g157599 +S'second' +p157601 +tp157602 +a(g157599 +g157601 +S'adam.' +p157603 +tp157604 +a(g157601 +g157603 +S'baldung' +p157605 +tp157606 +a(g157603 +g157605 +S"grien's" +p157607 +tp157608 +a(g157605 +g157607 +S'figures' +p157609 +tp157610 +a(g157607 +g157609 +S'are' +p157611 +tp157612 +a(g157609 +g157611 +S'symbolically,' +p157613 +tp157614 +a(g157611 +g157613 +S'rather' +p157615 +tp157616 +a(g157613 +g157615 +S'than' +p157617 +tp157618 +a(g157615 +g157617 +S'realistically,' +p157619 +tp157620 +a(g157617 +g157619 +S'depicted.' +p157621 +tp157622 +a(g157619 +g157621 +S'mary,' +p157623 +tp157624 +a(g157621 +g157623 +S'for' +p157625 +tp157626 +a(g157623 +g157625 +S'instance,' +p157627 +tp157628 +a(g157625 +g157627 +S'is' +p157629 +tp157630 +a(g157627 +g157629 +S'represented' +p157631 +tp157632 +a(g157629 +g157631 +S'as' +p157633 +tp157634 +a(g157631 +g157633 +S'a' +p157635 +tp157636 +a(g157633 +g157635 +S'very' +p157637 +tp157638 +a(g157635 +g157637 +S'young' +p157639 +tp157640 +a(g157637 +g157639 +S'girl.' +p157641 +tp157642 +a(g157639 +g157641 +S'and,' +p157643 +tp157644 +a(g157641 +g157643 +S'although' +p157645 +tp157646 +a(g157643 +g157645 +S'john' +p157647 +tp157648 +a(g157645 +g157647 +S'and' +p157649 +tp157650 +a(g157647 +g157649 +S'jesus' +p157651 +tp157652 +a(g157649 +g157651 +S'historically' +p157653 +tp157654 +a(g157651 +g157653 +S'were' +p157655 +tp157656 +a(g157653 +g157655 +S'about' +p157657 +tp157658 +a(g157655 +g157657 +S'the' +p157659 +tp157660 +a(g157657 +g157659 +S'same' +p157661 +tp157662 +a(g157659 +g157661 +S'age,' +p157663 +tp157664 +a(g157661 +g157663 +S'the' +p157665 +tp157666 +a(g157663 +g157665 +S'baptist' +p157667 +tp157668 +a(g157665 +g157667 +S'is' +p157669 +tp157670 +a(g157667 +g157669 +S'portrayed' +p157671 +tp157672 +a(g157669 +g157671 +S'as' +p157673 +tp157674 +a(g157671 +g157673 +S'an' +p157675 +tp157676 +a(g157673 +g157675 +S'adult' +p157677 +tp157678 +a(g157675 +g157677 +S'to' +p157679 +tp157680 +a(g157677 +g157679 +S'emphasize' +p157681 +tp157682 +a(g157679 +g157681 +S'his' +p157683 +tp157684 +a(g157681 +g157683 +S'prophetic' +p157685 +tp157686 +a(g157683 +g157685 +S'message.' +p157687 +tp157688 +a(g157685 +g157687 +S'the' +p157689 +tp157690 +a(g157687 +g157689 +S'painting' +p157691 +tp157692 +a(g157689 +g157691 +S'was' +p157693 +tp157694 +a(g157691 +g157693 +S'discovered' +p157695 +tp157696 +a(g157693 +g157695 +S'in' +p157697 +tp157698 +a(g157695 +g157697 +S'a' +p157699 +tp157700 +a(g157697 +g157699 +S'small' +p157701 +tp157702 +a(g157699 +g157701 +S'village' +p157703 +tp157704 +a(g157701 +g157703 +S'church' +p157705 +tp157706 +a(g157703 +g157705 +S'in' +p157707 +tp157708 +a(g157705 +g157707 +S'alsace,' +p157709 +tp157710 +a(g157707 +g157709 +S'an' +p157711 +tp157712 +a(g157709 +g157711 +S'area' +p157713 +tp157714 +a(g157711 +g157713 +S'where' +p157715 +tp157716 +a(g157713 +g157715 +S'the' +p157717 +tp157718 +a(g157715 +g157717 +S'artist' +p157719 +tp157720 +a(g157717 +g157719 +S'spent' +p157721 +tp157722 +a(g157719 +g157721 +S'most' +p157723 +tp157724 +a(g157721 +g157723 +S'of' +p157725 +tp157726 +a(g157723 +g157725 +S'his' +p157727 +tp157728 +a(g157725 +g157727 +S'life.' +p157729 +tp157730 +a(g157727 +g157729 +S'sébastien' +p157731 +tp157732 +a(g157729 +g157731 +S'bourdon' +p157733 +tp157734 +a(g157731 +g157733 +S'was' +p157735 +tp157736 +a(g157733 +g157735 +S'one' +p157737 +tp157738 +a(g157735 +g157737 +S'of' +p157739 +tp157740 +a(g157737 +g157739 +S'the' +p157741 +tp157742 +a(g157739 +g157741 +S'twelve' +p157743 +tp157744 +a(g157741 +g157743 +S'founding' +p157745 +tp157746 +a(g157743 +g157745 +S'members' +p157747 +tp157748 +a(g157745 +g157747 +S'of' +p157749 +tp157750 +a(g157747 +g157749 +S'the' +p157751 +tp157752 +a(g157749 +g157751 +S'royal' +p157753 +tp157754 +a(g157751 +g157753 +S'academy' +p157755 +tp157756 +a(g157753 +g157755 +S'of' +p157757 +tp157758 +a(g157755 +g157757 +S'painting' +p157759 +tp157760 +a(g157757 +g157759 +S'and' +p157761 +tp157762 +a(g157759 +g157761 +S'his' +p157763 +tp157764 +a(g157761 +g157763 +S'the' +p157765 +tp157766 +a(g157763 +g157765 +S'book' +p157767 +tp157768 +a(g157765 +g157767 +S'of' +p157769 +tp157770 +a(g157767 +g157769 +S'exodus' +p157771 +tp157772 +a(g157769 +g157771 +S'(2:5)' +p157773 +tp157774 +a(g157771 +g157773 +S'recounts' +p157775 +tp157776 +a(g157773 +g157775 +S'how' +p157777 +tp157778 +a(g157775 +g157777 +S'a' +p157779 +tp157780 +a(g157777 +g157779 +S'hebrew' +p157781 +tp157782 +a(g157779 +g157781 +S'woman' +p157783 +tp157784 +a(g157781 +g157783 +S'saved' +p157785 +tp157786 +a(g157783 +g157785 +S'her' +p157787 +tp157788 +a(g157785 +g157787 +S'infant' +p157789 +tp157790 +a(g157787 +g157789 +S'son' +p157791 +tp157792 +a(g157789 +g157791 +S'from' +p157793 +tp157794 +a(g157791 +g157793 +S"pharoah's" +p157795 +tp157796 +a(g157793 +g157795 +S'massacre' +p157797 +tp157798 +a(g157795 +g157797 +S'of' +p157799 +tp157800 +a(g157797 +g157799 +S'hebrew' +p157801 +tp157802 +a(g157799 +g157801 +S'children' +p157803 +tp157804 +a(g157801 +g157803 +S'by' +p157805 +tp157806 +a(g157803 +g157805 +S'placing' +p157807 +tp157808 +a(g157805 +g157807 +S'him' +p157809 +tp157810 +a(g157807 +g157809 +S'in' +p157811 +tp157812 +a(g157809 +g157811 +S'a' +p157813 +tp157814 +a(g157811 +g157813 +S'basket' +p157815 +tp157816 +a(g157813 +g157815 +S'on' +p157817 +tp157818 +a(g157815 +g157817 +S'the' +p157819 +tp157820 +a(g157817 +g157819 +S'nile.' +p157821 +tp157822 +a(g157819 +g157821 +S"pharoah's" +p157823 +tp157824 +a(g157821 +g157823 +S'daughter,' +p157825 +tp157826 +a(g157823 +g157825 +S'while' +p157827 +tp157828 +a(g157825 +g157827 +S'bathing' +p157829 +tp157830 +a(g157827 +g157829 +S'on' +p157831 +tp157832 +a(g157829 +g157831 +S'the' +p157833 +tp157834 +a(g157831 +g157833 +S'banks' +p157835 +tp157836 +a(g157833 +g157835 +S'of' +p157837 +tp157838 +a(g157835 +g157837 +S'the' +p157839 +tp157840 +a(g157837 +g157839 +S'river,' +p157841 +tp157842 +a(g157839 +g157841 +S'found' +p157843 +tp157844 +a(g157841 +g157843 +S'the' +p157845 +tp157846 +a(g157843 +g157845 +S'child,' +p157847 +tp157848 +a(g157845 +g157847 +S'adopted' +p157849 +tp157850 +a(g157847 +g157849 +S'him,' +p157851 +tp157852 +a(g157849 +g157851 +S'and' +p157853 +tp157854 +a(g157851 +g157853 +S'named' +p157855 +tp157856 +a(g157853 +g157855 +S'him' +p157857 +tp157858 +a(g157855 +g157857 +S'moses.' +p157859 +tp157860 +a(g157857 +g157859 +S'in' +p157861 +tp157862 +a(g157859 +g157861 +S"bourdon's" +p157863 +tp157864 +a(g157861 +g157863 +S'composition,' +p157865 +tp157866 +a(g157863 +g157865 +S"pharoah's" +p157867 +tp157868 +a(g157865 +g157867 +S'daughter,' +p157869 +tp157870 +a(g157867 +g157869 +S'dressed' +p157871 +tp157872 +a(g157869 +g157871 +S'in' +p157873 +tp157874 +a(g157871 +g157873 +S'yellow,' +p157875 +tp157876 +a(g157873 +g157875 +S'occupies' +p157877 +tp157878 +a(g157875 +g157877 +S'the' +p157879 +tp157880 +a(g157877 +g157879 +S'central' +p157881 +tp157882 +a(g157879 +g157881 +S'vertical' +p157883 +tp157884 +a(g157881 +g157883 +S'axis' +p157885 +tp157886 +a(g157883 +g157885 +S'of' +p157887 +tp157888 +a(g157885 +g157887 +S'the' +p157889 +tp157890 +a(g157887 +g157889 +S'painting,' +p157891 +tp157892 +a(g157889 +g157891 +S'supported' +p157893 +tp157894 +a(g157891 +g157893 +S'on' +p157895 +tp157896 +a(g157893 +g157895 +S'her' +p157897 +tp157898 +a(g157895 +g157897 +S'left' +p157899 +tp157900 +a(g157897 +g157899 +S'by' +p157901 +tp157902 +a(g157899 +g157901 +S'her' +p157903 +tp157904 +a(g157901 +g157903 +S'ladies' +p157905 +tp157906 +a(g157903 +g157905 +S'in' +p157907 +tp157908 +a(g157905 +g157907 +S'waiting.' +p157909 +tp157910 +a(g157907 +g157909 +S'the' +p157911 +tp157912 +a(g157909 +g157911 +S'figures' +p157913 +tp157914 +a(g157911 +g157913 +S'form' +p157915 +tp157916 +a(g157913 +g157915 +S'a' +p157917 +tp157918 +a(g157915 +g157917 +S'frieze,' +p157919 +tp157920 +a(g157917 +g157919 +S'like' +p157921 +tp157922 +a(g157919 +g157921 +S'antique' +p157923 +tp157924 +a(g157921 +g157923 +S'sculptures,' +p157925 +tp157926 +a(g157923 +g157925 +S'across' +p157927 +tp157928 +a(g157925 +g157927 +S'the' +p157929 +tp157930 +a(g157927 +g157929 +S'foreground' +p157931 +tp157932 +a(g157929 +g157931 +S'plane.' +p157933 +tp157934 +a(g157931 +g157933 +S'they' +p157935 +tp157936 +a(g157933 +g157935 +S'are' +p157937 +tp157938 +a(g157935 +g157937 +S'dressed' +p157939 +tp157940 +a(g157937 +g157939 +S'according' +p157941 +tp157942 +a(g157939 +g157941 +S'to' +p157943 +tp157944 +a(g157941 +g157943 +S'the' +p157945 +tp157946 +a(g157943 +g157945 +S'seventeenth-century' +p157947 +tp157948 +a(g157945 +g157947 +S'concept' +p157949 +tp157950 +a(g157947 +g157949 +S'of' +p157951 +tp157952 +a(g157949 +g157951 +S'ancient' +p157953 +tp157954 +a(g157951 +g157953 +S'costume' +p157955 +tp157956 +a(g157953 +g157955 +S'and' +p157957 +tp157958 +a(g157955 +g157957 +S'placed' +p157959 +tp157960 +a(g157957 +g157959 +S'in' +p157961 +tp157962 +a(g157959 +g157961 +S'a' +p157963 +tp157964 +a(g157961 +g157963 +S'fanciful' +p157965 +tp157966 +a(g157963 +g157965 +S'setting' +p157967 +tp157968 +a(g157965 +g157967 +S'with' +p157969 +tp157970 +a(g157967 +g157969 +S'egyptian' +p157971 +tp157972 +a(g157969 +g157971 +S'palm' +p157973 +tp157974 +a(g157971 +g157973 +S'trees.' +p157975 +tp157976 +a(g157973 +g157975 +S'the' +p157977 +tp157978 +a(g157975 +g157977 +S'careful' +p157979 +tp157980 +a(g157977 +g157979 +S'division' +p157981 +tp157982 +a(g157979 +g157981 +S'of' +p157983 +tp157984 +a(g157981 +g157983 +S'the' +p157985 +tp157986 +a(g157983 +g157985 +S'composition' +p157987 +tp157988 +a(g157985 +g157987 +S'into' +p157989 +tp157990 +a(g157987 +g157989 +S'three' +p157991 +tp157992 +a(g157989 +g157991 +S'parallel' +p157993 +tp157994 +a(g157991 +g157993 +S'planes' +p157995 +tp157996 +a(g157993 +g157995 +S'of' +p157997 +tp157998 +a(g157995 +g157997 +S'space' +p157999 +tp158000 +a(g157997 +g157999 +S'recalls' +p158001 +tp158002 +a(g157999 +g158001 +S'the' +p158003 +tp158004 +a(g158001 +g158003 +S'principles' +p158005 +tp158006 +a(g158003 +g158005 +S'of' +p158007 +tp158008 +a(g158005 +g158007 +S'symmetry' +p158009 +tp158010 +a(g158007 +g158009 +S'and' +p158011 +tp158012 +a(g158009 +g158011 +S'order' +p158013 +tp158014 +a(g158011 +g158013 +S'propounded' +p158015 +tp158016 +a(g158013 +g158015 +S'by' +p158017 +tp158018 +a(g158015 +g158017 +S'the' +p158019 +tp158020 +a(g158017 +g158019 +S'academy.' +p158021 +tp158022 +a(g158019 +g158021 +S'the' +p158023 +tp158024 +a(g158021 +g158023 +S'dignified' +p158025 +tp158026 +a(g158023 +g158025 +S'gestures' +p158027 +tp158028 +a(g158025 +g158027 +S'--' +p158029 +tp158030 +a(g158027 +g158029 +S'especially' +p158031 +tp158032 +a(g158029 +g158031 +S'that' +p158033 +tp158034 +a(g158031 +g158033 +S'of' +p158035 +tp158036 +a(g158033 +g158035 +S'the' +p158037 +tp158038 +a(g158035 +g158037 +S'princess' +p158039 +tp158040 +a(g158037 +g158039 +S'--' +p158041 +tp158042 +a(g158039 +g158041 +S'and' +p158043 +tp158044 +a(g158041 +g158043 +S'expressions' +p158045 +tp158046 +a(g158043 +g158045 +S'of' +p158047 +tp158048 +a(g158045 +g158047 +S'the' +p158049 +tp158050 +a(g158047 +g158049 +S'figures' +p158051 +tp158052 +a(g158049 +g158051 +S'tell' +p158053 +tp158054 +a(g158051 +g158053 +S'the' +p158055 +tp158056 +a(g158053 +g158055 +S'story' +p158057 +tp158058 +a(g158055 +g158057 +S'in' +p158059 +tp158060 +a(g158057 +g158059 +S'a' +p158061 +tp158062 +a(g158059 +g158061 +S'way' +p158063 +tp158064 +a(g158061 +g158063 +S'considered' +p158065 +tp158066 +a(g158063 +g158065 +S'appropriate' +p158067 +tp158068 +a(g158065 +g158067 +S'to' +p158069 +tp158070 +a(g158067 +g158069 +S'the' +p158071 +tp158072 +a(g158069 +g158071 +S'event,' +p158073 +tp158074 +a(g158071 +g158073 +S'but' +p158075 +tp158076 +a(g158073 +g158075 +S'the' +p158077 +tp158078 +a(g158075 +g158077 +S'work' +p158079 +tp158080 +a(g158077 +g158079 +S'is' +p158081 +tp158082 +a(g158079 +g158081 +S'also' +p158083 +tp158084 +a(g158081 +g158083 +S'enlivened' +p158085 +tp158086 +a(g158083 +g158085 +S'by' +p158087 +tp158088 +a(g158085 +g158087 +S'vivid' +p158089 +tp158090 +a(g158087 +g158089 +S'color' +p158091 +tp158092 +a(g158089 +g158091 +S'and' +p158093 +tp158094 +a(g158091 +g158093 +S'clarifying' +p158095 +tp158096 +a(g158093 +g158095 +S'light.' +p158097 +tp158098 +a(g158095 +g158097 +S'bourdon' +p158099 +tp158100 +a(g158097 +g158099 +S'based' +p158101 +tp158102 +a(g158099 +g158101 +S'his' +p158103 +tp158104 +a(g158101 +g158103 +S'composition' +p158105 +tp158106 +a(g158103 +g158105 +S'on' +p158107 +tp158108 +a(g158105 +g158107 +S'earlier' +p158109 +tp158110 +a(g158107 +g158109 +S'works' +p158111 +tp158112 +a(g158109 +g158111 +S'of' +p158113 +tp158114 +a(g158111 +g158113 +S'the' +p158115 +tp158116 +a(g158113 +g158115 +S'same' +p158117 +tp158118 +a(g158115 +g158117 +S'subject' +p158119 +tp158120 +a(g158117 +g158119 +S'by' +p158121 +tp158122 +a(g158119 +g158121 +S'poussin.' +p158123 +tp158124 +a(g158121 +g158123 +S'in' +p158125 +tp158126 +a(g158123 +g158125 +S'the' +p158127 +tp158128 +a(g158125 +g158127 +S'theme' +p158129 +tp158130 +a(g158127 +g158129 +S'of' +p158131 +tp158132 +a(g158129 +g158131 +S'from' +p158133 +tp158134 +a(g158131 +g158133 +S'1505' +p158135 +tp158136 +a(g158133 +g158135 +S'until' +p158137 +tp158138 +a(g158135 +g158137 +S'his' +p158139 +tp158140 +a(g158137 +g158139 +S'death,' +p158141 +tp158142 +a(g158139 +g158141 +S'cranach' +p158143 +tp158144 +a(g158141 +g158143 +S'was' +p158145 +tp158146 +a(g158143 +g158145 +S'the' +p158147 +tp158148 +a(g158145 +g158147 +S'court' +p158149 +tp158150 +a(g158147 +g158149 +S'painter' +p158151 +tp158152 +a(g158149 +g158151 +S'to' +p158153 +tp158154 +a(g158151 +g158153 +S'three' +p158155 +tp158156 +a(g158153 +g158155 +S'successive' +p158157 +tp158158 +a(g158155 +g158157 +S'electors' +p158159 +tp158160 +a(g158157 +g158159 +S'of' +p158161 +tp158162 +a(g158159 +g158161 +S'saxony.' +p158163 +tp158164 +a(g158161 +g158163 +S'he' +p158165 +tp158166 +a(g158163 +g158165 +S'became' +p158167 +tp158168 +a(g158165 +g158167 +S'close' +p158169 +tp158170 +a(g158167 +g158169 +S'friends' +p158171 +tp158172 +a(g158169 +g158171 +S'with' +p158173 +tp158174 +a(g158171 +g158173 +S'luther' +p158175 +tp158176 +a(g158173 +g158175 +S'--' +p158177 +tp158178 +a(g158175 +g158177 +S'who' +p158179 +tp158180 +a(g158177 +g158179 +S'lived' +p158181 +tp158182 +a(g158179 +g158181 +S'in' +p158183 +tp158184 +a(g158181 +g158183 +S'the' +p158185 +tp158186 +a(g158183 +g158185 +S'saxon' +p158187 +tp158188 +a(g158185 +g158187 +S'town' +p158189 +tp158190 +a(g158187 +g158189 +S'of' +p158191 +tp158192 +a(g158189 +g158191 +S'wittenberg' +p158193 +tp158194 +a(g158191 +g158193 +S'--' +p158195 +tp158196 +a(g158193 +g158195 +S'and' +p158197 +tp158198 +a(g158195 +g158197 +S'is' +p158199 +tp158200 +a(g158197 +g158199 +S'considered' +p158201 +tp158202 +a(g158199 +g158201 +S'the' +p158203 +tp158204 +a(g158201 +g158203 +S'foremost' +p158205 +tp158206 +a(g158203 +g158205 +S'artist' +p158207 +tp158208 +a(g158205 +g158207 +S'of' +p158209 +tp158210 +a(g158207 +g158209 +S'the' +p158211 +tp158212 +a(g158209 +g158211 +S'reformation.' +p158213 +tp158214 +a(g158211 +g158213 +S'never' +p158215 +tp158216 +a(g158213 +g158215 +S'completed,' +p158217 +tp158218 +a(g158215 +g158217 +S'this' +p158219 +tp158220 +a(g158217 +g158219 +S'painting' +p158221 +tp158222 +a(g158219 +g158221 +S'was' +p158223 +tp158224 +a(g158221 +g158223 +S'probably' +p158225 +tp158226 +a(g158223 +g158225 +S'intended' +p158227 +tp158228 +a(g158225 +g158227 +S'to' +p158229 +tp158230 +a(g158227 +g158229 +S'be' +p158231 +tp158232 +a(g158229 +g158231 +S'cut' +p158233 +tp158234 +a(g158231 +g158233 +S'into' +p158235 +tp158236 +a(g158233 +g158235 +S'three' +p158237 +tp158238 +a(g158235 +g158237 +S'separate' +p158239 +tp158240 +a(g158237 +g158239 +S'sections' +p158241 +tp158242 +a(g158239 +g158241 +S'following' +p158243 +tp158244 +a(g158241 +g158243 +S'the' +p158245 +tp158246 +a(g158243 +g158245 +S'lines' +p158247 +tp158248 +a(g158245 +g158247 +S'of' +p158249 +tp158250 +a(g158247 +g158249 +S'the' +p158251 +tp158252 +a(g158249 +g158251 +S'architecture' +p158253 +tp158254 +a(g158251 +g158253 +S'and' +p158255 +tp158256 +a(g158253 +g158255 +S'then' +p158257 +tp158258 +a(g158255 +g158257 +S'used' +p158259 +tp158260 +a(g158257 +g158259 +S'in' +p158261 +tp158262 +a(g158259 +g158261 +S'the' +p158263 +tp158264 +a(g158261 +g158263 +S'predella' +p158265 +tp158266 +a(g158263 +g158265 +S'of' +p158267 +tp158268 +a(g158265 +g158267 +S'an' +p158269 +tp158270 +a(g158267 +g158269 +S'altarpiece.' +p158271 +tp158272 +a(g158269 +g158271 +S'located' +p158273 +tp158274 +a(g158271 +g158273 +S'closer' +p158275 +tp158276 +a(g158273 +g158275 +S'to' +p158277 +tp158278 +a(g158275 +g158277 +S'the' +p158279 +tp158280 +a(g158277 +g158279 +S"viewer's" +p158281 +tp158282 +a(g158279 +g158281 +S'eye' +p158283 +tp158284 +a(g158281 +g158283 +S'than' +p158285 +tp158286 +a(g158283 +g158285 +S'an' +p158287 +tp158288 +a(g158285 +g158287 +S"altarpiece's" +p158289 +tp158290 +a(g158287 +g158289 +S'central' +p158291 +tp158292 +a(g158289 +g158291 +S'panel,' +p158293 +tp158294 +a(g158291 +g158293 +S'predellas' +p158295 +tp158296 +a(g158293 +g158295 +S'were' +p158297 +tp158298 +a(g158295 +g158297 +S'usually' +p158299 +tp158300 +a(g158297 +g158299 +S'decorated' +p158301 +tp158302 +a(g158299 +g158301 +S'with' +p158303 +tp158304 +a(g158301 +g158303 +S'a' +p158305 +tp158306 +a(g158303 +g158305 +S'series' +p158307 +tp158308 +a(g158305 +g158307 +S'of' +p158309 +tp158310 +a(g158307 +g158309 +S'small' +p158311 +tp158312 +a(g158309 +g158311 +S'narrative' +p158313 +tp158314 +a(g158311 +g158313 +S'scenes' +p158315 +tp158316 +a(g158313 +g158315 +S'recounting' +p158317 +tp158318 +a(g158315 +g158317 +S'events' +p158319 +tp158320 +a(g158317 +g158319 +S'from' +p158321 +tp158322 +a(g158319 +g158321 +S'the' +p158323 +tp158324 +a(g158321 +g158323 +S'life' +p158325 +tp158326 +a(g158323 +g158325 +S'of' +p158327 +tp158328 +a(g158325 +g158327 +S'christ,' +p158329 +tp158330 +a(g158327 +g158329 +S'the' +p158331 +tp158332 +a(g158329 +g158331 +S'virgin,' +p158333 +tp158334 +a(g158331 +g158333 +S'or' +p158335 +tp158336 +a(g158333 +g158335 +S'the' +p158337 +tp158338 +a(g158335 +g158337 +S'saints.' +p158339 +tp158340 +a(g158337 +g158339 +S'at' +p158341 +tp158342 +a(g158339 +g158341 +S'the' +p158343 +tp158344 +a(g158341 +g158343 +S'left,' +p158345 +tp158346 +a(g158343 +g158345 +S'mary' +p158347 +tp158348 +a(g158345 +g158347 +S'appears' +p158349 +tp158350 +a(g158347 +g158349 +S'to' +p158351 +tp158352 +a(g158349 +g158351 +S'be' +p158353 +tp158354 +a(g158351 +g158353 +S'about' +p158355 +tp158356 +a(g158353 +g158355 +S'four' +p158357 +tp158358 +a(g158355 +g158357 +S'years' +p158359 +tp158360 +a(g158357 +g158359 +S'old.' +p158361 +tp158362 +a(g158359 +g158361 +S'she' +p158363 +tp158364 +a(g158361 +g158363 +S'enters' +p158365 +tp158366 +a(g158363 +g158365 +S'the' +p158367 +tp158368 +a(g158365 +g158367 +S'temple' +p158369 +tp158370 +a(g158367 +g158369 +S'to' +p158371 +tp158372 +a(g158369 +g158371 +S'undertake' +p158373 +tp158374 +a(g158371 +g158373 +S'a' +p158375 +tp158376 +a(g158373 +g158375 +S'life' +p158377 +tp158378 +a(g158375 +g158377 +S'of' +p158379 +tp158380 +a(g158377 +g158379 +S'service' +p158381 +tp158382 +a(g158379 +g158381 +S'in' +p158383 +tp158384 +a(g158381 +g158383 +S'fulfillment' +p158385 +tp158386 +a(g158383 +g158385 +S'of' +p158387 +tp158388 +a(g158385 +g158387 +S'a' +p158389 +tp158390 +a(g158387 +g158389 +S'vow' +p158391 +tp158392 +a(g158389 +g158391 +S'made' +p158393 +tp158394 +a(g158391 +g158393 +S'by' +p158395 +tp158396 +a(g158393 +g158395 +S'her' +p158397 +tp158398 +a(g158395 +g158397 +S'aging' +p158399 +tp158400 +a(g158397 +g158399 +S'parents.' +p158401 +tp158402 +a(g158399 +g158401 +S'the' +p158403 +tp158404 +a(g158401 +g158403 +S'broken' +p158405 +tp158406 +a(g158403 +g158405 +S'column' +p158407 +tp158408 +a(g158405 +g158407 +S'alludes' +p158409 +tp158410 +a(g158407 +g158409 +S'to' +p158411 +tp158412 +a(g158409 +g158411 +S'a' +p158413 +tp158414 +a(g158411 +g158413 +S'legend' +p158415 +tp158416 +a(g158413 +g158415 +S'that' +p158417 +tp158418 +a(g158415 +g158417 +S'earthquakes' +p158419 +tp158420 +a(g158417 +g158419 +S'rocked' +p158421 +tp158422 +a(g158419 +g158421 +S'the' +p158423 +tp158424 +a(g158421 +g158423 +S'temple' +p158425 +tp158426 +a(g158423 +g158425 +S'when' +p158427 +tp158428 +a(g158425 +g158427 +S'christ' +p158429 +tp158430 +a(g158427 +g158429 +S'was' +p158431 +tp158432 +a(g158429 +g158431 +S'born.' +p158433 +tp158434 +a(g158431 +g158433 +S'in' +p158435 +tp158436 +a(g158433 +g158435 +S'more' +p158437 +tp158438 +a(g158435 +g158437 +S'general' +p158439 +tp158440 +a(g158437 +g158439 +S'terms' +p158441 +tp158442 +a(g158439 +g158441 +S'the' +p158443 +tp158444 +a(g158441 +g158443 +S'column' +p158445 +tp158446 +a(g158443 +g158445 +S'symbolizes' +p158447 +tp158448 +a(g158445 +g158447 +S'how' +p158449 +tp158450 +a(g158447 +g158449 +S"christ's" +p158451 +tp158452 +a(g158449 +g158451 +S'birth' +p158453 +tp158454 +a(g158451 +g158453 +S'will' +p158455 +tp158456 +a(g158453 +g158455 +S'usher' +p158457 +tp158458 +a(g158455 +g158457 +S'in' +p158459 +tp158460 +a(g158457 +g158459 +S'a' +p158461 +tp158462 +a(g158459 +g158461 +S'new' +p158463 +tp158464 +a(g158461 +g158463 +S'era' +p158465 +tp158466 +a(g158463 +g158465 +S'of' +p158467 +tp158468 +a(g158465 +g158467 +S'grace' +p158469 +tp158470 +a(g158467 +g158469 +S'to' +p158471 +tp158472 +a(g158469 +g158471 +S'replace' +p158473 +tp158474 +a(g158471 +g158473 +S'the' +p158475 +tp158476 +a(g158473 +g158475 +S'old' +p158477 +tp158478 +a(g158475 +g158477 +S'testament' +p158479 +tp158480 +a(g158477 +g158479 +S'law.' +p158481 +tp158482 +a(g158479 +g158481 +S'in' +p158483 +tp158484 +a(g158481 +g158483 +S'the' +p158485 +tp158486 +a(g158483 +g158485 +S'center,' +p158487 +tp158488 +a(g158485 +g158487 +S'mary' +p158489 +tp158490 +a(g158487 +g158489 +S'is' +p158491 +tp158492 +a(g158489 +g158491 +S'wed' +p158493 +tp158494 +a(g158491 +g158493 +S'to' +p158495 +tp158496 +a(g158493 +g158495 +S'joseph.' +p158497 +tp158498 +a(g158495 +g158497 +S'he' +p158499 +tp158500 +a(g158497 +g158499 +S'was' +p158501 +tp158502 +a(g158499 +g158501 +S'identified' +p158503 +tp158504 +a(g158501 +g158503 +S'as' +p158505 +tp158506 +a(g158503 +g158505 +S"god's" +p158507 +tp158508 +a(g158505 +g158507 +S'choice' +p158509 +tp158510 +a(g158507 +g158509 +S'to' +p158511 +tp158512 +a(g158509 +g158511 +S'be' +p158513 +tp158514 +a(g158511 +g158513 +S'her' +p158515 +tp158516 +a(g158513 +g158515 +S'husband' +p158517 +tp158518 +a(g158515 +g158517 +S'when' +p158519 +tp158520 +a(g158517 +g158519 +S'the' +p158521 +tp158522 +a(g158519 +g158521 +S'rod' +p158523 +tp158524 +a(g158521 +g158523 +S'he' +p158525 +tp158526 +a(g158523 +g158525 +S'held' +p158527 +tp158528 +a(g158525 +g158527 +S'--' +p158529 +tp158530 +a(g158527 +g158529 +S'and' +p158531 +tp158532 +a(g158529 +g158531 +S'which' +p158533 +tp158534 +a(g158531 +g158533 +S'is' +p158535 +tp158536 +a(g158533 +g158535 +S'still' +p158537 +tp158538 +a(g158535 +g158537 +S'in' +p158539 +tp158540 +a(g158537 +g158539 +S'his' +p158541 +tp158542 +a(g158539 +g158541 +S'hands' +p158543 +tp158544 +a(g158541 +g158543 +S'--' +p158545 +tp158546 +a(g158543 +g158545 +S'sprouted' +p158547 +tp158548 +a(g158545 +g158547 +S'with' +p158549 +tp158550 +a(g158547 +g158549 +S'new' +p158551 +tp158552 +a(g158549 +g158551 +S'life.' +p158553 +tp158554 +a(g158551 +g158553 +S'at' +p158555 +tp158556 +a(g158553 +g158555 +S'the' +p158557 +tp158558 +a(g158555 +g158557 +S'right,' +p158559 +tp158560 +a(g158557 +g158559 +S'the' +p158561 +tp158562 +a(g158559 +g158561 +S'archangel' +p158563 +tp158564 +a(g158561 +g158563 +S'gabriel' +p158565 +tp158566 +a(g158563 +g158565 +S'announces' +p158567 +tp158568 +a(g158565 +g158567 +S'to' +p158569 +tp158570 +a(g158567 +g158569 +S'mary' +p158571 +tp158572 +a(g158569 +g158571 +S'that' +p158573 +tp158574 +a(g158571 +g158573 +S'she' +p158575 +tp158576 +a(g158573 +g158575 +S'will' +p158577 +tp158578 +a(g158575 +g158577 +S'bear' +p158579 +tp158580 +a(g158577 +g158579 +S'the' +p158581 +tp158582 +a(g158579 +g158581 +S'son' +p158583 +tp158584 +a(g158581 +g158583 +S'of' +p158585 +tp158586 +a(g158583 +g158585 +S'god.' +p158587 +tp158588 +a(g158585 +g158587 +S'the' +p158589 +tp158590 +a(g158587 +g158589 +S'blue' +p158591 +tp158592 +a(g158589 +g158591 +S'and' +p158593 +tp158594 +a(g158591 +g158593 +S'white' +p158595 +tp158596 +a(g158593 +g158595 +S'ribbon' +p158597 +tp158598 +a(g158595 +g158597 +S'of' +p158599 +tp158600 +a(g158597 +g158599 +S'the' +p158601 +tp158602 +a(g158599 +g158601 +S'order' +p158603 +tp158604 +a(g158601 +g158603 +S'of' +p158605 +tp158606 +a(g158603 +g158605 +S'carlos' +p158607 +tp158608 +a(g158605 +g158607 +S'iii' +p158609 +tp158610 +a(g158607 +g158609 +S'appears' +p158611 +tp158612 +a(g158609 +g158611 +S'prominently' +p158613 +tp158614 +a(g158611 +g158613 +S'on' +p158615 +tp158616 +a(g158613 +g158615 +S'the' +p158617 +tp158618 +a(g158615 +g158617 +S'jacket' +p158619 +tp158620 +a(g158617 +g158619 +S'of' +p158621 +tp158622 +a(g158619 +g158621 +S'antonio' +p158623 +tp158624 +a(g158621 +g158623 +S'noriega' +p158625 +tp158626 +a(g158623 +g158625 +S'bermúdez.' +p158627 +tp158628 +a(g158625 +g158627 +S'his' +p158629 +tp158630 +a(g158627 +g158629 +S'knighthood,' +p158631 +tp158632 +a(g158629 +g158631 +S'a' +p158633 +tp158634 +a(g158631 +g158633 +S'list' +p158635 +tp158636 +a(g158633 +g158635 +S'of' +p158637 +tp158638 +a(g158635 +g158637 +S'other' +p158639 +tp158640 +a(g158637 +g158639 +S'offices,' +p158641 +tp158642 +a(g158639 +g158641 +S'and' +p158643 +tp158644 +a(g158641 +g158643 +S'the' +p158645 +tp158646 +a(g158643 +g158645 +S'date' +p158647 +tp158648 +a(g158645 +g158647 +S'1801' +p158649 +tp158650 +a(g158647 +g158649 +S'are' +p158651 +tp158652 +a(g158649 +g158651 +S'inscribed' +p158653 +tp158654 +a(g158651 +g158653 +S'in' +p158655 +tp158656 +a(g158653 +g158655 +S'spanish' +p158657 +tp158658 +a(g158655 +g158657 +S'on' +p158659 +tp158660 +a(g158657 +g158659 +S'both' +p158661 +tp158662 +a(g158659 +g158661 +S'the' +p158663 +tp158664 +a(g158661 +g158663 +S'tablecloth' +p158665 +tp158666 +a(g158663 +g158665 +S'and' +p158667 +tp158668 +a(g158665 +g158667 +S'the' +p158669 +tp158670 +a(g158667 +g158669 +S'paper' +p158671 +tp158672 +a(g158669 +g158671 +S'in' +p158673 +tp158674 +a(g158671 +g158673 +S'the' +p158675 +tp158676 +a(g158673 +g158675 +S'sitter’s' +p158677 +tp158678 +a(g158675 +g158677 +S'hand.' +p158679 +tp158680 +a(g158677 +g158679 +S'don' +p158681 +tp158682 +a(g158679 +g158681 +S'antonio' +p158683 +tp158684 +a(g158681 +g158683 +S'was' +p158685 +tp158686 +a(g158683 +g158685 +S'knighted' +p158687 +tp158688 +a(g158685 +g158687 +S'on' +p158689 +tp158690 +a(g158687 +g158689 +S'23' +p158691 +tp158692 +a(g158689 +g158691 +S'july' +p158693 +tp158694 +a(g158691 +g158693 +S'1801,' +p158695 +tp158696 +a(g158693 +g158695 +S'and' +p158697 +tp158698 +a(g158695 +g158697 +S'goya’s' +p158699 +tp158700 +a(g158697 +g158699 +S'portrait' +p158701 +tp158702 +a(g158699 +g158701 +S'may' +p158703 +tp158704 +a(g158701 +g158703 +S'commemorate' +p158705 +tp158706 +a(g158703 +g158705 +S'that' +p158707 +tp158708 +a(g158705 +g158707 +S'event.' +p158709 +tp158710 +a(g158707 +g158709 +S'as' +p158711 +tp158712 +a(g158709 +g158711 +S'is' +p158713 +tp158714 +a(g158711 +g158713 +S'customary' +p158715 +tp158716 +a(g158713 +g158715 +S'in' +p158717 +tp158718 +a(g158715 +g158717 +S'portrayals' +p158719 +tp158720 +a(g158717 +g158719 +S'of' +p158721 +tp158722 +a(g158719 +g158721 +S'government' +p158723 +tp158724 +a(g158721 +g158723 +S'officials,' +p158725 +tp158726 +a(g158723 +g158725 +S'goya' +p158727 +tp158728 +a(g158725 +g158727 +S'depicted' +p158729 +tp158730 +a(g158727 +g158729 +S'spain’s' +p158731 +tp158732 +a(g158729 +g158731 +S'high' +p158733 +tp158734 +a(g158731 +g158733 +S'treasurer' +p158735 +tp158736 +a(g158733 +g158735 +S'at' +p158737 +tp158738 +a(g158735 +g158737 +S'work.' +p158739 +tp158740 +a(g158737 +g158739 +S'in' +p158741 +tp158742 +a(g158739 +g158741 +S'a' +p158743 +tp158744 +a(g158741 +g158743 +S'gesture' +p158745 +tp158746 +a(g158743 +g158745 +S'of' +p158747 +tp158748 +a(g158745 +g158747 +S'nonchalance,' +p158749 +tp158750 +a(g158747 +g158749 +S'don' +p158751 +tp158752 +a(g158749 +g158751 +S'antonio' +p158753 +tp158754 +a(g158751 +g158753 +S'rests' +p158755 +tp158756 +a(g158753 +g158755 +S'his' +p158757 +tp158758 +a(g158755 +g158757 +S'hand' +p158759 +tp158760 +a(g158757 +g158759 +S'inside' +p158761 +tp158762 +a(g158759 +g158761 +S'his' +p158763 +tp158764 +a(g158761 +g158763 +S'unbuttoned' +p158765 +tp158766 +a(g158763 +g158765 +S'vest,' +p158767 +tp158768 +a(g158765 +g158767 +S'implying' +p158769 +tp158770 +a(g158767 +g158769 +S'his' +p158771 +tp158772 +a(g158769 +g158771 +S'authority' +p158773 +tp158774 +a(g158771 +g158773 +S'and' +p158775 +tp158776 +a(g158773 +g158775 +S'control' +p158777 +tp158778 +a(g158775 +g158777 +S'over' +p158779 +tp158780 +a(g158777 +g158779 +S'the' +p158781 +tp158782 +a(g158779 +g158781 +S'country’s' +p158783 +tp158784 +a(g158781 +g158783 +S'finances.' +p158785 +tp158786 +a(g158783 +g158785 +S'in' +p158787 +tp158788 +a(g158785 +g158787 +S'truth,' +p158789 +tp158790 +a(g158787 +g158789 +S'his' +p158791 +tp158792 +a(g158789 +g158791 +S'administration' +p158793 +tp158794 +a(g158791 +g158793 +S'was' +p158795 +tp158796 +a(g158793 +g158795 +S'disastrously' +p158797 +tp158798 +a(g158795 +g158797 +S'inefficient,' +p158799 +tp158800 +a(g158797 +g158799 +S'nearly' +p158801 +tp158802 +a(g158799 +g158801 +S'doubling' +p158803 +tp158804 +a(g158801 +g158803 +S'the' +p158805 +tp158806 +a(g158803 +g158805 +S'national' +p158807 +tp158808 +a(g158805 +g158807 +S'debt.' +p158809 +tp158810 +a(g158807 +g158809 +S'while' +p158811 +tp158812 +a(g158809 +g158811 +S'fleeing' +p158813 +tp158814 +a(g158811 +g158813 +S'from' +p158815 +tp158816 +a(g158813 +g158815 +S'the' +p158817 +tp158818 +a(g158815 +g158817 +S'napoleonic' +p158819 +tp158820 +a(g158817 +g158819 +S'invaders' +p158821 +tp158822 +a(g158819 +g158821 +S'in' +p158823 +tp158824 +a(g158821 +g158823 +S'1808,' +p158825 +tp158826 +a(g158823 +g158825 +S'don' +p158827 +tp158828 +a(g158825 +g158827 +S'antonio' +p158829 +tp158830 +a(g158827 +g158829 +S'was' +p158831 +tp158832 +a(g158829 +g158831 +S'assassinated' +p158833 +tp158834 +a(g158831 +g158833 +S'by' +p158835 +tp158836 +a(g158833 +g158835 +S'spaniards' +p158837 +tp158838 +a(g158835 +g158837 +S'who,' +p158839 +tp158840 +a(g158837 +g158839 +S'mistakenly,' +p158841 +tp158842 +a(g158839 +g158841 +S'thought' +p158843 +tp158844 +a(g158841 +g158843 +S'he' +p158845 +tp158846 +a(g158843 +g158845 +S'had' +p158847 +tp158848 +a(g158845 +g158847 +S'collaborated' +p158849 +tp158850 +a(g158847 +g158849 +S'with' +p158851 +tp158852 +a(g158849 +g158851 +S'the' +p158853 +tp158854 +a(g158851 +g158853 +S'french' +p158855 +tp158856 +a(g158853 +g158855 +S'army.' +p158857 +tp158858 +a(g158855 +g158857 +S'canvases' +p158859 +tp158860 +a(g158857 +g158859 +S'like' +p158861 +tp158862 +a(g158859 +g158861 +S'this' +p158863 +tp158864 +a(g158861 +g158863 +S'one' +p158865 +tp158866 +a(g158863 +g158865 +S'earned' +p158867 +tp158868 +a(g158865 +g158867 +S'van' +p158869 +tp158870 +a(g158867 +g158869 +S'der' +p158871 +tp158872 +a(g158869 +g158871 +S'hamen' +p158873 +tp158874 +a(g158871 +g158873 +S'his' +p158875 +tp158876 +a(g158873 +g158875 +S'reputation' +p158877 +tp158878 +a(g158875 +g158877 +S'as' +p158879 +tp158880 +a(g158877 +g158879 +S'the' +p158881 +tp158882 +a(g158879 +g158881 +S'greatest' +p158883 +tp158884 +a(g158881 +g158883 +S'spanish' +p158885 +tp158886 +a(g158883 +g158885 +S'still-life' +p158887 +tp158888 +a(g158885 +g158887 +S'painter' +p158889 +tp158890 +a(g158887 +g158889 +S'of' +p158891 +tp158892 +a(g158889 +g158891 +S'the' +p158893 +tp158894 +a(g158891 +g158893 +S'seventeenth' +p158895 +tp158896 +a(g158893 +g158895 +S'century,' +p158897 +tp158898 +a(g158895 +g158897 +S'when' +p158899 +tp158900 +a(g158897 +g158899 +S'that' +p158901 +tp158902 +a(g158899 +g158901 +S'form' +p158903 +tp158904 +a(g158901 +g158903 +S'was' +p158905 +tp158906 +a(g158903 +g158905 +S'revived' +p158907 +tp158908 +a(g158905 +g158907 +S'as' +p158909 +tp158910 +a(g158907 +g158909 +S'a' +p158911 +tp158912 +a(g158909 +g158911 +S'worthy' +p158913 +tp158914 +a(g158911 +g158913 +S'subject' +p158915 +tp158916 +a(g158913 +g158915 +S'in' +p158917 +tp158918 +a(g158915 +g158917 +S'and' +p158919 +tp158920 +a(g158917 +g158919 +S'of' +p158921 +tp158922 +a(g158919 +g158921 +S'itself' +p158923 +tp158924 +a(g158921 +g158923 +S'rather' +p158925 +tp158926 +a(g158923 +g158925 +S'than' +p158927 +tp158928 +a(g158925 +g158927 +S'as' +p158929 +tp158930 +a(g158927 +g158929 +S'an' +p158931 +tp158932 +a(g158929 +g158931 +S'adjunct' +p158933 +tp158934 +a(g158931 +g158933 +S'to' +p158935 +tp158936 +a(g158933 +g158935 +S'a' +p158937 +tp158938 +a(g158935 +g158937 +S'symbolic' +p158939 +tp158940 +a(g158937 +g158939 +S'or' +p158941 +tp158942 +a(g158939 +g158941 +S'narrative' +p158943 +tp158944 +a(g158941 +g158943 +S'work.' +p158945 +tp158946 +a(g158943 +g158945 +S'concerned' +p158947 +tp158948 +a(g158945 +g158947 +S'simply' +p158949 +tp158950 +a(g158947 +g158949 +S'with' +p158951 +tp158952 +a(g158949 +g158951 +S'the' +p158953 +tp158954 +a(g158951 +g158953 +S'harmonious' +p158955 +tp158956 +a(g158953 +g158955 +S'arrangement' +p158957 +tp158958 +a(g158955 +g158957 +S'of' +p158959 +tp158960 +a(g158957 +g158959 +S'objects' +p158961 +tp158962 +a(g158959 +g158961 +S'and' +p158963 +tp158964 +a(g158961 +g158963 +S'the' +p158965 +tp158966 +a(g158963 +g158965 +S'accurate' +p158967 +tp158968 +a(g158965 +g158967 +S'representation' +p158969 +tp158970 +a(g158967 +g158969 +S'of' +p158971 +tp158972 +a(g158969 +g158971 +S'texture' +p158973 +tp158974 +a(g158971 +g158973 +S'and' +p158975 +tp158976 +a(g158973 +g158975 +S'light,' +p158977 +tp158978 +a(g158975 +g158977 +S'van' +p158979 +tp158980 +a(g158977 +g158979 +S'der' +p158981 +tp158982 +a(g158979 +g158981 +S'hamen' +p158983 +tp158984 +a(g158981 +g158983 +S'established' +p158985 +tp158986 +a(g158983 +g158985 +S'the' +p158987 +tp158988 +a(g158985 +g158987 +S'ringlike' +p158989 +tp158990 +a(g158987 +g158989 +S'stoneware' +p158991 +tp158992 +a(g158989 +g158991 +S'bottle' +p158993 +tp158994 +a(g158991 +g158993 +S'as' +p158995 +tp158996 +a(g158993 +g158995 +S'the' +p158997 +tp158998 +a(g158995 +g158997 +S'center' +p158999 +tp159000 +a(g158997 +g158999 +S'of' +p159001 +tp159002 +a(g158999 +g159001 +S'the' +p159003 +tp159004 +a(g159001 +g159003 +S'composition' +p159005 +tp159006 +a(g159003 +g159005 +S'around' +p159007 +tp159008 +a(g159005 +g159007 +S'which' +p159009 +tp159010 +a(g159007 +g159009 +S'other' +p159011 +tp159012 +a(g159009 +g159011 +S'circles' +p159013 +tp159014 +a(g159011 +g159013 +S'and' +p159015 +tp159016 +a(g159013 +g159015 +S'spheres' +p159017 +tp159018 +a(g159015 +g159017 +S'play.' +p159019 +tp159020 +a(g159017 +g159019 +S'marzipan' +p159021 +tp159022 +a(g159019 +g159021 +S'boxes' +p159023 +tp159024 +a(g159021 +g159023 +S'foreshortened' +p159025 +tp159026 +a(g159023 +g159025 +S'into' +p159027 +tp159028 +a(g159025 +g159027 +S'ovals,' +p159029 +tp159030 +a(g159027 +g159029 +S'spherical' +p159031 +tp159032 +a(g159029 +g159031 +S'jars' +p159033 +tp159034 +a(g159031 +g159033 +S'of' +p159035 +tp159036 +a(g159033 +g159035 +S'honey' +p159037 +tp159038 +a(g159035 +g159037 +S'and' +p159039 +tp159040 +a(g159037 +g159039 +S'preserved' +p159041 +tp159042 +a(g159039 +g159041 +S'cherries,' +p159043 +tp159044 +a(g159041 +g159043 +S'a' +p159045 +tp159046 +a(g159043 +g159045 +S'circular' +p159047 +tp159048 +a(g159045 +g159047 +S'tray' +p159049 +tp159050 +a(g159047 +g159049 +S'of' +p159051 +tp159052 +a(g159049 +g159051 +S'round,' +p159053 +tp159054 +a(g159051 +g159053 +S'sugared' +p159055 +tp159056 +a(g159053 +g159055 +S'donuts,' +p159057 +tp159058 +a(g159055 +g159057 +S'serpentine' +p159059 +tp159060 +a(g159057 +g159059 +S'cakes,' +p159061 +tp159062 +a(g159059 +g159061 +S'and' +p159063 +tp159064 +a(g159061 +g159063 +S'plump,' +p159065 +tp159066 +a(g159063 +g159065 +S'glazed' +p159067 +tp159068 +a(g159065 +g159067 +S'figs' +p159069 +tp159070 +a(g159067 +g159069 +S'--' +p159071 +tp159072 +a(g159069 +g159071 +S'delicacies' +p159073 +tp159074 +a(g159071 +g159073 +S'found' +p159075 +tp159076 +a(g159073 +g159075 +S'on' +p159077 +tp159078 +a(g159075 +g159077 +S'the' +p159079 +tp159080 +a(g159077 +g159079 +S'refined' +p159081 +tp159082 +a(g159079 +g159081 +S'tables' +p159083 +tp159084 +a(g159081 +g159083 +S'of' +p159085 +tp159086 +a(g159083 +g159085 +S'the' +p159087 +tp159088 +a(g159085 +g159087 +S'aristocracy' +p159089 +tp159090 +a(g159087 +g159089 +S'in' +p159091 +tp159092 +a(g159089 +g159091 +S'spain' +p159093 +tp159094 +a(g159091 +g159093 +S'--' +p159095 +tp159096 +a(g159093 +g159095 +S'contrast' +p159097 +tp159098 +a(g159095 +g159097 +S'with' +p159099 +tp159100 +a(g159097 +g159099 +S'the' +p159101 +tp159102 +a(g159099 +g159101 +S'geometric' +p159103 +tp159104 +a(g159101 +g159103 +S'severity' +p159105 +tp159106 +a(g159103 +g159105 +S'of' +p159107 +tp159108 +a(g159105 +g159107 +S'the' +p159109 +tp159110 +a(g159107 +g159109 +S'setting.' +p159111 +tp159112 +a(g159109 +g159111 +S'the' +p159113 +tp159114 +a(g159111 +g159113 +S'artist' +p159115 +tp159116 +a(g159113 +g159115 +S'arranged' +p159117 +tp159118 +a(g159115 +g159117 +S'the' +p159119 +tp159120 +a(g159117 +g159119 +S'objects' +p159121 +tp159122 +a(g159119 +g159121 +S'on' +p159123 +tp159124 +a(g159121 +g159123 +S'stepped' +p159125 +tp159126 +a(g159123 +g159125 +S'stone' +p159127 +tp159128 +a(g159125 +g159127 +S'ledges,' +p159129 +tp159130 +a(g159127 +g159129 +S'thus' +p159131 +tp159132 +a(g159129 +g159131 +S'varying' +p159133 +tp159134 +a(g159131 +g159133 +S'their' +p159135 +tp159136 +a(g159133 +g159135 +S'distances' +p159137 +tp159138 +a(g159135 +g159137 +S'from' +p159139 +tp159140 +a(g159137 +g159139 +S'the' +p159141 +tp159142 +a(g159139 +g159141 +S'light' +p159143 +tp159144 +a(g159141 +g159143 +S'source.' +p159145 +tp159146 +a(g159143 +g159145 +S'braided' +p159147 +tp159148 +a(g159145 +g159147 +S'straw,' +p159149 +tp159150 +a(g159147 +g159149 +S'wood,' +p159151 +tp159152 +a(g159149 +g159151 +S'terra' +p159153 +tp159154 +a(g159151 +g159153 +S'cotta,' +p159155 +tp159156 +a(g159153 +g159155 +S'and' +p159157 +tp159158 +a(g159155 +g159157 +S'crystal' +p159159 +tp159160 +a(g159157 +g159159 +S'are' +p159161 +tp159162 +a(g159159 +g159161 +S'masterfully' +p159163 +tp159164 +a(g159161 +g159163 +S'described.' +p159165 +tp159166 +a(g159163 +g159165 +S'these' +p159167 +tp159168 +a(g159165 +g159167 +S'carefully' +p159169 +tp159170 +a(g159167 +g159169 +S'rendered' +p159171 +tp159172 +a(g159169 +g159171 +S'textures' +p159173 +tp159174 +a(g159171 +g159173 +S'reach' +p159175 +tp159176 +a(g159173 +g159175 +S'a' +p159177 +tp159178 +a(g159175 +g159177 +S'pinnacle' +p159179 +tp159180 +a(g159177 +g159179 +S'in' +p159181 +tp159182 +a(g159179 +g159181 +S'the' +p159183 +tp159184 +a(g159181 +g159183 +S'water-filled' +p159185 +tp159186 +a(g159183 +g159185 +S'glass' +p159187 +tp159188 +a(g159185 +g159187 +S'finger' +p159189 +tp159190 +a(g159187 +g159189 +S'bowl' +p159191 +tp159192 +a(g159189 +g159191 +S'that' +p159193 +tp159194 +a(g159191 +g159193 +S'casts' +p159195 +tp159196 +a(g159193 +g159195 +S'a' +p159197 +tp159198 +a(g159195 +g159197 +S'shadow' +p159199 +tp159200 +a(g159197 +g159199 +S'and,' +p159201 +tp159202 +a(g159199 +g159201 +S'at' +p159203 +tp159204 +a(g159201 +g159203 +S'the' +p159205 +tp159206 +a(g159203 +g159205 +S'same' +p159207 +tp159208 +a(g159205 +g159207 +S'time,' +p159209 +tp159210 +a(g159207 +g159209 +S'reflects' +p159211 +tp159212 +a(g159209 +g159211 +S'the' +p159213 +tp159214 +a(g159211 +g159213 +S'light.' +p159215 +tp159216 +a(g159213 +g159215 +S'the' +p159217 +tp159218 +a(g159215 +g159217 +S'calculated' +p159219 +tp159220 +a(g159217 +g159219 +S'distribution' +p159221 +tp159222 +a(g159219 +g159221 +S'of' +p159223 +tp159224 +a(g159221 +g159223 +S'a' +p159225 +tp159226 +a(g159223 +g159225 +S'single' +p159227 +tp159228 +a(g159225 +g159227 +S'color,' +p159229 +tp159230 +a(g159227 +g159229 +S'red' +p159231 +tp159232 +a(g159229 +g159231 +S'in' +p159233 +tp159234 +a(g159231 +g159233 +S'various' +p159235 +tp159236 +a(g159233 +g159235 +S'tones,' +p159237 +tp159238 +a(g159235 +g159237 +S'weaves' +p159239 +tp159240 +a(g159237 +g159239 +S'the' +p159241 +tp159242 +a(g159239 +g159241 +S'forms' +p159243 +tp159244 +a(g159241 +g159243 +S'into' +p159245 +tp159246 +a(g159243 +g159245 +S'a' +p159247 +tp159248 +a(g159245 +g159247 +S'harmonious' +p159249 +tp159250 +a(g159247 +g159249 +S'whole' +p159251 +tp159252 +a(g159249 +g159251 +S'whose' +p159253 +tp159254 +a(g159251 +g159253 +S'simplicity,' +p159255 +tp159256 +a(g159253 +g159255 +S'at' +p159257 +tp159258 +a(g159255 +g159257 +S'first' +p159259 +tp159260 +a(g159257 +g159259 +S'glance,' +p159261 +tp159262 +a(g159259 +g159261 +S'belies' +p159263 +tp159264 +a(g159261 +g159263 +S'its' +p159265 +tp159266 +a(g159263 +g159265 +S'careful' +p159267 +tp159268 +a(g159265 +g159267 +S'structure.' +p159269 +tp159270 +a(g159267 +g159269 +S'saints' +p159271 +tp159272 +a(g159269 +g159271 +S'played' +p159273 +tp159274 +a(g159271 +g159273 +S'a' +p159275 +tp159276 +a(g159273 +g159275 +S'very' +p159277 +tp159278 +a(g159275 +g159277 +S'important' +p159279 +tp159280 +a(g159277 +g159279 +S'role' +p159281 +tp159282 +a(g159279 +g159281 +S'in' +p159283 +tp159284 +a(g159281 +g159283 +S'the' +p159285 +tp159286 +a(g159283 +g159285 +S'popular' +p159287 +tp159288 +a(g159285 +g159287 +S'piety' +p159289 +tp159290 +a(g159287 +g159289 +S'of' +p159291 +tp159292 +a(g159289 +g159291 +S'the' +p159293 +tp159294 +a(g159291 +g159293 +S'late' +p159295 +tp159296 +a(g159293 +g159295 +S'middle' +p159297 +tp159298 +a(g159295 +g159297 +S'ages.' +p159299 +tp159300 +a(g159297 +g159299 +S'they' +p159301 +tp159302 +a(g159299 +g159301 +S'were' +p159303 +tp159304 +a(g159301 +g159303 +S'considered' +p159305 +tp159306 +a(g159303 +g159305 +S'to' +p159307 +tp159308 +a(g159305 +g159307 +S'be' +p159309 +tp159310 +a(g159307 +g159309 +S'not' +p159311 +tp159312 +a(g159309 +g159311 +S'only' +p159313 +tp159314 +a(g159311 +g159313 +S'patrons' +p159315 +tp159316 +a(g159313 +g159315 +S'and' +p159317 +tp159318 +a(g159315 +g159317 +S'protectors' +p159319 +tp159320 +a(g159317 +g159319 +S'against' +p159321 +tp159322 +a(g159319 +g159321 +S'all' +p159323 +tp159324 +a(g159321 +g159323 +S'manner' +p159325 +tp159326 +a(g159323 +g159325 +S'of' +p159327 +tp159328 +a(g159325 +g159327 +S'ills,' +p159329 +tp159330 +a(g159327 +g159329 +S'but' +p159331 +tp159332 +a(g159329 +g159331 +S'also' +p159333 +tp159334 +a(g159331 +g159333 +S'mediators' +p159335 +tp159336 +a(g159333 +g159335 +S'between' +p159337 +tp159338 +a(g159335 +g159337 +S'the' +p159339 +tp159340 +a(g159337 +g159339 +S'individual' +p159341 +tp159342 +a(g159339 +g159341 +S'worshiper' +p159343 +tp159344 +a(g159341 +g159343 +S'and' +p159345 +tp159346 +a(g159343 +g159345 +S'god.' +p159347 +tp159348 +a(g159345 +g159347 +S'in' +p159349 +tp159350 +a(g159347 +g159349 +S'this' +p159351 +tp159352 +a(g159349 +g159351 +S'unusual' +p159353 +tp159354 +a(g159351 +g159353 +S'scene,' +p159355 +tp159356 +a(g159353 +g159355 +S'fourteen' +p159357 +tp159358 +a(g159355 +g159357 +S'saints' +p159359 +tp159360 +a(g159357 +g159359 +S'participate' +p159361 +tp159362 +a(g159359 +g159361 +S'as' +p159363 +tp159364 +a(g159361 +g159363 +S'witnesses' +p159365 +tp159366 +a(g159363 +g159365 +S'at' +p159367 +tp159368 +a(g159365 +g159367 +S'the' +p159369 +tp159370 +a(g159367 +g159369 +S'baptism' +p159371 +tp159372 +a(g159369 +g159371 +S'of' +p159373 +tp159374 +a(g159371 +g159373 +S'christ.' +p159375 +tp159376 +a(g159373 +g159375 +S'all' +p159377 +tp159378 +a(g159375 +g159377 +S'the' +p159379 +tp159380 +a(g159377 +g159379 +S'saints' +p159381 +tp159382 +a(g159379 +g159381 +S'are' +p159383 +tp159384 +a(g159381 +g159383 +S'vividly' +p159385 +tp159386 +a(g159383 +g159385 +S'characterized' +p159387 +tp159388 +a(g159385 +g159387 +S'by' +p159389 +tp159390 +a(g159387 +g159389 +S'costume' +p159391 +tp159392 +a(g159389 +g159391 +S'and' +p159393 +tp159394 +a(g159391 +g159393 +S'attributes.' +p159395 +tp159396 +a(g159393 +g159395 +S'they' +p159397 +tp159398 +a(g159395 +g159397 +S'include' +p159399 +tp159400 +a(g159397 +g159399 +S'the' +p159401 +tp159402 +a(g159399 +g159401 +S'giant' +p159403 +tp159404 +a(g159401 +g159403 +S'christopher' +p159405 +tp159406 +a(g159403 +g159405 +S'carrying' +p159407 +tp159408 +a(g159405 +g159407 +S'the' +p159409 +tp159410 +a(g159407 +g159409 +S'christ' +p159411 +tp159412 +a(g159409 +g159411 +S'child' +p159413 +tp159414 +a(g159411 +g159413 +S'on' +p159415 +tp159416 +a(g159413 +g159415 +S'his' +p159417 +tp159418 +a(g159415 +g159417 +S'shoulders,' +p159419 +tp159420 +a(g159417 +g159419 +S'catherine' +p159421 +tp159422 +a(g159419 +g159421 +S'of' +p159423 +tp159424 +a(g159421 +g159423 +S'alexandria' +p159425 +tp159426 +a(g159423 +g159425 +S'with' +p159427 +tp159428 +a(g159425 +g159427 +S'sword' +p159429 +tp159430 +a(g159427 +g159429 +S'and' +p159431 +tp159432 +a(g159429 +g159431 +S'wheel' +p159433 +tp159434 +a(g159431 +g159433 +S'of' +p159435 +tp159436 +a(g159433 +g159435 +S'her' +p159437 +tp159438 +a(g159435 +g159437 +S'martyrdom,' +p159439 +tp159440 +a(g159437 +g159439 +S'augustine' +p159441 +tp159442 +a(g159439 +g159441 +S'holding' +p159443 +tp159444 +a(g159441 +g159443 +S'his' +p159445 +tp159446 +a(g159443 +g159445 +S'heart' +p159447 +tp159448 +a(g159445 +g159447 +S'pierced' +p159449 +tp159450 +a(g159447 +g159449 +S'by' +p159451 +tp159452 +a(g159449 +g159451 +S'the' +p159453 +tp159454 +a(g159451 +g159453 +S'arrow' +p159455 +tp159456 +a(g159453 +g159455 +S'of' +p159457 +tp159458 +a(g159455 +g159457 +S'divine' +p159459 +tp159460 +a(g159457 +g159459 +S'love,' +p159461 +tp159462 +a(g159459 +g159461 +S'mary' +p159463 +tp159464 +a(g159461 +g159463 +S'magdalene' +p159465 +tp159466 +a(g159463 +g159465 +S'with' +p159467 +tp159468 +a(g159465 +g159467 +S'her' +p159469 +tp159470 +a(g159467 +g159469 +S'ointment' +p159471 +tp159472 +a(g159469 +g159471 +S'jar,' +p159473 +tp159474 +a(g159471 +g159473 +S'and' +p159475 +tp159476 +a(g159473 +g159475 +S'the' +p159477 +tp159478 +a(g159475 +g159477 +S'chivalrous' +p159479 +tp159480 +a(g159477 +g159479 +S'george' +p159481 +tp159482 +a(g159479 +g159481 +S'kneeling' +p159483 +tp159484 +a(g159481 +g159483 +S'on' +p159485 +tp159486 +a(g159483 +g159485 +S'his' +p159487 +tp159488 +a(g159485 +g159487 +S'dragon.' +p159489 +tp159490 +a(g159487 +g159489 +S'the' +p159491 +tp159492 +a(g159489 +g159491 +S'gold' +p159493 +tp159494 +a(g159491 +g159493 +S'background,' +p159495 +tp159496 +a(g159493 +g159495 +S'the' +p159497 +tp159498 +a(g159495 +g159497 +S'luminescent' +p159499 +tp159500 +a(g159497 +g159499 +S'cloud' +p159501 +tp159502 +a(g159499 +g159501 +S'on' +p159503 +tp159504 +a(g159501 +g159503 +S'which' +p159505 +tp159506 +a(g159503 +g159505 +S'the' +p159507 +tp159508 +a(g159505 +g159507 +S'saints' +p159509 +tp159510 +a(g159507 +g159509 +S'float,' +p159511 +tp159512 +a(g159509 +g159511 +S'and' +p159513 +tp159514 +a(g159511 +g159513 +S'the' +p159515 +tp159516 +a(g159513 +g159515 +S'unrealistic' +p159517 +tp159518 +a(g159515 +g159517 +S'island' +p159519 +tp159520 +a(g159517 +g159519 +S'setting' +p159521 +tp159522 +a(g159519 +g159521 +S'for' +p159523 +tp159524 +a(g159521 +g159523 +S'the' +p159525 +tp159526 +a(g159523 +g159525 +S'baptism' +p159527 +tp159528 +a(g159525 +g159527 +S'itself' +p159529 +tp159530 +a(g159527 +g159529 +S'all' +p159531 +tp159532 +a(g159529 +g159531 +S'impart' +p159533 +tp159534 +a(g159531 +g159533 +S'a' +p159535 +tp159536 +a(g159533 +g159535 +S'visionary' +p159537 +tp159538 +a(g159535 +g159537 +S'quality' +p159539 +tp159540 +a(g159537 +g159539 +S'to' +p159541 +tp159542 +a(g159539 +g159541 +S'the' +p159543 +tp159544 +a(g159541 +g159543 +S'scene.' +p159545 +tp159546 +a(g159543 +g159545 +S'the' +p159547 +tp159548 +a(g159545 +g159547 +S'master' +p159549 +tp159550 +a(g159547 +g159549 +S'of' +p159551 +tp159552 +a(g159549 +g159551 +S'the' +p159553 +tp159554 +a(g159551 +g159553 +S'saint' +p159555 +tp159556 +a(g159553 +g159555 +S'bartholomew' +p159557 +tp159558 +a(g159555 +g159557 +S'altar,' +p159559 +tp159560 +a(g159557 +g159559 +S'named' +p159561 +tp159562 +a(g159559 +g159561 +S'after' +p159563 +tp159564 +a(g159561 +g159563 +S'his' +p159565 +tp159566 +a(g159563 +g159565 +S'monumental' +p159567 +tp159568 +a(g159565 +g159567 +S'altarpiece' +p159569 +tp159570 +a(g159567 +g159569 +S'now' +p159571 +tp159572 +a(g159569 +g159571 +S'in' +p159573 +tp159574 +a(g159571 +g159573 +S'munich,' +p159575 +tp159576 +a(g159573 +g159575 +S'was' +p159577 +tp159578 +a(g159575 +g159577 +S'active' +p159579 +tp159580 +a(g159577 +g159579 +S'in' +p159581 +tp159582 +a(g159579 +g159581 +S'cologne.' +p159583 +tp159584 +a(g159581 +g159583 +S'early' +p159585 +tp159586 +a(g159583 +g159585 +S'in' +p159587 +tp159588 +a(g159585 +g159587 +S'his' +p159589 +tp159590 +a(g159587 +g159589 +S'career' +p159591 +tp159592 +a(g159589 +g159591 +S'he' +p159593 +tp159594 +a(g159591 +g159593 +S'seems' +p159595 +tp159596 +a(g159593 +g159595 +S'to' +p159597 +tp159598 +a(g159595 +g159597 +S'have' +p159599 +tp159600 +a(g159597 +g159599 +S'worked' +p159601 +tp159602 +a(g159599 +g159601 +S'as' +p159603 +tp159604 +a(g159601 +g159603 +S'a' +p159605 +tp159606 +a(g159603 +g159605 +S'manuscript' +p159607 +tp159608 +a(g159605 +g159607 +S'illuminator,' +p159609 +tp159610 +a(g159607 +g159609 +S'and' +p159611 +tp159612 +a(g159609 +g159611 +S'this' +p159613 +tp159614 +a(g159611 +g159613 +S'tradition' +p159615 +tp159616 +a(g159613 +g159615 +S'is' +p159617 +tp159618 +a(g159615 +g159617 +S'evident' +p159619 +tp159620 +a(g159617 +g159619 +S'in' +p159621 +tp159622 +a(g159619 +g159621 +S'his' +p159623 +tp159624 +a(g159621 +g159623 +S'fluid' +p159625 +tp159626 +a(g159623 +g159625 +S'paint' +p159627 +tp159628 +a(g159625 +g159627 +S'handling' +p159629 +tp159630 +a(g159627 +g159629 +S'and' +p159631 +tp159632 +a(g159629 +g159631 +S'sparkling' +p159633 +tp159634 +a(g159631 +g159633 +S'treatment' +p159635 +tp159636 +a(g159633 +g159635 +S'of' +p159637 +tp159638 +a(g159635 +g159637 +S'decorative' +p159639 +tp159640 +a(g159637 +g159639 +S'details.' +p159641 +tp159642 +a(g159639 +g159641 +S'giovanni' +p159643 +tp159644 +a(g159641 +g159643 +S'della' +p159645 +tp159646 +a(g159643 +g159645 +S'casa,' +p159647 +tp159648 +a(g159645 +g159647 +S'who' +p159649 +tp159650 +a(g159647 +g159649 +S'is' +p159651 +tp159652 +a(g159649 +g159651 +S'in' +p159653 +tp159654 +a(g159651 +g159653 +S'all' +p159655 +tp159656 +a(g159653 +g159655 +S'likelihood' +p159657 +tp159658 +a(g159655 +g159657 +S'the' +p159659 +tp159660 +a(g159657 +g159659 +S'subject' +p159661 +tp159662 +a(g159659 +g159661 +S'of' +p159663 +tp159664 +a(g159661 +g159663 +S'this' +p159665 +tp159666 +a(g159663 +g159665 +S'portrait,' +p159667 +tp159668 +a(g159665 +g159667 +S'belonged' +p159669 +tp159670 +a(g159667 +g159669 +S'to' +p159671 +tp159672 +a(g159669 +g159671 +S'a' +p159673 +tp159674 +a(g159671 +g159673 +S'wealthy' +p159675 +tp159676 +a(g159673 +g159675 +S'tuscan' +p159677 +tp159678 +a(g159675 +g159677 +S'family' +p159679 +tp159680 +a(g159677 +g159679 +S'and' +p159681 +tp159682 +a(g159679 +g159681 +S'rose' +p159683 +tp159684 +a(g159681 +g159683 +S'to' +p159685 +tp159686 +a(g159683 +g159685 +S'prominence' +p159687 +tp159688 +a(g159685 +g159687 +S'in' +p159689 +tp159690 +a(g159687 +g159689 +S'the' +p159691 +tp159692 +a(g159689 +g159691 +S'service' +p159693 +tp159694 +a(g159691 +g159693 +S'of' +p159695 +tp159696 +a(g159693 +g159695 +S'the' +p159697 +tp159698 +a(g159695 +g159697 +S'church.' +p159699 +tp159700 +a(g159697 +g159699 +S'as' +p159701 +tp159702 +a(g159699 +g159701 +S'poet,' +p159703 +tp159704 +a(g159701 +g159703 +S'humanist,' +p159705 +tp159706 +a(g159703 +g159705 +S'and' +p159707 +tp159708 +a(g159705 +g159707 +S'political' +p159709 +tp159710 +a(g159707 +g159709 +S'theorist,' +p159711 +tp159712 +a(g159709 +g159711 +S'he' +p159713 +tp159714 +a(g159711 +g159713 +S'circulated' +p159715 +tp159716 +a(g159713 +g159715 +S'at' +p159717 +tp159718 +a(g159715 +g159717 +S'the' +p159719 +tp159720 +a(g159717 +g159719 +S'highest' +p159721 +tp159722 +a(g159719 +g159721 +S'levels' +p159723 +tp159724 +a(g159721 +g159723 +S'of' +p159725 +tp159726 +a(g159723 +g159725 +S'italian' +p159727 +tp159728 +a(g159725 +g159727 +S'intellectual' +p159729 +tp159730 +a(g159727 +g159729 +S'life.' +p159731 +tp159732 +a(g159729 +g159731 +S'della' +p159733 +tp159734 +a(g159731 +g159733 +S'casa' +p159735 +tp159736 +a(g159733 +g159735 +S'also' +p159737 +tp159738 +a(g159735 +g159737 +S'wrote' +p159739 +tp159740 +a(g159737 +g159739 +S'a' +p159741 +tp159742 +a(g159739 +g159741 +S'book' +p159743 +tp159744 +a(g159741 +g159743 +S'on' +p159745 +tp159746 +a(g159743 +g159745 +S'manners,' +p159747 +tp159748 +a(g159745 +g159747 +S'and' +p159749 +tp159750 +a(g159747 +g159749 +S'in' +p159751 +tp159752 +a(g159749 +g159751 +S'this' +p159753 +tp159754 +a(g159751 +g159753 +S'portrait' +p159755 +tp159756 +a(g159753 +g159755 +S'of' +p159757 +tp159758 +a(g159755 +g159757 +S'the' +p159759 +tp159760 +a(g159757 +g159759 +S'early' +p159761 +tp159762 +a(g159759 +g159761 +S'1540s' +p159763 +tp159764 +a(g159761 +g159763 +S'displays' +p159765 +tp159766 +a(g159763 +g159765 +S'the' +p159767 +tp159768 +a(g159765 +g159767 +S'sober' +p159769 +tp159770 +a(g159767 +g159769 +S'self-possession' +p159771 +tp159772 +a(g159769 +g159771 +S'espoused' +p159773 +tp159774 +a(g159771 +g159773 +S'in' +p159775 +tp159776 +a(g159773 +g159775 +S'that' +p159777 +tp159778 +a(g159775 +g159777 +S'work.' +p159779 +tp159780 +a(g159777 +g159779 +S'when' +p159781 +tp159782 +a(g159779 +g159781 +S'pontormo' +p159783 +tp159784 +a(g159781 +g159783 +S'painted' +p159785 +tp159786 +a(g159783 +g159785 +S'this' +p159787 +tp159788 +a(g159785 +g159787 +S'image,' +p159789 +tp159790 +a(g159787 +g159789 +S'della' +p159791 +tp159792 +a(g159789 +g159791 +S'casa' +p159793 +tp159794 +a(g159791 +g159793 +S'was' +p159795 +tp159796 +a(g159793 +g159795 +S'in' +p159797 +tp159798 +a(g159795 +g159797 +S'his' +p159799 +tp159800 +a(g159797 +g159799 +S'early' +p159801 +tp159802 +a(g159799 +g159801 +S'thirties' +p159803 +tp159804 +a(g159801 +g159803 +S'and' +p159805 +tp159806 +a(g159803 +g159805 +S'acting' +p159807 +tp159808 +a(g159805 +g159807 +S'in' +p159809 +tp159810 +a(g159807 +g159809 +S'florence' +p159811 +tp159812 +a(g159809 +g159811 +S'as' +p159813 +tp159814 +a(g159811 +g159813 +S'apostolic' +p159815 +tp159816 +a(g159813 +g159815 +S'commissioner' +p159817 +tp159818 +a(g159815 +g159817 +S'of' +p159819 +tp159820 +a(g159817 +g159819 +S'taxes.' +p159821 +tp159822 +a(g159819 +g159821 +S'pontormo' +p159823 +tp159824 +a(g159821 +g159823 +S'shows' +p159825 +tp159826 +a(g159823 +g159825 +S'the' +p159827 +tp159828 +a(g159825 +g159827 +S'monsignor' +p159829 +tp159830 +a(g159827 +g159829 +S'in' +p159831 +tp159832 +a(g159829 +g159831 +S'a' +p159833 +tp159834 +a(g159831 +g159833 +S'dim' +p159835 +tp159836 +a(g159833 +g159835 +S'interior,' +p159837 +tp159838 +a(g159835 +g159837 +S'and' +p159839 +tp159840 +a(g159837 +g159839 +S'although' +p159841 +tp159842 +a(g159839 +g159841 +S'the' +p159843 +tp159844 +a(g159841 +g159843 +S'architectural' +p159845 +tp159846 +a(g159843 +g159845 +S'details' +p159847 +tp159848 +a(g159845 +g159847 +S'are' +p159849 +tp159850 +a(g159847 +g159849 +S'few,' +p159851 +tp159852 +a(g159849 +g159851 +S'they' +p159853 +tp159854 +a(g159851 +g159853 +S'suggest' +p159855 +tp159856 +a(g159853 +g159855 +S'that' +p159857 +tp159858 +a(g159855 +g159857 +S'the' +p159859 +tp159860 +a(g159857 +g159859 +S'building' +p159861 +tp159862 +a(g159859 +g159861 +S'is' +p159863 +tp159864 +a(g159861 +g159863 +S'santa' +p159865 +tp159866 +a(g159863 +g159865 +S'maria' +p159867 +tp159868 +a(g159865 +g159867 +S'del' +p159869 +tp159870 +a(g159867 +g159869 +S'fiore,' +p159871 +tp159872 +a(g159869 +g159871 +S'the' +p159873 +tp159874 +a(g159871 +g159873 +S'cathedral' +p159875 +tp159876 +a(g159873 +g159875 +S'of' +p159877 +tp159878 +a(g159875 +g159877 +S'florence.' +p159879 +tp159880 +a(g159877 +g159879 +S"pontormo's" +p159881 +tp159882 +a(g159879 +g159881 +S'mannerist' +p159883 +tp159884 +a(g159881 +g159883 +S'style' +p159885 +tp159886 +a(g159883 +g159885 +S'was' +p159887 +tp159888 +a(g159885 +g159887 +S'a' +p159889 +tp159890 +a(g159887 +g159889 +S'brilliantly' +p159891 +tp159892 +a(g159889 +g159891 +S'expressive' +p159893 +tp159894 +a(g159891 +g159893 +S'synthesis' +p159895 +tp159896 +a(g159893 +g159895 +S'of' +p159897 +tp159898 +a(g159895 +g159897 +S'fantasy' +p159899 +tp159900 +a(g159897 +g159899 +S'and' +p159901 +tp159902 +a(g159899 +g159901 +S'acute' +p159903 +tp159904 +a(g159901 +g159903 +S'observation' +p159905 +tp159906 +a(g159903 +g159905 +S'of' +p159907 +tp159908 +a(g159905 +g159907 +S'nature.' +p159909 +tp159910 +a(g159907 +g159909 +S'here' +p159911 +tp159912 +a(g159909 +g159911 +S'the' +p159913 +tp159914 +a(g159911 +g159913 +S'balance' +p159915 +tp159916 +a(g159913 +g159915 +S'is' +p159917 +tp159918 +a(g159915 +g159917 +S'tilted' +p159919 +tp159920 +a(g159917 +g159919 +S'in' +p159921 +tp159922 +a(g159919 +g159921 +S'favor' +p159923 +tp159924 +a(g159921 +g159923 +S'of' +p159925 +tp159926 +a(g159923 +g159925 +S'visible' +p159927 +tp159928 +a(g159925 +g159927 +S'reality,' +p159929 +tp159930 +a(g159927 +g159929 +S'but' +p159931 +tp159932 +a(g159929 +g159931 +S'a' +p159933 +tp159934 +a(g159931 +g159933 +S'reality' +p159935 +tp159936 +a(g159933 +g159935 +S'intensified' +p159937 +tp159938 +a(g159935 +g159937 +S'by' +p159939 +tp159940 +a(g159937 +g159939 +S'plausible' +p159941 +tp159942 +a(g159939 +g159941 +S'exaggerations.' +p159943 +tp159944 +a(g159941 +g159943 +S'for' +p159945 +tp159946 +a(g159943 +g159945 +S'example,' +p159947 +tp159948 +a(g159945 +g159947 +S'the' +p159949 +tp159950 +a(g159947 +g159949 +S"monsignor's" +p159951 +tp159952 +a(g159949 +g159951 +S'small' +p159953 +tp159954 +a(g159951 +g159953 +S'head' +p159955 +tp159956 +a(g159953 +g159955 +S'is' +p159957 +tp159958 +a(g159955 +g159957 +S'made' +p159959 +tp159960 +a(g159957 +g159959 +S'to' +p159961 +tp159962 +a(g159959 +g159961 +S'look' +p159963 +tp159964 +a(g159961 +g159963 +S'even' +p159965 +tp159966 +a(g159963 +g159965 +S'smaller' +p159967 +tp159968 +a(g159965 +g159967 +S'by' +p159969 +tp159970 +a(g159967 +g159969 +S'the' +p159971 +tp159972 +a(g159969 +g159971 +S'huge' +p159973 +tp159974 +a(g159971 +g159973 +S'conical' +p159975 +tp159976 +a(g159973 +g159975 +S'bulk' +p159977 +tp159978 +a(g159975 +g159977 +S'of' +p159979 +tp159980 +a(g159977 +g159979 +S'his' +p159981 +tp159982 +a(g159979 +g159981 +S'caped' +p159983 +tp159984 +a(g159981 +g159983 +S'torso' +p159985 +tp159986 +a(g159983 +g159985 +S'looming' +p159987 +tp159988 +a(g159985 +g159987 +S'so' +p159989 +tp159990 +a(g159987 +g159989 +S'close' +p159991 +tp159992 +a(g159989 +g159991 +S'to' +p159993 +tp159994 +a(g159991 +g159993 +S'the' +p159995 +tp159996 +a(g159993 +g159995 +S'picture' +p159997 +tp159998 +a(g159995 +g159997 +S'plane' +p159999 +tp160000 +a(g159997 +g159999 +S'and' +p160001 +tp160002 +a(g159999 +g160001 +S'brushing' +p160003 +tp160004 +a(g160001 +g160003 +S'the' +p160005 +tp160006 +a(g160003 +g160005 +S'sides' +p160007 +tp160008 +a(g160005 +g160007 +S'of' +p160009 +tp160010 +a(g160007 +g160009 +S'the' +p160011 +tp160012 +a(g160009 +g160011 +S'frame.' +p160013 +tp160014 +a(g160011 +g160013 +S'david' +p160015 +tp160016 +a(g160013 +g160015 +S'johnston,' +p160017 +tp160018 +a(g160015 +g160017 +S'who' +p160019 +tp160020 +a(g160017 +g160019 +S'was' +p160021 +tp160022 +a(g160019 +g160021 +S'painted' +p160023 +tp160024 +a(g160021 +g160023 +S'at' +p160025 +tp160026 +a(g160023 +g160025 +S'the' +p160027 +tp160028 +a(g160025 +g160027 +S'age' +p160029 +tp160030 +a(g160027 +g160029 +S'of' +p160031 +tp160032 +a(g160029 +g160031 +S'nineteen,' +p160033 +tp160034 +a(g160031 +g160033 +S'became' +p160035 +tp160036 +a(g160033 +g160035 +S'a' +p160037 +tp160038 +a(g160035 +g160037 +S'progressive' +p160039 +tp160040 +a(g160037 +g160039 +S'industrialist' +p160041 +tp160042 +a(g160039 +g160041 +S'in' +p160043 +tp160044 +a(g160041 +g160043 +S'the' +p160045 +tp160046 +a(g160043 +g160045 +S'ceramics' +p160047 +tp160048 +a(g160045 +g160047 +S'business' +p160049 +tp160050 +a(g160047 +g160049 +S'and' +p160051 +tp160052 +a(g160049 +g160051 +S'served' +p160053 +tp160054 +a(g160051 +g160053 +S'as' +p160055 +tp160056 +a(g160053 +g160055 +S'mayor' +p160057 +tp160058 +a(g160055 +g160057 +S'of' +p160059 +tp160060 +a(g160057 +g160059 +S'bordeaux.' +p160061 +tp160062 +a(g160059 +g160061 +S'this' +p160063 +tp160064 +a(g160061 +g160063 +S'portrait' +p160065 +tp160066 +a(g160063 +g160065 +S'was' +p160067 +tp160068 +a(g160065 +g160067 +S'produced' +p160069 +tp160070 +a(g160067 +g160069 +S'while' +p160071 +tp160072 +a(g160069 +g160071 +S"prud'hon" +p160073 +tp160074 +a(g160071 +g160073 +S'was' +p160075 +tp160076 +a(g160073 +g160075 +S'at' +p160077 +tp160078 +a(g160075 +g160077 +S'the' +p160079 +tp160080 +a(g160077 +g160079 +S'height' +p160081 +tp160082 +a(g160079 +g160081 +S'of' +p160083 +tp160084 +a(g160081 +g160083 +S'his' +p160085 +tp160086 +a(g160083 +g160085 +S'fame,' +p160087 +tp160088 +a(g160085 +g160087 +S'in' +p160089 +tp160090 +a(g160087 +g160089 +S'the' +p160091 +tp160092 +a(g160089 +g160091 +S'same' +p160093 +tp160094 +a(g160091 +g160093 +S'year' +p160095 +tp160096 +a(g160093 +g160095 +S'that' +p160097 +tp160098 +a(g160095 +g160097 +S'napoleon' +p160099 +tp160100 +a(g160097 +g160099 +S'awarded' +p160101 +tp160102 +a(g160099 +g160101 +S'him' +p160103 +tp160104 +a(g160101 +g160103 +S'the' +p160105 +tp160106 +a(g160103 +g160105 +S'legion' +p160107 +tp160108 +a(g160105 +g160107 +S'of' +p160109 +tp160110 +a(g160107 +g160109 +S'honor.' +p160111 +tp160112 +a(g160109 +g160111 +S'unlike' +p160113 +tp160114 +a(g160111 +g160113 +S'most' +p160115 +tp160116 +a(g160113 +g160115 +S'other' +p160117 +tp160118 +a(g160115 +g160117 +S'painters' +p160119 +tp160120 +a(g160117 +g160119 +S'in' +p160121 +tp160122 +a(g160119 +g160121 +S'france,' +p160123 +tp160124 +a(g160121 +g160123 +S"prud'hon" +p160125 +tp160126 +a(g160123 +g160125 +S'did' +p160127 +tp160128 +a(g160125 +g160127 +S'not' +p160129 +tp160130 +a(g160127 +g160129 +S'fall' +p160131 +tp160132 +a(g160129 +g160131 +S'under' +p160133 +tp160134 +a(g160131 +g160133 +S'the' +p160135 +tp160136 +a(g160133 +g160135 +S'influence' +p160137 +tp160138 +a(g160135 +g160137 +S'of' +p160139 +tp160140 +a(g160137 +g160139 +S"david's" +p160141 +tp160142 +a(g160139 +g160141 +S'austere' +p160143 +tp160144 +a(g160141 +g160143 +S'style.' +p160145 +tp160146 +a(g160143 +g160145 +S'his' +p160147 +tp160148 +a(g160145 +g160147 +S'work,' +p160149 +tp160150 +a(g160147 +g160149 +S'by' +p160151 +tp160152 +a(g160149 +g160151 +S'contrast,' +p160153 +tp160154 +a(g160151 +g160153 +S'has' +p160155 +tp160156 +a(g160153 +g160155 +S'the' +p160157 +tp160158 +a(g160155 +g160157 +S'shadowy' +p160159 +tp160160 +a(g160157 +g160159 +S'softness' +p160161 +tp160162 +a(g160159 +g160161 +S'of' +p160163 +tp160164 +a(g160161 +g160163 +S'italian' +p160165 +tp160166 +a(g160163 +g160165 +S'renaissance' +p160167 +tp160168 +a(g160165 +g160167 +S'painters' +p160169 +tp160170 +a(g160167 +g160169 +S"prud'hon," +p160171 +tp160172 +a(g160169 +g160171 +S'his' +p160173 +tp160174 +a(g160171 +g160173 +S'life' +p160175 +tp160176 +a(g160173 +g160175 +S'marred' +p160177 +tp160178 +a(g160175 +g160177 +S'by' +p160179 +tp160180 +a(g160177 +g160179 +S'personal' +p160181 +tp160182 +a(g160179 +g160181 +S'tragedy,' +p160183 +tp160184 +a(g160181 +g160183 +S'was' +p160185 +tp160186 +a(g160183 +g160185 +S'passionately' +p160187 +tp160188 +a(g160185 +g160187 +S'admired' +p160189 +tp160190 +a(g160187 +g160189 +S'by' +p160191 +tp160192 +a(g160189 +g160191 +S'romantic' +p160193 +tp160194 +a(g160191 +g160193 +S'artists' +p160195 +tp160196 +a(g160193 +g160195 +S'of' +p160197 +tp160198 +a(g160195 +g160197 +S'the' +p160199 +tp160200 +a(g160197 +g160199 +S'following' +p160201 +tp160202 +a(g160199 +g160201 +S'generation' +p160203 +tp160204 +a(g160201 +g160203 +S'who' +p160205 +tp160206 +a(g160203 +g160205 +S'saw' +p160207 +tp160208 +a(g160205 +g160207 +S'in' +p160209 +tp160210 +a(g160207 +g160209 +S'his' +p160211 +tp160212 +a(g160209 +g160211 +S'work' +p160213 +tp160214 +a(g160211 +g160213 +S'an' +p160215 +tp160216 +a(g160213 +g160215 +S'alternative' +p160217 +tp160218 +a(g160215 +g160217 +S'to' +p160219 +tp160220 +a(g160217 +g160219 +S'the' +p160221 +tp160222 +a(g160219 +g160221 +S'saint' +p160223 +tp160224 +a(g160221 +g160223 +S'mary' +p160225 +tp160226 +a(g160223 +g160225 +S'salome' +p160227 +tp160228 +a(g160225 +g160227 +S'and' +p160229 +tp160230 +a(g160227 +g160229 +S'her' +p160231 +tp160232 +a(g160229 +g160231 +S'family' +p160233 +tp160234 +a(g160231 +g160233 +S'strigel,' +p160235 +tp160236 +a(g160233 +g160235 +S'who' +p160237 +tp160238 +a(g160235 +g160237 +S'worked' +p160239 +tp160240 +a(g160237 +g160239 +S'in' +p160241 +tp160242 +a(g160239 +g160241 +S'memmingen,' +p160243 +tp160244 +a(g160241 +g160243 +S'a' +p160245 +tp160246 +a(g160243 +g160245 +S'small' +p160247 +tp160248 +a(g160245 +g160247 +S'city' +p160249 +tp160250 +a(g160247 +g160249 +S'in' +p160251 +tp160252 +a(g160249 +g160251 +S'the' +p160253 +tp160254 +a(g160251 +g160253 +S'southern' +p160255 +tp160256 +a(g160253 +g160255 +S'german' +p160257 +tp160258 +a(g160255 +g160257 +S'province' +p160259 +tp160260 +a(g160257 +g160259 +S'of' +p160261 +tp160262 +a(g160259 +g160261 +S'bavaria,' +p160263 +tp160264 +a(g160261 +g160263 +S'makes' +p160265 +tp160266 +a(g160263 +g160265 +S'mary' +p160267 +tp160268 +a(g160265 +g160267 +S'salome' +p160269 +tp160270 +a(g160267 +g160269 +S'the' +p160271 +tp160272 +a(g160269 +g160271 +S'center' +p160273 +tp160274 +a(g160271 +g160273 +S'of' +p160275 +tp160276 +a(g160273 +g160275 +S'a' +p160277 +tp160278 +a(g160275 +g160277 +S'comfortable' +p160279 +tp160280 +a(g160277 +g160279 +S'domestic' +p160281 +tp160282 +a(g160279 +g160281 +S'scene.' +p160283 +tp160284 +a(g160281 +g160283 +S'her' +p160285 +tp160286 +a(g160283 +g160285 +S'father' +p160287 +tp160288 +a(g160285 +g160287 +S'salomas,' +p160289 +tp160290 +a(g160287 +g160289 +S'wearing' +p160291 +tp160292 +a(g160289 +g160291 +S'characteristic' +p160293 +tp160294 +a(g160291 +g160293 +S'jewish' +p160295 +tp160296 +a(g160293 +g160295 +S'headgear,' +p160297 +tp160298 +a(g160295 +g160297 +S'hovers' +p160299 +tp160300 +a(g160297 +g160299 +S'behind' +p160301 +tp160302 +a(g160299 +g160301 +S'her,' +p160303 +tp160304 +a(g160301 +g160303 +S'while' +p160305 +tp160306 +a(g160303 +g160305 +S'her' +p160307 +tp160308 +a(g160305 +g160307 +S'husband' +p160309 +tp160310 +a(g160307 +g160309 +S'zebedee' +p160311 +tp160312 +a(g160309 +g160311 +S'sits' +p160313 +tp160314 +a(g160311 +g160313 +S'beside' +p160315 +tp160316 +a(g160313 +g160315 +S'her.' +p160317 +tp160318 +a(g160315 +g160317 +S'their' +p160319 +tp160320 +a(g160317 +g160319 +S'two' +p160321 +tp160322 +a(g160319 +g160321 +S'small' +p160323 +tp160324 +a(g160321 +g160323 +S'sons' +p160325 +tp160326 +a(g160323 +g160325 +S'james' +p160327 +tp160328 +a(g160325 +g160327 +S'and' +p160329 +tp160330 +a(g160327 +g160329 +S'john' +p160331 +tp160332 +a(g160329 +g160331 +S'are' +p160333 +tp160334 +a(g160331 +g160333 +S'identifiable' +p160335 +tp160336 +a(g160333 +g160335 +S'by' +p160337 +tp160338 +a(g160335 +g160337 +S'the' +p160339 +tp160340 +a(g160337 +g160339 +S'names' +p160341 +tp160342 +a(g160339 +g160341 +S'inscribed' +p160343 +tp160344 +a(g160341 +g160343 +S'on' +p160345 +tp160346 +a(g160343 +g160345 +S'their' +p160347 +tp160348 +a(g160345 +g160347 +S'halos.' +p160349 +tp160350 +a(g160347 +g160349 +S'they' +p160351 +tp160352 +a(g160349 +g160351 +S'will' +p160353 +tp160354 +a(g160351 +g160353 +S'grow' +p160355 +tp160356 +a(g160353 +g160355 +S'up' +p160357 +tp160358 +a(g160355 +g160357 +S'to' +p160359 +tp160360 +a(g160357 +g160359 +S'be' +p160361 +tp160362 +a(g160359 +g160361 +S'disciples' +p160363 +tp160364 +a(g160361 +g160363 +S'of' +p160365 +tp160366 +a(g160363 +g160365 +S'christ,' +p160367 +tp160368 +a(g160365 +g160367 +S'and' +p160369 +tp160370 +a(g160367 +g160369 +S'indeed' +p160371 +tp160372 +a(g160369 +g160371 +S'saint' +p160373 +tp160374 +a(g160371 +g160373 +S'john' +p160375 +tp160376 +a(g160373 +g160375 +S'is' +p160377 +tp160378 +a(g160375 +g160377 +S'already' +p160379 +tp160380 +a(g160377 +g160379 +S'busy' +p160381 +tp160382 +a(g160379 +g160381 +S'writing' +p160383 +tp160384 +a(g160381 +g160383 +S'a' +p160385 +tp160386 +a(g160383 +g160385 +S'book' +p160387 +tp160388 +a(g160385 +g160387 +S'in' +p160389 +tp160390 +a(g160387 +g160389 +S'hebrew' +p160391 +tp160392 +a(g160389 +g160391 +S'like' +p160393 +tp160394 +a(g160391 +g160393 +S'characters,' +p160395 +tp160396 +a(g160393 +g160395 +S'foretelling' +p160397 +tp160398 +a(g160395 +g160397 +S'his' +p160399 +tp160400 +a(g160397 +g160399 +S'future' +p160401 +tp160402 +a(g160399 +g160401 +S'activity' +p160403 +tp160404 +a(g160401 +g160403 +S'as' +p160405 +tp160406 +a(g160403 +g160405 +S'one' +p160407 +tp160408 +a(g160405 +g160407 +S'of' +p160409 +tp160410 +a(g160407 +g160409 +S'the' +p160411 +tp160412 +a(g160409 +g160411 +S'four' +p160413 +tp160414 +a(g160411 +g160413 +S'authors' +p160415 +tp160416 +a(g160413 +g160415 +S'of' +p160417 +tp160418 +a(g160415 +g160417 +S'the' +p160419 +tp160420 +a(g160417 +g160419 +S'gospels.' +p160421 +tp160422 +a(g160419 +g160421 +S'this' +p160423 +tp160424 +a(g160421 +g160423 +S'painting,' +p160425 +tp160426 +a(g160423 +g160425 +S'a' +p160427 +tp160428 +a(g160425 +g160427 +S'compendium' +p160429 +tp160430 +a(g160427 +g160429 +S'of' +p160431 +tp160432 +a(g160429 +g160431 +S'motifs' +p160433 +tp160434 +a(g160431 +g160433 +S'vassallo' +p160435 +tp160436 +a(g160433 +g160435 +S'used' +p160437 +tp160438 +a(g160435 +g160437 +S'in' +p160439 +tp160440 +a(g160437 +g160439 +S'other' +p160441 +tp160442 +a(g160439 +g160441 +S'pictures,' +p160443 +tp160444 +a(g160441 +g160443 +S'can' +p160445 +tp160446 +a(g160443 +g160445 +S'be' +p160447 +tp160448 +a(g160445 +g160447 +S'seen,' +p160449 +tp160450 +a(g160447 +g160449 +S'and' +p160451 +tp160452 +a(g160449 +g160451 +S'was' +p160453 +tp160454 +a(g160451 +g160453 +S'perhaps' +p160455 +tp160456 +a(g160453 +g160455 +S'considered' +p160457 +tp160458 +a(g160455 +g160457 +S'by' +p160459 +tp160460 +a(g160457 +g160459 +S'the' +p160461 +tp160462 +a(g160459 +g160461 +S'artist' +p160463 +tp160464 +a(g160461 +g160463 +S'himself,' +p160465 +tp160466 +a(g160463 +g160465 +S'as' +p160467 +tp160468 +a(g160465 +g160467 +S'a' +p160469 +tp160470 +a(g160467 +g160469 +S'summing' +p160471 +tp160472 +a(g160469 +g160471 +S'up' +p160473 +tp160474 +a(g160471 +g160473 +S'of' +p160475 +tp160476 +a(g160473 +g160475 +S'his' +p160477 +tp160478 +a(g160475 +g160477 +S'achievements' +p160479 +tp160480 +a(g160477 +g160479 +S'as' +p160481 +tp160482 +a(g160479 +g160481 +S'a' +p160483 +tp160484 +a(g160481 +g160483 +S'still-life' +p160485 +tp160486 +a(g160483 +g160485 +S'artist.' +p160487 +tp160488 +a(g160485 +g160487 +S'each' +p160489 +tp160490 +a(g160487 +g160489 +S'object' +p160491 +tp160492 +a(g160489 +g160491 +S'has' +p160493 +tp160494 +a(g160491 +g160493 +S'the' +p160495 +tp160496 +a(g160493 +g160495 +S'same' +p160497 +tp160498 +a(g160495 +g160497 +S'uncompromising' +p160499 +tp160500 +a(g160497 +g160499 +S'conviction' +p160501 +tp160502 +a(g160499 +g160501 +S'of' +p160503 +tp160504 +a(g160501 +g160503 +S'reality.' +p160505 +tp160506 +a(g160503 +g160505 +S'they' +p160507 +tp160508 +a(g160505 +g160507 +S'are' +p160509 +tp160510 +a(g160507 +g160509 +S'massed' +p160511 +tp160512 +a(g160509 +g160511 +S'in' +p160513 +tp160514 +a(g160511 +g160513 +S'one' +p160515 +tp160516 +a(g160513 +g160515 +S'enormous' +p160517 +tp160518 +a(g160515 +g160517 +S'display,' +p160519 +tp160520 +a(g160517 +g160519 +S'but' +p160521 +tp160522 +a(g160519 +g160521 +S'vassallo' +p160523 +tp160524 +a(g160521 +g160523 +S'turned' +p160525 +tp160526 +a(g160523 +g160525 +S'an' +p160527 +tp160528 +a(g160525 +g160527 +S'acute' +p160529 +tp160530 +a(g160527 +g160529 +S'eye' +p160531 +tp160532 +a(g160529 +g160531 +S'on' +p160533 +tp160534 +a(g160531 +g160533 +S'each' +p160535 +tp160536 +a(g160533 +g160535 +S'individually.' +p160537 +tp160538 +a(g160535 +g160537 +S'visual' +p160539 +tp160540 +a(g160537 +g160539 +S'description' +p160541 +tp160542 +a(g160539 +g160541 +S'may' +p160543 +tp160544 +a(g160541 +g160543 +S'not,' +p160545 +tp160546 +a(g160543 +g160545 +S'however,' +p160547 +tp160548 +a(g160545 +g160547 +S'be' +p160549 +tp160550 +a(g160547 +g160549 +S'vassallo’s' +p160551 +tp160552 +a(g160549 +g160551 +S'only' +p160553 +tp160554 +a(g160551 +g160553 +S'motive.' +p160555 +tp160556 +a(g160553 +g160555 +S'scholars' +p160557 +tp160558 +a(g160555 +g160557 +S'have' +p160559 +tp160560 +a(g160557 +g160559 +S'been' +p160561 +tp160562 +a(g160559 +g160561 +S'tempted' +p160563 +tp160564 +a(g160561 +g160563 +S'to' +p160565 +tp160566 +a(g160563 +g160565 +S'find' +p160567 +tp160568 +a(g160565 +g160567 +S'a' +p160569 +tp160570 +a(g160567 +g160569 +S'symbolic' +p160571 +tp160572 +a(g160569 +g160571 +S'meaning,' +p160573 +tp160574 +a(g160571 +g160573 +S'pointing' +p160575 +tp160576 +a(g160573 +g160575 +S'to' +p160577 +tp160578 +a(g160575 +g160577 +S'abundance' +p160579 +tp160580 +a(g160577 +g160579 +S'or' +p160581 +tp160582 +a(g160579 +g160581 +S'perhaps' +p160583 +tp160584 +a(g160581 +g160583 +S'to' +p160585 +tp160586 +a(g160583 +g160585 +S'god’s' +p160587 +tp160588 +a(g160585 +g160587 +S'provision' +p160589 +tp160590 +a(g160587 +g160589 +S'for' +p160591 +tp160592 +a(g160589 +g160591 +S'men’s' +p160593 +tp160594 +a(g160591 +g160593 +S'needs,' +p160595 +tp160596 +a(g160593 +g160595 +S'both' +p160597 +tp160598 +a(g160595 +g160597 +S'physical' +p160599 +tp160600 +a(g160597 +g160599 +S'and' +p160601 +tp160602 +a(g160599 +g160601 +S'spiritual.' +p160603 +tp160604 +a(g160601 +g160603 +S'in' +p160605 +tp160606 +a(g160603 +g160605 +S'contemporary' +p160607 +tp160608 +a(g160605 +g160607 +S'dutch' +p160609 +tp160610 +a(g160607 +g160609 +S'still' +p160611 +tp160612 +a(g160609 +g160611 +S'lifes,' +p160613 +tp160614 +a(g160611 +g160613 +S'viewers' +p160615 +tp160616 +a(g160613 +g160615 +S'were' +p160617 +tp160618 +a(g160615 +g160617 +S'reminded' +p160619 +tp160620 +a(g160617 +g160619 +S'of' +p160621 +tp160622 +a(g160619 +g160621 +S'the' +p160623 +tp160624 +a(g160621 +g160623 +S'transience' +p160625 +tp160626 +a(g160623 +g160625 +S'of' +p160627 +tp160628 +a(g160625 +g160627 +S'wealth' +p160629 +tp160630 +a(g160627 +g160629 +S'and' +p160631 +tp160632 +a(g160629 +g160631 +S'life' +p160633 +tp160634 +a(g160631 +g160633 +S'itself' +p160635 +tp160636 +a(g160633 +g160635 +S'by' +p160637 +tp160638 +a(g160635 +g160637 +S'such' +p160639 +tp160640 +a(g160637 +g160639 +S'clues' +p160641 +tp160642 +a(g160639 +g160641 +S'as' +p160643 +tp160644 +a(g160641 +g160643 +S'vessels' +p160645 +tp160646 +a(g160643 +g160645 +S'that' +p160647 +tp160648 +a(g160645 +g160647 +S'were' +p160649 +tp160650 +a(g160647 +g160649 +S'tipped' +p160651 +tp160652 +a(g160649 +g160651 +S'over,' +p160653 +tp160654 +a(g160651 +g160653 +S'insects,' +p160655 +tp160656 +a(g160653 +g160655 +S'or' +p160657 +tp160658 +a(g160655 +g160657 +S'overripe' +p160659 +tp160660 +a(g160657 +g160659 +S'fruit.' +p160661 +tp160662 +a(g160659 +g160661 +S'we' +p160663 +tp160664 +a(g160661 +g160663 +S'do' +p160665 +tp160666 +a(g160663 +g160665 +S'not' +p160667 +tp160668 +a(g160665 +g160667 +S'find' +p160669 +tp160670 +a(g160667 +g160669 +S'these' +p160671 +tp160672 +a(g160669 +g160671 +S'signals' +p160673 +tp160674 +a(g160671 +g160673 +S'here,' +p160675 +tp160676 +a(g160673 +g160675 +S'however.' +p160677 +tp160678 +a(g160675 +g160677 +S'another' +p160679 +tp160680 +a(g160677 +g160679 +S'suggestion' +p160681 +tp160682 +a(g160679 +g160681 +S'sees' +p160683 +tp160684 +a(g160681 +g160683 +S'this' +p160685 +tp160686 +a(g160683 +g160685 +S'as' +p160687 +tp160688 +a(g160685 +g160687 +S'an' +p160689 +tp160690 +a(g160687 +g160689 +S'allegory' +p160691 +tp160692 +a(g160689 +g160691 +S'of' +p160693 +tp160694 +a(g160691 +g160693 +S'the' +p160695 +tp160696 +a(g160693 +g160695 +S'four' +p160697 +tp160698 +a(g160695 +g160697 +S'elements:' +p160699 +tp160700 +a(g160697 +g160699 +S'air,' +p160701 +tp160702 +a(g160699 +g160701 +S'water,' +p160703 +tp160704 +a(g160701 +g160703 +S'fire,' +p160705 +tp160706 +a(g160703 +g160705 +S'and' +p160707 +tp160708 +a(g160705 +g160707 +S'earth' +p160709 +tp160710 +a(g160707 +g160709 +S'are' +p160711 +tp160712 +a(g160709 +g160711 +S'each' +p160713 +tp160714 +a(g160711 +g160713 +S'represented.' +p160715 +tp160716 +a(g160713 +g160715 +S'the' +p160717 +tp160718 +a(g160715 +g160717 +S'bounty' +p160719 +tp160720 +a(g160717 +g160719 +S'of' +p160721 +tp160722 +a(g160719 +g160721 +S'food' +p160723 +tp160724 +a(g160721 +g160723 +S'includes' +p160725 +tp160726 +a(g160723 +g160725 +S'fruits' +p160727 +tp160728 +a(g160725 +g160727 +S'of' +p160729 +tp160730 +a(g160727 +g160729 +S'the' +p160731 +tp160732 +a(g160729 +g160731 +S'earth' +p160733 +tp160734 +a(g160731 +g160733 +S'and' +p160735 +tp160736 +a(g160733 +g160735 +S'sea' +p160737 +tp160738 +a(g160735 +g160737 +S'as' +p160739 +tp160740 +a(g160737 +g160739 +S'well' +p160741 +tp160742 +a(g160739 +g160741 +S'as' +p160743 +tp160744 +a(g160741 +g160743 +S'birds' +p160745 +tp160746 +a(g160743 +g160745 +S'trapped' +p160747 +tp160748 +a(g160745 +g160747 +S'from' +p160749 +tp160750 +a(g160747 +g160749 +S'the' +p160751 +tp160752 +a(g160749 +g160751 +S'sky.' +p160753 +tp160754 +a(g160751 +g160753 +S'and' +p160755 +tp160756 +a(g160753 +g160755 +S'in' +p160757 +tp160758 +a(g160755 +g160757 +S'the' +p160759 +tp160760 +a(g160757 +g160759 +S'background' +p160761 +tp160762 +a(g160759 +g160761 +S'is' +p160763 +tp160764 +a(g160761 +g160763 +S'the' +p160765 +tp160766 +a(g160763 +g160765 +S'flare' +p160767 +tp160768 +a(g160765 +g160767 +S'of' +p160769 +tp160770 +a(g160767 +g160769 +S'a' +p160771 +tp160772 +a(g160769 +g160771 +S'cooking' +p160773 +tp160774 +a(g160771 +g160773 +S'fire.' +p160775 +tp160776 +a(g160773 +g160775 +S'in' +p160777 +tp160778 +a(g160775 +g160777 +S'collectors’' +p160779 +tp160780 +a(g160777 +g160779 +S'cabinets,' +p160781 +tp160782 +a(g160779 +g160781 +S'such' +p160783 +tp160784 +a(g160781 +g160783 +S'allegorical' +p160785 +tp160786 +a(g160783 +g160785 +S'themes' +p160787 +tp160788 +a(g160785 +g160787 +S'often' +p160789 +tp160790 +a(g160787 +g160789 +S'provided' +p160791 +tp160792 +a(g160789 +g160791 +S'the' +p160793 +tp160794 +a(g160791 +g160793 +S'organizational' +p160795 +tp160796 +a(g160793 +g160795 +S'principle' +p160797 +tp160798 +a(g160795 +g160797 +S'for' +p160799 +tp160800 +a(g160797 +g160799 +S'the' +p160801 +tp160802 +a(g160799 +g160801 +S'display' +p160803 +tp160804 +a(g160801 +g160803 +S'of' +p160805 +tp160806 +a(g160803 +g160805 +S'wonders' +p160807 +tp160808 +a(g160805 +g160807 +S'like' +p160809 +tp160810 +a(g160807 +g160809 +S'fossils' +p160811 +tp160812 +a(g160809 +g160811 +S'and' +p160813 +tp160814 +a(g160811 +g160813 +S'minerals.' +p160815 +tp160816 +a(g160813 +g160815 +S'existence' +p160817 +tp160818 +a(g160815 +g160817 +S'of' +p160819 +tp160820 +a(g160817 +g160819 +S'these' +p160821 +tp160822 +a(g160819 +g160821 +S'collections,' +p160823 +tp160824 +a(g160821 +g160823 +S'in' +p160825 +tp160826 +a(g160823 +g160825 +S'fact,' +p160827 +tp160828 +a(g160825 +g160827 +S'helped' +p160829 +tp160830 +a(g160827 +g160829 +S'create' +p160831 +tp160832 +a(g160829 +g160831 +S'a' +p160833 +tp160834 +a(g160831 +g160833 +S'demand' +p160835 +tp160836 +a(g160833 +g160835 +S'for' +p160837 +tp160838 +a(g160835 +g160837 +S'still-life' +p160839 +tp160840 +a(g160837 +g160839 +S'painting.' +p160841 +tp160842 +a(g160839 +g160841 +S'the' +p160843 +tp160844 +a(g160841 +g160843 +S'costumes' +p160845 +tp160846 +a(g160843 +g160845 +S'and' +p160847 +tp160848 +a(g160845 +g160847 +S'setting' +p160849 +tp160850 +a(g160847 +g160849 +S'here' +p160851 +tp160852 +a(g160849 +g160851 +S'suggest' +p160853 +tp160854 +a(g160851 +g160853 +S'a' +p160855 +tp160856 +a(g160853 +g160855 +S'masquerade,' +p160857 +tp160858 +a(g160855 +g160857 +S'perhaps' +p160859 +tp160860 +a(g160857 +g160859 +S'in' +p160861 +tp160862 +a(g160859 +g160861 +S'venice.' +p160863 +tp160864 +a(g160861 +g160863 +S'like' +p160865 +tp160866 +a(g160863 +g160865 +S'the' +p160867 +tp160868 +a(g160865 +g160867 +S'elegant' +p160869 +tp160870 +a(g160867 +g160869 +S'and' +p160871 +tp160872 +a(g160869 +g160871 +S'enigmatic' +p160873 +tp160874 +a(g160871 +g160873 +S'trio' +p160875 +tp160876 +a(g160873 +g160875 +S'depicted,' +p160877 +tp160878 +a(g160875 +g160877 +S'however,' +p160879 +tp160880 +a(g160877 +g160879 +S'the' +p160881 +tp160882 +a(g160879 +g160881 +S'painting' +p160883 +tp160884 +a(g160881 +g160883 +S'remains' +p160885 +tp160886 +a(g160883 +g160885 +S'mysterious.' +p160887 +tp160888 +a(g160885 +g160887 +S'it' +p160889 +tp160890 +a(g160887 +g160889 +S'has' +p160891 +tp160892 +a(g160889 +g160891 +S'been' +p160893 +tp160894 +a(g160891 +g160893 +S'attributed' +p160895 +tp160896 +a(g160893 +g160895 +S'to' +p160897 +tp160898 +a(g160895 +g160897 +S'many' +p160899 +tp160900 +a(g160897 +g160899 +S'different' +p160901 +tp160902 +a(g160899 +g160901 +S'artists,' +p160903 +tp160904 +a(g160901 +g160903 +S'most' +p160905 +tp160906 +a(g160903 +g160905 +S'recently' +p160907 +tp160908 +a(g160905 +g160907 +S'le' +p160909 +tp160910 +a(g160907 +g160909 +S'lorrain,' +p160911 +tp160912 +a(g160909 +g160911 +S'a' +p160913 +tp160914 +a(g160911 +g160913 +S'little-known' +p160915 +tp160916 +a(g160913 +g160915 +S'artist' +p160917 +tp160918 +a(g160915 +g160917 +S'who' +p160919 +tp160920 +a(g160917 +g160919 +S'spent' +p160921 +tp160922 +a(g160919 +g160921 +S'nine' +p160923 +tp160924 +a(g160921 +g160923 +S'years' +p160925 +tp160926 +a(g160923 +g160925 +S'in' +p160927 +tp160928 +a(g160925 +g160927 +S'italy' +p160929 +tp160930 +a(g160927 +g160929 +S'and' +p160931 +tp160932 +a(g160929 +g160931 +S'was' +p160933 +tp160934 +a(g160931 +g160933 +S'recognized' +p160935 +tp160936 +a(g160933 +g160935 +S'primarily' +p160937 +tp160938 +a(g160935 +g160937 +S'as' +p160939 +tp160940 +a(g160937 +g160939 +S'a' +p160941 +tp160942 +a(g160939 +g160941 +S'"painter' +p160943 +tp160944 +a(g160941 +g160943 +S'of' +p160945 +tp160946 +a(g160943 +g160945 +S'ruins."' +p160947 +tp160948 +a(g160945 +g160947 +S'le' +p160949 +tp160950 +a(g160947 +g160949 +S'lorrain' +p160951 +tp160952 +a(g160949 +g160951 +S'also' +p160953 +tp160954 +a(g160951 +g160953 +S'designed' +p160955 +tp160956 +a(g160953 +g160955 +S'interiors,' +p160957 +tp160958 +a(g160955 +g160957 +S'furniture' +p160959 +tp160960 +a(g160957 +g160959 +S'(including' +p160961 +tp160962 +a(g160959 +g160961 +S'a' +p160963 +tp160964 +a(g160961 +g160963 +S'neoclassical' +p160965 +tp160966 +a(g160963 +g160965 +S'suite' +p160967 +tp160968 +a(g160965 +g160967 +S'in' +p160969 +tp160970 +a(g160967 +g160969 +S'a' +p160971 +tp160972 +a(g160969 +g160971 +S'after' +p160973 +tp160974 +a(g160971 +g160973 +S'illness' +p160975 +tp160976 +a(g160973 +g160975 +S'incapacitated' +p160977 +tp160978 +a(g160975 +g160977 +S'his' +p160979 +tp160980 +a(g160977 +g160979 +S'older' +p160981 +tp160982 +a(g160979 +g160981 +S'brother' +p160983 +tp160984 +a(g160981 +g160983 +S'leopold' +p160985 +tp160986 +a(g160983 +g160985 +S'gould' +p160987 +tp160988 +a(g160985 +g160987 +S'seyffert' +p160989 +tp160990 +a(g160987 +g160989 +S'depicted' +p160991 +tp160992 +a(g160989 +g160991 +S'both' +p160993 +tp160994 +a(g160991 +g160993 +S'kress' +p160995 +tp160996 +a(g160993 +g160995 +S'brothers' +p160997 +tp160998 +a(g160995 +g160997 +S'seated' +p160999 +tp161000 +a(g160997 +g160999 +S'in' +p161001 +tp161002 +a(g160999 +g161001 +S'italian' +p161003 +tp161004 +a(g161001 +g161003 +S'renaissance-style' +p161005 +tp161006 +a(g161003 +g161005 +S'armchairs,' +p161007 +tp161008 +a(g161005 +g161007 +S'symbolizing' +p161009 +tp161010 +a(g161007 +g161009 +S'their' +p161011 +tp161012 +a(g161009 +g161011 +S'artistic' +p161013 +tp161014 +a(g161011 +g161013 +S'interests.' +p161015 +tp161016 +a(g161013 +g161015 +S'among' +p161017 +tp161018 +a(g161015 +g161017 +S'the' +p161019 +tp161020 +a(g161017 +g161019 +S'national' +p161021 +tp161022 +a(g161019 +g161021 +S"gallery's" +p161023 +tp161024 +a(g161021 +g161023 +S'earliest' +p161025 +tp161026 +a(g161023 +g161025 +S'life-size' +p161027 +tp161028 +a(g161025 +g161027 +S'sculptures' +p161029 +tp161030 +a(g161027 +g161029 +S'(and' +p161031 +tp161032 +a(g161029 +g161031 +S'few' +p161033 +tp161034 +a(g161031 +g161033 +S'medieval' +p161035 +tp161036 +a(g161033 +g161035 +S'works' +p161037 +tp161038 +a(g161035 +g161037 +S'in' +p161039 +tp161040 +a(g161037 +g161039 +S'wood)' +p161041 +tp161042 +a(g161039 +g161041 +S'is' +p161043 +tp161044 +a(g161041 +g161043 +S'this' +p161045 +tp161046 +a(g161043 +g161045 +S'figure' +p161047 +tp161048 +a(g161045 +g161047 +S'and' +p161049 +tp161050 +a(g161047 +g161049 +S'a' +p161051 +tp161052 +a(g161049 +g161051 +S'companion' +p161053 +tp161054 +a(g161051 +g161053 +S'work,' +p161055 +tp161056 +a(g161053 +g161055 +S'these' +p161057 +tp161058 +a(g161055 +g161057 +S'wooden' +p161059 +tp161060 +a(g161057 +g161059 +S'figures' +p161061 +tp161062 +a(g161059 +g161061 +S'are' +p161063 +tp161064 +a(g161061 +g161063 +S'copied' +p161065 +tp161066 +a(g161063 +g161065 +S'from' +p161067 +tp161068 +a(g161065 +g161067 +S'a' +p161069 +tp161070 +a(g161067 +g161069 +S'pair' +p161071 +tp161072 +a(g161069 +g161071 +S'of' +p161073 +tp161074 +a(g161071 +g161073 +S'fourteenth-century' +p161075 +tp161076 +a(g161073 +g161075 +S'marble' +p161077 +tp161078 +a(g161075 +g161077 +S'statues' +p161079 +tp161080 +a(g161077 +g161079 +S'in' +p161081 +tp161082 +a(g161079 +g161081 +S'the' +p161083 +tp161084 +a(g161081 +g161083 +S'church' +p161085 +tp161086 +a(g161083 +g161085 +S'of' +p161087 +tp161088 +a(g161085 +g161087 +S'santa' +p161089 +tp161090 +a(g161087 +g161089 +S'caterina' +p161091 +tp161092 +a(g161089 +g161091 +S'in' +p161093 +tp161094 +a(g161091 +g161093 +S'pisa,' +p161095 +tp161096 +a(g161093 +g161095 +S'italy.' +p161097 +tp161098 +a(g161095 +g161097 +S'carbon-14' +p161099 +tp161100 +a(g161097 +g161099 +S'tests' +p161101 +tp161102 +a(g161099 +g161101 +S'on' +p161103 +tp161104 +a(g161101 +g161103 +S'samples' +p161105 +tp161106 +a(g161103 +g161105 +S'of' +p161107 +tp161108 +a(g161105 +g161107 +S'the' +p161109 +tp161110 +a(g161107 +g161109 +S'wood' +p161111 +tp161112 +a(g161109 +g161111 +S'have' +p161113 +tp161114 +a(g161111 +g161113 +S'indicated' +p161115 +tp161116 +a(g161113 +g161115 +S'that' +p161117 +tp161118 +a(g161115 +g161117 +S'each' +p161119 +tp161120 +a(g161117 +g161119 +S'piece' +p161121 +tp161122 +a(g161119 +g161121 +S'was' +p161123 +tp161124 +a(g161121 +g161123 +S'carved' +p161125 +tp161126 +a(g161123 +g161125 +S'from' +p161127 +tp161128 +a(g161125 +g161127 +S'a' +p161129 +tp161130 +a(g161127 +g161129 +S'tree' +p161131 +tp161132 +a(g161129 +g161131 +S'cut' +p161133 +tp161134 +a(g161131 +g161133 +S'down' +p161135 +tp161136 +a(g161133 +g161135 +S'at' +p161137 +tp161138 +a(g161135 +g161137 +S'least' +p161139 +tp161140 +a(g161137 +g161139 +S'six' +p161141 +tp161142 +a(g161139 +g161141 +S'hundred' +p161143 +tp161144 +a(g161141 +g161143 +S'years' +p161145 +tp161146 +a(g161143 +g161145 +S'ago.' +p161147 +tp161148 +a(g161145 +g161147 +S'such' +p161149 +tp161150 +a(g161147 +g161149 +S'annunciation' +p161151 +tp161152 +a(g161149 +g161151 +S'pairs' +p161153 +tp161154 +a(g161151 +g161153 +S'would' +p161155 +tp161156 +a(g161153 +g161155 +S'perhaps' +p161157 +tp161158 +a(g161155 +g161157 +S'have' +p161159 +tp161160 +a(g161157 +g161159 +S'flanked' +p161161 +tp161162 +a(g161159 +g161161 +S'the' +p161163 +tp161164 +a(g161161 +g161163 +S'entrance' +p161165 +tp161166 +a(g161163 +g161165 +S'to' +p161167 +tp161168 +a(g161165 +g161167 +S'the' +p161169 +tp161170 +a(g161167 +g161169 +S'high-altar' +p161171 +tp161172 +a(g161169 +g161171 +S'area' +p161173 +tp161174 +a(g161171 +g161173 +S'of' +p161175 +tp161176 +a(g161173 +g161175 +S'a' +p161177 +tp161178 +a(g161175 +g161177 +S'church' +p161179 +tp161180 +a(g161177 +g161179 +S'or' +p161181 +tp161182 +a(g161179 +g161181 +S'the' +p161183 +tp161184 +a(g161181 +g161183 +S'altar' +p161185 +tp161186 +a(g161183 +g161185 +S'itself.' +p161187 +tp161188 +a(g161185 +g161187 +S'while' +p161189 +tp161190 +a(g161187 +g161189 +S'they' +p161191 +tp161192 +a(g161189 +g161191 +S'might' +p161193 +tp161194 +a(g161191 +g161193 +S'also' +p161195 +tp161196 +a(g161193 +g161195 +S'have' +p161197 +tp161198 +a(g161195 +g161197 +S'been' +p161199 +tp161200 +a(g161197 +g161199 +S'set' +p161201 +tp161202 +a(g161199 +g161201 +S'into' +p161203 +tp161204 +a(g161201 +g161203 +S'tabernacles,' +p161205 +tp161206 +a(g161203 +g161205 +S'the' +p161207 +tp161208 +a(g161205 +g161207 +S'carving' +p161209 +tp161210 +a(g161207 +g161209 +S'completely' +p161211 +tp161212 +a(g161209 +g161211 +S'in' +p161213 +tp161214 +a(g161211 +g161213 +S'the' +p161215 +tp161216 +a(g161213 +g161215 +S'round' +p161217 +tp161218 +a(g161215 +g161217 +S'suggests' +p161219 +tp161220 +a(g161217 +g161219 +S'a' +p161221 +tp161222 +a(g161219 +g161221 +S'position' +p161223 +tp161224 +a(g161221 +g161223 +S'in' +p161225 +tp161226 +a(g161223 +g161225 +S'which' +p161227 +tp161228 +a(g161225 +g161227 +S'viewers' +p161229 +tp161230 +a(g161227 +g161229 +S'could' +p161231 +tp161232 +a(g161229 +g161231 +S'move' +p161233 +tp161234 +a(g161231 +g161233 +S'around' +p161235 +tp161236 +a(g161233 +g161235 +S'them.' +p161237 +tp161238 +a(g161235 +g161237 +S'their' +p161239 +tp161240 +a(g161237 +g161239 +S'surfaces' +p161241 +tp161242 +a(g161239 +g161241 +S'were' +p161243 +tp161244 +a(g161241 +g161243 +S'once' +p161245 +tp161246 +a(g161243 +g161245 +S'completely' +p161247 +tp161248 +a(g161245 +g161247 +S'polychromed,' +p161249 +tp161250 +a(g161247 +g161249 +S'and' +p161251 +tp161252 +a(g161249 +g161251 +S'traces' +p161253 +tp161254 +a(g161251 +g161253 +S'of' +p161255 +tp161256 +a(g161253 +g161255 +S'the' +p161257 +tp161258 +a(g161255 +g161257 +S'colors' +p161259 +tp161260 +a(g161257 +g161259 +S'remain' +p161261 +tp161262 +a(g161259 +g161261 +S'--' +p161263 +tp161264 +a(g161261 +g161263 +S'red,' +p161265 +tp161266 +a(g161263 +g161265 +S'blue,' +p161267 +tp161268 +a(g161265 +g161267 +S'green,' +p161269 +tp161270 +a(g161267 +g161269 +S'and' +p161271 +tp161272 +a(g161269 +g161271 +S'a' +p161273 +tp161274 +a(g161271 +g161273 +S'red-and-gilt' +p161275 +tp161276 +a(g161273 +g161275 +S'pattern' +p161277 +tp161278 +a(g161275 +g161277 +S'on' +p161279 +tp161280 +a(g161277 +g161279 +S'the' +p161281 +tp161282 +a(g161279 +g161281 +S'borders' +p161283 +tp161284 +a(g161281 +g161283 +S'of' +p161285 +tp161286 +a(g161283 +g161285 +S'the' +p161287 +tp161288 +a(g161285 +g161287 +S'mantles.' +p161289 +tp161290 +a(g161287 +g161289 +S'among' +p161291 +tp161292 +a(g161289 +g161291 +S'the' +p161293 +tp161294 +a(g161291 +g161293 +S'national' +p161295 +tp161296 +a(g161293 +g161295 +S"gallery's" +p161297 +tp161298 +a(g161295 +g161297 +S'earliest' +p161299 +tp161300 +a(g161297 +g161299 +S'life-size' +p161301 +tp161302 +a(g161299 +g161301 +S'sculptures' +p161303 +tp161304 +a(g161301 +g161303 +S'(and' +p161305 +tp161306 +a(g161303 +g161305 +S'few' +p161307 +tp161308 +a(g161305 +g161307 +S'medieval' +p161309 +tp161310 +a(g161307 +g161309 +S'works' +p161311 +tp161312 +a(g161309 +g161311 +S'in' +p161313 +tp161314 +a(g161311 +g161313 +S'wood)' +p161315 +tp161316 +a(g161313 +g161315 +S'is' +p161317 +tp161318 +a(g161315 +g161317 +S'this' +p161319 +tp161320 +a(g161317 +g161319 +S'figure' +p161321 +tp161322 +a(g161319 +g161321 +S'and' +p161323 +tp161324 +a(g161321 +g161323 +S'a' +p161325 +tp161326 +a(g161323 +g161325 +S'companion' +p161327 +tp161328 +a(g161325 +g161327 +S'work,' +p161329 +tp161330 +a(g161327 +g161329 +S'these' +p161331 +tp161332 +a(g161329 +g161331 +S'wooden' +p161333 +tp161334 +a(g161331 +g161333 +S'figures' +p161335 +tp161336 +a(g161333 +g161335 +S'are' +p161337 +tp161338 +a(g161335 +g161337 +S'copied' +p161339 +tp161340 +a(g161337 +g161339 +S'from' +p161341 +tp161342 +a(g161339 +g161341 +S'a' +p161343 +tp161344 +a(g161341 +g161343 +S'pair' +p161345 +tp161346 +a(g161343 +g161345 +S'of' +p161347 +tp161348 +a(g161345 +g161347 +S'fourteenth-century' +p161349 +tp161350 +a(g161347 +g161349 +S'marble' +p161351 +tp161352 +a(g161349 +g161351 +S'statues' +p161353 +tp161354 +a(g161351 +g161353 +S'in' +p161355 +tp161356 +a(g161353 +g161355 +S'the' +p161357 +tp161358 +a(g161355 +g161357 +S'church' +p161359 +tp161360 +a(g161357 +g161359 +S'of' +p161361 +tp161362 +a(g161359 +g161361 +S'santa' +p161363 +tp161364 +a(g161361 +g161363 +S'caterina' +p161365 +tp161366 +a(g161363 +g161365 +S'in' +p161367 +tp161368 +a(g161365 +g161367 +S'pisa,' +p161369 +tp161370 +a(g161367 +g161369 +S'italy.' +p161371 +tp161372 +a(g161369 +g161371 +S'carbon-14' +p161373 +tp161374 +a(g161371 +g161373 +S'tests' +p161375 +tp161376 +a(g161373 +g161375 +S'on' +p161377 +tp161378 +a(g161375 +g161377 +S'samples' +p161379 +tp161380 +a(g161377 +g161379 +S'of' +p161381 +tp161382 +a(g161379 +g161381 +S'the' +p161383 +tp161384 +a(g161381 +g161383 +S'wood' +p161385 +tp161386 +a(g161383 +g161385 +S'have' +p161387 +tp161388 +a(g161385 +g161387 +S'indicated' +p161389 +tp161390 +a(g161387 +g161389 +S'that' +p161391 +tp161392 +a(g161389 +g161391 +S'each' +p161393 +tp161394 +a(g161391 +g161393 +S'piece' +p161395 +tp161396 +a(g161393 +g161395 +S'was' +p161397 +tp161398 +a(g161395 +g161397 +S'carved' +p161399 +tp161400 +a(g161397 +g161399 +S'from' +p161401 +tp161402 +a(g161399 +g161401 +S'a' +p161403 +tp161404 +a(g161401 +g161403 +S'tree' +p161405 +tp161406 +a(g161403 +g161405 +S'cut' +p161407 +tp161408 +a(g161405 +g161407 +S'down' +p161409 +tp161410 +a(g161407 +g161409 +S'at' +p161411 +tp161412 +a(g161409 +g161411 +S'least' +p161413 +tp161414 +a(g161411 +g161413 +S'six' +p161415 +tp161416 +a(g161413 +g161415 +S'hundred' +p161417 +tp161418 +a(g161415 +g161417 +S'years' +p161419 +tp161420 +a(g161417 +g161419 +S'ago.' +p161421 +tp161422 +a(g161419 +g161421 +S'such' +p161423 +tp161424 +a(g161421 +g161423 +S'annunciation' +p161425 +tp161426 +a(g161423 +g161425 +S'pairs' +p161427 +tp161428 +a(g161425 +g161427 +S'would' +p161429 +tp161430 +a(g161427 +g161429 +S'perhaps' +p161431 +tp161432 +a(g161429 +g161431 +S'have' +p161433 +tp161434 +a(g161431 +g161433 +S'flanked' +p161435 +tp161436 +a(g161433 +g161435 +S'the' +p161437 +tp161438 +a(g161435 +g161437 +S'entrance' +p161439 +tp161440 +a(g161437 +g161439 +S'to' +p161441 +tp161442 +a(g161439 +g161441 +S'the' +p161443 +tp161444 +a(g161441 +g161443 +S'high-altar' +p161445 +tp161446 +a(g161443 +g161445 +S'area' +p161447 +tp161448 +a(g161445 +g161447 +S'of' +p161449 +tp161450 +a(g161447 +g161449 +S'a' +p161451 +tp161452 +a(g161449 +g161451 +S'church' +p161453 +tp161454 +a(g161451 +g161453 +S'or' +p161455 +tp161456 +a(g161453 +g161455 +S'the' +p161457 +tp161458 +a(g161455 +g161457 +S'altar' +p161459 +tp161460 +a(g161457 +g161459 +S'itself.' +p161461 +tp161462 +a(g161459 +g161461 +S'while' +p161463 +tp161464 +a(g161461 +g161463 +S'they' +p161465 +tp161466 +a(g161463 +g161465 +S'might' +p161467 +tp161468 +a(g161465 +g161467 +S'also' +p161469 +tp161470 +a(g161467 +g161469 +S'have' +p161471 +tp161472 +a(g161469 +g161471 +S'been' +p161473 +tp161474 +a(g161471 +g161473 +S'set' +p161475 +tp161476 +a(g161473 +g161475 +S'into' +p161477 +tp161478 +a(g161475 +g161477 +S'tabernacles,' +p161479 +tp161480 +a(g161477 +g161479 +S'the' +p161481 +tp161482 +a(g161479 +g161481 +S'carving' +p161483 +tp161484 +a(g161481 +g161483 +S'completely' +p161485 +tp161486 +a(g161483 +g161485 +S'in' +p161487 +tp161488 +a(g161485 +g161487 +S'the' +p161489 +tp161490 +a(g161487 +g161489 +S'round' +p161491 +tp161492 +a(g161489 +g161491 +S'suggests' +p161493 +tp161494 +a(g161491 +g161493 +S'a' +p161495 +tp161496 +a(g161493 +g161495 +S'position' +p161497 +tp161498 +a(g161495 +g161497 +S'in' +p161499 +tp161500 +a(g161497 +g161499 +S'which' +p161501 +tp161502 +a(g161499 +g161501 +S'viewers' +p161503 +tp161504 +a(g161501 +g161503 +S'could' +p161505 +tp161506 +a(g161503 +g161505 +S'move' +p161507 +tp161508 +a(g161505 +g161507 +S'around' +p161509 +tp161510 +a(g161507 +g161509 +S'them.' +p161511 +tp161512 +a(g161509 +g161511 +S'their' +p161513 +tp161514 +a(g161511 +g161513 +S'surfaces' +p161515 +tp161516 +a(g161513 +g161515 +S'were' +p161517 +tp161518 +a(g161515 +g161517 +S'once' +p161519 +tp161520 +a(g161517 +g161519 +S'completely' +p161521 +tp161522 +a(g161519 +g161521 +S'polychromed,' +p161523 +tp161524 +a(g161521 +g161523 +S'and' +p161525 +tp161526 +a(g161523 +g161525 +S'traces' +p161527 +tp161528 +a(g161525 +g161527 +S'of' +p161529 +tp161530 +a(g161527 +g161529 +S'the' +p161531 +tp161532 +a(g161529 +g161531 +S'colors' +p161533 +tp161534 +a(g161531 +g161533 +S'remain' +p161535 +tp161536 +a(g161533 +g161535 +S'--' +p161537 +tp161538 +a(g161535 +g161537 +S'red,' +p161539 +tp161540 +a(g161537 +g161539 +S'blue,' +p161541 +tp161542 +a(g161539 +g161541 +S'green,' +p161543 +tp161544 +a(g161541 +g161543 +S'and' +p161545 +tp161546 +a(g161543 +g161545 +S'a' +p161547 +tp161548 +a(g161545 +g161547 +S'red-and-gilt' +p161549 +tp161550 +a(g161547 +g161549 +S'pattern' +p161551 +tp161552 +a(g161549 +g161551 +S'on' +p161553 +tp161554 +a(g161551 +g161553 +S'the' +p161555 +tp161556 +a(g161553 +g161555 +S'borders' +p161557 +tp161558 +a(g161555 +g161557 +S'of' +p161559 +tp161560 +a(g161557 +g161559 +S'the' +p161561 +tp161562 +a(g161559 +g161561 +S'mantles.' +p161563 +tp161564 +a(g161561 +g161563 +S'the' +p161565 +tp161566 +a(g161563 +g161565 +S'sternly' +p161567 +tp161568 +a(g161565 +g161567 +S'reserved' +p161569 +tp161570 +a(g161567 +g161569 +S'expression' +p161571 +tp161572 +a(g161569 +g161571 +S'of' +p161573 +tp161574 +a(g161571 +g161573 +S'this' +p161575 +tp161576 +a(g161573 +g161575 +S'portrait' +p161577 +tp161578 +a(g161575 +g161577 +S'bust' +p161579 +tp161580 +a(g161577 +g161579 +S'may' +p161581 +tp161582 +a(g161579 +g161581 +S'come' +p161583 +tp161584 +a(g161581 +g161583 +S'as' +p161585 +tp161586 +a(g161583 +g161585 +S'a' +p161587 +tp161588 +a(g161585 +g161587 +S'surprise' +p161589 +tp161590 +a(g161587 +g161589 +S'in' +p161591 +tp161592 +a(g161589 +g161591 +S'a' +p161593 +tp161594 +a(g161591 +g161593 +S'work' +p161595 +tp161596 +a(g161593 +g161595 +S'of' +p161597 +tp161598 +a(g161595 +g161597 +S'the' +p161599 +tp161600 +a(g161597 +g161599 +S'great' +p161601 +tp161602 +a(g161599 +g161601 +S'baroque' +p161603 +tp161604 +a(g161601 +g161603 +S'sculptor' +p161605 +tp161606 +a(g161603 +g161605 +S'and' +p161607 +tp161608 +a(g161605 +g161607 +S'architect' +p161609 +tp161610 +a(g161607 +g161609 +S'bernini.' +p161611 +tp161612 +a(g161609 +g161611 +S'the' +p161613 +tp161614 +a(g161611 +g161613 +S'restrained' +p161615 +tp161616 +a(g161613 +g161615 +S'treatment' +p161617 +tp161618 +a(g161615 +g161617 +S'must' +p161619 +tp161620 +a(g161617 +g161619 +S'owe' +p161621 +tp161622 +a(g161619 +g161621 +S'something' +p161623 +tp161624 +a(g161621 +g161623 +S'to' +p161625 +tp161626 +a(g161623 +g161625 +S'the' +p161627 +tp161628 +a(g161625 +g161627 +S'fact' +p161629 +tp161630 +a(g161627 +g161629 +S'that' +p161631 +tp161632 +a(g161629 +g161631 +S'the' +p161633 +tp161634 +a(g161631 +g161633 +S'sculptor' +p161635 +tp161636 +a(g161633 +g161635 +S'was' +p161637 +tp161638 +a(g161635 +g161637 +S'working' +p161639 +tp161640 +a(g161637 +g161639 +S'not' +p161641 +tp161642 +a(g161639 +g161641 +S'from' +p161643 +tp161644 +a(g161641 +g161643 +S'a' +p161645 +tp161646 +a(g161643 +g161645 +S'living' +p161647 +tp161648 +a(g161645 +g161647 +S'subject' +p161649 +tp161650 +a(g161647 +g161649 +S'but' +p161651 +tp161652 +a(g161649 +g161651 +S'from' +p161653 +tp161654 +a(g161651 +g161653 +S'the' +p161655 +tp161656 +a(g161653 +g161655 +S'painted' +p161657 +tp161658 +a(g161655 +g161657 +S'portrait' +p161659 +tp161660 +a(g161657 +g161659 +S'of' +p161661 +tp161662 +a(g161659 +g161661 +S'a' +p161663 +tp161664 +a(g161661 +g161663 +S'man' +p161665 +tp161666 +a(g161663 +g161665 +S'who' +p161667 +tp161668 +a(g161665 +g161667 +S'had' +p161669 +tp161670 +a(g161667 +g161669 +S'died' +p161671 +tp161672 +a(g161669 +g161671 +S'in' +p161673 +tp161674 +a(g161671 +g161673 +S'1600,' +p161675 +tp161676 +a(g161673 +g161675 +S'when' +p161677 +tp161678 +a(g161675 +g161677 +S'bernini' +p161679 +tp161680 +a(g161677 +g161679 +S'was' +p161681 +tp161682 +a(g161679 +g161681 +S'two' +p161683 +tp161684 +a(g161681 +g161683 +S'years' +p161685 +tp161686 +a(g161683 +g161685 +S'old.' +p161687 +tp161688 +a(g161685 +g161687 +S'around' +p161689 +tp161690 +a(g161687 +g161689 +S'1623' +p161691 +tp161692 +a(g161689 +g161691 +S"bernini's" +p161693 +tp161694 +a(g161691 +g161693 +S'good' +p161695 +tp161696 +a(g161693 +g161695 +S'friend' +p161697 +tp161698 +a(g161695 +g161697 +S'maffeo' +p161699 +tp161700 +a(g161697 +g161699 +S'barberini,' +p161701 +tp161702 +a(g161699 +g161701 +S'the' +p161703 +tp161704 +a(g161701 +g161703 +S'newly' +p161705 +tp161706 +a(g161703 +g161705 +S'elected' +p161707 +tp161708 +a(g161705 +g161707 +S'pope' +p161709 +tp161710 +a(g161707 +g161709 +S'urban' +p161711 +tp161712 +a(g161709 +g161711 +S'viii,' +p161713 +tp161714 +a(g161711 +g161713 +S'commissioned' +p161715 +tp161716 +a(g161713 +g161715 +S'busts' +p161717 +tp161718 +a(g161715 +g161717 +S'of' +p161719 +tp161720 +a(g161717 +g161719 +S'his' +p161721 +tp161722 +a(g161719 +g161721 +S'family,' +p161723 +tp161724 +a(g161721 +g161723 +S'including' +p161725 +tp161726 +a(g161723 +g161725 +S'this' +p161727 +tp161728 +a(g161725 +g161727 +S'beloved' +p161729 +tp161730 +a(g161727 +g161729 +S'uncle.' +p161731 +tp161732 +a(g161729 +g161731 +S'with' +p161733 +tp161734 +a(g161731 +g161733 +S'the' +p161735 +tp161736 +a(g161733 +g161735 +S'needs' +p161737 +tp161738 +a(g161735 +g161737 +S'of' +p161739 +tp161740 +a(g161737 +g161739 +S'his' +p161741 +tp161742 +a(g161739 +g161741 +S'patron' +p161743 +tp161744 +a(g161741 +g161743 +S'in' +p161745 +tp161746 +a(g161743 +g161745 +S'mind,' +p161747 +tp161748 +a(g161745 +g161747 +S'bernini' +p161749 +tp161750 +a(g161747 +g161749 +S'created' +p161751 +tp161752 +a(g161749 +g161751 +S'a' +p161753 +tp161754 +a(g161751 +g161753 +S'noble' +p161755 +tp161756 +a(g161753 +g161755 +S'and' +p161757 +tp161758 +a(g161755 +g161757 +S'dignified' +p161759 +tp161760 +a(g161757 +g161759 +S'paternal' +p161761 +tp161762 +a(g161759 +g161761 +S'presence' +p161763 +tp161764 +a(g161761 +g161763 +S'in' +p161765 +tp161766 +a(g161763 +g161765 +S'the' +p161767 +tp161768 +a(g161765 +g161767 +S'ancient' +p161769 +tp161770 +a(g161767 +g161769 +S'roman' +p161771 +tp161772 +a(g161769 +g161771 +S'tradition' +p161773 +tp161774 +a(g161771 +g161773 +S'of' +p161775 +tp161776 +a(g161773 +g161775 +S'ancestral' +p161777 +tp161778 +a(g161775 +g161777 +S'portraiture.' +p161779 +tp161780 +a(g161777 +g161779 +S'he' +p161781 +tp161782 +a(g161779 +g161781 +S'chose' +p161783 +tp161784 +a(g161781 +g161783 +S'a' +p161785 +tp161786 +a(g161783 +g161785 +S'bust' +p161787 +tp161788 +a(g161785 +g161787 +S'form' +p161789 +tp161790 +a(g161787 +g161789 +S'that' +p161791 +tp161792 +a(g161789 +g161791 +S'includes' +p161793 +tp161794 +a(g161791 +g161793 +S'most' +p161795 +tp161796 +a(g161793 +g161795 +S'of' +p161797 +tp161798 +a(g161795 +g161797 +S'the' +p161799 +tp161800 +a(g161797 +g161799 +S'chest,' +p161801 +tp161802 +a(g161799 +g161801 +S'and' +p161803 +tp161804 +a(g161801 +g161803 +S'curved' +p161805 +tp161806 +a(g161803 +g161805 +S'the' +p161807 +tp161808 +a(g161805 +g161807 +S'truncation' +p161809 +tp161810 +a(g161807 +g161809 +S'to' +p161811 +tp161812 +a(g161809 +g161811 +S'echo' +p161813 +tp161814 +a(g161811 +g161813 +S'the' +p161815 +tp161816 +a(g161813 +g161815 +S'arch' +p161817 +tp161818 +a(g161815 +g161817 +S'of' +p161819 +tp161820 +a(g161817 +g161819 +S'the' +p161821 +tp161822 +a(g161819 +g161821 +S'spreading' +p161823 +tp161824 +a(g161821 +g161823 +S'shoulders,' +p161825 +tp161826 +a(g161823 +g161825 +S'producing' +p161827 +tp161828 +a(g161825 +g161827 +S'an' +p161829 +tp161830 +a(g161827 +g161829 +S'effect' +p161831 +tp161832 +a(g161829 +g161831 +S'both' +p161833 +tp161834 +a(g161831 +g161833 +S'of' +p161835 +tp161836 +a(g161833 +g161835 +S'harmony' +p161837 +tp161838 +a(g161835 +g161837 +S'and' +p161839 +tp161840 +a(g161837 +g161839 +S'imposing' +p161841 +tp161842 +a(g161839 +g161841 +S'physical' +p161843 +tp161844 +a(g161841 +g161843 +S'bulk.' +p161845 +tp161846 +a(g161843 +g161845 +S'shadows' +p161847 +tp161848 +a(g161845 +g161847 +S'play' +p161849 +tp161850 +a(g161847 +g161849 +S'over' +p161851 +tp161852 +a(g161849 +g161851 +S"francesco's" +p161853 +tp161854 +a(g161851 +g161853 +S'aged' +p161855 +tp161856 +a(g161853 +g161855 +S'face,' +p161857 +tp161858 +a(g161855 +g161857 +S'especially' +p161859 +tp161860 +a(g161857 +g161859 +S'in' +p161861 +tp161862 +a(g161859 +g161861 +S'the' +p161863 +tp161864 +a(g161861 +g161863 +S'sunken' +p161865 +tp161866 +a(g161863 +g161865 +S'temples,' +p161867 +tp161868 +a(g161865 +g161867 +S'and' +p161869 +tp161870 +a(g161867 +g161869 +S'beneath' +p161871 +tp161872 +a(g161869 +g161871 +S'the' +p161873 +tp161874 +a(g161871 +g161873 +S'bushy' +p161875 +tp161876 +a(g161873 +g161875 +S'eyebrows.' +p161877 +tp161878 +a(g161875 +g161877 +S'the' +p161879 +tp161880 +a(g161877 +g161879 +S'sagging' +p161881 +tp161882 +a(g161879 +g161881 +S'flesh' +p161883 +tp161884 +a(g161881 +g161883 +S'of' +p161885 +tp161886 +a(g161883 +g161885 +S'the' +p161887 +tp161888 +a(g161885 +g161887 +S'cheeks' +p161889 +tp161890 +a(g161887 +g161889 +S'appears' +p161891 +tp161892 +a(g161889 +g161891 +S'soft' +p161893 +tp161894 +a(g161891 +g161893 +S'and' +p161895 +tp161896 +a(g161893 +g161895 +S'pliant.' +p161897 +tp161898 +a(g161895 +g161897 +S'the' +p161899 +tp161900 +a(g161897 +g161899 +S"sculptor's" +p161901 +tp161902 +a(g161899 +g161901 +S'drill' +p161903 +tp161904 +a(g161901 +g161903 +S'has' +p161905 +tp161906 +a(g161903 +g161905 +S'pierced' +p161907 +tp161908 +a(g161905 +g161907 +S'dark' +p161909 +tp161910 +a(g161907 +g161909 +S'wells' +p161911 +tp161912 +a(g161909 +g161911 +S'between' +p161913 +tp161914 +a(g161911 +g161913 +S'the' +p161915 +tp161916 +a(g161913 +g161915 +S'tufts' +p161917 +tp161918 +a(g161915 +g161917 +S'of' +p161919 +tp161920 +a(g161917 +g161919 +S'the' +p161921 +tp161922 +a(g161919 +g161921 +S'silky' +p161923 +tp161924 +a(g161921 +g161923 +S'beard.' +p161925 +tp161926 +a(g161923 +g161925 +S'the' +p161927 +tp161928 +a(g161925 +g161927 +S'mantle' +p161929 +tp161930 +a(g161927 +g161929 +S'falls' +p161931 +tp161932 +a(g161929 +g161931 +S'in' +p161933 +tp161934 +a(g161931 +g161933 +S'broad' +p161935 +tp161936 +a(g161933 +g161935 +S'folds' +p161937 +tp161938 +a(g161935 +g161937 +S'that' +p161939 +tp161940 +a(g161937 +g161939 +S'contrast' +p161941 +tp161942 +a(g161939 +g161941 +S'with' +p161943 +tp161944 +a(g161941 +g161943 +S'the' +p161945 +tp161946 +a(g161943 +g161945 +S'crinkly' +p161947 +tp161948 +a(g161945 +g161947 +S'pleats' +p161949 +tp161950 +a(g161947 +g161949 +S'of' +p161951 +tp161952 +a(g161949 +g161951 +S'the' +p161953 +tp161954 +a(g161951 +g161953 +S'surplice' +p161955 +tp161956 +a(g161953 +g161955 +S'below.' +p161957 +tp161958 +a(g161955 +g161957 +S'these' +p161959 +tp161960 +a(g161957 +g161959 +S'varied' +p161961 +tp161962 +a(g161959 +g161961 +S'forms' +p161963 +tp161964 +a(g161961 +g161963 +S'and' +p161965 +tp161966 +a(g161963 +g161965 +S'textures' +p161967 +tp161968 +a(g161965 +g161967 +S'show' +p161969 +tp161970 +a(g161967 +g161969 +S'how' +p161971 +tp161972 +a(g161969 +g161971 +S'successfully' +p161973 +tp161974 +a(g161971 +g161973 +S'bernini' +p161975 +tp161976 +a(g161973 +g161975 +S'strove' +p161977 +tp161978 +a(g161975 +g161977 +S'to' +p161979 +tp161980 +a(g161977 +g161979 +S'compensate' +p161981 +tp161982 +a(g161979 +g161981 +S'for' +p161983 +tp161984 +a(g161981 +g161983 +S"marble's" +p161985 +tp161986 +a(g161983 +g161985 +S'lack' +p161987 +tp161988 +a(g161985 +g161987 +S'of' +p161989 +tp161990 +a(g161987 +g161989 +S'color.' +p161991 +tp161992 +a(g161989 +g161991 +S'perhaps' +p161993 +tp161994 +a(g161991 +g161993 +S'more' +p161995 +tp161996 +a(g161993 +g161995 +S'than' +p161997 +tp161998 +a(g161995 +g161997 +S'the' +p161999 +tp162000 +a(g161997 +g161999 +S'work' +p162001 +tp162002 +a(g161999 +g162001 +S'of' +p162003 +tp162004 +a(g162001 +g162003 +S'his' +p162005 +tp162006 +a(g162003 +g162005 +S'two' +p162007 +tp162008 +a(g162005 +g162007 +S'teachers,' +p162009 +tp162010 +a(g162007 +g162009 +S'boucher' +p162011 +tp162012 +a(g162009 +g162011 +S'and' +p162013 +tp162014 +a(g162011 +g162013 +S'chardin,' +p162015 +tp162016 +a(g162013 +g162015 +S'jean-honoré' +p162017 +tp162018 +a(g162015 +g162017 +S"fragonard's" +p162019 +tp162020 +a(g162017 +g162019 +S'bravura' +p162021 +tp162022 +a(g162019 +g162021 +S'handling' +p162023 +tp162024 +a(g162021 +g162023 +S'of' +p162025 +tp162026 +a(g162023 +g162025 +S'brushwork' +p162027 +tp162028 +a(g162025 +g162027 +S'and' +p162029 +tp162030 +a(g162027 +g162029 +S'color' +p162031 +tp162032 +a(g162029 +g162031 +S'embodies' +p162033 +tp162034 +a(g162031 +g162033 +S'18th-century' +p162035 +tp162036 +a(g162033 +g162035 +S'painting' +p162037 +tp162038 +a(g162035 +g162037 +S'aesthetics.' +p162039 +tp162040 +a(g162037 +g162039 +S'in' +p162041 +tp162042 +a(g162039 +g162041 +S'as' +p162043 +tp162044 +a(g162041 +g162043 +S'in' +p162045 +tp162046 +a(g162043 +g162045 +S"chardin's" +p162047 +tp162048 +a(g162045 +g162047 +S'painted' +p162049 +tp162050 +a(g162047 +g162049 +S'in' +p162051 +tp162052 +a(g162049 +g162051 +S'1862,' +p162053 +tp162054 +a(g162051 +g162053 +S'despite' +p162055 +tp162056 +a(g162053 +g162055 +S'its' +p162057 +tp162058 +a(g162055 +g162057 +S'early' +p162059 +tp162060 +a(g162057 +g162059 +S'date,' +p162061 +tp162062 +a(g162059 +g162061 +S'this' +p162063 +tp162064 +a(g162061 +g162063 +S'painting' +p162065 +tp162066 +a(g162063 +g162065 +S'is' +p162067 +tp162068 +a(g162065 +g162067 +S'almost' +p162069 +tp162070 +a(g162067 +g162069 +S'stark' +p162071 +tp162072 +a(g162069 +g162071 +S'in' +p162073 +tp162074 +a(g162071 +g162073 +S'its' +p162075 +tp162076 +a(g162073 +g162075 +S'simplicity.' +p162077 +tp162078 +a(g162075 +g162077 +S'at' +p162079 +tp162080 +a(g162077 +g162079 +S'left' +p162081 +tp162082 +a(g162079 +g162081 +S'are' +p162083 +tp162084 +a(g162081 +g162083 +S'six' +p162085 +tp162086 +a(g162083 +g162085 +S'oysters' +p162087 +tp162088 +a(g162085 +g162087 +S'that' +p162089 +tp162090 +a(g162087 +g162089 +S'have' +p162091 +tp162092 +a(g162089 +g162091 +S'been' +p162093 +tp162094 +a(g162091 +g162093 +S'opened' +p162095 +tp162096 +a(g162093 +g162095 +S'and' +p162097 +tp162098 +a(g162095 +g162097 +S'arranged' +p162099 +tp162100 +a(g162097 +g162099 +S'haphazardly' +p162101 +tp162102 +a(g162099 +g162101 +S'on' +p162103 +tp162104 +a(g162101 +g162103 +S'a' +p162105 +tp162106 +a(g162103 +g162105 +S'plate.' +p162107 +tp162108 +a(g162105 +g162107 +S'on' +p162109 +tp162110 +a(g162107 +g162109 +S'the' +p162111 +tp162112 +a(g162109 +g162111 +S'right' +p162113 +tp162114 +a(g162111 +g162113 +S'are' +p162115 +tp162116 +a(g162113 +g162115 +S'a' +p162117 +tp162118 +a(g162115 +g162117 +S'cup,' +p162119 +tp162120 +a(g162117 +g162119 +S'two' +p162121 +tp162122 +a(g162119 +g162121 +S'halves' +p162123 +tp162124 +a(g162121 +g162123 +S'of' +p162125 +tp162126 +a(g162123 +g162125 +S'a' +p162127 +tp162128 +a(g162125 +g162127 +S'lemon,' +p162129 +tp162130 +a(g162127 +g162129 +S'and' +p162131 +tp162132 +a(g162129 +g162131 +S'a' +p162133 +tp162134 +a(g162131 +g162133 +S'single' +p162135 +tp162136 +a(g162133 +g162135 +S'opened' +p162137 +tp162138 +a(g162135 +g162137 +S'oyster:' +p162139 +tp162140 +a(g162137 +g162139 +S'the' +p162141 +tp162142 +a(g162139 +g162141 +S'upward-turned' +p162143 +tp162144 +a(g162141 +g162143 +S'shell' +p162145 +tp162146 +a(g162143 +g162145 +S'cradles' +p162147 +tp162148 +a(g162145 +g162147 +S'the' +p162149 +tp162150 +a(g162147 +g162149 +S'fleshy' +p162151 +tp162152 +a(g162149 +g162151 +S'mollusk' +p162153 +tp162154 +a(g162151 +g162153 +S'inside' +p162155 +tp162156 +a(g162153 +g162155 +S'while' +p162157 +tp162158 +a(g162155 +g162157 +S'the' +p162159 +tp162160 +a(g162157 +g162159 +S'other' +p162161 +tp162162 +a(g162159 +g162161 +S'shell,' +p162163 +tp162164 +a(g162161 +g162163 +S'turned' +p162165 +tp162166 +a(g162163 +g162165 +S'downward,' +p162167 +tp162168 +a(g162165 +g162167 +S'displays' +p162169 +tp162170 +a(g162167 +g162169 +S'the' +p162171 +tp162172 +a(g162169 +g162171 +S'rough' +p162173 +tp162174 +a(g162171 +g162173 +S'exterior.' +p162175 +tp162176 +a(g162173 +g162175 +S'lying' +p162177 +tp162178 +a(g162175 +g162177 +S'at' +p162179 +tp162180 +a(g162177 +g162179 +S'an' +p162181 +tp162182 +a(g162179 +g162181 +S'oblique' +p162183 +tp162184 +a(g162181 +g162183 +S'angle' +p162185 +tp162186 +a(g162183 +g162185 +S'near' +p162187 +tp162188 +a(g162185 +g162187 +S'the' +p162189 +tp162190 +a(g162187 +g162189 +S'table\xe2\x80\x99s' +p162191 +tp162192 +a(g162189 +g162191 +S'edge,' +p162193 +tp162194 +a(g162191 +g162193 +S'a' +p162195 +tp162196 +a(g162193 +g162195 +S'three-pronged' +p162197 +tp162198 +a(g162195 +g162197 +S'fork' +p162199 +tp162200 +a(g162197 +g162199 +S'placed' +p162201 +tp162202 +a(g162199 +g162201 +S'at' +p162203 +tp162204 +a(g162201 +g162203 +S'the' +p162205 +tp162206 +a(g162203 +g162205 +S'center' +p162207 +tp162208 +a(g162205 +g162207 +S'of' +p162209 +tp162210 +a(g162207 +g162209 +S'the' +p162211 +tp162212 +a(g162209 +g162211 +S'picture' +p162213 +tp162214 +a(g162211 +g162213 +S'serves' +p162215 +tp162216 +a(g162213 +g162215 +S'to' +p162217 +tp162218 +a(g162215 +g162217 +S'visually' +p162219 +tp162220 +a(g162217 +g162219 +S'link' +p162221 +tp162222 +a(g162219 +g162221 +S'both' +p162223 +tp162224 +a(g162221 +g162223 +S'sides' +p162225 +tp162226 +a(g162223 +g162225 +S'of' +p162227 +tp162228 +a(g162225 +g162227 +S'the' +p162229 +tp162230 +a(g162227 +g162229 +S'composition.' +p162231 +tp162232 +a(g162229 +g162231 +S'manet\xe2\x80\x99s' +p162233 +tp162234 +a(g162231 +g162233 +S'palette' +p162235 +tp162236 +a(g162233 +g162235 +S'is' +p162237 +tp162238 +a(g162235 +g162237 +S'equally' +p162239 +tp162240 +a(g162237 +g162239 +S'restrained.' +p162241 +tp162242 +a(g162239 +g162241 +S'the' +p162243 +tp162244 +a(g162241 +g162243 +S'painting' +p162245 +tp162246 +a(g162243 +g162245 +S'is' +p162247 +tp162248 +a(g162245 +g162247 +S'dominated' +p162249 +tp162250 +a(g162247 +g162249 +S'by' +p162251 +tp162252 +a(g162249 +g162251 +S'subdued' +p162253 +tp162254 +a(g162251 +g162253 +S'colors:' +p162255 +tp162256 +a(g162253 +g162255 +S'the' +p162257 +tp162258 +a(g162255 +g162257 +S'brown' +p162259 +tp162260 +a(g162257 +g162259 +S'of' +p162261 +tp162262 +a(g162259 +g162261 +S'the' +p162263 +tp162264 +a(g162261 +g162263 +S'wooden' +p162265 +tp162266 +a(g162263 +g162265 +S'table;' +p162267 +tp162268 +a(g162265 +g162267 +S'the' +p162269 +tp162270 +a(g162267 +g162269 +S'cool,' +p162271 +tp162272 +a(g162269 +g162271 +S'dark' +p162273 +tp162274 +a(g162271 +g162273 +S'gray' +p162275 +tp162276 +a(g162273 +g162275 +S'of' +p162277 +tp162278 +a(g162275 +g162277 +S'the' +p162279 +tp162280 +a(g162277 +g162279 +S'background;' +p162281 +tp162282 +a(g162279 +g162281 +S'and' +p162283 +tp162284 +a(g162281 +g162283 +S'the' +p162285 +tp162286 +a(g162283 +g162285 +S'various' +p162287 +tp162288 +a(g162285 +g162287 +S'shades' +p162289 +tp162290 +a(g162287 +g162289 +S'of' +p162291 +tp162292 +a(g162289 +g162291 +S'white,' +p162293 +tp162294 +a(g162291 +g162293 +S'beige,' +p162295 +tp162296 +a(g162293 +g162295 +S'and' +p162297 +tp162298 +a(g162295 +g162297 +S'taupe' +p162299 +tp162300 +a(g162297 +g162299 +S'with' +p162301 +tp162302 +a(g162299 +g162301 +S'which' +p162303 +tp162304 +a(g162301 +g162303 +S'manet' +p162305 +tp162306 +a(g162303 +g162305 +S'depicted' +p162307 +tp162308 +a(g162305 +g162307 +S'the' +p162309 +tp162310 +a(g162307 +g162309 +S'oysters' +p162311 +tp162312 +a(g162309 +g162311 +S'and' +p162313 +tp162314 +a(g162311 +g162313 +S'the' +p162315 +tp162316 +a(g162313 +g162315 +S'pottery.' +p162317 +tp162318 +a(g162315 +g162317 +S'to' +p162319 +tp162320 +a(g162317 +g162319 +S'this' +p162321 +tp162322 +a(g162319 +g162321 +S'he' +p162323 +tp162324 +a(g162321 +g162323 +S'added' +p162325 +tp162326 +a(g162323 +g162325 +S'touches' +p162327 +tp162328 +a(g162325 +g162327 +S'of' +p162329 +tp162330 +a(g162327 +g162329 +S'more' +p162331 +tp162332 +a(g162329 +g162331 +S'vibrant' +p162333 +tp162334 +a(g162331 +g162333 +S'hues:' +p162335 +tp162336 +a(g162333 +g162335 +S'the' +p162337 +tp162338 +a(g162335 +g162337 +S'cobalt' +p162339 +tp162340 +a(g162337 +g162339 +S'blue' +p162341 +tp162342 +a(g162339 +g162341 +S'of' +p162343 +tp162344 +a(g162341 +g162343 +S'the' +p162345 +tp162346 +a(g162343 +g162345 +S'plate' +p162347 +tp162348 +a(g162345 +g162347 +S'decoration,' +p162349 +tp162350 +a(g162347 +g162349 +S'delicate' +p162351 +tp162352 +a(g162349 +g162351 +S'strokes' +p162353 +tp162354 +a(g162351 +g162353 +S'of' +p162355 +tp162356 +a(g162353 +g162355 +S'pink' +p162357 +tp162358 +a(g162355 +g162357 +S'to' +p162359 +tp162360 +a(g162357 +g162359 +S'suggest' +p162361 +tp162362 +a(g162359 +g162361 +S'the' +p162363 +tp162364 +a(g162361 +g162363 +S'nacreous' +p162365 +tp162366 +a(g162363 +g162365 +S'interior' +p162367 +tp162368 +a(g162365 +g162367 +S'of' +p162369 +tp162370 +a(g162367 +g162369 +S'the' +p162371 +tp162372 +a(g162369 +g162371 +S'oyster' +p162373 +tp162374 +a(g162371 +g162373 +S'shells,' +p162375 +tp162376 +a(g162373 +g162375 +S'and,' +p162377 +tp162378 +a(g162375 +g162377 +S'of' +p162379 +tp162380 +a(g162377 +g162379 +S'course,' +p162381 +tp162382 +a(g162379 +g162381 +S'the' +p162383 +tp162384 +a(g162381 +g162383 +S'vivid' +p162385 +tp162386 +a(g162383 +g162385 +S'yellow' +p162387 +tp162388 +a(g162385 +g162387 +S'of' +p162389 +tp162390 +a(g162387 +g162389 +S'the' +p162391 +tp162392 +a(g162389 +g162391 +S'lemon.' +p162393 +tp162394 +a(g162391 +g162393 +S'while' +p162395 +tp162396 +a(g162393 +g162395 +S'the' +p162397 +tp162398 +a(g162395 +g162397 +S'subject' +p162399 +tp162400 +a(g162397 +g162399 +S'matter' +p162401 +tp162402 +a(g162399 +g162401 +S'and' +p162403 +tp162404 +a(g162401 +g162403 +S'subdued' +p162405 +tp162406 +a(g162403 +g162405 +S'palette' +p162407 +tp162408 +a(g162405 +g162407 +S'recall' +p162409 +tp162410 +a(g162407 +g162409 +S'seventeenth-century' +p162411 +tp162412 +a(g162409 +g162411 +S'dutch' +p162413 +tp162414 +a(g162411 +g162413 +S'antecedents,' +p162415 +tp162416 +a(g162413 +g162415 +S'the' +p162417 +tp162418 +a(g162415 +g162417 +S'influence' +p162419 +tp162420 +a(g162417 +g162419 +S'of' +p162421 +tp162422 +a(g162419 +g162421 +S'the' +p162423 +tp162424 +a(g162421 +g162423 +S'eighteenth-century' +p162425 +tp162426 +a(g162423 +g162425 +S'french' +p162427 +tp162428 +a(g162425 +g162427 +S'artist' +p162429 +tp162430 +a(g162427 +g162429 +S'jean' +p162431 +tp162432 +a(g162429 +g162431 +S'siméon' +p162433 +tp162434 +a(g162431 +g162433 +S'chardin' +p162435 +tp162436 +a(g162433 +g162435 +S'is' +p162437 +tp162438 +a(g162435 +g162437 +S'also' +p162439 +tp162440 +a(g162437 +g162439 +S'evident.' +p162441 +tp162442 +a(g162439 +g162441 +S'beginning' +p162443 +tp162444 +a(g162441 +g162443 +S'in' +p162445 +tp162446 +a(g162443 +g162445 +S'the' +p162447 +tp162448 +a(g162445 +g162447 +S'1840s,' +p162449 +tp162450 +a(g162447 +g162449 +S'there' +p162451 +tp162452 +a(g162449 +g162451 +S'had' +p162453 +tp162454 +a(g162451 +g162453 +S'been' +p162455 +tp162456 +a(g162453 +g162455 +S'a' +p162457 +tp162458 +a(g162455 +g162457 +S'revival' +p162459 +tp162460 +a(g162457 +g162459 +S'of' +p162461 +tp162462 +a(g162459 +g162461 +S'interest' +p162463 +tp162464 +a(g162461 +g162463 +S'in' +p162465 +tp162466 +a(g162463 +g162465 +S'chardin\xe2\x80\x99s' +p162467 +tp162468 +a(g162465 +g162467 +S'oeuvre,' +p162469 +tp162470 +a(g162467 +g162469 +S'especially' +p162471 +tp162472 +a(g162469 +g162471 +S'in' +p162473 +tp162474 +a(g162471 +g162473 +S'still-life' +p162475 +tp162476 +a(g162473 +g162475 +S'paintings' +p162477 +tp162478 +a(g162475 +g162477 +S'that' +p162479 +tp162480 +a(g162477 +g162479 +S'typically' +p162481 +tp162482 +a(g162479 +g162481 +S'feature' +p162483 +tp162484 +a(g162481 +g162483 +S'humble' +p162485 +tp162486 +a(g162483 +g162485 +S'kitchen' +p162487 +tp162488 +a(g162485 +g162487 +S'trappings,' +p162489 +tp162490 +a(g162487 +g162489 +S'spare' +p162491 +tp162492 +a(g162489 +g162491 +S'compositions,' +p162493 +tp162494 +a(g162491 +g162493 +S'and' +p162495 +tp162496 +a(g162493 +g162495 +S'vibrant' +p162497 +tp162498 +a(g162495 +g162497 +S'paint' +p162499 +tp162500 +a(g162497 +g162499 +S'surfaces.' +p162501 +tp162502 +a(g162499 +g162501 +S'in' +p162503 +tp162504 +a(g162501 +g162503 +S'(text' +p162505 +tp162506 +a(g162503 +g162505 +S'by' +p162507 +tp162508 +a(g162505 +g162507 +S'kimberly' +p162509 +tp162510 +a(g162507 +g162509 +S'jones,' +p162511 +tp162512 +a(g162509 +g162511 +S'notes' +p162513 +tp162514 +a(g162511 +g162513 +S'' +p162517 +tp162518 +a(g162515 +g162517 +S'although' +p162519 +tp162520 +a(g162517 +g162519 +S'best' +p162521 +tp162522 +a(g162519 +g162521 +S'known' +p162523 +tp162524 +a(g162521 +g162523 +S'for' +p162525 +tp162526 +a(g162523 +g162525 +S'his' +p162527 +tp162528 +a(g162525 +g162527 +S'fashionable' +p162529 +tp162530 +a(g162527 +g162529 +S'formal' +p162531 +tp162532 +a(g162529 +g162531 +S'portraits,' +p162533 +tp162534 +a(g162531 +g162533 +S'john' +p162535 +tp162536 +a(g162533 +g162535 +S'singer' +p162537 +tp162538 +a(g162535 +g162537 +S'sargent' +p162539 +tp162540 +a(g162537 +g162539 +S'was' +p162541 +tp162542 +a(g162539 +g162541 +S'equally' +p162543 +tp162544 +a(g162541 +g162543 +S'adept' +p162545 +tp162546 +a(g162543 +g162545 +S'at' +p162547 +tp162548 +a(g162545 +g162547 +S'landscapes' +p162549 +tp162550 +a(g162547 +g162549 +S'and' +p162551 +tp162552 +a(g162549 +g162551 +S'scenes' +p162553 +tp162554 +a(g162551 +g162553 +S'of' +p162555 +tp162556 +a(g162553 +g162555 +S'daily' +p162557 +tp162558 +a(g162555 +g162557 +S'life.' +p162559 +tp162560 +a(g162557 +g162559 +S'his' +p162561 +tp162562 +a(g162559 +g162561 +S'early' +p162563 +tp162564 +a(g162561 +g162563 +S'fame' +p162565 +tp162566 +a(g162563 +g162565 +S'and' +p162567 +tp162568 +a(g162565 +g162567 +S'astonishing' +p162569 +tp162570 +a(g162567 +g162569 +S'facility' +p162571 +tp162572 +a(g162569 +g162571 +S'with' +p162573 +tp162574 +a(g162571 +g162573 +S'a' +p162575 +tp162576 +a(g162573 +g162575 +S'brush' +p162577 +tp162578 +a(g162575 +g162577 +S'prompted' +p162579 +tp162580 +a(g162577 +g162579 +S'the' +p162581 +tp162582 +a(g162579 +g162581 +S'american' +p162583 +tp162584 +a(g162581 +g162583 +S'expatriate' +p162585 +tp162586 +a(g162583 +g162585 +S'novelist' +p162587 +tp162588 +a(g162585 +g162587 +S'henry' +p162589 +tp162590 +a(g162587 +g162589 +S'james,' +p162591 +tp162592 +a(g162589 +g162591 +S'his' +p162593 +tp162594 +a(g162591 +g162593 +S'close' +p162595 +tp162596 +a(g162593 +g162595 +S'friend,' +p162597 +tp162598 +a(g162595 +g162597 +S'to' +p162599 +tp162600 +a(g162597 +g162599 +S'comment' +p162601 +tp162602 +a(g162599 +g162601 +S'on' +p162603 +tp162604 +a(g162601 +g162603 +S'“the' +p162605 +tp162606 +a(g162603 +g162605 +S'slightly' +p162607 +tp162608 +a(g162605 +g162607 +S"'uncanny'" +p162609 +tp162610 +a(g162607 +g162609 +S'spectacle' +p162611 +tp162612 +a(g162609 +g162611 +S'of' +p162613 +tp162614 +a(g162611 +g162613 +S'a' +p162615 +tp162616 +a(g162613 +g162615 +S'talent' +p162617 +tp162618 +a(g162615 +g162617 +S'which' +p162619 +tp162620 +a(g162617 +g162619 +S'on' +p162621 +tp162622 +a(g162619 +g162621 +S'the' +p162623 +tp162624 +a(g162621 +g162623 +S'very' +p162625 +tp162626 +a(g162623 +g162625 +S'threshold' +p162627 +tp162628 +a(g162625 +g162627 +S'of' +p162629 +tp162630 +a(g162627 +g162629 +S'its' +p162631 +tp162632 +a(g162629 +g162631 +S'career' +p162633 +tp162634 +a(g162631 +g162633 +S'has' +p162635 +tp162636 +a(g162633 +g162635 +S'nothing' +p162637 +tp162638 +a(g162635 +g162637 +S'more' +p162639 +tp162640 +a(g162637 +g162639 +S'to' +p162641 +tp162642 +a(g162639 +g162641 +S'learn.”' +p162643 +tp162644 +a(g162641 +g162643 +S'another' +p162645 +tp162646 +a(g162643 +g162645 +S'of' +p162647 +tp162648 +a(g162645 +g162647 +S'sargent’s' +p162649 +tp162650 +a(g162647 +g162649 +S'friends' +p162651 +tp162652 +a(g162649 +g162651 +S'was' +p162653 +tp162654 +a(g162651 +g162653 +S'the' +p162655 +tp162656 +a(g162653 +g162655 +S'french' +p162657 +tp162658 +a(g162655 +g162657 +S'impressionist' +p162659 +tp162660 +a(g162657 +g162659 +S'the' +p162661 +tp162662 +a(g162659 +g162661 +S'emptiness' +p162663 +tp162664 +a(g162661 +g162663 +S'of' +p162665 +tp162666 +a(g162663 +g162665 +S'the' +p162667 +tp162668 +a(g162665 +g162667 +S'silent' +p162669 +tp162670 +a(g162667 +g162669 +S'street' +p162671 +tp162672 +a(g162669 +g162671 +S'implies' +p162673 +tp162674 +a(g162671 +g162673 +S'that' +p162675 +tp162676 +a(g162673 +g162675 +S'sargent' +p162677 +tp162678 +a(g162675 +g162677 +S'depicted' +p162679 +tp162680 +a(g162677 +g162679 +S'orazio' +p162681 +tp162682 +a(g162679 +g162681 +S'gentileschi' +p162683 +tp162684 +a(g162681 +g162683 +S'was' +p162685 +tp162686 +a(g162683 +g162685 +S'one' +p162687 +tp162688 +a(g162685 +g162687 +S'of' +p162689 +tp162690 +a(g162687 +g162689 +S'the' +p162691 +tp162692 +a(g162689 +g162691 +S'earliest' +p162693 +tp162694 +a(g162691 +g162693 +S'and' +p162695 +tp162696 +a(g162693 +g162695 +S'most' +p162697 +tp162698 +a(g162695 +g162697 +S'gifted' +p162699 +tp162700 +a(g162697 +g162699 +S'painters' +p162701 +tp162702 +a(g162699 +g162701 +S'to' +p162703 +tp162704 +a(g162701 +g162703 +S'be' +p162705 +tp162706 +a(g162703 +g162705 +S'inspired' +p162707 +tp162708 +a(g162705 +g162707 +S'by' +p162709 +tp162710 +a(g162707 +g162709 +S'the' +p162711 +tp162712 +a(g162709 +g162711 +S'genre' +p162713 +tp162714 +a(g162711 +g162713 +S'scenes' +p162715 +tp162716 +a(g162713 +g162715 +S'of' +p162717 +tp162718 +a(g162715 +g162717 +S'caravaggio' +p162719 +tp162720 +a(g162717 +g162719 +S'in' +p162721 +tp162722 +a(g162719 +g162721 +S'rome.' +p162723 +tp162724 +a(g162721 +g162723 +S'here,' +p162725 +tp162726 +a(g162723 +g162725 +S'he' +p162727 +tp162728 +a(g162725 +g162727 +S'must' +p162729 +tp162730 +a(g162727 +g162729 +S'have' +p162731 +tp162732 +a(g162729 +g162731 +S'had' +p162733 +tp162734 +a(g162731 +g162733 +S'in' +p162735 +tp162736 +a(g162733 +g162735 +S'mind' +p162737 +tp162738 +a(g162735 +g162737 +S"caravaggio's" +p162739 +tp162740 +a(g162737 +g162739 +S'famous' +p162741 +tp162742 +a(g162739 +g162741 +S'picture' +p162743 +tp162744 +a(g162741 +g162743 +S'on' +p162745 +tp162746 +a(g162743 +g162745 +S'the' +p162747 +tp162748 +a(g162745 +g162747 +S'same' +p162749 +tp162750 +a(g162747 +g162749 +S'theme.' +p162751 +tp162752 +a(g162749 +g162751 +S"orazio's" +p162753 +tp162754 +a(g162751 +g162753 +S'young' +p162755 +tp162756 +a(g162753 +g162755 +S'woman' +p162757 +tp162758 +a(g162755 +g162757 +S'listens' +p162759 +tp162760 +a(g162757 +g162759 +S'intently' +p162761 +tp162762 +a(g162759 +g162761 +S'to' +p162763 +tp162764 +a(g162761 +g162763 +S'a' +p162765 +tp162766 +a(g162763 +g162765 +S'note' +p162767 +tp162768 +a(g162765 +g162767 +S'as' +p162769 +tp162770 +a(g162767 +g162769 +S'it' +p162771 +tp162772 +a(g162769 +g162771 +S'resonates' +p162773 +tp162774 +a(g162771 +g162773 +S'in' +p162775 +tp162776 +a(g162773 +g162775 +S'the' +p162777 +tp162778 +a(g162775 +g162777 +S'pear–shaped' +p162779 +tp162780 +a(g162777 +g162779 +S'body' +p162781 +tp162782 +a(g162779 +g162781 +S'of' +p162783 +tp162784 +a(g162781 +g162783 +S'the' +p162785 +tp162786 +a(g162783 +g162785 +S'instrument.' +p162787 +tp162788 +a(g162785 +g162787 +S'she' +p162789 +tp162790 +a(g162787 +g162789 +S'may' +p162791 +tp162792 +a(g162789 +g162791 +S'be' +p162793 +tp162794 +a(g162791 +g162793 +S'tuning' +p162795 +tp162796 +a(g162793 +g162795 +S'her' +p162797 +tp162798 +a(g162795 +g162797 +S'lute' +p162799 +tp162800 +a(g162797 +g162799 +S'in' +p162801 +tp162802 +a(g162799 +g162801 +S'anticipation' +p162803 +tp162804 +a(g162801 +g162803 +S'of' +p162805 +tp162806 +a(g162803 +g162805 +S'the' +p162807 +tp162808 +a(g162805 +g162807 +S'concert' +p162809 +tp162810 +a(g162807 +g162809 +S'promised' +p162811 +tp162812 +a(g162809 +g162811 +S'by' +p162813 +tp162814 +a(g162811 +g162813 +S'the' +p162815 +tp162816 +a(g162813 +g162815 +S'assortment' +p162817 +tp162818 +a(g162815 +g162817 +S'of' +p162819 +tp162820 +a(g162817 +g162819 +S'recorders,' +p162821 +tp162822 +a(g162819 +g162821 +S'a' +p162823 +tp162824 +a(g162821 +g162823 +S'cornetto' +p162825 +tp162826 +a(g162823 +g162825 +S'and' +p162827 +tp162828 +a(g162825 +g162827 +S'violin,' +p162829 +tp162830 +a(g162827 +g162829 +S'and' +p162831 +tp162832 +a(g162829 +g162831 +S'the' +p162833 +tp162834 +a(g162831 +g162833 +S'song' +p162835 +tp162836 +a(g162833 +g162835 +S'books' +p162837 +tp162838 +a(g162835 +g162837 +S'lying' +p162839 +tp162840 +a(g162837 +g162839 +S'open' +p162841 +tp162842 +a(g162839 +g162841 +S'on' +p162843 +tp162844 +a(g162841 +g162843 +S'the' +p162845 +tp162846 +a(g162843 +g162845 +S'table' +p162847 +tp162848 +a(g162845 +g162847 +S'before' +p162849 +tp162850 +a(g162847 +g162849 +S'her.' +p162851 +tp162852 +a(g162849 +g162851 +S'the' +p162853 +tp162854 +a(g162851 +g162853 +S'graceful' +p162855 +tp162856 +a(g162853 +g162855 +S'musician' +p162857 +tp162858 +a(g162855 +g162857 +S'and' +p162859 +tp162860 +a(g162857 +g162859 +S'her' +p162861 +tp162862 +a(g162859 +g162861 +S'lute' +p162863 +tp162864 +a(g162861 +g162863 +S'are' +p162865 +tp162866 +a(g162863 +g162865 +S'seen,' +p162867 +tp162868 +a(g162865 +g162867 +S'unexpectedly,' +p162869 +tp162870 +a(g162867 +g162869 +S'from' +p162871 +tp162872 +a(g162869 +g162871 +S'the' +p162873 +tp162874 +a(g162871 +g162873 +S'back,' +p162875 +tp162876 +a(g162873 +g162875 +S'turned' +p162877 +tp162878 +a(g162875 +g162877 +S'three–quarters' +p162879 +tp162880 +a(g162877 +g162879 +S'away' +p162881 +tp162882 +a(g162879 +g162881 +S'from' +p162883 +tp162884 +a(g162881 +g162883 +S'the' +p162885 +tp162886 +a(g162883 +g162885 +S'spectator.' +p162887 +tp162888 +a(g162885 +g162887 +S"orazio's" +p162889 +tp162890 +a(g162887 +g162889 +S'meticulous' +p162891 +tp162892 +a(g162889 +g162891 +S'attention' +p162893 +tp162894 +a(g162891 +g162893 +S'to' +p162895 +tp162896 +a(g162893 +g162895 +S'detail' +p162897 +tp162898 +a(g162895 +g162897 +S'is' +p162899 +tp162900 +a(g162897 +g162899 +S'such' +p162901 +tp162902 +a(g162899 +g162901 +S'that' +p162903 +tp162904 +a(g162901 +g162903 +S'every' +p162905 +tp162906 +a(g162903 +g162905 +S'surface' +p162907 +tp162908 +a(g162905 +g162907 +S'is' +p162909 +tp162910 +a(g162907 +g162909 +S'described' +p162911 +tp162912 +a(g162909 +g162911 +S'with' +p162913 +tp162914 +a(g162911 +g162913 +S'a' +p162915 +tp162916 +a(g162913 +g162915 +S'precision' +p162917 +tp162918 +a(g162915 +g162917 +S'of' +p162919 +tp162920 +a(g162917 +g162919 +S'focus' +p162921 +tp162922 +a(g162919 +g162921 +S'that' +p162923 +tp162924 +a(g162921 +g162923 +S'gives' +p162925 +tp162926 +a(g162923 +g162925 +S'pleasure' +p162927 +tp162928 +a(g162925 +g162927 +S'to' +p162929 +tp162930 +a(g162927 +g162929 +S'the' +p162931 +tp162932 +a(g162929 +g162931 +S'eye.' +p162933 +tp162934 +a(g162931 +g162933 +S'dutch' +p162935 +tp162936 +a(g162933 +g162935 +S'painters,' +p162937 +tp162938 +a(g162935 +g162937 +S'famous' +p162939 +tp162940 +a(g162937 +g162939 +S'for' +p162941 +tp162942 +a(g162939 +g162941 +S'their' +p162943 +tp162944 +a(g162941 +g162943 +S'amazingly' +p162945 +tp162946 +a(g162943 +g162945 +S'illusionistic' +p162947 +tp162948 +a(g162945 +g162947 +S'renderings' +p162949 +tp162950 +a(g162947 +g162949 +S'of' +p162951 +tp162952 +a(g162949 +g162951 +S'fabrics,' +p162953 +tp162954 +a(g162951 +g162953 +S'improved' +p162955 +tp162956 +a(g162953 +g162955 +S'their' +p162957 +tp162958 +a(g162955 +g162957 +S'craft' +p162959 +tp162960 +a(g162957 +g162959 +S'by' +p162961 +tp162962 +a(g162959 +g162961 +S'studying' +p162963 +tp162964 +a(g162961 +g162963 +S"orazio's" +p162965 +tp162966 +a(g162963 +g162965 +S'works.' +p162967 +tp162968 +a(g162965 +g162967 +S'his' +p162969 +tp162970 +a(g162967 +g162969 +S'gift' +p162971 +tp162972 +a(g162969 +g162971 +S'for' +p162973 +tp162974 +a(g162971 +g162973 +S'conveying' +p162975 +tp162976 +a(g162973 +g162975 +S'the' +p162977 +tp162978 +a(g162975 +g162977 +S'textures' +p162979 +tp162980 +a(g162977 +g162979 +S'of' +p162981 +tp162982 +a(g162979 +g162981 +S'fine' +p162983 +tp162984 +a(g162981 +g162983 +S'cloth' +p162985 +tp162986 +a(g162983 +g162985 +S'is' +p162987 +tp162988 +a(g162985 +g162987 +S'shown' +p162989 +tp162990 +a(g162987 +g162989 +S'off' +p162991 +tp162992 +a(g162989 +g162991 +S'here' +p162993 +tp162994 +a(g162991 +g162993 +S'in' +p162995 +tp162996 +a(g162993 +g162995 +S'the' +p162997 +tp162998 +a(g162995 +g162997 +S'sharp' +p162999 +tp163000 +a(g162997 +g162999 +S'gold' +p163001 +tp163002 +a(g162999 +g163001 +S'of' +p163003 +tp163004 +a(g163001 +g163003 +S'the' +p163005 +tp163006 +a(g163003 +g163005 +S'dress,' +p163007 +tp163008 +a(g163005 +g163007 +S'the' +p163009 +tp163010 +a(g163007 +g163009 +S'dull' +p163011 +tp163012 +a(g163009 +g163011 +S'gleam' +p163013 +tp163014 +a(g163011 +g163013 +S'of' +p163015 +tp163016 +a(g163013 +g163015 +S'the' +p163017 +tp163018 +a(g163015 +g163017 +S'scarlet' +p163019 +tp163020 +a(g163017 +g163019 +S'velvet' +p163021 +tp163022 +a(g163019 +g163021 +S'on' +p163023 +tp163024 +a(g163021 +g163023 +S'the' +p163025 +tp163026 +a(g163023 +g163025 +S'stool,' +p163027 +tp163028 +a(g163025 +g163027 +S'and' +p163029 +tp163030 +a(g163027 +g163029 +S'the' +p163031 +tp163032 +a(g163029 +g163031 +S'matte' +p163033 +tp163034 +a(g163031 +g163033 +S'softness' +p163035 +tp163036 +a(g163033 +g163035 +S'of' +p163037 +tp163038 +a(g163035 +g163037 +S'the' +p163039 +tp163040 +a(g163037 +g163039 +S'dark–green' +p163041 +tp163042 +a(g163039 +g163041 +S'cloth' +p163043 +tp163044 +a(g163041 +g163043 +S'covering' +p163045 +tp163046 +a(g163043 +g163045 +S'the' +p163047 +tp163048 +a(g163045 +g163047 +S'table.' +p163049 +tp163050 +a(g163047 +g163049 +S'joris' +p163051 +tp163052 +a(g163049 +g163051 +S'vezeleer' +p163053 +tp163054 +a(g163051 +g163053 +S'headed' +p163055 +tp163056 +a(g163053 +g163055 +S'a' +p163057 +tp163058 +a(g163055 +g163057 +S'small' +p163059 +tp163060 +a(g163057 +g163059 +S'antwerp' +p163061 +tp163062 +a(g163059 +g163061 +S'company' +p163063 +tp163064 +a(g163061 +g163063 +S'that' +p163065 +tp163066 +a(g163063 +g163065 +S'sold' +p163067 +tp163068 +a(g163065 +g163067 +S'wool,' +p163069 +tp163070 +a(g163067 +g163069 +S'other' +p163071 +tp163072 +a(g163069 +g163071 +S'commodities,' +p163073 +tp163074 +a(g163071 +g163073 +S'and' +p163075 +tp163076 +a(g163073 +g163075 +S'luxury' +p163077 +tp163078 +a(g163075 +g163077 +S'items.' +p163079 +tp163080 +a(g163077 +g163079 +S'he' +p163081 +tp163082 +a(g163079 +g163081 +S'provided' +p163083 +tp163084 +a(g163081 +g163083 +S'tapestries' +p163085 +tp163086 +a(g163083 +g163085 +S'and' +p163087 +tp163088 +a(g163085 +g163087 +S'gems' +p163089 +tp163090 +a(g163087 +g163089 +S'to' +p163091 +tp163092 +a(g163089 +g163091 +S'such' +p163093 +tp163094 +a(g163091 +g163093 +S'clients' +p163095 +tp163096 +a(g163093 +g163095 +S'as' +p163097 +tp163098 +a(g163095 +g163097 +S'french' +p163099 +tp163100 +a(g163097 +g163099 +S'king' +p163101 +tp163102 +a(g163099 +g163101 +S'francis' +p163103 +tp163104 +a(g163101 +g163103 +S'i' +p163105 +tp163106 +a(g163103 +g163105 +S'and' +p163107 +tp163108 +a(g163105 +g163107 +S'mary' +p163109 +tp163110 +a(g163107 +g163109 +S'of' +p163111 +tp163112 +a(g163109 +g163111 +S'hungary,' +p163113 +tp163114 +a(g163111 +g163113 +S'the' +p163115 +tp163116 +a(g163113 +g163115 +S'holy' +p163117 +tp163118 +a(g163115 +g163117 +S'roman' +p163119 +tp163120 +a(g163117 +g163119 +S'emperor’s' +p163121 +tp163122 +a(g163119 +g163121 +S'capable' +p163123 +tp163124 +a(g163121 +g163123 +S'regent' +p163125 +tp163126 +a(g163123 +g163125 +S'in' +p163127 +tp163128 +a(g163125 +g163127 +S'the' +p163129 +tp163130 +a(g163127 +g163129 +S'netherlands.' +p163131 +tp163132 +a(g163129 +g163131 +S'diamond' +p163133 +tp163134 +a(g163131 +g163133 +S'cutting,' +p163135 +tp163136 +a(g163133 +g163135 +S'in' +p163137 +tp163138 +a(g163135 +g163137 +S'particular,' +p163139 +tp163140 +a(g163137 +g163139 +S'became' +p163141 +tp163142 +a(g163139 +g163141 +S'an' +p163143 +tp163144 +a(g163141 +g163143 +S'important' +p163145 +tp163146 +a(g163143 +g163145 +S'industry' +p163147 +tp163148 +a(g163145 +g163147 +S'of' +p163149 +tp163150 +a(g163147 +g163149 +S'the' +p163151 +tp163152 +a(g163149 +g163151 +S'low' +p163153 +tp163154 +a(g163151 +g163153 +S'countries' +p163155 +tp163156 +a(g163153 +g163155 +S'as' +p163157 +tp163158 +a(g163155 +g163157 +S'new' +p163159 +tp163160 +a(g163157 +g163159 +S'techniques' +p163161 +tp163162 +a(g163159 +g163161 +S'enabled' +p163163 +tp163164 +a(g163161 +g163163 +S'stone' +p163165 +tp163166 +a(g163163 +g163165 +S'cutters' +p163167 +tp163168 +a(g163165 +g163167 +S'to' +p163169 +tp163170 +a(g163167 +g163169 +S'enhance' +p163171 +tp163172 +a(g163169 +g163171 +S'the' +p163173 +tp163174 +a(g163171 +g163173 +S'light' +p163175 +tp163176 +a(g163173 +g163175 +S'reflected' +p163177 +tp163178 +a(g163175 +g163177 +S'from' +p163179 +tp163180 +a(g163177 +g163179 +S'gems' +p163181 +tp163182 +a(g163179 +g163181 +S'by' +p163183 +tp163184 +a(g163181 +g163183 +S'faceting' +p163185 +tp163186 +a(g163183 +g163185 +S'them.' +p163187 +tp163188 +a(g163185 +g163187 +S'jews' +p163189 +tp163190 +a(g163187 +g163189 +S'recently' +p163191 +tp163192 +a(g163189 +g163191 +S'expelled' +p163193 +tp163194 +a(g163191 +g163193 +S'from' +p163195 +tp163196 +a(g163193 +g163195 +S'portugal' +p163197 +tp163198 +a(g163195 +g163197 +S'settled' +p163199 +tp163200 +a(g163197 +g163199 +S'in' +p163201 +tp163202 +a(g163199 +g163201 +S'antwerp' +p163203 +tp163204 +a(g163201 +g163203 +S'in' +p163205 +tp163206 +a(g163203 +g163205 +S'the' +p163207 +tp163208 +a(g163205 +g163207 +S'early' +p163209 +tp163210 +a(g163207 +g163209 +S'1500s' +p163211 +tp163212 +a(g163209 +g163211 +S'and' +p163213 +tp163214 +a(g163211 +g163213 +S'made' +p163215 +tp163216 +a(g163213 +g163215 +S'it' +p163217 +tp163218 +a(g163215 +g163217 +S'an' +p163219 +tp163220 +a(g163217 +g163219 +S'important' +p163221 +tp163222 +a(g163219 +g163221 +S'center' +p163223 +tp163224 +a(g163221 +g163223 +S'of' +p163225 +tp163226 +a(g163223 +g163225 +S'the' +p163227 +tp163228 +a(g163225 +g163227 +S'diamond' +p163229 +tp163230 +a(g163227 +g163229 +S'trade,' +p163231 +tp163232 +a(g163229 +g163231 +S'as' +p163233 +tp163234 +a(g163231 +g163233 +S'it' +p163235 +tp163236 +a(g163233 +g163235 +S'continues' +p163237 +tp163238 +a(g163235 +g163237 +S'to' +p163239 +tp163240 +a(g163237 +g163239 +S'be' +p163241 +tp163242 +a(g163239 +g163241 +S'today.' +p163243 +tp163244 +a(g163241 +g163243 +S'vezeleer’s' +p163245 +tp163246 +a(g163243 +g163245 +S'gesture' +p163247 +tp163248 +a(g163245 +g163247 +S'of' +p163249 +tp163250 +a(g163247 +g163249 +S'pulling' +p163251 +tp163252 +a(g163249 +g163251 +S'on' +p163253 +tp163254 +a(g163251 +g163253 +S'a' +p163255 +tp163256 +a(g163253 +g163255 +S'fine' +p163257 +tp163258 +a(g163255 +g163257 +S'leather' +p163259 +tp163260 +a(g163257 +g163259 +S'glove' +p163261 +tp163262 +a(g163259 +g163261 +S'marks' +p163263 +tp163264 +a(g163261 +g163263 +S'him' +p163265 +tp163266 +a(g163263 +g163265 +S'as' +p163267 +tp163268 +a(g163265 +g163267 +S'a' +p163269 +tp163270 +a(g163267 +g163269 +S'gentleman' +p163271 +tp163272 +a(g163269 +g163271 +S'of' +p163273 +tp163274 +a(g163271 +g163273 +S'means.' +p163275 +tp163276 +a(g163273 +g163275 +S'in' +p163277 +tp163278 +a(g163275 +g163277 +S'her' +p163279 +tp163280 +a(g163277 +g163279 +S'portrait,' +p163281 +tp163282 +a(g163279 +g163281 +S'his' +p163283 +tp163284 +a(g163281 +g163283 +S'wife' +p163285 +tp163286 +a(g163283 +g163285 +S'holds' +p163287 +tp163288 +a(g163285 +g163287 +S'a' +p163289 +tp163290 +a(g163287 +g163289 +S'pink,' +p163291 +tp163292 +a(g163289 +g163291 +S'a' +p163293 +tp163294 +a(g163291 +g163293 +S'flower' +p163295 +tp163296 +a(g163293 +g163295 +S'associated' +p163297 +tp163298 +a(g163295 +g163297 +S'with' +p163299 +tp163300 +a(g163297 +g163299 +S'fidelity' +p163301 +tp163302 +a(g163299 +g163301 +S'and' +p163303 +tp163304 +a(g163301 +g163303 +S'seen' +p163305 +tp163306 +a(g163303 +g163305 +S'often' +p163307 +tp163308 +a(g163305 +g163307 +S'in' +p163309 +tp163310 +a(g163307 +g163309 +S'wedding' +p163311 +tp163312 +a(g163309 +g163311 +S'portraits.' +p163313 +tp163314 +a(g163311 +g163313 +S'(the' +p163315 +tp163316 +a(g163313 +g163315 +S'vezeleers’' +p163317 +tp163318 +a(g163315 +g163317 +S'grandson' +p163319 +tp163320 +a(g163317 +g163319 +S'was' +p163321 +tp163322 +a(g163319 +g163321 +S'the' +p163323 +tp163324 +a(g163321 +g163323 +S'famous' +p163325 +tp163326 +a(g163323 +g163325 +S'dutch' +p163327 +tp163328 +a(g163325 +g163327 +S'poet' +p163329 +tp163330 +a(g163327 +g163329 +S'and' +p163331 +tp163332 +a(g163329 +g163331 +S'statesman' +p163333 +tp163334 +a(g163331 +g163333 +S'constantijn' +p163335 +tp163336 +a(g163333 +g163335 +S'huygens' +p163337 +tp163338 +a(g163335 +g163337 +S'[d.' +p163339 +tp163340 +a(g163337 +g163339 +S'1687];' +p163341 +tp163342 +a(g163339 +g163341 +S'their' +p163343 +tp163344 +a(g163341 +g163343 +S'great-grandson' +p163345 +tp163346 +a(g163343 +g163345 +S'discovered' +p163347 +tp163348 +a(g163345 +g163347 +S'the' +p163349 +tp163350 +a(g163347 +g163349 +S'rings' +p163351 +tp163352 +a(g163349 +g163351 +S'of' +p163353 +tp163354 +a(g163351 +g163353 +S'saturn.)' +p163355 +tp163356 +a(g163353 +g163355 +S'in' +p163357 +tp163358 +a(g163355 +g163357 +S'joos' +p163359 +tp163360 +a(g163357 +g163359 +S'van' +p163361 +tp163362 +a(g163359 +g163361 +S'cleve,' +p163363 +tp163364 +a(g163361 +g163363 +S'vezeleer,' +p163365 +tp163366 +a(g163363 +g163365 +S'who' +p163367 +tp163368 +a(g163365 +g163367 +S'was' +p163369 +tp163370 +a(g163367 +g163369 +S'known' +p163371 +tp163372 +a(g163369 +g163371 +S'as' +p163373 +tp163374 +a(g163371 +g163373 +S'a' +p163375 +tp163376 +a(g163373 +g163375 +S'collector' +p163377 +tp163378 +a(g163375 +g163377 +S'of' +p163379 +tp163380 +a(g163377 +g163379 +S'paintings,' +p163381 +tp163382 +a(g163379 +g163381 +S'obtained' +p163383 +tp163384 +a(g163381 +g163383 +S'the' +p163385 +tp163386 +a(g163383 +g163385 +S'services' +p163387 +tp163388 +a(g163385 +g163387 +S'of' +p163389 +tp163390 +a(g163387 +g163389 +S'one' +p163391 +tp163392 +a(g163389 +g163391 +S'of' +p163393 +tp163394 +a(g163391 +g163393 +S'the' +p163395 +tp163396 +a(g163393 +g163395 +S'finest' +p163397 +tp163398 +a(g163395 +g163397 +S'artists' +p163399 +tp163400 +a(g163397 +g163399 +S'working' +p163401 +tp163402 +a(g163399 +g163401 +S'in' +p163403 +tp163404 +a(g163401 +g163403 +S'antwerp' +p163405 +tp163406 +a(g163403 +g163405 +S'in' +p163407 +tp163408 +a(g163405 +g163407 +S'the' +p163409 +tp163410 +a(g163407 +g163409 +S'early' +p163411 +tp163412 +a(g163409 +g163411 +S'1500s.' +p163413 +tp163414 +a(g163411 +g163413 +S'his' +p163415 +tp163416 +a(g163413 +g163415 +S'skill' +p163417 +tp163418 +a(g163415 +g163417 +S'with' +p163419 +tp163420 +a(g163417 +g163419 +S'portraiture' +p163421 +tp163422 +a(g163419 +g163421 +S'later' +p163423 +tp163424 +a(g163421 +g163423 +S'led' +p163425 +tp163426 +a(g163423 +g163425 +S'van' +p163427 +tp163428 +a(g163425 +g163427 +S'cleve' +p163429 +tp163430 +a(g163427 +g163429 +S'to' +p163431 +tp163432 +a(g163429 +g163431 +S'fontainebleau,' +p163433 +tp163434 +a(g163431 +g163433 +S'where' +p163435 +tp163436 +a(g163433 +g163435 +S'he' +p163437 +tp163438 +a(g163435 +g163437 +S'painted' +p163439 +tp163440 +a(g163437 +g163439 +S'francis' +p163441 +tp163442 +a(g163439 +g163441 +S'i' +p163443 +tp163444 +a(g163441 +g163443 +S'and' +p163445 +tp163446 +a(g163443 +g163445 +S'was' +p163447 +tp163448 +a(g163445 +g163447 +S'exposed' +p163449 +tp163450 +a(g163447 +g163449 +S'to' +p163451 +tp163452 +a(g163449 +g163451 +S'the' +p163453 +tp163454 +a(g163451 +g163453 +S'soft' +p163455 +tp163456 +a(g163453 +g163455 +S'above' +p163457 +tp163458 +a(g163455 +g163457 +S'all,' +p163459 +tp163460 +a(g163457 +g163459 +S'vermeer' +p163461 +tp163462 +a(g163459 +g163461 +S'was' +p163463 +tp163464 +a(g163461 +g163463 +S'a' +p163465 +tp163466 +a(g163463 +g163465 +S'painter' +p163467 +tp163468 +a(g163465 +g163467 +S'of' +p163469 +tp163470 +a(g163467 +g163469 +S'light.' +p163471 +tp163472 +a(g163469 +g163471 +S'in' +p163473 +tp163474 +a(g163471 +g163473 +S'his' +p163475 +tp163476 +a(g163473 +g163475 +S'study' +p163477 +tp163478 +a(g163475 +g163477 +S'of' +p163479 +tp163480 +a(g163477 +g163479 +S'optics' +p163481 +tp163482 +a(g163479 +g163481 +S'he' +p163483 +tp163484 +a(g163481 +g163483 +S'undoubtedly' +p163485 +tp163486 +a(g163483 +g163485 +S'used' +p163487 +tp163488 +a(g163485 +g163487 +S'a' +p163489 +tp163490 +a(g163487 +g163489 +S'vermeer' +p163491 +tp163492 +a(g163489 +g163491 +S'analyzed' +p163493 +tp163494 +a(g163491 +g163493 +S'the' +p163495 +tp163496 +a(g163493 +g163495 +S'resulting' +p163497 +tp163498 +a(g163495 +g163497 +S'images' +p163499 +tp163500 +a(g163497 +g163499 +S'carefully' +p163501 +tp163502 +a(g163499 +g163501 +S'because' +p163503 +tp163504 +a(g163501 +g163503 +S'they' +p163505 +tp163506 +a(g163503 +g163505 +S'duplicate' +p163507 +tp163508 +a(g163505 +g163507 +S'the' +p163509 +tp163510 +a(g163507 +g163509 +S'selective' +p163511 +tp163512 +a(g163509 +g163511 +S'focus' +p163513 +tp163514 +a(g163511 +g163513 +S'of' +p163515 +tp163516 +a(g163513 +g163515 +S'the' +p163517 +tp163518 +a(g163515 +g163517 +S'human' +p163519 +tp163520 +a(g163517 +g163519 +S'eye.' +p163521 +tp163522 +a(g163519 +g163521 +S'only' +p163523 +tp163524 +a(g163521 +g163523 +S'objects' +p163525 +tp163526 +a(g163523 +g163525 +S'at' +p163527 +tp163528 +a(g163525 +g163527 +S'a' +p163529 +tp163530 +a(g163527 +g163529 +S'certain' +p163531 +tp163532 +a(g163529 +g163531 +S'distance' +p163533 +tp163534 +a(g163531 +g163533 +S'from' +p163535 +tp163536 +a(g163533 +g163535 +S'the' +p163537 +tp163538 +a(g163535 +g163537 +S'camera' +p163539 +tp163540 +a(g163537 +g163539 +S'or' +p163541 +tp163542 +a(g163539 +g163541 +S'the' +p163543 +tp163544 +a(g163541 +g163543 +S'eye' +p163545 +tp163546 +a(g163543 +g163545 +S'are' +p163547 +tp163548 +a(g163545 +g163547 +S'in' +p163549 +tp163550 +a(g163547 +g163549 +S'sharp' +p163551 +tp163552 +a(g163549 +g163551 +S'focus.' +p163553 +tp163554 +a(g163551 +g163553 +S'this' +p163555 +tp163556 +a(g163553 +g163555 +S'is' +p163557 +tp163558 +a(g163555 +g163557 +S'exactly' +p163559 +tp163560 +a(g163557 +g163559 +S'the' +p163561 +tp163562 +a(g163559 +g163561 +S'optical' +p163563 +tp163564 +a(g163561 +g163563 +S'effect' +p163565 +tp163566 +a(g163563 +g163565 +S'vermeer' +p163567 +tp163568 +a(g163565 +g163567 +S'has' +p163569 +tp163570 +a(g163567 +g163569 +S'generated' +p163571 +tp163572 +a(g163569 +g163571 +S'here.' +p163573 +tp163574 +a(g163571 +g163573 +S'precise' +p163575 +tp163576 +a(g163573 +g163575 +S'white' +p163577 +tp163578 +a(g163575 +g163577 +S'highlights' +p163579 +tp163580 +a(g163577 +g163579 +S'glisten' +p163581 +tp163582 +a(g163579 +g163581 +S'from' +p163583 +tp163584 +a(g163581 +g163583 +S'the' +p163585 +tp163586 +a(g163583 +g163585 +S'writing' +p163587 +tp163588 +a(g163585 +g163587 +S'box,' +p163589 +tp163590 +a(g163587 +g163589 +S'pearl' +p163591 +tp163592 +a(g163589 +g163591 +S'earrings,' +p163593 +tp163594 +a(g163591 +g163593 +S'satin' +p163595 +tp163596 +a(g163593 +g163595 +S'hair' +p163597 +tp163598 +a(g163595 +g163597 +S'ribbons,' +p163599 +tp163600 +a(g163597 +g163599 +S'and' +p163601 +tp163602 +a(g163599 +g163601 +S'the' +p163603 +tp163604 +a(g163601 +g163603 +S'chair’s' +p163605 +tp163606 +a(g163603 +g163605 +S'brass' +p163607 +tp163608 +a(g163605 +g163607 +S'tacks—all' +p163609 +tp163610 +a(g163607 +g163609 +S'of' +p163611 +tp163612 +a(g163609 +g163611 +S'which' +p163613 +tp163614 +a(g163611 +g163613 +S'lie' +p163615 +tp163616 +a(g163613 +g163615 +S'equally' +p163617 +tp163618 +a(g163615 +g163617 +S'in' +p163619 +tp163620 +a(g163617 +g163619 +S'the' +p163621 +tp163622 +a(g163619 +g163621 +S'middle' +p163623 +tp163624 +a(g163621 +g163623 +S'distance.' +p163625 +tp163626 +a(g163623 +g163625 +S'the' +p163627 +tp163628 +a(g163625 +g163627 +S'near' +p163629 +tp163630 +a(g163627 +g163629 +S'tablecloth' +p163631 +tp163632 +a(g163629 +g163631 +S'is' +p163633 +tp163634 +a(g163631 +g163633 +S'purposely' +p163635 +tp163636 +a(g163633 +g163635 +S'blurred,' +p163637 +tp163638 +a(g163635 +g163637 +S'and' +p163639 +tp163640 +a(g163637 +g163639 +S'the' +p163641 +tp163642 +a(g163639 +g163641 +S'painting' +p163643 +tp163644 +a(g163641 +g163643 +S'on' +p163645 +tp163646 +a(g163643 +g163645 +S'the' +p163647 +tp163648 +a(g163645 +g163647 +S'far' +p163649 +tp163650 +a(g163647 +g163649 +S'wall' +p163651 +tp163652 +a(g163649 +g163651 +S'is' +p163653 +tp163654 +a(g163651 +g163653 +S'hazy.' +p163655 +tp163656 +a(g163653 +g163655 +S'this' +p163657 +tp163658 +a(g163655 +g163657 +S'is' +p163659 +tp163660 +a(g163657 +g163659 +S'just' +p163661 +tp163662 +a(g163659 +g163661 +S'as' +p163663 +tp163664 +a(g163661 +g163663 +S'they' +p163665 +tp163666 +a(g163663 +g163665 +S'would' +p163667 +tp163668 +a(g163665 +g163667 +S'look' +p163669 +tp163670 +a(g163667 +g163669 +S'to' +p163671 +tp163672 +a(g163669 +g163671 +S'someone' +p163673 +tp163674 +a(g163671 +g163673 +S'concentrating' +p163675 +tp163676 +a(g163673 +g163675 +S'specifically' +p163677 +tp163678 +a(g163675 +g163677 +S'on' +p163679 +tp163680 +a(g163677 +g163679 +S'the' +p163681 +tp163682 +a(g163679 +g163681 +S'woman.' +p163683 +tp163684 +a(g163681 +g163683 +S'because' +p163685 +tp163686 +a(g163683 +g163685 +S'she' +p163687 +tp163688 +a(g163685 +g163687 +S'directly' +p163689 +tp163690 +a(g163687 +g163689 +S'faces' +p163691 +tp163692 +a(g163689 +g163691 +S'the' +p163693 +tp163694 +a(g163691 +g163693 +S'viewer' +p163695 +tp163696 +a(g163693 +g163695 +S'with' +p163697 +tp163698 +a(g163695 +g163697 +S'an' +p163699 +tp163700 +a(g163697 +g163699 +S'open' +p163701 +tp163702 +a(g163699 +g163701 +S'gaze,' +p163703 +tp163704 +a(g163701 +g163703 +S'the' +p163705 +tp163706 +a(g163703 +g163705 +S'painting' +p163707 +tp163708 +a(g163705 +g163707 +S'may' +p163709 +tp163710 +a(g163707 +g163709 +S'be' +p163711 +tp163712 +a(g163709 +g163711 +S'a' +p163713 +tp163714 +a(g163711 +g163713 +S'portrait.' +p163715 +tp163716 +a(g163713 +g163715 +S'most' +p163717 +tp163718 +a(g163715 +g163717 +S'of' +p163719 +tp163720 +a(g163717 +g163719 +S'the' +p163721 +tp163722 +a(g163719 +g163721 +S'thirty-five' +p163723 +tp163724 +a(g163721 +g163723 +S'or' +p163725 +tp163726 +a(g163723 +g163725 +S'so' +p163727 +tp163728 +a(g163725 +g163727 +S'paintings' +p163729 +tp163730 +a(g163727 +g163729 +S'that' +p163731 +tp163732 +a(g163729 +g163731 +S'now' +p163733 +tp163734 +a(g163731 +g163733 +S'are' +p163735 +tp163736 +a(g163733 +g163735 +S'thought' +p163737 +tp163738 +a(g163735 +g163737 +S'to' +p163739 +tp163740 +a(g163737 +g163739 +S'be' +p163741 +tp163742 +a(g163739 +g163741 +S'vermeer’s' +p163743 +tp163744 +a(g163741 +g163743 +S'creations' +p163745 +tp163746 +a(g163743 +g163745 +S'share' +p163747 +tp163748 +a(g163745 +g163747 +S'the' +p163749 +tp163750 +a(g163747 +g163749 +S'same' +p163751 +tp163752 +a(g163749 +g163751 +S'setting,' +p163753 +tp163754 +a(g163751 +g163753 +S'his' +p163755 +tp163756 +a(g163753 +g163755 +S'parents’' +p163757 +tp163758 +a(g163755 +g163757 +S'home,' +p163759 +tp163760 +a(g163757 +g163759 +S'which' +p163761 +tp163762 +a(g163759 +g163761 +S'he' +p163763 +tp163764 +a(g163761 +g163763 +S'inherited.' +p163765 +tp163766 +a(g163763 +g163765 +S'the' +p163767 +tp163768 +a(g163765 +g163767 +S'poussin,' +p163769 +tp163770 +a(g163767 +g163769 +S'among' +p163771 +tp163772 +a(g163769 +g163771 +S'the' +p163773 +tp163774 +a(g163771 +g163773 +S'most' +p163775 +tp163776 +a(g163773 +g163775 +S'important' +p163777 +tp163778 +a(g163775 +g163777 +S'of' +p163779 +tp163780 +a(g163777 +g163779 +S'all' +p163781 +tp163782 +a(g163779 +g163781 +S'european' +p163783 +tp163784 +a(g163781 +g163783 +S'painters,' +p163785 +tp163786 +a(g163783 +g163785 +S'worked' +p163787 +tp163788 +a(g163785 +g163787 +S'in' +p163789 +tp163790 +a(g163787 +g163789 +S'france' +p163791 +tp163792 +a(g163789 +g163791 +S'and' +p163793 +tp163794 +a(g163791 +g163793 +S'traveled' +p163795 +tp163796 +a(g163793 +g163795 +S'through' +p163797 +tp163798 +a(g163795 +g163797 +S'venice' +p163799 +tp163800 +a(g163797 +g163799 +S'before' +p163801 +tp163802 +a(g163799 +g163801 +S'reaching' +p163803 +tp163804 +a(g163801 +g163803 +S'rome' +p163805 +tp163806 +a(g163803 +g163805 +S'in' +p163807 +tp163808 +a(g163805 +g163807 +S'1624.' +p163809 +tp163810 +a(g163807 +g163809 +S'shortly' +p163811 +tp163812 +a(g163809 +g163811 +S'thereafter,' +p163813 +tp163814 +a(g163811 +g163813 +S'he' +p163815 +tp163816 +a(g163813 +g163815 +S'began' +p163817 +tp163818 +a(g163815 +g163817 +S'seeking' +p163819 +tp163820 +a(g163817 +g163819 +S'rigorously' +p163821 +tp163822 +a(g163819 +g163821 +S'composed' +p163823 +tp163824 +a(g163821 +g163823 +S'interpretations' +p163825 +tp163826 +a(g163823 +g163825 +S'of' +p163827 +tp163828 +a(g163825 +g163827 +S'philosophical' +p163829 +tp163830 +a(g163827 +g163829 +S'themes.' +p163831 +tp163832 +a(g163829 +g163831 +S'except' +p163833 +tp163834 +a(g163831 +g163833 +S'for' +p163835 +tp163836 +a(g163833 +g163835 +S'a' +p163837 +tp163838 +a(g163835 +g163837 +S'royal' +p163839 +tp163840 +a(g163837 +g163839 +S'summons' +p163841 +tp163842 +a(g163839 +g163841 +S'to' +p163843 +tp163844 +a(g163841 +g163843 +S'return' +p163845 +tp163846 +a(g163843 +g163845 +S'to' +p163847 +tp163848 +a(g163845 +g163847 +S'paris' +p163849 +tp163850 +a(g163847 +g163849 +S'in' +p163851 +tp163852 +a(g163849 +g163851 +S'1640-1642,' +p163853 +tp163854 +a(g163851 +g163853 +S'poussin' +p163855 +tp163856 +a(g163853 +g163855 +S'remained' +p163857 +tp163858 +a(g163855 +g163857 +S'in' +p163859 +tp163860 +a(g163857 +g163859 +S'rome.' +p163861 +tp163862 +a(g163859 +g163861 +S'by' +p163863 +tp163864 +a(g163861 +g163863 +S'staying' +p163865 +tp163866 +a(g163863 +g163865 +S'in' +p163867 +tp163868 +a(g163865 +g163867 +S'italy,' +p163869 +tp163870 +a(g163867 +g163869 +S"france's" +p163871 +tp163872 +a(g163869 +g163871 +S'two' +p163873 +tp163874 +a(g163871 +g163873 +S'leading' +p163875 +tp163876 +a(g163873 +g163875 +S'seventeenth-century' +p163877 +tp163878 +a(g163875 +g163877 +S'artists,' +p163879 +tp163880 +a(g163877 +g163879 +S'poussin' +p163881 +tp163882 +a(g163879 +g163881 +S'and' +p163883 +tp163884 +a(g163881 +g163883 +S'claude' +p163885 +tp163886 +a(g163883 +g163885 +S'lorrain,' +p163887 +tp163888 +a(g163885 +g163887 +S'who' +p163889 +tp163890 +a(g163887 +g163889 +S'sometimes' +p163891 +tp163892 +a(g163889 +g163891 +S'sketched' +p163893 +tp163894 +a(g163891 +g163893 +S'together' +p163895 +tp163896 +a(g163893 +g163895 +S'in' +p163897 +tp163898 +a(g163895 +g163897 +S'the' +p163899 +tp163900 +a(g163897 +g163899 +S'country,' +p163901 +tp163902 +a(g163899 +g163901 +S'did' +p163903 +tp163904 +a(g163901 +g163903 +S'not' +p163905 +tp163906 +a(g163903 +g163905 +S'join' +p163907 +tp163908 +a(g163905 +g163907 +S'the' +p163909 +tp163910 +a(g163907 +g163909 +S'royal' +p163911 +tp163912 +a(g163909 +g163911 +S'art' +p163913 +tp163914 +a(g163911 +g163913 +S'academy' +p163915 +tp163916 +a(g163913 +g163915 +S'in' +p163917 +tp163918 +a(g163915 +g163917 +S'paris.' +p163919 +tp163920 +a(g163917 +g163919 +S'the' +p163921 +tp163922 +a(g163919 +g163921 +S'scene' +p163923 +tp163924 +a(g163921 +g163923 +S'celebrates' +p163925 +tp163926 +a(g163923 +g163925 +S'the' +p163927 +tp163928 +a(g163925 +g163927 +S'christian' +p163929 +tp163930 +a(g163927 +g163929 +S'belief' +p163931 +tp163932 +a(g163929 +g163931 +S'that' +p163933 +tp163934 +a(g163931 +g163933 +S'after' +p163935 +tp163936 +a(g163933 +g163935 +S"mary's" +p163937 +tp163938 +a(g163935 +g163937 +S'death' +p163939 +tp163940 +a(g163937 +g163939 +S'her' +p163941 +tp163942 +a(g163939 +g163941 +S'body' +p163943 +tp163944 +a(g163941 +g163943 +S'was' +p163945 +tp163946 +a(g163943 +g163945 +S'raised' +p163947 +tp163948 +a(g163945 +g163947 +S'from' +p163949 +tp163950 +a(g163947 +g163949 +S'her' +p163951 +tp163952 +a(g163949 +g163951 +S'tomb' +p163953 +tp163954 +a(g163951 +g163953 +S'into' +p163955 +tp163956 +a(g163953 +g163955 +S'heaven.' +p163957 +tp163958 +a(g163955 +g163957 +S'executed' +p163959 +tp163960 +a(g163957 +g163959 +S'about' +p163961 +tp163962 +a(g163959 +g163961 +S'two' +p163963 +tp163964 +a(g163961 +g163963 +S'years' +p163965 +tp163966 +a(g163963 +g163965 +S'after' +p163967 +tp163968 +a(g163965 +g163967 +S"poussin's" +p163969 +tp163970 +a(g163967 +g163969 +S'arrival' +p163971 +tp163972 +a(g163969 +g163971 +S'in' +p163973 +tp163974 +a(g163971 +g163973 +S'rome,' +p163975 +tp163976 +a(g163973 +g163975 +S'this' +p163977 +tp163978 +a(g163975 +g163977 +S'canvas' +p163979 +tp163980 +a(g163977 +g163979 +S'is' +p163981 +tp163982 +a(g163979 +g163981 +S'among' +p163983 +tp163984 +a(g163981 +g163983 +S'his' +p163985 +tp163986 +a(g163983 +g163985 +S'first' +p163987 +tp163988 +a(g163985 +g163987 +S'known' +p163989 +tp163990 +a(g163987 +g163989 +S'paintings.' +p163991 +tp163992 +a(g163989 +g163991 +S'in' +p163993 +tp163994 +a(g163991 +g163993 +S'contrast' +p163995 +tp163996 +a(g163993 +g163995 +S'to' +p163997 +tp163998 +a(g163995 +g163997 +S'the' +p163999 +tp164000 +a(g163997 +g163999 +S'severity' +p164001 +tp164002 +a(g163999 +g164001 +S'of' +p164003 +tp164004 +a(g164001 +g164003 +S'the' +p164005 +tp164006 +a(g164003 +g164005 +S"artist's" +p164007 +tp164008 +a(g164005 +g164007 +S'later' +p164009 +tp164010 +a(g164007 +g164009 +S'classical' +p164011 +tp164012 +a(g164009 +g164011 +S'works,' +p164013 +tp164014 +a(g164011 +g164013 +S'a' +p164015 +tp164016 +a(g164013 +g164015 +S'joyful' +p164017 +tp164018 +a(g164015 +g164017 +S'exuberance' +p164019 +tp164020 +a(g164017 +g164019 +S'emanates' +p164021 +tp164022 +a(g164019 +g164021 +S'from' +p164023 +tp164024 +a(g164021 +g164023 +S'the' +p164025 +tp164026 +a(g164023 +g164025 +S'billowing' +p164027 +tp164028 +a(g164025 +g164027 +S'clouds,' +p164029 +tp164030 +a(g164027 +g164029 +S'swirling' +p164031 +tp164032 +a(g164029 +g164031 +S'draperies,' +p164033 +tp164034 +a(g164031 +g164033 +S'and' +p164035 +tp164036 +a(g164033 +g164035 +S'flying' +p164037 +tp164038 +a(g164035 +g164037 +S'cherubs.' +p164039 +tp164040 +a(g164037 +g164039 +S'this' +p164041 +tp164042 +a(g164039 +g164041 +S'dynamic' +p164043 +tp164044 +a(g164041 +g164043 +S'movement,' +p164045 +tp164046 +a(g164043 +g164045 +S'off-center' +p164047 +tp164048 +a(g164045 +g164047 +S'composition,' +p164049 +tp164050 +a(g164047 +g164049 +S'and' +p164051 +tp164052 +a(g164049 +g164051 +S'rich' +p164053 +tp164054 +a(g164051 +g164053 +S'color' +p164055 +tp164056 +a(g164053 +g164055 +S'come' +p164057 +tp164058 +a(g164055 +g164057 +S'directly' +p164059 +tp164060 +a(g164057 +g164059 +S'from' +p164061 +tp164062 +a(g164059 +g164061 +S"poussin's" +p164063 +tp164064 +a(g164061 +g164063 +S'knowledge' +p164065 +tp164066 +a(g164063 +g164065 +S'of' +p164067 +tp164068 +a(g164065 +g164067 +S'venetian' +p164069 +tp164070 +a(g164067 +g164069 +S'renaissance' +p164071 +tp164072 +a(g164069 +g164071 +S'painting' +p164073 +tp164074 +a(g164071 +g164073 +S'and' +p164075 +tp164076 +a(g164073 +g164075 +S'of' +p164077 +tp164078 +a(g164075 +g164077 +S'titian' +p164079 +tp164080 +a(g164077 +g164079 +S'in' +p164081 +tp164082 +a(g164079 +g164081 +S'particular.' +p164083 +tp164084 +a(g164081 +g164083 +S'watson' +p164085 +tp164086 +a(g164083 +g164085 +S'and' +p164087 +tp164088 +a(g164085 +g164087 +S'the' +p164089 +tp164090 +a(g164087 +g164089 +S'shark' +p164091 +tp164092 +a(g164089 +g164091 +S'the' +p164093 +tp164094 +a(g164091 +g164093 +S"rescuers'" +p164095 +tp164096 +a(g164093 +g164095 +S'anxious' +p164097 +tp164098 +a(g164095 +g164097 +S'expressions' +p164099 +tp164100 +a(g164097 +g164099 +S'and' +p164101 +tp164102 +a(g164099 +g164101 +S'actions' +p164103 +tp164104 +a(g164101 +g164103 +S'reveal' +p164105 +tp164106 +a(g164103 +g164105 +S'both' +p164107 +tp164108 +a(g164105 +g164107 +S'concern' +p164109 +tp164110 +a(g164107 +g164109 +S'for' +p164111 +tp164112 +a(g164109 +g164111 +S'their' +p164113 +tp164114 +a(g164111 +g164113 +S'thrashing' +p164115 +tp164116 +a(g164113 +g164115 +S'companion' +p164117 +tp164118 +a(g164115 +g164117 +S'and' +p164119 +tp164120 +a(g164117 +g164119 +S'a' +p164121 +tp164122 +a(g164119 +g164121 +S'growing' +p164123 +tp164124 +a(g164121 +g164123 +S'awareness' +p164125 +tp164126 +a(g164123 +g164125 +S'of' +p164127 +tp164128 +a(g164125 +g164127 +S'their' +p164129 +tp164130 +a(g164127 +g164129 +S'own' +p164131 +tp164132 +a(g164129 +g164131 +S'peril.' +p164133 +tp164134 +a(g164131 +g164133 +S'time' +p164135 +tp164136 +a(g164133 +g164135 +S'stands' +p164137 +tp164138 +a(g164135 +g164137 +S'still' +p164139 +tp164140 +a(g164137 +g164139 +S'as' +p164141 +tp164142 +a(g164139 +g164141 +S'the' +p164143 +tp164144 +a(g164141 +g164143 +S'viewer' +p164145 +tp164146 +a(g164143 +g164145 +S'is' +p164147 +tp164148 +a(g164145 +g164147 +S'forced' +p164149 +tp164150 +a(g164147 +g164149 +S'to' +p164151 +tp164152 +a(g164149 +g164151 +S'ponder' +p164153 +tp164154 +a(g164151 +g164153 +S"watson's" +p164155 +tp164156 +a(g164153 +g164155 +S'fate.' +p164157 +tp164158 +a(g164155 +g164157 +S'miraculously,' +p164159 +tp164160 +a(g164157 +g164159 +S'he' +p164161 +tp164162 +a(g164159 +g164161 +S'was' +p164163 +tp164164 +a(g164161 +g164163 +S'saved' +p164165 +tp164166 +a(g164163 +g164165 +S'from' +p164167 +tp164168 +a(g164165 +g164167 +S'almost' +p164169 +tp164170 +a(g164167 +g164169 +S'certain' +p164171 +tp164172 +a(g164169 +g164171 +S'death' +p164173 +tp164174 +a(g164171 +g164173 +S'and' +p164175 +tp164176 +a(g164173 +g164175 +S'went' +p164177 +tp164178 +a(g164175 +g164177 +S'on' +p164179 +tp164180 +a(g164177 +g164179 +S'to' +p164181 +tp164182 +a(g164179 +g164181 +S'become' +p164183 +tp164184 +a(g164181 +g164183 +S'a' +p164185 +tp164186 +a(g164183 +g164185 +S'successful' +p164187 +tp164188 +a(g164185 +g164187 +S'british' +p164189 +tp164190 +a(g164187 +g164189 +S'merchant' +p164191 +tp164192 +a(g164189 +g164191 +S'and' +p164193 +tp164194 +a(g164191 +g164193 +S'politician.' +p164195 +tp164196 +a(g164193 +g164195 +S'although' +p164197 +tp164198 +a(g164195 +g164197 +S'copley' +p164199 +tp164200 +a(g164197 +g164199 +S'underscored' +p164201 +tp164202 +a(g164199 +g164201 +S'the' +p164203 +tp164204 +a(g164201 +g164203 +S"scene's" +p164205 +tp164206 +a(g164203 +g164205 +S'tension' +p164207 +tp164208 +a(g164205 +g164207 +S'and' +p164209 +tp164210 +a(g164207 +g164209 +S'immediacy,' +p164211 +tp164212 +a(g164209 +g164211 +S'the' +p164213 +tp164214 +a(g164211 +g164213 +S'seemingly' +p164215 +tp164216 +a(g164213 +g164215 +S'spontaneous' +p164217 +tp164218 +a(g164215 +g164217 +S'poses' +p164219 +tp164220 +a(g164217 +g164219 +S'actually' +p164221 +tp164222 +a(g164219 +g164221 +S'were' +p164223 +tp164224 +a(g164221 +g164223 +S'based' +p164225 +tp164226 +a(g164223 +g164225 +S'on' +p164227 +tp164228 +a(g164225 +g164227 +S'art' +p164229 +tp164230 +a(g164227 +g164229 +S'historical' +p164231 +tp164232 +a(g164229 +g164231 +S'precedents.' +p164233 +tp164234 +a(g164231 +g164233 +S'the' +p164235 +tp164236 +a(g164233 +g164235 +S"harpooner's" +p164237 +tp164238 +a(g164235 +g164237 +S'pose,' +p164239 +tp164240 +a(g164237 +g164239 +S'for' +p164241 +tp164242 +a(g164239 +g164241 +S'example,' +p164243 +tp164244 +a(g164241 +g164243 +S'recalls' +p164245 +tp164246 +a(g164243 +g164245 +S"raphael's" +p164247 +tp164248 +a(g164245 +g164247 +S'altarpiece' +p164249 +tp164250 +a(g164247 +g164249 +S'of' +p164251 +tp164252 +a(g164249 +g164251 +S'the' +p164253 +tp164254 +a(g164251 +g164253 +S'archangel' +p164255 +tp164256 +a(g164253 +g164255 +S'michael' +p164257 +tp164258 +a(g164255 +g164257 +S'using' +p164259 +tp164260 +a(g164257 +g164259 +S'a' +p164261 +tp164262 +a(g164259 +g164261 +S'spear' +p164263 +tp164264 +a(g164261 +g164263 +S'to' +p164265 +tp164266 +a(g164263 +g164265 +S'drive' +p164267 +tp164268 +a(g164265 +g164267 +S'satan' +p164269 +tp164270 +a(g164267 +g164269 +S'out' +p164271 +tp164272 +a(g164269 +g164271 +S'of' +p164273 +tp164274 +a(g164271 +g164273 +S'heaven.' +p164275 +tp164276 +a(g164273 +g164275 +S'the' +p164277 +tp164278 +a(g164275 +g164277 +S'oil' +p164279 +tp164280 +a(g164277 +g164279 +S"painting's" +p164281 +tp164282 +a(g164279 +g164281 +S'enormous' +p164283 +tp164284 +a(g164281 +g164283 +S'acclaim' +p164285 +tp164286 +a(g164283 +g164285 +S'ensured' +p164287 +tp164288 +a(g164285 +g164287 +S"copley's" +p164289 +tp164290 +a(g164287 +g164289 +S'appointment' +p164291 +tp164292 +a(g164289 +g164291 +S'to' +p164293 +tp164294 +a(g164291 +g164293 +S'the' +p164295 +tp164296 +a(g164293 +g164295 +S'prestigious' +p164297 +tp164298 +a(g164295 +g164297 +S'royal' +p164299 +tp164300 +a(g164297 +g164299 +S'academy,' +p164301 +tp164302 +a(g164299 +g164301 +S'and' +p164303 +tp164304 +a(g164301 +g164303 +S'he' +p164305 +tp164306 +a(g164303 +g164305 +S'earned' +p164307 +tp164308 +a(g164305 +g164307 +S'a' +p164309 +tp164310 +a(g164307 +g164309 +S'fortune' +p164311 +tp164312 +a(g164309 +g164311 +S'selling' +p164313 +tp164314 +a(g164311 +g164313 +S'engravings' +p164315 +tp164316 +a(g164313 +g164315 +S'of' +p164317 +tp164318 +a(g164315 +g164317 +S'its' +p164319 +tp164320 +a(g164317 +g164319 +S'design.' +p164321 +tp164322 +a(g164319 +g164321 +S'roman' +p164323 +tp164324 +a(g164321 +g164323 +S'historians' +p164325 +tp164326 +a(g164323 +g164325 +S'directed' +p164327 +tp164328 +a(g164325 +g164327 +S'glowing' +p164329 +tp164330 +a(g164327 +g164329 +S'praise' +p164331 +tp164332 +a(g164329 +g164331 +S'to' +p164333 +tp164334 +a(g164331 +g164333 +S'agrippina' +p164335 +tp164336 +a(g164333 +g164335 +S'and' +p164337 +tp164338 +a(g164335 +g164337 +S'her' +p164339 +tp164340 +a(g164337 +g164339 +S'husband' +p164341 +tp164342 +a(g164339 +g164341 +S'germanicus' +p164343 +tp164344 +a(g164341 +g164343 +S'(died' +p164345 +tp164346 +a(g164343 +g164345 +S'a.d.' +p164347 +tp164348 +a(g164345 +g164347 +S'19).' +p164349 +tp164350 +a(g164347 +g164349 +S'tacitus' +p164351 +tp164352 +a(g164349 +g164351 +S'described' +p164353 +tp164354 +a(g164351 +g164353 +S'her' +p164355 +tp164356 +a(g164353 +g164355 +S'as' +p164357 +tp164358 +a(g164355 +g164357 +S'"the' +p164359 +tp164360 +a(g164357 +g164359 +S'glory' +p164361 +tp164362 +a(g164359 +g164361 +S'of' +p164363 +tp164364 +a(g164361 +g164363 +S'her' +p164365 +tp164366 +a(g164363 +g164365 +S'country,"' +p164367 +tp164368 +a(g164365 +g164367 +S'while' +p164369 +tp164370 +a(g164367 +g164369 +S'suetonius' +p164371 +tp164372 +a(g164369 +g164371 +S'claimed' +p164373 +tp164374 +a(g164371 +g164373 +S'he' +p164375 +tp164376 +a(g164373 +g164375 +S'"possessed' +p164377 +tp164378 +a(g164375 +g164377 +S'all' +p164379 +tp164380 +a(g164377 +g164379 +S'the' +p164381 +tp164382 +a(g164379 +g164381 +S'highest' +p164383 +tp164384 +a(g164381 +g164383 +S'qualities' +p164385 +tp164386 +a(g164383 +g164385 +S'of' +p164387 +tp164388 +a(g164385 +g164387 +S'body' +p164389 +tp164390 +a(g164387 +g164389 +S'and' +p164391 +tp164392 +a(g164389 +g164391 +S'mind."' +p164393 +tp164394 +a(g164391 +g164393 +S'germanicus,' +p164395 +tp164396 +a(g164393 +g164395 +S'adopted' +p164397 +tp164398 +a(g164395 +g164397 +S'son' +p164399 +tp164400 +a(g164397 +g164399 +S'of' +p164401 +tp164402 +a(g164399 +g164401 +S'the' +p164403 +tp164404 +a(g164401 +g164403 +S'emperor' +p164405 +tp164406 +a(g164403 +g164405 +S'tiberius,' +p164407 +tp164408 +a(g164405 +g164407 +S'was' +p164409 +tp164410 +a(g164407 +g164409 +S'a' +p164411 +tp164412 +a(g164409 +g164411 +S'brilliant' +p164413 +tp164414 +a(g164411 +g164413 +S'general.' +p164415 +tp164416 +a(g164413 +g164415 +S'agrippina,' +p164417 +tp164418 +a(g164415 +g164417 +S'granddaughter' +p164419 +tp164420 +a(g164417 +g164419 +S'of' +p164421 +tp164422 +a(g164419 +g164421 +S'augustus,' +p164423 +tp164424 +a(g164421 +g164423 +S"rome's" +p164425 +tp164426 +a(g164423 +g164425 +S'first' +p164427 +tp164428 +a(g164425 +g164427 +S'emperor,' +p164429 +tp164430 +a(g164427 +g164429 +S'was' +p164431 +tp164432 +a(g164429 +g164431 +S'renowned' +p164433 +tp164434 +a(g164431 +g164433 +S'for' +p164435 +tp164436 +a(g164433 +g164435 +S'devotion' +p164437 +tp164438 +a(g164435 +g164437 +S'and' +p164439 +tp164440 +a(g164437 +g164439 +S'bravery.' +p164441 +tp164442 +a(g164439 +g164441 +S'for' +p164443 +tp164444 +a(g164441 +g164443 +S'rubens,' +p164445 +tp164446 +a(g164443 +g164445 +S'the' +p164447 +tp164448 +a(g164445 +g164447 +S"couple's" +p164449 +tp164450 +a(g164447 +g164449 +S'moral' +p164451 +tp164452 +a(g164449 +g164451 +S'virtue' +p164453 +tp164454 +a(g164451 +g164453 +S'was' +p164455 +tp164456 +a(g164453 +g164455 +S'reflected' +p164457 +tp164458 +a(g164455 +g164457 +S'in' +p164459 +tp164460 +a(g164457 +g164459 +S'their' +p164461 +tp164462 +a(g164459 +g164461 +S'physical' +p164463 +tp164464 +a(g164461 +g164463 +S'beauty.' +p164465 +tp164466 +a(g164463 +g164465 +S'agrippina' +p164467 +tp164468 +a(g164465 +g164467 +S'has' +p164469 +tp164470 +a(g164467 +g164469 +S'a' +p164471 +tp164472 +a(g164469 +g164471 +S'strong' +p164473 +tp164474 +a(g164471 +g164473 +S'face,' +p164475 +tp164476 +a(g164473 +g164475 +S'with' +p164477 +tp164478 +a(g164475 +g164477 +S'glowing' +p164479 +tp164480 +a(g164477 +g164479 +S'skin' +p164481 +tp164482 +a(g164479 +g164481 +S'and' +p164483 +tp164484 +a(g164481 +g164483 +S'golden' +p164485 +tp164486 +a(g164483 +g164485 +S'hair.' +p164487 +tp164488 +a(g164485 +g164487 +S'notice' +p164489 +tp164490 +a(g164487 +g164489 +S'how' +p164491 +tp164492 +a(g164489 +g164491 +S'subtly' +p164493 +tp164494 +a(g164491 +g164493 +S'rubens' +p164495 +tp164496 +a(g164493 +g164495 +S'distinguished' +p164497 +tp164498 +a(g164495 +g164497 +S'her' +p164499 +tp164500 +a(g164497 +g164499 +S'ivory' +p164501 +tp164502 +a(g164499 +g164501 +S'complexion' +p164503 +tp164504 +a(g164501 +g164503 +S'from' +p164505 +tp164506 +a(g164503 +g164505 +S'the' +p164507 +tp164508 +a(g164505 +g164507 +S'slightly' +p164509 +tp164510 +a(g164507 +g164509 +S'ruddier' +p164511 +tp164512 +a(g164509 +g164511 +S'face' +p164513 +tp164514 +a(g164511 +g164513 +S'of' +p164515 +tp164516 +a(g164513 +g164515 +S'her' +p164517 +tp164518 +a(g164515 +g164517 +S'husband.' +p164519 +tp164520 +a(g164517 +g164519 +S'the' +p164521 +tp164522 +a(g164519 +g164521 +S'unusual' +p164523 +tp164524 +a(g164521 +g164523 +S'double-bust' +p164525 +tp164526 +a(g164523 +g164525 +S'format,' +p164527 +tp164528 +a(g164525 +g164527 +S'like' +p164529 +tp164530 +a(g164527 +g164529 +S'the' +p164531 +tp164532 +a(g164529 +g164531 +S"paint's" +p164533 +tp164534 +a(g164531 +g164533 +S'luminous' +p164535 +tp164536 +a(g164533 +g164535 +S'translucent' +p164537 +tp164538 +a(g164535 +g164537 +S'quality,' +p164539 +tp164540 +a(g164537 +g164539 +S'is' +p164541 +tp164542 +a(g164539 +g164541 +S'explained' +p164543 +tp164544 +a(g164541 +g164543 +S'by' +p164545 +tp164546 +a(g164543 +g164545 +S"rubens'" +p164547 +tp164548 +a(g164545 +g164547 +S'inspiration:' +p164549 +tp164550 +a(g164547 +g164549 +S'ancient' +p164551 +tp164552 +a(g164549 +g164551 +S'cameos.' +p164553 +tp164554 +a(g164551 +g164553 +S'the' +p164555 +tp164556 +a(g164553 +g164555 +S'artist' +p164557 +tp164558 +a(g164555 +g164557 +S'was' +p164559 +tp164560 +a(g164557 +g164559 +S'a' +p164561 +tp164562 +a(g164559 +g164561 +S'great' +p164563 +tp164564 +a(g164561 +g164563 +S'collector' +p164565 +tp164566 +a(g164563 +g164565 +S'of' +p164567 +tp164568 +a(g164565 +g164567 +S'antiquities,' +p164569 +tp164570 +a(g164567 +g164569 +S'including' +p164571 +tp164572 +a(g164569 +g164571 +S'engraved' +p164573 +tp164574 +a(g164571 +g164573 +S'gems.' +p164575 +tp164576 +a(g164573 +g164575 +S'he' +p164577 +tp164578 +a(g164575 +g164577 +S'planned' +p164579 +tp164580 +a(g164577 +g164579 +S'to' +p164581 +tp164582 +a(g164579 +g164581 +S'illustrate' +p164583 +tp164584 +a(g164581 +g164583 +S'a' +p164585 +tp164586 +a(g164583 +g164585 +S'publication' +p164587 +tp164588 +a(g164585 +g164587 +S'of' +p164589 +tp164590 +a(g164587 +g164589 +S'these' +p164591 +tp164592 +a(g164589 +g164591 +S'small-scale' +p164593 +tp164594 +a(g164591 +g164593 +S'sculptures,' +p164595 +tp164596 +a(g164593 +g164595 +S'but' +p164597 +tp164598 +a(g164595 +g164597 +S'the' +p164599 +tp164600 +a(g164597 +g164599 +S'project' +p164601 +tp164602 +a(g164599 +g164601 +S'was' +p164603 +tp164604 +a(g164601 +g164603 +S'never' +p164605 +tp164606 +a(g164603 +g164605 +S'completed.' +p164607 +tp164608 +a(g164605 +g164607 +S"germanicus'" +p164609 +tp164610 +a(g164607 +g164609 +S'profile' +p164611 +tp164612 +a(g164609 +g164611 +S'here—with' +p164613 +tp164614 +a(g164611 +g164613 +S'aquiline' +p164615 +tp164616 +a(g164613 +g164615 +S'nose,' +p164617 +tp164618 +a(g164615 +g164617 +S'arched' +p164619 +tp164620 +a(g164617 +g164619 +S'brows,' +p164621 +tp164622 +a(g164619 +g164621 +S'and' +p164623 +tp164624 +a(g164621 +g164623 +S'rounded' +p164625 +tp164626 +a(g164623 +g164625 +S'chin—is' +p164627 +tp164628 +a(g164625 +g164627 +S'similar' +p164629 +tp164630 +a(g164627 +g164629 +S'to' +p164631 +tp164632 +a(g164629 +g164631 +S'a' +p164633 +tp164634 +a(g164631 +g164633 +S'design' +p164635 +tp164636 +a(g164633 +g164635 +S'rubens' +p164637 +tp164638 +a(g164635 +g164637 +S'made' +p164639 +tp164640 +a(g164637 +g164639 +S'possibly' +p164641 +tp164642 +a(g164639 +g164641 +S'after' +p164643 +tp164644 +a(g164641 +g164643 +S'one' +p164645 +tp164646 +a(g164643 +g164645 +S'of' +p164647 +tp164648 +a(g164645 +g164647 +S'his' +p164649 +tp164650 +a(g164647 +g164649 +S'own' +p164651 +tp164652 +a(g164649 +g164651 +S'cameos.' +p164653 +tp164654 +a(g164651 +g164653 +S'this' +p164655 +tp164656 +a(g164653 +g164655 +S'monumental' +p164657 +tp164658 +a(g164655 +g164657 +S'view' +p164659 +tp164660 +a(g164657 +g164659 +S'of' +p164661 +tp164662 +a(g164659 +g164661 +S'the' +p164663 +tp164664 +a(g164661 +g164663 +S'hudson' +p164665 +tp164666 +a(g164663 +g164665 +S'river' +p164667 +tp164668 +a(g164665 +g164667 +S'valley' +p164669 +tp164670 +a(g164667 +g164669 +S'was' +p164671 +tp164672 +a(g164669 +g164671 +S'painted' +p164673 +tp164674 +a(g164671 +g164673 +S'from' +p164675 +tp164676 +a(g164673 +g164675 +S'memory' +p164677 +tp164678 +a(g164675 +g164677 +S'in' +p164679 +tp164680 +a(g164677 +g164679 +S'the' +p164681 +tp164682 +a(g164679 +g164681 +S"artist's" +p164683 +tp164684 +a(g164681 +g164683 +S'london' +p164685 +tp164686 +a(g164683 +g164685 +S'studio.' +p164687 +tp164688 +a(g164685 +g164687 +S'cropsey' +p164689 +tp164690 +a(g164687 +g164689 +S'adopted' +p164691 +tp164692 +a(g164689 +g164691 +S'a' +p164693 +tp164694 +a(g164691 +g164693 +S'high' +p164695 +tp164696 +a(g164693 +g164695 +S'vantage' +p164697 +tp164698 +a(g164695 +g164697 +S'point,' +p164699 +tp164700 +a(g164697 +g164699 +S'looking' +p164701 +tp164702 +a(g164699 +g164701 +S'southeast' +p164703 +tp164704 +a(g164701 +g164703 +S'toward' +p164705 +tp164706 +a(g164703 +g164705 +S'the' +p164707 +tp164708 +a(g164705 +g164707 +S'distant' +p164709 +tp164710 +a(g164707 +g164709 +S'hudson' +p164711 +tp164712 +a(g164709 +g164711 +S'river' +p164713 +tp164714 +a(g164711 +g164713 +S'and' +p164715 +tp164716 +a(g164713 +g164715 +S'the' +p164717 +tp164718 +a(g164715 +g164717 +S'flank' +p164719 +tp164720 +a(g164717 +g164719 +S'of' +p164721 +tp164722 +a(g164719 +g164721 +S'storm' +p164723 +tp164724 +a(g164721 +g164723 +S'king' +p164725 +tp164726 +a(g164723 +g164725 +S'mountain.' +p164727 +tp164728 +a(g164725 +g164727 +S'a' +p164729 +tp164730 +a(g164727 +g164729 +S'small' +p164731 +tp164732 +a(g164729 +g164731 +S'stream' +p164733 +tp164734 +a(g164731 +g164733 +S'leads' +p164735 +tp164736 +a(g164733 +g164735 +S'from' +p164737 +tp164738 +a(g164735 +g164737 +S'the' +p164739 +tp164740 +a(g164737 +g164739 +S'foreground,' +p164741 +tp164742 +a(g164739 +g164741 +S'where' +p164743 +tp164744 +a(g164741 +g164743 +S'three' +p164745 +tp164746 +a(g164743 +g164745 +S'hunters' +p164747 +tp164748 +a(g164745 +g164747 +S'and' +p164749 +tp164750 +a(g164747 +g164749 +S'their' +p164751 +tp164752 +a(g164749 +g164751 +S'dogs' +p164753 +tp164754 +a(g164751 +g164753 +S'gaze' +p164755 +tp164756 +a(g164753 +g164755 +S'into' +p164757 +tp164758 +a(g164755 +g164757 +S'the' +p164759 +tp164760 +a(g164757 +g164759 +S'sunlight.' +p164761 +tp164762 +a(g164759 +g164761 +S'all' +p164763 +tp164764 +a(g164761 +g164763 +S'along' +p164765 +tp164766 +a(g164763 +g164765 +S'the' +p164767 +tp164768 +a(g164765 +g164767 +S'meandering' +p164769 +tp164770 +a(g164767 +g164769 +S'tributary' +p164771 +tp164772 +a(g164769 +g164771 +S'there' +p164773 +tp164774 +a(g164771 +g164773 +S'are' +p164775 +tp164776 +a(g164773 +g164775 +S'signs' +p164777 +tp164778 +a(g164775 +g164777 +S'of' +p164779 +tp164780 +a(g164777 +g164779 +S"man's" +p164781 +tp164782 +a(g164779 +g164781 +S'peaceful' +p164783 +tp164784 +a(g164781 +g164783 +S'coexistence' +p164785 +tp164786 +a(g164783 +g164785 +S'with' +p164787 +tp164788 +a(g164785 +g164787 +S'nature:' +p164789 +tp164790 +a(g164787 +g164789 +S'a' +p164791 +tp164792 +a(g164789 +g164791 +S'small' +p164793 +tp164794 +a(g164791 +g164793 +S'log' +p164795 +tp164796 +a(g164793 +g164795 +S'cabin,' +p164797 +tp164798 +a(g164795 +g164797 +S'grazing' +p164799 +tp164800 +a(g164797 +g164799 +S'sheep,' +p164801 +tp164802 +a(g164799 +g164801 +S'children' +p164803 +tp164804 +a(g164801 +g164803 +S'playing' +p164805 +tp164806 +a(g164803 +g164805 +S'on' +p164807 +tp164808 +a(g164805 +g164807 +S'a' +p164809 +tp164810 +a(g164807 +g164809 +S'bridge,' +p164811 +tp164812 +a(g164809 +g164811 +S'and' +p164813 +tp164814 +a(g164811 +g164813 +S'cows' +p164815 +tp164816 +a(g164813 +g164815 +S'standing' +p164817 +tp164818 +a(g164815 +g164817 +S'placidly' +p164819 +tp164820 +a(g164817 +g164819 +S'in' +p164821 +tp164822 +a(g164819 +g164821 +S'the' +p164823 +tp164824 +a(g164821 +g164823 +S'water.' +p164825 +tp164826 +a(g164823 +g164825 +S'here,' +p164827 +tp164828 +a(g164825 +g164827 +S'man' +p164829 +tp164830 +a(g164827 +g164829 +S'neither' +p164831 +tp164832 +a(g164829 +g164831 +S'conquers' +p164833 +tp164834 +a(g164831 +g164833 +S'nor' +p164835 +tp164836 +a(g164833 +g164835 +S'is' +p164837 +tp164838 +a(g164835 +g164837 +S'subservient' +p164839 +tp164840 +a(g164837 +g164839 +S'to' +p164841 +tp164842 +a(g164839 +g164841 +S'nature;' +p164843 +tp164844 +a(g164841 +g164843 +S'both' +p164845 +tp164846 +a(g164843 +g164845 +S'coexist' +p164847 +tp164848 +a(g164845 +g164847 +S'harmoniously.' +p164849 +tp164850 +a(g164847 +g164849 +S'in' +p164851 +tp164852 +a(g164849 +g164851 +S'fact,' +p164853 +tp164854 +a(g164851 +g164853 +S'the' +p164855 +tp164856 +a(g164853 +g164855 +S'landscape' +p164857 +tp164858 +a(g164855 +g164857 +S'is' +p164859 +tp164860 +a(g164857 +g164859 +S'depicted' +p164861 +tp164862 +a(g164859 +g164861 +S'as' +p164863 +tp164864 +a(g164861 +g164863 +S'a' +p164865 +tp164866 +a(g164863 +g164865 +S'ready' +p164867 +tp164868 +a(g164865 +g164867 +S'arena' +p164869 +tp164870 +a(g164867 +g164869 +S'for' +p164871 +tp164872 +a(g164869 +g164871 +S'further' +p164873 +tp164874 +a(g164871 +g164873 +S'agricultural' +p164875 +tp164876 +a(g164873 +g164875 +S'expansion.' +p164877 +tp164878 +a(g164875 +g164877 +S'while' +p164879 +tp164880 +a(g164877 +g164879 +S'autumnal' +p164881 +tp164882 +a(g164879 +g164881 +S'scenes' +p164883 +tp164884 +a(g164881 +g164883 +S'traditionally' +p164885 +tp164886 +a(g164883 +g164885 +S'are' +p164887 +tp164888 +a(g164885 +g164887 +S'associated' +p164889 +tp164890 +a(g164887 +g164889 +S'with' +p164891 +tp164892 +a(g164889 +g164891 +S'the' +p164893 +tp164894 +a(g164891 +g164893 +S'transience' +p164895 +tp164896 +a(g164893 +g164895 +S'of' +p164897 +tp164898 +a(g164895 +g164897 +S'life,' +p164899 +tp164900 +a(g164897 +g164899 +S"cropsey's" +p164901 +tp164902 +a(g164899 +g164901 +S'painting' +p164903 +tp164904 +a(g164901 +g164903 +S'is' +p164905 +tp164906 +a(g164903 +g164905 +S'more' +p164907 +tp164908 +a(g164905 +g164907 +S'a' +p164909 +tp164910 +a(g164907 +g164909 +S'celebration' +p164911 +tp164912 +a(g164909 +g164911 +S'of' +p164913 +tp164914 +a(g164911 +g164913 +S'american' +p164915 +tp164916 +a(g164913 +g164915 +S'nationalism.' +p164917 +tp164918 +a(g164915 +g164917 +S'as' +p164919 +tp164920 +a(g164917 +g164919 +S'a' +p164921 +tp164922 +a(g164919 +g164921 +S'critic' +p164923 +tp164924 +a(g164921 +g164923 +S'wrote' +p164925 +tp164926 +a(g164923 +g164925 +S'in' +p164927 +tp164928 +a(g164925 +g164927 +S'1860,' +p164929 +tp164930 +a(g164927 +g164929 +S'the' +p164931 +tp164932 +a(g164929 +g164931 +S'picture' +p164933 +tp164934 +a(g164931 +g164933 +S'represents' +p164935 +tp164936 +a(g164933 +g164935 +S'"not' +p164937 +tp164938 +a(g164935 +g164937 +S'the' +p164939 +tp164940 +a(g164937 +g164939 +S'solemn' +p164941 +tp164942 +a(g164939 +g164941 +S'wasting' +p164943 +tp164944 +a(g164941 +g164943 +S'away' +p164945 +tp164946 +a(g164943 +g164945 +S'of' +p164947 +tp164948 +a(g164945 +g164947 +S'the' +p164949 +tp164950 +a(g164947 +g164949 +S'year,' +p164951 +tp164952 +a(g164949 +g164951 +S'but' +p164953 +tp164954 +a(g164951 +g164953 +S'its' +p164955 +tp164956 +a(g164953 +g164955 +S'joyful' +p164957 +tp164958 +a(g164955 +g164957 +S'crowning' +p164959 +tp164960 +a(g164957 +g164959 +S'festival."' +p164961 +tp164962 +a(g164959 +g164961 +S'the' +p164963 +tp164964 +a(g164961 +g164963 +S'painting' +p164965 +tp164966 +a(g164963 +g164965 +S'created' +p164967 +tp164968 +a(g164965 +g164967 +S'a' +p164969 +tp164970 +a(g164967 +g164969 +S'sensation' +p164971 +tp164972 +a(g164969 +g164971 +S'among' +p164973 +tp164974 +a(g164971 +g164973 +S'many' +p164975 +tp164976 +a(g164973 +g164975 +S'british' +p164977 +tp164978 +a(g164975 +g164977 +S'viewers' +p164979 +tp164980 +a(g164977 +g164979 +S'who' +p164981 +tp164982 +a(g164979 +g164981 +S'had' +p164983 +tp164984 +a(g164981 +g164983 +S'never' +p164985 +tp164986 +a(g164983 +g164985 +S'seen' +p164987 +tp164988 +a(g164985 +g164987 +S'such' +p164989 +tp164990 +a(g164987 +g164989 +S'a' +p164991 +tp164992 +a(g164989 +g164991 +S'colorful' +p164993 +tp164994 +a(g164991 +g164993 +S'panorama' +p164995 +tp164996 +a(g164993 +g164995 +S'of' +p164997 +tp164998 +a(g164995 +g164997 +S'fall' +p164999 +tp165000 +a(g164997 +g164999 +S'foliage.' +p165001 +tp165002 +a(g164999 +g165001 +S'indeed,' +p165003 +tp165004 +a(g165001 +g165003 +S'because' +p165005 +tp165006 +a(g165003 +g165005 +S'the' +p165007 +tp165008 +a(g165005 +g165007 +S'autumn' +p165009 +tp165010 +a(g165007 +g165009 +S'in' +p165011 +tp165012 +a(g165009 +g165011 +S'britain' +p165013 +tp165014 +a(g165011 +g165013 +S'customarily' +p165015 +tp165016 +a(g165013 +g165015 +S'is' +p165017 +tp165018 +a(g165015 +g165017 +S'far' +p165019 +tp165020 +a(g165017 +g165019 +S'less' +p165021 +tp165022 +a(g165019 +g165021 +S'colorful' +p165023 +tp165024 +a(g165021 +g165023 +S'than' +p165025 +tp165026 +a(g165023 +g165025 +S'in' +p165027 +tp165028 +a(g165025 +g165027 +S'the' +p165029 +tp165030 +a(g165027 +g165029 +S'united' +p165031 +tp165032 +a(g165029 +g165031 +S'states,' +p165033 +tp165034 +a(g165031 +g165033 +S'the' +p165035 +tp165036 +a(g165033 +g165035 +S'artist' +p165037 +tp165038 +a(g165035 +g165037 +S'decided' +p165039 +tp165040 +a(g165037 +g165039 +S'to' +p165041 +tp165042 +a(g165039 +g165041 +S'display' +p165043 +tp165044 +a(g165041 +g165043 +S'specimens' +p165045 +tp165046 +a(g165043 +g165045 +S'of' +p165047 +tp165048 +a(g165045 +g165047 +S'north' +p165049 +tp165050 +a(g165047 +g165049 +S'american' +p165051 +tp165052 +a(g165049 +g165051 +S'leaves' +p165053 +tp165054 +a(g165051 +g165053 +S'alongside' +p165055 +tp165056 +a(g165053 +g165055 +S'his' +p165057 +tp165058 +a(g165055 +g165057 +S'painting' +p165059 +tp165060 +a(g165057 +g165059 +S'to' +p165061 +tp165062 +a(g165059 +g165061 +S'persuade' +p165063 +tp165064 +a(g165061 +g165063 +S'skeptical' +p165065 +tp165066 +a(g165063 +g165065 +S'visitors' +p165067 +tp165068 +a(g165065 +g165067 +S'that' +p165069 +tp165070 +a(g165067 +g165069 +S'his' +p165071 +tp165072 +a(g165069 +g165071 +S'rendition' +p165073 +tp165074 +a(g165071 +g165073 +S'was' +p165075 +tp165076 +a(g165073 +g165075 +S'botanically' +p165077 +tp165078 +a(g165075 +g165077 +S'accurate.' +p165079 +tp165080 +a(g165077 +g165079 +S'mary' +p165081 +tp165082 +a(g165079 +g165081 +S'cassatt' +p165083 +tp165084 +a(g165081 +g165083 +S'had' +p165085 +tp165086 +a(g165083 +g165085 +S'great' +p165087 +tp165088 +a(g165085 +g165087 +S'respect' +p165089 +tp165090 +a(g165087 +g165089 +S'for' +p165091 +tp165092 +a(g165089 +g165091 +S'the' +p165093 +tp165094 +a(g165091 +g165093 +S'art' +p165095 +tp165096 +a(g165093 +g165095 +S'of' +p165097 +tp165098 +a(g165095 +g165097 +S'manet' +p165099 +tp165100 +a(g165097 +g165099 +S'and' +p165101 +tp165102 +a(g165099 +g165101 +S'degas.' +p165103 +tp165104 +a(g165101 +g165103 +S'although' +p165105 +tp165106 +a(g165103 +g165105 +S'the' +p165107 +tp165108 +a(g165105 +g165107 +S'identity' +p165109 +tp165110 +a(g165107 +g165109 +S'of' +p165111 +tp165112 +a(g165109 +g165111 +S'the' +p165113 +tp165114 +a(g165111 +g165113 +S'sitter' +p165115 +tp165116 +a(g165113 +g165115 +S'in' +p165117 +tp165118 +a(g165115 +g165117 +S'during' +p165119 +tp165120 +a(g165117 +g165119 +S'1869' +p165121 +tp165122 +a(g165119 +g165121 +S'courbet' +p165123 +tp165124 +a(g165121 +g165123 +S'had' +p165125 +tp165126 +a(g165123 +g165125 +S'worked' +p165127 +tp165128 +a(g165125 +g165127 +S'along' +p165129 +tp165130 +a(g165127 +g165129 +S'the' +p165131 +tp165132 +a(g165129 +g165131 +S'beaches' +p165133 +tp165134 +a(g165131 +g165133 +S'in' +p165135 +tp165136 +a(g165133 +g165135 +S'normandy,' +p165137 +tp165138 +a(g165135 +g165137 +S'painting' +p165139 +tp165140 +a(g165137 +g165139 +S'sketches' +p165141 +tp165142 +a(g165139 +g165141 +S'that' +p165143 +tp165144 +a(g165141 +g165143 +S'he' +p165145 +tp165146 +a(g165143 +g165145 +S'later' +p165147 +tp165148 +a(g165145 +g165147 +S'used' +p165149 +tp165150 +a(g165147 +g165149 +S'to' +p165151 +tp165152 +a(g165149 +g165151 +S'produce' +p165153 +tp165154 +a(g165151 +g165153 +S'a' +p165155 +tp165156 +a(g165153 +g165155 +S'number' +p165157 +tp165158 +a(g165155 +g165157 +S'of' +p165159 +tp165160 +a(g165157 +g165159 +S'finished' +p165161 +tp165162 +a(g165159 +g165161 +S'paintings' +p165163 +tp165164 +a(g165161 +g165163 +S'in' +p165165 +tp165166 +a(g165163 +g165165 +S'the' +p165167 +tp165168 +a(g165165 +g165167 +S'studio:' +p165169 +tp165170 +a(g165167 +g165169 +S'"did' +p165171 +tp165172 +a(g165169 +g165171 +S'i' +p165173 +tp165174 +a(g165171 +g165173 +S'ever' +p165175 +tp165176 +a(g165173 +g165175 +S'earn' +p165177 +tp165178 +a(g165175 +g165177 +S'my' +p165179 +tp165180 +a(g165177 +g165179 +S'bread' +p165181 +tp165182 +a(g165179 +g165181 +S'and' +p165183 +tp165184 +a(g165181 +g165183 +S'butter,"' +p165185 +tp165186 +a(g165183 +g165185 +S'he' +p165187 +tp165188 +a(g165185 +g165187 +S'wrote' +p165189 +tp165190 +a(g165187 +g165189 +S'a' +p165191 +tp165192 +a(g165189 +g165191 +S'friend,' +p165193 +tp165194 +a(g165191 +g165193 +S'"i' +p165195 +tp165196 +a(g165193 +g165195 +S'painted' +p165197 +tp165198 +a(g165195 +g165197 +S'twenty' +p165199 +tp165200 +a(g165197 +g165199 +S'seascapes...."' +p165201 +tp165202 +a(g165199 +g165201 +S'years' +p165203 +tp165204 +a(g165201 +g165203 +S'later,while' +p165205 +tp165206 +a(g165203 +g165205 +S'in' +p165207 +tp165208 +a(g165205 +g165207 +S'exile' +p165209 +tp165210 +a(g165207 +g165209 +S'in' +p165211 +tp165212 +a(g165209 +g165211 +S'switzerland,' +p165213 +tp165214 +a(g165211 +g165213 +S'he' +p165215 +tp165216 +a(g165213 +g165215 +S'painted' +p165217 +tp165218 +a(g165215 +g165217 +S'more' +p165219 +tp165220 +a(g165217 +g165219 +S'beach' +p165221 +tp165222 +a(g165219 +g165221 +S'scenes,' +p165223 +tp165224 +a(g165221 +g165223 +S'perhaps' +p165225 +tp165226 +a(g165223 +g165225 +S'returning' +p165227 +tp165228 +a(g165225 +g165227 +S'to' +p165229 +tp165230 +a(g165227 +g165229 +S'the' +p165231 +tp165232 +a(g165229 +g165231 +S'same' +p165233 +tp165234 +a(g165231 +g165233 +S'sketches' +p165235 +tp165236 +a(g165233 +g165235 +S'or' +p165237 +tp165238 +a(g165235 +g165237 +S'recalling' +p165239 +tp165240 +a(g165237 +g165239 +S'the' +p165241 +tp165242 +a(g165239 +g165241 +S'landscape' +p165243 +tp165244 +a(g165241 +g165243 +S'from' +p165245 +tp165246 +a(g165243 +g165245 +S'memory.' +p165247 +tp165248 +a(g165245 +g165247 +S'recent' +p165249 +tp165250 +a(g165247 +g165249 +S'scholarship' +p165251 +tp165252 +a(g165249 +g165251 +S'suggests' +p165253 +tp165254 +a(g165251 +g165253 +S'that' +p165255 +tp165256 +a(g165253 +g165255 +S'this' +p165257 +tp165258 +a(g165255 +g165257 +S'painting' +p165259 +tp165260 +a(g165257 +g165259 +S'is' +p165261 +tp165262 +a(g165259 +g165261 +S'probably' +p165263 +tp165264 +a(g165261 +g165263 +S'one' +p165265 +tp165266 +a(g165263 +g165265 +S'of' +p165267 +tp165268 +a(g165265 +g165267 +S'the' +p165269 +tp165270 +a(g165267 +g165269 +S'later' +p165271 +tp165272 +a(g165269 +g165271 +S'group.' +p165273 +tp165274 +a(g165271 +g165273 +S'the' +p165275 +tp165276 +a(g165273 +g165275 +S'light' +p165277 +tp165278 +a(g165275 +g165277 +S'and' +p165279 +tp165280 +a(g165277 +g165279 +S'air' +p165281 +tp165282 +a(g165279 +g165281 +S'lack' +p165283 +tp165284 +a(g165281 +g165283 +S'the' +p165285 +tp165286 +a(g165283 +g165285 +S'kind' +p165287 +tp165288 +a(g165285 +g165287 +S'of' +p165289 +tp165290 +a(g165287 +g165289 +S'vivid' +p165291 +tp165292 +a(g165289 +g165291 +S'freshness' +p165293 +tp165294 +a(g165291 +g165293 +S'of' +p165295 +tp165296 +a(g165293 +g165295 +S"courbet's" +p165297 +tp165298 +a(g165295 +g165297 +S'work' +p165299 +tp165300 +a(g165297 +g165299 +S'done' +p165301 +tp165302 +a(g165299 +g165301 +S'while' +p165303 +tp165304 +a(g165301 +g165303 +S'he' +p165305 +tp165306 +a(g165303 +g165305 +S'was' +p165307 +tp165308 +a(g165305 +g165307 +S'still' +p165309 +tp165310 +a(g165307 +g165309 +S'under' +p165311 +tp165312 +a(g165309 +g165311 +S'his' +p165313 +tp165314 +a(g165311 +g165313 +S'immediate' +p165315 +tp165316 +a(g165313 +g165315 +S'impression' +p165317 +tp165318 +a(g165315 +g165317 +S'of' +p165319 +tp165320 +a(g165317 +g165319 +S'a' +p165321 +tp165322 +a(g165319 +g165321 +S'place.' +p165323 +tp165324 +a(g165321 +g165323 +S'the' +p165325 +tp165326 +a(g165323 +g165325 +S'rocky' +p165327 +tp165328 +a(g165325 +g165327 +S'cliff' +p165329 +tp165330 +a(g165327 +g165329 +S'seems' +p165331 +tp165332 +a(g165329 +g165331 +S'generalized' +p165333 +tp165334 +a(g165331 +g165333 +S'rather' +p165335 +tp165336 +a(g165333 +g165335 +S'than' +p165337 +tp165338 +a(g165335 +g165337 +S'defined' +p165339 +tp165340 +a(g165337 +g165339 +S'by' +p165341 +tp165342 +a(g165339 +g165341 +S'its' +p165343 +tp165344 +a(g165341 +g165343 +S'strong' +p165345 +tp165346 +a(g165343 +g165345 +S'highlights.' +p165347 +tp165348 +a(g165345 +g165347 +S'still,' +p165349 +tp165350 +a(g165347 +g165349 +S'its' +p165351 +tp165352 +a(g165349 +g165351 +S'bulk' +p165353 +tp165354 +a(g165351 +g165353 +S'attracts' +p165355 +tp165356 +a(g165353 +g165355 +S'our' +p165357 +tp165358 +a(g165355 +g165357 +S'attention;' +p165359 +tp165360 +a(g165357 +g165359 +S'our' +p165361 +tp165362 +a(g165359 +g165361 +S'eyes' +p165363 +tp165364 +a(g165361 +g165363 +S'are' +p165365 +tp165366 +a(g165363 +g165365 +S'drawn' +p165367 +tp165368 +a(g165365 +g165367 +S'by' +p165369 +tp165370 +a(g165367 +g165369 +S'the' +p165371 +tp165372 +a(g165369 +g165371 +S'sheer' +p165373 +tp165374 +a(g165371 +g165373 +S'tactile' +p165375 +tp165376 +a(g165373 +g165375 +S'mass' +p165377 +tp165378 +a(g165375 +g165377 +S'of' +p165379 +tp165380 +a(g165377 +g165379 +S'the' +p165381 +tp165382 +a(g165379 +g165381 +S'pigments' +p165383 +tp165384 +a(g165381 +g165383 +S'there.' +p165385 +tp165386 +a(g165383 +g165385 +S'in' +p165387 +tp165388 +a(g165385 +g165387 +S'many' +p165389 +tp165390 +a(g165387 +g165389 +S'places' +p165391 +tp165392 +a(g165389 +g165391 +S'courbet' +p165393 +tp165394 +a(g165391 +g165393 +S'painted' +p165395 +tp165396 +a(g165393 +g165395 +S'not' +p165397 +tp165398 +a(g165395 +g165397 +S'with' +p165399 +tp165400 +a(g165397 +g165399 +S'a' +p165401 +tp165402 +a(g165399 +g165401 +S'brush,' +p165403 +tp165404 +a(g165401 +g165403 +S'but' +p165405 +tp165406 +a(g165403 +g165405 +S'with' +p165407 +tp165408 +a(g165405 +g165407 +S'a' +p165409 +tp165410 +a(g165407 +g165409 +S'palette' +p165411 +tp165412 +a(g165409 +g165411 +S'knife.' +p165413 +tp165414 +a(g165411 +g165413 +S'his' +p165415 +tp165416 +a(g165413 +g165415 +S'rough' +p165417 +tp165418 +a(g165415 +g165417 +S'technique,' +p165419 +tp165420 +a(g165417 +g165419 +S'like' +p165421 +tp165422 +a(g165419 +g165421 +S'the' +p165423 +tp165424 +a(g165421 +g165423 +S'unsentimentalized' +p165425 +tp165426 +a(g165423 +g165425 +S'peasant' +p165427 +tp165428 +a(g165425 +g165427 +S'subjects' +p165429 +tp165430 +a(g165427 +g165429 +S'he' +p165431 +tp165432 +a(g165429 +g165431 +S'pioneered,' +p165433 +tp165434 +a(g165431 +g165433 +S'scandalized' +p165435 +tp165436 +a(g165433 +g165435 +S'the' +p165437 +tp165438 +a(g165435 +g165437 +S'art' +p165439 +tp165440 +a(g165437 +g165439 +S'establishment' +p165441 +tp165442 +a(g165439 +g165441 +S'--' +p165443 +tp165444 +a(g165441 +g165443 +S'and' +p165445 +tp165446 +a(g165443 +g165445 +S'helped' +p165447 +tp165448 +a(g165445 +g165447 +S'galvanize' +p165449 +tp165450 +a(g165447 +g165449 +S'the' +p165451 +tp165452 +a(g165449 +g165451 +S'bold' +p165453 +tp165454 +a(g165451 +g165453 +S'style' +p165455 +tp165456 +a(g165453 +g165455 +S'being' +p165457 +tp165458 +a(g165455 +g165457 +S'adopted' +p165459 +tp165460 +a(g165457 +g165459 +S'by' +p165461 +tp165462 +a(g165459 +g165461 +S'younger' +p165463 +tp165464 +a(g165461 +g165463 +S'painters' +p165465 +tp165466 +a(g165463 +g165465 +S'like' +p165467 +tp165468 +a(g165465 +g165467 +S'manet.' +p165469 +tp165470 +a(g165467 +g165469 +S'fiercely' +p165471 +tp165472 +a(g165469 +g165471 +S'proud' +p165473 +tp165474 +a(g165471 +g165473 +S'of' +p165475 +tp165476 +a(g165473 +g165475 +S'his' +p165477 +tp165478 +a(g165475 +g165477 +S'rural' +p165479 +tp165480 +a(g165477 +g165479 +S'roots' +p165481 +tp165482 +a(g165479 +g165481 +S'and' +p165483 +tp165484 +a(g165481 +g165483 +S'his' +p165485 +tp165486 +a(g165483 +g165485 +S'country-bred' +p165487 +tp165488 +a(g165485 +g165487 +S'vigor,' +p165489 +tp165490 +a(g165487 +g165489 +S'courbet' +p165491 +tp165492 +a(g165489 +g165491 +S'retained' +p165493 +tp165494 +a(g165491 +g165493 +S'a' +p165495 +tp165496 +a(g165493 +g165495 +S'forthright' +p165497 +tp165498 +a(g165495 +g165497 +S'and' +p165499 +tp165500 +a(g165497 +g165499 +S'physical' +p165501 +tp165502 +a(g165499 +g165501 +S'connection' +p165503 +tp165504 +a(g165501 +g165503 +S'to' +p165505 +tp165506 +a(g165503 +g165505 +S'the' +p165507 +tp165508 +a(g165505 +g165507 +S'world.' +p165509 +tp165510 +a(g165507 +g165509 +S'he' +p165511 +tp165512 +a(g165509 +g165511 +S'painted' +p165513 +tp165514 +a(g165511 +g165513 +S'the' +p165515 +tp165516 +a(g165513 +g165515 +S'concrete,' +p165517 +tp165518 +a(g165515 +g165517 +S'he' +p165519 +tp165520 +a(g165517 +g165519 +S'said,' +p165521 +tp165522 +a(g165519 +g165521 +S'and' +p165523 +tp165524 +a(g165521 +g165523 +S'he' +p165525 +tp165526 +a(g165523 +g165525 +S'gave' +p165527 +tp165528 +a(g165525 +g165527 +S'what' +p165529 +tp165530 +a(g165527 +g165529 +S'he' +p165531 +tp165532 +a(g165529 +g165531 +S'saw' +p165533 +tp165534 +a(g165531 +g165533 +S'actual' +p165535 +tp165536 +a(g165533 +g165535 +S'physical' +p165537 +tp165538 +a(g165535 +g165537 +S'dimension' +p165539 +tp165540 +a(g165537 +g165539 +S'on' +p165541 +tp165542 +a(g165539 +g165541 +S'his' +p165543 +tp165544 +a(g165541 +g165543 +S'canvas.' +p165545 +tp165546 +a(g165543 +g165545 +S'best' +p165547 +tp165548 +a(g165545 +g165547 +S'known' +p165549 +tp165550 +a(g165547 +g165549 +S'for' +p165551 +tp165552 +a(g165549 +g165551 +S'political' +p165553 +tp165554 +a(g165551 +g165553 +S'cartoons' +p165555 +tp165556 +a(g165553 +g165555 +S'and' +p165557 +tp165558 +a(g165555 +g165557 +S'humorous' +p165559 +tp165560 +a(g165557 +g165559 +S'caricatures' +p165561 +tp165562 +a(g165559 +g165561 +S'satirizing' +p165563 +tp165564 +a(g165561 +g165563 +S'contemporary' +p165565 +tp165566 +a(g165563 +g165565 +S'life,' +p165567 +tp165568 +a(g165565 +g165567 +S"daumier's" +p165569 +tp165570 +a(g165567 +g165569 +S'paintings' +p165571 +tp165572 +a(g165569 +g165571 +S'reveal' +p165573 +tp165574 +a(g165571 +g165573 +S'a' +p165575 +tp165576 +a(g165573 +g165575 +S'more' +p165577 +tp165578 +a(g165575 +g165577 +S'serious' +p165579 +tp165580 +a(g165577 +g165579 +S'examination' +p165581 +tp165582 +a(g165579 +g165581 +S'of' +p165583 +tp165584 +a(g165581 +g165583 +S'the' +p165585 +tp165586 +a(g165583 +g165585 +S'human' +p165587 +tp165588 +a(g165585 +g165587 +S'condition.' +p165589 +tp165590 +a(g165587 +g165589 +S'the' +p165591 +tp165592 +a(g165589 +g165591 +S'itinerant' +p165593 +tp165594 +a(g165591 +g165593 +S'street' +p165595 +tp165596 +a(g165593 +g165595 +S'musicians' +p165597 +tp165598 +a(g165595 +g165597 +S'and' +p165599 +tp165600 +a(g165597 +g165599 +S'acrobats' +p165601 +tp165602 +a(g165599 +g165601 +S'in' +p165603 +tp165604 +a(g165601 +g165603 +S'daumier' +p165605 +tp165606 +a(g165603 +g165605 +S'may' +p165607 +tp165608 +a(g165605 +g165607 +S'have' +p165609 +tp165610 +a(g165607 +g165609 +S'felt' +p165611 +tp165612 +a(g165609 +g165611 +S'a' +p165613 +tp165614 +a(g165611 +g165613 +S'personal' +p165615 +tp165616 +a(g165613 +g165615 +S'affinity' +p165617 +tp165618 +a(g165615 +g165617 +S'with' +p165619 +tp165620 +a(g165617 +g165619 +S'the' +p165621 +tp165622 +a(g165619 +g165621 +S'entertainers.' +p165623 +tp165624 +a(g165621 +g165623 +S'the' +p165625 +tp165626 +a(g165623 +g165625 +S'little' +p165627 +tp165628 +a(g165625 +g165627 +S'boy' +p165629 +tp165630 +a(g165627 +g165629 +S'carrying' +p165631 +tp165632 +a(g165629 +g165631 +S'a' +p165633 +tp165634 +a(g165631 +g165633 +S'chair' +p165635 +tp165636 +a(g165633 +g165635 +S'could' +p165637 +tp165638 +a(g165635 +g165637 +S'be' +p165639 +tp165640 +a(g165637 +g165639 +S'a' +p165641 +tp165642 +a(g165639 +g165641 +S'recollection' +p165643 +tp165644 +a(g165641 +g165643 +S'of' +p165645 +tp165646 +a(g165643 +g165645 +S"daumier's" +p165647 +tp165648 +a(g165645 +g165647 +S'childhood,' +p165649 +tp165650 +a(g165647 +g165649 +S'when' +p165651 +tp165652 +a(g165649 +g165651 +S'his' +p165653 +tp165654 +a(g165651 +g165653 +S'family,' +p165655 +tp165656 +a(g165653 +g165655 +S'destitute' +p165657 +tp165658 +a(g165655 +g165657 +S'and' +p165659 +tp165660 +a(g165657 +g165659 +S'living' +p165661 +tp165662 +a(g165659 +g165661 +S'in' +p165663 +tp165664 +a(g165661 +g165663 +S'paris,' +p165665 +tp165666 +a(g165663 +g165665 +S'endured' +p165667 +tp165668 +a(g165665 +g165667 +S'numerous' +p165669 +tp165670 +a(g165667 +g165669 +S'displacements' +p165671 +tp165672 +a(g165669 +g165671 +S'to' +p165673 +tp165674 +a(g165671 +g165673 +S'progressively' +p165675 +tp165676 +a(g165673 +g165675 +S'worse' +p165677 +tp165678 +a(g165675 +g165677 +S'lodgings.' +p165679 +tp165680 +a(g165677 +g165679 +S'further,' +p165681 +tp165682 +a(g165679 +g165681 +S'it' +p165683 +tp165684 +a(g165681 +g165683 +S'has' +p165685 +tp165686 +a(g165683 +g165685 +S'been' +p165687 +tp165688 +a(g165685 +g165687 +S'suggested' +p165689 +tp165690 +a(g165687 +g165689 +S'that' +p165691 +tp165692 +a(g165689 +g165691 +S'the' +p165693 +tp165694 +a(g165691 +g165693 +S'older' +p165695 +tp165696 +a(g165693 +g165695 +S'clown' +p165697 +tp165698 +a(g165695 +g165697 +S'clad' +p165699 +tp165700 +a(g165697 +g165699 +S'in' +p165701 +tp165702 +a(g165699 +g165701 +S'traditional' +p165703 +tp165704 +a(g165701 +g165703 +S'costume' +p165705 +tp165706 +a(g165703 +g165705 +S'and' +p165707 +tp165708 +a(g165705 +g165707 +S'leading' +p165709 +tp165710 +a(g165707 +g165709 +S'his' +p165711 +tp165712 +a(g165709 +g165711 +S'family' +p165713 +tp165714 +a(g165711 +g165713 +S'in' +p165715 +tp165716 +a(g165713 +g165715 +S'this' +p165717 +tp165718 +a(g165715 +g165717 +S'painting' +p165719 +tp165720 +a(g165717 +g165719 +S'may' +p165721 +tp165722 +a(g165719 +g165721 +S'be' +p165723 +tp165724 +a(g165721 +g165723 +S'associated' +p165725 +tp165726 +a(g165723 +g165725 +S'with' +p165727 +tp165728 +a(g165725 +g165727 +S'the' +p165729 +tp165730 +a(g165727 +g165729 +S"artist's" +p165731 +tp165732 +a(g165729 +g165731 +S'father,' +p165733 +tp165734 +a(g165731 +g165733 +S'a' +p165735 +tp165736 +a(g165733 +g165735 +S'failed' +p165737 +tp165738 +a(g165735 +g165737 +S'poet' +p165739 +tp165740 +a(g165737 +g165739 +S'and' +p165741 +tp165742 +a(g165739 +g165741 +S'playwright' +p165743 +tp165744 +a(g165741 +g165743 +S'committed' +p165745 +tp165746 +a(g165743 +g165745 +S'to' +p165747 +tp165748 +a(g165745 +g165747 +S'the' +p165749 +tp165750 +a(g165747 +g165749 +S'insane' +p165751 +tp165752 +a(g165749 +g165751 +S'asylum' +p165753 +tp165754 +a(g165751 +g165753 +S'at' +p165755 +tp165756 +a(g165753 +g165755 +S'charenton' +p165757 +tp165758 +a(g165755 +g165757 +S'in' +p165759 +tp165760 +a(g165757 +g165759 +S'1851,' +p165761 +tp165762 +a(g165759 +g165761 +S'where' +p165763 +tp165764 +a(g165761 +g165763 +S'he' +p165765 +tp165766 +a(g165763 +g165765 +S'died.' +p165767 +tp165768 +a(g165765 +g165767 +S'daumier' +p165769 +tp165770 +a(g165767 +g165769 +S'was' +p165771 +tp165772 +a(g165769 +g165771 +S'self-taught' +p165773 +tp165774 +a(g165771 +g165773 +S'as' +p165775 +tp165776 +a(g165773 +g165775 +S'a' +p165777 +tp165778 +a(g165775 +g165777 +S'painter,' +p165779 +tp165780 +a(g165777 +g165779 +S'and' +p165781 +tp165782 +a(g165779 +g165781 +S'his' +p165783 +tp165784 +a(g165781 +g165783 +S'style' +p165785 +tp165786 +a(g165783 +g165785 +S'has' +p165787 +tp165788 +a(g165785 +g165787 +S'many' +p165789 +tp165790 +a(g165787 +g165789 +S'characteristics' +p165791 +tp165792 +a(g165789 +g165791 +S'of' +p165793 +tp165794 +a(g165791 +g165793 +S'the' +p165795 +tp165796 +a(g165793 +g165795 +S'graphic' +p165797 +tp165798 +a(g165795 +g165797 +S'media' +p165799 +tp165800 +a(g165797 +g165799 +S'in' +p165801 +tp165802 +a(g165799 +g165801 +S'which' +p165803 +tp165804 +a(g165801 +g165803 +S'he' +p165805 +tp165806 +a(g165803 +g165805 +S'trained.' +p165807 +tp165808 +a(g165805 +g165807 +S'the' +p165809 +tp165810 +a(g165807 +g165809 +S'blunt' +p165811 +tp165812 +a(g165809 +g165811 +S'silhouettes' +p165813 +tp165814 +a(g165811 +g165813 +S'of' +p165815 +tp165816 +a(g165813 +g165815 +S'the' +p165817 +tp165818 +a(g165815 +g165817 +S'figures' +p165819 +tp165820 +a(g165817 +g165819 +S'and' +p165821 +tp165822 +a(g165819 +g165821 +S'the' +p165823 +tp165824 +a(g165821 +g165823 +S'simplified' +p165825 +tp165826 +a(g165823 +g165825 +S'space' +p165827 +tp165828 +a(g165825 +g165827 +S'they' +p165829 +tp165830 +a(g165827 +g165829 +S'occupy' +p165831 +tp165832 +a(g165829 +g165831 +S'are' +p165833 +tp165834 +a(g165831 +g165833 +S'stylistic' +p165835 +tp165836 +a(g165833 +g165835 +S'elements' +p165837 +tp165838 +a(g165835 +g165837 +S'that' +p165839 +tp165840 +a(g165837 +g165839 +S'originated' +p165841 +tp165842 +a(g165839 +g165841 +S'in' +p165843 +tp165844 +a(g165841 +g165843 +S'his' +p165845 +tp165846 +a(g165843 +g165845 +S'lithographs.' +p165847 +tp165848 +a(g165845 +g165847 +S'the' +p165849 +tp165850 +a(g165847 +g165849 +S'unspecific,' +p165851 +tp165852 +a(g165849 +g165851 +S'indefinite' +p165853 +tp165854 +a(g165851 +g165853 +S'appearance' +p165855 +tp165856 +a(g165853 +g165855 +S'thus' +p165857 +tp165858 +a(g165855 +g165857 +S'produced' +p165859 +tp165860 +a(g165857 +g165859 +S'endows' +p165861 +tp165862 +a(g165859 +g165861 +S'them' +p165863 +tp165864 +a(g165861 +g165863 +S'with' +p165865 +tp165866 +a(g165863 +g165865 +S'more' +p165867 +tp165868 +a(g165865 +g165867 +S'universal' +p165869 +tp165870 +a(g165867 +g165869 +S'meaning.' +p165871 +tp165872 +a(g165869 +g165871 +S'personal' +p165873 +tp165874 +a(g165871 +g165873 +S'associations' +p165875 +tp165876 +a(g165873 +g165875 +S'aside,' +p165877 +tp165878 +a(g165875 +g165877 +S'the' +p165879 +tp165880 +a(g165877 +g165879 +S'saltimbanques' +p165881 +tp165882 +a(g165879 +g165881 +S'here' +p165883 +tp165884 +a(g165881 +g165883 +S'are' +p165885 +tp165886 +a(g165883 +g165885 +S'artists' +p165887 +tp165888 +a(g165885 +g165887 +S'struggling' +p165889 +tp165890 +a(g165887 +g165889 +S'to' +p165891 +tp165892 +a(g165889 +g165891 +S'make' +p165893 +tp165894 +a(g165891 +g165893 +S'their' +p165895 +tp165896 +a(g165893 +g165895 +S'way' +p165897 +tp165898 +a(g165895 +g165897 +S'in' +p165899 +tp165900 +a(g165897 +g165899 +S'a' +p165901 +tp165902 +a(g165899 +g165901 +S'world' +p165903 +tp165904 +a(g165901 +g165903 +S'that,' +p165905 +tp165906 +a(g165903 +g165905 +S'as' +p165907 +tp165908 +a(g165905 +g165907 +S'daumier' +p165909 +tp165910 +a(g165907 +g165909 +S'depicts' +p165911 +tp165912 +a(g165909 +g165911 +S'it,' +p165913 +tp165914 +a(g165911 +g165913 +S'is' +p165915 +tp165916 +a(g165913 +g165915 +S'a' +p165917 +tp165918 +a(g165915 +g165917 +S'bleak,' +p165919 +tp165920 +a(g165917 +g165919 +S'anonymous' +p165921 +tp165922 +a(g165919 +g165921 +S'place.' +p165923 +tp165924 +a(g165921 +g165923 +S'at' +p165925 +tp165926 +a(g165923 +g165925 +S'the' +p165927 +tp165928 +a(g165925 +g165927 +S'age' +p165929 +tp165930 +a(g165927 +g165929 +S'of' +p165931 +tp165932 +a(g165929 +g165931 +S'nineteen,' +p165933 +tp165934 +a(g165931 +g165933 +S'théodore' +p165935 +tp165936 +a(g165933 +g165935 +S'gericault' +p165937 +tp165938 +a(g165935 +g165937 +S'entered' +p165939 +tp165940 +a(g165937 +g165939 +S'the' +p165941 +tp165942 +a(g165939 +g165941 +S'parisian' +p165943 +tp165944 +a(g165941 +g165943 +S'studio' +p165945 +tp165946 +a(g165943 +g165945 +S'of' +p165947 +tp165948 +a(g165945 +g165947 +S'pierre-narcisse' +p165949 +tp165950 +a(g165947 +g165949 +S'guérin,' +p165951 +tp165952 +a(g165949 +g165951 +S'a' +p165953 +tp165954 +a(g165951 +g165953 +S'successful' +p165955 +tp165956 +a(g165953 +g165955 +S'follower' +p165957 +tp165958 +a(g165955 +g165957 +S'of' +p165959 +tp165960 +a(g165957 +g165959 +S'jacques-louis' +p165961 +tp165962 +a(g165959 +g165961 +S'david.' +p165963 +tp165964 +a(g165961 +g165963 +S'in' +p165965 +tp165966 +a(g165963 +g165965 +S"guérin's" +p165967 +tp165968 +a(g165965 +g165967 +S'studio' +p165969 +tp165970 +a(g165967 +g165969 +S'the' +p165971 +tp165972 +a(g165969 +g165971 +S'young' +p165973 +tp165974 +a(g165971 +g165973 +S'gericault' +p165975 +tp165976 +a(g165973 +g165975 +S'would' +p165977 +tp165978 +a(g165975 +g165977 +S'have' +p165979 +tp165980 +a(g165977 +g165979 +S'refined' +p165981 +tp165982 +a(g165979 +g165981 +S'his' +p165983 +tp165984 +a(g165981 +g165983 +S'skills' +p165985 +tp165986 +a(g165983 +g165985 +S'by' +p165987 +tp165988 +a(g165985 +g165987 +S'drawing' +p165989 +tp165990 +a(g165987 +g165989 +S'from' +p165991 +tp165992 +a(g165989 +g165991 +S'antique' +p165993 +tp165994 +a(g165991 +g165993 +S'statues' +p165995 +tp165996 +a(g165993 +g165995 +S'and' +p165997 +tp165998 +a(g165995 +g165997 +S'casts' +p165999 +tp166000 +a(g165997 +g165999 +S'in' +p166001 +tp166002 +a(g165999 +g166001 +S'the' +p166003 +tp166004 +a(g166001 +g166003 +S'louvre' +p166005 +tp166006 +a(g166003 +g166005 +S'and' +p166007 +tp166008 +a(g166005 +g166007 +S'then' +p166009 +tp166010 +a(g166007 +g166009 +S'after' +p166011 +tp166012 +a(g166009 +g166011 +S'the' +p166013 +tp166014 +a(g166011 +g166013 +S'live' +p166015 +tp166016 +a(g166013 +g166015 +S'model' +p166017 +tp166018 +a(g166015 +g166017 +S'as' +p166019 +tp166020 +a(g166017 +g166019 +S'a' +p166021 +tp166022 +a(g166019 +g166021 +S'preliminary' +p166023 +tp166024 +a(g166021 +g166023 +S'to' +p166025 +tp166026 +a(g166023 +g166025 +S'full-scale' +p166027 +tp166028 +a(g166025 +g166027 +S'works.' +p166029 +tp166030 +a(g166027 +g166029 +S'the' +p166031 +tp166032 +a(g166029 +g166031 +S'on' +p166033 +tp166034 +a(g166031 +g166033 +S'may' +p166035 +tp166036 +a(g166033 +g166035 +S'21,' +p166037 +tp166038 +a(g166035 +g166037 +S'1890,' +p166039 +tp166040 +a(g166037 +g166039 +S'van' +p166041 +tp166042 +a(g166039 +g166041 +S'gogh' +p166043 +tp166044 +a(g166041 +g166043 +S'arrived' +p166045 +tp166046 +a(g166043 +g166045 +S'in' +p166047 +tp166048 +a(g166045 +g166047 +S'auvers,' +p166049 +tp166050 +a(g166047 +g166049 +S'a' +p166051 +tp166052 +a(g166049 +g166051 +S'small' +p166053 +tp166054 +a(g166051 +g166053 +S'town' +p166055 +tp166056 +a(g166053 +g166055 +S'outside' +p166057 +tp166058 +a(g166055 +g166057 +S'paris.' +p166059 +tp166060 +a(g166057 +g166059 +S'his' +p166061 +tp166062 +a(g166059 +g166061 +S'brother' +p166063 +tp166064 +a(g166061 +g166063 +S'theo,' +p166065 +tp166066 +a(g166063 +g166065 +S'concerned' +p166067 +tp166068 +a(g166065 +g166067 +S'about' +p166069 +tp166070 +a(g166067 +g166069 +S'his' +p166071 +tp166072 +a(g166069 +g166071 +S'health,' +p166073 +tp166074 +a(g166071 +g166073 +S'had' +p166075 +tp166076 +a(g166073 +g166075 +S'suggested' +p166077 +tp166078 +a(g166075 +g166077 +S'he' +p166079 +tp166080 +a(g166077 +g166079 +S'put' +p166081 +tp166082 +a(g166079 +g166081 +S'himself' +p166083 +tp166084 +a(g166081 +g166083 +S'under' +p166085 +tp166086 +a(g166083 +g166085 +S'the' +p166087 +tp166088 +a(g166085 +g166087 +S'care' +p166089 +tp166090 +a(g166087 +g166089 +S'of' +p166091 +tp166092 +a(g166089 +g166091 +S'paul' +p166093 +tp166094 +a(g166091 +g166093 +S'gachet,' +p166095 +tp166096 +a(g166093 +g166095 +S'a' +p166097 +tp166098 +a(g166095 +g166097 +S'homeopathic' +p166099 +tp166100 +a(g166097 +g166099 +S'physician' +p166101 +tp166102 +a(g166099 +g166101 +S'and' +p166103 +tp166104 +a(g166101 +g166103 +S'avid' +p166105 +tp166106 +a(g166103 +g166105 +S'art' +p166107 +tp166108 +a(g166105 +g166107 +S'patron.' +p166109 +tp166110 +a(g166107 +g166109 +S'from' +p166111 +tp166112 +a(g166109 +g166111 +S'his' +p166113 +tp166114 +a(g166111 +g166113 +S'arrival' +p166115 +tp166116 +a(g166113 +g166115 +S'in' +p166117 +tp166118 +a(g166115 +g166117 +S'auvers' +p166119 +tp166120 +a(g166117 +g166119 +S'to' +p166121 +tp166122 +a(g166119 +g166121 +S'his' +p166123 +tp166124 +a(g166121 +g166123 +S'death' +p166125 +tp166126 +a(g166123 +g166125 +S'on' +p166127 +tp166128 +a(g166125 +g166127 +S'july' +p166129 +tp166130 +a(g166127 +g166129 +S'29,' +p166131 +tp166132 +a(g166129 +g166131 +S'van' +p166133 +tp166134 +a(g166131 +g166133 +S'gogh' +p166135 +tp166136 +a(g166133 +g166135 +S'made' +p166137 +tp166138 +a(g166135 +g166137 +S'about' +p166139 +tp166140 +a(g166137 +g166139 +S'seventy' +p166141 +tp166142 +a(g166139 +g166141 +S'paintings—more' +p166143 +tp166144 +a(g166141 +g166143 +S'than' +p166145 +tp166146 +a(g166143 +g166145 +S'one' +p166147 +tp166148 +a(g166145 +g166147 +S'per' +p166149 +tp166150 +a(g166147 +g166149 +S'day—and' +p166151 +tp166152 +a(g166149 +g166151 +S'many' +p166153 +tp166154 +a(g166151 +g166153 +S'drawings.' +p166155 +tp166156 +a(g166153 +g166155 +S'in' +p166157 +tp166158 +a(g166155 +g166157 +S'mid-june' +p166159 +tp166160 +a(g166157 +g166159 +S'he' +p166161 +tp166162 +a(g166159 +g166161 +S'wrote' +p166163 +tp166164 +a(g166161 +g166163 +S'gauguin:' +p166165 +tp166166 +a(g166163 +g166165 +S'"i' +p166167 +tp166168 +a(g166165 +g166167 +S'am' +p166169 +tp166170 +a(g166167 +g166169 +S'trying' +p166171 +tp166172 +a(g166169 +g166171 +S'to' +p166173 +tp166174 +a(g166171 +g166173 +S'do' +p166175 +tp166176 +a(g166173 +g166175 +S'some' +p166177 +tp166178 +a(g166175 +g166177 +S'studies' +p166179 +tp166180 +a(g166177 +g166179 +S'of' +p166181 +tp166182 +a(g166179 +g166181 +S'wheat' +p166183 +tp166184 +a(g166181 +g166183 +S'.' +p166185 +tp166186 +a(g166183 +g166185 +S'.' +p166187 +tp166188 +a(g166185 +g166187 +S'.' +p166189 +tp166190 +a(g166187 +g166189 +S'.' +p166191 +tp166192 +a(g166189 +g166191 +S'nothing' +p166193 +tp166194 +a(g166191 +g166193 +S'but' +p166195 +tp166196 +a(g166193 +g166195 +S'ears' +p166197 +tp166198 +a(g166195 +g166197 +S'of' +p166199 +tp166200 +a(g166197 +g166199 +S'wheat' +p166201 +tp166202 +a(g166199 +g166201 +S'with' +p166203 +tp166204 +a(g166201 +g166203 +S'green-blue' +p166205 +tp166206 +a(g166203 +g166205 +S'stalks,' +p166207 +tp166208 +a(g166205 +g166207 +S'long' +p166209 +tp166210 +a(g166207 +g166209 +S'leaves' +p166211 +tp166212 +a(g166209 +g166211 +S'like' +p166213 +tp166214 +a(g166211 +g166213 +S'ribbons' +p166215 +tp166216 +a(g166213 +g166215 +S'of' +p166217 +tp166218 +a(g166215 +g166217 +S'green' +p166219 +tp166220 +a(g166217 +g166219 +S'shot' +p166221 +tp166222 +a(g166219 +g166221 +S'with' +p166223 +tp166224 +a(g166221 +g166223 +S'pink,' +p166225 +tp166226 +a(g166223 +g166225 +S'ears' +p166227 +tp166228 +a(g166225 +g166227 +S'that' +p166229 +tp166230 +a(g166227 +g166229 +S'are' +p166231 +tp166232 +a(g166229 +g166231 +S'just' +p166233 +tp166234 +a(g166231 +g166233 +S'turning' +p166235 +tp166236 +a(g166233 +g166235 +S'yellow,' +p166237 +tp166238 +a(g166235 +g166237 +S'edged' +p166239 +tp166240 +a(g166237 +g166239 +S'with' +p166241 +tp166242 +a(g166239 +g166241 +S'the' +p166243 +tp166244 +a(g166241 +g166243 +S'pale' +p166245 +tp166246 +a(g166243 +g166245 +S'pink' +p166247 +tp166248 +a(g166245 +g166247 +S'of' +p166249 +tp166250 +a(g166247 +g166249 +S'the' +p166251 +tp166252 +a(g166249 +g166251 +S'dusty' +p166253 +tp166254 +a(g166251 +g166253 +S'bloom—a' +p166255 +tp166256 +a(g166253 +g166255 +S'pink' +p166257 +tp166258 +a(g166255 +g166257 +S'bindweed' +p166259 +tp166260 +a(g166257 +g166259 +S'at' +p166261 +tp166262 +a(g166259 +g166261 +S'the' +p166263 +tp166264 +a(g166261 +g166263 +S'bottom' +p166265 +tp166266 +a(g166263 +g166265 +S'twisted' +p166267 +tp166268 +a(g166265 +g166267 +S'round' +p166269 +tp166270 +a(g166267 +g166269 +S'a' +p166271 +tp166272 +a(g166269 +g166271 +S'stem.' +p166273 +tp166274 +a(g166271 +g166273 +S'over' +p166275 +tp166276 +a(g166273 +g166275 +S'that,' +p166277 +tp166278 +a(g166275 +g166277 +S'against' +p166279 +tp166280 +a(g166277 +g166279 +S'a' +p166281 +tp166282 +a(g166279 +g166281 +S'vivid' +p166283 +tp166284 +a(g166281 +g166283 +S'yet' +p166285 +tp166286 +a(g166283 +g166285 +S'tranquil' +p166287 +tp166288 +a(g166285 +g166287 +S'background,' +p166289 +tp166290 +a(g166287 +g166289 +S'i' +p166291 +tp166292 +a(g166289 +g166291 +S'should' +p166293 +tp166294 +a(g166291 +g166293 +S'like' +p166295 +tp166296 +a(g166293 +g166295 +S'to' +p166297 +tp166298 +a(g166295 +g166297 +S'paint' +p166299 +tp166300 +a(g166297 +g166299 +S'some' +p166301 +tp166302 +a(g166299 +g166301 +S'portraits."' +p166303 +tp166304 +a(g166301 +g166303 +S'in' +p166305 +tp166306 +a(g166303 +g166305 +S'fact,' +p166307 +tp166308 +a(g166305 +g166307 +S'two' +p166309 +tp166310 +a(g166307 +g166309 +S'paintings' +p166311 +tp166312 +a(g166309 +g166311 +S'show' +p166313 +tp166314 +a(g166311 +g166313 +S'this' +p166315 +tp166316 +a(g166313 +g166315 +S'same' +p166317 +tp166318 +a(g166315 +g166317 +S'young' +p166319 +tp166320 +a(g166317 +g166319 +S'woman:' +p166321 +tp166322 +a(g166319 +g166321 +S'"a' +p166323 +tp166324 +a(g166321 +g166323 +S'peasant' +p166325 +tp166326 +a(g166323 +g166325 +S'woman,' +p166327 +tp166328 +a(g166325 +g166327 +S'big' +p166329 +tp166330 +a(g166327 +g166329 +S'yellow' +p166331 +tp166332 +a(g166329 +g166331 +S'hat' +p166333 +tp166334 +a(g166331 +g166333 +S'with' +p166335 +tp166336 +a(g166333 +g166335 +S'a' +p166337 +tp166338 +a(g166335 +g166337 +S'knot' +p166339 +tp166340 +a(g166337 +g166339 +S'of' +p166341 +tp166342 +a(g166339 +g166341 +S'sky-blue' +p166343 +tp166344 +a(g166341 +g166343 +S'ribbons' +p166345 +tp166346 +a(g166343 +g166345 +S'.' +p166347 +tp166348 +a(g166345 +g166347 +S'.' +p166349 +tp166350 +a(g166347 +g166349 +S'.' +p166351 +tp166352 +a(g166349 +g166351 +S'"' +p166353 +tp166354 +a(g166351 +g166353 +S'born' +p166355 +tp166356 +a(g166353 +g166355 +S'in' +p166357 +tp166358 +a(g166355 +g166357 +S'1884' +p166359 +tp166360 +a(g166357 +g166359 +S'to' +p166361 +tp166362 +a(g166359 +g166361 +S'an' +p166363 +tp166364 +a(g166361 +g166363 +S'aristocratic' +p166365 +tp166366 +a(g166363 +g166365 +S'family' +p166367 +tp166368 +a(g166365 +g166367 +S'in' +p166369 +tp166370 +a(g166367 +g166369 +S'livorno,' +p166371 +tp166372 +a(g166369 +g166371 +S'italy,' +p166373 +tp166374 +a(g166371 +g166373 +S'amedeo' +p166375 +tp166376 +a(g166373 +g166375 +S'modigliani' +p166377 +tp166378 +a(g166375 +g166377 +S'settled' +p166379 +tp166380 +a(g166377 +g166379 +S'in' +p166381 +tp166382 +a(g166379 +g166381 +S'the' +p166383 +tp166384 +a(g166381 +g166383 +S'montmartre' +p166385 +tp166386 +a(g166383 +g166385 +S'neighborhood' +p166387 +tp166388 +a(g166385 +g166387 +S'of' +p166389 +tp166390 +a(g166387 +g166389 +S'paris' +p166391 +tp166392 +a(g166389 +g166391 +S'in' +p166393 +tp166394 +a(g166391 +g166393 +S'1906' +p166395 +tp166396 +a(g166393 +g166395 +S'and' +p166397 +tp166398 +a(g166395 +g166397 +S'began' +p166399 +tp166400 +a(g166397 +g166399 +S'making' +p166401 +tp166402 +a(g166399 +g166401 +S'paintings' +p166403 +tp166404 +a(g166401 +g166403 +S'influenced' +p166405 +tp166406 +a(g166403 +g166405 +S'by' +p166407 +tp166408 +a(g166405 +g166407 +S'both' +p166409 +tp166410 +a(g166407 +g166409 +S'the' +p166411 +tp166412 +a(g166409 +g166411 +S'mood' +p166413 +tp166414 +a(g166411 +g166413 +S'of' +p166415 +tp166416 +a(g166413 +g166415 +S"picasso's" +p166417 +tp166418 +a(g166415 +g166417 +S'blue' +p166419 +tp166420 +a(g166417 +g166419 +S'period' +p166421 +tp166422 +a(g166419 +g166421 +S'and' +p166423 +tp166424 +a(g166421 +g166423 +S'the' +p166425 +tp166426 +a(g166423 +g166425 +S'pictorial' +p166427 +tp166428 +a(g166425 +g166427 +S'structure' +p166429 +tp166430 +a(g166427 +g166429 +S'of' +p166431 +tp166432 +a(g166429 +g166431 +S'late' +p166433 +tp166434 +a(g166431 +g166433 +S'c\xc3\xa9zanne.' +p166435 +tp166436 +a(g166433 +g166435 +S'in' +p166437 +tp166438 +a(g166435 +g166437 +S'1909' +p166439 +tp166440 +a(g166437 +g166439 +S'he' +p166441 +tp166442 +a(g166439 +g166441 +S'met' +p166443 +tp166444 +a(g166441 +g166443 +S'constantin' +p166445 +tp166446 +a(g166443 +g166445 +S'brancusi' +p166447 +tp166448 +a(g166445 +g166447 +S'and' +p166449 +tp166450 +a(g166447 +g166449 +S'began' +p166451 +tp166452 +a(g166449 +g166451 +S'to' +p166453 +tp166454 +a(g166451 +g166453 +S'focus' +p166455 +tp166456 +a(g166453 +g166455 +S'on' +p166457 +tp166458 +a(g166455 +g166457 +S'sculpture;' +p166459 +tp166460 +a(g166457 +g166459 +S'the' +p166461 +tp166462 +a(g166459 +g166461 +S'thin' +p166463 +tp166464 +a(g166461 +g166463 +S'features' +p166465 +tp166466 +a(g166463 +g166465 +S'and' +p166467 +tp166468 +a(g166465 +g166467 +S'references' +p166469 +tp166470 +a(g166467 +g166469 +S'to' +p166471 +tp166472 +a(g166469 +g166471 +S'african' +p166473 +tp166474 +a(g166471 +g166473 +S'art' +p166475 +tp166476 +a(g166473 +g166475 +S'in' +p166477 +tp166478 +a(g166475 +g166477 +S'the' +p166479 +tp166480 +a(g166477 +g166479 +S'series' +p166481 +tp166482 +a(g166479 +g166481 +S'of' +p166483 +tp166484 +a(g166481 +g166483 +S'as' +p166485 +tp166486 +a(g166483 +g166485 +S'both' +p166487 +tp166488 +a(g166485 +g166487 +S'painter' +p166489 +tp166490 +a(g166487 +g166489 +S'and' +p166491 +tp166492 +a(g166489 +g166491 +S'sculptor' +p166493 +tp166494 +a(g166491 +g166493 +S'modigliani' +p166495 +tp166496 +a(g166493 +g166495 +S'concentrated' +p166497 +tp166498 +a(g166495 +g166497 +S'on' +p166499 +tp166500 +a(g166497 +g166499 +S'portraiture.' +p166501 +tp166502 +a(g166499 +g166501 +S'though' +p166503 +tp166504 +a(g166501 +g166503 +S'he' +p166505 +tp166506 +a(g166503 +g166505 +S'abandoned' +p166507 +tp166508 +a(g166505 +g166507 +S'sculpture' +p166509 +tp166510 +a(g166507 +g166509 +S'in' +p166511 +tp166512 +a(g166509 +g166511 +S'late' +p166513 +tp166514 +a(g166511 +g166513 +S'1913' +p166515 +tp166516 +a(g166513 +g166515 +S'or' +p166517 +tp166518 +a(g166515 +g166517 +S'early' +p166519 +tp166520 +a(g166517 +g166519 +S'1914' +p166521 +tp166522 +a(g166519 +g166521 +S'to' +p166523 +tp166524 +a(g166521 +g166523 +S'return' +p166525 +tp166526 +a(g166523 +g166525 +S'to' +p166527 +tp166528 +a(g166525 +g166527 +S'painting,' +p166529 +tp166530 +a(g166527 +g166529 +S'the' +p166531 +tp166532 +a(g166529 +g166531 +S'long' +p166533 +tp166534 +a(g166531 +g166533 +S'necks' +p166535 +tp166536 +a(g166533 +g166535 +S'and' +p166537 +tp166538 +a(g166535 +g166537 +S'attenuated' +p166539 +tp166540 +a(g166537 +g166539 +S'features' +p166541 +tp166542 +a(g166539 +g166541 +S'of' +p166543 +tp166544 +a(g166541 +g166543 +S'his' +p166545 +tp166546 +a(g166543 +g166545 +S'sculptures' +p166547 +tp166548 +a(g166545 +g166547 +S'continue' +p166549 +tp166550 +a(g166547 +g166549 +S'in' +p166551 +tp166552 +a(g166549 +g166551 +S'his' +p166553 +tp166554 +a(g166551 +g166553 +S'later' +p166555 +tp166556 +a(g166553 +g166555 +S'painted' +p166557 +tp166558 +a(g166555 +g166557 +S'portraits.' +p166559 +tp166560 +a(g166557 +g166559 +S'modigliani' +p166561 +tp166562 +a(g166559 +g166561 +S'is' +p166563 +tp166564 +a(g166561 +g166563 +S'also' +p166565 +tp166566 +a(g166563 +g166565 +S'renowned' +p166567 +tp166568 +a(g166565 +g166567 +S'for' +p166569 +tp166570 +a(g166567 +g166569 +S'a' +p166571 +tp166572 +a(g166569 +g166571 +S'series' +p166573 +tp166574 +a(g166571 +g166573 +S'of' +p166575 +tp166576 +a(g166573 +g166575 +S'languorous' +p166577 +tp166578 +a(g166575 +g166577 +S'nudes,' +p166579 +tp166580 +a(g166577 +g166579 +S'some' +p166581 +tp166582 +a(g166579 +g166581 +S'of' +p166583 +tp166584 +a(g166581 +g166583 +S'which' +p166585 +tp166586 +a(g166583 +g166585 +S'he' +p166587 +tp166588 +a(g166585 +g166587 +S'exhibited' +p166589 +tp166590 +a(g166587 +g166589 +S'in' +p166591 +tp166592 +a(g166589 +g166591 +S'1918' +p166593 +tp166594 +a(g166591 +g166593 +S'at' +p166595 +tp166596 +a(g166593 +g166595 +S'the' +p166597 +tp166598 +a(g166595 +g166597 +S'galerie' +p166599 +tp166600 +a(g166597 +g166599 +S'berthe' +p166601 +tp166602 +a(g166599 +g166601 +S'weill' +p166603 +tp166604 +a(g166601 +g166603 +S'in' +p166605 +tp166606 +a(g166603 +g166605 +S'paris;' +p166607 +tp166608 +a(g166605 +g166607 +S'the' +p166609 +tp166610 +a(g166607 +g166609 +S'exhibition' +p166611 +tp166612 +a(g166609 +g166611 +S'was' +p166613 +tp166614 +a(g166611 +g166613 +S'closed' +p166615 +tp166616 +a(g166613 +g166615 +S'by' +p166617 +tp166618 +a(g166615 +g166617 +S'the' +p166619 +tp166620 +a(g166617 +g166619 +S'police' +p166621 +tp166622 +a(g166619 +g166621 +S'on' +p166623 +tp166624 +a(g166621 +g166623 +S'the' +p166625 +tp166626 +a(g166623 +g166625 +S'grounds' +p166627 +tp166628 +a(g166625 +g166627 +S'of' +p166629 +tp166630 +a(g166627 +g166629 +S'obscenity.' +p166631 +tp166632 +a(g166629 +g166631 +S'modigliani' +p166633 +tp166634 +a(g166631 +g166633 +S'died' +p166635 +tp166636 +a(g166633 +g166635 +S'of' +p166637 +tp166638 +a(g166635 +g166637 +S'tubercular' +p166639 +tp166640 +a(g166637 +g166639 +S'meningitis,' +p166641 +tp166642 +a(g166639 +g166641 +S'aggravated' +p166643 +tp166644 +a(g166641 +g166643 +S'by' +p166645 +tp166646 +a(g166643 +g166645 +S'drugs' +p166647 +tp166648 +a(g166645 +g166647 +S'and' +p166649 +tp166650 +a(g166647 +g166649 +S'alcohol,' +p166651 +tp166652 +a(g166649 +g166651 +S'in' +p166653 +tp166654 +a(g166651 +g166653 +S'a' +p166655 +tp166656 +a(g166653 +g166655 +S'paris' +p166657 +tp166658 +a(g166655 +g166657 +S'hospital' +p166659 +tp166660 +a(g166657 +g166659 +S'in' +p166661 +tp166662 +a(g166659 +g166661 +S'1920.' +p166663 +tp166664 +a(g166661 +g166663 +S'the' +p166665 +tp166666 +a(g166663 +g166665 +S'11th' +p166667 +tp166668 +a(g166665 +g166667 +S'child' +p166669 +tp166670 +a(g166667 +g166669 +S'of' +p166671 +tp166672 +a(g166669 +g166671 +S'a' +p166673 +tp166674 +a(g166671 +g166673 +S'russian' +p166675 +tp166676 +a(g166673 +g166675 +S'jewish' +p166677 +tp166678 +a(g166675 +g166677 +S'tailor,' +p166679 +tp166680 +a(g166677 +g166679 +S'chaim' +p166681 +tp166682 +a(g166679 +g166681 +S'soutine' +p166683 +tp166684 +a(g166681 +g166683 +S'(1894–1943)' +p166685 +tp166686 +a(g166683 +g166685 +S'was' +p166687 +tp166688 +a(g166685 +g166687 +S'rescued' +p166689 +tp166690 +a(g166687 +g166689 +S'from' +p166691 +tp166692 +a(g166689 +g166691 +S'poverty' +p166693 +tp166694 +a(g166691 +g166693 +S'and' +p166695 +tp166696 +a(g166693 +g166695 +S'abuse' +p166697 +tp166698 +a(g166695 +g166697 +S'by' +p166699 +tp166700 +a(g166697 +g166699 +S'a' +p166701 +tp166702 +a(g166699 +g166701 +S'rabbi' +p166703 +tp166704 +a(g166701 +g166703 +S'who' +p166705 +tp166706 +a(g166703 +g166705 +S'recognized' +p166707 +tp166708 +a(g166705 +g166707 +S'his' +p166709 +tp166710 +a(g166707 +g166709 +S'talent' +p166711 +tp166712 +a(g166709 +g166711 +S'and' +p166713 +tp166714 +a(g166711 +g166713 +S'sent' +p166715 +tp166716 +a(g166713 +g166715 +S'him' +p166717 +tp166718 +a(g166715 +g166717 +S'to' +p166719 +tp166720 +a(g166717 +g166719 +S'art' +p166721 +tp166722 +a(g166719 +g166721 +S'school\xe2\x80\x94first' +p166723 +tp166724 +a(g166721 +g166723 +S'in' +p166725 +tp166726 +a(g166723 +g166725 +S'minsk,' +p166727 +tp166728 +a(g166725 +g166727 +S'then' +p166729 +tp166730 +a(g166727 +g166729 +S'in' +p166731 +tp166732 +a(g166729 +g166731 +S'vilna.' +p166733 +tp166734 +a(g166731 +g166733 +S'soutine' +p166735 +tp166736 +a(g166733 +g166735 +S'arrived' +p166737 +tp166738 +a(g166735 +g166737 +S'in' +p166739 +tp166740 +a(g166737 +g166739 +S'paris' +p166741 +tp166742 +a(g166739 +g166741 +S'at' +p166743 +tp166744 +a(g166741 +g166743 +S'the' +p166745 +tp166746 +a(g166743 +g166745 +S'age' +p166747 +tp166748 +a(g166745 +g166747 +S'of' +p166749 +tp166750 +a(g166747 +g166749 +S'17' +p166751 +tp166752 +a(g166749 +g166751 +S'in' +p166753 +tp166754 +a(g166751 +g166753 +S'1911\xe2\x80\x931912' +p166755 +tp166756 +a(g166753 +g166755 +S'and' +p166757 +tp166758 +a(g166755 +g166757 +S'met' +p166759 +tp166760 +a(g166757 +g166759 +S'modigliani' +p166761 +tp166762 +a(g166759 +g166761 +S'in' +p166763 +tp166764 +a(g166761 +g166763 +S'montparnasse' +p166765 +tp166766 +a(g166763 +g166765 +S'in' +p166767 +tp166768 +a(g166765 +g166767 +S'about' +p166769 +tp166770 +a(g166767 +g166769 +S'1914.' +p166771 +tp166772 +a(g166769 +g166771 +S'they' +p166773 +tp166774 +a(g166771 +g166773 +S'developed' +p166775 +tp166776 +a(g166773 +g166775 +S'a' +p166777 +tp166778 +a(g166775 +g166777 +S'close' +p166779 +tp166780 +a(g166777 +g166779 +S'friendship,' +p166781 +tp166782 +a(g166779 +g166781 +S'and' +p166783 +tp166784 +a(g166781 +g166783 +S'modigliani' +p166785 +tp166786 +a(g166783 +g166785 +S'painted' +p166787 +tp166788 +a(g166785 +g166787 +S"soutine's" +p166789 +tp166790 +a(g166787 +g166789 +S'portrait' +p166791 +tp166792 +a(g166789 +g166791 +S'several' +p166793 +tp166794 +a(g166791 +g166793 +S'times.' +p166795 +tp166796 +a(g166793 +g166795 +S"soutine's" +p166797 +tp166798 +a(g166795 +g166797 +S'unruly,' +p166799 +tp166800 +a(g166797 +g166799 +S'spontaneous' +p166801 +tp166802 +a(g166799 +g166801 +S'manner' +p166803 +tp166804 +a(g166801 +g166803 +S'of' +p166805 +tp166806 +a(g166803 +g166805 +S'painting' +p166807 +tp166808 +a(g166805 +g166807 +S'was' +p166809 +tp166810 +a(g166807 +g166809 +S'alien' +p166811 +tp166812 +a(g166809 +g166811 +S'to' +p166813 +tp166814 +a(g166811 +g166813 +S'his' +p166815 +tp166816 +a(g166813 +g166815 +S'italian' +p166817 +tp166818 +a(g166815 +g166817 +S'friend,' +p166819 +tp166820 +a(g166817 +g166819 +S'who,' +p166821 +tp166822 +a(g166819 +g166821 +S'to' +p166823 +tp166824 +a(g166821 +g166823 +S'describe' +p166825 +tp166826 +a(g166823 +g166825 +S'his' +p166827 +tp166828 +a(g166825 +g166827 +S'own' +p166829 +tp166830 +a(g166827 +g166829 +S'state' +p166831 +tp166832 +a(g166829 +g166831 +S'of' +p166833 +tp166834 +a(g166831 +g166833 +S'drunkenness,' +p166835 +tp166836 +a(g166833 +g166835 +S'once' +p166837 +tp166838 +a(g166835 +g166837 +S'quipped,' +p166839 +tp166840 +a(g166837 +g166839 +S'"everything' +p166841 +tp166842 +a(g166839 +g166841 +S'dances' +p166843 +tp166844 +a(g166841 +g166843 +S'around' +p166845 +tp166846 +a(g166843 +g166845 +S'me' +p166847 +tp166848 +a(g166845 +g166847 +S'as' +p166849 +tp166850 +a(g166847 +g166849 +S'in' +p166851 +tp166852 +a(g166849 +g166851 +S'a' +p166853 +tp166854 +a(g166851 +g166853 +S'landscape' +p166855 +tp166856 +a(g166853 +g166855 +S'by' +p166857 +tp166858 +a(g166855 +g166857 +S'soutine."' +p166859 +tp166860 +a(g166857 +g166859 +S'the' +p166861 +tp166862 +a(g166859 +g166861 +S'elegant' +p166863 +tp166864 +a(g166861 +g166863 +S'modigliani' +p166865 +tp166866 +a(g166863 +g166865 +S'felt' +p166867 +tp166868 +a(g166865 +g166867 +S'protective' +p166869 +tp166870 +a(g166867 +g166869 +S'of' +p166871 +tp166872 +a(g166869 +g166871 +S'the' +p166873 +tp166874 +a(g166871 +g166873 +S'uncouth' +p166875 +tp166876 +a(g166873 +g166875 +S'soutine,' +p166877 +tp166878 +a(g166875 +g166877 +S'10' +p166879 +tp166880 +a(g166877 +g166879 +S'years' +p166881 +tp166882 +a(g166879 +g166881 +S'his' +p166883 +tp166884 +a(g166881 +g166883 +S'junior.' +p166885 +tp166886 +a(g166883 +g166885 +S'in' +p166887 +tp166888 +a(g166885 +g166887 +S'1916' +p166889 +tp166890 +a(g166887 +g166889 +S'modigliani' +p166891 +tp166892 +a(g166889 +g166891 +S'introduced' +p166893 +tp166894 +a(g166891 +g166893 +S'his' +p166895 +tp166896 +a(g166893 +g166895 +S'friend' +p166897 +tp166898 +a(g166895 +g166897 +S'to' +p166899 +tp166900 +a(g166897 +g166899 +S'his' +p166901 +tp166902 +a(g166899 +g166901 +S'dealer,' +p166903 +tp166904 +a(g166901 +g166903 +S'leopold' +p166905 +tp166906 +a(g166903 +g166905 +S'zborowski,' +p166907 +tp166908 +a(g166905 +g166907 +S'and' +p166909 +tp166910 +a(g166907 +g166909 +S'urged' +p166911 +tp166912 +a(g166909 +g166911 +S'him' +p166913 +tp166914 +a(g166911 +g166913 +S'to' +p166915 +tp166916 +a(g166913 +g166915 +S'handle' +p166917 +tp166918 +a(g166915 +g166917 +S"soutine's" +p166919 +tp166920 +a(g166917 +g166919 +S'work,' +p166921 +tp166922 +a(g166919 +g166921 +S'which' +p166923 +tp166924 +a(g166921 +g166923 +S'he' +p166925 +tp166926 +a(g166923 +g166925 +S'began' +p166927 +tp166928 +a(g166925 +g166927 +S'to' +p166929 +tp166930 +a(g166927 +g166929 +S'do.' +p166931 +tp166932 +a(g166929 +g166931 +S'shortly' +p166933 +tp166934 +a(g166931 +g166933 +S'before' +p166935 +tp166936 +a(g166933 +g166935 +S'modigliani' +p166937 +tp166938 +a(g166935 +g166937 +S'died,' +p166939 +tp166940 +a(g166937 +g166939 +S'he' +p166941 +tp166942 +a(g166939 +g166941 +S'told' +p166943 +tp166944 +a(g166941 +g166943 +S'zborowski,' +p166945 +tp166946 +a(g166943 +g166945 +S'"don\'t' +p166947 +tp166948 +a(g166945 +g166947 +S'worry,' +p166949 +tp166950 +a(g166947 +g166949 +S"i'm" +p166951 +tp166952 +a(g166949 +g166951 +S'leaving' +p166953 +tp166954 +a(g166951 +g166953 +S'you' +p166955 +tp166956 +a(g166953 +g166955 +S'soutine."' +p166957 +tp166958 +a(g166955 +g166957 +S'while' +p166959 +tp166960 +a(g166957 +g166959 +S'many' +p166961 +tp166962 +a(g166959 +g166961 +S'of' +p166963 +tp166964 +a(g166961 +g166963 +S"modigliani's" +p166965 +tp166966 +a(g166963 +g166965 +S'portraits' +p166967 +tp166968 +a(g166965 +g166967 +S'are' +p166969 +tp166970 +a(g166967 +g166969 +S'either' +p166971 +tp166972 +a(g166969 +g166971 +S'stylized' +p166973 +tp166974 +a(g166971 +g166973 +S'and' +p166975 +tp166976 +a(g166973 +g166975 +S'impersonal—with' +p166977 +tp166978 +a(g166975 +g166977 +S'eyes' +p166979 +tp166980 +a(g166977 +g166979 +S'often' +p166981 +tp166982 +a(g166979 +g166981 +S'left' +p166983 +tp166984 +a(g166981 +g166983 +S'blank\xe2\x80\x94or' +p166985 +tp166986 +a(g166983 +g166985 +S'almost' +p166987 +tp166988 +a(g166985 +g166987 +S'caricatural,' +p166989 +tp166990 +a(g166987 +g166989 +S'this' +p166991 +tp166992 +a(g166989 +g166991 +S'painting' +p166993 +tp166994 +a(g166991 +g166993 +S'seems' +p166995 +tp166996 +a(g166993 +g166995 +S'to' +p166997 +tp166998 +a(g166995 +g166997 +S'be' +p166999 +tp167000 +a(g166997 +g166999 +S'both' +p167001 +tp167002 +a(g166999 +g167001 +S'particular' +p167003 +tp167004 +a(g167001 +g167003 +S'and' +p167005 +tp167006 +a(g167003 +g167005 +S'sympathetic.' +p167007 +tp167008 +a(g167005 +g167007 +S'soutine' +p167009 +tp167010 +a(g167007 +g167009 +S'sits' +p167011 +tp167012 +a(g167009 +g167011 +S'with' +p167013 +tp167014 +a(g167011 +g167013 +S'tumbling' +p167015 +tp167016 +a(g167013 +g167015 +S'hair' +p167017 +tp167018 +a(g167015 +g167017 +S'and' +p167019 +tp167020 +a(g167017 +g167019 +S'ill-matched' +p167021 +tp167022 +a(g167019 +g167021 +S'clothes,' +p167023 +tp167024 +a(g167021 +g167023 +S'his' +p167025 +tp167026 +a(g167023 +g167025 +S'hands' +p167027 +tp167028 +a(g167025 +g167027 +S'placed' +p167029 +tp167030 +a(g167027 +g167029 +S'awkwardly' +p167031 +tp167032 +a(g167029 +g167031 +S'in' +p167033 +tp167034 +a(g167031 +g167033 +S'his' +p167035 +tp167036 +a(g167033 +g167035 +S'lap,' +p167037 +tp167038 +a(g167035 +g167037 +S'his' +p167039 +tp167040 +a(g167037 +g167039 +S'nose' +p167041 +tp167042 +a(g167039 +g167041 +S'spreading' +p167043 +tp167044 +a(g167041 +g167043 +S'across' +p167045 +tp167046 +a(g167043 +g167045 +S'his' +p167047 +tp167048 +a(g167045 +g167047 +S'face' +p167049 +tp167050 +a(g167047 +g167049 +S'as' +p167051 +tp167052 +a(g167049 +g167051 +S'he' +p167053 +tp167054 +a(g167051 +g167053 +S'stares' +p167055 +tp167056 +a(g167053 +g167055 +S'out' +p167057 +tp167058 +a(g167055 +g167057 +S'of' +p167059 +tp167060 +a(g167057 +g167059 +S'the' +p167061 +tp167062 +a(g167059 +g167061 +S'frame.' +p167063 +tp167064 +a(g167061 +g167063 +S'the' +p167065 +tp167066 +a(g167063 +g167065 +S'half-closed' +p167067 +tp167068 +a(g167065 +g167067 +S'eyes,' +p167069 +tp167070 +a(g167067 +g167069 +S'one' +p167071 +tp167072 +a(g167069 +g167071 +S'slightly' +p167073 +tp167074 +a(g167071 +g167073 +S'higher' +p167075 +tp167076 +a(g167073 +g167075 +S'than' +p167077 +tp167078 +a(g167075 +g167077 +S'the' +p167079 +tp167080 +a(g167077 +g167079 +S'other,' +p167081 +tp167082 +a(g167079 +g167081 +S'might' +p167083 +tp167084 +a(g167081 +g167083 +S'suggest' +p167085 +tp167086 +a(g167083 +g167085 +S"soutine's" +p167087 +tp167088 +a(g167085 +g167087 +S'despair' +p167089 +tp167090 +a(g167087 +g167089 +S'and' +p167091 +tp167092 +a(g167089 +g167091 +S'hopelessness,' +p167093 +tp167094 +a(g167091 +g167093 +S'attitudes' +p167095 +tp167096 +a(g167093 +g167095 +S'with' +p167097 +tp167098 +a(g167095 +g167097 +S'which' +p167099 +tp167100 +a(g167097 +g167099 +S'modigliani' +p167101 +tp167102 +a(g167099 +g167101 +S'could' +p167103 +tp167104 +a(g167101 +g167103 +S'identify' +p167105 +tp167106 +a(g167103 +g167105 +S'as' +p167107 +tp167108 +a(g167105 +g167107 +S'a' +p167109 +tp167110 +a(g167107 +g167109 +S'poor' +p167111 +tp167112 +a(g167109 +g167111 +S'artist' +p167113 +tp167114 +a(g167111 +g167113 +S'in' +p167115 +tp167116 +a(g167113 +g167115 +S'paris.' +p167117 +tp167118 +a(g167115 +g167117 +S"modigliani's" +p167119 +tp167120 +a(g167117 +g167119 +S'treatment' +p167121 +tp167122 +a(g167119 +g167121 +S'of' +p167123 +tp167124 +a(g167121 +g167123 +S'soutine' +p167125 +tp167126 +a(g167123 +g167125 +S'may' +p167127 +tp167128 +a(g167125 +g167127 +S'also' +p167129 +tp167130 +a(g167127 +g167129 +S'reflect' +p167131 +tp167132 +a(g167129 +g167131 +S'the' +p167133 +tp167134 +a(g167131 +g167133 +S'special' +p167135 +tp167136 +a(g167133 +g167135 +S'place' +p167137 +tp167138 +a(g167135 +g167137 +S'that' +p167139 +tp167140 +a(g167137 +g167139 +S'soutine' +p167141 +tp167142 +a(g167139 +g167141 +S'had' +p167143 +tp167144 +a(g167141 +g167143 +S'won' +p167145 +tp167146 +a(g167143 +g167145 +S'in' +p167147 +tp167148 +a(g167145 +g167147 +S'the' +p167149 +tp167150 +a(g167147 +g167149 +S'older' +p167151 +tp167152 +a(g167149 +g167151 +S"artist's" +p167153 +tp167154 +a(g167151 +g167153 +S'affections.' +p167155 +tp167156 +a(g167153 +g167155 +S'monet' +p167157 +tp167158 +a(g167155 +g167157 +S'and' +p167159 +tp167160 +a(g167157 +g167159 +S'his' +p167161 +tp167162 +a(g167159 +g167161 +S'family' +p167163 +tp167164 +a(g167161 +g167163 +S'lived' +p167165 +tp167166 +a(g167163 +g167165 +S'in' +p167167 +tp167168 +a(g167165 +g167167 +S'england' +p167169 +tp167170 +a(g167167 +g167169 +S'briefly,' +p167171 +tp167172 +a(g167169 +g167171 +S'seeking' +p167173 +tp167174 +a(g167171 +g167173 +S'refuge' +p167175 +tp167176 +a(g167173 +g167175 +S'there' +p167177 +tp167178 +a(g167175 +g167177 +S'during' +p167179 +tp167180 +a(g167177 +g167179 +S'the' +p167181 +tp167182 +a(g167179 +g167181 +S'franco-prussian' +p167183 +tp167184 +a(g167181 +g167183 +S'war' +p167185 +tp167186 +a(g167183 +g167185 +S'(1870–1871),' +p167187 +tp167188 +a(g167185 +g167187 +S'and' +p167189 +tp167190 +a(g167187 +g167189 +S'returned' +p167191 +tp167192 +a(g167189 +g167191 +S'in' +p167193 +tp167194 +a(g167191 +g167193 +S'the' +p167195 +tp167196 +a(g167193 +g167195 +S'late' +p167197 +tp167198 +a(g167195 +g167197 +S'1880s,' +p167199 +tp167200 +a(g167197 +g167199 +S'staying' +p167201 +tp167202 +a(g167199 +g167201 +S'with' +p167203 +tp167204 +a(g167201 +g167203 +S'his' +p167205 +tp167206 +a(g167203 +g167205 +S'artist' +p167207 +tp167208 +a(g167205 +g167207 +S'friends' +p167209 +tp167210 +a(g167207 +g167209 +S'between' +p167211 +tp167212 +a(g167209 +g167211 +S'1899' +p167213 +tp167214 +a(g167211 +g167213 +S'and' +p167215 +tp167216 +a(g167213 +g167215 +S'1901,' +p167217 +tp167218 +a(g167215 +g167217 +S'monet' +p167219 +tp167220 +a(g167217 +g167219 +S'made' +p167221 +tp167222 +a(g167219 +g167221 +S'three' +p167223 +tp167224 +a(g167221 +g167223 +S'trips' +p167225 +tp167226 +a(g167223 +g167225 +S'to' +p167227 +tp167228 +a(g167225 +g167227 +S'london' +p167229 +tp167230 +a(g167227 +g167229 +S'specifically' +p167231 +tp167232 +a(g167229 +g167231 +S'to' +p167233 +tp167234 +a(g167231 +g167233 +S'paint.' +p167235 +tp167236 +a(g167233 +g167235 +S'he' +p167237 +tp167238 +a(g167235 +g167237 +S'went' +p167239 +tp167240 +a(g167237 +g167239 +S'in' +p167241 +tp167242 +a(g167239 +g167241 +S'winter,' +p167243 +tp167244 +a(g167241 +g167243 +S'when' +p167245 +tp167246 +a(g167243 +g167245 +S'the' +p167247 +tp167248 +a(g167245 +g167247 +S'city' +p167249 +tp167250 +a(g167247 +g167249 +S'was' +p167251 +tp167252 +a(g167249 +g167251 +S'clouded' +p167253 +tp167254 +a(g167251 +g167253 +S'with' +p167255 +tp167256 +a(g167253 +g167255 +S'fog' +p167257 +tp167258 +a(g167255 +g167257 +S'and' +p167259 +tp167260 +a(g167257 +g167259 +S'the' +p167261 +tp167262 +a(g167259 +g167261 +S'smoke' +p167263 +tp167264 +a(g167261 +g167263 +S'of' +p167265 +tp167266 +a(g167263 +g167265 +S'coal' +p167267 +tp167268 +a(g167265 +g167267 +S'fires.' +p167269 +tp167270 +a(g167267 +g167269 +S'"without' +p167271 +tp167272 +a(g167269 +g167271 +S'fog,"' +p167273 +tp167274 +a(g167271 +g167273 +S'monet' +p167275 +tp167276 +a(g167273 +g167275 +S'said,' +p167277 +tp167278 +a(g167275 +g167277 +S'"london' +p167279 +tp167280 +a(g167277 +g167279 +S'would' +p167281 +tp167282 +a(g167279 +g167281 +S'not' +p167283 +tp167284 +a(g167281 +g167283 +S'be' +p167285 +tp167286 +a(g167283 +g167285 +S'a' +p167287 +tp167288 +a(g167285 +g167287 +S'beautiful' +p167289 +tp167290 +a(g167287 +g167289 +S'city.' +p167291 +tp167292 +a(g167289 +g167291 +S'it' +p167293 +tp167294 +a(g167291 +g167293 +S'is' +p167295 +tp167296 +a(g167293 +g167295 +S'the' +p167297 +tp167298 +a(g167295 +g167297 +S'fog' +p167299 +tp167300 +a(g167297 +g167299 +S'that' +p167301 +tp167302 +a(g167299 +g167301 +S'gives' +p167303 +tp167304 +a(g167301 +g167303 +S'it' +p167305 +tp167306 +a(g167303 +g167305 +S'its' +p167307 +tp167308 +a(g167305 +g167307 +S'magnificent' +p167309 +tp167310 +a(g167307 +g167309 +S'breadth."' +p167311 +tp167312 +a(g167309 +g167311 +S'from' +p167313 +tp167314 +a(g167311 +g167313 +S'his' +p167315 +tp167316 +a(g167313 +g167315 +S'rooms' +p167317 +tp167318 +a(g167315 +g167317 +S'on' +p167319 +tp167320 +a(g167317 +g167319 +S'the' +p167321 +tp167322 +a(g167319 +g167321 +S'sixth' +p167323 +tp167324 +a(g167321 +g167323 +S'floor' +p167325 +tp167326 +a(g167323 +g167325 +S'of' +p167327 +tp167328 +a(g167325 +g167327 +S'the' +p167329 +tp167330 +a(g167327 +g167329 +S'savoy' +p167331 +tp167332 +a(g167329 +g167331 +S'hotel,' +p167333 +tp167334 +a(g167331 +g167333 +S"monet's" +p167335 +tp167336 +a(g167333 +g167335 +S'view' +p167337 +tp167338 +a(g167335 +g167337 +S'up' +p167339 +tp167340 +a(g167337 +g167339 +S'and' +p167341 +tp167342 +a(g167339 +g167341 +S'down' +p167343 +tp167344 +a(g167341 +g167343 +S'the' +p167345 +tp167346 +a(g167343 +g167345 +S'thames' +p167347 +tp167348 +a(g167345 +g167347 +S'provided' +p167349 +tp167350 +a(g167347 +g167349 +S'him' +p167351 +tp167352 +a(g167349 +g167351 +S'subject' +p167353 +tp167354 +a(g167351 +g167353 +S'matter' +p167355 +tp167356 +a(g167353 +g167355 +S'for' +p167357 +tp167358 +a(g167355 +g167357 +S'several' +p167359 +tp167360 +a(g167357 +g167359 +S'series' +p167361 +tp167362 +a(g167359 +g167361 +S'pictures.' +p167363 +tp167364 +a(g167361 +g167363 +S'he' +p167365 +tp167366 +a(g167363 +g167365 +S'could' +p167367 +tp167368 +a(g167365 +g167367 +S'see' +p167369 +tp167370 +a(g167367 +g167369 +S'waterloo' +p167371 +tp167372 +a(g167369 +g167371 +S'bridge,' +p167373 +tp167374 +a(g167371 +g167373 +S'charing' +p167375 +tp167376 +a(g167373 +g167375 +S'cross' +p167377 +tp167378 +a(g167375 +g167377 +S'bridge,' +p167379 +tp167380 +a(g167377 +g167379 +S'and' +p167381 +tp167382 +a(g167379 +g167381 +S'the' +p167383 +tp167384 +a(g167381 +g167383 +S'houses' +p167385 +tp167386 +a(g167383 +g167385 +S'of' +p167387 +tp167388 +a(g167385 +g167387 +S'parliament.' +p167389 +tp167390 +a(g167387 +g167389 +S'in' +p167391 +tp167392 +a(g167389 +g167391 +S'all' +p167393 +tp167394 +a(g167391 +g167393 +S'he' +p167395 +tp167396 +a(g167393 +g167395 +S'completed' +p167397 +tp167398 +a(g167395 +g167397 +S'more' +p167399 +tp167400 +a(g167397 +g167399 +S'than' +p167401 +tp167402 +a(g167399 +g167401 +S'one' +p167403 +tp167404 +a(g167401 +g167403 +S'hundred' +p167405 +tp167406 +a(g167403 +g167405 +S'thames' +p167407 +tp167408 +a(g167405 +g167407 +S'paintings.' +p167409 +tp167410 +a(g167407 +g167409 +S'most,' +p167411 +tp167412 +a(g167409 +g167411 +S'like' +p167413 +tp167414 +a(g167411 +g167413 +S'this' +p167415 +tp167416 +a(g167413 +g167415 +S'one,' +p167417 +tp167418 +a(g167415 +g167417 +S'render' +p167419 +tp167420 +a(g167417 +g167419 +S'the' +p167421 +tp167422 +a(g167419 +g167421 +S"city's" +p167423 +tp167424 +a(g167421 +g167423 +S'famous' +p167425 +tp167426 +a(g167423 +g167425 +S'landmarks' +p167427 +tp167428 +a(g167425 +g167427 +S'as' +p167429 +tp167430 +a(g167427 +g167429 +S'darkened' +p167431 +tp167432 +a(g167429 +g167431 +S'silhouettes' +p167433 +tp167434 +a(g167431 +g167433 +S'cloaked' +p167435 +tp167436 +a(g167433 +g167435 +S'in' +p167437 +tp167438 +a(g167435 +g167437 +S'the' +p167439 +tp167440 +a(g167437 +g167439 +S'misty' +p167441 +tp167442 +a(g167439 +g167441 +S'sky.' +p167443 +tp167444 +a(g167441 +g167443 +S'he' +p167445 +tp167446 +a(g167443 +g167445 +S'worked' +p167447 +tp167448 +a(g167445 +g167447 +S'at' +p167449 +tp167450 +a(g167447 +g167449 +S'prescribed' +p167451 +tp167452 +a(g167449 +g167451 +S'times' +p167453 +tp167454 +a(g167451 +g167453 +S'of' +p167455 +tp167456 +a(g167453 +g167455 +S'day' +p167457 +tp167458 +a(g167455 +g167457 +S'to' +p167459 +tp167460 +a(g167457 +g167459 +S'capture' +p167461 +tp167462 +a(g167459 +g167461 +S'this' +p167463 +tp167464 +a(g167461 +g167463 +S'backlit' +p167465 +tp167466 +a(g167463 +g167465 +S'effect,' +p167467 +tp167468 +a(g167465 +g167467 +S'often' +p167469 +tp167470 +a(g167467 +g167469 +S'complaining' +p167471 +tp167472 +a(g167469 +g167471 +S'about' +p167473 +tp167474 +a(g167471 +g167473 +S'the' +p167475 +tp167476 +a(g167473 +g167475 +S'rapidity' +p167477 +tp167478 +a(g167475 +g167477 +S'with' +p167479 +tp167480 +a(g167477 +g167479 +S'which' +p167481 +tp167482 +a(g167479 +g167481 +S'conditions' +p167483 +tp167484 +a(g167481 +g167483 +S'changed.' +p167485 +tp167486 +a(g167483 +g167485 +S'in' +p167487 +tp167488 +a(g167485 +g167487 +S'1904,' +p167489 +tp167490 +a(g167487 +g167489 +S'monet' +p167491 +tp167492 +a(g167489 +g167491 +S'exhibited' +p167493 +tp167494 +a(g167491 +g167493 +S'thirty-seven' +p167495 +tp167496 +a(g167493 +g167495 +S'london' +p167497 +tp167498 +a(g167495 +g167497 +S'pictures,' +p167499 +tp167500 +a(g167497 +g167499 +S'including' +p167501 +tp167502 +a(g167499 +g167501 +S'this' +p167503 +tp167504 +a(g167501 +g167503 +S'one' +p167505 +tp167506 +a(g167503 +g167505 +S'and' +p167507 +tp167508 +a(g167505 +g167507 +S'toward' +p167509 +tp167510 +a(g167507 +g167509 +S'the' +p167511 +tp167512 +a(g167509 +g167511 +S'middle' +p167513 +tp167514 +a(g167511 +g167513 +S'of' +p167515 +tp167516 +a(g167513 +g167515 +S'the' +p167517 +tp167518 +a(g167515 +g167517 +S'1880s,' +p167519 +tp167520 +a(g167517 +g167519 +S'a' +p167521 +tp167522 +a(g167519 +g167521 +S'number' +p167523 +tp167524 +a(g167521 +g167523 +S'of' +p167525 +tp167526 +a(g167523 +g167525 +S'artists' +p167527 +tp167528 +a(g167525 +g167527 +S'became' +p167529 +tp167530 +a(g167527 +g167529 +S'disaffected' +p167531 +tp167532 +a(g167529 +g167531 +S'with' +p167533 +tp167534 +a(g167531 +g167533 +S'impressionism.' +p167535 +tp167536 +a(g167533 +g167535 +S'monet' +p167537 +tp167538 +a(g167535 +g167537 +S'began' +p167539 +tp167540 +a(g167537 +g167539 +S'to' +p167541 +tp167542 +a(g167539 +g167541 +S'explore' +p167543 +tp167544 +a(g167541 +g167543 +S'painting' +p167545 +tp167546 +a(g167543 +g167545 +S'in' +p167547 +tp167548 +a(g167545 +g167547 +S'a' +p167549 +tp167550 +a(g167547 +g167549 +S'series,' +p167551 +tp167552 +a(g167549 +g167551 +S'or' +p167553 +tp167554 +a(g167551 +g167553 +S'creating' +p167555 +tp167556 +a(g167553 +g167555 +S'groups' +p167557 +tp167558 +a(g167555 +g167557 +S'of' +p167559 +tp167560 +a(g167557 +g167559 +S'works' +p167561 +tp167562 +a(g167559 +g167561 +S'of' +p167563 +tp167564 +a(g167561 +g167563 +S'almost' +p167565 +tp167566 +a(g167563 +g167565 +S'identical' +p167567 +tp167568 +a(g167565 +g167567 +S'subjects.' +p167569 +tp167570 +a(g167567 +g167569 +S'the' +p167571 +tp167572 +a(g167569 +g167571 +S'series' +p167573 +tp167574 +a(g167571 +g167573 +S'paintings' +p167575 +tp167576 +a(g167573 +g167575 +S'were' +p167577 +tp167578 +a(g167575 +g167577 +S'a' +p167579 +tp167580 +a(g167577 +g167579 +S'break' +p167581 +tp167582 +a(g167579 +g167581 +S'from' +p167583 +tp167584 +a(g167581 +g167583 +S'impressionism' +p167585 +tp167586 +a(g167583 +g167585 +S'in' +p167587 +tp167588 +a(g167585 +g167587 +S'two' +p167589 +tp167590 +a(g167587 +g167589 +S'critical' +p167591 +tp167592 +a(g167589 +g167591 +S'respects:' +p167593 +tp167594 +a(g167591 +g167593 +S'the' +p167595 +tp167596 +a(g167593 +g167595 +S'works,' +p167597 +tp167598 +a(g167595 +g167597 +S'based' +p167599 +tp167600 +a(g167597 +g167599 +S'on' +p167601 +tp167602 +a(g167599 +g167601 +S'campaigns' +p167603 +tp167604 +a(g167601 +g167603 +S'in' +p167605 +tp167606 +a(g167603 +g167605 +S'front' +p167607 +tp167608 +a(g167605 +g167607 +S'of' +p167609 +tp167610 +a(g167607 +g167609 +S'the' +p167611 +tp167612 +a(g167609 +g167611 +S'motif,' +p167613 +tp167614 +a(g167611 +g167613 +S'were' +p167615 +tp167616 +a(g167613 +g167615 +S'usually' +p167617 +tp167618 +a(g167615 +g167617 +S'extensively' +p167619 +tp167620 +a(g167617 +g167619 +S'reworked' +p167621 +tp167622 +a(g167619 +g167621 +S'in' +p167623 +tp167624 +a(g167621 +g167623 +S'the' +p167625 +tp167626 +a(g167623 +g167625 +S'studio' +p167627 +tp167628 +a(g167625 +g167627 +S'and' +p167629 +tp167630 +a(g167627 +g167629 +S'lacked' +p167631 +tp167632 +a(g167629 +g167631 +S'the' +p167633 +tp167634 +a(g167631 +g167633 +S'spontaneity' +p167635 +tp167636 +a(g167633 +g167635 +S'integral' +p167637 +tp167638 +a(g167635 +g167637 +S'to' +p167639 +tp167640 +a(g167637 +g167639 +S'impressionism;' +p167641 +tp167642 +a(g167639 +g167641 +S'and,' +p167643 +tp167644 +a(g167641 +g167643 +S'the' +p167645 +tp167646 +a(g167643 +g167645 +S'motif' +p167647 +tp167648 +a(g167645 +g167647 +S'itself' +p167649 +tp167650 +a(g167647 +g167649 +S'was' +p167651 +tp167652 +a(g167649 +g167651 +S'secondary' +p167653 +tp167654 +a(g167651 +g167653 +S'to' +p167655 +tp167656 +a(g167653 +g167655 +S'effects' +p167657 +tp167658 +a(g167655 +g167657 +S'of' +p167659 +tp167660 +a(g167657 +g167659 +S'light' +p167661 +tp167662 +a(g167659 +g167661 +S'and' +p167663 +tp167664 +a(g167661 +g167663 +S'weather.' +p167665 +tp167666 +a(g167663 +g167665 +S'the' +p167667 +tp167668 +a(g167665 +g167667 +S'new' +p167669 +tp167670 +a(g167667 +g167669 +S'qualities' +p167671 +tp167672 +a(g167669 +g167671 +S'of' +p167673 +tp167674 +a(g167671 +g167673 +S"monet's" +p167675 +tp167676 +a(g167673 +g167675 +S'series' +p167677 +tp167678 +a(g167675 +g167677 +S'paintings' +p167679 +tp167680 +a(g167677 +g167679 +S'were' +p167681 +tp167682 +a(g167679 +g167681 +S'given' +p167683 +tp167684 +a(g167681 +g167683 +S'concentrated' +p167685 +tp167686 +a(g167683 +g167685 +S'expression' +p167687 +tp167688 +a(g167685 +g167687 +S'in' +p167689 +tp167690 +a(g167687 +g167689 +S'the' +p167691 +tp167692 +a(g167689 +g167691 +S'in' +p167693 +tp167694 +a(g167691 +g167693 +S'late' +p167695 +tp167696 +a(g167693 +g167695 +S'january' +p167697 +tp167698 +a(g167695 +g167697 +S'or' +p167699 +tp167700 +a(g167697 +g167699 +S'early' +p167701 +tp167702 +a(g167699 +g167701 +S'february' +p167703 +tp167704 +a(g167701 +g167703 +S'1892,' +p167705 +tp167706 +a(g167703 +g167705 +S'monet' +p167707 +tp167708 +a(g167705 +g167707 +S'rented' +p167709 +tp167710 +a(g167707 +g167709 +S'rooms' +p167711 +tp167712 +a(g167709 +g167711 +S'across' +p167713 +tp167714 +a(g167711 +g167713 +S'from' +p167715 +tp167716 +a(g167713 +g167715 +S'rouen' +p167717 +tp167718 +a(g167715 +g167717 +S'cathedral.' +p167719 +tp167720 +a(g167717 +g167719 +S'he' +p167721 +tp167722 +a(g167719 +g167721 +S'remained' +p167723 +tp167724 +a(g167721 +g167723 +S'until' +p167725 +tp167726 +a(g167723 +g167725 +S'spring,' +p167727 +tp167728 +a(g167725 +g167727 +S'painting' +p167729 +tp167730 +a(g167727 +g167729 +S'its' +p167731 +tp167732 +a(g167729 +g167731 +S'looming' +p167733 +tp167734 +a(g167731 +g167733 +S'façade' +p167735 +tp167736 +a(g167733 +g167735 +S'many' +p167737 +tp167738 +a(g167735 +g167737 +S'times,' +p167739 +tp167740 +a(g167737 +g167739 +S'most' +p167741 +tp167742 +a(g167739 +g167741 +S'often' +p167743 +tp167744 +a(g167741 +g167743 +S'as' +p167745 +tp167746 +a(g167743 +g167745 +S'we' +p167747 +tp167748 +a(g167745 +g167747 +S'see' +p167749 +tp167750 +a(g167747 +g167749 +S'it' +p167751 +tp167752 +a(g167749 +g167751 +S'here,' +p167753 +tp167754 +a(g167751 +g167753 +S'close' +p167755 +tp167756 +a(g167753 +g167755 +S'up' +p167757 +tp167758 +a(g167755 +g167757 +S'and' +p167759 +tp167760 +a(g167757 +g167759 +S'cropped' +p167761 +tp167762 +a(g167759 +g167761 +S'to' +p167763 +tp167764 +a(g167761 +g167763 +S'the' +p167765 +tp167766 +a(g167763 +g167765 +S'sides.' +p167767 +tp167768 +a(g167765 +g167767 +S'the' +p167769 +tp167770 +a(g167767 +g167769 +S'next' +p167771 +tp167772 +a(g167769 +g167771 +S'winter' +p167773 +tp167774 +a(g167771 +g167773 +S'he' +p167775 +tp167776 +a(g167773 +g167775 +S'returned' +p167777 +tp167778 +a(g167775 +g167777 +S'to' +p167779 +tp167780 +a(g167777 +g167779 +S'paint' +p167781 +tp167782 +a(g167779 +g167781 +S'the' +p167783 +tp167784 +a(g167781 +g167783 +S'cathedral' +p167785 +tp167786 +a(g167783 +g167785 +S'again,' +p167787 +tp167788 +a(g167785 +g167787 +S'making' +p167789 +tp167790 +a(g167787 +g167789 +S'in' +p167791 +tp167792 +a(g167789 +g167791 +S'all' +p167793 +tp167794 +a(g167791 +g167793 +S'more' +p167795 +tp167796 +a(g167793 +g167795 +S'than' +p167797 +tp167798 +a(g167795 +g167797 +S'30' +p167799 +tp167800 +a(g167797 +g167799 +S'views' +p167801 +tp167802 +a(g167799 +g167801 +S'of' +p167803 +tp167804 +a(g167801 +g167803 +S'it.' +p167805 +tp167806 +a(g167803 +g167805 +S'but' +p167807 +tp167808 +a(g167805 +g167807 +S'it' +p167809 +tp167810 +a(g167807 +g167809 +S'was' +p167811 +tp167812 +a(g167809 +g167811 +S'less' +p167813 +tp167814 +a(g167811 +g167813 +S'the' +p167815 +tp167816 +a(g167813 +g167815 +S'carved' +p167817 +tp167818 +a(g167815 +g167817 +S'gothic' +p167819 +tp167820 +a(g167817 +g167819 +S'façade' +p167821 +tp167822 +a(g167819 +g167821 +S'that' +p167823 +tp167824 +a(g167821 +g167823 +S'was' +p167825 +tp167826 +a(g167823 +g167825 +S"monet's" +p167827 +tp167828 +a(g167825 +g167827 +S'subject' +p167829 +tp167830 +a(g167827 +g167829 +S'than' +p167831 +tp167832 +a(g167829 +g167831 +S'the' +p167833 +tp167834 +a(g167831 +g167833 +S'atmosphere—the' +p167835 +tp167836 +a(g167833 +g167835 +S'in' +p167837 +tp167838 +a(g167835 +g167837 +S'the' +p167839 +tp167840 +a(g167837 +g167839 +S'1880s,' +p167841 +tp167842 +a(g167839 +g167841 +S'renoir,' +p167843 +tp167844 +a(g167841 +g167843 +S'like' +p167845 +tp167846 +a(g167843 +g167845 +S'many' +p167847 +tp167848 +a(g167845 +g167847 +S'of' +p167849 +tp167850 +a(g167847 +g167849 +S'the' +p167851 +tp167852 +a(g167849 +g167851 +S'impressionists,' +p167853 +tp167854 +a(g167851 +g167853 +S'had' +p167855 +tp167856 +a(g167853 +g167855 +S'become' +p167857 +tp167858 +a(g167855 +g167857 +S'dissatisfied' +p167859 +tp167860 +a(g167857 +g167859 +S'with' +p167861 +tp167862 +a(g167859 +g167861 +S'the' +p167863 +tp167864 +a(g167861 +g167863 +S"style's" +p167865 +tp167866 +a(g167863 +g167865 +S'reliance' +p167867 +tp167868 +a(g167865 +g167867 +S'on' +p167869 +tp167870 +a(g167867 +g167869 +S'observation' +p167871 +tp167872 +a(g167869 +g167871 +S'and' +p167873 +tp167874 +a(g167871 +g167873 +S'visual' +p167875 +tp167876 +a(g167873 +g167875 +S'effects' +p167877 +tp167878 +a(g167875 +g167877 +S'and' +p167879 +tp167880 +a(g167877 +g167879 +S'sought' +p167881 +tp167882 +a(g167879 +g167881 +S'an' +p167883 +tp167884 +a(g167881 +g167883 +S'art' +p167885 +tp167886 +a(g167883 +g167885 +S'of' +p167887 +tp167888 +a(g167885 +g167887 +S'more' +p167889 +tp167890 +a(g167887 +g167889 +S'permanent' +p167891 +tp167892 +a(g167889 +g167891 +S'qualities.' +p167893 +tp167894 +a(g167891 +g167893 +S'"i' +p167895 +tp167896 +a(g167893 +g167895 +S'had' +p167897 +tp167898 +a(g167895 +g167897 +S'wrung' +p167899 +tp167900 +a(g167897 +g167899 +S'impressionism' +p167901 +tp167902 +a(g167899 +g167901 +S'dry,"' +p167903 +tp167904 +a(g167901 +g167903 +S'he' +p167905 +tp167906 +a(g167903 +g167905 +S'later' +p167907 +tp167908 +a(g167905 +g167907 +S'wrote,' +p167909 +tp167910 +a(g167907 +g167909 +S'"and' +p167911 +tp167912 +a(g167909 +g167911 +S'i' +p167913 +tp167914 +a(g167911 +g167913 +S'finally' +p167915 +tp167916 +a(g167913 +g167915 +S'came' +p167917 +tp167918 +a(g167915 +g167917 +S'to' +p167919 +tp167920 +a(g167917 +g167919 +S'the' +p167921 +tp167922 +a(g167919 +g167921 +S'conclusion' +p167923 +tp167924 +a(g167921 +g167923 +S'that' +p167925 +tp167926 +a(g167923 +g167925 +S'i' +p167927 +tp167928 +a(g167925 +g167927 +S'knew' +p167929 +tp167930 +a(g167927 +g167929 +S'neither' +p167931 +tp167932 +a(g167929 +g167931 +S'how' +p167933 +tp167934 +a(g167931 +g167933 +S'to' +p167935 +tp167936 +a(g167933 +g167935 +S'paint' +p167937 +tp167938 +a(g167935 +g167937 +S'[nor]' +p167939 +tp167940 +a(g167937 +g167939 +S'draw."' +p167941 +tp167942 +a(g167939 +g167941 +S'on' +p167943 +tp167944 +a(g167941 +g167943 +S'a' +p167945 +tp167946 +a(g167943 +g167945 +S'trip' +p167947 +tp167948 +a(g167945 +g167947 +S'to' +p167949 +tp167950 +a(g167947 +g167949 +S'italy' +p167951 +tp167952 +a(g167949 +g167951 +S'in' +p167953 +tp167954 +a(g167951 +g167953 +S'1881,' +p167955 +tp167956 +a(g167953 +g167955 +S'renoir' +p167957 +tp167958 +a(g167955 +g167957 +S'found' +p167959 +tp167960 +a(g167957 +g167959 +S'new' +p167961 +tp167962 +a(g167959 +g167961 +S'inspiration' +p167963 +tp167964 +a(g167961 +g167963 +S'in' +p167965 +tp167966 +a(g167963 +g167965 +S'the' +p167967 +tp167968 +a(g167965 +g167967 +S'works' +p167969 +tp167970 +a(g167967 +g167969 +S'of' +p167971 +tp167972 +a(g167969 +g167971 +S'renaissance' +p167973 +tp167974 +a(g167971 +g167973 +S'artists,' +p167975 +tp167976 +a(g167973 +g167975 +S'particularly' +p167977 +tp167978 +a(g167975 +g167977 +S'raphael,' +p167979 +tp167980 +a(g167977 +g167979 +S'and' +p167981 +tp167982 +a(g167979 +g167981 +S'developed' +p167983 +tp167984 +a(g167981 +g167983 +S'a' +p167985 +tp167986 +a(g167983 +g167985 +S'manner' +p167987 +tp167988 +a(g167985 +g167987 +S'of' +p167989 +tp167990 +a(g167987 +g167989 +S'painting' +p167991 +tp167992 +a(g167989 +g167991 +S'he' +p167993 +tp167994 +a(g167991 +g167993 +S'called' +p167995 +tp167996 +a(g167993 +g167995 +S'"aigre,"' +p167997 +tp167998 +a(g167995 +g167997 +S'or' +p167999 +tp168000 +a(g167997 +g167999 +S'"sour."' +p168001 +tp168002 +a(g167999 +g168001 +S'the' +p168003 +tp168004 +a(g168001 +g168003 +S'word' +p168005 +tp168006 +a(g168003 +g168005 +S'conveys' +p168007 +tp168008 +a(g168005 +g168007 +S'a' +p168009 +tp168010 +a(g168007 +g168009 +S'sense' +p168011 +tp168012 +a(g168009 +g168011 +S'of' +p168013 +tp168014 +a(g168011 +g168013 +S'the' +p168015 +tp168016 +a(g168013 +g168015 +S'hardness' +p168017 +tp168018 +a(g168015 +g168017 +S'and' +p168019 +tp168020 +a(g168017 +g168019 +S'tightness' +p168021 +tp168022 +a(g168019 +g168021 +S'of' +p168023 +tp168024 +a(g168021 +g168023 +S'his' +p168025 +tp168026 +a(g168023 +g168025 +S'new' +p168027 +tp168028 +a(g168025 +g168027 +S'style,' +p168029 +tp168030 +a(g168027 +g168029 +S'exemplified' +p168031 +tp168032 +a(g168029 +g168031 +S'by' +p168033 +tp168034 +a(g168031 +g168033 +S'the' +p168035 +tp168036 +a(g168033 +g168035 +S'seamy' +p168037 +tp168038 +a(g168035 +g168037 +S'underside' +p168039 +tp168040 +a(g168037 +g168039 +S'of' +p168041 +tp168042 +a(g168039 +g168041 +S'the' +p168043 +tp168044 +a(g168041 +g168043 +S'parisian' +p168045 +tp168046 +a(g168043 +g168045 +S'demimonde,' +p168047 +tp168048 +a(g168045 +g168047 +S'populated' +p168049 +tp168050 +a(g168047 +g168049 +S'by' +p168051 +tp168052 +a(g168049 +g168051 +S'the' +p168053 +tp168054 +a(g168051 +g168053 +S'singers,' +p168055 +tp168056 +a(g168053 +g168055 +S'dancers,' +p168057 +tp168058 +a(g168055 +g168057 +S'and' +p168059 +tp168060 +a(g168057 +g168059 +S'patrons' +p168061 +tp168062 +a(g168059 +g168061 +S'of' +p168063 +tp168064 +a(g168061 +g168063 +S'montmartre' +p168065 +tp168066 +a(g168063 +g168065 +S'nightclubs' +p168067 +tp168068 +a(g168065 +g168067 +S'was' +p168069 +tp168070 +a(g168067 +g168069 +S"toulouse–lautrec's" +p168071 +tp168072 +a(g168069 +g168071 +S'principal' +p168073 +tp168074 +a(g168071 +g168073 +S'subject.' +p168075 +tp168076 +a(g168073 +g168075 +S'scion' +p168077 +tp168078 +a(g168075 +g168077 +S'of' +p168079 +tp168080 +a(g168077 +g168079 +S'one' +p168081 +tp168082 +a(g168079 +g168081 +S'of' +p168083 +tp168084 +a(g168081 +g168083 +S"france's" +p168085 +tp168086 +a(g168083 +g168085 +S'great' +p168087 +tp168088 +a(g168085 +g168087 +S'aristocratic' +p168089 +tp168090 +a(g168087 +g168089 +S'families,' +p168091 +tp168092 +a(g168089 +g168091 +S'lautrec' +p168093 +tp168094 +a(g168091 +g168093 +S'suffered' +p168095 +tp168096 +a(g168093 +g168095 +S'physical' +p168097 +tp168098 +a(g168095 +g168097 +S'maladies' +p168099 +tp168100 +a(g168097 +g168099 +S'and' +p168101 +tp168102 +a(g168099 +g168101 +S'stunted' +p168103 +tp168104 +a(g168101 +g168103 +S'growth' +p168105 +tp168106 +a(g168103 +g168105 +S'due' +p168107 +tp168108 +a(g168105 +g168107 +S'to' +p168109 +tp168110 +a(g168107 +g168109 +S'genetic' +p168111 +tp168112 +a(g168109 +g168111 +S'factors.' +p168113 +tp168114 +a(g168111 +g168113 +S'he' +p168115 +tp168116 +a(g168113 +g168115 +S'was' +p168117 +tp168118 +a(g168115 +g168117 +S'encouraged' +p168119 +tp168120 +a(g168117 +g168119 +S'to' +p168121 +tp168122 +a(g168119 +g168121 +S'draw' +p168123 +tp168124 +a(g168121 +g168123 +S'during' +p168125 +tp168126 +a(g168123 +g168125 +S'his' +p168127 +tp168128 +a(g168125 +g168127 +S'long' +p168129 +tp168130 +a(g168127 +g168129 +S'convalescences' +p168131 +tp168132 +a(g168129 +g168131 +S'and' +p168133 +tp168134 +a(g168131 +g168133 +S'permitted' +p168135 +tp168136 +a(g168133 +g168135 +S'professional' +p168137 +tp168138 +a(g168135 +g168137 +S'training' +p168139 +tp168140 +a(g168137 +g168139 +S'in' +p168141 +tp168142 +a(g168139 +g168141 +S'an' +p168143 +tp168144 +a(g168141 +g168143 +S'academic' +p168145 +tp168146 +a(g168143 +g168145 +S'studio,' +p168147 +tp168148 +a(g168145 +g168147 +S'which' +p168149 +tp168150 +a(g168147 +g168149 +S'he' +p168151 +tp168152 +a(g168149 +g168151 +S'deserted' +p168153 +tp168154 +a(g168151 +g168153 +S'to' +p168155 +tp168156 +a(g168153 +g168155 +S'embrace' +p168157 +tp168158 +a(g168155 +g168157 +S'modernism.' +p168159 +tp168160 +a(g168157 +g168159 +S'lautrec' +p168161 +tp168162 +a(g168159 +g168161 +S'particularly' +p168163 +tp168164 +a(g168161 +g168163 +S'admired' +p168165 +tp168166 +a(g168163 +g168165 +S'degas' +p168167 +tp168168 +a(g168165 +g168167 +S'and' +p168169 +tp168170 +a(g168167 +g168169 +S'emulated' +p168171 +tp168172 +a(g168169 +g168171 +S'his' +p168173 +tp168174 +a(g168171 +g168173 +S'unusual' +p168175 +tp168176 +a(g168173 +g168175 +S'perspectives' +p168177 +tp168178 +a(g168175 +g168177 +S'and' +p168179 +tp168180 +a(g168177 +g168179 +S'gritty' +p168181 +tp168182 +a(g168179 +g168181 +S'social' +p168183 +tp168184 +a(g168181 +g168183 +S'realism.' +p168185 +tp168186 +a(g168183 +g168185 +S'he' +p168187 +tp168188 +a(g168185 +g168187 +S'mastered' +p168189 +tp168190 +a(g168187 +g168189 +S'the' +p168191 +tp168192 +a(g168189 +g168191 +S'new' +p168193 +tp168194 +a(g168191 +g168193 +S'medium' +p168195 +tp168196 +a(g168193 +g168195 +S'of' +p168197 +tp168198 +a(g168195 +g168197 +S'color' +p168199 +tp168200 +a(g168197 +g168199 +S'lithography' +p168201 +tp168202 +a(g168199 +g168201 +S'and' +p168203 +tp168204 +a(g168201 +g168203 +S'produced' +p168205 +tp168206 +a(g168203 +g168205 +S'an' +p168207 +tp168208 +a(g168205 +g168207 +S'impressive' +p168209 +tp168210 +a(g168207 +g168209 +S'body' +p168211 +tp168212 +a(g168209 +g168211 +S'of' +p168213 +tp168214 +a(g168211 +g168213 +S'posters' +p168215 +tp168216 +a(g168213 +g168215 +S'and' +p168217 +tp168218 +a(g168215 +g168217 +S'printed' +p168219 +tp168220 +a(g168217 +g168219 +S'illustrations' +p168221 +tp168222 +a(g168219 +g168221 +S'that' +p168223 +tp168224 +a(g168221 +g168223 +S'share' +p168225 +tp168226 +a(g168223 +g168225 +S'the' +p168227 +tp168228 +a(g168225 +g168227 +S'incisive' +p168229 +tp168230 +a(g168227 +g168229 +S'linear' +p168231 +tp168232 +a(g168229 +g168231 +S'quality' +p168233 +tp168234 +a(g168231 +g168233 +S'of' +p168235 +tp168236 +a(g168233 +g168235 +S'the' +p168237 +tp168238 +a(g168235 +g168237 +S'design' +p168239 +tp168240 +a(g168237 +g168239 +S'of' +p168241 +tp168242 +a(g168239 +g168241 +S'this' +p168243 +tp168244 +a(g168241 +g168243 +S'painting.' +p168245 +tp168246 +a(g168243 +g168245 +S'isolated' +p168247 +tp168248 +a(g168245 +g168247 +S'by' +p168249 +tp168250 +a(g168247 +g168249 +S'his' +p168251 +tp168252 +a(g168249 +g168251 +S'painful' +p168253 +tp168254 +a(g168251 +g168253 +S'physical' +p168255 +tp168256 +a(g168253 +g168255 +S'deformity,' +p168257 +tp168258 +a(g168255 +g168257 +S'lautrec' +p168259 +tp168260 +a(g168257 +g168259 +S'became' +p168261 +tp168262 +a(g168259 +g168261 +S'an' +p168263 +tp168264 +a(g168261 +g168263 +S'alcoholic' +p168265 +tp168266 +a(g168263 +g168265 +S'and' +p168267 +tp168268 +a(g168265 +g168267 +S'a' +p168269 +tp168270 +a(g168267 +g168269 +S'denizen' +p168271 +tp168272 +a(g168269 +g168271 +S'of' +p168273 +tp168274 +a(g168271 +g168273 +S'dance' +p168275 +tp168276 +a(g168273 +g168275 +S'halls' +p168277 +tp168278 +a(g168275 +g168277 +S'and' +p168279 +tp168280 +a(g168277 +g168279 +S'nightclubs' +p168281 +tp168282 +a(g168279 +g168281 +S'in' +p168283 +tp168284 +a(g168281 +g168283 +S'montmartre,' +p168285 +tp168286 +a(g168283 +g168285 +S'a' +p168287 +tp168288 +a(g168285 +g168287 +S'poor' +p168289 +tp168290 +a(g168287 +g168289 +S'working–class' +p168291 +tp168292 +a(g168289 +g168291 +S'neighborhood' +p168293 +tp168294 +a(g168291 +g168293 +S'untouched' +p168295 +tp168296 +a(g168293 +g168295 +S'by' +p168297 +tp168298 +a(g168295 +g168297 +S'baron' +p168299 +tp168300 +a(g168297 +g168299 +S"haussmann's" +p168301 +tp168302 +a(g168299 +g168301 +S'renovations' +p168303 +tp168304 +a(g168301 +g168303 +S'of' +p168305 +tp168306 +a(g168303 +g168305 +S'paris.' +p168307 +tp168308 +a(g168305 +g168307 +S'insight' +p168309 +tp168310 +a(g168307 +g168309 +S'gained' +p168311 +tp168312 +a(g168309 +g168311 +S'from' +p168313 +tp168314 +a(g168311 +g168313 +S'his' +p168315 +tp168316 +a(g168313 +g168315 +S'handicap' +p168317 +tp168318 +a(g168315 +g168317 +S'and' +p168319 +tp168320 +a(g168317 +g168319 +S'his' +p168321 +tp168322 +a(g168319 +g168321 +S'emotional' +p168323 +tp168324 +a(g168321 +g168323 +S'remoteness' +p168325 +tp168326 +a(g168323 +g168325 +S'from' +p168327 +tp168328 +a(g168325 +g168327 +S'his' +p168329 +tp168330 +a(g168327 +g168329 +S'subjects' +p168331 +tp168332 +a(g168329 +g168331 +S'gave' +p168333 +tp168334 +a(g168331 +g168333 +S'his' +p168335 +tp168336 +a(g168333 +g168335 +S'depictions' +p168337 +tp168338 +a(g168335 +g168337 +S'special' +p168339 +tp168340 +a(g168337 +g168339 +S'force,' +p168341 +tp168342 +a(g168339 +g168341 +S'bitterness,' +p168343 +tp168344 +a(g168341 +g168343 +S'and' +p168345 +tp168346 +a(g168343 +g168345 +S'sympathy,' +p168347 +tp168348 +a(g168345 +g168347 +S'while' +p168349 +tp168350 +a(g168347 +g168349 +S'the' +p168351 +tp168352 +a(g168349 +g168351 +S'artifice' +p168353 +tp168354 +a(g168351 +g168353 +S'of' +p168355 +tp168356 +a(g168353 +g168355 +S'his' +p168357 +tp168358 +a(g168355 +g168357 +S'preferred' +p168359 +tp168360 +a(g168357 +g168359 +S'settings' +p168361 +tp168362 +a(g168359 +g168361 +S'and' +p168363 +tp168364 +a(g168361 +g168363 +S'subjects' +p168365 +tp168366 +a(g168363 +g168365 +S'could' +p168367 +tp168368 +a(g168365 +g168367 +S'alter' +p168369 +tp168370 +a(g168367 +g168369 +S'reality' +p168371 +tp168372 +a(g168369 +g168371 +S'amusingly' +p168373 +tp168374 +a(g168371 +g168373 +S'or' +p168375 +tp168376 +a(g168373 +g168375 +S'grotesquely' +p168377 +tp168378 +a(g168375 +g168377 +S'in' +p168379 +tp168380 +a(g168377 +g168379 +S'his' +p168381 +tp168382 +a(g168379 +g168381 +S'work.' +p168383 +tp168384 +a(g168381 +g168383 +S'lautrec' +p168385 +tp168386 +a(g168383 +g168385 +S'was' +p168387 +tp168388 +a(g168385 +g168387 +S'an' +p168389 +tp168390 +a(g168387 +g168389 +S'observer,' +p168391 +tp168392 +a(g168389 +g168391 +S'a' +p168393 +tp168394 +a(g168391 +g168393 +S'voyeur' +p168395 +tp168396 +a(g168393 +g168395 +S'rather' +p168397 +tp168398 +a(g168395 +g168397 +S'than' +p168399 +tp168400 +a(g168397 +g168399 +S'a' +p168401 +tp168402 +a(g168399 +g168401 +S'participant,' +p168403 +tp168404 +a(g168401 +g168403 +S'and' +p168405 +tp168406 +a(g168403 +g168405 +S'alienation' +p168407 +tp168408 +a(g168405 +g168407 +S'is' +p168409 +tp168410 +a(g168407 +g168409 +S'endemic' +p168411 +tp168412 +a(g168409 +g168411 +S'even' +p168413 +tp168414 +a(g168411 +g168413 +S'in' +p168415 +tp168416 +a(g168413 +g168415 +S'the' +p168417 +tp168418 +a(g168415 +g168417 +S'crowded' +p168419 +tp168420 +a(g168417 +g168419 +S'as' +p168421 +tp168422 +a(g168419 +g168421 +S'a' +p168423 +tp168424 +a(g168421 +g168423 +S'businessman' +p168425 +tp168426 +a(g168423 +g168425 +S'and' +p168427 +tp168428 +a(g168425 +g168427 +S'politician,' +p168429 +tp168430 +a(g168427 +g168429 +S'collector' +p168431 +tp168432 +a(g168429 +g168431 +S'and' +p168433 +tp168434 +a(g168431 +g168433 +S'critic,' +p168435 +tp168436 +a(g168433 +g168435 +S'duret' +p168437 +tp168438 +a(g168435 +g168437 +S'married' +p168439 +tp168440 +a(g168437 +g168439 +S'an' +p168441 +tp168442 +a(g168439 +g168441 +S'active' +p168443 +tp168444 +a(g168441 +g168443 +S'public' +p168445 +tp168446 +a(g168443 +g168445 +S'life' +p168447 +tp168448 +a(g168445 +g168447 +S'with' +p168449 +tp168450 +a(g168447 +g168449 +S'an' +p168451 +tp168452 +a(g168449 +g168451 +S'interest' +p168453 +tp168454 +a(g168451 +g168453 +S'in' +p168455 +tp168456 +a(g168453 +g168455 +S'the' +p168457 +tp168458 +a(g168455 +g168457 +S'arts.' +p168459 +tp168460 +a(g168457 +g168459 +S'as' +p168461 +tp168462 +a(g168459 +g168461 +S'a' +p168463 +tp168464 +a(g168461 +g168463 +S'young' +p168465 +tp168466 +a(g168463 +g168465 +S'man,' +p168467 +tp168468 +a(g168465 +g168467 +S'he' +p168469 +tp168470 +a(g168467 +g168469 +S'had' +p168471 +tp168472 +a(g168469 +g168471 +S'been' +p168473 +tp168474 +a(g168471 +g168473 +S'an' +p168475 +tp168476 +a(g168473 +g168475 +S'intimate' +p168477 +tp168478 +a(g168475 +g168477 +S'of' +p168479 +tp168480 +a(g168477 +g168479 +S'the' +p168481 +tp168482 +a(g168479 +g168481 +S'avant-garde' +p168483 +tp168484 +a(g168481 +g168483 +S'circle' +p168485 +tp168486 +a(g168483 +g168485 +S'of' +p168487 +tp168488 +a(g168485 +g168487 +S'manet' +p168489 +tp168490 +a(g168487 +g168489 +S'and' +p168491 +tp168492 +a(g168489 +g168491 +S'degas.' +p168493 +tp168494 +a(g168491 +g168493 +S'in' +p168495 +tp168496 +a(g168493 +g168495 +S'the' +p168497 +tp168498 +a(g168495 +g168497 +S'background' +p168499 +tp168500 +a(g168497 +g168499 +S'of' +p168501 +tp168502 +a(g168499 +g168501 +S"vuillard's" +p168503 +tp168504 +a(g168501 +g168503 +S'portrait' +p168505 +tp168506 +a(g168503 +g168505 +S'we' +p168507 +tp168508 +a(g168505 +g168507 +S'see' +p168509 +tp168510 +a(g168507 +g168509 +S'a' +p168511 +tp168512 +a(g168509 +g168511 +S'literal' +p168513 +tp168514 +a(g168511 +g168513 +S'reflection' +p168515 +tp168516 +a(g168513 +g168515 +S'of' +p168517 +tp168518 +a(g168515 +g168517 +S'that' +p168519 +tp168520 +a(g168517 +g168519 +S'youth' +p168521 +tp168522 +a(g168519 +g168521 +S'--' +p168523 +tp168524 +a(g168521 +g168523 +S'glimpsed' +p168525 +tp168526 +a(g168523 +g168525 +S'in' +p168527 +tp168528 +a(g168525 +g168527 +S'a' +p168529 +tp168530 +a(g168527 +g168529 +S'mirror' +p168531 +tp168532 +a(g168529 +g168531 +S'is' +p168533 +tp168534 +a(g168531 +g168533 +S'another' +p168535 +tp168536 +a(g168533 +g168535 +S'portrait' +p168537 +tp168538 +a(g168535 +g168537 +S'of' +p168539 +tp168540 +a(g168537 +g168539 +S'duret,' +p168541 +tp168542 +a(g168539 +g168541 +S'painted' +p168543 +tp168544 +a(g168541 +g168543 +S'many' +p168545 +tp168546 +a(g168543 +g168545 +S'decades' +p168547 +tp168548 +a(g168545 +g168547 +S'before' +p168549 +tp168550 +a(g168547 +g168549 +S'by' +p168551 +tp168552 +a(g168549 +g168551 +S'the' +p168553 +tp168554 +a(g168551 +g168553 +S'american' +p168555 +tp168556 +a(g168553 +g168555 +S"vuillard's" +p168557 +tp168558 +a(g168555 +g168557 +S'dramatically' +p168559 +tp168560 +a(g168557 +g168559 +S'tilted' +p168561 +tp168562 +a(g168559 +g168561 +S'view' +p168563 +tp168564 +a(g168561 +g168563 +S'into' +p168565 +tp168566 +a(g168563 +g168565 +S"duret's" +p168567 +tp168568 +a(g168565 +g168567 +S'study' +p168569 +tp168570 +a(g168567 +g168569 +S'recalls' +p168571 +tp168572 +a(g168569 +g168571 +S'the' +p168573 +tp168574 +a(g168571 +g168573 +S'unexpected' +p168575 +tp168576 +a(g168573 +g168575 +S'angles' +p168577 +tp168578 +a(g168575 +g168577 +S'of' +p168579 +tp168580 +a(g168577 +g168579 +S"degas'" +p168581 +tp168582 +a(g168579 +g168581 +S'work,' +p168583 +tp168584 +a(g168581 +g168583 +S'though' +p168585 +tp168586 +a(g168583 +g168585 +S'for' +p168587 +tp168588 +a(g168585 +g168587 +S'vuillard,' +p168589 +tp168590 +a(g168587 +g168589 +S'born' +p168591 +tp168592 +a(g168589 +g168591 +S'a' +p168593 +tp168594 +a(g168591 +g168593 +S'generation' +p168595 +tp168596 +a(g168593 +g168595 +S'later,' +p168597 +tp168598 +a(g168595 +g168597 +S'the' +p168599 +tp168600 +a(g168597 +g168599 +S'influence' +p168601 +tp168602 +a(g168599 +g168601 +S'of' +p168603 +tp168604 +a(g168601 +g168603 +S'other' +p168605 +tp168606 +a(g168603 +g168605 +S'artists,' +p168607 +tp168608 +a(g168605 +g168607 +S'especially' +p168609 +tp168610 +a(g168607 +g168609 +S'the' +p168611 +tp168612 +a(g168609 +g168611 +S'lone' +p168613 +tp168614 +a(g168611 +g168613 +S'tenement' +p168615 +tp168616 +a(g168613 +g168615 +S'the' +p168617 +tp168618 +a(g168615 +g168617 +S'whole' +p168619 +tp168620 +a(g168617 +g168619 +S'composition' +p168621 +tp168622 +a(g168619 +g168621 +S'directs' +p168623 +tp168624 +a(g168621 +g168623 +S'attention' +p168625 +tp168626 +a(g168623 +g168625 +S'to' +p168627 +tp168628 +a(g168625 +g168627 +S'the' +p168629 +tp168630 +a(g168627 +g168629 +S"bridge's" +p168631 +tp168632 +a(g168629 +g168631 +S'architectural' +p168633 +tp168634 +a(g168631 +g168633 +S'mass.' +p168635 +tp168636 +a(g168633 +g168635 +S'pointed' +p168637 +tp168638 +a(g168635 +g168637 +S'up' +p168639 +tp168640 +a(g168637 +g168639 +S'toward' +p168641 +tp168642 +a(g168639 +g168641 +S'the' +p168643 +tp168644 +a(g168641 +g168643 +S'black' +p168645 +tp168646 +a(g168643 +g168645 +S'roadway' +p168647 +tp168648 +a(g168645 +g168647 +S'from' +p168649 +tp168650 +a(g168647 +g168649 +S'below,' +p168651 +tp168652 +a(g168649 +g168651 +S'a' +p168653 +tp168654 +a(g168651 +g168653 +S'system' +p168655 +tp168656 +a(g168653 +g168655 +S'of' +p168657 +tp168658 +a(g168655 +g168657 +S'vertical' +p168659 +tp168660 +a(g168657 +g168659 +S'elements' +p168661 +tp168662 +a(g168659 +g168661 +S'marches' +p168663 +tp168664 +a(g168661 +g168663 +S'left' +p168665 +tp168666 +a(g168663 +g168665 +S'to' +p168667 +tp168668 +a(g168665 +g168667 +S'right.' +p168669 +tp168670 +a(g168667 +g168669 +S'a' +p168671 +tp168672 +a(g168669 +g168671 +S'factory' +p168673 +tp168674 +a(g168671 +g168673 +S'smokestack,' +p168675 +tp168676 +a(g168673 +g168675 +S'two' +p168677 +tp168678 +a(g168675 +g168677 +S'lifeless' +p168679 +tp168680 +a(g168677 +g168679 +S'tree' +p168681 +tp168682 +a(g168679 +g168681 +S'trunks,' +p168683 +tp168684 +a(g168681 +g168683 +S'the' +p168685 +tp168686 +a(g168683 +g168685 +S'masts' +p168687 +tp168688 +a(g168685 +g168687 +S'of' +p168689 +tp168690 +a(g168687 +g168689 +S'a' +p168691 +tp168692 +a(g168689 +g168691 +S'moored' +p168693 +tp168694 +a(g168691 +g168693 +S'ship,' +p168695 +tp168696 +a(g168693 +g168695 +S'the' +p168697 +tp168698 +a(g168695 +g168697 +S'slender' +p168699 +tp168700 +a(g168697 +g168699 +S'tenement' +p168701 +tp168702 +a(g168699 +g168701 +S'itself,' +p168703 +tp168704 +a(g168701 +g168703 +S'and' +p168705 +tp168706 +a(g168703 +g168705 +S'smoke' +p168707 +tp168708 +a(g168705 +g168707 +S'from' +p168709 +tp168710 +a(g168707 +g168709 +S'a' +p168711 +tp168712 +a(g168709 +g168711 +S'ship' +p168713 +tp168714 +a(g168711 +g168713 +S'on' +p168715 +tp168716 +a(g168713 +g168715 +S'the' +p168717 +tp168718 +a(g168715 +g168717 +S'east' +p168719 +tp168720 +a(g168717 +g168719 +S'river' +p168721 +tp168722 +a(g168719 +g168721 +S'all' +p168723 +tp168724 +a(g168721 +g168723 +S'lead' +p168725 +tp168726 +a(g168723 +g168725 +S'across' +p168727 +tp168728 +a(g168725 +g168727 +S'the' +p168729 +tp168730 +a(g168727 +g168729 +S'canvas' +p168731 +tp168732 +a(g168729 +g168731 +S'to' +p168733 +tp168734 +a(g168731 +g168733 +S'the' +p168735 +tp168736 +a(g168733 +g168735 +S"bridge's" +p168737 +tp168738 +a(g168735 +g168737 +S'heavy' +p168739 +tp168740 +a(g168737 +g168739 +S'pier.' +p168741 +tp168742 +a(g168739 +g168741 +S'the' +p168743 +tp168744 +a(g168741 +g168743 +S'powerful' +p168745 +tp168746 +a(g168743 +g168745 +S'design' +p168747 +tp168748 +a(g168745 +g168747 +S'and' +p168749 +tp168750 +a(g168747 +g168749 +S'the' +p168751 +tp168752 +a(g168749 +g168751 +S'superb' +p168753 +tp168754 +a(g168751 +g168753 +S'handling' +p168755 +tp168756 +a(g168753 +g168755 +S'of' +p168757 +tp168758 +a(g168755 +g168757 +S'earthy' +p168759 +tp168760 +a(g168757 +g168759 +S'umbers,' +p168761 +tp168762 +a(g168759 +g168761 +S'ochers,' +p168763 +tp168764 +a(g168761 +g168763 +S'and' +p168765 +tp168766 +a(g168763 +g168765 +S'siennas' +p168767 +tp168768 +a(g168765 +g168767 +S'make' +p168769 +tp168770 +a(g168767 +g168769 +S'it' +p168771 +tp168772 +a(g168769 +g168771 +S'difficult' +p168773 +tp168774 +a(g168771 +g168773 +S'to' +p168775 +tp168776 +a(g168773 +g168775 +S'believe' +p168777 +tp168778 +a(g168775 +g168777 +S'that' +p168779 +tp168780 +a(g168777 +g168779 +S'george' +p168781 +tp168782 +a(g168779 +g168781 +S'bellows' +p168783 +tp168784 +a(g168781 +g168783 +S'had' +p168785 +tp168786 +a(g168783 +g168785 +S'moved' +p168787 +tp168788 +a(g168785 +g168787 +S'to' +p168789 +tp168790 +a(g168787 +g168789 +S'new' +p168791 +tp168792 +a(g168789 +g168791 +S'york' +p168793 +tp168794 +a(g168791 +g168793 +S'and' +p168795 +tp168796 +a(g168793 +g168795 +S'begun' +p168797 +tp168798 +a(g168795 +g168797 +S'painting' +p168799 +tp168800 +a(g168797 +g168799 +S'only' +p168801 +tp168802 +a(g168799 +g168801 +S'five' +p168803 +tp168804 +a(g168801 +g168803 +S'years' +p168805 +tp168806 +a(g168803 +g168805 +S'before.' +p168807 +tp168808 +a(g168805 +g168807 +S'this' +p168809 +tp168810 +a(g168807 +g168809 +S'bold' +p168811 +tp168812 +a(g168809 +g168811 +S'composition' +p168813 +tp168814 +a(g168811 +g168813 +S'reveals' +p168815 +tp168816 +a(g168813 +g168815 +S'the' +p168817 +tp168818 +a(g168815 +g168817 +S'influence' +p168819 +tp168820 +a(g168817 +g168819 +S'of' +p168821 +tp168822 +a(g168819 +g168821 +S'the' +p168823 +tp168824 +a(g168821 +g168823 +S'flat,' +p168825 +tp168826 +a(g168823 +g168825 +S'patterned' +p168827 +tp168828 +a(g168825 +g168827 +S'surfaces,' +p168829 +tp168830 +a(g168827 +g168829 +S'simplified' +p168831 +tp168832 +a(g168829 +g168831 +S'color,' +p168833 +tp168834 +a(g168831 +g168833 +S'and' +p168835 +tp168836 +a(g168833 +g168835 +S'unusual' +p168837 +tp168838 +a(g168835 +g168837 +S'angles' +p168839 +tp168840 +a(g168837 +g168839 +S'of' +p168841 +tp168842 +a(g168839 +g168841 +S'japanese' +p168843 +tp168844 +a(g168841 +g168843 +S'prints,' +p168845 +tp168846 +a(g168843 +g168845 +S'which' +p168847 +tp168848 +a(g168845 +g168847 +S'enjoyed' +p168849 +tp168850 +a(g168847 +g168849 +S'a' +p168851 +tp168852 +a(g168849 +g168851 +S'huge' +p168853 +tp168854 +a(g168851 +g168853 +S'vogue' +p168855 +tp168856 +a(g168853 +g168855 +S'in' +p168857 +tp168858 +a(g168855 +g168857 +S'paris' +p168859 +tp168860 +a(g168857 +g168859 +S'in' +p168861 +tp168862 +a(g168859 +g168861 +S'the' +p168863 +tp168864 +a(g168861 +g168863 +S'late' +p168865 +tp168866 +a(g168863 +g168865 +S'1800s.' +p168867 +tp168868 +a(g168865 +g168867 +S'the' +p168869 +tp168870 +a(g168867 +g168869 +S'dark' +p168871 +tp168872 +a(g168869 +g168871 +S'figure' +p168873 +tp168874 +a(g168871 +g168873 +S'of' +p168875 +tp168876 +a(g168873 +g168875 +S'the' +p168877 +tp168878 +a(g168875 +g168877 +S'man' +p168879 +tp168880 +a(g168877 +g168879 +S'compresses' +p168881 +tp168882 +a(g168879 +g168881 +S'the' +p168883 +tp168884 +a(g168881 +g168883 +S'picture' +p168885 +tp168886 +a(g168883 +g168885 +S'onto' +p168887 +tp168888 +a(g168885 +g168887 +S'the' +p168889 +tp168890 +a(g168887 +g168889 +S'flat' +p168891 +tp168892 +a(g168889 +g168891 +S'plane' +p168893 +tp168894 +a(g168891 +g168893 +S'of' +p168895 +tp168896 +a(g168893 +g168895 +S'the' +p168897 +tp168898 +a(g168895 +g168897 +S'canvas,' +p168899 +tp168900 +a(g168897 +g168899 +S'and' +p168901 +tp168902 +a(g168899 +g168901 +S'the' +p168903 +tp168904 +a(g168901 +g168903 +S'horizon' +p168905 +tp168906 +a(g168903 +g168905 +S'is' +p168907 +tp168908 +a(g168905 +g168907 +S'pushed' +p168909 +tp168910 +a(g168907 +g168909 +S'to' +p168911 +tp168912 +a(g168909 +g168911 +S'the' +p168913 +tp168914 +a(g168911 +g168913 +S'top,' +p168915 +tp168916 +a(g168913 +g168915 +S'collapsing' +p168917 +tp168918 +a(g168915 +g168917 +S'a' +p168919 +tp168920 +a(g168917 +g168919 +S'sense' +p168921 +tp168922 +a(g168919 +g168921 +S'of' +p168923 +tp168924 +a(g168921 +g168923 +S'distance.' +p168925 +tp168926 +a(g168923 +g168925 +S'our' +p168927 +tp168928 +a(g168925 +g168927 +S'higher' +p168929 +tp168930 +a(g168927 +g168929 +S'vantage' +p168931 +tp168932 +a(g168929 +g168931 +S'point' +p168933 +tp168934 +a(g168931 +g168933 +S'gives' +p168935 +tp168936 +a(g168933 +g168935 +S'us' +p168937 +tp168938 +a(g168935 +g168937 +S'an' +p168939 +tp168940 +a(g168937 +g168939 +S'oblique' +p168941 +tp168942 +a(g168939 +g168941 +S'view' +p168943 +tp168944 +a(g168941 +g168943 +S'into' +p168945 +tp168946 +a(g168943 +g168945 +S'the' +p168947 +tp168948 +a(g168945 +g168947 +S'boat.' +p168949 +tp168950 +a(g168947 +g168949 +S'its' +p168951 +tp168952 +a(g168949 +g168951 +S'form' +p168953 +tp168954 +a(g168951 +g168953 +S'is' +p168955 +tp168956 +a(g168953 +g168955 +S'divided' +p168957 +tp168958 +a(g168955 +g168957 +S'into' +p168959 +tp168960 +a(g168957 +g168959 +S'decorative' +p168961 +tp168962 +a(g168959 +g168961 +S'shapes' +p168963 +tp168964 +a(g168961 +g168963 +S'by' +p168965 +tp168966 +a(g168963 +g168965 +S'the' +p168967 +tp168968 +a(g168965 +g168967 +S'intersection' +p168969 +tp168970 +a(g168967 +g168969 +S'of' +p168971 +tp168972 +a(g168969 +g168971 +S'its' +p168973 +tp168974 +a(g168971 +g168973 +S'horizontal' +p168975 +tp168976 +a(g168973 +g168975 +S'supports.' +p168977 +tp168978 +a(g168975 +g168977 +S'after' +p168979 +tp168980 +a(g168977 +g168979 +S'1893,' +p168981 +tp168982 +a(g168979 +g168981 +S'cassatt' +p168983 +tp168984 +a(g168981 +g168983 +S'began' +p168985 +tp168986 +a(g168983 +g168985 +S'to' +p168987 +tp168988 +a(g168985 +g168987 +S'spend' +p168989 +tp168990 +a(g168987 +g168989 +S'many' +p168991 +tp168992 +a(g168989 +g168991 +S'summers' +p168993 +tp168994 +a(g168991 +g168993 +S'on' +p168995 +tp168996 +a(g168993 +g168995 +S'the' +p168997 +tp168998 +a(g168995 +g168997 +S'mediterranean' +p168999 +tp169000 +a(g168997 +g168999 +S'coast' +p169001 +tp169002 +a(g168999 +g169001 +S'at' +p169003 +tp169004 +a(g169001 +g169003 +S'antibes.' +p169005 +tp169006 +a(g169003 +g169005 +S'under' +p169007 +tp169008 +a(g169005 +g169007 +S'its' +p169009 +tp169010 +a(g169007 +g169009 +S'intense' +p169011 +tp169012 +a(g169009 +g169011 +S'sun,' +p169013 +tp169014 +a(g169011 +g169013 +S'she' +p169015 +tp169016 +a(g169013 +g169015 +S'began' +p169017 +tp169018 +a(g169015 +g169017 +S'to' +p169019 +tp169020 +a(g169017 +g169019 +S'experiment' +p169021 +tp169022 +a(g169019 +g169021 +S'with' +p169023 +tp169024 +a(g169021 +g169023 +S'harder,' +p169025 +tp169026 +a(g169023 +g169025 +S'more' +p169027 +tp169028 +a(g169025 +g169027 +S'decorative' +p169029 +tp169030 +a(g169027 +g169029 +S'color.' +p169031 +tp169032 +a(g169029 +g169031 +S'here,' +p169033 +tp169034 +a(g169031 +g169033 +S'citron' +p169035 +tp169036 +a(g169033 +g169035 +S'and' +p169037 +tp169038 +a(g169035 +g169037 +S'blue' +p169039 +tp169040 +a(g169037 +g169039 +S'carve' +p169041 +tp169042 +a(g169039 +g169041 +S'strong' +p169043 +tp169044 +a(g169041 +g169043 +S'arcs' +p169045 +tp169046 +a(g169043 +g169045 +S'that' +p169047 +tp169048 +a(g169045 +g169047 +S'divide' +p169049 +tp169050 +a(g169047 +g169049 +S'the' +p169051 +tp169052 +a(g169049 +g169051 +S'picture' +p169053 +tp169054 +a(g169051 +g169053 +S'into' +p169055 +tp169056 +a(g169053 +g169055 +S'assertive,' +p169057 +tp169058 +a(g169055 +g169057 +S'almost' +p169059 +tp169060 +a(g169057 +g169059 +S'abstract,' +p169061 +tp169062 +a(g169059 +g169061 +S'shapes.' +p169063 +tp169064 +a(g169061 +g169063 +S'this' +p169065 +tp169066 +a(g169063 +g169065 +S'picture,' +p169067 +tp169068 +a(g169065 +g169067 +S'with' +p169069 +tp169070 +a(g169067 +g169069 +S'its' +p169071 +tp169072 +a(g169069 +g169071 +S'bold' +p169073 +tp169074 +a(g169071 +g169073 +S'geometry' +p169075 +tp169076 +a(g169073 +g169075 +S'and' +p169077 +tp169078 +a(g169075 +g169077 +S'decorative' +p169079 +tp169080 +a(g169077 +g169079 +S'patterning' +p169081 +tp169082 +a(g169079 +g169081 +S'of' +p169083 +tp169084 +a(g169081 +g169083 +S'the' +p169085 +tp169086 +a(g169083 +g169085 +S'surface,' +p169087 +tp169088 +a(g169085 +g169087 +S'positions' +p169089 +tp169090 +a(g169087 +g169089 +S'cassatt' +p169091 +tp169092 +a(g169089 +g169091 +S'with' +p169093 +tp169094 +a(g169091 +g169093 +S'such' +p169095 +tp169096 +a(g169093 +g169095 +S'post–impressionist' +p169097 +tp169098 +a(g169095 +g169097 +S'painters' +p169099 +tp169100 +a(g169097 +g169099 +S'as' +p169101 +tp169102 +a(g169099 +g169101 +S'this' +p169103 +tp169104 +a(g169101 +g169103 +S'painting,' +p169105 +tp169106 +a(g169103 +g169105 +S'one' +p169107 +tp169108 +a(g169105 +g169107 +S'of' +p169109 +tp169110 +a(g169107 +g169109 +S'her' +p169111 +tp169112 +a(g169109 +g169111 +S'most' +p169113 +tp169114 +a(g169111 +g169113 +S'ambitious,' +p169115 +tp169116 +a(g169113 +g169115 +S'was' +p169117 +tp169118 +a(g169115 +g169117 +S'the' +p169119 +tp169120 +a(g169117 +g169119 +S'centerpiece' +p169121 +tp169122 +a(g169119 +g169121 +S'of' +p169123 +tp169124 +a(g169121 +g169123 +S"cassatt's" +p169125 +tp169126 +a(g169123 +g169125 +S'first' +p169127 +tp169128 +a(g169125 +g169127 +S'solo' +p169129 +tp169130 +a(g169127 +g169129 +S'exhibition' +p169131 +tp169132 +a(g169129 +g169131 +S'in' +p169133 +tp169134 +a(g169131 +g169133 +S'the' +p169135 +tp169136 +a(g169133 +g169135 +S'united' +p169137 +tp169138 +a(g169135 +g169137 +S'states' +p169139 +tp169140 +a(g169137 +g169139 +S'in' +p169141 +tp169142 +a(g169139 +g169141 +S'1895.' +p169143 +tp169144 +a(g169141 +g169143 +S'her' +p169145 +tp169146 +a(g169143 +g169145 +S'contacts' +p169147 +tp169148 +a(g169145 +g169147 +S'with' +p169149 +tp169150 +a(g169147 +g169149 +S'wealthy' +p169151 +tp169152 +a(g169149 +g169151 +S'friends' +p169153 +tp169154 +a(g169151 +g169153 +S'in' +p169155 +tp169156 +a(g169153 +g169155 +S'the' +p169157 +tp169158 +a(g169155 +g169157 +S'united' +p169159 +tp169160 +a(g169157 +g169159 +S'states' +p169161 +tp169162 +a(g169159 +g169161 +S'did' +p169163 +tp169164 +a(g169161 +g169163 +S'much' +p169165 +tp169166 +a(g169163 +g169165 +S'to' +p169167 +tp169168 +a(g169165 +g169167 +S'bring' +p169169 +tp169170 +a(g169167 +g169169 +S'avant–garde' +p169171 +tp169172 +a(g169169 +g169171 +S'french' +p169173 +tp169174 +a(g169171 +g169173 +S'painting' +p169175 +tp169176 +a(g169173 +g169175 +S'into' +p169177 +tp169178 +a(g169175 +g169177 +S'this' +p169179 +tp169180 +a(g169177 +g169179 +S'country.' +p169181 +tp169182 +a(g169179 +g169181 +S'this' +p169183 +tp169184 +a(g169181 +g169183 +S'painting' +p169185 +tp169186 +a(g169183 +g169185 +S'is' +p169187 +tp169188 +a(g169185 +g169187 +S'the' +p169189 +tp169190 +a(g169187 +g169189 +S'second' +p169191 +tp169192 +a(g169189 +g169191 +S'of' +p169193 +tp169194 +a(g169191 +g169193 +S'two' +p169195 +tp169196 +a(g169193 +g169195 +S'portraits' +p169197 +tp169198 +a(g169195 +g169197 +S'by' +p169199 +tp169200 +a(g169197 +g169199 +S'mary' +p169201 +tp169202 +a(g169199 +g169201 +S'cassatt' +p169203 +tp169204 +a(g169201 +g169203 +S'thought' +p169205 +tp169206 +a(g169203 +g169205 +S'to' +p169207 +tp169208 +a(g169205 +g169207 +S'be' +p169209 +tp169210 +a(g169207 +g169209 +S'of' +p169211 +tp169212 +a(g169209 +g169211 +S'mary' +p169213 +tp169214 +a(g169211 +g169213 +S'ellison.' +p169215 +tp169216 +a(g169213 +g169215 +S'cassatt' +p169217 +tp169218 +a(g169215 +g169217 +S'painted' +p169219 +tp169220 +a(g169217 +g169219 +S'the' +p169221 +tp169222 +a(g169219 +g169221 +S'first' +p169223 +tp169224 +a(g169221 +g169223 +S'in' +p169225 +tp169226 +a(g169223 +g169225 +S'1877,' +p169227 +tp169228 +a(g169225 +g169227 +S'shortly' +p169229 +tp169230 +a(g169227 +g169229 +S'after' +p169231 +tp169232 +a(g169229 +g169231 +S'she' +p169233 +tp169234 +a(g169231 +g169233 +S'met' +p169235 +tp169236 +a(g169233 +g169235 +S'miss' +p169237 +tp169238 +a(g169235 +g169237 +S'ellison' +p169239 +tp169240 +a(g169237 +g169239 +S'through' +p169241 +tp169242 +a(g169239 +g169241 +S'their' +p169243 +tp169244 +a(g169241 +g169243 +S'mutual' +p169245 +tp169246 +a(g169243 +g169245 +S'friend,' +p169247 +tp169248 +a(g169245 +g169247 +S'louise' +p169249 +tp169250 +a(g169247 +g169249 +S'waldron' +p169251 +tp169252 +a(g169249 +g169251 +S'elder' +p169253 +tp169254 +a(g169251 +g169253 +S'(later' +p169255 +tp169256 +a(g169253 +g169255 +S'mrs.' +p169257 +tp169258 +a(g169255 +g169257 +S'h.' +p169259 +tp169260 +a(g169257 +g169259 +S'o.' +p169261 +tp169262 +a(g169259 +g169261 +S'havemeyer,' +p169263 +tp169264 +a(g169261 +g169263 +S'a' +p169265 +tp169266 +a(g169263 +g169265 +S'well-known' +p169267 +tp169268 +a(g169265 +g169267 +S'american' +p169269 +tp169270 +a(g169267 +g169269 +S'art' +p169271 +tp169272 +a(g169269 +g169271 +S'collector' +p169273 +tp169274 +a(g169271 +g169273 +S'and' +p169275 +tp169276 +a(g169273 +g169275 +S'a' +p169277 +tp169278 +a(g169275 +g169277 +S'patron' +p169279 +tp169280 +a(g169277 +g169279 +S'of' +p169281 +tp169282 +a(g169279 +g169281 +S'cassatt).' +p169283 +tp169284 +a(g169281 +g169283 +S'cassatt' +p169285 +tp169286 +a(g169283 +g169285 +S'does' +p169287 +tp169288 +a(g169285 +g169287 +S'not' +p169289 +tp169290 +a(g169287 +g169289 +S'flatter' +p169291 +tp169292 +a(g169289 +g169291 +S'but,' +p169293 +tp169294 +a(g169291 +g169293 +S'rather,' +p169295 +tp169296 +a(g169293 +g169295 +S'concentrates' +p169297 +tp169298 +a(g169295 +g169297 +S'on' +p169299 +tp169300 +a(g169297 +g169299 +S'miss' +p169301 +tp169302 +a(g169299 +g169301 +S"ellison's" +p169303 +tp169304 +a(g169301 +g169303 +S'contemplative' +p169305 +tp169306 +a(g169303 +g169305 +S'mood.' +p169307 +tp169308 +a(g169305 +g169307 +S'in' +p169309 +tp169310 +a(g169307 +g169309 +S'this' +p169311 +tp169312 +a(g169309 +g169311 +S'painting,' +p169313 +tp169314 +a(g169311 +g169313 +S'cassatt' +p169315 +tp169316 +a(g169313 +g169315 +S'demonstrates' +p169317 +tp169318 +a(g169315 +g169317 +S'her' +p169319 +tp169320 +a(g169317 +g169319 +S'affinities' +p169321 +tp169322 +a(g169319 +g169321 +S'with' +p169323 +tp169324 +a(g169321 +g169323 +S'the' +p169325 +tp169326 +a(g169323 +g169325 +S'a' +p169327 +tp169328 +a(g169325 +g169327 +S'number' +p169329 +tp169330 +a(g169327 +g169329 +S'of' +p169331 +tp169332 +a(g169329 +g169331 +S'artists,' +p169333 +tp169334 +a(g169331 +g169333 +S'including' +p169335 +tp169336 +a(g169333 +g169335 +S'degas,' +p169337 +tp169338 +a(g169335 +g169337 +S'renoir,' +p169339 +tp169340 +a(g169337 +g169339 +S'and' +p169341 +tp169342 +a(g169339 +g169341 +S'cassatt,' +p169343 +tp169344 +a(g169341 +g169343 +S'depicted' +p169345 +tp169346 +a(g169343 +g169345 +S'women' +p169347 +tp169348 +a(g169345 +g169347 +S'at' +p169349 +tp169350 +a(g169347 +g169349 +S'the' +p169351 +tp169352 +a(g169349 +g169351 +S'theater.' +p169353 +tp169354 +a(g169351 +g169353 +S'while' +p169355 +tp169356 +a(g169353 +g169355 +S'degas' +p169357 +tp169358 +a(g169355 +g169357 +S'took' +p169359 +tp169360 +a(g169357 +g169359 +S'many' +p169361 +tp169362 +a(g169359 +g169361 +S'of' +p169363 +tp169364 +a(g169361 +g169363 +S'his' +p169365 +tp169366 +a(g169363 +g169365 +S'subjects' +p169367 +tp169368 +a(g169365 +g169367 +S'from' +p169369 +tp169370 +a(g169367 +g169369 +S'the' +p169371 +tp169372 +a(g169369 +g169371 +S'stage' +p169373 +tp169374 +a(g169371 +g169373 +S'and' +p169375 +tp169376 +a(g169373 +g169375 +S'orchestra' +p169377 +tp169378 +a(g169375 +g169377 +S'pit,' +p169379 +tp169380 +a(g169377 +g169379 +S'cassatt' +p169381 +tp169382 +a(g169379 +g169381 +S'and' +p169383 +tp169384 +a(g169381 +g169383 +S'renoir' +p169385 +tp169386 +a(g169383 +g169385 +S'focused' +p169387 +tp169388 +a(g169385 +g169387 +S'on' +p169389 +tp169390 +a(g169387 +g169389 +S'the' +p169391 +tp169392 +a(g169389 +g169391 +S'audience.' +p169393 +tp169394 +a(g169391 +g169393 +S'reflected' +p169395 +tp169396 +a(g169393 +g169395 +S'behind' +p169397 +tp169398 +a(g169395 +g169397 +S'these' +p169399 +tp169400 +a(g169397 +g169399 +S'two' +p169401 +tp169402 +a(g169399 +g169401 +S'young' +p169403 +tp169404 +a(g169401 +g169403 +S'women' +p169405 +tp169406 +a(g169403 +g169405 +S'are' +p169407 +tp169408 +a(g169405 +g169407 +S'rings' +p169409 +tp169410 +a(g169407 +g169409 +S'of' +p169411 +tp169412 +a(g169409 +g169411 +S'theater' +p169413 +tp169414 +a(g169411 +g169413 +S'seats' +p169415 +tp169416 +a(g169413 +g169415 +S'and' +p169417 +tp169418 +a(g169415 +g169417 +S'a' +p169419 +tp169420 +a(g169417 +g169419 +S'massive' +p169421 +tp169422 +a(g169419 +g169421 +S'chandelier;' +p169423 +tp169424 +a(g169421 +g169423 +S'clearly,' +p169425 +tp169426 +a(g169423 +g169425 +S'they' +p169427 +tp169428 +a(g169425 +g169427 +S'are' +p169429 +tp169430 +a(g169427 +g169429 +S'sitting' +p169431 +tp169432 +a(g169429 +g169431 +S'in' +p169433 +tp169434 +a(g169431 +g169433 +S'luxurious' +p169435 +tp169436 +a(g169433 +g169435 +S'boxes' +p169437 +tp169438 +a(g169435 +g169437 +S'with' +p169439 +tp169440 +a(g169437 +g169439 +S'mirrored' +p169441 +tp169442 +a(g169439 +g169441 +S'walls.' +p169443 +tp169444 +a(g169441 +g169443 +S'like' +p169445 +tp169446 +a(g169443 +g169445 +S'cassatt' +p169447 +tp169448 +a(g169445 +g169447 +S'herself,' +p169449 +tp169450 +a(g169447 +g169449 +S'they' +p169451 +tp169452 +a(g169449 +g169451 +S'belong' +p169453 +tp169454 +a(g169451 +g169453 +S'to' +p169455 +tp169456 +a(g169453 +g169455 +S'wealthy,' +p169457 +tp169458 +a(g169455 +g169457 +S'proper' +p169459 +tp169460 +a(g169457 +g169459 +S'families.' +p169461 +tp169462 +a(g169459 +g169461 +S'their' +p169463 +tp169464 +a(g169461 +g169463 +S'careful' +p169465 +tp169466 +a(g169463 +g169465 +S'posture' +p169467 +tp169468 +a(g169465 +g169467 +S'is' +p169469 +tp169470 +a(g169467 +g169469 +S'reserved,' +p169471 +tp169472 +a(g169469 +g169471 +S'almost' +p169473 +tp169474 +a(g169471 +g169473 +S'stiff' +p169475 +tp169476 +a(g169473 +g169475 +S'with' +p169477 +tp169478 +a(g169475 +g169477 +S'decorum.' +p169479 +tp169480 +a(g169477 +g169479 +S'it' +p169481 +tp169482 +a(g169479 +g169481 +S'would' +p169483 +tp169484 +a(g169481 +g169483 +S'have' +p169485 +tp169486 +a(g169483 +g169485 +S'distinguished' +p169487 +tp169488 +a(g169485 +g169487 +S'them,' +p169489 +tp169490 +a(g169487 +g169489 +S'despite' +p169491 +tp169492 +a(g169489 +g169491 +S'their' +p169493 +tp169494 +a(g169491 +g169493 +S'bare' +p169495 +tp169496 +a(g169493 +g169495 +S'shoulders,' +p169497 +tp169498 +a(g169495 +g169497 +S'from' +p169499 +tp169500 +a(g169497 +g169499 +S'some' +p169501 +tp169502 +a(g169499 +g169501 +S'other' +p169503 +tp169504 +a(g169501 +g169503 +S'women' +p169505 +tp169506 +a(g169503 +g169505 +S'in' +p169507 +tp169508 +a(g169505 +g169507 +S'the' +p169509 +tp169510 +a(g169507 +g169509 +S'audience' +p169511 +tp169512 +a(g169509 +g169511 +S'who' +p169513 +tp169514 +a(g169511 +g169513 +S'were' +p169515 +tp169516 +a(g169513 +g169515 +S'coquettes' +p169517 +tp169518 +a(g169515 +g169517 +S'brought' +p169519 +tp169520 +a(g169517 +g169519 +S'to' +p169521 +tp169522 +a(g169519 +g169521 +S'the' +p169523 +tp169524 +a(g169521 +g169523 +S'opera' +p169525 +tp169526 +a(g169523 +g169525 +S'by' +p169527 +tp169528 +a(g169525 +g169527 +S'their' +p169529 +tp169530 +a(g169527 +g169529 +S'lovers.' +p169531 +tp169532 +a(g169529 +g169531 +S'not' +p169533 +tp169534 +a(g169531 +g169533 +S'all' +p169535 +tp169536 +a(g169533 +g169535 +S'the' +p169537 +tp169538 +a(g169535 +g169537 +S'display' +p169539 +tp169540 +a(g169537 +g169539 +S'at' +p169541 +tp169542 +a(g169539 +g169541 +S'the' +p169543 +tp169544 +a(g169541 +g169543 +S'theater' +p169545 +tp169546 +a(g169543 +g169545 +S'occurred' +p169547 +tp169548 +a(g169545 +g169547 +S'on' +p169549 +tp169550 +a(g169547 +g169549 +S'stage,' +p169551 +tp169552 +a(g169549 +g169551 +S'and' +p169553 +tp169554 +a(g169551 +g169553 +S'the' +p169555 +tp169556 +a(g169553 +g169555 +S'young' +p169557 +tp169558 +a(g169555 +g169557 +S'women' +p169559 +tp169560 +a(g169557 +g169559 +S'are' +p169561 +tp169562 +a(g169559 +g169561 +S'equally' +p169563 +tp169564 +a(g169561 +g169563 +S'on' +p169565 +tp169566 +a(g169563 +g169565 +S'view,' +p169567 +tp169568 +a(g169565 +g169567 +S'sitting' +p169569 +tp169570 +a(g169567 +g169569 +S'forward' +p169571 +tp169572 +a(g169569 +g169571 +S'to' +p169573 +tp169574 +a(g169571 +g169573 +S'be' +p169575 +tp169576 +a(g169573 +g169575 +S'seen.' +p169577 +tp169578 +a(g169575 +g169577 +S'but' +p169579 +tp169580 +a(g169577 +g169579 +S'the' +p169581 +tp169582 +a(g169579 +g169581 +S'social' +p169583 +tp169584 +a(g169581 +g169583 +S'code' +p169585 +tp169586 +a(g169583 +g169585 +S'prohibits' +p169587 +tp169588 +a(g169585 +g169587 +S'proper,' +p169589 +tp169590 +a(g169587 +g169589 +S'unmarried' +p169591 +tp169592 +a(g169589 +g169591 +S'young' +p169593 +tp169594 +a(g169591 +g169593 +S'women' +p169595 +tp169596 +a(g169593 +g169595 +S'from' +p169597 +tp169598 +a(g169595 +g169597 +S'looking' +p169599 +tp169600 +a(g169597 +g169599 +S'at' +p169601 +tp169602 +a(g169599 +g169601 +S'others.' +p169603 +tp169604 +a(g169601 +g169603 +S'the' +p169605 +tp169606 +a(g169603 +g169605 +S'woman' +p169607 +tp169608 +a(g169605 +g169607 +S'holding' +p169609 +tp169610 +a(g169607 +g169609 +S'the' +p169611 +tp169612 +a(g169609 +g169611 +S'fan' +p169613 +tp169614 +a(g169611 +g169613 +S'is' +p169615 +tp169616 +a(g169613 +g169615 +S'probably' +p169617 +tp169618 +a(g169615 +g169617 +S'mary' +p169619 +tp169620 +a(g169617 +g169619 +S'ellison,' +p169621 +tp169622 +a(g169619 +g169621 +S'a' +p169623 +tp169624 +a(g169621 +g169623 +S'friend' +p169625 +tp169626 +a(g169623 +g169625 +S'of' +p169627 +tp169628 +a(g169625 +g169627 +S'the' +p169629 +tp169630 +a(g169627 +g169629 +S'artist' +p169631 +tp169632 +a(g169629 +g169631 +S'visiting' +p169633 +tp169634 +a(g169631 +g169633 +S'from' +p169635 +tp169636 +a(g169633 +g169635 +S'philadelphia.' +p169637 +tp169638 +a(g169635 +g169637 +S'even' +p169639 +tp169640 +a(g169637 +g169639 +S'from' +p169641 +tp169642 +a(g169639 +g169641 +S'behind' +p169643 +tp169644 +a(g169641 +g169643 +S'this' +p169645 +tp169646 +a(g169643 +g169645 +S'screen' +p169647 +tp169648 +a(g169645 +g169647 +S'her' +p169649 +tp169650 +a(g169647 +g169649 +S'gaze' +p169651 +tp169652 +a(g169649 +g169651 +S'is' +p169653 +tp169654 +a(g169651 +g169653 +S'cast' +p169655 +tp169656 +a(g169653 +g169655 +S'modestly' +p169657 +tp169658 +a(g169655 +g169657 +S'down.' +p169659 +tp169660 +a(g169657 +g169659 +S'the' +p169661 +tp169662 +a(g169659 +g169661 +S'other' +p169663 +tp169664 +a(g169661 +g169663 +S'woman,' +p169665 +tp169666 +a(g169663 +g169665 +S'perhaps' +p169667 +tp169668 +a(g169665 +g169667 +S'the' +p169669 +tp169670 +a(g169667 +g169669 +S'daughter' +p169671 +tp169672 +a(g169669 +g169671 +S'of' +p169673 +tp169674 +a(g169671 +g169673 +S'poet' +p169675 +tp169676 +a(g169673 +g169675 +S'stephane' +p169677 +tp169678 +a(g169675 +g169677 +S'mallarmé,' +p169679 +tp169680 +a(g169677 +g169679 +S'is' +p169681 +tp169682 +a(g169679 +g169681 +S'more' +p169683 +tp169684 +a(g169681 +g169683 +S'forthright' +p169685 +tp169686 +a(g169683 +g169685 +S'than' +p169687 +tp169688 +a(g169685 +g169687 +S'her' +p169689 +tp169690 +a(g169687 +g169689 +S'companion.' +p169691 +tp169692 +a(g169689 +g169691 +S'the' +p169693 +tp169694 +a(g169691 +g169693 +S'two' +p169695 +tp169696 +a(g169693 +g169695 +S'seem' +p169697 +tp169698 +a(g169695 +g169697 +S'to' +p169699 +tp169700 +a(g169697 +g169699 +S'be' +p169701 +tp169702 +a(g169699 +g169701 +S'mirror' +p169703 +tp169704 +a(g169701 +g169703 +S'reflections' +p169705 +tp169706 +a(g169703 +g169705 +S'of' +p169707 +tp169708 +a(g169705 +g169707 +S'each' +p169709 +tp169710 +a(g169707 +g169709 +S'other;' +p169711 +tp169712 +a(g169709 +g169711 +S'while' +p169713 +tp169714 +a(g169711 +g169713 +S'the' +p169715 +tp169716 +a(g169713 +g169715 +S'young' +p169717 +tp169718 +a(g169715 +g169717 +S'philadelphian' +p169719 +tp169720 +a(g169717 +g169719 +S'hides' +p169721 +tp169722 +a(g169719 +g169721 +S'shyly,' +p169723 +tp169724 +a(g169721 +g169723 +S'her' +p169725 +tp169726 +a(g169723 +g169725 +S'friend' +p169727 +tp169728 +a(g169725 +g169727 +S'is' +p169729 +tp169730 +a(g169727 +g169729 +S'poised' +p169731 +tp169732 +a(g169729 +g169731 +S'with' +p169733 +tp169734 +a(g169731 +g169733 +S'self-confidence' +p169735 +tp169736 +a(g169733 +g169735 +S'to' +p169737 +tp169738 +a(g169735 +g169737 +S'receive' +p169739 +tp169740 +a(g169737 +g169739 +S'the' +p169741 +tp169742 +a(g169739 +g169741 +S'attention' +p169743 +tp169744 +a(g169741 +g169743 +S'of' +p169745 +tp169746 +a(g169743 +g169745 +S'other' +p169747 +tp169748 +a(g169745 +g169747 +S'theater' +p169749 +tp169750 +a(g169747 +g169749 +S'patrons.' +p169751 +tp169752 +a(g169749 +g169751 +S'it' +p169753 +tp169754 +a(g169751 +g169753 +S'was' +p169755 +tp169756 +a(g169753 +g169755 +S'she' +p169757 +tp169758 +a(g169755 +g169757 +S'chose' +p169759 +tp169760 +a(g169757 +g169759 +S'a' +p169761 +tp169762 +a(g169759 +g169761 +S'subject' +p169763 +tp169764 +a(g169761 +g169763 +S'that' +p169765 +tp169766 +a(g169763 +g169765 +S'degas' +p169767 +tp169768 +a(g169765 +g169767 +S'himself' +p169769 +tp169770 +a(g169767 +g169769 +S'had' +p169771 +tp169772 +a(g169769 +g169771 +S'often' +p169773 +tp169774 +a(g169771 +g169773 +S'depicted:' +p169775 +tp169776 +a(g169773 +g169775 +S'an' +p169777 +tp169778 +a(g169775 +g169777 +S'ordinary,' +p169779 +tp169780 +a(g169777 +g169779 +S'working–class' +p169781 +tp169782 +a(g169779 +g169781 +S'girl' +p169783 +tp169784 +a(g169781 +g169783 +S'at' +p169785 +tp169786 +a(g169783 +g169785 +S'her' +p169787 +tp169788 +a(g169785 +g169787 +S'toilette.' +p169789 +tp169790 +a(g169787 +g169789 +S'the' +p169791 +tp169792 +a(g169789 +g169791 +S'beauty' +p169793 +tp169794 +a(g169791 +g169793 +S'of' +p169795 +tp169796 +a(g169793 +g169795 +S'the' +p169797 +tp169798 +a(g169795 +g169797 +S'picture' +p169799 +tp169800 +a(g169797 +g169799 +S'comes' +p169801 +tp169802 +a(g169799 +g169801 +S'from' +p169803 +tp169804 +a(g169801 +g169803 +S'the' +p169805 +tp169806 +a(g169803 +g169805 +S'rigor' +p169807 +tp169808 +a(g169805 +g169807 +S'of' +p169809 +tp169810 +a(g169807 +g169809 +S'the' +p169811 +tp169812 +a(g169809 +g169811 +S'composition' +p169813 +tp169814 +a(g169811 +g169813 +S'and' +p169815 +tp169816 +a(g169813 +g169815 +S'its' +p169817 +tp169818 +a(g169815 +g169817 +S'harmonized' +p169819 +tp169820 +a(g169817 +g169819 +S'contrast' +p169821 +tp169822 +a(g169819 +g169821 +S'of' +p169823 +tp169824 +a(g169821 +g169823 +S'pinks' +p169825 +tp169826 +a(g169823 +g169825 +S'and' +p169827 +tp169828 +a(g169825 +g169827 +S'blues—in' +p169829 +tp169830 +a(g169827 +g169829 +S'the' +p169831 +tp169832 +a(g169829 +g169831 +S"sitter's" +p169833 +tp169834 +a(g169831 +g169833 +S'nightdress,' +p169835 +tp169836 +a(g169833 +g169835 +S'in' +p169837 +tp169838 +a(g169835 +g169837 +S'the' +p169839 +tp169840 +a(g169837 +g169839 +S'background,' +p169841 +tp169842 +a(g169839 +g169841 +S'and' +p169843 +tp169844 +a(g169841 +g169843 +S'even' +p169845 +tp169846 +a(g169843 +g169845 +S'in' +p169847 +tp169848 +a(g169845 +g169847 +S'her' +p169849 +tp169850 +a(g169847 +g169849 +S'skin.' +p169851 +tp169852 +a(g169849 +g169851 +S'while' +p169853 +tp169854 +a(g169851 +g169853 +S'the' +p169855 +tp169856 +a(g169853 +g169855 +S'moment' +p169857 +tp169858 +a(g169855 +g169857 +S'is' +p169859 +tp169860 +a(g169857 +g169859 +S'casual,' +p169861 +tp169862 +a(g169859 +g169861 +S'even' +p169863 +tp169864 +a(g169861 +g169863 +S'private,' +p169865 +tp169866 +a(g169863 +g169865 +S'the' +p169867 +tp169868 +a(g169865 +g169867 +S"girl's" +p169869 +tp169870 +a(g169867 +g169869 +S'pose' +p169871 +tp169872 +a(g169869 +g169871 +S'and' +p169873 +tp169874 +a(g169871 +g169873 +S'the' +p169875 +tp169876 +a(g169873 +g169875 +S'arrangement' +p169877 +tp169878 +a(g169875 +g169877 +S'of' +p169879 +tp169880 +a(g169877 +g169879 +S'furniture' +p169881 +tp169882 +a(g169879 +g169881 +S'behind' +p169883 +tp169884 +a(g169881 +g169883 +S'her' +p169885 +tp169886 +a(g169883 +g169885 +S'are' +p169887 +tp169888 +a(g169885 +g169887 +S'artfully' +p169889 +tp169890 +a(g169887 +g169889 +S'contrived.' +p169891 +tp169892 +a(g169889 +g169891 +S'note,' +p169893 +tp169894 +a(g169891 +g169893 +S'for' +p169895 +tp169896 +a(g169893 +g169895 +S'example,' +p169897 +tp169898 +a(g169895 +g169897 +S'how' +p169899 +tp169900 +a(g169897 +g169899 +S'the' +p169901 +tp169902 +a(g169899 +g169901 +S'chair' +p169903 +tp169904 +a(g169901 +g169903 +S'back,' +p169905 +tp169906 +a(g169903 +g169905 +S'the' +p169907 +tp169908 +a(g169905 +g169907 +S'dry' +p169909 +tp169910 +a(g169907 +g169909 +S'sink,' +p169911 +tp169912 +a(g169909 +g169911 +S'and' +p169913 +tp169914 +a(g169911 +g169913 +S'the' +p169915 +tp169916 +a(g169913 +g169915 +S'mirror–frame' +p169917 +tp169918 +a(g169915 +g169917 +S'rise' +p169919 +tp169920 +a(g169917 +g169919 +S'in' +p169921 +tp169922 +a(g169919 +g169921 +S'steps' +p169923 +tp169924 +a(g169921 +g169923 +S'parallel' +p169925 +tp169926 +a(g169923 +g169925 +S'to' +p169927 +tp169928 +a(g169925 +g169927 +S'the' +p169929 +tp169930 +a(g169927 +g169929 +S'motion' +p169931 +tp169932 +a(g169929 +g169931 +S'of' +p169933 +tp169934 +a(g169931 +g169933 +S'her' +p169935 +tp169936 +a(g169933 +g169935 +S'arms,' +p169937 +tp169938 +a(g169935 +g169937 +S'echoing' +p169939 +tp169940 +a(g169937 +g169939 +S'and' +p169941 +tp169942 +a(g169939 +g169941 +S'enhancing' +p169943 +tp169944 +a(g169941 +g169943 +S'their' +p169945 +tp169946 +a(g169943 +g169945 +S'upward' +p169947 +tp169948 +a(g169945 +g169947 +S'sweep.' +p169949 +tp169950 +a(g169947 +g169949 +S'mother' +p169951 +tp169952 +a(g169949 +g169951 +S'and' +p169953 +tp169954 +a(g169951 +g169953 +S'child' +p169955 +tp169956 +a(g169953 +g169955 +S'the' +p169957 +tp169958 +a(g169955 +g169957 +S'models' +p169959 +tp169960 +a(g169957 +g169959 +S'for' +p169961 +tp169962 +a(g169959 +g169961 +S'when' +p169963 +tp169964 +a(g169961 +g169963 +S'cassatt' +p169965 +tp169966 +a(g169963 +g169965 +S'painted' +p169967 +tp169968 +a(g169965 +g169967 +S'the' +p169969 +tp169970 +a(g169967 +g169969 +S'model' +p169971 +tp169972 +a(g169969 +g169971 +S'in' +p169973 +tp169974 +a(g169971 +g169973 +S'woman' +p169975 +tp169976 +a(g169973 +g169975 +S'with' +p169977 +tp169978 +a(g169975 +g169977 +S'a' +p169979 +tp169980 +a(g169977 +g169979 +S'red' +p169981 +tp169982 +a(g169979 +g169981 +S'zinnia,' +p169983 +tp169984 +a(g169981 +g169983 +S'to' +p169985 +tp169986 +a(g169983 +g169985 +S'brighten' +p169987 +tp169988 +a(g169985 +g169987 +S"cézanne's" +p169989 +tp169990 +a(g169987 +g169989 +S'dark' +p169991 +tp169992 +a(g169989 +g169991 +S'palette' +p169993 +tp169994 +a(g169991 +g169993 +S'knife,' +p169995 +tp169996 +a(g169993 +g169995 +S'his' +p169997 +tp169998 +a(g169995 +g169997 +S'friend' +p169999 +tp170000 +a(g169997 +g169999 +S'the' +p170001 +tp170002 +a(g169999 +g170001 +S'elaborate' +p170003 +tp170004 +a(g170001 +g170003 +S'signature' +p170005 +tp170006 +a(g170003 +g170005 +S'and' +p170007 +tp170008 +a(g170005 +g170007 +S'date' +p170009 +tp170010 +a(g170007 +g170009 +S'are' +p170011 +tp170012 +a(g170009 +g170011 +S'unusual' +p170013 +tp170014 +a(g170011 +g170013 +S'in' +p170015 +tp170016 +a(g170013 +g170015 +S"cézanne's" +p170017 +tp170018 +a(g170015 +g170017 +S'work.' +p170019 +tp170020 +a(g170017 +g170019 +S'perhaps' +p170021 +tp170022 +a(g170019 +g170021 +S'he' +p170023 +tp170024 +a(g170021 +g170023 +S'intended' +p170025 +tp170026 +a(g170023 +g170025 +S'it' +p170027 +tp170028 +a(g170025 +g170027 +S'for' +p170029 +tp170030 +a(g170027 +g170029 +S'a' +p170031 +tp170032 +a(g170029 +g170031 +S'patron' +p170033 +tp170034 +a(g170031 +g170033 +S'or' +p170035 +tp170036 +a(g170033 +g170035 +S'a' +p170037 +tp170038 +a(g170035 +g170037 +S'public' +p170039 +tp170040 +a(g170037 +g170039 +S'exhibition—at' +p170041 +tp170042 +a(g170039 +g170041 +S'the' +p170043 +tp170044 +a(g170041 +g170043 +S'urging' +p170045 +tp170046 +a(g170043 +g170045 +S'of' +p170047 +tp170048 +a(g170045 +g170047 +S'pissarro,' +p170049 +tp170050 +a(g170047 +g170049 +S'three' +p170051 +tp170052 +a(g170049 +g170051 +S'of' +p170053 +tp170054 +a(g170051 +g170053 +S'his' +p170055 +tp170056 +a(g170053 +g170055 +S'works' +p170057 +tp170058 +a(g170055 +g170057 +S'were' +p170059 +tp170060 +a(g170057 +g170059 +S'included' +p170061 +tp170062 +a(g170059 +g170061 +S'in' +p170063 +tp170064 +a(g170061 +g170063 +S'the' +p170065 +tp170066 +a(g170063 +g170065 +S'first' +p170067 +tp170068 +a(g170065 +g170067 +S'impressionist' +p170069 +tp170070 +a(g170067 +g170069 +S'show.' +p170071 +tp170072 +a(g170069 +g170071 +S'in' +p170073 +tp170074 +a(g170071 +g170073 +S'1873' +p170075 +tp170076 +a(g170073 +g170075 +S'cézanne' +p170077 +tp170078 +a(g170075 +g170077 +S'moved' +p170079 +tp170080 +a(g170077 +g170079 +S'to' +p170081 +tp170082 +a(g170079 +g170081 +S'the' +p170083 +tp170084 +a(g170081 +g170083 +S'village' +p170085 +tp170086 +a(g170083 +g170085 +S'of' +p170087 +tp170088 +a(g170085 +g170087 +S'auvers,' +p170089 +tp170090 +a(g170087 +g170089 +S'near' +p170091 +tp170092 +a(g170089 +g170091 +S'paris,' +p170093 +tp170094 +a(g170091 +g170093 +S'where' +p170095 +tp170096 +a(g170093 +g170095 +S'he' +p170097 +tp170098 +a(g170095 +g170097 +S'painted' +p170099 +tp170100 +a(g170097 +g170099 +S'this' +p170101 +tp170102 +a(g170099 +g170101 +S'landscape.' +p170103 +tp170104 +a(g170101 +g170103 +S'it' +p170105 +tp170106 +a(g170103 +g170105 +S'was' +p170107 +tp170108 +a(g170105 +g170107 +S'near' +p170109 +tp170110 +a(g170107 +g170109 +S"pissarro's" +p170111 +tp170112 +a(g170109 +g170111 +S'home,' +p170113 +tp170114 +a(g170111 +g170113 +S'and' +p170115 +tp170116 +a(g170113 +g170115 +S'the' +p170117 +tp170118 +a(g170115 +g170117 +S'two' +p170119 +tp170120 +a(g170117 +g170119 +S'of' +p170121 +tp170122 +a(g170119 +g170121 +S'them' +p170123 +tp170124 +a(g170121 +g170123 +S'often' +p170125 +tp170126 +a(g170123 +g170125 +S'painted' +p170127 +tp170128 +a(g170125 +g170127 +S'side' +p170129 +tp170130 +a(g170127 +g170129 +S'by' +p170131 +tp170132 +a(g170129 +g170131 +S'side' +p170133 +tp170134 +a(g170131 +g170133 +S'during' +p170135 +tp170136 +a(g170133 +g170135 +S'1873' +p170137 +tp170138 +a(g170135 +g170137 +S'and' +p170139 +tp170140 +a(g170137 +g170139 +S'1874.' +p170141 +tp170142 +a(g170139 +g170141 +S'auvers' +p170143 +tp170144 +a(g170141 +g170143 +S'was' +p170145 +tp170146 +a(g170143 +g170145 +S'also' +p170147 +tp170148 +a(g170145 +g170147 +S'home' +p170149 +tp170150 +a(g170147 +g170149 +S'to' +p170151 +tp170152 +a(g170149 +g170151 +S'dr.' +p170153 +tp170154 +a(g170151 +g170153 +S'gachet,' +p170155 +tp170156 +a(g170153 +g170155 +S'a' +p170157 +tp170158 +a(g170155 +g170157 +S'collector' +p170159 +tp170160 +a(g170157 +g170159 +S'who' +p170161 +tp170162 +a(g170159 +g170161 +S'would' +p170163 +tp170164 +a(g170161 +g170163 +S'later' +p170165 +tp170166 +a(g170163 +g170165 +S'care' +p170167 +tp170168 +a(g170165 +g170167 +S'for' +p170169 +tp170170 +a(g170167 +g170169 +S'the' +p170171 +tp170172 +a(g170169 +g170171 +S'despairing' +p170173 +tp170174 +a(g170171 +g170173 +S'van' +p170175 +tp170176 +a(g170173 +g170175 +S'gogh.' +p170177 +tp170178 +a(g170175 +g170177 +S'cézanne' +p170179 +tp170180 +a(g170177 +g170179 +S'may' +p170181 +tp170182 +a(g170179 +g170181 +S'have' +p170183 +tp170184 +a(g170181 +g170183 +S'hoped' +p170185 +tp170186 +a(g170183 +g170185 +S'gachet' +p170187 +tp170188 +a(g170185 +g170187 +S'would' +p170189 +tp170190 +a(g170187 +g170189 +S'purchase' +p170191 +tp170192 +a(g170189 +g170191 +S'his' +p170193 +tp170194 +a(g170191 +g170193 +S'work,' +p170195 +tp170196 +a(g170193 +g170195 +S'which' +p170197 +tp170198 +a(g170195 +g170197 +S'was' +p170199 +tp170200 +a(g170197 +g170199 +S'ignored' +p170201 +tp170202 +a(g170199 +g170201 +S'by' +p170203 +tp170204 +a(g170201 +g170203 +S'the' +p170205 +tp170206 +a(g170203 +g170205 +S'public.' +p170207 +tp170208 +a(g170205 +g170207 +S'in' +p170209 +tp170210 +a(g170207 +g170209 +S'the' +p170211 +tp170212 +a(g170209 +g170211 +S'1880s' +p170213 +tp170214 +a(g170211 +g170213 +S'cézanne' +p170215 +tp170216 +a(g170213 +g170215 +S'returned' +p170217 +tp170218 +a(g170215 +g170217 +S'to' +p170219 +tp170220 +a(g170217 +g170219 +S'provence' +p170221 +tp170222 +a(g170219 +g170221 +S'in' +p170223 +tp170224 +a(g170221 +g170223 +S'the' +p170225 +tp170226 +a(g170223 +g170225 +S'south' +p170227 +tp170228 +a(g170225 +g170227 +S'of' +p170229 +tp170230 +a(g170227 +g170229 +S'france,' +p170231 +tp170232 +a(g170229 +g170231 +S'and' +p170233 +tp170234 +a(g170231 +g170233 +S'after' +p170235 +tp170236 +a(g170233 +g170235 +S'inheriting' +p170237 +tp170238 +a(g170235 +g170237 +S'his' +p170239 +tp170240 +a(g170237 +g170239 +S"father's" +p170241 +tp170242 +a(g170239 +g170241 +S'large' +p170243 +tp170244 +a(g170241 +g170243 +S'estate' +p170245 +tp170246 +a(g170243 +g170245 +S'in' +p170247 +tp170248 +a(g170245 +g170247 +S'1886,' +p170249 +tp170250 +a(g170247 +g170249 +S'largely' +p170251 +tp170252 +a(g170249 +g170251 +S'abandoned' +p170253 +tp170254 +a(g170251 +g170253 +S'efforts' +p170255 +tp170256 +a(g170253 +g170255 +S'to' +p170257 +tp170258 +a(g170255 +g170257 +S'promote' +p170259 +tp170260 +a(g170257 +g170259 +S'his' +p170261 +tp170262 +a(g170259 +g170261 +S'work.' +p170263 +tp170264 +a(g170261 +g170263 +S'he' +p170265 +tp170266 +a(g170263 +g170265 +S'did' +p170267 +tp170268 +a(g170265 +g170267 +S'not' +p170269 +tp170270 +a(g170267 +g170269 +S'gain' +p170271 +tp170272 +a(g170269 +g170271 +S'commercial' +p170273 +tp170274 +a(g170271 +g170273 +S'success' +p170275 +tp170276 +a(g170273 +g170275 +S'until' +p170277 +tp170278 +a(g170275 +g170277 +S'he' +p170279 +tp170280 +a(g170277 +g170279 +S'was' +p170281 +tp170282 +a(g170279 +g170281 +S'in' +p170283 +tp170284 +a(g170281 +g170283 +S'his' +p170285 +tp170286 +a(g170283 +g170285 +S'50s.' +p170287 +tp170288 +a(g170285 +g170287 +S'the' +p170289 +tp170290 +a(g170287 +g170289 +S'impressionist' +p170291 +tp170292 +a(g170289 +g170291 +S'style' +p170293 +tp170294 +a(g170291 +g170293 +S'developed' +p170295 +tp170296 +a(g170293 +g170295 +S'as' +p170297 +tp170298 +a(g170295 +g170297 +S'a' +p170299 +tp170300 +a(g170297 +g170299 +S'method' +p170301 +tp170302 +a(g170299 +g170301 +S'to' +p170303 +tp170304 +a(g170301 +g170303 +S'render' +p170305 +tp170306 +a(g170303 +g170305 +S'more' +p170307 +tp170308 +a(g170305 +g170307 +S'accurately' +p170309 +tp170310 +a(g170307 +g170309 +S'the' +p170311 +tp170312 +a(g170309 +g170311 +S'appearance' +p170313 +tp170314 +a(g170311 +g170313 +S'of' +p170315 +tp170316 +a(g170313 +g170315 +S'the' +p170317 +tp170318 +a(g170315 +g170317 +S'natural' +p170319 +tp170320 +a(g170317 +g170319 +S'world,' +p170321 +tp170322 +a(g170319 +g170321 +S'and' +p170323 +tp170324 +a(g170321 +g170323 +S'was' +p170325 +tp170326 +a(g170323 +g170325 +S'principally' +p170327 +tp170328 +a(g170325 +g170327 +S'a' +p170329 +tp170330 +a(g170327 +g170329 +S'technique' +p170331 +tp170332 +a(g170329 +g170331 +S'for' +p170333 +tp170334 +a(g170331 +g170333 +S'landscape' +p170335 +tp170336 +a(g170333 +g170335 +S'painting.' +p170337 +tp170338 +a(g170335 +g170337 +S'corot,' +p170339 +tp170340 +a(g170337 +g170339 +S'whose' +p170341 +tp170342 +a(g170339 +g170341 +S'career' +p170343 +tp170344 +a(g170341 +g170343 +S'began' +p170345 +tp170346 +a(g170343 +g170345 +S'in' +p170347 +tp170348 +a(g170345 +g170347 +S'the' +p170349 +tp170350 +a(g170347 +g170349 +S'late' +p170351 +tp170352 +a(g170349 +g170351 +S'1820s' +p170353 +tp170354 +a(g170351 +g170353 +S'when' +p170355 +tp170356 +a(g170353 +g170355 +S'the' +p170357 +tp170358 +a(g170355 +g170357 +S'academic' +p170359 +tp170360 +a(g170357 +g170359 +S'tradition' +p170361 +tp170362 +a(g170359 +g170361 +S'of' +p170363 +tp170364 +a(g170361 +g170363 +S'landscape' +p170365 +tp170366 +a(g170363 +g170365 +S'painting' +p170367 +tp170368 +a(g170365 +g170367 +S'was' +p170369 +tp170370 +a(g170367 +g170369 +S'being' +p170371 +tp170372 +a(g170369 +g170371 +S'revived,' +p170373 +tp170374 +a(g170371 +g170373 +S'was' +p170375 +tp170376 +a(g170373 +g170375 +S'one' +p170377 +tp170378 +a(g170375 +g170377 +S'of' +p170379 +tp170380 +a(g170377 +g170379 +S'the' +p170381 +tp170382 +a(g170379 +g170381 +S'most' +p170383 +tp170384 +a(g170381 +g170383 +S'prolific' +p170385 +tp170386 +a(g170383 +g170385 +S'and' +p170387 +tp170388 +a(g170385 +g170387 +S'influential' +p170389 +tp170390 +a(g170387 +g170389 +S'exponents' +p170391 +tp170392 +a(g170389 +g170391 +S'of' +p170393 +tp170394 +a(g170391 +g170393 +S'the' +p170395 +tp170396 +a(g170393 +g170395 +S'genre.' +p170397 +tp170398 +a(g170395 +g170397 +S'in' +p170399 +tp170400 +a(g170397 +g170399 +S'accord' +p170401 +tp170402 +a(g170399 +g170401 +S'with' +p170403 +tp170404 +a(g170401 +g170403 +S'academic' +p170405 +tp170406 +a(g170403 +g170405 +S'training,' +p170407 +tp170408 +a(g170405 +g170407 +S'degas' +p170409 +tp170410 +a(g170407 +g170409 +S'studied' +p170411 +tp170412 +a(g170409 +g170411 +S'his' +p170413 +tp170414 +a(g170411 +g170413 +S'preferred' +p170415 +tp170416 +a(g170413 +g170415 +S'subject,' +p170417 +tp170418 +a(g170415 +g170417 +S'ballet' +p170419 +tp170420 +a(g170417 +g170419 +S'performers,' +p170421 +tp170422 +a(g170419 +g170421 +S'in' +p170423 +tp170424 +a(g170421 +g170423 +S'hundreds' +p170425 +tp170426 +a(g170423 +g170425 +S'of' +p170427 +tp170428 +a(g170425 +g170427 +S'works.' +p170429 +tp170430 +a(g170427 +g170429 +S'two' +p170431 +tp170432 +a(g170429 +g170431 +S'of' +p170433 +tp170434 +a(g170431 +g170433 +S'the' +p170435 +tp170436 +a(g170433 +g170435 +S'figures' +p170437 +tp170438 +a(g170435 +g170437 +S'repeat' +p170439 +tp170440 +a(g170437 +g170439 +S'poses' +p170441 +tp170442 +a(g170439 +g170441 +S'of' +p170443 +tp170444 +a(g170441 +g170443 +S'a' +p170445 +tp170446 +a(g170443 +g170445 +S'model' +p170447 +tp170448 +a(g170445 +g170447 +S'who' +p170449 +tp170450 +a(g170447 +g170449 +S'appears' +p170451 +tp170452 +a(g170449 +g170451 +S'in' +p170453 +tp170454 +a(g170451 +g170453 +S'a' +p170455 +tp170456 +a(g170453 +g170455 +S'unique' +p170457 +tp170458 +a(g170455 +g170457 +S'set' +p170459 +tp170460 +a(g170457 +g170459 +S'of' +p170461 +tp170462 +a(g170459 +g170461 +S'three' +p170463 +tp170464 +a(g170461 +g170463 +S'photographic' +p170465 +tp170466 +a(g170463 +g170465 +S'negatives.' +p170467 +tp170468 +a(g170465 +g170467 +S'shot' +p170469 +tp170470 +a(g170467 +g170469 +S'between' +p170471 +tp170472 +a(g170469 +g170471 +S'about' +p170473 +tp170474 +a(g170471 +g170473 +S'1895' +p170475 +tp170476 +a(g170473 +g170475 +S'and' +p170477 +tp170478 +a(g170475 +g170477 +S'1898,' +p170479 +tp170480 +a(g170477 +g170479 +S'the' +p170481 +tp170482 +a(g170479 +g170481 +S'original' +p170483 +tp170484 +a(g170481 +g170483 +S'plates' +p170485 +tp170486 +a(g170483 +g170485 +S'solarized' +p170487 +tp170488 +a(g170485 +g170487 +S'into' +p170489 +tp170490 +a(g170487 +g170489 +S'colors' +p170491 +tp170492 +a(g170489 +g170491 +S'that' +p170493 +tp170494 +a(g170491 +g170493 +S'resemble,' +p170495 +tp170496 +a(g170493 +g170495 +S'in' +p170497 +tp170498 +a(g170495 +g170497 +S'reverse,' +p170499 +tp170500 +a(g170497 +g170499 +S'the' +p170501 +tp170502 +a(g170499 +g170501 +S'oranges' +p170503 +tp170504 +a(g170501 +g170503 +S'and' +p170505 +tp170506 +a(g170503 +g170505 +S'greens' +p170507 +tp170508 +a(g170505 +g170507 +S'in' +p170509 +tp170510 +a(g170507 +g170509 +S'the' +p170511 +tp170512 +a(g170509 +g170511 +S'impressionist' +p170513 +tp170514 +a(g170511 +g170513 +S'style' +p170515 +tp170516 +a(g170513 +g170515 +S'was' +p170517 +tp170518 +a(g170515 +g170517 +S'incompatible' +p170519 +tp170520 +a(g170517 +g170519 +S'with' +p170521 +tp170522 +a(g170519 +g170521 +S"degas'" +p170523 +tp170524 +a(g170521 +g170523 +S'meticulous' +p170525 +tp170526 +a(g170523 +g170525 +S'paint' +p170527 +tp170528 +a(g170525 +g170527 +S'handling' +p170529 +tp170530 +a(g170527 +g170529 +S'and' +p170531 +tp170532 +a(g170529 +g170531 +S'premeditated' +p170533 +tp170534 +a(g170531 +g170533 +S'method' +p170535 +tp170536 +a(g170533 +g170535 +S'of' +p170537 +tp170538 +a(g170535 +g170537 +S'composing,' +p170539 +tp170540 +a(g170537 +g170539 +S'and' +p170541 +tp170542 +a(g170539 +g170541 +S'he' +p170543 +tp170544 +a(g170541 +g170543 +S'preferred' +p170545 +tp170546 +a(g170543 +g170545 +S'"independent"' +p170547 +tp170548 +a(g170545 +g170547 +S'or' +p170549 +tp170550 +a(g170547 +g170549 +S'"realist"' +p170551 +tp170552 +a(g170549 +g170551 +S'to' +p170553 +tp170554 +a(g170551 +g170553 +S'"impressionist"' +p170555 +tp170556 +a(g170553 +g170555 +S'as' +p170557 +tp170558 +a(g170555 +g170557 +S'the' +p170559 +tp170560 +a(g170557 +g170559 +S'name' +p170561 +tp170562 +a(g170559 +g170561 +S'of' +p170563 +tp170564 +a(g170561 +g170563 +S'the' +p170565 +tp170566 +a(g170563 +g170565 +S'movement.' +p170567 +tp170568 +a(g170565 +g170567 +S'degas' +p170569 +tp170570 +a(g170567 +g170569 +S'did' +p170571 +tp170572 +a(g170569 +g170571 +S'help' +p170573 +tp170574 +a(g170571 +g170573 +S'establish' +p170575 +tp170576 +a(g170573 +g170575 +S'and' +p170577 +tp170578 +a(g170575 +g170577 +S'direct' +p170579 +tp170580 +a(g170577 +g170579 +S'the' +p170581 +tp170582 +a(g170579 +g170581 +S'impressionist' +p170583 +tp170584 +a(g170581 +g170583 +S'organization,' +p170585 +tp170586 +a(g170583 +g170585 +S'however,' +p170587 +tp170588 +a(g170585 +g170587 +S'and' +p170589 +tp170590 +a(g170587 +g170589 +S'participated' +p170591 +tp170592 +a(g170589 +g170591 +S'in' +p170593 +tp170594 +a(g170591 +g170593 +S'seven' +p170595 +tp170596 +a(g170593 +g170595 +S'of' +p170597 +tp170598 +a(g170595 +g170597 +S'the' +p170599 +tp170600 +a(g170597 +g170599 +S'eight' +p170601 +tp170602 +a(g170599 +g170601 +S'exhibitions.' +p170603 +tp170604 +a(g170601 +g170603 +S'he' +p170605 +tp170606 +a(g170603 +g170605 +S'selected' +p170607 +tp170608 +a(g170605 +g170607 +S'insistently' +p170609 +tp170610 +a(g170607 +g170609 +S'modern' +p170611 +tp170612 +a(g170609 +g170611 +S'themes' +p170613 +tp170614 +a(g170611 +g170613 +S'--' +p170615 +tp170616 +a(g170613 +g170615 +S'ballet' +p170617 +tp170618 +a(g170615 +g170617 +S'dancers,' +p170619 +tp170620 +a(g170617 +g170619 +S'laundresses,' +p170621 +tp170622 +a(g170619 +g170621 +S'prostitutes,' +p170623 +tp170624 +a(g170621 +g170623 +S'cafés' +p170625 +tp170626 +a(g170623 +g170625 +S'and' +p170627 +tp170628 +a(g170625 +g170627 +S'café-concerts,' +p170629 +tp170630 +a(g170627 +g170629 +S'and' +p170631 +tp170632 +a(g170629 +g170631 +S'racetracks' +p170633 +tp170634 +a(g170631 +g170633 +S'--' +p170635 +tp170636 +a(g170633 +g170635 +S'and' +p170637 +tp170638 +a(g170635 +g170637 +S'depicted' +p170639 +tp170640 +a(g170637 +g170639 +S'them' +p170641 +tp170642 +a(g170639 +g170641 +S'in' +p170643 +tp170644 +a(g170641 +g170643 +S'numerous' +p170645 +tp170646 +a(g170643 +g170645 +S'variations.' +p170647 +tp170648 +a(g170645 +g170647 +S'one' +p170649 +tp170650 +a(g170647 +g170649 +S'other' +p170651 +tp170652 +a(g170649 +g170651 +S'recurring' +p170653 +tp170654 +a(g170651 +g170653 +S'genre' +p170655 +tp170656 +a(g170653 +g170655 +S'was' +p170657 +tp170658 +a(g170655 +g170657 +S'portraiture.' +p170659 +tp170660 +a(g170657 +g170659 +S'degas' +p170661 +tp170662 +a(g170659 +g170661 +S'selected' +p170663 +tp170664 +a(g170661 +g170663 +S'family' +p170665 +tp170666 +a(g170663 +g170665 +S'and' +p170667 +tp170668 +a(g170665 +g170667 +S'friends' +p170669 +tp170670 +a(g170667 +g170669 +S'as' +p170671 +tp170672 +a(g170669 +g170671 +S'models' +p170673 +tp170674 +a(g170671 +g170673 +S'rather' +p170675 +tp170676 +a(g170673 +g170675 +S'than' +p170677 +tp170678 +a(g170675 +g170677 +S'paint' +p170679 +tp170680 +a(g170677 +g170679 +S'commissioned' +p170681 +tp170682 +a(g170679 +g170681 +S'portraits,' +p170683 +tp170684 +a(g170681 +g170683 +S'and' +p170685 +tp170686 +a(g170683 +g170685 +S'his' +p170687 +tp170688 +a(g170685 +g170687 +S'portraits' +p170689 +tp170690 +a(g170687 +g170689 +S'are' +p170691 +tp170692 +a(g170689 +g170691 +S'often' +p170693 +tp170694 +a(g170691 +g170693 +S'unconventional' +p170695 +tp170696 +a(g170693 +g170695 +S'characterizations.' +p170697 +tp170698 +a(g170695 +g170697 +S'this' +p170699 +tp170700 +a(g170697 +g170699 +S'portrait' +p170701 +tp170702 +a(g170699 +g170701 +S'of' +p170703 +tp170704 +a(g170701 +g170703 +S'estelle' +p170705 +tp170706 +a(g170703 +g170705 +S'musson' +p170707 +tp170708 +a(g170705 +g170707 +S'balfour' +p170709 +tp170710 +a(g170707 +g170709 +S'de' +p170711 +tp170712 +a(g170709 +g170711 +S'gas,' +p170713 +tp170714 +a(g170711 +g170713 +S'the' +p170715 +tp170716 +a(g170713 +g170715 +S"artist's" +p170717 +tp170718 +a(g170715 +g170717 +S'first' +p170719 +tp170720 +a(g170717 +g170719 +S'cousin' +p170721 +tp170722 +a(g170719 +g170721 +S'and' +p170723 +tp170724 +a(g170721 +g170723 +S'sister-in-law,' +p170725 +tp170726 +a(g170723 +g170725 +S'was' +p170727 +tp170728 +a(g170725 +g170727 +S'painted' +p170729 +tp170730 +a(g170727 +g170729 +S'during' +p170731 +tp170732 +a(g170729 +g170731 +S"degas'" +p170733 +tp170734 +a(g170731 +g170733 +S'1872-1873' +p170735 +tp170736 +a(g170733 +g170735 +S'visit' +p170737 +tp170738 +a(g170735 +g170737 +S'to' +p170739 +tp170740 +a(g170737 +g170739 +S'new' +p170741 +tp170742 +a(g170739 +g170741 +S'orleans.' +p170743 +tp170744 +a(g170741 +g170743 +S'the' +p170745 +tp170746 +a(g170743 +g170745 +S'1871' +p170747 +tp170748 +a(g170745 +g170747 +S'discovery' +p170749 +tp170750 +a(g170747 +g170749 +S'of' +p170751 +tp170752 +a(g170749 +g170751 +S'the' +p170753 +tp170754 +a(g170751 +g170753 +S'deterioration' +p170755 +tp170756 +a(g170753 +g170755 +S'of' +p170757 +tp170758 +a(g170755 +g170757 +S'his' +p170759 +tp170760 +a(g170757 +g170759 +S'own' +p170761 +tp170762 +a(g170759 +g170761 +S'vision' +p170763 +tp170764 +a(g170761 +g170763 +S'sensitized' +p170765 +tp170766 +a(g170763 +g170765 +S'the' +p170767 +tp170768 +a(g170765 +g170767 +S'artist' +p170769 +tp170770 +a(g170767 +g170769 +S'to' +p170771 +tp170772 +a(g170769 +g170771 +S"estelle's" +p170773 +tp170774 +a(g170771 +g170773 +S'near-blindness' +p170775 +tp170776 +a(g170773 +g170775 +S'when' +p170777 +tp170778 +a(g170775 +g170777 +S'he' +p170779 +tp170780 +a(g170777 +g170779 +S'visited' +p170781 +tp170782 +a(g170779 +g170781 +S'the' +p170783 +tp170784 +a(g170781 +g170783 +S'next' +p170785 +tp170786 +a(g170783 +g170785 +S'year.' +p170787 +tp170788 +a(g170785 +g170787 +S'posture,' +p170789 +tp170790 +a(g170787 +g170789 +S'gesture,' +p170791 +tp170792 +a(g170789 +g170791 +S'accessories,' +p170793 +tp170794 +a(g170791 +g170793 +S'and' +p170795 +tp170796 +a(g170793 +g170795 +S'activities' +p170797 +tp170798 +a(g170795 +g170797 +S'were' +p170799 +tp170800 +a(g170797 +g170799 +S'often' +p170801 +tp170802 +a(g170799 +g170801 +S'used' +p170803 +tp170804 +a(g170801 +g170803 +S'by' +p170805 +tp170806 +a(g170803 +g170805 +S'degas' +p170807 +tp170808 +a(g170805 +g170807 +S'to' +p170809 +tp170810 +a(g170807 +g170809 +S'characterize' +p170811 +tp170812 +a(g170809 +g170811 +S'the' +p170813 +tp170814 +a(g170811 +g170813 +S'models' +p170815 +tp170816 +a(g170813 +g170815 +S'in' +p170817 +tp170818 +a(g170815 +g170817 +S'his' +p170819 +tp170820 +a(g170817 +g170819 +S'portraits.' +p170821 +tp170822 +a(g170819 +g170821 +S'such' +p170823 +tp170824 +a(g170821 +g170823 +S'incidental' +p170825 +tp170826 +a(g170823 +g170825 +S'details' +p170827 +tp170828 +a(g170825 +g170827 +S'were' +p170829 +tp170830 +a(g170827 +g170829 +S'deliberately' +p170831 +tp170832 +a(g170829 +g170831 +S'omitted' +p170833 +tp170834 +a(g170831 +g170833 +S'here,' +p170835 +tp170836 +a(g170833 +g170835 +S'a' +p170837 +tp170838 +a(g170835 +g170837 +S'similarly' +p170839 +tp170840 +a(g170837 +g170839 +S'informative' +p170841 +tp170842 +a(g170839 +g170841 +S'decision.' +p170843 +tp170844 +a(g170841 +g170843 +S'the' +p170845 +tp170846 +a(g170843 +g170845 +S'soft' +p170847 +tp170848 +a(g170845 +g170847 +S'focus' +p170849 +tp170850 +a(g170847 +g170849 +S'of' +p170851 +tp170852 +a(g170849 +g170851 +S'the' +p170853 +tp170854 +a(g170851 +g170853 +S'painting,' +p170855 +tp170856 +a(g170853 +g170855 +S'subdued' +p170857 +tp170858 +a(g170855 +g170857 +S'and' +p170859 +tp170860 +a(g170857 +g170859 +S'nearly' +p170861 +tp170862 +a(g170859 +g170861 +S'monochromatic' +p170863 +tp170864 +a(g170861 +g170863 +S'color' +p170865 +tp170866 +a(g170863 +g170865 +S'harmonies,' +p170867 +tp170868 +a(g170865 +g170867 +S'and' +p170869 +tp170870 +a(g170867 +g170869 +S"estelle's" +p170871 +tp170872 +a(g170869 +g170871 +S'unfocused' +p170873 +tp170874 +a(g170871 +g170873 +S'gaze' +p170875 +tp170876 +a(g170873 +g170875 +S'parallel' +p170877 +tp170878 +a(g170875 +g170877 +S'her' +p170879 +tp170880 +a(g170877 +g170879 +S'limited' +p170881 +tp170882 +a(g170879 +g170881 +S'visual' +p170883 +tp170884 +a(g170881 +g170883 +S'capacity' +p170885 +tp170886 +a(g170883 +g170885 +S'and' +p170887 +tp170888 +a(g170885 +g170887 +S'indicate' +p170889 +tp170890 +a(g170887 +g170889 +S'the' +p170891 +tp170892 +a(g170889 +g170891 +S"artist's" +p170893 +tp170894 +a(g170891 +g170893 +S'respect' +p170895 +tp170896 +a(g170893 +g170895 +S'for' +p170897 +tp170898 +a(g170895 +g170897 +S'estelle' +p170899 +tp170900 +a(g170897 +g170899 +S'and' +p170901 +tp170902 +a(g170899 +g170901 +S'compassionate' +p170903 +tp170904 +a(g170901 +g170903 +S'understanding' +p170905 +tp170906 +a(g170903 +g170905 +S'of' +p170907 +tp170908 +a(g170905 +g170907 +S'her' +p170909 +tp170910 +a(g170907 +g170909 +S'situation.' +p170911 +tp170912 +a(g170909 +g170911 +S"degas'" +p170913 +tp170914 +a(g170911 +g170913 +S'family' +p170915 +tp170916 +a(g170913 +g170915 +S'was' +p170917 +tp170918 +a(g170915 +g170917 +S'relatively' +p170919 +tp170920 +a(g170917 +g170919 +S'affluent,' +p170921 +tp170922 +a(g170919 +g170921 +S'so' +p170923 +tp170924 +a(g170921 +g170923 +S'he' +p170925 +tp170926 +a(g170923 +g170925 +S'did' +p170927 +tp170928 +a(g170925 +g170927 +S'not' +p170929 +tp170930 +a(g170927 +g170929 +S'have' +p170931 +tp170932 +a(g170929 +g170931 +S'to' +p170933 +tp170934 +a(g170931 +g170933 +S'rely' +p170935 +tp170936 +a(g170933 +g170935 +S'entirely' +p170937 +tp170938 +a(g170935 +g170937 +S'on' +p170939 +tp170940 +a(g170937 +g170939 +S'sales' +p170941 +tp170942 +a(g170939 +g170941 +S'of' +p170943 +tp170944 +a(g170941 +g170943 +S'his' +p170945 +tp170946 +a(g170943 +g170945 +S'work' +p170947 +tp170948 +a(g170945 +g170947 +S'for' +p170949 +tp170950 +a(g170947 +g170949 +S'financial' +p170951 +tp170952 +a(g170949 +g170951 +S'support.' +p170953 +tp170954 +a(g170951 +g170953 +S'he' +p170955 +tp170956 +a(g170953 +g170955 +S'was' +p170957 +tp170958 +a(g170955 +g170957 +S'thus' +p170959 +tp170960 +a(g170957 +g170959 +S'free' +p170961 +tp170962 +a(g170959 +g170961 +S'to' +p170963 +tp170964 +a(g170961 +g170963 +S'experiment' +p170965 +tp170966 +a(g170963 +g170965 +S'and' +p170967 +tp170968 +a(g170965 +g170967 +S'choose' +p170969 +tp170970 +a(g170967 +g170969 +S'his' +p170971 +tp170972 +a(g170969 +g170971 +S'own' +p170973 +tp170974 +a(g170971 +g170973 +S'subjects;' +p170975 +tp170976 +a(g170973 +g170975 +S'almost' +p170977 +tp170978 +a(g170975 +g170977 +S'all' +p170979 +tp170980 +a(g170977 +g170979 +S'of' +p170981 +tp170982 +a(g170979 +g170981 +S'his' +p170983 +tp170984 +a(g170981 +g170983 +S'portraits' +p170985 +tp170986 +a(g170983 +g170985 +S'depict' +p170987 +tp170988 +a(g170985 +g170987 +S'relatives' +p170989 +tp170990 +a(g170987 +g170989 +S'or' +p170991 +tp170992 +a(g170989 +g170991 +S'friends.' +p170993 +tp170994 +a(g170991 +g170993 +S'he' +p170995 +tp170996 +a(g170993 +g170995 +S'was' +p170997 +tp170998 +a(g170995 +g170997 +S'also' +p170999 +tp171000 +a(g170997 +g170999 +S'able' +p171001 +tp171002 +a(g170999 +g171001 +S'to' +p171003 +tp171004 +a(g171001 +g171003 +S'delay' +p171005 +tp171006 +a(g171003 +g171005 +S'finishing' +p171007 +tp171008 +a(g171005 +g171007 +S'paintings,' +p171009 +tp171010 +a(g171007 +g171009 +S'reworking' +p171011 +tp171012 +a(g171009 +g171011 +S'them' +p171013 +tp171014 +a(g171011 +g171013 +S'until' +p171015 +tp171016 +a(g171013 +g171015 +S'they' +p171017 +tp171018 +a(g171015 +g171017 +S'met' +p171019 +tp171020 +a(g171017 +g171019 +S'his' +p171021 +tp171022 +a(g171019 +g171021 +S'exacting' +p171023 +tp171024 +a(g171021 +g171023 +S'standards.' +p171025 +tp171026 +a(g171023 +g171025 +S'many' +p171027 +tp171028 +a(g171025 +g171027 +S'times' +p171029 +tp171030 +a(g171027 +g171029 +S'degas' +p171031 +tp171032 +a(g171029 +g171031 +S'retrieved' +p171033 +tp171034 +a(g171031 +g171033 +S'works' +p171035 +tp171036 +a(g171033 +g171035 +S'he' +p171037 +tp171038 +a(g171035 +g171037 +S'had' +p171039 +tp171040 +a(g171037 +g171039 +S'already' +p171041 +tp171042 +a(g171039 +g171041 +S'delivered' +p171043 +tp171044 +a(g171041 +g171043 +S'so' +p171045 +tp171046 +a(g171043 +g171045 +S'that' +p171047 +tp171048 +a(g171045 +g171047 +S'he' +p171049 +tp171050 +a(g171047 +g171049 +S'could' +p171051 +tp171052 +a(g171049 +g171051 +S'perfect' +p171053 +tp171054 +a(g171051 +g171053 +S'them.' +p171055 +tp171056 +a(g171053 +g171055 +S'some' +p171057 +tp171058 +a(g171055 +g171057 +S'he' +p171059 +tp171060 +a(g171057 +g171059 +S'never' +p171061 +tp171062 +a(g171059 +g171061 +S'completed.' +p171063 +tp171064 +a(g171061 +g171063 +S'this' +p171065 +tp171066 +a(g171063 +g171065 +S'unfinished' +p171067 +tp171068 +a(g171065 +g171067 +S'portrait' +p171069 +tp171070 +a(g171067 +g171069 +S'of' +p171071 +tp171072 +a(g171069 +g171071 +S"degas'" +p171073 +tp171074 +a(g171071 +g171073 +S'sister' +p171075 +tp171076 +a(g171073 +g171075 +S'and' +p171077 +tp171078 +a(g171075 +g171077 +S'her' +p171079 +tp171080 +a(g171077 +g171079 +S'neapolitan' +p171081 +tp171082 +a(g171079 +g171081 +S'husband' +p171083 +tp171084 +a(g171081 +g171083 +S'is' +p171085 +tp171086 +a(g171083 +g171085 +S'one' +p171087 +tp171088 +a(g171085 +g171087 +S'such' +p171089 +tp171090 +a(g171087 +g171089 +S'example.' +p171091 +tp171092 +a(g171089 +g171091 +S'(the' +p171093 +tp171094 +a(g171091 +g171093 +S'painting' +p171095 +tp171096 +a(g171093 +g171095 +S'was' +p171097 +tp171098 +a(g171095 +g171097 +S'in' +p171099 +tp171100 +a(g171097 +g171099 +S'his' +p171101 +tp171102 +a(g171099 +g171101 +S'studio' +p171103 +tp171104 +a(g171101 +g171103 +S'at' +p171105 +tp171106 +a(g171103 +g171105 +S'the' +p171107 +tp171108 +a(g171105 +g171107 +S'time' +p171109 +tp171110 +a(g171107 +g171109 +S'of' +p171111 +tp171112 +a(g171109 +g171111 +S'his' +p171113 +tp171114 +a(g171111 +g171113 +S'death.)' +p171115 +tp171116 +a(g171113 +g171115 +S'notice' +p171117 +tp171118 +a(g171115 +g171117 +S'how' +p171119 +tp171120 +a(g171117 +g171119 +S"thérèse's" +p171121 +tp171122 +a(g171119 +g171121 +S'dress' +p171123 +tp171124 +a(g171121 +g171123 +S'and' +p171125 +tp171126 +a(g171123 +g171125 +S'shawl' +p171127 +tp171128 +a(g171125 +g171127 +S'are' +p171129 +tp171130 +a(g171127 +g171129 +S'undefined' +p171131 +tp171132 +a(g171129 +g171131 +S'masses' +p171133 +tp171134 +a(g171131 +g171133 +S'of' +p171135 +tp171136 +a(g171133 +g171135 +S'color.' +p171137 +tp171138 +a(g171135 +g171137 +S'there,' +p171139 +tp171140 +a(g171137 +g171139 +S'degas' +p171141 +tp171142 +a(g171139 +g171141 +S'has' +p171143 +tp171144 +a(g171141 +g171143 +S'scraped' +p171145 +tp171146 +a(g171143 +g171145 +S'and' +p171147 +tp171148 +a(g171145 +g171147 +S'rubbed' +p171149 +tp171150 +a(g171147 +g171149 +S'the' +p171151 +tp171152 +a(g171149 +g171151 +S'paint' +p171153 +tp171154 +a(g171151 +g171153 +S'off' +p171155 +tp171156 +a(g171153 +g171155 +S'the' +p171157 +tp171158 +a(g171155 +g171157 +S'canvas.' +p171159 +tp171160 +a(g171157 +g171159 +S'the' +p171161 +tp171162 +a(g171159 +g171161 +S'dark' +p171163 +tp171164 +a(g171161 +g171163 +S'lines' +p171165 +tp171166 +a(g171163 +g171165 +S'indicate' +p171167 +tp171168 +a(g171165 +g171167 +S'changes' +p171169 +tp171170 +a(g171167 +g171169 +S'he' +p171171 +tp171172 +a(g171169 +g171171 +S'intended' +p171173 +tp171174 +a(g171171 +g171173 +S'but' +p171175 +tp171176 +a(g171173 +g171175 +S'never' +p171177 +tp171178 +a(g171175 +g171177 +S'made.' +p171179 +tp171180 +a(g171177 +g171179 +S'the' +p171181 +tp171182 +a(g171179 +g171181 +S'faces,' +p171183 +tp171184 +a(g171181 +g171183 +S'by' +p171185 +tp171186 +a(g171183 +g171185 +S'contrast,' +p171187 +tp171188 +a(g171185 +g171187 +S'are' +p171189 +tp171190 +a(g171187 +g171189 +S'carefully' +p171191 +tp171192 +a(g171189 +g171191 +S'finished,' +p171193 +tp171194 +a(g171191 +g171193 +S'detailed' +p171195 +tp171196 +a(g171193 +g171195 +S'and' +p171197 +tp171198 +a(g171195 +g171197 +S'expressive.' +p171199 +tp171200 +a(g171197 +g171199 +S'degas' +p171201 +tp171202 +a(g171199 +g171201 +S'hoped' +p171203 +tp171204 +a(g171201 +g171203 +S'to' +p171205 +tp171206 +a(g171203 +g171205 +S'capture' +p171207 +tp171208 +a(g171205 +g171207 +S'his' +p171209 +tp171210 +a(g171207 +g171209 +S'sitters,' +p171211 +tp171212 +a(g171209 +g171211 +S'he' +p171213 +tp171214 +a(g171211 +g171213 +S'said,' +p171215 +tp171216 +a(g171213 +g171215 +S'in' +p171217 +tp171218 +a(g171215 +g171217 +S'"familiar' +p171219 +tp171220 +a(g171217 +g171219 +S'and' +p171221 +tp171222 +a(g171219 +g171221 +S'typical' +p171223 +tp171224 +a(g171221 +g171223 +S'attitudes."' +p171225 +tp171226 +a(g171223 +g171225 +S'the' +p171227 +tp171228 +a(g171225 +g171227 +S'hero,' +p171229 +tp171230 +a(g171227 +g171229 +S'the' +p171231 +tp171232 +a(g171229 +g171231 +S'individual' +p171233 +tp171234 +a(g171231 +g171233 +S'of' +p171235 +tp171236 +a(g171233 +g171235 +S'talent' +p171237 +tp171238 +a(g171235 +g171237 +S'and' +p171239 +tp171240 +a(g171237 +g171239 +S'passion' +p171241 +tp171242 +a(g171239 +g171241 +S'who' +p171243 +tp171244 +a(g171241 +g171243 +S'follows' +p171245 +tp171246 +a(g171243 +g171245 +S'a' +p171247 +tp171248 +a(g171245 +g171247 +S'difficult,' +p171249 +tp171250 +a(g171247 +g171249 +S'solitary' +p171251 +tp171252 +a(g171249 +g171251 +S'path' +p171253 +tp171254 +a(g171251 +g171253 +S'to' +p171255 +tp171256 +a(g171253 +g171255 +S'greatness,' +p171257 +tp171258 +a(g171255 +g171257 +S'was' +p171259 +tp171260 +a(g171257 +g171259 +S'central' +p171261 +tp171262 +a(g171259 +g171261 +S'to' +p171263 +tp171264 +a(g171261 +g171263 +S'romanticism.' +p171265 +tp171266 +a(g171263 +g171265 +S'here' +p171267 +tp171268 +a(g171265 +g171267 +S'is' +p171269 +tp171270 +a(g171267 +g171269 +S'columbus' +p171271 +tp171272 +a(g171269 +g171271 +S'at' +p171273 +tp171274 +a(g171271 +g171273 +S'the' +p171275 +tp171276 +a(g171273 +g171275 +S'final' +p171277 +tp171278 +a(g171275 +g171277 +S'moment' +p171279 +tp171280 +a(g171277 +g171279 +S'of' +p171281 +tp171282 +a(g171279 +g171281 +S'frustration' +p171283 +tp171284 +a(g171281 +g171283 +S'before' +p171285 +tp171286 +a(g171283 +g171285 +S'his' +p171287 +tp171288 +a(g171285 +g171287 +S'ultimate' +p171289 +tp171290 +a(g171287 +g171289 +S'triumph.' +p171291 +tp171292 +a(g171289 +g171291 +S'almost' +p171293 +tp171294 +a(g171291 +g171293 +S'penniless,' +p171295 +tp171296 +a(g171293 +g171295 +S'he' +p171297 +tp171298 +a(g171295 +g171297 +S'and' +p171299 +tp171300 +a(g171297 +g171299 +S'his' +p171301 +tp171302 +a(g171299 +g171301 +S'son' +p171303 +tp171304 +a(g171301 +g171303 +S'have' +p171305 +tp171306 +a(g171303 +g171305 +S'sought' +p171307 +tp171308 +a(g171305 +g171307 +S'shelter' +p171309 +tp171310 +a(g171307 +g171309 +S'in' +p171311 +tp171312 +a(g171309 +g171311 +S'the' +p171313 +tp171314 +a(g171311 +g171313 +S'monastery' +p171315 +tp171316 +a(g171313 +g171315 +S'of' +p171317 +tp171318 +a(g171315 +g171317 +S'la' +p171319 +tp171320 +a(g171317 +g171319 +S'rábida,' +p171321 +tp171322 +a(g171319 +g171321 +S'where,' +p171323 +tp171324 +a(g171321 +g171323 +S'according' +p171325 +tp171326 +a(g171323 +g171325 +S'to' +p171327 +tp171328 +a(g171325 +g171327 +S'legendary' +p171329 +tp171330 +a(g171327 +g171329 +S'accounts,' +p171331 +tp171332 +a(g171329 +g171331 +S'word' +p171333 +tp171334 +a(g171331 +g171333 +S'of' +p171335 +tp171336 +a(g171333 +g171335 +S'the' +p171337 +tp171338 +a(g171335 +g171337 +S'fateful' +p171339 +tp171340 +a(g171337 +g171339 +S'meeting' +p171341 +tp171342 +a(g171339 +g171341 +S'with' +p171343 +tp171344 +a(g171341 +g171343 +S'queen' +p171345 +tp171346 +a(g171343 +g171345 +S'isabella' +p171347 +tp171348 +a(g171345 +g171347 +S'would' +p171349 +tp171350 +a(g171347 +g171349 +S'soon' +p171351 +tp171352 +a(g171349 +g171351 +S'arrive.' +p171353 +tp171354 +a(g171351 +g171353 +S'calm' +p171355 +tp171356 +a(g171353 +g171355 +S'rectangular' +p171357 +tp171358 +a(g171355 +g171357 +S'forms' +p171359 +tp171360 +a(g171357 +g171359 +S'dominate:' +p171361 +tp171362 +a(g171359 +g171361 +S'the' +p171363 +tp171364 +a(g171361 +g171363 +S'juncture' +p171365 +tp171366 +a(g171363 +g171365 +S'of' +p171367 +tp171368 +a(g171365 +g171367 +S'walls' +p171369 +tp171370 +a(g171367 +g171369 +S'and' +p171371 +tp171372 +a(g171369 +g171371 +S'ceiling,' +p171373 +tp171374 +a(g171371 +g171373 +S'the' +p171375 +tp171376 +a(g171373 +g171375 +S'parade' +p171377 +tp171378 +a(g171375 +g171377 +S'of' +p171379 +tp171380 +a(g171377 +g171379 +S'dark' +p171381 +tp171382 +a(g171379 +g171381 +S'canvases' +p171383 +tp171384 +a(g171381 +g171383 +S'down' +p171385 +tp171386 +a(g171383 +g171385 +S'the' +p171387 +tp171388 +a(g171385 +g171387 +S'hall,' +p171389 +tp171390 +a(g171387 +g171389 +S'the' +p171391 +tp171392 +a(g171389 +g171391 +S'large' +p171393 +tp171394 +a(g171391 +g171393 +S'map' +p171395 +tp171396 +a(g171393 +g171395 +S'that' +p171397 +tp171398 +a(g171395 +g171397 +S'columbus' +p171399 +tp171400 +a(g171397 +g171399 +S'contemplates.' +p171401 +tp171402 +a(g171399 +g171401 +S'the' +p171403 +tp171404 +a(g171401 +g171403 +S'figure' +p171405 +tp171406 +a(g171403 +g171405 +S'groups' +p171407 +tp171408 +a(g171405 +g171407 +S'have' +p171409 +tp171410 +a(g171407 +g171409 +S'solid' +p171411 +tp171412 +a(g171409 +g171411 +S'geometrical' +p171413 +tp171414 +a(g171411 +g171413 +S'form.' +p171415 +tp171416 +a(g171413 +g171415 +S'even' +p171417 +tp171418 +a(g171415 +g171417 +S'the' +p171419 +tp171420 +a(g171417 +g171419 +S'colors' +p171421 +tp171422 +a(g171419 +g171421 +S'are' +p171423 +tp171424 +a(g171421 +g171423 +S'quiet:' +p171425 +tp171426 +a(g171423 +g171425 +S'the' +p171427 +tp171428 +a(g171425 +g171427 +S"monks'" +p171429 +tp171430 +a(g171427 +g171429 +S'habits,' +p171431 +tp171432 +a(g171429 +g171431 +S'the' +p171433 +tp171434 +a(g171431 +g171433 +S'soft' +p171435 +tp171436 +a(g171433 +g171435 +S'light' +p171437 +tp171438 +a(g171435 +g171437 +S'and' +p171439 +tp171440 +a(g171437 +g171439 +S'brown' +p171441 +tp171442 +a(g171439 +g171441 +S'shadows' +p171443 +tp171444 +a(g171441 +g171443 +S'--' +p171445 +tp171446 +a(g171443 +g171445 +S'only' +p171447 +tp171448 +a(g171445 +g171447 +S'the' +p171449 +tp171450 +a(g171447 +g171449 +S'plume' +p171451 +tp171452 +a(g171449 +g171451 +S'of' +p171453 +tp171454 +a(g171451 +g171453 +S"columbus'" +p171455 +tp171456 +a(g171453 +g171455 +S'hat,' +p171457 +tp171458 +a(g171455 +g171457 +S'which' +p171459 +tp171460 +a(g171457 +g171459 +S'points' +p171461 +tp171462 +a(g171459 +g171461 +S'to' +p171463 +tp171464 +a(g171461 +g171463 +S'him' +p171465 +tp171466 +a(g171463 +g171465 +S'as' +p171467 +tp171468 +a(g171465 +g171467 +S'protagonist,' +p171469 +tp171470 +a(g171467 +g171469 +S'interrupts' +p171471 +tp171472 +a(g171469 +g171471 +S'this' +p171473 +tp171474 +a(g171471 +g171473 +S'muted' +p171475 +tp171476 +a(g171473 +g171475 +S'range.' +p171477 +tp171478 +a(g171475 +g171477 +S'neither' +p171479 +tp171480 +a(g171477 +g171479 +S'the' +p171481 +tp171482 +a(g171479 +g171481 +S'tone' +p171483 +tp171484 +a(g171481 +g171483 +S'nor' +p171485 +tp171486 +a(g171483 +g171485 +S'composition' +p171487 +tp171488 +a(g171485 +g171487 +S'matches' +p171489 +tp171490 +a(g171487 +g171489 +S'our' +p171491 +tp171492 +a(g171489 +g171491 +S'image' +p171493 +tp171494 +a(g171491 +g171493 +S'of' +p171495 +tp171496 +a(g171493 +g171495 +S'delacroix' +p171497 +tp171498 +a(g171495 +g171497 +S'as' +p171499 +tp171500 +a(g171497 +g171499 +S'the' +p171501 +tp171502 +a(g171499 +g171501 +S'champion' +p171503 +tp171504 +a(g171501 +g171503 +S'of' +p171505 +tp171506 +a(g171503 +g171505 +S'color' +p171507 +tp171508 +a(g171505 +g171507 +S'and' +p171509 +tp171510 +a(g171507 +g171509 +S'exuberant' +p171511 +tp171512 +a(g171509 +g171511 +S'form.' +p171513 +tp171514 +a(g171511 +g171513 +S'more' +p171515 +tp171516 +a(g171513 +g171515 +S'typical' +p171517 +tp171518 +a(g171515 +g171517 +S'of' +p171519 +tp171520 +a(g171517 +g171519 +S'his' +p171521 +tp171522 +a(g171519 +g171521 +S'work,' +p171523 +tp171524 +a(g171521 +g171523 +S'for' +p171525 +tp171526 +a(g171523 +g171525 +S'example,' +p171527 +tp171528 +a(g171525 +g171527 +S'are' +p171529 +tp171530 +a(g171527 +g171529 +S'the' +p171531 +tp171532 +a(g171529 +g171531 +S'bright' +p171533 +tp171534 +a(g171531 +g171533 +S'color' +p171535 +tp171536 +a(g171533 +g171535 +S'accents' +p171537 +tp171538 +a(g171535 +g171537 +S'and' +p171539 +tp171540 +a(g171537 +g171539 +S'dynamic' +p171541 +tp171542 +a(g171539 +g171541 +S'zigzagging' +p171543 +tp171544 +a(g171541 +g171543 +S'energy' +p171545 +tp171546 +a(g171543 +g171545 +S'of' +p171547 +tp171548 +a(g171545 +g171547 +S'not' +p171549 +tp171550 +a(g171547 +g171549 +S'all' +p171551 +tp171552 +a(g171549 +g171551 +S'the' +p171553 +tp171554 +a(g171551 +g171553 +S'painting' +p171555 +tp171556 +a(g171553 +g171555 +S'produced' +p171557 +tp171558 +a(g171555 +g171557 +S'in' +p171559 +tp171560 +a(g171557 +g171559 +S'france' +p171561 +tp171562 +a(g171559 +g171561 +S'in' +p171563 +tp171564 +a(g171561 +g171563 +S'the' +p171565 +tp171566 +a(g171563 +g171565 +S'1890s' +p171567 +tp171568 +a(g171565 +g171567 +S'traced' +p171569 +tp171570 +a(g171567 +g171569 +S'its' +p171571 +tp171572 +a(g171569 +g171571 +S'lineage' +p171573 +tp171574 +a(g171571 +g171573 +S'to' +p171575 +tp171576 +a(g171573 +g171575 +S'impressionism' +p171577 +tp171578 +a(g171575 +g171577 +S'or' +p171579 +tp171580 +a(g171577 +g171579 +S'had' +p171581 +tp171582 +a(g171579 +g171581 +S"cassatt's" +p171583 +tp171584 +a(g171581 +g171583 +S'bold' +p171585 +tp171586 +a(g171583 +g171585 +S'color' +p171587 +tp171588 +a(g171585 +g171587 +S'and' +p171589 +tp171590 +a(g171587 +g171589 +S'composition.' +p171591 +tp171592 +a(g171589 +g171591 +S'this' +p171593 +tp171594 +a(g171591 +g171593 +S'portrait,' +p171595 +tp171596 +a(g171593 +g171595 +S'for' +p171597 +tp171598 +a(g171595 +g171597 +S'example,' +p171599 +tp171600 +a(g171597 +g171599 +S'with' +p171601 +tp171602 +a(g171599 +g171601 +S'its' +p171603 +tp171604 +a(g171601 +g171603 +S'meticulous' +p171605 +tp171606 +a(g171603 +g171605 +S'technique' +p171607 +tp171608 +a(g171605 +g171607 +S'and' +p171609 +tp171610 +a(g171607 +g171609 +S'careful' +p171611 +tp171612 +a(g171609 +g171611 +S'attention' +p171613 +tp171614 +a(g171611 +g171613 +S'to' +p171615 +tp171616 +a(g171613 +g171615 +S'texture' +p171617 +tp171618 +a(g171615 +g171617 +S'and' +p171619 +tp171620 +a(g171617 +g171619 +S'detail,' +p171621 +tp171622 +a(g171619 +g171621 +S'seems' +p171623 +tp171624 +a(g171621 +g171623 +S'almost' +p171625 +tp171626 +a(g171623 +g171625 +S'anachronistic.' +p171627 +tp171628 +a(g171625 +g171627 +S'the' +p171629 +tp171630 +a(g171627 +g171629 +S'artist' +p171631 +tp171632 +a(g171629 +g171631 +S'was' +p171633 +tp171634 +a(g171631 +g171633 +S'an' +p171635 +tp171636 +a(g171633 +g171635 +S'intimate' +p171637 +tp171638 +a(g171635 +g171637 +S'of' +p171639 +tp171640 +a(g171637 +g171639 +S'the' +p171641 +tp171642 +a(g171639 +g171641 +S'impressionists' +p171643 +tp171644 +a(g171641 +g171643 +S'and' +p171645 +tp171646 +a(g171643 +g171645 +S'avant-garde' +p171647 +tp171648 +a(g171645 +g171647 +S'--' +p171649 +tp171650 +a(g171647 +g171649 +S'perhaps' +p171651 +tp171652 +a(g171649 +g171651 +S'his' +p171653 +tp171654 +a(g171651 +g171653 +S'most' +p171655 +tp171656 +a(g171653 +g171655 +S'famous' +p171657 +tp171658 +a(g171655 +g171657 +S'work' +p171659 +tp171660 +a(g171657 +g171659 +S'is' +p171661 +tp171662 +a(g171659 +g171661 +S'a' +p171663 +tp171664 +a(g171661 +g171663 +S'group' +p171665 +tp171666 +a(g171663 +g171665 +S'portrait' +p171667 +tp171668 +a(g171665 +g171667 +S'that' +p171669 +tp171670 +a(g171667 +g171669 +S'includes' +p171671 +tp171672 +a(g171669 +g171671 +S'manet,' +p171673 +tp171674 +a(g171671 +g171673 +S'renoir,' +p171675 +tp171676 +a(g171673 +g171675 +S'monet,' +p171677 +tp171678 +a(g171675 +g171677 +S'and' +p171679 +tp171680 +a(g171677 +g171679 +S'zola' +p171681 +tp171682 +a(g171679 +g171681 +S'--' +p171683 +tp171684 +a(g171681 +g171683 +S'but' +p171685 +tp171686 +a(g171683 +g171685 +S'fantin' +p171687 +tp171688 +a(g171685 +g171687 +S'exhibited' +p171689 +tp171690 +a(g171687 +g171689 +S'at' +p171691 +tp171692 +a(g171689 +g171691 +S'the' +p171693 +tp171694 +a(g171691 +g171693 +S'salon' +p171695 +tp171696 +a(g171693 +g171695 +S'and' +p171697 +tp171698 +a(g171695 +g171697 +S'never' +p171699 +tp171700 +a(g171697 +g171699 +S'abandoned' +p171701 +tp171702 +a(g171699 +g171701 +S'his' +p171703 +tp171704 +a(g171701 +g171703 +S'allegiance' +p171705 +tp171706 +a(g171703 +g171705 +S'to' +p171707 +tp171708 +a(g171705 +g171707 +S'the' +p171709 +tp171710 +a(g171707 +g171709 +S'old' +p171711 +tp171712 +a(g171709 +g171711 +S'masters.' +p171713 +tp171714 +a(g171711 +g171713 +S'still,' +p171715 +tp171716 +a(g171713 +g171715 +S'this' +p171717 +tp171718 +a(g171715 +g171717 +S'portrait' +p171719 +tp171720 +a(g171717 +g171719 +S'of' +p171721 +tp171722 +a(g171719 +g171721 +S"fantin's" +p171723 +tp171724 +a(g171721 +g171723 +S'niece' +p171725 +tp171726 +a(g171723 +g171725 +S'projects' +p171727 +tp171728 +a(g171725 +g171727 +S'a' +p171729 +tp171730 +a(g171727 +g171729 +S'different' +p171731 +tp171732 +a(g171729 +g171731 +S'sort' +p171733 +tp171734 +a(g171731 +g171733 +S'of' +p171735 +tp171736 +a(g171733 +g171735 +S'modernism.' +p171737 +tp171738 +a(g171735 +g171737 +S'he' +p171739 +tp171740 +a(g171737 +g171739 +S'approaches' +p171741 +tp171742 +a(g171739 +g171741 +S'his' +p171743 +tp171744 +a(g171741 +g171743 +S'subjects' +p171745 +tp171746 +a(g171743 +g171745 +S'as' +p171747 +tp171748 +a(g171745 +g171747 +S'a' +p171749 +tp171750 +a(g171747 +g171749 +S'camera' +p171751 +tp171752 +a(g171749 +g171751 +S'lens,' +p171753 +tp171754 +a(g171751 +g171753 +S'sharpened' +p171755 +tp171756 +a(g171753 +g171755 +S'to' +p171757 +tp171758 +a(g171755 +g171757 +S'such' +p171759 +tp171760 +a(g171757 +g171759 +S'intense' +p171761 +tp171762 +a(g171759 +g171761 +S'focus' +p171763 +tp171764 +a(g171761 +g171763 +S'that' +p171765 +tp171766 +a(g171763 +g171765 +S'it' +p171767 +tp171768 +a(g171765 +g171767 +S'illuminates' +p171769 +tp171770 +a(g171767 +g171769 +S'a' +p171771 +tp171772 +a(g171769 +g171771 +S'preternatural' +p171773 +tp171774 +a(g171771 +g171773 +S'reality' +p171775 +tp171776 +a(g171773 +g171775 +S'beyond' +p171777 +tp171778 +a(g171775 +g171777 +S'appearance.' +p171779 +tp171780 +a(g171777 +g171779 +S'like' +p171781 +tp171782 +a(g171779 +g171781 +S'their' +p171783 +tp171784 +a(g171781 +g171783 +S'similarities' +p171785 +tp171786 +a(g171783 +g171785 +S'invite' +p171787 +tp171788 +a(g171785 +g171787 +S'us' +p171789 +tp171790 +a(g171787 +g171789 +S'to' +p171791 +tp171792 +a(g171789 +g171791 +S'compare' +p171793 +tp171794 +a(g171791 +g171793 +S'the' +p171795 +tp171796 +a(g171793 +g171795 +S'two' +p171797 +tp171798 +a(g171795 +g171797 +S'works,' +p171799 +tp171800 +a(g171797 +g171799 +S'and' +p171801 +tp171802 +a(g171799 +g171801 +S'in' +p171803 +tp171804 +a(g171801 +g171803 +S'other' +p171805 +tp171806 +a(g171803 +g171805 +S'respects' +p171807 +tp171808 +a(g171805 +g171807 +S'we' +p171809 +tp171810 +a(g171807 +g171809 +S'find' +p171811 +tp171812 +a(g171809 +g171811 +S'they' +p171813 +tp171814 +a(g171811 +g171813 +S'are' +p171815 +tp171816 +a(g171813 +g171815 +S'quite' +p171817 +tp171818 +a(g171815 +g171817 +S'different.' +p171819 +tp171820 +a(g171817 +g171819 +S'where' +p171821 +tp171822 +a(g171819 +g171821 +S'self–portraiture' +p171823 +tp171824 +a(g171821 +g171823 +S'constituted' +p171825 +tp171826 +a(g171823 +g171825 +S'a' +p171827 +tp171828 +a(g171825 +g171827 +S'significant' +p171829 +tp171830 +a(g171827 +g171829 +S'element' +p171831 +tp171832 +a(g171829 +g171831 +S'of' +p171833 +tp171834 +a(g171831 +g171833 +S"gauguin's" +p171835 +tp171836 +a(g171833 +g171835 +S'production,' +p171837 +tp171838 +a(g171835 +g171837 +S'particularly' +p171839 +tp171840 +a(g171837 +g171839 +S'in' +p171841 +tp171842 +a(g171839 +g171841 +S'1888' +p171843 +tp171844 +a(g171841 +g171843 +S'and' +p171845 +tp171846 +a(g171843 +g171845 +S'1889.' +p171847 +tp171848 +a(g171845 +g171847 +S"gauguin's" +p171849 +tp171850 +a(g171847 +g171849 +S'interest' +p171851 +tp171852 +a(g171849 +g171851 +S'was' +p171853 +tp171854 +a(g171851 +g171853 +S'prompted' +p171855 +tp171856 +a(g171853 +g171855 +S'in' +p171857 +tp171858 +a(g171855 +g171857 +S'part' +p171859 +tp171860 +a(g171857 +g171859 +S'by' +p171861 +tp171862 +a(g171859 +g171861 +S'vincent' +p171863 +tp171864 +a(g171861 +g171863 +S'van' +p171865 +tp171866 +a(g171863 +g171865 +S"gogh's" +p171867 +tp171868 +a(g171865 +g171867 +S'1888' +p171869 +tp171870 +a(g171867 +g171869 +S'portrait' +p171871 +tp171872 +a(g171869 +g171871 +S'series' +p171873 +tp171874 +a(g171871 +g171873 +S'including' +p171875 +tp171876 +a(g171873 +g171875 +S'this' +p171877 +tp171878 +a(g171875 +g171877 +S'the' +p171879 +tp171880 +a(g171877 +g171879 +S'intention' +p171881 +tp171882 +a(g171879 +g171881 +S'and' +p171883 +tp171884 +a(g171881 +g171883 +S'determination' +p171885 +tp171886 +a(g171883 +g171885 +S'that' +p171887 +tp171888 +a(g171885 +g171887 +S'inform' +p171889 +tp171890 +a(g171887 +g171889 +S'van' +p171891 +tp171892 +a(g171889 +g171891 +S"gogh's" +p171893 +tp171894 +a(g171891 +g171893 +S'art' +p171895 +tp171896 +a(g171893 +g171895 +S'can' +p171897 +tp171898 +a(g171895 +g171897 +S'be' +p171899 +tp171900 +a(g171897 +g171899 +S'obscured' +p171901 +tp171902 +a(g171899 +g171901 +S'by' +p171903 +tp171904 +a(g171901 +g171903 +S'the' +p171905 +tp171906 +a(g171903 +g171905 +S'sensational' +p171907 +tp171908 +a(g171905 +g171907 +S'legends' +p171909 +tp171910 +a(g171907 +g171909 +S'that' +p171911 +tp171912 +a(g171909 +g171911 +S'have' +p171913 +tp171914 +a(g171911 +g171913 +S'arisen' +p171915 +tp171916 +a(g171913 +g171915 +S'about' +p171917 +tp171918 +a(g171915 +g171917 +S'his' +p171919 +tp171920 +a(g171917 +g171919 +S'life.' +p171921 +tp171922 +a(g171919 +g171921 +S'the' +p171923 +tp171924 +a(g171921 +g171923 +S"artist's" +p171925 +tp171926 +a(g171923 +g171925 +S'correspondence,' +p171927 +tp171928 +a(g171925 +g171927 +S'particularly' +p171929 +tp171930 +a(g171927 +g171929 +S'from' +p171931 +tp171932 +a(g171929 +g171931 +S'his' +p171933 +tp171934 +a(g171931 +g171933 +S'brief' +p171935 +tp171936 +a(g171933 +g171935 +S'mature' +p171937 +tp171938 +a(g171935 +g171937 +S'period' +p171939 +tp171940 +a(g171937 +g171939 +S'of' +p171941 +tp171942 +a(g171939 +g171941 +S'1888' +p171943 +tp171944 +a(g171941 +g171943 +S'to' +p171945 +tp171946 +a(g171943 +g171945 +S'1890,' +p171947 +tp171948 +a(g171945 +g171947 +S'contradicts' +p171949 +tp171950 +a(g171947 +g171949 +S'popular' +p171951 +tp171952 +a(g171949 +g171951 +S'lore' +p171953 +tp171954 +a(g171951 +g171953 +S'and' +p171955 +tp171956 +a(g171953 +g171955 +S'attests' +p171957 +tp171958 +a(g171955 +g171957 +S'to' +p171959 +tp171960 +a(g171957 +g171959 +S'the' +p171961 +tp171962 +a(g171959 +g171961 +S'deliberateness,' +p171963 +tp171964 +a(g171961 +g171963 +S'sensitivity,' +p171965 +tp171966 +a(g171963 +g171965 +S'and' +p171967 +tp171968 +a(g171965 +g171967 +S'integrity' +p171969 +tp171970 +a(g171967 +g171969 +S'of' +p171971 +tp171972 +a(g171969 +g171971 +S'his' +p171973 +tp171974 +a(g171971 +g171973 +S'work.' +p171975 +tp171976 +a(g171973 +g171975 +S'on' +p171977 +tp171978 +a(g171975 +g171977 +S'july' +p171979 +tp171980 +a(g171977 +g171979 +S'29,' +p171981 +tp171982 +a(g171979 +g171981 +S'1888,' +p171983 +tp171984 +a(g171981 +g171983 +S'van' +p171985 +tp171986 +a(g171983 +g171985 +S'gogh' +p171987 +tp171988 +a(g171985 +g171987 +S'wrote' +p171989 +tp171990 +a(g171987 +g171989 +S'his' +p171991 +tp171992 +a(g171989 +g171991 +S'younger' +p171993 +tp171994 +a(g171991 +g171993 +S'brother' +p171995 +tp171996 +a(g171993 +g171995 +S'theo,' +p171997 +tp171998 +a(g171995 +g171997 +S'an' +p171999 +tp172000 +a(g171997 +g171999 +S'art' +p172001 +tp172002 +a(g171999 +g172001 +S'dealer' +p172003 +tp172004 +a(g172001 +g172003 +S'in' +p172005 +tp172006 +a(g172003 +g172005 +S'a' +p172007 +tp172008 +a(g172005 +g172007 +S'parisian' +p172009 +tp172010 +a(g172007 +g172009 +S'gallery,' +p172011 +tp172012 +a(g172009 +g172011 +S'that' +p172013 +tp172014 +a(g172011 +g172013 +S'"if' +p172015 +tp172016 +a(g172013 +g172015 +S'you' +p172017 +tp172018 +a(g172015 +g172017 +S'know' +p172019 +tp172020 +a(g172017 +g172019 +S'what' +p172021 +tp172022 +a(g172019 +g172021 +S'a' +p172023 +tp172024 +a(g172021 +g172023 +S"'mousmé'" +p172025 +tp172026 +a(g172023 +g172025 +S'is' +p172027 +tp172028 +a(g172025 +g172027 +S'(you' +p172029 +tp172030 +a(g172027 +g172029 +S'will' +p172031 +tp172032 +a(g172029 +g172031 +S'know' +p172033 +tp172034 +a(g172031 +g172033 +S'when' +p172035 +tp172036 +a(g172033 +g172035 +S'you' +p172037 +tp172038 +a(g172035 +g172037 +S'have' +p172039 +tp172040 +a(g172037 +g172039 +S'read' +p172041 +tp172042 +a(g172039 +g172041 +S"loti's" +p172043 +tp172044 +a(g172041 +g172043 +S'van' +p172045 +tp172046 +a(g172043 +g172045 +S'gogh' +p172047 +tp172048 +a(g172045 +g172047 +S'wrote' +p172049 +tp172050 +a(g172047 +g172049 +S'that' +p172051 +tp172052 +a(g172049 +g172051 +S'during' +p172053 +tp172054 +a(g172051 +g172053 +S'the' +p172055 +tp172056 +a(g172053 +g172055 +S'last' +p172057 +tp172058 +a(g172055 +g172057 +S'six' +p172059 +tp172060 +a(g172057 +g172059 +S'or' +p172061 +tp172062 +a(g172059 +g172061 +S'seven' +p172063 +tp172064 +a(g172061 +g172063 +S'months' +p172065 +tp172066 +a(g172063 +g172065 +S'of' +p172067 +tp172068 +a(g172065 +g172067 +S'1889,' +p172069 +tp172070 +a(g172067 +g172069 +S'van' +p172071 +tp172072 +a(g172069 +g172071 +S'gogh' +p172073 +tp172074 +a(g172071 +g172073 +S'did' +p172075 +tp172076 +a(g172073 +g172075 +S'at' +p172077 +tp172078 +a(g172075 +g172077 +S'least' +p172079 +tp172080 +a(g172077 +g172079 +S'fifteen' +p172081 +tp172082 +a(g172079 +g172081 +S'paintings' +p172083 +tp172084 +a(g172081 +g172083 +S'of' +p172085 +tp172086 +a(g172083 +g172085 +S'olive' +p172087 +tp172088 +a(g172085 +g172087 +S'trees—a' +p172089 +tp172090 +a(g172087 +g172089 +S'subject' +p172091 +tp172092 +a(g172089 +g172091 +S'he' +p172093 +tp172094 +a(g172091 +g172093 +S'found' +p172095 +tp172096 +a(g172093 +g172095 +S'both' +p172097 +tp172098 +a(g172095 +g172097 +S'demanding' +p172099 +tp172100 +a(g172097 +g172099 +S'and' +p172101 +tp172102 +a(g172099 +g172101 +S'compelling.' +p172103 +tp172104 +a(g172101 +g172103 +S'he' +p172105 +tp172106 +a(g172103 +g172105 +S'wrote' +p172107 +tp172108 +a(g172105 +g172107 +S'to' +p172109 +tp172110 +a(g172107 +g172109 +S'his' +p172111 +tp172112 +a(g172109 +g172111 +S'brother' +p172113 +tp172114 +a(g172111 +g172113 +S'theo' +p172115 +tp172116 +a(g172113 +g172115 +S'that' +p172117 +tp172118 +a(g172115 +g172117 +S'he' +p172119 +tp172120 +a(g172117 +g172119 +S'was' +p172121 +tp172122 +a(g172119 +g172121 +S'"struggling' +p172123 +tp172124 +a(g172121 +g172123 +S'to' +p172125 +tp172126 +a(g172123 +g172125 +S'catch' +p172127 +tp172128 +a(g172125 +g172127 +S'[the' +p172129 +tp172130 +a(g172127 +g172129 +S'olive' +p172131 +tp172132 +a(g172129 +g172131 +S'trees].' +p172133 +tp172134 +a(g172131 +g172133 +S'they' +p172135 +tp172136 +a(g172133 +g172135 +S'are' +p172137 +tp172138 +a(g172135 +g172137 +S'old' +p172139 +tp172140 +a(g172137 +g172139 +S'silver,' +p172141 +tp172142 +a(g172139 +g172141 +S'sometimes' +p172143 +tp172144 +a(g172141 +g172143 +S'with' +p172145 +tp172146 +a(g172143 +g172145 +S'more' +p172147 +tp172148 +a(g172145 +g172147 +S'blue' +p172149 +tp172150 +a(g172147 +g172149 +S'in' +p172151 +tp172152 +a(g172149 +g172151 +S'them,' +p172153 +tp172154 +a(g172151 +g172153 +S'sometimes' +p172155 +tp172156 +a(g172153 +g172155 +S'greenish,' +p172157 +tp172158 +a(g172155 +g172157 +S'bronzed,' +p172159 +tp172160 +a(g172157 +g172159 +S'fading' +p172161 +tp172162 +a(g172159 +g172161 +S'white' +p172163 +tp172164 +a(g172161 +g172163 +S'above' +p172165 +tp172166 +a(g172163 +g172165 +S'a' +p172167 +tp172168 +a(g172165 +g172167 +S'soil' +p172169 +tp172170 +a(g172167 +g172169 +S'which' +p172171 +tp172172 +a(g172169 +g172171 +S'is' +p172173 +tp172174 +a(g172171 +g172173 +S'yellow,' +p172175 +tp172176 +a(g172173 +g172175 +S'pink,' +p172177 +tp172178 +a(g172175 +g172177 +S'violet' +p172179 +tp172180 +a(g172177 +g172179 +S'tinted' +p172181 +tp172182 +a(g172179 +g172181 +S'orange...very' +p172183 +tp172184 +a(g172181 +g172183 +S'difficult."' +p172185 +tp172186 +a(g172183 +g172185 +S'he' +p172187 +tp172188 +a(g172185 +g172187 +S'found' +p172189 +tp172190 +a(g172187 +g172189 +S'that' +p172191 +tp172192 +a(g172189 +g172191 +S'the' +p172193 +tp172194 +a(g172191 +g172193 +S'"rustle' +p172195 +tp172196 +a(g172193 +g172195 +S'of' +p172197 +tp172198 +a(g172195 +g172197 +S'the' +p172199 +tp172200 +a(g172197 +g172199 +S'olive' +p172201 +tp172202 +a(g172199 +g172201 +S'grove' +p172203 +tp172204 +a(g172201 +g172203 +S'has' +p172205 +tp172206 +a(g172203 +g172205 +S'something' +p172207 +tp172208 +a(g172205 +g172207 +S'very' +p172209 +tp172210 +a(g172207 +g172209 +S'secret' +p172211 +tp172212 +a(g172209 +g172211 +S'in' +p172213 +tp172214 +a(g172211 +g172213 +S'it,' +p172215 +tp172216 +a(g172213 +g172215 +S'and' +p172217 +tp172218 +a(g172215 +g172217 +S'immensely' +p172219 +tp172220 +a(g172217 +g172219 +S'old.' +p172221 +tp172222 +a(g172219 +g172221 +S'it' +p172223 +tp172224 +a(g172221 +g172223 +S'is' +p172225 +tp172226 +a(g172223 +g172225 +S'too' +p172227 +tp172228 +a(g172225 +g172227 +S'beautiful' +p172229 +tp172230 +a(g172227 +g172229 +S'for' +p172231 +tp172232 +a(g172229 +g172231 +S'us' +p172233 +tp172234 +a(g172231 +g172233 +S'to' +p172235 +tp172236 +a(g172233 +g172235 +S'dare' +p172237 +tp172238 +a(g172235 +g172237 +S'to' +p172239 +tp172240 +a(g172237 +g172239 +S'paint' +p172241 +tp172242 +a(g172239 +g172241 +S'it' +p172243 +tp172244 +a(g172241 +g172243 +S'or' +p172245 +tp172246 +a(g172243 +g172245 +S'to' +p172247 +tp172248 +a(g172245 +g172247 +S'be' +p172249 +tp172250 +a(g172247 +g172249 +S'able' +p172251 +tp172252 +a(g172249 +g172251 +S'to' +p172253 +tp172254 +a(g172251 +g172253 +S'imagine' +p172255 +tp172256 +a(g172253 +g172255 +S'it."' +p172257 +tp172258 +a(g172255 +g172257 +S'in' +p172259 +tp172260 +a(g172257 +g172259 +S'the' +p172261 +tp172262 +a(g172259 +g172261 +S'olive' +p172263 +tp172264 +a(g172261 +g172263 +S'trees—in' +p172265 +tp172266 +a(g172263 +g172265 +S'the' +p172267 +tp172268 +a(g172265 +g172267 +S'expressive' +p172269 +tp172270 +a(g172267 +g172269 +S'power' +p172271 +tp172272 +a(g172269 +g172271 +S'of' +p172273 +tp172274 +a(g172271 +g172273 +S'their' +p172275 +tp172276 +a(g172273 +g172275 +S'ancient' +p172277 +tp172278 +a(g172275 +g172277 +S'and' +p172279 +tp172280 +a(g172277 +g172279 +S'gnarled' +p172281 +tp172282 +a(g172279 +g172281 +S'forms—van' +p172283 +tp172284 +a(g172281 +g172283 +S'gogh' +p172285 +tp172286 +a(g172283 +g172285 +S'found' +p172287 +tp172288 +a(g172285 +g172287 +S'a' +p172289 +tp172290 +a(g172287 +g172289 +S'manifestation' +p172291 +tp172292 +a(g172289 +g172291 +S'of' +p172293 +tp172294 +a(g172291 +g172293 +S'the' +p172295 +tp172296 +a(g172293 +g172295 +S'spiritual' +p172297 +tp172298 +a(g172295 +g172297 +S'force' +p172299 +tp172300 +a(g172297 +g172299 +S'he' +p172301 +tp172302 +a(g172299 +g172301 +S'believed' +p172303 +tp172304 +a(g172301 +g172303 +S'resided' +p172305 +tp172306 +a(g172303 +g172305 +S'in' +p172307 +tp172308 +a(g172305 +g172307 +S'all' +p172309 +tp172310 +a(g172307 +g172309 +S'of' +p172311 +tp172312 +a(g172309 +g172311 +S'nature.' +p172313 +tp172314 +a(g172311 +g172313 +S'his' +p172315 +tp172316 +a(g172313 +g172315 +S'brushstrokes' +p172317 +tp172318 +a(g172315 +g172317 +S'make' +p172319 +tp172320 +a(g172317 +g172319 +S'the' +p172321 +tp172322 +a(g172319 +g172321 +S'soil' +p172323 +tp172324 +a(g172321 +g172323 +S'and' +p172325 +tp172326 +a(g172323 +g172325 +S'even' +p172327 +tp172328 +a(g172325 +g172327 +S'the' +p172329 +tp172330 +a(g172327 +g172329 +S'sky' +p172331 +tp172332 +a(g172329 +g172331 +S'seem' +p172333 +tp172334 +a(g172331 +g172333 +S'alive' +p172335 +tp172336 +a(g172333 +g172335 +S'with' +p172337 +tp172338 +a(g172335 +g172337 +S'the' +p172339 +tp172340 +a(g172337 +g172339 +S'same' +p172341 +tp172342 +a(g172339 +g172341 +S'rustling' +p172343 +tp172344 +a(g172341 +g172343 +S'motion' +p172345 +tp172346 +a(g172343 +g172345 +S'as' +p172347 +tp172348 +a(g172345 +g172347 +S'the' +p172349 +tp172350 +a(g172347 +g172349 +S'leaves,' +p172351 +tp172352 +a(g172349 +g172351 +S'stirred' +p172353 +tp172354 +a(g172351 +g172353 +S'to' +p172355 +tp172356 +a(g172353 +g172355 +S'a' +p172357 +tp172358 +a(g172355 +g172357 +S'shimmer' +p172359 +tp172360 +a(g172357 +g172359 +S'by' +p172361 +tp172362 +a(g172359 +g172361 +S'the' +p172363 +tp172364 +a(g172361 +g172363 +S'mediterranean' +p172365 +tp172366 +a(g172363 +g172365 +S'wind.' +p172367 +tp172368 +a(g172365 +g172367 +S'these' +p172369 +tp172370 +a(g172367 +g172369 +S'strong' +p172371 +tp172372 +a(g172369 +g172371 +S'individual' +p172373 +tp172374 +a(g172371 +g172373 +S'dashes' +p172375 +tp172376 +a(g172373 +g172375 +S'do' +p172377 +tp172378 +a(g172375 +g172377 +S'not' +p172379 +tp172380 +a(g172377 +g172379 +S'seem' +p172381 +tp172382 +a(g172379 +g172381 +S'painted' +p172383 +tp172384 +a(g172381 +g172383 +S'so' +p172385 +tp172386 +a(g172383 +g172385 +S'much' +p172387 +tp172388 +a(g172385 +g172387 +S'as' +p172389 +tp172390 +a(g172387 +g172389 +S'drawn' +p172391 +tp172392 +a(g172389 +g172391 +S'onto' +p172393 +tp172394 +a(g172391 +g172393 +S'the' +p172395 +tp172396 +a(g172393 +g172395 +S'canvas' +p172397 +tp172398 +a(g172395 +g172397 +S'with' +p172399 +tp172400 +a(g172397 +g172399 +S'a' +p172401 +tp172402 +a(g172399 +g172401 +S'heavily' +p172403 +tp172404 +a(g172401 +g172403 +S'loaded' +p172405 +tp172406 +a(g172403 +g172405 +S'brush.' +p172407 +tp172408 +a(g172405 +g172407 +S'the' +p172409 +tp172410 +a(g172407 +g172409 +S'energy' +p172411 +tp172412 +a(g172409 +g172411 +S'in' +p172413 +tp172414 +a(g172411 +g172413 +S'their' +p172415 +tp172416 +a(g172413 +g172415 +S'continuous' +p172417 +tp172418 +a(g172415 +g172417 +S'rhythm' +p172419 +tp172420 +a(g172417 +g172419 +S'communicates' +p172421 +tp172422 +a(g172419 +g172421 +S'to' +p172423 +tp172424 +a(g172421 +g172423 +S'us,' +p172425 +tp172426 +a(g172423 +g172425 +S'in' +p172427 +tp172428 +a(g172425 +g172427 +S'an' +p172429 +tp172430 +a(g172427 +g172429 +S'almost' +p172431 +tp172432 +a(g172429 +g172431 +S'physical' +p172433 +tp172434 +a(g172431 +g172433 +S'way,' +p172435 +tp172436 +a(g172433 +g172435 +S'the' +p172437 +tp172438 +a(g172435 +g172437 +S'living' +p172439 +tp172440 +a(g172437 +g172439 +S'force' +p172441 +tp172442 +a(g172439 +g172441 +S'that' +p172443 +tp172444 +a(g172441 +g172443 +S'van' +p172445 +tp172446 +a(g172443 +g172445 +S'gogh' +p172447 +tp172448 +a(g172445 +g172447 +S'found' +p172449 +tp172450 +a(g172447 +g172449 +S'within' +p172451 +tp172452 +a(g172449 +g172451 +S'the' +p172453 +tp172454 +a(g172451 +g172453 +S'trees' +p172455 +tp172456 +a(g172453 +g172455 +S'themselves,' +p172457 +tp172458 +a(g172455 +g172457 +S'the' +p172459 +tp172460 +a(g172457 +g172459 +S'very' +p172461 +tp172462 +a(g172459 +g172461 +S'spiritual' +p172463 +tp172464 +a(g172461 +g172463 +S'force' +p172465 +tp172466 +a(g172463 +g172465 +S'that' +p172467 +tp172468 +a(g172465 +g172467 +S'he' +p172469 +tp172470 +a(g172467 +g172469 +S'believed' +p172471 +tp172472 +a(g172469 +g172471 +S'had' +p172473 +tp172474 +a(g172471 +g172473 +S'shaped' +p172475 +tp172476 +a(g172473 +g172475 +S'them.' +p172477 +tp172478 +a(g172475 +g172477 +S'in' +p172479 +tp172480 +a(g172477 +g172479 +S'a' +p172481 +tp172482 +a(g172479 +g172481 +S'review' +p172483 +tp172484 +a(g172481 +g172483 +S'of' +p172485 +tp172486 +a(g172483 +g172485 +S'the' +p172487 +tp172488 +a(g172485 +g172487 +S'1846' +p172489 +tp172490 +a(g172487 +g172489 +S'salon,' +p172491 +tp172492 +a(g172489 +g172491 +S'poet' +p172493 +tp172494 +a(g172491 +g172493 +S'and' +p172495 +tp172496 +a(g172493 +g172495 +S'critic' +p172497 +tp172498 +a(g172495 +g172497 +S'charles' +p172499 +tp172500 +a(g172497 +g172499 +S'baudelaire' +p172501 +tp172502 +a(g172499 +g172501 +S'urged' +p172503 +tp172504 +a(g172501 +g172503 +S'artists' +p172505 +tp172506 +a(g172503 +g172505 +S'to' +p172507 +tp172508 +a(g172505 +g172507 +S'depict' +p172509 +tp172510 +a(g172507 +g172509 +S'"the' +p172511 +tp172512 +a(g172509 +g172511 +S'heroism' +p172513 +tp172514 +a(g172511 +g172513 +S'of' +p172515 +tp172516 +a(g172513 +g172515 +S'modern' +p172517 +tp172518 +a(g172515 +g172517 +S'life."' +p172519 +tp172520 +a(g172517 +g172519 +S'manet' +p172521 +tp172522 +a(g172519 +g172521 +S'embodied' +p172523 +tp172524 +a(g172521 +g172523 +S"baudelaire's" +p172525 +tp172526 +a(g172523 +g172525 +S'ideal' +p172527 +tp172528 +a(g172525 +g172527 +S'painter' +p172529 +tp172530 +a(g172527 +g172529 +S'of' +p172531 +tp172532 +a(g172529 +g172531 +S'contemporary' +p172533 +tp172534 +a(g172531 +g172533 +S'paris.' +p172535 +tp172536 +a(g172533 +g172535 +S'emperor' +p172537 +tp172538 +a(g172535 +g172537 +S'napoleon' +p172539 +tp172540 +a(g172537 +g172539 +S'iii' +p172541 +tp172542 +a(g172539 +g172541 +S'ordered' +p172543 +tp172544 +a(g172541 +g172543 +S'the' +p172545 +tp172546 +a(g172543 +g172545 +S'renovation' +p172547 +tp172548 +a(g172545 +g172547 +S'of' +p172549 +tp172550 +a(g172547 +g172549 +S'paris' +p172551 +tp172552 +a(g172549 +g172551 +S'under' +p172553 +tp172554 +a(g172551 +g172553 +S'the' +p172555 +tp172556 +a(g172553 +g172555 +S'direction' +p172557 +tp172558 +a(g172555 +g172557 +S'of' +p172559 +tp172560 +a(g172557 +g172559 +S'baron' +p172561 +tp172562 +a(g172559 +g172561 +S'haussmann,' +p172563 +tp172564 +a(g172561 +g172563 +S'and' +p172565 +tp172566 +a(g172563 +g172565 +S'early' +p172567 +tp172568 +a(g172565 +g172567 +S'in' +p172569 +tp172570 +a(g172567 +g172569 +S'the' +p172571 +tp172572 +a(g172569 +g172571 +S'1860s' +p172573 +tp172574 +a(g172571 +g172573 +S'the' +p172575 +tp172576 +a(g172573 +g172575 +S'slum' +p172577 +tp172578 +a(g172575 +g172577 +S'where' +p172579 +tp172580 +a(g172577 +g172579 +S'manet' +p172581 +tp172582 +a(g172579 +g172581 +S'located' +p172583 +tp172584 +a(g172581 +g172583 +S'his' +p172585 +tp172586 +a(g172583 +g172585 +S'studio' +p172587 +tp172588 +a(g172585 +g172587 +S'was' +p172589 +tp172590 +a(g172587 +g172589 +S'being' +p172591 +tp172592 +a(g172589 +g172591 +S'razed' +p172593 +tp172594 +a(g172591 +g172593 +S'to' +p172595 +tp172596 +a(g172593 +g172595 +S'accommodate' +p172597 +tp172598 +a(g172595 +g172597 +S'the' +p172599 +tp172600 +a(g172597 +g172599 +S'planned' +p172601 +tp172602 +a(g172599 +g172601 +S'broad,' +p172603 +tp172604 +a(g172601 +g172603 +S'tree–lined' +p172605 +tp172606 +a(g172603 +g172605 +S'boulevards' +p172607 +tp172608 +a(g172605 +g172607 +S'that' +p172609 +tp172610 +a(g172607 +g172609 +S'still' +p172611 +tp172612 +a(g172609 +g172611 +S'characterize' +p172613 +tp172614 +a(g172611 +g172613 +S'the' +p172615 +tp172616 +a(g172613 +g172615 +S'city.' +p172617 +tp172618 +a(g172615 +g172617 +S'in' +p172619 +tp172620 +a(g172617 +g172619 +S'this' +p172621 +tp172622 +a(g172619 +g172621 +S'painting,' +p172623 +tp172624 +a(g172621 +g172623 +S'manet' +p172625 +tp172626 +a(g172623 +g172625 +S'represented' +p172627 +tp172628 +a(g172625 +g172627 +S'a' +p172629 +tp172630 +a(g172627 +g172629 +S'strolling' +p172631 +tp172632 +a(g172629 +g172631 +S'musician' +p172633 +tp172634 +a(g172631 +g172633 +S'flanked' +p172635 +tp172636 +a(g172633 +g172635 +S'by' +p172637 +tp172638 +a(g172635 +g172637 +S'a' +p172639 +tp172640 +a(g172637 +g172639 +S'gypsy' +p172641 +tp172642 +a(g172639 +g172641 +S'girl' +p172643 +tp172644 +a(g172641 +g172643 +S'and' +p172645 +tp172646 +a(g172643 +g172645 +S'infant,' +p172647 +tp172648 +a(g172645 +g172647 +S'an' +p172649 +tp172650 +a(g172647 +g172649 +S'acrobat,' +p172651 +tp172652 +a(g172649 +g172651 +S'an' +p172653 +tp172654 +a(g172651 +g172653 +S'urchin,' +p172655 +tp172656 +a(g172653 +g172655 +S'a' +p172657 +tp172658 +a(g172655 +g172657 +S'drunkard,' +p172659 +tp172660 +a(g172657 +g172659 +S'and' +p172661 +tp172662 +a(g172659 +g172661 +S'a' +p172663 +tp172664 +a(g172661 +g172663 +S'ragpicker—individuals' +p172665 +tp172666 +a(g172663 +g172665 +S'the' +p172667 +tp172668 +a(g172665 +g172667 +S'artist' +p172669 +tp172670 +a(g172667 +g172669 +S'might' +p172671 +tp172672 +a(g172669 +g172671 +S'have' +p172673 +tp172674 +a(g172671 +g172673 +S'observed' +p172675 +tp172676 +a(g172673 +g172675 +S'near' +p172677 +tp172678 +a(g172675 +g172677 +S'his' +p172679 +tp172680 +a(g172677 +g172679 +S'studio.' +p172681 +tp172682 +a(g172679 +g172681 +S'the' +p172683 +tp172684 +a(g172681 +g172683 +S'seemingly' +p172685 +tp172686 +a(g172683 +g172685 +S'casual' +p172687 +tp172688 +a(g172685 +g172687 +S'gathering' +p172689 +tp172690 +a(g172687 +g172689 +S'is' +p172691 +tp172692 +a(g172689 +g172691 +S'composed' +p172693 +tp172694 +a(g172691 +g172693 +S'of' +p172695 +tp172696 +a(g172693 +g172695 +S'the' +p172697 +tp172698 +a(g172695 +g172697 +S'urban' +p172699 +tp172700 +a(g172697 +g172699 +S'poor,' +p172701 +tp172702 +a(g172699 +g172701 +S'possibly' +p172703 +tp172704 +a(g172701 +g172703 +S'dispossessed' +p172705 +tp172706 +a(g172703 +g172705 +S'by' +p172707 +tp172708 +a(g172705 +g172707 +S'haussmann\xe2\x80\x99s' +p172709 +tp172710 +a(g172707 +g172709 +S'projects.' +p172711 +tp172712 +a(g172709 +g172711 +S'neither' +p172713 +tp172714 +a(g172711 +g172713 +S'anecdotal' +p172715 +tp172716 +a(g172713 +g172715 +S'nor' +p172717 +tp172718 +a(g172715 +g172717 +S'sentimental,' +p172719 +tp172720 +a(g172717 +g172719 +S'manet\xe2\x80\x99s' +p172721 +tp172722 +a(g172719 +g172721 +S'portrayal' +p172723 +tp172724 +a(g172721 +g172723 +S'carries' +p172725 +tp172726 +a(g172723 +g172725 +S'the' +p172727 +tp172728 +a(g172725 +g172727 +S'careful' +p172729 +tp172730 +a(g172727 +g172729 +S'neutrality' +p172731 +tp172732 +a(g172729 +g172731 +S'of' +p172733 +tp172734 +a(g172731 +g172733 +S'an' +p172735 +tp172736 +a(g172733 +g172735 +S'unbiased' +p172737 +tp172738 +a(g172735 +g172737 +S'onlooker,' +p172739 +tp172740 +a(g172737 +g172739 +S'and' +p172741 +tp172742 +a(g172739 +g172741 +S'this' +p172743 +tp172744 +a(g172741 +g172743 +S'distinctly' +p172745 +tp172746 +a(g172743 +g172745 +S'modern' +p172747 +tp172748 +a(g172745 +g172747 +S'ambiguity' +p172749 +tp172750 +a(g172747 +g172749 +S'and' +p172751 +tp172752 +a(g172749 +g172751 +S'detachment' +p172753 +tp172754 +a(g172751 +g172753 +S'are' +p172755 +tp172756 +a(g172753 +g172755 +S'characteristic' +p172757 +tp172758 +a(g172755 +g172757 +S'of' +p172759 +tp172760 +a(g172757 +g172759 +S'all' +p172761 +tp172762 +a(g172759 +g172761 +S"manet's" +p172763 +tp172764 +a(g172761 +g172763 +S'work.' +p172765 +tp172766 +a(g172763 +g172765 +S'by' +p172767 +tp172768 +a(g172765 +g172767 +S'placing' +p172769 +tp172770 +a(g172767 +g172769 +S'pigments' +p172771 +tp172772 +a(g172769 +g172771 +S'side' +p172773 +tp172774 +a(g172771 +g172773 +S'by' +p172775 +tp172776 +a(g172773 +g172775 +S'side' +p172777 +tp172778 +a(g172775 +g172777 +S'rather' +p172779 +tp172780 +a(g172777 +g172779 +S'than' +p172781 +tp172782 +a(g172779 +g172781 +S'blending' +p172783 +tp172784 +a(g172781 +g172783 +S'tones,' +p172785 +tp172786 +a(g172783 +g172785 +S'manet' +p172787 +tp172788 +a(g172785 +g172787 +S'could' +p172789 +tp172790 +a(g172787 +g172789 +S'preserve' +p172791 +tp172792 +a(g172789 +g172791 +S'the' +p172793 +tp172794 +a(g172791 +g172793 +S'immediacy' +p172795 +tp172796 +a(g172793 +g172795 +S'and' +p172797 +tp172798 +a(g172795 +g172797 +S'directness' +p172799 +tp172800 +a(g172797 +g172799 +S'of' +p172801 +tp172802 +a(g172799 +g172801 +S'preliminary' +p172803 +tp172804 +a(g172801 +g172803 +S'oil' +p172805 +tp172806 +a(g172803 +g172805 +S'studies' +p172807 +tp172808 +a(g172805 +g172807 +S'in' +p172809 +tp172810 +a(g172807 +g172809 +S'his' +p172811 +tp172812 +a(g172809 +g172811 +S'finished' +p172813 +tp172814 +a(g172811 +g172813 +S'works.' +p172815 +tp172816 +a(g172813 +g172815 +S'effects' +p172817 +tp172818 +a(g172815 +g172817 +S'produced' +p172819 +tp172820 +a(g172817 +g172819 +S'by' +p172821 +tp172822 +a(g172819 +g172821 +S'this' +p172823 +tp172824 +a(g172821 +g172823 +S'technique' +p172825 +tp172826 +a(g172823 +g172825 +S'were' +p172827 +tp172828 +a(g172825 +g172827 +S'sharper' +p172829 +tp172830 +a(g172827 +g172829 +S'and' +p172831 +tp172832 +a(g172829 +g172831 +S'crisper' +p172833 +tp172834 +a(g172831 +g172833 +S'than' +p172835 +tp172836 +a(g172833 +g172835 +S'those' +p172837 +tp172838 +a(g172835 +g172837 +S'obtained' +p172839 +tp172840 +a(g172837 +g172839 +S'using' +p172841 +tp172842 +a(g172839 +g172841 +S'academic' +p172843 +tp172844 +a(g172841 +g172843 +S'methods.' +p172845 +tp172846 +a(g172843 +g172845 +S'when' +p172847 +tp172848 +a(g172845 +g172847 +S'they' +p172849 +tp172850 +a(g172847 +g172849 +S'first' +p172851 +tp172852 +a(g172849 +g172851 +S'encountered' +p172853 +tp172854 +a(g172851 +g172853 +S"manet's" +p172855 +tp172856 +a(g172853 +g172855 +S'work' +p172857 +tp172858 +a(g172855 +g172857 +S'early' +p172859 +tp172860 +a(g172857 +g172859 +S'in' +p172861 +tp172862 +a(g172859 +g172861 +S'the' +p172863 +tp172864 +a(g172861 +g172863 +S'1860s,' +p172865 +tp172866 +a(g172863 +g172865 +S'monet' +p172867 +tp172868 +a(g172865 +g172867 +S'and' +p172869 +tp172870 +a(g172867 +g172869 +S'renoir' +p172871 +tp172872 +a(g172869 +g172871 +S'admired' +p172873 +tp172874 +a(g172871 +g172873 +S'his' +p172875 +tp172876 +a(g172873 +g172875 +S'manner' +p172877 +tp172878 +a(g172875 +g172877 +S'of' +p172879 +tp172880 +a(g172877 +g172879 +S'painting' +p172881 +tp172882 +a(g172879 +g172881 +S'and' +p172883 +tp172884 +a(g172881 +g172883 +S'emulated' +p172885 +tp172886 +a(g172883 +g172885 +S'it' +p172887 +tp172888 +a(g172885 +g172887 +S'as' +p172889 +tp172890 +a(g172887 +g172889 +S'they' +p172891 +tp172892 +a(g172889 +g172891 +S'forged' +p172893 +tp172894 +a(g172891 +g172893 +S'the' +p172895 +tp172896 +a(g172893 +g172895 +S'style' +p172897 +tp172898 +a(g172895 +g172897 +S'known' +p172899 +tp172900 +a(g172897 +g172899 +S'as' +p172901 +tp172902 +a(g172899 +g172901 +S'impressionism.' +p172903 +tp172904 +a(g172901 +g172903 +S'during' +p172905 +tp172906 +a(g172903 +g172905 +S'the' +p172907 +tp172908 +a(g172905 +g172907 +S'early' +p172909 +tp172910 +a(g172907 +g172909 +S'years' +p172911 +tp172912 +a(g172909 +g172911 +S'of' +p172913 +tp172914 +a(g172911 +g172913 +S'impressionism,' +p172915 +tp172916 +a(g172913 +g172915 +S'one' +p172917 +tp172918 +a(g172915 +g172917 +S'of' +p172919 +tp172920 +a(g172917 +g172919 +S"monet's" +p172921 +tp172922 +a(g172919 +g172921 +S'primary' +p172923 +tp172924 +a(g172921 +g172923 +S'intentions' +p172925 +tp172926 +a(g172923 +g172925 +S'was' +p172927 +tp172928 +a(g172925 +g172927 +S'to' +p172929 +tp172930 +a(g172927 +g172929 +S'capture' +p172931 +tp172932 +a(g172929 +g172931 +S'fleeting' +p172933 +tp172934 +a(g172931 +g172933 +S'effects' +p172935 +tp172936 +a(g172933 +g172935 +S'of' +p172937 +tp172938 +a(g172935 +g172937 +S'light' +p172939 +tp172940 +a(g172937 +g172939 +S'and' +p172941 +tp172942 +a(g172939 +g172941 +S'atmosphere.' +p172943 +tp172944 +a(g172941 +g172943 +S'working' +p172945 +tp172946 +a(g172943 +g172945 +S'quickly,' +p172947 +tp172948 +a(g172945 +g172947 +S'out' +p172949 +tp172950 +a(g172947 +g172949 +S'of' +p172951 +tp172952 +a(g172949 +g172951 +S'doors,' +p172953 +tp172954 +a(g172951 +g172953 +S'he' +p172955 +tp172956 +a(g172953 +g172955 +S'sought' +p172957 +tp172958 +a(g172955 +g172957 +S'to' +p172959 +tp172960 +a(g172957 +g172959 +S'transcribe' +p172961 +tp172962 +a(g172959 +g172961 +S'with' +p172963 +tp172964 +a(g172961 +g172963 +S'directness' +p172965 +tp172966 +a(g172963 +g172965 +S'and' +p172967 +tp172968 +a(g172965 +g172967 +S'spontaneity' +p172969 +tp172970 +a(g172967 +g172969 +S'his' +p172971 +tp172972 +a(g172969 +g172971 +S'sensory' +p172973 +tp172974 +a(g172971 +g172973 +S'experience' +p172975 +tp172976 +a(g172973 +g172975 +S'of' +p172977 +tp172978 +a(g172975 +g172977 +S'the' +p172979 +tp172980 +a(g172977 +g172979 +S'landscape' +p172981 +tp172982 +a(g172979 +g172981 +S'before' +p172983 +tp172984 +a(g172981 +g172983 +S'him.' +p172985 +tp172986 +a(g172983 +g172985 +S'but' +p172987 +tp172988 +a(g172985 +g172987 +S'by' +p172989 +tp172990 +a(g172987 +g172989 +S'about' +p172991 +tp172992 +a(g172989 +g172991 +S'1880,' +p172993 +tp172994 +a(g172991 +g172993 +S'when' +p172995 +tp172996 +a(g172993 +g172995 +S'this' +p172997 +tp172998 +a(g172995 +g172997 +S'picture' +p172999 +tp173000 +a(g172997 +g172999 +S'was' +p173001 +tp173002 +a(g172999 +g173001 +S'painted,' +p173003 +tp173004 +a(g173001 +g173003 +S'monet' +p173005 +tp173006 +a(g173003 +g173005 +S'was' +p173007 +tp173008 +a(g173005 +g173007 +S'beginning' +p173009 +tp173010 +a(g173007 +g173009 +S'to' +p173011 +tp173012 +a(g173009 +g173011 +S'show' +p173013 +tp173014 +a(g173011 +g173013 +S'more' +p173015 +tp173016 +a(g173013 +g173015 +S'interest' +p173017 +tp173018 +a(g173015 +g173017 +S'in' +p173019 +tp173020 +a(g173017 +g173019 +S'the' +p173021 +tp173022 +a(g173019 +g173021 +S'painted' +p173023 +tp173024 +a(g173021 +g173023 +S'surface' +p173025 +tp173026 +a(g173023 +g173025 +S'itself.' +p173027 +tp173028 +a(g173025 +g173027 +S'this' +p173029 +tp173030 +a(g173027 +g173029 +S'interest' +p173031 +tp173032 +a(g173029 +g173031 +S'would' +p173033 +tp173034 +a(g173031 +g173033 +S'lead' +p173035 +tp173036 +a(g173033 +g173035 +S'him' +p173037 +tp173038 +a(g173035 +g173037 +S'to' +p173039 +tp173040 +a(g173037 +g173039 +S'explore' +p173041 +tp173042 +a(g173039 +g173041 +S'the' +p173043 +tp173044 +a(g173041 +g173043 +S'same' +p173045 +tp173046 +a(g173043 +g173045 +S'subject' +p173047 +tp173048 +a(g173045 +g173047 +S'repeatedly' +p173049 +tp173050 +a(g173047 +g173049 +S'in' +p173051 +tp173052 +a(g173049 +g173051 +S'his' +p173053 +tp173054 +a(g173051 +g173053 +S'series' +p173055 +tp173056 +a(g173053 +g173055 +S'paintings,' +p173057 +tp173058 +a(g173055 +g173057 +S'seeking' +p173059 +tp173060 +a(g173057 +g173059 +S'to' +p173061 +tp173062 +a(g173059 +g173061 +S'unify' +p173063 +tp173064 +a(g173061 +g173063 +S'individual' +p173065 +tp173066 +a(g173063 +g173065 +S'canvases' +p173067 +tp173068 +a(g173065 +g173067 +S'and' +p173069 +tp173070 +a(g173067 +g173069 +S'harmonize' +p173071 +tp173072 +a(g173069 +g173071 +S'each' +p173073 +tp173074 +a(g173071 +g173073 +S'series' +p173075 +tp173076 +a(g173073 +g173075 +S'as' +p173077 +tp173078 +a(g173075 +g173077 +S'a' +p173079 +tp173080 +a(g173077 +g173079 +S'whole.' +p173081 +tp173082 +a(g173079 +g173081 +S'here,' +p173083 +tp173084 +a(g173081 +g173083 +S'brushstrokes' +p173085 +tp173086 +a(g173083 +g173085 +S'vary' +p173087 +tp173088 +a(g173085 +g173087 +S'in' +p173089 +tp173090 +a(g173087 +g173089 +S'response' +p173091 +tp173092 +a(g173089 +g173091 +S'to' +p173093 +tp173094 +a(g173091 +g173093 +S'the' +p173095 +tp173096 +a(g173093 +g173095 +S'different' +p173097 +tp173098 +a(g173095 +g173097 +S'textures' +p173099 +tp173100 +a(g173097 +g173099 +S'they' +p173101 +tp173102 +a(g173099 +g173101 +S'portray—contrast,' +p173103 +tp173104 +a(g173101 +g173103 +S'for' +p173105 +tp173106 +a(g173103 +g173105 +S'example,' +p173107 +tp173108 +a(g173105 +g173107 +S'the' +p173109 +tp173110 +a(g173107 +g173109 +S'quick' +p173111 +tp173112 +a(g173109 +g173111 +S'horizontal' +p173113 +tp173114 +a(g173111 +g173113 +S'skips' +p173115 +tp173116 +a(g173113 +g173115 +S'in' +p173117 +tp173118 +a(g173115 +g173117 +S'the' +p173119 +tp173120 +a(g173117 +g173119 +S"river's" +p173121 +tp173122 +a(g173119 +g173121 +S'gently' +p173123 +tp173124 +a(g173121 +g173123 +S'rippled' +p173125 +tp173126 +a(g173123 +g173125 +S'surface' +p173127 +tp173128 +a(g173125 +g173127 +S'with' +p173129 +tp173130 +a(g173127 +g173129 +S'the' +p173131 +tp173132 +a(g173129 +g173131 +S'rounder,' +p173133 +tp173134 +a(g173131 +g173133 +S'swirling' +p173135 +tp173136 +a(g173133 +g173135 +S'forms' +p173137 +tp173138 +a(g173135 +g173137 +S'of' +p173139 +tp173140 +a(g173137 +g173139 +S'the' +p173141 +tp173142 +a(g173139 +g173141 +S'sky.' +p173143 +tp173144 +a(g173141 +g173143 +S'but' +p173145 +tp173146 +a(g173143 +g173145 +S'it' +p173147 +tp173148 +a(g173145 +g173147 +S'is' +p173149 +tp173150 +a(g173147 +g173149 +S'the' +p173151 +tp173152 +a(g173149 +g173151 +S'foreground,' +p173153 +tp173154 +a(g173151 +g173153 +S'where' +p173155 +tp173156 +a(g173153 +g173155 +S'thick' +p173157 +tp173158 +a(g173155 +g173157 +S'grasses' +p173159 +tp173160 +a(g173157 +g173159 +S'and' +p173161 +tp173162 +a(g173159 +g173161 +S'flowers' +p173163 +tp173164 +a(g173161 +g173163 +S'are' +p173165 +tp173166 +a(g173163 +g173165 +S'painted' +p173167 +tp173168 +a(g173165 +g173167 +S'with' +p173169 +tp173170 +a(g173167 +g173169 +S'crowded,' +p173171 +tp173172 +a(g173169 +g173171 +S'exuberant' +p173173 +tp173174 +a(g173171 +g173173 +S'strokes,' +p173175 +tp173176 +a(g173173 +g173175 +S'that' +p173177 +tp173178 +a(g173175 +g173177 +S'draws' +p173179 +tp173180 +a(g173177 +g173179 +S'our' +p173181 +tp173182 +a(g173179 +g173181 +S'attention.' +p173183 +tp173184 +a(g173181 +g173183 +S'these' +p173185 +tp173186 +a(g173183 +g173185 +S'heavy' +p173187 +tp173188 +a(g173185 +g173187 +S'layers' +p173189 +tp173190 +a(g173187 +g173189 +S'of' +p173191 +tp173192 +a(g173189 +g173191 +S'paint' +p173193 +tp173194 +a(g173191 +g173193 +S'were' +p173195 +tp173196 +a(g173193 +g173195 +S'probably' +p173197 +tp173198 +a(g173195 +g173197 +S'not' +p173199 +tp173200 +a(g173197 +g173199 +S'completed' +p173201 +tp173202 +a(g173199 +g173201 +S'on' +p173203 +tp173204 +a(g173201 +g173203 +S'the' +p173205 +tp173206 +a(g173203 +g173205 +S'spot,' +p173207 +tp173208 +a(g173205 +g173207 +S'but' +p173209 +tp173210 +a(g173207 +g173209 +S'instead' +p173211 +tp173212 +a(g173209 +g173211 +S'carefully' +p173213 +tp173214 +a(g173211 +g173213 +S'reworked' +p173215 +tp173216 +a(g173213 +g173215 +S'in' +p173217 +tp173218 +a(g173215 +g173217 +S'the' +p173219 +tp173220 +a(g173217 +g173219 +S'studio.' +p173221 +tp173222 +a(g173219 +g173221 +S'the' +p173223 +tp173224 +a(g173221 +g173223 +S'strokes' +p173225 +tp173226 +a(g173223 +g173225 +S'assume' +p173227 +tp173228 +a(g173225 +g173227 +S'an' +p173229 +tp173230 +a(g173227 +g173229 +S'importance' +p173231 +tp173232 +a(g173229 +g173231 +S'in' +p173233 +tp173234 +a(g173231 +g173233 +S'their' +p173235 +tp173236 +a(g173233 +g173235 +S'own' +p173237 +tp173238 +a(g173235 +g173237 +S'right,' +p173239 +tp173240 +a(g173237 +g173239 +S'becoming' +p173241 +tp173242 +a(g173239 +g173241 +S'decorative' +p173243 +tp173244 +a(g173241 +g173243 +S'as' +p173245 +tp173246 +a(g173243 +g173245 +S'well' +p173247 +tp173248 +a(g173245 +g173247 +S'as' +p173249 +tp173250 +a(g173247 +g173249 +S'descriptive.' +p173251 +tp173252 +a(g173249 +g173251 +S'monet,' +p173253 +tp173254 +a(g173251 +g173253 +S'however,' +p173255 +tp173256 +a(g173253 +g173255 +S'never' +p173257 +tp173258 +a(g173255 +g173257 +S'strays' +p173259 +tp173260 +a(g173257 +g173259 +S'far' +p173261 +tp173262 +a(g173259 +g173261 +S'from' +p173263 +tp173264 +a(g173261 +g173263 +S'the' +p173265 +tp173266 +a(g173263 +g173265 +S'natural' +p173267 +tp173268 +a(g173265 +g173267 +S'forms' +p173269 +tp173270 +a(g173267 +g173269 +S'that' +p173271 +tp173272 +a(g173269 +g173271 +S'were' +p173273 +tp173274 +a(g173271 +g173273 +S'his' +p173275 +tp173276 +a(g173273 +g173275 +S'inspiration.' +p173277 +tp173278 +a(g173275 +g173277 +S'in' +p173279 +tp173280 +a(g173277 +g173279 +S'late' +p173281 +tp173282 +a(g173279 +g173281 +S'january' +p173283 +tp173284 +a(g173281 +g173283 +S'or' +p173285 +tp173286 +a(g173283 +g173285 +S'early' +p173287 +tp173288 +a(g173285 +g173287 +S'february' +p173289 +tp173290 +a(g173287 +g173289 +S'1892,' +p173291 +tp173292 +a(g173289 +g173291 +S'monet' +p173293 +tp173294 +a(g173291 +g173293 +S'rented' +p173295 +tp173296 +a(g173293 +g173295 +S'rooms' +p173297 +tp173298 +a(g173295 +g173297 +S'across' +p173299 +tp173300 +a(g173297 +g173299 +S'from' +p173301 +tp173302 +a(g173299 +g173301 +S'rouen' +p173303 +tp173304 +a(g173301 +g173303 +S'cathedral.' +p173305 +tp173306 +a(g173303 +g173305 +S'he' +p173307 +tp173308 +a(g173305 +g173307 +S'remained' +p173309 +tp173310 +a(g173307 +g173309 +S'until' +p173311 +tp173312 +a(g173309 +g173311 +S'spring,' +p173313 +tp173314 +a(g173311 +g173313 +S'painting' +p173315 +tp173316 +a(g173313 +g173315 +S'its' +p173317 +tp173318 +a(g173315 +g173317 +S'looming' +p173319 +tp173320 +a(g173317 +g173319 +S'façade' +p173321 +tp173322 +a(g173319 +g173321 +S'many' +p173323 +tp173324 +a(g173321 +g173323 +S'times,' +p173325 +tp173326 +a(g173323 +g173325 +S'most' +p173327 +tp173328 +a(g173325 +g173327 +S'often' +p173329 +tp173330 +a(g173327 +g173329 +S'as' +p173331 +tp173332 +a(g173329 +g173331 +S'we' +p173333 +tp173334 +a(g173331 +g173333 +S'see' +p173335 +tp173336 +a(g173333 +g173335 +S'it' +p173337 +tp173338 +a(g173335 +g173337 +S'here,' +p173339 +tp173340 +a(g173337 +g173339 +S'close' +p173341 +tp173342 +a(g173339 +g173341 +S'up' +p173343 +tp173344 +a(g173341 +g173343 +S'and' +p173345 +tp173346 +a(g173343 +g173345 +S'cropped' +p173347 +tp173348 +a(g173345 +g173347 +S'to' +p173349 +tp173350 +a(g173347 +g173349 +S'the' +p173351 +tp173352 +a(g173349 +g173351 +S'sides.' +p173353 +tp173354 +a(g173351 +g173353 +S'the' +p173355 +tp173356 +a(g173353 +g173355 +S'next' +p173357 +tp173358 +a(g173355 +g173357 +S'winter' +p173359 +tp173360 +a(g173357 +g173359 +S'he' +p173361 +tp173362 +a(g173359 +g173361 +S'returned' +p173363 +tp173364 +a(g173361 +g173363 +S'to' +p173365 +tp173366 +a(g173363 +g173365 +S'paint' +p173367 +tp173368 +a(g173365 +g173367 +S'the' +p173369 +tp173370 +a(g173367 +g173369 +S'cathedral' +p173371 +tp173372 +a(g173369 +g173371 +S'again,' +p173373 +tp173374 +a(g173371 +g173373 +S'making' +p173375 +tp173376 +a(g173373 +g173375 +S'in' +p173377 +tp173378 +a(g173375 +g173377 +S'all' +p173379 +tp173380 +a(g173377 +g173379 +S'more' +p173381 +tp173382 +a(g173379 +g173381 +S'than' +p173383 +tp173384 +a(g173381 +g173383 +S'thirty' +p173385 +tp173386 +a(g173383 +g173385 +S'views' +p173387 +tp173388 +a(g173385 +g173387 +S'of' +p173389 +tp173390 +a(g173387 +g173389 +S'it.' +p173391 +tp173392 +a(g173389 +g173391 +S'but' +p173393 +tp173394 +a(g173391 +g173393 +S'it' +p173395 +tp173396 +a(g173393 +g173395 +S'was' +p173397 +tp173398 +a(g173395 +g173397 +S'not' +p173399 +tp173400 +a(g173397 +g173399 +S'so' +p173401 +tp173402 +a(g173399 +g173401 +S'much' +p173403 +tp173404 +a(g173401 +g173403 +S'the' +p173405 +tp173406 +a(g173403 +g173405 +S'deeply' +p173407 +tp173408 +a(g173405 +g173407 +S'carved' +p173409 +tp173410 +a(g173407 +g173409 +S'gothic' +p173411 +tp173412 +a(g173409 +g173411 +S'façade' +p173413 +tp173414 +a(g173411 +g173413 +S'that' +p173415 +tp173416 +a(g173413 +g173415 +S'was' +p173417 +tp173418 +a(g173415 +g173417 +S"monet's" +p173419 +tp173420 +a(g173417 +g173419 +S'subject' +p173421 +tp173422 +a(g173419 +g173421 +S'as' +p173423 +tp173424 +a(g173421 +g173423 +S'it' +p173425 +tp173426 +a(g173423 +g173425 +S'was' +p173427 +tp173428 +a(g173425 +g173427 +S'the' +p173429 +tp173430 +a(g173427 +g173429 +S'atmosphere—the' +p173431 +tp173432 +a(g173429 +g173431 +S'from' +p173433 +tp173434 +a(g173431 +g173433 +S'the' +p173435 +tp173436 +a(g173433 +g173435 +S'early' +p173437 +tp173438 +a(g173435 +g173437 +S'1860s' +p173439 +tp173440 +a(g173437 +g173439 +S'until' +p173441 +tp173442 +a(g173439 +g173441 +S'1889,' +p173443 +tp173444 +a(g173441 +g173443 +S'not' +p173445 +tp173446 +a(g173443 +g173445 +S'a' +p173447 +tp173448 +a(g173445 +g173447 +S'single' +p173449 +tp173450 +a(g173447 +g173449 +S'year' +p173451 +tp173452 +a(g173449 +g173451 +S'passed' +p173453 +tp173454 +a(g173451 +g173453 +S'that' +p173455 +tp173456 +a(g173453 +g173455 +S'monet' +p173457 +tp173458 +a(g173455 +g173457 +S'did' +p173459 +tp173460 +a(g173457 +g173459 +S'not' +p173461 +tp173462 +a(g173459 +g173461 +S'paint' +p173463 +tp173464 +a(g173461 +g173463 +S'the' +p173465 +tp173466 +a(g173463 +g173465 +S'seine.' +p173467 +tp173468 +a(g173465 +g173467 +S'its' +p173469 +tp173470 +a(g173467 +g173469 +S'flower-strewn' +p173471 +tp173472 +a(g173469 +g173471 +S'banks' +p173473 +tp173474 +a(g173471 +g173473 +S'and' +p173475 +tp173476 +a(g173473 +g173475 +S'watery' +p173477 +tp173478 +a(g173475 +g173477 +S'reflections' +p173479 +tp173480 +a(g173477 +g173479 +S'appear' +p173481 +tp173482 +a(g173479 +g173481 +S'in' +p173483 +tp173484 +a(g173481 +g173483 +S'six' +p173485 +tp173486 +a(g173483 +g173485 +S'of' +p173487 +tp173488 +a(g173485 +g173487 +S'his' +p173489 +tp173490 +a(g173487 +g173489 +S'paintings' +p173491 +tp173492 +a(g173489 +g173491 +S'in' +p173493 +tp173494 +a(g173491 +g173493 +S'the' +p173495 +tp173496 +a(g173493 +g173495 +S'national' +p173497 +tp173498 +a(g173495 +g173497 +S'gallery' +p173499 +tp173500 +a(g173497 +g173499 +S'of' +p173501 +tp173502 +a(g173499 +g173501 +S'art.' +p173503 +tp173504 +a(g173501 +g173503 +S'in' +p173505 +tp173506 +a(g173503 +g173505 +S'1896,' +p173507 +tp173508 +a(g173505 +g173507 +S'though,' +p173509 +tp173510 +a(g173507 +g173509 +S'he' +p173511 +tp173512 +a(g173509 +g173511 +S'began' +p173513 +tp173514 +a(g173511 +g173513 +S'a' +p173515 +tp173516 +a(g173513 +g173515 +S'more' +p173517 +tp173518 +a(g173515 +g173517 +S'systematic' +p173519 +tp173520 +a(g173517 +g173519 +S'study' +p173521 +tp173522 +a(g173519 +g173521 +S'of' +p173523 +tp173524 +a(g173521 +g173523 +S'the' +p173525 +tp173526 +a(g173523 +g173525 +S'river' +p173527 +tp173528 +a(g173525 +g173527 +S'near' +p173529 +tp173530 +a(g173527 +g173529 +S'his' +p173531 +tp173532 +a(g173529 +g173531 +S'home' +p173533 +tp173534 +a(g173531 +g173533 +S'at' +p173535 +tp173536 +a(g173533 +g173535 +S'giverny,' +p173537 +tp173538 +a(g173535 +g173537 +S'where' +p173539 +tp173540 +a(g173537 +g173539 +S'he' +p173541 +tp173542 +a(g173539 +g173541 +S'moved' +p173543 +tp173544 +a(g173541 +g173543 +S'in' +p173545 +tp173546 +a(g173543 +g173545 +S'1883.' +p173547 +tp173548 +a(g173545 +g173547 +S'lured' +p173549 +tp173550 +a(g173547 +g173549 +S'by' +p173551 +tp173552 +a(g173549 +g173551 +S'the' +p173553 +tp173554 +a(g173551 +g173553 +S'lifting' +p173555 +tp173556 +a(g173553 +g173555 +S'haze' +p173557 +tp173558 +a(g173555 +g173557 +S'and' +p173559 +tp173560 +a(g173557 +g173559 +S'quickly' +p173561 +tp173562 +a(g173559 +g173561 +S'changing' +p173563 +tp173564 +a(g173561 +g173563 +S'light' +p173565 +tp173566 +a(g173563 +g173565 +S'of' +p173567 +tp173568 +a(g173565 +g173567 +S'early' +p173569 +tp173570 +a(g173567 +g173569 +S'morning,' +p173571 +tp173572 +a(g173569 +g173571 +S'he' +p173573 +tp173574 +a(g173571 +g173573 +S'often' +p173575 +tp173576 +a(g173573 +g173575 +S'rose' +p173577 +tp173578 +a(g173575 +g173577 +S'before' +p173579 +tp173580 +a(g173577 +g173579 +S'sunrise—at' +p173581 +tp173582 +a(g173579 +g173581 +S'3:30' +p173583 +tp173584 +a(g173581 +g173583 +S'a.m.—to' +p173585 +tp173586 +a(g173583 +g173585 +S'be' +p173587 +tp173588 +a(g173585 +g173587 +S'at' +p173589 +tp173590 +a(g173587 +g173589 +S'his' +p173591 +tp173592 +a(g173589 +g173591 +S'easel' +p173593 +tp173594 +a(g173591 +g173593 +S'by' +p173595 +tp173596 +a(g173593 +g173595 +S'dawn.' +p173597 +tp173598 +a(g173595 +g173597 +S'he' +p173599 +tp173600 +a(g173597 +g173599 +S'worked' +p173601 +tp173602 +a(g173599 +g173601 +S'from' +p173603 +tp173604 +a(g173601 +g173603 +S'a' +p173605 +tp173606 +a(g173603 +g173605 +S'flat-bottomed' +p173607 +tp173608 +a(g173605 +g173607 +S'boat' +p173609 +tp173610 +a(g173607 +g173609 +S'tied' +p173611 +tp173612 +a(g173609 +g173611 +S'up' +p173613 +tp173614 +a(g173611 +g173613 +S'near' +p173615 +tp173616 +a(g173613 +g173615 +S'the' +p173617 +tp173618 +a(g173615 +g173617 +S'bank.' +p173619 +tp173620 +a(g173617 +g173619 +S'but,' +p173621 +tp173622 +a(g173619 +g173621 +S'as' +p173623 +tp173624 +a(g173621 +g173623 +S'with' +p173625 +tp173626 +a(g173623 +g173625 +S'his' +p173627 +tp173628 +a(g173625 +g173627 +S'other' +p173629 +tp173630 +a(g173627 +g173629 +S'series' +p173631 +tp173632 +a(g173629 +g173631 +S'paintings,' +p173633 +tp173634 +a(g173631 +g173633 +S'monet' +p173635 +tp173636 +a(g173633 +g173635 +S'only' +p173637 +tp173638 +a(g173635 +g173637 +S'began' +p173639 +tp173640 +a(g173637 +g173639 +S'the' +p173641 +tp173642 +a(g173639 +g173641 +S'pictures' +p173643 +tp173644 +a(g173641 +g173643 +S'outdoors,' +p173645 +tp173646 +a(g173643 +g173645 +S'elaborating' +p173647 +tp173648 +a(g173645 +g173647 +S'them' +p173649 +tp173650 +a(g173647 +g173649 +S'over' +p173651 +tp173652 +a(g173649 +g173651 +S'a' +p173653 +tp173654 +a(g173651 +g173653 +S'period' +p173655 +tp173656 +a(g173653 +g173655 +S'of' +p173657 +tp173658 +a(g173655 +g173657 +S'months' +p173659 +tp173660 +a(g173657 +g173659 +S'in' +p173661 +tp173662 +a(g173659 +g173661 +S'his' +p173663 +tp173664 +a(g173661 +g173663 +S'studio,' +p173665 +tp173666 +a(g173663 +g173665 +S'taking' +p173667 +tp173668 +a(g173665 +g173667 +S'special' +p173669 +tp173670 +a(g173667 +g173669 +S'pains' +p173671 +tp173672 +a(g173669 +g173671 +S'to' +p173673 +tp173674 +a(g173671 +g173673 +S'adjust' +p173675 +tp173676 +a(g173673 +g173675 +S'their' +p173677 +tp173678 +a(g173675 +g173677 +S'light.' +p173679 +tp173680 +a(g173677 +g173679 +S'these' +p173681 +tp173682 +a(g173679 +g173681 +S'paintings,' +p173683 +tp173684 +a(g173681 +g173683 +S'more' +p173685 +tp173686 +a(g173683 +g173685 +S'precisely' +p173687 +tp173688 +a(g173685 +g173687 +S'than' +p173689 +tp173690 +a(g173687 +g173689 +S'his' +p173691 +tp173692 +a(g173689 +g173691 +S'other' +p173693 +tp173694 +a(g173691 +g173693 +S'series' +p173695 +tp173696 +a(g173693 +g173695 +S'pictures,' +p173697 +tp173698 +a(g173695 +g173697 +S'show' +p173699 +tp173700 +a(g173697 +g173699 +S'the' +p173701 +tp173702 +a(g173699 +g173701 +S'progression' +p173703 +tp173704 +a(g173701 +g173703 +S'of' +p173705 +tp173706 +a(g173703 +g173705 +S'time' +p173707 +tp173708 +a(g173705 +g173707 +S'and' +p173709 +tp173710 +a(g173707 +g173709 +S'the' +p173711 +tp173712 +a(g173709 +g173711 +S'subtle' +p173713 +tp173714 +a(g173711 +g173713 +S'changes' +p173715 +tp173716 +a(g173713 +g173715 +S'in' +p173717 +tp173718 +a(g173715 +g173717 +S'light' +p173719 +tp173720 +a(g173717 +g173719 +S'as' +p173721 +tp173722 +a(g173719 +g173721 +S'hours,' +p173723 +tp173724 +a(g173721 +g173723 +S'even' +p173725 +tp173726 +a(g173723 +g173725 +S'minutes,' +p173727 +tp173728 +a(g173725 +g173727 +S'pass.' +p173729 +tp173730 +a(g173727 +g173729 +S'this' +p173731 +tp173732 +a(g173729 +g173731 +S'painting' +p173733 +tp173734 +a(g173731 +g173733 +S'is' +p173735 +tp173736 +a(g173733 +g173735 +S'related' +p173737 +tp173738 +a(g173735 +g173737 +S'to' +p173739 +tp173740 +a(g173737 +g173739 +S'the' +p173741 +tp173742 +a(g173739 +g173741 +S'early' +p173743 +tp173744 +a(g173741 +g173743 +S'morning' +p173745 +tp173746 +a(g173743 +g173745 +S'series,' +p173747 +tp173748 +a(g173745 +g173747 +S'but' +p173749 +tp173750 +a(g173747 +g173749 +S'is' +p173751 +tp173752 +a(g173749 +g173751 +S'even' +p173753 +tp173754 +a(g173751 +g173753 +S'less' +p173755 +tp173756 +a(g173753 +g173755 +S'defined.' +p173757 +tp173758 +a(g173755 +g173757 +S'the' +p173759 +tp173760 +a(g173757 +g173759 +S'paint' +p173761 +tp173762 +a(g173759 +g173761 +S'here,' +p173763 +tp173764 +a(g173761 +g173763 +S'although' +p173765 +tp173766 +a(g173763 +g173765 +S'it' +p173767 +tp173768 +a(g173765 +g173767 +S'is' +p173769 +tp173770 +a(g173767 +g173769 +S'often' +p173771 +tp173772 +a(g173769 +g173771 +S'thickly' +p173773 +tp173774 +a(g173771 +g173773 +S'applied' +p173775 +tp173776 +a(g173773 +g173775 +S'on' +p173777 +tp173778 +a(g173775 +g173777 +S'the' +p173779 +tp173780 +a(g173777 +g173779 +S'canvas,' +p173781 +tp173782 +a(g173779 +g173781 +S'gives' +p173783 +tp173784 +a(g173781 +g173783 +S'the' +p173785 +tp173786 +a(g173783 +g173785 +S'impression' +p173787 +tp173788 +a(g173785 +g173787 +S'of' +p173789 +tp173790 +a(g173787 +g173789 +S'transparency,' +p173791 +tp173792 +a(g173789 +g173791 +S'like' +p173793 +tp173794 +a(g173791 +g173793 +S'thin' +p173795 +tp173796 +a(g173793 +g173795 +S'veils' +p173797 +tp173798 +a(g173795 +g173797 +S'of' +p173799 +tp173800 +a(g173797 +g173799 +S'mist.' +p173801 +tp173802 +a(g173799 +g173801 +S'this' +p173803 +tp173804 +a(g173801 +g173803 +S'with' +p173805 +tp173806 +a(g173803 +g173805 +S'their' +p173807 +tp173808 +a(g173805 +g173807 +S'smokestacks,' +p173809 +tp173810 +a(g173807 +g173809 +S'barge' +p173811 +tp173812 +a(g173809 +g173811 +S'traffic,' +p173813 +tp173814 +a(g173811 +g173813 +S'and' +p173815 +tp173816 +a(g173813 +g173815 +S'busy' +p173817 +tp173818 +a(g173815 +g173817 +S'bridges,' +p173819 +tp173820 +a(g173817 +g173819 +S"monet's" +p173821 +tp173822 +a(g173819 +g173821 +S'london' +p173823 +tp173824 +a(g173821 +g173823 +S'paintings' +p173825 +tp173826 +a(g173823 +g173825 +S'were' +p173827 +tp173828 +a(g173825 +g173827 +S'emphatically' +p173829 +tp173830 +a(g173827 +g173829 +S'urban—the' +p173831 +tp173832 +a(g173829 +g173831 +S'only' +p173833 +tp173834 +a(g173831 +g173833 +S'urban' +p173835 +tp173836 +a(g173833 +g173835 +S'subjects' +p173837 +tp173838 +a(g173835 +g173837 +S'he' +p173839 +tp173840 +a(g173837 +g173839 +S'painted' +p173841 +tp173842 +a(g173839 +g173841 +S'after' +p173843 +tp173844 +a(g173841 +g173843 +S'the' +p173845 +tp173846 +a(g173843 +g173845 +S'1870s.' +p173847 +tp173848 +a(g173845 +g173847 +S'after' +p173849 +tp173850 +a(g173847 +g173849 +S'returning' +p173851 +tp173852 +a(g173849 +g173851 +S'to' +p173853 +tp173854 +a(g173851 +g173853 +S'france' +p173855 +tp173856 +a(g173853 +g173855 +S'following' +p173857 +tp173858 +a(g173855 +g173857 +S'the' +p173859 +tp173860 +a(g173857 +g173859 +S'franco-prussian' +p173861 +tp173862 +a(g173859 +g173861 +S'war,' +p173863 +tp173864 +a(g173861 +g173863 +S'he' +p173865 +tp173866 +a(g173863 +g173865 +S'moved' +p173867 +tp173868 +a(g173865 +g173867 +S'from' +p173869 +tp173870 +a(g173867 +g173869 +S'paris,' +p173871 +tp173872 +a(g173869 +g173871 +S'preferring' +p173873 +tp173874 +a(g173871 +g173873 +S'to' +p173875 +tp173876 +a(g173873 +g173875 +S'live' +p173877 +tp173878 +a(g173875 +g173877 +S'nearer' +p173879 +tp173880 +a(g173877 +g173879 +S'the' +p173881 +tp173882 +a(g173879 +g173881 +S'countryside.' +p173883 +tp173884 +a(g173881 +g173883 +S'his' +p173885 +tp173886 +a(g173883 +g173885 +S'interest' +p173887 +tp173888 +a(g173885 +g173887 +S'in' +p173889 +tp173890 +a(g173887 +g173889 +S'london' +p173891 +tp173892 +a(g173889 +g173891 +S'and' +p173893 +tp173894 +a(g173891 +g173893 +S'its' +p173895 +tp173896 +a(g173893 +g173895 +S'light-filtering' +p173897 +tp173898 +a(g173895 +g173897 +S'fog' +p173899 +tp173900 +a(g173897 +g173899 +S'may' +p173901 +tp173902 +a(g173899 +g173901 +S'have' +p173903 +tp173904 +a(g173901 +g173903 +S'been' +p173905 +tp173906 +a(g173903 +g173905 +S'spurred' +p173907 +tp173908 +a(g173905 +g173907 +S'by' +p173909 +tp173910 +a(g173907 +g173909 +S'admiration' +p173911 +tp173912 +a(g173909 +g173911 +S'for' +p173913 +tp173914 +a(g173911 +g173913 +S'the' +p173915 +tp173916 +a(g173913 +g173915 +S'english' +p173917 +tp173918 +a(g173915 +g173917 +S'artist' +p173919 +tp173920 +a(g173917 +g173919 +S'like' +p173921 +tp173922 +a(g173919 +g173921 +S'whistler,' +p173923 +tp173924 +a(g173921 +g173923 +S'most' +p173925 +tp173926 +a(g173923 +g173925 +S'artists' +p173927 +tp173928 +a(g173925 +g173927 +S'used' +p173929 +tp173930 +a(g173927 +g173929 +S'a' +p173931 +tp173932 +a(g173929 +g173931 +S'subdued' +p173933 +tp173934 +a(g173931 +g173933 +S'palette' +p173935 +tp173936 +a(g173933 +g173935 +S'and' +p173937 +tp173938 +a(g173935 +g173937 +S'a' +p173939 +tp173940 +a(g173937 +g173939 +S'limited' +p173941 +tp173942 +a(g173939 +g173941 +S'range' +p173943 +tp173944 +a(g173941 +g173943 +S'of' +p173945 +tp173946 +a(g173943 +g173945 +S'colors' +p173947 +tp173948 +a(g173945 +g173947 +S'to' +p173949 +tp173950 +a(g173947 +g173949 +S'reproduce' +p173951 +tp173952 +a(g173949 +g173951 +S'the' +p173953 +tp173954 +a(g173951 +g173953 +S'grayness' +p173955 +tp173956 +a(g173953 +g173955 +S'of' +p173957 +tp173958 +a(g173955 +g173957 +S'the' +p173959 +tp173960 +a(g173957 +g173959 +S'city.' +p173961 +tp173962 +a(g173959 +g173961 +S"monet's" +p173963 +tp173964 +a(g173961 +g173963 +S'london' +p173965 +tp173966 +a(g173963 +g173965 +S'paintings' +p173967 +tp173968 +a(g173965 +g173967 +S'are' +p173969 +tp173970 +a(g173967 +g173969 +S'quite' +p173971 +tp173972 +a(g173969 +g173971 +S'different.' +p173973 +tp173974 +a(g173971 +g173973 +S'even' +p173975 +tp173976 +a(g173973 +g173975 +S'in' +p173977 +tp173978 +a(g173975 +g173977 +S'these' +p173979 +tp173980 +a(g173977 +g173979 +S'subjects' +p173981 +tp173982 +a(g173979 +g173981 +S'dulled' +p173983 +tp173984 +a(g173981 +g173983 +S'by' +p173985 +tp173986 +a(g173983 +g173985 +S'fog' +p173987 +tp173988 +a(g173985 +g173987 +S'and' +p173989 +tp173990 +a(g173987 +g173989 +S'coal' +p173991 +tp173992 +a(g173989 +g173991 +S'dust,' +p173993 +tp173994 +a(g173991 +g173993 +S'he' +p173995 +tp173996 +a(g173993 +g173995 +S'perceived' +p173997 +tp173998 +a(g173995 +g173997 +S'color' +p173999 +tp174000 +a(g173997 +g173999 +S'in' +p174001 +tp174002 +a(g173999 +g174001 +S'every' +p174003 +tp174004 +a(g174001 +g174003 +S'form.' +p174005 +tp174006 +a(g174003 +g174005 +S'drifting' +p174007 +tp174008 +a(g174005 +g174007 +S'mists' +p174009 +tp174010 +a(g174007 +g174009 +S'are' +p174011 +tp174012 +a(g174009 +g174011 +S'painted' +p174013 +tp174014 +a(g174011 +g174013 +S'with' +p174015 +tp174016 +a(g174013 +g174015 +S'delicate' +p174017 +tp174018 +a(g174015 +g174017 +S'shades' +p174019 +tp174020 +a(g174017 +g174019 +S'of' +p174021 +tp174022 +a(g174019 +g174021 +S'lilac' +p174023 +tp174024 +a(g174021 +g174023 +S'and' +p174025 +tp174026 +a(g174023 +g174025 +S'pink,' +p174027 +tp174028 +a(g174025 +g174027 +S'and' +p174029 +tp174030 +a(g174027 +g174029 +S'the' +p174031 +tp174032 +a(g174029 +g174031 +S'sky' +p174033 +tp174034 +a(g174031 +g174033 +S'is' +p174035 +tp174036 +a(g174033 +g174035 +S'tinged' +p174037 +tp174038 +a(g174035 +g174037 +S'with' +p174039 +tp174040 +a(g174037 +g174039 +S'pale' +p174041 +tp174042 +a(g174039 +g174041 +S'olive.' +p174043 +tp174044 +a(g174041 +g174043 +S'the' +p174045 +tp174046 +a(g174043 +g174045 +S'shaded' +p174047 +tp174048 +a(g174045 +g174047 +S'arches' +p174049 +tp174050 +a(g174047 +g174049 +S'of' +p174051 +tp174052 +a(g174049 +g174051 +S'the' +p174053 +tp174054 +a(g174051 +g174053 +S'bridge' +p174055 +tp174056 +a(g174053 +g174055 +S'are' +p174057 +tp174058 +a(g174055 +g174057 +S'darkened' +p174059 +tp174060 +a(g174057 +g174059 +S'with' +p174061 +tp174062 +a(g174059 +g174061 +S'blues,' +p174063 +tp174064 +a(g174061 +g174063 +S'not' +p174065 +tp174066 +a(g174063 +g174065 +S'black,' +p174067 +tp174068 +a(g174065 +g174067 +S'and' +p174069 +tp174070 +a(g174067 +g174069 +S'its' +p174071 +tp174072 +a(g174069 +g174071 +S'traffic' +p174073 +tp174074 +a(g174071 +g174073 +S'is' +p174075 +tp174076 +a(g174073 +g174075 +S'highlighted' +p174077 +tp174078 +a(g174075 +g174077 +S'with' +p174079 +tp174080 +a(g174077 +g174079 +S'brilliant' +p174081 +tp174082 +a(g174079 +g174081 +S'flecks' +p174083 +tp174084 +a(g174081 +g174083 +S'of' +p174085 +tp174086 +a(g174083 +g174085 +S'scarlet.' +p174087 +tp174088 +a(g174085 +g174087 +S'in' +p174089 +tp174090 +a(g174087 +g174089 +S'an' +p174091 +tp174092 +a(g174089 +g174091 +S'1876' +p174093 +tp174094 +a(g174091 +g174093 +S'review,' +p174095 +tp174096 +a(g174093 +g174095 +S'a' +p174097 +tp174098 +a(g174095 +g174097 +S'sarcastic' +p174099 +tp174100 +a(g174097 +g174099 +S'critic' +p174101 +tp174102 +a(g174099 +g174101 +S'referred' +p174103 +tp174104 +a(g174101 +g174103 +S'to' +p174105 +tp174106 +a(g174103 +g174105 +S'participants' +p174107 +tp174108 +a(g174105 +g174107 +S'in' +p174109 +tp174110 +a(g174107 +g174109 +S'the' +p174111 +tp174112 +a(g174109 +g174111 +S'second' +p174113 +tp174114 +a(g174111 +g174113 +S'impressionist' +p174115 +tp174116 +a(g174113 +g174115 +S'exhibition' +p174117 +tp174118 +a(g174115 +g174117 +S'as' +p174119 +tp174120 +a(g174117 +g174119 +S'"five' +p174121 +tp174122 +a(g174119 +g174121 +S'or' +p174123 +tp174124 +a(g174121 +g174123 +S'six' +p174125 +tp174126 +a(g174123 +g174125 +S'lunatics—among' +p174127 +tp174128 +a(g174125 +g174127 +S'them' +p174129 +tp174130 +a(g174127 +g174129 +S'a' +p174131 +tp174132 +a(g174129 +g174131 +S'woman—a' +p174133 +tp174134 +a(g174131 +g174133 +S'group' +p174135 +tp174136 +a(g174133 +g174135 +S'of' +p174137 +tp174138 +a(g174135 +g174137 +S'unfortunate' +p174139 +tp174140 +a(g174137 +g174139 +S'creatures."' +p174141 +tp174142 +a(g174139 +g174141 +S'berthe' +p174143 +tp174144 +a(g174141 +g174143 +S'morisot' +p174145 +tp174146 +a(g174143 +g174145 +S'is' +p174147 +tp174148 +a(g174145 +g174147 +S'the' +p174149 +tp174150 +a(g174147 +g174149 +S'woman' +p174151 +tp174152 +a(g174149 +g174151 +S'to' +p174153 +tp174154 +a(g174151 +g174153 +S'whom' +p174155 +tp174156 +a(g174153 +g174155 +S'he' +p174157 +tp174158 +a(g174155 +g174157 +S'alluded.' +p174159 +tp174160 +a(g174157 +g174159 +S'morisot,' +p174161 +tp174162 +a(g174159 +g174161 +S'an' +p174163 +tp174164 +a(g174161 +g174163 +S'original' +p174165 +tp174166 +a(g174163 +g174165 +S'member' +p174167 +tp174168 +a(g174165 +g174167 +S'of' +p174169 +tp174170 +a(g174167 +g174169 +S'the' +p174171 +tp174172 +a(g174169 +g174171 +S'group,' +p174173 +tp174174 +a(g174171 +g174173 +S'showed' +p174175 +tp174176 +a(g174173 +g174175 +S'in' +p174177 +tp174178 +a(g174175 +g174177 +S'seven' +p174179 +tp174180 +a(g174177 +g174179 +S'of' +p174181 +tp174182 +a(g174179 +g174181 +S'its' +p174183 +tp174184 +a(g174181 +g174183 +S'eight' +p174185 +tp174186 +a(g174183 +g174185 +S'exhibitions' +p174187 +tp174188 +a(g174185 +g174187 +S'and' +p174189 +tp174190 +a(g174187 +g174189 +S'contributed' +p174191 +tp174192 +a(g174189 +g174191 +S'financially' +p174193 +tp174194 +a(g174191 +g174193 +S'to' +p174195 +tp174196 +a(g174193 +g174195 +S'sustain' +p174197 +tp174198 +a(g174195 +g174197 +S'the' +p174199 +tp174200 +a(g174197 +g174199 +S'impressionist' +p174201 +tp174202 +a(g174199 +g174201 +S'movement.' +p174203 +tp174204 +a(g174201 +g174203 +S'the' +p174205 +tp174206 +a(g174203 +g174205 +S'painting,' +p174207 +tp174208 +a(g174205 +g174207 +S'a' +p174209 +tp174210 +a(g174207 +g174209 +S'family' +p174211 +tp174212 +a(g174209 +g174211 +S'portrait' +p174213 +tp174214 +a(g174211 +g174213 +S'and' +p174215 +tp174216 +a(g174213 +g174215 +S'an' +p174217 +tp174218 +a(g174215 +g174217 +S'intimate' +p174219 +tp174220 +a(g174217 +g174219 +S'domestic' +p174221 +tp174222 +a(g174219 +g174221 +S'genre' +p174223 +tp174224 +a(g174221 +g174223 +S'scene,' +p174225 +tp174226 +a(g174223 +g174225 +S'was' +p174227 +tp174228 +a(g174225 +g174227 +S'begun' +p174229 +tp174230 +a(g174227 +g174229 +S'when' +p174231 +tp174232 +a(g174229 +g174231 +S"morisot's" +p174233 +tp174234 +a(g174231 +g174233 +S'sister' +p174235 +tp174236 +a(g174233 +g174235 +S'edma' +p174237 +tp174238 +a(g174235 +g174237 +S'pontillon' +p174239 +tp174240 +a(g174237 +g174239 +S'stayed' +p174241 +tp174242 +a(g174239 +g174241 +S'with' +p174243 +tp174244 +a(g174241 +g174243 +S'her' +p174245 +tp174246 +a(g174243 +g174245 +S'family' +p174247 +tp174248 +a(g174245 +g174247 +S'in' +p174249 +tp174250 +a(g174247 +g174249 +S'the' +p174251 +tp174252 +a(g174249 +g174251 +S'winter' +p174253 +tp174254 +a(g174251 +g174253 +S'of' +p174255 +tp174256 +a(g174253 +g174255 +S'1869–1870' +p174257 +tp174258 +a(g174255 +g174257 +S'to' +p174259 +tp174260 +a(g174257 +g174259 +S'await' +p174261 +tp174262 +a(g174259 +g174261 +S'the' +p174263 +tp174264 +a(g174261 +g174263 +S'birth' +p174265 +tp174266 +a(g174263 +g174265 +S'of' +p174267 +tp174268 +a(g174265 +g174267 +S'her' +p174269 +tp174270 +a(g174267 +g174269 +S'first' +p174271 +tp174272 +a(g174269 +g174271 +S'child,' +p174273 +tp174274 +a(g174271 +g174273 +S'a' +p174275 +tp174276 +a(g174273 +g174275 +S'pregnancy' +p174277 +tp174278 +a(g174275 +g174277 +S'discreetly' +p174279 +tp174280 +a(g174277 +g174279 +S'disguised' +p174281 +tp174282 +a(g174279 +g174281 +S'by' +p174283 +tp174284 +a(g174281 +g174283 +S"edma's" +p174285 +tp174286 +a(g174283 +g174285 +S'loose' +p174287 +tp174288 +a(g174285 +g174287 +S'white' +p174289 +tp174290 +a(g174287 +g174289 +S'morning' +p174291 +tp174292 +a(g174289 +g174291 +S'robe.' +p174293 +tp174294 +a(g174291 +g174293 +S'anxious' +p174295 +tp174296 +a(g174293 +g174295 +S'about' +p174297 +tp174298 +a(g174295 +g174297 +S'sending' +p174299 +tp174300 +a(g174297 +g174299 +S'the' +p174301 +tp174302 +a(g174299 +g174301 +S'painting' +p174303 +tp174304 +a(g174301 +g174303 +S'to' +p174305 +tp174306 +a(g174303 +g174305 +S'the' +p174307 +tp174308 +a(g174305 +g174307 +S'salon,' +p174309 +tp174310 +a(g174307 +g174309 +S'morisot' +p174311 +tp174312 +a(g174309 +g174311 +S'solicited' +p174313 +tp174314 +a(g174311 +g174313 +S"manet's" +p174315 +tp174316 +a(g174313 +g174315 +S'advice,' +p174317 +tp174318 +a(g174315 +g174317 +S'and' +p174319 +tp174320 +a(g174317 +g174319 +S'on' +p174321 +tp174322 +a(g174319 +g174321 +S'the' +p174323 +tp174324 +a(g174321 +g174323 +S'last' +p174325 +tp174326 +a(g174323 +g174325 +S'day' +p174327 +tp174328 +a(g174325 +g174327 +S'for' +p174329 +tp174330 +a(g174327 +g174329 +S'submissions' +p174331 +tp174332 +a(g174329 +g174331 +S'he' +p174333 +tp174334 +a(g174331 +g174333 +S'visited' +p174335 +tp174336 +a(g174333 +g174335 +S'the' +p174337 +tp174338 +a(g174335 +g174337 +S'morisot' +p174339 +tp174340 +a(g174337 +g174339 +S'home.' +p174341 +tp174342 +a(g174339 +g174341 +S"morisot's" +p174343 +tp174344 +a(g174341 +g174343 +S'correspondence' +p174345 +tp174346 +a(g174343 +g174345 +S'reveals' +p174347 +tp174348 +a(g174345 +g174347 +S'that,' +p174349 +tp174350 +a(g174347 +g174349 +S'rather' +p174351 +tp174352 +a(g174349 +g174351 +S'than' +p174353 +tp174354 +a(g174351 +g174353 +S'offer' +p174355 +tp174356 +a(g174353 +g174355 +S'verbal' +p174357 +tp174358 +a(g174355 +g174357 +S'suggestions,' +p174359 +tp174360 +a(g174357 +g174359 +S'manet' +p174361 +tp174362 +a(g174359 +g174361 +S'extensively' +p174363 +tp174364 +a(g174361 +g174363 +S'repainted' +p174365 +tp174366 +a(g174363 +g174365 +S'the' +p174367 +tp174368 +a(g174365 +g174367 +S'figure' +p174369 +tp174370 +a(g174367 +g174369 +S'of' +p174371 +tp174372 +a(g174369 +g174371 +S'the' +p174373 +tp174374 +a(g174371 +g174373 +S"artist's" +p174375 +tp174376 +a(g174373 +g174375 +S'mother.' +p174377 +tp174378 +a(g174375 +g174377 +S"manet's" +p174379 +tp174380 +a(g174377 +g174379 +S'suave' +p174381 +tp174382 +a(g174379 +g174381 +S'shorthand,' +p174383 +tp174384 +a(g174381 +g174383 +S'seen' +p174385 +tp174386 +a(g174383 +g174385 +S'in' +p174387 +tp174388 +a(g174385 +g174387 +S'the' +p174389 +tp174390 +a(g174387 +g174389 +S"mother's" +p174391 +tp174392 +a(g174389 +g174391 +S'features' +p174393 +tp174394 +a(g174391 +g174393 +S'and' +p174395 +tp174396 +a(g174393 +g174395 +S'black' +p174397 +tp174398 +a(g174395 +g174397 +S'dress,' +p174399 +tp174400 +a(g174397 +g174399 +S'differs' +p174401 +tp174402 +a(g174399 +g174401 +S'obviously' +p174403 +tp174404 +a(g174401 +g174403 +S'from' +p174405 +tp174406 +a(g174403 +g174405 +S'the' +p174407 +tp174408 +a(g174405 +g174407 +S'nervous' +p174409 +tp174410 +a(g174407 +g174409 +S'refinement' +p174411 +tp174412 +a(g174409 +g174411 +S'of' +p174413 +tp174414 +a(g174411 +g174413 +S"morisot's" +p174415 +tp174416 +a(g174413 +g174415 +S'touch' +p174417 +tp174418 +a(g174415 +g174417 +S'in' +p174419 +tp174420 +a(g174417 +g174419 +S'her' +p174421 +tp174422 +a(g174419 +g174421 +S"sister's" +p174423 +tp174424 +a(g174421 +g174423 +S'features,' +p174425 +tp174426 +a(g174423 +g174425 +S'the' +p174427 +tp174428 +a(g174425 +g174427 +S'floral' +p174429 +tp174430 +a(g174427 +g174429 +S'upholstery,' +p174431 +tp174432 +a(g174429 +g174431 +S'and' +p174433 +tp174434 +a(g174431 +g174433 +S'the' +p174435 +tp174436 +a(g174433 +g174435 +S'reflections' +p174437 +tp174438 +a(g174435 +g174437 +S'in' +p174439 +tp174440 +a(g174437 +g174439 +S'the' +p174441 +tp174442 +a(g174439 +g174441 +S'mirror' +p174443 +tp174444 +a(g174441 +g174443 +S'over' +p174445 +tp174446 +a(g174443 +g174445 +S"edma's" +p174447 +tp174448 +a(g174445 +g174447 +S'head.' +p174449 +tp174450 +a(g174447 +g174449 +S'from' +p174451 +tp174452 +a(g174449 +g174451 +S'late' +p174453 +tp174454 +a(g174451 +g174453 +S'1904' +p174455 +tp174456 +a(g174453 +g174455 +S'to' +p174457 +tp174458 +a(g174455 +g174457 +S'the' +p174459 +tp174460 +a(g174457 +g174459 +S'beginning' +p174461 +tp174462 +a(g174459 +g174461 +S'of' +p174463 +tp174464 +a(g174461 +g174463 +S'1906,' +p174465 +tp174466 +a(g174463 +g174465 +S"picasso's" +p174467 +tp174468 +a(g174465 +g174467 +S'work' +p174469 +tp174470 +a(g174467 +g174469 +S'centered' +p174471 +tp174472 +a(g174469 +g174471 +S'on' +p174473 +tp174474 +a(g174471 +g174473 +S'a' +p174475 +tp174476 +a(g174473 +g174475 +S'single' +p174477 +tp174478 +a(g174475 +g174477 +S'theme:' +p174479 +tp174480 +a(g174477 +g174479 +S'the' +p174481 +tp174482 +a(g174479 +g174481 +S'circus' +p174483 +tp174484 +a(g174481 +g174483 +S'performers' +p174485 +tp174486 +a(g174483 +g174485 +S'were' +p174487 +tp174488 +a(g174485 +g174487 +S'regarded' +p174489 +tp174490 +a(g174487 +g174489 +S'as' +p174491 +tp174492 +a(g174489 +g174491 +S'social' +p174493 +tp174494 +a(g174491 +g174493 +S'outsiders,' +p174495 +tp174496 +a(g174493 +g174495 +S'poor' +p174497 +tp174498 +a(g174495 +g174497 +S'but' +p174499 +tp174500 +a(g174497 +g174499 +S'independent.' +p174501 +tp174502 +a(g174499 +g174501 +S'as' +p174503 +tp174504 +a(g174501 +g174503 +S'such,' +p174505 +tp174506 +a(g174503 +g174505 +S'they' +p174507 +tp174508 +a(g174505 +g174507 +S'provided' +p174509 +tp174510 +a(g174507 +g174509 +S'a' +p174511 +tp174512 +a(g174509 +g174511 +S'telling' +p174513 +tp174514 +a(g174511 +g174513 +S'symbol' +p174515 +tp174516 +a(g174513 +g174515 +S'for' +p174517 +tp174518 +a(g174515 +g174517 +S'the' +p174519 +tp174520 +a(g174517 +g174519 +S'alienation' +p174521 +tp174522 +a(g174519 +g174521 +S'of' +p174523 +tp174524 +a(g174521 +g174523 +S'avant-garde' +p174525 +tp174526 +a(g174523 +g174525 +S'artists' +p174527 +tp174528 +a(g174525 +g174527 +S'such' +p174529 +tp174530 +a(g174527 +g174529 +S'as' +p174531 +tp174532 +a(g174529 +g174531 +S'picasso.' +p174533 +tp174534 +a(g174531 +g174533 +S'indeed,' +p174535 +tp174536 +a(g174533 +g174535 +S'it' +p174537 +tp174538 +a(g174535 +g174537 +S'has' +p174539 +tp174540 +a(g174537 +g174539 +S'been' +p174541 +tp174542 +a(g174539 +g174541 +S'suggested' +p174543 +tp174544 +a(g174541 +g174543 +S'that' +p174545 +tp174546 +a(g174543 +g174545 +S'the' +p174547 +tp174548 +a(g174545 +g174547 +S'picasso' +p174549 +tp174550 +a(g174547 +g174549 +S'reworked' +p174551 +tp174552 +a(g174549 +g174551 +S'the' +p174553 +tp174554 +a(g174551 +g174553 +S'renoir' +p174555 +tp174556 +a(g174553 +g174555 +S'wrote' +p174557 +tp174558 +a(g174555 +g174557 +S'that' +p174559 +tp174560 +a(g174557 +g174559 +S'he' +p174561 +tp174562 +a(g174559 +g174561 +S'had' +p174563 +tp174564 +a(g174561 +g174563 +S'produced' +p174565 +tp174566 +a(g174563 +g174565 +S'this' +p174567 +tp174568 +a(g174565 +g174567 +S'painting' +p174569 +tp174570 +a(g174567 +g174569 +S'as' +p174571 +tp174572 +a(g174569 +g174571 +S'a' +p174573 +tp174574 +a(g174571 +g174573 +S'study' +p174575 +tp174576 +a(g174573 +g174575 +S'of' +p174577 +tp174578 +a(g174575 +g174577 +S'a' +p174579 +tp174580 +a(g174577 +g174579 +S'nude,' +p174581 +tp174582 +a(g174579 +g174581 +S'the' +p174583 +tp174584 +a(g174581 +g174583 +S'sort' +p174585 +tp174586 +a(g174583 +g174585 +S'of' +p174587 +tp174588 +a(g174585 +g174587 +S'exercise' +p174589 +tp174590 +a(g174587 +g174589 +S'that' +p174591 +tp174592 +a(g174589 +g174591 +S'was' +p174593 +tp174594 +a(g174591 +g174593 +S'a' +p174595 +tp174596 +a(g174593 +g174595 +S'mainstay' +p174597 +tp174598 +a(g174595 +g174597 +S'of' +p174599 +tp174600 +a(g174597 +g174599 +S'the' +p174601 +tp174602 +a(g174599 +g174601 +S'academic' +p174603 +tp174604 +a(g174601 +g174603 +S'tradition' +p174605 +tp174606 +a(g174603 +g174605 +S'of' +p174607 +tp174608 +a(g174605 +g174607 +S'painting' +p174609 +tp174610 +a(g174607 +g174609 +S'from' +p174611 +tp174612 +a(g174609 +g174611 +S'a' +p174613 +tp174614 +a(g174611 +g174613 +S'posed' +p174615 +tp174616 +a(g174613 +g174615 +S'model' +p174617 +tp174618 +a(g174615 +g174617 +S'in' +p174619 +tp174620 +a(g174617 +g174619 +S'the' +p174621 +tp174622 +a(g174619 +g174621 +S'studio.' +p174623 +tp174624 +a(g174621 +g174623 +S'notice,' +p174625 +tp174626 +a(g174623 +g174625 +S'for' +p174627 +tp174628 +a(g174625 +g174627 +S'example,' +p174629 +tp174630 +a(g174627 +g174629 +S'that' +p174631 +tp174632 +a(g174629 +g174631 +S'the' +p174633 +tp174634 +a(g174631 +g174633 +S"woman's" +p174635 +tp174636 +a(g174633 +g174635 +S'foot' +p174637 +tp174638 +a(g174635 +g174637 +S'rests' +p174639 +tp174640 +a(g174637 +g174639 +S'on' +p174641 +tp174642 +a(g174639 +g174641 +S'an' +p174643 +tp174644 +a(g174641 +g174643 +S'elevated' +p174645 +tp174646 +a(g174643 +g174645 +S'perch,' +p174647 +tp174648 +a(g174645 +g174647 +S'and' +p174649 +tp174650 +a(g174647 +g174649 +S'that' +p174651 +tp174652 +a(g174649 +g174651 +S'a' +p174653 +tp174654 +a(g174651 +g174653 +S'prop' +p174655 +tp174656 +a(g174653 +g174655 +S'relieves' +p174657 +tp174658 +a(g174655 +g174657 +S'the' +p174659 +tp174660 +a(g174657 +g174659 +S'strain' +p174661 +tp174662 +a(g174659 +g174661 +S'of' +p174663 +tp174664 +a(g174661 +g174663 +S'her' +p174665 +tp174666 +a(g174663 +g174665 +S'raised' +p174667 +tp174668 +a(g174665 +g174667 +S'arms.' +p174669 +tp174670 +a(g174667 +g174669 +S'such' +p174671 +tp174672 +a(g174669 +g174671 +S'devices' +p174673 +tp174674 +a(g174671 +g174673 +S'were' +p174675 +tp174676 +a(g174673 +g174675 +S'necessary' +p174677 +tp174678 +a(g174675 +g174677 +S'for' +p174679 +tp174680 +a(g174677 +g174679 +S'a' +p174681 +tp174682 +a(g174679 +g174681 +S'model' +p174683 +tp174684 +a(g174681 +g174683 +S'to' +p174685 +tp174686 +a(g174683 +g174685 +S'maintain' +p174687 +tp174688 +a(g174685 +g174687 +S'her' +p174689 +tp174690 +a(g174687 +g174689 +S'pose.' +p174691 +tp174692 +a(g174689 +g174691 +S'this' +p174693 +tp174694 +a(g174691 +g174693 +S'model,' +p174695 +tp174696 +a(g174693 +g174695 +S'though,' +p174697 +tp174698 +a(g174695 +g174697 +S'is' +p174699 +tp174700 +a(g174697 +g174699 +S'lise' +p174701 +tp174702 +a(g174699 +g174701 +S'tréhot,' +p174703 +tp174704 +a(g174701 +g174703 +S'the' +p174705 +tp174706 +a(g174703 +g174705 +S"artist's" +p174707 +tp174708 +a(g174705 +g174707 +S'mistress,' +p174709 +tp174710 +a(g174707 +g174709 +S'and' +p174711 +tp174712 +a(g174709 +g174711 +S'in' +p174713 +tp174714 +a(g174711 +g174713 +S'the' +p174715 +tp174716 +a(g174713 +g174715 +S'end,' +p174717 +tp174718 +a(g174715 +g174717 +S'as' +p174719 +tp174720 +a(g174717 +g174719 +S'renoir' +p174721 +tp174722 +a(g174719 +g174721 +S'admitted,' +p174723 +tp174724 +a(g174721 +g174723 +S'"the' +p174725 +tp174726 +a(g174723 +g174725 +S'picture' +p174727 +tp174728 +a(g174725 +g174727 +S'was' +p174729 +tp174730 +a(g174727 +g174729 +S'considered' +p174731 +tp174732 +a(g174729 +g174731 +S'pretty' +p174733 +tp174734 +a(g174731 +g174733 +S'improper."' +p174735 +tp174736 +a(g174733 +g174735 +S'he' +p174737 +tp174738 +a(g174735 +g174737 +S'said' +p174739 +tp174740 +a(g174737 +g174739 +S'he' +p174741 +tp174742 +a(g174739 +g174741 +S'added' +p174743 +tp174744 +a(g174741 +g174743 +S'the' +p174745 +tp174746 +a(g174743 +g174745 +S'bow,' +p174747 +tp174748 +a(g174745 +g174747 +S'the' +p174749 +tp174750 +a(g174747 +g174749 +S'dead' +p174751 +tp174752 +a(g174749 +g174751 +S'animal,' +p174753 +tp174754 +a(g174751 +g174753 +S'and' +p174755 +tp174756 +a(g174753 +g174755 +S'the' +p174757 +tp174758 +a(g174755 +g174757 +S'deerskin' +p174759 +tp174760 +a(g174757 +g174759 +S'to' +p174761 +tp174762 +a(g174759 +g174761 +S'transform' +p174763 +tp174764 +a(g174761 +g174763 +S'lise' +p174765 +tp174766 +a(g174763 +g174765 +S'into' +p174767 +tp174768 +a(g174765 +g174767 +S'diana,' +p174769 +tp174770 +a(g174767 +g174769 +S'the' +p174771 +tp174772 +a(g174769 +g174771 +S'ancient' +p174773 +tp174774 +a(g174771 +g174773 +S'goddess' +p174775 +tp174776 +a(g174773 +g174775 +S'of' +p174777 +tp174778 +a(g174775 +g174777 +S'the' +p174779 +tp174780 +a(g174777 +g174779 +S'hunt,' +p174781 +tp174782 +a(g174779 +g174781 +S'whose' +p174783 +tp174784 +a(g174781 +g174783 +S'voluptuous' +p174785 +tp174786 +a(g174783 +g174785 +S'nudity' +p174787 +tp174788 +a(g174785 +g174787 +S'would' +p174789 +tp174790 +a(g174787 +g174789 +S'be' +p174791 +tp174792 +a(g174789 +g174791 +S'more' +p174793 +tp174794 +a(g174791 +g174793 +S'acceptable' +p174795 +tp174796 +a(g174793 +g174795 +S'to' +p174797 +tp174798 +a(g174795 +g174797 +S'a' +p174799 +tp174800 +a(g174797 +g174799 +S'salon' +p174801 +tp174802 +a(g174799 +g174801 +S'jury' +p174803 +tp174804 +a(g174801 +g174803 +S'than' +p174805 +tp174806 +a(g174803 +g174805 +S'that' +p174807 +tp174808 +a(g174805 +g174807 +S'of' +p174809 +tp174810 +a(g174807 +g174809 +S'a' +p174811 +tp174812 +a(g174809 +g174811 +S'real' +p174813 +tp174814 +a(g174811 +g174813 +S'woman.' +p174815 +tp174816 +a(g174813 +g174815 +S'however,' +p174817 +tp174818 +a(g174815 +g174817 +S'the' +p174819 +tp174820 +a(g174817 +g174819 +S'painting' +p174821 +tp174822 +a(g174819 +g174821 +S'was' +p174823 +tp174824 +a(g174821 +g174823 +S'rejected' +p174825 +tp174826 +a(g174823 +g174825 +S'by' +p174827 +tp174828 +a(g174825 +g174827 +S'the' +p174829 +tp174830 +a(g174827 +g174829 +S'salon' +p174831 +tp174832 +a(g174829 +g174831 +S'in' +p174833 +tp174834 +a(g174831 +g174833 +S'1867,' +p174835 +tp174836 +a(g174833 +g174835 +S'its' +p174837 +tp174838 +a(g174835 +g174837 +S'portrayal' +p174839 +tp174840 +a(g174837 +g174839 +S'perhaps' +p174841 +tp174842 +a(g174839 +g174841 +S'too' +p174843 +tp174844 +a(g174841 +g174843 +S'close' +p174845 +tp174846 +a(g174843 +g174845 +S'to' +p174847 +tp174848 +a(g174845 +g174847 +S'that' +p174849 +tp174850 +a(g174847 +g174849 +S'of' +p174851 +tp174852 +a(g174849 +g174851 +S'a' +p174853 +tp174854 +a(g174851 +g174853 +S'real,' +p174855 +tp174856 +a(g174853 +g174855 +S'flesh–and–blood' +p174857 +tp174858 +a(g174855 +g174857 +S'woman' +p174859 +tp174860 +a(g174857 +g174859 +S'than' +p174861 +tp174862 +a(g174859 +g174861 +S'to' +p174863 +tp174864 +a(g174861 +g174863 +S'a' +p174865 +tp174866 +a(g174863 +g174865 +S'classical' +p174867 +tp174868 +a(g174865 +g174867 +S'mythological' +p174869 +tp174870 +a(g174867 +g174869 +S'heroine.' +p174871 +tp174872 +a(g174869 +g174871 +S'the' +p174873 +tp174874 +a(g174871 +g174873 +S"picture's" +p174875 +tp174876 +a(g174873 +g174875 +S'style' +p174877 +tp174878 +a(g174875 +g174877 +S'shows' +p174879 +tp174880 +a(g174877 +g174879 +S'the' +p174881 +tp174882 +a(g174879 +g174881 +S'influence' +p174883 +tp174884 +a(g174881 +g174883 +S'of' +p174885 +tp174886 +a(g174883 +g174885 +S'realist' +p174887 +tp174888 +a(g174885 +g174887 +S'painter' +p174889 +tp174890 +a(g174887 +g174889 +S'in' +p174891 +tp174892 +a(g174889 +g174891 +S'1876,' +p174893 +tp174894 +a(g174891 +g174893 +S'renoir' +p174895 +tp174896 +a(g174893 +g174895 +S'began' +p174897 +tp174898 +a(g174895 +g174897 +S'to' +p174899 +tp174900 +a(g174897 +g174899 +S'paint' +p174901 +tp174902 +a(g174899 +g174901 +S'anecdotal' +p174903 +tp174904 +a(g174901 +g174903 +S'depictions' +p174905 +tp174906 +a(g174903 +g174905 +S'of' +p174907 +tp174908 +a(g174905 +g174907 +S'women' +p174909 +tp174910 +a(g174907 +g174909 +S'and' +p174911 +tp174912 +a(g174909 +g174911 +S'children,' +p174913 +tp174914 +a(g174911 +g174913 +S'subjects' +p174915 +tp174916 +a(g174913 +g174915 +S'in' +p174917 +tp174918 +a(g174915 +g174917 +S'which' +p174919 +tp174920 +a(g174917 +g174919 +S'he' +p174921 +tp174922 +a(g174919 +g174921 +S'excelled.' +p174923 +tp174924 +a(g174921 +g174923 +S'specific' +p174925 +tp174926 +a(g174923 +g174925 +S'identifications' +p174927 +tp174928 +a(g174925 +g174927 +S'have' +p174929 +tp174930 +a(g174927 +g174929 +S'been' +p174931 +tp174932 +a(g174929 +g174931 +S'proposed' +p174933 +tp174934 +a(g174931 +g174933 +S'for' +p174935 +tp174936 +a(g174933 +g174935 +S'the' +p174937 +tp174938 +a(g174935 +g174937 +S'girl,' +p174939 +tp174940 +a(g174937 +g174939 +S'but' +p174941 +tp174942 +a(g174939 +g174941 +S'none' +p174943 +tp174944 +a(g174941 +g174943 +S'is' +p174945 +tp174946 +a(g174943 +g174945 +S'convincing.' +p174947 +tp174948 +a(g174945 +g174947 +S'more' +p174949 +tp174950 +a(g174947 +g174949 +S'likely,' +p174951 +tp174952 +a(g174949 +g174951 +S'renoir' +p174953 +tp174954 +a(g174951 +g174953 +S'depicted' +p174955 +tp174956 +a(g174953 +g174955 +S'a' +p174957 +tp174958 +a(g174955 +g174957 +S'neighborhood' +p174959 +tp174960 +a(g174957 +g174959 +S'child' +p174961 +tp174962 +a(g174959 +g174961 +S'whose' +p174963 +tp174964 +a(g174961 +g174963 +S'pretty' +p174965 +tp174966 +a(g174963 +g174965 +S'features' +p174967 +tp174968 +a(g174965 +g174967 +S'pleased' +p174969 +tp174970 +a(g174967 +g174969 +S'him.' +p174971 +tp174972 +a(g174969 +g174971 +S'a' +p174973 +tp174974 +a(g174971 +g174973 +S'girl' +p174975 +tp174976 +a(g174973 +g174975 +S'with' +p174977 +tp174978 +a(g174975 +g174977 +S'similar' +p174979 +tp174980 +a(g174977 +g174979 +S'curly' +p174981 +tp174982 +a(g174979 +g174981 +S'blond' +p174983 +tp174984 +a(g174981 +g174983 +S'hair,' +p174985 +tp174986 +a(g174983 +g174985 +S'sparkling' +p174987 +tp174988 +a(g174985 +g174987 +S'blue' +p174989 +tp174990 +a(g174987 +g174989 +S'eyes,' +p174991 +tp174992 +a(g174989 +g174991 +S'plump' +p174993 +tp174994 +a(g174991 +g174993 +S'pink' +p174995 +tp174996 +a(g174993 +g174995 +S'cheeks,' +p174997 +tp174998 +a(g174995 +g174997 +S'and' +p174999 +tp175000 +a(g174997 +g174999 +S'smiling' +p175001 +tp175002 +a(g174999 +g175001 +S'red' +p175003 +tp175004 +a(g175001 +g175003 +S'lips' +p175005 +tp175006 +a(g175003 +g175005 +S'appears,' +p175007 +tp175008 +a(g175005 +g175007 +S'dressed' +p175009 +tp175010 +a(g175007 +g175009 +S'the' +p175011 +tp175012 +a(g175009 +g175011 +S'same' +p175013 +tp175014 +a(g175011 +g175013 +S'way' +p175015 +tp175016 +a(g175013 +g175015 +S'in' +p175017 +tp175018 +a(g175015 +g175017 +S'other' +p175019 +tp175020 +a(g175017 +g175019 +S'paintings' +p175021 +tp175022 +a(g175019 +g175021 +S'by' +p175023 +tp175024 +a(g175021 +g175023 +S'renoir,' +p175025 +tp175026 +a(g175023 +g175025 +S'suggesting' +p175027 +tp175028 +a(g175025 +g175027 +S'she' +p175029 +tp175030 +a(g175027 +g175029 +S'was' +p175031 +tp175032 +a(g175029 +g175031 +S'a' +p175033 +tp175034 +a(g175031 +g175033 +S'favorite' +p175035 +tp175036 +a(g175033 +g175035 +S'figure' +p175037 +tp175038 +a(g175035 +g175037 +S'in' +p175039 +tp175040 +a(g175037 +g175039 +S'the' +p175041 +tp175042 +a(g175039 +g175041 +S'artist\xe2\x80\x99s' +p175043 +tp175044 +a(g175041 +g175043 +S'repertory.' +p175045 +tp175046 +a(g175043 +g175045 +S'gauguin' +p175047 +tp175048 +a(g175045 +g175047 +S'purposefully' +p175049 +tp175050 +a(g175047 +g175049 +S'displayed' +p175051 +tp175052 +a(g175049 +g175051 +S'his' +p175053 +tp175054 +a(g175051 +g175053 +S'gauguin' +p175055 +tp175056 +a(g175053 +g175055 +S'shows' +p175057 +tp175058 +a(g175055 +g175057 +S'the' +p175059 +tp175060 +a(g175057 +g175059 +S'bishop' +p175061 +tp175062 +a(g175059 +g175061 +S'for' +p175063 +tp175064 +a(g175061 +g175063 +S'what' +p175065 +tp175066 +a(g175063 +g175065 +S'he' +p175067 +tp175068 +a(g175065 +g175067 +S'considered' +p175069 +tp175070 +a(g175067 +g175069 +S'him' +p175071 +tp175072 +a(g175069 +g175071 +S'to' +p175073 +tp175074 +a(g175071 +g175073 +S'be:' +p175075 +tp175076 +a(g175073 +g175075 +S'a' +p175077 +tp175078 +a(g175075 +g175077 +S'nude,' +p175079 +tp175080 +a(g175077 +g175079 +S'horned' +p175081 +tp175082 +a(g175079 +g175081 +S'devil.' +p175083 +tp175084 +a(g175081 +g175083 +S'though' +p175085 +tp175086 +a(g175083 +g175085 +S'outwardly' +p175087 +tp175088 +a(g175085 +g175087 +S'pious,' +p175089 +tp175090 +a(g175087 +g175089 +S'gauguin' +p175091 +tp175092 +a(g175089 +g175091 +S'retained' +p175093 +tp175094 +a(g175091 +g175093 +S'the' +p175095 +tp175096 +a(g175093 +g175095 +S'cylindrical' +p175097 +tp175098 +a(g175095 +g175097 +S'form' +p175099 +tp175100 +a(g175097 +g175099 +S'of' +p175101 +tp175102 +a(g175099 +g175101 +S'the' +p175103 +tp175104 +a(g175101 +g175103 +S'miro' +p175105 +tp175106 +a(g175103 +g175105 +S'wood' +p175107 +tp175108 +a(g175105 +g175107 +S'log' +p175109 +tp175110 +a(g175107 +g175109 +S'(native' +p175111 +tp175112 +a(g175109 +g175111 +S'to' +p175113 +tp175114 +a(g175111 +g175113 +S'the' +p175115 +tp175116 +a(g175113 +g175115 +S'marquesas' +p175117 +tp175118 +a(g175115 +g175117 +S'islands' +p175119 +tp175120 +a(g175117 +g175119 +S'where' +p175121 +tp175122 +a(g175119 +g175121 +S'he' +p175123 +tp175124 +a(g175121 +g175123 +S'moved' +p175125 +tp175126 +a(g175123 +g175125 +S'in' +p175127 +tp175128 +a(g175125 +g175127 +S'his' +p175129 +tp175130 +a(g175127 +g175129 +S'final' +p175131 +tp175132 +a(g175129 +g175131 +S'years)' +p175133 +tp175134 +a(g175131 +g175133 +S'in' +p175135 +tp175136 +a(g175133 +g175135 +S'the' +p175137 +tp175138 +a(g175135 +g175137 +S'finished' +p175139 +tp175140 +a(g175137 +g175139 +S'figure,' +p175141 +tp175142 +a(g175139 +g175141 +S'a' +p175143 +tp175144 +a(g175141 +g175143 +S'reflection' +p175145 +tp175146 +a(g175143 +g175145 +S'of' +p175147 +tp175148 +a(g175145 +g175147 +S'his' +p175149 +tp175150 +a(g175147 +g175149 +S'concept' +p175151 +tp175152 +a(g175149 +g175151 +S'of' +p175153 +tp175154 +a(g175151 +g175153 +S'beauty' +p175155 +tp175156 +a(g175153 +g175155 +S'as' +p175157 +tp175158 +a(g175155 +g175157 +S'a' +p175159 +tp175160 +a(g175157 +g175159 +S'harmony' +p175161 +tp175162 +a(g175159 +g175161 +S'between' +p175163 +tp175164 +a(g175161 +g175163 +S'subject' +p175165 +tp175166 +a(g175163 +g175165 +S'and' +p175167 +tp175168 +a(g175165 +g175167 +S'material.' +p175169 +tp175170 +a(g175167 +g175169 +S'for' +p175171 +tp175172 +a(g175169 +g175171 +S'the' +p175173 +tp175174 +a(g175171 +g175173 +S'most' +p175175 +tp175176 +a(g175173 +g175175 +S'part,' +p175177 +tp175178 +a(g175175 +g175177 +S'the' +p175179 +tp175180 +a(g175177 +g175179 +S"sculpture's" +p175181 +tp175182 +a(g175179 +g175181 +S'golden' +p175183 +tp175184 +a(g175181 +g175183 +S'brown' +p175185 +tp175186 +a(g175183 +g175185 +S'surface' +p175187 +tp175188 +a(g175185 +g175187 +S'retains' +p175189 +tp175190 +a(g175187 +g175189 +S'the' +p175191 +tp175192 +a(g175189 +g175191 +S'primitive,' +p175193 +tp175194 +a(g175191 +g175193 +S'rhythmic' +p175195 +tp175196 +a(g175193 +g175195 +S'patterns' +p175197 +tp175198 +a(g175195 +g175197 +S'of' +p175199 +tp175200 +a(g175197 +g175199 +S'the' +p175201 +tp175202 +a(g175199 +g175201 +S"artist's" +p175203 +tp175204 +a(g175201 +g175203 +S'chisels' +p175205 +tp175206 +a(g175203 +g175205 +S'and' +p175207 +tp175208 +a(g175205 +g175207 +S'gouges;' +p175209 +tp175210 +a(g175207 +g175209 +S'only' +p175211 +tp175212 +a(g175209 +g175211 +S'the' +p175213 +tp175214 +a(g175211 +g175213 +S"figure's" +p175215 +tp175216 +a(g175213 +g175215 +S'cheeks,' +p175217 +tp175218 +a(g175215 +g175217 +S'forehead,' +p175219 +tp175220 +a(g175217 +g175219 +S'and' +p175221 +tp175222 +a(g175219 +g175221 +S'jutting' +p175223 +tp175224 +a(g175221 +g175223 +S'chin' +p175225 +tp175226 +a(g175223 +g175225 +S'are' +p175227 +tp175228 +a(g175225 +g175227 +S'filed' +p175229 +tp175230 +a(g175227 +g175229 +S'smooth.' +p175231 +tp175232 +a(g175229 +g175231 +S'gold' +p175233 +tp175234 +a(g175231 +g175233 +S'paint,' +p175235 +tp175236 +a(g175233 +g175235 +S'used' +p175237 +tp175238 +a(g175235 +g175237 +S'to' +p175239 +tp175240 +a(g175237 +g175239 +S'accent' +p175241 +tp175242 +a(g175239 +g175241 +S'the' +p175243 +tp175244 +a(g175241 +g175243 +S"bishop's" +p175245 +tp175246 +a(g175243 +g175245 +S'eyes,' +p175247 +tp175248 +a(g175245 +g175247 +S'the' +p175249 +tp175250 +a(g175247 +g175249 +S'women,' +p175251 +tp175252 +a(g175249 +g175251 +S'and' +p175253 +tp175254 +a(g175251 +g175253 +S'the' +p175255 +tp175256 +a(g175253 +g175255 +S'inscription,' +p175257 +tp175258 +a(g175255 +g175257 +S'has' +p175259 +tp175260 +a(g175257 +g175259 +S'largely' +p175261 +tp175262 +a(g175259 +g175261 +S'disappeared' +p175263 +tp175264 +a(g175261 +g175263 +S'over' +p175265 +tp175266 +a(g175263 +g175265 +S'time.' +p175267 +tp175268 +a(g175265 +g175267 +S'voltaire' +p175269 +tp175270 +a(g175267 +g175269 +S'(françois-marie' +p175271 +tp175272 +a(g175269 +g175271 +S'arouet,' +p175273 +tp175274 +a(g175271 +g175273 +S'1694-1778)' +p175275 +tp175276 +a(g175273 +g175275 +S'returned' +p175277 +tp175278 +a(g175275 +g175277 +S'from' +p175279 +tp175280 +a(g175277 +g175279 +S'exile' +p175281 +tp175282 +a(g175279 +g175281 +S'in' +p175283 +tp175284 +a(g175281 +g175283 +S'switzerland' +p175285 +tp175286 +a(g175283 +g175285 +S'to' +p175287 +tp175288 +a(g175285 +g175287 +S'paris' +p175289 +tp175290 +a(g175287 +g175289 +S'in' +p175291 +tp175292 +a(g175289 +g175291 +S'february' +p175293 +tp175294 +a(g175291 +g175293 +S'1778.' +p175295 +tp175296 +a(g175293 +g175295 +S'a' +p175297 +tp175298 +a(g175295 +g175297 +S'clamorous' +p175299 +tp175300 +a(g175297 +g175299 +S'welcome' +p175301 +tp175302 +a(g175299 +g175301 +S'awaited' +p175303 +tp175304 +a(g175301 +g175303 +S'the' +p175305 +tp175306 +a(g175303 +g175305 +S'eighty-four-year-old' +p175307 +tp175308 +a(g175305 +g175307 +S'genius,' +p175309 +tp175310 +a(g175307 +g175309 +S'admired' +p175311 +tp175312 +a(g175309 +g175311 +S'by' +p175313 +tp175314 +a(g175311 +g175313 +S'his' +p175315 +tp175316 +a(g175313 +g175315 +S'contemporaries' +p175317 +tp175318 +a(g175315 +g175317 +S'as' +p175319 +tp175320 +a(g175317 +g175319 +S'a' +p175321 +tp175322 +a(g175319 +g175321 +S'playwright,' +p175323 +tp175324 +a(g175321 +g175323 +S'historian,' +p175325 +tp175326 +a(g175323 +g175325 +S'poet,' +p175327 +tp175328 +a(g175325 +g175327 +S'novelist,' +p175329 +tp175330 +a(g175327 +g175329 +S'political' +p175331 +tp175332 +a(g175329 +g175331 +S'and' +p175333 +tp175334 +a(g175331 +g175333 +S'social' +p175335 +tp175336 +a(g175333 +g175335 +S'commentator,' +p175337 +tp175338 +a(g175335 +g175337 +S'and' +p175339 +tp175340 +a(g175337 +g175339 +S'eloquent' +p175341 +tp175342 +a(g175339 +g175341 +S'champion' +p175343 +tp175344 +a(g175341 +g175343 +S'of' +p175345 +tp175346 +a(g175343 +g175345 +S'human' +p175347 +tp175348 +a(g175345 +g175347 +S'rights' +p175349 +tp175350 +a(g175347 +g175349 +S'against' +p175351 +tp175352 +a(g175349 +g175351 +S'oppression' +p175353 +tp175354 +a(g175351 +g175353 +S'and' +p175355 +tp175356 +a(g175353 +g175355 +S'intolerance.' +p175357 +tp175358 +a(g175355 +g175357 +S'this' +p175359 +tp175360 +a(g175357 +g175359 +S'portrait' +p175361 +tp175362 +a(g175359 +g175361 +S'is' +p175363 +tp175364 +a(g175361 +g175363 +S'one' +p175365 +tp175366 +a(g175363 +g175365 +S'result' +p175367 +tp175368 +a(g175365 +g175367 +S'of' +p175369 +tp175370 +a(g175367 +g175369 +S'the' +p175371 +tp175372 +a(g175369 +g175371 +S'encounter,' +p175373 +tp175374 +a(g175371 +g175373 +S'on' +p175375 +tp175376 +a(g175373 +g175375 +S'that' +p175377 +tp175378 +a(g175375 +g175377 +S'last' +p175379 +tp175380 +a(g175377 +g175379 +S'visit' +p175381 +tp175382 +a(g175379 +g175381 +S'to' +p175383 +tp175384 +a(g175381 +g175383 +S'paris,' +p175385 +tp175386 +a(g175383 +g175385 +S'between' +p175387 +tp175388 +a(g175385 +g175387 +S'a' +p175389 +tp175390 +a(g175387 +g175389 +S'brilliant' +p175391 +tp175392 +a(g175389 +g175391 +S'intellectual' +p175393 +tp175394 +a(g175391 +g175393 +S'and' +p175395 +tp175396 +a(g175393 +g175395 +S'an' +p175397 +tp175398 +a(g175395 +g175397 +S'artist' +p175399 +tp175400 +a(g175397 +g175399 +S'of' +p175401 +tp175402 +a(g175399 +g175401 +S'exalted' +p175403 +tp175404 +a(g175401 +g175403 +S'stature.' +p175405 +tp175406 +a(g175403 +g175405 +S'voltaire' +p175407 +tp175408 +a(g175405 +g175407 +S'sat' +p175409 +tp175410 +a(g175407 +g175409 +S'for' +p175411 +tp175412 +a(g175409 +g175411 +S'houdon' +p175413 +tp175414 +a(g175411 +g175413 +S'several' +p175415 +tp175416 +a(g175413 +g175415 +S'times' +p175417 +tp175418 +a(g175415 +g175417 +S'before' +p175419 +tp175420 +a(g175417 +g175419 +S'the' +p175421 +tp175422 +a(g175419 +g175421 +S'exertion' +p175423 +tp175424 +a(g175421 +g175423 +S'and' +p175425 +tp175426 +a(g175423 +g175425 +S'excitement' +p175427 +tp175428 +a(g175425 +g175427 +S'of' +p175429 +tp175430 +a(g175427 +g175429 +S'his' +p175431 +tp175432 +a(g175429 +g175431 +S'journey' +p175433 +tp175434 +a(g175431 +g175433 +S'took' +p175435 +tp175436 +a(g175433 +g175435 +S'their' +p175437 +tp175438 +a(g175435 +g175437 +S'toll;' +p175439 +tp175440 +a(g175437 +g175439 +S'he' +p175441 +tp175442 +a(g175439 +g175441 +S'died' +p175443 +tp175444 +a(g175441 +g175443 +S'on' +p175445 +tp175446 +a(g175443 +g175445 +S'30' +p175447 +tp175448 +a(g175445 +g175447 +S'may' +p175449 +tp175450 +a(g175447 +g175449 +S'1778.' +p175451 +tp175452 +a(g175449 +g175451 +S'in' +p175453 +tp175454 +a(g175451 +g175453 +S'a' +p175455 +tp175456 +a(g175453 +g175455 +S'few' +p175457 +tp175458 +a(g175455 +g175457 +S'sittings,' +p175459 +tp175460 +a(g175457 +g175459 +S'houdon' +p175461 +tp175462 +a(g175459 +g175461 +S'grasped' +p175463 +tp175464 +a(g175461 +g175463 +S'the' +p175465 +tp175466 +a(g175463 +g175465 +S'expression' +p175467 +tp175468 +a(g175465 +g175467 +S'that' +p175469 +tp175470 +a(g175467 +g175469 +S'captivated' +p175471 +tp175472 +a(g175469 +g175471 +S'contemporaries.' +p175473 +tp175474 +a(g175471 +g175473 +S'the' +p175475 +tp175476 +a(g175473 +g175475 +S'weary' +p175477 +tp175478 +a(g175475 +g175477 +S'face,' +p175479 +tp175480 +a(g175477 +g175479 +S'with' +p175481 +tp175482 +a(g175479 +g175481 +S'its' +p175483 +tp175484 +a(g175481 +g175483 +S'sagging' +p175485 +tp175486 +a(g175483 +g175485 +S'neck' +p175487 +tp175488 +a(g175485 +g175487 +S'and' +p175489 +tp175490 +a(g175487 +g175489 +S'toothless' +p175491 +tp175492 +a(g175489 +g175491 +S'mouth,' +p175493 +tp175494 +a(g175491 +g175493 +S'nevertheless' +p175495 +tp175496 +a(g175493 +g175495 +S'radiates' +p175497 +tp175498 +a(g175495 +g175497 +S'intense' +p175499 +tp175500 +a(g175497 +g175499 +S'mental' +p175501 +tp175502 +a(g175499 +g175501 +S'and' +p175503 +tp175504 +a(g175501 +g175503 +S'spiritual' +p175505 +tp175506 +a(g175503 +g175505 +S'vitality.' +p175507 +tp175508 +a(g175505 +g175507 +S'penetrating' +p175509 +tp175510 +a(g175507 +g175509 +S'observation,' +p175511 +tp175512 +a(g175509 +g175511 +S'mocking' +p175513 +tp175514 +a(g175511 +g175513 +S'humor,' +p175515 +tp175516 +a(g175513 +g175515 +S'and' +p175517 +tp175518 +a(g175515 +g175517 +S'sorrow' +p175519 +tp175520 +a(g175517 +g175519 +S'show' +p175521 +tp175522 +a(g175519 +g175521 +S'in' +p175523 +tp175524 +a(g175521 +g175523 +S'the' +p175525 +tp175526 +a(g175523 +g175525 +S'lined' +p175527 +tp175528 +a(g175525 +g175527 +S'eyes,' +p175529 +tp175530 +a(g175527 +g175529 +S'lifted' +p175531 +tp175532 +a(g175529 +g175531 +S'brows,' +p175533 +tp175534 +a(g175531 +g175533 +S'and' +p175535 +tp175536 +a(g175533 +g175535 +S'compressed' +p175537 +tp175538 +a(g175535 +g175537 +S'smile.' +p175539 +tp175540 +a(g175537 +g175539 +S"voltaire's" +p175541 +tp175542 +a(g175539 +g175541 +S'face' +p175543 +tp175544 +a(g175541 +g175543 +S'epitomizes' +p175545 +tp175546 +a(g175543 +g175545 +S'the' +p175547 +tp175548 +a(g175545 +g175547 +S'quality' +p175549 +tp175550 +a(g175547 +g175549 +S'so' +p175551 +tp175552 +a(g175549 +g175551 +S'often' +p175553 +tp175554 +a(g175551 +g175553 +S'implied' +p175555 +tp175556 +a(g175553 +g175555 +S'in' +p175557 +tp175558 +a(g175555 +g175557 +S'eighteenth-century' +p175559 +tp175560 +a(g175557 +g175559 +S'portraiture' +p175561 +tp175562 +a(g175559 +g175561 +S'--' +p175563 +tp175564 +a(g175561 +g175563 +S'quick,' +p175565 +tp175566 +a(g175563 +g175565 +S'biting' +p175567 +tp175568 +a(g175565 +g175567 +S'wit.' +p175569 +tp175570 +a(g175567 +g175569 +S'voltaire' +p175571 +tp175572 +a(g175569 +g175571 +S'proved' +p175573 +tp175574 +a(g175571 +g175573 +S"houdon's" +p175575 +tp175576 +a(g175573 +g175575 +S'most' +p175577 +tp175578 +a(g175575 +g175577 +S'popular' +p175579 +tp175580 +a(g175577 +g175579 +S'subject,' +p175581 +tp175582 +a(g175579 +g175581 +S'both' +p175583 +tp175584 +a(g175581 +g175583 +S'for' +p175585 +tp175586 +a(g175583 +g175585 +S'his' +p175587 +tp175588 +a(g175585 +g175587 +S'own' +p175589 +tp175590 +a(g175587 +g175589 +S'sake' +p175591 +tp175592 +a(g175589 +g175591 +S'and' +p175593 +tp175594 +a(g175591 +g175593 +S'for' +p175595 +tp175596 +a(g175593 +g175595 +S'the' +p175597 +tp175598 +a(g175595 +g175597 +S"artist's" +p175599 +tp175600 +a(g175597 +g175599 +S'satisfying' +p175601 +tp175602 +a(g175599 +g175601 +S'characterization.' +p175603 +tp175604 +a(g175601 +g175603 +S'houdon' +p175605 +tp175606 +a(g175603 +g175605 +S'produced' +p175607 +tp175608 +a(g175605 +g175607 +S'famous' +p175609 +tp175610 +a(g175607 +g175609 +S'seated' +p175611 +tp175612 +a(g175609 +g175611 +S'statues' +p175613 +tp175614 +a(g175611 +g175613 +S'of' +p175615 +tp175616 +a(g175613 +g175615 +S'the' +p175617 +tp175618 +a(g175615 +g175617 +S'writer' +p175619 +tp175620 +a(g175617 +g175619 +S'(today' +p175621 +tp175622 +a(g175619 +g175621 +S'at' +p175623 +tp175624 +a(g175621 +g175623 +S'the' +p175625 +tp175626 +a(g175623 +g175625 +S'comédie' +p175627 +tp175628 +a(g175625 +g175627 +S'française,' +p175629 +tp175630 +a(g175627 +g175629 +S'paris,' +p175631 +tp175632 +a(g175629 +g175631 +S'and' +p175633 +tp175634 +a(g175631 +g175633 +S'the' +p175635 +tp175636 +a(g175633 +g175635 +S'hermitage,' +p175637 +tp175638 +a(g175635 +g175637 +S'st.' +p175639 +tp175640 +a(g175637 +g175639 +S'petersburg),' +p175641 +tp175642 +a(g175639 +g175641 +S'and' +p175643 +tp175644 +a(g175641 +g175643 +S'from' +p175645 +tp175646 +a(g175643 +g175645 +S'his' +p175647 +tp175648 +a(g175645 +g175647 +S'studio' +p175649 +tp175650 +a(g175647 +g175649 +S'came' +p175651 +tp175652 +a(g175649 +g175651 +S'dozens' +p175653 +tp175654 +a(g175651 +g175653 +S'of' +p175655 +tp175656 +a(g175653 +g175655 +S'busts.' +p175657 +tp175658 +a(g175655 +g175657 +S'in' +p175659 +tp175660 +a(g175657 +g175659 +S'april' +p175661 +tp175662 +a(g175659 +g175661 +S'1890,' +p175663 +tp175664 +a(g175661 +g175663 +S'an' +p175665 +tp175666 +a(g175663 +g175665 +S'exhibition' +p175667 +tp175668 +a(g175665 +g175667 +S'of' +p175669 +tp175670 +a(g175667 +g175669 +S'japanese' +p175671 +tp175672 +a(g175669 +g175671 +S'the' +p175673 +tp175674 +a(g175671 +g175673 +S'bath' +p175675 +tp175676 +a(g175673 +g175675 +S'mary' +p175677 +tp175678 +a(g175675 +g175677 +S'cassatt' +p175679 +tp175680 +a(g175677 +g175679 +S'often' +p175681 +tp175682 +a(g175679 +g175681 +S'depicts' +p175683 +tp175684 +a(g175681 +g175683 +S'mothers' +p175685 +tp175686 +a(g175683 +g175685 +S'and' +p175687 +tp175688 +a(g175685 +g175687 +S'children,' +p175689 +tp175690 +a(g175687 +g175689 +S'as' +p175691 +tp175692 +a(g175689 +g175691 +S'in' +p175693 +tp175694 +a(g175691 +g175693 +S'the' +p175695 +tp175696 +a(g175693 +g175695 +S'exterior' +p175697 +tp175698 +a(g175695 +g175697 +S'setting' +p175699 +tp175700 +a(g175697 +g175699 +S'of' +p175701 +tp175702 +a(g175699 +g175701 +S'cassatt' +p175703 +tp175704 +a(g175701 +g175703 +S'has' +p175705 +tp175706 +a(g175703 +g175705 +S'also' +p175707 +tp175708 +a(g175705 +g175707 +S'marked' +p175709 +tp175710 +a(g175707 +g175709 +S'the' +p175711 +tp175712 +a(g175709 +g175711 +S'social' +p175713 +tp175714 +a(g175711 +g175713 +S'status' +p175715 +tp175716 +a(g175713 +g175715 +S'of' +p175717 +tp175718 +a(g175715 +g175717 +S'the' +p175719 +tp175720 +a(g175717 +g175719 +S'women' +p175721 +tp175722 +a(g175719 +g175721 +S'by' +p175723 +tp175724 +a(g175721 +g175723 +S'their' +p175725 +tp175726 +a(g175723 +g175725 +S'clothing,' +p175727 +tp175728 +a(g175725 +g175727 +S'in' +p175729 +tp175730 +a(g175727 +g175729 +S'particular,' +p175731 +tp175732 +a(g175729 +g175731 +S'their' +p175733 +tp175734 +a(g175731 +g175733 +S'hats.' +p175735 +tp175736 +a(g175733 +g175735 +S'the' +p175737 +tp175738 +a(g175735 +g175737 +S'woman' +p175739 +tp175740 +a(g175737 +g175739 +S'on' +p175741 +tp175742 +a(g175739 +g175741 +S'the' +p175743 +tp175744 +a(g175741 +g175743 +S'left' +p175745 +tp175746 +a(g175743 +g175745 +S'wears' +p175747 +tp175748 +a(g175745 +g175747 +S'an' +p175749 +tp175750 +a(g175747 +g175749 +S'elaborately' +p175751 +tp175752 +a(g175749 +g175751 +S'decorated' +p175753 +tp175754 +a(g175751 +g175753 +S'and' +p175755 +tp175756 +a(g175753 +g175755 +S'sculpted' +p175757 +tp175758 +a(g175755 +g175757 +S'hat' +p175759 +tp175760 +a(g175757 +g175759 +S'that' +p175761 +tp175762 +a(g175759 +g175761 +S'clearly' +p175763 +tp175764 +a(g175761 +g175763 +S'separates' +p175765 +tp175766 +a(g175763 +g175765 +S'her' +p175767 +tp175768 +a(g175765 +g175767 +S'from' +p175769 +tp175770 +a(g175767 +g175769 +S'the' +p175771 +tp175772 +a(g175769 +g175771 +S'woman' +p175773 +tp175774 +a(g175771 +g175773 +S'on' +p175775 +tp175776 +a(g175773 +g175775 +S'the' +p175777 +tp175778 +a(g175775 +g175777 +S'right,' +p175779 +tp175780 +a(g175777 +g175779 +S'who' +p175781 +tp175782 +a(g175779 +g175781 +S'wears' +p175783 +tp175784 +a(g175781 +g175783 +S'a' +p175785 +tp175786 +a(g175783 +g175785 +S'simple' +p175787 +tp175788 +a(g175785 +g175787 +S'cap.' +p175789 +tp175790 +a(g175787 +g175789 +S'the' +p175791 +tp175792 +a(g175789 +g175791 +S'woman' +p175793 +tp175794 +a(g175791 +g175793 +S'holding' +p175795 +tp175796 +a(g175793 +g175795 +S'the' +p175797 +tp175798 +a(g175795 +g175797 +S'baby' +p175799 +tp175800 +a(g175797 +g175799 +S'is' +p175801 +tp175802 +a(g175799 +g175801 +S'presumably' +p175803 +tp175804 +a(g175801 +g175803 +S'the' +p175805 +tp175806 +a(g175803 +g175805 +S'nanny;' +p175807 +tp175808 +a(g175805 +g175807 +S'while' +p175809 +tp175810 +a(g175807 +g175809 +S'her' +p175811 +tp175812 +a(g175809 +g175811 +S'attention' +p175813 +tp175814 +a(g175811 +g175813 +S'is' +p175815 +tp175816 +a(g175813 +g175815 +S'focused' +p175817 +tp175818 +a(g175815 +g175817 +S'on' +p175819 +tp175820 +a(g175817 +g175819 +S'the' +p175821 +tp175822 +a(g175819 +g175821 +S'baby,' +p175823 +tp175824 +a(g175821 +g175823 +S'the' +p175825 +tp175826 +a(g175823 +g175825 +S"baby's" +p175827 +tp175828 +a(g175825 +g175827 +S'mother' +p175829 +tp175830 +a(g175827 +g175829 +S'turns' +p175831 +tp175832 +a(g175829 +g175831 +S'her' +p175833 +tp175834 +a(g175831 +g175833 +S'gaze' +p175835 +tp175836 +a(g175833 +g175835 +S'through' +p175837 +tp175838 +a(g175835 +g175837 +S'an' +p175839 +tp175840 +a(g175837 +g175839 +S'unseen' +p175841 +tp175842 +a(g175839 +g175841 +S'window' +p175843 +tp175844 +a(g175841 +g175843 +S'to' +p175845 +tp175846 +a(g175843 +g175845 +S'events' +p175847 +tp175848 +a(g175845 +g175847 +S'happening' +p175849 +tp175850 +a(g175847 +g175849 +S'outside' +p175851 +tp175852 +a(g175849 +g175851 +S'the' +p175853 +tp175854 +a(g175851 +g175853 +S'bus.' +p175855 +tp175856 +a(g175853 +g175855 +S'women' +p175857 +tp175858 +a(g175855 +g175857 +S'who' +p175859 +tp175860 +a(g175857 +g175859 +S'could' +p175861 +tp175862 +a(g175859 +g175861 +S'afford' +p175863 +tp175864 +a(g175861 +g175863 +S'to' +p175865 +tp175866 +a(g175863 +g175865 +S'do' +p175867 +tp175868 +a(g175865 +g175867 +S'so' +p175869 +tp175870 +a(g175867 +g175869 +S'hired' +p175871 +tp175872 +a(g175869 +g175871 +S'nannies' +p175873 +tp175874 +a(g175871 +g175873 +S'to' +p175875 +tp175876 +a(g175873 +g175875 +S'assist' +p175877 +tp175878 +a(g175875 +g175877 +S'in' +p175879 +tp175880 +a(g175877 +g175879 +S'raising' +p175881 +tp175882 +a(g175879 +g175881 +S'their' +p175883 +tp175884 +a(g175881 +g175883 +S'children.' +p175885 +tp175886 +a(g175883 +g175885 +S'in' +p175887 +tp175888 +a(g175885 +g175887 +S'turn,' +p175889 +tp175890 +a(g175887 +g175889 +S'they' +p175891 +tp175892 +a(g175889 +g175891 +S'enjoyed' +p175893 +tp175894 +a(g175891 +g175893 +S'greater' +p175895 +tp175896 +a(g175893 +g175895 +S'freedom' +p175897 +tp175898 +a(g175895 +g175897 +S'to' +p175899 +tp175900 +a(g175897 +g175899 +S'pursue' +p175901 +tp175902 +a(g175899 +g175901 +S'other' +p175903 +tp175904 +a(g175901 +g175903 +S'interests,' +p175905 +tp175906 +a(g175903 +g175905 +S'a' +p175907 +tp175908 +a(g175905 +g175907 +S'fact' +p175909 +tp175910 +a(g175907 +g175909 +S'which' +p175911 +tp175912 +a(g175909 +g175911 +S'is' +p175913 +tp175914 +a(g175911 +g175913 +S'perhaps' +p175915 +tp175916 +a(g175913 +g175915 +S'illustrated' +p175917 +tp175918 +a(g175915 +g175917 +S'by' +p175919 +tp175920 +a(g175917 +g175919 +S'the' +p175921 +tp175922 +a(g175919 +g175921 +S"mother's" +p175923 +tp175924 +a(g175921 +g175923 +S'diverted' +p175925 +tp175926 +a(g175923 +g175925 +S'gaze.' +p175927 +tp175928 +a(g175925 +g175927 +S'in' +p175929 +tp175930 +a(g175927 +g175929 +S'correspondence' +p175931 +tp175932 +a(g175929 +g175931 +S'often' +p175933 +tp175934 +a(g175931 +g175933 +S'consumed' +p175935 +tp175936 +a(g175933 +g175935 +S'a' +p175937 +tp175938 +a(g175935 +g175937 +S'large' +p175939 +tp175940 +a(g175937 +g175939 +S'part' +p175941 +tp175942 +a(g175939 +g175941 +S'of' +p175943 +tp175944 +a(g175941 +g175943 +S'a' +p175945 +tp175946 +a(g175943 +g175945 +S"woman's" +p175947 +tp175948 +a(g175945 +g175947 +S'day;' +p175949 +tp175950 +a(g175947 +g175949 +S'she' +p175951 +tp175952 +a(g175949 +g175951 +S'not' +p175953 +tp175954 +a(g175951 +g175953 +S'only' +p175955 +tp175956 +a(g175953 +g175955 +S'wrote' +p175957 +tp175958 +a(g175955 +g175957 +S'to' +p175959 +tp175960 +a(g175957 +g175959 +S'friends' +p175961 +tp175962 +a(g175959 +g175961 +S'and' +p175963 +tp175964 +a(g175961 +g175963 +S'acquaintances,' +p175965 +tp175966 +a(g175963 +g175965 +S'but' +p175967 +tp175968 +a(g175965 +g175967 +S'she' +p175969 +tp175970 +a(g175967 +g175969 +S'was' +p175971 +tp175972 +a(g175969 +g175971 +S'also' +p175973 +tp175974 +a(g175971 +g175973 +S'responsible' +p175975 +tp175976 +a(g175973 +g175975 +S'for' +p175977 +tp175978 +a(g175975 +g175977 +S'answering' +p175979 +tp175980 +a(g175977 +g175979 +S'invitations,' +p175981 +tp175982 +a(g175979 +g175981 +S'responding' +p175983 +tp175984 +a(g175981 +g175983 +S'to' +p175985 +tp175986 +a(g175983 +g175985 +S'inquiries,' +p175987 +tp175988 +a(g175985 +g175987 +S'and' +p175989 +tp175990 +a(g175987 +g175989 +S'dealing' +p175991 +tp175992 +a(g175989 +g175991 +S'with' +p175993 +tp175994 +a(g175991 +g175993 +S'the' +p175995 +tp175996 +a(g175993 +g175995 +S'daily' +p175997 +tp175998 +a(g175995 +g175997 +S'domestic' +p175999 +tp176000 +a(g175997 +g175999 +S'cares' +p176001 +tp176002 +a(g175999 +g176001 +S'of' +p176003 +tp176004 +a(g176001 +g176003 +S'the' +p176005 +tp176006 +a(g176003 +g176005 +S'household.' +p176007 +tp176008 +a(g176005 +g176007 +S'for' +p176009 +tp176010 +a(g176007 +g176009 +S'cassatt,' +p176011 +tp176012 +a(g176009 +g176011 +S'who' +p176013 +tp176014 +a(g176011 +g176013 +S'was' +p176015 +tp176016 +a(g176013 +g176015 +S'an' +p176017 +tp176018 +a(g176015 +g176017 +S'american' +p176019 +tp176020 +a(g176017 +g176019 +S'expatriate' +p176021 +tp176022 +a(g176019 +g176021 +S'living' +p176023 +tp176024 +a(g176021 +g176023 +S'in' +p176025 +tp176026 +a(g176023 +g176025 +S'paris,' +p176027 +tp176028 +a(g176025 +g176027 +S'the' +p176029 +tp176030 +a(g176027 +g176029 +S'importance' +p176031 +tp176032 +a(g176029 +g176031 +S'of' +p176033 +tp176034 +a(g176031 +g176033 +S'letter-writing' +p176035 +tp176036 +a(g176033 +g176035 +S'to' +p176037 +tp176038 +a(g176035 +g176037 +S'keep' +p176039 +tp176040 +a(g176037 +g176039 +S'in' +p176041 +tp176042 +a(g176039 +g176041 +S'touch' +p176043 +tp176044 +a(g176041 +g176043 +S'with' +p176045 +tp176046 +a(g176043 +g176045 +S'family' +p176047 +tp176048 +a(g176045 +g176047 +S'and' +p176049 +tp176050 +a(g176047 +g176049 +S'friends' +p176051 +tp176052 +a(g176049 +g176051 +S'must' +p176053 +tp176054 +a(g176051 +g176053 +S'have' +p176055 +tp176056 +a(g176053 +g176055 +S'held' +p176057 +tp176058 +a(g176055 +g176057 +S'a' +p176059 +tp176060 +a(g176057 +g176059 +S'special' +p176061 +tp176062 +a(g176059 +g176061 +S'significance.' +p176063 +tp176064 +a(g176061 +g176063 +S'the' +p176065 +tp176066 +a(g176063 +g176065 +S'dropleaf' +p176067 +tp176068 +a(g176065 +g176067 +S'desk' +p176069 +tp176070 +a(g176067 +g176069 +S'in' +p176071 +tp176072 +a(g176069 +g176071 +S'this' +p176073 +tp176074 +a(g176071 +g176073 +S'composition' +p176075 +tp176076 +a(g176073 +g176075 +S'still' +p176077 +tp176078 +a(g176075 +g176077 +S'belongs' +p176079 +tp176080 +a(g176077 +g176079 +S'to' +p176081 +tp176082 +a(g176079 +g176081 +S'the' +p176083 +tp176084 +a(g176081 +g176083 +S"artist's" +p176085 +tp176086 +a(g176083 +g176085 +S'family;' +p176087 +tp176088 +a(g176085 +g176087 +S'at' +p176089 +tp176090 +a(g176087 +g176089 +S'one' +p176091 +tp176092 +a(g176089 +g176091 +S'time,' +p176093 +tp176094 +a(g176091 +g176093 +S'cassatt' +p176095 +tp176096 +a(g176093 +g176095 +S'herself' +p176097 +tp176098 +a(g176095 +g176097 +S'may' +p176099 +tp176100 +a(g176097 +g176099 +S'have' +p176101 +tp176102 +a(g176099 +g176101 +S'used' +p176103 +tp176104 +a(g176101 +g176103 +S'it' +p176105 +tp176106 +a(g176103 +g176105 +S'to' +p176107 +tp176108 +a(g176105 +g176107 +S'write' +p176109 +tp176110 +a(g176107 +g176109 +S'letters.' +p176111 +tp176112 +a(g176109 +g176111 +S'several' +p176113 +tp176114 +a(g176111 +g176113 +S'aspects' +p176115 +tp176116 +a(g176113 +g176115 +S'of' +p176117 +tp176118 +a(g176115 +g176117 +S'in' +p176119 +tp176120 +a(g176117 +g176119 +S'the' +p176121 +tp176122 +a(g176119 +g176121 +S'fitting' +p176123 +tp176124 +a(g176121 +g176123 +S'in' +p176125 +tp176126 +a(g176123 +g176125 +S'the' +p176127 +tp176128 +a(g176125 +g176127 +S'late' +p176129 +tp176130 +a(g176127 +g176129 +S'1880s,' +p176131 +tp176132 +a(g176129 +g176131 +S'mary' +p176133 +tp176134 +a(g176131 +g176133 +S'cassatt' +p176135 +tp176136 +a(g176133 +g176135 +S'began' +p176137 +tp176138 +a(g176135 +g176137 +S'to' +p176139 +tp176140 +a(g176137 +g176139 +S'explore' +p176141 +tp176142 +a(g176139 +g176141 +S'the' +p176143 +tp176144 +a(g176141 +g176143 +S'theme' +p176145 +tp176146 +a(g176143 +g176145 +S'of' +p176147 +tp176148 +a(g176145 +g176147 +S'women' +p176149 +tp176150 +a(g176147 +g176149 +S'at' +p176151 +tp176152 +a(g176149 +g176151 +S'their' +p176153 +tp176154 +a(g176151 +g176153 +S'toilette.' +p176155 +tp176156 +a(g176153 +g176155 +S'although' +p176157 +tp176158 +a(g176155 +g176157 +S'cassatt' +p176159 +tp176160 +a(g176157 +g176159 +S'depicted' +p176161 +tp176162 +a(g176159 +g176161 +S'few' +p176163 +tp176164 +a(g176161 +g176163 +S'nudes' +p176165 +tp176166 +a(g176163 +g176165 +S'during' +p176167 +tp176168 +a(g176165 +g176167 +S'her' +p176169 +tp176170 +a(g176167 +g176169 +S'long' +p176171 +tp176172 +a(g176169 +g176171 +S'career,' +p176173 +tp176174 +a(g176171 +g176173 +S'the' +p176175 +tp176176 +a(g176173 +g176175 +S'theme' +p176177 +tp176178 +a(g176175 +g176177 +S'of' +p176179 +tp176180 +a(g176177 +g176179 +S'mothers' +p176181 +tp176182 +a(g176179 +g176181 +S'and' +p176183 +tp176184 +a(g176181 +g176183 +S'children' +p176185 +tp176186 +a(g176183 +g176185 +S'pervades' +p176187 +tp176188 +a(g176185 +g176187 +S'much' +p176189 +tp176190 +a(g176187 +g176189 +S'of' +p176191 +tp176192 +a(g176189 +g176191 +S'mary' +p176193 +tp176194 +a(g176191 +g176193 +S"cassatt's" +p176195 +tp176196 +a(g176193 +g176195 +S'work.' +p176197 +tp176198 +a(g176195 +g176197 +S'although' +p176199 +tp176200 +a(g176197 +g176199 +S'she' +p176201 +tp176202 +a(g176199 +g176201 +S'herself' +p176203 +tp176204 +a(g176201 +g176203 +S'never' +p176205 +tp176206 +a(g176203 +g176205 +S'married,' +p176207 +tp176208 +a(g176205 +g176207 +S'she' +p176209 +tp176210 +a(g176207 +g176209 +S'often' +p176211 +tp176212 +a(g176209 +g176211 +S'spent' +p176213 +tp176214 +a(g176211 +g176213 +S'time' +p176215 +tp176216 +a(g176213 +g176215 +S'with' +p176217 +tp176218 +a(g176215 +g176217 +S'friends' +p176219 +tp176220 +a(g176217 +g176219 +S'and' +p176221 +tp176222 +a(g176219 +g176221 +S'family' +p176223 +tp176224 +a(g176221 +g176223 +S'members' +p176225 +tp176226 +a(g176223 +g176225 +S'and' +p176227 +tp176228 +a(g176225 +g176227 +S'their' +p176229 +tp176230 +a(g176227 +g176229 +S'children' +p176231 +tp176232 +a(g176229 +g176231 +S'and' +p176233 +tp176234 +a(g176231 +g176233 +S'represented' +p176235 +tp176236 +a(g176233 +g176235 +S'them' +p176237 +tp176238 +a(g176235 +g176237 +S'in' +p176239 +tp176240 +a(g176237 +g176239 +S'drawings,' +p176241 +tp176242 +a(g176239 +g176241 +S'prints,' +p176243 +tp176244 +a(g176241 +g176243 +S'and' +p176245 +tp176246 +a(g176243 +g176245 +S'paintings.' +p176247 +tp176248 +a(g176245 +g176247 +S"mother's" +p176249 +tp176250 +a(g176247 +g176249 +S'kiss' +p176251 +tp176252 +a(g176249 +g176251 +S'after' +p176253 +tp176254 +a(g176251 +g176253 +S'seeing' +p176255 +tp176256 +a(g176253 +g176255 +S'the' +p176257 +tp176258 +a(g176255 +g176257 +S'exhibition' +p176259 +tp176260 +a(g176257 +g176259 +S'of' +p176261 +tp176262 +a(g176259 +g176261 +S'japanese' +p176263 +tp176264 +a(g176261 +g176263 +S'afternoon' +p176265 +tp176266 +a(g176263 +g176265 +S'tea' +p176267 +tp176268 +a(g176265 +g176267 +S'party' +p176269 +tp176270 +a(g176267 +g176269 +S'the' +p176271 +tp176272 +a(g176269 +g176271 +S'women' +p176273 +tp176274 +a(g176271 +g176273 +S'in' +p176275 +tp176276 +a(g176273 +g176275 +S'in' +p176277 +tp176278 +a(g176275 +g176277 +S'the' +p176279 +tp176280 +a(g176277 +g176279 +S'coiffure' +p176281 +tp176282 +a(g176279 +g176281 +S'cassatt' +p176283 +tp176284 +a(g176281 +g176283 +S'used' +p176285 +tp176286 +a(g176283 +g176285 +S'the' +p176287 +tp176288 +a(g176285 +g176287 +S'theme' +p176289 +tp176290 +a(g176287 +g176289 +S'of' +p176291 +tp176292 +a(g176289 +g176291 +S'the' +p176293 +tp176294 +a(g176291 +g176293 +S'christus' +p176295 +tp176296 +a(g176293 +g176295 +S'depicted' +p176297 +tp176298 +a(g176295 +g176297 +S'not' +p176299 +tp176300 +a(g176297 +g176299 +S'only' +p176301 +tp176302 +a(g176299 +g176301 +S'the' +p176303 +tp176304 +a(g176301 +g176303 +S'historical' +p176305 +tp176306 +a(g176303 +g176305 +S'moment' +p176307 +tp176308 +a(g176305 +g176307 +S'of' +p176309 +tp176310 +a(g176307 +g176309 +S"jesus'" +p176311 +tp176312 +a(g176309 +g176311 +S'birth' +p176313 +tp176314 +a(g176311 +g176313 +S'but' +p176315 +tp176316 +a(g176313 +g176315 +S'also' +p176317 +tp176318 +a(g176315 +g176317 +S'the' +p176319 +tp176320 +a(g176317 +g176319 +S'enactment' +p176321 +tp176322 +a(g176319 +g176321 +S'of' +p176323 +tp176324 +a(g176321 +g176323 +S'the' +p176325 +tp176326 +a(g176323 +g176325 +S'first' +p176327 +tp176328 +a(g176325 +g176327 +S'mass,' +p176329 +tp176330 +a(g176327 +g176329 +S'an' +p176331 +tp176332 +a(g176329 +g176331 +S'image' +p176333 +tp176334 +a(g176331 +g176333 +S'deriving' +p176335 +tp176336 +a(g176333 +g176335 +S'in' +p176337 +tp176338 +a(g176335 +g176337 +S'part' +p176339 +tp176340 +a(g176337 +g176339 +S'from' +p176341 +tp176342 +a(g176339 +g176341 +S'the' +p176343 +tp176344 +a(g176341 +g176343 +S'revelation' +p176345 +tp176346 +a(g176343 +g176345 +S'of' +p176347 +tp176348 +a(g176345 +g176347 +S'saint' +p176349 +tp176350 +a(g176347 +g176349 +S'bridget,' +p176351 +tp176352 +a(g176349 +g176351 +S'which' +p176353 +tp176354 +a(g176351 +g176353 +S'had' +p176355 +tp176356 +a(g176353 +g176355 +S'become' +p176357 +tp176358 +a(g176355 +g176357 +S'the' +p176359 +tp176360 +a(g176357 +g176359 +S'conventional' +p176361 +tp176362 +a(g176359 +g176361 +S'visualization' +p176363 +tp176364 +a(g176361 +g176363 +S'of' +p176365 +tp176366 +a(g176363 +g176365 +S'the' +p176367 +tp176368 +a(g176365 +g176367 +S'nativity' +p176369 +tp176370 +a(g176367 +g176369 +S'by' +p176371 +tp176372 +a(g176369 +g176371 +S'the' +p176373 +tp176374 +a(g176371 +g176373 +S'early' +p176375 +tp176376 +a(g176373 +g176375 +S'fifteenth' +p176377 +tp176378 +a(g176375 +g176377 +S'century.' +p176379 +tp176380 +a(g176377 +g176379 +S'the' +p176381 +tp176382 +a(g176379 +g176381 +S'angels' +p176383 +tp176384 +a(g176381 +g176383 +S'wear' +p176385 +tp176386 +a(g176383 +g176385 +S'eucharistic' +p176387 +tp176388 +a(g176385 +g176387 +S'vestments' +p176389 +tp176390 +a(g176387 +g176389 +S'of' +p176391 +tp176392 +a(g176389 +g176391 +S'the' +p176393 +tp176394 +a(g176391 +g176393 +S'subministers' +p176395 +tp176396 +a(g176393 +g176395 +S'of' +p176397 +tp176398 +a(g176395 +g176397 +S'the' +p176399 +tp176400 +a(g176397 +g176399 +S'mass,' +p176401 +tp176402 +a(g176399 +g176401 +S'though' +p176403 +tp176404 +a(g176401 +g176403 +S'none' +p176405 +tp176406 +a(g176403 +g176405 +S'wears' +p176407 +tp176408 +a(g176405 +g176407 +S'the' +p176409 +tp176410 +a(g176407 +g176409 +S'chasuble' +p176411 +tp176412 +a(g176409 +g176411 +S'worn' +p176413 +tp176414 +a(g176411 +g176413 +S'by' +p176415 +tp176416 +a(g176413 +g176415 +S'the' +p176417 +tp176418 +a(g176415 +g176417 +S'principal' +p176419 +tp176420 +a(g176417 +g176419 +S'celebrant,' +p176421 +tp176422 +a(g176419 +g176421 +S'suggesting' +p176423 +tp176424 +a(g176421 +g176423 +S'that' +p176425 +tp176426 +a(g176423 +g176425 +S'christ' +p176427 +tp176428 +a(g176425 +g176427 +S'himself' +p176429 +tp176430 +a(g176427 +g176429 +S'is' +p176431 +tp176432 +a(g176429 +g176431 +S'here' +p176433 +tp176434 +a(g176431 +g176433 +S'both' +p176435 +tp176436 +a(g176433 +g176435 +S'priest' +p176437 +tp176438 +a(g176435 +g176437 +S'and' +p176439 +tp176440 +a(g176437 +g176439 +S'sacrifice.' +p176441 +tp176442 +a(g176439 +g176441 +S'escher' +p176443 +tp176444 +a(g176441 +g176443 +S'and' +p176445 +tp176446 +a(g176443 +g176445 +S'the' +p176447 +tp176448 +a(g176445 +g176447 +S'interior' +p176449 +tp176450 +a(g176447 +g176449 +S'of' +p176451 +tp176452 +a(g176449 +g176451 +S'his' +p176453 +tp176454 +a(g176451 +g176453 +S'studio' +p176455 +tp176456 +a(g176453 +g176455 +S'in' +p176457 +tp176458 +a(g176455 +g176457 +S'rome' +p176459 +tp176460 +a(g176457 +g176459 +S'are' +p176461 +tp176462 +a(g176459 +g176461 +S'reflected' +p176463 +tp176464 +a(g176461 +g176463 +S'in' +p176465 +tp176466 +a(g176463 +g176465 +S'the' +p176467 +tp176468 +a(g176465 +g176467 +S'mirrored' +p176469 +tp176470 +a(g176467 +g176469 +S'sphere' +p176471 +tp176472 +a(g176469 +g176471 +S'that' +p176473 +tp176474 +a(g176471 +g176473 +S'he' +p176475 +tp176476 +a(g176473 +g176475 +S'holds' +p176477 +tp176478 +a(g176475 +g176477 +S'in' +p176479 +tp176480 +a(g176477 +g176479 +S'his' +p176481 +tp176482 +a(g176479 +g176481 +S'hand.' +p176483 +tp176484 +a(g176481 +g176483 +S"escher's" +p176485 +tp176486 +a(g176483 +g176485 +S'preoccupation' +p176487 +tp176488 +a(g176485 +g176487 +S'with' +p176489 +tp176490 +a(g176487 +g176489 +S'mirrored' +p176491 +tp176492 +a(g176489 +g176491 +S'reflections' +p176493 +tp176494 +a(g176491 +g176493 +S'and' +p176495 +tp176496 +a(g176493 +g176495 +S'visual' +p176497 +tp176498 +a(g176495 +g176497 +S'illusion' +p176499 +tp176500 +a(g176497 +g176499 +S'belongs' +p176501 +tp176502 +a(g176499 +g176501 +S'to' +p176503 +tp176504 +a(g176501 +g176503 +S'a' +p176505 +tp176506 +a(g176503 +g176505 +S'tradition' +p176507 +tp176508 +a(g176505 +g176507 +S'of' +p176509 +tp176510 +a(g176507 +g176509 +S'northern' +p176511 +tp176512 +a(g176509 +g176511 +S'european' +p176513 +tp176514 +a(g176511 +g176513 +S'art' +p176515 +tp176516 +a(g176513 +g176515 +S'established' +p176517 +tp176518 +a(g176515 +g176517 +S'in' +p176519 +tp176520 +a(g176517 +g176519 +S'the' +p176521 +tp176522 +a(g176519 +g176521 +S'fifteenth' +p176523 +tp176524 +a(g176521 +g176523 +S'century.' +p176525 +tp176526 +a(g176523 +g176525 +S'one' +p176527 +tp176528 +a(g176525 +g176527 +S'of' +p176529 +tp176530 +a(g176527 +g176529 +S"escher's" +p176531 +tp176532 +a(g176529 +g176531 +S'fascinations' +p176533 +tp176534 +a(g176531 +g176533 +S'was' +p176535 +tp176536 +a(g176533 +g176535 +S'the' +p176537 +tp176538 +a(g176535 +g176537 +S'animation' +p176539 +tp176540 +a(g176537 +g176539 +S'of' +p176541 +tp176542 +a(g176539 +g176541 +S'an' +p176543 +tp176544 +a(g176541 +g176543 +S'abstract' +p176545 +tp176546 +a(g176543 +g176545 +S'concept.' +p176547 +tp176548 +a(g176545 +g176547 +S'here,' +p176549 +tp176550 +a(g176547 +g176549 +S'the' +p176551 +tp176552 +a(g176549 +g176551 +S'reptiles' +p176553 +tp176554 +a(g176551 +g176553 +S'come' +p176555 +tp176556 +a(g176553 +g176555 +S'to' +p176557 +tp176558 +a(g176555 +g176557 +S'life' +p176559 +tp176560 +a(g176557 +g176559 +S'as' +p176561 +tp176562 +a(g176559 +g176561 +S'they' +p176563 +tp176564 +a(g176561 +g176563 +S'crawl' +p176565 +tp176566 +a(g176563 +g176565 +S'out' +p176567 +tp176568 +a(g176565 +g176567 +S'of' +p176569 +tp176570 +a(g176567 +g176569 +S'the' +p176571 +tp176572 +a(g176569 +g176571 +S"artist's" +p176573 +tp176574 +a(g176571 +g176573 +S'depiction' +p176575 +tp176576 +a(g176573 +g176575 +S'of' +p176577 +tp176578 +a(g176575 +g176577 +S'a' +p176579 +tp176580 +a(g176577 +g176579 +S'drawing,' +p176581 +tp176582 +a(g176579 +g176581 +S'only' +p176583 +tp176584 +a(g176581 +g176583 +S'to' +p176585 +tp176586 +a(g176583 +g176585 +S'return' +p176587 +tp176588 +a(g176585 +g176587 +S'to' +p176589 +tp176590 +a(g176587 +g176589 +S'it.' +p176591 +tp176592 +a(g176589 +g176591 +S'escher' +p176593 +tp176594 +a(g176591 +g176593 +S'wrote' +p176595 +tp176596 +a(g176593 +g176595 +S'of' +p176597 +tp176598 +a(g176595 +g176597 +S'this' +p176599 +tp176600 +a(g176597 +g176599 +S'print,' +p176601 +tp176602 +a(g176599 +g176601 +S'"evidently' +p176603 +tp176604 +a(g176601 +g176603 +S'one' +p176605 +tp176606 +a(g176603 +g176605 +S'of' +p176607 +tp176608 +a(g176605 +g176607 +S'the' +p176609 +tp176610 +a(g176607 +g176609 +S'reptiles' +p176611 +tp176612 +a(g176609 +g176611 +S'has' +p176613 +tp176614 +a(g176611 +g176613 +S'tired' +p176615 +tp176616 +a(g176613 +g176615 +S'of' +p176617 +tp176618 +a(g176615 +g176617 +S'lying' +p176619 +tp176620 +a(g176617 +g176619 +S'flat' +p176621 +tp176622 +a(g176619 +g176621 +S'and' +p176623 +tp176624 +a(g176621 +g176623 +S'rigid' +p176625 +tp176626 +a(g176623 +g176625 +S'amongst' +p176627 +tp176628 +a(g176625 +g176627 +S'his' +p176629 +tp176630 +a(g176627 +g176629 +S'fellows,' +p176631 +tp176632 +a(g176629 +g176631 +S'so' +p176633 +tp176634 +a(g176631 +g176633 +S'he' +p176635 +tp176636 +a(g176633 +g176635 +S'puts' +p176637 +tp176638 +a(g176635 +g176637 +S'one' +p176639 +tp176640 +a(g176637 +g176639 +S'plastic-looking' +p176641 +tp176642 +a(g176639 +g176641 +S'leg' +p176643 +tp176644 +a(g176641 +g176643 +S'over' +p176645 +tp176646 +a(g176643 +g176645 +S'the' +p176647 +tp176648 +a(g176645 +g176647 +S'edge' +p176649 +tp176650 +a(g176647 +g176649 +S'[and]' +p176651 +tp176652 +a(g176649 +g176651 +S'wrenches' +p176653 +tp176654 +a(g176651 +g176653 +S'himself' +p176655 +tp176656 +a(g176653 +g176655 +S'free...."' +p176657 +tp176658 +a(g176655 +g176657 +S'the' +p176659 +tp176660 +a(g176657 +g176659 +S'name' +p176661 +tp176662 +a(g176659 +g176661 +S'"job"' +p176663 +tp176664 +a(g176661 +g176663 +S'on' +p176665 +tp176666 +a(g176663 +g176665 +S'the' +p176667 +tp176668 +a(g176665 +g176667 +S'booklet' +p176669 +tp176670 +a(g176667 +g176669 +S'at' +p176671 +tp176672 +a(g176669 +g176671 +S'lower' +p176673 +tp176674 +a(g176671 +g176673 +S'left' +p176675 +tp176676 +a(g176673 +g176675 +S'does' +p176677 +tp176678 +a(g176675 +g176677 +S'not' +p176679 +tp176680 +a(g176677 +g176679 +S'indicate' +p176681 +tp176682 +a(g176679 +g176681 +S'the' +p176683 +tp176684 +a(g176681 +g176683 +S'biblical' +p176685 +tp176686 +a(g176683 +g176685 +S'character' +p176687 +tp176688 +a(g176685 +g176687 +S'but' +p176689 +tp176690 +a(g176687 +g176689 +S'refers' +p176691 +tp176692 +a(g176689 +g176691 +S'to' +p176693 +tp176694 +a(g176691 +g176693 +S'a' +p176695 +tp176696 +a(g176693 +g176695 +S'brand' +p176697 +tp176698 +a(g176695 +g176697 +S'of' +p176699 +tp176700 +a(g176697 +g176699 +S'belgian' +p176701 +tp176702 +a(g176699 +g176701 +S'cigarette' +p176703 +tp176704 +a(g176701 +g176703 +S'papers.' +p176705 +tp176706 +a(g176703 +g176705 +S'in' +p176707 +tp176708 +a(g176705 +g176707 +S'the' +p176709 +tp176710 +a(g176707 +g176709 +S'tradition' +p176711 +tp176712 +a(g176709 +g176711 +S'of' +p176713 +tp176714 +a(g176711 +g176713 +S'his' +p176715 +tp176716 +a(g176713 +g176715 +S'flemish' +p176717 +tp176718 +a(g176715 +g176717 +S'predecessors,' +p176719 +tp176720 +a(g176717 +g176719 +S"memling's" +p176721 +tp176722 +a(g176719 +g176721 +S'painting' +p176723 +tp176724 +a(g176721 +g176723 +S'contains' +p176725 +tp176726 +a(g176723 +g176725 +S'a' +p176727 +tp176728 +a(g176725 +g176727 +S'wealth' +p176729 +tp176730 +a(g176727 +g176729 +S'of' +p176731 +tp176732 +a(g176729 +g176731 +S'religious' +p176733 +tp176734 +a(g176731 +g176733 +S'meaning;' +p176735 +tp176736 +a(g176733 +g176735 +S'it' +p176737 +tp176738 +a(g176735 +g176737 +S'is' +p176739 +tp176740 +a(g176737 +g176739 +S'filled' +p176741 +tp176742 +a(g176739 +g176741 +S'with' +p176743 +tp176744 +a(g176741 +g176743 +S'symbols' +p176745 +tp176746 +a(g176743 +g176745 +S'which' +p176747 +tp176748 +a(g176745 +g176747 +S'explain' +p176749 +tp176750 +a(g176747 +g176749 +S'the' +p176751 +tp176752 +a(g176749 +g176751 +S'importance' +p176753 +tp176754 +a(g176751 +g176753 +S'of' +p176755 +tp176756 +a(g176753 +g176755 +S"christ's" +p176757 +tp176758 +a(g176755 +g176757 +S'mission' +p176759 +tp176760 +a(g176757 +g176759 +S'on' +p176761 +tp176762 +a(g176759 +g176761 +S'earth.' +p176763 +tp176764 +a(g176761 +g176763 +S'jesus' +p176765 +tp176766 +a(g176763 +g176765 +S'reaches' +p176767 +tp176768 +a(g176765 +g176767 +S'out' +p176769 +tp176770 +a(g176767 +g176769 +S'for' +p176771 +tp176772 +a(g176769 +g176771 +S'an' +p176773 +tp176774 +a(g176771 +g176773 +S'apple,' +p176775 +tp176776 +a(g176773 +g176775 +S'emblem' +p176777 +tp176778 +a(g176775 +g176777 +S'of' +p176779 +tp176780 +a(g176777 +g176779 +S'original' +p176781 +tp176782 +a(g176779 +g176781 +S'sin;' +p176783 +tp176784 +a(g176781 +g176783 +S'his' +p176785 +tp176786 +a(g176783 +g176785 +S'attitude' +p176787 +tp176788 +a(g176785 +g176787 +S'of' +p176789 +tp176790 +a(g176787 +g176789 +S'acceptance' +p176791 +tp176792 +a(g176789 +g176791 +S'foreshadows' +p176793 +tp176794 +a(g176791 +g176793 +S'his' +p176795 +tp176796 +a(g176793 +g176795 +S'future' +p176797 +tp176798 +a(g176795 +g176797 +S'sacrifice' +p176799 +tp176800 +a(g176797 +g176799 +S'on' +p176801 +tp176802 +a(g176799 +g176801 +S'the' +p176803 +tp176804 +a(g176801 +g176803 +S'cross.' +p176805 +tp176806 +a(g176803 +g176805 +S'the' +p176807 +tp176808 +a(g176805 +g176807 +S'angel' +p176809 +tp176810 +a(g176807 +g176809 +S'who' +p176811 +tp176812 +a(g176809 +g176811 +S'offers' +p176813 +tp176814 +a(g176811 +g176813 +S'the' +p176815 +tp176816 +a(g176813 +g176815 +S'fruit' +p176817 +tp176818 +a(g176815 +g176817 +S'of' +p176819 +tp176820 +a(g176817 +g176819 +S'redemption' +p176821 +tp176822 +a(g176819 +g176821 +S'is' +p176823 +tp176824 +a(g176821 +g176823 +S'in' +p176825 +tp176826 +a(g176823 +g176825 +S'fact' +p176827 +tp176828 +a(g176825 +g176827 +S'dressed' +p176829 +tp176830 +a(g176827 +g176829 +S'in' +p176831 +tp176832 +a(g176829 +g176831 +S'a' +p176833 +tp176834 +a(g176831 +g176833 +S'dalmatic,' +p176835 +tp176836 +a(g176833 +g176835 +S'the' +p176837 +tp176838 +a(g176835 +g176837 +S'liturgical' +p176839 +tp176840 +a(g176837 +g176839 +S'vestment' +p176841 +tp176842 +a(g176839 +g176841 +S'worn' +p176843 +tp176844 +a(g176841 +g176843 +S'by' +p176845 +tp176846 +a(g176843 +g176845 +S'a' +p176847 +tp176848 +a(g176845 +g176847 +S'deacon' +p176849 +tp176850 +a(g176847 +g176849 +S'during' +p176851 +tp176852 +a(g176849 +g176851 +S'the' +p176853 +tp176854 +a(g176851 +g176853 +S'solemn' +p176855 +tp176856 +a(g176853 +g176855 +S'high' +p176857 +tp176858 +a(g176855 +g176857 +S'mass.' +p176859 +tp176860 +a(g176857 +g176859 +S'around' +p176861 +tp176862 +a(g176859 +g176861 +S'the' +p176863 +tp176864 +a(g176861 +g176863 +S'arch' +p176865 +tp176866 +a(g176863 +g176865 +S'is' +p176867 +tp176868 +a(g176865 +g176867 +S'a' +p176869 +tp176870 +a(g176867 +g176869 +S'carved' +p176871 +tp176872 +a(g176869 +g176871 +S'vine' +p176873 +tp176874 +a(g176871 +g176873 +S'of' +p176875 +tp176876 +a(g176873 +g176875 +S'grapes' +p176877 +tp176878 +a(g176875 +g176877 +S'referring' +p176879 +tp176880 +a(g176877 +g176879 +S'to' +p176881 +tp176882 +a(g176879 +g176881 +S'the' +p176883 +tp176884 +a(g176881 +g176883 +S'wine' +p176885 +tp176886 +a(g176883 +g176885 +S'of' +p176887 +tp176888 +a(g176885 +g176887 +S'the' +p176889 +tp176890 +a(g176887 +g176889 +S'eucharistic' +p176891 +tp176892 +a(g176889 +g176891 +S'rite.' +p176893 +tp176894 +a(g176891 +g176893 +S'on' +p176895 +tp176896 +a(g176893 +g176895 +S'the' +p176897 +tp176898 +a(g176895 +g176897 +S'crystal' +p176899 +tp176900 +a(g176897 +g176899 +S'and' +p176901 +tp176902 +a(g176899 +g176901 +S'porphyry' +p176903 +tp176904 +a(g176901 +g176903 +S'columns' +p176905 +tp176906 +a(g176903 +g176905 +S'stand' +p176907 +tp176908 +a(g176905 +g176907 +S'david,' +p176909 +tp176910 +a(g176907 +g176909 +S'as' +p176911 +tp176912 +a(g176909 +g176911 +S'an' +p176913 +tp176914 +a(g176911 +g176913 +S'ancestor' +p176915 +tp176916 +a(g176913 +g176915 +S'of' +p176917 +tp176918 +a(g176915 +g176917 +S'christ,' +p176919 +tp176920 +a(g176917 +g176919 +S'and' +p176921 +tp176922 +a(g176919 +g176921 +S'isaiah,' +p176923 +tp176924 +a(g176921 +g176923 +S'one' +p176925 +tp176926 +a(g176923 +g176925 +S'of' +p176927 +tp176928 +a(g176925 +g176927 +S'the' +p176929 +tp176930 +a(g176927 +g176929 +S'prophets' +p176931 +tp176932 +a(g176929 +g176931 +S'who' +p176933 +tp176934 +a(g176931 +g176933 +S'foretold' +p176935 +tp176936 +a(g176933 +g176935 +S'the' +p176937 +tp176938 +a(g176935 +g176937 +S'virgin' +p176939 +tp176940 +a(g176937 +g176939 +S'birth.' +p176941 +tp176942 +a(g176939 +g176941 +S'memling' +p176943 +tp176944 +a(g176941 +g176943 +S'adhered' +p176945 +tp176946 +a(g176943 +g176945 +S'closely' +p176947 +tp176948 +a(g176945 +g176947 +S'to' +p176949 +tp176950 +a(g176947 +g176949 +S'the' +p176951 +tp176952 +a(g176949 +g176951 +S'northern' +p176953 +tp176954 +a(g176951 +g176953 +S'tradition' +p176955 +tp176956 +a(g176953 +g176955 +S'in' +p176957 +tp176958 +a(g176955 +g176957 +S'art;' +p176959 +tp176960 +a(g176957 +g176959 +S'the' +p176961 +tp176962 +a(g176959 +g176961 +S'format' +p176963 +tp176964 +a(g176961 +g176963 +S'and' +p176965 +tp176966 +a(g176963 +g176965 +S'details' +p176967 +tp176968 +a(g176965 +g176967 +S'of' +p176969 +tp176970 +a(g176967 +g176969 +S'the' +p176971 +tp176972 +a(g176969 +g176971 +S'enthroned' +p176973 +tp176974 +a(g176971 +g176973 +S'madonna' +p176975 +tp176976 +a(g176973 +g176975 +S'theme' +p176977 +tp176978 +a(g176975 +g176977 +S'recall' +p176979 +tp176980 +a(g176977 +g176979 +S'jan' +p176981 +tp176982 +a(g176979 +g176981 +S'van' +p176983 +tp176984 +a(g176981 +g176983 +S'eyck.' +p176985 +tp176986 +a(g176983 +g176985 +S'it' +p176987 +tp176988 +a(g176985 +g176987 +S'is' +p176989 +tp176990 +a(g176987 +g176989 +S'believed' +p176991 +tp176992 +a(g176989 +g176991 +S'that' +p176993 +tp176994 +a(g176991 +g176993 +S'memling' +p176995 +tp176996 +a(g176993 +g176995 +S'worked' +p176997 +tp176998 +a(g176995 +g176997 +S'in' +p176999 +tp177000 +a(g176997 +g176999 +S'the' +p177001 +tp177002 +a(g176999 +g177001 +S'studio' +p177003 +tp177004 +a(g177001 +g177003 +S'of' +p177005 +tp177006 +a(g177003 +g177005 +S'rogier' +p177007 +tp177008 +a(g177005 +g177007 +S'van' +p177009 +tp177010 +a(g177007 +g177009 +S'der' +p177011 +tp177012 +a(g177009 +g177011 +S'weyden' +p177013 +tp177014 +a(g177011 +g177013 +S'at' +p177015 +tp177016 +a(g177013 +g177015 +S'brussels' +p177017 +tp177018 +a(g177015 +g177017 +S'before' +p177019 +tp177020 +a(g177017 +g177019 +S'settling' +p177021 +tp177022 +a(g177019 +g177021 +S'in' +p177023 +tp177024 +a(g177021 +g177023 +S'bruges;' +p177025 +tp177026 +a(g177023 +g177025 +S'here,' +p177027 +tp177028 +a(g177025 +g177027 +S'he' +p177029 +tp177030 +a(g177027 +g177029 +S'adopted' +p177031 +tp177032 +a(g177029 +g177031 +S"rogier's" +p177033 +tp177034 +a(g177031 +g177033 +S'angular' +p177035 +tp177036 +a(g177033 +g177035 +S'figural' +p177037 +tp177038 +a(g177035 +g177037 +S'types' +p177039 +tp177040 +a(g177037 +g177039 +S'clothed' +p177041 +tp177042 +a(g177039 +g177041 +S'in' +p177043 +tp177044 +a(g177041 +g177043 +S'heavy,' +p177045 +tp177046 +a(g177043 +g177045 +S'crisp' +p177047 +tp177048 +a(g177045 +g177047 +S'drapery,' +p177049 +tp177050 +a(g177047 +g177049 +S'but' +p177051 +tp177052 +a(g177049 +g177051 +S'transformed' +p177053 +tp177054 +a(g177051 +g177053 +S'the' +p177055 +tp177056 +a(g177053 +g177055 +S'older' +p177057 +tp177058 +a(g177055 +g177057 +S"artist's" +p177059 +tp177060 +a(g177057 +g177059 +S'dramatic' +p177061 +tp177062 +a(g177059 +g177061 +S'intensity' +p177063 +tp177064 +a(g177061 +g177063 +S'into' +p177065 +tp177066 +a(g177063 +g177065 +S'a' +p177067 +tp177068 +a(g177065 +g177067 +S'calm' +p177069 +tp177070 +a(g177067 +g177069 +S'and' +p177071 +tp177072 +a(g177069 +g177071 +S'graceful' +p177073 +tp177074 +a(g177071 +g177073 +S'elegance.' +p177075 +tp177076 +a(g177073 +g177075 +S'the' +p177077 +tp177078 +a(g177075 +g177077 +S'framing' +p177079 +tp177080 +a(g177077 +g177079 +S'archway' +p177081 +tp177082 +a(g177079 +g177081 +S'was' +p177083 +tp177084 +a(g177081 +g177083 +S'a' +p177085 +tp177086 +a(g177083 +g177085 +S'device' +p177087 +tp177088 +a(g177085 +g177087 +S'used' +p177089 +tp177090 +a(g177087 +g177089 +S'by' +p177091 +tp177092 +a(g177089 +g177091 +S'a' +p177093 +tp177094 +a(g177091 +g177093 +S'number' +p177095 +tp177096 +a(g177093 +g177095 +S'of' +p177097 +tp177098 +a(g177095 +g177097 +S'flemish' +p177099 +tp177100 +a(g177097 +g177099 +S'painters' +p177101 +tp177102 +a(g177099 +g177101 +S'including' +p177103 +tp177104 +a(g177101 +g177103 +S'rogier.' +p177105 +tp177106 +a(g177103 +g177105 +S'while' +p177107 +tp177108 +a(g177105 +g177107 +S'combining' +p177109 +tp177110 +a(g177107 +g177109 +S'various' +p177111 +tp177112 +a(g177109 +g177111 +S'influences,' +p177113 +tp177114 +a(g177111 +g177113 +S'hans' +p177115 +tp177116 +a(g177113 +g177115 +S"memling's" +p177117 +tp177118 +a(g177115 +g177117 +S'own' +p177119 +tp177120 +a(g177117 +g177119 +S'tender' +p177121 +tp177122 +a(g177119 +g177121 +S'and' +p177123 +tp177124 +a(g177121 +g177123 +S'pious' +p177125 +tp177126 +a(g177123 +g177125 +S'sentiment' +p177127 +tp177128 +a(g177125 +g177127 +S'made' +p177129 +tp177130 +a(g177127 +g177129 +S'him' +p177131 +tp177132 +a(g177129 +g177131 +S'the' +p177133 +tp177134 +a(g177131 +g177133 +S'most' +p177135 +tp177136 +a(g177133 +g177135 +S'popular' +p177137 +tp177138 +a(g177135 +g177137 +S'artist' +p177139 +tp177140 +a(g177137 +g177139 +S'of' +p177141 +tp177142 +a(g177139 +g177141 +S'his' +p177143 +tp177144 +a(g177141 +g177143 +S'day' +p177145 +tp177146 +a(g177143 +g177145 +S'in' +p177147 +tp177148 +a(g177145 +g177147 +S'bruges.' +p177149 +tp177150 +a(g177147 +g177149 +S'giovanni' +p177151 +tp177152 +a(g177149 +g177151 +S'bellini' +p177153 +tp177154 +a(g177151 +g177153 +S'painted' +p177155 +tp177156 +a(g177153 +g177155 +S'half-length' +p177157 +tp177158 +a(g177155 +g177157 +S'images' +p177159 +tp177160 +a(g177157 +g177159 +S'of' +p177161 +tp177162 +a(g177159 +g177161 +S'the' +p177163 +tp177164 +a(g177161 +g177163 +S'virgin' +p177165 +tp177166 +a(g177163 +g177165 +S'and' +p177167 +tp177168 +a(g177165 +g177167 +S'child' +p177169 +tp177170 +a(g177167 +g177169 +S'throughout' +p177171 +tp177172 +a(g177169 +g177171 +S'his' +p177173 +tp177174 +a(g177171 +g177173 +S'long' +p177175 +tp177176 +a(g177173 +g177175 +S'career.' +p177177 +tp177178 +a(g177175 +g177177 +S'this' +p177179 +tp177180 +a(g177177 +g177179 +S'one,' +p177181 +tp177182 +a(g177179 +g177181 +S'with' +p177183 +tp177184 +a(g177181 +g177183 +S'its' +p177185 +tp177186 +a(g177183 +g177185 +S'somber' +p177187 +tp177188 +a(g177185 +g177187 +S'color' +p177189 +tp177190 +a(g177187 +g177189 +S'and' +p177191 +tp177192 +a(g177189 +g177191 +S'avoidance' +p177193 +tp177194 +a(g177191 +g177193 +S'of' +p177195 +tp177196 +a(g177193 +g177195 +S'decoration,' +p177197 +tp177198 +a(g177195 +g177197 +S'resembles' +p177199 +tp177200 +a(g177197 +g177199 +S'the' +p177201 +tp177202 +a(g177199 +g177201 +S'focused' +p177203 +tp177204 +a(g177201 +g177203 +S'intensity' +p177205 +tp177206 +a(g177203 +g177205 +S'of' +p177207 +tp177208 +a(g177205 +g177207 +S'an' +p177209 +tp177210 +a(g177207 +g177209 +S'icon.' +p177211 +tp177212 +a(g177209 +g177211 +S'the' +p177213 +tp177214 +a(g177211 +g177213 +S'austerity' +p177215 +tp177216 +a(g177213 +g177215 +S'of' +p177217 +tp177218 +a(g177215 +g177217 +S'this' +p177219 +tp177220 +a(g177217 +g177219 +S'image,' +p177221 +tp177222 +a(g177219 +g177221 +S'which' +p177223 +tp177224 +a(g177221 +g177223 +S'markedly' +p177225 +tp177226 +a(g177223 +g177225 +S'contrasts' +p177227 +tp177228 +a(g177225 +g177227 +S'with' +p177229 +tp177230 +a(g177227 +g177229 +S'the' +p177231 +tp177232 +a(g177229 +g177231 +S"city's" +p177233 +tp177234 +a(g177231 +g177233 +S'celebrated' +p177235 +tp177236 +a(g177233 +g177235 +S'luxury,' +p177237 +tp177238 +a(g177235 +g177237 +S'is' +p177239 +tp177240 +a(g177237 +g177239 +S'a' +p177241 +tp177242 +a(g177239 +g177241 +S'legacy' +p177243 +tp177244 +a(g177241 +g177243 +S'of' +p177245 +tp177246 +a(g177243 +g177245 +S'byzantine' +p177247 +tp177248 +a(g177245 +g177247 +S'art,' +p177249 +tp177250 +a(g177247 +g177249 +S'a' +p177251 +tp177252 +a(g177249 +g177251 +S'tradition' +p177253 +tp177254 +a(g177251 +g177253 +S'that' +p177255 +tp177256 +a(g177253 +g177255 +S'was' +p177257 +tp177258 +a(g177255 +g177257 +S'reinforced' +p177259 +tp177260 +a(g177257 +g177259 +S'when' +p177261 +tp177262 +a(g177259 +g177261 +S'displaced' +p177263 +tp177264 +a(g177261 +g177263 +S'greek' +p177265 +tp177266 +a(g177263 +g177265 +S'artists' +p177267 +tp177268 +a(g177265 +g177267 +S'immigrated' +p177269 +tp177270 +a(g177267 +g177269 +S'to' +p177271 +tp177272 +a(g177269 +g177271 +S'venice' +p177273 +tp177274 +a(g177271 +g177273 +S'following' +p177275 +tp177276 +a(g177273 +g177275 +S'the' +p177277 +tp177278 +a(g177275 +g177277 +S'fall' +p177279 +tp177280 +a(g177277 +g177279 +S'of' +p177281 +tp177282 +a(g177279 +g177281 +S'constantinople' +p177283 +tp177284 +a(g177281 +g177283 +S'to' +p177285 +tp177286 +a(g177283 +g177285 +S'the' +p177287 +tp177288 +a(g177285 +g177287 +S'ottoman' +p177289 +tp177290 +a(g177287 +g177289 +S'turks' +p177291 +tp177292 +a(g177289 +g177291 +S'in' +p177293 +tp177294 +a(g177291 +g177293 +S'1453.' +p177295 +tp177296 +a(g177293 +g177295 +S'the' +p177297 +tp177298 +a(g177295 +g177297 +S'virgin' +p177299 +tp177300 +a(g177297 +g177299 +S'possesses' +p177301 +tp177302 +a(g177299 +g177301 +S'the' +p177303 +tp177304 +a(g177301 +g177303 +S'ethereal' +p177305 +tp177306 +a(g177303 +g177305 +S'geometry' +p177307 +tp177308 +a(g177305 +g177307 +S'of' +p177309 +tp177310 +a(g177307 +g177309 +S'a' +p177311 +tp177312 +a(g177309 +g177311 +S'byzantine' +p177313 +tp177314 +a(g177311 +g177313 +S'madonna.' +p177315 +tp177316 +a(g177313 +g177315 +S'compare' +p177317 +tp177318 +a(g177315 +g177317 +S'her' +p177319 +tp177320 +a(g177317 +g177319 +S'delicate,' +p177321 +tp177322 +a(g177319 +g177321 +S'oval' +p177323 +tp177324 +a(g177321 +g177323 +S'face' +p177325 +tp177326 +a(g177323 +g177325 +S'and' +p177327 +tp177328 +a(g177325 +g177327 +S'arched' +p177329 +tp177330 +a(g177327 +g177329 +S'brows,' +p177331 +tp177332 +a(g177329 +g177331 +S'long' +p177333 +tp177334 +a(g177331 +g177333 +S'nose' +p177335 +tp177336 +a(g177333 +g177335 +S'and' +p177337 +tp177338 +a(g177335 +g177337 +S'small' +p177339 +tp177340 +a(g177337 +g177339 +S'chin,' +p177341 +tp177342 +a(g177339 +g177341 +S'with' +p177343 +tp177344 +a(g177341 +g177343 +S'the' +p177345 +tp177346 +a(g177343 +g177345 +S'more' +p177347 +tp177348 +a(g177345 +g177347 +S'robust' +p177349 +tp177350 +a(g177347 +g177349 +S'features' +p177351 +tp177352 +a(g177349 +g177351 +S'of' +p177353 +tp177354 +a(g177351 +g177353 +S'girolamo' +p177355 +tp177356 +a(g177353 +g177355 +S'was' +p177357 +tp177358 +a(g177355 +g177357 +S'the' +p177359 +tp177360 +a(g177357 +g177359 +S'son' +p177361 +tp177362 +a(g177359 +g177361 +S'of' +p177363 +tp177364 +a(g177361 +g177363 +S'artist' +p177365 +tp177366 +a(g177363 +g177365 +S'the' +p177367 +tp177368 +a(g177365 +g177367 +S'young' +p177369 +tp177370 +a(g177367 +g177369 +S"woman's" +p177371 +tp177372 +a(g177369 +g177371 +S'crisp' +p177373 +tp177374 +a(g177371 +g177373 +S'silhouette,' +p177375 +tp177376 +a(g177373 +g177375 +S'which' +p177377 +tp177378 +a(g177375 +g177377 +S'creates' +p177379 +tp177380 +a(g177377 +g177379 +S'a' +p177381 +tp177382 +a(g177379 +g177381 +S'decorative,' +p177383 +tp177384 +a(g177381 +g177383 +S'almost' +p177385 +tp177386 +a(g177383 +g177385 +S'abstract' +p177387 +tp177388 +a(g177385 +g177387 +S'play' +p177389 +tp177390 +a(g177387 +g177389 +S'against' +p177391 +tp177392 +a(g177389 +g177391 +S'the' +p177393 +tp177394 +a(g177391 +g177393 +S'flat' +p177395 +tp177396 +a(g177393 +g177395 +S'background,' +p177397 +tp177398 +a(g177395 +g177397 +S'would' +p177399 +tp177400 +a(g177397 +g177399 +S'have' +p177401 +tp177402 +a(g177399 +g177401 +S'been' +p177403 +tp177404 +a(g177401 +g177403 +S'familiar' +p177405 +tp177406 +a(g177403 +g177405 +S'to' +p177407 +tp177408 +a(g177405 +g177407 +S'patrons' +p177409 +tp177410 +a(g177407 +g177409 +S'of' +p177411 +tp177412 +a(g177409 +g177411 +S'benvenuto.' +p177413 +tp177414 +a(g177411 +g177413 +S'but' +p177415 +tp177416 +a(g177413 +g177415 +S'other' +p177417 +tp177418 +a(g177415 +g177417 +S'aspects' +p177419 +tp177420 +a(g177417 +g177419 +S'of' +p177421 +tp177422 +a(g177419 +g177421 +S"girolamo's" +p177423 +tp177424 +a(g177421 +g177423 +S'picture' +p177425 +tp177426 +a(g177423 +g177425 +S'depart' +p177427 +tp177428 +a(g177425 +g177427 +S'from' +p177429 +tp177430 +a(g177427 +g177429 +S'his' +p177431 +tp177432 +a(g177429 +g177431 +S"father's" +p177433 +tp177434 +a(g177431 +g177433 +S'style—and' +p177435 +tp177436 +a(g177433 +g177435 +S'from' +p177437 +tp177438 +a(g177435 +g177437 +S'long-standing' +p177439 +tp177440 +a(g177437 +g177439 +S'sienese' +p177441 +tp177442 +a(g177439 +g177441 +S'tradition.' +p177443 +tp177444 +a(g177441 +g177443 +S'compare,' +p177445 +tp177446 +a(g177443 +g177445 +S'for' +p177447 +tp177448 +a(g177445 +g177447 +S'example,' +p177449 +tp177450 +a(g177447 +g177449 +S'its' +p177451 +tp177452 +a(g177449 +g177451 +S'warm' +p177453 +tp177454 +a(g177451 +g177453 +S'palette' +p177455 +tp177456 +a(g177453 +g177455 +S'and' +p177457 +tp177458 +a(g177455 +g177457 +S'dark' +p177459 +tp177460 +a(g177457 +g177459 +S'colors' +p177461 +tp177462 +a(g177459 +g177461 +S'with' +p177463 +tp177464 +a(g177461 +g177463 +S'the' +p177465 +tp177466 +a(g177463 +g177465 +S'brighter' +p177467 +tp177468 +a(g177465 +g177467 +S'tones' +p177469 +tp177470 +a(g177467 +g177469 +S'of' +p177471 +tp177472 +a(g177469 +g177471 +S'other' +p177473 +tp177474 +a(g177471 +g177473 +S'paintings' +p177475 +tp177476 +a(g177473 +g177475 +S'here.' +p177477 +tp177478 +a(g177475 +g177477 +S"girolamo's" +p177479 +tp177480 +a(g177477 +g177479 +S'pursuit' +p177481 +tp177482 +a(g177479 +g177481 +S'of' +p177483 +tp177484 +a(g177481 +g177483 +S'his' +p177485 +tp177486 +a(g177483 +g177485 +S"father's" +p177487 +tp177488 +a(g177485 +g177487 +S'trade' +p177489 +tp177490 +a(g177487 +g177489 +S'was' +p177491 +tp177492 +a(g177489 +g177491 +S'not' +p177493 +tp177494 +a(g177491 +g177493 +S'unusual.' +p177495 +tp177496 +a(g177493 +g177495 +S"artists'" +p177497 +tp177498 +a(g177495 +g177497 +S'sons' +p177499 +tp177500 +a(g177497 +g177499 +S'were' +p177501 +tp177502 +a(g177499 +g177501 +S'encouraged' +p177503 +tp177504 +a(g177501 +g177503 +S'to' +p177505 +tp177506 +a(g177503 +g177505 +S'enter' +p177507 +tp177508 +a(g177505 +g177507 +S'their' +p177509 +tp177510 +a(g177507 +g177509 +S"fathers'" +p177511 +tp177512 +a(g177509 +g177511 +S'shops,' +p177513 +tp177514 +a(g177511 +g177513 +S'as' +p177515 +tp177516 +a(g177513 +g177515 +S'were' +p177517 +tp177518 +a(g177515 +g177517 +S'the' +p177519 +tp177520 +a(g177517 +g177519 +S'sons' +p177521 +tp177522 +a(g177519 +g177521 +S'of' +p177523 +tp177524 +a(g177521 +g177523 +S'all' +p177525 +tp177526 +a(g177523 +g177525 +S'craftsmen.' +p177527 +tp177528 +a(g177525 +g177527 +S'it' +p177529 +tp177530 +a(g177527 +g177529 +S'eliminated' +p177531 +tp177532 +a(g177529 +g177531 +S'the' +p177533 +tp177534 +a(g177531 +g177533 +S'need' +p177535 +tp177536 +a(g177533 +g177535 +S'to' +p177537 +tp177538 +a(g177535 +g177537 +S'pay' +p177539 +tp177540 +a(g177537 +g177539 +S'apprentice' +p177541 +tp177542 +a(g177539 +g177541 +S'wages' +p177543 +tp177544 +a(g177541 +g177543 +S'and,' +p177545 +tp177546 +a(g177543 +g177545 +S'in' +p177547 +tp177548 +a(g177545 +g177547 +S'many' +p177549 +tp177550 +a(g177547 +g177549 +S'cities,' +p177551 +tp177552 +a(g177549 +g177551 +S'saved' +p177553 +tp177554 +a(g177551 +g177553 +S'on' +p177555 +tp177556 +a(g177553 +g177555 +S'guild' +p177557 +tp177558 +a(g177555 +g177557 +S'fees,' +p177559 +tp177560 +a(g177557 +g177559 +S'as' +p177561 +tp177562 +a(g177559 +g177561 +S'sons' +p177563 +tp177564 +a(g177561 +g177563 +S'were' +p177565 +tp177566 +a(g177563 +g177565 +S'assessed' +p177567 +tp177568 +a(g177565 +g177567 +S'lower' +p177569 +tp177570 +a(g177567 +g177569 +S'admission.' +p177571 +tp177572 +a(g177569 +g177571 +S'sons' +p177573 +tp177574 +a(g177571 +g177573 +S'might' +p177575 +tp177576 +a(g177573 +g177575 +S'be' +p177577 +tp177578 +a(g177575 +g177577 +S'expected' +p177579 +tp177580 +a(g177577 +g177579 +S'to' +p177581 +tp177582 +a(g177579 +g177581 +S'display' +p177583 +tp177584 +a(g177581 +g177583 +S'some' +p177585 +tp177586 +a(g177583 +g177585 +S'talent—but' +p177587 +tp177588 +a(g177585 +g177587 +S'this' +p177589 +tp177590 +a(g177587 +g177589 +S'was' +p177591 +tp177592 +a(g177589 +g177591 +S'not' +p177593 +tp177594 +a(g177591 +g177593 +S'necessarily' +p177595 +tp177596 +a(g177593 +g177595 +S'a' +p177597 +tp177598 +a(g177595 +g177597 +S'requirement.' +p177599 +tp177600 +a(g177597 +g177599 +S'long' +p177601 +tp177602 +a(g177599 +g177601 +S'training' +p177603 +tp177604 +a(g177601 +g177603 +S'produced' +p177605 +tp177606 +a(g177603 +g177605 +S'skilled' +p177607 +tp177608 +a(g177605 +g177607 +S'artisans' +p177609 +tp177610 +a(g177607 +g177609 +S'perfectly' +p177611 +tp177612 +a(g177609 +g177611 +S'capable' +p177613 +tp177614 +a(g177611 +g177613 +S'of' +p177615 +tp177616 +a(g177613 +g177615 +S'meeting' +p177617 +tp177618 +a(g177615 +g177617 +S"clients'" +p177619 +tp177620 +a(g177617 +g177619 +S'demands.' +p177621 +tp177622 +a(g177619 +g177621 +S'most' +p177623 +tp177624 +a(g177621 +g177623 +S'renaissance' +p177625 +tp177626 +a(g177623 +g177625 +S'painters' +p177627 +tp177628 +a(g177625 +g177627 +S'and' +p177629 +tp177630 +a(g177627 +g177629 +S'sculptors' +p177631 +tp177632 +a(g177629 +g177631 +S'were' +p177633 +tp177634 +a(g177631 +g177633 +S'from' +p177635 +tp177636 +a(g177633 +g177635 +S"tradesmen's" +p177637 +tp177638 +a(g177635 +g177637 +S'families' +p177639 +tp177640 +a(g177637 +g177639 +S'of' +p177641 +tp177642 +a(g177639 +g177641 +S'one' +p177643 +tp177644 +a(g177641 +g177643 +S'kind' +p177645 +tp177646 +a(g177643 +g177645 +S'or' +p177647 +tp177648 +a(g177645 +g177647 +S'another,' +p177649 +tp177650 +a(g177647 +g177649 +S'if' +p177651 +tp177652 +a(g177649 +g177651 +S'not' +p177653 +tp177654 +a(g177651 +g177653 +S'artists,' +p177655 +tp177656 +a(g177653 +g177655 +S'then' +p177657 +tp177658 +a(g177655 +g177657 +S'related' +p177659 +tp177660 +a(g177657 +g177659 +S'occupations' +p177661 +tp177662 +a(g177659 +g177661 +S'like' +p177663 +tp177664 +a(g177661 +g177663 +S'dyers' +p177665 +tp177666 +a(g177663 +g177665 +S'or' +p177667 +tp177668 +a(g177665 +g177667 +S'masons.' +p177669 +tp177670 +a(g177667 +g177669 +S'a' +p177671 +tp177672 +a(g177669 +g177671 +S'few' +p177673 +tp177674 +a(g177671 +g177673 +S'came' +p177675 +tp177676 +a(g177673 +g177675 +S'from' +p177677 +tp177678 +a(g177675 +g177677 +S'noble' +p177679 +tp177680 +a(g177677 +g177679 +S'families,' +p177681 +tp177682 +a(g177679 +g177681 +S'the' +p177683 +tp177684 +a(g177681 +g177683 +S'short' +p177685 +tp177686 +a(g177683 +g177685 +S'biblical' +p177687 +tp177688 +a(g177685 +g177687 +S'account' +p177689 +tp177690 +a(g177687 +g177689 +S'of' +p177691 +tp177692 +a(g177689 +g177691 +S'the' +p177693 +tp177694 +a(g177691 +g177693 +S'flight' +p177695 +tp177696 +a(g177693 +g177695 +S'into' +p177697 +tp177698 +a(g177695 +g177697 +S'egypt' +p177699 +tp177700 +a(g177697 +g177699 +S'(matt.' +p177701 +tp177702 +a(g177699 +g177701 +S'2:13–14)' +p177703 +tp177704 +a(g177701 +g177703 +S'was' +p177705 +tp177706 +a(g177703 +g177705 +S'elaborated' +p177707 +tp177708 +a(g177705 +g177707 +S'upon' +p177709 +tp177710 +a(g177707 +g177709 +S'by' +p177711 +tp177712 +a(g177709 +g177711 +S'early' +p177713 +tp177714 +a(g177711 +g177713 +S'christian' +p177715 +tp177716 +a(g177713 +g177715 +S'and' +p177717 +tp177718 +a(g177715 +g177717 +S'medieval' +p177719 +tp177720 +a(g177717 +g177719 +S'theologians.' +p177721 +tp177722 +a(g177719 +g177721 +S'in' +p177723 +tp177724 +a(g177721 +g177723 +S'one' +p177725 +tp177726 +a(g177723 +g177725 +S'of' +p177727 +tp177728 +a(g177725 +g177727 +S'these' +p177729 +tp177730 +a(g177727 +g177729 +S'apocryphal' +p177731 +tp177732 +a(g177729 +g177731 +S'legends,' +p177733 +tp177734 +a(g177731 +g177733 +S'the' +p177735 +tp177736 +a(g177733 +g177735 +S'weary' +p177737 +tp177738 +a(g177735 +g177737 +S'family' +p177739 +tp177740 +a(g177737 +g177739 +S'paused' +p177741 +tp177742 +a(g177739 +g177741 +S'during' +p177743 +tp177744 +a(g177741 +g177743 +S'their' +p177745 +tp177746 +a(g177743 +g177745 +S'journey' +p177747 +tp177748 +a(g177745 +g177747 +S'after' +p177749 +tp177750 +a(g177747 +g177749 +S'three' +p177751 +tp177752 +a(g177749 +g177751 +S'days' +p177753 +tp177754 +a(g177751 +g177753 +S'of' +p177755 +tp177756 +a(g177753 +g177755 +S'travel.' +p177757 +tp177758 +a(g177755 +g177757 +S'the' +p177759 +tp177760 +a(g177757 +g177759 +S'virgin' +p177761 +tp177762 +a(g177759 +g177761 +S'longed' +p177763 +tp177764 +a(g177761 +g177763 +S'for' +p177765 +tp177766 +a(g177763 +g177765 +S'food,' +p177767 +tp177768 +a(g177765 +g177767 +S'but' +p177769 +tp177770 +a(g177767 +g177769 +S'the' +p177771 +tp177772 +a(g177769 +g177771 +S'date–palm' +p177773 +tp177774 +a(g177771 +g177773 +S'branches' +p177775 +tp177776 +a(g177773 +g177775 +S'were' +p177777 +tp177778 +a(g177775 +g177777 +S'too' +p177779 +tp177780 +a(g177777 +g177779 +S'high' +p177781 +tp177782 +a(g177779 +g177781 +S'for' +p177783 +tp177784 +a(g177781 +g177783 +S'joseph' +p177785 +tp177786 +a(g177783 +g177785 +S'to' +p177787 +tp177788 +a(g177785 +g177787 +S'pick' +p177789 +tp177790 +a(g177787 +g177789 +S'any' +p177791 +tp177792 +a(g177789 +g177791 +S'fruit.' +p177793 +tp177794 +a(g177791 +g177793 +S'thereupon' +p177795 +tp177796 +a(g177793 +g177795 +S'jesus' +p177797 +tp177798 +a(g177795 +g177797 +S'commanded' +p177799 +tp177800 +a(g177797 +g177799 +S'the' +p177801 +tp177802 +a(g177799 +g177801 +S'tree' +p177803 +tp177804 +a(g177801 +g177803 +S'to' +p177805 +tp177806 +a(g177803 +g177805 +S'lower' +p177807 +tp177808 +a(g177805 +g177807 +S'its' +p177809 +tp177810 +a(g177807 +g177809 +S'branches.' +p177811 +tp177812 +a(g177809 +g177811 +S'david' +p177813 +tp177814 +a(g177811 +g177813 +S'deemphasized' +p177815 +tp177816 +a(g177813 +g177815 +S'this' +p177817 +tp177818 +a(g177815 +g177817 +S'miracle' +p177819 +tp177820 +a(g177817 +g177819 +S'by' +p177821 +tp177822 +a(g177819 +g177821 +S'giving' +p177823 +tp177824 +a(g177821 +g177823 +S'joseph' +p177825 +tp177826 +a(g177823 +g177825 +S'a' +p177827 +tp177828 +a(g177825 +g177827 +S'sturdy' +p177829 +tp177830 +a(g177827 +g177829 +S'stick' +p177831 +tp177832 +a(g177829 +g177831 +S'and' +p177833 +tp177834 +a(g177831 +g177833 +S'by' +p177835 +tp177836 +a(g177833 +g177835 +S'replacing' +p177837 +tp177838 +a(g177835 +g177837 +S'the' +p177839 +tp177840 +a(g177837 +g177839 +S'date' +p177841 +tp177842 +a(g177839 +g177841 +S'palm' +p177843 +tp177844 +a(g177841 +g177843 +S'with' +p177845 +tp177846 +a(g177843 +g177845 +S'a' +p177847 +tp177848 +a(g177845 +g177847 +S'flemish' +p177849 +tp177850 +a(g177847 +g177849 +S'chestnut' +p177851 +tp177852 +a(g177849 +g177851 +S'tree,' +p177853 +tp177854 +a(g177851 +g177853 +S'but' +p177855 +tp177856 +a(g177853 +g177855 +S'a' +p177857 +tp177858 +a(g177855 +g177857 +S'sixteenth–century' +p177859 +tp177860 +a(g177857 +g177859 +S'audience' +p177861 +tp177862 +a(g177859 +g177861 +S'would' +p177863 +tp177864 +a(g177861 +g177863 +S'have' +p177865 +tp177866 +a(g177863 +g177865 +S'remembered' +p177867 +tp177868 +a(g177865 +g177867 +S'the' +p177869 +tp177870 +a(g177867 +g177869 +S'apocryphal' +p177871 +tp177872 +a(g177869 +g177871 +S'story.' +p177873 +tp177874 +a(g177871 +g177873 +S'there' +p177875 +tp177876 +a(g177873 +g177875 +S'are' +p177877 +tp177878 +a(g177875 +g177877 +S'also' +p177879 +tp177880 +a(g177877 +g177879 +S'indications' +p177881 +tp177882 +a(g177879 +g177881 +S'of' +p177883 +tp177884 +a(g177881 +g177883 +S'the' +p177885 +tp177886 +a(g177883 +g177885 +S'special' +p177887 +tp177888 +a(g177885 +g177887 +S'significance' +p177889 +tp177890 +a(g177887 +g177889 +S'of' +p177891 +tp177892 +a(g177889 +g177891 +S'the' +p177893 +tp177894 +a(g177891 +g177893 +S'family:' +p177895 +tp177896 +a(g177893 +g177895 +S'the' +p177897 +tp177898 +a(g177895 +g177897 +S'madonna' +p177899 +tp177900 +a(g177897 +g177899 +S'wears' +p177901 +tp177902 +a(g177899 +g177901 +S'robes' +p177903 +tp177904 +a(g177901 +g177903 +S'in' +p177905 +tp177906 +a(g177903 +g177905 +S'her' +p177907 +tp177908 +a(g177905 +g177907 +S'symbolic' +p177909 +tp177910 +a(g177907 +g177909 +S'colors' +p177911 +tp177912 +a(g177909 +g177911 +S'of' +p177913 +tp177914 +a(g177911 +g177913 +S'red' +p177915 +tp177916 +a(g177913 +g177915 +S'and' +p177917 +tp177918 +a(g177915 +g177917 +S'blue;' +p177919 +tp177920 +a(g177917 +g177919 +S'fine' +p177921 +tp177922 +a(g177919 +g177921 +S'rays' +p177923 +tp177924 +a(g177921 +g177923 +S'of' +p177925 +tp177926 +a(g177923 +g177925 +S'golden' +p177927 +tp177928 +a(g177925 +g177927 +S'light' +p177929 +tp177930 +a(g177927 +g177929 +S'emanate' +p177931 +tp177932 +a(g177929 +g177931 +S'from' +p177933 +tp177934 +a(g177931 +g177933 +S'the' +p177935 +tp177936 +a(g177933 +g177935 +S"mother's" +p177937 +tp177938 +a(g177935 +g177937 +S'head' +p177939 +tp177940 +a(g177937 +g177939 +S'and' +p177941 +tp177942 +a(g177939 +g177941 +S'that' +p177943 +tp177944 +a(g177941 +g177943 +S'of' +p177945 +tp177946 +a(g177943 +g177945 +S'the' +p177947 +tp177948 +a(g177945 +g177947 +S'child;' +p177949 +tp177950 +a(g177947 +g177949 +S'and' +p177951 +tp177952 +a(g177949 +g177951 +S'the' +p177953 +tp177954 +a(g177951 +g177953 +S'bunch' +p177955 +tp177956 +a(g177953 +g177955 +S'of' +p177957 +tp177958 +a(g177955 +g177957 +S'grapes' +p177959 +tp177960 +a(g177957 +g177959 +S'held' +p177961 +tp177962 +a(g177959 +g177961 +S'by' +p177963 +tp177964 +a(g177961 +g177963 +S'the' +p177965 +tp177966 +a(g177963 +g177965 +S'madonna' +p177967 +tp177968 +a(g177965 +g177967 +S'is' +p177969 +tp177970 +a(g177967 +g177969 +S'a' +p177971 +tp177972 +a(g177969 +g177971 +S'well–known' +p177973 +tp177974 +a(g177971 +g177973 +S'symbol' +p177975 +tp177976 +a(g177973 +g177975 +S'of' +p177977 +tp177978 +a(g177975 +g177977 +S'the' +p177979 +tp177980 +a(g177977 +g177979 +S'eucharist.' +p177981 +tp177982 +a(g177979 +g177981 +S'david' +p177983 +tp177984 +a(g177981 +g177983 +S'created' +p177985 +tp177986 +a(g177983 +g177985 +S'a' +p177987 +tp177988 +a(g177985 +g177987 +S'mood' +p177989 +tp177990 +a(g177987 +g177989 +S'of' +p177991 +tp177992 +a(g177989 +g177991 +S'calm' +p177993 +tp177994 +a(g177991 +g177993 +S'equilibrium.' +p177995 +tp177996 +a(g177993 +g177995 +S'the' +p177997 +tp177998 +a(g177995 +g177997 +S'madonna' +p177999 +tp178000 +a(g177997 +g177999 +S'and' +p178001 +tp178002 +a(g177999 +g178001 +S'child' +p178003 +tp178004 +a(g178001 +g178003 +S'are' +p178005 +tp178006 +a(g178003 +g178005 +S'centrally' +p178007 +tp178008 +a(g178005 +g178007 +S'placed,' +p178009 +tp178010 +a(g178007 +g178009 +S'while' +p178011 +tp178012 +a(g178009 +g178011 +S'receding' +p178013 +tp178014 +a(g178011 +g178013 +S'diagonals' +p178015 +tp178016 +a(g178013 +g178015 +S'and' +p178017 +tp178018 +a(g178015 +g178017 +S'alternating' +p178019 +tp178020 +a(g178017 +g178019 +S'bands' +p178021 +tp178022 +a(g178019 +g178021 +S'of' +p178023 +tp178024 +a(g178021 +g178023 +S'light' +p178025 +tp178026 +a(g178023 +g178025 +S'and' +p178027 +tp178028 +a(g178025 +g178027 +S'dark' +p178029 +tp178030 +a(g178027 +g178029 +S'skillfully' +p178031 +tp178032 +a(g178029 +g178031 +S'lead' +p178033 +tp178034 +a(g178031 +g178033 +S'back' +p178035 +tp178036 +a(g178033 +g178035 +S'into' +p178037 +tp178038 +a(g178035 +g178037 +S'the' +p178039 +tp178040 +a(g178037 +g178039 +S'landscape' +p178041 +tp178042 +a(g178039 +g178041 +S'and' +p178043 +tp178044 +a(g178041 +g178043 +S'harmoniously' +p178045 +tp178046 +a(g178043 +g178045 +S'relate' +p178047 +tp178048 +a(g178045 +g178047 +S'the' +p178049 +tp178050 +a(g178047 +g178049 +S'figures' +p178051 +tp178052 +a(g178049 +g178051 +S'to' +p178053 +tp178054 +a(g178051 +g178053 +S'their' +p178055 +tp178056 +a(g178053 +g178055 +S'surroundings.' +p178057 +tp178058 +a(g178055 +g178057 +S'the' +p178059 +tp178060 +a(g178057 +g178059 +S'predominance' +p178061 +tp178062 +a(g178059 +g178061 +S'of' +p178063 +tp178064 +a(g178061 +g178063 +S'the' +p178065 +tp178066 +a(g178063 +g178065 +S'restful' +p178067 +tp178068 +a(g178065 +g178067 +S'color' +p178069 +tp178070 +a(g178067 +g178069 +S'blue' +p178071 +tp178072 +a(g178069 +g178071 +S'throughout' +p178073 +tp178074 +a(g178071 +g178073 +S'the' +p178075 +tp178076 +a(g178073 +g178075 +S'composition' +p178077 +tp178078 +a(g178075 +g178077 +S'unifies' +p178079 +tp178080 +a(g178077 +g178079 +S'the' +p178081 +tp178082 +a(g178079 +g178081 +S'work.' +p178083 +tp178084 +a(g178081 +g178083 +S'all' +p178085 +tp178086 +a(g178083 +g178085 +S'in' +p178087 +tp178088 +a(g178085 +g178087 +S'all,' +p178089 +tp178090 +a(g178087 +g178089 +S'madame' +p178091 +tp178092 +a(g178089 +g178091 +S'vigée' +p178093 +tp178094 +a(g178091 +g178093 +S'le' +p178095 +tp178096 +a(g178093 +g178095 +S'brun' +p178097 +tp178098 +a(g178095 +g178097 +S'was' +p178099 +tp178100 +a(g178097 +g178099 +S'part' +p178101 +tp178102 +a(g178099 +g178101 +S'of' +p178103 +tp178104 +a(g178101 +g178103 +S'the' +p178105 +tp178106 +a(g178103 +g178105 +S'world' +p178107 +tp178108 +a(g178105 +g178107 +S'she' +p178109 +tp178110 +a(g178107 +g178109 +S'painted' +p178111 +tp178112 +a(g178109 +g178111 +S'and,' +p178113 +tp178114 +a(g178111 +g178113 +S'like' +p178115 +tp178116 +a(g178113 +g178115 +S'her' +p178117 +tp178118 +a(g178115 +g178117 +S'aristocratic' +p178119 +tp178120 +a(g178117 +g178119 +S'patrons,' +p178121 +tp178122 +a(g178119 +g178121 +S'was' +p178123 +tp178124 +a(g178121 +g178123 +S'under' +p178125 +tp178126 +a(g178123 +g178125 +S'threat' +p178127 +tp178128 +a(g178125 +g178127 +S'of' +p178129 +tp178130 +a(g178127 +g178129 +S'the' +p178131 +tp178132 +a(g178129 +g178131 +S'guillotine' +p178133 +tp178134 +a(g178131 +g178133 +S'after' +p178135 +tp178136 +a(g178133 +g178135 +S'the' +p178137 +tp178138 +a(g178135 +g178137 +S'revolution.' +p178139 +tp178140 +a(g178137 +g178139 +S'she' +p178141 +tp178142 +a(g178139 +g178141 +S'was' +p178143 +tp178144 +a(g178141 +g178143 +S'forced' +p178145 +tp178146 +a(g178143 +g178145 +S'to' +p178147 +tp178148 +a(g178145 +g178147 +S'flee' +p178149 +tp178150 +a(g178147 +g178149 +S'paris' +p178151 +tp178152 +a(g178149 +g178151 +S'in' +p178153 +tp178154 +a(g178151 +g178153 +S'disguise' +p178155 +tp178156 +a(g178153 +g178155 +S'in' +p178157 +tp178158 +a(g178155 +g178157 +S'1789.' +p178159 +tp178160 +a(g178157 +g178159 +S'she' +p178161 +tp178162 +a(g178159 +g178161 +S'had' +p178163 +tp178164 +a(g178161 +g178163 +S'been' +p178165 +tp178166 +a(g178163 +g178165 +S'first' +p178167 +tp178168 +a(g178165 +g178167 +S'painter' +p178169 +tp178170 +a(g178167 +g178169 +S'to' +p178171 +tp178172 +a(g178169 +g178171 +S'queen' +p178173 +tp178174 +a(g178171 +g178173 +S'marie–antoinette' +p178175 +tp178176 +a(g178173 +g178175 +S'and' +p178177 +tp178178 +a(g178175 +g178177 +S'her' +p178179 +tp178180 +a(g178177 +g178179 +S'personal' +p178181 +tp178182 +a(g178179 +g178181 +S'confidant.' +p178183 +tp178184 +a(g178181 +g178183 +S'the' +p178185 +tp178186 +a(g178183 +g178185 +S'queen' +p178187 +tp178188 +a(g178185 +g178187 +S'had' +p178189 +tp178190 +a(g178187 +g178189 +S'intervened' +p178191 +tp178192 +a(g178189 +g178191 +S'to' +p178193 +tp178194 +a(g178191 +g178193 +S'ensure' +p178195 +tp178196 +a(g178193 +g178195 +S'her' +p178197 +tp178198 +a(g178195 +g178197 +S'election' +p178199 +tp178200 +a(g178197 +g178199 +S'to' +p178201 +tp178202 +a(g178199 +g178201 +S'the' +p178203 +tp178204 +a(g178201 +g178203 +S'royal' +p178205 +tp178206 +a(g178203 +g178205 +S'academy' +p178207 +tp178208 +a(g178205 +g178207 +S'of' +p178209 +tp178210 +a(g178207 +g178209 +S'painting' +p178211 +tp178212 +a(g178209 +g178211 +S'and' +p178213 +tp178214 +a(g178211 +g178213 +S'sculpture,' +p178215 +tp178216 +a(g178213 +g178215 +S'an' +p178217 +tp178218 +a(g178215 +g178217 +S'honor' +p178219 +tp178220 +a(g178217 +g178219 +S'accorded' +p178221 +tp178222 +a(g178219 +g178221 +S'few' +p178223 +tp178224 +a(g178221 +g178223 +S'women.' +p178225 +tp178226 +a(g178223 +g178225 +S'more' +p178227 +tp178228 +a(g178225 +g178227 +S'than' +p178229 +tp178230 +a(g178227 +g178229 +S'two–thirds' +p178231 +tp178232 +a(g178229 +g178231 +S'of' +p178233 +tp178234 +a(g178231 +g178233 +S'vigée' +p178235 +tp178236 +a(g178233 +g178235 +S'le' +p178237 +tp178238 +a(g178235 +g178237 +S"brun's" +p178239 +tp178240 +a(g178237 +g178239 +S'surviving' +p178241 +tp178242 +a(g178239 +g178241 +S'paintings' +p178243 +tp178244 +a(g178241 +g178243 +S'are' +p178245 +tp178246 +a(g178243 +g178245 +S'portraits.' +p178247 +tp178248 +a(g178245 +g178247 +S'most,' +p178249 +tp178250 +a(g178247 +g178249 +S'like' +p178251 +tp178252 +a(g178249 +g178251 +S'this' +p178253 +tp178254 +a(g178251 +g178253 +S'one,' +p178255 +tp178256 +a(g178253 +g178255 +S'are' +p178257 +tp178258 +a(g178255 +g178257 +S'of' +p178259 +tp178260 +a(g178257 +g178259 +S'women' +p178261 +tp178262 +a(g178259 +g178261 +S'and' +p178263 +tp178264 +a(g178261 +g178263 +S'children' +p178265 +tp178266 +a(g178263 +g178265 +S'who' +p178267 +tp178268 +a(g178265 +g178267 +S'are' +p178269 +tp178270 +a(g178267 +g178269 +S'idealized' +p178271 +tp178272 +a(g178269 +g178271 +S'—flattered—into' +p178273 +tp178274 +a(g178271 +g178273 +S'a' +p178275 +tp178276 +a(g178273 +g178275 +S'kind' +p178277 +tp178278 +a(g178275 +g178277 +S'of' +p178279 +tp178280 +a(g178277 +g178279 +S'family' +p178281 +tp178282 +a(g178279 +g178281 +S'resemblance.' +p178283 +tp178284 +a(g178281 +g178283 +S'these' +p178285 +tp178286 +a(g178283 +g178285 +S'unrelated' +p178287 +tp178288 +a(g178285 +g178287 +S'young' +p178289 +tp178290 +a(g178287 +g178289 +S'women,' +p178291 +tp178292 +a(g178289 +g178291 +S'for' +p178293 +tp178294 +a(g178291 +g178293 +S'example,' +p178295 +tp178296 +a(g178293 +g178295 +S'could' +p178297 +tp178298 +a(g178295 +g178297 +S'easily' +p178299 +tp178300 +a(g178297 +g178299 +S'be' +p178301 +tp178302 +a(g178299 +g178301 +S'mistaken' +p178303 +tp178304 +a(g178301 +g178303 +S'for' +p178305 +tp178306 +a(g178303 +g178305 +S'sisters.' +p178307 +tp178308 +a(g178305 +g178307 +S'their' +p178309 +tp178310 +a(g178307 +g178309 +S'garments,' +p178311 +tp178312 +a(g178309 +g178311 +S'airy' +p178313 +tp178314 +a(g178311 +g178313 +S'silks' +p178315 +tp178316 +a(g178313 +g178315 +S'and' +p178317 +tp178318 +a(g178315 +g178317 +S'iridescent' +p178319 +tp178320 +a(g178317 +g178319 +S'taffetas,' +p178321 +tp178322 +a(g178319 +g178321 +S'are' +p178323 +tp178324 +a(g178321 +g178323 +S'almost' +p178325 +tp178326 +a(g178323 +g178325 +S'more' +p178327 +tp178328 +a(g178325 +g178327 +S'individual' +p178329 +tp178330 +a(g178327 +g178329 +S'than' +p178331 +tp178332 +a(g178329 +g178331 +S'their' +p178333 +tp178334 +a(g178331 +g178333 +S'faces,' +p178335 +tp178336 +a(g178333 +g178335 +S'although' +p178337 +tp178338 +a(g178335 +g178337 +S'both' +p178339 +tp178340 +a(g178337 +g178339 +S'women' +p178341 +tp178342 +a(g178339 +g178341 +S'were' +p178343 +tp178344 +a(g178341 +g178343 +S'friends' +p178345 +tp178346 +a(g178343 +g178345 +S'of' +p178347 +tp178348 +a(g178345 +g178347 +S'the' +p178349 +tp178350 +a(g178347 +g178349 +S'artist.' +p178351 +tp178352 +a(g178349 +g178351 +S'the' +p178353 +tp178354 +a(g178351 +g178353 +S'picture' +p178355 +tp178356 +a(g178353 +g178355 +S'was' +p178357 +tp178358 +a(g178355 +g178357 +S'hailed' +p178359 +tp178360 +a(g178357 +g178359 +S'as' +p178361 +tp178362 +a(g178359 +g178361 +S'a' +p178363 +tp178364 +a(g178361 +g178363 +S'tribute' +p178365 +tp178366 +a(g178363 +g178365 +S'to' +p178367 +tp178368 +a(g178365 +g178367 +S'friendship' +p178369 +tp178370 +a(g178367 +g178369 +S'and' +p178371 +tp178372 +a(g178369 +g178371 +S'maternal' +p178373 +tp178374 +a(g178371 +g178373 +S'love' +p178375 +tp178376 +a(g178373 +g178375 +S'when' +p178377 +tp178378 +a(g178375 +g178377 +S'it' +p178379 +tp178380 +a(g178377 +g178379 +S'was' +p178381 +tp178382 +a(g178379 +g178381 +S'shown' +p178383 +tp178384 +a(g178381 +g178383 +S'at' +p178385 +tp178386 +a(g178383 +g178385 +S'the' +p178387 +tp178388 +a(g178385 +g178387 +S'salon' +p178389 +tp178390 +a(g178387 +g178389 +S'of' +p178391 +tp178392 +a(g178389 +g178391 +S'1787.' +p178393 +tp178394 +a(g178391 +g178393 +S'eleanora' +p178395 +tp178396 +a(g178393 +g178395 +S'iselin,' +p178397 +tp178398 +a(g178395 +g178397 +S'a' +p178399 +tp178400 +a(g178397 +g178399 +S'banker’s' +p178401 +tp178402 +a(g178399 +g178401 +S'wife,' +p178403 +tp178404 +a(g178401 +g178403 +S'was' +p178405 +tp178406 +a(g178403 +g178405 +S'portrayed' +p178407 +tp178408 +a(g178405 +g178407 +S'in' +p178409 +tp178410 +a(g178407 +g178409 +S'new' +p178411 +tp178412 +a(g178409 +g178411 +S'york' +p178413 +tp178414 +a(g178411 +g178413 +S'city' +p178415 +tp178416 +a(g178413 +g178415 +S'during' +p178417 +tp178418 +a(g178415 +g178417 +S'one' +p178419 +tp178420 +a(g178417 +g178419 +S'of' +p178421 +tp178422 +a(g178419 +g178421 +S'sargent’s' +p178423 +tp178424 +a(g178421 +g178423 +S'many' +p178425 +tp178426 +a(g178423 +g178425 +S'transatlantic' +p178427 +tp178428 +a(g178425 +g178427 +S'trips.' +p178429 +tp178430 +a(g178427 +g178429 +S'arriving' +p178431 +tp178432 +a(g178429 +g178431 +S'for' +p178433 +tp178434 +a(g178431 +g178433 +S'her' +p178435 +tp178436 +a(g178433 +g178435 +S'first' +p178437 +tp178438 +a(g178435 +g178437 +S'sitting,' +p178439 +tp178440 +a(g178437 +g178439 +S'the' +p178441 +tp178442 +a(g178439 +g178441 +S'sixty-six-year-old' +p178443 +tp178444 +a(g178441 +g178443 +S'matron' +p178445 +tp178446 +a(g178443 +g178445 +S'was' +p178447 +tp178448 +a(g178445 +g178447 +S'appalled' +p178449 +tp178450 +a(g178447 +g178449 +S'when' +p178451 +tp178452 +a(g178449 +g178451 +S'sargent' +p178453 +tp178454 +a(g178451 +g178453 +S'insisted' +p178455 +tp178456 +a(g178453 +g178455 +S'that' +p178457 +tp178458 +a(g178455 +g178457 +S'she' +p178459 +tp178460 +a(g178457 +g178459 +S'pose' +p178461 +tp178462 +a(g178459 +g178461 +S'in' +p178463 +tp178464 +a(g178461 +g178463 +S'the' +p178465 +tp178466 +a(g178463 +g178465 +S'street' +p178467 +tp178468 +a(g178465 +g178467 +S'clothes' +p178469 +tp178470 +a(g178467 +g178469 +S'she' +p178471 +tp178472 +a(g178469 +g178471 +S'wore' +p178473 +tp178474 +a(g178471 +g178473 +S'rather' +p178475 +tp178476 +a(g178473 +g178475 +S'than' +p178477 +tp178478 +a(g178475 +g178477 +S'in' +p178479 +tp178480 +a(g178477 +g178479 +S'one' +p178481 +tp178482 +a(g178479 +g178481 +S'of' +p178483 +tp178484 +a(g178481 +g178483 +S'the' +p178485 +tp178486 +a(g178483 +g178485 +S'sumptuous' +p178487 +tp178488 +a(g178485 +g178487 +S'french' +p178489 +tp178490 +a(g178487 +g178489 +S'gowns' +p178491 +tp178492 +a(g178489 +g178491 +S'carried' +p178493 +tp178494 +a(g178491 +g178493 +S'by' +p178495 +tp178496 +a(g178493 +g178495 +S'her' +p178497 +tp178498 +a(g178495 +g178497 +S'maid.' +p178499 +tp178500 +a(g178497 +g178499 +S'her' +p178501 +tp178502 +a(g178499 +g178501 +S'severe' +p178503 +tp178504 +a(g178501 +g178503 +S'black' +p178505 +tp178506 +a(g178503 +g178505 +S'dress' +p178507 +tp178508 +a(g178505 +g178507 +S'transforms' +p178509 +tp178510 +a(g178507 +g178509 +S'mrs.' +p178511 +tp178512 +a(g178509 +g178511 +S'iselin’s' +p178513 +tp178514 +a(g178511 +g178513 +S'image' +p178515 +tp178516 +a(g178513 +g178515 +S'into' +p178517 +tp178518 +a(g178515 +g178517 +S'a' +p178519 +tp178520 +a(g178517 +g178519 +S'pillar' +p178521 +tp178522 +a(g178519 +g178521 +S'of' +p178523 +tp178524 +a(g178521 +g178523 +S'austerity,' +p178525 +tp178526 +a(g178523 +g178525 +S'glinting' +p178527 +tp178528 +a(g178525 +g178527 +S'with' +p178529 +tp178530 +a(g178527 +g178529 +S'black' +p178531 +tp178532 +a(g178529 +g178531 +S'beads' +p178533 +tp178534 +a(g178531 +g178533 +S'of' +p178535 +tp178536 +a(g178533 +g178535 +S'jet' +p178537 +tp178538 +a(g178535 +g178537 +S'gemstones.' +p178539 +tp178540 +a(g178537 +g178539 +S'such' +p178541 +tp178542 +a(g178539 +g178541 +S'superb' +p178543 +tp178544 +a(g178541 +g178543 +S'imitations' +p178545 +tp178546 +a(g178543 +g178545 +S'of' +p178547 +tp178548 +a(g178545 +g178547 +S'surface' +p178549 +tp178550 +a(g178547 +g178549 +S'textures' +p178551 +tp178552 +a(g178549 +g178551 +S'once' +p178553 +tp178554 +a(g178551 +g178553 +S'prompted' +p178555 +tp178556 +a(g178553 +g178555 +S'a' +p178557 +tp178558 +a(g178555 +g178557 +S'critic' +p178559 +tp178560 +a(g178557 +g178559 +S'to' +p178561 +tp178562 +a(g178559 +g178561 +S'remark' +p178563 +tp178564 +a(g178561 +g178563 +S'that' +p178565 +tp178566 +a(g178563 +g178565 +S'sargent’s' +p178567 +tp178568 +a(g178565 +g178567 +S'brushwork' +p178569 +tp178570 +a(g178567 +g178569 +S'could' +p178571 +tp178572 +a(g178569 +g178571 +S'distinguish' +p178573 +tp178574 +a(g178571 +g178573 +S'“paste' +p178575 +tp178576 +a(g178573 +g178575 +S'from' +p178577 +tp178578 +a(g178575 +g178577 +S'diamonds.”' +p178579 +tp178580 +a(g178577 +g178579 +S'seldom' +p178581 +tp178582 +a(g178579 +g178581 +S'bothering' +p178583 +tp178584 +a(g178581 +g178583 +S'to' +p178585 +tp178586 +a(g178583 +g178585 +S'flatter' +p178587 +tp178588 +a(g178585 +g178587 +S'his' +p178589 +tp178590 +a(g178587 +g178589 +S'sitters,' +p178591 +tp178592 +a(g178589 +g178591 +S'the' +p178593 +tp178594 +a(g178591 +g178593 +S'painter' +p178595 +tp178596 +a(g178593 +g178595 +S'did' +p178597 +tp178598 +a(g178595 +g178597 +S'nothing' +p178599 +tp178600 +a(g178597 +g178599 +S'to' +p178601 +tp178602 +a(g178599 +g178601 +S'disguise' +p178603 +tp178604 +a(g178601 +g178603 +S'mrs.' +p178605 +tp178606 +a(g178603 +g178605 +S'iselin’s' +p178607 +tp178608 +a(g178605 +g178607 +S'large' +p178609 +tp178610 +a(g178607 +g178609 +S'ear' +p178611 +tp178612 +a(g178609 +g178611 +S'or' +p178613 +tp178614 +a(g178611 +g178613 +S'to' +p178615 +tp178616 +a(g178613 +g178615 +S'conceal' +p178617 +tp178618 +a(g178615 +g178617 +S'her' +p178619 +tp178620 +a(g178617 +g178619 +S'contempt' +p178621 +tp178622 +a(g178619 +g178621 +S'as' +p178623 +tp178624 +a(g178621 +g178623 +S'she' +p178625 +tp178626 +a(g178623 +g178625 +S'tapped' +p178627 +tp178628 +a(g178625 +g178627 +S'impatiently' +p178629 +tp178630 +a(g178627 +g178629 +S'on' +p178631 +tp178632 +a(g178629 +g178631 +S'the' +p178633 +tp178634 +a(g178631 +g178633 +S'table.' +p178635 +tp178636 +a(g178633 +g178635 +S'thirty' +p178637 +tp178638 +a(g178635 +g178637 +S'years' +p178639 +tp178640 +a(g178637 +g178639 +S'after' +p178641 +tp178642 +a(g178639 +g178641 +S'painting' +p178643 +tp178644 +a(g178641 +g178643 +S'sargent’s' +p178645 +tp178646 +a(g178643 +g178645 +S'phenomenal' +p178647 +tp178648 +a(g178645 +g178647 +S'success' +p178649 +tp178650 +a(g178647 +g178649 +S'as' +p178651 +tp178652 +a(g178649 +g178651 +S'a' +p178653 +tp178654 +a(g178651 +g178653 +S'portraitist' +p178655 +tp178656 +a(g178653 +g178655 +S'was' +p178657 +tp178658 +a(g178655 +g178657 +S'due' +p178659 +tp178660 +a(g178657 +g178659 +S'in' +p178661 +tp178662 +a(g178659 +g178661 +S'part' +p178663 +tp178664 +a(g178661 +g178663 +S'to' +p178665 +tp178666 +a(g178663 +g178665 +S'his' +p178667 +tp178668 +a(g178665 +g178667 +S'prominent' +p178669 +tp178670 +a(g178667 +g178669 +S'new' +p178671 +tp178672 +a(g178669 +g178671 +S'england' +p178673 +tp178674 +a(g178671 +g178673 +S'colonial' +p178675 +tp178676 +a(g178673 +g178675 +S'ancestry,' +p178677 +tp178678 +a(g178675 +g178677 +S'which' +p178679 +tp178680 +a(g178677 +g178679 +S'made' +p178681 +tp178682 +a(g178679 +g178681 +S'him' +p178683 +tp178684 +a(g178681 +g178683 +S'the' +p178685 +tp178686 +a(g178683 +g178685 +S'social' +p178687 +tp178688 +a(g178685 +g178687 +S'equal' +p178689 +tp178690 +a(g178687 +g178689 +S'to' +p178691 +tp178692 +a(g178689 +g178691 +S'or' +p178693 +tp178694 +a(g178691 +g178693 +S'better' +p178695 +tp178696 +a(g178693 +g178695 +S'of' +p178697 +tp178698 +a(g178695 +g178697 +S'many' +p178699 +tp178700 +a(g178697 +g178699 +S'of' +p178701 +tp178702 +a(g178699 +g178701 +S'his' +p178703 +tp178704 +a(g178701 +g178703 +S'patrons.' +p178705 +tp178706 +a(g178703 +g178705 +S'rebelling' +p178707 +tp178708 +a(g178705 +g178707 +S'against' +p178709 +tp178710 +a(g178707 +g178709 +S'his' +p178711 +tp178712 +a(g178709 +g178711 +S'popularity,' +p178713 +tp178714 +a(g178711 +g178713 +S'he' +p178715 +tp178716 +a(g178713 +g178715 +S'continually' +p178717 +tp178718 +a(g178715 +g178717 +S'raised' +p178719 +tp178720 +a(g178717 +g178719 +S'his' +p178721 +tp178722 +a(g178719 +g178721 +S'prices' +p178723 +tp178724 +a(g178721 +g178723 +S'to' +p178725 +tp178726 +a(g178723 +g178725 +S'discourage' +p178727 +tp178728 +a(g178725 +g178727 +S'potential' +p178729 +tp178730 +a(g178727 +g178729 +S'clients,' +p178731 +tp178732 +a(g178729 +g178731 +S'but' +p178733 +tp178734 +a(g178731 +g178733 +S'the' +p178735 +tp178736 +a(g178733 +g178735 +S'higher' +p178737 +tp178738 +a(g178735 +g178737 +S'costs' +p178739 +tp178740 +a(g178737 +g178739 +S'had' +p178741 +tp178742 +a(g178739 +g178741 +S'the' +p178743 +tp178744 +a(g178741 +g178743 +S'opposite' +p178745 +tp178746 +a(g178743 +g178745 +S'effect' +p178747 +tp178748 +a(g178745 +g178747 +S'of' +p178749 +tp178750 +a(g178747 +g178749 +S'placing' +p178751 +tp178752 +a(g178749 +g178751 +S'his' +p178753 +tp178754 +a(g178751 +g178753 +S'portraits' +p178755 +tp178756 +a(g178753 +g178755 +S'in' +p178757 +tp178758 +a(g178755 +g178757 +S'even' +p178759 +tp178760 +a(g178757 +g178759 +S'greater' +p178761 +tp178762 +a(g178759 +g178761 +S'demand.' +p178763 +tp178764 +a(g178761 +g178763 +S'patrick' +p178765 +tp178766 +a(g178763 +g178765 +S'tracy' +p178767 +tp178768 +a(g178765 +g178767 +S"trumbull's" +p178769 +tp178770 +a(g178767 +g178769 +S'account' +p178771 +tp178772 +a(g178769 +g178771 +S'book' +p178773 +tp178774 +a(g178771 +g178773 +S'for' +p178775 +tp178776 +a(g178773 +g178775 +S'1784' +p178777 +tp178778 +a(g178775 +g178777 +S'resolves' +p178779 +tp178780 +a(g178777 +g178779 +S'the' +p178781 +tp178782 +a(g178779 +g178781 +S'dilemma:' +p178783 +tp178784 +a(g178781 +g178783 +S'"whole' +p178785 +tp178786 +a(g178783 +g178785 +S'length' +p178787 +tp178788 +a(g178785 +g178787 +S'of' +p178789 +tp178790 +a(g178787 +g178789 +S'mr.' +p178791 +tp178792 +a(g178789 +g178791 +S'p.' +p178793 +tp178794 +a(g178791 +g178793 +S'tracy' +p178795 +tp178796 +a(g178793 +g178795 +S'(father' +p178797 +tp178798 +a(g178795 +g178797 +S'of' +p178799 +tp178800 +a(g178797 +g178799 +S'nat)' +p178801 +tp178802 +a(g178799 +g178801 +S'leaning' +p178803 +tp178804 +a(g178801 +g178803 +S'on' +p178805 +tp178806 +a(g178803 +g178805 +S'an' +p178807 +tp178808 +a(g178805 +g178807 +S'anchor' +p178809 +tp178810 +a(g178807 +g178809 +S'--' +p178811 +tp178812 +a(g178809 +g178811 +S'head' +p178813 +tp178814 +a(g178811 +g178813 +S'copied."' +p178815 +tp178816 +a(g178813 +g178815 +S'nat' +p178817 +tp178818 +a(g178815 +g178817 +S'tracy,' +p178819 +tp178820 +a(g178817 +g178819 +S'the' +p178821 +tp178822 +a(g178819 +g178821 +S"subject's" +p178823 +tp178824 +a(g178821 +g178823 +S'son,' +p178825 +tp178826 +a(g178823 +g178825 +S'apparently' +p178827 +tp178828 +a(g178825 +g178827 +S'commissioned' +p178829 +tp178830 +a(g178827 +g178829 +S'the' +p178831 +tp178832 +a(g178829 +g178831 +S'portrait' +p178833 +tp178834 +a(g178831 +g178833 +S'while' +p178835 +tp178836 +a(g178833 +g178835 +S'in' +p178837 +tp178838 +a(g178835 +g178837 +S'london' +p178839 +tp178840 +a(g178837 +g178839 +S'on' +p178841 +tp178842 +a(g178839 +g178841 +S'business.' +p178843 +tp178844 +a(g178841 +g178843 +S'since' +p178845 +tp178846 +a(g178843 +g178845 +S'patrick' +p178847 +tp178848 +a(g178845 +g178847 +S'was' +p178849 +tp178850 +a(g178847 +g178849 +S'still' +p178851 +tp178852 +a(g178849 +g178851 +S'in' +p178853 +tp178854 +a(g178851 +g178853 +S'america,' +p178855 +tp178856 +a(g178853 +g178855 +S'trumbull' +p178857 +tp178858 +a(g178855 +g178857 +S'adapted' +p178859 +tp178860 +a(g178857 +g178859 +S'his' +p178861 +tp178862 +a(g178859 +g178861 +S'face' +p178863 +tp178864 +a(g178861 +g178863 +S'from' +p178865 +tp178866 +a(g178863 +g178865 +S'a' +p178867 +tp178868 +a(g178865 +g178867 +S'likeness' +p178869 +tp178870 +a(g178867 +g178869 +S'which' +p178871 +tp178872 +a(g178869 +g178871 +S'nat' +p178873 +tp178874 +a(g178871 +g178873 +S'must' +p178875 +tp178876 +a(g178873 +g178875 +S'have' +p178877 +tp178878 +a(g178875 +g178877 +S'lent' +p178879 +tp178880 +a(g178877 +g178879 +S'him,' +p178881 +tp178882 +a(g178879 +g178881 +S'but' +p178883 +tp178884 +a(g178881 +g178883 +S'did' +p178885 +tp178886 +a(g178883 +g178885 +S'the' +p178887 +tp178888 +a(g178885 +g178887 +S'rest' +p178889 +tp178890 +a(g178887 +g178889 +S'in' +p178891 +tp178892 +a(g178889 +g178891 +S'his' +p178893 +tp178894 +a(g178891 +g178893 +S'new' +p178895 +tp178896 +a(g178893 +g178895 +S'style.' +p178897 +tp178898 +a(g178895 +g178897 +S'while' +p178899 +tp178900 +a(g178897 +g178899 +S'working' +p178901 +tp178902 +a(g178899 +g178901 +S'on' +p178903 +tp178904 +a(g178901 +g178903 +S'this' +p178905 +tp178906 +a(g178903 +g178905 +S'life-size' +p178907 +tp178908 +a(g178905 +g178907 +S'portrait,' +p178909 +tp178910 +a(g178907 +g178909 +S'trumbull' +p178911 +tp178912 +a(g178909 +g178911 +S'received' +p178913 +tp178914 +a(g178911 +g178913 +S'an' +p178915 +tp178916 +a(g178913 +g178915 +S'unprecedented' +p178917 +tp178918 +a(g178915 +g178917 +S'honor' +p178919 +tp178920 +a(g178917 +g178919 +S'from' +p178921 +tp178922 +a(g178919 +g178921 +S'benjamin' +p178923 +tp178924 +a(g178921 +g178923 +S'west.' +p178925 +tp178926 +a(g178923 +g178925 +S'west,' +p178927 +tp178928 +a(g178925 +g178927 +S'who' +p178929 +tp178930 +a(g178927 +g178929 +S'had' +p178931 +tp178932 +a(g178929 +g178931 +S'intended' +p178933 +tp178934 +a(g178931 +g178933 +S'to' +p178935 +tp178936 +a(g178933 +g178935 +S'paint' +p178937 +tp178938 +a(g178935 +g178937 +S'a' +p178939 +tp178940 +a(g178937 +g178939 +S'vast' +p178941 +tp178942 +a(g178939 +g178941 +S'series' +p178943 +tp178944 +a(g178941 +g178943 +S'of' +p178945 +tp178946 +a(g178943 +g178945 +S'scenes' +p178947 +tp178948 +a(g178945 +g178947 +S'illustrating' +p178949 +tp178950 +a(g178947 +g178949 +S'the' +p178951 +tp178952 +a(g178949 +g178951 +S'characters' +p178953 +tp178954 +a(g178951 +g178953 +S'and' +p178955 +tp178956 +a(g178953 +g178955 +S'events' +p178957 +tp178958 +a(g178955 +g178957 +S'of' +p178959 +tp178960 +a(g178957 +g178959 +S'the' +p178961 +tp178962 +a(g178959 +g178961 +S'war' +p178963 +tp178964 +a(g178961 +g178963 +S'of' +p178965 +tp178966 +a(g178963 +g178965 +S'independence,' +p178967 +tp178968 +a(g178965 +g178967 +S'decided' +p178969 +tp178970 +a(g178967 +g178969 +S'he' +p178971 +tp178972 +a(g178969 +g178971 +S'was' +p178973 +tp178974 +a(g178971 +g178973 +S'too' +p178975 +tp178976 +a(g178973 +g178975 +S'busy' +p178977 +tp178978 +a(g178975 +g178977 +S'and' +p178979 +tp178980 +a(g178977 +g178979 +S'passed' +p178981 +tp178982 +a(g178979 +g178981 +S'the' +p178983 +tp178984 +a(g178981 +g178983 +S'idea' +p178985 +tp178986 +a(g178983 +g178985 +S'along' +p178987 +tp178988 +a(g178985 +g178987 +S'to' +p178989 +tp178990 +a(g178987 +g178989 +S'his' +p178991 +tp178992 +a(g178989 +g178991 +S'pupil.' +p178993 +tp178994 +a(g178991 +g178993 +S'the' +p178995 +tp178996 +a(g178993 +g178995 +S'resulting' +p178997 +tp178998 +a(g178995 +g178997 +S'history' +p178999 +tp179000 +a(g178997 +g178999 +S'paintings' +p179001 +tp179002 +a(g178999 +g179001 +S'culminated' +p179003 +tp179004 +a(g179001 +g179003 +S'in' +p179005 +tp179006 +a(g179003 +g179005 +S"trumbull's" +p179007 +tp179008 +a(g179005 +g179007 +S'world-famous' +p179009 +tp179010 +a(g179007 +g179009 +S'murals' +p179011 +tp179012 +a(g179009 +g179011 +S'in' +p179013 +tp179014 +a(g179011 +g179013 +S'the' +p179015 +tp179016 +a(g179013 +g179015 +S"capitol's" +p179017 +tp179018 +a(g179015 +g179017 +S'rotunda.' +p179019 +tp179020 +a(g179017 +g179019 +S'during' +p179021 +tp179022 +a(g179019 +g179021 +S"largillière's" +p179023 +tp179024 +a(g179021 +g179023 +S'long' +p179025 +tp179026 +a(g179023 +g179025 +S'life' +p179027 +tp179028 +a(g179025 +g179027 +S'portraiture' +p179029 +tp179030 +a(g179027 +g179029 +S'evolved' +p179031 +tp179032 +a(g179029 +g179031 +S'to' +p179033 +tp179034 +a(g179031 +g179033 +S'satisfy' +p179035 +tp179036 +a(g179033 +g179035 +S'new' +p179037 +tp179038 +a(g179035 +g179037 +S'patrons' +p179039 +tp179040 +a(g179037 +g179039 +S'from' +p179041 +tp179042 +a(g179039 +g179041 +S'the' +p179043 +tp179044 +a(g179041 +g179043 +S'wealthy' +p179045 +tp179046 +a(g179043 +g179045 +S'bourgeoisie.' +p179047 +tp179048 +a(g179045 +g179047 +S'elizabeth' +p179049 +tp179050 +a(g179047 +g179049 +S'throckmorton' +p179051 +tp179052 +a(g179049 +g179051 +S'was' +p179053 +tp179054 +a(g179051 +g179053 +S'an' +p179055 +tp179056 +a(g179053 +g179055 +S'english' +p179057 +tp179058 +a(g179055 +g179057 +S'catholic' +p179059 +tp179060 +a(g179057 +g179059 +S'whose' +p179061 +tp179062 +a(g179059 +g179061 +S'family' +p179063 +tp179064 +a(g179061 +g179063 +S'left' +p179065 +tp179066 +a(g179063 +g179065 +S'england' +p179067 +tp179068 +a(g179065 +g179067 +S'rather' +p179069 +tp179070 +a(g179067 +g179069 +S'than' +p179071 +tp179072 +a(g179069 +g179071 +S'acknowledge' +p179073 +tp179074 +a(g179071 +g179073 +S'its' +p179075 +tp179076 +a(g179073 +g179075 +S'protestant' +p179077 +tp179078 +a(g179075 +g179077 +S'church.' +p179079 +tp179080 +a(g179077 +g179079 +S'she' +p179081 +tp179082 +a(g179079 +g179081 +S'entered' +p179083 +tp179084 +a(g179081 +g179083 +S'an' +p179085 +tp179086 +a(g179083 +g179085 +S'augustinian' +p179087 +tp179088 +a(g179085 +g179087 +S'house' +p179089 +tp179090 +a(g179087 +g179089 +S'in' +p179091 +tp179092 +a(g179089 +g179091 +S'paris' +p179093 +tp179094 +a(g179091 +g179093 +S'and' +p179095 +tp179096 +a(g179093 +g179095 +S'served' +p179097 +tp179098 +a(g179095 +g179097 +S'twice' +p179099 +tp179100 +a(g179097 +g179099 +S'as' +p179101 +tp179102 +a(g179099 +g179101 +S'mother' +p179103 +tp179104 +a(g179101 +g179103 +S'superior' +p179105 +tp179106 +a(g179103 +g179105 +S'before' +p179107 +tp179108 +a(g179105 +g179107 +S'her' +p179109 +tp179110 +a(g179107 +g179109 +S'death' +p179111 +tp179112 +a(g179109 +g179111 +S'in' +p179113 +tp179114 +a(g179111 +g179113 +S'1760.' +p179115 +tp179116 +a(g179113 +g179115 +S"largillière's" +p179117 +tp179118 +a(g179115 +g179117 +S'great' +p179119 +tp179120 +a(g179117 +g179119 +S'facility' +p179121 +tp179122 +a(g179119 +g179121 +S'with' +p179123 +tp179124 +a(g179121 +g179123 +S'color' +p179125 +tp179126 +a(g179123 +g179125 +S'shows' +p179127 +tp179128 +a(g179125 +g179127 +S'in' +p179129 +tp179130 +a(g179127 +g179129 +S'the' +p179131 +tp179132 +a(g179129 +g179131 +S'complex' +p179133 +tp179134 +a(g179131 +g179133 +S'pleats' +p179135 +tp179136 +a(g179133 +g179135 +S'of' +p179137 +tp179138 +a(g179135 +g179137 +S'her' +p179139 +tp179140 +a(g179137 +g179139 +S'robe,' +p179141 +tp179142 +a(g179139 +g179141 +S'the' +p179143 +tp179144 +a(g179141 +g179143 +S'transparency' +p179145 +tp179146 +a(g179143 +g179145 +S'of' +p179147 +tp179148 +a(g179145 +g179147 +S'her' +p179149 +tp179150 +a(g179147 +g179149 +S'dark' +p179151 +tp179152 +a(g179149 +g179151 +S'veil,' +p179153 +tp179154 +a(g179151 +g179153 +S'and' +p179155 +tp179156 +a(g179153 +g179155 +S'the' +p179157 +tp179158 +a(g179155 +g179157 +S'delicacy' +p179159 +tp179160 +a(g179157 +g179159 +S'of' +p179161 +tp179162 +a(g179159 +g179161 +S'her' +p179163 +tp179164 +a(g179161 +g179163 +S'complexion.' +p179165 +tp179166 +a(g179163 +g179165 +S'the' +p179167 +tp179168 +a(g179165 +g179167 +S'fragile' +p179169 +tp179170 +a(g179167 +g179169 +S'hues' +p179171 +tp179172 +a(g179169 +g179171 +S'and' +p179173 +tp179174 +a(g179171 +g179173 +S'soft' +p179175 +tp179176 +a(g179173 +g179175 +S'atmosphere' +p179177 +tp179178 +a(g179175 +g179177 +S'complement' +p179179 +tp179180 +a(g179177 +g179179 +S'her' +p179181 +tp179182 +a(g179179 +g179181 +S'calm' +p179183 +tp179184 +a(g179181 +g179183 +S'beauty.' +p179185 +tp179186 +a(g179183 +g179185 +S'a' +p179187 +tp179188 +a(g179185 +g179187 +S'native' +p179189 +tp179190 +a(g179187 +g179189 +S'of' +p179191 +tp179192 +a(g179189 +g179191 +S'cincinnati' +p179193 +tp179194 +a(g179191 +g179193 +S'who' +p179195 +tp179196 +a(g179193 +g179195 +S'had' +p179197 +tp179198 +a(g179195 +g179197 +S'studied' +p179199 +tp179200 +a(g179197 +g179199 +S'in' +p179201 +tp179202 +a(g179199 +g179201 +S'munich' +p179203 +tp179204 +a(g179201 +g179203 +S'and' +p179205 +tp179206 +a(g179203 +g179205 +S'venice,' +p179207 +tp179208 +a(g179205 +g179207 +S'john' +p179209 +tp179210 +a(g179207 +g179209 +S'twachtman' +p179211 +tp179212 +a(g179209 +g179211 +S'moved' +p179213 +tp179214 +a(g179211 +g179213 +S'his' +p179215 +tp179216 +a(g179213 +g179215 +S'family' +p179217 +tp179218 +a(g179215 +g179217 +S'to' +p179219 +tp179220 +a(g179217 +g179219 +S'a' +p179221 +tp179222 +a(g179219 +g179221 +S'farm' +p179223 +tp179224 +a(g179221 +g179223 +S'near' +p179225 +tp179226 +a(g179223 +g179225 +S'greenwich,' +p179227 +tp179228 +a(g179225 +g179227 +S'connecticut,' +p179229 +tp179230 +a(g179227 +g179229 +S'within' +p179231 +tp179232 +a(g179229 +g179231 +S'commuting' +p179233 +tp179234 +a(g179231 +g179233 +S'distance' +p179235 +tp179236 +a(g179233 +g179235 +S'of' +p179237 +tp179238 +a(g179235 +g179237 +S'his' +p179239 +tp179240 +a(g179237 +g179239 +S'teaching' +p179241 +tp179242 +a(g179239 +g179241 +S'job' +p179243 +tp179244 +a(g179241 +g179243 +S'in' +p179245 +tp179246 +a(g179243 +g179245 +S'manhattan.' +p179247 +tp179248 +a(g179245 +g179247 +S'in' +p179249 +tp179250 +a(g179247 +g179249 +S'two' +p179251 +tp179252 +a(g179249 +g179251 +S'purchases' +p179253 +tp179254 +a(g179251 +g179253 +S'of' +p179255 +tp179256 +a(g179253 +g179255 +S'march' +p179257 +tp179258 +a(g179255 +g179257 +S'1890' +p179259 +tp179260 +a(g179257 +g179259 +S'and' +p179261 +tp179262 +a(g179259 +g179261 +S'december' +p179263 +tp179264 +a(g179261 +g179263 +S'1891,' +p179265 +tp179266 +a(g179263 +g179265 +S'he' +p179267 +tp179268 +a(g179265 +g179267 +S'acquired' +p179269 +tp179270 +a(g179267 +g179269 +S'more' +p179271 +tp179272 +a(g179269 +g179271 +S'than' +p179273 +tp179274 +a(g179271 +g179273 +S'sixteen' +p179275 +tp179276 +a(g179273 +g179275 +S'acres,' +p179277 +tp179278 +a(g179275 +g179277 +S'including' +p179279 +tp179280 +a(g179277 +g179279 +S'the' +p179281 +tp179282 +a(g179279 +g179281 +S'rocky' +p179283 +tp179284 +a(g179281 +g179283 +S'bed' +p179285 +tp179286 +a(g179283 +g179285 +S'of' +p179287 +tp179288 +a(g179285 +g179287 +S'horseneck' +p179289 +tp179290 +a(g179287 +g179289 +S'brook' +p179291 +tp179292 +a(g179289 +g179291 +S'that' +p179293 +tp179294 +a(g179291 +g179293 +S'opens' +p179295 +tp179296 +a(g179293 +g179295 +S'into' +p179297 +tp179298 +a(g179295 +g179297 +S'a' +p179299 +tp179300 +a(g179297 +g179299 +S'quiet' +p179301 +tp179302 +a(g179299 +g179301 +S'pond' +p179303 +tp179304 +a(g179301 +g179303 +S'surrounded' +p179305 +tp179306 +a(g179303 +g179305 +S'by' +p179307 +tp179308 +a(g179305 +g179307 +S'a' +p179309 +tp179310 +a(g179307 +g179309 +S'grove' +p179311 +tp179312 +a(g179309 +g179311 +S'of' +p179313 +tp179314 +a(g179311 +g179313 +S'hemlock' +p179315 +tp179316 +a(g179313 +g179315 +S'trees.' +p179317 +tp179318 +a(g179315 +g179317 +S'shortly' +p179319 +tp179320 +a(g179317 +g179319 +S'after' +p179321 +tp179322 +a(g179319 +g179321 +S'signing' +p179323 +tp179324 +a(g179321 +g179323 +S'the' +p179325 +tp179326 +a(g179323 +g179325 +S'mortgage,' +p179327 +tp179328 +a(g179325 +g179327 +S'he' +p179329 +tp179330 +a(g179327 +g179329 +S'wrote' +p179331 +tp179332 +a(g179329 +g179331 +S'to' +p179333 +tp179334 +a(g179331 +g179333 +S'a' +p179335 +tp179336 +a(g179333 +g179335 +S'fellow' +p179337 +tp179338 +a(g179335 +g179337 +S'artist,' +p179339 +tp179340 +a(g179337 +g179339 +S'"i' +p179341 +tp179342 +a(g179339 +g179341 +S'can' +p179343 +tp179344 +a(g179341 +g179343 +S'see' +p179345 +tp179346 +a(g179343 +g179345 +S'now' +p179347 +tp179348 +a(g179345 +g179347 +S'how' +p179349 +tp179350 +a(g179347 +g179349 +S'necessary' +p179351 +tp179352 +a(g179349 +g179351 +S'it' +p179353 +tp179354 +a(g179351 +g179353 +S'is' +p179355 +tp179356 +a(g179353 +g179355 +S'to' +p179357 +tp179358 +a(g179355 +g179357 +S'live' +p179359 +tp179360 +a(g179357 +g179359 +S'always' +p179361 +tp179362 +a(g179359 +g179361 +S'in' +p179363 +tp179364 +a(g179361 +g179363 +S'the' +p179365 +tp179366 +a(g179363 +g179365 +S'country—at' +p179367 +tp179368 +a(g179365 +g179367 +S'all' +p179369 +tp179370 +a(g179367 +g179369 +S'seasons' +p179371 +tp179372 +a(g179369 +g179371 +S'of' +p179373 +tp179374 +a(g179371 +g179373 +S'the' +p179375 +tp179376 +a(g179373 +g179375 +S'year.' +p179377 +tp179378 +a(g179375 +g179377 +S'we' +p179379 +tp179380 +a(g179377 +g179379 +S'must' +p179381 +tp179382 +a(g179379 +g179381 +S'have' +p179383 +tp179384 +a(g179381 +g179383 +S'snow' +p179385 +tp179386 +a(g179383 +g179385 +S'and' +p179387 +tp179388 +a(g179385 +g179387 +S'lots' +p179389 +tp179390 +a(g179387 +g179389 +S'of' +p179391 +tp179392 +a(g179389 +g179391 +S'it.' +p179393 +tp179394 +a(g179391 +g179393 +S'never' +p179395 +tp179396 +a(g179393 +g179395 +S'is' +p179397 +tp179398 +a(g179395 +g179397 +S'nature' +p179399 +tp179400 +a(g179397 +g179399 +S'more' +p179401 +tp179402 +a(g179399 +g179401 +S'lovely' +p179403 +tp179404 +a(g179401 +g179403 +S'than' +p179405 +tp179406 +a(g179403 +g179405 +S'when' +p179407 +tp179408 +a(g179405 +g179407 +S'it' +p179409 +tp179410 +a(g179407 +g179409 +S'is' +p179411 +tp179412 +a(g179409 +g179411 +S'snowing.' +p179413 +tp179414 +a(g179411 +g179413 +S'.' +p179415 +tp179416 +a(g179413 +g179415 +S'.' +p179417 +tp179418 +a(g179415 +g179417 +S'.' +p179419 +tp179420 +a(g179417 +g179419 +S'that' +p179421 +tp179422 +a(g179419 +g179421 +S'feeling' +p179423 +tp179424 +a(g179421 +g179423 +S'of' +p179425 +tp179426 +a(g179423 +g179425 +S'quiet' +p179427 +tp179428 +a(g179425 +g179427 +S'and' +p179429 +tp179430 +a(g179427 +g179429 +S'all' +p179431 +tp179432 +a(g179429 +g179431 +S'nature' +p179433 +tp179434 +a(g179431 +g179433 +S'is' +p179435 +tp179436 +a(g179433 +g179435 +S'hushed' +p179437 +tp179438 +a(g179435 +g179437 +S'to' +p179439 +tp179440 +a(g179437 +g179439 +S'silence."' +p179441 +tp179442 +a(g179439 +g179441 +S'winter' +p179443 +tp179444 +a(g179441 +g179443 +S'harmony' +p179445 +tp179446 +a(g179443 +g179445 +S'although' +p179447 +tp179448 +a(g179445 +g179447 +S'most' +p179449 +tp179450 +a(g179447 +g179449 +S'colonial' +p179451 +tp179452 +a(g179449 +g179451 +S'artists' +p179453 +tp179454 +a(g179451 +g179453 +S'traveled' +p179455 +tp179456 +a(g179453 +g179455 +S'to' +p179457 +tp179458 +a(g179455 +g179457 +S'find' +p179459 +tp179460 +a(g179457 +g179459 +S'patrons,' +p179461 +tp179462 +a(g179459 +g179461 +S'winthrop' +p179463 +tp179464 +a(g179461 +g179463 +S'chandler' +p179465 +tp179466 +a(g179463 +g179465 +S'centered' +p179467 +tp179468 +a(g179465 +g179467 +S'his' +p179469 +tp179470 +a(g179467 +g179469 +S'career' +p179471 +tp179472 +a(g179469 +g179471 +S'around' +p179473 +tp179474 +a(g179471 +g179473 +S'his' +p179475 +tp179476 +a(g179473 +g179475 +S'native' +p179477 +tp179478 +a(g179475 +g179477 +S'woodstock,' +p179479 +tp179480 +a(g179477 +g179479 +S'connecticut.' +p179481 +tp179482 +a(g179479 +g179481 +S'at' +p179483 +tp179484 +a(g179481 +g179483 +S'first,' +p179485 +tp179486 +a(g179483 +g179485 +S'he' +p179487 +tp179488 +a(g179485 +g179487 +S'called' +p179489 +tp179490 +a(g179487 +g179489 +S'himself' +p179491 +tp179492 +a(g179489 +g179491 +S'a' +p179493 +tp179494 +a(g179491 +g179493 +S'"painter,"' +p179495 +tp179496 +a(g179493 +g179495 +S'and' +p179497 +tp179498 +a(g179495 +g179497 +S'several' +p179499 +tp179500 +a(g179497 +g179499 +S'of' +p179501 +tp179502 +a(g179499 +g179501 +S'his' +p179503 +tp179504 +a(g179501 +g179503 +S'surviving' +p179505 +tp179506 +a(g179503 +g179505 +S'works' +p179507 +tp179508 +a(g179505 +g179507 +S'are' +p179509 +tp179510 +a(g179507 +g179509 +S'decorative' +p179511 +tp179512 +a(g179509 +g179511 +S'landscapes' +p179513 +tp179514 +a(g179511 +g179513 +S'to' +p179515 +tp179516 +a(g179513 +g179515 +S'adorn' +p179517 +tp179518 +a(g179515 +g179517 +S'the' +p179519 +tp179520 +a(g179517 +g179519 +S'paneling' +p179521 +tp179522 +a(g179519 +g179521 +S'over' +p179523 +tp179524 +a(g179521 +g179523 +S'mantelpieces.' +p179525 +tp179526 +a(g179523 +g179525 +S'by' +p179527 +tp179528 +a(g179525 +g179527 +S'the' +p179529 +tp179530 +a(g179527 +g179529 +S'later' +p179531 +tp179532 +a(g179529 +g179531 +S'1780s,' +p179533 +tp179534 +a(g179531 +g179533 +S'though,' +p179535 +tp179536 +a(g179533 +g179535 +S'winthrop' +p179537 +tp179538 +a(g179535 +g179537 +S'chandler' +p179539 +tp179540 +a(g179537 +g179539 +S'referred' +p179541 +tp179542 +a(g179539 +g179541 +S'to' +p179543 +tp179544 +a(g179541 +g179543 +S'his' +p179545 +tp179546 +a(g179543 +g179545 +S'profession' +p179547 +tp179548 +a(g179545 +g179547 +S'as' +p179549 +tp179550 +a(g179547 +g179549 +S'that' +p179551 +tp179552 +a(g179549 +g179551 +S'of' +p179553 +tp179554 +a(g179551 +g179553 +S'"limner,"' +p179555 +tp179556 +a(g179553 +g179555 +S'implying' +p179557 +tp179558 +a(g179555 +g179557 +S'that' +p179559 +tp179560 +a(g179557 +g179559 +S'he' +p179561 +tp179562 +a(g179559 +g179561 +S'now' +p179563 +tp179564 +a(g179561 +g179563 +S'primarily' +p179565 +tp179566 +a(g179563 +g179565 +S'made' +p179567 +tp179568 +a(g179565 +g179567 +S'portraits.' +p179569 +tp179570 +a(g179567 +g179569 +S'captain' +p179571 +tp179572 +a(g179569 +g179571 +S'samuel' +p179573 +tp179574 +a(g179571 +g179573 +S'chandler' +p179575 +tp179576 +a(g179573 +g179575 +S'the' +p179577 +tp179578 +a(g179575 +g179577 +S'careful' +p179579 +tp179580 +a(g179577 +g179579 +S'delineation' +p179581 +tp179582 +a(g179579 +g179581 +S'of' +p179583 +tp179584 +a(g179581 +g179583 +S'these' +p179585 +tp179586 +a(g179583 +g179585 +S'objects' +p179587 +tp179588 +a(g179585 +g179587 +S'gives' +p179589 +tp179590 +a(g179587 +g179589 +S'them' +p179591 +tp179592 +a(g179589 +g179591 +S'an' +p179593 +tp179594 +a(g179591 +g179593 +S'importance' +p179595 +tp179596 +a(g179593 +g179595 +S'almost' +p179597 +tp179598 +a(g179595 +g179597 +S'equal' +p179599 +tp179600 +a(g179597 +g179599 +S'to' +p179601 +tp179602 +a(g179599 +g179601 +S'the' +p179603 +tp179604 +a(g179601 +g179603 +S'forthright' +p179605 +tp179606 +a(g179603 +g179605 +S'portrayal' +p179607 +tp179608 +a(g179605 +g179607 +S'of' +p179609 +tp179610 +a(g179607 +g179609 +S'the' +p179611 +tp179612 +a(g179609 +g179611 +S"captain's" +p179613 +tp179614 +a(g179611 +g179613 +S'stern' +p179615 +tp179616 +a(g179613 +g179615 +S'countenance.' +p179617 +tp179618 +a(g179615 +g179617 +S'as' +p179619 +tp179620 +a(g179617 +g179619 +S'with' +p179621 +tp179622 +a(g179619 +g179621 +S'many' +p179623 +tp179624 +a(g179621 +g179623 +S'essentially' +p179625 +tp179626 +a(g179623 +g179625 +S'self-taught' +p179627 +tp179628 +a(g179625 +g179627 +S'artists,' +p179629 +tp179630 +a(g179627 +g179629 +S'winthrop' +p179631 +tp179632 +a(g179629 +g179631 +S'chandler' +p179633 +tp179634 +a(g179631 +g179633 +S'compensated' +p179635 +tp179636 +a(g179633 +g179635 +S'for' +p179637 +tp179638 +a(g179635 +g179637 +S'his' +p179639 +tp179640 +a(g179637 +g179639 +S'lack' +p179641 +tp179642 +a(g179639 +g179641 +S'of' +p179643 +tp179644 +a(g179641 +g179643 +S'expertise' +p179645 +tp179646 +a(g179643 +g179645 +S'in' +p179647 +tp179648 +a(g179645 +g179647 +S'anatomy' +p179649 +tp179650 +a(g179647 +g179649 +S'and' +p179651 +tp179652 +a(g179649 +g179651 +S'perspective' +p179653 +tp179654 +a(g179651 +g179653 +S'by' +p179655 +tp179656 +a(g179653 +g179655 +S'creating' +p179657 +tp179658 +a(g179655 +g179657 +S'superbly' +p179659 +tp179660 +a(g179657 +g179659 +S'integrated' +p179661 +tp179662 +a(g179659 +g179661 +S'designs.' +p179663 +tp179664 +a(g179661 +g179663 +S'the' +p179665 +tp179666 +a(g179663 +g179665 +S'repeated' +p179667 +tp179668 +a(g179665 +g179667 +S'ranks' +p179669 +tp179670 +a(g179667 +g179669 +S'of' +p179671 +tp179672 +a(g179669 +g179671 +S'horsemen' +p179673 +tp179674 +a(g179671 +g179673 +S'in' +p179675 +tp179676 +a(g179673 +g179675 +S'the' +p179677 +tp179678 +a(g179675 +g179677 +S'landscape,' +p179679 +tp179680 +a(g179677 +g179679 +S'for' +p179681 +tp179682 +a(g179679 +g179681 +S'instance,' +p179683 +tp179684 +a(g179681 +g179683 +S'form' +p179685 +tp179686 +a(g179683 +g179685 +S'patterns' +p179687 +tp179688 +a(g179685 +g179687 +S'that' +p179689 +tp179690 +a(g179687 +g179689 +S'effectively' +p179691 +tp179692 +a(g179689 +g179691 +S'reiterate' +p179693 +tp179694 +a(g179691 +g179693 +S'the' +p179695 +tp179696 +a(g179693 +g179695 +S"uniform's" +p179697 +tp179698 +a(g179695 +g179697 +S'rows' +p179699 +tp179700 +a(g179697 +g179699 +S'of' +p179701 +tp179702 +a(g179699 +g179701 +S'buttons;' +p179703 +tp179704 +a(g179701 +g179703 +S'and' +p179705 +tp179706 +a(g179703 +g179705 +S'the' +p179707 +tp179708 +a(g179705 +g179707 +S'rippling' +p179709 +tp179710 +a(g179707 +g179709 +S'curves' +p179711 +tp179712 +a(g179709 +g179711 +S'of' +p179713 +tp179714 +a(g179711 +g179713 +S'cuffs,' +p179715 +tp179716 +a(g179713 +g179715 +S'cravat,' +p179717 +tp179718 +a(g179715 +g179717 +S'and' +p179719 +tp179720 +a(g179717 +g179719 +S'tricorn' +p179721 +tp179722 +a(g179719 +g179721 +S'hat' +p179723 +tp179724 +a(g179721 +g179723 +S'play' +p179725 +tp179726 +a(g179723 +g179725 +S'against' +p179727 +tp179728 +a(g179725 +g179727 +S'the' +p179729 +tp179730 +a(g179727 +g179729 +S'straight' +p179731 +tp179732 +a(g179729 +g179731 +S'lines' +p179733 +tp179734 +a(g179731 +g179733 +S'of' +p179735 +tp179736 +a(g179733 +g179735 +S'sword,' +p179737 +tp179738 +a(g179735 +g179737 +S'furniture' +p179739 +tp179740 +a(g179737 +g179739 +S'legs,' +p179741 +tp179742 +a(g179739 +g179741 +S'and' +p179743 +tp179744 +a(g179741 +g179743 +S'window' +p179745 +tp179746 +a(g179743 +g179745 +S'frame.' +p179747 +tp179748 +a(g179745 +g179747 +S'edward' +p179749 +tp179750 +a(g179747 +g179749 +S'hicks,' +p179751 +tp179752 +a(g179749 +g179751 +S'having' +p179753 +tp179754 +a(g179751 +g179753 +S'apprenticed' +p179755 +tp179756 +a(g179753 +g179755 +S'to' +p179757 +tp179758 +a(g179755 +g179757 +S'a' +p179759 +tp179760 +a(g179757 +g179759 +S'pennsylvania' +p179761 +tp179762 +a(g179759 +g179761 +S'coachmaker' +p179763 +tp179764 +a(g179761 +g179763 +S'at' +p179765 +tp179766 +a(g179763 +g179765 +S'thirteen,' +p179767 +tp179768 +a(g179765 +g179767 +S'became' +p179769 +tp179770 +a(g179767 +g179769 +S'a' +p179771 +tp179772 +a(g179769 +g179771 +S'minister' +p179773 +tp179774 +a(g179771 +g179773 +S'in' +p179775 +tp179776 +a(g179773 +g179775 +S'1811.' +p179777 +tp179778 +a(g179775 +g179777 +S'he' +p179779 +tp179780 +a(g179777 +g179779 +S'was' +p179781 +tp179782 +a(g179779 +g179781 +S'torn' +p179783 +tp179784 +a(g179781 +g179783 +S'between' +p179785 +tp179786 +a(g179783 +g179785 +S'his' +p179787 +tp179788 +a(g179785 +g179787 +S'calling' +p179789 +tp179790 +a(g179787 +g179789 +S'as' +p179791 +tp179792 +a(g179789 +g179791 +S'a' +p179793 +tp179794 +a(g179791 +g179793 +S'quaker' +p179795 +tp179796 +a(g179793 +g179795 +S'minister' +p179797 +tp179798 +a(g179795 +g179797 +S'and' +p179799 +tp179800 +a(g179797 +g179799 +S'his' +p179801 +tp179802 +a(g179799 +g179801 +S'love' +p179803 +tp179804 +a(g179801 +g179803 +S'of' +p179805 +tp179806 +a(g179803 +g179805 +S'painting,' +p179807 +tp179808 +a(g179805 +g179807 +S'worrying' +p179809 +tp179810 +a(g179807 +g179809 +S'that' +p179811 +tp179812 +a(g179809 +g179811 +S'his' +p179813 +tp179814 +a(g179811 +g179813 +S'art' +p179815 +tp179816 +a(g179813 +g179815 +S'kept' +p179817 +tp179818 +a(g179815 +g179817 +S'him' +p179819 +tp179820 +a(g179817 +g179819 +S'from' +p179821 +tp179822 +a(g179819 +g179821 +S'"the' +p179823 +tp179824 +a(g179821 +g179823 +S"lord's" +p179825 +tp179826 +a(g179823 +g179825 +S'work."' +p179827 +tp179828 +a(g179825 +g179827 +S'hicks' +p179829 +tp179830 +a(g179827 +g179829 +S'precisely' +p179831 +tp179832 +a(g179829 +g179831 +S'identified' +p179833 +tp179834 +a(g179831 +g179833 +S'this' +p179835 +tp179836 +a(g179833 +g179835 +S'subject' +p179837 +tp179838 +a(g179835 +g179837 +S'with' +p179839 +tp179840 +a(g179837 +g179839 +S'a' +p179841 +tp179842 +a(g179839 +g179841 +S'long' +p179843 +tp179844 +a(g179841 +g179843 +S'inscription' +p179845 +tp179846 +a(g179843 +g179845 +S'along' +p179847 +tp179848 +a(g179845 +g179847 +S'the' +p179849 +tp179850 +a(g179847 +g179849 +S'bottom' +p179851 +tp179852 +a(g179849 +g179851 +S'of' +p179853 +tp179854 +a(g179851 +g179853 +S'the' +p179855 +tp179856 +a(g179853 +g179855 +S'canvas:' +p179857 +tp179858 +a(g179855 +g179857 +S'"an' +p179859 +tp179860 +a(g179857 +g179859 +S'indian' +p179861 +tp179862 +a(g179859 +g179861 +S'summer' +p179863 +tp179864 +a(g179861 +g179863 +S'view' +p179865 +tp179866 +a(g179863 +g179865 +S'of' +p179867 +tp179868 +a(g179865 +g179867 +S'the' +p179869 +tp179870 +a(g179867 +g179869 +S'farm' +p179871 +tp179872 +a(g179869 +g179871 +S'&' +p179873 +tp179874 +a(g179871 +g179873 +S'stock' +p179875 +tp179876 +a(g179873 +g179875 +S'of' +p179877 +tp179878 +a(g179875 +g179877 +S'james' +p179879 +tp179880 +a(g179877 +g179879 +S'c.' +p179881 +tp179882 +a(g179879 +g179881 +S'cornell' +p179883 +tp179884 +a(g179881 +g179883 +S'of' +p179885 +tp179886 +a(g179883 +g179885 +S'northampton' +p179887 +tp179888 +a(g179885 +g179887 +S'bucks' +p179889 +tp179890 +a(g179887 +g179889 +S'county' +p179891 +tp179892 +a(g179889 +g179891 +S'pennsylvania.' +p179893 +tp179894 +a(g179891 +g179893 +S'that' +p179895 +tp179896 +a(g179893 +g179895 +S'took' +p179897 +tp179898 +a(g179895 +g179897 +S'the' +p179899 +tp179900 +a(g179897 +g179899 +S'premium' +p179901 +tp179902 +a(g179899 +g179901 +S'in' +p179903 +tp179904 +a(g179901 +g179903 +S'the' +p179905 +tp179906 +a(g179903 +g179905 +S'agricultural' +p179907 +tp179908 +a(g179905 +g179907 +S'society,' +p179909 +tp179910 +a(g179907 +g179909 +S'october' +p179911 +tp179912 +a(g179909 +g179911 +S'the' +p179913 +tp179914 +a(g179911 +g179913 +S'12,' +p179915 +tp179916 +a(g179913 +g179915 +S'1848' +p179917 +tp179918 +a(g179915 +g179917 +S'painted' +p179919 +tp179920 +a(g179917 +g179919 +S'by' +p179921 +tp179922 +a(g179919 +g179921 +S'e.' +p179923 +tp179924 +a(g179921 +g179923 +S'hicks' +p179925 +tp179926 +a(g179923 +g179925 +S'in' +p179927 +tp179928 +a(g179925 +g179927 +S'the' +p179929 +tp179930 +a(g179927 +g179929 +S'69th' +p179931 +tp179932 +a(g179929 +g179931 +S'year' +p179933 +tp179934 +a(g179931 +g179933 +S'of' +p179935 +tp179936 +a(g179933 +g179935 +S'his' +p179937 +tp179938 +a(g179935 +g179937 +S'age."' +p179939 +tp179940 +a(g179937 +g179939 +S'though' +p179941 +tp179942 +a(g179939 +g179941 +S'the' +p179943 +tp179944 +a(g179941 +g179943 +S'punctuation' +p179945 +tp179946 +a(g179943 +g179945 +S'and' +p179947 +tp179948 +a(g179945 +g179947 +S'capitalization' +p179949 +tp179950 +a(g179947 +g179949 +S'are' +p179951 +tp179952 +a(g179949 +g179951 +S'inconsistent,' +p179953 +tp179954 +a(g179951 +g179953 +S'the' +p179955 +tp179956 +a(g179953 +g179955 +S'quality' +p179957 +tp179958 +a(g179955 +g179957 +S'of' +p179959 +tp179960 +a(g179957 +g179959 +S'the' +p179961 +tp179962 +a(g179959 +g179961 +S'lettering' +p179963 +tp179964 +a(g179961 +g179963 +S'proves' +p179965 +tp179966 +a(g179963 +g179965 +S'that' +p179967 +tp179968 +a(g179965 +g179967 +S'edward' +p179969 +tp179970 +a(g179967 +g179969 +S'hicks' +p179971 +tp179972 +a(g179969 +g179971 +S'was' +p179973 +tp179974 +a(g179971 +g179973 +S'schooled' +p179975 +tp179976 +a(g179973 +g179975 +S'in' +p179977 +tp179978 +a(g179975 +g179977 +S'sign' +p179979 +tp179980 +a(g179977 +g179979 +S'painting.' +p179981 +tp179982 +a(g179979 +g179981 +S'having' +p179983 +tp179984 +a(g179981 +g179983 +S'no' +p179985 +tp179986 +a(g179983 +g179985 +S'background' +p179987 +tp179988 +a(g179985 +g179987 +S'in' +p179989 +tp179990 +a(g179987 +g179989 +S'academic' +p179991 +tp179992 +a(g179989 +g179991 +S'art,' +p179993 +tp179994 +a(g179991 +g179993 +S'hicks' +p179995 +tp179996 +a(g179993 +g179995 +S'employed' +p179997 +tp179998 +a(g179995 +g179997 +S'the' +p179999 +tp180000 +a(g179997 +g179999 +S'direct' +p180001 +tp180002 +a(g179999 +g180001 +S'approach' +p180003 +tp180004 +a(g180001 +g180003 +S'of' +p180005 +tp180006 +a(g180003 +g180005 +S'a' +p180007 +tp180008 +a(g180005 +g180007 +S'primitive' +p180009 +tp180010 +a(g180007 +g180009 +S'or' +p180011 +tp180012 +a(g180009 +g180011 +S'folk' +p180013 +tp180014 +a(g180011 +g180013 +S'painter.' +p180015 +tp180016 +a(g180013 +g180015 +S'the' +p180017 +tp180018 +a(g180015 +g180017 +S'horizontal' +p180019 +tp180020 +a(g180017 +g180019 +S'band' +p180021 +tp180022 +a(g180019 +g180021 +S'of' +p180023 +tp180024 +a(g180021 +g180023 +S'livestock' +p180025 +tp180026 +a(g180023 +g180025 +S'across' +p180027 +tp180028 +a(g180025 +g180027 +S'the' +p180029 +tp180030 +a(g180027 +g180029 +S'foreground,' +p180031 +tp180032 +a(g180029 +g180031 +S'although' +p180033 +tp180034 +a(g180031 +g180033 +S'childlike' +p180035 +tp180036 +a(g180033 +g180035 +S'in' +p180037 +tp180038 +a(g180035 +g180037 +S'its' +p180039 +tp180040 +a(g180037 +g180039 +S'simplicity,' +p180041 +tp180042 +a(g180039 +g180041 +S'clearly' +p180043 +tp180044 +a(g180041 +g180043 +S'presents' +p180045 +tp180046 +a(g180043 +g180045 +S'each' +p180047 +tp180048 +a(g180045 +g180047 +S'prize-winning' +p180049 +tp180050 +a(g180047 +g180049 +S'animal' +p180051 +tp180052 +a(g180049 +g180051 +S'as' +p180053 +tp180054 +a(g180051 +g180053 +S'an' +p180055 +tp180056 +a(g180053 +g180055 +S'individual' +p180057 +tp180058 +a(g180055 +g180057 +S'portrait.' +p180059 +tp180060 +a(g180057 +g180059 +S"hicks'" +p180061 +tp180062 +a(g180059 +g180061 +S'delight' +p180063 +tp180064 +a(g180061 +g180063 +S'in' +p180065 +tp180066 +a(g180063 +g180065 +S'creating' +p180067 +tp180068 +a(g180065 +g180067 +S'ornamental' +p180069 +tp180070 +a(g180067 +g180069 +S'pattern' +p180071 +tp180072 +a(g180069 +g180071 +S'is' +p180073 +tp180074 +a(g180071 +g180073 +S'evident' +p180075 +tp180076 +a(g180073 +g180075 +S'in' +p180077 +tp180078 +a(g180075 +g180077 +S'the' +p180079 +tp180080 +a(g180077 +g180079 +S'arrangement' +p180081 +tp180082 +a(g180079 +g180081 +S'of' +p180083 +tp180084 +a(g180081 +g180083 +S'fences,' +p180085 +tp180086 +a(g180083 +g180085 +S'while' +p180087 +tp180088 +a(g180085 +g180087 +S'the' +p180089 +tp180090 +a(g180087 +g180089 +S'rich' +p180091 +tp180092 +a(g180089 +g180091 +S'red' +p180093 +tp180094 +a(g180091 +g180093 +S'and' +p180095 +tp180096 +a(g180093 +g180095 +S'bright' +p180097 +tp180098 +a(g180095 +g180097 +S'white' +p180099 +tp180100 +a(g180097 +g180099 +S'of' +p180101 +tp180102 +a(g180099 +g180101 +S'the' +p180103 +tp180104 +a(g180101 +g180103 +S'house' +p180105 +tp180106 +a(g180103 +g180105 +S'and' +p180107 +tp180108 +a(g180105 +g180107 +S'barn' +p180109 +tp180110 +a(g180107 +g180109 +S'symmetrically' +p180111 +tp180112 +a(g180109 +g180111 +S'flank' +p180113 +tp180114 +a(g180111 +g180113 +S'this' +p180115 +tp180116 +a(g180113 +g180115 +S'central' +p180117 +tp180118 +a(g180115 +g180117 +S'landscape.' +p180119 +tp180120 +a(g180117 +g180119 +S'although' +p180121 +tp180122 +a(g180119 +g180121 +S'the' +p180123 +tp180124 +a(g180121 +g180123 +S'stark' +p180125 +tp180126 +a(g180123 +g180125 +S'silhouettes' +p180127 +tp180128 +a(g180125 +g180127 +S'of' +p180129 +tp180130 +a(g180127 +g180129 +S'figures' +p180131 +tp180132 +a(g180129 +g180131 +S'and' +p180133 +tp180134 +a(g180131 +g180133 +S'buildings' +p180135 +tp180136 +a(g180133 +g180135 +S'seem' +p180137 +tp180138 +a(g180135 +g180137 +S'naive,' +p180139 +tp180140 +a(g180137 +g180139 +S'hicks' +p180141 +tp180142 +a(g180139 +g180141 +S'softly' +p180143 +tp180144 +a(g180141 +g180143 +S'blended' +p180145 +tp180146 +a(g180143 +g180145 +S'his' +p180147 +tp180148 +a(g180145 +g180147 +S'paints' +p180149 +tp180150 +a(g180147 +g180149 +S'over' +p180151 +tp180152 +a(g180149 +g180151 +S'the' +p180153 +tp180154 +a(g180151 +g180153 +S'orchard' +p180155 +tp180156 +a(g180153 +g180155 +S'to' +p180157 +tp180158 +a(g180155 +g180157 +S'give' +p180159 +tp180160 +a(g180157 +g180159 +S'the' +p180161 +tp180162 +a(g180159 +g180161 +S'impression' +p180163 +tp180164 +a(g180161 +g180163 +S'of' +p180165 +tp180166 +a(g180163 +g180165 +S'space' +p180167 +tp180168 +a(g180165 +g180167 +S'existing' +p180169 +tp180170 +a(g180167 +g180169 +S'well' +p180171 +tp180172 +a(g180169 +g180171 +S'beyond' +p180173 +tp180174 +a(g180171 +g180173 +S'what' +p180175 +tp180176 +a(g180173 +g180175 +S'the' +p180177 +tp180178 +a(g180175 +g180177 +S'eye' +p180179 +tp180180 +a(g180177 +g180179 +S'can' +p180181 +tp180182 +a(g180179 +g180181 +S'see.' +p180183 +tp180184 +a(g180181 +g180183 +S'copley' +p180185 +tp180186 +a(g180183 +g180185 +S'excelled' +p180187 +tp180188 +a(g180185 +g180187 +S'at' +p180189 +tp180190 +a(g180187 +g180189 +S'portraying' +p180191 +tp180192 +a(g180189 +g180191 +S'elderly' +p180193 +tp180194 +a(g180191 +g180193 +S'men,' +p180195 +tp180196 +a(g180193 +g180195 +S'as' +p180197 +tp180198 +a(g180195 +g180197 +S'with' +p180199 +tp180200 +a(g180197 +g180199 +S'this' +p180201 +tp180202 +a(g180199 +g180201 +S'penetrating' +p180203 +tp180204 +a(g180201 +g180203 +S'likeness' +p180205 +tp180206 +a(g180203 +g180205 +S'of' +p180207 +tp180208 +a(g180205 +g180207 +S'an' +p180209 +tp180210 +a(g180207 +g180209 +S'eighty-two-year-old' +p180211 +tp180212 +a(g180209 +g180211 +S'legislator' +p180213 +tp180214 +a(g180211 +g180213 +S'and' +p180215 +tp180216 +a(g180213 +g180215 +S'former' +p180217 +tp180218 +a(g180215 +g180217 +S'frontier' +p180219 +tp180220 +a(g180217 +g180219 +S'soldier' +p180221 +tp180222 +a(g180219 +g180221 +S'from' +p180223 +tp180224 +a(g180221 +g180223 +S'tyngsborough,' +p180225 +tp180226 +a(g180223 +g180225 +S'massachusetts.' +p180227 +tp180228 +a(g180225 +g180227 +S'eleazer' +p180229 +tp180230 +a(g180227 +g180229 +S'tyng' +p180231 +tp180232 +a(g180229 +g180231 +S'(1690-1782),' +p180233 +tp180234 +a(g180231 +g180233 +S'sitting' +p180235 +tp180236 +a(g180233 +g180235 +S'comfortably' +p180237 +tp180238 +a(g180235 +g180237 +S'in' +p180239 +tp180240 +a(g180237 +g180239 +S'a' +p180241 +tp180242 +a(g180239 +g180241 +S'windsor' +p180243 +tp180244 +a(g180241 +g180243 +S'armchair,' +p180245 +tp180246 +a(g180243 +g180245 +S'turns' +p180247 +tp180248 +a(g180245 +g180247 +S'to' +p180249 +tp180250 +a(g180247 +g180249 +S'greet' +p180251 +tp180252 +a(g180249 +g180251 +S'the' +p180253 +tp180254 +a(g180251 +g180253 +S'viewer.' +p180255 +tp180256 +a(g180253 +g180255 +S'his' +p180257 +tp180258 +a(g180255 +g180257 +S'appraising' +p180259 +tp180260 +a(g180257 +g180259 +S'face' +p180261 +tp180262 +a(g180259 +g180261 +S'and' +p180263 +tp180264 +a(g180261 +g180263 +S'rugged' +p180265 +tp180266 +a(g180263 +g180265 +S'hands' +p180267 +tp180268 +a(g180265 +g180267 +S'are' +p180269 +tp180270 +a(g180267 +g180269 +S'highlighted' +p180271 +tp180272 +a(g180269 +g180271 +S'by' +p180273 +tp180274 +a(g180271 +g180273 +S'a' +p180275 +tp180276 +a(g180273 +g180275 +S'golden' +p180277 +tp180278 +a(g180275 +g180277 +S'glow.' +p180279 +tp180280 +a(g180277 +g180279 +S'corneille' +p180281 +tp180282 +a(g180279 +g180281 +S'was' +p180283 +tp180284 +a(g180281 +g180283 +S'born' +p180285 +tp180286 +a(g180283 +g180285 +S'in' +p180287 +tp180288 +a(g180285 +g180287 +S'the' +p180289 +tp180290 +a(g180287 +g180289 +S'netherlands' +p180291 +tp180292 +a(g180289 +g180291 +S'and' +p180293 +tp180294 +a(g180291 +g180293 +S'possibly' +p180295 +tp180296 +a(g180293 +g180295 +S'received' +p180297 +tp180298 +a(g180295 +g180297 +S'his' +p180299 +tp180300 +a(g180297 +g180299 +S'training' +p180301 +tp180302 +a(g180299 +g180301 +S'in' +p180303 +tp180304 +a(g180301 +g180303 +S'antwerp,' +p180305 +tp180306 +a(g180303 +g180305 +S'but' +p180307 +tp180308 +a(g180305 +g180307 +S'by' +p180309 +tp180310 +a(g180307 +g180309 +S'the' +p180311 +tp180312 +a(g180309 +g180311 +S'1530s' +p180313 +tp180314 +a(g180311 +g180313 +S'he' +p180315 +tp180316 +a(g180313 +g180315 +S'was' +p180317 +tp180318 +a(g180315 +g180317 +S'in' +p180319 +tp180320 +a(g180317 +g180319 +S'lyons,' +p180321 +tp180322 +a(g180319 +g180321 +S'where' +p180323 +tp180324 +a(g180321 +g180323 +S'he' +p180325 +tp180326 +a(g180323 +g180325 +S'became' +p180327 +tp180328 +a(g180325 +g180327 +S'the' +p180329 +tp180330 +a(g180327 +g180329 +S'dominant' +p180331 +tp180332 +a(g180329 +g180331 +S'court' +p180333 +tp180334 +a(g180331 +g180333 +S'portraitist' +p180335 +tp180336 +a(g180333 +g180335 +S'of' +p180337 +tp180338 +a(g180335 +g180337 +S'the' +p180339 +tp180340 +a(g180337 +g180339 +S'french' +p180341 +tp180342 +a(g180339 +g180341 +S'renaissance.' +p180343 +tp180344 +a(g180341 +g180343 +S'he' +p180345 +tp180346 +a(g180343 +g180345 +S'was' +p180347 +tp180348 +a(g180345 +g180347 +S'made' +p180349 +tp180350 +a(g180347 +g180349 +S'a' +p180351 +tp180352 +a(g180349 +g180351 +S'french' +p180353 +tp180354 +a(g180351 +g180353 +S'citizen' +p180355 +tp180356 +a(g180353 +g180355 +S'by' +p180357 +tp180358 +a(g180355 +g180357 +S'henry' +p180359 +tp180360 +a(g180357 +g180359 +S'ii' +p180361 +tp180362 +a(g180359 +g180361 +S'and' +p180363 +tp180364 +a(g180361 +g180363 +S'converted' +p180365 +tp180366 +a(g180363 +g180365 +S'to' +p180367 +tp180368 +a(g180365 +g180367 +S'catholicism' +p180369 +tp180370 +a(g180367 +g180369 +S'in' +p180371 +tp180372 +a(g180369 +g180371 +S'1546,' +p180373 +tp180374 +a(g180371 +g180373 +S'presumably' +p180375 +tp180376 +a(g180373 +g180375 +S'to' +p180377 +tp180378 +a(g180375 +g180377 +S'preserve' +p180379 +tp180380 +a(g180377 +g180379 +S'favor' +p180381 +tp180382 +a(g180379 +g180381 +S'with' +p180383 +tp180384 +a(g180381 +g180383 +S'his' +p180385 +tp180386 +a(g180383 +g180385 +S'royal' +p180387 +tp180388 +a(g180385 +g180387 +S'patrons.' +p180389 +tp180390 +a(g180387 +g180389 +S'in' +p180391 +tp180392 +a(g180389 +g180391 +S'lyons' +p180393 +tp180394 +a(g180391 +g180393 +S'artists' +p180395 +tp180396 +a(g180393 +g180395 +S'were' +p180397 +tp180398 +a(g180395 +g180397 +S'free' +p180399 +tp180400 +a(g180397 +g180399 +S'of' +p180401 +tp180402 +a(g180399 +g180401 +S'many' +p180403 +tp180404 +a(g180401 +g180403 +S'guild' +p180405 +tp180406 +a(g180403 +g180405 +S'restrictions' +p180407 +tp180408 +a(g180405 +g180407 +S'that' +p180409 +tp180410 +a(g180407 +g180409 +S'controlled' +p180411 +tp180412 +a(g180409 +g180411 +S'trade' +p180413 +tp180414 +a(g180411 +g180413 +S'elsewhere.' +p180415 +tp180416 +a(g180413 +g180415 +S'there' +p180417 +tp180418 +a(g180415 +g180417 +S'were,' +p180419 +tp180420 +a(g180417 +g180419 +S'for' +p180421 +tp180422 +a(g180419 +g180421 +S'example,' +p180423 +tp180424 +a(g180421 +g180423 +S'art' +p180425 +tp180426 +a(g180423 +g180425 +S'sellers' +p180427 +tp180428 +a(g180425 +g180427 +S'who' +p180429 +tp180430 +a(g180427 +g180429 +S'acted' +p180431 +tp180432 +a(g180429 +g180431 +S'independently' +p180433 +tp180434 +a(g180431 +g180433 +S'of' +p180435 +tp180436 +a(g180433 +g180435 +S'any' +p180437 +tp180438 +a(g180435 +g180437 +S'master’s' +p180439 +tp180440 +a(g180437 +g180439 +S'workshop—true' +p180441 +tp180442 +a(g180439 +g180441 +S'commercial' +p180443 +tp180444 +a(g180441 +g180443 +S'galleries.' +p180445 +tp180446 +a(g180443 +g180445 +S'corneille' +p180447 +tp180448 +a(g180445 +g180447 +S'himself' +p180449 +tp180450 +a(g180447 +g180449 +S'seems' +p180451 +tp180452 +a(g180449 +g180451 +S'to' +p180453 +tp180454 +a(g180451 +g180453 +S'have' +p180455 +tp180456 +a(g180453 +g180455 +S'had' +p180457 +tp180458 +a(g180455 +g180457 +S'a' +p180459 +tp180460 +a(g180457 +g180459 +S'studio' +p180461 +tp180462 +a(g180459 +g180461 +S'where' +p180463 +tp180464 +a(g180461 +g180463 +S'the' +p180465 +tp180466 +a(g180463 +g180465 +S'public' +p180467 +tp180468 +a(g180465 +g180467 +S'could' +p180469 +tp180470 +a(g180467 +g180469 +S'buy' +p180471 +tp180472 +a(g180469 +g180471 +S'workshop' +p180473 +tp180474 +a(g180471 +g180473 +S'copies' +p180475 +tp180476 +a(g180473 +g180475 +S'of' +p180477 +tp180478 +a(g180475 +g180477 +S'his' +p180479 +tp180480 +a(g180477 +g180479 +S'royal' +p180481 +tp180482 +a(g180479 +g180481 +S'portraits.' +p180483 +tp180484 +a(g180481 +g180483 +S'he' +p180485 +tp180486 +a(g180483 +g180485 +S'also' +p180487 +tp180488 +a(g180485 +g180487 +S'accepted' +p180489 +tp180490 +a(g180487 +g180489 +S'commissions' +p180491 +tp180492 +a(g180489 +g180491 +S'from' +p180493 +tp180494 +a(g180491 +g180493 +S'families' +p180495 +tp180496 +a(g180493 +g180495 +S'engaged' +p180497 +tp180498 +a(g180495 +g180497 +S'in' +p180499 +tp180500 +a(g180497 +g180499 +S'the' +p180501 +tp180502 +a(g180499 +g180501 +S'city’s' +p180503 +tp180504 +a(g180501 +g180503 +S'busy' +p180505 +tp180506 +a(g180503 +g180505 +S'printing' +p180507 +tp180508 +a(g180505 +g180507 +S'and' +p180509 +tp180510 +a(g180507 +g180509 +S'silk' +p180511 +tp180512 +a(g180509 +g180511 +S'industries.' +p180513 +tp180514 +a(g180511 +g180513 +S'inventories' +p180515 +tp180516 +a(g180513 +g180515 +S'show' +p180517 +tp180518 +a(g180515 +g180517 +S'that' +p180519 +tp180520 +a(g180517 +g180519 +S'even' +p180521 +tp180522 +a(g180519 +g180521 +S'people' +p180523 +tp180524 +a(g180521 +g180523 +S'of' +p180525 +tp180526 +a(g180523 +g180525 +S'modest' +p180527 +tp180528 +a(g180525 +g180527 +S'means' +p180529 +tp180530 +a(g180527 +g180529 +S'owned' +p180531 +tp180532 +a(g180529 +g180531 +S'paintings.' +p180533 +tp180534 +a(g180531 +g180533 +S'this' +p180535 +tp180536 +a(g180533 +g180535 +S'man' +p180537 +tp180538 +a(g180535 +g180537 +S'wears' +p180539 +tp180540 +a(g180537 +g180539 +S'the' +p180541 +tp180542 +a(g180539 +g180541 +S'dress' +p180543 +tp180544 +a(g180541 +g180543 +S'of' +p180545 +tp180546 +a(g180543 +g180545 +S'an' +p180547 +tp180548 +a(g180545 +g180547 +S'academic' +p180549 +tp180550 +a(g180547 +g180549 +S'or' +p180551 +tp180552 +a(g180549 +g180551 +S'a' +p180553 +tp180554 +a(g180551 +g180553 +S'franciscan' +p180555 +tp180556 +a(g180553 +g180555 +S'monk,' +p180557 +tp180558 +a(g180555 +g180557 +S'but' +p180559 +tp180560 +a(g180557 +g180559 +S'his' +p180561 +tp180562 +a(g180559 +g180561 +S'identity' +p180563 +tp180564 +a(g180561 +g180563 +S'is' +p180565 +tp180566 +a(g180563 +g180565 +S'otherwise' +p180567 +tp180568 +a(g180565 +g180567 +S'unknown.' +p180569 +tp180570 +a(g180567 +g180569 +S'the' +p180571 +tp180572 +a(g180569 +g180571 +S'vivid' +p180573 +tp180574 +a(g180571 +g180573 +S'blue-green' +p180575 +tp180576 +a(g180573 +g180575 +S'of' +p180577 +tp180578 +a(g180575 +g180577 +S'the' +p180579 +tp180580 +a(g180577 +g180579 +S'plain' +p180581 +tp180582 +a(g180579 +g180581 +S'background' +p180583 +tp180584 +a(g180581 +g180583 +S'and' +p180585 +tp180586 +a(g180583 +g180585 +S'its' +p180587 +tp180588 +a(g180585 +g180587 +S'contrast' +p180589 +tp180590 +a(g180587 +g180589 +S'with' +p180591 +tp180592 +a(g180589 +g180591 +S'the' +p180593 +tp180594 +a(g180591 +g180593 +S'careful' +p180595 +tp180596 +a(g180593 +g180595 +S'detail' +p180597 +tp180598 +a(g180595 +g180597 +S'in' +p180599 +tp180600 +a(g180597 +g180599 +S'the' +p180601 +tp180602 +a(g180599 +g180601 +S'face' +p180603 +tp180604 +a(g180601 +g180603 +S'lend' +p180605 +tp180606 +a(g180603 +g180605 +S'intensity' +p180607 +tp180608 +a(g180605 +g180607 +S'and' +p180609 +tp180610 +a(g180607 +g180609 +S'presence' +p180611 +tp180612 +a(g180609 +g180611 +S'to' +p180613 +tp180614 +a(g180611 +g180613 +S'his' +p180615 +tp180616 +a(g180613 +g180615 +S'portrait' +p180617 +tp180618 +a(g180615 +g180617 +S'despite' +p180619 +tp180620 +a(g180617 +g180619 +S'its' +p180621 +tp180622 +a(g180619 +g180621 +S'small' +p180623 +tp180624 +a(g180621 +g180623 +S'size.' +p180625 +tp180626 +a(g180623 +g180625 +S'the' +p180627 +tp180628 +a(g180625 +g180627 +S'minute' +p180629 +tp180630 +a(g180627 +g180629 +S'brushstrokes' +p180631 +tp180632 +a(g180629 +g180631 +S'that' +p180633 +tp180634 +a(g180631 +g180633 +S'pick' +p180635 +tp180636 +a(g180633 +g180635 +S'out' +p180637 +tp180638 +a(g180635 +g180637 +S'individual' +p180639 +tp180640 +a(g180637 +g180639 +S'hairs' +p180641 +tp180642 +a(g180639 +g180641 +S'in' +p180643 +tp180644 +a(g180641 +g180643 +S'the' +p180645 +tp180646 +a(g180643 +g180645 +S'man’s' +p180647 +tp180648 +a(g180645 +g180647 +S'beard' +p180649 +tp180650 +a(g180647 +g180649 +S'and' +p180651 +tp180652 +a(g180649 +g180651 +S'the' +p180653 +tp180654 +a(g180651 +g180653 +S'smooth' +p180655 +tp180656 +a(g180653 +g180655 +S'finish' +p180657 +tp180658 +a(g180655 +g180657 +S'of' +p180659 +tp180660 +a(g180657 +g180659 +S'the' +p180661 +tp180662 +a(g180659 +g180661 +S'surface' +p180663 +tp180664 +a(g180661 +g180663 +S'are' +p180665 +tp180666 +a(g180663 +g180665 +S'evidence' +p180667 +tp180668 +a(g180665 +g180667 +S'of' +p180669 +tp180670 +a(g180667 +g180669 +S'corneille’s' +p180671 +tp180672 +a(g180669 +g180671 +S'training' +p180673 +tp180674 +a(g180671 +g180673 +S'in' +p180675 +tp180676 +a(g180673 +g180675 +S'the' +p180677 +tp180678 +a(g180675 +g180677 +S'north.' +p180679 +tp180680 +a(g180677 +g180679 +S'the' +p180681 +tp180682 +a(g180679 +g180681 +S'rare' +p180683 +tp180684 +a(g180681 +g180683 +S'frame,' +p180685 +tp180686 +a(g180683 +g180685 +S'which' +p180687 +tp180688 +a(g180685 +g180687 +S'is' +p180689 +tp180690 +a(g180687 +g180689 +S'contemporary' +p180691 +tp180692 +a(g180689 +g180691 +S'with' +p180693 +tp180694 +a(g180691 +g180693 +S'the' +p180695 +tp180696 +a(g180693 +g180695 +S'painting,' +p180697 +tp180698 +a(g180695 +g180697 +S'on' +p180699 +tp180700 +a(g180697 +g180699 +S'the' +p180701 +tp180702 +a(g180699 +g180701 +S'other' +p180703 +tp180704 +a(g180701 +g180703 +S'hand,' +p180705 +tp180706 +a(g180703 +g180705 +S'reflects' +p180707 +tp180708 +a(g180705 +g180707 +S'italian' +p180709 +tp180710 +a(g180707 +g180709 +S'renaissance' +p180711 +tp180712 +a(g180709 +g180711 +S'architecture.' +p180713 +tp180714 +a(g180711 +g180713 +S'it' +p180715 +tp180716 +a(g180713 +g180715 +S'is' +p180717 +tp180718 +a(g180715 +g180717 +S'the' +p180719 +tp180720 +a(g180717 +g180719 +S'blending' +p180721 +tp180722 +a(g180719 +g180721 +S'of' +p180723 +tp180724 +a(g180721 +g180723 +S'such' +p180725 +tp180726 +a(g180723 +g180725 +S'northern' +p180727 +tp180728 +a(g180725 +g180727 +S'and' +p180729 +tp180730 +a(g180727 +g180729 +S'southern' +p180731 +tp180732 +a(g180729 +g180731 +S'elements' +p180733 +tp180734 +a(g180731 +g180733 +S'that' +p180735 +tp180736 +a(g180733 +g180735 +S'characterizes' +p180737 +tp180738 +a(g180735 +g180737 +S'french' +p180739 +tp180740 +a(g180737 +g180739 +S'art' +p180741 +tp180742 +a(g180739 +g180741 +S'in' +p180743 +tp180744 +a(g180741 +g180743 +S'the' +p180745 +tp180746 +a(g180743 +g180745 +S'mid-1500s.' +p180747 +tp180748 +a(g180745 +g180747 +S'the' +p180749 +tp180750 +a(g180747 +g180749 +S'old' +p180751 +tp180752 +a(g180749 +g180751 +S'testament' +p180753 +tp180754 +a(g180751 +g180753 +S'book' +p180755 +tp180756 +a(g180753 +g180755 +S'of' +p180757 +tp180758 +a(g180755 +g180757 +S'daniel' +p180759 +tp180760 +a(g180757 +g180759 +S'recounts' +p180761 +tp180762 +a(g180759 +g180761 +S'how' +p180763 +tp180764 +a(g180761 +g180763 +S'the' +p180765 +tp180766 +a(g180763 +g180765 +S'biblical' +p180767 +tp180768 +a(g180765 +g180767 +S'hero' +p180769 +tp180770 +a(g180767 +g180769 +S'was' +p180771 +tp180772 +a(g180769 +g180771 +S'condemned' +p180773 +tp180774 +a(g180771 +g180773 +S'to' +p180775 +tp180776 +a(g180773 +g180775 +S'spend' +p180777 +tp180778 +a(g180775 +g180777 +S'the' +p180779 +tp180780 +a(g180777 +g180779 +S'night' +p180781 +tp180782 +a(g180779 +g180781 +S'in' +p180783 +tp180784 +a(g180781 +g180783 +S'the' +p180785 +tp180786 +a(g180783 +g180785 +S"lions'" +p180787 +tp180788 +a(g180785 +g180787 +S'den' +p180789 +tp180790 +a(g180787 +g180789 +S'for' +p180791 +tp180792 +a(g180789 +g180791 +S'worshipping' +p180793 +tp180794 +a(g180791 +g180793 +S'god' +p180795 +tp180796 +a(g180793 +g180795 +S'rather' +p180797 +tp180798 +a(g180795 +g180797 +S'than' +p180799 +tp180800 +a(g180797 +g180799 +S'the' +p180801 +tp180802 +a(g180799 +g180801 +S'persian' +p180803 +tp180804 +a(g180801 +g180803 +S'king' +p180805 +tp180806 +a(g180803 +g180805 +S'darius.' +p180807 +tp180808 +a(g180805 +g180807 +S'depicted' +p180809 +tp180810 +a(g180807 +g180809 +S'here' +p180811 +tp180812 +a(g180809 +g180811 +S'is' +p180813 +tp180814 +a(g180811 +g180813 +S'the' +p180815 +tp180816 +a(g180813 +g180815 +S'following' +p180817 +tp180818 +a(g180815 +g180817 +S'morning' +p180819 +tp180820 +a(g180817 +g180819 +S'when,' +p180821 +tp180822 +a(g180819 +g180821 +S'after' +p180823 +tp180824 +a(g180821 +g180823 +S'the' +p180825 +tp180826 +a(g180823 +g180825 +S'stone' +p180827 +tp180828 +a(g180825 +g180827 +S'sealing' +p180829 +tp180830 +a(g180827 +g180829 +S'the' +p180831 +tp180832 +a(g180829 +g180831 +S'entrance' +p180833 +tp180834 +a(g180831 +g180833 +S'was' +p180835 +tp180836 +a(g180833 +g180835 +S'rolled' +p180837 +tp180838 +a(g180835 +g180837 +S'away,' +p180839 +tp180840 +a(g180837 +g180839 +S'daniel' +p180841 +tp180842 +a(g180839 +g180841 +S'gives' +p180843 +tp180844 +a(g180841 +g180843 +S'to' +p180845 +tp180846 +a(g180843 +g180845 +S'god' +p180847 +tp180848 +a(g180845 +g180847 +S'for' +p180849 +tp180850 +a(g180847 +g180849 +S'having' +p180851 +tp180852 +a(g180849 +g180851 +S'survived' +p180853 +tp180854 +a(g180851 +g180853 +S'the' +p180855 +tp180856 +a(g180853 +g180855 +S'night' +p180857 +tp180858 +a(g180855 +g180857 +S'safely.' +p180859 +tp180860 +a(g180857 +g180859 +S'for' +p180861 +tp180862 +a(g180859 +g180861 +S'theologians,' +p180863 +tp180864 +a(g180861 +g180863 +S'the' +p180865 +tp180866 +a(g180863 +g180865 +S'image' +p180867 +tp180868 +a(g180865 +g180867 +S'of' +p180869 +tp180870 +a(g180867 +g180869 +S'daniel' +p180871 +tp180872 +a(g180869 +g180871 +S'being' +p180873 +tp180874 +a(g180871 +g180873 +S'freed' +p180875 +tp180876 +a(g180873 +g180875 +S'from' +p180877 +tp180878 +a(g180875 +g180877 +S'the' +p180879 +tp180880 +a(g180877 +g180879 +S'cave' +p180881 +tp180882 +a(g180879 +g180881 +S'symbolized' +p180883 +tp180884 +a(g180881 +g180883 +S'the' +p180885 +tp180886 +a(g180883 +g180885 +S'resurrection' +p180887 +tp180888 +a(g180885 +g180887 +S'of' +p180889 +tp180890 +a(g180887 +g180889 +S'christ' +p180891 +tp180892 +a(g180889 +g180891 +S'from' +p180893 +tp180894 +a(g180891 +g180893 +S'the' +p180895 +tp180896 +a(g180893 +g180895 +S'sepulcher.' +p180897 +tp180898 +a(g180895 +g180897 +S'rubens' +p180899 +tp180900 +a(g180897 +g180899 +S'masterfully' +p180901 +tp180902 +a(g180899 +g180901 +S'combined' +p180903 +tp180904 +a(g180901 +g180903 +S'realism' +p180905 +tp180906 +a(g180903 +g180905 +S'and' +p180907 +tp180908 +a(g180905 +g180907 +S'theatricality' +p180909 +tp180910 +a(g180907 +g180909 +S'in' +p180911 +tp180912 +a(g180909 +g180911 +S'order' +p180913 +tp180914 +a(g180911 +g180913 +S'to' +p180915 +tp180916 +a(g180913 +g180915 +S'produce' +p180917 +tp180918 +a(g180915 +g180917 +S'a' +p180919 +tp180920 +a(g180917 +g180919 +S'strong' +p180921 +tp180922 +a(g180919 +g180921 +S'emotional' +p180923 +tp180924 +a(g180921 +g180923 +S'impact.' +p180925 +tp180926 +a(g180923 +g180925 +S'several' +p180927 +tp180928 +a(g180925 +g180927 +S'of' +p180929 +tp180930 +a(g180927 +g180929 +S'the' +p180931 +tp180932 +a(g180929 +g180931 +S'lions,' +p180933 +tp180934 +a(g180931 +g180933 +S'for' +p180935 +tp180936 +a(g180933 +g180935 +S'instance,' +p180937 +tp180938 +a(g180935 +g180937 +S'stare' +p180939 +tp180940 +a(g180937 +g180939 +S'directly' +p180941 +tp180942 +a(g180939 +g180941 +S'at' +p180943 +tp180944 +a(g180941 +g180943 +S'the' +p180945 +tp180946 +a(g180943 +g180945 +S'viewer,' +p180947 +tp180948 +a(g180945 +g180947 +S'creating' +p180949 +tp180950 +a(g180947 +g180949 +S'a' +p180951 +tp180952 +a(g180949 +g180951 +S'suggestion' +p180953 +tp180954 +a(g180951 +g180953 +S'that' +p180955 +tp180956 +a(g180953 +g180955 +S'the' +p180957 +tp180958 +a(g180955 +g180957 +S'spectator' +p180959 +tp180960 +a(g180957 +g180959 +S'shares' +p180961 +tp180962 +a(g180959 +g180961 +S'the' +p180963 +tp180964 +a(g180961 +g180963 +S'same' +p180965 +tp180966 +a(g180963 +g180965 +S'space' +p180967 +tp180968 +a(g180965 +g180967 +S'as' +p180969 +tp180970 +a(g180967 +g180969 +S'the' +p180971 +tp180972 +a(g180969 +g180971 +S'lions,' +p180973 +tp180974 +a(g180971 +g180973 +S'and' +p180975 +tp180976 +a(g180973 +g180975 +S'thus,' +p180977 +tp180978 +a(g180975 +g180977 +S'like' +p180979 +tp180980 +a(g180977 +g180979 +S'daniel,' +p180981 +tp180982 +a(g180979 +g180981 +S'experiences' +p180983 +tp180984 +a(g180981 +g180983 +S'the' +p180985 +tp180986 +a(g180983 +g180985 +S'same' +p180987 +tp180988 +a(g180985 +g180987 +S'menace' +p180989 +tp180990 +a(g180987 +g180989 +S'of' +p180991 +tp180992 +a(g180989 +g180991 +S'the' +p180993 +tp180994 +a(g180991 +g180993 +S'savage' +p180995 +tp180996 +a(g180993 +g180995 +S'predators.' +p180997 +tp180998 +a(g180995 +g180997 +S'this' +p180999 +tp181000 +a(g180997 +g180999 +S'immediacy' +p181001 +tp181002 +a(g180999 +g181001 +S'is' +p181003 +tp181004 +a(g181001 +g181003 +S'heightened' +p181005 +tp181006 +a(g181003 +g181005 +S'by' +p181007 +tp181008 +a(g181005 +g181007 +S'the' +p181009 +tp181010 +a(g181007 +g181009 +S'fact' +p181011 +tp181012 +a(g181009 +g181011 +S'that' +p181013 +tp181014 +a(g181011 +g181013 +S'the' +p181015 +tp181016 +a(g181013 +g181015 +S'beasts' +p181017 +tp181018 +a(g181015 +g181017 +S'are' +p181019 +tp181020 +a(g181017 +g181019 +S'portrayed' +p181021 +tp181022 +a(g181019 +g181021 +S'full' +p181023 +tp181024 +a(g181021 +g181023 +S'size' +p181025 +tp181026 +a(g181023 +g181025 +S'on' +p181027 +tp181028 +a(g181025 +g181027 +S'the' +p181029 +tp181030 +a(g181027 +g181029 +S'huge' +p181031 +tp181032 +a(g181029 +g181031 +S'canvas' +p181033 +tp181034 +a(g181031 +g181033 +S'and' +p181035 +tp181036 +a(g181033 +g181035 +S'depicted' +p181037 +tp181038 +a(g181035 +g181037 +S'with' +p181039 +tp181040 +a(g181037 +g181039 +S'convincing' +p181041 +tp181042 +a(g181039 +g181041 +S'realism.' +p181043 +tp181044 +a(g181041 +g181043 +S'the' +p181045 +tp181046 +a(g181043 +g181045 +S'lifelike' +p181047 +tp181048 +a(g181045 +g181047 +S'movement' +p181049 +tp181050 +a(g181047 +g181049 +S'of' +p181051 +tp181052 +a(g181049 +g181051 +S'the' +p181053 +tp181054 +a(g181051 +g181053 +S'lions' +p181055 +tp181056 +a(g181053 +g181055 +S'and' +p181057 +tp181058 +a(g181055 +g181057 +S'their' +p181059 +tp181060 +a(g181057 +g181059 +S'superbly' +p181061 +tp181062 +a(g181059 +g181061 +S'rendered' +p181063 +tp181064 +a(g181061 +g181063 +S'fur' +p181065 +tp181066 +a(g181063 +g181065 +S'results' +p181067 +tp181068 +a(g181065 +g181067 +S'from' +p181069 +tp181070 +a(g181067 +g181069 +S"rubens'" +p181071 +tp181072 +a(g181069 +g181071 +S'direct' +p181073 +tp181074 +a(g181071 +g181073 +S'observation' +p181075 +tp181076 +a(g181073 +g181075 +S'and' +p181077 +tp181078 +a(g181075 +g181077 +S'sketches' +p181079 +tp181080 +a(g181077 +g181079 +S'made' +p181081 +tp181082 +a(g181079 +g181081 +S'in' +p181083 +tp181084 +a(g181081 +g181083 +S'the' +p181085 +tp181086 +a(g181083 +g181085 +S'royal' +p181087 +tp181088 +a(g181085 +g181087 +S'menagerie' +p181089 +tp181090 +a(g181087 +g181089 +S'in' +p181091 +tp181092 +a(g181089 +g181091 +S'brussels.' +p181093 +tp181094 +a(g181091 +g181093 +S'complementing' +p181095 +tp181096 +a(g181093 +g181095 +S'this' +p181097 +tp181098 +a(g181095 +g181097 +S'veracity' +p181099 +tp181100 +a(g181097 +g181099 +S'is' +p181101 +tp181102 +a(g181099 +g181101 +S'the' +p181103 +tp181104 +a(g181101 +g181103 +S'dramatic' +p181105 +tp181106 +a(g181103 +g181105 +S'lighting' +p181107 +tp181108 +a(g181105 +g181107 +S'and' +p181109 +tp181110 +a(g181107 +g181109 +S'the' +p181111 +tp181112 +a(g181109 +g181111 +S'exaggerated' +p181113 +tp181114 +a(g181111 +g181113 +S'emotionalism' +p181115 +tp181116 +a(g181113 +g181115 +S'of' +p181117 +tp181118 +a(g181115 +g181117 +S"daniel's" +p181119 +tp181120 +a(g181117 +g181119 +S'prayerful' +p181121 +tp181122 +a(g181119 +g181121 +S'pose.' +p181123 +tp181124 +a(g181121 +g181123 +S'like' +p181125 +tp181126 +a(g181123 +g181125 +S'his' +p181127 +tp181128 +a(g181125 +g181127 +S'teacher,' +p181129 +tp181130 +a(g181127 +g181129 +S'thomas' +p181131 +tp181132 +a(g181129 +g181131 +S'cole,' +p181133 +tp181134 +a(g181131 +g181133 +S'church' +p181135 +tp181136 +a(g181133 +g181135 +S'conveyed' +p181137 +tp181138 +a(g181135 +g181137 +S'a' +p181139 +tp181140 +a(g181137 +g181139 +S'sense' +p181141 +tp181142 +a(g181139 +g181141 +S'of' +p181143 +tp181144 +a(g181141 +g181143 +S'awesome' +p181145 +tp181146 +a(g181143 +g181145 +S'sublimity' +p181147 +tp181148 +a(g181145 +g181147 +S'in' +p181149 +tp181150 +a(g181147 +g181149 +S'his' +p181151 +tp181152 +a(g181149 +g181151 +S'landscapes' +p181153 +tp181154 +a(g181151 +g181153 +S'by' +p181155 +tp181156 +a(g181153 +g181155 +S'celebrating' +p181157 +tp181158 +a(g181155 +g181157 +S'the' +p181159 +tp181160 +a(g181157 +g181159 +S'seemingly' +p181161 +tp181162 +a(g181159 +g181161 +S'infinite' +p181163 +tp181164 +a(g181161 +g181163 +S'wonders' +p181165 +tp181166 +a(g181163 +g181165 +S'of' +p181167 +tp181168 +a(g181165 +g181167 +S'the' +p181169 +tp181170 +a(g181167 +g181169 +S'natural' +p181171 +tp181172 +a(g181169 +g181171 +S'world.' +p181173 +tp181174 +a(g181171 +g181173 +S'the' +p181175 +tp181176 +a(g181173 +g181175 +S'artist' +p181177 +tp181178 +a(g181175 +g181177 +S'devoted' +p181179 +tp181180 +a(g181177 +g181179 +S'a' +p181181 +tp181182 +a(g181179 +g181181 +S'great' +p181183 +tp181184 +a(g181181 +g181183 +S'deal' +p181185 +tp181186 +a(g181183 +g181185 +S'of' +p181187 +tp181188 +a(g181185 +g181187 +S'time' +p181189 +tp181190 +a(g181187 +g181189 +S'to' +p181191 +tp181192 +a(g181189 +g181191 +S'scientific' +p181193 +tp181194 +a(g181191 +g181193 +S'study,' +p181195 +tp181196 +a(g181193 +g181195 +S'believing' +p181197 +tp181198 +a(g181195 +g181197 +S'that' +p181199 +tp181200 +a(g181197 +g181199 +S'a' +p181201 +tp181202 +a(g181199 +g181201 +S'knowledge' +p181203 +tp181204 +a(g181201 +g181203 +S'of' +p181205 +tp181206 +a(g181203 +g181205 +S'optics,' +p181207 +tp181208 +a(g181205 +g181207 +S'meteorology,' +p181209 +tp181210 +a(g181207 +g181209 +S'botany,' +p181211 +tp181212 +a(g181209 +g181211 +S'and' +p181213 +tp181214 +a(g181211 +g181213 +S'ecology' +p181215 +tp181216 +a(g181213 +g181215 +S'would' +p181217 +tp181218 +a(g181215 +g181217 +S'greatly' +p181219 +tp181220 +a(g181217 +g181219 +S'enhance' +p181221 +tp181222 +a(g181219 +g181221 +S'his' +p181223 +tp181224 +a(g181221 +g181223 +S'work.' +p181225 +tp181226 +a(g181223 +g181225 +S'after' +p181227 +tp181228 +a(g181225 +g181227 +S'reading' +p181229 +tp181230 +a(g181227 +g181229 +S'the' +p181231 +tp181232 +a(g181229 +g181231 +S'journalistic' +p181233 +tp181234 +a(g181231 +g181233 +S'accounts' +p181235 +tp181236 +a(g181233 +g181235 +S'of' +p181237 +tp181238 +a(g181235 +g181237 +S'the' +p181239 +tp181240 +a(g181237 +g181239 +S'german' +p181241 +tp181242 +a(g181239 +g181241 +S'naturalist,' +p181243 +tp181244 +a(g181241 +g181243 +S'alexander' +p181245 +tp181246 +a(g181243 +g181245 +S'von' +p181247 +tp181248 +a(g181245 +g181247 +S'humboldt,' +p181249 +tp181250 +a(g181247 +g181249 +S'church' +p181251 +tp181252 +a(g181249 +g181251 +S'explored' +p181253 +tp181254 +a(g181251 +g181253 +S'wilderness' +p181255 +tp181256 +a(g181253 +g181255 +S'regions' +p181257 +tp181258 +a(g181255 +g181257 +S'from' +p181259 +tp181260 +a(g181257 +g181259 +S'the' +p181261 +tp181262 +a(g181259 +g181261 +S'arctic' +p181263 +tp181264 +a(g181261 +g181263 +S'to' +p181265 +tp181266 +a(g181263 +g181265 +S'the' +p181267 +tp181268 +a(g181265 +g181267 +S'equator.' +p181269 +tp181270 +a(g181267 +g181269 +S'el' +p181271 +tp181272 +a(g181269 +g181271 +S'rio' +p181273 +tp181274 +a(g181271 +g181273 +S'de' +p181275 +tp181276 +a(g181273 +g181275 +S'luz' +p181277 +tp181278 +a(g181275 +g181277 +S'(the' +p181279 +tp181280 +a(g181277 +g181279 +S'river' +p181281 +tp181282 +a(g181279 +g181281 +S'of' +p181283 +tp181284 +a(g181281 +g181283 +S'light)' +p181285 +tp181286 +a(g181283 +g181285 +S'the' +p181287 +tp181288 +a(g181285 +g181287 +S'central' +p181289 +tp181290 +a(g181287 +g181289 +S'scene' +p181291 +tp181292 +a(g181289 +g181291 +S'of' +p181293 +tp181294 +a(g181291 +g181293 +S'the' +p181295 +tp181296 +a(g181293 +g181295 +S'eccentric' +p181297 +tp181298 +a(g181295 +g181297 +S'florentine' +p181299 +tp181300 +a(g181297 +g181299 +S'artist' +p181301 +tp181302 +a(g181299 +g181301 +S'piero' +p181303 +tp181304 +a(g181301 +g181303 +S'di' +p181305 +tp181306 +a(g181303 +g181305 +S"cosimo's" +p181307 +tp181308 +a(g181305 +g181307 +S"piero's" +p181309 +tp181310 +a(g181307 +g181309 +S'abandoning' +p181311 +tp181312 +a(g181309 +g181311 +S'his' +p181313 +tp181314 +a(g181311 +g181313 +S'career' +p181315 +tp181316 +a(g181313 +g181315 +S'as' +p181317 +tp181318 +a(g181315 +g181317 +S'a' +p181319 +tp181320 +a(g181317 +g181319 +S'barrister,' +p181321 +tp181322 +a(g181319 +g181321 +S'george' +p181323 +tp181324 +a(g181321 +g181323 +S'catlin' +p181325 +tp181326 +a(g181323 +g181325 +S'moved' +p181327 +tp181328 +a(g181325 +g181327 +S'to' +p181329 +tp181330 +a(g181327 +g181329 +S'philadelphia' +p181331 +tp181332 +a(g181329 +g181331 +S'and' +p181333 +tp181334 +a(g181331 +g181333 +S'set' +p181335 +tp181336 +a(g181333 +g181335 +S'up' +p181337 +tp181338 +a(g181335 +g181337 +S'shop' +p181339 +tp181340 +a(g181337 +g181339 +S'as' +p181341 +tp181342 +a(g181339 +g181341 +S'a' +p181343 +tp181344 +a(g181341 +g181343 +S'portrait' +p181345 +tp181346 +a(g181343 +g181345 +S'painter.' +p181347 +tp181348 +a(g181345 +g181347 +S'a' +p181349 +tp181350 +a(g181347 +g181349 +S'visiting' +p181351 +tp181352 +a(g181349 +g181351 +S'delegation' +p181353 +tp181354 +a(g181351 +g181353 +S'of' +p181355 +tp181356 +a(g181353 +g181355 +S'indians' +p181357 +tp181358 +a(g181355 +g181357 +S'rekindled' +p181359 +tp181360 +a(g181357 +g181359 +S'his' +p181361 +tp181362 +a(g181359 +g181361 +S'lifelong' +p181363 +tp181364 +a(g181361 +g181363 +S'interest' +p181365 +tp181366 +a(g181363 +g181365 +S'in' +p181367 +tp181368 +a(g181365 +g181367 +S'native' +p181369 +tp181370 +a(g181367 +g181369 +S'americans,' +p181371 +tp181372 +a(g181369 +g181371 +S'and' +p181373 +tp181374 +a(g181371 +g181373 +S'shortly' +p181375 +tp181376 +a(g181373 +g181375 +S'thereafter,' +p181377 +tp181378 +a(g181375 +g181377 +S'he' +p181379 +tp181380 +a(g181377 +g181379 +S'began' +p181381 +tp181382 +a(g181379 +g181381 +S'making' +p181383 +tp181384 +a(g181381 +g181383 +S'plans' +p181385 +tp181386 +a(g181383 +g181385 +S'to' +p181387 +tp181388 +a(g181385 +g181387 +S'travel' +p181389 +tp181390 +a(g181387 +g181389 +S'west.' +p181391 +tp181392 +a(g181389 +g181391 +S'inspired' +p181393 +tp181394 +a(g181391 +g181393 +S'by' +p181395 +tp181396 +a(g181393 +g181395 +S'the' +p181397 +tp181398 +a(g181395 +g181397 +S'examples' +p181399 +tp181400 +a(g181397 +g181399 +S'of' +p181401 +tp181402 +a(g181399 +g181401 +S'charles' +p181403 +tp181404 +a(g181401 +g181403 +S'willson' +p181405 +tp181406 +a(g181403 +g181405 +S"peale's" +p181407 +tp181408 +a(g181405 +g181407 +S'art,' +p181409 +tp181410 +a(g181407 +g181409 +S'work' +p181411 +tp181412 +a(g181409 +g181411 +S'on' +p181413 +tp181414 +a(g181411 +g181413 +S'natural' +p181415 +tp181416 +a(g181413 +g181415 +S'history,' +p181417 +tp181418 +a(g181415 +g181417 +S'and' +p181419 +tp181420 +a(g181417 +g181419 +S'ethnographic' +p181421 +tp181422 +a(g181419 +g181421 +S'museum,' +p181423 +tp181424 +a(g181421 +g181423 +S'the' +p181425 +tp181426 +a(g181423 +g181425 +S'explorer-artist' +p181427 +tp181428 +a(g181425 +g181427 +S'set' +p181429 +tp181430 +a(g181427 +g181429 +S'out' +p181431 +tp181432 +a(g181429 +g181431 +S'with' +p181433 +tp181434 +a(g181431 +g181433 +S'easel' +p181435 +tp181436 +a(g181433 +g181435 +S'and' +p181437 +tp181438 +a(g181435 +g181437 +S'paints' +p181439 +tp181440 +a(g181437 +g181439 +S'strapped' +p181441 +tp181442 +a(g181439 +g181441 +S'to' +p181443 +tp181444 +a(g181441 +g181443 +S'his' +p181445 +tp181446 +a(g181443 +g181445 +S'back' +p181447 +tp181448 +a(g181445 +g181447 +S'on' +p181449 +tp181450 +a(g181447 +g181449 +S'a' +p181451 +tp181452 +a(g181449 +g181451 +S'mission' +p181453 +tp181454 +a(g181451 +g181453 +S'to' +p181455 +tp181456 +a(g181453 +g181455 +S'record' +p181457 +tp181458 +a(g181455 +g181457 +S'the' +p181459 +tp181460 +a(g181457 +g181459 +S'vanishing' +p181461 +tp181462 +a(g181459 +g181461 +S'tribes.' +p181463 +tp181464 +a(g181461 +g181463 +S'after' +p181465 +tp181466 +a(g181463 +g181465 +S'exhibiting' +p181467 +tp181468 +a(g181465 +g181467 +S'his' +p181469 +tp181470 +a(g181467 +g181469 +S'work' +p181471 +tp181472 +a(g181469 +g181471 +S'in' +p181473 +tp181474 +a(g181471 +g181473 +S'several' +p181475 +tp181476 +a(g181473 +g181475 +S'east' +p181477 +tp181478 +a(g181475 +g181477 +S'coast' +p181479 +tp181480 +a(g181477 +g181479 +S'cities,' +p181481 +tp181482 +a(g181479 +g181481 +S'catlin' +p181483 +tp181484 +a(g181481 +g181483 +S'set' +p181485 +tp181486 +a(g181483 +g181485 +S'sail' +p181487 +tp181488 +a(g181485 +g181487 +S'for' +p181489 +tp181490 +a(g181487 +g181489 +S'europe' +p181491 +tp181492 +a(g181489 +g181491 +S'in' +p181493 +tp181494 +a(g181491 +g181493 +S'1839' +p181495 +tp181496 +a(g181493 +g181495 +S'with' +p181497 +tp181498 +a(g181495 +g181497 +S'eight' +p181499 +tp181500 +a(g181497 +g181499 +S'tons' +p181501 +tp181502 +a(g181499 +g181501 +S'of' +p181503 +tp181504 +a(g181501 +g181503 +S'indian' +p181505 +tp181506 +a(g181503 +g181505 +S'artifacts' +p181507 +tp181508 +a(g181505 +g181507 +S'as' +p181509 +tp181510 +a(g181507 +g181509 +S'well' +p181511 +tp181512 +a(g181509 +g181511 +S'as' +p181513 +tp181514 +a(g181511 +g181513 +S'his' +p181515 +tp181516 +a(g181513 +g181515 +S'own' +p181517 +tp181518 +a(g181515 +g181517 +S'pictures.' +p181519 +tp181520 +a(g181517 +g181519 +S'his' +p181521 +tp181522 +a(g181519 +g181521 +S'spirited' +p181523 +tp181524 +a(g181521 +g181523 +S'lectures' +p181525 +tp181526 +a(g181523 +g181525 +S'and' +p181527 +tp181528 +a(g181525 +g181527 +S'his' +p181529 +tp181530 +a(g181527 +g181529 +S'collections' +p181531 +tp181532 +a(g181529 +g181531 +S'captivated' +p181533 +tp181534 +a(g181531 +g181533 +S'audiences' +p181535 +tp181536 +a(g181533 +g181535 +S'in' +p181537 +tp181538 +a(g181535 +g181537 +S'london' +p181539 +tp181540 +a(g181537 +g181539 +S'and' +p181541 +tp181542 +a(g181539 +g181541 +S'paris.' +p181543 +tp181544 +a(g181541 +g181543 +S'in' +p181545 +tp181546 +a(g181543 +g181545 +S'1847,' +p181547 +tp181548 +a(g181545 +g181547 +S'king' +p181549 +tp181550 +a(g181547 +g181549 +S'louis' +p181551 +tp181552 +a(g181549 +g181551 +S'philippe' +p181553 +tp181554 +a(g181551 +g181553 +S'commissioned' +p181555 +tp181556 +a(g181553 +g181555 +S'him' +p181557 +tp181558 +a(g181555 +g181557 +S'to' +p181559 +tp181560 +a(g181557 +g181559 +S'do' +p181561 +tp181562 +a(g181559 +g181561 +S'a' +p181563 +tp181564 +a(g181561 +g181563 +S'series' +p181565 +tp181566 +a(g181563 +g181565 +S'of' +p181567 +tp181568 +a(g181565 +g181567 +S'paintings' +p181569 +tp181570 +a(g181567 +g181569 +S'illustrating' +p181571 +tp181572 +a(g181569 +g181571 +S'the' +p181573 +tp181574 +a(g181571 +g181573 +S'voyages' +p181575 +tp181576 +a(g181573 +g181575 +S'of' +p181577 +tp181578 +a(g181575 +g181577 +S'la' +p181579 +tp181580 +a(g181577 +g181579 +S'salle,' +p181581 +tp181582 +a(g181579 +g181581 +S'the' +p181583 +tp181584 +a(g181581 +g181583 +S'seventeenth-century' +p181585 +tp181586 +a(g181583 +g181585 +S'french' +p181587 +tp181588 +a(g181585 +g181587 +S'explorer' +p181589 +tp181590 +a(g181587 +g181589 +S'of' +p181591 +tp181592 +a(g181589 +g181591 +S'the' +p181593 +tp181594 +a(g181591 +g181593 +S'great' +p181595 +tp181596 +a(g181593 +g181595 +S'lakes' +p181597 +tp181598 +a(g181595 +g181597 +S'and' +p181599 +tp181600 +a(g181597 +g181599 +S'mississippi' +p181601 +tp181602 +a(g181599 +g181601 +S'river.' +p181603 +tp181604 +a(g181601 +g181603 +S'the' +p181605 +tp181606 +a(g181603 +g181605 +S'special' +p181607 +tp181608 +a(g181605 +g181607 +S'mixture' +p181609 +tp181610 +a(g181607 +g181609 +S'of' +p181611 +tp181612 +a(g181609 +g181611 +S'reality,' +p181613 +tp181614 +a(g181611 +g181613 +S'fantasy,' +p181615 +tp181616 +a(g181613 +g181615 +S'and' +p181617 +tp181618 +a(g181615 +g181617 +S'virtuosity' +p181619 +tp181620 +a(g181617 +g181619 +S'that' +p181621 +tp181622 +a(g181619 +g181621 +S'is' +p181623 +tp181624 +a(g181621 +g181623 +S'particular' +p181625 +tp181626 +a(g181623 +g181625 +S'to' +p181627 +tp181628 +a(g181625 +g181627 +S'early' +p181629 +tp181630 +a(g181627 +g181629 +S'netherlandish' +p181631 +tp181632 +a(g181629 +g181631 +S'painting' +p181633 +tp181634 +a(g181631 +g181633 +S'is' +p181635 +tp181636 +a(g181633 +g181635 +S'nowhere' +p181637 +tp181638 +a(g181635 +g181637 +S'more' +p181639 +tp181640 +a(g181637 +g181639 +S'apparent' +p181641 +tp181642 +a(g181639 +g181641 +S'than' +p181643 +tp181644 +a(g181641 +g181643 +S'in' +p181645 +tp181646 +a(g181643 +g181645 +S'this' +p181647 +tp181648 +a(g181645 +g181647 +S'exquisite' +p181649 +tp181650 +a(g181647 +g181649 +S'panel.' +p181651 +tp181652 +a(g181649 +g181651 +S'in' +p181653 +tp181654 +a(g181651 +g181653 +S'an' +p181655 +tp181656 +a(g181653 +g181655 +S'episode' +p181657 +tp181658 +a(g181655 +g181657 +S'from' +p181659 +tp181660 +a(g181657 +g181659 +S'the' +p181661 +tp181662 +a(g181659 +g181661 +S'popular' +p181663 +tp181664 +a(g181661 +g181663 +S'legend,' +p181665 +tp181666 +a(g181663 +g181665 +S'saint' +p181667 +tp181668 +a(g181665 +g181667 +S'george' +p181669 +tp181670 +a(g181667 +g181669 +S'in' +p181671 +tp181672 +a(g181669 +g181671 +S'black' +p181673 +tp181674 +a(g181671 +g181673 +S'gothic' +p181675 +tp181676 +a(g181673 +g181675 +S'armor' +p181677 +tp181678 +a(g181675 +g181677 +S'pins' +p181679 +tp181680 +a(g181677 +g181679 +S'the' +p181681 +tp181682 +a(g181679 +g181681 +S'dragon' +p181683 +tp181684 +a(g181681 +g181683 +S'to' +p181685 +tp181686 +a(g181683 +g181685 +S'the' +p181687 +tp181688 +a(g181685 +g181687 +S'ground' +p181689 +tp181690 +a(g181687 +g181689 +S'with' +p181691 +tp181692 +a(g181689 +g181691 +S'his' +p181693 +tp181694 +a(g181691 +g181693 +S'lance;' +p181695 +tp181696 +a(g181693 +g181695 +S'at' +p181697 +tp181698 +a(g181695 +g181697 +S'the' +p181699 +tp181700 +a(g181697 +g181699 +S'left' +p181701 +tp181702 +a(g181699 +g181701 +S'kneels' +p181703 +tp181704 +a(g181701 +g181703 +S'the' +p181705 +tp181706 +a(g181703 +g181705 +S'fashionably' +p181707 +tp181708 +a(g181705 +g181707 +S'attired' +p181709 +tp181710 +a(g181707 +g181709 +S'princess' +p181711 +tp181712 +a(g181709 +g181711 +S'cleodolinda' +p181713 +tp181714 +a(g181711 +g181713 +S'who' +p181715 +tp181716 +a(g181713 +g181715 +S'was' +p181717 +tp181718 +a(g181715 +g181717 +S'to' +p181719 +tp181720 +a(g181717 +g181719 +S'have' +p181721 +tp181722 +a(g181719 +g181721 +S'been' +p181723 +tp181724 +a(g181721 +g181723 +S'sacrificed' +p181725 +tp181726 +a(g181723 +g181725 +S'to' +p181727 +tp181728 +a(g181725 +g181727 +S'the' +p181729 +tp181730 +a(g181727 +g181729 +S'dragon.' +p181731 +tp181732 +a(g181729 +g181731 +S'george' +p181733 +tp181734 +a(g181731 +g181733 +S'was' +p181735 +tp181736 +a(g181733 +g181735 +S'a' +p181737 +tp181738 +a(g181735 +g181737 +S'roman' +p181739 +tp181740 +a(g181737 +g181739 +S'soldier' +p181741 +tp181742 +a(g181739 +g181741 +S'living' +p181743 +tp181744 +a(g181741 +g181743 +S'in' +p181745 +tp181746 +a(g181743 +g181745 +S'third-century' +p181747 +tp181748 +a(g181745 +g181747 +S'cappadocia,' +p181749 +tp181750 +a(g181747 +g181749 +S'but' +p181751 +tp181752 +a(g181749 +g181751 +S'the' +p181753 +tp181754 +a(g181751 +g181753 +S'setting' +p181755 +tp181756 +a(g181753 +g181755 +S'has' +p181757 +tp181758 +a(g181755 +g181757 +S'here' +p181759 +tp181760 +a(g181757 +g181759 +S'been' +p181761 +tp181762 +a(g181759 +g181761 +S'transformed' +p181763 +tp181764 +a(g181761 +g181763 +S'from' +p181765 +tp181766 +a(g181763 +g181765 +S'ancient' +p181767 +tp181768 +a(g181765 +g181767 +S'asia' +p181769 +tp181770 +a(g181767 +g181769 +S'minor' +p181771 +tp181772 +a(g181769 +g181771 +S'to' +p181773 +tp181774 +a(g181771 +g181773 +S'the' +p181775 +tp181776 +a(g181773 +g181775 +S'contemporary' +p181777 +tp181778 +a(g181775 +g181777 +S'belgian' +p181779 +tp181780 +a(g181777 +g181779 +S'countryside.' +p181781 +tp181782 +a(g181779 +g181781 +S'passing' +p181783 +tp181784 +a(g181781 +g181783 +S'through' +p181785 +tp181786 +a(g181783 +g181785 +S'a' +p181787 +tp181788 +a(g181785 +g181787 +S'series' +p181789 +tp181790 +a(g181787 +g181789 +S'of' +p181791 +tp181792 +a(g181789 +g181791 +S'overlapping' +p181793 +tp181794 +a(g181791 +g181793 +S'hills,' +p181795 +tp181796 +a(g181793 +g181795 +S'we' +p181797 +tp181798 +a(g181795 +g181797 +S'come' +p181799 +tp181800 +a(g181797 +g181799 +S'upon' +p181801 +tp181802 +a(g181799 +g181801 +S'a' +p181803 +tp181804 +a(g181801 +g181803 +S'walled' +p181805 +tp181806 +a(g181803 +g181805 +S'city' +p181807 +tp181808 +a(g181805 +g181807 +S'surrounded' +p181809 +tp181810 +a(g181807 +g181809 +S'by' +p181811 +tp181812 +a(g181809 +g181811 +S'water' +p181813 +tp181814 +a(g181811 +g181813 +S'and' +p181815 +tp181816 +a(g181813 +g181815 +S'dominated' +p181817 +tp181818 +a(g181815 +g181817 +S'by' +p181819 +tp181820 +a(g181817 +g181819 +S'a' +p181821 +tp181822 +a(g181819 +g181821 +S'castle' +p181823 +tp181824 +a(g181821 +g181823 +S'perched' +p181825 +tp181826 +a(g181823 +g181825 +S'atop' +p181827 +tp181828 +a(g181825 +g181827 +S'a' +p181829 +tp181830 +a(g181827 +g181829 +S'fantastic' +p181831 +tp181832 +a(g181829 +g181831 +S'mountain.' +p181833 +tp181834 +a(g181831 +g181833 +S'this' +p181835 +tp181836 +a(g181833 +g181835 +S'scene' +p181837 +tp181838 +a(g181835 +g181837 +S'is' +p181839 +tp181840 +a(g181837 +g181839 +S'almost' +p181841 +tp181842 +a(g181839 +g181841 +S'certainly' +p181843 +tp181844 +a(g181841 +g181843 +S'imaginary' +p181845 +tp181846 +a(g181843 +g181845 +S'and' +p181847 +tp181848 +a(g181845 +g181847 +S'yet' +p181849 +tp181850 +a(g181847 +g181849 +S'is' +p181851 +tp181852 +a(g181849 +g181851 +S'rendered' +p181853 +tp181854 +a(g181851 +g181853 +S'with' +p181855 +tp181856 +a(g181853 +g181855 +S'the' +p181857 +tp181858 +a(g181855 +g181857 +S'greatest' +p181859 +tp181860 +a(g181857 +g181859 +S'clarity' +p181861 +tp181862 +a(g181859 +g181861 +S'and' +p181863 +tp181864 +a(g181861 +g181863 +S'realism.' +p181865 +tp181866 +a(g181863 +g181865 +S'the' +p181867 +tp181868 +a(g181865 +g181867 +S'attention' +p181869 +tp181870 +a(g181867 +g181869 +S'to' +p181871 +tp181872 +a(g181869 +g181871 +S'specific' +p181873 +tp181874 +a(g181871 +g181873 +S'detail' +p181875 +tp181876 +a(g181873 +g181875 +S'has' +p181877 +tp181878 +a(g181875 +g181877 +S'led' +p181879 +tp181880 +a(g181877 +g181879 +S'to' +p181881 +tp181882 +a(g181879 +g181881 +S'the' +p181883 +tp181884 +a(g181881 +g181883 +S'suggestion' +p181885 +tp181886 +a(g181883 +g181885 +S'that' +p181887 +tp181888 +a(g181885 +g181887 +S'the' +p181889 +tp181890 +a(g181887 +g181889 +S'artist' +p181891 +tp181892 +a(g181889 +g181891 +S'made' +p181893 +tp181894 +a(g181891 +g181893 +S'use' +p181895 +tp181896 +a(g181893 +g181895 +S'of' +p181897 +tp181898 +a(g181895 +g181897 +S'a' +p181899 +tp181900 +a(g181897 +g181899 +S'magnifying' +p181901 +tp181902 +a(g181899 +g181901 +S'glass.' +p181903 +tp181904 +a(g181901 +g181903 +S'the' +p181905 +tp181906 +a(g181903 +g181905 +S"artist's" +p181907 +tp181908 +a(g181905 +g181907 +S'interest' +p181909 +tp181910 +a(g181907 +g181909 +S'in' +p181911 +tp181912 +a(g181909 +g181911 +S'the' +p181913 +tp181914 +a(g181911 +g181913 +S'depiction' +p181915 +tp181916 +a(g181913 +g181915 +S'of' +p181917 +tp181918 +a(g181915 +g181917 +S'light' +p181919 +tp181920 +a(g181917 +g181919 +S'--' +p181921 +tp181922 +a(g181919 +g181921 +S'reflecting' +p181923 +tp181924 +a(g181921 +g181923 +S'on' +p181925 +tp181926 +a(g181923 +g181925 +S"george's" +p181927 +tp181928 +a(g181925 +g181927 +S'armor' +p181929 +tp181930 +a(g181927 +g181929 +S'and' +p181931 +tp181932 +a(g181929 +g181931 +S'the' +p181933 +tp181934 +a(g181931 +g181933 +S"dragon's" +p181935 +tp181936 +a(g181933 +g181935 +S'scales' +p181937 +tp181938 +a(g181935 +g181937 +S'--' +p181939 +tp181940 +a(g181937 +g181939 +S'and' +p181941 +tp181942 +a(g181939 +g181941 +S'atmospheric' +p181943 +tp181944 +a(g181941 +g181943 +S'effects' +p181945 +tp181946 +a(g181943 +g181945 +S'shows' +p181947 +tp181948 +a(g181945 +g181947 +S'the' +p181949 +tp181950 +a(g181947 +g181949 +S'influence' +p181951 +tp181952 +a(g181949 +g181951 +S'of' +p181953 +tp181954 +a(g181951 +g181953 +S'jan' +p181955 +tp181956 +a(g181953 +g181955 +S'van' +p181957 +tp181958 +a(g181955 +g181957 +S'eyck.' +p181959 +tp181960 +a(g181957 +g181959 +S'the' +p181961 +tp181962 +a(g181959 +g181961 +S'painting' +p181963 +tp181964 +a(g181961 +g181963 +S'is' +p181965 +tp181966 +a(g181963 +g181965 +S'also' +p181967 +tp181968 +a(g181965 +g181967 +S'stylistically' +p181969 +tp181970 +a(g181967 +g181969 +S'related' +p181971 +tp181972 +a(g181969 +g181971 +S'to' +p181973 +tp181974 +a(g181971 +g181973 +S'manuscript' +p181975 +tp181976 +a(g181973 +g181975 +S'illumination' +p181977 +tp181978 +a(g181975 +g181977 +S'that' +p181979 +tp181980 +a(g181977 +g181979 +S'would' +p181981 +tp181982 +a(g181979 +g181981 +S'suggest' +p181983 +tp181984 +a(g181981 +g181983 +S'this' +p181985 +tp181986 +a(g181983 +g181985 +S'is' +p181987 +tp181988 +a(g181985 +g181987 +S'an' +p181989 +tp181990 +a(g181987 +g181989 +S'early' +p181991 +tp181992 +a(g181989 +g181991 +S'work.' +p181993 +tp181994 +a(g181991 +g181993 +S'the' +p181995 +tp181996 +a(g181993 +g181995 +S'panel' +p181997 +tp181998 +a(g181995 +g181997 +S'may' +p181999 +tp182000 +a(g181997 +g181999 +S'originally' +p182001 +tp182002 +a(g181999 +g182001 +S'have' +p182003 +tp182004 +a(g182001 +g182003 +S'been' +p182005 +tp182006 +a(g182003 +g182005 +S'part' +p182007 +tp182008 +a(g182005 +g182007 +S'of' +p182009 +tp182010 +a(g182007 +g182009 +S'a' +p182011 +tp182012 +a(g182009 +g182011 +S'larger' +p182013 +tp182014 +a(g182011 +g182013 +S'ensemble,' +p182015 +tp182016 +a(g182013 +g182015 +S'perhaps' +p182017 +tp182018 +a(g182015 +g182017 +S'a' +p182019 +tp182020 +a(g182017 +g182019 +S'diptych,' +p182021 +tp182022 +a(g182019 +g182021 +S'and' +p182023 +tp182024 +a(g182021 +g182023 +S'was' +p182025 +tp182026 +a(g182023 +g182025 +S'most' +p182027 +tp182028 +a(g182025 +g182027 +S'likely' +p182029 +tp182030 +a(g182027 +g182029 +S'used' +p182031 +tp182032 +a(g182029 +g182031 +S'for' +p182033 +tp182034 +a(g182031 +g182033 +S'private' +p182035 +tp182036 +a(g182033 +g182035 +S'devotion.' +p182037 +tp182038 +a(g182035 +g182037 +S'charles' +p182039 +tp182040 +a(g182037 +g182039 +S'willson' +p182041 +tp182042 +a(g182039 +g182041 +S'peale' +p182043 +tp182044 +a(g182041 +g182043 +S'was' +p182045 +tp182046 +a(g182043 +g182045 +S'a' +p182047 +tp182048 +a(g182045 +g182047 +S'major' +p182049 +tp182050 +a(g182047 +g182049 +S'figure' +p182051 +tp182052 +a(g182049 +g182051 +S'in' +p182053 +tp182054 +a(g182051 +g182053 +S'american' +p182055 +tp182056 +a(g182053 +g182055 +S'science' +p182057 +tp182058 +a(g182055 +g182057 +S'and' +p182059 +tp182060 +a(g182057 +g182059 +S'art' +p182061 +tp182062 +a(g182059 +g182061 +S'during' +p182063 +tp182064 +a(g182061 +g182063 +S'the' +p182065 +tp182066 +a(g182063 +g182065 +S'revolutionary' +p182067 +tp182068 +a(g182065 +g182067 +S'period.' +p182069 +tp182070 +a(g182067 +g182069 +S'his' +p182071 +tp182072 +a(g182069 +g182071 +S'faith' +p182073 +tp182074 +a(g182071 +g182073 +S'in' +p182075 +tp182076 +a(g182073 +g182075 +S'the' +p182077 +tp182078 +a(g182075 +g182077 +S'educational' +p182079 +tp182080 +a(g182077 +g182079 +S'value' +p182081 +tp182082 +a(g182079 +g182081 +S'of' +p182083 +tp182084 +a(g182081 +g182083 +S'art' +p182085 +tp182086 +a(g182083 +g182085 +S'led' +p182087 +tp182088 +a(g182085 +g182087 +S'him' +p182089 +tp182090 +a(g182087 +g182089 +S'to' +p182091 +tp182092 +a(g182089 +g182091 +S'establish' +p182093 +tp182094 +a(g182091 +g182093 +S'a' +p182095 +tp182096 +a(g182093 +g182095 +S'painting' +p182097 +tp182098 +a(g182095 +g182097 +S'academy' +p182099 +tp182100 +a(g182097 +g182099 +S'in' +p182101 +tp182102 +a(g182099 +g182101 +S'philadelphia' +p182103 +tp182104 +a(g182101 +g182103 +S'as' +p182105 +tp182106 +a(g182103 +g182105 +S'early' +p182107 +tp182108 +a(g182105 +g182107 +S'as' +p182109 +tp182110 +a(g182107 +g182109 +S'1795.' +p182111 +tp182112 +a(g182109 +g182111 +S'when' +p182113 +tp182114 +a(g182111 +g182113 +S'that' +p182115 +tp182116 +a(g182113 +g182115 +S'venture' +p182117 +tp182118 +a(g182115 +g182117 +S'failed,' +p182119 +tp182120 +a(g182117 +g182119 +S'peale' +p182121 +tp182122 +a(g182119 +g182121 +S'combined' +p182123 +tp182124 +a(g182121 +g182123 +S'his' +p182125 +tp182126 +a(g182123 +g182125 +S'scientific' +p182127 +tp182128 +a(g182125 +g182127 +S'and' +p182129 +tp182130 +a(g182127 +g182129 +S'artistic' +p182131 +tp182132 +a(g182129 +g182131 +S'interests' +p182133 +tp182134 +a(g182131 +g182133 +S'in' +p182135 +tp182136 +a(g182133 +g182135 +S'a' +p182137 +tp182138 +a(g182135 +g182137 +S'museum.' +p182139 +tp182140 +a(g182137 +g182139 +S'in' +p182141 +tp182142 +a(g182139 +g182141 +S'1788,' +p182143 +tp182144 +a(g182141 +g182143 +S'the' +p182145 +tp182146 +a(g182143 +g182145 +S'lamings' +p182147 +tp182148 +a(g182145 +g182147 +S'had' +p182149 +tp182150 +a(g182147 +g182149 +S'asked' +p182151 +tp182152 +a(g182149 +g182151 +S'him' +p182153 +tp182154 +a(g182151 +g182153 +S'to' +p182155 +tp182156 +a(g182153 +g182155 +S'do' +p182157 +tp182158 +a(g182155 +g182157 +S'this' +p182159 +tp182160 +a(g182157 +g182159 +S'double' +p182161 +tp182162 +a(g182159 +g182161 +S'portrait.' +p182163 +tp182164 +a(g182161 +g182163 +S"peale's" +p182165 +tp182166 +a(g182163 +g182165 +S'diary' +p182167 +tp182168 +a(g182165 +g182167 +S'records' +p182169 +tp182170 +a(g182167 +g182169 +S'his' +p182171 +tp182172 +a(g182169 +g182171 +S'activity' +p182173 +tp182174 +a(g182171 +g182173 +S'from' +p182175 +tp182176 +a(g182173 +g182175 +S'18' +p182177 +tp182178 +a(g182175 +g182177 +S'september,' +p182179 +tp182180 +a(g182177 +g182179 +S'when' +p182181 +tp182182 +a(g182179 +g182181 +S'he' +p182183 +tp182184 +a(g182181 +g182183 +S'"sketched' +p182185 +tp182186 +a(g182183 +g182185 +S'out' +p182187 +tp182188 +a(g182185 +g182187 +S'the' +p182189 +tp182190 +a(g182187 +g182189 +S'design"' +p182191 +tp182192 +a(g182189 +g182191 +S'after' +p182193 +tp182194 +a(g182191 +g182193 +S'dinner,' +p182195 +tp182196 +a(g182193 +g182195 +S'to' +p182197 +tp182198 +a(g182195 +g182197 +S'5' +p182199 +tp182200 +a(g182197 +g182199 +S'october,' +p182201 +tp182202 +a(g182199 +g182201 +S'when' +p182203 +tp182204 +a(g182201 +g182203 +S'he' +p182205 +tp182206 +a(g182203 +g182205 +S'added' +p182207 +tp182208 +a(g182205 +g182207 +S'the' +p182209 +tp182210 +a(g182207 +g182209 +S'final' +p182211 +tp182212 +a(g182209 +g182211 +S'touches.' +p182213 +tp182214 +a(g182211 +g182213 +S'besides' +p182215 +tp182216 +a(g182213 +g182215 +S'working' +p182217 +tp182218 +a(g182215 +g182217 +S'on' +p182219 +tp182220 +a(g182217 +g182219 +S'the' +p182221 +tp182222 +a(g182219 +g182221 +S'picture,' +p182223 +tp182224 +a(g182221 +g182223 +S'peale' +p182225 +tp182226 +a(g182223 +g182225 +S'studied' +p182227 +tp182228 +a(g182225 +g182227 +S'natural' +p182229 +tp182230 +a(g182227 +g182229 +S'history' +p182231 +tp182232 +a(g182229 +g182231 +S'at' +p182233 +tp182234 +a(g182231 +g182233 +S'the' +p182235 +tp182236 +a(g182233 +g182235 +S"family's" +p182237 +tp182238 +a(g182235 +g182237 +S'estate' +p182239 +tp182240 +a(g182237 +g182239 +S'outside' +p182241 +tp182242 +a(g182239 +g182241 +S'baltimore.' +p182243 +tp182244 +a(g182241 +g182243 +S'peale' +p182245 +tp182246 +a(g182243 +g182245 +S'cleverly' +p182247 +tp182248 +a(g182245 +g182247 +S'devised' +p182249 +tp182250 +a(g182247 +g182249 +S'a' +p182251 +tp182252 +a(g182249 +g182251 +S'leaning' +p182253 +tp182254 +a(g182251 +g182253 +S'posture' +p182255 +tp182256 +a(g182253 +g182255 +S'for' +p182257 +tp182258 +a(g182255 +g182257 +S'the' +p182259 +tp182260 +a(g182257 +g182259 +S'husband' +p182261 +tp182262 +a(g182259 +g182261 +S'so' +p182263 +tp182264 +a(g182261 +g182263 +S'that' +p182265 +tp182266 +a(g182263 +g182265 +S'his' +p182267 +tp182268 +a(g182265 +g182267 +S'bulk' +p182269 +tp182270 +a(g182267 +g182269 +S'would' +p182271 +tp182272 +a(g182269 +g182271 +S'not' +p182273 +tp182274 +a(g182271 +g182273 +S'overshadow' +p182275 +tp182276 +a(g182273 +g182275 +S'his' +p182277 +tp182278 +a(g182275 +g182277 +S'petite' +p182279 +tp182280 +a(g182277 +g182279 +S'wife.' +p182281 +tp182282 +a(g182279 +g182281 +S'moreover,' +p182283 +tp182284 +a(g182281 +g182283 +S'this' +p182285 +tp182286 +a(g182283 +g182285 +S'unusual,' +p182287 +tp182288 +a(g182285 +g182287 +S'reclining' +p182289 +tp182290 +a(g182287 +g182289 +S'attitude' +p182291 +tp182292 +a(g182289 +g182291 +S'binds' +p182293 +tp182294 +a(g182291 +g182293 +S'the' +p182295 +tp182296 +a(g182293 +g182295 +S'couple' +p182297 +tp182298 +a(g182295 +g182297 +S'closer' +p182299 +tp182300 +a(g182297 +g182299 +S'together,' +p182301 +tp182302 +a(g182299 +g182301 +S'telling' +p182303 +tp182304 +a(g182301 +g182303 +S'of' +p182305 +tp182306 +a(g182303 +g182305 +S'their' +p182307 +tp182308 +a(g182305 +g182307 +S'love.' +p182309 +tp182310 +a(g182307 +g182309 +S'the' +p182311 +tp182312 +a(g182309 +g182311 +S'setting,' +p182313 +tp182314 +a(g182311 +g182313 +S'"view' +p182315 +tp182316 +a(g182313 +g182315 +S'of' +p182317 +tp182318 +a(g182315 +g182317 +S'part' +p182319 +tp182320 +a(g182317 +g182319 +S'of' +p182321 +tp182322 +a(g182319 +g182321 +S'baltimore' +p182323 +tp182324 +a(g182321 +g182323 +S'town,"' +p182325 +tp182326 +a(g182323 +g182325 +S'is' +p182327 +tp182328 +a(g182325 +g182327 +S'appropriate' +p182329 +tp182330 +a(g182327 +g182329 +S'for' +p182331 +tp182332 +a(g182329 +g182331 +S'a' +p182333 +tp182334 +a(g182331 +g182333 +S'wealthy' +p182335 +tp182336 +a(g182333 +g182335 +S'maryland' +p182337 +tp182338 +a(g182335 +g182337 +S'merchant.' +p182339 +tp182340 +a(g182337 +g182339 +S'the' +p182341 +tp182342 +a(g182339 +g182341 +S'spyglass' +p182343 +tp182344 +a(g182341 +g182343 +S'indicates' +p182345 +tp182346 +a(g182343 +g182345 +S"laming's" +p182347 +tp182348 +a(g182345 +g182347 +S'interest' +p182349 +tp182350 +a(g182347 +g182349 +S'in' +p182351 +tp182352 +a(g182349 +g182351 +S'shippage' +p182353 +tp182354 +a(g182351 +g182353 +S'by' +p182355 +tp182356 +a(g182353 +g182355 +S'sea,' +p182357 +tp182358 +a(g182355 +g182357 +S'and' +p182359 +tp182360 +a(g182357 +g182359 +S'the' +p182361 +tp182362 +a(g182359 +g182361 +S'green' +p182363 +tp182364 +a(g182361 +g182363 +S'parrot' +p182365 +tp182366 +a(g182363 +g182365 +S'perched' +p182367 +tp182368 +a(g182365 +g182367 +S'behind' +p182369 +tp182370 +a(g182367 +g182369 +S'his' +p182371 +tp182372 +a(g182369 +g182371 +S'leg' +p182373 +tp182374 +a(g182371 +g182373 +S'may' +p182375 +tp182376 +a(g182373 +g182375 +S'recall' +p182377 +tp182378 +a(g182375 +g182377 +S'his' +p182379 +tp182380 +a(g182377 +g182379 +S'birth' +p182381 +tp182382 +a(g182379 +g182381 +S'in' +p182383 +tp182384 +a(g182381 +g182383 +S'the' +p182385 +tp182386 +a(g182383 +g182385 +S'west' +p182387 +tp182388 +a(g182385 +g182387 +S'indies.' +p182389 +tp182390 +a(g182387 +g182389 +S'mrs.' +p182391 +tp182392 +a(g182389 +g182391 +S"laming's" +p182393 +tp182394 +a(g182391 +g182393 +S'fruit' +p182395 +tp182396 +a(g182393 +g182395 +S'and' +p182397 +tp182398 +a(g182395 +g182397 +S'flowers,' +p182399 +tp182400 +a(g182397 +g182399 +S'although' +p182401 +tp182402 +a(g182399 +g182401 +S'traditional' +p182403 +tp182404 +a(g182401 +g182403 +S'emblems' +p182405 +tp182406 +a(g182403 +g182405 +S'of' +p182407 +tp182408 +a(g182405 +g182407 +S'innocence' +p182409 +tp182410 +a(g182407 +g182409 +S'and' +p182411 +tp182412 +a(g182409 +g182411 +S'fertility,' +p182413 +tp182414 +a(g182411 +g182413 +S'could' +p182415 +tp182416 +a(g182413 +g182415 +S'also' +p182417 +tp182418 +a(g182415 +g182417 +S'refer' +p182419 +tp182420 +a(g182417 +g182419 +S'to' +p182421 +tp182422 +a(g182419 +g182421 +S'her' +p182423 +tp182424 +a(g182421 +g182423 +S'own' +p182425 +tp182426 +a(g182423 +g182425 +S'gardening.' +p182427 +tp182428 +a(g182425 +g182427 +S'the' +p182429 +tp182430 +a(g182427 +g182429 +S'detailed' +p182431 +tp182432 +a(g182429 +g182431 +S'attention' +p182433 +tp182434 +a(g182431 +g182433 +S'paid' +p182435 +tp182436 +a(g182433 +g182435 +S'to' +p182437 +tp182438 +a(g182435 +g182437 +S'the' +p182439 +tp182440 +a(g182437 +g182439 +S'bird,' +p182441 +tp182442 +a(g182439 +g182441 +S'plants,' +p182443 +tp182444 +a(g182441 +g182443 +S'scenery,' +p182445 +tp182446 +a(g182443 +g182445 +S'and' +p182447 +tp182448 +a(g182445 +g182447 +S'telescope' +p182449 +tp182450 +a(g182447 +g182449 +S'attests' +p182451 +tp182452 +a(g182449 +g182451 +S'to' +p182453 +tp182454 +a(g182451 +g182453 +S"peale's" +p182455 +tp182456 +a(g182453 +g182455 +S'encyclopedic' +p182457 +tp182458 +a(g182455 +g182457 +S'knowledge.' +p182459 +tp182460 +a(g182457 +g182459 +S'eugène' +p182461 +tp182462 +a(g182459 +g182461 +S'delacroix,' +p182463 +tp182464 +a(g182461 +g182463 +S'france\xe2\x80\x99s' +p182465 +tp182466 +a(g182463 +g182465 +S'leading' +p182467 +tp182468 +a(g182465 +g182467 +S'romantic' +p182469 +tp182470 +a(g182467 +g182469 +S'painter' +p182471 +tp182472 +a(g182469 +g182471 +S'of' +p182473 +tp182474 +a(g182471 +g182473 +S'the' +p182475 +tp182476 +a(g182473 +g182475 +S'first' +p182477 +tp182478 +a(g182475 +g182477 +S'half' +p182479 +tp182480 +a(g182477 +g182479 +S'of' +p182481 +tp182482 +a(g182479 +g182481 +S'the' +p182483 +tp182484 +a(g182481 +g182483 +S'19th' +p182485 +tp182486 +a(g182483 +g182485 +S'century,' +p182487 +tp182488 +a(g182485 +g182487 +S'advocated' +p182489 +tp182490 +a(g182487 +g182489 +S'the' +p182491 +tp182492 +a(g182489 +g182491 +S'opposite' +p182493 +tp182494 +a(g182491 +g182493 +S'aesthetic' +p182495 +tp182496 +a(g182493 +g182495 +S'of' +p182497 +tp182498 +a(g182495 +g182497 +S'his' +p182499 +tp182500 +a(g182497 +g182499 +S'contemporary,' +p182501 +tp182502 +a(g182499 +g182501 +S'jean–auguste–dominique' +p182503 +tp182504 +a(g182501 +g182503 +S'ingres.' +p182505 +tp182506 +a(g182503 +g182505 +S'in' +p182507 +tp182508 +a(g182505 +g182507 +S'contrast' +p182509 +tp182510 +a(g182507 +g182509 +S'to' +p182511 +tp182512 +a(g182509 +g182511 +S"ingres'" +p182513 +tp182514 +a(g182511 +g182513 +S'controlled' +p182515 +tp182516 +a(g182513 +g182515 +S'images' +p182517 +tp182518 +a(g182515 +g182517 +S'that' +p182519 +tp182520 +a(g182517 +g182519 +S'are' +p182521 +tp182522 +a(g182519 +g182521 +S'characterized' +p182523 +tp182524 +a(g182521 +g182523 +S'by' +p182525 +tp182526 +a(g182523 +g182525 +S'his' +p182527 +tp182528 +a(g182525 +g182527 +S'interests' +p182529 +tp182530 +a(g182527 +g182529 +S'in' +p182531 +tp182532 +a(g182529 +g182531 +S'linear' +p182533 +tp182534 +a(g182531 +g182533 +S'purity' +p182535 +tp182536 +a(g182533 +g182535 +S'and' +p182537 +tp182538 +a(g182535 +g182537 +S'a' +p182539 +tp182540 +a(g182537 +g182539 +S'finished' +p182541 +tp182542 +a(g182539 +g182541 +S'surface,' +p182543 +tp182544 +a(g182541 +g182543 +S'delacroix' +p182545 +tp182546 +a(g182543 +g182545 +S'championed' +p182547 +tp182548 +a(g182545 +g182547 +S'the' +p182549 +tp182550 +a(g182547 +g182549 +S'primacy' +p182551 +tp182552 +a(g182549 +g182551 +S'of' +p182553 +tp182554 +a(g182551 +g182553 +S'color' +p182555 +tp182556 +a(g182553 +g182555 +S'and' +p182557 +tp182558 +a(g182555 +g182557 +S'quick' +p182559 +tp182560 +a(g182557 +g182559 +S'execution' +p182561 +tp182562 +a(g182559 +g182561 +S'as' +p182563 +tp182564 +a(g182561 +g182563 +S'expressive' +p182565 +tp182566 +a(g182563 +g182565 +S'of' +p182567 +tp182568 +a(g182565 +g182567 +S'the' +p182569 +tp182570 +a(g182567 +g182569 +S"artist's" +p182571 +tp182572 +a(g182569 +g182571 +S'imagination.' +p182573 +tp182574 +a(g182571 +g182573 +S'the' +p182575 +tp182576 +a(g182573 +g182575 +S'arabs' +p182577 +tp182578 +a(g182575 +g182577 +S'skirmishing' +p182579 +tp182580 +a(g182577 +g182579 +S'in' +p182581 +tp182582 +a(g182579 +g182581 +S'the' +p182583 +tp182584 +a(g182581 +g182583 +S'mountains' +p182585 +tp182586 +a(g182583 +g182585 +S'the' +p182587 +tp182588 +a(g182585 +g182587 +S'fluidity' +p182589 +tp182590 +a(g182587 +g182589 +S'of' +p182591 +tp182592 +a(g182589 +g182591 +S"delacroix's" +p182593 +tp182594 +a(g182591 +g182593 +S'brushstroke' +p182595 +tp182596 +a(g182593 +g182595 +S'animates' +p182597 +tp182598 +a(g182595 +g182597 +S'the' +p182599 +tp182600 +a(g182597 +g182599 +S'composition,' +p182601 +tp182602 +a(g182599 +g182601 +S'heightening' +p182603 +tp182604 +a(g182601 +g182603 +S'the' +p182605 +tp182606 +a(g182603 +g182605 +S'violence' +p182607 +tp182608 +a(g182605 +g182607 +S'of' +p182609 +tp182610 +a(g182607 +g182609 +S'the' +p182611 +tp182612 +a(g182609 +g182611 +S'scene' +p182613 +tp182614 +a(g182611 +g182613 +S'and' +p182615 +tp182616 +a(g182613 +g182615 +S'the' +p182617 +tp182618 +a(g182615 +g182617 +S'moment' +p182619 +tp182620 +a(g182617 +g182619 +S'when' +p182621 +tp182622 +a(g182619 +g182621 +S'the' +p182623 +tp182624 +a(g182621 +g182623 +S'rider' +p182625 +tp182626 +a(g182623 +g182625 +S'is' +p182627 +tp182628 +a(g182625 +g182627 +S'thrown' +p182629 +tp182630 +a(g182627 +g182629 +S'off' +p182631 +tp182632 +a(g182629 +g182631 +S'his' +p182633 +tp182634 +a(g182631 +g182633 +S'horse.' +p182635 +tp182636 +a(g182633 +g182635 +S'the' +p182637 +tp182638 +a(g182635 +g182637 +S'brilliant' +p182639 +tp182640 +a(g182637 +g182639 +S'use' +p182641 +tp182642 +a(g182639 +g182641 +S'of' +p182643 +tp182644 +a(g182641 +g182643 +S'red,' +p182645 +tp182646 +a(g182643 +g182645 +S'blue,' +p182647 +tp182648 +a(g182645 +g182647 +S'and' +p182649 +tp182650 +a(g182647 +g182649 +S'white' +p182651 +tp182652 +a(g182649 +g182651 +S'forces' +p182653 +tp182654 +a(g182651 +g182653 +S'the' +p182655 +tp182656 +a(g182653 +g182655 +S'eye' +p182657 +tp182658 +a(g182655 +g182657 +S'to' +p182659 +tp182660 +a(g182657 +g182659 +S'stop' +p182661 +tp182662 +a(g182659 +g182661 +S'at' +p182663 +tp182664 +a(g182661 +g182663 +S'each' +p182665 +tp182666 +a(g182663 +g182665 +S'grouping,' +p182667 +tp182668 +a(g182665 +g182667 +S'accenting' +p182669 +tp182670 +a(g182667 +g182669 +S'the' +p182671 +tp182672 +a(g182669 +g182671 +S'rhythm' +p182673 +tp182674 +a(g182671 +g182673 +S'of' +p182675 +tp182676 +a(g182673 +g182675 +S'the' +p182677 +tp182678 +a(g182675 +g182677 +S'battle' +p182679 +tp182680 +a(g182677 +g182679 +S'itself.' +p182681 +tp182682 +a(g182679 +g182681 +S'delacroix' +p182683 +tp182684 +a(g182681 +g182683 +S'has' +p182685 +tp182686 +a(g182683 +g182685 +S'created' +p182687 +tp182688 +a(g182685 +g182687 +S'a' +p182689 +tp182690 +a(g182687 +g182689 +S'fictive' +p182691 +tp182692 +a(g182689 +g182691 +S'battle,' +p182693 +tp182694 +a(g182691 +g182693 +S'his' +p182695 +tp182696 +a(g182693 +g182695 +S'work' +p182697 +tp182698 +a(g182695 +g182697 +S'not' +p182699 +tp182700 +a(g182697 +g182699 +S'only' +p182701 +tp182702 +a(g182699 +g182701 +S'recalling' +p182703 +tp182704 +a(g182701 +g182703 +S'an' +p182705 +tp182706 +a(g182703 +g182705 +S'earlier' +p182707 +tp182708 +a(g182705 +g182707 +S'personal' +p182709 +tp182710 +a(g182707 +g182709 +S'experience' +p182711 +tp182712 +a(g182709 +g182711 +S'but' +p182713 +tp182714 +a(g182711 +g182713 +S'also' +p182715 +tp182716 +a(g182713 +g182715 +S'stimulating' +p182717 +tp182718 +a(g182715 +g182717 +S'the' +p182719 +tp182720 +a(g182717 +g182719 +S'imagination' +p182721 +tp182722 +a(g182719 +g182721 +S'of' +p182723 +tp182724 +a(g182721 +g182723 +S'his' +p182725 +tp182726 +a(g182723 +g182725 +S'viewers.' +p182727 +tp182728 +a(g182725 +g182727 +S'a' +p182729 +tp182730 +a(g182727 +g182729 +S'feisty,' +p182731 +tp182732 +a(g182729 +g182731 +S'aggressive' +p182733 +tp182734 +a(g182731 +g182733 +S'man,' +p182735 +tp182736 +a(g182733 +g182735 +S'edmund' +p182737 +tp182738 +a(g182735 +g182737 +S'charles' +p182739 +tp182740 +a(g182737 +g182739 +S'tarbell' +p182741 +tp182742 +a(g182739 +g182741 +S'had' +p182743 +tp182744 +a(g182741 +g182743 +S'such' +p182745 +tp182746 +a(g182743 +g182745 +S'control' +p182747 +tp182748 +a(g182745 +g182747 +S'over' +p182749 +tp182750 +a(g182747 +g182749 +S'a' +p182751 +tp182752 +a(g182749 +g182751 +S'group' +p182753 +tp182754 +a(g182751 +g182753 +S'of' +p182755 +tp182756 +a(g182753 +g182755 +S'followers' +p182757 +tp182758 +a(g182755 +g182757 +S'at' +p182759 +tp182760 +a(g182757 +g182759 +S'the' +p182761 +tp182762 +a(g182759 +g182761 +S'boston' +p182763 +tp182764 +a(g182761 +g182763 +S'museum' +p182765 +tp182766 +a(g182763 +g182765 +S'school' +p182767 +tp182768 +a(g182765 +g182767 +S'that' +p182769 +tp182770 +a(g182767 +g182769 +S'critics' +p182771 +tp182772 +a(g182769 +g182771 +S'nicknamed' +p182773 +tp182774 +a(g182771 +g182773 +S'them' +p182775 +tp182776 +a(g182773 +g182775 +S'"the' +p182777 +tp182778 +a(g182775 +g182777 +S'tarbellite' +p182779 +tp182780 +a(g182777 +g182779 +S'gang."' +p182781 +tp182782 +a(g182779 +g182781 +S'tarbell' +p182783 +tp182784 +a(g182781 +g182783 +S'also' +p182785 +tp182786 +a(g182783 +g182785 +S'commanded' +p182787 +tp182788 +a(g182785 +g182787 +S'respect' +p182789 +tp182790 +a(g182787 +g182789 +S'later' +p182791 +tp182792 +a(g182789 +g182791 +S'in' +p182793 +tp182794 +a(g182791 +g182793 +S'washington,' +p182795 +tp182796 +a(g182793 +g182795 +S'd.c.,' +p182797 +tp182798 +a(g182795 +g182797 +S'when' +p182799 +tp182800 +a(g182797 +g182799 +S'he' +p182801 +tp182802 +a(g182799 +g182801 +S'served' +p182803 +tp182804 +a(g182801 +g182803 +S'as' +p182805 +tp182806 +a(g182803 +g182805 +S'principal' +p182807 +tp182808 +a(g182805 +g182807 +S'at' +p182809 +tp182810 +a(g182807 +g182809 +S'the' +p182811 +tp182812 +a(g182809 +g182811 +S'corcoran' +p182813 +tp182814 +a(g182811 +g182813 +S"gallery's" +p182815 +tp182816 +a(g182813 +g182815 +S'school' +p182817 +tp182818 +a(g182815 +g182817 +S'of' +p182819 +tp182820 +a(g182817 +g182819 +S'art' +p182821 +tp182822 +a(g182819 +g182821 +S'from' +p182823 +tp182824 +a(g182821 +g182823 +S'1918' +p182825 +tp182826 +a(g182823 +g182825 +S'to' +p182827 +tp182828 +a(g182825 +g182827 +S'1925.' +p182829 +tp182830 +a(g182827 +g182829 +S'his' +p182831 +tp182832 +a(g182829 +g182831 +S'insistence' +p182833 +tp182834 +a(g182831 +g182833 +S'upon' +p182835 +tp182836 +a(g182833 +g182835 +S'precise' +p182837 +tp182838 +a(g182835 +g182837 +S'draftsmanship' +p182839 +tp182840 +a(g182837 +g182839 +S'resulted' +p182841 +tp182842 +a(g182839 +g182841 +S'from' +p182843 +tp182844 +a(g182841 +g182843 +S'his' +p182845 +tp182846 +a(g182843 +g182845 +S'teenaged' +p182847 +tp182848 +a(g182845 +g182847 +S'apprenticeship' +p182849 +tp182850 +a(g182847 +g182849 +S'to' +p182851 +tp182852 +a(g182849 +g182851 +S'a' +p182853 +tp182854 +a(g182851 +g182853 +S'lithographic' +p182855 +tp182856 +a(g182853 +g182855 +S'company' +p182857 +tp182858 +a(g182855 +g182857 +S'and' +p182859 +tp182860 +a(g182857 +g182859 +S'his' +p182861 +tp182862 +a(g182859 +g182861 +S'academic' +p182863 +tp182864 +a(g182861 +g182863 +S'studies' +p182865 +tp182866 +a(g182863 +g182865 +S'in' +p182867 +tp182868 +a(g182865 +g182867 +S'boston' +p182869 +tp182870 +a(g182867 +g182869 +S'and' +p182871 +tp182872 +a(g182869 +g182871 +S'paris.' +p182873 +tp182874 +a(g182871 +g182873 +S'unlike' +p182875 +tp182876 +a(g182873 +g182875 +S'the' +p182877 +tp182878 +a(g182875 +g182877 +S'bravura' +p182879 +tp182880 +a(g182877 +g182879 +S'sketchiness' +p182881 +tp182882 +a(g182879 +g182881 +S'and' +p182883 +tp182884 +a(g182881 +g182883 +S'vivid' +p182885 +tp182886 +a(g182883 +g182885 +S'colors' +p182887 +tp182888 +a(g182885 +g182887 +S'preferred' +p182889 +tp182890 +a(g182887 +g182889 +S'by' +p182891 +tp182892 +a(g182889 +g182891 +S'his' +p182893 +tp182894 +a(g182891 +g182893 +S'friend' +p182895 +tp182896 +a(g182893 +g182895 +S'frank' +p182897 +tp182898 +a(g182895 +g182897 +S'benson,' +p182899 +tp182900 +a(g182897 +g182899 +S'tarbell' +p182901 +tp182902 +a(g182899 +g182901 +S'emphasized' +p182903 +tp182904 +a(g182901 +g182903 +S'solid,' +p182905 +tp182906 +a(g182903 +g182905 +S'three-dimensional' +p182907 +tp182908 +a(g182905 +g182907 +S'forms.' +p182909 +tp182910 +a(g182907 +g182909 +S'to' +p182911 +tp182912 +a(g182909 +g182911 +S'challenge' +p182913 +tp182914 +a(g182911 +g182913 +S'himself' +p182915 +tp182916 +a(g182913 +g182915 +S'by' +p182917 +tp182918 +a(g182915 +g182917 +S'painting' +p182919 +tp182920 +a(g182917 +g182919 +S'interior' +p182921 +tp182922 +a(g182919 +g182921 +S'and' +p182923 +tp182924 +a(g182921 +g182923 +S'exterior' +p182925 +tp182926 +a(g182923 +g182925 +S'light' +p182927 +tp182928 +a(g182925 +g182927 +S'in' +p182929 +tp182930 +a(g182927 +g182929 +S'the' +p182931 +tp182932 +a(g182929 +g182931 +S'same' +p182933 +tp182934 +a(g182931 +g182933 +S'composition,' +p182935 +tp182936 +a(g182933 +g182935 +S'tarbell' +p182937 +tp182938 +a(g182935 +g182937 +S'often' +p182939 +tp182940 +a(g182937 +g182939 +S'depicted' +p182941 +tp182942 +a(g182939 +g182941 +S'the' +p182943 +tp182944 +a(g182941 +g182943 +S'tall' +p182945 +tp182946 +a(g182943 +g182945 +S'french' +p182947 +tp182948 +a(g182945 +g182947 +S'windows' +p182949 +tp182950 +a(g182947 +g182949 +S'at' +p182951 +tp182952 +a(g182949 +g182951 +S'his' +p182953 +tp182954 +a(g182951 +g182953 +S'summer' +p182955 +tp182956 +a(g182953 +g182955 +S'home' +p182957 +tp182958 +a(g182955 +g182957 +S'in' +p182959 +tp182960 +a(g182957 +g182959 +S'new' +p182961 +tp182962 +a(g182959 +g182961 +S'castle,' +p182963 +tp182964 +a(g182961 +g182963 +S'new' +p182965 +tp182966 +a(g182963 +g182965 +S'hampshire.' +p182967 +tp182968 +a(g182965 +g182967 +S'the' +p182969 +tp182970 +a(g182967 +g182969 +S'colonial' +p182971 +tp182972 +a(g182969 +g182971 +S'revival' +p182973 +tp182974 +a(g182971 +g182973 +S'decor' +p182975 +tp182976 +a(g182973 +g182975 +S'mixes' +p182977 +tp182978 +a(g182975 +g182977 +S'furniture' +p182979 +tp182980 +a(g182977 +g182979 +S'styles' +p182981 +tp182982 +a(g182979 +g182981 +S'by' +p182983 +tp182984 +a(g182981 +g182983 +S'using' +p182985 +tp182986 +a(g182983 +g182985 +S'both' +p182987 +tp182988 +a(g182985 +g182987 +S'antiques' +p182989 +tp182990 +a(g182987 +g182989 +S'and' +p182991 +tp182992 +a(g182989 +g182991 +S'reproductions.' +p182993 +tp182994 +a(g182991 +g182993 +S'criss-crossed' +p182995 +tp182996 +a(g182993 +g182995 +S'over' +p182997 +tp182998 +a(g182995 +g182997 +S'the' +p182999 +tp183000 +a(g182997 +g182999 +S'polished' +p183001 +tp183002 +a(g182999 +g183001 +S'floor,' +p183003 +tp183004 +a(g183001 +g183003 +S'long' +p183005 +tp183006 +a(g183003 +g183005 +S'brushstrokes' +p183007 +tp183008 +a(g183005 +g183007 +S'imitate' +p183009 +tp183010 +a(g183007 +g183009 +S'the' +p183011 +tp183012 +a(g183009 +g183011 +S'luster' +p183013 +tp183014 +a(g183011 +g183013 +S'of' +p183015 +tp183016 +a(g183013 +g183015 +S'reflected' +p183017 +tp183018 +a(g183015 +g183017 +S'sunlight' +p183019 +tp183020 +a(g183017 +g183019 +S'and' +p183021 +tp183022 +a(g183019 +g183021 +S'reveal' +p183023 +tp183024 +a(g183021 +g183023 +S'the' +p183025 +tp183026 +a(g183023 +g183025 +S'marks' +p183027 +tp183028 +a(g183025 +g183027 +S'of' +p183029 +tp183030 +a(g183027 +g183029 +S'hand' +p183031 +tp183032 +a(g183029 +g183031 +S'buffing' +p183033 +tp183034 +a(g183031 +g183033 +S'on' +p183035 +tp183036 +a(g183033 +g183035 +S'the' +p183037 +tp183038 +a(g183035 +g183037 +S'freshly' +p183039 +tp183040 +a(g183037 +g183039 +S'waxed' +p183041 +tp183042 +a(g183039 +g183041 +S'wood.' +p183043 +tp183044 +a(g183041 +g183043 +S'all' +p183045 +tp183046 +a(g183043 +g183045 +S'classes' +p183047 +tp183048 +a(g183045 +g183047 +S'of' +p183049 +tp183050 +a(g183047 +g183049 +S'dutch' +p183051 +tp183052 +a(g183049 +g183051 +S'society' +p183053 +tp183054 +a(g183051 +g183053 +S'mingle' +p183055 +tp183056 +a(g183053 +g183055 +S'while' +p183057 +tp183058 +a(g183055 +g183057 +S'enjoying' +p183059 +tp183060 +a(g183057 +g183059 +S'winter' +p183061 +tp183062 +a(g183059 +g183061 +S'sports.' +p183063 +tp183064 +a(g183061 +g183063 +S'from' +p183065 +tp183066 +a(g183063 +g183065 +S'the' +p183067 +tp183068 +a(g183065 +g183067 +S'lower' +p183069 +tp183070 +a(g183067 +g183069 +S'left' +p183071 +tp183072 +a(g183069 +g183071 +S'corner,' +p183073 +tp183074 +a(g183071 +g183073 +S'a' +p183075 +tp183076 +a(g183073 +g183075 +S'poor' +p183077 +tp183078 +a(g183075 +g183077 +S'fisherman' +p183079 +tp183080 +a(g183077 +g183079 +S'surveys' +p183081 +tp183082 +a(g183079 +g183081 +S'the' +p183083 +tp183084 +a(g183081 +g183083 +S'many' +p183085 +tp183086 +a(g183083 +g183085 +S'skaters.' +p183087 +tp183088 +a(g183085 +g183087 +S'at' +p183089 +tp183090 +a(g183087 +g183089 +S'the' +p183091 +tp183092 +a(g183089 +g183091 +S'center,' +p183093 +tp183094 +a(g183091 +g183093 +S'well-dressed' +p183095 +tp183096 +a(g183093 +g183095 +S'ladies' +p183097 +tp183098 +a(g183095 +g183097 +S'ride' +p183099 +tp183100 +a(g183097 +g183099 +S'in' +p183101 +tp183102 +a(g183099 +g183101 +S'an' +p183103 +tp183104 +a(g183101 +g183103 +S'elegant' +p183105 +tp183106 +a(g183103 +g183105 +S'sleigh' +p183107 +tp183108 +a(g183105 +g183107 +S'driven' +p183109 +tp183110 +a(g183107 +g183109 +S'by' +p183111 +tp183112 +a(g183109 +g183111 +S'a' +p183113 +tp183114 +a(g183111 +g183113 +S'groom;' +p183115 +tp183116 +a(g183113 +g183115 +S'the' +p183117 +tp183118 +a(g183115 +g183117 +S'horse’s' +p183119 +tp183120 +a(g183117 +g183119 +S'shoes' +p183121 +tp183122 +a(g183119 +g183121 +S'are' +p183123 +tp183124 +a(g183121 +g183123 +S'spiked' +p183125 +tp183126 +a(g183123 +g183125 +S'for' +p183127 +tp183128 +a(g183125 +g183127 +S'traction' +p183129 +tp183130 +a(g183127 +g183129 +S'on' +p183131 +tp183132 +a(g183129 +g183131 +S'the' +p183133 +tp183134 +a(g183131 +g183133 +S'slippery' +p183135 +tp183136 +a(g183133 +g183135 +S'surface.' +p183137 +tp183138 +a(g183135 +g183137 +S'two' +p183139 +tp183140 +a(g183137 +g183139 +S'little' +p183141 +tp183142 +a(g183139 +g183141 +S'boys' +p183143 +tp183144 +a(g183141 +g183143 +S'in' +p183145 +tp183146 +a(g183143 +g183145 +S'the' +p183147 +tp183148 +a(g183145 +g183147 +S'right' +p183149 +tp183150 +a(g183147 +g183149 +S'corner' +p183151 +tp183152 +a(g183149 +g183151 +S'play' +p183153 +tp183154 +a(g183151 +g183153 +S'a' +p183155 +tp183156 +a(g183153 +g183155 +S'game' +p183157 +tp183158 +a(g183155 +g183157 +S'of' +p183159 +tp183160 +a(g183157 +g183159 +S'avercamp,' +p183161 +tp183162 +a(g183159 +g183161 +S'who' +p183163 +tp183164 +a(g183161 +g183163 +S'combined' +p183165 +tp183166 +a(g183163 +g183165 +S'the' +p183167 +tp183168 +a(g183165 +g183167 +S'dutch' +p183169 +tp183170 +a(g183167 +g183169 +S'love' +p183171 +tp183172 +a(g183169 +g183171 +S'of' +p183173 +tp183174 +a(g183171 +g183173 +S'landscape' +p183175 +tp183176 +a(g183173 +g183175 +S'with' +p183177 +tp183178 +a(g183175 +g183177 +S'scenes' +p183179 +tp183180 +a(g183177 +g183179 +S'of' +p183181 +tp183182 +a(g183179 +g183181 +S'daily' +p183183 +tp183184 +a(g183181 +g183183 +S'life' +p183185 +tp183186 +a(g183183 +g183185 +S'called' +p183187 +tp183188 +a(g183185 +g183187 +S'genre,' +p183189 +tp183190 +a(g183187 +g183189 +S'was' +p183191 +tp183192 +a(g183189 +g183191 +S'among' +p183193 +tp183194 +a(g183191 +g183193 +S'the' +p183195 +tp183196 +a(g183193 +g183195 +S'first' +p183197 +tp183198 +a(g183195 +g183197 +S'european' +p183199 +tp183200 +a(g183197 +g183199 +S'artists' +p183201 +tp183202 +a(g183199 +g183201 +S'to' +p183203 +tp183204 +a(g183201 +g183203 +S'specialize' +p183205 +tp183206 +a(g183203 +g183205 +S'in' +p183207 +tp183208 +a(g183205 +g183207 +S'depicting' +p183209 +tp183210 +a(g183207 +g183209 +S'winter.' +p183211 +tp183212 +a(g183209 +g183211 +S'the' +p183213 +tp183214 +a(g183211 +g183213 +S'pearly' +p183215 +tp183216 +a(g183213 +g183215 +S'gray' +p183217 +tp183218 +a(g183215 +g183217 +S'tonality' +p183219 +tp183220 +a(g183217 +g183219 +S'here' +p183221 +tp183222 +a(g183219 +g183221 +S'becomes' +p183223 +tp183224 +a(g183221 +g183223 +S'ever' +p183225 +tp183226 +a(g183223 +g183225 +S'paler' +p183227 +tp183228 +a(g183225 +g183227 +S'and' +p183229 +tp183230 +a(g183227 +g183229 +S'the' +p183231 +tp183232 +a(g183229 +g183231 +S'forms' +p183233 +tp183234 +a(g183231 +g183233 +S'less' +p183235 +tp183236 +a(g183233 +g183235 +S'distinct' +p183237 +tp183238 +a(g183235 +g183237 +S'as' +p183239 +tp183240 +a(g183237 +g183239 +S'they' +p183241 +tp183242 +a(g183239 +g183241 +S'move' +p183243 +tp183244 +a(g183241 +g183243 +S'into' +p183245 +tp183246 +a(g183243 +g183245 +S'the' +p183247 +tp183248 +a(g183245 +g183247 +S'distance,' +p183249 +tp183250 +a(g183247 +g183249 +S'subtly' +p183251 +tp183252 +a(g183249 +g183251 +S'conveying' +p183253 +tp183254 +a(g183251 +g183253 +S'a' +p183255 +tp183256 +a(g183253 +g183255 +S'sense' +p183257 +tp183258 +a(g183255 +g183257 +S'of' +p183259 +tp183260 +a(g183257 +g183259 +S'deep' +p183261 +tp183262 +a(g183259 +g183261 +S'space' +p183263 +tp183264 +a(g183261 +g183263 +S'on' +p183265 +tp183266 +a(g183263 +g183265 +S'a' +p183267 +tp183268 +a(g183265 +g183267 +S'frosty' +p183269 +tp183270 +a(g183267 +g183269 +S'day.' +p183271 +tp183272 +a(g183269 +g183271 +S'the' +p183273 +tp183274 +a(g183271 +g183273 +S'setting' +p183275 +tp183276 +a(g183273 +g183275 +S'may' +p183277 +tp183278 +a(g183275 +g183277 +S'be' +p183279 +tp183280 +a(g183277 +g183279 +S'the' +p183281 +tp183282 +a(g183279 +g183281 +S'quiet' +p183283 +tp183284 +a(g183281 +g183283 +S'village' +p183285 +tp183286 +a(g183283 +g183285 +S'of' +p183287 +tp183288 +a(g183285 +g183287 +S'kampen' +p183289 +tp183290 +a(g183287 +g183289 +S'northeast' +p183291 +tp183292 +a(g183289 +g183291 +S'of' +p183293 +tp183294 +a(g183291 +g183293 +S'amsterdam.' +p183295 +tp183296 +a(g183293 +g183295 +S'very' +p183297 +tp183298 +a(g183295 +g183297 +S'successful' +p183299 +tp183300 +a(g183297 +g183299 +S'financially,' +p183301 +tp183302 +a(g183299 +g183301 +S'avercamp' +p183303 +tp183304 +a(g183301 +g183303 +S'was' +p183305 +tp183306 +a(g183303 +g183305 +S'called' +p183307 +tp183308 +a(g183305 +g183307 +S"gossaert's" +p183309 +tp183310 +a(g183307 +g183309 +S'portrait' +p183311 +tp183312 +a(g183309 +g183311 +S'shows' +p183313 +tp183314 +a(g183311 +g183313 +S'a' +p183315 +tp183316 +a(g183313 +g183315 +S'merchant' +p183317 +tp183318 +a(g183315 +g183317 +S'seated' +p183319 +tp183320 +a(g183317 +g183319 +S'in' +p183321 +tp183322 +a(g183319 +g183321 +S'a' +p183323 +tp183324 +a(g183321 +g183323 +S'cramped' +p183325 +tp183326 +a(g183323 +g183325 +S'yet' +p183327 +tp183328 +a(g183325 +g183327 +S'cozy' +p183329 +tp183330 +a(g183327 +g183329 +S'space,' +p183331 +tp183332 +a(g183329 +g183331 +S'surrounded' +p183333 +tp183334 +a(g183331 +g183333 +S'by' +p183335 +tp183336 +a(g183333 +g183335 +S'the' +p183337 +tp183338 +a(g183335 +g183337 +S'tools' +p183339 +tp183340 +a(g183337 +g183339 +S'of' +p183341 +tp183342 +a(g183339 +g183341 +S'his' +p183343 +tp183344 +a(g183341 +g183343 +S'trade.' +p183345 +tp183346 +a(g183343 +g183345 +S'scattered' +p183347 +tp183348 +a(g183345 +g183347 +S'over' +p183349 +tp183350 +a(g183347 +g183349 +S'the' +p183351 +tp183352 +a(g183349 +g183351 +S'table' +p183353 +tp183354 +a(g183351 +g183353 +S'are' +p183355 +tp183356 +a(g183353 +g183355 +S'such' +p183357 +tp183358 +a(g183355 +g183357 +S'useful' +p183359 +tp183360 +a(g183357 +g183359 +S'items' +p183361 +tp183362 +a(g183359 +g183361 +S'as' +p183363 +tp183364 +a(g183361 +g183363 +S'a' +p183365 +tp183366 +a(g183363 +g183365 +S'talc' +p183367 +tp183368 +a(g183365 +g183367 +S'shaker' +p183369 +tp183370 +a(g183367 +g183369 +S'used' +p183371 +tp183372 +a(g183369 +g183371 +S'to' +p183373 +tp183374 +a(g183371 +g183373 +S'dry' +p183375 +tp183376 +a(g183373 +g183375 +S'ink,' +p183377 +tp183378 +a(g183375 +g183377 +S'an' +p183379 +tp183380 +a(g183377 +g183379 +S'ink' +p183381 +tp183382 +a(g183379 +g183381 +S'pot,' +p183383 +tp183384 +a(g183381 +g183383 +S'a' +p183385 +tp183386 +a(g183383 +g183385 +S'pair' +p183387 +tp183388 +a(g183385 +g183387 +S'of' +p183389 +tp183390 +a(g183387 +g183389 +S'scales' +p183391 +tp183392 +a(g183389 +g183391 +S'for' +p183393 +tp183394 +a(g183391 +g183393 +S'testing' +p183395 +tp183396 +a(g183393 +g183395 +S'the' +p183397 +tp183398 +a(g183395 +g183397 +S'weight' +p183399 +tp183400 +a(g183397 +g183399 +S'(and' +p183401 +tp183402 +a(g183399 +g183401 +S'hence' +p183403 +tp183404 +a(g183401 +g183403 +S'the' +p183405 +tp183406 +a(g183403 +g183405 +S'quality)' +p183407 +tp183408 +a(g183405 +g183407 +S'of' +p183409 +tp183410 +a(g183407 +g183409 +S'coins,' +p183411 +tp183412 +a(g183409 +g183411 +S'and' +p183413 +tp183414 +a(g183411 +g183413 +S'a' +p183415 +tp183416 +a(g183413 +g183415 +S'metal' +p183417 +tp183418 +a(g183415 +g183417 +S'receptacle' +p183419 +tp183420 +a(g183417 +g183419 +S'for' +p183421 +tp183422 +a(g183419 +g183421 +S'sealing' +p183423 +tp183424 +a(g183421 +g183423 +S'wax,' +p183425 +tp183426 +a(g183423 +g183425 +S'quill' +p183427 +tp183428 +a(g183425 +g183427 +S'pens,' +p183429 +tp183430 +a(g183427 +g183429 +S'and' +p183431 +tp183432 +a(g183429 +g183431 +S'paper.' +p183433 +tp183434 +a(g183431 +g183433 +S'attached' +p183435 +tp183436 +a(g183433 +g183435 +S'to' +p183437 +tp183438 +a(g183435 +g183437 +S'the' +p183439 +tp183440 +a(g183437 +g183439 +S'wall' +p183441 +tp183442 +a(g183439 +g183441 +S'are' +p183443 +tp183444 +a(g183441 +g183443 +S'balls' +p183445 +tp183446 +a(g183443 +g183445 +S'of' +p183447 +tp183448 +a(g183445 +g183447 +S'twine' +p183449 +tp183450 +a(g183447 +g183449 +S'and' +p183451 +tp183452 +a(g183449 +g183451 +S'batches' +p183453 +tp183454 +a(g183451 +g183453 +S'of' +p183455 +tp183456 +a(g183453 +g183455 +S'papers' +p183457 +tp183458 +a(g183455 +g183457 +S'labeled' +p183459 +tp183460 +a(g183457 +g183459 +S'"miscellaneous' +p183461 +tp183462 +a(g183459 +g183461 +S'letters"' +p183463 +tp183464 +a(g183461 +g183463 +S'and' +p183465 +tp183466 +a(g183463 +g183465 +S'"miscellaneous' +p183467 +tp183468 +a(g183465 +g183467 +S'drafts."' +p183469 +tp183470 +a(g183467 +g183469 +S'the' +p183471 +tp183472 +a(g183469 +g183471 +S'monogram' +p183473 +tp183474 +a(g183471 +g183473 +S'on' +p183475 +tp183476 +a(g183473 +g183475 +S'the' +p183477 +tp183478 +a(g183475 +g183477 +S"sitter's" +p183479 +tp183480 +a(g183477 +g183479 +S'hat' +p183481 +tp183482 +a(g183479 +g183481 +S'pin' +p183483 +tp183484 +a(g183481 +g183483 +S'and' +p183485 +tp183486 +a(g183483 +g183485 +S'index' +p183487 +tp183488 +a(g183485 +g183487 +S'finger' +p183489 +tp183490 +a(g183487 +g183489 +S'ring' +p183491 +tp183492 +a(g183489 +g183491 +S'have' +p183493 +tp183494 +a(g183491 +g183493 +S'led' +p183495 +tp183496 +a(g183493 +g183495 +S'to' +p183497 +tp183498 +a(g183495 +g183497 +S'his' +p183499 +tp183500 +a(g183497 +g183499 +S'tentative' +p183501 +tp183502 +a(g183499 +g183501 +S'identification' +p183503 +tp183504 +a(g183501 +g183503 +S'as' +p183505 +tp183506 +a(g183503 +g183505 +S'jerome' +p183507 +tp183508 +a(g183505 +g183507 +S'sandelin,' +p183509 +tp183510 +a(g183507 +g183509 +S'who' +p183511 +tp183512 +a(g183509 +g183511 +S'was' +p183513 +tp183514 +a(g183511 +g183513 +S'a' +p183515 +tp183516 +a(g183513 +g183515 +S'tax' +p183517 +tp183518 +a(g183515 +g183517 +S'collector' +p183519 +tp183520 +a(g183517 +g183519 +S'in' +p183521 +tp183522 +a(g183519 +g183521 +S'zeeland.' +p183523 +tp183524 +a(g183521 +g183523 +S'this' +p183525 +tp183526 +a(g183523 +g183525 +S'region,' +p183527 +tp183528 +a(g183525 +g183527 +S'on' +p183529 +tp183530 +a(g183527 +g183529 +S'the' +p183531 +tp183532 +a(g183529 +g183531 +S'southern' +p183533 +tp183534 +a(g183531 +g183533 +S'coast' +p183535 +tp183536 +a(g183533 +g183535 +S'of' +p183537 +tp183538 +a(g183535 +g183537 +S'present–day' +p183539 +tp183540 +a(g183537 +g183539 +S'holland,' +p183541 +tp183542 +a(g183539 +g183541 +S'was' +p183543 +tp183544 +a(g183541 +g183543 +S'also' +p183545 +tp183546 +a(g183543 +g183545 +S'the' +p183547 +tp183548 +a(g183545 +g183547 +S'home' +p183549 +tp183550 +a(g183547 +g183549 +S'of' +p183551 +tp183552 +a(g183549 +g183551 +S'jan' +p183553 +tp183554 +a(g183551 +g183553 +S'gossaert' +p183555 +tp183556 +a(g183553 +g183555 +S'for' +p183557 +tp183558 +a(g183555 +g183557 +S'approximately' +p183559 +tp183560 +a(g183557 +g183559 +S'the' +p183561 +tp183562 +a(g183559 +g183561 +S'last' +p183563 +tp183564 +a(g183561 +g183563 +S'ten' +p183565 +tp183566 +a(g183563 +g183565 +S'years' +p183567 +tp183568 +a(g183565 +g183567 +S'of' +p183569 +tp183570 +a(g183567 +g183569 +S'his' +p183571 +tp183572 +a(g183569 +g183571 +S'life.' +p183573 +tp183574 +a(g183571 +g183573 +S'the' +p183575 +tp183576 +a(g183573 +g183575 +S"artist's" +p183577 +tp183578 +a(g183575 +g183577 +S'netherlandish' +p183579 +tp183580 +a(g183577 +g183579 +S'love' +p183581 +tp183582 +a(g183579 +g183581 +S'of' +p183583 +tp183584 +a(g183581 +g183583 +S'detail' +p183585 +tp183586 +a(g183583 +g183585 +S'and' +p183587 +tp183588 +a(g183585 +g183587 +S'texture' +p183589 +tp183590 +a(g183587 +g183589 +S'combine' +p183591 +tp183592 +a(g183589 +g183591 +S'with' +p183593 +tp183594 +a(g183591 +g183593 +S'his' +p183595 +tp183596 +a(g183593 +g183595 +S'admiration' +p183597 +tp183598 +a(g183595 +g183597 +S'for' +p183599 +tp183600 +a(g183597 +g183599 +S'the' +p183601 +tp183602 +a(g183599 +g183601 +S'massiveness' +p183603 +tp183604 +a(g183601 +g183603 +S'of' +p183605 +tp183606 +a(g183603 +g183605 +S'italian' +p183607 +tp183608 +a(g183605 +g183607 +S'high' +p183609 +tp183610 +a(g183607 +g183609 +S'renaissance' +p183611 +tp183612 +a(g183609 +g183611 +S'art' +p183613 +tp183614 +a(g183611 +g183613 +S'to' +p183615 +tp183616 +a(g183613 +g183615 +S'achieve' +p183617 +tp183618 +a(g183615 +g183617 +S'here' +p183619 +tp183620 +a(g183617 +g183619 +S'what' +p183621 +tp183622 +a(g183619 +g183621 +S'might' +p183623 +tp183624 +a(g183621 +g183623 +S'be' +p183625 +tp183626 +a(g183623 +g183625 +S'termed' +p183627 +tp183628 +a(g183625 +g183627 +S'a' +p183629 +tp183630 +a(g183627 +g183629 +S'monumentality' +p183631 +tp183632 +a(g183629 +g183631 +S'of' +p183633 +tp183634 +a(g183631 +g183633 +S'the' +p183635 +tp183636 +a(g183633 +g183635 +S'particular.' +p183637 +tp183638 +a(g183635 +g183637 +S'at' +p183639 +tp183640 +a(g183637 +g183639 +S'the' +p183641 +tp183642 +a(g183639 +g183641 +S'same' +p183643 +tp183644 +a(g183641 +g183643 +S'time,' +p183645 +tp183646 +a(g183643 +g183645 +S'the' +p183647 +tp183648 +a(g183645 +g183647 +S"sitter's" +p183649 +tp183650 +a(g183647 +g183649 +S'furtive' +p183651 +tp183652 +a(g183649 +g183651 +S'glance' +p183653 +tp183654 +a(g183651 +g183653 +S'and' +p183655 +tp183656 +a(g183653 +g183655 +S'prim' +p183657 +tp183658 +a(g183655 +g183657 +S'mouth' +p183659 +tp183660 +a(g183657 +g183659 +S'are' +p183661 +tp183662 +a(g183659 +g183661 +S'enough' +p183663 +tp183664 +a(g183661 +g183663 +S'to' +p183665 +tp183666 +a(g183663 +g183665 +S'inform' +p183667 +tp183668 +a(g183665 +g183667 +S'us' +p183669 +tp183670 +a(g183667 +g183669 +S'of' +p183671 +tp183672 +a(g183669 +g183671 +S'the' +p183673 +tp183674 +a(g183671 +g183673 +S'insecurity' +p183675 +tp183676 +a(g183673 +g183675 +S'and' +p183677 +tp183678 +a(g183675 +g183677 +S'apprehension' +p183679 +tp183680 +a(g183677 +g183679 +S'that' +p183681 +tp183682 +a(g183679 +g183681 +S'haunted' +p183683 +tp183684 +a(g183681 +g183683 +S'bankers' +p183685 +tp183686 +a(g183683 +g183685 +S'in' +p183687 +tp183688 +a(g183685 +g183687 +S'the' +p183689 +tp183690 +a(g183687 +g183689 +S'1530s,' +p183691 +tp183692 +a(g183689 +g183691 +S'when' +p183693 +tp183694 +a(g183691 +g183693 +S'the' +p183695 +tp183696 +a(g183693 +g183695 +S'prevailing' +p183697 +tp183698 +a(g183695 +g183697 +S'moral' +p183699 +tp183700 +a(g183697 +g183699 +S'attitude' +p183701 +tp183702 +a(g183699 +g183701 +S'was' +p183703 +tp183704 +a(g183701 +g183703 +S'summed' +p183705 +tp183706 +a(g183703 +g183705 +S'up' +p183707 +tp183708 +a(g183705 +g183707 +S'by' +p183709 +tp183710 +a(g183707 +g183709 +S'the' +p183711 +tp183712 +a(g183709 +g183711 +S'dutch' +p183713 +tp183714 +a(g183711 +g183713 +S'humanist' +p183715 +tp183716 +a(g183713 +g183715 +S'erasmus,' +p183717 +tp183718 +a(g183715 +g183717 +S'who' +p183719 +tp183720 +a(g183717 +g183719 +S'asked,' +p183721 +tp183722 +a(g183719 +g183721 +S'"when' +p183723 +tp183724 +a(g183721 +g183723 +S'did' +p183725 +tp183726 +a(g183723 +g183725 +S'avarice' +p183727 +tp183728 +a(g183725 +g183727 +S'reign' +p183729 +tp183730 +a(g183727 +g183729 +S'more' +p183731 +tp183732 +a(g183729 +g183731 +S'largely' +p183733 +tp183734 +a(g183731 +g183733 +S'and' +p183735 +tp183736 +a(g183733 +g183735 +S'less' +p183737 +tp183738 +a(g183735 +g183737 +S'punished?"' +p183739 +tp183740 +a(g183737 +g183739 +S'she' +p183741 +tp183742 +a(g183739 +g183741 +S'was' +p183743 +tp183744 +a(g183741 +g183743 +S'the' +p183745 +tp183746 +a(g183743 +g183745 +S'daughter' +p183747 +tp183748 +a(g183745 +g183747 +S'of' +p183749 +tp183750 +a(g183747 +g183749 +S'a' +p183751 +tp183752 +a(g183749 +g183751 +S'wealthy' +p183753 +tp183754 +a(g183751 +g183753 +S'florentine' +p183755 +tp183756 +a(g183753 +g183755 +S'banker,' +p183757 +tp183758 +a(g183755 +g183757 +S'and' +p183759 +tp183760 +a(g183757 +g183759 +S'her' +p183761 +tp183762 +a(g183759 +g183761 +S'portrait—the' +p183763 +tp183764 +a(g183761 +g183763 +S'only' +p183765 +tp183766 +a(g183763 +g183765 +S'painting' +p183767 +tp183768 +a(g183765 +g183767 +S'by' +p183769 +tp183770 +a(g183767 +g183769 +S'leonardo' +p183771 +tp183772 +a(g183769 +g183771 +S'da' +p183773 +tp183774 +a(g183771 +g183773 +S'vinci' +p183775 +tp183776 +a(g183773 +g183775 +S'in' +p183777 +tp183778 +a(g183775 +g183777 +S'the' +p183779 +tp183780 +a(g183777 +g183779 +S'americas—was' +p183781 +tp183782 +a(g183779 +g183781 +S'probably' +p183783 +tp183784 +a(g183781 +g183783 +S'commissioned' +p183785 +tp183786 +a(g183783 +g183785 +S'about' +p183787 +tp183788 +a(g183785 +g183787 +S'the' +p183789 +tp183790 +a(g183787 +g183789 +S'time' +p183791 +tp183792 +a(g183789 +g183791 +S'of' +p183793 +tp183794 +a(g183791 +g183793 +S'her' +p183795 +tp183796 +a(g183793 +g183795 +S'marriage' +p183797 +tp183798 +a(g183795 +g183797 +S'at' +p183799 +tp183800 +a(g183797 +g183799 +S'age' +p183801 +tp183802 +a(g183799 +g183801 +S'16.' +p183803 +tp183804 +a(g183801 +g183803 +S'leonardo' +p183805 +tp183806 +a(g183803 +g183805 +S'himself' +p183807 +tp183808 +a(g183805 +g183807 +S'was' +p183809 +tp183810 +a(g183807 +g183809 +S'only' +p183811 +tp183812 +a(g183809 +g183811 +S'about' +p183813 +tp183814 +a(g183811 +g183813 +S'six' +p183815 +tp183816 +a(g183813 +g183815 +S'years' +p183817 +tp183818 +a(g183815 +g183817 +S'older.' +p183819 +tp183820 +a(g183817 +g183819 +S'the' +p183821 +tp183822 +a(g183819 +g183821 +S'portrait' +p183823 +tp183824 +a(g183821 +g183823 +S'is' +p183825 +tp183826 +a(g183823 +g183825 +S'among' +p183827 +tp183828 +a(g183825 +g183827 +S'his' +p183829 +tp183830 +a(g183827 +g183829 +S'earliest' +p183831 +tp183832 +a(g183829 +g183831 +S'experiments' +p183833 +tp183834 +a(g183831 +g183833 +S'with' +p183835 +tp183836 +a(g183833 +g183835 +S'the' +p183837 +tp183838 +a(g183835 +g183837 +S'new' +p183839 +tp183840 +a(g183837 +g183839 +S'medium' +p183841 +tp183842 +a(g183839 +g183841 +S'of' +p183843 +tp183844 +a(g183841 +g183843 +S'oil' +p183845 +tp183846 +a(g183843 +g183845 +S'paint;' +p183847 +tp183848 +a(g183845 +g183847 +S'some' +p183849 +tp183850 +a(g183847 +g183849 +S'wrinkling' +p183851 +tp183852 +a(g183849 +g183851 +S'of' +p183853 +tp183854 +a(g183851 +g183853 +S'the' +p183855 +tp183856 +a(g183853 +g183855 +S'surface' +p183857 +tp183858 +a(g183855 +g183857 +S'shows' +p183859 +tp183860 +a(g183857 +g183859 +S'he' +p183861 +tp183862 +a(g183859 +g183861 +S'was' +p183863 +tp183864 +a(g183861 +g183863 +S'still' +p183865 +tp183866 +a(g183863 +g183865 +S'learning' +p183867 +tp183868 +a(g183865 +g183867 +S'to' +p183869 +tp183870 +a(g183867 +g183869 +S'control' +p183871 +tp183872 +a(g183869 +g183871 +S'it.' +p183873 +tp183874 +a(g183871 +g183873 +S'still,' +p183875 +tp183876 +a(g183873 +g183875 +S'the' +p183877 +tp183878 +a(g183875 +g183877 +S'careful' +p183879 +tp183880 +a(g183877 +g183879 +S'observation' +p183881 +tp183882 +a(g183879 +g183881 +S'of' +p183883 +tp183884 +a(g183881 +g183883 +S'nature' +p183885 +tp183886 +a(g183883 +g183885 +S'and' +p183887 +tp183888 +a(g183885 +g183887 +S'subtle' +p183889 +tp183890 +a(g183887 +g183889 +S'three–dimensionality' +p183891 +tp183892 +a(g183889 +g183891 +S'of' +p183893 +tp183894 +a(g183891 +g183893 +S"ginevra's" +p183895 +tp183896 +a(g183893 +g183895 +S'face' +p183897 +tp183898 +a(g183895 +g183897 +S'point' +p183899 +tp183900 +a(g183897 +g183899 +S'unmistakably' +p183901 +tp183902 +a(g183899 +g183901 +S'to' +p183903 +tp183904 +a(g183901 +g183903 +S'the' +p183905 +tp183906 +a(g183903 +g183905 +S'new' +p183907 +tp183908 +a(g183905 +g183907 +S'naturalism' +p183909 +tp183910 +a(g183907 +g183909 +S'with' +p183911 +tp183912 +a(g183909 +g183911 +S'which' +p183913 +tp183914 +a(g183911 +g183913 +S'leonardo' +p183915 +tp183916 +a(g183913 +g183915 +S'would' +p183917 +tp183918 +a(g183915 +g183917 +S'transform' +p183919 +tp183920 +a(g183917 +g183919 +S'renaissance' +p183921 +tp183922 +a(g183919 +g183921 +S'painting.' +p183923 +tp183924 +a(g183921 +g183923 +S'ginevra' +p183925 +tp183926 +a(g183923 +g183925 +S'is' +p183927 +tp183928 +a(g183925 +g183927 +S'modeled' +p183929 +tp183930 +a(g183927 +g183929 +S'with' +p183931 +tp183932 +a(g183929 +g183931 +S'gradually' +p183933 +tp183934 +a(g183931 +g183933 +S'deepening' +p183935 +tp183936 +a(g183933 +g183935 +S'veils' +p183937 +tp183938 +a(g183935 +g183937 +S'of' +p183939 +tp183940 +a(g183937 +g183939 +S'smoky' +p183941 +tp183942 +a(g183939 +g183941 +S'shadow—not' +p183943 +tp183944 +a(g183941 +g183943 +S'by' +p183945 +tp183946 +a(g183943 +g183945 +S'line,' +p183947 +tp183948 +a(g183945 +g183947 +S'not' +p183949 +tp183950 +a(g183947 +g183949 +S'by' +p183951 +tp183952 +a(g183949 +g183951 +S'abrupt' +p183953 +tp183954 +a(g183951 +g183953 +S'transitions' +p183955 +tp183956 +a(g183953 +g183955 +S'of' +p183957 +tp183958 +a(g183955 +g183957 +S'color' +p183959 +tp183960 +a(g183957 +g183959 +S'or' +p183961 +tp183962 +a(g183959 +g183961 +S'light.' +p183963 +tp183964 +a(g183961 +g183963 +S'other' +p183965 +tp183966 +a(g183963 +g183965 +S'features' +p183967 +tp183968 +a(g183965 +g183967 +S'of' +p183969 +tp183970 +a(g183967 +g183969 +S"ginevra's" +p183971 +tp183972 +a(g183969 +g183971 +S'portrait' +p183973 +tp183974 +a(g183971 +g183973 +S'reveal' +p183975 +tp183976 +a(g183973 +g183975 +S'young' +p183977 +tp183978 +a(g183975 +g183977 +S'leonardo' +p183979 +tp183980 +a(g183977 +g183979 +S'as' +p183981 +tp183982 +a(g183979 +g183981 +S'an' +p183983 +tp183984 +a(g183981 +g183983 +S'innovator.' +p183985 +tp183986 +a(g183983 +g183985 +S'he' +p183987 +tp183988 +a(g183985 +g183987 +S'placed' +p183989 +tp183990 +a(g183987 +g183989 +S'her' +p183991 +tp183992 +a(g183989 +g183991 +S'in' +p183993 +tp183994 +a(g183991 +g183993 +S'an' +p183995 +tp183996 +a(g183993 +g183995 +S'open' +p183997 +tp183998 +a(g183995 +g183997 +S'setting' +p183999 +tp184000 +a(g183997 +g183999 +S'at' +p184001 +tp184002 +a(g183999 +g184001 +S'a' +p184003 +tp184004 +a(g184001 +g184003 +S'time' +p184005 +tp184006 +a(g184003 +g184005 +S'when' +p184007 +tp184008 +a(g184005 +g184007 +S'women' +p184009 +tp184010 +a(g184007 +g184009 +S'were' +p184011 +tp184012 +a(g184009 +g184011 +S'still' +p184013 +tp184014 +a(g184011 +g184013 +S'shown' +p184015 +tp184016 +a(g184013 +g184015 +S'carefully' +p184017 +tp184018 +a(g184015 +g184017 +S'sheltered' +p184019 +tp184020 +a(g184017 +g184019 +S'within' +p184021 +tp184022 +a(g184019 +g184021 +S'the' +p184023 +tp184024 +a(g184021 +g184023 +S'walls' +p184025 +tp184026 +a(g184023 +g184025 +S'of' +p184027 +tp184028 +a(g184025 +g184027 +S'their' +p184029 +tp184030 +a(g184027 +g184029 +S'family' +p184031 +tp184032 +a(g184029 +g184031 +S'homes,' +p184033 +tp184034 +a(g184031 +g184033 +S'with' +p184035 +tp184036 +a(g184033 +g184035 +S'landscapes' +p184037 +tp184038 +a(g184035 +g184037 +S'glimpsed' +p184039 +tp184040 +a(g184037 +g184039 +S'only' +p184041 +tp184042 +a(g184039 +g184041 +S'through' +p184043 +tp184044 +a(g184041 +g184043 +S'open' +p184045 +tp184046 +a(g184043 +g184045 +S'windows.' +p184047 +tp184048 +a(g184045 +g184047 +S'the' +p184049 +tp184050 +a(g184047 +g184049 +S'three–quarter' +p184051 +tp184052 +a(g184049 +g184051 +S'pose,' +p184053 +tp184054 +a(g184051 +g184053 +S'which' +p184055 +tp184056 +a(g184053 +g184055 +S'shows' +p184057 +tp184058 +a(g184055 +g184057 +S'her' +p184059 +tp184060 +a(g184057 +g184059 +S'steady' +p184061 +tp184062 +a(g184059 +g184061 +S'reserve,' +p184063 +tp184064 +a(g184061 +g184063 +S'is' +p184065 +tp184066 +a(g184063 +g184065 +S'among' +p184067 +tp184068 +a(g184065 +g184067 +S'the' +p184069 +tp184070 +a(g184067 +g184069 +S'first' +p184071 +tp184072 +a(g184069 +g184071 +S'in' +p184073 +tp184074 +a(g184071 +g184073 +S'italian' +p184075 +tp184076 +a(g184073 +g184075 +S'portraiture,' +p184077 +tp184078 +a(g184075 +g184077 +S'for' +p184079 +tp184080 +a(g184077 +g184079 +S'either' +p184081 +tp184082 +a(g184079 +g184081 +S'sex.' +p184083 +tp184084 +a(g184081 +g184083 +S'at' +p184085 +tp184086 +a(g184083 +g184085 +S'some' +p184087 +tp184088 +a(g184085 +g184087 +S'time' +p184089 +tp184090 +a(g184087 +g184089 +S'in' +p184091 +tp184092 +a(g184089 +g184091 +S'the' +p184093 +tp184094 +a(g184091 +g184093 +S'past,' +p184095 +tp184096 +a(g184093 +g184095 +S'probably' +p184097 +tp184098 +a(g184095 +g184097 +S'because' +p184099 +tp184100 +a(g184097 +g184099 +S'of' +p184101 +tp184102 +a(g184099 +g184101 +S'damage,' +p184103 +tp184104 +a(g184101 +g184103 +S'the' +p184105 +tp184106 +a(g184103 +g184105 +S'panel' +p184107 +tp184108 +a(g184105 +g184107 +S'was' +p184109 +tp184110 +a(g184107 +g184109 +S'cut' +p184111 +tp184112 +a(g184109 +g184111 +S'down' +p184113 +tp184114 +a(g184111 +g184113 +S'by' +p184115 +tp184116 +a(g184113 +g184115 +S'a' +p184117 +tp184118 +a(g184115 +g184117 +S'few' +p184119 +tp184120 +a(g184117 +g184119 +S'inches' +p184121 +tp184122 +a(g184119 +g184121 +S'along' +p184123 +tp184124 +a(g184121 +g184123 +S'the' +p184125 +tp184126 +a(g184123 +g184125 +S'bottom,' +p184127 +tp184128 +a(g184125 +g184127 +S'removing' +p184129 +tp184130 +a(g184127 +g184129 +S"ginevra's" +p184131 +tp184132 +a(g184129 +g184131 +S'hands.' +p184133 +tp184134 +a(g184131 +g184133 +S'a' +p184135 +tp184136 +a(g184133 +g184135 +S'drawing' +p184137 +tp184138 +a(g184135 +g184137 +S'by' +p184139 +tp184140 +a(g184137 +g184139 +S'leonardo' +p184141 +tp184142 +a(g184139 +g184141 +S'survives' +p184143 +tp184144 +a(g184141 +g184143 +S'that' +p184145 +tp184146 +a(g184143 +g184145 +S'suggests' +p184147 +tp184148 +a(g184145 +g184147 +S'their' +p184149 +tp184150 +a(g184147 +g184149 +S'appearance—lightly' +p184151 +tp184152 +a(g184149 +g184151 +S'cradled' +p184153 +tp184154 +a(g184151 +g184153 +S'at' +p184155 +tp184156 +a(g184153 +g184155 +S'her' +p184157 +tp184158 +a(g184155 +g184157 +S'waist' +p184159 +tp184160 +a(g184157 +g184159 +S'and' +p184161 +tp184162 +a(g184159 +g184161 +S'holding' +p184163 +tp184164 +a(g184161 +g184163 +S'a' +p184165 +tp184166 +a(g184163 +g184165 +S'small' +p184167 +tp184168 +a(g184165 +g184167 +S'sprig,' +p184169 +tp184170 +a(g184167 +g184169 +S'perhaps' +p184171 +tp184172 +a(g184169 +g184171 +S'a' +p184173 +tp184174 +a(g184171 +g184173 +S'pink,' +p184175 +tp184176 +a(g184173 +g184175 +S'a' +p184177 +tp184178 +a(g184175 +g184177 +S'flower' +p184179 +tp184180 +a(g184177 +g184179 +S'commonly' +p184181 +tp184182 +a(g184179 +g184181 +S'used' +p184183 +tp184184 +a(g184181 +g184183 +S'in' +p184185 +tp184186 +a(g184183 +g184185 +S'renaissance' +p184187 +tp184188 +a(g184185 +g184187 +S'portraits' +p184189 +tp184190 +a(g184187 +g184189 +S'to' +p184191 +tp184192 +a(g184189 +g184191 +S'symbolize' +p184193 +tp184194 +a(g184191 +g184193 +S'devotion' +p184195 +tp184196 +a(g184193 +g184195 +S'or' +p184197 +tp184198 +a(g184195 +g184197 +S'virtue.' +p184199 +tp184200 +a(g184197 +g184199 +S"ginevra's" +p184201 +tp184202 +a(g184199 +g184201 +S'face' +p184203 +tp184204 +a(g184201 +g184203 +S'is' +p184205 +tp184206 +a(g184203 +g184205 +S'framed' +p184207 +tp184208 +a(g184205 +g184207 +S'by' +p184209 +tp184210 +a(g184207 +g184209 +S'the' +p184211 +tp184212 +a(g184209 +g184211 +S'spiky,' +p184213 +tp184214 +a(g184211 +g184213 +S'evergreen' +p184215 +tp184216 +a(g184213 +g184215 +S'leaves' +p184217 +tp184218 +a(g184215 +g184217 +S'of' +p184219 +tp184220 +a(g184217 +g184219 +S'a' +p184221 +tp184222 +a(g184219 +g184221 +S'juniper' +p184223 +tp184224 +a(g184221 +g184223 +S'bush,' +p184225 +tp184226 +a(g184223 +g184225 +S'the' +p184227 +tp184228 +a(g184225 +g184227 +S'once–brighter' +p184229 +tp184230 +a(g184227 +g184229 +S'green' +p184231 +tp184232 +a(g184229 +g184231 +S'turned' +p184233 +tp184234 +a(g184231 +g184233 +S'brown' +p184235 +tp184236 +a(g184233 +g184235 +S'with' +p184237 +tp184238 +a(g184235 +g184237 +S'age.' +p184239 +tp184240 +a(g184237 +g184239 +S'juniper' +p184241 +tp184242 +a(g184239 +g184241 +S'refers' +p184243 +tp184244 +a(g184241 +g184243 +S'to' +p184245 +tp184246 +a(g184243 +g184245 +S'her' +p184247 +tp184248 +a(g184245 +g184247 +S'chastity,' +p184249 +tp184250 +a(g184247 +g184249 +S'the' +p184251 +tp184252 +a(g184249 +g184251 +S'greatest' +p184253 +tp184254 +a(g184251 +g184253 +S'virtue' +p184255 +tp184256 +a(g184253 +g184255 +S'of' +p184257 +tp184258 +a(g184255 +g184257 +S'a' +p184259 +tp184260 +a(g184257 +g184259 +S'renaissance' +p184261 +tp184262 +a(g184259 +g184261 +S'woman,' +p184263 +tp184264 +a(g184261 +g184263 +S'and' +p184265 +tp184266 +a(g184263 +g184265 +S'puns' +p184267 +tp184268 +a(g184265 +g184267 +S'her' +p184269 +tp184270 +a(g184267 +g184269 +S'name.' +p184271 +tp184272 +a(g184269 +g184271 +S'the' +p184273 +tp184274 +a(g184271 +g184273 +S'italian' +p184275 +tp184276 +a(g184273 +g184275 +S'for' +p184277 +tp184278 +a(g184275 +g184277 +S'juniper' +p184279 +tp184280 +a(g184277 +g184279 +S'is' +p184281 +tp184282 +a(g184279 +g184281 +S'the' +p184283 +tp184284 +a(g184281 +g184283 +S'vast' +p184285 +tp184286 +a(g184283 +g184285 +S'majority' +p184287 +tp184288 +a(g184285 +g184287 +S'of' +p184289 +tp184290 +a(g184287 +g184289 +S'female' +p184291 +tp184292 +a(g184289 +g184291 +S'portraits' +p184293 +tp184294 +a(g184291 +g184293 +S'were' +p184295 +tp184296 +a(g184293 +g184295 +S'commissioned' +p184297 +tp184298 +a(g184295 +g184297 +S'on' +p184299 +tp184300 +a(g184297 +g184299 +S'one' +p184301 +tp184302 +a(g184299 +g184301 +S'of' +p184303 +tp184304 +a(g184301 +g184303 +S'two' +p184305 +tp184306 +a(g184303 +g184305 +S'occasions:' +p184307 +tp184308 +a(g184305 +g184307 +S'betrothal' +p184309 +tp184310 +a(g184307 +g184309 +S'or' +p184311 +tp184312 +a(g184309 +g184311 +S'marriage.' +p184313 +tp184314 +a(g184311 +g184313 +S'wedding' +p184315 +tp184316 +a(g184313 +g184315 +S'portraits' +p184317 +tp184318 +a(g184315 +g184317 +S'tend' +p184319 +tp184320 +a(g184317 +g184319 +S'to' +p184321 +tp184322 +a(g184319 +g184321 +S'be' +p184323 +tp184324 +a(g184321 +g184323 +S'made' +p184325 +tp184326 +a(g184323 +g184325 +S'in' +p184327 +tp184328 +a(g184325 +g184327 +S'pairs,' +p184329 +tp184330 +a(g184327 +g184329 +S'with' +p184331 +tp184332 +a(g184329 +g184331 +S'the' +p184333 +tp184334 +a(g184331 +g184333 +S'woman' +p184335 +tp184336 +a(g184333 +g184335 +S'on' +p184337 +tp184338 +a(g184335 +g184337 +S'the' +p184339 +tp184340 +a(g184337 +g184339 +S'right' +p184341 +tp184342 +a(g184339 +g184341 +S'side.' +p184343 +tp184344 +a(g184341 +g184343 +S'since' +p184345 +tp184346 +a(g184343 +g184345 +S'ginevra' +p184347 +tp184348 +a(g184345 +g184347 +S'faces' +p184349 +tp184350 +a(g184347 +g184349 +S'right,' +p184351 +tp184352 +a(g184349 +g184351 +S'this' +p184353 +tp184354 +a(g184351 +g184353 +S'portrait' +p184355 +tp184356 +a(g184353 +g184355 +S'is' +p184357 +tp184358 +a(g184355 +g184357 +S'more' +p184359 +tp184360 +a(g184357 +g184359 +S'likely' +p184361 +tp184362 +a(g184359 +g184361 +S'to' +p184363 +tp184364 +a(g184361 +g184363 +S'have' +p184365 +tp184366 +a(g184363 +g184365 +S'commemorated' +p184367 +tp184368 +a(g184365 +g184367 +S'her' +p184369 +tp184370 +a(g184367 +g184369 +S'engagement.' +p184371 +tp184372 +a(g184369 +g184371 +S'her' +p184373 +tp184374 +a(g184371 +g184373 +S'lack' +p184375 +tp184376 +a(g184373 +g184375 +S'of' +p184377 +tp184378 +a(g184375 +g184377 +S'obvious' +p184379 +tp184380 +a(g184377 +g184379 +S'finery,' +p184381 +tp184382 +a(g184379 +g184381 +S'however,' +p184383 +tp184384 +a(g184381 +g184383 +S'is' +p184385 +tp184386 +a(g184383 +g184385 +S'somewhat' +p184387 +tp184388 +a(g184385 +g184387 +S'surprising.' +p184389 +tp184390 +a(g184387 +g184389 +S'jewels,' +p184391 +tp184392 +a(g184389 +g184391 +S'luxurious' +p184393 +tp184394 +a(g184391 +g184393 +S'brocades,' +p184395 +tp184396 +a(g184393 +g184395 +S'and' +p184397 +tp184398 +a(g184395 +g184397 +S'elaborate' +p184399 +tp184400 +a(g184397 +g184399 +S'dresses' +p184401 +tp184402 +a(g184399 +g184401 +S'were' +p184403 +tp184404 +a(g184401 +g184403 +S'part' +p184405 +tp184406 +a(g184403 +g184405 +S'of' +p184407 +tp184408 +a(g184405 +g184407 +S'dowry' +p184409 +tp184410 +a(g184407 +g184409 +S'exchanges' +p184411 +tp184412 +a(g184409 +g184411 +S'and' +p184413 +tp184414 +a(g184411 +g184413 +S'displayed' +p184415 +tp184416 +a(g184413 +g184415 +S'a' +p184417 +tp184418 +a(g184415 +g184417 +S"family's" +p184419 +tp184420 +a(g184417 +g184419 +S'wealth.' +p184421 +tp184422 +a(g184419 +g184421 +S'ginevra' +p184423 +tp184424 +a(g184421 +g184423 +S"de'" +p184425 +tp184426 +a(g184423 +g184425 +S"benci's" +p184427 +tp184428 +a(g184425 +g184427 +S'portrait' +p184429 +tp184430 +a(g184427 +g184429 +S'is' +p184431 +tp184432 +a(g184429 +g184431 +S'this' +p184433 +tp184434 +a(g184431 +g184433 +S'small' +p184435 +tp184436 +a(g184433 +g184435 +S'panel,' +p184437 +tp184438 +a(g184435 +g184437 +S'along' +p184439 +tp184440 +a(g184437 +g184439 +S'with' +p184441 +tp184442 +a(g184439 +g184441 +S'here' +p184443 +tp184444 +a(g184441 +g184443 +S'the' +p184445 +tp184446 +a(g184443 +g184445 +S'three' +p184447 +tp184448 +a(g184445 +g184447 +S'temptations' +p184449 +tp184450 +a(g184447 +g184449 +S'of' +p184451 +tp184452 +a(g184449 +g184451 +S'christ,' +p184453 +tp184454 +a(g184451 +g184453 +S'described' +p184455 +tp184456 +a(g184453 +g184455 +S'in' +p184457 +tp184458 +a(g184455 +g184457 +S'the' +p184459 +tp184460 +a(g184457 +g184459 +S'gospels' +p184461 +tp184462 +a(g184459 +g184461 +S'of' +p184463 +tp184464 +a(g184461 +g184463 +S'matthew' +p184465 +tp184466 +a(g184463 +g184465 +S'and' +p184467 +tp184468 +a(g184465 +g184467 +S'luke,' +p184469 +tp184470 +a(g184467 +g184469 +S'are' +p184471 +tp184472 +a(g184469 +g184471 +S'illustrated' +p184473 +tp184474 +a(g184471 +g184473 +S'with' +p184475 +tp184476 +a(g184473 +g184475 +S'great' +p184477 +tp184478 +a(g184475 +g184477 +S'narrative' +p184479 +tp184480 +a(g184477 +g184479 +S'delight.' +p184481 +tp184482 +a(g184479 +g184481 +S'in' +p184483 +tp184484 +a(g184481 +g184483 +S'the' +p184485 +tp184486 +a(g184483 +g184485 +S'foreground,' +p184487 +tp184488 +a(g184485 +g184487 +S'the' +p184489 +tp184490 +a(g184487 +g184489 +S'devil,' +p184491 +tp184492 +a(g184489 +g184491 +S'horned' +p184493 +tp184494 +a(g184491 +g184493 +S'and' +p184495 +tp184496 +a(g184493 +g184495 +S'with' +p184497 +tp184498 +a(g184495 +g184497 +S"demon's" +p184499 +tp184500 +a(g184497 +g184499 +S'feet' +p184501 +tp184502 +a(g184499 +g184501 +S'though' +p184503 +tp184504 +a(g184501 +g184503 +S'clad' +p184505 +tp184506 +a(g184503 +g184505 +S'in' +p184507 +tp184508 +a(g184505 +g184507 +S'a' +p184509 +tp184510 +a(g184507 +g184509 +S"monk's" +p184511 +tp184512 +a(g184509 +g184511 +S'robe,' +p184513 +tp184514 +a(g184511 +g184513 +S'tempts' +p184515 +tp184516 +a(g184513 +g184515 +S'the' +p184517 +tp184518 +a(g184515 +g184517 +S'hungry' +p184519 +tp184520 +a(g184517 +g184519 +S'christ' +p184521 +tp184522 +a(g184519 +g184521 +S'to' +p184523 +tp184524 +a(g184521 +g184523 +S'turn' +p184525 +tp184526 +a(g184523 +g184525 +S'stones' +p184527 +tp184528 +a(g184525 +g184527 +S'into' +p184529 +tp184530 +a(g184527 +g184529 +S'bread.' +p184531 +tp184532 +a(g184529 +g184531 +S'in' +p184533 +tp184534 +a(g184531 +g184533 +S'the' +p184535 +tp184536 +a(g184533 +g184535 +S'distance' +p184537 +tp184538 +a(g184535 +g184537 +S'at' +p184539 +tp184540 +a(g184537 +g184539 +S'left' +p184541 +tp184542 +a(g184539 +g184541 +S'he' +p184543 +tp184544 +a(g184541 +g184543 +S'offers' +p184545 +tp184546 +a(g184543 +g184545 +S'the' +p184547 +tp184548 +a(g184545 +g184547 +S'kingdoms' +p184549 +tp184550 +a(g184547 +g184549 +S'of' +p184551 +tp184552 +a(g184549 +g184551 +S'the' +p184553 +tp184554 +a(g184551 +g184553 +S'world' +p184555 +tp184556 +a(g184553 +g184555 +S'from' +p184557 +tp184558 +a(g184555 +g184557 +S'a' +p184559 +tp184560 +a(g184557 +g184559 +S'mountain' +p184561 +tp184562 +a(g184559 +g184561 +S'top;' +p184563 +tp184564 +a(g184561 +g184563 +S'and' +p184565 +tp184566 +a(g184563 +g184565 +S'on' +p184567 +tp184568 +a(g184565 +g184567 +S'the' +p184569 +tp184570 +a(g184567 +g184569 +S'right,' +p184571 +tp184572 +a(g184569 +g184571 +S'from' +p184573 +tp184574 +a(g184571 +g184573 +S'the' +p184575 +tp184576 +a(g184573 +g184575 +S'pinnacle' +p184577 +tp184578 +a(g184575 +g184577 +S'of' +p184579 +tp184580 +a(g184577 +g184579 +S'the' +p184581 +tp184582 +a(g184579 +g184581 +S'temple' +p184583 +tp184584 +a(g184581 +g184583 +S'in' +p184585 +tp184586 +a(g184583 +g184585 +S'jerusalem,' +p184587 +tp184588 +a(g184585 +g184587 +S'the' +p184589 +tp184590 +a(g184587 +g184589 +S'devil' +p184591 +tp184592 +a(g184589 +g184591 +S'challenges' +p184593 +tp184594 +a(g184591 +g184593 +S'christ' +p184595 +tp184596 +a(g184593 +g184595 +S'to' +p184597 +tp184598 +a(g184595 +g184597 +S'hurl' +p184599 +tp184600 +a(g184597 +g184599 +S'himself' +p184601 +tp184602 +a(g184599 +g184601 +S'down' +p184603 +tp184604 +a(g184601 +g184603 +S'without' +p184605 +tp184606 +a(g184603 +g184605 +S'injury.' +p184607 +tp184608 +a(g184605 +g184607 +S'the' +p184609 +tp184610 +a(g184607 +g184609 +S'dramatic' +p184611 +tp184612 +a(g184609 +g184611 +S'encounter' +p184613 +tp184614 +a(g184611 +g184613 +S'is' +p184615 +tp184616 +a(g184613 +g184615 +S'set' +p184617 +tp184618 +a(g184615 +g184617 +S'in' +p184619 +tp184620 +a(g184617 +g184619 +S'a' +p184621 +tp184622 +a(g184619 +g184621 +S'landscape' +p184623 +tp184624 +a(g184621 +g184623 +S'typical,' +p184625 +tp184626 +a(g184623 +g184625 +S'not' +p184627 +tp184628 +a(g184625 +g184627 +S'of' +p184629 +tp184630 +a(g184627 +g184629 +S'the' +p184631 +tp184632 +a(g184629 +g184631 +S'biblical' +p184633 +tp184634 +a(g184631 +g184633 +S'wilderness' +p184635 +tp184636 +a(g184633 +g184635 +S'described' +p184637 +tp184638 +a(g184635 +g184637 +S'in' +p184639 +tp184640 +a(g184637 +g184639 +S'the' +p184641 +tp184642 +a(g184639 +g184641 +S'gospels,' +p184643 +tp184644 +a(g184641 +g184643 +S'but' +p184645 +tp184646 +a(g184643 +g184645 +S'of' +p184647 +tp184648 +a(g184645 +g184647 +S'a' +p184649 +tp184650 +a(g184647 +g184649 +S'northern' +p184651 +tp184652 +a(g184649 +g184651 +S'town.' +p184653 +tp184654 +a(g184651 +g184653 +S'the' +p184655 +tp184656 +a(g184653 +g184655 +S'soft' +p184657 +tp184658 +a(g184655 +g184657 +S'air' +p184659 +tp184660 +a(g184657 +g184659 +S'fades' +p184661 +tp184662 +a(g184659 +g184661 +S'to' +p184663 +tp184664 +a(g184661 +g184663 +S'blue' +p184665 +tp184666 +a(g184663 +g184665 +S'in' +p184667 +tp184668 +a(g184665 +g184667 +S'the' +p184669 +tp184670 +a(g184667 +g184669 +S'distance,' +p184671 +tp184672 +a(g184669 +g184671 +S'helping' +p184673 +tp184674 +a(g184671 +g184673 +S'the' +p184675 +tp184676 +a(g184673 +g184675 +S'eye' +p184677 +tp184678 +a(g184675 +g184677 +S'to' +p184679 +tp184680 +a(g184677 +g184679 +S'see' +p184681 +tp184682 +a(g184679 +g184681 +S'the' +p184683 +tp184684 +a(g184681 +g184683 +S'recession' +p184685 +tp184686 +a(g184683 +g184685 +S'of' +p184687 +tp184688 +a(g184685 +g184687 +S'space.' +p184689 +tp184690 +a(g184687 +g184689 +S'the' +p184691 +tp184692 +a(g184689 +g184691 +S'composition' +p184693 +tp184694 +a(g184691 +g184693 +S'may' +p184695 +tp184696 +a(g184693 +g184695 +S'have' +p184697 +tp184698 +a(g184695 +g184697 +S'been' +p184699 +tp184700 +a(g184697 +g184699 +S'based' +p184701 +tp184702 +a(g184699 +g184701 +S'on' +p184703 +tp184704 +a(g184701 +g184703 +S'models' +p184705 +tp184706 +a(g184703 +g184705 +S'from' +p184707 +tp184708 +a(g184705 +g184707 +S'manuscript' +p184709 +tp184710 +a(g184707 +g184709 +S'illumination.' +p184711 +tp184712 +a(g184709 +g184711 +S'while' +p184713 +tp184714 +a(g184711 +g184713 +S'in' +p184715 +tp184716 +a(g184713 +g184715 +S'spain,' +p184717 +tp184718 +a(g184715 +g184717 +S'juan' +p184719 +tp184720 +a(g184717 +g184719 +S'de' +p184721 +tp184722 +a(g184719 +g184721 +S"flandes's" +p184723 +tp184724 +a(g184721 +g184723 +S'style' +p184725 +tp184726 +a(g184723 +g184725 +S'became' +p184727 +tp184728 +a(g184725 +g184727 +S'broader' +p184729 +tp184730 +a(g184727 +g184729 +S'and' +p184731 +tp184732 +a(g184729 +g184731 +S'less' +p184733 +tp184734 +a(g184731 +g184733 +S'delicate;' +p184735 +tp184736 +a(g184733 +g184735 +S'though' +p184737 +tp184738 +a(g184735 +g184737 +S'he' +p184739 +tp184740 +a(g184737 +g184739 +S'later' +p184741 +tp184742 +a(g184739 +g184741 +S'painted' +p184743 +tp184744 +a(g184741 +g184743 +S'larger' +p184745 +tp184746 +a(g184743 +g184745 +S'works,' +p184747 +tp184748 +a(g184745 +g184747 +S'he' +p184749 +tp184750 +a(g184747 +g184749 +S'continued' +p184751 +tp184752 +a(g184749 +g184751 +S'to' +p184753 +tp184754 +a(g184751 +g184753 +S'delight' +p184755 +tp184756 +a(g184753 +g184755 +S'in' +p184757 +tp184758 +a(g184755 +g184757 +S'narrative' +p184759 +tp184760 +a(g184757 +g184759 +S'detail.' +p184761 +tp184762 +a(g184759 +g184761 +S'crawford' +p184763 +tp184764 +a(g184761 +g184763 +S'notch' +p184765 +tp184766 +a(g184763 +g184765 +S'gained' +p184767 +tp184768 +a(g184765 +g184767 +S'notoriety' +p184769 +tp184770 +a(g184767 +g184769 +S'in' +p184771 +tp184772 +a(g184769 +g184771 +S'1826' +p184773 +tp184774 +a(g184771 +g184773 +S'when' +p184775 +tp184776 +a(g184773 +g184775 +S'a' +p184777 +tp184778 +a(g184775 +g184777 +S'catastrophic' +p184779 +tp184780 +a(g184777 +g184779 +S'avalanche' +p184781 +tp184782 +a(g184779 +g184781 +S'took' +p184783 +tp184784 +a(g184781 +g184783 +S'nine' +p184785 +tp184786 +a(g184783 +g184785 +S'lives.' +p184787 +tp184788 +a(g184785 +g184787 +S'nathaniel' +p184789 +tp184790 +a(g184787 +g184789 +S'hawthorne' +p184791 +tp184792 +a(g184789 +g184791 +S'wrote' +p184793 +tp184794 +a(g184791 +g184793 +S'a' +p184795 +tp184796 +a(g184793 +g184795 +S'short' +p184797 +tp184798 +a(g184795 +g184797 +S'story' +p184799 +tp184800 +a(g184797 +g184799 +S'commemorating' +p184801 +tp184802 +a(g184799 +g184801 +S'the' +p184803 +tp184804 +a(g184801 +g184803 +S'tragedy,' +p184805 +tp184806 +a(g184803 +g184805 +S'which' +p184807 +tp184808 +a(g184805 +g184807 +S'may' +p184809 +tp184810 +a(g184807 +g184809 +S'have' +p184811 +tp184812 +a(g184809 +g184811 +S'piqued' +p184813 +tp184814 +a(g184811 +g184813 +S"cole's" +p184815 +tp184816 +a(g184813 +g184815 +S'interest' +p184817 +tp184818 +a(g184815 +g184817 +S'in' +p184819 +tp184820 +a(g184817 +g184819 +S'the' +p184821 +tp184822 +a(g184819 +g184821 +S'new' +p184823 +tp184824 +a(g184821 +g184823 +S'hampshire' +p184825 +tp184826 +a(g184823 +g184825 +S'site.' +p184827 +tp184828 +a(g184825 +g184827 +S'rather' +p184829 +tp184830 +a(g184827 +g184829 +S'than' +p184831 +tp184832 +a(g184829 +g184831 +S'concentrating' +p184833 +tp184834 +a(g184831 +g184833 +S'on' +p184835 +tp184836 +a(g184833 +g184835 +S'the' +p184837 +tp184838 +a(g184835 +g184837 +S'human' +p184839 +tp184840 +a(g184837 +g184839 +S'drama,' +p184841 +tp184842 +a(g184839 +g184841 +S'the' +p184843 +tp184844 +a(g184841 +g184843 +S'artist' +p184845 +tp184846 +a(g184843 +g184845 +S'minimized' +p184847 +tp184848 +a(g184845 +g184847 +S'figurative' +p184849 +tp184850 +a(g184847 +g184849 +S'elements' +p184851 +tp184852 +a(g184849 +g184851 +S'to' +p184853 +tp184854 +a(g184851 +g184853 +S'underscore' +p184855 +tp184856 +a(g184853 +g184855 +S"man's" +p184857 +tp184858 +a(g184855 +g184857 +S'insignificance' +p184859 +tp184860 +a(g184857 +g184859 +S'and' +p184861 +tp184862 +a(g184859 +g184861 +S'vulnerability' +p184863 +tp184864 +a(g184861 +g184863 +S'in' +p184865 +tp184866 +a(g184863 +g184865 +S'the' +p184867 +tp184868 +a(g184865 +g184867 +S'face' +p184869 +tp184870 +a(g184867 +g184869 +S'of' +p184871 +tp184872 +a(g184869 +g184871 +S"nature's" +p184873 +tp184874 +a(g184871 +g184873 +S'unleashed' +p184875 +tp184876 +a(g184873 +g184875 +S'fury.' +p184877 +tp184878 +a(g184875 +g184877 +S'amid' +p184879 +tp184880 +a(g184877 +g184879 +S'a' +p184881 +tp184882 +a(g184879 +g184881 +S'seemingly' +p184883 +tp184884 +a(g184881 +g184883 +S'idyllic' +p184885 +tp184886 +a(g184883 +g184885 +S'autumnal' +p184887 +tp184888 +a(g184885 +g184887 +S'setting,' +p184889 +tp184890 +a(g184887 +g184889 +S'the' +p184891 +tp184892 +a(g184889 +g184891 +S'barely' +p184893 +tp184894 +a(g184891 +g184893 +S'discernible' +p184895 +tp184896 +a(g184893 +g184895 +S'settlers,' +p184897 +tp184898 +a(g184895 +g184897 +S'a' +p184899 +tp184900 +a(g184897 +g184899 +S'lone' +p184901 +tp184902 +a(g184899 +g184901 +S'rider,' +p184903 +tp184904 +a(g184901 +g184903 +S'and' +p184905 +tp184906 +a(g184903 +g184905 +S'the' +p184907 +tp184908 +a(g184905 +g184907 +S'stagecoach' +p184909 +tp184910 +a(g184907 +g184909 +S'passengers' +p184911 +tp184912 +a(g184909 +g184911 +S'all' +p184913 +tp184914 +a(g184911 +g184913 +S'seem' +p184915 +tp184916 +a(g184913 +g184915 +S'oblivious' +p184917 +tp184918 +a(g184915 +g184917 +S'to' +p184919 +tp184920 +a(g184917 +g184919 +S'the' +p184921 +tp184922 +a(g184919 +g184921 +S'impending' +p184923 +tp184924 +a(g184921 +g184923 +S'cataclysm.' +p184925 +tp184926 +a(g184923 +g184925 +S'only' +p184927 +tp184928 +a(g184925 +g184927 +S'the' +p184929 +tp184930 +a(g184927 +g184929 +S'brooding' +p184931 +tp184932 +a(g184929 +g184931 +S'storm' +p184933 +tp184934 +a(g184931 +g184933 +S'clouds' +p184935 +tp184936 +a(g184933 +g184935 +S'gathering' +p184937 +tp184938 +a(g184935 +g184937 +S'at' +p184939 +tp184940 +a(g184937 +g184939 +S'the' +p184941 +tp184942 +a(g184939 +g184941 +S'upper' +p184943 +tp184944 +a(g184941 +g184943 +S'left' +p184945 +tp184946 +a(g184943 +g184945 +S'offer' +p184947 +tp184948 +a(g184945 +g184947 +S'a' +p184949 +tp184950 +a(g184947 +g184949 +S'portentous' +p184951 +tp184952 +a(g184949 +g184951 +S'hint' +p184953 +tp184954 +a(g184951 +g184953 +S'of' +p184955 +tp184956 +a(g184953 +g184955 +S'the' +p184957 +tp184958 +a(g184955 +g184957 +S'disaster' +p184959 +tp184960 +a(g184957 +g184959 +S'to' +p184961 +tp184962 +a(g184959 +g184961 +S'come.' +p184963 +tp184964 +a(g184961 +g184963 +S'in' +p184965 +tp184966 +a(g184963 +g184965 +S'addition' +p184967 +tp184968 +a(g184965 +g184967 +S'to' +p184969 +tp184970 +a(g184967 +g184969 +S'its' +p184971 +tp184972 +a(g184969 +g184971 +S'oblique' +p184973 +tp184974 +a(g184971 +g184973 +S'reference' +p184975 +tp184976 +a(g184973 +g184975 +S'to' +p184977 +tp184978 +a(g184975 +g184977 +S'a' +p184979 +tp184980 +a(g184977 +g184979 +S'specific' +p184981 +tp184982 +a(g184979 +g184981 +S'historical' +p184983 +tp184984 +a(g184981 +g184983 +S'event,' +p184985 +tp184986 +a(g184983 +g184985 +S'barye' +p184987 +tp184988 +a(g184985 +g184987 +S'challenged' +p184989 +tp184990 +a(g184987 +g184989 +S'tradition' +p184991 +tp184992 +a(g184989 +g184991 +S'when' +p184993 +tp184994 +a(g184991 +g184993 +S'he' +p184995 +tp184996 +a(g184993 +g184995 +S'submitted' +p184997 +tp184998 +a(g184995 +g184997 +S'his' +p184999 +tp185000 +a(g184997 +g184999 +S'savage' +p185001 +tp185002 +a(g184999 +g185001 +S'animal' +p185003 +tp185004 +a(g185001 +g185003 +S'sculptures' +p185005 +tp185006 +a(g185003 +g185005 +S'to' +p185007 +tp185008 +a(g185005 +g185007 +S'the' +p185009 +tp185010 +a(g185007 +g185009 +S'paris' +p185011 +tp185012 +a(g185009 +g185011 +S'salon' +p185013 +tp185014 +a(g185011 +g185013 +S'in' +p185015 +tp185016 +a(g185013 +g185015 +S'the' +p185017 +tp185018 +a(g185015 +g185017 +S'1830s.' +p185019 +tp185020 +a(g185017 +g185019 +S'at' +p185021 +tp185022 +a(g185019 +g185021 +S'the' +p185023 +tp185024 +a(g185021 +g185023 +S'time,' +p185025 +tp185026 +a(g185023 +g185025 +S'the' +p185027 +tp185028 +a(g185025 +g185027 +S'human' +p185029 +tp185030 +a(g185027 +g185029 +S'figure' +p185031 +tp185032 +a(g185029 +g185031 +S'was' +p185033 +tp185034 +a(g185031 +g185033 +S'considered' +p185035 +tp185036 +a(g185033 +g185035 +S'the' +p185037 +tp185038 +a(g185035 +g185037 +S'noblest' +p185039 +tp185040 +a(g185037 +g185039 +S'subject' +p185041 +tp185042 +a(g185039 +g185041 +S'for' +p185043 +tp185044 +a(g185041 +g185043 +S'high' +p185045 +tp185046 +a(g185043 +g185045 +S'art,' +p185047 +tp185048 +a(g185045 +g185047 +S'while' +p185049 +tp185050 +a(g185047 +g185049 +S'animals—particularly' +p185051 +tp185052 +a(g185049 +g185051 +S'violent' +p185053 +tp185054 +a(g185051 +g185053 +S'animals—ranked' +p185055 +tp185056 +a(g185053 +g185055 +S'at' +p185057 +tp185058 +a(g185055 +g185057 +S'the' +p185059 +tp185060 +a(g185057 +g185059 +S'bottom.' +p185061 +tp185062 +a(g185059 +g185061 +S'despite' +p185063 +tp185064 +a(g185061 +g185063 +S'the' +p185065 +tp185066 +a(g185063 +g185065 +S'lowly' +p185067 +tp185068 +a(g185065 +g185067 +S'status' +p185069 +tp185070 +a(g185067 +g185069 +S'of' +p185071 +tp185072 +a(g185069 +g185071 +S'animals' +p185073 +tp185074 +a(g185071 +g185073 +S'in' +p185075 +tp185076 +a(g185073 +g185075 +S'the' +p185077 +tp185078 +a(g185075 +g185077 +S'artistic' +p185079 +tp185080 +a(g185077 +g185079 +S'hierarchy,' +p185081 +tp185082 +a(g185079 +g185081 +S"barye's" +p185083 +tp185084 +a(g185081 +g185083 +S'predatory' +p185085 +tp185086 +a(g185083 +g185085 +S'tiger' +p185087 +tp185088 +a(g185085 +g185087 +S'received' +p185089 +tp185090 +a(g185087 +g185089 +S'a' +p185091 +tp185092 +a(g185089 +g185091 +S'salon' +p185093 +tp185094 +a(g185091 +g185093 +S'medal' +p185095 +tp185096 +a(g185093 +g185095 +S'in' +p185097 +tp185098 +a(g185095 +g185097 +S'1831.' +p185099 +tp185100 +a(g185097 +g185099 +S'commissions' +p185101 +tp185102 +a(g185099 +g185101 +S'for' +p185103 +tp185104 +a(g185101 +g185103 +S'both' +p185105 +tp185106 +a(g185103 +g185105 +S'tabletop' +p185107 +tp185108 +a(g185105 +g185107 +S'and' +p185109 +tp185110 +a(g185107 +g185109 +S'monumental' +p185111 +tp185112 +a(g185109 +g185111 +S'animal' +p185113 +tp185114 +a(g185111 +g185113 +S'works' +p185115 +tp185116 +a(g185113 +g185115 +S'followed.' +p185117 +tp185118 +a(g185115 +g185117 +S'in' +p185119 +tp185120 +a(g185117 +g185119 +S'the' +p185121 +tp185122 +a(g185119 +g185121 +S'end,' +p185123 +tp185124 +a(g185121 +g185123 +S'the' +p185125 +tp185126 +a(g185123 +g185125 +S'sculptor' +p185127 +tp185128 +a(g185125 +g185127 +S'would' +p185129 +tp185130 +a(g185127 +g185129 +S'become' +p185131 +tp185132 +a(g185129 +g185131 +S'renowned' +p185133 +tp185134 +a(g185131 +g185133 +S'as' +p185135 +tp185136 +a(g185133 +g185135 +S'an' +p185137 +tp185138 +a(g185135 +g185137 +S'tiger' +p185139 +tp185140 +a(g185137 +g185139 +S'surprising' +p185141 +tp185142 +a(g185139 +g185141 +S'an' +p185143 +tp185144 +a(g185141 +g185143 +S'antelope' +p185145 +tp185146 +a(g185143 +g185145 +S'although' +p185147 +tp185148 +a(g185145 +g185147 +S'hunting' +p185149 +tp185150 +a(g185147 +g185149 +S'subjects' +p185151 +tp185152 +a(g185149 +g185151 +S'had' +p185153 +tp185154 +a(g185151 +g185153 +S'been' +p185155 +tp185156 +a(g185153 +g185155 +S'favored' +p185157 +tp185158 +a(g185155 +g185157 +S'for' +p185159 +tp185160 +a(g185157 +g185159 +S'ornamental' +p185161 +tp185162 +a(g185159 +g185161 +S'sculpture' +p185163 +tp185164 +a(g185161 +g185163 +S'in' +p185165 +tp185166 +a(g185163 +g185165 +S'the' +p185167 +tp185168 +a(g185165 +g185167 +S'eighteenth' +p185169 +tp185170 +a(g185167 +g185169 +S'century' +p185171 +tp185172 +a(g185169 +g185171 +S'(as' +p185173 +tp185174 +a(g185171 +g185173 +S'in' +p185175 +tp185176 +a(g185173 +g185175 +S'the' +p185177 +tp185178 +a(g185175 +g185177 +S"gallery's" +p185179 +tp185180 +a(g185177 +g185179 +S'this' +p185181 +tp185182 +a(g185179 +g185181 +S'painting' +p185183 +tp185184 +a(g185181 +g185183 +S'is' +p185185 +tp185186 +a(g185183 +g185185 +S'an' +p185187 +tp185188 +a(g185185 +g185187 +S'outstanding' +p185189 +tp185190 +a(g185187 +g185189 +S'example' +p185191 +tp185192 +a(g185189 +g185191 +S'of' +p185193 +tp185194 +a(g185191 +g185193 +S'the' +p185195 +tp185196 +a(g185193 +g185195 +S'abstract' +p185197 +tp185198 +a(g185195 +g185197 +S'elegance' +p185199 +tp185200 +a(g185197 +g185199 +S'characteristic' +p185201 +tp185202 +a(g185199 +g185201 +S'of' +p185203 +tp185204 +a(g185201 +g185203 +S"rogier's" +p185205 +tp185206 +a(g185203 +g185205 +S'late' +p185207 +tp185208 +a(g185205 +g185207 +S'portraits.' +p185209 +tp185210 +a(g185207 +g185209 +S'although' +p185211 +tp185212 +a(g185209 +g185211 +S'the' +p185213 +tp185214 +a(g185211 +g185213 +S'identity' +p185215 +tp185216 +a(g185213 +g185215 +S'of' +p185217 +tp185218 +a(g185215 +g185217 +S'the' +p185219 +tp185220 +a(g185217 +g185219 +S'sitter' +p185221 +tp185222 +a(g185219 +g185221 +S'is' +p185223 +tp185224 +a(g185221 +g185223 +S'unknown,' +p185225 +tp185226 +a(g185223 +g185225 +S'her' +p185227 +tp185228 +a(g185225 +g185227 +S'air' +p185229 +tp185230 +a(g185227 +g185229 +S'of' +p185231 +tp185232 +a(g185229 +g185231 +S'self–conscious' +p185233 +tp185234 +a(g185231 +g185233 +S'dignity' +p185235 +tp185236 +a(g185233 +g185235 +S'suggests' +p185237 +tp185238 +a(g185235 +g185237 +S'that' +p185239 +tp185240 +a(g185237 +g185239 +S'she' +p185241 +tp185242 +a(g185239 +g185241 +S'is' +p185243 +tp185244 +a(g185241 +g185243 +S'a' +p185245 +tp185246 +a(g185243 +g185245 +S'member' +p185247 +tp185248 +a(g185245 +g185247 +S'of' +p185249 +tp185250 +a(g185247 +g185249 +S'the' +p185251 +tp185252 +a(g185249 +g185251 +S'nobility.' +p185253 +tp185254 +a(g185251 +g185253 +S'her' +p185255 +tp185256 +a(g185253 +g185255 +S'costume' +p185257 +tp185258 +a(g185255 +g185257 +S'and' +p185259 +tp185260 +a(g185257 +g185259 +S'severly' +p185261 +tp185262 +a(g185259 +g185261 +S'plucked' +p185263 +tp185264 +a(g185261 +g185263 +S'eyebrows' +p185265 +tp185266 +a(g185263 +g185265 +S'and' +p185267 +tp185268 +a(g185265 +g185267 +S'hairline' +p185269 +tp185270 +a(g185267 +g185269 +S'are' +p185271 +tp185272 +a(g185269 +g185271 +S'typical' +p185273 +tp185274 +a(g185271 +g185273 +S'of' +p185275 +tp185276 +a(g185273 +g185275 +S'those' +p185277 +tp185278 +a(g185275 +g185277 +S'favored' +p185279 +tp185280 +a(g185277 +g185279 +S'by' +p185281 +tp185282 +a(g185279 +g185281 +S'highly' +p185283 +tp185284 +a(g185281 +g185283 +S'placed' +p185285 +tp185286 +a(g185283 +g185285 +S'ladies' +p185287 +tp185288 +a(g185285 +g185287 +S'of' +p185289 +tp185290 +a(g185287 +g185289 +S'the' +p185291 +tp185292 +a(g185289 +g185291 +S'burgundian' +p185293 +tp185294 +a(g185291 +g185293 +S'court.' +p185295 +tp185296 +a(g185293 +g185295 +S'the' +p185297 +tp185298 +a(g185295 +g185297 +S'stylish' +p185299 +tp185300 +a(g185297 +g185299 +S'costume' +p185301 +tp185302 +a(g185299 +g185301 +S'does' +p185303 +tp185304 +a(g185301 +g185303 +S'not' +p185305 +tp185306 +a(g185303 +g185305 +S'distract' +p185307 +tp185308 +a(g185305 +g185307 +S'attention' +p185309 +tp185310 +a(g185307 +g185309 +S'from' +p185311 +tp185312 +a(g185309 +g185311 +S'the' +p185313 +tp185314 +a(g185311 +g185313 +S'sitter.' +p185315 +tp185316 +a(g185313 +g185315 +S'the' +p185317 +tp185318 +a(g185315 +g185317 +S'dress,' +p185319 +tp185320 +a(g185317 +g185319 +S'with' +p185321 +tp185322 +a(g185319 +g185321 +S'its' +p185323 +tp185324 +a(g185321 +g185323 +S'dark' +p185325 +tp185326 +a(g185323 +g185325 +S'bands' +p185327 +tp185328 +a(g185325 +g185327 +S'of' +p185329 +tp185330 +a(g185327 +g185329 +S'fur,' +p185331 +tp185332 +a(g185329 +g185331 +S'almost' +p185333 +tp185334 +a(g185331 +g185333 +S'merges' +p185335 +tp185336 +a(g185333 +g185335 +S'with' +p185337 +tp185338 +a(g185335 +g185337 +S'the' +p185339 +tp185340 +a(g185337 +g185339 +S'background.' +p185341 +tp185342 +a(g185339 +g185341 +S'the' +p185343 +tp185344 +a(g185341 +g185343 +S'spreading' +p185345 +tp185346 +a(g185343 +g185345 +S'headdress' +p185347 +tp185348 +a(g185345 +g185347 +S'frames' +p185349 +tp185350 +a(g185347 +g185349 +S'and' +p185351 +tp185352 +a(g185349 +g185351 +S'focuses' +p185353 +tp185354 +a(g185351 +g185353 +S'attention' +p185355 +tp185356 +a(g185353 +g185355 +S'upon' +p185357 +tp185358 +a(g185355 +g185357 +S'her' +p185359 +tp185360 +a(g185357 +g185359 +S'face.' +p185361 +tp185362 +a(g185359 +g185361 +S'light' +p185363 +tp185364 +a(g185361 +g185363 +S'falls' +p185365 +tp185366 +a(g185363 +g185365 +S'with' +p185367 +tp185368 +a(g185365 +g185367 +S'exquisite' +p185369 +tp185370 +a(g185367 +g185369 +S'beauty' +p185371 +tp185372 +a(g185369 +g185371 +S'along' +p185373 +tp185374 +a(g185371 +g185373 +S'the' +p185375 +tp185376 +a(g185373 +g185375 +S'creases' +p185377 +tp185378 +a(g185375 +g185377 +S'of' +p185379 +tp185380 +a(g185377 +g185379 +S'the' +p185381 +tp185382 +a(g185379 +g185381 +S'sheer' +p185383 +tp185384 +a(g185381 +g185383 +S'veiling' +p185385 +tp185386 +a(g185383 +g185385 +S'over' +p185387 +tp185388 +a(g185385 +g185387 +S'her' +p185389 +tp185390 +a(g185387 +g185389 +S'head,' +p185391 +tp185392 +a(g185389 +g185391 +S'and' +p185393 +tp185394 +a(g185391 +g185393 +S'gentle' +p185395 +tp185396 +a(g185393 +g185395 +S'shadows' +p185397 +tp185398 +a(g185395 +g185397 +S'mark' +p185399 +tp185400 +a(g185397 +g185399 +S'her' +p185401 +tp185402 +a(g185399 +g185401 +S'fine' +p185403 +tp185404 +a(g185401 +g185403 +S'bone' +p185405 +tp185406 +a(g185403 +g185405 +S'structure.' +p185407 +tp185408 +a(g185405 +g185407 +S'in' +p185409 +tp185410 +a(g185407 +g185409 +S'contrast' +p185411 +tp185412 +a(g185409 +g185411 +S'to' +p185413 +tp185414 +a(g185411 +g185413 +S'the' +p185415 +tp185416 +a(g185413 +g185415 +S'spareness' +p185417 +tp185418 +a(g185415 +g185417 +S'of' +p185419 +tp185420 +a(g185417 +g185419 +S'execution' +p185421 +tp185422 +a(g185419 +g185421 +S'in' +p185423 +tp185424 +a(g185421 +g185423 +S'most' +p185425 +tp185426 +a(g185423 +g185425 +S'of' +p185427 +tp185428 +a(g185425 +g185427 +S'the' +p185429 +tp185430 +a(g185427 +g185429 +S'painting,' +p185431 +tp185432 +a(g185429 +g185431 +S'the' +p185433 +tp185434 +a(g185431 +g185433 +S'gold' +p185435 +tp185436 +a(g185433 +g185435 +S'filigree' +p185437 +tp185438 +a(g185435 +g185437 +S'of' +p185439 +tp185440 +a(g185437 +g185439 +S'her' +p185441 +tp185442 +a(g185439 +g185441 +S'belt' +p185443 +tp185444 +a(g185441 +g185443 +S'buckle' +p185445 +tp185446 +a(g185443 +g185445 +S'is' +p185447 +tp185448 +a(g185445 +g185447 +S'rendered' +p185449 +tp185450 +a(g185447 +g185449 +S'with' +p185451 +tp185452 +a(g185449 +g185451 +S'meticulous' +p185453 +tp185454 +a(g185451 +g185453 +S'precision.' +p185455 +tp185456 +a(g185453 +g185455 +S'the' +p185457 +tp185458 +a(g185455 +g185457 +S'scarlet' +p185459 +tp185460 +a(g185457 +g185459 +S'belt' +p185461 +tp185462 +a(g185459 +g185461 +S'serves' +p185463 +tp185464 +a(g185461 +g185463 +S'as' +p185465 +tp185466 +a(g185463 +g185465 +S'a' +p185467 +tp185468 +a(g185465 +g185467 +S'foil' +p185469 +tp185470 +a(g185467 +g185469 +S'to' +p185471 +tp185472 +a(g185469 +g185471 +S'set' +p185473 +tp185474 +a(g185471 +g185473 +S'off' +p185475 +tp185476 +a(g185473 +g185475 +S'her' +p185477 +tp185478 +a(g185475 +g185477 +S'delicately' +p185479 +tp185480 +a(g185477 +g185479 +S'clasped' +p185481 +tp185482 +a(g185479 +g185481 +S'hands.' +p185483 +tp185484 +a(g185481 +g185483 +S'rogier' +p185485 +tp185486 +a(g185483 +g185485 +S'excelled' +p185487 +tp185488 +a(g185485 +g185487 +S'as' +p185489 +tp185490 +a(g185487 +g185489 +S'a' +p185491 +tp185492 +a(g185489 +g185491 +S'portrait' +p185493 +tp185494 +a(g185491 +g185493 +S'painter' +p185495 +tp185496 +a(g185493 +g185495 +S'because' +p185497 +tp185498 +a(g185495 +g185497 +S'he' +p185499 +tp185500 +a(g185497 +g185499 +S'so' +p185501 +tp185502 +a(g185499 +g185501 +S'vividly' +p185503 +tp185504 +a(g185501 +g185503 +S'presented' +p185505 +tp185506 +a(g185503 +g185505 +S'the' +p185507 +tp185508 +a(g185505 +g185507 +S'character' +p185509 +tp185510 +a(g185507 +g185509 +S'of' +p185511 +tp185512 +a(g185509 +g185511 +S'the' +p185513 +tp185514 +a(g185511 +g185513 +S'persons' +p185515 +tp185516 +a(g185513 +g185515 +S'he' +p185517 +tp185518 +a(g185515 +g185517 +S'portrayed.' +p185519 +tp185520 +a(g185517 +g185519 +S'the' +p185521 +tp185522 +a(g185519 +g185521 +S'downcast' +p185523 +tp185524 +a(g185521 +g185523 +S'eyes,' +p185525 +tp185526 +a(g185523 +g185525 +S'the' +p185527 +tp185528 +a(g185525 +g185527 +S'firmly' +p185529 +tp185530 +a(g185527 +g185529 +S'set' +p185531 +tp185532 +a(g185529 +g185531 +S'lips,' +p185533 +tp185534 +a(g185531 +g185533 +S'and' +p185535 +tp185536 +a(g185533 +g185535 +S'the' +p185537 +tp185538 +a(g185535 +g185537 +S'tense' +p185539 +tp185540 +a(g185537 +g185539 +S'fingers' +p185541 +tp185542 +a(g185539 +g185541 +S'reflect' +p185543 +tp185544 +a(g185541 +g185543 +S'this' +p185545 +tp185546 +a(g185543 +g185545 +S"woman's" +p185547 +tp185548 +a(g185545 +g185547 +S'mental' +p185549 +tp185550 +a(g185547 +g185549 +S'concentration.' +p185551 +tp185552 +a(g185549 +g185551 +S'rogier' +p185553 +tp185554 +a(g185551 +g185553 +S'juxtaposed' +p185555 +tp185556 +a(g185553 +g185555 +S'the' +p185557 +tp185558 +a(g185555 +g185557 +S'strong' +p185559 +tp185560 +a(g185557 +g185559 +S'sensation' +p185561 +tp185562 +a(g185559 +g185561 +S'of' +p185563 +tp185564 +a(g185561 +g185563 +S'the' +p185565 +tp185566 +a(g185563 +g185565 +S"sitter's" +p185567 +tp185568 +a(g185565 +g185567 +S'acute' +p185569 +tp185570 +a(g185567 +g185569 +S'mental' +p185571 +tp185572 +a(g185569 +g185571 +S'activity' +p185573 +tp185574 +a(g185571 +g185573 +S'to' +p185575 +tp185576 +a(g185573 +g185575 +S'his' +p185577 +tp185578 +a(g185575 +g185577 +S'rigid' +p185579 +tp185580 +a(g185577 +g185579 +S'control' +p185581 +tp185582 +a(g185579 +g185581 +S'of' +p185583 +tp185584 +a(g185581 +g185583 +S'the' +p185585 +tp185586 +a(g185583 +g185585 +S'composition' +p185587 +tp185588 +a(g185585 +g185587 +S'and' +p185589 +tp185590 +a(g185587 +g185589 +S'the' +p185591 +tp185592 +a(g185589 +g185591 +S'formality' +p185593 +tp185594 +a(g185591 +g185593 +S'of' +p185595 +tp185596 +a(g185593 +g185595 +S'her' +p185597 +tp185598 +a(g185595 +g185597 +S'costume' +p185599 +tp185600 +a(g185597 +g185599 +S'and' +p185601 +tp185602 +a(g185599 +g185601 +S'pose,' +p185603 +tp185604 +a(g185601 +g185603 +S'presenting' +p185605 +tp185606 +a(g185603 +g185605 +S'the' +p185607 +tp185608 +a(g185605 +g185607 +S'viewer' +p185609 +tp185610 +a(g185607 +g185609 +S'with' +p185611 +tp185612 +a(g185609 +g185611 +S'an' +p185613 +tp185614 +a(g185611 +g185613 +S'image' +p185615 +tp185616 +a(g185613 +g185615 +S'of' +p185617 +tp185618 +a(g185615 +g185617 +S'passionate' +p185619 +tp185620 +a(g185617 +g185619 +S'austerity.' +p185621 +tp185622 +a(g185619 +g185621 +S'michel' +p185623 +tp185624 +a(g185621 +g185623 +S'sittow,' +p185625 +tp185626 +a(g185623 +g185625 +S'a' +p185627 +tp185628 +a(g185625 +g185627 +S'northern' +p185629 +tp185630 +a(g185627 +g185629 +S'painter' +p185631 +tp185632 +a(g185629 +g185631 +S'who' +p185633 +tp185634 +a(g185631 +g185633 +S'was' +p185635 +tp185636 +a(g185633 +g185635 +S'born' +p185637 +tp185638 +a(g185635 +g185637 +S'in' +p185639 +tp185640 +a(g185637 +g185639 +S'estonia' +p185641 +tp185642 +a(g185639 +g185641 +S'on' +p185643 +tp185644 +a(g185641 +g185643 +S'the' +p185645 +tp185646 +a(g185643 +g185645 +S'baltic' +p185647 +tp185648 +a(g185645 +g185647 +S'sea' +p185649 +tp185650 +a(g185647 +g185649 +S'but' +p185651 +tp185652 +a(g185649 +g185651 +S'apprenticed' +p185653 +tp185654 +a(g185651 +g185653 +S'in' +p185655 +tp185656 +a(g185653 +g185655 +S'bruges,' +p185657 +tp185658 +a(g185655 +g185657 +S'was' +p185659 +tp185660 +a(g185657 +g185659 +S'an' +p185661 +tp185662 +a(g185659 +g185661 +S'acclaimed' +p185663 +tp185664 +a(g185661 +g185663 +S'portraitist' +p185665 +tp185666 +a(g185663 +g185665 +S'at' +p185667 +tp185668 +a(g185665 +g185667 +S'the' +p185669 +tp185670 +a(g185667 +g185669 +S'spanish' +p185671 +tp185672 +a(g185669 +g185671 +S'court.' +p185673 +tp185674 +a(g185671 +g185673 +S'after' +p185675 +tp185676 +a(g185673 +g185675 +S'queen' +p185677 +tp185678 +a(g185675 +g185677 +S"isabella's" +p185679 +tp185680 +a(g185677 +g185679 +S'death' +p185681 +tp185682 +a(g185679 +g185681 +S'in' +p185683 +tp185684 +a(g185681 +g185683 +S'1504,' +p185685 +tp185686 +a(g185683 +g185685 +S'his' +p185687 +tp185688 +a(g185685 +g185687 +S'peripatetic' +p185689 +tp185690 +a(g185687 +g185689 +S'career' +p185691 +tp185692 +a(g185689 +g185691 +S'took' +p185693 +tp185694 +a(g185691 +g185693 +S'him' +p185695 +tp185696 +a(g185693 +g185695 +S'to' +p185697 +tp185698 +a(g185695 +g185697 +S'several' +p185699 +tp185700 +a(g185697 +g185699 +S'northern' +p185701 +tp185702 +a(g185699 +g185701 +S'european' +p185703 +tp185704 +a(g185701 +g185703 +S'centers,' +p185705 +tp185706 +a(g185703 +g185705 +S'including' +p185707 +tp185708 +a(g185705 +g185707 +S'burgundy,' +p185709 +tp185710 +a(g185707 +g185709 +S'where' +p185711 +tp185712 +a(g185709 +g185711 +S'he' +p185713 +tp185714 +a(g185711 +g185713 +S'probably' +p185715 +tp185716 +a(g185713 +g185715 +S'painted' +p185717 +tp185718 +a(g185715 +g185717 +S'this' +p185719 +tp185720 +a(g185717 +g185719 +S'portrait.' +p185721 +tp185722 +a(g185719 +g185721 +S'the' +p185723 +tp185724 +a(g185721 +g185723 +S'sitter' +p185725 +tp185726 +a(g185723 +g185725 +S'gazes' +p185727 +tp185728 +a(g185725 +g185727 +S'with' +p185729 +tp185730 +a(g185727 +g185729 +S'serious' +p185731 +tp185732 +a(g185729 +g185731 +S'mien,' +p185733 +tp185734 +a(g185731 +g185733 +S'not' +p185735 +tp185736 +a(g185733 +g185735 +S'at' +p185737 +tp185738 +a(g185735 +g185737 +S'the' +p185739 +tp185740 +a(g185737 +g185739 +S'viewer,' +p185741 +tp185742 +a(g185739 +g185741 +S'but' +p185743 +tp185744 +a(g185741 +g185743 +S'at' +p185745 +tp185746 +a(g185743 +g185745 +S'an' +p185747 +tp185748 +a(g185745 +g185747 +S'unseen' +p185749 +tp185750 +a(g185747 +g185749 +S'point' +p185751 +tp185752 +a(g185749 +g185751 +S'beyond' +p185753 +tp185754 +a(g185751 +g185753 +S'the' +p185755 +tp185756 +a(g185753 +g185755 +S"picture's" +p185757 +tp185758 +a(g185755 +g185757 +S'frame.' +p185759 +tp185760 +a(g185757 +g185759 +S'the' +p185761 +tp185762 +a(g185759 +g185761 +S'ornate' +p185763 +tp185764 +a(g185761 +g185763 +S'carpet' +p185765 +tp185766 +a(g185763 +g185765 +S'covering' +p185767 +tp185768 +a(g185765 +g185767 +S'the' +p185769 +tp185770 +a(g185767 +g185769 +S'stone' +p185771 +tp185772 +a(g185769 +g185771 +S'parapet' +p185773 +tp185774 +a(g185771 +g185773 +S'on' +p185775 +tp185776 +a(g185773 +g185775 +S'which' +p185777 +tp185778 +a(g185775 +g185777 +S'his' +p185779 +tp185780 +a(g185777 +g185779 +S'hand' +p185781 +tp185782 +a(g185779 +g185781 +S'rests' +p185783 +tp185784 +a(g185781 +g185783 +S'provided' +p185785 +tp185786 +a(g185783 +g185785 +S'scholars' +p185787 +tp185788 +a(g185785 +g185787 +S'with' +p185789 +tp185790 +a(g185787 +g185789 +S'an' +p185791 +tp185792 +a(g185789 +g185791 +S'important' +p185793 +tp185794 +a(g185791 +g185793 +S'clue' +p185795 +tp185796 +a(g185793 +g185795 +S'that' +p185797 +tp185798 +a(g185795 +g185797 +S'led' +p185799 +tp185800 +a(g185797 +g185799 +S'to' +p185801 +tp185802 +a(g185799 +g185801 +S'the' +p185803 +tp185804 +a(g185801 +g185803 +S'discovery' +p185805 +tp185806 +a(g185803 +g185805 +S'of' +p185807 +tp185808 +a(g185805 +g185807 +S'the' +p185809 +tp185810 +a(g185807 +g185809 +S'object' +p185811 +tp185812 +a(g185809 +g185811 +S'of' +p185813 +tp185814 +a(g185811 +g185813 +S'his' +p185815 +tp185816 +a(g185813 +g185815 +S'concentration' +p185817 +tp185818 +a(g185815 +g185817 +S'--' +p185819 +tp185820 +a(g185817 +g185819 +S'a' +p185821 +tp185822 +a(g185819 +g185821 +S'painting' +p185823 +tp185824 +a(g185821 +g185823 +S'of' +p185825 +tp185826 +a(g185823 +g185825 +S'the' +p185827 +tp185828 +a(g185825 +g185827 +S'madonna' +p185829 +tp185830 +a(g185827 +g185829 +S'and' +p185831 +tp185832 +a(g185829 +g185831 +S'child,' +p185833 +tp185834 +a(g185831 +g185833 +S'of' +p185835 +tp185836 +a(g185833 +g185835 +S'similar' +p185837 +tp185838 +a(g185835 +g185837 +S'dimensions,' +p185839 +tp185840 +a(g185837 +g185839 +S'in' +p185841 +tp185842 +a(g185839 +g185841 +S'the' +p185843 +tp185844 +a(g185841 +g185843 +S'gemäldegalerie' +p185845 +tp185846 +a(g185843 +g185845 +S'in' +p185847 +tp185848 +a(g185845 +g185847 +S'berlin.' +p185849 +tp185850 +a(g185847 +g185849 +S'in' +p185851 +tp185852 +a(g185849 +g185851 +S'that' +p185853 +tp185854 +a(g185851 +g185853 +S'panel' +p185855 +tp185856 +a(g185853 +g185855 +S'a' +p185857 +tp185858 +a(g185855 +g185857 +S'larger' +p185859 +tp185860 +a(g185857 +g185859 +S'portion' +p185861 +tp185862 +a(g185859 +g185861 +S'of' +p185863 +tp185864 +a(g185861 +g185863 +S'the' +p185865 +tp185866 +a(g185863 +g185865 +S'parapet,' +p185867 +tp185868 +a(g185865 +g185867 +S'covered' +p185869 +tp185870 +a(g185867 +g185869 +S'by' +p185871 +tp185872 +a(g185869 +g185871 +S'the' +p185873 +tp185874 +a(g185871 +g185873 +S'same' +p185875 +tp185876 +a(g185873 +g185875 +S'carpet,' +p185877 +tp185878 +a(g185875 +g185877 +S'appears' +p185879 +tp185880 +a(g185877 +g185879 +S'as' +p185881 +tp185882 +a(g185879 +g185881 +S'a' +p185883 +tp185884 +a(g185881 +g185883 +S'support' +p185885 +tp185886 +a(g185883 +g185885 +S'for' +p185887 +tp185888 +a(g185885 +g185887 +S'the' +p185889 +tp185890 +a(g185887 +g185889 +S'christ' +p185891 +tp185892 +a(g185889 +g185891 +S'child.' +p185893 +tp185894 +a(g185891 +g185893 +S'it' +p185895 +tp185896 +a(g185893 +g185895 +S'seems' +p185897 +tp185898 +a(g185895 +g185897 +S'certain' +p185899 +tp185900 +a(g185897 +g185899 +S'that' +p185901 +tp185902 +a(g185899 +g185901 +S'the' +p185903 +tp185904 +a(g185901 +g185903 +S'berlin' +p185905 +tp185906 +a(g185903 +g185905 +S'and' +p185907 +tp185908 +a(g185905 +g185907 +S'washington' +p185909 +tp185910 +a(g185907 +g185909 +S'panels' +p185911 +tp185912 +a(g185909 +g185911 +S'were' +p185913 +tp185914 +a(g185911 +g185913 +S'originally' +p185915 +tp185916 +a(g185913 +g185915 +S'hinged' +p185917 +tp185918 +a(g185915 +g185917 +S'together' +p185919 +tp185920 +a(g185917 +g185919 +S'to' +p185921 +tp185922 +a(g185919 +g185921 +S'form' +p185923 +tp185924 +a(g185921 +g185923 +S'a' +p185925 +tp185926 +a(g185923 +g185925 +S'devotional' +p185927 +tp185928 +a(g185925 +g185927 +S'diptych.' +p185929 +tp185930 +a(g185927 +g185929 +S'circumstantial' +p185931 +tp185932 +a(g185929 +g185931 +S'evidence' +p185933 +tp185934 +a(g185931 +g185933 +S'suggests' +p185935 +tp185936 +a(g185933 +g185935 +S'that' +p185937 +tp185938 +a(g185935 +g185937 +S'the' +p185939 +tp185940 +a(g185937 +g185939 +S'national' +p185941 +tp185942 +a(g185939 +g185941 +S"gallery's" +p185943 +tp185944 +a(g185941 +g185943 +S'portrait' +p185945 +tp185946 +a(g185943 +g185945 +S'represents' +p185947 +tp185948 +a(g185945 +g185947 +S'diego' +p185949 +tp185950 +a(g185947 +g185949 +S'de' +p185951 +tp185952 +a(g185949 +g185951 +S'guevara,' +p185953 +tp185954 +a(g185951 +g185953 +S'a' +p185955 +tp185956 +a(g185953 +g185955 +S'nobleman' +p185957 +tp185958 +a(g185955 +g185957 +S'whose' +p185959 +tp185960 +a(g185957 +g185959 +S'family' +p185961 +tp185962 +a(g185959 +g185961 +S'came' +p185963 +tp185964 +a(g185961 +g185963 +S'from' +p185965 +tp185966 +a(g185963 +g185965 +S'santander' +p185967 +tp185968 +a(g185965 +g185967 +S'in' +p185969 +tp185970 +a(g185967 +g185969 +S'northern' +p185971 +tp185972 +a(g185969 +g185971 +S'spain.' +p185973 +tp185974 +a(g185971 +g185973 +S'for' +p185975 +tp185976 +a(g185973 +g185975 +S'forty' +p185977 +tp185978 +a(g185975 +g185977 +S'years' +p185979 +tp185980 +a(g185977 +g185979 +S'don' +p185981 +tp185982 +a(g185979 +g185981 +S'diego' +p185983 +tp185984 +a(g185981 +g185983 +S'was' +p185985 +tp185986 +a(g185983 +g185985 +S'a' +p185987 +tp185988 +a(g185985 +g185987 +S'valued' +p185989 +tp185990 +a(g185987 +g185989 +S'member' +p185991 +tp185992 +a(g185989 +g185991 +S'of' +p185993 +tp185994 +a(g185991 +g185993 +S'the' +p185995 +tp185996 +a(g185993 +g185995 +S'habsburg' +p185997 +tp185998 +a(g185995 +g185997 +S'court' +p185999 +tp186000 +a(g185997 +g185999 +S'in' +p186001 +tp186002 +a(g185999 +g186001 +S'burgundy.' +p186003 +tp186004 +a(g186001 +g186003 +S'supporting' +p186005 +tp186006 +a(g186003 +g186005 +S'this' +p186007 +tp186008 +a(g186005 +g186007 +S'identity' +p186009 +tp186010 +a(g186007 +g186009 +S'is' +p186011 +tp186012 +a(g186009 +g186011 +S'the' +p186013 +tp186014 +a(g186011 +g186013 +S'embroidered' +p186015 +tp186016 +a(g186013 +g186015 +S'cross' +p186017 +tp186018 +a(g186015 +g186017 +S'of' +p186019 +tp186020 +a(g186017 +g186019 +S'the' +p186021 +tp186022 +a(g186019 +g186021 +S'spanish' +p186023 +tp186024 +a(g186021 +g186023 +S'order' +p186025 +tp186026 +a(g186023 +g186025 +S'of' +p186027 +tp186028 +a(g186025 +g186027 +S'calatrava' +p186029 +tp186030 +a(g186027 +g186029 +S'on' +p186031 +tp186032 +a(g186029 +g186031 +S'his' +p186033 +tp186034 +a(g186031 +g186033 +S'golden' +p186035 +tp186036 +a(g186033 +g186035 +S'doublet;' +p186037 +tp186038 +a(g186035 +g186037 +S'after' +p186039 +tp186040 +a(g186037 +g186039 +S'serving' +p186041 +tp186042 +a(g186039 +g186041 +S'in' +p186043 +tp186044 +a(g186041 +g186043 +S'numerous' +p186045 +tp186046 +a(g186043 +g186045 +S'positions' +p186047 +tp186048 +a(g186045 +g186047 +S'of' +p186049 +tp186050 +a(g186047 +g186049 +S'trust' +p186051 +tp186052 +a(g186049 +g186051 +S'in' +p186053 +tp186054 +a(g186051 +g186053 +S'the' +p186055 +tp186056 +a(g186053 +g186055 +S'households' +p186057 +tp186058 +a(g186055 +g186057 +S'of' +p186059 +tp186060 +a(g186057 +g186059 +S'philip' +p186061 +tp186062 +a(g186059 +g186061 +S'the' +p186063 +tp186064 +a(g186061 +g186063 +S'fair' +p186065 +tp186066 +a(g186063 +g186065 +S'and' +p186067 +tp186068 +a(g186065 +g186067 +S'charles' +p186069 +tp186070 +a(g186067 +g186069 +S'v,' +p186071 +tp186072 +a(g186069 +g186071 +S'don' +p186073 +tp186074 +a(g186071 +g186073 +S'diego' +p186075 +tp186076 +a(g186073 +g186075 +S'was' +p186077 +tp186078 +a(g186075 +g186077 +S'appointed' +p186079 +tp186080 +a(g186077 +g186079 +S'to' +p186081 +tp186082 +a(g186079 +g186081 +S'the' +p186083 +tp186084 +a(g186081 +g186083 +S'wardenship' +p186085 +tp186086 +a(g186083 +g186085 +S'of' +p186087 +tp186088 +a(g186085 +g186087 +S'that' +p186089 +tp186090 +a(g186087 +g186089 +S'order.' +p186091 +tp186092 +a(g186089 +g186091 +S'once' +p186093 +tp186094 +a(g186091 +g186093 +S'thought' +p186095 +tp186096 +a(g186093 +g186095 +S'to' +p186097 +tp186098 +a(g186095 +g186097 +S'be' +p186099 +tp186100 +a(g186097 +g186099 +S'the' +p186101 +tp186102 +a(g186099 +g186101 +S'work' +p186103 +tp186104 +a(g186101 +g186103 +S'of' +p186105 +tp186106 +a(g186103 +g186105 +S'pontormo,' +p186107 +tp186108 +a(g186105 +g186107 +S'most' +p186109 +tp186110 +a(g186107 +g186109 +S'scholars' +p186111 +tp186112 +a(g186109 +g186111 +S'now' +p186113 +tp186114 +a(g186111 +g186113 +S'agree' +p186115 +tp186116 +a(g186113 +g186115 +S'this' +p186117 +tp186118 +a(g186115 +g186117 +S'is' +p186119 +tp186120 +a(g186117 +g186119 +S'an' +p186121 +tp186122 +a(g186119 +g186121 +S'early' +p186123 +tp186124 +a(g186121 +g186123 +S'painting' +p186125 +tp186126 +a(g186123 +g186125 +S'by' +p186127 +tp186128 +a(g186125 +g186127 +S'bronzino,' +p186129 +tp186130 +a(g186127 +g186129 +S'who' +p186131 +tp186132 +a(g186129 +g186131 +S'apprenticed' +p186133 +tp186134 +a(g186131 +g186133 +S'in' +p186135 +tp186136 +a(g186133 +g186135 +S'pontormo’s' +p186137 +tp186138 +a(g186135 +g186137 +S'workshop.' +p186139 +tp186140 +a(g186137 +g186139 +S'the' +p186141 +tp186142 +a(g186139 +g186141 +S'virgin’s' +p186143 +tp186144 +a(g186141 +g186143 +S'symmetrically' +p186145 +tp186146 +a(g186143 +g186145 +S'oval' +p186147 +tp186148 +a(g186145 +g186147 +S'face' +p186149 +tp186150 +a(g186147 +g186149 +S'resembles' +p186151 +tp186152 +a(g186149 +g186151 +S'pontormo’s' +p186153 +tp186154 +a(g186151 +g186153 +S'madonnas,' +p186155 +tp186156 +a(g186153 +g186155 +S'but' +p186157 +tp186158 +a(g186155 +g186157 +S'other' +p186159 +tp186160 +a(g186157 +g186159 +S'elements' +p186161 +tp186162 +a(g186159 +g186161 +S'point' +p186163 +tp186164 +a(g186161 +g186163 +S'to' +p186165 +tp186166 +a(g186163 +g186165 +S'bronzino’s' +p186167 +tp186168 +a(g186165 +g186167 +S'own' +p186169 +tp186170 +a(g186167 +g186169 +S'emerging' +p186171 +tp186172 +a(g186169 +g186171 +S'style,' +p186173 +tp186174 +a(g186171 +g186173 +S'particularly' +p186175 +tp186176 +a(g186173 +g186175 +S'his' +p186177 +tp186178 +a(g186175 +g186177 +S'use' +p186179 +tp186180 +a(g186177 +g186179 +S'of' +p186181 +tp186182 +a(g186179 +g186181 +S'large' +p186183 +tp186184 +a(g186181 +g186183 +S'areas' +p186185 +tp186186 +a(g186183 +g186185 +S'of' +p186187 +tp186188 +a(g186185 +g186187 +S'color' +p186189 +tp186190 +a(g186187 +g186189 +S'and' +p186191 +tp186192 +a(g186189 +g186191 +S'his' +p186193 +tp186194 +a(g186191 +g186193 +S'isolation' +p186195 +tp186196 +a(g186193 +g186195 +S'of' +p186197 +tp186198 +a(g186195 +g186197 +S'the' +p186199 +tp186200 +a(g186197 +g186199 +S'figures.' +p186201 +tp186202 +a(g186199 +g186201 +S'although' +p186203 +tp186204 +a(g186201 +g186203 +S'they' +p186205 +tp186206 +a(g186203 +g186205 +S'are' +p186207 +tp186208 +a(g186205 +g186207 +S'linked' +p186209 +tp186210 +a(g186207 +g186209 +S'through' +p186211 +tp186212 +a(g186209 +g186211 +S'gesture' +p186213 +tp186214 +a(g186211 +g186213 +S'and' +p186215 +tp186216 +a(g186213 +g186215 +S'gaze,' +p186217 +tp186218 +a(g186215 +g186217 +S'each' +p186219 +tp186220 +a(g186217 +g186219 +S'seems' +p186221 +tp186222 +a(g186219 +g186221 +S'to' +p186223 +tp186224 +a(g186221 +g186223 +S'be' +p186225 +tp186226 +a(g186223 +g186225 +S'framed' +p186227 +tp186228 +a(g186225 +g186227 +S'within' +p186229 +tp186230 +a(g186227 +g186229 +S'an' +p186231 +tp186232 +a(g186229 +g186231 +S'individual' +p186233 +tp186234 +a(g186231 +g186233 +S'space.' +p186235 +tp186236 +a(g186233 +g186235 +S'the' +p186237 +tp186238 +a(g186235 +g186237 +S'holy' +p186239 +tp186240 +a(g186237 +g186239 +S'family' +p186241 +tp186242 +a(g186239 +g186241 +S'almost' +p186243 +tp186244 +a(g186241 +g186243 +S'forms' +p186245 +tp186246 +a(g186243 +g186245 +S'a' +p186247 +tp186248 +a(g186245 +g186247 +S'human' +p186249 +tp186250 +a(g186247 +g186249 +S'still' +p186251 +tp186252 +a(g186249 +g186251 +S'life:' +p186253 +tp186254 +a(g186251 +g186253 +S'the' +p186255 +tp186256 +a(g186253 +g186255 +S'figures' +p186257 +tp186258 +a(g186255 +g186257 +S'are' +p186259 +tp186260 +a(g186257 +g186259 +S'frozen' +p186261 +tp186262 +a(g186259 +g186261 +S'on' +p186263 +tp186264 +a(g186261 +g186263 +S'the' +p186265 +tp186266 +a(g186263 +g186265 +S'surface,' +p186267 +tp186268 +a(g186265 +g186267 +S'their' +p186269 +tp186270 +a(g186267 +g186269 +S'masklike' +p186271 +tp186272 +a(g186269 +g186271 +S'faces' +p186273 +tp186274 +a(g186271 +g186273 +S'lacking' +p186275 +tp186276 +a(g186273 +g186275 +S'humanity.' +p186277 +tp186278 +a(g186275 +g186277 +S'little' +p186279 +tp186280 +a(g186277 +g186279 +S'emotion' +p186281 +tp186282 +a(g186279 +g186281 +S'shows' +p186283 +tp186284 +a(g186281 +g186283 +S'below' +p186285 +tp186286 +a(g186283 +g186285 +S'the' +p186287 +tp186288 +a(g186285 +g186287 +S'hard,' +p186289 +tp186290 +a(g186287 +g186289 +S'smooth' +p186291 +tp186292 +a(g186289 +g186291 +S'paint' +p186293 +tp186294 +a(g186291 +g186293 +S'surface.' +p186295 +tp186296 +a(g186293 +g186295 +S'from' +p186297 +tp186298 +a(g186295 +g186297 +S'a' +p186299 +tp186300 +a(g186297 +g186299 +S'distance,' +p186301 +tp186302 +a(g186299 +g186301 +S'we' +p186303 +tp186304 +a(g186301 +g186303 +S'first' +p186305 +tp186306 +a(g186303 +g186305 +S'see' +p186307 +tp186308 +a(g186305 +g186307 +S'a' +p186309 +tp186310 +a(g186307 +g186309 +S'strong' +p186311 +tp186312 +a(g186309 +g186311 +S'linear' +p186313 +tp186314 +a(g186311 +g186313 +S'pattern' +p186315 +tp186316 +a(g186313 +g186315 +S'emerging' +p186317 +tp186318 +a(g186315 +g186317 +S'from' +p186319 +tp186320 +a(g186317 +g186319 +S'the' +p186321 +tp186322 +a(g186319 +g186321 +S'almost' +p186323 +tp186324 +a(g186321 +g186323 +S'abstract' +p186325 +tp186326 +a(g186323 +g186325 +S'interplay' +p186327 +tp186328 +a(g186325 +g186327 +S'of' +p186329 +tp186330 +a(g186327 +g186329 +S'bright' +p186331 +tp186332 +a(g186329 +g186331 +S'figure' +p186333 +tp186334 +a(g186331 +g186333 +S'shapes' +p186335 +tp186336 +a(g186333 +g186335 +S'and' +p186337 +tp186338 +a(g186335 +g186337 +S'the' +p186339 +tp186340 +a(g186337 +g186339 +S'dark' +p186341 +tp186342 +a(g186339 +g186341 +S'background.' +p186343 +tp186344 +a(g186341 +g186343 +S'yet' +p186345 +tp186346 +a(g186343 +g186345 +S'up' +p186347 +tp186348 +a(g186345 +g186347 +S'close,' +p186349 +tp186350 +a(g186347 +g186349 +S'the' +p186351 +tp186352 +a(g186349 +g186351 +S'work’s' +p186353 +tp186354 +a(g186351 +g186353 +S'precision' +p186355 +tp186356 +a(g186353 +g186355 +S'and' +p186357 +tp186358 +a(g186355 +g186357 +S'particularity' +p186359 +tp186360 +a(g186357 +g186359 +S'dominate.' +p186361 +tp186362 +a(g186359 +g186361 +S'such' +p186363 +tp186364 +a(g186361 +g186363 +S'tension' +p186365 +tp186366 +a(g186363 +g186365 +S'between' +p186367 +tp186368 +a(g186365 +g186367 +S'abstract' +p186369 +tp186370 +a(g186367 +g186369 +S'composition' +p186371 +tp186372 +a(g186369 +g186371 +S'and' +p186373 +tp186374 +a(g186371 +g186373 +S'intense' +p186375 +tp186376 +a(g186373 +g186375 +S'realism' +p186377 +tp186378 +a(g186375 +g186377 +S'in' +p186379 +tp186380 +a(g186377 +g186379 +S'detail' +p186381 +tp186382 +a(g186379 +g186381 +S'accounts' +p186383 +tp186384 +a(g186381 +g186383 +S'for' +p186385 +tp186386 +a(g186383 +g186385 +S'much' +p186387 +tp186388 +a(g186385 +g186387 +S'of' +p186389 +tp186390 +a(g186387 +g186389 +S'the' +p186391 +tp186392 +a(g186389 +g186391 +S'“strangeness”' +p186393 +tp186394 +a(g186391 +g186393 +S'detected' +p186395 +tp186396 +a(g186393 +g186395 +S'in' +p186397 +tp186398 +a(g186395 +g186397 +S'mannerist' +p186399 +tp186400 +a(g186397 +g186399 +S'paintings.' +p186401 +tp186402 +a(g186399 +g186401 +S'isabella' +p186403 +tp186404 +a(g186401 +g186403 +S'brant' +p186405 +tp186406 +a(g186403 +g186405 +S'marchesa' +p186407 +tp186408 +a(g186405 +g186407 +S'balbi' +p186409 +tp186410 +a(g186407 +g186409 +S'descended' +p186411 +tp186412 +a(g186409 +g186411 +S'from' +p186413 +tp186414 +a(g186411 +g186413 +S'the' +p186415 +tp186416 +a(g186413 +g186415 +S'mathers,' +p186417 +tp186418 +a(g186415 +g186417 +S'a' +p186419 +tp186420 +a(g186417 +g186419 +S'family' +p186421 +tp186422 +a(g186419 +g186421 +S'of' +p186423 +tp186424 +a(g186421 +g186423 +S'famous' +p186425 +tp186426 +a(g186423 +g186425 +S'clergymen' +p186427 +tp186428 +a(g186425 +g186427 +S'in' +p186429 +tp186430 +a(g186427 +g186429 +S'colonial' +p186431 +tp186432 +a(g186429 +g186431 +S'massachusetts,' +p186433 +tp186434 +a(g186431 +g186433 +S'mather' +p186435 +tp186436 +a(g186433 +g186435 +S'brown' +p186437 +tp186438 +a(g186435 +g186437 +S'moved' +p186439 +tp186440 +a(g186437 +g186439 +S'permanently' +p186441 +tp186442 +a(g186439 +g186441 +S'to' +p186443 +tp186444 +a(g186441 +g186443 +S'england' +p186445 +tp186446 +a(g186443 +g186445 +S'in' +p186447 +tp186448 +a(g186445 +g186447 +S'1781' +p186449 +tp186450 +a(g186447 +g186449 +S'at' +p186451 +tp186452 +a(g186449 +g186451 +S'the' +p186453 +tp186454 +a(g186451 +g186453 +S'age' +p186455 +tp186456 +a(g186453 +g186455 +S'of' +p186457 +tp186458 +a(g186455 +g186457 +S'twenty.' +p186459 +tp186460 +a(g186457 +g186459 +S'under' +p186461 +tp186462 +a(g186459 +g186461 +S'the' +p186463 +tp186464 +a(g186461 +g186463 +S'tutelage' +p186465 +tp186466 +a(g186463 +g186465 +S'of' +p186467 +tp186468 +a(g186465 +g186467 +S'murray' +p186469 +tp186470 +a(g186467 +g186469 +S'studied' +p186471 +tp186472 +a(g186469 +g186471 +S'law' +p186473 +tp186474 +a(g186471 +g186473 +S'in' +p186475 +tp186476 +a(g186473 +g186475 +S'london' +p186477 +tp186478 +a(g186475 +g186477 +S'from' +p186479 +tp186480 +a(g186477 +g186479 +S'1784' +p186481 +tp186482 +a(g186479 +g186481 +S'to' +p186483 +tp186484 +a(g186481 +g186483 +S'1787' +p186485 +tp186486 +a(g186483 +g186485 +S'before' +p186487 +tp186488 +a(g186485 +g186487 +S'returning' +p186489 +tp186490 +a(g186487 +g186489 +S'to' +p186491 +tp186492 +a(g186489 +g186491 +S'his' +p186493 +tp186494 +a(g186491 +g186493 +S'farm' +p186495 +tp186496 +a(g186493 +g186495 +S'near' +p186497 +tp186498 +a(g186495 +g186497 +S'cambridge,' +p186499 +tp186500 +a(g186497 +g186499 +S'maryland,' +p186501 +tp186502 +a(g186499 +g186501 +S'on' +p186503 +tp186504 +a(g186501 +g186503 +S'the' +p186505 +tp186506 +a(g186503 +g186505 +S'chesapeake' +p186507 +tp186508 +a(g186505 +g186507 +S"bay's" +p186509 +tp186510 +a(g186507 +g186509 +S'eastern' +p186511 +tp186512 +a(g186509 +g186511 +S'shore.' +p186513 +tp186514 +a(g186511 +g186513 +S'he' +p186515 +tp186516 +a(g186513 +g186515 +S'later' +p186517 +tp186518 +a(g186515 +g186517 +S'served' +p186519 +tp186520 +a(g186517 +g186519 +S'in' +p186521 +tp186522 +a(g186519 +g186521 +S'congress' +p186523 +tp186524 +a(g186521 +g186523 +S'and' +p186525 +tp186526 +a(g186523 +g186525 +S'as' +p186527 +tp186528 +a(g186525 +g186527 +S'minister' +p186529 +tp186530 +a(g186527 +g186529 +S'to' +p186531 +tp186532 +a(g186529 +g186531 +S'france.' +p186533 +tp186534 +a(g186531 +g186533 +S'in' +p186535 +tp186536 +a(g186533 +g186535 +S'addition' +p186537 +tp186538 +a(g186535 +g186537 +S'to' +p186539 +tp186540 +a(g186537 +g186539 +S'other' +p186541 +tp186542 +a(g186539 +g186541 +S'prominent' +p186543 +tp186544 +a(g186541 +g186543 +S'americans' +p186545 +tp186546 +a(g186543 +g186545 +S'abroad,' +p186547 +tp186548 +a(g186545 +g186547 +S'such' +p186549 +tp186550 +a(g186547 +g186549 +S'as' +p186551 +tp186552 +a(g186549 +g186551 +S'thomas' +p186553 +tp186554 +a(g186551 +g186553 +S'jefferson,' +p186555 +tp186556 +a(g186553 +g186555 +S"brown's" +p186557 +tp186558 +a(g186555 +g186557 +S'clientele' +p186559 +tp186560 +a(g186557 +g186559 +S'included' +p186561 +tp186562 +a(g186559 +g186561 +S'members' +p186563 +tp186564 +a(g186561 +g186563 +S'of' +p186565 +tp186566 +a(g186563 +g186565 +S'the' +p186567 +tp186568 +a(g186565 +g186567 +S'royal' +p186569 +tp186570 +a(g186567 +g186569 +S'family.' +p186571 +tp186572 +a(g186569 +g186571 +S'this' +p186573 +tp186574 +a(g186571 +g186573 +S'patronage' +p186575 +tp186576 +a(g186573 +g186575 +S'sparked' +p186577 +tp186578 +a(g186575 +g186577 +S'sarcasm' +p186579 +tp186580 +a(g186577 +g186579 +S'from' +p186581 +tp186582 +a(g186579 +g186581 +S'an' +p186583 +tp186584 +a(g186581 +g186583 +S'exasperated,' +p186585 +tp186586 +a(g186583 +g186585 +S'anonymous' +p186587 +tp186588 +a(g186585 +g186587 +S'english' +p186589 +tp186590 +a(g186587 +g186589 +S'painter:' +p186591 +tp186592 +a(g186589 +g186591 +S'"mr.' +p186593 +tp186594 +a(g186591 +g186593 +S'west' +p186595 +tp186596 +a(g186593 +g186595 +S'paints' +p186597 +tp186598 +a(g186595 +g186597 +S'for' +p186599 +tp186600 +a(g186597 +g186599 +S'the' +p186601 +tp186602 +a(g186599 +g186601 +S'court' +p186603 +tp186604 +a(g186601 +g186603 +S'and' +p186605 +tp186606 +a(g186603 +g186605 +S'mr.' +p186607 +tp186608 +a(g186605 +g186607 +S'copley' +p186609 +tp186610 +a(g186607 +g186609 +S'for' +p186611 +tp186612 +a(g186609 +g186611 +S'the' +p186613 +tp186614 +a(g186611 +g186613 +S'city.' +p186615 +tp186616 +a(g186613 +g186615 +S'thus' +p186617 +tp186618 +a(g186615 +g186617 +S'the' +p186619 +tp186620 +a(g186617 +g186619 +S'artists' +p186621 +tp186622 +a(g186619 +g186621 +S'of' +p186623 +tp186624 +a(g186621 +g186623 +S'america' +p186625 +tp186626 +a(g186623 +g186625 +S'are' +p186627 +tp186628 +a(g186625 +g186627 +S'fostered' +p186629 +tp186630 +a(g186627 +g186629 +S'in' +p186631 +tp186632 +a(g186629 +g186631 +S'england,' +p186633 +tp186634 +a(g186631 +g186633 +S'and' +p186635 +tp186636 +a(g186633 +g186635 +S'to' +p186637 +tp186638 +a(g186635 +g186637 +S'complete' +p186639 +tp186640 +a(g186637 +g186639 +S'the' +p186641 +tp186642 +a(g186639 +g186641 +S'wonder,' +p186643 +tp186644 +a(g186641 +g186643 +S'a' +p186645 +tp186646 +a(g186643 +g186645 +S'third' +p186647 +tp186648 +a(g186645 +g186647 +S'american,' +p186649 +tp186650 +a(g186647 +g186649 +S'mr.' +p186651 +tp186652 +a(g186649 +g186651 +S'brown' +p186653 +tp186654 +a(g186651 +g186653 +S'of' +p186655 +tp186656 +a(g186653 +g186655 +S'the' +p186657 +tp186658 +a(g186655 +g186657 +S'humblest' +p186659 +tp186660 +a(g186657 +g186659 +S'pretences,' +p186661 +tp186662 +a(g186659 +g186661 +S'is' +p186663 +tp186664 +a(g186661 +g186663 +S'chosen' +p186665 +tp186666 +a(g186663 +g186665 +S'portrait' +p186667 +tp186668 +a(g186665 +g186667 +S'painter' +p186669 +tp186670 +a(g186667 +g186669 +S'to' +p186671 +tp186672 +a(g186669 +g186671 +S'the' +p186673 +tp186674 +a(g186671 +g186673 +S'duke' +p186675 +tp186676 +a(g186673 +g186675 +S'of' +p186677 +tp186678 +a(g186675 +g186677 +S'york.' +p186679 +tp186680 +a(g186677 +g186679 +S'so' +p186681 +tp186682 +a(g186679 +g186681 +S'much' +p186683 +tp186684 +a(g186681 +g186683 +S'for' +p186685 +tp186686 +a(g186683 +g186685 +S'the' +p186687 +tp186688 +a(g186685 +g186687 +S'thirteen' +p186689 +tp186690 +a(g186687 +g186689 +S'stripes—so' +p186691 +tp186692 +a(g186689 +g186691 +S'much' +p186693 +tp186694 +a(g186691 +g186693 +S'for' +p186695 +tp186696 +a(g186693 +g186695 +S'the' +p186697 +tp186698 +a(g186695 +g186697 +S'duke' +p186699 +tp186700 +a(g186697 +g186699 +S'of' +p186701 +tp186702 +a(g186699 +g186701 +S"york's" +p186703 +tp186704 +a(g186701 +g186703 +S'taste."' +p186705 +tp186706 +a(g186703 +g186705 +S'edward' +p186707 +tp186708 +a(g186705 +g186707 +S"savage's" +p186709 +tp186710 +a(g186707 +g186709 +S"savage's" +p186711 +tp186712 +a(g186709 +g186711 +S'catalogue' +p186713 +tp186714 +a(g186711 +g186713 +S'states' +p186715 +tp186716 +a(g186713 +g186715 +S'that' +p186717 +tp186718 +a(g186715 +g186717 +S"washington's" +p186719 +tp186720 +a(g186717 +g186719 +S'uniform' +p186721 +tp186722 +a(g186719 +g186721 +S'and' +p186723 +tp186724 +a(g186721 +g186723 +S'the' +p186725 +tp186726 +a(g186723 +g186725 +S'papers' +p186727 +tp186728 +a(g186725 +g186727 +S'beneath' +p186729 +tp186730 +a(g186727 +g186729 +S'his' +p186731 +tp186732 +a(g186729 +g186731 +S'hand' +p186733 +tp186734 +a(g186731 +g186733 +S'allude' +p186735 +tp186736 +a(g186733 +g186735 +S'to' +p186737 +tp186738 +a(g186735 +g186737 +S'his' +p186739 +tp186740 +a(g186737 +g186739 +S'"military' +p186741 +tp186742 +a(g186739 +g186741 +S'character"' +p186743 +tp186744 +a(g186741 +g186743 +S'and' +p186745 +tp186746 +a(g186743 +g186745 +S'"presidentship"' +p186747 +tp186748 +a(g186745 +g186747 +S'respectively.' +p186749 +tp186750 +a(g186747 +g186749 +S'with' +p186751 +tp186752 +a(g186749 +g186751 +S'a' +p186753 +tp186754 +a(g186751 +g186753 +S'map' +p186755 +tp186756 +a(g186753 +g186755 +S'before' +p186757 +tp186758 +a(g186755 +g186757 +S'her,' +p186759 +tp186760 +a(g186757 +g186759 +S'martha' +p186761 +tp186762 +a(g186759 +g186761 +S'washington' +p186763 +tp186764 +a(g186761 +g186763 +S'is' +p186765 +tp186766 +a(g186763 +g186765 +S'"pointing' +p186767 +tp186768 +a(g186765 +g186767 +S'with' +p186769 +tp186770 +a(g186767 +g186769 +S'her' +p186771 +tp186772 +a(g186769 +g186771 +S'fan' +p186773 +tp186774 +a(g186771 +g186773 +S'to' +p186775 +tp186776 +a(g186773 +g186775 +S'the' +p186777 +tp186778 +a(g186775 +g186777 +S'grand' +p186779 +tp186780 +a(g186777 +g186779 +S'avenue,"' +p186781 +tp186782 +a(g186779 +g186781 +S'now' +p186783 +tp186784 +a(g186781 +g186783 +S'known' +p186785 +tp186786 +a(g186783 +g186785 +S'as' +p186787 +tp186788 +a(g186785 +g186787 +S'pennsylvania' +p186789 +tp186790 +a(g186787 +g186789 +S'avenue.' +p186791 +tp186792 +a(g186789 +g186791 +S'a' +p186793 +tp186794 +a(g186791 +g186793 +S'servant' +p186795 +tp186796 +a(g186793 +g186795 +S'overdressed' +p186797 +tp186798 +a(g186795 +g186797 +S'in' +p186799 +tp186800 +a(g186797 +g186799 +S'livery' +p186801 +tp186802 +a(g186799 +g186801 +S'and' +p186803 +tp186804 +a(g186801 +g186803 +S'a' +p186805 +tp186806 +a(g186803 +g186805 +S'supposed' +p186807 +tp186808 +a(g186805 +g186807 +S'vista' +p186809 +tp186810 +a(g186807 +g186809 +S'down' +p186811 +tp186812 +a(g186809 +g186811 +S'the' +p186813 +tp186814 +a(g186811 +g186813 +S'potomac' +p186815 +tp186816 +a(g186813 +g186815 +S'complete' +p186817 +tp186818 +a(g186815 +g186817 +S'the' +p186819 +tp186820 +a(g186817 +g186819 +S'imaginary' +p186821 +tp186822 +a(g186819 +g186821 +S'scene.' +p186823 +tp186824 +a(g186821 +g186823 +S"savage's" +p186825 +tp186826 +a(g186823 +g186825 +S'self–taught' +p186827 +tp186828 +a(g186825 +g186827 +S'ability' +p186829 +tp186830 +a(g186827 +g186829 +S'to' +p186831 +tp186832 +a(g186829 +g186831 +S'distinguish' +p186833 +tp186834 +a(g186831 +g186833 +S'between' +p186835 +tp186836 +a(g186833 +g186835 +S'satins,' +p186837 +tp186838 +a(g186835 +g186837 +S'gauzes,' +p186839 +tp186840 +a(g186837 +g186839 +S'and' +p186841 +tp186842 +a(g186839 +g186841 +S'laces' +p186843 +tp186844 +a(g186841 +g186843 +S'is' +p186845 +tp186846 +a(g186843 +g186845 +S'nothing' +p186847 +tp186848 +a(g186845 +g186847 +S'short' +p186849 +tp186850 +a(g186847 +g186849 +S'of' +p186851 +tp186852 +a(g186849 +g186851 +S'astonishing.' +p186853 +tp186854 +a(g186851 +g186853 +S'however,' +p186855 +tp186856 +a(g186853 +g186855 +S'the' +p186857 +tp186858 +a(g186855 +g186857 +S'anatomy' +p186859 +tp186860 +a(g186857 +g186859 +S'alternates' +p186861 +tp186862 +a(g186859 +g186861 +S'between' +p186863 +tp186864 +a(g186861 +g186863 +S'wooden' +p186865 +tp186866 +a(g186863 +g186865 +S'and' +p186867 +tp186868 +a(g186865 +g186867 +S'rubbery,' +p186869 +tp186870 +a(g186867 +g186869 +S'and' +p186871 +tp186872 +a(g186869 +g186871 +S'the' +p186873 +tp186874 +a(g186871 +g186873 +S'family' +p186875 +tp186876 +a(g186873 +g186875 +S'strangely' +p186877 +tp186878 +a(g186875 +g186877 +S'avoids' +p186879 +tp186880 +a(g186877 +g186879 +S'eye' +p186881 +tp186882 +a(g186879 +g186881 +S'contact.' +p186883 +tp186884 +a(g186881 +g186883 +S'despite' +p186885 +tp186886 +a(g186883 +g186885 +S"savage's" +p186887 +tp186888 +a(g186885 +g186887 +S'lack' +p186889 +tp186890 +a(g186887 +g186889 +S'of' +p186891 +tp186892 +a(g186889 +g186891 +S'experience,' +p186893 +tp186894 +a(g186891 +g186893 +S'his' +p186895 +tp186896 +a(g186893 +g186895 +S'huge' +p186897 +tp186898 +a(g186895 +g186897 +S'gilbert' +p186899 +tp186900 +a(g186897 +g186899 +S'stuart' +p186901 +tp186902 +a(g186899 +g186901 +S'achieved' +p186903 +tp186904 +a(g186901 +g186903 +S'fame' +p186905 +tp186906 +a(g186903 +g186905 +S'as' +p186907 +tp186908 +a(g186905 +g186907 +S'a' +p186909 +tp186910 +a(g186907 +g186909 +S'portrait' +p186911 +tp186912 +a(g186909 +g186911 +S'painter' +p186913 +tp186914 +a(g186911 +g186913 +S'in' +p186915 +tp186916 +a(g186913 +g186915 +S'both' +p186917 +tp186918 +a(g186915 +g186917 +S'england' +p186919 +tp186920 +a(g186917 +g186919 +S'and' +p186921 +tp186922 +a(g186919 +g186921 +S'america.' +p186923 +tp186924 +a(g186921 +g186923 +S'when' +p186925 +tp186926 +a(g186923 +g186925 +S'he' +p186927 +tp186928 +a(g186925 +g186927 +S'returned' +p186929 +tp186930 +a(g186927 +g186929 +S'to' +p186931 +tp186932 +a(g186929 +g186931 +S'america' +p186933 +tp186934 +a(g186931 +g186933 +S'from' +p186935 +tp186936 +a(g186933 +g186935 +S'england' +p186937 +tp186938 +a(g186935 +g186937 +S'in' +p186939 +tp186940 +a(g186937 +g186939 +S'1793,' +p186941 +tp186942 +a(g186939 +g186941 +S'he' +p186943 +tp186944 +a(g186941 +g186943 +S'found' +p186945 +tp186946 +a(g186943 +g186945 +S'himself' +p186947 +tp186948 +a(g186945 +g186947 +S'in' +p186949 +tp186950 +a(g186947 +g186949 +S'a' +p186951 +tp186952 +a(g186949 +g186951 +S'homeland' +p186953 +tp186954 +a(g186951 +g186953 +S'that' +p186955 +tp186956 +a(g186953 +g186955 +S'was' +p186957 +tp186958 +a(g186955 +g186957 +S'foreign' +p186959 +tp186960 +a(g186957 +g186959 +S'to' +p186961 +tp186962 +a(g186959 +g186961 +S'him.' +p186963 +tp186964 +a(g186961 +g186963 +S'politically,' +p186965 +tp186966 +a(g186963 +g186965 +S'there' +p186967 +tp186968 +a(g186965 +g186967 +S'was' +p186969 +tp186970 +a(g186967 +g186969 +S'now' +p186971 +tp186972 +a(g186969 +g186971 +S'a' +p186973 +tp186974 +a(g186971 +g186973 +S'united' +p186975 +tp186976 +a(g186973 +g186975 +S'states' +p186977 +tp186978 +a(g186975 +g186977 +S'instead' +p186979 +tp186980 +a(g186977 +g186979 +S'of' +p186981 +tp186982 +a(g186979 +g186981 +S'thirteen' +p186983 +tp186984 +a(g186981 +g186983 +S'separate' +p186985 +tp186986 +a(g186983 +g186985 +S'colonies.' +p186987 +tp186988 +a(g186985 +g186987 +S'artistically,' +p186989 +tp186990 +a(g186987 +g186989 +S'the' +p186991 +tp186992 +a(g186989 +g186991 +S'fashionable' +p186993 +tp186994 +a(g186991 +g186993 +S'style' +p186995 +tp186996 +a(g186993 +g186995 +S'he' +p186997 +tp186998 +a(g186995 +g186997 +S'had' +p186999 +tp187000 +a(g186997 +g186999 +S'adopted' +p187001 +tp187002 +a(g186999 +g187001 +S'for' +p187003 +tp187004 +a(g187001 +g187003 +S'british' +p187005 +tp187006 +a(g187003 +g187005 +S'and' +p187007 +tp187008 +a(g187005 +g187007 +S'irish' +p187009 +tp187010 +a(g187007 +g187009 +S'sitters' +p187011 +tp187012 +a(g187009 +g187011 +S'was' +p187013 +tp187014 +a(g187011 +g187013 +S'highly' +p187015 +tp187016 +a(g187013 +g187015 +S'inappropriate' +p187017 +tp187018 +a(g187015 +g187017 +S'for' +p187019 +tp187020 +a(g187017 +g187019 +S'yankee' +p187021 +tp187022 +a(g187019 +g187021 +S"merchants'" +p187023 +tp187024 +a(g187021 +g187023 +S'forthright' +p187025 +tp187026 +a(g187023 +g187025 +S'tastes.' +p187027 +tp187028 +a(g187025 +g187027 +S'complaining' +p187029 +tp187030 +a(g187027 +g187029 +S'about' +p187031 +tp187032 +a(g187029 +g187031 +S'the' +p187033 +tp187034 +a(g187031 +g187033 +S'literalness' +p187035 +tp187036 +a(g187033 +g187035 +S'required' +p187037 +tp187038 +a(g187035 +g187037 +S'of' +p187039 +tp187040 +a(g187037 +g187039 +S'him' +p187041 +tp187042 +a(g187039 +g187041 +S'in' +p187043 +tp187044 +a(g187041 +g187043 +S'america,' +p187045 +tp187046 +a(g187043 +g187045 +S'stuart' +p187047 +tp187048 +a(g187045 +g187047 +S'quipped,' +p187049 +tp187050 +a(g187047 +g187049 +S'"in' +p187051 +tp187052 +a(g187049 +g187051 +S'england' +p187053 +tp187054 +a(g187051 +g187053 +S'my' +p187055 +tp187056 +a(g187053 +g187055 +S'efforts' +p187057 +tp187058 +a(g187055 +g187057 +S'were' +p187059 +tp187060 +a(g187057 +g187059 +S'compared' +p187061 +tp187062 +a(g187059 +g187061 +S'with' +p187063 +tp187064 +a(g187061 +g187063 +S'those' +p187065 +tp187066 +a(g187063 +g187065 +S'of' +p187067 +tp187068 +a(g187065 +g187067 +S'van' +p187069 +tp187070 +a(g187067 +g187069 +S'dyck,' +p187071 +tp187072 +a(g187069 +g187071 +S'titian,' +p187073 +tp187074 +a(g187071 +g187073 +S'and' +p187075 +tp187076 +a(g187073 +g187075 +S'other' +p187077 +tp187078 +a(g187075 +g187077 +S'great' +p187079 +tp187080 +a(g187077 +g187079 +S'painters—here' +p187081 +tp187082 +a(g187079 +g187081 +S'they' +p187083 +tp187084 +a(g187081 +g187083 +S'are' +p187085 +tp187086 +a(g187083 +g187085 +S'compared' +p187087 +tp187088 +a(g187085 +g187087 +S'with' +p187089 +tp187090 +a(g187087 +g187089 +S'the' +p187091 +tp187092 +a(g187089 +g187091 +S'works' +p187093 +tp187094 +a(g187091 +g187093 +S'of' +p187095 +tp187096 +a(g187093 +g187095 +S'the' +p187097 +tp187098 +a(g187095 +g187097 +S'almighty!"' +p187099 +tp187100 +a(g187097 +g187099 +S'the' +p187101 +tp187102 +a(g187099 +g187101 +S'almighty' +p187103 +tp187104 +a(g187101 +g187103 +S'had' +p187105 +tp187106 +a(g187103 +g187105 +S'given' +p187107 +tp187108 +a(g187105 +g187107 +S'catherine' +p187109 +tp187110 +a(g187107 +g187109 +S'yates' +p187111 +tp187112 +a(g187109 +g187111 +S'a' +p187113 +tp187114 +a(g187111 +g187113 +S'bony' +p187115 +tp187116 +a(g187113 +g187115 +S'face' +p187117 +tp187118 +a(g187115 +g187117 +S'and' +p187119 +tp187120 +a(g187117 +g187119 +S'an' +p187121 +tp187122 +a(g187119 +g187121 +S'appraising' +p187123 +tp187124 +a(g187121 +g187123 +S'character,' +p187125 +tp187126 +a(g187123 +g187125 +S'and' +p187127 +tp187128 +a(g187125 +g187127 +S'that' +p187129 +tp187130 +a(g187127 +g187129 +S'is' +p187131 +tp187132 +a(g187129 +g187131 +S'exactly' +p187133 +tp187134 +a(g187131 +g187133 +S'what' +p187135 +tp187136 +a(g187133 +g187135 +S'stuart' +p187137 +tp187138 +a(g187135 +g187137 +S'had' +p187139 +tp187140 +a(g187137 +g187139 +S'to' +p187141 +tp187142 +a(g187139 +g187141 +S'portray.' +p187143 +tp187144 +a(g187141 +g187143 +S'not' +p187145 +tp187146 +a(g187143 +g187145 +S'wishing' +p187147 +tp187148 +a(g187145 +g187147 +S'to' +p187149 +tp187150 +a(g187147 +g187149 +S'waste' +p187151 +tp187152 +a(g187149 +g187151 +S'time' +p187153 +tp187154 +a(g187151 +g187153 +S'posing' +p187155 +tp187156 +a(g187153 +g187155 +S'for' +p187157 +tp187158 +a(g187155 +g187157 +S'an' +p187159 +tp187160 +a(g187157 +g187159 +S'artist,' +p187161 +tp187162 +a(g187159 +g187161 +S'this' +p187163 +tp187164 +a(g187161 +g187163 +S'wife' +p187165 +tp187166 +a(g187163 +g187165 +S'of' +p187167 +tp187168 +a(g187165 +g187167 +S'a' +p187169 +tp187170 +a(g187167 +g187169 +S'new' +p187171 +tp187172 +a(g187169 +g187171 +S'york' +p187173 +tp187174 +a(g187171 +g187173 +S'importer' +p187175 +tp187176 +a(g187173 +g187175 +S'industriously' +p187177 +tp187178 +a(g187175 +g187177 +S'attends' +p187179 +tp187180 +a(g187177 +g187179 +S'to' +p187181 +tp187182 +a(g187179 +g187181 +S'her' +p187183 +tp187184 +a(g187181 +g187183 +S'sewing.' +p187185 +tp187186 +a(g187183 +g187185 +S'yet' +p187187 +tp187188 +a(g187185 +g187187 +S"stuart's" +p187189 +tp187190 +a(g187187 +g187189 +S'brilliant' +p187191 +tp187192 +a(g187189 +g187191 +S'paint' +p187193 +tp187194 +a(g187191 +g187193 +S'manipulation' +p187195 +tp187196 +a(g187193 +g187195 +S'generates' +p187197 +tp187198 +a(g187195 +g187197 +S'a' +p187199 +tp187200 +a(g187197 +g187199 +S'verve' +p187201 +tp187202 +a(g187199 +g187201 +S'few' +p187203 +tp187204 +a(g187201 +g187203 +S'other' +p187205 +tp187206 +a(g187203 +g187205 +S'artists' +p187207 +tp187208 +a(g187205 +g187207 +S'on' +p187209 +tp187210 +a(g187207 +g187209 +S'either' +p187211 +tp187212 +a(g187209 +g187211 +S'side' +p187213 +tp187214 +a(g187211 +g187213 +S'of' +p187215 +tp187216 +a(g187213 +g187215 +S'the' +p187217 +tp187218 +a(g187215 +g187217 +S'atlantic' +p187219 +tp187220 +a(g187217 +g187219 +S'could' +p187221 +tp187222 +a(g187219 +g187221 +S'have' +p187223 +tp187224 +a(g187221 +g187223 +S'matched.' +p187225 +tp187226 +a(g187223 +g187225 +S'every' +p187227 +tp187228 +a(g187225 +g187227 +S'passage' +p187229 +tp187230 +a(g187227 +g187229 +S'contains' +p187231 +tp187232 +a(g187229 +g187231 +S'some' +p187233 +tp187234 +a(g187231 +g187233 +S'technical' +p187235 +tp187236 +a(g187233 +g187235 +S'tour' +p187237 +tp187238 +a(g187235 +g187237 +S'de' +p187239 +tp187240 +a(g187237 +g187239 +S'force,' +p187241 +tp187242 +a(g187239 +g187241 +S'employing' +p187243 +tp187244 +a(g187241 +g187243 +S'a' +p187245 +tp187246 +a(g187243 +g187245 +S'variety' +p187247 +tp187248 +a(g187245 +g187247 +S'of' +p187249 +tp187250 +a(g187247 +g187249 +S'thick' +p187251 +tp187252 +a(g187249 +g187251 +S'or' +p187253 +tp187254 +a(g187251 +g187253 +S'thin,' +p187255 +tp187256 +a(g187253 +g187255 +S'opaque' +p187257 +tp187258 +a(g187255 +g187257 +S'or' +p187259 +tp187260 +a(g187257 +g187259 +S'translucent' +p187261 +tp187262 +a(g187259 +g187261 +S'oil' +p187263 +tp187264 +a(g187261 +g187263 +S'paints' +p187265 +tp187266 +a(g187263 +g187265 +S'for' +p187267 +tp187268 +a(g187265 +g187267 +S'the' +p187269 +tp187270 +a(g187267 +g187269 +S'fabrics,' +p187271 +tp187272 +a(g187269 +g187271 +S'needle,' +p187273 +tp187274 +a(g187271 +g187273 +S'thimble,' +p187275 +tp187276 +a(g187273 +g187275 +S'wedding' +p187277 +tp187278 +a(g187275 +g187277 +S'band,' +p187279 +tp187280 +a(g187277 +g187279 +S'flesh,' +p187281 +tp187282 +a(g187279 +g187281 +S'and' +p187283 +tp187284 +a(g187281 +g187283 +S'fingernails.' +p187285 +tp187286 +a(g187283 +g187285 +S'it' +p187287 +tp187288 +a(g187285 +g187287 +S'is' +p187289 +tp187290 +a(g187287 +g187289 +S'little' +p187291 +tp187292 +a(g187289 +g187291 +S'wonder' +p187293 +tp187294 +a(g187291 +g187293 +S'that' +p187295 +tp187296 +a(g187293 +g187295 +S'the' +p187297 +tp187298 +a(g187295 +g187297 +S'british' +p187299 +tp187300 +a(g187297 +g187299 +S'superintendent' +p187301 +tp187302 +a(g187299 +g187301 +S'of' +p187303 +tp187304 +a(g187301 +g187303 +S'northeastern' +p187305 +tp187306 +a(g187303 +g187305 +S"america's" +p187307 +tp187308 +a(g187305 +g187307 +S'six' +p187309 +tp187310 +a(g187307 +g187309 +S'indian' +p187311 +tp187312 +a(g187309 +g187311 +S'nations,' +p187313 +tp187314 +a(g187311 +g187313 +S'guy' +p187315 +tp187316 +a(g187313 +g187315 +S'johnson' +p187317 +tp187318 +a(g187315 +g187317 +S'commissioned' +p187319 +tp187320 +a(g187317 +g187319 +S'this' +p187321 +tp187322 +a(g187319 +g187321 +S'impressive' +p187323 +tp187324 +a(g187321 +g187323 +S'portrait' +p187325 +tp187326 +a(g187323 +g187325 +S'in' +p187327 +tp187328 +a(g187325 +g187327 +S'1776' +p187329 +tp187330 +a(g187327 +g187329 +S'while' +p187331 +tp187332 +a(g187329 +g187331 +S'in' +p187333 +tp187334 +a(g187331 +g187333 +S'london' +p187335 +tp187336 +a(g187333 +g187335 +S'to' +p187337 +tp187338 +a(g187335 +g187337 +S'secure' +p187339 +tp187340 +a(g187337 +g187339 +S'that' +p187341 +tp187342 +a(g187339 +g187341 +S'royal' +p187343 +tp187344 +a(g187341 +g187343 +S'appointment.' +p187345 +tp187346 +a(g187343 +g187345 +S'sailing' +p187347 +tp187348 +a(g187345 +g187347 +S'from' +p187349 +tp187350 +a(g187347 +g187349 +S'canada,' +p187351 +tp187352 +a(g187349 +g187351 +S'johnson' +p187353 +tp187354 +a(g187351 +g187353 +S'must' +p187355 +tp187356 +a(g187353 +g187355 +S'have' +p187357 +tp187358 +a(g187355 +g187357 +S'been' +p187359 +tp187360 +a(g187357 +g187359 +S'accompanied' +p187361 +tp187362 +a(g187359 +g187361 +S'by' +p187363 +tp187364 +a(g187361 +g187363 +S'his' +p187365 +tp187366 +a(g187363 +g187365 +S'close' +p187367 +tp187368 +a(g187365 +g187367 +S'friend' +p187369 +tp187370 +a(g187367 +g187369 +S'karonghyontye,' +p187371 +tp187372 +a(g187369 +g187371 +S'a' +p187373 +tp187374 +a(g187371 +g187373 +S'mohawk' +p187375 +tp187376 +a(g187373 +g187375 +S'chief' +p187377 +tp187378 +a(g187375 +g187377 +S'who' +p187379 +tp187380 +a(g187377 +g187379 +S'also' +p187381 +tp187382 +a(g187379 +g187381 +S'went' +p187383 +tp187384 +a(g187381 +g187383 +S'by' +p187385 +tp187386 +a(g187383 +g187385 +S'the' +p187387 +tp187388 +a(g187385 +g187387 +S'english' +p187389 +tp187390 +a(g187387 +g187389 +S'name' +p187391 +tp187392 +a(g187389 +g187391 +S'of' +p187393 +tp187394 +a(g187391 +g187393 +S'david' +p187395 +tp187396 +a(g187393 +g187395 +S'hill.' +p187397 +tp187398 +a(g187395 +g187397 +S'the' +p187399 +tp187400 +a(g187397 +g187399 +S'alliance' +p187401 +tp187402 +a(g187399 +g187401 +S'between' +p187403 +tp187404 +a(g187401 +g187403 +S'british' +p187405 +tp187406 +a(g187403 +g187405 +S'forces' +p187407 +tp187408 +a(g187405 +g187407 +S'and' +p187409 +tp187410 +a(g187407 +g187409 +S'several' +p187411 +tp187412 +a(g187409 +g187411 +S'indian' +p187413 +tp187414 +a(g187411 +g187413 +S'tribes' +p187415 +tp187416 +a(g187413 +g187415 +S'seriously' +p187417 +tp187418 +a(g187415 +g187417 +S'threatened' +p187419 +tp187420 +a(g187417 +g187419 +S'the' +p187421 +tp187422 +a(g187419 +g187421 +S'rebel' +p187423 +tp187424 +a(g187421 +g187423 +S"colonists'" +p187425 +tp187426 +a(g187423 +g187425 +S'chances' +p187427 +tp187428 +a(g187425 +g187427 +S'of' +p187429 +tp187430 +a(g187427 +g187429 +S'victory' +p187431 +tp187432 +a(g187429 +g187431 +S'during' +p187433 +tp187434 +a(g187431 +g187433 +S'the' +p187435 +tp187436 +a(g187433 +g187435 +S'revolutionary' +p187437 +tp187438 +a(g187435 +g187437 +S'war.' +p187439 +tp187440 +a(g187437 +g187439 +S'for' +p187441 +tp187442 +a(g187439 +g187441 +S'this' +p187443 +tp187444 +a(g187441 +g187443 +S'likeness,' +p187445 +tp187446 +a(g187443 +g187445 +S'benjamin' +p187447 +tp187448 +a(g187445 +g187447 +S'west' +p187449 +tp187450 +a(g187447 +g187449 +S'devised' +p187451 +tp187452 +a(g187449 +g187451 +S'a' +p187453 +tp187454 +a(g187451 +g187453 +S'complex' +p187455 +tp187456 +a(g187453 +g187455 +S'allegory.' +p187457 +tp187458 +a(g187455 +g187457 +S'to' +p187459 +tp187460 +a(g187457 +g187459 +S'signify' +p187461 +tp187462 +a(g187459 +g187461 +S"johnson's" +p187463 +tp187464 +a(g187461 +g187463 +S'role' +p187465 +tp187466 +a(g187463 +g187465 +S'as' +p187467 +tp187468 +a(g187465 +g187467 +S'ambassador' +p187469 +tp187470 +a(g187467 +g187469 +S'to' +p187471 +tp187472 +a(g187469 +g187471 +S'the' +p187473 +tp187474 +a(g187471 +g187473 +S'indians,' +p187475 +tp187476 +a(g187473 +g187475 +S'his' +p187477 +tp187478 +a(g187475 +g187477 +S'red-coated' +p187479 +tp187480 +a(g187477 +g187479 +S'uniform' +p187481 +tp187482 +a(g187479 +g187481 +S'is' +p187483 +tp187484 +a(g187481 +g187483 +S'equipped' +p187485 +tp187486 +a(g187483 +g187485 +S'with' +p187487 +tp187488 +a(g187485 +g187487 +S'moccasins,' +p187489 +tp187490 +a(g187487 +g187489 +S'wampum' +p187491 +tp187492 +a(g187489 +g187491 +S'belt,' +p187493 +tp187494 +a(g187491 +g187493 +S'indian' +p187495 +tp187496 +a(g187493 +g187495 +S'blanket,' +p187497 +tp187498 +a(g187495 +g187497 +S'and' +p187499 +tp187500 +a(g187497 +g187499 +S'mohawk' +p187501 +tp187502 +a(g187499 +g187501 +S'cap.' +p187503 +tp187504 +a(g187501 +g187503 +S'karonghyontye' +p187505 +tp187506 +a(g187503 +g187505 +S'points' +p187507 +tp187508 +a(g187505 +g187507 +S'to' +p187509 +tp187510 +a(g187507 +g187509 +S'a' +p187511 +tp187512 +a(g187509 +g187511 +S'peace' +p187513 +tp187514 +a(g187511 +g187513 +S'pipe,' +p187515 +tp187516 +a(g187513 +g187515 +S'while' +p187517 +tp187518 +a(g187515 +g187517 +S'johnson' +p187519 +tp187520 +a(g187517 +g187519 +S'grasps' +p187521 +tp187522 +a(g187519 +g187521 +S'a' +p187523 +tp187524 +a(g187521 +g187523 +S'musket.' +p187525 +tp187526 +a(g187523 +g187525 +S'this' +p187527 +tp187528 +a(g187525 +g187527 +S'suggests' +p187529 +tp187530 +a(g187527 +g187529 +S'that' +p187531 +tp187532 +a(g187529 +g187531 +S'harmony' +p187533 +tp187534 +a(g187531 +g187533 +S'between' +p187535 +tp187536 +a(g187533 +g187535 +S'europeans' +p187537 +tp187538 +a(g187535 +g187537 +S'and' +p187539 +tp187540 +a(g187537 +g187539 +S'indians' +p187541 +tp187542 +a(g187539 +g187541 +S'will' +p187543 +tp187544 +a(g187541 +g187543 +S'be' +p187545 +tp187546 +a(g187543 +g187545 +S'maintained' +p187547 +tp187548 +a(g187545 +g187547 +S'at' +p187549 +tp187550 +a(g187547 +g187549 +S'all' +p187551 +tp187552 +a(g187549 +g187551 +S'costs.' +p187553 +tp187554 +a(g187551 +g187553 +S'the' +p187555 +tp187556 +a(g187553 +g187555 +S'concept' +p187557 +tp187558 +a(g187555 +g187557 +S'of' +p187559 +tp187560 +a(g187557 +g187559 +S'cooperation' +p187561 +tp187562 +a(g187559 +g187561 +S'extends' +p187563 +tp187564 +a(g187561 +g187563 +S'to' +p187565 +tp187566 +a(g187563 +g187565 +S'the' +p187567 +tp187568 +a(g187565 +g187567 +S'background,' +p187569 +tp187570 +a(g187567 +g187569 +S'where' +p187571 +tp187572 +a(g187569 +g187571 +S'an' +p187573 +tp187574 +a(g187571 +g187573 +S'indian' +p187575 +tp187576 +a(g187573 +g187575 +S'family' +p187577 +tp187578 +a(g187575 +g187577 +S'gathers' +p187579 +tp187580 +a(g187577 +g187579 +S'peacefully' +p187581 +tp187582 +a(g187579 +g187581 +S'before' +p187583 +tp187584 +a(g187581 +g187583 +S'a' +p187585 +tp187586 +a(g187583 +g187585 +S'british' +p187587 +tp187588 +a(g187585 +g187587 +S'military' +p187589 +tp187590 +a(g187587 +g187589 +S'tent.' +p187591 +tp187592 +a(g187589 +g187591 +S'west' +p187593 +tp187594 +a(g187591 +g187593 +S'claimed' +p187595 +tp187596 +a(g187593 +g187595 +S'that' +p187597 +tp187598 +a(g187595 +g187597 +S'pennsylvania' +p187599 +tp187600 +a(g187597 +g187599 +S'indians' +p187601 +tp187602 +a(g187599 +g187601 +S'had' +p187603 +tp187604 +a(g187601 +g187603 +S'taught' +p187605 +tp187606 +a(g187603 +g187605 +S'him' +p187607 +tp187608 +a(g187605 +g187607 +S'to' +p187609 +tp187610 +a(g187607 +g187609 +S'mix' +p187611 +tp187612 +a(g187609 +g187611 +S'paints' +p187613 +tp187614 +a(g187611 +g187613 +S'from' +p187615 +tp187616 +a(g187613 +g187615 +S'berries' +p187617 +tp187618 +a(g187615 +g187617 +S'and' +p187619 +tp187620 +a(g187617 +g187619 +S'clays' +p187621 +tp187622 +a(g187619 +g187621 +S'when' +p187623 +tp187624 +a(g187621 +g187623 +S'he' +p187625 +tp187626 +a(g187623 +g187625 +S'was' +p187627 +tp187628 +a(g187625 +g187627 +S'a' +p187629 +tp187630 +a(g187627 +g187629 +S'child.' +p187631 +tp187632 +a(g187629 +g187631 +S'a' +p187633 +tp187634 +a(g187631 +g187633 +S'notably' +p187635 +tp187636 +a(g187633 +g187635 +S'diplomatic' +p187637 +tp187638 +a(g187635 +g187637 +S'man,' +p187639 +tp187640 +a(g187637 +g187639 +S'he' +p187641 +tp187642 +a(g187639 +g187641 +S'served' +p187643 +tp187644 +a(g187641 +g187643 +S'george' +p187645 +tp187646 +a(g187643 +g187645 +S'iii' +p187647 +tp187648 +a(g187645 +g187647 +S'as' +p187649 +tp187650 +a(g187647 +g187649 +S'a' +p187651 +tp187652 +a(g187649 +g187651 +S'court' +p187653 +tp187654 +a(g187651 +g187653 +S'painter' +p187655 +tp187656 +a(g187653 +g187655 +S'while' +p187657 +tp187658 +a(g187655 +g187657 +S'urging' +p187659 +tp187660 +a(g187657 +g187659 +S'the' +p187661 +tp187662 +a(g187659 +g187661 +S'king' +p187663 +tp187664 +a(g187661 +g187663 +S'to' +p187665 +tp187666 +a(g187663 +g187665 +S'grant' +p187667 +tp187668 +a(g187665 +g187667 +S'independence' +p187669 +tp187670 +a(g187667 +g187669 +S'to' +p187671 +tp187672 +a(g187669 +g187671 +S'the' +p187673 +tp187674 +a(g187671 +g187673 +S'colonists!' +p187675 +tp187676 +a(g187673 +g187675 +S'philip,' +p187677 +tp187678 +a(g187675 +g187677 +S'lord' +p187679 +tp187680 +a(g187677 +g187679 +S'wharton' +p187681 +tp187682 +a(g187679 +g187681 +S'this' +p187683 +tp187684 +a(g187681 +g187683 +S'striking' +p187685 +tp187686 +a(g187683 +g187685 +S'portrait' +p187687 +tp187688 +a(g187685 +g187687 +S'is' +p187689 +tp187690 +a(g187687 +g187689 +S'somewhat' +p187691 +tp187692 +a(g187689 +g187691 +S'unorthodox' +p187693 +tp187694 +a(g187691 +g187693 +S'by' +p187695 +tp187696 +a(g187693 +g187695 +S'eighteenth-century' +p187697 +tp187698 +a(g187695 +g187697 +S'british' +p187699 +tp187700 +a(g187697 +g187699 +S'standards.' +p187701 +tp187702 +a(g187699 +g187701 +S'important' +p187703 +tp187704 +a(g187701 +g187703 +S'men' +p187705 +tp187706 +a(g187703 +g187705 +S'seldom' +p187707 +tp187708 +a(g187705 +g187707 +S'were' +p187709 +tp187710 +a(g187707 +g187709 +S'shown' +p187711 +tp187712 +a(g187709 +g187711 +S'with' +p187713 +tp187714 +a(g187711 +g187713 +S'their' +p187715 +tp187716 +a(g187713 +g187715 +S'arms' +p187717 +tp187718 +a(g187715 +g187717 +S'crossed' +p187719 +tp187720 +a(g187717 +g187719 +S'over' +p187721 +tp187722 +a(g187719 +g187721 +S'their' +p187723 +tp187724 +a(g187721 +g187723 +S'chests,' +p187725 +tp187726 +a(g187723 +g187725 +S'because' +p187727 +tp187728 +a(g187725 +g187727 +S'that' +p187729 +tp187730 +a(g187727 +g187729 +S'gesture' +p187731 +tp187732 +a(g187729 +g187731 +S'denoted' +p187733 +tp187734 +a(g187731 +g187733 +S'casual' +p187735 +tp187736 +a(g187733 +g187735 +S'nonchalance.' +p187737 +tp187738 +a(g187735 +g187737 +S'here,' +p187739 +tp187740 +a(g187737 +g187739 +S'the' +p187741 +tp187742 +a(g187739 +g187741 +S'informal' +p187743 +tp187744 +a(g187741 +g187743 +S'pose' +p187745 +tp187746 +a(g187743 +g187745 +S'is' +p187747 +tp187748 +a(g187745 +g187747 +S'linked' +p187749 +tp187750 +a(g187747 +g187749 +S'to' +p187751 +tp187752 +a(g187749 +g187751 +S'a' +p187753 +tp187754 +a(g187751 +g187753 +S'setting' +p187755 +tp187756 +a(g187753 +g187755 +S'of' +p187757 +tp187758 +a(g187755 +g187757 +S'the' +p187759 +tp187760 +a(g187757 +g187759 +S'most' +p187761 +tp187762 +a(g187759 +g187761 +S'formal' +p187763 +tp187764 +a(g187761 +g187763 +S'pretensions—a' +p187765 +tp187766 +a(g187763 +g187765 +S'massive' +p187767 +tp187768 +a(g187765 +g187767 +S'boulder' +p187769 +tp187770 +a(g187767 +g187769 +S'and' +p187771 +tp187772 +a(g187769 +g187771 +S'stormy' +p187773 +tp187774 +a(g187771 +g187773 +S'sky—normally' +p187775 +tp187776 +a(g187773 +g187775 +S'used' +p187777 +tp187778 +a(g187775 +g187777 +S'to' +p187779 +tp187780 +a(g187777 +g187779 +S'signify' +p187781 +tp187782 +a(g187779 +g187781 +S'a' +p187783 +tp187784 +a(g187781 +g187783 +S'military' +p187785 +tp187786 +a(g187783 +g187785 +S'commander' +p187787 +tp187788 +a(g187785 +g187787 +S'in' +p187789 +tp187790 +a(g187787 +g187789 +S'the' +p187791 +tp187792 +a(g187789 +g187791 +S'midst' +p187793 +tp187794 +a(g187791 +g187793 +S'of' +p187795 +tp187796 +a(g187793 +g187795 +S'battle.' +p187797 +tp187798 +a(g187795 +g187797 +S'this' +p187799 +tp187800 +a(g187797 +g187799 +S'extraordinary' +p187801 +tp187802 +a(g187799 +g187801 +S'combination' +p187803 +tp187804 +a(g187801 +g187803 +S'of' +p187805 +tp187806 +a(g187803 +g187805 +S'relaxation' +p187807 +tp187808 +a(g187805 +g187807 +S'amid' +p187809 +tp187810 +a(g187807 +g187809 +S'grandeur' +p187811 +tp187812 +a(g187809 +g187811 +S'may' +p187813 +tp187814 +a(g187811 +g187813 +S'someday' +p187815 +tp187816 +a(g187813 +g187815 +S'help' +p187817 +tp187818 +a(g187815 +g187817 +S'identify' +p187819 +tp187820 +a(g187817 +g187819 +S'the' +p187821 +tp187822 +a(g187819 +g187821 +S'sitter.' +p187823 +tp187824 +a(g187821 +g187823 +S'the' +p187825 +tp187826 +a(g187823 +g187825 +S"painting's" +p187827 +tp187828 +a(g187825 +g187827 +S'earliest' +p187829 +tp187830 +a(g187827 +g187829 +S'record' +p187831 +tp187832 +a(g187829 +g187831 +S'dates' +p187833 +tp187834 +a(g187831 +g187833 +S'only' +p187835 +tp187836 +a(g187833 +g187835 +S'to' +p187837 +tp187838 +a(g187835 +g187837 +S'1916,' +p187839 +tp187840 +a(g187837 +g187839 +S'when' +p187841 +tp187842 +a(g187839 +g187841 +S'it' +p187843 +tp187844 +a(g187841 +g187843 +S'was' +p187845 +tp187846 +a(g187843 +g187845 +S'sold' +p187847 +tp187848 +a(g187845 +g187847 +S'from' +p187849 +tp187850 +a(g187847 +g187849 +S'an' +p187851 +tp187852 +a(g187849 +g187851 +S'aristocratic' +p187853 +tp187854 +a(g187851 +g187853 +S'derbyshire' +p187855 +tp187856 +a(g187853 +g187855 +S'estate' +p187857 +tp187858 +a(g187855 +g187857 +S'as' +p187859 +tp187860 +a(g187857 +g187859 +S'the' +p187861 +tp187862 +a(g187859 +g187861 +S'likeness' +p187863 +tp187864 +a(g187861 +g187863 +S'of' +p187865 +tp187866 +a(g187863 +g187865 +S'an' +p187867 +tp187868 +a(g187865 +g187867 +S'ancestor' +p187869 +tp187870 +a(g187867 +g187869 +S'"who' +p187871 +tp187872 +a(g187869 +g187871 +S'was' +p187873 +tp187874 +a(g187871 +g187873 +S'a' +p187875 +tp187876 +a(g187873 +g187875 +S'famous' +p187877 +tp187878 +a(g187875 +g187877 +S'admiral."' +p187879 +tp187880 +a(g187877 +g187879 +S'this' +p187881 +tp187882 +a(g187879 +g187881 +S'claim' +p187883 +tp187884 +a(g187881 +g187883 +S'may' +p187885 +tp187886 +a(g187883 +g187885 +S'be' +p187887 +tp187888 +a(g187885 +g187887 +S'inaccurate' +p187889 +tp187890 +a(g187887 +g187889 +S'as' +p187891 +tp187892 +a(g187889 +g187891 +S'this' +p187893 +tp187894 +a(g187891 +g187893 +S'man' +p187895 +tp187896 +a(g187893 +g187895 +S'is' +p187897 +tp187898 +a(g187895 +g187897 +S'not' +p187899 +tp187900 +a(g187897 +g187899 +S'wearing' +p187901 +tp187902 +a(g187899 +g187901 +S'a' +p187903 +tp187904 +a(g187901 +g187903 +S'naval' +p187905 +tp187906 +a(g187903 +g187905 +S'uniform.' +p187907 +tp187908 +a(g187905 +g187907 +S'his' +p187909 +tp187910 +a(g187907 +g187909 +S'elegant' +p187911 +tp187912 +a(g187909 +g187911 +S'tailoring' +p187913 +tp187914 +a(g187911 +g187913 +S'is' +p187915 +tp187916 +a(g187913 +g187915 +S'that' +p187917 +tp187918 +a(g187915 +g187917 +S'of' +p187919 +tp187920 +a(g187917 +g187919 +S'a' +p187921 +tp187922 +a(g187919 +g187921 +S'civilian,' +p187923 +tp187924 +a(g187921 +g187923 +S'and' +p187925 +tp187926 +a(g187923 +g187925 +S'he' +p187927 +tp187928 +a(g187925 +g187927 +S'toys' +p187929 +tp187930 +a(g187927 +g187929 +S'with' +p187931 +tp187932 +a(g187929 +g187931 +S'a' +p187933 +tp187934 +a(g187931 +g187933 +S'walking' +p187935 +tp187936 +a(g187933 +g187935 +S'stick.' +p187937 +tp187938 +a(g187935 +g187937 +S'the' +p187939 +tp187940 +a(g187937 +g187939 +S'detailed' +p187941 +tp187942 +a(g187939 +g187941 +S'attention' +p187943 +tp187944 +a(g187941 +g187943 +S'to' +p187945 +tp187946 +a(g187943 +g187945 +S'realistic' +p187947 +tp187948 +a(g187945 +g187947 +S'texture,' +p187949 +tp187950 +a(g187947 +g187949 +S'such' +p187951 +tp187952 +a(g187949 +g187951 +S'as' +p187953 +tp187954 +a(g187951 +g187953 +S'the' +p187955 +tp187956 +a(g187953 +g187955 +S'felt' +p187957 +tp187958 +a(g187955 +g187957 +S'tricorn' +p187959 +tp187960 +a(g187957 +g187959 +S'hat,' +p187961 +tp187962 +a(g187959 +g187961 +S'plush' +p187963 +tp187964 +a(g187961 +g187963 +S'velvet' +p187965 +tp187966 +a(g187963 +g187965 +S'lapels,' +p187967 +tp187968 +a(g187965 +g187967 +S'and' +p187969 +tp187970 +a(g187967 +g187969 +S'soft' +p187971 +tp187972 +a(g187969 +g187971 +S'leather' +p187973 +tp187974 +a(g187971 +g187973 +S'gloves,' +p187975 +tp187976 +a(g187973 +g187975 +S'characterize' +p187977 +tp187978 +a(g187975 +g187977 +S'the' +p187979 +tp187980 +a(g187977 +g187979 +S'style' +p187981 +tp187982 +a(g187979 +g187981 +S'and' +p187983 +tp187984 +a(g187981 +g187983 +S'meticulous' +p187985 +tp187986 +a(g187983 +g187985 +S'technique' +p187987 +tp187988 +a(g187985 +g187987 +S'of' +p187989 +tp187990 +a(g187987 +g187989 +S'joseph' +p187991 +tp187992 +a(g187989 +g187991 +S'wright' +p187993 +tp187994 +a(g187991 +g187993 +S'of' +p187995 +tp187996 +a(g187993 +g187995 +S'derby.' +p187997 +tp187998 +a(g187995 +g187997 +S"wright's" +p187999 +tp188000 +a(g187997 +g187999 +S'portrait' +p188001 +tp188002 +a(g187999 +g188001 +S'of' +p188003 +tp188004 +a(g188001 +g188003 +S'a' +p188005 +tp188006 +a(g188003 +g188005 +S'flemish' +p188007 +tp188008 +a(g188005 +g188007 +S'lady' +p188009 +tp188010 +a(g188007 +g188009 +S'the' +p188011 +tp188012 +a(g188009 +g188011 +S'fountains' +p188013 +tp188014 +a(g188011 +g188013 +S'in' +p188015 +tp188016 +a(g188013 +g188015 +S'the' +p188017 +tp188018 +a(g188015 +g188017 +S'garden' +p188019 +tp188020 +a(g188017 +g188019 +S'courts' +p188021 +tp188022 +a(g188019 +g188021 +S'on' +p188023 +tp188024 +a(g188021 +g188023 +S'the' +p188025 +tp188026 +a(g188023 +g188025 +S'main' +p188027 +tp188028 +a(g188025 +g188027 +S'floor' +p188029 +tp188030 +a(g188027 +g188029 +S'of' +p188031 +tp188032 +a(g188029 +g188031 +S'the' +p188033 +tp188034 +a(g188031 +g188033 +S'west' +p188035 +tp188036 +a(g188033 +g188035 +S'building' +p188037 +tp188038 +a(g188035 +g188037 +S'were' +p188039 +tp188040 +a(g188037 +g188039 +S'originally' +p188041 +tp188042 +a(g188039 +g188041 +S'made' +p188043 +tp188044 +a(g188041 +g188043 +S'for' +p188045 +tp188046 +a(g188043 +g188045 +S'the' +p188047 +tp188048 +a(g188045 +g188047 +S'vast' +p188049 +tp188050 +a(g188047 +g188049 +S'garden' +p188051 +tp188052 +a(g188049 +g188051 +S'laid' +p188053 +tp188054 +a(g188051 +g188053 +S'out' +p188055 +tp188056 +a(g188053 +g188055 +S'for' +p188057 +tp188058 +a(g188055 +g188057 +S'king' +p188059 +tp188060 +a(g188057 +g188059 +S'louis' +p188061 +tp188062 +a(g188059 +g188061 +S'xiv' +p188063 +tp188064 +a(g188061 +g188063 +S'of' +p188065 +tp188066 +a(g188063 +g188065 +S'france' +p188067 +tp188068 +a(g188065 +g188067 +S'(1638–1715)' +p188069 +tp188070 +a(g188067 +g188069 +S'at' +p188071 +tp188072 +a(g188069 +g188071 +S'his' +p188073 +tp188074 +a(g188071 +g188073 +S'château' +p188075 +tp188076 +a(g188073 +g188075 +S'of' +p188077 +tp188078 +a(g188075 +g188077 +S'versailles.' +p188079 +tp188080 +a(g188077 +g188079 +S'the' +p188081 +tp188082 +a(g188079 +g188081 +S'one' +p188083 +tp188084 +a(g188081 +g188083 +S'in' +p188085 +tp188086 +a(g188083 +g188085 +S'the' +p188087 +tp188088 +a(g188085 +g188087 +S'east' +p188089 +tp188090 +a(g188087 +g188089 +S'garden' +p188091 +tp188092 +a(g188089 +g188091 +S'court,' +p188093 +tp188094 +a(g188091 +g188093 +S'by' +p188095 +tp188096 +a(g188093 +g188095 +S'pierre' +p188097 +tp188098 +a(g188095 +g188097 +S'legros' +p188099 +tp188100 +a(g188097 +g188099 +S'i,' +p188101 +tp188102 +a(g188099 +g188101 +S'consists' +p188103 +tp188104 +a(g188101 +g188103 +S'of' +p188105 +tp188106 +a(g188103 +g188105 +S'two' +p188107 +tp188108 +a(g188105 +g188107 +S'cherubs' +p188109 +tp188110 +a(g188107 +g188109 +S'sitting' +p188111 +tp188112 +a(g188109 +g188111 +S'in' +p188113 +tp188114 +a(g188111 +g188113 +S'a' +p188115 +tp188116 +a(g188113 +g188115 +S'shell' +p188117 +tp188118 +a(g188115 +g188117 +S'and' +p188119 +tp188120 +a(g188117 +g188119 +S'together' +p188121 +tp188122 +a(g188119 +g188121 +S'holding' +p188123 +tp188124 +a(g188121 +g188123 +S'a' +p188125 +tp188126 +a(g188123 +g188125 +S'lyre,' +p188127 +tp188128 +a(g188125 +g188127 +S'an' +p188129 +tp188130 +a(g188127 +g188129 +S'attribute' +p188131 +tp188132 +a(g188129 +g188131 +S'of' +p188133 +tp188134 +a(g188131 +g188133 +S'the' +p188135 +tp188136 +a(g188133 +g188135 +S'sun' +p188137 +tp188138 +a(g188135 +g188137 +S'god' +p188139 +tp188140 +a(g188137 +g188139 +S'apollo,' +p188141 +tp188142 +a(g188139 +g188141 +S'whom' +p188143 +tp188144 +a(g188141 +g188143 +S'louis' +p188145 +tp188146 +a(g188143 +g188145 +S'xiv' +p188147 +tp188148 +a(g188145 +g188147 +S'took' +p188149 +tp188150 +a(g188147 +g188149 +S'as' +p188151 +tp188152 +a(g188149 +g188151 +S'a' +p188153 +tp188154 +a(g188151 +g188153 +S'symbol.' +p188155 +tp188156 +a(g188153 +g188155 +S'in' +p188157 +tp188158 +a(g188155 +g188157 +S'the' +p188159 +tp188160 +a(g188157 +g188159 +S'west' +p188161 +tp188162 +a(g188159 +g188161 +S'garden' +p188163 +tp188164 +a(g188161 +g188163 +S'court' +p188165 +tp188166 +a(g188163 +g188165 +S'sculpture' +p188167 +tp188168 +a(g188165 +g188167 +S'by' +p188169 +tp188170 +a(g188167 +g188169 +S'jean-baptist' +p188171 +tp188172 +a(g188169 +g188171 +S'tuby' +p188173 +tp188174 +a(g188171 +g188173 +S'i,' +p188175 +tp188176 +a(g188173 +g188175 +S'the' +p188177 +tp188178 +a(g188175 +g188177 +S'cherubs' +p188179 +tp188180 +a(g188177 +g188179 +S'wrestle' +p188181 +tp188182 +a(g188179 +g188181 +S'playfully' +p188183 +tp188184 +a(g188181 +g188183 +S'with' +p188185 +tp188186 +a(g188183 +g188185 +S'a' +p188187 +tp188188 +a(g188185 +g188187 +S'swan,' +p188189 +tp188190 +a(g188187 +g188189 +S'another' +p188191 +tp188192 +a(g188189 +g188191 +S'emblem' +p188193 +tp188194 +a(g188191 +g188193 +S'of' +p188195 +tp188196 +a(g188193 +g188195 +S'apollo.' +p188197 +tp188198 +a(g188195 +g188197 +S'the' +p188199 +tp188200 +a(g188197 +g188199 +S'quiver' +p188201 +tp188202 +a(g188199 +g188201 +S'of' +p188203 +tp188204 +a(g188201 +g188203 +S'arrows' +p188205 +tp188206 +a(g188203 +g188205 +S'in' +p188207 +tp188208 +a(g188205 +g188207 +S'each' +p188209 +tp188210 +a(g188207 +g188209 +S'fountain' +p188211 +tp188212 +a(g188209 +g188211 +S'is' +p188213 +tp188214 +a(g188211 +g188213 +S'an' +p188215 +tp188216 +a(g188213 +g188215 +S'attribute' +p188217 +tp188218 +a(g188215 +g188217 +S'of' +p188219 +tp188220 +a(g188217 +g188219 +S'cupid,' +p188221 +tp188222 +a(g188219 +g188221 +S'the' +p188223 +tp188224 +a(g188221 +g188223 +S'infant' +p188225 +tp188226 +a(g188223 +g188225 +S'god' +p188227 +tp188228 +a(g188225 +g188227 +S'of' +p188229 +tp188230 +a(g188227 +g188229 +S'love.' +p188231 +tp188232 +a(g188229 +g188231 +S'these' +p188233 +tp188234 +a(g188231 +g188233 +S'sculptures' +p188235 +tp188236 +a(g188233 +g188235 +S'were' +p188237 +tp188238 +a(g188235 +g188237 +S'created' +p188239 +tp188240 +a(g188237 +g188239 +S'between' +p188241 +tp188242 +a(g188239 +g188241 +S'1672' +p188243 +tp188244 +a(g188241 +g188243 +S'and' +p188245 +tp188246 +a(g188243 +g188245 +S'1674' +p188247 +tp188248 +a(g188245 +g188247 +S'for' +p188249 +tp188250 +a(g188247 +g188249 +S'a' +p188251 +tp188252 +a(g188249 +g188251 +S'secluded' +p188253 +tp188254 +a(g188251 +g188253 +S'grove' +p188255 +tp188256 +a(g188253 +g188255 +S'on' +p188257 +tp188258 +a(g188255 +g188257 +S'the' +p188259 +tp188260 +a(g188257 +g188259 +S'grounds' +p188261 +tp188262 +a(g188259 +g188261 +S'of' +p188263 +tp188264 +a(g188261 +g188263 +S'versailles' +p188265 +tp188266 +a(g188263 +g188265 +S'called' +p188267 +tp188268 +a(g188265 +g188267 +S'the' +p188269 +tp188270 +a(g188267 +g188269 +S'théâtre' +p188271 +tp188272 +a(g188269 +g188271 +S"d'eau," +p188273 +tp188274 +a(g188271 +g188273 +S'shaped' +p188275 +tp188276 +a(g188273 +g188275 +S'as' +p188277 +tp188278 +a(g188275 +g188277 +S'a' +p188279 +tp188280 +a(g188277 +g188279 +S'theater' +p188281 +tp188282 +a(g188279 +g188281 +S'with' +p188283 +tp188284 +a(g188281 +g188283 +S'jets' +p188285 +tp188286 +a(g188283 +g188285 +S'and' +p188287 +tp188288 +a(g188285 +g188287 +S'streams' +p188289 +tp188290 +a(g188287 +g188289 +S'of' +p188291 +tp188292 +a(g188289 +g188291 +S'water' +p188293 +tp188294 +a(g188291 +g188293 +S'as' +p188295 +tp188296 +a(g188293 +g188295 +S'the' +p188297 +tp188298 +a(g188295 +g188297 +S'performers.' +p188299 +tp188300 +a(g188297 +g188299 +S'four' +p188301 +tp188302 +a(g188299 +g188301 +S'fountains,' +p188303 +tp188304 +a(g188301 +g188303 +S'including' +p188305 +tp188306 +a(g188303 +g188305 +S'the' +p188307 +tp188308 +a(g188305 +g188307 +S'two' +p188309 +tp188310 +a(g188307 +g188309 +S'now' +p188311 +tp188312 +a(g188309 +g188311 +S'in' +p188313 +tp188314 +a(g188311 +g188313 +S'washington,' +p188315 +tp188316 +a(g188313 +g188315 +S'stood' +p188317 +tp188318 +a(g188315 +g188317 +S'in' +p188319 +tp188320 +a(g188317 +g188319 +S'niches' +p188321 +tp188322 +a(g188319 +g188321 +S'carved' +p188323 +tp188324 +a(g188321 +g188323 +S'into' +p188325 +tp188326 +a(g188323 +g188325 +S'a' +p188327 +tp188328 +a(g188325 +g188327 +S'curving' +p188329 +tp188330 +a(g188327 +g188329 +S'wall' +p188331 +tp188332 +a(g188329 +g188331 +S'of' +p188333 +tp188334 +a(g188331 +g188333 +S'greenery' +p188335 +tp188336 +a(g188333 +g188335 +S'that' +p188337 +tp188338 +a(g188335 +g188337 +S'formed' +p188339 +tp188340 +a(g188337 +g188339 +S'a' +p188341 +tp188342 +a(g188339 +g188341 +S'theater' +p188343 +tp188344 +a(g188341 +g188343 +S'backdrop' +p188345 +tp188346 +a(g188343 +g188345 +S'against' +p188347 +tp188348 +a(g188345 +g188347 +S'a' +p188349 +tp188350 +a(g188347 +g188349 +S'low' +p188351 +tp188352 +a(g188349 +g188351 +S'hill.' +p188353 +tp188354 +a(g188351 +g188353 +S'(the' +p188355 +tp188356 +a(g188353 +g188355 +S'other' +p188357 +tp188358 +a(g188355 +g188357 +S'two,' +p188359 +tp188360 +a(g188357 +g188359 +S'cherubs' +p188361 +tp188362 +a(g188359 +g188361 +S'with' +p188363 +tp188364 +a(g188361 +g188363 +S'a' +p188365 +tp188366 +a(g188363 +g188365 +S'griffin' +p188367 +tp188368 +a(g188365 +g188367 +S'by' +p188369 +tp188370 +a(g188367 +g188369 +S'benoît' +p188371 +tp188372 +a(g188369 +g188371 +S'massou' +p188373 +tp188374 +a(g188371 +g188373 +S'and' +p188375 +tp188376 +a(g188373 +g188375 +S'cherubs' +p188377 +tp188378 +a(g188375 +g188377 +S'with' +p188379 +tp188380 +a(g188377 +g188379 +S'a' +p188381 +tp188382 +a(g188379 +g188381 +S'crayfish' +p188383 +tp188384 +a(g188381 +g188383 +S'by' +p188385 +tp188386 +a(g188383 +g188385 +S'jacques' +p188387 +tp188388 +a(g188385 +g188387 +S'houzeau,' +p188389 +tp188390 +a(g188387 +g188389 +S'are' +p188391 +tp188392 +a(g188389 +g188391 +S'lost;' +p188393 +tp188394 +a(g188391 +g188393 +S'the' +p188395 +tp188396 +a(g188393 +g188395 +S'only' +p188397 +tp188398 +a(g188395 +g188397 +S'other' +p188399 +tp188400 +a(g188397 +g188399 +S'sculpture' +p188401 +tp188402 +a(g188399 +g188401 +S'known' +p188403 +tp188404 +a(g188401 +g188403 +S'to' +p188405 +tp188406 +a(g188403 +g188405 +S'survive' +p188407 +tp188408 +a(g188405 +g188407 +S'from' +p188409 +tp188410 +a(g188407 +g188409 +S'the' +p188411 +tp188412 +a(g188409 +g188411 +S'théâtre' +p188413 +tp188414 +a(g188411 +g188413 +S"d'eau" +p188415 +tp188416 +a(g188413 +g188415 +S'is' +p188417 +tp188418 +a(g188415 +g188417 +S'the' +p188419 +tp188420 +a(g188417 +g188419 +S'bronze' +p188421 +tp188422 +a(g188419 +g188421 +S'cupid' +p188423 +tp188424 +a(g188421 +g188423 +S'drawing' +p188425 +tp188426 +a(g188423 +g188425 +S'an' +p188427 +tp188428 +a(g188425 +g188427 +S'arrow' +p188429 +tp188430 +a(g188427 +g188429 +S'by' +p188431 +tp188432 +a(g188429 +g188431 +S'gaspard' +p188433 +tp188434 +a(g188431 +g188433 +S'marsy,' +p188435 +tp188436 +a(g188433 +g188435 +S'now' +p188437 +tp188438 +a(g188435 +g188437 +S'in' +p188439 +tp188440 +a(g188437 +g188439 +S'the' +p188441 +tp188442 +a(g188439 +g188441 +S'gardens' +p188443 +tp188444 +a(g188441 +g188443 +S'of' +p188445 +tp188446 +a(g188443 +g188445 +S'the' +p188447 +tp188448 +a(g188445 +g188447 +S'grand' +p188449 +tp188450 +a(g188447 +g188449 +S'trianon' +p188451 +tp188452 +a(g188449 +g188451 +S'at' +p188453 +tp188454 +a(g188451 +g188453 +S'versailles).' +p188455 +tp188456 +a(g188453 +g188455 +S'between' +p188457 +tp188458 +a(g188455 +g188457 +S'these' +p188459 +tp188460 +a(g188457 +g188459 +S'fountains,' +p188461 +tp188462 +a(g188459 +g188461 +S'water' +p188463 +tp188464 +a(g188461 +g188463 +S'cascaded' +p188465 +tp188466 +a(g188463 +g188465 +S'down' +p188467 +tp188468 +a(g188465 +g188467 +S'channels' +p188469 +tp188470 +a(g188467 +g188469 +S'from' +p188471 +tp188472 +a(g188469 +g188471 +S'the' +p188473 +tp188474 +a(g188471 +g188473 +S'top' +p188475 +tp188476 +a(g188473 +g188475 +S'of' +p188477 +tp188478 +a(g188475 +g188477 +S'the' +p188479 +tp188480 +a(g188477 +g188479 +S'hill' +p188481 +tp188482 +a(g188479 +g188481 +S'to' +p188483 +tp188484 +a(g188481 +g188483 +S'spill' +p188485 +tp188486 +a(g188483 +g188485 +S'into' +p188487 +tp188488 +a(g188485 +g188487 +S'pools' +p188489 +tp188490 +a(g188487 +g188489 +S'on' +p188491 +tp188492 +a(g188489 +g188491 +S'the' +p188493 +tp188494 +a(g188491 +g188493 +S'"stage."' +p188495 +tp188496 +a(g188493 +g188495 +S'lead' +p188497 +tp188498 +a(g188495 +g188497 +S'was' +p188499 +tp188500 +a(g188497 +g188499 +S'the' +p188501 +tp188502 +a(g188499 +g188501 +S'preferred' +p188503 +tp188504 +a(g188501 +g188503 +S'medium' +p188505 +tp188506 +a(g188503 +g188505 +S'for' +p188507 +tp188508 +a(g188505 +g188507 +S'fountain' +p188509 +tp188510 +a(g188507 +g188509 +S'figures' +p188511 +tp188512 +a(g188509 +g188511 +S'because' +p188513 +tp188514 +a(g188511 +g188513 +S'it' +p188515 +tp188516 +a(g188513 +g188515 +S'resists' +p188517 +tp188518 +a(g188515 +g188517 +S'corrosion,' +p188519 +tp188520 +a(g188517 +g188519 +S'takes' +p188521 +tp188522 +a(g188519 +g188521 +S'gilding' +p188523 +tp188524 +a(g188521 +g188523 +S'easily,' +p188525 +tp188526 +a(g188523 +g188525 +S'and' +p188527 +tp188528 +a(g188525 +g188527 +S'can' +p188529 +tp188530 +a(g188527 +g188529 +S'be' +p188531 +tp188532 +a(g188529 +g188531 +S'cast' +p188533 +tp188534 +a(g188531 +g188533 +S'relatively' +p188535 +tp188536 +a(g188533 +g188535 +S'quickly.' +p188537 +tp188538 +a(g188535 +g188537 +S'this' +p188539 +tp188540 +a(g188537 +g188539 +S'was' +p188541 +tp188542 +a(g188539 +g188541 +S'an' +p188543 +tp188544 +a(g188541 +g188543 +S'advantage' +p188545 +tp188546 +a(g188543 +g188545 +S'for' +p188547 +tp188548 +a(g188545 +g188547 +S'a' +p188549 +tp188550 +a(g188547 +g188549 +S'patron' +p188551 +tp188552 +a(g188549 +g188551 +S'like' +p188553 +tp188554 +a(g188551 +g188553 +S'louis' +p188555 +tp188556 +a(g188553 +g188555 +S'xiv,' +p188557 +tp188558 +a(g188555 +g188557 +S'who' +p188559 +tp188560 +a(g188557 +g188559 +S'wanted' +p188561 +tp188562 +a(g188559 +g188561 +S'many' +p188563 +tp188564 +a(g188561 +g188563 +S'fine' +p188565 +tp188566 +a(g188563 +g188565 +S'sculptures' +p188567 +tp188568 +a(g188565 +g188567 +S'produced' +p188569 +tp188570 +a(g188567 +g188569 +S'in' +p188571 +tp188572 +a(g188569 +g188571 +S'a' +p188573 +tp188574 +a(g188571 +g188573 +S'short' +p188575 +tp188576 +a(g188573 +g188575 +S'time.' +p188577 +tp188578 +a(g188575 +g188577 +S'the' +p188579 +tp188580 +a(g188577 +g188579 +S'king' +p188581 +tp188582 +a(g188579 +g188581 +S'and' +p188583 +tp188584 +a(g188581 +g188583 +S'his' +p188585 +tp188586 +a(g188583 +g188585 +S'powerful' +p188587 +tp188588 +a(g188585 +g188587 +S'artistic' +p188589 +tp188590 +a(g188587 +g188589 +S'director,' +p188591 +tp188592 +a(g188589 +g188591 +S'the' +p188593 +tp188594 +a(g188591 +g188593 +S'painter' +p188595 +tp188596 +a(g188593 +g188595 +S'and' +p188597 +tp188598 +a(g188595 +g188597 +S'art' +p188599 +tp188600 +a(g188597 +g188599 +S'theorist' +p188601 +tp188602 +a(g188599 +g188601 +S'charles' +p188603 +tp188604 +a(g188601 +g188603 +S'le' +p188605 +tp188606 +a(g188603 +g188605 +S'brun' +p188607 +tp188608 +a(g188605 +g188607 +S'(1619–1690),' +p188609 +tp188610 +a(g188607 +g188609 +S'intended' +p188611 +tp188612 +a(g188609 +g188611 +S'all' +p188613 +tp188614 +a(g188611 +g188613 +S'the' +p188615 +tp188616 +a(g188613 +g188615 +S'sculptures' +p188617 +tp188618 +a(g188615 +g188617 +S'at' +p188619 +tp188620 +a(g188617 +g188619 +S'versailles' +p188621 +tp188622 +a(g188619 +g188621 +S'to' +p188623 +tp188624 +a(g188621 +g188623 +S'resemble' +p188625 +tp188626 +a(g188623 +g188625 +S'one' +p188627 +tp188628 +a(g188625 +g188627 +S'another' +p188629 +tp188630 +a(g188627 +g188629 +S'in' +p188631 +tp188632 +a(g188629 +g188631 +S'style.' +p188633 +tp188634 +a(g188631 +g188633 +S'for' +p188635 +tp188636 +a(g188633 +g188635 +S'this' +p188637 +tp188638 +a(g188635 +g188637 +S'reason' +p188639 +tp188640 +a(g188637 +g188639 +S'it' +p188641 +tp188642 +a(g188639 +g188641 +S'may' +p188643 +tp188644 +a(g188641 +g188643 +S'be' +p188645 +tp188646 +a(g188643 +g188645 +S'difficult' +p188647 +tp188648 +a(g188645 +g188647 +S'to' +p188649 +tp188650 +a(g188647 +g188649 +S'distinguish' +p188651 +tp188652 +a(g188649 +g188651 +S'the' +p188653 +tp188654 +a(g188651 +g188653 +S'work' +p188655 +tp188656 +a(g188653 +g188655 +S'of' +p188657 +tp188658 +a(g188655 +g188657 +S'one' +p188659 +tp188660 +a(g188657 +g188659 +S'sculptor' +p188661 +tp188662 +a(g188659 +g188661 +S'from' +p188663 +tp188664 +a(g188661 +g188663 +S'another,' +p188665 +tp188666 +a(g188663 +g188665 +S'except' +p188667 +tp188668 +a(g188665 +g188667 +S'in' +p188669 +tp188670 +a(g188667 +g188669 +S'rare' +p188671 +tp188672 +a(g188669 +g188671 +S'cases' +p188673 +tp188674 +a(g188671 +g188673 +S'where' +p188675 +tp188676 +a(g188673 +g188675 +S'the' +p188677 +tp188678 +a(g188675 +g188677 +S'sculptor' +p188679 +tp188680 +a(g188677 +g188679 +S'managed' +p188681 +tp188682 +a(g188679 +g188681 +S'to' +p188683 +tp188684 +a(g188681 +g188683 +S'maintain' +p188685 +tp188686 +a(g188683 +g188685 +S'an' +p188687 +tp188688 +a(g188685 +g188687 +S'individual' +p188689 +tp188690 +a(g188687 +g188689 +S'style.' +p188691 +tp188692 +a(g188689 +g188691 +S'the' +p188693 +tp188694 +a(g188691 +g188693 +S'names' +p188695 +tp188696 +a(g188693 +g188695 +S'of' +p188697 +tp188698 +a(g188695 +g188697 +S'the' +p188699 +tp188700 +a(g188697 +g188699 +S'versailles' +p188701 +tp188702 +a(g188699 +g188701 +S'artists' +p188703 +tp188704 +a(g188701 +g188703 +S'are' +p188705 +tp188706 +a(g188703 +g188705 +S'known' +p188707 +tp188708 +a(g188705 +g188707 +S'through' +p188709 +tp188710 +a(g188707 +g188709 +S'old' +p188711 +tp188712 +a(g188709 +g188711 +S'descriptions,' +p188713 +tp188714 +a(g188711 +g188713 +S'prints,' +p188715 +tp188716 +a(g188713 +g188715 +S'guidebooks,' +p188717 +tp188718 +a(g188715 +g188717 +S'and' +p188719 +tp188720 +a(g188717 +g188719 +S'archival' +p188721 +tp188722 +a(g188719 +g188721 +S'documents.' +p188723 +tp188724 +a(g188721 +g188723 +S'in' +p188725 +tp188726 +a(g188723 +g188725 +S'the' +p188727 +tp188728 +a(g188725 +g188727 +S'case' +p188729 +tp188730 +a(g188727 +g188729 +S'of' +p188731 +tp188732 +a(g188729 +g188731 +S'the' +p188733 +tp188734 +a(g188731 +g188733 +S'national' +p188735 +tp188736 +a(g188733 +g188735 +S"gallery's" +p188737 +tp188738 +a(g188735 +g188737 +S'two' +p188739 +tp188740 +a(g188737 +g188739 +S'fountains,' +p188741 +tp188742 +a(g188739 +g188741 +S'preliminary' +p188743 +tp188744 +a(g188741 +g188743 +S'design' +p188745 +tp188746 +a(g188743 +g188745 +S'drawings' +p188747 +tp188748 +a(g188745 +g188747 +S'by' +p188749 +tp188750 +a(g188747 +g188749 +S'le' +p188751 +tp188752 +a(g188749 +g188751 +S'brun' +p188753 +tp188754 +a(g188751 +g188753 +S'have' +p188755 +tp188756 +a(g188753 +g188755 +S'survived.' +p188757 +tp188758 +a(g188755 +g188757 +S'while' +p188759 +tp188760 +a(g188757 +g188759 +S'the' +p188761 +tp188762 +a(g188759 +g188761 +S'sculptures' +p188763 +tp188764 +a(g188761 +g188763 +S'generally' +p188765 +tp188766 +a(g188763 +g188765 +S'follow' +p188767 +tp188768 +a(g188765 +g188767 +S'these,' +p188769 +tp188770 +a(g188767 +g188769 +S'differences' +p188771 +tp188772 +a(g188769 +g188771 +S'suggest' +p188773 +tp188774 +a(g188771 +g188773 +S'the' +p188775 +tp188776 +a(g188773 +g188775 +S'artists' +p188777 +tp188778 +a(g188775 +g188777 +S'were' +p188779 +tp188780 +a(g188777 +g188779 +S'allowed' +p188781 +tp188782 +a(g188779 +g188781 +S'to' +p188783 +tp188784 +a(g188781 +g188783 +S'exert' +p188785 +tp188786 +a(g188783 +g188785 +S'some' +p188787 +tp188788 +a(g188785 +g188787 +S'independence.' +p188789 +tp188790 +a(g188787 +g188789 +S'after' +p188791 +tp188792 +a(g188789 +g188791 +S'the' +p188793 +tp188794 +a(g188791 +g188793 +S'death' +p188795 +tp188796 +a(g188793 +g188795 +S'of' +p188797 +tp188798 +a(g188795 +g188797 +S'louis' +p188799 +tp188800 +a(g188797 +g188799 +S'xiv' +p188801 +tp188802 +a(g188799 +g188801 +S'the' +p188803 +tp188804 +a(g188801 +g188803 +S'théâtre' +p188805 +tp188806 +a(g188803 +g188805 +S"d'eau," +p188807 +tp188808 +a(g188805 +g188807 +S'expensive' +p188809 +tp188810 +a(g188807 +g188809 +S'to' +p188811 +tp188812 +a(g188809 +g188811 +S'maintain,' +p188813 +tp188814 +a(g188811 +g188813 +S'fell' +p188815 +tp188816 +a(g188813 +g188815 +S'into' +p188817 +tp188818 +a(g188815 +g188817 +S'disrepair.' +p188819 +tp188820 +a(g188817 +g188819 +S'the' +p188821 +tp188822 +a(g188819 +g188821 +S'sculptures' +p188823 +tp188824 +a(g188821 +g188823 +S'must' +p188825 +tp188826 +a(g188823 +g188825 +S'have' +p188827 +tp188828 +a(g188825 +g188827 +S'been' +p188829 +tp188830 +a(g188827 +g188829 +S'removed' +p188831 +tp188832 +a(g188829 +g188831 +S'by' +p188833 +tp188834 +a(g188831 +g188833 +S'1756,' +p188835 +tp188836 +a(g188833 +g188835 +S'when' +p188837 +tp188838 +a(g188835 +g188837 +S'the' +p188839 +tp188840 +a(g188837 +g188839 +S'théâtre' +p188841 +tp188842 +a(g188839 +g188841 +S'was' +p188843 +tp188844 +a(g188841 +g188843 +S'described' +p188845 +tp188846 +a(g188843 +g188845 +S'as' +p188847 +tp188848 +a(g188845 +g188847 +S'"completely' +p188849 +tp188850 +a(g188847 +g188849 +S'destroyed,"' +p188851 +tp188852 +a(g188849 +g188851 +S'with' +p188853 +tp188854 +a(g188851 +g188853 +S'nothing' +p188855 +tp188856 +a(g188853 +g188855 +S'left' +p188857 +tp188858 +a(g188855 +g188857 +S'but' +p188859 +tp188860 +a(g188857 +g188859 +S'the' +p188861 +tp188862 +a(g188859 +g188861 +S'surrounding' +p188863 +tp188864 +a(g188861 +g188863 +S'pathways.' +p188865 +tp188866 +a(g188863 +g188865 +S'the' +p188867 +tp188868 +a(g188865 +g188867 +S'sculptures' +p188869 +tp188870 +a(g188867 +g188869 +S'by' +p188871 +tp188872 +a(g188869 +g188871 +S'tuby' +p188873 +tp188874 +a(g188871 +g188873 +S'and' +p188875 +tp188876 +a(g188873 +g188875 +S'legros' +p188877 +tp188878 +a(g188875 +g188877 +S'passed' +p188879 +tp188880 +a(g188877 +g188879 +S'through' +p188881 +tp188882 +a(g188879 +g188881 +S'various' +p188883 +tp188884 +a(g188881 +g188883 +S'private' +p188885 +tp188886 +a(g188883 +g188885 +S'collections—in' +p188887 +tp188888 +a(g188885 +g188887 +S'the' +p188889 +tp188890 +a(g188887 +g188889 +S'twentieth' +p188891 +tp188892 +a(g188889 +g188891 +S'century,' +p188893 +tp188894 +a(g188891 +g188893 +S'reportedly' +p188895 +tp188896 +a(g188893 +g188895 +S'including' +p188897 +tp188898 +a(g188895 +g188897 +S'that' +p188899 +tp188900 +a(g188897 +g188899 +S'of' +p188901 +tp188902 +a(g188899 +g188901 +S'the' +p188903 +tp188904 +a(g188901 +g188903 +S'grand' +p188905 +tp188906 +a(g188903 +g188905 +S'duchess' +p188907 +tp188908 +a(g188905 +g188907 +S'anastasia' +p188909 +tp188910 +a(g188907 +g188909 +S'(cousin' +p188911 +tp188912 +a(g188909 +g188911 +S'of' +p188913 +tp188914 +a(g188911 +g188913 +S'the' +p188915 +tp188916 +a(g188913 +g188915 +S'more' +p188917 +tp188918 +a(g188915 +g188917 +S'famous' +p188919 +tp188920 +a(g188917 +g188919 +S'anastasia,' +p188921 +tp188922 +a(g188919 +g188921 +S'daughter' +p188923 +tp188924 +a(g188921 +g188923 +S'of' +p188925 +tp188926 +a(g188923 +g188925 +S'nicholas' +p188927 +tp188928 +a(g188925 +g188927 +S'ii,' +p188929 +tp188930 +a(g188927 +g188929 +S'the' +p188931 +tp188932 +a(g188929 +g188931 +S'last' +p188933 +tp188934 +a(g188931 +g188933 +S'czar' +p188935 +tp188936 +a(g188933 +g188935 +S'of' +p188937 +tp188938 +a(g188935 +g188937 +S'russia),' +p188939 +tp188940 +a(g188937 +g188939 +S'before' +p188941 +tp188942 +a(g188939 +g188941 +S'their' +p188943 +tp188944 +a(g188941 +g188943 +S'acquisition' +p188945 +tp188946 +a(g188943 +g188945 +S'by' +p188947 +tp188948 +a(g188945 +g188947 +S'the' +p188949 +tp188950 +a(g188947 +g188949 +S'a.' +p188951 +tp188952 +a(g188949 +g188951 +S'w.' +p188953 +tp188954 +a(g188951 +g188953 +S'mellon' +p188955 +tp188956 +a(g188953 +g188955 +S'educational' +p188957 +tp188958 +a(g188955 +g188957 +S'and' +p188959 +tp188960 +a(g188957 +g188959 +S'charitable' +p188961 +tp188962 +a(g188959 +g188961 +S'trust' +p188963 +tp188964 +a(g188961 +g188963 +S'in' +p188965 +tp188966 +a(g188963 +g188965 +S'1940.' +p188967 +tp188968 +a(g188965 +g188967 +S'placed' +p188969 +tp188970 +a(g188967 +g188969 +S'in' +p188971 +tp188972 +a(g188969 +g188971 +S'the' +p188973 +tp188974 +a(g188971 +g188973 +S'garden' +p188975 +tp188976 +a(g188973 +g188975 +S'courts,' +p188977 +tp188978 +a(g188975 +g188977 +S'the' +p188979 +tp188980 +a(g188977 +g188979 +S'fountains' +p188981 +tp188982 +a(g188979 +g188981 +S'enliven' +p188983 +tp188984 +a(g188981 +g188983 +S'the' +p188985 +tp188986 +a(g188983 +g188985 +S'settings' +p188987 +tp188988 +a(g188985 +g188987 +S'where' +p188989 +tp188990 +a(g188987 +g188989 +S'gallery' +p188991 +tp188992 +a(g188989 +g188991 +S'visitors' +p188993 +tp188994 +a(g188991 +g188993 +S'can' +p188995 +tp188996 +a(g188993 +g188995 +S'rest' +p188997 +tp188998 +a(g188995 +g188997 +S'and' +p188999 +tp189000 +a(g188997 +g188999 +S'relax,' +p189001 +tp189002 +a(g188999 +g189001 +S'providing' +p189003 +tp189004 +a(g189001 +g189003 +S'the' +p189005 +tp189006 +a(g189003 +g189005 +S'same' +p189007 +tp189008 +a(g189005 +g189007 +S'enjoyment' +p189009 +tp189010 +a(g189007 +g189009 +S'as' +p189011 +tp189012 +a(g189009 +g189011 +S'they' +p189013 +tp189014 +a(g189011 +g189013 +S'did' +p189015 +tp189016 +a(g189013 +g189015 +S'for' +p189017 +tp189018 +a(g189015 +g189017 +S'louis' +p189019 +tp189020 +a(g189017 +g189019 +S'xiv' +p189021 +tp189022 +a(g189019 +g189021 +S'and' +p189023 +tp189024 +a(g189021 +g189023 +S'his' +p189025 +tp189026 +a(g189023 +g189025 +S'courtiers.' +p189027 +tp189028 +a(g189025 +g189027 +S'the' +p189029 +tp189030 +a(g189027 +g189029 +S'sculptor' +p189031 +tp189032 +a(g189029 +g189031 +S'pierre' +p189033 +tp189034 +a(g189031 +g189033 +S'legros' +p189035 +tp189036 +a(g189033 +g189035 +S'i,' +p189037 +tp189038 +a(g189035 +g189037 +S'father' +p189039 +tp189040 +a(g189037 +g189039 +S'of' +p189041 +tp189042 +a(g189039 +g189041 +S'another' +p189043 +tp189044 +a(g189041 +g189043 +S'important' +p189045 +tp189046 +a(g189043 +g189045 +S'sculptor' +p189047 +tp189048 +a(g189045 +g189047 +S'also' +p189049 +tp189050 +a(g189047 +g189049 +S'called' +p189051 +tp189052 +a(g189049 +g189051 +S'pierre,' +p189053 +tp189054 +a(g189051 +g189053 +S'came' +p189055 +tp189056 +a(g189053 +g189055 +S'from' +p189057 +tp189058 +a(g189055 +g189057 +S'the' +p189059 +tp189060 +a(g189057 +g189059 +S'french' +p189061 +tp189062 +a(g189059 +g189061 +S'town' +p189063 +tp189064 +a(g189061 +g189063 +S'of' +p189065 +tp189066 +a(g189063 +g189065 +S'chartres,' +p189067 +tp189068 +a(g189065 +g189067 +S'renowned' +p189069 +tp189070 +a(g189067 +g189069 +S'for' +p189071 +tp189072 +a(g189069 +g189071 +S'its' +p189073 +tp189074 +a(g189071 +g189073 +S'cathedral.' +p189075 +tp189076 +a(g189073 +g189075 +S'jean-baptiste' +p189077 +tp189078 +a(g189075 +g189077 +S'tuby' +p189079 +tp189080 +a(g189077 +g189079 +S'i,' +p189081 +tp189082 +a(g189079 +g189081 +S'born' +p189083 +tp189084 +a(g189081 +g189083 +S'in' +p189085 +tp189086 +a(g189083 +g189085 +S'rome' +p189087 +tp189088 +a(g189085 +g189087 +S'but' +p189089 +tp189090 +a(g189087 +g189089 +S'with' +p189091 +tp189092 +a(g189089 +g189091 +S'a' +p189093 +tp189094 +a(g189091 +g189093 +S'french' +p189095 +tp189096 +a(g189093 +g189095 +S'father,' +p189097 +tp189098 +a(g189095 +g189097 +S'was' +p189099 +tp189100 +a(g189097 +g189099 +S'a' +p189101 +tp189102 +a(g189099 +g189101 +S'leading' +p189103 +tp189104 +a(g189101 +g189103 +S'sculptor' +p189105 +tp189106 +a(g189103 +g189105 +S'on' +p189107 +tp189108 +a(g189105 +g189107 +S'the' +p189109 +tp189110 +a(g189107 +g189109 +S'team' +p189111 +tp189112 +a(g189109 +g189111 +S'of' +p189113 +tp189114 +a(g189111 +g189113 +S'artists' +p189115 +tp189116 +a(g189113 +g189115 +S'at' +p189117 +tp189118 +a(g189115 +g189117 +S'versailles.' +p189119 +tp189120 +a(g189117 +g189119 +S'he' +p189121 +tp189122 +a(g189119 +g189121 +S'became' +p189123 +tp189124 +a(g189121 +g189123 +S'close' +p189125 +tp189126 +a(g189123 +g189125 +S'to' +p189127 +tp189128 +a(g189125 +g189127 +S'the' +p189129 +tp189130 +a(g189127 +g189129 +S'artistic' +p189131 +tp189132 +a(g189129 +g189131 +S'director' +p189133 +tp189134 +a(g189131 +g189133 +S'le' +p189135 +tp189136 +a(g189133 +g189135 +S'brun,' +p189137 +tp189138 +a(g189135 +g189137 +S'acquiring' +p189139 +tp189140 +a(g189137 +g189139 +S'some' +p189141 +tp189142 +a(g189139 +g189141 +S'of' +p189143 +tp189144 +a(g189141 +g189143 +S'his' +p189145 +tp189146 +a(g189143 +g189145 +S'paintings' +p189147 +tp189148 +a(g189145 +g189147 +S'and' +p189149 +tp189150 +a(g189147 +g189149 +S'marrying' +p189151 +tp189152 +a(g189149 +g189151 +S'his' +p189153 +tp189154 +a(g189151 +g189153 +S'niece.' +p189155 +tp189156 +a(g189153 +g189155 +S"tuby's" +p189157 +tp189158 +a(g189155 +g189157 +S'son' +p189159 +tp189160 +a(g189157 +g189159 +S'also' +p189161 +tp189162 +a(g189159 +g189161 +S'became' +p189163 +tp189164 +a(g189161 +g189163 +S'a' +p189165 +tp189166 +a(g189163 +g189165 +S'sculptor.' +p189167 +tp189168 +a(g189165 +g189167 +S'the' +p189169 +tp189170 +a(g189167 +g189169 +S'fountains' +p189171 +tp189172 +a(g189169 +g189171 +S'in' +p189173 +tp189174 +a(g189171 +g189173 +S'the' +p189175 +tp189176 +a(g189173 +g189175 +S'garden' +p189177 +tp189178 +a(g189175 +g189177 +S'courts' +p189179 +tp189180 +a(g189177 +g189179 +S'on' +p189181 +tp189182 +a(g189179 +g189181 +S'the' +p189183 +tp189184 +a(g189181 +g189183 +S'main' +p189185 +tp189186 +a(g189183 +g189185 +S'floor' +p189187 +tp189188 +a(g189185 +g189187 +S'of' +p189189 +tp189190 +a(g189187 +g189189 +S'the' +p189191 +tp189192 +a(g189189 +g189191 +S'west' +p189193 +tp189194 +a(g189191 +g189193 +S'building' +p189195 +tp189196 +a(g189193 +g189195 +S'were' +p189197 +tp189198 +a(g189195 +g189197 +S'originally' +p189199 +tp189200 +a(g189197 +g189199 +S'made' +p189201 +tp189202 +a(g189199 +g189201 +S'for' +p189203 +tp189204 +a(g189201 +g189203 +S'the' +p189205 +tp189206 +a(g189203 +g189205 +S'vast' +p189207 +tp189208 +a(g189205 +g189207 +S'garden' +p189209 +tp189210 +a(g189207 +g189209 +S'laid' +p189211 +tp189212 +a(g189209 +g189211 +S'out' +p189213 +tp189214 +a(g189211 +g189213 +S'for' +p189215 +tp189216 +a(g189213 +g189215 +S'king' +p189217 +tp189218 +a(g189215 +g189217 +S'louis' +p189219 +tp189220 +a(g189217 +g189219 +S'xiv' +p189221 +tp189222 +a(g189219 +g189221 +S'of' +p189223 +tp189224 +a(g189221 +g189223 +S'france' +p189225 +tp189226 +a(g189223 +g189225 +S'(1638–1715)' +p189227 +tp189228 +a(g189225 +g189227 +S'at' +p189229 +tp189230 +a(g189227 +g189229 +S'his' +p189231 +tp189232 +a(g189229 +g189231 +S'château' +p189233 +tp189234 +a(g189231 +g189233 +S'of' +p189235 +tp189236 +a(g189233 +g189235 +S'versailles.' +p189237 +tp189238 +a(g189235 +g189237 +S'the' +p189239 +tp189240 +a(g189237 +g189239 +S'one' +p189241 +tp189242 +a(g189239 +g189241 +S'in' +p189243 +tp189244 +a(g189241 +g189243 +S'the' +p189245 +tp189246 +a(g189243 +g189245 +S'east' +p189247 +tp189248 +a(g189245 +g189247 +S'garden' +p189249 +tp189250 +a(g189247 +g189249 +S'court,' +p189251 +tp189252 +a(g189249 +g189251 +S'by' +p189253 +tp189254 +a(g189251 +g189253 +S'pierre' +p189255 +tp189256 +a(g189253 +g189255 +S'legros' +p189257 +tp189258 +a(g189255 +g189257 +S'i,' +p189259 +tp189260 +a(g189257 +g189259 +S'consists' +p189261 +tp189262 +a(g189259 +g189261 +S'of' +p189263 +tp189264 +a(g189261 +g189263 +S'two' +p189265 +tp189266 +a(g189263 +g189265 +S'cherubs' +p189267 +tp189268 +a(g189265 +g189267 +S'sitting' +p189269 +tp189270 +a(g189267 +g189269 +S'in' +p189271 +tp189272 +a(g189269 +g189271 +S'a' +p189273 +tp189274 +a(g189271 +g189273 +S'shell' +p189275 +tp189276 +a(g189273 +g189275 +S'and' +p189277 +tp189278 +a(g189275 +g189277 +S'together' +p189279 +tp189280 +a(g189277 +g189279 +S'holding' +p189281 +tp189282 +a(g189279 +g189281 +S'a' +p189283 +tp189284 +a(g189281 +g189283 +S'lyre,' +p189285 +tp189286 +a(g189283 +g189285 +S'an' +p189287 +tp189288 +a(g189285 +g189287 +S'attribute' +p189289 +tp189290 +a(g189287 +g189289 +S'of' +p189291 +tp189292 +a(g189289 +g189291 +S'the' +p189293 +tp189294 +a(g189291 +g189293 +S'sun' +p189295 +tp189296 +a(g189293 +g189295 +S'god' +p189297 +tp189298 +a(g189295 +g189297 +S'apollo,' +p189299 +tp189300 +a(g189297 +g189299 +S'whom' +p189301 +tp189302 +a(g189299 +g189301 +S'louis' +p189303 +tp189304 +a(g189301 +g189303 +S'xiv' +p189305 +tp189306 +a(g189303 +g189305 +S'took' +p189307 +tp189308 +a(g189305 +g189307 +S'as' +p189309 +tp189310 +a(g189307 +g189309 +S'a' +p189311 +tp189312 +a(g189309 +g189311 +S'symbol.' +p189313 +tp189314 +a(g189311 +g189313 +S'in' +p189315 +tp189316 +a(g189313 +g189315 +S'the' +p189317 +tp189318 +a(g189315 +g189317 +S'west' +p189319 +tp189320 +a(g189317 +g189319 +S'garden' +p189321 +tp189322 +a(g189319 +g189321 +S'court' +p189323 +tp189324 +a(g189321 +g189323 +S'sculpture' +p189325 +tp189326 +a(g189323 +g189325 +S'by' +p189327 +tp189328 +a(g189325 +g189327 +S'jean-baptist' +p189329 +tp189330 +a(g189327 +g189329 +S'tuby' +p189331 +tp189332 +a(g189329 +g189331 +S'i,' +p189333 +tp189334 +a(g189331 +g189333 +S'the' +p189335 +tp189336 +a(g189333 +g189335 +S'cherubs' +p189337 +tp189338 +a(g189335 +g189337 +S'wrestle' +p189339 +tp189340 +a(g189337 +g189339 +S'playfully' +p189341 +tp189342 +a(g189339 +g189341 +S'with' +p189343 +tp189344 +a(g189341 +g189343 +S'a' +p189345 +tp189346 +a(g189343 +g189345 +S'swan,' +p189347 +tp189348 +a(g189345 +g189347 +S'another' +p189349 +tp189350 +a(g189347 +g189349 +S'emblem' +p189351 +tp189352 +a(g189349 +g189351 +S'of' +p189353 +tp189354 +a(g189351 +g189353 +S'apollo.' +p189355 +tp189356 +a(g189353 +g189355 +S'the' +p189357 +tp189358 +a(g189355 +g189357 +S'quiver' +p189359 +tp189360 +a(g189357 +g189359 +S'of' +p189361 +tp189362 +a(g189359 +g189361 +S'arrows' +p189363 +tp189364 +a(g189361 +g189363 +S'in' +p189365 +tp189366 +a(g189363 +g189365 +S'each' +p189367 +tp189368 +a(g189365 +g189367 +S'fountain' +p189369 +tp189370 +a(g189367 +g189369 +S'is' +p189371 +tp189372 +a(g189369 +g189371 +S'an' +p189373 +tp189374 +a(g189371 +g189373 +S'attribute' +p189375 +tp189376 +a(g189373 +g189375 +S'of' +p189377 +tp189378 +a(g189375 +g189377 +S'cupid,' +p189379 +tp189380 +a(g189377 +g189379 +S'the' +p189381 +tp189382 +a(g189379 +g189381 +S'infant' +p189383 +tp189384 +a(g189381 +g189383 +S'god' +p189385 +tp189386 +a(g189383 +g189385 +S'of' +p189387 +tp189388 +a(g189385 +g189387 +S'love.' +p189389 +tp189390 +a(g189387 +g189389 +S'these' +p189391 +tp189392 +a(g189389 +g189391 +S'sculptures' +p189393 +tp189394 +a(g189391 +g189393 +S'were' +p189395 +tp189396 +a(g189393 +g189395 +S'created' +p189397 +tp189398 +a(g189395 +g189397 +S'between' +p189399 +tp189400 +a(g189397 +g189399 +S'1672' +p189401 +tp189402 +a(g189399 +g189401 +S'and' +p189403 +tp189404 +a(g189401 +g189403 +S'1674' +p189405 +tp189406 +a(g189403 +g189405 +S'for' +p189407 +tp189408 +a(g189405 +g189407 +S'a' +p189409 +tp189410 +a(g189407 +g189409 +S'secluded' +p189411 +tp189412 +a(g189409 +g189411 +S'grove' +p189413 +tp189414 +a(g189411 +g189413 +S'on' +p189415 +tp189416 +a(g189413 +g189415 +S'the' +p189417 +tp189418 +a(g189415 +g189417 +S'grounds' +p189419 +tp189420 +a(g189417 +g189419 +S'of' +p189421 +tp189422 +a(g189419 +g189421 +S'versailles' +p189423 +tp189424 +a(g189421 +g189423 +S'called' +p189425 +tp189426 +a(g189423 +g189425 +S'the' +p189427 +tp189428 +a(g189425 +g189427 +S'théâtre' +p189429 +tp189430 +a(g189427 +g189429 +S"d'eau," +p189431 +tp189432 +a(g189429 +g189431 +S'shaped' +p189433 +tp189434 +a(g189431 +g189433 +S'as' +p189435 +tp189436 +a(g189433 +g189435 +S'a' +p189437 +tp189438 +a(g189435 +g189437 +S'theater' +p189439 +tp189440 +a(g189437 +g189439 +S'with' +p189441 +tp189442 +a(g189439 +g189441 +S'jets' +p189443 +tp189444 +a(g189441 +g189443 +S'and' +p189445 +tp189446 +a(g189443 +g189445 +S'streams' +p189447 +tp189448 +a(g189445 +g189447 +S'of' +p189449 +tp189450 +a(g189447 +g189449 +S'water' +p189451 +tp189452 +a(g189449 +g189451 +S'as' +p189453 +tp189454 +a(g189451 +g189453 +S'the' +p189455 +tp189456 +a(g189453 +g189455 +S'performers.' +p189457 +tp189458 +a(g189455 +g189457 +S'four' +p189459 +tp189460 +a(g189457 +g189459 +S'fountains,' +p189461 +tp189462 +a(g189459 +g189461 +S'including' +p189463 +tp189464 +a(g189461 +g189463 +S'the' +p189465 +tp189466 +a(g189463 +g189465 +S'two' +p189467 +tp189468 +a(g189465 +g189467 +S'now' +p189469 +tp189470 +a(g189467 +g189469 +S'in' +p189471 +tp189472 +a(g189469 +g189471 +S'washington,' +p189473 +tp189474 +a(g189471 +g189473 +S'stood' +p189475 +tp189476 +a(g189473 +g189475 +S'in' +p189477 +tp189478 +a(g189475 +g189477 +S'niches' +p189479 +tp189480 +a(g189477 +g189479 +S'carved' +p189481 +tp189482 +a(g189479 +g189481 +S'into' +p189483 +tp189484 +a(g189481 +g189483 +S'a' +p189485 +tp189486 +a(g189483 +g189485 +S'curving' +p189487 +tp189488 +a(g189485 +g189487 +S'wall' +p189489 +tp189490 +a(g189487 +g189489 +S'of' +p189491 +tp189492 +a(g189489 +g189491 +S'greenery' +p189493 +tp189494 +a(g189491 +g189493 +S'that' +p189495 +tp189496 +a(g189493 +g189495 +S'formed' +p189497 +tp189498 +a(g189495 +g189497 +S'a' +p189499 +tp189500 +a(g189497 +g189499 +S'theater' +p189501 +tp189502 +a(g189499 +g189501 +S'backdrop' +p189503 +tp189504 +a(g189501 +g189503 +S'against' +p189505 +tp189506 +a(g189503 +g189505 +S'a' +p189507 +tp189508 +a(g189505 +g189507 +S'low' +p189509 +tp189510 +a(g189507 +g189509 +S'hill.' +p189511 +tp189512 +a(g189509 +g189511 +S'(the' +p189513 +tp189514 +a(g189511 +g189513 +S'other' +p189515 +tp189516 +a(g189513 +g189515 +S'two,' +p189517 +tp189518 +a(g189515 +g189517 +S'cherubs' +p189519 +tp189520 +a(g189517 +g189519 +S'with' +p189521 +tp189522 +a(g189519 +g189521 +S'a' +p189523 +tp189524 +a(g189521 +g189523 +S'griffin' +p189525 +tp189526 +a(g189523 +g189525 +S'by' +p189527 +tp189528 +a(g189525 +g189527 +S'benoît' +p189529 +tp189530 +a(g189527 +g189529 +S'massou' +p189531 +tp189532 +a(g189529 +g189531 +S'and' +p189533 +tp189534 +a(g189531 +g189533 +S'cherubs' +p189535 +tp189536 +a(g189533 +g189535 +S'with' +p189537 +tp189538 +a(g189535 +g189537 +S'a' +p189539 +tp189540 +a(g189537 +g189539 +S'crayfish' +p189541 +tp189542 +a(g189539 +g189541 +S'by' +p189543 +tp189544 +a(g189541 +g189543 +S'jacques' +p189545 +tp189546 +a(g189543 +g189545 +S'houzeau,' +p189547 +tp189548 +a(g189545 +g189547 +S'are' +p189549 +tp189550 +a(g189547 +g189549 +S'lost;' +p189551 +tp189552 +a(g189549 +g189551 +S'the' +p189553 +tp189554 +a(g189551 +g189553 +S'only' +p189555 +tp189556 +a(g189553 +g189555 +S'other' +p189557 +tp189558 +a(g189555 +g189557 +S'sculpture' +p189559 +tp189560 +a(g189557 +g189559 +S'known' +p189561 +tp189562 +a(g189559 +g189561 +S'to' +p189563 +tp189564 +a(g189561 +g189563 +S'survive' +p189565 +tp189566 +a(g189563 +g189565 +S'from' +p189567 +tp189568 +a(g189565 +g189567 +S'the' +p189569 +tp189570 +a(g189567 +g189569 +S'théâtre' +p189571 +tp189572 +a(g189569 +g189571 +S"d'eau" +p189573 +tp189574 +a(g189571 +g189573 +S'is' +p189575 +tp189576 +a(g189573 +g189575 +S'the' +p189577 +tp189578 +a(g189575 +g189577 +S'bronze' +p189579 +tp189580 +a(g189577 +g189579 +S'cupid' +p189581 +tp189582 +a(g189579 +g189581 +S'drawing' +p189583 +tp189584 +a(g189581 +g189583 +S'an' +p189585 +tp189586 +a(g189583 +g189585 +S'arrow' +p189587 +tp189588 +a(g189585 +g189587 +S'by' +p189589 +tp189590 +a(g189587 +g189589 +S'gaspard' +p189591 +tp189592 +a(g189589 +g189591 +S'marsy,' +p189593 +tp189594 +a(g189591 +g189593 +S'now' +p189595 +tp189596 +a(g189593 +g189595 +S'in' +p189597 +tp189598 +a(g189595 +g189597 +S'the' +p189599 +tp189600 +a(g189597 +g189599 +S'gardens' +p189601 +tp189602 +a(g189599 +g189601 +S'of' +p189603 +tp189604 +a(g189601 +g189603 +S'the' +p189605 +tp189606 +a(g189603 +g189605 +S'grand' +p189607 +tp189608 +a(g189605 +g189607 +S'trianon' +p189609 +tp189610 +a(g189607 +g189609 +S'at' +p189611 +tp189612 +a(g189609 +g189611 +S'versailles).' +p189613 +tp189614 +a(g189611 +g189613 +S'between' +p189615 +tp189616 +a(g189613 +g189615 +S'these' +p189617 +tp189618 +a(g189615 +g189617 +S'fountains,' +p189619 +tp189620 +a(g189617 +g189619 +S'water' +p189621 +tp189622 +a(g189619 +g189621 +S'cascaded' +p189623 +tp189624 +a(g189621 +g189623 +S'down' +p189625 +tp189626 +a(g189623 +g189625 +S'channels' +p189627 +tp189628 +a(g189625 +g189627 +S'from' +p189629 +tp189630 +a(g189627 +g189629 +S'the' +p189631 +tp189632 +a(g189629 +g189631 +S'top' +p189633 +tp189634 +a(g189631 +g189633 +S'of' +p189635 +tp189636 +a(g189633 +g189635 +S'the' +p189637 +tp189638 +a(g189635 +g189637 +S'hill' +p189639 +tp189640 +a(g189637 +g189639 +S'to' +p189641 +tp189642 +a(g189639 +g189641 +S'spill' +p189643 +tp189644 +a(g189641 +g189643 +S'into' +p189645 +tp189646 +a(g189643 +g189645 +S'pools' +p189647 +tp189648 +a(g189645 +g189647 +S'on' +p189649 +tp189650 +a(g189647 +g189649 +S'the' +p189651 +tp189652 +a(g189649 +g189651 +S'"stage."' +p189653 +tp189654 +a(g189651 +g189653 +S'lead' +p189655 +tp189656 +a(g189653 +g189655 +S'was' +p189657 +tp189658 +a(g189655 +g189657 +S'the' +p189659 +tp189660 +a(g189657 +g189659 +S'preferred' +p189661 +tp189662 +a(g189659 +g189661 +S'medium' +p189663 +tp189664 +a(g189661 +g189663 +S'for' +p189665 +tp189666 +a(g189663 +g189665 +S'fountain' +p189667 +tp189668 +a(g189665 +g189667 +S'figures' +p189669 +tp189670 +a(g189667 +g189669 +S'because' +p189671 +tp189672 +a(g189669 +g189671 +S'it' +p189673 +tp189674 +a(g189671 +g189673 +S'resists' +p189675 +tp189676 +a(g189673 +g189675 +S'corrosion,' +p189677 +tp189678 +a(g189675 +g189677 +S'takes' +p189679 +tp189680 +a(g189677 +g189679 +S'gilding' +p189681 +tp189682 +a(g189679 +g189681 +S'easily,' +p189683 +tp189684 +a(g189681 +g189683 +S'and' +p189685 +tp189686 +a(g189683 +g189685 +S'can' +p189687 +tp189688 +a(g189685 +g189687 +S'be' +p189689 +tp189690 +a(g189687 +g189689 +S'cast' +p189691 +tp189692 +a(g189689 +g189691 +S'relatively' +p189693 +tp189694 +a(g189691 +g189693 +S'quickly.' +p189695 +tp189696 +a(g189693 +g189695 +S'this' +p189697 +tp189698 +a(g189695 +g189697 +S'was' +p189699 +tp189700 +a(g189697 +g189699 +S'an' +p189701 +tp189702 +a(g189699 +g189701 +S'advantage' +p189703 +tp189704 +a(g189701 +g189703 +S'for' +p189705 +tp189706 +a(g189703 +g189705 +S'a' +p189707 +tp189708 +a(g189705 +g189707 +S'patron' +p189709 +tp189710 +a(g189707 +g189709 +S'like' +p189711 +tp189712 +a(g189709 +g189711 +S'louis' +p189713 +tp189714 +a(g189711 +g189713 +S'xiv,' +p189715 +tp189716 +a(g189713 +g189715 +S'who' +p189717 +tp189718 +a(g189715 +g189717 +S'wanted' +p189719 +tp189720 +a(g189717 +g189719 +S'many' +p189721 +tp189722 +a(g189719 +g189721 +S'fine' +p189723 +tp189724 +a(g189721 +g189723 +S'sculptures' +p189725 +tp189726 +a(g189723 +g189725 +S'produced' +p189727 +tp189728 +a(g189725 +g189727 +S'in' +p189729 +tp189730 +a(g189727 +g189729 +S'a' +p189731 +tp189732 +a(g189729 +g189731 +S'short' +p189733 +tp189734 +a(g189731 +g189733 +S'time.' +p189735 +tp189736 +a(g189733 +g189735 +S'the' +p189737 +tp189738 +a(g189735 +g189737 +S'king' +p189739 +tp189740 +a(g189737 +g189739 +S'and' +p189741 +tp189742 +a(g189739 +g189741 +S'his' +p189743 +tp189744 +a(g189741 +g189743 +S'powerful' +p189745 +tp189746 +a(g189743 +g189745 +S'artistic' +p189747 +tp189748 +a(g189745 +g189747 +S'director,' +p189749 +tp189750 +a(g189747 +g189749 +S'the' +p189751 +tp189752 +a(g189749 +g189751 +S'painter' +p189753 +tp189754 +a(g189751 +g189753 +S'and' +p189755 +tp189756 +a(g189753 +g189755 +S'art' +p189757 +tp189758 +a(g189755 +g189757 +S'theorist' +p189759 +tp189760 +a(g189757 +g189759 +S'charles' +p189761 +tp189762 +a(g189759 +g189761 +S'le' +p189763 +tp189764 +a(g189761 +g189763 +S'brun' +p189765 +tp189766 +a(g189763 +g189765 +S'(1619–1690),' +p189767 +tp189768 +a(g189765 +g189767 +S'intended' +p189769 +tp189770 +a(g189767 +g189769 +S'all' +p189771 +tp189772 +a(g189769 +g189771 +S'the' +p189773 +tp189774 +a(g189771 +g189773 +S'sculptures' +p189775 +tp189776 +a(g189773 +g189775 +S'at' +p189777 +tp189778 +a(g189775 +g189777 +S'versailles' +p189779 +tp189780 +a(g189777 +g189779 +S'to' +p189781 +tp189782 +a(g189779 +g189781 +S'resemble' +p189783 +tp189784 +a(g189781 +g189783 +S'one' +p189785 +tp189786 +a(g189783 +g189785 +S'another' +p189787 +tp189788 +a(g189785 +g189787 +S'in' +p189789 +tp189790 +a(g189787 +g189789 +S'style.' +p189791 +tp189792 +a(g189789 +g189791 +S'for' +p189793 +tp189794 +a(g189791 +g189793 +S'this' +p189795 +tp189796 +a(g189793 +g189795 +S'reason' +p189797 +tp189798 +a(g189795 +g189797 +S'it' +p189799 +tp189800 +a(g189797 +g189799 +S'may' +p189801 +tp189802 +a(g189799 +g189801 +S'be' +p189803 +tp189804 +a(g189801 +g189803 +S'difficult' +p189805 +tp189806 +a(g189803 +g189805 +S'to' +p189807 +tp189808 +a(g189805 +g189807 +S'distinguish' +p189809 +tp189810 +a(g189807 +g189809 +S'the' +p189811 +tp189812 +a(g189809 +g189811 +S'work' +p189813 +tp189814 +a(g189811 +g189813 +S'of' +p189815 +tp189816 +a(g189813 +g189815 +S'one' +p189817 +tp189818 +a(g189815 +g189817 +S'sculptor' +p189819 +tp189820 +a(g189817 +g189819 +S'from' +p189821 +tp189822 +a(g189819 +g189821 +S'another,' +p189823 +tp189824 +a(g189821 +g189823 +S'except' +p189825 +tp189826 +a(g189823 +g189825 +S'in' +p189827 +tp189828 +a(g189825 +g189827 +S'rare' +p189829 +tp189830 +a(g189827 +g189829 +S'cases' +p189831 +tp189832 +a(g189829 +g189831 +S'where' +p189833 +tp189834 +a(g189831 +g189833 +S'the' +p189835 +tp189836 +a(g189833 +g189835 +S'sculptor' +p189837 +tp189838 +a(g189835 +g189837 +S'managed' +p189839 +tp189840 +a(g189837 +g189839 +S'to' +p189841 +tp189842 +a(g189839 +g189841 +S'maintain' +p189843 +tp189844 +a(g189841 +g189843 +S'an' +p189845 +tp189846 +a(g189843 +g189845 +S'individual' +p189847 +tp189848 +a(g189845 +g189847 +S'style.' +p189849 +tp189850 +a(g189847 +g189849 +S'the' +p189851 +tp189852 +a(g189849 +g189851 +S'names' +p189853 +tp189854 +a(g189851 +g189853 +S'of' +p189855 +tp189856 +a(g189853 +g189855 +S'the' +p189857 +tp189858 +a(g189855 +g189857 +S'versailles' +p189859 +tp189860 +a(g189857 +g189859 +S'artists' +p189861 +tp189862 +a(g189859 +g189861 +S'are' +p189863 +tp189864 +a(g189861 +g189863 +S'known' +p189865 +tp189866 +a(g189863 +g189865 +S'through' +p189867 +tp189868 +a(g189865 +g189867 +S'old' +p189869 +tp189870 +a(g189867 +g189869 +S'descriptions,' +p189871 +tp189872 +a(g189869 +g189871 +S'prints,' +p189873 +tp189874 +a(g189871 +g189873 +S'guidebooks,' +p189875 +tp189876 +a(g189873 +g189875 +S'and' +p189877 +tp189878 +a(g189875 +g189877 +S'archival' +p189879 +tp189880 +a(g189877 +g189879 +S'documents.' +p189881 +tp189882 +a(g189879 +g189881 +S'in' +p189883 +tp189884 +a(g189881 +g189883 +S'the' +p189885 +tp189886 +a(g189883 +g189885 +S'case' +p189887 +tp189888 +a(g189885 +g189887 +S'of' +p189889 +tp189890 +a(g189887 +g189889 +S'the' +p189891 +tp189892 +a(g189889 +g189891 +S'national' +p189893 +tp189894 +a(g189891 +g189893 +S"gallery's" +p189895 +tp189896 +a(g189893 +g189895 +S'two' +p189897 +tp189898 +a(g189895 +g189897 +S'fountains,' +p189899 +tp189900 +a(g189897 +g189899 +S'preliminary' +p189901 +tp189902 +a(g189899 +g189901 +S'design' +p189903 +tp189904 +a(g189901 +g189903 +S'drawings' +p189905 +tp189906 +a(g189903 +g189905 +S'by' +p189907 +tp189908 +a(g189905 +g189907 +S'le' +p189909 +tp189910 +a(g189907 +g189909 +S'brun' +p189911 +tp189912 +a(g189909 +g189911 +S'have' +p189913 +tp189914 +a(g189911 +g189913 +S'survived.' +p189915 +tp189916 +a(g189913 +g189915 +S'while' +p189917 +tp189918 +a(g189915 +g189917 +S'the' +p189919 +tp189920 +a(g189917 +g189919 +S'sculptures' +p189921 +tp189922 +a(g189919 +g189921 +S'generally' +p189923 +tp189924 +a(g189921 +g189923 +S'follow' +p189925 +tp189926 +a(g189923 +g189925 +S'these,' +p189927 +tp189928 +a(g189925 +g189927 +S'differences' +p189929 +tp189930 +a(g189927 +g189929 +S'suggest' +p189931 +tp189932 +a(g189929 +g189931 +S'the' +p189933 +tp189934 +a(g189931 +g189933 +S'artists' +p189935 +tp189936 +a(g189933 +g189935 +S'were' +p189937 +tp189938 +a(g189935 +g189937 +S'allowed' +p189939 +tp189940 +a(g189937 +g189939 +S'to' +p189941 +tp189942 +a(g189939 +g189941 +S'exert' +p189943 +tp189944 +a(g189941 +g189943 +S'some' +p189945 +tp189946 +a(g189943 +g189945 +S'independence.' +p189947 +tp189948 +a(g189945 +g189947 +S'after' +p189949 +tp189950 +a(g189947 +g189949 +S'the' +p189951 +tp189952 +a(g189949 +g189951 +S'death' +p189953 +tp189954 +a(g189951 +g189953 +S'of' +p189955 +tp189956 +a(g189953 +g189955 +S'louis' +p189957 +tp189958 +a(g189955 +g189957 +S'xiv' +p189959 +tp189960 +a(g189957 +g189959 +S'the' +p189961 +tp189962 +a(g189959 +g189961 +S'théâtre' +p189963 +tp189964 +a(g189961 +g189963 +S"d'eau," +p189965 +tp189966 +a(g189963 +g189965 +S'expensive' +p189967 +tp189968 +a(g189965 +g189967 +S'to' +p189969 +tp189970 +a(g189967 +g189969 +S'maintain,' +p189971 +tp189972 +a(g189969 +g189971 +S'fell' +p189973 +tp189974 +a(g189971 +g189973 +S'into' +p189975 +tp189976 +a(g189973 +g189975 +S'disrepair.' +p189977 +tp189978 +a(g189975 +g189977 +S'the' +p189979 +tp189980 +a(g189977 +g189979 +S'sculptures' +p189981 +tp189982 +a(g189979 +g189981 +S'must' +p189983 +tp189984 +a(g189981 +g189983 +S'have' +p189985 +tp189986 +a(g189983 +g189985 +S'been' +p189987 +tp189988 +a(g189985 +g189987 +S'removed' +p189989 +tp189990 +a(g189987 +g189989 +S'by' +p189991 +tp189992 +a(g189989 +g189991 +S'1756,' +p189993 +tp189994 +a(g189991 +g189993 +S'when' +p189995 +tp189996 +a(g189993 +g189995 +S'the' +p189997 +tp189998 +a(g189995 +g189997 +S'théâtre' +p189999 +tp190000 +a(g189997 +g189999 +S'was' +p190001 +tp190002 +a(g189999 +g190001 +S'described' +p190003 +tp190004 +a(g190001 +g190003 +S'as' +p190005 +tp190006 +a(g190003 +g190005 +S'"completely' +p190007 +tp190008 +a(g190005 +g190007 +S'destroyed,"' +p190009 +tp190010 +a(g190007 +g190009 +S'with' +p190011 +tp190012 +a(g190009 +g190011 +S'nothing' +p190013 +tp190014 +a(g190011 +g190013 +S'left' +p190015 +tp190016 +a(g190013 +g190015 +S'but' +p190017 +tp190018 +a(g190015 +g190017 +S'the' +p190019 +tp190020 +a(g190017 +g190019 +S'surrounding' +p190021 +tp190022 +a(g190019 +g190021 +S'pathways.' +p190023 +tp190024 +a(g190021 +g190023 +S'the' +p190025 +tp190026 +a(g190023 +g190025 +S'sculptures' +p190027 +tp190028 +a(g190025 +g190027 +S'by' +p190029 +tp190030 +a(g190027 +g190029 +S'tuby' +p190031 +tp190032 +a(g190029 +g190031 +S'and' +p190033 +tp190034 +a(g190031 +g190033 +S'legros' +p190035 +tp190036 +a(g190033 +g190035 +S'passed' +p190037 +tp190038 +a(g190035 +g190037 +S'through' +p190039 +tp190040 +a(g190037 +g190039 +S'various' +p190041 +tp190042 +a(g190039 +g190041 +S'private' +p190043 +tp190044 +a(g190041 +g190043 +S'collections—in' +p190045 +tp190046 +a(g190043 +g190045 +S'the' +p190047 +tp190048 +a(g190045 +g190047 +S'twentieth' +p190049 +tp190050 +a(g190047 +g190049 +S'century,' +p190051 +tp190052 +a(g190049 +g190051 +S'reportedly' +p190053 +tp190054 +a(g190051 +g190053 +S'including' +p190055 +tp190056 +a(g190053 +g190055 +S'that' +p190057 +tp190058 +a(g190055 +g190057 +S'of' +p190059 +tp190060 +a(g190057 +g190059 +S'the' +p190061 +tp190062 +a(g190059 +g190061 +S'grand' +p190063 +tp190064 +a(g190061 +g190063 +S'duchess' +p190065 +tp190066 +a(g190063 +g190065 +S'anastasia' +p190067 +tp190068 +a(g190065 +g190067 +S'(cousin' +p190069 +tp190070 +a(g190067 +g190069 +S'of' +p190071 +tp190072 +a(g190069 +g190071 +S'the' +p190073 +tp190074 +a(g190071 +g190073 +S'more' +p190075 +tp190076 +a(g190073 +g190075 +S'famous' +p190077 +tp190078 +a(g190075 +g190077 +S'anastasia,' +p190079 +tp190080 +a(g190077 +g190079 +S'daughter' +p190081 +tp190082 +a(g190079 +g190081 +S'of' +p190083 +tp190084 +a(g190081 +g190083 +S'nicholas' +p190085 +tp190086 +a(g190083 +g190085 +S'ii,' +p190087 +tp190088 +a(g190085 +g190087 +S'the' +p190089 +tp190090 +a(g190087 +g190089 +S'last' +p190091 +tp190092 +a(g190089 +g190091 +S'czar' +p190093 +tp190094 +a(g190091 +g190093 +S'of' +p190095 +tp190096 +a(g190093 +g190095 +S'russia),' +p190097 +tp190098 +a(g190095 +g190097 +S'before' +p190099 +tp190100 +a(g190097 +g190099 +S'their' +p190101 +tp190102 +a(g190099 +g190101 +S'acquisition' +p190103 +tp190104 +a(g190101 +g190103 +S'by' +p190105 +tp190106 +a(g190103 +g190105 +S'the' +p190107 +tp190108 +a(g190105 +g190107 +S'a.' +p190109 +tp190110 +a(g190107 +g190109 +S'w.' +p190111 +tp190112 +a(g190109 +g190111 +S'mellon' +p190113 +tp190114 +a(g190111 +g190113 +S'educational' +p190115 +tp190116 +a(g190113 +g190115 +S'and' +p190117 +tp190118 +a(g190115 +g190117 +S'charitable' +p190119 +tp190120 +a(g190117 +g190119 +S'trust' +p190121 +tp190122 +a(g190119 +g190121 +S'in' +p190123 +tp190124 +a(g190121 +g190123 +S'1940.' +p190125 +tp190126 +a(g190123 +g190125 +S'placed' +p190127 +tp190128 +a(g190125 +g190127 +S'in' +p190129 +tp190130 +a(g190127 +g190129 +S'the' +p190131 +tp190132 +a(g190129 +g190131 +S'garden' +p190133 +tp190134 +a(g190131 +g190133 +S'courts,' +p190135 +tp190136 +a(g190133 +g190135 +S'the' +p190137 +tp190138 +a(g190135 +g190137 +S'fountains' +p190139 +tp190140 +a(g190137 +g190139 +S'enliven' +p190141 +tp190142 +a(g190139 +g190141 +S'the' +p190143 +tp190144 +a(g190141 +g190143 +S'settings' +p190145 +tp190146 +a(g190143 +g190145 +S'where' +p190147 +tp190148 +a(g190145 +g190147 +S'gallery' +p190149 +tp190150 +a(g190147 +g190149 +S'visitors' +p190151 +tp190152 +a(g190149 +g190151 +S'can' +p190153 +tp190154 +a(g190151 +g190153 +S'rest' +p190155 +tp190156 +a(g190153 +g190155 +S'and' +p190157 +tp190158 +a(g190155 +g190157 +S'relax,' +p190159 +tp190160 +a(g190157 +g190159 +S'providing' +p190161 +tp190162 +a(g190159 +g190161 +S'the' +p190163 +tp190164 +a(g190161 +g190163 +S'same' +p190165 +tp190166 +a(g190163 +g190165 +S'enjoyment' +p190167 +tp190168 +a(g190165 +g190167 +S'as' +p190169 +tp190170 +a(g190167 +g190169 +S'they' +p190171 +tp190172 +a(g190169 +g190171 +S'did' +p190173 +tp190174 +a(g190171 +g190173 +S'for' +p190175 +tp190176 +a(g190173 +g190175 +S'louis' +p190177 +tp190178 +a(g190175 +g190177 +S'xiv' +p190179 +tp190180 +a(g190177 +g190179 +S'and' +p190181 +tp190182 +a(g190179 +g190181 +S'his' +p190183 +tp190184 +a(g190181 +g190183 +S'courtiers.' +p190185 +tp190186 +a(g190183 +g190185 +S'the' +p190187 +tp190188 +a(g190185 +g190187 +S'sculptor' +p190189 +tp190190 +a(g190187 +g190189 +S'pierre' +p190191 +tp190192 +a(g190189 +g190191 +S'legros' +p190193 +tp190194 +a(g190191 +g190193 +S'i,' +p190195 +tp190196 +a(g190193 +g190195 +S'father' +p190197 +tp190198 +a(g190195 +g190197 +S'of' +p190199 +tp190200 +a(g190197 +g190199 +S'another' +p190201 +tp190202 +a(g190199 +g190201 +S'important' +p190203 +tp190204 +a(g190201 +g190203 +S'sculptor' +p190205 +tp190206 +a(g190203 +g190205 +S'also' +p190207 +tp190208 +a(g190205 +g190207 +S'called' +p190209 +tp190210 +a(g190207 +g190209 +S'pierre,' +p190211 +tp190212 +a(g190209 +g190211 +S'came' +p190213 +tp190214 +a(g190211 +g190213 +S'from' +p190215 +tp190216 +a(g190213 +g190215 +S'the' +p190217 +tp190218 +a(g190215 +g190217 +S'french' +p190219 +tp190220 +a(g190217 +g190219 +S'town' +p190221 +tp190222 +a(g190219 +g190221 +S'of' +p190223 +tp190224 +a(g190221 +g190223 +S'chartres,' +p190225 +tp190226 +a(g190223 +g190225 +S'renowned' +p190227 +tp190228 +a(g190225 +g190227 +S'for' +p190229 +tp190230 +a(g190227 +g190229 +S'its' +p190231 +tp190232 +a(g190229 +g190231 +S'cathedral.' +p190233 +tp190234 +a(g190231 +g190233 +S'jean-baptiste' +p190235 +tp190236 +a(g190233 +g190235 +S'tuby' +p190237 +tp190238 +a(g190235 +g190237 +S'i,' +p190239 +tp190240 +a(g190237 +g190239 +S'born' +p190241 +tp190242 +a(g190239 +g190241 +S'in' +p190243 +tp190244 +a(g190241 +g190243 +S'rome' +p190245 +tp190246 +a(g190243 +g190245 +S'but' +p190247 +tp190248 +a(g190245 +g190247 +S'with' +p190249 +tp190250 +a(g190247 +g190249 +S'a' +p190251 +tp190252 +a(g190249 +g190251 +S'french' +p190253 +tp190254 +a(g190251 +g190253 +S'father,' +p190255 +tp190256 +a(g190253 +g190255 +S'was' +p190257 +tp190258 +a(g190255 +g190257 +S'a' +p190259 +tp190260 +a(g190257 +g190259 +S'leading' +p190261 +tp190262 +a(g190259 +g190261 +S'sculptor' +p190263 +tp190264 +a(g190261 +g190263 +S'on' +p190265 +tp190266 +a(g190263 +g190265 +S'the' +p190267 +tp190268 +a(g190265 +g190267 +S'team' +p190269 +tp190270 +a(g190267 +g190269 +S'of' +p190271 +tp190272 +a(g190269 +g190271 +S'artists' +p190273 +tp190274 +a(g190271 +g190273 +S'at' +p190275 +tp190276 +a(g190273 +g190275 +S'versailles.' +p190277 +tp190278 +a(g190275 +g190277 +S'he' +p190279 +tp190280 +a(g190277 +g190279 +S'became' +p190281 +tp190282 +a(g190279 +g190281 +S'close' +p190283 +tp190284 +a(g190281 +g190283 +S'to' +p190285 +tp190286 +a(g190283 +g190285 +S'the' +p190287 +tp190288 +a(g190285 +g190287 +S'artistic' +p190289 +tp190290 +a(g190287 +g190289 +S'director' +p190291 +tp190292 +a(g190289 +g190291 +S'le' +p190293 +tp190294 +a(g190291 +g190293 +S'brun,' +p190295 +tp190296 +a(g190293 +g190295 +S'acquiring' +p190297 +tp190298 +a(g190295 +g190297 +S'some' +p190299 +tp190300 +a(g190297 +g190299 +S'of' +p190301 +tp190302 +a(g190299 +g190301 +S'his' +p190303 +tp190304 +a(g190301 +g190303 +S'paintings' +p190305 +tp190306 +a(g190303 +g190305 +S'and' +p190307 +tp190308 +a(g190305 +g190307 +S'marrying' +p190309 +tp190310 +a(g190307 +g190309 +S'his' +p190311 +tp190312 +a(g190309 +g190311 +S'niece.' +p190313 +tp190314 +a(g190311 +g190313 +S"tuby's" +p190315 +tp190316 +a(g190313 +g190315 +S'son' +p190317 +tp190318 +a(g190315 +g190317 +S'also' +p190319 +tp190320 +a(g190317 +g190319 +S'became' +p190321 +tp190322 +a(g190319 +g190321 +S'a' +p190323 +tp190324 +a(g190321 +g190323 +S'sculptor.' +p190325 +tp190326 +a(g190323 +g190325 +S"cuyp's" +p190327 +tp190328 +a(g190325 +g190327 +S'masterful' +p190329 +tp190330 +a(g190327 +g190329 +S'depiction' +p190331 +tp190332 +a(g190329 +g190331 +S'of' +p190333 +tp190334 +a(g190331 +g190333 +S'dordrecht' +p190335 +tp190336 +a(g190333 +g190335 +S'differs' +p190337 +tp190338 +a(g190335 +g190337 +S'extensively' +p190339 +tp190340 +a(g190337 +g190339 +S'from' +p190341 +tp190342 +a(g190339 +g190341 +S'jan' +p190343 +tp190344 +a(g190341 +g190343 +S'van' +p190345 +tp190346 +a(g190343 +g190345 +S"goyen's" +p190347 +tp190348 +a(g190345 +g190347 +S'cuyp' +p190349 +tp190350 +a(g190347 +g190349 +S'was' +p190351 +tp190352 +a(g190349 +g190351 +S'probably' +p190353 +tp190354 +a(g190351 +g190353 +S'commissioned' +p190355 +tp190356 +a(g190353 +g190355 +S'to' +p190357 +tp190358 +a(g190355 +g190357 +S'represent' +p190359 +tp190360 +a(g190357 +g190359 +S'an' +p190361 +tp190362 +a(g190359 +g190361 +S'event' +p190363 +tp190364 +a(g190361 +g190363 +S'that' +p190365 +tp190366 +a(g190363 +g190365 +S'occurred' +p190367 +tp190368 +a(g190365 +g190367 +S'during' +p190369 +tp190370 +a(g190367 +g190369 +S'the' +p190371 +tp190372 +a(g190369 +g190371 +S'summer' +p190373 +tp190374 +a(g190371 +g190373 +S'of' +p190375 +tp190376 +a(g190373 +g190375 +S'1646.' +p190377 +tp190378 +a(g190375 +g190377 +S'at' +p190379 +tp190380 +a(g190377 +g190379 +S'that' +p190381 +tp190382 +a(g190379 +g190381 +S'time' +p190383 +tp190384 +a(g190381 +g190383 +S'an' +p190385 +tp190386 +a(g190383 +g190385 +S'enormous' +p190387 +tp190388 +a(g190385 +g190387 +S'fleet' +p190389 +tp190390 +a(g190387 +g190389 +S'of' +p190391 +tp190392 +a(g190389 +g190391 +S'ships' +p190393 +tp190394 +a(g190391 +g190393 +S'carrying' +p190395 +tp190396 +a(g190393 +g190395 +S'thirty' +p190397 +tp190398 +a(g190395 +g190397 +S'thousand' +p190399 +tp190400 +a(g190397 +g190399 +S'soldiers' +p190401 +tp190402 +a(g190399 +g190401 +S'was' +p190403 +tp190404 +a(g190401 +g190403 +S'anchored' +p190405 +tp190406 +a(g190403 +g190405 +S'at' +p190407 +tp190408 +a(g190405 +g190407 +S'dordrecht;' +p190409 +tp190410 +a(g190407 +g190409 +S'presumably' +p190411 +tp190412 +a(g190409 +g190411 +S'for' +p190413 +tp190414 +a(g190411 +g190413 +S'symbolic' +p190415 +tp190416 +a(g190413 +g190415 +S'purposes' +p190417 +tp190418 +a(g190415 +g190417 +S'rather' +p190419 +tp190420 +a(g190417 +g190419 +S'than' +p190421 +tp190422 +a(g190419 +g190421 +S'for' +p190423 +tp190424 +a(g190421 +g190423 +S'specific' +p190425 +tp190426 +a(g190423 +g190425 +S'military' +p190427 +tp190428 +a(g190425 +g190427 +S'ones' +p190429 +tp190430 +a(g190427 +g190429 +S'as' +p190431 +tp190432 +a(g190429 +g190431 +S'peace' +p190433 +tp190434 +a(g190431 +g190433 +S'was' +p190435 +tp190436 +a(g190433 +g190435 +S'finally' +p190437 +tp190438 +a(g190435 +g190437 +S'at' +p190439 +tp190440 +a(g190437 +g190439 +S'hand.' +p190441 +tp190442 +a(g190439 +g190441 +S'the' +p190443 +tp190444 +a(g190441 +g190443 +S'treaty' +p190445 +tp190446 +a(g190443 +g190445 +S'of' +p190447 +tp190448 +a(g190445 +g190447 +S'münster,' +p190449 +tp190450 +a(g190447 +g190449 +S'which' +p190451 +tp190452 +a(g190449 +g190451 +S'ended' +p190453 +tp190454 +a(g190451 +g190453 +S'all' +p190455 +tp190456 +a(g190453 +g190455 +S'hostilities' +p190457 +tp190458 +a(g190455 +g190457 +S'with' +p190459 +tp190460 +a(g190457 +g190459 +S'spain' +p190461 +tp190462 +a(g190459 +g190461 +S'and' +p190463 +tp190464 +a(g190461 +g190463 +S'created' +p190465 +tp190466 +a(g190463 +g190465 +S'an' +p190467 +tp190468 +a(g190465 +g190467 +S'independent' +p190469 +tp190470 +a(g190467 +g190469 +S'dutch' +p190471 +tp190472 +a(g190469 +g190471 +S'nation,' +p190473 +tp190474 +a(g190471 +g190473 +S'was' +p190475 +tp190476 +a(g190473 +g190475 +S'signed' +p190477 +tp190478 +a(g190475 +g190477 +S'only' +p190479 +tp190480 +a(g190477 +g190479 +S'two' +p190481 +tp190482 +a(g190479 +g190481 +S'years' +p190483 +tp190484 +a(g190481 +g190483 +S'later.' +p190485 +tp190486 +a(g190483 +g190485 +S'clodion' +p190487 +tp190488 +a(g190485 +g190487 +S'is' +p190489 +tp190490 +a(g190487 +g190489 +S'best' +p190491 +tp190492 +a(g190489 +g190491 +S'known' +p190493 +tp190494 +a(g190491 +g190493 +S'today' +p190495 +tp190496 +a(g190493 +g190495 +S'and' +p190497 +tp190498 +a(g190495 +g190497 +S'was' +p190499 +tp190500 +a(g190497 +g190499 +S'most' +p190501 +tp190502 +a(g190499 +g190501 +S'celebrated' +p190503 +tp190504 +a(g190501 +g190503 +S'in' +p190505 +tp190506 +a(g190503 +g190505 +S'the' +p190507 +tp190508 +a(g190505 +g190507 +S'eighteenth' +p190509 +tp190510 +a(g190507 +g190509 +S'century' +p190511 +tp190512 +a(g190509 +g190511 +S'for' +p190513 +tp190514 +a(g190511 +g190513 +S'works' +p190515 +tp190516 +a(g190513 +g190515 +S'of' +p190517 +tp190518 +a(g190515 +g190517 +S'vivacity' +p190519 +tp190520 +a(g190517 +g190519 +S'and' +p190521 +tp190522 +a(g190519 +g190521 +S'charm.' +p190523 +tp190524 +a(g190521 +g190523 +S'the' +p190525 +tp190526 +a(g190523 +g190525 +S'relief' +p190527 +tp190528 +a(g190525 +g190527 +S'panels' +p190529 +tp190530 +a(g190527 +g190529 +S'decorating' +p190531 +tp190532 +a(g190529 +g190531 +S'these' +p190533 +tp190534 +a(g190531 +g190533 +S'urns,' +p190535 +tp190536 +a(g190533 +g190535 +S'one' +p190537 +tp190538 +a(g190535 +g190537 +S'of' +p190539 +tp190540 +a(g190537 +g190539 +S'which' +p190541 +tp190542 +a(g190539 +g190541 +S'is' +p190543 +tp190544 +a(g190541 +g190543 +S'illustrated' +p190545 +tp190546 +a(g190543 +g190545 +S'here,' +p190547 +tp190548 +a(g190545 +g190547 +S'are' +p190549 +tp190550 +a(g190547 +g190549 +S'typical' +p190551 +tp190552 +a(g190549 +g190551 +S'of' +p190553 +tp190554 +a(g190551 +g190553 +S'his' +p190555 +tp190556 +a(g190553 +g190555 +S'engaging' +p190557 +tp190558 +a(g190555 +g190557 +S'subjects:' +p190559 +tp190560 +a(g190557 +g190559 +S'satyr' +p190561 +tp190562 +a(g190559 +g190561 +S'families' +p190563 +tp190564 +a(g190561 +g190563 +S'tussle' +p190565 +tp190566 +a(g190563 +g190565 +S'and' +p190567 +tp190568 +a(g190565 +g190567 +S'frolic' +p190569 +tp190570 +a(g190567 +g190569 +S'in' +p190571 +tp190572 +a(g190569 +g190571 +S'bucolic' +p190573 +tp190574 +a(g190571 +g190573 +S'settings,' +p190575 +tp190576 +a(g190573 +g190575 +S'playing' +p190577 +tp190578 +a(g190575 +g190577 +S'music,' +p190579 +tp190580 +a(g190577 +g190579 +S'and' +p190581 +tp190582 +a(g190579 +g190581 +S'riding' +p190583 +tp190584 +a(g190581 +g190583 +S'seesaws.' +p190585 +tp190586 +a(g190583 +g190585 +S'the' +p190587 +tp190588 +a(g190585 +g190587 +S'scenes' +p190589 +tp190590 +a(g190587 +g190589 +S'on' +p190591 +tp190592 +a(g190589 +g190591 +S'the' +p190593 +tp190594 +a(g190591 +g190593 +S'urns' +p190595 +tp190596 +a(g190593 +g190595 +S'include' +p190597 +tp190598 +a(g190595 +g190597 +S'some' +p190599 +tp190600 +a(g190597 +g190599 +S'of' +p190601 +tp190602 +a(g190599 +g190601 +S"clodion's" +p190603 +tp190604 +a(g190601 +g190603 +S'most' +p190605 +tp190606 +a(g190603 +g190605 +S'popular' +p190607 +tp190608 +a(g190605 +g190607 +S'vignettes,' +p190609 +tp190610 +a(g190607 +g190609 +S'which' +p190611 +tp190612 +a(g190609 +g190611 +S'he' +p190613 +tp190614 +a(g190611 +g190613 +S'copied' +p190615 +tp190616 +a(g190613 +g190615 +S'many' +p190617 +tp190618 +a(g190615 +g190617 +S'times' +p190619 +tp190620 +a(g190617 +g190619 +S'in' +p190621 +tp190622 +a(g190619 +g190621 +S'terracotta' +p190623 +tp190624 +a(g190621 +g190623 +S'(including' +p190625 +tp190626 +a(g190623 +g190625 +S'a' +p190627 +tp190628 +a(g190625 +g190627 +S'plaque' +p190629 +tp190630 +a(g190627 +g190629 +S'often' +p190631 +tp190632 +a(g190629 +g190631 +S'on' +p190633 +tp190634 +a(g190631 +g190633 +S'view' +p190635 +tp190636 +a(g190633 +g190635 +S'in' +p190637 +tp190638 +a(g190635 +g190637 +S'the' +p190639 +tp190640 +a(g190637 +g190639 +S'downstairs' +p190641 +tp190642 +a(g190639 +g190641 +S'sculpture' +p190643 +tp190644 +a(g190641 +g190643 +S'galleries)' +p190645 +tp190646 +a(g190643 +g190645 +S'and' +p190647 +tp190648 +a(g190645 +g190647 +S'other' +p190649 +tp190650 +a(g190647 +g190649 +S'media,' +p190651 +tp190652 +a(g190649 +g190651 +S'and' +p190653 +tp190654 +a(g190651 +g190653 +S'which' +p190655 +tp190656 +a(g190653 +g190655 +S'are' +p190657 +tp190658 +a(g190655 +g190657 +S'even' +p190659 +tp190660 +a(g190657 +g190659 +S'found' +p190661 +tp190662 +a(g190659 +g190661 +S'as' +p190663 +tp190664 +a(g190661 +g190663 +S'gilded' +p190665 +tp190666 +a(g190663 +g190665 +S'decorations' +p190667 +tp190668 +a(g190665 +g190667 +S'on' +p190669 +tp190670 +a(g190667 +g190669 +S'furniture.' +p190671 +tp190672 +a(g190669 +g190671 +S'clodion' +p190673 +tp190674 +a(g190671 +g190673 +S'had' +p190675 +tp190676 +a(g190673 +g190675 +S'an' +p190677 +tp190678 +a(g190675 +g190677 +S'active' +p190679 +tp190680 +a(g190677 +g190679 +S'workshop' +p190681 +tp190682 +a(g190679 +g190681 +S'and' +p190683 +tp190684 +a(g190681 +g190683 +S'was' +p190685 +tp190686 +a(g190683 +g190685 +S'so' +p190687 +tp190688 +a(g190685 +g190687 +S'busy' +p190689 +tp190690 +a(g190687 +g190689 +S'that' +p190691 +tp190692 +a(g190689 +g190691 +S'he' +p190693 +tp190694 +a(g190691 +g190693 +S'failed' +p190695 +tp190696 +a(g190693 +g190695 +S'even' +p190697 +tp190698 +a(g190695 +g190697 +S'to' +p190699 +tp190700 +a(g190697 +g190699 +S'complete' +p190701 +tp190702 +a(g190699 +g190701 +S'the' +p190703 +tp190704 +a(g190701 +g190703 +S'masterpiece' +p190705 +tp190706 +a(g190703 +g190705 +S'for' +p190707 +tp190708 +a(g190705 +g190707 +S'his' +p190709 +tp190710 +a(g190707 +g190709 +S'admission' +p190711 +tp190712 +a(g190709 +g190711 +S'to' +p190713 +tp190714 +a(g190711 +g190713 +S'the' +p190715 +tp190716 +a(g190713 +g190715 +S'french' +p190717 +tp190718 +a(g190715 +g190717 +S'academy.' +p190719 +tp190720 +a(g190717 +g190719 +S'probably' +p190721 +tp190722 +a(g190719 +g190721 +S'the' +p190723 +tp190724 +a(g190721 +g190723 +S'urns' +p190725 +tp190726 +a(g190723 +g190725 +S'were' +p190727 +tp190728 +a(g190725 +g190727 +S'carved' +p190729 +tp190730 +a(g190727 +g190729 +S'not' +p190731 +tp190732 +a(g190729 +g190731 +S'by' +p190733 +tp190734 +a(g190731 +g190733 +S'clodion' +p190735 +tp190736 +a(g190733 +g190735 +S'himself,' +p190737 +tp190738 +a(g190735 +g190737 +S'but' +p190739 +tp190740 +a(g190737 +g190739 +S'by' +p190741 +tp190742 +a(g190739 +g190741 +S'workshop' +p190743 +tp190744 +a(g190741 +g190743 +S'assistants' +p190745 +tp190746 +a(g190743 +g190745 +S'following' +p190747 +tp190748 +a(g190745 +g190747 +S'terracotta' +p190749 +tp190750 +a(g190747 +g190749 +S'models' +p190751 +tp190752 +a(g190749 +g190751 +S'provided' +p190753 +tp190754 +a(g190751 +g190753 +S'by' +p190755 +tp190756 +a(g190753 +g190755 +S'the' +p190757 +tp190758 +a(g190755 +g190757 +S'master,' +p190759 +tp190760 +a(g190757 +g190759 +S'a' +p190761 +tp190762 +a(g190759 +g190761 +S'common' +p190763 +tp190764 +a(g190761 +g190763 +S'procedure' +p190765 +tp190766 +a(g190763 +g190765 +S'in' +p190767 +tp190768 +a(g190765 +g190767 +S'the' +p190769 +tp190770 +a(g190767 +g190769 +S'eighteenth' +p190771 +tp190772 +a(g190769 +g190771 +S'and' +p190773 +tp190774 +a(g190771 +g190773 +S'nineteenth' +p190775 +tp190776 +a(g190773 +g190775 +S'centuries.' +p190777 +tp190778 +a(g190775 +g190777 +S'one' +p190779 +tp190780 +a(g190777 +g190779 +S'of' +p190781 +tp190782 +a(g190779 +g190781 +S"clodion's" +p190783 +tp190784 +a(g190781 +g190783 +S'most' +p190785 +tp190786 +a(g190783 +g190785 +S'beautiful' +p190787 +tp190788 +a(g190785 +g190787 +S'carvings,' +p190789 +tp190790 +a(g190787 +g190789 +S'a' +p190791 +tp190792 +a(g190789 +g190791 +S'vestal' +p190793 +tp190794 +a(g190791 +g190793 +S'virgin' +p190795 +tp190796 +a(g190793 +g190795 +S'made' +p190797 +tp190798 +a(g190795 +g190797 +S'for' +p190799 +tp190800 +a(g190797 +g190799 +S'the' +p190801 +tp190802 +a(g190799 +g190801 +S'russian' +p190803 +tp190804 +a(g190801 +g190803 +S'empress' +p190805 +tp190806 +a(g190803 +g190805 +S'catherine' +p190807 +tp190808 +a(g190805 +g190807 +S'the' +p190809 +tp190810 +a(g190807 +g190809 +S'great,' +p190811 +tp190812 +a(g190809 +g190811 +S'can' +p190813 +tp190814 +a(g190811 +g190813 +S'be' +p190815 +tp190816 +a(g190813 +g190815 +S'seen' +p190817 +tp190818 +a(g190815 +g190817 +S'in' +p190819 +tp190820 +a(g190817 +g190819 +S'the' +p190821 +tp190822 +a(g190819 +g190821 +S'ground-floor' +p190823 +tp190824 +a(g190821 +g190823 +S'galleries.' +p190825 +tp190826 +a(g190823 +g190825 +S'this' +p190827 +tp190828 +a(g190825 +g190827 +S'solemn' +p190829 +tp190830 +a(g190827 +g190829 +S'and' +p190831 +tp190832 +a(g190829 +g190831 +S'heavily' +p190833 +tp190834 +a(g190831 +g190833 +S'draped' +p190835 +tp190836 +a(g190833 +g190835 +S'figure' +p190837 +tp190838 +a(g190835 +g190837 +S'contrasts' +p190839 +tp190840 +a(g190837 +g190839 +S'with' +p190841 +tp190842 +a(g190839 +g190841 +S'the' +p190843 +tp190844 +a(g190841 +g190843 +S'playfully' +p190845 +tp190846 +a(g190843 +g190845 +S'sensuous' +p190847 +tp190848 +a(g190845 +g190847 +S'figure' +p190849 +tp190850 +a(g190847 +g190849 +S'style' +p190851 +tp190852 +a(g190849 +g190851 +S'on' +p190853 +tp190854 +a(g190851 +g190853 +S'these' +p190855 +tp190856 +a(g190853 +g190855 +S'urns.' +p190857 +tp190858 +a(g190855 +g190857 +S'although' +p190859 +tp190860 +a(g190857 +g190859 +S'the' +p190861 +tp190862 +a(g190859 +g190861 +S'identity' +p190863 +tp190864 +a(g190861 +g190863 +S'of' +p190865 +tp190866 +a(g190863 +g190865 +S'the' +p190867 +tp190868 +a(g190865 +g190867 +S'sitter' +p190869 +tp190870 +a(g190867 +g190869 +S'is' +p190871 +tp190872 +a(g190869 +g190871 +S'unknown' +p190873 +tp190874 +a(g190871 +g190873 +S'his' +p190875 +tp190876 +a(g190873 +g190875 +S'elegant' +p190877 +tp190878 +a(g190875 +g190877 +S'dress' +p190879 +tp190880 +a(g190877 +g190879 +S'and' +p190881 +tp190882 +a(g190879 +g190881 +S'bearing' +p190883 +tp190884 +a(g190881 +g190883 +S'suggest' +p190885 +tp190886 +a(g190883 +g190885 +S'that' +p190887 +tp190888 +a(g190885 +g190887 +S'he' +p190889 +tp190890 +a(g190887 +g190889 +S'was' +p190891 +tp190892 +a(g190889 +g190891 +S'an' +p190893 +tp190894 +a(g190891 +g190893 +S'individual' +p190895 +tp190896 +a(g190893 +g190895 +S'of' +p190897 +tp190898 +a(g190895 +g190897 +S'wealth' +p190899 +tp190900 +a(g190897 +g190899 +S'and' +p190901 +tp190902 +a(g190899 +g190901 +S'distinction.' +p190903 +tp190904 +a(g190901 +g190903 +S'the' +p190905 +tp190906 +a(g190903 +g190905 +S'inclusion' +p190907 +tp190908 +a(g190905 +g190907 +S'of' +p190909 +tp190910 +a(g190907 +g190909 +S'a' +p190911 +tp190912 +a(g190909 +g190911 +S'hunting' +p190913 +tp190914 +a(g190911 +g190913 +S'dog' +p190915 +tp190916 +a(g190913 +g190915 +S'was' +p190917 +tp190918 +a(g190915 +g190917 +S'quite' +p190919 +tp190920 +a(g190917 +g190919 +S'common' +p190921 +tp190922 +a(g190919 +g190921 +S'in' +p190923 +tp190924 +a(g190921 +g190923 +S'portraits' +p190925 +tp190926 +a(g190923 +g190925 +S'of' +p190927 +tp190928 +a(g190925 +g190927 +S'aristocrats,' +p190929 +tp190930 +a(g190927 +g190929 +S'and' +p190931 +tp190932 +a(g190929 +g190931 +S'the' +p190933 +tp190934 +a(g190931 +g190933 +S'gold' +p190935 +tp190936 +a(g190933 +g190935 +S'chains' +p190937 +tp190938 +a(g190935 +g190937 +S'are' +p190939 +tp190940 +a(g190937 +g190939 +S'a' +p190941 +tp190942 +a(g190939 +g190941 +S'usual' +p190943 +tp190944 +a(g190941 +g190943 +S'sign' +p190945 +tp190946 +a(g190943 +g190945 +S'of' +p190947 +tp190948 +a(g190945 +g190947 +S'honor.' +p190949 +tp190950 +a(g190947 +g190949 +S'the' +p190951 +tp190952 +a(g190949 +g190951 +S'suggestion' +p190953 +tp190954 +a(g190951 +g190953 +S'of' +p190955 +tp190956 +a(g190953 +g190955 +S'a' +p190957 +tp190958 +a(g190955 +g190957 +S'military' +p190959 +tp190960 +a(g190957 +g190959 +S'identification' +p190961 +tp190962 +a(g190959 +g190961 +S'is' +p190963 +tp190964 +a(g190961 +g190963 +S'enhanced' +p190965 +tp190966 +a(g190963 +g190965 +S'by' +p190967 +tp190968 +a(g190965 +g190967 +S'the' +p190969 +tp190970 +a(g190967 +g190969 +S'gesture' +p190971 +tp190972 +a(g190969 +g190971 +S'of' +p190973 +tp190974 +a(g190971 +g190973 +S'his' +p190975 +tp190976 +a(g190973 +g190975 +S'hand' +p190977 +tp190978 +a(g190975 +g190977 +S'fisted' +p190979 +tp190980 +a(g190977 +g190979 +S'at' +p190981 +tp190982 +a(g190979 +g190981 +S'his' +p190983 +tp190984 +a(g190981 +g190983 +S'waist,' +p190985 +tp190986 +a(g190983 +g190985 +S'and' +p190987 +tp190988 +a(g190985 +g190987 +S'the' +p190989 +tp190990 +a(g190987 +g190989 +S'standing,' +p190991 +tp190992 +a(g190989 +g190991 +S'three-quarter-length' +p190993 +tp190994 +a(g190991 +g190993 +S'pose' +p190995 +tp190996 +a(g190993 +g190995 +S'was' +p190997 +tp190998 +a(g190995 +g190997 +S'generally' +p190999 +tp191000 +a(g190997 +g190999 +S'used' +p191001 +tp191002 +a(g190999 +g191001 +S'by' +p191003 +tp191004 +a(g191001 +g191003 +S'mor' +p191005 +tp191006 +a(g191003 +g191005 +S'in' +p191007 +tp191008 +a(g191005 +g191007 +S'his' +p191009 +tp191010 +a(g191007 +g191009 +S'paintings' +p191011 +tp191012 +a(g191009 +g191011 +S'of' +p191013 +tp191014 +a(g191011 +g191013 +S'aristocrats' +p191015 +tp191016 +a(g191013 +g191015 +S'as' +p191017 +tp191018 +a(g191015 +g191017 +S'opposed' +p191019 +tp191020 +a(g191017 +g191019 +S'to' +p191021 +tp191022 +a(g191019 +g191021 +S'the' +p191023 +tp191024 +a(g191021 +g191023 +S'more' +p191025 +tp191026 +a(g191023 +g191025 +S'informal' +p191027 +tp191028 +a(g191025 +g191027 +S'poses' +p191029 +tp191030 +a(g191027 +g191029 +S'he' +p191031 +tp191032 +a(g191029 +g191031 +S'used' +p191033 +tp191034 +a(g191031 +g191033 +S'in' +p191035 +tp191036 +a(g191033 +g191035 +S'his' +p191037 +tp191038 +a(g191035 +g191037 +S'likenesses' +p191039 +tp191040 +a(g191037 +g191039 +S'of' +p191041 +tp191042 +a(g191039 +g191041 +S'middle-class' +p191043 +tp191044 +a(g191041 +g191043 +S'subjects.' +p191045 +tp191046 +a(g191043 +g191045 +S'the' +p191047 +tp191048 +a(g191045 +g191047 +S'most' +p191049 +tp191050 +a(g191047 +g191049 +S'likely' +p191051 +tp191052 +a(g191049 +g191051 +S'precedent' +p191053 +tp191054 +a(g191051 +g191053 +S'for' +p191055 +tp191056 +a(g191053 +g191055 +S'this' +p191057 +tp191058 +a(g191055 +g191057 +S'painting' +p191059 +tp191060 +a(g191057 +g191059 +S'is' +p191061 +tp191062 +a(g191059 +g191061 +S'the' +p191063 +tp191064 +a(g191061 +g191063 +S'the' +p191065 +tp191066 +a(g191063 +g191065 +S'deft' +p191067 +tp191068 +a(g191065 +g191067 +S'handling' +p191069 +tp191070 +a(g191067 +g191069 +S'of' +p191071 +tp191072 +a(g191069 +g191071 +S'paint' +p191073 +tp191074 +a(g191071 +g191073 +S'and' +p191075 +tp191076 +a(g191073 +g191075 +S'the' +p191077 +tp191078 +a(g191075 +g191077 +S'astute' +p191079 +tp191080 +a(g191077 +g191079 +S'psychological' +p191081 +tp191082 +a(g191079 +g191081 +S'presentation' +p191083 +tp191084 +a(g191081 +g191083 +S'clearly' +p191085 +tp191086 +a(g191083 +g191085 +S'demonstrate' +p191087 +tp191088 +a(g191085 +g191087 +S'why' +p191089 +tp191090 +a(g191087 +g191089 +S'mor' +p191091 +tp191092 +a(g191089 +g191091 +S'was' +p191093 +tp191094 +a(g191091 +g191093 +S'such' +p191095 +tp191096 +a(g191093 +g191095 +S'a' +p191097 +tp191098 +a(g191095 +g191097 +S'sought-after' +p191099 +tp191100 +a(g191097 +g191099 +S'portraitist' +p191101 +tp191102 +a(g191099 +g191101 +S'during' +p191103 +tp191104 +a(g191101 +g191103 +S'the' +p191105 +tp191106 +a(g191103 +g191105 +S'sixteenth' +p191107 +tp191108 +a(g191105 +g191107 +S'century,' +p191109 +tp191110 +a(g191107 +g191109 +S'anticipating' +p191111 +tp191112 +a(g191109 +g191111 +S'the' +p191113 +tp191114 +a(g191111 +g191113 +S'achievements' +p191115 +tp191116 +a(g191113 +g191115 +S'of' +p191117 +tp191118 +a(g191115 +g191117 +S'the' +p191119 +tp191120 +a(g191117 +g191119 +S'great' +p191121 +tp191122 +a(g191119 +g191121 +S'portraitist' +p191123 +tp191124 +a(g191121 +g191123 +S'of' +p191125 +tp191126 +a(g191123 +g191125 +S'the' +p191127 +tp191128 +a(g191125 +g191127 +S'aristocracy' +p191129 +tp191130 +a(g191127 +g191129 +S'in' +p191131 +tp191132 +a(g191129 +g191131 +S'the' +p191133 +tp191134 +a(g191131 +g191133 +S'following' +p191135 +tp191136 +a(g191133 +g191135 +S'century,' +p191137 +tp191138 +a(g191135 +g191137 +S'anthony' +p191139 +tp191140 +a(g191137 +g191139 +S'van' +p191141 +tp191142 +a(g191139 +g191141 +S'dyck.' +p191143 +tp191144 +a(g191141 +g191143 +S'in' +p191145 +tp191146 +a(g191143 +g191145 +S'1888' +p191147 +tp191148 +a(g191145 +g191147 +S'mary' +p191149 +tp191150 +a(g191147 +g191149 +S'cassatt' +p191151 +tp191152 +a(g191149 +g191151 +S'was' +p191153 +tp191154 +a(g191151 +g191153 +S'commissioned' +p191155 +tp191156 +a(g191153 +g191155 +S'to' +p191157 +tp191158 +a(g191155 +g191157 +S'create' +p191159 +tp191160 +a(g191157 +g191159 +S'a' +p191161 +tp191162 +a(g191159 +g191161 +S'the' +p191163 +tp191164 +a(g191161 +g191163 +S'act' +p191165 +tp191166 +a(g191163 +g191165 +S'of' +p191167 +tp191168 +a(g191165 +g191167 +S'plucking' +p191169 +tp191170 +a(g191167 +g191169 +S'the' +p191171 +tp191172 +a(g191169 +g191171 +S'fruit' +p191173 +tp191174 +a(g191171 +g191173 +S'suggests' +p191175 +tp191176 +a(g191173 +g191175 +S"women's" +p191177 +tp191178 +a(g191175 +g191177 +S'opportunities' +p191179 +tp191180 +a(g191177 +g191179 +S'in' +p191181 +tp191182 +a(g191179 +g191181 +S'the' +p191183 +tp191184 +a(g191181 +g191183 +S'modern' +p191185 +tp191186 +a(g191183 +g191185 +S'world' +p191187 +tp191188 +a(g191185 +g191187 +S'to' +p191189 +tp191190 +a(g191187 +g191189 +S'harvest' +p191191 +tp191192 +a(g191189 +g191191 +S'from' +p191193 +tp191194 +a(g191191 +g191193 +S'the' +p191195 +tp191196 +a(g191193 +g191195 +S'tree' +p191197 +tp191198 +a(g191195 +g191197 +S'of' +p191199 +tp191200 +a(g191197 +g191199 +S'knowledge.' +p191201 +tp191202 +a(g191199 +g191201 +S'this' +p191203 +tp191204 +a(g191201 +g191203 +S'was' +p191205 +tp191206 +a(g191203 +g191205 +S'an' +p191207 +tp191208 +a(g191205 +g191207 +S'important' +p191209 +tp191210 +a(g191207 +g191209 +S'element' +p191211 +tp191212 +a(g191209 +g191211 +S'in' +p191213 +tp191214 +a(g191211 +g191213 +S'depicting' +p191215 +tp191216 +a(g191213 +g191215 +S'the' +p191217 +tp191218 +a(g191215 +g191217 +S'role' +p191219 +tp191220 +a(g191217 +g191219 +S'of' +p191221 +tp191222 +a(g191219 +g191221 +S'modern' +p191223 +tp191224 +a(g191221 +g191223 +S'women,' +p191225 +tp191226 +a(g191223 +g191225 +S'who,' +p191227 +tp191228 +a(g191225 +g191227 +S'in' +p191229 +tp191230 +a(g191227 +g191229 +S'the' +p191231 +tp191232 +a(g191229 +g191231 +S'late' +p191233 +tp191234 +a(g191231 +g191233 +S'nineteenth' +p191235 +tp191236 +a(g191233 +g191235 +S'century,' +p191237 +tp191238 +a(g191235 +g191237 +S'were' +p191239 +tp191240 +a(g191237 +g191239 +S'able' +p191241 +tp191242 +a(g191239 +g191241 +S'to' +p191243 +tp191244 +a(g191241 +g191243 +S'enjoy' +p191245 +tp191246 +a(g191243 +g191245 +S'for' +p191247 +tp191248 +a(g191245 +g191247 +S'the' +p191249 +tp191250 +a(g191247 +g191249 +S'first' +p191251 +tp191252 +a(g191249 +g191251 +S'time' +p191253 +tp191254 +a(g191251 +g191253 +S'many' +p191255 +tp191256 +a(g191253 +g191255 +S'new' +p191257 +tp191258 +a(g191255 +g191257 +S'opportunities' +p191259 +tp191260 +a(g191257 +g191259 +S'for' +p191261 +tp191262 +a(g191259 +g191261 +S'formal' +p191263 +tp191264 +a(g191261 +g191263 +S'education.' +p191265 +tp191266 +a(g191263 +g191265 +S'in' +p191267 +tp191268 +a(g191265 +g191267 +S'sharing' +p191269 +tp191270 +a(g191267 +g191269 +S'the' +p191271 +tp191272 +a(g191269 +g191271 +S'fruit' +p191273 +tp191274 +a(g191271 +g191273 +S'with' +p191275 +tp191276 +a(g191273 +g191275 +S'the' +p191277 +tp191278 +a(g191275 +g191277 +S'baby,' +p191279 +tp191280 +a(g191277 +g191279 +S'the' +p191281 +tp191282 +a(g191279 +g191281 +S'woman' +p191283 +tp191284 +a(g191281 +g191283 +S'symbolically' +p191285 +tp191286 +a(g191283 +g191285 +S'passes' +p191287 +tp191288 +a(g191285 +g191287 +S'knowledge' +p191289 +tp191290 +a(g191287 +g191289 +S'from' +p191291 +tp191292 +a(g191289 +g191291 +S'one' +p191293 +tp191294 +a(g191291 +g191293 +S'generation' +p191295 +tp191296 +a(g191293 +g191295 +S'to' +p191297 +tp191298 +a(g191295 +g191297 +S'another.' +p191299 +tp191300 +a(g191297 +g191299 +S'mary' +p191301 +tp191302 +a(g191299 +g191301 +S'cassatt' +p191303 +tp191304 +a(g191301 +g191303 +S'developed' +p191305 +tp191306 +a(g191303 +g191305 +S'this' +p191307 +tp191308 +a(g191305 +g191307 +S'composition' +p191309 +tp191310 +a(g191307 +g191309 +S'without' +p191311 +tp191312 +a(g191309 +g191311 +S'reference' +p191313 +tp191314 +a(g191311 +g191313 +S'to' +p191315 +tp191316 +a(g191313 +g191315 +S'her' +p191317 +tp191318 +a(g191315 +g191317 +S'other' +p191319 +tp191320 +a(g191317 +g191319 +S'works,' +p191321 +tp191322 +a(g191319 +g191321 +S'intending' +p191323 +tp191324 +a(g191321 +g191323 +S'it' +p191325 +tp191326 +a(g191323 +g191325 +S'to' +p191327 +tp191328 +a(g191325 +g191327 +S'be' +p191329 +tp191330 +a(g191327 +g191329 +S'executed' +p191331 +tp191332 +a(g191329 +g191331 +S'specifically' +p191333 +tp191334 +a(g191331 +g191333 +S'in' +p191335 +tp191336 +a(g191333 +g191335 +S'the' +p191337 +tp191338 +a(g191335 +g191337 +S'print' +p191339 +tp191340 +a(g191337 +g191339 +S'by' +p191341 +tp191342 +a(g191339 +g191341 +S'the' +p191343 +tp191344 +a(g191341 +g191343 +S'third' +p191345 +tp191346 +a(g191343 +g191345 +S'here' +p191347 +tp191348 +a(g191345 +g191347 +S"cassatt's" +p191349 +tp191350 +a(g191347 +g191349 +S'treatment' +p191351 +tp191352 +a(g191349 +g191351 +S'of' +p191353 +tp191354 +a(g191351 +g191353 +S'a' +p191355 +tp191356 +a(g191353 +g191355 +S'domestic' +p191357 +tp191358 +a(g191355 +g191357 +S'scene' +p191359 +tp191360 +a(g191357 +g191359 +S'showing' +p191361 +tp191362 +a(g191359 +g191361 +S'a' +p191363 +tp191364 +a(g191361 +g191363 +S'single' +p191365 +tp191366 +a(g191363 +g191365 +S'figure' +p191367 +tp191368 +a(g191365 +g191367 +S'is' +p191369 +tp191370 +a(g191367 +g191369 +S'unusual' +p191371 +tp191372 +a(g191369 +g191371 +S'in' +p191373 +tp191374 +a(g191371 +g191373 +S'that' +p191375 +tp191376 +a(g191373 +g191375 +S'emphasis' +p191377 +tp191378 +a(g191375 +g191377 +S'is' +p191379 +tp191380 +a(g191377 +g191379 +S'placed' +p191381 +tp191382 +a(g191379 +g191381 +S'on' +p191383 +tp191384 +a(g191381 +g191383 +S'the' +p191385 +tp191386 +a(g191383 +g191385 +S'nape' +p191387 +tp191388 +a(g191385 +g191387 +S'of' +p191389 +tp191390 +a(g191387 +g191389 +S'the' +p191391 +tp191392 +a(g191389 +g191391 +S'neck,' +p191393 +tp191394 +a(g191391 +g191393 +S'a' +p191395 +tp191396 +a(g191393 +g191395 +S'symbol' +p191397 +tp191398 +a(g191395 +g191397 +S'of' +p191399 +tp191400 +a(g191397 +g191399 +S'beauty' +p191401 +tp191402 +a(g191399 +g191401 +S'in' +p191403 +tp191404 +a(g191401 +g191403 +S'oriental' +p191405 +tp191406 +a(g191403 +g191405 +S'art.' +p191407 +tp191408 +a(g191405 +g191407 +S'other' +p191409 +tp191410 +a(g191407 +g191409 +S'japanesque' +p191411 +tp191412 +a(g191409 +g191411 +S'elements' +p191413 +tp191414 +a(g191411 +g191413 +S'are' +p191415 +tp191416 +a(g191413 +g191415 +S'the' +p191417 +tp191418 +a(g191415 +g191417 +S'lamp' +p191419 +tp191420 +a(g191417 +g191419 +S'table' +p191421 +tp191422 +a(g191419 +g191421 +S'and' +p191423 +tp191424 +a(g191421 +g191423 +S'the' +p191425 +tp191426 +a(g191423 +g191425 +S'ceramic' +p191427 +tp191428 +a(g191425 +g191427 +S'ornaments,' +p191429 +tp191430 +a(g191427 +g191429 +S'as' +p191431 +tp191432 +a(g191429 +g191431 +S'well' +p191433 +tp191434 +a(g191431 +g191433 +S'as' +p191435 +tp191436 +a(g191433 +g191435 +S'the' +p191437 +tp191438 +a(g191435 +g191437 +S'echoing' +p191439 +tp191440 +a(g191437 +g191439 +S'curves' +p191441 +tp191442 +a(g191439 +g191441 +S'of' +p191443 +tp191444 +a(g191441 +g191443 +S'the' +p191445 +tp191446 +a(g191443 +g191445 +S'lampshade,' +p191447 +tp191448 +a(g191445 +g191447 +S'fan,' +p191449 +tp191450 +a(g191447 +g191449 +S'and' +p191451 +tp191452 +a(g191449 +g191451 +S'sofa.' +p191453 +tp191454 +a(g191451 +g191453 +S'girl' +p191455 +tp191456 +a(g191453 +g191455 +S'with' +p191457 +tp191458 +a(g191455 +g191457 +S'the' +p191459 +tp191460 +a(g191457 +g191459 +S'red' +p191461 +tp191462 +a(g191459 +g191461 +S'hat' +p191463 +tp191464 +a(g191461 +g191463 +S'vermeer' +p191465 +tp191466 +a(g191463 +g191465 +S'also' +p191467 +tp191468 +a(g191465 +g191467 +S'owned' +p191469 +tp191470 +a(g191467 +g191469 +S'an' +p191471 +tp191472 +a(g191469 +g191471 +S'art' +p191473 +tp191474 +a(g191471 +g191473 +S'dealership.' +p191475 +tp191476 +a(g191473 +g191475 +S'no' +p191477 +tp191478 +a(g191475 +g191477 +S'documentation' +p191479 +tp191480 +a(g191477 +g191479 +S'of' +p191481 +tp191482 +a(g191479 +g191481 +S'his' +p191483 +tp191484 +a(g191481 +g191483 +S'artistic' +p191485 +tp191486 +a(g191483 +g191485 +S'training' +p191487 +tp191488 +a(g191485 +g191487 +S'or' +p191489 +tp191490 +a(g191487 +g191489 +S'apprenticeship' +p191491 +tp191492 +a(g191489 +g191491 +S'exists,' +p191493 +tp191494 +a(g191491 +g191493 +S'but' +p191495 +tp191496 +a(g191493 +g191495 +S'in' +p191497 +tp191498 +a(g191495 +g191497 +S'1653' +p191499 +tp191500 +a(g191497 +g191499 +S'he' +p191501 +tp191502 +a(g191499 +g191501 +S'became' +p191503 +tp191504 +a(g191501 +g191503 +S'a' +p191505 +tp191506 +a(g191503 +g191505 +S'master' +p191507 +tp191508 +a(g191505 +g191507 +S'in' +p191509 +tp191510 +a(g191507 +g191509 +S'the' +p191511 +tp191512 +a(g191509 +g191511 +S'saint' +p191513 +tp191514 +a(g191511 +g191513 +S'luke\xe2\x80\x99s' +p191515 +tp191516 +a(g191513 +g191515 +S'guild,' +p191517 +tp191518 +a(g191515 +g191517 +S'a' +p191519 +tp191520 +a(g191517 +g191519 +S'professional' +p191521 +tp191522 +a(g191519 +g191521 +S'artists\xe2\x80\x99' +p191523 +tp191524 +a(g191521 +g191523 +S'trade' +p191525 +tp191526 +a(g191523 +g191525 +S'organization.' +p191527 +tp191528 +a(g191525 +g191527 +S'in' +p191529 +tp191530 +a(g191527 +g191529 +S'the' +p191531 +tp191532 +a(g191529 +g191531 +S'1660s' +p191533 +tp191534 +a(g191531 +g191533 +S'and' +p191535 +tp191536 +a(g191533 +g191535 +S'1670s' +p191537 +tp191538 +a(g191535 +g191537 +S'he' +p191539 +tp191540 +a(g191537 +g191539 +S'served' +p191541 +tp191542 +a(g191539 +g191541 +S'four' +p191543 +tp191544 +a(g191541 +g191543 +S'terms' +p191545 +tp191546 +a(g191543 +g191545 +S'as' +p191547 +tp191548 +a(g191545 +g191547 +S'head' +p191549 +tp191550 +a(g191547 +g191549 +S'of' +p191551 +tp191552 +a(g191549 +g191551 +S'the' +p191553 +tp191554 +a(g191551 +g191553 +S'guild.' +p191555 +tp191556 +a(g191553 +g191555 +S'in' +p191557 +tp191558 +a(g191555 +g191557 +S'his' +p191559 +tp191560 +a(g191557 +g191559 +S'lifetime,' +p191561 +tp191562 +a(g191559 +g191561 +S'vermeer\xe2\x80\x99s' +p191563 +tp191564 +a(g191561 +g191563 +S'small' +p191565 +tp191566 +a(g191563 +g191565 +S'oeuvre' +p191567 +tp191568 +a(g191565 +g191567 +S'was' +p191569 +tp191570 +a(g191567 +g191569 +S'well' +p191571 +tp191572 +a(g191569 +g191571 +S'regarded' +p191573 +tp191574 +a(g191571 +g191573 +S'by' +p191575 +tp191576 +a(g191573 +g191575 +S'connoisseurs,' +p191577 +tp191578 +a(g191575 +g191577 +S'but' +p191579 +tp191580 +a(g191577 +g191579 +S'only' +p191581 +tp191582 +a(g191579 +g191581 +S'in' +p191583 +tp191584 +a(g191581 +g191583 +S'the' +p191585 +tp191586 +a(g191583 +g191585 +S'late' +p191587 +tp191588 +a(g191585 +g191587 +S'nineteenth' +p191589 +tp191590 +a(g191587 +g191589 +S'century' +p191591 +tp191592 +a(g191589 +g191591 +S'did' +p191593 +tp191594 +a(g191591 +g191593 +S'his' +p191595 +tp191596 +a(g191593 +g191595 +S'intimate' +p191597 +tp191598 +a(g191595 +g191597 +S'genre' +p191599 +tp191600 +a(g191597 +g191599 +S'scenes' +p191601 +tp191602 +a(g191599 +g191601 +S'and' +p191603 +tp191604 +a(g191601 +g191603 +S'quiet' +p191605 +tp191606 +a(g191603 +g191605 +S'cityscapes' +p191607 +tp191608 +a(g191605 +g191607 +S'become' +p191609 +tp191610 +a(g191607 +g191609 +S'world' +p191611 +tp191612 +a(g191609 +g191611 +S'renowned.' +p191613 +tp191614 +a(g191611 +g191613 +S'the' +p191615 +tp191616 +a(g191613 +g191615 +S'serenity' +p191617 +tp191618 +a(g191615 +g191617 +S'and' +p191619 +tp191620 +a(g191617 +g191619 +S'self-confidence' +p191621 +tp191622 +a(g191619 +g191621 +S'characteristic' +p191623 +tp191624 +a(g191621 +g191623 +S'of' +p191625 +tp191626 +a(g191623 +g191625 +S'dutch' +p191627 +tp191628 +a(g191625 +g191627 +S'art' +p191629 +tp191630 +a(g191627 +g191629 +S'of' +p191631 +tp191632 +a(g191629 +g191631 +S'the' +p191633 +tp191634 +a(g191631 +g191633 +S'mid-seventeenth' +p191635 +tp191636 +a(g191633 +g191635 +S'century' +p191637 +tp191638 +a(g191635 +g191637 +S'are' +p191639 +tp191640 +a(g191637 +g191639 +S'admirably' +p191641 +tp191642 +a(g191639 +g191641 +S'expressed' +p191643 +tp191644 +a(g191641 +g191643 +S'in' +p191645 +tp191646 +a(g191643 +g191645 +S'this' +p191647 +tp191648 +a(g191645 +g191647 +S'representation' +p191649 +tp191650 +a(g191647 +g191649 +S'of' +p191651 +tp191652 +a(g191649 +g191651 +S'a' +p191653 +tp191654 +a(g191651 +g191653 +S'middle-class' +p191655 +tp191656 +a(g191653 +g191655 +S'courtyard' +p191657 +tp191658 +a(g191655 +g191657 +S'in' +p191659 +tp191660 +a(g191657 +g191659 +S'delft.' +p191661 +tp191662 +a(g191659 +g191661 +S'the' +p191663 +tp191664 +a(g191661 +g191663 +S'woman' +p191665 +tp191666 +a(g191663 +g191665 +S'takes' +p191667 +tp191668 +a(g191665 +g191667 +S'time' +p191669 +tp191670 +a(g191667 +g191669 +S'from' +p191671 +tp191672 +a(g191669 +g191671 +S'her' +p191673 +tp191674 +a(g191671 +g191673 +S'round' +p191675 +tp191676 +a(g191673 +g191675 +S'of' +p191677 +tp191678 +a(g191675 +g191677 +S'chores' +p191679 +tp191680 +a(g191677 +g191679 +S'to' +p191681 +tp191682 +a(g191679 +g191681 +S'share' +p191683 +tp191684 +a(g191681 +g191683 +S'a' +p191685 +tp191686 +a(g191683 +g191685 +S'drink' +p191687 +tp191688 +a(g191685 +g191687 +S'with' +p191689 +tp191690 +a(g191687 +g191689 +S'two' +p191691 +tp191692 +a(g191689 +g191691 +S'men' +p191693 +tp191694 +a(g191691 +g191693 +S'relaxing' +p191695 +tp191696 +a(g191693 +g191695 +S'in' +p191697 +tp191698 +a(g191695 +g191697 +S'the' +p191699 +tp191700 +a(g191697 +g191699 +S'pale' +p191701 +tp191702 +a(g191699 +g191701 +S'sunlight;' +p191703 +tp191704 +a(g191701 +g191703 +S'the' +p191705 +tp191706 +a(g191703 +g191705 +S'little' +p191707 +tp191708 +a(g191705 +g191707 +S'girl' +p191709 +tp191710 +a(g191707 +g191709 +S'brings' +p191711 +tp191712 +a(g191709 +g191711 +S'coals' +p191713 +tp191714 +a(g191711 +g191713 +S'for' +p191715 +tp191716 +a(g191713 +g191715 +S'their' +p191717 +tp191718 +a(g191715 +g191717 +S'pipes.' +p191719 +tp191720 +a(g191717 +g191719 +S'de' +p191721 +tp191722 +a(g191719 +g191721 +S'hooch' +p191723 +tp191724 +a(g191721 +g191723 +S'worked' +p191725 +tp191726 +a(g191723 +g191725 +S'in' +p191727 +tp191728 +a(g191725 +g191727 +S'delft' +p191729 +tp191730 +a(g191727 +g191729 +S'from' +p191731 +tp191732 +a(g191729 +g191731 +S'1652' +p191733 +tp191734 +a(g191731 +g191733 +S'to' +p191735 +tp191736 +a(g191733 +g191735 +S'about' +p191737 +tp191738 +a(g191735 +g191737 +S'1660' +p191739 +tp191740 +a(g191737 +g191739 +S'when' +p191741 +tp191742 +a(g191739 +g191741 +S'he' +p191743 +tp191744 +a(g191741 +g191743 +S'moved' +p191745 +tp191746 +a(g191743 +g191745 +S'to' +p191747 +tp191748 +a(g191745 +g191747 +S'amsterdam.' +p191749 +tp191750 +a(g191747 +g191749 +S'in' +p191751 +tp191752 +a(g191749 +g191751 +S'the' +p191753 +tp191754 +a(g191751 +g191753 +S'1650s,' +p191755 +tp191756 +a(g191753 +g191755 +S'together' +p191757 +tp191758 +a(g191755 +g191757 +S'with' +p191759 +tp191760 +a(g191757 +g191759 +S'other' +p191761 +tp191762 +a(g191759 +g191761 +S'artists' +p191763 +tp191764 +a(g191761 +g191763 +S'active' +p191765 +tp191766 +a(g191763 +g191765 +S'in' +p191767 +tp191768 +a(g191765 +g191767 +S'that' +p191769 +tp191770 +a(g191767 +g191769 +S'small' +p191771 +tp191772 +a(g191769 +g191771 +S'and' +p191773 +tp191774 +a(g191771 +g191773 +S'relatively' +p191775 +tp191776 +a(g191773 +g191775 +S'quiet' +p191777 +tp191778 +a(g191775 +g191777 +S'city,' +p191779 +tp191780 +a(g191777 +g191779 +S'notably' +p191781 +tp191782 +a(g191779 +g191781 +S'carel' +p191783 +tp191784 +a(g191781 +g191783 +S'fabritius' +p191785 +tp191786 +a(g191783 +g191785 +S'and' +p191787 +tp191788 +a(g191785 +g191787 +S'johannes' +p191789 +tp191790 +a(g191787 +g191789 +S'vermeer,' +p191791 +tp191792 +a(g191789 +g191791 +S'he' +p191793 +tp191794 +a(g191791 +g191793 +S'painted' +p191795 +tp191796 +a(g191793 +g191795 +S'everyday' +p191797 +tp191798 +a(g191795 +g191797 +S'scenes' +p191799 +tp191800 +a(g191797 +g191799 +S'remarkable' +p191801 +tp191802 +a(g191799 +g191801 +S'for' +p191803 +tp191804 +a(g191801 +g191803 +S'their' +p191805 +tp191806 +a(g191803 +g191805 +S'clarity' +p191807 +tp191808 +a(g191805 +g191807 +S'of' +p191809 +tp191810 +a(g191807 +g191809 +S'perspective' +p191811 +tp191812 +a(g191809 +g191811 +S'and' +p191813 +tp191814 +a(g191811 +g191813 +S'harmony' +p191815 +tp191816 +a(g191813 +g191815 +S'of' +p191817 +tp191818 +a(g191815 +g191817 +S'light.' +p191819 +tp191820 +a(g191817 +g191819 +S'de' +p191821 +tp191822 +a(g191819 +g191821 +S'hooch' +p191823 +tp191824 +a(g191821 +g191823 +S'gave' +p191825 +tp191826 +a(g191823 +g191825 +S'order' +p191827 +tp191828 +a(g191825 +g191827 +S'to' +p191829 +tp191830 +a(g191827 +g191829 +S'his' +p191831 +tp191832 +a(g191829 +g191831 +S'compositions' +p191833 +tp191834 +a(g191831 +g191833 +S'by' +p191835 +tp191836 +a(g191833 +g191835 +S'carefully' +p191837 +tp191838 +a(g191835 +g191837 +S'determining' +p191839 +tp191840 +a(g191837 +g191839 +S'how' +p191841 +tp191842 +a(g191839 +g191841 +S'his' +p191843 +tp191844 +a(g191841 +g191843 +S'architectural' +p191845 +tp191846 +a(g191843 +g191845 +S'elements' +p191847 +tp191848 +a(g191845 +g191847 +S'should' +p191849 +tp191850 +a(g191847 +g191849 +S'be' +p191851 +tp191852 +a(g191849 +g191851 +S'placed.' +p191853 +tp191854 +a(g191851 +g191853 +S'the' +p191855 +tp191856 +a(g191853 +g191855 +S'position' +p191857 +tp191858 +a(g191855 +g191857 +S'of' +p191859 +tp191860 +a(g191857 +g191859 +S'doors,' +p191861 +tp191862 +a(g191859 +g191861 +S'windows' +p191863 +tp191864 +a(g191861 +g191863 +S'and' +p191865 +tp191866 +a(g191863 +g191865 +S'their' +p191867 +tp191868 +a(g191865 +g191867 +S'shutters,' +p191869 +tp191870 +a(g191867 +g191869 +S'floor' +p191871 +tp191872 +a(g191869 +g191871 +S'tiles,' +p191873 +tp191874 +a(g191871 +g191873 +S'or' +p191875 +tp191876 +a(g191873 +g191875 +S'bricks' +p191877 +tp191878 +a(g191875 +g191877 +S'were' +p191879 +tp191880 +a(g191877 +g191879 +S'all' +p191881 +tp191882 +a(g191879 +g191881 +S'carefully' +p191883 +tp191884 +a(g191881 +g191883 +S'calculated' +p191885 +tp191886 +a(g191883 +g191885 +S'and' +p191887 +tp191888 +a(g191885 +g191887 +S'painted.' +p191889 +tp191890 +a(g191887 +g191889 +S'as' +p191891 +tp191892 +a(g191889 +g191891 +S'in' +p191893 +tp191894 +a(g191891 +g191893 +S'this' +p191895 +tp191896 +a(g191893 +g191895 +S'example,' +p191897 +tp191898 +a(g191895 +g191897 +S'he' +p191899 +tp191900 +a(g191897 +g191899 +S'often' +p191901 +tp191902 +a(g191899 +g191901 +S'suggested' +p191903 +tp191904 +a(g191901 +g191903 +S'a' +p191905 +tp191906 +a(g191903 +g191905 +S'sequence' +p191907 +tp191908 +a(g191905 +g191907 +S'of' +p191909 +tp191910 +a(g191907 +g191909 +S'ordered' +p191911 +tp191912 +a(g191909 +g191911 +S'spaces' +p191913 +tp191914 +a(g191911 +g191913 +S'by' +p191915 +tp191916 +a(g191913 +g191915 +S'showing' +p191917 +tp191918 +a(g191915 +g191917 +S'distant' +p191919 +tp191920 +a(g191917 +g191919 +S'views' +p191921 +tp191922 +a(g191919 +g191921 +S'through' +p191923 +tp191924 +a(g191921 +g191923 +S'windows' +p191925 +tp191926 +a(g191923 +g191925 +S'or' +p191927 +tp191928 +a(g191925 +g191927 +S'doors.' +p191929 +tp191930 +a(g191927 +g191929 +S'despite' +p191931 +tp191932 +a(g191929 +g191931 +S'the' +p191933 +tp191934 +a(g191931 +g191933 +S'realistic' +p191935 +tp191936 +a(g191933 +g191935 +S'appearance' +p191937 +tp191938 +a(g191935 +g191937 +S'of' +p191939 +tp191940 +a(g191937 +g191939 +S'the' +p191941 +tp191942 +a(g191939 +g191941 +S'scene,' +p191943 +tp191944 +a(g191941 +g191943 +S'this' +p191945 +tp191946 +a(g191943 +g191945 +S'courtyard' +p191947 +tp191948 +a(g191945 +g191947 +S'view' +p191949 +tp191950 +a(g191947 +g191949 +S'is' +p191951 +tp191952 +a(g191949 +g191951 +S'a' +p191953 +tp191954 +a(g191951 +g191953 +S'distillation' +p191955 +tp191956 +a(g191953 +g191955 +S'of' +p191957 +tp191958 +a(g191955 +g191957 +S'typical' +p191959 +tp191960 +a(g191957 +g191959 +S'elements' +p191961 +tp191962 +a(g191959 +g191961 +S'found' +p191963 +tp191964 +a(g191961 +g191963 +S'in' +p191965 +tp191966 +a(g191963 +g191965 +S'many' +p191967 +tp191968 +a(g191965 +g191967 +S'of' +p191969 +tp191970 +a(g191967 +g191969 +S'de' +p191971 +tp191972 +a(g191969 +g191971 +S"hooch's" +p191973 +tp191974 +a(g191971 +g191973 +S'courtyard' +p191975 +tp191976 +a(g191973 +g191975 +S'paintings.' +p191977 +tp191978 +a(g191975 +g191977 +S'thus,' +p191979 +tp191980 +a(g191977 +g191979 +S'even' +p191981 +tp191982 +a(g191979 +g191981 +S'though' +p191983 +tp191984 +a(g191981 +g191983 +S'the' +p191985 +tp191986 +a(g191983 +g191985 +S'tower' +p191987 +tp191988 +a(g191985 +g191987 +S'of' +p191989 +tp191990 +a(g191987 +g191989 +S'the' +p191991 +tp191992 +a(g191989 +g191991 +S'nieuwe' +p191993 +tp191994 +a(g191991 +g191993 +S'kerk' +p191995 +tp191996 +a(g191993 +g191995 +S'appears' +p191997 +tp191998 +a(g191995 +g191997 +S'in' +p191999 +tp192000 +a(g191997 +g191999 +S'the' +p192001 +tp192002 +a(g191999 +g192001 +S'left' +p192003 +tp192004 +a(g192001 +g192003 +S'background,' +p192005 +tp192006 +a(g192003 +g192005 +S'it' +p192007 +tp192008 +a(g192005 +g192007 +S'is' +p192009 +tp192010 +a(g192007 +g192009 +S'unlikely' +p192011 +tp192012 +a(g192009 +g192011 +S'that' +p192013 +tp192014 +a(g192011 +g192013 +S'this' +p192015 +tp192016 +a(g192013 +g192015 +S'view' +p192017 +tp192018 +a(g192015 +g192017 +S'ever' +p192019 +tp192020 +a(g192017 +g192019 +S'existed' +p192021 +tp192022 +a(g192019 +g192021 +S'or' +p192023 +tp192024 +a(g192021 +g192023 +S'that' +p192025 +tp192026 +a(g192023 +g192025 +S'the' +p192027 +tp192028 +a(g192025 +g192027 +S'exact' +p192029 +tp192030 +a(g192027 +g192029 +S'location' +p192031 +tp192032 +a(g192029 +g192031 +S'of' +p192033 +tp192034 +a(g192031 +g192033 +S'the' +p192035 +tp192036 +a(g192033 +g192035 +S'courtyard' +p192037 +tp192038 +a(g192035 +g192037 +S'could' +p192039 +tp192040 +a(g192037 +g192039 +S'be' +p192041 +tp192042 +a(g192039 +g192041 +S'found.' +p192043 +tp192044 +a(g192041 +g192043 +S'the' +p192045 +tp192046 +a(g192043 +g192045 +S'protestant' +p192047 +tp192048 +a(g192045 +g192047 +S'dutch' +p192049 +tp192050 +a(g192047 +g192049 +S'had' +p192051 +tp192052 +a(g192049 +g192051 +S'a' +p192053 +tp192054 +a(g192051 +g192053 +S'reputation' +p192055 +tp192056 +a(g192053 +g192055 +S'for' +p192057 +tp192058 +a(g192055 +g192057 +S'strict' +p192059 +tp192060 +a(g192057 +g192059 +S'social' +p192061 +tp192062 +a(g192059 +g192061 +S'conduct.' +p192063 +tp192064 +a(g192061 +g192063 +S'demonstrations' +p192065 +tp192066 +a(g192063 +g192065 +S'of' +p192067 +tp192068 +a(g192065 +g192067 +S'emotion' +p192069 +tp192070 +a(g192067 +g192069 +S'were' +p192071 +tp192072 +a(g192069 +g192071 +S'encouraged' +p192073 +tp192074 +a(g192071 +g192073 +S'only' +p192075 +tp192076 +a(g192073 +g192075 +S'on' +p192077 +tp192078 +a(g192075 +g192077 +S'rare' +p192079 +tp192080 +a(g192077 +g192079 +S'occasions' +p192081 +tp192082 +a(g192079 +g192081 +S'such' +p192083 +tp192084 +a(g192081 +g192083 +S'as' +p192085 +tp192086 +a(g192083 +g192085 +S'betrothal,' +p192087 +tp192088 +a(g192085 +g192087 +S'when' +p192089 +tp192090 +a(g192087 +g192089 +S'a' +p192091 +tp192092 +a(g192089 +g192091 +S'suitor' +p192093 +tp192094 +a(g192091 +g192093 +S'must' +p192095 +tp192096 +a(g192093 +g192095 +S'prove' +p192097 +tp192098 +a(g192095 +g192097 +S'his' +p192099 +tp192100 +a(g192097 +g192099 +S'passion.' +p192101 +tp192102 +a(g192099 +g192101 +S'this' +p192103 +tp192104 +a(g192101 +g192103 +S'painting' +p192105 +tp192106 +a(g192103 +g192105 +S'chronicles' +p192107 +tp192108 +a(g192105 +g192107 +S'such' +p192109 +tp192110 +a(g192107 +g192109 +S'a' +p192111 +tp192112 +a(g192109 +g192111 +S'prearranged' +p192113 +tp192114 +a(g192111 +g192113 +S'“transgression”' +p192115 +tp192116 +a(g192113 +g192115 +S'among' +p192117 +tp192118 +a(g192115 +g192117 +S'the' +p192119 +tp192120 +a(g192117 +g192119 +S'wealthy' +p192121 +tp192122 +a(g192119 +g192121 +S'classes' +p192123 +tp192124 +a(g192121 +g192123 +S'of' +p192125 +tp192126 +a(g192123 +g192125 +S'amsterdam.' +p192127 +tp192128 +a(g192125 +g192127 +S'a' +p192129 +tp192130 +a(g192127 +g192129 +S'cavalier' +p192131 +tp192132 +a(g192129 +g192131 +S'bursts' +p192133 +tp192134 +a(g192131 +g192133 +S'into' +p192135 +tp192136 +a(g192133 +g192135 +S'his' +p192137 +tp192138 +a(g192135 +g192137 +S'beloved’s' +p192139 +tp192140 +a(g192137 +g192139 +S'bedroom,' +p192141 +tp192142 +a(g192139 +g192141 +S'much' +p192143 +tp192144 +a(g192141 +g192143 +S'to' +p192145 +tp192146 +a(g192143 +g192145 +S'the' +p192147 +tp192148 +a(g192145 +g192147 +S'amusement' +p192149 +tp192150 +a(g192147 +g192149 +S'of' +p192151 +tp192152 +a(g192149 +g192151 +S'an' +p192153 +tp192154 +a(g192151 +g192153 +S'older' +p192155 +tp192156 +a(g192153 +g192155 +S'woman,' +p192157 +tp192158 +a(g192155 +g192157 +S'perhaps' +p192159 +tp192160 +a(g192157 +g192159 +S'her' +p192161 +tp192162 +a(g192159 +g192161 +S'mother.' +p192163 +tp192164 +a(g192161 +g192163 +S'a' +p192165 +tp192166 +a(g192163 +g192165 +S'housekeeper,' +p192167 +tp192168 +a(g192165 +g192167 +S'identified' +p192169 +tp192170 +a(g192167 +g192169 +S'by' +p192171 +tp192172 +a(g192169 +g192171 +S'keys' +p192173 +tp192174 +a(g192171 +g192173 +S'dangling' +p192175 +tp192176 +a(g192173 +g192175 +S'from' +p192177 +tp192178 +a(g192175 +g192177 +S'her' +p192179 +tp192180 +a(g192177 +g192179 +S'apron,' +p192181 +tp192182 +a(g192179 +g192181 +S'playfully' +p192183 +tp192184 +a(g192181 +g192183 +S'pretends' +p192185 +tp192186 +a(g192183 +g192185 +S'to' +p192187 +tp192188 +a(g192185 +g192187 +S'restrain' +p192189 +tp192190 +a(g192187 +g192189 +S'him.' +p192191 +tp192192 +a(g192189 +g192191 +S'the' +p192193 +tp192194 +a(g192191 +g192193 +S'sumptuous' +p192195 +tp192196 +a(g192193 +g192195 +S'bedroom' +p192197 +tp192198 +a(g192195 +g192197 +S'contains' +p192199 +tp192200 +a(g192197 +g192199 +S'a' +p192201 +tp192202 +a(g192199 +g192201 +S'number' +p192203 +tp192204 +a(g192201 +g192203 +S'of' +p192205 +tp192206 +a(g192203 +g192205 +S'objects' +p192207 +tp192208 +a(g192205 +g192207 +S'serving' +p192209 +tp192210 +a(g192207 +g192209 +S'as' +p192211 +tp192212 +a(g192209 +g192211 +S'symbols' +p192213 +tp192214 +a(g192211 +g192213 +S'that' +p192215 +tp192216 +a(g192213 +g192215 +S'would' +p192217 +tp192218 +a(g192215 +g192217 +S'be' +p192219 +tp192220 +a(g192217 +g192219 +S'immediately' +p192221 +tp192222 +a(g192219 +g192221 +S'understood' +p192223 +tp192224 +a(g192221 +g192223 +S'in' +p192225 +tp192226 +a(g192223 +g192225 +S'metsu’s' +p192227 +tp192228 +a(g192225 +g192227 +S'society.' +p192229 +tp192230 +a(g192227 +g192229 +S'the' +p192231 +tp192232 +a(g192229 +g192231 +S'dog' +p192233 +tp192234 +a(g192231 +g192233 +S'is' +p192235 +tp192236 +a(g192233 +g192235 +S'surely' +p192237 +tp192238 +a(g192235 +g192237 +S'an' +p192239 +tp192240 +a(g192237 +g192239 +S'emblem' +p192241 +tp192242 +a(g192239 +g192241 +S'of' +p192243 +tp192244 +a(g192241 +g192243 +S'fidelity,' +p192245 +tp192246 +a(g192243 +g192245 +S'while' +p192247 +tp192248 +a(g192245 +g192247 +S'the' +p192249 +tp192250 +a(g192247 +g192249 +S'unlit' +p192251 +tp192252 +a(g192249 +g192251 +S'candle' +p192253 +tp192254 +a(g192251 +g192253 +S'implies' +p192255 +tp192256 +a(g192253 +g192255 +S'virginity.' +p192257 +tp192258 +a(g192255 +g192257 +S'to' +p192259 +tp192260 +a(g192257 +g192259 +S'maintain' +p192261 +tp192262 +a(g192259 +g192261 +S'order' +p192263 +tp192264 +a(g192261 +g192263 +S'in' +p192265 +tp192266 +a(g192263 +g192265 +S'this' +p192267 +tp192268 +a(g192265 +g192267 +S'complex' +p192269 +tp192270 +a(g192267 +g192269 +S'pantomime,' +p192271 +tp192272 +a(g192269 +g192271 +S'which' +p192273 +tp192274 +a(g192271 +g192273 +S'is' +p192275 +tp192276 +a(g192273 +g192275 +S'metsu’s' +p192277 +tp192278 +a(g192275 +g192277 +S'most' +p192279 +tp192280 +a(g192277 +g192279 +S'elaborate' +p192281 +tp192282 +a(g192279 +g192281 +S'composition,' +p192283 +tp192284 +a(g192281 +g192283 +S'the' +p192285 +tp192286 +a(g192283 +g192285 +S'figures' +p192287 +tp192288 +a(g192285 +g192287 +S'are' +p192289 +tp192290 +a(g192287 +g192289 +S'arranged' +p192291 +tp192292 +a(g192289 +g192291 +S'along' +p192293 +tp192294 +a(g192291 +g192293 +S'a' +p192295 +tp192296 +a(g192293 +g192295 +S'diagonal' +p192297 +tp192298 +a(g192295 +g192297 +S'axis.' +p192299 +tp192300 +a(g192297 +g192299 +S'metsu’s' +p192301 +tp192302 +a(g192299 +g192301 +S'style' +p192303 +tp192304 +a(g192301 +g192303 +S'was' +p192305 +tp192306 +a(g192303 +g192305 +S'influenced' +p192307 +tp192308 +a(g192305 +g192307 +S'by' +p192309 +tp192310 +a(g192307 +g192309 +S'gerard' +p192311 +tp192312 +a(g192309 +g192311 +S'ter' +p192313 +tp192314 +a(g192311 +g192313 +S'borch,' +p192315 +tp192316 +a(g192313 +g192315 +S'whose' +p192317 +tp192318 +a(g192315 +g192317 +S'dutch' +p192319 +tp192320 +a(g192317 +g192319 +S'seventeenth–century' +p192321 +tp192322 +a(g192319 +g192321 +S'artists' +p192323 +tp192324 +a(g192321 +g192323 +S'drew' +p192325 +tp192326 +a(g192323 +g192325 +S'their' +p192327 +tp192328 +a(g192325 +g192327 +S'subject' +p192329 +tp192330 +a(g192327 +g192329 +S'matter' +p192331 +tp192332 +a(g192329 +g192331 +S'from' +p192333 +tp192334 +a(g192331 +g192333 +S'all' +p192335 +tp192336 +a(g192333 +g192335 +S'elements' +p192337 +tp192338 +a(g192335 +g192337 +S'of' +p192339 +tp192340 +a(g192337 +g192339 +S'society.' +p192341 +tp192342 +a(g192339 +g192341 +S'the' +p192343 +tp192344 +a(g192341 +g192343 +S'artist' +p192345 +tp192346 +a(g192343 +g192345 +S'who' +p192347 +tp192348 +a(g192345 +g192347 +S'best' +p192349 +tp192350 +a(g192347 +g192349 +S'captured' +p192351 +tp192352 +a(g192349 +g192351 +S'the' +p192353 +tp192354 +a(g192351 +g192353 +S'refinement' +p192355 +tp192356 +a(g192353 +g192355 +S'of' +p192357 +tp192358 +a(g192355 +g192357 +S'the' +p192359 +tp192360 +a(g192357 +g192359 +S'wealthy' +p192361 +tp192362 +a(g192359 +g192361 +S'bourgeoisie' +p192363 +tp192364 +a(g192361 +g192363 +S'in' +p192365 +tp192366 +a(g192363 +g192365 +S'the' +p192367 +tp192368 +a(g192365 +g192367 +S'second' +p192369 +tp192370 +a(g192367 +g192369 +S'half' +p192371 +tp192372 +a(g192369 +g192371 +S'of' +p192373 +tp192374 +a(g192371 +g192373 +S'the' +p192375 +tp192376 +a(g192373 +g192375 +S'century' +p192377 +tp192378 +a(g192375 +g192377 +S'was' +p192379 +tp192380 +a(g192377 +g192379 +S'gerard' +p192381 +tp192382 +a(g192379 +g192381 +S'ter' +p192383 +tp192384 +a(g192381 +g192383 +S'borch.' +p192385 +tp192386 +a(g192383 +g192385 +S'in' +p192387 +tp192388 +a(g192385 +g192387 +S'this' +p192389 +tp192390 +a(g192387 +g192389 +S'example,' +p192391 +tp192392 +a(g192389 +g192391 +S'an' +p192393 +tp192394 +a(g192391 +g192393 +S'elegant' +p192395 +tp192396 +a(g192393 +g192395 +S'gentleman' +p192397 +tp192398 +a(g192395 +g192397 +S'bows' +p192399 +tp192400 +a(g192397 +g192399 +S'gracefully' +p192401 +tp192402 +a(g192399 +g192401 +S'as' +p192403 +tp192404 +a(g192401 +g192403 +S'he' +p192405 +tp192406 +a(g192403 +g192405 +S'enters' +p192407 +tp192408 +a(g192405 +g192407 +S'the' +p192409 +tp192410 +a(g192407 +g192409 +S'room.' +p192411 +tp192412 +a(g192409 +g192411 +S'a' +p192413 +tp192414 +a(g192411 +g192413 +S'young' +p192415 +tp192416 +a(g192413 +g192415 +S'woman' +p192417 +tp192418 +a(g192415 +g192417 +S'wearing' +p192419 +tp192420 +a(g192417 +g192419 +S'a' +p192421 +tp192422 +a(g192419 +g192421 +S'beautiful' +p192423 +tp192424 +a(g192421 +g192423 +S'satin' +p192425 +tp192426 +a(g192423 +g192425 +S'dress' +p192427 +tp192428 +a(g192425 +g192427 +S'with' +p192429 +tp192430 +a(g192427 +g192429 +S'an' +p192431 +tp192432 +a(g192429 +g192431 +S'orange–red' +p192433 +tp192434 +a(g192431 +g192433 +S'jacket' +p192435 +tp192436 +a(g192433 +g192435 +S'stands' +p192437 +tp192438 +a(g192435 +g192437 +S'to' +p192439 +tp192440 +a(g192437 +g192439 +S'greet' +p192441 +tp192442 +a(g192439 +g192441 +S'him' +p192443 +tp192444 +a(g192441 +g192443 +S'while' +p192445 +tp192446 +a(g192443 +g192445 +S'another' +p192447 +tp192448 +a(g192445 +g192447 +S'woman' +p192449 +tp192450 +a(g192447 +g192449 +S'sits' +p192451 +tp192452 +a(g192449 +g192451 +S'at' +p192453 +tp192454 +a(g192451 +g192453 +S'a' +p192455 +tp192456 +a(g192453 +g192455 +S'table' +p192457 +tp192458 +a(g192455 +g192457 +S'playing' +p192459 +tp192460 +a(g192457 +g192459 +S'a' +p192461 +tp192462 +a(g192459 +g192461 +S'theorbo,' +p192463 +tp192464 +a(g192461 +g192463 +S'a' +p192465 +tp192466 +a(g192463 +g192465 +S'musical' +p192467 +tp192468 +a(g192465 +g192467 +S'instrument.' +p192469 +tp192470 +a(g192467 +g192469 +S'behind' +p192471 +tp192472 +a(g192469 +g192471 +S'this' +p192473 +tp192474 +a(g192471 +g192473 +S'group' +p192475 +tp192476 +a(g192473 +g192475 +S'a' +p192477 +tp192478 +a(g192475 +g192477 +S'man' +p192479 +tp192480 +a(g192477 +g192479 +S'warms' +p192481 +tp192482 +a(g192479 +g192481 +S'his' +p192483 +tp192484 +a(g192481 +g192483 +S'hands' +p192485 +tp192486 +a(g192483 +g192485 +S'at' +p192487 +tp192488 +a(g192485 +g192487 +S'a' +p192489 +tp192490 +a(g192487 +g192489 +S'fireplace.' +p192491 +tp192492 +a(g192489 +g192491 +S'the' +p192493 +tp192494 +a(g192491 +g192493 +S'costumes,' +p192495 +tp192496 +a(g192493 +g192495 +S'instruments,' +p192497 +tp192498 +a(g192495 +g192497 +S'imposing' +p192499 +tp192500 +a(g192497 +g192499 +S'mantelpiece,' +p192501 +tp192502 +a(g192499 +g192501 +S'and' +p192503 +tp192504 +a(g192501 +g192503 +S'gilded' +p192505 +tp192506 +a(g192503 +g192505 +S'wallpaper' +p192507 +tp192508 +a(g192505 +g192507 +S'all' +p192509 +tp192510 +a(g192507 +g192509 +S'attest' +p192511 +tp192512 +a(g192509 +g192511 +S'to' +p192513 +tp192514 +a(g192511 +g192513 +S'the' +p192515 +tp192516 +a(g192513 +g192515 +S'high' +p192517 +tp192518 +a(g192515 +g192517 +S'social' +p192519 +tp192520 +a(g192517 +g192519 +S'status' +p192521 +tp192522 +a(g192519 +g192521 +S'of' +p192523 +tp192524 +a(g192521 +g192523 +S'the' +p192525 +tp192526 +a(g192523 +g192525 +S'figures.' +p192527 +tp192528 +a(g192525 +g192527 +S'ter' +p192529 +tp192530 +a(g192527 +g192529 +S"borch's" +p192531 +tp192532 +a(g192529 +g192531 +S'exquisite' +p192533 +tp192534 +a(g192531 +g192533 +S'painting' +p192535 +tp192536 +a(g192533 +g192535 +S'technique,' +p192537 +tp192538 +a(g192535 +g192537 +S'which' +p192539 +tp192540 +a(g192537 +g192539 +S'consisted' +p192541 +tp192542 +a(g192539 +g192541 +S'of' +p192543 +tp192544 +a(g192541 +g192543 +S'delicate' +p192545 +tp192546 +a(g192543 +g192545 +S'touches' +p192547 +tp192548 +a(g192545 +g192547 +S'with' +p192549 +tp192550 +a(g192547 +g192549 +S'the' +p192551 +tp192552 +a(g192549 +g192551 +S'brush' +p192553 +tp192554 +a(g192551 +g192553 +S'and' +p192555 +tp192556 +a(g192553 +g192555 +S'the' +p192557 +tp192558 +a(g192555 +g192557 +S'use' +p192559 +tp192560 +a(g192557 +g192559 +S'of' +p192561 +tp192562 +a(g192559 +g192561 +S'thin' +p192563 +tp192564 +a(g192561 +g192563 +S'glazes' +p192565 +tp192566 +a(g192563 +g192565 +S'to' +p192567 +tp192568 +a(g192565 +g192567 +S'suggest' +p192569 +tp192570 +a(g192567 +g192569 +S'transparencies,' +p192571 +tp192572 +a(g192569 +g192571 +S'allowed' +p192573 +tp192574 +a(g192571 +g192573 +S'him' +p192575 +tp192576 +a(g192573 +g192575 +S'to' +p192577 +tp192578 +a(g192575 +g192577 +S'create' +p192579 +tp192580 +a(g192577 +g192579 +S'realistic' +p192581 +tp192582 +a(g192579 +g192581 +S'textural' +p192583 +tp192584 +a(g192581 +g192583 +S'effects,' +p192585 +tp192586 +a(g192583 +g192585 +S'whether' +p192587 +tp192588 +a(g192585 +g192587 +S'of' +p192589 +tp192590 +a(g192587 +g192589 +S'lace,' +p192591 +tp192592 +a(g192589 +g192591 +S'satin,' +p192593 +tp192594 +a(g192591 +g192593 +S'or' +p192595 +tp192596 +a(g192593 +g192595 +S'the' +p192597 +tp192598 +a(g192595 +g192597 +S'pile' +p192599 +tp192600 +a(g192597 +g192599 +S'of' +p192601 +tp192602 +a(g192599 +g192601 +S'a' +p192603 +tp192604 +a(g192601 +g192603 +S'wool' +p192605 +tp192606 +a(g192603 +g192605 +S'tablecloth.' +p192607 +tp192608 +a(g192605 +g192607 +S'his' +p192609 +tp192610 +a(g192607 +g192609 +S'main' +p192611 +tp192612 +a(g192609 +g192611 +S'focus' +p192613 +tp192614 +a(g192611 +g192613 +S'was' +p192615 +tp192616 +a(g192613 +g192615 +S'the' +p192617 +tp192618 +a(g192615 +g192617 +S'psychological' +p192619 +tp192620 +a(g192617 +g192619 +S'interaction' +p192621 +tp192622 +a(g192619 +g192621 +S'of' +p192623 +tp192624 +a(g192621 +g192623 +S'the' +p192625 +tp192626 +a(g192623 +g192625 +S'two' +p192627 +tp192628 +a(g192625 +g192627 +S'protagonists,' +p192629 +tp192630 +a(g192627 +g192629 +S'the' +p192631 +tp192632 +a(g192629 +g192631 +S'suitor' +p192633 +tp192634 +a(g192631 +g192633 +S'and' +p192635 +tp192636 +a(g192633 +g192635 +S'the' +p192637 +tp192638 +a(g192635 +g192637 +S'standing' +p192639 +tp192640 +a(g192637 +g192639 +S'woman.' +p192641 +tp192642 +a(g192639 +g192641 +S'these' +p192643 +tp192644 +a(g192641 +g192643 +S'two' +p192645 +tp192646 +a(g192643 +g192645 +S'figures' +p192647 +tp192648 +a(g192645 +g192647 +S'are' +p192649 +tp192650 +a(g192647 +g192649 +S'clearly' +p192651 +tp192652 +a(g192649 +g192651 +S'communicating' +p192653 +tp192654 +a(g192651 +g192653 +S'through' +p192655 +tp192656 +a(g192653 +g192655 +S'their' +p192657 +tp192658 +a(g192655 +g192657 +S'glances' +p192659 +tp192660 +a(g192657 +g192659 +S'and' +p192661 +tp192662 +a(g192659 +g192661 +S'gestures.' +p192663 +tp192664 +a(g192661 +g192663 +S'seen' +p192665 +tp192666 +a(g192663 +g192665 +S'in' +p192667 +tp192668 +a(g192665 +g192667 +S'the' +p192669 +tp192670 +a(g192667 +g192669 +S'context' +p192671 +tp192672 +a(g192669 +g192671 +S'of' +p192673 +tp192674 +a(g192671 +g192673 +S'the' +p192675 +tp192676 +a(g192673 +g192675 +S'musical' +p192677 +tp192678 +a(g192675 +g192677 +S'instruments' +p192679 +tp192680 +a(g192677 +g192679 +S'and' +p192681 +tp192682 +a(g192679 +g192681 +S'dog,' +p192683 +tp192684 +a(g192681 +g192683 +S'both' +p192685 +tp192686 +a(g192683 +g192685 +S'of' +p192687 +tp192688 +a(g192685 +g192687 +S'which' +p192689 +tp192690 +a(g192687 +g192689 +S'have' +p192691 +tp192692 +a(g192689 +g192691 +S'associations' +p192693 +tp192694 +a(g192691 +g192693 +S'of' +p192695 +tp192696 +a(g192693 +g192695 +S'love,' +p192697 +tp192698 +a(g192695 +g192697 +S'their' +p192699 +tp192700 +a(g192697 +g192699 +S'meeting' +p192701 +tp192702 +a(g192699 +g192701 +S'has' +p192703 +tp192704 +a(g192701 +g192703 +S'strong' +p192705 +tp192706 +a(g192703 +g192705 +S'sexual' +p192707 +tp192708 +a(g192705 +g192707 +S'overtones.' +p192709 +tp192710 +a(g192707 +g192709 +S'hobbema' +p192711 +tp192712 +a(g192709 +g192711 +S'often' +p192713 +tp192714 +a(g192711 +g192713 +S'painted' +p192715 +tp192716 +a(g192713 +g192715 +S'rural' +p192717 +tp192718 +a(g192715 +g192717 +S'scenes' +p192719 +tp192720 +a(g192717 +g192719 +S'where' +p192721 +tp192722 +a(g192719 +g192721 +S'a' +p192723 +tp192724 +a(g192721 +g192723 +S'road' +p192725 +tp192726 +a(g192723 +g192725 +S'meanders' +p192727 +tp192728 +a(g192725 +g192727 +S'past' +p192729 +tp192730 +a(g192727 +g192729 +S'houses' +p192731 +tp192732 +a(g192729 +g192731 +S'and' +p192733 +tp192734 +a(g192731 +g192733 +S'farms' +p192735 +tp192736 +a(g192733 +g192735 +S'nestled' +p192737 +tp192738 +a(g192735 +g192737 +S'among' +p192739 +tp192740 +a(g192737 +g192739 +S'trees.' +p192741 +tp192742 +a(g192739 +g192741 +S'one' +p192743 +tp192744 +a(g192741 +g192743 +S'senses' +p192745 +tp192746 +a(g192743 +g192745 +S'the' +p192747 +tp192748 +a(g192745 +g192747 +S'soft' +p192749 +tp192750 +a(g192747 +g192749 +S'winds' +p192751 +tp192752 +a(g192749 +g192751 +S'of' +p192753 +tp192754 +a(g192751 +g192753 +S'a' +p192755 +tp192756 +a(g192753 +g192755 +S'summer' +p192757 +tp192758 +a(g192755 +g192757 +S'day' +p192759 +tp192760 +a(g192757 +g192759 +S'as' +p192761 +tp192762 +a(g192759 +g192761 +S'clouds' +p192763 +tp192764 +a(g192761 +g192763 +S'billow' +p192765 +tp192766 +a(g192763 +g192765 +S'in' +p192767 +tp192768 +a(g192765 +g192767 +S'the' +p192769 +tp192770 +a(g192767 +g192769 +S'sky.' +p192771 +tp192772 +a(g192769 +g192771 +S'pools' +p192773 +tp192774 +a(g192771 +g192773 +S'of' +p192775 +tp192776 +a(g192773 +g192775 +S'sunlight' +p192777 +tp192778 +a(g192775 +g192777 +S'accent' +p192779 +tp192780 +a(g192777 +g192779 +S'buildings' +p192781 +tp192782 +a(g192779 +g192781 +S'and' +p192783 +tp192784 +a(g192781 +g192783 +S'fields' +p192785 +tp192786 +a(g192783 +g192785 +S'as' +p192787 +tp192788 +a(g192785 +g192787 +S'well' +p192789 +tp192790 +a(g192787 +g192789 +S'as' +p192791 +tp192792 +a(g192789 +g192791 +S'the' +p192793 +tp192794 +a(g192791 +g192793 +S'leaves' +p192795 +tp192796 +a(g192793 +g192795 +S'and' +p192797 +tp192798 +a(g192795 +g192797 +S'branches' +p192799 +tp192800 +a(g192797 +g192799 +S'of' +p192801 +tp192802 +a(g192799 +g192801 +S'distant' +p192803 +tp192804 +a(g192801 +g192803 +S'trees.' +p192805 +tp192806 +a(g192803 +g192805 +S'figures' +p192807 +tp192808 +a(g192805 +g192807 +S'strolling' +p192809 +tp192810 +a(g192807 +g192809 +S'along' +p192811 +tp192812 +a(g192809 +g192811 +S'the' +p192813 +tp192814 +a(g192811 +g192813 +S'road' +p192815 +tp192816 +a(g192813 +g192815 +S'or' +p192817 +tp192818 +a(g192815 +g192817 +S'resting' +p192819 +tp192820 +a(g192817 +g192819 +S'beside' +p192821 +tp192822 +a(g192819 +g192821 +S'it' +p192823 +tp192824 +a(g192821 +g192823 +S'are' +p192825 +tp192826 +a(g192823 +g192825 +S'integrated' +p192827 +tp192828 +a(g192825 +g192827 +S'harmoniously' +p192829 +tp192830 +a(g192827 +g192829 +S'into' +p192831 +tp192832 +a(g192829 +g192831 +S'this' +p192833 +tp192834 +a(g192831 +g192833 +S'peaceful' +p192835 +tp192836 +a(g192833 +g192835 +S'and' +p192837 +tp192838 +a(g192835 +g192837 +S'idyllic' +p192839 +tp192840 +a(g192837 +g192839 +S'setting.' +p192841 +tp192842 +a(g192839 +g192841 +S'hobbema,' +p192843 +tp192844 +a(g192841 +g192843 +S'who' +p192845 +tp192846 +a(g192843 +g192845 +S'studied' +p192847 +tp192848 +a(g192845 +g192847 +S'for' +p192849 +tp192850 +a(g192847 +g192849 +S'a' +p192851 +tp192852 +a(g192849 +g192851 +S'short' +p192853 +tp192854 +a(g192851 +g192853 +S'while' +p192855 +tp192856 +a(g192853 +g192855 +S'in' +p192857 +tp192858 +a(g192855 +g192857 +S'amsterdam' +p192859 +tp192860 +a(g192857 +g192859 +S'with' +p192861 +tp192862 +a(g192859 +g192861 +S'jacob' +p192863 +tp192864 +a(g192861 +g192863 +S'van' +p192865 +tp192866 +a(g192863 +g192865 +S'ruisdael,' +p192867 +tp192868 +a(g192865 +g192867 +S'was' +p192869 +tp192870 +a(g192867 +g192869 +S'a' +p192871 +tp192872 +a(g192869 +g192871 +S'prolific' +p192873 +tp192874 +a(g192871 +g192873 +S'painter,' +p192875 +tp192876 +a(g192873 +g192875 +S'particularly' +p192877 +tp192878 +a(g192875 +g192877 +S'during' +p192879 +tp192880 +a(g192877 +g192879 +S'the' +p192881 +tp192882 +a(g192879 +g192881 +S'1660s' +p192883 +tp192884 +a(g192881 +g192883 +S'when' +p192885 +tp192886 +a(g192883 +g192885 +S'this' +p192887 +tp192888 +a(g192885 +g192887 +S'work' +p192889 +tp192890 +a(g192887 +g192889 +S'was' +p192891 +tp192892 +a(g192889 +g192891 +S'done.' +p192893 +tp192894 +a(g192891 +g192893 +S'he' +p192895 +tp192896 +a(g192893 +g192895 +S'frequently' +p192897 +tp192898 +a(g192895 +g192897 +S'painted' +p192899 +tp192900 +a(g192897 +g192899 +S'variants' +p192901 +tp192902 +a(g192899 +g192901 +S'of' +p192903 +tp192904 +a(g192901 +g192903 +S'his' +p192905 +tp192906 +a(g192903 +g192905 +S'scenes' +p192907 +tp192908 +a(g192905 +g192907 +S'by' +p192909 +tp192910 +a(g192907 +g192909 +S'slightly' +p192911 +tp192912 +a(g192909 +g192911 +S'changing' +p192913 +tp192914 +a(g192911 +g192913 +S'the' +p192915 +tp192916 +a(g192913 +g192915 +S'position' +p192917 +tp192918 +a(g192915 +g192917 +S'of' +p192919 +tp192920 +a(g192917 +g192919 +S'buildings,' +p192921 +tp192922 +a(g192919 +g192921 +S'trees,' +p192923 +tp192924 +a(g192921 +g192923 +S'and' +p192925 +tp192926 +a(g192923 +g192925 +S'figures.' +p192927 +tp192928 +a(g192925 +g192927 +S'in' +p192929 +tp192930 +a(g192927 +g192929 +S'this' +p192931 +tp192932 +a(g192929 +g192931 +S'instance' +p192933 +tp192934 +a(g192931 +g192933 +S'the' +p192935 +tp192936 +a(g192933 +g192935 +S'elegant' +p192937 +tp192938 +a(g192935 +g192937 +S'foreground' +p192939 +tp192940 +a(g192937 +g192939 +S'couple' +p192941 +tp192942 +a(g192939 +g192941 +S'may' +p192943 +tp192944 +a(g192941 +g192943 +S'have' +p192945 +tp192946 +a(g192943 +g192945 +S'been' +p192947 +tp192948 +a(g192945 +g192947 +S'painted' +p192949 +tp192950 +a(g192947 +g192949 +S'by' +p192951 +tp192952 +a(g192949 +g192951 +S'a' +p192953 +tp192954 +a(g192951 +g192953 +S'specialist' +p192955 +tp192956 +a(g192953 +g192955 +S'in' +p192957 +tp192958 +a(g192955 +g192957 +S'depicting' +p192959 +tp192960 +a(g192957 +g192959 +S'such' +p192961 +tp192962 +a(g192959 +g192961 +S'figures.' +p192963 +tp192964 +a(g192961 +g192963 +S'hobbema' +p192965 +tp192966 +a(g192963 +g192965 +S'often' +p192967 +tp192968 +a(g192965 +g192967 +S'collaborated' +p192969 +tp192970 +a(g192967 +g192969 +S'with' +p192971 +tp192972 +a(g192969 +g192971 +S'other' +p192973 +tp192974 +a(g192971 +g192973 +S'artists' +p192975 +tp192976 +a(g192973 +g192975 +S'in' +p192977 +tp192978 +a(g192975 +g192977 +S'this' +p192979 +tp192980 +a(g192977 +g192979 +S'manner' +p192981 +tp192982 +a(g192979 +g192981 +S'when' +p192983 +tp192984 +a(g192981 +g192983 +S'completing' +p192985 +tp192986 +a(g192983 +g192985 +S'his' +p192987 +tp192988 +a(g192985 +g192987 +S'works.' +p192989 +tp192990 +a(g192987 +g192989 +S'the' +p192991 +tp192992 +a(g192989 +g192991 +S'idyllic' +p192993 +tp192994 +a(g192991 +g192993 +S'qualities' +p192995 +tp192996 +a(g192993 +g192995 +S'of' +p192997 +tp192998 +a(g192995 +g192997 +S'his' +p192999 +tp193000 +a(g192997 +g192999 +S'scenes,' +p193001 +tp193002 +a(g192999 +g193001 +S'combined' +p193003 +tp193004 +a(g193001 +g193003 +S'with' +p193005 +tp193006 +a(g193003 +g193005 +S'the' +p193007 +tp193008 +a(g193005 +g193007 +S'realistic' +p193009 +tp193010 +a(g193007 +g193009 +S'effects' +p193011 +tp193012 +a(g193009 +g193011 +S'of' +p193013 +tp193014 +a(g193011 +g193013 +S'light' +p193015 +tp193016 +a(g193013 +g193015 +S'and' +p193017 +tp193018 +a(g193015 +g193017 +S'atmosphere,' +p193019 +tp193020 +a(g193017 +g193019 +S'appealed' +p193021 +tp193022 +a(g193019 +g193021 +S'tremendously' +p193023 +tp193024 +a(g193021 +g193023 +S'to' +p193025 +tp193026 +a(g193023 +g193025 +S'english' +p193027 +tp193028 +a(g193025 +g193027 +S'collectors.' +p193029 +tp193030 +a(g193027 +g193029 +S'this' +p193031 +tp193032 +a(g193029 +g193031 +S'painting,' +p193033 +tp193034 +a(g193031 +g193033 +S'along' +p193035 +tp193036 +a(g193033 +g193035 +S'with' +p193037 +tp193038 +a(g193035 +g193037 +S'another' +p193039 +tp193040 +a(g193037 +g193039 +S'that' +p193041 +tp193042 +a(g193039 +g193041 +S'hobbema' +p193043 +tp193044 +a(g193041 +g193043 +S'may' +p193045 +tp193046 +a(g193043 +g193045 +S'have' +p193047 +tp193048 +a(g193045 +g193047 +S'painted' +p193049 +tp193050 +a(g193047 +g193049 +S'as' +p193051 +tp193052 +a(g193049 +g193051 +S'its' +p193053 +tp193054 +a(g193051 +g193053 +S'pendant,' +p193055 +tp193056 +a(g193053 +g193055 +S'belonged' +p193057 +tp193058 +a(g193055 +g193057 +S'to' +p193059 +tp193060 +a(g193057 +g193059 +S'the' +p193061 +tp193062 +a(g193059 +g193061 +S'collection' +p193063 +tp193064 +a(g193061 +g193063 +S'of' +p193065 +tp193066 +a(g193063 +g193065 +S'the' +p193067 +tp193068 +a(g193065 +g193067 +S'duke' +p193069 +tp193070 +a(g193067 +g193069 +S'of' +p193071 +tp193072 +a(g193069 +g193071 +S'westminster' +p193073 +tp193074 +a(g193071 +g193073 +S'in' +p193075 +tp193076 +a(g193073 +g193075 +S'the' +p193077 +tp193078 +a(g193075 +g193077 +S'nineteenth' +p193079 +tp193080 +a(g193077 +g193079 +S'century.' +p193081 +tp193082 +a(g193079 +g193081 +S'after' +p193083 +tp193084 +a(g193081 +g193083 +S'the' +p193085 +tp193086 +a(g193083 +g193085 +S'reformation' +p193087 +tp193088 +a(g193085 +g193087 +S'had' +p193089 +tp193090 +a(g193087 +g193089 +S'brought' +p193091 +tp193092 +a(g193089 +g193091 +S'social' +p193093 +tp193094 +a(g193091 +g193093 +S'and' +p193095 +tp193096 +a(g193093 +g193095 +S'political' +p193097 +tp193098 +a(g193095 +g193097 +S'upheaval' +p193099 +tp193100 +a(g193097 +g193099 +S'to' +p193101 +tp193102 +a(g193099 +g193101 +S'germany,' +p193103 +tp193104 +a(g193101 +g193103 +S'creating' +p193105 +tp193106 +a(g193103 +g193105 +S'an' +p193107 +tp193108 +a(g193105 +g193107 +S'unfavorable' +p193109 +tp193110 +a(g193107 +g193109 +S'climate' +p193111 +tp193112 +a(g193109 +g193111 +S'for' +p193113 +tp193114 +a(g193111 +g193113 +S'artists,' +p193115 +tp193116 +a(g193113 +g193115 +S'holbein' +p193117 +tp193118 +a(g193115 +g193117 +S'moved' +p193119 +tp193120 +a(g193117 +g193119 +S'to' +p193121 +tp193122 +a(g193119 +g193121 +S'england' +p193123 +tp193124 +a(g193121 +g193123 +S'in' +p193125 +tp193126 +a(g193123 +g193125 +S'1526.' +p193127 +tp193128 +a(g193125 +g193127 +S'he' +p193129 +tp193130 +a(g193127 +g193129 +S'first' +p193131 +tp193132 +a(g193129 +g193131 +S'painted' +p193133 +tp193134 +a(g193131 +g193133 +S'for' +p193135 +tp193136 +a(g193133 +g193135 +S'sir' +p193137 +tp193138 +a(g193135 +g193137 +S'thomas' +p193139 +tp193140 +a(g193137 +g193139 +S"more's" +p193141 +tp193142 +a(g193139 +g193141 +S'circle' +p193143 +tp193144 +a(g193141 +g193143 +S'of' +p193145 +tp193146 +a(g193143 +g193145 +S'high' +p193147 +tp193148 +a(g193145 +g193147 +S'servants' +p193149 +tp193150 +a(g193147 +g193149 +S'of' +p193151 +tp193152 +a(g193149 +g193151 +S'the' +p193153 +tp193154 +a(g193151 +g193153 +S'crown' +p193155 +tp193156 +a(g193153 +g193155 +S'and' +p193157 +tp193158 +a(g193155 +g193157 +S'then' +p193159 +tp193160 +a(g193157 +g193159 +S'became' +p193161 +tp193162 +a(g193159 +g193161 +S'painter' +p193163 +tp193164 +a(g193161 +g193163 +S'to' +p193165 +tp193166 +a(g193163 +g193165 +S'the' +p193167 +tp193168 +a(g193165 +g193167 +S'king' +p193169 +tp193170 +a(g193167 +g193169 +S'himself,' +p193171 +tp193172 +a(g193169 +g193171 +S'henry' +p193173 +tp193174 +a(g193171 +g193173 +S'viii.' +p193175 +tp193176 +a(g193173 +g193175 +S'as' +p193177 +tp193178 +a(g193175 +g193177 +S'court' +p193179 +tp193180 +a(g193177 +g193179 +S'painter' +p193181 +tp193182 +a(g193179 +g193181 +S'holbein' +p193183 +tp193184 +a(g193181 +g193183 +S'produced' +p193185 +tp193186 +a(g193183 +g193185 +S'portraits,' +p193187 +tp193188 +a(g193185 +g193187 +S'festival' +p193189 +tp193190 +a(g193187 +g193189 +S'sets' +p193191 +tp193192 +a(g193189 +g193191 +S'and' +p193193 +tp193194 +a(g193191 +g193193 +S'other' +p193195 +tp193196 +a(g193193 +g193195 +S'decorations' +p193197 +tp193198 +a(g193195 +g193197 +S'intended' +p193199 +tp193200 +a(g193197 +g193199 +S'to' +p193201 +tp193202 +a(g193199 +g193201 +S'exalt' +p193203 +tp193204 +a(g193201 +g193203 +S'the' +p193205 +tp193206 +a(g193203 +g193205 +S'king' +p193207 +tp193208 +a(g193205 +g193207 +S'and' +p193209 +tp193210 +a(g193207 +g193209 +S'the' +p193211 +tp193212 +a(g193209 +g193211 +S'tudor' +p193213 +tp193214 +a(g193211 +g193213 +S'dynasty,' +p193215 +tp193216 +a(g193213 +g193215 +S'and' +p193217 +tp193218 +a(g193215 +g193217 +S'also' +p193219 +tp193220 +a(g193217 +g193219 +S'designs' +p193221 +tp193222 +a(g193219 +g193221 +S'for' +p193223 +tp193224 +a(g193221 +g193223 +S'jewelry' +p193225 +tp193226 +a(g193223 +g193225 +S'and' +p193227 +tp193228 +a(g193225 +g193227 +S'metalwork.' +p193229 +tp193230 +a(g193227 +g193229 +S'in' +p193231 +tp193232 +a(g193229 +g193231 +S'his' +p193233 +tp193234 +a(g193231 +g193233 +S'portraits' +p193235 +tp193236 +a(g193233 +g193235 +S'holbein' +p193237 +tp193238 +a(g193235 +g193237 +S'endowed' +p193239 +tp193240 +a(g193237 +g193239 +S'his' +p193241 +tp193242 +a(g193239 +g193241 +S'sitters' +p193243 +tp193244 +a(g193241 +g193243 +S'with' +p193245 +tp193246 +a(g193243 +g193245 +S'a' +p193247 +tp193248 +a(g193245 +g193247 +S'powerful' +p193249 +tp193250 +a(g193247 +g193249 +S'physical' +p193251 +tp193252 +a(g193249 +g193251 +S'presence' +p193253 +tp193254 +a(g193251 +g193253 +S'which' +p193255 +tp193256 +a(g193253 +g193255 +S'was' +p193257 +tp193258 +a(g193255 +g193257 +S'increasingly' +p193259 +tp193260 +a(g193257 +g193259 +S'held' +p193261 +tp193262 +a(g193259 +g193261 +S'in' +p193263 +tp193264 +a(g193261 +g193263 +S'check' +p193265 +tp193266 +a(g193263 +g193265 +S'by' +p193267 +tp193268 +a(g193265 +g193267 +S'the' +p193269 +tp193270 +a(g193267 +g193269 +S'psychological' +p193271 +tp193272 +a(g193269 +g193271 +S'reserve' +p193273 +tp193274 +a(g193271 +g193273 +S'and' +p193275 +tp193276 +a(g193273 +g193275 +S'elegance' +p193277 +tp193278 +a(g193275 +g193277 +S'of' +p193279 +tp193280 +a(g193277 +g193279 +S'surface' +p193281 +tp193282 +a(g193279 +g193281 +S'appropriate' +p193283 +tp193284 +a(g193281 +g193283 +S'to' +p193285 +tp193286 +a(g193283 +g193285 +S'a' +p193287 +tp193288 +a(g193285 +g193287 +S'court' +p193289 +tp193290 +a(g193287 +g193289 +S'setting.' +p193291 +tp193292 +a(g193289 +g193291 +S'this' +p193293 +tp193294 +a(g193291 +g193293 +S'portrait' +p193295 +tp193296 +a(g193293 +g193295 +S'of' +p193297 +tp193298 +a(g193295 +g193297 +S'henry' +p193299 +tp193300 +a(g193297 +g193299 +S"viii's" +p193301 +tp193302 +a(g193299 +g193301 +S'only' +p193303 +tp193304 +a(g193301 +g193303 +S'legitimate' +p193305 +tp193306 +a(g193303 +g193305 +S'son' +p193307 +tp193308 +a(g193305 +g193307 +S'and' +p193309 +tp193310 +a(g193307 +g193309 +S'much' +p193311 +tp193312 +a(g193309 +g193311 +S'desired' +p193313 +tp193314 +a(g193311 +g193313 +S'male' +p193315 +tp193316 +a(g193313 +g193315 +S'heir' +p193317 +tp193318 +a(g193315 +g193317 +S'exemplifies' +p193319 +tp193320 +a(g193317 +g193319 +S'these' +p193321 +tp193322 +a(g193319 +g193321 +S'qualities.' +p193323 +tp193324 +a(g193321 +g193323 +S'edward' +p193325 +tp193326 +a(g193323 +g193325 +S'was' +p193327 +tp193328 +a(g193325 +g193327 +S'born' +p193329 +tp193330 +a(g193327 +g193329 +S'on' +p193331 +tp193332 +a(g193329 +g193331 +S'12' +p193333 +tp193334 +a(g193331 +g193333 +S'october' +p193335 +tp193336 +a(g193333 +g193335 +S'1537' +p193337 +tp193338 +a(g193335 +g193337 +S'to' +p193339 +tp193340 +a(g193337 +g193339 +S"henry's" +p193341 +tp193342 +a(g193339 +g193341 +S'third' +p193343 +tp193344 +a(g193341 +g193343 +S'wife,' +p193345 +tp193346 +a(g193343 +g193345 +S'jane' +p193347 +tp193348 +a(g193345 +g193347 +S'seymour,' +p193349 +tp193350 +a(g193347 +g193349 +S'and' +p193351 +tp193352 +a(g193349 +g193351 +S'this' +p193353 +tp193354 +a(g193351 +g193353 +S'portrait' +p193355 +tp193356 +a(g193353 +g193355 +S'appears' +p193357 +tp193358 +a(g193355 +g193357 +S'to' +p193359 +tp193360 +a(g193357 +g193359 +S'be' +p193361 +tp193362 +a(g193359 +g193361 +S'the' +p193363 +tp193364 +a(g193361 +g193363 +S'one' +p193365 +tp193366 +a(g193363 +g193365 +S'given' +p193367 +tp193368 +a(g193365 +g193367 +S'to' +p193369 +tp193370 +a(g193367 +g193369 +S'the' +p193371 +tp193372 +a(g193369 +g193371 +S'king' +p193373 +tp193374 +a(g193371 +g193373 +S'on' +p193375 +tp193376 +a(g193373 +g193375 +S'the' +p193377 +tp193378 +a(g193375 +g193377 +S'new' +p193379 +tp193380 +a(g193377 +g193379 +S'year' +p193381 +tp193382 +a(g193379 +g193381 +S'of' +p193383 +tp193384 +a(g193381 +g193383 +S'1539.' +p193385 +tp193386 +a(g193383 +g193385 +S'the' +p193387 +tp193388 +a(g193385 +g193387 +S'form' +p193389 +tp193390 +a(g193387 +g193389 +S'of' +p193391 +tp193392 +a(g193389 +g193391 +S'the' +p193393 +tp193394 +a(g193391 +g193393 +S'portrait' +p193395 +tp193396 +a(g193393 +g193395 +S'and' +p193397 +tp193398 +a(g193395 +g193397 +S'the' +p193399 +tp193400 +a(g193397 +g193399 +S'long' +p193401 +tp193402 +a(g193399 +g193401 +S'latin' +p193403 +tp193404 +a(g193401 +g193403 +S'verse' +p193405 +tp193406 +a(g193403 +g193405 +S'provided' +p193407 +tp193408 +a(g193405 +g193407 +S'by' +p193409 +tp193410 +a(g193407 +g193409 +S'the' +p193411 +tp193412 +a(g193409 +g193411 +S'poet' +p193413 +tp193414 +a(g193411 +g193413 +S'richard' +p193415 +tp193416 +a(g193413 +g193415 +S'morison' +p193417 +tp193418 +a(g193415 +g193417 +S'flatter' +p193419 +tp193420 +a(g193417 +g193419 +S'the' +p193421 +tp193422 +a(g193419 +g193421 +S'royal' +p193423 +tp193424 +a(g193421 +g193423 +S'father' +p193425 +tp193426 +a(g193423 +g193425 +S'and' +p193427 +tp193428 +a(g193425 +g193427 +S'emphasize' +p193429 +tp193430 +a(g193427 +g193429 +S'the' +p193431 +tp193432 +a(g193429 +g193431 +S'succession.' +p193433 +tp193434 +a(g193431 +g193433 +S'holbein' +p193435 +tp193436 +a(g193433 +g193435 +S'depicted' +p193437 +tp193438 +a(g193435 +g193437 +S'the' +p193439 +tp193440 +a(g193437 +g193439 +S'baby' +p193441 +tp193442 +a(g193439 +g193441 +S'prince' +p193443 +tp193444 +a(g193441 +g193443 +S'as' +p193445 +tp193446 +a(g193443 +g193445 +S'erect' +p193447 +tp193448 +a(g193445 +g193447 +S'and' +p193449 +tp193450 +a(g193447 +g193449 +S'self-possessed,' +p193451 +tp193452 +a(g193449 +g193451 +S'one' +p193453 +tp193454 +a(g193451 +g193453 +S'hand' +p193455 +tp193456 +a(g193453 +g193455 +S'holding' +p193457 +tp193458 +a(g193455 +g193457 +S'a' +p193459 +tp193460 +a(g193457 +g193459 +S'scepter' +p193461 +tp193462 +a(g193459 +g193461 +S'and' +p193463 +tp193464 +a(g193461 +g193463 +S'the' +p193465 +tp193466 +a(g193463 +g193465 +S'other' +p193467 +tp193468 +a(g193465 +g193467 +S'open' +p193469 +tp193470 +a(g193467 +g193469 +S'in' +p193471 +tp193472 +a(g193469 +g193471 +S'a' +p193473 +tp193474 +a(g193471 +g193473 +S'gesture' +p193475 +tp193476 +a(g193473 +g193475 +S'of' +p193477 +tp193478 +a(g193475 +g193477 +S'blessing.' +p193479 +tp193480 +a(g193477 +g193479 +S'his' +p193481 +tp193482 +a(g193479 +g193481 +S'frontal' +p193483 +tp193484 +a(g193481 +g193483 +S'pose' +p193485 +tp193486 +a(g193483 +g193485 +S'before' +p193487 +tp193488 +a(g193485 +g193487 +S'a' +p193489 +tp193490 +a(g193487 +g193489 +S'parapet' +p193491 +tp193492 +a(g193489 +g193491 +S'is' +p193493 +tp193494 +a(g193491 +g193493 +S'a' +p193495 +tp193496 +a(g193493 +g193495 +S'type' +p193497 +tp193498 +a(g193495 +g193497 +S'reserved' +p193499 +tp193500 +a(g193497 +g193499 +S'for' +p193501 +tp193502 +a(g193499 +g193501 +S'royalty' +p193503 +tp193504 +a(g193501 +g193503 +S'or' +p193505 +tp193506 +a(g193503 +g193505 +S'for' +p193507 +tp193508 +a(g193505 +g193507 +S'images' +p193509 +tp193510 +a(g193507 +g193509 +S'of' +p193511 +tp193512 +a(g193509 +g193511 +S'holy' +p193513 +tp193514 +a(g193511 +g193513 +S'figures.' +p193515 +tp193516 +a(g193513 +g193515 +S'the' +p193517 +tp193518 +a(g193515 +g193517 +S'political' +p193519 +tp193520 +a(g193517 +g193519 +S'strength' +p193521 +tp193522 +a(g193519 +g193521 +S'of' +p193523 +tp193524 +a(g193521 +g193523 +S'henry' +p193525 +tp193526 +a(g193523 +g193525 +S"viii's" +p193527 +tp193528 +a(g193525 +g193527 +S'regime' +p193529 +tp193530 +a(g193527 +g193529 +S'lay' +p193531 +tp193532 +a(g193529 +g193531 +S'in' +p193533 +tp193534 +a(g193531 +g193533 +S'his' +p193535 +tp193536 +a(g193533 +g193535 +S'ability' +p193537 +tp193538 +a(g193535 +g193537 +S'to' +p193539 +tp193540 +a(g193537 +g193539 +S'choose' +p193541 +tp193542 +a(g193539 +g193541 +S'advisors' +p193543 +tp193544 +a(g193541 +g193543 +S'who' +p193545 +tp193546 +a(g193543 +g193545 +S'were' +p193547 +tp193548 +a(g193545 +g193547 +S'both' +p193549 +tp193550 +a(g193547 +g193549 +S'wise' +p193551 +tp193552 +a(g193549 +g193551 +S'and' +p193553 +tp193554 +a(g193551 +g193553 +S'learned.' +p193555 +tp193556 +a(g193553 +g193555 +S'one' +p193557 +tp193558 +a(g193555 +g193557 +S'of' +p193559 +tp193560 +a(g193557 +g193559 +S'these' +p193561 +tp193562 +a(g193559 +g193561 +S'men' +p193563 +tp193564 +a(g193561 +g193563 +S'was' +p193565 +tp193566 +a(g193563 +g193565 +S'sir' +p193567 +tp193568 +a(g193565 +g193567 +S'brian' +p193569 +tp193570 +a(g193567 +g193569 +S'tuke.' +p193571 +tp193572 +a(g193569 +g193571 +S'as' +p193573 +tp193574 +a(g193571 +g193573 +S'master' +p193575 +tp193576 +a(g193573 +g193575 +S'of' +p193577 +tp193578 +a(g193575 +g193577 +S'the' +p193579 +tp193580 +a(g193577 +g193579 +S'posts,' +p193581 +tp193582 +a(g193579 +g193581 +S'he' +p193583 +tp193584 +a(g193581 +g193583 +S'organized' +p193585 +tp193586 +a(g193583 +g193585 +S'and' +p193587 +tp193588 +a(g193585 +g193587 +S'established' +p193589 +tp193590 +a(g193587 +g193589 +S"england's" +p193591 +tp193592 +a(g193589 +g193591 +S'postal' +p193593 +tp193594 +a(g193591 +g193593 +S'service.' +p193595 +tp193596 +a(g193593 +g193595 +S'in' +p193597 +tp193598 +a(g193595 +g193597 +S'1528' +p193599 +tp193600 +a(g193597 +g193599 +S'sir' +p193601 +tp193602 +a(g193599 +g193601 +S'brian' +p193603 +tp193604 +a(g193601 +g193603 +S'was' +p193605 +tp193606 +a(g193603 +g193605 +S'appointed' +p193607 +tp193608 +a(g193605 +g193607 +S'treasurer' +p193609 +tp193610 +a(g193607 +g193609 +S'and' +p193611 +tp193612 +a(g193609 +g193611 +S'secretary' +p193613 +tp193614 +a(g193611 +g193613 +S'of' +p193615 +tp193616 +a(g193613 +g193615 +S'the' +p193617 +tp193618 +a(g193615 +g193617 +S'royal' +p193619 +tp193620 +a(g193617 +g193619 +S'household,' +p193621 +tp193622 +a(g193619 +g193621 +S'a' +p193623 +tp193624 +a(g193621 +g193623 +S'position' +p193625 +tp193626 +a(g193623 +g193625 +S'he' +p193627 +tp193628 +a(g193625 +g193627 +S'held' +p193629 +tp193630 +a(g193627 +g193629 +S'until' +p193631 +tp193632 +a(g193629 +g193631 +S'his' +p193633 +tp193634 +a(g193631 +g193633 +S'death' +p193635 +tp193636 +a(g193633 +g193635 +S'in' +p193637 +tp193638 +a(g193635 +g193637 +S'1545.' +p193639 +tp193640 +a(g193637 +g193639 +S'he' +p193641 +tp193642 +a(g193639 +g193641 +S'was' +p193643 +tp193644 +a(g193641 +g193643 +S'also' +p193645 +tp193646 +a(g193643 +g193645 +S'admired' +p193647 +tp193648 +a(g193645 +g193647 +S'as' +p193649 +tp193650 +a(g193647 +g193649 +S'an' +p193651 +tp193652 +a(g193649 +g193651 +S'eloquent' +p193653 +tp193654 +a(g193651 +g193653 +S'speaker' +p193655 +tp193656 +a(g193653 +g193655 +S'and' +p193657 +tp193658 +a(g193655 +g193657 +S'literary' +p193659 +tp193660 +a(g193657 +g193659 +S'figure' +p193661 +tp193662 +a(g193659 +g193661 +S'who' +p193663 +tp193664 +a(g193661 +g193663 +S'authored' +p193665 +tp193666 +a(g193663 +g193665 +S'a' +p193667 +tp193668 +a(g193665 +g193667 +S'preface' +p193669 +tp193670 +a(g193667 +g193669 +S'to' +p193671 +tp193672 +a(g193669 +g193671 +S'an' +p193673 +tp193674 +a(g193671 +g193673 +S'edition' +p193675 +tp193676 +a(g193673 +g193675 +S'of' +p193677 +tp193678 +a(g193675 +g193677 +S'chaucer.' +p193679 +tp193680 +a(g193677 +g193679 +S'the' +p193681 +tp193682 +a(g193679 +g193681 +S'portrait,' +p193683 +tp193684 +a(g193681 +g193683 +S'which' +p193685 +tp193686 +a(g193683 +g193685 +S'shows' +p193687 +tp193688 +a(g193685 +g193687 +S'tuke' +p193689 +tp193690 +a(g193687 +g193689 +S'at' +p193691 +tp193692 +a(g193689 +g193691 +S'the' +p193693 +tp193694 +a(g193691 +g193693 +S'age' +p193695 +tp193696 +a(g193693 +g193695 +S'of' +p193697 +tp193698 +a(g193695 +g193697 +S'57,' +p193699 +tp193700 +a(g193697 +g193699 +S'exemplifies' +p193701 +tp193702 +a(g193699 +g193701 +S'the' +p193703 +tp193704 +a(g193701 +g193703 +S'qualities' +p193705 +tp193706 +a(g193703 +g193705 +S'most' +p193707 +tp193708 +a(g193705 +g193707 +S'praised' +p193709 +tp193710 +a(g193707 +g193709 +S'in' +p193711 +tp193712 +a(g193709 +g193711 +S"holbein's" +p193713 +tp193714 +a(g193711 +g193713 +S'work:' +p193715 +tp193716 +a(g193713 +g193715 +S'precise' +p193717 +tp193718 +a(g193715 +g193717 +S'observation' +p193719 +tp193720 +a(g193717 +g193719 +S'of' +p193721 +tp193722 +a(g193719 +g193721 +S'detail' +p193723 +tp193724 +a(g193721 +g193723 +S'and' +p193725 +tp193726 +a(g193723 +g193725 +S'impartial,' +p193727 +tp193728 +a(g193725 +g193727 +S'accurate' +p193729 +tp193730 +a(g193727 +g193729 +S'portrayal' +p193731 +tp193732 +a(g193729 +g193731 +S'of' +p193733 +tp193734 +a(g193731 +g193733 +S'the' +p193735 +tp193736 +a(g193733 +g193735 +S'face.' +p193737 +tp193738 +a(g193735 +g193737 +S'yet' +p193739 +tp193740 +a(g193737 +g193739 +S'the' +p193741 +tp193742 +a(g193739 +g193741 +S'image' +p193743 +tp193744 +a(g193741 +g193743 +S'is' +p193745 +tp193746 +a(g193743 +g193745 +S'also' +p193747 +tp193748 +a(g193745 +g193747 +S'tinged' +p193749 +tp193750 +a(g193747 +g193749 +S'with' +p193751 +tp193752 +a(g193749 +g193751 +S'gentle' +p193753 +tp193754 +a(g193751 +g193753 +S'sorrow.' +p193755 +tp193756 +a(g193753 +g193755 +S'on' +p193757 +tp193758 +a(g193755 +g193757 +S'the' +p193759 +tp193760 +a(g193757 +g193759 +S'table' +p193761 +tp193762 +a(g193759 +g193761 +S'beneath' +p193763 +tp193764 +a(g193761 +g193763 +S"tuke's" +p193765 +tp193766 +a(g193763 +g193765 +S'left' +p193767 +tp193768 +a(g193765 +g193767 +S'hand' +p193769 +tp193770 +a(g193767 +g193769 +S'is' +p193771 +tp193772 +a(g193769 +g193771 +S'a' +p193773 +tp193774 +a(g193771 +g193773 +S'folded' +p193775 +tp193776 +a(g193773 +g193775 +S'paper' +p193777 +tp193778 +a(g193775 +g193777 +S'bearing' +p193779 +tp193780 +a(g193777 +g193779 +S'a' +p193781 +tp193782 +a(g193779 +g193781 +S'quotation' +p193783 +tp193784 +a(g193781 +g193783 +S'from' +p193785 +tp193786 +a(g193783 +g193785 +S'the' +p193787 +tp193788 +a(g193785 +g193787 +S'book' +p193789 +tp193790 +a(g193787 +g193789 +S'of' +p193791 +tp193792 +a(g193789 +g193791 +S'job' +p193793 +tp193794 +a(g193791 +g193793 +S'(10:20)' +p193795 +tp193796 +a(g193793 +g193795 +S'which' +p193797 +tp193798 +a(g193795 +g193797 +S'begins,' +p193799 +tp193800 +a(g193797 +g193799 +S'"are' +p193801 +tp193802 +a(g193799 +g193801 +S'not' +p193803 +tp193804 +a(g193801 +g193803 +S'my' +p193805 +tp193806 +a(g193803 +g193805 +S'days' +p193807 +tp193808 +a(g193805 +g193807 +S'few?"' +p193809 +tp193810 +a(g193807 +g193809 +S'the' +p193811 +tp193812 +a(g193809 +g193811 +S'gravity' +p193813 +tp193814 +a(g193811 +g193813 +S'of' +p193815 +tp193816 +a(g193813 +g193815 +S'the' +p193817 +tp193818 +a(g193815 +g193817 +S'sentiment' +p193819 +tp193820 +a(g193817 +g193819 +S'is' +p193821 +tp193822 +a(g193819 +g193821 +S'echoed' +p193823 +tp193824 +a(g193821 +g193823 +S'in' +p193825 +tp193826 +a(g193823 +g193825 +S"tuke's" +p193827 +tp193828 +a(g193825 +g193827 +S'countenance;' +p193829 +tp193830 +a(g193827 +g193829 +S'his' +p193831 +tp193832 +a(g193829 +g193831 +S'faint' +p193833 +tp193834 +a(g193831 +g193833 +S'smile' +p193835 +tp193836 +a(g193833 +g193835 +S'is' +p193837 +tp193838 +a(g193835 +g193837 +S'pained' +p193839 +tp193840 +a(g193837 +g193839 +S'and' +p193841 +tp193842 +a(g193839 +g193841 +S'his' +p193843 +tp193844 +a(g193841 +g193843 +S'eyes,' +p193845 +tp193846 +a(g193843 +g193845 +S'fixed' +p193847 +tp193848 +a(g193845 +g193847 +S'but' +p193849 +tp193850 +a(g193847 +g193849 +S'not' +p193851 +tp193852 +a(g193849 +g193851 +S'focused,' +p193853 +tp193854 +a(g193851 +g193853 +S'seem' +p193855 +tp193856 +a(g193853 +g193855 +S'melancholy.' +p193857 +tp193858 +a(g193855 +g193857 +S'schäufelein' +p193859 +tp193860 +a(g193857 +g193859 +S'worked' +p193861 +tp193862 +a(g193859 +g193861 +S'in' +p193863 +tp193864 +a(g193861 +g193863 +S'the' +p193865 +tp193866 +a(g193863 +g193865 +S'strength' +p193867 +tp193868 +a(g193865 +g193867 +S'and' +p193869 +tp193870 +a(g193867 +g193869 +S'vitality' +p193871 +tp193872 +a(g193869 +g193871 +S'of' +p193873 +tp193874 +a(g193871 +g193873 +S'the' +p193875 +tp193876 +a(g193873 +g193875 +S'people' +p193877 +tp193878 +a(g193875 +g193877 +S'who' +p193879 +tp193880 +a(g193877 +g193879 +S'helped' +p193881 +tp193882 +a(g193879 +g193881 +S'establish' +p193883 +tp193884 +a(g193881 +g193883 +S'the' +p193885 +tp193886 +a(g193883 +g193885 +S'new' +p193887 +tp193888 +a(g193885 +g193887 +S'dutch' +p193889 +tp193890 +a(g193887 +g193889 +S'republic' +p193891 +tp193892 +a(g193889 +g193891 +S'are' +p193893 +tp193894 +a(g193891 +g193893 +S'nowhere' +p193895 +tp193896 +a(g193893 +g193895 +S'better' +p193897 +tp193898 +a(g193895 +g193897 +S'captured' +p193899 +tp193900 +a(g193897 +g193899 +S'than' +p193901 +tp193902 +a(g193899 +g193901 +S'in' +p193903 +tp193904 +a(g193901 +g193903 +S'paintings' +p193905 +tp193906 +a(g193903 +g193905 +S'by' +p193907 +tp193908 +a(g193905 +g193907 +S'frans' +p193909 +tp193910 +a(g193907 +g193909 +S'hals.' +p193911 +tp193912 +a(g193909 +g193911 +S'hals' +p193913 +tp193914 +a(g193911 +g193913 +S'was' +p193915 +tp193916 +a(g193913 +g193915 +S'the' +p193917 +tp193918 +a(g193915 +g193917 +S'preeminent' +p193919 +tp193920 +a(g193917 +g193919 +S'portrait' +p193921 +tp193922 +a(g193919 +g193921 +S'painter' +p193923 +tp193924 +a(g193921 +g193923 +S'in' +p193925 +tp193926 +a(g193923 +g193925 +S'haarlem,' +p193927 +tp193928 +a(g193925 +g193927 +S'the' +p193929 +tp193930 +a(g193927 +g193929 +S'most' +p193931 +tp193932 +a(g193929 +g193931 +S'important' +p193933 +tp193934 +a(g193931 +g193933 +S'dutch' +p193935 +tp193936 +a(g193933 +g193935 +S'city' +p193937 +tp193938 +a(g193935 +g193937 +S'in' +p193939 +tp193940 +a(g193937 +g193939 +S'the' +p193941 +tp193942 +a(g193939 +g193941 +S'early' +p193943 +tp193944 +a(g193941 +g193943 +S'part' +p193945 +tp193946 +a(g193943 +g193945 +S'of' +p193947 +tp193948 +a(g193945 +g193947 +S'the' +p193949 +tp193950 +a(g193947 +g193949 +S'seventeenth' +p193951 +tp193952 +a(g193949 +g193951 +S'century.' +p193953 +tp193954 +a(g193951 +g193953 +S'this' +p193955 +tp193956 +a(g193953 +g193955 +S'mercantile,' +p193957 +tp193958 +a(g193955 +g193957 +S'intellectual,' +p193959 +tp193960 +a(g193957 +g193959 +S'and' +p193961 +tp193962 +a(g193959 +g193961 +S'artistic' +p193963 +tp193964 +a(g193961 +g193963 +S'center' +p193965 +tp193966 +a(g193963 +g193965 +S'attracted' +p193967 +tp193968 +a(g193965 +g193967 +S'many' +p193969 +tp193970 +a(g193967 +g193969 +S'immigrants' +p193971 +tp193972 +a(g193969 +g193971 +S'from' +p193973 +tp193974 +a(g193971 +g193973 +S'flanders,' +p193975 +tp193976 +a(g193973 +g193975 +S'including' +p193977 +tp193978 +a(g193975 +g193977 +S"hals'" +p193979 +tp193980 +a(g193977 +g193979 +S'parents.' +p193981 +tp193982 +a(g193979 +g193981 +S'although' +p193983 +tp193984 +a(g193981 +g193983 +S'the' +p193985 +tp193986 +a(g193983 +g193985 +S'name' +p193987 +tp193988 +a(g193985 +g193987 +S'of' +p193989 +tp193990 +a(g193987 +g193989 +S'this' +p193991 +tp193992 +a(g193989 +g193991 +S'sitter' +p193993 +tp193994 +a(g193991 +g193993 +S'is' +p193995 +tp193996 +a(g193993 +g193995 +S'not' +p193997 +tp193998 +a(g193995 +g193997 +S'known,' +p193999 +tp194000 +a(g193997 +g193999 +S'hals' +p194001 +tp194002 +a(g193999 +g194001 +S'inscribed' +p194003 +tp194004 +a(g194001 +g194003 +S'her' +p194005 +tp194006 +a(g194003 +g194005 +S'age,' +p194007 +tp194008 +a(g194005 +g194007 +S'sixty,' +p194009 +tp194010 +a(g194007 +g194009 +S'and' +p194011 +tp194012 +a(g194009 +g194011 +S'the' +p194013 +tp194014 +a(g194011 +g194013 +S'date' +p194015 +tp194016 +a(g194013 +g194015 +S'of' +p194017 +tp194018 +a(g194015 +g194017 +S'the' +p194019 +tp194020 +a(g194017 +g194019 +S'painting,' +p194021 +tp194022 +a(g194019 +g194021 +S'1633,' +p194023 +tp194024 +a(g194021 +g194023 +S'in' +p194025 +tp194026 +a(g194023 +g194025 +S'the' +p194027 +tp194028 +a(g194025 +g194027 +S'background' +p194029 +tp194030 +a(g194027 +g194029 +S'on' +p194031 +tp194032 +a(g194029 +g194031 +S'the' +p194033 +tp194034 +a(g194031 +g194033 +S'left.' +p194035 +tp194036 +a(g194033 +g194035 +S'the' +p194037 +tp194038 +a(g194035 +g194037 +S'prayer' +p194039 +tp194040 +a(g194037 +g194039 +S'book' +p194041 +tp194042 +a(g194039 +g194041 +S'she' +p194043 +tp194044 +a(g194041 +g194043 +S'holds' +p194045 +tp194046 +a(g194043 +g194045 +S'in' +p194047 +tp194048 +a(g194045 +g194047 +S'her' +p194049 +tp194050 +a(g194047 +g194049 +S'right' +p194051 +tp194052 +a(g194049 +g194051 +S'hand' +p194053 +tp194054 +a(g194051 +g194053 +S'and' +p194055 +tp194056 +a(g194053 +g194055 +S'her' +p194057 +tp194058 +a(g194055 +g194057 +S'conservative' +p194059 +tp194060 +a(g194057 +g194059 +S'black' +p194061 +tp194062 +a(g194059 +g194061 +S'costume' +p194063 +tp194064 +a(g194061 +g194063 +S'with' +p194065 +tp194066 +a(g194063 +g194065 +S'its' +p194067 +tp194068 +a(g194065 +g194067 +S'white' +p194069 +tp194070 +a(g194067 +g194069 +S'ruff' +p194071 +tp194072 +a(g194069 +g194071 +S'clearly' +p194073 +tp194074 +a(g194071 +g194073 +S'indicate' +p194075 +tp194076 +a(g194073 +g194075 +S'her' +p194077 +tp194078 +a(g194075 +g194077 +S'pious' +p194079 +tp194080 +a(g194077 +g194079 +S'nature,' +p194081 +tp194082 +a(g194079 +g194081 +S'yet' +p194083 +tp194084 +a(g194081 +g194083 +S'hals' +p194085 +tp194086 +a(g194083 +g194085 +S'tells' +p194087 +tp194088 +a(g194085 +g194087 +S'us' +p194089 +tp194090 +a(g194087 +g194089 +S'far' +p194091 +tp194092 +a(g194089 +g194091 +S'more' +p194093 +tp194094 +a(g194091 +g194093 +S'about' +p194095 +tp194096 +a(g194093 +g194095 +S'her' +p194097 +tp194098 +a(g194095 +g194097 +S'through' +p194099 +tp194100 +a(g194097 +g194099 +S'her' +p194101 +tp194102 +a(g194099 +g194101 +S'face' +p194103 +tp194104 +a(g194101 +g194103 +S'and' +p194105 +tp194106 +a(g194103 +g194105 +S'hands' +p194107 +tp194108 +a(g194105 +g194107 +S'than' +p194109 +tp194110 +a(g194107 +g194109 +S'through' +p194111 +tp194112 +a(g194109 +g194111 +S'her' +p194113 +tp194114 +a(g194111 +g194113 +S'costume' +p194115 +tp194116 +a(g194113 +g194115 +S'and' +p194117 +tp194118 +a(g194115 +g194117 +S'book.' +p194119 +tp194120 +a(g194117 +g194119 +S'with' +p194121 +tp194122 +a(g194119 +g194121 +S'firm' +p194123 +tp194124 +a(g194121 +g194123 +S'yet' +p194125 +tp194126 +a(g194123 +g194125 +S'broad' +p194127 +tp194128 +a(g194125 +g194127 +S'strokes' +p194129 +tp194130 +a(g194127 +g194129 +S'of' +p194131 +tp194132 +a(g194129 +g194131 +S'his' +p194133 +tp194134 +a(g194131 +g194133 +S'brush' +p194135 +tp194136 +a(g194133 +g194135 +S'he' +p194137 +tp194138 +a(g194135 +g194137 +S'conveys' +p194139 +tp194140 +a(g194137 +g194139 +S'her' +p194141 +tp194142 +a(g194139 +g194141 +S'lively,' +p194143 +tp194144 +a(g194141 +g194143 +S'robust' +p194145 +tp194146 +a(g194143 +g194145 +S'personality.' +p194147 +tp194148 +a(g194145 +g194147 +S'her' +p194149 +tp194150 +a(g194147 +g194149 +S'self-confidence' +p194151 +tp194152 +a(g194149 +g194151 +S'is' +p194153 +tp194154 +a(g194151 +g194153 +S'felt' +p194155 +tp194156 +a(g194153 +g194155 +S'in' +p194157 +tp194158 +a(g194155 +g194157 +S'the' +p194159 +tp194160 +a(g194157 +g194159 +S'twinkle' +p194161 +tp194162 +a(g194159 +g194161 +S'of' +p194163 +tp194164 +a(g194161 +g194163 +S'her' +p194165 +tp194166 +a(g194163 +g194165 +S'eyes,' +p194167 +tp194168 +a(g194165 +g194167 +S'in' +p194169 +tp194170 +a(g194167 +g194169 +S'the' +p194171 +tp194172 +a(g194169 +g194171 +S'firm' +p194173 +tp194174 +a(g194171 +g194173 +S'grasp' +p194175 +tp194176 +a(g194173 +g194175 +S'of' +p194177 +tp194178 +a(g194175 +g194177 +S'her' +p194179 +tp194180 +a(g194177 +g194179 +S'hand' +p194181 +tp194182 +a(g194179 +g194181 +S'on' +p194183 +tp194184 +a(g194181 +g194183 +S'the' +p194185 +tp194186 +a(g194183 +g194185 +S'arm' +p194187 +tp194188 +a(g194185 +g194187 +S'of' +p194189 +tp194190 +a(g194187 +g194189 +S'the' +p194191 +tp194192 +a(g194189 +g194191 +S'chair,' +p194193 +tp194194 +a(g194191 +g194193 +S'and' +p194195 +tp194196 +a(g194193 +g194195 +S'by' +p194197 +tp194198 +a(g194195 +g194197 +S'the' +p194199 +tp194200 +a(g194197 +g194199 +S'strong' +p194201 +tp194202 +a(g194199 +g194201 +S'silhouette' +p194203 +tp194204 +a(g194201 +g194203 +S'of' +p194205 +tp194206 +a(g194203 +g194205 +S'her' +p194207 +tp194208 +a(g194205 +g194207 +S'form' +p194209 +tp194210 +a(g194207 +g194209 +S'against' +p194211 +tp194212 +a(g194209 +g194211 +S'the' +p194213 +tp194214 +a(g194211 +g194213 +S'gray' +p194215 +tp194216 +a(g194213 +g194215 +S'background.' +p194217 +tp194218 +a(g194215 +g194217 +S'the' +p194219 +tp194220 +a(g194217 +g194219 +S'steel' +p194221 +tp194222 +a(g194219 +g194221 +S'breastplate' +p194223 +tp194224 +a(g194221 +g194223 +S'identifies' +p194225 +tp194226 +a(g194223 +g194225 +S'this' +p194227 +tp194228 +a(g194225 +g194227 +S'sitter' +p194229 +tp194230 +a(g194227 +g194229 +S'as' +p194231 +tp194232 +a(g194229 +g194231 +S'a' +p194233 +tp194234 +a(g194231 +g194233 +S'soldier,' +p194235 +tp194236 +a(g194233 +g194235 +S'but' +p194237 +tp194238 +a(g194235 +g194237 +S'his' +p194239 +tp194240 +a(g194237 +g194239 +S'broad-brimmed' +p194241 +tp194242 +a(g194239 +g194241 +S'hat' +p194243 +tp194244 +a(g194241 +g194243 +S'and' +p194245 +tp194246 +a(g194243 +g194245 +S'lace' +p194247 +tp194248 +a(g194245 +g194247 +S'collar' +p194249 +tp194250 +a(g194247 +g194249 +S'and' +p194251 +tp194252 +a(g194249 +g194251 +S'cuffs' +p194253 +tp194254 +a(g194251 +g194253 +S'reveal' +p194255 +tp194256 +a(g194253 +g194255 +S'that' +p194257 +tp194258 +a(g194255 +g194257 +S'he' +p194259 +tp194260 +a(g194257 +g194259 +S'is' +p194261 +tp194262 +a(g194259 +g194261 +S'dressed' +p194263 +tp194264 +a(g194261 +g194263 +S'to' +p194265 +tp194266 +a(g194263 +g194265 +S'pose' +p194267 +tp194268 +a(g194265 +g194267 +S'for' +p194269 +tp194270 +a(g194267 +g194269 +S'an' +p194271 +tp194272 +a(g194269 +g194271 +S'artist,' +p194273 +tp194274 +a(g194271 +g194273 +S'not' +p194275 +tp194276 +a(g194273 +g194275 +S'to' +p194277 +tp194278 +a(g194275 +g194277 +S'engage' +p194279 +tp194280 +a(g194277 +g194279 +S'in' +p194281 +tp194282 +a(g194279 +g194281 +S'military' +p194283 +tp194284 +a(g194281 +g194283 +S'maneuvers.' +p194285 +tp194286 +a(g194283 +g194285 +S'hals' +p194287 +tp194288 +a(g194285 +g194287 +S'painted' +p194289 +tp194290 +a(g194287 +g194289 +S'six' +p194291 +tp194292 +a(g194289 +g194291 +S'gigantic' +p194293 +tp194294 +a(g194291 +g194293 +S'group' +p194295 +tp194296 +a(g194293 +g194295 +S'portraits' +p194297 +tp194298 +a(g194295 +g194297 +S'of' +p194299 +tp194300 +a(g194297 +g194299 +S'dutch' +p194301 +tp194302 +a(g194299 +g194301 +S'civic' +p194303 +tp194304 +a(g194301 +g194303 +S'guards,' +p194305 +tp194306 +a(g194303 +g194305 +S'but' +p194307 +tp194308 +a(g194305 +g194307 +S'this' +p194309 +tp194310 +a(g194307 +g194309 +S'is' +p194311 +tp194312 +a(g194309 +g194311 +S'his' +p194313 +tp194314 +a(g194311 +g194313 +S'only' +p194315 +tp194316 +a(g194313 +g194315 +S'known' +p194317 +tp194318 +a(g194315 +g194317 +S'portrait' +p194319 +tp194320 +a(g194317 +g194319 +S'of' +p194321 +tp194322 +a(g194319 +g194321 +S'an' +p194323 +tp194324 +a(g194321 +g194323 +S'individual' +p194325 +tp194326 +a(g194323 +g194325 +S'soldier.' +p194327 +tp194328 +a(g194325 +g194327 +S'as' +p194329 +tp194330 +a(g194327 +g194329 +S'the' +p194331 +tp194332 +a(g194329 +g194331 +S'netherlands' +p194333 +tp194334 +a(g194331 +g194333 +S'fractured' +p194335 +tp194336 +a(g194333 +g194335 +S'into' +p194337 +tp194338 +a(g194335 +g194337 +S'north' +p194339 +tp194340 +a(g194337 +g194339 +S'and' +p194341 +tp194342 +a(g194339 +g194341 +S'south' +p194343 +tp194344 +a(g194341 +g194343 +S'along' +p194345 +tp194346 +a(g194343 +g194345 +S'political' +p194347 +tp194348 +a(g194345 +g194347 +S'and' +p194349 +tp194350 +a(g194347 +g194349 +S'religious' +p194351 +tp194352 +a(g194349 +g194351 +S'lines' +p194353 +tp194354 +a(g194351 +g194353 +S'in' +p194355 +tp194356 +a(g194353 +g194355 +S'the' +p194357 +tp194358 +a(g194355 +g194357 +S'late' +p194359 +tp194360 +a(g194357 +g194359 +S'1500s,' +p194361 +tp194362 +a(g194359 +g194361 +S'the' +p194363 +tp194364 +a(g194361 +g194363 +S'civic' +p194365 +tp194366 +a(g194363 +g194365 +S'guards' +p194367 +tp194368 +a(g194365 +g194367 +S'battled' +p194369 +tp194370 +a(g194367 +g194369 +S'heroically' +p194371 +tp194372 +a(g194369 +g194371 +S'to' +p194373 +tp194374 +a(g194371 +g194373 +S'win' +p194375 +tp194376 +a(g194373 +g194375 +S'the' +p194377 +tp194378 +a(g194375 +g194377 +S"north's" +p194379 +tp194380 +a(g194377 +g194379 +S'independence' +p194381 +tp194382 +a(g194379 +g194381 +S'from' +p194383 +tp194384 +a(g194381 +g194383 +S'spain.' +p194385 +tp194386 +a(g194383 +g194385 +S'by' +p194387 +tp194388 +a(g194385 +g194387 +S"hals'" +p194389 +tp194390 +a(g194387 +g194389 +S'time,' +p194391 +tp194392 +a(g194389 +g194391 +S'though,' +p194393 +tp194394 +a(g194391 +g194393 +S'these' +p194395 +tp194396 +a(g194393 +g194395 +S'numerous' +p194397 +tp194398 +a(g194395 +g194397 +S'militias' +p194399 +tp194400 +a(g194397 +g194399 +S'had' +p194401 +tp194402 +a(g194399 +g194401 +S'become' +p194403 +tp194404 +a(g194401 +g194403 +S'social' +p194405 +tp194406 +a(g194403 +g194405 +S'fraternities.' +p194407 +tp194408 +a(g194405 +g194407 +S'named' +p194409 +tp194410 +a(g194407 +g194409 +S'for' +p194411 +tp194412 +a(g194409 +g194411 +S'a' +p194413 +tp194414 +a(g194411 +g194413 +S'patron' +p194415 +tp194416 +a(g194413 +g194415 +S'saint,' +p194417 +tp194418 +a(g194415 +g194417 +S'each' +p194419 +tp194420 +a(g194417 +g194419 +S'guard' +p194421 +tp194422 +a(g194419 +g194421 +S'group' +p194423 +tp194424 +a(g194421 +g194423 +S'was' +p194425 +tp194426 +a(g194423 +g194425 +S'divided' +p194427 +tp194428 +a(g194425 +g194427 +S'into' +p194429 +tp194430 +a(g194427 +g194429 +S'three' +p194431 +tp194432 +a(g194429 +g194431 +S'companies' +p194433 +tp194434 +a(g194431 +g194433 +S'based' +p194435 +tp194436 +a(g194433 +g194435 +S'on' +p194437 +tp194438 +a(g194435 +g194437 +S'the' +p194439 +tp194440 +a(g194437 +g194439 +S'colors' +p194441 +tp194442 +a(g194439 +g194441 +S'of' +p194443 +tp194444 +a(g194441 +g194443 +S'the' +p194445 +tp194446 +a(g194443 +g194445 +S'dutch' +p194447 +tp194448 +a(g194445 +g194447 +S'flag:' +p194449 +tp194450 +a(g194447 +g194449 +S'orange,' +p194451 +tp194452 +a(g194449 +g194451 +S'white,' +p194453 +tp194454 +a(g194451 +g194453 +S'and' +p194455 +tp194456 +a(g194453 +g194455 +S'blue.' +p194457 +tp194458 +a(g194455 +g194457 +S'his' +p194459 +tp194460 +a(g194457 +g194459 +S'sash' +p194461 +tp194462 +a(g194459 +g194461 +S'marks' +p194463 +tp194464 +a(g194461 +g194463 +S'this' +p194465 +tp194466 +a(g194463 +g194465 +S'soldier' +p194467 +tp194468 +a(g194465 +g194467 +S'as' +p194469 +tp194470 +a(g194467 +g194469 +S'a' +p194471 +tp194472 +a(g194469 +g194471 +S'member' +p194473 +tp194474 +a(g194471 +g194473 +S'of' +p194475 +tp194476 +a(g194473 +g194475 +S'an' +p194477 +tp194478 +a(g194475 +g194477 +S'orange' +p194479 +tp194480 +a(g194477 +g194479 +S'company.' +p194481 +tp194482 +a(g194479 +g194481 +S'with' +p194483 +tp194484 +a(g194481 +g194483 +S'great' +p194485 +tp194486 +a(g194483 +g194485 +S'bravura,' +p194487 +tp194488 +a(g194485 +g194487 +S'the' +p194489 +tp194490 +a(g194487 +g194489 +S'smiling' +p194491 +tp194492 +a(g194489 +g194491 +S'man' +p194493 +tp194494 +a(g194491 +g194493 +S'stands' +p194495 +tp194496 +a(g194493 +g194495 +S'before' +p194497 +tp194498 +a(g194495 +g194497 +S'a' +p194499 +tp194500 +a(g194497 +g194499 +S'window' +p194501 +tp194502 +a(g194499 +g194501 +S'overlooking' +p194503 +tp194504 +a(g194501 +g194503 +S'a' +p194505 +tp194506 +a(g194503 +g194505 +S'distant' +p194507 +tp194508 +a(g194505 +g194507 +S'plain' +p194509 +tp194510 +a(g194507 +g194509 +S'or' +p194511 +tp194512 +a(g194509 +g194511 +S'sea.' +p194513 +tp194514 +a(g194511 +g194513 +S'only' +p194515 +tp194516 +a(g194513 +g194515 +S'two' +p194517 +tp194518 +a(g194515 +g194517 +S'of' +p194519 +tp194520 +a(g194517 +g194519 +S"hals'" +p194521 +tp194522 +a(g194519 +g194521 +S'other' +p194523 +tp194524 +a(g194521 +g194523 +S'portraits' +p194525 +tp194526 +a(g194523 +g194525 +S'of' +p194527 +tp194528 +a(g194525 +g194527 +S'single' +p194529 +tp194530 +a(g194527 +g194529 +S'figures' +p194531 +tp194532 +a(g194529 +g194531 +S'include' +p194533 +tp194534 +a(g194531 +g194533 +S'such' +p194535 +tp194536 +a(g194533 +g194535 +S'landscape' +p194537 +tp194538 +a(g194535 +g194537 +S'vistas.' +p194539 +tp194540 +a(g194537 +g194539 +S'willem' +p194541 +tp194542 +a(g194539 +g194541 +S'coymans' +p194543 +tp194544 +a(g194541 +g194543 +S'(1623–1678)' +p194545 +tp194546 +a(g194543 +g194545 +S'was' +p194547 +tp194548 +a(g194545 +g194547 +S'a' +p194549 +tp194550 +a(g194547 +g194549 +S'member' +p194551 +tp194552 +a(g194549 +g194551 +S'of' +p194553 +tp194554 +a(g194551 +g194553 +S'one' +p194555 +tp194556 +a(g194553 +g194555 +S'of' +p194557 +tp194558 +a(g194555 +g194557 +S"holland's" +p194559 +tp194560 +a(g194557 +g194559 +S'wealthiest' +p194561 +tp194562 +a(g194559 +g194561 +S'merchant' +p194563 +tp194564 +a(g194561 +g194563 +S'families.' +p194565 +tp194566 +a(g194563 +g194565 +S'their' +p194567 +tp194568 +a(g194565 +g194567 +S'crest' +p194569 +tp194570 +a(g194567 +g194569 +S'of' +p194571 +tp194572 +a(g194569 +g194571 +S'oxen' +p194573 +tp194574 +a(g194571 +g194573 +S'heads' +p194575 +tp194576 +a(g194573 +g194575 +S'hangs' +p194577 +tp194578 +a(g194575 +g194577 +S'on' +p194579 +tp194580 +a(g194577 +g194579 +S'the' +p194581 +tp194582 +a(g194579 +g194581 +S'wall;' +p194583 +tp194584 +a(g194581 +g194583 +S'the' +p194585 +tp194586 +a(g194583 +g194585 +S'dutch' +p194587 +tp194588 +a(g194585 +g194587 +S'name' +p194589 +tp194590 +a(g194587 +g194589 +S'coymans' +p194591 +tp194592 +a(g194589 +g194591 +S'literally' +p194593 +tp194594 +a(g194591 +g194593 +S'translates' +p194595 +tp194596 +a(g194593 +g194595 +S'as' +p194597 +tp194598 +a(g194595 +g194597 +S'"cow' +p194599 +tp194600 +a(g194597 +g194599 +S'men."' +p194601 +tp194602 +a(g194599 +g194601 +S'below' +p194603 +tp194604 +a(g194601 +g194603 +S'the' +p194605 +tp194606 +a(g194603 +g194605 +S'shield,' +p194607 +tp194608 +a(g194605 +g194607 +S'a' +p194609 +tp194610 +a(g194607 +g194609 +S'latin' +p194611 +tp194612 +a(g194609 +g194611 +S'inscription' +p194613 +tp194614 +a(g194611 +g194613 +S'states' +p194615 +tp194616 +a(g194613 +g194615 +S'that' +p194617 +tp194618 +a(g194615 +g194617 +S'willem' +p194619 +tp194620 +a(g194617 +g194619 +S'was' +p194621 +tp194622 +a(g194619 +g194621 +S'22' +p194623 +tp194624 +a(g194621 +g194623 +S'years' +p194625 +tp194626 +a(g194623 +g194625 +S'old' +p194627 +tp194628 +a(g194625 +g194627 +S'in' +p194629 +tp194630 +a(g194627 +g194629 +S'1645.' +p194631 +tp194632 +a(g194629 +g194631 +S'hals' +p194633 +tp194634 +a(g194631 +g194633 +S'rarely' +p194635 +tp194636 +a(g194633 +g194635 +S'dated' +p194637 +tp194638 +a(g194635 +g194637 +S'his' +p194639 +tp194640 +a(g194637 +g194639 +S'pictures.' +p194641 +tp194642 +a(g194639 +g194641 +S'since' +p194643 +tp194644 +a(g194641 +g194643 +S'his' +p194645 +tp194646 +a(g194643 +g194645 +S'few' +p194647 +tp194648 +a(g194645 +g194647 +S'datings' +p194649 +tp194650 +a(g194647 +g194649 +S'normally' +p194651 +tp194652 +a(g194649 +g194651 +S'also' +p194653 +tp194654 +a(g194651 +g194653 +S'provide' +p194655 +tp194656 +a(g194653 +g194655 +S'the' +p194657 +tp194658 +a(g194655 +g194657 +S"subjects'" +p194659 +tp194660 +a(g194657 +g194659 +S'ages,' +p194661 +tp194662 +a(g194659 +g194661 +S'the' +p194663 +tp194664 +a(g194661 +g194663 +S'inscriptions' +p194665 +tp194666 +a(g194663 +g194665 +S'must' +p194667 +tp194668 +a(g194665 +g194667 +S'have' +p194669 +tp194670 +a(g194667 +g194669 +S'been' +p194671 +tp194672 +a(g194669 +g194671 +S'requested' +p194673 +tp194674 +a(g194671 +g194673 +S'by' +p194675 +tp194676 +a(g194673 +g194675 +S'the' +p194677 +tp194678 +a(g194675 +g194677 +S'patrons' +p194679 +tp194680 +a(g194677 +g194679 +S'to' +p194681 +tp194682 +a(g194679 +g194681 +S'serve' +p194683 +tp194684 +a(g194681 +g194683 +S'as' +p194685 +tp194686 +a(g194683 +g194685 +S'genealogies.' +p194687 +tp194688 +a(g194685 +g194687 +S'hals' +p194689 +tp194690 +a(g194687 +g194689 +S'was' +p194691 +tp194692 +a(g194689 +g194691 +S'the' +p194693 +tp194694 +a(g194691 +g194693 +S'first' +p194695 +tp194696 +a(g194693 +g194695 +S'portraitist' +p194697 +tp194698 +a(g194695 +g194697 +S'who' +p194699 +tp194700 +a(g194697 +g194699 +S'consistently' +p194701 +tp194702 +a(g194699 +g194701 +S'depicted' +p194703 +tp194704 +a(g194701 +g194703 +S'his' +p194705 +tp194706 +a(g194703 +g194705 +S'subjects' +p194707 +tp194708 +a(g194705 +g194707 +S'seated' +p194709 +tp194710 +a(g194707 +g194709 +S'sideways,' +p194711 +tp194712 +a(g194709 +g194711 +S'with' +p194713 +tp194714 +a(g194711 +g194713 +S'their' +p194715 +tp194716 +a(g194713 +g194715 +S'arms' +p194717 +tp194718 +a(g194715 +g194717 +S'hooked' +p194719 +tp194720 +a(g194717 +g194719 +S'casually' +p194721 +tp194722 +a(g194719 +g194721 +S'over' +p194723 +tp194724 +a(g194721 +g194723 +S'the' +p194725 +tp194726 +a(g194723 +g194725 +S'backs' +p194727 +tp194728 +a(g194725 +g194727 +S'of' +p194729 +tp194730 +a(g194727 +g194729 +S'their' +p194731 +tp194732 +a(g194729 +g194731 +S'chairs.' +p194733 +tp194734 +a(g194731 +g194733 +S'coymans,' +p194735 +tp194736 +a(g194733 +g194735 +S'an' +p194737 +tp194738 +a(g194735 +g194737 +S'elegant' +p194739 +tp194740 +a(g194737 +g194739 +S'dandy' +p194741 +tp194742 +a(g194739 +g194741 +S'proud' +p194743 +tp194744 +a(g194741 +g194743 +S'of' +p194745 +tp194746 +a(g194743 +g194745 +S'his' +p194747 +tp194748 +a(g194745 +g194747 +S'expensive' +p194749 +tp194750 +a(g194747 +g194749 +S'clothes,' +p194751 +tp194752 +a(g194749 +g194751 +S'wears' +p194753 +tp194754 +a(g194751 +g194753 +S'an' +p194755 +tp194756 +a(g194753 +g194755 +S'embroidered' +p194757 +tp194758 +a(g194755 +g194757 +S'jacket' +p194759 +tp194760 +a(g194757 +g194759 +S'and' +p194761 +tp194762 +a(g194759 +g194761 +S'sports' +p194763 +tp194764 +a(g194761 +g194763 +S'a' +p194765 +tp194766 +a(g194763 +g194765 +S'pom–pom' +p194767 +tp194768 +a(g194765 +g194767 +S'on' +p194769 +tp194770 +a(g194767 +g194769 +S'his' +p194771 +tp194772 +a(g194769 +g194771 +S'hat,' +p194773 +tp194774 +a(g194771 +g194773 +S'which' +p194775 +tp194776 +a(g194773 +g194775 +S'is' +p194777 +tp194778 +a(g194775 +g194777 +S'pushed' +p194779 +tp194780 +a(g194777 +g194779 +S'forward' +p194781 +tp194782 +a(g194779 +g194781 +S'rakishly.' +p194783 +tp194784 +a(g194781 +g194783 +S"hals'" +p194785 +tp194786 +a(g194783 +g194785 +S'dazzling' +p194787 +tp194788 +a(g194785 +g194787 +S'brushwork' +p194789 +tp194790 +a(g194787 +g194789 +S'is' +p194791 +tp194792 +a(g194789 +g194791 +S'especially' +p194793 +tp194794 +a(g194791 +g194793 +S'evident' +p194795 +tp194796 +a(g194793 +g194795 +S'in' +p194797 +tp194798 +a(g194795 +g194797 +S'the' +p194799 +tp194800 +a(g194797 +g194799 +S'gold' +p194801 +tp194802 +a(g194799 +g194801 +S'embroidery' +p194803 +tp194804 +a(g194801 +g194803 +S'and' +p194805 +tp194806 +a(g194803 +g194805 +S'the' +p194807 +tp194808 +a(g194805 +g194807 +S'crisply' +p194809 +tp194810 +a(g194807 +g194809 +S'pleated' +p194811 +tp194812 +a(g194809 +g194811 +S'shirt–sleeve.' +p194813 +tp194814 +a(g194811 +g194813 +S'adriaen' +p194817 +tp194818 +a(g194815 +g194817 +S'van' +p194819 +tp194820 +a(g194817 +g194819 +S'ostade' +p194821 +tp194822 +a(g194819 +g194821 +S'hals' +p194823 +tp194824 +a(g194821 +g194823 +S'depicted' +p194825 +tp194826 +a(g194823 +g194825 +S'his' +p194827 +tp194828 +a(g194825 +g194827 +S'fellow' +p194829 +tp194830 +a(g194827 +g194829 +S'artist' +p194831 +tp194832 +a(g194829 +g194831 +S'as' +p194833 +tp194834 +a(g194831 +g194833 +S'a' +p194835 +tp194836 +a(g194833 +g194835 +S'refined' +p194837 +tp194838 +a(g194835 +g194837 +S'gentleman' +p194839 +tp194840 +a(g194837 +g194839 +S'wearing' +p194841 +tp194842 +a(g194839 +g194841 +S'fashionable' +p194843 +tp194844 +a(g194841 +g194843 +S'apparel' +p194845 +tp194846 +a(g194843 +g194845 +S'denoting' +p194847 +tp194848 +a(g194845 +g194847 +S'professional' +p194849 +tp194850 +a(g194847 +g194849 +S'success.' +p194851 +tp194852 +a(g194849 +g194851 +S'gloves,' +p194853 +tp194854 +a(g194851 +g194853 +S'for' +p194855 +tp194856 +a(g194853 +g194855 +S'example,' +p194857 +tp194858 +a(g194855 +g194857 +S'were' +p194859 +tp194860 +a(g194857 +g194859 +S'an' +p194861 +tp194862 +a(g194859 +g194861 +S'essential' +p194863 +tp194864 +a(g194861 +g194863 +S'feature' +p194865 +tp194866 +a(g194863 +g194865 +S'of' +p194867 +tp194868 +a(g194865 +g194867 +S'seventeenth-century' +p194869 +tp194870 +a(g194867 +g194869 +S'social' +p194871 +tp194872 +a(g194869 +g194871 +S'decorum.' +p194873 +tp194874 +a(g194871 +g194873 +S'ostade' +p194875 +tp194876 +a(g194873 +g194875 +S'has' +p194877 +tp194878 +a(g194875 +g194877 +S'removed' +p194879 +tp194880 +a(g194877 +g194879 +S'the' +p194881 +tp194882 +a(g194879 +g194881 +S'glove' +p194883 +tp194884 +a(g194881 +g194883 +S'from' +p194885 +tp194886 +a(g194883 +g194885 +S'his' +p194887 +tp194888 +a(g194885 +g194887 +S'right' +p194889 +tp194890 +a(g194887 +g194889 +S'hand,' +p194891 +tp194892 +a(g194889 +g194891 +S'the' +p194893 +tp194894 +a(g194891 +g194893 +S'one' +p194895 +tp194896 +a(g194893 +g194895 +S'used' +p194897 +tp194898 +a(g194895 +g194897 +S'in' +p194899 +tp194900 +a(g194897 +g194899 +S'greeting.' +p194901 +tp194902 +a(g194899 +g194901 +S'his' +p194903 +tp194904 +a(g194901 +g194903 +S'bare' +p194905 +tp194906 +a(g194903 +g194905 +S'right' +p194907 +tp194908 +a(g194905 +g194907 +S'palm,' +p194909 +tp194910 +a(g194907 +g194909 +S'open' +p194911 +tp194912 +a(g194909 +g194911 +S'to' +p194913 +tp194914 +a(g194911 +g194913 +S'the' +p194915 +tp194916 +a(g194913 +g194915 +S'viewer,' +p194917 +tp194918 +a(g194915 +g194917 +S'reinforces' +p194919 +tp194920 +a(g194917 +g194919 +S'his' +p194921 +tp194922 +a(g194919 +g194921 +S'forthrightness.' +p194923 +tp194924 +a(g194921 +g194923 +S'with' +p194925 +tp194926 +a(g194923 +g194925 +S'an' +p194927 +tp194928 +a(g194925 +g194927 +S'alert' +p194929 +tp194930 +a(g194927 +g194929 +S'glance' +p194931 +tp194932 +a(g194929 +g194931 +S'at' +p194933 +tp194934 +a(g194931 +g194933 +S'the' +p194935 +tp194936 +a(g194933 +g194935 +S'viewer,' +p194937 +tp194938 +a(g194935 +g194937 +S'this' +p194939 +tp194940 +a(g194937 +g194939 +S'portly' +p194941 +tp194942 +a(g194939 +g194941 +S'youth' +p194943 +tp194944 +a(g194941 +g194943 +S'rests' +p194945 +tp194946 +a(g194943 +g194945 +S'his' +p194947 +tp194948 +a(g194945 +g194947 +S'elbow' +p194949 +tp194950 +a(g194947 +g194949 +S'on' +p194951 +tp194952 +a(g194949 +g194951 +S'the' +p194953 +tp194954 +a(g194951 +g194953 +S'back' +p194955 +tp194956 +a(g194953 +g194955 +S'of' +p194957 +tp194958 +a(g194955 +g194957 +S'his' +p194959 +tp194960 +a(g194957 +g194959 +S'chair.' +p194961 +tp194962 +a(g194959 +g194961 +S"hals'" +p194963 +tp194964 +a(g194961 +g194963 +S'earliest' +p194965 +tp194966 +a(g194963 +g194965 +S'known' +p194967 +tp194968 +a(g194965 +g194967 +S'use' +p194969 +tp194970 +a(g194967 +g194969 +S'and' +p194971 +tp194972 +a(g194969 +g194971 +S'possible' +p194973 +tp194974 +a(g194971 +g194973 +S'invention' +p194975 +tp194976 +a(g194973 +g194975 +S'of' +p194977 +tp194978 +a(g194975 +g194977 +S'a' +p194979 +tp194980 +a(g194977 +g194979 +S'model' +p194981 +tp194982 +a(g194979 +g194981 +S'turned' +p194983 +tp194984 +a(g194981 +g194983 +S'sideways' +p194985 +tp194986 +a(g194983 +g194985 +S'in' +p194987 +tp194988 +a(g194985 +g194987 +S'a' +p194989 +tp194990 +a(g194987 +g194989 +S'chair' +p194991 +tp194992 +a(g194989 +g194991 +S'dates' +p194993 +tp194994 +a(g194991 +g194993 +S'to' +p194995 +tp194996 +a(g194993 +g194995 +S'1626,' +p194997 +tp194998 +a(g194995 +g194997 +S'but' +p194999 +tp195000 +a(g194997 +g194999 +S'he' +p195001 +tp195002 +a(g194999 +g195001 +S'employed' +p195003 +tp195004 +a(g195001 +g195003 +S'this' +p195005 +tp195006 +a(g195003 +g195005 +S'lively' +p195007 +tp195008 +a(g195005 +g195007 +S'pose' +p195009 +tp195010 +a(g195007 +g195009 +S'often' +p195011 +tp195012 +a(g195009 +g195011 +S'during' +p195013 +tp195014 +a(g195011 +g195013 +S'the' +p195015 +tp195016 +a(g195013 +g195015 +S'1640s.' +p195017 +tp195018 +a(g195015 +g195017 +S'the' +p195019 +tp195020 +a(g195017 +g195019 +S'national' +p195021 +tp195022 +a(g195019 +g195021 +S"gallery's" +p195023 +tp195024 +a(g195021 +g195023 +S'just' +p195025 +tp195026 +a(g195023 +g195025 +S'above' +p195027 +tp195028 +a(g195025 +g195027 +S'the' +p195029 +tp195030 +a(g195027 +g195029 +S"sitter's" +p195031 +tp195032 +a(g195029 +g195031 +S'hand,' +p195033 +tp195034 +a(g195031 +g195033 +S'frans' +p195035 +tp195036 +a(g195033 +g195035 +S'hals' +p195037 +tp195038 +a(g195035 +g195037 +S'signed' +p195039 +tp195040 +a(g195037 +g195039 +S'the' +p195041 +tp195042 +a(g195039 +g195041 +S'work' +p195043 +tp195044 +a(g195041 +g195043 +S'with' +p195045 +tp195046 +a(g195043 +g195045 +S'his' +p195047 +tp195048 +a(g195045 +g195047 +S'initials' +p195049 +tp195050 +a(g195047 +g195049 +S'doubled:' +p195051 +tp195052 +a(g195049 +g195051 +S'rembrandt' +p195053 +tp195054 +a(g195051 +g195053 +S'van' +p195055 +tp195056 +a(g195053 +g195055 +S'rijn' +p195057 +tp195058 +a(g195055 +g195057 +S'painted,' +p195059 +tp195060 +a(g195057 +g195059 +S'drew,' +p195061 +tp195062 +a(g195059 +g195061 +S'and' +p195063 +tp195064 +a(g195061 +g195063 +S'etched' +p195065 +tp195066 +a(g195063 +g195065 +S'so' +p195067 +tp195068 +a(g195065 +g195067 +S'many' +p195069 +tp195070 +a(g195067 +g195069 +S'self–portraits' +p195071 +tp195072 +a(g195069 +g195071 +S'in' +p195073 +tp195074 +a(g195071 +g195073 +S'his' +p195075 +tp195076 +a(g195073 +g195075 +S'lifetime' +p195077 +tp195078 +a(g195075 +g195077 +S'that' +p195079 +tp195080 +a(g195077 +g195079 +S'changes' +p195081 +tp195082 +a(g195079 +g195081 +S'in' +p195083 +tp195084 +a(g195081 +g195083 +S'his' +p195085 +tp195086 +a(g195083 +g195085 +S'appearance' +p195087 +tp195088 +a(g195085 +g195087 +S'tempt' +p195089 +tp195090 +a(g195087 +g195089 +S'us' +p195091 +tp195092 +a(g195089 +g195091 +S'to' +p195093 +tp195094 +a(g195091 +g195093 +S'gauge' +p195095 +tp195096 +a(g195093 +g195095 +S'his' +p195097 +tp195098 +a(g195095 +g195097 +S'mental' +p195099 +tp195100 +a(g195097 +g195099 +S'state' +p195101 +tp195102 +a(g195099 +g195101 +S'by' +p195103 +tp195104 +a(g195101 +g195103 +S'comparing' +p195105 +tp195106 +a(g195103 +g195105 +S'one' +p195107 +tp195108 +a(g195105 +g195107 +S'image' +p195109 +tp195110 +a(g195107 +g195109 +S'to' +p195111 +tp195112 +a(g195109 +g195111 +S'another.' +p195113 +tp195114 +a(g195111 +g195113 +S'rembrandt' +p195115 +tp195116 +a(g195113 +g195115 +S'painted' +p195117 +tp195118 +a(g195115 +g195117 +S'this' +p195119 +tp195120 +a(g195117 +g195119 +S'self–portrait' +p195121 +tp195122 +a(g195119 +g195121 +S'in' +p195123 +tp195124 +a(g195121 +g195123 +S'1659,' +p195125 +tp195126 +a(g195123 +g195125 +S'after' +p195127 +tp195128 +a(g195125 +g195127 +S'he' +p195129 +tp195130 +a(g195127 +g195129 +S'had' +p195131 +tp195132 +a(g195129 +g195131 +S'suffered' +p195133 +tp195134 +a(g195131 +g195133 +S'financial' +p195135 +tp195136 +a(g195133 +g195135 +S'bankruptcy' +p195137 +tp195138 +a(g195135 +g195137 +S'that' +p195139 +tp195140 +a(g195137 +g195139 +S'forced' +p195141 +tp195142 +a(g195139 +g195141 +S'him' +p195143 +tp195144 +a(g195141 +g195143 +S'to' +p195145 +tp195146 +a(g195143 +g195145 +S'sell' +p195147 +tp195148 +a(g195145 +g195147 +S'his' +p195149 +tp195150 +a(g195147 +g195149 +S'home' +p195151 +tp195152 +a(g195149 +g195151 +S'and' +p195153 +tp195154 +a(g195151 +g195153 +S'other' +p195155 +tp195156 +a(g195153 +g195155 +S'possessions' +p195157 +tp195158 +a(g195155 +g195157 +S'to' +p195159 +tp195160 +a(g195157 +g195159 +S'satisfy' +p195161 +tp195162 +a(g195159 +g195161 +S'his' +p195163 +tp195164 +a(g195161 +g195163 +S'creditors.' +p195165 +tp195166 +a(g195163 +g195165 +S'early' +p195167 +tp195168 +a(g195165 +g195167 +S'descriptions' +p195169 +tp195170 +a(g195167 +g195169 +S'of' +p195171 +tp195172 +a(g195169 +g195171 +S'the' +p195173 +tp195174 +a(g195171 +g195173 +S'painting' +p195175 +tp195176 +a(g195173 +g195175 +S'therefore' +p195177 +tp195178 +a(g195175 +g195177 +S'mentioned' +p195179 +tp195180 +a(g195177 +g195179 +S'an' +p195181 +tp195182 +a(g195179 +g195181 +S'aura' +p195183 +tp195184 +a(g195181 +g195183 +S'of' +p195185 +tp195186 +a(g195183 +g195185 +S'melancholy' +p195187 +tp195188 +a(g195185 +g195187 +S'surrounding' +p195189 +tp195190 +a(g195187 +g195189 +S'the' +p195191 +tp195192 +a(g195189 +g195191 +S'artist,' +p195193 +tp195194 +a(g195191 +g195193 +S'yet' +p195195 +tp195196 +a(g195193 +g195195 +S'the' +p195197 +tp195198 +a(g195195 +g195197 +S'removal' +p195199 +tp195200 +a(g195197 +g195199 +S'of' +p195201 +tp195202 +a(g195199 +g195201 +S'dark,' +p195203 +tp195204 +a(g195201 +g195203 +S'discolored' +p195205 +tp195206 +a(g195203 +g195205 +S'varnish' +p195207 +tp195208 +a(g195205 +g195207 +S'in' +p195209 +tp195210 +a(g195207 +g195209 +S'1992' +p195211 +tp195212 +a(g195209 +g195211 +S'proved' +p195213 +tp195214 +a(g195211 +g195213 +S'that' +p195215 +tp195216 +a(g195213 +g195215 +S'interpreting' +p195217 +tp195218 +a(g195215 +g195217 +S'paintings' +p195219 +tp195220 +a(g195217 +g195219 +S'on' +p195221 +tp195222 +a(g195219 +g195221 +S'the' +p195223 +tp195224 +a(g195221 +g195223 +S'basis' +p195225 +tp195226 +a(g195223 +g195225 +S'of' +p195227 +tp195228 +a(g195225 +g195227 +S'an' +p195229 +tp195230 +a(g195227 +g195229 +S'artist\xe2\x80\x99s' +p195231 +tp195232 +a(g195229 +g195231 +S'chronological' +p195233 +tp195234 +a(g195231 +g195233 +S'life' +p195235 +tp195236 +a(g195233 +g195235 +S'story' +p195237 +tp195238 +a(g195235 +g195237 +S'is' +p195239 +tp195240 +a(g195237 +g195239 +S'dangerous:' +p195241 +tp195242 +a(g195239 +g195241 +S'the' +p195243 +tp195244 +a(g195241 +g195243 +S'cleaned' +p195245 +tp195246 +a(g195243 +g195245 +S'portrait' +p195247 +tp195248 +a(g195245 +g195247 +S'revealed' +p195249 +tp195250 +a(g195247 +g195249 +S'a' +p195251 +tp195252 +a(g195249 +g195251 +S'rich' +p195253 +tp195254 +a(g195251 +g195253 +S'range' +p195255 +tp195256 +a(g195253 +g195255 +S'of' +p195257 +tp195258 +a(g195255 +g195257 +S'pinks' +p195259 +tp195260 +a(g195257 +g195259 +S'and' +p195261 +tp195262 +a(g195259 +g195261 +S'bright' +p195263 +tp195264 +a(g195261 +g195263 +S'flesh' +p195265 +tp195266 +a(g195263 +g195265 +S'tones,' +p195267 +tp195268 +a(g195265 +g195267 +S'forcing' +p195269 +tp195270 +a(g195267 +g195269 +S'a' +p195271 +tp195272 +a(g195269 +g195271 +S'reassessment' +p195273 +tp195274 +a(g195271 +g195273 +S'of' +p195275 +tp195276 +a(g195273 +g195275 +S'rembrandt\xe2\x80\x99s' +p195277 +tp195278 +a(g195275 +g195277 +S'"mood."' +p195279 +tp195280 +a(g195277 +g195279 +S'instead' +p195281 +tp195282 +a(g195279 +g195281 +S'of' +p195283 +tp195284 +a(g195281 +g195283 +S'sadness,' +p195285 +tp195286 +a(g195283 +g195285 +S'the' +p195287 +tp195288 +a(g195285 +g195287 +S'deep–set' +p195289 +tp195290 +a(g195287 +g195289 +S'eyes' +p195291 +tp195292 +a(g195289 +g195291 +S'that' +p195293 +tp195294 +a(g195291 +g195293 +S'bore' +p195295 +tp195296 +a(g195293 +g195295 +S'into' +p195297 +tp195298 +a(g195295 +g195297 +S'those' +p195299 +tp195300 +a(g195297 +g195299 +S'of' +p195301 +tp195302 +a(g195299 +g195301 +S'the' +p195303 +tp195304 +a(g195301 +g195303 +S'viewer' +p195305 +tp195306 +a(g195303 +g195305 +S'seem' +p195307 +tp195308 +a(g195305 +g195307 +S'to' +p195309 +tp195310 +a(g195307 +g195309 +S'express' +p195311 +tp195312 +a(g195309 +g195311 +S'inner' +p195313 +tp195314 +a(g195311 +g195313 +S'strength' +p195315 +tp195316 +a(g195313 +g195315 +S'and' +p195317 +tp195318 +a(g195315 +g195317 +S'dignity.' +p195319 +tp195320 +a(g195317 +g195319 +S'the' +p195321 +tp195322 +a(g195319 +g195321 +S'light' +p195323 +tp195324 +a(g195321 +g195323 +S'that' +p195325 +tp195326 +a(g195323 +g195325 +S'so' +p195327 +tp195328 +a(g195325 +g195327 +S'effectively' +p195329 +tp195330 +a(g195327 +g195329 +S'illuminates' +p195331 +tp195332 +a(g195329 +g195331 +S'the' +p195333 +tp195334 +a(g195331 +g195333 +S'head' +p195335 +tp195336 +a(g195333 +g195335 +S'also' +p195337 +tp195338 +a(g195335 +g195337 +S'accents' +p195339 +tp195340 +a(g195337 +g195339 +S'rembrandt\xe2\x80\x99s' +p195341 +tp195342 +a(g195339 +g195341 +S'left' +p195343 +tp195344 +a(g195341 +g195343 +S'shoulder' +p195345 +tp195346 +a(g195343 +g195345 +S'and,' +p195347 +tp195348 +a(g195345 +g195347 +S'to' +p195349 +tp195350 +a(g195347 +g195349 +S'a' +p195351 +tp195352 +a(g195349 +g195351 +S'lesser' +p195353 +tp195354 +a(g195351 +g195353 +S'extent,' +p195355 +tp195356 +a(g195353 +g195355 +S'his' +p195357 +tp195358 +a(g195355 +g195357 +S'broadly' +p195359 +tp195360 +a(g195357 +g195359 +S'executed' +p195361 +tp195362 +a(g195359 +g195361 +S'clasped' +p195363 +tp195364 +a(g195361 +g195363 +S'hands.' +p195365 +tp195366 +a(g195363 +g195365 +S'rembrandt\xe2\x80\x99s' +p195367 +tp195368 +a(g195365 +g195367 +S'pose' +p195369 +tp195370 +a(g195367 +g195369 +S'was' +p195371 +tp195372 +a(g195369 +g195371 +S'inspired' +p195373 +tp195374 +a(g195371 +g195373 +S'by' +p195375 +tp195376 +a(g195373 +g195375 +S'raphael\xe2\x80\x99s' +p195377 +tp195378 +a(g195375 +g195377 +S'famous' +p195379 +tp195380 +a(g195377 +g195379 +S'the' +p195381 +tp195382 +a(g195379 +g195381 +S'tragic' +p195383 +tp195384 +a(g195381 +g195383 +S'story' +p195385 +tp195386 +a(g195383 +g195385 +S'of' +p195387 +tp195388 +a(g195385 +g195387 +S'lucretia,' +p195389 +tp195390 +a(g195387 +g195389 +S'recounted' +p195391 +tp195392 +a(g195389 +g195391 +S'by' +p195393 +tp195394 +a(g195391 +g195393 +S'livy' +p195395 +tp195396 +a(g195393 +g195395 +S'(59' +p195397 +tp195398 +a(g195395 +g195397 +S'bc–17' +p195399 +tp195400 +a(g195397 +g195399 +S'ad),' +p195401 +tp195402 +a(g195399 +g195401 +S'took' +p195403 +tp195404 +a(g195401 +g195403 +S'place' +p195405 +tp195406 +a(g195403 +g195405 +S'in' +p195407 +tp195408 +a(g195405 +g195407 +S'rome' +p195409 +tp195410 +a(g195407 +g195409 +S'in' +p195411 +tp195412 +a(g195409 +g195411 +S'the' +p195413 +tp195414 +a(g195411 +g195413 +S'sixth' +p195415 +tp195416 +a(g195413 +g195415 +S'century' +p195417 +tp195418 +a(g195415 +g195417 +S'bc' +p195419 +tp195420 +a(g195417 +g195419 +S'during' +p195421 +tp195422 +a(g195419 +g195421 +S'the' +p195423 +tp195424 +a(g195421 +g195423 +S'reign' +p195425 +tp195426 +a(g195423 +g195425 +S'of' +p195427 +tp195428 +a(g195425 +g195427 +S'the' +p195429 +tp195430 +a(g195427 +g195429 +S'tyrannical' +p195431 +tp195432 +a(g195429 +g195431 +S'ruler' +p195433 +tp195434 +a(g195431 +g195433 +S'tarquinius' +p195435 +tp195436 +a(g195433 +g195435 +S'superbus.' +p195437 +tp195438 +a(g195435 +g195437 +S'rembrandt,' +p195439 +tp195440 +a(g195437 +g195439 +S'who' +p195441 +tp195442 +a(g195439 +g195441 +S'specialized' +p195443 +tp195444 +a(g195441 +g195443 +S'in' +p195445 +tp195446 +a(g195443 +g195445 +S'history' +p195447 +tp195448 +a(g195445 +g195447 +S'paintings,' +p195449 +tp195450 +a(g195447 +g195449 +S'portrays' +p195451 +tp195452 +a(g195449 +g195451 +S'lucretia' +p195453 +tp195454 +a(g195451 +g195453 +S'in' +p195455 +tp195456 +a(g195453 +g195455 +S'utter' +p195457 +tp195458 +a(g195455 +g195457 +S'anguish,' +p195459 +tp195460 +a(g195457 +g195459 +S'right' +p195461 +tp195462 +a(g195459 +g195461 +S'before' +p195463 +tp195464 +a(g195461 +g195463 +S'her' +p195465 +tp195466 +a(g195463 +g195465 +S'act' +p195467 +tp195468 +a(g195465 +g195467 +S'of' +p195469 +tp195470 +a(g195467 +g195469 +S'suicide.' +p195471 +tp195472 +a(g195469 +g195471 +S'the' +p195473 +tp195474 +a(g195471 +g195473 +S'tension' +p195475 +tp195476 +a(g195473 +g195475 +S'surrounding' +p195477 +tp195478 +a(g195475 +g195477 +S'that' +p195479 +tp195480 +a(g195477 +g195479 +S'awful' +p195481 +tp195482 +a(g195479 +g195481 +S'moment' +p195483 +tp195484 +a(g195481 +g195483 +S'poignantly' +p195485 +tp195486 +a(g195483 +g195485 +S'captures' +p195487 +tp195488 +a(g195485 +g195487 +S'the' +p195489 +tp195490 +a(g195487 +g195489 +S'moral' +p195491 +tp195492 +a(g195489 +g195491 +S'dilemma' +p195493 +tp195494 +a(g195491 +g195493 +S'of' +p195495 +tp195496 +a(g195493 +g195495 +S'a' +p195497 +tp195498 +a(g195495 +g195497 +S'woman' +p195499 +tp195500 +a(g195497 +g195499 +S'forced' +p195501 +tp195502 +a(g195499 +g195501 +S'to' +p195503 +tp195504 +a(g195501 +g195503 +S'choose' +p195505 +tp195506 +a(g195503 +g195505 +S'between' +p195507 +tp195508 +a(g195505 +g195507 +S'life' +p195509 +tp195510 +a(g195507 +g195509 +S'and' +p195511 +tp195512 +a(g195509 +g195511 +S'honor.' +p195513 +tp195514 +a(g195511 +g195513 +S"lucretia's" +p195515 +tp195516 +a(g195513 +g195515 +S'husband,' +p195517 +tp195518 +a(g195515 +g195517 +S'collatinus,' +p195519 +tp195520 +a(g195517 +g195519 +S'had' +p195521 +tp195522 +a(g195519 +g195521 +S'boasted' +p195523 +tp195524 +a(g195521 +g195523 +S'to' +p195525 +tp195526 +a(g195523 +g195525 +S'his' +p195527 +tp195528 +a(g195525 +g195527 +S'fellow' +p195529 +tp195530 +a(g195527 +g195529 +S'soldiers' +p195531 +tp195532 +a(g195529 +g195531 +S'that' +p195533 +tp195534 +a(g195531 +g195533 +S'her' +p195535 +tp195536 +a(g195533 +g195535 +S'loyalty' +p195537 +tp195538 +a(g195535 +g195537 +S'and' +p195539 +tp195540 +a(g195537 +g195539 +S'virtue' +p195541 +tp195542 +a(g195539 +g195541 +S'were' +p195543 +tp195544 +a(g195541 +g195543 +S'greater' +p195545 +tp195546 +a(g195543 +g195545 +S'than' +p195547 +tp195548 +a(g195545 +g195547 +S'that' +p195549 +tp195550 +a(g195547 +g195549 +S'of' +p195551 +tp195552 +a(g195549 +g195551 +S'their' +p195553 +tp195554 +a(g195551 +g195553 +S'wives.' +p195555 +tp195556 +a(g195553 +g195555 +S'taking' +p195557 +tp195558 +a(g195555 +g195557 +S'him' +p195559 +tp195560 +a(g195557 +g195559 +S'up' +p195561 +tp195562 +a(g195559 +g195561 +S'on' +p195563 +tp195564 +a(g195561 +g195563 +S'the' +p195565 +tp195566 +a(g195563 +g195565 +S'challenge,' +p195567 +tp195568 +a(g195565 +g195567 +S'the' +p195569 +tp195570 +a(g195567 +g195569 +S'men' +p195571 +tp195572 +a(g195569 +g195571 +S'immediately' +p195573 +tp195574 +a(g195571 +g195573 +S'rode' +p195575 +tp195576 +a(g195573 +g195575 +S'to' +p195577 +tp195578 +a(g195575 +g195577 +S'rome,' +p195579 +tp195580 +a(g195577 +g195579 +S'where' +p195581 +tp195582 +a(g195579 +g195581 +S'they' +p195583 +tp195584 +a(g195581 +g195583 +S'found' +p195585 +tp195586 +a(g195583 +g195585 +S'lucretia' +p195587 +tp195588 +a(g195585 +g195587 +S'and' +p195589 +tp195590 +a(g195587 +g195589 +S'her' +p195591 +tp195592 +a(g195589 +g195591 +S'handmaidens' +p195593 +tp195594 +a(g195591 +g195593 +S'spinning' +p195595 +tp195596 +a(g195593 +g195595 +S'wool.' +p195597 +tp195598 +a(g195595 +g195597 +S"lucretia's" +p195599 +tp195600 +a(g195597 +g195599 +S'very' +p195601 +tp195602 +a(g195599 +g195601 +S'virtue' +p195603 +tp195604 +a(g195601 +g195603 +S'enflamed' +p195605 +tp195606 +a(g195603 +g195605 +S'the' +p195607 +tp195608 +a(g195605 +g195607 +S'desire' +p195609 +tp195610 +a(g195607 +g195609 +S'of' +p195611 +tp195612 +a(g195609 +g195611 +S'sextus' +p195613 +tp195614 +a(g195611 +g195613 +S'tarquinius,' +p195615 +tp195616 +a(g195613 +g195615 +S'son' +p195617 +tp195618 +a(g195615 +g195617 +S'of' +p195619 +tp195620 +a(g195617 +g195619 +S'the' +p195621 +tp195622 +a(g195619 +g195621 +S'tyrant,' +p195623 +tp195624 +a(g195621 +g195623 +S'and' +p195625 +tp195626 +a(g195623 +g195625 +S'he' +p195627 +tp195628 +a(g195625 +g195627 +S'secretly' +p195629 +tp195630 +a(g195627 +g195629 +S'returned' +p195631 +tp195632 +a(g195629 +g195631 +S'to' +p195633 +tp195634 +a(g195631 +g195633 +S'her' +p195635 +tp195636 +a(g195633 +g195635 +S'house' +p195637 +tp195638 +a(g195635 +g195637 +S'a' +p195639 +tp195640 +a(g195637 +g195639 +S'few' +p195641 +tp195642 +a(g195639 +g195641 +S'days' +p195643 +tp195644 +a(g195641 +g195643 +S'later.' +p195645 +tp195646 +a(g195643 +g195645 +S'lucretia' +p195647 +tp195648 +a(g195645 +g195647 +S'received' +p195649 +tp195650 +a(g195647 +g195649 +S'him' +p195651 +tp195652 +a(g195649 +g195651 +S'as' +p195653 +tp195654 +a(g195651 +g195653 +S'an' +p195655 +tp195656 +a(g195653 +g195655 +S'honored' +p195657 +tp195658 +a(g195655 +g195657 +S'guest,' +p195659 +tp195660 +a(g195657 +g195659 +S'but' +p195661 +tp195662 +a(g195659 +g195661 +S'he' +p195663 +tp195664 +a(g195661 +g195663 +S'later' +p195665 +tp195666 +a(g195663 +g195665 +S'betrayed' +p195667 +tp195668 +a(g195665 +g195667 +S'that' +p195669 +tp195670 +a(g195667 +g195669 +S'hospitality' +p195671 +tp195672 +a(g195669 +g195671 +S'by' +p195673 +tp195674 +a(g195671 +g195673 +S'entering' +p195675 +tp195676 +a(g195673 +g195675 +S'her' +p195677 +tp195678 +a(g195675 +g195677 +S'chamber' +p195679 +tp195680 +a(g195677 +g195679 +S'and' +p195681 +tp195682 +a(g195679 +g195681 +S'threatening' +p195683 +tp195684 +a(g195681 +g195683 +S'to' +p195685 +tp195686 +a(g195683 +g195685 +S'kill' +p195687 +tp195688 +a(g195685 +g195687 +S'her' +p195689 +tp195690 +a(g195687 +g195689 +S'if' +p195691 +tp195692 +a(g195689 +g195691 +S'she' +p195693 +tp195694 +a(g195691 +g195693 +S'did' +p195695 +tp195696 +a(g195693 +g195695 +S'not' +p195697 +tp195698 +a(g195695 +g195697 +S'yield' +p195699 +tp195700 +a(g195697 +g195699 +S'to' +p195701 +tp195702 +a(g195699 +g195701 +S'his' +p195703 +tp195704 +a(g195701 +g195703 +S'advances.' +p195705 +tp195706 +a(g195703 +g195705 +S'the' +p195707 +tp195708 +a(g195705 +g195707 +S'next' +p195709 +tp195710 +a(g195707 +g195709 +S'day' +p195711 +tp195712 +a(g195709 +g195711 +S'lucretia' +p195713 +tp195714 +a(g195711 +g195713 +S'summoned' +p195715 +tp195716 +a(g195713 +g195715 +S'her' +p195717 +tp195718 +a(g195715 +g195717 +S'father' +p195719 +tp195720 +a(g195717 +g195719 +S'and' +p195721 +tp195722 +a(g195719 +g195721 +S'husband,' +p195723 +tp195724 +a(g195721 +g195723 +S'disclosed' +p195725 +tp195726 +a(g195723 +g195725 +S'what' +p195727 +tp195728 +a(g195725 +g195727 +S'had' +p195729 +tp195730 +a(g195727 +g195729 +S'happened,' +p195731 +tp195732 +a(g195729 +g195731 +S'and' +p195733 +tp195734 +a(g195731 +g195733 +S'told' +p195735 +tp195736 +a(g195733 +g195735 +S'them' +p195737 +tp195738 +a(g195735 +g195737 +S'that,' +p195739 +tp195740 +a(g195737 +g195739 +S'even' +p195741 +tp195742 +a(g195739 +g195741 +S'though' +p195743 +tp195744 +a(g195741 +g195743 +S'they' +p195745 +tp195746 +a(g195743 +g195745 +S'deemed' +p195747 +tp195748 +a(g195745 +g195747 +S'her' +p195749 +tp195750 +a(g195747 +g195749 +S'an' +p195751 +tp195752 +a(g195749 +g195751 +S'innocent' +p195753 +tp195754 +a(g195751 +g195753 +S'victim,' +p195755 +tp195756 +a(g195753 +g195755 +S'she' +p195757 +tp195758 +a(g195755 +g195757 +S'was' +p195759 +tp195760 +a(g195757 +g195759 +S'determined' +p195761 +tp195762 +a(g195759 +g195761 +S'to' +p195763 +tp195764 +a(g195761 +g195763 +S'end' +p195765 +tp195766 +a(g195763 +g195765 +S'her' +p195767 +tp195768 +a(g195765 +g195767 +S'life' +p195769 +tp195770 +a(g195767 +g195769 +S'in' +p195771 +tp195772 +a(g195769 +g195771 +S'order' +p195773 +tp195774 +a(g195771 +g195773 +S'to' +p195775 +tp195776 +a(g195773 +g195775 +S'reclaim' +p195777 +tp195778 +a(g195775 +g195777 +S'her' +p195779 +tp195780 +a(g195777 +g195779 +S'honor.' +p195781 +tp195782 +a(g195779 +g195781 +S'she' +p195783 +tp195784 +a(g195781 +g195783 +S'then' +p195785 +tp195786 +a(g195783 +g195785 +S'drew' +p195787 +tp195788 +a(g195785 +g195787 +S'a' +p195789 +tp195790 +a(g195787 +g195789 +S'knife' +p195791 +tp195792 +a(g195789 +g195791 +S'from' +p195793 +tp195794 +a(g195791 +g195793 +S'her' +p195795 +tp195796 +a(g195793 +g195795 +S'robe,' +p195797 +tp195798 +a(g195795 +g195797 +S'drove' +p195799 +tp195800 +a(g195797 +g195799 +S'it' +p195801 +tp195802 +a(g195799 +g195801 +S'into' +p195803 +tp195804 +a(g195801 +g195803 +S'her' +p195805 +tp195806 +a(g195803 +g195805 +S'heart,' +p195807 +tp195808 +a(g195805 +g195807 +S'and' +p195809 +tp195810 +a(g195807 +g195809 +S'died.' +p195811 +tp195812 +a(g195809 +g195811 +S'overwhelmed' +p195813 +tp195814 +a(g195811 +g195813 +S'by' +p195815 +tp195816 +a(g195813 +g195815 +S'grief' +p195817 +tp195818 +a(g195815 +g195817 +S'and' +p195819 +tp195820 +a(g195817 +g195819 +S'anger,' +p195821 +tp195822 +a(g195819 +g195821 +S"lucretia's" +p195823 +tp195824 +a(g195821 +g195823 +S'father,' +p195825 +tp195826 +a(g195823 +g195825 +S'her' +p195827 +tp195828 +a(g195825 +g195827 +S'husband,' +p195829 +tp195830 +a(g195827 +g195829 +S'and' +p195831 +tp195832 +a(g195829 +g195831 +S'two' +p195833 +tp195834 +a(g195831 +g195833 +S'friends' +p195835 +tp195836 +a(g195833 +g195835 +S'swore' +p195837 +tp195838 +a(g195835 +g195837 +S'to' +p195839 +tp195840 +a(g195837 +g195839 +S'avenge' +p195841 +tp195842 +a(g195839 +g195841 +S'her' +p195843 +tp195844 +a(g195841 +g195843 +S'death.' +p195845 +tp195846 +a(g195843 +g195845 +S"lucretia's" +p195847 +tp195848 +a(g195845 +g195847 +S'rape' +p195849 +tp195850 +a(g195847 +g195849 +S'and' +p195851 +tp195852 +a(g195849 +g195851 +S'suicide' +p195853 +tp195854 +a(g195851 +g195853 +S'triggered' +p195855 +tp195856 +a(g195853 +g195855 +S'a' +p195857 +tp195858 +a(g195855 +g195857 +S'revolt' +p195859 +tp195860 +a(g195857 +g195859 +S'that' +p195861 +tp195862 +a(g195859 +g195861 +S'led' +p195863 +tp195864 +a(g195861 +g195863 +S'to' +p195865 +tp195866 +a(g195863 +g195865 +S'the' +p195867 +tp195868 +a(g195865 +g195867 +S'overthrow' +p195869 +tp195870 +a(g195867 +g195869 +S'of' +p195871 +tp195872 +a(g195869 +g195871 +S'monarchical' +p195873 +tp195874 +a(g195871 +g195873 +S'tyranny' +p195875 +tp195876 +a(g195873 +g195875 +S'and' +p195877 +tp195878 +a(g195875 +g195877 +S'the' +p195879 +tp195880 +a(g195877 +g195879 +S'creation' +p195881 +tp195882 +a(g195879 +g195881 +S'of' +p195883 +tp195884 +a(g195881 +g195883 +S'the' +p195885 +tp195886 +a(g195883 +g195885 +S'roman' +p195887 +tp195888 +a(g195885 +g195887 +S'republic.' +p195889 +tp195890 +a(g195887 +g195889 +S'rembrandt' +p195891 +tp195892 +a(g195889 +g195891 +S'van' +p195893 +tp195894 +a(g195891 +g195893 +S'rijn' +p195895 +tp195896 +a(g195893 +g195895 +S'began' +p195897 +tp195898 +a(g195895 +g195897 +S'his' +p195899 +tp195900 +a(g195897 +g195899 +S'career' +p195901 +tp195902 +a(g195899 +g195901 +S'in' +p195903 +tp195904 +a(g195901 +g195903 +S'his' +p195905 +tp195906 +a(g195903 +g195905 +S'native' +p195907 +tp195908 +a(g195905 +g195907 +S'city' +p195909 +tp195910 +a(g195907 +g195909 +S'of' +p195911 +tp195912 +a(g195909 +g195911 +S'leiden,' +p195913 +tp195914 +a(g195911 +g195913 +S'but' +p195915 +tp195916 +a(g195913 +g195915 +S'moved' +p195917 +tp195918 +a(g195915 +g195917 +S'to' +p195919 +tp195920 +a(g195917 +g195919 +S'amsterdam' +p195921 +tp195922 +a(g195919 +g195921 +S'around' +p195923 +tp195924 +a(g195921 +g195923 +S'1631.' +p195925 +tp195926 +a(g195923 +g195925 +S'he' +p195927 +tp195928 +a(g195925 +g195927 +S'immediately' +p195929 +tp195930 +a(g195927 +g195929 +S'established' +p195931 +tp195932 +a(g195929 +g195931 +S'himself' +p195933 +tp195934 +a(g195931 +g195933 +S'as' +p195935 +tp195936 +a(g195933 +g195935 +S'the' +p195937 +tp195938 +a(g195935 +g195937 +S'foremost' +p195939 +tp195940 +a(g195937 +g195939 +S'artist' +p195941 +tp195942 +a(g195939 +g195941 +S'in' +p195943 +tp195944 +a(g195941 +g195943 +S'the' +p195945 +tp195946 +a(g195943 +g195945 +S'city' +p195947 +tp195948 +a(g195945 +g195947 +S'and' +p195949 +tp195950 +a(g195947 +g195949 +S'was' +p195951 +tp195952 +a(g195949 +g195951 +S'sought' +p195953 +tp195954 +a(g195951 +g195953 +S'after' +p195955 +tp195956 +a(g195953 +g195955 +S'as' +p195957 +tp195958 +a(g195955 +g195957 +S'a' +p195959 +tp195960 +a(g195957 +g195959 +S'portrait' +p195961 +tp195962 +a(g195959 +g195961 +S'painter' +p195963 +tp195964 +a(g195961 +g195963 +S'as' +p195965 +tp195966 +a(g195963 +g195965 +S'well' +p195967 +tp195968 +a(g195965 +g195967 +S'as' +p195969 +tp195970 +a(g195967 +g195969 +S'for' +p195971 +tp195972 +a(g195969 +g195971 +S'his' +p195973 +tp195974 +a(g195971 +g195973 +S'depictions' +p195975 +tp195976 +a(g195973 +g195975 +S'of' +p195977 +tp195978 +a(g195975 +g195977 +S'biblical' +p195979 +tp195980 +a(g195977 +g195979 +S'and' +p195981 +tp195982 +a(g195979 +g195981 +S'mythological' +p195983 +tp195984 +a(g195981 +g195983 +S'subjects.' +p195985 +tp195986 +a(g195983 +g195985 +S'a' +p195987 +tp195988 +a(g195985 +g195987 +S'polish' +p195989 +tp195990 +a(g195987 +g195989 +S'nobleman' +p195991 +tp195992 +a(g195989 +g195991 +S'these' +p195993 +tp195994 +a(g195991 +g195993 +S'paintings' +p195995 +tp195996 +a(g195993 +g195995 +S'allowed' +p195997 +tp195998 +a(g195995 +g195997 +S'rembrandt' +p195999 +tp196000 +a(g195997 +g195999 +S'to' +p196001 +tp196002 +a(g195999 +g196001 +S'expand' +p196003 +tp196004 +a(g196001 +g196003 +S'the' +p196005 +tp196006 +a(g196003 +g196005 +S'limits' +p196007 +tp196008 +a(g196005 +g196007 +S'of' +p196009 +tp196010 +a(g196007 +g196009 +S'portraiture' +p196011 +tp196012 +a(g196009 +g196011 +S'because' +p196013 +tp196014 +a(g196011 +g196013 +S'he' +p196015 +tp196016 +a(g196013 +g196015 +S'was' +p196017 +tp196018 +a(g196015 +g196017 +S'not' +p196019 +tp196020 +a(g196017 +g196019 +S'constrained' +p196021 +tp196022 +a(g196019 +g196021 +S'by' +p196023 +tp196024 +a(g196021 +g196023 +S'traditional' +p196025 +tp196026 +a(g196023 +g196025 +S'conventions.' +p196027 +tp196028 +a(g196025 +g196027 +S'he' +p196029 +tp196030 +a(g196027 +g196029 +S'often' +p196031 +tp196032 +a(g196029 +g196031 +S'used' +p196033 +tp196034 +a(g196031 +g196033 +S'these' +p196035 +tp196036 +a(g196033 +g196035 +S'fanciful' +p196037 +tp196038 +a(g196035 +g196037 +S'portraits' +p196039 +tp196040 +a(g196037 +g196039 +S'as' +p196041 +tp196042 +a(g196039 +g196041 +S'a' +p196043 +tp196044 +a(g196041 +g196043 +S'means' +p196045 +tp196046 +a(g196043 +g196045 +S'of' +p196047 +tp196048 +a(g196045 +g196047 +S'evoking' +p196049 +tp196050 +a(g196047 +g196049 +S'aspects' +p196051 +tp196052 +a(g196049 +g196051 +S'of' +p196053 +tp196054 +a(g196051 +g196053 +S'human' +p196055 +tp196056 +a(g196053 +g196055 +S'psychology.' +p196057 +tp196058 +a(g196055 +g196057 +S'through' +p196059 +tp196060 +a(g196057 +g196059 +S'his' +p196061 +tp196062 +a(g196059 +g196061 +S'dramatic' +p196063 +tp196064 +a(g196061 +g196063 +S'accents' +p196065 +tp196066 +a(g196063 +g196065 +S'of' +p196067 +tp196068 +a(g196065 +g196067 +S'light' +p196069 +tp196070 +a(g196067 +g196069 +S'and' +p196071 +tp196072 +a(g196069 +g196071 +S'dark' +p196073 +tp196074 +a(g196071 +g196073 +S'on' +p196075 +tp196076 +a(g196073 +g196075 +S'the' +p196077 +tp196078 +a(g196075 +g196077 +S"sitter's" +p196079 +tp196080 +a(g196077 +g196079 +S'face,' +p196081 +tp196082 +a(g196079 +g196081 +S'his' +p196083 +tp196084 +a(g196081 +g196083 +S'bold' +p196085 +tp196086 +a(g196083 +g196085 +S'brushwork,' +p196087 +tp196088 +a(g196085 +g196087 +S'and' +p196089 +tp196090 +a(g196087 +g196089 +S'dense' +p196091 +tp196092 +a(g196089 +g196091 +S'application' +p196093 +tp196094 +a(g196091 +g196093 +S'of' +p196095 +tp196096 +a(g196093 +g196095 +S'paint,' +p196097 +tp196098 +a(g196095 +g196097 +S'he' +p196099 +tp196100 +a(g196097 +g196099 +S'created' +p196101 +tp196102 +a(g196099 +g196101 +S'a' +p196103 +tp196104 +a(g196101 +g196103 +S'powerful,' +p196105 +tp196106 +a(g196103 +g196105 +S'almost' +p196107 +tp196108 +a(g196105 +g196107 +S'sculptural' +p196109 +tp196110 +a(g196107 +g196109 +S'presence;' +p196111 +tp196112 +a(g196109 +g196111 +S'but' +p196113 +tp196114 +a(g196111 +g196113 +S'by' +p196115 +tp196116 +a(g196113 +g196115 +S'emphasizing' +p196117 +tp196118 +a(g196115 +g196117 +S'the' +p196119 +tp196120 +a(g196117 +g196119 +S"sitter's" +p196121 +tp196122 +a(g196119 +g196121 +S'furrowed' +p196123 +tp196124 +a(g196121 +g196123 +S'brow' +p196125 +tp196126 +a(g196123 +g196125 +S'and' +p196127 +tp196128 +a(g196125 +g196127 +S'by' +p196129 +tp196130 +a(g196127 +g196129 +S'shading' +p196131 +tp196132 +a(g196129 +g196131 +S'his' +p196133 +tp196134 +a(g196131 +g196133 +S'heavy,' +p196135 +tp196136 +a(g196133 +g196135 +S'forlorn' +p196137 +tp196138 +a(g196135 +g196137 +S'eyes,' +p196139 +tp196140 +a(g196137 +g196139 +S'rembrandt' +p196141 +tp196142 +a(g196139 +g196141 +S'suggested' +p196143 +tp196144 +a(g196141 +g196143 +S'a' +p196145 +tp196146 +a(g196143 +g196145 +S'deeply' +p196147 +tp196148 +a(g196145 +g196147 +S'pensive' +p196149 +tp196150 +a(g196147 +g196149 +S'personality.' +p196151 +tp196152 +a(g196149 +g196151 +S"rembrandt's" +p196153 +tp196154 +a(g196151 +g196153 +S'primary' +p196155 +tp196156 +a(g196153 +g196155 +S'aspiration' +p196157 +tp196158 +a(g196155 +g196157 +S'as' +p196159 +tp196160 +a(g196157 +g196159 +S'an' +p196161 +tp196162 +a(g196159 +g196161 +S'artist' +p196163 +tp196164 +a(g196161 +g196163 +S'was' +p196165 +tp196166 +a(g196163 +g196165 +S'to' +p196167 +tp196168 +a(g196165 +g196167 +S'become' +p196169 +tp196170 +a(g196167 +g196169 +S'a' +p196171 +tp196172 +a(g196169 +g196171 +S'great' +p196173 +tp196174 +a(g196171 +g196173 +S'history' +p196175 +tp196176 +a(g196173 +g196175 +S'painter.' +p196177 +tp196178 +a(g196175 +g196177 +S'in' +p196179 +tp196180 +a(g196177 +g196179 +S'the' +p196181 +tp196182 +a(g196179 +g196181 +S'seventeenth' +p196183 +tp196184 +a(g196181 +g196183 +S'century,' +p196185 +tp196186 +a(g196183 +g196185 +S'history' +p196187 +tp196188 +a(g196185 +g196187 +S'painting,' +p196189 +tp196190 +a(g196187 +g196189 +S'which' +p196191 +tp196192 +a(g196189 +g196191 +S'meant' +p196193 +tp196194 +a(g196191 +g196193 +S'the' +p196195 +tp196196 +a(g196193 +g196195 +S'depiction' +p196197 +tp196198 +a(g196195 +g196197 +S'of' +p196199 +tp196200 +a(g196197 +g196199 +S'biblical,' +p196201 +tp196202 +a(g196199 +g196201 +S'mythological,' +p196203 +tp196204 +a(g196201 +g196203 +S'and' +p196205 +tp196206 +a(g196203 +g196205 +S'allegorical' +p196207 +tp196208 +a(g196205 +g196207 +S'scenes,' +p196209 +tp196210 +a(g196207 +g196209 +S'stood' +p196211 +tp196212 +a(g196209 +g196211 +S'at' +p196213 +tp196214 +a(g196211 +g196213 +S'the' +p196215 +tp196216 +a(g196213 +g196215 +S'highest' +p196217 +tp196218 +a(g196215 +g196217 +S'echelon' +p196219 +tp196220 +a(g196217 +g196219 +S'of' +p196221 +tp196222 +a(g196219 +g196221 +S'art.' +p196223 +tp196224 +a(g196221 +g196223 +S'theorists' +p196225 +tp196226 +a(g196223 +g196225 +S'placed' +p196227 +tp196228 +a(g196225 +g196227 +S'it' +p196229 +tp196230 +a(g196227 +g196229 +S'before' +p196231 +tp196232 +a(g196229 +g196231 +S'other' +p196233 +tp196234 +a(g196231 +g196233 +S'subjects' +p196235 +tp196236 +a(g196233 +g196235 +S'like' +p196237 +tp196238 +a(g196235 +g196237 +S'landscape,' +p196239 +tp196240 +a(g196237 +g196239 +S'portraiture,' +p196241 +tp196242 +a(g196239 +g196241 +S'or' +p196243 +tp196244 +a(g196241 +g196243 +S'still' +p196245 +tp196246 +a(g196243 +g196245 +S'life' +p196247 +tp196248 +a(g196245 +g196247 +S'because' +p196249 +tp196250 +a(g196247 +g196249 +S'the' +p196251 +tp196252 +a(g196249 +g196251 +S'role' +p196253 +tp196254 +a(g196251 +g196253 +S'of' +p196255 +tp196256 +a(g196253 +g196255 +S'the' +p196257 +tp196258 +a(g196255 +g196257 +S"artist's" +p196259 +tp196260 +a(g196257 +g196259 +S'imagination' +p196261 +tp196262 +a(g196259 +g196261 +S'was' +p196263 +tp196264 +a(g196261 +g196263 +S'so' +p196265 +tp196266 +a(g196263 +g196265 +S'crucial' +p196267 +tp196268 +a(g196265 +g196267 +S'to' +p196269 +tp196270 +a(g196267 +g196269 +S'the' +p196271 +tp196272 +a(g196269 +g196271 +S'successful' +p196273 +tp196274 +a(g196271 +g196273 +S'interpretation' +p196275 +tp196276 +a(g196273 +g196275 +S'of' +p196277 +tp196278 +a(g196275 +g196277 +S'the' +p196279 +tp196280 +a(g196277 +g196279 +S'story' +p196281 +tp196282 +a(g196279 +g196281 +S'and' +p196283 +tp196284 +a(g196281 +g196283 +S'its' +p196285 +tp196286 +a(g196283 +g196285 +S'moral.' +p196287 +tp196288 +a(g196285 +g196287 +S'rembrandt' +p196289 +tp196290 +a(g196287 +g196289 +S'drew' +p196291 +tp196292 +a(g196289 +g196291 +S'his' +p196293 +tp196294 +a(g196291 +g196293 +S'interpretations' +p196295 +tp196296 +a(g196293 +g196295 +S'of' +p196297 +tp196298 +a(g196295 +g196297 +S'his' +p196299 +tp196300 +a(g196297 +g196299 +S'subjects' +p196301 +tp196302 +a(g196299 +g196301 +S'from' +p196303 +tp196304 +a(g196301 +g196303 +S'three' +p196305 +tp196306 +a(g196303 +g196305 +S'basic' +p196307 +tp196308 +a(g196305 +g196307 +S'sources:' +p196309 +tp196310 +a(g196307 +g196309 +S'written' +p196311 +tp196312 +a(g196309 +g196311 +S'texts,' +p196313 +tp196314 +a(g196311 +g196313 +S'earlier' +p196315 +tp196316 +a(g196313 +g196315 +S'pictorial' +p196317 +tp196318 +a(g196315 +g196317 +S'images' +p196319 +tp196320 +a(g196317 +g196319 +S'of' +p196321 +tp196322 +a(g196319 +g196321 +S'the' +p196323 +tp196324 +a(g196321 +g196323 +S'scenes,' +p196325 +tp196326 +a(g196323 +g196325 +S'and' +p196327 +tp196328 +a(g196325 +g196327 +S'careful' +p196329 +tp196330 +a(g196327 +g196329 +S'study' +p196331 +tp196332 +a(g196329 +g196331 +S'of' +p196333 +tp196334 +a(g196331 +g196333 +S'human' +p196335 +tp196336 +a(g196333 +g196335 +S'emotions' +p196337 +tp196338 +a(g196335 +g196337 +S'as' +p196339 +tp196340 +a(g196337 +g196339 +S'he' +p196341 +tp196342 +a(g196339 +g196341 +S'saw' +p196343 +tp196344 +a(g196341 +g196343 +S'them' +p196345 +tp196346 +a(g196343 +g196345 +S'in' +p196347 +tp196348 +a(g196345 +g196347 +S'daily' +p196349 +tp196350 +a(g196347 +g196349 +S'life.' +p196351 +tp196352 +a(g196349 +g196351 +S'he' +p196353 +tp196354 +a(g196351 +g196353 +S'then' +p196355 +tp196356 +a(g196353 +g196355 +S'gave' +p196357 +tp196358 +a(g196355 +g196357 +S'his' +p196359 +tp196360 +a(g196357 +g196359 +S'scenes' +p196361 +tp196362 +a(g196359 +g196361 +S'special' +p196363 +tp196364 +a(g196361 +g196363 +S'meaning' +p196365 +tp196366 +a(g196363 +g196365 +S'through' +p196367 +tp196368 +a(g196365 +g196367 +S'a' +p196369 +tp196370 +a(g196367 +g196369 +S'suggestive' +p196371 +tp196372 +a(g196369 +g196371 +S'use' +p196373 +tp196374 +a(g196371 +g196373 +S'of' +p196375 +tp196376 +a(g196373 +g196375 +S'light' +p196377 +tp196378 +a(g196375 +g196377 +S'and' +p196379 +tp196380 +a(g196377 +g196379 +S'dark' +p196381 +tp196382 +a(g196379 +g196381 +S'accents,' +p196383 +tp196384 +a(g196381 +g196383 +S'rich' +p196385 +tp196386 +a(g196383 +g196385 +S'colors,' +p196387 +tp196388 +a(g196385 +g196387 +S'and' +p196389 +tp196390 +a(g196387 +g196389 +S'bold' +p196391 +tp196392 +a(g196389 +g196391 +S'application' +p196393 +tp196394 +a(g196391 +g196393 +S'of' +p196395 +tp196396 +a(g196393 +g196395 +S'paint.' +p196397 +tp196398 +a(g196395 +g196397 +S'rembrandt' +p196399 +tp196400 +a(g196397 +g196399 +S'was' +p196401 +tp196402 +a(g196399 +g196401 +S'particularly' +p196403 +tp196404 +a(g196401 +g196403 +S'fond' +p196405 +tp196406 +a(g196403 +g196405 +S'of' +p196407 +tp196408 +a(g196405 +g196407 +S'the' +p196409 +tp196410 +a(g196407 +g196409 +S'story' +p196411 +tp196412 +a(g196409 +g196411 +S'of' +p196413 +tp196414 +a(g196411 +g196413 +S'joseph.' +p196415 +tp196416 +a(g196413 +g196415 +S'this' +p196417 +tp196418 +a(g196415 +g196417 +S'scene,' +p196419 +tp196420 +a(g196417 +g196419 +S'drawn' +p196421 +tp196422 +a(g196419 +g196421 +S'from' +p196423 +tp196424 +a(g196421 +g196423 +S'the' +p196425 +tp196426 +a(g196423 +g196425 +S'book' +p196427 +tp196428 +a(g196425 +g196427 +S'of' +p196429 +tp196430 +a(g196427 +g196429 +S'genesis,' +p196431 +tp196432 +a(g196429 +g196431 +S'chapter' +p196433 +tp196434 +a(g196431 +g196433 +S'39,' +p196435 +tp196436 +a(g196433 +g196435 +S'depicts' +p196437 +tp196438 +a(g196435 +g196437 +S'the' +p196439 +tp196440 +a(g196437 +g196439 +S'moment' +p196441 +tp196442 +a(g196439 +g196441 +S'when' +p196443 +tp196444 +a(g196441 +g196443 +S"potiphar's" +p196445 +tp196446 +a(g196443 +g196445 +S'wife' +p196447 +tp196448 +a(g196445 +g196447 +S'falsely' +p196449 +tp196450 +a(g196447 +g196449 +S'accused' +p196451 +tp196452 +a(g196449 +g196451 +S'joseph' +p196453 +tp196454 +a(g196451 +g196453 +S'of' +p196455 +tp196456 +a(g196453 +g196455 +S'trying' +p196457 +tp196458 +a(g196455 +g196457 +S'to' +p196459 +tp196460 +a(g196457 +g196459 +S'violate' +p196461 +tp196462 +a(g196459 +g196461 +S'her.' +p196463 +tp196464 +a(g196461 +g196463 +S'while' +p196465 +tp196466 +a(g196463 +g196465 +S'speaking' +p196467 +tp196468 +a(g196465 +g196467 +S'to' +p196469 +tp196470 +a(g196467 +g196469 +S'her' +p196471 +tp196472 +a(g196469 +g196471 +S'husband,' +p196473 +tp196474 +a(g196471 +g196473 +S"potiphar's" +p196475 +tp196476 +a(g196473 +g196475 +S'wife' +p196477 +tp196478 +a(g196475 +g196477 +S'here' +p196479 +tp196480 +a(g196477 +g196479 +S'points' +p196481 +tp196482 +a(g196479 +g196481 +S'to' +p196483 +tp196484 +a(g196481 +g196483 +S"joseph's" +p196485 +tp196486 +a(g196483 +g196485 +S'red' +p196487 +tp196488 +a(g196485 +g196487 +S'robe' +p196489 +tp196490 +a(g196487 +g196489 +S'to' +p196491 +tp196492 +a(g196489 +g196491 +S'support' +p196493 +tp196494 +a(g196491 +g196493 +S'her' +p196495 +tp196496 +a(g196493 +g196495 +S'accusation.' +p196497 +tp196498 +a(g196495 +g196497 +S'in' +p196499 +tp196500 +a(g196497 +g196499 +S'the' +p196501 +tp196502 +a(g196499 +g196501 +S'biblical' +p196503 +tp196504 +a(g196501 +g196503 +S'account,' +p196505 +tp196506 +a(g196503 +g196505 +S'joseph,' +p196507 +tp196508 +a(g196505 +g196507 +S'who' +p196509 +tp196510 +a(g196507 +g196509 +S'stands' +p196511 +tp196512 +a(g196509 +g196511 +S'quietly' +p196513 +tp196514 +a(g196511 +g196513 +S'on' +p196515 +tp196516 +a(g196513 +g196515 +S'the' +p196517 +tp196518 +a(g196515 +g196517 +S'far' +p196519 +tp196520 +a(g196517 +g196519 +S'side' +p196521 +tp196522 +a(g196519 +g196521 +S'of' +p196523 +tp196524 +a(g196521 +g196523 +S'the' +p196525 +tp196526 +a(g196523 +g196525 +S'bed' +p196527 +tp196528 +a(g196525 +g196527 +S'in' +p196529 +tp196530 +a(g196527 +g196529 +S"rembrandt's" +p196531 +tp196532 +a(g196529 +g196531 +S'painting,' +p196533 +tp196534 +a(g196531 +g196533 +S'was' +p196535 +tp196536 +a(g196533 +g196535 +S'not' +p196537 +tp196538 +a(g196535 +g196537 +S'present' +p196539 +tp196540 +a(g196537 +g196539 +S'at' +p196541 +tp196542 +a(g196539 +g196541 +S'the' +p196543 +tp196544 +a(g196541 +g196543 +S'moment' +p196545 +tp196546 +a(g196543 +g196545 +S'of' +p196547 +tp196548 +a(g196545 +g196547 +S'the' +p196549 +tp196550 +a(g196547 +g196549 +S'accusation.' +p196551 +tp196552 +a(g196549 +g196551 +S'rembrandt,' +p196553 +tp196554 +a(g196551 +g196553 +S'however,' +p196555 +tp196556 +a(g196553 +g196555 +S'included' +p196557 +tp196558 +a(g196555 +g196557 +S'him' +p196559 +tp196560 +a(g196557 +g196559 +S'to' +p196561 +tp196562 +a(g196559 +g196561 +S'give' +p196563 +tp196564 +a(g196561 +g196563 +S'added' +p196565 +tp196566 +a(g196563 +g196565 +S'poignance' +p196567 +tp196568 +a(g196565 +g196567 +S'to' +p196569 +tp196570 +a(g196567 +g196569 +S'the' +p196571 +tp196572 +a(g196569 +g196571 +S'scene.' +p196573 +tp196574 +a(g196571 +g196573 +S'diego' +p196575 +tp196576 +a(g196573 +g196575 +S'velázquez' +p196577 +tp196578 +a(g196575 +g196577 +S'ranks' +p196579 +tp196580 +a(g196577 +g196579 +S'among' +p196581 +tp196582 +a(g196579 +g196581 +S'the' +p196583 +tp196584 +a(g196581 +g196583 +S'greatest' +p196585 +tp196586 +a(g196583 +g196585 +S'masters' +p196587 +tp196588 +a(g196585 +g196587 +S'of' +p196589 +tp196590 +a(g196587 +g196589 +S'seventeenth-century' +p196591 +tp196592 +a(g196589 +g196591 +S'europe.' +p196593 +tp196594 +a(g196591 +g196593 +S'by' +p196595 +tp196596 +a(g196593 +g196595 +S'1623,' +p196597 +tp196598 +a(g196595 +g196597 +S'the' +p196599 +tp196600 +a(g196597 +g196599 +S'twenty-four-year-old' +p196601 +tp196602 +a(g196599 +g196601 +S'artist' +p196603 +tp196604 +a(g196601 +g196603 +S'was' +p196605 +tp196606 +a(g196603 +g196605 +S'established' +p196607 +tp196608 +a(g196605 +g196607 +S'as' +p196609 +tp196610 +a(g196607 +g196609 +S'court' +p196611 +tp196612 +a(g196609 +g196611 +S'painter' +p196613 +tp196614 +a(g196611 +g196613 +S'to' +p196615 +tp196616 +a(g196613 +g196615 +S'philip' +p196617 +tp196618 +a(g196615 +g196617 +S'iv' +p196619 +tp196620 +a(g196617 +g196619 +S'in' +p196621 +tp196622 +a(g196619 +g196621 +S'madrid.' +p196623 +tp196624 +a(g196621 +g196623 +S'for' +p196625 +tp196626 +a(g196623 +g196625 +S'nearly' +p196627 +tp196628 +a(g196625 +g196627 +S'forty' +p196629 +tp196630 +a(g196627 +g196629 +S'years,' +p196631 +tp196632 +a(g196629 +g196631 +S'he' +p196633 +tp196634 +a(g196631 +g196633 +S'was' +p196635 +tp196636 +a(g196633 +g196635 +S'primarily' +p196637 +tp196638 +a(g196635 +g196637 +S'occupied' +p196639 +tp196640 +a(g196637 +g196639 +S'with' +p196641 +tp196642 +a(g196639 +g196641 +S'painting' +p196643 +tp196644 +a(g196641 +g196643 +S'remarkably' +p196645 +tp196646 +a(g196643 +g196645 +S'innovative' +p196647 +tp196648 +a(g196645 +g196647 +S'portraits' +p196649 +tp196650 +a(g196647 +g196649 +S'of' +p196651 +tp196652 +a(g196649 +g196651 +S'the' +p196653 +tp196654 +a(g196651 +g196653 +S'monarch' +p196655 +tp196656 +a(g196653 +g196655 +S'and' +p196657 +tp196658 +a(g196655 +g196657 +S'the' +p196659 +tp196660 +a(g196657 +g196659 +S'royal' +p196661 +tp196662 +a(g196659 +g196661 +S'family.' +p196663 +tp196664 +a(g196661 +g196663 +S'but' +p196665 +tp196666 +a(g196663 +g196665 +S'in' +p196667 +tp196668 +a(g196665 +g196667 +S'his' +p196669 +tp196670 +a(g196667 +g196669 +S'spare' +p196671 +tp196672 +a(g196669 +g196671 +S'hours,' +p196673 +tp196674 +a(g196671 +g196673 +S'velázquez' +p196675 +tp196676 +a(g196673 +g196675 +S'turned' +p196677 +tp196678 +a(g196675 +g196677 +S'to' +p196679 +tp196680 +a(g196677 +g196679 +S'subjects' +p196681 +tp196682 +a(g196679 +g196681 +S'that' +p196683 +tp196684 +a(g196681 +g196683 +S'interested' +p196685 +tp196686 +a(g196683 +g196685 +S'him' +p196687 +tp196688 +a(g196685 +g196687 +S'personally;' +p196689 +tp196690 +a(g196687 +g196689 +S'his' +p196691 +tp196692 +a(g196689 +g196691 +S'observation' +p196693 +tp196694 +a(g196691 +g196693 +S'of' +p196695 +tp196696 +a(g196693 +g196695 +S'the' +p196697 +tp196698 +a(g196695 +g196697 +S'optical' +p196699 +tp196700 +a(g196697 +g196699 +S'effects' +p196701 +tp196702 +a(g196699 +g196701 +S'of' +p196703 +tp196704 +a(g196701 +g196703 +S'light' +p196705 +tp196706 +a(g196703 +g196705 +S'on' +p196707 +tp196708 +a(g196705 +g196707 +S'the' +p196709 +tp196710 +a(g196707 +g196709 +S'forms' +p196711 +tp196712 +a(g196709 +g196711 +S'he' +p196713 +tp196714 +a(g196711 +g196713 +S'painted' +p196715 +tp196716 +a(g196713 +g196715 +S'caused' +p196717 +tp196718 +a(g196715 +g196717 +S'velázquez' +p196719 +tp196720 +a(g196717 +g196719 +S'to' +p196721 +tp196722 +a(g196719 +g196721 +S'abandon' +p196723 +tp196724 +a(g196721 +g196723 +S'the' +p196725 +tp196726 +a(g196723 +g196725 +S'tenebrism' +p196727 +tp196728 +a(g196725 +g196727 +S'--' +p196729 +tp196730 +a(g196727 +g196729 +S'or' +p196731 +tp196732 +a(g196729 +g196731 +S'extreme' +p196733 +tp196734 +a(g196731 +g196733 +S'contrast' +p196735 +tp196736 +a(g196733 +g196735 +S'of' +p196737 +tp196738 +a(g196735 +g196737 +S'lights' +p196739 +tp196740 +a(g196737 +g196739 +S'and' +p196741 +tp196742 +a(g196739 +g196741 +S'darks' +p196743 +tp196744 +a(g196741 +g196743 +S'--' +p196745 +tp196746 +a(g196743 +g196745 +S'that' +p196747 +tp196748 +a(g196745 +g196747 +S'characterized' +p196749 +tp196750 +a(g196747 +g196749 +S'his' +p196751 +tp196752 +a(g196749 +g196751 +S'earlier' +p196753 +tp196754 +a(g196751 +g196753 +S'works' +p196755 +tp196756 +a(g196753 +g196755 +S'in' +p196757 +tp196758 +a(g196755 +g196757 +S'favor' +p196759 +tp196760 +a(g196757 +g196759 +S'of' +p196761 +tp196762 +a(g196759 +g196761 +S'a' +p196763 +tp196764 +a(g196761 +g196763 +S'softer' +p196765 +tp196766 +a(g196763 +g196765 +S'style.' +p196767 +tp196768 +a(g196765 +g196767 +S'here,' +p196769 +tp196770 +a(g196767 +g196769 +S'no' +p196771 +tp196772 +a(g196769 +g196771 +S'area' +p196773 +tp196774 +a(g196771 +g196773 +S'is' +p196775 +tp196776 +a(g196773 +g196775 +S'obscured' +p196777 +tp196778 +a(g196775 +g196777 +S'by' +p196779 +tp196780 +a(g196777 +g196779 +S'darkness.' +p196781 +tp196782 +a(g196779 +g196781 +S'the' +p196783 +tp196784 +a(g196781 +g196783 +S'artist' +p196785 +tp196786 +a(g196783 +g196785 +S'used' +p196787 +tp196788 +a(g196785 +g196787 +S'a' +p196789 +tp196790 +a(g196787 +g196789 +S'gentle' +p196791 +tp196792 +a(g196789 +g196791 +S'light' +p196793 +tp196794 +a(g196791 +g196793 +S'and' +p196795 +tp196796 +a(g196793 +g196795 +S'deep,' +p196797 +tp196798 +a(g196795 +g196797 +S'but' +p196799 +tp196800 +a(g196797 +g196799 +S'translucent,' +p196801 +tp196802 +a(g196799 +g196801 +S'shadow' +p196803 +tp196804 +a(g196801 +g196803 +S'to' +p196805 +tp196806 +a(g196803 +g196805 +S'reveal' +p196807 +tp196808 +a(g196805 +g196807 +S'each' +p196809 +tp196810 +a(g196807 +g196809 +S'plane' +p196811 +tp196812 +a(g196809 +g196811 +S'of' +p196813 +tp196814 +a(g196811 +g196813 +S'the' +p196815 +tp196816 +a(g196813 +g196815 +S'face,' +p196817 +tp196818 +a(g196815 +g196817 +S'to' +p196819 +tp196820 +a(g196817 +g196819 +S'sculpt' +p196821 +tp196822 +a(g196819 +g196821 +S'the' +p196823 +tp196824 +a(g196821 +g196823 +S'swelling' +p196825 +tp196826 +a(g196823 +g196825 +S'bosom,' +p196827 +tp196828 +a(g196825 +g196827 +S'and' +p196829 +tp196830 +a(g196827 +g196829 +S'to' +p196831 +tp196832 +a(g196829 +g196831 +S'suggest' +p196833 +tp196834 +a(g196831 +g196833 +S'the' +p196835 +tp196836 +a(g196833 +g196835 +S'repetitive' +p196837 +tp196838 +a(g196835 +g196837 +S'motion' +p196839 +tp196840 +a(g196837 +g196839 +S'of' +p196841 +tp196842 +a(g196839 +g196841 +S'the' +p196843 +tp196844 +a(g196841 +g196843 +S'hand.' +p196845 +tp196846 +a(g196843 +g196845 +S'because' +p196847 +tp196848 +a(g196845 +g196847 +S'the' +p196849 +tp196850 +a(g196847 +g196849 +S'painting' +p196851 +tp196852 +a(g196849 +g196851 +S'remains' +p196853 +tp196854 +a(g196851 +g196853 +S'unfinished,' +p196855 +tp196856 +a(g196853 +g196855 +S'the' +p196857 +tp196858 +a(g196855 +g196857 +S'steps' +p196859 +tp196860 +a(g196857 +g196859 +S'in' +p196861 +tp196862 +a(g196859 +g196861 +S'the' +p196863 +tp196864 +a(g196861 +g196863 +S"artist's" +p196865 +tp196866 +a(g196863 +g196865 +S'process' +p196867 +tp196868 +a(g196865 +g196867 +S'are' +p196869 +tp196870 +a(g196867 +g196869 +S'visible.' +p196871 +tp196872 +a(g196869 +g196871 +S'he' +p196873 +tp196874 +a(g196871 +g196873 +S'began' +p196875 +tp196876 +a(g196873 +g196875 +S'by' +p196877 +tp196878 +a(g196875 +g196877 +S'priming' +p196879 +tp196880 +a(g196877 +g196879 +S'the' +p196881 +tp196882 +a(g196879 +g196881 +S'canvas' +p196883 +tp196884 +a(g196881 +g196883 +S'with' +p196885 +tp196886 +a(g196883 +g196885 +S'a' +p196887 +tp196888 +a(g196885 +g196887 +S'gray-green' +p196889 +tp196890 +a(g196887 +g196889 +S'base.' +p196891 +tp196892 +a(g196889 +g196891 +S'next,' +p196893 +tp196894 +a(g196891 +g196893 +S'he' +p196895 +tp196896 +a(g196893 +g196895 +S'indicated' +p196897 +tp196898 +a(g196895 +g196897 +S'the' +p196899 +tp196900 +a(g196897 +g196899 +S'main' +p196901 +tp196902 +a(g196899 +g196901 +S'forms' +p196903 +tp196904 +a(g196901 +g196903 +S'of' +p196905 +tp196906 +a(g196903 +g196905 +S'the' +p196907 +tp196908 +a(g196905 +g196907 +S'composition,' +p196909 +tp196910 +a(g196907 +g196909 +S'sketching' +p196911 +tp196912 +a(g196909 +g196911 +S'them' +p196913 +tp196914 +a(g196911 +g196913 +S'in' +p196915 +tp196916 +a(g196913 +g196915 +S'with' +p196917 +tp196918 +a(g196915 +g196917 +S'darker' +p196919 +tp196920 +a(g196917 +g196919 +S'paint,' +p196921 +tp196922 +a(g196919 +g196921 +S'then' +p196923 +tp196924 +a(g196921 +g196923 +S'brushing' +p196925 +tp196926 +a(g196923 +g196925 +S'them' +p196927 +tp196928 +a(g196925 +g196927 +S'in' +p196929 +tp196930 +a(g196927 +g196929 +S'with' +p196931 +tp196932 +a(g196929 +g196931 +S'broad' +p196933 +tp196934 +a(g196931 +g196933 +S'areas' +p196935 +tp196936 +a(g196933 +g196935 +S'of' +p196937 +tp196938 +a(g196935 +g196937 +S'opaque' +p196939 +tp196940 +a(g196937 +g196939 +S'color,' +p196941 +tp196942 +a(g196939 +g196941 +S'and' +p196943 +tp196944 +a(g196941 +g196943 +S'finally,' +p196945 +tp196946 +a(g196943 +g196945 +S'building' +p196947 +tp196948 +a(g196945 +g196947 +S'up' +p196949 +tp196950 +a(g196947 +g196949 +S'the' +p196951 +tp196952 +a(g196949 +g196951 +S'face' +p196953 +tp196954 +a(g196951 +g196953 +S'--' +p196955 +tp196956 +a(g196953 +g196955 +S'the' +p196957 +tp196958 +a(g196955 +g196957 +S'only' +p196959 +tp196960 +a(g196957 +g196959 +S'area' +p196961 +tp196962 +a(g196959 +g196961 +S'that' +p196963 +tp196964 +a(g196961 +g196963 +S'appears' +p196965 +tp196966 +a(g196963 +g196965 +S'to' +p196967 +tp196968 +a(g196965 +g196967 +S'be' +p196969 +tp196970 +a(g196967 +g196969 +S'finished' +p196971 +tp196972 +a(g196969 +g196971 +S'--' +p196973 +tp196974 +a(g196971 +g196973 +S'with' +p196975 +tp196976 +a(g196973 +g196975 +S'transparent' +p196977 +tp196978 +a(g196975 +g196977 +S'layers' +p196979 +tp196980 +a(g196977 +g196979 +S'of' +p196981 +tp196982 +a(g196979 +g196981 +S'glaze,' +p196983 +tp196984 +a(g196981 +g196983 +S'giving' +p196985 +tp196986 +a(g196983 +g196985 +S'it' +p196987 +tp196988 +a(g196985 +g196987 +S'the' +p196989 +tp196990 +a(g196987 +g196989 +S'effect' +p196991 +tp196992 +a(g196989 +g196991 +S'of' +p196993 +tp196994 +a(g196991 +g196993 +S'flesh' +p196995 +tp196996 +a(g196993 +g196995 +S'seen' +p196997 +tp196998 +a(g196995 +g196997 +S'through' +p196999 +tp197000 +a(g196997 +g196999 +S'softly' +p197001 +tp197002 +a(g196999 +g197001 +S'diffused' +p197003 +tp197004 +a(g197001 +g197003 +S'light.' +p197005 +tp197006 +a(g197003 +g197005 +S'ildefonso,' +p197007 +tp197008 +a(g197005 +g197007 +S'whose' +p197009 +tp197010 +a(g197007 +g197009 +S'name' +p197011 +tp197012 +a(g197009 +g197011 +S'is' +p197013 +tp197014 +a(g197011 +g197013 +S'more' +p197015 +tp197016 +a(g197013 +g197015 +S'familiar' +p197017 +tp197018 +a(g197015 +g197017 +S'in' +p197019 +tp197020 +a(g197017 +g197019 +S'its' +p197021 +tp197022 +a(g197019 +g197021 +S'castilian' +p197023 +tp197024 +a(g197021 +g197023 +S'form,' +p197025 +tp197026 +a(g197023 +g197025 +S'alfonso,' +p197027 +tp197028 +a(g197025 +g197027 +S'was' +p197029 +tp197030 +a(g197027 +g197029 +S'appointed' +p197031 +tp197032 +a(g197029 +g197031 +S'archbishop' +p197033 +tp197034 +a(g197031 +g197033 +S'of' +p197035 +tp197036 +a(g197033 +g197035 +S'toledo' +p197037 +tp197038 +a(g197035 +g197037 +S'in' +p197039 +tp197040 +a(g197037 +g197039 +S'657' +p197041 +tp197042 +a(g197039 +g197041 +S'and' +p197043 +tp197044 +a(g197041 +g197043 +S'later' +p197045 +tp197046 +a(g197043 +g197045 +S'became' +p197047 +tp197048 +a(g197045 +g197047 +S'that' +p197049 +tp197050 +a(g197047 +g197049 +S"city's" +p197051 +tp197052 +a(g197049 +g197051 +S'patron' +p197053 +tp197054 +a(g197051 +g197053 +S'saint.' +p197055 +tp197056 +a(g197053 +g197055 +S'he' +p197057 +tp197058 +a(g197055 +g197057 +S'was' +p197059 +tp197060 +a(g197057 +g197059 +S'especially' +p197061 +tp197062 +a(g197059 +g197061 +S'famed' +p197063 +tp197064 +a(g197061 +g197063 +S'for' +p197065 +tp197066 +a(g197063 +g197065 +S'his' +p197067 +tp197068 +a(g197065 +g197067 +S'book' +p197069 +tp197070 +a(g197067 +g197069 +S'defending' +p197071 +tp197072 +a(g197069 +g197071 +S'the' +p197073 +tp197074 +a(g197071 +g197073 +S'purity' +p197075 +tp197076 +a(g197073 +g197075 +S'of' +p197077 +tp197078 +a(g197075 +g197077 +S'the' +p197079 +tp197080 +a(g197077 +g197079 +S'virgin,' +p197081 +tp197082 +a(g197079 +g197081 +S'which' +p197083 +tp197084 +a(g197081 +g197083 +S'he' +p197085 +tp197086 +a(g197083 +g197085 +S'was' +p197087 +tp197088 +a(g197085 +g197087 +S'said' +p197089 +tp197090 +a(g197087 +g197089 +S'to' +p197091 +tp197092 +a(g197089 +g197091 +S'have' +p197093 +tp197094 +a(g197091 +g197093 +S'written' +p197095 +tp197096 +a(g197093 +g197095 +S'at' +p197097 +tp197098 +a(g197095 +g197097 +S'her' +p197099 +tp197100 +a(g197097 +g197099 +S'dictation.' +p197101 +tp197102 +a(g197099 +g197101 +S'el' +p197103 +tp197104 +a(g197101 +g197103 +S'greco' +p197105 +tp197106 +a(g197103 +g197105 +S'represented' +p197107 +tp197108 +a(g197105 +g197107 +S'the' +p197109 +tp197110 +a(g197107 +g197109 +S'saint' +p197111 +tp197112 +a(g197109 +g197111 +S'in' +p197113 +tp197114 +a(g197111 +g197113 +S'a' +p197115 +tp197116 +a(g197113 +g197115 +S'richly' +p197117 +tp197118 +a(g197115 +g197117 +S'decorated' +p197119 +tp197120 +a(g197117 +g197119 +S'room,' +p197121 +tp197122 +a(g197119 +g197121 +S'seated' +p197123 +tp197124 +a(g197121 +g197123 +S'at' +p197125 +tp197126 +a(g197123 +g197125 +S'a' +p197127 +tp197128 +a(g197125 +g197127 +S'writing' +p197129 +tp197130 +a(g197127 +g197129 +S'table' +p197131 +tp197132 +a(g197129 +g197131 +S'furnished' +p197133 +tp197134 +a(g197131 +g197133 +S'with' +p197135 +tp197136 +a(g197133 +g197135 +S'costly' +p197137 +tp197138 +a(g197135 +g197137 +S'silver' +p197139 +tp197140 +a(g197137 +g197139 +S'desk' +p197141 +tp197142 +a(g197139 +g197141 +S'ornaments' +p197143 +tp197144 +a(g197141 +g197143 +S'consistent' +p197145 +tp197146 +a(g197143 +g197145 +S'with' +p197147 +tp197148 +a(g197145 +g197147 +S'the' +p197149 +tp197150 +a(g197147 +g197149 +S'style' +p197151 +tp197152 +a(g197149 +g197151 +S'of' +p197153 +tp197154 +a(g197151 +g197153 +S'the' +p197155 +tp197156 +a(g197153 +g197155 +S"artist's" +p197157 +tp197158 +a(g197155 +g197157 +S'own' +p197159 +tp197160 +a(g197157 +g197159 +S'time.' +p197161 +tp197162 +a(g197159 +g197161 +S'the' +p197163 +tp197164 +a(g197161 +g197163 +S'contemporary' +p197165 +tp197166 +a(g197163 +g197165 +S'setting' +p197167 +tp197168 +a(g197165 +g197167 +S'notwithstanding,' +p197169 +tp197170 +a(g197167 +g197169 +S'an' +p197171 +tp197172 +a(g197169 +g197171 +S'otherworldly' +p197173 +tp197174 +a(g197171 +g197173 +S'aura' +p197175 +tp197176 +a(g197173 +g197175 +S'pervades' +p197177 +tp197178 +a(g197175 +g197177 +S'the' +p197179 +tp197180 +a(g197177 +g197179 +S'room' +p197181 +tp197182 +a(g197179 +g197181 +S'as' +p197183 +tp197184 +a(g197181 +g197183 +S'the' +p197185 +tp197186 +a(g197183 +g197185 +S'saint' +p197187 +tp197188 +a(g197185 +g197187 +S'pauses' +p197189 +tp197190 +a(g197187 +g197189 +S'in' +p197191 +tp197192 +a(g197189 +g197191 +S'his' +p197193 +tp197194 +a(g197191 +g197193 +S'writing' +p197195 +tp197196 +a(g197193 +g197195 +S'and,' +p197197 +tp197198 +a(g197195 +g197197 +S'as' +p197199 +tp197200 +a(g197197 +g197199 +S'though' +p197201 +tp197202 +a(g197199 +g197201 +S'awaiting' +p197203 +tp197204 +a(g197201 +g197203 +S'the' +p197205 +tp197206 +a(g197203 +g197205 +S'next' +p197207 +tp197208 +a(g197205 +g197207 +S'word,' +p197209 +tp197210 +a(g197207 +g197209 +S'gazes' +p197211 +tp197212 +a(g197209 +g197211 +S'attentively' +p197213 +tp197214 +a(g197211 +g197213 +S'at' +p197215 +tp197216 +a(g197213 +g197215 +S'the' +p197217 +tp197218 +a(g197215 +g197217 +S'source' +p197219 +tp197220 +a(g197217 +g197219 +S'of' +p197221 +tp197222 +a(g197219 +g197221 +S'his' +p197223 +tp197224 +a(g197221 +g197223 +S'inspiration,' +p197225 +tp197226 +a(g197223 +g197225 +S'a' +p197227 +tp197228 +a(g197225 +g197227 +S'statuette' +p197229 +tp197230 +a(g197227 +g197229 +S'of' +p197231 +tp197232 +a(g197229 +g197231 +S'the' +p197233 +tp197234 +a(g197231 +g197233 +S'madonna.' +p197235 +tp197236 +a(g197233 +g197235 +S'the' +p197237 +tp197238 +a(g197235 +g197237 +S'combination' +p197239 +tp197240 +a(g197237 +g197239 +S'of' +p197241 +tp197242 +a(g197239 +g197241 +S'strangely' +p197243 +tp197244 +a(g197241 +g197243 +S'compacted' +p197245 +tp197246 +a(g197243 +g197245 +S'space,' +p197247 +tp197248 +a(g197245 +g197247 +S'the' +p197249 +tp197250 +a(g197247 +g197249 +S'chalky' +p197251 +tp197252 +a(g197249 +g197251 +S'highlights' +p197253 +tp197254 +a(g197251 +g197253 +S'that' +p197255 +tp197256 +a(g197253 +g197255 +S'play' +p197257 +tp197258 +a(g197255 +g197257 +S'over' +p197259 +tp197260 +a(g197257 +g197259 +S'the' +p197261 +tp197262 +a(g197259 +g197261 +S"saint's" +p197263 +tp197264 +a(g197261 +g197263 +S'sleeves' +p197265 +tp197266 +a(g197263 +g197265 +S'and' +p197267 +tp197268 +a(g197265 +g197267 +S'the' +p197269 +tp197270 +a(g197267 +g197269 +S'velvet' +p197271 +tp197272 +a(g197269 +g197271 +S'tablecover,' +p197273 +tp197274 +a(g197271 +g197273 +S'and,' +p197275 +tp197276 +a(g197273 +g197275 +S'not' +p197277 +tp197278 +a(g197275 +g197277 +S'least,' +p197279 +tp197280 +a(g197277 +g197279 +S"ildefonso's" +p197281 +tp197282 +a(g197279 +g197281 +S'fervent' +p197283 +tp197284 +a(g197281 +g197283 +S'expression,' +p197285 +tp197286 +a(g197283 +g197285 +S'remove' +p197287 +tp197288 +a(g197285 +g197287 +S'the' +p197289 +tp197290 +a(g197287 +g197289 +S'scene' +p197291 +tp197292 +a(g197289 +g197291 +S'to' +p197293 +tp197294 +a(g197291 +g197293 +S'a' +p197295 +tp197296 +a(g197293 +g197295 +S'spiritual' +p197297 +tp197298 +a(g197295 +g197297 +S'realm.' +p197299 +tp197300 +a(g197297 +g197299 +S'el' +p197301 +tp197302 +a(g197299 +g197301 +S"greco's" +p197303 +tp197304 +a(g197301 +g197303 +S'image' +p197305 +tp197306 +a(g197303 +g197305 +S'of' +p197307 +tp197308 +a(g197305 +g197307 +S'the' +p197309 +tp197310 +a(g197307 +g197309 +S'virgin' +p197311 +tp197312 +a(g197309 +g197311 +S'resembles' +p197313 +tp197314 +a(g197311 +g197313 +S'an' +p197315 +tp197316 +a(g197313 +g197315 +S'actual' +p197317 +tp197318 +a(g197315 +g197317 +S'wooden' +p197319 +tp197320 +a(g197317 +g197319 +S'figure' +p197321 +tp197322 +a(g197319 +g197321 +S'that' +p197323 +tp197324 +a(g197321 +g197323 +S'ildefonso' +p197325 +tp197326 +a(g197323 +g197325 +S'is' +p197327 +tp197328 +a(g197325 +g197327 +S'said' +p197329 +tp197330 +a(g197327 +g197329 +S'to' +p197331 +tp197332 +a(g197329 +g197331 +S'have' +p197333 +tp197334 +a(g197331 +g197333 +S'kept' +p197335 +tp197336 +a(g197333 +g197335 +S'in' +p197337 +tp197338 +a(g197335 +g197337 +S'his' +p197339 +tp197340 +a(g197337 +g197339 +S'oratory' +p197341 +tp197342 +a(g197339 +g197341 +S'until' +p197343 +tp197344 +a(g197341 +g197343 +S'it' +p197345 +tp197346 +a(g197343 +g197345 +S'was' +p197347 +tp197348 +a(g197345 +g197347 +S'given' +p197349 +tp197350 +a(g197347 +g197349 +S'by' +p197351 +tp197352 +a(g197349 +g197351 +S'him' +p197353 +tp197354 +a(g197351 +g197353 +S'to' +p197355 +tp197356 +a(g197353 +g197355 +S'the' +p197357 +tp197358 +a(g197355 +g197357 +S'church' +p197359 +tp197360 +a(g197357 +g197359 +S'of' +p197361 +tp197362 +a(g197359 +g197361 +S'the' +p197363 +tp197364 +a(g197361 +g197363 +S'hospital' +p197365 +tp197366 +a(g197363 +g197365 +S'of' +p197367 +tp197368 +a(g197365 +g197367 +S'charity' +p197369 +tp197370 +a(g197367 +g197369 +S'in' +p197371 +tp197372 +a(g197369 +g197371 +S'the' +p197373 +tp197374 +a(g197371 +g197373 +S'small' +p197375 +tp197376 +a(g197373 +g197375 +S'spanish' +p197377 +tp197378 +a(g197375 +g197377 +S'town' +p197379 +tp197380 +a(g197377 +g197379 +S'of' +p197381 +tp197382 +a(g197379 +g197381 +S'illescas,' +p197383 +tp197384 +a(g197381 +g197383 +S'near' +p197385 +tp197386 +a(g197383 +g197385 +S'toledo.' +p197387 +tp197388 +a(g197385 +g197387 +S'the' +p197389 +tp197390 +a(g197387 +g197389 +S'statuette' +p197391 +tp197392 +a(g197389 +g197391 +S'is' +p197393 +tp197394 +a(g197391 +g197393 +S'preserved' +p197395 +tp197396 +a(g197393 +g197395 +S'there' +p197397 +tp197398 +a(g197395 +g197397 +S'today' +p197399 +tp197400 +a(g197397 +g197399 +S'together' +p197401 +tp197402 +a(g197399 +g197401 +S'with' +p197403 +tp197404 +a(g197401 +g197403 +S'el' +p197405 +tp197406 +a(g197403 +g197405 +S"greco's" +p197407 +tp197408 +a(g197405 +g197407 +S'larger' +p197409 +tp197410 +a(g197407 +g197409 +S'version' +p197411 +tp197412 +a(g197409 +g197411 +S'of' +p197413 +tp197414 +a(g197411 +g197413 +S'trees,' +p197415 +tp197416 +a(g197413 +g197415 +S'grass,' +p197417 +tp197418 +a(g197415 +g197417 +S'and' +p197419 +tp197420 +a(g197417 +g197419 +S'shrubbery,' +p197421 +tp197422 +a(g197419 +g197421 +S'simplified' +p197423 +tp197424 +a(g197421 +g197423 +S'almost' +p197425 +tp197426 +a(g197423 +g197425 +S'to' +p197427 +tp197428 +a(g197425 +g197427 +S'abstraction,' +p197429 +tp197430 +a(g197427 +g197429 +S'set' +p197431 +tp197432 +a(g197429 +g197431 +S'off' +p197433 +tp197434 +a(g197431 +g197433 +S'the' +p197435 +tp197436 +a(g197433 +g197435 +S'fragile,' +p197437 +tp197438 +a(g197435 +g197437 +S'wasp–waisted' +p197439 +tp197440 +a(g197437 +g197439 +S'figure' +p197441 +tp197442 +a(g197439 +g197441 +S'of' +p197443 +tp197444 +a(g197441 +g197443 +S'maría' +p197445 +tp197446 +a(g197443 +g197445 +S'ana' +p197447 +tp197448 +a(g197445 +g197447 +S'de' +p197449 +tp197450 +a(g197447 +g197449 +S'pontejos' +p197451 +tp197452 +a(g197449 +g197451 +S'y' +p197453 +tp197454 +a(g197451 +g197453 +S'sandoval,' +p197455 +tp197456 +a(g197453 +g197455 +S'the' +p197457 +tp197458 +a(g197455 +g197457 +S'marquesa' +p197459 +tp197460 +a(g197457 +g197459 +S'de' +p197461 +tp197462 +a(g197459 +g197461 +S'pontejos.' +p197463 +tp197464 +a(g197461 +g197463 +S'splendidly' +p197465 +tp197466 +a(g197463 +g197465 +S'attired,' +p197467 +tp197468 +a(g197465 +g197467 +S'she' +p197469 +tp197470 +a(g197467 +g197469 +S'typifies' +p197471 +tp197472 +a(g197469 +g197471 +S'those' +p197473 +tp197474 +a(g197471 +g197473 +S'ladies' +p197475 +tp197476 +a(g197473 +g197475 +S'of' +p197477 +tp197478 +a(g197475 +g197477 +S'the' +p197479 +tp197480 +a(g197477 +g197479 +S'spanish' +p197481 +tp197482 +a(g197479 +g197481 +S'aristocracy' +p197483 +tp197484 +a(g197481 +g197483 +S'who' +p197485 +tp197486 +a(g197483 +g197485 +S'affected' +p197487 +tp197488 +a(g197485 +g197487 +S'the' +p197489 +tp197490 +a(g197487 +g197489 +S'"shepherdess"' +p197491 +tp197492 +a(g197489 +g197491 +S'style' +p197493 +tp197494 +a(g197491 +g197493 +S'of' +p197495 +tp197496 +a(g197493 +g197495 +S'marie' +p197497 +tp197498 +a(g197495 +g197497 +S'antoinette,' +p197499 +tp197500 +a(g197497 +g197499 +S'so' +p197501 +tp197502 +a(g197499 +g197501 +S'popular' +p197503 +tp197504 +a(g197501 +g197503 +S'in' +p197505 +tp197506 +a(g197503 +g197505 +S'pre–revolutionary' +p197507 +tp197508 +a(g197505 +g197507 +S'france.' +p197509 +tp197510 +a(g197507 +g197509 +S'the' +p197511 +tp197512 +a(g197509 +g197511 +S'18th' +p197513 +tp197514 +a(g197511 +g197513 +S"century's" +p197515 +tp197516 +a(g197513 +g197515 +S'sentimental' +p197517 +tp197518 +a(g197515 +g197517 +S'fondness' +p197519 +tp197520 +a(g197517 +g197519 +S'for' +p197521 +tp197522 +a(g197519 +g197521 +S'nature,' +p197523 +tp197524 +a(g197521 +g197523 +S'influenced' +p197525 +tp197526 +a(g197523 +g197525 +S'by' +p197527 +tp197528 +a(g197525 +g197527 +S'the' +p197529 +tp197530 +a(g197527 +g197529 +S'writings' +p197531 +tp197532 +a(g197529 +g197531 +S'of' +p197533 +tp197534 +a(g197531 +g197533 +S'jean–jacques' +p197535 +tp197536 +a(g197533 +g197535 +S'rousseau,' +p197537 +tp197538 +a(g197535 +g197537 +S'is' +p197539 +tp197540 +a(g197537 +g197539 +S'alluded' +p197541 +tp197542 +a(g197539 +g197541 +S'to' +p197543 +tp197544 +a(g197541 +g197543 +S'in' +p197545 +tp197546 +a(g197543 +g197545 +S'the' +p197547 +tp197548 +a(g197545 +g197547 +S'parklike' +p197549 +tp197550 +a(g197547 +g197549 +S'setting,' +p197551 +tp197552 +a(g197549 +g197551 +S'the' +p197553 +tp197554 +a(g197551 +g197553 +S'roses' +p197555 +tp197556 +a(g197553 +g197555 +S'arranged' +p197557 +tp197558 +a(g197555 +g197557 +S'around' +p197559 +tp197560 +a(g197557 +g197559 +S'the' +p197561 +tp197562 +a(g197559 +g197561 +S'bodice' +p197563 +tp197564 +a(g197561 +g197563 +S'of' +p197565 +tp197566 +a(g197563 +g197565 +S'the' +p197567 +tp197568 +a(g197565 +g197567 +S'gown' +p197569 +tp197570 +a(g197567 +g197569 +S'and' +p197571 +tp197572 +a(g197569 +g197571 +S'tucked' +p197573 +tp197574 +a(g197571 +g197573 +S'into' +p197575 +tp197576 +a(g197573 +g197575 +S'the' +p197577 +tp197578 +a(g197575 +g197577 +S'folds' +p197579 +tp197580 +a(g197577 +g197579 +S'of' +p197581 +tp197582 +a(g197579 +g197581 +S'the' +p197583 +tp197584 +a(g197581 +g197583 +S'voluminous' +p197585 +tp197586 +a(g197583 +g197585 +S'overskirt,' +p197587 +tp197588 +a(g197585 +g197587 +S'and' +p197589 +tp197590 +a(g197587 +g197589 +S'in' +p197591 +tp197592 +a(g197589 +g197591 +S'the' +p197593 +tp197594 +a(g197591 +g197593 +S'carnation' +p197595 +tp197596 +a(g197593 +g197595 +S'that' +p197597 +tp197598 +a(g197595 +g197597 +S'the' +p197599 +tp197600 +a(g197597 +g197599 +S'marquesa' +p197601 +tp197602 +a(g197599 +g197601 +S'holds' +p197603 +tp197604 +a(g197601 +g197603 +S'with' +p197605 +tp197606 +a(g197603 +g197605 +S'self–conscious' +p197607 +tp197608 +a(g197605 +g197607 +S'elegance.' +p197609 +tp197610 +a(g197607 +g197609 +S'framing' +p197611 +tp197612 +a(g197609 +g197611 +S'her' +p197613 +tp197614 +a(g197611 +g197613 +S'artfully' +p197615 +tp197616 +a(g197613 +g197615 +S'arranged' +p197617 +tp197618 +a(g197615 +g197617 +S'coiffure,' +p197619 +tp197620 +a(g197617 +g197619 +S'the' +p197621 +tp197622 +a(g197619 +g197621 +S'broad–brimmed' +p197623 +tp197624 +a(g197621 +g197623 +S'picture' +p197625 +tp197626 +a(g197623 +g197625 +S'hat' +p197627 +tp197628 +a(g197625 +g197627 +S'again' +p197629 +tp197630 +a(g197627 +g197629 +S'bespeaks' +p197631 +tp197632 +a(g197629 +g197631 +S'high' +p197633 +tp197634 +a(g197631 +g197633 +S'fashion,' +p197635 +tp197636 +a(g197633 +g197635 +S'perhaps' +p197637 +tp197638 +a(g197635 +g197637 +S'imported' +p197639 +tp197640 +a(g197637 +g197639 +S'from' +p197641 +tp197642 +a(g197639 +g197641 +S'england;' +p197643 +tp197644 +a(g197641 +g197643 +S'such' +p197645 +tp197646 +a(g197643 +g197645 +S'hats' +p197647 +tp197648 +a(g197645 +g197647 +S'were' +p197649 +tp197650 +a(g197647 +g197649 +S'often' +p197651 +tp197652 +a(g197649 +g197651 +S'seen' +p197653 +tp197654 +a(g197651 +g197653 +S'in' +p197655 +tp197656 +a(g197653 +g197655 +S'contemporary' +p197657 +tp197658 +a(g197655 +g197657 +S'portraits' +p197659 +tp197660 +a(g197657 +g197659 +S'by' +p197661 +tp197662 +a(g197659 +g197661 +S'gainsborough' +p197663 +tp197664 +a(g197661 +g197663 +S'and' +p197665 +tp197666 +a(g197663 +g197665 +S'other' +p197667 +tp197668 +a(g197665 +g197667 +S'british' +p197669 +tp197670 +a(g197667 +g197669 +S'painters.' +p197671 +tp197672 +a(g197669 +g197671 +S'while' +p197673 +tp197674 +a(g197671 +g197673 +S'the' +p197675 +tp197676 +a(g197673 +g197675 +S"painting's" +p197677 +tp197678 +a(g197675 +g197677 +S'pale' +p197679 +tp197680 +a(g197677 +g197679 +S'tones' +p197681 +tp197682 +a(g197679 +g197681 +S'reflect' +p197683 +tp197684 +a(g197681 +g197683 +S'the' +p197685 +tp197686 +a(g197683 +g197685 +S'last' +p197687 +tp197688 +a(g197685 +g197687 +S'stages' +p197689 +tp197690 +a(g197687 +g197689 +S'of' +p197691 +tp197692 +a(g197689 +g197691 +S'the' +p197693 +tp197694 +a(g197691 +g197693 +S'rococo' +p197695 +tp197696 +a(g197693 +g197695 +S'in' +p197697 +tp197698 +a(g197695 +g197697 +S'spanish' +p197699 +tp197700 +a(g197697 +g197699 +S'art,' +p197701 +tp197702 +a(g197699 +g197701 +S'the' +p197703 +tp197704 +a(g197701 +g197703 +S'overall' +p197705 +tp197706 +a(g197703 +g197705 +S'silvery' +p197707 +tp197708 +a(g197705 +g197707 +S'gray–green' +p197709 +tp197710 +a(g197707 +g197709 +S'tonality' +p197711 +tp197712 +a(g197709 +g197711 +S'is' +p197713 +tp197714 +a(g197711 +g197713 +S'equally' +p197715 +tp197716 +a(g197713 +g197715 +S'reminiscent' +p197717 +tp197718 +a(g197715 +g197717 +S'of' +p197719 +tp197720 +a(g197717 +g197719 +S'the' +p197721 +tp197722 +a(g197719 +g197721 +S'earlier' +p197723 +tp197724 +a(g197721 +g197723 +S'spanish' +p197725 +tp197726 +a(g197723 +g197725 +S'master,' +p197727 +tp197728 +a(g197725 +g197727 +S'velázquez,' +p197729 +tp197730 +a(g197727 +g197729 +S'whose' +p197731 +tp197732 +a(g197729 +g197731 +S'paintings' +p197733 +tp197734 +a(g197731 +g197733 +S'goya' +p197735 +tp197736 +a(g197733 +g197735 +S'had' +p197737 +tp197738 +a(g197735 +g197737 +S'studied' +p197739 +tp197740 +a(g197737 +g197739 +S'and' +p197741 +tp197742 +a(g197739 +g197741 +S'copied.' +p197743 +tp197744 +a(g197741 +g197743 +S'goya' +p197745 +tp197746 +a(g197743 +g197745 +S'probably' +p197747 +tp197748 +a(g197745 +g197747 +S'painted' +p197749 +tp197750 +a(g197747 +g197749 +S'this' +p197751 +tp197752 +a(g197749 +g197751 +S'portrait' +p197753 +tp197754 +a(g197751 +g197753 +S'on' +p197755 +tp197756 +a(g197753 +g197755 +S'the' +p197757 +tp197758 +a(g197755 +g197757 +S'occasion' +p197759 +tp197760 +a(g197757 +g197759 +S'of' +p197761 +tp197762 +a(g197759 +g197761 +S'the' +p197763 +tp197764 +a(g197761 +g197763 +S"marquesa's" +p197765 +tp197766 +a(g197763 +g197765 +S'first' +p197767 +tp197768 +a(g197765 +g197767 +S'marriage,' +p197769 +tp197770 +a(g197767 +g197769 +S'to' +p197771 +tp197772 +a(g197769 +g197771 +S'francisco' +p197773 +tp197774 +a(g197771 +g197773 +S'de' +p197775 +tp197776 +a(g197773 +g197775 +S'monino' +p197777 +tp197778 +a(g197775 +g197777 +S'y' +p197779 +tp197780 +a(g197777 +g197779 +S'redondo,' +p197781 +tp197782 +a(g197779 +g197781 +S'brother' +p197783 +tp197784 +a(g197781 +g197783 +S'of' +p197785 +tp197786 +a(g197783 +g197785 +S'the' +p197787 +tp197788 +a(g197785 +g197787 +S'all–powerful' +p197789 +tp197790 +a(g197787 +g197789 +S'count' +p197791 +tp197792 +a(g197789 +g197791 +S'of' +p197793 +tp197794 +a(g197791 +g197793 +S'floridablanca,' +p197795 +tp197796 +a(g197793 +g197795 +S'another' +p197797 +tp197798 +a(g197795 +g197797 +S'of' +p197799 +tp197800 +a(g197797 +g197799 +S"goya's" +p197801 +tp197802 +a(g197799 +g197801 +S'noble' +p197803 +tp197804 +a(g197801 +g197803 +S'patrons.' +p197805 +tp197806 +a(g197803 +g197805 +S'the' +p197807 +tp197808 +a(g197805 +g197807 +S'deep' +p197809 +tp197810 +a(g197807 +g197809 +S'blue' +p197811 +tp197812 +a(g197809 +g197811 +S'of' +p197813 +tp197814 +a(g197811 +g197813 +S'the' +p197815 +tp197816 +a(g197813 +g197815 +S'sitter’s' +p197817 +tp197818 +a(g197815 +g197817 +S'silk' +p197819 +tp197820 +a(g197817 +g197819 +S'dress' +p197821 +tp197822 +a(g197819 +g197821 +S'befited' +p197823 +tp197824 +a(g197821 +g197823 +S'the' +p197825 +tp197826 +a(g197823 +g197825 +S'restrained' +p197827 +tp197828 +a(g197825 +g197827 +S'tastes' +p197829 +tp197830 +a(g197827 +g197829 +S'of' +p197831 +tp197832 +a(g197829 +g197831 +S'colonial' +p197833 +tp197834 +a(g197831 +g197833 +S'america;' +p197835 +tp197836 +a(g197833 +g197835 +S'british' +p197837 +tp197838 +a(g197835 +g197837 +S'women' +p197839 +tp197840 +a(g197837 +g197839 +S'preferred' +p197841 +tp197842 +a(g197839 +g197841 +S'brighter' +p197843 +tp197844 +a(g197841 +g197843 +S'colors.' +p197845 +tp197846 +a(g197843 +g197845 +S'anne' +p197847 +tp197848 +a(g197845 +g197847 +S'fairchild' +p197849 +tp197850 +a(g197847 +g197849 +S'(1730-1803)' +p197851 +tp197852 +a(g197849 +g197851 +S'wed' +p197853 +tp197854 +a(g197851 +g197853 +S'the' +p197855 +tp197856 +a(g197853 +g197855 +S'owner' +p197857 +tp197858 +a(g197855 +g197857 +S'of' +p197859 +tp197860 +a(g197857 +g197859 +S'a' +p197861 +tp197862 +a(g197859 +g197861 +S'country' +p197863 +tp197864 +a(g197861 +g197863 +S'estate' +p197865 +tp197866 +a(g197863 +g197865 +S'in' +p197867 +tp197868 +a(g197865 +g197867 +S'portsmouth,' +p197869 +tp197870 +a(g197867 +g197869 +S'rhode' +p197871 +tp197872 +a(g197869 +g197871 +S'island.' +p197873 +tp197874 +a(g197871 +g197873 +S'the' +p197875 +tp197876 +a(g197873 +g197875 +S'floral' +p197877 +tp197878 +a(g197875 +g197877 +S'garland' +p197879 +tp197880 +a(g197877 +g197879 +S'in' +p197881 +tp197882 +a(g197879 +g197881 +S'mrs.' +p197883 +tp197884 +a(g197881 +g197883 +S'bowler’s' +p197885 +tp197886 +a(g197883 +g197885 +S'hands,' +p197887 +tp197888 +a(g197885 +g197887 +S'besides' +p197889 +tp197890 +a(g197887 +g197889 +S'being' +p197891 +tp197892 +a(g197889 +g197891 +S'a' +p197893 +tp197894 +a(g197891 +g197893 +S'standard' +p197895 +tp197896 +a(g197893 +g197895 +S'symbol' +p197897 +tp197898 +a(g197895 +g197897 +S'of' +p197899 +tp197900 +a(g197897 +g197899 +S'beauty,' +p197901 +tp197902 +a(g197899 +g197901 +S'may' +p197903 +tp197904 +a(g197901 +g197903 +S'refer' +p197905 +tp197906 +a(g197903 +g197905 +S'to' +p197907 +tp197908 +a(g197905 +g197907 +S'her' +p197909 +tp197910 +a(g197907 +g197909 +S'husband’s' +p197911 +tp197912 +a(g197909 +g197911 +S'wealth;' +p197913 +tp197914 +a(g197911 +g197913 +S'he' +p197915 +tp197916 +a(g197913 +g197915 +S'possessed' +p197917 +tp197918 +a(g197915 +g197917 +S'one' +p197919 +tp197920 +a(g197917 +g197919 +S'of' +p197921 +tp197922 +a(g197919 +g197921 +S'the' +p197923 +tp197924 +a(g197921 +g197923 +S'very' +p197925 +tp197926 +a(g197923 +g197925 +S'few' +p197927 +tp197928 +a(g197925 +g197927 +S'greenhouses' +p197929 +tp197930 +a(g197927 +g197929 +S'in' +p197931 +tp197932 +a(g197929 +g197931 +S'the' +p197933 +tp197934 +a(g197931 +g197933 +S'colonies.' +p197935 +tp197936 +a(g197933 +g197935 +S'the' +p197937 +tp197938 +a(g197935 +g197937 +S'dutch' +p197939 +tp197940 +a(g197937 +g197939 +S'republic' +p197941 +tp197942 +a(g197939 +g197941 +S'differed' +p197943 +tp197944 +a(g197941 +g197943 +S'in' +p197945 +tp197946 +a(g197943 +g197945 +S'both' +p197947 +tp197948 +a(g197945 +g197947 +S'its' +p197949 +tp197950 +a(g197947 +g197949 +S'political' +p197951 +tp197952 +a(g197949 +g197951 +S'structure' +p197953 +tp197954 +a(g197951 +g197953 +S'and' +p197955 +tp197956 +a(g197953 +g197955 +S'religious' +p197957 +tp197958 +a(g197955 +g197957 +S'orientation' +p197959 +tp197960 +a(g197957 +g197959 +S'from' +p197961 +tp197962 +a(g197959 +g197961 +S'the' +p197963 +tp197964 +a(g197961 +g197963 +S'catholic' +p197965 +tp197966 +a(g197963 +g197965 +S'monarchies' +p197967 +tp197968 +a(g197965 +g197967 +S'that' +p197969 +tp197970 +a(g197967 +g197969 +S'ruled' +p197971 +tp197972 +a(g197969 +g197971 +S'most' +p197973 +tp197974 +a(g197971 +g197973 +S'other' +p197975 +tp197976 +a(g197973 +g197975 +S'seventeenth-century' +p197977 +tp197978 +a(g197975 +g197977 +S'european' +p197979 +tp197980 +a(g197977 +g197979 +S'nations.' +p197981 +tp197982 +a(g197979 +g197981 +S'dutch' +p197983 +tp197984 +a(g197981 +g197983 +S'culture' +p197985 +tp197986 +a(g197983 +g197985 +S'was,' +p197987 +tp197988 +a(g197985 +g197987 +S'however,' +p197989 +tp197990 +a(g197987 +g197989 +S'open' +p197991 +tp197992 +a(g197989 +g197991 +S'to' +p197993 +tp197994 +a(g197991 +g197993 +S'many' +p197995 +tp197996 +a(g197993 +g197995 +S'influences;' +p197997 +tp197998 +a(g197995 +g197997 +S'one' +p197999 +tp198000 +a(g197997 +g197999 +S'of' +p198001 +tp198002 +a(g197999 +g198001 +S'the' +p198003 +tp198004 +a(g198001 +g198003 +S'most' +p198005 +tp198006 +a(g198003 +g198005 +S'pervasive' +p198007 +tp198008 +a(g198005 +g198007 +S'of' +p198009 +tp198010 +a(g198007 +g198009 +S'these' +p198011 +tp198012 +a(g198009 +g198011 +S'was' +p198013 +tp198014 +a(g198011 +g198013 +S'the' +p198015 +tp198016 +a(g198013 +g198015 +S'introduction' +p198017 +tp198018 +a(g198015 +g198017 +S'of' +p198019 +tp198020 +a(g198017 +g198019 +S'classical' +p198021 +tp198022 +a(g198019 +g198021 +S'ideals,' +p198023 +tp198024 +a(g198021 +g198023 +S'specifically' +p198025 +tp198026 +a(g198023 +g198025 +S'in' +p198027 +tp198028 +a(g198025 +g198027 +S'architecture.' +p198029 +tp198030 +a(g198027 +g198029 +S'a' +p198031 +tp198032 +a(g198029 +g198031 +S'number' +p198033 +tp198034 +a(g198031 +g198033 +S'of' +p198035 +tp198036 +a(g198033 +g198035 +S'dutch' +p198037 +tp198038 +a(g198035 +g198037 +S'architects' +p198039 +tp198040 +a(g198037 +g198039 +S'designed' +p198041 +tp198042 +a(g198039 +g198041 +S'and' +p198043 +tp198044 +a(g198041 +g198043 +S'built' +p198045 +tp198046 +a(g198043 +g198045 +S'large' +p198047 +tp198048 +a(g198045 +g198047 +S'homes,' +p198049 +tp198050 +a(g198047 +g198049 +S'palaces,' +p198051 +tp198052 +a(g198049 +g198051 +S'and' +p198053 +tp198054 +a(g198051 +g198053 +S'town' +p198055 +tp198056 +a(g198053 +g198055 +S'halls' +p198057 +tp198058 +a(g198055 +g198057 +S'in' +p198059 +tp198060 +a(g198057 +g198059 +S'classical' +p198061 +tp198062 +a(g198059 +g198061 +S'styles' +p198063 +tp198064 +a(g198061 +g198063 +S'similar' +p198065 +tp198066 +a(g198063 +g198065 +S'to' +p198067 +tp198068 +a(g198065 +g198067 +S'that' +p198069 +tp198070 +a(g198067 +g198069 +S'of' +p198071 +tp198072 +a(g198069 +g198071 +S'the' +p198073 +tp198074 +a(g198071 +g198073 +S'chateau' +p198075 +tp198076 +a(g198073 +g198075 +S'in' +p198077 +tp198078 +a(g198075 +g198077 +S'this' +p198079 +tp198080 +a(g198077 +g198079 +S'painting.' +p198081 +tp198082 +a(g198079 +g198081 +S'although' +p198083 +tp198084 +a(g198081 +g198083 +S'this' +p198085 +tp198086 +a(g198083 +g198085 +S'particular' +p198087 +tp198088 +a(g198085 +g198087 +S'château' +p198089 +tp198090 +a(g198087 +g198089 +S'and' +p198091 +tp198092 +a(g198089 +g198091 +S'the' +p198093 +tp198094 +a(g198091 +g198093 +S'formal' +p198095 +tp198096 +a(g198093 +g198095 +S'gardens' +p198097 +tp198098 +a(g198095 +g198097 +S'surrounding' +p198099 +tp198100 +a(g198097 +g198099 +S'it' +p198101 +tp198102 +a(g198099 +g198101 +S'are' +p198103 +tp198104 +a(g198101 +g198103 +S'fanciful' +p198105 +tp198106 +a(g198103 +g198105 +S'creations' +p198107 +tp198108 +a(g198105 +g198107 +S'of' +p198109 +tp198110 +a(g198107 +g198109 +S'the' +p198111 +tp198112 +a(g198109 +g198111 +S'artist,' +p198113 +tp198114 +a(g198111 +g198113 +S'the' +p198115 +tp198116 +a(g198113 +g198115 +S'image' +p198117 +tp198118 +a(g198115 +g198117 +S'of' +p198119 +tp198120 +a(g198117 +g198119 +S'refined' +p198121 +tp198122 +a(g198119 +g198121 +S'elegance' +p198123 +tp198124 +a(g198121 +g198123 +S'and' +p198125 +tp198126 +a(g198123 +g198125 +S'wealth' +p198127 +tp198128 +a(g198125 +g198127 +S'that' +p198129 +tp198130 +a(g198127 +g198129 +S'the' +p198131 +tp198132 +a(g198129 +g198131 +S'scene' +p198133 +tp198134 +a(g198131 +g198133 +S'conveys' +p198135 +tp198136 +a(g198133 +g198135 +S'reflects' +p198137 +tp198138 +a(g198135 +g198137 +S'the' +p198139 +tp198140 +a(g198137 +g198139 +S'social' +p198141 +tp198142 +a(g198139 +g198141 +S'aspirations' +p198143 +tp198144 +a(g198141 +g198143 +S'of' +p198145 +tp198146 +a(g198143 +g198145 +S'the' +p198147 +tp198148 +a(g198145 +g198147 +S'dutch' +p198149 +tp198150 +a(g198147 +g198149 +S'landed' +p198151 +tp198152 +a(g198149 +g198151 +S'gentry' +p198153 +tp198154 +a(g198151 +g198153 +S'at' +p198155 +tp198156 +a(g198153 +g198155 +S'that' +p198157 +tp198158 +a(g198155 +g198157 +S'time.' +p198159 +tp198160 +a(g198157 +g198159 +S'van' +p198161 +tp198162 +a(g198159 +g198161 +S'der' +p198163 +tp198164 +a(g198161 +g198163 +S'heyden' +p198165 +tp198166 +a(g198163 +g198165 +S'was' +p198167 +tp198168 +a(g198165 +g198167 +S'an' +p198169 +tp198170 +a(g198167 +g198169 +S'inventor' +p198171 +tp198172 +a(g198169 +g198171 +S'as' +p198173 +tp198174 +a(g198171 +g198173 +S'well' +p198175 +tp198176 +a(g198173 +g198175 +S'as' +p198177 +tp198178 +a(g198175 +g198177 +S'an' +p198179 +tp198180 +a(g198177 +g198179 +S'artist.' +p198181 +tp198182 +a(g198179 +g198181 +S'in' +p198183 +tp198184 +a(g198181 +g198183 +S'1669' +p198185 +tp198186 +a(g198183 +g198185 +S'he' +p198187 +tp198188 +a(g198185 +g198187 +S'devised' +p198189 +tp198190 +a(g198187 +g198189 +S'a' +p198191 +tp198192 +a(g198189 +g198191 +S'plan' +p198193 +tp198194 +a(g198191 +g198193 +S'for' +p198195 +tp198196 +a(g198193 +g198195 +S'lighting' +p198197 +tp198198 +a(g198195 +g198197 +S'the' +p198199 +tp198200 +a(g198197 +g198199 +S'city' +p198201 +tp198202 +a(g198199 +g198201 +S'streets' +p198203 +tp198204 +a(g198201 +g198203 +S'of' +p198205 +tp198206 +a(g198203 +g198205 +S'amsterdam.' +p198207 +tp198208 +a(g198205 +g198207 +S'he' +p198209 +tp198210 +a(g198207 +g198209 +S'later' +p198211 +tp198212 +a(g198209 +g198211 +S'developed' +p198213 +tp198214 +a(g198211 +g198213 +S'a' +p198215 +tp198216 +a(g198213 +g198215 +S'vacuum' +p198217 +tp198218 +a(g198215 +g198217 +S'pump' +p198219 +tp198220 +a(g198217 +g198219 +S'that' +p198221 +tp198222 +a(g198219 +g198221 +S'permitted' +p198223 +tp198224 +a(g198221 +g198223 +S'the' +p198225 +tp198226 +a(g198223 +g198225 +S'use' +p198227 +tp198228 +a(g198225 +g198227 +S'of' +p198229 +tp198230 +a(g198227 +g198229 +S'hoses' +p198231 +tp198232 +a(g198229 +g198231 +S'for' +p198233 +tp198234 +a(g198231 +g198233 +S'firefighting.' +p198235 +tp198236 +a(g198233 +g198235 +S'as' +p198237 +tp198238 +a(g198235 +g198237 +S'a' +p198239 +tp198240 +a(g198237 +g198239 +S'painter' +p198241 +tp198242 +a(g198239 +g198241 +S'he' +p198243 +tp198244 +a(g198241 +g198243 +S'specialized' +p198245 +tp198246 +a(g198243 +g198245 +S'in' +p198247 +tp198248 +a(g198245 +g198247 +S'depicting' +p198249 +tp198250 +a(g198247 +g198249 +S'views' +p198251 +tp198252 +a(g198249 +g198251 +S'of' +p198253 +tp198254 +a(g198251 +g198253 +S'cities' +p198255 +tp198256 +a(g198253 +g198255 +S'and' +p198257 +tp198258 +a(g198255 +g198257 +S'country' +p198259 +tp198260 +a(g198257 +g198259 +S'estates.' +p198261 +tp198262 +a(g198259 +g198261 +S'he' +p198263 +tp198264 +a(g198261 +g198263 +S'worked' +p198265 +tp198266 +a(g198263 +g198265 +S'in' +p198267 +tp198268 +a(g198265 +g198267 +S'such' +p198269 +tp198270 +a(g198267 +g198269 +S'a' +p198271 +tp198272 +a(g198269 +g198271 +S'precise' +p198273 +tp198274 +a(g198271 +g198273 +S'style' +p198275 +tp198276 +a(g198273 +g198275 +S'that' +p198277 +tp198278 +a(g198275 +g198277 +S'it' +p198279 +tp198280 +a(g198277 +g198279 +S'seems' +p198281 +tp198282 +a(g198279 +g198281 +S'he' +p198283 +tp198284 +a(g198281 +g198283 +S'delineated' +p198285 +tp198286 +a(g198283 +g198285 +S'every' +p198287 +tp198288 +a(g198285 +g198287 +S'brick' +p198289 +tp198290 +a(g198287 +g198289 +S'and' +p198291 +tp198292 +a(g198289 +g198291 +S'course' +p198293 +tp198294 +a(g198291 +g198293 +S'of' +p198295 +tp198296 +a(g198293 +g198295 +S'mortar' +p198297 +tp198298 +a(g198295 +g198297 +S'on' +p198299 +tp198300 +a(g198297 +g198299 +S'his' +p198301 +tp198302 +a(g198299 +g198301 +S'buildings.' +p198303 +tp198304 +a(g198301 +g198303 +S'surprisingly,' +p198305 +tp198306 +a(g198303 +g198305 +S'despite' +p198307 +tp198308 +a(g198305 +g198307 +S'such' +p198309 +tp198310 +a(g198307 +g198309 +S'a' +p198311 +tp198312 +a(g198309 +g198311 +S'devotion' +p198313 +tp198314 +a(g198311 +g198313 +S'to' +p198315 +tp198316 +a(g198313 +g198315 +S'detail,' +p198317 +tp198318 +a(g198315 +g198317 +S'most' +p198319 +tp198320 +a(g198317 +g198319 +S'of' +p198321 +tp198322 +a(g198319 +g198321 +S'his' +p198323 +tp198324 +a(g198321 +g198323 +S'views' +p198325 +tp198326 +a(g198323 +g198325 +S'are' +p198327 +tp198328 +a(g198325 +g198327 +S'imaginary' +p198329 +tp198330 +a(g198327 +g198329 +S'creations.' +p198331 +tp198332 +a(g198329 +g198331 +S'like' +p198333 +tp198334 +a(g198331 +g198333 +S'his' +p198335 +tp198336 +a(g198333 +g198335 +S'compatriot' +p198337 +tp198338 +a(g198335 +g198337 +S'nicolas' +p198339 +tp198340 +a(g198337 +g198339 +S'poussin,' +p198341 +tp198342 +a(g198339 +g198341 +S'claude' +p198343 +tp198344 +a(g198341 +g198343 +S'lorrain' +p198345 +tp198346 +a(g198343 +g198345 +S'forged' +p198347 +tp198348 +a(g198345 +g198347 +S'his' +p198349 +tp198350 +a(g198347 +g198349 +S'career' +p198351 +tp198352 +a(g198349 +g198351 +S'in' +p198353 +tp198354 +a(g198351 +g198353 +S'rome.' +p198355 +tp198356 +a(g198353 +g198355 +S"claude's" +p198357 +tp198358 +a(g198355 +g198357 +S'vision' +p198359 +tp198360 +a(g198357 +g198359 +S'of' +p198361 +tp198362 +a(g198359 +g198361 +S'the' +p198363 +tp198364 +a(g198361 +g198363 +S'roman' +p198365 +tp198366 +a(g198363 +g198365 +S'countryside' +p198367 +tp198368 +a(g198365 +g198367 +S'is' +p198369 +tp198370 +a(g198367 +g198369 +S'grounded' +p198371 +tp198372 +a(g198369 +g198371 +S'in' +p198373 +tp198374 +a(g198371 +g198373 +S'a' +p198375 +tp198376 +a(g198373 +g198375 +S'careful' +p198377 +tp198378 +a(g198375 +g198377 +S'observation' +p198379 +tp198380 +a(g198377 +g198379 +S'of' +p198381 +tp198382 +a(g198379 +g198381 +S'nature,' +p198383 +tp198384 +a(g198381 +g198383 +S'but' +p198385 +tp198386 +a(g198383 +g198385 +S'he' +p198387 +tp198388 +a(g198385 +g198387 +S'transformed' +p198389 +tp198390 +a(g198387 +g198389 +S'the' +p198391 +tp198392 +a(g198389 +g198391 +S'landscape' +p198393 +tp198394 +a(g198391 +g198393 +S'into' +p198395 +tp198396 +a(g198393 +g198395 +S'a' +p198397 +tp198398 +a(g198395 +g198397 +S'timeless,' +p198399 +tp198400 +a(g198397 +g198399 +S'idealized' +p198401 +tp198402 +a(g198399 +g198401 +S'world' +p198403 +tp198404 +a(g198401 +g198403 +S'through' +p198405 +tp198406 +a(g198403 +g198405 +S'his' +p198407 +tp198408 +a(g198405 +g198407 +S'masterful' +p198409 +tp198410 +a(g198407 +g198409 +S'rendering' +p198411 +tp198412 +a(g198409 +g198411 +S'of' +p198413 +tp198414 +a(g198411 +g198413 +S'sunlight' +p198415 +tp198416 +a(g198413 +g198415 +S'and' +p198417 +tp198418 +a(g198415 +g198417 +S'strict' +p198419 +tp198420 +a(g198417 +g198419 +S'structuring' +p198421 +tp198422 +a(g198419 +g198421 +S'of' +p198423 +tp198424 +a(g198421 +g198423 +S'space.' +p198425 +tp198426 +a(g198423 +g198425 +S'the' +p198427 +tp198428 +a(g198425 +g198427 +S'judgment' +p198429 +tp198430 +a(g198427 +g198429 +S'of' +p198431 +tp198432 +a(g198429 +g198431 +S'paris' +p198433 +tp198434 +a(g198431 +g198433 +S'is' +p198435 +tp198436 +a(g198433 +g198435 +S'one' +p198437 +tp198438 +a(g198435 +g198437 +S'of' +p198439 +tp198440 +a(g198437 +g198439 +S'the' +p198441 +tp198442 +a(g198439 +g198441 +S'best' +p198443 +tp198444 +a(g198441 +g198443 +S'known' +p198445 +tp198446 +a(g198443 +g198445 +S'greek' +p198447 +tp198448 +a(g198445 +g198447 +S'myths.' +p198449 +tp198450 +a(g198447 +g198449 +S'the' +p198451 +tp198452 +a(g198449 +g198451 +S'goddess' +p198453 +tp198454 +a(g198451 +g198453 +S'strife' +p198455 +tp198456 +a(g198453 +g198455 +S'threw' +p198457 +tp198458 +a(g198455 +g198457 +S'a' +p198459 +tp198460 +a(g198457 +g198459 +S'golden' +p198461 +tp198462 +a(g198459 +g198461 +S'apple' +p198463 +tp198464 +a(g198461 +g198463 +S'marked' +p198465 +tp198466 +a(g198463 +g198465 +S'"to' +p198467 +tp198468 +a(g198465 +g198467 +S'the' +p198469 +tp198470 +a(g198467 +g198469 +S'fairest"' +p198471 +tp198472 +a(g198469 +g198471 +S'amidst' +p198473 +tp198474 +a(g198471 +g198473 +S'the' +p198475 +tp198476 +a(g198473 +g198475 +S'gods' +p198477 +tp198478 +a(g198475 +g198477 +S'and' +p198479 +tp198480 +a(g198477 +g198479 +S'jupiter' +p198481 +tp198482 +a(g198479 +g198481 +S'selected' +p198483 +tp198484 +a(g198481 +g198483 +S'paris,' +p198485 +tp198486 +a(g198483 +g198485 +S'a' +p198487 +tp198488 +a(g198485 +g198487 +S'trojan' +p198489 +tp198490 +a(g198487 +g198489 +S'shepherd,' +p198491 +tp198492 +a(g198489 +g198491 +S'to' +p198493 +tp198494 +a(g198491 +g198493 +S'award' +p198495 +tp198496 +a(g198493 +g198495 +S'it.' +p198497 +tp198498 +a(g198495 +g198497 +S'each' +p198499 +tp198500 +a(g198497 +g198499 +S'goddess' +p198501 +tp198502 +a(g198499 +g198501 +S'tried' +p198503 +tp198504 +a(g198501 +g198503 +S'to' +p198505 +tp198506 +a(g198503 +g198505 +S'influence' +p198507 +tp198508 +a(g198505 +g198507 +S'paris' +p198509 +tp198510 +a(g198507 +g198509 +S'with' +p198511 +tp198512 +a(g198509 +g198511 +S'a' +p198513 +tp198514 +a(g198511 +g198513 +S'special' +p198515 +tp198516 +a(g198513 +g198515 +S'gift.' +p198517 +tp198518 +a(g198515 +g198517 +S'minerva,' +p198519 +tp198520 +a(g198517 +g198519 +S'depicted' +p198521 +tp198522 +a(g198519 +g198521 +S'here' +p198523 +tp198524 +a(g198521 +g198523 +S'with' +p198525 +tp198526 +a(g198523 +g198525 +S'a' +p198527 +tp198528 +a(g198525 +g198527 +S'spear' +p198529 +tp198530 +a(g198527 +g198529 +S'at' +p198531 +tp198532 +a(g198529 +g198531 +S'her' +p198533 +tp198534 +a(g198531 +g198533 +S'side,' +p198535 +tp198536 +a(g198533 +g198535 +S'offered' +p198537 +tp198538 +a(g198535 +g198537 +S'him' +p198539 +tp198540 +a(g198537 +g198539 +S'victory' +p198541 +tp198542 +a(g198539 +g198541 +S'in' +p198543 +tp198544 +a(g198541 +g198543 +S'war.' +p198545 +tp198546 +a(g198543 +g198545 +S'juno,' +p198547 +tp198548 +a(g198545 +g198547 +S'attended' +p198549 +tp198550 +a(g198547 +g198549 +S'by' +p198551 +tp198552 +a(g198549 +g198551 +S'her' +p198553 +tp198554 +a(g198551 +g198553 +S'regal' +p198555 +tp198556 +a(g198553 +g198555 +S'peacock,' +p198557 +tp198558 +a(g198555 +g198557 +S'offered' +p198559 +tp198560 +a(g198557 +g198559 +S'to' +p198561 +tp198562 +a(g198559 +g198561 +S'make' +p198563 +tp198564 +a(g198561 +g198563 +S'him' +p198565 +tp198566 +a(g198563 +g198565 +S'ruler' +p198567 +tp198568 +a(g198565 +g198567 +S'of' +p198569 +tp198570 +a(g198567 +g198569 +S'the' +p198571 +tp198572 +a(g198569 +g198571 +S'world,' +p198573 +tp198574 +a(g198571 +g198573 +S'while' +p198575 +tp198576 +a(g198573 +g198575 +S'venus,' +p198577 +tp198578 +a(g198575 +g198577 +S'accompanied' +p198579 +tp198580 +a(g198577 +g198579 +S'by' +p198581 +tp198582 +a(g198579 +g198581 +S'cupid,' +p198583 +tp198584 +a(g198581 +g198583 +S'proposed' +p198585 +tp198586 +a(g198583 +g198585 +S'the' +p198587 +tp198588 +a(g198585 +g198587 +S'most' +p198589 +tp198590 +a(g198587 +g198589 +S'beautiful' +p198591 +tp198592 +a(g198589 +g198591 +S'woman' +p198593 +tp198594 +a(g198591 +g198593 +S'in' +p198595 +tp198596 +a(g198593 +g198595 +S'the' +p198597 +tp198598 +a(g198595 +g198597 +S'world.' +p198599 +tp198600 +a(g198597 +g198599 +S'paris' +p198601 +tp198602 +a(g198599 +g198601 +S'chose' +p198603 +tp198604 +a(g198601 +g198603 +S'venus' +p198605 +tp198606 +a(g198603 +g198605 +S'who' +p198607 +tp198608 +a(g198605 +g198607 +S'then' +p198609 +tp198610 +a(g198607 +g198609 +S'led' +p198611 +tp198612 +a(g198609 +g198611 +S'him' +p198613 +tp198614 +a(g198611 +g198613 +S'to' +p198615 +tp198616 +a(g198613 +g198615 +S'helen' +p198617 +tp198618 +a(g198615 +g198617 +S'of' +p198619 +tp198620 +a(g198617 +g198619 +S'sparta,' +p198621 +tp198622 +a(g198619 +g198621 +S'which' +p198623 +tp198624 +a(g198621 +g198623 +S'precipitated' +p198625 +tp198626 +a(g198623 +g198625 +S'the' +p198627 +tp198628 +a(g198625 +g198627 +S'trojan' +p198629 +tp198630 +a(g198627 +g198629 +S'war.' +p198631 +tp198632 +a(g198629 +g198631 +S'although' +p198633 +tp198634 +a(g198631 +g198633 +S'the' +p198635 +tp198636 +a(g198633 +g198635 +S'subject' +p198637 +tp198638 +a(g198635 +g198637 +S'is' +p198639 +tp198640 +a(g198637 +g198639 +S'suitable' +p198641 +tp198642 +a(g198639 +g198641 +S'to' +p198643 +tp198644 +a(g198641 +g198643 +S'history' +p198645 +tp198646 +a(g198643 +g198645 +S'painting,' +p198647 +tp198648 +a(g198645 +g198647 +S'the' +p198649 +tp198650 +a(g198647 +g198649 +S'figures' +p198651 +tp198652 +a(g198649 +g198651 +S'are' +p198653 +tp198654 +a(g198651 +g198653 +S'relegated' +p198655 +tp198656 +a(g198653 +g198655 +S'to' +p198657 +tp198658 +a(g198655 +g198657 +S'the' +p198659 +tp198660 +a(g198657 +g198659 +S'left-hand' +p198661 +tp198662 +a(g198659 +g198661 +S'corner' +p198663 +tp198664 +a(g198661 +g198663 +S'of' +p198665 +tp198666 +a(g198663 +g198665 +S'the' +p198667 +tp198668 +a(g198665 +g198667 +S'composition,' +p198669 +tp198670 +a(g198667 +g198669 +S'making' +p198671 +tp198672 +a(g198669 +g198671 +S'it' +p198673 +tp198674 +a(g198671 +g198673 +S'clear' +p198675 +tp198676 +a(g198673 +g198675 +S'that' +p198677 +tp198678 +a(g198675 +g198677 +S"claude's" +p198679 +tp198680 +a(g198677 +g198679 +S'real' +p198681 +tp198682 +a(g198679 +g198681 +S'interest' +p198683 +tp198684 +a(g198681 +g198683 +S'was' +p198685 +tp198686 +a(g198683 +g198685 +S'the' +p198687 +tp198688 +a(g198685 +g198687 +S'landscape.' +p198689 +tp198690 +a(g198687 +g198689 +S'the' +p198691 +tp198692 +a(g198689 +g198691 +S"viewer's" +p198693 +tp198694 +a(g198691 +g198693 +S'eye' +p198695 +tp198696 +a(g198693 +g198695 +S'slowly' +p198697 +tp198698 +a(g198695 +g198697 +S'moves' +p198699 +tp198700 +a(g198697 +g198699 +S'from' +p198701 +tp198702 +a(g198699 +g198701 +S'the' +p198703 +tp198704 +a(g198701 +g198703 +S'tree' +p198705 +tp198706 +a(g198703 +g198705 +S'in' +p198707 +tp198708 +a(g198705 +g198707 +S'the' +p198709 +tp198710 +a(g198707 +g198709 +S'extreme' +p198711 +tp198712 +a(g198709 +g198711 +S'right' +p198713 +tp198714 +a(g198711 +g198713 +S'foreground' +p198715 +tp198716 +a(g198713 +g198715 +S'to' +p198717 +tp198718 +a(g198715 +g198717 +S'the' +p198719 +tp198720 +a(g198717 +g198719 +S'massive' +p198721 +tp198722 +a(g198719 +g198721 +S'green' +p198723 +tp198724 +a(g198721 +g198723 +S'trees' +p198725 +tp198726 +a(g198723 +g198725 +S'in' +p198727 +tp198728 +a(g198725 +g198727 +S'the' +p198729 +tp198730 +a(g198727 +g198729 +S'middle' +p198731 +tp198732 +a(g198729 +g198731 +S'ground.' +p198733 +tp198734 +a(g198731 +g198733 +S'a' +p198735 +tp198736 +a(g198733 +g198735 +S'winding' +p198737 +tp198738 +a(g198735 +g198737 +S'river' +p198739 +tp198740 +a(g198737 +g198739 +S'leads' +p198741 +tp198742 +a(g198739 +g198741 +S'through' +p198743 +tp198744 +a(g198741 +g198743 +S'the' +p198745 +tp198746 +a(g198743 +g198745 +S'background' +p198747 +tp198748 +a(g198745 +g198747 +S'until' +p198749 +tp198750 +a(g198747 +g198749 +S'the' +p198751 +tp198752 +a(g198749 +g198751 +S'mountains' +p198753 +tp198754 +a(g198751 +g198753 +S'disappear' +p198755 +tp198756 +a(g198753 +g198755 +S'in' +p198757 +tp198758 +a(g198755 +g198757 +S'an' +p198759 +tp198760 +a(g198757 +g198759 +S'atmospheric' +p198761 +tp198762 +a(g198759 +g198761 +S'haze.' +p198763 +tp198764 +a(g198761 +g198763 +S'like' +p198765 +tp198766 +a(g198763 +g198765 +S'poussin,' +p198767 +tp198768 +a(g198765 +g198767 +S'claude' +p198769 +tp198770 +a(g198767 +g198769 +S'has' +p198771 +tp198772 +a(g198769 +g198771 +S'ordered' +p198773 +tp198774 +a(g198771 +g198773 +S'nature' +p198775 +tp198776 +a(g198773 +g198775 +S'--' +p198777 +tp198778 +a(g198775 +g198777 +S'here' +p198779 +tp198780 +a(g198777 +g198779 +S'through' +p198781 +tp198782 +a(g198779 +g198781 +S'parallel' +p198783 +tp198784 +a(g198781 +g198783 +S'interlocked' +p198785 +tp198786 +a(g198783 +g198785 +S'planes' +p198787 +tp198788 +a(g198785 +g198787 +S'of' +p198789 +tp198790 +a(g198787 +g198789 +S'space.' +p198791 +tp198792 +a(g198789 +g198791 +S'inspired' +p198793 +tp198794 +a(g198791 +g198793 +S'by' +p198795 +tp198796 +a(g198793 +g198795 +S'a' +p198797 +tp198798 +a(g198795 +g198797 +S'block' +p198799 +tp198800 +a(g198797 +g198799 +S'of' +p198801 +tp198802 +a(g198799 +g198801 +S'greek' +p198803 +tp198804 +a(g198801 +g198803 +S'marble' +p198805 +tp198806 +a(g198803 +g198805 +S'pulled' +p198807 +tp198808 +a(g198805 +g198807 +S'from' +p198809 +tp198810 +a(g198807 +g198809 +S'the' +p198811 +tp198812 +a(g198809 +g198811 +S'tiber' +p198813 +tp198814 +a(g198811 +g198813 +S'river' +p198815 +tp198816 +a(g198813 +g198815 +S'near' +p198817 +tp198818 +a(g198815 +g198817 +S'his' +p198819 +tp198820 +a(g198817 +g198819 +S'italian' +p198821 +tp198822 +a(g198819 +g198821 +S'summer' +p198823 +tp198824 +a(g198821 +g198823 +S'home,' +p198825 +tp198826 +a(g198823 +g198825 +S'american' +p198827 +tp198828 +a(g198825 +g198827 +S'maurice' +p198829 +tp198830 +a(g198827 +g198829 +S'sterne' +p198831 +tp198832 +a(g198829 +g198831 +S'allowed' +p198833 +tp198834 +a(g198831 +g198833 +S'the' +p198835 +tp198836 +a(g198833 +g198835 +S"marble's" +p198837 +tp198838 +a(g198835 +g198837 +S'size' +p198839 +tp198840 +a(g198837 +g198839 +S'and' +p198841 +tp198842 +a(g198839 +g198841 +S'shape' +p198843 +tp198844 +a(g198841 +g198843 +S'to' +p198845 +tp198846 +a(g198843 +g198845 +S'determine' +p198847 +tp198848 +a(g198845 +g198847 +S'the' +p198849 +tp198850 +a(g198847 +g198849 +S'pose' +p198851 +tp198852 +a(g198849 +g198851 +S'and' +p198853 +tp198854 +a(g198851 +g198853 +S'gestures' +p198855 +tp198856 +a(g198853 +g198855 +S'of' +p198857 +tp198858 +a(g198855 +g198857 +S'sterne' +p198859 +tp198860 +a(g198857 +g198859 +S'sought,' +p198861 +tp198862 +a(g198859 +g198861 +S'in' +p198863 +tp198864 +a(g198861 +g198863 +S'both' +p198865 +tp198866 +a(g198863 +g198865 +S'painting' +p198867 +tp198868 +a(g198865 +g198867 +S'and' +p198869 +tp198870 +a(g198867 +g198869 +S'sculpture,' +p198871 +tp198872 +a(g198869 +g198871 +S'to' +p198873 +tp198874 +a(g198871 +g198873 +S'combine' +p198875 +tp198876 +a(g198873 +g198875 +S'the' +p198877 +tp198878 +a(g198875 +g198877 +S'lessons' +p198879 +tp198880 +a(g198877 +g198879 +S'of' +p198881 +tp198882 +a(g198879 +g198881 +S'tradition' +p198883 +tp198884 +a(g198881 +g198883 +S'with' +p198885 +tp198886 +a(g198883 +g198885 +S'the' +p198887 +tp198888 +a(g198885 +g198887 +S'contemporary' +p198889 +tp198890 +a(g198887 +g198889 +S'artistic' +p198891 +tp198892 +a(g198889 +g198891 +S'environment' +p198893 +tp198894 +a(g198891 +g198893 +S'that' +p198895 +tp198896 +a(g198893 +g198895 +S'surrounded' +p198897 +tp198898 +a(g198895 +g198897 +S'him.' +p198899 +tp198900 +a(g198897 +g198899 +S'with' +p198901 +tp198902 +a(g198899 +g198901 +S'his' +p198903 +tp198904 +a(g198901 +g198903 +S'choice' +p198905 +tp198906 +a(g198903 +g198905 +S'of' +p198907 +tp198908 +a(g198905 +g198907 +S'subject' +p198909 +tp198910 +a(g198907 +g198909 +S'and' +p198911 +tp198912 +a(g198909 +g198911 +S'material,' +p198913 +tp198914 +a(g198911 +g198913 +S'and' +p198915 +tp198916 +a(g198913 +g198915 +S'by' +p198917 +tp198918 +a(g198915 +g198917 +S'refining' +p198919 +tp198920 +a(g198917 +g198919 +S'and' +p198921 +tp198922 +a(g198919 +g198921 +S'reducing' +p198923 +tp198924 +a(g198921 +g198923 +S'the' +p198925 +tp198926 +a(g198923 +g198925 +S'image' +p198927 +tp198928 +a(g198925 +g198927 +S'to' +p198929 +tp198930 +a(g198927 +g198929 +S'its' +p198931 +tp198932 +a(g198929 +g198931 +S'most' +p198933 +tp198934 +a(g198931 +g198933 +S'concentrated,' +p198935 +tp198936 +a(g198933 +g198935 +S'expressive' +p198937 +tp198938 +a(g198935 +g198937 +S'form,' +p198939 +tp198940 +a(g198937 +g198939 +S'sterne' +p198941 +tp198942 +a(g198939 +g198941 +S'refers' +p198943 +tp198944 +a(g198941 +g198943 +S'to' +p198945 +tp198946 +a(g198943 +g198945 +S'archaic' +p198947 +tp198948 +a(g198945 +g198947 +S'greek' +p198949 +tp198950 +a(g198947 +g198949 +S'sculpture.' +p198951 +tp198952 +a(g198949 +g198951 +S'but' +p198953 +tp198954 +a(g198951 +g198953 +S'rather' +p198955 +tp198956 +a(g198953 +g198955 +S'than' +p198957 +tp198958 +a(g198955 +g198957 +S'polish' +p198959 +tp198960 +a(g198957 +g198959 +S'the' +p198961 +tp198962 +a(g198959 +g198961 +S'stone' +p198963 +tp198964 +a(g198961 +g198963 +S'to' +p198965 +tp198966 +a(g198963 +g198965 +S'imitate' +p198967 +tp198968 +a(g198965 +g198967 +S'skin' +p198969 +tp198970 +a(g198967 +g198969 +S'or' +p198971 +tp198972 +a(g198969 +g198971 +S'use' +p198973 +tp198974 +a(g198971 +g198973 +S'a' +p198975 +tp198976 +a(g198973 +g198975 +S'drill' +p198977 +tp198978 +a(g198975 +g198977 +S'to' +p198979 +tp198980 +a(g198977 +g198979 +S'fashion' +p198981 +tp198982 +a(g198979 +g198981 +S'locks' +p198983 +tp198984 +a(g198981 +g198983 +S'of' +p198985 +tp198986 +a(g198983 +g198985 +S'hair' +p198987 +tp198988 +a(g198985 +g198987 +S'(as' +p198989 +tp198990 +a(g198987 +g198989 +S'tradition' +p198991 +tp198992 +a(g198989 +g198991 +S'may' +p198993 +tp198994 +a(g198991 +g198993 +S'have' +p198995 +tp198996 +a(g198993 +g198995 +S'dictated),' +p198997 +tp198998 +a(g198995 +g198997 +S'sterne' +p198999 +tp199000 +a(g198997 +g198999 +S'preferred' +p199001 +tp199002 +a(g198999 +g199001 +S'the' +p199003 +tp199004 +a(g199001 +g199003 +S'texture' +p199005 +tp199006 +a(g199003 +g199005 +S'of' +p199007 +tp199008 +a(g199005 +g199007 +S'the' +p199009 +tp199010 +a(g199007 +g199009 +S'natural' +p199011 +tp199012 +a(g199009 +g199011 +S'marble.' +p199013 +tp199014 +a(g199011 +g199013 +S'he' +p199015 +tp199016 +a(g199013 +g199015 +S'used' +p199017 +tp199018 +a(g199015 +g199017 +S'few' +p199019 +tp199020 +a(g199017 +g199019 +S'finishing' +p199021 +tp199022 +a(g199019 +g199021 +S'tools' +p199023 +tp199024 +a(g199021 +g199023 +S'and,' +p199025 +tp199026 +a(g199023 +g199025 +S'with' +p199027 +tp199028 +a(g199025 +g199027 +S'the' +p199029 +tp199030 +a(g199027 +g199029 +S'exception' +p199031 +tp199032 +a(g199029 +g199031 +S'of' +p199033 +tp199034 +a(g199031 +g199033 +S'the' +p199035 +tp199036 +a(g199033 +g199035 +S'roughly' +p199037 +tp199038 +a(g199035 +g199037 +S'finished' +p199039 +tp199040 +a(g199037 +g199039 +S'base,' +p199041 +tp199042 +a(g199039 +g199041 +S'achieved' +p199043 +tp199044 +a(g199041 +g199043 +S'a' +p199045 +tp199046 +a(g199043 +g199045 +S'consistent' +p199047 +tp199048 +a(g199045 +g199047 +S'texture' +p199049 +tp199050 +a(g199047 +g199049 +S'for' +p199051 +tp199052 +a(g199049 +g199051 +S'the' +p199053 +tp199054 +a(g199051 +g199053 +S'figure.' +p199055 +tp199056 +a(g199053 +g199055 +S'sterne' +p199057 +tp199058 +a(g199055 +g199057 +S'began' +p199059 +tp199060 +a(g199057 +g199059 +S'his' +p199061 +tp199062 +a(g199059 +g199061 +S'career' +p199063 +tp199064 +a(g199061 +g199063 +S'as' +p199065 +tp199066 +a(g199063 +g199065 +S'a' +p199067 +tp199068 +a(g199065 +g199067 +S'draftsman' +p199069 +tp199070 +a(g199067 +g199069 +S'and' +p199071 +tp199072 +a(g199069 +g199071 +S'painter.' +p199073 +tp199074 +a(g199071 +g199073 +S'from' +p199075 +tp199076 +a(g199073 +g199075 +S'the' +p199077 +tp199078 +a(g199075 +g199077 +S'beginning,' +p199079 +tp199080 +a(g199077 +g199079 +S'critics' +p199081 +tp199082 +a(g199079 +g199081 +S'recognized' +p199083 +tp199084 +a(g199081 +g199083 +S'his' +p199085 +tp199086 +a(g199083 +g199085 +S'deft' +p199087 +tp199088 +a(g199085 +g199087 +S'use' +p199089 +tp199090 +a(g199087 +g199089 +S'of' +p199091 +tp199092 +a(g199089 +g199091 +S'line' +p199093 +tp199094 +a(g199091 +g199093 +S'to' +p199095 +tp199096 +a(g199093 +g199095 +S'describe' +p199097 +tp199098 +a(g199095 +g199097 +S'the' +p199099 +tp199100 +a(g199097 +g199099 +S'weight' +p199101 +tp199102 +a(g199099 +g199101 +S'and' +p199103 +tp199104 +a(g199101 +g199103 +S'volume' +p199105 +tp199106 +a(g199103 +g199105 +S'of' +p199107 +tp199108 +a(g199105 +g199107 +S'objects' +p199109 +tp199110 +a(g199107 +g199109 +S'in' +p199111 +tp199112 +a(g199109 +g199111 +S'his' +p199113 +tp199114 +a(g199111 +g199113 +S'two-dimensional' +p199115 +tp199116 +a(g199113 +g199115 +S'work.' +p199117 +tp199118 +a(g199115 +g199117 +S""[sterne's]" +p199119 +tp199120 +a(g199117 +g199119 +S'pictures' +p199121 +tp199122 +a(g199119 +g199121 +S'convey' +p199123 +tp199124 +a(g199121 +g199123 +S'something' +p199125 +tp199126 +a(g199123 +g199125 +S'of' +p199127 +tp199128 +a(g199125 +g199127 +S'the' +p199129 +tp199130 +a(g199127 +g199129 +S'mass' +p199131 +tp199132 +a(g199129 +g199131 +S'and' +p199133 +tp199134 +a(g199131 +g199133 +S'weight' +p199135 +tp199136 +a(g199133 +g199135 +S'which' +p199137 +tp199138 +a(g199135 +g199137 +S'sculpture' +p199139 +tp199140 +a(g199137 +g199139 +S'conveys,"' +p199141 +tp199142 +a(g199139 +g199141 +S'wrote' +p199143 +tp199144 +a(g199141 +g199143 +S'one' +p199145 +tp199146 +a(g199143 +g199145 +S'scholar.' +p199147 +tp199148 +a(g199145 +g199147 +S'in' +p199149 +tp199150 +a(g199147 +g199149 +S'greece' +p199151 +tp199152 +a(g199149 +g199151 +S'in' +p199153 +tp199154 +a(g199151 +g199153 +S'1908,' +p199155 +tp199156 +a(g199153 +g199155 +S'he' +p199157 +tp199158 +a(g199155 +g199157 +S'studied' +p199159 +tp199160 +a(g199157 +g199159 +S'archaic' +p199161 +tp199162 +a(g199159 +g199161 +S'greek' +p199163 +tp199164 +a(g199161 +g199163 +S'statues' +p199165 +tp199166 +a(g199163 +g199165 +S'and' +p199167 +tp199168 +a(g199165 +g199167 +S'was' +p199169 +tp199170 +a(g199167 +g199169 +S'inspired' +p199171 +tp199172 +a(g199169 +g199171 +S'to' +p199173 +tp199174 +a(g199171 +g199173 +S'carve' +p199175 +tp199176 +a(g199173 +g199175 +S'his' +p199177 +tp199178 +a(g199175 +g199177 +S'first' +p199179 +tp199180 +a(g199177 +g199179 +S'sculpture' +p199181 +tp199182 +a(g199179 +g199181 +S'in' +p199183 +tp199184 +a(g199181 +g199183 +S'stone.' +p199185 +tp199186 +a(g199183 +g199185 +S'several' +p199187 +tp199188 +a(g199185 +g199187 +S'years' +p199189 +tp199190 +a(g199187 +g199189 +S'later,' +p199191 +tp199192 +a(g199189 +g199191 +S'he' +p199193 +tp199194 +a(g199191 +g199193 +S'traveled' +p199195 +tp199196 +a(g199193 +g199195 +S'to' +p199197 +tp199198 +a(g199195 +g199197 +S'bali' +p199199 +tp199200 +a(g199197 +g199199 +S'to' +p199201 +tp199202 +a(g199199 +g199201 +S'paint' +p199203 +tp199204 +a(g199201 +g199203 +S'and' +p199205 +tp199206 +a(g199203 +g199205 +S'sketch;' +p199207 +tp199208 +a(g199205 +g199207 +S'it' +p199209 +tp199210 +a(g199207 +g199209 +S'is' +p199211 +tp199212 +a(g199209 +g199211 +S'thought' +p199213 +tp199214 +a(g199211 +g199213 +S'he' +p199215 +tp199216 +a(g199213 +g199215 +S'based' +p199217 +tp199218 +a(g199215 +g199217 +S'the' +p199219 +tp199220 +a(g199217 +g199219 +S'city' +p199221 +tp199222 +a(g199219 +g199221 +S'from' +p199223 +tp199224 +a(g199221 +g199223 +S'greenwich' +p199225 +tp199226 +a(g199223 +g199225 +S'village' +p199227 +tp199228 +a(g199225 +g199227 +S'the' +p199229 +tp199230 +a(g199227 +g199229 +S"artist's" +p199231 +tp199232 +a(g199229 +g199231 +S'ambiguous' +p199233 +tp199234 +a(g199231 +g199233 +S'reference' +p199235 +tp199236 +a(g199233 +g199235 +S'to' +p199237 +tp199238 +a(g199235 +g199237 +S'"moonshine"' +p199239 +tp199240 +a(g199237 +g199239 +S'on' +p199241 +tp199242 +a(g199239 +g199241 +S'the' +p199243 +tp199244 +a(g199241 +g199243 +S'billboard' +p199245 +tp199246 +a(g199243 +g199245 +S'in' +p199247 +tp199248 +a(g199245 +g199247 +S'the' +p199249 +tp199250 +a(g199247 +g199249 +S'left' +p199251 +tp199252 +a(g199249 +g199251 +S'foreground' +p199253 +tp199254 +a(g199251 +g199253 +S'both' +p199255 +tp199256 +a(g199253 +g199255 +S'documents' +p199257 +tp199258 +a(g199255 +g199257 +S'the' +p199259 +tp199260 +a(g199257 +g199259 +S"city's" +p199261 +tp199262 +a(g199259 +g199261 +S'commercialization' +p199263 +tp199264 +a(g199261 +g199263 +S'and' +p199265 +tp199266 +a(g199263 +g199265 +S'lends' +p199267 +tp199268 +a(g199265 +g199267 +S'a' +p199269 +tp199270 +a(g199267 +g199269 +S'poetic' +p199271 +tp199272 +a(g199269 +g199271 +S'aura' +p199273 +tp199274 +a(g199271 +g199273 +S'to' +p199275 +tp199276 +a(g199273 +g199275 +S'the' +p199277 +tp199278 +a(g199275 +g199277 +S'scene.' +p199279 +tp199280 +a(g199277 +g199279 +S'this' +p199281 +tp199282 +a(g199279 +g199281 +S'urban' +p199283 +tp199284 +a(g199281 +g199283 +S'imagery' +p199285 +tp199286 +a(g199283 +g199285 +S'may' +p199287 +tp199288 +a(g199285 +g199287 +S'be' +p199289 +tp199290 +a(g199287 +g199289 +S'seen' +p199291 +tp199292 +a(g199289 +g199291 +S'as' +p199293 +tp199294 +a(g199291 +g199293 +S'a' +p199295 +tp199296 +a(g199293 +g199295 +S'precursor' +p199297 +tp199298 +a(g199295 +g199297 +S'to' +p199299 +tp199300 +a(g199297 +g199299 +S'american' +p199301 +tp199302 +a(g199299 +g199301 +S'art' +p199303 +tp199304 +a(g199301 +g199303 +S'of' +p199305 +tp199306 +a(g199303 +g199305 +S'the' +p199307 +tp199308 +a(g199305 +g199307 +S'1960s,' +p199309 +tp199310 +a(g199307 +g199309 +S'when' +p199311 +tp199312 +a(g199309 +g199311 +S'pop' +p199313 +tp199314 +a(g199311 +g199313 +S'artists' +p199315 +tp199316 +a(g199313 +g199315 +S'appropriated' +p199317 +tp199318 +a(g199315 +g199317 +S'advertising' +p199319 +tp199320 +a(g199317 +g199319 +S'motifs' +p199321 +tp199322 +a(g199319 +g199321 +S'and' +p199323 +tp199324 +a(g199321 +g199323 +S'photo-realists' +p199325 +tp199326 +a(g199323 +g199325 +S'immortalized' +p199327 +tp199328 +a(g199325 +g199327 +S'the' +p199329 +tp199330 +a(g199327 +g199329 +S'architectural' +p199331 +tp199332 +a(g199329 +g199331 +S'richness' +p199333 +tp199334 +a(g199331 +g199333 +S'of' +p199335 +tp199336 +a(g199333 +g199335 +S'new' +p199337 +tp199338 +a(g199335 +g199337 +S'york.' +p199339 +tp199340 +a(g199337 +g199339 +S'imposing' +p199341 +tp199342 +a(g199339 +g199341 +S'in' +p199343 +tp199344 +a(g199341 +g199343 +S'size' +p199345 +tp199346 +a(g199343 +g199345 +S'and' +p199347 +tp199348 +a(g199345 +g199347 +S'presentation,' +p199349 +tp199350 +a(g199347 +g199349 +S'this' +p199351 +tp199352 +a(g199349 +g199351 +S'portrait' +p199353 +tp199354 +a(g199351 +g199353 +S'of' +p199355 +tp199356 +a(g199353 +g199355 +S'cézanne\xe2\x80\x99s' +p199357 +tp199358 +a(g199355 +g199357 +S'father' +p199359 +tp199360 +a(g199357 +g199359 +S'is' +p199361 +tp199362 +a(g199359 +g199361 +S'arguably' +p199363 +tp199364 +a(g199361 +g199363 +S'the' +p199365 +tp199366 +a(g199363 +g199365 +S'key' +p199367 +tp199368 +a(g199365 +g199367 +S'work' +p199369 +tp199370 +a(g199367 +g199369 +S'from' +p199371 +tp199372 +a(g199369 +g199371 +S'the' +p199373 +tp199374 +a(g199371 +g199373 +S'artist\xe2\x80\x99s' +p199375 +tp199376 +a(g199373 +g199375 +S'early' +p199377 +tp199378 +a(g199375 +g199377 +S'period.' +p199379 +tp199380 +a(g199377 +g199379 +S'cézanne' +p199381 +tp199382 +a(g199379 +g199381 +S'executed' +p199383 +tp199384 +a(g199381 +g199383 +S'it' +p199385 +tp199386 +a(g199383 +g199385 +S'partly' +p199387 +tp199388 +a(g199385 +g199387 +S'with' +p199389 +tp199390 +a(g199387 +g199389 +S'a' +p199391 +tp199392 +a(g199389 +g199391 +S'palette' +p199393 +tp199394 +a(g199391 +g199393 +S'knife,' +p199395 +tp199396 +a(g199393 +g199395 +S'employing' +p199397 +tp199398 +a(g199395 +g199397 +S'the' +p199399 +tp199400 +a(g199397 +g199399 +S'vigorous' +p199401 +tp199402 +a(g199399 +g199401 +S'handling' +p199403 +tp199404 +a(g199401 +g199403 +S'and' +p199405 +tp199406 +a(g199403 +g199405 +S'darkened' +p199407 +tp199408 +a(g199405 +g199407 +S'palette' +p199409 +tp199410 +a(g199407 +g199409 +S'that' +p199411 +tp199412 +a(g199409 +g199411 +S'typifies' +p199413 +tp199414 +a(g199411 +g199413 +S'his' +p199415 +tp199416 +a(g199413 +g199415 +S'painting' +p199417 +tp199418 +a(g199415 +g199417 +S'from' +p199419 +tp199420 +a(g199417 +g199419 +S'the' +p199421 +tp199422 +a(g199419 +g199421 +S'1860s.' +p199423 +tp199424 +a(g199421 +g199423 +S'his' +p199425 +tp199426 +a(g199423 +g199425 +S'subject,' +p199427 +tp199428 +a(g199425 +g199427 +S'louis-' +p199429 +tp199430 +a(g199427 +g199429 +S'auguste' +p199431 +tp199432 +a(g199429 +g199431 +S'cézanne,' +p199433 +tp199434 +a(g199431 +g199433 +S'was' +p199435 +tp199436 +a(g199433 +g199435 +S'one' +p199437 +tp199438 +a(g199435 +g199437 +S'of' +p199439 +tp199440 +a(g199437 +g199439 +S'the' +p199441 +tp199442 +a(g199439 +g199441 +S'wealthiest' +p199443 +tp199444 +a(g199441 +g199443 +S'men' +p199445 +tp199446 +a(g199443 +g199445 +S'in' +p199447 +tp199448 +a(g199445 +g199447 +S'aix-en-provence,' +p199449 +tp199450 +a(g199447 +g199449 +S'a' +p199451 +tp199452 +a(g199449 +g199451 +S'businessman' +p199453 +tp199454 +a(g199451 +g199453 +S'who' +p199455 +tp199456 +a(g199453 +g199455 +S'founded' +p199457 +tp199458 +a(g199455 +g199457 +S'a' +p199459 +tp199460 +a(g199457 +g199459 +S'successful' +p199461 +tp199462 +a(g199459 +g199461 +S'bank' +p199463 +tp199464 +a(g199461 +g199463 +S'in' +p199465 +tp199466 +a(g199463 +g199465 +S'1848.' +p199467 +tp199468 +a(g199465 +g199467 +S'he' +p199469 +tp199470 +a(g199467 +g199469 +S'provided' +p199471 +tp199472 +a(g199469 +g199471 +S'his' +p199473 +tp199474 +a(g199471 +g199473 +S'only' +p199475 +tp199476 +a(g199473 +g199475 +S'son' +p199477 +tp199478 +a(g199475 +g199477 +S'with' +p199479 +tp199480 +a(g199477 +g199479 +S'an' +p199481 +tp199482 +a(g199479 +g199481 +S'excellent' +p199483 +tp199484 +a(g199481 +g199483 +S'education,' +p199485 +tp199486 +a(g199483 +g199485 +S'envisioned' +p199487 +tp199488 +a(g199485 +g199487 +S'him' +p199489 +tp199490 +a(g199487 +g199489 +S'as' +p199491 +tp199492 +a(g199489 +g199491 +S'a' +p199493 +tp199494 +a(g199491 +g199493 +S'lawyer' +p199495 +tp199496 +a(g199493 +g199495 +S'and' +p199497 +tp199498 +a(g199495 +g199497 +S'banker,' +p199499 +tp199500 +a(g199497 +g199499 +S'and' +p199501 +tp199502 +a(g199499 +g199501 +S'pressured' +p199503 +tp199504 +a(g199501 +g199503 +S'him' +p199505 +tp199506 +a(g199503 +g199505 +S'into' +p199507 +tp199508 +a(g199505 +g199507 +S'entering' +p199509 +tp199510 +a(g199507 +g199509 +S'law' +p199511 +tp199512 +a(g199509 +g199511 +S'school' +p199513 +tp199514 +a(g199511 +g199513 +S'in' +p199515 +tp199516 +a(g199513 +g199515 +S'aix' +p199517 +tp199518 +a(g199515 +g199517 +S'in' +p199519 +tp199520 +a(g199517 +g199519 +S'1859.' +p199521 +tp199522 +a(g199519 +g199521 +S'cézanne,' +p199523 +tp199524 +a(g199521 +g199523 +S'struggling' +p199525 +tp199526 +a(g199523 +g199525 +S'to' +p199527 +tp199528 +a(g199525 +g199527 +S'assert' +p199529 +tp199530 +a(g199527 +g199529 +S'his' +p199531 +tp199532 +a(g199529 +g199531 +S'own' +p199533 +tp199534 +a(g199531 +g199533 +S'ambitions,' +p199535 +tp199536 +a(g199533 +g199535 +S'spent' +p199537 +tp199538 +a(g199535 +g199537 +S'a' +p199539 +tp199540 +a(g199537 +g199539 +S'little' +p199541 +tp199542 +a(g199539 +g199541 +S'over' +p199543 +tp199544 +a(g199541 +g199543 +S'a' +p199545 +tp199546 +a(g199543 +g199545 +S'year' +p199547 +tp199548 +a(g199545 +g199547 +S'unhappily' +p199549 +tp199550 +a(g199547 +g199549 +S'enrolled' +p199551 +tp199552 +a(g199549 +g199551 +S'in' +p199553 +tp199554 +a(g199551 +g199553 +S'classes' +p199555 +tp199556 +a(g199553 +g199555 +S'before' +p199557 +tp199558 +a(g199555 +g199557 +S'dropping' +p199559 +tp199560 +a(g199557 +g199559 +S'out' +p199561 +tp199562 +a(g199559 +g199561 +S'to' +p199563 +tp199564 +a(g199561 +g199563 +S'become' +p199565 +tp199566 +a(g199563 +g199565 +S'a' +p199567 +tp199568 +a(g199565 +g199567 +S'painter.' +p199569 +tp199570 +a(g199567 +g199569 +S'he' +p199571 +tp199572 +a(g199569 +g199571 +S'convinced' +p199573 +tp199574 +a(g199571 +g199573 +S'his' +p199575 +tp199576 +a(g199573 +g199575 +S'father' +p199577 +tp199578 +a(g199575 +g199577 +S'to' +p199579 +tp199580 +a(g199577 +g199579 +S'let' +p199581 +tp199582 +a(g199579 +g199581 +S'him' +p199583 +tp199584 +a(g199581 +g199583 +S'go' +p199585 +tp199586 +a(g199583 +g199585 +S'to' +p199587 +tp199588 +a(g199585 +g199587 +S'paris,' +p199589 +tp199590 +a(g199587 +g199589 +S'where' +p199591 +tp199592 +a(g199589 +g199591 +S'he' +p199593 +tp199594 +a(g199591 +g199593 +S'studied' +p199595 +tp199596 +a(g199593 +g199595 +S'the' +p199597 +tp199598 +a(g199595 +g199597 +S'old' +p199599 +tp199600 +a(g199597 +g199599 +S'masters' +p199601 +tp199602 +a(g199599 +g199601 +S'and' +p199603 +tp199604 +a(g199601 +g199603 +S'was' +p199605 +tp199606 +a(g199603 +g199605 +S'drawn' +p199607 +tp199608 +a(g199605 +g199607 +S'to' +p199609 +tp199610 +a(g199607 +g199609 +S'the' +p199611 +tp199612 +a(g199609 +g199611 +S'work' +p199613 +tp199614 +a(g199611 +g199613 +S'of' +p199615 +tp199616 +a(g199613 +g199615 +S'controversial' +p199617 +tp199618 +a(g199615 +g199617 +S'artists' +p199619 +tp199620 +a(g199617 +g199619 +S'such' +p199621 +tp199622 +a(g199619 +g199621 +S'as' +p199623 +tp199624 +a(g199621 +g199623 +S'gustave' +p199625 +tp199626 +a(g199623 +g199625 +S'courbet' +p199627 +tp199628 +a(g199625 +g199627 +S'and' +p199629 +tp199630 +a(g199627 +g199629 +S'edouard' +p199631 +tp199632 +a(g199629 +g199631 +S'manet.' +p199633 +tp199634 +a(g199631 +g199633 +S'by' +p199635 +tp199636 +a(g199633 +g199635 +S'the' +p199637 +tp199638 +a(g199635 +g199637 +S'time' +p199639 +tp199640 +a(g199637 +g199639 +S'he' +p199641 +tp199642 +a(g199639 +g199641 +S'painted' +p199643 +tp199644 +a(g199641 +g199643 +S'this' +p199645 +tp199646 +a(g199643 +g199645 +S'portrait,' +p199647 +tp199648 +a(g199645 +g199647 +S'cézanne' +p199649 +tp199650 +a(g199647 +g199649 +S'had' +p199651 +tp199652 +a(g199649 +g199651 +S'already' +p199653 +tp199654 +a(g199651 +g199653 +S'made' +p199655 +tp199656 +a(g199653 +g199655 +S'something' +p199657 +tp199658 +a(g199655 +g199657 +S'of' +p199659 +tp199660 +a(g199657 +g199659 +S'a' +p199661 +tp199662 +a(g199659 +g199661 +S'mark' +p199663 +tp199664 +a(g199661 +g199663 +S'for' +p199665 +tp199666 +a(g199663 +g199665 +S'himself' +p199667 +tp199668 +a(g199665 +g199667 +S'as' +p199669 +tp199670 +a(g199667 +g199669 +S'a' +p199671 +tp199672 +a(g199669 +g199671 +S'radical' +p199673 +tp199674 +a(g199671 +g199673 +S'artist.' +p199675 +tp199676 +a(g199673 +g199675 +S'rather' +p199677 +tp199678 +a(g199675 +g199677 +S'than' +p199679 +tp199680 +a(g199677 +g199679 +S'present' +p199681 +tp199682 +a(g199679 +g199681 +S'the' +p199683 +tp199684 +a(g199681 +g199683 +S'public' +p199685 +tp199686 +a(g199683 +g199685 +S'side' +p199687 +tp199688 +a(g199685 +g199687 +S'of' +p199689 +tp199690 +a(g199687 +g199689 +S'a' +p199691 +tp199692 +a(g199689 +g199691 +S'successful' +p199693 +tp199694 +a(g199691 +g199693 +S'banker' +p199695 +tp199696 +a(g199693 +g199695 +S'posed' +p199697 +tp199698 +a(g199695 +g199697 +S'formally' +p199699 +tp199700 +a(g199697 +g199699 +S'in' +p199701 +tp199702 +a(g199699 +g199701 +S'professional' +p199703 +tp199704 +a(g199701 +g199703 +S'attire,' +p199705 +tp199706 +a(g199703 +g199705 +S'cézanne' +p199707 +tp199708 +a(g199705 +g199707 +S'conceived' +p199709 +tp199710 +a(g199707 +g199709 +S'a' +p199711 +tp199712 +a(g199709 +g199711 +S'more' +p199713 +tp199714 +a(g199711 +g199713 +S'personal' +p199715 +tp199716 +a(g199713 +g199715 +S'image' +p199717 +tp199718 +a(g199715 +g199717 +S'of' +p199719 +tp199720 +a(g199717 +g199719 +S'his' +p199721 +tp199722 +a(g199719 +g199721 +S'father:' +p199723 +tp199724 +a(g199721 +g199723 +S'louis-' +p199725 +tp199726 +a(g199723 +g199725 +S'auguste' +p199727 +tp199728 +a(g199725 +g199727 +S'sits' +p199729 +tp199730 +a(g199727 +g199729 +S'in' +p199731 +tp199732 +a(g199729 +g199731 +S'a' +p199733 +tp199734 +a(g199731 +g199733 +S'flowered' +p199735 +tp199736 +a(g199733 +g199735 +S'armchair' +p199737 +tp199738 +a(g199735 +g199737 +S'in' +p199739 +tp199740 +a(g199737 +g199739 +S'the' +p199741 +tp199742 +a(g199739 +g199741 +S'privacy' +p199743 +tp199744 +a(g199741 +g199743 +S'of' +p199745 +tp199746 +a(g199743 +g199745 +S'his' +p199747 +tp199748 +a(g199745 +g199747 +S'home,' +p199749 +tp199750 +a(g199747 +g199749 +S'wearing' +p199751 +tp199752 +a(g199749 +g199751 +S'casual' +p199753 +tp199754 +a(g199751 +g199753 +S'clothing' +p199755 +tp199756 +a(g199753 +g199755 +S'(including' +p199757 +tp199758 +a(g199755 +g199757 +S'wooden' +p199759 +tp199760 +a(g199757 +g199759 +S'shoes)' +p199761 +tp199762 +a(g199759 +g199761 +S'and' +p199763 +tp199764 +a(g199761 +g199763 +S'reading' +p199765 +tp199766 +a(g199763 +g199765 +S'a' +p199767 +tp199768 +a(g199765 +g199767 +S'newspaper.' +p199769 +tp199770 +a(g199767 +g199769 +S'the' +p199771 +tp199772 +a(g199769 +g199771 +S'newspaper' +p199773 +tp199774 +a(g199771 +g199773 +S'that' +p199775 +tp199776 +a(g199773 +g199775 +S'louis-auguste' +p199777 +tp199778 +a(g199775 +g199777 +S'holds,' +p199779 +tp199780 +a(g199777 +g199779 +S'while' +p199781 +tp199782 +a(g199779 +g199781 +S'louis-auguste' +p199783 +tp199784 +a(g199781 +g199783 +S'did' +p199785 +tp199786 +a(g199783 +g199785 +S'not' +p199787 +tp199788 +a(g199785 +g199787 +S'wholeheartedly' +p199789 +tp199790 +a(g199787 +g199789 +S'approve' +p199791 +tp199792 +a(g199789 +g199791 +S'of' +p199793 +tp199794 +a(g199791 +g199793 +S'cézanne\xe2\x80\x99s' +p199795 +tp199796 +a(g199793 +g199795 +S'decision' +p199797 +tp199798 +a(g199795 +g199797 +S'to' +p199799 +tp199800 +a(g199797 +g199799 +S'become' +p199801 +tp199802 +a(g199799 +g199801 +S'a' +p199803 +tp199804 +a(g199801 +g199803 +S'painter,' +p199805 +tp199806 +a(g199803 +g199805 +S'he' +p199807 +tp199808 +a(g199805 +g199807 +S'seems' +p199809 +tp199810 +a(g199807 +g199809 +S'to' +p199811 +tp199812 +a(g199809 +g199811 +S'have' +p199813 +tp199814 +a(g199811 +g199813 +S'come' +p199815 +tp199816 +a(g199813 +g199815 +S'to' +p199817 +tp199818 +a(g199815 +g199817 +S'some' +p199819 +tp199820 +a(g199817 +g199819 +S'kind' +p199821 +tp199822 +a(g199819 +g199821 +S'of' +p199823 +tp199824 +a(g199821 +g199823 +S'acceptance' +p199825 +tp199826 +a(g199823 +g199825 +S'of' +p199827 +tp199828 +a(g199825 +g199827 +S'it.' +p199829 +tp199830 +a(g199827 +g199829 +S'in' +p199831 +tp199832 +a(g199829 +g199831 +S'1860' +p199833 +tp199834 +a(g199831 +g199833 +S'he' +p199835 +tp199836 +a(g199833 +g199835 +S'had' +p199837 +tp199838 +a(g199835 +g199837 +S'allowed' +p199839 +tp199840 +a(g199837 +g199839 +S'the' +p199841 +tp199842 +a(g199839 +g199841 +S'young' +p199843 +tp199844 +a(g199841 +g199843 +S'painter' +p199845 +tp199846 +a(g199843 +g199845 +S'to' +p199847 +tp199848 +a(g199845 +g199847 +S'decorate' +p199849 +tp199850 +a(g199847 +g199849 +S'the' +p199851 +tp199852 +a(g199849 +g199851 +S'salon' +p199853 +tp199854 +a(g199851 +g199853 +S'of' +p199855 +tp199856 +a(g199853 +g199855 +S'the' +p199857 +tp199858 +a(g199855 +g199857 +S'manor' +p199859 +tp199860 +a(g199857 +g199859 +S'house' +p199861 +tp199862 +a(g199859 +g199861 +S'at' +p199863 +tp199864 +a(g199861 +g199863 +S'jas' +p199865 +tp199866 +a(g199863 +g199865 +S'de' +p199867 +tp199868 +a(g199865 +g199867 +S'bouffan,' +p199869 +tp199870 +a(g199867 +g199869 +S'the' +p199871 +tp199872 +a(g199869 +g199871 +S'recently' +p199873 +tp199874 +a(g199871 +g199873 +S'purchased' +p199875 +tp199876 +a(g199873 +g199875 +S'family' +p199877 +tp199878 +a(g199875 +g199877 +S'estate' +p199879 +tp199880 +a(g199877 +g199879 +S'in' +p199881 +tp199882 +a(g199879 +g199881 +S'the' +p199883 +tp199884 +a(g199881 +g199883 +S'countryside' +p199885 +tp199886 +a(g199883 +g199885 +S'outside' +p199887 +tp199888 +a(g199885 +g199887 +S'aix.' +p199889 +tp199890 +a(g199887 +g199889 +S'in' +p199891 +tp199892 +a(g199889 +g199891 +S'that' +p199893 +tp199894 +a(g199891 +g199893 +S'room,' +p199895 +tp199896 +a(g199893 +g199895 +S'cézanne' +p199897 +tp199898 +a(g199895 +g199897 +S'executed' +p199899 +tp199900 +a(g199897 +g199899 +S'paintings' +p199901 +tp199902 +a(g199899 +g199901 +S'directly' +p199903 +tp199904 +a(g199901 +g199903 +S'on' +p199905 +tp199906 +a(g199903 +g199905 +S'the' +p199907 +tp199908 +a(g199905 +g199907 +S'wall,' +p199909 +tp199910 +a(g199907 +g199909 +S'later' +p199911 +tp199912 +a(g199909 +g199911 +S'hanging' +p199913 +tp199914 +a(g199911 +g199913 +S'among' +p199915 +tp199916 +a(g199913 +g199915 +S'them' +p199917 +tp199918 +a(g199915 +g199917 +S'his' +p199919 +tp199920 +a(g199917 +g199919 +S'first' +p199921 +tp199922 +a(g199919 +g199921 +S'portrait' +p199923 +tp199924 +a(g199921 +g199923 +S'of' +p199925 +tp199926 +a(g199923 +g199925 +S'his' +p199927 +tp199928 +a(g199925 +g199927 +S'father,' +p199929 +tp199930 +a(g199927 +g199929 +S'painted' +p199931 +tp199932 +a(g199929 +g199931 +S'in' +p199933 +tp199934 +a(g199931 +g199933 +S'about' +p199935 +tp199936 +a(g199933 +g199935 +S'1865' +p199937 +tp199938 +a(g199935 +g199937 +S'(national' +p199939 +tp199940 +a(g199937 +g199939 +S'gallery,' +p199941 +tp199942 +a(g199939 +g199941 +S'london).' +p199943 +tp199944 +a(g199941 +g199943 +S'(text' +p199945 +tp199946 +a(g199943 +g199945 +S'by' +p199947 +tp199948 +a(g199945 +g199947 +S'margaret' +p199949 +tp199950 +a(g199947 +g199949 +S'doyle,' +p199951 +tp199952 +a(g199949 +g199951 +S'notes' +p199953 +tp199954 +a(g199951 +g199953 +S'' +p199957 +tp199958 +a(g199955 +g199957 +S'' +p199961 +tp199962 +a(g199959 +g199961 +S'algardi,' +p199963 +tp199964 +a(g199961 +g199963 +S"bernini's" +p199965 +tp199966 +a(g199963 +g199965 +S'greatest' +p199967 +tp199968 +a(g199965 +g199967 +S'rival' +p199969 +tp199970 +a(g199967 +g199969 +S'for' +p199971 +tp199972 +a(g199969 +g199971 +S'leadership' +p199973 +tp199974 +a(g199971 +g199973 +S'in' +p199975 +tp199976 +a(g199973 +g199975 +S'sculpture' +p199977 +tp199978 +a(g199975 +g199977 +S'in' +p199979 +tp199980 +a(g199977 +g199979 +S'seventeenth-century' +p199981 +tp199982 +a(g199979 +g199981 +S'rome,' +p199983 +tp199984 +a(g199981 +g199983 +S'came' +p199985 +tp199986 +a(g199983 +g199985 +S'to' +p199987 +tp199988 +a(g199985 +g199987 +S'the' +p199989 +tp199990 +a(g199987 +g199989 +S'eternal' +p199991 +tp199992 +a(g199989 +g199991 +S'city' +p199993 +tp199994 +a(g199991 +g199993 +S'from' +p199995 +tp199996 +a(g199993 +g199995 +S'bologna,' +p199997 +tp199998 +a(g199995 +g199997 +S'capital' +p199999 +tp200000 +a(g199997 +g199999 +S'of' +p200001 +tp200002 +a(g199999 +g200001 +S'the' +p200003 +tp200004 +a(g200001 +g200003 +S'province' +p200005 +tp200006 +a(g200003 +g200005 +S'of' +p200007 +tp200008 +a(g200005 +g200007 +S'emilia.' +p200009 +tp200010 +a(g200007 +g200009 +S'his' +p200011 +tp200012 +a(g200009 +g200011 +S'bolognese' +p200013 +tp200014 +a(g200011 +g200013 +S'origin' +p200015 +tp200016 +a(g200013 +g200015 +S'is' +p200017 +tp200018 +a(g200015 +g200017 +S'significant' +p200019 +tp200020 +a(g200017 +g200019 +S'not' +p200021 +tp200022 +a(g200019 +g200021 +S'only' +p200023 +tp200024 +a(g200021 +g200023 +S'because' +p200025 +tp200026 +a(g200023 +g200025 +S'he' +p200027 +tp200028 +a(g200025 +g200027 +S'shared' +p200029 +tp200030 +a(g200027 +g200029 +S'it' +p200031 +tp200032 +a(g200029 +g200031 +S'with' +p200033 +tp200034 +a(g200031 +g200033 +S'the' +p200035 +tp200036 +a(g200033 +g200035 +S'carracci' +p200037 +tp200038 +a(g200035 +g200037 +S'family,' +p200039 +tp200040 +a(g200037 +g200039 +S'leaders' +p200041 +tp200042 +a(g200039 +g200041 +S'in' +p200043 +tp200044 +a(g200041 +g200043 +S'the' +p200045 +tp200046 +a(g200043 +g200045 +S'reform' +p200047 +tp200048 +a(g200045 +g200047 +S'of' +p200049 +tp200050 +a(g200047 +g200049 +S'painting' +p200051 +tp200052 +a(g200049 +g200051 +S'in' +p200053 +tp200054 +a(g200051 +g200053 +S'emilia' +p200055 +tp200056 +a(g200053 +g200055 +S'and' +p200057 +tp200058 +a(g200055 +g200057 +S'rome' +p200059 +tp200060 +a(g200057 +g200059 +S'beginning' +p200061 +tp200062 +a(g200059 +g200061 +S'around' +p200063 +tp200064 +a(g200061 +g200063 +S'1600,' +p200065 +tp200066 +a(g200063 +g200065 +S'but' +p200067 +tp200068 +a(g200065 +g200067 +S'also' +p200069 +tp200070 +a(g200067 +g200069 +S'because' +p200071 +tp200072 +a(g200069 +g200071 +S'emilia' +p200073 +tp200074 +a(g200071 +g200073 +S'is' +p200075 +tp200076 +a(g200073 +g200075 +S'a' +p200077 +tp200078 +a(g200075 +g200077 +S'province' +p200079 +tp200080 +a(g200077 +g200079 +S'where' +p200081 +tp200082 +a(g200079 +g200081 +S'sculptural' +p200083 +tp200084 +a(g200081 +g200083 +S'stone' +p200085 +tp200086 +a(g200083 +g200085 +S'is' +p200087 +tp200088 +a(g200085 +g200087 +S'scarce.' +p200089 +tp200090 +a(g200087 +g200089 +S'while' +p200091 +tp200092 +a(g200089 +g200091 +S'algardi' +p200093 +tp200094 +a(g200091 +g200093 +S'nevertheless' +p200095 +tp200096 +a(g200093 +g200095 +S'became' +p200097 +tp200098 +a(g200095 +g200097 +S'a' +p200099 +tp200100 +a(g200097 +g200099 +S'skilled' +p200101 +tp200102 +a(g200099 +g200101 +S'marble' +p200103 +tp200104 +a(g200101 +g200103 +S'carver,' +p200105 +tp200106 +a(g200103 +g200105 +S'the' +p200107 +tp200108 +a(g200105 +g200107 +S"modeler's" +p200109 +tp200110 +a(g200107 +g200109 +S'technique' +p200111 +tp200112 +a(g200109 +g200111 +S'of' +p200113 +tp200114 +a(g200111 +g200113 +S'his' +p200115 +tp200116 +a(g200113 +g200115 +S'earliest' +p200117 +tp200118 +a(g200115 +g200117 +S'training,' +p200119 +tp200120 +a(g200117 +g200119 +S'with' +p200121 +tp200122 +a(g200119 +g200121 +S'clay' +p200123 +tp200124 +a(g200121 +g200123 +S'and' +p200125 +tp200126 +a(g200123 +g200125 +S'stucco,' +p200127 +tp200128 +a(g200125 +g200127 +S'always' +p200129 +tp200130 +a(g200127 +g200129 +S'came' +p200131 +tp200132 +a(g200129 +g200131 +S'more' +p200133 +tp200134 +a(g200131 +g200133 +S'naturally' +p200135 +tp200136 +a(g200133 +g200135 +S'to' +p200137 +tp200138 +a(g200135 +g200137 +S'him.' +p200139 +tp200140 +a(g200137 +g200139 +S'this' +p200141 +tp200142 +a(g200139 +g200141 +S'bust' +p200143 +tp200144 +a(g200141 +g200143 +S'exemplifies' +p200145 +tp200146 +a(g200143 +g200145 +S'his' +p200147 +tp200148 +a(g200145 +g200147 +S'fluid' +p200149 +tp200150 +a(g200147 +g200149 +S'command' +p200151 +tp200152 +a(g200149 +g200151 +S'of' +p200153 +tp200154 +a(g200151 +g200153 +S'modeling.' +p200155 +tp200156 +a(g200153 +g200155 +S'the' +p200157 +tp200158 +a(g200155 +g200157 +S'bust' +p200159 +tp200160 +a(g200157 +g200159 +S'may' +p200161 +tp200162 +a(g200159 +g200161 +S'have' +p200163 +tp200164 +a(g200161 +g200163 +S'originated' +p200165 +tp200166 +a(g200163 +g200165 +S'as' +p200167 +tp200168 +a(g200165 +g200167 +S'one' +p200169 +tp200170 +a(g200167 +g200169 +S'of' +p200171 +tp200172 +a(g200169 +g200171 +S'several' +p200173 +tp200174 +a(g200171 +g200173 +S'studies' +p200175 +tp200176 +a(g200173 +g200175 +S'of' +p200177 +tp200178 +a(g200175 +g200177 +S'saintly' +p200179 +tp200180 +a(g200177 +g200179 +S'types' +p200181 +tp200182 +a(g200179 +g200181 +S'to' +p200183 +tp200184 +a(g200181 +g200183 +S'be' +p200185 +tp200186 +a(g200183 +g200185 +S'used' +p200187 +tp200188 +a(g200185 +g200187 +S'as' +p200189 +tp200190 +a(g200187 +g200189 +S'models' +p200191 +tp200192 +a(g200189 +g200191 +S'for' +p200193 +tp200194 +a(g200191 +g200193 +S'sculpture' +p200195 +tp200196 +a(g200193 +g200195 +S'when' +p200197 +tp200198 +a(g200195 +g200197 +S'the' +p200199 +tp200200 +a(g200197 +g200199 +S'occasion' +p200201 +tp200202 +a(g200199 +g200201 +S'arose.' +p200203 +tp200204 +a(g200201 +g200203 +S'algardi' +p200205 +tp200206 +a(g200203 +g200205 +S'gave' +p200207 +tp200208 +a(g200205 +g200207 +S'his' +p200209 +tp200210 +a(g200207 +g200209 +S'bearded' +p200211 +tp200212 +a(g200209 +g200211 +S'saint' +p200213 +tp200214 +a(g200211 +g200213 +S'a' +p200215 +tp200216 +a(g200213 +g200215 +S'youthful' +p200217 +tp200218 +a(g200215 +g200217 +S'face,' +p200219 +tp200220 +a(g200217 +g200219 +S'with' +p200221 +tp200222 +a(g200219 +g200221 +S'harmonious,' +p200223 +tp200224 +a(g200221 +g200223 +S'classically' +p200225 +tp200226 +a(g200223 +g200225 +S'proportioned' +p200227 +tp200228 +a(g200225 +g200227 +S'features.' +p200229 +tp200230 +a(g200227 +g200229 +S'classical' +p200231 +tp200232 +a(g200229 +g200231 +S'too' +p200233 +tp200234 +a(g200231 +g200233 +S'are' +p200235 +tp200236 +a(g200233 +g200235 +S'the' +p200237 +tp200238 +a(g200235 +g200237 +S'calm' +p200239 +tp200240 +a(g200237 +g200239 +S'expression,' +p200241 +tp200242 +a(g200239 +g200241 +S'the' +p200243 +tp200244 +a(g200241 +g200243 +S'blank' +p200245 +tp200246 +a(g200243 +g200245 +S'pupils,' +p200247 +tp200248 +a(g200245 +g200247 +S'the' +p200249 +tp200250 +a(g200247 +g200249 +S'drapery,' +p200251 +tp200252 +a(g200249 +g200251 +S'and' +p200253 +tp200254 +a(g200251 +g200253 +S'the' +p200255 +tp200256 +a(g200253 +g200255 +S'clearly' +p200257 +tp200258 +a(g200255 +g200257 +S'rounded' +p200259 +tp200260 +a(g200257 +g200259 +S'head' +p200261 +tp200262 +a(g200259 +g200261 +S'bound' +p200263 +tp200264 +a(g200261 +g200263 +S'by' +p200265 +tp200266 +a(g200263 +g200265 +S'a' +p200267 +tp200268 +a(g200265 +g200267 +S'fillet.' +p200269 +tp200270 +a(g200267 +g200269 +S"algardi's" +p200271 +tp200272 +a(g200269 +g200271 +S'love' +p200273 +tp200274 +a(g200271 +g200273 +S'for' +p200275 +tp200276 +a(g200273 +g200275 +S'gently' +p200277 +tp200278 +a(g200275 +g200277 +S'flowing' +p200279 +tp200280 +a(g200277 +g200279 +S'curves' +p200281 +tp200282 +a(g200279 +g200281 +S'shows' +p200283 +tp200284 +a(g200281 +g200283 +S'in' +p200285 +tp200286 +a(g200283 +g200285 +S'the' +p200287 +tp200288 +a(g200285 +g200287 +S'undulating' +p200289 +tp200290 +a(g200287 +g200289 +S'locks' +p200291 +tp200292 +a(g200289 +g200291 +S'of' +p200293 +tp200294 +a(g200291 +g200293 +S'hair' +p200295 +tp200296 +a(g200293 +g200295 +S'that' +p200297 +tp200298 +a(g200295 +g200297 +S'seem' +p200299 +tp200300 +a(g200297 +g200299 +S'to' +p200301 +tp200302 +a(g200299 +g200301 +S'echo' +p200303 +tp200304 +a(g200301 +g200303 +S'the' +p200305 +tp200306 +a(g200303 +g200305 +S'curving' +p200307 +tp200308 +a(g200305 +g200307 +S'outlines' +p200309 +tp200310 +a(g200307 +g200309 +S'of' +p200311 +tp200312 +a(g200309 +g200311 +S'the' +p200313 +tp200314 +a(g200311 +g200313 +S"saint's" +p200315 +tp200316 +a(g200313 +g200315 +S'wide' +p200317 +tp200318 +a(g200315 +g200317 +S'eyes.' +p200319 +tp200320 +a(g200317 +g200319 +S'by' +p200321 +tp200322 +a(g200319 +g200321 +S'the' +p200323 +tp200324 +a(g200321 +g200323 +S'time' +p200325 +tp200326 +a(g200323 +g200325 +S'cassatt' +p200327 +tp200328 +a(g200325 +g200327 +S'exhibited' +p200329 +tp200330 +a(g200327 +g200329 +S'this' +p200331 +tp200332 +a(g200329 +g200331 +S'painting' +p200333 +tp200334 +a(g200331 +g200333 +S'at' +p200335 +tp200336 +a(g200333 +g200335 +S'the' +p200337 +tp200338 +a(g200335 +g200337 +S'eighth' +p200339 +tp200340 +a(g200337 +g200339 +S'and' +p200341 +tp200342 +a(g200339 +g200341 +S'final' +p200343 +tp200344 +a(g200341 +g200343 +S'impressionist' +p200345 +tp200346 +a(g200343 +g200345 +S'exhibition' +p200347 +tp200348 +a(g200345 +g200347 +S'in' +p200349 +tp200350 +a(g200347 +g200349 +S'1886,' +p200351 +tp200352 +a(g200349 +g200351 +S'her' +p200353 +tp200354 +a(g200351 +g200353 +S'reputation' +p200355 +tp200356 +a(g200353 +g200355 +S'as' +p200357 +tp200358 +a(g200355 +g200357 +S'a' +p200359 +tp200360 +a(g200357 +g200359 +S'painter' +p200361 +tp200362 +a(g200359 +g200361 +S'of' +p200363 +tp200364 +a(g200361 +g200363 +S'mothers' +p200365 +tp200366 +a(g200363 +g200365 +S'and' +p200367 +tp200368 +a(g200365 +g200367 +S'children' +p200369 +tp200370 +a(g200367 +g200369 +S'had' +p200371 +tp200372 +a(g200369 +g200371 +S'been' +p200373 +tp200374 +a(g200371 +g200373 +S'well' +p200375 +tp200376 +a(g200373 +g200375 +S'established.' +p200377 +tp200378 +a(g200375 +g200377 +S'various' +p200379 +tp200380 +a(g200377 +g200379 +S'shades' +p200381 +tp200382 +a(g200379 +g200381 +S'of' +p200383 +tp200384 +a(g200381 +g200383 +S'blue—from' +p200385 +tp200386 +a(g200383 +g200385 +S'the' +p200387 +tp200388 +a(g200385 +g200387 +S'deep,' +p200389 +tp200390 +a(g200387 +g200389 +S'electric' +p200391 +tp200392 +a(g200389 +g200391 +S'blue' +p200393 +tp200394 +a(g200391 +g200393 +S'of' +p200395 +tp200396 +a(g200393 +g200395 +S'the' +p200397 +tp200398 +a(g200395 +g200397 +S'dress' +p200399 +tp200400 +a(g200397 +g200399 +S'and' +p200401 +tp200402 +a(g200399 +g200401 +S'shoes' +p200403 +tp200404 +a(g200401 +g200403 +S'to' +p200405 +tp200406 +a(g200403 +g200405 +S'the' +p200407 +tp200408 +a(g200405 +g200407 +S'soft,' +p200409 +tp200410 +a(g200407 +g200409 +S'diffused' +p200411 +tp200412 +a(g200409 +g200411 +S'blue' +p200413 +tp200414 +a(g200411 +g200413 +S'of' +p200415 +tp200416 +a(g200413 +g200415 +S'the' +p200417 +tp200418 +a(g200415 +g200417 +S'ocean—are' +p200419 +tp200420 +a(g200417 +g200419 +S'used' +p200421 +tp200422 +a(g200419 +g200421 +S'throughout' +p200423 +tp200424 +a(g200421 +g200423 +S'the' +p200425 +tp200426 +a(g200423 +g200425 +S'work.' +p200427 +tp200428 +a(g200425 +g200427 +S'accents' +p200429 +tp200430 +a(g200427 +g200429 +S'of' +p200431 +tp200432 +a(g200429 +g200431 +S'white' +p200433 +tp200434 +a(g200431 +g200433 +S'convey' +p200435 +tp200436 +a(g200433 +g200435 +S'the' +p200437 +tp200438 +a(g200435 +g200437 +S'presence' +p200439 +tp200440 +a(g200437 +g200439 +S'of' +p200441 +tp200442 +a(g200439 +g200441 +S'sunlight' +p200443 +tp200444 +a(g200441 +g200443 +S'bouncing' +p200445 +tp200446 +a(g200443 +g200445 +S'off' +p200447 +tp200448 +a(g200445 +g200447 +S'the' +p200449 +tp200450 +a(g200447 +g200449 +S'dresses,' +p200451 +tp200452 +a(g200449 +g200451 +S'hats,' +p200453 +tp200454 +a(g200451 +g200453 +S'and' +p200455 +tp200456 +a(g200453 +g200455 +S'pails' +p200457 +tp200458 +a(g200455 +g200457 +S'of' +p200459 +tp200460 +a(g200457 +g200459 +S'the' +p200461 +tp200462 +a(g200459 +g200461 +S'little' +p200463 +tp200464 +a(g200461 +g200463 +S'girls.' +p200465 +tp200466 +a(g200463 +g200465 +S'while' +p200467 +tp200468 +a(g200465 +g200467 +S'particular' +p200469 +tp200470 +a(g200467 +g200469 +S'attention' +p200471 +tp200472 +a(g200469 +g200471 +S'is' +p200473 +tp200474 +a(g200471 +g200473 +S'paid' +p200475 +tp200476 +a(g200473 +g200475 +S'to' +p200477 +tp200478 +a(g200475 +g200477 +S'the' +p200479 +tp200480 +a(g200477 +g200479 +S'building' +p200481 +tp200482 +a(g200479 +g200481 +S'of' +p200483 +tp200484 +a(g200481 +g200483 +S'form' +p200485 +tp200486 +a(g200483 +g200485 +S'through' +p200487 +tp200488 +a(g200485 +g200487 +S'color' +p200489 +tp200490 +a(g200487 +g200489 +S'and' +p200491 +tp200492 +a(g200489 +g200491 +S'line' +p200493 +tp200494 +a(g200491 +g200493 +S'in' +p200495 +tp200496 +a(g200493 +g200495 +S'the' +p200497 +tp200498 +a(g200495 +g200497 +S'foreground,' +p200499 +tp200500 +a(g200497 +g200499 +S'the' +p200501 +tp200502 +a(g200499 +g200501 +S'background' +p200503 +tp200504 +a(g200501 +g200503 +S'is' +p200505 +tp200506 +a(g200503 +g200505 +S'reduced' +p200507 +tp200508 +a(g200505 +g200507 +S'to' +p200509 +tp200510 +a(g200507 +g200509 +S'its' +p200511 +tp200512 +a(g200509 +g200511 +S'essential' +p200513 +tp200514 +a(g200511 +g200513 +S'elements' +p200515 +tp200516 +a(g200513 +g200515 +S'through' +p200517 +tp200518 +a(g200515 +g200517 +S'a' +p200519 +tp200520 +a(g200517 +g200519 +S'series' +p200521 +tp200522 +a(g200519 +g200521 +S'of' +p200523 +tp200524 +a(g200521 +g200523 +S'thinly' +p200525 +tp200526 +a(g200523 +g200525 +S'painted' +p200527 +tp200528 +a(g200525 +g200527 +S'scumbles,' +p200529 +tp200530 +a(g200527 +g200529 +S'leaving' +p200531 +tp200532 +a(g200529 +g200531 +S'areas' +p200533 +tp200534 +a(g200531 +g200533 +S'of' +p200535 +tp200536 +a(g200533 +g200535 +S'the' +p200537 +tp200538 +a(g200535 +g200537 +S'priming' +p200539 +tp200540 +a(g200537 +g200539 +S'layer' +p200541 +tp200542 +a(g200539 +g200541 +S'exposed.' +p200543 +tp200544 +a(g200541 +g200543 +S'aspects' +p200545 +tp200546 +a(g200543 +g200545 +S'of' +p200547 +tp200548 +a(g200545 +g200547 +S'the' +p200549 +tp200550 +a(g200547 +g200549 +S'painting' +p200551 +tp200552 +a(g200549 +g200551 +S'suggest' +p200553 +tp200554 +a(g200551 +g200553 +S'that' +p200555 +tp200556 +a(g200553 +g200555 +S'it' +p200557 +tp200558 +a(g200555 +g200557 +S'is' +p200559 +tp200560 +a(g200557 +g200559 +S'a' +p200561 +tp200562 +a(g200559 +g200561 +S'nostalgic' +p200563 +tp200564 +a(g200561 +g200563 +S'tribute' +p200565 +tp200566 +a(g200563 +g200565 +S'to' +p200567 +tp200568 +a(g200565 +g200567 +S'her' +p200569 +tp200570 +a(g200567 +g200569 +S'beloved' +p200571 +tp200572 +a(g200569 +g200571 +S'sister,' +p200573 +tp200574 +a(g200571 +g200573 +S'lydia,' +p200575 +tp200576 +a(g200573 +g200575 +S'who' +p200577 +tp200578 +a(g200575 +g200577 +S'died' +p200579 +tp200580 +a(g200577 +g200579 +S'in' +p200581 +tp200582 +a(g200579 +g200581 +S'1882.' +p200583 +tp200584 +a(g200581 +g200583 +S'cassatt' +p200585 +tp200586 +a(g200583 +g200585 +S'was' +p200587 +tp200588 +a(g200585 +g200587 +S'so' +p200589 +tp200590 +a(g200587 +g200589 +S'distraught' +p200591 +tp200592 +a(g200589 +g200591 +S'that' +p200593 +tp200594 +a(g200591 +g200593 +S'she' +p200595 +tp200596 +a(g200593 +g200595 +S'did' +p200597 +tp200598 +a(g200595 +g200597 +S'not' +p200599 +tp200600 +a(g200597 +g200599 +S'paint' +p200601 +tp200602 +a(g200599 +g200601 +S'for' +p200603 +tp200604 +a(g200601 +g200603 +S'six' +p200605 +tp200606 +a(g200603 +g200605 +S'months.' +p200607 +tp200608 +a(g200605 +g200607 +S'without' +p200609 +tp200610 +a(g200607 +g200609 +S'revealing' +p200611 +tp200612 +a(g200609 +g200611 +S'the' +p200613 +tp200614 +a(g200611 +g200613 +S'identity' +p200615 +tp200616 +a(g200613 +g200615 +S'of' +p200617 +tp200618 +a(g200615 +g200617 +S'the' +p200619 +tp200620 +a(g200617 +g200619 +S'little' +p200621 +tp200622 +a(g200619 +g200621 +S'girls' +p200623 +tp200624 +a(g200621 +g200623 +S'specifically,' +p200625 +tp200626 +a(g200623 +g200625 +S'cassatt' +p200627 +tp200628 +a(g200625 +g200627 +S'depicted' +p200629 +tp200630 +a(g200627 +g200629 +S'them' +p200631 +tp200632 +a(g200629 +g200631 +S'in' +p200633 +tp200634 +a(g200631 +g200633 +S'a' +p200635 +tp200636 +a(g200633 +g200635 +S'manner' +p200637 +tp200638 +a(g200635 +g200637 +S'that' +p200639 +tp200640 +a(g200637 +g200639 +S'implies' +p200641 +tp200642 +a(g200639 +g200641 +S'they' +p200643 +tp200644 +a(g200641 +g200643 +S'are' +p200645 +tp200646 +a(g200643 +g200645 +S'related.' +p200647 +tp200648 +a(g200645 +g200647 +S'playing' +p200649 +tp200650 +a(g200647 +g200649 +S'close' +p200651 +tp200652 +a(g200649 +g200651 +S'together,' +p200653 +tp200654 +a(g200651 +g200653 +S'the' +p200655 +tp200656 +a(g200653 +g200655 +S'girls' +p200657 +tp200658 +a(g200655 +g200657 +S'are' +p200659 +tp200660 +a(g200657 +g200659 +S'comfortable' +p200661 +tp200662 +a(g200659 +g200661 +S'with' +p200663 +tp200664 +a(g200661 +g200663 +S'each' +p200665 +tp200666 +a(g200663 +g200665 +S'other\xe2\x80\x99s' +p200667 +tp200668 +a(g200665 +g200667 +S'presence.' +p200669 +tp200670 +a(g200667 +g200669 +S'by' +p200671 +tp200672 +a(g200669 +g200671 +S'positioning' +p200673 +tp200674 +a(g200671 +g200673 +S'them' +p200675 +tp200676 +a(g200673 +g200675 +S'side' +p200677 +tp200678 +a(g200675 +g200677 +S'by' +p200679 +tp200680 +a(g200677 +g200679 +S'side' +p200681 +tp200682 +a(g200679 +g200681 +S'in' +p200683 +tp200684 +a(g200681 +g200683 +S'nearly' +p200685 +tp200686 +a(g200683 +g200685 +S'identical' +p200687 +tp200688 +a(g200685 +g200687 +S'outfits,' +p200689 +tp200690 +a(g200687 +g200689 +S'cassatt' +p200691 +tp200692 +a(g200689 +g200691 +S'established' +p200693 +tp200694 +a(g200691 +g200693 +S'both' +p200695 +tp200696 +a(g200693 +g200695 +S'a' +p200697 +tp200698 +a(g200695 +g200697 +S'compositional' +p200699 +tp200700 +a(g200697 +g200699 +S'and' +p200701 +tp200702 +a(g200699 +g200701 +S'psychological' +p200703 +tp200704 +a(g200701 +g200703 +S'relationship' +p200705 +tp200706 +a(g200703 +g200705 +S'between' +p200707 +tp200708 +a(g200705 +g200707 +S'the' +p200709 +tp200710 +a(g200707 +g200709 +S'two' +p200711 +tp200712 +a(g200709 +g200711 +S'figures.' +p200713 +tp200714 +a(g200711 +g200713 +S'as' +p200715 +tp200716 +a(g200713 +g200715 +S'the' +p200717 +tp200718 +a(g200715 +g200717 +S'primary' +p200719 +tp200720 +a(g200717 +g200719 +S'caretaker' +p200721 +tp200722 +a(g200719 +g200721 +S'of' +p200723 +tp200724 +a(g200721 +g200723 +S'her' +p200725 +tp200726 +a(g200723 +g200725 +S'elderly' +p200727 +tp200728 +a(g200725 +g200727 +S'parents' +p200729 +tp200730 +a(g200727 +g200729 +S'and' +p200731 +tp200732 +a(g200729 +g200731 +S'older' +p200733 +tp200734 +a(g200731 +g200733 +S'sister,' +p200735 +tp200736 +a(g200733 +g200735 +S'cassatt' +p200737 +tp200738 +a(g200735 +g200737 +S'spent' +p200739 +tp200740 +a(g200737 +g200739 +S'much' +p200741 +tp200742 +a(g200739 +g200741 +S'of' +p200743 +tp200744 +a(g200741 +g200743 +S'her' +p200745 +tp200746 +a(g200743 +g200745 +S'adult' +p200747 +tp200748 +a(g200745 +g200747 +S'life' +p200749 +tp200750 +a(g200747 +g200749 +S'juggling' +p200751 +tp200752 +a(g200749 +g200751 +S'the' +p200753 +tp200754 +a(g200751 +g200753 +S'seemingly' +p200755 +tp200756 +a(g200753 +g200755 +S'incompatible' +p200757 +tp200758 +a(g200755 +g200757 +S'roles' +p200759 +tp200760 +a(g200757 +g200759 +S'of' +p200761 +tp200762 +a(g200759 +g200761 +S'nurse-companion' +p200763 +tp200764 +a(g200761 +g200763 +S'and' +p200765 +tp200766 +a(g200763 +g200765 +S'independent' +p200767 +tp200768 +a(g200765 +g200767 +S'artist.' +p200769 +tp200770 +a(g200767 +g200769 +S'in' +p200771 +tp200772 +a(g200769 +g200771 +S'1884,' +p200773 +tp200774 +a(g200771 +g200773 +S'cassatt' +p200775 +tp200776 +a(g200773 +g200775 +S'accompanied' +p200777 +tp200778 +a(g200775 +g200777 +S'her' +p200779 +tp200780 +a(g200777 +g200779 +S'ailing' +p200781 +tp200782 +a(g200779 +g200781 +S'mother' +p200783 +tp200784 +a(g200781 +g200783 +S'to' +p200785 +tp200786 +a(g200783 +g200785 +S'spain' +p200787 +tp200788 +a(g200785 +g200787 +S'to' +p200789 +tp200790 +a(g200787 +g200789 +S'seek' +p200791 +tp200792 +a(g200789 +g200791 +S'the' +p200793 +tp200794 +a(g200791 +g200793 +S'recuperative' +p200795 +tp200796 +a(g200793 +g200795 +S'effects' +p200797 +tp200798 +a(g200795 +g200797 +S'of' +p200799 +tp200800 +a(g200797 +g200799 +S'the' +p200801 +tp200802 +a(g200799 +g200801 +S'seaside' +p200803 +tp200804 +a(g200801 +g200803 +S'climate.' +p200805 +tp200806 +a(g200803 +g200805 +S'(text' +p200807 +tp200808 +a(g200805 +g200807 +S'by' +p200809 +tp200810 +a(g200807 +g200809 +S'michelle' +p200811 +tp200812 +a(g200809 +g200811 +S'bird,' +p200813 +tp200814 +a(g200811 +g200813 +S'notes' +p200815 +tp200816 +a(g200813 +g200815 +S'' +p200819 +tp200820 +a(g200817 +g200819 +S'when' +p200821 +tp200822 +a(g200819 +g200821 +S'cézanne' +p200823 +tp200824 +a(g200821 +g200823 +S'began' +p200825 +tp200826 +a(g200823 +g200825 +S'painting' +p200827 +tp200828 +a(g200825 +g200827 +S'in' +p200829 +tp200830 +a(g200827 +g200829 +S'the' +p200831 +tp200832 +a(g200829 +g200831 +S'1860s,' +p200833 +tp200834 +a(g200831 +g200833 +S'he' +p200835 +tp200836 +a(g200833 +g200835 +S'worked' +p200837 +tp200838 +a(g200835 +g200837 +S'primarily' +p200839 +tp200840 +a(g200837 +g200839 +S'in' +p200841 +tp200842 +a(g200839 +g200841 +S'the' +p200843 +tp200844 +a(g200841 +g200843 +S'studio' +p200845 +tp200846 +a(g200843 +g200845 +S'on' +p200847 +tp200848 +a(g200845 +g200847 +S'figural' +p200849 +tp200850 +a(g200847 +g200849 +S'compositions' +p200851 +tp200852 +a(g200849 +g200851 +S'and' +p200853 +tp200854 +a(g200851 +g200853 +S'still' +p200855 +tp200856 +a(g200853 +g200855 +S'lifes—a' +p200857 +tp200858 +a(g200855 +g200857 +S'practice' +p200859 +tp200860 +a(g200857 +g200859 +S'he' +p200861 +tp200862 +a(g200859 +g200861 +S'continued' +p200863 +tp200864 +a(g200861 +g200863 +S'throughout' +p200865 +tp200866 +a(g200863 +g200865 +S'his' +p200867 +tp200868 +a(g200865 +g200867 +S'career—but' +p200869 +tp200870 +a(g200867 +g200869 +S'by' +p200871 +tp200872 +a(g200869 +g200871 +S'1866' +p200873 +tp200874 +a(g200871 +g200873 +S'he' +p200875 +tp200876 +a(g200873 +g200875 +S'was' +p200877 +tp200878 +a(g200875 +g200877 +S'already' +p200879 +tp200880 +a(g200877 +g200879 +S'anticipating' +p200881 +tp200882 +a(g200879 +g200881 +S'the' +p200883 +tp200884 +a(g200881 +g200883 +S'crucial' +p200885 +tp200886 +a(g200883 +g200885 +S'role' +p200887 +tp200888 +a(g200885 +g200887 +S'the' +p200889 +tp200890 +a(g200887 +g200889 +S'countryside' +p200891 +tp200892 +a(g200889 +g200891 +S'would' +p200893 +tp200894 +a(g200891 +g200893 +S'play' +p200895 +tp200896 +a(g200893 +g200895 +S'in' +p200897 +tp200898 +a(g200895 +g200897 +S'his' +p200899 +tp200900 +a(g200897 +g200899 +S'work:' +p200901 +tp200902 +a(g200899 +g200901 +S'writing' +p200903 +tp200904 +a(g200901 +g200903 +S'to' +p200905 +tp200906 +a(g200903 +g200905 +S'his' +p200907 +tp200908 +a(g200905 +g200907 +S'friend' +p200909 +tp200910 +a(g200907 +g200909 +S'emile' +p200911 +tp200912 +a(g200909 +g200911 +S'zola,' +p200913 +tp200914 +a(g200911 +g200913 +S'he' +p200915 +tp200916 +a(g200913 +g200915 +S'asserted' +p200917 +tp200918 +a(g200915 +g200917 +S'that' +p200919 +tp200920 +a(g200917 +g200919 +S'"all' +p200921 +tp200922 +a(g200919 +g200921 +S'pictures' +p200923 +tp200924 +a(g200921 +g200923 +S'painted' +p200925 +tp200926 +a(g200923 +g200925 +S'inside,' +p200927 +tp200928 +a(g200925 +g200927 +S'in' +p200929 +tp200930 +a(g200927 +g200929 +S'the' +p200931 +tp200932 +a(g200929 +g200931 +S'studio,' +p200933 +tp200934 +a(g200931 +g200933 +S'will' +p200935 +tp200936 +a(g200933 +g200935 +S'never' +p200937 +tp200938 +a(g200935 +g200937 +S'be' +p200939 +tp200940 +a(g200937 +g200939 +S'as' +p200941 +tp200942 +a(g200939 +g200941 +S'good' +p200943 +tp200944 +a(g200941 +g200943 +S'as' +p200945 +tp200946 +a(g200943 +g200945 +S'those' +p200947 +tp200948 +a(g200945 +g200947 +S'done' +p200949 +tp200950 +a(g200947 +g200949 +S'outside.' +p200951 +tp200952 +a(g200949 +g200951 +S'.' +p200953 +tp200954 +a(g200951 +g200953 +S'.' +p200955 +tp200956 +a(g200953 +g200955 +S'.' +p200957 +tp200958 +a(g200955 +g200957 +S'i' +p200959 +tp200960 +a(g200957 +g200959 +S'see' +p200961 +tp200962 +a(g200959 +g200961 +S'some' +p200963 +tp200964 +a(g200961 +g200963 +S'superb' +p200965 +tp200966 +a(g200963 +g200965 +S'things' +p200967 +tp200968 +a(g200965 +g200967 +S'and' +p200969 +tp200970 +a(g200967 +g200969 +S'i' +p200971 +tp200972 +a(g200969 +g200971 +S'shall' +p200973 +tp200974 +a(g200971 +g200973 +S'have' +p200975 +tp200976 +a(g200973 +g200975 +S'to' +p200977 +tp200978 +a(g200975 +g200977 +S'make' +p200979 +tp200980 +a(g200977 +g200979 +S'up' +p200981 +tp200982 +a(g200979 +g200981 +S'my' +p200983 +tp200984 +a(g200981 +g200983 +S'mind' +p200985 +tp200986 +a(g200983 +g200985 +S'only' +p200987 +tp200988 +a(g200985 +g200987 +S'to' +p200989 +tp200990 +a(g200987 +g200989 +S'do' +p200991 +tp200992 +a(g200989 +g200991 +S'things' +p200993 +tp200994 +a(g200991 +g200993 +S'out-of-doors."' +p200995 +tp200996 +a(g200993 +g200995 +S'this' +p200997 +tp200998 +a(g200995 +g200997 +S'sunlit' +p200999 +tp201000 +a(g200997 +g200999 +S'scene' +p201001 +tp201002 +a(g200999 +g201001 +S'shows' +p201003 +tp201004 +a(g201001 +g201003 +S'the' +p201005 +tp201006 +a(g201003 +g201005 +S'extent' +p201007 +tp201008 +a(g201005 +g201007 +S'to' +p201009 +tp201010 +a(g201007 +g201009 +S'which' +p201011 +tp201012 +a(g201009 +g201011 +S'he' +p201013 +tp201014 +a(g201011 +g201013 +S'absorbed' +p201015 +tp201016 +a(g201013 +g201015 +S'the' +p201017 +tp201018 +a(g201015 +g201017 +S'lessons' +p201019 +tp201020 +a(g201017 +g201019 +S'of' +p201021 +tp201022 +a(g201019 +g201021 +S'impressionism,' +p201023 +tp201024 +a(g201021 +g201023 +S'of' +p201025 +tp201026 +a(g201023 +g201025 +S'capturing' +p201027 +tp201028 +a(g201025 +g201027 +S'the' +p201029 +tp201030 +a(g201027 +g201029 +S'visual' +p201031 +tp201032 +a(g201029 +g201031 +S'sensations' +p201033 +tp201034 +a(g201031 +g201033 +S'of' +p201035 +tp201036 +a(g201033 +g201035 +S'nature' +p201037 +tp201038 +a(g201035 +g201037 +S'with' +p201039 +tp201040 +a(g201037 +g201039 +S'modulated' +p201041 +tp201042 +a(g201039 +g201041 +S'brushwork' +p201043 +tp201044 +a(g201041 +g201043 +S'that' +p201045 +tp201046 +a(g201043 +g201045 +S'examines' +p201047 +tp201048 +a(g201045 +g201047 +S'the' +p201049 +tp201050 +a(g201047 +g201049 +S'relationship' +p201051 +tp201052 +a(g201049 +g201051 +S'between' +p201053 +tp201054 +a(g201051 +g201053 +S'color' +p201055 +tp201056 +a(g201053 +g201055 +S'and' +p201057 +tp201058 +a(g201055 +g201057 +S'light.' +p201059 +tp201060 +a(g201057 +g201059 +S'here' +p201061 +tp201062 +a(g201059 +g201061 +S'the' +p201063 +tp201064 +a(g201061 +g201063 +S'thin' +p201065 +tp201066 +a(g201063 +g201065 +S'application' +p201067 +tp201068 +a(g201065 +g201067 +S'of' +p201069 +tp201070 +a(g201067 +g201069 +S'paint,' +p201071 +tp201072 +a(g201069 +g201071 +S'with' +p201073 +tp201074 +a(g201071 +g201073 +S'spots' +p201075 +tp201076 +a(g201073 +g201075 +S'of' +p201077 +tp201078 +a(g201075 +g201077 +S'canvas' +p201079 +tp201080 +a(g201077 +g201079 +S'showing' +p201081 +tp201082 +a(g201079 +g201081 +S'through,' +p201083 +tp201084 +a(g201081 +g201083 +S'contributes' +p201085 +tp201086 +a(g201083 +g201085 +S'to' +p201087 +tp201088 +a(g201085 +g201087 +S'the' +p201089 +tp201090 +a(g201087 +g201089 +S'light-soaked' +p201091 +tp201092 +a(g201089 +g201091 +S'appearance' +p201093 +tp201094 +a(g201091 +g201093 +S'of' +p201095 +tp201096 +a(g201093 +g201095 +S'the' +p201097 +tp201098 +a(g201095 +g201097 +S'scene.' +p201099 +tp201100 +a(g201097 +g201099 +S'a' +p201101 +tp201102 +a(g201099 +g201101 +S'bright' +p201103 +tp201104 +a(g201101 +g201103 +S'palette' +p201105 +tp201106 +a(g201103 +g201105 +S'of' +p201107 +tp201108 +a(g201105 +g201107 +S'predominantly' +p201109 +tp201110 +a(g201107 +g201109 +S'yellows' +p201111 +tp201112 +a(g201109 +g201111 +S'and' +p201113 +tp201114 +a(g201111 +g201113 +S'greens' +p201115 +tp201116 +a(g201113 +g201115 +S'unifies' +p201117 +tp201118 +a(g201115 +g201117 +S'the' +p201119 +tp201120 +a(g201117 +g201119 +S'composition.' +p201121 +tp201122 +a(g201119 +g201121 +S'while' +p201123 +tp201124 +a(g201121 +g201123 +S'horizontal' +p201125 +tp201126 +a(g201123 +g201125 +S'brushwork' +p201127 +tp201128 +a(g201125 +g201127 +S'creates' +p201129 +tp201130 +a(g201127 +g201129 +S'the' +p201131 +tp201132 +a(g201129 +g201131 +S'mirrored' +p201133 +tp201134 +a(g201131 +g201133 +S'surface' +p201135 +tp201136 +a(g201133 +g201135 +S'of' +p201137 +tp201138 +a(g201135 +g201137 +S'the' +p201139 +tp201140 +a(g201137 +g201139 +S'river,' +p201141 +tp201142 +a(g201139 +g201141 +S'short' +p201143 +tp201144 +a(g201141 +g201143 +S'parallel' +p201145 +tp201146 +a(g201143 +g201145 +S'strokes' +p201147 +tp201148 +a(g201145 +g201147 +S'form' +p201149 +tp201150 +a(g201147 +g201149 +S'much' +p201151 +tp201152 +a(g201149 +g201151 +S'of' +p201153 +tp201154 +a(g201151 +g201153 +S'the' +p201155 +tp201156 +a(g201153 +g201155 +S'foliage.' +p201157 +tp201158 +a(g201155 +g201157 +S'in' +p201159 +tp201160 +a(g201157 +g201159 +S'the' +p201161 +tp201162 +a(g201159 +g201161 +S'1870s' +p201163 +tp201164 +a(g201161 +g201163 +S'cézanne' +p201165 +tp201166 +a(g201163 +g201165 +S'had' +p201167 +tp201168 +a(g201165 +g201167 +S'developed' +p201169 +tp201170 +a(g201167 +g201169 +S'a' +p201171 +tp201172 +a(g201169 +g201171 +S'systematic' +p201173 +tp201174 +a(g201171 +g201173 +S'application' +p201175 +tp201176 +a(g201173 +g201175 +S'of' +p201177 +tp201178 +a(g201175 +g201177 +S'paint' +p201179 +tp201180 +a(g201177 +g201179 +S'distinctly' +p201181 +tp201182 +a(g201179 +g201181 +S'his' +p201183 +tp201184 +a(g201181 +g201183 +S'own,' +p201185 +tp201186 +a(g201183 +g201185 +S'using' +p201187 +tp201188 +a(g201185 +g201187 +S'"constructive' +p201189 +tp201190 +a(g201187 +g201189 +S'strokes"' +p201191 +tp201192 +a(g201189 +g201191 +S'(diagonal,' +p201193 +tp201194 +a(g201191 +g201193 +S'parallel' +p201195 +tp201196 +a(g201193 +g201195 +S'lines)' +p201197 +tp201198 +a(g201195 +g201197 +S'that' +p201199 +tp201200 +a(g201197 +g201199 +S'define' +p201201 +tp201202 +a(g201199 +g201201 +S'all' +p201203 +tp201204 +a(g201201 +g201203 +S'objects' +p201205 +tp201206 +a(g201203 +g201205 +S'in' +p201207 +tp201208 +a(g201205 +g201207 +S'the' +p201209 +tp201210 +a(g201207 +g201209 +S'composition' +p201211 +tp201212 +a(g201209 +g201211 +S'and' +p201213 +tp201214 +a(g201211 +g201213 +S'result' +p201215 +tp201216 +a(g201213 +g201215 +S'in' +p201217 +tp201218 +a(g201215 +g201217 +S'a' +p201219 +tp201220 +a(g201217 +g201219 +S'cohesive,' +p201221 +tp201222 +a(g201219 +g201221 +S'rhythmic' +p201223 +tp201224 +a(g201221 +g201223 +S'surface.' +p201225 +tp201226 +a(g201223 +g201225 +S'with' +p201227 +tp201228 +a(g201225 +g201227 +S'the' +p201229 +tp201230 +a(g201227 +g201229 +S'exception' +p201231 +tp201232 +a(g201229 +g201231 +S'of' +p201233 +tp201234 +a(g201231 +g201233 +S'his' +p201235 +tp201236 +a(g201233 +g201235 +S'scenes' +p201237 +tp201238 +a(g201235 +g201237 +S'of' +p201239 +tp201240 +a(g201237 +g201239 +S'bathers,' +p201241 +tp201242 +a(g201239 +g201241 +S'cézanne\xe2\x80\x99s' +p201243 +tp201244 +a(g201241 +g201243 +S'landscapes' +p201245 +tp201246 +a(g201243 +g201245 +S'are' +p201247 +tp201248 +a(g201245 +g201247 +S'generally' +p201249 +tp201250 +a(g201247 +g201249 +S'empty' +p201251 +tp201252 +a(g201249 +g201251 +S'of' +p201253 +tp201254 +a(g201251 +g201253 +S'figures' +p201255 +tp201256 +a(g201253 +g201255 +S'and' +p201257 +tp201258 +a(g201255 +g201257 +S'thus' +p201259 +tp201260 +a(g201257 +g201259 +S'avoid' +p201261 +tp201262 +a(g201259 +g201261 +S'the' +p201263 +tp201264 +a(g201261 +g201263 +S'typical' +p201265 +tp201266 +a(g201263 +g201265 +S'impressionist' +p201267 +tp201268 +a(g201265 +g201267 +S'narrative' +p201269 +tp201270 +a(g201267 +g201269 +S'of' +p201271 +tp201272 +a(g201269 +g201271 +S'urban' +p201273 +tp201274 +a(g201271 +g201273 +S'residents' +p201275 +tp201276 +a(g201273 +g201275 +S'enjoying' +p201277 +tp201278 +a(g201275 +g201277 +S'outings' +p201279 +tp201280 +a(g201277 +g201279 +S'in' +p201281 +tp201282 +a(g201279 +g201281 +S'the' +p201283 +tp201284 +a(g201281 +g201283 +S'countryside.' +p201285 +tp201286 +a(g201283 +g201285 +S'the' +p201287 +tp201288 +a(g201285 +g201287 +S'exact' +p201289 +tp201290 +a(g201287 +g201289 +S'location' +p201291 +tp201292 +a(g201289 +g201291 +S'of' +p201293 +tp201294 +a(g201291 +g201293 +S'the' +p201295 +tp201296 +a(g201293 +g201295 +S'setting' +p201297 +tp201298 +a(g201295 +g201297 +S'has' +p201299 +tp201300 +a(g201297 +g201299 +S'not' +p201301 +tp201302 +a(g201299 +g201301 +S'been' +p201303 +tp201304 +a(g201301 +g201303 +S'identified' +p201305 +tp201306 +a(g201303 +g201305 +S'in' +p201307 +tp201308 +a(g201305 +g201307 +S'(text' +p201309 +tp201310 +a(g201307 +g201309 +S'by' +p201311 +tp201312 +a(g201309 +g201311 +S'margaret' +p201313 +tp201314 +a(g201311 +g201313 +S'doyle,' +p201315 +tp201316 +a(g201313 +g201315 +S'notes' +p201317 +tp201318 +a(g201315 +g201317 +S'' +p201321 +tp201322 +a(g201319 +g201321 +S'' +p201325 +tp201326 +a(g201323 +g201325 +S'' +p201329 +tp201330 +a(g201327 +g201329 +S'degas\xe2\x80\x99' +p201331 +tp201332 +a(g201329 +g201331 +S'best-known' +p201333 +tp201334 +a(g201331 +g201333 +S'works' +p201335 +tp201336 +a(g201333 +g201335 +S'are' +p201337 +tp201338 +a(g201335 +g201337 +S'those' +p201339 +tp201340 +a(g201337 +g201339 +S'inspired' +p201341 +tp201342 +a(g201339 +g201341 +S'by' +p201343 +tp201344 +a(g201341 +g201343 +S'the' +p201345 +tp201346 +a(g201343 +g201345 +S'ballet.' +p201347 +tp201348 +a(g201345 +g201347 +S'for' +p201349 +tp201350 +a(g201347 +g201349 +S'an' +p201351 +tp201352 +a(g201349 +g201351 +S'artist' +p201353 +tp201354 +a(g201351 +g201353 +S'committed' +p201355 +tp201356 +a(g201353 +g201355 +S'to' +p201357 +tp201358 +a(g201355 +g201357 +S'the' +p201359 +tp201360 +a(g201357 +g201359 +S'depiction' +p201361 +tp201362 +a(g201359 +g201361 +S'of' +p201363 +tp201364 +a(g201361 +g201363 +S'modern' +p201365 +tp201366 +a(g201363 +g201365 +S'life,' +p201367 +tp201368 +a(g201365 +g201367 +S'the' +p201369 +tp201370 +a(g201367 +g201369 +S'theater' +p201371 +tp201372 +a(g201369 +g201371 +S'in' +p201373 +tp201374 +a(g201371 +g201373 +S'all' +p201375 +tp201376 +a(g201373 +g201375 +S'of' +p201377 +tp201378 +a(g201375 +g201377 +S'its' +p201379 +tp201380 +a(g201377 +g201379 +S'forms—the' +p201381 +tp201382 +a(g201379 +g201381 +S'ballet,' +p201383 +tp201384 +a(g201381 +g201383 +S'the' +p201385 +tp201386 +a(g201383 +g201385 +S'opera,' +p201387 +tp201388 +a(g201385 +g201387 +S'even' +p201389 +tp201390 +a(g201387 +g201389 +S'the' +p201391 +tp201392 +a(g201389 +g201391 +S'more' +p201393 +tp201394 +a(g201391 +g201393 +S'raucous' +p201395 +tp201396 +a(g201393 +g201395 +S'café' +p201397 +tp201398 +a(g201395 +g201397 +S'concerts—held' +p201399 +tp201400 +a(g201397 +g201399 +S'a' +p201401 +tp201402 +a(g201399 +g201401 +S'special' +p201403 +tp201404 +a(g201401 +g201403 +S'appeal.' +p201405 +tp201406 +a(g201403 +g201405 +S'what' +p201407 +tp201408 +a(g201405 +g201407 +S'intrigued' +p201409 +tp201410 +a(g201407 +g201409 +S'him' +p201411 +tp201412 +a(g201409 +g201411 +S'most,' +p201413 +tp201414 +a(g201411 +g201413 +S'however,' +p201415 +tp201416 +a(g201413 +g201415 +S'was' +p201417 +tp201418 +a(g201415 +g201417 +S'not' +p201419 +tp201420 +a(g201417 +g201419 +S'the' +p201421 +tp201422 +a(g201419 +g201421 +S'formal,' +p201423 +tp201424 +a(g201421 +g201423 +S'polished' +p201425 +tp201426 +a(g201423 +g201425 +S'performance,' +p201427 +tp201428 +a(g201425 +g201427 +S'but' +p201429 +tp201430 +a(g201427 +g201429 +S'rather' +p201431 +tp201432 +a(g201429 +g201431 +S'the' +p201433 +tp201434 +a(g201431 +g201433 +S'casual,' +p201435 +tp201436 +a(g201433 +g201435 +S'candid' +p201437 +tp201438 +a(g201435 +g201437 +S'moments' +p201439 +tp201440 +a(g201437 +g201439 +S'behind' +p201441 +tp201442 +a(g201439 +g201441 +S'the' +p201443 +tp201444 +a(g201441 +g201443 +S'scenes,' +p201445 +tp201446 +a(g201443 +g201445 +S'with' +p201447 +tp201448 +a(g201445 +g201447 +S'dancers' +p201449 +tp201450 +a(g201447 +g201449 +S'at' +p201451 +tp201452 +a(g201449 +g201451 +S'rehearsal' +p201453 +tp201454 +a(g201451 +g201453 +S'or' +p201455 +tp201456 +a(g201453 +g201455 +S'at' +p201457 +tp201458 +a(g201455 +g201457 +S'rest.' +p201459 +tp201460 +a(g201457 +g201459 +S'it' +p201461 +tp201462 +a(g201459 +g201461 +S'is' +p201463 +tp201464 +a(g201461 +g201463 +S'a' +p201465 +tp201466 +a(g201463 +g201465 +S'theme' +p201467 +tp201468 +a(g201465 +g201467 +S'that' +p201469 +tp201470 +a(g201467 +g201469 +S'the' +p201471 +tp201472 +a(g201469 +g201471 +S'artist' +p201473 +tp201474 +a(g201471 +g201473 +S'explored' +p201475 +tp201476 +a(g201473 +g201475 +S'time' +p201477 +tp201478 +a(g201475 +g201477 +S'and' +p201479 +tp201480 +a(g201477 +g201479 +S'again,' +p201481 +tp201482 +a(g201479 +g201481 +S'not' +p201483 +tp201484 +a(g201481 +g201483 +S'only' +p201485 +tp201486 +a(g201483 +g201485 +S'in' +p201487 +tp201488 +a(g201485 +g201487 +S'his' +p201489 +tp201490 +a(g201487 +g201489 +S'ballet' +p201491 +tp201492 +a(g201489 +g201491 +S'paintings' +p201493 +tp201494 +a(g201491 +g201493 +S'but' +p201495 +tp201496 +a(g201493 +g201495 +S'also' +p201497 +tp201498 +a(g201495 +g201497 +S'in' +p201499 +tp201500 +a(g201497 +g201499 +S'his' +p201501 +tp201502 +a(g201499 +g201501 +S'horse-racing' +p201503 +tp201504 +a(g201501 +g201503 +S'scenes.' +p201505 +tp201506 +a(g201503 +g201505 +S'as' +p201507 +tp201508 +a(g201505 +g201507 +S'its' +p201509 +tp201510 +a(g201507 +g201509 +S'title' +p201511 +tp201512 +a(g201509 +g201511 +S'suggests,' +p201513 +tp201514 +a(g201511 +g201513 +S'degas' +p201515 +tp201516 +a(g201513 +g201515 +S'was' +p201517 +tp201518 +a(g201515 +g201517 +S'well' +p201519 +tp201520 +a(g201517 +g201519 +S'acquainted' +p201521 +tp201522 +a(g201519 +g201521 +S'with' +p201523 +tp201524 +a(g201521 +g201523 +S'such' +p201525 +tp201526 +a(g201523 +g201525 +S'backstage' +p201527 +tp201528 +a(g201525 +g201527 +S'intrigues' +p201529 +tp201530 +a(g201527 +g201529 +S'from' +p201531 +tp201532 +a(g201529 +g201531 +S'his' +p201533 +tp201534 +a(g201531 +g201533 +S'own' +p201535 +tp201536 +a(g201533 +g201535 +S'observations,' +p201537 +tp201538 +a(g201535 +g201537 +S'first' +p201539 +tp201540 +a(g201537 +g201539 +S'as' +p201541 +tp201542 +a(g201539 +g201541 +S'an' +p201543 +tp201544 +a(g201541 +g201543 +S'occasional' +p201545 +tp201546 +a(g201543 +g201545 +S'visitor' +p201547 +tp201548 +a(g201545 +g201547 +S'and' +p201549 +tp201550 +a(g201547 +g201549 +S'later' +p201551 +tp201552 +a(g201549 +g201551 +S'as' +p201553 +tp201554 +a(g201551 +g201553 +S'an' +p201555 +tp201556 +a(g201553 +g201555 +S'abonné' +p201557 +tp201558 +a(g201555 +g201557 +S'(he' +p201559 +tp201560 +a(g201557 +g201559 +S'secured' +p201561 +tp201562 +a(g201559 +g201561 +S'a' +p201563 +tp201564 +a(g201561 +g201563 +S'subscription' +p201565 +tp201566 +a(g201563 +g201565 +S'to' +p201567 +tp201568 +a(g201565 +g201567 +S'the' +p201569 +tp201570 +a(g201567 +g201569 +S'opéra' +p201571 +tp201572 +a(g201569 +g201571 +S'in' +p201573 +tp201574 +a(g201571 +g201573 +S'the' +p201575 +tp201576 +a(g201573 +g201575 +S'mid-1880s).' +p201577 +tp201578 +a(g201575 +g201577 +S'he' +p201579 +tp201580 +a(g201577 +g201579 +S'also' +p201581 +tp201582 +a(g201579 +g201581 +S'drew' +p201583 +tp201584 +a(g201581 +g201583 +S'upon' +p201585 +tp201586 +a(g201583 +g201585 +S'other' +p201587 +tp201588 +a(g201585 +g201587 +S'sources:' +p201589 +tp201590 +a(g201587 +g201589 +S'most' +p201591 +tp201592 +a(g201589 +g201591 +S'importantly,' +p201593 +tp201594 +a(g201591 +g201593 +S'a' +p201595 +tp201596 +a(g201593 +g201595 +S'series' +p201597 +tp201598 +a(g201595 +g201597 +S'of' +p201599 +tp201600 +a(g201597 +g201599 +S'short' +p201601 +tp201602 +a(g201599 +g201601 +S'stories' +p201603 +tp201604 +a(g201601 +g201603 +S'by' +p201605 +tp201606 +a(g201603 +g201605 +S'his' +p201607 +tp201608 +a(g201605 +g201607 +S'friend' +p201609 +tp201610 +a(g201607 +g201609 +S'ludovic' +p201611 +tp201612 +a(g201609 +g201611 +S'halévy.' +p201613 +tp201614 +a(g201611 +g201613 +S'first' +p201615 +tp201616 +a(g201613 +g201615 +S'published' +p201617 +tp201618 +a(g201615 +g201617 +S'separately' +p201619 +tp201620 +a(g201617 +g201619 +S'between' +p201621 +tp201622 +a(g201619 +g201621 +S'1870' +p201623 +tp201624 +a(g201621 +g201623 +S'and' +p201625 +tp201626 +a(g201623 +g201625 +S'1880' +p201627 +tp201628 +a(g201625 +g201627 +S'and' +p201629 +tp201630 +a(g201627 +g201629 +S'then' +p201631 +tp201632 +a(g201629 +g201631 +S'collectively' +p201633 +tp201634 +a(g201631 +g201633 +S'in' +p201635 +tp201636 +a(g201633 +g201635 +S'1883' +p201637 +tp201638 +a(g201635 +g201637 +S'under' +p201639 +tp201640 +a(g201637 +g201639 +S'the' +p201641 +tp201642 +a(g201639 +g201641 +S'title' +p201643 +tp201644 +a(g201641 +g201643 +S'it' +p201645 +tp201646 +a(g201643 +g201645 +S'has' +p201647 +tp201648 +a(g201645 +g201647 +S'been' +p201649 +tp201650 +a(g201647 +g201649 +S'proposed' +p201651 +tp201652 +a(g201649 +g201651 +S'that' +p201653 +tp201654 +a(g201651 +g201653 +S'this' +p201655 +tp201656 +a(g201653 +g201655 +S'painting' +p201657 +tp201658 +a(g201655 +g201657 +S'was' +p201659 +tp201660 +a(g201657 +g201659 +S'intended' +p201661 +tp201662 +a(g201659 +g201661 +S'as' +p201663 +tp201664 +a(g201661 +g201663 +S'a' +p201665 +tp201666 +a(g201663 +g201665 +S'sketch' +p201667 +tp201668 +a(g201665 +g201667 +S'for' +p201669 +tp201670 +a(g201667 +g201669 +S'a' +p201671 +tp201672 +a(g201669 +g201671 +S'larger' +p201673 +tp201674 +a(g201671 +g201673 +S'work,' +p201675 +tp201676 +a(g201673 +g201675 +S'a' +p201677 +tp201678 +a(g201675 +g201677 +S'reasonable' +p201679 +tp201680 +a(g201677 +g201679 +S'assumption' +p201681 +tp201682 +a(g201679 +g201681 +S'given' +p201683 +tp201684 +a(g201681 +g201683 +S'its' +p201685 +tp201686 +a(g201683 +g201685 +S'modest' +p201687 +tp201688 +a(g201685 +g201687 +S'scale' +p201689 +tp201690 +a(g201687 +g201689 +S'and' +p201691 +tp201692 +a(g201689 +g201691 +S'rapidly' +p201693 +tp201694 +a(g201691 +g201693 +S'painted' +p201695 +tp201696 +a(g201693 +g201695 +S'surface.' +p201697 +tp201698 +a(g201695 +g201697 +S'(text' +p201699 +tp201700 +a(g201697 +g201699 +S'by' +p201701 +tp201702 +a(g201699 +g201701 +S'kimberly' +p201703 +tp201704 +a(g201701 +g201703 +S'jones,' +p201705 +tp201706 +a(g201703 +g201705 +S'notes' +p201707 +tp201708 +a(g201705 +g201707 +S'' +p201711 +tp201712 +a(g201709 +g201711 +S'' +p201715 +tp201716 +a(g201713 +g201715 +S'in' +p201717 +tp201718 +a(g201715 +g201717 +S'february' +p201719 +tp201720 +a(g201717 +g201719 +S'1888' +p201721 +tp201722 +a(g201719 +g201721 +S'van' +p201723 +tp201724 +a(g201721 +g201723 +S'gogh' +p201725 +tp201726 +a(g201723 +g201725 +S'left' +p201727 +tp201728 +a(g201725 +g201727 +S'paris,' +p201729 +tp201730 +a(g201727 +g201729 +S'where' +p201731 +tp201732 +a(g201729 +g201731 +S'he' +p201733 +tp201734 +a(g201731 +g201733 +S'had' +p201735 +tp201736 +a(g201733 +g201735 +S'been' +p201737 +tp201738 +a(g201735 +g201737 +S'residing' +p201739 +tp201740 +a(g201737 +g201739 +S'for' +p201741 +tp201742 +a(g201739 +g201741 +S'nearly' +p201743 +tp201744 +a(g201741 +g201743 +S'two' +p201745 +tp201746 +a(g201743 +g201745 +S'years,' +p201747 +tp201748 +a(g201745 +g201747 +S'and' +p201749 +tp201750 +a(g201747 +g201749 +S'went' +p201751 +tp201752 +a(g201749 +g201751 +S'to' +p201753 +tp201754 +a(g201751 +g201753 +S'arles,' +p201755 +tp201756 +a(g201753 +g201755 +S'a' +p201757 +tp201758 +a(g201755 +g201757 +S'small' +p201759 +tp201760 +a(g201757 +g201759 +S'town' +p201761 +tp201762 +a(g201759 +g201761 +S'in' +p201763 +tp201764 +a(g201761 +g201763 +S'provence.' +p201765 +tp201766 +a(g201763 +g201765 +S'exhausted' +p201767 +tp201768 +a(g201765 +g201767 +S'by' +p201769 +tp201770 +a(g201767 +g201769 +S'the' +p201771 +tp201772 +a(g201769 +g201771 +S'pressures' +p201773 +tp201774 +a(g201771 +g201773 +S'of' +p201775 +tp201776 +a(g201773 +g201775 +S'city' +p201777 +tp201778 +a(g201775 +g201777 +S'life,' +p201779 +tp201780 +a(g201777 +g201779 +S'he' +p201781 +tp201782 +a(g201779 +g201781 +S'was' +p201783 +tp201784 +a(g201781 +g201783 +S'drawn' +p201785 +tp201786 +a(g201783 +g201785 +S'by' +p201787 +tp201788 +a(g201785 +g201787 +S'the' +p201789 +tp201790 +a(g201787 +g201789 +S'relative' +p201791 +tp201792 +a(g201789 +g201791 +S'peace' +p201793 +tp201794 +a(g201791 +g201793 +S'and' +p201795 +tp201796 +a(g201793 +g201795 +S'simplicity' +p201797 +tp201798 +a(g201795 +g201797 +S'of' +p201799 +tp201800 +a(g201797 +g201799 +S'rural' +p201801 +tp201802 +a(g201799 +g201801 +S'existence' +p201803 +tp201804 +a(g201801 +g201803 +S'and' +p201805 +tp201806 +a(g201803 +g201805 +S'the' +p201807 +tp201808 +a(g201805 +g201807 +S'warmer' +p201809 +tp201810 +a(g201807 +g201809 +S'climate' +p201811 +tp201812 +a(g201809 +g201811 +S'promised' +p201813 +tp201814 +a(g201811 +g201813 +S'by' +p201815 +tp201816 +a(g201813 +g201815 +S'the' +p201817 +tp201818 +a(g201815 +g201817 +S'south' +p201819 +tp201820 +a(g201817 +g201819 +S'of' +p201821 +tp201822 +a(g201819 +g201821 +S'france.' +p201823 +tp201824 +a(g201821 +g201823 +S'his' +p201825 +tp201826 +a(g201823 +g201825 +S'initial' +p201827 +tp201828 +a(g201825 +g201827 +S'perception' +p201829 +tp201830 +a(g201827 +g201829 +S'of' +p201831 +tp201832 +a(g201829 +g201831 +S'arles' +p201833 +tp201834 +a(g201831 +g201833 +S'fell' +p201835 +tp201836 +a(g201833 +g201835 +S'short' +p201837 +tp201838 +a(g201835 +g201837 +S'of' +p201839 +tp201840 +a(g201837 +g201839 +S'his' +p201841 +tp201842 +a(g201839 +g201841 +S'expectations,' +p201843 +tp201844 +a(g201841 +g201843 +S'however.' +p201845 +tp201846 +a(g201843 +g201845 +S'in' +p201847 +tp201848 +a(g201845 +g201847 +S'lieu' +p201849 +tp201850 +a(g201847 +g201849 +S'of' +p201851 +tp201852 +a(g201849 +g201851 +S'the' +p201853 +tp201854 +a(g201851 +g201853 +S'bright,' +p201855 +tp201856 +a(g201853 +g201855 +S'sunlit' +p201857 +tp201858 +a(g201855 +g201857 +S'landscape' +p201859 +tp201860 +a(g201857 +g201859 +S'he' +p201861 +tp201862 +a(g201859 +g201861 +S'had' +p201863 +tp201864 +a(g201861 +g201863 +S'envisioned,' +p201865 +tp201866 +a(g201863 +g201865 +S'he' +p201867 +tp201868 +a(g201865 +g201867 +S'encountered' +p201869 +tp201870 +a(g201867 +g201869 +S'one' +p201871 +tp201872 +a(g201869 +g201871 +S'covered' +p201873 +tp201874 +a(g201871 +g201873 +S'with' +p201875 +tp201876 +a(g201873 +g201875 +S'snow.' +p201877 +tp201878 +a(g201875 +g201877 +S'his' +p201879 +tp201880 +a(g201877 +g201879 +S'lack' +p201881 +tp201882 +a(g201879 +g201881 +S'of' +p201883 +tp201884 +a(g201881 +g201883 +S'both' +p201885 +tp201886 +a(g201883 +g201885 +S'money' +p201887 +tp201888 +a(g201885 +g201887 +S'and' +p201889 +tp201890 +a(g201887 +g201889 +S'friends' +p201891 +tp201892 +a(g201889 +g201891 +S'only' +p201893 +tp201894 +a(g201891 +g201893 +S'added' +p201895 +tp201896 +a(g201893 +g201895 +S'to' +p201897 +tp201898 +a(g201895 +g201897 +S'his' +p201899 +tp201900 +a(g201897 +g201899 +S'disenchantment,' +p201901 +tp201902 +a(g201899 +g201901 +S'though' +p201903 +tp201904 +a(g201901 +g201903 +S'it' +p201905 +tp201906 +a(g201903 +g201905 +S'would' +p201907 +tp201908 +a(g201905 +g201907 +S'quickly' +p201909 +tp201910 +a(g201907 +g201909 +S'fade.' +p201911 +tp201912 +a(g201909 +g201911 +S'the' +p201913 +tp201914 +a(g201911 +g201913 +S'artist' +p201915 +tp201916 +a(g201913 +g201915 +S'soon' +p201917 +tp201918 +a(g201915 +g201917 +S'found' +p201919 +tp201920 +a(g201917 +g201919 +S'himself' +p201921 +tp201922 +a(g201919 +g201921 +S'captivated' +p201923 +tp201924 +a(g201921 +g201923 +S'by' +p201925 +tp201926 +a(g201923 +g201925 +S'the' +p201927 +tp201928 +a(g201925 +g201927 +S'distinctive' +p201929 +tp201930 +a(g201927 +g201929 +S'character' +p201931 +tp201932 +a(g201929 +g201931 +S'of' +p201933 +tp201934 +a(g201931 +g201933 +S'the' +p201935 +tp201936 +a(g201933 +g201935 +S'region,' +p201937 +tp201938 +a(g201935 +g201937 +S'and' +p201939 +tp201940 +a(g201937 +g201939 +S'he' +p201941 +tp201942 +a(g201939 +g201941 +S'threw' +p201943 +tp201944 +a(g201941 +g201943 +S'himself' +p201945 +tp201946 +a(g201943 +g201945 +S'into' +p201947 +tp201948 +a(g201945 +g201947 +S'his' +p201949 +tp201950 +a(g201947 +g201949 +S'art' +p201951 +tp201952 +a(g201949 +g201951 +S'wholeheartedly.' +p201953 +tp201954 +a(g201951 +g201953 +S'van' +p201955 +tp201956 +a(g201953 +g201955 +S'gogh\xe2\x80\x99s' +p201957 +tp201958 +a(g201955 +g201957 +S'time' +p201959 +tp201960 +a(g201957 +g201959 +S'in' +p201961 +tp201962 +a(g201959 +g201961 +S'arles' +p201963 +tp201964 +a(g201961 +g201963 +S'proved' +p201965 +tp201966 +a(g201963 +g201965 +S'to' +p201967 +tp201968 +a(g201965 +g201967 +S'be' +p201969 +tp201970 +a(g201967 +g201969 +S'both' +p201971 +tp201972 +a(g201969 +g201971 +S'productive' +p201973 +tp201974 +a(g201971 +g201973 +S'and' +p201975 +tp201976 +a(g201973 +g201975 +S'transformative.' +p201977 +tp201978 +a(g201975 +g201977 +S'in' +p201979 +tp201980 +a(g201977 +g201979 +S'the' +p201981 +tp201982 +a(g201979 +g201981 +S'space' +p201983 +tp201984 +a(g201981 +g201983 +S'of' +p201985 +tp201986 +a(g201983 +g201985 +S'approximately' +p201987 +tp201988 +a(g201985 +g201987 +S'fifteen' +p201989 +tp201990 +a(g201987 +g201989 +S'months,' +p201991 +tp201992 +a(g201989 +g201991 +S'he' +p201993 +tp201994 +a(g201991 +g201993 +S'produced' +p201995 +tp201996 +a(g201993 +g201995 +S'more' +p201997 +tp201998 +a(g201995 +g201997 +S'than' +p201999 +tp202000 +a(g201997 +g201999 +S'two' +p202001 +tp202002 +a(g201999 +g202001 +S'hundred' +p202003 +tp202004 +a(g202001 +g202003 +S'paintings,' +p202005 +tp202006 +a(g202003 +g202005 +S'made' +p202007 +tp202008 +a(g202005 +g202007 +S'almost' +p202009 +tp202010 +a(g202007 +g202009 +S'one' +p202011 +tp202012 +a(g202009 +g202011 +S'hundred' +p202013 +tp202014 +a(g202011 +g202013 +S'drawings,' +p202015 +tp202016 +a(g202013 +g202015 +S'and' +p202017 +tp202018 +a(g202015 +g202017 +S'wrote' +p202019 +tp202020 +a(g202017 +g202019 +S'more' +p202021 +tp202022 +a(g202019 +g202021 +S'than' +p202023 +tp202024 +a(g202021 +g202023 +S'two' +p202025 +tp202026 +a(g202023 +g202025 +S'hundred' +p202027 +tp202028 +a(g202025 +g202027 +S'letters.' +p202029 +tp202030 +a(g202027 +g202029 +S'the' +p202031 +tp202032 +a(g202029 +g202031 +S'works' +p202033 +tp202034 +a(g202031 +g202033 +S'he' +p202035 +tp202036 +a(g202033 +g202035 +S'produced' +p202037 +tp202038 +a(g202035 +g202037 +S'display' +p202039 +tp202040 +a(g202037 +g202039 +S'a' +p202041 +tp202042 +a(g202039 +g202041 +S'maturity' +p202043 +tp202044 +a(g202041 +g202043 +S'and' +p202045 +tp202046 +a(g202043 +g202045 +S'a' +p202047 +tp202048 +a(g202045 +g202047 +S'cogency' +p202049 +tp202050 +a(g202047 +g202049 +S'of' +p202051 +tp202052 +a(g202049 +g202051 +S'style,' +p202053 +tp202054 +a(g202051 +g202053 +S'technique,' +p202055 +tp202056 +a(g202053 +g202055 +S'and' +p202057 +tp202058 +a(g202055 +g202057 +S'personal' +p202059 +tp202060 +a(g202057 +g202059 +S'artistic' +p202061 +tp202062 +a(g202059 +g202061 +S'vision' +p202063 +tp202064 +a(g202061 +g202063 +S'that' +p202065 +tp202066 +a(g202063 +g202065 +S'had' +p202067 +tp202068 +a(g202065 +g202067 +S'previously' +p202069 +tp202070 +a(g202067 +g202069 +S'been' +p202071 +tp202072 +a(g202069 +g202071 +S'lacking' +p202073 +tp202074 +a(g202071 +g202073 +S'in' +p202075 +tp202076 +a(g202073 +g202075 +S'his' +p202077 +tp202078 +a(g202075 +g202077 +S'work.' +p202079 +tp202080 +a(g202077 +g202079 +S'it' +p202081 +tp202082 +a(g202079 +g202081 +S'was' +p202083 +tp202084 +a(g202081 +g202083 +S'there,' +p202085 +tp202086 +a(g202083 +g202085 +S'working' +p202087 +tp202088 +a(g202085 +g202087 +S'largely' +p202089 +tp202090 +a(g202087 +g202089 +S'in' +p202091 +tp202092 +a(g202089 +g202091 +S'isolation,' +p202093 +tp202094 +a(g202091 +g202093 +S'that' +p202095 +tp202096 +a(g202093 +g202095 +S'van' +p202097 +tp202098 +a(g202095 +g202097 +S'gogh' +p202099 +tp202100 +a(g202097 +g202099 +S'truly' +p202101 +tp202102 +a(g202099 +g202101 +S'came' +p202103 +tp202104 +a(g202101 +g202103 +S'into' +p202105 +tp202106 +a(g202103 +g202105 +S'his' +p202107 +tp202108 +a(g202105 +g202107 +S'own' +p202109 +tp202110 +a(g202107 +g202109 +S'as' +p202111 +tp202112 +a(g202109 +g202111 +S'an' +p202113 +tp202114 +a(g202111 +g202113 +S'artist.' +p202115 +tp202116 +a(g202113 +g202115 +S'van' +p202117 +tp202118 +a(g202115 +g202117 +S'gogh' +p202119 +tp202120 +a(g202117 +g202119 +S'himself' +p202121 +tp202122 +a(g202119 +g202121 +S'was' +p202123 +tp202124 +a(g202121 +g202123 +S'aware' +p202125 +tp202126 +a(g202123 +g202125 +S'of' +p202127 +tp202128 +a(g202125 +g202127 +S'this' +p202129 +tp202130 +a(g202127 +g202129 +S'transformation,' +p202131 +tp202132 +a(g202129 +g202131 +S'declaring' +p202133 +tp202134 +a(g202131 +g202133 +S'to' +p202135 +tp202136 +a(g202133 +g202135 +S'his' +p202137 +tp202138 +a(g202135 +g202137 +S'brother' +p202139 +tp202140 +a(g202137 +g202139 +S'that' +p202141 +tp202142 +a(g202139 +g202141 +S'"my' +p202143 +tp202144 +a(g202141 +g202143 +S'concentration' +p202145 +tp202146 +a(g202143 +g202145 +S'becomes' +p202147 +tp202148 +a(g202145 +g202147 +S'more' +p202149 +tp202150 +a(g202147 +g202149 +S'intense,' +p202151 +tp202152 +a(g202149 +g202151 +S'my' +p202153 +tp202154 +a(g202151 +g202153 +S'hand' +p202155 +tp202156 +a(g202153 +g202155 +S'more' +p202157 +tp202158 +a(g202155 +g202157 +S'sure."' +p202159 +tp202160 +a(g202157 +g202159 +S'van' +p202161 +tp202162 +a(g202159 +g202161 +S'gogh' +p202163 +tp202164 +a(g202161 +g202163 +S'embraced' +p202165 +tp202166 +a(g202163 +g202165 +S'nature' +p202167 +tp202168 +a(g202165 +g202167 +S'with' +p202169 +tp202170 +a(g202167 +g202169 +S'a' +p202171 +tp202172 +a(g202169 +g202171 +S'renewed' +p202173 +tp202174 +a(g202171 +g202173 +S'vigor,' +p202175 +tp202176 +a(g202173 +g202175 +S'spending' +p202177 +tp202178 +a(g202175 +g202177 +S'much' +p202179 +tp202180 +a(g202177 +g202179 +S'of' +p202181 +tp202182 +a(g202179 +g202181 +S'his' +p202183 +tp202184 +a(g202181 +g202183 +S'time' +p202185 +tp202186 +a(g202183 +g202185 +S'out' +p202187 +tp202188 +a(g202185 +g202187 +S'of' +p202189 +tp202190 +a(g202187 +g202189 +S'doors' +p202191 +tp202192 +a(g202189 +g202191 +S'producing' +p202193 +tp202194 +a(g202191 +g202193 +S'images' +p202195 +tp202196 +a(g202193 +g202195 +S'of' +p202197 +tp202198 +a(g202195 +g202197 +S'orchards' +p202199 +tp202200 +a(g202197 +g202199 +S'in' +p202201 +tp202202 +a(g202199 +g202201 +S'bloom,' +p202203 +tp202204 +a(g202201 +g202203 +S'seascapes,' +p202205 +tp202206 +a(g202203 +g202205 +S'and' +p202207 +tp202208 +a(g202205 +g202207 +S'harvests' +p202209 +tp202210 +a(g202207 +g202209 +S'such' +p202211 +tp202212 +a(g202209 +g202211 +S'as' +p202213 +tp202214 +a(g202211 +g202213 +S'this' +p202215 +tp202216 +a(g202213 +g202215 +S'farm' +p202217 +tp202218 +a(g202215 +g202217 +S'was' +p202219 +tp202220 +a(g202217 +g202219 +S'an' +p202221 +tp202222 +a(g202219 +g202221 +S'ideal' +p202223 +tp202224 +a(g202221 +g202223 +S'subject' +p202225 +tp202226 +a(g202223 +g202225 +S'for' +p202227 +tp202228 +a(g202225 +g202227 +S'the' +p202229 +tp202230 +a(g202227 +g202229 +S'artist.' +p202231 +tp202232 +a(g202229 +g202231 +S'both' +p202233 +tp202234 +a(g202231 +g202233 +S'picturesque' +p202235 +tp202236 +a(g202233 +g202235 +S'and' +p202237 +tp202238 +a(g202235 +g202237 +S'accessible—the' +p202239 +tp202240 +a(g202237 +g202239 +S'farmhouse' +p202241 +tp202242 +a(g202239 +g202241 +S'was' +p202243 +tp202244 +a(g202241 +g202243 +S'located' +p202245 +tp202246 +a(g202243 +g202245 +S'not' +p202247 +tp202248 +a(g202245 +g202247 +S'far' +p202249 +tp202250 +a(g202247 +g202249 +S'from' +p202251 +tp202252 +a(g202249 +g202251 +S'yellow' +p202253 +tp202254 +a(g202251 +g202253 +S'house,' +p202255 +tp202256 +a(g202253 +g202255 +S'which' +p202257 +tp202258 +a(g202255 +g202257 +S'the' +p202259 +tp202260 +a(g202257 +g202259 +S'artist' +p202261 +tp202262 +a(g202259 +g202261 +S'had' +p202263 +tp202264 +a(g202261 +g202263 +S'begun' +p202265 +tp202266 +a(g202263 +g202265 +S'renting' +p202267 +tp202268 +a(g202265 +g202267 +S'the' +p202269 +tp202270 +a(g202267 +g202269 +S'previous' +p202271 +tp202272 +a(g202269 +g202271 +S'month—this' +p202273 +tp202274 +a(g202271 +g202273 +S'motif' +p202275 +tp202276 +a(g202273 +g202275 +S'appeared' +p202277 +tp202278 +a(g202275 +g202277 +S'in' +p202279 +tp202280 +a(g202277 +g202279 +S'a' +p202281 +tp202282 +a(g202279 +g202281 +S'number' +p202283 +tp202284 +a(g202281 +g202283 +S'of' +p202285 +tp202286 +a(g202283 +g202285 +S'paintings' +p202287 +tp202288 +a(g202285 +g202287 +S'and' +p202289 +tp202290 +a(g202287 +g202289 +S'drawings' +p202291 +tp202292 +a(g202289 +g202291 +S'van' +p202293 +tp202294 +a(g202291 +g202293 +S'gogh' +p202295 +tp202296 +a(g202293 +g202295 +S'produced' +p202297 +tp202298 +a(g202295 +g202297 +S'that' +p202299 +tp202300 +a(g202297 +g202299 +S'summer.' +p202301 +tp202302 +a(g202299 +g202301 +S'(text' +p202303 +tp202304 +a(g202301 +g202303 +S'by' +p202305 +tp202306 +a(g202303 +g202305 +S'kimberly' +p202307 +tp202308 +a(g202305 +g202307 +S'jones,' +p202309 +tp202310 +a(g202307 +g202309 +S'notes' +p202311 +tp202312 +a(g202309 +g202311 +S'' +p202315 +tp202316 +a(g202313 +g202315 +S'' +p202319 +tp202320 +a(g202317 +g202319 +S'' +p202323 +tp202324 +a(g202321 +g202323 +S'a' +p202325 +tp202326 +a(g202323 +g202325 +S'king' +p202327 +tp202328 +a(g202325 +g202327 +S'charles' +p202329 +tp202330 +a(g202327 +g202329 +S'spaniel' +p202331 +tp202332 +a(g202329 +g202331 +S'here' +p202333 +tp202334 +a(g202331 +g202333 +S'manet' +p202335 +tp202336 +a(g202333 +g202335 +S'portrays' +p202337 +tp202338 +a(g202335 +g202337 +S'a' +p202339 +tp202340 +a(g202337 +g202339 +S'king' +p202341 +tp202342 +a(g202339 +g202341 +S'charles' +p202343 +tp202344 +a(g202341 +g202343 +S'spaniel' +p202345 +tp202346 +a(g202343 +g202345 +S'(or' +p202347 +tp202348 +a(g202345 +g202347 +S'cavalier' +p202349 +tp202350 +a(g202347 +g202349 +S'king' +p202351 +tp202352 +a(g202349 +g202351 +S'charles' +p202353 +tp202354 +a(g202351 +g202353 +S'spaniel' +p202355 +tp202356 +a(g202353 +g202355 +S'as' +p202357 +tp202358 +a(g202355 +g202357 +S'it' +p202359 +tp202360 +a(g202357 +g202359 +S'is' +p202361 +tp202362 +a(g202359 +g202361 +S'more' +p202363 +tp202364 +a(g202361 +g202363 +S'commonly' +p202365 +tp202366 +a(g202363 +g202365 +S'called' +p202367 +tp202368 +a(g202365 +g202367 +S'today),' +p202369 +tp202370 +a(g202367 +g202369 +S'a' +p202371 +tp202372 +a(g202369 +g202371 +S'breed' +p202373 +tp202374 +a(g202371 +g202373 +S'distinguished' +p202375 +tp202376 +a(g202373 +g202375 +S'by' +p202377 +tp202378 +a(g202375 +g202377 +S'its' +p202379 +tp202380 +a(g202377 +g202379 +S'long' +p202381 +tp202382 +a(g202379 +g202381 +S'silky' +p202383 +tp202384 +a(g202381 +g202383 +S'coat' +p202385 +tp202386 +a(g202383 +g202385 +S'and' +p202387 +tp202388 +a(g202385 +g202387 +S'drooping' +p202389 +tp202390 +a(g202387 +g202389 +S'ears.' +p202391 +tp202392 +a(g202389 +g202391 +S'named' +p202393 +tp202394 +a(g202391 +g202393 +S'for' +p202395 +tp202396 +a(g202393 +g202395 +S'king' +p202397 +tp202398 +a(g202395 +g202397 +S'charles' +p202399 +tp202400 +a(g202397 +g202399 +S'ii' +p202401 +tp202402 +a(g202399 +g202401 +S'of' +p202403 +tp202404 +a(g202401 +g202403 +S'england,' +p202405 +tp202406 +a(g202403 +g202405 +S'whose' +p202407 +tp202408 +a(g202405 +g202407 +S'fondness' +p202409 +tp202410 +a(g202407 +g202409 +S'for' +p202411 +tp202412 +a(g202409 +g202411 +S'the' +p202413 +tp202414 +a(g202411 +g202413 +S'breed' +p202415 +tp202416 +a(g202413 +g202415 +S'was' +p202417 +tp202418 +a(g202415 +g202417 +S'legendary,' +p202419 +tp202420 +a(g202417 +g202419 +S'this' +p202421 +tp202422 +a(g202419 +g202421 +S'toy' +p202423 +tp202424 +a(g202421 +g202423 +S'spaniel' +p202425 +tp202426 +a(g202423 +g202425 +S'was' +p202427 +tp202428 +a(g202425 +g202427 +S'a' +p202429 +tp202430 +a(g202427 +g202429 +S'favorite' +p202431 +tp202432 +a(g202429 +g202431 +S'of' +p202433 +tp202434 +a(g202431 +g202433 +S'the' +p202435 +tp202436 +a(g202433 +g202435 +S'british' +p202437 +tp202438 +a(g202435 +g202437 +S'aristocracy' +p202439 +tp202440 +a(g202437 +g202439 +S'from' +p202441 +tp202442 +a(g202439 +g202441 +S'the' +p202443 +tp202444 +a(g202441 +g202443 +S'sixteenth' +p202445 +tp202446 +a(g202443 +g202445 +S'century' +p202447 +tp202448 +a(g202445 +g202447 +S'onward.' +p202449 +tp202450 +a(g202447 +g202449 +S'with' +p202451 +tp202452 +a(g202449 +g202451 +S'a' +p202453 +tp202454 +a(g202451 +g202453 +S'sweet,' +p202455 +tp202456 +a(g202453 +g202455 +S'playful' +p202457 +tp202458 +a(g202455 +g202457 +S'disposition,' +p202459 +tp202460 +a(g202457 +g202459 +S'they' +p202461 +tp202462 +a(g202459 +g202461 +S'were' +p202463 +tp202464 +a(g202461 +g202463 +S'prized' +p202465 +tp202466 +a(g202463 +g202465 +S'as' +p202467 +tp202468 +a(g202465 +g202467 +S'companions' +p202469 +tp202470 +a(g202467 +g202469 +S'and' +p202471 +tp202472 +a(g202469 +g202471 +S'typically' +p202473 +tp202474 +a(g202471 +g202473 +S'led' +p202475 +tp202476 +a(g202473 +g202475 +S'a' +p202477 +tp202478 +a(g202475 +g202477 +S'pampered' +p202479 +tp202480 +a(g202477 +g202479 +S'existence' +p202481 +tp202482 +a(g202479 +g202481 +S'as' +p202483 +tp202484 +a(g202481 +g202483 +S'lapdogs' +p202485 +tp202486 +a(g202483 +g202485 +S'in' +p202487 +tp202488 +a(g202485 +g202487 +S'contrast' +p202489 +tp202490 +a(g202487 +g202489 +S'to' +p202491 +tp202492 +a(g202489 +g202491 +S'larger' +p202493 +tp202494 +a(g202491 +g202493 +S'cousins' +p202495 +tp202496 +a(g202493 +g202495 +S'who' +p202497 +tp202498 +a(g202495 +g202497 +S'were' +p202499 +tp202500 +a(g202497 +g202499 +S'bred' +p202501 +tp202502 +a(g202499 +g202501 +S'for' +p202503 +tp202504 +a(g202501 +g202503 +S'hunting.' +p202505 +tp202506 +a(g202503 +g202505 +S'this' +p202507 +tp202508 +a(g202505 +g202507 +S'particular' +p202509 +tp202510 +a(g202507 +g202509 +S'dog' +p202511 +tp202512 +a(g202509 +g202511 +S'has' +p202513 +tp202514 +a(g202511 +g202513 +S'the' +p202515 +tp202516 +a(g202513 +g202515 +S'distinctive' +p202517 +tp202518 +a(g202515 +g202517 +S'red' +p202519 +tp202520 +a(g202517 +g202519 +S'and' +p202521 +tp202522 +a(g202519 +g202521 +S'white' +p202523 +tp202524 +a(g202521 +g202523 +S'coat' +p202525 +tp202526 +a(g202523 +g202525 +S'of' +p202527 +tp202528 +a(g202525 +g202527 +S'the' +p202529 +tp202530 +a(g202527 +g202529 +S'bleinheim' +p202531 +tp202532 +a(g202529 +g202531 +S'variety' +p202533 +tp202534 +a(g202531 +g202533 +S'(named' +p202535 +tp202536 +a(g202533 +g202535 +S'after' +p202537 +tp202538 +a(g202535 +g202537 +S'the' +p202539 +tp202540 +a(g202537 +g202539 +S'palace' +p202541 +tp202542 +a(g202539 +g202541 +S'of' +p202543 +tp202544 +a(g202541 +g202543 +S'john' +p202545 +tp202546 +a(g202543 +g202545 +S'churchill,' +p202547 +tp202548 +a(g202545 +g202547 +S'first' +p202549 +tp202550 +a(g202547 +g202549 +S'duke' +p202551 +tp202552 +a(g202549 +g202551 +S'of' +p202553 +tp202554 +a(g202551 +g202553 +S'marlborough,' +p202555 +tp202556 +a(g202553 +g202555 +S'another' +p202557 +tp202558 +a(g202555 +g202557 +S'wellknown' +p202559 +tp202560 +a(g202557 +g202559 +S'devotee' +p202561 +tp202562 +a(g202559 +g202561 +S'of' +p202563 +tp202564 +a(g202561 +g202563 +S'the' +p202565 +tp202566 +a(g202563 +g202565 +S'breed' +p202567 +tp202568 +a(g202565 +g202567 +S'who' +p202569 +tp202570 +a(g202567 +g202569 +S'raised' +p202571 +tp202572 +a(g202569 +g202571 +S'dogs' +p202573 +tp202574 +a(g202571 +g202573 +S'of' +p202575 +tp202576 +a(g202573 +g202575 +S'this' +p202577 +tp202578 +a(g202575 +g202577 +S'coloring' +p202579 +tp202580 +a(g202577 +g202579 +S'in' +p202581 +tp202582 +a(g202579 +g202581 +S'the' +p202583 +tp202584 +a(g202581 +g202583 +S'early' +p202585 +tp202586 +a(g202583 +g202585 +S'eighteenth' +p202587 +tp202588 +a(g202585 +g202587 +S'century).' +p202589 +tp202590 +a(g202587 +g202589 +S'in' +p202591 +tp202592 +a(g202589 +g202591 +S'manet' +p202593 +tp202594 +a(g202591 +g202593 +S'may' +p202595 +tp202596 +a(g202593 +g202595 +S'have' +p202597 +tp202598 +a(g202595 +g202597 +S'had' +p202599 +tp202600 +a(g202597 +g202599 +S'a' +p202601 +tp202602 +a(g202599 +g202601 +S'personal' +p202603 +tp202604 +a(g202601 +g202603 +S'fondness' +p202605 +tp202606 +a(g202603 +g202605 +S'for' +p202607 +tp202608 +a(g202605 +g202607 +S'this' +p202609 +tp202610 +a(g202607 +g202609 +S'particular' +p202611 +tp202612 +a(g202609 +g202611 +S'breed.' +p202613 +tp202614 +a(g202611 +g202613 +S'years' +p202615 +tp202616 +a(g202613 +g202615 +S'later,' +p202617 +tp202618 +a(g202615 +g202617 +S'he' +p202619 +tp202620 +a(g202617 +g202619 +S'would' +p202621 +tp202622 +a(g202619 +g202621 +S'include' +p202623 +tp202624 +a(g202621 +g202623 +S'a' +p202625 +tp202626 +a(g202623 +g202625 +S'king' +p202627 +tp202628 +a(g202625 +g202627 +S'charles' +p202629 +tp202630 +a(g202627 +g202629 +S'spaniel' +p202631 +tp202632 +a(g202629 +g202631 +S'puppy' +p202633 +tp202634 +a(g202631 +g202633 +S'slumbering' +p202635 +tp202636 +a(g202633 +g202635 +S'in' +p202637 +tp202638 +a(g202635 +g202637 +S'the' +p202639 +tp202640 +a(g202637 +g202639 +S'lap' +p202641 +tp202642 +a(g202639 +g202641 +S'of' +p202643 +tp202644 +a(g202641 +g202643 +S'the' +p202645 +tp202646 +a(g202643 +g202645 +S'elegantly' +p202647 +tp202648 +a(g202645 +g202647 +S'dressed' +p202649 +tp202650 +a(g202647 +g202649 +S'woman' +p202651 +tp202652 +a(g202649 +g202651 +S'in' +p202653 +tp202654 +a(g202651 +g202653 +S'his' +p202655 +tp202656 +a(g202653 +g202655 +S'painting' +p202657 +tp202658 +a(g202655 +g202657 +S'(text' +p202659 +tp202660 +a(g202657 +g202659 +S'by' +p202661 +tp202662 +a(g202659 +g202661 +S'kimberly' +p202663 +tp202664 +a(g202661 +g202663 +S'jones,' +p202665 +tp202666 +a(g202663 +g202665 +S'notes' +p202667 +tp202668 +a(g202665 +g202667 +S'' +p202671 +tp202672 +a(g202669 +g202671 +S'an' +p202673 +tp202674 +a(g202671 +g202673 +S'elegant' +p202675 +tp202676 +a(g202673 +g202675 +S'young' +p202677 +tp202678 +a(g202675 +g202677 +S'couple' +p202679 +tp202680 +a(g202677 +g202679 +S'steps' +p202681 +tp202682 +a(g202679 +g202681 +S'into' +p202683 +tp202684 +a(g202681 +g202683 +S'a' +p202685 +tp202686 +a(g202683 +g202685 +S'sunlit' +p202687 +tp202688 +a(g202685 +g202687 +S'clearing' +p202689 +tp202690 +a(g202687 +g202689 +S'from' +p202691 +tp202692 +a(g202689 +g202691 +S'the' +p202693 +tp202694 +a(g202691 +g202693 +S'cool' +p202695 +tp202696 +a(g202693 +g202695 +S'of' +p202697 +tp202698 +a(g202695 +g202697 +S'the' +p202699 +tp202700 +a(g202697 +g202699 +S'fontainebleau' +p202701 +tp202702 +a(g202699 +g202701 +S'forest.' +p202703 +tp202704 +a(g202701 +g202703 +S'brightness' +p202705 +tp202706 +a(g202703 +g202705 +S'dances' +p202707 +tp202708 +a(g202705 +g202707 +S'off' +p202709 +tp202710 +a(g202707 +g202709 +S'their' +p202711 +tp202712 +a(g202709 +g202711 +S'clothes,' +p202713 +tp202714 +a(g202711 +g202713 +S'creating' +p202715 +tp202716 +a(g202713 +g202715 +S'the' +p202717 +tp202718 +a(g202715 +g202717 +S'strong' +p202719 +tp202720 +a(g202717 +g202719 +S'highlights' +p202721 +tp202722 +a(g202719 +g202721 +S'that' +p202723 +tp202724 +a(g202721 +g202723 +S'define' +p202725 +tp202726 +a(g202723 +g202725 +S'the' +p202727 +tp202728 +a(g202725 +g202727 +S'curve' +p202729 +tp202730 +a(g202727 +g202729 +S'of' +p202731 +tp202732 +a(g202729 +g202731 +S'the' +p202733 +tp202734 +a(g202731 +g202733 +S'man’s' +p202735 +tp202736 +a(g202733 +g202735 +S'hat' +p202737 +tp202738 +a(g202735 +g202737 +S'and' +p202739 +tp202740 +a(g202737 +g202739 +S'catch' +p202741 +tp202742 +a(g202739 +g202741 +S'the' +p202743 +tp202744 +a(g202741 +g202743 +S'bunched' +p202745 +tp202746 +a(g202743 +g202745 +S'hem' +p202747 +tp202748 +a(g202745 +g202747 +S'of' +p202749 +tp202750 +a(g202747 +g202749 +S'the' +p202751 +tp202752 +a(g202749 +g202751 +S"woman's" +p202753 +tp202754 +a(g202751 +g202753 +S'dress.' +p202755 +tp202756 +a(g202753 +g202755 +S'shadows' +p202757 +tp202758 +a(g202755 +g202757 +S'fall,' +p202759 +tp202760 +a(g202757 +g202759 +S'not' +p202761 +tp202762 +a(g202759 +g202761 +S'in' +p202763 +tp202764 +a(g202761 +g202763 +S'blacks' +p202765 +tp202766 +a(g202763 +g202765 +S'or' +p202767 +tp202768 +a(g202765 +g202767 +S'grays,' +p202769 +tp202770 +a(g202767 +g202769 +S'but' +p202771 +tp202772 +a(g202769 +g202771 +S'as' +p202773 +tp202774 +a(g202771 +g202773 +S'deeper' +p202775 +tp202776 +a(g202773 +g202775 +S'concentrations' +p202777 +tp202778 +a(g202775 +g202777 +S'of' +p202779 +tp202780 +a(g202777 +g202779 +S'the' +p202781 +tp202782 +a(g202779 +g202781 +S'colors' +p202783 +tp202784 +a(g202781 +g202783 +S'around' +p202785 +tp202786 +a(g202783 +g202785 +S'them.' +p202787 +tp202788 +a(g202785 +g202787 +S'monet' +p202789 +tp202790 +a(g202787 +g202789 +S'was' +p202791 +tp202792 +a(g202789 +g202791 +S'one' +p202793 +tp202794 +a(g202791 +g202793 +S'of' +p202795 +tp202796 +a(g202793 +g202795 +S'the' +p202797 +tp202798 +a(g202795 +g202797 +S'young' +p202799 +tp202800 +a(g202797 +g202799 +S'artists' +p202801 +tp202802 +a(g202799 +g202801 +S'who' +p202803 +tp202804 +a(g202801 +g202803 +S'frequented' +p202805 +tp202806 +a(g202803 +g202805 +S'the' +p202807 +tp202808 +a(g202805 +g202807 +S'café' +p202809 +tp202810 +a(g202807 +g202809 +S'guerbois,' +p202811 +tp202812 +a(g202809 +g202811 +S'where' +p202813 +tp202814 +a(g202811 +g202813 +S'manet' +p202815 +tp202816 +a(g202813 +g202815 +S'and' +p202817 +tp202818 +a(g202815 +g202817 +S'other' +p202819 +tp202820 +a(g202817 +g202819 +S'members' +p202821 +tp202822 +a(g202819 +g202821 +S'of' +p202823 +tp202824 +a(g202821 +g202823 +S'the' +p202825 +tp202826 +a(g202823 +g202825 +S'avant-garde' +p202827 +tp202828 +a(g202825 +g202827 +S'discussed' +p202829 +tp202830 +a(g202827 +g202829 +S'art' +p202831 +tp202832 +a(g202829 +g202831 +S'and' +p202833 +tp202834 +a(g202831 +g202833 +S'literature.' +p202835 +tp202836 +a(g202833 +g202835 +S'monet' +p202837 +tp202838 +a(g202835 +g202837 +S'championed' +p202839 +tp202840 +a(g202837 +g202839 +S'painting' +p202841 +tp202842 +a(g202839 +g202841 +S'out-of-doors—' +p202843 +tp202844 +a(g202841 +g202843 +S'this' +p202845 +tp202846 +a(g202843 +g202845 +S'painting' +p202847 +tp202848 +a(g202845 +g202847 +S'was' +p202849 +tp202850 +a(g202847 +g202849 +S'made' +p202851 +tp202852 +a(g202849 +g202851 +S'as' +p202853 +tp202854 +a(g202851 +g202853 +S'an' +p202855 +tp202856 +a(g202853 +g202855 +S'oil' +p202857 +tp202858 +a(g202855 +g202857 +S'sketch' +p202859 +tp202860 +a(g202857 +g202859 +S'for' +p202861 +tp202862 +a(g202859 +g202861 +S'a' +p202863 +tp202864 +a(g202861 +g202863 +S'much' +p202865 +tp202866 +a(g202863 +g202865 +S'larger' +p202867 +tp202868 +a(g202865 +g202867 +S'work' +p202869 +tp202870 +a(g202867 +g202869 +S'(15' +p202871 +tp202872 +a(g202869 +g202871 +S'x' +p202873 +tp202874 +a(g202871 +g202873 +S'20' +p202875 +tp202876 +a(g202873 +g202875 +S'feet)' +p202877 +tp202878 +a(g202875 +g202877 +S'whose' +p202879 +tp202880 +a(g202877 +g202879 +S'size' +p202881 +tp202882 +a(g202879 +g202881 +S'made' +p202883 +tp202884 +a(g202881 +g202883 +S'painting' +p202885 +tp202886 +a(g202883 +g202885 +S'outdoors' +p202887 +tp202888 +a(g202885 +g202887 +S'impossible.' +p202889 +tp202890 +a(g202887 +g202889 +S'instead' +p202891 +tp202892 +a(g202889 +g202891 +S'monet' +p202893 +tp202894 +a(g202891 +g202893 +S'made' +p202895 +tp202896 +a(g202893 +g202895 +S'smaller' +p202897 +tp202898 +a(g202895 +g202897 +S'preparatory' +p202899 +tp202900 +a(g202897 +g202899 +S'paintings' +p202901 +tp202902 +a(g202899 +g202901 +S'out-of-doors,' +p202903 +tp202904 +a(g202901 +g202903 +S'including' +p202905 +tp202906 +a(g202903 +g202905 +S'this' +p202907 +tp202908 +a(g202905 +g202907 +S'one.' +p202909 +tp202910 +a(g202907 +g202909 +S'only' +p202911 +tp202912 +a(g202909 +g202911 +S'fragments' +p202913 +tp202914 +a(g202911 +g202913 +S'of' +p202915 +tp202916 +a(g202913 +g202915 +S'the' +p202917 +tp202918 +a(g202915 +g202917 +S'final' +p202919 +tp202920 +a(g202917 +g202919 +S'large' +p202921 +tp202922 +a(g202919 +g202921 +S'canvas' +p202923 +tp202924 +a(g202921 +g202923 +S'survive.' +p202925 +tp202926 +a(g202923 +g202925 +S'monet' +p202927 +tp202928 +a(g202925 +g202927 +S'left' +p202929 +tp202930 +a(g202927 +g202929 +S'it' +p202931 +tp202932 +a(g202929 +g202931 +S'with' +p202933 +tp202934 +a(g202931 +g202933 +S'a' +p202935 +tp202936 +a(g202933 +g202935 +S'landlord' +p202937 +tp202938 +a(g202935 +g202937 +S'to' +p202939 +tp202940 +a(g202937 +g202939 +S'cover' +p202941 +tp202942 +a(g202939 +g202941 +S'a' +p202943 +tp202944 +a(g202941 +g202943 +S'debt,' +p202945 +tp202946 +a(g202943 +g202945 +S'and' +p202947 +tp202948 +a(g202945 +g202947 +S'it' +p202949 +tp202950 +a(g202947 +g202949 +S'was' +p202951 +tp202952 +a(g202949 +g202951 +S'ruined' +p202953 +tp202954 +a(g202951 +g202953 +S'by' +p202955 +tp202956 +a(g202953 +g202955 +S'moisture' +p202957 +tp202958 +a(g202955 +g202957 +S'and' +p202959 +tp202960 +a(g202957 +g202959 +S'neglect.' +p202961 +tp202962 +a(g202959 +g202961 +S'in' +p202963 +tp202964 +a(g202961 +g202963 +S'december' +p202965 +tp202966 +a(g202963 +g202965 +S'1871,' +p202967 +tp202968 +a(g202965 +g202967 +S'shortly' +p202969 +tp202970 +a(g202967 +g202969 +S'after' +p202971 +tp202972 +a(g202969 +g202971 +S'returning' +p202973 +tp202974 +a(g202971 +g202973 +S'to' +p202975 +tp202976 +a(g202973 +g202975 +S'france' +p202977 +tp202978 +a(g202975 +g202977 +S'after' +p202979 +tp202980 +a(g202977 +g202979 +S'a' +p202981 +tp202982 +a(g202979 +g202981 +S'year\xe2\x80\x99s' +p202983 +tp202984 +a(g202981 +g202983 +S'absence,' +p202985 +tp202986 +a(g202983 +g202985 +S'monet' +p202987 +tp202988 +a(g202985 +g202987 +S'and' +p202989 +tp202990 +a(g202987 +g202989 +S'his' +p202991 +tp202992 +a(g202989 +g202991 +S'family' +p202993 +tp202994 +a(g202991 +g202993 +S'settled' +p202995 +tp202996 +a(g202993 +g202995 +S'in' +p202997 +tp202998 +a(g202995 +g202997 +S'argenteuil,' +p202999 +tp203000 +a(g202997 +g202999 +S'a' +p203001 +tp203002 +a(g202999 +g203001 +S'suburb' +p203003 +tp203004 +a(g203001 +g203003 +S'some' +p203005 +tp203006 +a(g203003 +g203005 +S'seven' +p203007 +tp203008 +a(g203005 +g203007 +S'miles' +p203009 +tp203010 +a(g203007 +g203009 +S'outside' +p203011 +tp203012 +a(g203009 +g203011 +S'paris,' +p203013 +tp203014 +a(g203011 +g203013 +S'and' +p203015 +tp203016 +a(g203013 +g203015 +S'remained' +p203017 +tp203018 +a(g203015 +g203017 +S'there' +p203019 +tp203020 +a(g203017 +g203019 +S'until' +p203021 +tp203022 +a(g203019 +g203021 +S'january' +p203023 +tp203024 +a(g203021 +g203023 +S'1878.' +p203025 +tp203026 +a(g203023 +g203025 +S'argenteuil' +p203027 +tp203028 +a(g203025 +g203027 +S'proved' +p203029 +tp203030 +a(g203027 +g203029 +S'to' +p203031 +tp203032 +a(g203029 +g203031 +S'be' +p203033 +tp203034 +a(g203031 +g203033 +S'a' +p203035 +tp203036 +a(g203033 +g203035 +S'great' +p203037 +tp203038 +a(g203035 +g203037 +S'stimulus' +p203039 +tp203040 +a(g203037 +g203039 +S'for' +p203041 +tp203042 +a(g203039 +g203041 +S'his' +p203043 +tp203044 +a(g203041 +g203043 +S'painting;' +p203045 +tp203046 +a(g203043 +g203045 +S'the' +p203047 +tp203048 +a(g203045 +g203047 +S'attractive' +p203049 +tp203050 +a(g203047 +g203049 +S'countryside' +p203051 +tp203052 +a(g203049 +g203051 +S'and' +p203053 +tp203054 +a(g203051 +g203053 +S'the' +p203055 +tp203056 +a(g203053 +g203055 +S'seine' +p203057 +tp203058 +a(g203055 +g203057 +S'that' +p203059 +tp203060 +a(g203057 +g203059 +S'flowed' +p203061 +tp203062 +a(g203059 +g203061 +S'nearby' +p203063 +tp203064 +a(g203061 +g203063 +S'were' +p203065 +tp203066 +a(g203063 +g203065 +S'ideal' +p203067 +tp203068 +a(g203065 +g203067 +S'for' +p203069 +tp203070 +a(g203067 +g203069 +S'studying' +p203071 +tp203072 +a(g203069 +g203071 +S'the' +p203073 +tp203074 +a(g203071 +g203073 +S'effects' +p203075 +tp203076 +a(g203073 +g203075 +S'of' +p203077 +tp203078 +a(g203075 +g203077 +S'light' +p203079 +tp203080 +a(g203077 +g203079 +S'and' +p203081 +tp203082 +a(g203079 +g203081 +S'atmosphere,' +p203083 +tp203084 +a(g203081 +g203083 +S'while' +p203085 +tp203086 +a(g203083 +g203085 +S'its' +p203087 +tp203088 +a(g203085 +g203087 +S'status' +p203089 +tp203090 +a(g203087 +g203089 +S'as' +p203091 +tp203092 +a(g203089 +g203091 +S'a' +p203093 +tp203094 +a(g203091 +g203093 +S'suburban' +p203095 +tp203096 +a(g203093 +g203095 +S'recreation' +p203097 +tp203098 +a(g203095 +g203097 +S'site' +p203099 +tp203100 +a(g203097 +g203099 +S'provided' +p203101 +tp203102 +a(g203099 +g203101 +S'the' +p203103 +tp203104 +a(g203101 +g203103 +S'artist' +p203105 +tp203106 +a(g203103 +g203105 +S'with' +p203107 +tp203108 +a(g203105 +g203107 +S'unlimited' +p203109 +tp203110 +a(g203107 +g203109 +S'opportunities' +p203111 +tp203112 +a(g203109 +g203111 +S'for' +p203113 +tp203114 +a(g203111 +g203113 +S'the' +p203115 +tp203116 +a(g203113 +g203115 +S'depiction' +p203117 +tp203118 +a(g203115 +g203117 +S'of' +p203119 +tp203120 +a(g203117 +g203119 +S'modern' +p203121 +tp203122 +a(g203119 +g203121 +S'life.' +p203123 +tp203124 +a(g203121 +g203123 +S'the' +p203125 +tp203126 +a(g203123 +g203125 +S'six-year' +p203127 +tp203128 +a(g203125 +g203127 +S'period' +p203129 +tp203130 +a(g203127 +g203129 +S'that' +p203131 +tp203132 +a(g203129 +g203131 +S'he' +p203133 +tp203134 +a(g203131 +g203133 +S'spent' +p203135 +tp203136 +a(g203133 +g203135 +S'there' +p203137 +tp203138 +a(g203135 +g203137 +S'was' +p203139 +tp203140 +a(g203137 +g203139 +S'a' +p203141 +tp203142 +a(g203139 +g203141 +S'prolific' +p203143 +tp203144 +a(g203141 +g203143 +S'one;' +p203145 +tp203146 +a(g203143 +g203145 +S'during' +p203147 +tp203148 +a(g203145 +g203147 +S'his' +p203149 +tp203150 +a(g203147 +g203149 +S'first' +p203151 +tp203152 +a(g203149 +g203151 +S'year' +p203153 +tp203154 +a(g203151 +g203153 +S'at' +p203155 +tp203156 +a(g203153 +g203155 +S'argenteuil' +p203157 +tp203158 +a(g203155 +g203157 +S'alone,' +p203159 +tp203160 +a(g203157 +g203159 +S'he' +p203161 +tp203162 +a(g203159 +g203161 +S'produced' +p203163 +tp203164 +a(g203161 +g203163 +S'almost' +p203165 +tp203166 +a(g203163 +g203165 +S'as' +p203167 +tp203168 +a(g203165 +g203167 +S'many' +p203169 +tp203170 +a(g203167 +g203169 +S'paintings' +p203171 +tp203172 +a(g203169 +g203171 +S'as' +p203173 +tp203174 +a(g203171 +g203173 +S'he' +p203175 +tp203176 +a(g203173 +g203175 +S'had' +p203177 +tp203178 +a(g203175 +g203177 +S'during' +p203179 +tp203180 +a(g203177 +g203179 +S'the' +p203181 +tp203182 +a(g203179 +g203181 +S'three' +p203183 +tp203184 +a(g203181 +g203183 +S'previous' +p203185 +tp203186 +a(g203183 +g203185 +S'years' +p203187 +tp203188 +a(g203185 +g203187 +S'combined.' +p203189 +tp203190 +a(g203187 +g203189 +S'of' +p203191 +tp203192 +a(g203189 +g203191 +S'the' +p203193 +tp203194 +a(g203191 +g203193 +S'many' +p203195 +tp203196 +a(g203193 +g203195 +S'works' +p203197 +tp203198 +a(g203195 +g203197 +S'the' +p203199 +tp203200 +a(g203197 +g203199 +S'artist' +p203201 +tp203202 +a(g203199 +g203201 +S'produced' +p203203 +tp203204 +a(g203201 +g203203 +S'during' +p203205 +tp203206 +a(g203203 +g203205 +S'this' +p203207 +tp203208 +a(g203205 +g203207 +S'first' +p203209 +tp203210 +a(g203207 +g203209 +S'year,' +p203211 +tp203212 +a(g203209 +g203211 +S'as' +p203213 +tp203214 +a(g203211 +g203213 +S'the' +p203215 +tp203216 +a(g203213 +g203215 +S'presence' +p203217 +tp203218 +a(g203215 +g203217 +S'of' +p203219 +tp203220 +a(g203217 +g203219 +S'the' +p203221 +tp203222 +a(g203219 +g203221 +S'smokestacks' +p203223 +tp203224 +a(g203221 +g203223 +S'suggests,' +p203225 +tp203226 +a(g203223 +g203225 +S'argenteuil' +p203227 +tp203228 +a(g203225 +g203227 +S'was' +p203229 +tp203230 +a(g203227 +g203229 +S'a' +p203231 +tp203232 +a(g203229 +g203231 +S'burgeoning' +p203233 +tp203234 +a(g203231 +g203233 +S'center' +p203235 +tp203236 +a(g203233 +g203235 +S'for' +p203237 +tp203238 +a(g203235 +g203237 +S'industry' +p203239 +tp203240 +a(g203237 +g203239 +S'as' +p203241 +tp203242 +a(g203239 +g203241 +S'well' +p203243 +tp203244 +a(g203241 +g203243 +S'as' +p203245 +tp203246 +a(g203243 +g203245 +S'a' +p203247 +tp203248 +a(g203245 +g203247 +S'popular' +p203249 +tp203250 +a(g203247 +g203249 +S'site' +p203251 +tp203252 +a(g203249 +g203251 +S'for' +p203253 +tp203254 +a(g203251 +g203253 +S'boating' +p203255 +tp203256 +a(g203253 +g203255 +S'and' +p203257 +tp203258 +a(g203255 +g203257 +S'recreation' +p203259 +tp203260 +a(g203257 +g203259 +S'in' +p203261 +tp203262 +a(g203259 +g203261 +S'the' +p203263 +tp203264 +a(g203261 +g203263 +S'second' +p203265 +tp203266 +a(g203263 +g203265 +S'half' +p203267 +tp203268 +a(g203265 +g203267 +S'of' +p203269 +tp203270 +a(g203267 +g203269 +S'the' +p203271 +tp203272 +a(g203269 +g203271 +S'nineteenth' +p203273 +tp203274 +a(g203271 +g203273 +S'century.' +p203275 +tp203276 +a(g203273 +g203275 +S'the' +p203277 +tp203278 +a(g203275 +g203277 +S'very' +p203279 +tp203280 +a(g203277 +g203279 +S'factors' +p203281 +tp203282 +a(g203279 +g203281 +S'that' +p203283 +tp203284 +a(g203281 +g203283 +S'helped' +p203285 +tp203286 +a(g203283 +g203285 +S'to' +p203287 +tp203288 +a(g203285 +g203287 +S'establish' +p203289 +tp203290 +a(g203287 +g203289 +S'its' +p203291 +tp203292 +a(g203289 +g203291 +S'popularity' +p203293 +tp203294 +a(g203291 +g203293 +S'as' +p203295 +tp203296 +a(g203293 +g203295 +S'a' +p203297 +tp203298 +a(g203295 +g203297 +S'suburban' +p203299 +tp203300 +a(g203297 +g203299 +S'retreat—the' +p203301 +tp203302 +a(g203299 +g203301 +S'location,' +p203303 +tp203304 +a(g203301 +g203303 +S'the' +p203305 +tp203306 +a(g203303 +g203305 +S'expansive' +p203307 +tp203308 +a(g203305 +g203307 +S'countryside,' +p203309 +tp203310 +a(g203307 +g203309 +S'and' +p203311 +tp203312 +a(g203309 +g203311 +S'particularly' +p203313 +tp203314 +a(g203311 +g203313 +S'the' +p203315 +tp203316 +a(g203313 +g203315 +S'new' +p203317 +tp203318 +a(g203315 +g203317 +S'railroad' +p203319 +tp203320 +a(g203317 +g203319 +S'that' +p203321 +tp203322 +a(g203319 +g203321 +S'had' +p203323 +tp203324 +a(g203321 +g203323 +S'been' +p203325 +tp203326 +a(g203323 +g203325 +S'opened' +p203327 +tp203328 +a(g203325 +g203327 +S'in' +p203329 +tp203330 +a(g203327 +g203329 +S'1851—also' +p203331 +tp203332 +a(g203329 +g203331 +S'led' +p203333 +tp203334 +a(g203331 +g203333 +S'to' +p203335 +tp203336 +a(g203333 +g203335 +S'an' +p203337 +tp203338 +a(g203335 +g203337 +S'increase' +p203339 +tp203340 +a(g203337 +g203339 +S'in' +p203341 +tp203342 +a(g203339 +g203341 +S'population,' +p203343 +tp203344 +a(g203341 +g203343 +S'housing' +p203345 +tp203346 +a(g203343 +g203345 +S'construction,' +p203347 +tp203348 +a(g203345 +g203347 +S'and' +p203349 +tp203350 +a(g203347 +g203349 +S'manufacturing.' +p203351 +tp203352 +a(g203349 +g203351 +S'the' +p203353 +tp203354 +a(g203351 +g203353 +S'town\xe2\x80\x99s' +p203355 +tp203356 +a(g203353 +g203355 +S'economic' +p203357 +tp203358 +a(g203355 +g203357 +S'base' +p203359 +tp203360 +a(g203357 +g203359 +S'thus' +p203361 +tp203362 +a(g203359 +g203361 +S'shifted' +p203363 +tp203364 +a(g203361 +g203363 +S'from' +p203365 +tp203366 +a(g203363 +g203365 +S'agrarian' +p203367 +tp203368 +a(g203365 +g203367 +S'to' +p203369 +tp203370 +a(g203367 +g203369 +S'industrial.' +p203371 +tp203372 +a(g203369 +g203371 +S'(text' +p203373 +tp203374 +a(g203371 +g203373 +S'by' +p203375 +tp203376 +a(g203373 +g203375 +S'kimberly' +p203377 +tp203378 +a(g203375 +g203377 +S'jones,' +p203379 +tp203380 +a(g203377 +g203379 +S'notes' +p203381 +tp203382 +a(g203379 +g203381 +S'' +p203385 +tp203386 +a(g203383 +g203385 +S'the' +p203387 +tp203388 +a(g203385 +g203387 +S'artist\xe2\x80\x99s' +p203389 +tp203390 +a(g203387 +g203389 +S'garden' +p203391 +tp203392 +a(g203389 +g203391 +S'at' +p203393 +tp203394 +a(g203391 +g203393 +S'vétheuil' +p203395 +tp203396 +a(g203393 +g203395 +S'in' +p203397 +tp203398 +a(g203395 +g203397 +S'subject,' +p203399 +tp203400 +a(g203397 +g203399 +S'this' +p203401 +tp203402 +a(g203399 +g203401 +S'painting' +p203403 +tp203404 +a(g203401 +g203403 +S'reflects' +p203405 +tp203406 +a(g203403 +g203405 +S'the' +p203407 +tp203408 +a(g203405 +g203407 +S'artist\xe2\x80\x99s' +p203409 +tp203410 +a(g203407 +g203409 +S'interest,' +p203411 +tp203412 +a(g203409 +g203411 +S'dating' +p203413 +tp203414 +a(g203411 +g203413 +S'to' +p203415 +tp203416 +a(g203413 +g203415 +S'the' +p203417 +tp203418 +a(g203415 +g203417 +S'1860s,' +p203419 +tp203420 +a(g203417 +g203419 +S'in' +p203421 +tp203422 +a(g203419 +g203421 +S'the' +p203423 +tp203424 +a(g203421 +g203423 +S'depiction' +p203425 +tp203426 +a(g203423 +g203425 +S'of' +p203427 +tp203428 +a(g203425 +g203427 +S'gardens,' +p203429 +tp203430 +a(g203427 +g203429 +S'particularly' +p203431 +tp203432 +a(g203429 +g203431 +S'his' +p203433 +tp203434 +a(g203431 +g203433 +S'own.' +p203435 +tp203436 +a(g203433 +g203435 +S'in' +p203437 +tp203438 +a(g203435 +g203437 +S'argenteuil' +p203439 +tp203440 +a(g203437 +g203439 +S'in' +p203441 +tp203442 +a(g203439 +g203441 +S'the' +p203443 +tp203444 +a(g203441 +g203443 +S'1870s,' +p203445 +tp203446 +a(g203443 +g203445 +S'in' +p203447 +tp203448 +a(g203445 +g203447 +S'vétheuil' +p203449 +tp203450 +a(g203447 +g203449 +S'in' +p203451 +tp203452 +a(g203449 +g203451 +S'the' +p203453 +tp203454 +a(g203451 +g203453 +S'early' +p203455 +tp203456 +a(g203453 +g203455 +S'1880s,' +p203457 +tp203458 +a(g203455 +g203457 +S'and' +p203459 +tp203460 +a(g203457 +g203459 +S'most' +p203461 +tp203462 +a(g203459 +g203461 +S'notably' +p203463 +tp203464 +a(g203461 +g203463 +S'in' +p203465 +tp203466 +a(g203463 +g203465 +S'giverny—where' +p203467 +tp203468 +a(g203465 +g203467 +S'he' +p203469 +tp203470 +a(g203467 +g203469 +S'resided' +p203471 +tp203472 +a(g203469 +g203471 +S'for' +p203473 +tp203474 +a(g203471 +g203473 +S'the' +p203475 +tp203476 +a(g203473 +g203475 +S'last' +p203477 +tp203478 +a(g203475 +g203477 +S'forty' +p203479 +tp203480 +a(g203477 +g203479 +S'years' +p203481 +tp203482 +a(g203479 +g203481 +S'of' +p203483 +tp203484 +a(g203481 +g203483 +S'his' +p203485 +tp203486 +a(g203483 +g203485 +S'life—monet' +p203487 +tp203488 +a(g203485 +g203487 +S'took' +p203489 +tp203490 +a(g203487 +g203489 +S'an' +p203491 +tp203492 +a(g203489 +g203491 +S'active' +p203493 +tp203494 +a(g203491 +g203493 +S'role' +p203495 +tp203496 +a(g203493 +g203495 +S'in' +p203497 +tp203498 +a(g203495 +g203497 +S'tending' +p203499 +tp203500 +a(g203497 +g203499 +S'his' +p203501 +tp203502 +a(g203499 +g203501 +S'own' +p203503 +tp203504 +a(g203501 +g203503 +S'garden,' +p203505 +tp203506 +a(g203503 +g203505 +S'which' +p203507 +tp203508 +a(g203505 +g203507 +S'increasingly' +p203509 +tp203510 +a(g203507 +g203509 +S'became' +p203511 +tp203512 +a(g203509 +g203511 +S'the' +p203513 +tp203514 +a(g203511 +g203513 +S'focal' +p203515 +tp203516 +a(g203513 +g203515 +S'point' +p203517 +tp203518 +a(g203515 +g203517 +S'of' +p203519 +tp203520 +a(g203517 +g203519 +S'his' +p203521 +tp203522 +a(g203519 +g203521 +S'artistic' +p203523 +tp203524 +a(g203521 +g203523 +S'and' +p203525 +tp203526 +a(g203523 +g203525 +S'physical' +p203527 +tp203528 +a(g203525 +g203527 +S'existence.' +p203529 +tp203530 +a(g203527 +g203529 +S'while' +p203531 +tp203532 +a(g203529 +g203531 +S'at' +p203533 +tp203534 +a(g203531 +g203533 +S'vétheuil,' +p203535 +tp203536 +a(g203533 +g203535 +S'monet' +p203537 +tp203538 +a(g203535 +g203537 +S'produced' +p203539 +tp203540 +a(g203537 +g203539 +S'at' +p203541 +tp203542 +a(g203539 +g203541 +S'least' +p203543 +tp203544 +a(g203541 +g203543 +S'nine' +p203545 +tp203546 +a(g203543 +g203545 +S'paintings' +p203547 +tp203548 +a(g203545 +g203547 +S'of' +p203549 +tp203550 +a(g203547 +g203549 +S'his' +p203551 +tp203552 +a(g203549 +g203551 +S'garden,' +p203553 +tp203554 +a(g203551 +g203553 +S'all' +p203555 +tp203556 +a(g203553 +g203555 +S'in' +p203557 +tp203558 +a(g203555 +g203557 +S'the' +p203559 +tp203560 +a(g203557 +g203559 +S'same' +p203561 +tp203562 +a(g203559 +g203561 +S'year.' +p203563 +tp203564 +a(g203561 +g203563 +S'four' +p203565 +tp203566 +a(g203563 +g203565 +S'identical' +p203567 +tp203568 +a(g203565 +g203567 +S'compositions' +p203569 +tp203570 +a(g203567 +g203569 +S'(this' +p203571 +tp203572 +a(g203569 +g203571 +S'work' +p203573 +tp203574 +a(g203571 +g203573 +S'among' +p203575 +tp203576 +a(g203573 +g203575 +S'them)' +p203577 +tp203578 +a(g203575 +g203577 +S'are' +p203579 +tp203580 +a(g203577 +g203579 +S'painted' +p203581 +tp203582 +a(g203579 +g203581 +S'from' +p203583 +tp203584 +a(g203581 +g203583 +S'the' +p203585 +tp203586 +a(g203583 +g203585 +S'same' +p203587 +tp203588 +a(g203585 +g203587 +S'vantage' +p203589 +tp203590 +a(g203587 +g203589 +S'point.' +p203591 +tp203592 +a(g203589 +g203591 +S'all' +p203593 +tp203594 +a(g203591 +g203593 +S'four' +p203595 +tp203596 +a(g203593 +g203595 +S'paintings' +p203597 +tp203598 +a(g203595 +g203597 +S'utilize' +p203599 +tp203600 +a(g203597 +g203599 +S'a' +p203601 +tp203602 +a(g203599 +g203601 +S'vertical' +p203603 +tp203604 +a(g203601 +g203603 +S'format—highly' +p203605 +tp203606 +a(g203603 +g203605 +S'unusual' +p203607 +tp203608 +a(g203605 +g203607 +S'for' +p203609 +tp203610 +a(g203607 +g203609 +S'landscape' +p203611 +tp203612 +a(g203609 +g203611 +S'paintings—and' +p203613 +tp203614 +a(g203611 +g203613 +S'depict' +p203615 +tp203616 +a(g203613 +g203615 +S'the' +p203617 +tp203618 +a(g203615 +g203617 +S'staircase' +p203619 +tp203620 +a(g203617 +g203619 +S'and' +p203621 +tp203622 +a(g203619 +g203621 +S'path' +p203623 +tp203624 +a(g203621 +g203623 +S'at' +p203625 +tp203626 +a(g203623 +g203625 +S'the' +p203627 +tp203628 +a(g203625 +g203627 +S'center,' +p203629 +tp203630 +a(g203627 +g203629 +S'flanked' +p203631 +tp203632 +a(g203629 +g203631 +S'by' +p203633 +tp203634 +a(g203631 +g203633 +S'beds' +p203635 +tp203636 +a(g203633 +g203635 +S'of' +p203637 +tp203638 +a(g203635 +g203637 +S'sunflowers' +p203639 +tp203640 +a(g203637 +g203639 +S'and' +p203641 +tp203642 +a(g203639 +g203641 +S'blue' +p203643 +tp203644 +a(g203641 +g203643 +S'and' +p203645 +tp203646 +a(g203643 +g203645 +S'white' +p203647 +tp203648 +a(g203645 +g203647 +S'ceramic' +p203649 +tp203650 +a(g203647 +g203649 +S'vases' +p203651 +tp203652 +a(g203649 +g203651 +S'filled' +p203653 +tp203654 +a(g203651 +g203653 +S'with' +p203655 +tp203656 +a(g203653 +g203655 +S'gladioli.' +p203657 +tp203658 +a(g203655 +g203657 +S'when' +p203659 +tp203660 +a(g203657 +g203659 +S'viewed' +p203661 +tp203662 +a(g203659 +g203661 +S'together,' +p203663 +tp203664 +a(g203661 +g203663 +S'the' +p203665 +tp203666 +a(g203663 +g203665 +S'four' +p203667 +tp203668 +a(g203665 +g203667 +S'canvases' +p203669 +tp203670 +a(g203667 +g203669 +S'suggest' +p203671 +tp203672 +a(g203669 +g203671 +S'a' +p203673 +tp203674 +a(g203671 +g203673 +S'progression' +p203675 +tp203676 +a(g203673 +g203675 +S'that' +p203677 +tp203678 +a(g203675 +g203677 +S'culminates' +p203679 +tp203680 +a(g203677 +g203679 +S'in' +p203681 +tp203682 +a(g203679 +g203681 +S'precisely' +p203683 +tp203684 +a(g203681 +g203683 +S'when' +p203685 +tp203686 +a(g203683 +g203685 +S'monet' +p203687 +tp203688 +a(g203685 +g203687 +S'began' +p203689 +tp203690 +a(g203687 +g203689 +S'to' +p203691 +tp203692 +a(g203689 +g203691 +S'paint' +p203693 +tp203694 +a(g203691 +g203693 +S'curiously,' +p203695 +tp203696 +a(g203693 +g203695 +S'this' +p203697 +tp203698 +a(g203695 +g203697 +S'painting' +p203699 +tp203700 +a(g203697 +g203699 +S'bears' +p203701 +tp203702 +a(g203699 +g203701 +S'the' +p203703 +tp203704 +a(g203701 +g203703 +S'date' +p203705 +tp203706 +a(g203703 +g203705 +S'of' +p203707 +tp203708 +a(g203705 +g203707 +S'1880' +p203709 +tp203710 +a(g203707 +g203709 +S'(all' +p203711 +tp203712 +a(g203709 +g203711 +S'the' +p203713 +tp203714 +a(g203711 +g203713 +S'other' +p203715 +tp203716 +a(g203713 +g203715 +S'canvases' +p203717 +tp203718 +a(g203715 +g203717 +S'are' +p203719 +tp203720 +a(g203717 +g203719 +S'dated' +p203721 +tp203722 +a(g203719 +g203721 +S'1881).' +p203723 +tp203724 +a(g203721 +g203723 +S'the' +p203725 +tp203726 +a(g203723 +g203725 +S'earlier' +p203727 +tp203728 +a(g203725 +g203727 +S'date,' +p203729 +tp203730 +a(g203727 +g203729 +S'however,' +p203731 +tp203732 +a(g203729 +g203731 +S'is' +p203733 +tp203734 +a(g203731 +g203733 +S'erroneous.' +p203735 +tp203736 +a(g203733 +g203735 +S'the' +p203737 +tp203738 +a(g203735 +g203737 +S'foreground' +p203739 +tp203740 +a(g203737 +g203739 +S'of' +p203741 +tp203742 +a(g203739 +g203741 +S'the' +p203743 +tp203744 +a(g203741 +g203743 +S'painting' +p203745 +tp203746 +a(g203743 +g203745 +S'was' +p203747 +tp203748 +a(g203745 +g203747 +S'heavily' +p203749 +tp203750 +a(g203747 +g203749 +S'reworked' +p203751 +tp203752 +a(g203749 +g203751 +S'in' +p203753 +tp203754 +a(g203751 +g203753 +S'the' +p203755 +tp203756 +a(g203753 +g203755 +S'years' +p203757 +tp203758 +a(g203755 +g203757 +S'prior' +p203759 +tp203760 +a(g203757 +g203759 +S'to' +p203761 +tp203762 +a(g203759 +g203761 +S'monet\xe2\x80\x99s' +p203763 +tp203764 +a(g203761 +g203763 +S'death' +p203765 +tp203766 +a(g203763 +g203765 +S'in' +p203767 +tp203768 +a(g203765 +g203767 +S'1926,' +p203769 +tp203770 +a(g203767 +g203769 +S'a' +p203771 +tp203772 +a(g203769 +g203771 +S'not' +p203773 +tp203774 +a(g203771 +g203773 +S'uncommon' +p203775 +tp203776 +a(g203773 +g203775 +S'practice' +p203777 +tp203778 +a(g203775 +g203777 +S'for' +p203779 +tp203780 +a(g203777 +g203779 +S'the' +p203781 +tp203782 +a(g203779 +g203781 +S'artist.' +p203783 +tp203784 +a(g203781 +g203783 +S'the' +p203785 +tp203786 +a(g203783 +g203785 +S'year' +p203787 +tp203788 +a(g203785 +g203787 +S'and' +p203789 +tp203790 +a(g203787 +g203789 +S'signature,' +p203791 +tp203792 +a(g203789 +g203791 +S'which' +p203793 +tp203794 +a(g203791 +g203793 +S'was' +p203795 +tp203796 +a(g203793 +g203795 +S'painted' +p203797 +tp203798 +a(g203795 +g203797 +S'directly' +p203799 +tp203800 +a(g203797 +g203799 +S'into' +p203801 +tp203802 +a(g203799 +g203801 +S'this' +p203803 +tp203804 +a(g203801 +g203803 +S'paint' +p203805 +tp203806 +a(g203803 +g203805 +S'layer' +p203807 +tp203808 +a(g203805 +g203807 +S'while' +p203809 +tp203810 +a(g203807 +g203809 +S'still' +p203811 +tp203812 +a(g203809 +g203811 +S'wet,' +p203813 +tp203814 +a(g203811 +g203813 +S'was' +p203815 +tp203816 +a(g203813 +g203815 +S'added' +p203817 +tp203818 +a(g203815 +g203817 +S'at' +p203819 +tp203820 +a(g203817 +g203819 +S'that' +p203821 +tp203822 +a(g203819 +g203821 +S'time.' +p203823 +tp203824 +a(g203821 +g203823 +S'(text' +p203825 +tp203826 +a(g203823 +g203825 +S'by' +p203827 +tp203828 +a(g203825 +g203827 +S'kimberly' +p203829 +tp203830 +a(g203827 +g203829 +S'jones,' +p203831 +tp203832 +a(g203829 +g203831 +S'notes' +p203833 +tp203834 +a(g203831 +g203833 +S'' +p203837 +tp203838 +a(g203835 +g203837 +S'' +p203841 +tp203842 +a(g203839 +g203841 +S'in' +p203843 +tp203844 +a(g203841 +g203843 +S'1869,' +p203845 +tp203846 +a(g203843 +g203845 +S'morisot\xe2\x80\x99s' +p203847 +tp203848 +a(g203845 +g203847 +S'beloved' +p203849 +tp203850 +a(g203847 +g203849 +S'sister,' +p203851 +tp203852 +a(g203849 +g203851 +S'edma,' +p203853 +tp203854 +a(g203851 +g203853 +S'moved' +p203855 +tp203856 +a(g203853 +g203855 +S'to' +p203857 +tp203858 +a(g203855 +g203857 +S'the' +p203859 +tp203860 +a(g203857 +g203859 +S'town' +p203861 +tp203862 +a(g203859 +g203861 +S'of' +p203863 +tp203864 +a(g203861 +g203863 +S'lorient' +p203865 +tp203866 +a(g203863 +g203865 +S'on' +p203867 +tp203868 +a(g203865 +g203867 +S'the' +p203869 +tp203870 +a(g203867 +g203869 +S'brittany' +p203871 +tp203872 +a(g203869 +g203871 +S'coastline' +p203873 +tp203874 +a(g203871 +g203873 +S'following' +p203875 +tp203876 +a(g203873 +g203875 +S'her' +p203877 +tp203878 +a(g203875 +g203877 +S'marriage' +p203879 +tp203880 +a(g203877 +g203879 +S'to' +p203881 +tp203882 +a(g203879 +g203881 +S'naval' +p203883 +tp203884 +a(g203881 +g203883 +S'officer' +p203885 +tp203886 +a(g203883 +g203885 +S'adolphe' +p203887 +tp203888 +a(g203885 +g203887 +S'pontillon.' +p203889 +tp203890 +a(g203887 +g203889 +S'the' +p203891 +tp203892 +a(g203889 +g203891 +S'two' +p203893 +tp203894 +a(g203891 +g203893 +S'sisters' +p203895 +tp203896 +a(g203893 +g203895 +S'had' +p203897 +tp203898 +a(g203895 +g203897 +S'been' +p203899 +tp203900 +a(g203897 +g203899 +S'close' +p203901 +tp203902 +a(g203899 +g203901 +S'from' +p203903 +tp203904 +a(g203901 +g203903 +S'a' +p203905 +tp203906 +a(g203903 +g203905 +S'young' +p203907 +tp203908 +a(g203905 +g203907 +S'age' +p203909 +tp203910 +a(g203907 +g203909 +S'and' +p203911 +tp203912 +a(g203909 +g203911 +S'had' +p203913 +tp203914 +a(g203911 +g203913 +S'studied' +p203915 +tp203916 +a(g203913 +g203915 +S'art' +p203917 +tp203918 +a(g203915 +g203917 +S'together' +p203919 +tp203920 +a(g203917 +g203919 +S'under' +p203921 +tp203922 +a(g203919 +g203921 +S'the' +p203923 +tp203924 +a(g203921 +g203923 +S'tutelage' +p203925 +tp203926 +a(g203923 +g203925 +S'of' +p203927 +tp203928 +a(g203925 +g203927 +S'jean-baptiste-camille' +p203929 +tp203930 +a(g203927 +g203929 +S'corot,' +p203931 +tp203932 +a(g203929 +g203931 +S'a' +p203933 +tp203934 +a(g203931 +g203933 +S'key' +p203935 +tp203936 +a(g203933 +g203935 +S'figure' +p203937 +tp203938 +a(g203935 +g203937 +S'in' +p203939 +tp203940 +a(g203937 +g203939 +S'what' +p203941 +tp203942 +a(g203939 +g203941 +S'would' +p203943 +tp203944 +a(g203941 +g203943 +S'later' +p203945 +tp203946 +a(g203943 +g203945 +S'be' +p203947 +tp203948 +a(g203945 +g203947 +S'called' +p203949 +tp203950 +a(g203947 +g203949 +S'french' +p203951 +tp203952 +a(g203949 +g203951 +S'realism.' +p203953 +tp203954 +a(g203951 +g203953 +S'through' +p203955 +tp203956 +a(g203953 +g203955 +S'their' +p203957 +tp203958 +a(g203955 +g203957 +S'acquaintance' +p203959 +tp203960 +a(g203957 +g203959 +S'with' +p203961 +tp203962 +a(g203959 +g203961 +S'corot,' +p203963 +tp203964 +a(g203961 +g203963 +S'the' +p203965 +tp203966 +a(g203963 +g203965 +S'sisters' +p203967 +tp203968 +a(g203965 +g203967 +S'were' +p203969 +tp203970 +a(g203967 +g203969 +S'exposed' +p203971 +tp203972 +a(g203969 +g203971 +S'to' +p203973 +tp203974 +a(g203971 +g203973 +S'the' +p203975 +tp203976 +a(g203973 +g203975 +S'technique' +p203977 +tp203978 +a(g203975 +g203977 +S'and' +p203979 +tp203980 +a(g203977 +g203979 +S'tradition' +p203981 +tp203982 +a(g203979 +g203981 +S'of' +p203983 +tp203984 +a(g203981 +g203983 +S'painting' +p203985 +tp203986 +a(g203983 +g203985 +S'outdoors,' +p203987 +tp203988 +a(g203985 +g203987 +S'painted' +p203989 +tp203990 +a(g203987 +g203989 +S'during' +p203991 +tp203992 +a(g203989 +g203991 +S'one' +p203993 +tp203994 +a(g203991 +g203993 +S'such' +p203995 +tp203996 +a(g203993 +g203995 +S'visit—to' +p203997 +tp203998 +a(g203995 +g203997 +S'lorient' +p203999 +tp204000 +a(g203997 +g203999 +S'in' +p204001 +tp204002 +a(g203999 +g204001 +S'the' +p204003 +tp204004 +a(g204001 +g204003 +S'summer' +p204005 +tp204006 +a(g204003 +g204005 +S'of' +p204007 +tp204008 +a(g204005 +g204007 +S'1869—' +p204009 +tp204010 +a(g204007 +g204009 +S'the' +p204011 +tp204012 +a(g204009 +g204011 +S'inclusion' +p204013 +tp204014 +a(g204011 +g204013 +S'of' +p204015 +tp204016 +a(g204013 +g204015 +S'the' +p204017 +tp204018 +a(g204015 +g204017 +S'figure' +p204019 +tp204020 +a(g204017 +g204019 +S'(edma)' +p204021 +tp204022 +a(g204019 +g204021 +S'on' +p204023 +tp204024 +a(g204021 +g204023 +S'the' +p204025 +tp204026 +a(g204023 +g204025 +S'right' +p204027 +tp204028 +a(g204025 +g204027 +S'of' +p204029 +tp204030 +a(g204027 +g204029 +S'the' +p204031 +tp204032 +a(g204029 +g204031 +S'composition' +p204033 +tp204034 +a(g204031 +g204033 +S'transforms' +p204035 +tp204036 +a(g204033 +g204035 +S'a' +p204037 +tp204038 +a(g204035 +g204037 +S'simple' +p204039 +tp204040 +a(g204037 +g204039 +S'serene' +p204041 +tp204042 +a(g204039 +g204041 +S'landscape' +p204043 +tp204044 +a(g204041 +g204043 +S'into' +p204045 +tp204046 +a(g204043 +g204045 +S'a' +p204047 +tp204048 +a(g204045 +g204047 +S'representation' +p204049 +tp204050 +a(g204047 +g204049 +S'of' +p204051 +tp204052 +a(g204049 +g204051 +S'the' +p204053 +tp204054 +a(g204051 +g204053 +S'contemporary' +p204055 +tp204056 +a(g204053 +g204055 +S'life' +p204057 +tp204058 +a(g204055 +g204057 +S'of' +p204059 +tp204060 +a(g204057 +g204059 +S'the' +p204061 +tp204062 +a(g204059 +g204061 +S'first' +p204063 +tp204064 +a(g204061 +g204063 +S'exhibited' +p204065 +tp204066 +a(g204063 +g204065 +S'in' +p204067 +tp204068 +a(g204065 +g204067 +S'the' +p204069 +tp204070 +a(g204067 +g204069 +S'salon' +p204071 +tp204072 +a(g204069 +g204071 +S'of' +p204073 +tp204074 +a(g204071 +g204073 +S'1870,' +p204075 +tp204076 +a(g204073 +g204075 +S'(text' +p204077 +tp204078 +a(g204075 +g204077 +S'by' +p204079 +tp204080 +a(g204077 +g204079 +S'daniella' +p204081 +tp204082 +a(g204079 +g204081 +S'berman,' +p204083 +tp204084 +a(g204081 +g204083 +S'notes' +p204085 +tp204086 +a(g204083 +g204085 +S'' +p204089 +tp204090 +a(g204087 +g204089 +S'with' +p204091 +tp204092 +a(g204089 +g204091 +S'its' +p204093 +tp204094 +a(g204091 +g204093 +S'dynamic' +p204095 +tp204096 +a(g204093 +g204095 +S'palette' +p204097 +tp204098 +a(g204095 +g204097 +S'and' +p204099 +tp204100 +a(g204097 +g204099 +S'seemingly' +p204101 +tp204102 +a(g204099 +g204101 +S'improvisational' +p204103 +tp204104 +a(g204101 +g204103 +S'approach,' +p204105 +tp204106 +a(g204103 +g204105 +S'while' +p204107 +tp204108 +a(g204105 +g204107 +S'many' +p204109 +tp204110 +a(g204107 +g204109 +S'impressionist' +p204111 +tp204112 +a(g204109 +g204111 +S'artists' +p204113 +tp204114 +a(g204111 +g204113 +S'regularly' +p204115 +tp204116 +a(g204113 +g204115 +S'used' +p204117 +tp204118 +a(g204115 +g204117 +S'professional' +p204119 +tp204120 +a(g204117 +g204119 +S'models,' +p204121 +tp204122 +a(g204119 +g204121 +S'morisot' +p204123 +tp204124 +a(g204121 +g204123 +S'preferred' +p204125 +tp204126 +a(g204123 +g204125 +S'to' +p204127 +tp204128 +a(g204125 +g204127 +S'paint' +p204129 +tp204130 +a(g204127 +g204129 +S'the' +p204131 +tp204132 +a(g204129 +g204131 +S'world' +p204133 +tp204134 +a(g204131 +g204133 +S'around' +p204135 +tp204136 +a(g204133 +g204135 +S'her' +p204137 +tp204138 +a(g204135 +g204137 +S'and' +p204139 +tp204140 +a(g204137 +g204139 +S'frequently' +p204141 +tp204142 +a(g204139 +g204141 +S'represented' +p204143 +tp204144 +a(g204141 +g204143 +S'her' +p204145 +tp204146 +a(g204143 +g204145 +S'family' +p204147 +tp204148 +a(g204145 +g204147 +S'and' +p204149 +tp204150 +a(g204147 +g204149 +S'friends.' +p204151 +tp204152 +a(g204149 +g204151 +S'after' +p204153 +tp204154 +a(g204151 +g204153 +S'a' +p204155 +tp204156 +a(g204153 +g204155 +S'period' +p204157 +tp204158 +a(g204155 +g204157 +S'of' +p204159 +tp204160 +a(g204157 +g204159 +S'using' +p204161 +tp204162 +a(g204159 +g204161 +S'her' +p204163 +tp204164 +a(g204161 +g204163 +S'sister' +p204165 +tp204166 +a(g204163 +g204165 +S'edma' +p204167 +tp204168 +a(g204165 +g204167 +S'as' +p204169 +tp204170 +a(g204167 +g204169 +S'the' +p204171 +tp204172 +a(g204169 +g204171 +S'subject' +p204173 +tp204174 +a(g204171 +g204173 +S'for' +p204175 +tp204176 +a(g204173 +g204175 +S'many' +p204177 +tp204178 +a(g204175 +g204177 +S'works,' +p204179 +tp204180 +a(g204177 +g204179 +S'morisot' +p204181 +tp204182 +a(g204179 +g204181 +S'depicted' +p204183 +tp204184 +a(g204181 +g204183 +S'her' +p204185 +tp204186 +a(g204183 +g204185 +S'daughter,' +p204187 +tp204188 +a(g204185 +g204187 +S'julie' +p204189 +tp204190 +a(g204187 +g204189 +S'manet,' +p204191 +tp204192 +a(g204189 +g204191 +S'in' +p204193 +tp204194 +a(g204191 +g204193 +S'a' +p204195 +tp204196 +a(g204193 +g204195 +S'variety' +p204197 +tp204198 +a(g204195 +g204197 +S'of' +p204199 +tp204200 +a(g204197 +g204199 +S'mediums' +p204201 +tp204202 +a(g204199 +g204201 +S'throughout' +p204203 +tp204204 +a(g204201 +g204203 +S'her' +p204205 +tp204206 +a(g204203 +g204205 +S'childhood.' +p204207 +tp204208 +a(g204205 +g204207 +S'the' +p204209 +tp204210 +a(g204207 +g204209 +S'unidentified' +p204211 +tp204212 +a(g204209 +g204211 +S'subject' +p204213 +tp204214 +a(g204211 +g204213 +S'of' +p204215 +tp204216 +a(g204213 +g204215 +S'this' +p204217 +tp204218 +a(g204215 +g204217 +S'painting,' +p204219 +tp204220 +a(g204217 +g204219 +S'however,' +p204221 +tp204222 +a(g204219 +g204221 +S'is' +p204223 +tp204224 +a(g204221 +g204223 +S'a' +p204225 +tp204226 +a(g204223 +g204225 +S'professional' +p204227 +tp204228 +a(g204225 +g204227 +S'model' +p204229 +tp204230 +a(g204227 +g204229 +S'who' +p204231 +tp204232 +a(g204229 +g204231 +S'appears' +p204233 +tp204234 +a(g204231 +g204233 +S'in' +p204235 +tp204236 +a(g204233 +g204235 +S'several' +p204237 +tp204238 +a(g204235 +g204237 +S'other' +p204239 +tp204240 +a(g204237 +g204239 +S'canvases' +p204241 +tp204242 +a(g204239 +g204241 +S'by' +p204243 +tp204244 +a(g204241 +g204243 +S'morisot.' +p204245 +tp204246 +a(g204243 +g204245 +S'unlike' +p204247 +tp204248 +a(g204245 +g204247 +S'the' +p204249 +tp204250 +a(g204247 +g204249 +S'majority' +p204251 +tp204252 +a(g204249 +g204251 +S'of' +p204253 +tp204254 +a(g204251 +g204253 +S'artists,' +p204255 +tp204256 +a(g204253 +g204255 +S'morisot' +p204257 +tp204258 +a(g204255 +g204257 +S'required' +p204259 +tp204260 +a(g204257 +g204259 +S'a' +p204261 +tp204262 +a(g204259 +g204261 +S'model' +p204263 +tp204264 +a(g204261 +g204263 +S'to' +p204265 +tp204266 +a(g204263 +g204265 +S'sit' +p204267 +tp204268 +a(g204265 +g204267 +S'only' +p204269 +tp204270 +a(g204267 +g204269 +S'for' +p204271 +tp204272 +a(g204269 +g204271 +S'a' +p204273 +tp204274 +a(g204271 +g204273 +S'short' +p204275 +tp204276 +a(g204273 +g204275 +S'period' +p204277 +tp204278 +a(g204275 +g204277 +S'of' +p204279 +tp204280 +a(g204277 +g204279 +S'time.' +p204281 +tp204282 +a(g204279 +g204281 +S'she' +p204283 +tp204284 +a(g204281 +g204283 +S'then' +p204285 +tp204286 +a(g204283 +g204285 +S'typically' +p204287 +tp204288 +a(g204285 +g204287 +S'completed' +p204289 +tp204290 +a(g204287 +g204289 +S'most' +p204291 +tp204292 +a(g204289 +g204291 +S'of' +p204293 +tp204294 +a(g204291 +g204293 +S'the' +p204295 +tp204296 +a(g204293 +g204295 +S'canvas' +p204297 +tp204298 +a(g204295 +g204297 +S'from' +p204299 +tp204300 +a(g204297 +g204299 +S'memory—a' +p204301 +tp204302 +a(g204299 +g204301 +S'method' +p204303 +tp204304 +a(g204301 +g204303 +S'she' +p204305 +tp204306 +a(g204303 +g204305 +S'quite' +p204307 +tp204308 +a(g204305 +g204307 +S'likely' +p204309 +tp204310 +a(g204307 +g204309 +S'used' +p204311 +tp204312 +a(g204309 +g204311 +S'for' +p204313 +tp204314 +a(g204311 +g204313 +S'this' +p204315 +tp204316 +a(g204313 +g204315 +S'painting.' +p204317 +tp204318 +a(g204315 +g204317 +S'it' +p204319 +tp204320 +a(g204317 +g204319 +S'was' +p204321 +tp204322 +a(g204319 +g204321 +S'also' +p204323 +tp204324 +a(g204321 +g204323 +S'probably' +p204325 +tp204326 +a(g204323 +g204325 +S'executed' +p204327 +tp204328 +a(g204325 +g204327 +S'(text' +p204329 +tp204330 +a(g204327 +g204329 +S'by' +p204331 +tp204332 +a(g204329 +g204331 +S'daniella' +p204333 +tp204334 +a(g204331 +g204333 +S'berman,' +p204335 +tp204336 +a(g204333 +g204335 +S'notes' +p204337 +tp204338 +a(g204335 +g204337 +S'' +p204341 +tp204342 +a(g204339 +g204341 +S'' +p204345 +tp204346 +a(g204343 +g204345 +S'' +p204349 +tp204350 +a(g204347 +g204349 +S'two' +p204351 +tp204352 +a(g204349 +g204351 +S'laborers' +p204353 +tp204354 +a(g204351 +g204353 +S'go' +p204355 +tp204356 +a(g204353 +g204355 +S'about' +p204357 +tp204358 +a(g204355 +g204357 +S'their' +p204359 +tp204360 +a(g204357 +g204359 +S'work' +p204361 +tp204362 +a(g204359 +g204361 +S'in' +p204363 +tp204364 +a(g204361 +g204363 +S'a' +p204365 +tp204366 +a(g204363 +g204365 +S'brown' +p204367 +tp204368 +a(g204365 +g204367 +S'field,' +p204369 +tp204370 +a(g204367 +g204369 +S'surrounded' +p204371 +tp204372 +a(g204369 +g204371 +S'by' +p204373 +tp204374 +a(g204371 +g204373 +S'trees' +p204375 +tp204376 +a(g204373 +g204375 +S'in' +p204377 +tp204378 +a(g204375 +g204377 +S'various' +p204379 +tp204380 +a(g204377 +g204379 +S'states' +p204381 +tp204382 +a(g204379 +g204381 +S'of' +p204383 +tp204384 +a(g204381 +g204383 +S'bloom' +p204385 +tp204386 +a(g204383 +g204385 +S'under' +p204387 +tp204388 +a(g204385 +g204387 +S'a' +p204389 +tp204390 +a(g204387 +g204389 +S'temperate' +p204391 +tp204392 +a(g204389 +g204391 +S'sky.' +p204393 +tp204394 +a(g204391 +g204393 +S'pissarro' +p204395 +tp204396 +a(g204393 +g204395 +S'cast' +p204397 +tp204398 +a(g204395 +g204397 +S'his' +p204399 +tp204400 +a(g204397 +g204399 +S'eye' +p204401 +tp204402 +a(g204399 +g204401 +S'on' +p204403 +tp204404 +a(g204401 +g204403 +S'an' +p204405 +tp204406 +a(g204403 +g204405 +S'unassuming' +p204407 +tp204408 +a(g204405 +g204407 +S'corner' +p204409 +tp204410 +a(g204407 +g204409 +S'of' +p204411 +tp204412 +a(g204409 +g204411 +S'nature,' +p204413 +tp204414 +a(g204411 +g204413 +S'employing' +p204415 +tp204416 +a(g204413 +g204415 +S'small,' +p204417 +tp204418 +a(g204415 +g204417 +S'separate' +p204419 +tp204420 +a(g204417 +g204419 +S'touches' +p204421 +tp204422 +a(g204419 +g204421 +S'of' +p204423 +tp204424 +a(g204421 +g204423 +S'paint' +p204425 +tp204426 +a(g204423 +g204425 +S'for' +p204427 +tp204428 +a(g204425 +g204427 +S'the' +p204429 +tp204430 +a(g204427 +g204429 +S'plowed' +p204431 +tp204432 +a(g204429 +g204431 +S'earth' +p204433 +tp204434 +a(g204431 +g204433 +S'and' +p204435 +tp204436 +a(g204433 +g204435 +S'orchard' +p204437 +tp204438 +a(g204435 +g204437 +S'and' +p204439 +tp204440 +a(g204437 +g204439 +S'softly' +p204441 +tp204442 +a(g204439 +g204441 +S'blending' +p204443 +tp204444 +a(g204441 +g204443 +S'strokes' +p204445 +tp204446 +a(g204443 +g204445 +S'in' +p204447 +tp204448 +a(g204445 +g204447 +S'the' +p204449 +tp204450 +a(g204447 +g204449 +S'sky' +p204451 +tp204452 +a(g204449 +g204451 +S'in' +p204453 +tp204454 +a(g204451 +g204453 +S'order' +p204455 +tp204456 +a(g204453 +g204455 +S'to' +p204457 +tp204458 +a(g204455 +g204457 +S'create' +p204459 +tp204460 +a(g204457 +g204459 +S'an' +p204461 +tp204462 +a(g204459 +g204461 +S'appealing' +p204463 +tp204464 +a(g204461 +g204463 +S'reflection' +p204465 +tp204466 +a(g204463 +g204465 +S'on' +p204467 +tp204468 +a(g204465 +g204467 +S'springtime' +p204469 +tp204470 +a(g204467 +g204469 +S'renewal.' +p204471 +tp204472 +a(g204469 +g204471 +S'the' +p204473 +tp204474 +a(g204471 +g204473 +S'promise' +p204475 +tp204476 +a(g204473 +g204475 +S'of' +p204477 +tp204478 +a(g204475 +g204477 +S'verdure' +p204479 +tp204480 +a(g204477 +g204479 +S'is' +p204481 +tp204482 +a(g204479 +g204481 +S'evident' +p204483 +tp204484 +a(g204481 +g204483 +S'in' +p204485 +tp204486 +a(g204483 +g204485 +S'the' +p204487 +tp204488 +a(g204485 +g204487 +S'upturned' +p204489 +tp204490 +a(g204487 +g204489 +S'soil' +p204491 +tp204492 +a(g204489 +g204491 +S'and' +p204493 +tp204494 +a(g204491 +g204493 +S'especially' +p204495 +tp204496 +a(g204493 +g204495 +S'in' +p204497 +tp204498 +a(g204495 +g204497 +S'the' +p204499 +tp204500 +a(g204497 +g204499 +S'tree' +p204501 +tp204502 +a(g204499 +g204501 +S'at' +p204503 +tp204504 +a(g204501 +g204503 +S'left,' +p204505 +tp204506 +a(g204503 +g204505 +S'where' +p204507 +tp204508 +a(g204505 +g204507 +S'tender' +p204509 +tp204510 +a(g204507 +g204509 +S'new' +p204511 +tp204512 +a(g204509 +g204511 +S'leaves' +p204513 +tp204514 +a(g204511 +g204513 +S'burst' +p204515 +tp204516 +a(g204513 +g204515 +S'through' +p204517 +tp204518 +a(g204515 +g204517 +S'the' +p204519 +tp204520 +a(g204517 +g204519 +S'cottony' +p204521 +tp204522 +a(g204519 +g204521 +S'blossoms.' +p204523 +tp204524 +a(g204521 +g204523 +S'the' +p204525 +tp204526 +a(g204523 +g204525 +S'serenity' +p204527 +tp204528 +a(g204525 +g204527 +S'of' +p204529 +tp204530 +a(g204527 +g204529 +S'pissarro\xe2\x80\x99s' +p204531 +tp204532 +a(g204529 +g204531 +S'sun-bathed' +p204533 +tp204534 +a(g204531 +g204533 +S'orchard' +p204535 +tp204536 +a(g204533 +g204535 +S'gives' +p204537 +tp204538 +a(g204535 +g204537 +S'no' +p204539 +tp204540 +a(g204537 +g204539 +S'hint' +p204541 +tp204542 +a(g204539 +g204541 +S'of' +p204543 +tp204544 +a(g204541 +g204543 +S'the' +p204545 +tp204546 +a(g204543 +g204545 +S'turbulence' +p204547 +tp204548 +a(g204545 +g204547 +S'that' +p204549 +tp204550 +a(g204547 +g204549 +S'these' +p204551 +tp204552 +a(g204549 +g204551 +S'environs' +p204553 +tp204554 +a(g204551 +g204553 +S'had' +p204555 +tp204556 +a(g204553 +g204555 +S'recently' +p204557 +tp204558 +a(g204555 +g204557 +S'experienced.' +p204559 +tp204560 +a(g204557 +g204559 +S'pissarro' +p204561 +tp204562 +a(g204559 +g204561 +S'had' +p204563 +tp204564 +a(g204561 +g204563 +S'first' +p204565 +tp204566 +a(g204563 +g204565 +S'gone' +p204567 +tp204568 +a(g204565 +g204567 +S'to' +p204569 +tp204570 +a(g204567 +g204569 +S'live' +p204571 +tp204572 +a(g204569 +g204571 +S'in' +p204573 +tp204574 +a(g204571 +g204573 +S'the' +p204575 +tp204576 +a(g204573 +g204575 +S'village' +p204577 +tp204578 +a(g204575 +g204577 +S'of' +p204579 +tp204580 +a(g204577 +g204579 +S'louveciennes,' +p204581 +tp204582 +a(g204579 +g204581 +S'near' +p204583 +tp204584 +a(g204581 +g204583 +S'the' +p204585 +tp204586 +a(g204583 +g204585 +S'seine' +p204587 +tp204588 +a(g204585 +g204587 +S'river' +p204589 +tp204590 +a(g204587 +g204589 +S'several' +p204591 +tp204592 +a(g204589 +g204591 +S'miles' +p204593 +tp204594 +a(g204591 +g204593 +S'to' +p204595 +tp204596 +a(g204593 +g204595 +S'the' +p204597 +tp204598 +a(g204595 +g204597 +S'west' +p204599 +tp204600 +a(g204597 +g204599 +S'of' +p204601 +tp204602 +a(g204599 +g204601 +S'paris,' +p204603 +tp204604 +a(g204601 +g204603 +S'in' +p204605 +tp204606 +a(g204603 +g204605 +S'the' +p204607 +tp204608 +a(g204605 +g204607 +S'spring' +p204609 +tp204610 +a(g204607 +g204609 +S'of' +p204611 +tp204612 +a(g204609 +g204611 +S'1869.' +p204613 +tp204614 +a(g204611 +g204613 +S'his' +p204615 +tp204616 +a(g204613 +g204615 +S'friends' +p204617 +tp204618 +a(g204615 +g204617 +S'claude' +p204619 +tp204620 +a(g204617 +g204619 +S'monet,' +p204621 +tp204622 +a(g204619 +g204621 +S'auguste' +p204623 +tp204624 +a(g204621 +g204623 +S'renoir,' +p204625 +tp204626 +a(g204623 +g204625 +S'and' +p204627 +tp204628 +a(g204625 +g204627 +S'alfred' +p204629 +tp204630 +a(g204627 +g204629 +S'sisley' +p204631 +tp204632 +a(g204629 +g204631 +S'also' +p204633 +tp204634 +a(g204631 +g204633 +S'worked' +p204635 +tp204636 +a(g204633 +g204635 +S'nearby.' +p204637 +tp204638 +a(g204635 +g204637 +S'the' +p204639 +tp204640 +a(g204637 +g204639 +S'artists' +p204641 +tp204642 +a(g204639 +g204641 +S'kept' +p204643 +tp204644 +a(g204641 +g204643 +S'one' +p204645 +tp204646 +a(g204643 +g204645 +S'another' +p204647 +tp204648 +a(g204645 +g204647 +S'company,' +p204649 +tp204650 +a(g204647 +g204649 +S'focusing' +p204651 +tp204652 +a(g204649 +g204651 +S'on' +p204653 +tp204654 +a(g204651 +g204653 +S'the' +p204655 +tp204656 +a(g204653 +g204655 +S'landscape' +p204657 +tp204658 +a(g204655 +g204657 +S'while' +p204659 +tp204660 +a(g204657 +g204659 +S'forging' +p204661 +tp204662 +a(g204659 +g204661 +S'innovations' +p204663 +tp204664 +a(g204661 +g204663 +S'that' +p204665 +tp204666 +a(g204663 +g204665 +S'led' +p204667 +tp204668 +a(g204665 +g204667 +S'to' +p204669 +tp204670 +a(g204667 +g204669 +S'the' +p204671 +tp204672 +a(g204669 +g204671 +S'emergence' +p204673 +tp204674 +a(g204671 +g204673 +S'of' +p204675 +tp204676 +a(g204673 +g204675 +S'a' +p204677 +tp204678 +a(g204675 +g204677 +S'full-blown' +p204679 +tp204680 +a(g204677 +g204679 +S'impressionist' +p204681 +tp204682 +a(g204679 +g204681 +S'style.' +p204683 +tp204684 +a(g204681 +g204683 +S'their' +p204685 +tp204686 +a(g204683 +g204685 +S'idyll' +p204687 +tp204688 +a(g204685 +g204687 +S'in' +p204689 +tp204690 +a(g204687 +g204689 +S'the' +p204691 +tp204692 +a(g204689 +g204691 +S'countryside,' +p204693 +tp204694 +a(g204691 +g204693 +S'however,' +p204695 +tp204696 +a(g204693 +g204695 +S'was' +p204697 +tp204698 +a(g204695 +g204697 +S'interrupted' +p204699 +tp204700 +a(g204697 +g204699 +S'by' +p204701 +tp204702 +a(g204699 +g204701 +S'the' +p204703 +tp204704 +a(g204701 +g204703 +S'outbreak' +p204705 +tp204706 +a(g204703 +g204705 +S'of' +p204707 +tp204708 +a(g204705 +g204707 +S'the' +p204709 +tp204710 +a(g204707 +g204709 +S'franco-prussian' +p204711 +tp204712 +a(g204709 +g204711 +S'war' +p204713 +tp204714 +a(g204711 +g204713 +S'in' +p204715 +tp204716 +a(g204713 +g204715 +S'1870.' +p204717 +tp204718 +a(g204715 +g204717 +S'as' +p204719 +tp204720 +a(g204717 +g204719 +S'foreign' +p204721 +tp204722 +a(g204719 +g204721 +S'troops' +p204723 +tp204724 +a(g204721 +g204723 +S'marched' +p204725 +tp204726 +a(g204723 +g204725 +S'into' +p204727 +tp204728 +a(g204725 +g204727 +S'the' +p204729 +tp204730 +a(g204727 +g204729 +S'region,' +p204731 +tp204732 +a(g204729 +g204731 +S'pissarro' +p204733 +tp204734 +a(g204731 +g204733 +S'fled' +p204735 +tp204736 +a(g204733 +g204735 +S'to' +p204737 +tp204738 +a(g204735 +g204737 +S'brittany' +p204739 +tp204740 +a(g204737 +g204739 +S'and' +p204741 +tp204742 +a(g204739 +g204741 +S'then' +p204743 +tp204744 +a(g204741 +g204743 +S'to' +p204745 +tp204746 +a(g204743 +g204745 +S'london,' +p204747 +tp204748 +a(g204745 +g204747 +S'leaving' +p204749 +tp204750 +a(g204747 +g204749 +S'behind' +p204751 +tp204752 +a(g204749 +g204751 +S'most' +p204753 +tp204754 +a(g204751 +g204753 +S'of' +p204755 +tp204756 +a(g204753 +g204755 +S'his' +p204757 +tp204758 +a(g204755 +g204757 +S'belongings.' +p204759 +tp204760 +a(g204757 +g204759 +S'he' +p204761 +tp204762 +a(g204759 +g204761 +S'returned' +p204763 +tp204764 +a(g204761 +g204763 +S'in' +p204765 +tp204766 +a(g204763 +g204765 +S'1871' +p204767 +tp204768 +a(g204765 +g204767 +S'to' +p204769 +tp204770 +a(g204767 +g204769 +S'find' +p204771 +tp204772 +a(g204769 +g204771 +S'that' +p204773 +tp204774 +a(g204771 +g204773 +S'the' +p204775 +tp204776 +a(g204773 +g204775 +S'prussian' +p204777 +tp204778 +a(g204775 +g204777 +S'soldiers' +p204779 +tp204780 +a(g204777 +g204779 +S'garrisoned' +p204781 +tp204782 +a(g204779 +g204781 +S'in' +p204783 +tp204784 +a(g204781 +g204783 +S'his' +p204785 +tp204786 +a(g204783 +g204785 +S'home' +p204787 +tp204788 +a(g204785 +g204787 +S'had' +p204789 +tp204790 +a(g204787 +g204789 +S'destroyed' +p204791 +tp204792 +a(g204789 +g204791 +S'or' +p204793 +tp204794 +a(g204791 +g204793 +S'damaged' +p204795 +tp204796 +a(g204793 +g204795 +S'much' +p204797 +tp204798 +a(g204795 +g204797 +S'of' +p204799 +tp204800 +a(g204797 +g204799 +S'his' +p204801 +tp204802 +a(g204799 +g204801 +S'property,' +p204803 +tp204804 +a(g204801 +g204803 +S'including' +p204805 +tp204806 +a(g204803 +g204805 +S'works' +p204807 +tp204808 +a(g204805 +g204807 +S'of' +p204809 +tp204810 +a(g204807 +g204809 +S'art.' +p204811 +tp204812 +a(g204809 +g204811 +S'he' +p204813 +tp204814 +a(g204811 +g204813 +S'stayed' +p204815 +tp204816 +a(g204813 +g204815 +S'on' +p204817 +tp204818 +a(g204815 +g204817 +S'a' +p204819 +tp204820 +a(g204817 +g204819 +S'few' +p204821 +tp204822 +a(g204819 +g204821 +S'months' +p204823 +tp204824 +a(g204821 +g204823 +S'in' +p204825 +tp204826 +a(g204823 +g204825 +S'louveciennes,' +p204827 +tp204828 +a(g204825 +g204827 +S'during' +p204829 +tp204830 +a(g204827 +g204829 +S'which' +p204831 +tp204832 +a(g204829 +g204831 +S'time' +p204833 +tp204834 +a(g204831 +g204833 +S'he' +p204835 +tp204836 +a(g204833 +g204835 +S'painted' +p204837 +tp204838 +a(g204835 +g204837 +S'this' +p204839 +tp204840 +a(g204837 +g204839 +S'canvas,' +p204841 +tp204842 +a(g204839 +g204841 +S'and' +p204843 +tp204844 +a(g204841 +g204843 +S'relocated' +p204845 +tp204846 +a(g204843 +g204845 +S'the' +p204847 +tp204848 +a(g204845 +g204847 +S'next' +p204849 +tp204850 +a(g204847 +g204849 +S'year' +p204851 +tp204852 +a(g204849 +g204851 +S'to' +p204853 +tp204854 +a(g204851 +g204853 +S'pontoise,' +p204855 +tp204856 +a(g204853 +g204855 +S'farther' +p204857 +tp204858 +a(g204855 +g204857 +S'removed' +p204859 +tp204860 +a(g204857 +g204859 +S'from' +p204861 +tp204862 +a(g204859 +g204861 +S'the' +p204863 +tp204864 +a(g204861 +g204863 +S'city.' +p204865 +tp204866 +a(g204863 +g204865 +S'louveciennes' +p204867 +tp204868 +a(g204865 +g204867 +S'was' +p204869 +tp204870 +a(g204867 +g204869 +S'one' +p204871 +tp204872 +a(g204869 +g204871 +S'of' +p204873 +tp204874 +a(g204871 +g204873 +S'dozens' +p204875 +tp204876 +a(g204873 +g204875 +S'of' +p204877 +tp204878 +a(g204875 +g204877 +S'communities' +p204879 +tp204880 +a(g204877 +g204879 +S'near' +p204881 +tp204882 +a(g204879 +g204881 +S'paris' +p204883 +tp204884 +a(g204881 +g204883 +S'that' +p204885 +tp204886 +a(g204883 +g204885 +S'were' +p204887 +tp204888 +a(g204885 +g204887 +S'transformed' +p204889 +tp204890 +a(g204887 +g204889 +S'by' +p204891 +tp204892 +a(g204889 +g204891 +S'the' +p204893 +tp204894 +a(g204891 +g204893 +S'arrival' +p204895 +tp204896 +a(g204893 +g204895 +S'of' +p204897 +tp204898 +a(g204895 +g204897 +S'the' +p204899 +tp204900 +a(g204897 +g204899 +S'railway' +p204901 +tp204902 +a(g204899 +g204901 +S'in' +p204903 +tp204904 +a(g204901 +g204903 +S'the' +p204905 +tp204906 +a(g204903 +g204905 +S'nineteenth' +p204907 +tp204908 +a(g204905 +g204907 +S'century.' +p204909 +tp204910 +a(g204907 +g204909 +S'residents' +p204911 +tp204912 +a(g204909 +g204911 +S'of' +p204913 +tp204914 +a(g204911 +g204913 +S'the' +p204915 +tp204916 +a(g204913 +g204915 +S'metropolis' +p204917 +tp204918 +a(g204915 +g204917 +S'took' +p204919 +tp204920 +a(g204917 +g204919 +S'advantage' +p204921 +tp204922 +a(g204919 +g204921 +S'of' +p204923 +tp204924 +a(g204921 +g204923 +S'the' +p204925 +tp204926 +a(g204923 +g204925 +S'new' +p204927 +tp204928 +a(g204925 +g204927 +S'convenience' +p204929 +tp204930 +a(g204927 +g204929 +S'of' +p204931 +tp204932 +a(g204929 +g204931 +S'travel' +p204933 +tp204934 +a(g204931 +g204933 +S'and' +p204935 +tp204936 +a(g204933 +g204935 +S'headed' +p204937 +tp204938 +a(g204935 +g204937 +S'to' +p204939 +tp204940 +a(g204937 +g204939 +S'nearby' +p204941 +tp204942 +a(g204939 +g204941 +S'villages' +p204943 +tp204944 +a(g204941 +g204943 +S'that' +p204945 +tp204946 +a(g204943 +g204945 +S'were' +p204947 +tp204948 +a(g204945 +g204947 +S'reachable' +p204949 +tp204950 +a(g204947 +g204949 +S'in' +p204951 +tp204952 +a(g204949 +g204951 +S'less' +p204953 +tp204954 +a(g204951 +g204953 +S'than' +p204955 +tp204956 +a(g204953 +g204955 +S'one' +p204957 +tp204958 +a(g204955 +g204957 +S'hour.' +p204959 +tp204960 +a(g204957 +g204959 +S'some' +p204961 +tp204962 +a(g204959 +g204961 +S'took' +p204963 +tp204964 +a(g204961 +g204963 +S'up' +p204965 +tp204966 +a(g204963 +g204965 +S'permanent' +p204967 +tp204968 +a(g204965 +g204967 +S'residence,' +p204969 +tp204970 +a(g204967 +g204969 +S'turning' +p204971 +tp204972 +a(g204969 +g204971 +S'hamlets' +p204973 +tp204974 +a(g204971 +g204973 +S'into' +p204975 +tp204976 +a(g204973 +g204975 +S'suburbs' +p204977 +tp204978 +a(g204975 +g204977 +S'of' +p204979 +tp204980 +a(g204977 +g204979 +S'the' +p204981 +tp204982 +a(g204979 +g204981 +S'french' +p204983 +tp204984 +a(g204981 +g204983 +S'capital.' +p204985 +tp204986 +a(g204983 +g204985 +S'pissarro\xe2\x80\x99s' +p204987 +tp204988 +a(g204985 +g204987 +S'tendency' +p204989 +tp204990 +a(g204987 +g204989 +S'to' +p204991 +tp204992 +a(g204989 +g204991 +S'depict' +p204993 +tp204994 +a(g204991 +g204993 +S'humble' +p204995 +tp204996 +a(g204993 +g204995 +S'scenery' +p204997 +tp204998 +a(g204995 +g204997 +S'dismayed' +p204999 +tp205000 +a(g204997 +g204999 +S'even' +p205001 +tp205002 +a(g204999 +g205001 +S'a' +p205003 +tp205004 +a(g205001 +g205003 +S'critic' +p205005 +tp205006 +a(g205003 +g205005 +S'generally' +p205007 +tp205008 +a(g205005 +g205007 +S'supportive' +p205009 +tp205010 +a(g205007 +g205009 +S'of' +p205011 +tp205012 +a(g205009 +g205011 +S'the' +p205013 +tp205014 +a(g205011 +g205013 +S'trend' +p205015 +tp205016 +a(g205013 +g205015 +S'toward' +p205017 +tp205018 +a(g205015 +g205017 +S'naturalism' +p205019 +tp205020 +a(g205017 +g205019 +S'in' +p205021 +tp205022 +a(g205019 +g205021 +S'nineteenth-century' +p205023 +tp205024 +a(g205021 +g205023 +S'landscape' +p205025 +tp205026 +a(g205023 +g205025 +S'painting.' +p205027 +tp205028 +a(g205025 +g205027 +S'in' +p205029 +tp205030 +a(g205027 +g205029 +S'a' +p205031 +tp205032 +a(g205029 +g205031 +S'review' +p205033 +tp205034 +a(g205031 +g205033 +S'of' +p205035 +tp205036 +a(g205033 +g205035 +S'the' +p205037 +tp205038 +a(g205035 +g205037 +S'first' +p205039 +tp205040 +a(g205037 +g205039 +S'impressionist' +p205041 +tp205042 +a(g205039 +g205041 +S'exhibition' +p205043 +tp205044 +a(g205041 +g205043 +S'in' +p205045 +tp205046 +a(g205043 +g205045 +S'1874' +p205047 +tp205048 +a(g205045 +g205047 +S'(pissarro' +p205049 +tp205050 +a(g205047 +g205049 +S'had' +p205051 +tp205052 +a(g205049 +g205051 +S'helped' +p205053 +tp205054 +a(g205051 +g205053 +S'organize' +p205055 +tp205056 +a(g205053 +g205055 +S'it' +p205057 +tp205058 +a(g205055 +g205057 +S'and' +p205059 +tp205060 +a(g205057 +g205059 +S'had' +p205061 +tp205062 +a(g205059 +g205061 +S'sent' +p205063 +tp205064 +a(g205061 +g205063 +S'five' +p205065 +tp205066 +a(g205063 +g205065 +S'canvases),' +p205067 +tp205068 +a(g205065 +g205067 +S'castagnary' +p205069 +tp205070 +a(g205067 +g205069 +S'dismissed' +p205071 +tp205072 +a(g205069 +g205071 +S'pissarro\xe2\x80\x99s' +p205073 +tp205074 +a(g205071 +g205073 +S'subject' +p205075 +tp205076 +a(g205073 +g205075 +S'matter' +p205077 +tp205078 +a(g205075 +g205077 +S'as' +p205079 +tp205080 +a(g205077 +g205079 +S'too' +p205081 +tp205082 +a(g205079 +g205081 +S'prosaic,' +p205083 +tp205084 +a(g205081 +g205083 +S'even' +p205085 +tp205086 +a(g205083 +g205085 +S'as' +p205087 +tp205088 +a(g205085 +g205087 +S'he' +p205089 +tp205090 +a(g205087 +g205089 +S'found' +p205091 +tp205092 +a(g205089 +g205091 +S'poetry' +p205093 +tp205094 +a(g205091 +g205093 +S'in' +p205095 +tp205096 +a(g205093 +g205095 +S'the' +p205097 +tp205098 +a(g205095 +g205097 +S'artist\xe2\x80\x99s' +p205099 +tp205100 +a(g205097 +g205099 +S'handling:' +p205101 +tp205102 +a(g205099 +g205101 +S'"[pissarro]' +p205103 +tp205104 +a(g205101 +g205103 +S'has' +p205105 +tp205106 +a(g205103 +g205105 +S'a' +p205107 +tp205108 +a(g205105 +g205107 +S'deplorable' +p205109 +tp205110 +a(g205107 +g205109 +S'predilection' +p205111 +tp205112 +a(g205109 +g205111 +S'for' +p205113 +tp205114 +a(g205111 +g205113 +S'market' +p205115 +tp205116 +a(g205113 +g205115 +S'gardens' +p205117 +tp205118 +a(g205115 +g205117 +S'.' +p205119 +tp205120 +a(g205117 +g205119 +S'.' +p205121 +tp205122 +a(g205119 +g205121 +S'.' +p205123 +tp205124 +a(g205121 +g205123 +S'and' +p205125 +tp205126 +a(g205123 +g205125 +S'does' +p205127 +tp205128 +a(g205125 +g205127 +S'not' +p205129 +tp205130 +a(g205127 +g205129 +S'hesitate' +p205131 +tp205132 +a(g205129 +g205131 +S'to' +p205133 +tp205134 +a(g205131 +g205133 +S'paint' +p205135 +tp205136 +a(g205133 +g205135 +S'cabbage' +p205137 +tp205138 +a(g205135 +g205137 +S'or' +p205139 +tp205140 +a(g205137 +g205139 +S'any' +p205141 +tp205142 +a(g205139 +g205141 +S'other' +p205143 +tp205144 +a(g205141 +g205143 +S'domestic' +p205145 +tp205146 +a(g205143 +g205145 +S'vegetable.' +p205147 +tp205148 +a(g205145 +g205147 +S'but' +p205149 +tp205150 +a(g205147 +g205149 +S'these' +p205151 +tp205152 +a(g205149 +g205151 +S'errors' +p205153 +tp205154 +a(g205151 +g205153 +S'of' +p205155 +tp205156 +a(g205153 +g205155 +S'logic' +p205157 +tp205158 +a(g205155 +g205157 +S'or' +p205159 +tp205160 +a(g205157 +g205159 +S'vulgarities' +p205161 +tp205162 +a(g205159 +g205161 +S'of' +p205163 +tp205164 +a(g205161 +g205163 +S'taste' +p205165 +tp205166 +a(g205163 +g205165 +S'do' +p205167 +tp205168 +a(g205165 +g205167 +S'not' +p205169 +tp205170 +a(g205167 +g205169 +S'alter' +p205171 +tp205172 +a(g205169 +g205171 +S'his' +p205173 +tp205174 +a(g205171 +g205173 +S'beautiful' +p205175 +tp205176 +a(g205173 +g205175 +S'qualities' +p205177 +tp205178 +a(g205175 +g205177 +S'of' +p205179 +tp205180 +a(g205177 +g205179 +S'execution."' +p205181 +tp205182 +a(g205179 +g205181 +S'(text' +p205183 +tp205184 +a(g205181 +g205183 +S'by' +p205185 +tp205186 +a(g205183 +g205185 +S'margaret' +p205187 +tp205188 +a(g205185 +g205187 +S'doyle,' +p205189 +tp205190 +a(g205187 +g205189 +S'notes' +p205191 +tp205192 +a(g205189 +g205191 +S'' +p205195 +tp205196 +a(g205193 +g205195 +S'' +p205199 +tp205200 +a(g205197 +g205199 +S'' +p205203 +tp205204 +a(g205201 +g205203 +S'cityscapes' +p205205 +tp205206 +a(g205203 +g205205 +S'played' +p205207 +tp205208 +a(g205205 +g205207 +S'a' +p205209 +tp205210 +a(g205207 +g205209 +S'significant' +p205211 +tp205212 +a(g205209 +g205211 +S'role' +p205213 +tp205214 +a(g205211 +g205213 +S'in' +p205215 +tp205216 +a(g205213 +g205215 +S'the' +p205217 +tp205218 +a(g205215 +g205217 +S'work' +p205219 +tp205220 +a(g205217 +g205219 +S'of' +p205221 +tp205222 +a(g205219 +g205221 +S'many' +p205223 +tp205224 +a(g205221 +g205223 +S'impressionist' +p205225 +tp205226 +a(g205223 +g205225 +S'painters' +p205227 +tp205228 +a(g205225 +g205227 +S'in' +p205229 +tp205230 +a(g205227 +g205229 +S'the' +p205231 +tp205232 +a(g205229 +g205231 +S'1860s' +p205233 +tp205234 +a(g205231 +g205233 +S'and' +p205235 +tp205236 +a(g205233 +g205235 +S'1870s,' +p205237 +tp205238 +a(g205235 +g205237 +S'when' +p205239 +tp205240 +a(g205237 +g205239 +S'claude' +p205241 +tp205242 +a(g205239 +g205241 +S'monet,' +p205243 +tp205244 +a(g205241 +g205243 +S'gustave' +p205245 +tp205246 +a(g205243 +g205245 +S'caillebotte,' +p205247 +tp205248 +a(g205245 +g205247 +S'and' +p205249 +tp205250 +a(g205247 +g205249 +S'auguste' +p205251 +tp205252 +a(g205249 +g205251 +S'renoir' +p205253 +tp205254 +a(g205251 +g205253 +S'(see' +p205255 +tp205256 +a(g205253 +g205255 +S'although' +p205257 +tp205258 +a(g205255 +g205257 +S'his' +p205259 +tp205260 +a(g205257 +g205259 +S'family' +p205261 +tp205262 +a(g205259 +g205261 +S'home' +p205263 +tp205264 +a(g205261 +g205263 +S'was' +p205265 +tp205266 +a(g205263 +g205265 +S'north' +p205267 +tp205268 +a(g205265 +g205267 +S'of' +p205269 +tp205270 +a(g205267 +g205269 +S'paris' +p205271 +tp205272 +a(g205269 +g205271 +S'in' +p205273 +tp205274 +a(g205271 +g205273 +S'eragny,' +p205275 +tp205276 +a(g205273 +g205275 +S'pissarro' +p205277 +tp205278 +a(g205275 +g205277 +S'spent' +p205279 +tp205280 +a(g205277 +g205279 +S'extended' +p205281 +tp205282 +a(g205279 +g205281 +S'periods' +p205283 +tp205284 +a(g205281 +g205283 +S'in' +p205285 +tp205286 +a(g205283 +g205285 +S'the' +p205287 +tp205288 +a(g205285 +g205287 +S'french' +p205289 +tp205290 +a(g205287 +g205289 +S'capital' +p205291 +tp205292 +a(g205289 +g205291 +S'during' +p205293 +tp205294 +a(g205291 +g205293 +S'the' +p205295 +tp205296 +a(g205293 +g205295 +S'last' +p205297 +tp205298 +a(g205295 +g205297 +S'decade' +p205299 +tp205300 +a(g205297 +g205299 +S'of' +p205301 +tp205302 +a(g205299 +g205301 +S'his' +p205303 +tp205304 +a(g205301 +g205303 +S'career,' +p205305 +tp205306 +a(g205303 +g205305 +S'renting' +p205307 +tp205308 +a(g205305 +g205307 +S'rooms' +p205309 +tp205310 +a(g205307 +g205309 +S'in' +p205311 +tp205312 +a(g205309 +g205311 +S'various' +p205313 +tp205314 +a(g205311 +g205313 +S'locations.' +p205315 +tp205316 +a(g205313 +g205315 +S'for' +p205317 +tp205318 +a(g205315 +g205317 +S'a' +p205319 +tp205320 +a(g205317 +g205319 +S'number' +p205321 +tp205322 +a(g205319 +g205321 +S'of' +p205323 +tp205324 +a(g205321 +g205323 +S'years' +p205325 +tp205326 +a(g205323 +g205325 +S'the' +p205327 +tp205328 +a(g205325 +g205327 +S'artist' +p205329 +tp205330 +a(g205327 +g205329 +S'had' +p205331 +tp205332 +a(g205329 +g205331 +S'suffered' +p205333 +tp205334 +a(g205331 +g205333 +S'from' +p205335 +tp205336 +a(g205333 +g205335 +S'chronic' +p205337 +tp205338 +a(g205335 +g205337 +S'eye' +p205339 +tp205340 +a(g205337 +g205339 +S'infections' +p205341 +tp205342 +a(g205339 +g205341 +S'that' +p205343 +tp205344 +a(g205341 +g205343 +S'made' +p205345 +tp205346 +a(g205343 +g205345 +S'it' +p205347 +tp205348 +a(g205345 +g205347 +S'difficult' +p205349 +tp205350 +a(g205347 +g205349 +S'for' +p205351 +tp205352 +a(g205349 +g205351 +S'him' +p205353 +tp205354 +a(g205351 +g205353 +S'to' +p205355 +tp205356 +a(g205353 +g205355 +S'work' +p205357 +tp205358 +a(g205355 +g205357 +S'outdoors' +p205359 +tp205360 +a(g205357 +g205359 +S'owing' +p205361 +tp205362 +a(g205359 +g205361 +S'to' +p205363 +tp205364 +a(g205361 +g205363 +S'the' +p205365 +tp205366 +a(g205363 +g205365 +S'wind' +p205367 +tp205368 +a(g205365 +g205367 +S'and' +p205369 +tp205370 +a(g205367 +g205369 +S'light.' +p205371 +tp205372 +a(g205369 +g205371 +S'retreating' +p205373 +tp205374 +a(g205371 +g205373 +S'indoors,' +p205375 +tp205376 +a(g205373 +g205375 +S'he' +p205377 +tp205378 +a(g205375 +g205377 +S'required' +p205379 +tp205380 +a(g205377 +g205379 +S'a' +p205381 +tp205382 +a(g205379 +g205381 +S'room' +p205383 +tp205384 +a(g205381 +g205383 +S'that' +p205385 +tp205386 +a(g205383 +g205385 +S'overlooked' +p205387 +tp205388 +a(g205385 +g205387 +S'scenic' +p205389 +tp205390 +a(g205387 +g205389 +S'views' +p205391 +tp205392 +a(g205389 +g205391 +S'in' +p205393 +tp205394 +a(g205391 +g205393 +S'order' +p205395 +tp205396 +a(g205393 +g205395 +S'to' +p205397 +tp205398 +a(g205395 +g205397 +S'continue' +p205399 +tp205400 +a(g205397 +g205399 +S'his' +p205401 +tp205402 +a(g205399 +g205401 +S'practice' +p205403 +tp205404 +a(g205401 +g205403 +S'of' +p205405 +tp205406 +a(g205403 +g205405 +S'painting' +p205407 +tp205408 +a(g205405 +g205407 +S'before' +p205409 +tp205410 +a(g205407 +g205409 +S'the' +p205411 +tp205412 +a(g205409 +g205411 +S'motif.' +p205413 +tp205414 +a(g205411 +g205413 +S'an' +p205415 +tp205416 +a(g205413 +g205415 +S'apartment' +p205417 +tp205418 +a(g205415 +g205417 +S'on' +p205419 +tp205420 +a(g205417 +g205419 +S'the' +p205421 +tp205422 +a(g205419 +g205421 +S'rue' +p205423 +tp205424 +a(g205421 +g205423 +S'de' +p205425 +tp205426 +a(g205423 +g205425 +S'rivoli,' +p205427 +tp205428 +a(g205425 +g205427 +S'which' +p205429 +tp205430 +a(g205427 +g205429 +S'parallels' +p205431 +tp205432 +a(g205429 +g205431 +S'the' +p205433 +tp205434 +a(g205431 +g205433 +S'seine' +p205435 +tp205436 +a(g205433 +g205435 +S'on' +p205437 +tp205438 +a(g205435 +g205437 +S'the' +p205439 +tp205440 +a(g205437 +g205439 +S'opposite' +p205441 +tp205442 +a(g205439 +g205441 +S'side' +p205443 +tp205444 +a(g205441 +g205443 +S'of' +p205445 +tp205446 +a(g205443 +g205445 +S'the' +p205447 +tp205448 +a(g205445 +g205447 +S'tuileries' +p205449 +tp205450 +a(g205447 +g205449 +S'gardens' +p205451 +tp205452 +a(g205449 +g205451 +S'and' +p205453 +tp205454 +a(g205451 +g205453 +S'the' +p205455 +tp205456 +a(g205453 +g205455 +S'louvre,' +p205457 +tp205458 +a(g205455 +g205457 +S'offered' +p205459 +tp205460 +a(g205457 +g205459 +S'him' +p205461 +tp205462 +a(g205459 +g205461 +S'just' +p205463 +tp205464 +a(g205461 +g205463 +S'that.' +p205465 +tp205466 +a(g205463 +g205465 +S'upon' +p205467 +tp205468 +a(g205465 +g205467 +S'securing' +p205469 +tp205470 +a(g205467 +g205469 +S'the' +p205471 +tp205472 +a(g205469 +g205471 +S'flat,' +p205473 +tp205474 +a(g205471 +g205473 +S'he' +p205475 +tp205476 +a(g205473 +g205475 +S'immediately' +p205477 +tp205478 +a(g205475 +g205477 +S'began' +p205479 +tp205480 +a(g205477 +g205479 +S'planning' +p205481 +tp205482 +a(g205479 +g205481 +S'to' +p205483 +tp205484 +a(g205481 +g205483 +S'paint' +p205485 +tp205486 +a(g205483 +g205485 +S'a' +p205487 +tp205488 +a(g205485 +g205487 +S'series' +p205489 +tp205490 +a(g205487 +g205489 +S'of' +p205491 +tp205492 +a(g205489 +g205491 +S'the' +p205493 +tp205494 +a(g205491 +g205493 +S'available' +p205495 +tp205496 +a(g205493 +g205495 +S'panoramas,' +p205497 +tp205498 +a(g205495 +g205497 +S'writing' +p205499 +tp205500 +a(g205497 +g205499 +S'excitedly' +p205501 +tp205502 +a(g205499 +g205501 +S'to' +p205503 +tp205504 +a(g205501 +g205503 +S'his' +p205505 +tp205506 +a(g205503 +g205505 +S'son' +p205507 +tp205508 +a(g205505 +g205507 +S'lucien' +p205509 +tp205510 +a(g205507 +g205509 +S'that' +p205511 +tp205512 +a(g205509 +g205511 +S'the' +p205513 +tp205514 +a(g205511 +g205513 +S'place' +p205515 +tp205516 +a(g205513 +g205515 +S'had' +p205517 +tp205518 +a(g205515 +g205517 +S'"a' +p205519 +tp205520 +a(g205517 +g205519 +S'superb' +p205521 +tp205522 +a(g205519 +g205521 +S'view' +p205523 +tp205524 +a(g205521 +g205523 +S'of' +p205525 +tp205526 +a(g205523 +g205525 +S'the' +p205527 +tp205528 +a(g205525 +g205527 +S'park,' +p205529 +tp205530 +a(g205527 +g205529 +S'the' +p205531 +tp205532 +a(g205529 +g205531 +S'louvre' +p205533 +tp205534 +a(g205531 +g205533 +S'to' +p205535 +tp205536 +a(g205533 +g205535 +S'the' +p205537 +tp205538 +a(g205535 +g205537 +S'left,' +p205539 +tp205540 +a(g205537 +g205539 +S'in' +p205541 +tp205542 +a(g205539 +g205541 +S'the' +p205543 +tp205544 +a(g205541 +g205543 +S'background' +p205545 +tp205546 +a(g205543 +g205545 +S'the' +p205547 +tp205548 +a(g205545 +g205547 +S'houses' +p205549 +tp205550 +a(g205547 +g205549 +S'on' +p205551 +tp205552 +a(g205549 +g205551 +S'the' +p205553 +tp205554 +a(g205551 +g205553 +S'quays' +p205555 +tp205556 +a(g205553 +g205555 +S'behind' +p205557 +tp205558 +a(g205555 +g205557 +S'the' +p205559 +tp205560 +a(g205557 +g205559 +S'trees,' +p205561 +tp205562 +a(g205559 +g205561 +S'to' +p205563 +tp205564 +a(g205561 +g205563 +S'the' +p205565 +tp205566 +a(g205563 +g205565 +S'right' +p205567 +tp205568 +a(g205565 +g205567 +S'the' +p205569 +tp205570 +a(g205567 +g205569 +S'd\xc3\xb4me' +p205571 +tp205572 +a(g205569 +g205571 +S'des' +p205573 +tp205574 +a(g205571 +g205573 +S'invalides,' +p205575 +tp205576 +a(g205573 +g205575 +S'the' +p205577 +tp205578 +a(g205575 +g205577 +S'steeples' +p205579 +tp205580 +a(g205577 +g205579 +S'of' +p205581 +tp205582 +a(g205579 +g205581 +S'ste.' +p205583 +tp205584 +a(g205581 +g205583 +S'clotilde' +p205585 +tp205586 +a(g205583 +g205585 +S'behind' +p205587 +tp205588 +a(g205585 +g205587 +S'the' +p205589 +tp205590 +a(g205587 +g205589 +S'solid' +p205591 +tp205592 +a(g205589 +g205591 +S'mass' +p205593 +tp205594 +a(g205591 +g205593 +S'of' +p205595 +tp205596 +a(g205593 +g205595 +S'chestnut' +p205597 +tp205598 +a(g205595 +g205597 +S'trees.' +p205599 +tp205600 +a(g205597 +g205599 +S'it' +p205601 +tp205602 +a(g205599 +g205601 +S'is' +p205603 +tp205604 +a(g205601 +g205603 +S'very' +p205605 +tp205606 +a(g205603 +g205605 +S'beautiful.' +p205607 +tp205608 +a(g205605 +g205607 +S'i' +p205609 +tp205610 +a(g205607 +g205609 +S'shall' +p205611 +tp205612 +a(g205609 +g205611 +S'paint' +p205613 +tp205614 +a(g205611 +g205613 +S'a' +p205615 +tp205616 +a(g205613 +g205615 +S'fine' +p205617 +tp205618 +a(g205615 +g205617 +S'series."' +p205619 +tp205620 +a(g205617 +g205619 +S'this' +p205621 +tp205622 +a(g205619 +g205621 +S'view' +p205623 +tp205624 +a(g205621 +g205623 +S'looks' +p205625 +tp205626 +a(g205623 +g205625 +S'toward' +p205627 +tp205628 +a(g205625 +g205627 +S'the' +p205629 +tp205630 +a(g205627 +g205629 +S'main' +p205631 +tp205632 +a(g205629 +g205631 +S'courtyard' +p205633 +tp205634 +a(g205631 +g205633 +S'of' +p205635 +tp205636 +a(g205633 +g205635 +S'the' +p205637 +tp205638 +a(g205635 +g205637 +S'louvre,' +p205639 +tp205640 +a(g205637 +g205639 +S'where' +p205641 +tp205642 +a(g205639 +g205641 +S'the' +p205643 +tp205644 +a(g205641 +g205643 +S'small' +p205645 +tp205646 +a(g205643 +g205645 +S'arc' +p205647 +tp205648 +a(g205645 +g205647 +S'de' +p205649 +tp205650 +a(g205647 +g205649 +S'triomphe' +p205651 +tp205652 +a(g205649 +g205651 +S'du' +p205653 +tp205654 +a(g205651 +g205653 +S'carrousel,' +p205655 +tp205656 +a(g205653 +g205655 +S'visible' +p205657 +tp205658 +a(g205655 +g205657 +S'just' +p205659 +tp205660 +a(g205657 +g205659 +S'beyond' +p205661 +tp205662 +a(g205659 +g205661 +S'the' +p205663 +tp205664 +a(g205661 +g205663 +S'trees,' +p205665 +tp205666 +a(g205663 +g205665 +S'marks' +p205667 +tp205668 +a(g205665 +g205667 +S'the' +p205669 +tp205670 +a(g205667 +g205669 +S'entrance' +p205671 +tp205672 +a(g205669 +g205671 +S'into' +p205673 +tp205674 +a(g205671 +g205673 +S'the' +p205675 +tp205676 +a(g205673 +g205675 +S'tuileries.' +p205677 +tp205678 +a(g205675 +g205677 +S'although' +p205679 +tp205680 +a(g205677 +g205679 +S'pissarro' +p205681 +tp205682 +a(g205679 +g205681 +S'had' +p205683 +tp205684 +a(g205681 +g205683 +S'adopted' +p205685 +tp205686 +a(g205683 +g205685 +S'a' +p205687 +tp205688 +a(g205685 +g205687 +S'patterned' +p205689 +tp205690 +a(g205687 +g205689 +S'divisionist' +p205691 +tp205692 +a(g205689 +g205691 +S'technique' +p205693 +tp205694 +a(g205691 +g205693 +S'in' +p205695 +tp205696 +a(g205693 +g205695 +S'the' +p205697 +tp205698 +a(g205695 +g205697 +S'mid-1880s' +p205699 +tp205700 +a(g205697 +g205699 +S'(in' +p205701 +tp205702 +a(g205699 +g205701 +S'response' +p205703 +tp205704 +a(g205701 +g205703 +S'to' +p205705 +tp205706 +a(g205703 +g205705 +S'the' +p205707 +tp205708 +a(g205705 +g205707 +S'innovations' +p205709 +tp205710 +a(g205707 +g205709 +S'of' +p205711 +tp205712 +a(g205709 +g205711 +S'his' +p205713 +tp205714 +a(g205711 +g205713 +S'friend' +p205715 +tp205716 +a(g205713 +g205715 +S'georges' +p205717 +tp205718 +a(g205715 +g205717 +S'seurat,' +p205719 +tp205720 +a(g205717 +g205719 +S'with' +p205721 +tp205722 +a(g205719 +g205721 +S'whom' +p205723 +tp205724 +a(g205721 +g205723 +S'he' +p205725 +tp205726 +a(g205723 +g205725 +S'worked' +p205727 +tp205728 +a(g205725 +g205727 +S'closely' +p205729 +tp205730 +a(g205727 +g205729 +S'during' +p205731 +tp205732 +a(g205729 +g205731 +S'those' +p205733 +tp205734 +a(g205731 +g205733 +S'years),' +p205735 +tp205736 +a(g205733 +g205735 +S'pissarro' +p205737 +tp205738 +a(g205735 +g205737 +S'returned' +p205739 +tp205740 +a(g205737 +g205739 +S'wholeheartedly' +p205741 +tp205742 +a(g205739 +g205741 +S'to' +p205743 +tp205744 +a(g205741 +g205743 +S'his' +p205745 +tp205746 +a(g205743 +g205745 +S'impressionist' +p205747 +tp205748 +a(g205745 +g205747 +S'roots' +p205749 +tp205750 +a(g205747 +g205749 +S'in' +p205751 +tp205752 +a(g205749 +g205751 +S'his' +p205753 +tp205754 +a(g205751 +g205753 +S'later' +p205755 +tp205756 +a(g205753 +g205755 +S'work,' +p205757 +tp205758 +a(g205755 +g205757 +S'as' +p205759 +tp205760 +a(g205757 +g205759 +S'demonstrated' +p205761 +tp205762 +a(g205759 +g205761 +S'by' +p205763 +tp205764 +a(g205761 +g205763 +S'this' +p205765 +tp205766 +a(g205763 +g205765 +S'canvas.' +p205767 +tp205768 +a(g205765 +g205767 +S'freely' +p205769 +tp205770 +a(g205767 +g205769 +S'applied' +p205771 +tp205772 +a(g205769 +g205771 +S'brushstrokes' +p205773 +tp205774 +a(g205771 +g205773 +S'animate' +p205775 +tp205776 +a(g205773 +g205775 +S'its' +p205777 +tp205778 +a(g205775 +g205777 +S'surface' +p205779 +tp205780 +a(g205777 +g205779 +S'and' +p205781 +tp205782 +a(g205779 +g205781 +S'capture' +p205783 +tp205784 +a(g205781 +g205783 +S'the' +p205785 +tp205786 +a(g205783 +g205785 +S'brilliant' +p205787 +tp205788 +a(g205785 +g205787 +S'light' +p205789 +tp205790 +a(g205787 +g205789 +S'of' +p205791 +tp205792 +a(g205789 +g205791 +S'a' +p205793 +tp205794 +a(g205791 +g205793 +S'summer' +p205795 +tp205796 +a(g205793 +g205795 +S'day.' +p205797 +tp205798 +a(g205795 +g205797 +S'the' +p205799 +tp205800 +a(g205797 +g205799 +S'energetic' +p205801 +tp205802 +a(g205799 +g205801 +S'handling' +p205803 +tp205804 +a(g205801 +g205803 +S'conveys' +p205805 +tp205806 +a(g205803 +g205805 +S'the' +p205807 +tp205808 +a(g205805 +g205807 +S'sense' +p205809 +tp205810 +a(g205807 +g205809 +S'of' +p205811 +tp205812 +a(g205809 +g205811 +S'urban' +p205813 +tp205814 +a(g205811 +g205813 +S'liveliness' +p205815 +tp205816 +a(g205813 +g205815 +S'below' +p205817 +tp205818 +a(g205815 +g205817 +S'the' +p205819 +tp205820 +a(g205817 +g205819 +S'artist\xe2\x80\x99s' +p205821 +tp205822 +a(g205819 +g205821 +S'window,' +p205823 +tp205824 +a(g205821 +g205823 +S'even' +p205825 +tp205826 +a(g205823 +g205825 +S'at' +p205827 +tp205828 +a(g205825 +g205827 +S'a' +p205829 +tp205830 +a(g205827 +g205829 +S'remove,' +p205831 +tp205832 +a(g205829 +g205831 +S'as' +p205833 +tp205834 +a(g205831 +g205833 +S'carriages' +p205835 +tp205836 +a(g205833 +g205835 +S'roll' +p205837 +tp205838 +a(g205835 +g205837 +S'past' +p205839 +tp205840 +a(g205837 +g205839 +S'the' +p205841 +tp205842 +a(g205839 +g205841 +S'louvre' +p205843 +tp205844 +a(g205841 +g205843 +S'in' +p205845 +tp205846 +a(g205843 +g205845 +S'a' +p205847 +tp205848 +a(g205845 +g205847 +S'line' +p205849 +tp205850 +a(g205847 +g205849 +S'and' +p205851 +tp205852 +a(g205849 +g205851 +S'people' +p205853 +tp205854 +a(g205851 +g205853 +S'promenade' +p205855 +tp205856 +a(g205853 +g205855 +S'in' +p205857 +tp205858 +a(g205855 +g205857 +S'the' +p205859 +tp205860 +a(g205857 +g205859 +S'garden.' +p205861 +tp205862 +a(g205859 +g205861 +S'unlike' +p205863 +tp205864 +a(g205861 +g205863 +S'the' +p205865 +tp205866 +a(g205863 +g205865 +S'humble' +p205867 +tp205868 +a(g205865 +g205867 +S'rural' +p205869 +tp205870 +a(g205867 +g205869 +S'scenery' +p205871 +tp205872 +a(g205869 +g205871 +S'that' +p205873 +tp205874 +a(g205871 +g205873 +S'attracted' +p205875 +tp205876 +a(g205873 +g205875 +S'pissarro\xe2\x80\x99s' +p205877 +tp205878 +a(g205875 +g205877 +S'attention' +p205879 +tp205880 +a(g205877 +g205879 +S'outside' +p205881 +tp205882 +a(g205879 +g205881 +S'paris,' +p205883 +tp205884 +a(g205881 +g205883 +S'the' +p205885 +tp205886 +a(g205883 +g205885 +S'environs' +p205887 +tp205888 +a(g205885 +g205887 +S'of' +p205889 +tp205890 +a(g205887 +g205889 +S'the' +p205891 +tp205892 +a(g205889 +g205891 +S'place' +p205893 +tp205894 +a(g205891 +g205893 +S'du' +p205895 +tp205896 +a(g205893 +g205895 +S'carrousel' +p205897 +tp205898 +a(g205895 +g205897 +S'were' +p205899 +tp205900 +a(g205897 +g205899 +S'not' +p205901 +tp205902 +a(g205899 +g205901 +S'only' +p205903 +tp205904 +a(g205901 +g205903 +S'strikingly' +p205905 +tp205906 +a(g205903 +g205905 +S'grand' +p205907 +tp205908 +a(g205905 +g205907 +S'but' +p205909 +tp205910 +a(g205907 +g205909 +S'also' +p205911 +tp205912 +a(g205909 +g205911 +S'rich' +p205913 +tp205914 +a(g205911 +g205913 +S'in' +p205915 +tp205916 +a(g205913 +g205915 +S'french' +p205917 +tp205918 +a(g205915 +g205917 +S'history.' +p205919 +tp205920 +a(g205917 +g205919 +S'it' +p205921 +tp205922 +a(g205919 +g205921 +S'is' +p205923 +tp205924 +a(g205921 +g205923 +S'at' +p205925 +tp205926 +a(g205923 +g205925 +S'this' +p205927 +tp205928 +a(g205925 +g205927 +S'site' +p205929 +tp205930 +a(g205927 +g205929 +S'that' +p205931 +tp205932 +a(g205929 +g205931 +S'the' +p205933 +tp205934 +a(g205931 +g205933 +S'guillotine' +p205935 +tp205936 +a(g205933 +g205935 +S'was' +p205937 +tp205938 +a(g205935 +g205937 +S'erected' +p205939 +tp205940 +a(g205937 +g205939 +S'during' +p205941 +tp205942 +a(g205939 +g205941 +S'the' +p205943 +tp205944 +a(g205941 +g205943 +S'french' +p205945 +tp205946 +a(g205943 +g205945 +S'revolution,' +p205947 +tp205948 +a(g205945 +g205947 +S'and' +p205949 +tp205950 +a(g205947 +g205949 +S'it' +p205951 +tp205952 +a(g205949 +g205951 +S'was' +p205953 +tp205954 +a(g205951 +g205953 +S'here' +p205955 +tp205956 +a(g205953 +g205955 +S'that' +p205957 +tp205958 +a(g205955 +g205957 +S'the' +p205959 +tp205960 +a(g205957 +g205959 +S'palais' +p205961 +tp205962 +a(g205959 +g205961 +S'des' +p205963 +tp205964 +a(g205961 +g205963 +S'tuileries,' +p205965 +tp205966 +a(g205963 +g205965 +S'where' +p205967 +tp205968 +a(g205965 +g205967 +S'marie' +p205969 +tp205970 +a(g205967 +g205969 +S'antoinette' +p205971 +tp205972 +a(g205969 +g205971 +S'and' +p205973 +tp205974 +a(g205971 +g205973 +S'louis' +p205975 +tp205976 +a(g205973 +g205975 +S'xvi' +p205977 +tp205978 +a(g205975 +g205977 +S'were' +p205979 +tp205980 +a(g205977 +g205979 +S'held' +p205981 +tp205982 +a(g205979 +g205981 +S'in' +p205983 +tp205984 +a(g205981 +g205983 +S'house' +p205985 +tp205986 +a(g205983 +g205985 +S'arrest' +p205987 +tp205988 +a(g205985 +g205987 +S'before' +p205989 +tp205990 +a(g205987 +g205989 +S'their' +p205991 +tp205992 +a(g205989 +g205991 +S'execution,' +p205993 +tp205994 +a(g205991 +g205993 +S'was' +p205995 +tp205996 +a(g205993 +g205995 +S'set' +p205997 +tp205998 +a(g205995 +g205997 +S'on' +p205999 +tp206000 +a(g205997 +g205999 +S'fire' +p206001 +tp206002 +a(g205999 +g206001 +S'in' +p206003 +tp206004 +a(g206001 +g206003 +S'1871' +p206005 +tp206006 +a(g206003 +g206005 +S'during' +p206007 +tp206008 +a(g206005 +g206007 +S'the' +p206009 +tp206010 +a(g206007 +g206009 +S'paris' +p206011 +tp206012 +a(g206009 +g206011 +S'commune,' +p206013 +tp206014 +a(g206011 +g206013 +S'the' +p206015 +tp206016 +a(g206013 +g206015 +S'citizens\xe2\x80\x99' +p206017 +tp206018 +a(g206015 +g206017 +S'uprising' +p206019 +tp206020 +a(g206017 +g206019 +S'against' +p206021 +tp206022 +a(g206019 +g206021 +S'the' +p206023 +tp206024 +a(g206021 +g206023 +S'french' +p206025 +tp206026 +a(g206023 +g206025 +S'government.' +p206027 +tp206028 +a(g206025 +g206027 +S'the' +p206029 +tp206030 +a(g206027 +g206029 +S'damaged' +p206031 +tp206032 +a(g206029 +g206031 +S'building,' +p206033 +tp206034 +a(g206031 +g206033 +S'which' +p206035 +tp206036 +a(g206033 +g206035 +S'had' +p206037 +tp206038 +a(g206035 +g206037 +S'closed' +p206039 +tp206040 +a(g206037 +g206039 +S'off' +p206041 +tp206042 +a(g206039 +g206041 +S'the' +p206043 +tp206044 +a(g206041 +g206043 +S'louvre' +p206045 +tp206046 +a(g206043 +g206045 +S'courtyard,' +p206047 +tp206048 +a(g206045 +g206047 +S'was' +p206049 +tp206050 +a(g206047 +g206049 +S'torn' +p206051 +tp206052 +a(g206049 +g206051 +S'down' +p206053 +tp206054 +a(g206051 +g206053 +S'in' +p206055 +tp206056 +a(g206053 +g206055 +S'1883.' +p206057 +tp206058 +a(g206055 +g206057 +S'pissarro\xe2\x80\x99s' +p206059 +tp206060 +a(g206057 +g206059 +S'painting' +p206061 +tp206062 +a(g206059 +g206061 +S'makes' +p206063 +tp206064 +a(g206061 +g206063 +S'no' +p206065 +tp206066 +a(g206063 +g206065 +S'allusion' +p206067 +tp206068 +a(g206065 +g206067 +S'to' +p206069 +tp206070 +a(g206067 +g206069 +S'these' +p206071 +tp206072 +a(g206069 +g206071 +S'past' +p206073 +tp206074 +a(g206071 +g206073 +S'events,' +p206075 +tp206076 +a(g206073 +g206075 +S'but' +p206077 +tp206078 +a(g206075 +g206077 +S'focuses' +p206079 +tp206080 +a(g206077 +g206079 +S'instead' +p206081 +tp206082 +a(g206079 +g206081 +S'on' +p206083 +tp206084 +a(g206081 +g206083 +S'the' +p206085 +tp206086 +a(g206083 +g206085 +S'gardens' +p206087 +tp206088 +a(g206085 +g206087 +S'as' +p206089 +tp206090 +a(g206087 +g206089 +S'a' +p206091 +tp206092 +a(g206089 +g206091 +S'popular' +p206093 +tp206094 +a(g206091 +g206093 +S'gathering' +p206095 +tp206096 +a(g206093 +g206095 +S'place.' +p206097 +tp206098 +a(g206095 +g206097 +S'in' +p206099 +tp206100 +a(g206097 +g206099 +S'his' +p206101 +tp206102 +a(g206099 +g206101 +S'tuileries' +p206103 +tp206104 +a(g206101 +g206103 +S'series' +p206105 +tp206106 +a(g206103 +g206105 +S'in' +p206107 +tp206108 +a(g206105 +g206107 +S'general,' +p206109 +tp206110 +a(g206107 +g206109 +S'pissarro' +p206111 +tp206112 +a(g206109 +g206111 +S'seems' +p206113 +tp206114 +a(g206111 +g206113 +S'to' +p206115 +tp206116 +a(g206113 +g206115 +S'have' +p206117 +tp206118 +a(g206115 +g206117 +S'been' +p206119 +tp206120 +a(g206117 +g206119 +S'especially' +p206121 +tp206122 +a(g206119 +g206121 +S'attracted' +p206123 +tp206124 +a(g206121 +g206123 +S'by' +p206125 +tp206126 +a(g206123 +g206125 +S'the' +p206127 +tp206128 +a(g206125 +g206127 +S'geometry' +p206129 +tp206130 +a(g206127 +g206129 +S'of' +p206131 +tp206132 +a(g206129 +g206131 +S'the' +p206133 +tp206134 +a(g206131 +g206133 +S'architecture' +p206135 +tp206136 +a(g206133 +g206135 +S'and' +p206137 +tp206138 +a(g206135 +g206137 +S'even' +p206139 +tp206140 +a(g206137 +g206139 +S'of' +p206141 +tp206142 +a(g206139 +g206141 +S'the' +p206143 +tp206144 +a(g206141 +g206143 +S'gardens,' +p206145 +tp206146 +a(g206143 +g206145 +S'whose' +p206147 +tp206148 +a(g206145 +g206147 +S'formal' +p206149 +tp206150 +a(g206147 +g206149 +S'layout' +p206151 +tp206152 +a(g206149 +g206151 +S'is' +p206153 +tp206154 +a(g206151 +g206153 +S'partially' +p206155 +tp206156 +a(g206153 +g206155 +S'obscured' +p206157 +tp206158 +a(g206155 +g206157 +S'here' +p206159 +tp206160 +a(g206157 +g206159 +S'by' +p206161 +tp206162 +a(g206159 +g206161 +S'the' +p206163 +tp206164 +a(g206161 +g206163 +S'ample' +p206165 +tp206166 +a(g206163 +g206165 +S'foliage.' +p206167 +tp206168 +a(g206165 +g206167 +S'the' +p206169 +tp206170 +a(g206167 +g206169 +S'order' +p206171 +tp206172 +a(g206169 +g206171 +S'and' +p206173 +tp206174 +a(g206171 +g206173 +S'the' +p206175 +tp206176 +a(g206173 +g206175 +S'structure' +p206177 +tp206178 +a(g206175 +g206177 +S'of' +p206179 +tp206180 +a(g206177 +g206179 +S'the' +p206181 +tp206182 +a(g206179 +g206181 +S'site' +p206183 +tp206184 +a(g206181 +g206183 +S'balance' +p206185 +tp206186 +a(g206183 +g206185 +S'the' +p206187 +tp206188 +a(g206185 +g206187 +S'dynamism' +p206189 +tp206190 +a(g206187 +g206189 +S'of' +p206191 +tp206192 +a(g206189 +g206191 +S'the' +p206193 +tp206194 +a(g206191 +g206193 +S'social' +p206195 +tp206196 +a(g206193 +g206195 +S'scene' +p206197 +tp206198 +a(g206195 +g206197 +S'and' +p206199 +tp206200 +a(g206197 +g206199 +S'the' +p206201 +tp206202 +a(g206199 +g206201 +S'vibrancy' +p206203 +tp206204 +a(g206201 +g206203 +S'of' +p206205 +tp206206 +a(g206203 +g206205 +S'the' +p206207 +tp206208 +a(g206205 +g206207 +S'brushwork,' +p206209 +tp206210 +a(g206207 +g206209 +S'especially' +p206211 +tp206212 +a(g206209 +g206211 +S'in' +p206213 +tp206214 +a(g206211 +g206213 +S'the' +p206215 +tp206216 +a(g206213 +g206215 +S'sky' +p206217 +tp206218 +a(g206215 +g206217 +S'and' +p206219 +tp206220 +a(g206217 +g206219 +S'trees.' +p206221 +tp206222 +a(g206219 +g206221 +S'(text' +p206223 +tp206224 +a(g206221 +g206223 +S'by' +p206225 +tp206226 +a(g206223 +g206225 +S'margaret' +p206227 +tp206228 +a(g206225 +g206227 +S'doyle,' +p206229 +tp206230 +a(g206227 +g206229 +S'notes' +p206231 +tp206232 +a(g206229 +g206231 +S'' +p206235 +tp206236 +a(g206233 +g206235 +S'pont' +p206237 +tp206238 +a(g206235 +g206237 +S'neuf,' +p206239 +tp206240 +a(g206237 +g206239 +S'paris' +p206241 +tp206242 +a(g206239 +g206241 +S'here,' +p206243 +tp206244 +a(g206241 +g206243 +S'the' +p206245 +tp206246 +a(g206243 +g206245 +S'pont' +p206247 +tp206248 +a(g206245 +g206247 +S'neuf' +p206249 +tp206250 +a(g206247 +g206249 +S'is' +p206251 +tp206252 +a(g206249 +g206251 +S'viewed' +p206253 +tp206254 +a(g206251 +g206253 +S'from' +p206255 +tp206256 +a(g206253 +g206255 +S'a' +p206257 +tp206258 +a(g206255 +g206257 +S'vantage' +p206259 +tp206260 +a(g206257 +g206259 +S'point' +p206261 +tp206262 +a(g206259 +g206261 +S'on' +p206263 +tp206264 +a(g206261 +g206263 +S'the' +p206265 +tp206266 +a(g206263 +g206265 +S'right' +p206267 +tp206268 +a(g206265 +g206267 +S'bank' +p206269 +tp206270 +a(g206267 +g206269 +S'of' +p206271 +tp206272 +a(g206269 +g206271 +S'the' +p206273 +tp206274 +a(g206271 +g206273 +S'seine' +p206275 +tp206276 +a(g206273 +g206275 +S'facing' +p206277 +tp206278 +a(g206275 +g206277 +S'south' +p206279 +tp206280 +a(g206277 +g206279 +S'across' +p206281 +tp206282 +a(g206279 +g206281 +S'the' +p206283 +tp206284 +a(g206281 +g206283 +S'river' +p206285 +tp206286 +a(g206283 +g206285 +S'toward' +p206287 +tp206288 +a(g206285 +g206287 +S'the' +p206289 +tp206290 +a(g206287 +g206289 +S'île' +p206291 +tp206292 +a(g206289 +g206291 +S'de' +p206293 +tp206294 +a(g206291 +g206293 +S'la' +p206295 +tp206296 +a(g206293 +g206295 +S'cité.' +p206297 +tp206298 +a(g206295 +g206297 +S'in' +p206299 +tp206300 +a(g206297 +g206299 +S'the' +p206301 +tp206302 +a(g206299 +g206301 +S'background,' +p206303 +tp206304 +a(g206301 +g206303 +S'buildings' +p206305 +tp206306 +a(g206303 +g206305 +S'line' +p206307 +tp206308 +a(g206305 +g206307 +S'the' +p206309 +tp206310 +a(g206307 +g206309 +S'far' +p206311 +tp206312 +a(g206309 +g206311 +S'bank' +p206313 +tp206314 +a(g206311 +g206313 +S'along' +p206315 +tp206316 +a(g206313 +g206315 +S'the' +p206317 +tp206318 +a(g206315 +g206317 +S'quai' +p206319 +tp206320 +a(g206317 +g206319 +S'des' +p206321 +tp206322 +a(g206319 +g206321 +S'augustins' +p206323 +tp206324 +a(g206321 +g206323 +S'and' +p206325 +tp206326 +a(g206323 +g206325 +S'the' +p206327 +tp206328 +a(g206325 +g206327 +S'quai' +p206329 +tp206330 +a(g206327 +g206329 +S'de' +p206331 +tp206332 +a(g206329 +g206331 +S'conti,' +p206333 +tp206334 +a(g206331 +g206333 +S'while' +p206335 +tp206336 +a(g206333 +g206335 +S'the' +p206337 +tp206338 +a(g206335 +g206337 +S'bridge\xe2\x80\x99s' +p206339 +tp206340 +a(g206337 +g206339 +S'most' +p206341 +tp206342 +a(g206339 +g206341 +S'distinctive' +p206343 +tp206344 +a(g206341 +g206343 +S'feature,' +p206345 +tp206346 +a(g206343 +g206345 +S'the' +p206347 +tp206348 +a(g206345 +g206347 +S'equestrian' +p206349 +tp206350 +a(g206347 +g206349 +S'sculpture' +p206351 +tp206352 +a(g206349 +g206351 +S'of' +p206353 +tp206354 +a(g206351 +g206353 +S'henri' +p206355 +tp206356 +a(g206353 +g206355 +S'iv,' +p206357 +tp206358 +a(g206355 +g206357 +S'is' +p206359 +tp206360 +a(g206357 +g206359 +S'clearly' +p206361 +tp206362 +a(g206359 +g206361 +S'visible' +p206363 +tp206364 +a(g206361 +g206363 +S'on' +p206365 +tp206366 +a(g206363 +g206365 +S'the' +p206367 +tp206368 +a(g206365 +g206367 +S'right.' +p206369 +tp206370 +a(g206367 +g206369 +S'edmond' +p206371 +tp206372 +a(g206369 +g206371 +S'renoir,' +p206373 +tp206374 +a(g206371 +g206373 +S'the' +p206375 +tp206376 +a(g206373 +g206375 +S'artist\xe2\x80\x99s' +p206377 +tp206378 +a(g206375 +g206377 +S'younger' +p206379 +tp206380 +a(g206377 +g206379 +S'brother' +p206381 +tp206382 +a(g206379 +g206381 +S'and' +p206383 +tp206384 +a(g206381 +g206383 +S'a' +p206385 +tp206386 +a(g206383 +g206385 +S'budding' +p206387 +tp206388 +a(g206385 +g206387 +S'journalist' +p206389 +tp206390 +a(g206387 +g206389 +S'in' +p206391 +tp206392 +a(g206389 +g206391 +S'1872,' +p206393 +tp206394 +a(g206391 +g206393 +S'later' +p206395 +tp206396 +a(g206393 +g206395 +S'recounted' +p206397 +tp206398 +a(g206395 +g206397 +S'that' +p206399 +tp206400 +a(g206397 +g206399 +S'the' +p206401 +tp206402 +a(g206399 +g206401 +S'artist' +p206403 +tp206404 +a(g206401 +g206403 +S'installed' +p206405 +tp206406 +a(g206403 +g206405 +S'himself' +p206407 +tp206408 +a(g206405 +g206407 +S'in' +p206409 +tp206410 +a(g206407 +g206409 +S'a' +p206411 +tp206412 +a(g206409 +g206411 +S'café' +p206413 +tp206414 +a(g206411 +g206413 +S'located' +p206415 +tp206416 +a(g206413 +g206415 +S'on' +p206417 +tp206418 +a(g206415 +g206417 +S'the' +p206419 +tp206420 +a(g206417 +g206419 +S'corner' +p206421 +tp206422 +a(g206419 +g206421 +S'of' +p206423 +tp206424 +a(g206421 +g206423 +S'the' +p206425 +tp206426 +a(g206423 +g206425 +S'quai' +p206427 +tp206428 +a(g206425 +g206427 +S'du' +p206429 +tp206430 +a(g206427 +g206429 +S'louvre,' +p206431 +tp206432 +a(g206429 +g206431 +S'spending' +p206433 +tp206434 +a(g206431 +g206433 +S'hours' +p206435 +tp206436 +a(g206433 +g206435 +S'there' +p206437 +tp206438 +a(g206435 +g206437 +S'sketching' +p206439 +tp206440 +a(g206437 +g206439 +S'the' +p206441 +tp206442 +a(g206439 +g206441 +S'scene' +p206443 +tp206444 +a(g206441 +g206443 +S'before' +p206445 +tp206446 +a(g206443 +g206445 +S'him.' +p206447 +tp206448 +a(g206445 +g206447 +S'"auguste' +p206449 +tp206450 +a(g206447 +g206449 +S'.' +p206451 +tp206452 +a(g206449 +g206451 +S'.' +p206453 +tp206454 +a(g206451 +g206453 +S'.' +p206455 +tp206456 +a(g206453 +g206455 +S'took' +p206457 +tp206458 +a(g206455 +g206457 +S'pleasure,' +p206459 +tp206460 +a(g206457 +g206459 +S'after' +p206461 +tp206462 +a(g206459 +g206461 +S'having' +p206463 +tp206464 +a(g206461 +g206463 +S'outlined' +p206465 +tp206466 +a(g206463 +g206465 +S'the' +p206467 +tp206468 +a(g206465 +g206467 +S'soil,' +p206469 +tp206470 +a(g206467 +g206469 +S'the' +p206471 +tp206472 +a(g206469 +g206471 +S'parapets,' +p206473 +tp206474 +a(g206471 +g206473 +S'the' +p206475 +tp206476 +a(g206473 +g206475 +S'houses' +p206477 +tp206478 +a(g206475 +g206477 +S'in' +p206479 +tp206480 +a(g206477 +g206479 +S'the' +p206481 +tp206482 +a(g206479 +g206481 +S'distance,' +p206483 +tp206484 +a(g206481 +g206483 +S'the' +p206485 +tp206486 +a(g206483 +g206485 +S'place' +p206487 +tp206488 +a(g206485 +g206487 +S'dauphine' +p206489 +tp206490 +a(g206487 +g206489 +S'and' +p206491 +tp206492 +a(g206489 +g206491 +S'the' +p206493 +tp206494 +a(g206491 +g206493 +S'statue' +p206495 +tp206496 +a(g206493 +g206495 +S'of' +p206497 +tp206498 +a(g206495 +g206497 +S'henri' +p206499 +tp206500 +a(g206497 +g206499 +S'iv,' +p206501 +tp206502 +a(g206499 +g206501 +S'in' +p206503 +tp206504 +a(g206501 +g206503 +S'sketching' +p206505 +tp206506 +a(g206503 +g206505 +S'the' +p206507 +tp206508 +a(g206505 +g206507 +S'passersby,' +p206509 +tp206510 +a(g206507 +g206509 +S'vehicles' +p206511 +tp206512 +a(g206509 +g206511 +S'and' +p206513 +tp206514 +a(g206511 +g206513 +S'groups.' +p206515 +tp206516 +a(g206513 +g206515 +S'meanwhile' +p206517 +tp206518 +a(g206515 +g206517 +S'i' +p206519 +tp206520 +a(g206517 +g206519 +S'scribbled,' +p206521 +tp206522 +a(g206519 +g206521 +S'except' +p206523 +tp206524 +a(g206521 +g206523 +S'when' +p206525 +tp206526 +a(g206523 +g206525 +S'he' +p206527 +tp206528 +a(g206525 +g206527 +S'asked' +p206529 +tp206530 +a(g206527 +g206529 +S'me' +p206531 +tp206532 +a(g206529 +g206531 +S'to' +p206533 +tp206534 +a(g206531 +g206533 +S'go' +p206535 +tp206536 +a(g206533 +g206535 +S'to' +p206537 +tp206538 +a(g206535 +g206537 +S'the' +p206539 +tp206540 +a(g206537 +g206539 +S'bridge' +p206541 +tp206542 +a(g206539 +g206541 +S'and' +p206543 +tp206544 +a(g206541 +g206543 +S'speak' +p206545 +tp206546 +a(g206543 +g206545 +S'with' +p206547 +tp206548 +a(g206545 +g206547 +S'passersby' +p206549 +tp206550 +a(g206547 +g206549 +S'to' +p206551 +tp206552 +a(g206549 +g206551 +S'make' +p206553 +tp206554 +a(g206551 +g206553 +S'them' +p206555 +tp206556 +a(g206553 +g206555 +S'stop' +p206557 +tp206558 +a(g206555 +g206557 +S'for' +p206559 +tp206560 +a(g206557 +g206559 +S'a' +p206561 +tp206562 +a(g206559 +g206561 +S'minute."' +p206563 +tp206564 +a(g206561 +g206563 +S'renoir' +p206565 +tp206566 +a(g206563 +g206565 +S'was' +p206567 +tp206568 +a(g206565 +g206567 +S'by' +p206569 +tp206570 +a(g206567 +g206569 +S'no' +p206571 +tp206572 +a(g206569 +g206571 +S'means' +p206573 +tp206574 +a(g206571 +g206573 +S'the' +p206575 +tp206576 +a(g206573 +g206575 +S'only' +p206577 +tp206578 +a(g206575 +g206577 +S'impressionist' +p206579 +tp206580 +a(g206577 +g206579 +S'painter' +p206581 +tp206582 +a(g206579 +g206581 +S'who' +p206583 +tp206584 +a(g206581 +g206583 +S'drew' +p206585 +tp206586 +a(g206583 +g206585 +S'inspiration' +p206587 +tp206588 +a(g206585 +g206587 +S'from' +p206589 +tp206590 +a(g206587 +g206589 +S'this' +p206591 +tp206592 +a(g206589 +g206591 +S'particular' +p206593 +tp206594 +a(g206591 +g206593 +S'motif.' +p206595 +tp206596 +a(g206593 +g206595 +S'about' +p206597 +tp206598 +a(g206595 +g206597 +S'1872,' +p206599 +tp206600 +a(g206597 +g206599 +S'monet' +p206601 +tp206602 +a(g206599 +g206601 +S'also' +p206603 +tp206604 +a(g206601 +g206603 +S'painted' +p206605 +tp206606 +a(g206603 +g206605 +S'the' +p206607 +tp206608 +a(g206605 +g206607 +S'pont' +p206609 +tp206610 +a(g206607 +g206609 +S'neuf' +p206611 +tp206612 +a(g206609 +g206611 +S'from' +p206613 +tp206614 +a(g206611 +g206613 +S'a' +p206615 +tp206616 +a(g206613 +g206615 +S'nearly' +p206617 +tp206618 +a(g206615 +g206617 +S'identical' +p206619 +tp206620 +a(g206617 +g206619 +S'vantage' +p206621 +tp206622 +a(g206619 +g206621 +S'point' +p206623 +tp206624 +a(g206621 +g206623 +S'(dallas' +p206625 +tp206626 +a(g206623 +g206625 +S'museum' +p206627 +tp206628 +a(g206625 +g206627 +S'of' +p206629 +tp206630 +a(g206627 +g206629 +S'art),' +p206631 +tp206632 +a(g206629 +g206631 +S'although' +p206633 +tp206634 +a(g206631 +g206633 +S'he' +p206635 +tp206636 +a(g206633 +g206635 +S'opted' +p206637 +tp206638 +a(g206635 +g206637 +S'for' +p206639 +tp206640 +a(g206637 +g206639 +S'a' +p206641 +tp206642 +a(g206639 +g206641 +S'rainy' +p206643 +tp206644 +a(g206641 +g206643 +S'day,' +p206645 +tp206646 +a(g206643 +g206645 +S'perhaps' +p206647 +tp206648 +a(g206645 +g206647 +S'as' +p206649 +tp206650 +a(g206647 +g206649 +S'an' +p206651 +tp206652 +a(g206649 +g206651 +S'intentional' +p206653 +tp206654 +a(g206651 +g206653 +S'contrast' +p206655 +tp206656 +a(g206653 +g206655 +S'to' +p206657 +tp206658 +a(g206655 +g206657 +S'renoir\xe2\x80\x99s' +p206659 +tp206660 +a(g206657 +g206659 +S'sunlit' +p206661 +tp206662 +a(g206659 +g206661 +S'composition.' +p206663 +tp206664 +a(g206661 +g206663 +S'years' +p206665 +tp206666 +a(g206663 +g206665 +S'later,' +p206667 +tp206668 +a(g206665 +g206667 +S'camille' +p206669 +tp206670 +a(g206667 +g206669 +S'pissarro' +p206671 +tp206672 +a(g206669 +g206671 +S'painted' +p206673 +tp206674 +a(g206671 +g206673 +S'a' +p206675 +tp206676 +a(g206673 +g206675 +S'series' +p206677 +tp206678 +a(g206675 +g206677 +S'of' +p206679 +tp206680 +a(g206677 +g206679 +S'views' +p206681 +tp206682 +a(g206679 +g206681 +S'of' +p206683 +tp206684 +a(g206681 +g206683 +S'the' +p206685 +tp206686 +a(g206683 +g206685 +S'bridge' +p206687 +tp206688 +a(g206685 +g206687 +S'from' +p206689 +tp206690 +a(g206687 +g206689 +S'the' +p206691 +tp206692 +a(g206689 +g206691 +S'window' +p206693 +tp206694 +a(g206691 +g206693 +S'of' +p206695 +tp206696 +a(g206693 +g206695 +S'his' +p206697 +tp206698 +a(g206695 +g206697 +S'apartment' +p206699 +tp206700 +a(g206697 +g206699 +S'on' +p206701 +tp206702 +a(g206699 +g206701 +S'the' +p206703 +tp206704 +a(g206701 +g206703 +S'île' +p206705 +tp206706 +a(g206703 +g206705 +S'de' +p206707 +tp206708 +a(g206705 +g206707 +S'la' +p206709 +tp206710 +a(g206707 +g206709 +S'cité' +p206711 +tp206712 +a(g206709 +g206711 +S'looking' +p206713 +tp206714 +a(g206711 +g206713 +S'northward.' +p206715 +tp206716 +a(g206713 +g206715 +S'(text' +p206717 +tp206718 +a(g206715 +g206717 +S'by' +p206719 +tp206720 +a(g206717 +g206719 +S'kimberly' +p206721 +tp206722 +a(g206719 +g206721 +S'jones,' +p206723 +tp206724 +a(g206721 +g206723 +S'notes' +p206725 +tp206726 +a(g206723 +g206725 +S'' +p206729 +tp206730 +a(g206727 +g206729 +S'' +p206733 +tp206734 +a(g206731 +g206733 +S'madame' +p206735 +tp206736 +a(g206733 +g206735 +S'monet' +p206737 +tp206738 +a(g206735 +g206737 +S'and' +p206739 +tp206740 +a(g206737 +g206739 +S'her' +p206741 +tp206742 +a(g206739 +g206741 +S'son' +p206743 +tp206744 +a(g206741 +g206743 +S'this' +p206745 +tp206746 +a(g206743 +g206745 +S'oft-repeated' +p206747 +tp206748 +a(g206745 +g206747 +S'quip,' +p206749 +tp206750 +a(g206747 +g206749 +S'which' +p206751 +tp206752 +a(g206749 +g206751 +S'was' +p206753 +tp206754 +a(g206751 +g206753 +S'probably' +p206755 +tp206756 +a(g206753 +g206755 +S'made' +p206757 +tp206758 +a(g206755 +g206757 +S'in' +p206759 +tp206760 +a(g206757 +g206759 +S'jest' +p206761 +tp206762 +a(g206759 +g206761 +S'given' +p206763 +tp206764 +a(g206761 +g206763 +S'manet\xe2\x80\x99s' +p206765 +tp206766 +a(g206763 +g206765 +S'known' +p206767 +tp206768 +a(g206765 +g206767 +S'fondness' +p206769 +tp206770 +a(g206767 +g206769 +S'for' +p206771 +tp206772 +a(g206769 +g206771 +S'renoir,' +p206773 +tp206774 +a(g206771 +g206773 +S'is' +p206775 +tp206776 +a(g206773 +g206775 +S'certainly' +p206777 +tp206778 +a(g206775 +g206777 +S'belied' +p206779 +tp206780 +a(g206777 +g206779 +S'by' +p206781 +tp206782 +a(g206779 +g206781 +S'the' +p206783 +tp206784 +a(g206781 +g206783 +S'painting' +p206785 +tp206786 +a(g206783 +g206785 +S'that' +p206787 +tp206788 +a(g206785 +g206787 +S'inspired' +p206789 +tp206790 +a(g206787 +g206789 +S'it.' +p206791 +tp206792 +a(g206789 +g206791 +S'both' +p206793 +tp206794 +a(g206791 +g206793 +S'renoir' +p206795 +tp206796 +a(g206793 +g206795 +S'and' +p206797 +tp206798 +a(g206795 +g206797 +S'manet' +p206799 +tp206800 +a(g206797 +g206799 +S'presented' +p206801 +tp206802 +a(g206799 +g206801 +S'the' +p206803 +tp206804 +a(g206801 +g206803 +S'finished' +p206805 +tp206806 +a(g206803 +g206805 +S'paintings' +p206807 +tp206808 +a(g206805 +g206807 +S'to' +p206809 +tp206810 +a(g206807 +g206809 +S'their' +p206811 +tp206812 +a(g206809 +g206811 +S'host.' +p206813 +tp206814 +a(g206811 +g206813 +S'monet' +p206815 +tp206816 +a(g206813 +g206815 +S'clearly' +p206817 +tp206818 +a(g206815 +g206817 +S'appreciated' +p206819 +tp206820 +a(g206817 +g206819 +S'renoir\xe2\x80\x99s' +p206821 +tp206822 +a(g206819 +g206821 +S'effort.' +p206823 +tp206824 +a(g206821 +g206823 +S'this' +p206825 +tp206826 +a(g206823 +g206825 +S'painting' +p206827 +tp206828 +a(g206825 +g206827 +S'would' +p206829 +tp206830 +a(g206827 +g206829 +S'remain' +p206831 +tp206832 +a(g206829 +g206831 +S'with' +p206833 +tp206834 +a(g206831 +g206833 +S'monet' +p206835 +tp206836 +a(g206833 +g206835 +S'for' +p206837 +tp206838 +a(g206835 +g206837 +S'the' +p206839 +tp206840 +a(g206837 +g206839 +S'rest' +p206841 +tp206842 +a(g206839 +g206841 +S'of' +p206843 +tp206844 +a(g206841 +g206843 +S'his' +p206845 +tp206846 +a(g206843 +g206845 +S'life' +p206847 +tp206848 +a(g206845 +g206847 +S'and' +p206849 +tp206850 +a(g206847 +g206849 +S'in' +p206851 +tp206852 +a(g206849 +g206851 +S'his' +p206853 +tp206854 +a(g206851 +g206853 +S'final' +p206855 +tp206856 +a(g206853 +g206855 +S'years' +p206857 +tp206858 +a(g206855 +g206857 +S'it' +p206859 +tp206860 +a(g206857 +g206859 +S'even' +p206861 +tp206862 +a(g206859 +g206861 +S'hung' +p206863 +tp206864 +a(g206861 +g206863 +S'in' +p206865 +tp206866 +a(g206863 +g206865 +S'the' +p206867 +tp206868 +a(g206865 +g206867 +S'artist\xe2\x80\x99s' +p206869 +tp206870 +a(g206867 +g206869 +S'bedroom' +p206871 +tp206872 +a(g206869 +g206871 +S'at' +p206873 +tp206874 +a(g206871 +g206873 +S'giverny.' +p206875 +tp206876 +a(g206873 +g206875 +S'(text' +p206877 +tp206878 +a(g206875 +g206877 +S'by' +p206879 +tp206880 +a(g206877 +g206879 +S'kimberly' +p206881 +tp206882 +a(g206879 +g206881 +S'jones,' +p206883 +tp206884 +a(g206881 +g206883 +S'notes' +p206885 +tp206886 +a(g206883 +g206885 +S'' +p206889 +tp206890 +a(g206887 +g206889 +S'' +p206893 +tp206894 +a(g206891 +g206893 +S'although' +p206895 +tp206896 +a(g206893 +g206895 +S'renoir' +p206897 +tp206898 +a(g206895 +g206897 +S'is' +p206899 +tp206900 +a(g206897 +g206899 +S'best' +p206901 +tp206902 +a(g206899 +g206901 +S'known' +p206903 +tp206904 +a(g206901 +g206903 +S'as' +p206905 +tp206906 +a(g206903 +g206905 +S'the' +p206907 +tp206908 +a(g206905 +g206907 +S'consummate' +p206909 +tp206910 +a(g206907 +g206909 +S'painter' +p206911 +tp206912 +a(g206909 +g206911 +S'of' +p206913 +tp206914 +a(g206911 +g206913 +S'the' +p206915 +tp206916 +a(g206913 +g206915 +S'female' +p206917 +tp206918 +a(g206915 +g206917 +S'form,' +p206919 +tp206920 +a(g206917 +g206919 +S'stilllife' +p206921 +tp206922 +a(g206919 +g206921 +S'painting' +p206923 +tp206924 +a(g206921 +g206923 +S'played' +p206925 +tp206926 +a(g206923 +g206925 +S'an' +p206927 +tp206928 +a(g206925 +g206927 +S'important' +p206929 +tp206930 +a(g206927 +g206929 +S'role' +p206931 +tp206932 +a(g206929 +g206931 +S'in' +p206933 +tp206934 +a(g206931 +g206933 +S'his' +p206935 +tp206936 +a(g206933 +g206935 +S'development' +p206937 +tp206938 +a(g206935 +g206937 +S'as' +p206939 +tp206940 +a(g206937 +g206939 +S'an' +p206941 +tp206942 +a(g206939 +g206941 +S'artist.' +p206943 +tp206944 +a(g206941 +g206943 +S'when' +p206945 +tp206946 +a(g206943 +g206945 +S'he' +p206947 +tp206948 +a(g206945 +g206947 +S'first' +p206949 +tp206950 +a(g206947 +g206949 +S'began' +p206951 +tp206952 +a(g206949 +g206951 +S'his' +p206953 +tp206954 +a(g206951 +g206953 +S'career' +p206955 +tp206956 +a(g206953 +g206955 +S'in' +p206957 +tp206958 +a(g206955 +g206957 +S'1854,' +p206959 +tp206960 +a(g206957 +g206959 +S'the' +p206961 +tp206962 +a(g206959 +g206961 +S'thirteen-yearold' +p206963 +tp206964 +a(g206961 +g206963 +S'renoir' +p206965 +tp206966 +a(g206963 +g206965 +S'held' +p206967 +tp206968 +a(g206965 +g206967 +S'an' +p206969 +tp206970 +a(g206967 +g206969 +S'apprenticeship' +p206971 +tp206972 +a(g206969 +g206971 +S'at' +p206973 +tp206974 +a(g206971 +g206973 +S'levy' +p206975 +tp206976 +a(g206973 +g206975 +S'brothers,' +p206977 +tp206978 +a(g206975 +g206977 +S'a' +p206979 +tp206980 +a(g206977 +g206979 +S'porcelain' +p206981 +tp206982 +a(g206979 +g206981 +S'manufactory.' +p206983 +tp206984 +a(g206981 +g206983 +S'his' +p206985 +tp206986 +a(g206983 +g206985 +S'job,' +p206987 +tp206988 +a(g206985 +g206987 +S'he' +p206989 +tp206990 +a(g206987 +g206989 +S'later' +p206991 +tp206992 +a(g206989 +g206991 +S'recalled,' +p206993 +tp206994 +a(g206991 +g206993 +S'"consisted' +p206995 +tp206996 +a(g206993 +g206995 +S'of' +p206997 +tp206998 +a(g206995 +g206997 +S'painting' +p206999 +tp207000 +a(g206997 +g206999 +S'little' +p207001 +tp207002 +a(g206999 +g207001 +S'bouquets' +p207003 +tp207004 +a(g207001 +g207003 +S'on' +p207005 +tp207006 +a(g207003 +g207005 +S'a' +p207007 +tp207008 +a(g207005 +g207007 +S'white' +p207009 +tp207010 +a(g207007 +g207009 +S'background.' +p207011 +tp207012 +a(g207009 +g207011 +S'for' +p207013 +tp207014 +a(g207011 +g207013 +S'this' +p207015 +tp207016 +a(g207013 +g207015 +S'i' +p207017 +tp207018 +a(g207015 +g207017 +S'was' +p207019 +tp207020 +a(g207017 +g207019 +S'paid' +p207021 +tp207022 +a(g207019 +g207021 +S'five' +p207023 +tp207024 +a(g207021 +g207023 +S'cents' +p207025 +tp207026 +a(g207023 +g207025 +S'a' +p207027 +tp207028 +a(g207025 +g207027 +S'dozen.' +p207029 +tp207030 +a(g207027 +g207029 +S'when' +p207031 +tp207032 +a(g207029 +g207031 +S'there' +p207033 +tp207034 +a(g207031 +g207033 +S'were' +p207035 +tp207036 +a(g207033 +g207035 +S'larger' +p207037 +tp207038 +a(g207035 +g207037 +S'pieces' +p207039 +tp207040 +a(g207037 +g207039 +S'to' +p207041 +tp207042 +a(g207039 +g207041 +S'decorate,' +p207043 +tp207044 +a(g207041 +g207043 +S'the' +p207045 +tp207046 +a(g207043 +g207045 +S'bouquets' +p207047 +tp207048 +a(g207045 +g207047 +S'were' +p207049 +tp207050 +a(g207047 +g207049 +S'larger."' +p207051 +tp207052 +a(g207049 +g207051 +S'still' +p207053 +tp207054 +a(g207051 +g207053 +S'lifes' +p207055 +tp207056 +a(g207053 +g207055 +S'appear' +p207057 +tp207058 +a(g207055 +g207057 +S'only' +p207059 +tp207060 +a(g207057 +g207059 +S'rarely' +p207061 +tp207062 +a(g207059 +g207061 +S'in' +p207063 +tp207064 +a(g207061 +g207063 +S'renoir\xe2\x80\x99s' +p207065 +tp207066 +a(g207063 +g207065 +S'work' +p207067 +tp207068 +a(g207065 +g207067 +S'of' +p207069 +tp207070 +a(g207067 +g207069 +S'the' +p207071 +tp207072 +a(g207069 +g207071 +S'1860s' +p207073 +tp207074 +a(g207071 +g207073 +S'and' +p207075 +tp207076 +a(g207073 +g207075 +S'1870s,' +p207077 +tp207078 +a(g207075 +g207077 +S'but' +p207079 +tp207080 +a(g207077 +g207079 +S'by' +p207081 +tp207082 +a(g207079 +g207081 +S'the' +p207083 +tp207084 +a(g207081 +g207083 +S'early' +p207085 +tp207086 +a(g207083 +g207085 +S'1880s' +p207087 +tp207088 +a(g207085 +g207087 +S'such' +p207089 +tp207090 +a(g207087 +g207089 +S'paintings' +p207091 +tp207092 +a(g207089 +g207091 +S'had' +p207093 +tp207094 +a(g207091 +g207093 +S'begun' +p207095 +tp207096 +a(g207093 +g207095 +S'to' +p207097 +tp207098 +a(g207095 +g207097 +S'occupy' +p207099 +tp207100 +a(g207097 +g207099 +S'a' +p207101 +tp207102 +a(g207099 +g207101 +S'prominent' +p207103 +tp207104 +a(g207101 +g207103 +S'place' +p207105 +tp207106 +a(g207103 +g207105 +S'in' +p207107 +tp207108 +a(g207105 +g207107 +S'the' +p207109 +tp207110 +a(g207107 +g207109 +S'artist\xe2\x80\x99s' +p207111 +tp207112 +a(g207109 +g207111 +S'oeuvre.' +p207113 +tp207114 +a(g207111 +g207113 +S'at' +p207115 +tp207116 +a(g207113 +g207115 +S'the' +p207117 +tp207118 +a(g207115 +g207117 +S'seventh' +p207119 +tp207120 +a(g207117 +g207119 +S'impressionist' +p207121 +tp207122 +a(g207119 +g207121 +S'exhibition' +p207123 +tp207124 +a(g207121 +g207123 +S'in' +p207125 +tp207126 +a(g207123 +g207125 +S'1882,' +p207127 +tp207128 +a(g207125 +g207127 +S'the' +p207129 +tp207130 +a(g207127 +g207129 +S'first' +p207131 +tp207132 +a(g207129 +g207131 +S'group' +p207133 +tp207134 +a(g207131 +g207133 +S'exhibition' +p207135 +tp207136 +a(g207133 +g207135 +S'in' +p207137 +tp207138 +a(g207135 +g207137 +S'which' +p207139 +tp207140 +a(g207137 +g207139 +S'he' +p207141 +tp207142 +a(g207139 +g207141 +S'participated' +p207143 +tp207144 +a(g207141 +g207143 +S'in' +p207145 +tp207146 +a(g207143 +g207145 +S'five' +p207147 +tp207148 +a(g207145 +g207147 +S'years,' +p207149 +tp207150 +a(g207147 +g207149 +S'renoir' +p207151 +tp207152 +a(g207149 +g207151 +S'exhibited' +p207153 +tp207154 +a(g207151 +g207153 +S'a' +p207155 +tp207156 +a(g207153 +g207155 +S'number' +p207157 +tp207158 +a(g207155 +g207157 +S'of' +p207159 +tp207160 +a(g207157 +g207159 +S'paintings' +p207161 +tp207162 +a(g207159 +g207161 +S'of' +p207163 +tp207164 +a(g207161 +g207163 +S'fruit' +p207165 +tp207166 +a(g207163 +g207165 +S'and' +p207167 +tp207168 +a(g207165 +g207167 +S'flowers,' +p207169 +tp207170 +a(g207167 +g207169 +S'including' +p207171 +tp207172 +a(g207169 +g207171 +S'one' +p207173 +tp207174 +a(g207171 +g207173 +S'of' +p207175 +tp207176 +a(g207173 +g207175 +S'peaches' +p207177 +tp207178 +a(g207175 +g207177 +S'nestled' +p207179 +tp207180 +a(g207177 +g207179 +S'in' +p207181 +tp207182 +a(g207179 +g207181 +S'a' +p207183 +tp207184 +a(g207181 +g207183 +S'faience' +p207185 +tp207186 +a(g207183 +g207185 +S'peaches' +p207187 +tp207188 +a(g207185 +g207187 +S'on' +p207189 +tp207190 +a(g207187 +g207189 +S'a' +p207191 +tp207192 +a(g207189 +g207191 +S'plate' +p207193 +tp207194 +a(g207191 +g207193 +S'this' +p207195 +tp207196 +a(g207193 +g207195 +S'painting' +p207197 +tp207198 +a(g207195 +g207197 +S'displays' +p207199 +tp207200 +a(g207197 +g207199 +S'the' +p207201 +tp207202 +a(g207199 +g207201 +S'kind' +p207203 +tp207204 +a(g207201 +g207203 +S'of' +p207205 +tp207206 +a(g207203 +g207205 +S'lively,' +p207207 +tp207208 +a(g207205 +g207207 +S'fluid' +p207209 +tp207210 +a(g207207 +g207209 +S'paint' +p207211 +tp207212 +a(g207209 +g207211 +S'handling' +p207213 +tp207214 +a(g207211 +g207213 +S'renoir' +p207215 +tp207216 +a(g207213 +g207215 +S'had' +p207217 +tp207218 +a(g207215 +g207217 +S'extolled.' +p207219 +tp207220 +a(g207217 +g207219 +S'while' +p207221 +tp207222 +a(g207219 +g207221 +S'its' +p207223 +tp207224 +a(g207221 +g207223 +S'subject' +p207225 +tp207226 +a(g207223 +g207225 +S'may' +p207227 +tp207228 +a(g207225 +g207227 +S'derive' +p207229 +tp207230 +a(g207227 +g207229 +S'from' +p207231 +tp207232 +a(g207229 +g207231 +S'the' +p207233 +tp207234 +a(g207231 +g207233 +S'stilllife' +p207235 +tp207236 +a(g207233 +g207235 +S'paintings' +p207237 +tp207238 +a(g207235 +g207237 +S'of' +p207239 +tp207240 +a(g207237 +g207239 +S'the' +p207241 +tp207242 +a(g207239 +g207241 +S'eighteenth-century' +p207243 +tp207244 +a(g207241 +g207243 +S'painter' +p207245 +tp207246 +a(g207243 +g207245 +S'jean' +p207247 +tp207248 +a(g207245 +g207247 +S'siméon' +p207249 +tp207250 +a(g207247 +g207249 +S'chardin,' +p207251 +tp207252 +a(g207249 +g207251 +S'stylistically' +p207253 +tp207254 +a(g207251 +g207253 +S',em>peaches' +p207255 +tp207256 +a(g207253 +g207255 +S'on' +p207257 +tp207258 +a(g207255 +g207257 +S'a' +p207259 +tp207260 +a(g207257 +g207259 +S'plate' +p207261 +tp207262 +a(g207259 +g207261 +S'(text' +p207263 +tp207264 +a(g207261 +g207263 +S'by' +p207265 +tp207266 +a(g207263 +g207265 +S'kimberly' +p207267 +tp207268 +a(g207265 +g207267 +S'jones,' +p207269 +tp207270 +a(g207267 +g207269 +S'notes' +p207271 +tp207272 +a(g207269 +g207271 +S'' +p207275 +tp207276 +a(g207273 +g207275 +S'' +p207279 +tp207280 +a(g207277 +g207279 +S'early' +p207281 +tp207282 +a(g207279 +g207281 +S'in' +p207283 +tp207284 +a(g207281 +g207283 +S'1872,' +p207285 +tp207286 +a(g207283 +g207285 +S'alfred' +p207287 +tp207288 +a(g207285 +g207287 +S'sisley' +p207289 +tp207290 +a(g207287 +g207289 +S'traveled' +p207291 +tp207292 +a(g207289 +g207291 +S'to' +p207293 +tp207294 +a(g207291 +g207293 +S'argenteuil' +p207295 +tp207296 +a(g207293 +g207295 +S'to' +p207297 +tp207298 +a(g207295 +g207297 +S'visit' +p207299 +tp207300 +a(g207297 +g207299 +S'his' +p207301 +tp207302 +a(g207299 +g207301 +S'friend' +p207303 +tp207304 +a(g207301 +g207303 +S'claude' +p207305 +tp207306 +a(g207303 +g207305 +S'monet,' +p207307 +tp207308 +a(g207305 +g207307 +S'who' +p207309 +tp207310 +a(g207307 +g207309 +S'had' +p207311 +tp207312 +a(g207309 +g207311 +S'moved' +p207313 +tp207314 +a(g207311 +g207313 +S'there' +p207315 +tp207316 +a(g207313 +g207315 +S'the' +p207317 +tp207318 +a(g207315 +g207317 +S'previous' +p207319 +tp207320 +a(g207317 +g207319 +S'year,' +p207321 +tp207322 +a(g207319 +g207321 +S'making' +p207323 +tp207324 +a(g207321 +g207323 +S'him' +p207325 +tp207326 +a(g207323 +g207325 +S'one' +p207327 +tp207328 +a(g207325 +g207327 +S'of' +p207329 +tp207330 +a(g207327 +g207329 +S'the' +p207331 +tp207332 +a(g207329 +g207331 +S'first' +p207333 +tp207334 +a(g207331 +g207333 +S'members' +p207335 +tp207336 +a(g207333 +g207335 +S'of' +p207337 +tp207338 +a(g207335 +g207337 +S'the' +p207339 +tp207340 +a(g207337 +g207339 +S'impressionist' +p207341 +tp207342 +a(g207339 +g207341 +S'circle' +p207343 +tp207344 +a(g207341 +g207343 +S'to' +p207345 +tp207346 +a(g207343 +g207345 +S'do' +p207347 +tp207348 +a(g207345 +g207347 +S'so.' +p207349 +tp207350 +a(g207347 +g207349 +S'sisley' +p207351 +tp207352 +a(g207349 +g207351 +S'had' +p207353 +tp207354 +a(g207351 +g207353 +S'first' +p207355 +tp207356 +a(g207353 +g207355 +S'met' +p207357 +tp207358 +a(g207355 +g207357 +S'monet' +p207359 +tp207360 +a(g207357 +g207359 +S'in' +p207361 +tp207362 +a(g207359 +g207361 +S'1862' +p207363 +tp207364 +a(g207361 +g207363 +S'as' +p207365 +tp207366 +a(g207363 +g207365 +S'a' +p207367 +tp207368 +a(g207365 +g207367 +S'fellow' +p207369 +tp207370 +a(g207367 +g207369 +S'student' +p207371 +tp207372 +a(g207369 +g207371 +S'in' +p207373 +tp207374 +a(g207371 +g207373 +S'the' +p207375 +tp207376 +a(g207373 +g207375 +S'painting' +p207377 +tp207378 +a(g207375 +g207377 +S'studio' +p207379 +tp207380 +a(g207377 +g207379 +S'headed' +p207381 +tp207382 +a(g207379 +g207381 +S'by' +p207383 +tp207384 +a(g207381 +g207383 +S'charles' +p207385 +tp207386 +a(g207383 +g207385 +S'gleyre.' +p207387 +tp207388 +a(g207385 +g207387 +S'although' +p207389 +tp207390 +a(g207387 +g207389 +S'sisley' +p207391 +tp207392 +a(g207389 +g207391 +S'had' +p207393 +tp207394 +a(g207391 +g207393 +S'formed' +p207395 +tp207396 +a(g207393 +g207395 +S'friendships' +p207397 +tp207398 +a(g207395 +g207397 +S'with' +p207399 +tp207400 +a(g207397 +g207399 +S'several' +p207401 +tp207402 +a(g207399 +g207401 +S'other' +p207403 +tp207404 +a(g207401 +g207403 +S'students,' +p207405 +tp207406 +a(g207403 +g207405 +S'including' +p207407 +tp207408 +a(g207405 +g207407 +S'auguste' +p207409 +tp207410 +a(g207407 +g207409 +S'renoir' +p207411 +tp207412 +a(g207409 +g207411 +S'and' +p207413 +tp207414 +a(g207411 +g207413 +S'frédéric' +p207415 +tp207416 +a(g207413 +g207415 +S'bazille,' +p207417 +tp207418 +a(g207415 +g207417 +S'he' +p207419 +tp207420 +a(g207417 +g207419 +S'had' +p207421 +tp207422 +a(g207419 +g207421 +S'the' +p207423 +tp207424 +a(g207421 +g207423 +S'strongest' +p207425 +tp207426 +a(g207423 +g207425 +S'affinity' +p207427 +tp207428 +a(g207425 +g207427 +S'for' +p207429 +tp207430 +a(g207427 +g207429 +S'monet,' +p207431 +tp207432 +a(g207429 +g207431 +S'whose' +p207433 +tp207434 +a(g207431 +g207433 +S'primary' +p207435 +tp207436 +a(g207433 +g207435 +S'interest' +p207437 +tp207438 +a(g207435 +g207437 +S'was' +p207439 +tp207440 +a(g207437 +g207439 +S'also' +p207441 +tp207442 +a(g207439 +g207441 +S'landscape' +p207443 +tp207444 +a(g207441 +g207443 +S'rather' +p207445 +tp207446 +a(g207443 +g207445 +S'than' +p207447 +tp207448 +a(g207445 +g207447 +S'figure' +p207449 +tp207450 +a(g207447 +g207449 +S'painting.' +p207451 +tp207452 +a(g207449 +g207451 +S'throughout' +p207453 +tp207454 +a(g207451 +g207453 +S'the' +p207455 +tp207456 +a(g207453 +g207455 +S'1860s,' +p207457 +tp207458 +a(g207455 +g207457 +S'sisley' +p207459 +tp207460 +a(g207457 +g207459 +S'had' +p207461 +tp207462 +a(g207459 +g207461 +S'often' +p207463 +tp207464 +a(g207461 +g207463 +S'painted' +p207465 +tp207466 +a(g207463 +g207465 +S'alongside' +p207467 +tp207468 +a(g207465 +g207467 +S'monet,' +p207469 +tp207470 +a(g207467 +g207469 +S'including' +p207471 +tp207472 +a(g207469 +g207471 +S'an' +p207473 +tp207474 +a(g207471 +g207473 +S'excursion' +p207475 +tp207476 +a(g207473 +g207475 +S'the' +p207477 +tp207478 +a(g207475 +g207477 +S'two' +p207479 +tp207480 +a(g207477 +g207479 +S'had' +p207481 +tp207482 +a(g207479 +g207481 +S'made' +p207483 +tp207484 +a(g207481 +g207483 +S'to' +p207485 +tp207486 +a(g207483 +g207485 +S'honfleur' +p207487 +tp207488 +a(g207485 +g207487 +S'in' +p207489 +tp207490 +a(g207487 +g207489 +S'the' +p207491 +tp207492 +a(g207489 +g207491 +S'summer' +p207493 +tp207494 +a(g207491 +g207493 +S'of' +p207495 +tp207496 +a(g207493 +g207495 +S'1867.' +p207497 +tp207498 +a(g207495 +g207497 +S'during' +p207499 +tp207500 +a(g207497 +g207499 +S'his' +p207501 +tp207502 +a(g207499 +g207501 +S'sojourn' +p207503 +tp207504 +a(g207501 +g207503 +S'at' +p207505 +tp207506 +a(g207503 +g207505 +S'argenteuil,' +p207507 +tp207508 +a(g207505 +g207507 +S'sisley' +p207509 +tp207510 +a(g207507 +g207509 +S'produced' +p207511 +tp207512 +a(g207509 +g207511 +S'a' +p207513 +tp207514 +a(g207511 +g207513 +S'modest' +p207515 +tp207516 +a(g207513 +g207515 +S'group' +p207517 +tp207518 +a(g207515 +g207517 +S'of' +p207519 +tp207520 +a(g207517 +g207519 +S'paintings' +p207521 +tp207522 +a(g207519 +g207521 +S'depicting' +p207523 +tp207524 +a(g207521 +g207523 +S'both' +p207525 +tp207526 +a(g207523 +g207525 +S'the' +p207527 +tp207528 +a(g207525 +g207527 +S'town' +p207529 +tp207530 +a(g207527 +g207529 +S'and' +p207531 +tp207532 +a(g207529 +g207531 +S'the' +p207533 +tp207534 +a(g207531 +g207533 +S'riverbanks' +p207535 +tp207536 +a(g207533 +g207535 +S'of' +p207537 +tp207538 +a(g207535 +g207537 +S'the' +p207539 +tp207540 +a(g207537 +g207539 +S'seine.' +p207541 +tp207542 +a(g207539 +g207541 +S'boulevard' +p207543 +tp207544 +a(g207541 +g207543 +S'héloïse' +p207545 +tp207546 +a(g207543 +g207545 +S'takes' +p207547 +tp207548 +a(g207545 +g207547 +S'its' +p207549 +tp207550 +a(g207547 +g207549 +S'name' +p207551 +tp207552 +a(g207549 +g207551 +S'from' +p207553 +tp207554 +a(g207551 +g207553 +S'the' +p207555 +tp207556 +a(g207553 +g207555 +S'twelfth-century' +p207557 +tp207558 +a(g207555 +g207557 +S'figure' +p207559 +tp207560 +a(g207557 +g207559 +S'héloïse' +p207561 +tp207562 +a(g207559 +g207561 +S'd\xe2\x80\x99argenteuil,' +p207563 +tp207564 +a(g207561 +g207563 +S'who' +p207565 +tp207566 +a(g207563 +g207565 +S'after' +p207567 +tp207568 +a(g207565 +g207567 +S'a' +p207569 +tp207570 +a(g207567 +g207569 +S'doomed' +p207571 +tp207572 +a(g207569 +g207571 +S'romance' +p207573 +tp207574 +a(g207571 +g207573 +S'with' +p207575 +tp207576 +a(g207573 +g207575 +S'the' +p207577 +tp207578 +a(g207575 +g207577 +S'philosopher' +p207579 +tp207580 +a(g207577 +g207579 +S'pierre' +p207581 +tp207582 +a(g207579 +g207581 +S'abélard' +p207583 +tp207584 +a(g207581 +g207583 +S'retired' +p207585 +tp207586 +a(g207583 +g207585 +S'to' +p207587 +tp207588 +a(g207585 +g207587 +S'a' +p207589 +tp207590 +a(g207587 +g207589 +S'convent' +p207591 +tp207592 +a(g207589 +g207591 +S'in' +p207593 +tp207594 +a(g207591 +g207593 +S'argenteuil,' +p207595 +tp207596 +a(g207593 +g207595 +S'where' +p207597 +tp207598 +a(g207595 +g207597 +S'she' +p207599 +tp207600 +a(g207597 +g207599 +S'later' +p207601 +tp207602 +a(g207599 +g207601 +S'became' +p207603 +tp207604 +a(g207601 +g207603 +S'the' +p207605 +tp207606 +a(g207603 +g207605 +S'prioress.' +p207607 +tp207608 +a(g207605 +g207607 +S'the' +p207609 +tp207610 +a(g207607 +g207609 +S'thoroughfare' +p207611 +tp207612 +a(g207609 +g207611 +S'was' +p207613 +tp207614 +a(g207611 +g207613 +S'also' +p207615 +tp207616 +a(g207613 +g207615 +S'the' +p207617 +tp207618 +a(g207615 +g207617 +S'town\xe2\x80\x99s' +p207619 +tp207620 +a(g207617 +g207619 +S'largest' +p207621 +tp207622 +a(g207619 +g207621 +S'and' +p207623 +tp207624 +a(g207621 +g207623 +S'most' +p207625 +tp207626 +a(g207623 +g207625 +S'prominent.' +p207627 +tp207628 +a(g207625 +g207627 +S'the' +p207629 +tp207630 +a(g207627 +g207629 +S'two' +p207631 +tp207632 +a(g207629 +g207631 +S'artists' +p207633 +tp207634 +a(g207631 +g207633 +S'apparently' +p207635 +tp207636 +a(g207633 +g207635 +S'set' +p207637 +tp207638 +a(g207635 +g207637 +S'up' +p207639 +tp207640 +a(g207637 +g207639 +S'easels' +p207641 +tp207642 +a(g207639 +g207641 +S'onsite' +p207643 +tp207644 +a(g207641 +g207643 +S'side' +p207645 +tp207646 +a(g207643 +g207645 +S'by' +p207647 +tp207648 +a(g207645 +g207647 +S'side—monet' +p207649 +tp207650 +a(g207647 +g207649 +S'stationed' +p207651 +tp207652 +a(g207649 +g207651 +S'in' +p207653 +tp207654 +a(g207651 +g207653 +S'the' +p207655 +tp207656 +a(g207653 +g207655 +S'center' +p207657 +tp207658 +a(g207655 +g207657 +S'of' +p207659 +tp207660 +a(g207657 +g207659 +S'the' +p207661 +tp207662 +a(g207659 +g207661 +S'road,' +p207663 +tp207664 +a(g207661 +g207663 +S'sisley' +p207665 +tp207666 +a(g207663 +g207665 +S'positioned' +p207667 +tp207668 +a(g207665 +g207667 +S'to' +p207669 +tp207670 +a(g207667 +g207669 +S'his' +p207671 +tp207672 +a(g207669 +g207671 +S'right—which' +p207673 +tp207674 +a(g207671 +g207673 +S'afforded' +p207675 +tp207676 +a(g207673 +g207675 +S'them' +p207677 +tp207678 +a(g207675 +g207677 +S'comparable' +p207679 +tp207680 +a(g207677 +g207679 +S'vantage' +p207681 +tp207682 +a(g207679 +g207681 +S'points.' +p207683 +tp207684 +a(g207681 +g207683 +S'they' +p207685 +tp207686 +a(g207683 +g207685 +S'even' +p207687 +tp207688 +a(g207685 +g207687 +S'utilized' +p207689 +tp207690 +a(g207687 +g207689 +S'canvases' +p207691 +tp207692 +a(g207689 +g207691 +S'of' +p207693 +tp207694 +a(g207691 +g207693 +S'the' +p207695 +tp207696 +a(g207693 +g207695 +S'same' +p207697 +tp207698 +a(g207695 +g207697 +S'size.' +p207699 +tp207700 +a(g207697 +g207699 +S'the' +p207701 +tp207702 +a(g207699 +g207701 +S'wide' +p207703 +tp207704 +a(g207701 +g207703 +S'horizontal' +p207705 +tp207706 +a(g207703 +g207705 +S'format,' +p207707 +tp207708 +a(g207705 +g207707 +S'interestingly,' +p207709 +tp207710 +a(g207707 +g207709 +S'was' +p207711 +tp207712 +a(g207709 +g207711 +S'more' +p207713 +tp207714 +a(g207711 +g207713 +S'traditionally' +p207715 +tp207716 +a(g207713 +g207715 +S'associated' +p207717 +tp207718 +a(g207715 +g207717 +S'with' +p207719 +tp207720 +a(g207717 +g207719 +S'seascapes' +p207721 +tp207722 +a(g207719 +g207721 +S'than' +p207723 +tp207724 +a(g207721 +g207723 +S'with' +p207725 +tp207726 +a(g207723 +g207725 +S'landscape' +p207727 +tp207728 +a(g207725 +g207727 +S'paintings.' +p207729 +tp207730 +a(g207727 +g207729 +S'in' +p207731 +tp207732 +a(g207729 +g207731 +S'contrast' +p207733 +tp207734 +a(g207731 +g207733 +S'to' +p207735 +tp207736 +a(g207733 +g207735 +S'monet\xe2\x80\x99s' +p207737 +tp207738 +a(g207735 +g207737 +S'canvas,' +p207739 +tp207740 +a(g207737 +g207739 +S'which' +p207741 +tp207742 +a(g207739 +g207741 +S'seems' +p207743 +tp207744 +a(g207741 +g207743 +S'more' +p207745 +tp207746 +a(g207743 +g207745 +S'invested' +p207747 +tp207748 +a(g207745 +g207747 +S'in' +p207749 +tp207750 +a(g207747 +g207749 +S'the' +p207751 +tp207752 +a(g207749 +g207751 +S'overall' +p207753 +tp207754 +a(g207751 +g207753 +S'composition' +p207755 +tp207756 +a(g207753 +g207755 +S'and' +p207757 +tp207758 +a(g207755 +g207757 +S'the' +p207759 +tp207760 +a(g207757 +g207759 +S'careful' +p207761 +tp207762 +a(g207759 +g207761 +S'and' +p207763 +tp207764 +a(g207761 +g207763 +S'artful' +p207765 +tp207766 +a(g207763 +g207765 +S'arrangement' +p207767 +tp207768 +a(g207765 +g207767 +S'of' +p207769 +tp207770 +a(g207767 +g207769 +S'forms' +p207771 +tp207772 +a(g207769 +g207771 +S'(yale' +p207773 +tp207774 +a(g207771 +g207773 +S'university' +p207775 +tp207776 +a(g207773 +g207775 +S'art' +p207777 +tp207778 +a(g207775 +g207777 +S'gallery,' +p207779 +tp207780 +a(g207777 +g207779 +S'new' +p207781 +tp207782 +a(g207779 +g207781 +S'haven),' +p207783 +tp207784 +a(g207781 +g207783 +S'sisley\xe2\x80\x99s' +p207785 +tp207786 +a(g207783 +g207785 +S'painting' +p207787 +tp207788 +a(g207785 +g207787 +S'is' +p207789 +tp207790 +a(g207787 +g207789 +S'far' +p207791 +tp207792 +a(g207789 +g207791 +S'more' +p207793 +tp207794 +a(g207791 +g207793 +S'rigorous' +p207795 +tp207796 +a(g207793 +g207795 +S'in' +p207797 +tp207798 +a(g207795 +g207797 +S'its' +p207799 +tp207800 +a(g207797 +g207799 +S'observation' +p207801 +tp207802 +a(g207799 +g207801 +S'and' +p207803 +tp207804 +a(g207801 +g207803 +S'its' +p207805 +tp207806 +a(g207803 +g207805 +S'execution.' +p207807 +tp207808 +a(g207805 +g207807 +S'this' +p207809 +tp207810 +a(g207807 +g207809 +S'is' +p207811 +tp207812 +a(g207809 +g207811 +S'most' +p207813 +tp207814 +a(g207811 +g207813 +S'evident' +p207815 +tp207816 +a(g207813 +g207815 +S'in' +p207817 +tp207818 +a(g207815 +g207817 +S'his' +p207819 +tp207820 +a(g207817 +g207819 +S'depiction' +p207821 +tp207822 +a(g207819 +g207821 +S'of' +p207823 +tp207824 +a(g207821 +g207823 +S'the' +p207825 +tp207826 +a(g207823 +g207825 +S'houses' +p207827 +tp207828 +a(g207825 +g207827 +S'lining' +p207829 +tp207830 +a(g207827 +g207829 +S'the' +p207831 +tp207832 +a(g207829 +g207831 +S'left-hand' +p207833 +tp207834 +a(g207831 +g207833 +S'side' +p207835 +tp207836 +a(g207833 +g207835 +S'of' +p207837 +tp207838 +a(g207835 +g207837 +S'the' +p207839 +tp207840 +a(g207837 +g207839 +S'street.' +p207841 +tp207842 +a(g207839 +g207841 +S'each' +p207843 +tp207844 +a(g207841 +g207843 +S'building' +p207845 +tp207846 +a(g207843 +g207845 +S'is' +p207847 +tp207848 +a(g207845 +g207847 +S'carefully' +p207849 +tp207850 +a(g207847 +g207849 +S'delineated' +p207851 +tp207852 +a(g207849 +g207851 +S'and' +p207853 +tp207854 +a(g207851 +g207853 +S'distinguished' +p207855 +tp207856 +a(g207853 +g207855 +S'from' +p207857 +tp207858 +a(g207855 +g207857 +S'its' +p207859 +tp207860 +a(g207857 +g207859 +S'neighbors' +p207861 +tp207862 +a(g207859 +g207861 +S'through' +p207863 +tp207864 +a(g207861 +g207863 +S'the' +p207865 +tp207866 +a(g207863 +g207865 +S'placement' +p207867 +tp207868 +a(g207865 +g207867 +S'of' +p207869 +tp207870 +a(g207867 +g207869 +S'architectural' +p207871 +tp207872 +a(g207869 +g207871 +S'elements' +p207873 +tp207874 +a(g207871 +g207873 +S'and' +p207875 +tp207876 +a(g207873 +g207875 +S'subtle' +p207877 +tp207878 +a(g207875 +g207877 +S'changes' +p207879 +tp207880 +a(g207877 +g207879 +S'in' +p207881 +tp207882 +a(g207879 +g207881 +S'palette.' +p207883 +tp207884 +a(g207881 +g207883 +S'sisley\xe2\x80\x99s' +p207885 +tp207886 +a(g207883 +g207885 +S'eye' +p207887 +tp207888 +a(g207885 +g207887 +S'for' +p207889 +tp207890 +a(g207887 +g207889 +S'detail' +p207891 +tp207892 +a(g207889 +g207891 +S'is' +p207893 +tp207894 +a(g207891 +g207893 +S'apparent' +p207895 +tp207896 +a(g207893 +g207895 +S'throughout,' +p207897 +tp207898 +a(g207895 +g207897 +S'in' +p207899 +tp207900 +a(g207897 +g207899 +S'the' +p207901 +tp207902 +a(g207899 +g207901 +S'mottled' +p207903 +tp207904 +a(g207901 +g207903 +S'stonework' +p207905 +tp207906 +a(g207903 +g207905 +S'of' +p207907 +tp207908 +a(g207905 +g207907 +S'the' +p207909 +tp207910 +a(g207907 +g207909 +S'wall' +p207911 +tp207912 +a(g207909 +g207911 +S'partially' +p207913 +tp207914 +a(g207911 +g207913 +S'covered' +p207915 +tp207916 +a(g207913 +g207915 +S'with' +p207917 +tp207918 +a(g207915 +g207917 +S'ivy' +p207919 +tp207920 +a(g207917 +g207919 +S'at' +p207921 +tp207922 +a(g207919 +g207921 +S'the' +p207923 +tp207924 +a(g207921 +g207923 +S'far' +p207925 +tp207926 +a(g207923 +g207925 +S'left,' +p207927 +tp207928 +a(g207925 +g207927 +S'the' +p207929 +tp207930 +a(g207927 +g207929 +S'shape' +p207931 +tp207932 +a(g207929 +g207931 +S'of' +p207933 +tp207934 +a(g207931 +g207933 +S'the' +p207935 +tp207936 +a(g207933 +g207935 +S'adjacent' +p207937 +tp207938 +a(g207935 +g207937 +S'iron' +p207939 +tp207940 +a(g207937 +g207939 +S'gates,' +p207941 +tp207942 +a(g207939 +g207941 +S'even' +p207943 +tp207944 +a(g207941 +g207943 +S'the' +p207945 +tp207946 +a(g207943 +g207945 +S'intimation' +p207947 +tp207948 +a(g207945 +g207947 +S'of' +p207949 +tp207950 +a(g207947 +g207949 +S'the' +p207951 +tp207952 +a(g207949 +g207951 +S'cobblestones' +p207953 +tp207954 +a(g207951 +g207953 +S'paving' +p207955 +tp207956 +a(g207953 +g207955 +S'the' +p207957 +tp207958 +a(g207955 +g207957 +S'street' +p207959 +tp207960 +a(g207957 +g207959 +S'(they' +p207961 +tp207962 +a(g207959 +g207961 +S'had' +p207963 +tp207964 +a(g207961 +g207963 +S'been' +p207965 +tp207966 +a(g207963 +g207965 +S'added' +p207967 +tp207968 +a(g207965 +g207967 +S'in' +p207969 +tp207970 +a(g207967 +g207969 +S'the' +p207971 +tp207972 +a(g207969 +g207971 +S'early' +p207973 +tp207974 +a(g207971 +g207973 +S'1850s).' +p207975 +tp207976 +a(g207973 +g207975 +S'(text' +p207977 +tp207978 +a(g207975 +g207977 +S'by' +p207979 +tp207980 +a(g207977 +g207979 +S'kimberly' +p207981 +tp207982 +a(g207979 +g207981 +S'jones,' +p207983 +tp207984 +a(g207981 +g207983 +S'notes' +p207985 +tp207986 +a(g207983 +g207985 +S'' +p207989 +tp207990 +a(g207987 +g207989 +S'' +p207993 +tp207994 +a(g207991 +g207993 +S'according' +p207995 +tp207996 +a(g207993 +g207995 +S'to' +p207997 +tp207998 +a(g207995 +g207997 +S'a' +p207999 +tp208000 +a(g207997 +g207999 +S'friend' +p208001 +tp208002 +a(g207999 +g208001 +S'of' +p208003 +tp208004 +a(g208001 +g208003 +S'the' +p208005 +tp208006 +a(g208003 +g208005 +S'artist,' +p208007 +tp208008 +a(g208005 +g208007 +S'lautrec' +p208009 +tp208010 +a(g208007 +g208009 +S'spotted' +p208011 +tp208012 +a(g208009 +g208011 +S'carmen' +p208013 +tp208014 +a(g208011 +g208013 +S'gaudin,' +p208015 +tp208016 +a(g208013 +g208015 +S'a' +p208017 +tp208018 +a(g208015 +g208017 +S'laundress,' +p208019 +tp208020 +a(g208017 +g208019 +S'on' +p208021 +tp208022 +a(g208019 +g208021 +S'a' +p208023 +tp208024 +a(g208021 +g208023 +S'paris' +p208025 +tp208026 +a(g208023 +g208025 +S'street' +p208027 +tp208028 +a(g208025 +g208027 +S'one' +p208029 +tp208030 +a(g208027 +g208029 +S'day.' +p208031 +tp208032 +a(g208029 +g208031 +S'struck' +p208033 +tp208034 +a(g208031 +g208033 +S'by' +p208035 +tp208036 +a(g208033 +g208035 +S'her' +p208037 +tp208038 +a(g208035 +g208037 +S'copper' +p208039 +tp208040 +a(g208037 +g208039 +S'hair' +p208041 +tp208042 +a(g208039 +g208041 +S'and' +p208043 +tp208044 +a(g208041 +g208043 +S'hardened' +p208045 +tp208046 +a(g208043 +g208045 +S'looks,' +p208047 +tp208048 +a(g208045 +g208047 +S'which' +p208049 +tp208050 +a(g208047 +g208049 +S'he' +p208051 +tp208052 +a(g208049 +g208051 +S'compared' +p208053 +tp208054 +a(g208051 +g208053 +S'to' +p208055 +tp208056 +a(g208053 +g208055 +S'"tough' +p208057 +tp208058 +a(g208055 +g208057 +S'meat,"' +p208059 +tp208060 +a(g208057 +g208059 +S'he' +p208061 +tp208062 +a(g208059 +g208061 +S'immediately' +p208063 +tp208064 +a(g208061 +g208063 +S'went' +p208065 +tp208066 +a(g208063 +g208065 +S'after' +p208067 +tp208068 +a(g208065 +g208067 +S'her' +p208069 +tp208070 +a(g208067 +g208069 +S'to' +p208071 +tp208072 +a(g208069 +g208071 +S'ask' +p208073 +tp208074 +a(g208071 +g208073 +S'if' +p208075 +tp208076 +a(g208073 +g208075 +S'she' +p208077 +tp208078 +a(g208075 +g208077 +S'would' +p208079 +tp208080 +a(g208077 +g208079 +S'model' +p208081 +tp208082 +a(g208079 +g208081 +S'for' +p208083 +tp208084 +a(g208081 +g208083 +S'him.' +p208085 +tp208086 +a(g208083 +g208085 +S'the' +p208087 +tp208088 +a(g208085 +g208087 +S'apparent' +p208089 +tp208090 +a(g208087 +g208089 +S'working-class' +p208091 +tp208092 +a(g208089 +g208091 +S'coarseness' +p208093 +tp208094 +a(g208091 +g208093 +S'of' +p208095 +tp208096 +a(g208093 +g208095 +S'this' +p208097 +tp208098 +a(g208095 +g208097 +S'model' +p208099 +tp208100 +a(g208097 +g208099 +S'appealed' +p208101 +tp208102 +a(g208099 +g208101 +S'to' +p208103 +tp208104 +a(g208101 +g208103 +S'an' +p208105 +tp208106 +a(g208103 +g208105 +S'artist' +p208107 +tp208108 +a(g208105 +g208107 +S'who' +p208109 +tp208110 +a(g208107 +g208109 +S'was' +p208111 +tp208112 +a(g208109 +g208111 +S'increasingly' +p208113 +tp208114 +a(g208111 +g208113 +S'drawn' +p208115 +tp208116 +a(g208113 +g208115 +S'to' +p208117 +tp208118 +a(g208115 +g208117 +S'the' +p208119 +tp208120 +a(g208117 +g208119 +S'louche' +p208121 +tp208122 +a(g208119 +g208121 +S'world' +p208123 +tp208124 +a(g208121 +g208123 +S'of' +p208125 +tp208126 +a(g208123 +g208125 +S'montmartre,' +p208127 +tp208128 +a(g208125 +g208127 +S'the' +p208129 +tp208130 +a(g208127 +g208129 +S'bohemian' +p208131 +tp208132 +a(g208129 +g208131 +S'district' +p208133 +tp208134 +a(g208131 +g208133 +S'of' +p208135 +tp208136 +a(g208133 +g208135 +S'almost' +p208137 +tp208138 +a(g208135 +g208137 +S'all' +p208139 +tp208140 +a(g208137 +g208139 +S'of' +p208141 +tp208142 +a(g208139 +g208141 +S'lautrec\xe2\x80\x99s' +p208143 +tp208144 +a(g208141 +g208143 +S'depictions' +p208145 +tp208146 +a(g208143 +g208145 +S'of' +p208147 +tp208148 +a(g208145 +g208147 +S'gaudin' +p208149 +tp208150 +a(g208147 +g208149 +S'present' +p208151 +tp208152 +a(g208149 +g208151 +S'her' +p208153 +tp208154 +a(g208151 +g208153 +S'with' +p208155 +tp208156 +a(g208153 +g208155 +S'an' +p208157 +tp208158 +a(g208155 +g208157 +S'air' +p208159 +tp208160 +a(g208157 +g208159 +S'of' +p208161 +tp208162 +a(g208159 +g208161 +S'weariness' +p208163 +tp208164 +a(g208161 +g208163 +S'that' +p208165 +tp208166 +a(g208163 +g208165 +S'seems' +p208167 +tp208168 +a(g208165 +g208167 +S'to' +p208169 +tp208170 +a(g208167 +g208169 +S'evoke' +p208171 +tp208172 +a(g208169 +g208171 +S'the' +p208173 +tp208174 +a(g208171 +g208173 +S'tedious' +p208175 +tp208176 +a(g208173 +g208175 +S'reality' +p208177 +tp208178 +a(g208175 +g208177 +S'of' +p208179 +tp208180 +a(g208177 +g208179 +S'her' +p208181 +tp208182 +a(g208179 +g208181 +S'situation.' +p208183 +tp208184 +a(g208181 +g208183 +S'laundering' +p208185 +tp208186 +a(g208183 +g208185 +S'was' +p208187 +tp208188 +a(g208185 +g208187 +S'grueling' +p208189 +tp208190 +a(g208187 +g208189 +S'work,' +p208191 +tp208192 +a(g208189 +g208191 +S'and' +p208193 +tp208194 +a(g208191 +g208193 +S'it' +p208195 +tp208196 +a(g208193 +g208195 +S'was' +p208197 +tp208198 +a(g208195 +g208197 +S'a' +p208199 +tp208200 +a(g208197 +g208199 +S'common' +p208201 +tp208202 +a(g208199 +g208201 +S'assumption' +p208203 +tp208204 +a(g208201 +g208203 +S'of' +p208205 +tp208206 +a(g208203 +g208205 +S'the' +p208207 +tp208208 +a(g208205 +g208207 +S'time' +p208209 +tp208210 +a(g208207 +g208209 +S'that' +p208211 +tp208212 +a(g208209 +g208211 +S'washerwomen' +p208213 +tp208214 +a(g208211 +g208213 +S'supplemented' +p208215 +tp208216 +a(g208213 +g208215 +S'their' +p208217 +tp208218 +a(g208215 +g208217 +S'meager' +p208219 +tp208220 +a(g208217 +g208219 +S'earnings' +p208221 +tp208222 +a(g208219 +g208221 +S'through' +p208223 +tp208224 +a(g208221 +g208223 +S'prostitution.' +p208225 +tp208226 +a(g208223 +g208225 +S'but' +p208227 +tp208228 +a(g208225 +g208227 +S'the' +p208229 +tp208230 +a(g208227 +g208229 +S'hardness' +p208231 +tp208232 +a(g208229 +g208231 +S'that' +p208233 +tp208234 +a(g208231 +g208233 +S'lautrec' +p208235 +tp208236 +a(g208233 +g208235 +S'originally' +p208237 +tp208238 +a(g208235 +g208237 +S'perceived' +p208239 +tp208240 +a(g208237 +g208239 +S'in' +p208241 +tp208242 +a(g208239 +g208241 +S'gaudin\xe2\x80\x99s' +p208243 +tp208244 +a(g208241 +g208243 +S'face' +p208245 +tp208246 +a(g208243 +g208245 +S'did' +p208247 +tp208248 +a(g208245 +g208247 +S'not,' +p208249 +tp208250 +a(g208247 +g208249 +S'to' +p208251 +tp208252 +a(g208249 +g208251 +S'the' +p208253 +tp208254 +a(g208251 +g208253 +S'artist\xe2\x80\x99s' +p208255 +tp208256 +a(g208253 +g208255 +S'great' +p208257 +tp208258 +a(g208255 +g208257 +S'surprise,' +p208259 +tp208260 +a(g208257 +g208259 +S'reflect' +p208261 +tp208262 +a(g208259 +g208261 +S'her' +p208263 +tp208264 +a(g208261 +g208263 +S'personality.' +p208265 +tp208266 +a(g208263 +g208265 +S'she' +p208267 +tp208268 +a(g208265 +g208267 +S'had' +p208269 +tp208270 +a(g208267 +g208269 +S'a' +p208271 +tp208272 +a(g208269 +g208271 +S'very' +p208273 +tp208274 +a(g208271 +g208273 +S'gentle' +p208275 +tp208276 +a(g208273 +g208275 +S'disposition,' +p208277 +tp208278 +a(g208275 +g208277 +S'was' +p208279 +tp208280 +a(g208277 +g208279 +S'punctual,' +p208281 +tp208282 +a(g208279 +g208281 +S'circumspect,' +p208283 +tp208284 +a(g208281 +g208283 +S'and' +p208285 +tp208286 +a(g208283 +g208285 +S'eager' +p208287 +tp208288 +a(g208285 +g208287 +S'to' +p208289 +tp208290 +a(g208287 +g208289 +S'please,' +p208291 +tp208292 +a(g208289 +g208291 +S'and' +p208293 +tp208294 +a(g208291 +g208293 +S'as' +p208295 +tp208296 +a(g208293 +g208295 +S'such' +p208297 +tp208298 +a(g208295 +g208297 +S'found' +p208299 +tp208300 +a(g208297 +g208299 +S'favor' +p208301 +tp208302 +a(g208299 +g208301 +S'with' +p208303 +tp208304 +a(g208301 +g208303 +S'other' +p208305 +tp208306 +a(g208303 +g208305 +S'artists' +p208307 +tp208308 +a(g208305 +g208307 +S'in' +p208309 +tp208310 +a(g208307 +g208309 +S'his' +p208311 +tp208312 +a(g208309 +g208311 +S'circle' +p208313 +tp208314 +a(g208311 +g208313 +S'who' +p208315 +tp208316 +a(g208313 +g208315 +S'also' +p208317 +tp208318 +a(g208315 +g208317 +S'employed' +p208319 +tp208320 +a(g208317 +g208319 +S'her.' +p208321 +tp208322 +a(g208319 +g208321 +S'gaudin\xe2\x80\x99s' +p208323 +tp208324 +a(g208321 +g208323 +S'auburn' +p208325 +tp208326 +a(g208323 +g208325 +S'tresses' +p208327 +tp208328 +a(g208325 +g208327 +S'were' +p208329 +tp208330 +a(g208327 +g208329 +S'the' +p208331 +tp208332 +a(g208329 +g208331 +S'primary' +p208333 +tp208334 +a(g208331 +g208333 +S'factor' +p208335 +tp208336 +a(g208333 +g208335 +S'in' +p208337 +tp208338 +a(g208335 +g208337 +S'lautrec\xe2\x80\x99s' +p208339 +tp208340 +a(g208337 +g208339 +S'attraction' +p208341 +tp208342 +a(g208339 +g208341 +S'to' +p208343 +tp208344 +a(g208341 +g208343 +S'her' +p208345 +tp208346 +a(g208343 +g208345 +S'as' +p208347 +tp208348 +a(g208345 +g208347 +S'a' +p208349 +tp208350 +a(g208347 +g208349 +S'model.' +p208351 +tp208352 +a(g208349 +g208351 +S'this' +p208353 +tp208354 +a(g208351 +g208353 +S'fascination' +p208355 +tp208356 +a(g208353 +g208355 +S'is' +p208357 +tp208358 +a(g208355 +g208357 +S'apparent' +p208359 +tp208360 +a(g208357 +g208359 +S'in' +p208361 +tp208362 +a(g208359 +g208361 +S'his' +p208363 +tp208364 +a(g208361 +g208363 +S'paintings' +p208365 +tp208366 +a(g208363 +g208365 +S'of' +p208367 +tp208368 +a(g208365 +g208367 +S'her,' +p208369 +tp208370 +a(g208367 +g208369 +S'many' +p208371 +tp208372 +a(g208369 +g208371 +S'in' +p208373 +tp208374 +a(g208371 +g208373 +S'profile,' +p208375 +tp208376 +a(g208373 +g208375 +S'including' +p208377 +tp208378 +a(g208375 +g208377 +S'this' +p208379 +tp208380 +a(g208377 +g208379 +S'one,' +p208381 +tp208382 +a(g208379 +g208381 +S'with' +p208383 +tp208384 +a(g208381 +g208383 +S'disheveled' +p208385 +tp208386 +a(g208383 +g208385 +S'hair' +p208387 +tp208388 +a(g208385 +g208387 +S'falling' +p208389 +tp208390 +a(g208387 +g208389 +S'over' +p208391 +tp208392 +a(g208389 +g208391 +S'her' +p208393 +tp208394 +a(g208391 +g208393 +S'face' +p208395 +tp208396 +a(g208393 +g208395 +S'and' +p208397 +tp208398 +a(g208395 +g208397 +S'obscuring' +p208399 +tp208400 +a(g208397 +g208399 +S'her' +p208401 +tp208402 +a(g208399 +g208401 +S'eyes.' +p208403 +tp208404 +a(g208401 +g208403 +S'lautrec' +p208405 +tp208406 +a(g208403 +g208405 +S'preferred' +p208407 +tp208408 +a(g208405 +g208407 +S'redheaded' +p208409 +tp208410 +a(g208407 +g208409 +S'models' +p208411 +tp208412 +a(g208409 +g208411 +S'even' +p208413 +tp208414 +a(g208411 +g208413 +S'when' +p208415 +tp208416 +a(g208413 +g208415 +S'the' +p208417 +tp208418 +a(g208415 +g208417 +S'color' +p208419 +tp208420 +a(g208417 +g208419 +S'came' +p208421 +tp208422 +a(g208419 +g208421 +S'from' +p208423 +tp208424 +a(g208421 +g208423 +S'dye,' +p208425 +tp208426 +a(g208423 +g208425 +S'as' +p208427 +tp208428 +a(g208425 +g208427 +S'was' +p208429 +tp208430 +a(g208427 +g208429 +S'the' +p208431 +tp208432 +a(g208429 +g208431 +S'case' +p208433 +tp208434 +a(g208431 +g208433 +S'with' +p208435 +tp208436 +a(g208433 +g208435 +S'gaudin.' +p208437 +tp208438 +a(g208435 +g208437 +S'when' +p208439 +tp208440 +a(g208437 +g208439 +S'she' +p208441 +tp208442 +a(g208439 +g208441 +S'showed' +p208443 +tp208444 +a(g208441 +g208443 +S'up' +p208445 +tp208446 +a(g208443 +g208445 +S'at' +p208447 +tp208448 +a(g208445 +g208447 +S'his' +p208449 +tp208450 +a(g208447 +g208449 +S'studio' +p208451 +tp208452 +a(g208449 +g208451 +S'one' +p208453 +tp208454 +a(g208451 +g208453 +S'day' +p208455 +tp208456 +a(g208453 +g208455 +S'after' +p208457 +tp208458 +a(g208455 +g208457 +S'a' +p208459 +tp208460 +a(g208457 +g208459 +S'six-month' +p208461 +tp208462 +a(g208459 +g208461 +S'hiatus,' +p208463 +tp208464 +a(g208461 +g208463 +S'her' +p208465 +tp208466 +a(g208463 +g208465 +S'hair' +p208467 +tp208468 +a(g208465 +g208467 +S'returned' +p208469 +tp208470 +a(g208467 +g208469 +S'to' +p208471 +tp208472 +a(g208469 +g208471 +S'its' +p208473 +tp208474 +a(g208471 +g208473 +S'natural' +p208475 +tp208476 +a(g208473 +g208475 +S'state,' +p208477 +tp208478 +a(g208475 +g208477 +S'he' +p208479 +tp208480 +a(g208477 +g208479 +S'let' +p208481 +tp208482 +a(g208479 +g208481 +S'her' +p208483 +tp208484 +a(g208481 +g208483 +S'go,' +p208485 +tp208486 +a(g208483 +g208485 +S'reporting' +p208487 +tp208488 +a(g208485 +g208487 +S'to' +p208489 +tp208490 +a(g208487 +g208489 +S'a' +p208491 +tp208492 +a(g208489 +g208491 +S'friend,' +p208493 +tp208494 +a(g208491 +g208493 +S'"now' +p208495 +tp208496 +a(g208493 +g208495 +S'she' +p208497 +tp208498 +a(g208495 +g208497 +S'is' +p208499 +tp208500 +a(g208497 +g208499 +S'a' +p208501 +tp208502 +a(g208499 +g208501 +S'brunette!' +p208503 +tp208504 +a(g208501 +g208503 +S'you' +p208505 +tp208506 +a(g208503 +g208505 +S'realize' +p208507 +tp208508 +a(g208505 +g208507 +S'that' +p208509 +tp208510 +a(g208507 +g208509 +S'she' +p208511 +tp208512 +a(g208509 +g208511 +S'has' +p208513 +tp208514 +a(g208511 +g208513 +S'lost' +p208515 +tp208516 +a(g208513 +g208515 +S'all' +p208517 +tp208518 +a(g208515 +g208517 +S'her' +p208519 +tp208520 +a(g208517 +g208519 +S'appeal."' +p208521 +tp208522 +a(g208519 +g208521 +S'(text' +p208523 +tp208524 +a(g208521 +g208523 +S'by' +p208525 +tp208526 +a(g208523 +g208525 +S'margaret' +p208527 +tp208528 +a(g208525 +g208527 +S'doyle,' +p208529 +tp208530 +a(g208527 +g208529 +S'notes' +p208531 +tp208532 +a(g208529 +g208531 +S'' +p208535 +tp208536 +a(g208533 +g208535 +S'' +p208539 +tp208540 +a(g208537 +g208539 +S'' +p208543 +tp208544 +a(g208541 +g208543 +S'this' +p208545 +tp208546 +a(g208543 +g208545 +S'painting' +p208547 +tp208548 +a(g208545 +g208547 +S'is' +p208549 +tp208550 +a(g208547 +g208549 +S'an' +p208551 +tp208552 +a(g208549 +g208551 +S'oil' +p208553 +tp208554 +a(g208551 +g208553 +S'sketch.' +p208555 +tp208556 +a(g208553 +g208555 +S'painted' +p208557 +tp208558 +a(g208555 +g208557 +S'outdoors' +p208559 +tp208560 +a(g208557 +g208559 +S'within' +p208561 +tp208562 +a(g208559 +g208561 +S'a' +p208563 +tp208564 +a(g208561 +g208563 +S'few' +p208565 +tp208566 +a(g208563 +g208565 +S'hours,' +p208567 +tp208568 +a(g208565 +g208567 +S'it' +p208569 +tp208570 +a(g208567 +g208569 +S'was' +p208571 +tp208572 +a(g208569 +g208571 +S'meant' +p208573 +tp208574 +a(g208571 +g208573 +S'to' +p208575 +tp208576 +a(g208573 +g208575 +S'record' +p208577 +tp208578 +a(g208575 +g208577 +S"corot's" +p208579 +tp208580 +a(g208577 +g208579 +S'direct' +p208581 +tp208582 +a(g208579 +g208581 +S'impression' +p208583 +tp208584 +a(g208581 +g208583 +S'of' +p208585 +tp208586 +a(g208583 +g208585 +S'the' +p208587 +tp208588 +a(g208585 +g208587 +S'landscape.' +p208589 +tp208590 +a(g208587 +g208589 +S'its' +p208591 +tp208592 +a(g208589 +g208591 +S'long,' +p208593 +tp208594 +a(g208591 +g208593 +S'sweeping' +p208595 +tp208596 +a(g208593 +g208595 +S'brushstrokes' +p208597 +tp208598 +a(g208595 +g208597 +S'capture' +p208599 +tp208600 +a(g208597 +g208599 +S'in' +p208601 +tp208602 +a(g208599 +g208601 +S'shorthand' +p208603 +tp208604 +a(g208601 +g208603 +S'the' +p208605 +tp208606 +a(g208603 +g208605 +S'look' +p208607 +tp208608 +a(g208605 +g208607 +S'and' +p208609 +tp208610 +a(g208607 +g208609 +S'"feel"' +p208611 +tp208612 +a(g208609 +g208611 +S'of' +p208613 +tp208614 +a(g208611 +g208613 +S'light' +p208615 +tp208616 +a(g208613 +g208615 +S'and' +p208617 +tp208618 +a(g208615 +g208617 +S'weather.' +p208619 +tp208620 +a(g208617 +g208619 +S'such' +p208621 +tp208622 +a(g208619 +g208621 +S'small' +p208623 +tp208624 +a(g208621 +g208623 +S'works,' +p208625 +tp208626 +a(g208623 +g208625 +S'never' +p208627 +tp208628 +a(g208625 +g208627 +S'intended' +p208629 +tp208630 +a(g208627 +g208629 +S'as' +p208631 +tp208632 +a(g208629 +g208631 +S'finished' +p208633 +tp208634 +a(g208631 +g208633 +S'paintings,' +p208635 +tp208636 +a(g208633 +g208635 +S'were' +p208637 +tp208638 +a(g208635 +g208637 +S'part' +p208639 +tp208640 +a(g208637 +g208639 +S'of' +p208641 +tp208642 +a(g208639 +g208641 +S'the' +p208643 +tp208644 +a(g208641 +g208643 +S'normal' +p208645 +tp208646 +a(g208643 +g208645 +S'practice' +p208647 +tp208648 +a(g208645 +g208647 +S'of' +p208649 +tp208650 +a(g208647 +g208649 +S'landscape' +p208651 +tp208652 +a(g208649 +g208651 +S'artists.' +p208653 +tp208654 +a(g208651 +g208653 +S'by' +p208655 +tp208656 +a(g208653 +g208655 +S'referring' +p208657 +tp208658 +a(g208655 +g208657 +S'to' +p208659 +tp208660 +a(g208657 +g208659 +S'them' +p208661 +tp208662 +a(g208659 +g208661 +S'later,' +p208663 +tp208664 +a(g208661 +g208663 +S'a' +p208665 +tp208666 +a(g208663 +g208665 +S'painter' +p208667 +tp208668 +a(g208665 +g208667 +S'could' +p208669 +tp208670 +a(g208667 +g208669 +S're-create' +p208671 +tp208672 +a(g208669 +g208671 +S'in' +p208673 +tp208674 +a(g208671 +g208673 +S'his' +p208675 +tp208676 +a(g208673 +g208675 +S'more' +p208677 +tp208678 +a(g208675 +g208677 +S'elaborate' +p208679 +tp208680 +a(g208677 +g208679 +S'studio' +p208681 +tp208682 +a(g208679 +g208681 +S'paintings' +p208683 +tp208684 +a(g208681 +g208683 +S'the' +p208685 +tp208686 +a(g208683 +g208685 +S'freshness' +p208687 +tp208688 +a(g208685 +g208687 +S'and' +p208689 +tp208690 +a(g208687 +g208689 +S'immediacy' +p208691 +tp208692 +a(g208689 +g208691 +S'of' +p208693 +tp208694 +a(g208691 +g208693 +S'his' +p208695 +tp208696 +a(g208693 +g208695 +S'initial' +p208697 +tp208698 +a(g208695 +g208697 +S'observation.' +p208699 +tp208700 +a(g208697 +g208699 +S'the' +p208701 +tp208702 +a(g208699 +g208701 +S'outdoor' +p208703 +tp208704 +a(g208701 +g208703 +S'sketch' +p208705 +tp208706 +a(g208703 +g208705 +S'was' +p208707 +tp208708 +a(g208705 +g208707 +S'like' +p208709 +tp208710 +a(g208707 +g208709 +S'notes' +p208711 +tp208712 +a(g208709 +g208711 +S'taken' +p208713 +tp208714 +a(g208711 +g208713 +S'from' +p208715 +tp208716 +a(g208713 +g208715 +S'nature,' +p208717 +tp208718 +a(g208715 +g208717 +S'data' +p208719 +tp208720 +a(g208717 +g208719 +S'to' +p208721 +tp208722 +a(g208719 +g208721 +S'be' +p208723 +tp208724 +a(g208721 +g208723 +S'transformed' +p208725 +tp208726 +a(g208723 +g208725 +S'through' +p208727 +tp208728 +a(g208725 +g208727 +S'the' +p208729 +tp208730 +a(g208727 +g208729 +S"artist's" +p208731 +tp208732 +a(g208729 +g208731 +S'imagination' +p208733 +tp208734 +a(g208731 +g208733 +S'in' +p208735 +tp208736 +a(g208733 +g208735 +S'the' +p208737 +tp208738 +a(g208735 +g208737 +S'studio' +p208739 +tp208740 +a(g208737 +g208739 +S'into' +p208741 +tp208742 +a(g208739 +g208741 +S'finished,' +p208743 +tp208744 +a(g208741 +g208743 +S'salable' +p208745 +tp208746 +a(g208743 +g208745 +S'works.' +p208747 +tp208748 +a(g208745 +g208747 +S'corot' +p208749 +tp208750 +a(g208747 +g208749 +S'and' +p208751 +tp208752 +a(g208749 +g208751 +S'fellow' +p208753 +tp208754 +a(g208751 +g208753 +S'landscape' +p208755 +tp208756 +a(g208753 +g208755 +S'artists' +p208757 +tp208758 +a(g208755 +g208757 +S'working' +p208759 +tp208760 +a(g208757 +g208759 +S'in' +p208761 +tp208762 +a(g208759 +g208761 +S'the' +p208763 +tp208764 +a(g208761 +g208763 +S'forest' +p208765 +tp208766 +a(g208763 +g208765 +S'of' +p208767 +tp208768 +a(g208765 +g208767 +S'fontainebleau' +p208769 +tp208770 +a(g208767 +g208769 +S'were' +p208771 +tp208772 +a(g208769 +g208771 +S'important' +p208773 +tp208774 +a(g208771 +g208773 +S'influences' +p208775 +tp208776 +a(g208773 +g208775 +S'on' +p208777 +tp208778 +a(g208775 +g208777 +S'the' +p208779 +tp208780 +a(g208777 +g208779 +S'impressionists,' +p208781 +tp208782 +a(g208779 +g208781 +S'not' +p208783 +tp208784 +a(g208781 +g208783 +S'only' +p208785 +tp208786 +a(g208783 +g208785 +S'in' +p208787 +tp208788 +a(g208785 +g208787 +S'their' +p208789 +tp208790 +a(g208787 +g208789 +S'commitment' +p208791 +tp208792 +a(g208789 +g208791 +S'to' +p208793 +tp208794 +a(g208791 +g208793 +S'plein-air' +p208795 +tp208796 +a(g208793 +g208795 +S'painting,' +p208797 +tp208798 +a(g208795 +g208797 +S'but' +p208799 +tp208800 +a(g208797 +g208799 +S'also' +p208801 +tp208802 +a(g208799 +g208801 +S'in' +p208803 +tp208804 +a(g208801 +g208803 +S'their' +p208805 +tp208806 +a(g208803 +g208805 +S'adoption' +p208807 +tp208808 +a(g208805 +g208807 +S'of' +p208809 +tp208810 +a(g208807 +g208809 +S'a' +p208811 +tp208812 +a(g208809 +g208811 +S'brighter' +p208813 +tp208814 +a(g208811 +g208813 +S'palette.' +p208815 +tp208816 +a(g208813 +g208815 +S'corot,' +p208817 +tp208818 +a(g208815 +g208817 +S'using' +p208819 +tp208820 +a(g208817 +g208819 +S'a' +p208821 +tp208822 +a(g208819 +g208821 +S'light-colored' +p208823 +tp208824 +a(g208821 +g208823 +S'ground,' +p208825 +tp208826 +a(g208823 +g208825 +S'suffused' +p208827 +tp208828 +a(g208825 +g208827 +S'his' +p208829 +tp208830 +a(g208827 +g208829 +S'paintings' +p208831 +tp208832 +a(g208829 +g208831 +S'with' +p208833 +tp208834 +a(g208831 +g208833 +S'a' +p208835 +tp208836 +a(g208833 +g208835 +S'silvery' +p208837 +tp208838 +a(g208835 +g208837 +S'light' +p208839 +tp208840 +a(g208837 +g208839 +S'and' +p208841 +tp208842 +a(g208839 +g208841 +S'poetic' +p208843 +tp208844 +a(g208841 +g208843 +S'feel.' +p208845 +tp208846 +a(g208843 +g208845 +S"gainsborough's" +p208847 +tp208848 +a(g208845 +g208847 +S'landscapes' +p208849 +tp208850 +a(g208847 +g208849 +S'are' +p208851 +tp208852 +a(g208849 +g208851 +S'highly' +p208853 +tp208854 +a(g208851 +g208853 +S'personal' +p208855 +tp208856 +a(g208853 +g208855 +S'statements' +p208857 +tp208858 +a(g208855 +g208857 +S'that' +p208859 +tp208860 +a(g208857 +g208859 +S'evolved' +p208861 +tp208862 +a(g208859 +g208861 +S'from' +p208863 +tp208864 +a(g208861 +g208863 +S'ideas' +p208865 +tp208866 +a(g208863 +g208865 +S'and' +p208867 +tp208868 +a(g208865 +g208867 +S'images' +p208869 +tp208870 +a(g208867 +g208869 +S'he' +p208871 +tp208872 +a(g208869 +g208871 +S'developed' +p208873 +tp208874 +a(g208871 +g208873 +S'in' +p208875 +tp208876 +a(g208873 +g208875 +S'his' +p208877 +tp208878 +a(g208875 +g208877 +S'studio,' +p208879 +tp208880 +a(g208877 +g208879 +S'either' +p208881 +tp208882 +a(g208879 +g208881 +S'directly' +p208883 +tp208884 +a(g208881 +g208883 +S'on' +p208885 +tp208886 +a(g208883 +g208885 +S'canvas' +p208887 +tp208888 +a(g208885 +g208887 +S'or' +p208889 +tp208890 +a(g208887 +g208889 +S'in' +p208891 +tp208892 +a(g208889 +g208891 +S'scale' +p208893 +tp208894 +a(g208891 +g208893 +S'models.' +p208895 +tp208896 +a(g208893 +g208895 +S'in' +p208897 +tp208898 +a(g208895 +g208897 +S'this' +p208899 +tp208900 +a(g208897 +g208899 +S'work' +p208901 +tp208902 +a(g208899 +g208901 +S'he' +p208903 +tp208904 +a(g208901 +g208903 +S'focused' +p208905 +tp208906 +a(g208903 +g208905 +S'on' +p208907 +tp208908 +a(g208905 +g208907 +S'the' +p208909 +tp208910 +a(g208907 +g208909 +S'physical' +p208911 +tp208912 +a(g208909 +g208911 +S'exertions' +p208913 +tp208914 +a(g208911 +g208913 +S'of' +p208915 +tp208916 +a(g208913 +g208915 +S'fishermen' +p208917 +tp208918 +a(g208915 +g208917 +S'as' +p208919 +tp208920 +a(g208917 +g208919 +S'they' +p208921 +tp208922 +a(g208919 +g208921 +S'confront' +p208923 +tp208924 +a(g208921 +g208923 +S'strong' +p208925 +tp208926 +a(g208923 +g208925 +S'winds' +p208927 +tp208928 +a(g208925 +g208927 +S'and' +p208929 +tp208930 +a(g208927 +g208929 +S'pounding' +p208931 +tp208932 +a(g208929 +g208931 +S'surf.' +p208933 +tp208934 +a(g208931 +g208933 +S'even' +p208935 +tp208936 +a(g208933 +g208935 +S'the' +p208937 +tp208938 +a(g208935 +g208937 +S'massive' +p208939 +tp208940 +a(g208937 +g208939 +S'cliff' +p208941 +tp208942 +a(g208939 +g208941 +S'on' +p208943 +tp208944 +a(g208941 +g208943 +S'the' +p208945 +tp208946 +a(g208943 +g208945 +S'far' +p208947 +tp208948 +a(g208945 +g208947 +S'side' +p208949 +tp208950 +a(g208947 +g208949 +S'of' +p208951 +tp208952 +a(g208949 +g208951 +S'the' +p208953 +tp208954 +a(g208951 +g208953 +S'cove,' +p208955 +tp208956 +a(g208953 +g208955 +S'its' +p208957 +tp208958 +a(g208955 +g208957 +S'thrusting' +p208959 +tp208960 +a(g208957 +g208959 +S'diagonal' +p208961 +tp208962 +a(g208959 +g208961 +S'posed' +p208963 +tp208964 +a(g208961 +g208963 +S'against' +p208965 +tp208966 +a(g208963 +g208965 +S'the' +p208967 +tp208968 +a(g208965 +g208967 +S'wind,' +p208969 +tp208970 +a(g208967 +g208969 +S'seems' +p208971 +tp208972 +a(g208969 +g208971 +S'to' +p208973 +tp208974 +a(g208971 +g208973 +S'echo' +p208975 +tp208976 +a(g208973 +g208975 +S'the' +p208977 +tp208978 +a(g208975 +g208977 +S'efforts' +p208979 +tp208980 +a(g208977 +g208979 +S'of' +p208981 +tp208982 +a(g208979 +g208981 +S'the' +p208983 +tp208984 +a(g208981 +g208983 +S'men' +p208985 +tp208986 +a(g208983 +g208985 +S'struggling' +p208987 +tp208988 +a(g208985 +g208987 +S'to' +p208989 +tp208990 +a(g208987 +g208989 +S'launch' +p208991 +tp208992 +a(g208989 +g208991 +S'their' +p208993 +tp208994 +a(g208991 +g208993 +S'boat' +p208995 +tp208996 +a(g208993 +g208995 +S'into' +p208997 +tp208998 +a(g208995 +g208997 +S'the' +p208999 +tp209000 +a(g208997 +g208999 +S'waves.' +p209001 +tp209002 +a(g208999 +g209001 +S'gainsborough' +p209003 +tp209004 +a(g209001 +g209003 +S'owned' +p209005 +tp209006 +a(g209003 +g209005 +S'works' +p209007 +tp209008 +a(g209005 +g209007 +S'by' +p209009 +tp209010 +a(g209007 +g209009 +S'dutch' +p209011 +tp209012 +a(g209009 +g209011 +S'marine' +p209013 +tp209014 +a(g209011 +g209013 +S'painters,' +p209015 +tp209016 +a(g209013 +g209015 +S'and' +p209017 +tp209018 +a(g209015 +g209017 +S'their' +p209019 +tp209020 +a(g209017 +g209019 +S'influence' +p209021 +tp209022 +a(g209019 +g209021 +S'is' +p209023 +tp209024 +a(g209021 +g209023 +S'evident' +p209025 +tp209026 +a(g209023 +g209025 +S'here.' +p209027 +tp209028 +a(g209025 +g209027 +S'his' +p209029 +tp209030 +a(g209027 +g209029 +S'own' +p209031 +tp209032 +a(g209029 +g209031 +S'free' +p209033 +tp209034 +a(g209031 +g209033 +S'and' +p209035 +tp209036 +a(g209033 +g209035 +S'suggestive' +p209037 +tp209038 +a(g209035 +g209037 +S'painting' +p209039 +tp209040 +a(g209037 +g209039 +S'technique,' +p209041 +tp209042 +a(g209039 +g209041 +S'however,' +p209043 +tp209044 +a(g209041 +g209043 +S'gives' +p209045 +tp209046 +a(g209043 +g209045 +S'the' +p209047 +tp209048 +a(g209045 +g209047 +S'scene' +p209049 +tp209050 +a(g209047 +g209049 +S'a' +p209051 +tp209052 +a(g209049 +g209051 +S'unique' +p209053 +tp209054 +a(g209051 +g209053 +S'degree' +p209055 +tp209056 +a(g209053 +g209055 +S'of' +p209057 +tp209058 +a(g209055 +g209057 +S'freshness' +p209059 +tp209060 +a(g209057 +g209059 +S'and' +p209061 +tp209062 +a(g209059 +g209061 +S'spontaneity.' +p209063 +tp209064 +a(g209061 +g209063 +S'he' +p209065 +tp209066 +a(g209063 +g209065 +S'applied' +p209067 +tp209068 +a(g209065 +g209067 +S'his' +p209069 +tp209070 +a(g209067 +g209069 +S'paint' +p209071 +tp209072 +a(g209069 +g209071 +S'in' +p209073 +tp209074 +a(g209071 +g209073 +S'thin,' +p209075 +tp209076 +a(g209073 +g209075 +S'translucent' +p209077 +tp209078 +a(g209075 +g209077 +S'layers' +p209079 +tp209080 +a(g209077 +g209079 +S'that' +p209081 +tp209082 +a(g209079 +g209081 +S'are' +p209083 +tp209084 +a(g209081 +g209083 +S'accented' +p209085 +tp209086 +a(g209083 +g209085 +S'by' +p209087 +tp209088 +a(g209085 +g209087 +S'deft' +p209089 +tp209090 +a(g209087 +g209089 +S'touches' +p209091 +tp209092 +a(g209089 +g209091 +S'of' +p209093 +tp209094 +a(g209091 +g209093 +S'impasto,' +p209095 +tp209096 +a(g209093 +g209095 +S'particularly' +p209097 +tp209098 +a(g209095 +g209097 +S'in' +p209099 +tp209100 +a(g209097 +g209099 +S'the' +p209101 +tp209102 +a(g209099 +g209101 +S"fishermen's" +p209103 +tp209104 +a(g209101 +g209103 +S'clothing' +p209105 +tp209106 +a(g209103 +g209105 +S'and' +p209107 +tp209108 +a(g209105 +g209107 +S'on' +p209109 +tp209110 +a(g209107 +g209109 +S'the' +p209111 +tp209112 +a(g209109 +g209111 +S'white' +p209113 +tp209114 +a(g209111 +g209113 +S'foam' +p209115 +tp209116 +a(g209113 +g209115 +S'of' +p209117 +tp209118 +a(g209115 +g209117 +S'the' +p209119 +tp209120 +a(g209117 +g209119 +S'waves.' +p209121 +tp209122 +a(g209119 +g209121 +S'a' +p209123 +tp209124 +a(g209121 +g209123 +S'restrained' +p209125 +tp209126 +a(g209123 +g209125 +S'palette' +p209127 +tp209128 +a(g209125 +g209127 +S'of' +p209129 +tp209130 +a(g209127 +g209129 +S'browns' +p209131 +tp209132 +a(g209129 +g209131 +S'and' +p209133 +tp209134 +a(g209131 +g209133 +S'creams' +p209135 +tp209136 +a(g209133 +g209135 +S'suggests' +p209137 +tp209138 +a(g209135 +g209137 +S'the' +p209139 +tp209140 +a(g209137 +g209139 +S'shore' +p209141 +tp209142 +a(g209139 +g209141 +S'and' +p209143 +tp209144 +a(g209141 +g209143 +S'rocks;' +p209145 +tp209146 +a(g209143 +g209145 +S'gray-greens,' +p209147 +tp209148 +a(g209145 +g209147 +S'gray-blues,' +p209149 +tp209150 +a(g209147 +g209149 +S'and' +p209151 +tp209152 +a(g209149 +g209151 +S'white' +p209153 +tp209154 +a(g209151 +g209153 +S'highlights' +p209155 +tp209156 +a(g209153 +g209155 +S'describe' +p209157 +tp209158 +a(g209155 +g209157 +S'the' +p209159 +tp209160 +a(g209157 +g209159 +S'sun-filled' +p209161 +tp209162 +a(g209159 +g209161 +S'expanse' +p209163 +tp209164 +a(g209161 +g209163 +S'of' +p209165 +tp209166 +a(g209163 +g209165 +S'the' +p209167 +tp209168 +a(g209165 +g209167 +S'sea,' +p209169 +tp209170 +a(g209167 +g209169 +S'while' +p209171 +tp209172 +a(g209169 +g209171 +S'the' +p209173 +tp209174 +a(g209171 +g209173 +S'sky' +p209175 +tp209176 +a(g209173 +g209175 +S'is' +p209177 +tp209178 +a(g209175 +g209177 +S'colored' +p209179 +tp209180 +a(g209177 +g209179 +S'with' +p209181 +tp209182 +a(g209179 +g209181 +S'delicate' +p209183 +tp209184 +a(g209181 +g209183 +S'hints' +p209185 +tp209186 +a(g209183 +g209185 +S'of' +p209187 +tp209188 +a(g209185 +g209187 +S'purple,' +p209189 +tp209190 +a(g209187 +g209189 +S'blue,' +p209191 +tp209192 +a(g209189 +g209191 +S'and' +p209193 +tp209194 +a(g209191 +g209193 +S'pink.' +p209195 +tp209196 +a(g209193 +g209195 +S'although' +p209197 +tp209198 +a(g209195 +g209197 +S'goya' +p209199 +tp209200 +a(g209197 +g209199 +S'is' +p209201 +tp209202 +a(g209199 +g209201 +S'now' +p209203 +tp209204 +a(g209201 +g209203 +S'best' +p209205 +tp209206 +a(g209203 +g209205 +S'known' +p209207 +tp209208 +a(g209205 +g209207 +S'for' +p209209 +tp209210 +a(g209207 +g209209 +S'his' +p209211 +tp209212 +a(g209209 +g209211 +S'innovative' +p209213 +tp209214 +a(g209211 +g209213 +S'and' +p209215 +tp209216 +a(g209213 +g209215 +S'incisive' +p209217 +tp209218 +a(g209215 +g209217 +S'depictions' +p209219 +tp209220 +a(g209217 +g209219 +S'of' +p209221 +tp209222 +a(g209219 +g209221 +S'such' +p209223 +tp209224 +a(g209221 +g209223 +S'themes' +p209225 +tp209226 +a(g209223 +g209225 +S'as' +p209227 +tp209228 +a(g209225 +g209227 +S'the' +p209229 +tp209230 +a(g209227 +g209229 +S'excitement' +p209231 +tp209232 +a(g209229 +g209231 +S'of' +p209233 +tp209234 +a(g209231 +g209233 +S'the' +p209235 +tp209236 +a(g209233 +g209235 +S'bullring' +p209237 +tp209238 +a(g209235 +g209237 +S'and' +p209239 +tp209240 +a(g209237 +g209239 +S'horrors' +p209241 +tp209242 +a(g209239 +g209241 +S'of' +p209243 +tp209244 +a(g209241 +g209243 +S'the' +p209245 +tp209246 +a(g209243 +g209245 +S'napoleonic' +p209247 +tp209248 +a(g209245 +g209247 +S'wars,' +p209249 +tp209250 +a(g209247 +g209249 +S'it' +p209251 +tp209252 +a(g209249 +g209251 +S'was' +p209253 +tp209254 +a(g209251 +g209253 +S'as' +p209255 +tp209256 +a(g209253 +g209255 +S'a' +p209257 +tp209258 +a(g209255 +g209257 +S'portraitist' +p209259 +tp209260 +a(g209257 +g209259 +S'that' +p209261 +tp209262 +a(g209259 +g209261 +S'he' +p209263 +tp209264 +a(g209261 +g209263 +S'first' +p209265 +tp209266 +a(g209263 +g209265 +S'gained' +p209267 +tp209268 +a(g209265 +g209267 +S'fame' +p209269 +tp209270 +a(g209267 +g209269 +S'among' +p209271 +tp209272 +a(g209269 +g209271 +S'his' +p209273 +tp209274 +a(g209271 +g209273 +S'countrymen.' +p209275 +tp209276 +a(g209273 +g209275 +S'in' +p209277 +tp209278 +a(g209275 +g209277 +S'1783,' +p209279 +tp209280 +a(g209277 +g209279 +S'goya' +p209281 +tp209282 +a(g209279 +g209281 +S'was' +p209283 +tp209284 +a(g209281 +g209283 +S'called' +p209285 +tp209286 +a(g209283 +g209285 +S'to' +p209287 +tp209288 +a(g209285 +g209287 +S'arenas' +p209289 +tp209290 +a(g209287 +g209289 +S'de' +p209291 +tp209292 +a(g209289 +g209291 +S'san' +p209293 +tp209294 +a(g209291 +g209293 +S'pedro' +p209295 +tp209296 +a(g209293 +g209295 +S'by' +p209297 +tp209298 +a(g209295 +g209297 +S'the' +p209299 +tp209300 +a(g209297 +g209299 +S'infante' +p209301 +tp209302 +a(g209299 +g209301 +S'don' +p209303 +tp209304 +a(g209301 +g209303 +S'luis,' +p209305 +tp209306 +a(g209303 +g209305 +S'brother' +p209307 +tp209308 +a(g209305 +g209307 +S'of' +p209309 +tp209310 +a(g209307 +g209309 +S'charles' +p209311 +tp209312 +a(g209309 +g209311 +S'iii,' +p209313 +tp209314 +a(g209311 +g209313 +S'to' +p209315 +tp209316 +a(g209313 +g209315 +S'paint' +p209317 +tp209318 +a(g209315 +g209317 +S'a' +p209319 +tp209320 +a(g209317 +g209319 +S'family' +p209321 +tp209322 +a(g209319 +g209321 +S'portrait.' +p209323 +tp209324 +a(g209321 +g209323 +S'he' +p209325 +tp209326 +a(g209323 +g209325 +S'also' +p209327 +tp209328 +a(g209325 +g209327 +S'painted' +p209329 +tp209330 +a(g209327 +g209329 +S'individual' +p209331 +tp209332 +a(g209329 +g209331 +S'portraits' +p209333 +tp209334 +a(g209331 +g209333 +S'of' +p209335 +tp209336 +a(g209333 +g209335 +S'family' +p209337 +tp209338 +a(g209335 +g209337 +S'members' +p209339 +tp209340 +a(g209337 +g209339 +S'such' +p209341 +tp209342 +a(g209339 +g209341 +S'as' +p209343 +tp209344 +a(g209341 +g209343 +S'this' +p209345 +tp209346 +a(g209343 +g209345 +S'one.' +p209347 +tp209348 +a(g209345 +g209347 +S'ingenuous' +p209349 +tp209350 +a(g209347 +g209349 +S'but' +p209351 +tp209352 +a(g209349 +g209351 +S'self-assured,' +p209353 +tp209354 +a(g209351 +g209353 +S'the' +p209355 +tp209356 +a(g209353 +g209355 +S'future' +p209357 +tp209358 +a(g209355 +g209357 +S'countess' +p209359 +tp209360 +a(g209357 +g209359 +S'wears' +p209361 +tp209362 +a(g209359 +g209361 +S'the' +p209363 +tp209364 +a(g209361 +g209363 +S'fashionable' +p209365 +tp209366 +a(g209363 +g209365 +S'attire' +p209367 +tp209368 +a(g209365 +g209367 +S'of' +p209369 +tp209370 +a(g209367 +g209369 +S'a' +p209371 +tp209372 +a(g209369 +g209371 +S'lady' +p209373 +tp209374 +a(g209371 +g209373 +S'of' +p209375 +tp209376 +a(g209373 +g209375 +S'the' +p209377 +tp209378 +a(g209375 +g209377 +S'spanish' +p209379 +tp209380 +a(g209377 +g209379 +S'court' +p209381 +tp209382 +a(g209379 +g209381 +S'as' +p209383 +tp209384 +a(g209381 +g209383 +S'she' +p209385 +tp209386 +a(g209383 +g209385 +S'poses' +p209387 +tp209388 +a(g209385 +g209387 +S'at' +p209389 +tp209390 +a(g209387 +g209389 +S'the' +p209391 +tp209392 +a(g209389 +g209391 +S'edge' +p209393 +tp209394 +a(g209391 +g209393 +S'of' +p209395 +tp209396 +a(g209393 +g209395 +S'a' +p209397 +tp209398 +a(g209395 +g209397 +S'terrace.' +p209399 +tp209400 +a(g209397 +g209399 +S'she' +p209401 +tp209402 +a(g209399 +g209401 +S'gazes' +p209403 +tp209404 +a(g209401 +g209403 +S'out' +p209405 +tp209406 +a(g209403 +g209405 +S'at' +p209407 +tp209408 +a(g209405 +g209407 +S'the' +p209409 +tp209410 +a(g209407 +g209409 +S'viewer' +p209411 +tp209412 +a(g209409 +g209411 +S'with' +p209413 +tp209414 +a(g209411 +g209413 +S'an' +p209415 +tp209416 +a(g209413 +g209415 +S'innocence' +p209417 +tp209418 +a(g209415 +g209417 +S'very' +p209419 +tp209420 +a(g209417 +g209419 +S'much' +p209421 +tp209422 +a(g209419 +g209421 +S'in' +p209423 +tp209424 +a(g209421 +g209423 +S'contrast' +p209425 +tp209426 +a(g209423 +g209425 +S'with' +p209427 +tp209428 +a(g209425 +g209427 +S'her' +p209429 +tp209430 +a(g209427 +g209429 +S'adult' +p209431 +tp209432 +a(g209429 +g209431 +S'costume' +p209433 +tp209434 +a(g209431 +g209433 +S'and' +p209435 +tp209436 +a(g209433 +g209435 +S'mature' +p209437 +tp209438 +a(g209435 +g209437 +S'stance.' +p209439 +tp209440 +a(g209437 +g209439 +S'in' +p209441 +tp209442 +a(g209439 +g209441 +S'the' +p209443 +tp209444 +a(g209441 +g209443 +S'style' +p209445 +tp209446 +a(g209443 +g209445 +S'of' +p209447 +tp209448 +a(g209445 +g209447 +S'earlier' +p209449 +tp209450 +a(g209447 +g209449 +S'"grand-manner"' +p209451 +tp209452 +a(g209449 +g209451 +S'portraiture,' +p209453 +tp209454 +a(g209451 +g209453 +S'goya' +p209455 +tp209456 +a(g209453 +g209455 +S'may' +p209457 +tp209458 +a(g209455 +g209457 +S'have' +p209459 +tp209460 +a(g209457 +g209459 +S'manipulated' +p209461 +tp209462 +a(g209459 +g209461 +S'the' +p209463 +tp209464 +a(g209461 +g209463 +S'setting' +p209465 +tp209466 +a(g209463 +g209465 +S'to' +p209467 +tp209468 +a(g209465 +g209467 +S'enhance' +p209469 +tp209470 +a(g209467 +g209469 +S'the' +p209471 +tp209472 +a(g209469 +g209471 +S'image' +p209473 +tp209474 +a(g209471 +g209473 +S'of' +p209475 +tp209476 +a(g209473 +g209475 +S'the' +p209477 +tp209478 +a(g209475 +g209477 +S'diminutive' +p209479 +tp209480 +a(g209477 +g209479 +S'sitter,' +p209481 +tp209482 +a(g209479 +g209481 +S'perhaps' +p209483 +tp209484 +a(g209481 +g209483 +S'adjusting' +p209485 +tp209486 +a(g209483 +g209485 +S'the' +p209487 +tp209488 +a(g209485 +g209487 +S'scale' +p209489 +tp209490 +a(g209487 +g209489 +S'of' +p209491 +tp209492 +a(g209489 +g209491 +S'the' +p209493 +tp209494 +a(g209491 +g209493 +S'parapet' +p209495 +tp209496 +a(g209493 +g209495 +S'to' +p209497 +tp209498 +a(g209495 +g209497 +S'her' +p209499 +tp209500 +a(g209497 +g209499 +S'size' +p209501 +tp209502 +a(g209499 +g209501 +S'and' +p209503 +tp209504 +a(g209501 +g209503 +S'placing' +p209505 +tp209506 +a(g209503 +g209505 +S'the' +p209507 +tp209508 +a(g209505 +g209507 +S'wall' +p209509 +tp209510 +a(g209507 +g209509 +S'close' +p209511 +tp209512 +a(g209509 +g209511 +S'to' +p209513 +tp209514 +a(g209511 +g209513 +S'her.' +p209515 +tp209516 +a(g209513 +g209515 +S'this' +p209517 +tp209518 +a(g209515 +g209517 +S'is' +p209519 +tp209520 +a(g209517 +g209519 +S'one' +p209521 +tp209522 +a(g209519 +g209521 +S'of' +p209523 +tp209524 +a(g209521 +g209523 +S'four' +p209525 +tp209526 +a(g209523 +g209525 +S'portraits' +p209527 +tp209528 +a(g209525 +g209527 +S'by' +p209529 +tp209530 +a(g209527 +g209529 +S'goya' +p209531 +tp209532 +a(g209529 +g209531 +S'of' +p209533 +tp209534 +a(g209531 +g209533 +S'maría' +p209535 +tp209536 +a(g209533 +g209535 +S'teresa,' +p209537 +tp209538 +a(g209535 +g209537 +S'with' +p209539 +tp209540 +a(g209537 +g209539 +S'whom' +p209541 +tp209542 +a(g209539 +g209541 +S'he' +p209543 +tp209544 +a(g209541 +g209543 +S'maintained' +p209545 +tp209546 +a(g209543 +g209545 +S'a' +p209547 +tp209548 +a(g209545 +g209547 +S'lifelong' +p209549 +tp209550 +a(g209547 +g209549 +S'sympathetic' +p209551 +tp209552 +a(g209549 +g209551 +S'relationship.' +p209553 +tp209554 +a(g209551 +g209553 +S'one' +p209555 +tp209556 +a(g209553 +g209555 +S'of' +p209557 +tp209558 +a(g209555 +g209557 +S'the' +p209559 +tp209560 +a(g209557 +g209559 +S'most' +p209561 +tp209562 +a(g209559 +g209561 +S'tragic' +p209563 +tp209564 +a(g209561 +g209563 +S'figures' +p209565 +tp209566 +a(g209563 +g209565 +S'at' +p209567 +tp209568 +a(g209565 +g209567 +S'the' +p209569 +tp209570 +a(g209567 +g209569 +S'court' +p209571 +tp209572 +a(g209569 +g209571 +S'of' +p209573 +tp209574 +a(g209571 +g209573 +S'charles' +p209575 +tp209576 +a(g209573 +g209575 +S'iv,' +p209577 +tp209578 +a(g209575 +g209577 +S'the' +p209579 +tp209580 +a(g209577 +g209579 +S'countess' +p209581 +tp209582 +a(g209579 +g209581 +S'was' +p209583 +tp209584 +a(g209581 +g209583 +S'trapped' +p209585 +tp209586 +a(g209583 +g209585 +S'in' +p209587 +tp209588 +a(g209585 +g209587 +S'a' +p209589 +tp209590 +a(g209587 +g209589 +S'humiliating' +p209591 +tp209592 +a(g209589 +g209591 +S'marriage' +p209593 +tp209594 +a(g209591 +g209593 +S'to' +p209595 +tp209596 +a(g209593 +g209595 +S'the' +p209597 +tp209598 +a(g209595 +g209597 +S"king's" +p209599 +tp209600 +a(g209597 +g209599 +S'minister,' +p209601 +tp209602 +a(g209599 +g209601 +S'manuel' +p209603 +tp209604 +a(g209601 +g209603 +S'godoy,' +p209605 +tp209606 +a(g209603 +g209605 +S'arranged' +p209607 +tp209608 +a(g209605 +g209607 +S'by' +p209609 +tp209610 +a(g209607 +g209609 +S'the' +p209611 +tp209612 +a(g209609 +g209611 +S'queen,' +p209613 +tp209614 +a(g209611 +g209613 +S'maria' +p209615 +tp209616 +a(g209613 +g209615 +S'luisa,' +p209617 +tp209618 +a(g209615 +g209617 +S'for' +p209619 +tp209620 +a(g209617 +g209619 +S'her' +p209621 +tp209622 +a(g209619 +g209621 +S'own' +p209623 +tp209624 +a(g209621 +g209623 +S'duplicitous' +p209625 +tp209626 +a(g209623 +g209625 +S'purposes.' +p209627 +tp209628 +a(g209625 +g209627 +S'this' +p209629 +tp209630 +a(g209627 +g209629 +S'seascape' +p209631 +tp209632 +a(g209629 +g209631 +S'was' +p209633 +tp209634 +a(g209631 +g209633 +S'exhibited' +p209635 +tp209636 +a(g209633 +g209635 +S'in' +p209637 +tp209638 +a(g209635 +g209637 +S'1833' +p209639 +tp209640 +a(g209637 +g209639 +S'at' +p209641 +tp209642 +a(g209639 +g209641 +S'the' +p209643 +tp209644 +a(g209641 +g209643 +S'royal' +p209645 +tp209646 +a(g209643 +g209645 +S'academy,' +p209647 +tp209648 +a(g209645 +g209647 +S'where' +p209649 +tp209650 +a(g209647 +g209649 +S'turner' +p209651 +tp209652 +a(g209649 +g209651 +S'taught' +p209653 +tp209654 +a(g209651 +g209653 +S'as' +p209655 +tp209656 +a(g209653 +g209655 +S'the' +p209657 +tp209658 +a(g209655 +g209657 +S'professor' +p209659 +tp209660 +a(g209657 +g209659 +S'of' +p209661 +tp209662 +a(g209659 +g209661 +S'perspective.' +p209663 +tp209664 +a(g209661 +g209663 +S'conquering' +p209665 +tp209666 +a(g209663 +g209665 +S'the' +p209667 +tp209668 +a(g209665 +g209667 +S'problem' +p209669 +tp209670 +a(g209667 +g209669 +S'of' +p209671 +tp209672 +a(g209669 +g209671 +S'creating' +p209673 +tp209674 +a(g209671 +g209673 +S'a' +p209675 +tp209676 +a(g209673 +g209675 +S'believable' +p209677 +tp209678 +a(g209675 +g209677 +S'sense' +p209679 +tp209680 +a(g209677 +g209679 +S'of' +p209681 +tp209682 +a(g209679 +g209681 +S'space' +p209683 +tp209684 +a(g209681 +g209683 +S'across' +p209685 +tp209686 +a(g209683 +g209685 +S'a' +p209687 +tp209688 +a(g209685 +g209687 +S'featureless' +p209689 +tp209690 +a(g209687 +g209689 +S'expanse' +p209691 +tp209692 +a(g209689 +g209691 +S'of' +p209693 +tp209694 +a(g209691 +g209693 +S'water,' +p209695 +tp209696 +a(g209693 +g209695 +S'turner' +p209697 +tp209698 +a(g209695 +g209697 +S'anchored' +p209699 +tp209700 +a(g209697 +g209699 +S'the' +p209701 +tp209702 +a(g209699 +g209701 +S'carefully' +p209703 +tp209704 +a(g209701 +g209703 +S'aligned' +p209705 +tp209706 +a(g209703 +g209705 +S'design' +p209707 +tp209708 +a(g209705 +g209707 +S'upon' +p209709 +tp209710 +a(g209707 +g209709 +S'a' +p209711 +tp209712 +a(g209709 +g209711 +S'small' +p209713 +tp209714 +a(g209711 +g209713 +S'passenger' +p209715 +tp209716 +a(g209713 +g209715 +S'ferry.' +p209717 +tp209718 +a(g209715 +g209717 +S'from' +p209719 +tp209720 +a(g209717 +g209719 +S'this' +p209721 +tp209722 +a(g209719 +g209721 +S'foreground' +p209723 +tp209724 +a(g209721 +g209723 +S'focus,' +p209725 +tp209726 +a(g209723 +g209725 +S'a' +p209727 +tp209728 +a(g209725 +g209727 +S'row' +p209729 +tp209730 +a(g209727 +g209729 +S'of' +p209731 +tp209732 +a(g209729 +g209731 +S'larger' +p209733 +tp209734 +a(g209731 +g209733 +S'ships' +p209735 +tp209736 +a(g209733 +g209735 +S'moves' +p209737 +tp209738 +a(g209735 +g209737 +S'backward' +p209739 +tp209740 +a(g209737 +g209739 +S'over' +p209741 +tp209742 +a(g209739 +g209741 +S'the' +p209743 +tp209744 +a(g209741 +g209743 +S'choppy' +p209745 +tp209746 +a(g209743 +g209745 +S'waves' +p209747 +tp209748 +a(g209745 +g209747 +S'on' +p209749 +tp209750 +a(g209747 +g209749 +S'a' +p209751 +tp209752 +a(g209749 +g209751 +S'diagonal' +p209753 +tp209754 +a(g209751 +g209753 +S'line,' +p209755 +tp209756 +a(g209753 +g209755 +S'generating' +p209757 +tp209758 +a(g209755 +g209757 +S'a' +p209759 +tp209760 +a(g209757 +g209759 +S'remarkable' +p209761 +tp209762 +a(g209759 +g209761 +S'illusion' +p209763 +tp209764 +a(g209761 +g209763 +S'of' +p209765 +tp209766 +a(g209763 +g209765 +S'depth.' +p209767 +tp209768 +a(g209765 +g209767 +S'the' +p209769 +tp209770 +a(g209767 +g209769 +S'warship’s' +p209771 +tp209772 +a(g209769 +g209771 +S'dutch' +p209773 +tp209774 +a(g209771 +g209773 +S'flags' +p209775 +tp209776 +a(g209773 +g209775 +S'and' +p209777 +tp209778 +a(g209775 +g209777 +S'the' +p209779 +tp209780 +a(g209777 +g209779 +S'skyline' +p209781 +tp209782 +a(g209779 +g209781 +S'of' +p209783 +tp209784 +a(g209781 +g209783 +S'rotterdam' +p209785 +tp209786 +a(g209783 +g209785 +S'pay' +p209787 +tp209788 +a(g209785 +g209787 +S'tribute' +p209789 +tp209790 +a(g209787 +g209789 +S'to' +p209791 +tp209792 +a(g209789 +g209791 +S'turner’s' +p209793 +tp209794 +a(g209791 +g209793 +S'predecessors,' +p209795 +tp209796 +a(g209793 +g209795 +S'the' +p209797 +tp209798 +a(g209795 +g209797 +S'marine' +p209799 +tp209800 +a(g209797 +g209799 +S'painters' +p209801 +tp209802 +a(g209799 +g209801 +S'of' +p209803 +tp209804 +a(g209801 +g209803 +S'seventeenth-century' +p209805 +tp209806 +a(g209803 +g209805 +S'holland.' +p209807 +tp209808 +a(g209805 +g209807 +S'in' +p209809 +tp209810 +a(g209807 +g209809 +S'particular,' +p209811 +tp209812 +a(g209809 +g209811 +S'the' +p209813 +tp209814 +a(g209811 +g209813 +S'low' +p209815 +tp209816 +a(g209813 +g209815 +S'horizon' +p209817 +tp209818 +a(g209815 +g209817 +S'and' +p209819 +tp209820 +a(g209817 +g209819 +S'cloud-swept' +p209821 +tp209822 +a(g209819 +g209821 +S'vista' +p209823 +tp209824 +a(g209821 +g209823 +S'derive' +p209825 +tp209826 +a(g209823 +g209825 +S'from' +p209827 +tp209828 +a(g209825 +g209827 +S'harbor' +p209829 +tp209830 +a(g209827 +g209829 +S'scenes' +p209831 +tp209832 +a(g209829 +g209831 +S'by' +p209833 +tp209834 +a(g209831 +g209833 +S'ailsa' +p209837 +tp209838 +a(g209835 +g209837 +S'mellon' +p209839 +tp209840 +a(g209837 +g209839 +S'bruce' +p209841 +tp209842 +a(g209839 +g209841 +S'the' +p209843 +tp209844 +a(g209841 +g209843 +S'hungarian-born' +p209845 +tp209846 +a(g209843 +g209845 +S'painter' +p209847 +tp209848 +a(g209845 +g209847 +S'philip' +p209849 +tp209850 +a(g209847 +g209849 +S'alexius' +p209851 +tp209852 +a(g209849 +g209851 +S'lászló' +p209853 +tp209854 +a(g209851 +g209853 +S'de' +p209855 +tp209856 +a(g209853 +g209855 +S'lombos' +p209857 +tp209858 +a(g209855 +g209857 +S'gained' +p209859 +tp209860 +a(g209857 +g209859 +S'international' +p209861 +tp209862 +a(g209859 +g209861 +S'acclaim' +p209863 +tp209864 +a(g209861 +g209863 +S'for' +p209865 +tp209866 +a(g209863 +g209865 +S'just' +p209867 +tp209868 +a(g209865 +g209867 +S'such' +p209869 +tp209870 +a(g209867 +g209869 +S'fashionable' +p209871 +tp209872 +a(g209869 +g209871 +S'images' +p209873 +tp209874 +a(g209871 +g209873 +S'as' +p209875 +tp209876 +a(g209873 +g209875 +S'ailsa' +p209877 +tp209878 +a(g209875 +g209877 +S'mellon' +p209879 +tp209880 +a(g209877 +g209879 +S"bruce's" +p209881 +tp209882 +a(g209879 +g209881 +S'elegant' +p209883 +tp209884 +a(g209881 +g209883 +S'portrait,' +p209885 +tp209886 +a(g209883 +g209885 +S'done' +p209887 +tp209888 +a(g209885 +g209887 +S'in' +p209889 +tp209890 +a(g209887 +g209889 +S'the' +p209891 +tp209892 +a(g209889 +g209891 +S'year' +p209893 +tp209894 +a(g209891 +g209893 +S'of' +p209895 +tp209896 +a(g209893 +g209895 +S'her' +p209897 +tp209898 +a(g209895 +g209897 +S'wedding.' +p209899 +tp209900 +a(g209897 +g209899 +S'the' +p209901 +tp209902 +a(g209899 +g209901 +S'poet' +p209903 +tp209904 +a(g209901 +g209903 +S'and' +p209905 +tp209906 +a(g209903 +g209905 +S'art' +p209907 +tp209908 +a(g209905 +g209907 +S'historian' +p209909 +tp209910 +a(g209907 +g209909 +S'antony' +p209911 +tp209912 +a(g209909 +g209911 +S'valabrègue,' +p209913 +tp209914 +a(g209911 +g209913 +S'who' +p209915 +tp209916 +a(g209913 +g209915 +S'grew' +p209917 +tp209918 +a(g209915 +g209917 +S'up' +p209919 +tp209920 +a(g209917 +g209919 +S'with' +p209921 +tp209922 +a(g209919 +g209921 +S'cézanne' +p209923 +tp209924 +a(g209921 +g209923 +S'in' +p209925 +tp209926 +a(g209923 +g209925 +S'aix-en-provence,' +p209927 +tp209928 +a(g209925 +g209927 +S'sat' +p209929 +tp209930 +a(g209927 +g209929 +S'for' +p209931 +tp209932 +a(g209929 +g209931 +S'the' +p209933 +tp209934 +a(g209931 +g209933 +S'young' +p209935 +tp209936 +a(g209933 +g209935 +S'artist' +p209937 +tp209938 +a(g209935 +g209937 +S'several' +p209939 +tp209940 +a(g209937 +g209939 +S'times' +p209941 +tp209942 +a(g209939 +g209941 +S'in' +p209943 +tp209944 +a(g209941 +g209943 +S'the' +p209945 +tp209946 +a(g209943 +g209945 +S'1860s.' +p209947 +tp209948 +a(g209945 +g209947 +S'cézanne,' +p209949 +tp209950 +a(g209947 +g209949 +S'working' +p209951 +tp209952 +a(g209949 +g209951 +S'diligently' +p209953 +tp209954 +a(g209951 +g209953 +S'to' +p209955 +tp209956 +a(g209953 +g209955 +S'find' +p209957 +tp209958 +a(g209955 +g209957 +S'his' +p209959 +tp209960 +a(g209957 +g209959 +S'artistic' +p209961 +tp209962 +a(g209959 +g209961 +S'voice' +p209963 +tp209964 +a(g209961 +g209963 +S'in' +p209965 +tp209966 +a(g209963 +g209965 +S'the' +p209967 +tp209968 +a(g209965 +g209967 +S'first' +p209969 +tp209970 +a(g209967 +g209969 +S'decade' +p209971 +tp209972 +a(g209969 +g209971 +S'of' +p209973 +tp209974 +a(g209971 +g209973 +S'his' +p209975 +tp209976 +a(g209973 +g209975 +S'career,' +p209977 +tp209978 +a(g209975 +g209977 +S'often' +p209979 +tp209980 +a(g209977 +g209979 +S'prevailed' +p209981 +tp209982 +a(g209979 +g209981 +S'upon' +p209983 +tp209984 +a(g209981 +g209983 +S'friends' +p209985 +tp209986 +a(g209983 +g209985 +S'and' +p209987 +tp209988 +a(g209985 +g209987 +S'relatives' +p209989 +tp209990 +a(g209987 +g209989 +S'(including' +p209991 +tp209992 +a(g209989 +g209991 +S'his' +p209993 +tp209994 +a(g209991 +g209993 +S'father)' +p209995 +tp209996 +a(g209993 +g209995 +S'to' +p209997 +tp209998 +a(g209995 +g209997 +S'act' +p209999 +tp210000 +a(g209997 +g209999 +S'as' +p210001 +tp210002 +a(g209999 +g210001 +S'models' +p210003 +tp210004 +a(g210001 +g210003 +S'in' +p210005 +tp210006 +a(g210003 +g210005 +S'his' +p210007 +tp210008 +a(g210005 +g210007 +S'studio' +p210009 +tp210010 +a(g210007 +g210009 +S'on' +p210011 +tp210012 +a(g210009 +g210011 +S'the' +p210013 +tp210014 +a(g210011 +g210013 +S'family' +p210015 +tp210016 +a(g210013 +g210015 +S'estate.' +p210017 +tp210018 +a(g210015 +g210017 +S'the' +p210019 +tp210020 +a(g210017 +g210019 +S'format' +p210021 +tp210022 +a(g210019 +g210021 +S'cézanne' +p210023 +tp210024 +a(g210021 +g210023 +S'chose' +p210025 +tp210026 +a(g210023 +g210025 +S'for' +p210027 +tp210028 +a(g210025 +g210027 +S'valabrègue\xe2\x80\x99s' +p210029 +tp210030 +a(g210027 +g210029 +S'likeness—a' +p210031 +tp210032 +a(g210029 +g210031 +S'three-quarter-length' +p210033 +tp210034 +a(g210031 +g210033 +S'figure' +p210035 +tp210036 +a(g210033 +g210035 +S'with' +p210037 +tp210038 +a(g210035 +g210037 +S'face' +p210039 +tp210040 +a(g210037 +g210039 +S'turned' +p210041 +tp210042 +a(g210039 +g210041 +S'slightly' +p210043 +tp210044 +a(g210041 +g210043 +S'to' +p210045 +tp210046 +a(g210043 +g210045 +S'the' +p210047 +tp210048 +a(g210045 +g210047 +S'side,' +p210049 +tp210050 +a(g210047 +g210049 +S'and' +p210051 +tp210052 +a(g210049 +g210051 +S'a' +p210053 +tp210054 +a(g210051 +g210053 +S'plain' +p210055 +tp210056 +a(g210053 +g210055 +S'backdrop—was' +p210057 +tp210058 +a(g210055 +g210057 +S'fairly' +p210059 +tp210060 +a(g210057 +g210059 +S'conventional:' +p210061 +tp210062 +a(g210059 +g210061 +S'it' +p210063 +tp210064 +a(g210061 +g210063 +S'had' +p210065 +tp210066 +a(g210063 +g210065 +S'been' +p210067 +tp210068 +a(g210065 +g210067 +S'employed' +p210069 +tp210070 +a(g210067 +g210069 +S'in' +p210071 +tp210072 +a(g210069 +g210071 +S'portraiture' +p210073 +tp210074 +a(g210071 +g210073 +S'since' +p210075 +tp210076 +a(g210073 +g210075 +S'the' +p210077 +tp210078 +a(g210075 +g210077 +S'renaissance.' +p210079 +tp210080 +a(g210077 +g210079 +S'but' +p210081 +tp210082 +a(g210079 +g210081 +S'he' +p210083 +tp210084 +a(g210081 +g210083 +S'executed' +p210085 +tp210086 +a(g210083 +g210085 +S'this' +p210087 +tp210088 +a(g210085 +g210087 +S'traditional' +p210089 +tp210090 +a(g210087 +g210089 +S'subject' +p210091 +tp210092 +a(g210089 +g210091 +S'in' +p210093 +tp210094 +a(g210091 +g210093 +S'a' +p210095 +tp210096 +a(g210093 +g210095 +S'wholly' +p210097 +tp210098 +a(g210095 +g210097 +S'radical' +p210099 +tp210100 +a(g210097 +g210099 +S'manner,' +p210101 +tp210102 +a(g210099 +g210101 +S'eschewing' +p210103 +tp210104 +a(g210101 +g210103 +S'the' +p210105 +tp210106 +a(g210103 +g210105 +S'precise' +p210107 +tp210108 +a(g210105 +g210107 +S'delineation' +p210109 +tp210110 +a(g210107 +g210109 +S'of' +p210111 +tp210112 +a(g210109 +g210111 +S'form' +p210113 +tp210114 +a(g210111 +g210113 +S'(as' +p210115 +tp210116 +a(g210113 +g210115 +S'seen' +p210117 +tp210118 +a(g210115 +g210117 +S'especially' +p210119 +tp210120 +a(g210117 +g210119 +S'along' +p210121 +tp210122 +a(g210119 +g210121 +S'the' +p210123 +tp210124 +a(g210121 +g210123 +S'edges' +p210125 +tp210126 +a(g210123 +g210125 +S'of' +p210127 +tp210128 +a(g210125 +g210127 +S'the' +p210129 +tp210130 +a(g210127 +g210129 +S'coat,' +p210131 +tp210132 +a(g210129 +g210131 +S'where' +p210133 +tp210134 +a(g210131 +g210133 +S'black' +p210135 +tp210136 +a(g210133 +g210135 +S'pigment' +p210137 +tp210138 +a(g210135 +g210137 +S'spills' +p210139 +tp210140 +a(g210137 +g210139 +S'onto' +p210141 +tp210142 +a(g210139 +g210141 +S'the' +p210143 +tp210144 +a(g210141 +g210143 +S'gray' +p210145 +tp210146 +a(g210143 +g210145 +S'of' +p210147 +tp210148 +a(g210145 +g210147 +S'the' +p210149 +tp210150 +a(g210147 +g210149 +S'background).' +p210151 +tp210152 +a(g210149 +g210151 +S'even' +p210153 +tp210154 +a(g210151 +g210153 +S'more' +p210155 +tp210156 +a(g210153 +g210155 +S'strikingly,' +p210157 +tp210158 +a(g210155 +g210157 +S'he' +p210159 +tp210160 +a(g210157 +g210159 +S'used' +p210161 +tp210162 +a(g210159 +g210161 +S'a' +p210163 +tp210164 +a(g210161 +g210163 +S'palette' +p210165 +tp210166 +a(g210163 +g210165 +S'knife' +p210167 +tp210168 +a(g210165 +g210167 +S'to' +p210169 +tp210170 +a(g210167 +g210169 +S'apply' +p210171 +tp210172 +a(g210169 +g210171 +S'thick' +p210173 +tp210174 +a(g210171 +g210173 +S'layers' +p210175 +tp210176 +a(g210173 +g210175 +S'of' +p210177 +tp210178 +a(g210175 +g210177 +S'pigment.' +p210179 +tp210180 +a(g210177 +g210179 +S'gustave' +p210181 +tp210182 +a(g210179 +g210181 +S'courbet,' +p210183 +tp210184 +a(g210181 +g210183 +S'whose' +p210185 +tp210186 +a(g210183 +g210185 +S'work' +p210187 +tp210188 +a(g210185 +g210187 +S'cézanne' +p210189 +tp210190 +a(g210187 +g210189 +S'admired' +p210191 +tp210192 +a(g210189 +g210191 +S'on' +p210193 +tp210194 +a(g210191 +g210193 +S'his' +p210195 +tp210196 +a(g210193 +g210195 +S'sojourns' +p210197 +tp210198 +a(g210195 +g210197 +S'in' +p210199 +tp210200 +a(g210197 +g210199 +S'paris,' +p210201 +tp210202 +a(g210199 +g210201 +S'had' +p210203 +tp210204 +a(g210201 +g210203 +S'been' +p210205 +tp210206 +a(g210203 +g210205 +S'painting' +p210207 +tp210208 +a(g210205 +g210207 +S'with' +p210209 +tp210210 +a(g210207 +g210209 +S'a' +p210211 +tp210212 +a(g210209 +g210211 +S'palette' +p210213 +tp210214 +a(g210211 +g210213 +S'knife' +p210215 +tp210216 +a(g210213 +g210215 +S'since' +p210217 +tp210218 +a(g210215 +g210217 +S'the' +p210219 +tp210220 +a(g210217 +g210219 +S'1850s.' +p210221 +tp210222 +a(g210219 +g210221 +S'but' +p210223 +tp210224 +a(g210221 +g210223 +S'the' +p210225 +tp210226 +a(g210223 +g210225 +S'technique' +p210227 +tp210228 +a(g210225 +g210227 +S'was' +p210229 +tp210230 +a(g210227 +g210229 +S'still' +p210231 +tp210232 +a(g210229 +g210231 +S'highly' +p210233 +tp210234 +a(g210231 +g210233 +S'unorthodox' +p210235 +tp210236 +a(g210233 +g210235 +S'when' +p210237 +tp210238 +a(g210235 +g210237 +S'cézanne' +p210239 +tp210240 +a(g210237 +g210239 +S'adopted' +p210241 +tp210242 +a(g210239 +g210241 +S'it' +p210243 +tp210244 +a(g210241 +g210243 +S'in' +p210245 +tp210246 +a(g210243 +g210245 +S'1866' +p210247 +tp210248 +a(g210245 +g210247 +S'to' +p210249 +tp210250 +a(g210247 +g210249 +S'create' +p210251 +tp210252 +a(g210249 +g210251 +S'a' +p210253 +tp210254 +a(g210251 +g210253 +S'dramatic' +p210255 +tp210256 +a(g210253 +g210255 +S'series' +p210257 +tp210258 +a(g210255 +g210257 +S'of' +p210259 +tp210260 +a(g210257 +g210259 +S'still' +p210261 +tp210262 +a(g210259 +g210261 +S'lifes' +p210263 +tp210264 +a(g210261 +g210263 +S'and' +p210265 +tp210266 +a(g210263 +g210265 +S'portraits.' +p210267 +tp210268 +a(g210265 +g210267 +S'a' +p210269 +tp210270 +a(g210267 +g210269 +S'blunt' +p210271 +tp210272 +a(g210269 +g210271 +S'instrument' +p210273 +tp210274 +a(g210271 +g210273 +S'normally' +p210275 +tp210276 +a(g210273 +g210275 +S'used' +p210277 +tp210278 +a(g210275 +g210277 +S'to' +p210279 +tp210280 +a(g210277 +g210279 +S'mix' +p210281 +tp210282 +a(g210279 +g210281 +S'paint,' +p210283 +tp210284 +a(g210281 +g210283 +S'the' +p210285 +tp210286 +a(g210283 +g210285 +S'palette' +p210287 +tp210288 +a(g210285 +g210287 +S'knife' +p210289 +tp210290 +a(g210287 +g210289 +S'delivers' +p210291 +tp210292 +a(g210289 +g210291 +S'broad' +p210293 +tp210294 +a(g210291 +g210293 +S'strokes' +p210295 +tp210296 +a(g210293 +g210295 +S'of' +p210297 +tp210298 +a(g210295 +g210297 +S'color' +p210299 +tp210300 +a(g210297 +g210299 +S'that' +p210301 +tp210302 +a(g210299 +g210301 +S'result' +p210303 +tp210304 +a(g210301 +g210303 +S'in' +p210305 +tp210306 +a(g210303 +g210305 +S'a' +p210307 +tp210308 +a(g210305 +g210307 +S'heavily' +p210309 +tp210310 +a(g210307 +g210309 +S'impastoed' +p210311 +tp210312 +a(g210309 +g210311 +S'surface.' +p210313 +tp210314 +a(g210311 +g210313 +S'courbet\xe2\x80\x99s' +p210315 +tp210316 +a(g210313 +g210315 +S'rough-hewn' +p210317 +tp210318 +a(g210315 +g210317 +S'style' +p210319 +tp210320 +a(g210317 +g210319 +S'had' +p210321 +tp210322 +a(g210319 +g210321 +S'shocked' +p210323 +tp210324 +a(g210321 +g210323 +S'mid-nineteenth-century' +p210325 +tp210326 +a(g210323 +g210325 +S'sensibilities,' +p210327 +tp210328 +a(g210325 +g210327 +S'but' +p210329 +tp210330 +a(g210327 +g210329 +S'cézanne' +p210331 +tp210332 +a(g210329 +g210331 +S'pursued' +p210333 +tp210334 +a(g210331 +g210333 +S'a' +p210335 +tp210336 +a(g210333 +g210335 +S'still' +p210337 +tp210338 +a(g210335 +g210337 +S'more' +p210339 +tp210340 +a(g210337 +g210339 +S'ferocious,' +p210341 +tp210342 +a(g210339 +g210341 +S'even' +p210343 +tp210344 +a(g210341 +g210343 +S'crude' +p210345 +tp210346 +a(g210343 +g210345 +S'effect,' +p210347 +tp210348 +a(g210345 +g210347 +S'a' +p210349 +tp210350 +a(g210347 +g210349 +S'style' +p210351 +tp210352 +a(g210349 +g210351 +S'the' +p210353 +tp210354 +a(g210351 +g210353 +S'artist' +p210355 +tp210356 +a(g210353 +g210355 +S'himself' +p210357 +tp210358 +a(g210355 +g210357 +S'termed' +p210359 +tp210360 +a(g210357 +g210359 +S'the' +p210361 +tp210362 +a(g210359 +g210361 +S'intentional' +p210363 +tp210364 +a(g210361 +g210363 +S'coarseness' +p210365 +tp210366 +a(g210363 +g210365 +S'of' +p210367 +tp210368 +a(g210365 +g210367 +S'this' +p210369 +tp210370 +a(g210367 +g210369 +S'early' +p210371 +tp210372 +a(g210369 +g210371 +S'style' +p210373 +tp210374 +a(g210371 +g210373 +S'contrasted' +p210375 +tp210376 +a(g210373 +g210375 +S'directly' +p210377 +tp210378 +a(g210375 +g210377 +S'with' +p210379 +tp210380 +a(g210377 +g210379 +S'the' +p210381 +tp210382 +a(g210379 +g210381 +S'polished' +p210383 +tp210384 +a(g210381 +g210383 +S'perfection' +p210385 +tp210386 +a(g210383 +g210385 +S'of' +p210387 +tp210388 +a(g210385 +g210387 +S'tightly' +p210389 +tp210390 +a(g210387 +g210389 +S'painted' +p210391 +tp210392 +a(g210389 +g210391 +S'canvases' +p210393 +tp210394 +a(g210391 +g210393 +S'then' +p210395 +tp210396 +a(g210393 +g210395 +S'in' +p210397 +tp210398 +a(g210395 +g210397 +S'favor' +p210399 +tp210400 +a(g210397 +g210399 +S'with' +p210401 +tp210402 +a(g210399 +g210401 +S'the' +p210403 +tp210404 +a(g210401 +g210403 +S'public' +p210405 +tp210406 +a(g210403 +g210405 +S'and' +p210407 +tp210408 +a(g210405 +g210407 +S'especially' +p210409 +tp210410 +a(g210407 +g210409 +S'with' +p210411 +tp210412 +a(g210409 +g210411 +S'juries' +p210413 +tp210414 +a(g210411 +g210413 +S'of' +p210415 +tp210416 +a(g210413 +g210415 +S'the' +p210417 +tp210418 +a(g210415 +g210417 +S'salon.' +p210419 +tp210420 +a(g210417 +g210419 +S'cézanne' +p210421 +tp210422 +a(g210419 +g210421 +S'signed' +p210423 +tp210424 +a(g210421 +g210423 +S'valabrègue\xe2\x80\x99s' +p210425 +tp210426 +a(g210423 +g210425 +S'portrait' +p210427 +tp210428 +a(g210425 +g210427 +S'prominently' +p210429 +tp210430 +a(g210427 +g210429 +S'and' +p210431 +tp210432 +a(g210429 +g210431 +S'submitted' +p210433 +tp210434 +a(g210431 +g210433 +S'it' +p210435 +tp210436 +a(g210433 +g210435 +S'to' +p210437 +tp210438 +a(g210435 +g210437 +S'the' +p210439 +tp210440 +a(g210437 +g210439 +S'salon' +p210441 +tp210442 +a(g210439 +g210441 +S'of' +p210443 +tp210444 +a(g210441 +g210443 +S'1866' +p210445 +tp210446 +a(g210443 +g210445 +S'with' +p210447 +tp210448 +a(g210445 +g210447 +S'the' +p210449 +tp210450 +a(g210447 +g210449 +S'anticipation' +p210451 +tp210452 +a(g210449 +g210451 +S'that' +p210453 +tp210454 +a(g210451 +g210453 +S'it' +p210455 +tp210456 +a(g210453 +g210455 +S'would' +p210457 +tp210458 +a(g210455 +g210457 +S'be' +p210459 +tp210460 +a(g210457 +g210459 +S'denied' +p210461 +tp210462 +a(g210459 +g210461 +S'entrance,' +p210463 +tp210464 +a(g210461 +g210463 +S'perhaps' +p210465 +tp210466 +a(g210463 +g210465 +S'keeping' +p210467 +tp210468 +a(g210465 +g210467 +S'in' +p210469 +tp210470 +a(g210467 +g210469 +S'mind' +p210471 +tp210472 +a(g210469 +g210471 +S'the' +p210473 +tp210474 +a(g210471 +g210473 +S'example' +p210475 +tp210476 +a(g210473 +g210475 +S'of' +p210477 +tp210478 +a(g210475 +g210477 +S'courbet,' +p210479 +tp210480 +a(g210477 +g210479 +S'whose' +p210481 +tp210482 +a(g210479 +g210481 +S'defiance' +p210483 +tp210484 +a(g210481 +g210483 +S'of' +p210485 +tp210486 +a(g210483 +g210485 +S'the' +p210487 +tp210488 +a(g210485 +g210487 +S'art' +p210489 +tp210490 +a(g210487 +g210489 +S'establishment' +p210491 +tp210492 +a(g210489 +g210491 +S'had' +p210493 +tp210494 +a(g210491 +g210493 +S'brought' +p210495 +tp210496 +a(g210493 +g210495 +S'him' +p210497 +tp210498 +a(g210495 +g210497 +S'notoriety' +p210499 +tp210500 +a(g210497 +g210499 +S'and' +p210501 +tp210502 +a(g210499 +g210501 +S'made' +p210503 +tp210504 +a(g210501 +g210503 +S'him' +p210505 +tp210506 +a(g210503 +g210505 +S'a' +p210507 +tp210508 +a(g210505 +g210507 +S'leader' +p210509 +tp210510 +a(g210507 +g210509 +S'of' +p210511 +tp210512 +a(g210509 +g210511 +S'the' +p210513 +tp210514 +a(g210511 +g210513 +S'avant-garde.' +p210515 +tp210516 +a(g210513 +g210515 +S'one' +p210517 +tp210518 +a(g210515 +g210517 +S'friend' +p210519 +tp210520 +a(g210517 +g210519 +S'wrote' +p210521 +tp210522 +a(g210519 +g210521 +S'about' +p210523 +tp210524 +a(g210521 +g210523 +S'cézanne\xe2\x80\x99s' +p210525 +tp210526 +a(g210523 +g210525 +S'eagerness' +p210527 +tp210528 +a(g210525 +g210527 +S'to' +p210529 +tp210530 +a(g210527 +g210529 +S'be' +p210531 +tp210532 +a(g210529 +g210531 +S'rejected,' +p210533 +tp210534 +a(g210531 +g210533 +S'stating' +p210535 +tp210536 +a(g210533 +g210535 +S'that' +p210537 +tp210538 +a(g210535 +g210537 +S'"the' +p210539 +tp210540 +a(g210537 +g210539 +S'painters' +p210541 +tp210542 +a(g210539 +g210541 +S'of' +p210543 +tp210544 +a(g210541 +g210543 +S'his' +p210545 +tp210546 +a(g210543 +g210545 +S'acquaintance' +p210547 +tp210548 +a(g210545 +g210547 +S'are' +p210549 +tp210550 +a(g210547 +g210549 +S'preparing' +p210551 +tp210552 +a(g210549 +g210551 +S'an' +p210553 +tp210554 +a(g210551 +g210553 +S'ovation' +p210555 +tp210556 +a(g210553 +g210555 +S'in' +p210557 +tp210558 +a(g210555 +g210557 +S'his' +p210559 +tp210560 +a(g210557 +g210559 +S'honor."' +p210561 +tp210562 +a(g210559 +g210561 +S'(text' +p210563 +tp210564 +a(g210561 +g210563 +S'by' +p210565 +tp210566 +a(g210563 +g210565 +S'margaret' +p210567 +tp210568 +a(g210565 +g210567 +S'doyle,' +p210569 +tp210570 +a(g210567 +g210569 +S'notes' +p210571 +tp210572 +a(g210569 +g210571 +S'robert' +p210573 +tp210574 +a(g210571 +g210573 +S'delaunay' +p210575 +tp210576 +a(g210573 +g210575 +S'had' +p210577 +tp210578 +a(g210575 +g210577 +S'little' +p210579 +tp210580 +a(g210577 +g210579 +S'artistic' +p210581 +tp210582 +a(g210579 +g210581 +S'training' +p210583 +tp210584 +a(g210581 +g210583 +S'beyond' +p210585 +tp210586 +a(g210583 +g210585 +S'an' +p210587 +tp210588 +a(g210585 +g210587 +S'apprenticeship' +p210589 +tp210590 +a(g210587 +g210589 +S'to' +p210591 +tp210592 +a(g210589 +g210591 +S'a' +p210593 +tp210594 +a(g210591 +g210593 +S'stage-set' +p210595 +tp210596 +a(g210593 +g210595 +S'designer.' +p210597 +tp210598 +a(g210595 +g210597 +S'he' +p210599 +tp210600 +a(g210597 +g210599 +S'studied' +p210601 +tp210602 +a(g210599 +g210601 +S'the' +p210603 +tp210604 +a(g210601 +g210603 +S'color' +p210605 +tp210606 +a(g210603 +g210605 +S'theories' +p210607 +tp210608 +a(g210605 +g210607 +S'of' +p210609 +tp210610 +a(g210607 +g210609 +S'the' +p210611 +tp210612 +a(g210609 +g210611 +S'french' +p210613 +tp210614 +a(g210611 +g210613 +S'chemist' +p210615 +tp210616 +a(g210613 +g210615 +S'michel-eugène' +p210617 +tp210618 +a(g210615 +g210617 +S'chevreul' +p210619 +tp210620 +a(g210617 +g210619 +S'and' +p210621 +tp210622 +a(g210619 +g210621 +S'how' +p210623 +tp210624 +a(g210621 +g210623 +S'the' +p210625 +tp210626 +a(g210623 +g210625 +S'neo-impressionists' +p210627 +tp210628 +a(g210625 +g210627 +S'applied' +p210629 +tp210630 +a(g210627 +g210629 +S'them' +p210631 +tp210632 +a(g210629 +g210631 +S'to' +p210633 +tp210634 +a(g210631 +g210633 +S'painting.' +p210635 +tp210636 +a(g210633 +g210635 +S'he' +p210637 +tp210638 +a(g210635 +g210637 +S'is' +p210639 +tp210640 +a(g210637 +g210639 +S'best' +p210641 +tp210642 +a(g210639 +g210641 +S'known' +p210643 +tp210644 +a(g210641 +g210643 +S'for' +p210645 +tp210646 +a(g210643 +g210645 +S'his' +p210647 +tp210648 +a(g210645 +g210647 +S'eiffel' +p210649 +tp210650 +a(g210647 +g210649 +S'tower' +p210651 +tp210652 +a(g210649 +g210651 +S'series' +p210653 +tp210654 +a(g210651 +g210653 +S'of' +p210655 +tp210656 +a(g210653 +g210655 +S'1909–1913,' +p210657 +tp210658 +a(g210655 +g210657 +S'his' +p210659 +tp210660 +a(g210657 +g210659 +S'windows' +p210661 +tp210662 +a(g210659 +g210661 +S'of' +p210663 +tp210664 +a(g210661 +g210663 +S'1912–1914,' +p210665 +tp210666 +a(g210663 +g210665 +S'and' +p210667 +tp210668 +a(g210665 +g210667 +S'his' +p210669 +tp210670 +a(g210667 +g210669 +S'circular' +p210671 +tp210672 +a(g210669 +g210671 +S'forms' +p210673 +tp210674 +a(g210671 +g210673 +S'of' +p210675 +tp210676 +a(g210673 +g210675 +S'1913,' +p210677 +tp210678 +a(g210675 +g210677 +S'which' +p210679 +tp210680 +a(g210677 +g210679 +S'paved' +p210681 +tp210682 +a(g210679 +g210681 +S'the' +p210683 +tp210684 +a(g210681 +g210683 +S'way' +p210685 +tp210686 +a(g210683 +g210685 +S'for' +p210687 +tp210688 +a(g210685 +g210687 +S'in' +p210689 +tp210690 +a(g210687 +g210689 +S'1912,' +p210691 +tp210692 +a(g210689 +g210691 +S'the' +p210693 +tp210694 +a(g210691 +g210693 +S'poet-critic' +p210695 +tp210696 +a(g210693 +g210695 +S'guillaume' +p210697 +tp210698 +a(g210695 +g210697 +S'apollinaire' +p210699 +tp210700 +a(g210697 +g210699 +S'praised' +p210701 +tp210702 +a(g210699 +g210701 +S'delaunay' +p210703 +tp210704 +a(g210701 +g210703 +S'for' +p210705 +tp210706 +a(g210703 +g210705 +S'his' +p210707 +tp210708 +a(g210705 +g210707 +S'painting' +p210709 +tp210710 +a(g210707 +g210709 +S'what' +p210711 +tp210712 +a(g210709 +g210711 +S'delaunay' +p210713 +tp210714 +a(g210711 +g210713 +S'had' +p210715 +tp210716 +a(g210713 +g210715 +S'to' +p210717 +tp210718 +a(g210715 +g210717 +S'say' +p210719 +tp210720 +a(g210717 +g210719 +S'of' +p210721 +tp210722 +a(g210719 +g210721 +S'his' +p210723 +tp210724 +a(g210721 +g210723 +S'tondo' +p210725 +tp210726 +a(g210723 +g210725 +S'the' +p210727 +tp210728 +a(g210725 +g210727 +S'source' +p210729 +tp210730 +a(g210727 +g210729 +S'is' +p210731 +tp210732 +a(g210729 +g210731 +S'a' +p210733 +tp210734 +a(g210731 +g210733 +S'newspaper' +p210735 +tp210736 +a(g210733 +g210735 +S'illustration' +p210737 +tp210738 +a(g210735 +g210737 +S'depicting' +p210739 +tp210740 +a(g210737 +g210739 +S'a' +p210741 +tp210742 +a(g210739 +g210741 +S'murder.' +p210743 +tp210744 +a(g210741 +g210743 +S'the' +p210745 +tp210746 +a(g210743 +g210745 +S'caption' +p210747 +tp210748 +a(g210745 +g210747 +S'to' +p210749 +tp210750 +a(g210747 +g210749 +S'the' +p210751 +tp210752 +a(g210749 +g210751 +S'illustration' +p210753 +tp210754 +a(g210751 +g210753 +S'reads:' +p210755 +tp210756 +a(g210753 +g210755 +S'"tragic' +p210757 +tp210758 +a(g210755 +g210757 +S'epilogue....the' +p210759 +tp210760 +a(g210757 +g210759 +S'wife' +p210761 +tp210762 +a(g210759 +g210761 +S'of' +p210763 +tp210764 +a(g210761 +g210763 +S'the' +p210765 +tp210766 +a(g210763 +g210765 +S'french' +p210767 +tp210768 +a(g210765 +g210767 +S'finance' +p210769 +tp210770 +a(g210767 +g210769 +S'minister' +p210771 +tp210772 +a(g210769 +g210771 +S'joseph' +p210773 +tp210774 +a(g210771 +g210773 +S'cailloux' +p210775 +tp210776 +a(g210773 +g210775 +S'shoots' +p210777 +tp210778 +a(g210775 +g210777 +S'dead' +p210779 +tp210780 +a(g210777 +g210779 +S'gaston' +p210781 +tp210782 +a(g210779 +g210781 +S'calmette' +p210783 +tp210784 +a(g210781 +g210783 +S'the' +p210785 +tp210786 +a(g210783 +g210785 +S'editor' +p210787 +tp210788 +a(g210785 +g210787 +S'of' +p210789 +tp210790 +a(g210787 +g210789 +S'delaunay' +p210791 +tp210792 +a(g210789 +g210791 +S'clearly' +p210793 +tp210794 +a(g210791 +g210793 +S'recognized' +p210795 +tp210796 +a(g210793 +g210795 +S'the' +p210797 +tp210798 +a(g210795 +g210797 +S'power' +p210799 +tp210800 +a(g210797 +g210799 +S'of' +p210801 +tp210802 +a(g210799 +g210801 +S'concentrically' +p210803 +tp210804 +a(g210801 +g210803 +S'arranged' +p210805 +tp210806 +a(g210803 +g210805 +S'colored' +p210807 +tp210808 +a(g210805 +g210807 +S'forms,' +p210809 +tp210810 +a(g210807 +g210809 +S'something' +p210811 +tp210812 +a(g210809 +g210811 +S'that' +p210813 +tp210814 +a(g210811 +g210813 +S'would' +p210815 +tp210816 +a(g210813 +g210815 +S'be' +p210817 +tp210818 +a(g210815 +g210817 +S'fully' +p210819 +tp210820 +a(g210817 +g210819 +S'exploited' +p210821 +tp210822 +a(g210819 +g210821 +S'again' +p210823 +tp210824 +a(g210821 +g210823 +S'only' +p210825 +tp210826 +a(g210823 +g210825 +S'some' +p210827 +tp210828 +a(g210825 +g210827 +S'50' +p210829 +tp210830 +a(g210827 +g210829 +S'years' +p210831 +tp210832 +a(g210829 +g210831 +S'later' +p210833 +tp210834 +a(g210831 +g210833 +S'in' +p210835 +tp210836 +a(g210833 +g210835 +S'the' +p210837 +tp210838 +a(g210835 +g210837 +S'"target"' +p210839 +tp210840 +a(g210837 +g210839 +S'paintings' +p210841 +tp210842 +a(g210839 +g210841 +S'of' +p210843 +tp210844 +a(g210841 +g210843 +S'jasper' +p210845 +tp210846 +a(g210843 +g210845 +S'johns' +p210847 +tp210848 +a(g210845 +g210847 +S'and' +p210849 +tp210850 +a(g210847 +g210849 +S'kenneth' +p210851 +tp210852 +a(g210849 +g210851 +S'noland' +p210853 +tp210854 +a(g210851 +g210853 +S'and' +p210855 +tp210856 +a(g210853 +g210855 +S'the' +p210857 +tp210858 +a(g210855 +g210857 +S'concentric' +p210859 +tp210860 +a(g210857 +g210859 +S'stripe' +p210861 +tp210862 +a(g210859 +g210861 +S'paintings' +p210863 +tp210864 +a(g210861 +g210863 +S'of' +p210865 +tp210866 +a(g210863 +g210865 +S'frank' +p210867 +tp210868 +a(g210865 +g210867 +S'stella.' +p210869 +tp210870 +a(g210867 +g210869 +S'however,' +p210871 +tp210872 +a(g210869 +g210871 +S'unlike' +p210873 +tp210874 +a(g210871 +g210873 +S'delaunay' +p210875 +tp210876 +a(g210873 +g210875 +S'in' +p210877 +tp210878 +a(g210875 +g210877 +S'1.' +p210879 +tp210880 +a(g210877 +g210879 +S'robert' +p210881 +tp210882 +a(g210879 +g210881 +S"delaunay's" +p210883 +tp210884 +a(g210881 +g210883 +S'summaries' +p210885 +tp210886 +a(g210883 +g210885 +S'from' +p210887 +tp210888 +a(g210885 +g210887 +S'discussion' +p210889 +tp210890 +a(g210887 +g210889 +S'groups' +p210891 +tp210892 +a(g210889 +g210891 +S'he' +p210893 +tp210894 +a(g210891 +g210893 +S'held' +p210895 +tp210896 +a(g210893 +g210895 +S'in' +p210897 +tp210898 +a(g210895 +g210897 +S'1938' +p210899 +tp210900 +a(g210897 +g210899 +S'and' +p210901 +tp210902 +a(g210899 +g210901 +S'1939,' +p210903 +tp210904 +a(g210901 +g210903 +S'cited' +p210905 +tp210906 +a(g210903 +g210905 +S'in' +p210907 +tp210908 +a(g210905 +g210907 +S'arthur' +p210909 +tp210910 +a(g210907 +g210909 +S'a.' +p210911 +tp210912 +a(g210909 +g210911 +S'cohen,' +p210913 +tp210914 +a(g210911 +g210913 +S'ed.,' +p210915 +tp210916 +a(g210913 +g210915 +S'2.' +p210917 +tp210918 +a(g210915 +g210917 +S'the' +p210919 +tp210920 +a(g210917 +g210919 +S"man's" +p210921 +tp210922 +a(g210919 +g210921 +S'jacket' +p210923 +tp210924 +a(g210921 +g210923 +S'and' +p210925 +tp210926 +a(g210923 +g210925 +S'head,' +p210927 +tp210928 +a(g210925 +g210927 +S'the' +p210929 +tp210930 +a(g210927 +g210929 +S"woman's" +p210931 +tp210932 +a(g210929 +g210931 +S'jacket' +p210933 +tp210934 +a(g210931 +g210933 +S'and' +p210935 +tp210936 +a(g210933 +g210935 +S'muff,' +p210937 +tp210938 +a(g210935 +g210937 +S'and' +p210939 +tp210940 +a(g210937 +g210939 +S'the' +p210941 +tp210942 +a(g210939 +g210941 +S'four' +p210943 +tp210944 +a(g210941 +g210943 +S'quadrants' +p210945 +tp210946 +a(g210943 +g210945 +S'of' +p210947 +tp210948 +a(g210945 +g210947 +S'the' +p210949 +tp210950 +a(g210947 +g210949 +S'central' +p210951 +tp210952 +a(g210949 +g210951 +S'circle,' +p210953 +tp210954 +a(g210951 +g210953 +S'now' +p210955 +tp210956 +a(g210953 +g210955 +S'faded,' +p210957 +tp210958 +a(g210955 +g210957 +S'are' +p210959 +tp210960 +a(g210957 +g210959 +S'all' +p210961 +tp210962 +a(g210959 +g210961 +S'cut-and-pasted' +p210963 +tp210964 +a(g210961 +g210963 +S'paper' +p210965 +tp210966 +a(g210963 +g210965 +S'elements.' +p210967 +tp210968 +a(g210965 +g210967 +S"cole's" +p210969 +tp210970 +a(g210967 +g210969 +S'renowned' +p210971 +tp210972 +a(g210969 +g210971 +S'four–part' +p210973 +tp210974 +a(g210971 +g210973 +S'series' +p210975 +tp210976 +a(g210973 +g210975 +S'traces' +p210977 +tp210978 +a(g210975 +g210977 +S'the' +p210979 +tp210980 +a(g210977 +g210979 +S'journey' +p210981 +tp210982 +a(g210979 +g210981 +S'of' +p210983 +tp210984 +a(g210981 +g210983 +S'an' +p210985 +tp210986 +a(g210983 +g210985 +S'archetypal' +p210987 +tp210988 +a(g210985 +g210987 +S'hero' +p210989 +tp210990 +a(g210987 +g210989 +S'along' +p210991 +tp210992 +a(g210989 +g210991 +S'the' +p210993 +tp210994 +a(g210991 +g210993 +S'"river' +p210995 +tp210996 +a(g210993 +g210995 +S'of' +p210997 +tp210998 +a(g210995 +g210997 +S'life."' +p210999 +tp211000 +a(g210997 +g210999 +S'confidently' +p211001 +tp211002 +a(g210999 +g211001 +S'assuming' +p211003 +tp211004 +a(g211001 +g211003 +S'control' +p211005 +tp211006 +a(g211003 +g211005 +S'of' +p211007 +tp211008 +a(g211005 +g211007 +S'his' +p211009 +tp211010 +a(g211007 +g211009 +S'destiny' +p211011 +tp211012 +a(g211009 +g211011 +S'and' +p211013 +tp211014 +a(g211011 +g211013 +S'oblivious' +p211015 +tp211016 +a(g211013 +g211015 +S'to' +p211017 +tp211018 +a(g211015 +g211017 +S'the' +p211019 +tp211020 +a(g211017 +g211019 +S'dangers' +p211021 +tp211022 +a(g211019 +g211021 +S'that' +p211023 +tp211024 +a(g211021 +g211023 +S'await' +p211025 +tp211026 +a(g211023 +g211025 +S'him,' +p211027 +tp211028 +a(g211025 +g211027 +S'the' +p211029 +tp211030 +a(g211027 +g211029 +S'voyager' +p211031 +tp211032 +a(g211029 +g211031 +S'boldly' +p211033 +tp211034 +a(g211031 +g211033 +S'strives' +p211035 +tp211036 +a(g211033 +g211035 +S'to' +p211037 +tp211038 +a(g211035 +g211037 +S'reach' +p211039 +tp211040 +a(g211037 +g211039 +S'an' +p211041 +tp211042 +a(g211039 +g211041 +S'aerial' +p211043 +tp211044 +a(g211041 +g211043 +S'castle,' +p211045 +tp211046 +a(g211043 +g211045 +S'emblematic' +p211047 +tp211048 +a(g211045 +g211047 +S'of' +p211049 +tp211050 +a(g211047 +g211049 +S'the' +p211051 +tp211052 +a(g211049 +g211051 +S'daydreams' +p211053 +tp211054 +a(g211051 +g211053 +S'of' +p211055 +tp211056 +a(g211053 +g211055 +S'"youth"' +p211057 +tp211058 +a(g211055 +g211057 +S'and' +p211059 +tp211060 +a(g211057 +g211059 +S'its' +p211061 +tp211062 +a(g211059 +g211061 +S'aspirations' +p211063 +tp211064 +a(g211061 +g211063 +S'for' +p211065 +tp211066 +a(g211063 +g211065 +S'glory' +p211067 +tp211068 +a(g211065 +g211067 +S'and' +p211069 +tp211070 +a(g211067 +g211069 +S'fame.' +p211071 +tp211072 +a(g211069 +g211071 +S'as' +p211073 +tp211074 +a(g211071 +g211073 +S'the' +p211075 +tp211076 +a(g211073 +g211075 +S'traveler' +p211077 +tp211078 +a(g211075 +g211077 +S'approaches' +p211079 +tp211080 +a(g211077 +g211079 +S'his' +p211081 +tp211082 +a(g211079 +g211081 +S'goal,' +p211083 +tp211084 +a(g211081 +g211083 +S'the' +p211085 +tp211086 +a(g211083 +g211085 +S'ever–more–turbulent' +p211087 +tp211088 +a(g211085 +g211087 +S'stream' +p211089 +tp211090 +a(g211087 +g211089 +S'deviates' +p211091 +tp211092 +a(g211089 +g211091 +S'from' +p211093 +tp211094 +a(g211091 +g211093 +S'its' +p211095 +tp211096 +a(g211093 +g211095 +S'course' +p211097 +tp211098 +a(g211095 +g211097 +S'and' +p211099 +tp211100 +a(g211097 +g211099 +S'relentlessly' +p211101 +tp211102 +a(g211099 +g211101 +S'carries' +p211103 +tp211104 +a(g211101 +g211103 +S'him' +p211105 +tp211106 +a(g211103 +g211105 +S'toward' +p211107 +tp211108 +a(g211105 +g211107 +S'the' +p211109 +tp211110 +a(g211107 +g211109 +S'next' +p211111 +tp211112 +a(g211109 +g211111 +S'picture' +p211113 +tp211114 +a(g211111 +g211113 +S'in' +p211115 +tp211116 +a(g211113 +g211115 +S'the' +p211117 +tp211118 +a(g211115 +g211117 +S'series,' +p211119 +tp211120 +a(g211117 +g211119 +S'where' +p211121 +tp211122 +a(g211119 +g211121 +S"nature's" +p211123 +tp211124 +a(g211121 +g211123 +S'fury,' +p211125 +tp211126 +a(g211123 +g211125 +S'evil' +p211127 +tp211128 +a(g211125 +g211127 +S'demons,' +p211129 +tp211130 +a(g211127 +g211129 +S'and' +p211131 +tp211132 +a(g211129 +g211131 +S'self–doubt' +p211133 +tp211134 +a(g211131 +g211133 +S'will' +p211135 +tp211136 +a(g211133 +g211135 +S'threaten' +p211137 +tp211138 +a(g211135 +g211137 +S'his' +p211139 +tp211140 +a(g211137 +g211139 +S'very' +p211141 +tp211142 +a(g211139 +g211141 +S'existence.' +p211143 +tp211144 +a(g211141 +g211143 +S'only' +p211145 +tp211146 +a(g211143 +g211145 +S'prayer,' +p211147 +tp211148 +a(g211145 +g211147 +S'cole' +p211149 +tp211150 +a(g211147 +g211149 +S'suggests,' +p211151 +tp211152 +a(g211149 +g211151 +S'can' +p211153 +tp211154 +a(g211151 +g211153 +S'save' +p211155 +tp211156 +a(g211153 +g211155 +S'the' +p211157 +tp211158 +a(g211155 +g211157 +S'voyager' +p211159 +tp211160 +a(g211157 +g211159 +S'from' +p211161 +tp211162 +a(g211159 +g211161 +S'a' +p211163 +tp211164 +a(g211161 +g211163 +S'dark' +p211165 +tp211166 +a(g211163 +g211165 +S'and' +p211167 +tp211168 +a(g211165 +g211167 +S'tragic' +p211169 +tp211170 +a(g211167 +g211169 +S'fate.' +p211171 +tp211172 +a(g211169 +g211171 +S'from' +p211173 +tp211174 +a(g211171 +g211173 +S'the' +p211175 +tp211176 +a(g211173 +g211175 +S'innocence' +p211177 +tp211178 +a(g211175 +g211177 +S'of' +p211179 +tp211180 +a(g211177 +g211179 +S'childhood,' +p211181 +tp211182 +a(g211179 +g211181 +S'to' +p211183 +tp211184 +a(g211181 +g211183 +S'the' +p211185 +tp211186 +a(g211183 +g211185 +S'flush' +p211187 +tp211188 +a(g211185 +g211187 +S'of' +p211189 +tp211190 +a(g211187 +g211189 +S'youthful' +p211191 +tp211192 +a(g211189 +g211191 +S'overconfidence,' +p211193 +tp211194 +a(g211191 +g211193 +S'through' +p211195 +tp211196 +a(g211193 +g211195 +S'the' +p211197 +tp211198 +a(g211195 +g211197 +S'trials' +p211199 +tp211200 +a(g211197 +g211199 +S'and' +p211201 +tp211202 +a(g211199 +g211201 +S'tribulations' +p211203 +tp211204 +a(g211201 +g211203 +S'of' +p211205 +tp211206 +a(g211203 +g211205 +S'middle' +p211207 +tp211208 +a(g211205 +g211207 +S'age,' +p211209 +tp211210 +a(g211207 +g211209 +S'to' +p211211 +tp211212 +a(g211209 +g211211 +S'the' +p211213 +tp211214 +a(g211211 +g211213 +S"hero's" +p211215 +tp211216 +a(g211213 +g211215 +S'triumphant' +p211217 +tp211218 +a(g211215 +g211217 +S'salvation,' +p211219 +tp211220 +a(g211217 +g211219 +S"cole's" +p211221 +tp211222 +a(g211219 +g211221 +S'renowned' +p211223 +tp211224 +a(g211221 +g211223 +S'four-part' +p211225 +tp211226 +a(g211223 +g211225 +S'series' +p211227 +tp211228 +a(g211225 +g211227 +S'traces' +p211229 +tp211230 +a(g211227 +g211229 +S'the' +p211231 +tp211232 +a(g211229 +g211231 +S'journey' +p211233 +tp211234 +a(g211231 +g211233 +S'of' +p211235 +tp211236 +a(g211233 +g211235 +S'an' +p211237 +tp211238 +a(g211235 +g211237 +S'archetypal' +p211239 +tp211240 +a(g211237 +g211239 +S'hero' +p211241 +tp211242 +a(g211239 +g211241 +S'along' +p211243 +tp211244 +a(g211241 +g211243 +S'the' +p211245 +tp211246 +a(g211243 +g211245 +S'"river' +p211247 +tp211248 +a(g211245 +g211247 +S'of' +p211249 +tp211250 +a(g211247 +g211249 +S'life."' +p211251 +tp211252 +a(g211249 +g211251 +S'confidently' +p211253 +tp211254 +a(g211251 +g211253 +S'assuming' +p211255 +tp211256 +a(g211253 +g211255 +S'control' +p211257 +tp211258 +a(g211255 +g211257 +S'of' +p211259 +tp211260 +a(g211257 +g211259 +S'his' +p211261 +tp211262 +a(g211259 +g211261 +S'destiny' +p211263 +tp211264 +a(g211261 +g211263 +S'and' +p211265 +tp211266 +a(g211263 +g211265 +S'oblivious' +p211267 +tp211268 +a(g211265 +g211267 +S'to' +p211269 +tp211270 +a(g211267 +g211269 +S'the' +p211271 +tp211272 +a(g211269 +g211271 +S'dangers' +p211273 +tp211274 +a(g211271 +g211273 +S'that' +p211275 +tp211276 +a(g211273 +g211275 +S'await' +p211277 +tp211278 +a(g211275 +g211277 +S'him,' +p211279 +tp211280 +a(g211277 +g211279 +S'the' +p211281 +tp211282 +a(g211279 +g211281 +S'voyager' +p211283 +tp211284 +a(g211281 +g211283 +S'boldly' +p211285 +tp211286 +a(g211283 +g211285 +S'strives' +p211287 +tp211288 +a(g211285 +g211287 +S'to' +p211289 +tp211290 +a(g211287 +g211289 +S'reach' +p211291 +tp211292 +a(g211289 +g211291 +S'an' +p211293 +tp211294 +a(g211291 +g211293 +S'aerial' +p211295 +tp211296 +a(g211293 +g211295 +S'castle,' +p211297 +tp211298 +a(g211295 +g211297 +S'emblematic' +p211299 +tp211300 +a(g211297 +g211299 +S'of' +p211301 +tp211302 +a(g211299 +g211301 +S'the' +p211303 +tp211304 +a(g211301 +g211303 +S'daydreams' +p211305 +tp211306 +a(g211303 +g211305 +S'of' +p211307 +tp211308 +a(g211305 +g211307 +S'"youth"' +p211309 +tp211310 +a(g211307 +g211309 +S'and' +p211311 +tp211312 +a(g211309 +g211311 +S'its' +p211313 +tp211314 +a(g211311 +g211313 +S'aspirations' +p211315 +tp211316 +a(g211313 +g211315 +S'for' +p211317 +tp211318 +a(g211315 +g211317 +S'glory' +p211319 +tp211320 +a(g211317 +g211319 +S'and' +p211321 +tp211322 +a(g211319 +g211321 +S'fame.' +p211323 +tp211324 +a(g211321 +g211323 +S'as' +p211325 +tp211326 +a(g211323 +g211325 +S'the' +p211327 +tp211328 +a(g211325 +g211327 +S'traveler' +p211329 +tp211330 +a(g211327 +g211329 +S'approaches' +p211331 +tp211332 +a(g211329 +g211331 +S'his' +p211333 +tp211334 +a(g211331 +g211333 +S'goal,' +p211335 +tp211336 +a(g211333 +g211335 +S'the' +p211337 +tp211338 +a(g211335 +g211337 +S'ever-more-turbulent' +p211339 +tp211340 +a(g211337 +g211339 +S'stream' +p211341 +tp211342 +a(g211339 +g211341 +S'deviates' +p211343 +tp211344 +a(g211341 +g211343 +S'from' +p211345 +tp211346 +a(g211343 +g211345 +S'its' +p211347 +tp211348 +a(g211345 +g211347 +S'course' +p211349 +tp211350 +a(g211347 +g211349 +S'and' +p211351 +tp211352 +a(g211349 +g211351 +S'relentlessly' +p211353 +tp211354 +a(g211351 +g211353 +S'carries' +p211355 +tp211356 +a(g211353 +g211355 +S'him' +p211357 +tp211358 +a(g211355 +g211357 +S'toward' +p211359 +tp211360 +a(g211357 +g211359 +S'the' +p211361 +tp211362 +a(g211359 +g211361 +S'next' +p211363 +tp211364 +a(g211361 +g211363 +S'picture' +p211365 +tp211366 +a(g211363 +g211365 +S'in' +p211367 +tp211368 +a(g211365 +g211367 +S'the' +p211369 +tp211370 +a(g211367 +g211369 +S'series,' +p211371 +tp211372 +a(g211369 +g211371 +S'where' +p211373 +tp211374 +a(g211371 +g211373 +S"nature's" +p211375 +tp211376 +a(g211373 +g211375 +S'fury,' +p211377 +tp211378 +a(g211375 +g211377 +S'evil' +p211379 +tp211380 +a(g211377 +g211379 +S'demons,' +p211381 +tp211382 +a(g211379 +g211381 +S'and' +p211383 +tp211384 +a(g211381 +g211383 +S'self-doubt' +p211385 +tp211386 +a(g211383 +g211385 +S'will' +p211387 +tp211388 +a(g211385 +g211387 +S'threaten' +p211389 +tp211390 +a(g211387 +g211389 +S'his' +p211391 +tp211392 +a(g211389 +g211391 +S'very' +p211393 +tp211394 +a(g211391 +g211393 +S'existence.' +p211395 +tp211396 +a(g211393 +g211395 +S'only' +p211397 +tp211398 +a(g211395 +g211397 +S'prayer,' +p211399 +tp211400 +a(g211397 +g211399 +S'cole' +p211401 +tp211402 +a(g211399 +g211401 +S'suggests,' +p211403 +tp211404 +a(g211401 +g211403 +S'can' +p211405 +tp211406 +a(g211403 +g211405 +S'save' +p211407 +tp211408 +a(g211405 +g211407 +S'the' +p211409 +tp211410 +a(g211407 +g211409 +S'voyager' +p211411 +tp211412 +a(g211409 +g211411 +S'from' +p211413 +tp211414 +a(g211411 +g211413 +S'a' +p211415 +tp211416 +a(g211413 +g211415 +S'dark' +p211417 +tp211418 +a(g211415 +g211417 +S'and' +p211419 +tp211420 +a(g211417 +g211419 +S'tragic' +p211421 +tp211422 +a(g211419 +g211421 +S'fate.' +p211423 +tp211424 +a(g211421 +g211423 +S'from' +p211425 +tp211426 +a(g211423 +g211425 +S'the' +p211427 +tp211428 +a(g211425 +g211427 +S'innocence' +p211429 +tp211430 +a(g211427 +g211429 +S'of' +p211431 +tp211432 +a(g211429 +g211431 +S'childhood,' +p211433 +tp211434 +a(g211431 +g211433 +S'to' +p211435 +tp211436 +a(g211433 +g211435 +S'the' +p211437 +tp211438 +a(g211435 +g211437 +S'flush' +p211439 +tp211440 +a(g211437 +g211439 +S'of' +p211441 +tp211442 +a(g211439 +g211441 +S'youthful' +p211443 +tp211444 +a(g211441 +g211443 +S'overconfidence,' +p211445 +tp211446 +a(g211443 +g211445 +S'through' +p211447 +tp211448 +a(g211445 +g211447 +S'the' +p211449 +tp211450 +a(g211447 +g211449 +S'trials' +p211451 +tp211452 +a(g211449 +g211451 +S'and' +p211453 +tp211454 +a(g211451 +g211453 +S'tribulations' +p211455 +tp211456 +a(g211453 +g211455 +S'of' +p211457 +tp211458 +a(g211455 +g211457 +S'middle' +p211459 +tp211460 +a(g211457 +g211459 +S'age,' +p211461 +tp211462 +a(g211459 +g211461 +S'to' +p211463 +tp211464 +a(g211461 +g211463 +S'the' +p211465 +tp211466 +a(g211463 +g211465 +S"hero's" +p211467 +tp211468 +a(g211465 +g211467 +S'triumphant' +p211469 +tp211470 +a(g211467 +g211469 +S'salvation,' +p211471 +tp211472 +a(g211469 +g211471 +S"cole's" +p211473 +tp211474 +a(g211471 +g211473 +S'renowned' +p211475 +tp211476 +a(g211473 +g211475 +S'four-part' +p211477 +tp211478 +a(g211475 +g211477 +S'series' +p211479 +tp211480 +a(g211477 +g211479 +S'traces' +p211481 +tp211482 +a(g211479 +g211481 +S'the' +p211483 +tp211484 +a(g211481 +g211483 +S'journey' +p211485 +tp211486 +a(g211483 +g211485 +S'of' +p211487 +tp211488 +a(g211485 +g211487 +S'an' +p211489 +tp211490 +a(g211487 +g211489 +S'archetypal' +p211491 +tp211492 +a(g211489 +g211491 +S'hero' +p211493 +tp211494 +a(g211491 +g211493 +S'along' +p211495 +tp211496 +a(g211493 +g211495 +S'the' +p211497 +tp211498 +a(g211495 +g211497 +S'"river' +p211499 +tp211500 +a(g211497 +g211499 +S'of' +p211501 +tp211502 +a(g211499 +g211501 +S'life."' +p211503 +tp211504 +a(g211501 +g211503 +S'confidently' +p211505 +tp211506 +a(g211503 +g211505 +S'assuming' +p211507 +tp211508 +a(g211505 +g211507 +S'control' +p211509 +tp211510 +a(g211507 +g211509 +S'of' +p211511 +tp211512 +a(g211509 +g211511 +S'his' +p211513 +tp211514 +a(g211511 +g211513 +S'destiny' +p211515 +tp211516 +a(g211513 +g211515 +S'and' +p211517 +tp211518 +a(g211515 +g211517 +S'oblivious' +p211519 +tp211520 +a(g211517 +g211519 +S'to' +p211521 +tp211522 +a(g211519 +g211521 +S'the' +p211523 +tp211524 +a(g211521 +g211523 +S'dangers' +p211525 +tp211526 +a(g211523 +g211525 +S'that' +p211527 +tp211528 +a(g211525 +g211527 +S'await' +p211529 +tp211530 +a(g211527 +g211529 +S'him,' +p211531 +tp211532 +a(g211529 +g211531 +S'the' +p211533 +tp211534 +a(g211531 +g211533 +S'voyager' +p211535 +tp211536 +a(g211533 +g211535 +S'boldly' +p211537 +tp211538 +a(g211535 +g211537 +S'strives' +p211539 +tp211540 +a(g211537 +g211539 +S'to' +p211541 +tp211542 +a(g211539 +g211541 +S'reach' +p211543 +tp211544 +a(g211541 +g211543 +S'an' +p211545 +tp211546 +a(g211543 +g211545 +S'aerial' +p211547 +tp211548 +a(g211545 +g211547 +S'castle,' +p211549 +tp211550 +a(g211547 +g211549 +S'emblematic' +p211551 +tp211552 +a(g211549 +g211551 +S'of' +p211553 +tp211554 +a(g211551 +g211553 +S'the' +p211555 +tp211556 +a(g211553 +g211555 +S'daydreams' +p211557 +tp211558 +a(g211555 +g211557 +S'of' +p211559 +tp211560 +a(g211557 +g211559 +S'"youth"' +p211561 +tp211562 +a(g211559 +g211561 +S'and' +p211563 +tp211564 +a(g211561 +g211563 +S'its' +p211565 +tp211566 +a(g211563 +g211565 +S'aspirations' +p211567 +tp211568 +a(g211565 +g211567 +S'for' +p211569 +tp211570 +a(g211567 +g211569 +S'glory' +p211571 +tp211572 +a(g211569 +g211571 +S'and' +p211573 +tp211574 +a(g211571 +g211573 +S'fame.' +p211575 +tp211576 +a(g211573 +g211575 +S'as' +p211577 +tp211578 +a(g211575 +g211577 +S'the' +p211579 +tp211580 +a(g211577 +g211579 +S'traveler' +p211581 +tp211582 +a(g211579 +g211581 +S'approaches' +p211583 +tp211584 +a(g211581 +g211583 +S'his' +p211585 +tp211586 +a(g211583 +g211585 +S'goal,' +p211587 +tp211588 +a(g211585 +g211587 +S'the' +p211589 +tp211590 +a(g211587 +g211589 +S'ever-more-turbulent' +p211591 +tp211592 +a(g211589 +g211591 +S'stream' +p211593 +tp211594 +a(g211591 +g211593 +S'deviates' +p211595 +tp211596 +a(g211593 +g211595 +S'from' +p211597 +tp211598 +a(g211595 +g211597 +S'its' +p211599 +tp211600 +a(g211597 +g211599 +S'course' +p211601 +tp211602 +a(g211599 +g211601 +S'and' +p211603 +tp211604 +a(g211601 +g211603 +S'relentlessly' +p211605 +tp211606 +a(g211603 +g211605 +S'carries' +p211607 +tp211608 +a(g211605 +g211607 +S'him' +p211609 +tp211610 +a(g211607 +g211609 +S'toward' +p211611 +tp211612 +a(g211609 +g211611 +S'the' +p211613 +tp211614 +a(g211611 +g211613 +S'next' +p211615 +tp211616 +a(g211613 +g211615 +S'picture' +p211617 +tp211618 +a(g211615 +g211617 +S'in' +p211619 +tp211620 +a(g211617 +g211619 +S'the' +p211621 +tp211622 +a(g211619 +g211621 +S'series,' +p211623 +tp211624 +a(g211621 +g211623 +S'where' +p211625 +tp211626 +a(g211623 +g211625 +S"nature's" +p211627 +tp211628 +a(g211625 +g211627 +S'fury,' +p211629 +tp211630 +a(g211627 +g211629 +S'evil' +p211631 +tp211632 +a(g211629 +g211631 +S'demons,' +p211633 +tp211634 +a(g211631 +g211633 +S'and' +p211635 +tp211636 +a(g211633 +g211635 +S'self-doubt' +p211637 +tp211638 +a(g211635 +g211637 +S'will' +p211639 +tp211640 +a(g211637 +g211639 +S'threaten' +p211641 +tp211642 +a(g211639 +g211641 +S'his' +p211643 +tp211644 +a(g211641 +g211643 +S'very' +p211645 +tp211646 +a(g211643 +g211645 +S'existence.' +p211647 +tp211648 +a(g211645 +g211647 +S'only' +p211649 +tp211650 +a(g211647 +g211649 +S'prayer,' +p211651 +tp211652 +a(g211649 +g211651 +S'cole' +p211653 +tp211654 +a(g211651 +g211653 +S'suggests,' +p211655 +tp211656 +a(g211653 +g211655 +S'can' +p211657 +tp211658 +a(g211655 +g211657 +S'save' +p211659 +tp211660 +a(g211657 +g211659 +S'the' +p211661 +tp211662 +a(g211659 +g211661 +S'voyager' +p211663 +tp211664 +a(g211661 +g211663 +S'from' +p211665 +tp211666 +a(g211663 +g211665 +S'a' +p211667 +tp211668 +a(g211665 +g211667 +S'dark' +p211669 +tp211670 +a(g211667 +g211669 +S'and' +p211671 +tp211672 +a(g211669 +g211671 +S'tragic' +p211673 +tp211674 +a(g211671 +g211673 +S'fate.' +p211675 +tp211676 +a(g211673 +g211675 +S'from' +p211677 +tp211678 +a(g211675 +g211677 +S'the' +p211679 +tp211680 +a(g211677 +g211679 +S'innocence' +p211681 +tp211682 +a(g211679 +g211681 +S'of' +p211683 +tp211684 +a(g211681 +g211683 +S'childhood,' +p211685 +tp211686 +a(g211683 +g211685 +S'to' +p211687 +tp211688 +a(g211685 +g211687 +S'the' +p211689 +tp211690 +a(g211687 +g211689 +S'flush' +p211691 +tp211692 +a(g211689 +g211691 +S'of' +p211693 +tp211694 +a(g211691 +g211693 +S'youthful' +p211695 +tp211696 +a(g211693 +g211695 +S'overconfidence,' +p211697 +tp211698 +a(g211695 +g211697 +S'through' +p211699 +tp211700 +a(g211697 +g211699 +S'the' +p211701 +tp211702 +a(g211699 +g211701 +S'trials' +p211703 +tp211704 +a(g211701 +g211703 +S'and' +p211705 +tp211706 +a(g211703 +g211705 +S'tribulations' +p211707 +tp211708 +a(g211705 +g211707 +S'of' +p211709 +tp211710 +a(g211707 +g211709 +S'middle' +p211711 +tp211712 +a(g211709 +g211711 +S'age,' +p211713 +tp211714 +a(g211711 +g211713 +S'to' +p211715 +tp211716 +a(g211713 +g211715 +S'the' +p211717 +tp211718 +a(g211715 +g211717 +S"hero's" +p211719 +tp211720 +a(g211717 +g211719 +S'triumphant' +p211721 +tp211722 +a(g211719 +g211721 +S'salvation,' +p211723 +tp211724 +a(g211721 +g211723 +S"cole's" +p211725 +tp211726 +a(g211723 +g211725 +S'renowned' +p211727 +tp211728 +a(g211725 +g211727 +S'four-part' +p211729 +tp211730 +a(g211727 +g211729 +S'series' +p211731 +tp211732 +a(g211729 +g211731 +S'traces' +p211733 +tp211734 +a(g211731 +g211733 +S'the' +p211735 +tp211736 +a(g211733 +g211735 +S'journey' +p211737 +tp211738 +a(g211735 +g211737 +S'of' +p211739 +tp211740 +a(g211737 +g211739 +S'an' +p211741 +tp211742 +a(g211739 +g211741 +S'archetypal' +p211743 +tp211744 +a(g211741 +g211743 +S'hero' +p211745 +tp211746 +a(g211743 +g211745 +S'along' +p211747 +tp211748 +a(g211745 +g211747 +S'the' +p211749 +tp211750 +a(g211747 +g211749 +S'"river' +p211751 +tp211752 +a(g211749 +g211751 +S'of' +p211753 +tp211754 +a(g211751 +g211753 +S'life."' +p211755 +tp211756 +a(g211753 +g211755 +S'confidently' +p211757 +tp211758 +a(g211755 +g211757 +S'assuming' +p211759 +tp211760 +a(g211757 +g211759 +S'control' +p211761 +tp211762 +a(g211759 +g211761 +S'of' +p211763 +tp211764 +a(g211761 +g211763 +S'his' +p211765 +tp211766 +a(g211763 +g211765 +S'destiny' +p211767 +tp211768 +a(g211765 +g211767 +S'and' +p211769 +tp211770 +a(g211767 +g211769 +S'oblivious' +p211771 +tp211772 +a(g211769 +g211771 +S'to' +p211773 +tp211774 +a(g211771 +g211773 +S'the' +p211775 +tp211776 +a(g211773 +g211775 +S'dangers' +p211777 +tp211778 +a(g211775 +g211777 +S'that' +p211779 +tp211780 +a(g211777 +g211779 +S'await' +p211781 +tp211782 +a(g211779 +g211781 +S'him,' +p211783 +tp211784 +a(g211781 +g211783 +S'the' +p211785 +tp211786 +a(g211783 +g211785 +S'voyager' +p211787 +tp211788 +a(g211785 +g211787 +S'boldly' +p211789 +tp211790 +a(g211787 +g211789 +S'strives' +p211791 +tp211792 +a(g211789 +g211791 +S'to' +p211793 +tp211794 +a(g211791 +g211793 +S'reach' +p211795 +tp211796 +a(g211793 +g211795 +S'an' +p211797 +tp211798 +a(g211795 +g211797 +S'aerial' +p211799 +tp211800 +a(g211797 +g211799 +S'castle,' +p211801 +tp211802 +a(g211799 +g211801 +S'emblematic' +p211803 +tp211804 +a(g211801 +g211803 +S'of' +p211805 +tp211806 +a(g211803 +g211805 +S'the' +p211807 +tp211808 +a(g211805 +g211807 +S'daydreams' +p211809 +tp211810 +a(g211807 +g211809 +S'of' +p211811 +tp211812 +a(g211809 +g211811 +S'"youth"' +p211813 +tp211814 +a(g211811 +g211813 +S'and' +p211815 +tp211816 +a(g211813 +g211815 +S'its' +p211817 +tp211818 +a(g211815 +g211817 +S'aspirations' +p211819 +tp211820 +a(g211817 +g211819 +S'for' +p211821 +tp211822 +a(g211819 +g211821 +S'glory' +p211823 +tp211824 +a(g211821 +g211823 +S'and' +p211825 +tp211826 +a(g211823 +g211825 +S'fame.' +p211827 +tp211828 +a(g211825 +g211827 +S'as' +p211829 +tp211830 +a(g211827 +g211829 +S'the' +p211831 +tp211832 +a(g211829 +g211831 +S'traveler' +p211833 +tp211834 +a(g211831 +g211833 +S'approaches' +p211835 +tp211836 +a(g211833 +g211835 +S'his' +p211837 +tp211838 +a(g211835 +g211837 +S'goal,' +p211839 +tp211840 +a(g211837 +g211839 +S'the' +p211841 +tp211842 +a(g211839 +g211841 +S'ever-more-turbulent' +p211843 +tp211844 +a(g211841 +g211843 +S'stream' +p211845 +tp211846 +a(g211843 +g211845 +S'deviates' +p211847 +tp211848 +a(g211845 +g211847 +S'from' +p211849 +tp211850 +a(g211847 +g211849 +S'its' +p211851 +tp211852 +a(g211849 +g211851 +S'course' +p211853 +tp211854 +a(g211851 +g211853 +S'and' +p211855 +tp211856 +a(g211853 +g211855 +S'relentlessly' +p211857 +tp211858 +a(g211855 +g211857 +S'carries' +p211859 +tp211860 +a(g211857 +g211859 +S'him' +p211861 +tp211862 +a(g211859 +g211861 +S'toward' +p211863 +tp211864 +a(g211861 +g211863 +S'the' +p211865 +tp211866 +a(g211863 +g211865 +S'next' +p211867 +tp211868 +a(g211865 +g211867 +S'picture' +p211869 +tp211870 +a(g211867 +g211869 +S'in' +p211871 +tp211872 +a(g211869 +g211871 +S'the' +p211873 +tp211874 +a(g211871 +g211873 +S'series,' +p211875 +tp211876 +a(g211873 +g211875 +S'where' +p211877 +tp211878 +a(g211875 +g211877 +S"nature's" +p211879 +tp211880 +a(g211877 +g211879 +S'fury,' +p211881 +tp211882 +a(g211879 +g211881 +S'evil' +p211883 +tp211884 +a(g211881 +g211883 +S'demons,' +p211885 +tp211886 +a(g211883 +g211885 +S'and' +p211887 +tp211888 +a(g211885 +g211887 +S'self-doubt' +p211889 +tp211890 +a(g211887 +g211889 +S'will' +p211891 +tp211892 +a(g211889 +g211891 +S'threaten' +p211893 +tp211894 +a(g211891 +g211893 +S'his' +p211895 +tp211896 +a(g211893 +g211895 +S'very' +p211897 +tp211898 +a(g211895 +g211897 +S'existence.' +p211899 +tp211900 +a(g211897 +g211899 +S'only' +p211901 +tp211902 +a(g211899 +g211901 +S'prayer,' +p211903 +tp211904 +a(g211901 +g211903 +S'cole' +p211905 +tp211906 +a(g211903 +g211905 +S'suggests,' +p211907 +tp211908 +a(g211905 +g211907 +S'can' +p211909 +tp211910 +a(g211907 +g211909 +S'save' +p211911 +tp211912 +a(g211909 +g211911 +S'the' +p211913 +tp211914 +a(g211911 +g211913 +S'voyager' +p211915 +tp211916 +a(g211913 +g211915 +S'from' +p211917 +tp211918 +a(g211915 +g211917 +S'a' +p211919 +tp211920 +a(g211917 +g211919 +S'dark' +p211921 +tp211922 +a(g211919 +g211921 +S'and' +p211923 +tp211924 +a(g211921 +g211923 +S'tragic' +p211925 +tp211926 +a(g211923 +g211925 +S'fate.' +p211927 +tp211928 +a(g211925 +g211927 +S'from' +p211929 +tp211930 +a(g211927 +g211929 +S'the' +p211931 +tp211932 +a(g211929 +g211931 +S'innocence' +p211933 +tp211934 +a(g211931 +g211933 +S'of' +p211935 +tp211936 +a(g211933 +g211935 +S'childhood,' +p211937 +tp211938 +a(g211935 +g211937 +S'to' +p211939 +tp211940 +a(g211937 +g211939 +S'the' +p211941 +tp211942 +a(g211939 +g211941 +S'flush' +p211943 +tp211944 +a(g211941 +g211943 +S'of' +p211945 +tp211946 +a(g211943 +g211945 +S'youthful' +p211947 +tp211948 +a(g211945 +g211947 +S'overconfidence,' +p211949 +tp211950 +a(g211947 +g211949 +S'through' +p211951 +tp211952 +a(g211949 +g211951 +S'the' +p211953 +tp211954 +a(g211951 +g211953 +S'trials' +p211955 +tp211956 +a(g211953 +g211955 +S'and' +p211957 +tp211958 +a(g211955 +g211957 +S'tribulations' +p211959 +tp211960 +a(g211957 +g211959 +S'of' +p211961 +tp211962 +a(g211959 +g211961 +S'middle' +p211963 +tp211964 +a(g211961 +g211963 +S'age,' +p211965 +tp211966 +a(g211963 +g211965 +S'to' +p211967 +tp211968 +a(g211965 +g211967 +S'the' +p211969 +tp211970 +a(g211967 +g211969 +S"hero's" +p211971 +tp211972 +a(g211969 +g211971 +S'triumphant' +p211973 +tp211974 +a(g211971 +g211973 +S'salvation,' +p211975 +tp211976 +a(g211973 +g211975 +S'a' +p211977 +tp211978 +a(g211975 +g211977 +S'man' +p211979 +tp211980 +a(g211977 +g211979 +S'of' +p211981 +tp211982 +a(g211979 +g211981 +S'great' +p211983 +tp211984 +a(g211981 +g211983 +S'integrity,' +p211985 +tp211986 +a(g211983 +g211985 +S'probity,' +p211987 +tp211988 +a(g211985 +g211987 +S'and' +p211989 +tp211990 +a(g211987 +g211989 +S'discretion,' +p211991 +tp211992 +a(g211989 +g211991 +S'rubens' +p211993 +tp211994 +a(g211991 +g211993 +S'was' +p211995 +tp211996 +a(g211993 +g211995 +S'often' +p211997 +tp211998 +a(g211995 +g211997 +S'entrusted' +p211999 +tp212000 +a(g211997 +g211999 +S'with' +p212001 +tp212002 +a(g211999 +g212001 +S'delicate' +p212003 +tp212004 +a(g212001 +g212003 +S'diplomatic' +p212005 +tp212006 +a(g212003 +g212005 +S'missions' +p212007 +tp212008 +a(g212005 +g212007 +S'which' +p212009 +tp212010 +a(g212007 +g212009 +S'could' +p212011 +tp212012 +a(g212009 +g212011 +S'be' +p212013 +tp212014 +a(g212011 +g212013 +S'accomplished' +p212015 +tp212016 +a(g212013 +g212015 +S'under' +p212017 +tp212018 +a(g212015 +g212017 +S'cover' +p212019 +tp212020 +a(g212017 +g212019 +S'of' +p212021 +tp212022 +a(g212019 +g212021 +S'his' +p212023 +tp212024 +a(g212021 +g212023 +S'activities' +p212025 +tp212026 +a(g212023 +g212025 +S'as' +p212027 +tp212028 +a(g212025 +g212027 +S'an' +p212029 +tp212030 +a(g212027 +g212029 +S'artist.' +p212031 +tp212032 +a(g212029 +g212031 +S'so' +p212033 +tp212034 +a(g212031 +g212033 +S'it' +p212035 +tp212036 +a(g212033 +g212035 +S'was' +p212037 +tp212038 +a(g212035 +g212037 +S'that' +p212039 +tp212040 +a(g212037 +g212039 +S'in' +p212041 +tp212042 +a(g212039 +g212041 +S'an' +p212043 +tp212044 +a(g212041 +g212043 +S'effort' +p212045 +tp212046 +a(g212043 +g212045 +S'to' +p212047 +tp212048 +a(g212045 +g212047 +S'secure' +p212049 +tp212050 +a(g212047 +g212049 +S'peace' +p212051 +tp212052 +a(g212049 +g212051 +S'between' +p212053 +tp212054 +a(g212051 +g212053 +S'spain' +p212055 +tp212056 +a(g212053 +g212055 +S'and' +p212057 +tp212058 +a(g212055 +g212057 +S'england' +p212059 +tp212060 +a(g212057 +g212059 +S'he' +p212061 +tp212062 +a(g212059 +g212061 +S'spent,' +p212063 +tp212064 +a(g212061 +g212063 +S'in' +p212065 +tp212066 +a(g212063 +g212065 +S'1629,' +p212067 +tp212068 +a(g212065 +g212067 +S'several' +p212069 +tp212070 +a(g212067 +g212069 +S'months' +p212071 +tp212072 +a(g212069 +g212071 +S'in' +p212073 +tp212074 +a(g212071 +g212073 +S'london' +p212075 +tp212076 +a(g212073 +g212075 +S'as' +p212077 +tp212078 +a(g212075 +g212077 +S'the' +p212079 +tp212080 +a(g212077 +g212079 +S'guest' +p212081 +tp212082 +a(g212079 +g212081 +S'of' +p212083 +tp212084 +a(g212081 +g212083 +S'balthasar' +p212085 +tp212086 +a(g212083 +g212085 +S'gerbier,' +p212087 +tp212088 +a(g212085 +g212087 +S'himself' +p212089 +tp212090 +a(g212087 +g212089 +S'a' +p212091 +tp212092 +a(g212089 +g212091 +S'diplomatic' +p212093 +tp212094 +a(g212091 +g212093 +S'agent,' +p212095 +tp212096 +a(g212093 +g212095 +S'artist,' +p212097 +tp212098 +a(g212095 +g212097 +S'and' +p212099 +tp212100 +a(g212097 +g212099 +S'advisor' +p212101 +tp212102 +a(g212099 +g212101 +S'to' +p212103 +tp212104 +a(g212101 +g212103 +S'the' +p212105 +tp212106 +a(g212103 +g212105 +S'duke' +p212107 +tp212108 +a(g212105 +g212107 +S'of' +p212109 +tp212110 +a(g212107 +g212109 +S'buckingham.' +p212111 +tp212112 +a(g212109 +g212111 +S"gerbier's" +p212113 +tp212114 +a(g212111 +g212113 +S'wife,' +p212115 +tp212116 +a(g212113 +g212115 +S'deborah' +p212117 +tp212118 +a(g212115 +g212117 +S'kip,' +p212119 +tp212120 +a(g212117 +g212119 +S'was' +p212121 +tp212122 +a(g212119 +g212121 +S'the' +p212123 +tp212124 +a(g212121 +g212123 +S'daughter' +p212125 +tp212126 +a(g212123 +g212125 +S'of' +p212127 +tp212128 +a(g212125 +g212127 +S'a' +p212129 +tp212130 +a(g212127 +g212129 +S'well-to-do' +p212131 +tp212132 +a(g212129 +g212131 +S'member' +p212133 +tp212134 +a(g212131 +g212133 +S'of' +p212135 +tp212136 +a(g212133 +g212135 +S'the' +p212137 +tp212138 +a(g212135 +g212137 +S'dutch' +p212139 +tp212140 +a(g212137 +g212139 +S'community' +p212141 +tp212142 +a(g212139 +g212141 +S'in' +p212143 +tp212144 +a(g212141 +g212143 +S'london.' +p212145 +tp212146 +a(g212143 +g212145 +S'deborah' +p212147 +tp212148 +a(g212145 +g212147 +S'kip' +p212149 +tp212150 +a(g212147 +g212149 +S'and' +p212151 +tp212152 +a(g212149 +g212151 +S'four' +p212153 +tp212154 +a(g212151 +g212153 +S'of' +p212155 +tp212156 +a(g212153 +g212155 +S'her' +p212157 +tp212158 +a(g212155 +g212157 +S'children' +p212159 +tp212160 +a(g212157 +g212159 +S'are' +p212161 +tp212162 +a(g212159 +g212161 +S'shown' +p212163 +tp212164 +a(g212161 +g212163 +S'on' +p212165 +tp212166 +a(g212163 +g212165 +S'a' +p212167 +tp212168 +a(g212165 +g212167 +S'terrace' +p212169 +tp212170 +a(g212167 +g212169 +S'elaborately' +p212171 +tp212172 +a(g212169 +g212171 +S'appointed' +p212173 +tp212174 +a(g212171 +g212173 +S'with' +p212175 +tp212176 +a(g212173 +g212175 +S'entwined' +p212177 +tp212178 +a(g212175 +g212177 +S'caryatids' +p212179 +tp212180 +a(g212177 +g212179 +S'who' +p212181 +tp212182 +a(g212179 +g212181 +S'support' +p212183 +tp212184 +a(g212181 +g212183 +S'a' +p212185 +tp212186 +a(g212183 +g212185 +S'bower,' +p212187 +tp212188 +a(g212185 +g212187 +S'a' +p212189 +tp212190 +a(g212187 +g212189 +S'setting' +p212191 +tp212192 +a(g212189 +g212191 +S'that' +p212193 +tp212194 +a(g212191 +g212193 +S'indicates' +p212195 +tp212196 +a(g212193 +g212195 +S'the' +p212197 +tp212198 +a(g212195 +g212197 +S'status' +p212199 +tp212200 +a(g212197 +g212199 +S'of' +p212201 +tp212202 +a(g212199 +g212201 +S'the' +p212203 +tp212204 +a(g212201 +g212203 +S'family' +p212205 +tp212206 +a(g212203 +g212205 +S'group.' +p212207 +tp212208 +a(g212205 +g212207 +S'further' +p212209 +tp212210 +a(g212207 +g212209 +S'richness' +p212211 +tp212212 +a(g212209 +g212211 +S'is' +p212213 +tp212214 +a(g212211 +g212213 +S'evident' +p212215 +tp212216 +a(g212213 +g212215 +S'in' +p212217 +tp212218 +a(g212215 +g212217 +S'deborah' +p212219 +tp212220 +a(g212217 +g212219 +S"kip's" +p212221 +tp212222 +a(g212219 +g212221 +S'elegantly' +p212223 +tp212224 +a(g212221 +g212223 +S'embroidered' +p212225 +tp212226 +a(g212223 +g212225 +S'skirt' +p212227 +tp212228 +a(g212225 +g212227 +S'and' +p212229 +tp212230 +a(g212227 +g212229 +S'lustrous' +p212231 +tp212232 +a(g212229 +g212231 +S'blouse' +p212233 +tp212234 +a(g212231 +g212233 +S'and' +p212235 +tp212236 +a(g212233 +g212235 +S'cap.' +p212237 +tp212238 +a(g212235 +g212237 +S'perched' +p212239 +tp212240 +a(g212237 +g212239 +S'on' +p212241 +tp212242 +a(g212239 +g212241 +S'the' +p212243 +tp212244 +a(g212241 +g212243 +S'back' +p212245 +tp212246 +a(g212243 +g212245 +S'of' +p212247 +tp212248 +a(g212245 +g212247 +S'her' +p212249 +tp212250 +a(g212247 +g212249 +S'chair' +p212251 +tp212252 +a(g212249 +g212251 +S'is' +p212253 +tp212254 +a(g212251 +g212253 +S'a' +p212255 +tp212256 +a(g212253 +g212255 +S'blue-gray' +p212257 +tp212258 +a(g212255 +g212257 +S'parrot,' +p212259 +tp212260 +a(g212257 +g212259 +S'a' +p212261 +tp212262 +a(g212259 +g212261 +S'symbol' +p212263 +tp212264 +a(g212261 +g212263 +S'of' +p212265 +tp212266 +a(g212263 +g212265 +S'aristocratic' +p212267 +tp212268 +a(g212265 +g212267 +S'wealth' +p212269 +tp212270 +a(g212267 +g212269 +S'and' +p212271 +tp212272 +a(g212269 +g212271 +S'an' +p212273 +tp212274 +a(g212271 +g212273 +S'allusion,' +p212275 +tp212276 +a(g212273 +g212275 +S'in' +p212277 +tp212278 +a(g212275 +g212277 +S'christian' +p212279 +tp212280 +a(g212277 +g212279 +S'art,' +p212281 +tp212282 +a(g212279 +g212281 +S'to' +p212283 +tp212284 +a(g212281 +g212283 +S'the' +p212285 +tp212286 +a(g212283 +g212285 +S'perfect' +p212287 +tp212288 +a(g212285 +g212287 +S'mother,' +p212289 +tp212290 +a(g212287 +g212289 +S'the' +p212291 +tp212292 +a(g212289 +g212291 +S'virgin' +p212293 +tp212294 +a(g212291 +g212293 +S'mary.' +p212295 +tp212296 +a(g212293 +g212295 +S'at' +p212297 +tp212298 +a(g212295 +g212297 +S'the' +p212299 +tp212300 +a(g212297 +g212299 +S'rear' +p212301 +tp212302 +a(g212299 +g212301 +S'george' +p212303 +tp212304 +a(g212301 +g212303 +S'holds' +p212305 +tp212306 +a(g212303 +g212305 +S'back' +p212307 +tp212308 +a(g212305 +g212307 +S'a' +p212309 +tp212310 +a(g212307 +g212309 +S'curtain;' +p212311 +tp212312 +a(g212309 +g212311 +S'elizabeth,' +p212313 +tp212314 +a(g212311 +g212313 +S'dressed' +p212315 +tp212316 +a(g212313 +g212315 +S'entirely' +p212317 +tp212318 +a(g212315 +g212317 +S'in' +p212319 +tp212320 +a(g212317 +g212319 +S'black,' +p212321 +tp212322 +a(g212319 +g212321 +S'is' +p212323 +tp212324 +a(g212321 +g212323 +S'serene' +p212325 +tp212326 +a(g212323 +g212325 +S'and' +p212327 +tp212328 +a(g212325 +g212327 +S'composed;' +p212329 +tp212330 +a(g212327 +g212329 +S'and' +p212331 +tp212332 +a(g212329 +g212331 +S'susan' +p212333 +tp212334 +a(g212331 +g212333 +S'rests' +p212335 +tp212336 +a(g212333 +g212335 +S'her' +p212337 +tp212338 +a(g212335 +g212337 +S'arms' +p212339 +tp212340 +a(g212337 +g212339 +S'on' +p212341 +tp212342 +a(g212339 +g212341 +S'her' +p212343 +tp212344 +a(g212341 +g212343 +S"mother's" +p212345 +tp212346 +a(g212343 +g212345 +S'knee' +p212347 +tp212348 +a(g212345 +g212347 +S'and' +p212349 +tp212350 +a(g212347 +g212349 +S'tilts' +p212351 +tp212352 +a(g212349 +g212351 +S'her' +p212353 +tp212354 +a(g212351 +g212353 +S'head,' +p212355 +tp212356 +a(g212353 +g212355 +S'returning' +p212357 +tp212358 +a(g212355 +g212357 +S'our' +p212359 +tp212360 +a(g212357 +g212359 +S'gaze.' +p212361 +tp212362 +a(g212359 +g212361 +S'despite' +p212363 +tp212364 +a(g212361 +g212363 +S'the' +p212365 +tp212366 +a(g212363 +g212365 +S'elegant' +p212367 +tp212368 +a(g212365 +g212367 +S'setting' +p212369 +tp212370 +a(g212367 +g212369 +S'and' +p212371 +tp212372 +a(g212369 +g212371 +S'the' +p212373 +tp212374 +a(g212371 +g212373 +S'bravura' +p212375 +tp212376 +a(g212373 +g212375 +S'brushwork,' +p212377 +tp212378 +a(g212375 +g212377 +S'rubens' +p212379 +tp212380 +a(g212377 +g212379 +S'controlled' +p212381 +tp212382 +a(g212379 +g212381 +S'the' +p212383 +tp212384 +a(g212381 +g212383 +S'composition' +p212385 +tp212386 +a(g212383 +g212385 +S'so' +p212387 +tp212388 +a(g212385 +g212387 +S'that' +p212389 +tp212390 +a(g212387 +g212389 +S'we' +p212391 +tp212392 +a(g212389 +g212391 +S'are' +p212393 +tp212394 +a(g212391 +g212393 +S'not' +p212395 +tp212396 +a(g212393 +g212395 +S'allowed' +p212397 +tp212398 +a(g212395 +g212397 +S'to' +p212399 +tp212400 +a(g212397 +g212399 +S'lose' +p212401 +tp212402 +a(g212399 +g212401 +S'sight' +p212403 +tp212404 +a(g212401 +g212403 +S'of' +p212405 +tp212406 +a(g212403 +g212405 +S'the' +p212407 +tp212408 +a(g212405 +g212407 +S'tender' +p212409 +tp212410 +a(g212407 +g212409 +S'relationship' +p212411 +tp212412 +a(g212409 +g212411 +S'between' +p212413 +tp212414 +a(g212411 +g212413 +S'a' +p212415 +tp212416 +a(g212413 +g212415 +S'mother' +p212417 +tp212418 +a(g212415 +g212417 +S'and' +p212419 +tp212420 +a(g212417 +g212419 +S'her' +p212421 +tp212422 +a(g212419 +g212421 +S'children.' +p212423 +tp212424 +a(g212421 +g212423 +S'piet' +p212425 +tp212426 +a(g212423 +g212425 +S'mondrian' +p212427 +tp212428 +a(g212425 +g212427 +S'intended' +p212429 +tp212430 +a(g212427 +g212429 +S'his' +p212431 +tp212432 +a(g212429 +g212431 +S'abstract' +p212433 +tp212434 +a(g212431 +g212433 +S'or' +p212435 +tp212436 +a(g212433 +g212435 +S'so-called' +p212437 +tp212438 +a(g212435 +g212437 +S'"neo-plastic"' +p212439 +tp212440 +a(g212437 +g212439 +S'paintings' +p212441 +tp212442 +a(g212439 +g212441 +S'to' +p212443 +tp212444 +a(g212441 +g212443 +S'express' +p212445 +tp212446 +a(g212443 +g212445 +S'his' +p212447 +tp212448 +a(g212445 +g212447 +S'fundamentally' +p212449 +tp212450 +a(g212447 +g212449 +S'spiritual' +p212451 +tp212452 +a(g212449 +g212451 +S'notion' +p212453 +tp212454 +a(g212451 +g212453 +S'that' +p212455 +tp212456 +a(g212453 +g212455 +S'universal' +p212457 +tp212458 +a(g212455 +g212457 +S'harmonies' +p212459 +tp212460 +a(g212457 +g212459 +S'preside' +p212461 +tp212462 +a(g212459 +g212461 +S'in' +p212463 +tp212464 +a(g212461 +g212463 +S'nature.' +p212465 +tp212466 +a(g212463 +g212465 +S'the' +p212467 +tp212468 +a(g212465 +g212467 +S'horizontal' +p212469 +tp212470 +a(g212467 +g212469 +S'and' +p212471 +tp212472 +a(g212469 +g212471 +S'vertical' +p212473 +tp212474 +a(g212471 +g212473 +S'elements' +p212475 +tp212476 +a(g212473 +g212475 +S'of' +p212477 +tp212478 +a(g212475 +g212477 +S'his' +p212479 +tp212480 +a(g212477 +g212479 +S'compositions,' +p212481 +tp212482 +a(g212479 +g212481 +S'assiduously' +p212483 +tp212484 +a(g212481 +g212483 +S'calibrated' +p212485 +tp212486 +a(g212483 +g212485 +S'to' +p212487 +tp212488 +a(g212485 +g212487 +S'produce' +p212489 +tp212490 +a(g212487 +g212489 +S'a' +p212491 +tp212492 +a(g212489 +g212491 +S'balanced' +p212493 +tp212494 +a(g212491 +g212493 +S'asymmetry,' +p212495 +tp212496 +a(g212493 +g212495 +S'represented' +p212497 +tp212498 +a(g212495 +g212497 +S'forces' +p212499 +tp212500 +a(g212497 +g212499 +S'of' +p212501 +tp212502 +a(g212499 +g212501 +S'opposition' +p212503 +tp212504 +a(g212501 +g212503 +S'that' +p212505 +tp212506 +a(g212503 +g212505 +S'parallel' +p212507 +tp212508 +a(g212505 +g212507 +S'the' +p212509 +tp212510 +a(g212507 +g212509 +S'dynamic' +p212511 +tp212512 +a(g212509 +g212511 +S'equilibrium' +p212513 +tp212514 +a(g212511 +g212513 +S'at' +p212515 +tp212516 +a(g212513 +g212515 +S'work' +p212517 +tp212518 +a(g212515 +g212517 +S'in' +p212519 +tp212520 +a(g212517 +g212519 +S'the' +p212521 +tp212522 +a(g212519 +g212521 +S'natural' +p212523 +tp212524 +a(g212521 +g212523 +S'world.' +p212525 +tp212526 +a(g212523 +g212525 +S'by' +p212527 +tp212528 +a(g212525 +g212527 +S'1921' +p212529 +tp212530 +a(g212527 +g212529 +S'mondrian' +p212531 +tp212532 +a(g212529 +g212531 +S'had' +p212533 +tp212534 +a(g212531 +g212533 +S'distilled' +p212535 +tp212536 +a(g212533 +g212535 +S'his' +p212537 +tp212538 +a(g212535 +g212537 +S'compositions' +p212539 +tp212540 +a(g212537 +g212539 +S'into' +p212541 +tp212542 +a(g212539 +g212541 +S'black' +p212543 +tp212544 +a(g212541 +g212543 +S'lines' +p212545 +tp212546 +a(g212543 +g212545 +S'that' +p212547 +tp212548 +a(g212545 +g212547 +S'intersect' +p212549 +tp212550 +a(g212547 +g212549 +S'at' +p212551 +tp212552 +a(g212549 +g212551 +S'right' +p212553 +tp212554 +a(g212551 +g212553 +S'angles,' +p212555 +tp212556 +a(g212553 +g212555 +S'defining' +p212557 +tp212558 +a(g212555 +g212557 +S'rectangles' +p212559 +tp212560 +a(g212557 +g212559 +S'painted' +p212561 +tp212562 +a(g212559 +g212561 +S'only' +p212563 +tp212564 +a(g212561 +g212563 +S'in' +p212565 +tp212566 +a(g212563 +g212565 +S'white' +p212567 +tp212568 +a(g212565 +g212567 +S'or' +p212569 +tp212570 +a(g212567 +g212569 +S'gray' +p212571 +tp212572 +a(g212569 +g212571 +S'and' +p212573 +tp212574 +a(g212571 +g212573 +S'the' +p212575 +tp212576 +a(g212573 +g212575 +S'three' +p212577 +tp212578 +a(g212575 +g212577 +S'primary' +p212579 +tp212580 +a(g212577 +g212579 +S'colors.' +p212581 +tp212582 +a(g212579 +g212581 +S'in' +p212583 +tp212584 +a(g212581 +g212583 +S'1918' +p212585 +tp212586 +a(g212583 +g212585 +S'the' +p212587 +tp212588 +a(g212585 +g212587 +S'artist' +p212589 +tp212590 +a(g212587 +g212589 +S'turned' +p212591 +tp212592 +a(g212589 +g212591 +S'one' +p212593 +tp212594 +a(g212591 +g212593 +S'of' +p212595 +tp212596 +a(g212593 +g212595 +S'these' +p212597 +tp212598 +a(g212595 +g212597 +S'square' +p212599 +tp212600 +a(g212597 +g212599 +S'canvases' +p212601 +tp212602 +a(g212599 +g212601 +S'45' +p212603 +tp212604 +a(g212601 +g212603 +S'degrees' +p212605 +tp212606 +a(g212603 +g212605 +S'to' +p212607 +tp212608 +a(g212605 +g212607 +S'rest' +p212609 +tp212610 +a(g212607 +g212609 +S'"on' +p212611 +tp212612 +a(g212609 +g212611 +S'point,"' +p212613 +tp212614 +a(g212611 +g212613 +S'doing' +p212615 +tp212616 +a(g212613 +g212615 +S'so' +p212617 +tp212618 +a(g212615 +g212617 +S'without' +p212619 +tp212620 +a(g212617 +g212619 +S'rotating' +p212621 +tp212622 +a(g212619 +g212621 +S'the' +p212623 +tp212624 +a(g212621 +g212623 +S'linear' +p212625 +tp212626 +a(g212623 +g212625 +S'elements' +p212627 +tp212628 +a(g212625 +g212627 +S'within' +p212629 +tp212630 +a(g212627 +g212629 +S'the' +p212631 +tp212632 +a(g212629 +g212631 +S'composition.' +p212633 +tp212634 +a(g212631 +g212633 +S'approximately' +p212635 +tp212636 +a(g212633 +g212635 +S'three' +p212637 +tp212638 +a(g212635 +g212637 +S'years' +p212639 +tp212640 +a(g212637 +g212639 +S'later' +p212641 +tp212642 +a(g212639 +g212641 +S'he' +p212643 +tp212644 +a(g212641 +g212643 +S'merged' +p212645 +tp212646 +a(g212643 +g212645 +S'that' +p212647 +tp212648 +a(g212645 +g212647 +S'format' +p212649 +tp212650 +a(g212647 +g212649 +S'with' +p212651 +tp212652 +a(g212649 +g212651 +S'the' +p212653 +tp212654 +a(g212651 +g212653 +S'elemental' +p212655 +tp212656 +a(g212653 +g212655 +S'color' +p212657 +tp212658 +a(g212655 +g212657 +S'scheme' +p212659 +tp212660 +a(g212657 +g212659 +S'of' +p212661 +tp212662 +a(g212659 +g212661 +S'his' +p212663 +tp212664 +a(g212661 +g212663 +S'mature' +p212665 +tp212666 +a(g212663 +g212665 +S'works' +p212667 +tp212668 +a(g212665 +g212667 +S'to' +p212669 +tp212670 +a(g212667 +g212669 +S'produce' +p212671 +tp212672 +a(g212669 +g212671 +S'this' +p212673 +tp212674 +a(g212671 +g212673 +S'monumental' +p212675 +tp212676 +a(g212673 +g212675 +S'painting,' +p212677 +tp212678 +a(g212675 +g212677 +S'the' +p212679 +tp212680 +a(g212677 +g212679 +S'earliest' +p212681 +tp212682 +a(g212679 +g212681 +S'of' +p212683 +tp212684 +a(g212681 +g212683 +S'the' +p212685 +tp212686 +a(g212683 +g212685 +S'neo-plastic' +p212687 +tp212688 +a(g212685 +g212687 +S'diamond' +p212689 +tp212690 +a(g212687 +g212689 +S'or' +p212691 +tp212692 +a(g212689 +g212691 +S'lozenge' +p212693 +tp212694 +a(g212691 +g212693 +S'compositions.' +p212695 +tp212696 +a(g212693 +g212695 +S'repainted' +p212697 +tp212698 +a(g212695 +g212697 +S'around' +p212699 +tp212700 +a(g212697 +g212699 +S'1925,' +p212701 +tp212702 +a(g212699 +g212701 +S'when' +p212703 +tp212704 +a(g212701 +g212703 +S'the' +p212705 +tp212706 +a(g212703 +g212705 +S'black' +p212707 +tp212708 +a(g212705 +g212707 +S'lines' +p212709 +tp212710 +a(g212707 +g212709 +S'were' +p212711 +tp212712 +a(g212709 +g212711 +S'thickened,' +p212713 +tp212714 +a(g212711 +g212713 +S'this' +p212715 +tp212716 +a(g212713 +g212715 +S'picture' +p212717 +tp212718 +a(g212715 +g212717 +S'relates' +p212719 +tp212720 +a(g212717 +g212719 +S'to' +p212721 +tp212722 +a(g212719 +g212721 +S'several' +p212723 +tp212724 +a(g212721 +g212723 +S'other' +p212725 +tp212726 +a(g212723 +g212725 +S'works' +p212727 +tp212728 +a(g212725 +g212727 +S'of' +p212729 +tp212730 +a(g212727 +g212729 +S'the' +p212731 +tp212732 +a(g212729 +g212731 +S'1920s,' +p212733 +tp212734 +a(g212731 +g212733 +S'where' +p212735 +tp212736 +a(g212733 +g212735 +S'color' +p212737 +tp212738 +a(g212735 +g212737 +S'is' +p212739 +tp212740 +a(g212737 +g212739 +S'restricted' +p212741 +tp212742 +a(g212739 +g212741 +S'to' +p212743 +tp212744 +a(g212741 +g212743 +S'the' +p212745 +tp212746 +a(g212743 +g212745 +S'periphery.' +p212747 +tp212748 +a(g212745 +g212747 +S'mondrian' +p212749 +tp212750 +a(g212747 +g212749 +S'said' +p212751 +tp212752 +a(g212749 +g212751 +S'the' +p212753 +tp212754 +a(g212751 +g212753 +S'diamond' +p212755 +tp212756 +a(g212753 +g212755 +S'compositions' +p212757 +tp212758 +a(g212755 +g212757 +S'were' +p212759 +tp212760 +a(g212757 +g212759 +S'about' +p212761 +tp212762 +a(g212759 +g212761 +S'cutting,' +p212763 +tp212764 +a(g212761 +g212763 +S'and' +p212765 +tp212766 +a(g212763 +g212765 +S'indeed' +p212767 +tp212768 +a(g212765 +g212767 +S'the' +p212769 +tp212770 +a(g212767 +g212769 +S'sense' +p212771 +tp212772 +a(g212769 +g212771 +S'of' +p212773 +tp212774 +a(g212771 +g212773 +S'cropping' +p212775 +tp212776 +a(g212773 +g212775 +S'here' +p212777 +tp212778 +a(g212775 +g212777 +S'is' +p212779 +tp212780 +a(g212777 +g212779 +S'emphatic.' +p212781 +tp212782 +a(g212779 +g212781 +S'forms' +p212783 +tp212784 +a(g212781 +g212783 +S'are' +p212785 +tp212786 +a(g212783 +g212785 +S'incomplete,' +p212787 +tp212788 +a(g212785 +g212787 +S'sliced' +p212789 +tp212790 +a(g212787 +g212789 +S'by' +p212791 +tp212792 +a(g212789 +g212791 +S'the' +p212793 +tp212794 +a(g212791 +g212793 +S'edge' +p212795 +tp212796 +a(g212793 +g212795 +S'of' +p212797 +tp212798 +a(g212795 +g212797 +S'the' +p212799 +tp212800 +a(g212797 +g212799 +S'canvas,' +p212801 +tp212802 +a(g212799 +g212801 +S'thus' +p212803 +tp212804 +a(g212801 +g212803 +S'implying' +p212805 +tp212806 +a(g212803 +g212805 +S'a' +p212807 +tp212808 +a(g212805 +g212807 +S'pictorial' +p212809 +tp212810 +a(g212807 +g212809 +S'continuum' +p212811 +tp212812 +a(g212809 +g212811 +S'that' +p212813 +tp212814 +a(g212811 +g212813 +S'extends' +p212815 +tp212816 +a(g212813 +g212815 +S'beyond' +p212817 +tp212818 +a(g212815 +g212817 +S'the' +p212819 +tp212820 +a(g212817 +g212819 +S'physical' +p212821 +tp212822 +a(g212819 +g212821 +S'boundary' +p212823 +tp212824 +a(g212821 +g212823 +S'of' +p212825 +tp212826 +a(g212823 +g212825 +S'the' +p212827 +tp212828 +a(g212825 +g212827 +S'painting.' +p212829 +tp212830 +a(g212827 +g212829 +S'the' +p212831 +tp212832 +a(g212829 +g212831 +S'pairing' +p212833 +tp212834 +a(g212831 +g212833 +S'of' +p212835 +tp212836 +a(g212833 +g212835 +S'unequal' +p212837 +tp212838 +a(g212835 +g212837 +S'couples' +p212839 +tp212840 +a(g212837 +g212839 +S'has' +p212841 +tp212842 +a(g212839 +g212841 +S'a' +p212843 +tp212844 +a(g212841 +g212843 +S'literary' +p212845 +tp212846 +a(g212843 +g212845 +S'history' +p212847 +tp212848 +a(g212845 +g212847 +S'dating' +p212849 +tp212850 +a(g212847 +g212849 +S'back' +p212851 +tp212852 +a(g212849 +g212851 +S'to' +p212853 +tp212854 +a(g212851 +g212853 +S'antiquity' +p212855 +tp212856 +a(g212853 +g212855 +S'when' +p212857 +tp212858 +a(g212855 +g212857 +S'plautus,' +p212859 +tp212860 +a(g212857 +g212859 +S'a' +p212861 +tp212862 +a(g212859 +g212861 +S'roman' +p212863 +tp212864 +a(g212861 +g212863 +S'comic' +p212865 +tp212866 +a(g212863 +g212865 +S'poet' +p212867 +tp212868 +a(g212865 +g212867 +S'from' +p212869 +tp212870 +a(g212867 +g212869 +S'the' +p212871 +tp212872 +a(g212869 +g212871 +S'3rd–century' +p212873 +tp212874 +a(g212871 +g212873 +S'bc,' +p212875 +tp212876 +a(g212873 +g212875 +S'cautioned' +p212877 +tp212878 +a(g212875 +g212877 +S'elderly' +p212879 +tp212880 +a(g212877 +g212879 +S'men' +p212881 +tp212882 +a(g212879 +g212881 +S'against' +p212883 +tp212884 +a(g212881 +g212883 +S'courting' +p212885 +tp212886 +a(g212883 +g212885 +S'younger' +p212887 +tp212888 +a(g212885 +g212887 +S'ladies.' +p212889 +tp212890 +a(g212887 +g212889 +S'by' +p212891 +tp212892 +a(g212889 +g212891 +S'the' +p212893 +tp212894 +a(g212891 +g212893 +S'late–15th' +p212895 +tp212896 +a(g212893 +g212895 +S'and' +p212897 +tp212898 +a(g212895 +g212897 +S'early–16th' +p212899 +tp212900 +a(g212897 +g212899 +S'centuries,' +p212901 +tp212902 +a(g212899 +g212901 +S'the' +p212903 +tp212904 +a(g212901 +g212903 +S'coupling' +p212905 +tp212906 +a(g212903 +g212905 +S'of' +p212907 +tp212908 +a(g212905 +g212907 +S'old' +p212909 +tp212910 +a(g212907 +g212909 +S'men' +p212911 +tp212912 +a(g212909 +g212911 +S'with' +p212913 +tp212914 +a(g212911 +g212913 +S'young' +p212915 +tp212916 +a(g212913 +g212915 +S'women' +p212917 +tp212918 +a(g212915 +g212917 +S'or' +p212919 +tp212920 +a(g212917 +g212919 +S'old' +p212921 +tp212922 +a(g212919 +g212921 +S'women' +p212923 +tp212924 +a(g212921 +g212923 +S'with' +p212925 +tp212926 +a(g212923 +g212925 +S'young' +p212927 +tp212928 +a(g212925 +g212927 +S'men' +p212929 +tp212930 +a(g212927 +g212929 +S'had' +p212931 +tp212932 +a(g212929 +g212931 +S'become' +p212933 +tp212934 +a(g212931 +g212933 +S'popular' +p212935 +tp212936 +a(g212933 +g212935 +S'themes' +p212937 +tp212938 +a(g212935 +g212937 +S'in' +p212939 +tp212940 +a(g212937 +g212939 +S'northern' +p212941 +tp212942 +a(g212939 +g212941 +S'european' +p212943 +tp212944 +a(g212941 +g212943 +S'art' +p212945 +tp212946 +a(g212943 +g212945 +S'and' +p212947 +tp212948 +a(g212945 +g212947 +S'literature.' +p212949 +tp212950 +a(g212947 +g212949 +S'this' +p212951 +tp212952 +a(g212949 +g212951 +S'painting' +p212953 +tp212954 +a(g212951 +g212953 +S'provides' +p212955 +tp212956 +a(g212953 +g212955 +S'a' +p212957 +tp212958 +a(g212955 +g212957 +S'clear' +p212959 +tp212960 +a(g212957 +g212959 +S'illustration' +p212961 +tp212962 +a(g212959 +g212961 +S'of' +p212963 +tp212964 +a(g212961 +g212963 +S'the' +p212965 +tp212966 +a(g212963 +g212965 +S'ideas' +p212967 +tp212968 +a(g212965 +g212967 +S'that' +p212969 +tp212970 +a(g212967 +g212969 +S'old' +p212971 +tp212972 +a(g212969 +g212971 +S'age,' +p212973 +tp212974 +a(g212971 +g212973 +S'especially' +p212975 +tp212976 +a(g212973 +g212975 +S'lecherous' +p212977 +tp212978 +a(g212975 +g212977 +S'old' +p212979 +tp212980 +a(g212977 +g212979 +S'age,' +p212981 +tp212982 +a(g212979 +g212981 +S'leads' +p212983 +tp212984 +a(g212981 +g212983 +S'to' +p212985 +tp212986 +a(g212983 +g212985 +S'foolishness—with' +p212987 +tp212988 +a(g212985 +g212987 +S'the' +p212989 +tp212990 +a(g212987 +g212989 +S'fool' +p212991 +tp212992 +a(g212989 +g212991 +S'participating' +p212993 +tp212994 +a(g212991 +g212993 +S'in' +p212995 +tp212996 +a(g212993 +g212995 +S'the' +p212997 +tp212998 +a(g212995 +g212997 +S'deception' +p212999 +tp213000 +a(g212997 +g212999 +S'by' +p213001 +tp213002 +a(g212999 +g213001 +S'helping' +p213003 +tp213004 +a(g213001 +g213003 +S'to' +p213005 +tp213006 +a(g213003 +g213005 +S'rob' +p213007 +tp213008 +a(g213005 +g213007 +S'the' +p213009 +tp213010 +a(g213007 +g213009 +S'old' +p213011 +tp213012 +a(g213009 +g213011 +S"man's" +p213013 +tp213014 +a(g213011 +g213013 +S'purse—and' +p213015 +tp213016 +a(g213013 +g213015 +S'that' +p213017 +tp213018 +a(g213015 +g213017 +S"women's" +p213019 +tp213020 +a(g213017 +g213019 +S'sexual' +p213021 +tp213022 +a(g213019 +g213021 +S'powers' +p213023 +tp213024 +a(g213021 +g213023 +S'cause' +p213025 +tp213026 +a(g213023 +g213025 +S'men' +p213027 +tp213028 +a(g213025 +g213027 +S'to' +p213029 +tp213030 +a(g213027 +g213029 +S'behave' +p213031 +tp213032 +a(g213029 +g213031 +S'absurdly' +p213033 +tp213034 +a(g213031 +g213033 +S'and' +p213035 +tp213036 +a(g213033 +g213035 +S'to' +p213037 +tp213038 +a(g213035 +g213037 +S'lose' +p213039 +tp213040 +a(g213037 +g213039 +S'their' +p213041 +tp213042 +a(g213039 +g213041 +S'wits' +p213043 +tp213044 +a(g213041 +g213043 +S'and' +p213045 +tp213046 +a(g213043 +g213045 +S'their' +p213047 +tp213048 +a(g213045 +g213047 +S'money.' +p213049 +tp213050 +a(g213047 +g213049 +S'the' +p213051 +tp213052 +a(g213049 +g213051 +S'deck' +p213053 +tp213054 +a(g213051 +g213053 +S'of' +p213055 +tp213056 +a(g213053 +g213055 +S'cards' +p213057 +tp213058 +a(g213055 +g213057 +S'may' +p213059 +tp213060 +a(g213057 +g213059 +S'allude' +p213061 +tp213062 +a(g213059 +g213061 +S'to' +p213063 +tp213064 +a(g213061 +g213063 +S'competition' +p213065 +tp213066 +a(g213063 +g213065 +S'between' +p213067 +tp213068 +a(g213065 +g213067 +S'the' +p213069 +tp213070 +a(g213067 +g213069 +S'sexes,' +p213071 +tp213072 +a(g213069 +g213071 +S'morally' +p213073 +tp213074 +a(g213071 +g213073 +S'loose' +p213075 +tp213076 +a(g213073 +g213075 +S'or' +p213077 +tp213078 +a(g213075 +g213077 +S'amorous' +p213079 +tp213080 +a(g213077 +g213079 +S'behavior,' +p213081 +tp213082 +a(g213079 +g213081 +S'and' +p213083 +tp213084 +a(g213081 +g213083 +S'the' +p213085 +tp213086 +a(g213083 +g213085 +S'loss' +p213087 +tp213088 +a(g213085 +g213087 +S'and' +p213089 +tp213090 +a(g213087 +g213089 +S'gain' +p213091 +tp213092 +a(g213089 +g213091 +S'of' +p213093 +tp213094 +a(g213091 +g213093 +S'money' +p213095 +tp213096 +a(g213093 +g213095 +S'through' +p213097 +tp213098 +a(g213095 +g213097 +S'gambling.' +p213099 +tp213100 +a(g213097 +g213099 +S'the' +p213101 +tp213102 +a(g213099 +g213101 +S'painting' +p213103 +tp213104 +a(g213101 +g213103 +S'is' +p213105 +tp213106 +a(g213103 +g213105 +S'an' +p213107 +tp213108 +a(g213105 +g213107 +S'example' +p213109 +tp213110 +a(g213107 +g213109 +S'of' +p213111 +tp213112 +a(g213109 +g213111 +S"massys'" +p213113 +tp213114 +a(g213111 +g213113 +S'ability' +p213115 +tp213116 +a(g213113 +g213115 +S'to' +p213117 +tp213118 +a(g213115 +g213117 +S'assimilate' +p213119 +tp213120 +a(g213117 +g213119 +S'elements' +p213121 +tp213122 +a(g213119 +g213121 +S'from' +p213123 +tp213124 +a(g213121 +g213123 +S'both' +p213125 +tp213126 +a(g213123 +g213125 +S'northern' +p213127 +tp213128 +a(g213125 +g213127 +S'and' +p213129 +tp213130 +a(g213127 +g213129 +S'italian' +p213131 +tp213132 +a(g213129 +g213131 +S'art.' +p213133 +tp213134 +a(g213131 +g213133 +S'apparently' +p213135 +tp213136 +a(g213133 +g213135 +S'familiar' +p213137 +tp213138 +a(g213135 +g213137 +S'with' +p213139 +tp213140 +a(g213137 +g213139 +S'leonardo' +p213141 +tp213142 +a(g213139 +g213141 +S'da' +p213143 +tp213144 +a(g213141 +g213143 +S"vinci's" +p213145 +tp213146 +a(g213143 +g213145 +S'grotesque' +p213147 +tp213148 +a(g213145 +g213147 +S'drawings' +p213149 +tp213150 +a(g213147 +g213149 +S'of' +p213151 +tp213152 +a(g213149 +g213151 +S'physiognomy' +p213153 +tp213154 +a(g213151 +g213153 +S'and' +p213155 +tp213156 +a(g213153 +g213155 +S'distortion,' +p213157 +tp213158 +a(g213155 +g213157 +S'massys' +p213159 +tp213160 +a(g213157 +g213159 +S'adapted' +p213161 +tp213162 +a(g213159 +g213161 +S'the' +p213163 +tp213164 +a(g213161 +g213163 +S'facial' +p213165 +tp213166 +a(g213163 +g213165 +S'type' +p213167 +tp213168 +a(g213165 +g213167 +S'for' +p213169 +tp213170 +a(g213167 +g213169 +S'the' +p213171 +tp213172 +a(g213169 +g213171 +S'old' +p213173 +tp213174 +a(g213171 +g213173 +S'lecher' +p213175 +tp213176 +a(g213173 +g213175 +S'from' +p213177 +tp213178 +a(g213175 +g213177 +S'one' +p213179 +tp213180 +a(g213177 +g213179 +S'of' +p213181 +tp213182 +a(g213179 +g213181 +S"leonardo's" +p213183 +tp213184 +a(g213181 +g213183 +S'caricatures,' +p213185 +tp213186 +a(g213183 +g213185 +S'and' +p213187 +tp213188 +a(g213185 +g213187 +S'the' +p213189 +tp213190 +a(g213187 +g213189 +S'complicated' +p213191 +tp213192 +a(g213189 +g213191 +S'pose' +p213193 +tp213194 +a(g213191 +g213193 +S'of' +p213195 +tp213196 +a(g213193 +g213195 +S'the' +p213197 +tp213198 +a(g213195 +g213197 +S'suitor' +p213199 +tp213200 +a(g213197 +g213199 +S'from' +p213201 +tp213202 +a(g213199 +g213201 +S"leonardo's" +p213203 +tp213204 +a(g213201 +g213203 +S'lost' +p213205 +tp213206 +a(g213203 +g213205 +S'drawing' +p213207 +tp213208 +a(g213205 +g213207 +S'of' +p213209 +tp213210 +a(g213207 +g213209 +S'an' +p213211 +tp213212 +a(g213209 +g213211 +S'ill–matched' +p213213 +tp213214 +a(g213211 +g213213 +S'pair,' +p213215 +tp213216 +a(g213213 +g213215 +S'known' +p213217 +tp213218 +a(g213215 +g213217 +S'today' +p213219 +tp213220 +a(g213217 +g213219 +S'through' +p213221 +tp213222 +a(g213219 +g213221 +S'a' +p213223 +tp213224 +a(g213221 +g213223 +S'later' +p213225 +tp213226 +a(g213223 +g213225 +S'copy.' +p213227 +tp213228 +a(g213225 +g213227 +S'henry' +p213229 +tp213230 +a(g213227 +g213229 +S'ossawa' +p213231 +tp213232 +a(g213229 +g213231 +S'tanner,' +p213233 +tp213234 +a(g213231 +g213233 +S'son' +p213235 +tp213236 +a(g213233 +g213235 +S'of' +p213237 +tp213238 +a(g213235 +g213237 +S'an' +p213239 +tp213240 +a(g213237 +g213239 +S'african' +p213241 +tp213242 +a(g213239 +g213241 +S'american' +p213243 +tp213244 +a(g213241 +g213243 +S'minister,' +p213245 +tp213246 +a(g213243 +g213245 +S'left' +p213247 +tp213248 +a(g213245 +g213247 +S'the' +p213249 +tp213250 +a(g213247 +g213249 +S'united' +p213251 +tp213252 +a(g213249 +g213251 +S'states' +p213253 +tp213254 +a(g213251 +g213253 +S'partly' +p213255 +tp213256 +a(g213253 +g213255 +S'to' +p213257 +tp213258 +a(g213255 +g213257 +S'escape' +p213259 +tp213260 +a(g213257 +g213259 +S'racial' +p213261 +tp213262 +a(g213259 +g213261 +S'prejudice.' +p213263 +tp213264 +a(g213261 +g213263 +S'after' +p213265 +tp213266 +a(g213263 +g213265 +S'studying' +p213267 +tp213268 +a(g213265 +g213267 +S'under' +p213269 +tp213270 +a(g213267 +g213269 +S'the' +p213271 +tp213272 +a(g213269 +g213271 +S'seine' +p213273 +tp213274 +a(g213271 +g213273 +S'plum' +p213275 +tp213276 +a(g213273 +g213275 +S'brandy' +p213277 +tp213278 +a(g213275 +g213277 +S'although' +p213279 +tp213280 +a(g213277 +g213279 +S'this' +p213281 +tp213282 +a(g213279 +g213281 +S'canvas' +p213283 +tp213284 +a(g213281 +g213283 +S'is' +p213285 +tp213286 +a(g213283 +g213285 +S'undated,' +p213287 +tp213288 +a(g213285 +g213287 +S'the' +p213289 +tp213290 +a(g213287 +g213289 +S'painting' +p213291 +tp213292 +a(g213289 +g213291 +S'may' +p213293 +tp213294 +a(g213291 +g213293 +S'have' +p213295 +tp213296 +a(g213293 +g213295 +S'been' +p213297 +tp213298 +a(g213295 +g213297 +S'inspired' +p213299 +tp213300 +a(g213297 +g213299 +S'by' +p213301 +tp213302 +a(g213299 +g213301 +S'an' +p213303 +tp213304 +a(g213301 +g213303 +S'actual' +p213305 +tp213306 +a(g213303 +g213305 +S'scene' +p213307 +tp213308 +a(g213305 +g213307 +S'witnessed' +p213309 +tp213310 +a(g213307 +g213309 +S'by' +p213311 +tp213312 +a(g213309 +g213311 +S'the' +p213313 +tp213314 +a(g213311 +g213313 +S'artist' +p213315 +tp213316 +a(g213313 +g213315 +S'at' +p213317 +tp213318 +a(g213315 +g213317 +S'the' +p213319 +tp213320 +a(g213317 +g213319 +S'café' +p213321 +tp213322 +a(g213319 +g213321 +S'de' +p213323 +tp213324 +a(g213321 +g213323 +S'la' +p213325 +tp213326 +a(g213323 +g213325 +S'nouvelle-athènes,' +p213327 +tp213328 +a(g213325 +g213327 +S'though' +p213329 +tp213330 +a(g213327 +g213329 +S'manet' +p213331 +tp213332 +a(g213329 +g213331 +S'appears' +p213333 +tp213334 +a(g213331 +g213333 +S'to' +p213335 +tp213336 +a(g213333 +g213335 +S'have' +p213337 +tp213338 +a(g213335 +g213337 +S'taken' +p213339 +tp213340 +a(g213337 +g213339 +S'certain' +p213341 +tp213342 +a(g213339 +g213341 +S'liberties' +p213343 +tp213344 +a(g213341 +g213343 +S'in' +p213345 +tp213346 +a(g213343 +g213345 +S'his' +p213347 +tp213348 +a(g213345 +g213347 +S'portrayal' +p213349 +tp213350 +a(g213347 +g213349 +S'of' +p213351 +tp213352 +a(g213349 +g213351 +S'the' +p213353 +tp213354 +a(g213351 +g213353 +S'setting.' +p213355 +tp213356 +a(g213353 +g213355 +S'when' +p213357 +tp213358 +a(g213355 +g213357 +S'compared' +p213359 +tp213360 +a(g213357 +g213359 +S'with' +p213361 +tp213362 +a(g213359 +g213361 +S'other' +p213363 +tp213364 +a(g213361 +g213363 +S'paintings' +p213365 +tp213366 +a(g213363 +g213365 +S'depicting' +p213367 +tp213368 +a(g213365 +g213367 +S'the' +p213369 +tp213370 +a(g213367 +g213369 +S'same' +p213371 +tp213372 +a(g213369 +g213371 +S'locale—most' +p213373 +tp213374 +a(g213371 +g213373 +S'notably' +p213375 +tp213376 +a(g213373 +g213375 +S'degas\xe2\x80\x99' +p213377 +tp213378 +a(g213375 +g213377 +S'canvas' +p213379 +tp213380 +a(g213377 +g213379 +S'(text' +p213381 +tp213382 +a(g213379 +g213381 +S'by' +p213383 +tp213384 +a(g213381 +g213383 +S'kimberly' +p213385 +tp213386 +a(g213383 +g213385 +S'jones,' +p213387 +tp213388 +a(g213385 +g213387 +S'notes' +p213389 +tp213390 +a(g213387 +g213389 +S'' +p213393 +tp213394 +a(g213391 +g213393 +S'' +p213397 +tp213398 +a(g213395 +g213397 +S'in' +p213399 +tp213400 +a(g213397 +g213399 +S'1960' +p213401 +tp213402 +a(g213399 +g213401 +S'andy' +p213403 +tp213404 +a(g213401 +g213403 +S'warhol' +p213405 +tp213406 +a(g213403 +g213405 +S'began' +p213407 +tp213408 +a(g213405 +g213407 +S'making' +p213409 +tp213410 +a(g213407 +g213409 +S'the' +p213411 +tp213412 +a(g213409 +g213411 +S'paintings' +p213413 +tp213414 +a(g213411 +g213413 +S'of' +p213415 +tp213416 +a(g213413 +g213415 +S'comic' +p213417 +tp213418 +a(g213415 +g213417 +S'strips,' +p213419 +tp213420 +a(g213417 +g213419 +S'newspaper' +p213421 +tp213422 +a(g213419 +g213421 +S'advertisements,' +p213423 +tp213424 +a(g213421 +g213423 +S'and' +p213425 +tp213426 +a(g213423 +g213425 +S'mass-produced' +p213427 +tp213428 +a(g213425 +g213427 +S'items' +p213429 +tp213430 +a(g213427 +g213429 +S'that' +p213431 +tp213432 +a(g213429 +g213431 +S'would' +p213433 +tp213434 +a(g213431 +g213433 +S'quickly' +p213435 +tp213436 +a(g213433 +g213435 +S'earn' +p213437 +tp213438 +a(g213435 +g213437 +S'him' +p213439 +tp213440 +a(g213437 +g213439 +S'the' +p213441 +tp213442 +a(g213439 +g213441 +S'reputation' +p213443 +tp213444 +a(g213441 +g213443 +S'as' +p213445 +tp213446 +a(g213443 +g213445 +S'a' +p213447 +tp213448 +a(g213445 +g213447 +S'leader' +p213449 +tp213450 +a(g213447 +g213449 +S'of' +p213451 +tp213452 +a(g213449 +g213451 +S'the' +p213453 +tp213454 +a(g213451 +g213453 +S'new' +p213455 +tp213456 +a(g213453 +g213455 +S'pop' +p213457 +tp213458 +a(g213455 +g213457 +S'movement.' +p213459 +tp213460 +a(g213457 +g213459 +S'the' +p213461 +tp213462 +a(g213459 +g213461 +S'straightforward' +p213463 +tp213464 +a(g213461 +g213463 +S'depiction' +p213465 +tp213466 +a(g213463 +g213465 +S'of' +p213467 +tp213468 +a(g213465 +g213467 +S'these' +p213469 +tp213470 +a(g213467 +g213469 +S'banal' +p213471 +tp213472 +a(g213469 +g213471 +S'subjects' +p213473 +tp213474 +a(g213471 +g213473 +S'became' +p213475 +tp213476 +a(g213473 +g213475 +S'a' +p213477 +tp213478 +a(g213475 +g213477 +S'hallmark' +p213479 +tp213480 +a(g213477 +g213479 +S'of' +p213481 +tp213482 +a(g213479 +g213481 +S'his' +p213483 +tp213484 +a(g213481 +g213483 +S'style,' +p213485 +tp213486 +a(g213483 +g213485 +S'one' +p213487 +tp213488 +a(g213485 +g213487 +S'that' +p213489 +tp213490 +a(g213487 +g213489 +S'marked' +p213491 +tp213492 +a(g213489 +g213491 +S'a' +p213493 +tp213494 +a(g213491 +g213493 +S'substantial' +p213495 +tp213496 +a(g213493 +g213495 +S'departure' +p213497 +tp213498 +a(g213495 +g213497 +S'from' +p213499 +tp213500 +a(g213497 +g213499 +S'the' +p213501 +tp213502 +a(g213499 +g213501 +S'heavily' +p213503 +tp213504 +a(g213501 +g213503 +S'worked' +p213505 +tp213506 +a(g213503 +g213505 +S'surfaces' +p213507 +tp213508 +a(g213505 +g213507 +S'of' +p213509 +tp213510 +a(g213507 +g213509 +S'many' +p213511 +tp213512 +a(g213509 +g213511 +S'abstract' +p213513 +tp213514 +a(g213511 +g213513 +S'expressionist' +p213515 +tp213516 +a(g213513 +g213515 +S'canvases.' +p213517 +tp213518 +a(g213515 +g213517 +S'early' +p213519 +tp213520 +a(g213517 +g213519 +S'in' +p213521 +tp213522 +a(g213519 +g213521 +S'1962' +p213523 +tp213524 +a(g213521 +g213523 +S'the' +p213525 +tp213526 +a(g213523 +g213525 +S'artist' +p213527 +tp213528 +a(g213525 +g213527 +S'created' +p213529 +tp213530 +a(g213527 +g213529 +S'a' +p213531 +tp213532 +a(g213529 +g213531 +S'number' +p213533 +tp213534 +a(g213531 +g213533 +S'of' +p213535 +tp213536 +a(g213533 +g213535 +S'paintings' +p213537 +tp213538 +a(g213535 +g213537 +S'that' +p213539 +tp213540 +a(g213537 +g213539 +S'reproduce' +p213541 +tp213542 +a(g213539 +g213541 +S'the' +p213543 +tp213544 +a(g213541 +g213543 +S'front' +p213545 +tp213546 +a(g213543 +g213545 +S'pages' +p213547 +tp213548 +a(g213545 +g213547 +S'of' +p213549 +tp213550 +a(g213547 +g213549 +S'newspapers.' +p213551 +tp213552 +a(g213549 +g213551 +S'lifting' +p213553 +tp213554 +a(g213551 +g213553 +S'this' +p213555 +tp213556 +a(g213553 +g213555 +S'ready-made' +p213557 +tp213558 +a(g213555 +g213557 +S'imagery' +p213559 +tp213560 +a(g213557 +g213559 +S'wholesale' +p213561 +tp213562 +a(g213559 +g213561 +S'from' +p213563 +tp213564 +a(g213561 +g213563 +S'its' +p213565 +tp213566 +a(g213563 +g213565 +S'source,' +p213567 +tp213568 +a(g213565 +g213567 +S'warhol' +p213569 +tp213570 +a(g213567 +g213569 +S'replicated' +p213571 +tp213572 +a(g213569 +g213571 +S'the' +p213573 +tp213574 +a(g213571 +g213573 +S'close-up' +p213575 +tp213576 +a(g213573 +g213575 +S'photos' +p213577 +tp213578 +a(g213575 +g213577 +S'and' +p213579 +tp213580 +a(g213577 +g213579 +S'dramatic' +p213581 +tp213582 +a(g213579 +g213581 +S'headlines' +p213583 +tp213584 +a(g213581 +g213583 +S'of' +p213585 +tp213586 +a(g213583 +g213585 +S'the' +p213587 +tp213588 +a(g213585 +g213587 +S'tabloid,' +p213589 +tp213590 +a(g213587 +g213589 +S'here' +p213591 +tp213592 +a(g213589 +g213591 +S'announcing' +p213593 +tp213594 +a(g213591 +g213593 +S'the' +p213595 +tp213596 +a(g213593 +g213595 +S'birth' +p213597 +tp213598 +a(g213595 +g213597 +S'of' +p213599 +tp213600 +a(g213597 +g213599 +S'princess' +p213601 +tp213602 +a(g213599 +g213601 +S"margaret's" +p213603 +tp213604 +a(g213601 +g213603 +S'son.' +p213605 +tp213606 +a(g213603 +g213605 +S'designed' +p213607 +tp213608 +a(g213605 +g213607 +S'for' +p213609 +tp213610 +a(g213607 +g213609 +S'immediate' +p213611 +tp213612 +a(g213609 +g213611 +S'accessibility' +p213613 +tp213614 +a(g213611 +g213613 +S'and' +p213615 +tp213616 +a(g213613 +g213615 +S'maximum' +p213617 +tp213618 +a(g213615 +g213617 +S'dramatic' +p213619 +tp213620 +a(g213617 +g213619 +S'impact,' +p213621 +tp213622 +a(g213619 +g213621 +S'the' +p213623 +tp213624 +a(g213621 +g213623 +S'tabloid' +p213625 +tp213626 +a(g213623 +g213625 +S'format' +p213627 +tp213628 +a(g213625 +g213627 +S'also' +p213629 +tp213630 +a(g213627 +g213629 +S'provided' +p213631 +tp213632 +a(g213629 +g213631 +S'the' +p213633 +tp213634 +a(g213631 +g213633 +S'artist' +p213635 +tp213636 +a(g213633 +g213635 +S'with' +p213637 +tp213638 +a(g213635 +g213637 +S'a' +p213639 +tp213640 +a(g213637 +g213639 +S'tightly' +p213641 +tp213642 +a(g213639 +g213641 +S'organized,' +p213643 +tp213644 +a(g213641 +g213643 +S'rectilinear' +p213645 +tp213646 +a(g213643 +g213645 +S'structure.' +p213647 +tp213648 +a(g213645 +g213647 +S'the' +p213649 +tp213650 +a(g213647 +g213649 +S'reproductive' +p213651 +tp213652 +a(g213649 +g213651 +S'nature' +p213653 +tp213654 +a(g213651 +g213653 +S'of' +p213655 +tp213656 +a(g213653 +g213655 +S'the' +p213657 +tp213658 +a(g213655 +g213657 +S'subject' +p213659 +tp213660 +a(g213657 +g213659 +S'and' +p213661 +tp213662 +a(g213659 +g213661 +S'the' +p213663 +tp213664 +a(g213661 +g213663 +S'generalized' +p213665 +tp213666 +a(g213663 +g213665 +S'treatment' +p213667 +tp213668 +a(g213665 +g213667 +S'of' +p213669 +tp213670 +a(g213667 +g213669 +S'the' +p213671 +tp213672 +a(g213669 +g213671 +S'imagery,' +p213673 +tp213674 +a(g213671 +g213673 +S'rendered' +p213675 +tp213676 +a(g213673 +g213675 +S'with' +p213677 +tp213678 +a(g213675 +g213677 +S'a' +p213679 +tp213680 +a(g213677 +g213679 +S'minimum' +p213681 +tp213682 +a(g213679 +g213681 +S'of' +p213683 +tp213684 +a(g213681 +g213683 +S'detail,' +p213685 +tp213686 +a(g213683 +g213685 +S'belie' +p213687 +tp213688 +a(g213685 +g213687 +S'the' +p213689 +tp213690 +a(g213687 +g213689 +S'fact' +p213691 +tp213692 +a(g213689 +g213691 +S'that' +p213693 +tp213694 +a(g213691 +g213693 +S'the' +p213695 +tp213696 +a(g213693 +g213695 +S'canvas' +p213697 +tp213698 +a(g213695 +g213697 +S'was' +p213699 +tp213700 +a(g213697 +g213699 +S'painted' +p213701 +tp213702 +a(g213699 +g213701 +S'by' +p213703 +tp213704 +a(g213701 +g213703 +S'hand.' +p213705 +tp213706 +a(g213703 +g213705 +S'a' +p213707 +tp213708 +a(g213705 +g213707 +S'boy' +p213709 +tp213710 +a(g213707 +g213709 +S'for' +p213711 +tp213712 +a(g213709 +g213711 +S'meg' +p213713 +tp213714 +a(g213711 +g213713 +S'the' +p213715 +tp213716 +a(g213713 +g213715 +S'emphasis' +p213717 +tp213718 +a(g213715 +g213717 +S'on' +p213719 +tp213720 +a(g213717 +g213719 +S'light' +p213721 +tp213722 +a(g213719 +g213721 +S'and' +p213723 +tp213724 +a(g213721 +g213723 +S'reflection' +p213725 +tp213726 +a(g213723 +g213725 +S'in' +p213727 +tp213728 +a(g213725 +g213727 +S'whereas' +p213729 +tp213730 +a(g213727 +g213729 +S'the' +p213731 +tp213732 +a(g213729 +g213731 +S'impressionists' +p213733 +tp213734 +a(g213731 +g213733 +S'worked' +p213735 +tp213736 +a(g213733 +g213735 +S'swiftly' +p213737 +tp213738 +a(g213735 +g213737 +S'in' +p213739 +tp213740 +a(g213737 +g213739 +S'an' +p213741 +tp213742 +a(g213739 +g213741 +S'attempt' +p213743 +tp213744 +a(g213741 +g213743 +S'to' +p213745 +tp213746 +a(g213743 +g213745 +S'capture' +p213747 +tp213748 +a(g213745 +g213747 +S'transitory' +p213749 +tp213750 +a(g213747 +g213749 +S'light' +p213751 +tp213752 +a(g213749 +g213751 +S'effects,' +p213753 +tp213754 +a(g213751 +g213753 +S'cézanne' +p213755 +tp213756 +a(g213753 +g213755 +S'pursued' +p213757 +tp213758 +a(g213755 +g213757 +S'a' +p213759 +tp213760 +a(g213757 +g213759 +S'slow' +p213761 +tp213762 +a(g213759 +g213761 +S'and' +p213763 +tp213764 +a(g213761 +g213763 +S'deliberate' +p213765 +tp213766 +a(g213763 +g213765 +S'method' +p213767 +tp213768 +a(g213765 +g213767 +S'of' +p213769 +tp213770 +a(g213767 +g213769 +S'painting,' +p213771 +tp213772 +a(g213769 +g213771 +S'laboring' +p213773 +tp213774 +a(g213771 +g213773 +S'over' +p213775 +tp213776 +a(g213773 +g213775 +S'the' +p213777 +tp213778 +a(g213775 +g213777 +S'right' +p213779 +tp213780 +a(g213777 +g213779 +S'stroke' +p213781 +tp213782 +a(g213779 +g213781 +S'of' +p213783 +tp213784 +a(g213781 +g213783 +S'color' +p213785 +tp213786 +a(g213783 +g213785 +S'to' +p213787 +tp213788 +a(g213785 +g213787 +S'use' +p213789 +tp213790 +a(g213787 +g213789 +S'in' +p213791 +tp213792 +a(g213789 +g213791 +S'any' +p213793 +tp213794 +a(g213791 +g213793 +S'given' +p213795 +tp213796 +a(g213793 +g213795 +S'passage.' +p213797 +tp213798 +a(g213795 +g213797 +S'in' +p213799 +tp213800 +a(g213797 +g213799 +S'addition' +p213801 +tp213802 +a(g213799 +g213801 +S'to' +p213803 +tp213804 +a(g213801 +g213803 +S'the' +p213805 +tp213806 +a(g213803 +g213805 +S'unpainted' +p213807 +tp213808 +a(g213805 +g213807 +S'areas' +p213809 +tp213810 +a(g213807 +g213809 +S'here,' +p213811 +tp213812 +a(g213809 +g213811 +S'extremely' +p213813 +tp213814 +a(g213811 +g213813 +S'loose' +p213815 +tp213816 +a(g213813 +g213815 +S'handling' +p213817 +tp213818 +a(g213815 +g213817 +S'and' +p213819 +tp213820 +a(g213817 +g213819 +S'seemingly' +p213821 +tp213822 +a(g213819 +g213821 +S'random' +p213823 +tp213824 +a(g213821 +g213823 +S'touches' +p213825 +tp213826 +a(g213823 +g213825 +S'of' +p213827 +tp213828 +a(g213825 +g213827 +S'color' +p213829 +tp213830 +a(g213827 +g213829 +S'or' +p213831 +tp213832 +a(g213829 +g213831 +S'unresolved' +p213833 +tp213834 +a(g213831 +g213833 +S'passages' +p213835 +tp213836 +a(g213833 +g213835 +S'of' +p213837 +tp213838 +a(g213835 +g213837 +S'paint' +p213839 +tp213840 +a(g213837 +g213839 +S'suggest' +p213841 +tp213842 +a(g213839 +g213841 +S'that' +p213843 +tp213844 +a(g213841 +g213843 +S'cézanne' +p213845 +tp213846 +a(g213843 +g213845 +S'may' +p213847 +tp213848 +a(g213845 +g213847 +S'still' +p213849 +tp213850 +a(g213847 +g213849 +S'have' +p213851 +tp213852 +a(g213849 +g213851 +S'been' +p213853 +tp213854 +a(g213851 +g213853 +S'considering' +p213855 +tp213856 +a(g213853 +g213855 +S'the' +p213857 +tp213858 +a(g213855 +g213857 +S'next' +p213859 +tp213860 +a(g213857 +g213859 +S'stroke' +p213861 +tp213862 +a(g213859 +g213861 +S'to' +p213863 +tp213864 +a(g213861 +g213863 +S'add.' +p213865 +tp213866 +a(g213863 +g213865 +S'a' +p213867 +tp213868 +a(g213865 +g213867 +S'curious' +p213869 +tp213870 +a(g213867 +g213869 +S'red' +p213871 +tp213872 +a(g213869 +g213871 +S'dab' +p213873 +tp213874 +a(g213871 +g213873 +S'is' +p213875 +tp213876 +a(g213873 +g213875 +S'found' +p213877 +tp213878 +a(g213875 +g213877 +S'above' +p213879 +tp213880 +a(g213877 +g213879 +S'the' +p213881 +tp213882 +a(g213879 +g213881 +S'roof' +p213883 +tp213884 +a(g213881 +g213883 +S'of' +p213885 +tp213886 +a(g213883 +g213885 +S'the' +p213887 +tp213888 +a(g213885 +g213887 +S'larger' +p213889 +tp213890 +a(g213887 +g213889 +S'house,' +p213891 +tp213892 +a(g213889 +g213891 +S'and' +p213893 +tp213894 +a(g213891 +g213893 +S'small' +p213895 +tp213896 +a(g213893 +g213895 +S'patches' +p213897 +tp213898 +a(g213895 +g213897 +S'of' +p213899 +tp213900 +a(g213897 +g213899 +S'bright' +p213901 +tp213902 +a(g213899 +g213901 +S'blue' +p213903 +tp213904 +a(g213901 +g213903 +S'sit' +p213905 +tp213906 +a(g213903 +g213905 +S'atop' +p213907 +tp213908 +a(g213905 +g213907 +S'the' +p213909 +tp213910 +a(g213907 +g213909 +S'foliage' +p213911 +tp213912 +a(g213909 +g213911 +S'at' +p213913 +tp213914 +a(g213911 +g213913 +S'center' +p213915 +tp213916 +a(g213913 +g213915 +S'left.' +p213917 +tp213918 +a(g213915 +g213917 +S'on' +p213919 +tp213920 +a(g213917 +g213919 +S'the' +p213921 +tp213922 +a(g213919 +g213921 +S'riverbank' +p213923 +tp213924 +a(g213921 +g213923 +S'at' +p213925 +tp213926 +a(g213923 +g213925 +S'right' +p213927 +tp213928 +a(g213925 +g213927 +S'are' +p213929 +tp213930 +a(g213927 +g213929 +S'streaks' +p213931 +tp213932 +a(g213929 +g213931 +S'of' +p213933 +tp213934 +a(g213931 +g213933 +S'yellow,' +p213935 +tp213936 +a(g213933 +g213935 +S'perhaps' +p213937 +tp213938 +a(g213935 +g213937 +S'the' +p213939 +tp213940 +a(g213937 +g213939 +S'beginnings' +p213941 +tp213942 +a(g213939 +g213941 +S'of' +p213943 +tp213944 +a(g213941 +g213943 +S'efflorescence.' +p213945 +tp213946 +a(g213943 +g213945 +S'the' +p213947 +tp213948 +a(g213945 +g213947 +S'concentration' +p213949 +tp213950 +a(g213947 +g213949 +S'of' +p213951 +tp213952 +a(g213949 +g213951 +S'color' +p213953 +tp213954 +a(g213951 +g213953 +S'in' +p213955 +tp213956 +a(g213953 +g213955 +S'the' +p213957 +tp213958 +a(g213955 +g213957 +S'central' +p213959 +tp213960 +a(g213957 +g213959 +S'motif' +p213961 +tp213962 +a(g213959 +g213961 +S'of' +p213963 +tp213964 +a(g213961 +g213963 +S'the' +p213965 +tp213966 +a(g213963 +g213965 +S'blue' +p213967 +tp213968 +a(g213965 +g213967 +S'house,' +p213969 +tp213970 +a(g213967 +g213969 +S'in' +p213971 +tp213972 +a(g213969 +g213971 +S'the' +p213973 +tp213974 +a(g213971 +g213973 +S'boat' +p213975 +tp213976 +a(g213973 +g213975 +S'with' +p213977 +tp213978 +a(g213975 +g213977 +S'blue' +p213979 +tp213980 +a(g213977 +g213979 +S'cabin,' +p213981 +tp213982 +a(g213979 +g213981 +S'and' +p213983 +tp213984 +a(g213981 +g213983 +S'in' +p213985 +tp213986 +a(g213983 +g213985 +S'the' +p213987 +tp213988 +a(g213985 +g213987 +S'green' +p213989 +tp213990 +a(g213987 +g213989 +S'houseboat' +p213991 +tp213992 +a(g213989 +g213991 +S'next' +p213993 +tp213994 +a(g213991 +g213993 +S'to' +p213995 +tp213996 +a(g213993 +g213995 +S'it' +p213997 +tp213998 +a(g213995 +g213997 +S'gives' +p213999 +tp214000 +a(g213997 +g213999 +S'an' +p214001 +tp214002 +a(g213999 +g214001 +S'indication' +p214003 +tp214004 +a(g214001 +g214003 +S'of' +p214005 +tp214006 +a(g214003 +g214005 +S'the' +p214007 +tp214008 +a(g214005 +g214007 +S'artist\xe2\x80\x99s' +p214009 +tp214010 +a(g214007 +g214009 +S'working' +p214011 +tp214012 +a(g214009 +g214011 +S'method:' +p214013 +tp214014 +a(g214011 +g214013 +S'he' +p214015 +tp214016 +a(g214013 +g214015 +S'started' +p214017 +tp214018 +a(g214015 +g214017 +S'in' +p214019 +tp214020 +a(g214017 +g214019 +S'the' +p214021 +tp214022 +a(g214019 +g214021 +S'middle' +p214023 +tp214024 +a(g214021 +g214023 +S'of' +p214025 +tp214026 +a(g214023 +g214025 +S'the' +p214027 +tp214028 +a(g214025 +g214027 +S'composition' +p214029 +tp214030 +a(g214027 +g214029 +S'and' +p214031 +tp214032 +a(g214029 +g214031 +S'moved' +p214033 +tp214034 +a(g214031 +g214033 +S'outward.' +p214035 +tp214036 +a(g214033 +g214035 +S'cézanne\xe2\x80\x99s' +p214037 +tp214038 +a(g214035 +g214037 +S'work,' +p214039 +tp214040 +a(g214037 +g214039 +S'especially' +p214041 +tp214042 +a(g214039 +g214041 +S'landscape' +p214043 +tp214044 +a(g214041 +g214043 +S'paintings,' +p214045 +tp214046 +a(g214043 +g214045 +S'increasingly' +p214047 +tp214048 +a(g214045 +g214047 +S'verged' +p214049 +tp214050 +a(g214047 +g214049 +S'on' +p214051 +tp214052 +a(g214049 +g214051 +S'abstraction' +p214053 +tp214054 +a(g214051 +g214053 +S'in' +p214055 +tp214056 +a(g214053 +g214055 +S'the' +p214057 +tp214058 +a(g214055 +g214057 +S'artist\xe2\x80\x99s' +p214059 +tp214060 +a(g214057 +g214059 +S'last' +p214061 +tp214062 +a(g214059 +g214061 +S'two' +p214063 +tp214064 +a(g214061 +g214063 +S'decades.' +p214065 +tp214066 +a(g214063 +g214065 +S'here' +p214067 +tp214068 +a(g214065 +g214067 +S'structures' +p214069 +tp214070 +a(g214067 +g214069 +S'on' +p214071 +tp214072 +a(g214069 +g214071 +S'the' +p214073 +tp214074 +a(g214071 +g214073 +S'bank' +p214075 +tp214076 +a(g214073 +g214075 +S'and' +p214077 +tp214078 +a(g214075 +g214077 +S'on' +p214079 +tp214080 +a(g214077 +g214079 +S'the' +p214081 +tp214082 +a(g214079 +g214081 +S'river' +p214083 +tp214084 +a(g214081 +g214083 +S'are' +p214085 +tp214086 +a(g214083 +g214085 +S'simplified' +p214087 +tp214088 +a(g214085 +g214087 +S'into' +p214089 +tp214090 +a(g214087 +g214089 +S'geometric' +p214091 +tp214092 +a(g214089 +g214091 +S'shapes' +p214093 +tp214094 +a(g214091 +g214093 +S'that' +p214095 +tp214096 +a(g214093 +g214095 +S'contrast' +p214097 +tp214098 +a(g214095 +g214097 +S'with' +p214099 +tp214100 +a(g214097 +g214099 +S'the' +p214101 +tp214102 +a(g214099 +g214101 +S'organic' +p214103 +tp214104 +a(g214101 +g214103 +S'lushness' +p214105 +tp214106 +a(g214103 +g214105 +S'surrounding' +p214107 +tp214108 +a(g214105 +g214107 +S'them.' +p214109 +tp214110 +a(g214107 +g214109 +S'the' +p214111 +tp214112 +a(g214109 +g214111 +S'composition' +p214113 +tp214114 +a(g214111 +g214113 +S'threatens' +p214115 +tp214116 +a(g214113 +g214115 +S'to' +p214117 +tp214118 +a(g214115 +g214117 +S'dissolve' +p214119 +tp214120 +a(g214117 +g214119 +S'into' +p214121 +tp214122 +a(g214119 +g214121 +S'patches' +p214123 +tp214124 +a(g214121 +g214123 +S'of' +p214125 +tp214126 +a(g214123 +g214125 +S'color,' +p214127 +tp214128 +a(g214125 +g214127 +S'and' +p214129 +tp214130 +a(g214127 +g214129 +S'pictorial' +p214131 +tp214132 +a(g214129 +g214131 +S'space' +p214133 +tp214134 +a(g214131 +g214133 +S'is' +p214135 +tp214136 +a(g214133 +g214135 +S'flattened.' +p214137 +tp214138 +a(g214135 +g214137 +S'touches' +p214139 +tp214140 +a(g214137 +g214139 +S'of' +p214141 +tp214142 +a(g214139 +g214141 +S'whitish' +p214143 +tp214144 +a(g214141 +g214143 +S'blue' +p214145 +tp214146 +a(g214143 +g214145 +S'pigment—whether' +p214147 +tp214148 +a(g214145 +g214147 +S'signaling' +p214149 +tp214150 +a(g214147 +g214149 +S'sky,' +p214151 +tp214152 +a(g214149 +g214151 +S'clouds,' +p214153 +tp214154 +a(g214151 +g214153 +S'or' +p214155 +tp214156 +a(g214153 +g214155 +S'mist' +p214157 +tp214158 +a(g214155 +g214157 +S'is' +p214159 +tp214160 +a(g214157 +g214159 +S'unclear—overlap' +p214161 +tp214162 +a(g214159 +g214161 +S'onto' +p214163 +tp214164 +a(g214161 +g214163 +S'the' +p214165 +tp214166 +a(g214163 +g214165 +S'upper' +p214167 +tp214168 +a(g214165 +g214167 +S'edges' +p214169 +tp214170 +a(g214167 +g214169 +S'of' +p214171 +tp214172 +a(g214169 +g214171 +S'foliage,' +p214173 +tp214174 +a(g214171 +g214173 +S'thus' +p214175 +tp214176 +a(g214173 +g214175 +S'preventing' +p214177 +tp214178 +a(g214175 +g214177 +S'an' +p214179 +tp214180 +a(g214177 +g214179 +S'illusionistic' +p214181 +tp214182 +a(g214179 +g214181 +S'reading' +p214183 +tp214184 +a(g214181 +g214183 +S'of' +p214185 +tp214186 +a(g214183 +g214185 +S'depth.' +p214187 +tp214188 +a(g214185 +g214187 +S'these' +p214189 +tp214190 +a(g214187 +g214189 +S'abstractions' +p214191 +tp214192 +a(g214189 +g214191 +S'have' +p214193 +tp214194 +a(g214191 +g214193 +S'appealed' +p214195 +tp214196 +a(g214193 +g214195 +S'to' +p214197 +tp214198 +a(g214195 +g214197 +S'modern' +p214199 +tp214200 +a(g214197 +g214199 +S'sensibilities.' +p214201 +tp214202 +a(g214199 +g214201 +S'near' +p214203 +tp214204 +a(g214201 +g214203 +S'the' +p214205 +tp214206 +a(g214203 +g214205 +S'end' +p214207 +tp214208 +a(g214205 +g214207 +S'of' +p214209 +tp214210 +a(g214207 +g214209 +S'his' +p214211 +tp214212 +a(g214209 +g214211 +S'life,' +p214213 +tp214214 +a(g214211 +g214213 +S'cézanne\xe2\x80\x99s' +p214215 +tp214216 +a(g214213 +g214215 +S'critical' +p214217 +tp214218 +a(g214215 +g214217 +S'reception—once' +p214219 +tp214220 +a(g214217 +g214219 +S'so' +p214221 +tp214222 +a(g214219 +g214221 +S'derisive—became' +p214223 +tp214224 +a(g214221 +g214223 +S'more' +p214225 +tp214226 +a(g214223 +g214225 +S'open' +p214227 +tp214228 +a(g214225 +g214227 +S'to' +p214229 +tp214230 +a(g214227 +g214229 +S'this' +p214231 +tp214232 +a(g214229 +g214231 +S'aesthetic,' +p214233 +tp214234 +a(g214231 +g214233 +S'which' +p214235 +tp214236 +a(g214233 +g214235 +S'also' +p214237 +tp214238 +a(g214235 +g214237 +S'had' +p214239 +tp214240 +a(g214237 +g214239 +S'an' +p214241 +tp214242 +a(g214239 +g214241 +S'enormous' +p214243 +tp214244 +a(g214241 +g214243 +S'impact' +p214245 +tp214246 +a(g214243 +g214245 +S'on' +p214247 +tp214248 +a(g214245 +g214247 +S'successive' +p214249 +tp214250 +a(g214247 +g214249 +S'generations' +p214251 +tp214252 +a(g214249 +g214251 +S'of' +p214253 +tp214254 +a(g214251 +g214253 +S'artists.' +p214255 +tp214256 +a(g214253 +g214255 +S'gustave' +p214257 +tp214258 +a(g214255 +g214257 +S'geffroy,' +p214259 +tp214260 +a(g214257 +g214259 +S'a' +p214261 +tp214262 +a(g214259 +g214261 +S'journalist' +p214263 +tp214264 +a(g214261 +g214263 +S'who' +p214265 +tp214266 +a(g214263 +g214265 +S'was' +p214267 +tp214268 +a(g214265 +g214267 +S'among' +p214269 +tp214270 +a(g214267 +g214269 +S'the' +p214271 +tp214272 +a(g214269 +g214271 +S'earliest' +p214273 +tp214274 +a(g214271 +g214273 +S'critics' +p214275 +tp214276 +a(g214273 +g214275 +S'sympathetic' +p214277 +tp214278 +a(g214275 +g214277 +S'to' +p214279 +tp214280 +a(g214277 +g214279 +S'cézanne,' +p214281 +tp214282 +a(g214279 +g214281 +S'signaled' +p214283 +tp214284 +a(g214281 +g214283 +S'this' +p214285 +tp214286 +a(g214283 +g214285 +S'new' +p214287 +tp214288 +a(g214285 +g214287 +S'perspective' +p214289 +tp214290 +a(g214287 +g214289 +S'when' +p214291 +tp214292 +a(g214289 +g214291 +S'he' +p214293 +tp214294 +a(g214291 +g214293 +S'wrote' +p214295 +tp214296 +a(g214293 +g214295 +S'in' +p214297 +tp214298 +a(g214295 +g214297 +S'1901:' +p214299 +tp214300 +a(g214297 +g214299 +S'"it' +p214301 +tp214302 +a(g214299 +g214301 +S'has' +p214303 +tp214304 +a(g214301 +g214303 +S'been' +p214305 +tp214306 +a(g214303 +g214305 +S'noted' +p214307 +tp214308 +a(g214305 +g214307 +S'that' +p214309 +tp214310 +a(g214307 +g214309 +S'some' +p214311 +tp214312 +a(g214309 +g214311 +S'of' +p214313 +tp214314 +a(g214311 +g214313 +S'cézanne\xe2\x80\x99s' +p214315 +tp214316 +a(g214313 +g214315 +S'paintings' +p214317 +tp214318 +a(g214315 +g214317 +S'are' +p214319 +tp214320 +a(g214317 +g214319 +S'not' +p214321 +tp214322 +a(g214319 +g214321 +S'finished.' +p214323 +tp214324 +a(g214321 +g214323 +S'what' +p214325 +tp214326 +a(g214323 +g214325 +S'does' +p214327 +tp214328 +a(g214325 +g214327 +S'that' +p214329 +tp214330 +a(g214327 +g214329 +S'matter' +p214331 +tp214332 +a(g214329 +g214331 +S'if' +p214333 +tp214334 +a(g214331 +g214333 +S'they' +p214335 +tp214336 +a(g214333 +g214335 +S'express' +p214337 +tp214338 +a(g214335 +g214337 +S'the' +p214339 +tp214340 +a(g214337 +g214339 +S'beauty' +p214341 +tp214342 +a(g214339 +g214341 +S'and' +p214343 +tp214344 +a(g214341 +g214343 +S'harmony' +p214345 +tp214346 +a(g214343 +g214345 +S'that' +p214347 +tp214348 +a(g214345 +g214347 +S'he' +p214349 +tp214350 +a(g214347 +g214349 +S'has' +p214351 +tp214352 +a(g214349 +g214351 +S'felt' +p214353 +tp214354 +a(g214351 +g214353 +S'so' +p214355 +tp214356 +a(g214353 +g214355 +S'deeply?' +p214357 +tp214358 +a(g214355 +g214357 +S'who' +p214359 +tp214360 +a(g214357 +g214359 +S'can' +p214361 +tp214362 +a(g214359 +g214361 +S'say' +p214363 +tp214364 +a(g214361 +g214363 +S'at' +p214365 +tp214366 +a(g214363 +g214365 +S'what' +p214367 +tp214368 +a(g214365 +g214367 +S'precise' +p214369 +tp214370 +a(g214367 +g214369 +S'moment' +p214371 +tp214372 +a(g214369 +g214371 +S'a' +p214373 +tp214374 +a(g214371 +g214373 +S'canvas' +p214375 +tp214376 +a(g214373 +g214375 +S'is' +p214377 +tp214378 +a(g214375 +g214377 +S'finished?' +p214379 +tp214380 +a(g214377 +g214379 +S'art' +p214381 +tp214382 +a(g214379 +g214381 +S'always' +p214383 +tp214384 +a(g214381 +g214383 +S'contains' +p214385 +tp214386 +a(g214383 +g214385 +S'an' +p214387 +tp214388 +a(g214385 +g214387 +S'element' +p214389 +tp214390 +a(g214387 +g214389 +S'of' +p214391 +tp214392 +a(g214389 +g214391 +S'unfinish' +p214393 +tp214394 +a(g214391 +g214393 +S'for' +p214395 +tp214396 +a(g214393 +g214395 +S'the' +p214397 +tp214398 +a(g214395 +g214397 +S'life' +p214399 +tp214400 +a(g214397 +g214399 +S'that' +p214401 +tp214402 +a(g214399 +g214401 +S'it' +p214403 +tp214404 +a(g214401 +g214403 +S'reproduces' +p214405 +tp214406 +a(g214403 +g214405 +S'is' +p214407 +tp214408 +a(g214405 +g214407 +S'in' +p214409 +tp214410 +a(g214407 +g214409 +S'constant' +p214411 +tp214412 +a(g214409 +g214411 +S'transformation."' +p214413 +tp214414 +a(g214411 +g214413 +S'(text' +p214415 +tp214416 +a(g214413 +g214415 +S'by' +p214417 +tp214418 +a(g214415 +g214417 +S'margaret' +p214419 +tp214420 +a(g214417 +g214419 +S'doyle,' +p214421 +tp214422 +a(g214419 +g214421 +S'notes' +p214423 +tp214424 +a(g214421 +g214423 +S'' +p214427 +tp214428 +a(g214425 +g214427 +S'' +p214431 +tp214432 +a(g214429 +g214431 +S'impressionism' +p214433 +tp214434 +a(g214431 +g214433 +S'not' +p214435 +tp214436 +a(g214433 +g214435 +S'only' +p214437 +tp214438 +a(g214435 +g214437 +S'encouraged' +p214439 +tp214440 +a(g214437 +g214439 +S'cézanne' +p214441 +tp214442 +a(g214439 +g214441 +S'to' +p214443 +tp214444 +a(g214441 +g214443 +S'adopt' +p214445 +tp214446 +a(g214443 +g214445 +S'a' +p214447 +tp214448 +a(g214445 +g214447 +S'brighter' +p214449 +tp214450 +a(g214447 +g214449 +S'palette,' +p214451 +tp214452 +a(g214449 +g214451 +S'but' +p214453 +tp214454 +a(g214451 +g214453 +S'also' +p214455 +tp214456 +a(g214453 +g214455 +S'gave' +p214457 +tp214458 +a(g214455 +g214457 +S'him' +p214459 +tp214460 +a(g214457 +g214459 +S'a' +p214461 +tp214462 +a(g214459 +g214461 +S'way' +p214463 +tp214464 +a(g214461 +g214463 +S'of' +p214465 +tp214466 +a(g214463 +g214465 +S'expressing' +p214467 +tp214468 +a(g214465 +g214467 +S'form.' +p214469 +tp214470 +a(g214467 +g214469 +S'rather' +p214471 +tp214472 +a(g214469 +g214471 +S'than' +p214473 +tp214474 +a(g214471 +g214473 +S'model' +p214475 +tp214476 +a(g214473 +g214475 +S'three-dimensional' +p214477 +tp214478 +a(g214475 +g214477 +S'shapes' +p214479 +tp214480 +a(g214477 +g214479 +S'by' +p214481 +tp214482 +a(g214479 +g214481 +S'gradually' +p214483 +tp214484 +a(g214481 +g214483 +S'blending' +p214485 +tp214486 +a(g214483 +g214485 +S'shades' +p214487 +tp214488 +a(g214485 +g214487 +S'from' +p214489 +tp214490 +a(g214487 +g214489 +S'dark' +p214491 +tp214492 +a(g214489 +g214491 +S'to' +p214493 +tp214494 +a(g214491 +g214493 +S'light,' +p214495 +tp214496 +a(g214493 +g214495 +S'cézanne,' +p214497 +tp214498 +a(g214495 +g214497 +S'like' +p214499 +tp214500 +a(g214497 +g214499 +S'the' +p214501 +tp214502 +a(g214499 +g214501 +S'impressionists,' +p214503 +tp214504 +a(g214501 +g214503 +S'gave' +p214505 +tp214506 +a(g214503 +g214505 +S'them' +p214507 +tp214508 +a(g214505 +g214507 +S'form' +p214509 +tp214510 +a(g214507 +g214509 +S'by' +p214511 +tp214512 +a(g214509 +g214511 +S'juxtaposing' +p214513 +tp214514 +a(g214511 +g214513 +S'colors.' +p214515 +tp214516 +a(g214513 +g214515 +S'“there' +p214517 +tp214518 +a(g214515 +g214517 +S'is' +p214519 +tp214520 +a(g214517 +g214519 +S'neither' +p214521 +tp214522 +a(g214519 +g214521 +S'line' +p214523 +tp214524 +a(g214521 +g214523 +S'nor' +p214525 +tp214526 +a(g214523 +g214525 +S'modeling,”' +p214527 +tp214528 +a(g214525 +g214527 +S'he' +p214529 +tp214530 +a(g214527 +g214529 +S'said,' +p214531 +tp214532 +a(g214529 +g214531 +S'“there' +p214533 +tp214534 +a(g214531 +g214533 +S'is' +p214535 +tp214536 +a(g214533 +g214535 +S'only' +p214537 +tp214538 +a(g214535 +g214537 +S'contrast.”' +p214539 +tp214540 +a(g214537 +g214539 +S'the' +p214541 +tp214542 +a(g214539 +g214541 +S'tipped' +p214543 +tp214544 +a(g214541 +g214543 +S'plate' +p214545 +tp214546 +a(g214543 +g214545 +S'is' +p214547 +tp214548 +a(g214545 +g214547 +S'molded' +p214549 +tp214550 +a(g214547 +g214549 +S'by' +p214551 +tp214552 +a(g214549 +g214551 +S'individual' +p214553 +tp214554 +a(g214551 +g214553 +S'arcs' +p214555 +tp214556 +a(g214553 +g214555 +S'of' +p214557 +tp214558 +a(g214555 +g214557 +S'peachy' +p214559 +tp214560 +a(g214557 +g214559 +S'ivory' +p214561 +tp214562 +a(g214559 +g214561 +S'and' +p214563 +tp214564 +a(g214561 +g214563 +S'cooler' +p214565 +tp214566 +a(g214563 +g214565 +S'blue' +p214567 +tp214568 +a(g214565 +g214567 +S'tones.' +p214569 +tp214570 +a(g214567 +g214569 +S'the' +p214571 +tp214572 +a(g214569 +g214571 +S'shadow' +p214573 +tp214574 +a(g214571 +g214573 +S'that' +p214575 +tp214576 +a(g214573 +g214575 +S'falls' +p214577 +tp214578 +a(g214575 +g214577 +S'below' +p214579 +tp214580 +a(g214577 +g214579 +S'it' +p214581 +tp214582 +a(g214579 +g214581 +S'does' +p214583 +tp214584 +a(g214581 +g214583 +S'not' +p214585 +tp214586 +a(g214583 +g214585 +S'deepen' +p214587 +tp214588 +a(g214585 +g214587 +S'continuously' +p214589 +tp214590 +a(g214587 +g214589 +S'but' +p214591 +tp214592 +a(g214589 +g214591 +S'is' +p214593 +tp214594 +a(g214591 +g214593 +S'a' +p214595 +tp214596 +a(g214593 +g214595 +S'patchwork' +p214597 +tp214598 +a(g214595 +g214597 +S'of' +p214599 +tp214600 +a(g214597 +g214599 +S'blues' +p214601 +tp214602 +a(g214599 +g214601 +S'and' +p214603 +tp214604 +a(g214601 +g214603 +S'complementary' +p214605 +tp214606 +a(g214603 +g214605 +S'rust-colored' +p214607 +tp214608 +a(g214605 +g214607 +S'browns.' +p214609 +tp214610 +a(g214607 +g214609 +S'rounded' +p214611 +tp214612 +a(g214609 +g214611 +S'fruits,' +p214613 +tp214614 +a(g214611 +g214613 +S'like' +p214615 +tp214616 +a(g214613 +g214615 +S'the' +p214617 +tp214618 +a(g214615 +g214617 +S'flat' +p214619 +tp214620 +a(g214617 +g214619 +S'surfaces' +p214621 +tp214622 +a(g214619 +g214621 +S'of' +p214623 +tp214624 +a(g214621 +g214623 +S'the' +p214625 +tp214626 +a(g214623 +g214625 +S'table,' +p214627 +tp214628 +a(g214625 +g214627 +S'are' +p214629 +tp214630 +a(g214627 +g214629 +S'built' +p214631 +tp214632 +a(g214629 +g214631 +S'up' +p214633 +tp214634 +a(g214631 +g214633 +S'of' +p214635 +tp214636 +a(g214633 +g214635 +S'what' +p214637 +tp214638 +a(g214635 +g214637 +S'cézanne' +p214639 +tp214640 +a(g214637 +g214639 +S'called' +p214641 +tp214642 +a(g214639 +g214641 +S'“little' +p214643 +tp214644 +a(g214641 +g214643 +S'planes”' +p214645 +tp214646 +a(g214643 +g214645 +S'of' +p214647 +tp214648 +a(g214645 +g214647 +S'color,' +p214649 +tp214650 +a(g214647 +g214649 +S'applied' +p214651 +tp214652 +a(g214649 +g214651 +S'in' +p214653 +tp214654 +a(g214651 +g214653 +S'brushstrokes' +p214655 +tp214656 +a(g214653 +g214655 +S'that' +p214657 +tp214658 +a(g214655 +g214657 +S'echo' +p214659 +tp214660 +a(g214657 +g214659 +S'the' +p214661 +tp214662 +a(g214659 +g214661 +S'faceted' +p214663 +tp214664 +a(g214661 +g214663 +S'sides' +p214665 +tp214666 +a(g214663 +g214665 +S'of' +p214667 +tp214668 +a(g214665 +g214667 +S'the' +p214669 +tp214670 +a(g214667 +g214669 +S'pitcher.' +p214671 +tp214672 +a(g214669 +g214671 +S'cézanne' +p214673 +tp214674 +a(g214671 +g214673 +S'painted' +p214675 +tp214676 +a(g214673 +g214675 +S'this' +p214677 +tp214678 +a(g214675 +g214677 +S'same' +p214679 +tp214680 +a(g214677 +g214679 +S'pitcher' +p214681 +tp214682 +a(g214679 +g214681 +S'and' +p214683 +tp214684 +a(g214681 +g214683 +S'table' +p214685 +tp214686 +a(g214683 +g214685 +S'in' +p214687 +tp214688 +a(g214685 +g214687 +S'other' +p214689 +tp214690 +a(g214687 +g214689 +S'canvases.' +p214691 +tp214692 +a(g214689 +g214691 +S'his' +p214693 +tp214694 +a(g214691 +g214693 +S'constant' +p214695 +tp214696 +a(g214693 +g214695 +S'rearranging' +p214697 +tp214698 +a(g214695 +g214697 +S'of' +p214699 +tp214700 +a(g214697 +g214699 +S'these' +p214701 +tp214702 +a(g214699 +g214701 +S'and' +p214703 +tp214704 +a(g214701 +g214703 +S'other' +p214705 +tp214706 +a(g214703 +g214705 +S'props' +p214707 +tp214708 +a(g214705 +g214707 +S'was' +p214709 +tp214710 +a(g214707 +g214709 +S'a' +p214711 +tp214712 +a(g214709 +g214711 +S'way' +p214713 +tp214714 +a(g214711 +g214713 +S'to' +p214715 +tp214716 +a(g214713 +g214715 +S'understand' +p214717 +tp214718 +a(g214715 +g214717 +S'and' +p214719 +tp214720 +a(g214717 +g214719 +S'create' +p214721 +tp214722 +a(g214719 +g214721 +S'structure.' +p214723 +tp214724 +a(g214721 +g214723 +S'the' +p214725 +tp214726 +a(g214723 +g214725 +S'very' +p214727 +tp214728 +a(g214725 +g214727 +S'selection' +p214729 +tp214730 +a(g214727 +g214729 +S'of' +p214731 +tp214732 +a(g214729 +g214731 +S'objects,' +p214733 +tp214734 +a(g214731 +g214733 +S'combining,' +p214735 +tp214736 +a(g214733 +g214735 +S'for' +p214737 +tp214738 +a(g214735 +g214737 +S'example,' +p214739 +tp214740 +a(g214737 +g214739 +S'the' +p214741 +tp214742 +a(g214739 +g214741 +S'roundness' +p214743 +tp214744 +a(g214741 +g214743 +S'of' +p214745 +tp214746 +a(g214743 +g214745 +S'fruits' +p214747 +tp214748 +a(g214745 +g214747 +S'and' +p214749 +tp214750 +a(g214747 +g214749 +S'bowls' +p214751 +tp214752 +a(g214749 +g214751 +S'and' +p214753 +tp214754 +a(g214751 +g214753 +S'the' +p214755 +tp214756 +a(g214753 +g214755 +S'angles' +p214757 +tp214758 +a(g214755 +g214757 +S'of' +p214759 +tp214760 +a(g214757 +g214759 +S'furniture,' +p214761 +tp214762 +a(g214759 +g214761 +S'reflects' +p214763 +tp214764 +a(g214761 +g214763 +S'careful' +p214765 +tp214766 +a(g214763 +g214765 +S'decisions' +p214767 +tp214768 +a(g214765 +g214767 +S'about' +p214769 +tp214770 +a(g214767 +g214769 +S'order' +p214771 +tp214772 +a(g214769 +g214771 +S'and' +p214773 +tp214774 +a(g214771 +g214773 +S'composition.' +p214775 +tp214776 +a(g214773 +g214775 +S'this' +p214777 +tp214778 +a(g214775 +g214777 +S'analytical' +p214779 +tp214780 +a(g214777 +g214779 +S'way' +p214781 +tp214782 +a(g214779 +g214781 +S'of' +p214783 +tp214784 +a(g214781 +g214783 +S'seeing' +p214785 +tp214786 +a(g214783 +g214785 +S'the' +p214787 +tp214788 +a(g214785 +g214787 +S'world,' +p214789 +tp214790 +a(g214787 +g214789 +S'whether' +p214791 +tp214792 +a(g214789 +g214791 +S'the' +p214793 +tp214794 +a(g214791 +g214793 +S'countryside' +p214795 +tp214796 +a(g214793 +g214795 +S'of' +p214797 +tp214798 +a(g214795 +g214797 +S'provence' +p214799 +tp214800 +a(g214797 +g214799 +S'or' +p214801 +tp214802 +a(g214799 +g214801 +S'the' +p214803 +tp214804 +a(g214801 +g214803 +S'man-made' +p214805 +tp214806 +a(g214803 +g214805 +S'landscape' +p214807 +tp214808 +a(g214805 +g214807 +S'of' +p214809 +tp214810 +a(g214807 +g214809 +S'a' +p214811 +tp214812 +a(g214809 +g214811 +S'still' +p214813 +tp214814 +a(g214811 +g214813 +S'life,' +p214815 +tp214816 +a(g214813 +g214815 +S'had' +p214817 +tp214818 +a(g214815 +g214817 +S'great' +p214819 +tp214820 +a(g214817 +g214819 +S'impact' +p214821 +tp214822 +a(g214819 +g214821 +S'on' +p214823 +tp214824 +a(g214821 +g214823 +S'the' +p214825 +tp214826 +a(g214823 +g214825 +S'next' +p214827 +tp214828 +a(g214825 +g214827 +S'generation' +p214829 +tp214830 +a(g214827 +g214829 +S'of' +p214831 +tp214832 +a(g214829 +g214831 +S'artists.' +p214833 +tp214834 +a(g214831 +g214833 +S'for' +p214835 +tp214836 +a(g214833 +g214835 +S'this' +p214837 +tp214838 +a(g214835 +g214837 +S'stylized' +p214839 +tp214840 +a(g214837 +g214839 +S'view' +p214841 +tp214842 +a(g214839 +g214841 +S'of' +p214843 +tp214844 +a(g214841 +g214843 +S'fields' +p214845 +tp214846 +a(g214843 +g214845 +S'and' +p214847 +tp214848 +a(g214845 +g214847 +S'farm' +p214849 +tp214850 +a(g214847 +g214849 +S'buildings' +p214851 +tp214852 +a(g214849 +g214851 +S'near' +p214853 +tp214854 +a(g214851 +g214853 +S'le' +p214855 +tp214856 +a(g214853 +g214855 +S'pouldu' +p214857 +tp214858 +a(g214855 +g214857 +S'is' +p214859 +tp214860 +a(g214857 +g214859 +S'typical' +p214861 +tp214862 +a(g214859 +g214861 +S'of' +p214863 +tp214864 +a(g214861 +g214863 +S'the' +p214865 +tp214866 +a(g214863 +g214865 +S'so-called' +p214867 +tp214868 +a(g214865 +g214867 +S'the' +p214869 +tp214870 +a(g214867 +g214869 +S'friezelike' +p214871 +tp214872 +a(g214869 +g214871 +S'procession' +p214873 +tp214874 +a(g214871 +g214873 +S'of' +p214875 +tp214876 +a(g214873 +g214875 +S'cows' +p214877 +tp214878 +a(g214875 +g214877 +S'and' +p214879 +tp214880 +a(g214877 +g214879 +S'cowherd' +p214881 +tp214882 +a(g214879 +g214881 +S'in' +p214883 +tp214884 +a(g214881 +g214883 +S'the' +p214885 +tp214886 +a(g214883 +g214885 +S'foreground' +p214887 +tp214888 +a(g214885 +g214887 +S'coaxes' +p214889 +tp214890 +a(g214887 +g214889 +S'our' +p214891 +tp214892 +a(g214889 +g214891 +S'eye' +p214893 +tp214894 +a(g214891 +g214893 +S'to' +p214895 +tp214896 +a(g214893 +g214895 +S'move' +p214897 +tp214898 +a(g214895 +g214897 +S'horizontally,' +p214899 +tp214900 +a(g214897 +g214899 +S'and' +p214901 +tp214902 +a(g214899 +g214901 +S'we' +p214903 +tp214904 +a(g214901 +g214903 +S'find' +p214905 +tp214906 +a(g214903 +g214905 +S'that' +p214907 +tp214908 +a(g214905 +g214907 +S'the' +p214909 +tp214910 +a(g214907 +g214909 +S'entire' +p214911 +tp214912 +a(g214909 +g214911 +S'composition' +p214913 +tp214914 +a(g214911 +g214913 +S'is' +p214915 +tp214916 +a(g214913 +g214915 +S'arranged' +p214917 +tp214918 +a(g214915 +g214917 +S'into' +p214919 +tp214920 +a(g214917 +g214919 +S'bands,' +p214921 +tp214922 +a(g214919 +g214921 +S'layered' +p214923 +tp214924 +a(g214921 +g214923 +S'one' +p214925 +tp214926 +a(g214923 +g214925 +S'on' +p214927 +tp214928 +a(g214925 +g214927 +S'the' +p214929 +tp214930 +a(g214927 +g214929 +S'other.' +p214931 +tp214932 +a(g214929 +g214931 +S'even' +p214933 +tp214934 +a(g214931 +g214933 +S'the' +p214935 +tp214936 +a(g214933 +g214935 +S'sky' +p214937 +tp214938 +a(g214935 +g214937 +S'is' +p214939 +tp214940 +a(g214937 +g214939 +S'stratified.' +p214941 +tp214942 +a(g214939 +g214941 +S'strong' +p214943 +tp214944 +a(g214941 +g214943 +S'contrasts' +p214945 +tp214946 +a(g214943 +g214945 +S'of' +p214947 +tp214948 +a(g214945 +g214947 +S'dark' +p214949 +tp214950 +a(g214947 +g214949 +S'and' +p214951 +tp214952 +a(g214949 +g214951 +S'light—exploited' +p214953 +tp214954 +a(g214951 +g214953 +S'especially' +p214955 +tp214956 +a(g214953 +g214955 +S'in' +p214957 +tp214958 +a(g214955 +g214957 +S'the' +p214959 +tp214960 +a(g214957 +g214959 +S'black-and-white' +p214961 +tp214962 +a(g214959 +g214961 +S'cows' +p214963 +tp214964 +a(g214961 +g214963 +S'and' +p214965 +tp214966 +a(g214963 +g214965 +S'the' +p214967 +tp214968 +a(g214965 +g214967 +S'flowering' +p214969 +tp214970 +a(g214967 +g214969 +S'crops—flatten' +p214971 +tp214972 +a(g214969 +g214971 +S'forms,' +p214973 +tp214974 +a(g214971 +g214973 +S'rendering' +p214975 +tp214976 +a(g214973 +g214975 +S'them' +p214977 +tp214978 +a(g214975 +g214977 +S'more' +p214979 +tp214980 +a(g214977 +g214979 +S'decorative' +p214981 +tp214982 +a(g214979 +g214981 +S'than' +p214983 +tp214984 +a(g214981 +g214983 +S'descriptive.' +p214985 +tp214986 +a(g214983 +g214985 +S'the' +p214987 +tp214988 +a(g214985 +g214987 +S'vivid' +p214989 +tp214990 +a(g214987 +g214989 +S'and' +p214991 +tp214992 +a(g214989 +g214991 +S'unexpected' +p214993 +tp214994 +a(g214991 +g214993 +S'oranges' +p214995 +tp214996 +a(g214993 +g214995 +S'in' +p214997 +tp214998 +a(g214995 +g214997 +S'the' +p214999 +tp215000 +a(g214997 +g214999 +S'foreground' +p215001 +tp215002 +a(g214999 +g215001 +S'do' +p215003 +tp215004 +a(g215001 +g215003 +S'not' +p215005 +tp215006 +a(g215003 +g215005 +S'mimic' +p215007 +tp215008 +a(g215005 +g215007 +S'nature' +p215009 +tp215010 +a(g215007 +g215009 +S'but' +p215011 +tp215012 +a(g215009 +g215011 +S'cast' +p215013 +tp215014 +a(g215011 +g215013 +S'it' +p215015 +tp215016 +a(g215013 +g215015 +S'according' +p215017 +tp215018 +a(g215015 +g215017 +S'to' +p215019 +tp215020 +a(g215017 +g215019 +S'the' +p215021 +tp215022 +a(g215019 +g215021 +S"artist's" +p215023 +tp215024 +a(g215021 +g215023 +S'imagination.' +p215025 +tp215026 +a(g215023 +g215025 +S'notice' +p215027 +tp215028 +a(g215025 +g215027 +S'how' +p215029 +tp215030 +a(g215027 +g215029 +S'the' +p215031 +tp215032 +a(g215029 +g215031 +S'silhouette' +p215033 +tp215034 +a(g215031 +g215033 +S'of' +p215035 +tp215036 +a(g215033 +g215035 +S'the' +p215037 +tp215038 +a(g215035 +g215037 +S'cow' +p215039 +tp215040 +a(g215037 +g215039 +S'at' +p215041 +tp215042 +a(g215039 +g215041 +S'right' +p215043 +tp215044 +a(g215041 +g215043 +S'is' +p215045 +tp215046 +a(g215043 +g215045 +S'outlined' +p215047 +tp215048 +a(g215045 +g215047 +S'against' +p215049 +tp215050 +a(g215047 +g215049 +S'the' +p215051 +tp215052 +a(g215049 +g215051 +S'orange' +p215053 +tp215054 +a(g215051 +g215053 +S'with' +p215055 +tp215056 +a(g215053 +g215055 +S'dark' +p215057 +tp215058 +a(g215055 +g215057 +S'blue.' +p215059 +tp215060 +a(g215057 +g215059 +S'in' +p215061 +tp215062 +a(g215059 +g215061 +S'many' +p215063 +tp215064 +a(g215061 +g215063 +S'places' +p215065 +tp215066 +a(g215063 +g215065 +S'similar' +p215067 +tp215068 +a(g215065 +g215067 +S'outlines' +p215069 +tp215070 +a(g215067 +g215069 +S'compartmentalize' +p215071 +tp215072 +a(g215069 +g215071 +S'colors,' +p215073 +tp215074 +a(g215071 +g215073 +S'in' +p215075 +tp215076 +a(g215073 +g215075 +S'the' +p215077 +tp215078 +a(g215075 +g215077 +S'manner' +p215079 +tp215080 +a(g215077 +g215079 +S'of' +p215081 +tp215082 +a(g215079 +g215081 +S'cloisonné' +p215083 +tp215084 +a(g215081 +g215083 +S'enamels' +p215085 +tp215086 +a(g215083 +g215085 +S'or' +p215087 +tp215088 +a(g215085 +g215087 +S'stained' +p215089 +tp215090 +a(g215087 +g215089 +S'glass.' +p215091 +tp215092 +a(g215089 +g215091 +S'this' +p215093 +tp215094 +a(g215091 +g215093 +S'was' +p215095 +tp215096 +a(g215093 +g215095 +S'a' +p215097 +tp215098 +a(g215095 +g215097 +S'style' +p215099 +tp215100 +a(g215097 +g215099 +S'gauguin' +p215101 +tp215102 +a(g215099 +g215101 +S'had' +p215103 +tp215104 +a(g215101 +g215103 +S'evolved' +p215105 +tp215106 +a(g215103 +g215105 +S'with' +p215107 +tp215108 +a(g215105 +g215107 +S'fellow' +p215109 +tp215110 +a(g215107 +g215109 +S'artist' +p215111 +tp215112 +a(g215109 +g215111 +S'lured' +p215113 +tp215114 +a(g215111 +g215113 +S'to' +p215115 +tp215116 +a(g215113 +g215115 +S'tahiti' +p215117 +tp215118 +a(g215115 +g215117 +S'in' +p215119 +tp215120 +a(g215117 +g215119 +S'1891' +p215121 +tp215122 +a(g215119 +g215121 +S'by' +p215123 +tp215124 +a(g215121 +g215123 +S'reports' +p215125 +tp215126 +a(g215123 +g215125 +S'of' +p215127 +tp215128 +a(g215125 +g215127 +S'its' +p215129 +tp215130 +a(g215127 +g215129 +S'unspoiled' +p215131 +tp215132 +a(g215129 +g215131 +S'culture,' +p215133 +tp215134 +a(g215131 +g215133 +S'gauguin' +p215135 +tp215136 +a(g215133 +g215135 +S'was' +p215137 +tp215138 +a(g215135 +g215137 +S'disappointed' +p215139 +tp215140 +a(g215137 +g215139 +S'by' +p215141 +tp215142 +a(g215139 +g215141 +S'its' +p215143 +tp215144 +a(g215141 +g215143 +S'civilized' +p215145 +tp215146 +a(g215143 +g215145 +S'capital' +p215147 +tp215148 +a(g215145 +g215147 +S'and' +p215149 +tp215150 +a(g215147 +g215149 +S'moved' +p215151 +tp215152 +a(g215149 +g215151 +S'to' +p215153 +tp215154 +a(g215151 +g215153 +S'the' +p215155 +tp215156 +a(g215153 +g215155 +S'countryside,' +p215157 +tp215158 +a(g215155 +g215157 +S'where' +p215159 +tp215160 +a(g215157 +g215159 +S'he' +p215161 +tp215162 +a(g215159 +g215161 +S'found' +p215163 +tp215164 +a(g215161 +g215163 +S'an' +p215165 +tp215166 +a(g215163 +g215165 +S'approximation' +p215167 +tp215168 +a(g215165 +g215167 +S'of' +p215169 +tp215170 +a(g215167 +g215169 +S'the' +p215171 +tp215172 +a(g215169 +g215171 +S'tropical' +p215173 +tp215174 +a(g215171 +g215173 +S'paradise' +p215175 +tp215176 +a(g215173 +g215175 +S'he' +p215177 +tp215178 +a(g215175 +g215177 +S'had' +p215179 +tp215180 +a(g215177 +g215179 +S'expected.' +p215181 +tp215182 +a(g215179 +g215181 +S'the' +p215183 +tp215184 +a(g215181 +g215183 +S'tahiti' +p215185 +tp215186 +a(g215183 +g215185 +S'of' +p215187 +tp215188 +a(g215185 +g215187 +S'his' +p215189 +tp215190 +a(g215187 +g215189 +S'depictions' +p215191 +tp215192 +a(g215189 +g215191 +S'was' +p215193 +tp215194 +a(g215191 +g215193 +S'derived' +p215195 +tp215196 +a(g215193 +g215195 +S'from' +p215197 +tp215198 +a(g215195 +g215197 +S'native' +p215199 +tp215200 +a(g215197 +g215199 +S'folklore' +p215201 +tp215202 +a(g215199 +g215201 +S'supplemented' +p215203 +tp215204 +a(g215201 +g215203 +S'by' +p215205 +tp215206 +a(g215203 +g215205 +S'material' +p215207 +tp215208 +a(g215205 +g215207 +S'culled' +p215209 +tp215210 +a(g215207 +g215209 +S'from' +p215211 +tp215212 +a(g215209 +g215211 +S'books' +p215213 +tp215214 +a(g215211 +g215213 +S'written' +p215215 +tp215216 +a(g215213 +g215215 +S'by' +p215217 +tp215218 +a(g215215 +g215217 +S'earlier' +p215219 +tp215220 +a(g215217 +g215219 +S'european' +p215221 +tp215222 +a(g215219 +g215221 +S'visitors' +p215223 +tp215224 +a(g215221 +g215223 +S'and' +p215225 +tp215226 +a(g215223 +g215225 +S'overlaid' +p215227 +tp215228 +a(g215225 +g215227 +S'with' +p215229 +tp215230 +a(g215227 +g215229 +S'allusions' +p215231 +tp215232 +a(g215229 +g215231 +S'to' +p215233 +tp215234 +a(g215231 +g215233 +S'western' +p215235 +tp215236 +a(g215233 +g215235 +S'culture.' +p215237 +tp215238 +a(g215235 +g215237 +S'the' +p215239 +tp215240 +a(g215237 +g215239 +S'pose' +p215241 +tp215242 +a(g215239 +g215241 +S'of' +p215243 +tp215244 +a(g215241 +g215243 +S'the' +p215245 +tp215246 +a(g215243 +g215245 +S'standing' +p215247 +tp215248 +a(g215245 +g215247 +S'nude,' +p215249 +tp215250 +a(g215247 +g215249 +S'for' +p215251 +tp215252 +a(g215249 +g215251 +S'instance,' +p215253 +tp215254 +a(g215251 +g215253 +S'is' +p215255 +tp215256 +a(g215253 +g215255 +S'derived' +p215257 +tp215258 +a(g215255 +g215257 +S'from' +p215259 +tp215260 +a(g215257 +g215259 +S'a' +p215261 +tp215262 +a(g215259 +g215261 +S'medieval' +p215263 +tp215264 +a(g215261 +g215263 +S'statue' +p215265 +tp215266 +a(g215263 +g215265 +S'of' +p215267 +tp215268 +a(g215265 +g215267 +S'the' +p215269 +tp215270 +a(g215267 +g215269 +S'biblical' +p215271 +tp215272 +a(g215269 +g215271 +S'eve' +p215273 +tp215274 +a(g215271 +g215273 +S'and' +p215275 +tp215276 +a(g215273 +g215275 +S'more' +p215277 +tp215278 +a(g215275 +g215277 +S'distantly' +p215279 +tp215280 +a(g215277 +g215279 +S'from' +p215281 +tp215282 +a(g215279 +g215281 +S'the' +p215283 +tp215284 +a(g215281 +g215283 +S'venus' +p215285 +tp215286 +a(g215283 +g215285 +S'pudica' +p215287 +tp215288 +a(g215285 +g215287 +S'of' +p215289 +tp215290 +a(g215287 +g215289 +S'classical' +p215291 +tp215292 +a(g215289 +g215291 +S'sculpture.' +p215293 +tp215294 +a(g215291 +g215293 +S'the' +p215295 +tp215296 +a(g215293 +g215295 +S'artist' +p215297 +tp215298 +a(g215295 +g215297 +S'placed' +p215299 +tp215300 +a(g215297 +g215299 +S'this' +p215301 +tp215302 +a(g215299 +g215301 +S'rich' +p215303 +tp215304 +a(g215301 +g215303 +S'combination' +p215305 +tp215306 +a(g215303 +g215305 +S'of' +p215307 +tp215308 +a(g215305 +g215307 +S'references' +p215309 +tp215310 +a(g215307 +g215309 +S'to' +p215311 +tp215312 +a(g215309 +g215311 +S'original' +p215313 +tp215314 +a(g215311 +g215313 +S'sin,' +p215315 +tp215316 +a(g215313 +g215315 +S'the' +p215317 +tp215318 +a(g215315 +g215317 +S'loss' +p215319 +tp215320 +a(g215317 +g215319 +S'of' +p215321 +tp215322 +a(g215319 +g215321 +S'virginity,' +p215323 +tp215324 +a(g215321 +g215323 +S'and' +p215325 +tp215326 +a(g215323 +g215325 +S'occidental' +p215327 +tp215328 +a(g215325 +g215327 +S'standards' +p215329 +tp215330 +a(g215327 +g215329 +S'of' +p215331 +tp215332 +a(g215329 +g215331 +S'beauty' +p215333 +tp215334 +a(g215331 +g215333 +S'and' +p215335 +tp215336 +a(g215333 +g215335 +S'art' +p215337 +tp215338 +a(g215335 +g215337 +S'within' +p215339 +tp215340 +a(g215337 +g215339 +S'the' +p215341 +tp215342 +a(g215339 +g215341 +S'context' +p215343 +tp215344 +a(g215341 +g215343 +S'of' +p215345 +tp215346 +a(g215343 +g215345 +S'his' +p215347 +tp215348 +a(g215345 +g215347 +S'tahitian' +p215349 +tp215350 +a(g215347 +g215349 +S'mythology' +p215351 +tp215352 +a(g215349 +g215351 +S'and' +p215353 +tp215354 +a(g215351 +g215353 +S'primitive,' +p215355 +tp215356 +a(g215353 +g215355 +S'non–european' +p215357 +tp215358 +a(g215355 +g215357 +S'aesthetics.' +p215359 +tp215360 +a(g215357 +g215359 +S'the' +p215361 +tp215362 +a(g215359 +g215361 +S'meaning' +p215363 +tp215364 +a(g215361 +g215363 +S'of' +p215365 +tp215366 +a(g215363 +g215365 +S'the' +p215367 +tp215368 +a(g215365 +g215367 +S'title' +p215369 +tp215370 +a(g215367 +g215369 +S'like' +p215371 +tp215372 +a(g215369 +g215371 +S'many' +p215373 +tp215374 +a(g215371 +g215373 +S'parisians,' +p215375 +tp215376 +a(g215373 +g215375 +S'seurat' +p215377 +tp215378 +a(g215375 +g215377 +S'escaped' +p215379 +tp215380 +a(g215377 +g215379 +S'the' +p215381 +tp215382 +a(g215379 +g215381 +S'heat' +p215383 +tp215384 +a(g215381 +g215383 +S'and' +p215385 +tp215386 +a(g215383 +g215385 +S'the' +p215387 +tp215388 +a(g215385 +g215387 +S'pace' +p215389 +tp215390 +a(g215387 +g215389 +S'of' +p215391 +tp215392 +a(g215389 +g215391 +S'the' +p215393 +tp215394 +a(g215391 +g215393 +S'city' +p215395 +tp215396 +a(g215393 +g215395 +S'in' +p215397 +tp215398 +a(g215395 +g215397 +S'the' +p215399 +tp215400 +a(g215397 +g215399 +S'summertime' +p215401 +tp215402 +a(g215399 +g215401 +S'by' +p215403 +tp215404 +a(g215401 +g215403 +S'heading' +p215405 +tp215406 +a(g215403 +g215405 +S'to' +p215407 +tp215408 +a(g215405 +g215407 +S'coastal' +p215409 +tp215410 +a(g215407 +g215409 +S'towns' +p215411 +tp215412 +a(g215409 +g215411 +S'along' +p215413 +tp215414 +a(g215411 +g215413 +S'the' +p215415 +tp215416 +a(g215413 +g215415 +S'english' +p215417 +tp215418 +a(g215415 +g215417 +S'channel.' +p215419 +tp215420 +a(g215417 +g215419 +S'in' +p215421 +tp215422 +a(g215419 +g215421 +S'1888' +p215423 +tp215424 +a(g215421 +g215423 +S'his' +p215425 +tp215426 +a(g215423 +g215425 +S'destination' +p215427 +tp215428 +a(g215425 +g215427 +S'was' +p215429 +tp215430 +a(g215427 +g215429 +S'port-en-bessin,' +p215431 +tp215432 +a(g215429 +g215431 +S'a' +p215433 +tp215434 +a(g215431 +g215433 +S'small' +p215435 +tp215436 +a(g215433 +g215435 +S'fishing' +p215437 +tp215438 +a(g215435 +g215437 +S'village' +p215439 +tp215440 +a(g215437 +g215439 +S'that' +p215441 +tp215442 +a(g215439 +g215441 +S'inspired' +p215443 +tp215444 +a(g215441 +g215443 +S'him' +p215445 +tp215446 +a(g215443 +g215445 +S'to' +p215447 +tp215448 +a(g215445 +g215447 +S'paint' +p215449 +tp215450 +a(g215447 +g215449 +S'six' +p215451 +tp215452 +a(g215449 +g215451 +S'canvases.' +p215453 +tp215454 +a(g215451 +g215453 +S'while' +p215455 +tp215456 +a(g215453 +g215455 +S'five' +p215457 +tp215458 +a(g215455 +g215457 +S'of' +p215459 +tp215460 +a(g215457 +g215459 +S'them' +p215461 +tp215462 +a(g215459 +g215461 +S'look' +p215463 +tp215464 +a(g215461 +g215463 +S'toward' +p215465 +tp215466 +a(g215463 +g215465 +S'the' +p215467 +tp215468 +a(g215465 +g215467 +S'harbor' +p215469 +tp215470 +a(g215467 +g215469 +S'or' +p215471 +tp215472 +a(g215469 +g215471 +S'hint' +p215473 +tp215474 +a(g215471 +g215473 +S'at' +p215475 +tp215476 +a(g215473 +g215475 +S'its' +p215477 +tp215478 +a(g215475 +g215477 +S'activities,' +p215479 +tp215480 +a(g215477 +g215479 +S'this' +p215481 +tp215482 +a(g215479 +g215481 +S'view' +p215483 +tp215484 +a(g215481 +g215483 +S'is' +p215485 +tp215486 +a(g215483 +g215485 +S'the' +p215487 +tp215488 +a(g215485 +g215487 +S'only' +p215489 +tp215490 +a(g215487 +g215489 +S'one' +p215491 +tp215492 +a(g215489 +g215491 +S'turned' +p215493 +tp215494 +a(g215491 +g215493 +S'completely' +p215495 +tp215496 +a(g215493 +g215495 +S'away' +p215497 +tp215498 +a(g215495 +g215497 +S'from' +p215499 +tp215500 +a(g215497 +g215499 +S'town,' +p215501 +tp215502 +a(g215499 +g215501 +S'focusing' +p215503 +tp215504 +a(g215501 +g215503 +S'solely' +p215505 +tp215506 +a(g215503 +g215505 +S'on' +p215507 +tp215508 +a(g215505 +g215507 +S'the' +p215509 +tp215510 +a(g215507 +g215509 +S'surrounding' +p215511 +tp215512 +a(g215509 +g215511 +S'cliffs.' +p215513 +tp215514 +a(g215511 +g215513 +S'seurat' +p215515 +tp215516 +a(g215513 +g215515 +S'had' +p215517 +tp215518 +a(g215515 +g215517 +S'climbed' +p215519 +tp215520 +a(g215517 +g215519 +S'to' +p215521 +tp215522 +a(g215519 +g215521 +S'an' +p215523 +tp215524 +a(g215521 +g215523 +S'isolated' +p215525 +tp215526 +a(g215523 +g215525 +S'spot' +p215527 +tp215528 +a(g215525 +g215527 +S'above' +p215529 +tp215530 +a(g215527 +g215529 +S'the' +p215531 +tp215532 +a(g215529 +g215531 +S'port' +p215533 +tp215534 +a(g215531 +g215533 +S'and' +p215535 +tp215536 +a(g215533 +g215535 +S'accurately' +p215537 +tp215538 +a(g215535 +g215537 +S'portrayed' +p215539 +tp215540 +a(g215537 +g215539 +S'the' +p215541 +tp215542 +a(g215539 +g215541 +S'topography' +p215543 +tp215544 +a(g215541 +g215543 +S'in' +p215545 +tp215546 +a(g215543 +g215545 +S'this' +p215547 +tp215548 +a(g215545 +g215547 +S'and' +p215549 +tp215550 +a(g215547 +g215549 +S'two' +p215551 +tp215552 +a(g215549 +g215551 +S'other' +p215553 +tp215554 +a(g215551 +g215553 +S'compositions,' +p215555 +tp215556 +a(g215553 +g215555 +S'each' +p215557 +tp215558 +a(g215555 +g215557 +S'looking' +p215559 +tp215560 +a(g215557 +g215559 +S'in' +p215561 +tp215562 +a(g215559 +g215561 +S'a' +p215563 +tp215564 +a(g215561 +g215563 +S'different' +p215565 +tp215566 +a(g215563 +g215565 +S'direction.' +p215567 +tp215568 +a(g215565 +g215567 +S'seurat' +p215569 +tp215570 +a(g215567 +g215569 +S'executed' +p215571 +tp215572 +a(g215569 +g215571 +S'the' +p215573 +tp215574 +a(g215571 +g215573 +S'painting' +p215575 +tp215576 +a(g215573 +g215575 +S'by' +p215577 +tp215578 +a(g215575 +g215577 +S'meticulously' +p215579 +tp215580 +a(g215577 +g215579 +S'applying' +p215581 +tp215582 +a(g215579 +g215581 +S'small' +p215583 +tp215584 +a(g215581 +g215583 +S'dots' +p215585 +tp215586 +a(g215583 +g215585 +S'of' +p215587 +tp215588 +a(g215585 +g215587 +S'pure' +p215589 +tp215590 +a(g215587 +g215589 +S'color' +p215591 +tp215592 +a(g215589 +g215591 +S'on' +p215593 +tp215594 +a(g215591 +g215593 +S'the' +p215595 +tp215596 +a(g215593 +g215595 +S'canvas' +p215597 +tp215598 +a(g215595 +g215597 +S'with' +p215599 +tp215600 +a(g215597 +g215599 +S'the' +p215601 +tp215602 +a(g215599 +g215601 +S'expectation' +p215603 +tp215604 +a(g215601 +g215603 +S'that' +p215605 +tp215606 +a(g215603 +g215605 +S'they' +p215607 +tp215608 +a(g215605 +g215607 +S'would' +p215609 +tp215610 +a(g215607 +g215609 +S'combine' +p215611 +tp215612 +a(g215609 +g215611 +S'vibrantly—with' +p215613 +tp215614 +a(g215611 +g215613 +S'various' +p215615 +tp215616 +a(g215613 +g215615 +S'hues' +p215617 +tp215618 +a(g215615 +g215617 +S'intensifying' +p215619 +tp215620 +a(g215617 +g215619 +S'one' +p215621 +tp215622 +a(g215619 +g215621 +S'another—in' +p215623 +tp215624 +a(g215621 +g215623 +S'the' +p215625 +tp215626 +a(g215623 +g215625 +S'viewer\xe2\x80\x99s' +p215627 +tp215628 +a(g215625 +g215627 +S'eye.' +p215629 +tp215630 +a(g215627 +g215629 +S'seurat' +p215631 +tp215632 +a(g215629 +g215631 +S'read' +p215633 +tp215634 +a(g215631 +g215633 +S'widely' +p215635 +tp215636 +a(g215633 +g215635 +S'on' +p215637 +tp215638 +a(g215635 +g215637 +S'the' +p215639 +tp215640 +a(g215637 +g215639 +S'color' +p215641 +tp215642 +a(g215639 +g215641 +S'theory' +p215643 +tp215644 +a(g215641 +g215643 +S'of' +p215645 +tp215646 +a(g215643 +g215645 +S'his' +p215647 +tp215648 +a(g215645 +g215647 +S'day,' +p215649 +tp215650 +a(g215647 +g215649 +S'including' +p215651 +tp215652 +a(g215649 +g215651 +S'treatises' +p215653 +tp215654 +a(g215651 +g215653 +S'by' +p215655 +tp215656 +a(g215653 +g215655 +S'the' +p215657 +tp215658 +a(g215655 +g215657 +S'american' +p215659 +tp215660 +a(g215657 +g215659 +S'physicist' +p215661 +tp215662 +a(g215659 +g215661 +S'ogden' +p215663 +tp215664 +a(g215661 +g215663 +S'rood,' +p215665 +tp215666 +a(g215663 +g215665 +S'the' +p215667 +tp215668 +a(g215665 +g215667 +S'french' +p215669 +tp215670 +a(g215667 +g215669 +S'scientists' +p215671 +tp215672 +a(g215669 +g215671 +S'eugène' +p215673 +tp215674 +a(g215671 +g215673 +S'chevreul' +p215675 +tp215676 +a(g215673 +g215675 +S'and' +p215677 +tp215678 +a(g215675 +g215677 +S'charles' +p215679 +tp215680 +a(g215677 +g215679 +S'henry,' +p215681 +tp215682 +a(g215679 +g215681 +S'and' +p215683 +tp215684 +a(g215681 +g215683 +S'french' +p215685 +tp215686 +a(g215683 +g215685 +S'art' +p215687 +tp215688 +a(g215685 +g215687 +S'critic' +p215689 +tp215690 +a(g215687 +g215689 +S'charles' +p215691 +tp215692 +a(g215689 +g215691 +S'blanc,' +p215693 +tp215694 +a(g215691 +g215693 +S'whom' +p215695 +tp215696 +a(g215693 +g215695 +S'seurat' +p215697 +tp215698 +a(g215695 +g215697 +S'credited' +p215699 +tp215700 +a(g215697 +g215699 +S'for' +p215701 +tp215702 +a(g215699 +g215701 +S'his' +p215703 +tp215704 +a(g215701 +g215703 +S'initial' +p215705 +tp215706 +a(g215703 +g215705 +S'interest' +p215707 +tp215708 +a(g215705 +g215707 +S'in' +p215709 +tp215710 +a(g215707 +g215709 +S'the' +p215711 +tp215712 +a(g215709 +g215711 +S'properties' +p215713 +tp215714 +a(g215711 +g215713 +S'of' +p215715 +tp215716 +a(g215713 +g215715 +S'colors.' +p215717 +tp215718 +a(g215715 +g215717 +S'he' +p215719 +tp215720 +a(g215717 +g215719 +S'also' +p215721 +tp215722 +a(g215719 +g215721 +S'studied' +p215723 +tp215724 +a(g215721 +g215723 +S'the' +p215725 +tp215726 +a(g215723 +g215725 +S'paintings' +p215727 +tp215728 +a(g215725 +g215727 +S'of' +p215729 +tp215730 +a(g215727 +g215729 +S'great' +p215731 +tp215732 +a(g215729 +g215731 +S'colorists' +p215733 +tp215734 +a(g215731 +g215733 +S'such' +p215735 +tp215736 +a(g215733 +g215735 +S'as' +p215737 +tp215738 +a(g215735 +g215737 +S'eugène' +p215739 +tp215740 +a(g215737 +g215739 +S'delacroix' +p215741 +tp215742 +a(g215739 +g215741 +S'and' +p215743 +tp215744 +a(g215741 +g215743 +S'peter' +p215745 +tp215746 +a(g215743 +g215745 +S'paul' +p215747 +tp215748 +a(g215745 +g215747 +S'rubens.' +p215749 +tp215750 +a(g215747 +g215749 +S'an' +p215751 +tp215752 +a(g215749 +g215751 +S'admiration' +p215753 +tp215754 +a(g215751 +g215753 +S'for' +p215755 +tp215756 +a(g215753 +g215755 +S'the' +p215757 +tp215758 +a(g215755 +g215757 +S'work' +p215759 +tp215760 +a(g215757 +g215759 +S'of' +p215761 +tp215762 +a(g215759 +g215761 +S'contemporaries' +p215763 +tp215764 +a(g215761 +g215763 +S'claude' +p215765 +tp215766 +a(g215763 +g215765 +S'monet' +p215767 +tp215768 +a(g215765 +g215767 +S'and' +p215769 +tp215770 +a(g215767 +g215769 +S'camille' +p215771 +tp215772 +a(g215769 +g215771 +S'pissarro' +p215773 +tp215774 +a(g215771 +g215773 +S'led' +p215775 +tp215776 +a(g215773 +g215775 +S'seurat' +p215777 +tp215778 +a(g215775 +g215777 +S'to' +p215779 +tp215780 +a(g215777 +g215779 +S'experiment' +p215781 +tp215782 +a(g215779 +g215781 +S'with' +p215783 +tp215784 +a(g215781 +g215783 +S'the' +p215785 +tp215786 +a(g215783 +g215785 +S'impressionist' +p215787 +tp215788 +a(g215785 +g215787 +S'brushstroke,' +p215789 +tp215790 +a(g215787 +g215789 +S'which' +p215791 +tp215792 +a(g215789 +g215791 +S'eventually' +p215793 +tp215794 +a(g215791 +g215793 +S'resulted' +p215795 +tp215796 +a(g215793 +g215795 +S'in' +p215797 +tp215798 +a(g215795 +g215797 +S'his' +p215799 +tp215800 +a(g215797 +g215799 +S'pointillist' +p215801 +tp215802 +a(g215799 +g215801 +S'touch.' +p215803 +tp215804 +a(g215801 +g215803 +S'previous' +p215805 +tp215806 +a(g215803 +g215805 +S'artists' +p215807 +tp215808 +a(g215805 +g215807 +S'such' +p215809 +tp215810 +a(g215807 +g215809 +S'as' +p215811 +tp215812 +a(g215809 +g215811 +S'delacroix' +p215813 +tp215814 +a(g215811 +g215813 +S'had' +p215815 +tp215816 +a(g215813 +g215815 +S'been' +p215817 +tp215818 +a(g215815 +g215817 +S'aware' +p215819 +tp215820 +a(g215817 +g215819 +S'of' +p215821 +tp215822 +a(g215819 +g215821 +S'the' +p215823 +tp215824 +a(g215821 +g215823 +S'principles' +p215825 +tp215826 +a(g215823 +g215825 +S'of' +p215827 +tp215828 +a(g215825 +g215827 +S'optical' +p215829 +tp215830 +a(g215827 +g215829 +S'mixture' +p215831 +tp215832 +a(g215829 +g215831 +S'and' +p215833 +tp215834 +a(g215831 +g215833 +S'of' +p215835 +tp215836 +a(g215833 +g215835 +S'colors' +p215837 +tp215838 +a(g215835 +g215837 +S'influencing' +p215839 +tp215840 +a(g215837 +g215839 +S'one' +p215841 +tp215842 +a(g215839 +g215841 +S'another,' +p215843 +tp215844 +a(g215841 +g215843 +S'but' +p215845 +tp215846 +a(g215843 +g215845 +S'seurat' +p215847 +tp215848 +a(g215845 +g215847 +S'was' +p215849 +tp215850 +a(g215847 +g215849 +S'determined' +p215851 +tp215852 +a(g215849 +g215851 +S'to' +p215853 +tp215854 +a(g215851 +g215853 +S'find' +p215855 +tp215856 +a(g215853 +g215855 +S'a' +p215857 +tp215858 +a(g215855 +g215857 +S'systematic' +p215859 +tp215860 +a(g215857 +g215859 +S'means' +p215861 +tp215862 +a(g215859 +g215861 +S'of' +p215863 +tp215864 +a(g215861 +g215863 +S'applying' +p215865 +tp215866 +a(g215863 +g215865 +S'these' +p215867 +tp215868 +a(g215865 +g215867 +S'laws.' +p215869 +tp215870 +a(g215867 +g215869 +S'seurat' +p215871 +tp215872 +a(g215869 +g215871 +S'developed' +p215873 +tp215874 +a(g215871 +g215873 +S'his' +p215875 +tp215876 +a(g215873 +g215875 +S'technique' +p215877 +tp215878 +a(g215875 +g215877 +S'in' +p215879 +tp215880 +a(g215877 +g215879 +S'partial' +p215881 +tp215882 +a(g215879 +g215881 +S'collaboration' +p215883 +tp215884 +a(g215881 +g215883 +S'with' +p215885 +tp215886 +a(g215883 +g215885 +S'pissarro' +p215887 +tp215888 +a(g215885 +g215887 +S'and' +p215889 +tp215890 +a(g215887 +g215889 +S'paul' +p215891 +tp215892 +a(g215889 +g215891 +S'signac;' +p215893 +tp215894 +a(g215891 +g215893 +S'all' +p215895 +tp215896 +a(g215893 +g215895 +S'three' +p215897 +tp215898 +a(g215895 +g215897 +S'exhibited' +p215899 +tp215900 +a(g215897 +g215899 +S'paintings' +p215901 +tp215902 +a(g215899 +g215901 +S'executed' +p215903 +tp215904 +a(g215901 +g215903 +S'in' +p215905 +tp215906 +a(g215903 +g215905 +S'a' +p215907 +tp215908 +a(g215905 +g215907 +S'similar' +p215909 +tp215910 +a(g215907 +g215909 +S'manner' +p215911 +tp215912 +a(g215909 +g215911 +S'in' +p215913 +tp215914 +a(g215911 +g215913 +S'the' +p215915 +tp215916 +a(g215913 +g215915 +S'1886' +p215917 +tp215918 +a(g215915 +g215917 +S'impressionist' +p215919 +tp215920 +a(g215917 +g215919 +S'exhibition.' +p215921 +tp215922 +a(g215919 +g215921 +S'seurat\xe2\x80\x99s' +p215923 +tp215924 +a(g215921 +g215923 +S'celebrated' +p215925 +tp215926 +a(g215923 +g215925 +S'tenure' +p215927 +tp215928 +a(g215925 +g215927 +S'at' +p215929 +tp215930 +a(g215927 +g215929 +S'the' +p215931 +tp215932 +a(g215929 +g215931 +S'forefront' +p215933 +tp215934 +a(g215931 +g215933 +S'of' +p215935 +tp215936 +a(g215933 +g215935 +S'the' +p215937 +tp215938 +a(g215935 +g215937 +S'avant-garde' +p215939 +tp215940 +a(g215937 +g215939 +S'did' +p215941 +tp215942 +a(g215939 +g215941 +S'not' +p215943 +tp215944 +a(g215941 +g215943 +S'last' +p215945 +tp215946 +a(g215943 +g215945 +S'long;' +p215947 +tp215948 +a(g215945 +g215947 +S'his' +p215949 +tp215950 +a(g215947 +g215949 +S'defense' +p215951 +tp215952 +a(g215949 +g215951 +S'of' +p215953 +tp215954 +a(g215951 +g215953 +S'his' +p215955 +tp215956 +a(g215953 +g215955 +S'role' +p215957 +tp215958 +a(g215955 +g215957 +S'as' +p215959 +tp215960 +a(g215957 +g215959 +S'instigator' +p215961 +tp215962 +a(g215959 +g215961 +S'of' +p215963 +tp215964 +a(g215961 +g215963 +S'the' +p215965 +tp215966 +a(g215963 +g215965 +S'pointillist' +p215967 +tp215968 +a(g215965 +g215967 +S'technique' +p215969 +tp215970 +a(g215967 +g215969 +S'led' +p215971 +tp215972 +a(g215969 +g215971 +S'to' +p215973 +tp215974 +a(g215971 +g215973 +S'tension' +p215975 +tp215976 +a(g215973 +g215975 +S'and' +p215977 +tp215978 +a(g215975 +g215977 +S'jealousies' +p215979 +tp215980 +a(g215977 +g215979 +S'among' +p215981 +tp215982 +a(g215979 +g215981 +S'his' +p215983 +tp215984 +a(g215981 +g215983 +S'peers' +p215985 +tp215986 +a(g215983 +g215985 +S'before' +p215987 +tp215988 +a(g215985 +g215987 +S'the' +p215989 +tp215990 +a(g215987 +g215989 +S'artist\xe2\x80\x99s' +p215991 +tp215992 +a(g215989 +g215991 +S'untimely' +p215993 +tp215994 +a(g215991 +g215993 +S'death' +p215995 +tp215996 +a(g215993 +g215995 +S'from' +p215997 +tp215998 +a(g215995 +g215997 +S'diphtheria' +p215999 +tp216000 +a(g215997 +g215999 +S'at' +p216001 +tp216002 +a(g215999 +g216001 +S'the' +p216003 +tp216004 +a(g216001 +g216003 +S'age' +p216005 +tp216006 +a(g216003 +g216005 +S'of' +p216007 +tp216008 +a(g216005 +g216007 +S'thirty-one.' +p216009 +tp216010 +a(g216007 +g216009 +S'nevertheless,' +p216011 +tp216012 +a(g216009 +g216011 +S'subsequent' +p216013 +tp216014 +a(g216011 +g216013 +S'generations' +p216015 +tp216016 +a(g216013 +g216015 +S'of' +p216017 +tp216018 +a(g216015 +g216017 +S'artists' +p216019 +tp216020 +a(g216017 +g216019 +S'built' +p216021 +tp216022 +a(g216019 +g216021 +S'new' +p216023 +tp216024 +a(g216021 +g216023 +S'artistic' +p216025 +tp216026 +a(g216023 +g216025 +S'vocabularies' +p216027 +tp216028 +a(g216025 +g216027 +S'based' +p216029 +tp216030 +a(g216027 +g216029 +S'in' +p216031 +tp216032 +a(g216029 +g216031 +S'large' +p216033 +tp216034 +a(g216031 +g216033 +S'part' +p216035 +tp216036 +a(g216033 +g216035 +S'on' +p216037 +tp216038 +a(g216035 +g216037 +S'the' +p216039 +tp216040 +a(g216037 +g216039 +S'foundation' +p216041 +tp216042 +a(g216039 +g216041 +S'of' +p216043 +tp216044 +a(g216041 +g216043 +S'his' +p216045 +tp216046 +a(g216043 +g216045 +S'art' +p216047 +tp216048 +a(g216045 +g216047 +S'and' +p216049 +tp216050 +a(g216047 +g216049 +S'ideas.' +p216051 +tp216052 +a(g216049 +g216051 +S'(text' +p216053 +tp216054 +a(g216051 +g216053 +S'by' +p216055 +tp216056 +a(g216053 +g216055 +S'margaret' +p216057 +tp216058 +a(g216055 +g216057 +S'doyle,' +p216059 +tp216060 +a(g216057 +g216059 +S'notes' +p216061 +tp216062 +a(g216059 +g216061 +S'' +p216065 +tp216066 +a(g216063 +g216065 +S'although' +p216067 +tp216068 +a(g216065 +g216067 +S'lautrec' +p216069 +tp216070 +a(g216067 +g216069 +S'is' +p216071 +tp216072 +a(g216069 +g216071 +S'better' +p216073 +tp216074 +a(g216071 +g216073 +S'known' +p216075 +tp216076 +a(g216073 +g216075 +S'for' +p216077 +tp216078 +a(g216075 +g216077 +S'his' +p216079 +tp216080 +a(g216077 +g216079 +S'raucous' +p216081 +tp216082 +a(g216079 +g216081 +S'scenes' +p216083 +tp216084 +a(g216081 +g216083 +S'of' +p216085 +tp216086 +a(g216083 +g216085 +S'parisian' +p216087 +tp216088 +a(g216085 +g216087 +S'nightlife,' +p216089 +tp216090 +a(g216087 +g216089 +S'portraiture' +p216091 +tp216092 +a(g216089 +g216091 +S'makes' +p216093 +tp216094 +a(g216091 +g216093 +S'up' +p216095 +tp216096 +a(g216093 +g216095 +S'a' +p216097 +tp216098 +a(g216095 +g216097 +S'large' +p216099 +tp216100 +a(g216097 +g216099 +S'portion' +p216101 +tp216102 +a(g216099 +g216101 +S'of' +p216103 +tp216104 +a(g216101 +g216103 +S'his' +p216105 +tp216106 +a(g216103 +g216105 +S'production.' +p216107 +tp216108 +a(g216105 +g216107 +S'he' +p216109 +tp216110 +a(g216107 +g216109 +S'rarely' +p216111 +tp216112 +a(g216109 +g216111 +S'painted' +p216113 +tp216114 +a(g216111 +g216113 +S'portraits' +p216115 +tp216116 +a(g216113 +g216115 +S'on' +p216117 +tp216118 +a(g216115 +g216117 +S'commission—his' +p216119 +tp216120 +a(g216117 +g216119 +S'aristocratic' +p216121 +tp216122 +a(g216119 +g216121 +S'lineage' +p216123 +tp216124 +a(g216121 +g216123 +S'ensured' +p216125 +tp216126 +a(g216123 +g216125 +S'a' +p216127 +tp216128 +a(g216125 +g216127 +S'steady' +p216129 +tp216130 +a(g216127 +g216129 +S'income' +p216131 +tp216132 +a(g216129 +g216131 +S'regardless' +p216133 +tp216134 +a(g216131 +g216133 +S'of' +p216135 +tp216136 +a(g216133 +g216135 +S'his' +p216137 +tp216138 +a(g216135 +g216137 +S'sales—but' +p216139 +tp216140 +a(g216137 +g216139 +S'instead' +p216141 +tp216142 +a(g216139 +g216141 +S'was' +p216143 +tp216144 +a(g216141 +g216143 +S'fascinated' +p216145 +tp216146 +a(g216143 +g216145 +S'by' +p216147 +tp216148 +a(g216145 +g216147 +S'faces' +p216149 +tp216150 +a(g216147 +g216149 +S'and' +p216151 +tp216152 +a(g216149 +g216151 +S'personalities,' +p216153 +tp216154 +a(g216151 +g216153 +S'and' +p216155 +tp216156 +a(g216153 +g216155 +S'especially' +p216157 +tp216158 +a(g216155 +g216157 +S'by' +p216159 +tp216160 +a(g216157 +g216159 +S'character' +p216161 +tp216162 +a(g216159 +g216161 +S'types.' +p216163 +tp216164 +a(g216161 +g216163 +S'many' +p216165 +tp216166 +a(g216163 +g216165 +S'of' +p216167 +tp216168 +a(g216165 +g216167 +S'lautrec\xe2\x80\x99s' +p216169 +tp216170 +a(g216167 +g216169 +S'portraits' +p216171 +tp216172 +a(g216169 +g216171 +S'were' +p216173 +tp216174 +a(g216171 +g216173 +S'created' +p216175 +tp216176 +a(g216173 +g216175 +S'in' +p216177 +tp216178 +a(g216175 +g216177 +S'his' +p216179 +tp216180 +a(g216177 +g216179 +S'studio,' +p216181 +tp216182 +a(g216179 +g216181 +S'but' +p216183 +tp216184 +a(g216181 +g216183 +S'he' +p216185 +tp216186 +a(g216183 +g216185 +S'also' +p216187 +tp216188 +a(g216185 +g216187 +S'worked' +p216189 +tp216190 +a(g216187 +g216189 +S'outdoors,' +p216191 +tp216192 +a(g216189 +g216191 +S'as' +p216193 +tp216194 +a(g216191 +g216193 +S'suggested' +p216195 +tp216196 +a(g216193 +g216195 +S'by' +p216197 +tp216198 +a(g216195 +g216197 +S'this' +p216199 +tp216200 +a(g216197 +g216199 +S'scene' +p216201 +tp216202 +a(g216199 +g216201 +S'of' +p216203 +tp216204 +a(g216201 +g216203 +S'a' +p216205 +tp216206 +a(g216203 +g216205 +S'lady' +p216207 +tp216208 +a(g216205 +g216207 +S'sitting' +p216209 +tp216210 +a(g216207 +g216209 +S'with' +p216211 +tp216212 +a(g216209 +g216211 +S'her' +p216213 +tp216214 +a(g216211 +g216213 +S'dog' +p216215 +tp216216 +a(g216213 +g216215 +S'in' +p216217 +tp216218 +a(g216215 +g216217 +S'what' +p216219 +tp216220 +a(g216217 +g216219 +S'appears' +p216221 +tp216222 +a(g216219 +g216221 +S'to' +p216223 +tp216224 +a(g216221 +g216223 +S'be' +p216225 +tp216226 +a(g216223 +g216225 +S'a' +p216227 +tp216228 +a(g216225 +g216227 +S'fenced-in' +p216229 +tp216230 +a(g216227 +g216229 +S'yard.' +p216231 +tp216232 +a(g216229 +g216231 +S'she' +p216233 +tp216234 +a(g216231 +g216233 +S'has' +p216235 +tp216236 +a(g216233 +g216235 +S'traditionally' +p216237 +tp216238 +a(g216235 +g216237 +S'been' +p216239 +tp216240 +a(g216237 +g216239 +S'identified' +p216241 +tp216242 +a(g216239 +g216241 +S'as' +p216243 +tp216244 +a(g216241 +g216243 +S'mme' +p216245 +tp216246 +a(g216243 +g216245 +S'fabre,' +p216247 +tp216248 +a(g216245 +g216247 +S'the' +p216249 +tp216250 +a(g216247 +g216249 +S'wife' +p216251 +tp216252 +a(g216249 +g216251 +S'of' +p216253 +tp216254 +a(g216251 +g216253 +S'lautrec\xe2\x80\x99s' +p216255 +tp216256 +a(g216253 +g216255 +S'friend' +p216257 +tp216258 +a(g216255 +g216257 +S'louis' +p216259 +tp216260 +a(g216257 +g216259 +S'fabre,' +p216261 +tp216262 +a(g216259 +g216261 +S'who' +p216263 +tp216264 +a(g216261 +g216263 +S'lived' +p216265 +tp216266 +a(g216263 +g216265 +S'near' +p216267 +tp216268 +a(g216265 +g216267 +S'the' +p216269 +tp216270 +a(g216267 +g216269 +S'artist' +p216271 +tp216272 +a(g216269 +g216271 +S'in' +p216273 +tp216274 +a(g216271 +g216273 +S'paris' +p216275 +tp216276 +a(g216273 +g216275 +S'and' +p216277 +tp216278 +a(g216275 +g216277 +S'at' +p216279 +tp216280 +a(g216277 +g216279 +S'whose' +p216281 +tp216282 +a(g216279 +g216281 +S'vacation' +p216283 +tp216284 +a(g216281 +g216283 +S'home' +p216285 +tp216286 +a(g216283 +g216285 +S'on' +p216287 +tp216288 +a(g216285 +g216287 +S'the' +p216289 +tp216290 +a(g216287 +g216289 +S'arcachon' +p216291 +tp216292 +a(g216289 +g216291 +S'bay' +p216293 +tp216294 +a(g216291 +g216293 +S'(along' +p216295 +tp216296 +a(g216293 +g216295 +S'the' +p216297 +tp216298 +a(g216295 +g216297 +S'southwest' +p216299 +tp216300 +a(g216297 +g216299 +S'coast' +p216301 +tp216302 +a(g216299 +g216301 +S'of' +p216303 +tp216304 +a(g216301 +g216303 +S'france)' +p216305 +tp216306 +a(g216303 +g216305 +S'lautrec' +p216307 +tp216308 +a(g216305 +g216307 +S'frequently' +p216309 +tp216310 +a(g216307 +g216309 +S'stayed.' +p216311 +tp216312 +a(g216309 +g216311 +S'lautrec' +p216313 +tp216314 +a(g216311 +g216313 +S'began' +p216315 +tp216316 +a(g216313 +g216315 +S'taking' +p216317 +tp216318 +a(g216315 +g216317 +S'notice' +p216319 +tp216320 +a(g216317 +g216319 +S'of' +p216321 +tp216322 +a(g216319 +g216321 +S'avantgarde' +p216323 +tp216324 +a(g216321 +g216323 +S'art' +p216325 +tp216326 +a(g216323 +g216325 +S'in' +p216327 +tp216328 +a(g216325 +g216327 +S'the' +p216329 +tp216330 +a(g216327 +g216329 +S'mid-1880s' +p216331 +tp216332 +a(g216329 +g216331 +S'while' +p216333 +tp216334 +a(g216331 +g216333 +S'still' +p216335 +tp216336 +a(g216333 +g216335 +S'in' +p216337 +tp216338 +a(g216335 +g216337 +S'the' +p216339 +tp216340 +a(g216337 +g216339 +S'studio' +p216341 +tp216342 +a(g216339 +g216341 +S'of' +p216343 +tp216344 +a(g216341 +g216343 +S'his' +p216345 +tp216346 +a(g216343 +g216345 +S'teacher' +p216347 +tp216348 +a(g216345 +g216347 +S'fernand' +p216349 +tp216350 +a(g216347 +g216349 +S'cormon.' +p216351 +tp216352 +a(g216349 +g216351 +S'he' +p216353 +tp216354 +a(g216351 +g216353 +S'wrote' +p216355 +tp216356 +a(g216353 +g216355 +S'to' +p216357 +tp216358 +a(g216355 +g216357 +S'his' +p216359 +tp216360 +a(g216357 +g216359 +S'mother,' +p216361 +tp216362 +a(g216359 +g216361 +S'"vive' +p216363 +tp216364 +a(g216361 +g216363 +S'la' +p216365 +tp216366 +a(g216363 +g216365 +S'r\xc3\xa9volution!' +p216367 +tp216368 +a(g216365 +g216367 +S'vive' +p216369 +tp216370 +a(g216367 +g216369 +S'manet!' +p216371 +tp216372 +a(g216369 +g216371 +S'the' +p216373 +tp216374 +a(g216371 +g216373 +S'breeze' +p216375 +tp216376 +a(g216373 +g216375 +S'of' +p216377 +tp216378 +a(g216375 +g216377 +S'impressionism' +p216379 +tp216380 +a(g216377 +g216379 +S'is' +p216381 +tp216382 +a(g216379 +g216381 +S'blowing' +p216383 +tp216384 +a(g216381 +g216383 +S'through' +p216385 +tp216386 +a(g216383 +g216385 +S'the' +p216387 +tp216388 +a(g216385 +g216387 +S'studio.' +p216389 +tp216390 +a(g216387 +g216389 +S'i\xe2\x80\x99m' +p216391 +tp216392 +a(g216389 +g216391 +S'overjoyed."' +p216393 +tp216394 +a(g216391 +g216393 +S'lady' +p216395 +tp216396 +a(g216393 +g216395 +S'with' +p216397 +tp216398 +a(g216395 +g216397 +S'a' +p216399 +tp216400 +a(g216397 +g216399 +S'dog' +p216401 +tp216402 +a(g216399 +g216401 +S'(text' +p216403 +tp216404 +a(g216401 +g216403 +S'by' +p216405 +tp216406 +a(g216403 +g216405 +S'margaret' +p216407 +tp216408 +a(g216405 +g216407 +S'doyle,' +p216409 +tp216410 +a(g216407 +g216409 +S'notes' +p216411 +tp216412 +a(g216409 +g216411 +S'' +p216415 +tp216416 +a(g216413 +g216415 +S'' +p216419 +tp216420 +a(g216417 +g216419 +S'' +p216423 +tp216424 +a(g216421 +g216423 +S'' +p216427 +tp216428 +a(g216425 +g216427 +S"wtewael's" +p216429 +tp216430 +a(g216427 +g216429 +S'lifelong' +p216431 +tp216432 +a(g216429 +g216431 +S'commitment' +p216433 +tp216434 +a(g216431 +g216433 +S'to' +p216435 +tp216436 +a(g216433 +g216435 +S'mannerism' +p216437 +tp216438 +a(g216435 +g216437 +S'is' +p216439 +tp216440 +a(g216437 +g216439 +S'apparent' +p216441 +tp216442 +a(g216439 +g216441 +S'in' +p216443 +tp216444 +a(g216441 +g216443 +S'this' +p216445 +tp216446 +a(g216443 +g216445 +S'depiction' +p216447 +tp216448 +a(g216445 +g216447 +S'of' +p216449 +tp216450 +a(g216447 +g216449 +S'the' +p216451 +tp216452 +a(g216449 +g216451 +S"mannerists'" +p216453 +tp216454 +a(g216451 +g216453 +S'use' +p216455 +tp216456 +a(g216453 +g216455 +S'of' +p216457 +tp216458 +a(g216455 +g216457 +S'alternating' +p216459 +tp216460 +a(g216457 +g216459 +S'patterns' +p216461 +tp216462 +a(g216459 +g216461 +S'of' +p216463 +tp216464 +a(g216461 +g216463 +S'light' +p216465 +tp216466 +a(g216463 +g216465 +S'and' +p216467 +tp216468 +a(g216465 +g216467 +S'dark,' +p216469 +tp216470 +a(g216467 +g216469 +S'elongated' +p216471 +tp216472 +a(g216469 +g216471 +S'figures,' +p216473 +tp216474 +a(g216471 +g216473 +S'contorted' +p216475 +tp216476 +a(g216473 +g216475 +S'poses,' +p216477 +tp216478 +a(g216475 +g216477 +S'and' +p216479 +tp216480 +a(g216477 +g216479 +S'pastel' +p216481 +tp216482 +a(g216479 +g216481 +S'colors' +p216483 +tp216484 +a(g216481 +g216483 +S'created' +p216485 +tp216486 +a(g216483 +g216485 +S'elegant,' +p216487 +tp216488 +a(g216485 +g216487 +S'yet' +p216489 +tp216490 +a(g216487 +g216489 +S'extremely' +p216491 +tp216492 +a(g216489 +g216491 +S'artificial,' +p216493 +tp216494 +a(g216491 +g216493 +S'scenes.' +p216495 +tp216496 +a(g216493 +g216495 +S'wtewael' +p216497 +tp216498 +a(g216495 +g216497 +S'here' +p216499 +tp216500 +a(g216497 +g216499 +S'depicts' +p216501 +tp216502 +a(g216499 +g216501 +S'many' +p216503 +tp216504 +a(g216501 +g216503 +S'figures' +p216505 +tp216506 +a(g216503 +g216505 +S'who' +p216507 +tp216508 +a(g216505 +g216507 +S'feverishly' +p216509 +tp216510 +a(g216507 +g216509 +S'use' +p216511 +tp216512 +a(g216509 +g216511 +S'pots,' +p216513 +tp216514 +a(g216511 +g216513 +S'pans,' +p216515 +tp216516 +a(g216513 +g216515 +S'and' +p216517 +tp216518 +a(g216515 +g216517 +S'other' +p216519 +tp216520 +a(g216517 +g216519 +S'drinking' +p216521 +tp216522 +a(g216519 +g216521 +S'utensils' +p216523 +tp216524 +a(g216521 +g216523 +S'to' +p216525 +tp216526 +a(g216523 +g216525 +S'capture' +p216527 +tp216528 +a(g216525 +g216527 +S'the' +p216529 +tp216530 +a(g216527 +g216529 +S'precious' +p216531 +tp216532 +a(g216529 +g216531 +S'water.' +p216533 +tp216534 +a(g216531 +g216533 +S'this' +p216535 +tp216536 +a(g216533 +g216535 +S'religious' +p216537 +tp216538 +a(g216535 +g216537 +S'subject' +p216539 +tp216540 +a(g216537 +g216539 +S'was' +p216541 +tp216542 +a(g216539 +g216541 +S'a' +p216543 +tp216544 +a(g216541 +g216543 +S'favorite' +p216545 +tp216546 +a(g216543 +g216545 +S'one' +p216547 +tp216548 +a(g216545 +g216547 +S'for' +p216549 +tp216550 +a(g216547 +g216549 +S'mannerist' +p216551 +tp216552 +a(g216549 +g216551 +S'artists.' +p216553 +tp216554 +a(g216551 +g216553 +S'such' +p216555 +tp216556 +a(g216553 +g216555 +S'paintings' +p216557 +tp216558 +a(g216555 +g216557 +S'were' +p216559 +tp216560 +a(g216557 +g216559 +S'often' +p216561 +tp216562 +a(g216559 +g216561 +S'produced' +p216563 +tp216564 +a(g216561 +g216563 +S'in' +p216565 +tp216566 +a(g216563 +g216565 +S'cooperation' +p216567 +tp216568 +a(g216565 +g216567 +S'with' +p216569 +tp216570 +a(g216567 +g216569 +S'humanist' +p216571 +tp216572 +a(g216569 +g216571 +S'scholars' +p216573 +tp216574 +a(g216571 +g216573 +S'and' +p216575 +tp216576 +a(g216573 +g216575 +S'had' +p216577 +tp216578 +a(g216575 +g216577 +S'allegorical' +p216579 +tp216580 +a(g216577 +g216579 +S'implications.' +p216581 +tp216582 +a(g216579 +g216581 +S'moses,' +p216583 +tp216584 +a(g216581 +g216583 +S'in' +p216585 +tp216586 +a(g216583 +g216585 +S'his' +p216587 +tp216588 +a(g216585 +g216587 +S'role' +p216589 +tp216590 +a(g216587 +g216589 +S'as' +p216591 +tp216592 +a(g216589 +g216591 +S'leader' +p216593 +tp216594 +a(g216591 +g216593 +S'of' +p216595 +tp216596 +a(g216593 +g216595 +S'the' +p216597 +tp216598 +a(g216595 +g216597 +S'israelites,' +p216599 +tp216600 +a(g216597 +g216599 +S'was' +p216601 +tp216602 +a(g216599 +g216601 +S'often' +p216603 +tp216604 +a(g216601 +g216603 +S'seen' +p216605 +tp216606 +a(g216603 +g216605 +S'as' +p216607 +tp216608 +a(g216605 +g216607 +S'a' +p216609 +tp216610 +a(g216607 +g216609 +S'forerunner' +p216611 +tp216612 +a(g216609 +g216611 +S'of' +p216613 +tp216614 +a(g216611 +g216613 +S'christ;' +p216615 +tp216616 +a(g216613 +g216615 +S'more' +p216617 +tp216618 +a(g216615 +g216617 +S'specifically' +p216619 +tp216620 +a(g216617 +g216619 +S'for' +p216621 +tp216622 +a(g216619 +g216621 +S'the' +p216623 +tp216624 +a(g216621 +g216623 +S'dutch,' +p216625 +tp216626 +a(g216623 +g216625 +S'however,' +p216627 +tp216628 +a(g216625 +g216627 +S'were' +p216629 +tp216630 +a(g216627 +g216629 +S'the' +p216631 +tp216632 +a(g216629 +g216631 +S'parallels' +p216633 +tp216634 +a(g216631 +g216633 +S'that' +p216635 +tp216636 +a(g216633 +g216635 +S'could' +p216637 +tp216638 +a(g216635 +g216637 +S'be' +p216639 +tp216640 +a(g216637 +g216639 +S'drawn' +p216641 +tp216642 +a(g216639 +g216641 +S'between' +p216643 +tp216644 +a(g216641 +g216643 +S'moses' +p216645 +tp216646 +a(g216643 +g216645 +S'and' +p216647 +tp216648 +a(g216645 +g216647 +S'their' +p216649 +tp216650 +a(g216647 +g216649 +S'national' +p216651 +tp216652 +a(g216649 +g216651 +S'hero' +p216653 +tp216654 +a(g216651 +g216653 +S'william' +p216655 +tp216656 +a(g216653 +g216655 +S'the' +p216657 +tp216658 +a(g216655 +g216657 +S'silent.' +p216659 +tp216660 +a(g216657 +g216659 +S'both' +p216661 +tp216662 +a(g216659 +g216661 +S'led' +p216663 +tp216664 +a(g216661 +g216663 +S'their' +p216665 +tp216666 +a(g216663 +g216665 +S'people' +p216667 +tp216668 +a(g216665 +g216667 +S'against' +p216669 +tp216670 +a(g216667 +g216669 +S'an' +p216671 +tp216672 +a(g216669 +g216671 +S'oppressive' +p216673 +tp216674 +a(g216671 +g216673 +S'foreign' +p216675 +tp216676 +a(g216673 +g216675 +S'rule,' +p216677 +tp216678 +a(g216675 +g216677 +S'but' +p216679 +tp216680 +a(g216677 +g216679 +S'neither' +p216681 +tp216682 +a(g216679 +g216681 +S'of' +p216683 +tp216684 +a(g216681 +g216683 +S'them' +p216685 +tp216686 +a(g216683 +g216685 +S'lived' +p216687 +tp216688 +a(g216685 +g216687 +S'to' +p216689 +tp216690 +a(g216687 +g216689 +S'witness' +p216691 +tp216692 +a(g216689 +g216691 +S'the' +p216693 +tp216694 +a(g216691 +g216693 +S'formation' +p216695 +tp216696 +a(g216693 +g216695 +S'of' +p216697 +tp216698 +a(g216695 +g216697 +S'the' +p216699 +tp216700 +a(g216697 +g216699 +S'new' +p216701 +tp216702 +a(g216699 +g216701 +S'nation' +p216703 +tp216704 +a(g216701 +g216703 +S'they' +p216705 +tp216706 +a(g216703 +g216705 +S'had' +p216707 +tp216708 +a(g216705 +g216707 +S'foreseen.' +p216709 +tp216710 +a(g216707 +g216709 +S'this' +p216711 +tp216712 +a(g216709 +g216711 +S'porcelain' +p216713 +tp216714 +a(g216711 +g216713 +S'swan' +p216715 +tp216716 +a(g216713 +g216715 +S'was' +p216717 +tp216718 +a(g216715 +g216717 +S'produced' +p216719 +tp216720 +a(g216717 +g216719 +S'about' +p216721 +tp216722 +a(g216719 +g216721 +S'1750' +p216723 +tp216724 +a(g216721 +g216723 +S'from' +p216725 +tp216726 +a(g216723 +g216725 +S'models' +p216727 +tp216728 +a(g216725 +g216727 +S'attributed' +p216729 +tp216730 +a(g216727 +g216729 +S'to' +p216731 +tp216732 +a(g216729 +g216731 +S'between' +p216733 +tp216734 +a(g216731 +g216733 +S'1812' +p216735 +tp216736 +a(g216733 +g216735 +S'and' +p216737 +tp216738 +a(g216735 +g216737 +S'1814,' +p216739 +tp216740 +a(g216737 +g216739 +S'while' +p216741 +tp216742 +a(g216739 +g216741 +S"napoleon's" +p216743 +tp216744 +a(g216741 +g216743 +S'armies' +p216745 +tp216746 +a(g216743 +g216745 +S'waged' +p216747 +tp216748 +a(g216745 +g216747 +S'war' +p216749 +tp216750 +a(g216747 +g216749 +S'across' +p216751 +tp216752 +a(g216749 +g216751 +S'europe,' +p216753 +tp216754 +a(g216751 +g216753 +S'théodore' +p216755 +tp216756 +a(g216753 +g216755 +S'gericault' +p216757 +tp216758 +a(g216755 +g216757 +S'began' +p216759 +tp216760 +a(g216757 +g216759 +S'a' +p216761 +tp216762 +a(g216759 +g216761 +S'series' +p216763 +tp216764 +a(g216761 +g216763 +S'of' +p216765 +tp216766 +a(g216763 +g216765 +S'small' +p216767 +tp216768 +a(g216765 +g216767 +S'canvases' +p216769 +tp216770 +a(g216767 +g216769 +S'depicting' +p216771 +tp216772 +a(g216769 +g216771 +S'napoleonic' +p216773 +tp216774 +a(g216771 +g216773 +S'cavalry' +p216775 +tp216776 +a(g216773 +g216775 +S'officers.' +p216777 +tp216778 +a(g216775 +g216777 +S'these' +p216779 +tp216780 +a(g216777 +g216779 +S'paintings' +p216781 +tp216782 +a(g216779 +g216781 +S'provided' +p216783 +tp216784 +a(g216781 +g216783 +S'gericault' +p216785 +tp216786 +a(g216783 +g216785 +S'with' +p216787 +tp216788 +a(g216785 +g216787 +S'the' +p216789 +tp216790 +a(g216787 +g216789 +S'opportunity' +p216791 +tp216792 +a(g216789 +g216791 +S'to' +p216793 +tp216794 +a(g216791 +g216793 +S'explore' +p216795 +tp216796 +a(g216793 +g216795 +S'two' +p216797 +tp216798 +a(g216795 +g216797 +S'of' +p216799 +tp216800 +a(g216797 +g216799 +S'the' +p216801 +tp216802 +a(g216799 +g216801 +S'subjects' +p216803 +tp216804 +a(g216801 +g216803 +S'that' +p216805 +tp216806 +a(g216803 +g216805 +S'he' +p216807 +tp216808 +a(g216805 +g216807 +S'loved' +p216809 +tp216810 +a(g216807 +g216809 +S'best:' +p216811 +tp216812 +a(g216809 +g216811 +S'the' +p216813 +tp216814 +a(g216811 +g216813 +S'horse' +p216815 +tp216816 +a(g216813 +g216815 +S'and' +p216817 +tp216818 +a(g216815 +g216817 +S'the' +p216819 +tp216820 +a(g216817 +g216819 +S'pomp' +p216821 +tp216822 +a(g216819 +g216821 +S'of' +p216823 +tp216824 +a(g216821 +g216823 +S'military' +p216825 +tp216826 +a(g216823 +g216825 +S'life.' +p216827 +tp216828 +a(g216825 +g216827 +S'the' +p216829 +tp216830 +a(g216827 +g216829 +S'this' +p216831 +tp216832 +a(g216829 +g216831 +S'ming' +p216833 +tp216834 +a(g216831 +g216833 +S'dynasty' +p216835 +tp216836 +a(g216833 +g216835 +S'stem' +p216837 +tp216838 +a(g216835 +g216837 +S'bowl—a' +p216839 +tp216840 +a(g216837 +g216839 +S'shape' +p216841 +tp216842 +a(g216839 +g216841 +S'used' +p216843 +tp216844 +a(g216841 +g216843 +S'in' +p216845 +tp216846 +a(g216843 +g216845 +S'buddhist' +p216847 +tp216848 +a(g216845 +g216847 +S'ritual—exemplifies' +p216849 +tp216850 +a(g216847 +g216849 +S'the' +p216851 +tp216852 +a(g216849 +g216851 +S'finest' +p216853 +tp216854 +a(g216851 +g216853 +S'blue-and-white' +p216855 +tp216856 +a(g216853 +g216855 +S'porcelains' +p216857 +tp216858 +a(g216855 +g216857 +S'of' +p216859 +tp216860 +a(g216857 +g216859 +S'the' +p216861 +tp216862 +a(g216859 +g216861 +S'early' +p216863 +tp216864 +a(g216861 +g216863 +S'fifteenth' +p216865 +tp216866 +a(g216863 +g216865 +S'century.' +p216867 +tp216868 +a(g216865 +g216867 +S'the' +p216869 +tp216870 +a(g216867 +g216869 +S'design' +p216871 +tp216872 +a(g216869 +g216871 +S'is' +p216873 +tp216874 +a(g216871 +g216873 +S'painted' +p216875 +tp216876 +a(g216873 +g216875 +S'in' +p216877 +tp216878 +a(g216875 +g216877 +S'underglaze' +p216879 +tp216880 +a(g216877 +g216879 +S'cobalt' +p216881 +tp216882 +a(g216879 +g216881 +S'blue.' +p216883 +tp216884 +a(g216881 +g216883 +S'leafy' +p216885 +tp216886 +a(g216883 +g216885 +S'tendrils' +p216887 +tp216888 +a(g216885 +g216887 +S'of' +p216889 +tp216890 +a(g216887 +g216889 +S'a' +p216891 +tp216892 +a(g216889 +g216891 +S'lotus' +p216893 +tp216894 +a(g216891 +g216893 +S'scroll' +p216895 +tp216896 +a(g216893 +g216895 +S'enframe' +p216897 +tp216898 +a(g216895 +g216897 +S'eight' +p216899 +tp216900 +a(g216897 +g216899 +S'blossoms,' +p216901 +tp216902 +a(g216899 +g216901 +S'each' +p216903 +tp216904 +a(g216901 +g216903 +S'topped' +p216905 +tp216906 +a(g216903 +g216905 +S'with' +p216907 +tp216908 +a(g216905 +g216907 +S'one' +p216909 +tp216910 +a(g216907 +g216909 +S'of' +p216911 +tp216912 +a(g216909 +g216911 +S"buddhism's" +p216913 +tp216914 +a(g216911 +g216913 +S'eight' +p216915 +tp216916 +a(g216913 +g216915 +S'auspicious' +p216917 +tp216918 +a(g216915 +g216917 +S'emblems:' +p216919 +tp216920 +a(g216917 +g216919 +S'a' +p216921 +tp216922 +a(g216919 +g216921 +S'pair' +p216923 +tp216924 +a(g216921 +g216923 +S'of' +p216925 +tp216926 +a(g216923 +g216925 +S'fish,' +p216927 +tp216928 +a(g216925 +g216927 +S'a' +p216929 +tp216930 +a(g216927 +g216929 +S'lotus' +p216931 +tp216932 +a(g216929 +g216931 +S'flower,' +p216933 +tp216934 +a(g216931 +g216933 +S'a' +p216935 +tp216936 +a(g216933 +g216935 +S'canopy,' +p216937 +tp216938 +a(g216935 +g216937 +S'a' +p216939 +tp216940 +a(g216937 +g216939 +S'parasol,' +p216941 +tp216942 +a(g216939 +g216941 +S'a' +p216943 +tp216944 +a(g216941 +g216943 +S'conch' +p216945 +tp216946 +a(g216943 +g216945 +S'shell,' +p216947 +tp216948 +a(g216945 +g216947 +S'the' +p216949 +tp216950 +a(g216947 +g216949 +S'wheel' +p216951 +tp216952 +a(g216949 +g216951 +S'of' +p216953 +tp216954 +a(g216951 +g216953 +S'dharma,' +p216955 +tp216956 +a(g216953 +g216955 +S'an' +p216957 +tp216958 +a(g216955 +g216957 +S'endless' +p216959 +tp216960 +a(g216957 +g216959 +S'knot,' +p216961 +tp216962 +a(g216959 +g216961 +S'and' +p216963 +tp216964 +a(g216961 +g216963 +S'a' +p216965 +tp216966 +a(g216963 +g216965 +S'vase.' +p216967 +tp216968 +a(g216965 +g216967 +S'these' +p216969 +tp216970 +a(g216967 +g216969 +S'symbolize' +p216971 +tp216972 +a(g216969 +g216971 +S'freedom,' +p216973 +tp216974 +a(g216971 +g216973 +S'purity,' +p216975 +tp216976 +a(g216973 +g216975 +S'righteousness,' +p216977 +tp216978 +a(g216975 +g216977 +S'respect,' +p216979 +tp216980 +a(g216977 +g216979 +S'the' +p216981 +tp216982 +a(g216979 +g216981 +S"buddha's" +p216983 +tp216984 +a(g216981 +g216983 +S'voice,' +p216985 +tp216986 +a(g216983 +g216985 +S'buddhist' +p216987 +tp216988 +a(g216985 +g216987 +S'law,' +p216989 +tp216990 +a(g216987 +g216989 +S'compassion,' +p216991 +tp216992 +a(g216989 +g216991 +S'and' +p216993 +tp216994 +a(g216991 +g216993 +S'truth.' +p216995 +tp216996 +a(g216993 +g216995 +S'the' +p216997 +tp216998 +a(g216995 +g216997 +S'shape' +p216999 +tp217000 +a(g216997 +g216999 +S'and' +p217001 +tp217002 +a(g216999 +g217001 +S'the' +p217003 +tp217004 +a(g217001 +g217003 +S'decorative' +p217005 +tp217006 +a(g217003 +g217005 +S'motifs' +p217007 +tp217008 +a(g217005 +g217007 +S'of' +p217009 +tp217010 +a(g217007 +g217009 +S'this' +p217011 +tp217012 +a(g217009 +g217011 +S'finely' +p217013 +tp217014 +a(g217011 +g217013 +S'potted' +p217015 +tp217016 +a(g217013 +g217015 +S'stem' +p217017 +tp217018 +a(g217015 +g217017 +S'cup' +p217019 +tp217020 +a(g217017 +g217019 +S'are' +p217021 +tp217022 +a(g217019 +g217021 +S'characteristic' +p217023 +tp217024 +a(g217021 +g217023 +S'of' +p217025 +tp217026 +a(g217023 +g217025 +S'the' +p217027 +tp217028 +a(g217025 +g217027 +S'late' +p217029 +tp217030 +a(g217027 +g217029 +S'fifteenth' +p217031 +tp217032 +a(g217029 +g217031 +S'and' +p217033 +tp217034 +a(g217031 +g217033 +S'early' +p217035 +tp217036 +a(g217033 +g217035 +S'sixteenth' +p217037 +tp217038 +a(g217035 +g217037 +S'centuries.' +p217039 +tp217040 +a(g217037 +g217039 +S'the' +p217041 +tp217042 +a(g217039 +g217041 +S'interior' +p217043 +tp217044 +a(g217041 +g217043 +S'is' +p217045 +tp217046 +a(g217043 +g217045 +S'decorated' +p217047 +tp217048 +a(g217045 +g217047 +S'with' +p217049 +tp217050 +a(g217047 +g217049 +S'two' +p217051 +tp217052 +a(g217049 +g217051 +S'incised' +p217053 +tp217054 +a(g217051 +g217053 +S'dragons' +p217055 +tp217056 +a(g217053 +g217055 +S'chasing' +p217057 +tp217058 +a(g217055 +g217057 +S'flaming' +p217059 +tp217060 +a(g217057 +g217059 +S'pearls' +p217061 +tp217062 +a(g217059 +g217061 +S'around' +p217063 +tp217064 +a(g217061 +g217063 +S'the' +p217065 +tp217066 +a(g217063 +g217065 +S'cavetto' +p217067 +tp217068 +a(g217065 +g217067 +S'and' +p217069 +tp217070 +a(g217067 +g217069 +S'covered' +p217071 +tp217072 +a(g217069 +g217071 +S'with' +p217073 +tp217074 +a(g217071 +g217073 +S'colorless' +p217075 +tp217076 +a(g217073 +g217075 +S'glaze.' +p217077 +tp217078 +a(g217075 +g217077 +S'at' +p217079 +tp217080 +a(g217077 +g217079 +S'the' +p217081 +tp217082 +a(g217079 +g217081 +S'center' +p217083 +tp217084 +a(g217081 +g217083 +S'is' +p217085 +tp217086 +a(g217083 +g217085 +S'an' +p217087 +tp217088 +a(g217085 +g217087 +S'incised' +p217089 +tp217090 +a(g217087 +g217089 +S'double' +p217091 +tp217092 +a(g217089 +g217091 +S'circle' +p217093 +tp217094 +a(g217091 +g217093 +S'containing' +p217095 +tp217096 +a(g217093 +g217095 +S'three' +p217097 +tp217098 +a(g217095 +g217097 +S'stylized' +p217099 +tp217100 +a(g217097 +g217099 +S'the' +p217101 +tp217102 +a(g217099 +g217101 +S'presence' +p217103 +tp217104 +a(g217101 +g217103 +S'of' +p217105 +tp217106 +a(g217103 +g217105 +S'slip-trailed' +p217107 +tp217108 +a(g217105 +g217107 +S'decoration' +p217109 +tp217110 +a(g217107 +g217109 +S'is' +p217111 +tp217112 +a(g217109 +g217111 +S'rare' +p217113 +tp217114 +a(g217111 +g217113 +S'on' +p217115 +tp217116 +a(g217113 +g217115 +S'this' +p217117 +tp217118 +a(g217115 +g217117 +S'type' +p217119 +tp217120 +a(g217117 +g217119 +S'of' +p217121 +tp217122 +a(g217119 +g217121 +S'vessel,' +p217123 +tp217124 +a(g217121 +g217123 +S'as' +p217125 +tp217126 +a(g217123 +g217125 +S'the' +p217127 +tp217128 +a(g217125 +g217127 +S'majority' +p217129 +tp217130 +a(g217127 +g217129 +S'of' +p217131 +tp217132 +a(g217129 +g217131 +S'middle-ming' +p217133 +tp217134 +a(g217131 +g217133 +S'stem' +p217135 +tp217136 +a(g217133 +g217135 +S'cups' +p217137 +tp217138 +a(g217135 +g217137 +S'with' +p217139 +tp217140 +a(g217137 +g217139 +S'similarly' +p217141 +tp217142 +a(g217139 +g217141 +S'styled' +p217143 +tp217144 +a(g217141 +g217143 +S'yellow' +p217145 +tp217146 +a(g217143 +g217145 +S'and' +p217147 +tp217148 +a(g217145 +g217147 +S'green' +p217149 +tp217150 +a(g217147 +g217149 +S'enamel' +p217151 +tp217152 +a(g217149 +g217151 +S'decoration' +p217153 +tp217154 +a(g217151 +g217153 +S'have' +p217155 +tp217156 +a(g217153 +g217155 +S'the' +p217157 +tp217158 +a(g217155 +g217157 +S'designs' +p217159 +tp217160 +a(g217157 +g217159 +S'incised' +p217161 +tp217162 +a(g217159 +g217161 +S'into' +p217163 +tp217164 +a(g217161 +g217163 +S'the' +p217165 +tp217166 +a(g217163 +g217165 +S'body.' +p217167 +tp217168 +a(g217165 +g217167 +S'an' +p217169 +tp217170 +a(g217167 +g217169 +S'unusual' +p217171 +tp217172 +a(g217169 +g217171 +S'feature' +p217173 +tp217174 +a(g217171 +g217173 +S'of' +p217175 +tp217176 +a(g217173 +g217175 +S'this' +p217177 +tp217178 +a(g217175 +g217177 +S'stem' +p217179 +tp217180 +a(g217177 +g217179 +S'cup' +p217181 +tp217182 +a(g217179 +g217181 +S'is' +p217183 +tp217184 +a(g217181 +g217183 +S'the' +p217185 +tp217186 +a(g217183 +g217185 +S'four-character' +p217187 +tp217188 +a(g217185 +g217187 +S''phagspa' +p217189 +tp217190 +a(g217187 +g217189 +S'script' +p217191 +tp217192 +a(g217189 +g217191 +S'mark' +p217193 +tp217194 +a(g217191 +g217193 +S'inscribed' +p217195 +tp217196 +a(g217193 +g217195 +S'in' +p217197 +tp217198 +a(g217195 +g217197 +S'underglaze' +p217199 +tp217200 +a(g217197 +g217199 +S'blue' +p217201 +tp217202 +a(g217199 +g217201 +S'on' +p217203 +tp217204 +a(g217201 +g217203 +S'the' +p217205 +tp217206 +a(g217203 +g217205 +S'interior' +p217207 +tp217208 +a(g217205 +g217207 +S'wall' +p217209 +tp217210 +a(g217207 +g217209 +S'of' +p217211 +tp217212 +a(g217209 +g217211 +S'the' +p217213 +tp217214 +a(g217211 +g217213 +S'foot.' +p217215 +tp217216 +a(g217213 +g217215 +S'this' +p217217 +tp217218 +a(g217215 +g217217 +S'script' +p217219 +tp217220 +a(g217217 +g217219 +S'was' +p217221 +tp217222 +a(g217219 +g217221 +S'invented' +p217223 +tp217224 +a(g217221 +g217223 +S'in' +p217225 +tp217226 +a(g217223 +g217225 +S'the' +p217227 +tp217228 +a(g217225 +g217227 +S'early' +p217229 +tp217230 +a(g217227 +g217229 +S'yuan' +p217231 +tp217232 +a(g217229 +g217231 +S'dynasty' +p217233 +tp217234 +a(g217231 +g217233 +S'(late' +p217235 +tp217236 +a(g217233 +g217235 +S'thirteenth' +p217237 +tp217238 +a(g217235 +g217237 +S'century)' +p217239 +tp217240 +a(g217237 +g217239 +S'by' +p217241 +tp217242 +a(g217239 +g217241 +S'the' +p217243 +tp217244 +a(g217241 +g217243 +S'tibetan' +p217245 +tp217246 +a(g217243 +g217245 +S'monk' +p217247 +tp217248 +a(g217245 +g217247 +S''phagspa' +p217249 +tp217250 +a(g217247 +g217249 +S'(d.' +p217251 +tp217252 +a(g217249 +g217251 +S'1280)' +p217253 +tp217254 +a(g217251 +g217253 +S'for' +p217255 +tp217256 +a(g217253 +g217255 +S'the' +p217257 +tp217258 +a(g217255 +g217257 +S'phoneticization' +p217259 +tp217260 +a(g217257 +g217259 +S'of' +p217261 +tp217262 +a(g217259 +g217261 +S'chinese' +p217263 +tp217264 +a(g217261 +g217263 +S'words' +p217265 +tp217266 +a(g217263 +g217265 +S'into' +p217267 +tp217268 +a(g217265 +g217267 +S'tibetan' +p217269 +tp217270 +a(g217267 +g217269 +S'and' +p217271 +tp217272 +a(g217269 +g217271 +S'mongolian.' +p217273 +tp217274 +a(g217271 +g217273 +S'since' +p217275 +tp217276 +a(g217273 +g217275 +S'all' +p217277 +tp217278 +a(g217275 +g217277 +S'three' +p217279 +tp217280 +a(g217277 +g217279 +S'vessels' +p217281 +tp217282 +a(g217279 +g217281 +S'are' +p217283 +tp217284 +a(g217281 +g217283 +S'decorated' +p217285 +tp217286 +a(g217283 +g217285 +S'in' +p217287 +tp217288 +a(g217285 +g217287 +S'the' +p217289 +tp217290 +a(g217287 +g217289 +S'style' +p217291 +tp217292 +a(g217289 +g217291 +S'of' +p217293 +tp217294 +a(g217291 +g217293 +S'the' +p217295 +tp217296 +a(g217293 +g217295 +S'zhengde' +p217297 +tp217298 +a(g217295 +g217297 +S'reign,' +p217299 +tp217300 +a(g217297 +g217299 +S'and' +p217301 +tp217302 +a(g217299 +g217301 +S'yet' +p217303 +tp217304 +a(g217301 +g217303 +S'have' +p217305 +tp217306 +a(g217303 +g217305 +S''phagspa' +p217307 +tp217308 +a(g217305 +g217307 +S'marks' +p217309 +tp217310 +a(g217307 +g217309 +S'corresponding' +p217311 +tp217312 +a(g217309 +g217311 +S'to' +p217313 +tp217314 +a(g217311 +g217313 +S'the' +p217315 +tp217316 +a(g217313 +g217315 +S'jiajing' +p217317 +tp217318 +a(g217315 +g217317 +S'reign' +p217319 +tp217320 +a(g217317 +g217319 +S'mark,' +p217321 +tp217322 +a(g217319 +g217321 +S'it' +p217323 +tp217324 +a(g217321 +g217323 +S'is' +p217325 +tp217326 +a(g217323 +g217325 +S'probable' +p217327 +tp217328 +a(g217325 +g217327 +S'that' +p217329 +tp217330 +a(g217327 +g217329 +S'they' +p217331 +tp217332 +a(g217329 +g217331 +S'were' +p217333 +tp217334 +a(g217331 +g217333 +S'produced' +p217335 +tp217336 +a(g217333 +g217335 +S'in' +p217337 +tp217338 +a(g217335 +g217337 +S'the' +p217339 +tp217340 +a(g217337 +g217339 +S'first' +p217341 +tp217342 +a(g217339 +g217341 +S'years' +p217343 +tp217344 +a(g217341 +g217343 +S'of' +p217345 +tp217346 +a(g217343 +g217345 +S'the' +p217347 +tp217348 +a(g217345 +g217347 +S'latter' +p217349 +tp217350 +a(g217347 +g217349 +S'period.' +p217351 +tp217352 +a(g217349 +g217351 +S'it' +p217353 +tp217354 +a(g217351 +g217353 +S'is' +p217355 +tp217356 +a(g217353 +g217355 +S'also' +p217357 +tp217358 +a(g217355 +g217357 +S'likely' +p217359 +tp217360 +a(g217357 +g217359 +S'that' +p217361 +tp217362 +a(g217359 +g217361 +S'these' +p217363 +tp217364 +a(g217361 +g217363 +S'vessels' +p217365 +tp217366 +a(g217363 +g217365 +S'were' +p217367 +tp217368 +a(g217365 +g217367 +S'made' +p217369 +tp217370 +a(g217367 +g217369 +S'as' +p217371 +tp217372 +a(g217369 +g217371 +S'an' +p217373 +tp217374 +a(g217371 +g217373 +S'imperial' +p217375 +tp217376 +a(g217373 +g217375 +S'gift' +p217377 +tp217378 +a(g217375 +g217377 +S'to' +p217379 +tp217380 +a(g217377 +g217379 +S'a' +p217381 +tp217382 +a(g217379 +g217381 +S'tibetan' +p217383 +tp217384 +a(g217381 +g217383 +S'temple' +p217385 +tp217386 +a(g217383 +g217385 +S'or' +p217387 +tp217388 +a(g217385 +g217387 +S'high-ranking' +p217389 +tp217390 +a(g217387 +g217389 +S'lama.' +p217391 +tp217392 +a(g217389 +g217391 +S'the' +p217393 +tp217394 +a(g217391 +g217393 +S'vessels' +p217395 +tp217396 +a(g217393 +g217395 +S'were' +p217397 +tp217398 +a(g217395 +g217397 +S'probably' +p217399 +tp217400 +a(g217397 +g217399 +S'produced' +p217401 +tp217402 +a(g217399 +g217401 +S'no' +p217403 +tp217404 +a(g217401 +g217403 +S'later' +p217405 +tp217406 +a(g217403 +g217405 +S'than' +p217407 +tp217408 +a(g217405 +g217407 +S'the' +p217409 +tp217410 +a(g217407 +g217409 +S'first' +p217411 +tp217412 +a(g217409 +g217411 +S'years' +p217413 +tp217414 +a(g217411 +g217413 +S'of' +p217415 +tp217416 +a(g217413 +g217415 +S'jiajing,' +p217417 +tp217418 +a(g217415 +g217417 +S'since' +p217419 +tp217420 +a(g217417 +g217419 +S'the' +p217421 +tp217422 +a(g217419 +g217421 +S'ceramic' +p217423 +tp217424 +a(g217421 +g217423 +S'decorative' +p217425 +tp217426 +a(g217423 +g217425 +S'style' +p217427 +tp217428 +a(g217425 +g217427 +S'changed' +p217429 +tp217430 +a(g217427 +g217429 +S'soon' +p217431 +tp217432 +a(g217429 +g217431 +S'after' +p217433 +tp217434 +a(g217431 +g217433 +S'the' +p217435 +tp217436 +a(g217433 +g217435 +S'beginning' +p217437 +tp217438 +a(g217435 +g217437 +S'of' +p217439 +tp217440 +a(g217437 +g217439 +S'the' +p217441 +tp217442 +a(g217439 +g217441 +S'jiajing' +p217443 +tp217444 +a(g217441 +g217443 +S'reign' +p217445 +tp217446 +a(g217443 +g217445 +S'in' +p217447 +tp217448 +a(g217445 +g217447 +S'1522.' +p217449 +tp217450 +a(g217447 +g217449 +S'furthermore,' +p217451 +tp217452 +a(g217449 +g217451 +S'the' +p217453 +tp217454 +a(g217451 +g217453 +S'jiajing' +p217455 +tp217456 +a(g217453 +g217455 +S"emperor's" +p217457 +tp217458 +a(g217455 +g217457 +S'growing' +p217459 +tp217460 +a(g217457 +g217459 +S'obsession' +p217461 +tp217462 +a(g217459 +g217461 +S'with' +p217463 +tp217464 +a(g217461 +g217463 +S'the' +p217465 +tp217466 +a(g217463 +g217465 +S'daoist' +p217467 +tp217468 +a(g217465 +g217467 +S'religion' +p217469 +tp217470 +a(g217467 +g217469 +S'(at' +p217471 +tp217472 +a(g217469 +g217471 +S'the' +p217473 +tp217474 +a(g217471 +g217473 +S'expense' +p217475 +tp217476 +a(g217473 +g217475 +S'of' +p217477 +tp217478 +a(g217475 +g217477 +S'the' +p217479 +tp217480 +a(g217477 +g217479 +S'influence' +p217481 +tp217482 +a(g217479 +g217481 +S'of' +p217483 +tp217484 +a(g217481 +g217483 +S'the' +p217485 +tp217486 +a(g217483 +g217485 +S'buddhist' +p217487 +tp217488 +a(g217485 +g217487 +S'church)' +p217489 +tp217490 +a(g217487 +g217489 +S'would' +p217491 +tp217492 +a(g217489 +g217491 +S'have' +p217493 +tp217494 +a(g217491 +g217493 +S'made' +p217495 +tp217496 +a(g217493 +g217495 +S'such' +p217497 +tp217498 +a(g217495 +g217497 +S'a' +p217499 +tp217500 +a(g217497 +g217499 +S'gift' +p217501 +tp217502 +a(g217499 +g217501 +S'unlikely' +p217503 +tp217504 +a(g217501 +g217503 +S'late' +p217505 +tp217506 +a(g217503 +g217505 +S'in' +p217507 +tp217508 +a(g217505 +g217507 +S'his' +p217509 +tp217510 +a(g217507 +g217509 +S'reign.' +p217511 +tp217512 +a(g217509 +g217511 +S'(text' +p217513 +tp217514 +a(g217511 +g217513 +S'by' +p217515 +tp217516 +a(g217513 +g217515 +S'stephen' +p217517 +tp217518 +a(g217515 +g217517 +S'little,' +p217519 +tp217520 +a(g217517 +g217519 +S'published' +p217521 +tp217522 +a(g217519 +g217521 +S'in' +p217523 +tp217524 +a(g217521 +g217523 +S'the' +p217525 +tp217526 +a(g217523 +g217525 +S'nga' +p217527 +tp217528 +a(g217525 +g217527 +S'systematic' +p217529 +tp217530 +a(g217527 +g217529 +S'catalogue:' +p217531 +tp217532 +a(g217529 +g217531 +S'notes' +p217533 +tp217534 +a(g217531 +g217533 +S'' +p217537 +tp217538 +a(g217535 +g217537 +S'' +p217541 +tp217542 +a(g217539 +g217541 +S'' +p217545 +tp217546 +a(g217543 +g217545 +S'' +p217549 +tp217550 +a(g217547 +g217549 +S'' +p217553 +tp217554 +a(g217551 +g217553 +S'' +p217557 +tp217558 +a(g217555 +g217557 +S'this' +p217559 +tp217560 +a(g217557 +g217559 +S'bottle' +p217561 +tp217562 +a(g217559 +g217561 +S'vase' +p217563 +tp217564 +a(g217561 +g217563 +S'represents' +p217565 +tp217566 +a(g217563 +g217565 +S'a' +p217567 +tp217568 +a(g217565 +g217567 +S'shape' +p217569 +tp217570 +a(g217567 +g217569 +S'of' +p217571 +tp217572 +a(g217569 +g217571 +S'the' +p217573 +tp217574 +a(g217571 +g217573 +S'late' +p217575 +tp217576 +a(g217573 +g217575 +S'kangxi' +p217577 +tp217578 +a(g217575 +g217577 +S'period.' +p217579 +tp217580 +a(g217577 +g217579 +S'(text' +p217581 +tp217582 +a(g217579 +g217581 +S'by' +p217583 +tp217584 +a(g217581 +g217583 +S'stephen' +p217585 +tp217586 +a(g217583 +g217585 +S'little,' +p217587 +tp217588 +a(g217585 +g217587 +S'published' +p217589 +tp217590 +a(g217587 +g217589 +S'in' +p217591 +tp217592 +a(g217589 +g217591 +S'the' +p217593 +tp217594 +a(g217591 +g217593 +S'nga' +p217595 +tp217596 +a(g217593 +g217595 +S'systematic' +p217597 +tp217598 +a(g217595 +g217597 +S'catalogue:' +p217599 +tp217600 +a(g217597 +g217599 +S'notes' +p217607 +tp217608 +a(g217605 +g217607 +S'1.' +p217611 +tp217612 +a(g217609 +g217611 +S'for' +p217613 +tp217614 +a(g217611 +g217613 +S'a' +p217615 +tp217616 +a(g217613 +g217615 +S'similar' +p217617 +tp217618 +a(g217615 +g217617 +S'example,' +p217619 +tp217620 +a(g217617 +g217619 +S'see' +p217621 +tp217622 +a(g217619 +g217621 +S'special' +p217623 +tp217624 +a(g217621 +g217623 +S'exhibition' +p217625 +tp217626 +a(g217623 +g217625 +S'of' +p217627 +tp217628 +a(g217625 +g217627 +S'hsüan-te' +p217629 +tp217630 +a(g217627 +g217629 +S'porcelain' +p217631 +tp217632 +a(g217629 +g217631 +S'of' +p217633 +tp217634 +a(g217631 +g217633 +S'the' +p217635 +tp217636 +a(g217633 +g217635 +S'ming' +p217637 +tp217638 +a(g217635 +g217637 +S'dynasty' +p217639 +tp217640 +a(g217637 +g217639 +S'[exh.' +p217641 +tp217642 +a(g217639 +g217641 +S'cat.' +p217643 +tp217644 +a(g217641 +g217643 +S'national' +p217645 +tp217646 +a(g217643 +g217645 +S'palace' +p217647 +tp217648 +a(g217645 +g217647 +S'museum],' +p217649 +tp217650 +a(g217647 +g217649 +S'taipei,' +p217651 +tp217652 +a(g217649 +g217651 +S'1980,' +p217653 +tp217654 +a(g217651 +g217653 +S'pl.' +p217655 +tp217656 +a(g217653 +g217655 +S'12.' +p217657 +tp217658 +a(g217655 +g217657 +S'for' +p217659 +tp217660 +a(g217657 +g217659 +S'an' +p217661 +tp217662 +a(g217659 +g217661 +S'example' +p217663 +tp217664 +a(g217661 +g217663 +S'in' +p217665 +tp217666 +a(g217663 +g217665 +S'steatitic' +p217667 +tp217668 +a(g217665 +g217667 +S'porcelain' +p217669 +tp217670 +a(g217667 +g217669 +S'that' +p217671 +tp217672 +a(g217669 +g217671 +S'has' +p217673 +tp217674 +a(g217671 +g217673 +S'been' +p217675 +tp217676 +a(g217673 +g217675 +S'dated' +p217677 +tp217678 +a(g217675 +g217677 +S'to' +p217679 +tp217680 +a(g217677 +g217679 +S'the' +p217681 +tp217682 +a(g217679 +g217681 +S'late' +p217683 +tp217684 +a(g217681 +g217683 +S'kangxi' +p217685 +tp217686 +a(g217683 +g217685 +S'or' +p217687 +tp217688 +a(g217685 +g217687 +S'early' +p217689 +tp217690 +a(g217687 +g217689 +S'yongzheng' +p217691 +tp217692 +a(g217689 +g217691 +S'period,' +p217693 +tp217694 +a(g217691 +g217693 +S'see' +p217695 +tp217696 +a(g217693 +g217695 +S'h.' +p217697 +tp217698 +a(g217695 +g217697 +S'a.' +p217699 +tp217700 +a(g217697 +g217699 +S'van' +p217701 +tp217702 +a(g217699 +g217701 +S'oort' +p217703 +tp217704 +a(g217701 +g217703 +S'and' +p217705 +tp217706 +a(g217703 +g217705 +S'j.' +p217707 +tp217708 +a(g217705 +g217707 +S'm.' +p217709 +tp217710 +a(g217707 +g217709 +S'kater,' +p217711 +tp217712 +a(g217709 +g217711 +S'"chinese' +p217713 +tp217714 +a(g217711 +g217713 +S'soft' +p217715 +tp217716 +a(g217713 +g217715 +S'paste' +p217717 +tp217718 +a(g217715 +g217717 +S'or' +p217719 +tp217720 +a(g217717 +g217719 +S'steatitic' +p217721 +tp217722 +a(g217719 +g217721 +S'porcelain,"' +p217723 +tp217724 +a(g217721 +g217723 +S'arts' +p217725 +tp217726 +a(g217723 +g217725 +S'of' +p217727 +tp217728 +a(g217725 +g217727 +S'asia' +p217729 +tp217730 +a(g217727 +g217729 +S'12,' +p217731 +tp217732 +a(g217729 +g217731 +S'no.' +p217733 +tp217734 +a(g217731 +g217733 +S'2' +p217735 +tp217736 +a(g217733 +g217735 +S'(march-april' +p217737 +tp217738 +a(g217735 +g217737 +S'1982),' +p217739 +tp217740 +a(g217737 +g217739 +S'fig.' +p217741 +tp217742 +a(g217739 +g217741 +S'5.' +p217743 +tp217744 +a(g217741 +g217743 +S'the' +p217745 +tp217746 +a(g217743 +g217745 +S'exterior' +p217747 +tp217748 +a(g217745 +g217747 +S'of' +p217749 +tp217750 +a(g217747 +g217749 +S'this' +p217751 +tp217752 +a(g217749 +g217751 +S'classical' +p217753 +tp217754 +a(g217751 +g217753 +S'peachbloom' +p217755 +tp217756 +a(g217753 +g217755 +S'vessel' +p217757 +tp217758 +a(g217755 +g217757 +S'is' +p217759 +tp217760 +a(g217757 +g217759 +S'covered' +p217761 +tp217762 +a(g217759 +g217761 +S'with' +p217763 +tp217764 +a(g217761 +g217763 +S'a' +p217765 +tp217766 +a(g217763 +g217765 +S'dull' +p217767 +tp217768 +a(g217765 +g217767 +S'red' +p217769 +tp217770 +a(g217767 +g217769 +S'glaze.' +p217771 +tp217772 +a(g217769 +g217771 +S'there' +p217773 +tp217774 +a(g217771 +g217773 +S'are' +p217775 +tp217776 +a(g217773 +g217775 +S'several' +p217777 +tp217778 +a(g217775 +g217777 +S'small' +p217779 +tp217780 +a(g217777 +g217779 +S'patches' +p217781 +tp217782 +a(g217779 +g217781 +S'of' +p217783 +tp217784 +a(g217781 +g217783 +S'pale' +p217785 +tp217786 +a(g217783 +g217785 +S'green' +p217787 +tp217788 +a(g217785 +g217787 +S'color.' +p217789 +tp217790 +a(g217787 +g217789 +S'(text' +p217791 +tp217792 +a(g217789 +g217791 +S'by' +p217793 +tp217794 +a(g217791 +g217793 +S'stephen' +p217795 +tp217796 +a(g217793 +g217795 +S'little,' +p217797 +tp217798 +a(g217795 +g217797 +S'published' +p217799 +tp217800 +a(g217797 +g217799 +S'in' +p217801 +tp217802 +a(g217799 +g217801 +S'the' +p217803 +tp217804 +a(g217801 +g217803 +S'nga' +p217805 +tp217806 +a(g217803 +g217805 +S'systematic' +p217807 +tp217808 +a(g217805 +g217807 +S'catalogue:' +p217809 +tp217810 +a(g217807 +g217809 +S'this' +p217811 +tp217812 +a(g217809 +g217811 +S'vase' +p217813 +tp217814 +a(g217811 +g217813 +S'has' +p217815 +tp217816 +a(g217813 +g217815 +S'a' +p217817 +tp217818 +a(g217815 +g217817 +S'globular' +p217819 +tp217820 +a(g217817 +g217819 +S'body' +p217821 +tp217822 +a(g217819 +g217821 +S'and' +p217823 +tp217824 +a(g217821 +g217823 +S'a' +p217825 +tp217826 +a(g217823 +g217825 +S'slightly' +p217827 +tp217828 +a(g217825 +g217827 +S'flaring' +p217829 +tp217830 +a(g217827 +g217829 +S'neck.' +p217831 +tp217832 +a(g217829 +g217831 +S'the' +p217833 +tp217834 +a(g217831 +g217833 +S'proportions' +p217835 +tp217836 +a(g217833 +g217835 +S'are' +p217837 +tp217838 +a(g217835 +g217837 +S'very' +p217839 +tp217840 +a(g217837 +g217839 +S'close' +p217841 +tp217842 +a(g217839 +g217841 +S'to' +p217843 +tp217844 +a(g217841 +g217843 +S'larger' +p217845 +tp217846 +a(g217843 +g217845 +S'examples' +p217847 +tp217848 +a(g217845 +g217847 +S'that' +p217849 +tp217850 +a(g217847 +g217849 +S'bear' +p217851 +tp217852 +a(g217849 +g217851 +S'qianlong' +p217853 +tp217854 +a(g217851 +g217853 +S'reignmarks,' +p217855 +tp217856 +a(g217853 +g217855 +S'suggesting' +p217857 +tp217858 +a(g217855 +g217857 +S'that' +p217859 +tp217860 +a(g217857 +g217859 +S'this' +p217861 +tp217862 +a(g217859 +g217861 +S'vessel' +p217863 +tp217864 +a(g217861 +g217863 +S'dates' +p217865 +tp217866 +a(g217863 +g217865 +S'to' +p217867 +tp217868 +a(g217865 +g217867 +S'the' +p217869 +tp217870 +a(g217867 +g217869 +S'same' +p217871 +tp217872 +a(g217869 +g217871 +S'period.' +p217873 +tp217874 +a(g217871 +g217873 +S'(text' +p217875 +tp217876 +a(g217873 +g217875 +S'by' +p217877 +tp217878 +a(g217875 +g217877 +S'stephen' +p217879 +tp217880 +a(g217877 +g217879 +S'little,' +p217881 +tp217882 +a(g217879 +g217881 +S'published' +p217883 +tp217884 +a(g217881 +g217883 +S'in' +p217885 +tp217886 +a(g217883 +g217885 +S'the' +p217887 +tp217888 +a(g217885 +g217887 +S'nga' +p217889 +tp217890 +a(g217887 +g217889 +S'systematic' +p217891 +tp217892 +a(g217889 +g217891 +S'catalogue:' +p217893 +tp217894 +a(g217891 +g217893 +S'notes' +p217901 +tp217902 +a(g217899 +g217901 +S'1.' +p217905 +tp217906 +a(g217903 +g217905 +S'rené-yvon' +p217907 +tp217908 +a(g217905 +g217907 +S'lefebvre' +p217909 +tp217910 +a(g217907 +g217909 +S"d'argencé,chinese" +p217911 +tp217912 +a(g217909 +g217911 +S'ceramics' +p217913 +tp217914 +a(g217911 +g217913 +S'in' +p217915 +tp217916 +a(g217913 +g217915 +S'the' +p217917 +tp217918 +a(g217915 +g217917 +S'avery' +p217919 +tp217920 +a(g217917 +g217919 +S'brundage' +p217921 +tp217922 +a(g217919 +g217921 +S'collection,' +p217923 +tp217924 +a(g217921 +g217923 +S'san' +p217925 +tp217926 +a(g217923 +g217925 +S'francisco,' +p217927 +tp217928 +a(g217925 +g217927 +S'1967,' +p217929 +tp217930 +a(g217927 +g217929 +S'pl.' +p217931 +tp217932 +a(g217929 +g217931 +S'75.' +p217933 +tp217934 +a(g217931 +g217933 +S'the' +p217935 +tp217936 +a(g217933 +g217935 +S"bodhisattva's" +p217937 +tp217938 +a(g217935 +g217937 +S'serene' +p217939 +tp217940 +a(g217937 +g217939 +S'expression' +p217941 +tp217942 +a(g217939 +g217941 +S'and' +p217943 +tp217944 +a(g217941 +g217943 +S'the' +p217945 +tp217946 +a(g217943 +g217945 +S'fluid' +p217947 +tp217948 +a(g217945 +g217947 +S'lines' +p217949 +tp217950 +a(g217947 +g217949 +S'of' +p217951 +tp217952 +a(g217949 +g217951 +S'the' +p217953 +tp217954 +a(g217951 +g217953 +S'robe' +p217955 +tp217956 +a(g217953 +g217955 +S'are' +p217957 +tp217958 +a(g217955 +g217957 +S'well' +p217959 +tp217960 +a(g217957 +g217959 +S'matched' +p217961 +tp217962 +a(g217959 +g217961 +S'by' +p217963 +tp217964 +a(g217961 +g217963 +S'the' +p217965 +tp217966 +a(g217963 +g217965 +S'qualities' +p217967 +tp217968 +a(g217965 +g217967 +S'of' +p217969 +tp217970 +a(g217967 +g217969 +S'dehua' +p217971 +tp217972 +a(g217969 +g217971 +S'porcelain,' +p217973 +tp217974 +a(g217971 +g217973 +S'with' +p217975 +tp217976 +a(g217973 +g217975 +S'its' +p217977 +tp217978 +a(g217975 +g217977 +S'soft' +p217979 +tp217980 +a(g217977 +g217979 +S'lustrous' +p217981 +tp217982 +a(g217979 +g217981 +S'ivory' +p217983 +tp217984 +a(g217981 +g217983 +S'color' +p217985 +tp217986 +a(g217983 +g217985 +S'and' +p217987 +tp217988 +a(g217985 +g217987 +S'flawless' +p217989 +tp217990 +a(g217987 +g217989 +S'surface.' +p217991 +tp217992 +a(g217989 +g217991 +S'dehua' +p217993 +tp217994 +a(g217991 +g217993 +S'ware' +p217995 +tp217996 +a(g217993 +g217995 +S'vessels' +p217997 +tp217998 +a(g217995 +g217997 +S'as' +p217999 +tp218000 +a(g217997 +g217999 +S'well' +p218001 +tp218002 +a(g217999 +g218001 +S'as' +p218003 +tp218004 +a(g218001 +g218003 +S'figures' +p218005 +tp218006 +a(g218003 +g218005 +S'were' +p218007 +tp218008 +a(g218005 +g218007 +S'among' +p218009 +tp218010 +a(g218007 +g218009 +S'the' +p218011 +tp218012 +a(g218009 +g218011 +S'first' +p218013 +tp218014 +a(g218011 +g218013 +S'porcelains' +p218015 +tp218016 +a(g218013 +g218015 +S'imported' +p218017 +tp218018 +a(g218015 +g218017 +S'to' +p218019 +tp218020 +a(g218017 +g218019 +S'the' +p218021 +tp218022 +a(g218019 +g218021 +S'west,' +p218023 +tp218024 +a(g218021 +g218023 +S'where' +p218025 +tp218026 +a(g218023 +g218025 +S'they' +p218027 +tp218028 +a(g218025 +g218027 +S'became' +p218029 +tp218030 +a(g218027 +g218029 +S'known' +p218031 +tp218032 +a(g218029 +g218031 +S'as' +p218033 +tp218034 +a(g218031 +g218033 +S'this' +p218035 +tp218036 +a(g218033 +g218035 +S'hollow' +p218037 +tp218038 +a(g218035 +g218037 +S'figure' +p218039 +tp218040 +a(g218037 +g218039 +S'was' +p218041 +tp218042 +a(g218039 +g218041 +S'first' +p218043 +tp218044 +a(g218041 +g218043 +S'molded' +p218045 +tp218046 +a(g218043 +g218045 +S'from' +p218047 +tp218048 +a(g218045 +g218047 +S'a' +p218049 +tp218050 +a(g218047 +g218049 +S'fine' +p218051 +tp218052 +a(g218049 +g218051 +S'white' +p218053 +tp218054 +a(g218051 +g218053 +S'paste' +p218055 +tp218056 +a(g218053 +g218055 +S'and' +p218057 +tp218058 +a(g218055 +g218057 +S'then' +p218059 +tp218060 +a(g218057 +g218059 +S'carved' +p218061 +tp218062 +a(g218059 +g218061 +S'with' +p218063 +tp218064 +a(g218061 +g218063 +S'a' +p218065 +tp218066 +a(g218063 +g218065 +S'knife.' +p218067 +tp218068 +a(g218065 +g218067 +S'the' +p218069 +tp218070 +a(g218067 +g218069 +S'flowing' +p218071 +tp218072 +a(g218069 +g218071 +S'and' +p218073 +tp218074 +a(g218071 +g218073 +S'graceful' +p218075 +tp218076 +a(g218073 +g218075 +S'forms' +p218077 +tp218078 +a(g218075 +g218077 +S'recall' +p218079 +tp218080 +a(g218077 +g218079 +S'the' +p218081 +tp218082 +a(g218079 +g218081 +S'look' +p218083 +tp218084 +a(g218081 +g218083 +S'of' +p218085 +tp218086 +a(g218083 +g218085 +S'ivory' +p218087 +tp218088 +a(g218085 +g218087 +S'carving,' +p218089 +tp218090 +a(g218087 +g218089 +S'and' +p218091 +tp218092 +a(g218089 +g218091 +S'it' +p218093 +tp218094 +a(g218091 +g218093 +S'may' +p218095 +tp218096 +a(g218093 +g218095 +S'be' +p218097 +tp218098 +a(g218095 +g218097 +S'that' +p218099 +tp218100 +a(g218097 +g218099 +S'the' +p218101 +tp218102 +a(g218099 +g218101 +S'first' +p218103 +tp218104 +a(g218101 +g218103 +S'porcelain' +p218105 +tp218106 +a(g218103 +g218105 +S'figures' +p218107 +tp218108 +a(g218105 +g218107 +S'like' +p218109 +tp218110 +a(g218107 +g218109 +S'this' +p218111 +tp218112 +a(g218109 +g218111 +S'were' +p218113 +tp218114 +a(g218111 +g218113 +S'inspired' +p218115 +tp218116 +a(g218113 +g218115 +S'by' +p218117 +tp218118 +a(g218115 +g218117 +S'ivory' +p218119 +tp218120 +a(g218117 +g218119 +S'figurines.' +p218121 +tp218122 +a(g218119 +g218121 +S'an' +p218123 +tp218124 +a(g218121 +g218123 +S'impressed' +p218125 +tp218126 +a(g218123 +g218125 +S'seal' +p218127 +tp218128 +a(g218125 +g218127 +S'on' +p218129 +tp218130 +a(g218127 +g218129 +S'the' +p218131 +tp218132 +a(g218129 +g218131 +S'back' +p218133 +tp218134 +a(g218131 +g218133 +S'gives' +p218135 +tp218136 +a(g218133 +g218135 +S'the' +p218137 +tp218138 +a(g218135 +g218137 +S'name' +p218139 +tp218140 +a(g218137 +g218139 +S'of' +p218141 +tp218142 +a(g218139 +g218141 +S'chaochun,' +p218143 +tp218144 +a(g218141 +g218143 +S'one' +p218145 +tp218146 +a(g218143 +g218145 +S'of' +p218147 +tp218148 +a(g218145 +g218147 +S'the' +p218149 +tp218150 +a(g218147 +g218149 +S'most' +p218151 +tp218152 +a(g218149 +g218151 +S'famous' +p218153 +tp218154 +a(g218151 +g218153 +S'potters' +p218155 +tp218156 +a(g218153 +g218155 +S'working' +p218157 +tp218158 +a(g218155 +g218157 +S'in' +p218159 +tp218160 +a(g218157 +g218159 +S'dehua' +p218161 +tp218162 +a(g218159 +g218161 +S'in' +p218163 +tp218164 +a(g218161 +g218163 +S'the' +p218165 +tp218166 +a(g218163 +g218165 +S'seventeenth' +p218167 +tp218168 +a(g218165 +g218167 +S'century.' +p218169 +tp218170 +a(g218167 +g218169 +S'this' +p218171 +tp218172 +a(g218169 +g218171 +S'figure,' +p218173 +tp218174 +a(g218171 +g218173 +S'however,' +p218175 +tp218176 +a(g218173 +g218175 +S'is' +p218177 +tp218178 +a(g218175 +g218177 +S'from' +p218179 +tp218180 +a(g218177 +g218179 +S'the' +p218181 +tp218182 +a(g218179 +g218181 +S'late' +p218183 +tp218184 +a(g218181 +g218183 +S'eighteenth' +p218185 +tp218186 +a(g218183 +g218185 +S'century.' +p218187 +tp218188 +a(g218185 +g218187 +S'guanyin' +p218189 +tp218190 +a(g218187 +g218189 +S'is' +p218191 +tp218192 +a(g218189 +g218191 +S'known' +p218193 +tp218194 +a(g218191 +g218193 +S'as' +p218195 +tp218196 +a(g218193 +g218195 +S'the' +p218197 +tp218198 +a(g218195 +g218197 +S'bodhisattva' +p218199 +tp218200 +a(g218197 +g218199 +S'of' +p218201 +tp218202 +a(g218199 +g218201 +S'compassion.' +p218203 +tp218204 +a(g218201 +g218203 +S'in' +p218205 +tp218206 +a(g218203 +g218205 +S'buddhist' +p218207 +tp218208 +a(g218205 +g218207 +S'belief,' +p218209 +tp218210 +a(g218207 +g218209 +S'bodhisattvas' +p218211 +tp218212 +a(g218209 +g218211 +S'are' +p218213 +tp218214 +a(g218211 +g218213 +S'beings' +p218215 +tp218216 +a(g218213 +g218215 +S'who' +p218217 +tp218218 +a(g218215 +g218217 +S'have' +p218219 +tp218220 +a(g218217 +g218219 +S'attained' +p218221 +tp218222 +a(g218219 +g218221 +S'enlightenment' +p218223 +tp218224 +a(g218221 +g218223 +S'but' +p218225 +tp218226 +a(g218223 +g218225 +S'have' +p218227 +tp218228 +a(g218225 +g218227 +S'chosen' +p218229 +tp218230 +a(g218227 +g218229 +S'to' +p218231 +tp218232 +a(g218229 +g218231 +S'delay' +p218233 +tp218234 +a(g218231 +g218233 +S'nirvana' +p218235 +tp218236 +a(g218233 +g218235 +S'and' +p218237 +tp218238 +a(g218235 +g218237 +S'remain' +p218239 +tp218240 +a(g218237 +g218239 +S'as' +p218241 +tp218242 +a(g218239 +g218241 +S'helpers' +p218243 +tp218244 +a(g218241 +g218243 +S'to' +p218245 +tp218246 +a(g218243 +g218245 +S'mankind.' +p218247 +tp218248 +a(g218245 +g218247 +S'guanyin,' +p218249 +tp218250 +a(g218247 +g218249 +S'originally' +p218251 +tp218252 +a(g218249 +g218251 +S'a' +p218253 +tp218254 +a(g218251 +g218253 +S'male' +p218255 +tp218256 +a(g218253 +g218255 +S'bodhisattva' +p218257 +tp218258 +a(g218255 +g218257 +S'in' +p218259 +tp218260 +a(g218257 +g218259 +S'india,' +p218261 +tp218262 +a(g218259 +g218261 +S'came' +p218263 +tp218264 +a(g218261 +g218263 +S'to' +p218265 +tp218266 +a(g218263 +g218265 +S'be' +p218267 +tp218268 +a(g218265 +g218267 +S'identified' +p218269 +tp218270 +a(g218267 +g218269 +S'as' +p218271 +tp218272 +a(g218269 +g218271 +S'a' +p218273 +tp218274 +a(g218271 +g218273 +S'woman' +p218275 +tp218276 +a(g218273 +g218275 +S'in' +p218277 +tp218278 +a(g218275 +g218277 +S'chinese' +p218279 +tp218280 +a(g218277 +g218279 +S'and' +p218281 +tp218282 +a(g218279 +g218281 +S'japanese' +p218283 +tp218284 +a(g218281 +g218283 +S'buddhist' +p218285 +tp218286 +a(g218283 +g218285 +S'belief.' +p218287 +tp218288 +a(g218285 +g218287 +S'thus,' +p218289 +tp218290 +a(g218287 +g218289 +S'figures' +p218291 +tp218292 +a(g218289 +g218291 +S'like' +p218293 +tp218294 +a(g218291 +g218293 +S'this' +p218295 +tp218296 +a(g218293 +g218295 +S'one' +p218297 +tp218298 +a(g218295 +g218297 +S'have' +p218299 +tp218300 +a(g218297 +g218299 +S'both' +p218301 +tp218302 +a(g218299 +g218301 +S'masculine' +p218303 +tp218304 +a(g218301 +g218303 +S'and' +p218305 +tp218306 +a(g218303 +g218305 +S'feminine' +p218307 +tp218308 +a(g218305 +g218307 +S'qualities.' +p218309 +tp218310 +a(g218307 +g218309 +S'figures' +p218311 +tp218312 +a(g218309 +g218311 +S'of' +p218313 +tp218314 +a(g218311 +g218313 +S'this' +p218315 +tp218316 +a(g218313 +g218315 +S'type,' +p218317 +tp218318 +a(g218315 +g218317 +S'representing' +p218319 +tp218320 +a(g218317 +g218319 +S'daoist,' +p218321 +tp218322 +a(g218319 +g218321 +S'confucian,' +p218323 +tp218324 +a(g218321 +g218323 +S'and' +p218325 +tp218326 +a(g218323 +g218325 +S'buddhist' +p218327 +tp218328 +a(g218325 +g218327 +S'deities,' +p218329 +tp218330 +a(g218327 +g218329 +S'are' +p218331 +tp218332 +a(g218329 +g218331 +S'a' +p218333 +tp218334 +a(g218331 +g218333 +S'common' +p218335 +tp218336 +a(g218333 +g218335 +S'kangxi' +p218337 +tp218338 +a(g218335 +g218337 +S'product.' +p218339 +tp218340 +a(g218337 +g218339 +S'this' +p218341 +tp218342 +a(g218339 +g218341 +S'example' +p218343 +tp218344 +a(g218341 +g218343 +S'is' +p218345 +tp218346 +a(g218343 +g218345 +S'decorated' +p218347 +tp218348 +a(g218345 +g218347 +S'on' +p218349 +tp218350 +a(g218347 +g218349 +S'the' +p218351 +tp218352 +a(g218349 +g218351 +S'biscuit' +p218353 +tp218354 +a(g218351 +g218353 +S'with' +p218355 +tp218356 +a(g218353 +g218355 +S'enamels' +p218357 +tp218358 +a(g218355 +g218357 +S'in' +p218359 +tp218360 +a(g218357 +g218359 +S'the' +p218361 +tp218362 +a(g218359 +g218361 +S'the' +p218363 +tp218364 +a(g218361 +g218363 +S'presence' +p218365 +tp218366 +a(g218363 +g218365 +S'of' +p218367 +tp218368 +a(g218365 +g218367 +S'the' +p218369 +tp218370 +a(g218367 +g218369 +S'crown,' +p218371 +tp218372 +a(g218369 +g218371 +S'(text' +p218373 +tp218374 +a(g218371 +g218373 +S'by' +p218375 +tp218376 +a(g218373 +g218375 +S'stephen' +p218377 +tp218378 +a(g218375 +g218377 +S'little,' +p218379 +tp218380 +a(g218377 +g218379 +S'published' +p218381 +tp218382 +a(g218379 +g218381 +S'in' +p218383 +tp218384 +a(g218381 +g218383 +S'the' +p218385 +tp218386 +a(g218383 +g218385 +S'nga' +p218387 +tp218388 +a(g218385 +g218387 +S'systematic' +p218389 +tp218390 +a(g218387 +g218389 +S'catalogue:' +p218391 +tp218392 +a(g218389 +g218391 +S'notes' +p218399 +tp218400 +a(g218397 +g218399 +S'' +p218401 +tp218402 +a(g218399 +g218401 +S'' +p218405 +tp218406 +a(g218403 +g218405 +S'the' +p218407 +tp218408 +a(g218405 +g218407 +S'exterior' +p218409 +tp218410 +a(g218407 +g218409 +S'decoration' +p218411 +tp218412 +a(g218409 +g218411 +S'is' +p218413 +tp218414 +a(g218411 +g218413 +S'incised' +p218415 +tp218416 +a(g218413 +g218415 +S'into' +p218417 +tp218418 +a(g218415 +g218417 +S'the' +p218419 +tp218420 +a(g218417 +g218419 +S'body' +p218421 +tp218422 +a(g218419 +g218421 +S'and' +p218423 +tp218424 +a(g218421 +g218423 +S'painted' +p218425 +tp218426 +a(g218423 +g218425 +S'with' +p218427 +tp218428 +a(g218425 +g218427 +S'(text' +p218429 +tp218430 +a(g218427 +g218429 +S'by' +p218431 +tp218432 +a(g218429 +g218431 +S'stephen' +p218433 +tp218434 +a(g218431 +g218433 +S'little,' +p218435 +tp218436 +a(g218433 +g218435 +S'published' +p218437 +tp218438 +a(g218435 +g218437 +S'in' +p218439 +tp218440 +a(g218437 +g218439 +S'the' +p218441 +tp218442 +a(g218439 +g218441 +S'nga' +p218443 +tp218444 +a(g218441 +g218443 +S'systematic' +p218445 +tp218446 +a(g218443 +g218445 +S'catalogue:' +p218447 +tp218448 +a(g218445 +g218447 +S'a' +p218449 +tp218450 +a(g218447 +g218449 +S'single' +p218451 +tp218452 +a(g218449 +g218451 +S'four-clawed' +p218453 +tp218454 +a(g218451 +g218453 +S'dragon' +p218455 +tp218456 +a(g218453 +g218455 +S'encircles' +p218457 +tp218458 +a(g218455 +g218457 +S'the' +p218459 +tp218460 +a(g218457 +g218459 +S'vase,' +p218461 +tp218462 +a(g218459 +g218461 +S'chasing' +p218463 +tp218464 +a(g218461 +g218463 +S'a' +p218465 +tp218466 +a(g218463 +g218465 +S'flaming' +p218467 +tp218468 +a(g218465 +g218467 +S'pearl.' +p218469 +tp218470 +a(g218467 +g218469 +S'above' +p218471 +tp218472 +a(g218469 +g218471 +S'the' +p218473 +tp218474 +a(g218471 +g218473 +S'foot' +p218475 +tp218476 +a(g218473 +g218475 +S'are' +p218477 +tp218478 +a(g218475 +g218477 +S'painted' +p218479 +tp218480 +a(g218477 +g218479 +S'crashing' +p218481 +tp218482 +a(g218479 +g218481 +S'waves.' +p218483 +tp218484 +a(g218481 +g218483 +S'the' +p218485 +tp218486 +a(g218483 +g218485 +S'painting' +p218487 +tp218488 +a(g218485 +g218487 +S'is' +p218489 +tp218490 +a(g218487 +g218489 +S'executed' +p218491 +tp218492 +a(g218489 +g218491 +S'in' +p218493 +tp218494 +a(g218491 +g218493 +S'red,' +p218495 +tp218496 +a(g218493 +g218495 +S'orange,' +p218497 +tp218498 +a(g218495 +g218497 +S'and' +p218499 +tp218500 +a(g218497 +g218499 +S'metallic' +p218501 +tp218502 +a(g218499 +g218501 +S'gold' +p218503 +tp218504 +a(g218501 +g218503 +S'enamels,' +p218505 +tp218506 +a(g218503 +g218505 +S'with' +p218507 +tp218508 +a(g218505 +g218507 +S'black' +p218509 +tp218510 +a(g218507 +g218509 +S'for' +p218511 +tp218512 +a(g218509 +g218511 +S'the' +p218513 +tp218514 +a(g218511 +g218513 +S"dragon's" +p218515 +tp218516 +a(g218513 +g218515 +S'eyes.' +p218517 +tp218518 +a(g218515 +g218517 +S'(text' +p218519 +tp218520 +a(g218517 +g218519 +S'by' +p218521 +tp218522 +a(g218519 +g218521 +S'stephen' +p218523 +tp218524 +a(g218521 +g218523 +S'little,' +p218525 +tp218526 +a(g218523 +g218525 +S'published' +p218527 +tp218528 +a(g218525 +g218527 +S'in' +p218529 +tp218530 +a(g218527 +g218529 +S'the' +p218531 +tp218532 +a(g218529 +g218531 +S'nga' +p218533 +tp218534 +a(g218531 +g218533 +S'systematic' +p218535 +tp218536 +a(g218533 +g218535 +S'catalogue:' +p218537 +tp218538 +a(g218535 +g218537 +S'as' +p218539 +tp218540 +a(g218537 +g218539 +S'if' +p218541 +tp218542 +a(g218539 +g218541 +S'tossed' +p218543 +tp218544 +a(g218541 +g218543 +S'by' +p218545 +tp218546 +a(g218543 +g218545 +S'a' +p218547 +tp218548 +a(g218545 +g218547 +S'random' +p218549 +tp218550 +a(g218547 +g218549 +S'breeze,' +p218551 +tp218552 +a(g218549 +g218551 +S'more' +p218553 +tp218554 +a(g218551 +g218553 +S'than' +p218555 +tp218556 +a(g218553 +g218555 +S'one' +p218557 +tp218558 +a(g218555 +g218557 +S'hundred' +p218559 +tp218560 +a(g218557 +g218559 +S'stylized' +p218561 +tp218562 +a(g218559 +g218561 +S'blossoms' +p218563 +tp218564 +a(g218561 +g218563 +S'enliven' +p218565 +tp218566 +a(g218563 +g218565 +S'the' +p218567 +tp218568 +a(g218565 +g218567 +S'pure' +p218569 +tp218570 +a(g218567 +g218569 +S'white' +p218571 +tp218572 +a(g218569 +g218571 +S'porcelain' +p218573 +tp218574 +a(g218571 +g218573 +S'of' +p218575 +tp218576 +a(g218573 +g218575 +S'this' +p218577 +tp218578 +a(g218575 +g218577 +S'finely' +p218579 +tp218580 +a(g218577 +g218579 +S'potted' +p218581 +tp218582 +a(g218579 +g218581 +S'vase.' +p218583 +tp218584 +a(g218581 +g218583 +S'an' +p218585 +tp218586 +a(g218583 +g218585 +S'underglaze' +p218587 +tp218588 +a(g218585 +g218587 +S'seal' +p218589 +tp218590 +a(g218587 +g218589 +S'script' +p218591 +tp218592 +a(g218589 +g218591 +S'inscription' +p218593 +tp218594 +a(g218591 +g218593 +S'on' +p218595 +tp218596 +a(g218593 +g218595 +S'the' +p218597 +tp218598 +a(g218595 +g218597 +S'base' +p218599 +tp218600 +a(g218597 +g218599 +S'reads' +p218601 +tp218602 +a(g218599 +g218601 +S'"made' +p218603 +tp218604 +a(g218601 +g218603 +S'in' +p218605 +tp218606 +a(g218603 +g218605 +S'the' +p218607 +tp218608 +a(g218605 +g218607 +S'qianlong' +p218609 +tp218610 +a(g218607 +g218609 +S'reign' +p218611 +tp218612 +a(g218609 +g218611 +S'of' +p218613 +tp218614 +a(g218611 +g218613 +S'the' +p218615 +tp218616 +a(g218613 +g218615 +S'great' +p218617 +tp218618 +a(g218615 +g218617 +S'qing' +p218619 +tp218620 +a(g218617 +g218619 +S'dynasty."' +p218621 +tp218622 +a(g218619 +g218621 +S'porcelain—hard,' +p218623 +tp218624 +a(g218621 +g218623 +S'translucent' +p218625 +tp218626 +a(g218623 +g218625 +S'vitreous,' +p218627 +tp218628 +a(g218625 +g218627 +S'high-fired' +p218629 +tp218630 +a(g218627 +g218629 +S'ceramics' +p218631 +tp218632 +a(g218629 +g218631 +S'that' +p218633 +tp218634 +a(g218631 +g218633 +S'are' +p218635 +tp218636 +a(g218633 +g218635 +S'the' +p218637 +tp218638 +a(g218635 +g218637 +S'triumph' +p218639 +tp218640 +a(g218637 +g218639 +S'of' +p218641 +tp218642 +a(g218639 +g218641 +S'kiln' +p218643 +tp218644 +a(g218641 +g218643 +S'technology—were' +p218645 +tp218646 +a(g218643 +g218645 +S'first' +p218647 +tp218648 +a(g218645 +g218647 +S'made' +p218649 +tp218650 +a(g218647 +g218649 +S'in' +p218651 +tp218652 +a(g218649 +g218651 +S'china.' +p218653 +tp218654 +a(g218651 +g218653 +S'but' +p218655 +tp218656 +a(g218653 +g218655 +S'the' +p218657 +tp218658 +a(g218655 +g218657 +S'casual' +p218659 +tp218660 +a(g218657 +g218659 +S'elegance' +p218661 +tp218662 +a(g218659 +g218661 +S'of' +p218663 +tp218664 +a(g218661 +g218663 +S'the' +p218665 +tp218666 +a(g218663 +g218665 +S'decoration' +p218667 +tp218668 +a(g218665 +g218667 +S'on' +p218669 +tp218670 +a(g218667 +g218669 +S'this' +p218671 +tp218672 +a(g218669 +g218671 +S'pot' +p218673 +tp218674 +a(g218671 +g218673 +S'was' +p218675 +tp218676 +a(g218673 +g218675 +S'meant' +p218677 +tp218678 +a(g218675 +g218677 +S'to' +p218679 +tp218680 +a(g218677 +g218679 +S'appeal' +p218681 +tp218682 +a(g218679 +g218681 +S'to' +p218683 +tp218684 +a(g218681 +g218683 +S'japanese' +p218685 +tp218686 +a(g218683 +g218685 +S'tastes.' +p218687 +tp218688 +a(g218685 +g218687 +S'ceramics' +p218689 +tp218690 +a(g218687 +g218689 +S'with' +p218691 +tp218692 +a(g218689 +g218691 +S'decoration' +p218693 +tp218694 +a(g218691 +g218693 +S'like' +p218695 +tp218696 +a(g218693 +g218695 +S'this' +p218697 +tp218698 +a(g218695 +g218697 +S'began' +p218699 +tp218700 +a(g218697 +g218699 +S'to' +p218701 +tp218702 +a(g218699 +g218701 +S'be' +p218703 +tp218704 +a(g218701 +g218703 +S'made' +p218705 +tp218706 +a(g218703 +g218705 +S'in' +p218707 +tp218708 +a(g218705 +g218707 +S'china' +p218709 +tp218710 +a(g218707 +g218709 +S'for' +p218711 +tp218712 +a(g218709 +g218711 +S'export' +p218713 +tp218714 +a(g218711 +g218713 +S'to' +p218715 +tp218716 +a(g218713 +g218715 +S'japan' +p218717 +tp218718 +a(g218715 +g218717 +S'in' +p218719 +tp218720 +a(g218717 +g218719 +S'the' +p218721 +tp218722 +a(g218719 +g218721 +S'eighteenth' +p218723 +tp218724 +a(g218721 +g218723 +S'century.' +p218725 +tp218726 +a(g218723 +g218725 +S'in' +p218727 +tp218728 +a(g218725 +g218727 +S'1909,' +p218729 +tp218730 +a(g218727 +g218729 +S'hamilton' +p218731 +tp218732 +a(g218729 +g218731 +S'easter' +p218733 +tp218734 +a(g218731 +g218733 +S'field,' +p218735 +tp218736 +a(g218733 +g218735 +S'a' +p218737 +tp218738 +a(g218735 +g218737 +S'brooklyn' +p218739 +tp218740 +a(g218737 +g218739 +S'painter' +p218741 +tp218742 +a(g218739 +g218741 +S'and' +p218743 +tp218744 +a(g218741 +g218743 +S'critic,' +p218745 +tp218746 +a(g218743 +g218745 +S'asked' +p218747 +tp218748 +a(g218745 +g218747 +S'picasso' +p218749 +tp218750 +a(g218747 +g218749 +S'to' +p218751 +tp218752 +a(g218749 +g218751 +S'create' +p218753 +tp218754 +a(g218751 +g218753 +S'a' +p218755 +tp218756 +a(g218753 +g218755 +S'group' +p218757 +tp218758 +a(g218755 +g218757 +S'of' +p218759 +tp218760 +a(g218757 +g218759 +S'eleven' +p218761 +tp218762 +a(g218759 +g218761 +S'paintings' +p218763 +tp218764 +a(g218761 +g218763 +S'as' +p218765 +tp218766 +a(g218763 +g218765 +S'a' +p218767 +tp218768 +a(g218765 +g218767 +S'decoration' +p218769 +tp218770 +a(g218767 +g218769 +S'for' +p218771 +tp218772 +a(g218769 +g218771 +S'his' +p218773 +tp218774 +a(g218771 +g218773 +S'library.' +p218775 +tp218776 +a(g218773 +g218775 +S'picasso' +p218777 +tp218778 +a(g218775 +g218777 +S'accepted' +p218779 +tp218780 +a(g218777 +g218779 +S'but,' +p218781 +tp218782 +a(g218779 +g218781 +S'although' +p218783 +tp218784 +a(g218781 +g218783 +S'he' +p218785 +tp218786 +a(g218783 +g218785 +S'worked' +p218787 +tp218788 +a(g218785 +g218787 +S'on' +p218789 +tp218790 +a(g218787 +g218789 +S'the' +p218791 +tp218792 +a(g218789 +g218791 +S'commission' +p218793 +tp218794 +a(g218791 +g218793 +S'intermittently' +p218795 +tp218796 +a(g218793 +g218795 +S'over' +p218797 +tp218798 +a(g218795 +g218797 +S'the' +p218799 +tp218800 +a(g218797 +g218799 +S'next' +p218801 +tp218802 +a(g218799 +g218801 +S'several' +p218803 +tp218804 +a(g218801 +g218803 +S'years,' +p218805 +tp218806 +a(g218803 +g218805 +S'he' +p218807 +tp218808 +a(g218805 +g218807 +S'never' +p218809 +tp218810 +a(g218807 +g218809 +S'completed' +p218811 +tp218812 +a(g218809 +g218811 +S'all' +p218813 +tp218814 +a(g218811 +g218813 +S'eleven' +p218815 +tp218816 +a(g218813 +g218815 +S'of' +p218817 +tp218818 +a(g218815 +g218817 +S'the' +p218819 +tp218820 +a(g218817 +g218819 +S'panels.' +p218821 +tp218822 +a(g218819 +g218821 +S'nude' +p218823 +tp218824 +a(g218821 +g218823 +S'woman' +p218825 +tp218826 +a(g218823 +g218825 +S'working-class' +p218827 +tp218828 +a(g218825 +g218827 +S'women' +p218829 +tp218830 +a(g218827 +g218829 +S'hold' +p218831 +tp218832 +a(g218829 +g218831 +S'an' +p218833 +tp218834 +a(g218831 +g218833 +S'important' +p218835 +tp218836 +a(g218833 +g218835 +S'place' +p218837 +tp218838 +a(g218835 +g218837 +S'in' +p218839 +tp218840 +a(g218837 +g218839 +S'degas\xe2\x80\x99' +p218841 +tp218842 +a(g218839 +g218841 +S'oeuvre.' +p218843 +tp218844 +a(g218841 +g218843 +S'from' +p218845 +tp218846 +a(g218843 +g218845 +S'the' +p218847 +tp218848 +a(g218845 +g218847 +S'late' +p218849 +tp218850 +a(g218847 +g218849 +S'1860s' +p218851 +tp218852 +a(g218849 +g218851 +S'on,' +p218853 +tp218854 +a(g218851 +g218853 +S'images' +p218855 +tp218856 +a(g218853 +g218855 +S'of' +p218857 +tp218858 +a(g218855 +g218857 +S'stage' +p218859 +tp218860 +a(g218857 +g218859 +S'performers' +p218861 +tp218862 +a(g218859 +g218861 +S'as' +p218863 +tp218864 +a(g218861 +g218863 +S'well' +p218865 +tp218866 +a(g218863 +g218865 +S'as' +p218867 +tp218868 +a(g218865 +g218867 +S'women' +p218869 +tp218870 +a(g218867 +g218869 +S'engaged' +p218871 +tp218872 +a(g218869 +g218871 +S'in' +p218873 +tp218874 +a(g218871 +g218873 +S'more' +p218875 +tp218876 +a(g218873 +g218875 +S'mundane' +p218877 +tp218878 +a(g218875 +g218877 +S'professions—milliners' +p218879 +tp218880 +a(g218877 +g218879 +S'and' +p218881 +tp218882 +a(g218879 +g218881 +S'dressmakers,' +p218883 +tp218884 +a(g218881 +g218883 +S'laundresses' +p218885 +tp218886 +a(g218883 +g218885 +S'and' +p218887 +tp218888 +a(g218885 +g218887 +S'ironers—were' +p218889 +tp218890 +a(g218887 +g218889 +S'a' +p218891 +tp218892 +a(g218889 +g218891 +S'mainstay' +p218893 +tp218894 +a(g218891 +g218893 +S'in' +p218895 +tp218896 +a(g218893 +g218895 +S'the' +p218897 +tp218898 +a(g218895 +g218897 +S'artist\xe2\x80\x99s' +p218899 +tp218900 +a(g218897 +g218899 +S'work.' +p218901 +tp218902 +a(g218899 +g218901 +S'the' +p218903 +tp218904 +a(g218901 +g218903 +S'writer' +p218905 +tp218906 +a(g218903 +g218905 +S'edmond' +p218907 +tp218908 +a(g218905 +g218907 +S'de' +p218909 +tp218910 +a(g218907 +g218909 +S'goncourt' +p218911 +tp218912 +a(g218909 +g218911 +S'noted' +p218913 +tp218914 +a(g218911 +g218913 +S'degas\xe2\x80\x99' +p218915 +tp218916 +a(g218913 +g218915 +S'preoccupation' +p218917 +tp218918 +a(g218915 +g218917 +S'with' +p218919 +tp218920 +a(g218917 +g218919 +S'such' +p218921 +tp218922 +a(g218919 +g218921 +S'subjects' +p218923 +tp218924 +a(g218921 +g218923 +S'in' +p218925 +tp218926 +a(g218923 +g218925 +S'1874.' +p218927 +tp218928 +a(g218925 +g218927 +S'following' +p218929 +tp218930 +a(g218927 +g218929 +S'a' +p218931 +tp218932 +a(g218929 +g218931 +S'visit' +p218933 +tp218934 +a(g218931 +g218933 +S'to' +p218935 +tp218936 +a(g218933 +g218935 +S'the' +p218937 +tp218938 +a(g218935 +g218937 +S'artist\xe2\x80\x99s' +p218939 +tp218940 +a(g218937 +g218939 +S'studio,' +p218941 +tp218942 +a(g218939 +g218941 +S'goncourt' +p218943 +tp218944 +a(g218941 +g218943 +S'wrote' +p218945 +tp218946 +a(g218943 +g218945 +S'in' +p218947 +tp218948 +a(g218945 +g218947 +S'his' +p218949 +tp218950 +a(g218947 +g218949 +S'journal' +p218951 +tp218952 +a(g218949 +g218951 +S'that' +p218953 +tp218954 +a(g218951 +g218953 +S'degas' +p218955 +tp218956 +a(g218953 +g218955 +S'"has' +p218957 +tp218958 +a(g218955 +g218957 +S'become' +p218959 +tp218960 +a(g218957 +g218959 +S'enamored' +p218961 +tp218962 +a(g218959 +g218961 +S'of' +p218963 +tp218964 +a(g218961 +g218963 +S'the' +p218965 +tp218966 +a(g218963 +g218965 +S'modern,' +p218967 +tp218968 +a(g218965 +g218967 +S'and' +p218969 +tp218970 +a(g218967 +g218969 +S'within' +p218971 +tp218972 +a(g218969 +g218971 +S'the' +p218973 +tp218974 +a(g218971 +g218973 +S'modern,' +p218975 +tp218976 +a(g218973 +g218975 +S'he' +p218977 +tp218978 +a(g218975 +g218977 +S'has' +p218979 +tp218980 +a(g218977 +g218979 +S'chosen' +p218981 +tp218982 +a(g218979 +g218981 +S'laundresses' +p218983 +tp218984 +a(g218981 +g218983 +S'and' +p218985 +tp218986 +a(g218983 +g218985 +S'dancers."' +p218987 +tp218988 +a(g218985 +g218987 +S'degas' +p218989 +tp218990 +a(g218987 +g218989 +S'was' +p218991 +tp218992 +a(g218989 +g218991 +S'not' +p218993 +tp218994 +a(g218991 +g218993 +S'alone' +p218995 +tp218996 +a(g218993 +g218995 +S'in' +p218997 +tp218998 +a(g218995 +g218997 +S'his' +p218999 +tp219000 +a(g218997 +g218999 +S'interest' +p219001 +tp219002 +a(g218999 +g219001 +S'in' +p219003 +tp219004 +a(g219001 +g219003 +S'such' +p219005 +tp219006 +a(g219003 +g219005 +S'figures.' +p219007 +tp219008 +a(g219005 +g219007 +S'emile' +p219009 +tp219010 +a(g219007 +g219009 +S'zola\xe2\x80\x99s' +p219011 +tp219012 +a(g219009 +g219011 +S'novel' +p219013 +tp219014 +a(g219011 +g219013 +S'woman' +p219015 +tp219016 +a(g219013 +g219015 +S'ironing' +p219017 +tp219018 +a(g219015 +g219017 +S'the' +p219019 +tp219020 +a(g219017 +g219019 +S'composition' +p219021 +tp219022 +a(g219019 +g219021 +S'of' +p219023 +tp219024 +a(g219021 +g219023 +S'this' +p219025 +tp219026 +a(g219023 +g219025 +S'painting' +p219027 +tp219028 +a(g219025 +g219027 +S'is' +p219029 +tp219030 +a(g219027 +g219029 +S'clearly' +p219031 +tp219032 +a(g219029 +g219031 +S'based' +p219033 +tp219034 +a(g219031 +g219033 +S'upon' +p219035 +tp219036 +a(g219033 +g219035 +S'an' +p219037 +tp219038 +a(g219035 +g219037 +S'earlier' +p219039 +tp219040 +a(g219037 +g219039 +S'version' +p219041 +tp219042 +a(g219039 +g219041 +S'of' +p219043 +tp219044 +a(g219041 +g219043 +S'the' +p219045 +tp219046 +a(g219043 +g219045 +S'same' +p219047 +tp219048 +a(g219045 +g219047 +S'subject' +p219049 +tp219050 +a(g219047 +g219049 +S'(the' +p219051 +tp219052 +a(g219049 +g219051 +S'metropolitan' +p219053 +tp219054 +a(g219051 +g219053 +S'museum' +p219055 +tp219056 +a(g219053 +g219055 +S'of' +p219057 +tp219058 +a(g219055 +g219057 +S'art,' +p219059 +tp219060 +a(g219057 +g219059 +S'new' +p219061 +tp219062 +a(g219059 +g219061 +S'york),' +p219063 +tp219064 +a(g219061 +g219063 +S'which' +p219065 +tp219066 +a(g219063 +g219065 +S'degas' +p219067 +tp219068 +a(g219065 +g219067 +S'had' +p219069 +tp219070 +a(g219067 +g219069 +S'sold' +p219071 +tp219072 +a(g219069 +g219071 +S'to' +p219073 +tp219074 +a(g219071 +g219073 +S'his' +p219075 +tp219076 +a(g219073 +g219075 +S'dealer' +p219077 +tp219078 +a(g219075 +g219077 +S'durand-ruel' +p219079 +tp219080 +a(g219077 +g219079 +S'in' +p219081 +tp219082 +a(g219079 +g219081 +S'1873.' +p219083 +tp219084 +a(g219081 +g219083 +S'it' +p219085 +tp219086 +a(g219083 +g219085 +S'was' +p219087 +tp219088 +a(g219085 +g219087 +S'purchased' +p219089 +tp219090 +a(g219087 +g219089 +S'at' +p219091 +tp219092 +a(g219089 +g219091 +S'the' +p219093 +tp219094 +a(g219091 +g219093 +S'artist\xe2\x80\x99s' +p219095 +tp219096 +a(g219093 +g219095 +S'request' +p219097 +tp219098 +a(g219095 +g219097 +S'along' +p219099 +tp219100 +a(g219097 +g219099 +S'with' +p219101 +tp219102 +a(g219099 +g219101 +S'five' +p219103 +tp219104 +a(g219101 +g219103 +S'of' +p219105 +tp219106 +a(g219103 +g219105 +S'his' +p219107 +tp219108 +a(g219105 +g219107 +S'other' +p219109 +tp219110 +a(g219107 +g219109 +S'works' +p219111 +tp219112 +a(g219109 +g219111 +S'the' +p219113 +tp219114 +a(g219111 +g219113 +S'following' +p219115 +tp219116 +a(g219113 +g219115 +S'year' +p219117 +tp219118 +a(g219115 +g219117 +S'by' +p219119 +tp219120 +a(g219117 +g219119 +S'jean-baptiste' +p219121 +tp219122 +a(g219119 +g219121 +S'faure.' +p219123 +tp219124 +a(g219121 +g219123 +S'a' +p219125 +tp219126 +a(g219123 +g219125 +S'renowned' +p219127 +tp219128 +a(g219125 +g219127 +S'singer' +p219129 +tp219130 +a(g219127 +g219129 +S'at' +p219131 +tp219132 +a(g219129 +g219131 +S'the' +p219133 +tp219134 +a(g219131 +g219133 +S'paris' +p219135 +tp219136 +a(g219133 +g219135 +S'opéra,' +p219137 +tp219138 +a(g219135 +g219137 +S'faure' +p219139 +tp219140 +a(g219137 +g219139 +S'was' +p219141 +tp219142 +a(g219139 +g219141 +S'also' +p219143 +tp219144 +a(g219141 +g219143 +S'the' +p219145 +tp219146 +a(g219143 +g219145 +S'most' +p219147 +tp219148 +a(g219145 +g219147 +S'important' +p219149 +tp219150 +a(g219147 +g219149 +S'patron' +p219151 +tp219152 +a(g219149 +g219151 +S'of' +p219153 +tp219154 +a(g219151 +g219153 +S'the' +p219155 +tp219156 +a(g219153 +g219155 +S'impressionists' +p219157 +tp219158 +a(g219155 +g219157 +S'in' +p219159 +tp219160 +a(g219157 +g219159 +S'the' +p219161 +tp219162 +a(g219159 +g219161 +S'early' +p219163 +tp219164 +a(g219161 +g219163 +S'1870s:' +p219165 +tp219166 +a(g219163 +g219165 +S'his' +p219167 +tp219168 +a(g219165 +g219167 +S'collection' +p219169 +tp219170 +a(g219167 +g219169 +S'included' +p219171 +tp219172 +a(g219169 +g219171 +S'works' +p219173 +tp219174 +a(g219171 +g219173 +S'by' +p219175 +tp219176 +a(g219173 +g219175 +S'manet,' +p219177 +tp219178 +a(g219175 +g219177 +S'monet,' +p219179 +tp219180 +a(g219177 +g219179 +S'and' +p219181 +tp219182 +a(g219179 +g219181 +S'degas.' +p219183 +tp219184 +a(g219181 +g219183 +S'faure' +p219185 +tp219186 +a(g219183 +g219185 +S'commissioned' +p219187 +tp219188 +a(g219185 +g219187 +S'the' +p219189 +tp219190 +a(g219187 +g219189 +S'washington' +p219191 +tp219192 +a(g219189 +g219191 +S'version,' +p219193 +tp219194 +a(g219191 +g219193 +S'which' +p219195 +tp219196 +a(g219193 +g219195 +S'is' +p219197 +tp219198 +a(g219195 +g219197 +S'both' +p219199 +tp219200 +a(g219197 +g219199 +S'larger' +p219201 +tp219202 +a(g219199 +g219201 +S'and' +p219203 +tp219204 +a(g219201 +g219203 +S'more' +p219205 +tp219206 +a(g219203 +g219205 +S'elaborate' +p219207 +tp219208 +a(g219205 +g219207 +S'than' +p219209 +tp219210 +a(g219207 +g219209 +S'the' +p219211 +tp219212 +a(g219209 +g219211 +S'original,' +p219213 +tp219214 +a(g219211 +g219213 +S'in' +p219215 +tp219216 +a(g219213 +g219215 +S'1874,' +p219217 +tp219218 +a(g219215 +g219217 +S'presumably' +p219219 +tp219220 +a(g219217 +g219219 +S'as' +p219221 +tp219222 +a(g219219 +g219221 +S'a' +p219223 +tp219224 +a(g219221 +g219223 +S'replacement' +p219225 +tp219226 +a(g219223 +g219225 +S'for' +p219227 +tp219228 +a(g219225 +g219227 +S'the' +p219229 +tp219230 +a(g219227 +g219229 +S'original' +p219231 +tp219232 +a(g219229 +g219231 +S'version' +p219233 +tp219234 +a(g219231 +g219233 +S'that' +p219235 +tp219236 +a(g219233 +g219235 +S'he' +p219237 +tp219238 +a(g219235 +g219237 +S'had' +p219239 +tp219240 +a(g219237 +g219239 +S'just' +p219241 +tp219242 +a(g219239 +g219241 +S'returned' +p219243 +tp219244 +a(g219241 +g219243 +S'to' +p219245 +tp219246 +a(g219243 +g219245 +S'degas.' +p219247 +tp219248 +a(g219245 +g219247 +S'unfortunately,' +p219249 +tp219250 +a(g219247 +g219249 +S'degas\xe2\x80\x99' +p219251 +tp219252 +a(g219249 +g219251 +S'perfectionism' +p219253 +tp219254 +a(g219251 +g219253 +S'and' +p219255 +tp219256 +a(g219253 +g219255 +S'a' +p219257 +tp219258 +a(g219255 +g219257 +S'number' +p219259 +tp219260 +a(g219257 +g219259 +S'of' +p219261 +tp219262 +a(g219259 +g219261 +S'personal' +p219263 +tp219264 +a(g219261 +g219263 +S'tragedies—the' +p219265 +tp219266 +a(g219263 +g219265 +S'deaths' +p219267 +tp219268 +a(g219265 +g219267 +S'of' +p219269 +tp219270 +a(g219267 +g219269 +S'his' +p219271 +tp219272 +a(g219269 +g219271 +S'father' +p219273 +tp219274 +a(g219271 +g219273 +S'in' +p219275 +tp219276 +a(g219273 +g219275 +S'1874' +p219277 +tp219278 +a(g219275 +g219277 +S'and' +p219279 +tp219280 +a(g219277 +g219279 +S'uncle' +p219281 +tp219282 +a(g219279 +g219281 +S'in' +p219283 +tp219284 +a(g219281 +g219283 +S'1875,' +p219285 +tp219286 +a(g219283 +g219285 +S'his' +p219287 +tp219288 +a(g219285 +g219287 +S'brother' +p219289 +tp219290 +a(g219287 +g219289 +S'rené\xe2\x80\x99s' +p219291 +tp219292 +a(g219289 +g219291 +S'growing' +p219293 +tp219294 +a(g219291 +g219293 +S'debts,' +p219295 +tp219296 +a(g219293 +g219295 +S'and' +p219297 +tp219298 +a(g219295 +g219297 +S'the' +p219299 +tp219300 +a(g219297 +g219299 +S'collapse' +p219301 +tp219302 +a(g219299 +g219301 +S'of' +p219303 +tp219304 +a(g219301 +g219303 +S'the' +p219305 +tp219306 +a(g219303 +g219305 +S'family' +p219307 +tp219308 +a(g219305 +g219307 +S'bank—hindered' +p219309 +tp219310 +a(g219307 +g219309 +S'the' +p219311 +tp219312 +a(g219309 +g219311 +S'artist\xe2\x80\x99s' +p219313 +tp219314 +a(g219311 +g219313 +S'progress' +p219315 +tp219316 +a(g219313 +g219315 +S'on' +p219317 +tp219318 +a(g219315 +g219317 +S'this' +p219319 +tp219320 +a(g219317 +g219319 +S'and' +p219321 +tp219322 +a(g219319 +g219321 +S'other' +p219323 +tp219324 +a(g219321 +g219323 +S'commissions' +p219325 +tp219326 +a(g219323 +g219325 +S'for' +p219327 +tp219328 +a(g219325 +g219327 +S'faure.' +p219329 +tp219330 +a(g219327 +g219329 +S'degas' +p219331 +tp219332 +a(g219329 +g219331 +S'finally' +p219333 +tp219334 +a(g219331 +g219333 +S'delivered' +p219335 +tp219336 +a(g219333 +g219335 +S'the' +p219337 +tp219338 +a(g219335 +g219337 +S'completed' +p219339 +tp219340 +a(g219337 +g219339 +S'painting' +p219341 +tp219342 +a(g219339 +g219341 +S'to' +p219343 +tp219344 +a(g219341 +g219343 +S'his' +p219345 +tp219346 +a(g219343 +g219345 +S'patron' +p219347 +tp219348 +a(g219345 +g219347 +S'in' +p219349 +tp219350 +a(g219347 +g219349 +S'1887,' +p219351 +tp219352 +a(g219349 +g219351 +S'but' +p219353 +tp219354 +a(g219351 +g219353 +S'it' +p219355 +tp219356 +a(g219353 +g219355 +S'only' +p219357 +tp219358 +a(g219355 +g219357 +S'remained' +p219359 +tp219360 +a(g219357 +g219359 +S'in' +p219361 +tp219362 +a(g219359 +g219361 +S'his' +p219363 +tp219364 +a(g219361 +g219363 +S'possession' +p219365 +tp219366 +a(g219363 +g219365 +S'for' +p219367 +tp219368 +a(g219365 +g219367 +S'six' +p219369 +tp219370 +a(g219367 +g219369 +S'years.' +p219371 +tp219372 +a(g219369 +g219371 +S'in' +p219373 +tp219374 +a(g219371 +g219373 +S'1893,' +p219375 +tp219376 +a(g219373 +g219375 +S'faure' +p219377 +tp219378 +a(g219375 +g219377 +S'sold' +p219379 +tp219380 +a(g219377 +g219379 +S'this' +p219381 +tp219382 +a(g219379 +g219381 +S'painting' +p219383 +tp219384 +a(g219381 +g219383 +S'and' +p219385 +tp219386 +a(g219383 +g219385 +S'four' +p219387 +tp219388 +a(g219385 +g219387 +S'others' +p219389 +tp219390 +a(g219387 +g219389 +S'by' +p219391 +tp219392 +a(g219389 +g219391 +S'degas' +p219393 +tp219394 +a(g219391 +g219393 +S'to' +p219395 +tp219396 +a(g219393 +g219395 +S'durand-ruel' +p219397 +tp219398 +a(g219395 +g219397 +S'at' +p219399 +tp219400 +a(g219397 +g219399 +S'a' +p219401 +tp219402 +a(g219399 +g219401 +S'tidy' +p219403 +tp219404 +a(g219401 +g219403 +S'profit.' +p219405 +tp219406 +a(g219403 +g219405 +S'(text' +p219407 +tp219408 +a(g219405 +g219407 +S'by' +p219409 +tp219410 +a(g219407 +g219409 +S'kimberly' +p219411 +tp219412 +a(g219409 +g219411 +S'jones,' +p219413 +tp219414 +a(g219411 +g219413 +S'notes' +p219415 +tp219416 +a(g219413 +g219415 +S'' +p219419 +tp219420 +a(g219417 +g219419 +S'daybreak—a' +p219421 +tp219422 +a(g219419 +g219421 +S'time' +p219423 +tp219424 +a(g219421 +g219423 +S'to' +p219425 +tp219426 +a(g219423 +g219425 +S'rest' +p219427 +tp219428 +a(g219425 +g219427 +S'jacob' +p219429 +tp219430 +a(g219427 +g219429 +S'lawrence' +p219431 +tp219432 +a(g219429 +g219431 +S'is' +p219433 +tp219434 +a(g219431 +g219433 +S'renowned' +p219435 +tp219436 +a(g219433 +g219435 +S'for' +p219437 +tp219438 +a(g219435 +g219437 +S'his' +p219439 +tp219440 +a(g219437 +g219439 +S'narrative' +p219441 +tp219442 +a(g219439 +g219441 +S'painting' +p219443 +tp219444 +a(g219441 +g219443 +S'series' +p219445 +tp219446 +a(g219443 +g219445 +S'that' +p219447 +tp219448 +a(g219445 +g219447 +S'chronicles' +p219449 +tp219450 +a(g219447 +g219449 +S'the' +p219451 +tp219452 +a(g219449 +g219451 +S'experiences' +p219453 +tp219454 +a(g219451 +g219453 +S'of' +p219455 +tp219456 +a(g219453 +g219455 +S'african-americans,' +p219457 +tp219458 +a(g219455 +g219457 +S'which' +p219459 +tp219460 +a(g219457 +g219459 +S'he' +p219461 +tp219462 +a(g219459 +g219461 +S'created' +p219463 +tp219464 +a(g219461 +g219463 +S'during' +p219465 +tp219466 +a(g219463 +g219465 +S'a' +p219467 +tp219468 +a(g219465 +g219467 +S'career' +p219469 +tp219470 +a(g219467 +g219469 +S'of' +p219471 +tp219472 +a(g219469 +g219471 +S'more' +p219473 +tp219474 +a(g219471 +g219473 +S'than' +p219475 +tp219476 +a(g219473 +g219475 +S'six' +p219477 +tp219478 +a(g219475 +g219477 +S'decades.' +p219479 +tp219480 +a(g219477 +g219479 +S'using' +p219481 +tp219482 +a(g219479 +g219481 +S'geometric' +p219483 +tp219484 +a(g219481 +g219483 +S'shapes' +p219485 +tp219486 +a(g219483 +g219485 +S'and' +p219487 +tp219488 +a(g219485 +g219487 +S'bold' +p219489 +tp219490 +a(g219487 +g219489 +S'colors' +p219491 +tp219492 +a(g219489 +g219491 +S'on' +p219493 +tp219494 +a(g219491 +g219493 +S'flattened' +p219495 +tp219496 +a(g219493 +g219495 +S'picture' +p219497 +tp219498 +a(g219495 +g219497 +S'planes' +p219499 +tp219500 +a(g219497 +g219499 +S'to' +p219501 +tp219502 +a(g219499 +g219501 +S'express' +p219503 +tp219504 +a(g219501 +g219503 +S'his' +p219505 +tp219506 +a(g219503 +g219505 +S'emotions,' +p219507 +tp219508 +a(g219505 +g219507 +S'he' +p219509 +tp219510 +a(g219507 +g219509 +S'fleshed' +p219511 +tp219512 +a(g219509 +g219511 +S'out' +p219513 +tp219514 +a(g219511 +g219513 +S'the' +p219515 +tp219516 +a(g219513 +g219515 +S'lives' +p219517 +tp219518 +a(g219515 +g219517 +S'of' +p219519 +tp219520 +a(g219517 +g219519 +S'tubman,' +p219521 +tp219522 +a(g219519 +g219521 +S'frederick' +p219523 +tp219524 +a(g219521 +g219523 +S'douglass,' +p219525 +tp219526 +a(g219523 +g219525 +S'john' +p219527 +tp219528 +a(g219525 +g219527 +S'brown,' +p219529 +tp219530 +a(g219527 +g219529 +S'and' +p219531 +tp219532 +a(g219529 +g219531 +S'african-americans' +p219533 +tp219534 +a(g219531 +g219533 +S'migrating' +p219535 +tp219536 +a(g219533 +g219535 +S'north' +p219537 +tp219538 +a(g219535 +g219537 +S'from' +p219539 +tp219540 +a(g219537 +g219539 +S'the' +p219541 +tp219542 +a(g219539 +g219541 +S'rural' +p219543 +tp219544 +a(g219541 +g219543 +S'south' +p219545 +tp219546 +a(g219543 +g219545 +S'during' +p219547 +tp219548 +a(g219545 +g219547 +S'and' +p219549 +tp219550 +a(g219547 +g219549 +S'after' +p219551 +tp219552 +a(g219549 +g219551 +S'slavery.' +p219553 +tp219554 +a(g219551 +g219553 +S'lawrence' +p219555 +tp219556 +a(g219553 +g219555 +S'was' +p219557 +tp219558 +a(g219555 +g219557 +S'twelve' +p219559 +tp219560 +a(g219557 +g219559 +S'in' +p219561 +tp219562 +a(g219559 +g219561 +S'1929' +p219563 +tp219564 +a(g219561 +g219563 +S'when' +p219565 +tp219566 +a(g219563 +g219565 +S'his' +p219567 +tp219568 +a(g219565 +g219567 +S'family' +p219569 +tp219570 +a(g219567 +g219569 +S'settled' +p219571 +tp219572 +a(g219569 +g219571 +S'in' +p219573 +tp219574 +a(g219571 +g219573 +S'harlem,' +p219575 +tp219576 +a(g219573 +g219575 +S'new' +p219577 +tp219578 +a(g219575 +g219577 +S'york,' +p219579 +tp219580 +a(g219577 +g219579 +S'at' +p219581 +tp219582 +a(g219579 +g219581 +S'a' +p219583 +tp219584 +a(g219581 +g219583 +S'time' +p219585 +tp219586 +a(g219583 +g219585 +S'when' +p219587 +tp219588 +a(g219585 +g219587 +S'african-american' +p219589 +tp219590 +a(g219587 +g219589 +S'intellectual' +p219591 +tp219592 +a(g219589 +g219591 +S'and' +p219593 +tp219594 +a(g219591 +g219593 +S'artistic' +p219595 +tp219596 +a(g219593 +g219595 +S'life' +p219597 +tp219598 +a(g219595 +g219597 +S'was' +p219599 +tp219600 +a(g219597 +g219599 +S'flourishing' +p219601 +tp219602 +a(g219599 +g219601 +S'there.' +p219603 +tp219604 +a(g219601 +g219603 +S'as' +p219605 +tp219606 +a(g219603 +g219605 +S'a' +p219607 +tp219608 +a(g219605 +g219607 +S'teen,' +p219609 +tp219610 +a(g219607 +g219609 +S'he' +p219611 +tp219612 +a(g219609 +g219611 +S'took' +p219613 +tp219614 +a(g219611 +g219613 +S'classes' +p219615 +tp219616 +a(g219613 +g219615 +S'at' +p219617 +tp219618 +a(g219615 +g219617 +S'the' +p219619 +tp219620 +a(g219617 +g219619 +S'harlem' +p219621 +tp219622 +a(g219619 +g219621 +S'art' +p219623 +tp219624 +a(g219621 +g219623 +S'workshop' +p219625 +tp219626 +a(g219623 +g219625 +S'and' +p219627 +tp219628 +a(g219625 +g219627 +S'harlem' +p219629 +tp219630 +a(g219627 +g219629 +S'community' +p219631 +tp219632 +a(g219629 +g219631 +S'art' +p219633 +tp219634 +a(g219631 +g219633 +S'center,' +p219635 +tp219636 +a(g219633 +g219635 +S'where' +p219637 +tp219638 +a(g219635 +g219637 +S'he' +p219639 +tp219640 +a(g219637 +g219639 +S'studied' +p219641 +tp219642 +a(g219639 +g219641 +S'works' +p219643 +tp219644 +a(g219641 +g219643 +S'of' +p219645 +tp219646 +a(g219643 +g219645 +S'art' +p219647 +tp219648 +a(g219645 +g219647 +S'by' +p219649 +tp219650 +a(g219647 +g219649 +S'african-american' +p219651 +tp219652 +a(g219649 +g219651 +S'artists' +p219653 +tp219654 +a(g219651 +g219653 +S'and' +p219655 +tp219656 +a(g219653 +g219655 +S'learned' +p219657 +tp219658 +a(g219655 +g219657 +S'about' +p219659 +tp219660 +a(g219657 +g219659 +S'african' +p219661 +tp219662 +a(g219659 +g219661 +S'art' +p219663 +tp219664 +a(g219661 +g219663 +S'and' +p219665 +tp219666 +a(g219663 +g219665 +S'history.' +p219667 +tp219668 +a(g219665 +g219667 +S'lawrence' +p219669 +tp219670 +a(g219667 +g219669 +S'went' +p219671 +tp219672 +a(g219669 +g219671 +S'on' +p219673 +tp219674 +a(g219671 +g219673 +S'to' +p219675 +tp219676 +a(g219673 +g219675 +S'create' +p219677 +tp219678 +a(g219675 +g219677 +S'images' +p219679 +tp219680 +a(g219677 +g219679 +S'that' +p219681 +tp219682 +a(g219679 +g219681 +S'are' +p219683 +tp219684 +a(g219681 +g219683 +S'major' +p219685 +tp219686 +a(g219683 +g219685 +S'expressions' +p219687 +tp219688 +a(g219685 +g219687 +S'of' +p219689 +tp219690 +a(g219687 +g219689 +S'the' +p219691 +tp219692 +a(g219689 +g219691 +S'history' +p219693 +tp219694 +a(g219691 +g219693 +S'and' +p219695 +tp219696 +a(g219693 +g219695 +S'experience' +p219697 +tp219698 +a(g219695 +g219697 +S'of' +p219699 +tp219700 +a(g219697 +g219699 +S'african-americans.' +p219701 +tp219702 +a(g219699 +g219701 +S'during' +p219703 +tp219704 +a(g219701 +g219703 +S'the' +p219705 +tp219706 +a(g219703 +g219705 +S'last' +p219707 +tp219708 +a(g219705 +g219707 +S'fifteen' +p219709 +tp219710 +a(g219707 +g219709 +S'years' +p219711 +tp219712 +a(g219709 +g219711 +S'of' +p219713 +tp219714 +a(g219711 +g219713 +S'his' +p219715 +tp219716 +a(g219713 +g219715 +S'life' +p219717 +tp219718 +a(g219715 +g219717 +S'matisse' +p219719 +tp219720 +a(g219717 +g219719 +S'developed' +p219721 +tp219722 +a(g219719 +g219721 +S'his' +p219723 +tp219724 +a(g219721 +g219723 +S'final' +p219725 +tp219726 +a(g219723 +g219725 +S'artistic' +p219727 +tp219728 +a(g219725 +g219727 +S'triumph' +p219729 +tp219730 +a(g219727 +g219729 +S'by' +p219731 +tp219732 +a(g219729 +g219731 +S'"cutting' +p219733 +tp219734 +a(g219731 +g219733 +S'into' +p219735 +tp219736 +a(g219733 +g219735 +S'color."' +p219737 +tp219738 +a(g219735 +g219737 +S'first,' +p219739 +tp219740 +a(g219737 +g219739 +S'his' +p219741 +tp219742 +a(g219739 +g219741 +S'studio' +p219743 +tp219744 +a(g219741 +g219743 +S'assistants' +p219745 +tp219746 +a(g219743 +g219745 +S'would' +p219747 +tp219748 +a(g219745 +g219747 +S'brush' +p219749 +tp219750 +a(g219747 +g219749 +S'opaque' +p219751 +tp219752 +a(g219749 +g219751 +S'and' +p219753 +tp219754 +a(g219751 +g219753 +S'semi-transparent' +p219755 +tp219756 +a(g219753 +g219755 +S'watercolor' +p219757 +tp219758 +a(g219755 +g219757 +S'pigments' +p219759 +tp219760 +a(g219757 +g219759 +S'onto' +p219761 +tp219762 +a(g219759 +g219761 +S'small' +p219763 +tp219764 +a(g219761 +g219763 +S'sheets' +p219765 +tp219766 +a(g219763 +g219765 +S'of' +p219767 +tp219768 +a(g219765 +g219767 +S'white' +p219769 +tp219770 +a(g219767 +g219769 +S'paper.' +p219771 +tp219772 +a(g219769 +g219771 +S'the' +p219773 +tp219774 +a(g219771 +g219773 +S'artist' +p219775 +tp219776 +a(g219773 +g219775 +S'would' +p219777 +tp219778 +a(g219775 +g219777 +S'then' +p219779 +tp219780 +a(g219777 +g219779 +S'cut' +p219781 +tp219782 +a(g219779 +g219781 +S'the' +p219783 +tp219784 +a(g219781 +g219783 +S'sheets' +p219785 +tp219786 +a(g219783 +g219785 +S'freehand' +p219787 +tp219788 +a(g219785 +g219787 +S'in' +p219789 +tp219790 +a(g219787 +g219789 +S'bold' +p219791 +tp219792 +a(g219789 +g219791 +S'shapes' +p219793 +tp219794 +a(g219791 +g219793 +S'that' +p219795 +tp219796 +a(g219793 +g219795 +S'would' +p219797 +tp219798 +a(g219795 +g219797 +S'be' +p219799 +tp219800 +a(g219797 +g219799 +S'pinned' +p219801 +tp219802 +a(g219799 +g219801 +S'to' +p219803 +tp219804 +a(g219801 +g219803 +S'the' +p219805 +tp219806 +a(g219803 +g219805 +S'white' +p219807 +tp219808 +a(g219805 +g219807 +S'studio' +p219809 +tp219810 +a(g219807 +g219809 +S'walls,' +p219811 +tp219812 +a(g219809 +g219811 +S'adjusted,' +p219813 +tp219814 +a(g219811 +g219813 +S'recut,' +p219815 +tp219816 +a(g219813 +g219815 +S'combined' +p219817 +tp219818 +a(g219815 +g219817 +S'and' +p219819 +tp219820 +a(g219817 +g219819 +S'recombined' +p219821 +tp219822 +a(g219819 +g219821 +S'with' +p219823 +tp219824 +a(g219821 +g219823 +S'other' +p219825 +tp219826 +a(g219823 +g219825 +S'elements.' +p219827 +tp219828 +a(g219825 +g219827 +S'later,' +p219829 +tp219830 +a(g219827 +g219829 +S'the' +p219831 +tp219832 +a(g219829 +g219831 +S'elements' +p219833 +tp219834 +a(g219831 +g219833 +S'were' +p219835 +tp219836 +a(g219833 +g219835 +S'glued' +p219837 +tp219838 +a(g219835 +g219837 +S'flat' +p219839 +tp219840 +a(g219837 +g219839 +S'to' +p219841 +tp219842 +a(g219839 +g219841 +S'large' +p219843 +tp219844 +a(g219841 +g219843 +S'white' +p219845 +tp219846 +a(g219843 +g219845 +S'paper' +p219847 +tp219848 +a(g219845 +g219847 +S'backgrounds' +p219849 +tp219850 +a(g219847 +g219849 +S'for' +p219851 +tp219852 +a(g219849 +g219851 +S'shipping' +p219853 +tp219854 +a(g219851 +g219853 +S'or' +p219855 +tp219856 +a(g219853 +g219855 +S'display.' +p219857 +tp219858 +a(g219855 +g219857 +S'large' +p219859 +tp219860 +a(g219857 +g219859 +S'composition' +p219861 +tp219862 +a(g219859 +g219861 +S'with' +p219863 +tp219864 +a(g219861 +g219863 +S'masks' +p219865 +tp219866 +a(g219863 +g219865 +S'if' +p219867 +tp219868 +a(g219865 +g219867 +S'the' +p219869 +tp219870 +a(g219867 +g219869 +S'design' +p219871 +tp219872 +a(g219869 +g219871 +S'of' +p219873 +tp219874 +a(g219871 +g219873 +S'sir' +p219875 +tp219876 +a(g219873 +g219875 +S'charles,' +p219877 +tp219878 +a(g219875 +g219877 +S'alias' +p219879 +tp219880 +a(g219877 +g219879 +S'willie' +p219881 +tp219882 +a(g219879 +g219881 +S'harris' +p219883 +tp219884 +a(g219881 +g219883 +S'hendricks' +p219885 +tp219886 +a(g219883 +g219885 +S'has' +p219887 +tp219888 +a(g219885 +g219887 +S'said' +p219889 +tp219890 +a(g219887 +g219889 +S'that' +p219891 +tp219892 +a(g219889 +g219891 +S'a' +p219893 +tp219894 +a(g219891 +g219893 +S'painting' +p219895 +tp219896 +a(g219893 +g219895 +S'he' +p219897 +tp219898 +a(g219895 +g219897 +S'saw' +p219899 +tp219900 +a(g219897 +g219899 +S'in' +p219901 +tp219902 +a(g219899 +g219901 +S'1966' +p219903 +tp219904 +a(g219901 +g219903 +S'while' +p219905 +tp219906 +a(g219903 +g219905 +S'visiting' +p219907 +tp219908 +a(g219905 +g219907 +S'the' +p219909 +tp219910 +a(g219907 +g219909 +S'national' +p219911 +tp219912 +a(g219909 +g219911 +S'gallery' +p219913 +tp219914 +a(g219911 +g219913 +S'of' +p219915 +tp219916 +a(g219913 +g219915 +S'art' +p219917 +tp219918 +a(g219915 +g219917 +S'in' +p219919 +tp219920 +a(g219917 +g219919 +S'london—a' +p219921 +tp219922 +a(g219919 +g219921 +S'portrait' +p219923 +tp219924 +a(g219921 +g219923 +S'by' +p219925 +tp219926 +a(g219923 +g219925 +S'flemish' +p219927 +tp219928 +a(g219925 +g219927 +S'master' +p219929 +tp219930 +a(g219927 +g219929 +S'anthony' +p219931 +tp219932 +a(g219929 +g219931 +S'van' +p219933 +tp219934 +a(g219931 +g219933 +S'dyck' +p219935 +tp219936 +a(g219933 +g219935 +S'featuring' +p219937 +tp219938 +a(g219935 +g219937 +S'a' +p219939 +tp219940 +a(g219937 +g219939 +S'red' +p219941 +tp219942 +a(g219939 +g219941 +S'velvet' +p219943 +tp219944 +a(g219941 +g219943 +S'coat—was' +p219945 +tp219946 +a(g219943 +g219945 +S'a' +p219947 +tp219948 +a(g219945 +g219947 +S'point' +p219949 +tp219950 +a(g219947 +g219949 +S'of' +p219951 +tp219952 +a(g219949 +g219951 +S'departure' +p219953 +tp219954 +a(g219951 +g219953 +S'for' +p219955 +tp219956 +a(g219953 +g219955 +S'this' +p219957 +tp219958 +a(g219955 +g219957 +S'work.' +p219959 +tp219960 +a(g219957 +g219959 +S'intending' +p219961 +tp219962 +a(g219959 +g219961 +S'to' +p219963 +tp219964 +a(g219961 +g219963 +S'make' +p219965 +tp219966 +a(g219963 +g219965 +S'a' +p219967 +tp219968 +a(g219965 +g219967 +S'replica' +p219969 +tp219970 +a(g219967 +g219969 +S'of' +p219971 +tp219972 +a(g219969 +g219971 +S'the' +p219973 +tp219974 +a(g219971 +g219973 +S'van' +p219975 +tp219976 +a(g219973 +g219975 +S'dyck' +p219977 +tp219978 +a(g219975 +g219977 +S'image,' +p219979 +tp219980 +a(g219977 +g219979 +S'hendricks' +p219981 +tp219982 +a(g219979 +g219981 +S'received' +p219983 +tp219984 +a(g219981 +g219983 +S'permission' +p219985 +tp219986 +a(g219983 +g219985 +S'to' +p219987 +tp219988 +a(g219985 +g219987 +S'paint' +p219989 +tp219990 +a(g219987 +g219989 +S'as' +p219991 +tp219992 +a(g219989 +g219991 +S'a' +p219993 +tp219994 +a(g219991 +g219993 +S'copyist' +p219995 +tp219996 +a(g219993 +g219995 +S'in' +p219997 +tp219998 +a(g219995 +g219997 +S'the' +p219999 +tp220000 +a(g219997 +g219999 +S'museum.' +p220001 +tp220002 +a(g219999 +g220001 +S'but' +p220003 +tp220004 +a(g220001 +g220003 +S'once' +p220005 +tp220006 +a(g220003 +g220005 +S'in' +p220007 +tp220008 +a(g220005 +g220007 +S'the' +p220009 +tp220010 +a(g220007 +g220009 +S'process,' +p220011 +tp220012 +a(g220009 +g220011 +S'he' +p220013 +tp220014 +a(g220011 +g220013 +S'realized' +p220015 +tp220016 +a(g220013 +g220015 +S'he' +p220017 +tp220018 +a(g220015 +g220017 +S'could' +p220019 +tp220020 +a(g220017 +g220019 +S'not' +p220021 +tp220022 +a(g220019 +g220021 +S'copy' +p220023 +tp220024 +a(g220021 +g220023 +S'another' +p220025 +tp220026 +a(g220023 +g220025 +S"artist's" +p220027 +tp220028 +a(g220025 +g220027 +S'work,' +p220029 +tp220030 +a(g220027 +g220029 +S'"no' +p220031 +tp220032 +a(g220029 +g220031 +S'matter' +p220033 +tp220034 +a(g220031 +g220033 +S'how' +p220035 +tp220036 +a(g220033 +g220035 +S'much' +p220037 +tp220038 +a(g220035 +g220037 +S'i' +p220039 +tp220040 +a(g220037 +g220039 +S'like' +p220041 +tp220042 +a(g220039 +g220041 +S'it,"' +p220043 +tp220044 +a(g220041 +g220043 +S'he' +p220045 +tp220046 +a(g220043 +g220045 +S'said.' +p220047 +tp220048 +a(g220045 +g220047 +S'years' +p220049 +tp220050 +a(g220047 +g220049 +S'later' +p220051 +tp220052 +a(g220049 +g220051 +S'he' +p220053 +tp220054 +a(g220051 +g220053 +S'painted' +p220055 +tp220056 +a(g220053 +g220055 +S'hendricks,' +p220057 +tp220058 +a(g220055 +g220057 +S'who' +p220059 +tp220060 +a(g220057 +g220059 +S'was' +p220061 +tp220062 +a(g220059 +g220061 +S'born' +p220063 +tp220064 +a(g220061 +g220063 +S'in' +p220065 +tp220066 +a(g220063 +g220065 +S'philadelphia,' +p220067 +tp220068 +a(g220065 +g220067 +S'studied' +p220069 +tp220070 +a(g220067 +g220069 +S'there' +p220071 +tp220072 +a(g220069 +g220071 +S'at' +p220073 +tp220074 +a(g220071 +g220073 +S'the' +p220075 +tp220076 +a(g220073 +g220075 +S'pennsylvania' +p220077 +tp220078 +a(g220075 +g220077 +S'academy' +p220079 +tp220080 +a(g220077 +g220079 +S'of' +p220081 +tp220082 +a(g220079 +g220081 +S'the' +p220083 +tp220084 +a(g220081 +g220083 +S'fine' +p220085 +tp220086 +a(g220083 +g220085 +S'arts' +p220087 +tp220088 +a(g220085 +g220087 +S'and' +p220089 +tp220090 +a(g220087 +g220089 +S'earned' +p220091 +tp220092 +a(g220089 +g220091 +S'bfa' +p220093 +tp220094 +a(g220091 +g220093 +S'and' +p220095 +tp220096 +a(g220093 +g220095 +S'mfa' +p220097 +tp220098 +a(g220095 +g220097 +S'degrees' +p220099 +tp220100 +a(g220097 +g220099 +S'from' +p220101 +tp220102 +a(g220099 +g220101 +S'yale' +p220103 +tp220104 +a(g220101 +g220103 +S'university,' +p220105 +tp220106 +a(g220103 +g220105 +S'new' +p220107 +tp220108 +a(g220105 +g220107 +S'haven,' +p220109 +tp220110 +a(g220107 +g220109 +S'connecticut.' +p220111 +tp220112 +a(g220109 +g220111 +S'since' +p220113 +tp220114 +a(g220111 +g220113 +S'1972' +p220115 +tp220116 +a(g220113 +g220115 +S'he' +p220117 +tp220118 +a(g220115 +g220117 +S'has' +p220119 +tp220120 +a(g220117 +g220119 +S'taught' +p220121 +tp220122 +a(g220119 +g220121 +S'at' +p220123 +tp220124 +a(g220121 +g220123 +S'connecticut' +p220125 +tp220126 +a(g220123 +g220125 +S'college' +p220127 +tp220128 +a(g220125 +g220127 +S'in' +p220129 +tp220130 +a(g220127 +g220129 +S'new' +p220131 +tp220132 +a(g220129 +g220131 +S'london.' +p220133 +tp220134 +a(g220131 +g220133 +S'the' +p220135 +tp220136 +a(g220133 +g220135 +S'recipient' +p220137 +tp220138 +a(g220135 +g220137 +S'of' +p220139 +tp220140 +a(g220137 +g220139 +S'numerous' +p220141 +tp220142 +a(g220139 +g220141 +S'awards' +p220143 +tp220144 +a(g220141 +g220143 +S'and' +p220145 +tp220146 +a(g220143 +g220145 +S'recognitions,' +p220147 +tp220148 +a(g220145 +g220147 +S'he' +p220149 +tp220150 +a(g220147 +g220149 +S'has' +p220151 +tp220152 +a(g220149 +g220151 +S'exhibited' +p220153 +tp220154 +a(g220151 +g220153 +S'his' +p220155 +tp220156 +a(g220153 +g220155 +S'work' +p220157 +tp220158 +a(g220155 +g220157 +S'at' +p220159 +tp220160 +a(g220157 +g220159 +S'the' +p220161 +tp220162 +a(g220159 +g220161 +S'lyman' +p220163 +tp220164 +a(g220161 +g220163 +S'allyn' +p220165 +tp220166 +a(g220163 +g220165 +S'art' +p220167 +tp220168 +a(g220165 +g220167 +S'museum' +p220169 +tp220170 +a(g220167 +g220169 +S'at' +p220171 +tp220172 +a(g220169 +g220171 +S'connecticut' +p220173 +tp220174 +a(g220171 +g220173 +S'college;' +p220175 +tp220176 +a(g220173 +g220175 +S'the' +p220177 +tp220178 +a(g220175 +g220177 +S'whitney' +p220179 +tp220180 +a(g220177 +g220179 +S'museum' +p220181 +tp220182 +a(g220179 +g220181 +S'of' +p220183 +tp220184 +a(g220181 +g220183 +S'american' +p220185 +tp220186 +a(g220183 +g220185 +S'art,' +p220187 +tp220188 +a(g220185 +g220187 +S'new' +p220189 +tp220190 +a(g220187 +g220189 +S'york;' +p220191 +tp220192 +a(g220189 +g220191 +S'and' +p220193 +tp220194 +a(g220191 +g220193 +S'the' +p220195 +tp220196 +a(g220193 +g220195 +S'studio' +p220197 +tp220198 +a(g220195 +g220197 +S'museum' +p220199 +tp220200 +a(g220197 +g220199 +S'in' +p220201 +tp220202 +a(g220199 +g220201 +S'harlem,' +p220203 +tp220204 +a(g220201 +g220203 +S'new' +p220205 +tp220206 +a(g220203 +g220205 +S'york.' +p220207 +tp220208 +a(g220205 +g220207 +S'the' +p220209 +tp220210 +a(g220207 +g220209 +S'nasher' +p220211 +tp220212 +a(g220209 +g220211 +S'museum' +p220213 +tp220214 +a(g220211 +g220213 +S'of' +p220215 +tp220216 +a(g220213 +g220215 +S'art' +p220217 +tp220218 +a(g220215 +g220217 +S'at' +p220219 +tp220220 +a(g220217 +g220219 +S'duke' +p220221 +tp220222 +a(g220219 +g220221 +S'university' +p220223 +tp220224 +a(g220221 +g220223 +S'organized' +p220225 +tp220226 +a(g220223 +g220225 +S'a' +p220227 +tp220228 +a(g220225 +g220227 +S'career' +p220229 +tp220230 +a(g220227 +g220229 +S'retrospective' +p220231 +tp220232 +a(g220229 +g220231 +S'of' +p220233 +tp220234 +a(g220231 +g220233 +S"hendricks'" +p220235 +tp220236 +a(g220233 +g220235 +S'work,' +p220237 +tp220238 +a(g220235 +g220237 +S'created' +p220239 +tp220240 +a(g220237 +g220239 +S'while' +p220241 +tp220242 +a(g220239 +g220241 +S'escher' +p220243 +tp220244 +a(g220241 +g220243 +S'was' +p220245 +tp220246 +a(g220243 +g220245 +S'still' +p220247 +tp220248 +a(g220245 +g220247 +S'a' +p220249 +tp220250 +a(g220247 +g220249 +S'student' +p220251 +tp220252 +a(g220249 +g220251 +S'at' +p220253 +tp220254 +a(g220251 +g220253 +S'the' +p220255 +tp220256 +a(g220253 +g220255 +S'school' +p220257 +tp220258 +a(g220255 +g220257 +S'for' +p220259 +tp220260 +a(g220257 +g220259 +S'architecture' +p220261 +tp220262 +a(g220259 +g220261 +S'and' +p220263 +tp220264 +a(g220261 +g220263 +S'decorative' +p220265 +tp220266 +a(g220263 +g220265 +S'arts' +p220267 +tp220268 +a(g220265 +g220267 +S'in' +p220269 +tp220270 +a(g220267 +g220269 +S'haarlem,' +p220271 +tp220272 +a(g220269 +g220271 +S'this' +p220273 +tp220274 +a(g220271 +g220273 +S'is' +p220275 +tp220276 +a(g220273 +g220275 +S'the' +p220277 +tp220278 +a(g220275 +g220277 +S'first' +p220279 +tp220280 +a(g220277 +g220279 +S'print' +p220281 +tp220282 +a(g220279 +g220281 +S'to' +p220283 +tp220284 +a(g220281 +g220283 +S'demonstrate' +p220285 +tp220286 +a(g220283 +g220285 +S'his' +p220287 +tp220288 +a(g220285 +g220287 +S'theory' +p220289 +tp220290 +a(g220287 +g220289 +S'of' +p220291 +tp220292 +a(g220289 +g220291 +S'the' +p220293 +tp220294 +a(g220291 +g220293 +S'regular' +p220295 +tp220296 +a(g220293 +g220295 +S'division' +p220297 +tp220298 +a(g220295 +g220297 +S'of' +p220299 +tp220300 +a(g220297 +g220299 +S'a' +p220301 +tp220302 +a(g220299 +g220301 +S'plane.' +p220303 +tp220304 +a(g220301 +g220303 +S'escher' +p220305 +tp220306 +a(g220303 +g220305 +S'cut' +p220307 +tp220308 +a(g220305 +g220307 +S'eight' +p220309 +tp220310 +a(g220307 +g220309 +S'heads' +p220311 +tp220312 +a(g220309 +g220311 +S'--' +p220313 +tp220314 +a(g220311 +g220313 +S'four' +p220315 +tp220316 +a(g220313 +g220315 +S'male' +p220317 +tp220318 +a(g220315 +g220317 +S'and' +p220319 +tp220320 +a(g220317 +g220319 +S'four' +p220321 +tp220322 +a(g220319 +g220321 +S'female' +p220323 +tp220324 +a(g220321 +g220323 +S'--' +p220325 +tp220326 +a(g220323 +g220325 +S'in' +p220327 +tp220328 +a(g220325 +g220327 +S'the' +p220329 +tp220330 +a(g220327 +g220329 +S'original' +p220331 +tp220332 +a(g220329 +g220331 +S'wood' +p220333 +tp220334 +a(g220331 +g220333 +S'block.' +p220335 +tp220336 +a(g220333 +g220335 +S'the' +p220337 +tp220338 +a(g220335 +g220337 +S'final' +p220339 +tp220340 +a(g220337 +g220339 +S'image' +p220341 +tp220342 +a(g220339 +g220341 +S'was' +p220343 +tp220344 +a(g220341 +g220343 +S'achieved' +p220345 +tp220346 +a(g220343 +g220345 +S'by' +p220347 +tp220348 +a(g220345 +g220347 +S'printing' +p220349 +tp220350 +a(g220347 +g220349 +S'the' +p220351 +tp220352 +a(g220349 +g220351 +S'block' +p220353 +tp220354 +a(g220351 +g220353 +S'four' +p220355 +tp220356 +a(g220353 +g220355 +S'times.' +p220357 +tp220358 +a(g220355 +g220357 +S'from' +p220359 +tp220360 +a(g220357 +g220359 +S'december' +p220361 +tp220362 +a(g220359 +g220361 +S'1925' +p220363 +tp220364 +a(g220361 +g220363 +S'to' +p220365 +tp220366 +a(g220363 +g220365 +S'march' +p220367 +tp220368 +a(g220365 +g220367 +S'1926' +p220369 +tp220370 +a(g220367 +g220369 +S'escher' +p220371 +tp220372 +a(g220369 +g220371 +S'worked' +p220373 +tp220374 +a(g220371 +g220373 +S'on' +p220375 +tp220376 +a(g220373 +g220375 +S'a' +p220377 +tp220378 +a(g220375 +g220377 +S'series' +p220379 +tp220380 +a(g220377 +g220379 +S'of' +p220381 +tp220382 +a(g220379 +g220381 +S'six' +p220383 +tp220384 +a(g220381 +g220383 +S'woodcuts' +p220385 +tp220386 +a(g220383 +g220385 +S'on' +p220387 +tp220388 +a(g220385 +g220387 +S'the' +p220389 +tp220390 +a(g220387 +g220389 +S'theme' +p220391 +tp220392 +a(g220389 +g220391 +S'of' +p220393 +tp220394 +a(g220391 +g220393 +S'the' +p220395 +tp220396 +a(g220393 +g220395 +S'creation.' +p220397 +tp220398 +a(g220395 +g220397 +S'this' +p220399 +tp220400 +a(g220397 +g220399 +S'one' +p220401 +tp220402 +a(g220399 +g220401 +S'depicts' +p220403 +tp220404 +a(g220401 +g220403 +S'the' +p220405 +tp220406 +a(g220403 +g220405 +S'division' +p220407 +tp220408 +a(g220405 +g220407 +S'of' +p220409 +tp220410 +a(g220407 +g220409 +S'sky' +p220411 +tp220412 +a(g220409 +g220411 +S'and' +p220413 +tp220414 +a(g220411 +g220413 +S'water.' +p220415 +tp220416 +a(g220413 +g220415 +S'a' +p220417 +tp220418 +a(g220415 +g220417 +S'dutch' +p220419 +tp220420 +a(g220417 +g220419 +S'educational' +p220421 +tp220422 +a(g220419 +g220421 +S'association' +p220423 +tp220424 +a(g220421 +g220423 +S'bought' +p220425 +tp220426 +a(g220423 +g220425 +S'300' +p220427 +tp220428 +a(g220425 +g220427 +S'impressions' +p220429 +tp220430 +a(g220427 +g220429 +S'of' +p220431 +tp220432 +a(g220429 +g220431 +S'this' +p220433 +tp220434 +a(g220431 +g220433 +S'woodcut' +p220435 +tp220436 +a(g220433 +g220435 +S'to' +p220437 +tp220438 +a(g220435 +g220437 +S'hang' +p220439 +tp220440 +a(g220437 +g220439 +S'in' +p220441 +tp220442 +a(g220439 +g220441 +S'public' +p220443 +tp220444 +a(g220441 +g220443 +S'schools.' +p220445 +tp220446 +a(g220443 +g220445 +S'escher' +p220447 +tp220448 +a(g220445 +g220447 +S'first' +p220449 +tp220450 +a(g220447 +g220449 +S'learned' +p220451 +tp220452 +a(g220449 +g220451 +S'to' +p220453 +tp220454 +a(g220451 +g220453 +S'make' +p220455 +tp220456 +a(g220453 +g220455 +S'lithographs' +p220457 +tp220458 +a(g220455 +g220457 +S'in' +p220459 +tp220460 +a(g220457 +g220459 +S'1929.' +p220461 +tp220462 +a(g220459 +g220461 +S'this' +p220463 +tp220464 +a(g220461 +g220463 +S'is' +p220465 +tp220466 +a(g220463 +g220465 +S'his' +p220467 +tp220468 +a(g220465 +g220467 +S'second' +p220469 +tp220470 +a(g220467 +g220469 +S'endeavor' +p220471 +tp220472 +a(g220469 +g220471 +S'in' +p220473 +tp220474 +a(g220471 +g220473 +S'the' +p220475 +tp220476 +a(g220473 +g220475 +S'medium.' +p220477 +tp220478 +a(g220475 +g220477 +S'escher' +p220479 +tp220480 +a(g220477 +g220479 +S'made' +p220481 +tp220482 +a(g220479 +g220481 +S'self-portraits' +p220483 +tp220484 +a(g220481 +g220483 +S'throughout' +p220485 +tp220486 +a(g220483 +g220485 +S'his' +p220487 +tp220488 +a(g220485 +g220487 +S'career,' +p220489 +tp220490 +a(g220487 +g220489 +S'experimenting' +p220491 +tp220492 +a(g220489 +g220491 +S'with' +p220493 +tp220494 +a(g220491 +g220493 +S'various' +p220495 +tp220496 +a(g220493 +g220495 +S'printmaking' +p220497 +tp220498 +a(g220495 +g220497 +S'techniques' +p220499 +tp220500 +a(g220497 +g220499 +S'that' +p220501 +tp220502 +a(g220499 +g220501 +S'included' +p220503 +tp220504 +a(g220501 +g220503 +S'linoleum' +p220505 +tp220506 +a(g220503 +g220505 +S'cut,' +p220507 +tp220508 +a(g220505 +g220507 +S'woodcut,' +p220509 +tp220510 +a(g220507 +g220509 +S'lithography,' +p220511 +tp220512 +a(g220509 +g220511 +S'and' +p220513 +tp220514 +a(g220511 +g220513 +S'mezzotint.' +p220515 +tp220516 +a(g220513 +g220515 +S'lithography,' +p220517 +tp220518 +a(g220515 +g220517 +S'in' +p220519 +tp220520 +a(g220517 +g220519 +S'which' +p220521 +tp220522 +a(g220519 +g220521 +S'the' +p220523 +tp220524 +a(g220521 +g220523 +S'image' +p220525 +tp220526 +a(g220523 +g220525 +S'is' +p220527 +tp220528 +a(g220525 +g220527 +S'drawn' +p220529 +tp220530 +a(g220527 +g220529 +S'with' +p220531 +tp220532 +a(g220529 +g220531 +S'an' +p220533 +tp220534 +a(g220531 +g220533 +S'oily' +p220535 +tp220536 +a(g220533 +g220535 +S'medium' +p220537 +tp220538 +a(g220535 +g220537 +S'on' +p220539 +tp220540 +a(g220537 +g220539 +S'a' +p220541 +tp220542 +a(g220539 +g220541 +S'stone' +p220543 +tp220544 +a(g220541 +g220543 +S'slab,' +p220545 +tp220546 +a(g220543 +g220545 +S'is' +p220547 +tp220548 +a(g220545 +g220547 +S'based' +p220549 +tp220550 +a(g220547 +g220549 +S'on' +p220551 +tp220552 +a(g220549 +g220551 +S'the' +p220553 +tp220554 +a(g220551 +g220553 +S'principle' +p220555 +tp220556 +a(g220553 +g220555 +S'that' +p220557 +tp220558 +a(g220555 +g220557 +S'oil' +p220559 +tp220560 +a(g220557 +g220559 +S'and' +p220561 +tp220562 +a(g220559 +g220561 +S'water' +p220563 +tp220564 +a(g220561 +g220563 +S'repel' +p220565 +tp220566 +a(g220563 +g220565 +S'one' +p220567 +tp220568 +a(g220565 +g220567 +S'another.' +p220569 +tp220570 +a(g220567 +g220569 +S'after' +p220571 +tp220572 +a(g220569 +g220571 +S'the' +p220573 +tp220574 +a(g220571 +g220573 +S'prepared' +p220575 +tp220576 +a(g220573 +g220575 +S'stone' +p220577 +tp220578 +a(g220575 +g220577 +S'is' +p220579 +tp220580 +a(g220577 +g220579 +S'washed' +p220581 +tp220582 +a(g220579 +g220581 +S'with' +p220583 +tp220584 +a(g220581 +g220583 +S'water,' +p220585 +tp220586 +a(g220583 +g220585 +S'printing' +p220587 +tp220588 +a(g220585 +g220587 +S'ink' +p220589 +tp220590 +a(g220587 +g220589 +S'is' +p220591 +tp220592 +a(g220589 +g220591 +S'applied,' +p220593 +tp220594 +a(g220591 +g220593 +S'which' +p220595 +tp220596 +a(g220593 +g220595 +S'adheres' +p220597 +tp220598 +a(g220595 +g220597 +S'only' +p220599 +tp220600 +a(g220597 +g220599 +S'to' +p220601 +tp220602 +a(g220599 +g220601 +S'the' +p220603 +tp220604 +a(g220601 +g220603 +S'drawing.' +p220605 +tp220606 +a(g220603 +g220605 +S'in' +p220607 +tp220608 +a(g220605 +g220607 +S'may' +p220609 +tp220610 +a(g220607 +g220609 +S'and' +p220611 +tp220612 +a(g220609 +g220611 +S'june' +p220613 +tp220614 +a(g220611 +g220613 +S'1929' +p220615 +tp220616 +a(g220613 +g220615 +S'escher' +p220617 +tp220618 +a(g220615 +g220617 +S'traveled' +p220619 +tp220620 +a(g220617 +g220619 +S'through' +p220621 +tp220622 +a(g220619 +g220621 +S'the' +p220623 +tp220624 +a(g220621 +g220623 +S'mountainous' +p220625 +tp220626 +a(g220623 +g220625 +S'landscape' +p220627 +tp220628 +a(g220625 +g220627 +S'of' +p220629 +tp220630 +a(g220627 +g220629 +S'abruzzi,' +p220631 +tp220632 +a(g220629 +g220631 +S'italy,' +p220633 +tp220634 +a(g220631 +g220633 +S'planning' +p220635 +tp220636 +a(g220633 +g220635 +S'to' +p220637 +tp220638 +a(g220635 +g220637 +S'produce' +p220639 +tp220640 +a(g220637 +g220639 +S'an' +p220641 +tp220642 +a(g220639 +g220641 +S'illustrated' +p220643 +tp220644 +a(g220641 +g220643 +S'book' +p220645 +tp220646 +a(g220643 +g220645 +S'on' +p220647 +tp220648 +a(g220645 +g220647 +S'the' +p220649 +tp220650 +a(g220647 +g220649 +S'region.' +p220651 +tp220652 +a(g220649 +g220651 +S'this' +p220653 +tp220654 +a(g220651 +g220653 +S'never' +p220655 +tp220656 +a(g220653 +g220655 +S'materialized,' +p220657 +tp220658 +a(g220655 +g220657 +S'but' +p220659 +tp220660 +a(g220657 +g220659 +S'he' +p220661 +tp220662 +a(g220659 +g220661 +S'did' +p220663 +tp220664 +a(g220661 +g220663 +S'create' +p220665 +tp220666 +a(g220663 +g220665 +S'28' +p220667 +tp220668 +a(g220665 +g220667 +S'drawings' +p220669 +tp220670 +a(g220667 +g220669 +S'on' +p220671 +tp220672 +a(g220669 +g220671 +S'which' +p220673 +tp220674 +a(g220671 +g220673 +S'he' +p220675 +tp220676 +a(g220673 +g220675 +S'based' +p220677 +tp220678 +a(g220675 +g220677 +S'prints,' +p220679 +tp220680 +a(g220677 +g220679 +S'including' +p220681 +tp220682 +a(g220679 +g220681 +S'this' +p220683 +tp220684 +a(g220681 +g220683 +S'lithograph' +p220685 +tp220686 +a(g220683 +g220685 +S'depicting' +p220687 +tp220688 +a(g220685 +g220687 +S'the' +p220689 +tp220690 +a(g220687 +g220689 +S'town' +p220691 +tp220692 +a(g220689 +g220691 +S'of' +p220693 +tp220694 +a(g220691 +g220693 +S'castrovalva.' +p220695 +tp220696 +a(g220693 +g220695 +S'this' +p220697 +tp220698 +a(g220695 +g220697 +S'is' +p220699 +tp220700 +a(g220697 +g220699 +S'one' +p220701 +tp220702 +a(g220699 +g220701 +S'of' +p220703 +tp220704 +a(g220701 +g220703 +S"escher's" +p220705 +tp220706 +a(g220703 +g220705 +S'earliest' +p220707 +tp220708 +a(g220705 +g220707 +S'prints' +p220709 +tp220710 +a(g220707 +g220709 +S'to' +p220711 +tp220712 +a(g220709 +g220711 +S'explore' +p220713 +tp220714 +a(g220711 +g220713 +S'different' +p220715 +tp220716 +a(g220713 +g220715 +S'levels' +p220717 +tp220718 +a(g220715 +g220717 +S'of' +p220719 +tp220720 +a(g220717 +g220719 +S'reality.' +p220721 +tp220722 +a(g220719 +g220721 +S'the' +p220723 +tp220724 +a(g220721 +g220723 +S'first' +p220725 +tp220726 +a(g220723 +g220725 +S'observed' +p220727 +tp220728 +a(g220725 +g220727 +S'reality' +p220729 +tp220730 +a(g220727 +g220729 +S'is' +p220731 +tp220732 +a(g220729 +g220731 +S'the' +p220733 +tp220734 +a(g220731 +g220733 +S'mirror' +p220735 +tp220736 +a(g220733 +g220735 +S'itself' +p220737 +tp220738 +a(g220735 +g220737 +S'and' +p220739 +tp220740 +a(g220737 +g220739 +S'the' +p220741 +tp220742 +a(g220739 +g220741 +S'objects' +p220743 +tp220744 +a(g220741 +g220743 +S'that' +p220745 +tp220746 +a(g220743 +g220745 +S'surround' +p220747 +tp220748 +a(g220745 +g220747 +S'it.' +p220749 +tp220750 +a(g220747 +g220749 +S'the' +p220751 +tp220752 +a(g220749 +g220751 +S'second' +p220753 +tp220754 +a(g220751 +g220753 +S'is' +p220755 +tp220756 +a(g220753 +g220755 +S'that' +p220757 +tp220758 +a(g220755 +g220757 +S'of' +p220759 +tp220760 +a(g220757 +g220759 +S'the' +p220761 +tp220762 +a(g220759 +g220761 +S'street,' +p220763 +tp220764 +a(g220761 +g220763 +S'which' +p220765 +tp220766 +a(g220763 +g220765 +S'in' +p220767 +tp220768 +a(g220765 +g220767 +S'turn' +p220769 +tp220770 +a(g220767 +g220769 +S'becomes' +p220771 +tp220772 +a(g220769 +g220771 +S'part' +p220773 +tp220774 +a(g220771 +g220773 +S'of' +p220775 +tp220776 +a(g220773 +g220775 +S'the' +p220777 +tp220778 +a(g220775 +g220777 +S'room' +p220779 +tp220780 +a(g220777 +g220779 +S'by' +p220781 +tp220782 +a(g220779 +g220781 +S'its' +p220783 +tp220784 +a(g220781 +g220783 +S'reflection' +p220785 +tp220786 +a(g220783 +g220785 +S'in' +p220787 +tp220788 +a(g220785 +g220787 +S'the' +p220789 +tp220790 +a(g220787 +g220789 +S'mirror.' +p220791 +tp220792 +a(g220789 +g220791 +S'finally,' +p220793 +tp220794 +a(g220791 +g220793 +S'the' +p220795 +tp220796 +a(g220793 +g220795 +S'objects' +p220797 +tp220798 +a(g220795 +g220797 +S'in' +p220799 +tp220800 +a(g220797 +g220799 +S'front' +p220801 +tp220802 +a(g220799 +g220801 +S'of' +p220803 +tp220804 +a(g220801 +g220803 +S'the' +p220805 +tp220806 +a(g220803 +g220805 +S'mirror,' +p220807 +tp220808 +a(g220805 +g220807 +S'by' +p220809 +tp220810 +a(g220807 +g220809 +S'their' +p220811 +tp220812 +a(g220809 +g220811 +S'reflection,' +p220813 +tp220814 +a(g220811 +g220813 +S'become' +p220815 +tp220816 +a(g220813 +g220815 +S'part' +p220817 +tp220818 +a(g220815 +g220817 +S'of' +p220819 +tp220820 +a(g220817 +g220819 +S'the' +p220821 +tp220822 +a(g220819 +g220821 +S'street' +p220823 +tp220824 +a(g220821 +g220823 +S'scene.' +p220825 +tp220826 +a(g220823 +g220825 +S'at' +p220827 +tp220828 +a(g220825 +g220827 +S'the' +p220829 +tp220830 +a(g220827 +g220829 +S'same' +p220831 +tp220832 +a(g220829 +g220831 +S'time' +p220833 +tp220834 +a(g220831 +g220833 +S'the' +p220835 +tp220836 +a(g220833 +g220835 +S'print' +p220837 +tp220838 +a(g220835 +g220837 +S'presents' +p220839 +tp220840 +a(g220837 +g220839 +S'a' +p220841 +tp220842 +a(g220839 +g220841 +S'physical' +p220843 +tp220844 +a(g220841 +g220843 +S'impossibility:' +p220845 +tp220846 +a(g220843 +g220845 +S'the' +p220847 +tp220848 +a(g220845 +g220847 +S'mirror' +p220849 +tp220850 +a(g220847 +g220849 +S'is' +p220851 +tp220852 +a(g220849 +g220851 +S'tilted' +p220853 +tp220854 +a(g220851 +g220853 +S'toward' +p220855 +tp220856 +a(g220853 +g220855 +S'the' +p220857 +tp220858 +a(g220855 +g220857 +S'ceiling' +p220859 +tp220860 +a(g220857 +g220859 +S'yet' +p220861 +tp220862 +a(g220859 +g220861 +S'reflects' +p220863 +tp220864 +a(g220861 +g220863 +S'the' +p220865 +tp220866 +a(g220863 +g220865 +S'view' +p220867 +tp220868 +a(g220865 +g220867 +S'of' +p220869 +tp220870 +a(g220867 +g220869 +S'the' +p220871 +tp220872 +a(g220869 +g220871 +S'street' +p220873 +tp220874 +a(g220871 +g220873 +S'from' +p220875 +tp220876 +a(g220873 +g220875 +S'the' +p220877 +tp220878 +a(g220875 +g220877 +S'window' +p220879 +tp220880 +a(g220877 +g220879 +S'on' +p220881 +tp220882 +a(g220879 +g220881 +S'the' +p220883 +tp220884 +a(g220881 +g220883 +S'opposite' +p220885 +tp220886 +a(g220883 +g220885 +S'wall.' +p220887 +tp220888 +a(g220885 +g220887 +S'in' +p220889 +tp220890 +a(g220887 +g220889 +S'the' +p220891 +tp220892 +a(g220889 +g220891 +S'late' +p220893 +tp220894 +a(g220891 +g220893 +S'1870s' +p220895 +tp220896 +a(g220893 +g220895 +S'and' +p220897 +tp220898 +a(g220895 +g220897 +S'1880s' +p220899 +tp220900 +a(g220897 +g220899 +S'cézanne' +p220901 +tp220902 +a(g220899 +g220901 +S'tried' +p220903 +tp220904 +a(g220901 +g220903 +S'to' +p220905 +tp220906 +a(g220903 +g220905 +S'impose' +p220907 +tp220908 +a(g220905 +g220907 +S'greater' +p220909 +tp220910 +a(g220907 +g220909 +S'order' +p220911 +tp220912 +a(g220909 +g220911 +S'in' +p220913 +tp220914 +a(g220911 +g220913 +S'his' +p220915 +tp220916 +a(g220913 +g220915 +S'paintings' +p220917 +tp220918 +a(g220915 +g220917 +S'by' +p220919 +tp220920 +a(g220917 +g220919 +S'systematizing' +p220921 +tp220922 +a(g220919 +g220921 +S'his' +p220923 +tp220924 +a(g220921 +g220923 +S'brushwork.' +p220925 +tp220926 +a(g220923 +g220925 +S'here,' +p220927 +tp220928 +a(g220925 +g220927 +S'almost' +p220929 +tp220930 +a(g220927 +g220929 +S'every' +p220931 +tp220932 +a(g220929 +g220931 +S'part' +p220933 +tp220934 +a(g220931 +g220933 +S'of' +p220935 +tp220936 +a(g220933 +g220935 +S'nature' +p220937 +tp220938 +a(g220935 +g220937 +S'is' +p220939 +tp220940 +a(g220937 +g220939 +S'defined' +p220941 +tp220942 +a(g220939 +g220941 +S'by' +p220943 +tp220944 +a(g220941 +g220943 +S'the' +p220945 +tp220946 +a(g220943 +g220945 +S'same' +p220947 +tp220948 +a(g220945 +g220947 +S'close' +p220949 +tp220950 +a(g220947 +g220949 +S'parallel' +p220951 +tp220952 +a(g220949 +g220951 +S'strokes.' +p220953 +tp220954 +a(g220951 +g220953 +S'this' +p220955 +tp220956 +a(g220953 +g220955 +S'landscape' +p220957 +tp220958 +a(g220955 +g220957 +S'is' +p220959 +tp220960 +a(g220957 +g220959 +S'more' +p220961 +tp220962 +a(g220959 +g220961 +S'fully' +p220963 +tp220964 +a(g220961 +g220963 +S'finished' +p220965 +tp220966 +a(g220963 +g220965 +S'than' +p220967 +tp220968 +a(g220965 +g220967 +S'several' +p220969 +tp220970 +a(g220967 +g220969 +S'others' +p220971 +tp220972 +a(g220969 +g220971 +S'in' +p220973 +tp220974 +a(g220971 +g220973 +S'the' +p220975 +tp220976 +a(g220973 +g220975 +S"gallery's" +p220977 +tp220978 +a(g220975 +g220977 +S'collection.' +p220979 +tp220980 +a(g220977 +g220979 +S'in' +p220981 +tp220982 +a(g220979 +g220981 +S'many' +p220983 +tp220984 +a(g220981 +g220983 +S'of' +p220985 +tp220986 +a(g220983 +g220985 +S'the' +p220987 +tp220988 +a(g220985 +g220987 +S'places' +p220989 +tp220990 +a(g220987 +g220989 +S'cézanne' +p220991 +tp220992 +a(g220989 +g220991 +S'painted' +p220993 +tp220994 +a(g220991 +g220993 +S'have' +p220995 +tp220996 +a(g220993 +g220995 +S'been' +p220997 +tp220998 +a(g220995 +g220997 +S'identified,' +p220999 +tp221000 +a(g220997 +g220999 +S'including' +p221001 +tp221002 +a(g220999 +g221001 +S'this' +p221003 +tp221004 +a(g221001 +g221003 +S'spot' +p221005 +tp221006 +a(g221003 +g221005 +S'near' +p221007 +tp221008 +a(g221005 +g221007 +S"l'estaque." +p221009 +tp221010 +a(g221007 +g221009 +S'by' +p221011 +tp221012 +a(g221009 +g221011 +S'comparing' +p221013 +tp221014 +a(g221011 +g221013 +S'his' +p221015 +tp221016 +a(g221013 +g221015 +S'pictures' +p221017 +tp221018 +a(g221015 +g221017 +S'with' +p221019 +tp221020 +a(g221017 +g221019 +S'the' +p221021 +tp221022 +a(g221019 +g221021 +S'actual' +p221023 +tp221024 +a(g221021 +g221023 +S'locations,' +p221025 +tp221026 +a(g221023 +g221025 +S'it' +p221027 +tp221028 +a(g221025 +g221027 +S'becomes' +p221029 +tp221030 +a(g221027 +g221029 +S'clear' +p221031 +tp221032 +a(g221029 +g221031 +S'that' +p221033 +tp221034 +a(g221031 +g221033 +S'he' +p221035 +tp221036 +a(g221033 +g221035 +S'often' +p221037 +tp221038 +a(g221035 +g221037 +S'moved' +p221039 +tp221040 +a(g221037 +g221039 +S'his' +p221041 +tp221042 +a(g221039 +g221041 +S'easel,' +p221043 +tp221044 +a(g221041 +g221043 +S'juxtaposing' +p221045 +tp221046 +a(g221043 +g221045 +S'different' +p221047 +tp221048 +a(g221045 +g221047 +S'points' +p221049 +tp221050 +a(g221047 +g221049 +S'of' +p221051 +tp221052 +a(g221049 +g221051 +S'view' +p221053 +tp221054 +a(g221051 +g221053 +S'as' +p221055 +tp221056 +a(g221053 +g221055 +S'he' +p221057 +tp221058 +a(g221055 +g221057 +S'worked' +p221059 +tp221060 +a(g221057 +g221059 +S'over' +p221061 +tp221062 +a(g221059 +g221061 +S'successive' +p221063 +tp221064 +a(g221061 +g221063 +S'days.' +p221065 +tp221066 +a(g221063 +g221065 +S'in' +p221067 +tp221068 +a(g221065 +g221067 +S'1898,' +p221069 +tp221070 +a(g221067 +g221069 +S'gauguin' +p221071 +tp221072 +a(g221069 +g221071 +S'sent' +p221073 +tp221074 +a(g221071 +g221073 +S'a' +p221075 +tp221076 +a(g221073 +g221075 +S'group' +p221077 +tp221078 +a(g221075 +g221077 +S'of' +p221079 +tp221080 +a(g221077 +g221079 +S'works' +p221081 +tp221082 +a(g221079 +g221081 +S'from' +p221083 +tp221084 +a(g221081 +g221083 +S'tahiti' +p221085 +tp221086 +a(g221083 +g221085 +S'for' +p221087 +tp221088 +a(g221085 +g221087 +S'exhibition' +p221089 +tp221090 +a(g221087 +g221089 +S'in' +p221091 +tp221092 +a(g221089 +g221091 +S'paris.' +p221093 +tp221094 +a(g221091 +g221093 +S'the' +p221095 +tp221096 +a(g221093 +g221095 +S'centerpiece' +p221097 +tp221098 +a(g221095 +g221097 +S'was' +p221099 +tp221100 +a(g221097 +g221099 +S'a' +p221101 +tp221102 +a(g221099 +g221101 +S'painting' +p221103 +tp221104 +a(g221101 +g221103 +S'more' +p221105 +tp221106 +a(g221103 +g221105 +S'than' +p221107 +tp221108 +a(g221105 +g221107 +S'twelve-feet' +p221109 +tp221110 +a(g221107 +g221109 +S'long' +p221111 +tp221112 +a(g221109 +g221111 +S'on' +p221113 +tp221114 +a(g221111 +g221113 +S'hemp' +p221115 +tp221116 +a(g221113 +g221115 +S'sacking' +p221117 +tp221118 +a(g221115 +g221117 +S'material' +p221119 +tp221120 +a(g221117 +g221119 +S'with' +p221121 +tp221122 +a(g221119 +g221121 +S'the' +p221123 +tp221124 +a(g221121 +g221123 +S'french' +p221125 +tp221126 +a(g221123 +g221125 +S'inscription,' +p221127 +tp221128 +a(g221125 +g221127 +S'"where' +p221129 +tp221130 +a(g221127 +g221129 +S'do' +p221131 +tp221132 +a(g221129 +g221131 +S'we' +p221133 +tp221134 +a(g221131 +g221133 +S'come' +p221135 +tp221136 +a(g221133 +g221135 +S'from?' +p221137 +tp221138 +a(g221135 +g221137 +S'what' +p221139 +tp221140 +a(g221137 +g221139 +S'are' +p221141 +tp221142 +a(g221139 +g221141 +S'we?' +p221143 +tp221144 +a(g221141 +g221143 +S'where' +p221145 +tp221146 +a(g221143 +g221145 +S'are' +p221147 +tp221148 +a(g221145 +g221147 +S'we' +p221149 +tp221150 +a(g221147 +g221149 +S'going?"' +p221151 +tp221152 +a(g221149 +g221151 +S'(museum' +p221153 +tp221154 +a(g221151 +g221153 +S'of' +p221155 +tp221156 +a(g221153 +g221155 +S'fine' +p221157 +tp221158 +a(g221155 +g221157 +S'arts,' +p221159 +tp221160 +a(g221157 +g221159 +S'boston).' +p221161 +tp221162 +a(g221159 +g221161 +S'intended' +p221163 +tp221164 +a(g221161 +g221163 +S'to' +p221165 +tp221166 +a(g221163 +g221165 +S'be' +p221167 +tp221168 +a(g221165 +g221167 +S'seen' +p221169 +tp221170 +a(g221167 +g221169 +S'with' +p221171 +tp221172 +a(g221169 +g221171 +S'it' +p221173 +tp221174 +a(g221171 +g221173 +S'were' +p221175 +tp221176 +a(g221173 +g221175 +S'eight' +p221177 +tp221178 +a(g221175 +g221177 +S'smaller' +p221179 +tp221180 +a(g221177 +g221179 +S'works' +p221181 +tp221182 +a(g221179 +g221181 +S'based' +p221183 +tp221184 +a(g221181 +g221183 +S'on' +p221185 +tp221186 +a(g221183 +g221185 +S'motifs' +p221187 +tp221188 +a(g221185 +g221187 +S'excerpted' +p221189 +tp221190 +a(g221187 +g221189 +S'from' +p221191 +tp221192 +a(g221189 +g221191 +S'one' +p221193 +tp221194 +a(g221191 +g221193 +S'figure' +p221195 +tp221196 +a(g221193 +g221195 +S'that' +p221197 +tp221198 +a(g221195 +g221197 +S'recurs' +p221199 +tp221200 +a(g221197 +g221199 +S'from' +p221201 +tp221202 +a(g221199 +g221201 +S'the' +p221203 +tp221204 +a(g221201 +g221203 +S'larger' +p221205 +tp221206 +a(g221203 +g221205 +S'work' +p221207 +tp221208 +a(g221205 +g221207 +S'is' +p221209 +tp221210 +a(g221207 +g221209 +S'the' +p221211 +tp221212 +a(g221209 +g221211 +S'blue' +p221213 +tp221214 +a(g221211 +g221213 +S'goddess.' +p221215 +tp221216 +a(g221213 +g221215 +S'she' +p221217 +tp221218 +a(g221215 +g221217 +S'is' +p221219 +tp221220 +a(g221217 +g221219 +S'the' +p221221 +tp221222 +a(g221219 +g221221 +S'deity' +p221223 +tp221224 +a(g221221 +g221223 +S'hina,' +p221225 +tp221226 +a(g221223 +g221225 +S'prominent' +p221227 +tp221228 +a(g221225 +g221227 +S'in' +p221229 +tp221230 +a(g221227 +g221229 +S'an' +p221231 +tp221232 +a(g221229 +g221231 +S'ancient' +p221233 +tp221234 +a(g221231 +g221233 +S'polynesian' +p221235 +tp221236 +a(g221233 +g221235 +S'creation' +p221237 +tp221238 +a(g221235 +g221237 +S'myth,' +p221239 +tp221240 +a(g221237 +g221239 +S'whom' +p221241 +tp221242 +a(g221239 +g221241 +S'gauguin' +p221243 +tp221244 +a(g221241 +g221243 +S'represented' +p221245 +tp221246 +a(g221243 +g221245 +S'in' +p221247 +tp221248 +a(g221245 +g221247 +S'sculpture' +p221249 +tp221250 +a(g221247 +g221249 +S'and' +p221251 +tp221252 +a(g221249 +g221251 +S'painting' +p221253 +tp221254 +a(g221251 +g221253 +S'repeatedly.' +p221255 +tp221256 +a(g221253 +g221255 +S"gauguin's" +p221257 +tp221258 +a(g221255 +g221257 +S'interpretation' +p221259 +tp221260 +a(g221257 +g221259 +S'of' +p221261 +tp221262 +a(g221259 +g221261 +S'her' +p221263 +tp221264 +a(g221261 +g221263 +S'appearance' +p221265 +tp221266 +a(g221263 +g221265 +S'is' +p221267 +tp221268 +a(g221265 +g221267 +S'based' +p221269 +tp221270 +a(g221267 +g221269 +S'upon' +p221271 +tp221272 +a(g221269 +g221271 +S'a' +p221273 +tp221274 +a(g221271 +g221273 +S'variety' +p221275 +tp221276 +a(g221273 +g221275 +S'of' +p221277 +tp221278 +a(g221275 +g221277 +S'sources' +p221279 +tp221280 +a(g221277 +g221279 +S'from' +p221281 +tp221282 +a(g221279 +g221281 +S'hindu' +p221283 +tp221284 +a(g221281 +g221283 +S'and' +p221285 +tp221286 +a(g221283 +g221285 +S'south' +p221287 +tp221288 +a(g221285 +g221287 +S'asian' +p221289 +tp221290 +a(g221287 +g221289 +S'art' +p221291 +tp221292 +a(g221289 +g221291 +S'and' +p221293 +tp221294 +a(g221291 +g221293 +S'culture.' +p221295 +tp221296 +a(g221293 +g221295 +S'gauguin' +p221297 +tp221298 +a(g221295 +g221297 +S'described' +p221299 +tp221300 +a(g221297 +g221299 +S'hina' +p221301 +tp221302 +a(g221299 +g221301 +S'as' +p221303 +tp221304 +a(g221301 +g221303 +S'an' +p221305 +tp221306 +a(g221303 +g221305 +S'emblem' +p221307 +tp221308 +a(g221305 +g221307 +S'of' +p221309 +tp221310 +a(g221307 +g221309 +S'the' +p221311 +tp221312 +a(g221309 +g221311 +S'"hereafter,"' +p221313 +tp221314 +a(g221311 +g221313 +S'alluding' +p221315 +tp221316 +a(g221313 +g221315 +S'to' +p221317 +tp221318 +a(g221315 +g221317 +S'both' +p221319 +tp221320 +a(g221317 +g221319 +S'the' +p221321 +tp221322 +a(g221319 +g221321 +S'cycles' +p221323 +tp221324 +a(g221321 +g221323 +S'of' +p221325 +tp221326 +a(g221323 +g221325 +S'life' +p221327 +tp221328 +a(g221325 +g221327 +S'represented' +p221329 +tp221330 +a(g221327 +g221329 +S'in' +p221331 +tp221332 +a(g221329 +g221331 +S'the' +p221333 +tp221334 +a(g221331 +g221333 +S'work' +p221335 +tp221336 +a(g221333 +g221335 +S'(by' +p221337 +tp221338 +a(g221335 +g221337 +S'the' +p221339 +tp221340 +a(g221337 +g221339 +S'infant' +p221341 +tp221342 +a(g221339 +g221341 +S'and' +p221343 +tp221344 +a(g221341 +g221343 +S'old' +p221345 +tp221346 +a(g221343 +g221345 +S'woman)' +p221347 +tp221348 +a(g221345 +g221347 +S'and' +p221349 +tp221350 +a(g221347 +g221349 +S'his' +p221351 +tp221352 +a(g221349 +g221351 +S'stated' +p221353 +tp221354 +a(g221351 +g221353 +S'intention' +p221355 +tp221356 +a(g221353 +g221355 +S'that' +p221357 +tp221358 +a(g221355 +g221357 +S'the' +p221359 +tp221360 +a(g221357 +g221359 +S'grouping' +p221361 +tp221362 +a(g221359 +g221361 +S'of' +p221363 +tp221364 +a(g221361 +g221363 +S'work' +p221365 +tp221366 +a(g221363 +g221365 +S'would' +p221367 +tp221368 +a(g221365 +g221367 +S'be' +p221369 +tp221370 +a(g221367 +g221369 +S'his' +p221371 +tp221372 +a(g221369 +g221371 +S'final' +p221373 +tp221374 +a(g221371 +g221373 +S'artistic' +p221375 +tp221376 +a(g221373 +g221375 +S'statement.' +p221377 +tp221378 +a(g221375 +g221377 +S'experiencing' +p221379 +tp221380 +a(g221377 +g221379 +S'numerous' +p221381 +tp221382 +a(g221379 +g221381 +S'maladies,' +p221383 +tp221384 +a(g221381 +g221383 +S'financial' +p221385 +tp221386 +a(g221383 +g221385 +S'problems,' +p221387 +tp221388 +a(g221385 +g221387 +S'and' +p221389 +tp221390 +a(g221387 +g221389 +S'depression,' +p221391 +tp221392 +a(g221389 +g221391 +S'he' +p221393 +tp221394 +a(g221391 +g221393 +S'intended' +p221395 +tp221396 +a(g221393 +g221395 +S'to' +p221397 +tp221398 +a(g221395 +g221397 +S'commit' +p221399 +tp221400 +a(g221397 +g221399 +S'suicide' +p221401 +tp221402 +a(g221399 +g221401 +S'when' +p221403 +tp221404 +a(g221401 +g221403 +S'the' +p221405 +tp221406 +a(g221403 +g221405 +S'work' +p221407 +tp221408 +a(g221405 +g221407 +S'was' +p221409 +tp221410 +a(g221407 +g221409 +S'finished' +p221411 +tp221412 +a(g221409 +g221411 +S'(he' +p221413 +tp221414 +a(g221411 +g221413 +S'died' +p221415 +tp221416 +a(g221413 +g221415 +S'several' +p221417 +tp221418 +a(g221415 +g221417 +S'years' +p221419 +tp221420 +a(g221417 +g221419 +S'later' +p221421 +tp221422 +a(g221419 +g221421 +S'at' +p221423 +tp221424 +a(g221421 +g221423 +S'age' +p221425 +tp221426 +a(g221423 +g221425 +S'54' +p221427 +tp221428 +a(g221425 +g221427 +S'from' +p221429 +tp221430 +a(g221427 +g221429 +S'a' +p221431 +tp221432 +a(g221429 +g221431 +S'variety' +p221433 +tp221434 +a(g221431 +g221433 +S'of' +p221435 +tp221436 +a(g221433 +g221435 +S'diseases' +p221437 +tp221438 +a(g221435 +g221437 +S'he' +p221439 +tp221440 +a(g221437 +g221439 +S'had' +p221441 +tp221442 +a(g221439 +g221441 +S'contracted).' +p221443 +tp221444 +a(g221441 +g221443 +S'despite' +p221445 +tp221446 +a(g221443 +g221445 +S'these' +p221447 +tp221448 +a(g221445 +g221447 +S'seemingly' +p221449 +tp221450 +a(g221447 +g221449 +S'explicit' +p221451 +tp221452 +a(g221449 +g221451 +S'biographical' +p221453 +tp221454 +a(g221451 +g221453 +S'interpretations,' +p221455 +tp221456 +a(g221453 +g221455 +S'this' +p221457 +tp221458 +a(g221455 +g221457 +S'painting' +p221459 +tp221460 +a(g221457 +g221459 +S'and' +p221461 +tp221462 +a(g221459 +g221461 +S'related' +p221463 +tp221464 +a(g221461 +g221463 +S'canvases,' +p221465 +tp221466 +a(g221463 +g221465 +S'like' +p221467 +tp221468 +a(g221465 +g221467 +S'much' +p221469 +tp221470 +a(g221467 +g221469 +S'of' +p221471 +tp221472 +a(g221469 +g221471 +S"gauguin's" +p221473 +tp221474 +a(g221471 +g221473 +S'work,' +p221475 +tp221476 +a(g221473 +g221475 +S'retain' +p221477 +tp221478 +a(g221475 +g221477 +S'a' +p221479 +tp221480 +a(g221477 +g221479 +S'sense' +p221481 +tp221482 +a(g221479 +g221481 +S'of' +p221483 +tp221484 +a(g221481 +g221483 +S'mystery.' +p221485 +tp221486 +a(g221483 +g221485 +S'"known' +p221487 +tp221488 +a(g221485 +g221487 +S'symbols' +p221489 +tp221490 +a(g221487 +g221489 +S'would' +p221491 +tp221492 +a(g221489 +g221491 +S'congeal' +p221493 +tp221494 +a(g221491 +g221493 +S'the' +p221495 +tp221496 +a(g221493 +g221495 +S'canvas' +p221497 +tp221498 +a(g221495 +g221497 +S'into' +p221499 +tp221500 +a(g221497 +g221499 +S'a' +p221501 +tp221502 +a(g221499 +g221501 +S'melancholy' +p221503 +tp221504 +a(g221501 +g221503 +S'reality,"' +p221505 +tp221506 +a(g221503 +g221505 +S'he' +p221507 +tp221508 +a(g221505 +g221507 +S'wrote,' +p221509 +tp221510 +a(g221507 +g221509 +S'"and' +p221511 +tp221512 +a(g221509 +g221511 +S'the' +p221513 +tp221514 +a(g221511 +g221513 +S'problem' +p221515 +tp221516 +a(g221513 +g221515 +S'indicated' +p221517 +tp221518 +a(g221515 +g221517 +S'would' +p221519 +tp221520 +a(g221517 +g221519 +S'no' +p221521 +tp221522 +a(g221519 +g221521 +S'longer' +p221523 +tp221524 +a(g221521 +g221523 +S'be' +p221525 +tp221526 +a(g221523 +g221525 +S'a' +p221527 +tp221528 +a(g221525 +g221527 +S'poem."' +p221529 +tp221530 +a(g221527 +g221529 +S'this' +p221531 +tp221532 +a(g221529 +g221531 +S'is' +p221533 +tp221534 +a(g221531 +g221533 +S'one' +p221535 +tp221536 +a(g221533 +g221535 +S'of' +p221537 +tp221538 +a(g221535 +g221537 +S"escher's" +p221539 +tp221540 +a(g221537 +g221539 +S'earliest' +p221541 +tp221542 +a(g221539 +g221541 +S'prints' +p221543 +tp221544 +a(g221541 +g221543 +S'of' +p221545 +tp221546 +a(g221543 +g221545 +S'an' +p221547 +tp221548 +a(g221545 +g221547 +S'impossible' +p221549 +tp221550 +a(g221547 +g221549 +S'construction.' +p221551 +tp221552 +a(g221549 +g221551 +S'escher' +p221553 +tp221554 +a(g221551 +g221553 +S'has' +p221555 +tp221556 +a(g221553 +g221555 +S'joined' +p221557 +tp221558 +a(g221555 +g221557 +S'in' +p221559 +tp221560 +a(g221557 +g221559 +S'a' +p221561 +tp221562 +a(g221559 +g221561 +S'single' +p221563 +tp221564 +a(g221561 +g221563 +S'perspective' +p221565 +tp221566 +a(g221563 +g221565 +S'a' +p221567 +tp221568 +a(g221565 +g221567 +S'table' +p221569 +tp221570 +a(g221567 +g221569 +S'covered' +p221571 +tp221572 +a(g221569 +g221571 +S'with' +p221573 +tp221574 +a(g221571 +g221573 +S'books' +p221575 +tp221576 +a(g221573 +g221575 +S'and' +p221577 +tp221578 +a(g221575 +g221577 +S'objects' +p221579 +tp221580 +a(g221577 +g221579 +S'and' +p221581 +tp221582 +a(g221579 +g221581 +S'a' +p221583 +tp221584 +a(g221581 +g221583 +S'view' +p221585 +tp221586 +a(g221583 +g221585 +S'of' +p221587 +tp221588 +a(g221585 +g221587 +S'the' +p221589 +tp221590 +a(g221587 +g221589 +S'street' +p221591 +tp221592 +a(g221589 +g221591 +S'below.' +p221593 +tp221594 +a(g221591 +g221593 +S'here,' +p221595 +tp221596 +a(g221593 +g221595 +S'the' +p221597 +tp221598 +a(g221595 +g221597 +S"artist's" +p221599 +tp221600 +a(g221597 +g221599 +S'first' +p221601 +tp221602 +a(g221599 +g221601 +S'metamorphosis' +p221603 +tp221604 +a(g221601 +g221603 +S'connects' +p221605 +tp221606 +a(g221603 +g221605 +S'a' +p221607 +tp221608 +a(g221605 +g221607 +S'tower' +p221609 +tp221610 +a(g221607 +g221609 +S'on' +p221611 +tp221612 +a(g221609 +g221611 +S'the' +p221613 +tp221614 +a(g221611 +g221613 +S'amalfi' +p221615 +tp221616 +a(g221613 +g221615 +S'coast' +p221617 +tp221618 +a(g221615 +g221617 +S'with' +p221619 +tp221620 +a(g221617 +g221619 +S'a' +p221621 +tp221622 +a(g221619 +g221621 +S'chinese' +p221623 +tp221624 +a(g221621 +g221623 +S'doll.' +p221625 +tp221626 +a(g221623 +g221625 +S"escher's" +p221627 +tp221628 +a(g221625 +g221627 +S'largest' +p221629 +tp221630 +a(g221627 +g221629 +S'print' +p221631 +tp221632 +a(g221629 +g221631 +S'on' +p221633 +tp221634 +a(g221631 +g221633 +S'this' +p221635 +tp221636 +a(g221633 +g221635 +S'theme,' +p221637 +tp221638 +a(g221635 +g221637 +S'this' +p221639 +tp221640 +a(g221637 +g221639 +S'is' +p221641 +tp221642 +a(g221639 +g221641 +S'one' +p221643 +tp221644 +a(g221641 +g221643 +S'of' +p221645 +tp221646 +a(g221643 +g221645 +S"escher's" +p221647 +tp221648 +a(g221645 +g221647 +S'earliest' +p221649 +tp221650 +a(g221647 +g221649 +S'prints' +p221651 +tp221652 +a(g221649 +g221651 +S'to' +p221653 +tp221654 +a(g221651 +g221653 +S'demonstrate' +p221655 +tp221656 +a(g221653 +g221655 +S'his' +p221657 +tp221658 +a(g221655 +g221657 +S'theory' +p221659 +tp221660 +a(g221657 +g221659 +S'of' +p221661 +tp221662 +a(g221659 +g221661 +S'the' +p221663 +tp221664 +a(g221661 +g221663 +S'"regular' +p221665 +tp221666 +a(g221663 +g221665 +S'division' +p221667 +tp221668 +a(g221665 +g221667 +S'of' +p221669 +tp221670 +a(g221667 +g221669 +S'the' +p221671 +tp221672 +a(g221669 +g221671 +S'plane,"' +p221673 +tp221674 +a(g221671 +g221673 +S'which' +p221675 +tp221676 +a(g221673 +g221675 +S'he' +p221677 +tp221678 +a(g221675 +g221677 +S'described' +p221679 +tp221680 +a(g221677 +g221679 +S'as' +p221681 +tp221682 +a(g221679 +g221681 +S'follows:' +p221683 +tp221684 +a(g221681 +g221683 +S'"a' +p221685 +tp221686 +a(g221683 +g221685 +S'plane,' +p221687 +tp221688 +a(g221685 +g221687 +S'which' +p221689 +tp221690 +a(g221687 +g221689 +S'should' +p221691 +tp221692 +a(g221689 +g221691 +S'be' +p221693 +tp221694 +a(g221691 +g221693 +S'considered' +p221695 +tp221696 +a(g221693 +g221695 +S'limitless' +p221697 +tp221698 +a(g221695 +g221697 +S'on' +p221699 +tp221700 +a(g221697 +g221699 +S'all' +p221701 +tp221702 +a(g221699 +g221701 +S'sides,' +p221703 +tp221704 +a(g221701 +g221703 +S'can' +p221705 +tp221706 +a(g221703 +g221705 +S'be' +p221707 +tp221708 +a(g221705 +g221707 +S'filled' +p221709 +tp221710 +a(g221707 +g221709 +S'with' +p221711 +tp221712 +a(g221709 +g221711 +S'or' +p221713 +tp221714 +a(g221711 +g221713 +S'divided' +p221715 +tp221716 +a(g221713 +g221715 +S'into' +p221717 +tp221718 +a(g221715 +g221717 +S'similar' +p221719 +tp221720 +a(g221717 +g221719 +S'geometric' +p221721 +tp221722 +a(g221719 +g221721 +S'figures' +p221723 +tp221724 +a(g221721 +g221723 +S'that' +p221725 +tp221726 +a(g221723 +g221725 +S'border' +p221727 +tp221728 +a(g221725 +g221727 +S'each' +p221729 +tp221730 +a(g221727 +g221729 +S'other' +p221731 +tp221732 +a(g221729 +g221731 +S'on' +p221733 +tp221734 +a(g221731 +g221733 +S'all' +p221735 +tp221736 +a(g221733 +g221735 +S'sides' +p221737 +tp221738 +a(g221735 +g221737 +S'without' +p221739 +tp221740 +a(g221737 +g221739 +S'leaving' +p221741 +tp221742 +a(g221739 +g221741 +S'any' +p221743 +tp221744 +a(g221741 +g221743 +S'empty' +p221745 +tp221746 +a(g221743 +g221745 +S'spaces.' +p221747 +tp221748 +a(g221745 +g221747 +S'this' +p221749 +tp221750 +a(g221747 +g221749 +S'can' +p221751 +tp221752 +a(g221749 +g221751 +S'be' +p221753 +tp221754 +a(g221751 +g221753 +S'carried' +p221755 +tp221756 +a(g221753 +g221755 +S'on' +p221757 +tp221758 +a(g221755 +g221757 +S'to' +p221759 +tp221760 +a(g221757 +g221759 +S'infinity' +p221761 +tp221762 +a(g221759 +g221761 +S'according' +p221763 +tp221764 +a(g221761 +g221763 +S'to' +p221765 +tp221766 +a(g221763 +g221765 +S'a' +p221767 +tp221768 +a(g221765 +g221767 +S'limited' +p221769 +tp221770 +a(g221767 +g221769 +S'number' +p221771 +tp221772 +a(g221769 +g221771 +S'of' +p221773 +tp221774 +a(g221771 +g221773 +S'systems."' +p221775 +tp221776 +a(g221773 +g221775 +S'this' +p221777 +tp221778 +a(g221775 +g221777 +S'print' +p221779 +tp221780 +a(g221777 +g221779 +S'is' +p221781 +tp221782 +a(g221779 +g221781 +S'one' +p221783 +tp221784 +a(g221781 +g221783 +S'of' +p221785 +tp221786 +a(g221783 +g221785 +S"escher's" +p221787 +tp221788 +a(g221785 +g221787 +S'first' +p221789 +tp221790 +a(g221787 +g221789 +S'to' +p221791 +tp221792 +a(g221789 +g221791 +S'show' +p221793 +tp221794 +a(g221791 +g221793 +S'the' +p221795 +tp221796 +a(g221793 +g221795 +S'influence' +p221797 +tp221798 +a(g221795 +g221797 +S'of' +p221799 +tp221800 +a(g221797 +g221799 +S'moorish' +p221801 +tp221802 +a(g221799 +g221801 +S'tile' +p221803 +tp221804 +a(g221801 +g221803 +S'work,' +p221805 +tp221806 +a(g221803 +g221805 +S'with' +p221807 +tp221808 +a(g221805 +g221807 +S'its' +p221809 +tp221810 +a(g221807 +g221809 +S'abstract,' +p221811 +tp221812 +a(g221809 +g221811 +S'positive-negative' +p221813 +tp221814 +a(g221811 +g221813 +S'geometric' +p221815 +tp221816 +a(g221813 +g221815 +S'shapes.' +p221817 +tp221818 +a(g221815 +g221817 +S'with' +p221819 +tp221820 +a(g221817 +g221819 +S'day' +p221821 +tp221822 +a(g221819 +g221821 +S'and' +p221823 +tp221824 +a(g221821 +g221823 +S'night' +p221825 +tp221826 +a(g221823 +g221825 +S'landscapes' +p221827 +tp221828 +a(g221825 +g221827 +S'as' +p221829 +tp221830 +a(g221827 +g221829 +S'mirror' +p221831 +tp221832 +a(g221829 +g221831 +S'images,' +p221833 +tp221834 +a(g221831 +g221833 +S'the' +p221835 +tp221836 +a(g221833 +g221835 +S'white' +p221837 +tp221838 +a(g221835 +g221837 +S'birds' +p221839 +tp221840 +a(g221837 +g221839 +S'merge' +p221841 +tp221842 +a(g221839 +g221841 +S'with' +p221843 +tp221844 +a(g221841 +g221843 +S'a' +p221845 +tp221846 +a(g221843 +g221845 +S'daylight' +p221847 +tp221848 +a(g221845 +g221847 +S'sky' +p221849 +tp221850 +a(g221847 +g221849 +S'at' +p221851 +tp221852 +a(g221849 +g221851 +S'left,' +p221853 +tp221854 +a(g221851 +g221853 +S'while' +p221855 +tp221856 +a(g221853 +g221855 +S'at' +p221857 +tp221858 +a(g221855 +g221857 +S'right' +p221859 +tp221860 +a(g221857 +g221859 +S'the' +p221861 +tp221862 +a(g221859 +g221861 +S'black' +p221863 +tp221864 +a(g221861 +g221863 +S'birds' +p221865 +tp221866 +a(g221863 +g221865 +S'blend' +p221867 +tp221868 +a(g221865 +g221867 +S'to' +p221869 +tp221870 +a(g221867 +g221869 +S'create' +p221871 +tp221872 +a(g221869 +g221871 +S'a' +p221873 +tp221874 +a(g221871 +g221873 +S'night' +p221875 +tp221876 +a(g221873 +g221875 +S'sky.' +p221877 +tp221878 +a(g221875 +g221877 +S'escher' +p221879 +tp221880 +a(g221877 +g221879 +S'wrote' +p221881 +tp221882 +a(g221879 +g221881 +S'that' +p221883 +tp221884 +a(g221881 +g221883 +S'this' +p221885 +tp221886 +a(g221883 +g221885 +S'print' +p221887 +tp221888 +a(g221885 +g221887 +S'"gives' +p221889 +tp221890 +a(g221887 +g221889 +S'the' +p221891 +tp221892 +a(g221889 +g221891 +S'illusion' +p221893 +tp221894 +a(g221891 +g221893 +S'of' +p221895 +tp221896 +a(g221893 +g221895 +S'a' +p221897 +tp221898 +a(g221895 +g221897 +S'town,' +p221899 +tp221900 +a(g221897 +g221899 +S'of' +p221901 +tp221902 +a(g221899 +g221901 +S'house' +p221903 +tp221904 +a(g221901 +g221903 +S'blocks' +p221905 +tp221906 +a(g221903 +g221905 +S'with' +p221907 +tp221908 +a(g221905 +g221907 +S'the' +p221909 +tp221910 +a(g221907 +g221909 +S'sun' +p221911 +tp221912 +a(g221909 +g221911 +S'shining' +p221913 +tp221914 +a(g221911 +g221913 +S'on' +p221915 +tp221916 +a(g221913 +g221915 +S'them.' +p221917 +tp221918 +a(g221915 +g221917 +S'but' +p221919 +tp221920 +a(g221917 +g221919 +S'again' +p221921 +tp221922 +a(g221919 +g221921 +S"it's" +p221923 +tp221924 +a(g221921 +g221923 +S'a' +p221925 +tp221926 +a(g221923 +g221925 +S'fiction,' +p221927 +tp221928 +a(g221925 +g221927 +S'for' +p221929 +tp221930 +a(g221927 +g221929 +S'my' +p221931 +tp221932 +a(g221929 +g221931 +S'paper' +p221933 +tp221934 +a(g221931 +g221933 +S'remains' +p221935 +tp221936 +a(g221933 +g221935 +S'flat.' +p221937 +tp221938 +a(g221935 +g221937 +S'in' +p221939 +tp221940 +a(g221937 +g221939 +S'a' +p221941 +tp221942 +a(g221939 +g221941 +S'spirit' +p221943 +tp221944 +a(g221941 +g221943 +S'of' +p221945 +tp221946 +a(g221943 +g221945 +S'deriding' +p221947 +tp221948 +a(g221945 +g221947 +S'my' +p221949 +tp221950 +a(g221947 +g221949 +S'vain' +p221951 +tp221952 +a(g221949 +g221951 +S'efforts' +p221953 +tp221954 +a(g221951 +g221953 +S'and' +p221955 +tp221956 +a(g221953 +g221955 +S'trying' +p221957 +tp221958 +a(g221955 +g221957 +S'to' +p221959 +tp221960 +a(g221957 +g221959 +S'break' +p221961 +tp221962 +a(g221959 +g221961 +S'up' +p221963 +tp221964 +a(g221961 +g221963 +S'the' +p221965 +tp221966 +a(g221963 +g221965 +S"paper's" +p221967 +tp221968 +a(g221965 +g221967 +S'flatness,' +p221969 +tp221970 +a(g221967 +g221969 +S'i' +p221971 +tp221972 +a(g221969 +g221971 +S'pretend' +p221973 +tp221974 +a(g221971 +g221973 +S'to' +p221975 +tp221976 +a(g221973 +g221975 +S'give' +p221977 +tp221978 +a(g221975 +g221977 +S'it' +p221979 +tp221980 +a(g221977 +g221979 +S'a' +p221981 +tp221982 +a(g221979 +g221981 +S'blow' +p221983 +tp221984 +a(g221981 +g221983 +S'with' +p221985 +tp221986 +a(g221983 +g221985 +S'my' +p221987 +tp221988 +a(g221985 +g221987 +S'fist' +p221989 +tp221990 +a(g221987 +g221989 +S'at' +p221991 +tp221992 +a(g221989 +g221991 +S'the' +p221993 +tp221994 +a(g221991 +g221993 +S'back,' +p221995 +tp221996 +a(g221993 +g221995 +S'but' +p221997 +tp221998 +a(g221995 +g221997 +S'once' +p221999 +tp222000 +a(g221997 +g221999 +S'again' +p222001 +tp222002 +a(g221999 +g222001 +S"it's" +p222003 +tp222004 +a(g222001 +g222003 +S'no' +p222005 +tp222006 +a(g222003 +g222005 +S'good:' +p222007 +tp222008 +a(g222005 +g222007 +S'the' +p222009 +tp222010 +a(g222007 +g222009 +S'paper' +p222011 +tp222012 +a(g222009 +g222011 +S'remains' +p222013 +tp222014 +a(g222011 +g222013 +S'flat,' +p222015 +tp222016 +a(g222013 +g222015 +S'and' +p222017 +tp222018 +a(g222015 +g222017 +S'i' +p222019 +tp222020 +a(g222017 +g222019 +S'have' +p222021 +tp222022 +a(g222019 +g222021 +S'only' +p222023 +tp222024 +a(g222021 +g222023 +S'created' +p222025 +tp222026 +a(g222023 +g222025 +S'the' +p222027 +tp222028 +a(g222025 +g222027 +S'illusion' +p222029 +tp222030 +a(g222027 +g222029 +S'of' +p222031 +tp222032 +a(g222029 +g222031 +S'an' +p222033 +tp222034 +a(g222031 +g222033 +S'illusion.' +p222035 +tp222036 +a(g222033 +g222035 +S'however,' +p222037 +tp222038 +a(g222035 +g222037 +S'the' +p222039 +tp222040 +a(g222037 +g222039 +S'consequence' +p222041 +tp222042 +a(g222039 +g222041 +S'of' +p222043 +tp222044 +a(g222041 +g222043 +S'my' +p222045 +tp222046 +a(g222043 +g222045 +S'blow' +p222047 +tp222048 +a(g222045 +g222047 +S'is' +p222049 +tp222050 +a(g222047 +g222049 +S'that' +p222051 +tp222052 +a(g222049 +g222051 +S'the' +p222053 +tp222054 +a(g222051 +g222053 +S'balcony' +p222055 +tp222056 +a(g222053 +g222055 +S'in' +p222057 +tp222058 +a(g222055 +g222057 +S'the' +p222059 +tp222060 +a(g222057 +g222059 +S'middle' +p222061 +tp222062 +a(g222059 +g222061 +S'is' +p222063 +tp222064 +a(g222061 +g222063 +S'about' +p222065 +tp222066 +a(g222063 +g222065 +S'four' +p222067 +tp222068 +a(g222065 +g222067 +S'times' +p222069 +tp222070 +a(g222067 +g222069 +S'enlarged' +p222071 +tp222072 +a(g222069 +g222071 +S'in' +p222073 +tp222074 +a(g222071 +g222073 +S'comparison' +p222075 +tp222076 +a(g222073 +g222075 +S'with' +p222077 +tp222078 +a(g222075 +g222077 +S'the' +p222079 +tp222080 +a(g222077 +g222079 +S'bordering' +p222081 +tp222082 +a(g222079 +g222081 +S'objects."' +p222083 +tp222084 +a(g222081 +g222083 +S'escher' +p222085 +tp222086 +a(g222083 +g222085 +S'was' +p222087 +tp222088 +a(g222085 +g222087 +S'particularly' +p222089 +tp222090 +a(g222087 +g222089 +S'intrigued' +p222091 +tp222092 +a(g222089 +g222091 +S'by' +p222093 +tp222094 +a(g222091 +g222093 +S'reflections' +p222095 +tp222096 +a(g222093 +g222095 +S'and' +p222097 +tp222098 +a(g222095 +g222097 +S'by' +p222099 +tp222100 +a(g222097 +g222099 +S'the' +p222101 +tp222102 +a(g222099 +g222101 +S'concept' +p222103 +tp222104 +a(g222101 +g222103 +S'of' +p222105 +tp222106 +a(g222103 +g222105 +S'a' +p222107 +tp222108 +a(g222105 +g222107 +S'sphere' +p222109 +tp222110 +a(g222107 +g222109 +S'acting' +p222111 +tp222112 +a(g222109 +g222111 +S'as' +p222113 +tp222114 +a(g222111 +g222113 +S'a' +p222115 +tp222116 +a(g222113 +g222115 +S'mirror.' +p222117 +tp222118 +a(g222115 +g222117 +S'here,' +p222119 +tp222120 +a(g222117 +g222119 +S'the' +p222121 +tp222122 +a(g222119 +g222121 +S'central' +p222123 +tp222124 +a(g222121 +g222123 +S'sphere' +p222125 +tp222126 +a(g222123 +g222125 +S'that' +p222127 +tp222128 +a(g222125 +g222127 +S'reflects' +p222129 +tp222130 +a(g222127 +g222129 +S'escher' +p222131 +tp222132 +a(g222129 +g222131 +S'at' +p222133 +tp222134 +a(g222131 +g222133 +S'work' +p222135 +tp222136 +a(g222133 +g222135 +S'is' +p222137 +tp222138 +a(g222135 +g222137 +S'flanked' +p222139 +tp222140 +a(g222137 +g222139 +S'by' +p222141 +tp222142 +a(g222139 +g222141 +S'one,' +p222143 +tp222144 +a(g222141 +g222143 +S'at' +p222145 +tp222146 +a(g222143 +g222145 +S'left,' +p222147 +tp222148 +a(g222145 +g222147 +S'filled' +p222149 +tp222150 +a(g222147 +g222149 +S'with' +p222151 +tp222152 +a(g222149 +g222151 +S'water,' +p222153 +tp222154 +a(g222151 +g222153 +S'and' +p222155 +tp222156 +a(g222153 +g222155 +S'at' +p222157 +tp222158 +a(g222155 +g222157 +S'right,' +p222159 +tp222160 +a(g222157 +g222159 +S'by' +p222161 +tp222162 +a(g222159 +g222161 +S'another' +p222163 +tp222164 +a(g222161 +g222163 +S'opaque' +p222165 +tp222166 +a(g222163 +g222165 +S'sphere.' +p222167 +tp222168 +a(g222165 +g222167 +S'all' +p222169 +tp222170 +a(g222167 +g222169 +S'three' +p222171 +tp222172 +a(g222169 +g222171 +S'spheres' +p222173 +tp222174 +a(g222171 +g222173 +S'are' +p222175 +tp222176 +a(g222173 +g222175 +S'reflected' +p222177 +tp222178 +a(g222175 +g222177 +S'in' +p222179 +tp222180 +a(g222177 +g222179 +S'the' +p222181 +tp222182 +a(g222179 +g222181 +S'polished' +p222183 +tp222184 +a(g222181 +g222183 +S'surface' +p222185 +tp222186 +a(g222183 +g222185 +S'on' +p222187 +tp222188 +a(g222185 +g222187 +S'which' +p222189 +tp222190 +a(g222187 +g222189 +S'they' +p222191 +tp222192 +a(g222189 +g222191 +S'rest.' +p222193 +tp222194 +a(g222191 +g222193 +S'the' +p222195 +tp222196 +a(g222193 +g222195 +S'spheres' +p222197 +tp222198 +a(g222195 +g222197 +S'at' +p222199 +tp222200 +a(g222197 +g222199 +S'right' +p222201 +tp222202 +a(g222199 +g222201 +S'and' +p222203 +tp222204 +a(g222201 +g222203 +S'left' +p222205 +tp222206 +a(g222203 +g222205 +S'are' +p222207 +tp222208 +a(g222205 +g222207 +S'reflected' +p222209 +tp222210 +a(g222207 +g222209 +S'in' +p222211 +tp222212 +a(g222209 +g222211 +S'the' +p222213 +tp222214 +a(g222211 +g222213 +S'center' +p222215 +tp222216 +a(g222213 +g222215 +S'sphere.' +p222217 +tp222218 +a(g222215 +g222217 +S'finally,' +p222219 +tp222220 +a(g222217 +g222219 +S'the' +p222221 +tp222222 +a(g222219 +g222221 +S'entire' +p222223 +tp222224 +a(g222221 +g222223 +S'composition' +p222225 +tp222226 +a(g222223 +g222225 +S'is' +p222227 +tp222228 +a(g222225 +g222227 +S'seen' +p222229 +tp222230 +a(g222227 +g222229 +S'as' +p222231 +tp222232 +a(g222229 +g222231 +S'the' +p222233 +tp222234 +a(g222231 +g222233 +S'drawing' +p222235 +tp222236 +a(g222233 +g222235 +S'on' +p222237 +tp222238 +a(g222235 +g222237 +S'the' +p222239 +tp222240 +a(g222237 +g222239 +S'paper' +p222241 +tp222242 +a(g222239 +g222241 +S'reflected' +p222243 +tp222244 +a(g222241 +g222243 +S'in' +p222245 +tp222246 +a(g222243 +g222245 +S'the' +p222247 +tp222248 +a(g222245 +g222247 +S'central' +p222249 +tp222250 +a(g222247 +g222249 +S'sphere.' +p222251 +tp222252 +a(g222249 +g222251 +S'this' +p222253 +tp222254 +a(g222251 +g222253 +S'print' +p222255 +tp222256 +a(g222253 +g222255 +S'is' +p222257 +tp222258 +a(g222255 +g222257 +S'a' +p222259 +tp222260 +a(g222257 +g222259 +S'variation' +p222261 +tp222262 +a(g222259 +g222261 +S'on' +p222263 +tp222264 +a(g222261 +g222263 +S'escher' +p222265 +tp222266 +a(g222263 +g222265 +S'constructed' +p222267 +tp222268 +a(g222265 +g222267 +S'a' +p222269 +tp222270 +a(g222267 +g222269 +S'five-sided' +p222271 +tp222272 +a(g222269 +g222271 +S'chamber' +p222273 +tp222274 +a(g222271 +g222273 +S'in' +p222275 +tp222276 +a(g222273 +g222275 +S'which' +p222277 +tp222278 +a(g222275 +g222277 +S'all' +p222279 +tp222280 +a(g222277 +g222279 +S'sides' +p222281 +tp222282 +a(g222279 +g222281 +S'are' +p222283 +tp222284 +a(g222281 +g222283 +S'interchangeable.' +p222285 +tp222286 +a(g222283 +g222285 +S'this' +p222287 +tp222288 +a(g222285 +g222287 +S'is' +p222289 +tp222290 +a(g222287 +g222289 +S'his' +p222291 +tp222292 +a(g222289 +g222291 +S'first' +p222293 +tp222294 +a(g222291 +g222293 +S'print' +p222295 +tp222296 +a(g222293 +g222295 +S'to' +p222297 +tp222298 +a(g222295 +g222297 +S'focus' +p222299 +tp222300 +a(g222297 +g222299 +S'primarily' +p222301 +tp222302 +a(g222299 +g222301 +S'on' +p222303 +tp222304 +a(g222301 +g222303 +S'his' +p222305 +tp222306 +a(g222303 +g222305 +S'idea' +p222307 +tp222308 +a(g222305 +g222307 +S'of' +p222309 +tp222310 +a(g222307 +g222309 +S'relativity,' +p222311 +tp222312 +a(g222309 +g222311 +S'how' +p222313 +tp222314 +a(g222311 +g222313 +S'one' +p222315 +tp222316 +a(g222313 +g222315 +S'object' +p222317 +tp222318 +a(g222315 +g222317 +S'is' +p222319 +tp222320 +a(g222317 +g222319 +S'seen' +p222321 +tp222322 +a(g222319 +g222321 +S'in' +p222323 +tp222324 +a(g222321 +g222323 +S'relation' +p222325 +tp222326 +a(g222323 +g222325 +S'to' +p222327 +tp222328 +a(g222325 +g222327 +S'another.' +p222329 +tp222330 +a(g222327 +g222329 +S'the' +p222331 +tp222332 +a(g222329 +g222331 +S'islamic' +p222333 +tp222334 +a(g222331 +g222333 +S'figurine' +p222335 +tp222336 +a(g222333 +g222335 +S'of' +p222337 +tp222338 +a(g222335 +g222337 +S'a' +p222339 +tp222340 +a(g222337 +g222339 +S'harpy,' +p222341 +tp222342 +a(g222339 +g222341 +S'a' +p222343 +tp222344 +a(g222341 +g222343 +S'mythical' +p222345 +tp222346 +a(g222343 +g222345 +S'creature' +p222347 +tp222348 +a(g222345 +g222347 +S'with' +p222349 +tp222350 +a(g222347 +g222349 +S'a' +p222351 +tp222352 +a(g222349 +g222351 +S"bird's" +p222353 +tp222354 +a(g222351 +g222353 +S'body' +p222355 +tp222356 +a(g222353 +g222355 +S'and' +p222357 +tp222358 +a(g222355 +g222357 +S'a' +p222359 +tp222360 +a(g222357 +g222359 +S'human' +p222361 +tp222362 +a(g222359 +g222361 +S'head,' +p222363 +tp222364 +a(g222361 +g222363 +S'was' +p222365 +tp222366 +a(g222363 +g222365 +S'a' +p222367 +tp222368 +a(g222365 +g222367 +S'gift' +p222369 +tp222370 +a(g222367 +g222369 +S'from' +p222371 +tp222372 +a(g222369 +g222371 +S"escher's" +p222373 +tp222374 +a(g222371 +g222373 +S'father-in-law' +p222375 +tp222376 +a(g222373 +g222375 +S'and' +p222377 +tp222378 +a(g222375 +g222377 +S'appears' +p222379 +tp222380 +a(g222377 +g222379 +S'in' +p222381 +tp222382 +a(g222379 +g222381 +S'several' +p222383 +tp222384 +a(g222381 +g222383 +S'of' +p222385 +tp222386 +a(g222383 +g222385 +S'his' +p222387 +tp222388 +a(g222385 +g222387 +S'prints.' +p222389 +tp222390 +a(g222387 +g222389 +S'the' +p222391 +tp222392 +a(g222389 +g222391 +S'difference' +p222393 +tp222394 +a(g222391 +g222393 +S'between' +p222395 +tp222396 +a(g222393 +g222395 +S'a' +p222397 +tp222398 +a(g222395 +g222397 +S'wood' +p222399 +tp222400 +a(g222397 +g222399 +S'engraving,' +p222401 +tp222402 +a(g222399 +g222401 +S'shown' +p222403 +tp222404 +a(g222401 +g222403 +S'here,' +p222405 +tp222406 +a(g222403 +g222405 +S'and' +p222407 +tp222408 +a(g222405 +g222407 +S'a' +p222409 +tp222410 +a(g222407 +g222409 +S'woodcut' +p222411 +tp222412 +a(g222409 +g222411 +S'is' +p222413 +tp222414 +a(g222411 +g222413 +S'that' +p222415 +tp222416 +a(g222413 +g222415 +S'the' +p222417 +tp222418 +a(g222415 +g222417 +S'wood' +p222419 +tp222420 +a(g222417 +g222419 +S'used' +p222421 +tp222422 +a(g222419 +g222421 +S'in' +p222423 +tp222424 +a(g222421 +g222423 +S'a' +p222425 +tp222426 +a(g222423 +g222425 +S'wood' +p222427 +tp222428 +a(g222425 +g222427 +S'engraving' +p222429 +tp222430 +a(g222427 +g222429 +S'is' +p222431 +tp222432 +a(g222429 +g222431 +S'cut' +p222433 +tp222434 +a(g222431 +g222433 +S'across' +p222435 +tp222436 +a(g222433 +g222435 +S'the' +p222437 +tp222438 +a(g222435 +g222437 +S'grain' +p222439 +tp222440 +a(g222437 +g222439 +S'and' +p222441 +tp222442 +a(g222439 +g222441 +S'not' +p222443 +tp222444 +a(g222441 +g222443 +S'along' +p222445 +tp222446 +a(g222443 +g222445 +S'it.' +p222447 +tp222448 +a(g222445 +g222447 +S'in' +p222449 +tp222450 +a(g222447 +g222449 +S'this' +p222451 +tp222452 +a(g222449 +g222451 +S'way' +p222453 +tp222454 +a(g222451 +g222453 +S'the' +p222455 +tp222456 +a(g222453 +g222455 +S'wood' +p222457 +tp222458 +a(g222455 +g222457 +S'is' +p222459 +tp222460 +a(g222457 +g222459 +S'less' +p222461 +tp222462 +a(g222459 +g222461 +S'likely' +p222463 +tp222464 +a(g222461 +g222463 +S'to' +p222465 +tp222466 +a(g222463 +g222465 +S'splinter' +p222467 +tp222468 +a(g222465 +g222467 +S'and' +p222469 +tp222470 +a(g222467 +g222469 +S'can' +p222471 +tp222472 +a(g222469 +g222471 +S'be' +p222473 +tp222474 +a(g222471 +g222473 +S'worked' +p222475 +tp222476 +a(g222473 +g222475 +S'like' +p222477 +tp222478 +a(g222475 +g222477 +S'a' +p222479 +tp222480 +a(g222477 +g222479 +S'copper' +p222481 +tp222482 +a(g222479 +g222481 +S'plate' +p222483 +tp222484 +a(g222481 +g222483 +S'with' +p222485 +tp222486 +a(g222483 +g222485 +S'a' +p222487 +tp222488 +a(g222485 +g222487 +S'burin.' +p222489 +tp222490 +a(g222487 +g222489 +S'wood' +p222491 +tp222492 +a(g222489 +g222491 +S'engraving' +p222493 +tp222494 +a(g222491 +g222493 +S'allows' +p222495 +tp222496 +a(g222493 +g222495 +S'for' +p222497 +tp222498 +a(g222495 +g222497 +S'greater' +p222499 +tp222500 +a(g222497 +g222499 +S'detail' +p222501 +tp222502 +a(g222499 +g222501 +S'and' +p222503 +tp222504 +a(g222501 +g222503 +S'more' +p222505 +tp222506 +a(g222503 +g222505 +S'delicate' +p222507 +tp222508 +a(g222505 +g222507 +S'effects.' +p222509 +tp222510 +a(g222507 +g222509 +S'escher' +p222511 +tp222512 +a(g222509 +g222511 +S'frequently' +p222513 +tp222514 +a(g222511 +g222513 +S'employed' +p222515 +tp222516 +a(g222513 +g222515 +S'a' +p222517 +tp222518 +a(g222515 +g222517 +S'visual' +p222519 +tp222520 +a(g222517 +g222519 +S'game' +p222521 +tp222522 +a(g222519 +g222521 +S'in' +p222523 +tp222524 +a(g222521 +g222523 +S'which' +p222525 +tp222526 +a(g222523 +g222525 +S'he' +p222527 +tp222528 +a(g222525 +g222527 +S'transformed' +p222529 +tp222530 +a(g222527 +g222529 +S'a' +p222531 +tp222532 +a(g222529 +g222531 +S'flat' +p222533 +tp222534 +a(g222531 +g222533 +S'pattern' +p222535 +tp222536 +a(g222533 +g222535 +S'into' +p222537 +tp222538 +a(g222535 +g222537 +S'a' +p222539 +tp222540 +a(g222537 +g222539 +S'three-dimensional' +p222541 +tp222542 +a(g222539 +g222541 +S'object.' +p222543 +tp222544 +a(g222541 +g222543 +S'the' +p222545 +tp222546 +a(g222543 +g222545 +S'artist' +p222547 +tp222548 +a(g222545 +g222547 +S'used' +p222549 +tp222550 +a(g222547 +g222549 +S'his' +p222551 +tp222552 +a(g222549 +g222551 +S'own' +p222553 +tp222554 +a(g222551 +g222553 +S'right' +p222555 +tp222556 +a(g222553 +g222555 +S'hand' +p222557 +tp222558 +a(g222555 +g222557 +S'as' +p222559 +tp222560 +a(g222557 +g222559 +S'the' +p222561 +tp222562 +a(g222559 +g222561 +S'model' +p222563 +tp222564 +a(g222561 +g222563 +S'for' +p222565 +tp222566 +a(g222563 +g222565 +S'both' +p222567 +tp222568 +a(g222565 +g222567 +S'hands' +p222569 +tp222570 +a(g222567 +g222569 +S'depicted' +p222571 +tp222572 +a(g222569 +g222571 +S'in' +p222573 +tp222574 +a(g222571 +g222573 +S'the' +p222575 +tp222576 +a(g222573 +g222575 +S'print.' +p222577 +tp222578 +a(g222575 +g222577 +S'this' +p222579 +tp222580 +a(g222577 +g222579 +S'is' +p222581 +tp222582 +a(g222579 +g222581 +S'perhaps' +p222583 +tp222584 +a(g222581 +g222583 +S"escher's" +p222585 +tp222586 +a(g222583 +g222585 +S'best-known' +p222587 +tp222588 +a(g222585 +g222587 +S'print' +p222589 +tp222590 +a(g222587 +g222589 +S'on' +p222591 +tp222592 +a(g222589 +g222591 +S'the' +p222593 +tp222594 +a(g222591 +g222593 +S'theme' +p222595 +tp222596 +a(g222593 +g222595 +S'of' +p222597 +tp222598 +a(g222595 +g222597 +S'relativity.' +p222599 +tp222600 +a(g222597 +g222599 +S'it' +p222601 +tp222602 +a(g222599 +g222601 +S'also' +p222603 +tp222604 +a(g222601 +g222603 +S'is' +p222605 +tp222606 +a(g222603 +g222605 +S'a' +p222607 +tp222608 +a(g222605 +g222607 +S'fine' +p222609 +tp222610 +a(g222607 +g222609 +S'example' +p222611 +tp222612 +a(g222609 +g222611 +S'of' +p222613 +tp222614 +a(g222611 +g222613 +S"escher's" +p222615 +tp222616 +a(g222613 +g222615 +S'focus' +p222617 +tp222618 +a(g222615 +g222617 +S'on' +p222619 +tp222620 +a(g222617 +g222619 +S'unusual,' +p222621 +tp222622 +a(g222619 +g222621 +S'and' +p222623 +tp222624 +a(g222621 +g222623 +S'often' +p222625 +tp222626 +a(g222623 +g222625 +S'conflicting,' +p222627 +tp222628 +a(g222625 +g222627 +S'points' +p222629 +tp222630 +a(g222627 +g222629 +S'of' +p222631 +tp222632 +a(g222629 +g222631 +S'view.' +p222633 +tp222634 +a(g222631 +g222633 +S'seated' +p222635 +tp222636 +a(g222633 +g222635 +S'youth' +p222637 +tp222638 +a(g222635 +g222637 +S'we' +p222639 +tp222640 +a(g222637 +g222639 +S'see' +p222641 +tp222642 +a(g222639 +g222641 +S'a' +p222643 +tp222644 +a(g222641 +g222643 +S'nude' +p222645 +tp222646 +a(g222643 +g222645 +S'young' +p222647 +tp222648 +a(g222645 +g222647 +S'man' +p222649 +tp222650 +a(g222647 +g222649 +S'seated' +p222651 +tp222652 +a(g222649 +g222651 +S'alone' +p222653 +tp222654 +a(g222651 +g222653 +S'in' +p222655 +tp222656 +a(g222653 +g222655 +S'a' +p222657 +tp222658 +a(g222655 +g222657 +S'closed,' +p222659 +tp222660 +a(g222657 +g222659 +S'self-contained,' +p222661 +tp222662 +a(g222659 +g222661 +S'reflective,' +p222663 +tp222664 +a(g222661 +g222663 +S'and' +p222665 +tp222666 +a(g222663 +g222665 +S'melancholic' +p222667 +tp222668 +a(g222665 +g222667 +S'pose.' +p222669 +tp222670 +a(g222667 +g222669 +S'all' +p222671 +tp222672 +a(g222669 +g222671 +S'nonessential' +p222673 +tp222674 +a(g222671 +g222673 +S'elements' +p222675 +tp222676 +a(g222673 +g222675 +S'have' +p222677 +tp222678 +a(g222675 +g222677 +S'been' +p222679 +tp222680 +a(g222677 +g222679 +S'eliminated,' +p222681 +tp222682 +a(g222679 +g222681 +S'and' +p222683 +tp222684 +a(g222681 +g222683 +S'we' +p222685 +tp222686 +a(g222683 +g222685 +S'focus' +p222687 +tp222688 +a(g222685 +g222687 +S'our' +p222689 +tp222690 +a(g222687 +g222689 +S'attention' +p222691 +tp222692 +a(g222689 +g222691 +S'solely' +p222693 +tp222694 +a(g222691 +g222693 +S'on' +p222695 +tp222696 +a(g222693 +g222695 +S'the' +p222697 +tp222698 +a(g222695 +g222697 +S'expressive' +p222699 +tp222700 +a(g222697 +g222699 +S'arrangement' +p222701 +tp222702 +a(g222699 +g222701 +S'of' +p222703 +tp222704 +a(g222701 +g222703 +S'the' +p222705 +tp222706 +a(g222703 +g222705 +S'bowed' +p222707 +tp222708 +a(g222705 +g222707 +S'head,' +p222709 +tp222710 +a(g222707 +g222709 +S'the' +p222711 +tp222712 +a(g222709 +g222711 +S'intertwined' +p222713 +tp222714 +a(g222711 +g222713 +S'limbs,' +p222715 +tp222716 +a(g222713 +g222715 +S'and' +p222717 +tp222718 +a(g222715 +g222717 +S'the' +p222719 +tp222720 +a(g222717 +g222719 +S'pockets' +p222721 +tp222722 +a(g222719 +g222721 +S'of' +p222723 +tp222724 +a(g222721 +g222723 +S'negative' +p222725 +tp222726 +a(g222723 +g222725 +S'space' +p222727 +tp222728 +a(g222725 +g222727 +S'that' +p222729 +tp222730 +a(g222727 +g222729 +S'unite' +p222731 +tp222732 +a(g222729 +g222731 +S'the' +p222733 +tp222734 +a(g222731 +g222733 +S'form.' +p222735 +tp222736 +a(g222733 +g222735 +S'this' +p222737 +tp222738 +a(g222735 +g222737 +S'last' +p222739 +tp222740 +a(g222737 +g222739 +S'aspect' +p222741 +tp222742 +a(g222739 +g222741 +S'of' +p222743 +tp222744 +a(g222741 +g222743 +S'the' +p222745 +tp222746 +a(g222743 +g222745 +S'figure,' +p222747 +tp222748 +a(g222745 +g222747 +S'its' +p222749 +tp222750 +a(g222747 +g222749 +S'use' +p222751 +tp222752 +a(g222749 +g222751 +S'of' +p222753 +tp222754 +a(g222751 +g222753 +S'space,' +p222755 +tp222756 +a(g222753 +g222755 +S'is' +p222757 +tp222758 +a(g222755 +g222757 +S'especially' +p222759 +tp222760 +a(g222757 +g222759 +S'powerful' +p222761 +tp222762 +a(g222759 +g222761 +S'and' +p222763 +tp222764 +a(g222761 +g222763 +S'reflects' +p222765 +tp222766 +a(g222763 +g222765 +S"lehmbruck's" +p222767 +tp222768 +a(g222765 +g222767 +S'awareness' +p222769 +tp222770 +a(g222767 +g222769 +S'of' +p222771 +tp222772 +a(g222769 +g222771 +S'contemporary' +p222773 +tp222774 +a(g222771 +g222773 +S'parisian' +p222775 +tp222776 +a(g222773 +g222775 +S'trends' +p222777 +tp222778 +a(g222775 +g222777 +S'in' +p222779 +tp222780 +a(g222777 +g222779 +S'sculpture.' +p222781 +tp222782 +a(g222779 +g222781 +S'anatomy' +p222783 +tp222784 +a(g222781 +g222783 +S'is' +p222785 +tp222786 +a(g222783 +g222785 +S'reduced,' +p222787 +tp222788 +a(g222785 +g222787 +S'elongated,' +p222789 +tp222790 +a(g222787 +g222789 +S'and' +p222791 +tp222792 +a(g222789 +g222791 +S'abstracted.' +p222793 +tp222794 +a(g222791 +g222793 +S'the' +p222795 +tp222796 +a(g222793 +g222795 +S'formal' +p222797 +tp222798 +a(g222795 +g222797 +S'language' +p222799 +tp222800 +a(g222797 +g222799 +S'both' +p222801 +tp222802 +a(g222799 +g222801 +S'underlies' +p222803 +tp222804 +a(g222801 +g222803 +S'and' +p222805 +tp222806 +a(g222803 +g222805 +S'reinforces' +p222807 +tp222808 +a(g222805 +g222807 +S'the' +p222809 +tp222810 +a(g222807 +g222809 +S"sculpture's" +p222811 +tp222812 +a(g222809 +g222811 +S'expressive' +p222813 +tp222814 +a(g222811 +g222813 +S'content.' +p222815 +tp222816 +a(g222813 +g222815 +S'it' +p222817 +tp222818 +a(g222815 +g222817 +S'is,' +p222819 +tp222820 +a(g222817 +g222819 +S'in' +p222821 +tp222822 +a(g222819 +g222821 +S'fact,' +p222823 +tp222824 +a(g222821 +g222823 +S'the' +p222825 +tp222826 +a(g222823 +g222825 +S'primary' +p222827 +tp222828 +a(g222825 +g222827 +S'vehicle' +p222829 +tp222830 +a(g222827 +g222829 +S'for' +p222831 +tp222832 +a(g222829 +g222831 +S'conveying' +p222833 +tp222834 +a(g222831 +g222833 +S'the' +p222835 +tp222836 +a(g222833 +g222835 +S'grief,' +p222837 +tp222838 +a(g222835 +g222837 +S'hopelessness,' +p222839 +tp222840 +a(g222837 +g222839 +S'and' +p222841 +tp222842 +a(g222839 +g222841 +S'despair' +p222843 +tp222844 +a(g222841 +g222843 +S'that' +p222845 +tp222846 +a(g222843 +g222845 +S'permeate' +p222847 +tp222848 +a(g222845 +g222847 +S'the' +p222849 +tp222850 +a(g222847 +g222849 +S'work.' +p222851 +tp222852 +a(g222849 +g222851 +S'seated' +p222853 +tp222854 +a(g222851 +g222853 +S'youth' +p222855 +tp222856 +a(g222853 +g222855 +S'seated' +p222857 +tp222858 +a(g222855 +g222857 +S'youth' +p222859 +tp222860 +a(g222857 +g222859 +S'according' +p222861 +tp222862 +a(g222859 +g222861 +S'to' +p222863 +tp222864 +a(g222861 +g222863 +S'the' +p222865 +tp222866 +a(g222863 +g222865 +S'tenets' +p222867 +tp222868 +a(g222865 +g222867 +S'of' +p222869 +tp222870 +a(g222867 +g222869 +S'the' +p222871 +tp222872 +a(g222869 +g222871 +S'17th–century' +p222873 +tp222874 +a(g222871 +g222873 +S'catholic' +p222875 +tp222876 +a(g222873 +g222875 +S'church,' +p222877 +tp222878 +a(g222875 +g222877 +S'mary' +p222879 +tp222880 +a(g222877 +g222879 +S'magdalen' +p222881 +tp222882 +a(g222879 +g222881 +S'was' +p222883 +tp222884 +a(g222881 +g222883 +S'an' +p222885 +tp222886 +a(g222883 +g222885 +S'example' +p222887 +tp222888 +a(g222885 +g222887 +S'of' +p222889 +tp222890 +a(g222887 +g222889 +S'the' +p222891 +tp222892 +a(g222889 +g222891 +S'repentant' +p222893 +tp222894 +a(g222891 +g222893 +S'sinner' +p222895 +tp222896 +a(g222893 +g222895 +S'and' +p222897 +tp222898 +a(g222895 +g222897 +S'consequently' +p222899 +tp222900 +a(g222897 +g222899 +S'a' +p222901 +tp222902 +a(g222899 +g222901 +S'symbol' +p222903 +tp222904 +a(g222901 +g222903 +S'of' +p222905 +tp222906 +a(g222903 +g222905 +S'the' +p222907 +tp222908 +a(g222905 +g222907 +S'sacrament' +p222909 +tp222910 +a(g222907 +g222909 +S'of' +p222911 +tp222912 +a(g222909 +g222911 +S'penance.' +p222913 +tp222914 +a(g222911 +g222913 +S'according' +p222915 +tp222916 +a(g222913 +g222915 +S'to' +p222917 +tp222918 +a(g222915 +g222917 +S'legend,' +p222919 +tp222920 +a(g222917 +g222919 +S'mary' +p222921 +tp222922 +a(g222919 +g222921 +S'led' +p222923 +tp222924 +a(g222921 +g222923 +S'a' +p222925 +tp222926 +a(g222923 +g222925 +S'dissolute' +p222927 +tp222928 +a(g222925 +g222927 +S'life' +p222929 +tp222930 +a(g222927 +g222929 +S'until' +p222931 +tp222932 +a(g222929 +g222931 +S'her' +p222933 +tp222934 +a(g222931 +g222933 +S'sister' +p222935 +tp222936 +a(g222933 +g222935 +S'martha' +p222937 +tp222938 +a(g222935 +g222937 +S'persuaded' +p222939 +tp222940 +a(g222937 +g222939 +S'her' +p222941 +tp222942 +a(g222939 +g222941 +S'to' +p222943 +tp222944 +a(g222941 +g222943 +S'listen' +p222945 +tp222946 +a(g222943 +g222945 +S'to' +p222947 +tp222948 +a(g222945 +g222947 +S'jesus' +p222949 +tp222950 +a(g222947 +g222949 +S'christ.' +p222951 +tp222952 +a(g222949 +g222951 +S'she' +p222953 +tp222954 +a(g222951 +g222953 +S'became' +p222955 +tp222956 +a(g222953 +g222955 +S'one' +p222957 +tp222958 +a(g222955 +g222957 +S'of' +p222959 +tp222960 +a(g222957 +g222959 +S"christ's" +p222961 +tp222962 +a(g222959 +g222961 +S'most' +p222963 +tp222964 +a(g222961 +g222963 +S'devoted' +p222965 +tp222966 +a(g222963 +g222965 +S'followers' +p222967 +tp222968 +a(g222965 +g222967 +S'and' +p222969 +tp222970 +a(g222967 +g222969 +S'he' +p222971 +tp222972 +a(g222969 +g222971 +S'absolved' +p222973 +tp222974 +a(g222971 +g222973 +S'her' +p222975 +tp222976 +a(g222973 +g222975 +S'of' +p222977 +tp222978 +a(g222975 +g222977 +S'her' +p222979 +tp222980 +a(g222977 +g222979 +S'former' +p222981 +tp222982 +a(g222979 +g222981 +S'sins.' +p222983 +tp222984 +a(g222981 +g222983 +S'in' +p222985 +tp222986 +a(g222983 +g222985 +S'georges' +p222987 +tp222988 +a(g222985 +g222987 +S'de' +p222989 +tp222990 +a(g222987 +g222989 +S'la' +p222991 +tp222992 +a(g222989 +g222991 +S"tour's" +p222993 +tp222994 +a(g222991 +g222993 +S'somber' +p222995 +tp222996 +a(g222993 +g222995 +S'canvas' +p222997 +tp222998 +a(g222995 +g222997 +S'mary' +p222999 +tp223000 +a(g222997 +g222999 +S'is' +p223001 +tp223002 +a(g222999 +g223001 +S'shown' +p223003 +tp223004 +a(g223001 +g223003 +S'in' +p223005 +tp223006 +a(g223003 +g223005 +S'profile' +p223007 +tp223008 +a(g223005 +g223007 +S'seated' +p223009 +tp223010 +a(g223007 +g223009 +S'at' +p223011 +tp223012 +a(g223009 +g223011 +S'a' +p223013 +tp223014 +a(g223011 +g223013 +S'table.' +p223015 +tp223016 +a(g223013 +g223015 +S'a' +p223017 +tp223018 +a(g223015 +g223017 +S'candle' +p223019 +tp223020 +a(g223017 +g223019 +S'is' +p223021 +tp223022 +a(g223019 +g223021 +S'the' +p223023 +tp223024 +a(g223021 +g223023 +S'source' +p223025 +tp223026 +a(g223023 +g223025 +S'of' +p223027 +tp223028 +a(g223025 +g223027 +S'light' +p223029 +tp223030 +a(g223027 +g223029 +S'in' +p223031 +tp223032 +a(g223029 +g223031 +S'the' +p223033 +tp223034 +a(g223031 +g223033 +S'composition,' +p223035 +tp223036 +a(g223033 +g223035 +S'but' +p223037 +tp223038 +a(g223035 +g223037 +S'the' +p223039 +tp223040 +a(g223037 +g223039 +S'light' +p223041 +tp223042 +a(g223039 +g223041 +S'also' +p223043 +tp223044 +a(g223041 +g223043 +S'carries' +p223045 +tp223046 +a(g223043 +g223045 +S'a' +p223047 +tp223048 +a(g223045 +g223047 +S'spiritual' +p223049 +tp223050 +a(g223047 +g223049 +S'meaning' +p223051 +tp223052 +a(g223049 +g223051 +S'as' +p223053 +tp223054 +a(g223051 +g223053 +S'it' +p223055 +tp223056 +a(g223053 +g223055 +S'casts' +p223057 +tp223058 +a(g223055 +g223057 +S'a' +p223059 +tp223060 +a(g223057 +g223059 +S'golden' +p223061 +tp223062 +a(g223059 +g223061 +S'glow' +p223063 +tp223064 +a(g223061 +g223063 +S'on' +p223065 +tp223066 +a(g223063 +g223065 +S'the' +p223067 +tp223068 +a(g223065 +g223067 +S"saint's" +p223069 +tp223070 +a(g223067 +g223069 +S'face' +p223071 +tp223072 +a(g223069 +g223071 +S'and' +p223073 +tp223074 +a(g223071 +g223073 +S'the' +p223075 +tp223076 +a(g223073 +g223075 +S'objects' +p223077 +tp223078 +a(g223075 +g223077 +S'assembled' +p223079 +tp223080 +a(g223077 +g223079 +S'on' +p223081 +tp223082 +a(g223079 +g223081 +S'the' +p223083 +tp223084 +a(g223081 +g223083 +S'table.' +p223085 +tp223086 +a(g223083 +g223085 +S'the' +p223087 +tp223088 +a(g223085 +g223087 +S'candle' +p223089 +tp223090 +a(g223087 +g223089 +S'light' +p223091 +tp223092 +a(g223089 +g223091 +S'silhouettes' +p223093 +tp223094 +a(g223091 +g223093 +S"mary's" +p223095 +tp223096 +a(g223093 +g223095 +S'left' +p223097 +tp223098 +a(g223095 +g223097 +S'hand' +p223099 +tp223100 +a(g223097 +g223099 +S'which' +p223101 +tp223102 +a(g223099 +g223101 +S'rests' +p223103 +tp223104 +a(g223101 +g223103 +S'on' +p223105 +tp223106 +a(g223103 +g223105 +S'a' +p223107 +tp223108 +a(g223105 +g223107 +S'skull' +p223109 +tp223110 +a(g223107 +g223109 +S'that' +p223111 +tp223112 +a(g223109 +g223111 +S'is' +p223113 +tp223114 +a(g223111 +g223113 +S'placed' +p223115 +tp223116 +a(g223113 +g223115 +S'on' +p223117 +tp223118 +a(g223115 +g223117 +S'a' +p223119 +tp223120 +a(g223117 +g223119 +S'book.' +p223121 +tp223122 +a(g223119 +g223121 +S'the' +p223123 +tp223124 +a(g223121 +g223123 +S'skull' +p223125 +tp223126 +a(g223123 +g223125 +S'is' +p223127 +tp223128 +a(g223125 +g223127 +S'reflected' +p223129 +tp223130 +a(g223127 +g223129 +S'in' +p223131 +tp223132 +a(g223129 +g223131 +S'a' +p223133 +tp223134 +a(g223131 +g223133 +S'mirror.' +p223135 +tp223136 +a(g223133 +g223135 +S'the' +p223137 +tp223138 +a(g223135 +g223137 +S'skull' +p223139 +tp223140 +a(g223137 +g223139 +S'and' +p223141 +tp223142 +a(g223139 +g223141 +S'mirror' +p223143 +tp223144 +a(g223141 +g223143 +S'are' +p223145 +tp223146 +a(g223143 +g223145 +S'emblems' +p223147 +tp223148 +a(g223145 +g223147 +S'of' +p223149 +tp223150 +a(g223147 +g223149 +S'the' +p223151 +tp223152 +a(g223149 +g223151 +S'simplification' +p223153 +tp223154 +a(g223151 +g223153 +S'of' +p223155 +tp223156 +a(g223153 +g223155 +S'forms,' +p223157 +tp223158 +a(g223155 +g223157 +S'reduced' +p223159 +tp223160 +a(g223157 +g223159 +S'palette,' +p223161 +tp223162 +a(g223159 +g223161 +S'and' +p223163 +tp223164 +a(g223161 +g223163 +S'attention' +p223165 +tp223166 +a(g223163 +g223165 +S'to' +p223167 +tp223168 +a(g223165 +g223167 +S'details' +p223169 +tp223170 +a(g223167 +g223169 +S'evoke' +p223171 +tp223172 +a(g223169 +g223171 +S'a' +p223173 +tp223174 +a(g223171 +g223173 +S'haunting' +p223175 +tp223176 +a(g223173 +g223175 +S'silence' +p223177 +tp223178 +a(g223175 +g223177 +S'that' +p223179 +tp223180 +a(g223177 +g223179 +S'is' +p223181 +tp223182 +a(g223179 +g223181 +S'unique' +p223183 +tp223184 +a(g223181 +g223183 +S'to' +p223185 +tp223186 +a(g223183 +g223185 +S'la' +p223187 +tp223188 +a(g223185 +g223187 +S"tour's" +p223189 +tp223190 +a(g223187 +g223189 +S'work.' +p223191 +tp223192 +a(g223189 +g223191 +S'la' +p223193 +tp223194 +a(g223191 +g223193 +S"tour's" +p223195 +tp223196 +a(g223193 +g223195 +S'intense' +p223197 +tp223198 +a(g223195 +g223197 +S'naturalism' +p223199 +tp223200 +a(g223197 +g223199 +S'rendered' +p223201 +tp223202 +a(g223199 +g223201 +S'religious' +p223203 +tp223204 +a(g223201 +g223203 +S'allegory' +p223205 +tp223206 +a(g223203 +g223205 +S'accessible' +p223207 +tp223208 +a(g223205 +g223207 +S'to' +p223209 +tp223210 +a(g223207 +g223209 +S'every' +p223211 +tp223212 +a(g223209 +g223211 +S'viewer.' +p223213 +tp223214 +a(g223211 +g223213 +S'although' +p223215 +tp223216 +a(g223213 +g223215 +S'his' +p223217 +tp223218 +a(g223215 +g223217 +S'work' +p223219 +tp223220 +a(g223217 +g223219 +S'is' +p223221 +tp223222 +a(g223219 +g223221 +S'deeply' +p223223 +tp223224 +a(g223221 +g223223 +S'spiritual' +p223225 +tp223226 +a(g223223 +g223225 +S'in' +p223227 +tp223228 +a(g223225 +g223227 +S'tone,' +p223229 +tp223230 +a(g223227 +g223229 +S'the' +p223231 +tp223232 +a(g223229 +g223231 +S'solidity' +p223233 +tp223234 +a(g223231 +g223233 +S'and' +p223235 +tp223236 +a(g223233 +g223235 +S'massing' +p223237 +tp223238 +a(g223235 +g223237 +S'of' +p223239 +tp223240 +a(g223237 +g223239 +S'the' +p223241 +tp223242 +a(g223239 +g223241 +S'forms' +p223243 +tp223244 +a(g223241 +g223243 +S'reveal' +p223245 +tp223246 +a(g223243 +g223245 +S'the' +p223247 +tp223248 +a(g223245 +g223247 +S'same' +p223249 +tp223250 +a(g223247 +g223249 +S'emphasis' +p223251 +tp223252 +a(g223249 +g223251 +S'on' +p223253 +tp223254 +a(g223251 +g223253 +S'clarity' +p223255 +tp223256 +a(g223253 +g223255 +S'and' +p223257 +tp223258 +a(g223255 +g223257 +S'symmetry' +p223259 +tp223260 +a(g223257 +g223259 +S'that' +p223261 +tp223262 +a(g223259 +g223261 +S'pervaded' +p223263 +tp223264 +a(g223261 +g223263 +S'contemporary' +p223265 +tp223266 +a(g223263 +g223265 +S'history' +p223267 +tp223268 +a(g223265 +g223267 +S'painting' +p223269 +tp223270 +a(g223267 +g223269 +S'and' +p223271 +tp223272 +a(g223269 +g223271 +S'was' +p223273 +tp223274 +a(g223271 +g223273 +S'a' +p223275 +tp223276 +a(g223273 +g223275 +S'hallmark' +p223277 +tp223278 +a(g223275 +g223277 +S'of' +p223279 +tp223280 +a(g223277 +g223279 +S'french' +p223281 +tp223282 +a(g223279 +g223281 +S'baroque' +p223283 +tp223284 +a(g223281 +g223283 +S'art.' +p223285 +tp223286 +a(g223283 +g223285 +S'imagine' +p223287 +tp223288 +a(g223285 +g223287 +S'this' +p223289 +tp223290 +a(g223287 +g223289 +S'diminutive' +p223291 +tp223292 +a(g223289 +g223291 +S'sculpture' +p223293 +tp223294 +a(g223291 +g223293 +S'of' +p223295 +tp223296 +a(g223293 +g223295 +S'diana' +p223297 +tp223298 +a(g223295 +g223297 +S'the' +p223299 +tp223300 +a(g223297 +g223299 +S'huntress' +p223301 +tp223302 +a(g223299 +g223301 +S'as' +p223303 +tp223304 +a(g223301 +g223303 +S'a' +p223305 +tp223306 +a(g223303 +g223305 +S'rotating,' +p223307 +tp223308 +a(g223305 +g223307 +S'18-foot-tall,' +p223309 +tp223310 +a(g223307 +g223309 +S'gilded' +p223311 +tp223312 +a(g223309 +g223311 +S'weathervane' +p223313 +tp223314 +a(g223311 +g223313 +S'atop' +p223315 +tp223316 +a(g223313 +g223315 +S'the' +p223317 +tp223318 +a(g223315 +g223317 +S'tower' +p223319 +tp223320 +a(g223317 +g223319 +S'of' +p223321 +tp223322 +a(g223319 +g223321 +S'the' +p223323 +tp223324 +a(g223321 +g223323 +S'newly' +p223325 +tp223326 +a(g223323 +g223325 +S'built' +p223327 +tp223328 +a(g223325 +g223327 +S'madison' +p223329 +tp223330 +a(g223327 +g223329 +S'square' +p223331 +tp223332 +a(g223329 +g223331 +S'garden.' +p223333 +tp223334 +a(g223331 +g223333 +S'in' +p223335 +tp223336 +a(g223333 +g223335 +S'collaboration' +p223337 +tp223338 +a(g223335 +g223337 +S'with' +p223339 +tp223340 +a(g223337 +g223339 +S'his' +p223341 +tp223342 +a(g223339 +g223341 +S'friend,' +p223343 +tp223344 +a(g223341 +g223343 +S'architect' +p223345 +tp223346 +a(g223343 +g223345 +S'stanford' +p223347 +tp223348 +a(g223345 +g223347 +S'white' +p223349 +tp223350 +a(g223347 +g223349 +S'(the' +p223351 +tp223352 +a(g223349 +g223351 +S"garden's" +p223353 +tp223354 +a(g223351 +g223353 +S'architect),' +p223355 +tp223356 +a(g223353 +g223355 +S'saint-gaudens' +p223357 +tp223358 +a(g223355 +g223357 +S'originally' +p223359 +tp223360 +a(g223357 +g223359 +S'designed' +p223361 +tp223362 +a(g223359 +g223361 +S'the' +p223363 +tp223364 +a(g223361 +g223363 +S'monumental' +p223365 +tp223366 +a(g223363 +g223365 +S'diana' +p223367 +tp223368 +a(g223365 +g223367 +S'to' +p223369 +tp223370 +a(g223367 +g223369 +S'reign' +p223371 +tp223372 +a(g223369 +g223371 +S'over' +p223373 +tp223374 +a(g223371 +g223373 +S'the' +p223375 +tp223376 +a(g223373 +g223375 +S'new' +p223377 +tp223378 +a(g223375 +g223377 +S'york' +p223379 +tp223380 +a(g223377 +g223379 +S'skyline,' +p223381 +tp223382 +a(g223379 +g223381 +S'a' +p223383 +tp223384 +a(g223381 +g223383 +S'rival' +p223385 +tp223386 +a(g223383 +g223385 +S'to' +p223387 +tp223388 +a(g223385 +g223387 +S"bartholdi's" +p223389 +tp223390 +a(g223387 +g223389 +S'liberty' +p223391 +tp223392 +a(g223389 +g223391 +S'in' +p223393 +tp223394 +a(g223391 +g223393 +S'new' +p223395 +tp223396 +a(g223393 +g223395 +S'york' +p223397 +tp223398 +a(g223395 +g223397 +S'harbor.' +p223399 +tp223400 +a(g223397 +g223399 +S'but' +p223401 +tp223402 +a(g223399 +g223401 +S"saint-gaudens'" +p223403 +tp223404 +a(g223401 +g223403 +S'figure' +p223405 +tp223406 +a(g223403 +g223405 +S'proved' +p223407 +tp223408 +a(g223405 +g223407 +S'too' +p223409 +tp223410 +a(g223407 +g223409 +S'unwieldy' +p223411 +tp223412 +a(g223409 +g223411 +S'to' +p223413 +tp223414 +a(g223411 +g223413 +S'function' +p223415 +tp223416 +a(g223413 +g223415 +S'properly' +p223417 +tp223418 +a(g223415 +g223417 +S'(the' +p223419 +tp223420 +a(g223417 +g223419 +S'original' +p223421 +tp223422 +a(g223419 +g223421 +S'had' +p223423 +tp223424 +a(g223421 +g223423 +S'metal' +p223425 +tp223426 +a(g223423 +g223425 +S'drapery' +p223427 +tp223428 +a(g223425 +g223427 +S'attached' +p223429 +tp223430 +a(g223427 +g223429 +S'as' +p223431 +tp223432 +a(g223429 +g223431 +S'a' +p223433 +tp223434 +a(g223431 +g223433 +S'rudder)' +p223435 +tp223436 +a(g223433 +g223435 +S'and' +p223437 +tp223438 +a(g223435 +g223437 +S'was' +p223439 +tp223440 +a(g223437 +g223439 +S'removed.' +p223441 +tp223442 +a(g223439 +g223441 +S'he' +p223443 +tp223444 +a(g223441 +g223443 +S'then' +p223445 +tp223446 +a(g223443 +g223445 +S'designed' +p223447 +tp223448 +a(g223445 +g223447 +S'a' +p223449 +tp223450 +a(g223447 +g223449 +S'13-foot' +p223451 +tp223452 +a(g223449 +g223451 +S'version,' +p223453 +tp223454 +a(g223451 +g223453 +S'which' +p223455 +tp223456 +a(g223453 +g223455 +S'also' +p223457 +tp223458 +a(g223455 +g223457 +S'failed' +p223459 +tp223460 +a(g223457 +g223459 +S'as' +p223461 +tp223462 +a(g223459 +g223461 +S'a' +p223463 +tp223464 +a(g223461 +g223463 +S'weathervane' +p223465 +tp223466 +a(g223463 +g223465 +S'and' +p223467 +tp223468 +a(g223465 +g223467 +S'had' +p223469 +tp223470 +a(g223467 +g223469 +S'to' +p223471 +tp223472 +a(g223469 +g223471 +S'be' +p223473 +tp223474 +a(g223471 +g223473 +S'bolted' +p223475 +tp223476 +a(g223473 +g223475 +S'fast' +p223477 +tp223478 +a(g223475 +g223477 +S'to' +p223479 +tp223480 +a(g223477 +g223479 +S'the' +p223481 +tp223482 +a(g223479 +g223481 +S'tower.' +p223483 +tp223484 +a(g223481 +g223483 +S'saint-gaudens' +p223485 +tp223486 +a(g223483 +g223485 +S'went' +p223487 +tp223488 +a(g223485 +g223487 +S'on' +p223489 +tp223490 +a(g223487 +g223489 +S'to' +p223491 +tp223492 +a(g223489 +g223491 +S'make' +p223493 +tp223494 +a(g223491 +g223493 +S'with' +p223495 +tp223496 +a(g223493 +g223495 +S'her' +p223497 +tp223498 +a(g223495 +g223497 +S'slender' +p223499 +tp223500 +a(g223497 +g223499 +S'limbs' +p223501 +tp223502 +a(g223499 +g223501 +S'and' +p223503 +tp223504 +a(g223501 +g223503 +S'graceful' +p223505 +tp223506 +a(g223503 +g223505 +S'pose,' +p223507 +tp223508 +a(g223505 +g223507 +S"saint-gaudens'" +p223509 +tp223510 +a(g223507 +g223509 +S'saint-gaudens' +p223511 +tp223512 +a(g223509 +g223511 +S'would' +p223513 +tp223514 +a(g223511 +g223513 +S'have' +p223515 +tp223516 +a(g223513 +g223515 +S'seen' +p223517 +tp223518 +a(g223515 +g223517 +S'several' +p223519 +tp223520 +a(g223517 +g223519 +S'mythological' +p223521 +tp223522 +a(g223519 +g223521 +S'dianas' +p223523 +tp223524 +a(g223521 +g223523 +S'in' +p223525 +tp223526 +a(g223523 +g223525 +S'paris' +p223527 +tp223528 +a(g223525 +g223527 +S'in' +p223529 +tp223530 +a(g223527 +g223529 +S'the' +p223531 +tp223532 +a(g223529 +g223531 +S'1870s,' +p223533 +tp223534 +a(g223531 +g223533 +S'but' +p223535 +tp223536 +a(g223533 +g223535 +S'an' +p223537 +tp223538 +a(g223535 +g223537 +S'elongated' +p223539 +tp223540 +a(g223537 +g223539 +S'neo-mannerist' +p223541 +tp223542 +a(g223539 +g223541 +S'bronze' +p223543 +tp223544 +a(g223541 +g223543 +S'diana' +p223545 +tp223546 +a(g223543 +g223545 +S'by' +p223547 +tp223548 +a(g223545 +g223547 +S'there' +p223549 +tp223550 +a(g223547 +g223549 +S'is' +p223551 +tp223552 +a(g223549 +g223551 +S'a' +p223553 +tp223554 +a(g223551 +g223553 +S'thematic' +p223555 +tp223556 +a(g223553 +g223555 +S'trend' +p223557 +tp223558 +a(g223555 +g223557 +S'in' +p223559 +tp223560 +a(g223557 +g223559 +S'homer’s' +p223561 +tp223562 +a(g223559 +g223561 +S'deer' +p223563 +tp223564 +a(g223561 +g223563 +S'hunting' +p223565 +tp223566 +a(g223563 +g223565 +S'series;' +p223567 +tp223568 +a(g223565 +g223567 +S'his' +p223569 +tp223570 +a(g223567 +g223569 +S'subjects' +p223571 +tp223572 +a(g223569 +g223571 +S'shift' +p223573 +tp223574 +a(g223571 +g223573 +S'over' +p223575 +tp223576 +a(g223573 +g223575 +S'time' +p223577 +tp223578 +a(g223575 +g223577 +S'from' +p223579 +tp223580 +a(g223577 +g223579 +S'the' +p223581 +tp223582 +a(g223579 +g223581 +S'start' +p223583 +tp223584 +a(g223581 +g223583 +S'of' +p223585 +tp223586 +a(g223583 +g223585 +S'the' +p223587 +tp223588 +a(g223585 +g223587 +S'hunt' +p223589 +tp223590 +a(g223587 +g223589 +S'to' +p223591 +tp223592 +a(g223589 +g223591 +S'the' +p223593 +tp223594 +a(g223591 +g223593 +S'kill.' +p223595 +tp223596 +a(g223593 +g223595 +S'in' +p223597 +tp223598 +a(g223595 +g223597 +S'another' +p223599 +tp223600 +a(g223597 +g223599 +S'watercolor' +p223601 +tp223602 +a(g223599 +g223601 +S'in' +p223603 +tp223604 +a(g223601 +g223603 +S'homer’s' +p223605 +tp223606 +a(g223603 +g223605 +S'series' +p223607 +tp223608 +a(g223605 +g223607 +S'on' +p223609 +tp223610 +a(g223607 +g223609 +S'hounding,' +p223611 +tp223612 +a(g223609 +g223611 +S'the' +p223613 +tp223614 +a(g223611 +g223613 +S'self-assurance' +p223615 +tp223616 +a(g223613 +g223615 +S'of' +p223617 +tp223618 +a(g223615 +g223617 +S'man' +p223619 +tp223620 +a(g223617 +g223619 +S'in' +p223621 +tp223622 +a(g223619 +g223621 +S'relation' +p223623 +tp223624 +a(g223621 +g223623 +S'to' +p223625 +tp223626 +a(g223623 +g223625 +S'nature' +p223627 +tp223628 +a(g223625 +g223627 +S'that' +p223629 +tp223630 +a(g223627 +g223629 +S'characterizes' +p223631 +tp223632 +a(g223629 +g223631 +S'many' +p223633 +tp223634 +a(g223631 +g223633 +S'of' +p223635 +tp223636 +a(g223633 +g223635 +S'homer’s' +p223637 +tp223638 +a(g223635 +g223637 +S'after' +p223639 +tp223640 +a(g223637 +g223639 +S'not' +p223641 +tp223642 +a(g223639 +g223641 +S'working' +p223643 +tp223644 +a(g223641 +g223643 +S'for' +p223645 +tp223646 +a(g223643 +g223645 +S'more' +p223647 +tp223648 +a(g223645 +g223647 +S'than' +p223649 +tp223650 +a(g223647 +g223649 +S'a' +p223651 +tp223652 +a(g223649 +g223651 +S'year,' +p223653 +tp223654 +a(g223651 +g223653 +S'homer' +p223655 +tp223656 +a(g223653 +g223655 +S'traveled' +p223657 +tp223658 +a(g223655 +g223657 +S'to' +p223659 +tp223660 +a(g223657 +g223659 +S'florida' +p223661 +tp223662 +a(g223659 +g223661 +S'in' +p223663 +tp223664 +a(g223661 +g223663 +S'december' +p223665 +tp223666 +a(g223663 +g223665 +S'1903.' +p223667 +tp223668 +a(g223665 +g223667 +S'the' +p223669 +tp223670 +a(g223667 +g223669 +S'as' +p223671 +tp223672 +a(g223669 +g223671 +S'with' +p223673 +tp223674 +a(g223671 +g223673 +S'the' +p223675 +tp223676 +a(g223673 +g223675 +S'bahamas' +p223677 +tp223678 +a(g223675 +g223677 +S'series,' +p223679 +tp223680 +a(g223677 +g223679 +S'homer' +p223681 +tp223682 +a(g223679 +g223681 +S'ignored' +p223683 +tp223684 +a(g223681 +g223683 +S'all' +p223685 +tp223686 +a(g223683 +g223685 +S'but' +p223687 +tp223688 +a(g223685 +g223687 +S'the' +p223689 +tp223690 +a(g223687 +g223689 +S'essentials' +p223691 +tp223692 +a(g223689 +g223691 +S'and' +p223693 +tp223694 +a(g223691 +g223693 +S'concentrated' +p223695 +tp223696 +a(g223693 +g223695 +S'on' +p223697 +tp223698 +a(g223695 +g223697 +S'capturing' +p223699 +tp223700 +a(g223697 +g223699 +S'the' +p223701 +tp223702 +a(g223699 +g223701 +S'effects' +p223703 +tp223704 +a(g223701 +g223703 +S'of' +p223705 +tp223706 +a(g223703 +g223705 +S'light' +p223707 +tp223708 +a(g223705 +g223707 +S'and' +p223709 +tp223710 +a(g223707 +g223709 +S'color.' +p223711 +tp223712 +a(g223709 +g223711 +S'the' +p223713 +tp223714 +a(g223711 +g223713 +S'simplified' +p223715 +tp223716 +a(g223713 +g223715 +S'color' +p223717 +tp223718 +a(g223715 +g223717 +S'scheme' +p223719 +tp223720 +a(g223717 +g223719 +S'of' +p223721 +tp223722 +a(g223719 +g223721 +S'white' +p223723 +tp223724 +a(g223721 +g223723 +S'hull' +p223725 +tp223726 +a(g223723 +g223725 +S'and' +p223727 +tp223728 +a(g223725 +g223727 +S'sails,' +p223729 +tp223730 +a(g223727 +g223729 +S'red-shirted' +p223731 +tp223732 +a(g223729 +g223731 +S'crew,' +p223733 +tp223734 +a(g223731 +g223733 +S'and' +p223735 +tp223736 +a(g223733 +g223735 +S'gray-blue' +p223737 +tp223738 +a(g223735 +g223737 +S'sea' +p223739 +tp223740 +a(g223737 +g223739 +S'and' +p223741 +tp223742 +a(g223739 +g223741 +S'sky' +p223743 +tp223744 +a(g223741 +g223743 +S'produce' +p223745 +tp223746 +a(g223743 +g223745 +S'a' +p223747 +tp223748 +a(g223745 +g223747 +S'scene' +p223749 +tp223750 +a(g223747 +g223749 +S'of' +p223751 +tp223752 +a(g223749 +g223751 +S'sunlit' +p223753 +tp223754 +a(g223751 +g223753 +S'clarity.' +p223755 +tp223756 +a(g223753 +g223755 +S'a' +p223757 +tp223758 +a(g223755 +g223757 +S'sense' +p223759 +tp223760 +a(g223757 +g223759 +S'of' +p223761 +tp223762 +a(g223759 +g223761 +S'continuous' +p223763 +tp223764 +a(g223761 +g223763 +S'movement' +p223765 +tp223766 +a(g223763 +g223765 +S'is' +p223767 +tp223768 +a(g223765 +g223767 +S'created' +p223769 +tp223770 +a(g223767 +g223769 +S'by' +p223771 +tp223772 +a(g223769 +g223771 +S'cropping' +p223773 +tp223774 +a(g223771 +g223773 +S'the' +p223775 +tp223776 +a(g223773 +g223775 +S'top' +p223777 +tp223778 +a(g223775 +g223777 +S'of' +p223779 +tp223780 +a(g223777 +g223779 +S'the' +p223781 +tp223782 +a(g223779 +g223781 +S'masts' +p223783 +tp223784 +a(g223781 +g223783 +S'and' +p223785 +tp223786 +a(g223783 +g223785 +S'furled' +p223787 +tp223788 +a(g223785 +g223787 +S'sail.' +p223789 +tp223790 +a(g223787 +g223789 +S'the' +p223791 +tp223792 +a(g223789 +g223791 +S'in' +p223793 +tp223794 +a(g223791 +g223793 +S'1889' +p223795 +tp223796 +a(g223793 +g223795 +S'homer' +p223797 +tp223798 +a(g223795 +g223797 +S'began' +p223799 +tp223800 +a(g223797 +g223799 +S'a' +p223801 +tp223802 +a(g223799 +g223801 +S'series' +p223803 +tp223804 +a(g223801 +g223803 +S'of' +p223805 +tp223806 +a(g223803 +g223805 +S'hounding' +p223807 +tp223808 +a(g223805 +g223807 +S'was' +p223809 +tp223810 +a(g223807 +g223809 +S'a' +p223811 +tp223812 +a(g223809 +g223811 +S'controversial' +p223813 +tp223814 +a(g223811 +g223813 +S'practice.' +p223815 +tp223816 +a(g223813 +g223815 +S'still-hunting,' +p223817 +tp223818 +a(g223815 +g223817 +S'where' +p223819 +tp223820 +a(g223817 +g223819 +S'the' +p223821 +tp223822 +a(g223819 +g223821 +S'hunter' +p223823 +tp223824 +a(g223821 +g223823 +S'tracked' +p223825 +tp223826 +a(g223823 +g223825 +S'the' +p223827 +tp223828 +a(g223825 +g223827 +S'deer' +p223829 +tp223830 +a(g223827 +g223829 +S'through' +p223831 +tp223832 +a(g223829 +g223831 +S'the' +p223833 +tp223834 +a(g223831 +g223833 +S'woods' +p223835 +tp223836 +a(g223833 +g223835 +S'without' +p223837 +tp223838 +a(g223835 +g223837 +S'the' +p223839 +tp223840 +a(g223837 +g223839 +S'benefit' +p223841 +tp223842 +a(g223839 +g223841 +S'of' +p223843 +tp223844 +a(g223841 +g223843 +S'dogs,' +p223845 +tp223846 +a(g223843 +g223845 +S'was' +p223847 +tp223848 +a(g223845 +g223847 +S'considered' +p223849 +tp223850 +a(g223847 +g223849 +S'more' +p223851 +tp223852 +a(g223849 +g223851 +S'sportsmanlike.' +p223853 +tp223854 +a(g223851 +g223853 +S'however,' +p223855 +tp223856 +a(g223853 +g223855 +S"homer's" +p223857 +tp223858 +a(g223855 +g223857 +S'hunters' +p223859 +tp223860 +a(g223857 +g223859 +S'are' +p223861 +tp223862 +a(g223859 +g223861 +S'not' +p223863 +tp223864 +a(g223861 +g223863 +S'wealthy' +p223865 +tp223866 +a(g223863 +g223865 +S'sportsmen,' +p223867 +tp223868 +a(g223865 +g223867 +S'casually' +p223869 +tp223870 +a(g223867 +g223869 +S'shooting' +p223871 +tp223872 +a(g223869 +g223871 +S'for' +p223873 +tp223874 +a(g223871 +g223873 +S'entertainment,' +p223875 +tp223876 +a(g223873 +g223875 +S'but' +p223877 +tp223878 +a(g223875 +g223877 +S'local' +p223879 +tp223880 +a(g223877 +g223879 +S'guides' +p223881 +tp223882 +a(g223879 +g223881 +S'hunting' +p223883 +tp223884 +a(g223881 +g223883 +S'for' +p223885 +tp223886 +a(g223883 +g223885 +S'food' +p223887 +tp223888 +a(g223885 +g223887 +S'and' +p223889 +tp223890 +a(g223887 +g223889 +S'livelihood.' +p223891 +tp223892 +a(g223889 +g223891 +S'escher' +p223893 +tp223894 +a(g223891 +g223893 +S'often' +p223895 +tp223896 +a(g223893 +g223895 +S'used' +p223897 +tp223898 +a(g223895 +g223897 +S'his' +p223899 +tp223900 +a(g223897 +g223899 +S'drawings' +p223901 +tp223902 +a(g223899 +g223901 +S'as' +p223903 +tp223904 +a(g223901 +g223903 +S'studies' +p223905 +tp223906 +a(g223903 +g223905 +S'for' +p223907 +tp223908 +a(g223905 +g223907 +S'prints,' +p223909 +tp223910 +a(g223907 +g223909 +S'but' +p223911 +tp223912 +a(g223909 +g223911 +S'he' +p223913 +tp223914 +a(g223911 +g223913 +S'occasionally' +p223915 +tp223916 +a(g223913 +g223915 +S'also' +p223917 +tp223918 +a(g223915 +g223917 +S'experimented' +p223919 +tp223920 +a(g223917 +g223919 +S'with' +p223921 +tp223922 +a(g223919 +g223921 +S'various' +p223923 +tp223924 +a(g223921 +g223923 +S'drawing' +p223925 +tp223926 +a(g223923 +g223925 +S'techniques.' +p223927 +tp223928 +a(g223925 +g223927 +S'his' +p223929 +tp223930 +a(g223927 +g223929 +S'most' +p223931 +tp223932 +a(g223929 +g223931 +S'important' +p223933 +tp223934 +a(g223931 +g223933 +S'experiments' +p223935 +tp223936 +a(g223933 +g223935 +S'are' +p223937 +tp223938 +a(g223935 +g223937 +S'the' +p223939 +tp223940 +a(g223937 +g223939 +S'"scratch' +p223941 +tp223942 +a(g223939 +g223941 +S'drawings"' +p223943 +tp223944 +a(g223941 +g223943 +S'for' +p223945 +tp223946 +a(g223943 +g223945 +S'which' +p223947 +tp223948 +a(g223945 +g223947 +S'he' +p223949 +tp223950 +a(g223947 +g223949 +S'evenly' +p223951 +tp223952 +a(g223949 +g223951 +S'coated' +p223953 +tp223954 +a(g223951 +g223953 +S'the' +p223955 +tp223956 +a(g223953 +g223955 +S'paper' +p223957 +tp223958 +a(g223955 +g223957 +S'with' +p223959 +tp223960 +a(g223957 +g223959 +S'lithographic' +p223961 +tp223962 +a(g223959 +g223961 +S'drawing' +p223963 +tp223964 +a(g223961 +g223963 +S'ink.' +p223965 +tp223966 +a(g223963 +g223965 +S'he' +p223967 +tp223968 +a(g223965 +g223967 +S'then' +p223969 +tp223970 +a(g223967 +g223969 +S'drew' +p223971 +tp223972 +a(g223969 +g223971 +S'on' +p223973 +tp223974 +a(g223971 +g223973 +S'the' +p223975 +tp223976 +a(g223973 +g223975 +S'prepared' +p223977 +tp223978 +a(g223975 +g223977 +S'surface' +p223979 +tp223980 +a(g223977 +g223979 +S'with' +p223981 +tp223982 +a(g223979 +g223981 +S'a' +p223983 +tp223984 +a(g223981 +g223983 +S'pointed' +p223985 +tp223986 +a(g223983 +g223985 +S'tool,' +p223987 +tp223988 +a(g223985 +g223987 +S'scoring' +p223989 +tp223990 +a(g223987 +g223989 +S'or' +p223991 +tp223992 +a(g223989 +g223991 +S'scratching' +p223993 +tp223994 +a(g223991 +g223993 +S'into' +p223995 +tp223996 +a(g223993 +g223995 +S'it' +p223997 +tp223998 +a(g223995 +g223997 +S'to' +p223999 +tp224000 +a(g223997 +g223999 +S'produce' +p224001 +tp224002 +a(g223999 +g224001 +S'his' +p224003 +tp224004 +a(g224001 +g224003 +S'image.' +p224005 +tp224006 +a(g224003 +g224005 +S'this' +p224007 +tp224008 +a(g224005 +g224007 +S'technique,' +p224009 +tp224010 +a(g224007 +g224009 +S'which' +p224011 +tp224012 +a(g224009 +g224011 +S'he' +p224013 +tp224014 +a(g224011 +g224013 +S'first' +p224015 +tp224016 +a(g224013 +g224015 +S'employed' +p224017 +tp224018 +a(g224015 +g224017 +S'in' +p224019 +tp224020 +a(g224017 +g224019 +S'1929,' +p224021 +tp224022 +a(g224019 +g224021 +S'led' +p224023 +tp224024 +a(g224021 +g224023 +S'escher' +p224025 +tp224026 +a(g224023 +g224025 +S'directly' +p224027 +tp224028 +a(g224025 +g224027 +S'to' +p224029 +tp224030 +a(g224027 +g224029 +S'his' +p224031 +tp224032 +a(g224029 +g224031 +S'work' +p224033 +tp224034 +a(g224031 +g224033 +S'in' +p224035 +tp224036 +a(g224033 +g224035 +S'lithography.' +p224037 +tp224038 +a(g224035 +g224037 +S'max' +p224039 +tp224040 +a(g224037 +g224039 +S'beckmann' +p224041 +tp224042 +a(g224039 +g224041 +S'planned' +p224043 +tp224044 +a(g224041 +g224043 +S'to' +p224045 +tp224046 +a(g224043 +g224045 +S'paint' +p224047 +tp224048 +a(g224045 +g224047 +S'a' +p224049 +tp224050 +a(g224047 +g224049 +S'ninth' +p224051 +tp224052 +a(g224049 +g224051 +S'and' +p224053 +tp224054 +a(g224051 +g224053 +S'final' +p224055 +tp224056 +a(g224053 +g224055 +S'triptych' +p224057 +tp224058 +a(g224055 +g224057 +S'called' +p224059 +tp224060 +a(g224057 +g224059 +S'"the' +p224061 +tp224062 +a(g224059 +g224061 +S'artists,"' +p224063 +tp224064 +a(g224061 +g224063 +S'with' +p224065 +tp224066 +a(g224063 +g224065 +S'the' +p224067 +tp224068 +a(g224065 +g224067 +S'left' +p224069 +tp224070 +a(g224067 +g224069 +S'panel' +p224071 +tp224072 +a(g224069 +g224071 +S'representing' +p224073 +tp224074 +a(g224071 +g224073 +S'painting,' +p224075 +tp224076 +a(g224073 +g224075 +S'the' +p224077 +tp224078 +a(g224075 +g224077 +S'right' +p224079 +tp224080 +a(g224077 +g224079 +S'panel' +p224081 +tp224082 +a(g224079 +g224081 +S'music,' +p224083 +tp224084 +a(g224081 +g224083 +S'and' +p224085 +tp224086 +a(g224083 +g224085 +S'the' +p224087 +tp224088 +a(g224085 +g224087 +S'middle' +p224089 +tp224090 +a(g224087 +g224089 +S'panel,' +p224091 +tp224092 +a(g224089 +g224091 +S'with' +p224093 +tp224094 +a(g224091 +g224093 +S'its' +p224095 +tp224096 +a(g224093 +g224095 +S'central,' +p224097 +tp224098 +a(g224095 +g224097 +S'garlanded' +p224099 +tp224100 +a(g224097 +g224099 +S'figure,' +p224101 +tp224102 +a(g224099 +g224101 +S'poetry.' +p224103 +tp224104 +a(g224101 +g224103 +S'he' +p224105 +tp224106 +a(g224103 +g224105 +S'was' +p224107 +tp224108 +a(g224105 +g224107 +S'moved' +p224109 +tp224110 +a(g224107 +g224109 +S'by' +p224111 +tp224112 +a(g224109 +g224111 +S'a' +p224113 +tp224114 +a(g224111 +g224113 +S'dream' +p224115 +tp224116 +a(g224113 +g224115 +S'to' +p224117 +tp224118 +a(g224115 +g224117 +S'rename' +p224119 +tp224120 +a(g224117 +g224119 +S'it' +p224121 +tp224122 +a(g224119 +g224121 +S'the' +p224123 +tp224124 +a(g224121 +g224123 +S"painting's" +p224125 +tp224126 +a(g224123 +g224125 +S'title' +p224127 +tp224128 +a(g224125 +g224127 +S'may' +p224129 +tp224130 +a(g224127 +g224129 +S'also' +p224131 +tp224132 +a(g224129 +g224131 +S'allude' +p224133 +tp224134 +a(g224131 +g224133 +S'to' +p224135 +tp224136 +a(g224133 +g224135 +S'a' +p224137 +tp224138 +a(g224135 +g224137 +S'group' +p224139 +tp224140 +a(g224137 +g224139 +S'of' +p224141 +tp224142 +a(g224139 +g224141 +S'poets' +p224143 +tp224144 +a(g224141 +g224143 +S'and' +p224145 +tp224146 +a(g224143 +g224145 +S'painters' +p224147 +tp224148 +a(g224145 +g224147 +S'with' +p224149 +tp224150 +a(g224147 +g224149 +S'whom' +p224151 +tp224152 +a(g224149 +g224151 +S'beckmann' +p224153 +tp224154 +a(g224151 +g224153 +S'associated' +p224155 +tp224156 +a(g224153 +g224155 +S'during' +p224157 +tp224158 +a(g224155 +g224157 +S'his' +p224159 +tp224160 +a(g224157 +g224159 +S'years' +p224161 +tp224162 +a(g224159 +g224161 +S'in' +p224163 +tp224164 +a(g224161 +g224163 +S'amsterdam,' +p224165 +tp224166 +a(g224163 +g224165 +S'1937-47,' +p224167 +tp224168 +a(g224165 +g224167 +S'who' +p224169 +tp224170 +a(g224167 +g224169 +S'called' +p224171 +tp224172 +a(g224169 +g224171 +S'themselves' +p224173 +tp224174 +a(g224171 +g224173 +S'"the' +p224175 +tp224176 +a(g224173 +g224175 +S'argonauts."' +p224177 +tp224178 +a(g224175 +g224177 +S'indeed,' +p224179 +tp224180 +a(g224177 +g224179 +S'multiple' +p224181 +tp224182 +a(g224179 +g224181 +S'references' +p224183 +tp224184 +a(g224181 +g224183 +S'to' +p224185 +tp224186 +a(g224183 +g224185 +S"beckmann's" +p224187 +tp224188 +a(g224185 +g224187 +S'art' +p224189 +tp224190 +a(g224187 +g224189 +S'and' +p224191 +tp224192 +a(g224189 +g224191 +S'his' +p224193 +tp224194 +a(g224191 +g224193 +S'life' +p224195 +tp224196 +a(g224193 +g224195 +S'are' +p224197 +tp224198 +a(g224195 +g224197 +S'evident' +p224199 +tp224200 +a(g224197 +g224199 +S'throughout' +p224201 +tp224202 +a(g224199 +g224201 +S'the' +p224203 +tp224204 +a(g224201 +g224203 +S'three' +p224205 +tp224206 +a(g224203 +g224205 +S'panels,' +p224207 +tp224208 +a(g224205 +g224207 +S'making' +p224209 +tp224210 +a(g224207 +g224209 +S'the' +p224211 +tp224212 +a(g224209 +g224211 +S'unevenly' +p224213 +tp224214 +a(g224211 +g224213 +S'spaced,' +p224215 +tp224216 +a(g224213 +g224215 +S'staccato' +p224217 +tp224218 +a(g224215 +g224217 +S'brushstrokes' +p224219 +tp224220 +a(g224217 +g224219 +S'on' +p224221 +tp224222 +a(g224219 +g224221 +S'the' +p224223 +tp224224 +a(g224221 +g224223 +S'white' +p224225 +tp224226 +a(g224223 +g224225 +S'canvas' +p224227 +tp224228 +a(g224225 +g224227 +S'form' +p224229 +tp224230 +a(g224227 +g224229 +S'a' +p224231 +tp224232 +a(g224229 +g224231 +S'visual' +p224233 +tp224234 +a(g224231 +g224233 +S'rhythm,' +p224235 +tp224236 +a(g224233 +g224235 +S'as' +p224237 +tp224238 +a(g224235 +g224237 +S'if' +p224239 +tp224240 +a(g224237 +g224239 +S'the' +p224241 +tp224242 +a(g224239 +g224241 +S'artist' +p224243 +tp224244 +a(g224241 +g224243 +S'had' +p224245 +tp224246 +a(g224243 +g224245 +S'painted' +p224247 +tp224248 +a(g224245 +g224247 +S'a' +p224249 +tp224250 +a(g224247 +g224249 +S'cantata,' +p224251 +tp224252 +a(g224249 +g224251 +S'a' +p224253 +tp224254 +a(g224251 +g224253 +S'type' +p224255 +tp224256 +a(g224253 +g224255 +S'of' +p224257 +tp224258 +a(g224255 +g224257 +S'musical' +p224259 +tp224260 +a(g224257 +g224259 +S'composition.' +p224261 +tp224262 +a(g224259 +g224261 +S'tremendous' +p224263 +tp224264 +a(g224261 +g224263 +S'delicacy' +p224265 +tp224266 +a(g224263 +g224265 +S'is' +p224267 +tp224268 +a(g224265 +g224267 +S'shown' +p224269 +tp224270 +a(g224267 +g224269 +S'in' +p224271 +tp224272 +a(g224269 +g224271 +S'the' +p224273 +tp224274 +a(g224271 +g224273 +S'play' +p224275 +tp224276 +a(g224273 +g224275 +S'of' +p224277 +tp224278 +a(g224275 +g224277 +S'space' +p224279 +tp224280 +a(g224277 +g224279 +S'and' +p224281 +tp224282 +a(g224279 +g224281 +S'color,' +p224283 +tp224284 +a(g224281 +g224283 +S'with' +p224285 +tp224286 +a(g224283 +g224285 +S'the' +p224287 +tp224288 +a(g224285 +g224287 +S'white' +p224289 +tp224290 +a(g224287 +g224289 +S'"background"' +p224291 +tp224292 +a(g224289 +g224291 +S'as' +p224293 +tp224294 +a(g224291 +g224293 +S'important' +p224295 +tp224296 +a(g224293 +g224295 +S'to' +p224297 +tp224298 +a(g224295 +g224297 +S'the' +p224299 +tp224300 +a(g224297 +g224299 +S'overall' +p224301 +tp224302 +a(g224299 +g224301 +S'effect' +p224303 +tp224304 +a(g224301 +g224303 +S'as' +p224305 +tp224306 +a(g224303 +g224305 +S'the' +p224307 +tp224308 +a(g224305 +g224307 +S'red' +p224309 +tp224310 +a(g224307 +g224309 +S'bursts' +p224311 +tp224312 +a(g224309 +g224311 +S'of' +p224313 +tp224314 +a(g224311 +g224313 +S'color.' +p224315 +tp224316 +a(g224313 +g224315 +S'the' +p224317 +tp224318 +a(g224315 +g224317 +S'harmonic' +p224319 +tp224320 +a(g224317 +g224319 +S'color' +p224321 +tp224322 +a(g224319 +g224321 +S'field' +p224323 +tp224324 +a(g224321 +g224323 +S'is' +p224325 +tp224326 +a(g224323 +g224325 +S'no' +p224327 +tp224328 +a(g224325 +g224327 +S'accident:' +p224329 +tp224330 +a(g224327 +g224329 +S'the' +p224331 +tp224332 +a(g224329 +g224331 +S'compositional' +p224333 +tp224334 +a(g224331 +g224333 +S'and' +p224335 +tp224336 +a(g224333 +g224335 +S'color' +p224337 +tp224338 +a(g224335 +g224337 +S'structure' +p224339 +tp224340 +a(g224337 +g224339 +S'of' +p224341 +tp224342 +a(g224339 +g224341 +S'thomas' +p224343 +tp224344 +a(g224341 +g224343 +S'came' +p224345 +tp224346 +a(g224343 +g224345 +S'into' +p224347 +tp224348 +a(g224345 +g224347 +S'the' +p224349 +tp224350 +a(g224347 +g224349 +S'professional' +p224351 +tp224352 +a(g224349 +g224351 +S'art' +p224353 +tp224354 +a(g224351 +g224353 +S'world' +p224355 +tp224356 +a(g224353 +g224355 +S'late' +p224357 +tp224358 +a(g224355 +g224357 +S'in' +p224359 +tp224360 +a(g224357 +g224359 +S'life,' +p224361 +tp224362 +a(g224359 +g224361 +S'after' +p224363 +tp224364 +a(g224361 +g224363 +S'teaching' +p224365 +tp224366 +a(g224363 +g224365 +S'art' +p224367 +tp224368 +a(g224365 +g224367 +S'for' +p224369 +tp224370 +a(g224367 +g224369 +S'thirty-five' +p224371 +tp224372 +a(g224369 +g224371 +S'years' +p224373 +tp224374 +a(g224371 +g224373 +S'in' +p224375 +tp224376 +a(g224373 +g224375 +S'the' +p224377 +tp224378 +a(g224375 +g224377 +S'washington,' +p224379 +tp224380 +a(g224377 +g224379 +S'dc,' +p224381 +tp224382 +a(g224379 +g224381 +S'public' +p224383 +tp224384 +a(g224381 +g224383 +S'schools.' +p224385 +tp224386 +a(g224383 +g224385 +S'her' +p224387 +tp224388 +a(g224385 +g224387 +S'age,' +p224389 +tp224390 +a(g224387 +g224389 +S'however,' +p224391 +tp224392 +a(g224389 +g224391 +S'did' +p224393 +tp224394 +a(g224391 +g224393 +S'not' +p224395 +tp224396 +a(g224393 +g224395 +S'prevent' +p224397 +tp224398 +a(g224395 +g224397 +S'her' +p224399 +tp224400 +a(g224397 +g224399 +S'from' +p224401 +tp224402 +a(g224399 +g224401 +S'gaining' +p224403 +tp224404 +a(g224401 +g224403 +S'recognition' +p224405 +tp224406 +a(g224403 +g224405 +S'as' +p224407 +tp224408 +a(g224405 +g224407 +S'an' +p224409 +tp224410 +a(g224407 +g224409 +S'artist.' +p224411 +tp224412 +a(g224409 +g224411 +S'in' +p224413 +tp224414 +a(g224411 +g224413 +S'1972,' +p224415 +tp224416 +a(g224413 +g224415 +S'one' +p224417 +tp224418 +a(g224415 +g224417 +S'year' +p224419 +tp224420 +a(g224417 +g224419 +S'before' +p224421 +tp224422 +a(g224419 +g224421 +S'she' +p224423 +tp224424 +a(g224421 +g224423 +S'painted' +p224425 +tp224426 +a(g224423 +g224425 +S'clodion' +p224427 +tp224428 +a(g224425 +g224427 +S'specialized' +p224429 +tp224430 +a(g224427 +g224429 +S'in' +p224431 +tp224432 +a(g224429 +g224431 +S'small-scale' +p224433 +tp224434 +a(g224431 +g224433 +S'terracotta' +p224435 +tp224436 +a(g224433 +g224435 +S'figure' +p224437 +tp224438 +a(g224435 +g224437 +S'groups,' +p224439 +tp224440 +a(g224437 +g224439 +S'often' +p224441 +tp224442 +a(g224439 +g224441 +S'with' +p224443 +tp224444 +a(g224441 +g224443 +S'playfully' +p224445 +tp224446 +a(g224443 +g224445 +S'erotic' +p224447 +tp224448 +a(g224445 +g224447 +S'subjects' +p224449 +tp224450 +a(g224447 +g224449 +S'loosely' +p224451 +tp224452 +a(g224449 +g224451 +S'based' +p224453 +tp224454 +a(g224451 +g224453 +S'on' +p224455 +tp224456 +a(g224453 +g224455 +S'ancient' +p224457 +tp224458 +a(g224455 +g224457 +S'myths' +p224459 +tp224460 +a(g224457 +g224459 +S'concerning' +p224461 +tp224462 +a(g224459 +g224461 +S'the' +p224463 +tp224464 +a(g224461 +g224463 +S'wine' +p224465 +tp224466 +a(g224463 +g224465 +S'god' +p224467 +tp224468 +a(g224465 +g224467 +S'bacchus' +p224469 +tp224470 +a(g224467 +g224469 +S'and' +p224471 +tp224472 +a(g224469 +g224471 +S'his' +p224473 +tp224474 +a(g224471 +g224473 +S'devotees.' +p224475 +tp224476 +a(g224473 +g224475 +S'intended' +p224477 +tp224478 +a(g224475 +g224477 +S'for' +p224479 +tp224480 +a(g224477 +g224479 +S'enjoyment' +p224481 +tp224482 +a(g224479 +g224481 +S'at' +p224483 +tp224484 +a(g224481 +g224483 +S'close' +p224485 +tp224486 +a(g224483 +g224485 +S'range' +p224487 +tp224488 +a(g224485 +g224487 +S'in' +p224489 +tp224490 +a(g224487 +g224489 +S'elegant' +p224491 +tp224492 +a(g224489 +g224491 +S'domestic' +p224493 +tp224494 +a(g224491 +g224493 +S'settings,' +p224495 +tp224496 +a(g224493 +g224495 +S'these' +p224497 +tp224498 +a(g224495 +g224497 +S'inventions' +p224499 +tp224500 +a(g224497 +g224499 +S'were' +p224501 +tp224502 +a(g224499 +g224501 +S'the' +p224503 +tp224504 +a(g224501 +g224503 +S'fruits' +p224505 +tp224506 +a(g224503 +g224505 +S'of' +p224507 +tp224508 +a(g224505 +g224507 +S'years' +p224509 +tp224510 +a(g224507 +g224509 +S'of' +p224511 +tp224512 +a(g224509 +g224511 +S'study' +p224513 +tp224514 +a(g224511 +g224513 +S'in' +p224515 +tp224516 +a(g224513 +g224515 +S'italy.' +p224517 +tp224518 +a(g224515 +g224517 +S'although' +p224519 +tp224520 +a(g224517 +g224519 +S'signed' +p224521 +tp224522 +a(g224519 +g224521 +S'and' +p224523 +tp224524 +a(g224521 +g224523 +S'clearly' +p224525 +tp224526 +a(g224523 +g224525 +S'meant' +p224527 +tp224528 +a(g224525 +g224527 +S'to' +p224529 +tp224530 +a(g224527 +g224529 +S'be' +p224531 +tp224532 +a(g224529 +g224531 +S'preserved,' +p224533 +tp224534 +a(g224531 +g224533 +S'this' +p224535 +tp224536 +a(g224533 +g224535 +S'example' +p224537 +tp224538 +a(g224535 +g224537 +S'was' +p224539 +tp224540 +a(g224537 +g224539 +S'sculpted' +p224541 +tp224542 +a(g224539 +g224541 +S'as' +p224543 +tp224544 +a(g224541 +g224543 +S'a' +p224545 +tp224546 +a(g224543 +g224545 +S'model' +p224547 +tp224548 +a(g224545 +g224547 +S'for' +p224549 +tp224550 +a(g224547 +g224549 +S'a' +p224551 +tp224552 +a(g224549 +g224551 +S'large-scale' +p224553 +tp224554 +a(g224551 +g224553 +S'work' +p224555 +tp224556 +a(g224553 +g224555 +S'in' +p224557 +tp224558 +a(g224555 +g224557 +S'marble.' +p224559 +tp224560 +a(g224557 +g224559 +S'the' +p224561 +tp224562 +a(g224559 +g224561 +S'national' +p224563 +tp224564 +a(g224561 +g224563 +S'gallery' +p224565 +tp224566 +a(g224563 +g224565 +S'also' +p224567 +tp224568 +a(g224565 +g224567 +S'owns' +p224569 +tp224570 +a(g224567 +g224569 +S'the' +p224571 +tp224572 +a(g224569 +g224571 +S'the' +p224573 +tp224574 +a(g224571 +g224573 +S'marble' +p224575 +tp224576 +a(g224573 +g224575 +S'in' +p224577 +tp224578 +a(g224575 +g224577 +S'arnold' +p224579 +tp224580 +a(g224577 +g224579 +S"böcklin's" +p224581 +tp224582 +a(g224579 +g224581 +S'at' +p224583 +tp224584 +a(g224581 +g224583 +S'first' +p224585 +tp224586 +a(g224583 +g224585 +S'glance,' +p224587 +tp224588 +a(g224585 +g224587 +S'the' +p224589 +tp224590 +a(g224587 +g224589 +S'subject' +p224591 +tp224592 +a(g224589 +g224591 +S'appears' +p224593 +tp224594 +a(g224591 +g224593 +S'very' +p224595 +tp224596 +a(g224593 +g224595 +S'realistic' +p224597 +tp224598 +a(g224595 +g224597 +S'and' +p224599 +tp224600 +a(g224597 +g224599 +S'the' +p224601 +tp224602 +a(g224599 +g224601 +S'shrine' +p224603 +tp224604 +a(g224601 +g224603 +S'archaeologically' +p224605 +tp224606 +a(g224603 +g224605 +S'accurate.' +p224607 +tp224608 +a(g224605 +g224607 +S'yet' +p224609 +tp224610 +a(g224607 +g224609 +S'the' +p224611 +tp224612 +a(g224609 +g224611 +S'scene' +p224613 +tp224614 +a(g224611 +g224613 +S'also' +p224615 +tp224616 +a(g224613 +g224615 +S'conveys' +p224617 +tp224618 +a(g224615 +g224617 +S'a' +p224619 +tp224620 +a(g224617 +g224619 +S'definite' +p224621 +tp224622 +a(g224619 +g224621 +S'mood' +p224623 +tp224624 +a(g224621 +g224623 +S'of' +p224625 +tp224626 +a(g224623 +g224625 +S'mystery.' +p224627 +tp224628 +a(g224625 +g224627 +S'the' +p224629 +tp224630 +a(g224627 +g224629 +S"stones'" +p224631 +tp224632 +a(g224629 +g224631 +S'pure' +p224633 +tp224634 +a(g224631 +g224633 +S'and' +p224635 +tp224636 +a(g224633 +g224635 +S'richly' +p224637 +tp224638 +a(g224635 +g224637 +S'harmonious' +p224639 +tp224640 +a(g224637 +g224639 +S'colors' +p224641 +tp224642 +a(g224639 +g224641 +S'glow' +p224643 +tp224644 +a(g224641 +g224643 +S'with' +p224645 +tp224646 +a(g224643 +g224645 +S'an' +p224647 +tp224648 +a(g224645 +g224647 +S'unnatural' +p224649 +tp224650 +a(g224647 +g224649 +S'radiance.' +p224651 +tp224652 +a(g224649 +g224651 +S'the' +p224653 +tp224654 +a(g224651 +g224653 +S'gloom' +p224655 +tp224656 +a(g224653 +g224655 +S'inside' +p224657 +tp224658 +a(g224655 +g224657 +S'the' +p224659 +tp224660 +a(g224657 +g224659 +S'grove' +p224661 +tp224662 +a(g224659 +g224661 +S'is' +p224663 +tp224664 +a(g224661 +g224663 +S'equaled' +p224665 +tp224666 +a(g224663 +g224665 +S'by' +p224667 +tp224668 +a(g224665 +g224667 +S'the' +p224669 +tp224670 +a(g224667 +g224669 +S'dark' +p224671 +tp224672 +a(g224669 +g224671 +S'ominous' +p224673 +tp224674 +a(g224671 +g224673 +S'clouds,' +p224675 +tp224676 +a(g224673 +g224675 +S'lit' +p224677 +tp224678 +a(g224675 +g224677 +S'by' +p224679 +tp224680 +a(g224677 +g224679 +S'flashes' +p224681 +tp224682 +a(g224679 +g224681 +S'of' +p224683 +tp224684 +a(g224681 +g224683 +S'lightning' +p224685 +tp224686 +a(g224683 +g224685 +S'on' +p224687 +tp224688 +a(g224685 +g224687 +S'the' +p224689 +tp224690 +a(g224687 +g224689 +S'horizon.' +p224691 +tp224692 +a(g224689 +g224691 +S'indebted' +p224693 +tp224694 +a(g224691 +g224693 +S'to' +p224695 +tp224696 +a(g224693 +g224695 +S'the' +p224697 +tp224698 +a(g224695 +g224697 +S'romantics' +p224699 +tp224700 +a(g224697 +g224699 +S'of' +p224701 +tp224702 +a(g224699 +g224701 +S'the' +p224703 +tp224704 +a(g224701 +g224703 +S'first' +p224705 +tp224706 +a(g224703 +g224705 +S'half' +p224707 +tp224708 +a(g224705 +g224707 +S'of' +p224709 +tp224710 +a(g224707 +g224709 +S'the' +p224711 +tp224712 +a(g224709 +g224711 +S'19th' +p224713 +tp224714 +a(g224711 +g224713 +S'century,' +p224715 +tp224716 +a(g224713 +g224715 +S'böcklin' +p224717 +tp224718 +a(g224715 +g224717 +S'rejected' +p224719 +tp224720 +a(g224717 +g224719 +S'the' +p224721 +tp224722 +a(g224719 +g224721 +S'idea' +p224723 +tp224724 +a(g224721 +g224723 +S'of' +p224725 +tp224726 +a(g224723 +g224725 +S'painting' +p224727 +tp224728 +a(g224725 +g224727 +S'solely' +p224729 +tp224730 +a(g224727 +g224729 +S'from' +p224731 +tp224732 +a(g224729 +g224731 +S'nature,' +p224733 +tp224734 +a(g224731 +g224733 +S'and' +p224735 +tp224736 +a(g224733 +g224735 +S'strove' +p224737 +tp224738 +a(g224735 +g224737 +S'to' +p224739 +tp224740 +a(g224737 +g224739 +S'express' +p224741 +tp224742 +a(g224739 +g224741 +S'his' +p224743 +tp224744 +a(g224741 +g224743 +S'own' +p224745 +tp224746 +a(g224743 +g224745 +S'feelings' +p224747 +tp224748 +a(g224745 +g224747 +S'through' +p224749 +tp224750 +a(g224747 +g224749 +S'nature,' +p224751 +tp224752 +a(g224749 +g224751 +S'with' +p224753 +tp224754 +a(g224751 +g224753 +S'the' +p224755 +tp224756 +a(g224753 +g224755 +S'use' +p224757 +tp224758 +a(g224755 +g224757 +S'of' +p224759 +tp224760 +a(g224757 +g224759 +S'vibrant' +p224761 +tp224762 +a(g224759 +g224761 +S'coloration' +p224763 +tp224764 +a(g224761 +g224763 +S'and' +p224765 +tp224766 +a(g224763 +g224765 +S'dramatic' +p224767 +tp224768 +a(g224765 +g224767 +S'lighting.' +p224769 +tp224770 +a(g224767 +g224769 +S'in' +p224771 +tp224772 +a(g224769 +g224771 +S'1947' +p224773 +tp224774 +a(g224771 +g224773 +S'jackson' +p224775 +tp224776 +a(g224773 +g224775 +S'pollock' +p224777 +tp224778 +a(g224775 +g224777 +S'introduced' +p224779 +tp224780 +a(g224777 +g224779 +S'a' +p224781 +tp224782 +a(g224779 +g224781 +S'radically' +p224783 +tp224784 +a(g224781 +g224783 +S'innovative' +p224785 +tp224786 +a(g224783 +g224785 +S'method' +p224787 +tp224788 +a(g224785 +g224787 +S'of' +p224789 +tp224790 +a(g224787 +g224789 +S'painting' +p224791 +tp224792 +a(g224789 +g224791 +S'in' +p224793 +tp224794 +a(g224791 +g224793 +S'which' +p224795 +tp224796 +a(g224793 +g224795 +S'he' +p224797 +tp224798 +a(g224795 +g224797 +S'poured' +p224799 +tp224800 +a(g224797 +g224799 +S'paint' +p224801 +tp224802 +a(g224799 +g224801 +S'directly' +p224803 +tp224804 +a(g224801 +g224803 +S'onto' +p224805 +tp224806 +a(g224803 +g224805 +S'unprimed' +p224807 +tp224808 +a(g224805 +g224807 +S'canvas' +p224809 +tp224810 +a(g224807 +g224809 +S'that' +p224811 +tp224812 +a(g224809 +g224811 +S'he' +p224813 +tp224814 +a(g224811 +g224813 +S'tacked' +p224815 +tp224816 +a(g224813 +g224815 +S'to' +p224817 +tp224818 +a(g224815 +g224817 +S'the' +p224819 +tp224820 +a(g224817 +g224819 +S'studio' +p224821 +tp224822 +a(g224819 +g224821 +S'floor.' +p224823 +tp224824 +a(g224821 +g224823 +S'deploying' +p224825 +tp224826 +a(g224823 +g224825 +S'sticks' +p224827 +tp224828 +a(g224825 +g224827 +S'or' +p224829 +tp224830 +a(g224827 +g224829 +S'hardened' +p224831 +tp224832 +a(g224829 +g224831 +S'brushes,' +p224833 +tp224834 +a(g224831 +g224833 +S'pollock' +p224835 +tp224836 +a(g224833 +g224835 +S'circled' +p224837 +tp224838 +a(g224835 +g224837 +S'around' +p224839 +tp224840 +a(g224837 +g224839 +S'the' +p224841 +tp224842 +a(g224839 +g224841 +S'canvas,' +p224843 +tp224844 +a(g224841 +g224843 +S'flinging,' +p224845 +tp224846 +a(g224843 +g224845 +S'dripping,' +p224847 +tp224848 +a(g224845 +g224847 +S'and' +p224849 +tp224850 +a(g224847 +g224849 +S'splashing' +p224851 +tp224852 +a(g224849 +g224851 +S'skeins' +p224853 +tp224854 +a(g224851 +g224853 +S'of' +p224855 +tp224856 +a(g224853 +g224855 +S'paint' +p224857 +tp224858 +a(g224855 +g224857 +S'onto' +p224859 +tp224860 +a(g224857 +g224859 +S'its' +p224861 +tp224862 +a(g224859 +g224861 +S'surface,' +p224863 +tp224864 +a(g224861 +g224863 +S'layer' +p224865 +tp224866 +a(g224863 +g224865 +S'upon' +p224867 +tp224868 +a(g224865 +g224867 +S'layer,' +p224869 +tp224870 +a(g224867 +g224869 +S'until' +p224871 +tp224872 +a(g224869 +g224871 +S'a' +p224873 +tp224874 +a(g224871 +g224873 +S'dense' +p224875 +tp224876 +a(g224873 +g224875 +S'web' +p224877 +tp224878 +a(g224875 +g224877 +S'of' +p224879 +tp224880 +a(g224877 +g224879 +S'color' +p224881 +tp224882 +a(g224879 +g224881 +S'was' +p224883 +tp224884 +a(g224881 +g224883 +S'formed.' +p224885 +tp224886 +a(g224883 +g224885 +S'although' +p224887 +tp224888 +a(g224885 +g224887 +S'his' +p224889 +tp224890 +a(g224887 +g224889 +S'process,' +p224891 +tp224892 +a(g224889 +g224891 +S'which' +p224893 +tp224894 +a(g224891 +g224893 +S'was' +p224895 +tp224896 +a(g224893 +g224895 +S'filmed' +p224897 +tp224898 +a(g224895 +g224897 +S'in' +p224899 +tp224900 +a(g224897 +g224899 +S'1950' +p224901 +tp224902 +a(g224899 +g224901 +S'by' +p224903 +tp224904 +a(g224901 +g224903 +S'the' +p224905 +tp224906 +a(g224903 +g224905 +S'photographer' +p224907 +tp224908 +a(g224905 +g224907 +S'hans' +p224909 +tp224910 +a(g224907 +g224909 +S'namuth,' +p224911 +tp224912 +a(g224909 +g224911 +S'was' +p224913 +tp224914 +a(g224911 +g224913 +S'spontaneous' +p224915 +tp224916 +a(g224913 +g224915 +S'and' +p224917 +tp224918 +a(g224915 +g224917 +S'intuitive,' +p224919 +tp224920 +a(g224917 +g224919 +S'pollock' +p224921 +tp224922 +a(g224919 +g224921 +S'exercised' +p224923 +tp224924 +a(g224921 +g224923 +S'remarkable' +p224925 +tp224926 +a(g224923 +g224925 +S'control' +p224927 +tp224928 +a(g224925 +g224927 +S'over' +p224929 +tp224930 +a(g224927 +g224929 +S'it' +p224931 +tp224932 +a(g224929 +g224931 +S'and' +p224933 +tp224934 +a(g224931 +g224933 +S'insisted,' +p224935 +tp224936 +a(g224933 +g224935 +S'"there' +p224937 +tp224938 +a(g224935 +g224937 +S'is' +p224939 +tp224940 +a(g224937 +g224939 +S'no' +p224941 +tp224942 +a(g224939 +g224941 +S'accident."' +p224943 +tp224944 +a(g224941 +g224943 +S'number' +p224945 +tp224946 +a(g224943 +g224945 +S'1' +p224947 +tp224948 +a(g224945 +g224947 +S'(lavender' +p224949 +tp224950 +a(g224947 +g224949 +S'mist)' +p224951 +tp224952 +a(g224949 +g224951 +S'in' +p224953 +tp224954 +a(g224951 +g224953 +S'the' +p224955 +tp224956 +a(g224953 +g224955 +S'later' +p224957 +tp224958 +a(g224955 +g224957 +S'1880s,' +p224959 +tp224960 +a(g224957 +g224959 +S'willard' +p224961 +tp224962 +a(g224959 +g224961 +S'"willy"' +p224963 +tp224964 +a(g224961 +g224963 +S'metcalf' +p224965 +tp224966 +a(g224963 +g224965 +S'visited' +p224967 +tp224968 +a(g224965 +g224967 +S'and' +p224969 +tp224970 +a(g224967 +g224969 +S'summered' +p224971 +tp224972 +a(g224969 +g224971 +S'four' +p224973 +tp224974 +a(g224971 +g224973 +S'times' +p224975 +tp224976 +a(g224973 +g224975 +S'at' +p224977 +tp224978 +a(g224975 +g224977 +S'giverny,' +p224979 +tp224980 +a(g224977 +g224979 +S'northwest' +p224981 +tp224982 +a(g224979 +g224981 +S'of' +p224983 +tp224984 +a(g224981 +g224983 +S'paris.' +p224985 +tp224986 +a(g224983 +g224985 +S'giverny' +p224987 +tp224988 +a(g224985 +g224987 +S'had' +p224989 +tp224990 +a(g224987 +g224989 +S'been' +p224991 +tp224992 +a(g224989 +g224991 +S'home' +p224993 +tp224994 +a(g224991 +g224993 +S'to' +p224995 +tp224996 +a(g224993 +g224995 +S'the' +p224997 +tp224998 +a(g224995 +g224997 +S'famous' +p224999 +tp225000 +a(g224997 +g224999 +S'impressionist' +p225001 +tp225002 +a(g224999 +g225001 +S'claude' +p225003 +tp225004 +a(g225001 +g225003 +S'monet' +p225005 +tp225006 +a(g225003 +g225005 +S'since' +p225007 +tp225008 +a(g225005 +g225007 +S'1883.' +p225009 +tp225010 +a(g225007 +g225009 +S'although' +p225011 +tp225012 +a(g225009 +g225011 +S'metcalf' +p225013 +tp225014 +a(g225011 +g225013 +S'knew' +p225015 +tp225016 +a(g225013 +g225015 +S'the' +p225017 +tp225018 +a(g225015 +g225017 +S'older' +p225019 +tp225020 +a(g225017 +g225019 +S'french' +p225021 +tp225022 +a(g225019 +g225021 +S'painter,' +p225023 +tp225024 +a(g225021 +g225023 +S'it' +p225025 +tp225026 +a(g225023 +g225025 +S'was' +p225027 +tp225028 +a(g225025 +g225027 +S'the' +p225029 +tp225030 +a(g225027 +g225029 +S'rustic' +p225031 +tp225032 +a(g225029 +g225031 +S'village' +p225033 +tp225034 +a(g225031 +g225033 +S'itself' +p225035 +tp225036 +a(g225033 +g225035 +S'that' +p225037 +tp225038 +a(g225035 +g225037 +S'drew' +p225039 +tp225040 +a(g225037 +g225039 +S'the' +p225041 +tp225042 +a(g225039 +g225041 +S'young' +p225043 +tp225044 +a(g225041 +g225043 +S'american' +p225045 +tp225046 +a(g225043 +g225045 +S'to' +p225047 +tp225048 +a(g225045 +g225047 +S'the' +p225049 +tp225050 +a(g225047 +g225049 +S'area.' +p225051 +tp225052 +a(g225049 +g225051 +S'the' +p225053 +tp225054 +a(g225051 +g225053 +S'calm' +p225055 +tp225056 +a(g225053 +g225055 +S'structure' +p225057 +tp225058 +a(g225055 +g225057 +S'of' +p225059 +tp225060 +a(g225057 +g225059 +S"giverny's" +p225061 +tp225062 +a(g225059 +g225061 +S'plowed' +p225063 +tp225064 +a(g225061 +g225063 +S'fields,' +p225065 +tp225066 +a(g225063 +g225065 +S'stone-walled' +p225067 +tp225068 +a(g225065 +g225067 +S'roads,' +p225069 +tp225070 +a(g225067 +g225069 +S'and' +p225071 +tp225072 +a(g225069 +g225071 +S'tile-roofed' +p225073 +tp225074 +a(g225071 +g225073 +S'farmhouses' +p225075 +tp225076 +a(g225073 +g225075 +S'fascinated' +p225077 +tp225078 +a(g225075 +g225077 +S'many' +p225079 +tp225080 +a(g225077 +g225079 +S'painters.' +p225081 +tp225082 +a(g225079 +g225081 +S'here,' +p225083 +tp225084 +a(g225081 +g225083 +S'several' +p225085 +tp225086 +a(g225083 +g225085 +S'building' +p225087 +tp225088 +a(g225085 +g225087 +S'eaves' +p225089 +tp225090 +a(g225087 +g225089 +S'and' +p225091 +tp225092 +a(g225089 +g225091 +S'crop' +p225093 +tp225094 +a(g225091 +g225093 +S'lines' +p225095 +tp225096 +a(g225093 +g225095 +S'point' +p225097 +tp225098 +a(g225095 +g225097 +S'toward' +p225099 +tp225100 +a(g225097 +g225099 +S'the' +p225101 +tp225102 +a(g225099 +g225101 +S'shimmering' +p225103 +tp225104 +a(g225101 +g225103 +S'orb' +p225105 +tp225106 +a(g225103 +g225105 +S'of' +p225107 +tp225108 +a(g225105 +g225107 +S'a' +p225109 +tp225110 +a(g225107 +g225109 +S'full' +p225111 +tp225112 +a(g225109 +g225111 +S'moon' +p225113 +tp225114 +a(g225111 +g225113 +S'rising' +p225115 +tp225116 +a(g225113 +g225115 +S'through' +p225117 +tp225118 +a(g225115 +g225117 +S'rosy' +p225119 +tp225120 +a(g225117 +g225119 +S'clouds' +p225121 +tp225122 +a(g225119 +g225121 +S'over' +p225123 +tp225124 +a(g225121 +g225123 +S'the' +p225125 +tp225126 +a(g225123 +g225125 +S'eastern' +p225127 +tp225128 +a(g225125 +g225127 +S'horizon.' +p225129 +tp225130 +a(g225127 +g225129 +S'sunset' +p225131 +tp225132 +a(g225129 +g225131 +S'imparts' +p225133 +tp225134 +a(g225131 +g225133 +S'a' +p225135 +tp225136 +a(g225133 +g225135 +S'yellow' +p225137 +tp225138 +a(g225135 +g225137 +S'warmth' +p225139 +tp225140 +a(g225137 +g225139 +S'to' +p225141 +tp225142 +a(g225139 +g225141 +S'the' +p225143 +tp225144 +a(g225141 +g225143 +S'stuccoed' +p225145 +tp225146 +a(g225143 +g225145 +S'walls,' +p225147 +tp225148 +a(g225145 +g225147 +S'while' +p225149 +tp225150 +a(g225147 +g225149 +S'the' +p225151 +tp225152 +a(g225149 +g225151 +S'complementary' +p225153 +tp225154 +a(g225151 +g225153 +S'color' +p225155 +tp225156 +a(g225153 +g225155 +S'of' +p225157 +tp225158 +a(g225155 +g225157 +S'violet' +p225159 +tp225160 +a(g225157 +g225159 +S'marks' +p225161 +tp225162 +a(g225159 +g225161 +S'the' +p225163 +tp225164 +a(g225161 +g225163 +S'lengthening' +p225165 +tp225166 +a(g225163 +g225165 +S'shadows' +p225167 +tp225168 +a(g225165 +g225167 +S'of' +p225169 +tp225170 +a(g225167 +g225169 +S'late' +p225171 +tp225172 +a(g225169 +g225171 +S'afternoon.' +p225173 +tp225174 +a(g225171 +g225173 +S'the' +p225175 +tp225176 +a(g225173 +g225175 +S'deep' +p225177 +tp225178 +a(g225175 +g225177 +S'blue-greens' +p225179 +tp225180 +a(g225177 +g225179 +S'of' +p225181 +tp225182 +a(g225179 +g225181 +S'the' +p225183 +tp225184 +a(g225181 +g225183 +S'foreground' +p225185 +tp225186 +a(g225183 +g225185 +S'bushes' +p225187 +tp225188 +a(g225185 +g225187 +S'similarly' +p225189 +tp225190 +a(g225187 +g225189 +S'balance' +p225191 +tp225192 +a(g225189 +g225191 +S'and' +p225193 +tp225194 +a(g225191 +g225193 +S'contrast' +p225195 +tp225196 +a(g225193 +g225195 +S'with' +p225197 +tp225198 +a(g225195 +g225197 +S'the' +p225199 +tp225200 +a(g225197 +g225199 +S'red-oranges' +p225201 +tp225202 +a(g225199 +g225201 +S'of' +p225203 +tp225204 +a(g225201 +g225203 +S'the' +p225205 +tp225206 +a(g225203 +g225205 +S'terracotta' +p225207 +tp225208 +a(g225205 +g225207 +S'roofs.' +p225209 +tp225210 +a(g225207 +g225209 +S'metcalf' +p225211 +tp225212 +a(g225209 +g225211 +S'traveled' +p225213 +tp225214 +a(g225211 +g225213 +S'incessantly,' +p225215 +tp225216 +a(g225213 +g225215 +S'painting' +p225217 +tp225218 +a(g225215 +g225217 +S'italian' +p225219 +tp225220 +a(g225217 +g225219 +S'villages' +p225221 +tp225222 +a(g225219 +g225221 +S'in' +p225223 +tp225224 +a(g225221 +g225223 +S'the' +p225225 +tp225226 +a(g225223 +g225225 +S'tuscan' +p225227 +tp225228 +a(g225225 +g225227 +S'hills,' +p225229 +tp225230 +a(g225227 +g225229 +S'arab' +p225231 +tp225232 +a(g225229 +g225231 +S'markets' +p225233 +tp225234 +a(g225231 +g225233 +S'in' +p225235 +tp225236 +a(g225233 +g225235 +S'tunisia,' +p225237 +tp225238 +a(g225235 +g225237 +S'and' +p225239 +tp225240 +a(g225237 +g225239 +S'zuni' +p225241 +tp225242 +a(g225239 +g225241 +S'pueblos' +p225243 +tp225244 +a(g225241 +g225243 +S'in' +p225245 +tp225246 +a(g225243 +g225245 +S'new' +p225247 +tp225248 +a(g225245 +g225247 +S'mexico.' +p225249 +tp225250 +a(g225247 +g225249 +S'despite' +p225251 +tp225252 +a(g225249 +g225251 +S'his' +p225253 +tp225254 +a(g225251 +g225253 +S'restlessness,' +p225255 +tp225256 +a(g225253 +g225255 +S'he' +p225257 +tp225258 +a(g225255 +g225257 +S'kept' +p225259 +tp225260 +a(g225257 +g225259 +S'returning' +p225261 +tp225262 +a(g225259 +g225261 +S'to' +p225263 +tp225264 +a(g225261 +g225263 +S'his' +p225265 +tp225266 +a(g225263 +g225265 +S'native' +p225267 +tp225268 +a(g225265 +g225267 +S'massachusetts.' +p225269 +tp225270 +a(g225267 +g225269 +S'his' +p225271 +tp225272 +a(g225269 +g225271 +S'new' +p225273 +tp225274 +a(g225271 +g225273 +S'england' +p225275 +tp225276 +a(g225273 +g225275 +S'woodland' +p225277 +tp225278 +a(g225275 +g225277 +S'and' +p225279 +tp225280 +a(g225277 +g225279 +S'coastal' +p225281 +tp225282 +a(g225279 +g225281 +S'scenes' +p225283 +tp225284 +a(g225281 +g225283 +S'captured' +p225285 +tp225286 +a(g225283 +g225285 +S'every' +p225287 +tp225288 +a(g225285 +g225287 +S'season' +p225289 +tp225290 +a(g225287 +g225289 +S'of' +p225291 +tp225292 +a(g225289 +g225291 +S'the' +p225293 +tp225294 +a(g225291 +g225293 +S'year' +p225295 +tp225296 +a(g225293 +g225295 +S'and' +p225297 +tp225298 +a(g225295 +g225297 +S'eventually' +p225299 +tp225300 +a(g225297 +g225299 +S'earned' +p225301 +tp225302 +a(g225299 +g225301 +S'his' +p225303 +tp225304 +a(g225301 +g225303 +S'fame.' +p225305 +tp225306 +a(g225303 +g225305 +S'ironically,' +p225307 +tp225308 +a(g225305 +g225307 +S'for' +p225309 +tp225310 +a(g225307 +g225309 +S'an' +p225311 +tp225312 +a(g225309 +g225311 +S'artist' +p225313 +tp225314 +a(g225311 +g225313 +S'who' +p225315 +tp225316 +a(g225313 +g225315 +S'could' +p225317 +tp225318 +a(g225315 +g225317 +S'so' +p225319 +tp225320 +a(g225317 +g225319 +S'beautifully' +p225321 +tp225322 +a(g225319 +g225321 +S'convey' +p225323 +tp225324 +a(g225321 +g225323 +S'the' +p225325 +tp225326 +a(g225323 +g225325 +S"earth's" +p225327 +tp225328 +a(g225325 +g225327 +S'placid' +p225329 +tp225330 +a(g225327 +g225329 +S'serenity,' +p225331 +tp225332 +a(g225329 +g225331 +S'metcalf' +p225333 +tp225334 +a(g225331 +g225333 +S'led' +p225335 +tp225336 +a(g225333 +g225335 +S'a' +p225337 +tp225338 +a(g225335 +g225337 +S'bohemian' +p225339 +tp225340 +a(g225337 +g225339 +S'life' +p225341 +tp225342 +a(g225339 +g225341 +S'obsessed' +p225343 +tp225344 +a(g225341 +g225343 +S'with' +p225345 +tp225346 +a(g225343 +g225345 +S'women,' +p225347 +tp225348 +a(g225345 +g225347 +S'alcohol,' +p225349 +tp225350 +a(g225347 +g225349 +S'and' +p225351 +tp225352 +a(g225349 +g225351 +S'occult' +p225353 +tp225354 +a(g225351 +g225353 +S'spiritualism.' +p225355 +tp225356 +a(g225353 +g225355 +S'in' +p225357 +tp225358 +a(g225355 +g225357 +S'this' +p225359 +tp225360 +a(g225357 +g225359 +S'altarpiece' +p225361 +tp225362 +a(g225359 +g225361 +S'panel,' +p225363 +tp225364 +a(g225361 +g225363 +S'the' +p225365 +tp225366 +a(g225363 +g225365 +S'virgin' +p225367 +tp225368 +a(g225365 +g225367 +S'and' +p225369 +tp225370 +a(g225367 +g225369 +S'her' +p225371 +tp225372 +a(g225369 +g225371 +S'mother,' +p225373 +tp225374 +a(g225371 +g225373 +S'saint' +p225375 +tp225376 +a(g225373 +g225375 +S'anne,' +p225377 +tp225378 +a(g225375 +g225377 +S'flank' +p225379 +tp225380 +a(g225377 +g225379 +S'the' +p225381 +tp225382 +a(g225379 +g225381 +S'infant' +p225383 +tp225384 +a(g225381 +g225383 +S'jesus.' +p225385 +tp225386 +a(g225383 +g225385 +S'images' +p225387 +tp225388 +a(g225385 +g225387 +S'with' +p225389 +tp225390 +a(g225387 +g225389 +S'saint' +p225391 +tp225392 +a(g225389 +g225391 +S'anne' +p225393 +tp225394 +a(g225391 +g225393 +S'became' +p225395 +tp225396 +a(g225393 +g225395 +S'common' +p225397 +tp225398 +a(g225395 +g225397 +S'in' +p225399 +tp225400 +a(g225397 +g225399 +S'the' +p225401 +tp225402 +a(g225399 +g225401 +S'fifteenth' +p225403 +tp225404 +a(g225401 +g225403 +S'century' +p225405 +tp225406 +a(g225403 +g225405 +S'as' +p225407 +tp225408 +a(g225405 +g225407 +S'her' +p225409 +tp225410 +a(g225407 +g225409 +S'popularity' +p225411 +tp225412 +a(g225409 +g225411 +S'grew,' +p225413 +tp225414 +a(g225411 +g225413 +S'and' +p225415 +tp225416 +a(g225413 +g225415 +S'this' +p225417 +tp225418 +a(g225415 +g225417 +S'arrangement' +p225419 +tp225420 +a(g225417 +g225419 +S'is' +p225421 +tp225422 +a(g225419 +g225421 +S'one' +p225423 +tp225424 +a(g225421 +g225423 +S'of' +p225425 +tp225426 +a(g225423 +g225425 +S'the' +p225427 +tp225428 +a(g225425 +g225427 +S'two' +p225429 +tp225430 +a(g225427 +g225429 +S'principal' +p225431 +tp225432 +a(g225429 +g225431 +S'ways' +p225433 +tp225434 +a(g225431 +g225433 +S'in' +p225435 +tp225436 +a(g225433 +g225435 +S'which' +p225437 +tp225438 +a(g225435 +g225437 +S'she' +p225439 +tp225440 +a(g225437 +g225439 +S'was' +p225441 +tp225442 +a(g225439 +g225441 +S'shown.' +p225443 +tp225444 +a(g225441 +g225443 +S'the' +p225445 +tp225446 +a(g225443 +g225445 +S'figure' +p225447 +tp225448 +a(g225445 +g225447 +S'of' +p225449 +tp225450 +a(g225447 +g225449 +S'god' +p225451 +tp225452 +a(g225449 +g225451 +S'the' +p225453 +tp225454 +a(g225451 +g225453 +S'father' +p225455 +tp225456 +a(g225453 +g225455 +S'appears' +p225457 +tp225458 +a(g225455 +g225457 +S'in' +p225459 +tp225460 +a(g225457 +g225459 +S'a' +p225461 +tp225462 +a(g225459 +g225461 +S'gold' +p225463 +tp225464 +a(g225461 +g225463 +S'ground' +p225465 +tp225466 +a(g225463 +g225465 +S'above' +p225467 +tp225468 +a(g225465 +g225467 +S'the' +p225469 +tp225470 +a(g225467 +g225469 +S'baby’s' +p225471 +tp225472 +a(g225469 +g225471 +S'head,' +p225473 +tp225474 +a(g225471 +g225473 +S'and' +p225475 +tp225476 +a(g225473 +g225475 +S'the' +p225477 +tp225478 +a(g225475 +g225477 +S'dove' +p225479 +tp225480 +a(g225477 +g225479 +S'of' +p225481 +tp225482 +a(g225479 +g225481 +S'the' +p225483 +tp225484 +a(g225481 +g225483 +S'holy' +p225485 +tp225486 +a(g225483 +g225485 +S'spirit' +p225487 +tp225488 +a(g225485 +g225487 +S'hovers' +p225489 +tp225490 +a(g225487 +g225489 +S'between' +p225491 +tp225492 +a(g225489 +g225491 +S'them.' +p225493 +tp225494 +a(g225491 +g225493 +S'the' +p225495 +tp225496 +a(g225493 +g225495 +S'composition' +p225497 +tp225498 +a(g225495 +g225497 +S'links' +p225499 +tp225500 +a(g225497 +g225499 +S'the' +p225501 +tp225502 +a(g225499 +g225501 +S'trinity—the' +p225503 +tp225504 +a(g225501 +g225503 +S'father,' +p225505 +tp225506 +a(g225503 +g225505 +S'the' +p225507 +tp225508 +a(g225505 +g225507 +S'son,' +p225509 +tp225510 +a(g225507 +g225509 +S'and' +p225511 +tp225512 +a(g225509 +g225511 +S'the' +p225513 +tp225514 +a(g225511 +g225513 +S'holy' +p225515 +tp225516 +a(g225513 +g225515 +S'ghost—with' +p225517 +tp225518 +a(g225515 +g225517 +S'the' +p225519 +tp225520 +a(g225517 +g225519 +S'triad' +p225521 +tp225522 +a(g225519 +g225521 +S'of' +p225523 +tp225524 +a(g225521 +g225523 +S'mother,' +p225525 +tp225526 +a(g225523 +g225525 +S'mary,' +p225527 +tp225528 +a(g225525 +g225527 +S'and' +p225529 +tp225530 +a(g225527 +g225529 +S'child.' +p225531 +tp225532 +a(g225529 +g225531 +S'the' +p225533 +tp225534 +a(g225531 +g225533 +S'visual' +p225535 +tp225536 +a(g225533 +g225535 +S'parallel' +p225537 +tp225538 +a(g225535 +g225537 +S'enhances' +p225539 +tp225540 +a(g225537 +g225539 +S'anne’s' +p225541 +tp225542 +a(g225539 +g225541 +S'status' +p225543 +tp225544 +a(g225541 +g225543 +S'and' +p225545 +tp225546 +a(g225543 +g225545 +S'underlines' +p225547 +tp225548 +a(g225545 +g225547 +S'christ’s' +p225549 +tp225550 +a(g225547 +g225549 +S'dual' +p225551 +tp225552 +a(g225549 +g225551 +S'nature' +p225553 +tp225554 +a(g225551 +g225553 +S'as' +p225555 +tp225556 +a(g225553 +g225555 +S'both' +p225557 +tp225558 +a(g225555 +g225557 +S'human' +p225559 +tp225560 +a(g225557 +g225559 +S'and' +p225561 +tp225562 +a(g225559 +g225561 +S'divine.' +p225563 +tp225564 +a(g225561 +g225563 +S'(a' +p225565 +tp225566 +a(g225563 +g225565 +S'larger' +p225567 +tp225568 +a(g225565 +g225567 +S'the' +p225569 +tp225570 +a(g225567 +g225569 +S'identity' +p225571 +tp225572 +a(g225569 +g225571 +S'of' +p225573 +tp225574 +a(g225571 +g225573 +S'the' +p225575 +tp225576 +a(g225573 +g225575 +S'master' +p225577 +tp225578 +a(g225575 +g225577 +S'of' +p225579 +tp225580 +a(g225577 +g225579 +S'frankfurt' +p225581 +tp225582 +a(g225579 +g225581 +S'remains' +p225583 +tp225584 +a(g225581 +g225583 +S'undocumented.' +p225585 +tp225586 +a(g225583 +g225585 +S'in' +p225587 +tp225588 +a(g225585 +g225587 +S'his' +p225589 +tp225590 +a(g225587 +g225589 +S'case' +p225591 +tp225592 +a(g225589 +g225591 +S'the' +p225593 +tp225594 +a(g225591 +g225593 +S'designation' +p225595 +tp225596 +a(g225593 +g225595 +S'given' +p225597 +tp225598 +a(g225595 +g225597 +S'him' +p225599 +tp225600 +a(g225597 +g225599 +S'by' +p225601 +tp225602 +a(g225599 +g225601 +S'modern' +p225603 +tp225604 +a(g225601 +g225603 +S'scholars' +p225605 +tp225606 +a(g225603 +g225605 +S'is' +p225607 +tp225608 +a(g225605 +g225607 +S'misleading' +p225609 +tp225610 +a(g225607 +g225609 +S'since' +p225611 +tp225612 +a(g225609 +g225611 +S'it' +p225613 +tp225614 +a(g225611 +g225613 +S'is' +p225615 +tp225616 +a(g225613 +g225615 +S'now' +p225617 +tp225618 +a(g225615 +g225617 +S'clear' +p225619 +tp225620 +a(g225617 +g225619 +S'that' +p225621 +tp225622 +a(g225619 +g225621 +S'he' +p225623 +tp225624 +a(g225621 +g225623 +S'was' +p225625 +tp225626 +a(g225623 +g225625 +S'not' +p225627 +tp225628 +a(g225625 +g225627 +S'german' +p225629 +tp225630 +a(g225627 +g225629 +S'but' +p225631 +tp225632 +a(g225629 +g225631 +S'netherlandish,' +p225633 +tp225634 +a(g225631 +g225633 +S'probably' +p225635 +tp225636 +a(g225633 +g225635 +S'working' +p225637 +tp225638 +a(g225635 +g225637 +S'in' +p225639 +tp225640 +a(g225637 +g225639 +S'antwerp.' +p225641 +tp225642 +a(g225639 +g225641 +S'although' +p225643 +tp225644 +a(g225641 +g225643 +S'we' +p225645 +tp225646 +a(g225643 +g225645 +S'are' +p225647 +tp225648 +a(g225645 +g225647 +S'not' +p225649 +tp225650 +a(g225647 +g225649 +S'certain' +p225651 +tp225652 +a(g225649 +g225651 +S'of' +p225653 +tp225654 +a(g225651 +g225653 +S'his' +p225655 +tp225656 +a(g225653 +g225655 +S'name' +p225657 +tp225658 +a(g225655 +g225657 +S'we' +p225659 +tp225660 +a(g225657 +g225659 +S'do' +p225661 +tp225662 +a(g225659 +g225661 +S'have' +p225663 +tp225664 +a(g225661 +g225663 +S'his' +p225665 +tp225666 +a(g225663 +g225665 +S'fingerprints.' +p225667 +tp225668 +a(g225665 +g225667 +S'he' +p225669 +tp225670 +a(g225667 +g225669 +S'used' +p225671 +tp225672 +a(g225669 +g225671 +S'his' +p225673 +tp225674 +a(g225671 +g225673 +S'fingers' +p225675 +tp225676 +a(g225673 +g225675 +S'to' +p225677 +tp225678 +a(g225675 +g225677 +S'smudge' +p225679 +tp225680 +a(g225677 +g225679 +S'the' +p225681 +tp225682 +a(g225679 +g225681 +S'paint' +p225683 +tp225684 +a(g225681 +g225683 +S'in' +p225685 +tp225686 +a(g225683 +g225685 +S'the' +p225687 +tp225688 +a(g225685 +g225687 +S'clouds,' +p225689 +tp225690 +a(g225687 +g225689 +S'giving' +p225691 +tp225692 +a(g225689 +g225691 +S'them' +p225693 +tp225694 +a(g225691 +g225693 +S'extra' +p225695 +tp225696 +a(g225693 +g225695 +S'texture.' +p225697 +tp225698 +a(g225695 +g225697 +S'another' +p225699 +tp225700 +a(g225697 +g225699 +S'interesting' +p225701 +tp225702 +a(g225699 +g225701 +S'aspect' +p225703 +tp225704 +a(g225701 +g225703 +S'of' +p225705 +tp225706 +a(g225703 +g225705 +S'his' +p225707 +tp225708 +a(g225705 +g225707 +S'technique' +p225709 +tp225710 +a(g225707 +g225709 +S'is' +p225711 +tp225712 +a(g225709 +g225711 +S'his' +p225713 +tp225714 +a(g225711 +g225713 +S'apparent' +p225715 +tp225716 +a(g225713 +g225715 +S'use' +p225717 +tp225718 +a(g225715 +g225717 +S'of' +p225719 +tp225720 +a(g225717 +g225719 +S'a' +p225721 +tp225722 +a(g225719 +g225721 +S'stencil' +p225723 +tp225724 +a(g225721 +g225723 +S'to' +p225725 +tp225726 +a(g225723 +g225725 +S'create' +p225727 +tp225728 +a(g225725 +g225727 +S'the' +p225729 +tp225730 +a(g225727 +g225729 +S'pattern' +p225731 +tp225732 +a(g225729 +g225731 +S'in' +p225733 +tp225734 +a(g225731 +g225733 +S'saint' +p225735 +tp225736 +a(g225733 +g225735 +S'anne’s' +p225737 +tp225738 +a(g225735 +g225737 +S'red' +p225739 +tp225740 +a(g225737 +g225739 +S'cloak.' +p225741 +tp225742 +a(g225739 +g225741 +S'notice' +p225743 +tp225744 +a(g225741 +g225743 +S'how' +p225745 +tp225746 +a(g225743 +g225745 +S'the' +p225747 +tp225748 +a(g225745 +g225747 +S'design' +p225749 +tp225750 +a(g225747 +g225749 +S'is' +p225751 +tp225752 +a(g225749 +g225751 +S'uninterrupted' +p225753 +tp225754 +a(g225751 +g225753 +S'across' +p225755 +tp225756 +a(g225753 +g225755 +S'the' +p225757 +tp225758 +a(g225755 +g225757 +S'folds' +p225759 +tp225760 +a(g225757 +g225759 +S'of' +p225761 +tp225762 +a(g225759 +g225761 +S'cloth.' +p225763 +tp225764 +a(g225761 +g225763 +S'for' +p225765 +tp225766 +a(g225763 +g225765 +S'the' +p225767 +tp225768 +a(g225765 +g225767 +S'flowing' +p225769 +tp225770 +a(g225767 +g225769 +S'surfaces' +p225771 +tp225772 +a(g225769 +g225771 +S'of' +p225773 +tp225774 +a(g225771 +g225773 +S"manship's" +p225775 +tp225776 +a(g225773 +g225775 +S'aesthetic' +p225777 +tp225778 +a(g225775 +g225777 +S'grew' +p225779 +tp225780 +a(g225777 +g225779 +S'from' +p225781 +tp225782 +a(g225779 +g225781 +S'his' +p225783 +tp225784 +a(g225781 +g225783 +S'enthusiasm' +p225785 +tp225786 +a(g225783 +g225785 +S'for' +p225787 +tp225788 +a(g225785 +g225787 +S'archaic' +p225789 +tp225790 +a(g225787 +g225789 +S'(pre-classical)' +p225791 +tp225792 +a(g225789 +g225791 +S'greek,' +p225793 +tp225794 +a(g225791 +g225793 +S'etruscan,' +p225795 +tp225796 +a(g225793 +g225795 +S'and' +p225797 +tp225798 +a(g225795 +g225797 +S'asian' +p225799 +tp225800 +a(g225797 +g225799 +S'art' +p225801 +tp225802 +a(g225799 +g225801 +S'and' +p225803 +tp225804 +a(g225801 +g225803 +S'from' +p225805 +tp225806 +a(g225803 +g225805 +S'his' +p225807 +tp225808 +a(g225805 +g225807 +S'consummate' +p225809 +tp225810 +a(g225807 +g225809 +S'craftsmanship.' +p225811 +tp225812 +a(g225809 +g225811 +S'it' +p225813 +tp225814 +a(g225811 +g225813 +S'was' +p225815 +tp225816 +a(g225813 +g225815 +S'influenced' +p225817 +tp225818 +a(g225815 +g225817 +S'also' +p225819 +tp225820 +a(g225817 +g225819 +S'by' +p225821 +tp225822 +a(g225819 +g225821 +S'his' +p225823 +tp225824 +a(g225821 +g225823 +S'feeling' +p225825 +tp225826 +a(g225823 +g225825 +S'for' +p225827 +tp225828 +a(g225825 +g225827 +S'sculpture' +p225829 +tp225830 +a(g225827 +g225829 +S'as' +p225831 +tp225832 +a(g225829 +g225831 +S'a' +p225833 +tp225834 +a(g225831 +g225833 +S'close' +p225835 +tp225836 +a(g225833 +g225835 +S'relative' +p225837 +tp225838 +a(g225835 +g225837 +S'of' +p225839 +tp225840 +a(g225837 +g225839 +S'architecture' +p225841 +tp225842 +a(g225839 +g225841 +S'and' +p225843 +tp225844 +a(g225841 +g225843 +S'akin' +p225845 +tp225846 +a(g225843 +g225845 +S'to' +p225847 +tp225848 +a(g225845 +g225847 +S'the' +p225849 +tp225850 +a(g225847 +g225849 +S'new' +p225851 +tp225852 +a(g225849 +g225851 +S'streamlined' +p225853 +tp225854 +a(g225851 +g225853 +S'ornamental' +p225855 +tp225856 +a(g225853 +g225855 +S'style' +p225857 +tp225858 +a(g225855 +g225857 +S'now' +p225859 +tp225860 +a(g225857 +g225859 +S'known' +p225861 +tp225862 +a(g225859 +g225861 +S'as' +p225863 +tp225864 +a(g225861 +g225863 +S'art' +p225865 +tp225866 +a(g225863 +g225865 +S'deco.' +p225867 +tp225868 +a(g225865 +g225867 +S'he' +p225869 +tp225870 +a(g225867 +g225869 +S'would' +p225871 +tp225872 +a(g225869 +g225871 +S'become' +p225873 +tp225874 +a(g225871 +g225873 +S'one' +p225875 +tp225876 +a(g225873 +g225875 +S'of' +p225877 +tp225878 +a(g225875 +g225877 +S'the' +p225879 +tp225880 +a(g225877 +g225879 +S'most' +p225881 +tp225882 +a(g225879 +g225881 +S'sought-after' +p225883 +tp225884 +a(g225881 +g225883 +S'american' +p225885 +tp225886 +a(g225883 +g225885 +S'artists' +p225887 +tp225888 +a(g225885 +g225887 +S'for' +p225889 +tp225890 +a(g225887 +g225889 +S'public' +p225891 +tp225892 +a(g225889 +g225891 +S'sculpture' +p225893 +tp225894 +a(g225891 +g225893 +S'over' +p225895 +tp225896 +a(g225893 +g225895 +S'the' +p225897 +tp225898 +a(g225895 +g225897 +S'course' +p225899 +tp225900 +a(g225897 +g225899 +S'of' +p225901 +tp225902 +a(g225899 +g225901 +S'a' +p225903 +tp225904 +a(g225901 +g225903 +S'long' +p225905 +tp225906 +a(g225903 +g225905 +S'career.' +p225907 +tp225908 +a(g225905 +g225907 +S'his' +p225909 +tp225910 +a(g225907 +g225909 +S'the' +p225911 +tp225912 +a(g225909 +g225911 +S'two' +p225913 +tp225914 +a(g225911 +g225913 +S'original' +p225915 +tp225916 +a(g225913 +g225915 +S'carrier-belleuse' +p225917 +tp225918 +a(g225915 +g225917 +S'portrays' +p225919 +tp225920 +a(g225917 +g225919 +S'a' +p225921 +tp225922 +a(g225919 +g225921 +S'wrenching' +p225923 +tp225924 +a(g225921 +g225923 +S'struggle' +p225925 +tp225926 +a(g225923 +g225925 +S'between' +p225927 +tp225928 +a(g225925 +g225927 +S'woman' +p225929 +tp225930 +a(g225927 +g225929 +S'and' +p225931 +tp225932 +a(g225929 +g225931 +S'beast' +p225933 +tp225934 +a(g225931 +g225933 +S'in' +p225935 +tp225936 +a(g225933 +g225935 +S'this' +p225937 +tp225938 +a(g225935 +g225937 +S'abduction' +p225939 +tp225940 +a(g225937 +g225939 +S'scene' +p225941 +tp225942 +a(g225939 +g225941 +S'from' +p225943 +tp225944 +a(g225941 +g225943 +S'greek' +p225945 +tp225946 +a(g225943 +g225945 +S'myth.' +p225947 +tp225948 +a(g225945 +g225947 +S'the' +p225949 +tp225950 +a(g225947 +g225949 +S'inebriated' +p225951 +tp225952 +a(g225949 +g225951 +S'centaur,' +p225953 +tp225954 +a(g225951 +g225953 +S'a' +p225955 +tp225956 +a(g225953 +g225955 +S'guest' +p225957 +tp225958 +a(g225955 +g225957 +S'at' +p225959 +tp225960 +a(g225957 +g225959 +S'the' +p225961 +tp225962 +a(g225959 +g225961 +S'wedding' +p225963 +tp225964 +a(g225961 +g225963 +S'feast' +p225965 +tp225966 +a(g225963 +g225965 +S'of' +p225967 +tp225968 +a(g225965 +g225967 +S'hippodamia' +p225969 +tp225970 +a(g225967 +g225969 +S'and' +p225971 +tp225972 +a(g225969 +g225971 +S'the' +p225973 +tp225974 +a(g225971 +g225973 +S'lapith' +p225975 +tp225976 +a(g225973 +g225975 +S'king,' +p225977 +tp225978 +a(g225975 +g225977 +S'grabs' +p225979 +tp225980 +a(g225977 +g225979 +S'the' +p225981 +tp225982 +a(g225979 +g225981 +S'young' +p225983 +tp225984 +a(g225981 +g225983 +S'bride,' +p225985 +tp225986 +a(g225983 +g225985 +S'pinning' +p225987 +tp225988 +a(g225985 +g225987 +S'her' +p225989 +tp225990 +a(g225987 +g225989 +S'to' +p225991 +tp225992 +a(g225989 +g225991 +S'his' +p225993 +tp225994 +a(g225991 +g225993 +S'side' +p225995 +tp225996 +a(g225993 +g225995 +S'and' +p225997 +tp225998 +a(g225995 +g225997 +S'setting' +p225999 +tp226000 +a(g225997 +g225999 +S'off' +p226001 +tp226002 +a(g225999 +g226001 +S'a' +p226003 +tp226004 +a(g226001 +g226003 +S'battle' +p226005 +tp226006 +a(g226003 +g226005 +S'between' +p226007 +tp226008 +a(g226005 +g226007 +S'the' +p226009 +tp226010 +a(g226007 +g226009 +S'human' +p226011 +tp226012 +a(g226009 +g226011 +S'lapiths' +p226013 +tp226014 +a(g226011 +g226013 +S'and' +p226015 +tp226016 +a(g226013 +g226015 +S'the' +p226017 +tp226018 +a(g226015 +g226017 +S'wild' +p226019 +tp226020 +a(g226017 +g226019 +S'centaurs.' +p226021 +tp226022 +a(g226019 +g226021 +S'hippodamia' +p226023 +tp226024 +a(g226021 +g226023 +S'is' +p226025 +tp226026 +a(g226023 +g226025 +S'rescued,' +p226027 +tp226028 +a(g226025 +g226027 +S'but' +p226029 +tp226030 +a(g226027 +g226029 +S'the' +p226031 +tp226032 +a(g226029 +g226031 +S'episode' +p226033 +tp226034 +a(g226031 +g226033 +S'starts' +p226035 +tp226036 +a(g226033 +g226035 +S'a' +p226037 +tp226038 +a(g226035 +g226037 +S'greater' +p226039 +tp226040 +a(g226037 +g226039 +S'war' +p226041 +tp226042 +a(g226039 +g226041 +S'between' +p226043 +tp226044 +a(g226041 +g226043 +S'the' +p226045 +tp226046 +a(g226043 +g226045 +S'two' +p226047 +tp226048 +a(g226045 +g226047 +S'factions.' +p226049 +tp226050 +a(g226047 +g226049 +S'in' +p226051 +tp226052 +a(g226049 +g226051 +S'the' +p226053 +tp226054 +a(g226051 +g226053 +S'end,' +p226055 +tp226056 +a(g226053 +g226055 +S'the' +p226057 +tp226058 +a(g226055 +g226057 +S'lapiths' +p226059 +tp226060 +a(g226057 +g226059 +S'triumph' +p226061 +tp226062 +a(g226059 +g226061 +S'and' +p226063 +tp226064 +a(g226061 +g226063 +S'the' +p226065 +tp226066 +a(g226063 +g226065 +S'centaurs' +p226067 +tp226068 +a(g226065 +g226067 +S'retreat' +p226069 +tp226070 +a(g226067 +g226069 +S'to' +p226071 +tp226072 +a(g226069 +g226071 +S'the' +p226073 +tp226074 +a(g226071 +g226073 +S'mountains.' +p226075 +tp226076 +a(g226073 +g226075 +S'with' +p226077 +tp226078 +a(g226075 +g226077 +S'its' +p226079 +tp226080 +a(g226077 +g226079 +S'classical' +p226081 +tp226082 +a(g226079 +g226081 +S'references' +p226083 +tp226084 +a(g226081 +g226083 +S'(the' +p226085 +tp226086 +a(g226083 +g226085 +S'wedding' +p226087 +tp226088 +a(g226085 +g226087 +S'garlands' +p226089 +tp226090 +a(g226087 +g226089 +S'worn' +p226091 +tp226092 +a(g226089 +g226091 +S'by' +p226093 +tp226094 +a(g226091 +g226093 +S'both' +p226095 +tp226096 +a(g226093 +g226095 +S'figures' +p226097 +tp226098 +a(g226095 +g226097 +S'and' +p226099 +tp226100 +a(g226097 +g226099 +S'the' +p226101 +tp226102 +a(g226099 +g226101 +S'overturned' +p226103 +tp226104 +a(g226101 +g226103 +S'wine' +p226105 +tp226106 +a(g226103 +g226105 +S'jar),' +p226107 +tp226108 +a(g226105 +g226107 +S'nineteenth-century' +p226109 +tp226110 +a(g226107 +g226109 +S'viewers' +p226111 +tp226112 +a(g226109 +g226111 +S'would' +p226113 +tp226114 +a(g226111 +g226113 +S'have' +p226115 +tp226116 +a(g226113 +g226115 +S'recognized' +p226117 +tp226118 +a(g226115 +g226117 +S'the' +p226119 +tp226120 +a(g226117 +g226119 +S'story—a' +p226121 +tp226122 +a(g226119 +g226121 +S'motif' +p226123 +tp226124 +a(g226121 +g226123 +S'for' +p226125 +tp226126 +a(g226123 +g226125 +S'the' +p226127 +tp226128 +a(g226125 +g226127 +S'moral' +p226129 +tp226130 +a(g226127 +g226129 +S'struggle' +p226131 +tp226132 +a(g226129 +g226131 +S'between' +p226133 +tp226134 +a(g226131 +g226133 +S'rationality' +p226135 +tp226136 +a(g226133 +g226135 +S'and' +p226137 +tp226138 +a(g226135 +g226137 +S'bestiality,' +p226139 +tp226140 +a(g226137 +g226139 +S'between' +p226141 +tp226142 +a(g226139 +g226141 +S'civilized' +p226143 +tp226144 +a(g226141 +g226143 +S'behavior' +p226145 +tp226146 +a(g226143 +g226145 +S'and' +p226147 +tp226148 +a(g226145 +g226147 +S'primitive' +p226149 +tp226150 +a(g226147 +g226149 +S'instincts.' +p226151 +tp226152 +a(g226149 +g226151 +S'with' +p226153 +tp226154 +a(g226151 +g226153 +S'his' +p226155 +tp226156 +a(g226153 +g226155 +S'scholars' +p226157 +tp226158 +a(g226155 +g226157 +S'speculate' +p226159 +tp226160 +a(g226157 +g226159 +S'that' +p226161 +tp226162 +a(g226159 +g226161 +S'while' +p226163 +tp226164 +a(g226161 +g226163 +S'the' +p226165 +tp226166 +a(g226163 +g226165 +S'sensuous,' +p226167 +tp226168 +a(g226165 +g226167 +S'long-limbed' +p226169 +tp226170 +a(g226167 +g226169 +S'hippodamia' +p226171 +tp226172 +a(g226169 +g226171 +S'is' +p226173 +tp226174 +a(g226171 +g226173 +S'characteristic' +p226175 +tp226176 +a(g226173 +g226175 +S'of' +p226177 +tp226178 +a(g226175 +g226177 +S"carrier-belleuse's" +p226179 +tp226180 +a(g226177 +g226179 +S'female' +p226181 +tp226182 +a(g226179 +g226181 +S'nudes,' +p226183 +tp226184 +a(g226181 +g226183 +S'the' +p226185 +tp226186 +a(g226183 +g226185 +S'overall' +p226187 +tp226188 +a(g226185 +g226187 +S'expressive' +p226189 +tp226190 +a(g226187 +g226189 +S'intensity' +p226191 +tp226192 +a(g226189 +g226191 +S'of' +p226193 +tp226194 +a(g226191 +g226193 +S'the' +p226195 +tp226196 +a(g226193 +g226195 +S'sculpture—particularly' +p226197 +tp226198 +a(g226195 +g226197 +S'the' +p226199 +tp226200 +a(g226197 +g226199 +S"centaur's" +p226201 +tp226202 +a(g226199 +g226201 +S'bulky' +p226203 +tp226204 +a(g226201 +g226203 +S'musculature' +p226205 +tp226206 +a(g226203 +g226205 +S'and' +p226207 +tp226208 +a(g226205 +g226207 +S'bellowing' +p226209 +tp226210 +a(g226207 +g226209 +S'mouth—reflect' +p226211 +tp226212 +a(g226209 +g226211 +S'the' +p226213 +tp226214 +a(g226211 +g226213 +S'energetic' +p226215 +tp226216 +a(g226213 +g226215 +S'modeling' +p226217 +tp226218 +a(g226215 +g226217 +S'of' +p226219 +tp226220 +a(g226217 +g226219 +S"america's" +p226221 +tp226222 +a(g226219 +g226221 +S'leading' +p226223 +tp226224 +a(g226221 +g226223 +S'modern' +p226225 +tp226226 +a(g226223 +g226225 +S'sculptor,' +p226227 +tp226228 +a(g226225 +g226227 +S'david' +p226229 +tp226230 +a(g226227 +g226229 +S'smith' +p226231 +tp226232 +a(g226229 +g226231 +S'belongs' +p226233 +tp226234 +a(g226231 +g226233 +S'to' +p226235 +tp226236 +a(g226233 +g226235 +S'the' +p226237 +tp226238 +a(g226235 +g226237 +S'generation' +p226239 +tp226240 +a(g226237 +g226239 +S'of' +p226241 +tp226242 +a(g226239 +g226241 +S'abstract' +p226243 +tp226244 +a(g226241 +g226243 +S'expressionist' +p226245 +tp226246 +a(g226243 +g226245 +S'artists' +p226247 +tp226248 +a(g226245 +g226247 +S'that' +p226249 +tp226250 +a(g226247 +g226249 +S'included' +p226251 +tp226252 +a(g226249 +g226251 +S'jackson' +p226253 +tp226254 +a(g226251 +g226253 +S'pollock' +p226255 +tp226256 +a(g226253 +g226255 +S'and' +p226257 +tp226258 +a(g226255 +g226257 +S'willem' +p226259 +tp226260 +a(g226257 +g226259 +S'de' +p226261 +tp226262 +a(g226259 +g226261 +S'kooning.' +p226263 +tp226264 +a(g226261 +g226263 +S'in' +p226265 +tp226266 +a(g226263 +g226265 +S'1934' +p226267 +tp226268 +a(g226265 +g226267 +S'smith' +p226269 +tp226270 +a(g226267 +g226269 +S'set' +p226271 +tp226272 +a(g226269 +g226271 +S'up' +p226273 +tp226274 +a(g226271 +g226273 +S'a' +p226275 +tp226276 +a(g226273 +g226275 +S'studio' +p226277 +tp226278 +a(g226275 +g226277 +S'at' +p226279 +tp226280 +a(g226277 +g226279 +S'terminal' +p226281 +tp226282 +a(g226279 +g226281 +S'iron' +p226283 +tp226284 +a(g226281 +g226283 +S'works,' +p226285 +tp226286 +a(g226283 +g226285 +S'a' +p226287 +tp226288 +a(g226285 +g226287 +S'machinist' +p226289 +tp226290 +a(g226287 +g226289 +S'shop' +p226291 +tp226292 +a(g226289 +g226291 +S'in' +p226293 +tp226294 +a(g226291 +g226293 +S'brooklyn,' +p226295 +tp226296 +a(g226293 +g226295 +S'where' +p226297 +tp226298 +a(g226295 +g226297 +S'he' +p226299 +tp226300 +a(g226297 +g226299 +S'translated' +p226301 +tp226302 +a(g226299 +g226301 +S'the' +p226303 +tp226304 +a(g226301 +g226303 +S'industrial' +p226305 +tp226306 +a(g226303 +g226305 +S'materials' +p226307 +tp226308 +a(g226305 +g226307 +S'and' +p226309 +tp226310 +a(g226307 +g226309 +S'methods' +p226311 +tp226312 +a(g226309 +g226311 +S'of' +p226313 +tp226314 +a(g226311 +g226313 +S'that' +p226315 +tp226316 +a(g226313 +g226315 +S'trade' +p226317 +tp226318 +a(g226315 +g226317 +S'into' +p226319 +tp226320 +a(g226317 +g226319 +S'his' +p226321 +tp226322 +a(g226319 +g226321 +S'art.' +p226323 +tp226324 +a(g226321 +g226323 +S'inspired' +p226325 +tp226326 +a(g226323 +g226325 +S'by' +p226327 +tp226328 +a(g226325 +g226327 +S'the' +p226329 +tp226330 +a(g226327 +g226329 +S'welded' +p226331 +tp226332 +a(g226329 +g226331 +S'sculptures' +p226333 +tp226334 +a(g226331 +g226333 +S'of' +p226335 +tp226336 +a(g226333 +g226335 +S'pablo' +p226337 +tp226338 +a(g226335 +g226337 +S'picasso' +p226339 +tp226340 +a(g226337 +g226339 +S'and' +p226341 +tp226342 +a(g226339 +g226341 +S'julio' +p226343 +tp226344 +a(g226341 +g226343 +S'gonzales' +p226345 +tp226346 +a(g226343 +g226345 +S'from' +p226347 +tp226348 +a(g226345 +g226347 +S'the' +p226349 +tp226350 +a(g226347 +g226349 +S'late' +p226351 +tp226352 +a(g226349 +g226351 +S'1920s,' +p226353 +tp226354 +a(g226351 +g226353 +S'smith' +p226355 +tp226356 +a(g226353 +g226355 +S'incorporated' +p226357 +tp226358 +a(g226355 +g226357 +S'machine' +p226359 +tp226360 +a(g226357 +g226359 +S'parts,' +p226361 +tp226362 +a(g226359 +g226361 +S'scrap' +p226363 +tp226364 +a(g226361 +g226363 +S'metal' +p226365 +tp226366 +a(g226363 +g226365 +S'and' +p226367 +tp226368 +a(g226365 +g226367 +S'found' +p226369 +tp226370 +a(g226367 +g226369 +S'objects' +p226371 +tp226372 +a(g226369 +g226371 +S'into' +p226373 +tp226374 +a(g226371 +g226373 +S'his' +p226375 +tp226376 +a(g226373 +g226375 +S'innovative' +p226377 +tp226378 +a(g226375 +g226377 +S'and' +p226379 +tp226380 +a(g226377 +g226379 +S'remarkably' +p226381 +tp226382 +a(g226379 +g226381 +S'diverse' +p226383 +tp226384 +a(g226381 +g226383 +S'structures.' +p226385 +tp226386 +a(g226383 +g226385 +S'smith' +p226387 +tp226388 +a(g226385 +g226387 +S'only' +p226389 +tp226390 +a(g226387 +g226389 +S'adopted' +p226391 +tp226392 +a(g226389 +g226391 +S'the' +p226393 +tp226394 +a(g226391 +g226393 +S'circle' +p226395 +tp226396 +a(g226393 +g226395 +S'as' +p226397 +tp226398 +a(g226395 +g226397 +S'a' +p226399 +tp226400 +a(g226397 +g226399 +S'single' +p226401 +tp226402 +a(g226399 +g226401 +S'compositional' +p226403 +tp226404 +a(g226401 +g226403 +S'focus' +p226405 +tp226406 +a(g226403 +g226405 +S'in' +p226407 +tp226408 +a(g226405 +g226407 +S'the' +p226409 +tp226410 +a(g226407 +g226409 +S'early' +p226411 +tp226412 +a(g226409 +g226411 +S'sixties,' +p226413 +tp226414 +a(g226411 +g226413 +S'perhaps' +p226415 +tp226416 +a(g226413 +g226415 +S'in' +p226417 +tp226418 +a(g226415 +g226417 +S'response' +p226419 +tp226420 +a(g226417 +g226419 +S'to' +p226421 +tp226422 +a(g226419 +g226421 +S'the' +p226423 +tp226424 +a(g226421 +g226423 +S'target' +p226425 +tp226426 +a(g226423 +g226425 +S'paintings' +p226427 +tp226428 +a(g226425 +g226427 +S'then' +p226429 +tp226430 +a(g226427 +g226429 +S'being' +p226431 +tp226432 +a(g226429 +g226431 +S'created' +p226433 +tp226434 +a(g226431 +g226433 +S'by' +p226435 +tp226436 +a(g226433 +g226435 +S'his' +p226437 +tp226438 +a(g226435 +g226437 +S'friend' +p226439 +tp226440 +a(g226437 +g226439 +S'kenneth' +p226441 +tp226442 +a(g226439 +g226441 +S'noland.' +p226443 +tp226444 +a(g226441 +g226443 +S'although' +p226445 +tp226446 +a(g226443 +g226445 +S'the' +p226447 +tp226448 +a(g226445 +g226447 +S'related' +p226449 +tp226450 +a(g226447 +g226449 +S'works:' +p226451 +tp226452 +a(g226449 +g226451 +S'after' +p226453 +tp226454 +a(g226451 +g226453 +S'establishing' +p226455 +tp226456 +a(g226453 +g226455 +S'a' +p226457 +tp226458 +a(g226455 +g226457 +S'successful' +p226459 +tp226460 +a(g226457 +g226459 +S'career' +p226461 +tp226462 +a(g226459 +g226461 +S'as' +p226463 +tp226464 +a(g226461 +g226463 +S'an' +p226465 +tp226466 +a(g226463 +g226465 +S'engraver' +p226467 +tp226468 +a(g226465 +g226467 +S'and' +p226469 +tp226470 +a(g226467 +g226469 +S'portraitist,' +p226471 +tp226472 +a(g226469 +g226471 +S'durand' +p226473 +tp226474 +a(g226471 +g226473 +S'began' +p226475 +tp226476 +a(g226473 +g226475 +S'specializing' +p226477 +tp226478 +a(g226475 +g226477 +S'in' +p226479 +tp226480 +a(g226477 +g226479 +S'landscapes' +p226481 +tp226482 +a(g226479 +g226481 +S'during' +p226483 +tp226484 +a(g226481 +g226483 +S'the' +p226485 +tp226486 +a(g226483 +g226485 +S'late' +p226487 +tp226488 +a(g226485 +g226487 +S'1830s.' +p226489 +tp226490 +a(g226487 +g226489 +S'he' +p226491 +tp226492 +a(g226489 +g226491 +S'usually' +p226493 +tp226494 +a(g226491 +g226493 +S'presented' +p226495 +tp226496 +a(g226493 +g226495 +S'the' +p226497 +tp226498 +a(g226495 +g226497 +S'gentler,' +p226499 +tp226500 +a(g226497 +g226499 +S'bucolic' +p226501 +tp226502 +a(g226499 +g226501 +S'aspects' +p226503 +tp226504 +a(g226501 +g226503 +S'of' +p226505 +tp226506 +a(g226503 +g226505 +S'nature' +p226507 +tp226508 +a(g226505 +g226507 +S'rather' +p226509 +tp226510 +a(g226507 +g226509 +S'than' +p226511 +tp226512 +a(g226509 +g226511 +S'the' +p226513 +tp226514 +a(g226511 +g226513 +S'awesome' +p226515 +tp226516 +a(g226513 +g226515 +S'durand' +p226517 +tp226518 +a(g226515 +g226517 +S'emphasized' +p226519 +tp226520 +a(g226517 +g226519 +S'the' +p226521 +tp226522 +a(g226519 +g226521 +S'importance' +p226523 +tp226524 +a(g226521 +g226523 +S'of' +p226525 +tp226526 +a(g226523 +g226525 +S'the' +p226527 +tp226528 +a(g226525 +g226527 +S'close,' +p226529 +tp226530 +a(g226527 +g226529 +S'almost' +p226531 +tp226532 +a(g226529 +g226531 +S'scientific,' +p226533 +tp226534 +a(g226531 +g226533 +S'observation' +p226535 +tp226536 +a(g226533 +g226535 +S'of' +p226537 +tp226538 +a(g226535 +g226537 +S'nature.' +p226539 +tp226540 +a(g226537 +g226539 +S'he' +p226541 +tp226542 +a(g226539 +g226541 +S'took' +p226543 +tp226544 +a(g226541 +g226543 +S'numerous' +p226545 +tp226546 +a(g226543 +g226545 +S'excursions' +p226547 +tp226548 +a(g226545 +g226547 +S'in' +p226549 +tp226550 +a(g226547 +g226549 +S'the' +p226551 +tp226552 +a(g226549 +g226551 +S'woods' +p226553 +tp226554 +a(g226551 +g226553 +S'so' +p226555 +tp226556 +a(g226553 +g226555 +S'that' +p226557 +tp226558 +a(g226555 +g226557 +S'he' +p226559 +tp226560 +a(g226557 +g226559 +S'could' +p226561 +tp226562 +a(g226559 +g226561 +S'paint' +p226563 +tp226564 +a(g226561 +g226563 +S'directly' +p226565 +tp226566 +a(g226563 +g226565 +S'from' +p226567 +tp226568 +a(g226565 +g226567 +S'nature,' +p226569 +tp226570 +a(g226567 +g226569 +S'and' +p226571 +tp226572 +a(g226569 +g226571 +S'also' +p226573 +tp226574 +a(g226571 +g226573 +S'published' +p226575 +tp226576 +a(g226573 +g226575 +S'his' +p226577 +tp226578 +a(g226575 +g226577 +S'theories' +p226579 +tp226580 +a(g226577 +g226579 +S'in' +p226581 +tp226582 +a(g226579 +g226581 +S'the' +p226583 +tp226584 +a(g226581 +g226583 +S'influential' +p226585 +tp226586 +a(g226583 +g226585 +S'art' +p226587 +tp226588 +a(g226585 +g226587 +S'magazine,' +p226589 +tp226590 +a(g226587 +g226589 +S'scenes' +p226591 +tp226592 +a(g226589 +g226591 +S'detailing' +p226593 +tp226594 +a(g226591 +g226593 +S'middle-class' +p226595 +tp226596 +a(g226593 +g226595 +S'manners' +p226597 +tp226598 +a(g226595 +g226597 +S'and' +p226599 +tp226600 +a(g226597 +g226599 +S'mores' +p226601 +tp226602 +a(g226599 +g226601 +S'became' +p226603 +tp226604 +a(g226601 +g226603 +S'prevalent' +p226605 +tp226606 +a(g226603 +g226605 +S'in' +p226607 +tp226608 +a(g226605 +g226607 +S'american' +p226609 +tp226610 +a(g226607 +g226609 +S'art' +p226611 +tp226612 +a(g226609 +g226611 +S'and' +p226613 +tp226614 +a(g226611 +g226613 +S'literature' +p226615 +tp226616 +a(g226613 +g226615 +S'toward' +p226617 +tp226618 +a(g226615 +g226617 +S'the' +p226619 +tp226620 +a(g226617 +g226619 +S'middle' +p226621 +tp226622 +a(g226619 +g226621 +S'of' +p226623 +tp226624 +a(g226621 +g226623 +S'the' +p226625 +tp226626 +a(g226623 +g226625 +S'nineteenth' +p226627 +tp226628 +a(g226625 +g226627 +S'century,' +p226629 +tp226630 +a(g226627 +g226629 +S'and' +p226631 +tp226632 +a(g226629 +g226631 +S'francis' +p226633 +tp226634 +a(g226631 +g226633 +S"edmonds'" +p226635 +tp226636 +a(g226633 +g226635 +S'amusing' +p226637 +tp226638 +a(g226635 +g226637 +S'vignette' +p226639 +tp226640 +a(g226637 +g226639 +S'regarding' +p226641 +tp226642 +a(g226639 +g226641 +S'matrimonial' +p226643 +tp226644 +a(g226641 +g226643 +S'intent' +p226645 +tp226646 +a(g226643 +g226645 +S'successfully' +p226647 +tp226648 +a(g226645 +g226647 +S'combines' +p226649 +tp226650 +a(g226647 +g226649 +S'these' +p226651 +tp226652 +a(g226649 +g226651 +S'two' +p226653 +tp226654 +a(g226651 +g226653 +S'avenues' +p226655 +tp226656 +a(g226653 +g226655 +S'of' +p226657 +tp226658 +a(g226655 +g226657 +S'expression.' +p226659 +tp226660 +a(g226657 +g226659 +S'the' +p226661 +tp226662 +a(g226659 +g226661 +S'painting' +p226663 +tp226664 +a(g226661 +g226663 +S'is' +p226665 +tp226666 +a(g226663 +g226665 +S'loosely' +p226667 +tp226668 +a(g226665 +g226667 +S'based' +p226669 +tp226670 +a(g226667 +g226669 +S'on' +p226671 +tp226672 +a(g226669 +g226671 +S'james' +p226673 +tp226674 +a(g226671 +g226673 +S'kirke' +p226675 +tp226676 +a(g226673 +g226675 +S"paulding's" +p226677 +tp226678 +a(g226675 +g226677 +S'"the' +p226679 +tp226680 +a(g226677 +g226679 +S"dutchman's" +p226681 +tp226682 +a(g226679 +g226681 +S'fireside,"' +p226683 +tp226684 +a(g226681 +g226683 +S'a' +p226685 +tp226686 +a(g226683 +g226685 +S'popular' +p226687 +tp226688 +a(g226685 +g226687 +S'tale' +p226689 +tp226690 +a(g226687 +g226689 +S'set' +p226691 +tp226692 +a(g226689 +g226691 +S'in' +p226693 +tp226694 +a(g226691 +g226693 +S'mid-eighteenth-century' +p226695 +tp226696 +a(g226693 +g226695 +S'new' +p226697 +tp226698 +a(g226695 +g226697 +S'york.' +p226699 +tp226700 +a(g226697 +g226699 +S'the' +p226701 +tp226702 +a(g226699 +g226701 +S'story' +p226703 +tp226704 +a(g226701 +g226703 +S'deals' +p226705 +tp226706 +a(g226703 +g226705 +S'with' +p226707 +tp226708 +a(g226705 +g226707 +S'the' +p226709 +tp226710 +a(g226707 +g226709 +S'relationship' +p226711 +tp226712 +a(g226709 +g226711 +S'between' +p226713 +tp226714 +a(g226711 +g226713 +S'a' +p226715 +tp226716 +a(g226713 +g226715 +S'shy,' +p226717 +tp226718 +a(g226715 +g226717 +S'ungainly' +p226719 +tp226720 +a(g226717 +g226719 +S'bachelor,' +p226721 +tp226722 +a(g226719 +g226721 +S'sybrandt' +p226723 +tp226724 +a(g226721 +g226723 +S'westbrook,' +p226725 +tp226726 +a(g226723 +g226725 +S'and' +p226727 +tp226728 +a(g226725 +g226727 +S'his' +p226729 +tp226730 +a(g226727 +g226729 +S'distant' +p226731 +tp226732 +a(g226729 +g226731 +S'cousin,' +p226733 +tp226734 +a(g226731 +g226733 +S'catalina' +p226735 +tp226736 +a(g226733 +g226735 +S'vancour.' +p226737 +tp226738 +a(g226735 +g226737 +S'as' +p226739 +tp226740 +a(g226737 +g226739 +S'the' +p226741 +tp226742 +a(g226739 +g226741 +S'young' +p226743 +tp226744 +a(g226741 +g226743 +S'woman' +p226745 +tp226746 +a(g226743 +g226745 +S'implores' +p226747 +tp226748 +a(g226745 +g226747 +S'her' +p226749 +tp226750 +a(g226747 +g226749 +S'diffident' +p226751 +tp226752 +a(g226749 +g226751 +S'caller' +p226753 +tp226754 +a(g226751 +g226753 +S'to' +p226755 +tp226756 +a(g226753 +g226755 +S'stay' +p226757 +tp226758 +a(g226755 +g226757 +S'for' +p226759 +tp226760 +a(g226757 +g226759 +S'tea,' +p226761 +tp226762 +a(g226759 +g226761 +S'her' +p226763 +tp226764 +a(g226761 +g226763 +S'mother' +p226765 +tp226766 +a(g226763 +g226765 +S'gestures' +p226767 +tp226768 +a(g226765 +g226767 +S'towards' +p226769 +tp226770 +a(g226767 +g226769 +S'the' +p226771 +tp226772 +a(g226769 +g226771 +S'couple.' +p226773 +tp226774 +a(g226771 +g226773 +S'she' +p226775 +tp226776 +a(g226773 +g226775 +S'is' +p226777 +tp226778 +a(g226775 +g226777 +S'either' +p226779 +tp226780 +a(g226777 +g226779 +S'soliciting' +p226781 +tp226782 +a(g226779 +g226781 +S'her' +p226783 +tp226784 +a(g226781 +g226783 +S"husband's" +p226785 +tp226786 +a(g226783 +g226785 +S'help' +p226787 +tp226788 +a(g226785 +g226787 +S'in' +p226789 +tp226790 +a(g226787 +g226789 +S'persuading' +p226791 +tp226792 +a(g226789 +g226791 +S'the' +p226793 +tp226794 +a(g226791 +g226793 +S'young' +p226795 +tp226796 +a(g226793 +g226795 +S'man' +p226797 +tp226798 +a(g226795 +g226797 +S'to' +p226799 +tp226800 +a(g226797 +g226799 +S'remain,' +p226801 +tp226802 +a(g226799 +g226801 +S'or' +p226803 +tp226804 +a(g226801 +g226803 +S'--' +p226805 +tp226806 +a(g226803 +g226805 +S'in' +p226807 +tp226808 +a(g226805 +g226807 +S'the' +p226809 +tp226810 +a(g226807 +g226809 +S'hope' +p226811 +tp226812 +a(g226809 +g226811 +S'of' +p226813 +tp226814 +a(g226811 +g226813 +S'securing' +p226815 +tp226816 +a(g226813 +g226815 +S'an' +p226817 +tp226818 +a(g226815 +g226817 +S'even' +p226819 +tp226820 +a(g226817 +g226819 +S'better' +p226821 +tp226822 +a(g226819 +g226821 +S'match' +p226823 +tp226824 +a(g226821 +g226823 +S'for' +p226825 +tp226826 +a(g226823 +g226825 +S'her' +p226827 +tp226828 +a(g226825 +g226827 +S'daughter' +p226829 +tp226830 +a(g226827 +g226829 +S'--' +p226831 +tp226832 +a(g226829 +g226831 +S'attempting' +p226833 +tp226834 +a(g226831 +g226833 +S'to' +p226835 +tp226836 +a(g226833 +g226835 +S'enlist' +p226837 +tp226838 +a(g226835 +g226837 +S'his' +p226839 +tp226840 +a(g226837 +g226839 +S'aid' +p226841 +tp226842 +a(g226839 +g226841 +S'in' +p226843 +tp226844 +a(g226841 +g226843 +S'discouraging' +p226845 +tp226846 +a(g226843 +g226845 +S'their' +p226847 +tp226848 +a(g226845 +g226847 +S"daughter's" +p226849 +tp226850 +a(g226847 +g226849 +S'affections' +p226851 +tp226852 +a(g226849 +g226851 +S'for' +p226853 +tp226854 +a(g226851 +g226853 +S'this' +p226855 +tp226856 +a(g226853 +g226855 +S'provincial' +p226857 +tp226858 +a(g226855 +g226857 +S'suitor.' +p226859 +tp226860 +a(g226857 +g226859 +S'mr.' +p226861 +tp226862 +a(g226859 +g226861 +S'vancour' +p226863 +tp226864 +a(g226861 +g226863 +S'pointedly' +p226865 +tp226866 +a(g226863 +g226865 +S'ignores' +p226867 +tp226868 +a(g226865 +g226867 +S'his' +p226869 +tp226870 +a(g226867 +g226869 +S'wife,' +p226871 +tp226872 +a(g226869 +g226871 +S'far' +p226873 +tp226874 +a(g226871 +g226873 +S'too' +p226875 +tp226876 +a(g226873 +g226875 +S'absorbed' +p226877 +tp226878 +a(g226875 +g226877 +S'in' +p226879 +tp226880 +a(g226877 +g226879 +S'worldly' +p226881 +tp226882 +a(g226879 +g226881 +S'affairs' +p226883 +tp226884 +a(g226881 +g226883 +S'to' +p226885 +tp226886 +a(g226883 +g226885 +S'concern' +p226887 +tp226888 +a(g226885 +g226887 +S'himself' +p226889 +tp226890 +a(g226887 +g226889 +S'with' +p226891 +tp226892 +a(g226889 +g226891 +S'matters' +p226893 +tp226894 +a(g226891 +g226893 +S'of' +p226895 +tp226896 +a(g226893 +g226895 +S'etiquette' +p226897 +tp226898 +a(g226895 +g226897 +S'or' +p226899 +tp226900 +a(g226897 +g226899 +S'romance.' +p226901 +tp226902 +a(g226899 +g226901 +S'in' +p226903 +tp226904 +a(g226901 +g226903 +S'the' +p226905 +tp226906 +a(g226903 +g226905 +S'background,' +p226907 +tp226908 +a(g226905 +g226907 +S'the' +p226909 +tp226910 +a(g226907 +g226909 +S'bemused' +p226911 +tp226912 +a(g226909 +g226911 +S'family' +p226913 +tp226914 +a(g226911 +g226913 +S'servant,' +p226915 +tp226916 +a(g226913 +g226915 +S'aunt' +p226917 +tp226918 +a(g226915 +g226917 +S'nantje,' +p226919 +tp226920 +a(g226917 +g226919 +S'wisely' +p226921 +tp226922 +a(g226919 +g226921 +S'surveys' +p226923 +tp226924 +a(g226921 +g226923 +S'the' +p226925 +tp226926 +a(g226923 +g226925 +S'scene.' +p226927 +tp226928 +a(g226925 +g226927 +S'the' +p226929 +tp226930 +a(g226927 +g226929 +S'precise' +p226931 +tp226932 +a(g226929 +g226931 +S'detailing' +p226933 +tp226934 +a(g226931 +g226933 +S'of' +p226935 +tp226936 +a(g226933 +g226935 +S'the' +p226937 +tp226938 +a(g226935 +g226937 +S'structured,' +p226939 +tp226940 +a(g226937 +g226939 +S'stage-like' +p226941 +tp226942 +a(g226939 +g226941 +S'space,' +p226943 +tp226944 +a(g226941 +g226943 +S'the' +p226945 +tp226946 +a(g226943 +g226945 +S'theatrical' +p226947 +tp226948 +a(g226945 +g226947 +S'use' +p226949 +tp226950 +a(g226947 +g226949 +S'of' +p226951 +tp226952 +a(g226949 +g226951 +S'light,' +p226953 +tp226954 +a(g226951 +g226953 +S'the' +p226955 +tp226956 +a(g226953 +g226955 +S'choice' +p226957 +tp226958 +a(g226955 +g226957 +S'of' +p226959 +tp226960 +a(g226957 +g226959 +S'brightly' +p226961 +tp226962 +a(g226959 +g226961 +S'colored' +p226963 +tp226964 +a(g226961 +g226963 +S'costumes,' +p226965 +tp226966 +a(g226963 +g226965 +S'and' +p226967 +tp226968 +a(g226965 +g226967 +S'the' +p226969 +tp226970 +a(g226967 +g226969 +S'humorous' +p226971 +tp226972 +a(g226969 +g226971 +S'portrayal' +p226973 +tp226974 +a(g226971 +g226973 +S'of' +p226975 +tp226976 +a(g226973 +g226975 +S'everyday' +p226977 +tp226978 +a(g226975 +g226977 +S'life' +p226979 +tp226980 +a(g226977 +g226979 +S'all' +p226981 +tp226982 +a(g226979 +g226981 +S'reflect' +p226983 +tp226984 +a(g226981 +g226983 +S'the' +p226985 +tp226986 +a(g226983 +g226985 +S'influence' +p226987 +tp226988 +a(g226985 +g226987 +S'of' +p226989 +tp226990 +a(g226987 +g226989 +S'the' +p226991 +tp226992 +a(g226989 +g226991 +S'seventeenth-century' +p226993 +tp226994 +a(g226991 +g226993 +S'dutch' +p226995 +tp226996 +a(g226993 +g226995 +S'genre' +p226997 +tp226998 +a(g226995 +g226997 +S'paintings' +p226999 +tp227000 +a(g226997 +g226999 +S'that' +p227001 +tp227002 +a(g226999 +g227001 +S'had' +p227003 +tp227004 +a(g227001 +g227003 +S'impressed' +p227005 +tp227006 +a(g227003 +g227005 +S'edmonds' +p227007 +tp227008 +a(g227005 +g227007 +S'greatly' +p227009 +tp227010 +a(g227007 +g227009 +S'during' +p227011 +tp227012 +a(g227009 +g227011 +S'his' +p227013 +tp227014 +a(g227011 +g227013 +S'travels' +p227015 +tp227016 +a(g227013 +g227015 +S'on' +p227017 +tp227018 +a(g227015 +g227017 +S'the' +p227019 +tp227020 +a(g227017 +g227019 +S'continent.' +p227021 +tp227022 +a(g227019 +g227021 +S'the' +p227023 +tp227024 +a(g227021 +g227023 +S'netherlands' +p227025 +tp227026 +a(g227023 +g227025 +S'was' +p227027 +tp227028 +a(g227025 +g227027 +S'a' +p227029 +tp227030 +a(g227027 +g227029 +S'great' +p227031 +tp227032 +a(g227029 +g227031 +S'trading' +p227033 +tp227034 +a(g227031 +g227033 +S'nation' +p227035 +tp227036 +a(g227033 +g227035 +S'that' +p227037 +tp227038 +a(g227035 +g227037 +S'depended' +p227039 +tp227040 +a(g227037 +g227039 +S'on' +p227041 +tp227042 +a(g227039 +g227041 +S'shipping' +p227043 +tp227044 +a(g227041 +g227043 +S'as' +p227045 +tp227046 +a(g227043 +g227045 +S'a' +p227047 +tp227048 +a(g227045 +g227047 +S'basis' +p227049 +tp227050 +a(g227047 +g227049 +S'for' +p227051 +tp227052 +a(g227049 +g227051 +S'wealth' +p227053 +tp227054 +a(g227051 +g227053 +S'and' +p227055 +tp227056 +a(g227053 +g227055 +S'power.' +p227057 +tp227058 +a(g227055 +g227057 +S'whether' +p227059 +tp227060 +a(g227057 +g227059 +S'on' +p227061 +tp227062 +a(g227059 +g227061 +S'the' +p227063 +tp227064 +a(g227061 +g227063 +S'open' +p227065 +tp227066 +a(g227063 +g227065 +S'sea' +p227067 +tp227068 +a(g227065 +g227067 +S'or' +p227069 +tp227070 +a(g227067 +g227069 +S'through' +p227071 +tp227072 +a(g227069 +g227071 +S'the' +p227073 +tp227074 +a(g227071 +g227073 +S'network' +p227075 +tp227076 +a(g227073 +g227075 +S'of' +p227077 +tp227078 +a(g227075 +g227077 +S'rivers' +p227079 +tp227080 +a(g227077 +g227079 +S'and' +p227081 +tp227082 +a(g227079 +g227081 +S'canals' +p227083 +tp227084 +a(g227081 +g227083 +S'that' +p227085 +tp227086 +a(g227083 +g227085 +S'spread' +p227087 +tp227088 +a(g227085 +g227087 +S'across' +p227089 +tp227090 +a(g227087 +g227089 +S'the' +p227091 +tp227092 +a(g227089 +g227091 +S'low' +p227093 +tp227094 +a(g227091 +g227093 +S'lying' +p227095 +tp227096 +a(g227093 +g227095 +S'land,' +p227097 +tp227098 +a(g227095 +g227097 +S'dutch' +p227099 +tp227100 +a(g227097 +g227099 +S'ships' +p227101 +tp227102 +a(g227099 +g227101 +S'carried' +p227103 +tp227104 +a(g227101 +g227103 +S'goods' +p227105 +tp227106 +a(g227103 +g227105 +S'for' +p227107 +tp227108 +a(g227105 +g227107 +S'trade' +p227109 +tp227110 +a(g227107 +g227109 +S'and' +p227111 +tp227112 +a(g227109 +g227111 +S'commerce.' +p227113 +tp227114 +a(g227111 +g227113 +S'cities' +p227115 +tp227116 +a(g227113 +g227115 +S'and' +p227117 +tp227118 +a(g227115 +g227117 +S'towns' +p227119 +tp227120 +a(g227117 +g227119 +S'grew' +p227121 +tp227122 +a(g227119 +g227121 +S'up' +p227123 +tp227124 +a(g227121 +g227123 +S'along' +p227125 +tp227126 +a(g227123 +g227125 +S'the' +p227127 +tp227128 +a(g227125 +g227127 +S'inland' +p227129 +tp227130 +a(g227127 +g227129 +S'waterways' +p227131 +tp227132 +a(g227129 +g227131 +S'so' +p227133 +tp227134 +a(g227131 +g227133 +S'that' +p227135 +tp227136 +a(g227133 +g227135 +S'transport' +p227137 +tp227138 +a(g227135 +g227137 +S'of' +p227139 +tp227140 +a(g227137 +g227139 +S'goods' +p227141 +tp227142 +a(g227139 +g227141 +S'by' +p227143 +tp227144 +a(g227141 +g227143 +S'barges' +p227145 +tp227146 +a(g227143 +g227145 +S'and' +p227147 +tp227148 +a(g227145 +g227147 +S'passengers' +p227149 +tp227150 +a(g227147 +g227149 +S'by' +p227151 +tp227152 +a(g227149 +g227151 +S'ferries' +p227153 +tp227154 +a(g227151 +g227153 +S'could' +p227155 +tp227156 +a(g227153 +g227155 +S'be' +p227157 +tp227158 +a(g227155 +g227157 +S'facilitated.' +p227159 +tp227160 +a(g227157 +g227159 +S'depictions' +p227161 +tp227162 +a(g227159 +g227161 +S'of' +p227163 +tp227164 +a(g227161 +g227163 +S'such' +p227165 +tp227166 +a(g227163 +g227165 +S'water' +p227167 +tp227168 +a(g227165 +g227167 +S'views' +p227169 +tp227170 +a(g227167 +g227169 +S'were' +p227171 +tp227172 +a(g227169 +g227171 +S'extremely' +p227173 +tp227174 +a(g227171 +g227173 +S'popular' +p227175 +tp227176 +a(g227173 +g227175 +S'in' +p227177 +tp227178 +a(g227175 +g227177 +S'the' +p227179 +tp227180 +a(g227177 +g227179 +S'first' +p227181 +tp227182 +a(g227179 +g227181 +S'half' +p227183 +tp227184 +a(g227181 +g227183 +S'of' +p227185 +tp227186 +a(g227183 +g227185 +S'the' +p227187 +tp227188 +a(g227185 +g227187 +S'seventeenth' +p227189 +tp227190 +a(g227187 +g227189 +S'century.' +p227191 +tp227192 +a(g227189 +g227191 +S'one' +p227193 +tp227194 +a(g227191 +g227193 +S'of' +p227195 +tp227196 +a(g227193 +g227195 +S'the' +p227197 +tp227198 +a(g227195 +g227197 +S'greatest' +p227199 +tp227200 +a(g227197 +g227199 +S'early' +p227201 +tp227202 +a(g227199 +g227201 +S'landscape' +p227203 +tp227204 +a(g227201 +g227203 +S'artists,' +p227205 +tp227206 +a(g227203 +g227205 +S'jan' +p227207 +tp227208 +a(g227205 +g227207 +S'van' +p227209 +tp227210 +a(g227207 +g227209 +S'goyen' +p227211 +tp227212 +a(g227209 +g227211 +S'was' +p227213 +tp227214 +a(g227211 +g227213 +S'particularly' +p227215 +tp227216 +a(g227213 +g227215 +S'adept' +p227217 +tp227218 +a(g227215 +g227217 +S'at' +p227219 +tp227220 +a(g227217 +g227219 +S'suggesting' +p227221 +tp227222 +a(g227219 +g227221 +S'the' +p227223 +tp227224 +a(g227221 +g227223 +S'various' +p227225 +tp227226 +a(g227223 +g227225 +S'moods' +p227227 +tp227228 +a(g227225 +g227227 +S'of' +p227229 +tp227230 +a(g227227 +g227229 +S'the' +p227231 +tp227232 +a(g227229 +g227231 +S'land' +p227233 +tp227234 +a(g227231 +g227233 +S'in' +p227235 +tp227236 +a(g227233 +g227235 +S'different' +p227237 +tp227238 +a(g227235 +g227237 +S'seasons' +p227239 +tp227240 +a(g227237 +g227239 +S'of' +p227241 +tp227242 +a(g227239 +g227241 +S'the' +p227243 +tp227244 +a(g227241 +g227243 +S'year' +p227245 +tp227246 +a(g227243 +g227245 +S'or' +p227247 +tp227248 +a(g227245 +g227247 +S'weather' +p227249 +tp227250 +a(g227247 +g227249 +S'conditions.' +p227251 +tp227252 +a(g227249 +g227251 +S'in' +p227253 +tp227254 +a(g227251 +g227253 +S'this' +p227255 +tp227256 +a(g227253 +g227255 +S'view' +p227257 +tp227258 +a(g227255 +g227257 +S'of' +p227259 +tp227260 +a(g227257 +g227259 +S'dordrecht,' +p227261 +tp227262 +a(g227259 +g227261 +S'the' +p227263 +tp227264 +a(g227261 +g227263 +S'sky' +p227265 +tp227266 +a(g227263 +g227265 +S'is' +p227267 +tp227268 +a(g227265 +g227267 +S'overcast' +p227269 +tp227270 +a(g227267 +g227269 +S'and' +p227271 +tp227272 +a(g227269 +g227271 +S'the' +p227273 +tp227274 +a(g227271 +g227273 +S'water' +p227275 +tp227276 +a(g227273 +g227275 +S'calm,' +p227277 +tp227278 +a(g227275 +g227277 +S'the' +p227279 +tp227280 +a(g227277 +g227279 +S'atmosphere' +p227281 +tp227282 +a(g227279 +g227281 +S'carefully' +p227283 +tp227284 +a(g227281 +g227283 +S'created' +p227285 +tp227286 +a(g227283 +g227285 +S'through' +p227287 +tp227288 +a(g227285 +g227287 +S'van' +p227289 +tp227290 +a(g227287 +g227289 +S"goyen's" +p227291 +tp227292 +a(g227289 +g227291 +S'subtle' +p227293 +tp227294 +a(g227291 +g227293 +S'range' +p227295 +tp227296 +a(g227293 +g227295 +S'of' +p227297 +tp227298 +a(g227295 +g227297 +S'ochers' +p227299 +tp227300 +a(g227297 +g227299 +S'and' +p227301 +tp227302 +a(g227299 +g227301 +S'grays.' +p227303 +tp227304 +a(g227301 +g227303 +S'figures' +p227305 +tp227306 +a(g227303 +g227305 +S'animate' +p227307 +tp227308 +a(g227305 +g227307 +S'the' +p227309 +tp227310 +a(g227307 +g227309 +S'scene;' +p227311 +tp227312 +a(g227309 +g227311 +S'a' +p227313 +tp227314 +a(g227311 +g227313 +S'fisherman' +p227315 +tp227316 +a(g227313 +g227315 +S'works' +p227317 +tp227318 +a(g227315 +g227317 +S'his' +p227319 +tp227320 +a(g227317 +g227319 +S'traps' +p227321 +tp227322 +a(g227319 +g227321 +S'on' +p227323 +tp227324 +a(g227321 +g227323 +S'the' +p227325 +tp227326 +a(g227323 +g227325 +S'left' +p227327 +tp227328 +a(g227325 +g227327 +S'and' +p227329 +tp227330 +a(g227327 +g227329 +S'behind' +p227331 +tp227332 +a(g227329 +g227331 +S'him' +p227333 +tp227334 +a(g227331 +g227333 +S'a' +p227335 +tp227336 +a(g227333 +g227335 +S'sailboat' +p227337 +tp227338 +a(g227335 +g227337 +S'takes' +p227339 +tp227340 +a(g227337 +g227339 +S'on' +p227341 +tp227342 +a(g227339 +g227341 +S'more' +p227343 +tp227344 +a(g227341 +g227343 +S'travelers' +p227345 +tp227346 +a(g227343 +g227345 +S'from' +p227347 +tp227348 +a(g227345 +g227347 +S'a' +p227349 +tp227350 +a(g227347 +g227349 +S'smaller' +p227351 +tp227352 +a(g227349 +g227351 +S'transport' +p227353 +tp227354 +a(g227351 +g227353 +S'boat.' +p227355 +tp227356 +a(g227353 +g227355 +S'another' +p227357 +tp227358 +a(g227355 +g227357 +S'rowboat' +p227359 +tp227360 +a(g227357 +g227359 +S'in' +p227361 +tp227362 +a(g227359 +g227361 +S'the' +p227363 +tp227364 +a(g227361 +g227363 +S'center' +p227365 +tp227366 +a(g227363 +g227365 +S'foreground' +p227367 +tp227368 +a(g227365 +g227367 +S'has' +p227369 +tp227370 +a(g227367 +g227369 +S'already' +p227371 +tp227372 +a(g227369 +g227371 +S'taken' +p227373 +tp227374 +a(g227371 +g227373 +S'on' +p227375 +tp227376 +a(g227373 +g227375 +S'passengers' +p227377 +tp227378 +a(g227375 +g227377 +S'from' +p227379 +tp227380 +a(g227377 +g227379 +S'the' +p227381 +tp227382 +a(g227379 +g227381 +S'ferry' +p227383 +tp227384 +a(g227381 +g227383 +S'boat' +p227385 +tp227386 +a(g227383 +g227385 +S'and' +p227387 +tp227388 +a(g227385 +g227387 +S'is' +p227389 +tp227390 +a(g227387 +g227389 +S'transporting' +p227391 +tp227392 +a(g227389 +g227391 +S'them' +p227393 +tp227394 +a(g227391 +g227393 +S'to' +p227395 +tp227396 +a(g227393 +g227395 +S'the' +p227397 +tp227398 +a(g227395 +g227397 +S'harbor' +p227399 +tp227400 +a(g227397 +g227399 +S'of' +p227401 +tp227402 +a(g227399 +g227401 +S'dordrecht.' +p227403 +tp227404 +a(g227401 +g227403 +S'isenbrant,' +p227405 +tp227406 +a(g227403 +g227405 +S'called' +p227407 +tp227408 +a(g227405 +g227407 +S'gerard' +p227409 +tp227410 +a(g227407 +g227409 +S'david’s' +p227411 +tp227412 +a(g227409 +g227411 +S'“disciple”' +p227413 +tp227414 +a(g227411 +g227413 +S'by' +p227415 +tp227416 +a(g227413 +g227415 +S'a' +p227417 +tp227418 +a(g227415 +g227417 +S'commentator' +p227419 +tp227420 +a(g227417 +g227419 +S'in' +p227421 +tp227422 +a(g227419 +g227421 +S'the' +p227423 +tp227424 +a(g227421 +g227423 +S'1600s,' +p227425 +tp227426 +a(g227423 +g227425 +S'lived' +p227427 +tp227428 +a(g227425 +g227427 +S'in' +p227429 +tp227430 +a(g227427 +g227429 +S'bruges' +p227431 +tp227432 +a(g227429 +g227431 +S'and' +p227433 +tp227434 +a(g227431 +g227433 +S'was' +p227435 +tp227436 +a(g227433 +g227435 +S'clearly' +p227437 +tp227438 +a(g227435 +g227437 +S'influenced' +p227439 +tp227440 +a(g227437 +g227439 +S'by' +p227441 +tp227442 +a(g227439 +g227441 +S'its' +p227443 +tp227444 +a(g227441 +g227443 +S'preeminent' +p227445 +tp227446 +a(g227443 +g227445 +S'painter.' +p227447 +tp227448 +a(g227445 +g227447 +S'notice,' +p227449 +tp227450 +a(g227447 +g227449 +S'for' +p227451 +tp227452 +a(g227449 +g227451 +S'example,' +p227453 +tp227454 +a(g227451 +g227453 +S'how' +p227455 +tp227456 +a(g227453 +g227455 +S'the' +p227457 +tp227458 +a(g227455 +g227457 +S'faces' +p227459 +tp227460 +a(g227457 +g227459 +S'of' +p227461 +tp227462 +a(g227459 +g227461 +S'the' +p227463 +tp227464 +a(g227461 +g227463 +S'virgin' +p227465 +tp227466 +a(g227463 +g227465 +S'here' +p227467 +tp227468 +a(g227465 +g227467 +S'and' +p227469 +tp227470 +a(g227467 +g227469 +S'in' +p227471 +tp227472 +a(g227469 +g227471 +S'david’s' +p227473 +tp227474 +a(g227471 +g227473 +S'the' +p227475 +tp227476 +a(g227473 +g227475 +S'crumbling' +p227477 +tp227478 +a(g227475 +g227477 +S'ruin,' +p227479 +tp227480 +a(g227477 +g227479 +S'its' +p227481 +tp227482 +a(g227479 +g227481 +S'ancient' +p227483 +tp227484 +a(g227481 +g227483 +S'decoration' +p227485 +tp227486 +a(g227483 +g227485 +S'slowly' +p227487 +tp227488 +a(g227485 +g227487 +S'disappearing' +p227489 +tp227490 +a(g227487 +g227489 +S'under' +p227491 +tp227492 +a(g227489 +g227491 +S'creeping' +p227493 +tp227494 +a(g227491 +g227493 +S'vines,' +p227495 +tp227496 +a(g227493 +g227495 +S'suggests' +p227497 +tp227498 +a(g227495 +g227497 +S'the' +p227499 +tp227500 +a(g227497 +g227499 +S'decay' +p227501 +tp227502 +a(g227499 +g227501 +S'of' +p227503 +tp227504 +a(g227501 +g227503 +S'the' +p227505 +tp227506 +a(g227503 +g227505 +S'old' +p227507 +tp227508 +a(g227505 +g227507 +S'pagan' +p227509 +tp227510 +a(g227507 +g227509 +S'religion.' +p227511 +tp227512 +a(g227509 +g227511 +S'in' +p227513 +tp227514 +a(g227511 +g227513 +S'the' +p227515 +tp227516 +a(g227513 +g227515 +S'same' +p227517 +tp227518 +a(g227515 +g227517 +S'vein,' +p227519 +tp227520 +a(g227517 +g227519 +S'the' +p227521 +tp227522 +a(g227519 +g227521 +S'figure' +p227523 +tp227524 +a(g227521 +g227523 +S'of' +p227525 +tp227526 +a(g227523 +g227525 +S'moses' +p227527 +tp227528 +a(g227525 +g227527 +S'at' +p227529 +tp227530 +a(g227527 +g227529 +S'the' +p227531 +tp227532 +a(g227529 +g227531 +S'top' +p227533 +tp227534 +a(g227531 +g227533 +S'alludes' +p227535 +tp227536 +a(g227533 +g227535 +S'to' +p227537 +tp227538 +a(g227535 +g227537 +S'the' +p227539 +tp227540 +a(g227537 +g227539 +S'transition' +p227541 +tp227542 +a(g227539 +g227541 +S'from' +p227543 +tp227544 +a(g227541 +g227543 +S'old' +p227545 +tp227546 +a(g227543 +g227545 +S'testament' +p227547 +tp227548 +a(g227545 +g227547 +S'law' +p227549 +tp227550 +a(g227547 +g227549 +S'to' +p227551 +tp227552 +a(g227549 +g227551 +S'the' +p227553 +tp227554 +a(g227551 +g227553 +S'new' +p227555 +tp227556 +a(g227553 +g227555 +S'era' +p227557 +tp227558 +a(g227555 +g227557 +S'brought' +p227559 +tp227560 +a(g227557 +g227559 +S'about' +p227561 +tp227562 +a(g227559 +g227561 +S'by' +p227563 +tp227564 +a(g227561 +g227563 +S'christ’s' +p227565 +tp227566 +a(g227563 +g227565 +S'birth.' +p227567 +tp227568 +a(g227565 +g227567 +S'the' +p227569 +tp227570 +a(g227567 +g227569 +S'shepherds' +p227571 +tp227572 +a(g227569 +g227571 +S'who' +p227573 +tp227574 +a(g227571 +g227573 +S'gather' +p227575 +tp227576 +a(g227573 +g227575 +S'around' +p227577 +tp227578 +a(g227575 +g227577 +S'the' +p227579 +tp227580 +a(g227577 +g227579 +S'infant' +p227581 +tp227582 +a(g227579 +g227581 +S'are' +p227583 +tp227584 +a(g227581 +g227583 +S'the' +p227585 +tp227586 +a(g227583 +g227585 +S'first' +p227587 +tp227588 +a(g227585 +g227587 +S'to' +p227589 +tp227590 +a(g227587 +g227589 +S'celebrate' +p227591 +tp227592 +a(g227589 +g227591 +S'jesus’' +p227593 +tp227594 +a(g227591 +g227593 +S'appearance' +p227595 +tp227596 +a(g227593 +g227595 +S'on' +p227597 +tp227598 +a(g227595 +g227597 +S'earth.' +p227599 +tp227600 +a(g227597 +g227599 +S'the' +p227601 +tp227602 +a(g227599 +g227601 +S'distant' +p227603 +tp227604 +a(g227601 +g227603 +S'bonfires' +p227605 +tp227606 +a(g227603 +g227605 +S'of' +p227607 +tp227608 +a(g227605 +g227607 +S'a' +p227609 +tp227610 +a(g227607 +g227609 +S'peasant' +p227611 +tp227612 +a(g227609 +g227611 +S'festival' +p227613 +tp227614 +a(g227611 +g227613 +S'celebrating' +p227615 +tp227616 +a(g227613 +g227615 +S'the' +p227617 +tp227618 +a(g227615 +g227617 +S'winter' +p227619 +tp227620 +a(g227617 +g227619 +S'solstice' +p227621 +tp227622 +a(g227619 +g227621 +S'help' +p227623 +tp227624 +a(g227621 +g227623 +S'to' +p227625 +tp227626 +a(g227623 +g227625 +S'fix' +p227627 +tp227628 +a(g227625 +g227627 +S'the' +p227629 +tp227630 +a(g227627 +g227629 +S'time' +p227631 +tp227632 +a(g227629 +g227631 +S'of' +p227633 +tp227634 +a(g227631 +g227633 +S'year.' +p227635 +tp227636 +a(g227633 +g227635 +S'by' +p227637 +tp227638 +a(g227635 +g227637 +S'placing' +p227639 +tp227640 +a(g227637 +g227639 +S'the' +p227641 +tp227642 +a(g227639 +g227641 +S'infant' +p227643 +tp227644 +a(g227641 +g227643 +S'on' +p227645 +tp227646 +a(g227643 +g227645 +S'an' +p227647 +tp227648 +a(g227645 +g227647 +S'altarlike' +p227649 +tp227650 +a(g227647 +g227649 +S'cradle' +p227651 +tp227652 +a(g227649 +g227651 +S'next' +p227653 +tp227654 +a(g227651 +g227653 +S'to' +p227655 +tp227656 +a(g227653 +g227655 +S'a' +p227657 +tp227658 +a(g227655 +g227657 +S'sheaf' +p227659 +tp227660 +a(g227657 +g227659 +S'of' +p227661 +tp227662 +a(g227659 +g227661 +S'wheat,' +p227663 +tp227664 +a(g227661 +g227663 +S'the' +p227665 +tp227666 +a(g227663 +g227665 +S'painting' +p227667 +tp227668 +a(g227665 +g227667 +S'also' +p227669 +tp227670 +a(g227667 +g227669 +S'stresses' +p227671 +tp227672 +a(g227669 +g227671 +S'the' +p227673 +tp227674 +a(g227671 +g227673 +S'association' +p227675 +tp227676 +a(g227673 +g227675 +S'of' +p227677 +tp227678 +a(g227675 +g227677 +S'the' +p227679 +tp227680 +a(g227677 +g227679 +S'incarnation—jesus’' +p227681 +tp227682 +a(g227679 +g227681 +S'human' +p227683 +tp227684 +a(g227681 +g227683 +S'birth—with' +p227685 +tp227686 +a(g227683 +g227685 +S'the' +p227687 +tp227688 +a(g227685 +g227687 +S'eucharist,' +p227689 +tp227690 +a(g227687 +g227689 +S'the' +p227691 +tp227692 +a(g227689 +g227691 +S'presence' +p227693 +tp227694 +a(g227691 +g227693 +S'of' +p227695 +tp227696 +a(g227693 +g227695 +S'his' +p227697 +tp227698 +a(g227695 +g227697 +S'body' +p227699 +tp227700 +a(g227697 +g227699 +S'and' +p227701 +tp227702 +a(g227699 +g227701 +S'blood' +p227703 +tp227704 +a(g227701 +g227703 +S'in' +p227705 +tp227706 +a(g227703 +g227705 +S'the' +p227707 +tp227708 +a(g227705 +g227707 +S'wafer' +p227709 +tp227710 +a(g227707 +g227709 +S'and' +p227711 +tp227712 +a(g227709 +g227711 +S'wine' +p227713 +tp227714 +a(g227711 +g227713 +S'of' +p227715 +tp227716 +a(g227713 +g227715 +S'the' +p227717 +tp227718 +a(g227715 +g227717 +S'mass.' +p227719 +tp227720 +a(g227717 +g227719 +S'in' +p227721 +tp227722 +a(g227719 +g227721 +S'early' +p227723 +tp227724 +a(g227721 +g227723 +S'1874' +p227725 +tp227726 +a(g227723 +g227725 +S'degas' +p227727 +tp227728 +a(g227725 +g227727 +S'wrote,' +p227729 +tp227730 +a(g227727 +g227729 +S'"look' +p227731 +tp227732 +a(g227729 +g227731 +S'here,' +p227733 +tp227734 +a(g227731 +g227733 +S'my' +p227735 +tp227736 +a(g227733 +g227735 +S'dear' +p227737 +tp227738 +a(g227735 +g227737 +S'tissot.' +p227739 +tp227740 +a(g227737 +g227739 +S'.' +p227741 +tp227742 +a(g227739 +g227741 +S'.' +p227743 +tp227744 +a(g227741 +g227743 +S'you' +p227745 +tp227746 +a(g227743 +g227745 +S'positively' +p227747 +tp227748 +a(g227745 +g227747 +S'must' +p227749 +tp227750 +a(g227747 +g227749 +S'exhibit' +p227751 +tp227752 +a(g227749 +g227751 +S'at' +p227753 +tp227754 +a(g227751 +g227753 +S'the' +p227755 +tp227756 +a(g227753 +g227755 +S'boulevard' +p227757 +tp227758 +a(g227755 +g227757 +S'[in' +p227759 +tp227760 +a(g227757 +g227759 +S'the' +p227761 +tp227762 +a(g227759 +g227761 +S'first' +p227763 +tp227764 +a(g227761 +g227763 +S'impressionist' +p227765 +tp227766 +a(g227763 +g227765 +S'exhibition].' +p227767 +tp227768 +a(g227765 +g227767 +S'.' +p227769 +tp227770 +a(g227767 +g227769 +S'.' +p227771 +tp227772 +a(g227769 +g227771 +S'exhibit.' +p227773 +tp227774 +a(g227771 +g227773 +S'be' +p227775 +tp227776 +a(g227773 +g227775 +S'of' +p227777 +tp227778 +a(g227775 +g227777 +S'your' +p227779 +tp227780 +a(g227777 +g227779 +S'country' +p227781 +tp227782 +a(g227779 +g227781 +S'and' +p227783 +tp227784 +a(g227781 +g227783 +S'with' +p227785 +tp227786 +a(g227783 +g227785 +S'your' +p227787 +tp227788 +a(g227785 +g227787 +S'friends."' +p227789 +tp227790 +a(g227787 +g227789 +S'degas' +p227791 +tp227792 +a(g227789 +g227791 +S'and' +p227793 +tp227794 +a(g227791 +g227793 +S'tissot,' +p227795 +tp227796 +a(g227793 +g227795 +S'who' +p227797 +tp227798 +a(g227795 +g227797 +S'met' +p227799 +tp227800 +a(g227797 +g227799 +S'as' +p227801 +tp227802 +a(g227799 +g227801 +S'students' +p227803 +tp227804 +a(g227801 +g227803 +S'during' +p227805 +tp227806 +a(g227803 +g227805 +S'the' +p227807 +tp227808 +a(g227805 +g227807 +S'late' +p227809 +tp227810 +a(g227807 +g227809 +S'1850s,' +p227811 +tp227812 +a(g227809 +g227811 +S'stayed' +p227813 +tp227814 +a(g227811 +g227813 +S'in' +p227815 +tp227816 +a(g227813 +g227815 +S'close' +p227817 +tp227818 +a(g227815 +g227817 +S'communication' +p227819 +tp227820 +a(g227817 +g227819 +S'even' +p227821 +tp227822 +a(g227819 +g227821 +S'after' +p227823 +tp227824 +a(g227821 +g227823 +S'tissot' +p227825 +tp227826 +a(g227823 +g227825 +S'fled' +p227827 +tp227828 +a(g227825 +g227827 +S'to' +p227829 +tp227830 +a(g227827 +g227829 +S'london' +p227831 +tp227832 +a(g227829 +g227831 +S'in' +p227833 +tp227834 +a(g227831 +g227833 +S'1871' +p227835 +tp227836 +a(g227833 +g227835 +S'to' +p227837 +tp227838 +a(g227835 +g227837 +S'avoid' +p227839 +tp227840 +a(g227837 +g227839 +S'punishment' +p227841 +tp227842 +a(g227839 +g227841 +S'for' +p227843 +tp227844 +a(g227841 +g227843 +S'activities' +p227845 +tp227846 +a(g227843 +g227845 +S'in' +p227847 +tp227848 +a(g227845 +g227847 +S'the' +p227849 +tp227850 +a(g227847 +g227849 +S'abortive' +p227851 +tp227852 +a(g227849 +g227851 +S'commune.' +p227853 +tp227854 +a(g227851 +g227853 +S'arguing' +p227855 +tp227856 +a(g227853 +g227855 +S'that' +p227857 +tp227858 +a(g227855 +g227857 +S'the' +p227859 +tp227860 +a(g227857 +g227859 +S'benefits' +p227861 +tp227862 +a(g227859 +g227861 +S'of' +p227863 +tp227864 +a(g227861 +g227863 +S'declaring' +p227865 +tp227866 +a(g227863 +g227865 +S'his' +p227867 +tp227868 +a(g227865 +g227867 +S'allegiance' +p227869 +tp227870 +a(g227867 +g227869 +S'to' +p227871 +tp227872 +a(g227869 +g227871 +S'french' +p227873 +tp227874 +a(g227871 +g227873 +S'art' +p227875 +tp227876 +a(g227873 +g227875 +S'outweighed' +p227877 +tp227878 +a(g227875 +g227877 +S'the' +p227879 +tp227880 +a(g227877 +g227879 +S'potential' +p227881 +tp227882 +a(g227879 +g227881 +S'harm' +p227883 +tp227884 +a(g227881 +g227883 +S'it' +p227885 +tp227886 +a(g227883 +g227885 +S'might' +p227887 +tp227888 +a(g227885 +g227887 +S'cause' +p227889 +tp227890 +a(g227887 +g227889 +S'among' +p227891 +tp227892 +a(g227889 +g227891 +S"tissot's" +p227893 +tp227894 +a(g227891 +g227893 +S'london' +p227895 +tp227896 +a(g227893 +g227895 +S'audience,' +p227897 +tp227898 +a(g227895 +g227897 +S'degas' +p227899 +tp227900 +a(g227897 +g227899 +S'urged' +p227901 +tp227902 +a(g227899 +g227901 +S'tissot' +p227903 +tp227904 +a(g227901 +g227903 +S'to' +p227905 +tp227906 +a(g227903 +g227905 +S'show' +p227907 +tp227908 +a(g227905 +g227907 +S'with' +p227909 +tp227910 +a(g227907 +g227909 +S'the' +p227911 +tp227912 +a(g227909 +g227911 +S'impressionists' +p227913 +tp227914 +a(g227911 +g227913 +S'and' +p227915 +tp227916 +a(g227913 +g227915 +S'thereby' +p227917 +tp227918 +a(g227915 +g227917 +S'affirm' +p227919 +tp227920 +a(g227917 +g227919 +S'his' +p227921 +tp227922 +a(g227919 +g227921 +S'ties' +p227923 +tp227924 +a(g227921 +g227923 +S'to' +p227925 +tp227926 +a(g227923 +g227925 +S'france' +p227927 +tp227928 +a(g227925 +g227927 +S'and' +p227929 +tp227930 +a(g227927 +g227929 +S'more' +p227931 +tp227932 +a(g227929 +g227931 +S'particularly' +p227933 +tp227934 +a(g227931 +g227933 +S'to' +p227935 +tp227936 +a(g227933 +g227935 +S'degas' +p227937 +tp227938 +a(g227935 +g227937 +S'and' +p227939 +tp227940 +a(g227937 +g227939 +S'realism.' +p227941 +tp227942 +a(g227939 +g227941 +S'although' +p227943 +tp227944 +a(g227941 +g227943 +S'he' +p227945 +tp227946 +a(g227943 +g227945 +S'chose' +p227947 +tp227948 +a(g227945 +g227947 +S'not' +p227949 +tp227950 +a(g227947 +g227949 +S'to' +p227951 +tp227952 +a(g227949 +g227951 +S'accept' +p227953 +tp227954 +a(g227951 +g227953 +S'the' +p227955 +tp227956 +a(g227953 +g227955 +S'invitation,' +p227957 +tp227958 +a(g227955 +g227957 +S'tissot,' +p227959 +tp227960 +a(g227957 +g227959 +S'like' +p227961 +tp227962 +a(g227959 +g227961 +S'degas,' +p227963 +tp227964 +a(g227961 +g227963 +S'worked' +p227965 +tp227966 +a(g227963 +g227965 +S'in' +p227967 +tp227968 +a(g227965 +g227967 +S'a' +p227969 +tp227970 +a(g227967 +g227969 +S'realist' +p227971 +tp227972 +a(g227969 +g227971 +S'vein.' +p227973 +tp227974 +a(g227971 +g227973 +S'the' +p227975 +tp227976 +a(g227973 +g227975 +S'title' +p227977 +tp227978 +a(g227975 +g227977 +S'"improvisations"' +p227979 +tp227980 +a(g227977 +g227979 +S'refers' +p227981 +tp227982 +a(g227979 +g227981 +S'to' +p227983 +tp227984 +a(g227981 +g227983 +S'a' +p227985 +tp227986 +a(g227983 +g227985 +S'series' +p227987 +tp227988 +a(g227985 +g227987 +S'of' +p227989 +tp227990 +a(g227987 +g227989 +S'works' +p227991 +tp227992 +a(g227989 +g227991 +S'that' +p227993 +tp227994 +a(g227991 +g227993 +S'kandinsky' +p227995 +tp227996 +a(g227993 +g227995 +S'painted' +p227997 +tp227998 +a(g227995 +g227997 +S'between' +p227999 +tp228000 +a(g227997 +g227999 +S'1909' +p228001 +tp228002 +a(g227999 +g228001 +S'and' +p228003 +tp228004 +a(g228001 +g228003 +S'1913' +p228005 +tp228006 +a(g228003 +g228005 +S'which' +p228007 +tp228008 +a(g228005 +g228007 +S'was,' +p228009 +tp228010 +a(g228007 +g228009 +S'according' +p228011 +tp228012 +a(g228009 +g228011 +S'to' +p228013 +tp228014 +a(g228011 +g228013 +S'the' +p228015 +tp228016 +a(g228013 +g228015 +S'artist,' +p228017 +tp228018 +a(g228015 +g228017 +S'"a' +p228019 +tp228020 +a(g228017 +g228019 +S'largely' +p228021 +tp228022 +a(g228019 +g228021 +S'unconscious,' +p228023 +tp228024 +a(g228021 +g228023 +S'spontaneous' +p228025 +tp228026 +a(g228023 +g228025 +S'expression' +p228027 +tp228028 +a(g228025 +g228027 +S'of' +p228029 +tp228030 +a(g228027 +g228029 +S'inner' +p228031 +tp228032 +a(g228029 +g228031 +S'character,' +p228033 +tp228034 +a(g228031 +g228033 +S'non-material' +p228035 +tp228036 +a(g228033 +g228035 +S'nature."' +p228037 +tp228038 +a(g228035 +g228037 +S'although' +p228039 +tp228040 +a(g228037 +g228039 +S'the' +p228041 +tp228042 +a(g228039 +g228041 +S'amorphous' +p228043 +tp228044 +a(g228041 +g228043 +S'shapes' +p228045 +tp228046 +a(g228043 +g228045 +S'and' +p228047 +tp228048 +a(g228045 +g228047 +S'colorful' +p228049 +tp228050 +a(g228047 +g228049 +S'washes' +p228051 +tp228052 +a(g228049 +g228051 +S'of' +p228053 +tp228054 +a(g228051 +g228053 +S'paint' +p228055 +tp228056 +a(g228053 +g228055 +S'in' +p228057 +tp228058 +a(g228055 +g228057 +S'the' +p228059 +tp228060 +a(g228057 +g228059 +S'central' +p228061 +tp228062 +a(g228059 +g228061 +S'motif' +p228063 +tp228064 +a(g228061 +g228063 +S'of' +p228065 +tp228066 +a(g228063 +g228065 +S'although' +p228067 +tp228068 +a(g228065 +g228067 +S'this' +p228069 +tp228070 +a(g228067 +g228069 +S'work' +p228071 +tp228072 +a(g228069 +g228071 +S'was' +p228073 +tp228074 +a(g228071 +g228073 +S'painted' +p228075 +tp228076 +a(g228073 +g228075 +S'on' +p228077 +tp228078 +a(g228075 +g228077 +S'the' +p228079 +tp228080 +a(g228077 +g228079 +S'eve' +p228081 +tp228082 +a(g228079 +g228081 +S'of' +p228083 +tp228084 +a(g228081 +g228083 +S'the' +p228085 +tp228086 +a(g228083 +g228085 +S'first' +p228087 +tp228088 +a(g228085 +g228087 +S'world' +p228089 +tp228090 +a(g228087 +g228089 +S'war,' +p228091 +tp228092 +a(g228089 +g228091 +S'kandinsky' +p228093 +tp228094 +a(g228091 +g228093 +S'denied' +p228095 +tp228096 +a(g228093 +g228095 +S'that' +p228097 +tp228098 +a(g228095 +g228097 +S'his' +p228099 +tp228100 +a(g228097 +g228099 +S'paintings' +p228101 +tp228102 +a(g228099 +g228101 +S'referred' +p228103 +tp228104 +a(g228101 +g228103 +S'to' +p228105 +tp228106 +a(g228103 +g228105 +S'any' +p228107 +tp228108 +a(g228105 +g228107 +S'specific' +p228109 +tp228110 +a(g228107 +g228109 +S'war' +p228111 +tp228112 +a(g228109 +g228111 +S'but' +p228113 +tp228114 +a(g228111 +g228113 +S'rather' +p228115 +tp228116 +a(g228113 +g228115 +S'to' +p228117 +tp228118 +a(g228115 +g228117 +S'"a' +p228119 +tp228120 +a(g228117 +g228119 +S'terrible' +p228121 +tp228122 +a(g228119 +g228121 +S'struggle' +p228123 +tp228124 +a(g228121 +g228123 +S'.' +p228125 +tp228126 +a(g228123 +g228125 +S'.' +p228127 +tp228128 +a(g228125 +g228127 +S'.' +p228129 +tp228130 +a(g228127 +g228129 +S'going' +p228131 +tp228132 +a(g228129 +g228131 +S'on' +p228133 +tp228134 +a(g228131 +g228133 +S'in' +p228135 +tp228136 +a(g228133 +g228135 +S'the' +p228137 +tp228138 +a(g228135 +g228137 +S'spiritual' +p228139 +tp228140 +a(g228137 +g228139 +S'atmosphere."' +p228141 +tp228142 +a(g228139 +g228141 +S'kandinsky,' +p228143 +tp228144 +a(g228141 +g228143 +S'who' +p228145 +tp228146 +a(g228143 +g228145 +S'fervently' +p228147 +tp228148 +a(g228145 +g228147 +S'believed' +p228149 +tp228150 +a(g228147 +g228149 +S'that' +p228151 +tp228152 +a(g228149 +g228151 +S'humanity' +p228153 +tp228154 +a(g228151 +g228153 +S'stood' +p228155 +tp228156 +a(g228153 +g228155 +S'on' +p228157 +tp228158 +a(g228155 +g228157 +S'the' +p228159 +tp228160 +a(g228157 +g228159 +S'brink' +p228161 +tp228162 +a(g228159 +g228161 +S'of' +p228163 +tp228164 +a(g228161 +g228163 +S'a' +p228165 +tp228166 +a(g228163 +g228165 +S'new' +p228167 +tp228168 +a(g228165 +g228167 +S'spiritual' +p228169 +tp228170 +a(g228167 +g228169 +S'era,' +p228171 +tp228172 +a(g228169 +g228171 +S'avowed' +p228173 +tp228174 +a(g228171 +g228173 +S'that' +p228175 +tp228176 +a(g228173 +g228175 +S'art' +p228177 +tp228178 +a(g228175 +g228177 +S'could' +p228179 +tp228180 +a(g228177 +g228179 +S'help' +p228181 +tp228182 +a(g228179 +g228181 +S'to' +p228183 +tp228184 +a(g228181 +g228183 +S'sever' +p228185 +tp228186 +a(g228183 +g228185 +S'human' +p228187 +tp228188 +a(g228185 +g228187 +S'attachment' +p228189 +tp228190 +a(g228187 +g228189 +S'to' +p228191 +tp228192 +a(g228189 +g228191 +S'the' +p228193 +tp228194 +a(g228191 +g228193 +S'material' +p228195 +tp228196 +a(g228193 +g228195 +S'world' +p228197 +tp228198 +a(g228195 +g228197 +S'and' +p228199 +tp228200 +a(g228197 +g228199 +S'usher' +p228201 +tp228202 +a(g228199 +g228201 +S'in' +p228203 +tp228204 +a(g228201 +g228203 +S'the' +p228205 +tp228206 +a(g228203 +g228205 +S'new' +p228207 +tp228208 +a(g228205 +g228207 +S'age.' +p228209 +tp228210 +a(g228207 +g228209 +S"escher's" +p228211 +tp228212 +a(g228209 +g228211 +S'early' +p228213 +tp228214 +a(g228211 +g228213 +S'interest' +p228215 +tp228216 +a(g228213 +g228215 +S'in' +p228217 +tp228218 +a(g228215 +g228217 +S'the' +p228219 +tp228220 +a(g228217 +g228219 +S'sharp' +p228221 +tp228222 +a(g228219 +g228221 +S'contrast' +p228223 +tp228224 +a(g228221 +g228223 +S'between' +p228225 +tp228226 +a(g228223 +g228225 +S'black' +p228227 +tp228228 +a(g228225 +g228227 +S'and' +p228229 +tp228230 +a(g228227 +g228229 +S'white' +p228231 +tp228232 +a(g228229 +g228231 +S'is' +p228233 +tp228234 +a(g228231 +g228233 +S'apparent' +p228235 +tp228236 +a(g228233 +g228235 +S'in' +p228237 +tp228238 +a(g228235 +g228237 +S'this' +p228239 +tp228240 +a(g228237 +g228239 +S'woodcut.' +p228241 +tp228242 +a(g228239 +g228241 +S'it' +p228243 +tp228244 +a(g228241 +g228243 +S'also' +p228245 +tp228246 +a(g228243 +g228245 +S'presents' +p228247 +tp228248 +a(g228245 +g228247 +S'ideas' +p228249 +tp228250 +a(g228247 +g228249 +S'that' +p228251 +tp228252 +a(g228249 +g228251 +S'he' +p228253 +tp228254 +a(g228251 +g228253 +S'fully' +p228255 +tp228256 +a(g228253 +g228255 +S'developed' +p228257 +tp228258 +a(g228255 +g228257 +S'later' +p228259 +tp228260 +a(g228257 +g228259 +S'in' +p228261 +tp228262 +a(g228259 +g228261 +S'his' +p228263 +tp228264 +a(g228261 +g228263 +S'career,' +p228265 +tp228266 +a(g228263 +g228265 +S'such' +p228267 +tp228268 +a(g228265 +g228267 +S'as' +p228269 +tp228270 +a(g228267 +g228269 +S'the' +p228271 +tp228272 +a(g228269 +g228271 +S'interlocking' +p228273 +tp228274 +a(g228271 +g228273 +S'and' +p228275 +tp228276 +a(g228273 +g228275 +S'patternlike' +p228277 +tp228278 +a(g228275 +g228277 +S'forms' +p228279 +tp228280 +a(g228277 +g228279 +S'seen' +p228281 +tp228282 +a(g228279 +g228281 +S'in' +p228283 +tp228284 +a(g228281 +g228283 +S'the' +p228285 +tp228286 +a(g228283 +g228285 +S'audience' +p228287 +tp228288 +a(g228285 +g228287 +S'that' +p228289 +tp228290 +a(g228287 +g228289 +S'is' +p228291 +tp228292 +a(g228289 +g228291 +S'depicted' +p228293 +tp228294 +a(g228291 +g228293 +S'here.' +p228295 +tp228296 +a(g228293 +g228295 +S'the' +p228297 +tp228298 +a(g228295 +g228297 +S'woodcut' +p228299 +tp228300 +a(g228297 +g228299 +S'is' +p228301 +tp228302 +a(g228299 +g228301 +S'a' +p228303 +tp228304 +a(g228301 +g228303 +S'relief' +p228305 +tp228306 +a(g228303 +g228305 +S'process.' +p228307 +tp228308 +a(g228305 +g228307 +S'first' +p228309 +tp228310 +a(g228307 +g228309 +S'a' +p228311 +tp228312 +a(g228309 +g228311 +S'drawing' +p228313 +tp228314 +a(g228311 +g228313 +S'is' +p228315 +tp228316 +a(g228313 +g228315 +S'made' +p228317 +tp228318 +a(g228315 +g228317 +S'on' +p228319 +tp228320 +a(g228317 +g228319 +S'a' +p228321 +tp228322 +a(g228319 +g228321 +S'block' +p228323 +tp228324 +a(g228321 +g228323 +S'of' +p228325 +tp228326 +a(g228323 +g228325 +S'wood' +p228327 +tp228328 +a(g228325 +g228327 +S'that' +p228329 +tp228330 +a(g228327 +g228329 +S'has' +p228331 +tp228332 +a(g228329 +g228331 +S'been' +p228333 +tp228334 +a(g228331 +g228333 +S'cut' +p228335 +tp228336 +a(g228333 +g228335 +S'along' +p228337 +tp228338 +a(g228335 +g228337 +S'the' +p228339 +tp228340 +a(g228337 +g228339 +S'grain.' +p228341 +tp228342 +a(g228339 +g228341 +S'a' +p228343 +tp228344 +a(g228341 +g228343 +S'knife' +p228345 +tp228346 +a(g228343 +g228345 +S'and' +p228347 +tp228348 +a(g228345 +g228347 +S'chisel' +p228349 +tp228350 +a(g228347 +g228349 +S'are' +p228351 +tp228352 +a(g228349 +g228351 +S'then' +p228353 +tp228354 +a(g228351 +g228353 +S'used' +p228355 +tp228356 +a(g228353 +g228355 +S'to' +p228357 +tp228358 +a(g228355 +g228357 +S'remove' +p228359 +tp228360 +a(g228357 +g228359 +S'the' +p228361 +tp228362 +a(g228359 +g228361 +S'wood' +p228363 +tp228364 +a(g228361 +g228363 +S'on' +p228365 +tp228366 +a(g228363 +g228365 +S'either' +p228367 +tp228368 +a(g228365 +g228367 +S'side' +p228369 +tp228370 +a(g228367 +g228369 +S'of' +p228371 +tp228372 +a(g228369 +g228371 +S'the' +p228373 +tp228374 +a(g228371 +g228373 +S'drawn' +p228375 +tp228376 +a(g228373 +g228375 +S'lines,' +p228377 +tp228378 +a(g228375 +g228377 +S'leaving' +p228379 +tp228380 +a(g228377 +g228379 +S'the' +p228381 +tp228382 +a(g228379 +g228381 +S'print' +p228383 +tp228384 +a(g228381 +g228383 +S'surface' +p228385 +tp228386 +a(g228383 +g228385 +S'raised' +p228387 +tp228388 +a(g228385 +g228387 +S'above' +p228389 +tp228390 +a(g228387 +g228389 +S'the' +p228391 +tp228392 +a(g228389 +g228391 +S'areas' +p228393 +tp228394 +a(g228391 +g228393 +S'to' +p228395 +tp228396 +a(g228393 +g228395 +S'remain' +p228397 +tp228398 +a(g228395 +g228397 +S'blank.' +p228399 +tp228400 +a(g228397 +g228399 +S'in' +p228401 +tp228402 +a(g228399 +g228401 +S'his' +p228403 +tp228404 +a(g228401 +g228403 +S'early' +p228405 +tp228406 +a(g228403 +g228405 +S'period' +p228407 +tp228408 +a(g228405 +g228407 +S'escher' +p228409 +tp228410 +a(g228407 +g228409 +S'also' +p228411 +tp228412 +a(g228409 +g228411 +S'frequently' +p228413 +tp228414 +a(g228411 +g228413 +S'used' +p228415 +tp228416 +a(g228413 +g228415 +S'linoleum' +p228417 +tp228418 +a(g228415 +g228417 +S'cuts' +p228419 +tp228420 +a(g228417 +g228419 +S'as' +p228421 +tp228422 +a(g228419 +g228421 +S'a' +p228423 +tp228424 +a(g228421 +g228423 +S'print' +p228425 +tp228426 +a(g228423 +g228425 +S'medium,' +p228427 +tp228428 +a(g228425 +g228427 +S'in' +p228429 +tp228430 +a(g228427 +g228429 +S'which' +p228431 +tp228432 +a(g228429 +g228431 +S'the' +p228433 +tp228434 +a(g228431 +g228433 +S'same' +p228435 +tp228436 +a(g228433 +g228435 +S'technique' +p228437 +tp228438 +a(g228435 +g228437 +S'is' +p228439 +tp228440 +a(g228437 +g228439 +S'employed' +p228441 +tp228442 +a(g228439 +g228441 +S'as' +p228443 +tp228444 +a(g228441 +g228443 +S'in' +p228445 +tp228446 +a(g228443 +g228445 +S'a' +p228447 +tp228448 +a(g228445 +g228447 +S'woodcut.' +p228449 +tp228450 +a(g228447 +g228449 +S'this' +p228451 +tp228452 +a(g228449 +g228451 +S'likeness' +p228453 +tp228454 +a(g228451 +g228453 +S'was' +p228455 +tp228456 +a(g228453 +g228455 +S'painted' +p228457 +tp228458 +a(g228455 +g228457 +S'when' +p228459 +tp228460 +a(g228457 +g228459 +S'the' +p228461 +tp228462 +a(g228459 +g228461 +S'second' +p228463 +tp228464 +a(g228461 +g228463 +S'president' +p228465 +tp228466 +a(g228463 +g228465 +S'was' +p228467 +tp228468 +a(g228465 +g228467 +S'in' +p228469 +tp228470 +a(g228467 +g228469 +S'his' +p228471 +tp228472 +a(g228469 +g228471 +S'eighties.' +p228473 +tp228474 +a(g228471 +g228473 +S'however,' +p228475 +tp228476 +a(g228473 +g228475 +S'stuart' +p228477 +tp228478 +a(g228475 +g228477 +S'copied' +p228479 +tp228480 +a(g228477 +g228479 +S'it' +p228481 +tp228482 +a(g228479 +g228481 +S'from' +p228483 +tp228484 +a(g228481 +g228483 +S'a' +p228485 +tp228486 +a(g228483 +g228485 +S'much' +p228487 +tp228488 +a(g228485 +g228487 +S'earlier' +p228489 +tp228490 +a(g228487 +g228489 +S'national' +p228491 +tp228492 +a(g228489 +g228491 +S'gallery' +p228493 +tp228494 +a(g228491 +g228493 +S'picture,' +p228495 +tp228496 +a(g228493 +g228495 +S'the' +p228497 +tp228498 +a(g228495 +g228497 +S'stuart' +p228499 +tp228500 +a(g228497 +g228499 +S'first' +p228501 +tp228502 +a(g228499 +g228501 +S'portrayed' +p228503 +tp228504 +a(g228501 +g228503 +S'james' +p228505 +tp228506 +a(g228503 +g228505 +S'madison' +p228507 +tp228508 +a(g228505 +g228507 +S'when' +p228509 +tp228510 +a(g228507 +g228509 +S'he' +p228511 +tp228512 +a(g228509 +g228511 +S'was' +p228513 +tp228514 +a(g228511 +g228513 +S"jefferson's" +p228515 +tp228516 +a(g228513 +g228515 +S'secretary' +p228517 +tp228518 +a(g228515 +g228517 +S'of' +p228519 +tp228520 +a(g228517 +g228519 +S'state.' +p228521 +tp228522 +a(g228519 +g228521 +S'the' +p228523 +tp228524 +a(g228521 +g228523 +S'gibbs-coolidge' +p228525 +tp228526 +a(g228523 +g228525 +S'likeness' +p228527 +tp228528 +a(g228525 +g228527 +S'was' +p228529 +tp228530 +a(g228527 +g228529 +S'most' +p228531 +tp228532 +a(g228529 +g228531 +S'likely' +p228533 +tp228534 +a(g228531 +g228533 +S'based' +p228535 +tp228536 +a(g228533 +g228535 +S'on' +p228537 +tp228538 +a(g228535 +g228537 +S'other' +p228539 +tp228540 +a(g228537 +g228539 +S'pictures' +p228541 +tp228542 +a(g228539 +g228541 +S'stuart' +p228543 +tp228544 +a(g228541 +g228543 +S'had' +p228545 +tp228546 +a(g228543 +g228545 +S'painted' +p228547 +tp228548 +a(g228545 +g228547 +S'from' +p228549 +tp228550 +a(g228547 +g228549 +S'life' +p228551 +tp228552 +a(g228549 +g228551 +S'that' +p228553 +tp228554 +a(g228551 +g228553 +S'where' +p228555 +tp228556 +a(g228553 +g228555 +S'either' +p228557 +tp228558 +a(g228555 +g228557 +S'in' +p228559 +tp228560 +a(g228557 +g228559 +S'his' +p228561 +tp228562 +a(g228559 +g228561 +S'possession' +p228563 +tp228564 +a(g228561 +g228563 +S'or' +p228565 +tp228566 +a(g228563 +g228565 +S'accessible' +p228567 +tp228568 +a(g228565 +g228567 +S'to' +p228569 +tp228570 +a(g228567 +g228569 +S'him.' +p228571 +tp228572 +a(g228569 +g228571 +S'the' +p228573 +tp228574 +a(g228571 +g228573 +S'deep' +p228575 +tp228576 +a(g228573 +g228575 +S'green' +p228577 +tp228578 +a(g228575 +g228577 +S'curtain' +p228579 +tp228580 +a(g228577 +g228579 +S'accents' +p228581 +tp228582 +a(g228579 +g228581 +S'the' +p228583 +tp228584 +a(g228581 +g228583 +S'color' +p228585 +tp228586 +a(g228583 +g228585 +S'of' +p228587 +tp228588 +a(g228585 +g228587 +S"madison's" +p228589 +tp228590 +a(g228587 +g228589 +S'eyes.' +p228591 +tp228592 +a(g228589 +g228591 +S"monroe's" +p228593 +tp228594 +a(g228591 +g228593 +S'likeness,' +p228595 +tp228596 +a(g228593 +g228595 +S'a' +p228597 +tp228598 +a(g228595 +g228597 +S'replica' +p228599 +tp228600 +a(g228597 +g228599 +S'of' +p228601 +tp228602 +a(g228599 +g228601 +S'one' +p228603 +tp228604 +a(g228601 +g228603 +S'done' +p228605 +tp228606 +a(g228603 +g228605 +S'from' +p228607 +tp228608 +a(g228605 +g228607 +S'life' +p228609 +tp228610 +a(g228607 +g228609 +S'in' +p228611 +tp228612 +a(g228609 +g228611 +S'1817,' +p228613 +tp228614 +a(g228611 +g228613 +S'is' +p228615 +tp228616 +a(g228613 +g228615 +S'the' +p228617 +tp228618 +a(g228615 +g228617 +S'only' +p228619 +tp228620 +a(g228617 +g228619 +S'picture' +p228621 +tp228622 +a(g228619 +g228621 +S'in' +p228623 +tp228624 +a(g228621 +g228623 +S'the' +p228625 +tp228626 +a(g228623 +g228625 +S'gibbs-coolidge' +p228627 +tp228628 +a(g228625 +g228627 +S'set' +p228629 +tp228630 +a(g228627 +g228629 +S'with' +p228631 +tp228632 +a(g228629 +g228631 +S'a' +p228633 +tp228634 +a(g228631 +g228633 +S'pale' +p228635 +tp228636 +a(g228633 +g228635 +S'background.' +p228637 +tp228638 +a(g228635 +g228637 +S'stuart' +p228639 +tp228640 +a(g228637 +g228639 +S'very' +p228641 +tp228642 +a(g228639 +g228641 +S'rarely' +p228643 +tp228644 +a(g228641 +g228643 +S'used' +p228645 +tp228646 +a(g228643 +g228645 +S'light' +p228647 +tp228648 +a(g228645 +g228647 +S'settings' +p228649 +tp228650 +a(g228647 +g228649 +S'for' +p228651 +tp228652 +a(g228649 +g228651 +S'his' +p228653 +tp228654 +a(g228651 +g228653 +S'portrayals' +p228655 +tp228656 +a(g228653 +g228655 +S'of' +p228657 +tp228658 +a(g228655 +g228657 +S'men.' +p228659 +tp228660 +a(g228657 +g228659 +S'since' +p228661 +tp228662 +a(g228659 +g228661 +S'james' +p228663 +tp228664 +a(g228661 +g228663 +S'monroe' +p228665 +tp228666 +a(g228663 +g228665 +S'was' +p228667 +tp228668 +a(g228665 +g228667 +S'the' +p228669 +tp228670 +a(g228667 +g228669 +S'last' +p228671 +tp228672 +a(g228669 +g228671 +S'of' +p228673 +tp228674 +a(g228671 +g228673 +S'the' +p228675 +tp228676 +a(g228673 +g228675 +S'first' +p228677 +tp228678 +a(g228675 +g228677 +S'five' +p228679 +tp228680 +a(g228677 +g228679 +S'presidents,' +p228681 +tp228682 +a(g228679 +g228681 +S'serving' +p228683 +tp228684 +a(g228681 +g228683 +S'from' +p228685 +tp228686 +a(g228683 +g228685 +S'1817' +p228687 +tp228688 +a(g228685 +g228687 +S'to' +p228689 +tp228690 +a(g228687 +g228689 +S'1825,' +p228691 +tp228692 +a(g228689 +g228691 +S'this' +p228693 +tp228694 +a(g228691 +g228693 +S'glowing' +p228695 +tp228696 +a(g228693 +g228695 +S'sky' +p228697 +tp228698 +a(g228695 +g228697 +S'might' +p228699 +tp228700 +a(g228697 +g228699 +S'symbolize' +p228701 +tp228702 +a(g228699 +g228701 +S'the' +p228703 +tp228704 +a(g228701 +g228703 +S"republic's" +p228705 +tp228706 +a(g228703 +g228705 +S'future.' +p228707 +tp228708 +a(g228705 +g228707 +S'this' +p228709 +tp228710 +a(g228707 +g228709 +S'version' +p228711 +tp228712 +a(g228709 +g228711 +S'is' +p228713 +tp228714 +a(g228711 +g228713 +S'among' +p228715 +tp228716 +a(g228713 +g228715 +S'the' +p228717 +tp228718 +a(g228715 +g228717 +S'best' +p228719 +tp228720 +a(g228717 +g228719 +S'of' +p228721 +tp228722 +a(g228719 +g228721 +S'the' +p228723 +tp228724 +a(g228721 +g228723 +S'seventy-two' +p228725 +tp228726 +a(g228723 +g228725 +S'copies' +p228727 +tp228728 +a(g228725 +g228727 +S'stuart' +p228729 +tp228730 +a(g228727 +g228729 +S'made' +p228731 +tp228732 +a(g228729 +g228731 +S'of' +p228733 +tp228734 +a(g228731 +g228733 +S'his' +p228735 +tp228736 +a(g228733 +g228735 +S'athenaeum' +p228737 +tp228738 +a(g228735 +g228737 +S'format' +p228739 +tp228740 +a(g228737 +g228739 +S'for' +p228741 +tp228742 +a(g228739 +g228741 +S'the' +p228743 +tp228744 +a(g228741 +g228743 +S'first' +p228745 +tp228746 +a(g228743 +g228745 +S'president.' +p228747 +tp228748 +a(g228745 +g228747 +S'painted' +p228749 +tp228750 +a(g228747 +g228749 +S'from' +p228751 +tp228752 +a(g228749 +g228751 +S'life' +p228753 +tp228754 +a(g228751 +g228753 +S'in' +p228755 +tp228756 +a(g228753 +g228755 +S'april' +p228757 +tp228758 +a(g228755 +g228757 +S'1796,' +p228759 +tp228760 +a(g228757 +g228759 +S'the' +p228761 +tp228762 +a(g228759 +g228761 +S'unfinished' +p228763 +tp228764 +a(g228761 +g228763 +S'original' +p228765 +tp228766 +a(g228763 +g228765 +S'is' +p228767 +tp228768 +a(g228765 +g228767 +S'now' +p228769 +tp228770 +a(g228767 +g228769 +S'shared' +p228771 +tp228772 +a(g228769 +g228771 +S'at' +p228773 +tp228774 +a(g228771 +g228773 +S'three-year' +p228775 +tp228776 +a(g228773 +g228775 +S'intervals' +p228777 +tp228778 +a(g228775 +g228777 +S'between' +p228779 +tp228780 +a(g228777 +g228779 +S'the' +p228781 +tp228782 +a(g228779 +g228781 +S'museum' +p228783 +tp228784 +a(g228781 +g228783 +S'of' +p228785 +tp228786 +a(g228783 +g228785 +S'fine' +p228787 +tp228788 +a(g228785 +g228787 +S'arts,' +p228789 +tp228790 +a(g228787 +g228789 +S'boston,' +p228791 +tp228792 +a(g228789 +g228791 +S'and' +p228793 +tp228794 +a(g228791 +g228793 +S'the' +p228795 +tp228796 +a(g228793 +g228795 +S'national' +p228797 +tp228798 +a(g228795 +g228797 +S'portrait' +p228799 +tp228800 +a(g228797 +g228799 +S'gallery,' +p228801 +tp228802 +a(g228799 +g228801 +S'washington.' +p228803 +tp228804 +a(g228801 +g228803 +S'renaissance' +p228805 +tp228806 +a(g228803 +g228805 +S'bronze' +p228807 +tp228808 +a(g228805 +g228807 +S'sculpture' +p228809 +tp228810 +a(g228807 +g228809 +S'often' +p228811 +tp228812 +a(g228809 +g228811 +S'served' +p228813 +tp228814 +a(g228811 +g228813 +S'practical' +p228815 +tp228816 +a(g228813 +g228815 +S'functions.' +p228817 +tp228818 +a(g228815 +g228817 +S'this' +p228819 +tp228820 +a(g228817 +g228819 +S'doorknocker' +p228821 +tp228822 +a(g228819 +g228821 +S'is' +p228823 +tp228824 +a(g228821 +g228823 +S'one' +p228825 +tp228826 +a(g228823 +g228825 +S'of' +p228827 +tp228828 +a(g228825 +g228827 +S'the' +p228829 +tp228830 +a(g228827 +g228829 +S'finest' +p228831 +tp228832 +a(g228829 +g228831 +S'examples' +p228833 +tp228834 +a(g228831 +g228833 +S'of' +p228835 +tp228836 +a(g228833 +g228835 +S'a' +p228837 +tp228838 +a(g228835 +g228837 +S'specialty' +p228839 +tp228840 +a(g228837 +g228839 +S'of' +p228841 +tp228842 +a(g228839 +g228841 +S'the' +p228843 +tp228844 +a(g228841 +g228843 +S'city' +p228845 +tp228846 +a(g228843 +g228845 +S'of' +p228847 +tp228848 +a(g228845 +g228847 +S'venice,' +p228849 +tp228850 +a(g228847 +g228849 +S'where' +p228851 +tp228852 +a(g228849 +g228851 +S'jacopo' +p228853 +tp228854 +a(g228851 +g228853 +S'sansovino' +p228855 +tp228856 +a(g228853 +g228855 +S'dominated' +p228857 +tp228858 +a(g228855 +g228857 +S'sculptural' +p228859 +tp228860 +a(g228857 +g228859 +S'and' +p228861 +tp228862 +a(g228859 +g228861 +S'architectural' +p228863 +tp228864 +a(g228861 +g228863 +S'projects' +p228865 +tp228866 +a(g228863 +g228865 +S'for' +p228867 +tp228868 +a(g228865 +g228867 +S'some' +p228869 +tp228870 +a(g228867 +g228869 +S'forty' +p228871 +tp228872 +a(g228869 +g228871 +S'years.' +p228873 +tp228874 +a(g228871 +g228873 +S'gifted,' +p228875 +tp228876 +a(g228873 +g228875 +S'prolific,' +p228877 +tp228878 +a(g228875 +g228877 +S'and' +p228879 +tp228880 +a(g228877 +g228879 +S'well-connected,' +p228881 +tp228882 +a(g228879 +g228881 +S'sansovino' +p228883 +tp228884 +a(g228881 +g228883 +S'introduced' +p228885 +tp228886 +a(g228883 +g228885 +S'the' +p228887 +tp228888 +a(g228885 +g228887 +S'dynamic' +p228889 +tp228890 +a(g228887 +g228889 +S'and' +p228891 +tp228892 +a(g228889 +g228891 +S'heroically' +p228893 +tp228894 +a(g228891 +g228893 +S'proportioned' +p228895 +tp228896 +a(g228893 +g228895 +S'human' +p228897 +tp228898 +a(g228895 +g228897 +S'types' +p228899 +tp228900 +a(g228897 +g228899 +S'of' +p228901 +tp228902 +a(g228899 +g228901 +S'central' +p228903 +tp228904 +a(g228901 +g228903 +S'italian' +p228905 +tp228906 +a(g228903 +g228905 +S'high' +p228907 +tp228908 +a(g228905 +g228907 +S'renaissance' +p228909 +tp228910 +a(g228907 +g228909 +S'art' +p228911 +tp228912 +a(g228909 +g228911 +S'to' +p228913 +tp228914 +a(g228911 +g228913 +S'venetian' +p228915 +tp228916 +a(g228913 +g228915 +S'sculpture.' +p228917 +tp228918 +a(g228915 +g228917 +S'typical' +p228919 +tp228920 +a(g228917 +g228919 +S'of' +p228921 +tp228922 +a(g228919 +g228921 +S'its' +p228923 +tp228924 +a(g228921 +g228923 +S'kind,' +p228925 +tp228926 +a(g228923 +g228925 +S'this' +p228927 +tp228928 +a(g228925 +g228927 +S'doorknocker' +p228929 +tp228930 +a(g228927 +g228929 +S'has' +p228931 +tp228932 +a(g228929 +g228931 +S'a' +p228933 +tp228934 +a(g228931 +g228933 +S'broad' +p228935 +tp228936 +a(g228933 +g228935 +S'base' +p228937 +tp228938 +a(g228935 +g228937 +S'of' +p228939 +tp228940 +a(g228937 +g228939 +S'lush' +p228941 +tp228942 +a(g228939 +g228941 +S'acanthus' +p228943 +tp228944 +a(g228941 +g228943 +S'leaves,' +p228945 +tp228946 +a(g228943 +g228945 +S'from' +p228947 +tp228948 +a(g228945 +g228947 +S'which' +p228949 +tp228950 +a(g228947 +g228949 +S'horns' +p228951 +tp228952 +a(g228949 +g228951 +S'curve' +p228953 +tp228954 +a(g228951 +g228953 +S'upward' +p228955 +tp228956 +a(g228953 +g228955 +S'and' +p228957 +tp228958 +a(g228955 +g228957 +S'converge' +p228959 +tp228960 +a(g228957 +g228959 +S'toward' +p228961 +tp228962 +a(g228959 +g228961 +S'the' +p228963 +tp228964 +a(g228961 +g228963 +S'top' +p228965 +tp228966 +a(g228963 +g228965 +S'in' +p228967 +tp228968 +a(g228965 +g228967 +S'a' +p228969 +tp228970 +a(g228967 +g228969 +S'form' +p228971 +tp228972 +a(g228969 +g228971 +S'suggesting' +p228973 +tp228974 +a(g228971 +g228973 +S'a' +p228975 +tp228976 +a(g228973 +g228975 +S'lyre.' +p228977 +tp228978 +a(g228975 +g228977 +S'a' +p228979 +tp228980 +a(g228977 +g228979 +S'nereid' +p228981 +tp228982 +a(g228979 +g228981 +S'and' +p228983 +tp228984 +a(g228981 +g228983 +S'triton,' +p228985 +tp228986 +a(g228983 +g228985 +S'half-human' +p228987 +tp228988 +a(g228985 +g228987 +S'sea' +p228989 +tp228990 +a(g228987 +g228989 +S'creatures' +p228991 +tp228992 +a(g228989 +g228991 +S'whose' +p228993 +tp228994 +a(g228991 +g228993 +S'lower' +p228995 +tp228996 +a(g228993 +g228995 +S'bodies' +p228997 +tp228998 +a(g228995 +g228997 +S'are' +p228999 +tp229000 +a(g228997 +g228999 +S'understood' +p229001 +tp229002 +a(g228999 +g229001 +S'to' +p229003 +tp229004 +a(g229001 +g229003 +S'disappear' +p229005 +tp229006 +a(g229003 +g229005 +S'into' +p229007 +tp229008 +a(g229005 +g229007 +S'fish-tails' +p229009 +tp229010 +a(g229007 +g229009 +S'hidden' +p229011 +tp229012 +a(g229009 +g229011 +S'in' +p229013 +tp229014 +a(g229011 +g229013 +S'the' +p229015 +tp229016 +a(g229013 +g229015 +S'foliage,' +p229017 +tp229018 +a(g229015 +g229017 +S'gaze' +p229019 +tp229020 +a(g229017 +g229019 +S'delightedly' +p229021 +tp229022 +a(g229019 +g229021 +S'at' +p229023 +tp229024 +a(g229021 +g229023 +S'each' +p229025 +tp229026 +a(g229023 +g229025 +S'other.' +p229027 +tp229028 +a(g229025 +g229027 +S'the' +p229029 +tp229030 +a(g229027 +g229029 +S"male's" +p229031 +tp229032 +a(g229029 +g229031 +S'outstretched' +p229033 +tp229034 +a(g229031 +g229033 +S'left' +p229035 +tp229036 +a(g229033 +g229035 +S'arm' +p229037 +tp229038 +a(g229035 +g229037 +S'unites' +p229039 +tp229040 +a(g229037 +g229039 +S'them,' +p229041 +tp229042 +a(g229039 +g229041 +S'and' +p229043 +tp229044 +a(g229041 +g229043 +S'each' +p229045 +tp229046 +a(g229043 +g229045 +S"figure's" +p229047 +tp229048 +a(g229045 +g229047 +S'outer' +p229049 +tp229050 +a(g229047 +g229049 +S'arm' +p229051 +tp229052 +a(g229049 +g229051 +S'winds' +p229053 +tp229054 +a(g229051 +g229053 +S'up' +p229055 +tp229056 +a(g229053 +g229055 +S'under' +p229057 +tp229058 +a(g229055 +g229057 +S'and' +p229059 +tp229060 +a(g229057 +g229059 +S'around' +p229061 +tp229062 +a(g229059 +g229061 +S'the' +p229063 +tp229064 +a(g229061 +g229063 +S'horns' +p229065 +tp229066 +a(g229063 +g229065 +S'that' +p229067 +tp229068 +a(g229065 +g229067 +S'rise' +p229069 +tp229070 +a(g229067 +g229069 +S'out' +p229071 +tp229072 +a(g229069 +g229071 +S'of' +p229073 +tp229074 +a(g229071 +g229073 +S'the' +p229075 +tp229076 +a(g229073 +g229075 +S'leaves.' +p229077 +tp229078 +a(g229075 +g229077 +S'above' +p229079 +tp229080 +a(g229077 +g229079 +S'them,' +p229081 +tp229082 +a(g229079 +g229081 +S'robust' +p229083 +tp229084 +a(g229081 +g229083 +S'little' +p229085 +tp229086 +a(g229083 +g229085 +S'putti' +p229087 +tp229088 +a(g229085 +g229087 +S'twist' +p229089 +tp229090 +a(g229087 +g229089 +S'about' +p229091 +tp229092 +a(g229089 +g229091 +S'beneath' +p229093 +tp229094 +a(g229091 +g229093 +S'their' +p229095 +tp229096 +a(g229093 +g229095 +S'burden' +p229097 +tp229098 +a(g229095 +g229097 +S'of' +p229099 +tp229100 +a(g229097 +g229099 +S'dense' +p229101 +tp229102 +a(g229099 +g229101 +S'fruit' +p229103 +tp229104 +a(g229101 +g229103 +S'garlands,' +p229105 +tp229106 +a(g229103 +g229105 +S'splaying' +p229107 +tp229108 +a(g229105 +g229107 +S'their' +p229109 +tp229110 +a(g229107 +g229109 +S'legs' +p229111 +tp229112 +a(g229109 +g229111 +S'and' +p229113 +tp229114 +a(g229111 +g229113 +S'planting' +p229115 +tp229116 +a(g229113 +g229115 +S'their' +p229117 +tp229118 +a(g229115 +g229117 +S'feet' +p229119 +tp229120 +a(g229117 +g229119 +S'impudently' +p229121 +tp229122 +a(g229119 +g229121 +S'on' +p229123 +tp229124 +a(g229121 +g229123 +S'the' +p229125 +tp229126 +a(g229123 +g229125 +S"adults'" +p229127 +tp229128 +a(g229125 +g229127 +S'heads' +p229129 +tp229130 +a(g229127 +g229129 +S'and' +p229131 +tp229132 +a(g229129 +g229131 +S'chests.' +p229133 +tp229134 +a(g229131 +g229133 +S'the' +p229135 +tp229136 +a(g229133 +g229135 +S'whole,' +p229137 +tp229138 +a(g229135 +g229137 +S'brilliantly' +p229139 +tp229140 +a(g229137 +g229139 +S'interwoven' +p229141 +tp229142 +a(g229139 +g229141 +S'antiquarian' +p229143 +tp229144 +a(g229141 +g229143 +S'invention' +p229145 +tp229146 +a(g229143 +g229145 +S'alludes' +p229147 +tp229148 +a(g229145 +g229147 +S'in' +p229149 +tp229150 +a(g229147 +g229149 +S'a' +p229151 +tp229152 +a(g229149 +g229151 +S'direct' +p229153 +tp229154 +a(g229151 +g229153 +S'and' +p229155 +tp229156 +a(g229153 +g229155 +S'playful' +p229157 +tp229158 +a(g229155 +g229157 +S'way' +p229159 +tp229160 +a(g229157 +g229159 +S'to' +p229161 +tp229162 +a(g229159 +g229161 +S'love' +p229163 +tp229164 +a(g229161 +g229163 +S'and' +p229165 +tp229166 +a(g229163 +g229165 +S'fertility,' +p229167 +tp229168 +a(g229165 +g229167 +S'appropriate' +p229169 +tp229170 +a(g229167 +g229169 +S'to' +p229171 +tp229172 +a(g229169 +g229171 +S'the' +p229173 +tp229174 +a(g229171 +g229173 +S'door' +p229175 +tp229176 +a(g229173 +g229175 +S'of' +p229177 +tp229178 +a(g229175 +g229177 +S'a' +p229179 +tp229180 +a(g229177 +g229179 +S'home.' +p229181 +tp229182 +a(g229179 +g229181 +S'the' +p229183 +tp229184 +a(g229181 +g229183 +S'smooth,' +p229185 +tp229186 +a(g229183 +g229185 +S'worn' +p229187 +tp229188 +a(g229185 +g229187 +S'lower' +p229189 +tp229190 +a(g229187 +g229189 +S'leaves' +p229191 +tp229192 +a(g229189 +g229191 +S'indicate' +p229193 +tp229194 +a(g229191 +g229193 +S'that' +p229195 +tp229196 +a(g229193 +g229195 +S'the' +p229197 +tp229198 +a(g229195 +g229197 +S'knocker' +p229199 +tp229200 +a(g229197 +g229199 +S'received' +p229201 +tp229202 +a(g229199 +g229201 +S'many' +p229203 +tp229204 +a(g229201 +g229203 +S'years' +p229205 +tp229206 +a(g229203 +g229205 +S'of' +p229207 +tp229208 +a(g229205 +g229207 +S'use.' +p229209 +tp229210 +a(g229207 +g229209 +S'in' +p229211 +tp229212 +a(g229209 +g229211 +S'gorky' +p229213 +tp229214 +a(g229211 +g229213 +S'spent' +p229215 +tp229216 +a(g229213 +g229215 +S'most' +p229217 +tp229218 +a(g229215 +g229217 +S'of' +p229219 +tp229220 +a(g229217 +g229219 +S'1944' +p229221 +tp229222 +a(g229219 +g229221 +S'at' +p229223 +tp229224 +a(g229221 +g229223 +S'the' +p229225 +tp229226 +a(g229223 +g229225 +S'country' +p229227 +tp229228 +a(g229225 +g229227 +S'estate' +p229229 +tp229230 +a(g229227 +g229229 +S'of' +p229231 +tp229232 +a(g229229 +g229231 +S'his' +p229233 +tp229234 +a(g229231 +g229233 +S"wife's" +p229235 +tp229236 +a(g229233 +g229235 +S'parents' +p229237 +tp229238 +a(g229235 +g229237 +S'in' +p229239 +tp229240 +a(g229237 +g229239 +S'hamilton,' +p229241 +tp229242 +a(g229239 +g229241 +S'virginia,' +p229243 +tp229244 +a(g229241 +g229243 +S'drawing,' +p229245 +tp229246 +a(g229243 +g229245 +S'painting,' +p229247 +tp229248 +a(g229245 +g229247 +S'and' +p229249 +tp229250 +a(g229247 +g229249 +S'observing' +p229251 +tp229252 +a(g229249 +g229251 +S'the' +p229253 +tp229254 +a(g229251 +g229253 +S'changes' +p229255 +tp229256 +a(g229253 +g229255 +S'of' +p229257 +tp229258 +a(g229255 +g229257 +S'the' +p229259 +tp229260 +a(g229257 +g229259 +S'seasons.' +p229261 +tp229262 +a(g229259 +g229261 +S'his' +p229263 +tp229264 +a(g229261 +g229263 +S'mood' +p229265 +tp229266 +a(g229263 +g229265 +S'in' +p229267 +tp229268 +a(g229265 +g229267 +S'in' +p229269 +tp229270 +a(g229267 +g229269 +S'a' +p229271 +tp229272 +a(g229269 +g229271 +S'fanciful' +p229273 +tp229274 +a(g229271 +g229273 +S'guise' +p229275 +tp229276 +a(g229273 +g229275 +S'taken' +p229277 +tp229278 +a(g229275 +g229277 +S'from' +p229279 +tp229280 +a(g229277 +g229279 +S'european' +p229281 +tp229282 +a(g229279 +g229281 +S'prototypes,' +p229283 +tp229284 +a(g229281 +g229283 +S'the' +p229285 +tp229286 +a(g229283 +g229285 +S'sitter' +p229287 +tp229288 +a(g229285 +g229287 +S'appears' +p229289 +tp229290 +a(g229287 +g229289 +S'as' +p229291 +tp229292 +a(g229289 +g229291 +S'a' +p229293 +tp229294 +a(g229291 +g229293 +S'shepherdess' +p229295 +tp229296 +a(g229293 +g229295 +S'holding' +p229297 +tp229298 +a(g229295 +g229297 +S'a' +p229299 +tp229300 +a(g229297 +g229299 +S'herder’s' +p229301 +tp229302 +a(g229299 +g229301 +S'staff.' +p229303 +tp229304 +a(g229301 +g229303 +S'elizabeth' +p229305 +tp229306 +a(g229303 +g229305 +S'gray' +p229307 +tp229308 +a(g229305 +g229307 +S'(1746-1779)' +p229309 +tp229310 +a(g229307 +g229309 +S'married' +p229311 +tp229312 +a(g229309 +g229311 +S'a' +p229313 +tp229314 +a(g229311 +g229313 +S'boston' +p229315 +tp229316 +a(g229313 +g229315 +S'merchant' +p229317 +tp229318 +a(g229315 +g229317 +S'in' +p229319 +tp229320 +a(g229317 +g229319 +S'1764.' +p229321 +tp229322 +a(g229319 +g229321 +S'with' +p229323 +tp229324 +a(g229321 +g229323 +S'its' +p229325 +tp229326 +a(g229323 +g229325 +S'promising' +p229327 +tp229328 +a(g229325 +g229327 +S'sunrise,' +p229329 +tp229330 +a(g229327 +g229329 +S'this' +p229331 +tp229332 +a(g229329 +g229331 +S'pastoral' +p229333 +tp229334 +a(g229331 +g229333 +S'scene' +p229335 +tp229336 +a(g229333 +g229335 +S'was' +p229337 +tp229338 +a(g229335 +g229337 +S'almost' +p229339 +tp229340 +a(g229337 +g229339 +S'certainly' +p229341 +tp229342 +a(g229339 +g229341 +S'commissioned' +p229343 +tp229344 +a(g229341 +g229343 +S'to' +p229345 +tp229346 +a(g229343 +g229345 +S'mark' +p229347 +tp229348 +a(g229345 +g229347 +S'her' +p229349 +tp229350 +a(g229347 +g229349 +S'wedding.' +p229351 +tp229352 +a(g229349 +g229351 +S'despite' +p229353 +tp229354 +a(g229351 +g229353 +S'its' +p229355 +tp229356 +a(g229353 +g229355 +S'meticulous' +p229357 +tp229358 +a(g229355 +g229357 +S'draftsmanship' +p229359 +tp229360 +a(g229357 +g229359 +S'and' +p229361 +tp229362 +a(g229359 +g229361 +S'precise' +p229363 +tp229364 +a(g229361 +g229363 +S'detail,' +p229365 +tp229366 +a(g229363 +g229365 +S"lane's" +p229367 +tp229368 +a(g229365 +g229367 +S'work' +p229369 +tp229370 +a(g229367 +g229369 +S'is' +p229371 +tp229372 +a(g229369 +g229371 +S'far' +p229373 +tp229374 +a(g229371 +g229373 +S'more' +p229375 +tp229376 +a(g229373 +g229375 +S'than' +p229377 +tp229378 +a(g229375 +g229377 +S'a' +p229379 +tp229380 +a(g229377 +g229379 +S'simple' +p229381 +tp229382 +a(g229379 +g229381 +S'inventory' +p229383 +tp229384 +a(g229381 +g229383 +S'of' +p229385 +tp229386 +a(g229383 +g229385 +S'harbor' +p229387 +tp229388 +a(g229385 +g229387 +S'activity.' +p229389 +tp229390 +a(g229387 +g229389 +S'the' +p229391 +tp229392 +a(g229389 +g229391 +S'diminutive' +p229393 +tp229394 +a(g229391 +g229393 +S'figures' +p229395 +tp229396 +a(g229393 +g229395 +S'and' +p229397 +tp229398 +a(g229395 +g229397 +S'carefully' +p229399 +tp229400 +a(g229397 +g229399 +S'rendered' +p229401 +tp229402 +a(g229399 +g229401 +S'vessels' +p229403 +tp229404 +a(g229401 +g229403 +S'remain' +p229405 +tp229406 +a(g229403 +g229405 +S'secondary' +p229407 +tp229408 +a(g229405 +g229407 +S'to' +p229409 +tp229410 +a(g229407 +g229409 +S'the' +p229411 +tp229412 +a(g229409 +g229411 +S'vast' +p229413 +tp229414 +a(g229411 +g229413 +S'expanse' +p229415 +tp229416 +a(g229413 +g229415 +S'of' +p229417 +tp229418 +a(g229415 +g229417 +S'sky,' +p229419 +tp229420 +a(g229417 +g229419 +S'where' +p229421 +tp229422 +a(g229419 +g229421 +S'shimmering' +p229423 +tp229424 +a(g229421 +g229423 +S'light' +p229425 +tp229426 +a(g229423 +g229425 +S'creates' +p229427 +tp229428 +a(g229425 +g229427 +S'a' +p229429 +tp229430 +a(g229427 +g229429 +S'tranquil,' +p229431 +tp229432 +a(g229429 +g229431 +S'idyllic' +p229433 +tp229434 +a(g229431 +g229433 +S'mood.' +p229435 +tp229436 +a(g229433 +g229435 +S"lane's" +p229437 +tp229438 +a(g229435 +g229437 +S'rarefied' +p229439 +tp229440 +a(g229437 +g229439 +S'landscapes' +p229441 +tp229442 +a(g229439 +g229441 +S'epitomize' +p229443 +tp229444 +a(g229441 +g229443 +S"man's" +p229445 +tp229446 +a(g229443 +g229445 +S'harmonious' +p229447 +tp229448 +a(g229445 +g229447 +S'union' +p229449 +tp229450 +a(g229447 +g229449 +S'with' +p229451 +tp229452 +a(g229449 +g229451 +S'the' +p229453 +tp229454 +a(g229451 +g229453 +S'natural' +p229455 +tp229456 +a(g229453 +g229455 +S'world.' +p229457 +tp229458 +a(g229455 +g229457 +S'some' +p229459 +tp229460 +a(g229457 +g229459 +S'scholars' +p229461 +tp229462 +a(g229459 +g229461 +S'have' +p229463 +tp229464 +a(g229461 +g229463 +S'used' +p229465 +tp229466 +a(g229463 +g229465 +S'the' +p229467 +tp229468 +a(g229465 +g229467 +S'term' +p229469 +tp229470 +a(g229467 +g229469 +S'"luminism"' +p229471 +tp229472 +a(g229469 +g229471 +S'to' +p229473 +tp229474 +a(g229471 +g229473 +S'describe' +p229475 +tp229476 +a(g229473 +g229475 +S'the' +p229477 +tp229478 +a(g229475 +g229477 +S"artist's" +p229479 +tp229480 +a(g229477 +g229479 +S'subtle' +p229481 +tp229482 +a(g229479 +g229481 +S'use' +p229483 +tp229484 +a(g229481 +g229483 +S'of' +p229485 +tp229486 +a(g229483 +g229485 +S'light' +p229487 +tp229488 +a(g229485 +g229487 +S'and' +p229489 +tp229490 +a(g229487 +g229489 +S'atmospheric' +p229491 +tp229492 +a(g229489 +g229491 +S'effects' +p229493 +tp229494 +a(g229491 +g229493 +S'to' +p229495 +tp229496 +a(g229493 +g229495 +S'convey' +p229497 +tp229498 +a(g229495 +g229497 +S"nature's" +p229499 +tp229500 +a(g229497 +g229499 +S'intangible' +p229501 +tp229502 +a(g229499 +g229501 +S'spirit.' +p229503 +tp229504 +a(g229501 +g229503 +S'ralph' +p229505 +tp229506 +a(g229503 +g229505 +S'waldo' +p229507 +tp229508 +a(g229505 +g229507 +S'emerson,' +p229509 +tp229510 +a(g229507 +g229509 +S'the' +p229511 +tp229512 +a(g229509 +g229511 +S'foremost' +p229513 +tp229514 +a(g229511 +g229513 +S'exponent' +p229515 +tp229516 +a(g229513 +g229515 +S'of' +p229517 +tp229518 +a(g229515 +g229517 +S'american' +p229519 +tp229520 +a(g229517 +g229519 +S'transcendentalism,' +p229521 +tp229522 +a(g229519 +g229521 +S'believed' +p229523 +tp229524 +a(g229521 +g229523 +S'that' +p229525 +tp229526 +a(g229523 +g229525 +S'poets' +p229527 +tp229528 +a(g229525 +g229527 +S'and' +p229529 +tp229530 +a(g229527 +g229529 +S'painters' +p229531 +tp229532 +a(g229529 +g229531 +S'should' +p229533 +tp229534 +a(g229531 +g229533 +S'serve' +p229535 +tp229536 +a(g229533 +g229535 +S'as' +p229537 +tp229538 +a(g229535 +g229537 +S'conduits' +p229539 +tp229540 +a(g229537 +g229539 +S'through' +p229541 +tp229542 +a(g229539 +g229541 +S'which' +p229543 +tp229544 +a(g229541 +g229543 +S'the' +p229545 +tp229546 +a(g229543 +g229545 +S'experience' +p229547 +tp229548 +a(g229545 +g229547 +S'of' +p229549 +tp229550 +a(g229547 +g229549 +S'nature' +p229551 +tp229552 +a(g229549 +g229551 +S'might' +p229553 +tp229554 +a(g229551 +g229553 +S'be' +p229555 +tp229556 +a(g229553 +g229555 +S'transmitted' +p229557 +tp229558 +a(g229555 +g229557 +S'directly' +p229559 +tp229560 +a(g229557 +g229559 +S'to' +p229561 +tp229562 +a(g229559 +g229561 +S'their' +p229563 +tp229564 +a(g229561 +g229563 +S'audience.' +p229565 +tp229566 +a(g229563 +g229565 +S'with' +p229567 +tp229568 +a(g229565 +g229567 +S'a' +p229569 +tp229570 +a(g229567 +g229569 +S'similarly' +p229571 +tp229572 +a(g229569 +g229571 +S'self-effacing' +p229573 +tp229574 +a(g229571 +g229573 +S'artistic' +p229575 +tp229576 +a(g229573 +g229575 +S'temperament,' +p229577 +tp229578 +a(g229575 +g229577 +S'lane' +p229579 +tp229580 +a(g229577 +g229579 +S'minimized' +p229581 +tp229582 +a(g229579 +g229581 +S'his' +p229583 +tp229584 +a(g229581 +g229583 +S'autographic' +p229585 +tp229586 +a(g229583 +g229585 +S'presence,' +p229587 +tp229588 +a(g229585 +g229587 +S'using' +p229589 +tp229590 +a(g229587 +g229589 +S'translucent' +p229591 +tp229592 +a(g229589 +g229591 +S'glazes' +p229593 +tp229594 +a(g229591 +g229593 +S'rather' +p229595 +tp229596 +a(g229593 +g229595 +S'than' +p229597 +tp229598 +a(g229595 +g229597 +S'heavily' +p229599 +tp229600 +a(g229597 +g229599 +S'impastoed' +p229601 +tp229602 +a(g229599 +g229601 +S'surfaces' +p229603 +tp229604 +a(g229601 +g229603 +S'to' +p229605 +tp229606 +a(g229603 +g229605 +S'underscore' +p229607 +tp229608 +a(g229605 +g229607 +S'the' +p229609 +tp229610 +a(g229607 +g229609 +S"scene's" +p229611 +tp229612 +a(g229609 +g229611 +S'pervasive' +p229613 +tp229614 +a(g229611 +g229613 +S'stillness.' +p229615 +tp229616 +a(g229613 +g229615 +S'his' +p229617 +tp229618 +a(g229615 +g229617 +S'elegiac' +p229619 +tp229620 +a(g229617 +g229619 +S'paintings' +p229621 +tp229622 +a(g229619 +g229621 +S'differ' +p229623 +tp229624 +a(g229621 +g229623 +S'profoundly' +p229625 +tp229626 +a(g229623 +g229625 +S'from' +p229627 +tp229628 +a(g229625 +g229627 +S'the' +p229629 +tp229630 +a(g229627 +g229629 +S'more' +p229631 +tp229632 +a(g229629 +g229631 +S'explosive' +p229633 +tp229634 +a(g229631 +g229633 +S'exuberance' +p229635 +tp229636 +a(g229633 +g229635 +S'expressed' +p229637 +tp229638 +a(g229635 +g229637 +S'by' +p229639 +tp229640 +a(g229637 +g229639 +S'cole' +p229641 +tp229642 +a(g229639 +g229641 +S'and' +p229643 +tp229644 +a(g229641 +g229643 +S'church,' +p229645 +tp229646 +a(g229643 +g229645 +S'though' +p229647 +tp229648 +a(g229645 +g229647 +S'he' +p229649 +tp229650 +a(g229647 +g229649 +S'shared' +p229651 +tp229652 +a(g229649 +g229651 +S'these' +p229653 +tp229654 +a(g229651 +g229653 +S"artists'" +p229655 +tp229656 +a(g229653 +g229655 +S'reverence' +p229657 +tp229658 +a(g229655 +g229657 +S'for' +p229659 +tp229660 +a(g229657 +g229659 +S'nature' +p229661 +tp229662 +a(g229659 +g229661 +S'and' +p229663 +tp229664 +a(g229661 +g229663 +S'their' +p229665 +tp229666 +a(g229663 +g229665 +S'belief' +p229667 +tp229668 +a(g229665 +g229667 +S'in' +p229669 +tp229670 +a(g229667 +g229669 +S'its' +p229671 +tp229672 +a(g229669 +g229671 +S'inherent' +p229673 +tp229674 +a(g229671 +g229673 +S'divinity.' +p229675 +tp229676 +a(g229673 +g229675 +S'maiastra' +p229677 +tp229678 +a(g229675 +g229677 +S'maiastra' +p229679 +tp229680 +a(g229677 +g229679 +S'appears' +p229681 +tp229682 +a(g229679 +g229681 +S'perched' +p229683 +tp229684 +a(g229681 +g229683 +S'on' +p229685 +tp229686 +a(g229683 +g229685 +S'its' +p229687 +tp229688 +a(g229685 +g229687 +S'base,' +p229689 +tp229690 +a(g229687 +g229689 +S'radiant' +p229691 +tp229692 +a(g229689 +g229691 +S'in' +p229693 +tp229694 +a(g229691 +g229693 +S'its' +p229695 +tp229696 +a(g229693 +g229695 +S'golden' +p229697 +tp229698 +a(g229695 +g229697 +S'color,' +p229699 +tp229700 +a(g229697 +g229699 +S'its' +p229701 +tp229702 +a(g229699 +g229701 +S'breast' +p229703 +tp229704 +a(g229701 +g229703 +S'swelling' +p229705 +tp229706 +a(g229703 +g229705 +S'and' +p229707 +tp229708 +a(g229705 +g229707 +S'beak' +p229709 +tp229710 +a(g229707 +g229709 +S'open' +p229711 +tp229712 +a(g229709 +g229711 +S'as' +p229713 +tp229714 +a(g229711 +g229713 +S'if' +p229715 +tp229716 +a(g229713 +g229715 +S'about' +p229717 +tp229718 +a(g229715 +g229717 +S'to' +p229719 +tp229720 +a(g229717 +g229719 +S'sing.' +p229721 +tp229722 +a(g229719 +g229721 +S'brancusi' +p229723 +tp229724 +a(g229721 +g229723 +S'stated' +p229725 +tp229726 +a(g229723 +g229725 +S'about' +p229727 +tp229728 +a(g229725 +g229727 +S'the' +p229729 +tp229730 +a(g229727 +g229729 +S'pose,' +p229731 +tp229732 +a(g229729 +g229731 +S'"i' +p229733 +tp229734 +a(g229731 +g229733 +S'wanted' +p229735 +tp229736 +a(g229733 +g229735 +S'to' +p229737 +tp229738 +a(g229735 +g229737 +S'show' +p229739 +tp229740 +a(g229737 +g229739 +S'the' +p229741 +tp229742 +a(g229739 +g229741 +S'maiastra' +p229743 +tp229744 +a(g229741 +g229743 +S'as' +p229745 +tp229746 +a(g229743 +g229745 +S'raising' +p229747 +tp229748 +a(g229745 +g229747 +S'its' +p229749 +tp229750 +a(g229747 +g229749 +S'head,' +p229751 +tp229752 +a(g229749 +g229751 +S'but' +p229753 +tp229754 +a(g229751 +g229753 +S'without' +p229755 +tp229756 +a(g229753 +g229755 +S'putting' +p229757 +tp229758 +a(g229755 +g229757 +S'any' +p229759 +tp229760 +a(g229757 +g229759 +S'implications' +p229761 +tp229762 +a(g229759 +g229761 +S'of' +p229763 +tp229764 +a(g229761 +g229763 +S'pride,' +p229765 +tp229766 +a(g229763 +g229765 +S'haughtiness' +p229767 +tp229768 +a(g229765 +g229767 +S'or' +p229769 +tp229770 +a(g229767 +g229769 +S'defiance' +p229771 +tp229772 +a(g229769 +g229771 +S'into' +p229773 +tp229774 +a(g229771 +g229773 +S'this' +p229775 +tp229776 +a(g229773 +g229775 +S'gesture.' +p229777 +tp229778 +a(g229775 +g229777 +S'that' +p229779 +tp229780 +a(g229777 +g229779 +S'was' +p229781 +tp229782 +a(g229779 +g229781 +S'the' +p229783 +tp229784 +a(g229781 +g229783 +S'difficult' +p229785 +tp229786 +a(g229783 +g229785 +S'problem' +p229787 +tp229788 +a(g229785 +g229787 +S'and' +p229789 +tp229790 +a(g229787 +g229789 +S'it' +p229791 +tp229792 +a(g229789 +g229791 +S'is' +p229793 +tp229794 +a(g229791 +g229793 +S'only' +p229795 +tp229796 +a(g229793 +g229795 +S'after' +p229797 +tp229798 +a(g229795 +g229797 +S'much' +p229799 +tp229800 +a(g229797 +g229799 +S'hard' +p229801 +tp229802 +a(g229799 +g229801 +S'work' +p229803 +tp229804 +a(g229801 +g229803 +S'that' +p229805 +tp229806 +a(g229803 +g229805 +S'i' +p229807 +tp229808 +a(g229805 +g229807 +S'managed' +p229809 +tp229810 +a(g229807 +g229809 +S'to' +p229811 +tp229812 +a(g229809 +g229811 +S'incorporate' +p229813 +tp229814 +a(g229811 +g229813 +S'this' +p229815 +tp229816 +a(g229813 +g229815 +S'gesture' +p229817 +tp229818 +a(g229815 +g229817 +S'into' +p229819 +tp229820 +a(g229817 +g229819 +S'the' +p229821 +tp229822 +a(g229819 +g229821 +S'motion' +p229823 +tp229824 +a(g229821 +g229823 +S'of' +p229825 +tp229826 +a(g229823 +g229825 +S'flight."' +p229827 +tp229828 +a(g229825 +g229827 +S'the' +p229829 +tp229830 +a(g229827 +g229829 +S'subtlety' +p229831 +tp229832 +a(g229829 +g229831 +S'and' +p229833 +tp229834 +a(g229831 +g229833 +S'refinement' +p229835 +tp229836 +a(g229833 +g229835 +S'of' +p229837 +tp229838 +a(g229835 +g229837 +S"brancusi's" +p229839 +tp229840 +a(g229837 +g229839 +S'sculptural' +p229841 +tp229842 +a(g229839 +g229841 +S'language' +p229843 +tp229844 +a(g229841 +g229843 +S'are' +p229845 +tp229846 +a(g229843 +g229845 +S'seen' +p229847 +tp229848 +a(g229845 +g229847 +S'in' +p229849 +tp229850 +a(g229847 +g229849 +S'the' +p229851 +tp229852 +a(g229849 +g229851 +S'treatment' +p229853 +tp229854 +a(g229851 +g229853 +S'of' +p229855 +tp229856 +a(g229853 +g229855 +S'the' +p229857 +tp229858 +a(g229855 +g229857 +S'eyes,' +p229859 +tp229860 +a(g229857 +g229859 +S'the' +p229861 +tp229862 +a(g229859 +g229861 +S'arch' +p229863 +tp229864 +a(g229861 +g229863 +S'of' +p229865 +tp229866 +a(g229863 +g229865 +S'the' +p229867 +tp229868 +a(g229865 +g229867 +S'neck,' +p229869 +tp229870 +a(g229867 +g229869 +S'the' +p229871 +tp229872 +a(g229869 +g229871 +S'slight' +p229873 +tp229874 +a(g229871 +g229873 +S'turn' +p229875 +tp229876 +a(g229873 +g229875 +S'of' +p229877 +tp229878 +a(g229875 +g229877 +S'the' +p229879 +tp229880 +a(g229877 +g229879 +S'head,' +p229881 +tp229882 +a(g229879 +g229881 +S'and' +p229883 +tp229884 +a(g229881 +g229883 +S'the' +p229885 +tp229886 +a(g229883 +g229885 +S'highly' +p229887 +tp229888 +a(g229885 +g229887 +S'polished' +p229889 +tp229890 +a(g229887 +g229889 +S'reflective' +p229891 +tp229892 +a(g229889 +g229891 +S'surface' +p229893 +tp229894 +a(g229891 +g229893 +S'of' +p229895 +tp229896 +a(g229893 +g229895 +S'the' +p229897 +tp229898 +a(g229895 +g229897 +S'bronze,' +p229899 +tp229900 +a(g229897 +g229899 +S'as' +p229901 +tp229902 +a(g229899 +g229901 +S'well' +p229903 +tp229904 +a(g229901 +g229903 +S'as' +p229905 +tp229906 +a(g229903 +g229905 +S'the' +p229907 +tp229908 +a(g229905 +g229907 +S'dialogue' +p229909 +tp229910 +a(g229907 +g229909 +S'between' +p229911 +tp229912 +a(g229909 +g229911 +S'organic' +p229913 +tp229914 +a(g229911 +g229913 +S'and' +p229915 +tp229916 +a(g229913 +g229915 +S'hard-edge' +p229917 +tp229918 +a(g229915 +g229917 +S'surfaces' +p229919 +tp229920 +a(g229917 +g229919 +S'and' +p229921 +tp229922 +a(g229919 +g229921 +S'lines' +p229923 +tp229924 +a(g229921 +g229923 +S'and' +p229925 +tp229926 +a(g229923 +g229925 +S'between' +p229927 +tp229928 +a(g229925 +g229927 +S'the' +p229929 +tp229930 +a(g229927 +g229929 +S'materials' +p229931 +tp229932 +a(g229929 +g229931 +S'and' +p229933 +tp229934 +a(g229931 +g229933 +S'shapes' +p229935 +tp229936 +a(g229933 +g229935 +S'of' +p229937 +tp229938 +a(g229935 +g229937 +S'the' +p229939 +tp229940 +a(g229937 +g229939 +S'sculpture,' +p229941 +tp229942 +a(g229939 +g229941 +S'its' +p229943 +tp229944 +a(g229941 +g229943 +S'base,' +p229945 +tp229946 +a(g229943 +g229945 +S'and' +p229947 +tp229948 +a(g229945 +g229947 +S'its' +p229949 +tp229950 +a(g229947 +g229949 +S'pedestal.' +p229951 +tp229952 +a(g229949 +g229951 +S'in' +p229953 +tp229954 +a(g229951 +g229953 +S'his' +p229955 +tp229956 +a(g229953 +g229955 +S'obsessive' +p229957 +tp229958 +a(g229955 +g229957 +S'search' +p229959 +tp229960 +a(g229957 +g229959 +S'for' +p229961 +tp229962 +a(g229959 +g229961 +S'"the' +p229963 +tp229964 +a(g229961 +g229963 +S'essence' +p229965 +tp229966 +a(g229963 +g229965 +S'of' +p229967 +tp229968 +a(g229965 +g229967 +S'the' +p229969 +tp229970 +a(g229967 +g229969 +S'work,"' +p229971 +tp229972 +a(g229969 +g229971 +S"brancusi's" +p229973 +tp229974 +a(g229971 +g229973 +S'still' +p229975 +tp229976 +a(g229973 +g229975 +S'lifes' +p229977 +tp229978 +a(g229975 +g229977 +S'with' +p229979 +tp229980 +a(g229977 +g229979 +S'hunting' +p229981 +tp229982 +a(g229979 +g229981 +S'motifs' +p229983 +tp229984 +a(g229981 +g229983 +S'became' +p229985 +tp229986 +a(g229983 +g229985 +S'popular' +p229987 +tp229988 +a(g229985 +g229987 +S'in' +p229989 +tp229990 +a(g229987 +g229989 +S'dutch' +p229991 +tp229992 +a(g229989 +g229991 +S'art' +p229993 +tp229994 +a(g229991 +g229993 +S'in' +p229995 +tp229996 +a(g229993 +g229995 +S'the' +p229997 +tp229998 +a(g229995 +g229997 +S'latter' +p229999 +tp230000 +a(g229997 +g229999 +S'part' +p230001 +tp230002 +a(g229999 +g230001 +S'of' +p230003 +tp230004 +a(g230001 +g230003 +S'the' +p230005 +tp230006 +a(g230003 +g230005 +S'seventeenth' +p230007 +tp230008 +a(g230005 +g230007 +S'century,' +p230009 +tp230010 +a(g230007 +g230009 +S'at' +p230011 +tp230012 +a(g230009 +g230011 +S'a' +p230013 +tp230014 +a(g230011 +g230013 +S'time' +p230015 +tp230016 +a(g230013 +g230015 +S'when' +p230017 +tp230018 +a(g230015 +g230017 +S'dutch' +p230019 +tp230020 +a(g230017 +g230019 +S'society' +p230021 +tp230022 +a(g230019 +g230021 +S'grew' +p230023 +tp230024 +a(g230021 +g230023 +S'wealthier' +p230025 +tp230026 +a(g230023 +g230025 +S'and' +p230027 +tp230028 +a(g230025 +g230027 +S'more' +p230029 +tp230030 +a(g230027 +g230029 +S'refined.' +p230031 +tp230032 +a(g230029 +g230031 +S'one' +p230033 +tp230034 +a(g230031 +g230033 +S'of' +p230035 +tp230036 +a(g230033 +g230035 +S'the' +p230037 +tp230038 +a(g230035 +g230037 +S'most' +p230039 +tp230040 +a(g230037 +g230039 +S'important' +p230041 +tp230042 +a(g230039 +g230041 +S'artists' +p230043 +tp230044 +a(g230041 +g230043 +S'in' +p230045 +tp230046 +a(g230043 +g230045 +S'this' +p230047 +tp230048 +a(g230045 +g230047 +S'tradition' +p230049 +tp230050 +a(g230047 +g230049 +S'was' +p230051 +tp230052 +a(g230049 +g230051 +S'willem' +p230053 +tp230054 +a(g230051 +g230053 +S'van' +p230055 +tp230056 +a(g230053 +g230055 +S'aelst,' +p230057 +tp230058 +a(g230055 +g230057 +S'who' +p230059 +tp230060 +a(g230057 +g230059 +S'came' +p230061 +tp230062 +a(g230059 +g230061 +S'from' +p230063 +tp230064 +a(g230061 +g230063 +S'delft' +p230065 +tp230066 +a(g230063 +g230065 +S'but' +p230067 +tp230068 +a(g230065 +g230067 +S'trained' +p230069 +tp230070 +a(g230067 +g230069 +S'and' +p230071 +tp230072 +a(g230069 +g230071 +S'worked' +p230073 +tp230074 +a(g230071 +g230073 +S'for' +p230075 +tp230076 +a(g230073 +g230075 +S'a' +p230077 +tp230078 +a(g230075 +g230077 +S'number' +p230079 +tp230080 +a(g230077 +g230079 +S'of' +p230081 +tp230082 +a(g230079 +g230081 +S'years' +p230083 +tp230084 +a(g230081 +g230083 +S'in' +p230085 +tp230086 +a(g230083 +g230085 +S'france' +p230087 +tp230088 +a(g230085 +g230087 +S'and' +p230089 +tp230090 +a(g230087 +g230089 +S'italy.' +p230091 +tp230092 +a(g230089 +g230091 +S'van' +p230093 +tp230094 +a(g230091 +g230093 +S'aelst' +p230095 +tp230096 +a(g230093 +g230095 +S'depicted' +p230097 +tp230098 +a(g230095 +g230097 +S'a' +p230099 +tp230100 +a(g230097 +g230099 +S'number' +p230101 +tp230102 +a(g230099 +g230101 +S'of' +p230103 +tp230104 +a(g230101 +g230103 +S'dead' +p230105 +tp230106 +a(g230103 +g230105 +S'animals' +p230107 +tp230108 +a(g230105 +g230107 +S'hanging' +p230109 +tp230110 +a(g230107 +g230109 +S'above' +p230111 +tp230112 +a(g230109 +g230111 +S'and' +p230113 +tp230114 +a(g230111 +g230113 +S'resting' +p230115 +tp230116 +a(g230113 +g230115 +S'upon' +p230117 +tp230118 +a(g230115 +g230117 +S'a' +p230119 +tp230120 +a(g230117 +g230119 +S'stone' +p230121 +tp230122 +a(g230119 +g230121 +S'ledge' +p230123 +tp230124 +a(g230121 +g230123 +S'on' +p230125 +tp230126 +a(g230123 +g230125 +S'which' +p230127 +tp230128 +a(g230125 +g230127 +S'a' +p230129 +tp230130 +a(g230127 +g230129 +S'blue' +p230131 +tp230132 +a(g230129 +g230131 +S'and' +p230133 +tp230134 +a(g230131 +g230133 +S'gold' +p230135 +tp230136 +a(g230133 +g230135 +S"hunter's" +p230137 +tp230138 +a(g230135 +g230137 +S'game' +p230139 +tp230140 +a(g230137 +g230139 +S'pouch' +p230141 +tp230142 +a(g230139 +g230141 +S'lies.' +p230143 +tp230144 +a(g230141 +g230143 +S'the' +p230145 +tp230146 +a(g230143 +g230145 +S'animals' +p230147 +tp230148 +a(g230145 +g230147 +S'were' +p230149 +tp230150 +a(g230147 +g230149 +S'painted' +p230151 +tp230152 +a(g230149 +g230151 +S'very' +p230153 +tp230154 +a(g230151 +g230153 +S'precisely,' +p230155 +tp230156 +a(g230153 +g230155 +S'and' +p230157 +tp230158 +a(g230155 +g230157 +S'most' +p230159 +tp230160 +a(g230157 +g230159 +S'of' +p230161 +tp230162 +a(g230159 +g230161 +S'them' +p230163 +tp230164 +a(g230161 +g230163 +S'can' +p230165 +tp230166 +a(g230163 +g230165 +S'be' +p230167 +tp230168 +a(g230165 +g230167 +S'identified.' +p230169 +tp230170 +a(g230167 +g230169 +S'aside' +p230171 +tp230172 +a(g230169 +g230171 +S'from' +p230173 +tp230174 +a(g230171 +g230173 +S'the' +p230175 +tp230176 +a(g230173 +g230175 +S'large' +p230177 +tp230178 +a(g230175 +g230177 +S'european' +p230179 +tp230180 +a(g230177 +g230179 +S'hare' +p230181 +tp230182 +a(g230179 +g230181 +S'and' +p230183 +tp230184 +a(g230181 +g230183 +S'roosters' +p230185 +tp230186 +a(g230183 +g230185 +S'are' +p230187 +tp230188 +a(g230185 +g230187 +S'a' +p230189 +tp230190 +a(g230187 +g230189 +S'partridge,' +p230191 +tp230192 +a(g230189 +g230191 +S'kingfisher,' +p230193 +tp230194 +a(g230191 +g230193 +S'and' +p230195 +tp230196 +a(g230193 +g230195 +S'common' +p230197 +tp230198 +a(g230195 +g230197 +S'wheatear.' +p230199 +tp230200 +a(g230197 +g230199 +S'also' +p230201 +tp230202 +a(g230199 +g230201 +S'visible' +p230203 +tp230204 +a(g230201 +g230203 +S'are' +p230205 +tp230206 +a(g230203 +g230205 +S'two' +p230207 +tp230208 +a(g230205 +g230207 +S"falconer's" +p230209 +tp230210 +a(g230207 +g230209 +S'hoods,' +p230211 +tp230212 +a(g230209 +g230211 +S'perhaps' +p230213 +tp230214 +a(g230211 +g230213 +S'to' +p230215 +tp230216 +a(g230213 +g230215 +S'indicate' +p230217 +tp230218 +a(g230215 +g230217 +S'the' +p230219 +tp230220 +a(g230217 +g230219 +S'nature' +p230221 +tp230222 +a(g230219 +g230221 +S'of' +p230223 +tp230224 +a(g230221 +g230223 +S'the' +p230225 +tp230226 +a(g230223 +g230225 +S'hunt.' +p230227 +tp230228 +a(g230225 +g230227 +S'that' +p230229 +tp230230 +a(g230227 +g230229 +S'van' +p230231 +tp230232 +a(g230229 +g230231 +S"aelst's" +p230233 +tp230234 +a(g230231 +g230233 +S'painting' +p230235 +tp230236 +a(g230233 +g230235 +S'was' +p230237 +tp230238 +a(g230235 +g230237 +S'intended' +p230239 +tp230240 +a(g230237 +g230239 +S'to' +p230241 +tp230242 +a(g230239 +g230241 +S'represent' +p230243 +tp230244 +a(g230241 +g230243 +S'the' +p230245 +tp230246 +a(g230243 +g230245 +S'general' +p230247 +tp230248 +a(g230245 +g230247 +S'theme' +p230249 +tp230250 +a(g230247 +g230249 +S'of' +p230251 +tp230252 +a(g230249 +g230251 +S'the' +p230253 +tp230254 +a(g230251 +g230253 +S'hunt' +p230255 +tp230256 +a(g230253 +g230255 +S'rather' +p230257 +tp230258 +a(g230255 +g230257 +S'than' +p230259 +tp230260 +a(g230257 +g230259 +S'the' +p230261 +tp230262 +a(g230259 +g230261 +S'spoils' +p230263 +tp230264 +a(g230261 +g230263 +S'of' +p230265 +tp230266 +a(g230263 +g230265 +S'a' +p230267 +tp230268 +a(g230265 +g230267 +S'specific' +p230269 +tp230270 +a(g230267 +g230269 +S'hunt' +p230271 +tp230272 +a(g230269 +g230271 +S'is' +p230273 +tp230274 +a(g230271 +g230273 +S'evident' +p230275 +tp230276 +a(g230273 +g230275 +S'from' +p230277 +tp230278 +a(g230275 +g230277 +S'the' +p230279 +tp230280 +a(g230277 +g230279 +S'relief' +p230281 +tp230282 +a(g230279 +g230281 +S'depicting' +p230283 +tp230284 +a(g230281 +g230283 +S'diana' +p230285 +tp230286 +a(g230283 +g230285 +S'and' +p230287 +tp230288 +a(g230285 +g230287 +S'actaeon' +p230289 +tp230290 +a(g230287 +g230289 +S'on' +p230291 +tp230292 +a(g230289 +g230291 +S'the' +p230293 +tp230294 +a(g230291 +g230293 +S'front' +p230295 +tp230296 +a(g230293 +g230295 +S'of' +p230297 +tp230298 +a(g230295 +g230297 +S'the' +p230299 +tp230300 +a(g230297 +g230299 +S'stone' +p230301 +tp230302 +a(g230299 +g230301 +S'ledge.' +p230303 +tp230304 +a(g230301 +g230303 +S'this' +p230305 +tp230306 +a(g230303 +g230305 +S'popular' +p230307 +tp230308 +a(g230305 +g230307 +S'story' +p230309 +tp230310 +a(g230307 +g230309 +S'from' +p230311 +tp230312 +a(g230309 +g230311 +S"ovid's" +p230313 +tp230314 +a(g230311 +g230313 +S'heade' +p230315 +tp230316 +a(g230313 +g230315 +S'offered' +p230317 +tp230318 +a(g230315 +g230317 +S'viewers' +p230319 +tp230320 +a(g230317 +g230319 +S'an' +p230321 +tp230322 +a(g230319 +g230321 +S'intimate' +p230323 +tp230324 +a(g230321 +g230323 +S'glimpse' +p230325 +tp230326 +a(g230323 +g230325 +S'into' +p230327 +tp230328 +a(g230325 +g230327 +S'the' +p230329 +tp230330 +a(g230327 +g230329 +S'exotic' +p230331 +tp230332 +a(g230329 +g230331 +S'recesses' +p230333 +tp230334 +a(g230331 +g230333 +S'of' +p230335 +tp230336 +a(g230333 +g230335 +S"nature's" +p230337 +tp230338 +a(g230335 +g230337 +S'secret' +p230339 +tp230340 +a(g230337 +g230339 +S'garden.' +p230341 +tp230342 +a(g230339 +g230341 +S'lichen' +p230343 +tp230344 +a(g230341 +g230343 +S'covers' +p230345 +tp230346 +a(g230343 +g230345 +S'dead' +p230347 +tp230348 +a(g230345 +g230347 +S'branches;' +p230349 +tp230350 +a(g230347 +g230349 +S'moss' +p230351 +tp230352 +a(g230349 +g230351 +S'drips' +p230353 +tp230354 +a(g230351 +g230353 +S'from' +p230355 +tp230356 +a(g230353 +g230355 +S'trees;' +p230357 +tp230358 +a(g230355 +g230357 +S'and,' +p230359 +tp230360 +a(g230357 +g230359 +S'a' +p230361 +tp230362 +a(g230359 +g230361 +S'blue-gray' +p230363 +tp230364 +a(g230361 +g230363 +S'mist' +p230365 +tp230366 +a(g230363 +g230365 +S'veils' +p230367 +tp230368 +a(g230365 +g230367 +S'the' +p230369 +tp230370 +a(g230367 +g230369 +S'distant' +p230371 +tp230372 +a(g230369 +g230371 +S'jungle.' +p230373 +tp230374 +a(g230371 +g230373 +S'an' +p230375 +tp230376 +a(g230373 +g230375 +S'opulent' +p230377 +tp230378 +a(g230375 +g230377 +S'pink' +p230379 +tp230380 +a(g230377 +g230379 +S'orchid' +p230381 +tp230382 +a(g230379 +g230381 +S'with' +p230383 +tp230384 +a(g230381 +g230383 +S'light-green' +p230385 +tp230386 +a(g230383 +g230385 +S'stems' +p230387 +tp230388 +a(g230385 +g230387 +S'and' +p230389 +tp230390 +a(g230387 +g230389 +S'pods' +p230391 +tp230392 +a(g230389 +g230391 +S'dominates' +p230393 +tp230394 +a(g230391 +g230393 +S'the' +p230395 +tp230396 +a(g230393 +g230395 +S'left' +p230397 +tp230398 +a(g230395 +g230397 +S'foreground.' +p230399 +tp230400 +a(g230397 +g230399 +S'to' +p230401 +tp230402 +a(g230399 +g230401 +S'the' +p230403 +tp230404 +a(g230401 +g230403 +S'right,' +p230405 +tp230406 +a(g230403 +g230405 +S'perched' +p230407 +tp230408 +a(g230405 +g230407 +S'near' +p230409 +tp230410 +a(g230407 +g230409 +S'a' +p230411 +tp230412 +a(g230409 +g230411 +S'nest' +p230413 +tp230414 +a(g230411 +g230413 +S'on' +p230415 +tp230416 +a(g230413 +g230415 +S'a' +p230417 +tp230418 +a(g230415 +g230417 +S'branch,' +p230419 +tp230420 +a(g230417 +g230419 +S'are' +p230421 +tp230422 +a(g230419 +g230421 +S'a' +p230423 +tp230424 +a(g230421 +g230423 +S'sappho' +p230425 +tp230426 +a(g230423 +g230425 +S'comet,' +p230427 +tp230428 +a(g230425 +g230427 +S'green' +p230429 +tp230430 +a(g230427 +g230429 +S'with' +p230431 +tp230432 +a(g230429 +g230431 +S'a' +p230433 +tp230434 +a(g230431 +g230433 +S'yellow' +p230435 +tp230436 +a(g230433 +g230435 +S'throat' +p230437 +tp230438 +a(g230435 +g230437 +S'and' +p230439 +tp230440 +a(g230437 +g230439 +S'brilliant' +p230441 +tp230442 +a(g230439 +g230441 +S'red' +p230443 +tp230444 +a(g230441 +g230443 +S'tail' +p230445 +tp230446 +a(g230443 +g230445 +S'feathers,' +p230447 +tp230448 +a(g230445 +g230447 +S'and' +p230449 +tp230450 +a(g230447 +g230449 +S'two' +p230451 +tp230452 +a(g230449 +g230451 +S'green-and-pink' +p230453 +tp230454 +a(g230451 +g230453 +S'brazilian' +p230455 +tp230456 +a(g230453 +g230455 +S'amethysts.' +p230457 +tp230458 +a(g230455 +g230457 +S'perhaps' +p230459 +tp230460 +a(g230457 +g230459 +S'inspired' +p230461 +tp230462 +a(g230459 +g230461 +S'by' +p230463 +tp230464 +a(g230461 +g230463 +S'the' +p230465 +tp230466 +a(g230463 +g230465 +S'writings' +p230467 +tp230468 +a(g230465 +g230467 +S'of' +p230469 +tp230470 +a(g230467 +g230469 +S'charles' +p230471 +tp230472 +a(g230469 +g230471 +S'darwin,' +p230473 +tp230474 +a(g230471 +g230473 +S'the' +p230475 +tp230476 +a(g230473 +g230475 +S'artist' +p230477 +tp230478 +a(g230475 +g230477 +S'studied' +p230479 +tp230480 +a(g230477 +g230479 +S'these' +p230481 +tp230482 +a(g230479 +g230481 +S'subjects' +p230483 +tp230484 +a(g230481 +g230483 +S'in' +p230485 +tp230486 +a(g230483 +g230485 +S'the' +p230487 +tp230488 +a(g230485 +g230487 +S'wild' +p230489 +tp230490 +a(g230487 +g230489 +S'during' +p230491 +tp230492 +a(g230489 +g230491 +S'several' +p230493 +tp230494 +a(g230491 +g230493 +S'expeditions' +p230495 +tp230496 +a(g230493 +g230495 +S'to' +p230497 +tp230498 +a(g230495 +g230497 +S'south' +p230499 +tp230500 +a(g230497 +g230499 +S'america.' +p230501 +tp230502 +a(g230499 +g230501 +S'the' +p230503 +tp230504 +a(g230501 +g230503 +S'precisely' +p230505 +tp230506 +a(g230503 +g230505 +S'rendered' +p230507 +tp230508 +a(g230505 +g230507 +S'flora' +p230509 +tp230510 +a(g230507 +g230509 +S'and' +p230511 +tp230512 +a(g230509 +g230511 +S'fauna' +p230513 +tp230514 +a(g230511 +g230513 +S'seem' +p230515 +tp230516 +a(g230513 +g230515 +S'alive' +p230517 +tp230518 +a(g230515 +g230517 +S'in' +p230519 +tp230520 +a(g230517 +g230519 +S'their' +p230521 +tp230522 +a(g230519 +g230521 +S'natural' +p230523 +tp230524 +a(g230521 +g230523 +S'habitat,' +p230525 +tp230526 +a(g230523 +g230525 +S'not' +p230527 +tp230528 +a(g230525 +g230527 +S'mere' +p230529 +tp230530 +a(g230527 +g230529 +S'specimens' +p230531 +tp230532 +a(g230529 +g230531 +S'for' +p230533 +tp230534 +a(g230531 +g230533 +S'scientific' +p230535 +tp230536 +a(g230533 +g230535 +S'analysis.' +p230537 +tp230538 +a(g230535 +g230537 +S'defying' +p230539 +tp230540 +a(g230537 +g230539 +S'strict' +p230541 +tp230542 +a(g230539 +g230541 +S'categorization' +p230543 +tp230544 +a(g230541 +g230543 +S'as' +p230545 +tp230546 +a(g230543 +g230545 +S'either' +p230547 +tp230548 +a(g230545 +g230547 +S'still' +p230549 +tp230550 +a(g230547 +g230549 +S'life' +p230551 +tp230552 +a(g230549 +g230551 +S'or' +p230553 +tp230554 +a(g230551 +g230553 +S'landscape,' +p230555 +tp230556 +a(g230553 +g230555 +S"heade's" +p230557 +tp230558 +a(g230555 +g230557 +S'work' +p230559 +tp230560 +a(g230557 +g230559 +S'reflects' +p230561 +tp230562 +a(g230559 +g230561 +S'the' +p230563 +tp230564 +a(g230561 +g230563 +S"artist's" +p230565 +tp230566 +a(g230563 +g230565 +S'unerring' +p230567 +tp230568 +a(g230565 +g230567 +S'attention' +p230569 +tp230570 +a(g230567 +g230569 +S'to' +p230571 +tp230572 +a(g230569 +g230571 +S'detail' +p230573 +tp230574 +a(g230571 +g230573 +S'and' +p230575 +tp230576 +a(g230573 +g230575 +S'his' +p230577 +tp230578 +a(g230575 +g230577 +S'delight' +p230579 +tp230580 +a(g230577 +g230579 +S'in' +p230581 +tp230582 +a(g230579 +g230581 +S'the' +p230583 +tp230584 +a(g230581 +g230583 +S'infinitesimal' +p230585 +tp230586 +a(g230583 +g230585 +S'joys' +p230587 +tp230588 +a(g230585 +g230587 +S'of' +p230589 +tp230590 +a(g230587 +g230589 +S'nature.' +p230591 +tp230592 +a(g230589 +g230591 +S'as' +p230593 +tp230594 +a(g230591 +g230593 +S'its' +p230595 +tp230596 +a(g230593 +g230595 +S'title' +p230597 +tp230598 +a(g230595 +g230597 +S'suggests,' +p230599 +tp230600 +a(g230597 +g230599 +S'there' +p230601 +tp230602 +a(g230599 +g230601 +S'is' +p230603 +tp230604 +a(g230601 +g230603 +S'a' +p230605 +tp230606 +a(g230603 +g230605 +S'frankly' +p230607 +tp230608 +a(g230605 +g230607 +S'sexual' +p230609 +tp230610 +a(g230607 +g230609 +S'character' +p230611 +tp230612 +a(g230609 +g230611 +S'to' +p230613 +tp230614 +a(g230611 +g230613 +S'the' +p230615 +tp230616 +a(g230613 +g230615 +S'encounters' +p230617 +tp230618 +a(g230615 +g230617 +S'between' +p230619 +tp230620 +a(g230617 +g230619 +S'the' +p230621 +tp230622 +a(g230619 +g230621 +S'scantily' +p230623 +tp230624 +a(g230621 +g230623 +S'clad' +p230625 +tp230626 +a(g230623 +g230625 +S'members' +p230627 +tp230628 +a(g230625 +g230627 +S'of' +p230629 +tp230630 +a(g230627 +g230629 +S'the' +p230631 +tp230632 +a(g230629 +g230631 +S'parisian' +p230633 +tp230634 +a(g230631 +g230633 +S'demimonde' +p230635 +tp230636 +a(g230633 +g230635 +S'and' +p230637 +tp230638 +a(g230635 +g230637 +S'the' +p230639 +tp230640 +a(g230637 +g230639 +S'well-dressed' +p230641 +tp230642 +a(g230639 +g230641 +S'upper-class' +p230643 +tp230644 +a(g230641 +g230643 +S'men' +p230645 +tp230646 +a(g230643 +g230645 +S'portrayed' +p230647 +tp230648 +a(g230645 +g230647 +S'here.' +p230649 +tp230650 +a(g230647 +g230649 +S'although' +p230651 +tp230652 +a(g230649 +g230651 +S'the' +p230653 +tp230654 +a(g230651 +g230653 +S'painting' +p230655 +tp230656 +a(g230653 +g230655 +S'depicts' +p230657 +tp230658 +a(g230655 +g230657 +S'a' +p230659 +tp230660 +a(g230657 +g230659 +S'masked' +p230661 +tp230662 +a(g230659 +g230661 +S'ball,' +p230663 +tp230664 +a(g230661 +g230663 +S'none' +p230665 +tp230666 +a(g230663 +g230665 +S'of' +p230667 +tp230668 +a(g230665 +g230667 +S'the' +p230669 +tp230670 +a(g230667 +g230669 +S'men' +p230671 +tp230672 +a(g230669 +g230671 +S'wear' +p230673 +tp230674 +a(g230671 +g230673 +S'masks' +p230675 +tp230676 +a(g230673 +g230675 +S'and' +p230677 +tp230678 +a(g230675 +g230677 +S'only' +p230679 +tp230680 +a(g230677 +g230679 +S'one—presumably' +p230681 +tp230682 +a(g230679 +g230681 +S'it' +p230683 +tp230684 +a(g230681 +g230683 +S'is' +p230685 +tp230686 +a(g230683 +g230685 +S'a' +p230687 +tp230688 +a(g230685 +g230687 +S'man' +p230689 +tp230690 +a(g230687 +g230689 +S'dressed' +p230691 +tp230692 +a(g230689 +g230691 +S'in' +p230693 +tp230694 +a(g230691 +g230693 +S'the' +p230695 +tp230696 +a(g230693 +g230695 +S'garish' +p230697 +tp230698 +a(g230695 +g230697 +S'silks' +p230699 +tp230700 +a(g230697 +g230699 +S'of' +p230701 +tp230702 +a(g230699 +g230701 +S'the' +p230703 +tp230704 +a(g230701 +g230703 +S'clown' +p230705 +tp230706 +a(g230703 +g230705 +S'polichinelle' +p230707 +tp230708 +a(g230705 +g230707 +S'at' +p230709 +tp230710 +a(g230707 +g230709 +S'the' +p230711 +tp230712 +a(g230709 +g230711 +S'far' +p230713 +tp230714 +a(g230711 +g230713 +S'left—appears' +p230715 +tp230716 +a(g230713 +g230715 +S'in' +p230717 +tp230718 +a(g230715 +g230717 +S'costume.' +p230719 +tp230720 +a(g230717 +g230719 +S'manet' +p230721 +tp230722 +a(g230719 +g230721 +S'focused' +p230723 +tp230724 +a(g230721 +g230723 +S'instead' +p230725 +tp230726 +a(g230723 +g230725 +S'on' +p230727 +tp230728 +a(g230725 +g230727 +S'the' +p230729 +tp230730 +a(g230727 +g230729 +S'dramatic' +p230731 +tp230732 +a(g230729 +g230731 +S'juxtaposition' +p230733 +tp230734 +a(g230731 +g230733 +S'of' +p230735 +tp230736 +a(g230733 +g230735 +S'the' +p230737 +tp230738 +a(g230735 +g230737 +S'men' +p230739 +tp230740 +a(g230737 +g230739 +S'in' +p230741 +tp230742 +a(g230739 +g230741 +S'somber' +p230743 +tp230744 +a(g230741 +g230743 +S'black' +p230745 +tp230746 +a(g230743 +g230745 +S'evening' +p230747 +tp230748 +a(g230745 +g230747 +S'attire' +p230749 +tp230750 +a(g230747 +g230749 +S'and' +p230751 +tp230752 +a(g230749 +g230751 +S'silk' +p230753 +tp230754 +a(g230751 +g230753 +S'top' +p230755 +tp230756 +a(g230753 +g230755 +S'hats,' +p230757 +tp230758 +a(g230755 +g230757 +S'and' +p230759 +tp230760 +a(g230757 +g230759 +S'the' +p230761 +tp230762 +a(g230759 +g230761 +S'more' +p230763 +tp230764 +a(g230761 +g230763 +S'fancifully' +p230765 +tp230766 +a(g230763 +g230765 +S'garbed' +p230767 +tp230768 +a(g230765 +g230767 +S'women' +p230769 +tp230770 +a(g230767 +g230769 +S'with' +p230771 +tp230772 +a(g230769 +g230771 +S'their' +p230773 +tp230774 +a(g230771 +g230773 +S'brightly' +p230775 +tp230776 +a(g230773 +g230775 +S'colored' +p230777 +tp230778 +a(g230775 +g230777 +S'stockings,' +p230779 +tp230780 +a(g230777 +g230779 +S'dainty' +p230781 +tp230782 +a(g230779 +g230781 +S'shoes,' +p230783 +tp230784 +a(g230781 +g230783 +S'and' +p230785 +tp230786 +a(g230783 +g230785 +S'other' +p230787 +tp230788 +a(g230785 +g230787 +S'feminine' +p230789 +tp230790 +a(g230787 +g230789 +S'accoutrements.' +p230791 +tp230792 +a(g230789 +g230791 +S'in' +p230793 +tp230794 +a(g230791 +g230793 +S'contrast' +p230795 +tp230796 +a(g230793 +g230795 +S'to' +p230797 +tp230798 +a(g230795 +g230797 +S'their' +p230799 +tp230800 +a(g230797 +g230799 +S'male' +p230801 +tp230802 +a(g230799 +g230801 +S'counterparts,' +p230803 +tp230804 +a(g230801 +g230803 +S'all' +p230805 +tp230806 +a(g230803 +g230805 +S'but' +p230807 +tp230808 +a(g230805 +g230807 +S'one' +p230809 +tp230810 +a(g230807 +g230809 +S'of' +p230811 +tp230812 +a(g230809 +g230811 +S'the' +p230813 +tp230814 +a(g230811 +g230813 +S'women' +p230815 +tp230816 +a(g230813 +g230815 +S'are' +p230817 +tp230818 +a(g230815 +g230817 +S'masked,' +p230819 +tp230820 +a(g230817 +g230819 +S'a' +p230821 +tp230822 +a(g230819 +g230821 +S'token' +p230823 +tp230824 +a(g230821 +g230823 +S'gesture' +p230825 +tp230826 +a(g230823 +g230825 +S'of' +p230827 +tp230828 +a(g230825 +g230827 +S'propriety.' +p230829 +tp230830 +a(g230827 +g230829 +S'only' +p230831 +tp230832 +a(g230829 +g230831 +S'the' +p230833 +tp230834 +a(g230831 +g230833 +S'girl' +p230835 +tp230836 +a(g230833 +g230835 +S'dressed' +p230837 +tp230838 +a(g230835 +g230837 +S'in' +p230839 +tp230840 +a(g230837 +g230839 +S'a' +p230841 +tp230842 +a(g230839 +g230841 +S'pair' +p230843 +tp230844 +a(g230841 +g230843 +S'of' +p230845 +tp230846 +a(g230843 +g230845 +S'silk' +p230847 +tp230848 +a(g230845 +g230847 +S'soldier' +p230849 +tp230850 +a(g230847 +g230849 +S'breeches' +p230851 +tp230852 +a(g230849 +g230851 +S'standing' +p230853 +tp230854 +a(g230851 +g230853 +S'just' +p230855 +tp230856 +a(g230853 +g230855 +S'left' +p230857 +tp230858 +a(g230855 +g230857 +S'of' +p230859 +tp230860 +a(g230857 +g230859 +S'center' +p230861 +tp230862 +a(g230859 +g230861 +S'reveals' +p230863 +tp230864 +a(g230861 +g230863 +S'her' +p230865 +tp230866 +a(g230863 +g230865 +S'face,' +p230867 +tp230868 +a(g230865 +g230867 +S'flaunting' +p230869 +tp230870 +a(g230867 +g230869 +S'her' +p230871 +tp230872 +a(g230869 +g230871 +S'identity—along' +p230873 +tp230874 +a(g230871 +g230873 +S'with' +p230875 +tp230876 +a(g230873 +g230875 +S'the' +p230877 +tp230878 +a(g230875 +g230877 +S'bare' +p230879 +tp230880 +a(g230877 +g230879 +S'flesh' +p230881 +tp230882 +a(g230879 +g230881 +S'of' +p230883 +tp230884 +a(g230881 +g230883 +S'her' +p230885 +tp230886 +a(g230883 +g230885 +S'arms' +p230887 +tp230888 +a(g230885 +g230887 +S'and' +p230889 +tp230890 +a(g230887 +g230889 +S'calves—for' +p230891 +tp230892 +a(g230889 +g230891 +S'all' +p230893 +tp230894 +a(g230891 +g230893 +S'to' +p230895 +tp230896 +a(g230893 +g230895 +S'see.' +p230897 +tp230898 +a(g230895 +g230897 +S'she' +p230899 +tp230900 +a(g230897 +g230899 +S'flirts' +p230901 +tp230902 +a(g230899 +g230901 +S'unabashedly' +p230903 +tp230904 +a(g230901 +g230903 +S'with' +p230905 +tp230906 +a(g230903 +g230905 +S'a' +p230907 +tp230908 +a(g230905 +g230907 +S'male' +p230909 +tp230910 +a(g230907 +g230909 +S'companion,' +p230911 +tp230912 +a(g230909 +g230911 +S'smiling' +p230913 +tp230914 +a(g230911 +g230913 +S'up' +p230915 +tp230916 +a(g230913 +g230915 +S'at' +p230917 +tp230918 +a(g230915 +g230917 +S'him' +p230919 +tp230920 +a(g230917 +g230919 +S'and' +p230921 +tp230922 +a(g230919 +g230921 +S'resting' +p230923 +tp230924 +a(g230921 +g230923 +S'one' +p230925 +tp230926 +a(g230923 +g230925 +S'hand' +p230927 +tp230928 +a(g230925 +g230927 +S'suggestively' +p230929 +tp230930 +a(g230927 +g230929 +S'against' +p230931 +tp230932 +a(g230929 +g230931 +S'his' +p230933 +tp230934 +a(g230931 +g230933 +S'chest' +p230935 +tp230936 +a(g230933 +g230935 +S'while' +p230937 +tp230938 +a(g230935 +g230937 +S'his' +p230939 +tp230940 +a(g230937 +g230939 +S'gloved' +p230941 +tp230942 +a(g230939 +g230941 +S'hand' +p230943 +tp230944 +a(g230941 +g230943 +S'cradles' +p230945 +tp230946 +a(g230943 +g230945 +S'her' +p230947 +tp230948 +a(g230945 +g230947 +S'other' +p230949 +tp230950 +a(g230947 +g230949 +S'arm,' +p230951 +tp230952 +a(g230949 +g230951 +S'perhaps' +p230953 +tp230954 +a(g230951 +g230953 +S'to' +p230955 +tp230956 +a(g230953 +g230955 +S'pull' +p230957 +tp230958 +a(g230955 +g230957 +S'her' +p230959 +tp230960 +a(g230957 +g230959 +S'into' +p230961 +tp230962 +a(g230959 +g230961 +S'an' +p230963 +tp230964 +a(g230961 +g230963 +S'embrace.' +p230965 +tp230966 +a(g230963 +g230965 +S'on' +p230967 +tp230968 +a(g230965 +g230967 +S'the' +p230969 +tp230970 +a(g230967 +g230969 +S'floor' +p230971 +tp230972 +a(g230969 +g230971 +S'nearby' +p230973 +tp230974 +a(g230971 +g230973 +S'is' +p230975 +tp230976 +a(g230973 +g230975 +S'a' +p230977 +tp230978 +a(g230975 +g230977 +S'black' +p230979 +tp230980 +a(g230977 +g230979 +S'silk' +p230981 +tp230982 +a(g230979 +g230981 +S'mask,' +p230983 +tp230984 +a(g230981 +g230983 +S'abandoned' +p230985 +tp230986 +a(g230983 +g230985 +S'by' +p230987 +tp230988 +a(g230985 +g230987 +S'a' +p230989 +tp230990 +a(g230987 +g230989 +S'partygoer' +p230991 +tp230992 +a(g230989 +g230991 +S'(presumably' +p230993 +tp230994 +a(g230991 +g230993 +S'this' +p230995 +tp230996 +a(g230993 +g230995 +S'young' +p230997 +tp230998 +a(g230995 +g230997 +S'woman)' +p230999 +tp231000 +a(g230997 +g230999 +S'who' +p231001 +tp231002 +a(g230999 +g231001 +S'has' +p231003 +tp231004 +a(g231001 +g231003 +S'cast' +p231005 +tp231006 +a(g231003 +g231005 +S'discretion' +p231007 +tp231008 +a(g231005 +g231007 +S'aside,' +p231009 +tp231010 +a(g231007 +g231009 +S'along' +p231011 +tp231012 +a(g231009 +g231011 +S'with' +p231013 +tp231014 +a(g231011 +g231013 +S'part' +p231015 +tp231016 +a(g231013 +g231015 +S'of' +p231017 +tp231018 +a(g231015 +g231017 +S'her' +p231019 +tp231020 +a(g231017 +g231019 +S'costume.' +p231021 +tp231022 +a(g231019 +g231021 +S'masked' +p231023 +tp231024 +a(g231021 +g231023 +S'ball' +p231025 +tp231026 +a(g231023 +g231025 +S'at' +p231027 +tp231028 +a(g231025 +g231027 +S'the' +p231029 +tp231030 +a(g231027 +g231029 +S'opera' +p231031 +tp231032 +a(g231029 +g231031 +S'(text' +p231033 +tp231034 +a(g231031 +g231033 +S'by' +p231035 +tp231036 +a(g231033 +g231035 +S'kimberly' +p231037 +tp231038 +a(g231035 +g231037 +S'jones,' +p231039 +tp231040 +a(g231037 +g231039 +S'notes' +p231041 +tp231042 +a(g231039 +g231041 +S'' +p231045 +tp231046 +a(g231043 +g231045 +S'baby' +p231047 +tp231048 +a(g231045 +g231047 +S'at' +p231049 +tp231050 +a(g231047 +g231049 +S'play' +p231051 +tp231052 +a(g231049 +g231051 +S'according' +p231053 +tp231054 +a(g231051 +g231053 +S'to' +p231055 +tp231056 +a(g231053 +g231055 +S'one' +p231057 +tp231058 +a(g231055 +g231057 +S'recent' +p231059 +tp231060 +a(g231057 +g231059 +S'interpretation,' +p231061 +tp231062 +a(g231059 +g231061 +S'eakins' +p231063 +tp231064 +a(g231061 +g231063 +S'was' +p231065 +tp231066 +a(g231063 +g231065 +S'depicting' +p231067 +tp231068 +a(g231065 +g231067 +S"ella's" +p231069 +tp231070 +a(g231067 +g231069 +S'initial' +p231071 +tp231072 +a(g231069 +g231071 +S'foray' +p231073 +tp231074 +a(g231071 +g231073 +S'into' +p231075 +tp231076 +a(g231073 +g231075 +S'the' +p231077 +tp231078 +a(g231075 +g231077 +S'adult' +p231079 +tp231080 +a(g231077 +g231079 +S'world' +p231081 +tp231082 +a(g231079 +g231081 +S'of' +p231083 +tp231084 +a(g231081 +g231083 +S'education' +p231085 +tp231086 +a(g231083 +g231085 +S'and' +p231087 +tp231088 +a(g231085 +g231087 +S'learning.' +p231089 +tp231090 +a(g231087 +g231089 +S'having' +p231091 +tp231092 +a(g231089 +g231091 +S'temporarily' +p231093 +tp231094 +a(g231091 +g231093 +S'cast' +p231095 +tp231096 +a(g231093 +g231095 +S'aside' +p231097 +tp231098 +a(g231095 +g231097 +S'her' +p231099 +tp231100 +a(g231097 +g231099 +S'more' +p231101 +tp231102 +a(g231099 +g231101 +S'infantile' +p231103 +tp231104 +a(g231101 +g231103 +S'toys' +p231105 +tp231106 +a(g231103 +g231105 +S'in' +p231107 +tp231108 +a(g231105 +g231107 +S'favor' +p231109 +tp231110 +a(g231107 +g231109 +S'of' +p231111 +tp231112 +a(g231109 +g231111 +S'alphabet' +p231113 +tp231114 +a(g231111 +g231113 +S'blocks—the' +p231115 +tp231116 +a(g231113 +g231115 +S'tools' +p231117 +tp231118 +a(g231115 +g231117 +S'of' +p231119 +tp231120 +a(g231117 +g231119 +S'language—the' +p231121 +tp231122 +a(g231119 +g231121 +S'child' +p231123 +tp231124 +a(g231121 +g231123 +S'now' +p231125 +tp231126 +a(g231123 +g231125 +S'seems' +p231127 +tp231128 +a(g231125 +g231127 +S'ready' +p231129 +tp231130 +a(g231127 +g231129 +S'to' +p231131 +tp231132 +a(g231129 +g231131 +S'enter' +p231133 +tp231134 +a(g231131 +g231133 +S'the' +p231135 +tp231136 +a(g231133 +g231135 +S'next' +p231137 +tp231138 +a(g231135 +g231137 +S'critical' +p231139 +tp231140 +a(g231137 +g231139 +S'stage' +p231141 +tp231142 +a(g231139 +g231141 +S'in' +p231143 +tp231144 +a(g231141 +g231143 +S'her' +p231145 +tp231146 +a(g231143 +g231145 +S'intellectual' +p231147 +tp231148 +a(g231145 +g231147 +S'development.' +p231149 +tp231150 +a(g231147 +g231149 +S'the' +p231151 +tp231152 +a(g231149 +g231151 +S'monumentality' +p231153 +tp231154 +a(g231151 +g231153 +S'of' +p231155 +tp231156 +a(g231153 +g231155 +S'her' +p231157 +tp231158 +a(g231155 +g231157 +S'painted' +p231159 +tp231160 +a(g231157 +g231159 +S'form' +p231161 +tp231162 +a(g231159 +g231161 +S'may' +p231163 +tp231164 +a(g231161 +g231163 +S'seem' +p231165 +tp231166 +a(g231163 +g231165 +S'surprising,' +p231167 +tp231168 +a(g231165 +g231167 +S'considering' +p231169 +tp231170 +a(g231167 +g231169 +S'the' +p231171 +tp231172 +a(g231169 +g231171 +S'diminutive' +p231173 +tp231174 +a(g231171 +g231173 +S'stature' +p231175 +tp231176 +a(g231173 +g231175 +S'of' +p231177 +tp231178 +a(g231175 +g231177 +S"eakins'" +p231179 +tp231180 +a(g231177 +g231179 +S'model.' +p231181 +tp231182 +a(g231179 +g231181 +S'her' +p231183 +tp231184 +a(g231181 +g231183 +S'life–sized' +p231185 +tp231186 +a(g231183 +g231185 +S'figure' +p231187 +tp231188 +a(g231185 +g231187 +S'is' +p231189 +tp231190 +a(g231187 +g231189 +S'arranged' +p231191 +tp231192 +a(g231189 +g231191 +S'in' +p231193 +tp231194 +a(g231191 +g231193 +S'a' +p231195 +tp231196 +a(g231193 +g231195 +S'stable' +p231197 +tp231198 +a(g231195 +g231197 +S'pyramidal' +p231199 +tp231200 +a(g231197 +g231199 +S'block' +p231201 +tp231202 +a(g231199 +g231201 +S'at' +p231203 +tp231204 +a(g231201 +g231203 +S'the' +p231205 +tp231206 +a(g231203 +g231205 +S"composition's" +p231207 +tp231208 +a(g231205 +g231207 +S'center' +p231209 +tp231210 +a(g231207 +g231209 +S'and' +p231211 +tp231212 +a(g231209 +g231211 +S'the' +p231213 +tp231214 +a(g231211 +g231213 +S'deft' +p231215 +tp231216 +a(g231213 +g231215 +S'handling' +p231217 +tp231218 +a(g231215 +g231217 +S'of' +p231219 +tp231220 +a(g231217 +g231219 +S'light' +p231221 +tp231222 +a(g231219 +g231221 +S'and' +p231223 +tp231224 +a(g231221 +g231223 +S'shadow' +p231225 +tp231226 +a(g231223 +g231225 +S'further' +p231227 +tp231228 +a(g231225 +g231227 +S'emphasizes' +p231229 +tp231230 +a(g231227 +g231229 +S'spatial' +p231231 +tp231232 +a(g231229 +g231231 +S'volume.' +p231233 +tp231234 +a(g231231 +g231233 +S"eakins'" +p231235 +tp231236 +a(g231233 +g231235 +S'choice' +p231237 +tp231238 +a(g231235 +g231237 +S'of' +p231239 +tp231240 +a(g231237 +g231239 +S'a' +p231241 +tp231242 +a(g231239 +g231241 +S'lowered' +p231243 +tp231244 +a(g231241 +g231243 +S'vantage' +p231245 +tp231246 +a(g231243 +g231245 +S'point' +p231247 +tp231248 +a(g231245 +g231247 +S'encourages' +p231249 +tp231250 +a(g231247 +g231249 +S'the' +p231251 +tp231252 +a(g231249 +g231251 +S'spectator' +p231253 +tp231254 +a(g231251 +g231253 +S'to' +p231255 +tp231256 +a(g231253 +g231255 +S'adopt' +p231257 +tp231258 +a(g231255 +g231257 +S'a' +p231259 +tp231260 +a(g231257 +g231259 +S"child's" +p231261 +tp231262 +a(g231259 +g231261 +S'point' +p231263 +tp231264 +a(g231261 +g231263 +S'of' +p231265 +tp231266 +a(g231263 +g231265 +S'view.' +p231267 +tp231268 +a(g231265 +g231267 +S'his' +p231269 +tp231270 +a(g231267 +g231269 +S'penetrating' +p231271 +tp231272 +a(g231269 +g231271 +S'psychological' +p231273 +tp231274 +a(g231271 +g231273 +S'insight' +p231275 +tp231276 +a(g231273 +g231275 +S'elevates' +p231277 +tp231278 +a(g231275 +g231277 +S'this' +p231279 +tp231280 +a(g231277 +g231279 +S'picture' +p231281 +tp231282 +a(g231279 +g231281 +S'from' +p231283 +tp231284 +a(g231281 +g231283 +S'a' +p231285 +tp231286 +a(g231283 +g231285 +S'sentimental' +p231287 +tp231288 +a(g231285 +g231287 +S'genre' +p231289 +tp231290 +a(g231287 +g231289 +S'scene' +p231291 +tp231292 +a(g231289 +g231291 +S'to' +p231293 +tp231294 +a(g231291 +g231293 +S'a' +p231295 +tp231296 +a(g231293 +g231295 +S'highly' +p231297 +tp231298 +a(g231295 +g231297 +S'serious' +p231299 +tp231300 +a(g231297 +g231299 +S'portrayal' +p231301 +tp231302 +a(g231299 +g231301 +S'of' +p231303 +tp231304 +a(g231301 +g231303 +S'an' +p231305 +tp231306 +a(g231303 +g231305 +S'earnest,' +p231307 +tp231308 +a(g231305 +g231307 +S'intelligent' +p231309 +tp231310 +a(g231307 +g231309 +S'child.' +p231311 +tp231312 +a(g231309 +g231311 +S'"my' +p231313 +tp231314 +a(g231311 +g231313 +S'aim' +p231315 +tp231316 +a(g231313 +g231315 +S'in' +p231317 +tp231318 +a(g231315 +g231317 +S'painting,"' +p231319 +tp231320 +a(g231317 +g231319 +S'explained' +p231321 +tp231322 +a(g231319 +g231321 +S'edward' +p231323 +tp231324 +a(g231321 +g231323 +S'hopper,' +p231325 +tp231326 +a(g231323 +g231325 +S'"has' +p231327 +tp231328 +a(g231325 +g231327 +S'always' +p231329 +tp231330 +a(g231327 +g231329 +S'been' +p231331 +tp231332 +a(g231329 +g231331 +S'the' +p231333 +tp231334 +a(g231331 +g231333 +S'most' +p231335 +tp231336 +a(g231333 +g231335 +S'exact' +p231337 +tp231338 +a(g231335 +g231337 +S'transcription' +p231339 +tp231340 +a(g231337 +g231339 +S'possible' +p231341 +tp231342 +a(g231339 +g231341 +S'of' +p231343 +tp231344 +a(g231341 +g231343 +S'my' +p231345 +tp231346 +a(g231343 +g231345 +S'most' +p231347 +tp231348 +a(g231345 +g231347 +S'intimate' +p231349 +tp231350 +a(g231347 +g231349 +S'impressions' +p231351 +tp231352 +a(g231349 +g231351 +S'of' +p231353 +tp231354 +a(g231351 +g231353 +S'nature."' +p231355 +tp231356 +a(g231353 +g231355 +S'claiming' +p231357 +tp231358 +a(g231355 +g231357 +S'the' +p231359 +tp231360 +a(g231357 +g231359 +S'figures' +p231361 +tp231362 +a(g231359 +g231361 +S'in' +p231363 +tp231364 +a(g231361 +g231363 +S'despite' +p231365 +tp231366 +a(g231363 +g231365 +S'his' +p231367 +tp231368 +a(g231365 +g231367 +S'matter-of-fact' +p231369 +tp231370 +a(g231367 +g231369 +S'account,' +p231371 +tp231372 +a(g231369 +g231371 +S'hopper' +p231373 +tp231374 +a(g231371 +g231373 +S'also' +p231375 +tp231376 +a(g231373 +g231375 +S'has' +p231377 +tp231378 +a(g231375 +g231377 +S'endowed' +p231379 +tp231380 +a(g231377 +g231379 +S'this' +p231381 +tp231382 +a(g231379 +g231381 +S'ostensibly' +p231383 +tp231384 +a(g231381 +g231383 +S'straightforward' +p231385 +tp231386 +a(g231383 +g231385 +S'work' +p231387 +tp231388 +a(g231385 +g231387 +S'with' +p231389 +tp231390 +a(g231387 +g231389 +S'a' +p231391 +tp231392 +a(g231389 +g231391 +S'strong,' +p231393 +tp231394 +a(g231391 +g231393 +S'albeit' +p231395 +tp231396 +a(g231393 +g231395 +S'ambiguous,' +p231397 +tp231398 +a(g231395 +g231397 +S'emotional' +p231399 +tp231400 +a(g231397 +g231399 +S'undercurrent.' +p231401 +tp231402 +a(g231399 +g231401 +S'the' +p231403 +tp231404 +a(g231401 +g231403 +S'sense' +p231405 +tp231406 +a(g231403 +g231405 +S'of' +p231407 +tp231408 +a(g231405 +g231407 +S'eerie' +p231409 +tp231410 +a(g231407 +g231409 +S'calm' +p231411 +tp231412 +a(g231409 +g231411 +S'is' +p231413 +tp231414 +a(g231411 +g231413 +S'due,' +p231415 +tp231416 +a(g231413 +g231415 +S'in' +p231417 +tp231418 +a(g231415 +g231417 +S'part,' +p231419 +tp231420 +a(g231417 +g231419 +S'to' +p231421 +tp231422 +a(g231419 +g231421 +S'the' +p231423 +tp231424 +a(g231421 +g231423 +S'serene' +p231425 +tp231426 +a(g231423 +g231425 +S'effect' +p231427 +tp231428 +a(g231425 +g231427 +S'of' +p231429 +tp231430 +a(g231427 +g231429 +S'the' +p231431 +tp231432 +a(g231429 +g231431 +S'golden' +p231433 +tp231434 +a(g231431 +g231433 +S'twilight' +p231435 +tp231436 +a(g231433 +g231435 +S'sun' +p231437 +tp231438 +a(g231435 +g231437 +S'that' +p231439 +tp231440 +a(g231437 +g231439 +S'illuminates' +p231441 +tp231442 +a(g231439 +g231441 +S'the' +p231443 +tp231444 +a(g231441 +g231443 +S'grass' +p231445 +tp231446 +a(g231443 +g231445 +S'in' +p231447 +tp231448 +a(g231445 +g231447 +S'front' +p231449 +tp231450 +a(g231447 +g231449 +S'of' +p231451 +tp231452 +a(g231449 +g231451 +S'the' +p231453 +tp231454 +a(g231451 +g231453 +S'victorian' +p231455 +tp231456 +a(g231453 +g231455 +S'house,' +p231457 +tp231458 +a(g231455 +g231457 +S'but' +p231459 +tp231460 +a(g231457 +g231459 +S'fails' +p231461 +tp231462 +a(g231459 +g231461 +S'to' +p231463 +tp231464 +a(g231461 +g231463 +S'penetrate' +p231465 +tp231466 +a(g231463 +g231465 +S'the' +p231467 +tp231468 +a(g231465 +g231467 +S'dense' +p231469 +tp231470 +a(g231467 +g231469 +S'forest' +p231471 +tp231472 +a(g231469 +g231471 +S'beyond.' +p231473 +tp231474 +a(g231471 +g231473 +S'the' +p231475 +tp231476 +a(g231473 +g231475 +S'middle-aged' +p231477 +tp231478 +a(g231475 +g231477 +S'rural' +p231479 +tp231480 +a(g231477 +g231479 +S'couple' +p231481 +tp231482 +a(g231479 +g231481 +S'seem' +p231483 +tp231484 +a(g231481 +g231483 +S'to' +p231485 +tp231486 +a(g231483 +g231485 +S'lack' +p231487 +tp231488 +a(g231485 +g231487 +S'any' +p231489 +tp231490 +a(g231487 +g231489 +S'emotional' +p231491 +tp231492 +a(g231489 +g231491 +S'rapport;' +p231493 +tp231494 +a(g231491 +g231493 +S'they' +p231495 +tp231496 +a(g231493 +g231495 +S'project' +p231497 +tp231498 +a(g231495 +g231497 +S'a' +p231499 +tp231500 +a(g231497 +g231499 +S'mood' +p231501 +tp231502 +a(g231499 +g231501 +S'of' +p231503 +tp231504 +a(g231501 +g231503 +S'self-absorption,' +p231505 +tp231506 +a(g231503 +g231505 +S'futility,' +p231507 +tp231508 +a(g231505 +g231507 +S'and' +p231509 +tp231510 +a(g231507 +g231509 +S'alienation' +p231511 +tp231512 +a(g231509 +g231511 +S'that' +p231513 +tp231514 +a(g231511 +g231513 +S'typifies' +p231515 +tp231516 +a(g231513 +g231515 +S'much' +p231517 +tp231518 +a(g231515 +g231517 +S'of' +p231519 +tp231520 +a(g231517 +g231519 +S"hopper's" +p231521 +tp231522 +a(g231519 +g231521 +S'figurative' +p231523 +tp231524 +a(g231521 +g231523 +S'work.' +p231525 +tp231526 +a(g231523 +g231525 +S'born' +p231527 +tp231528 +a(g231525 +g231527 +S'in' +p231529 +tp231530 +a(g231527 +g231529 +S'1844' +p231531 +tp231532 +a(g231529 +g231531 +S'to' +p231533 +tp231534 +a(g231531 +g231533 +S'a' +p231535 +tp231536 +a(g231533 +g231535 +S'working-class' +p231537 +tp231538 +a(g231535 +g231537 +S'family' +p231539 +tp231540 +a(g231537 +g231539 +S'in' +p231541 +tp231542 +a(g231539 +g231541 +S'laval,' +p231543 +tp231544 +a(g231541 +g231543 +S'france,' +p231545 +tp231546 +a(g231543 +g231545 +S'henri' +p231547 +tp231548 +a(g231545 +g231547 +S'rousseau' +p231549 +tp231550 +a(g231547 +g231549 +S'worked' +p231551 +tp231552 +a(g231549 +g231551 +S'briefly' +p231553 +tp231554 +a(g231551 +g231553 +S'for' +p231555 +tp231556 +a(g231553 +g231555 +S'a' +p231557 +tp231558 +a(g231555 +g231557 +S'lawyer' +p231559 +tp231560 +a(g231557 +g231559 +S'and' +p231561 +tp231562 +a(g231559 +g231561 +S'served' +p231563 +tp231564 +a(g231561 +g231563 +S'a' +p231565 +tp231566 +a(g231563 +g231565 +S'stint' +p231567 +tp231568 +a(g231565 +g231567 +S'in' +p231569 +tp231570 +a(g231567 +g231569 +S'the' +p231571 +tp231572 +a(g231569 +g231571 +S'military' +p231573 +tp231574 +a(g231571 +g231573 +S'before' +p231575 +tp231576 +a(g231573 +g231575 +S'taking' +p231577 +tp231578 +a(g231575 +g231577 +S'a' +p231579 +tp231580 +a(g231577 +g231579 +S'position' +p231581 +tp231582 +a(g231579 +g231581 +S'at' +p231583 +tp231584 +a(g231581 +g231583 +S'a' +p231585 +tp231586 +a(g231583 +g231585 +S'french' +p231587 +tp231588 +a(g231585 +g231587 +S'customs' +p231589 +tp231590 +a(g231587 +g231589 +S'post' +p231591 +tp231592 +a(g231589 +g231591 +S'in' +p231593 +tp231594 +a(g231591 +g231593 +S'1868;' +p231595 +tp231596 +a(g231593 +g231595 +S'the' +p231597 +tp231598 +a(g231595 +g231597 +S'nickname' +p231599 +tp231600 +a(g231597 +g231599 +S'"' +p231601 +tp231602 +a(g231599 +g231601 +S'very' +p231603 +tp231604 +a(g231601 +g231603 +S'poor,' +p231605 +tp231606 +a(g231603 +g231605 +S'rousseau' +p231607 +tp231608 +a(g231605 +g231607 +S'was' +p231609 +tp231610 +a(g231607 +g231609 +S'a' +p231611 +tp231612 +a(g231609 +g231611 +S'self-taught' +p231613 +tp231614 +a(g231611 +g231613 +S'painter' +p231615 +tp231616 +a(g231613 +g231615 +S'who' +p231617 +tp231618 +a(g231615 +g231617 +S'harbored' +p231619 +tp231620 +a(g231617 +g231619 +S'dreams' +p231621 +tp231622 +a(g231619 +g231621 +S'of' +p231623 +tp231624 +a(g231621 +g231623 +S'official' +p231625 +tp231626 +a(g231623 +g231625 +S'approval.' +p231627 +tp231628 +a(g231625 +g231627 +S'although' +p231629 +tp231630 +a(g231627 +g231629 +S'he' +p231631 +tp231632 +a(g231629 +g231631 +S'never' +p231633 +tp231634 +a(g231631 +g231633 +S'achieved' +p231635 +tp231636 +a(g231633 +g231635 +S'recognition' +p231637 +tp231638 +a(g231635 +g231637 +S'from' +p231639 +tp231640 +a(g231637 +g231639 +S'the' +p231641 +tp231642 +a(g231639 +g231641 +S'french' +p231643 +tp231644 +a(g231641 +g231643 +S'academy,' +p231645 +tp231646 +a(g231643 +g231645 +S'he' +p231647 +tp231648 +a(g231645 +g231647 +S'was' +p231649 +tp231650 +a(g231647 +g231649 +S'embraced' +p231651 +tp231652 +a(g231649 +g231651 +S'by' +p231653 +tp231654 +a(g231651 +g231653 +S'early' +p231655 +tp231656 +a(g231653 +g231655 +S'20th-century' +p231657 +tp231658 +a(g231655 +g231657 +S'avant-garde' +p231659 +tp231660 +a(g231657 +g231659 +S'artists,' +p231661 +tp231662 +a(g231659 +g231661 +S'including' +p231663 +tp231664 +a(g231661 +g231663 +S'picasso' +p231665 +tp231666 +a(g231663 +g231665 +S'and' +p231667 +tp231668 +a(g231665 +g231667 +S'the' +p231669 +tp231670 +a(g231667 +g231669 +S'surrealists,' +p231671 +tp231672 +a(g231669 +g231671 +S'for' +p231673 +tp231674 +a(g231671 +g231673 +S'his' +p231675 +tp231676 +a(g231673 +g231675 +S'departures' +p231677 +tp231678 +a(g231675 +g231677 +S'from' +p231679 +tp231680 +a(g231677 +g231679 +S'conventional' +p231681 +tp231682 +a(g231679 +g231681 +S'style,' +p231683 +tp231684 +a(g231681 +g231683 +S'which' +p231685 +tp231686 +a(g231683 +g231685 +S'included' +p231687 +tp231688 +a(g231685 +g231687 +S'broad,' +p231689 +tp231690 +a(g231687 +g231689 +S'flat' +p231691 +tp231692 +a(g231689 +g231691 +S'planes' +p231693 +tp231694 +a(g231691 +g231693 +S'of' +p231695 +tp231696 +a(g231693 +g231695 +S'color,' +p231697 +tp231698 +a(g231695 +g231697 +S'stylized' +p231699 +tp231700 +a(g231697 +g231699 +S'line,' +p231701 +tp231702 +a(g231699 +g231701 +S'and' +p231703 +tp231704 +a(g231701 +g231703 +S'fantastic' +p231705 +tp231706 +a(g231703 +g231705 +S'landscapes.' +p231707 +tp231708 +a(g231705 +g231707 +S'while' +p231709 +tp231710 +a(g231707 +g231709 +S'he' +p231711 +tp231712 +a(g231709 +g231711 +S'painted' +p231713 +tp231714 +a(g231711 +g231713 +S'exotic' +p231715 +tp231716 +a(g231713 +g231715 +S'locales,' +p231717 +tp231718 +a(g231715 +g231717 +S'rousseau' +p231719 +tp231720 +a(g231717 +g231719 +S'never' +p231721 +tp231722 +a(g231719 +g231721 +S'left' +p231723 +tp231724 +a(g231721 +g231723 +S'france;' +p231725 +tp231726 +a(g231723 +g231725 +S'his' +p231727 +tp231728 +a(g231725 +g231727 +S'jungles' +p231729 +tp231730 +a(g231727 +g231729 +S'are' +p231731 +tp231732 +a(g231729 +g231731 +S'the' +p231733 +tp231734 +a(g231731 +g231733 +S'dreams' +p231735 +tp231736 +a(g231733 +g231735 +S'of' +p231737 +tp231738 +a(g231735 +g231737 +S'a' +p231739 +tp231740 +a(g231737 +g231739 +S'city' +p231741 +tp231742 +a(g231739 +g231741 +S'dweller,' +p231743 +tp231744 +a(g231741 +g231743 +S'constructed' +p231745 +tp231746 +a(g231743 +g231745 +S'from' +p231747 +tp231748 +a(g231745 +g231747 +S'visits' +p231749 +tp231750 +a(g231747 +g231749 +S'to' +p231751 +tp231752 +a(g231749 +g231751 +S'the' +p231753 +tp231754 +a(g231751 +g231753 +S'botanical' +p231755 +tp231756 +a(g231753 +g231755 +S'gardens,' +p231757 +tp231758 +a(g231755 +g231757 +S'the' +p231759 +tp231760 +a(g231757 +g231759 +S'paris' +p231761 +tp231762 +a(g231759 +g231761 +S'zoo,' +p231763 +tp231764 +a(g231761 +g231763 +S'and' +p231765 +tp231766 +a(g231763 +g231765 +S'colonial' +p231767 +tp231768 +a(g231765 +g231767 +S'expositions,' +p231769 +tp231770 +a(g231767 +g231769 +S'and' +p231771 +tp231772 +a(g231769 +g231771 +S'culled' +p231773 +tp231774 +a(g231771 +g231773 +S'from' +p231775 +tp231776 +a(g231773 +g231775 +S'prints' +p231777 +tp231778 +a(g231775 +g231777 +S'and' +p231779 +tp231780 +a(g231777 +g231779 +S'reproductions.' +p231781 +tp231782 +a(g231779 +g231781 +S'tropical' +p231783 +tp231784 +a(g231781 +g231783 +S'forest' +p231785 +tp231786 +a(g231783 +g231785 +S'with' +p231787 +tp231788 +a(g231785 +g231787 +S'monkeys' +p231789 +tp231790 +a(g231787 +g231789 +S'one' +p231791 +tp231792 +a(g231789 +g231791 +S'of' +p231793 +tp231794 +a(g231791 +g231793 +S'the' +p231795 +tp231796 +a(g231793 +g231795 +S'most' +p231797 +tp231798 +a(g231795 +g231797 +S'striking' +p231799 +tp231800 +a(g231797 +g231799 +S'aspects' +p231801 +tp231802 +a(g231799 +g231801 +S'of' +p231803 +tp231804 +a(g231801 +g231803 +S"rousseau's" +p231805 +tp231806 +a(g231803 +g231805 +S'style' +p231807 +tp231808 +a(g231805 +g231807 +S'is' +p231809 +tp231810 +a(g231807 +g231809 +S'the' +p231811 +tp231812 +a(g231809 +g231811 +S'flattening' +p231813 +tp231814 +a(g231811 +g231813 +S'of' +p231815 +tp231816 +a(g231813 +g231815 +S'his' +p231817 +tp231818 +a(g231815 +g231817 +S'subjects.' +p231819 +tp231820 +a(g231817 +g231819 +S'whether' +p231821 +tp231822 +a(g231819 +g231821 +S'he' +p231823 +tp231824 +a(g231821 +g231823 +S'was' +p231825 +tp231826 +a(g231823 +g231825 +S'echoing' +p231827 +tp231828 +a(g231825 +g231827 +S'his' +p231829 +tp231830 +a(g231827 +g231829 +S'impressionist' +p231831 +tp231832 +a(g231829 +g231831 +S'contemporaries,' +p231833 +tp231834 +a(g231831 +g231833 +S'who' +p231835 +tp231836 +a(g231833 +g231835 +S'were' +p231837 +tp231838 +a(g231835 +g231837 +S'concerned' +p231839 +tp231840 +a(g231837 +g231839 +S'with' +p231841 +tp231842 +a(g231839 +g231841 +S'surface,' +p231843 +tp231844 +a(g231841 +g231843 +S'or' +p231845 +tp231846 +a(g231843 +g231845 +S'simply' +p231847 +tp231848 +a(g231845 +g231847 +S'following' +p231849 +tp231850 +a(g231847 +g231849 +S'his' +p231851 +tp231852 +a(g231849 +g231851 +S'own' +p231853 +tp231854 +a(g231851 +g231853 +S'vision,' +p231855 +tp231856 +a(g231853 +g231855 +S'the' +p231857 +tp231858 +a(g231855 +g231857 +S"artist's" +p231859 +tp231860 +a(g231857 +g231859 +S'jungle' +p231861 +tp231862 +a(g231859 +g231861 +S'paintings' +p231863 +tp231864 +a(g231861 +g231863 +S'lack' +p231865 +tp231866 +a(g231863 +g231865 +S'solidity,' +p231867 +tp231868 +a(g231865 +g231867 +S'as' +p231869 +tp231870 +a(g231867 +g231869 +S'if' +p231871 +tp231872 +a(g231869 +g231871 +S'they' +p231873 +tp231874 +a(g231871 +g231873 +S'were' +p231875 +tp231876 +a(g231873 +g231875 +S'representations' +p231877 +tp231878 +a(g231875 +g231877 +S'of' +p231879 +tp231880 +a(g231877 +g231879 +S'theatrical' +p231881 +tp231882 +a(g231879 +g231881 +S'décor,' +p231883 +tp231884 +a(g231881 +g231883 +S'the' +p231885 +tp231886 +a(g231883 +g231885 +S'gigantic' +p231887 +tp231888 +a(g231885 +g231887 +S'leaves' +p231889 +tp231890 +a(g231887 +g231889 +S'and' +p231891 +tp231892 +a(g231889 +g231891 +S'petals' +p231893 +tp231894 +a(g231891 +g231893 +S'minimally' +p231895 +tp231896 +a(g231893 +g231895 +S'contoured' +p231897 +tp231898 +a(g231895 +g231897 +S'so' +p231899 +tp231900 +a(g231897 +g231899 +S'as' +p231901 +tp231902 +a(g231899 +g231901 +S'to' +p231903 +tp231904 +a(g231901 +g231903 +S'create' +p231905 +tp231906 +a(g231903 +g231905 +S'the' +p231907 +tp231908 +a(g231905 +g231907 +S'effect' +p231909 +tp231910 +a(g231907 +g231909 +S'of' +p231911 +tp231912 +a(g231909 +g231911 +S'overlapping' +p231913 +tp231914 +a(g231911 +g231913 +S'cutouts.' +p231915 +tp231916 +a(g231913 +g231915 +S'moreover,' +p231917 +tp231918 +a(g231915 +g231917 +S'his' +p231919 +tp231920 +a(g231917 +g231919 +S'creatures' +p231921 +tp231922 +a(g231919 +g231921 +S'seem' +p231923 +tp231924 +a(g231921 +g231923 +S'deliberately' +p231925 +tp231926 +a(g231923 +g231925 +S'subdued' +p231927 +tp231928 +a(g231925 +g231927 +S'by' +p231929 +tp231930 +a(g231927 +g231929 +S'a' +p231931 +tp231932 +a(g231929 +g231931 +S'deadpan' +p231933 +tp231934 +a(g231931 +g231933 +S'treatment' +p231935 +tp231936 +a(g231933 +g231935 +S'that' +p231937 +tp231938 +a(g231935 +g231937 +S'identifies' +p231939 +tp231940 +a(g231937 +g231939 +S'each' +p231941 +tp231942 +a(g231939 +g231941 +S'more' +p231943 +tp231944 +a(g231941 +g231943 +S'as' +p231945 +tp231946 +a(g231943 +g231945 +S'outline' +p231947 +tp231948 +a(g231945 +g231947 +S'than' +p231949 +tp231950 +a(g231947 +g231949 +S'as' +p231951 +tp231952 +a(g231949 +g231951 +S'a' +p231953 +tp231954 +a(g231951 +g231953 +S'tactile' +p231955 +tp231956 +a(g231953 +g231955 +S'form.' +p231957 +tp231958 +a(g231955 +g231957 +S'as' +p231959 +tp231960 +a(g231957 +g231959 +S'his' +p231961 +tp231962 +a(g231959 +g231961 +S'career' +p231963 +tp231964 +a(g231961 +g231963 +S'progressed,' +p231965 +tp231966 +a(g231963 +g231965 +S'rousseau' +p231967 +tp231968 +a(g231965 +g231967 +S'increasingly' +p231969 +tp231970 +a(g231967 +g231969 +S'associated' +p231971 +tp231972 +a(g231969 +g231971 +S'with' +p231973 +tp231974 +a(g231971 +g231973 +S'the' +p231975 +tp231976 +a(g231973 +g231975 +S'avant-garde,' +p231977 +tp231978 +a(g231975 +g231977 +S'and' +p231979 +tp231980 +a(g231977 +g231979 +S'in' +p231981 +tp231982 +a(g231979 +g231981 +S'1905' +p231983 +tp231984 +a(g231981 +g231983 +S'he' +p231985 +tp231986 +a(g231983 +g231985 +S'exhibited' +p231987 +tp231988 +a(g231985 +g231987 +S'alongside' +p231989 +tp231990 +a(g231987 +g231989 +S'the' +p231991 +tp231992 +a(g231989 +g231991 +S'fauves' +p231993 +tp231994 +a(g231991 +g231993 +S'at' +p231995 +tp231996 +a(g231993 +g231995 +S'the' +p231997 +tp231998 +a(g231995 +g231997 +S'salon' +p231999 +tp232000 +a(g231997 +g231999 +S"d'automne." +p232001 +tp232002 +a(g231999 +g232001 +S'gradually' +p232003 +tp232004 +a(g232001 +g232003 +S'his' +p232005 +tp232006 +a(g232003 +g232005 +S'reputation' +p232007 +tp232008 +a(g232005 +g232007 +S'grew,' +p232009 +tp232010 +a(g232007 +g232009 +S'and' +p232011 +tp232012 +a(g232009 +g232011 +S'sales' +p232013 +tp232014 +a(g232011 +g232013 +S'of' +p232015 +tp232016 +a(g232013 +g232015 +S'his' +p232017 +tp232018 +a(g232015 +g232017 +S'work' +p232019 +tp232020 +a(g232017 +g232019 +S'had' +p232021 +tp232022 +a(g232019 +g232021 +S'increased' +p232023 +tp232024 +a(g232021 +g232023 +S'considerably' +p232025 +tp232026 +a(g232023 +g232025 +S'by' +p232027 +tp232028 +a(g232025 +g232027 +S'1910,' +p232029 +tp232030 +a(g232027 +g232029 +S'when' +p232031 +tp232032 +a(g232029 +g232031 +S'he' +p232033 +tp232034 +a(g232031 +g232033 +S'fell' +p232035 +tp232036 +a(g232033 +g232035 +S'victim' +p232037 +tp232038 +a(g232035 +g232037 +S'to' +p232039 +tp232040 +a(g232037 +g232039 +S'an' +p232041 +tp232042 +a(g232039 +g232041 +S'infection' +p232043 +tp232044 +a(g232041 +g232043 +S'and' +p232045 +tp232046 +a(g232043 +g232045 +S'died.' +p232047 +tp232048 +a(g232045 +g232047 +S'his' +p232049 +tp232050 +a(g232047 +g232049 +S'funeral' +p232051 +tp232052 +a(g232049 +g232051 +S'was' +p232053 +tp232054 +a(g232051 +g232053 +S'attended' +p232055 +tp232056 +a(g232053 +g232055 +S'by' +p232057 +tp232058 +a(g232055 +g232057 +S'paul' +p232059 +tp232060 +a(g232057 +g232059 +S'signac' +p232061 +tp232062 +a(g232059 +g232061 +S'and' +p232063 +tp232064 +a(g232061 +g232063 +S'guillaume' +p232065 +tp232066 +a(g232063 +g232065 +S'apollinaire' +p232067 +tp232068 +a(g232065 +g232067 +S'composed' +p232069 +tp232070 +a(g232067 +g232069 +S'a' +p232071 +tp232072 +a(g232069 +g232071 +S'whimsical' +p232073 +tp232074 +a(g232071 +g232073 +S'poem' +p232075 +tp232076 +a(g232073 +g232075 +S'that' +p232077 +tp232078 +a(g232075 +g232077 +S'constantin' +p232079 +tp232080 +a(g232077 +g232079 +S'brancusi' +p232081 +tp232082 +a(g232079 +g232081 +S'chiseled' +p232083 +tp232084 +a(g232081 +g232083 +S'into' +p232085 +tp232086 +a(g232083 +g232085 +S'the' +p232087 +tp232088 +a(g232085 +g232087 +S'tombstone,' +p232089 +tp232090 +a(g232087 +g232089 +S'thereby' +p232091 +tp232092 +a(g232089 +g232091 +S'situating' +p232093 +tp232094 +a(g232091 +g232093 +S'rousseau' +p232095 +tp232096 +a(g232093 +g232095 +S'an' +p232097 +tp232098 +a(g232095 +g232097 +S'unwitting' +p232099 +tp232100 +a(g232097 +g232099 +S'godfather' +p232101 +tp232102 +a(g232099 +g232101 +S'of' +p232103 +tp232104 +a(g232101 +g232103 +S'modernism.' +p232105 +tp232106 +a(g232103 +g232105 +S'whistler' +p232107 +tp232108 +a(g232105 +g232107 +S'inscribed' +p232109 +tp232110 +a(g232107 +g232109 +S'"1861"' +p232111 +tp232112 +a(g232109 +g232111 +S'at' +p232113 +tp232114 +a(g232111 +g232113 +S'the' +p232115 +tp232116 +a(g232113 +g232115 +S'lower' +p232117 +tp232118 +a(g232115 +g232117 +S'right' +p232119 +tp232120 +a(g232117 +g232119 +S'of' +p232121 +tp232122 +a(g232119 +g232121 +S'this' +p232123 +tp232124 +a(g232121 +g232123 +S'early' +p232125 +tp232126 +a(g232123 +g232125 +S'canvas,' +p232127 +tp232128 +a(g232125 +g232127 +S'but' +p232129 +tp232130 +a(g232127 +g232129 +S'he' +p232131 +tp232132 +a(g232129 +g232131 +S'reworked' +p232133 +tp232134 +a(g232131 +g232133 +S'the' +p232135 +tp232136 +a(g232133 +g232135 +S'picture' +p232137 +tp232138 +a(g232135 +g232137 +S'extensively' +p232139 +tp232140 +a(g232137 +g232139 +S'nearly' +p232141 +tp232142 +a(g232139 +g232141 +S'four' +p232143 +tp232144 +a(g232141 +g232143 +S'years' +p232145 +tp232146 +a(g232143 +g232145 +S'later.' +p232147 +tp232148 +a(g232145 +g232147 +S'he' +p232149 +tp232150 +a(g232147 +g232149 +S'sketched' +p232151 +tp232152 +a(g232149 +g232151 +S'the' +p232153 +tp232154 +a(g232151 +g232153 +S'original' +p232155 +tp232156 +a(g232153 +g232155 +S'composition' +p232157 +tp232158 +a(g232155 +g232157 +S'in' +p232159 +tp232160 +a(g232157 +g232159 +S'a' +p232161 +tp232162 +a(g232159 +g232161 +S'letter' +p232163 +tp232164 +a(g232161 +g232163 +S'to' +p232165 +tp232166 +a(g232163 +g232165 +S'an' +p232167 +tp232168 +a(g232165 +g232167 +S'associate' +p232169 +tp232170 +a(g232167 +g232169 +S'and' +p232171 +tp232172 +a(g232169 +g232171 +S'described' +p232173 +tp232174 +a(g232171 +g232173 +S'the' +p232175 +tp232176 +a(g232173 +g232175 +S'girl' +p232177 +tp232178 +a(g232175 +g232177 +S'as' +p232179 +tp232180 +a(g232177 +g232179 +S'"saying' +p232181 +tp232182 +a(g232179 +g232181 +S'to' +p232183 +tp232184 +a(g232181 +g232183 +S'her' +p232185 +tp232186 +a(g232183 +g232185 +S'sailor:' +p232187 +tp232188 +a(g232185 +g232187 +S"'that's" +p232189 +tp232190 +a(g232187 +g232189 +S'all' +p232191 +tp232192 +a(g232189 +g232191 +S'very' +p232193 +tp232194 +a(g232191 +g232193 +S'well' +p232195 +tp232196 +a(g232193 +g232195 +S'my' +p232197 +tp232198 +a(g232195 +g232197 +S'friend,' +p232199 +tp232200 +a(g232197 +g232199 +S'but' +p232201 +tp232202 +a(g232199 +g232201 +S"don't" +p232203 +tp232204 +a(g232201 +g232203 +S'think' +p232205 +tp232206 +a(g232203 +g232205 +S"you're" +p232207 +tp232208 +a(g232205 +g232207 +S'the' +p232209 +tp232210 +a(g232207 +g232209 +S"first.'" +p232211 +tp232212 +a(g232209 +g232211 +S'you' +p232213 +tp232214 +a(g232211 +g232213 +S'know,' +p232215 +tp232216 +a(g232213 +g232215 +S'she' +p232217 +tp232218 +a(g232215 +g232217 +S'winks' +p232219 +tp232220 +a(g232217 +g232219 +S'and' +p232221 +tp232222 +a(g232219 +g232221 +S'pokes' +p232223 +tp232224 +a(g232221 +g232223 +S'fun' +p232225 +tp232226 +a(g232223 +g232225 +S'at' +p232227 +tp232228 +a(g232225 +g232227 +S'him."' +p232229 +tp232230 +a(g232227 +g232229 +S'in' +p232231 +tp232232 +a(g232229 +g232231 +S'this' +p232233 +tp232234 +a(g232231 +g232233 +S'final' +p232235 +tp232236 +a(g232233 +g232235 +S'revision,' +p232237 +tp232238 +a(g232235 +g232237 +S'however,' +p232239 +tp232240 +a(g232237 +g232239 +S'whistler' +p232241 +tp232242 +a(g232239 +g232241 +S'eliminated' +p232243 +tp232244 +a(g232241 +g232243 +S'any' +p232245 +tp232246 +a(g232243 +g232245 +S'risqu\xc3\xa9' +p232247 +tp232248 +a(g232245 +g232247 +S'narrative' +p232249 +tp232250 +a(g232247 +g232249 +S'and' +p232251 +tp232252 +a(g232249 +g232251 +S'instead' +p232253 +tp232254 +a(g232251 +g232253 +S'sought' +p232255 +tp232256 +a(g232253 +g232255 +S'a' +p232257 +tp232258 +a(g232255 +g232257 +S'mood' +p232259 +tp232260 +a(g232257 +g232259 +S'of' +p232261 +tp232262 +a(g232259 +g232261 +S'pensive' +p232263 +tp232264 +a(g232261 +g232263 +S'isolation.' +p232265 +tp232266 +a(g232263 +g232265 +S'the' +p232267 +tp232268 +a(g232265 +g232267 +S'background' +p232269 +tp232270 +a(g232267 +g232269 +S'remains' +p232271 +tp232272 +a(g232269 +g232271 +S'intact' +p232273 +tp232274 +a(g232271 +g232273 +S'from' +p232275 +tp232276 +a(g232273 +g232275 +S'the' +p232277 +tp232278 +a(g232275 +g232277 +S"artist's" +p232279 +tp232280 +a(g232277 +g232279 +S'first' +p232281 +tp232282 +a(g232279 +g232281 +S'sessions' +p232283 +tp232284 +a(g232281 +g232283 +S'at' +p232285 +tp232286 +a(g232283 +g232285 +S'wapping,' +p232287 +tp232288 +a(g232285 +g232287 +S'a' +p232289 +tp232290 +a(g232287 +g232289 +S'dockyard' +p232291 +tp232292 +a(g232289 +g232291 +S'on' +p232293 +tp232294 +a(g232291 +g232293 +S'the' +p232295 +tp232296 +a(g232293 +g232295 +S'river' +p232297 +tp232298 +a(g232295 +g232297 +S'thames,' +p232299 +tp232300 +a(g232297 +g232299 +S'east' +p232301 +tp232302 +a(g232299 +g232301 +S'of' +p232303 +tp232304 +a(g232301 +g232303 +S'london.' +p232305 +tp232306 +a(g232303 +g232305 +S'painting' +p232307 +tp232308 +a(g232305 +g232307 +S'on' +p232309 +tp232310 +a(g232307 +g232309 +S'site' +p232311 +tp232312 +a(g232309 +g232311 +S'from' +p232313 +tp232314 +a(g232311 +g232313 +S'an' +p232315 +tp232316 +a(g232313 +g232315 +S'inn' +p232317 +tp232318 +a(g232315 +g232317 +S'called' +p232319 +tp232320 +a(g232317 +g232319 +S'the' +p232321 +tp232322 +a(g232319 +g232321 +S'angel,' +p232323 +tp232324 +a(g232321 +g232323 +S'whistler' +p232325 +tp232326 +a(g232323 +g232325 +S'created' +p232327 +tp232328 +a(g232325 +g232327 +S'the' +p232329 +tp232330 +a(g232327 +g232329 +S'whole' +p232331 +tp232332 +a(g232329 +g232331 +S'scene' +p232333 +tp232334 +a(g232331 +g232333 +S'for' +p232335 +tp232336 +a(g232333 +g232335 +S'this' +p232337 +tp232338 +a(g232335 +g232337 +S'work,' +p232339 +tp232340 +a(g232337 +g232339 +S'whistler' +p232341 +tp232342 +a(g232339 +g232341 +S'hired' +p232343 +tp232344 +a(g232341 +g232343 +S'joanna' +p232345 +tp232346 +a(g232343 +g232345 +S'hiffernan,' +p232347 +tp232348 +a(g232345 +g232347 +S'an' +p232349 +tp232350 +a(g232347 +g232349 +S"artist's" +p232351 +tp232352 +a(g232349 +g232351 +S'model' +p232353 +tp232354 +a(g232351 +g232353 +S'known' +p232355 +tp232356 +a(g232353 +g232355 +S'for' +p232357 +tp232358 +a(g232355 +g232357 +S'her' +p232359 +tp232360 +a(g232357 +g232359 +S'coppery' +p232361 +tp232362 +a(g232359 +g232361 +S'red' +p232363 +tp232364 +a(g232361 +g232363 +S'hair.' +p232365 +tp232366 +a(g232363 +g232365 +S'she' +p232367 +tp232368 +a(g232365 +g232367 +S'soon' +p232369 +tp232370 +a(g232367 +g232369 +S'became' +p232371 +tp232372 +a(g232369 +g232371 +S'his' +p232373 +tp232374 +a(g232371 +g232373 +S'mistress' +p232375 +tp232376 +a(g232373 +g232375 +S'and' +p232377 +tp232378 +a(g232375 +g232377 +S'posed' +p232379 +tp232380 +a(g232377 +g232379 +S'for' +p232381 +tp232382 +a(g232379 +g232381 +S"escher's" +p232383 +tp232384 +a(g232381 +g232383 +S'print' +p232385 +tp232386 +a(g232383 +g232385 +S'illustrates' +p232387 +tp232388 +a(g232385 +g232387 +S'the' +p232389 +tp232390 +a(g232387 +g232389 +S'"impossible' +p232391 +tp232392 +a(g232389 +g232391 +S'triangle"' +p232393 +tp232394 +a(g232391 +g232393 +S'described' +p232395 +tp232396 +a(g232393 +g232395 +S'by' +p232397 +tp232398 +a(g232395 +g232397 +S'the' +p232399 +tp232400 +a(g232397 +g232399 +S'british' +p232401 +tp232402 +a(g232399 +g232401 +S'mathematician' +p232403 +tp232404 +a(g232401 +g232403 +S'roger' +p232405 +tp232406 +a(g232403 +g232405 +S'penrose' +p232407 +tp232408 +a(g232405 +g232407 +S'in' +p232409 +tp232410 +a(g232407 +g232409 +S'a' +p232411 +tp232412 +a(g232409 +g232411 +S'1958' +p232413 +tp232414 +a(g232411 +g232413 +S'article' +p232415 +tp232416 +a(g232413 +g232415 +S'on' +p232417 +tp232418 +a(g232415 +g232417 +S'visual' +p232419 +tp232420 +a(g232417 +g232419 +S'illusion:' +p232421 +tp232422 +a(g232419 +g232421 +S'"here' +p232423 +tp232424 +a(g232421 +g232423 +S'is' +p232425 +tp232426 +a(g232423 +g232425 +S'a' +p232427 +tp232428 +a(g232425 +g232427 +S'perspective' +p232429 +tp232430 +a(g232427 +g232429 +S'drawing,' +p232431 +tp232432 +a(g232429 +g232431 +S'each' +p232433 +tp232434 +a(g232431 +g232433 +S'part' +p232435 +tp232436 +a(g232433 +g232435 +S'of' +p232437 +tp232438 +a(g232435 +g232437 +S'which' +p232439 +tp232440 +a(g232437 +g232439 +S'is' +p232441 +tp232442 +a(g232439 +g232441 +S'accepted' +p232443 +tp232444 +a(g232441 +g232443 +S'as' +p232445 +tp232446 +a(g232443 +g232445 +S'representing' +p232447 +tp232448 +a(g232445 +g232447 +S'a' +p232449 +tp232450 +a(g232447 +g232449 +S'three-dimensional,' +p232451 +tp232452 +a(g232449 +g232451 +S'rectangular' +p232453 +tp232454 +a(g232451 +g232453 +S'structure.' +p232455 +tp232456 +a(g232453 +g232455 +S'the' +p232457 +tp232458 +a(g232455 +g232457 +S'lines' +p232459 +tp232460 +a(g232457 +g232459 +S'of' +p232461 +tp232462 +a(g232459 +g232461 +S'the' +p232463 +tp232464 +a(g232461 +g232463 +S'drawing' +p232465 +tp232466 +a(g232463 +g232465 +S'are,' +p232467 +tp232468 +a(g232465 +g232467 +S'however,' +p232469 +tp232470 +a(g232467 +g232469 +S'connected' +p232471 +tp232472 +a(g232469 +g232471 +S'in' +p232473 +tp232474 +a(g232471 +g232473 +S'such' +p232475 +tp232476 +a(g232473 +g232475 +S'a' +p232477 +tp232478 +a(g232475 +g232477 +S'manner' +p232479 +tp232480 +a(g232477 +g232479 +S'as' +p232481 +tp232482 +a(g232479 +g232481 +S'to' +p232483 +tp232484 +a(g232481 +g232483 +S'reproduce' +p232485 +tp232486 +a(g232483 +g232485 +S'an' +p232487 +tp232488 +a(g232485 +g232487 +S'impossibility.' +p232489 +tp232490 +a(g232487 +g232489 +S'as' +p232491 +tp232492 +a(g232489 +g232491 +S'the' +p232493 +tp232494 +a(g232491 +g232493 +S'eye' +p232495 +tp232496 +a(g232493 +g232495 +S'pursues' +p232497 +tp232498 +a(g232495 +g232497 +S'the' +p232499 +tp232500 +a(g232497 +g232499 +S'lines' +p232501 +tp232502 +a(g232499 +g232501 +S'of' +p232503 +tp232504 +a(g232501 +g232503 +S'the' +p232505 +tp232506 +a(g232503 +g232505 +S'figure,' +p232507 +tp232508 +a(g232505 +g232507 +S'sudden' +p232509 +tp232510 +a(g232507 +g232509 +S'changes' +p232511 +tp232512 +a(g232509 +g232511 +S'in' +p232513 +tp232514 +a(g232511 +g232513 +S'the' +p232515 +tp232516 +a(g232513 +g232515 +S'interpretation' +p232517 +tp232518 +a(g232515 +g232517 +S'of' +p232519 +tp232520 +a(g232517 +g232519 +S'distance' +p232521 +tp232522 +a(g232519 +g232521 +S'of' +p232523 +tp232524 +a(g232521 +g232523 +S'the' +p232525 +tp232526 +a(g232523 +g232525 +S'object' +p232527 +tp232528 +a(g232525 +g232527 +S'from' +p232529 +tp232530 +a(g232527 +g232529 +S'the' +p232531 +tp232532 +a(g232529 +g232531 +S'observer' +p232533 +tp232534 +a(g232531 +g232533 +S'are' +p232535 +tp232536 +a(g232533 +g232535 +S'necessary."' +p232537 +tp232538 +a(g232535 +g232537 +S'escher' +p232539 +tp232540 +a(g232537 +g232539 +S'suffered' +p232541 +tp232542 +a(g232539 +g232541 +S'from' +p232543 +tp232544 +a(g232541 +g232543 +S'poor' +p232545 +tp232546 +a(g232543 +g232545 +S'health' +p232547 +tp232548 +a(g232545 +g232547 +S'when' +p232549 +tp232550 +a(g232547 +g232549 +S'making' +p232551 +tp232552 +a(g232549 +g232551 +S'this' +p232553 +tp232554 +a(g232551 +g232553 +S'woodcut,' +p232555 +tp232556 +a(g232553 +g232555 +S'and' +p232557 +tp232558 +a(g232555 +g232557 +S'it' +p232559 +tp232560 +a(g232557 +g232559 +S'is' +p232561 +tp232562 +a(g232559 +g232561 +S'his' +p232563 +tp232564 +a(g232561 +g232563 +S'last' +p232565 +tp232566 +a(g232563 +g232565 +S'print.' +p232567 +tp232568 +a(g232565 +g232567 +S'he' +p232569 +tp232570 +a(g232567 +g232569 +S'again' +p232571 +tp232572 +a(g232569 +g232571 +S'illustrates' +p232573 +tp232574 +a(g232571 +g232573 +S'the' +p232575 +tp232576 +a(g232573 +g232575 +S'concept' +p232577 +tp232578 +a(g232575 +g232577 +S'of' +p232579 +tp232580 +a(g232577 +g232579 +S'infinity.' +p232581 +tp232582 +a(g232579 +g232581 +S'however,' +p232583 +tp232584 +a(g232581 +g232583 +S'here' +p232585 +tp232586 +a(g232583 +g232585 +S'he' +p232587 +tp232588 +a(g232585 +g232587 +S'introduces' +p232589 +tp232590 +a(g232587 +g232589 +S'a' +p232591 +tp232592 +a(g232589 +g232591 +S'new' +p232593 +tp232594 +a(g232591 +g232593 +S'invention:' +p232595 +tp232596 +a(g232593 +g232595 +S'infinitely' +p232597 +tp232598 +a(g232595 +g232597 +S'small' +p232599 +tp232600 +a(g232597 +g232599 +S'rings' +p232601 +tp232602 +a(g232599 +g232601 +S'grow' +p232603 +tp232604 +a(g232601 +g232603 +S'from' +p232605 +tp232606 +a(g232603 +g232605 +S'the' +p232607 +tp232608 +a(g232605 +g232607 +S'center' +p232609 +tp232610 +a(g232607 +g232609 +S'of' +p232611 +tp232612 +a(g232609 +g232611 +S'the' +p232613 +tp232614 +a(g232611 +g232613 +S'circle,' +p232615 +tp232616 +a(g232613 +g232615 +S'reach' +p232617 +tp232618 +a(g232615 +g232617 +S'a' +p232619 +tp232620 +a(g232617 +g232619 +S'maximum' +p232621 +tp232622 +a(g232619 +g232621 +S'size,' +p232623 +tp232624 +a(g232621 +g232623 +S'and' +p232625 +tp232626 +a(g232623 +g232625 +S'then' +p232627 +tp232628 +a(g232625 +g232627 +S'diminish' +p232629 +tp232630 +a(g232627 +g232629 +S'again' +p232631 +tp232632 +a(g232629 +g232631 +S'as' +p232633 +tp232634 +a(g232631 +g232633 +S'they' +p232635 +tp232636 +a(g232633 +g232635 +S'reach' +p232637 +tp232638 +a(g232635 +g232637 +S'the' +p232639 +tp232640 +a(g232637 +g232639 +S'outer' +p232641 +tp232642 +a(g232639 +g232641 +S'circumference.' +p232643 +tp232644 +a(g232641 +g232643 +S'young' +p232645 +tp232646 +a(g232643 +g232645 +S'woman' +p232647 +tp232648 +a(g232645 +g232647 +S'with' +p232649 +tp232650 +a(g232647 +g232649 +S'peonies' +p232651 +tp232652 +a(g232649 +g232651 +S'although' +p232653 +tp232654 +a(g232651 +g232653 +S'both' +p232655 +tp232656 +a(g232653 +g232655 +S'paintings' +p232657 +tp232658 +a(g232655 +g232657 +S'entitled' +p232659 +tp232660 +a(g232657 +g232659 +S'the' +p232661 +tp232662 +a(g232659 +g232661 +S'exact' +p232663 +tp232664 +a(g232661 +g232663 +S'relationship' +p232665 +tp232666 +a(g232663 +g232665 +S'between' +p232667 +tp232668 +a(g232665 +g232667 +S'the' +p232669 +tp232670 +a(g232667 +g232669 +S'two' +p232671 +tp232672 +a(g232669 +g232671 +S'versions' +p232673 +tp232674 +a(g232671 +g232673 +S'is' +p232675 +tp232676 +a(g232673 +g232675 +S'not' +p232677 +tp232678 +a(g232675 +g232677 +S'clear.' +p232679 +tp232680 +a(g232677 +g232679 +S'surprisingly,' +p232681 +tp232682 +a(g232679 +g232681 +S'bazille' +p232683 +tp232684 +a(g232681 +g232683 +S'seems' +p232685 +tp232686 +a(g232683 +g232685 +S'to' +p232687 +tp232688 +a(g232685 +g232687 +S'make' +p232689 +tp232690 +a(g232687 +g232689 +S'no' +p232691 +tp232692 +a(g232689 +g232691 +S'explicit' +p232693 +tp232694 +a(g232691 +g232693 +S'mention' +p232695 +tp232696 +a(g232693 +g232695 +S'of' +p232697 +tp232698 +a(g232695 +g232697 +S'either' +p232699 +tp232700 +a(g232697 +g232699 +S'work' +p232701 +tp232702 +a(g232699 +g232701 +S'in' +p232703 +tp232704 +a(g232701 +g232703 +S'his' +p232705 +tp232706 +a(g232703 +g232705 +S'correspondence.' +p232707 +tp232708 +a(g232705 +g232707 +S'it' +p232709 +tp232710 +a(g232707 +g232709 +S'has' +p232711 +tp232712 +a(g232709 +g232711 +S'been' +p232713 +tp232714 +a(g232711 +g232713 +S'suggested,' +p232715 +tp232716 +a(g232713 +g232715 +S'however,' +p232717 +tp232718 +a(g232715 +g232717 +S'that' +p232719 +tp232720 +a(g232717 +g232719 +S'these' +p232721 +tp232722 +a(g232719 +g232721 +S'paintings' +p232723 +tp232724 +a(g232721 +g232723 +S'are' +p232725 +tp232726 +a(g232723 +g232725 +S'the' +p232727 +tp232728 +a(g232725 +g232727 +S'ones' +p232729 +tp232730 +a(g232727 +g232729 +S'bazille' +p232731 +tp232732 +a(g232729 +g232731 +S'referred' +p232733 +tp232734 +a(g232731 +g232733 +S'to' +p232735 +tp232736 +a(g232733 +g232735 +S'as' +p232737 +tp232738 +a(g232735 +g232737 +S'"suzanne\xe2\x80\x99s' +p232739 +tp232740 +a(g232737 +g232739 +S'flowers"' +p232741 +tp232742 +a(g232739 +g232741 +S'in' +p232743 +tp232744 +a(g232741 +g232743 +S'several' +p232745 +tp232746 +a(g232743 +g232745 +S'letters' +p232747 +tp232748 +a(g232745 +g232747 +S'written' +p232749 +tp232750 +a(g232747 +g232749 +S'between' +p232751 +tp232752 +a(g232749 +g232751 +S'january' +p232753 +tp232754 +a(g232751 +g232753 +S'and' +p232755 +tp232756 +a(g232753 +g232755 +S'may' +p232757 +tp232758 +a(g232755 +g232757 +S'1870.' +p232759 +tp232760 +a(g232757 +g232759 +S'young' +p232761 +tp232762 +a(g232759 +g232761 +S'woman' +p232763 +tp232764 +a(g232761 +g232763 +S'with' +p232765 +tp232766 +a(g232763 +g232765 +S'peonies' +p232767 +tp232768 +a(g232765 +g232767 +S'(text' +p232769 +tp232770 +a(g232767 +g232769 +S'by' +p232771 +tp232772 +a(g232769 +g232771 +S'kimberly' +p232773 +tp232774 +a(g232771 +g232773 +S'jones,' +p232775 +tp232776 +a(g232773 +g232775 +S'notes' +p232777 +tp232778 +a(g232775 +g232777 +S'boudin,' +p232779 +tp232780 +a(g232777 +g232779 +S'twenty' +p232781 +tp232782 +a(g232779 +g232781 +S'years' +p232783 +tp232784 +a(g232781 +g232783 +S'older' +p232785 +tp232786 +a(g232783 +g232785 +S'than' +p232787 +tp232788 +a(g232785 +g232787 +S'most' +p232789 +tp232790 +a(g232787 +g232789 +S'of' +p232791 +tp232792 +a(g232789 +g232791 +S'the' +p232793 +tp232794 +a(g232791 +g232793 +S'impressionists,' +p232795 +tp232796 +a(g232793 +g232795 +S'was' +p232797 +tp232798 +a(g232795 +g232797 +S'among' +p232799 +tp232800 +a(g232797 +g232799 +S'the' +p232801 +tp232802 +a(g232799 +g232801 +S'few' +p232803 +tp232804 +a(g232801 +g232803 +S'artists' +p232805 +tp232806 +a(g232803 +g232805 +S'of' +p232807 +tp232808 +a(g232805 +g232807 +S'his' +p232809 +tp232810 +a(g232807 +g232809 +S'generation' +p232811 +tp232812 +a(g232809 +g232811 +S'to' +p232813 +tp232814 +a(g232811 +g232813 +S'insist' +p232815 +tp232816 +a(g232813 +g232815 +S'on' +p232817 +tp232818 +a(g232815 +g232817 +S'painting' +p232819 +tp232820 +a(g232817 +g232819 +S'in' +p232821 +tp232822 +a(g232819 +g232821 +S'the' +p232823 +tp232824 +a(g232821 +g232823 +S'open' +p232825 +tp232826 +a(g232823 +g232825 +S'air,' +p232827 +tp232828 +a(g232825 +g232827 +S'declaring' +p232829 +tp232830 +a(g232827 +g232829 +S'three' +p232831 +tp232832 +a(g232829 +g232831 +S'brushstrokes' +p232833 +tp232834 +a(g232831 +g232833 +S'done' +p232835 +tp232836 +a(g232833 +g232835 +S'outdoors' +p232837 +tp232838 +a(g232835 +g232837 +S'to' +p232839 +tp232840 +a(g232837 +g232839 +S'be' +p232841 +tp232842 +a(g232839 +g232841 +S'of' +p232843 +tp232844 +a(g232841 +g232843 +S'greater' +p232845 +tp232846 +a(g232843 +g232845 +S'value' +p232847 +tp232848 +a(g232845 +g232847 +S'than' +p232849 +tp232850 +a(g232847 +g232849 +S'days' +p232851 +tp232852 +a(g232849 +g232851 +S'spent' +p232853 +tp232854 +a(g232851 +g232853 +S'working' +p232855 +tp232856 +a(g232853 +g232855 +S'in' +p232857 +tp232858 +a(g232855 +g232857 +S'the' +p232859 +tp232860 +a(g232857 +g232859 +S'studio.' +p232861 +tp232862 +a(g232859 +g232861 +S'grains' +p232863 +tp232864 +a(g232861 +g232863 +S'of' +p232865 +tp232866 +a(g232863 +g232865 +S'sand' +p232867 +tp232868 +a(g232865 +g232867 +S'from' +p232869 +tp232870 +a(g232867 +g232869 +S'the' +p232871 +tp232872 +a(g232869 +g232871 +S'beaches' +p232873 +tp232874 +a(g232871 +g232873 +S'where' +p232875 +tp232876 +a(g232873 +g232875 +S'boudin' +p232877 +tp232878 +a(g232875 +g232877 +S'painted' +p232879 +tp232880 +a(g232877 +g232879 +S'still' +p232881 +tp232882 +a(g232879 +g232881 +S'adhere' +p232883 +tp232884 +a(g232881 +g232883 +S'to' +p232885 +tp232886 +a(g232883 +g232885 +S'some' +p232887 +tp232888 +a(g232885 +g232887 +S'of' +p232889 +tp232890 +a(g232887 +g232889 +S'his' +p232891 +tp232892 +a(g232889 +g232891 +S'pictures.' +p232893 +tp232894 +a(g232891 +g232893 +S'at' +p232895 +tp232896 +a(g232893 +g232895 +S'times' +p232897 +tp232898 +a(g232895 +g232897 +S'he' +p232899 +tp232900 +a(g232897 +g232899 +S'was' +p232901 +tp232902 +a(g232899 +g232901 +S'accompanied' +p232903 +tp232904 +a(g232901 +g232903 +S'by' +p232905 +tp232906 +a(g232903 +g232905 +S'the' +p232907 +tp232908 +a(g232905 +g232907 +S'young' +p232909 +tp232910 +a(g232907 +g232909 +S'though' +p232911 +tp232912 +a(g232909 +g232911 +S'boudin' +p232913 +tp232914 +a(g232911 +g232913 +S'believed' +p232915 +tp232916 +a(g232913 +g232915 +S'sincerity' +p232917 +tp232918 +a(g232915 +g232917 +S'was' +p232919 +tp232920 +a(g232917 +g232919 +S'achieved' +p232921 +tp232922 +a(g232919 +g232921 +S'by' +p232923 +tp232924 +a(g232921 +g232923 +S'painting' +p232925 +tp232926 +a(g232923 +g232925 +S'directly' +p232927 +tp232928 +a(g232925 +g232927 +S'from' +p232929 +tp232930 +a(g232927 +g232929 +S'nature,' +p232931 +tp232932 +a(g232929 +g232931 +S'he' +p232933 +tp232934 +a(g232931 +g232933 +S'still' +p232935 +tp232936 +a(g232933 +g232935 +S'made' +p232937 +tp232938 +a(g232935 +g232937 +S'adjustments' +p232939 +tp232940 +a(g232937 +g232939 +S'to' +p232941 +tp232942 +a(g232939 +g232941 +S'his' +p232943 +tp232944 +a(g232941 +g232943 +S'paintings' +p232945 +tp232946 +a(g232943 +g232945 +S'in' +p232947 +tp232948 +a(g232945 +g232947 +S'the' +p232949 +tp232950 +a(g232947 +g232949 +S'studio.' +p232951 +tp232952 +a(g232949 +g232951 +S'"an' +p232953 +tp232954 +a(g232951 +g232953 +S'impression' +p232955 +tp232956 +a(g232953 +g232955 +S'is' +p232957 +tp232958 +a(g232955 +g232957 +S'gained' +p232959 +tp232960 +a(g232957 +g232959 +S'in' +p232961 +tp232962 +a(g232959 +g232961 +S'an' +p232963 +tp232964 +a(g232961 +g232963 +S'instant,"' +p232965 +tp232966 +a(g232963 +g232965 +S'he' +p232967 +tp232968 +a(g232965 +g232967 +S'advised' +p232969 +tp232970 +a(g232967 +g232969 +S'a' +p232971 +tp232972 +a(g232969 +g232971 +S'student,' +p232973 +tp232974 +a(g232971 +g232973 +S'"but' +p232975 +tp232976 +a(g232973 +g232975 +S'it' +p232977 +tp232978 +a(g232975 +g232977 +S'then' +p232979 +tp232980 +a(g232977 +g232979 +S'has' +p232981 +tp232982 +a(g232979 +g232981 +S'to' +p232983 +tp232984 +a(g232981 +g232983 +S'be' +p232985 +tp232986 +a(g232983 +g232985 +S'condensed' +p232987 +tp232988 +a(g232985 +g232987 +S'following' +p232989 +tp232990 +a(g232987 +g232989 +S'the' +p232991 +tp232992 +a(g232989 +g232991 +S'rules' +p232993 +tp232994 +a(g232991 +g232993 +S'of' +p232995 +tp232996 +a(g232993 +g232995 +S'art' +p232997 +tp232998 +a(g232995 +g232997 +S'or' +p232999 +tp233000 +a(g232997 +g232999 +S'rather' +p233001 +tp233002 +a(g232999 +g233001 +S'your' +p233003 +tp233004 +a(g233001 +g233003 +S'own' +p233005 +tp233006 +a(g233003 +g233005 +S'feeling' +p233007 +tp233008 +a(g233005 +g233007 +S'and' +p233009 +tp233010 +a(g233007 +g233009 +S'that' +p233011 +tp233012 +a(g233009 +g233011 +S'is' +p233013 +tp233014 +a(g233011 +g233013 +S'the' +p233015 +tp233016 +a(g233013 +g233015 +S'most' +p233017 +tp233018 +a(g233015 +g233017 +S'difficult' +p233019 +tp233020 +a(g233017 +g233019 +S'thing' +p233021 +tp233022 +a(g233019 +g233021 +S'--' +p233023 +tp233024 +a(g233021 +g233023 +S'to' +p233025 +tp233026 +a(g233023 +g233025 +S'finish' +p233027 +tp233028 +a(g233025 +g233027 +S'a' +p233029 +tp233030 +a(g233027 +g233029 +S'painting' +p233031 +tp233032 +a(g233029 +g233031 +S'without' +p233033 +tp233034 +a(g233031 +g233033 +S'spoiling' +p233035 +tp233036 +a(g233033 +g233035 +S'anything."' +p233037 +tp233038 +a(g233035 +g233037 +S'when' +p233039 +tp233040 +a(g233037 +g233039 +S'boudin' +p233041 +tp233042 +a(g233039 +g233041 +S'began' +p233043 +tp233044 +a(g233041 +g233043 +S'to' +p233045 +tp233046 +a(g233043 +g233045 +S'paint' +p233047 +tp233048 +a(g233045 +g233047 +S'vacationers' +p233049 +tp233050 +a(g233047 +g233049 +S'on' +p233051 +tp233052 +a(g233049 +g233051 +S'the' +p233053 +tp233054 +a(g233051 +g233053 +S'beaches' +p233055 +tp233056 +a(g233053 +g233055 +S'of' +p233057 +tp233058 +a(g233055 +g233057 +S'normandy,' +p233059 +tp233060 +a(g233057 +g233059 +S'his' +p233061 +tp233062 +a(g233059 +g233061 +S'subject' +p233063 +tp233064 +a(g233061 +g233063 +S'was' +p233065 +tp233066 +a(g233063 +g233065 +S'unconventional.' +p233067 +tp233068 +a(g233065 +g233067 +S'seascapes,' +p233069 +tp233070 +a(g233067 +g233069 +S'often' +p233071 +tp233072 +a(g233069 +g233071 +S'populated' +p233073 +tp233074 +a(g233071 +g233073 +S'with' +p233075 +tp233076 +a(g233073 +g233075 +S'small' +p233077 +tp233078 +a(g233075 +g233077 +S'peasant' +p233079 +tp233080 +a(g233077 +g233079 +S'figures' +p233081 +tp233082 +a(g233079 +g233081 +S'or' +p233083 +tp233084 +a(g233081 +g233083 +S'fishermen,' +p233085 +tp233086 +a(g233083 +g233085 +S'still' +p233087 +tp233088 +a(g233085 +g233087 +S'attracted' +p233089 +tp233090 +a(g233087 +g233089 +S'french' +p233091 +tp233092 +a(g233089 +g233091 +S'painters' +p233093 +tp233094 +a(g233091 +g233093 +S'in' +p233095 +tp233096 +a(g233093 +g233095 +S'the' +p233097 +tp233098 +a(g233095 +g233097 +S'mid-1800s.' +p233099 +tp233100 +a(g233097 +g233099 +S'but' +p233101 +tp233102 +a(g233099 +g233101 +S"boudin's" +p233103 +tp233104 +a(g233101 +g233103 +S'images,' +p233105 +tp233106 +a(g233103 +g233105 +S'unlike' +p233107 +tp233108 +a(g233105 +g233107 +S'those' +p233109 +tp233110 +a(g233107 +g233109 +S'of' +p233111 +tp233112 +a(g233109 +g233111 +S'other' +p233113 +tp233114 +a(g233111 +g233113 +S'rustic' +p233115 +tp233116 +a(g233113 +g233115 +S'genre' +p233117 +tp233118 +a(g233115 +g233117 +S'scenes,' +p233119 +tp233120 +a(g233117 +g233119 +S'recorded' +p233121 +tp233122 +a(g233119 +g233121 +S'a' +p233123 +tp233124 +a(g233121 +g233123 +S'new' +p233125 +tp233126 +a(g233123 +g233125 +S'phenomenon,' +p233127 +tp233128 +a(g233125 +g233127 +S'the' +p233129 +tp233130 +a(g233127 +g233129 +S'tourist' +p233131 +tp233132 +a(g233129 +g233131 +S'with' +p233133 +tp233134 +a(g233131 +g233133 +S'money' +p233135 +tp233136 +a(g233133 +g233135 +S'and' +p233137 +tp233138 +a(g233135 +g233137 +S'leisure' +p233139 +tp233140 +a(g233137 +g233139 +S'time.' +p233141 +tp233142 +a(g233139 +g233141 +S'his' +p233143 +tp233144 +a(g233141 +g233143 +S'subjects' +p233145 +tp233146 +a(g233143 +g233145 +S'were' +p233147 +tp233148 +a(g233145 +g233147 +S'also' +p233149 +tp233150 +a(g233147 +g233149 +S'his' +p233151 +tp233152 +a(g233149 +g233151 +S'buyers,' +p233153 +tp233154 +a(g233151 +g233153 +S'and' +p233155 +tp233156 +a(g233153 +g233155 +S'he' +p233157 +tp233158 +a(g233155 +g233157 +S'satisfied' +p233159 +tp233160 +a(g233157 +g233159 +S'them' +p233161 +tp233162 +a(g233159 +g233161 +S'by' +p233163 +tp233164 +a(g233161 +g233163 +S'producing' +p233165 +tp233166 +a(g233163 +g233165 +S'more' +p233167 +tp233168 +a(g233165 +g233167 +S'than' +p233169 +tp233170 +a(g233167 +g233169 +S'four' +p233171 +tp233172 +a(g233169 +g233171 +S'thousand' +p233173 +tp233174 +a(g233171 +g233173 +S'paintings' +p233175 +tp233176 +a(g233173 +g233175 +S'like' +p233177 +tp233178 +a(g233175 +g233177 +S'this' +p233179 +tp233180 +a(g233177 +g233179 +S'one.' +p233181 +tp233182 +a(g233179 +g233181 +S"boudin's" +p233183 +tp233184 +a(g233181 +g233183 +S'beach' +p233185 +tp233186 +a(g233183 +g233185 +S'scenes,' +p233187 +tp233188 +a(g233185 +g233187 +S'though' +p233189 +tp233190 +a(g233187 +g233189 +S'crowded,' +p233191 +tp233192 +a(g233189 +g233191 +S'lack' +p233193 +tp233194 +a(g233191 +g233193 +S'obvious' +p233195 +tp233196 +a(g233193 +g233195 +S'narrative' +p233197 +tp233198 +a(g233195 +g233197 +S'or' +p233199 +tp233200 +a(g233197 +g233199 +S'anecdote.' +p233201 +tp233202 +a(g233199 +g233201 +S'he' +p233203 +tp233204 +a(g233201 +g233203 +S'characterized' +p233205 +tp233206 +a(g233203 +g233205 +S'not' +p233207 +tp233208 +a(g233205 +g233207 +S'individuals,' +p233209 +tp233210 +a(g233207 +g233209 +S'but' +p233211 +tp233212 +a(g233209 +g233211 +S'the' +p233213 +tp233214 +a(g233211 +g233213 +S'bourgeoisie' +p233215 +tp233216 +a(g233213 +g233215 +S'and' +p233217 +tp233218 +a(g233215 +g233217 +S'their' +p233219 +tp233220 +a(g233217 +g233219 +S'postures' +p233221 +tp233222 +a(g233219 +g233221 +S'and' +p233223 +tp233224 +a(g233221 +g233223 +S'fashions,' +p233225 +tp233226 +a(g233223 +g233225 +S'including' +p233227 +tp233228 +a(g233225 +g233227 +S'the' +p233229 +tp233230 +a(g233227 +g233229 +S'huge' +p233231 +tp233232 +a(g233229 +g233231 +S'crinolines' +p233233 +tp233234 +a(g233231 +g233233 +S'that' +p233235 +tp233236 +a(g233233 +g233235 +S'in' +p233237 +tp233238 +a(g233235 +g233237 +S'high' +p233239 +tp233240 +a(g233237 +g233239 +S'winds' +p233241 +tp233242 +a(g233239 +g233241 +S'occasionally' +p233243 +tp233244 +a(g233241 +g233243 +S'sent' +p233245 +tp233246 +a(g233243 +g233245 +S'women' +p233247 +tp233248 +a(g233245 +g233247 +S'over' +p233249 +tp233250 +a(g233247 +g233249 +S'cliffs' +p233251 +tp233252 +a(g233249 +g233251 +S'or' +p233253 +tp233254 +a(g233251 +g233253 +S'into' +p233255 +tp233256 +a(g233253 +g233255 +S'carriage' +p233257 +tp233258 +a(g233255 +g233257 +S'wheels.' +p233259 +tp233260 +a(g233257 +g233259 +S'like' +p233261 +tp233262 +a(g233259 +g233261 +S'the' +p233263 +tp233264 +a(g233261 +g233263 +S'plume' +p233265 +tp233266 +a(g233263 +g233265 +S'of' +p233267 +tp233268 +a(g233265 +g233267 +S'smoke' +p233269 +tp233270 +a(g233267 +g233269 +S'issuing' +p233271 +tp233272 +a(g233269 +g233271 +S'from' +p233273 +tp233274 +a(g233271 +g233273 +S'a' +p233275 +tp233276 +a(g233273 +g233275 +S'steamer,' +p233277 +tp233278 +a(g233275 +g233277 +S'the' +p233279 +tp233280 +a(g233277 +g233279 +S'anonymity' +p233281 +tp233282 +a(g233279 +g233281 +S'of' +p233283 +tp233284 +a(g233281 +g233283 +S'the' +p233285 +tp233286 +a(g233283 +g233285 +S'figures' +p233287 +tp233288 +a(g233285 +g233287 +S'imparts' +p233289 +tp233290 +a(g233287 +g233289 +S'a' +p233291 +tp233292 +a(g233289 +g233291 +S'sense' +p233293 +tp233294 +a(g233291 +g233293 +S'of' +p233295 +tp233296 +a(g233293 +g233295 +S'modern' +p233297 +tp233298 +a(g233295 +g233297 +S'life.' +p233299 +tp233300 +a(g233297 +g233299 +S'boudin' +p233301 +tp233302 +a(g233299 +g233301 +S'seems' +p233303 +tp233304 +a(g233301 +g233303 +S'to' +p233305 +tp233306 +a(g233303 +g233305 +S'have' +p233307 +tp233308 +a(g233305 +g233307 +S'been' +p233309 +tp233310 +a(g233307 +g233309 +S'a' +p233311 +tp233312 +a(g233309 +g233311 +S'bit' +p233313 +tp233314 +a(g233311 +g233313 +S'ambivalent' +p233315 +tp233316 +a(g233313 +g233315 +S'about' +p233317 +tp233318 +a(g233315 +g233317 +S'his' +p233319 +tp233320 +a(g233317 +g233319 +S'subjects.' +p233321 +tp233322 +a(g233319 +g233321 +S'at' +p233323 +tp233324 +a(g233321 +g233323 +S'times' +p233325 +tp233326 +a(g233323 +g233325 +S'he' +p233327 +tp233328 +a(g233325 +g233327 +S'defended' +p233329 +tp233330 +a(g233327 +g233329 +S'them,' +p233331 +tp233332 +a(g233329 +g233331 +S'but' +p233333 +tp233334 +a(g233331 +g233333 +S'he' +p233335 +tp233336 +a(g233333 +g233335 +S'also' +p233337 +tp233338 +a(g233335 +g233337 +S'dismissed' +p233339 +tp233340 +a(g233337 +g233339 +S'them' +p233341 +tp233342 +a(g233339 +g233341 +S'as' +p233343 +tp233344 +a(g233341 +g233343 +S'"gilded' +p233345 +tp233346 +a(g233343 +g233345 +S'parasites,"' +p233347 +tp233348 +a(g233345 +g233347 +S'to' +p233349 +tp233350 +a(g233347 +g233349 +S'insist' +p233351 +tp233352 +a(g233349 +g233351 +S'that' +p233353 +tp233354 +a(g233351 +g233353 +S'his' +p233355 +tp233356 +a(g233353 +g233355 +S'true' +p233357 +tp233358 +a(g233355 +g233357 +S'subjects' +p233359 +tp233360 +a(g233357 +g233359 +S'were' +p233361 +tp233362 +a(g233359 +g233361 +S'light' +p233363 +tp233364 +a(g233361 +g233363 +S'and' +p233365 +tp233366 +a(g233363 +g233365 +S'color.' +p233367 +tp233368 +a(g233365 +g233367 +S'devoted' +p233369 +tp233370 +a(g233367 +g233369 +S'to' +p233371 +tp233372 +a(g233369 +g233371 +S'painting' +p233373 +tp233374 +a(g233371 +g233373 +S'subjects' +p233375 +tp233376 +a(g233373 +g233375 +S'of' +p233377 +tp233378 +a(g233375 +g233377 +S'modern' +p233379 +tp233380 +a(g233377 +g233379 +S'life,' +p233381 +tp233382 +a(g233379 +g233381 +S'the' +p233383 +tp233384 +a(g233381 +g233383 +S'impressionists' +p233385 +tp233386 +a(g233383 +g233385 +S'were' +p233387 +tp233388 +a(g233385 +g233387 +S'committed' +p233389 +tp233390 +a(g233387 +g233389 +S'to' +p233391 +tp233392 +a(g233389 +g233391 +S'rendering' +p233393 +tp233394 +a(g233391 +g233393 +S'direct' +p233395 +tp233396 +a(g233393 +g233395 +S'experiences' +p233397 +tp233398 +a(g233395 +g233397 +S'as' +p233399 +tp233400 +a(g233397 +g233399 +S'opposed' +p233401 +tp233402 +a(g233399 +g233401 +S'to' +p233403 +tp233404 +a(g233401 +g233403 +S'literary' +p233405 +tp233406 +a(g233403 +g233405 +S'subjects.' +p233407 +tp233408 +a(g233405 +g233407 +S'much' +p233409 +tp233410 +a(g233407 +g233409 +S'of' +p233411 +tp233412 +a(g233409 +g233411 +S'their' +p233413 +tp233414 +a(g233411 +g233413 +S'work' +p233415 +tp233416 +a(g233413 +g233415 +S'focuses' +p233417 +tp233418 +a(g233415 +g233417 +S'on' +p233419 +tp233420 +a(g233417 +g233419 +S'life' +p233421 +tp233422 +a(g233419 +g233421 +S'out' +p233423 +tp233424 +a(g233421 +g233423 +S'in' +p233425 +tp233426 +a(g233423 +g233425 +S'the' +p233427 +tp233428 +a(g233425 +g233427 +S'modern' +p233429 +tp233430 +a(g233427 +g233429 +S'metropolis,' +p233431 +tp233432 +a(g233429 +g233431 +S'as' +p233433 +tp233434 +a(g233431 +g233433 +S'well' +p233435 +tp233436 +a(g233433 +g233435 +S'as' +p233437 +tp233438 +a(g233435 +g233437 +S'on' +p233439 +tp233440 +a(g233437 +g233439 +S'quotidian' +p233441 +tp233442 +a(g233439 +g233441 +S'activities' +p233443 +tp233444 +a(g233441 +g233443 +S'within' +p233445 +tp233446 +a(g233443 +g233445 +S'the' +p233447 +tp233448 +a(g233445 +g233447 +S'home.' +p233449 +tp233450 +a(g233447 +g233449 +S'cassatt' +p233451 +tp233452 +a(g233449 +g233451 +S'specialized' +p233453 +tp233454 +a(g233451 +g233453 +S'in' +p233455 +tp233456 +a(g233453 +g233455 +S'scenes' +p233457 +tp233458 +a(g233455 +g233457 +S'depicting' +p233459 +tp233460 +a(g233457 +g233459 +S'women' +p233461 +tp233462 +a(g233459 +g233461 +S'in' +p233463 +tp233464 +a(g233461 +g233463 +S'their' +p233465 +tp233466 +a(g233463 +g233465 +S'traditional' +p233467 +tp233468 +a(g233465 +g233467 +S'role' +p233469 +tp233470 +a(g233467 +g233469 +S'as' +p233471 +tp233472 +a(g233469 +g233471 +S'caregivers,' +p233473 +tp233474 +a(g233471 +g233473 +S'particularly' +p233475 +tp233476 +a(g233473 +g233475 +S'of' +p233477 +tp233478 +a(g233475 +g233477 +S'children,' +p233479 +tp233480 +a(g233477 +g233479 +S'and' +p233481 +tp233482 +a(g233479 +g233481 +S'she' +p233483 +tp233484 +a(g233481 +g233483 +S'invested' +p233485 +tp233486 +a(g233483 +g233485 +S'relatively' +p233487 +tp233488 +a(g233485 +g233487 +S'quiet' +p233489 +tp233490 +a(g233487 +g233489 +S'and' +p233491 +tp233492 +a(g233489 +g233491 +S'unexceptional' +p233493 +tp233494 +a(g233491 +g233493 +S'moments' +p233495 +tp233496 +a(g233493 +g233495 +S'with' +p233497 +tp233498 +a(g233495 +g233497 +S'considerable' +p233499 +tp233500 +a(g233497 +g233499 +S'dynamism' +p233501 +tp233502 +a(g233499 +g233501 +S'in' +p233503 +tp233504 +a(g233501 +g233503 +S'handling' +p233505 +tp233506 +a(g233503 +g233505 +S'and' +p233507 +tp233508 +a(g233505 +g233507 +S'composition.' +p233509 +tp233510 +a(g233507 +g233509 +S'cassatt\xe2\x80\x99s' +p233511 +tp233512 +a(g233509 +g233511 +S'lack' +p233513 +tp233514 +a(g233511 +g233513 +S'of' +p233515 +tp233516 +a(g233513 +g233515 +S'convention' +p233517 +tp233518 +a(g233515 +g233517 +S'and' +p233519 +tp233520 +a(g233517 +g233519 +S'sentiment' +p233521 +tp233522 +a(g233519 +g233521 +S'in' +p233523 +tp233524 +a(g233521 +g233523 +S'portraying' +p233525 +tp233526 +a(g233523 +g233525 +S'children' +p233527 +tp233528 +a(g233525 +g233527 +S'earned' +p233529 +tp233530 +a(g233527 +g233529 +S'her' +p233531 +tp233532 +a(g233529 +g233531 +S'both' +p233533 +tp233534 +a(g233531 +g233533 +S'praise' +p233535 +tp233536 +a(g233533 +g233535 +S'and' +p233537 +tp233538 +a(g233535 +g233537 +S'criticism.' +p233539 +tp233540 +a(g233537 +g233539 +S'although' +p233541 +tp233542 +a(g233539 +g233541 +S'she' +p233543 +tp233544 +a(g233541 +g233543 +S'explored' +p233545 +tp233546 +a(g233543 +g233545 +S'a' +p233547 +tp233548 +a(g233545 +g233547 +S'subject' +p233549 +tp233550 +a(g233547 +g233549 +S'considered' +p233551 +tp233552 +a(g233549 +g233551 +S'the' +p233553 +tp233554 +a(g233551 +g233553 +S'express' +p233555 +tp233556 +a(g233553 +g233555 +S'domain' +p233557 +tp233558 +a(g233555 +g233557 +S'of' +p233559 +tp233560 +a(g233557 +g233559 +S'women' +p233561 +tp233562 +a(g233559 +g233561 +S'artists,' +p233563 +tp233564 +a(g233561 +g233563 +S'her' +p233565 +tp233566 +a(g233563 +g233565 +S'approach' +p233567 +tp233568 +a(g233565 +g233567 +S'was' +p233569 +tp233570 +a(g233567 +g233569 +S'considered' +p233571 +tp233572 +a(g233569 +g233571 +S'atypical' +p233573 +tp233574 +a(g233571 +g233573 +S'and' +p233575 +tp233576 +a(g233573 +g233575 +S'did' +p233577 +tp233578 +a(g233575 +g233577 +S'not' +p233579 +tp233580 +a(g233577 +g233579 +S'go' +p233581 +tp233582 +a(g233579 +g233581 +S'unnoticed.' +p233583 +tp233584 +a(g233581 +g233583 +S'critics' +p233585 +tp233586 +a(g233583 +g233585 +S'remarked' +p233587 +tp233588 +a(g233585 +g233587 +S'upon' +p233589 +tp233590 +a(g233587 +g233589 +S'the' +p233591 +tp233592 +a(g233589 +g233591 +S'apparent' +p233593 +tp233594 +a(g233591 +g233593 +S'disconnect' +p233595 +tp233596 +a(g233593 +g233595 +S'between' +p233597 +tp233598 +a(g233595 +g233597 +S'her' +p233599 +tp233600 +a(g233597 +g233599 +S'technique' +p233601 +tp233602 +a(g233599 +g233601 +S'and' +p233603 +tp233604 +a(g233601 +g233603 +S'her' +p233605 +tp233606 +a(g233603 +g233605 +S'gender' +p233607 +tp233608 +a(g233605 +g233607 +S'by' +p233609 +tp233610 +a(g233607 +g233609 +S'using' +p233611 +tp233612 +a(g233609 +g233611 +S'masculine' +p233613 +tp233614 +a(g233611 +g233613 +S'terms' +p233615 +tp233616 +a(g233613 +g233615 +S'such' +p233617 +tp233618 +a(g233615 +g233617 +S'as' +p233619 +tp233620 +a(g233617 +g233619 +S'"strong"' +p233621 +tp233622 +a(g233619 +g233621 +S'and' +p233623 +tp233624 +a(g233621 +g233623 +S'"virile"' +p233625 +tp233626 +a(g233623 +g233625 +S'to' +p233627 +tp233628 +a(g233625 +g233627 +S'describe' +p233629 +tp233630 +a(g233627 +g233629 +S'her' +p233631 +tp233632 +a(g233629 +g233631 +S'work.' +p233633 +tp233634 +a(g233631 +g233633 +S'child' +p233635 +tp233636 +a(g233633 +g233635 +S'in' +p233637 +tp233638 +a(g233635 +g233637 +S'a' +p233639 +tp233640 +a(g233637 +g233639 +S'straw' +p233641 +tp233642 +a(g233639 +g233641 +S'hat' +p233643 +tp233644 +a(g233641 +g233643 +S'while' +p233645 +tp233646 +a(g233643 +g233645 +S'the' +p233647 +tp233648 +a(g233645 +g233647 +S'subject' +p233649 +tp233650 +a(g233647 +g233649 +S'matter' +p233651 +tp233652 +a(g233649 +g233651 +S'captures' +p233653 +tp233654 +a(g233651 +g233653 +S'a' +p233655 +tp233656 +a(g233653 +g233655 +S'languid' +p233657 +tp233658 +a(g233655 +g233657 +S'moment,' +p233659 +tp233660 +a(g233657 +g233659 +S'the' +p233661 +tp233662 +a(g233659 +g233661 +S'paint' +p233663 +tp233664 +a(g233661 +g233663 +S'is' +p233665 +tp233666 +a(g233663 +g233665 +S'handled' +p233667 +tp233668 +a(g233665 +g233667 +S'in' +p233669 +tp233670 +a(g233667 +g233669 +S'a' +p233671 +tp233672 +a(g233669 +g233671 +S'dynamic' +p233673 +tp233674 +a(g233671 +g233673 +S'fashion.' +p233675 +tp233676 +a(g233673 +g233675 +S'broad,' +p233677 +tp233678 +a(g233675 +g233677 +S'visible' +p233679 +tp233680 +a(g233677 +g233679 +S'brushstrokes' +p233681 +tp233682 +a(g233679 +g233681 +S'are' +p233683 +tp233684 +a(g233681 +g233683 +S'used' +p233685 +tp233686 +a(g233683 +g233685 +S'throughout' +p233687 +tp233688 +a(g233685 +g233687 +S'the' +p233689 +tp233690 +a(g233687 +g233689 +S'entire' +p233691 +tp233692 +a(g233689 +g233691 +S'composition,' +p233693 +tp233694 +a(g233691 +g233693 +S'forming' +p233695 +tp233696 +a(g233693 +g233695 +S'abstract' +p233697 +tp233698 +a(g233695 +g233697 +S'patterns' +p233699 +tp233700 +a(g233697 +g233699 +S'in' +p233701 +tp233702 +a(g233699 +g233701 +S'some' +p233703 +tp233704 +a(g233701 +g233703 +S'areas,' +p233705 +tp233706 +a(g233703 +g233705 +S'such' +p233707 +tp233708 +a(g233705 +g233707 +S'as' +p233709 +tp233710 +a(g233707 +g233709 +S'the' +p233711 +tp233712 +a(g233709 +g233711 +S'white' +p233713 +tp233714 +a(g233711 +g233713 +S'sleeves' +p233715 +tp233716 +a(g233713 +g233715 +S'of' +p233717 +tp233718 +a(g233715 +g233717 +S'the' +p233719 +tp233720 +a(g233717 +g233719 +S'blouse' +p233721 +tp233722 +a(g233719 +g233721 +S'and' +p233723 +tp233724 +a(g233721 +g233723 +S'smock.' +p233725 +tp233726 +a(g233723 +g233725 +S'technical' +p233727 +tp233728 +a(g233725 +g233727 +S'analysis' +p233729 +tp233730 +a(g233727 +g233729 +S'indicates' +p233731 +tp233732 +a(g233729 +g233731 +S'that' +p233733 +tp233734 +a(g233731 +g233733 +S'the' +p233735 +tp233736 +a(g233733 +g233735 +S'paint' +p233737 +tp233738 +a(g233735 +g233737 +S'was' +p233739 +tp233740 +a(g233737 +g233739 +S'applied' +p233741 +tp233742 +a(g233739 +g233741 +S'quickly' +p233743 +tp233744 +a(g233741 +g233743 +S'and' +p233745 +tp233746 +a(g233743 +g233745 +S'directly' +p233747 +tp233748 +a(g233745 +g233747 +S'to' +p233749 +tp233750 +a(g233747 +g233749 +S'the' +p233751 +tp233752 +a(g233749 +g233751 +S'canvas,' +p233753 +tp233754 +a(g233751 +g233753 +S'in' +p233755 +tp233756 +a(g233753 +g233755 +S'a' +p233757 +tp233758 +a(g233755 +g233757 +S'manner' +p233759 +tp233760 +a(g233757 +g233759 +S'referred' +p233761 +tp233762 +a(g233759 +g233761 +S'to' +p233763 +tp233764 +a(g233761 +g233763 +S'as' +p233765 +tp233766 +a(g233763 +g233765 +S'possessing' +p233767 +tp233768 +a(g233765 +g233767 +S'a' +p233769 +tp233770 +a(g233767 +g233769 +S'natural' +p233771 +tp233772 +a(g233769 +g233771 +S'"talent' +p233773 +tp233774 +a(g233771 +g233773 +S'for' +p233775 +tp233776 +a(g233773 +g233775 +S'likenesses,"' +p233777 +tp233778 +a(g233775 +g233777 +S'cassatt' +p233779 +tp233780 +a(g233777 +g233779 +S'could' +p233781 +tp233782 +a(g233779 +g233781 +S'expound' +p233783 +tp233784 +a(g233781 +g233783 +S'upon' +p233785 +tp233786 +a(g233783 +g233785 +S'both' +p233787 +tp233788 +a(g233785 +g233787 +S'the' +p233789 +tp233790 +a(g233787 +g233789 +S'traditional' +p233791 +tp233792 +a(g233789 +g233791 +S'and' +p233793 +tp233794 +a(g233791 +g233793 +S'more' +p233795 +tp233796 +a(g233793 +g233795 +S'modern,' +p233797 +tp233798 +a(g233795 +g233797 +S'formal' +p233799 +tp233800 +a(g233797 +g233799 +S'qualities' +p233801 +tp233802 +a(g233799 +g233801 +S'of' +p233803 +tp233804 +a(g233801 +g233803 +S'portraiture.' +p233805 +tp233806 +a(g233803 +g233805 +S'(text' +p233807 +tp233808 +a(g233805 +g233807 +S'by' +p233809 +tp233810 +a(g233807 +g233809 +S'michelle' +p233811 +tp233812 +a(g233809 +g233811 +S'bird,' +p233813 +tp233814 +a(g233811 +g233813 +S'notes' +p233815 +tp233816 +a(g233813 +g233815 +S'during' +p233817 +tp233818 +a(g233815 +g233817 +S'her' +p233819 +tp233820 +a(g233817 +g233819 +S'travels' +p233821 +tp233822 +a(g233819 +g233821 +S'in' +p233823 +tp233824 +a(g233821 +g233823 +S'italy,' +p233825 +tp233826 +a(g233823 +g233825 +S'spain,' +p233827 +tp233828 +a(g233825 +g233827 +S'and' +p233829 +tp233830 +a(g233827 +g233829 +S'the' +p233831 +tp233832 +a(g233829 +g233831 +S'netherlands' +p233833 +tp233834 +a(g233831 +g233833 +S'mary' +p233835 +tp233836 +a(g233833 +g233835 +S'cassatt' +p233837 +tp233838 +a(g233835 +g233837 +S'encountered' +p233839 +tp233840 +a(g233837 +g233839 +S'and' +p233841 +tp233842 +a(g233839 +g233841 +S'was' +p233843 +tp233844 +a(g233841 +g233843 +S'deeply' +p233845 +tp233846 +a(g233843 +g233845 +S'moved' +p233847 +tp233848 +a(g233845 +g233847 +S'by' +p233849 +tp233850 +a(g233847 +g233849 +S'the' +p233851 +tp233852 +a(g233849 +g233851 +S'art' +p233853 +tp233854 +a(g233851 +g233853 +S'of' +p233855 +tp233856 +a(g233853 +g233855 +S'the' +p233857 +tp233858 +a(g233855 +g233857 +S'european' +p233859 +tp233860 +a(g233857 +g233859 +S'old' +p233861 +tp233862 +a(g233859 +g233861 +S'masters—the' +p233863 +tp233864 +a(g233861 +g233863 +S'tenderness' +p233865 +tp233866 +a(g233863 +g233865 +S'depicted' +p233867 +tp233868 +a(g233865 +g233867 +S'in' +p233869 +tp233870 +a(g233867 +g233869 +S'correggio\xe2\x80\x99s' +p233871 +tp233872 +a(g233869 +g233871 +S'madonna' +p233873 +tp233874 +a(g233871 +g233873 +S'and' +p233875 +tp233876 +a(g233873 +g233875 +S'child' +p233877 +tp233878 +a(g233875 +g233877 +S'paintings,' +p233879 +tp233880 +a(g233877 +g233879 +S'the' +p233881 +tp233882 +a(g233879 +g233881 +S'expressive' +p233883 +tp233884 +a(g233881 +g233883 +S'and' +p233885 +tp233886 +a(g233883 +g233885 +S'sketchy' +p233887 +tp233888 +a(g233885 +g233887 +S'brushstroke' +p233889 +tp233890 +a(g233887 +g233889 +S'of' +p233891 +tp233892 +a(g233889 +g233891 +S'diego' +p233893 +tp233894 +a(g233891 +g233893 +S'velázquez,' +p233895 +tp233896 +a(g233893 +g233895 +S'and' +p233897 +tp233898 +a(g233895 +g233897 +S'the' +p233899 +tp233900 +a(g233897 +g233899 +S'realism' +p233901 +tp233902 +a(g233899 +g233901 +S'of' +p233903 +tp233904 +a(g233901 +g233903 +S'the' +p233905 +tp233906 +a(g233903 +g233905 +S'domestic' +p233907 +tp233908 +a(g233905 +g233907 +S'genre' +p233909 +tp233910 +a(g233907 +g233909 +S'scenes' +p233911 +tp233912 +a(g233909 +g233911 +S'of' +p233913 +tp233914 +a(g233911 +g233913 +S'the' +p233915 +tp233916 +a(g233913 +g233915 +S'dutch' +p233917 +tp233918 +a(g233915 +g233917 +S'golden' +p233919 +tp233920 +a(g233917 +g233919 +S'age.' +p233921 +tp233922 +a(g233919 +g233921 +S'by' +p233923 +tp233924 +a(g233921 +g233923 +S'the' +p233925 +tp233926 +a(g233923 +g233925 +S'time' +p233927 +tp233928 +a(g233925 +g233927 +S'she' +p233929 +tp233930 +a(g233927 +g233929 +S'settled' +p233931 +tp233932 +a(g233929 +g233931 +S'in' +p233933 +tp233934 +a(g233931 +g233933 +S'paris' +p233935 +tp233936 +a(g233933 +g233935 +S'in' +p233937 +tp233938 +a(g233935 +g233937 +S'1874,' +p233939 +tp233940 +a(g233937 +g233939 +S'she' +p233941 +tp233942 +a(g233939 +g233941 +S'had' +p233943 +tp233944 +a(g233941 +g233943 +S'become' +p233945 +tp233946 +a(g233943 +g233945 +S'a' +p233947 +tp233948 +a(g233945 +g233947 +S'mature' +p233949 +tp233950 +a(g233947 +g233949 +S'artist' +p233951 +tp233952 +a(g233949 +g233951 +S'with' +p233953 +tp233954 +a(g233951 +g233953 +S'more' +p233955 +tp233956 +a(g233953 +g233955 +S'than' +p233957 +tp233958 +a(g233955 +g233957 +S'a' +p233959 +tp233960 +a(g233957 +g233959 +S'decade' +p233961 +tp233962 +a(g233959 +g233961 +S'of' +p233963 +tp233964 +a(g233961 +g233963 +S'experience' +p233965 +tp233966 +a(g233963 +g233965 +S'behind' +p233967 +tp233968 +a(g233965 +g233967 +S'her.' +p233969 +tp233970 +a(g233967 +g233969 +S'in' +p233971 +tp233972 +a(g233969 +g233971 +S'paris,' +p233973 +tp233974 +a(g233971 +g233973 +S'cassatt' +p233975 +tp233976 +a(g233973 +g233975 +S'established' +p233977 +tp233978 +a(g233975 +g233977 +S'her' +p233979 +tp233980 +a(g233977 +g233979 +S'artistic' +p233981 +tp233982 +a(g233979 +g233981 +S'reputation' +p233983 +tp233984 +a(g233981 +g233983 +S'by' +p233985 +tp233986 +a(g233983 +g233985 +S'showing' +p233987 +tp233988 +a(g233985 +g233987 +S'her' +p233989 +tp233990 +a(g233987 +g233989 +S'work' +p233991 +tp233992 +a(g233989 +g233991 +S'in' +p233993 +tp233994 +a(g233991 +g233993 +S'the' +p233995 +tp233996 +a(g233993 +g233995 +S'salon.' +p233997 +tp233998 +a(g233995 +g233997 +S'her' +p233999 +tp234000 +a(g233997 +g233999 +S'career' +p234001 +tp234002 +a(g233999 +g234001 +S'would' +p234003 +tp234004 +a(g234001 +g234003 +S'take' +p234005 +tp234006 +a(g234003 +g234005 +S'a' +p234007 +tp234008 +a(g234005 +g234007 +S'dramatic' +p234009 +tp234010 +a(g234007 +g234009 +S'turn,' +p234011 +tp234012 +a(g234009 +g234011 +S'however,' +p234013 +tp234014 +a(g234011 +g234013 +S'following' +p234015 +tp234016 +a(g234013 +g234015 +S'an' +p234017 +tp234018 +a(g234015 +g234017 +S'encounter' +p234019 +tp234020 +a(g234017 +g234019 +S'with' +p234021 +tp234022 +a(g234019 +g234021 +S'a' +p234023 +tp234024 +a(g234021 +g234023 +S'group' +p234025 +tp234026 +a(g234023 +g234025 +S'of' +p234027 +tp234028 +a(g234025 +g234027 +S'pastels' +p234029 +tp234030 +a(g234027 +g234029 +S'by' +p234031 +tp234032 +a(g234029 +g234031 +S'edgar' +p234033 +tp234034 +a(g234031 +g234033 +S'degas' +p234035 +tp234036 +a(g234033 +g234035 +S'in' +p234037 +tp234038 +a(g234035 +g234037 +S'a' +p234039 +tp234040 +a(g234037 +g234039 +S'shop' +p234041 +tp234042 +a(g234039 +g234041 +S'window' +p234043 +tp234044 +a(g234041 +g234043 +S'in' +p234045 +tp234046 +a(g234043 +g234045 +S'about' +p234047 +tp234048 +a(g234045 +g234047 +S'1877.' +p234049 +tp234050 +a(g234047 +g234049 +S'"i' +p234051 +tp234052 +a(g234049 +g234051 +S'used' +p234053 +tp234054 +a(g234051 +g234053 +S'to' +p234055 +tp234056 +a(g234053 +g234055 +S'go' +p234057 +tp234058 +a(g234055 +g234057 +S'and' +p234059 +tp234060 +a(g234057 +g234059 +S'flatten' +p234061 +tp234062 +a(g234059 +g234061 +S'my' +p234063 +tp234064 +a(g234061 +g234063 +S'nose' +p234065 +tp234066 +a(g234063 +g234065 +S'against' +p234067 +tp234068 +a(g234065 +g234067 +S'that' +p234069 +tp234070 +a(g234067 +g234069 +S'window' +p234071 +tp234072 +a(g234069 +g234071 +S'and' +p234073 +tp234074 +a(g234071 +g234073 +S'absorb' +p234075 +tp234076 +a(g234073 +g234075 +S'all' +p234077 +tp234078 +a(g234075 +g234077 +S'i' +p234079 +tp234080 +a(g234077 +g234079 +S'could' +p234081 +tp234082 +a(g234079 +g234081 +S'of' +p234083 +tp234084 +a(g234081 +g234083 +S'his' +p234085 +tp234086 +a(g234083 +g234085 +S'art.' +p234087 +tp234088 +a(g234085 +g234087 +S'it' +p234089 +tp234090 +a(g234087 +g234089 +S'changed' +p234091 +tp234092 +a(g234089 +g234091 +S'my' +p234093 +tp234094 +a(g234091 +g234093 +S'life.' +p234095 +tp234096 +a(g234093 +g234095 +S'i' +p234097 +tp234098 +a(g234095 +g234097 +S'saw' +p234099 +tp234100 +a(g234097 +g234099 +S'art' +p234101 +tp234102 +a(g234099 +g234101 +S'then' +p234103 +tp234104 +a(g234101 +g234103 +S'as' +p234105 +tp234106 +a(g234103 +g234105 +S'i' +p234107 +tp234108 +a(g234105 +g234107 +S'wanted' +p234109 +tp234110 +a(g234107 +g234109 +S'to' +p234111 +tp234112 +a(g234109 +g234111 +S'see' +p234113 +tp234114 +a(g234111 +g234113 +S'it,"' +p234115 +tp234116 +a(g234113 +g234115 +S'she' +p234117 +tp234118 +a(g234115 +g234117 +S'later' +p234119 +tp234120 +a(g234117 +g234119 +S'recounted.' +p234121 +tp234122 +a(g234119 +g234121 +S'little' +p234123 +tp234124 +a(g234121 +g234123 +S'girl' +p234125 +tp234126 +a(g234123 +g234125 +S'in' +p234127 +tp234128 +a(g234125 +g234127 +S'a' +p234129 +tp234130 +a(g234127 +g234129 +S'blue' +p234131 +tp234132 +a(g234129 +g234131 +S'armchair' +p234133 +tp234134 +a(g234131 +g234133 +S'this' +p234135 +tp234136 +a(g234133 +g234135 +S'painting' +p234137 +tp234138 +a(g234135 +g234137 +S'has' +p234139 +tp234140 +a(g234137 +g234139 +S'been' +p234141 +tp234142 +a(g234139 +g234141 +S'known' +p234143 +tp234144 +a(g234141 +g234143 +S'by' +p234145 +tp234146 +a(g234143 +g234145 +S'a' +p234147 +tp234148 +a(g234145 +g234147 +S'variety' +p234149 +tp234150 +a(g234147 +g234149 +S'of' +p234151 +tp234152 +a(g234149 +g234151 +S'titles' +p234153 +tp234154 +a(g234151 +g234153 +S'throughout' +p234155 +tp234156 +a(g234153 +g234155 +S'the' +p234157 +tp234158 +a(g234155 +g234157 +S'years,' +p234159 +tp234160 +a(g234157 +g234159 +S'including' +p234161 +tp234162 +a(g234159 +g234161 +S'cassatt\xe2\x80\x99s' +p234163 +tp234164 +a(g234161 +g234163 +S'original' +p234165 +tp234166 +a(g234163 +g234165 +S'and' +p234167 +tp234168 +a(g234165 +g234167 +S'somewhat' +p234169 +tp234170 +a(g234167 +g234169 +S'generic' +p234171 +tp234172 +a(g234169 +g234171 +S'cassatt' +p234173 +tp234174 +a(g234171 +g234173 +S'submitted' +p234175 +tp234176 +a(g234173 +g234175 +S'this' +p234177 +tp234178 +a(g234175 +g234177 +S'painting' +p234179 +tp234180 +a(g234177 +g234179 +S'to' +p234181 +tp234182 +a(g234179 +g234181 +S'the' +p234183 +tp234184 +a(g234181 +g234183 +S'paris' +p234185 +tp234186 +a(g234183 +g234185 +S'exposition' +p234187 +tp234188 +a(g234185 +g234187 +S'universelle' +p234189 +tp234190 +a(g234187 +g234189 +S'in' +p234191 +tp234192 +a(g234189 +g234191 +S'1878,' +p234193 +tp234194 +a(g234191 +g234193 +S'and' +p234195 +tp234196 +a(g234193 +g234195 +S'its' +p234197 +tp234198 +a(g234195 +g234197 +S'rejection' +p234199 +tp234200 +a(g234197 +g234199 +S'infuriated' +p234201 +tp234202 +a(g234199 +g234201 +S'her.' +p234203 +tp234204 +a(g234201 +g234203 +S'she' +p234205 +tp234206 +a(g234203 +g234205 +S'reworked' +p234207 +tp234208 +a(g234205 +g234207 +S'the' +p234209 +tp234210 +a(g234207 +g234209 +S'painting' +p234211 +tp234212 +a(g234209 +g234211 +S'with' +p234213 +tp234214 +a(g234211 +g234213 +S'the' +p234215 +tp234216 +a(g234213 +g234215 +S'help' +p234217 +tp234218 +a(g234215 +g234217 +S'of' +p234219 +tp234220 +a(g234217 +g234219 +S'her' +p234221 +tp234222 +a(g234219 +g234221 +S'friend' +p234223 +tp234224 +a(g234221 +g234223 +S'degas' +p234225 +tp234226 +a(g234223 +g234225 +S'and' +p234227 +tp234228 +a(g234225 +g234227 +S'exhibited' +p234229 +tp234230 +a(g234227 +g234229 +S'it' +p234231 +tp234232 +a(g234229 +g234231 +S'along' +p234233 +tp234234 +a(g234231 +g234233 +S'with' +p234235 +tp234236 +a(g234233 +g234235 +S'ten' +p234237 +tp234238 +a(g234235 +g234237 +S'other' +p234239 +tp234240 +a(g234237 +g234239 +S'paintings' +p234241 +tp234242 +a(g234239 +g234241 +S'in' +p234243 +tp234244 +a(g234241 +g234243 +S'her' +p234245 +tp234246 +a(g234243 +g234245 +S'debut' +p234247 +tp234248 +a(g234245 +g234247 +S'exhibition' +p234249 +tp234250 +a(g234247 +g234249 +S'with' +p234251 +tp234252 +a(g234249 +g234251 +S'the' +p234253 +tp234254 +a(g234251 +g234253 +S'impressionists' +p234255 +tp234256 +a(g234253 +g234255 +S'in' +p234257 +tp234258 +a(g234255 +g234257 +S'1879.' +p234259 +tp234260 +a(g234257 +g234259 +S'its' +p234261 +tp234262 +a(g234259 +g234261 +S'acceptance' +p234263 +tp234264 +a(g234261 +g234263 +S'signaled' +p234265 +tp234266 +a(g234263 +g234265 +S'her' +p234267 +tp234268 +a(g234265 +g234267 +S'break' +p234269 +tp234270 +a(g234267 +g234269 +S'with' +p234271 +tp234272 +a(g234269 +g234271 +S'the' +p234273 +tp234274 +a(g234271 +g234273 +S'salon' +p234275 +tp234276 +a(g234273 +g234275 +S'and' +p234277 +tp234278 +a(g234275 +g234277 +S'cemented' +p234279 +tp234280 +a(g234277 +g234279 +S'her' +p234281 +tp234282 +a(g234279 +g234281 +S'connection' +p234283 +tp234284 +a(g234281 +g234283 +S'to' +p234285 +tp234286 +a(g234283 +g234285 +S'this' +p234287 +tp234288 +a(g234285 +g234287 +S'radical' +p234289 +tp234290 +a(g234287 +g234289 +S'group' +p234291 +tp234292 +a(g234289 +g234291 +S'of' +p234293 +tp234294 +a(g234291 +g234293 +S'independents.' +p234295 +tp234296 +a(g234293 +g234295 +S'(text' +p234297 +tp234298 +a(g234295 +g234297 +S'by' +p234299 +tp234300 +a(g234297 +g234299 +S'michelle' +p234301 +tp234302 +a(g234299 +g234301 +S'bird,' +p234303 +tp234304 +a(g234301 +g234303 +S'notes' +p234305 +tp234306 +a(g234303 +g234305 +S'' +p234309 +tp234310 +a(g234307 +g234309 +S'' +p234313 +tp234314 +a(g234311 +g234313 +S'in' +p234315 +tp234316 +a(g234313 +g234315 +S'1886,' +p234317 +tp234318 +a(g234315 +g234317 +S'gauguin' +p234319 +tp234320 +a(g234317 +g234319 +S'made' +p234321 +tp234322 +a(g234319 +g234321 +S'his' +p234323 +tp234324 +a(g234321 +g234323 +S'first' +p234325 +tp234326 +a(g234323 +g234325 +S'excursion' +p234327 +tp234328 +a(g234325 +g234327 +S'to' +p234329 +tp234330 +a(g234327 +g234329 +S'brittany,' +p234331 +tp234332 +a(g234329 +g234331 +S'spending' +p234333 +tp234334 +a(g234331 +g234333 +S'three' +p234335 +tp234336 +a(g234333 +g234335 +S'months' +p234337 +tp234338 +a(g234335 +g234337 +S'in' +p234339 +tp234340 +a(g234337 +g234339 +S'pont-aven,' +p234341 +tp234342 +a(g234339 +g234341 +S'a' +p234343 +tp234344 +a(g234341 +g234343 +S'small' +p234345 +tp234346 +a(g234343 +g234345 +S'farming' +p234347 +tp234348 +a(g234345 +g234347 +S'village' +p234349 +tp234350 +a(g234347 +g234349 +S'near' +p234351 +tp234352 +a(g234349 +g234351 +S'the' +p234353 +tp234354 +a(g234351 +g234353 +S'southern' +p234355 +tp234356 +a(g234353 +g234355 +S'coast' +p234357 +tp234358 +a(g234355 +g234357 +S'that' +p234359 +tp234360 +a(g234357 +g234359 +S'was' +p234361 +tp234362 +a(g234359 +g234361 +S'home' +p234363 +tp234364 +a(g234361 +g234363 +S'to' +p234365 +tp234366 +a(g234363 +g234365 +S'a' +p234367 +tp234368 +a(g234365 +g234367 +S'lively' +p234369 +tp234370 +a(g234367 +g234369 +S'artists\xe2\x80\x99' +p234371 +tp234372 +a(g234369 +g234371 +S'colony.' +p234373 +tp234374 +a(g234371 +g234373 +S'he' +p234375 +tp234376 +a(g234373 +g234375 +S'returned' +p234377 +tp234378 +a(g234375 +g234377 +S'there' +p234379 +tp234380 +a(g234377 +g234379 +S'in' +p234381 +tp234382 +a(g234379 +g234381 +S'1888,' +p234383 +tp234384 +a(g234381 +g234383 +S'staying' +p234385 +tp234386 +a(g234383 +g234385 +S'for' +p234387 +tp234388 +a(g234385 +g234387 +S'close' +p234389 +tp234390 +a(g234387 +g234389 +S'to' +p234391 +tp234392 +a(g234389 +g234391 +S'nine' +p234393 +tp234394 +a(g234391 +g234393 +S'months.' +p234395 +tp234396 +a(g234393 +g234395 +S'gauguin' +p234397 +tp234398 +a(g234395 +g234397 +S'enjoyed' +p234399 +tp234400 +a(g234397 +g234399 +S'the' +p234401 +tp234402 +a(g234399 +g234401 +S'relative' +p234403 +tp234404 +a(g234401 +g234403 +S'isolation' +p234405 +tp234406 +a(g234403 +g234405 +S'and' +p234407 +tp234408 +a(g234405 +g234407 +S'uncomplicated' +p234409 +tp234410 +a(g234407 +g234409 +S'existence' +p234411 +tp234412 +a(g234409 +g234411 +S'of' +p234413 +tp234414 +a(g234411 +g234413 +S'brittany.' +p234415 +tp234416 +a(g234413 +g234415 +S'he' +p234417 +tp234418 +a(g234415 +g234417 +S'wrote' +p234419 +tp234420 +a(g234417 +g234419 +S'to' +p234421 +tp234422 +a(g234419 +g234421 +S'his' +p234423 +tp234424 +a(g234421 +g234423 +S'friend' +p234425 +tp234426 +a(g234423 +g234425 +S'and' +p234427 +tp234428 +a(g234425 +g234427 +S'disciple' +p234429 +tp234430 +a(g234427 +g234429 +S'emile' +p234431 +tp234432 +a(g234429 +g234431 +S'schuffenecker:' +p234433 +tp234434 +a(g234431 +g234433 +S'"i' +p234435 +tp234436 +a(g234433 +g234435 +S'like' +p234437 +tp234438 +a(g234435 +g234437 +S'brittany,' +p234439 +tp234440 +a(g234437 +g234439 +S'it' +p234441 +tp234442 +a(g234439 +g234441 +S'is' +p234443 +tp234444 +a(g234441 +g234443 +S'savage' +p234445 +tp234446 +a(g234443 +g234445 +S'and' +p234447 +tp234448 +a(g234445 +g234447 +S'primitive.' +p234449 +tp234450 +a(g234447 +g234449 +S'the' +p234451 +tp234452 +a(g234449 +g234451 +S'flat' +p234453 +tp234454 +a(g234451 +g234453 +S'sounds' +p234455 +tp234456 +a(g234453 +g234455 +S'of' +p234457 +tp234458 +a(g234455 +g234457 +S'my' +p234459 +tp234460 +a(g234457 +g234459 +S'wooden' +p234461 +tp234462 +a(g234459 +g234461 +S'clogs' +p234463 +tp234464 +a(g234461 +g234463 +S'on' +p234465 +tp234466 +a(g234463 +g234465 +S'the' +p234467 +tp234468 +a(g234465 +g234467 +S'cobblestones,' +p234469 +tp234470 +a(g234467 +g234469 +S'deep,' +p234471 +tp234472 +a(g234469 +g234471 +S'hollow,' +p234473 +tp234474 +a(g234471 +g234473 +S'and' +p234475 +tp234476 +a(g234473 +g234475 +S'powerful,' +p234477 +tp234478 +a(g234475 +g234477 +S'is' +p234479 +tp234480 +a(g234477 +g234479 +S'the' +p234481 +tp234482 +a(g234479 +g234481 +S'note' +p234483 +tp234484 +a(g234481 +g234483 +S'i' +p234485 +tp234486 +a(g234483 +g234485 +S'seek' +p234487 +tp234488 +a(g234485 +g234487 +S'in' +p234489 +tp234490 +a(g234487 +g234489 +S'my' +p234491 +tp234492 +a(g234489 +g234491 +S'painting."' +p234493 +tp234494 +a(g234491 +g234493 +S'breton' +p234495 +tp234496 +a(g234493 +g234495 +S'girls' +p234497 +tp234498 +a(g234495 +g234497 +S'dancing,' +p234499 +tp234500 +a(g234497 +g234499 +S'pont-aven' +p234501 +tp234502 +a(g234499 +g234501 +S'the' +p234503 +tp234504 +a(g234501 +g234503 +S'three' +p234505 +tp234506 +a(g234503 +g234505 +S'girls' +p234507 +tp234508 +a(g234505 +g234507 +S'are' +p234509 +tp234510 +a(g234507 +g234509 +S'shown' +p234511 +tp234512 +a(g234509 +g234511 +S'dancing' +p234513 +tp234514 +a(g234511 +g234513 +S'a' +p234515 +tp234516 +a(g234513 +g234515 +S'gavotte,' +p234517 +tp234518 +a(g234515 +g234517 +S'a' +p234519 +tp234520 +a(g234517 +g234519 +S'distinctive' +p234521 +tp234522 +a(g234519 +g234521 +S'form' +p234523 +tp234524 +a(g234521 +g234523 +S'of' +p234525 +tp234526 +a(g234523 +g234525 +S'folk' +p234527 +tp234528 +a(g234525 +g234527 +S'dance' +p234529 +tp234530 +a(g234527 +g234529 +S'performed' +p234531 +tp234532 +a(g234529 +g234531 +S'by' +p234533 +tp234534 +a(g234531 +g234533 +S'breton' +p234535 +tp234536 +a(g234533 +g234535 +S'peasants.' +p234537 +tp234538 +a(g234535 +g234537 +S'gauguin' +p234539 +tp234540 +a(g234537 +g234539 +S'approached' +p234541 +tp234542 +a(g234539 +g234541 +S'his' +p234543 +tp234544 +a(g234541 +g234543 +S'subject' +p234545 +tp234546 +a(g234543 +g234545 +S'with' +p234547 +tp234548 +a(g234545 +g234547 +S'an' +p234549 +tp234550 +a(g234547 +g234549 +S'almost' +p234551 +tp234552 +a(g234549 +g234551 +S'ethnographic' +p234553 +tp234554 +a(g234551 +g234553 +S'sensibility,' +p234555 +tp234556 +a(g234553 +g234555 +S'particularly' +p234557 +tp234558 +a(g234555 +g234557 +S'in' +p234559 +tp234560 +a(g234557 +g234559 +S'his' +p234561 +tp234562 +a(g234559 +g234561 +S'careful' +p234563 +tp234564 +a(g234561 +g234563 +S'depiction' +p234565 +tp234566 +a(g234563 +g234565 +S'of' +p234567 +tp234568 +a(g234565 +g234567 +S'the' +p234569 +tp234570 +a(g234567 +g234569 +S'girls\xe2\x80\x99' +p234571 +tp234572 +a(g234569 +g234571 +S'traditional' +p234573 +tp234574 +a(g234571 +g234573 +S'costumes.' +p234575 +tp234576 +a(g234573 +g234575 +S'he' +p234577 +tp234578 +a(g234575 +g234577 +S'even' +p234579 +tp234580 +a(g234577 +g234579 +S'went' +p234581 +tp234582 +a(g234579 +g234581 +S'so' +p234583 +tp234584 +a(g234581 +g234583 +S'far' +p234585 +tp234586 +a(g234583 +g234585 +S'as' +p234587 +tp234588 +a(g234585 +g234587 +S'to' +p234589 +tp234590 +a(g234587 +g234589 +S'depict' +p234591 +tp234592 +a(g234589 +g234591 +S'the' +p234593 +tp234594 +a(g234591 +g234593 +S'gauguin' +p234595 +tp234596 +a(g234593 +g234595 +S'arranged' +p234597 +tp234598 +a(g234595 +g234597 +S'for' +p234599 +tp234600 +a(g234597 +g234599 +S'the' +p234601 +tp234602 +a(g234599 +g234601 +S'completed' +p234603 +tp234604 +a(g234601 +g234603 +S'painting' +p234605 +tp234606 +a(g234603 +g234605 +S'to' +p234607 +tp234608 +a(g234605 +g234607 +S'be' +p234609 +tp234610 +a(g234607 +g234609 +S'sent' +p234611 +tp234612 +a(g234609 +g234611 +S'to' +p234613 +tp234614 +a(g234611 +g234613 +S'theo' +p234615 +tp234616 +a(g234613 +g234615 +S'van' +p234617 +tp234618 +a(g234615 +g234617 +S'gogh,' +p234619 +tp234620 +a(g234617 +g234619 +S'who' +p234621 +tp234622 +a(g234619 +g234621 +S'included' +p234623 +tp234624 +a(g234621 +g234623 +S'it' +p234625 +tp234626 +a(g234623 +g234625 +S'in' +p234627 +tp234628 +a(g234625 +g234627 +S'an' +p234629 +tp234630 +a(g234627 +g234629 +S'exhibition' +p234631 +tp234632 +a(g234629 +g234631 +S'of' +p234633 +tp234634 +a(g234631 +g234633 +S'the' +p234635 +tp234636 +a(g234633 +g234635 +S'artist\xe2\x80\x99s' +p234637 +tp234638 +a(g234635 +g234637 +S'recent' +p234639 +tp234640 +a(g234637 +g234639 +S'work' +p234641 +tp234642 +a(g234639 +g234641 +S'at' +p234643 +tp234644 +a(g234641 +g234643 +S'the' +p234645 +tp234646 +a(g234643 +g234645 +S'boussod' +p234647 +tp234648 +a(g234645 +g234647 +S'and' +p234649 +tp234650 +a(g234647 +g234649 +S'valadon' +p234651 +tp234652 +a(g234649 +g234651 +S'gallery' +p234653 +tp234654 +a(g234651 +g234653 +S'in' +p234655 +tp234656 +a(g234653 +g234655 +S'paris' +p234657 +tp234658 +a(g234655 +g234657 +S'in' +p234659 +tp234660 +a(g234657 +g234659 +S'november' +p234661 +tp234662 +a(g234659 +g234661 +S'1888.' +p234663 +tp234664 +a(g234661 +g234663 +S'van' +p234665 +tp234666 +a(g234663 +g234665 +S'gogh' +p234667 +tp234668 +a(g234665 +g234667 +S'informed' +p234669 +tp234670 +a(g234667 +g234669 +S'the' +p234671 +tp234672 +a(g234669 +g234671 +S'artist' +p234673 +tp234674 +a(g234671 +g234673 +S'that' +p234675 +tp234676 +a(g234673 +g234675 +S'he' +p234677 +tp234678 +a(g234675 +g234677 +S'had' +p234679 +tp234680 +a(g234677 +g234679 +S'found' +p234681 +tp234682 +a(g234679 +g234681 +S'a' +p234683 +tp234684 +a(g234681 +g234683 +S'buyer' +p234685 +tp234686 +a(g234683 +g234685 +S'for' +p234687 +tp234688 +a(g234685 +g234687 +S'the' +p234689 +tp234690 +a(g234687 +g234689 +S'painting,' +p234691 +tp234692 +a(g234689 +g234691 +S'but' +p234693 +tp234694 +a(g234691 +g234693 +S'on' +p234695 +tp234696 +a(g234693 +g234695 +S'one' +p234697 +tp234698 +a(g234695 +g234697 +S'condition:' +p234699 +tp234700 +a(g234697 +g234699 +S'"i' +p234701 +tp234702 +a(g234699 +g234701 +S'could' +p234703 +tp234704 +a(g234701 +g234703 +S'also' +p234705 +tp234706 +a(g234703 +g234705 +S'sell' +p234707 +tp234708 +a(g234705 +g234707 +S'the' +p234709 +tp234710 +a(g234707 +g234709 +S'dance' +p234711 +tp234712 +a(g234709 +g234711 +S'of' +p234713 +tp234714 +a(g234711 +g234713 +S'the' +p234715 +tp234716 +a(g234713 +g234715 +S'little' +p234717 +tp234718 +a(g234715 +g234717 +S'breton' +p234719 +tp234720 +a(g234717 +g234719 +S'girls,' +p234721 +tp234722 +a(g234719 +g234721 +S'but' +p234723 +tp234724 +a(g234721 +g234723 +S'you' +p234725 +tp234726 +a(g234723 +g234725 +S'would' +p234727 +tp234728 +a(g234725 +g234727 +S'have' +p234729 +tp234730 +a(g234727 +g234729 +S'to' +p234731 +tp234732 +a(g234729 +g234731 +S'change' +p234733 +tp234734 +a(g234731 +g234733 +S'it' +p234735 +tp234736 +a(g234733 +g234735 +S'slightly.' +p234737 +tp234738 +a(g234735 +g234737 +S'the' +p234739 +tp234740 +a(g234737 +g234739 +S'hand' +p234741 +tp234742 +a(g234739 +g234741 +S'of' +p234743 +tp234744 +a(g234741 +g234743 +S'the' +p234745 +tp234746 +a(g234743 +g234745 +S'little' +p234747 +tp234748 +a(g234745 +g234747 +S'girl' +p234749 +tp234750 +a(g234747 +g234749 +S'originating' +p234751 +tp234752 +a(g234749 +g234751 +S'near' +p234753 +tp234754 +a(g234751 +g234753 +S'the' +p234755 +tp234756 +a(g234753 +g234755 +S'edge' +p234757 +tp234758 +a(g234755 +g234757 +S'seems' +p234759 +tp234760 +a(g234757 +g234759 +S'to' +p234761 +tp234762 +a(g234759 +g234761 +S'have' +p234763 +tp234764 +a(g234761 +g234763 +S'an' +p234765 +tp234766 +a(g234763 +g234765 +S'importance' +p234767 +tp234768 +a(g234765 +g234767 +S'which' +p234769 +tp234770 +a(g234767 +g234769 +S'one' +p234771 +tp234772 +a(g234769 +g234771 +S'does' +p234773 +tp234774 +a(g234771 +g234773 +S'not' +p234775 +tp234776 +a(g234773 +g234775 +S'notice' +p234777 +tp234778 +a(g234775 +g234777 +S'when' +p234779 +tp234780 +a(g234777 +g234779 +S'one' +p234781 +tp234782 +a(g234779 +g234781 +S'sees' +p234783 +tp234784 +a(g234781 +g234783 +S'the' +p234785 +tp234786 +a(g234783 +g234785 +S'picture' +p234787 +tp234788 +a(g234785 +g234787 +S'without' +p234789 +tp234790 +a(g234787 +g234789 +S'a' +p234791 +tp234792 +a(g234789 +g234791 +S'frame.' +p234793 +tp234794 +a(g234791 +g234793 +S'the' +p234795 +tp234796 +a(g234793 +g234795 +S'buyer' +p234797 +tp234798 +a(g234795 +g234797 +S'would' +p234799 +tp234800 +a(g234797 +g234799 +S'like' +p234801 +tp234802 +a(g234799 +g234801 +S'you' +p234803 +tp234804 +a(g234801 +g234803 +S'to' +p234805 +tp234806 +a(g234803 +g234805 +S'alter' +p234807 +tp234808 +a(g234805 +g234807 +S'the' +p234809 +tp234810 +a(g234807 +g234809 +S'hand' +p234811 +tp234812 +a(g234809 +g234811 +S'a' +p234813 +tp234814 +a(g234811 +g234813 +S'little,' +p234815 +tp234816 +a(g234813 +g234815 +S'without' +p234817 +tp234818 +a(g234815 +g234817 +S'otherwise' +p234819 +tp234820 +a(g234817 +g234819 +S'modifying' +p234821 +tp234822 +a(g234819 +g234821 +S'the' +p234823 +tp234824 +a(g234821 +g234823 +S'rest' +p234825 +tp234826 +a(g234823 +g234825 +S'of' +p234827 +tp234828 +a(g234825 +g234827 +S'the' +p234829 +tp234830 +a(g234827 +g234829 +S'painting.' +p234831 +tp234832 +a(g234829 +g234831 +S'it' +p234833 +tp234834 +a(g234831 +g234833 +S'does' +p234835 +tp234836 +a(g234833 +g234835 +S'not' +p234837 +tp234838 +a(g234835 +g234837 +S'seem' +p234839 +tp234840 +a(g234837 +g234839 +S'to' +p234841 +tp234842 +a(g234839 +g234841 +S'me' +p234843 +tp234844 +a(g234841 +g234843 +S'to' +p234845 +tp234846 +a(g234843 +g234845 +S'be' +p234847 +tp234848 +a(g234845 +g234847 +S'a' +p234849 +tp234850 +a(g234847 +g234849 +S'difficult' +p234851 +tp234852 +a(g234849 +g234851 +S'request.' +p234853 +tp234854 +a(g234851 +g234853 +S'.' +p234855 +tp234856 +a(g234853 +g234855 +S'.' +p234857 +tp234858 +a(g234855 +g234857 +S'.' +p234859 +tp234860 +a(g234857 +g234859 +S'see' +p234861 +tp234862 +a(g234859 +g234861 +S'if' +p234863 +tp234864 +a(g234861 +g234863 +S'you' +p234865 +tp234866 +a(g234863 +g234865 +S'can' +p234867 +tp234868 +a(g234865 +g234867 +S'make' +p234869 +tp234870 +a(g234867 +g234869 +S'him' +p234871 +tp234872 +a(g234869 +g234871 +S'happy' +p234873 +tp234874 +a(g234871 +g234873 +S'and' +p234875 +tp234876 +a(g234873 +g234875 +S'if' +p234877 +tp234878 +a(g234875 +g234877 +S'you' +p234879 +tp234880 +a(g234877 +g234879 +S'want' +p234881 +tp234882 +a(g234879 +g234881 +S'to' +p234883 +tp234884 +a(g234881 +g234883 +S'do' +p234885 +tp234886 +a(g234883 +g234885 +S'this' +p234887 +tp234888 +a(g234885 +g234887 +S'deal."' +p234889 +tp234890 +a(g234887 +g234889 +S'with' +p234891 +tp234892 +a(g234889 +g234891 +S'some' +p234893 +tp234894 +a(g234891 +g234893 +S'reluctance,' +p234895 +tp234896 +a(g234893 +g234895 +S'gauguin' +p234897 +tp234898 +a(g234895 +g234897 +S'agreed' +p234899 +tp234900 +a(g234897 +g234899 +S'to' +p234901 +tp234902 +a(g234899 +g234901 +S'make' +p234903 +tp234904 +a(g234901 +g234903 +S'the' +p234905 +tp234906 +a(g234903 +g234905 +S'requisite' +p234907 +tp234908 +a(g234905 +g234907 +S'change.' +p234909 +tp234910 +a(g234907 +g234909 +S'however,' +p234911 +tp234912 +a(g234909 +g234911 +S'despite' +p234913 +tp234914 +a(g234911 +g234913 +S'gauguin\xe2\x80\x99s' +p234915 +tp234916 +a(g234913 +g234915 +S'efforts' +p234917 +tp234918 +a(g234915 +g234917 +S'and' +p234919 +tp234920 +a(g234917 +g234919 +S'van' +p234921 +tp234922 +a(g234919 +g234921 +S'gogh\xe2\x80\x99s' +p234923 +tp234924 +a(g234921 +g234923 +S'assurances,' +p234925 +tp234926 +a(g234923 +g234925 +S'the' +p234927 +tp234928 +a(g234925 +g234927 +S'painting' +p234929 +tp234930 +a(g234927 +g234929 +S'remained' +p234931 +tp234932 +a(g234929 +g234931 +S'unsold.' +p234933 +tp234934 +a(g234931 +g234933 +S'gauguin' +p234935 +tp234936 +a(g234933 +g234935 +S'included' +p234937 +tp234938 +a(g234935 +g234937 +S'it' +p234939 +tp234940 +a(g234937 +g234939 +S'along' +p234941 +tp234942 +a(g234939 +g234941 +S'with' +p234943 +tp234944 +a(g234941 +g234943 +S'sixteen' +p234945 +tp234946 +a(g234943 +g234945 +S'other' +p234947 +tp234948 +a(g234945 +g234947 +S'works' +p234949 +tp234950 +a(g234947 +g234949 +S'at' +p234951 +tp234952 +a(g234949 +g234951 +S'the' +p234953 +tp234954 +a(g234951 +g234953 +S'exhibition' +p234955 +tp234956 +a(g234953 +g234955 +S'of' +p234957 +tp234958 +a(g234955 +g234957 +S'paintings' +p234959 +tp234960 +a(g234957 +g234959 +S'by' +p234961 +tp234962 +a(g234959 +g234961 +S'the' +p234963 +tp234964 +a(g234961 +g234963 +S'impressionist' +p234965 +tp234966 +a(g234963 +g234965 +S'and' +p234967 +tp234968 +a(g234965 +g234967 +S'synthetist' +p234969 +tp234970 +a(g234967 +g234969 +S'group' +p234971 +tp234972 +a(g234969 +g234971 +S'held' +p234973 +tp234974 +a(g234971 +g234973 +S'in' +p234975 +tp234976 +a(g234973 +g234975 +S'paris' +p234977 +tp234978 +a(g234975 +g234977 +S'at' +p234979 +tp234980 +a(g234977 +g234979 +S'the' +p234981 +tp234982 +a(g234979 +g234981 +S'café' +p234983 +tp234984 +a(g234981 +g234983 +S'volpini' +p234985 +tp234986 +a(g234983 +g234985 +S'during' +p234987 +tp234988 +a(g234985 +g234987 +S'the' +p234989 +tp234990 +a(g234987 +g234989 +S'exposition' +p234991 +tp234992 +a(g234989 +g234991 +S'universelle' +p234993 +tp234994 +a(g234991 +g234993 +S'of' +p234995 +tp234996 +a(g234993 +g234995 +S'1889,' +p234997 +tp234998 +a(g234995 +g234997 +S'but' +p234999 +tp235000 +a(g234997 +g234999 +S'was' +p235001 +tp235002 +a(g234999 +g235001 +S'disheartened' +p235003 +tp235004 +a(g235001 +g235003 +S'by' +p235005 +tp235006 +a(g235003 +g235005 +S'the' +p235007 +tp235008 +a(g235005 +g235007 +S'lack' +p235009 +tp235010 +a(g235007 +g235009 +S'of' +p235011 +tp235012 +a(g235009 +g235011 +S'both' +p235013 +tp235014 +a(g235011 +g235013 +S'critical' +p235015 +tp235016 +a(g235013 +g235015 +S'attention' +p235017 +tp235018 +a(g235015 +g235017 +S'and' +p235019 +tp235020 +a(g235017 +g235019 +S'sales.' +p235021 +tp235022 +a(g235019 +g235021 +S'it' +p235023 +tp235024 +a(g235021 +g235023 +S'would' +p235025 +tp235026 +a(g235023 +g235025 +S'not' +p235027 +tp235028 +a(g235025 +g235027 +S'be' +p235029 +tp235030 +a(g235027 +g235029 +S'until' +p235031 +tp235032 +a(g235029 +g235031 +S'september' +p235033 +tp235034 +a(g235031 +g235033 +S'1889' +p235035 +tp235036 +a(g235033 +g235035 +S'that' +p235037 +tp235038 +a(g235035 +g235037 +S'the' +p235039 +tp235040 +a(g235037 +g235039 +S'painting' +p235041 +tp235042 +a(g235039 +g235041 +S'was' +p235043 +tp235044 +a(g235041 +g235043 +S'finally' +p235045 +tp235046 +a(g235043 +g235045 +S'sold' +p235047 +tp235048 +a(g235045 +g235047 +S'for' +p235049 +tp235050 +a(g235047 +g235049 +S'five' +p235051 +tp235052 +a(g235049 +g235051 +S'hundred' +p235053 +tp235054 +a(g235051 +g235053 +S'francs.' +p235055 +tp235056 +a(g235053 +g235055 +S'(text' +p235057 +tp235058 +a(g235055 +g235057 +S'by' +p235059 +tp235060 +a(g235057 +g235059 +S'kimberly' +p235061 +tp235062 +a(g235059 +g235061 +S'jones,' +p235063 +tp235064 +a(g235061 +g235063 +S'notes' +p235065 +tp235066 +a(g235063 +g235065 +S'' +p235069 +tp235070 +a(g235067 +g235069 +S'' +p235073 +tp235074 +a(g235071 +g235073 +S'' +p235077 +tp235078 +a(g235075 +g235077 +S'' +p235081 +tp235082 +a(g235079 +g235081 +S'after' +p235083 +tp235084 +a(g235081 +g235083 +S'his' +p235085 +tp235086 +a(g235083 +g235085 +S'first' +p235087 +tp235088 +a(g235085 +g235087 +S'stay' +p235089 +tp235090 +a(g235087 +g235089 +S'in' +p235091 +tp235092 +a(g235089 +g235091 +S'brittany,' +p235093 +tp235094 +a(g235091 +g235093 +S'gauguin' +p235095 +tp235096 +a(g235093 +g235095 +S'returned' +p235097 +tp235098 +a(g235095 +g235097 +S'to' +p235099 +tp235100 +a(g235097 +g235099 +S'paris' +p235101 +tp235102 +a(g235099 +g235101 +S'in' +p235103 +tp235104 +a(g235101 +g235103 +S'time' +p235105 +tp235106 +a(g235103 +g235105 +S'for' +p235107 +tp235108 +a(g235105 +g235107 +S'the' +p235109 +tp235110 +a(g235107 +g235109 +S'1889' +p235111 +tp235112 +a(g235109 +g235111 +S'international' +p235113 +tp235114 +a(g235111 +g235113 +S'exposition' +p235115 +tp235116 +a(g235113 +g235115 +S'marking' +p235117 +tp235118 +a(g235115 +g235117 +S'the' +p235119 +tp235120 +a(g235117 +g235119 +S'centennial' +p235121 +tp235122 +a(g235119 +g235121 +S'of' +p235123 +tp235124 +a(g235121 +g235123 +S'the' +p235125 +tp235126 +a(g235123 +g235125 +S'french' +p235127 +tp235128 +a(g235125 +g235127 +S'revolution.' +p235129 +tp235130 +a(g235127 +g235129 +S'refused' +p235131 +tp235132 +a(g235129 +g235131 +S'space' +p235133 +tp235134 +a(g235131 +g235133 +S'at' +p235135 +tp235136 +a(g235133 +g235135 +S'the' +p235137 +tp235138 +a(g235135 +g235137 +S'official' +p235139 +tp235140 +a(g235137 +g235139 +S'art' +p235141 +tp235142 +a(g235139 +g235141 +S'exhibition,' +p235143 +tp235144 +a(g235141 +g235143 +S'he' +p235145 +tp235146 +a(g235143 +g235145 +S'mounted' +p235147 +tp235148 +a(g235145 +g235147 +S'an' +p235149 +tp235150 +a(g235147 +g235149 +S'independent' +p235151 +tp235152 +a(g235149 +g235151 +S'show' +p235153 +tp235154 +a(g235151 +g235153 +S'with' +p235155 +tp235156 +a(g235153 +g235155 +S'several' +p235157 +tp235158 +a(g235155 +g235157 +S'colleagues' +p235159 +tp235160 +a(g235157 +g235159 +S'near' +p235161 +tp235162 +a(g235159 +g235161 +S'the' +p235163 +tp235164 +a(g235161 +g235163 +S'entrance' +p235165 +tp235166 +a(g235163 +g235165 +S'to' +p235167 +tp235168 +a(g235165 +g235167 +S'the' +p235169 +tp235170 +a(g235167 +g235169 +S'huge' +p235171 +tp235172 +a(g235169 +g235171 +S'fair,' +p235173 +tp235174 +a(g235171 +g235173 +S'billing' +p235175 +tp235176 +a(g235173 +g235175 +S'their' +p235177 +tp235178 +a(g235175 +g235177 +S'work' +p235179 +tp235180 +a(g235177 +g235179 +S'"impressioniste' +p235181 +tp235182 +a(g235179 +g235181 +S'et' +p235183 +tp235184 +a(g235181 +g235183 +S'synthétiste,"' +p235185 +tp235186 +a(g235183 +g235185 +S'but' +p235187 +tp235188 +a(g235185 +g235187 +S'it' +p235189 +tp235190 +a(g235187 +g235189 +S'was' +p235191 +tp235192 +a(g235189 +g235191 +S'not' +p235193 +tp235194 +a(g235191 +g235193 +S'a' +p235195 +tp235196 +a(g235193 +g235195 +S'success.' +p235197 +tp235198 +a(g235195 +g235197 +S'he' +p235199 +tp235200 +a(g235197 +g235199 +S'decided' +p235201 +tp235202 +a(g235199 +g235201 +S'to' +p235203 +tp235204 +a(g235201 +g235203 +S'escape' +p235205 +tp235206 +a(g235203 +g235205 +S'paris' +p235207 +tp235208 +a(g235205 +g235207 +S'and' +p235209 +tp235210 +a(g235207 +g235209 +S'its' +p235211 +tp235212 +a(g235209 +g235211 +S'scornful' +p235213 +tp235214 +a(g235211 +g235213 +S'critics.' +p235215 +tp235216 +a(g235213 +g235215 +S'among' +p235217 +tp235218 +a(g235215 +g235217 +S'the' +p235219 +tp235220 +a(g235217 +g235219 +S'most' +p235221 +tp235222 +a(g235219 +g235221 +S'popular' +p235223 +tp235224 +a(g235221 +g235223 +S'attractions' +p235225 +tp235226 +a(g235223 +g235225 +S'at' +p235227 +tp235228 +a(g235225 +g235227 +S'the' +p235229 +tp235230 +a(g235227 +g235229 +S'exposition,' +p235231 +tp235232 +a(g235229 +g235231 +S'and' +p235233 +tp235234 +a(g235231 +g235233 +S"gauguin's" +p235235 +tp235236 +a(g235233 +g235235 +S'personal' +p235237 +tp235238 +a(g235235 +g235237 +S'favorites,' +p235239 +tp235240 +a(g235237 +g235239 +S'had' +p235241 +tp235242 +a(g235239 +g235241 +S'been' +p235243 +tp235244 +a(g235241 +g235243 +S'performances' +p235245 +tp235246 +a(g235243 +g235245 +S'by' +p235247 +tp235248 +a(g235245 +g235247 +S'buffalo' +p235249 +tp235250 +a(g235247 +g235249 +S"bill's" +p235251 +tp235252 +a(g235249 +g235251 +S'wild' +p235253 +tp235254 +a(g235251 +g235253 +S'west' +p235255 +tp235256 +a(g235253 +g235255 +S'show' +p235257 +tp235258 +a(g235255 +g235257 +S'and' +p235259 +tp235260 +a(g235257 +g235259 +S'a' +p235261 +tp235262 +a(g235259 +g235261 +S'troupe' +p235263 +tp235264 +a(g235261 +g235263 +S'of' +p235265 +tp235266 +a(g235263 +g235265 +S'javanese' +p235267 +tp235268 +a(g235265 +g235267 +S'dancers—gauguin' +p235269 +tp235270 +a(g235267 +g235269 +S'began' +p235271 +tp235272 +a(g235269 +g235271 +S'to' +p235273 +tp235274 +a(g235271 +g235273 +S'talk' +p235275 +tp235276 +a(g235273 +g235275 +S'of' +p235277 +tp235278 +a(g235275 +g235277 +S'emigrating' +p235279 +tp235280 +a(g235277 +g235279 +S'to' +p235281 +tp235282 +a(g235279 +g235281 +S'the' +p235283 +tp235284 +a(g235281 +g235283 +S'more' +p235285 +tp235286 +a(g235283 +g235285 +S'exotic' +p235287 +tp235288 +a(g235285 +g235287 +S'lands' +p235289 +tp235290 +a(g235287 +g235289 +S'of' +p235291 +tp235292 +a(g235289 +g235291 +S'tonkin' +p235293 +tp235294 +a(g235291 +g235293 +S'(vietnam),' +p235295 +tp235296 +a(g235293 +g235295 +S'madagascar,' +p235297 +tp235298 +a(g235295 +g235297 +S'or' +p235299 +tp235300 +a(g235297 +g235299 +S'tahiti.' +p235301 +tp235302 +a(g235299 +g235301 +S'but' +p235303 +tp235304 +a(g235301 +g235303 +S'he' +p235305 +tp235306 +a(g235303 +g235305 +S'returned' +p235307 +tp235308 +a(g235305 +g235307 +S'instead' +p235309 +tp235310 +a(g235307 +g235309 +S'to' +p235311 +tp235312 +a(g235309 +g235311 +S'brittany.' +p235313 +tp235314 +a(g235311 +g235313 +S'in' +p235315 +tp235316 +a(g235313 +g235315 +S'1889' +p235317 +tp235318 +a(g235315 +g235317 +S'he' +p235319 +tp235320 +a(g235317 +g235319 +S'found' +p235321 +tp235322 +a(g235319 +g235321 +S'the' +p235323 +tp235324 +a(g235321 +g235323 +S'village' +p235325 +tp235326 +a(g235323 +g235325 +S'of' +p235327 +tp235328 +a(g235325 +g235327 +S'pont-aven' +p235329 +tp235330 +a(g235327 +g235329 +S'crowded' +p235331 +tp235332 +a(g235329 +g235331 +S'with' +p235333 +tp235334 +a(g235331 +g235333 +S'artists.' +p235335 +tp235336 +a(g235333 +g235335 +S'seeking' +p235337 +tp235338 +a(g235335 +g235337 +S'a' +p235339 +tp235340 +a(g235337 +g235339 +S'more' +p235341 +tp235342 +a(g235339 +g235341 +S'isolated—and' +p235343 +tp235344 +a(g235341 +g235343 +S'less' +p235345 +tp235346 +a(g235343 +g235345 +S'expensive—environment,' +p235347 +tp235348 +a(g235345 +g235347 +S'he' +p235349 +tp235350 +a(g235347 +g235349 +S'and' +p235351 +tp235352 +a(g235349 +g235351 +S'several' +p235353 +tp235354 +a(g235351 +g235353 +S'colleagues' +p235355 +tp235356 +a(g235353 +g235355 +S'took' +p235357 +tp235358 +a(g235355 +g235357 +S'up' +p235359 +tp235360 +a(g235357 +g235359 +S'residence' +p235361 +tp235362 +a(g235359 +g235361 +S'in' +p235363 +tp235364 +a(g235361 +g235363 +S'le' +p235365 +tp235366 +a(g235363 +g235365 +S'pouldu,' +p235367 +tp235368 +a(g235365 +g235367 +S'a' +p235369 +tp235370 +a(g235367 +g235369 +S'small' +p235371 +tp235372 +a(g235369 +g235371 +S'hamlet' +p235373 +tp235374 +a(g235371 +g235373 +S'nine' +p235375 +tp235376 +a(g235373 +g235375 +S'kilometers' +p235377 +tp235378 +a(g235375 +g235377 +S'distant.' +p235379 +tp235380 +a(g235377 +g235379 +S'from' +p235381 +tp235382 +a(g235379 +g235381 +S'there' +p235383 +tp235384 +a(g235381 +g235383 +S'they' +p235385 +tp235386 +a(g235383 +g235385 +S'made' +p235387 +tp235388 +a(g235385 +g235387 +S'many' +p235389 +tp235390 +a(g235387 +g235389 +S'expeditions' +p235391 +tp235392 +a(g235389 +g235391 +S'to' +p235393 +tp235394 +a(g235391 +g235393 +S'the' +p235395 +tp235396 +a(g235393 +g235395 +S'countryside,' +p235397 +tp235398 +a(g235395 +g235397 +S'but' +p235399 +tp235400 +a(g235397 +g235399 +S'their' +p235401 +tp235402 +a(g235399 +g235401 +S'landscapes,' +p235403 +tp235404 +a(g235401 +g235403 +S'like' +p235405 +tp235406 +a(g235403 +g235405 +S'this' +p235407 +tp235408 +a(g235405 +g235407 +S'one,' +p235409 +tp235410 +a(g235407 +g235409 +S'were' +p235411 +tp235412 +a(g235409 +g235411 +S'painted' +p235413 +tp235414 +a(g235411 +g235413 +S'primarily' +p235415 +tp235416 +a(g235413 +g235415 +S'from' +p235417 +tp235418 +a(g235415 +g235417 +S'memory' +p235419 +tp235420 +a(g235417 +g235419 +S'and' +p235421 +tp235422 +a(g235419 +g235421 +S'sketches.' +p235423 +tp235424 +a(g235421 +g235423 +S""don't" +p235425 +tp235426 +a(g235423 +g235425 +S'copy' +p235427 +tp235428 +a(g235425 +g235427 +S'nature' +p235429 +tp235430 +a(g235427 +g235429 +S'too' +p235431 +tp235432 +a(g235429 +g235431 +S'literally,"' +p235433 +tp235434 +a(g235431 +g235433 +S'gauguin' +p235435 +tp235436 +a(g235433 +g235435 +S'advised.' +p235437 +tp235438 +a(g235435 +g235437 +S'"art' +p235439 +tp235440 +a(g235437 +g235439 +S'is' +p235441 +tp235442 +a(g235439 +g235441 +S'abstraction;' +p235443 +tp235444 +a(g235441 +g235443 +S'draw' +p235445 +tp235446 +a(g235443 +g235445 +S'art' +p235447 +tp235448 +a(g235445 +g235447 +S'as' +p235449 +tp235450 +a(g235447 +g235449 +S'you' +p235451 +tp235452 +a(g235449 +g235451 +S'dream' +p235453 +tp235454 +a(g235451 +g235453 +S'in' +p235455 +tp235456 +a(g235453 +g235455 +S"nature's" +p235457 +tp235458 +a(g235455 +g235457 +S'presence,' +p235459 +tp235460 +a(g235457 +g235459 +S'and' +p235461 +tp235462 +a(g235459 +g235461 +S'think' +p235463 +tp235464 +a(g235461 +g235463 +S'more' +p235465 +tp235466 +a(g235463 +g235465 +S'about' +p235467 +tp235468 +a(g235465 +g235467 +S'the' +p235469 +tp235470 +a(g235467 +g235469 +S'act' +p235471 +tp235472 +a(g235469 +g235471 +S'of' +p235473 +tp235474 +a(g235471 +g235473 +S'creation' +p235475 +tp235476 +a(g235473 +g235475 +S'than' +p235477 +tp235478 +a(g235475 +g235477 +S'about' +p235479 +tp235480 +a(g235477 +g235479 +S'the' +p235481 +tp235482 +a(g235479 +g235481 +S'final' +p235483 +tp235484 +a(g235481 +g235483 +S'result."' +p235485 +tp235486 +a(g235483 +g235485 +S'from' +p235487 +tp235488 +a(g235485 +g235487 +S'a' +p235489 +tp235490 +a(g235487 +g235489 +S'distance' +p235491 +tp235492 +a(g235489 +g235491 +S'of' +p235493 +tp235494 +a(g235491 +g235493 +S'ten' +p235495 +tp235496 +a(g235493 +g235495 +S'feet' +p235497 +tp235498 +a(g235495 +g235497 +S'or' +p235499 +tp235500 +a(g235497 +g235499 +S'so,' +p235501 +tp235502 +a(g235499 +g235501 +S"monet's" +p235503 +tp235504 +a(g235501 +g235503 +S'brushstrokes' +p235505 +tp235506 +a(g235503 +g235505 +S'blend' +p235507 +tp235508 +a(g235505 +g235507 +S'to' +p235509 +tp235510 +a(g235507 +g235509 +S'yield' +p235511 +tp235512 +a(g235509 +g235511 +S'a' +p235513 +tp235514 +a(g235511 +g235513 +S'convincing' +p235515 +tp235516 +a(g235513 +g235515 +S'view' +p235517 +tp235518 +a(g235515 +g235517 +S'of' +p235519 +tp235520 +a(g235517 +g235519 +S'the' +p235521 +tp235522 +a(g235519 +g235521 +S'seine' +p235523 +tp235524 +a(g235521 +g235523 +S'and' +p235525 +tp235526 +a(g235523 +g235525 +S'the' +p235527 +tp235528 +a(g235525 +g235527 +S'pleasure' +p235529 +tp235530 +a(g235527 +g235529 +S'boats' +p235531 +tp235532 +a(g235529 +g235531 +S'that' +p235533 +tp235534 +a(g235531 +g235533 +S'drew' +p235535 +tp235536 +a(g235533 +g235535 +S'tourists' +p235537 +tp235538 +a(g235535 +g235537 +S'to' +p235539 +tp235540 +a(g235537 +g235539 +S'argenteuil.' +p235541 +tp235542 +a(g235539 +g235541 +S'up' +p235543 +tp235544 +a(g235541 +g235543 +S'close,' +p235545 +tp235546 +a(g235543 +g235545 +S'however,' +p235547 +tp235548 +a(g235545 +g235547 +S'each' +p235549 +tp235550 +a(g235547 +g235549 +S'dab' +p235551 +tp235552 +a(g235549 +g235551 +S'of' +p235553 +tp235554 +a(g235551 +g235553 +S'paint' +p235555 +tp235556 +a(g235553 +g235555 +S'is' +p235557 +tp235558 +a(g235555 +g235557 +S'distinct,' +p235559 +tp235560 +a(g235557 +g235559 +S'and' +p235561 +tp235562 +a(g235559 +g235561 +S'the' +p235563 +tp235564 +a(g235561 +g235563 +S'scene' +p235565 +tp235566 +a(g235563 +g235565 +S'dissolves' +p235567 +tp235568 +a(g235565 +g235567 +S'into' +p235569 +tp235570 +a(g235567 +g235569 +S'a' +p235571 +tp235572 +a(g235569 +g235571 +S'mosaic' +p235573 +tp235574 +a(g235571 +g235573 +S'of' +p235575 +tp235576 +a(g235573 +g235575 +S'paint—brilliant,' +p235577 +tp235578 +a(g235575 +g235577 +S'unblended' +p235579 +tp235580 +a(g235577 +g235579 +S'tones' +p235581 +tp235582 +a(g235579 +g235581 +S'of' +p235583 +tp235584 +a(g235581 +g235583 +S'blue,' +p235585 +tp235586 +a(g235583 +g235585 +S'red,' +p235587 +tp235588 +a(g235585 +g235587 +S'green,' +p235589 +tp235590 +a(g235587 +g235589 +S'yellow.' +p235591 +tp235592 +a(g235589 +g235591 +S'in' +p235593 +tp235594 +a(g235591 +g235593 +S'the' +p235595 +tp235596 +a(g235593 +g235595 +S'water,' +p235597 +tp235598 +a(g235595 +g235597 +S'quick,' +p235599 +tp235600 +a(g235597 +g235599 +S'fluid' +p235601 +tp235602 +a(g235599 +g235601 +S'skips' +p235603 +tp235604 +a(g235601 +g235603 +S'of' +p235605 +tp235606 +a(g235603 +g235605 +S'the' +p235607 +tp235608 +a(g235605 +g235607 +S'brush' +p235609 +tp235610 +a(g235607 +g235609 +S'mimic' +p235611 +tp235612 +a(g235609 +g235611 +S'the' +p235613 +tp235614 +a(g235611 +g235613 +S'lapping' +p235615 +tp235616 +a(g235613 +g235615 +S'surface.' +p235617 +tp235618 +a(g235615 +g235617 +S'in' +p235619 +tp235620 +a(g235617 +g235619 +S'the' +p235621 +tp235622 +a(g235619 +g235621 +S'trees,' +p235623 +tp235624 +a(g235621 +g235623 +S'thicker' +p235625 +tp235626 +a(g235623 +g235625 +S'paint' +p235627 +tp235628 +a(g235625 +g235627 +S'is' +p235629 +tp235630 +a(g235627 +g235629 +S'applied' +p235631 +tp235632 +a(g235629 +g235631 +S'with' +p235633 +tp235634 +a(g235631 +g235633 +S'denser,' +p235635 +tp235636 +a(g235633 +g235635 +S'stubbier' +p235637 +tp235638 +a(g235635 +g235637 +S'strokes.' +p235639 +tp235640 +a(g235637 +g235639 +S'the' +p235641 +tp235642 +a(g235639 +g235641 +S'figure' +p235643 +tp235644 +a(g235641 +g235643 +S'in' +p235645 +tp235646 +a(g235643 +g235645 +S'the' +p235647 +tp235648 +a(g235645 +g235647 +S'sailboat' +p235649 +tp235650 +a(g235647 +g235649 +S'is' +p235651 +tp235652 +a(g235649 +g235651 +S'only' +p235653 +tp235654 +a(g235651 +g235653 +S'a' +p235655 +tp235656 +a(g235653 +g235655 +S'ghostly' +p235657 +tp235658 +a(g235655 +g235657 +S'wash' +p235659 +tp235660 +a(g235657 +g235659 +S'of' +p235661 +tp235662 +a(g235659 +g235661 +S'dusty' +p235663 +tp235664 +a(g235661 +g235663 +S'blue,' +p235665 +tp235666 +a(g235663 +g235665 +S'the' +p235667 +tp235668 +a(g235665 +g235667 +S'women' +p235669 +tp235670 +a(g235667 +g235669 +S'rowing' +p235671 +tp235672 +a(g235669 +g235671 +S'nearby' +p235673 +tp235674 +a(g235671 +g235673 +S'are' +p235675 +tp235676 +a(g235673 +g235675 +S'indicated' +p235677 +tp235678 +a(g235675 +g235677 +S'by' +p235679 +tp235680 +a(g235677 +g235679 +S'mere' +p235681 +tp235682 +a(g235679 +g235681 +S'shorthand.' +p235683 +tp235684 +a(g235681 +g235683 +S'in' +p235685 +tp235686 +a(g235683 +g235685 +S'the' +p235687 +tp235688 +a(g235685 +g235687 +S'early' +p235689 +tp235690 +a(g235687 +g235689 +S'years' +p235691 +tp235692 +a(g235689 +g235691 +S'of' +p235693 +tp235694 +a(g235691 +g235693 +S'impressionism,' +p235695 +tp235696 +a(g235693 +g235695 +S'monet,' +p235697 +tp235698 +a(g235695 +g235697 +S'renoir,' +p235699 +tp235700 +a(g235697 +g235699 +S'and' +p235701 +tp235702 +a(g235699 +g235701 +S'others' +p235703 +tp235704 +a(g235701 +g235703 +S'strove' +p235705 +tp235706 +a(g235703 +g235705 +S'to' +p235707 +tp235708 +a(g235705 +g235707 +S'capture' +p235709 +tp235710 +a(g235707 +g235709 +S'the' +p235711 +tp235712 +a(g235709 +g235711 +S'fleeting' +p235713 +tp235714 +a(g235711 +g235713 +S'effects' +p235715 +tp235716 +a(g235713 +g235715 +S'of' +p235717 +tp235718 +a(g235715 +g235717 +S'light' +p235719 +tp235720 +a(g235717 +g235719 +S'and' +p235721 +tp235722 +a(g235719 +g235721 +S'atmosphere' +p235723 +tp235724 +a(g235721 +g235723 +S'on' +p235725 +tp235726 +a(g235723 +g235725 +S'the' +p235727 +tp235728 +a(g235725 +g235727 +S'landscape' +p235729 +tp235730 +a(g235727 +g235729 +S'and' +p235731 +tp235732 +a(g235729 +g235731 +S'to' +p235733 +tp235734 +a(g235731 +g235733 +S'transcribe' +p235735 +tp235736 +a(g235733 +g235735 +S'directly' +p235737 +tp235738 +a(g235735 +g235737 +S'and' +p235739 +tp235740 +a(g235737 +g235739 +S'quickly' +p235741 +tp235742 +a(g235739 +g235741 +S'their' +p235743 +tp235744 +a(g235741 +g235743 +S'sensory' +p235745 +tp235746 +a(g235743 +g235745 +S'experience' +p235747 +tp235748 +a(g235745 +g235747 +S'of' +p235749 +tp235750 +a(g235747 +g235749 +S'it.' +p235751 +tp235752 +a(g235749 +g235751 +S'monet' +p235753 +tp235754 +a(g235751 +g235753 +S'advised' +p235755 +tp235756 +a(g235753 +g235755 +S'the' +p235757 +tp235758 +a(g235755 +g235757 +S'american' +p235759 +tp235760 +a(g235757 +g235759 +S'artist' +p235761 +tp235762 +a(g235759 +g235761 +S'lilla' +p235763 +tp235764 +a(g235761 +g235763 +S'cabot' +p235765 +tp235766 +a(g235763 +g235765 +S'perry,' +p235767 +tp235768 +a(g235765 +g235767 +S'"when' +p235769 +tp235770 +a(g235767 +g235769 +S'you' +p235771 +tp235772 +a(g235769 +g235771 +S'go' +p235773 +tp235774 +a(g235771 +g235773 +S'out' +p235775 +tp235776 +a(g235773 +g235775 +S'to' +p235777 +tp235778 +a(g235775 +g235777 +S'paint,' +p235779 +tp235780 +a(g235777 +g235779 +S'try' +p235781 +tp235782 +a(g235779 +g235781 +S'to' +p235783 +tp235784 +a(g235781 +g235783 +S'forget' +p235785 +tp235786 +a(g235783 +g235785 +S'what' +p235787 +tp235788 +a(g235785 +g235787 +S'objects' +p235789 +tp235790 +a(g235787 +g235789 +S'you' +p235791 +tp235792 +a(g235789 +g235791 +S'have' +p235793 +tp235794 +a(g235791 +g235793 +S'before' +p235795 +tp235796 +a(g235793 +g235795 +S'you,' +p235797 +tp235798 +a(g235795 +g235797 +S'a' +p235799 +tp235800 +a(g235797 +g235799 +S'tree,' +p235801 +tp235802 +a(g235799 +g235801 +S'a' +p235803 +tp235804 +a(g235801 +g235803 +S'house,' +p235805 +tp235806 +a(g235803 +g235805 +S'a' +p235807 +tp235808 +a(g235805 +g235807 +S'field' +p235809 +tp235810 +a(g235807 +g235809 +S'or' +p235811 +tp235812 +a(g235809 +g235811 +S'whatever.' +p235813 +tp235814 +a(g235811 +g235813 +S'merely' +p235815 +tp235816 +a(g235813 +g235815 +S'think' +p235817 +tp235818 +a(g235815 +g235817 +S'here' +p235819 +tp235820 +a(g235817 +g235819 +S'is' +p235821 +tp235822 +a(g235819 +g235821 +S'a' +p235823 +tp235824 +a(g235821 +g235823 +S'little' +p235825 +tp235826 +a(g235823 +g235825 +S'square' +p235827 +tp235828 +a(g235825 +g235827 +S'of' +p235829 +tp235830 +a(g235827 +g235829 +S'blue,' +p235831 +tp235832 +a(g235829 +g235831 +S'here' +p235833 +tp235834 +a(g235831 +g235833 +S'an' +p235835 +tp235836 +a(g235833 +g235835 +S'oblong' +p235837 +tp235838 +a(g235835 +g235837 +S'of' +p235839 +tp235840 +a(g235837 +g235839 +S'pink,' +p235841 +tp235842 +a(g235839 +g235841 +S'here' +p235843 +tp235844 +a(g235841 +g235843 +S'a' +p235845 +tp235846 +a(g235843 +g235845 +S'streak' +p235847 +tp235848 +a(g235845 +g235847 +S'of' +p235849 +tp235850 +a(g235847 +g235849 +S'yellow,' +p235851 +tp235852 +a(g235849 +g235851 +S'and' +p235853 +tp235854 +a(g235851 +g235853 +S'paint' +p235855 +tp235856 +a(g235853 +g235855 +S'it' +p235857 +tp235858 +a(g235855 +g235857 +S'just' +p235859 +tp235860 +a(g235857 +g235859 +S'as' +p235861 +tp235862 +a(g235859 +g235861 +S'it' +p235863 +tp235864 +a(g235861 +g235863 +S'looks' +p235865 +tp235866 +a(g235863 +g235865 +S'to' +p235867 +tp235868 +a(g235865 +g235867 +S'you,' +p235869 +tp235870 +a(g235867 +g235869 +S'the' +p235871 +tp235872 +a(g235869 +g235871 +S'exact' +p235873 +tp235874 +a(g235871 +g235873 +S'color' +p235875 +tp235876 +a(g235873 +g235875 +S'and' +p235877 +tp235878 +a(g235875 +g235877 +S'shape,' +p235879 +tp235880 +a(g235877 +g235879 +S'until' +p235881 +tp235882 +a(g235879 +g235881 +S'it' +p235883 +tp235884 +a(g235881 +g235883 +S'gives' +p235885 +tp235886 +a(g235883 +g235885 +S'your' +p235887 +tp235888 +a(g235885 +g235887 +S'own' +p235889 +tp235890 +a(g235887 +g235889 +S'naïve' +p235891 +tp235892 +a(g235889 +g235891 +S'impression' +p235893 +tp235894 +a(g235891 +g235893 +S'of' +p235895 +tp235896 +a(g235893 +g235895 +S'the' +p235897 +tp235898 +a(g235895 +g235897 +S'scene' +p235899 +tp235900 +a(g235897 +g235899 +S'before' +p235901 +tp235902 +a(g235899 +g235901 +S'you."' +p235903 +tp235904 +a(g235901 +g235903 +S'the' +p235905 +tp235906 +a(g235903 +g235905 +S'cradle—camille' +p235907 +tp235908 +a(g235905 +g235907 +S'with' +p235909 +tp235910 +a(g235907 +g235909 +S'the' +p235911 +tp235912 +a(g235909 +g235911 +S'artist\xe2\x80\x99s' +p235913 +tp235914 +a(g235911 +g235913 +S'son' +p235915 +tp235916 +a(g235913 +g235915 +S'jean' +p235917 +tp235918 +a(g235915 +g235917 +S'fatherhood' +p235919 +tp235920 +a(g235917 +g235919 +S'inspired' +p235921 +tp235922 +a(g235919 +g235921 +S'an' +p235923 +tp235924 +a(g235921 +g235923 +S'unexpected' +p235925 +tp235926 +a(g235923 +g235925 +S'tenderness' +p235927 +tp235928 +a(g235925 +g235927 +S'on' +p235929 +tp235930 +a(g235927 +g235929 +S'the' +p235931 +tp235932 +a(g235929 +g235931 +S'part' +p235933 +tp235934 +a(g235931 +g235933 +S'of' +p235935 +tp235936 +a(g235933 +g235935 +S'the' +p235937 +tp235938 +a(g235935 +g235937 +S'artist.' +p235939 +tp235940 +a(g235937 +g235939 +S'in' +p235941 +tp235942 +a(g235939 +g235941 +S'a' +p235943 +tp235944 +a(g235941 +g235943 +S'letter' +p235945 +tp235946 +a(g235943 +g235945 +S'to' +p235947 +tp235948 +a(g235945 +g235947 +S'his' +p235949 +tp235950 +a(g235947 +g235949 +S'friend' +p235951 +tp235952 +a(g235949 +g235951 +S'the' +p235953 +tp235954 +a(g235951 +g235953 +S'painter' +p235955 +tp235956 +a(g235953 +g235955 +S'frédéric' +p235957 +tp235958 +a(g235955 +g235957 +S'bazille,' +p235959 +tp235960 +a(g235957 +g235959 +S'who' +p235961 +tp235962 +a(g235959 +g235961 +S'was' +p235963 +tp235964 +a(g235961 +g235963 +S'also' +p235965 +tp235966 +a(g235963 +g235965 +S'jean\xe2\x80\x99s' +p235967 +tp235968 +a(g235965 +g235967 +S'godfather,' +p235969 +tp235970 +a(g235967 +g235969 +S'monet' +p235971 +tp235972 +a(g235969 +g235971 +S'described' +p235973 +tp235974 +a(g235971 +g235973 +S'his' +p235975 +tp235976 +a(g235973 +g235975 +S'delight' +p235977 +tp235978 +a(g235975 +g235977 +S'and' +p235979 +tp235980 +a(g235977 +g235979 +S'frustration' +p235981 +tp235982 +a(g235979 +g235981 +S'at' +p235983 +tp235984 +a(g235981 +g235983 +S'the' +p235985 +tp235986 +a(g235983 +g235985 +S'situation:' +p235987 +tp235988 +a(g235985 +g235987 +S'"she' +p235989 +tp235990 +a(g235987 +g235989 +S'[camille]' +p235991 +tp235992 +a(g235989 +g235991 +S'gave' +p235993 +tp235994 +a(g235991 +g235993 +S'birth' +p235995 +tp235996 +a(g235993 +g235995 +S'to' +p235997 +tp235998 +a(g235995 +g235997 +S'a' +p235999 +tp236000 +a(g235997 +g235999 +S'large' +p236001 +tp236002 +a(g235999 +g236001 +S'and' +p236003 +tp236004 +a(g236001 +g236003 +S'handsome' +p236005 +tp236006 +a(g236003 +g236005 +S'son' +p236007 +tp236008 +a(g236005 +g236007 +S'and' +p236009 +tp236010 +a(g236007 +g236009 +S'despite' +p236011 +tp236012 +a(g236009 +g236011 +S'everything,' +p236013 +tp236014 +a(g236011 +g236013 +S'and' +p236015 +tp236016 +a(g236013 +g236015 +S'i' +p236017 +tp236018 +a(g236015 +g236017 +S'don\xe2\x80\x99t' +p236019 +tp236020 +a(g236017 +g236019 +S'know' +p236021 +tp236022 +a(g236019 +g236021 +S'how,' +p236023 +tp236024 +a(g236021 +g236023 +S'i' +p236025 +tp236026 +a(g236023 +g236025 +S'feel' +p236027 +tp236028 +a(g236025 +g236027 +S'that' +p236029 +tp236030 +a(g236027 +g236029 +S'i' +p236031 +tp236032 +a(g236029 +g236031 +S'love' +p236033 +tp236034 +a(g236031 +g236033 +S'him,' +p236035 +tp236036 +a(g236033 +g236035 +S'and' +p236037 +tp236038 +a(g236035 +g236037 +S'i' +p236039 +tp236040 +a(g236037 +g236039 +S'suffer' +p236041 +tp236042 +a(g236039 +g236041 +S'to' +p236043 +tp236044 +a(g236041 +g236043 +S'think' +p236045 +tp236046 +a(g236043 +g236045 +S'that' +p236047 +tp236048 +a(g236045 +g236047 +S'his' +p236049 +tp236050 +a(g236047 +g236049 +S'mother' +p236051 +tp236052 +a(g236049 +g236051 +S'has' +p236053 +tp236054 +a(g236051 +g236053 +S'nothing' +p236055 +tp236056 +a(g236053 +g236055 +S'to' +p236057 +tp236058 +a(g236055 +g236057 +S'eat."' +p236059 +tp236060 +a(g236057 +g236059 +S'time' +p236061 +tp236062 +a(g236059 +g236061 +S'and' +p236063 +tp236064 +a(g236061 +g236063 +S'circumstance' +p236065 +tp236066 +a(g236063 +g236065 +S'undoubtedly' +p236067 +tp236068 +a(g236065 +g236067 +S'played' +p236069 +tp236070 +a(g236067 +g236069 +S'a' +p236071 +tp236072 +a(g236069 +g236071 +S'role.' +p236073 +tp236074 +a(g236071 +g236073 +S'given' +p236075 +tp236076 +a(g236073 +g236075 +S'the' +p236077 +tp236078 +a(g236075 +g236077 +S'apparent' +p236079 +tp236080 +a(g236077 +g236079 +S'age' +p236081 +tp236082 +a(g236079 +g236081 +S'of' +p236083 +tp236084 +a(g236081 +g236083 +S'the' +p236085 +tp236086 +a(g236083 +g236085 +S'infant,' +p236087 +tp236088 +a(g236085 +g236087 +S'somewhere' +p236089 +tp236090 +a(g236087 +g236089 +S'between' +p236091 +tp236092 +a(g236089 +g236091 +S'four' +p236093 +tp236094 +a(g236091 +g236093 +S'and' +p236095 +tp236096 +a(g236093 +g236095 +S'six' +p236097 +tp236098 +a(g236095 +g236097 +S'months,' +p236099 +tp236100 +a(g236097 +g236099 +S'the' +p236101 +tp236102 +a(g236099 +g236101 +S'painting' +p236103 +tp236104 +a(g236101 +g236103 +S'was' +p236105 +tp236106 +a(g236103 +g236105 +S'probably' +p236107 +tp236108 +a(g236105 +g236107 +S'executed' +p236109 +tp236110 +a(g236107 +g236109 +S'late' +p236111 +tp236112 +a(g236109 +g236111 +S'in' +p236113 +tp236114 +a(g236111 +g236113 +S'the' +p236115 +tp236116 +a(g236113 +g236115 +S'winter' +p236117 +tp236118 +a(g236115 +g236117 +S'of' +p236119 +tp236120 +a(g236117 +g236119 +S'1867' +p236121 +tp236122 +a(g236119 +g236121 +S'during' +p236123 +tp236124 +a(g236121 +g236123 +S'monet\xe2\x80\x99s' +p236125 +tp236126 +a(g236123 +g236125 +S'stay' +p236127 +tp236128 +a(g236125 +g236127 +S'in' +p236129 +tp236130 +a(g236127 +g236129 +S'paris' +p236131 +tp236132 +a(g236129 +g236131 +S'and' +p236133 +tp236134 +a(g236131 +g236133 +S'just' +p236135 +tp236136 +a(g236133 +g236135 +S'before' +p236137 +tp236138 +a(g236135 +g236137 +S'his' +p236139 +tp236140 +a(g236137 +g236139 +S'return' +p236141 +tp236142 +a(g236139 +g236141 +S'to' +p236143 +tp236144 +a(g236141 +g236143 +S'sainte-adresse' +p236145 +tp236146 +a(g236143 +g236145 +S'in' +p236147 +tp236148 +a(g236145 +g236147 +S'january' +p236149 +tp236150 +a(g236147 +g236149 +S'1868.' +p236151 +tp236152 +a(g236149 +g236151 +S'monet' +p236153 +tp236154 +a(g236151 +g236153 +S'made' +p236155 +tp236156 +a(g236153 +g236155 +S'no' +p236157 +tp236158 +a(g236155 +g236157 +S'allusion' +p236159 +tp236160 +a(g236157 +g236159 +S'to' +p236161 +tp236162 +a(g236159 +g236161 +S'the' +p236163 +tp236164 +a(g236161 +g236163 +S'desperate' +p236165 +tp236166 +a(g236163 +g236165 +S'financial' +p236167 +tp236168 +a(g236165 +g236167 +S'straits' +p236169 +tp236170 +a(g236167 +g236169 +S'of' +p236171 +tp236172 +a(g236169 +g236171 +S'his' +p236173 +tp236174 +a(g236171 +g236173 +S'family' +p236175 +tp236176 +a(g236173 +g236175 +S'at' +p236177 +tp236178 +a(g236175 +g236177 +S'this' +p236179 +tp236180 +a(g236177 +g236179 +S'time,' +p236181 +tp236182 +a(g236179 +g236181 +S'depicting' +p236183 +tp236184 +a(g236181 +g236183 +S'instead' +p236185 +tp236186 +a(g236183 +g236185 +S'a' +p236187 +tp236188 +a(g236185 +g236187 +S'scene' +p236189 +tp236190 +a(g236187 +g236189 +S'of' +p236191 +tp236192 +a(g236189 +g236191 +S'domestic' +p236193 +tp236194 +a(g236191 +g236193 +S'tranquility' +p236195 +tp236196 +a(g236193 +g236195 +S'and' +p236197 +tp236198 +a(g236195 +g236197 +S'bourgeois' +p236199 +tp236200 +a(g236197 +g236199 +S'comfort.' +p236201 +tp236202 +a(g236199 +g236201 +S'the' +p236203 +tp236204 +a(g236201 +g236203 +S'most' +p236205 +tp236206 +a(g236203 +g236205 +S'telling' +p236207 +tp236208 +a(g236205 +g236207 +S'evidence' +p236209 +tp236210 +a(g236207 +g236209 +S'of' +p236211 +tp236212 +a(g236209 +g236211 +S'this' +p236213 +tp236214 +a(g236211 +g236213 +S'is' +p236215 +tp236216 +a(g236213 +g236215 +S'the' +p236217 +tp236218 +a(g236215 +g236217 +S'identity' +p236219 +tp236220 +a(g236217 +g236219 +S'of' +p236221 +tp236222 +a(g236219 +g236221 +S'the' +p236223 +tp236224 +a(g236221 +g236223 +S'woman' +p236225 +tp236226 +a(g236223 +g236225 +S'seated' +p236227 +tp236228 +a(g236225 +g236227 +S'beside' +p236229 +tp236230 +a(g236227 +g236229 +S'the' +p236231 +tp236232 +a(g236229 +g236231 +S'cradle.' +p236233 +tp236234 +a(g236231 +g236233 +S'although' +p236235 +tp236236 +a(g236233 +g236235 +S'she' +p236237 +tp236238 +a(g236235 +g236237 +S'is' +p236239 +tp236240 +a(g236237 +g236239 +S'typically' +p236241 +tp236242 +a(g236239 +g236241 +S'identified' +p236243 +tp236244 +a(g236241 +g236243 +S'as' +p236245 +tp236246 +a(g236243 +g236245 +S'camille,' +p236247 +tp236248 +a(g236245 +g236247 +S'her' +p236249 +tp236250 +a(g236247 +g236249 +S'white' +p236251 +tp236252 +a(g236249 +g236251 +S'cap' +p236253 +tp236254 +a(g236251 +g236253 +S'and' +p236255 +tp236256 +a(g236253 +g236255 +S'modest' +p236257 +tp236258 +a(g236255 +g236257 +S'dark' +p236259 +tp236260 +a(g236257 +g236259 +S'dress' +p236261 +tp236262 +a(g236259 +g236261 +S'suggest' +p236263 +tp236264 +a(g236261 +g236263 +S'she' +p236265 +tp236266 +a(g236263 +g236265 +S'may' +p236267 +tp236268 +a(g236265 +g236267 +S'be' +p236269 +tp236270 +a(g236267 +g236269 +S'the' +p236271 +tp236272 +a(g236269 +g236271 +S'child\xe2\x80\x99s' +p236273 +tp236274 +a(g236271 +g236273 +S'wet' +p236275 +tp236276 +a(g236273 +g236275 +S'nurse' +p236277 +tp236278 +a(g236275 +g236277 +S'rather' +p236279 +tp236280 +a(g236277 +g236279 +S'than' +p236281 +tp236282 +a(g236279 +g236281 +S'his' +p236283 +tp236284 +a(g236281 +g236283 +S'mother,' +p236285 +tp236286 +a(g236283 +g236285 +S'something' +p236287 +tp236288 +a(g236285 +g236287 +S'that' +p236289 +tp236290 +a(g236287 +g236289 +S'is' +p236291 +tp236292 +a(g236289 +g236291 +S'more' +p236293 +tp236294 +a(g236291 +g236293 +S'in' +p236295 +tp236296 +a(g236293 +g236295 +S'keeping' +p236297 +tp236298 +a(g236295 +g236297 +S'with' +p236299 +tp236300 +a(g236297 +g236299 +S'the' +p236301 +tp236302 +a(g236299 +g236301 +S'standard' +p236303 +tp236304 +a(g236301 +g236303 +S'of' +p236305 +tp236306 +a(g236303 +g236305 +S'living' +p236307 +tp236308 +a(g236305 +g236307 +S'to' +p236309 +tp236310 +a(g236307 +g236309 +S'which' +p236311 +tp236312 +a(g236309 +g236311 +S'the' +p236313 +tp236314 +a(g236311 +g236313 +S'artist' +p236315 +tp236316 +a(g236313 +g236315 +S'aspired' +p236317 +tp236318 +a(g236315 +g236317 +S'than' +p236319 +tp236320 +a(g236317 +g236319 +S'with' +p236321 +tp236322 +a(g236319 +g236321 +S'his' +p236323 +tp236324 +a(g236321 +g236323 +S'current' +p236325 +tp236326 +a(g236323 +g236325 +S'station.' +p236327 +tp236328 +a(g236325 +g236327 +S'(text' +p236329 +tp236330 +a(g236327 +g236329 +S'by' +p236331 +tp236332 +a(g236329 +g236331 +S'kimberly' +p236333 +tp236334 +a(g236331 +g236333 +S'jones,' +p236335 +tp236336 +a(g236333 +g236335 +S'notes' +p236337 +tp236338 +a(g236335 +g236337 +S'' +p236341 +tp236342 +a(g236339 +g236341 +S'' +p236345 +tp236346 +a(g236343 +g236345 +S'woman' +p236347 +tp236348 +a(g236345 +g236347 +S'with' +p236349 +tp236350 +a(g236347 +g236349 +S'a' +p236351 +tp236352 +a(g236349 +g236351 +S'parasol—madame' +p236353 +tp236354 +a(g236351 +g236353 +S'monet' +p236355 +tp236356 +a(g236353 +g236355 +S'and' +p236357 +tp236358 +a(g236355 +g236357 +S'her' +p236359 +tp236360 +a(g236357 +g236359 +S'son' +p236361 +tp236362 +a(g236359 +g236361 +S'camille,' +p236363 +tp236364 +a(g236361 +g236363 +S'dressed' +p236365 +tp236366 +a(g236363 +g236365 +S'in' +p236367 +tp236368 +a(g236365 +g236367 +S'white' +p236369 +tp236370 +a(g236367 +g236369 +S'and' +p236371 +tp236372 +a(g236369 +g236371 +S'wearing' +p236373 +tp236374 +a(g236371 +g236373 +S'a' +p236375 +tp236376 +a(g236373 +g236375 +S'veiled' +p236377 +tp236378 +a(g236375 +g236377 +S'hat,' +p236379 +tp236380 +a(g236377 +g236379 +S'stands' +p236381 +tp236382 +a(g236379 +g236381 +S'on' +p236383 +tp236384 +a(g236381 +g236383 +S'a' +p236385 +tp236386 +a(g236383 +g236385 +S'hill,' +p236387 +tp236388 +a(g236385 +g236387 +S'her' +p236389 +tp236390 +a(g236387 +g236389 +S'body' +p236391 +tp236392 +a(g236389 +g236391 +S'placed' +p236393 +tp236394 +a(g236391 +g236393 +S'slightly' +p236395 +tp236396 +a(g236393 +g236395 +S'off' +p236397 +tp236398 +a(g236395 +g236397 +S'center' +p236399 +tp236400 +a(g236397 +g236399 +S'but' +p236401 +tp236402 +a(g236399 +g236401 +S'balanced' +p236403 +tp236404 +a(g236401 +g236403 +S'visually' +p236405 +tp236406 +a(g236403 +g236405 +S'by' +p236407 +tp236408 +a(g236405 +g236407 +S'the' +p236409 +tp236410 +a(g236407 +g236409 +S'green' +p236411 +tp236412 +a(g236409 +g236411 +S'and' +p236413 +tp236414 +a(g236411 +g236413 +S'white' +p236415 +tp236416 +a(g236413 +g236415 +S'parasol' +p236417 +tp236418 +a(g236415 +g236417 +S'she' +p236419 +tp236420 +a(g236417 +g236419 +S'carries.' +p236421 +tp236422 +a(g236419 +g236421 +S'her' +p236423 +tp236424 +a(g236421 +g236423 +S'gaze' +p236425 +tp236426 +a(g236423 +g236425 +S'and' +p236427 +tp236428 +a(g236425 +g236427 +S'the' +p236429 +tp236430 +a(g236427 +g236429 +S'angle' +p236431 +tp236432 +a(g236429 +g236431 +S'of' +p236433 +tp236434 +a(g236431 +g236433 +S'her' +p236435 +tp236436 +a(g236433 +g236435 +S'body' +p236437 +tp236438 +a(g236435 +g236437 +S'suggest' +p236439 +tp236440 +a(g236437 +g236439 +S'that' +p236441 +tp236442 +a(g236439 +g236441 +S'she' +p236443 +tp236444 +a(g236441 +g236443 +S'has' +p236445 +tp236446 +a(g236443 +g236445 +S'suddenly' +p236447 +tp236448 +a(g236445 +g236447 +S'become' +p236449 +tp236450 +a(g236447 +g236449 +S'aware' +p236451 +tp236452 +a(g236449 +g236451 +S'of' +p236453 +tp236454 +a(g236451 +g236453 +S'the' +p236455 +tp236456 +a(g236453 +g236455 +S'viewer\xe2\x80\x99s' +p236457 +tp236458 +a(g236455 +g236457 +S'presence' +p236459 +tp236460 +a(g236457 +g236459 +S'and' +p236461 +tp236462 +a(g236459 +g236461 +S'has' +p236463 +tp236464 +a(g236461 +g236463 +S'turned' +p236465 +tp236466 +a(g236463 +g236465 +S'in' +p236467 +tp236468 +a(g236465 +g236467 +S'response,' +p236469 +tp236470 +a(g236467 +g236469 +S'creating' +p236471 +tp236472 +a(g236469 +g236471 +S'a' +p236473 +tp236474 +a(g236471 +g236473 +S'convincing' +p236475 +tp236476 +a(g236473 +g236475 +S'illusion' +p236477 +tp236478 +a(g236475 +g236477 +S'of' +p236479 +tp236480 +a(g236477 +g236479 +S'movement' +p236481 +tp236482 +a(g236479 +g236481 +S'frozen' +p236483 +tp236484 +a(g236481 +g236483 +S'in' +p236485 +tp236486 +a(g236483 +g236485 +S'time.' +p236487 +tp236488 +a(g236485 +g236487 +S'behind' +p236489 +tp236490 +a(g236487 +g236489 +S'and' +p236491 +tp236492 +a(g236489 +g236491 +S'to' +p236493 +tp236494 +a(g236491 +g236493 +S'the' +p236495 +tp236496 +a(g236493 +g236495 +S'left' +p236497 +tp236498 +a(g236495 +g236497 +S'of' +p236499 +tp236500 +a(g236497 +g236499 +S'camille' +p236501 +tp236502 +a(g236499 +g236501 +S'is' +p236503 +tp236504 +a(g236501 +g236503 +S'the' +p236505 +tp236506 +a(g236503 +g236505 +S'much' +p236507 +tp236508 +a(g236505 +g236507 +S'smaller' +p236509 +tp236510 +a(g236507 +g236509 +S'form' +p236511 +tp236512 +a(g236509 +g236511 +S'of' +p236513 +tp236514 +a(g236511 +g236513 +S'their' +p236515 +tp236516 +a(g236513 +g236515 +S'son' +p236517 +tp236518 +a(g236515 +g236517 +S'jean,' +p236519 +tp236520 +a(g236517 +g236519 +S'who' +p236521 +tp236522 +a(g236519 +g236521 +S'was' +p236523 +tp236524 +a(g236521 +g236523 +S'almost' +p236525 +tp236526 +a(g236523 +g236525 +S'eight' +p236527 +tp236528 +a(g236525 +g236527 +S'years' +p236529 +tp236530 +a(g236527 +g236529 +S'old' +p236531 +tp236532 +a(g236529 +g236531 +S'at' +p236533 +tp236534 +a(g236531 +g236533 +S'the' +p236535 +tp236536 +a(g236533 +g236535 +S'time.' +p236537 +tp236538 +a(g236535 +g236537 +S'the' +p236539 +tp236540 +a(g236537 +g236539 +S'low' +p236541 +tp236542 +a(g236539 +g236541 +S'horizon' +p236543 +tp236544 +a(g236541 +g236543 +S'line' +p236545 +tp236546 +a(g236543 +g236545 +S'and' +p236547 +tp236548 +a(g236545 +g236547 +S'the' +p236549 +tp236550 +a(g236547 +g236549 +S'juxtaposition' +p236551 +tp236552 +a(g236549 +g236551 +S'of' +p236553 +tp236554 +a(g236551 +g236553 +S'her' +p236555 +tp236556 +a(g236553 +g236555 +S'form' +p236557 +tp236558 +a(g236555 +g236557 +S'against' +p236559 +tp236560 +a(g236557 +g236559 +S'the' +p236561 +tp236562 +a(g236559 +g236561 +S'sky' +p236563 +tp236564 +a(g236561 +g236563 +S'give' +p236565 +tp236566 +a(g236563 +g236565 +S'the' +p236567 +tp236568 +a(g236565 +g236567 +S'figure' +p236569 +tp236570 +a(g236567 +g236569 +S'a' +p236571 +tp236572 +a(g236569 +g236571 +S'feeling' +p236573 +tp236574 +a(g236571 +g236573 +S'of' +p236575 +tp236576 +a(g236573 +g236575 +S'monumentality' +p236577 +tp236578 +a(g236575 +g236577 +S'that' +p236579 +tp236580 +a(g236577 +g236579 +S'is' +p236581 +tp236582 +a(g236579 +g236581 +S'unusual' +p236583 +tp236584 +a(g236581 +g236583 +S'in' +p236585 +tp236586 +a(g236583 +g236585 +S'monet\xe2\x80\x99s' +p236587 +tp236588 +a(g236585 +g236587 +S'paintings' +p236589 +tp236590 +a(g236587 +g236589 +S'of' +p236591 +tp236592 +a(g236589 +g236591 +S'the' +p236593 +tp236594 +a(g236591 +g236593 +S'mid-1870s.' +p236595 +tp236596 +a(g236593 +g236595 +S'boldly' +p236597 +tp236598 +a(g236595 +g236597 +S'and' +p236599 +tp236600 +a(g236597 +g236599 +S'rapidly' +p236601 +tp236602 +a(g236599 +g236601 +S'executed' +p236603 +tp236604 +a(g236601 +g236603 +S'out' +p236605 +tp236606 +a(g236603 +g236605 +S'of' +p236607 +tp236608 +a(g236605 +g236607 +S'doors,' +p236609 +tp236610 +a(g236607 +g236609 +S'this' +p236611 +tp236612 +a(g236609 +g236611 +S'painting' +p236613 +tp236614 +a(g236611 +g236613 +S'was' +p236615 +tp236616 +a(g236613 +g236615 +S'probably' +p236617 +tp236618 +a(g236615 +g236617 +S'created' +p236619 +tp236620 +a(g236617 +g236619 +S'in' +p236621 +tp236622 +a(g236619 +g236621 +S'a' +p236623 +tp236624 +a(g236621 +g236623 +S'single' +p236625 +tp236626 +a(g236623 +g236625 +S'sitting.' +p236627 +tp236628 +a(g236625 +g236627 +S'monet\xe2\x80\x99s' +p236629 +tp236630 +a(g236627 +g236629 +S'depiction' +p236631 +tp236632 +a(g236629 +g236631 +S'of' +p236633 +tp236634 +a(g236631 +g236633 +S'the' +p236635 +tp236636 +a(g236633 +g236635 +S'arrested' +p236637 +tp236638 +a(g236635 +g236637 +S'moment' +p236639 +tp236640 +a(g236637 +g236639 +S'in' +p236641 +tp236642 +a(g236639 +g236641 +S'time' +p236643 +tp236644 +a(g236641 +g236643 +S'is' +p236645 +tp236646 +a(g236643 +g236645 +S'accentuated' +p236647 +tp236648 +a(g236645 +g236647 +S'by' +p236649 +tp236650 +a(g236647 +g236649 +S'the' +p236651 +tp236652 +a(g236649 +g236651 +S'spontaneity' +p236653 +tp236654 +a(g236651 +g236653 +S'of' +p236655 +tp236656 +a(g236653 +g236655 +S'the' +p236657 +tp236658 +a(g236655 +g236657 +S'brushwork' +p236659 +tp236660 +a(g236657 +g236659 +S'and' +p236661 +tp236662 +a(g236659 +g236661 +S'bold' +p236663 +tp236664 +a(g236661 +g236663 +S'color.' +p236665 +tp236666 +a(g236663 +g236665 +S'the' +p236667 +tp236668 +a(g236665 +g236667 +S'sky' +p236669 +tp236670 +a(g236667 +g236669 +S'was' +p236671 +tp236672 +a(g236669 +g236671 +S'painted' +p236673 +tp236674 +a(g236671 +g236673 +S'quickly,' +p236675 +tp236676 +a(g236673 +g236675 +S'with' +p236677 +tp236678 +a(g236675 +g236677 +S'strokes' +p236679 +tp236680 +a(g236677 +g236679 +S'of' +p236681 +tp236682 +a(g236679 +g236681 +S'varying' +p236683 +tp236684 +a(g236681 +g236683 +S'size' +p236685 +tp236686 +a(g236683 +g236685 +S'and' +p236687 +tp236688 +a(g236685 +g236687 +S'direction,' +p236689 +tp236690 +a(g236687 +g236689 +S'and' +p236691 +tp236692 +a(g236689 +g236691 +S'large' +p236693 +tp236694 +a(g236691 +g236693 +S'patches' +p236695 +tp236696 +a(g236693 +g236695 +S'of' +p236697 +tp236698 +a(g236695 +g236697 +S'ground' +p236699 +tp236700 +a(g236697 +g236699 +S'left' +p236701 +tp236702 +a(g236699 +g236701 +S'exposed.' +p236703 +tp236704 +a(g236701 +g236703 +S'although' +p236705 +tp236706 +a(g236703 +g236705 +S'he' +p236707 +tp236708 +a(g236705 +g236707 +S'painted' +p236709 +tp236710 +a(g236707 +g236709 +S'the' +p236711 +tp236712 +a(g236709 +g236711 +S'sky' +p236713 +tp236714 +a(g236711 +g236713 +S'first,' +p236715 +tp236716 +a(g236713 +g236715 +S'he' +p236717 +tp236718 +a(g236715 +g236717 +S'retouched' +p236719 +tp236720 +a(g236717 +g236719 +S'it' +p236721 +tp236722 +a(g236719 +g236721 +S'after' +p236723 +tp236724 +a(g236721 +g236723 +S'adding' +p236725 +tp236726 +a(g236723 +g236725 +S'the' +p236727 +tp236728 +a(g236725 +g236727 +S'figures—drawing' +p236729 +tp236730 +a(g236727 +g236729 +S'the' +p236731 +tp236732 +a(g236729 +g236731 +S'brush' +p236733 +tp236734 +a(g236731 +g236733 +S'around' +p236735 +tp236736 +a(g236733 +g236735 +S'their' +p236737 +tp236738 +a(g236735 +g236737 +S'shapes,' +p236739 +tp236740 +a(g236737 +g236739 +S'he' +p236741 +tp236742 +a(g236739 +g236741 +S'further' +p236743 +tp236744 +a(g236741 +g236743 +S'defined' +p236745 +tp236746 +a(g236743 +g236745 +S'them.' +p236747 +tp236748 +a(g236745 +g236747 +S'the' +p236749 +tp236750 +a(g236747 +g236749 +S'grass' +p236751 +tp236752 +a(g236749 +g236751 +S'is' +p236753 +tp236754 +a(g236751 +g236753 +S'painted' +p236755 +tp236756 +a(g236753 +g236755 +S'with' +p236757 +tp236758 +a(g236755 +g236757 +S'short' +p236759 +tp236760 +a(g236757 +g236759 +S'comma-like' +p236761 +tp236762 +a(g236759 +g236761 +S'strokes' +p236763 +tp236764 +a(g236761 +g236763 +S'in' +p236765 +tp236766 +a(g236763 +g236765 +S'various' +p236767 +tp236768 +a(g236765 +g236767 +S'shades' +p236769 +tp236770 +a(g236767 +g236769 +S'of' +p236771 +tp236772 +a(g236769 +g236771 +S'green,' +p236773 +tp236774 +a(g236771 +g236773 +S'blue,' +p236775 +tp236776 +a(g236773 +g236775 +S'yellow,' +p236777 +tp236778 +a(g236775 +g236777 +S'and' +p236779 +tp236780 +a(g236777 +g236779 +S'red:' +p236781 +tp236782 +a(g236779 +g236781 +S'broad' +p236783 +tp236784 +a(g236781 +g236783 +S'passages' +p236785 +tp236786 +a(g236783 +g236785 +S'of' +p236787 +tp236788 +a(g236785 +g236787 +S'bluegreens' +p236789 +tp236790 +a(g236787 +g236789 +S'were' +p236791 +tp236792 +a(g236789 +g236791 +S'used' +p236793 +tp236794 +a(g236791 +g236793 +S'to' +p236795 +tp236796 +a(g236793 +g236795 +S'indicate' +p236797 +tp236798 +a(g236795 +g236797 +S'shadow' +p236799 +tp236800 +a(g236797 +g236799 +S'and' +p236801 +tp236802 +a(g236799 +g236801 +S'lighter' +p236803 +tp236804 +a(g236801 +g236803 +S'greens,' +p236805 +tp236806 +a(g236803 +g236805 +S'to' +p236807 +tp236808 +a(g236805 +g236807 +S'indicate' +p236809 +tp236810 +a(g236807 +g236809 +S'sunlit' +p236811 +tp236812 +a(g236809 +g236811 +S'areas.' +p236813 +tp236814 +a(g236811 +g236813 +S'this' +p236815 +tp236816 +a(g236813 +g236815 +S'painting' +p236817 +tp236818 +a(g236815 +g236817 +S'was' +p236819 +tp236820 +a(g236817 +g236819 +S'one' +p236821 +tp236822 +a(g236819 +g236821 +S'of' +p236823 +tp236824 +a(g236821 +g236823 +S'eighteen' +p236825 +tp236826 +a(g236823 +g236825 +S'that' +p236827 +tp236828 +a(g236825 +g236827 +S'the' +p236829 +tp236830 +a(g236827 +g236829 +S'artist' +p236831 +tp236832 +a(g236829 +g236831 +S'contributed' +p236833 +tp236834 +a(g236831 +g236833 +S'to' +p236835 +tp236836 +a(g236833 +g236835 +S'the' +p236837 +tp236838 +a(g236835 +g236837 +S'second' +p236839 +tp236840 +a(g236837 +g236839 +S'impressionist' +p236841 +tp236842 +a(g236839 +g236841 +S'show' +p236843 +tp236844 +a(g236841 +g236843 +S'(held' +p236845 +tp236846 +a(g236843 +g236845 +S'in' +p236847 +tp236848 +a(g236845 +g236847 +S'april' +p236849 +tp236850 +a(g236847 +g236849 +S'1876).' +p236851 +tp236852 +a(g236849 +g236851 +S'exhibited' +p236853 +tp236854 +a(g236851 +g236853 +S'under' +p236855 +tp236856 +a(g236853 +g236855 +S'the' +p236857 +tp236858 +a(g236855 +g236857 +S'title' +p236859 +tp236860 +a(g236857 +g236859 +S'monet' +p236861 +tp236862 +a(g236859 +g236861 +S'returned' +p236863 +tp236864 +a(g236861 +g236863 +S'to' +p236865 +tp236866 +a(g236863 +g236865 +S'this' +p236867 +tp236868 +a(g236865 +g236867 +S'motif—a' +p236869 +tp236870 +a(g236867 +g236869 +S'woman' +p236871 +tp236872 +a(g236869 +g236871 +S'with' +p236873 +tp236874 +a(g236871 +g236873 +S'a' +p236875 +tp236876 +a(g236873 +g236875 +S'parasol' +p236877 +tp236878 +a(g236875 +g236877 +S'standing' +p236879 +tp236880 +a(g236877 +g236879 +S'on' +p236881 +tp236882 +a(g236879 +g236881 +S'a' +p236883 +tp236884 +a(g236881 +g236883 +S'hill—for' +p236885 +tp236886 +a(g236883 +g236885 +S'a' +p236887 +tp236888 +a(g236885 +g236887 +S'pair' +p236889 +tp236890 +a(g236887 +g236889 +S'of' +p236891 +tp236892 +a(g236889 +g236891 +S'paintings' +p236893 +tp236894 +a(g236891 +g236893 +S'that' +p236895 +tp236896 +a(g236893 +g236895 +S'he' +p236897 +tp236898 +a(g236895 +g236897 +S'executed' +p236899 +tp236900 +a(g236897 +g236899 +S'in' +p236901 +tp236902 +a(g236899 +g236901 +S'the' +p236903 +tp236904 +a(g236901 +g236903 +S'summer' +p236905 +tp236906 +a(g236903 +g236905 +S'of' +p236907 +tp236908 +a(g236905 +g236907 +S'1886' +p236909 +tp236910 +a(g236907 +g236909 +S'(musée' +p236911 +tp236912 +a(g236909 +g236911 +S'd' +p236913 +tp236914 +a(g236911 +g236913 +S'orsay,' +p236915 +tp236916 +a(g236913 +g236915 +S'paris).' +p236917 +tp236918 +a(g236915 +g236917 +S'the' +p236919 +tp236920 +a(g236917 +g236919 +S'inspiration' +p236921 +tp236922 +a(g236919 +g236921 +S'for' +p236923 +tp236924 +a(g236921 +g236923 +S'these' +p236925 +tp236926 +a(g236923 +g236925 +S'paintings' +p236927 +tp236928 +a(g236925 +g236927 +S'was' +p236929 +tp236930 +a(g236927 +g236929 +S'the' +p236931 +tp236932 +a(g236929 +g236931 +S'image' +p236933 +tp236934 +a(g236931 +g236933 +S'of' +p236935 +tp236936 +a(g236933 +g236935 +S'suzanne,' +p236937 +tp236938 +a(g236935 +g236937 +S'a' +p236939 +tp236940 +a(g236937 +g236939 +S'daughter' +p236941 +tp236942 +a(g236939 +g236941 +S'of' +p236943 +tp236944 +a(g236941 +g236943 +S'his' +p236945 +tp236946 +a(g236943 +g236945 +S'friends' +p236947 +tp236948 +a(g236945 +g236947 +S'alice' +p236949 +tp236950 +a(g236947 +g236949 +S'and' +p236951 +tp236952 +a(g236949 +g236951 +S'ernest' +p236953 +tp236954 +a(g236951 +g236953 +S'hoschedé,' +p236955 +tp236956 +a(g236953 +g236955 +S'walking' +p236957 +tp236958 +a(g236955 +g236957 +S'along' +p236959 +tp236960 +a(g236957 +g236959 +S'an' +p236961 +tp236962 +a(g236959 +g236961 +S'embankment' +p236963 +tp236964 +a(g236961 +g236963 +S'on' +p236965 +tp236966 +a(g236963 +g236965 +S'the' +p236967 +tp236968 +a(g236965 +g236967 +S'\xc3\xaele' +p236969 +tp236970 +a(g236967 +g236969 +S'aux' +p236971 +tp236972 +a(g236969 +g236971 +S'orties' +p236973 +tp236974 +a(g236971 +g236973 +S'at' +p236975 +tp236976 +a(g236973 +g236975 +S'giverny;' +p236977 +tp236978 +a(g236975 +g236977 +S'upon' +p236979 +tp236980 +a(g236977 +g236979 +S'seeing' +p236981 +tp236982 +a(g236979 +g236981 +S'her' +p236983 +tp236984 +a(g236981 +g236983 +S'silhouetted' +p236985 +tp236986 +a(g236983 +g236985 +S'against' +p236987 +tp236988 +a(g236985 +g236987 +S'the' +p236989 +tp236990 +a(g236987 +g236989 +S'sky,' +p236991 +tp236992 +a(g236989 +g236991 +S'monet' +p236993 +tp236994 +a(g236991 +g236993 +S'is' +p236995 +tp236996 +a(g236993 +g236995 +S'said' +p236997 +tp236998 +a(g236995 +g236997 +S'to' +p236999 +tp237000 +a(g236997 +g236999 +S'have' +p237001 +tp237002 +a(g236999 +g237001 +S'remarked:' +p237003 +tp237004 +a(g237001 +g237003 +S'"but' +p237005 +tp237006 +a(g237003 +g237005 +S'it\xe2\x80\x99s' +p237007 +tp237008 +a(g237005 +g237007 +S'like' +p237009 +tp237010 +a(g237007 +g237009 +S'camille' +p237011 +tp237012 +a(g237009 +g237011 +S'at' +p237013 +tp237014 +a(g237011 +g237013 +S'argenteuil!' +p237015 +tp237016 +a(g237013 +g237015 +S'well,' +p237017 +tp237018 +a(g237015 +g237017 +S'tomorrow' +p237019 +tp237020 +a(g237017 +g237019 +S'we\xe2\x80\x99ll' +p237021 +tp237022 +a(g237019 +g237021 +S'come' +p237023 +tp237024 +a(g237021 +g237023 +S'back' +p237025 +tp237026 +a(g237023 +g237025 +S'and' +p237027 +tp237028 +a(g237025 +g237027 +S'you\xe2\x80\x99ll' +p237029 +tp237030 +a(g237027 +g237029 +S'pose' +p237031 +tp237032 +a(g237029 +g237031 +S'here."' +p237033 +tp237034 +a(g237031 +g237033 +S'(text' +p237035 +tp237036 +a(g237033 +g237035 +S'by' +p237037 +tp237038 +a(g237035 +g237037 +S'kimberly' +p237039 +tp237040 +a(g237037 +g237039 +S'jones,' +p237041 +tp237042 +a(g237039 +g237041 +S'notes' +p237043 +tp237044 +a(g237041 +g237043 +S'' +p237047 +tp237048 +a(g237045 +g237047 +S'honfleur,' +p237049 +tp237050 +a(g237047 +g237049 +S'a' +p237051 +tp237052 +a(g237049 +g237051 +S'historic' +p237053 +tp237054 +a(g237051 +g237053 +S'port' +p237055 +tp237056 +a(g237053 +g237055 +S'on' +p237057 +tp237058 +a(g237055 +g237057 +S'the' +p237059 +tp237060 +a(g237057 +g237059 +S'seine' +p237061 +tp237062 +a(g237059 +g237061 +S'estuary' +p237063 +tp237064 +a(g237061 +g237063 +S'in' +p237065 +tp237066 +a(g237063 +g237065 +S'normandy,' +p237067 +tp237068 +a(g237065 +g237067 +S'had' +p237069 +tp237070 +a(g237067 +g237069 +S'long' +p237071 +tp237072 +a(g237069 +g237071 +S'been' +p237073 +tp237074 +a(g237071 +g237073 +S'a' +p237075 +tp237076 +a(g237073 +g237075 +S'favorite' +p237077 +tp237078 +a(g237075 +g237077 +S'with' +p237079 +tp237080 +a(g237077 +g237079 +S'artists' +p237081 +tp237082 +a(g237079 +g237081 +S'from' +p237083 +tp237084 +a(g237081 +g237083 +S'england' +p237085 +tp237086 +a(g237083 +g237085 +S'and' +p237087 +tp237088 +a(g237085 +g237087 +S'france:' +p237089 +tp237090 +a(g237087 +g237089 +S'j.' +p237091 +tp237092 +a(g237089 +g237091 +S'm.' +p237093 +tp237094 +a(g237091 +g237093 +S'w.' +p237095 +tp237096 +a(g237093 +g237095 +S'turner,' +p237097 +tp237098 +a(g237095 +g237097 +S'gustave' +p237099 +tp237100 +a(g237097 +g237099 +S'courbet,' +p237101 +tp237102 +a(g237099 +g237101 +S'jean-baptiste-camille' +p237103 +tp237104 +a(g237101 +g237103 +S'corot,' +p237105 +tp237106 +a(g237103 +g237105 +S'eugène' +p237107 +tp237108 +a(g237105 +g237107 +S'boudin,' +p237109 +tp237110 +a(g237107 +g237109 +S'and' +p237111 +tp237112 +a(g237109 +g237111 +S'claude' +p237113 +tp237114 +a(g237111 +g237113 +S'monet' +p237115 +tp237116 +a(g237113 +g237115 +S'all' +p237117 +tp237118 +a(g237115 +g237117 +S'worked' +p237119 +tp237120 +a(g237117 +g237119 +S'there.' +p237121 +tp237122 +a(g237119 +g237121 +S'seurat\xe2\x80\x99s' +p237123 +tp237124 +a(g237121 +g237123 +S'stay' +p237125 +tp237126 +a(g237123 +g237125 +S'in' +p237127 +tp237128 +a(g237125 +g237127 +S'the' +p237129 +tp237130 +a(g237127 +g237129 +S'summer' +p237131 +tp237132 +a(g237129 +g237131 +S'of' +p237133 +tp237134 +a(g237131 +g237133 +S'1886' +p237135 +tp237136 +a(g237133 +g237135 +S'resulted' +p237137 +tp237138 +a(g237135 +g237137 +S'in' +p237139 +tp237140 +a(g237137 +g237139 +S'seven' +p237141 +tp237142 +a(g237139 +g237141 +S'canvases,' +p237143 +tp237144 +a(g237141 +g237143 +S'most' +p237145 +tp237146 +a(g237143 +g237145 +S'of' +p237147 +tp237148 +a(g237145 +g237147 +S'which' +p237149 +tp237150 +a(g237147 +g237149 +S'focus' +p237151 +tp237152 +a(g237149 +g237151 +S'on' +p237153 +tp237154 +a(g237151 +g237153 +S'ordinary' +p237155 +tp237156 +a(g237153 +g237155 +S'sites' +p237157 +tp237158 +a(g237155 +g237157 +S'rather' +p237159 +tp237160 +a(g237157 +g237159 +S'than' +p237161 +tp237162 +a(g237159 +g237161 +S'the' +p237163 +tp237164 +a(g237161 +g237163 +S'picturesque' +p237165 +tp237166 +a(g237163 +g237165 +S'views' +p237167 +tp237168 +a(g237165 +g237167 +S'offered' +p237169 +tp237170 +a(g237167 +g237169 +S'by' +p237171 +tp237172 +a(g237169 +g237171 +S'the' +p237173 +tp237174 +a(g237171 +g237173 +S'quaint' +p237175 +tp237176 +a(g237173 +g237175 +S'town.' +p237177 +tp237178 +a(g237175 +g237177 +S'the' +p237179 +tp237180 +a(g237177 +g237179 +S'lighthouse,' +p237181 +tp237182 +a(g237179 +g237181 +S'however,' +p237183 +tp237184 +a(g237181 +g237183 +S'was' +p237185 +tp237186 +a(g237183 +g237185 +S'a' +p237187 +tp237188 +a(g237185 +g237187 +S'motif' +p237189 +tp237190 +a(g237187 +g237189 +S'that' +p237191 +tp237192 +a(g237189 +g237191 +S'appealed' +p237193 +tp237194 +a(g237191 +g237193 +S'to' +p237195 +tp237196 +a(g237193 +g237195 +S'many' +p237197 +tp237198 +a(g237195 +g237197 +S'of' +p237199 +tp237200 +a(g237197 +g237199 +S'seurat\xe2\x80\x99s' +p237201 +tp237202 +a(g237199 +g237201 +S'artistic' +p237203 +tp237204 +a(g237201 +g237203 +S'predecessors:' +p237205 +tp237206 +a(g237203 +g237205 +S'boudin,' +p237207 +tp237208 +a(g237205 +g237207 +S'for' +p237209 +tp237210 +a(g237207 +g237209 +S'example,' +p237211 +tp237212 +a(g237209 +g237211 +S'had' +p237213 +tp237214 +a(g237211 +g237213 +S'painted' +p237215 +tp237216 +a(g237213 +g237215 +S'this' +p237217 +tp237218 +a(g237215 +g237217 +S'same' +p237219 +tp237220 +a(g237217 +g237219 +S'scene' +p237221 +tp237222 +a(g237219 +g237221 +S'twenty' +p237223 +tp237224 +a(g237221 +g237223 +S'years' +p237225 +tp237226 +a(g237223 +g237225 +S'earlier,' +p237227 +tp237228 +a(g237225 +g237227 +S'with' +p237229 +tp237230 +a(g237227 +g237229 +S'the' +p237231 +tp237232 +a(g237229 +g237231 +S'buildings' +p237233 +tp237234 +a(g237231 +g237233 +S'at' +p237235 +tp237236 +a(g237233 +g237235 +S'right' +p237237 +tp237238 +a(g237235 +g237237 +S'and' +p237239 +tp237240 +a(g237237 +g237239 +S'the' +p237241 +tp237242 +a(g237239 +g237241 +S'jetty' +p237243 +tp237244 +a(g237241 +g237243 +S'behind' +p237245 +tp237246 +a(g237243 +g237245 +S'the' +p237247 +tp237248 +a(g237245 +g237247 +S'tower.' +p237249 +tp237250 +a(g237247 +g237249 +S'rather' +p237251 +tp237252 +a(g237249 +g237251 +S'than' +p237253 +tp237254 +a(g237251 +g237253 +S'centering' +p237255 +tp237256 +a(g237253 +g237255 +S'the' +p237257 +tp237258 +a(g237255 +g237257 +S'view,' +p237259 +tp237260 +a(g237257 +g237259 +S'seurat' +p237261 +tp237262 +a(g237259 +g237261 +S'cropped' +p237263 +tp237264 +a(g237261 +g237263 +S'it' +p237265 +tp237266 +a(g237263 +g237265 +S'in' +p237267 +tp237268 +a(g237265 +g237267 +S'an' +p237269 +tp237270 +a(g237267 +g237269 +S'unconventional' +p237271 +tp237272 +a(g237269 +g237271 +S'way,' +p237273 +tp237274 +a(g237271 +g237273 +S'leaving' +p237275 +tp237276 +a(g237273 +g237275 +S'no' +p237277 +tp237278 +a(g237275 +g237277 +S'sky' +p237279 +tp237280 +a(g237277 +g237279 +S'above' +p237281 +tp237282 +a(g237279 +g237281 +S'the' +p237283 +tp237284 +a(g237281 +g237283 +S'tip' +p237285 +tp237286 +a(g237283 +g237285 +S'of' +p237287 +tp237288 +a(g237285 +g237287 +S'the' +p237289 +tp237290 +a(g237287 +g237289 +S'lighthouse' +p237291 +tp237292 +a(g237289 +g237291 +S'and' +p237293 +tp237294 +a(g237291 +g237293 +S'abruptly' +p237295 +tp237296 +a(g237293 +g237295 +S'cutting' +p237297 +tp237298 +a(g237295 +g237297 +S'off' +p237299 +tp237300 +a(g237297 +g237299 +S'objects' +p237301 +tp237302 +a(g237299 +g237301 +S'on' +p237303 +tp237304 +a(g237301 +g237303 +S'the' +p237305 +tp237306 +a(g237303 +g237305 +S'right.' +p237307 +tp237308 +a(g237305 +g237307 +S'the' +p237309 +tp237310 +a(g237307 +g237309 +S'lighthouse' +p237311 +tp237312 +a(g237309 +g237311 +S'stands' +p237313 +tp237314 +a(g237311 +g237313 +S'on' +p237315 +tp237316 +a(g237313 +g237315 +S'the' +p237317 +tp237318 +a(g237315 +g237317 +S'shore' +p237319 +tp237320 +a(g237317 +g237319 +S'in' +p237321 +tp237322 +a(g237319 +g237321 +S'front' +p237323 +tp237324 +a(g237321 +g237323 +S'of' +p237325 +tp237326 +a(g237323 +g237325 +S'a' +p237327 +tp237328 +a(g237325 +g237327 +S'home' +p237329 +tp237330 +a(g237327 +g237329 +S'for' +p237331 +tp237332 +a(g237329 +g237331 +S'old' +p237333 +tp237334 +a(g237331 +g237333 +S'mariners;' +p237335 +tp237336 +a(g237333 +g237335 +S'next' +p237337 +tp237338 +a(g237335 +g237337 +S'to' +p237339 +tp237340 +a(g237337 +g237339 +S'it' +p237341 +tp237342 +a(g237339 +g237341 +S'was' +p237343 +tp237344 +a(g237341 +g237343 +S'a' +p237345 +tp237346 +a(g237343 +g237345 +S'shipyard,' +p237347 +tp237348 +a(g237345 +g237347 +S'whose' +p237349 +tp237350 +a(g237347 +g237349 +S'presence' +p237351 +tp237352 +a(g237349 +g237351 +S'is' +p237353 +tp237354 +a(g237351 +g237353 +S'acknowledged' +p237355 +tp237356 +a(g237353 +g237355 +S'by' +p237357 +tp237358 +a(g237355 +g237357 +S'the' +p237359 +tp237360 +a(g237357 +g237359 +S'boat,' +p237361 +tp237362 +a(g237359 +g237361 +S'trestle,' +p237363 +tp237364 +a(g237361 +g237363 +S'and' +p237365 +tp237366 +a(g237363 +g237365 +S'transport' +p237367 +tp237368 +a(g237365 +g237367 +S'wheel.' +p237369 +tp237370 +a(g237367 +g237369 +S'honfleur\xe2\x80\x99s' +p237371 +tp237372 +a(g237369 +g237371 +S'importance' +p237373 +tp237374 +a(g237371 +g237373 +S'had' +p237375 +tp237376 +a(g237373 +g237375 +S'been' +p237377 +tp237378 +a(g237375 +g237377 +S'eclipsed' +p237379 +tp237380 +a(g237377 +g237379 +S'in' +p237381 +tp237382 +a(g237379 +g237381 +S'the' +p237383 +tp237384 +a(g237381 +g237383 +S'nineteenth' +p237385 +tp237386 +a(g237383 +g237385 +S'century' +p237387 +tp237388 +a(g237385 +g237387 +S'by' +p237389 +tp237390 +a(g237387 +g237389 +S'the' +p237391 +tp237392 +a(g237389 +g237391 +S'robust' +p237393 +tp237394 +a(g237391 +g237393 +S'development' +p237395 +tp237396 +a(g237393 +g237395 +S'of' +p237397 +tp237398 +a(g237395 +g237397 +S'the' +p237399 +tp237400 +a(g237397 +g237399 +S'port' +p237401 +tp237402 +a(g237399 +g237401 +S'at' +p237403 +tp237404 +a(g237401 +g237403 +S'nearby' +p237405 +tp237406 +a(g237403 +g237405 +S'le' +p237407 +tp237408 +a(g237405 +g237407 +S'havre.' +p237409 +tp237410 +a(g237407 +g237409 +S'here' +p237411 +tp237412 +a(g237409 +g237411 +S'the' +p237413 +tp237414 +a(g237411 +g237413 +S'empty' +p237415 +tp237416 +a(g237413 +g237415 +S'beach' +p237417 +tp237418 +a(g237415 +g237417 +S'contributes' +p237419 +tp237420 +a(g237417 +g237419 +S'to' +p237421 +tp237422 +a(g237419 +g237421 +S'the' +p237423 +tp237424 +a(g237421 +g237423 +S'sense' +p237425 +tp237426 +a(g237423 +g237425 +S'of' +p237427 +tp237428 +a(g237425 +g237427 +S'desertion' +p237429 +tp237430 +a(g237427 +g237429 +S'suggested' +p237431 +tp237432 +a(g237429 +g237431 +S'by' +p237433 +tp237434 +a(g237431 +g237433 +S'the' +p237435 +tp237436 +a(g237433 +g237435 +S'nautical' +p237437 +tp237438 +a(g237435 +g237437 +S'odds' +p237439 +tp237440 +a(g237437 +g237439 +S'and' +p237441 +tp237442 +a(g237439 +g237441 +S'ends' +p237443 +tp237444 +a(g237441 +g237443 +S'left' +p237445 +tp237446 +a(g237443 +g237445 +S'lying' +p237447 +tp237448 +a(g237445 +g237447 +S'in' +p237449 +tp237450 +a(g237447 +g237449 +S'the' +p237451 +tp237452 +a(g237449 +g237451 +S'sand.' +p237453 +tp237454 +a(g237451 +g237453 +S'indeed' +p237455 +tp237456 +a(g237453 +g237455 +S'the' +p237457 +tp237458 +a(g237455 +g237457 +S'scene' +p237459 +tp237460 +a(g237457 +g237459 +S'is' +p237461 +tp237462 +a(g237459 +g237461 +S'almost' +p237463 +tp237464 +a(g237461 +g237463 +S'completely' +p237465 +tp237466 +a(g237463 +g237465 +S'static:' +p237467 +tp237468 +a(g237465 +g237467 +S'a' +p237469 +tp237470 +a(g237467 +g237469 +S'sailboat' +p237471 +tp237472 +a(g237469 +g237471 +S'drifting' +p237473 +tp237474 +a(g237471 +g237473 +S'off' +p237475 +tp237476 +a(g237473 +g237475 +S'in' +p237477 +tp237478 +a(g237475 +g237477 +S'the' +p237479 +tp237480 +a(g237477 +g237479 +S'calm' +p237481 +tp237482 +a(g237479 +g237481 +S'waters' +p237483 +tp237484 +a(g237481 +g237483 +S'at' +p237485 +tp237486 +a(g237483 +g237485 +S'left' +p237487 +tp237488 +a(g237485 +g237487 +S'is' +p237489 +tp237490 +a(g237487 +g237489 +S'the' +p237491 +tp237492 +a(g237489 +g237491 +S'only' +p237493 +tp237494 +a(g237491 +g237493 +S'suggestion' +p237495 +tp237496 +a(g237493 +g237495 +S'of' +p237497 +tp237498 +a(g237495 +g237497 +S'movement' +p237499 +tp237500 +a(g237497 +g237499 +S'on' +p237501 +tp237502 +a(g237499 +g237501 +S'a' +p237503 +tp237504 +a(g237501 +g237503 +S'perfectly' +p237505 +tp237506 +a(g237503 +g237505 +S'serene' +p237507 +tp237508 +a(g237505 +g237507 +S'day.' +p237509 +tp237510 +a(g237507 +g237509 +S'in' +p237511 +tp237512 +a(g237509 +g237511 +S'contrast' +p237513 +tp237514 +a(g237511 +g237513 +S'to' +p237515 +tp237516 +a(g237513 +g237515 +S'seurat\xe2\x80\x99s' +p237517 +tp237518 +a(g237515 +g237517 +S'crowded' +p237519 +tp237520 +a(g237517 +g237519 +S'scenes' +p237521 +tp237522 +a(g237519 +g237521 +S'of' +p237523 +tp237524 +a(g237521 +g237523 +S'urban' +p237525 +tp237526 +a(g237523 +g237525 +S'entertainment' +p237527 +tp237528 +a(g237525 +g237527 +S'and' +p237529 +tp237530 +a(g237527 +g237529 +S'leisure,' +p237531 +tp237532 +a(g237529 +g237531 +S'the' +p237533 +tp237534 +a(g237531 +g237533 +S'artist\xe2\x80\x99s' +p237535 +tp237536 +a(g237533 +g237535 +S'normandy' +p237537 +tp237538 +a(g237535 +g237537 +S'seascapes' +p237539 +tp237540 +a(g237537 +g237539 +S'avoid' +p237541 +tp237542 +a(g237539 +g237541 +S'the' +p237543 +tp237544 +a(g237541 +g237543 +S'bustle' +p237545 +tp237546 +a(g237543 +g237545 +S'typically' +p237547 +tp237548 +a(g237545 +g237547 +S'associated' +p237549 +tp237550 +a(g237547 +g237549 +S'with' +p237551 +tp237552 +a(g237549 +g237551 +S'such' +p237553 +tp237554 +a(g237551 +g237553 +S'popular' +p237555 +tp237556 +a(g237553 +g237555 +S'tourist' +p237557 +tp237558 +a(g237555 +g237557 +S'destinations,' +p237559 +tp237560 +a(g237557 +g237559 +S'especially' +p237561 +tp237562 +a(g237559 +g237561 +S'during' +p237563 +tp237564 +a(g237561 +g237563 +S'the' +p237565 +tp237566 +a(g237563 +g237565 +S'summer.' +p237567 +tp237568 +a(g237565 +g237567 +S'the' +p237569 +tp237570 +a(g237567 +g237569 +S'critic' +p237571 +tp237572 +a(g237569 +g237571 +S'j.-k.' +p237573 +tp237574 +a(g237571 +g237573 +S'huysmans' +p237575 +tp237576 +a(g237573 +g237575 +S'reflected' +p237577 +tp237578 +a(g237575 +g237577 +S'on' +p237579 +tp237580 +a(g237577 +g237579 +S'the' +p237581 +tp237582 +a(g237579 +g237581 +S'poetic' +p237583 +tp237584 +a(g237581 +g237583 +S'stillness' +p237585 +tp237586 +a(g237583 +g237585 +S'of' +p237587 +tp237588 +a(g237585 +g237587 +S'seurat\xe2\x80\x99s' +p237589 +tp237590 +a(g237587 +g237589 +S'honfleur' +p237591 +tp237592 +a(g237589 +g237591 +S'paintings' +p237593 +tp237594 +a(g237591 +g237593 +S'in' +p237595 +tp237596 +a(g237593 +g237595 +S'1887,' +p237597 +tp237598 +a(g237595 +g237597 +S'writing,' +p237599 +tp237600 +a(g237597 +g237599 +S'"i' +p237601 +tp237602 +a(g237599 +g237601 +S'find' +p237603 +tp237604 +a(g237601 +g237603 +S'in' +p237605 +tp237606 +a(g237603 +g237605 +S'them' +p237607 +tp237608 +a(g237605 +g237607 +S'a' +p237609 +tp237610 +a(g237607 +g237609 +S'fullness' +p237611 +tp237612 +a(g237609 +g237611 +S'of' +p237613 +tp237614 +a(g237611 +g237613 +S'expansive' +p237615 +tp237616 +a(g237613 +g237615 +S'air,' +p237617 +tp237618 +a(g237615 +g237617 +S'a' +p237619 +tp237620 +a(g237617 +g237619 +S'siesta' +p237621 +tp237622 +a(g237619 +g237621 +S'of' +p237623 +tp237624 +a(g237621 +g237623 +S'a' +p237625 +tp237626 +a(g237623 +g237625 +S'quiet' +p237627 +tp237628 +a(g237625 +g237627 +S'soul,' +p237629 +tp237630 +a(g237627 +g237629 +S'a' +p237631 +tp237632 +a(g237629 +g237631 +S'distinction' +p237633 +tp237634 +a(g237631 +g237633 +S'of' +p237635 +tp237636 +a(g237633 +g237635 +S'wan' +p237637 +tp237638 +a(g237635 +g237637 +S'indolence,' +p237639 +tp237640 +a(g237637 +g237639 +S'a' +p237641 +tp237642 +a(g237639 +g237641 +S'caressing' +p237643 +tp237644 +a(g237641 +g237643 +S'lullaby' +p237645 +tp237646 +a(g237643 +g237645 +S'of' +p237647 +tp237648 +a(g237645 +g237647 +S'the' +p237649 +tp237650 +a(g237647 +g237649 +S'sea' +p237651 +tp237652 +a(g237649 +g237651 +S'that' +p237653 +tp237654 +a(g237651 +g237653 +S'soothes' +p237655 +tp237656 +a(g237653 +g237655 +S'and' +p237657 +tp237658 +a(g237655 +g237657 +S'dissipates' +p237659 +tp237660 +a(g237657 +g237659 +S'my' +p237661 +tp237662 +a(g237659 +g237661 +S'weary' +p237663 +tp237664 +a(g237661 +g237663 +S'cares."' +p237665 +tp237666 +a(g237663 +g237665 +S'perhaps' +p237667 +tp237668 +a(g237665 +g237667 +S'it' +p237669 +tp237670 +a(g237667 +g237669 +S'was' +p237671 +tp237672 +a(g237669 +g237671 +S'the' +p237673 +tp237674 +a(g237671 +g237673 +S'promise' +p237675 +tp237676 +a(g237673 +g237675 +S'of' +p237677 +tp237678 +a(g237675 +g237677 +S'such' +p237679 +tp237680 +a(g237677 +g237679 +S'tranquility' +p237681 +tp237682 +a(g237679 +g237681 +S'that' +p237683 +tp237684 +a(g237681 +g237683 +S'attracted' +p237685 +tp237686 +a(g237683 +g237685 +S'seurat' +p237687 +tp237688 +a(g237685 +g237687 +S'to' +p237689 +tp237690 +a(g237687 +g237689 +S'the' +p237691 +tp237692 +a(g237689 +g237691 +S'seaside' +p237693 +tp237694 +a(g237691 +g237693 +S'in' +p237695 +tp237696 +a(g237693 +g237695 +S'the' +p237697 +tp237698 +a(g237695 +g237697 +S'first' +p237699 +tp237700 +a(g237697 +g237699 +S'place.' +p237701 +tp237702 +a(g237699 +g237701 +S'his' +p237703 +tp237704 +a(g237701 +g237703 +S'arrival' +p237705 +tp237706 +a(g237703 +g237705 +S'in' +p237707 +tp237708 +a(g237705 +g237707 +S'honfleur' +p237709 +tp237710 +a(g237707 +g237709 +S'came' +p237711 +tp237712 +a(g237709 +g237711 +S'several' +p237713 +tp237714 +a(g237711 +g237713 +S'months' +p237715 +tp237716 +a(g237713 +g237715 +S'after' +p237717 +tp237718 +a(g237715 +g237717 +S'he' +p237719 +tp237720 +a(g237717 +g237719 +S'had' +p237721 +tp237722 +a(g237719 +g237721 +S'completed' +p237723 +tp237724 +a(g237721 +g237723 +S'his' +p237725 +tp237726 +a(g237723 +g237725 +S'seminal' +p237727 +tp237728 +a(g237725 +g237727 +S'work,' +p237729 +tp237730 +a(g237727 +g237729 +S'(text' +p237731 +tp237732 +a(g237729 +g237731 +S'by' +p237733 +tp237734 +a(g237731 +g237733 +S'margaret' +p237735 +tp237736 +a(g237733 +g237735 +S'doyle,' +p237737 +tp237738 +a(g237735 +g237737 +S'notes' +p237739 +tp237740 +a(g237737 +g237739 +S'' +p237743 +tp237744 +a(g237741 +g237743 +S'' +p237747 +tp237748 +a(g237745 +g237747 +S'vuillard' +p237749 +tp237750 +a(g237747 +g237749 +S'belonged' +p237751 +tp237752 +a(g237749 +g237751 +S'to' +p237753 +tp237754 +a(g237751 +g237753 +S'a' +p237755 +tp237756 +a(g237753 +g237755 +S'quasi-mystical' +p237757 +tp237758 +a(g237755 +g237757 +S'group' +p237759 +tp237760 +a(g237757 +g237759 +S'of' +p237761 +tp237762 +a(g237759 +g237761 +S'young' +p237763 +tp237764 +a(g237761 +g237763 +S'artists' +p237765 +tp237766 +a(g237763 +g237765 +S'that' +p237767 +tp237768 +a(g237765 +g237767 +S'arose' +p237769 +tp237770 +a(g237767 +g237769 +S'in' +p237771 +tp237772 +a(g237769 +g237771 +S'about' +p237773 +tp237774 +a(g237771 +g237773 +S'1890' +p237775 +tp237776 +a(g237773 +g237775 +S'and' +p237777 +tp237778 +a(g237775 +g237777 +S'called' +p237779 +tp237780 +a(g237777 +g237779 +S'themselves' +p237781 +tp237782 +a(g237779 +g237781 +S'the' +p237783 +tp237784 +a(g237781 +g237783 +S'nabi,' +p237785 +tp237786 +a(g237783 +g237785 +S'a' +p237787 +tp237788 +a(g237785 +g237787 +S'hebrew' +p237789 +tp237790 +a(g237787 +g237789 +S'word' +p237791 +tp237792 +a(g237789 +g237791 +S'for' +p237793 +tp237794 +a(g237791 +g237793 +S'prophet.' +p237795 +tp237796 +a(g237793 +g237795 +S'the' +p237797 +tp237798 +a(g237795 +g237797 +S'nabi' +p237799 +tp237800 +a(g237797 +g237799 +S'rejected' +p237801 +tp237802 +a(g237799 +g237801 +S'impressionism' +p237803 +tp237804 +a(g237801 +g237803 +S'and' +p237805 +tp237806 +a(g237803 +g237805 +S'considered' +p237807 +tp237808 +a(g237805 +g237807 +S'simple' +p237809 +tp237810 +a(g237807 +g237809 +S'transcription' +p237811 +tp237812 +a(g237809 +g237811 +S'of' +p237813 +tp237814 +a(g237811 +g237813 +S'the' +p237815 +tp237816 +a(g237813 +g237815 +S'appearance' +p237817 +tp237818 +a(g237815 +g237817 +S'of' +p237819 +tp237820 +a(g237817 +g237819 +S'the' +p237821 +tp237822 +a(g237819 +g237821 +S'natural' +p237823 +tp237824 +a(g237821 +g237823 +S'world' +p237825 +tp237826 +a(g237823 +g237825 +S'unthinking' +p237827 +tp237828 +a(g237825 +g237827 +S'and' +p237829 +tp237830 +a(g237827 +g237829 +S'unartistic.' +p237831 +tp237832 +a(g237829 +g237831 +S'inspired' +p237833 +tp237834 +a(g237831 +g237833 +S'by' +p237835 +tp237836 +a(g237833 +g237835 +S"gauguin's" +p237837 +tp237838 +a(g237835 +g237837 +S'work' +p237839 +tp237840 +a(g237837 +g237839 +S'and' +p237841 +tp237842 +a(g237839 +g237841 +S'symbolist' +p237843 +tp237844 +a(g237841 +g237843 +S'poetry,' +p237845 +tp237846 +a(g237843 +g237845 +S'their' +p237847 +tp237848 +a(g237845 +g237847 +S'paintings' +p237849 +tp237850 +a(g237847 +g237849 +S'evoke' +p237851 +tp237852 +a(g237849 +g237851 +S'rather' +p237853 +tp237854 +a(g237851 +g237853 +S'than' +p237855 +tp237856 +a(g237853 +g237855 +S'specify,' +p237857 +tp237858 +a(g237855 +g237857 +S'suggest' +p237859 +tp237860 +a(g237857 +g237859 +S'rather' +p237861 +tp237862 +a(g237859 +g237861 +S'than' +p237863 +tp237864 +a(g237861 +g237863 +S'describe.' +p237865 +tp237866 +a(g237863 +g237865 +S'recognizing' +p237867 +tp237868 +a(g237865 +g237867 +S'that' +p237869 +tp237870 +a(g237867 +g237869 +S'the' +p237871 +tp237872 +a(g237869 +g237871 +S'physical' +p237873 +tp237874 +a(g237871 +g237873 +S'components' +p237875 +tp237876 +a(g237873 +g237875 +S'of' +p237877 +tp237878 +a(g237875 +g237877 +S'painting' +p237879 +tp237880 +a(g237877 +g237879 +S'--' +p237881 +tp237882 +a(g237879 +g237881 +S'colored' +p237883 +tp237884 +a(g237881 +g237883 +S'pigments' +p237885 +tp237886 +a(g237883 +g237885 +S'arranged' +p237887 +tp237888 +a(g237885 +g237887 +S'on' +p237889 +tp237890 +a(g237887 +g237889 +S'a' +p237891 +tp237892 +a(g237889 +g237891 +S'flat' +p237893 +tp237894 +a(g237891 +g237893 +S'surface' +p237895 +tp237896 +a(g237893 +g237895 +S'--' +p237897 +tp237898 +a(g237895 +g237897 +S'were' +p237899 +tp237900 +a(g237897 +g237899 +S'artificial,' +p237901 +tp237902 +a(g237899 +g237901 +S'they' +p237903 +tp237904 +a(g237901 +g237903 +S'considered' +p237905 +tp237906 +a(g237903 +g237905 +S'as' +p237907 +tp237908 +a(g237905 +g237907 +S'false' +p237909 +tp237910 +a(g237907 +g237909 +S'the' +p237911 +tp237912 +a(g237909 +g237911 +S'traditional' +p237913 +tp237914 +a(g237911 +g237913 +S'convention' +p237915 +tp237916 +a(g237913 +g237915 +S'of' +p237917 +tp237918 +a(g237915 +g237917 +S'regarding' +p237919 +tp237920 +a(g237917 +g237919 +S'paintings' +p237921 +tp237922 +a(g237919 +g237921 +S'as' +p237923 +tp237924 +a(g237921 +g237923 +S're-creations' +p237925 +tp237926 +a(g237923 +g237925 +S'of' +p237927 +tp237928 +a(g237925 +g237927 +S'the' +p237929 +tp237930 +a(g237927 +g237929 +S'natural' +p237931 +tp237932 +a(g237929 +g237931 +S'world.' +p237933 +tp237934 +a(g237931 +g237933 +S'woman' +p237935 +tp237936 +a(g237933 +g237935 +S'in' +p237937 +tp237938 +a(g237935 +g237937 +S'a' +p237939 +tp237940 +a(g237937 +g237939 +S'striped' +p237941 +tp237942 +a(g237939 +g237941 +S'dress' +p237943 +tp237944 +a(g237941 +g237943 +S'crome,' +p237945 +tp237946 +a(g237943 +g237945 +S'from' +p237947 +tp237948 +a(g237945 +g237947 +S'norwich' +p237949 +tp237950 +a(g237947 +g237949 +S'in' +p237951 +tp237952 +a(g237949 +g237951 +S'east' +p237953 +tp237954 +a(g237951 +g237953 +S'central' +p237955 +tp237956 +a(g237953 +g237955 +S'england,' +p237957 +tp237958 +a(g237955 +g237957 +S'learned' +p237959 +tp237960 +a(g237957 +g237959 +S'to' +p237961 +tp237962 +a(g237959 +g237961 +S'paint' +p237963 +tp237964 +a(g237961 +g237963 +S'by' +p237965 +tp237966 +a(g237963 +g237965 +S'copying' +p237967 +tp237968 +a(g237965 +g237967 +S'pictures' +p237969 +tp237970 +a(g237967 +g237969 +S'in' +p237971 +tp237972 +a(g237969 +g237971 +S'local' +p237973 +tp237974 +a(g237971 +g237973 +S'private' +p237975 +tp237976 +a(g237973 +g237975 +S'collections.' +p237977 +tp237978 +a(g237975 +g237977 +S'landscapes' +p237979 +tp237980 +a(g237977 +g237979 +S'by' +p237981 +tp237982 +a(g237979 +g237981 +S'his' +p237983 +tp237984 +a(g237981 +g237983 +S'countrymen' +p237985 +tp237986 +a(g237983 +g237985 +S'gainsborough' +p237987 +tp237988 +a(g237985 +g237987 +S'and' +p237989 +tp237990 +a(g237987 +g237989 +S'wilson' +p237991 +tp237992 +a(g237989 +g237991 +S'intrigued' +p237993 +tp237994 +a(g237991 +g237993 +S'him,' +p237995 +tp237996 +a(g237993 +g237995 +S'as' +p237997 +tp237998 +a(g237995 +g237997 +S'did' +p237999 +tp238000 +a(g237997 +g237999 +S'the' +p238001 +tp238002 +a(g237999 +g238001 +S'dutch' +p238003 +tp238004 +a(g238001 +g238003 +S'old' +p238005 +tp238006 +a(g238003 +g238005 +S'masters' +p238007 +tp238008 +a(g238005 +g238007 +S'such' +p238009 +tp238010 +a(g238007 +g238009 +S'as' +p238011 +tp238012 +a(g238009 +g238011 +S'moonlight' +p238013 +tp238014 +a(g238011 +g238013 +S'on' +p238015 +tp238016 +a(g238013 +g238015 +S'the' +p238017 +tp238018 +a(g238015 +g238017 +S'yare,' +p238019 +tp238020 +a(g238017 +g238019 +S'a' +p238021 +tp238022 +a(g238019 +g238021 +S'lively' +p238023 +tp238024 +a(g238021 +g238023 +S'wit' +p238025 +tp238026 +a(g238023 +g238025 +S'with' +p238027 +tp238028 +a(g238025 +g238027 +S'a' +p238029 +tp238030 +a(g238027 +g238029 +S'good' +p238031 +tp238032 +a(g238029 +g238031 +S'business' +p238033 +tp238034 +a(g238031 +g238033 +S'sense,' +p238035 +tp238036 +a(g238033 +g238035 +S'crome' +p238037 +tp238038 +a(g238035 +g238037 +S'augmented' +p238039 +tp238040 +a(g238037 +g238039 +S'his' +p238041 +tp238042 +a(g238039 +g238041 +S'successful' +p238043 +tp238044 +a(g238041 +g238043 +S'career' +p238045 +tp238046 +a(g238043 +g238045 +S'as' +p238047 +tp238048 +a(g238045 +g238047 +S'a' +p238049 +tp238050 +a(g238047 +g238049 +S'landscape' +p238051 +tp238052 +a(g238049 +g238051 +S'painter' +p238053 +tp238054 +a(g238051 +g238053 +S'by' +p238055 +tp238056 +a(g238053 +g238055 +S'giving' +p238057 +tp238058 +a(g238055 +g238057 +S'drawing' +p238059 +tp238060 +a(g238057 +g238059 +S'lessons' +p238061 +tp238062 +a(g238059 +g238061 +S'and' +p238063 +tp238064 +a(g238061 +g238063 +S'acting' +p238065 +tp238066 +a(g238063 +g238065 +S'as' +p238067 +tp238068 +a(g238065 +g238067 +S'a' +p238069 +tp238070 +a(g238067 +g238069 +S'picture' +p238071 +tp238072 +a(g238069 +g238071 +S'restorer' +p238073 +tp238074 +a(g238071 +g238073 +S'and' +p238075 +tp238076 +a(g238073 +g238075 +S'art' +p238077 +tp238078 +a(g238075 +g238077 +S'dealer.' +p238079 +tp238080 +a(g238077 +g238079 +S'crome' +p238081 +tp238082 +a(g238079 +g238081 +S'was' +p238083 +tp238084 +a(g238081 +g238083 +S'instrumental' +p238085 +tp238086 +a(g238083 +g238085 +S'in' +p238087 +tp238088 +a(g238085 +g238087 +S'founding' +p238089 +tp238090 +a(g238087 +g238089 +S'the' +p238091 +tp238092 +a(g238089 +g238091 +S'norwich' +p238093 +tp238094 +a(g238091 +g238093 +S'society' +p238095 +tp238096 +a(g238093 +g238095 +S'in' +p238097 +tp238098 +a(g238095 +g238097 +S'1803' +p238099 +tp238100 +a(g238097 +g238099 +S'and,' +p238101 +tp238102 +a(g238099 +g238101 +S'after' +p238103 +tp238104 +a(g238101 +g238103 +S'1806,' +p238105 +tp238106 +a(g238103 +g238105 +S'sometimes' +p238107 +tp238108 +a(g238105 +g238107 +S'also' +p238109 +tp238110 +a(g238107 +g238109 +S'sent' +p238111 +tp238112 +a(g238109 +g238111 +S'paintings' +p238113 +tp238114 +a(g238111 +g238113 +S'for' +p238115 +tp238116 +a(g238113 +g238115 +S'exhibition' +p238117 +tp238118 +a(g238115 +g238117 +S'at' +p238119 +tp238120 +a(g238117 +g238119 +S'the' +p238121 +tp238122 +a(g238119 +g238121 +S'royal' +p238123 +tp238124 +a(g238121 +g238123 +S'academy' +p238125 +tp238126 +a(g238123 +g238125 +S'in' +p238127 +tp238128 +a(g238125 +g238127 +S'london.' +p238129 +tp238130 +a(g238127 +g238129 +S'the' +p238131 +tp238132 +a(g238129 +g238131 +S'british' +p238133 +tp238134 +a(g238131 +g238133 +S'demand' +p238135 +tp238136 +a(g238133 +g238135 +S'for' +p238137 +tp238138 +a(g238135 +g238137 +S'portraiture' +p238139 +tp238140 +a(g238137 +g238139 +S'increased' +p238141 +tp238142 +a(g238139 +g238141 +S'rapidly' +p238143 +tp238144 +a(g238141 +g238143 +S'in' +p238145 +tp238146 +a(g238143 +g238145 +S'the' +p238147 +tp238148 +a(g238145 +g238147 +S'eighteenth' +p238149 +tp238150 +a(g238147 +g238149 +S'century' +p238151 +tp238152 +a(g238149 +g238151 +S'as' +p238153 +tp238154 +a(g238151 +g238153 +S'members' +p238155 +tp238156 +a(g238153 +g238155 +S'of' +p238157 +tp238158 +a(g238155 +g238157 +S'the' +p238159 +tp238160 +a(g238157 +g238159 +S'wealthy' +p238161 +tp238162 +a(g238159 +g238161 +S'middle' +p238163 +tp238164 +a(g238161 +g238163 +S'class' +p238165 +tp238166 +a(g238163 +g238165 +S'became' +p238167 +tp238168 +a(g238165 +g238167 +S'art' +p238169 +tp238170 +a(g238167 +g238169 +S'patrons' +p238171 +tp238172 +a(g238169 +g238171 +S'in' +p238173 +tp238174 +a(g238171 +g238173 +S'their' +p238175 +tp238176 +a(g238173 +g238175 +S'own' +p238177 +tp238178 +a(g238175 +g238177 +S'right.' +p238179 +tp238180 +a(g238177 +g238179 +S'arthur' +p238181 +tp238182 +a(g238179 +g238181 +S'devis' +p238183 +tp238184 +a(g238181 +g238183 +S'was' +p238185 +tp238186 +a(g238183 +g238185 +S'a' +p238187 +tp238188 +a(g238185 +g238187 +S'provincial' +p238189 +tp238190 +a(g238187 +g238189 +S'artist' +p238191 +tp238192 +a(g238189 +g238191 +S'who' +p238193 +tp238194 +a(g238191 +g238193 +S'came' +p238195 +tp238196 +a(g238193 +g238195 +S'to' +p238197 +tp238198 +a(g238195 +g238197 +S'live' +p238199 +tp238200 +a(g238197 +g238199 +S'in' +p238201 +tp238202 +a(g238199 +g238201 +S'london,' +p238203 +tp238204 +a(g238201 +g238203 +S'where' +p238205 +tp238206 +a(g238203 +g238205 +S'sophisticated' +p238207 +tp238208 +a(g238205 +g238207 +S'portraitists' +p238209 +tp238210 +a(g238207 +g238209 +S'of' +p238211 +tp238212 +a(g238209 +g238211 +S'the' +p238213 +tp238214 +a(g238211 +g238213 +S'upper' +p238215 +tp238216 +a(g238213 +g238215 +S'class' +p238217 +tp238218 +a(g238215 +g238217 +S'such' +p238219 +tp238220 +a(g238217 +g238219 +S'as' +p238221 +tp238222 +a(g238219 +g238221 +S'reynolds' +p238223 +tp238224 +a(g238221 +g238223 +S'and' +p238225 +tp238226 +a(g238223 +g238225 +S'gainsborough' +p238227 +tp238228 +a(g238225 +g238227 +S'dominated' +p238229 +tp238230 +a(g238227 +g238229 +S'the' +p238231 +tp238232 +a(g238229 +g238231 +S'art' +p238233 +tp238234 +a(g238231 +g238233 +S'world.' +p238235 +tp238236 +a(g238233 +g238235 +S'devis' +p238237 +tp238238 +a(g238235 +g238237 +S'received' +p238239 +tp238240 +a(g238237 +g238239 +S'commissions' +p238241 +tp238242 +a(g238239 +g238241 +S'from' +p238243 +tp238244 +a(g238241 +g238243 +S'the' +p238245 +tp238246 +a(g238243 +g238245 +S'middle-class' +p238247 +tp238248 +a(g238245 +g238247 +S'landowning' +p238249 +tp238250 +a(g238247 +g238249 +S'families,' +p238251 +tp238252 +a(g238249 +g238251 +S'merchants,' +p238253 +tp238254 +a(g238251 +g238253 +S'and' +p238255 +tp238256 +a(g238253 +g238255 +S'officials' +p238257 +tp238258 +a(g238255 +g238257 +S'who' +p238259 +tp238260 +a(g238257 +g238259 +S'lived' +p238261 +tp238262 +a(g238259 +g238261 +S'in' +p238263 +tp238264 +a(g238261 +g238263 +S'smaller' +p238265 +tp238266 +a(g238263 +g238265 +S'cities' +p238267 +tp238268 +a(g238265 +g238267 +S'outside' +p238269 +tp238270 +a(g238267 +g238269 +S'london.' +p238271 +tp238272 +a(g238269 +g238271 +S'this' +p238273 +tp238274 +a(g238271 +g238273 +S'informal' +p238275 +tp238276 +a(g238273 +g238275 +S'portrait' +p238277 +tp238278 +a(g238275 +g238277 +S'is' +p238279 +tp238280 +a(g238277 +g238279 +S'a' +p238281 +tp238282 +a(g238279 +g238281 +S'conversation' +p238283 +tp238284 +a(g238281 +g238283 +S'piece,' +p238285 +tp238286 +a(g238283 +g238285 +S'a' +p238287 +tp238288 +a(g238285 +g238287 +S'genre' +p238289 +tp238290 +a(g238287 +g238289 +S'favored' +p238291 +tp238292 +a(g238289 +g238291 +S'by' +p238293 +tp238294 +a(g238291 +g238293 +S'devis.' +p238295 +tp238296 +a(g238293 +g238295 +S'the' +p238297 +tp238298 +a(g238295 +g238297 +S'figures,' +p238299 +tp238300 +a(g238297 +g238299 +S'while' +p238301 +tp238302 +a(g238299 +g238301 +S'full-length,' +p238303 +tp238304 +a(g238301 +g238303 +S'are' +p238305 +tp238306 +a(g238303 +g238305 +S'relatively' +p238307 +tp238308 +a(g238305 +g238307 +S'small' +p238309 +tp238310 +a(g238307 +g238309 +S'and' +p238311 +tp238312 +a(g238309 +g238311 +S'are' +p238313 +tp238314 +a(g238311 +g238313 +S'placed' +p238315 +tp238316 +a(g238313 +g238315 +S'somewhat' +p238317 +tp238318 +a(g238315 +g238317 +S'back' +p238319 +tp238320 +a(g238317 +g238319 +S'in' +p238321 +tp238322 +a(g238319 +g238321 +S'the' +p238323 +tp238324 +a(g238321 +g238323 +S'landscape;' +p238325 +tp238326 +a(g238323 +g238325 +S'the' +p238327 +tp238328 +a(g238325 +g238327 +S'background' +p238329 +tp238330 +a(g238327 +g238329 +S'is' +p238331 +tp238332 +a(g238329 +g238331 +S'larger' +p238333 +tp238334 +a(g238331 +g238333 +S'and' +p238335 +tp238336 +a(g238333 +g238335 +S'more' +p238337 +tp238338 +a(g238335 +g238337 +S'detailed' +p238339 +tp238340 +a(g238337 +g238339 +S'than' +p238341 +tp238342 +a(g238339 +g238341 +S'in' +p238343 +tp238344 +a(g238341 +g238343 +S'traditional' +p238345 +tp238346 +a(g238343 +g238345 +S'portraiture' +p238347 +tp238348 +a(g238345 +g238347 +S'and' +p238349 +tp238350 +a(g238347 +g238349 +S'describes' +p238351 +tp238352 +a(g238349 +g238351 +S'the' +p238353 +tp238354 +a(g238351 +g238353 +S"subjects'" +p238355 +tp238356 +a(g238353 +g238355 +S'personal' +p238357 +tp238358 +a(g238355 +g238357 +S'and' +p238359 +tp238360 +a(g238357 +g238359 +S'social' +p238361 +tp238362 +a(g238359 +g238361 +S'context.' +p238363 +tp238364 +a(g238361 +g238363 +S'devis' +p238365 +tp238366 +a(g238363 +g238365 +S'devised' +p238367 +tp238368 +a(g238365 +g238367 +S'a' +p238369 +tp238370 +a(g238367 +g238369 +S'repertoire' +p238371 +tp238372 +a(g238369 +g238371 +S'of' +p238373 +tp238374 +a(g238371 +g238373 +S'postures' +p238375 +tp238376 +a(g238373 +g238375 +S'and' +p238377 +tp238378 +a(g238375 +g238377 +S'gestures' +p238379 +tp238380 +a(g238377 +g238379 +S'that' +p238381 +tp238382 +a(g238379 +g238381 +S'he' +p238383 +tp238384 +a(g238381 +g238383 +S'used' +p238385 +tp238386 +a(g238383 +g238385 +S'to' +p238387 +tp238388 +a(g238385 +g238387 +S'express' +p238389 +tp238390 +a(g238387 +g238389 +S'the' +p238391 +tp238392 +a(g238389 +g238391 +S'social' +p238393 +tp238394 +a(g238391 +g238393 +S'status' +p238395 +tp238396 +a(g238393 +g238395 +S'of' +p238397 +tp238398 +a(g238395 +g238397 +S'his' +p238399 +tp238400 +a(g238397 +g238399 +S'sitter.' +p238401 +tp238402 +a(g238399 +g238401 +S'arthur' +p238403 +tp238404 +a(g238401 +g238403 +S'holdsworth,' +p238405 +tp238406 +a(g238403 +g238405 +S'governor' +p238407 +tp238408 +a(g238405 +g238407 +S'of' +p238409 +tp238410 +a(g238407 +g238409 +S'dartmouth' +p238411 +tp238412 +a(g238409 +g238411 +S'castle,' +p238413 +tp238414 +a(g238411 +g238413 +S'is' +p238415 +tp238416 +a(g238413 +g238415 +S'shown' +p238417 +tp238418 +a(g238415 +g238417 +S'seated,' +p238419 +tp238420 +a(g238417 +g238419 +S'an' +p238421 +tp238422 +a(g238419 +g238421 +S'alert,' +p238423 +tp238424 +a(g238421 +g238423 +S'attentive' +p238425 +tp238426 +a(g238423 +g238425 +S'expression' +p238427 +tp238428 +a(g238425 +g238427 +S'on' +p238429 +tp238430 +a(g238427 +g238429 +S'his' +p238431 +tp238432 +a(g238429 +g238431 +S'face.' +p238433 +tp238434 +a(g238431 +g238433 +S'the' +p238435 +tp238436 +a(g238433 +g238435 +S'ship' +p238437 +tp238438 +a(g238435 +g238437 +S'sailing' +p238439 +tp238440 +a(g238437 +g238439 +S'into' +p238441 +tp238442 +a(g238439 +g238441 +S'the' +p238443 +tp238444 +a(g238441 +g238443 +S'mouth' +p238445 +tp238446 +a(g238443 +g238445 +S'of' +p238447 +tp238448 +a(g238445 +g238447 +S'the' +p238449 +tp238450 +a(g238447 +g238449 +S'river' +p238451 +tp238452 +a(g238449 +g238451 +S'dart' +p238453 +tp238454 +a(g238451 +g238453 +S'in' +p238455 +tp238456 +a(g238453 +g238455 +S'the' +p238457 +tp238458 +a(g238455 +g238457 +S'background' +p238459 +tp238460 +a(g238457 +g238459 +S'may' +p238461 +tp238462 +a(g238459 +g238461 +S'be' +p238463 +tp238464 +a(g238461 +g238463 +S'a' +p238465 +tp238466 +a(g238463 +g238465 +S'reference' +p238467 +tp238468 +a(g238465 +g238467 +S'to' +p238469 +tp238470 +a(g238467 +g238469 +S'the' +p238471 +tp238472 +a(g238469 +g238471 +S'holdsworth' +p238473 +tp238474 +a(g238471 +g238473 +S"family's" +p238475 +tp238476 +a(g238473 +g238475 +S'trading' +p238477 +tp238478 +a(g238475 +g238477 +S'business.' +p238479 +tp238480 +a(g238477 +g238479 +S"holdsworth's" +p238481 +tp238482 +a(g238479 +g238481 +S'brother-in-law,' +p238483 +tp238484 +a(g238481 +g238483 +S'thomas' +p238485 +tp238486 +a(g238483 +g238485 +S'taylor,' +p238487 +tp238488 +a(g238485 +g238487 +S'stands' +p238489 +tp238490 +a(g238487 +g238489 +S'behind' +p238491 +tp238492 +a(g238489 +g238491 +S'him' +p238493 +tp238494 +a(g238491 +g238493 +S'in' +p238495 +tp238496 +a(g238493 +g238495 +S'riding' +p238497 +tp238498 +a(g238495 +g238497 +S'clothes.' +p238499 +tp238500 +a(g238497 +g238499 +S'the' +p238501 +tp238502 +a(g238499 +g238501 +S'third' +p238503 +tp238504 +a(g238501 +g238503 +S'man' +p238505 +tp238506 +a(g238503 +g238505 +S'is' +p238507 +tp238508 +a(g238505 +g238507 +S'captain' +p238509 +tp238510 +a(g238507 +g238509 +S'stancombe.' +p238511 +tp238512 +a(g238509 +g238511 +S'fuseli,' +p238513 +tp238514 +a(g238511 +g238513 +S'a' +p238515 +tp238516 +a(g238513 +g238515 +S'native' +p238517 +tp238518 +a(g238515 +g238517 +S'of' +p238519 +tp238520 +a(g238517 +g238519 +S'switzerland,' +p238521 +tp238522 +a(g238519 +g238521 +S'began' +p238523 +tp238524 +a(g238521 +g238523 +S'his' +p238525 +tp238526 +a(g238523 +g238525 +S'career' +p238527 +tp238528 +a(g238525 +g238527 +S'in' +p238529 +tp238530 +a(g238527 +g238529 +S'england' +p238531 +tp238532 +a(g238529 +g238531 +S'as' +p238533 +tp238534 +a(g238531 +g238533 +S'a' +p238535 +tp238536 +a(g238533 +g238535 +S'history' +p238537 +tp238538 +a(g238535 +g238537 +S'painter.' +p238539 +tp238540 +a(g238537 +g238539 +S'he' +p238541 +tp238542 +a(g238539 +g238541 +S'developed' +p238543 +tp238544 +a(g238541 +g238543 +S'an' +p238545 +tp238546 +a(g238543 +g238545 +S'expressionistic' +p238547 +tp238548 +a(g238545 +g238547 +S'style' +p238549 +tp238550 +a(g238547 +g238549 +S'composed' +p238551 +tp238552 +a(g238549 +g238551 +S'of' +p238553 +tp238554 +a(g238551 +g238553 +S'a' +p238555 +tp238556 +a(g238553 +g238555 +S'unique' +p238557 +tp238558 +a(g238555 +g238557 +S'blend' +p238559 +tp238560 +a(g238557 +g238559 +S'of' +p238561 +tp238562 +a(g238559 +g238561 +S'influences—german' +p238563 +tp238564 +a(g238561 +g238563 +S'romanticism,' +p238565 +tp238566 +a(g238563 +g238565 +S'the' +p238567 +tp238568 +a(g238565 +g238567 +S'monumental' +p238569 +tp238570 +a(g238567 +g238569 +S'vision' +p238571 +tp238572 +a(g238569 +g238571 +S'of' +p238573 +tp238574 +a(g238571 +g238573 +S'michelangelo,' +p238575 +tp238576 +a(g238573 +g238575 +S'and' +p238577 +tp238578 +a(g238575 +g238577 +S'the' +p238579 +tp238580 +a(g238577 +g238579 +S'physical' +p238581 +tp238582 +a(g238579 +g238581 +S'and' +p238583 +tp238584 +a(g238581 +g238583 +S'psychological' +p238585 +tp238586 +a(g238583 +g238585 +S'exaggerations' +p238587 +tp238588 +a(g238585 +g238587 +S'of' +p238589 +tp238590 +a(g238587 +g238589 +S'the' +p238591 +tp238592 +a(g238589 +g238591 +S'16th–century' +p238593 +tp238594 +a(g238591 +g238593 +S'italian' +p238595 +tp238596 +a(g238593 +g238595 +S'mannerists.' +p238597 +tp238598 +a(g238595 +g238597 +S"fuseli's" +p238599 +tp238600 +a(g238597 +g238599 +S'own' +p238601 +tp238602 +a(g238599 +g238601 +S'pessimism' +p238603 +tp238604 +a(g238601 +g238603 +S'and' +p238605 +tp238606 +a(g238603 +g238605 +S'fascination' +p238607 +tp238608 +a(g238605 +g238607 +S'with' +p238609 +tp238610 +a(g238607 +g238609 +S'the' +p238611 +tp238612 +a(g238609 +g238611 +S'extremes' +p238613 +tp238614 +a(g238611 +g238613 +S'of' +p238615 +tp238616 +a(g238613 +g238615 +S'human' +p238617 +tp238618 +a(g238615 +g238617 +S'passion' +p238619 +tp238620 +a(g238617 +g238619 +S'are' +p238621 +tp238622 +a(g238619 +g238621 +S'evident.' +p238623 +tp238624 +a(g238621 +g238623 +S'he' +p238625 +tp238626 +a(g238623 +g238625 +S'heightened' +p238627 +tp238628 +a(g238625 +g238627 +S'the' +p238629 +tp238630 +a(g238627 +g238629 +S'intensity' +p238631 +tp238632 +a(g238629 +g238631 +S'of' +p238633 +tp238634 +a(g238631 +g238633 +S'this' +p238635 +tp238636 +a(g238633 +g238635 +S'scene' +p238637 +tp238638 +a(g238635 +g238637 +S'from' +p238639 +tp238640 +a(g238637 +g238639 +S"sophocles'" +p238641 +tp238642 +a(g238639 +g238641 +S'hogarth' +p238643 +tp238644 +a(g238641 +g238643 +S'represents' +p238645 +tp238646 +a(g238643 +g238645 +S'an' +p238647 +tp238648 +a(g238645 +g238647 +S'important' +p238649 +tp238650 +a(g238647 +g238649 +S'watershed' +p238651 +tp238652 +a(g238649 +g238651 +S'in' +p238653 +tp238654 +a(g238651 +g238653 +S'british' +p238655 +tp238656 +a(g238653 +g238655 +S'art,' +p238657 +tp238658 +a(g238655 +g238657 +S'marking' +p238659 +tp238660 +a(g238657 +g238659 +S'the' +p238661 +tp238662 +a(g238659 +g238661 +S'end' +p238663 +tp238664 +a(g238661 +g238663 +S'of' +p238665 +tp238666 +a(g238663 +g238665 +S'the' +p238667 +tp238668 +a(g238665 +g238667 +S'century-long' +p238669 +tp238670 +a(g238667 +g238669 +S'predominance' +p238671 +tp238672 +a(g238669 +g238671 +S'of' +p238673 +tp238674 +a(g238671 +g238673 +S'dutch' +p238675 +tp238676 +a(g238673 +g238675 +S'and' +p238677 +tp238678 +a(g238675 +g238677 +S'flemish' +p238679 +tp238680 +a(g238677 +g238679 +S'painters' +p238681 +tp238682 +a(g238679 +g238681 +S'in' +p238683 +tp238684 +a(g238681 +g238683 +S'england' +p238685 +tp238686 +a(g238683 +g238685 +S'and' +p238687 +tp238688 +a(g238685 +g238687 +S'the' +p238689 +tp238690 +a(g238687 +g238689 +S'beginning' +p238691 +tp238692 +a(g238689 +g238691 +S'of' +p238693 +tp238694 +a(g238691 +g238693 +S'a' +p238695 +tp238696 +a(g238693 +g238695 +S'native' +p238697 +tp238698 +a(g238695 +g238697 +S'school.' +p238699 +tp238700 +a(g238697 +g238699 +S'although' +p238701 +tp238702 +a(g238699 +g238701 +S'his' +p238703 +tp238704 +a(g238701 +g238703 +S'style' +p238705 +tp238706 +a(g238703 +g238705 +S'was' +p238707 +tp238708 +a(g238705 +g238707 +S'influenced' +p238709 +tp238710 +a(g238707 +g238709 +S'by' +p238711 +tp238712 +a(g238709 +g238711 +S'french' +p238713 +tp238714 +a(g238711 +g238713 +S'rococo' +p238715 +tp238716 +a(g238713 +g238715 +S'artists,' +p238717 +tp238718 +a(g238715 +g238717 +S'hogarth' +p238719 +tp238720 +a(g238717 +g238719 +S'was' +p238721 +tp238722 +a(g238719 +g238721 +S'a' +p238723 +tp238724 +a(g238721 +g238723 +S'realist' +p238725 +tp238726 +a(g238723 +g238725 +S'and' +p238727 +tp238728 +a(g238725 +g238727 +S'social' +p238729 +tp238730 +a(g238727 +g238729 +S'critic' +p238731 +tp238732 +a(g238729 +g238731 +S'whose' +p238733 +tp238734 +a(g238731 +g238733 +S'subjects' +p238735 +tp238736 +a(g238733 +g238735 +S'came' +p238737 +tp238738 +a(g238735 +g238737 +S'from' +p238739 +tp238740 +a(g238737 +g238739 +S'the' +p238741 +tp238742 +a(g238739 +g238741 +S'london' +p238743 +tp238744 +a(g238741 +g238743 +S'middle' +p238745 +tp238746 +a(g238743 +g238745 +S'classes' +p238747 +tp238748 +a(g238745 +g238747 +S'as' +p238749 +tp238750 +a(g238747 +g238749 +S'he' +p238751 +tp238752 +a(g238749 +g238751 +S'observed' +p238753 +tp238754 +a(g238751 +g238753 +S'them' +p238755 +tp238756 +a(g238753 +g238755 +S'in' +p238757 +tp238758 +a(g238755 +g238757 +S'the' +p238759 +tp238760 +a(g238757 +g238759 +S'streets,' +p238761 +tp238762 +a(g238759 +g238761 +S'in' +p238763 +tp238764 +a(g238761 +g238763 +S'coffee' +p238765 +tp238766 +a(g238763 +g238765 +S'houses,' +p238767 +tp238768 +a(g238765 +g238767 +S'or' +p238769 +tp238770 +a(g238767 +g238769 +S'at' +p238771 +tp238772 +a(g238769 +g238771 +S'the' +p238773 +tp238774 +a(g238771 +g238773 +S'theater.' +p238775 +tp238776 +a(g238773 +g238775 +S'this' +p238777 +tp238778 +a(g238775 +g238777 +S'vivid' +p238779 +tp238780 +a(g238777 +g238779 +S'scene' +p238781 +tp238782 +a(g238779 +g238781 +S'is' +p238783 +tp238784 +a(g238781 +g238783 +S'a' +p238785 +tp238786 +a(g238783 +g238785 +S'small' +p238787 +tp238788 +a(g238785 +g238787 +S'version' +p238789 +tp238790 +a(g238787 +g238789 +S'of' +p238791 +tp238792 +a(g238789 +g238791 +S"hogarth's" +p238793 +tp238794 +a(g238791 +g238793 +S'earliest' +p238795 +tp238796 +a(g238793 +g238795 +S'dated' +p238797 +tp238798 +a(g238795 +g238797 +S'painting,' +p238799 +tp238800 +a(g238797 +g238799 +S'now' +p238801 +tp238802 +a(g238799 +g238801 +S'in' +p238803 +tp238804 +a(g238801 +g238803 +S'the' +p238805 +tp238806 +a(g238803 +g238805 +S'tate' +p238807 +tp238808 +a(g238805 +g238807 +S'gallery,' +p238809 +tp238810 +a(g238807 +g238809 +S'london.' +p238811 +tp238812 +a(g238809 +g238811 +S'the' +p238813 +tp238814 +a(g238811 +g238813 +S'subject' +p238815 +tp238816 +a(g238813 +g238815 +S'was' +p238817 +tp238818 +a(g238815 +g238817 +S'based' +p238819 +tp238820 +a(g238817 +g238819 +S'on' +p238821 +tp238822 +a(g238819 +g238821 +S'john' +p238823 +tp238824 +a(g238821 +g238823 +S"gay's" +p238825 +tp238826 +a(g238823 +g238825 +S'popular' +p238827 +tp238828 +a(g238825 +g238827 +S'and' +p238829 +tp238830 +a(g238827 +g238829 +S'long-playing' +p238831 +tp238832 +a(g238829 +g238831 +S'ballad-opera.' +p238833 +tp238834 +a(g238831 +g238833 +S'with' +p238835 +tp238836 +a(g238833 +g238835 +S'its' +p238837 +tp238838 +a(g238835 +g238837 +S'open' +p238839 +tp238840 +a(g238837 +g238839 +S'buffooning' +p238841 +tp238842 +a(g238839 +g238841 +S'of' +p238843 +tp238844 +a(g238841 +g238843 +S'italian' +p238845 +tp238846 +a(g238843 +g238845 +S'grand' +p238847 +tp238848 +a(g238845 +g238847 +S'opera' +p238849 +tp238850 +a(g238847 +g238849 +S'and' +p238851 +tp238852 +a(g238849 +g238851 +S'its' +p238853 +tp238854 +a(g238851 +g238853 +S'more' +p238855 +tp238856 +a(g238853 +g238855 +S'subtle' +p238857 +tp238858 +a(g238855 +g238857 +S'attacks' +p238859 +tp238860 +a(g238857 +g238859 +S'on' +p238861 +tp238862 +a(g238859 +g238861 +S'the' +p238863 +tp238864 +a(g238861 +g238863 +S'british' +p238865 +tp238866 +a(g238863 +g238865 +S'ruling' +p238867 +tp238868 +a(g238865 +g238867 +S'class' +p238869 +tp238870 +a(g238867 +g238869 +S'and' +p238871 +tp238872 +a(g238869 +g238871 +S'walpole' +p238873 +tp238874 +a(g238871 +g238873 +S'government,' +p238875 +tp238876 +a(g238873 +g238875 +S'the' +p238877 +tp238878 +a(g238875 +g238877 +S'story' +p238879 +tp238880 +a(g238877 +g238879 +S'was' +p238881 +tp238882 +a(g238879 +g238881 +S'a' +p238883 +tp238884 +a(g238881 +g238883 +S'ready' +p238885 +tp238886 +a(g238883 +g238885 +S'medium' +p238887 +tp238888 +a(g238885 +g238887 +S'for' +p238889 +tp238890 +a(g238887 +g238889 +S"hogarth's" +p238891 +tp238892 +a(g238889 +g238891 +S'incisive' +p238893 +tp238894 +a(g238891 +g238893 +S'pictorial' +p238895 +tp238896 +a(g238893 +g238895 +S'satire.' +p238897 +tp238898 +a(g238895 +g238897 +S'the' +p238899 +tp238900 +a(g238897 +g238899 +S'setting' +p238901 +tp238902 +a(g238899 +g238901 +S'(act' +p238903 +tp238904 +a(g238901 +g238903 +S'3,' +p238905 +tp238906 +a(g238903 +g238905 +S'scene' +p238907 +tp238908 +a(g238905 +g238907 +S'ii)' +p238909 +tp238910 +a(g238907 +g238909 +S'is' +p238911 +tp238912 +a(g238909 +g238911 +S'in' +p238913 +tp238914 +a(g238911 +g238913 +S'newgate' +p238915 +tp238916 +a(g238913 +g238915 +S'prison' +p238917 +tp238918 +a(g238915 +g238917 +S'where' +p238919 +tp238920 +a(g238917 +g238919 +S'macheath,' +p238921 +tp238922 +a(g238919 +g238921 +S'a' +p238923 +tp238924 +a(g238921 +g238923 +S'highwayman' +p238925 +tp238926 +a(g238923 +g238925 +S'and' +p238927 +tp238928 +a(g238925 +g238927 +S'anti-hero' +p238929 +tp238930 +a(g238927 +g238929 +S'of' +p238931 +tp238932 +a(g238929 +g238931 +S'sorts,' +p238933 +tp238934 +a(g238931 +g238933 +S'has' +p238935 +tp238936 +a(g238933 +g238935 +S'been' +p238937 +tp238938 +a(g238935 +g238937 +S'brought' +p238939 +tp238940 +a(g238937 +g238939 +S'after' +p238941 +tp238942 +a(g238939 +g238941 +S'his' +p238943 +tp238944 +a(g238941 +g238943 +S'arrest' +p238945 +tp238946 +a(g238943 +g238945 +S'for' +p238947 +tp238948 +a(g238945 +g238947 +S'robbery.' +p238949 +tp238950 +a(g238947 +g238949 +S'he' +p238951 +tp238952 +a(g238949 +g238951 +S'stands' +p238953 +tp238954 +a(g238951 +g238953 +S'in' +p238955 +tp238956 +a(g238953 +g238955 +S'the' +p238957 +tp238958 +a(g238955 +g238957 +S'middle' +p238959 +tp238960 +a(g238957 +g238959 +S'of' +p238961 +tp238962 +a(g238959 +g238961 +S'the' +p238963 +tp238964 +a(g238961 +g238963 +S'stage,' +p238965 +tp238966 +a(g238963 +g238965 +S'shackled,' +p238967 +tp238968 +a(g238965 +g238967 +S'legs' +p238969 +tp238970 +a(g238967 +g238969 +S'astride,' +p238971 +tp238972 +a(g238969 +g238971 +S'a' +p238973 +tp238974 +a(g238971 +g238973 +S'dominant' +p238975 +tp238976 +a(g238973 +g238975 +S'figure' +p238977 +tp238978 +a(g238975 +g238977 +S'in' +p238979 +tp238980 +a(g238977 +g238979 +S'brilliant' +p238981 +tp238982 +a(g238979 +g238981 +S'red.' +p238983 +tp238984 +a(g238981 +g238983 +S'to' +p238985 +tp238986 +a(g238983 +g238985 +S'the' +p238987 +tp238988 +a(g238985 +g238987 +S'left' +p238989 +tp238990 +a(g238987 +g238989 +S'is' +p238991 +tp238992 +a(g238989 +g238991 +S'lucy,' +p238993 +tp238994 +a(g238991 +g238993 +S"macheath's" +p238995 +tp238996 +a(g238993 +g238995 +S'lover,' +p238997 +tp238998 +a(g238995 +g238997 +S'the' +p238999 +tp239000 +a(g238997 +g238999 +S'daughter' +p239001 +tp239002 +a(g238999 +g239001 +S'of' +p239003 +tp239004 +a(g239001 +g239003 +S'the' +p239005 +tp239006 +a(g239003 +g239005 +S'jailer' +p239007 +tp239008 +a(g239005 +g239007 +S'lockit.' +p239009 +tp239010 +a(g239007 +g239009 +S'to' +p239011 +tp239012 +a(g239009 +g239011 +S'the' +p239013 +tp239014 +a(g239011 +g239013 +S'right' +p239015 +tp239016 +a(g239013 +g239015 +S'is' +p239017 +tp239018 +a(g239015 +g239017 +S"macheath's" +p239019 +tp239020 +a(g239017 +g239019 +S'wife,' +p239021 +tp239022 +a(g239019 +g239021 +S'polly,' +p239023 +tp239024 +a(g239021 +g239023 +S'who' +p239025 +tp239026 +a(g239023 +g239025 +S'kneels' +p239027 +tp239028 +a(g239025 +g239027 +S'by' +p239029 +tp239030 +a(g239027 +g239029 +S'her' +p239031 +tp239032 +a(g239029 +g239031 +S'father,' +p239033 +tp239034 +a(g239031 +g239033 +S'peachum,' +p239035 +tp239036 +a(g239033 +g239035 +S'the' +p239037 +tp239038 +a(g239035 +g239037 +S'fence' +p239039 +tp239040 +a(g239037 +g239039 +S'who' +p239041 +tp239042 +a(g239039 +g239041 +S'betrayed' +p239043 +tp239044 +a(g239041 +g239043 +S'macheath' +p239045 +tp239046 +a(g239043 +g239045 +S'and' +p239047 +tp239048 +a(g239045 +g239047 +S'in' +p239049 +tp239050 +a(g239047 +g239049 +S'doing' +p239051 +tp239052 +a(g239049 +g239051 +S'so' +p239053 +tp239054 +a(g239051 +g239053 +S'brought' +p239055 +tp239056 +a(g239053 +g239055 +S'about' +p239057 +tp239058 +a(g239055 +g239057 +S'the' +p239059 +tp239060 +a(g239057 +g239059 +S'present' +p239061 +tp239062 +a(g239059 +g239061 +S'crisis.' +p239063 +tp239064 +a(g239061 +g239063 +S'both' +p239065 +tp239066 +a(g239063 +g239065 +S'wife' +p239067 +tp239068 +a(g239065 +g239067 +S'and' +p239069 +tp239070 +a(g239067 +g239069 +S'lover' +p239071 +tp239072 +a(g239069 +g239071 +S'plead' +p239073 +tp239074 +a(g239071 +g239073 +S'for' +p239075 +tp239076 +a(g239073 +g239075 +S"macheath's" +p239077 +tp239078 +a(g239075 +g239077 +S'life' +p239079 +tp239080 +a(g239077 +g239079 +S'to' +p239081 +tp239082 +a(g239079 +g239081 +S'be' +p239083 +tp239084 +a(g239081 +g239083 +S'spared.' +p239085 +tp239086 +a(g239083 +g239085 +S"wheatley's" +p239087 +tp239088 +a(g239085 +g239087 +S'portrait' +p239089 +tp239090 +a(g239087 +g239089 +S'style' +p239091 +tp239092 +a(g239089 +g239091 +S'has' +p239093 +tp239094 +a(g239091 +g239093 +S'much' +p239095 +tp239096 +a(g239093 +g239095 +S'in' +p239097 +tp239098 +a(g239095 +g239097 +S'common' +p239099 +tp239100 +a(g239097 +g239099 +S'with' +p239101 +tp239102 +a(g239099 +g239101 +S'the' +p239103 +tp239104 +a(g239101 +g239103 +S'traditional' +p239105 +tp239106 +a(g239103 +g239105 +S'conversation' +p239107 +tp239108 +a(g239105 +g239107 +S'pieces' +p239109 +tp239110 +a(g239107 +g239109 +S'of' +p239111 +tp239112 +a(g239109 +g239111 +S'artists' +p239113 +tp239114 +a(g239111 +g239113 +S'such' +p239115 +tp239116 +a(g239113 +g239115 +S'as' +p239117 +tp239118 +a(g239115 +g239117 +S'arthur' +p239119 +tp239120 +a(g239117 +g239119 +S'devis.' +p239121 +tp239122 +a(g239119 +g239121 +S'while' +p239123 +tp239124 +a(g239121 +g239123 +S'the' +p239125 +tp239126 +a(g239123 +g239125 +S'figures' +p239127 +tp239128 +a(g239125 +g239127 +S'in' +p239129 +tp239130 +a(g239127 +g239129 +S"wheatley's" +p239131 +tp239132 +a(g239129 +g239131 +S'portraits' +p239133 +tp239134 +a(g239131 +g239133 +S'are' +p239135 +tp239136 +a(g239133 +g239135 +S'larger' +p239137 +tp239138 +a(g239135 +g239137 +S'in' +p239139 +tp239140 +a(g239137 +g239139 +S'proportion' +p239141 +tp239142 +a(g239139 +g239141 +S'to' +p239143 +tp239144 +a(g239141 +g239143 +S'the' +p239145 +tp239146 +a(g239143 +g239145 +S'background' +p239147 +tp239148 +a(g239145 +g239147 +S'than' +p239149 +tp239150 +a(g239147 +g239149 +S'in' +p239151 +tp239152 +a(g239149 +g239151 +S"devis'" +p239153 +tp239154 +a(g239151 +g239153 +S'works,' +p239155 +tp239156 +a(g239153 +g239155 +S'both' +p239157 +tp239158 +a(g239155 +g239157 +S'artists' +p239159 +tp239160 +a(g239157 +g239159 +S'employed' +p239161 +tp239162 +a(g239159 +g239161 +S'the' +p239163 +tp239164 +a(g239161 +g239163 +S'same' +p239165 +tp239166 +a(g239163 +g239165 +S'formula' +p239167 +tp239168 +a(g239165 +g239167 +S'of' +p239169 +tp239170 +a(g239167 +g239169 +S'presenting' +p239171 +tp239172 +a(g239169 +g239171 +S'middle-class' +p239173 +tp239174 +a(g239171 +g239173 +S'families' +p239175 +tp239176 +a(g239173 +g239175 +S'engaged' +p239177 +tp239178 +a(g239175 +g239177 +S'together' +p239179 +tp239180 +a(g239177 +g239179 +S'in' +p239181 +tp239182 +a(g239179 +g239181 +S'some' +p239183 +tp239184 +a(g239181 +g239183 +S'pleasant' +p239185 +tp239186 +a(g239183 +g239185 +S'activity,' +p239187 +tp239188 +a(g239185 +g239187 +S'often' +p239189 +tp239190 +a(g239187 +g239189 +S'with' +p239191 +tp239192 +a(g239189 +g239191 +S'one' +p239193 +tp239194 +a(g239191 +g239193 +S'member' +p239195 +tp239196 +a(g239193 +g239195 +S'of' +p239197 +tp239198 +a(g239195 +g239197 +S'the' +p239199 +tp239200 +a(g239197 +g239199 +S'group' +p239201 +tp239202 +a(g239199 +g239201 +S'looking' +p239203 +tp239204 +a(g239201 +g239203 +S'out' +p239205 +tp239206 +a(g239203 +g239205 +S'at' +p239207 +tp239208 +a(g239205 +g239207 +S'the' +p239209 +tp239210 +a(g239207 +g239209 +S'viewer.' +p239211 +tp239212 +a(g239209 +g239211 +S'the' +p239213 +tp239214 +a(g239211 +g239213 +S'figures' +p239215 +tp239216 +a(g239213 +g239215 +S'of' +p239217 +tp239218 +a(g239215 +g239217 +S'this' +p239219 +tp239220 +a(g239217 +g239219 +S'group' +p239221 +tp239222 +a(g239219 +g239221 +S'are' +p239223 +tp239224 +a(g239221 +g239223 +S'arranged' +p239225 +tp239226 +a(g239223 +g239225 +S'in' +p239227 +tp239228 +a(g239225 +g239227 +S'a' +p239229 +tp239230 +a(g239227 +g239229 +S'parklike' +p239231 +tp239232 +a(g239229 +g239231 +S'setting,' +p239233 +tp239234 +a(g239231 +g239233 +S'silhouetted' +p239235 +tp239236 +a(g239233 +g239235 +S'against' +p239237 +tp239238 +a(g239235 +g239237 +S'a' +p239239 +tp239240 +a(g239237 +g239239 +S'backdrop' +p239241 +tp239242 +a(g239239 +g239241 +S'of' +p239243 +tp239244 +a(g239241 +g239243 +S'dark-green' +p239245 +tp239246 +a(g239243 +g239245 +S'foliage.' +p239247 +tp239248 +a(g239245 +g239247 +S'wheatley' +p239249 +tp239250 +a(g239247 +g239249 +S'suggested' +p239251 +tp239252 +a(g239249 +g239251 +S'the' +p239253 +tp239254 +a(g239251 +g239253 +S'psychological' +p239255 +tp239256 +a(g239253 +g239255 +S'relationships' +p239257 +tp239258 +a(g239255 +g239257 +S'of' +p239259 +tp239260 +a(g239257 +g239259 +S'the' +p239261 +tp239262 +a(g239259 +g239261 +S'subjects' +p239263 +tp239264 +a(g239261 +g239263 +S'through' +p239265 +tp239266 +a(g239263 +g239265 +S'their' +p239267 +tp239268 +a(g239265 +g239267 +S'physical' +p239269 +tp239270 +a(g239267 +g239269 +S'arrangement' +p239271 +tp239272 +a(g239269 +g239271 +S'in' +p239273 +tp239274 +a(g239271 +g239273 +S'the' +p239275 +tp239276 +a(g239273 +g239275 +S'group.' +p239277 +tp239278 +a(g239275 +g239277 +S'despite' +p239279 +tp239280 +a(g239277 +g239279 +S'the' +p239281 +tp239282 +a(g239279 +g239281 +S'difference' +p239283 +tp239284 +a(g239281 +g239283 +S'in' +p239285 +tp239286 +a(g239283 +g239285 +S'size,' +p239287 +tp239288 +a(g239285 +g239287 +S'the' +p239289 +tp239290 +a(g239287 +g239289 +S'mother' +p239291 +tp239292 +a(g239289 +g239291 +S'and' +p239293 +tp239294 +a(g239291 +g239293 +S'daughter' +p239295 +tp239296 +a(g239293 +g239295 +S'are,' +p239297 +tp239298 +a(g239295 +g239297 +S'in' +p239299 +tp239300 +a(g239297 +g239299 +S'effect,' +p239301 +tp239302 +a(g239299 +g239301 +S'mirror' +p239303 +tp239304 +a(g239301 +g239303 +S'images' +p239305 +tp239306 +a(g239303 +g239305 +S'of' +p239307 +tp239308 +a(g239305 +g239307 +S'each' +p239309 +tp239310 +a(g239307 +g239309 +S'other,' +p239311 +tp239312 +a(g239309 +g239311 +S'brought' +p239313 +tp239314 +a(g239311 +g239313 +S'together' +p239315 +tp239316 +a(g239313 +g239315 +S'by' +p239317 +tp239318 +a(g239315 +g239317 +S'similarity' +p239319 +tp239320 +a(g239317 +g239319 +S'of' +p239321 +tp239322 +a(g239319 +g239321 +S'their' +p239323 +tp239324 +a(g239321 +g239323 +S'forms' +p239325 +tp239326 +a(g239323 +g239325 +S'and' +p239327 +tp239328 +a(g239325 +g239327 +S'postures.' +p239329 +tp239330 +a(g239327 +g239329 +S'the' +p239331 +tp239332 +a(g239329 +g239331 +S"daughter's" +p239333 +tp239334 +a(g239331 +g239333 +S'intimate' +p239335 +tp239336 +a(g239333 +g239335 +S'relationship' +p239337 +tp239338 +a(g239335 +g239337 +S'with' +p239339 +tp239340 +a(g239337 +g239339 +S'each' +p239341 +tp239342 +a(g239339 +g239341 +S'parent' +p239343 +tp239344 +a(g239341 +g239343 +S'balances' +p239345 +tp239346 +a(g239343 +g239345 +S'and' +p239347 +tp239348 +a(g239345 +g239347 +S'unifies' +p239349 +tp239350 +a(g239347 +g239349 +S'the' +p239351 +tp239352 +a(g239349 +g239351 +S'composition.' +p239353 +tp239354 +a(g239351 +g239353 +S'wheatley' +p239355 +tp239356 +a(g239353 +g239355 +S'portrayed' +p239357 +tp239358 +a(g239355 +g239357 +S"sitters'" +p239359 +tp239360 +a(g239357 +g239359 +S'faces' +p239361 +tp239362 +a(g239359 +g239361 +S'with' +p239363 +tp239364 +a(g239361 +g239363 +S'great' +p239365 +tp239366 +a(g239363 +g239365 +S'sensitivity,' +p239367 +tp239368 +a(g239365 +g239367 +S'but' +p239369 +tp239370 +a(g239367 +g239369 +S'his' +p239371 +tp239372 +a(g239369 +g239371 +S'artistic' +p239373 +tp239374 +a(g239371 +g239373 +S'talents' +p239375 +tp239376 +a(g239373 +g239375 +S'are' +p239377 +tp239378 +a(g239375 +g239377 +S'best' +p239379 +tp239380 +a(g239377 +g239379 +S'seen' +p239381 +tp239382 +a(g239379 +g239381 +S'in' +p239383 +tp239384 +a(g239381 +g239383 +S'drapery' +p239385 +tp239386 +a(g239383 +g239385 +S'and' +p239387 +tp239388 +a(g239385 +g239387 +S'costume' +p239389 +tp239390 +a(g239387 +g239389 +S'details.' +p239391 +tp239392 +a(g239389 +g239391 +S'moving' +p239393 +tp239394 +a(g239391 +g239393 +S'easily' +p239395 +tp239396 +a(g239393 +g239395 +S'from' +p239397 +tp239398 +a(g239395 +g239397 +S'broad,' +p239399 +tp239400 +a(g239397 +g239399 +S'suggestive' +p239401 +tp239402 +a(g239399 +g239401 +S'brushstrokes' +p239403 +tp239404 +a(g239401 +g239403 +S'to' +p239405 +tp239406 +a(g239403 +g239405 +S'ones' +p239407 +tp239408 +a(g239405 +g239407 +S'that' +p239409 +tp239410 +a(g239407 +g239409 +S'are' +p239411 +tp239412 +a(g239409 +g239411 +S'fine' +p239413 +tp239414 +a(g239411 +g239413 +S'and' +p239415 +tp239416 +a(g239413 +g239415 +S'precise,' +p239417 +tp239418 +a(g239415 +g239417 +S'he' +p239419 +tp239420 +a(g239417 +g239419 +S'achieved' +p239421 +tp239422 +a(g239419 +g239421 +S'a' +p239423 +tp239424 +a(g239421 +g239423 +S'variety' +p239425 +tp239426 +a(g239423 +g239425 +S'of' +p239427 +tp239428 +a(g239425 +g239427 +S'techniques' +p239429 +tp239430 +a(g239427 +g239429 +S'that' +p239431 +tp239432 +a(g239429 +g239431 +S'stimulate' +p239433 +tp239434 +a(g239431 +g239433 +S'and' +p239435 +tp239436 +a(g239433 +g239435 +S'delight' +p239437 +tp239438 +a(g239435 +g239437 +S'the' +p239439 +tp239440 +a(g239437 +g239439 +S'eye.' +p239441 +tp239442 +a(g239439 +g239441 +S'richard' +p239443 +tp239444 +a(g239441 +g239443 +S'wilson' +p239445 +tp239446 +a(g239443 +g239445 +S'began' +p239447 +tp239448 +a(g239445 +g239447 +S'as' +p239449 +tp239450 +a(g239447 +g239449 +S'a' +p239451 +tp239452 +a(g239449 +g239451 +S'portraitist,' +p239453 +tp239454 +a(g239451 +g239453 +S'although' +p239455 +tp239456 +a(g239453 +g239455 +S'he' +p239457 +tp239458 +a(g239455 +g239457 +S'also' +p239459 +tp239460 +a(g239457 +g239459 +S'produced' +p239461 +tp239462 +a(g239459 +g239461 +S'a' +p239463 +tp239464 +a(g239461 +g239463 +S'few' +p239465 +tp239466 +a(g239463 +g239465 +S'topographical' +p239467 +tp239468 +a(g239465 +g239467 +S'paintings' +p239469 +tp239470 +a(g239467 +g239469 +S'early' +p239471 +tp239472 +a(g239469 +g239471 +S'in' +p239473 +tp239474 +a(g239471 +g239473 +S'his' +p239475 +tp239476 +a(g239473 +g239475 +S'career.' +p239477 +tp239478 +a(g239475 +g239477 +S'during' +p239479 +tp239480 +a(g239477 +g239479 +S'his' +p239481 +tp239482 +a(g239479 +g239481 +S'stay' +p239483 +tp239484 +a(g239481 +g239483 +S'in' +p239485 +tp239486 +a(g239483 +g239485 +S'italy' +p239487 +tp239488 +a(g239485 +g239487 +S'in' +p239489 +tp239490 +a(g239487 +g239489 +S'the' +p239491 +tp239492 +a(g239489 +g239491 +S'1750s' +p239493 +tp239494 +a(g239491 +g239493 +S'he' +p239495 +tp239496 +a(g239493 +g239495 +S'turned' +p239497 +tp239498 +a(g239495 +g239497 +S'his' +p239499 +tp239500 +a(g239497 +g239499 +S'attention' +p239501 +tp239502 +a(g239499 +g239501 +S'exclusively' +p239503 +tp239504 +a(g239501 +g239503 +S'to' +p239505 +tp239506 +a(g239503 +g239505 +S'depictions' +p239507 +tp239508 +a(g239505 +g239507 +S'of' +p239509 +tp239510 +a(g239507 +g239509 +S'arcadian' +p239511 +tp239512 +a(g239509 +g239511 +S'landscape' +p239513 +tp239514 +a(g239511 +g239513 +S'and' +p239515 +tp239516 +a(g239513 +g239515 +S'developed' +p239517 +tp239518 +a(g239515 +g239517 +S'a' +p239519 +tp239520 +a(g239517 +g239519 +S'personal' +p239521 +tp239522 +a(g239519 +g239521 +S'style' +p239523 +tp239524 +a(g239521 +g239523 +S'that' +p239525 +tp239526 +a(g239523 +g239525 +S'freed' +p239527 +tp239528 +a(g239525 +g239527 +S'him' +p239529 +tp239530 +a(g239527 +g239529 +S'from' +p239531 +tp239532 +a(g239529 +g239531 +S'the' +p239533 +tp239534 +a(g239531 +g239533 +S'realistic' +p239535 +tp239536 +a(g239533 +g239535 +S'constraints' +p239537 +tp239538 +a(g239535 +g239537 +S'of' +p239539 +tp239540 +a(g239537 +g239539 +S'his' +p239541 +tp239542 +a(g239539 +g239541 +S'earlier' +p239543 +tp239544 +a(g239541 +g239543 +S'works.' +p239545 +tp239546 +a(g239543 +g239545 +S'indeed,' +p239547 +tp239548 +a(g239545 +g239547 +S"italy's" +p239549 +tp239550 +a(g239547 +g239549 +S'golden' +p239551 +tp239552 +a(g239549 +g239551 +S'mediterranean' +p239553 +tp239554 +a(g239551 +g239553 +S'light' +p239555 +tp239556 +a(g239553 +g239555 +S'and' +p239557 +tp239558 +a(g239555 +g239557 +S'the' +p239559 +tp239560 +a(g239557 +g239559 +S'ancient' +p239561 +tp239562 +a(g239559 +g239561 +S'ruins' +p239563 +tp239564 +a(g239561 +g239563 +S'that' +p239565 +tp239566 +a(g239563 +g239565 +S'evoked' +p239567 +tp239568 +a(g239565 +g239567 +S'the' +p239569 +tp239570 +a(g239567 +g239569 +S'glory' +p239571 +tp239572 +a(g239569 +g239571 +S'of' +p239573 +tp239574 +a(g239571 +g239573 +S'its' +p239575 +tp239576 +a(g239573 +g239575 +S'classical' +p239577 +tp239578 +a(g239575 +g239577 +S'past' +p239579 +tp239580 +a(g239577 +g239579 +S'affected' +p239581 +tp239582 +a(g239579 +g239581 +S'wilson' +p239583 +tp239584 +a(g239581 +g239583 +S'long' +p239585 +tp239586 +a(g239583 +g239585 +S'after' +p239587 +tp239588 +a(g239585 +g239587 +S'his' +p239589 +tp239590 +a(g239587 +g239589 +S'return' +p239591 +tp239592 +a(g239589 +g239591 +S'to' +p239593 +tp239594 +a(g239591 +g239593 +S'london' +p239595 +tp239596 +a(g239593 +g239595 +S'in' +p239597 +tp239598 +a(g239595 +g239597 +S'1756.' +p239599 +tp239600 +a(g239597 +g239599 +S'like' +p239601 +tp239602 +a(g239599 +g239601 +S'his' +p239603 +tp239604 +a(g239601 +g239603 +S'contemporary' +p239605 +tp239606 +a(g239603 +g239605 +S'reynolds,' +p239607 +tp239608 +a(g239605 +g239607 +S'wilson' +p239609 +tp239610 +a(g239607 +g239609 +S'sought' +p239611 +tp239612 +a(g239609 +g239611 +S'to' +p239613 +tp239614 +a(g239611 +g239613 +S'elevate' +p239615 +tp239616 +a(g239613 +g239615 +S'the' +p239617 +tp239618 +a(g239615 +g239617 +S'status' +p239619 +tp239620 +a(g239617 +g239619 +S'of' +p239621 +tp239622 +a(g239619 +g239621 +S'his' +p239623 +tp239624 +a(g239621 +g239623 +S'genre' +p239625 +tp239626 +a(g239623 +g239625 +S'of' +p239627 +tp239628 +a(g239625 +g239627 +S'painting' +p239629 +tp239630 +a(g239627 +g239629 +S'through' +p239631 +tp239632 +a(g239629 +g239631 +S'the' +p239633 +tp239634 +a(g239631 +g239633 +S'systematic' +p239635 +tp239636 +a(g239633 +g239635 +S'application' +p239637 +tp239638 +a(g239635 +g239637 +S'of' +p239639 +tp239640 +a(g239637 +g239639 +S'classical' +p239641 +tp239642 +a(g239639 +g239641 +S'standards.' +p239643 +tp239644 +a(g239641 +g239643 +S'in' +p239645 +tp239646 +a(g239643 +g239645 +S'this' +p239647 +tp239648 +a(g239645 +g239647 +S'landscape' +p239649 +tp239650 +a(g239647 +g239649 +S'the' +p239651 +tp239652 +a(g239649 +g239651 +S'artist' +p239653 +tp239654 +a(g239651 +g239653 +S'draws' +p239655 +tp239656 +a(g239653 +g239655 +S'on' +p239657 +tp239658 +a(g239655 +g239657 +S'his' +p239659 +tp239660 +a(g239657 +g239659 +S'memories' +p239661 +tp239662 +a(g239659 +g239661 +S'of' +p239663 +tp239664 +a(g239661 +g239663 +S'the' +p239665 +tp239666 +a(g239663 +g239665 +S'italian' +p239667 +tp239668 +a(g239665 +g239667 +S'countryside' +p239669 +tp239670 +a(g239667 +g239669 +S'as' +p239671 +tp239672 +a(g239669 +g239671 +S'well' +p239673 +tp239674 +a(g239671 +g239673 +S'as' +p239675 +tp239676 +a(g239673 +g239675 +S'on' +p239677 +tp239678 +a(g239675 +g239677 +S'his' +p239679 +tp239680 +a(g239677 +g239679 +S'imagination' +p239681 +tp239682 +a(g239679 +g239681 +S'to' +p239683 +tp239684 +a(g239681 +g239683 +S'create' +p239685 +tp239686 +a(g239683 +g239685 +S'a' +p239687 +tp239688 +a(g239685 +g239687 +S'richly' +p239689 +tp239690 +a(g239687 +g239689 +S'detailed' +p239691 +tp239692 +a(g239689 +g239691 +S'panorama,' +p239693 +tp239694 +a(g239691 +g239693 +S'suffused' +p239695 +tp239696 +a(g239693 +g239695 +S'with' +p239697 +tp239698 +a(g239695 +g239697 +S'a' +p239699 +tp239700 +a(g239697 +g239699 +S'quiet' +p239701 +tp239702 +a(g239699 +g239701 +S'and' +p239703 +tp239704 +a(g239701 +g239703 +S'evocative' +p239705 +tp239706 +a(g239703 +g239705 +S'mood.' +p239707 +tp239708 +a(g239705 +g239707 +S'on' +p239709 +tp239710 +a(g239707 +g239709 +S'a' +p239711 +tp239712 +a(g239709 +g239711 +S'massive' +p239713 +tp239714 +a(g239711 +g239713 +S'pedestal' +p239715 +tp239716 +a(g239713 +g239715 +S'stands' +p239717 +tp239718 +a(g239715 +g239717 +S'the' +p239719 +tp239720 +a(g239717 +g239719 +S'ruin' +p239721 +tp239722 +a(g239719 +g239721 +S'of' +p239723 +tp239724 +a(g239721 +g239723 +S'a' +p239725 +tp239726 +a(g239723 +g239725 +S'statue' +p239727 +tp239728 +a(g239725 +g239727 +S'of' +p239729 +tp239730 +a(g239727 +g239729 +S'a' +p239731 +tp239732 +a(g239729 +g239731 +S'lion' +p239733 +tp239734 +a(g239731 +g239733 +S'with' +p239735 +tp239736 +a(g239733 +g239735 +S'a' +p239737 +tp239738 +a(g239735 +g239737 +S'globe' +p239739 +tp239740 +a(g239737 +g239739 +S'under' +p239741 +tp239742 +a(g239739 +g239741 +S'its' +p239743 +tp239744 +a(g239741 +g239743 +S'paw,' +p239745 +tp239746 +a(g239743 +g239745 +S'symbolizing' +p239747 +tp239748 +a(g239745 +g239747 +S'the' +p239749 +tp239750 +a(g239747 +g239749 +S'inevitability' +p239751 +tp239752 +a(g239749 +g239751 +S'of' +p239753 +tp239754 +a(g239751 +g239753 +S'death' +p239755 +tp239756 +a(g239753 +g239755 +S'and' +p239757 +tp239758 +a(g239755 +g239757 +S'decay.' +p239759 +tp239760 +a(g239757 +g239759 +S'the' +p239761 +tp239762 +a(g239759 +g239761 +S'pagan' +p239763 +tp239764 +a(g239761 +g239763 +S'hermit' +p239765 +tp239766 +a(g239763 +g239765 +S'reading' +p239767 +tp239768 +a(g239765 +g239767 +S'at' +p239769 +tp239770 +a(g239767 +g239769 +S'the' +p239771 +tp239772 +a(g239769 +g239771 +S'base' +p239773 +tp239774 +a(g239771 +g239773 +S'of' +p239775 +tp239776 +a(g239773 +g239775 +S'the' +p239777 +tp239778 +a(g239775 +g239777 +S'statue' +p239779 +tp239780 +a(g239777 +g239779 +S'and' +p239781 +tp239782 +a(g239779 +g239781 +S'the' +p239783 +tp239784 +a(g239781 +g239783 +S'two' +p239785 +tp239786 +a(g239783 +g239785 +S'christian' +p239787 +tp239788 +a(g239785 +g239787 +S'monks' +p239789 +tp239790 +a(g239787 +g239789 +S'to' +p239791 +tp239792 +a(g239789 +g239791 +S'the' +p239793 +tp239794 +a(g239791 +g239793 +S'left,' +p239795 +tp239796 +a(g239793 +g239795 +S'their' +p239797 +tp239798 +a(g239795 +g239797 +S'church' +p239799 +tp239800 +a(g239797 +g239799 +S'highlighted' +p239801 +tp239802 +a(g239799 +g239801 +S'in' +p239803 +tp239804 +a(g239801 +g239803 +S'a' +p239805 +tp239806 +a(g239803 +g239805 +S'clearing' +p239807 +tp239808 +a(g239805 +g239807 +S'in' +p239809 +tp239810 +a(g239807 +g239809 +S'the' +p239811 +tp239812 +a(g239809 +g239811 +S'woods,' +p239813 +tp239814 +a(g239811 +g239813 +S'seem' +p239815 +tp239816 +a(g239813 +g239815 +S'to' +p239817 +tp239818 +a(g239815 +g239817 +S'share' +p239819 +tp239820 +a(g239817 +g239819 +S'a' +p239821 +tp239822 +a(g239819 +g239821 +S'common' +p239823 +tp239824 +a(g239821 +g239823 +S'hope' +p239825 +tp239826 +a(g239823 +g239825 +S'of' +p239827 +tp239828 +a(g239825 +g239827 +S'discovering' +p239829 +tp239830 +a(g239827 +g239829 +S'answers' +p239831 +tp239832 +a(g239829 +g239831 +S'to' +p239833 +tp239834 +a(g239831 +g239833 +S'the' +p239835 +tp239836 +a(g239833 +g239835 +S'mysteries' +p239837 +tp239838 +a(g239835 +g239837 +S'of' +p239839 +tp239840 +a(g239837 +g239839 +S'life.' +p239841 +tp239842 +a(g239839 +g239841 +S'josiah' +p239843 +tp239844 +a(g239841 +g239843 +S'wedgwood,' +p239845 +tp239846 +a(g239843 +g239845 +S'the' +p239847 +tp239848 +a(g239845 +g239847 +S'pioneer' +p239849 +tp239850 +a(g239847 +g239849 +S'of' +p239851 +tp239852 +a(g239849 +g239851 +S'pottery' +p239853 +tp239854 +a(g239851 +g239853 +S'manufacturing,' +p239855 +tp239856 +a(g239853 +g239855 +S'commissioned' +p239857 +tp239858 +a(g239855 +g239857 +S'this' +p239859 +tp239860 +a(g239857 +g239859 +S'mythological' +p239861 +tp239862 +a(g239859 +g239861 +S'scene' +p239863 +tp239864 +a(g239861 +g239863 +S'that' +p239865 +tp239866 +a(g239863 +g239865 +S'illustrates' +p239867 +tp239868 +a(g239865 +g239867 +S'the' +p239869 +tp239870 +a(g239867 +g239869 +S'invention' +p239871 +tp239872 +a(g239869 +g239871 +S'of' +p239873 +tp239874 +a(g239871 +g239873 +S'the' +p239875 +tp239876 +a(g239873 +g239875 +S'art' +p239877 +tp239878 +a(g239875 +g239877 +S'of' +p239879 +tp239880 +a(g239877 +g239879 +S'modeling' +p239881 +tp239882 +a(g239879 +g239881 +S'bas-relief' +p239883 +tp239884 +a(g239881 +g239883 +S'sculpture.' +p239885 +tp239886 +a(g239883 +g239885 +S'wedgwood’s' +p239887 +tp239888 +a(g239885 +g239887 +S'own' +p239889 +tp239890 +a(g239887 +g239889 +S'fired-clay' +p239891 +tp239892 +a(g239889 +g239891 +S'vessels,' +p239893 +tp239894 +a(g239891 +g239893 +S'decorated' +p239895 +tp239896 +a(g239893 +g239895 +S'with' +p239897 +tp239898 +a(g239895 +g239897 +S'low' +p239899 +tp239900 +a(g239897 +g239899 +S'reliefs,' +p239901 +tp239902 +a(g239899 +g239901 +S'would' +p239903 +tp239904 +a(g239901 +g239903 +S'have' +p239905 +tp239906 +a(g239903 +g239905 +S'been' +p239907 +tp239908 +a(g239905 +g239907 +S'seen' +p239909 +tp239910 +a(g239907 +g239909 +S'by' +p239911 +tp239912 +a(g239909 +g239911 +S'an' +p239913 +tp239914 +a(g239911 +g239913 +S'eighteenth-century' +p239915 +tp239916 +a(g239913 +g239915 +S'audience' +p239917 +tp239918 +a(g239915 +g239917 +S'as' +p239919 +tp239920 +a(g239917 +g239919 +S'the' +p239921 +tp239922 +a(g239919 +g239921 +S'aesthetic' +p239923 +tp239924 +a(g239921 +g239923 +S'descendants' +p239925 +tp239926 +a(g239923 +g239925 +S'of' +p239927 +tp239928 +a(g239925 +g239927 +S'this' +p239929 +tp239930 +a(g239927 +g239929 +S'ancient' +p239931 +tp239932 +a(g239929 +g239931 +S'greek' +p239933 +tp239934 +a(g239931 +g239933 +S'maiden’s' +p239935 +tp239936 +a(g239933 +g239935 +S'attempt' +p239937 +tp239938 +a(g239935 +g239937 +S'to' +p239939 +tp239940 +a(g239937 +g239939 +S'preserve' +p239941 +tp239942 +a(g239939 +g239941 +S'her' +p239943 +tp239944 +a(g239941 +g239943 +S'beloved’s' +p239945 +tp239946 +a(g239943 +g239945 +S'profile.' +p239947 +tp239948 +a(g239945 +g239947 +S'the' +p239949 +tp239950 +a(g239947 +g239949 +S'girl' +p239951 +tp239952 +a(g239949 +g239951 +S'was' +p239953 +tp239954 +a(g239951 +g239953 +S'the' +p239955 +tp239956 +a(g239953 +g239955 +S'daughter' +p239957 +tp239958 +a(g239955 +g239957 +S'of' +p239959 +tp239960 +a(g239957 +g239959 +S'a' +p239961 +tp239962 +a(g239959 +g239961 +S'potter' +p239963 +tp239964 +a(g239961 +g239963 +S'in' +p239965 +tp239966 +a(g239963 +g239965 +S'corinth.' +p239967 +tp239968 +a(g239965 +g239967 +S'her' +p239969 +tp239970 +a(g239967 +g239969 +S'boyfriend' +p239971 +tp239972 +a(g239969 +g239971 +S'was' +p239973 +tp239974 +a(g239971 +g239973 +S'about' +p239975 +tp239976 +a(g239973 +g239975 +S'to' +p239977 +tp239978 +a(g239975 +g239977 +S'embark' +p239979 +tp239980 +a(g239977 +g239979 +S'on' +p239981 +tp239982 +a(g239979 +g239981 +S'a' +p239983 +tp239984 +a(g239981 +g239983 +S'perilous' +p239985 +tp239986 +a(g239983 +g239985 +S'journey' +p239987 +tp239988 +a(g239985 +g239987 +S'to' +p239989 +tp239990 +a(g239987 +g239989 +S'foreign' +p239991 +tp239992 +a(g239989 +g239991 +S'lands,' +p239993 +tp239994 +a(g239991 +g239993 +S'taking' +p239995 +tp239996 +a(g239993 +g239995 +S'only' +p239997 +tp239998 +a(g239995 +g239997 +S'his' +p239999 +tp240000 +a(g239997 +g239999 +S'spear' +p240001 +tp240002 +a(g239999 +g240001 +S'and' +p240003 +tp240004 +a(g240001 +g240003 +S'dog.' +p240005 +tp240006 +a(g240003 +g240005 +S'as' +p240007 +tp240008 +a(g240005 +g240007 +S'a' +p240009 +tp240010 +a(g240007 +g240009 +S'memento,' +p240011 +tp240012 +a(g240009 +g240011 +S'she' +p240013 +tp240014 +a(g240011 +g240013 +S'traced' +p240015 +tp240016 +a(g240013 +g240015 +S'her' +p240017 +tp240018 +a(g240015 +g240017 +S'sleeping' +p240019 +tp240020 +a(g240017 +g240019 +S'lover’s' +p240021 +tp240022 +a(g240019 +g240021 +S'silhouette' +p240023 +tp240024 +a(g240021 +g240023 +S'onto' +p240025 +tp240026 +a(g240023 +g240025 +S'the' +p240027 +tp240028 +a(g240025 +g240027 +S'wall.' +p240029 +tp240030 +a(g240027 +g240029 +S'her' +p240031 +tp240032 +a(g240029 +g240031 +S'father' +p240033 +tp240034 +a(g240031 +g240033 +S'then' +p240035 +tp240036 +a(g240033 +g240035 +S'used' +p240037 +tp240038 +a(g240035 +g240037 +S'the' +p240039 +tp240040 +a(g240037 +g240039 +S'drawing' +p240041 +tp240042 +a(g240039 +g240041 +S'to' +p240043 +tp240044 +a(g240041 +g240043 +S'model' +p240045 +tp240046 +a(g240043 +g240045 +S'a' +p240047 +tp240048 +a(g240045 +g240047 +S'clay' +p240049 +tp240050 +a(g240047 +g240049 +S'relief,' +p240051 +tp240052 +a(g240049 +g240051 +S'which' +p240053 +tp240054 +a(g240051 +g240053 +S'he' +p240055 +tp240056 +a(g240053 +g240055 +S'baked' +p240057 +tp240058 +a(g240055 +g240057 +S'in' +p240059 +tp240060 +a(g240057 +g240059 +S'his' +p240061 +tp240062 +a(g240059 +g240061 +S'kiln' +p240063 +tp240064 +a(g240061 +g240063 +S'to' +p240065 +tp240066 +a(g240063 +g240065 +S'create' +p240067 +tp240068 +a(g240065 +g240067 +S'a' +p240069 +tp240070 +a(g240067 +g240069 +S'ceramic' +p240071 +tp240072 +a(g240069 +g240071 +S'keepsake.' +p240073 +tp240074 +a(g240071 +g240073 +S'joseph' +p240075 +tp240076 +a(g240073 +g240075 +S'wright,' +p240077 +tp240078 +a(g240075 +g240077 +S'a' +p240079 +tp240080 +a(g240077 +g240079 +S'master' +p240081 +tp240082 +a(g240079 +g240081 +S'of' +p240083 +tp240084 +a(g240081 +g240083 +S'artificial' +p240085 +tp240086 +a(g240083 +g240085 +S'illumination,' +p240087 +tp240088 +a(g240085 +g240087 +S'concealed' +p240089 +tp240090 +a(g240087 +g240089 +S'a' +p240091 +tp240092 +a(g240089 +g240091 +S'hanging' +p240093 +tp240094 +a(g240091 +g240093 +S'lamp' +p240095 +tp240096 +a(g240093 +g240095 +S'behind' +p240097 +tp240098 +a(g240095 +g240097 +S'the' +p240099 +tp240100 +a(g240097 +g240099 +S'curtain,' +p240101 +tp240102 +a(g240099 +g240101 +S'suggesting' +p240103 +tp240104 +a(g240101 +g240103 +S'the' +p240105 +tp240106 +a(g240103 +g240105 +S'source' +p240107 +tp240108 +a(g240105 +g240107 +S'of' +p240109 +tp240110 +a(g240107 +g240109 +S'the' +p240111 +tp240112 +a(g240109 +g240111 +S'beams' +p240113 +tp240114 +a(g240111 +g240113 +S'that' +p240115 +tp240116 +a(g240113 +g240115 +S'cast' +p240117 +tp240118 +a(g240115 +g240117 +S'the' +p240119 +tp240120 +a(g240117 +g240119 +S'youth’s' +p240121 +tp240122 +a(g240119 +g240121 +S'shadow.' +p240123 +tp240124 +a(g240121 +g240123 +S'in' +p240125 +tp240126 +a(g240123 +g240125 +S'contrast' +p240127 +tp240128 +a(g240125 +g240127 +S'to' +p240129 +tp240130 +a(g240127 +g240129 +S'the' +p240131 +tp240132 +a(g240129 +g240131 +S'lamp’s' +p240133 +tp240134 +a(g240131 +g240133 +S'gentle' +p240135 +tp240136 +a(g240133 +g240135 +S'glow,' +p240137 +tp240138 +a(g240135 +g240137 +S'intense' +p240139 +tp240140 +a(g240137 +g240139 +S'sparks' +p240141 +tp240142 +a(g240139 +g240141 +S'and' +p240143 +tp240144 +a(g240141 +g240143 +S'embers' +p240145 +tp240146 +a(g240143 +g240145 +S'leap' +p240147 +tp240148 +a(g240145 +g240147 +S'inside' +p240149 +tp240150 +a(g240147 +g240149 +S'the' +p240151 +tp240152 +a(g240149 +g240151 +S'potter’s' +p240153 +tp240154 +a(g240151 +g240153 +S'fiery' +p240155 +tp240156 +a(g240153 +g240155 +S'furnace.' +p240157 +tp240158 +a(g240155 +g240157 +S'wright' +p240159 +tp240160 +a(g240157 +g240159 +S'researched' +p240161 +tp240162 +a(g240159 +g240161 +S'his' +p240163 +tp240164 +a(g240161 +g240163 +S'topic' +p240165 +tp240166 +a(g240163 +g240165 +S'for' +p240167 +tp240168 +a(g240165 +g240167 +S'archeological' +p240169 +tp240170 +a(g240167 +g240169 +S'accuracy.' +p240171 +tp240172 +a(g240169 +g240171 +S'wedgwood' +p240173 +tp240174 +a(g240171 +g240173 +S'loaned' +p240175 +tp240176 +a(g240173 +g240175 +S'antique' +p240177 +tp240178 +a(g240175 +g240177 +S'vases' +p240179 +tp240180 +a(g240177 +g240179 +S'from' +p240181 +tp240182 +a(g240179 +g240181 +S'his' +p240183 +tp240184 +a(g240181 +g240183 +S'own' +p240185 +tp240186 +a(g240183 +g240185 +S'art' +p240187 +tp240188 +a(g240185 +g240187 +S'collection' +p240189 +tp240190 +a(g240187 +g240189 +S'so' +p240191 +tp240192 +a(g240189 +g240191 +S'that' +p240193 +tp240194 +a(g240191 +g240193 +S'wright' +p240195 +tp240196 +a(g240193 +g240195 +S'could' +p240197 +tp240198 +a(g240195 +g240197 +S'copy' +p240199 +tp240200 +a(g240197 +g240199 +S'their' +p240201 +tp240202 +a(g240199 +g240201 +S'shapes,' +p240203 +tp240204 +a(g240201 +g240203 +S'and' +p240205 +tp240206 +a(g240203 +g240205 +S'the' +p240207 +tp240208 +a(g240205 +g240207 +S'clothing' +p240209 +tp240210 +a(g240207 +g240209 +S'derives' +p240211 +tp240212 +a(g240209 +g240211 +S'from' +p240213 +tp240214 +a(g240211 +g240213 +S'ancient' +p240215 +tp240216 +a(g240213 +g240215 +S'sculpture.' +p240217 +tp240218 +a(g240215 +g240217 +S'classical' +p240219 +tp240220 +a(g240217 +g240219 +S'symmetry' +p240221 +tp240222 +a(g240219 +g240221 +S'pervades' +p240223 +tp240224 +a(g240221 +g240223 +S'the' +p240225 +tp240226 +a(g240223 +g240225 +S'design;' +p240227 +tp240228 +a(g240225 +g240227 +S'the' +p240229 +tp240230 +a(g240227 +g240229 +S'curtain' +p240231 +tp240232 +a(g240229 +g240231 +S'and' +p240233 +tp240234 +a(g240231 +g240233 +S'archway' +p240235 +tp240236 +a(g240233 +g240235 +S'flank' +p240237 +tp240238 +a(g240235 +g240237 +S'the' +p240239 +tp240240 +a(g240237 +g240239 +S'focal' +p240241 +tp240242 +a(g240239 +g240241 +S'action' +p240243 +tp240244 +a(g240241 +g240243 +S'of' +p240245 +tp240246 +a(g240243 +g240245 +S'the' +p240247 +tp240248 +a(g240245 +g240247 +S'maiden’s' +p240249 +tp240250 +a(g240247 +g240249 +S'stylus' +p240251 +tp240252 +a(g240249 +g240251 +S'tracing' +p240253 +tp240254 +a(g240251 +g240253 +S'the' +p240255 +tp240256 +a(g240253 +g240255 +S'youth’s' +p240257 +tp240258 +a(g240255 +g240257 +S'profile.' +p240259 +tp240260 +a(g240257 +g240259 +S"wright's" +p240261 +tp240262 +a(g240259 +g240261 +S'artistic' +p240263 +tp240264 +a(g240261 +g240263 +S'interests' +p240265 +tp240266 +a(g240263 +g240265 +S'varied' +p240267 +tp240268 +a(g240265 +g240267 +S'widely,' +p240269 +tp240270 +a(g240267 +g240269 +S'ranging' +p240271 +tp240272 +a(g240269 +g240271 +S'from' +p240273 +tp240274 +a(g240271 +g240273 +S'portraiture' +p240275 +tp240276 +a(g240273 +g240275 +S'and' +p240277 +tp240278 +a(g240275 +g240277 +S'scientific' +p240279 +tp240280 +a(g240277 +g240279 +S'topics' +p240281 +tp240282 +a(g240279 +g240281 +S'in' +p240283 +tp240284 +a(g240281 +g240283 +S'his' +p240285 +tp240286 +a(g240283 +g240285 +S'early' +p240287 +tp240288 +a(g240285 +g240287 +S'"candlelight"' +p240289 +tp240290 +a(g240287 +g240289 +S'period' +p240291 +tp240292 +a(g240289 +g240291 +S'to' +p240293 +tp240294 +a(g240291 +g240293 +S'popular' +p240295 +tp240296 +a(g240293 +g240295 +S'subjects,' +p240297 +tp240298 +a(g240295 +g240297 +S'romantic' +p240299 +tp240300 +a(g240297 +g240299 +S'history,' +p240301 +tp240302 +a(g240299 +g240301 +S'literature,' +p240303 +tp240304 +a(g240301 +g240303 +S'and' +p240305 +tp240306 +a(g240303 +g240305 +S'landscapes' +p240307 +tp240308 +a(g240305 +g240307 +S'in' +p240309 +tp240310 +a(g240307 +g240309 +S'later' +p240311 +tp240312 +a(g240309 +g240311 +S'years.' +p240313 +tp240314 +a(g240311 +g240313 +S'this' +p240315 +tp240316 +a(g240313 +g240315 +S'painting' +p240317 +tp240318 +a(g240315 +g240317 +S'dates' +p240319 +tp240320 +a(g240317 +g240319 +S'from' +p240321 +tp240322 +a(g240319 +g240321 +S'the' +p240323 +tp240324 +a(g240321 +g240323 +S'end' +p240325 +tp240326 +a(g240323 +g240325 +S'of' +p240327 +tp240328 +a(g240325 +g240327 +S"wright's" +p240329 +tp240330 +a(g240327 +g240329 +S'career.' +p240331 +tp240332 +a(g240329 +g240331 +S'it' +p240333 +tp240334 +a(g240331 +g240333 +S'is' +p240335 +tp240336 +a(g240333 +g240335 +S'a' +p240337 +tp240338 +a(g240335 +g240337 +S'romantic' +p240339 +tp240340 +a(g240337 +g240339 +S'and' +p240341 +tp240342 +a(g240339 +g240341 +S'fantastic' +p240343 +tp240344 +a(g240341 +g240343 +S'blend' +p240345 +tp240346 +a(g240343 +g240345 +S'of' +p240347 +tp240348 +a(g240345 +g240347 +S'his' +p240349 +tp240350 +a(g240347 +g240349 +S'memories' +p240351 +tp240352 +a(g240349 +g240351 +S'of' +p240353 +tp240354 +a(g240351 +g240353 +S'italy' +p240355 +tp240356 +a(g240353 +g240355 +S'and' +p240357 +tp240358 +a(g240355 +g240357 +S'the' +p240359 +tp240360 +a(g240357 +g240359 +S'countryside' +p240361 +tp240362 +a(g240359 +g240361 +S'of' +p240363 +tp240364 +a(g240361 +g240363 +S'his' +p240365 +tp240366 +a(g240363 +g240365 +S'native' +p240367 +tp240368 +a(g240365 +g240367 +S'derby.' +p240369 +tp240370 +a(g240367 +g240369 +S'in' +p240371 +tp240372 +a(g240369 +g240371 +S'the' +p240373 +tp240374 +a(g240371 +g240373 +S'foreground,' +p240375 +tp240376 +a(g240373 +g240375 +S'a' +p240377 +tp240378 +a(g240375 +g240377 +S'rustic' +p240379 +tp240380 +a(g240377 +g240379 +S'figure' +p240381 +tp240382 +a(g240379 +g240381 +S'sits' +p240383 +tp240384 +a(g240381 +g240383 +S'by' +p240385 +tp240386 +a(g240383 +g240385 +S'the' +p240387 +tp240388 +a(g240385 +g240387 +S'side' +p240389 +tp240390 +a(g240387 +g240389 +S'of' +p240391 +tp240392 +a(g240389 +g240391 +S'a' +p240393 +tp240394 +a(g240391 +g240393 +S'rock-strewn' +p240395 +tp240396 +a(g240393 +g240395 +S'path;' +p240397 +tp240398 +a(g240395 +g240397 +S'he' +p240399 +tp240400 +a(g240397 +g240399 +S'is' +p240401 +tp240402 +a(g240399 +g240401 +S'a' +p240403 +tp240404 +a(g240401 +g240403 +S'small,' +p240405 +tp240406 +a(g240403 +g240405 +S'lonely' +p240407 +tp240408 +a(g240405 +g240407 +S'human' +p240409 +tp240410 +a(g240407 +g240409 +S'presence' +p240411 +tp240412 +a(g240409 +g240411 +S'in' +p240413 +tp240414 +a(g240411 +g240413 +S'this' +p240415 +tp240416 +a(g240413 +g240415 +S'broad' +p240417 +tp240418 +a(g240415 +g240417 +S'and' +p240419 +tp240420 +a(g240417 +g240419 +S'arresting' +p240421 +tp240422 +a(g240419 +g240421 +S'view' +p240423 +tp240424 +a(g240421 +g240423 +S'of' +p240425 +tp240426 +a(g240423 +g240425 +S'nature.' +p240427 +tp240428 +a(g240425 +g240427 +S'a' +p240429 +tp240430 +a(g240427 +g240429 +S'path' +p240431 +tp240432 +a(g240429 +g240431 +S'winds' +p240433 +tp240434 +a(g240431 +g240433 +S'above' +p240435 +tp240436 +a(g240433 +g240435 +S'him' +p240437 +tp240438 +a(g240435 +g240437 +S'to' +p240439 +tp240440 +a(g240437 +g240439 +S'the' +p240441 +tp240442 +a(g240439 +g240441 +S'villas' +p240443 +tp240444 +a(g240441 +g240443 +S'in' +p240445 +tp240446 +a(g240443 +g240445 +S'the' +p240447 +tp240448 +a(g240445 +g240447 +S'hills,' +p240449 +tp240450 +a(g240447 +g240449 +S'while' +p240451 +tp240452 +a(g240449 +g240451 +S'to' +p240453 +tp240454 +a(g240451 +g240453 +S'the' +p240455 +tp240456 +a(g240453 +g240455 +S'right' +p240457 +tp240458 +a(g240455 +g240457 +S'the' +p240459 +tp240460 +a(g240457 +g240459 +S'land' +p240461 +tp240462 +a(g240459 +g240461 +S'gives' +p240463 +tp240464 +a(g240461 +g240463 +S'way' +p240465 +tp240466 +a(g240463 +g240465 +S'to' +p240467 +tp240468 +a(g240465 +g240467 +S'a' +p240469 +tp240470 +a(g240467 +g240469 +S'rolling' +p240471 +tp240472 +a(g240469 +g240471 +S'meadow,' +p240473 +tp240474 +a(g240471 +g240473 +S'a' +p240475 +tp240476 +a(g240473 +g240475 +S'still' +p240477 +tp240478 +a(g240475 +g240477 +S'lake,' +p240479 +tp240480 +a(g240477 +g240479 +S'and' +p240481 +tp240482 +a(g240479 +g240481 +S'a' +p240483 +tp240484 +a(g240481 +g240483 +S'distant' +p240485 +tp240486 +a(g240483 +g240485 +S'mountain.' +p240487 +tp240488 +a(g240485 +g240487 +S'in' +p240489 +tp240490 +a(g240487 +g240489 +S'the' +p240491 +tp240492 +a(g240489 +g240491 +S'background' +p240493 +tp240494 +a(g240491 +g240493 +S'great' +p240495 +tp240496 +a(g240493 +g240495 +S'masses' +p240497 +tp240498 +a(g240495 +g240497 +S'of' +p240499 +tp240500 +a(g240497 +g240499 +S'earth' +p240501 +tp240502 +a(g240499 +g240501 +S'rise' +p240503 +tp240504 +a(g240501 +g240503 +S'dramatically,' +p240505 +tp240506 +a(g240503 +g240505 +S'culminating' +p240507 +tp240508 +a(g240505 +g240507 +S'in' +p240509 +tp240510 +a(g240507 +g240509 +S'a' +p240511 +tp240512 +a(g240509 +g240511 +S'long' +p240513 +tp240514 +a(g240511 +g240513 +S'silhouette' +p240515 +tp240516 +a(g240513 +g240515 +S'against' +p240517 +tp240518 +a(g240515 +g240517 +S'the' +p240519 +tp240520 +a(g240517 +g240519 +S'pale' +p240521 +tp240522 +a(g240519 +g240521 +S'blue' +p240523 +tp240524 +a(g240521 +g240523 +S'sky.' +p240525 +tp240526 +a(g240523 +g240525 +S"wright's" +p240527 +tp240528 +a(g240525 +g240527 +S'unorthodox' +p240529 +tp240530 +a(g240527 +g240529 +S'use' +p240531 +tp240532 +a(g240529 +g240531 +S'of' +p240533 +tp240534 +a(g240531 +g240533 +S'color' +p240535 +tp240536 +a(g240533 +g240535 +S'in' +p240537 +tp240538 +a(g240535 +g240537 +S'the' +p240539 +tp240540 +a(g240537 +g240539 +S'cliffs' +p240541 +tp240542 +a(g240539 +g240541 +S'has' +p240543 +tp240544 +a(g240541 +g240543 +S'an' +p240545 +tp240546 +a(g240543 +g240545 +S'expressionistic' +p240547 +tp240548 +a(g240545 +g240547 +S'quality' +p240549 +tp240550 +a(g240547 +g240549 +S'that' +p240551 +tp240552 +a(g240549 +g240551 +S'seems' +p240553 +tp240554 +a(g240551 +g240553 +S'to' +p240555 +tp240556 +a(g240553 +g240555 +S'foreshadow' +p240557 +tp240558 +a(g240555 +g240557 +S'the' +p240559 +tp240560 +a(g240557 +g240559 +S'works' +p240561 +tp240562 +a(g240559 +g240561 +S'of' +p240563 +tp240564 +a(g240561 +g240563 +S'later' +p240565 +tp240566 +a(g240563 +g240565 +S'artists.' +p240567 +tp240568 +a(g240565 +g240567 +S'at' +p240569 +tp240570 +a(g240567 +g240569 +S'a' +p240571 +tp240572 +a(g240569 +g240571 +S'distance' +p240573 +tp240574 +a(g240571 +g240573 +S'from' +p240575 +tp240576 +a(g240573 +g240575 +S'the' +p240577 +tp240578 +a(g240575 +g240577 +S'painting' +p240579 +tp240580 +a(g240577 +g240579 +S'the' +p240581 +tp240582 +a(g240579 +g240581 +S'sharp' +p240583 +tp240584 +a(g240581 +g240583 +S'contrast' +p240585 +tp240586 +a(g240583 +g240585 +S'between' +p240587 +tp240588 +a(g240585 +g240587 +S'the' +p240589 +tp240590 +a(g240587 +g240589 +S'colors' +p240591 +tp240592 +a(g240589 +g240591 +S'emphasizes' +p240593 +tp240594 +a(g240591 +g240593 +S'the' +p240595 +tp240596 +a(g240593 +g240595 +S'geometry' +p240597 +tp240598 +a(g240595 +g240597 +S'of' +p240599 +tp240600 +a(g240597 +g240599 +S'the' +p240601 +tp240602 +a(g240599 +g240601 +S'forms.' +p240603 +tp240604 +a(g240601 +g240603 +S'viewed' +p240605 +tp240606 +a(g240603 +g240605 +S'closer,' +p240607 +tp240608 +a(g240605 +g240607 +S'the' +p240609 +tp240610 +a(g240607 +g240609 +S'forms' +p240611 +tp240612 +a(g240609 +g240611 +S'begin' +p240613 +tp240614 +a(g240611 +g240613 +S'to' +p240615 +tp240616 +a(g240613 +g240615 +S'flatten' +p240617 +tp240618 +a(g240615 +g240617 +S'out' +p240619 +tp240620 +a(g240617 +g240619 +S'into' +p240621 +tp240622 +a(g240619 +g240621 +S'abstract' +p240623 +tp240624 +a(g240621 +g240623 +S'patterns.' +p240625 +tp240626 +a(g240623 +g240625 +S'while' +p240627 +tp240628 +a(g240625 +g240627 +S"wright's" +p240629 +tp240630 +a(g240627 +g240629 +S'vision' +p240631 +tp240632 +a(g240629 +g240631 +S'of' +p240633 +tp240634 +a(g240631 +g240633 +S'nature' +p240635 +tp240636 +a(g240633 +g240635 +S'is' +p240637 +tp240638 +a(g240635 +g240637 +S'romantic' +p240639 +tp240640 +a(g240637 +g240639 +S'in' +p240641 +tp240642 +a(g240639 +g240641 +S'its' +p240643 +tp240644 +a(g240641 +g240643 +S'use' +p240645 +tp240646 +a(g240643 +g240645 +S'of' +p240647 +tp240648 +a(g240645 +g240647 +S'light' +p240649 +tp240650 +a(g240647 +g240649 +S'and' +p240651 +tp240652 +a(g240649 +g240651 +S'color' +p240653 +tp240654 +a(g240651 +g240653 +S'and' +p240655 +tp240656 +a(g240653 +g240655 +S'in' +p240657 +tp240658 +a(g240655 +g240657 +S'its' +p240659 +tp240660 +a(g240657 +g240659 +S'pervasive' +p240661 +tp240662 +a(g240659 +g240661 +S'nostalgic' +p240663 +tp240664 +a(g240661 +g240663 +S'mood,' +p240665 +tp240666 +a(g240663 +g240665 +S'it' +p240667 +tp240668 +a(g240665 +g240667 +S'is' +p240669 +tp240670 +a(g240667 +g240669 +S'also' +p240671 +tp240672 +a(g240669 +g240671 +S'classical' +p240673 +tp240674 +a(g240671 +g240673 +S'in' +p240675 +tp240676 +a(g240673 +g240675 +S'its' +p240677 +tp240678 +a(g240675 +g240677 +S'purity' +p240679 +tp240680 +a(g240677 +g240679 +S'of' +p240681 +tp240682 +a(g240679 +g240681 +S'line' +p240683 +tp240684 +a(g240681 +g240683 +S'and' +p240685 +tp240686 +a(g240683 +g240685 +S'form' +p240687 +tp240688 +a(g240685 +g240687 +S'and' +p240689 +tp240690 +a(g240687 +g240689 +S'in' +p240691 +tp240692 +a(g240689 +g240691 +S'its' +p240693 +tp240694 +a(g240691 +g240693 +S'controlled' +p240695 +tp240696 +a(g240693 +g240695 +S'and' +p240697 +tp240698 +a(g240695 +g240697 +S'balanced' +p240699 +tp240700 +a(g240697 +g240699 +S'composition.' +p240701 +tp240702 +a(g240699 +g240701 +S'when' +p240703 +tp240704 +a(g240701 +g240703 +S'johann' +p240705 +tp240706 +a(g240703 +g240705 +S'zoffany' +p240707 +tp240708 +a(g240705 +g240707 +S'arrived' +p240709 +tp240710 +a(g240707 +g240709 +S'in' +p240711 +tp240712 +a(g240709 +g240711 +S'london' +p240713 +tp240714 +a(g240711 +g240713 +S'in' +p240715 +tp240716 +a(g240713 +g240715 +S'1760,' +p240717 +tp240718 +a(g240715 +g240717 +S'the' +p240719 +tp240720 +a(g240717 +g240719 +S'twenty-seven-year-old' +p240721 +tp240722 +a(g240719 +g240721 +S'painter' +p240723 +tp240724 +a(g240721 +g240723 +S'already' +p240725 +tp240726 +a(g240723 +g240725 +S'had' +p240727 +tp240728 +a(g240725 +g240727 +S'worked' +p240729 +tp240730 +a(g240727 +g240729 +S'in' +p240731 +tp240732 +a(g240729 +g240731 +S'rome' +p240733 +tp240734 +a(g240731 +g240733 +S'and' +p240735 +tp240736 +a(g240733 +g240735 +S'his' +p240737 +tp240738 +a(g240735 +g240737 +S'native' +p240739 +tp240740 +a(g240737 +g240739 +S'germany.' +p240741 +tp240742 +a(g240739 +g240741 +S'under' +p240743 +tp240744 +a(g240741 +g240743 +S'the' +p240745 +tp240746 +a(g240743 +g240745 +S'patronage' +p240747 +tp240748 +a(g240745 +g240747 +S'of' +p240749 +tp240750 +a(g240747 +g240749 +S'the' +p240751 +tp240752 +a(g240749 +g240751 +S'celebrated' +p240753 +tp240754 +a(g240751 +g240753 +S'actor' +p240755 +tp240756 +a(g240753 +g240755 +S'david' +p240757 +tp240758 +a(g240755 +g240757 +S'garrick,' +p240759 +tp240760 +a(g240757 +g240759 +S'zoffany' +p240761 +tp240762 +a(g240759 +g240761 +S'came' +p240763 +tp240764 +a(g240761 +g240763 +S'to' +p240765 +tp240766 +a(g240763 +g240765 +S'the' +p240767 +tp240768 +a(g240765 +g240767 +S'attention' +p240769 +tp240770 +a(g240767 +g240769 +S'of' +p240771 +tp240772 +a(g240769 +g240771 +S'the' +p240773 +tp240774 +a(g240771 +g240773 +S'royal' +p240775 +tp240776 +a(g240773 +g240775 +S'family.' +p240777 +tp240778 +a(g240775 +g240777 +S'zoffany’s' +p240779 +tp240780 +a(g240777 +g240779 +S'fame' +p240781 +tp240782 +a(g240779 +g240781 +S'rested' +p240783 +tp240784 +a(g240781 +g240783 +S'on' +p240785 +tp240786 +a(g240783 +g240785 +S'lively' +p240787 +tp240788 +a(g240785 +g240787 +S'depictions' +p240789 +tp240790 +a(g240787 +g240789 +S'of' +p240791 +tp240792 +a(g240789 +g240791 +S'actors' +p240793 +tp240794 +a(g240791 +g240793 +S'performing' +p240795 +tp240796 +a(g240793 +g240795 +S'on' +p240797 +tp240798 +a(g240795 +g240797 +S'stage' +p240799 +tp240800 +a(g240797 +g240799 +S'and' +p240801 +tp240802 +a(g240799 +g240801 +S'of' +p240803 +tp240804 +a(g240801 +g240803 +S'connoisseurs' +p240805 +tp240806 +a(g240803 +g240805 +S'examining' +p240807 +tp240808 +a(g240805 +g240807 +S'art' +p240809 +tp240810 +a(g240807 +g240809 +S'galleries.' +p240811 +tp240812 +a(g240809 +g240811 +S'revitalizing' +p240813 +tp240814 +a(g240811 +g240813 +S'the' +p240815 +tp240816 +a(g240813 +g240815 +S'conversation-piece' +p240817 +tp240818 +a(g240815 +g240817 +S'format' +p240819 +tp240820 +a(g240817 +g240819 +S'developed' +p240821 +tp240822 +a(g240819 +g240821 +S'by' +p240823 +tp240824 +a(g240821 +g240823 +S'the' +p240825 +tp240826 +a(g240823 +g240825 +S'lavie' +p240827 +tp240828 +a(g240825 +g240827 +S'children' +p240829 +tp240830 +a(g240827 +g240829 +S"renoir's" +p240831 +tp240832 +a(g240829 +g240831 +S'wife' +p240833 +tp240834 +a(g240831 +g240833 +S'aline' +p240835 +tp240836 +a(g240833 +g240835 +S'had' +p240837 +tp240838 +a(g240835 +g240837 +S'always' +p240839 +tp240840 +a(g240837 +g240839 +S'been' +p240841 +tp240842 +a(g240839 +g240841 +S'among' +p240843 +tp240844 +a(g240841 +g240843 +S'his' +p240845 +tp240846 +a(g240843 +g240845 +S'favorite' +p240847 +tp240848 +a(g240845 +g240847 +S'models.' +p240849 +tp240850 +a(g240847 +g240849 +S'her' +p240851 +tp240852 +a(g240849 +g240851 +S'fresh,' +p240853 +tp240854 +a(g240851 +g240853 +S'full' +p240855 +tp240856 +a(g240853 +g240855 +S'face' +p240857 +tp240858 +a(g240855 +g240857 +S'and' +p240859 +tp240860 +a(g240857 +g240859 +S'figure' +p240861 +tp240862 +a(g240859 +g240861 +S'appeared' +p240863 +tp240864 +a(g240861 +g240863 +S'in' +p240865 +tp240866 +a(g240863 +g240865 +S'paintings' +p240867 +tp240868 +a(g240865 +g240867 +S'throughout' +p240869 +tp240870 +a(g240867 +g240869 +S'his' +p240871 +tp240872 +a(g240869 +g240871 +S'career.' +p240873 +tp240874 +a(g240871 +g240873 +S'when' +p240875 +tp240876 +a(g240873 +g240875 +S'aline' +p240877 +tp240878 +a(g240875 +g240877 +S'died' +p240879 +tp240880 +a(g240877 +g240879 +S'in' +p240881 +tp240882 +a(g240879 +g240881 +S'1915,' +p240883 +tp240884 +a(g240881 +g240883 +S'renoir' +p240885 +tp240886 +a(g240883 +g240885 +S'decided' +p240887 +tp240888 +a(g240885 +g240887 +S'to' +p240889 +tp240890 +a(g240887 +g240889 +S'create' +p240891 +tp240892 +a(g240889 +g240891 +S'a' +p240893 +tp240894 +a(g240891 +g240893 +S'monument' +p240895 +tp240896 +a(g240893 +g240895 +S'to' +p240897 +tp240898 +a(g240895 +g240897 +S'mark' +p240899 +tp240900 +a(g240897 +g240899 +S'her' +p240901 +tp240902 +a(g240899 +g240901 +S'gravesite.' +p240903 +tp240904 +a(g240901 +g240903 +S'the' +p240905 +tp240906 +a(g240903 +g240905 +S'painter' +p240907 +tp240908 +a(g240905 +g240907 +S'had' +p240909 +tp240910 +a(g240907 +g240909 +S'turned' +p240911 +tp240912 +a(g240909 +g240911 +S'to' +p240913 +tp240914 +a(g240911 +g240913 +S'sculpture' +p240915 +tp240916 +a(g240913 +g240915 +S'several' +p240917 +tp240918 +a(g240915 +g240917 +S'years' +p240919 +tp240920 +a(g240917 +g240919 +S'before,' +p240921 +tp240922 +a(g240919 +g240921 +S'when' +p240923 +tp240924 +a(g240921 +g240923 +S'rheumatoid' +p240925 +tp240926 +a(g240923 +g240925 +S'arthritis' +p240927 +tp240928 +a(g240925 +g240927 +S'made' +p240929 +tp240930 +a(g240927 +g240929 +S'it' +p240931 +tp240932 +a(g240929 +g240931 +S'too' +p240933 +tp240934 +a(g240931 +g240933 +S'difficult' +p240935 +tp240936 +a(g240933 +g240935 +S'to' +p240937 +tp240938 +a(g240935 +g240937 +S'manipulate' +p240939 +tp240940 +a(g240937 +g240939 +S'a' +p240941 +tp240942 +a(g240939 +g240941 +S'paintbrush.' +p240943 +tp240944 +a(g240941 +g240943 +S'with' +p240945 +tp240946 +a(g240943 +g240945 +S'young' +p240947 +tp240948 +a(g240945 +g240947 +S'catalan' +p240949 +tp240950 +a(g240947 +g240949 +S'artist' +p240951 +tp240952 +a(g240949 +g240951 +S'richard' +p240953 +tp240954 +a(g240951 +g240953 +S'guino' +p240955 +tp240956 +a(g240953 +g240955 +S'(who' +p240957 +tp240958 +a(g240955 +g240957 +S'had' +p240959 +tp240960 +a(g240957 +g240959 +S'studied' +p240961 +tp240962 +a(g240959 +g240961 +S'sculpture' +p240963 +tp240964 +a(g240961 +g240963 +S'with' +p240965 +tp240966 +a(g240963 +g240965 +S'for' +p240967 +tp240968 +a(g240965 +g240967 +S'this' +p240969 +tp240970 +a(g240967 +g240969 +S'sculpture,' +p240971 +tp240972 +a(g240969 +g240971 +S'renoir' +p240973 +tp240974 +a(g240971 +g240973 +S'used' +p240975 +tp240976 +a(g240973 +g240975 +S'a' +p240977 +tp240978 +a(g240975 +g240977 +S'portrait' +p240979 +tp240980 +a(g240977 +g240979 +S'he' +p240981 +tp240982 +a(g240979 +g240981 +S'had' +p240983 +tp240984 +a(g240981 +g240983 +S'made' +p240985 +tp240986 +a(g240983 +g240985 +S'of' +p240987 +tp240988 +a(g240985 +g240987 +S'aline' +p240989 +tp240990 +a(g240987 +g240989 +S'nursing' +p240991 +tp240992 +a(g240989 +g240991 +S'their' +p240993 +tp240994 +a(g240991 +g240993 +S'first-born' +p240995 +tp240996 +a(g240993 +g240995 +S'son,' +p240997 +tp240998 +a(g240995 +g240997 +S'pierre,' +p240999 +tp241000 +a(g240997 +g240999 +S'some' +p241001 +tp241002 +a(g240999 +g241001 +S'twenty' +p241003 +tp241004 +a(g241001 +g241003 +S'years' +p241005 +tp241006 +a(g241003 +g241005 +S'before.' +p241007 +tp241008 +a(g241005 +g241007 +S'in' +p241009 +tp241010 +a(g241007 +g241009 +S'the' +p241011 +tp241012 +a(g241009 +g241011 +S'painting,' +p241013 +tp241014 +a(g241011 +g241013 +S'aline,' +p241015 +tp241016 +a(g241013 +g241015 +S'dressed' +p241017 +tp241018 +a(g241015 +g241017 +S'casually' +p241019 +tp241020 +a(g241017 +g241019 +S'in' +p241021 +tp241022 +a(g241019 +g241021 +S'sunhat' +p241023 +tp241024 +a(g241021 +g241023 +S'and' +p241025 +tp241026 +a(g241023 +g241025 +S'seated' +p241027 +tp241028 +a(g241025 +g241027 +S'in' +p241029 +tp241030 +a(g241027 +g241029 +S'her' +p241031 +tp241032 +a(g241029 +g241031 +S'garden,' +p241033 +tp241034 +a(g241031 +g241033 +S'looks' +p241035 +tp241036 +a(g241033 +g241035 +S'up' +p241037 +tp241038 +a(g241035 +g241037 +S'from' +p241039 +tp241040 +a(g241037 +g241039 +S'the' +p241041 +tp241042 +a(g241039 +g241041 +S'chubby' +p241043 +tp241044 +a(g241041 +g241043 +S'baby' +p241045 +tp241046 +a(g241043 +g241045 +S'she' +p241047 +tp241048 +a(g241045 +g241047 +S'holds' +p241049 +tp241050 +a(g241047 +g241049 +S'to' +p241051 +tp241052 +a(g241049 +g241051 +S'her' +p241053 +tp241054 +a(g241051 +g241053 +S'breast.' +p241055 +tp241056 +a(g241053 +g241055 +S'renoir' +p241057 +tp241058 +a(g241055 +g241057 +S'loved' +p241059 +tp241060 +a(g241057 +g241059 +S'her' +p241061 +tp241062 +a(g241059 +g241061 +S'natural,' +p241063 +tp241064 +a(g241061 +g241063 +S'unselfconscious' +p241065 +tp241066 +a(g241063 +g241065 +S'look;' +p241067 +tp241068 +a(g241065 +g241067 +S'he' +p241069 +tp241070 +a(g241067 +g241069 +S'equated' +p241071 +tp241072 +a(g241069 +g241071 +S'this' +p241073 +tp241074 +a(g241071 +g241073 +S'image' +p241075 +tp241076 +a(g241073 +g241075 +S'of' +p241077 +tp241078 +a(g241075 +g241077 +S'motherhood' +p241079 +tp241080 +a(g241077 +g241079 +S'with' +p241081 +tp241082 +a(g241079 +g241081 +S'the' +p241083 +tp241084 +a(g241081 +g241083 +S'constancy' +p241085 +tp241086 +a(g241083 +g241085 +S'and' +p241087 +tp241088 +a(g241085 +g241087 +S'timelessness' +p241089 +tp241090 +a(g241087 +g241089 +S'of' +p241091 +tp241092 +a(g241089 +g241091 +S'nature.' +p241093 +tp241094 +a(g241091 +g241093 +S'in' +p241095 +tp241096 +a(g241093 +g241095 +S'the' +p241097 +tp241098 +a(g241095 +g241097 +S'end,' +p241099 +tp241100 +a(g241097 +g241099 +S'renoir' +p241101 +tp241102 +a(g241099 +g241101 +S'did' +p241103 +tp241104 +a(g241101 +g241103 +S'not' +p241105 +tp241106 +a(g241103 +g241105 +S'expand' +p241107 +tp241108 +a(g241105 +g241107 +S'the' +p241109 +tp241110 +a(g241107 +g241109 +S'small' +p241111 +tp241112 +a(g241109 +g241111 +S'terracotta' +p241113 +tp241114 +a(g241111 +g241113 +S'into' +p241115 +tp241116 +a(g241113 +g241115 +S'a' +p241117 +tp241118 +a(g241115 +g241117 +S'monument,' +p241119 +tp241120 +a(g241117 +g241119 +S'instead' +p241121 +tp241122 +a(g241119 +g241121 +S'he' +p241123 +tp241124 +a(g241121 +g241123 +S'enlarged' +p241125 +tp241126 +a(g241123 +g241125 +S'and' +p241127 +tp241128 +a(g241125 +g241127 +S'cast' +p241129 +tp241130 +a(g241127 +g241129 +S'just' +p241131 +tp241132 +a(g241129 +g241131 +S'the' +p241133 +tp241134 +a(g241131 +g241133 +S'head' +p241135 +tp241136 +a(g241133 +g241135 +S'and' +p241137 +tp241138 +a(g241135 +g241137 +S'bust' +p241139 +tp241140 +a(g241137 +g241139 +S'to' +p241141 +tp241142 +a(g241139 +g241141 +S'mark' +p241143 +tp241144 +a(g241141 +g241143 +S"aline's" +p241145 +tp241146 +a(g241143 +g241145 +S'grave.' +p241147 +tp241148 +a(g241145 +g241147 +S'a' +p241149 +tp241150 +a(g241147 +g241149 +S'full' +p241151 +tp241152 +a(g241149 +g241151 +S'replica' +p241153 +tp241154 +a(g241151 +g241153 +S'of' +p241155 +tp241156 +a(g241153 +g241155 +S'cubist' +p241157 +tp241158 +a(g241155 +g241157 +S'still' +p241159 +tp241160 +a(g241157 +g241159 +S'life' +p241161 +tp241162 +a(g241159 +g241161 +S'in' +p241163 +tp241164 +a(g241161 +g241163 +S'its' +p241165 +tp241166 +a(g241163 +g241165 +S'careful' +p241167 +tp241168 +a(g241165 +g241167 +S'reconstruction' +p241169 +tp241170 +a(g241167 +g241169 +S'of' +p241171 +tp241172 +a(g241169 +g241171 +S'the' +p241173 +tp241174 +a(g241171 +g241173 +S'essential' +p241175 +tp241176 +a(g241173 +g241175 +S'elements' +p241177 +tp241178 +a(g241175 +g241177 +S'of' +p241179 +tp241180 +a(g241177 +g241179 +S'cubist' +p241181 +tp241182 +a(g241179 +g241181 +S'still' +p241183 +tp241184 +a(g241181 +g241183 +S'life,' +p241185 +tp241186 +a(g241183 +g241185 +S"lichtenstein's" +p241187 +tp241188 +a(g241185 +g241187 +S'painting' +p241189 +tp241190 +a(g241187 +g241189 +S'represents' +p241191 +tp241192 +a(g241189 +g241191 +S'a' +p241193 +tp241194 +a(g241191 +g241193 +S'considered' +p241195 +tp241196 +a(g241193 +g241195 +S'tribute' +p241197 +tp241198 +a(g241195 +g241197 +S'to' +p241199 +tp241200 +a(g241197 +g241199 +S'the' +p241201 +tp241202 +a(g241199 +g241201 +S'cubist' +p241203 +tp241204 +a(g241201 +g241203 +S'masters.' +p241205 +tp241206 +a(g241203 +g241205 +S'but' +p241207 +tp241208 +a(g241205 +g241207 +S'as' +p241209 +tp241210 +a(g241207 +g241209 +S'is' +p241211 +tp241212 +a(g241209 +g241211 +S'characteristic' +p241213 +tp241214 +a(g241211 +g241213 +S'of' +p241215 +tp241216 +a(g241213 +g241215 +S'american' +p241217 +tp241218 +a(g241215 +g241217 +S'pop' +p241219 +tp241220 +a(g241217 +g241219 +S'art,' +p241221 +tp241222 +a(g241219 +g241221 +S'the' +p241223 +tp241224 +a(g241221 +g241223 +S'tribute' +p241225 +tp241226 +a(g241223 +g241225 +S'is' +p241227 +tp241228 +a(g241225 +g241227 +S'rendered' +p241229 +tp241230 +a(g241227 +g241229 +S'in' +p241231 +tp241232 +a(g241229 +g241231 +S'the' +p241233 +tp241234 +a(g241231 +g241233 +S'form' +p241235 +tp241236 +a(g241233 +g241235 +S'of' +p241237 +tp241238 +a(g241235 +g241237 +S'a' +p241239 +tp241240 +a(g241237 +g241239 +S'send-up.' +p241241 +tp241242 +a(g241239 +g241241 +S'as' +p241243 +tp241244 +a(g241241 +g241243 +S'closely' +p241245 +tp241246 +a(g241243 +g241245 +S'as' +p241247 +tp241248 +a(g241245 +g241247 +S'lichtenstein' +p241249 +tp241250 +a(g241247 +g241249 +S'hews' +p241251 +tp241252 +a(g241249 +g241251 +S'to' +p241253 +tp241254 +a(g241251 +g241253 +S'the' +p241255 +tp241256 +a(g241253 +g241255 +S'conventions' +p241257 +tp241258 +a(g241255 +g241257 +S'of' +p241259 +tp241260 +a(g241257 +g241259 +S'cubism,' +p241261 +tp241262 +a(g241259 +g241261 +S'in' +p241263 +tp241264 +a(g241261 +g241263 +S'its' +p241265 +tp241266 +a(g241263 +g241265 +S'distinctive' +p241267 +tp241268 +a(g241265 +g241267 +S'style,' +p241269 +tp241270 +a(g241267 +g241269 +S'scale,' +p241271 +tp241272 +a(g241269 +g241271 +S'and' +p241273 +tp241274 +a(g241271 +g241273 +S'wit,' +p241275 +tp241276 +a(g241273 +g241275 +S'son' +p241277 +tp241278 +a(g241275 +g241277 +S'of' +p241279 +tp241280 +a(g241277 +g241279 +S'the' +p241281 +tp241282 +a(g241279 +g241281 +S'national' +p241283 +tp241284 +a(g241281 +g241283 +S"gallery's" +p241285 +tp241286 +a(g241283 +g241285 +S'founder' +p241287 +tp241288 +a(g241285 +g241287 +S'and' +p241289 +tp241290 +a(g241287 +g241289 +S'the' +p241291 +tp241292 +a(g241289 +g241291 +S'brother' +p241293 +tp241294 +a(g241291 +g241293 +S'of' +p241295 +tp241296 +a(g241293 +g241295 +S'ailsa' +p241297 +tp241298 +a(g241295 +g241297 +S'mellon' +p241299 +tp241300 +a(g241297 +g241299 +S'bruce,' +p241301 +tp241302 +a(g241299 +g241301 +S'william' +p241303 +tp241304 +a(g241301 +g241303 +S'franklin' +p241305 +tp241306 +a(g241303 +g241305 +S'draper,' +p241307 +tp241308 +a(g241305 +g241307 +S'navy' +p241309 +tp241310 +a(g241307 +g241309 +S'combat' +p241311 +tp241312 +a(g241309 +g241311 +S'artist' +p241313 +tp241314 +a(g241311 +g241313 +S'during' +p241315 +tp241316 +a(g241313 +g241315 +S'world' +p241317 +tp241318 +a(g241315 +g241317 +S'war' +p241319 +tp241320 +a(g241317 +g241319 +S'ii' +p241321 +tp241322 +a(g241319 +g241321 +S'and' +p241323 +tp241324 +a(g241321 +g241323 +S'later' +p241325 +tp241326 +a(g241323 +g241325 +S'a' +p241327 +tp241328 +a(g241325 +g241327 +S'successful' +p241329 +tp241330 +a(g241327 +g241329 +S'portrait' +p241331 +tp241332 +a(g241329 +g241331 +S'painter,' +p241333 +tp241334 +a(g241331 +g241333 +S'animated' +p241335 +tp241336 +a(g241333 +g241335 +S'his' +p241337 +tp241338 +a(g241335 +g241337 +S'portrayal' +p241339 +tp241340 +a(g241337 +g241339 +S'of' +p241341 +tp241342 +a(g241339 +g241341 +S'paul' +p241343 +tp241344 +a(g241341 +g241343 +S'mellon' +p241345 +tp241346 +a(g241343 +g241345 +S'with' +p241347 +tp241348 +a(g241345 +g241347 +S'rapid,' +p241349 +tp241350 +a(g241347 +g241349 +S'slashing' +p241351 +tp241352 +a(g241349 +g241351 +S'strokes' +p241353 +tp241354 +a(g241351 +g241353 +S'of' +p241355 +tp241356 +a(g241353 +g241355 +S'the' +p241357 +tp241358 +a(g241355 +g241357 +S'brush.' +p241359 +tp241360 +a(g241357 +g241359 +S"escher's" +p241361 +tp241362 +a(g241359 +g241361 +S'first' +p241363 +tp241364 +a(g241361 +g241363 +S'prints' +p241365 +tp241366 +a(g241363 +g241365 +S'were' +p241367 +tp241368 +a(g241365 +g241367 +S'made' +p241369 +tp241370 +a(g241367 +g241369 +S'from' +p241371 +tp241372 +a(g241369 +g241371 +S'linoleum' +p241373 +tp241374 +a(g241371 +g241373 +S'blocks.' +p241375 +tp241376 +a(g241373 +g241375 +S'this' +p241377 +tp241378 +a(g241375 +g241377 +S'portrait' +p241379 +tp241380 +a(g241377 +g241379 +S'of' +p241381 +tp241382 +a(g241379 +g241381 +S"escher's" +p241383 +tp241384 +a(g241381 +g241383 +S'father,' +p241385 +tp241386 +a(g241383 +g241385 +S'george' +p241387 +tp241388 +a(g241385 +g241387 +S'a.' +p241389 +tp241390 +a(g241387 +g241389 +S'escher' +p241391 +tp241392 +a(g241389 +g241391 +S'(1843-1939),' +p241393 +tp241394 +a(g241391 +g241393 +S'is' +p241395 +tp241396 +a(g241393 +g241395 +S'the' +p241397 +tp241398 +a(g241395 +g241397 +S'earliest' +p241399 +tp241400 +a(g241397 +g241399 +S'print' +p241401 +tp241402 +a(g241399 +g241401 +S'by' +p241403 +tp241404 +a(g241401 +g241403 +S'the' +p241405 +tp241406 +a(g241403 +g241405 +S'artist.' +p241407 +tp241408 +a(g241405 +g241407 +S'his' +p241409 +tp241410 +a(g241407 +g241409 +S'father,' +p241411 +tp241412 +a(g241409 +g241411 +S'who' +p241413 +tp241414 +a(g241411 +g241413 +S'was' +p241415 +tp241416 +a(g241413 +g241415 +S'a' +p241417 +tp241418 +a(g241415 +g241417 +S'civil' +p241419 +tp241420 +a(g241417 +g241419 +S'engineer,' +p241421 +tp241422 +a(g241419 +g241421 +S'instilled' +p241423 +tp241424 +a(g241421 +g241423 +S'in' +p241425 +tp241426 +a(g241423 +g241425 +S'him' +p241427 +tp241428 +a(g241425 +g241427 +S'a' +p241429 +tp241430 +a(g241427 +g241429 +S'lifelong' +p241431 +tp241432 +a(g241429 +g241431 +S'interest' +p241433 +tp241434 +a(g241431 +g241433 +S'in' +p241435 +tp241436 +a(g241433 +g241435 +S'mathematics' +p241437 +tp241438 +a(g241435 +g241437 +S'and' +p241439 +tp241440 +a(g241437 +g241439 +S'science.' +p241441 +tp241442 +a(g241439 +g241441 +S'john' +p241443 +tp241444 +a(g241441 +g241443 +S'beale' +p241445 +tp241446 +a(g241443 +g241445 +S'bordley,' +p241447 +tp241448 +a(g241445 +g241447 +S'a' +p241449 +tp241450 +a(g241447 +g241449 +S'close' +p241451 +tp241452 +a(g241449 +g241451 +S'friend' +p241453 +tp241454 +a(g241451 +g241453 +S'of' +p241455 +tp241456 +a(g241453 +g241455 +S'charles' +p241457 +tp241458 +a(g241455 +g241457 +S'willson' +p241459 +tp241460 +a(g241457 +g241459 +S'peale,' +p241461 +tp241462 +a(g241459 +g241461 +S'raised' +p241463 +tp241464 +a(g241461 +g241463 +S'the' +p241465 +tp241466 +a(g241463 +g241465 +S'funds' +p241467 +tp241468 +a(g241465 +g241467 +S'in' +p241469 +tp241470 +a(g241467 +g241469 +S'1766' +p241471 +tp241472 +a(g241469 +g241471 +S'to' +p241473 +tp241474 +a(g241471 +g241473 +S'send' +p241475 +tp241476 +a(g241473 +g241475 +S'the' +p241477 +tp241478 +a(g241475 +g241477 +S'young' +p241479 +tp241480 +a(g241477 +g241479 +S'artist' +p241481 +tp241482 +a(g241479 +g241481 +S'to' +p241483 +tp241484 +a(g241481 +g241483 +S'london,' +p241485 +tp241486 +a(g241483 +g241485 +S'where' +p241487 +tp241488 +a(g241485 +g241487 +S'peale' +p241489 +tp241490 +a(g241487 +g241489 +S'trained' +p241491 +tp241492 +a(g241489 +g241491 +S'under' +p241493 +tp241494 +a(g241491 +g241493 +S'benjamin' +p241495 +tp241496 +a(g241493 +g241495 +S"west's" +p241497 +tp241498 +a(g241495 +g241497 +S'tutelage.' +p241499 +tp241500 +a(g241497 +g241499 +S'in' +p241501 +tp241502 +a(g241499 +g241501 +S'the' +p241503 +tp241504 +a(g241501 +g241503 +S'stormy' +p241505 +tp241506 +a(g241503 +g241505 +S'years' +p241507 +tp241508 +a(g241505 +g241507 +S'before' +p241509 +tp241510 +a(g241507 +g241509 +S'the' +p241511 +tp241512 +a(g241509 +g241511 +S'american' +p241513 +tp241514 +a(g241511 +g241513 +S'revolution,' +p241515 +tp241516 +a(g241513 +g241515 +S'bordley' +p241517 +tp241518 +a(g241515 +g241517 +S'was' +p241519 +tp241520 +a(g241517 +g241519 +S'a' +p241521 +tp241522 +a(g241519 +g241521 +S'maryland' +p241523 +tp241524 +a(g241521 +g241523 +S'planter,' +p241525 +tp241526 +a(g241523 +g241525 +S'judge,' +p241527 +tp241528 +a(g241525 +g241527 +S'and' +p241529 +tp241530 +a(g241527 +g241529 +S'member' +p241531 +tp241532 +a(g241529 +g241531 +S'of' +p241533 +tp241534 +a(g241531 +g241533 +S'the' +p241535 +tp241536 +a(g241533 +g241535 +S"governor's" +p241537 +tp241538 +a(g241535 +g241537 +S'council.' +p241539 +tp241540 +a(g241537 +g241539 +S'a' +p241541 +tp241542 +a(g241539 +g241541 +S'fervent' +p241543 +tp241544 +a(g241541 +g241543 +S'republican,' +p241545 +tp241546 +a(g241543 +g241545 +S'he' +p241547 +tp241548 +a(g241545 +g241547 +S'gave' +p241549 +tp241550 +a(g241547 +g241549 +S'peale' +p241551 +tp241552 +a(g241549 +g241551 +S'his' +p241553 +tp241554 +a(g241551 +g241553 +S'first' +p241555 +tp241556 +a(g241553 +g241555 +S'major' +p241557 +tp241558 +a(g241555 +g241557 +S'commission' +p241559 +tp241560 +a(g241557 +g241559 +S'--' +p241561 +tp241562 +a(g241559 +g241561 +S'for' +p241563 +tp241564 +a(g241561 +g241563 +S'life-size,' +p241565 +tp241566 +a(g241563 +g241565 +S'symbolic' +p241567 +tp241568 +a(g241565 +g241567 +S'portraits' +p241569 +tp241570 +a(g241567 +g241569 +S'that' +p241571 +tp241572 +a(g241569 +g241571 +S'were' +p241573 +tp241574 +a(g241571 +g241573 +S'to' +p241575 +tp241576 +a(g241573 +g241575 +S'be' +p241577 +tp241578 +a(g241575 +g241577 +S'exhibited' +p241579 +tp241580 +a(g241577 +g241579 +S'in' +p241581 +tp241582 +a(g241579 +g241581 +S'london' +p241583 +tp241584 +a(g241581 +g241583 +S'as' +p241585 +tp241586 +a(g241583 +g241585 +S'declarations' +p241587 +tp241588 +a(g241585 +g241587 +S'of' +p241589 +tp241590 +a(g241587 +g241589 +S'colonial' +p241591 +tp241592 +a(g241589 +g241591 +S'opposition.' +p241593 +tp241594 +a(g241591 +g241593 +S'the' +p241595 +tp241596 +a(g241593 +g241595 +S'portrait' +p241597 +tp241598 +a(g241595 +g241597 +S'addresses' +p241599 +tp241600 +a(g241597 +g241599 +S'two' +p241601 +tp241602 +a(g241599 +g241601 +S'political' +p241603 +tp241604 +a(g241601 +g241603 +S'issues:' +p241605 +tp241606 +a(g241603 +g241605 +S"america's" +p241607 +tp241608 +a(g241605 +g241607 +S'agricultural' +p241609 +tp241610 +a(g241607 +g241609 +S'self-sufficiency,' +p241611 +tp241612 +a(g241609 +g241611 +S'and' +p241613 +tp241614 +a(g241611 +g241613 +S'her' +p241615 +tp241616 +a(g241613 +g241615 +S'fair' +p241617 +tp241618 +a(g241615 +g241617 +S'treatment.' +p241619 +tp241620 +a(g241617 +g241619 +S'the' +p241621 +tp241622 +a(g241619 +g241621 +S'first' +p241623 +tp241624 +a(g241621 +g241623 +S'of' +p241625 +tp241626 +a(g241623 +g241625 +S'these' +p241627 +tp241628 +a(g241625 +g241627 +S'concepts' +p241629 +tp241630 +a(g241627 +g241629 +S'is' +p241631 +tp241632 +a(g241629 +g241631 +S'referred' +p241633 +tp241634 +a(g241631 +g241633 +S'to' +p241635 +tp241636 +a(g241633 +g241635 +S'in' +p241637 +tp241638 +a(g241635 +g241637 +S'the' +p241639 +tp241640 +a(g241637 +g241639 +S'background,' +p241641 +tp241642 +a(g241639 +g241641 +S'which' +p241643 +tp241644 +a(g241641 +g241643 +S'depicts' +p241645 +tp241646 +a(g241643 +g241645 +S"bordley's" +p241647 +tp241648 +a(g241645 +g241647 +S'plantation' +p241649 +tp241650 +a(g241647 +g241649 +S'on' +p241651 +tp241652 +a(g241649 +g241651 +S'wye' +p241653 +tp241654 +a(g241651 +g241653 +S'island' +p241655 +tp241656 +a(g241653 +g241655 +S'in' +p241657 +tp241658 +a(g241655 +g241657 +S'the' +p241659 +tp241660 +a(g241657 +g241659 +S'chesapeake' +p241661 +tp241662 +a(g241659 +g241661 +S'bay.' +p241663 +tp241664 +a(g241661 +g241663 +S'a' +p241665 +tp241666 +a(g241663 +g241665 +S'peach' +p241667 +tp241668 +a(g241665 +g241667 +S'tree' +p241669 +tp241670 +a(g241667 +g241669 +S'and' +p241671 +tp241672 +a(g241669 +g241671 +S'a' +p241673 +tp241674 +a(g241671 +g241673 +S'packhorse' +p241675 +tp241676 +a(g241673 +g241675 +S'signify' +p241677 +tp241678 +a(g241675 +g241677 +S"america's" +p241679 +tp241680 +a(g241677 +g241679 +S'abundance,' +p241681 +tp241682 +a(g241679 +g241681 +S'while' +p241683 +tp241684 +a(g241681 +g241683 +S'the' +p241685 +tp241686 +a(g241683 +g241685 +S'grazing' +p241687 +tp241688 +a(g241685 +g241687 +S'sheep' +p241689 +tp241690 +a(g241687 +g241689 +S'speak' +p241691 +tp241692 +a(g241689 +g241691 +S'for' +p241693 +tp241694 +a(g241691 +g241693 +S'freedom' +p241695 +tp241696 +a(g241693 +g241695 +S'from' +p241697 +tp241698 +a(g241695 +g241697 +S'imported,' +p241699 +tp241700 +a(g241697 +g241699 +S'british' +p241701 +tp241702 +a(g241699 +g241701 +S'woolens.' +p241703 +tp241704 +a(g241701 +g241703 +S'the' +p241705 +tp241706 +a(g241703 +g241705 +S'theme' +p241707 +tp241708 +a(g241705 +g241707 +S'of' +p241709 +tp241710 +a(g241707 +g241709 +S'tyranny' +p241711 +tp241712 +a(g241709 +g241711 +S'dominates' +p241713 +tp241714 +a(g241711 +g241713 +S'the' +p241715 +tp241716 +a(g241713 +g241715 +S'foreground.' +p241717 +tp241718 +a(g241715 +g241717 +S'bordley,' +p241719 +tp241720 +a(g241717 +g241719 +S'trained' +p241721 +tp241722 +a(g241719 +g241721 +S'as' +p241723 +tp241724 +a(g241721 +g241723 +S'a' +p241725 +tp241726 +a(g241723 +g241725 +S'lawyer,' +p241727 +tp241728 +a(g241725 +g241727 +S'assumes' +p241729 +tp241730 +a(g241727 +g241729 +S'an' +p241731 +tp241732 +a(g241729 +g241731 +S'attitude' +p241733 +tp241734 +a(g241731 +g241733 +S'of' +p241735 +tp241736 +a(g241733 +g241735 +S'debate,' +p241737 +tp241738 +a(g241735 +g241737 +S'raising' +p241739 +tp241740 +a(g241737 +g241739 +S'his' +p241741 +tp241742 +a(g241739 +g241741 +S'hand' +p241743 +tp241744 +a(g241741 +g241743 +S'in' +p241745 +tp241746 +a(g241743 +g241745 +S'a' +p241747 +tp241748 +a(g241745 +g241747 +S'gesture' +p241749 +tp241750 +a(g241747 +g241749 +S'of' +p241751 +tp241752 +a(g241749 +g241751 +S'argumentation.' +p241753 +tp241754 +a(g241751 +g241753 +S'he' +p241755 +tp241756 +a(g241753 +g241755 +S'points' +p241757 +tp241758 +a(g241755 +g241757 +S'to' +p241759 +tp241760 +a(g241757 +g241759 +S'a' +p241761 +tp241762 +a(g241759 +g241761 +S'statue' +p241763 +tp241764 +a(g241761 +g241763 +S'of' +p241765 +tp241766 +a(g241763 +g241765 +S'british' +p241767 +tp241768 +a(g241765 +g241767 +S'liberty' +p241769 +tp241770 +a(g241767 +g241769 +S'holding' +p241771 +tp241772 +a(g241769 +g241771 +S'the' +p241773 +tp241774 +a(g241771 +g241773 +S'scales' +p241775 +tp241776 +a(g241773 +g241775 +S'of' +p241777 +tp241778 +a(g241775 +g241777 +S'justice,' +p241779 +tp241780 +a(g241777 +g241779 +S'reminding' +p241781 +tp241782 +a(g241779 +g241781 +S'english' +p241783 +tp241784 +a(g241781 +g241783 +S'viewers' +p241785 +tp241786 +a(g241783 +g241785 +S'that' +p241787 +tp241788 +a(g241785 +g241787 +S'the' +p241789 +tp241790 +a(g241787 +g241789 +S'colonists' +p241791 +tp241792 +a(g241789 +g241791 +S'lived' +p241793 +tp241794 +a(g241791 +g241793 +S'under' +p241795 +tp241796 +a(g241793 +g241795 +S'british' +p241797 +tp241798 +a(g241795 +g241797 +S'law' +p241799 +tp241800 +a(g241797 +g241799 +S'and,' +p241801 +tp241802 +a(g241799 +g241801 +S'thus,' +p241803 +tp241804 +a(g241801 +g241803 +S'were' +p241805 +tp241806 +a(g241803 +g241805 +S'entitled' +p241807 +tp241808 +a(g241805 +g241807 +S'to' +p241809 +tp241810 +a(g241807 +g241809 +S'the' +p241811 +tp241812 +a(g241809 +g241811 +S'rights' +p241813 +tp241814 +a(g241811 +g241813 +S'it' +p241815 +tp241816 +a(g241813 +g241815 +S'guaranteed.' +p241817 +tp241818 +a(g241815 +g241817 +S'that' +p241819 +tp241820 +a(g241817 +g241819 +S'britain' +p241821 +tp241822 +a(g241819 +g241821 +S'had' +p241823 +tp241824 +a(g241821 +g241823 +S'violated' +p241825 +tp241826 +a(g241823 +g241825 +S'these' +p241827 +tp241828 +a(g241825 +g241827 +S'rights' +p241829 +tp241830 +a(g241827 +g241829 +S'is' +p241831 +tp241832 +a(g241829 +g241831 +S'signified' +p241833 +tp241834 +a(g241831 +g241833 +S'by' +p241835 +tp241836 +a(g241833 +g241835 +S'the' +p241837 +tp241838 +a(g241835 +g241837 +S'legal' +p241839 +tp241840 +a(g241837 +g241839 +S'document,' +p241841 +tp241842 +a(g241839 +g241841 +S'torn' +p241843 +tp241844 +a(g241841 +g241843 +S'and' +p241845 +tp241846 +a(g241843 +g241845 +S'discarded' +p241847 +tp241848 +a(g241845 +g241847 +S'at' +p241849 +tp241850 +a(g241847 +g241849 +S"bordley's" +p241851 +tp241852 +a(g241849 +g241851 +S'feet.' +p241853 +tp241854 +a(g241851 +g241853 +S'a' +p241855 +tp241856 +a(g241853 +g241855 +S'poisonous' +p241857 +tp241858 +a(g241855 +g241857 +S'plant' +p241859 +tp241860 +a(g241857 +g241859 +S'at' +p241861 +tp241862 +a(g241859 +g241861 +S'the' +p241863 +tp241864 +a(g241861 +g241863 +S"statue's" +p241865 +tp241866 +a(g241863 +g241865 +S'base' +p241867 +tp241868 +a(g241865 +g241867 +S'--' +p241869 +tp241870 +a(g241867 +g241869 +S'the' +p241871 +tp241872 +a(g241869 +g241871 +S'native' +p241873 +tp241874 +a(g241871 +g241873 +S'american' +p241875 +tp241876 +a(g241873 +g241875 +S'jimson' +p241877 +tp241878 +a(g241875 +g241877 +S'weed' +p241879 +tp241880 +a(g241877 +g241879 +S'--' +p241881 +tp241882 +a(g241879 +g241881 +S'warns' +p241883 +tp241884 +a(g241881 +g241883 +S'of' +p241885 +tp241886 +a(g241883 +g241885 +S'the' +p241887 +tp241888 +a(g241885 +g241887 +S'deadly' +p241889 +tp241890 +a(g241887 +g241889 +S'consequences' +p241891 +tp241892 +a(g241889 +g241891 +S'of' +p241893 +tp241894 +a(g241891 +g241893 +S'any' +p241895 +tp241896 +a(g241893 +g241895 +S'attack' +p241897 +tp241898 +a(g241895 +g241897 +S'on' +p241899 +tp241900 +a(g241897 +g241899 +S'american' +p241901 +tp241902 +a(g241899 +g241901 +S'civil' +p241903 +tp241904 +a(g241901 +g241903 +S'liberties.' +p241905 +tp241906 +a(g241903 +g241905 +S'cosimo' +p241907 +tp241908 +a(g241905 +g241907 +S'fancelli,' +p241909 +tp241910 +a(g241907 +g241909 +S'from' +p241911 +tp241912 +a(g241909 +g241911 +S'a' +p241913 +tp241914 +a(g241911 +g241913 +S'family' +p241915 +tp241916 +a(g241913 +g241915 +S'of' +p241917 +tp241918 +a(g241915 +g241917 +S'stonemasons,' +p241919 +tp241920 +a(g241917 +g241919 +S'sculpted' +p241921 +tp241922 +a(g241919 +g241921 +S'the' +p241923 +tp241924 +a(g241921 +g241923 +S'designs' +p241925 +tp241926 +a(g241923 +g241925 +S'of' +p241927 +tp241928 +a(g241925 +g241927 +S'key' +p241929 +tp241930 +a(g241927 +g241929 +S'artists' +p241931 +tp241932 +a(g241929 +g241931 +S'of' +p241933 +tp241934 +a(g241931 +g241933 +S'the' +p241935 +tp241936 +a(g241933 +g241935 +S'italian' +p241937 +tp241938 +a(g241935 +g241937 +S'baroque,' +p241939 +tp241940 +a(g241937 +g241939 +S'including' +p241941 +tp241942 +a(g241939 +g241941 +S'those' +p241943 +tp241944 +a(g241941 +g241943 +S'of' +p241945 +tp241946 +a(g241943 +g241945 +S'his' +p241947 +tp241948 +a(g241945 +g241947 +S'friend,' +p241949 +tp241950 +a(g241947 +g241949 +S'the' +p241951 +tp241952 +a(g241949 +g241951 +S'roman' +p241953 +tp241954 +a(g241951 +g241953 +S'painter' +p241955 +tp241956 +a(g241953 +g241955 +S'and' +p241957 +tp241958 +a(g241955 +g241957 +S'architect' +p241959 +tp241960 +a(g241957 +g241959 +S'pietro' +p241961 +tp241962 +a(g241959 +g241961 +S'da' +p241963 +tp241964 +a(g241961 +g241963 +S'cortona.' +p241965 +tp241966 +a(g241963 +g241965 +S'among' +p241967 +tp241968 +a(g241965 +g241967 +S"pietro's" +p241969 +tp241970 +a(g241967 +g241969 +S'celebrated' +p241971 +tp241972 +a(g241969 +g241971 +S'paintings' +p241973 +tp241974 +a(g241971 +g241973 +S'are' +p241975 +tp241976 +a(g241973 +g241975 +S'ceiling' +p241977 +tp241978 +a(g241975 +g241977 +S'frescoes' +p241979 +tp241980 +a(g241977 +g241979 +S'in' +p241981 +tp241982 +a(g241979 +g241981 +S'the' +p241983 +tp241984 +a(g241981 +g241983 +S'barberini' +p241985 +tp241986 +a(g241983 +g241985 +S'palace,' +p241987 +tp241988 +a(g241985 +g241987 +S'rome,' +p241989 +tp241990 +a(g241987 +g241989 +S'and' +p241991 +tp241992 +a(g241989 +g241991 +S'the' +p241993 +tp241994 +a(g241991 +g241993 +S'pitti' +p241995 +tp241996 +a(g241993 +g241995 +S'palace,' +p241997 +tp241998 +a(g241995 +g241997 +S'florence.' +p241999 +tp242000 +a(g241997 +g241999 +S'smaller-scale' +p242001 +tp242002 +a(g241999 +g242001 +S'sculptural' +p242003 +tp242004 +a(g242001 +g242003 +S'works' +p242005 +tp242006 +a(g242003 +g242005 +S'like' +p242007 +tp242008 +a(g242005 +g242007 +S'this' +p242009 +tp242010 +a(g242007 +g242009 +S'one,' +p242011 +tp242012 +a(g242009 +g242011 +S'based' +p242013 +tp242014 +a(g242011 +g242013 +S'on' +p242015 +tp242016 +a(g242013 +g242015 +S"pietro's" +p242017 +tp242018 +a(g242015 +g242017 +S'design,' +p242019 +tp242020 +a(g242017 +g242019 +S'reflect' +p242021 +tp242022 +a(g242019 +g242021 +S'the' +p242023 +tp242024 +a(g242021 +g242023 +S'same' +p242025 +tp242026 +a(g242023 +g242025 +S'compositional' +p242027 +tp242028 +a(g242025 +g242027 +S'balance' +p242029 +tp242030 +a(g242027 +g242029 +S'and' +p242031 +tp242032 +a(g242029 +g242031 +S'vitality.' +p242033 +tp242034 +a(g242031 +g242033 +S'this' +p242035 +tp242036 +a(g242033 +g242035 +S'work' +p242037 +tp242038 +a(g242035 +g242037 +S'depicts' +p242039 +tp242040 +a(g242037 +g242039 +S'martina,' +p242041 +tp242042 +a(g242039 +g242041 +S'the' +p242043 +tp242044 +a(g242041 +g242043 +S'christian' +p242045 +tp242046 +a(g242043 +g242045 +S'daughter' +p242047 +tp242048 +a(g242045 +g242047 +S'of' +p242049 +tp242050 +a(g242047 +g242049 +S'a' +p242051 +tp242052 +a(g242049 +g242051 +S'roman' +p242053 +tp242054 +a(g242051 +g242053 +S'consul' +p242055 +tp242056 +a(g242053 +g242055 +S'who' +p242057 +tp242058 +a(g242055 +g242057 +S'died' +p242059 +tp242060 +a(g242057 +g242059 +S'for' +p242061 +tp242062 +a(g242059 +g242061 +S'her' +p242063 +tp242064 +a(g242061 +g242063 +S'refusal' +p242065 +tp242066 +a(g242063 +g242065 +S'to' +p242067 +tp242068 +a(g242065 +g242067 +S'worship' +p242069 +tp242070 +a(g242067 +g242069 +S'the' +p242071 +tp242072 +a(g242069 +g242071 +S'pagan' +p242073 +tp242074 +a(g242071 +g242073 +S'gods.' +p242075 +tp242076 +a(g242073 +g242075 +S'the' +p242077 +tp242078 +a(g242075 +g242077 +S'palm' +p242079 +tp242080 +a(g242077 +g242079 +S'of' +p242081 +tp242082 +a(g242079 +g242081 +S'martyrdom' +p242083 +tp242084 +a(g242081 +g242083 +S'appears' +p242085 +tp242086 +a(g242083 +g242085 +S'at' +p242087 +tp242088 +a(g242085 +g242087 +S'her' +p242089 +tp242090 +a(g242087 +g242089 +S'feet' +p242091 +tp242092 +a(g242089 +g242091 +S'along' +p242093 +tp242094 +a(g242091 +g242093 +S'with' +p242095 +tp242096 +a(g242093 +g242095 +S'an' +p242097 +tp242098 +a(g242095 +g242097 +S'iron' +p242099 +tp242100 +a(g242097 +g242099 +S'hook,' +p242101 +tp242102 +a(g242099 +g242101 +S'one' +p242103 +tp242104 +a(g242101 +g242103 +S'of' +p242105 +tp242106 +a(g242103 +g242105 +S'the' +p242107 +tp242108 +a(g242105 +g242107 +S'instruments' +p242109 +tp242110 +a(g242107 +g242109 +S'of' +p242111 +tp242112 +a(g242109 +g242111 +S'her' +p242113 +tp242114 +a(g242111 +g242113 +S'torture.' +p242115 +tp242116 +a(g242113 +g242115 +S'the' +p242117 +tp242118 +a(g242115 +g242117 +S'roman' +p242119 +tp242120 +a(g242117 +g242119 +S'building' +p242121 +tp242122 +a(g242119 +g242121 +S'in' +p242123 +tp242124 +a(g242121 +g242123 +S'the' +p242125 +tp242126 +a(g242123 +g242125 +S'background' +p242127 +tp242128 +a(g242125 +g242127 +S'may' +p242129 +tp242130 +a(g242127 +g242129 +S'be' +p242131 +tp242132 +a(g242129 +g242131 +S'the' +p242133 +tp242134 +a(g242131 +g242133 +S'temple' +p242135 +tp242136 +a(g242133 +g242135 +S'of' +p242137 +tp242138 +a(g242135 +g242137 +S'apollo' +p242139 +tp242140 +a(g242137 +g242139 +S'struck' +p242141 +tp242142 +a(g242139 +g242141 +S'by' +p242143 +tp242144 +a(g242141 +g242143 +S'lightning' +p242145 +tp242146 +a(g242143 +g242145 +S'when' +p242147 +tp242148 +a(g242145 +g242147 +S'martina' +p242149 +tp242150 +a(g242147 +g242149 +S'made' +p242151 +tp242152 +a(g242149 +g242151 +S'the' +p242153 +tp242154 +a(g242151 +g242153 +S'sign' +p242155 +tp242156 +a(g242153 +g242155 +S'of' +p242157 +tp242158 +a(g242155 +g242157 +S'the' +p242159 +tp242160 +a(g242157 +g242159 +S'cross.' +p242161 +tp242162 +a(g242159 +g242161 +S'as' +p242163 +tp242164 +a(g242161 +g242163 +S'the' +p242165 +tp242166 +a(g242163 +g242165 +S'virgin' +p242167 +tp242168 +a(g242165 +g242167 +S'and' +p242169 +tp242170 +a(g242167 +g242169 +S'child' +p242171 +tp242172 +a(g242169 +g242171 +S'appear' +p242173 +tp242174 +a(g242171 +g242173 +S'to' +p242175 +tp242176 +a(g242173 +g242175 +S'her' +p242177 +tp242178 +a(g242175 +g242177 +S'on' +p242179 +tp242180 +a(g242177 +g242179 +S'a' +p242181 +tp242182 +a(g242179 +g242181 +S'cloud,' +p242183 +tp242184 +a(g242181 +g242183 +S'the' +p242185 +tp242186 +a(g242183 +g242185 +S'excitement' +p242187 +tp242188 +a(g242185 +g242187 +S'of' +p242189 +tp242190 +a(g242187 +g242189 +S'the' +p242191 +tp242192 +a(g242189 +g242191 +S'encounter' +p242193 +tp242194 +a(g242191 +g242193 +S'is' +p242195 +tp242196 +a(g242193 +g242195 +S'echoed' +p242197 +tp242198 +a(g242195 +g242197 +S'by' +p242199 +tp242200 +a(g242197 +g242199 +S'the' +p242201 +tp242202 +a(g242199 +g242201 +S'swirling' +p242203 +tp242204 +a(g242201 +g242203 +S'drapery' +p242205 +tp242206 +a(g242203 +g242205 +S'patterns' +p242207 +tp242208 +a(g242205 +g242207 +S'and' +p242209 +tp242210 +a(g242207 +g242209 +S'the' +p242211 +tp242212 +a(g242209 +g242211 +S'windblown' +p242213 +tp242214 +a(g242211 +g242213 +S'sweep' +p242215 +tp242216 +a(g242213 +g242215 +S'of' +p242217 +tp242218 +a(g242215 +g242217 +S'distant' +p242219 +tp242220 +a(g242217 +g242219 +S'trees.' +p242221 +tp242222 +a(g242219 +g242221 +S'pietro' +p242223 +tp242224 +a(g242221 +g242223 +S'portrayed' +p242225 +tp242226 +a(g242223 +g242225 +S'saint' +p242227 +tp242228 +a(g242225 +g242227 +S'martina' +p242229 +tp242230 +a(g242227 +g242229 +S'repeatedly' +p242231 +tp242232 +a(g242229 +g242231 +S'after' +p242233 +tp242234 +a(g242231 +g242233 +S'her' +p242235 +tp242236 +a(g242233 +g242235 +S'remains' +p242237 +tp242238 +a(g242235 +g242237 +S'were' +p242239 +tp242240 +a(g242237 +g242239 +S'discovered' +p242241 +tp242242 +a(g242239 +g242241 +S'in' +p242243 +tp242244 +a(g242241 +g242243 +S'1634' +p242245 +tp242246 +a(g242243 +g242245 +S'during' +p242247 +tp242248 +a(g242245 +g242247 +S'reconstruction' +p242249 +tp242250 +a(g242247 +g242249 +S'of' +p242251 +tp242252 +a(g242249 +g242251 +S'the' +p242253 +tp242254 +a(g242251 +g242253 +S'crypt' +p242255 +tp242256 +a(g242253 +g242255 +S'in' +p242257 +tp242258 +a(g242255 +g242257 +S'the' +p242259 +tp242260 +a(g242257 +g242259 +S'church' +p242261 +tp242262 +a(g242259 +g242261 +S'of' +p242263 +tp242264 +a(g242261 +g242263 +S'the' +p242265 +tp242266 +a(g242263 +g242265 +S'academy' +p242267 +tp242268 +a(g242265 +g242267 +S'of' +p242269 +tp242270 +a(g242267 +g242269 +S'saint' +p242271 +tp242272 +a(g242269 +g242271 +S'luke,' +p242273 +tp242274 +a(g242271 +g242273 +S'which' +p242275 +tp242276 +a(g242273 +g242275 +S'he' +p242277 +tp242278 +a(g242275 +g242277 +S'was' +p242279 +tp242280 +a(g242277 +g242279 +S'overseeing.' +p242281 +tp242282 +a(g242279 +g242281 +S'in' +p242283 +tp242284 +a(g242281 +g242283 +S'celebration,' +p242285 +tp242286 +a(g242283 +g242285 +S'pietro' +p242287 +tp242288 +a(g242285 +g242287 +S'was' +p242289 +tp242290 +a(g242287 +g242289 +S'commissioned' +p242291 +tp242292 +a(g242289 +g242291 +S'to' +p242293 +tp242294 +a(g242291 +g242293 +S'rebuild' +p242295 +tp242296 +a(g242293 +g242295 +S'the' +p242297 +tp242298 +a(g242295 +g242297 +S'entire' +p242299 +tp242300 +a(g242297 +g242299 +S'church,' +p242301 +tp242302 +a(g242299 +g242301 +S'renamed' +p242303 +tp242304 +a(g242301 +g242303 +S'saints' +p242305 +tp242306 +a(g242303 +g242305 +S'luke' +p242307 +tp242308 +a(g242305 +g242307 +S'and' +p242309 +tp242310 +a(g242307 +g242309 +S'martina.' +p242311 +tp242312 +a(g242309 +g242311 +S'he' +p242313 +tp242314 +a(g242311 +g242313 +S'designed' +p242315 +tp242316 +a(g242313 +g242315 +S'and' +p242317 +tp242318 +a(g242315 +g242317 +S'collaborated' +p242319 +tp242320 +a(g242317 +g242319 +S'with' +p242321 +tp242322 +a(g242319 +g242321 +S'fancelli' +p242323 +tp242324 +a(g242321 +g242323 +S'on' +p242325 +tp242326 +a(g242323 +g242325 +S'an' +p242327 +tp242328 +a(g242325 +g242327 +S'alabaster' +p242329 +tp242330 +a(g242327 +g242329 +S'and' +p242331 +tp242332 +a(g242329 +g242331 +S'lapis' +p242333 +tp242334 +a(g242331 +g242333 +S'lazuli' +p242335 +tp242336 +a(g242333 +g242335 +S'relief' +p242337 +tp242338 +a(g242335 +g242337 +S'version' +p242339 +tp242340 +a(g242337 +g242339 +S'of' +p242341 +tp242342 +a(g242339 +g242341 +S'the' +p242343 +tp242344 +a(g242341 +g242343 +S'martina' +p242345 +tp242346 +a(g242343 +g242345 +S'image' +p242347 +tp242348 +a(g242345 +g242347 +S'that' +p242349 +tp242350 +a(g242347 +g242349 +S'still' +p242351 +tp242352 +a(g242349 +g242351 +S'adorns' +p242353 +tp242354 +a(g242351 +g242353 +S'the' +p242355 +tp242356 +a(g242353 +g242355 +S'altar' +p242357 +tp242358 +a(g242355 +g242357 +S'of' +p242359 +tp242360 +a(g242357 +g242359 +S'her' +p242361 +tp242362 +a(g242359 +g242361 +S'shrine' +p242363 +tp242364 +a(g242361 +g242363 +S'in' +p242365 +tp242366 +a(g242363 +g242365 +S'the' +p242367 +tp242368 +a(g242365 +g242367 +S'crypt.' +p242369 +tp242370 +a(g242367 +g242369 +S'this' +p242371 +tp242372 +a(g242369 +g242371 +S'gilt' +p242373 +tp242374 +a(g242371 +g242373 +S'bronze' +p242375 +tp242376 +a(g242373 +g242375 +S'relief' +p242377 +tp242378 +a(g242375 +g242377 +S'is' +p242379 +tp242380 +a(g242377 +g242379 +S'among' +p242381 +tp242382 +a(g242379 +g242381 +S'the' +p242383 +tp242384 +a(g242381 +g242383 +S'best' +p242385 +tp242386 +a(g242383 +g242385 +S'of' +p242387 +tp242388 +a(g242385 +g242387 +S'the' +p242389 +tp242390 +a(g242387 +g242389 +S'several' +p242391 +tp242392 +a(g242389 +g242391 +S'other' +p242393 +tp242394 +a(g242391 +g242393 +S'sculptural' +p242395 +tp242396 +a(g242393 +g242395 +S'interpretations' +p242397 +tp242398 +a(g242395 +g242397 +S'of' +p242399 +tp242400 +a(g242397 +g242399 +S'the' +p242401 +tp242402 +a(g242399 +g242401 +S'theme.' +p242403 +tp242404 +a(g242401 +g242403 +S'while' +p242405 +tp242406 +a(g242403 +g242405 +S'exposing' +p242407 +tp242408 +a(g242405 +g242407 +S'her' +p242409 +tp242410 +a(g242407 +g242409 +S'breast' +p242411 +tp242412 +a(g242409 +g242411 +S'to' +p242413 +tp242414 +a(g242411 +g242413 +S'the' +p242415 +tp242416 +a(g242413 +g242415 +S'thrust' +p242417 +tp242418 +a(g242415 +g242417 +S'of' +p242419 +tp242420 +a(g242417 +g242419 +S'the' +p242421 +tp242422 +a(g242419 +g242421 +S'dagger' +p242423 +tp242424 +a(g242421 +g242423 +S'that' +p242425 +tp242426 +a(g242423 +g242425 +S'will' +p242427 +tp242428 +a(g242425 +g242427 +S'kill' +p242429 +tp242430 +a(g242427 +g242429 +S'her,' +p242431 +tp242432 +a(g242429 +g242431 +S'saint' +p242433 +tp242434 +a(g242431 +g242433 +S'lucy' +p242435 +tp242436 +a(g242433 +g242435 +S'turns' +p242437 +tp242438 +a(g242435 +g242437 +S'her' +p242439 +tp242440 +a(g242437 +g242439 +S'head' +p242441 +tp242442 +a(g242439 +g242441 +S'to' +p242443 +tp242444 +a(g242441 +g242443 +S'accept' +p242445 +tp242446 +a(g242443 +g242445 +S'communion' +p242447 +tp242448 +a(g242445 +g242447 +S'from' +p242449 +tp242450 +a(g242447 +g242449 +S'a' +p242451 +tp242452 +a(g242449 +g242451 +S'priest.' +p242453 +tp242454 +a(g242451 +g242453 +S'this' +p242455 +tp242456 +a(g242453 +g242455 +S'unconventional' +p242457 +tp242458 +a(g242455 +g242457 +S'addition' +p242459 +tp242460 +a(g242457 +g242459 +S'of' +p242461 +tp242462 +a(g242459 +g242461 +S'the' +p242463 +tp242464 +a(g242461 +g242463 +S'sacrament' +p242465 +tp242466 +a(g242463 +g242465 +S'to' +p242467 +tp242468 +a(g242465 +g242467 +S'the' +p242469 +tp242470 +a(g242467 +g242469 +S'scene' +p242471 +tp242472 +a(g242469 +g242471 +S'of' +p242473 +tp242474 +a(g242471 +g242473 +S"lucy's" +p242475 +tp242476 +a(g242473 +g242475 +S'martyrdom' +p242477 +tp242478 +a(g242475 +g242477 +S'is' +p242479 +tp242480 +a(g242477 +g242479 +S'a' +p242481 +tp242482 +a(g242479 +g242481 +S'reminder' +p242483 +tp242484 +a(g242481 +g242483 +S'of' +p242485 +tp242486 +a(g242483 +g242485 +S'the' +p242487 +tp242488 +a(g242485 +g242487 +S'counter-reformation' +p242489 +tp242490 +a(g242487 +g242489 +S'climate' +p242491 +tp242492 +a(g242489 +g242491 +S'that' +p242493 +tp242494 +a(g242491 +g242493 +S'shadowed' +p242495 +tp242496 +a(g242493 +g242495 +S"veronese's" +p242497 +tp242498 +a(g242495 +g242497 +S'career.' +p242499 +tp242500 +a(g242497 +g242499 +S'twice,' +p242501 +tp242502 +a(g242499 +g242501 +S'the' +p242503 +tp242504 +a(g242501 +g242503 +S'artist' +p242505 +tp242506 +a(g242503 +g242505 +S'had' +p242507 +tp242508 +a(g242505 +g242507 +S'defended' +p242509 +tp242510 +a(g242507 +g242509 +S'himself' +p242511 +tp242512 +a(g242509 +g242511 +S'against' +p242513 +tp242514 +a(g242511 +g242513 +S'allegations' +p242515 +tp242516 +a(g242513 +g242515 +S'of' +p242517 +tp242518 +a(g242515 +g242517 +S'impropriety' +p242519 +tp242520 +a(g242517 +g242519 +S'in' +p242521 +tp242522 +a(g242519 +g242521 +S'his' +p242523 +tp242524 +a(g242521 +g242523 +S'treatment' +p242525 +tp242526 +a(g242523 +g242525 +S'of' +p242527 +tp242528 +a(g242525 +g242527 +S'religious' +p242529 +tp242530 +a(g242527 +g242529 +S'subjects.' +p242531 +tp242532 +a(g242529 +g242531 +S'sketchily' +p242533 +tp242534 +a(g242531 +g242533 +S'rendered' +p242535 +tp242536 +a(g242533 +g242535 +S'in' +p242537 +tp242538 +a(g242535 +g242537 +S'the' +p242539 +tp242540 +a(g242537 +g242539 +S'background' +p242541 +tp242542 +a(g242539 +g242541 +S'is' +p242543 +tp242544 +a(g242541 +g242543 +S'a' +p242545 +tp242546 +a(g242543 +g242545 +S'team' +p242547 +tp242548 +a(g242545 +g242547 +S'of' +p242549 +tp242550 +a(g242547 +g242549 +S'oxen;' +p242551 +tp242552 +a(g242549 +g242551 +S'these' +p242553 +tp242554 +a(g242551 +g242553 +S'are' +p242555 +tp242556 +a(g242553 +g242555 +S'the' +p242557 +tp242558 +a(g242555 +g242557 +S'beasts' +p242559 +tp242560 +a(g242557 +g242559 +S'who' +p242561 +tp242562 +a(g242559 +g242561 +S'had' +p242563 +tp242564 +a(g242561 +g242563 +S'failed' +p242565 +tp242566 +a(g242563 +g242565 +S'to' +p242567 +tp242568 +a(g242565 +g242567 +S'drag' +p242569 +tp242570 +a(g242567 +g242569 +S'the' +p242571 +tp242572 +a(g242569 +g242571 +S'chaste' +p242573 +tp242574 +a(g242571 +g242573 +S'lucy' +p242575 +tp242576 +a(g242573 +g242575 +S'--' +p242577 +tp242578 +a(g242575 +g242577 +S'made' +p242579 +tp242580 +a(g242577 +g242579 +S'miraculously' +p242581 +tp242582 +a(g242579 +g242581 +S'immobile' +p242583 +tp242584 +a(g242581 +g242583 +S'--' +p242585 +tp242586 +a(g242583 +g242585 +S'to' +p242587 +tp242588 +a(g242585 +g242587 +S'the' +p242589 +tp242590 +a(g242587 +g242589 +S'brothel' +p242591 +tp242592 +a(g242589 +g242591 +S'where' +p242593 +tp242594 +a(g242591 +g242593 +S'she' +p242595 +tp242596 +a(g242593 +g242595 +S'had' +p242597 +tp242598 +a(g242595 +g242597 +S'been' +p242599 +tp242600 +a(g242597 +g242599 +S'condemned' +p242601 +tp242602 +a(g242599 +g242601 +S'for' +p242603 +tp242604 +a(g242601 +g242603 +S'her' +p242605 +tp242606 +a(g242603 +g242605 +S'christian' +p242607 +tp242608 +a(g242605 +g242607 +S'faith.' +p242609 +tp242610 +a(g242607 +g242609 +S'a' +p242611 +tp242612 +a(g242609 +g242611 +S'glimpse' +p242613 +tp242614 +a(g242611 +g242613 +S'of' +p242615 +tp242616 +a(g242613 +g242615 +S'fire' +p242617 +tp242618 +a(g242615 +g242617 +S'behind' +p242619 +tp242620 +a(g242617 +g242619 +S'lucy' +p242621 +tp242622 +a(g242619 +g242621 +S'alludes' +p242623 +tp242624 +a(g242621 +g242623 +S'to' +p242625 +tp242626 +a(g242623 +g242625 +S'another' +p242627 +tp242628 +a(g242625 +g242627 +S'failed' +p242629 +tp242630 +a(g242627 +g242629 +S'attempt' +p242631 +tp242632 +a(g242629 +g242631 +S'to' +p242633 +tp242634 +a(g242631 +g242633 +S'martyr' +p242635 +tp242636 +a(g242633 +g242635 +S'this' +p242637 +tp242638 +a(g242635 +g242637 +S'third-century' +p242639 +tp242640 +a(g242637 +g242639 +S'saint.' +p242641 +tp242642 +a(g242639 +g242641 +S"veronese's" +p242643 +tp242644 +a(g242641 +g242643 +S'own' +p242645 +tp242646 +a(g242643 +g242645 +S'venice,' +p242647 +tp242648 +a(g242645 +g242647 +S'and' +p242649 +tp242650 +a(g242647 +g242649 +S'not' +p242651 +tp242652 +a(g242649 +g242651 +S"lucy's" +p242653 +tp242654 +a(g242651 +g242653 +S'ancient' +p242655 +tp242656 +a(g242653 +g242655 +S'syracuse,' +p242657 +tp242658 +a(g242655 +g242657 +S'is' +p242659 +tp242660 +a(g242657 +g242659 +S'made' +p242661 +tp242662 +a(g242659 +g242661 +S'the' +p242663 +tp242664 +a(g242661 +g242663 +S'backdrop' +p242665 +tp242666 +a(g242663 +g242665 +S'to' +p242667 +tp242668 +a(g242665 +g242667 +S'this' +p242669 +tp242670 +a(g242667 +g242669 +S'scene.' +p242671 +tp242672 +a(g242669 +g242671 +S'a' +p242673 +tp242674 +a(g242671 +g242673 +S'brilliant' +p242675 +tp242676 +a(g242673 +g242675 +S'decorator,' +p242677 +tp242678 +a(g242675 +g242677 +S'veronese' +p242679 +tp242680 +a(g242677 +g242679 +S'was' +p242681 +tp242682 +a(g242679 +g242681 +S'celebrated' +p242683 +tp242684 +a(g242681 +g242683 +S'for' +p242685 +tp242686 +a(g242683 +g242685 +S'his' +p242687 +tp242688 +a(g242685 +g242687 +S'sumptuous' +p242689 +tp242690 +a(g242687 +g242689 +S'histories' +p242691 +tp242692 +a(g242689 +g242691 +S'and' +p242693 +tp242694 +a(g242691 +g242693 +S'mythologies' +p242695 +tp242696 +a(g242693 +g242695 +S'which' +p242697 +tp242698 +a(g242695 +g242697 +S'he' +p242699 +tp242700 +a(g242697 +g242699 +S'translated' +p242701 +tp242702 +a(g242699 +g242701 +S'into' +p242703 +tp242704 +a(g242701 +g242703 +S'opulent' +p242705 +tp242706 +a(g242703 +g242705 +S'present-day' +p242707 +tp242708 +a(g242705 +g242707 +S'surroundings' +p242709 +tp242710 +a(g242707 +g242709 +S'and' +p242711 +tp242712 +a(g242709 +g242711 +S'dress.' +p242713 +tp242714 +a(g242711 +g242713 +S'if' +p242715 +tp242716 +a(g242713 +g242715 +S'the' +p242717 +tp242718 +a(g242715 +g242717 +S'artist' +p242719 +tp242720 +a(g242717 +g242719 +S'was' +p242721 +tp242722 +a(g242719 +g242721 +S'best' +p242723 +tp242724 +a(g242721 +g242723 +S'known' +p242725 +tp242726 +a(g242723 +g242725 +S'for' +p242727 +tp242728 +a(g242725 +g242727 +S'the' +p242729 +tp242730 +a(g242727 +g242729 +S'sparkling' +p242731 +tp242732 +a(g242729 +g242731 +S'blond' +p242733 +tp242734 +a(g242731 +g242733 +S'harmonies' +p242735 +tp242736 +a(g242733 +g242735 +S'of' +p242737 +tp242738 +a(g242735 +g242737 +S'his' +p242739 +tp242740 +a(g242737 +g242739 +S'mature' +p242741 +tp242742 +a(g242739 +g242741 +S'work,' +p242743 +tp242744 +a(g242741 +g242743 +S'the' +p242745 +tp242746 +a(g242743 +g242745 +S'escher' +p242747 +tp242748 +a(g242745 +g242747 +S'described' +p242749 +tp242750 +a(g242747 +g242749 +S'this' +p242751 +tp242752 +a(g242749 +g242751 +S'print' +p242753 +tp242754 +a(g242751 +g242753 +S'as' +p242755 +tp242756 +a(g242753 +g242755 +S'a' +p242757 +tp242758 +a(g242755 +g242757 +S'symbol' +p242759 +tp242760 +a(g242757 +g242759 +S'of' +p242761 +tp242762 +a(g242759 +g242761 +S'order' +p242763 +tp242764 +a(g242761 +g242763 +S'and' +p242765 +tp242766 +a(g242763 +g242765 +S'chaos:' +p242767 +tp242768 +a(g242765 +g242767 +S'order' +p242769 +tp242770 +a(g242767 +g242769 +S'represented' +p242771 +tp242772 +a(g242769 +g242771 +S'by' +p242773 +tp242774 +a(g242771 +g242773 +S'the' +p242775 +tp242776 +a(g242773 +g242775 +S'polyhedron' +p242777 +tp242778 +a(g242775 +g242777 +S'and' +p242779 +tp242780 +a(g242777 +g242779 +S'the' +p242781 +tp242782 +a(g242779 +g242781 +S'translucent' +p242783 +tp242784 +a(g242781 +g242783 +S'sphere;' +p242785 +tp242786 +a(g242783 +g242785 +S'chaos' +p242787 +tp242788 +a(g242785 +g242787 +S'depicted' +p242789 +tp242790 +a(g242787 +g242789 +S'by' +p242791 +tp242792 +a(g242789 +g242791 +S'the' +p242793 +tp242794 +a(g242791 +g242793 +S'surrounding' +p242795 +tp242796 +a(g242793 +g242795 +S'broken' +p242797 +tp242798 +a(g242795 +g242797 +S'and' +p242799 +tp242800 +a(g242797 +g242799 +S'crumpled' +p242801 +tp242802 +a(g242799 +g242801 +S'cast-off' +p242803 +tp242804 +a(g242801 +g242803 +S'objects' +p242805 +tp242806 +a(g242803 +g242805 +S'of' +p242807 +tp242808 +a(g242805 +g242807 +S'daily' +p242809 +tp242810 +a(g242807 +g242809 +S'life.' +p242811 +tp242812 +a(g242809 +g242811 +S'the' +p242813 +tp242814 +a(g242811 +g242813 +S'artist' +p242815 +tp242816 +a(g242813 +g242815 +S'believed' +p242817 +tp242818 +a(g242815 +g242817 +S'the' +p242819 +tp242820 +a(g242817 +g242819 +S'polyhedron' +p242821 +tp242822 +a(g242819 +g242821 +S'(a' +p242823 +tp242824 +a(g242821 +g242823 +S'solid' +p242825 +tp242826 +a(g242823 +g242825 +S'figure' +p242827 +tp242828 +a(g242825 +g242827 +S'with' +p242829 +tp242830 +a(g242827 +g242829 +S'many' +p242831 +tp242832 +a(g242829 +g242831 +S'sides)' +p242833 +tp242834 +a(g242831 +g242833 +S'symbolized' +p242835 +tp242836 +a(g242833 +g242835 +S'beauty,' +p242837 +tp242838 +a(g242835 +g242837 +S'order,' +p242839 +tp242840 +a(g242837 +g242839 +S'and' +p242841 +tp242842 +a(g242839 +g242841 +S'harmony' +p242843 +tp242844 +a(g242841 +g242843 +S'in' +p242845 +tp242846 +a(g242843 +g242845 +S'the' +p242847 +tp242848 +a(g242845 +g242847 +S'universe.' +p242849 +tp242850 +a(g242847 +g242849 +S'yet,' +p242851 +tp242852 +a(g242849 +g242851 +S'he' +p242853 +tp242854 +a(g242851 +g242853 +S'rendered' +p242855 +tp242856 +a(g242853 +g242855 +S'chaos' +p242857 +tp242858 +a(g242855 +g242857 +S'with' +p242859 +tp242860 +a(g242857 +g242859 +S'equal' +p242861 +tp242862 +a(g242859 +g242861 +S'care,' +p242863 +tp242864 +a(g242861 +g242863 +S'as' +p242865 +tp242866 +a(g242863 +g242865 +S'in' +p242867 +tp242868 +a(g242865 +g242867 +S'the' +p242869 +tp242870 +a(g242867 +g242869 +S'exquisitely' +p242871 +tp242872 +a(g242869 +g242871 +S'drawn' +p242873 +tp242874 +a(g242871 +g242873 +S'sardine' +p242875 +tp242876 +a(g242873 +g242875 +S'can' +p242877 +tp242878 +a(g242875 +g242877 +S'at' +p242879 +tp242880 +a(g242877 +g242879 +S'upper' +p242881 +tp242882 +a(g242879 +g242881 +S'left.' +p242883 +tp242884 +a(g242881 +g242883 +S'the' +p242885 +tp242886 +a(g242883 +g242885 +S'engravings' +p242887 +tp242888 +a(g242885 +g242887 +S'of' +p242889 +tp242890 +a(g242887 +g242889 +S'andrea' +p242891 +tp242892 +a(g242889 +g242891 +S'mantegna' +p242893 +tp242894 +a(g242891 +g242893 +S'were' +p242895 +tp242896 +a(g242893 +g242895 +S'the' +p242897 +tp242898 +a(g242895 +g242897 +S'most' +p242899 +tp242900 +a(g242897 +g242899 +S'influential' +p242901 +tp242902 +a(g242899 +g242901 +S'prints' +p242903 +tp242904 +a(g242901 +g242903 +S'produced' +p242905 +tp242906 +a(g242903 +g242905 +S'in' +p242907 +tp242908 +a(g242905 +g242907 +S'15th-century' +p242909 +tp242910 +a(g242907 +g242909 +S'italy.' +p242911 +tp242912 +a(g242909 +g242911 +S'motifs' +p242913 +tp242914 +a(g242911 +g242913 +S'from' +p242915 +tp242916 +a(g242913 +g242915 +S'his' +p242917 +tp242918 +a(g242915 +g242917 +S'creations' +p242919 +tp242920 +a(g242917 +g242919 +S'appear' +p242921 +tp242922 +a(g242919 +g242921 +S'in' +p242923 +tp242924 +a(g242921 +g242923 +S'works' +p242925 +tp242926 +a(g242923 +g242925 +S'by' +p242927 +tp242928 +a(g242925 +g242927 +S'every' +p242929 +tp242930 +a(g242927 +g242929 +S'major' +p242931 +tp242932 +a(g242929 +g242931 +S'early' +p242933 +tp242934 +a(g242931 +g242933 +S'italian' +p242935 +tp242936 +a(g242933 +g242935 +S'printmaker,' +p242937 +tp242938 +a(g242935 +g242937 +S'and' +p242939 +tp242940 +a(g242937 +g242939 +S'it' +p242941 +tp242942 +a(g242939 +g242941 +S'was' +p242943 +tp242944 +a(g242941 +g242943 +S'through' +p242945 +tp242946 +a(g242943 +g242945 +S"mantegna's" +p242947 +tp242948 +a(g242945 +g242947 +S'prints' +p242949 +tp242950 +a(g242947 +g242949 +S'that' +p242951 +tp242952 +a(g242949 +g242951 +S'albrecht' +p242953 +tp242954 +a(g242951 +g242953 +S'dürer' +p242955 +tp242956 +a(g242953 +g242955 +S'made' +p242957 +tp242958 +a(g242955 +g242957 +S'his' +p242959 +tp242960 +a(g242957 +g242959 +S'first' +p242961 +tp242962 +a(g242959 +g242961 +S'acquaintance' +p242963 +tp242964 +a(g242961 +g242963 +S'with' +p242965 +tp242966 +a(g242963 +g242965 +S'the' +p242967 +tp242968 +a(g242965 +g242967 +S'southern' +p242969 +tp242970 +a(g242967 +g242969 +S'renaissance.' +p242971 +tp242972 +a(g242969 +g242971 +S'mantegna' +p242973 +tp242974 +a(g242971 +g242973 +S'developed' +p242975 +tp242976 +a(g242973 +g242975 +S'a' +p242977 +tp242978 +a(g242975 +g242977 +S'passion' +p242979 +tp242980 +a(g242977 +g242979 +S'for' +p242981 +tp242982 +a(g242979 +g242981 +S'ancient' +p242983 +tp242984 +a(g242981 +g242983 +S'works' +p242985 +tp242986 +a(g242983 +g242985 +S'of' +p242987 +tp242988 +a(g242985 +g242987 +S'art' +p242989 +tp242990 +a(g242987 +g242989 +S'early' +p242991 +tp242992 +a(g242989 +g242991 +S'in' +p242993 +tp242994 +a(g242991 +g242993 +S'his' +p242995 +tp242996 +a(g242993 +g242995 +S'career' +p242997 +tp242998 +a(g242995 +g242997 +S'when' +p242999 +tp243000 +a(g242997 +g242999 +S'introduced' +p243001 +tp243002 +a(g242999 +g243001 +S'to' +p243003 +tp243004 +a(g243001 +g243003 +S'classical' +p243005 +tp243006 +a(g243003 +g243005 +S'antiquity,' +p243007 +tp243008 +a(g243005 +g243007 +S'and' +p243009 +tp243010 +a(g243007 +g243009 +S'their' +p243011 +tp243012 +a(g243009 +g243011 +S'study' +p243013 +tp243014 +a(g243011 +g243013 +S'profoundly' +p243015 +tp243016 +a(g243013 +g243015 +S'influenced' +p243017 +tp243018 +a(g243015 +g243017 +S'his' +p243019 +tp243020 +a(g243017 +g243019 +S'paintings' +p243021 +tp243022 +a(g243019 +g243021 +S'and' +p243023 +tp243024 +a(g243021 +g243023 +S'engravings.' +p243025 +tp243026 +a(g243023 +g243025 +S'the' +p243027 +tp243028 +a(g243025 +g243027 +S'idealized' +p243029 +tp243030 +a(g243027 +g243029 +S'form' +p243031 +tp243032 +a(g243029 +g243031 +S'of' +p243033 +tp243034 +a(g243031 +g243033 +S'his' +p243035 +tp243036 +a(g243033 +g243035 +S'figures,' +p243037 +tp243038 +a(g243035 +g243037 +S'their' +p243039 +tp243040 +a(g243037 +g243039 +S'monumental' +p243041 +tp243042 +a(g243039 +g243041 +S'scale' +p243043 +tp243044 +a(g243041 +g243043 +S'and' +p243045 +tp243046 +a(g243043 +g243045 +S'dynamic' +p243047 +tp243048 +a(g243045 +g243047 +S'movement,' +p243049 +tp243050 +a(g243047 +g243049 +S'as' +p243051 +tp243052 +a(g243049 +g243051 +S'well' +p243053 +tp243054 +a(g243051 +g243053 +S'as' +p243055 +tp243056 +a(g243053 +g243055 +S'their' +p243057 +tp243058 +a(g243055 +g243057 +S'sculptural' +p243059 +tp243060 +a(g243057 +g243059 +S'clarity' +p243061 +tp243062 +a(g243059 +g243061 +S'and' +p243063 +tp243064 +a(g243061 +g243063 +S'definition' +p243065 +tp243066 +a(g243063 +g243065 +S'can' +p243067 +tp243068 +a(g243065 +g243067 +S'all' +p243069 +tp243070 +a(g243067 +g243069 +S'be' +p243071 +tp243072 +a(g243069 +g243071 +S'traced' +p243073 +tp243074 +a(g243071 +g243073 +S'to' +p243075 +tp243076 +a(g243073 +g243075 +S'his' +p243077 +tp243078 +a(g243075 +g243077 +S'involvement' +p243079 +tp243080 +a(g243077 +g243079 +S'with' +p243081 +tp243082 +a(g243079 +g243081 +S'ancient' +p243083 +tp243084 +a(g243081 +g243083 +S'architecture' +p243085 +tp243086 +a(g243083 +g243085 +S'and' +p243087 +tp243088 +a(g243085 +g243087 +S'reliefs.' +p243089 +tp243090 +a(g243087 +g243089 +S'this' +p243091 +tp243092 +a(g243089 +g243091 +S'print' +p243093 +tp243094 +a(g243091 +g243093 +S'is' +p243095 +tp243096 +a(g243093 +g243095 +S'the' +p243097 +tp243098 +a(g243095 +g243097 +S'left-hand' +p243099 +tp243100 +a(g243097 +g243099 +S'portion' +p243101 +tp243102 +a(g243099 +g243101 +S'of' +p243103 +tp243104 +a(g243101 +g243103 +S'a' +p243105 +tp243106 +a(g243103 +g243105 +S'two-sheet' +p243107 +tp243108 +a(g243105 +g243107 +S'composition,' +p243109 +tp243110 +a(g243107 +g243109 +S'intended' +p243111 +tp243112 +a(g243109 +g243111 +S'to' +p243113 +tp243114 +a(g243111 +g243113 +S'join' +p243115 +tp243116 +a(g243113 +g243115 +S'the' +p243117 +tp243118 +a(g243115 +g243117 +S'right' +p243119 +tp243120 +a(g243117 +g243119 +S'half' +p243121 +tp243122 +a(g243119 +g243121 +S'and' +p243123 +tp243124 +a(g243121 +g243123 +S'create' +p243125 +tp243126 +a(g243123 +g243125 +S'a' +p243127 +tp243128 +a(g243125 +g243127 +S'unified' +p243129 +tp243130 +a(g243127 +g243129 +S'image' +p243131 +tp243132 +a(g243129 +g243131 +S'after' +p243133 +tp243134 +a(g243131 +g243133 +S'printing.' +p243135 +tp243136 +a(g243133 +g243135 +S'the' +p243137 +tp243138 +a(g243135 +g243137 +S'subject' +p243139 +tp243140 +a(g243137 +g243139 +S'appears' +p243141 +tp243142 +a(g243139 +g243141 +S'to' +p243143 +tp243144 +a(g243141 +g243143 +S'be' +p243145 +tp243146 +a(g243143 +g243145 +S'an' +p243147 +tp243148 +a(g243145 +g243147 +S'allegory' +p243149 +tp243150 +a(g243147 +g243149 +S'of' +p243151 +tp243152 +a(g243149 +g243151 +S'the' +p243153 +tp243154 +a(g243151 +g243153 +S'destructive' +p243155 +tp243156 +a(g243153 +g243155 +S'forces' +p243157 +tp243158 +a(g243155 +g243157 +S'of' +p243159 +tp243160 +a(g243157 +g243159 +S'human' +p243161 +tp243162 +a(g243159 +g243161 +S'envy—perhaps' +p243163 +tp243164 +a(g243161 +g243163 +S'between' +p243165 +tp243166 +a(g243163 +g243165 +S'artists—and' +p243167 +tp243168 +a(g243165 +g243167 +S'centers' +p243169 +tp243170 +a(g243167 +g243169 +S'on' +p243171 +tp243172 +a(g243169 +g243171 +S'the' +p243173 +tp243174 +a(g243171 +g243173 +S'emaciated' +p243175 +tp243176 +a(g243173 +g243175 +S'woman' +p243177 +tp243178 +a(g243175 +g243177 +S'at' +p243179 +tp243180 +a(g243177 +g243179 +S'the' +p243181 +tp243182 +a(g243179 +g243181 +S'left.' +p243183 +tp243184 +a(g243181 +g243183 +S'she' +p243185 +tp243186 +a(g243183 +g243185 +S'clearly' +p243187 +tp243188 +a(g243185 +g243187 +S'represents' +p243189 +tp243190 +a(g243187 +g243189 +S'the' +p243191 +tp243192 +a(g243189 +g243191 +S'vice' +p243193 +tp243194 +a(g243191 +g243193 +S'of' +p243195 +tp243196 +a(g243193 +g243195 +S'envy' +p243197 +tp243198 +a(g243195 +g243197 +S'(her' +p243199 +tp243200 +a(g243197 +g243199 +S'tablet' +p243201 +tp243202 +a(g243199 +g243201 +S'is' +p243203 +tp243204 +a(g243201 +g243203 +S'inscribed' +p243205 +tp243206 +a(g243203 +g243205 +S'with' +p243207 +tp243208 +a(g243205 +g243207 +S'the' +p243209 +tp243210 +a(g243207 +g243209 +S'latin' +p243211 +tp243212 +a(g243209 +g243211 +S'word' +p243213 +tp243214 +a(g243211 +g243213 +S'for' +p243215 +tp243216 +a(g243213 +g243215 +S'envy),' +p243217 +tp243218 +a(g243215 +g243217 +S'a' +p243219 +tp243220 +a(g243217 +g243219 +S'theme' +p243221 +tp243222 +a(g243219 +g243221 +S'to' +p243223 +tp243224 +a(g243221 +g243223 +S'which' +p243225 +tp243226 +a(g243223 +g243225 +S'mantegna' +p243227 +tp243228 +a(g243225 +g243227 +S'would' +p243229 +tp243230 +a(g243227 +g243229 +S'return' +p243231 +tp243232 +a(g243229 +g243231 +S'later' +p243233 +tp243234 +a(g243231 +g243233 +S'in' +p243235 +tp243236 +a(g243233 +g243235 +S'a' +p243237 +tp243238 +a(g243235 +g243237 +S'painting' +p243239 +tp243240 +a(g243237 +g243239 +S'for' +p243241 +tp243242 +a(g243239 +g243241 +S'isabella' +p243243 +tp243244 +a(g243241 +g243243 +S"d'este's" +p243245 +tp243246 +a(g243243 +g243245 +S'private' +p243247 +tp243248 +a(g243245 +g243247 +S'study.' +p243249 +tp243250 +a(g243247 +g243249 +S'the' +p243251 +tp243252 +a(g243249 +g243251 +S'artist' +p243253 +tp243254 +a(g243251 +g243253 +S'probably' +p243255 +tp243256 +a(g243253 +g243255 +S'borrowed' +p243257 +tp243258 +a(g243255 +g243257 +S'some' +p243259 +tp243260 +a(g243257 +g243259 +S'of' +p243261 +tp243262 +a(g243259 +g243261 +S'the' +p243263 +tp243264 +a(g243261 +g243263 +S'specific' +p243265 +tp243266 +a(g243263 +g243265 +S'motifs' +p243267 +tp243268 +a(g243265 +g243267 +S'in' +p243269 +tp243270 +a(g243267 +g243269 +S'the' +p243271 +tp243272 +a(g243269 +g243271 +S'engraving' +p243273 +tp243274 +a(g243271 +g243273 +S'from' +p243275 +tp243276 +a(g243273 +g243275 +S'a' +p243277 +tp243278 +a(g243275 +g243277 +S'fragmentary' +p243279 +tp243280 +a(g243277 +g243279 +S'ancient' +p243281 +tp243282 +a(g243279 +g243281 +S'relief' +p243283 +tp243284 +a(g243281 +g243283 +S'now' +p243285 +tp243286 +a(g243283 +g243285 +S'in' +p243287 +tp243288 +a(g243285 +g243287 +S'the' +p243289 +tp243290 +a(g243287 +g243289 +S'villa' +p243291 +tp243292 +a(g243289 +g243291 +S'medici' +p243293 +tp243294 +a(g243291 +g243293 +S'in' +p243295 +tp243296 +a(g243293 +g243295 +S'rome.' +p243297 +tp243298 +a(g243295 +g243297 +S'the' +p243299 +tp243300 +a(g243297 +g243299 +S'bold' +p243301 +tp243302 +a(g243299 +g243301 +S'foreshortenings' +p243303 +tp243304 +a(g243301 +g243303 +S'of' +p243305 +tp243306 +a(g243303 +g243305 +S'the' +p243307 +tp243308 +a(g243305 +g243307 +S'forms,' +p243309 +tp243310 +a(g243307 +g243309 +S'the' +p243311 +tp243312 +a(g243309 +g243311 +S'forceful' +p243313 +tp243314 +a(g243311 +g243313 +S'movement' +p243315 +tp243316 +a(g243313 +g243315 +S'of' +p243317 +tp243318 +a(g243315 +g243317 +S'the' +p243319 +tp243320 +a(g243317 +g243319 +S'figures,' +p243321 +tp243322 +a(g243319 +g243321 +S'and' +p243323 +tp243324 +a(g243321 +g243323 +S'the' +p243325 +tp243326 +a(g243323 +g243325 +S'sophisticated' +p243327 +tp243328 +a(g243325 +g243327 +S'light' +p243329 +tp243330 +a(g243327 +g243329 +S'created' +p243331 +tp243332 +a(g243329 +g243331 +S'by' +p243333 +tp243334 +a(g243331 +g243333 +S'the' +p243335 +tp243336 +a(g243333 +g243335 +S'subtle' +p243337 +tp243338 +a(g243335 +g243337 +S'gradations' +p243339 +tp243340 +a(g243337 +g243339 +S'of' +p243341 +tp243342 +a(g243339 +g243341 +S'tone' +p243343 +tp243344 +a(g243341 +g243343 +S'indicate' +p243345 +tp243346 +a(g243343 +g243345 +S'that' +p243347 +tp243348 +a(g243345 +g243347 +S'this' +p243349 +tp243350 +a(g243347 +g243349 +S'is' +p243351 +tp243352 +a(g243349 +g243351 +S'a' +p243353 +tp243354 +a(g243351 +g243353 +S'fully' +p243355 +tp243356 +a(g243353 +g243355 +S'mature' +p243357 +tp243358 +a(g243355 +g243357 +S'invention' +p243359 +tp243360 +a(g243357 +g243359 +S'by' +p243361 +tp243362 +a(g243359 +g243361 +S'mantegna.' +p243363 +tp243364 +a(g243361 +g243363 +S'in' +p243365 +tp243366 +a(g243363 +g243365 +S'1881' +p243367 +tp243368 +a(g243365 +g243367 +S'winslow' +p243369 +tp243370 +a(g243367 +g243369 +S'homer' +p243371 +tp243372 +a(g243369 +g243371 +S'began' +p243373 +tp243374 +a(g243371 +g243373 +S'a' +p243375 +tp243376 +a(g243373 +g243375 +S'series' +p243377 +tp243378 +a(g243375 +g243377 +S'of' +p243379 +tp243380 +a(g243377 +g243379 +S'although' +p243381 +tp243382 +a(g243379 +g243381 +S'large' +p243383 +tp243384 +a(g243381 +g243383 +S'steam' +p243385 +tp243386 +a(g243383 +g243385 +S'trawlers' +p243387 +tp243388 +a(g243385 +g243387 +S'had' +p243389 +tp243390 +a(g243387 +g243389 +S'begun' +p243391 +tp243392 +a(g243389 +g243391 +S'to' +p243393 +tp243394 +a(g243391 +g243393 +S'replace' +p243395 +tp243396 +a(g243393 +g243395 +S'smaller' +p243397 +tp243398 +a(g243395 +g243397 +S'boats' +p243399 +tp243400 +a(g243397 +g243399 +S'as' +p243401 +tp243402 +a(g243399 +g243401 +S'fishing' +p243403 +tp243404 +a(g243401 +g243403 +S'craft' +p243405 +tp243406 +a(g243403 +g243405 +S'in' +p243407 +tp243408 +a(g243405 +g243407 +S'cullercoats,' +p243409 +tp243410 +a(g243407 +g243409 +S'homer' +p243411 +tp243412 +a(g243409 +g243411 +S'preferred' +p243413 +tp243414 +a(g243411 +g243413 +S'to' +p243415 +tp243416 +a(g243413 +g243415 +S'focus' +p243417 +tp243418 +a(g243415 +g243417 +S'on' +p243419 +tp243420 +a(g243417 +g243419 +S'the' +p243421 +tp243422 +a(g243419 +g243421 +S'old' +p243423 +tp243424 +a(g243421 +g243423 +S'ways.' +p243425 +tp243426 +a(g243423 +g243425 +S'in' +p243427 +tp243428 +a(g243425 +g243427 +S'the' +p243429 +tp243430 +a(g243427 +g243429 +S'composition' +p243431 +tp243432 +a(g243429 +g243431 +S'suggests' +p243433 +tp243434 +a(g243431 +g243433 +S'homer’s' +p243435 +tp243436 +a(g243433 +g243435 +S'familiarity' +p243437 +tp243438 +a(g243435 +g243437 +S'with' +p243439 +tp243440 +a(g243437 +g243439 +S'classical' +p243441 +tp243442 +a(g243439 +g243441 +S'sculpture.' +p243443 +tp243444 +a(g243441 +g243443 +S'the' +p243445 +tp243446 +a(g243443 +g243445 +S'overlapping' +p243447 +tp243448 +a(g243445 +g243447 +S'figures' +p243449 +tp243450 +a(g243447 +g243449 +S'of' +p243451 +tp243452 +a(g243449 +g243451 +S'the' +p243453 +tp243454 +a(g243451 +g243453 +S'women' +p243455 +tp243456 +a(g243453 +g243455 +S'create' +p243457 +tp243458 +a(g243455 +g243457 +S'a' +p243459 +tp243460 +a(g243457 +g243459 +S'compact' +p243461 +tp243462 +a(g243459 +g243461 +S'group' +p243463 +tp243464 +a(g243461 +g243463 +S'in' +p243465 +tp243466 +a(g243463 +g243465 +S'a' +p243467 +tp243468 +a(g243465 +g243467 +S'relatively' +p243469 +tp243470 +a(g243467 +g243469 +S'shallow' +p243471 +tp243472 +a(g243469 +g243471 +S'space,' +p243473 +tp243474 +a(g243471 +g243473 +S'recalling' +p243475 +tp243476 +a(g243473 +g243475 +S'hans' +p243477 +tp243478 +a(g243475 +g243477 +S'mielich' +p243479 +tp243480 +a(g243477 +g243479 +S'was' +p243481 +tp243482 +a(g243479 +g243481 +S'the' +p243483 +tp243484 +a(g243481 +g243483 +S'leading' +p243485 +tp243486 +a(g243483 +g243485 +S'painter' +p243487 +tp243488 +a(g243485 +g243487 +S'in' +p243489 +tp243490 +a(g243487 +g243489 +S'bavaria' +p243491 +tp243492 +a(g243489 +g243491 +S'in' +p243493 +tp243494 +a(g243491 +g243493 +S'the' +p243495 +tp243496 +a(g243493 +g243495 +S'mid-sixteenth' +p243497 +tp243498 +a(g243495 +g243497 +S'century.' +p243499 +tp243500 +a(g243497 +g243499 +S'his' +p243501 +tp243502 +a(g243499 +g243501 +S'art' +p243503 +tp243504 +a(g243501 +g243503 +S'was' +p243505 +tp243506 +a(g243503 +g243505 +S'greatly' +p243507 +tp243508 +a(g243505 +g243507 +S'influenced' +p243509 +tp243510 +a(g243507 +g243509 +S'by' +p243511 +tp243512 +a(g243509 +g243511 +S'albrecht' +p243513 +tp243514 +a(g243511 +g243513 +S'altdorfer' +p243515 +tp243516 +a(g243513 +g243515 +S'with' +p243517 +tp243518 +a(g243515 +g243517 +S'whom' +p243519 +tp243520 +a(g243517 +g243519 +S'he' +p243521 +tp243522 +a(g243519 +g243521 +S'worked' +p243523 +tp243524 +a(g243521 +g243523 +S'in' +p243525 +tp243526 +a(g243523 +g243525 +S'regensburg' +p243527 +tp243528 +a(g243525 +g243527 +S'from' +p243529 +tp243530 +a(g243527 +g243529 +S'about' +p243531 +tp243532 +a(g243529 +g243531 +S'1536' +p243533 +tp243534 +a(g243531 +g243533 +S'to' +p243535 +tp243536 +a(g243533 +g243535 +S'1538.' +p243537 +tp243538 +a(g243535 +g243537 +S'after' +p243539 +tp243540 +a(g243537 +g243539 +S'a' +p243541 +tp243542 +a(g243539 +g243541 +S'trip' +p243543 +tp243544 +a(g243541 +g243543 +S'to' +p243545 +tp243546 +a(g243543 +g243545 +S'rome' +p243547 +tp243548 +a(g243545 +g243547 +S'in' +p243549 +tp243550 +a(g243547 +g243549 +S'1542,' +p243551 +tp243552 +a(g243549 +g243551 +S'mielich' +p243553 +tp243554 +a(g243551 +g243553 +S'settled' +p243555 +tp243556 +a(g243553 +g243555 +S'in' +p243557 +tp243558 +a(g243555 +g243557 +S'his' +p243559 +tp243560 +a(g243557 +g243559 +S'native' +p243561 +tp243562 +a(g243559 +g243561 +S'munich,' +p243563 +tp243564 +a(g243561 +g243563 +S'becoming' +p243565 +tp243566 +a(g243563 +g243565 +S'court' +p243567 +tp243568 +a(g243565 +g243567 +S'painter' +p243569 +tp243570 +a(g243567 +g243569 +S'to' +p243571 +tp243572 +a(g243569 +g243571 +S'albrecht' +p243573 +tp243574 +a(g243571 +g243573 +S'v,' +p243575 +tp243576 +a(g243573 +g243575 +S'the' +p243577 +tp243578 +a(g243575 +g243577 +S'duke' +p243579 +tp243580 +a(g243577 +g243579 +S'of' +p243581 +tp243582 +a(g243579 +g243581 +S'bavaria.' +p243583 +tp243584 +a(g243581 +g243583 +S'this' +p243585 +tp243586 +a(g243583 +g243585 +S"sitter's" +p243587 +tp243588 +a(g243585 +g243587 +S'identification' +p243589 +tp243590 +a(g243587 +g243589 +S'with' +p243591 +tp243592 +a(g243589 +g243591 +S'the' +p243593 +tp243594 +a(g243591 +g243593 +S'fröchl' +p243595 +tp243596 +a(g243593 +g243595 +S'family' +p243597 +tp243598 +a(g243595 +g243597 +S'derives' +p243599 +tp243600 +a(g243597 +g243599 +S'from' +p243601 +tp243602 +a(g243599 +g243601 +S'the' +p243603 +tp243604 +a(g243601 +g243603 +S'presence' +p243605 +tp243606 +a(g243603 +g243605 +S'of' +p243607 +tp243608 +a(g243605 +g243607 +S'their' +p243609 +tp243610 +a(g243607 +g243609 +S'coat-of-arms' +p243611 +tp243612 +a(g243609 +g243611 +S'painted' +p243613 +tp243614 +a(g243611 +g243613 +S'on' +p243615 +tp243616 +a(g243613 +g243615 +S'the' +p243617 +tp243618 +a(g243615 +g243617 +S'reverse' +p243619 +tp243620 +a(g243617 +g243619 +S'of' +p243621 +tp243622 +a(g243619 +g243621 +S'the' +p243623 +tp243624 +a(g243621 +g243623 +S'panel.' +p243625 +tp243626 +a(g243623 +g243625 +S'the' +p243627 +tp243628 +a(g243625 +g243627 +S'man' +p243629 +tp243630 +a(g243627 +g243629 +S'might' +p243631 +tp243632 +a(g243629 +g243631 +S'jakob' +p243633 +tp243634 +a(g243631 +g243633 +S'fröschl' +p243635 +tp243636 +a(g243633 +g243635 +S'of' +p243637 +tp243638 +a(g243635 +g243637 +S'wasserburg.' +p243639 +tp243640 +a(g243637 +g243639 +S'a' +p243641 +tp243642 +a(g243639 +g243641 +S'grain' +p243643 +tp243644 +a(g243641 +g243643 +S'merchant' +p243645 +tp243646 +a(g243643 +g243645 +S'and' +p243647 +tp243648 +a(g243645 +g243647 +S'city' +p243649 +tp243650 +a(g243647 +g243649 +S'councilor' +p243651 +tp243652 +a(g243649 +g243651 +S'in' +p243653 +tp243654 +a(g243651 +g243653 +S'wasserburg,' +p243655 +tp243656 +a(g243653 +g243655 +S'he' +p243657 +tp243658 +a(g243655 +g243657 +S'married' +p243659 +tp243660 +a(g243657 +g243659 +S'in' +p243661 +tp243662 +a(g243659 +g243661 +S'1539,' +p243663 +tp243664 +a(g243661 +g243663 +S'and' +p243665 +tp243666 +a(g243663 +g243665 +S'thus' +p243667 +tp243668 +a(g243665 +g243667 +S'this' +p243669 +tp243670 +a(g243667 +g243669 +S'may' +p243671 +tp243672 +a(g243669 +g243671 +S'be' +p243673 +tp243674 +a(g243671 +g243673 +S'his' +p243675 +tp243676 +a(g243673 +g243675 +S'wedding' +p243677 +tp243678 +a(g243675 +g243677 +S'portrait.' +p243679 +tp243680 +a(g243677 +g243679 +S'the' +p243681 +tp243682 +a(g243679 +g243681 +S"sitter's" +p243683 +tp243684 +a(g243681 +g243683 +S'large' +p243685 +tp243686 +a(g243683 +g243685 +S'scale,' +p243687 +tp243688 +a(g243685 +g243687 +S'dignified' +p243689 +tp243690 +a(g243687 +g243689 +S'bearing,' +p243691 +tp243692 +a(g243689 +g243691 +S'and' +p243693 +tp243694 +a(g243691 +g243693 +S'richly' +p243695 +tp243696 +a(g243693 +g243695 +S'decorated' +p243697 +tp243698 +a(g243695 +g243697 +S'padded' +p243699 +tp243700 +a(g243697 +g243699 +S'black' +p243701 +tp243702 +a(g243699 +g243701 +S'jacket' +p243703 +tp243704 +a(g243701 +g243703 +S'all' +p243705 +tp243706 +a(g243703 +g243705 +S'suggest' +p243707 +tp243708 +a(g243705 +g243707 +S'someone' +p243709 +tp243710 +a(g243707 +g243709 +S'of' +p243711 +tp243712 +a(g243709 +g243711 +S'great' +p243713 +tp243714 +a(g243711 +g243713 +S'power' +p243715 +tp243716 +a(g243713 +g243715 +S'and' +p243717 +tp243718 +a(g243715 +g243717 +S'importance.' +p243719 +tp243720 +a(g243717 +g243719 +S'in' +p243721 +tp243722 +a(g243719 +g243721 +S'the' +p243723 +tp243724 +a(g243721 +g243723 +S'background,' +p243725 +tp243726 +a(g243723 +g243725 +S'visible' +p243727 +tp243728 +a(g243725 +g243727 +S'through' +p243729 +tp243730 +a(g243727 +g243729 +S'the' +p243731 +tp243732 +a(g243729 +g243731 +S'wood-trimmed' +p243733 +tp243734 +a(g243731 +g243733 +S'window,' +p243735 +tp243736 +a(g243733 +g243735 +S'is' +p243737 +tp243738 +a(g243735 +g243737 +S'a' +p243739 +tp243740 +a(g243737 +g243739 +S'landscape' +p243741 +tp243742 +a(g243739 +g243741 +S'with' +p243743 +tp243744 +a(g243741 +g243743 +S'trees,' +p243745 +tp243746 +a(g243743 +g243745 +S'a' +p243747 +tp243748 +a(g243745 +g243747 +S'house,' +p243749 +tp243750 +a(g243747 +g243749 +S'and' +p243751 +tp243752 +a(g243749 +g243751 +S'a' +p243753 +tp243754 +a(g243751 +g243753 +S'man' +p243755 +tp243756 +a(g243753 +g243755 +S'and' +p243757 +tp243758 +a(g243755 +g243757 +S'a' +p243759 +tp243760 +a(g243757 +g243759 +S'horse' +p243761 +tp243762 +a(g243759 +g243761 +S'plowing.' +p243763 +tp243764 +a(g243761 +g243763 +S'clearly,' +p243765 +tp243766 +a(g243763 +g243765 +S'the' +p243767 +tp243768 +a(g243765 +g243767 +S'man' +p243769 +tp243770 +a(g243767 +g243769 +S'was' +p243771 +tp243772 +a(g243769 +g243771 +S'a' +p243773 +tp243774 +a(g243771 +g243773 +S'substantial' +p243775 +tp243776 +a(g243773 +g243775 +S'landowner' +p243777 +tp243778 +a(g243775 +g243777 +S'as' +p243779 +tp243780 +a(g243777 +g243779 +S'well.' +p243781 +tp243782 +a(g243779 +g243781 +S'beyond' +p243783 +tp243784 +a(g243781 +g243783 +S'its' +p243785 +tp243786 +a(g243783 +g243785 +S'representational' +p243787 +tp243788 +a(g243785 +g243787 +S'fascination,' +p243789 +tp243790 +a(g243787 +g243789 +S'the' +p243791 +tp243792 +a(g243789 +g243791 +S'portrait' +p243793 +tp243794 +a(g243791 +g243793 +S'is' +p243795 +tp243796 +a(g243793 +g243795 +S'a' +p243797 +tp243798 +a(g243795 +g243797 +S'wonderful' +p243799 +tp243800 +a(g243797 +g243799 +S'study' +p243801 +tp243802 +a(g243799 +g243801 +S'in' +p243803 +tp243804 +a(g243801 +g243803 +S'the' +p243805 +tp243806 +a(g243803 +g243805 +S'abstract' +p243807 +tp243808 +a(g243805 +g243807 +S'interplay' +p243809 +tp243810 +a(g243807 +g243809 +S'of' +p243811 +tp243812 +a(g243809 +g243811 +S'pattern,' +p243813 +tp243814 +a(g243811 +g243813 +S'form,' +p243815 +tp243816 +a(g243813 +g243815 +S'and' +p243817 +tp243818 +a(g243815 +g243817 +S'outline.' +p243819 +tp243820 +a(g243817 +g243819 +S'the' +p243821 +tp243822 +a(g243819 +g243821 +S'massive,' +p243823 +tp243824 +a(g243821 +g243823 +S'simple' +p243825 +tp243826 +a(g243823 +g243825 +S'expanse' +p243827 +tp243828 +a(g243825 +g243827 +S'of' +p243829 +tp243830 +a(g243827 +g243829 +S'the' +p243831 +tp243832 +a(g243829 +g243831 +S'black' +p243833 +tp243834 +a(g243831 +g243833 +S'jacket' +p243835 +tp243836 +a(g243833 +g243835 +S'contrasts' +p243837 +tp243838 +a(g243835 +g243837 +S'with' +p243839 +tp243840 +a(g243837 +g243839 +S'the' +p243841 +tp243842 +a(g243839 +g243841 +S'intricately' +p243843 +tp243844 +a(g243841 +g243843 +S'marbleized' +p243845 +tp243846 +a(g243843 +g243845 +S'decor' +p243847 +tp243848 +a(g243845 +g243847 +S'of' +p243849 +tp243850 +a(g243847 +g243849 +S'the' +p243851 +tp243852 +a(g243849 +g243851 +S'wall' +p243853 +tp243854 +a(g243851 +g243853 +S'which,' +p243855 +tp243856 +a(g243853 +g243855 +S'in' +p243857 +tp243858 +a(g243855 +g243857 +S'turn,' +p243859 +tp243860 +a(g243857 +g243859 +S'mimics' +p243861 +tp243862 +a(g243859 +g243861 +S'the' +p243863 +tp243864 +a(g243861 +g243863 +S'irregular' +p243865 +tp243866 +a(g243863 +g243865 +S'configurations' +p243867 +tp243868 +a(g243865 +g243867 +S'of' +p243869 +tp243870 +a(g243867 +g243869 +S'the' +p243871 +tp243872 +a(g243869 +g243871 +S'trees.' +p243873 +tp243874 +a(g243871 +g243873 +S'like' +p243875 +tp243876 +a(g243873 +g243875 +S'the' +p243877 +tp243878 +a(g243875 +g243877 +S'somewhat' +p243879 +tp243880 +a(g243877 +g243879 +S'older' +p243881 +tp243882 +a(g243879 +g243881 +S'rosso' +p243883 +tp243884 +a(g243881 +g243883 +S'and' +p243885 +tp243886 +a(g243883 +g243885 +S'pontormo,' +p243887 +tp243888 +a(g243885 +g243887 +S'jacopino' +p243889 +tp243890 +a(g243887 +g243889 +S'was' +p243891 +tp243892 +a(g243889 +g243891 +S'probably' +p243893 +tp243894 +a(g243891 +g243893 +S'a' +p243895 +tp243896 +a(g243893 +g243895 +S'student' +p243897 +tp243898 +a(g243895 +g243897 +S'of' +p243899 +tp243900 +a(g243897 +g243899 +S'andrea' +p243901 +tp243902 +a(g243899 +g243901 +S'del' +p243903 +tp243904 +a(g243901 +g243903 +S'sarto.' +p243905 +tp243906 +a(g243903 +g243905 +S'his' +p243907 +tp243908 +a(g243905 +g243907 +S'earliest' +p243909 +tp243910 +a(g243907 +g243909 +S'works' +p243911 +tp243912 +a(g243909 +g243911 +S'essentially' +p243913 +tp243914 +a(g243911 +g243913 +S'paraphrased' +p243915 +tp243916 +a(g243913 +g243915 +S'his' +p243917 +tp243918 +a(g243915 +g243917 +S'teacher’s' +p243919 +tp243920 +a(g243917 +g243919 +S'compositions,' +p243921 +tp243922 +a(g243919 +g243921 +S'but' +p243923 +tp243924 +a(g243921 +g243923 +S'here' +p243925 +tp243926 +a(g243923 +g243925 +S'newer' +p243927 +tp243928 +a(g243925 +g243927 +S'influences' +p243929 +tp243930 +a(g243927 +g243929 +S'are' +p243931 +tp243932 +a(g243929 +g243931 +S'evident.' +p243933 +tp243934 +a(g243931 +g243933 +S'a' +p243935 +tp243936 +a(g243933 +g243935 +S'hint' +p243937 +tp243938 +a(g243935 +g243937 +S'of' +p243939 +tp243940 +a(g243937 +g243939 +S'pontormo’s' +p243941 +tp243942 +a(g243939 +g243941 +S'style' +p243943 +tp243944 +a(g243941 +g243943 +S'emerges' +p243945 +tp243946 +a(g243943 +g243945 +S'in' +p243947 +tp243948 +a(g243945 +g243947 +S'the' +p243949 +tp243950 +a(g243947 +g243949 +S'longer,' +p243951 +tp243952 +a(g243949 +g243951 +S'more' +p243953 +tp243954 +a(g243951 +g243953 +S'elegant' +p243955 +tp243956 +a(g243953 +g243955 +S'proportions' +p243957 +tp243958 +a(g243955 +g243957 +S'of' +p243959 +tp243960 +a(g243957 +g243959 +S'the' +p243961 +tp243962 +a(g243959 +g243961 +S'figures' +p243963 +tp243964 +a(g243961 +g243963 +S'and' +p243965 +tp243966 +a(g243963 +g243965 +S'in' +p243967 +tp243968 +a(g243965 +g243967 +S'the' +p243969 +tp243970 +a(g243967 +g243969 +S'hard,' +p243971 +tp243972 +a(g243969 +g243971 +S'polished' +p243973 +tp243974 +a(g243971 +g243973 +S'color.' +p243975 +tp243976 +a(g243973 +g243975 +S'furthermore,' +p243977 +tp243978 +a(g243975 +g243977 +S'the' +p243979 +tp243980 +a(g243977 +g243979 +S'figures’' +p243981 +tp243982 +a(g243979 +g243981 +S'monumental' +p243983 +tp243984 +a(g243981 +g243983 +S'scale' +p243985 +tp243986 +a(g243983 +g243985 +S'and' +p243987 +tp243988 +a(g243985 +g243987 +S'almost' +p243989 +tp243990 +a(g243987 +g243989 +S'sculptural' +p243991 +tp243992 +a(g243989 +g243991 +S'mass' +p243993 +tp243994 +a(g243991 +g243993 +S'signal' +p243995 +tp243996 +a(g243993 +g243995 +S'michelangelo’s' +p243997 +tp243998 +a(g243995 +g243997 +S'influence.' +p243999 +tp244000 +a(g243997 +g243999 +S'images' +p244001 +tp244002 +a(g243999 +g244001 +S'of' +p244003 +tp244004 +a(g244001 +g244003 +S'the' +p244005 +tp244006 +a(g244003 +g244005 +S'virgin' +p244007 +tp244008 +a(g244005 +g244007 +S'and' +p244009 +tp244010 +a(g244007 +g244009 +S'child' +p244011 +tp244012 +a(g244009 +g244011 +S'with' +p244013 +tp244014 +a(g244011 +g244013 +S'john' +p244015 +tp244016 +a(g244013 +g244015 +S'the' +p244017 +tp244018 +a(g244015 +g244017 +S'baptist' +p244019 +tp244020 +a(g244017 +g244019 +S'and' +p244021 +tp244022 +a(g244019 +g244021 +S'his' +p244023 +tp244024 +a(g244021 +g244023 +S'mother' +p244025 +tp244026 +a(g244023 +g244025 +S'elizabeth' +p244027 +tp244028 +a(g244025 +g244027 +S'were' +p244029 +tp244030 +a(g244027 +g244029 +S'popular' +p244031 +tp244032 +a(g244029 +g244031 +S'in' +p244033 +tp244034 +a(g244031 +g244033 +S'sixteenth-century' +p244035 +tp244036 +a(g244033 +g244035 +S'florence.' +p244037 +tp244038 +a(g244035 +g244037 +S'here,' +p244039 +tp244040 +a(g244037 +g244039 +S'many' +p244041 +tp244042 +a(g244039 +g244041 +S'elements' +p244043 +tp244044 +a(g244041 +g244043 +S'of' +p244045 +tp244046 +a(g244043 +g244045 +S'the' +p244047 +tp244048 +a(g244045 +g244047 +S'composition' +p244049 +tp244050 +a(g244047 +g244049 +S'play' +p244051 +tp244052 +a(g244049 +g244051 +S'a' +p244053 +tp244054 +a(g244051 +g244053 +S'symbolic' +p244055 +tp244056 +a(g244053 +g244055 +S'role' +p244057 +tp244058 +a(g244055 +g244057 +S'to' +p244059 +tp244060 +a(g244057 +g244059 +S'extend' +p244061 +tp244062 +a(g244059 +g244061 +S'the' +p244063 +tp244064 +a(g244061 +g244063 +S'scene’s' +p244065 +tp244066 +a(g244063 +g244065 +S'meaning.' +p244067 +tp244068 +a(g244065 +g244067 +S'the' +p244069 +tp244070 +a(g244067 +g244069 +S'cloth,' +p244071 +tp244072 +a(g244069 +g244071 +S'just' +p244073 +tp244074 +a(g244071 +g244073 +S'warmed' +p244075 +tp244076 +a(g244073 +g244075 +S'over' +p244077 +tp244078 +a(g244075 +g244077 +S'the' +p244079 +tp244080 +a(g244077 +g244079 +S'brazier,' +p244081 +tp244082 +a(g244079 +g244081 +S'foreshadows' +p244083 +tp244084 +a(g244081 +g244083 +S'jesus’' +p244085 +tp244086 +a(g244083 +g244085 +S'burial' +p244087 +tp244088 +a(g244085 +g244087 +S'shroud,' +p244089 +tp244090 +a(g244087 +g244089 +S'and' +p244091 +tp244092 +a(g244089 +g244091 +S'the' +p244093 +tp244094 +a(g244091 +g244093 +S'cradle' +p244095 +tp244096 +a(g244093 +g244095 +S'at' +p244097 +tp244098 +a(g244095 +g244097 +S'mary’s' +p244099 +tp244100 +a(g244097 +g244099 +S'feet,' +p244101 +tp244102 +a(g244099 +g244101 +S'his' +p244103 +tp244104 +a(g244101 +g244103 +S'tomb.' +p244105 +tp244106 +a(g244103 +g244105 +S'the' +p244107 +tp244108 +a(g244105 +g244107 +S'unseen' +p244109 +tp244110 +a(g244107 +g244109 +S'future,' +p244111 +tp244112 +a(g244109 +g244111 +S'with' +p244113 +tp244114 +a(g244111 +g244113 +S'christ’s' +p244115 +tp244116 +a(g244113 +g244115 +S'passion' +p244117 +tp244118 +a(g244115 +g244117 +S'and' +p244119 +tp244120 +a(g244117 +g244119 +S'its' +p244121 +tp244122 +a(g244119 +g244121 +S'promise' +p244123 +tp244124 +a(g244121 +g244123 +S'of' +p244125 +tp244126 +a(g244123 +g244125 +S'mankind’s' +p244127 +tp244128 +a(g244125 +g244127 +S'salvation,' +p244129 +tp244130 +a(g244127 +g244129 +S'is' +p244131 +tp244132 +a(g244129 +g244131 +S'expressed' +p244133 +tp244134 +a(g244131 +g244133 +S'in' +p244135 +tp244136 +a(g244133 +g244135 +S'these' +p244137 +tp244138 +a(g244135 +g244137 +S'signals' +p244139 +tp244140 +a(g244137 +g244139 +S'and' +p244141 +tp244142 +a(g244139 +g244141 +S'the' +p244143 +tp244144 +a(g244141 +g244143 +S'linked' +p244145 +tp244146 +a(g244143 +g244145 +S'gestures' +p244147 +tp244148 +a(g244145 +g244147 +S'of' +p244149 +tp244150 +a(g244147 +g244149 +S'the' +p244151 +tp244152 +a(g244149 +g244151 +S'figures.' +p244153 +tp244154 +a(g244151 +g244153 +S'the' +p244155 +tp244156 +a(g244153 +g244155 +S'subject,' +p244157 +tp244158 +a(g244155 +g244157 +S'abigail' +p244159 +tp244160 +a(g244157 +g244159 +S'smith' +p244161 +tp244162 +a(g244159 +g244161 +S'(1744-1777),' +p244163 +tp244164 +a(g244161 +g244163 +S'was' +p244165 +tp244166 +a(g244163 +g244165 +S'the' +p244167 +tp244168 +a(g244165 +g244167 +S'wife' +p244169 +tp244170 +a(g244167 +g244169 +S'of' +p244171 +tp244172 +a(g244169 +g244171 +S'a' +p244173 +tp244174 +a(g244171 +g244173 +S'wealthy' +p244175 +tp244176 +a(g244173 +g244175 +S'new' +p244177 +tp244178 +a(g244175 +g244177 +S'haven,' +p244179 +tp244180 +a(g244177 +g244179 +S'connecticut,' +p244181 +tp244182 +a(g244179 +g244181 +S'shipowner.' +p244183 +tp244184 +a(g244181 +g244183 +S'mrs.' +p244185 +tp244186 +a(g244183 +g244185 +S'babcock' +p244187 +tp244188 +a(g244185 +g244187 +S'appears' +p244189 +tp244190 +a(g244187 +g244189 +S'regal' +p244191 +tp244192 +a(g244189 +g244191 +S'in' +p244193 +tp244194 +a(g244191 +g244193 +S'her' +p244195 +tp244196 +a(g244193 +g244195 +S'ermine-lined' +p244197 +tp244198 +a(g244195 +g244197 +S'cape' +p244199 +tp244200 +a(g244197 +g244199 +S'and' +p244201 +tp244202 +a(g244199 +g244201 +S'pearl-studded' +p244203 +tp244204 +a(g244201 +g244203 +S'girdle.' +p244205 +tp244206 +a(g244203 +g244205 +S'her' +p244207 +tp244208 +a(g244205 +g244207 +S'portrait' +p244209 +tp244210 +a(g244207 +g244209 +S'is' +p244211 +tp244212 +a(g244209 +g244211 +S'possibly' +p244213 +tp244214 +a(g244211 +g244213 +S'copley’s' +p244215 +tp244216 +a(g244213 +g244215 +S'last' +p244217 +tp244218 +a(g244215 +g244217 +S'american' +p244219 +tp244220 +a(g244217 +g244219 +S'work,' +p244221 +tp244222 +a(g244219 +g244221 +S'finished' +p244223 +tp244224 +a(g244221 +g244223 +S'just' +p244225 +tp244226 +a(g244223 +g244225 +S'before' +p244227 +tp244228 +a(g244225 +g244227 +S'he' +p244229 +tp244230 +a(g244227 +g244229 +S'left' +p244231 +tp244232 +a(g244229 +g244231 +S'for' +p244233 +tp244234 +a(g244231 +g244233 +S'europe,' +p244235 +tp244236 +a(g244233 +g244235 +S'never' +p244237 +tp244238 +a(g244235 +g244237 +S'to' +p244239 +tp244240 +a(g244237 +g244239 +S'return.' +p244241 +tp244242 +a(g244239 +g244241 +S'the' +p244243 +tp244244 +a(g244241 +g244243 +S'three' +p244245 +tp244246 +a(g244243 +g244245 +S'ships' +p244247 +tp244248 +a(g244245 +g244247 +S'in' +p244249 +tp244250 +a(g244247 +g244249 +S'this' +p244251 +tp244252 +a(g244249 +g244251 +S'large' +p244253 +tp244254 +a(g244251 +g244253 +S'painting' +p244255 +tp244256 +a(g244253 +g244255 +S'are' +p244257 +tp244258 +a(g244255 +g244257 +S'the' +p244259 +tp244260 +a(g244257 +g244259 +S'wide-bellied,' +p244261 +tp244262 +a(g244259 +g244261 +S'seagoing' +p244263 +tp244264 +a(g244261 +g244263 +S'vessels' +p244265 +tp244266 +a(g244263 +g244265 +S'that' +p244267 +tp244268 +a(g244265 +g244267 +S'transported' +p244269 +tp244270 +a(g244267 +g244269 +S'much' +p244271 +tp244272 +a(g244269 +g244271 +S'of' +p244273 +tp244274 +a(g244271 +g244273 +S'holland’s' +p244275 +tp244276 +a(g244273 +g244275 +S'mercantile' +p244277 +tp244278 +a(g244275 +g244277 +S'cargo.' +p244279 +tp244280 +a(g244277 +g244279 +S'they' +p244281 +tp244282 +a(g244279 +g244281 +S'display' +p244283 +tp244284 +a(g244281 +g244283 +S'the' +p244285 +tp244286 +a(g244283 +g244285 +S'dutch' +p244287 +tp244288 +a(g244285 +g244287 +S'flag' +p244289 +tp244290 +a(g244287 +g244289 +S'of' +p244291 +tp244292 +a(g244289 +g244291 +S'orange,' +p244293 +tp244294 +a(g244291 +g244293 +S'white,' +p244295 +tp244296 +a(g244293 +g244295 +S'and' +p244297 +tp244298 +a(g244295 +g244297 +S'blue.' +p244299 +tp244300 +a(g244297 +g244299 +S'these' +p244301 +tp244302 +a(g244299 +g244301 +S'symbols' +p244303 +tp244304 +a(g244301 +g244303 +S'of' +p244305 +tp244306 +a(g244303 +g244305 +S'national' +p244307 +tp244308 +a(g244305 +g244307 +S'optimism,' +p244309 +tp244310 +a(g244307 +g244309 +S'however,' +p244311 +tp244312 +a(g244309 +g244311 +S'are' +p244313 +tp244314 +a(g244311 +g244313 +S'in' +p244315 +tp244316 +a(g244313 +g244315 +S'peril' +p244317 +tp244318 +a(g244315 +g244317 +S'of' +p244319 +tp244320 +a(g244317 +g244319 +S'crashing' +p244321 +tp244322 +a(g244319 +g244321 +S'against' +p244323 +tp244324 +a(g244321 +g244323 +S'rocks' +p244325 +tp244326 +a(g244323 +g244325 +S'during' +p244327 +tp244328 +a(g244325 +g244327 +S'a' +p244329 +tp244330 +a(g244327 +g244329 +S'storm.' +p244331 +tp244332 +a(g244329 +g244331 +S'each' +p244333 +tp244334 +a(g244331 +g244333 +S'ship' +p244335 +tp244336 +a(g244333 +g244335 +S'has' +p244337 +tp244338 +a(g244335 +g244337 +S'a' +p244339 +tp244340 +a(g244337 +g244339 +S'broken' +p244341 +tp244342 +a(g244339 +g244341 +S'mast' +p244343 +tp244344 +a(g244341 +g244343 +S'and,' +p244345 +tp244346 +a(g244343 +g244345 +S'in' +p244347 +tp244348 +a(g244345 +g244347 +S'the' +p244349 +tp244350 +a(g244347 +g244349 +S'lower' +p244351 +tp244352 +a(g244349 +g244351 +S'right' +p244353 +tp244354 +a(g244351 +g244353 +S'foreground,' +p244355 +tp244356 +a(g244353 +g244355 +S'floating' +p244357 +tp244358 +a(g244355 +g244357 +S'wreckage' +p244359 +tp244360 +a(g244357 +g244359 +S'reveals' +p244361 +tp244362 +a(g244359 +g244361 +S'that' +p244363 +tp244364 +a(g244361 +g244363 +S'one' +p244365 +tp244366 +a(g244363 +g244365 +S'vessel' +p244367 +tp244368 +a(g244365 +g244367 +S'has' +p244369 +tp244370 +a(g244367 +g244369 +S'already' +p244371 +tp244372 +a(g244369 +g244371 +S'sunk.' +p244373 +tp244374 +a(g244371 +g244373 +S'amid' +p244375 +tp244376 +a(g244373 +g244375 +S'the' +p244377 +tp244378 +a(g244375 +g244377 +S'dark' +p244379 +tp244380 +a(g244377 +g244379 +S'gray' +p244381 +tp244382 +a(g244379 +g244381 +S'and' +p244383 +tp244384 +a(g244381 +g244383 +S'steely' +p244385 +tp244386 +a(g244383 +g244385 +S'blue' +p244387 +tp244388 +a(g244385 +g244387 +S'clouds' +p244389 +tp244390 +a(g244387 +g244389 +S'and' +p244391 +tp244392 +a(g244389 +g244391 +S'water,' +p244393 +tp244394 +a(g244391 +g244393 +S'the' +p244395 +tp244396 +a(g244393 +g244395 +S'sun’s' +p244397 +tp244398 +a(g244395 +g244397 +S'golden' +p244399 +tp244400 +a(g244397 +g244399 +S'rays' +p244401 +tp244402 +a(g244399 +g244401 +S'give' +p244403 +tp244404 +a(g244401 +g244403 +S'hope' +p244405 +tp244406 +a(g244403 +g244405 +S'that' +p244407 +tp244408 +a(g244405 +g244407 +S'calmer' +p244409 +tp244410 +a(g244407 +g244409 +S'weather' +p244411 +tp244412 +a(g244409 +g244411 +S'will' +p244413 +tp244414 +a(g244411 +g244413 +S'soon' +p244415 +tp244416 +a(g244413 +g244415 +S'return.' +p244417 +tp244418 +a(g244415 +g244417 +S'the' +p244419 +tp244420 +a(g244417 +g244419 +S'subject' +p244421 +tp244422 +a(g244419 +g244421 +S'may' +p244423 +tp244424 +a(g244421 +g244423 +S'be' +p244425 +tp244426 +a(g244423 +g244425 +S'considered' +p244427 +tp244428 +a(g244425 +g244427 +S'a' +p244429 +tp244430 +a(g244427 +g244429 +S'although' +p244431 +tp244432 +a(g244429 +g244431 +S'realistic' +p244433 +tp244434 +a(g244431 +g244433 +S'in' +p244435 +tp244436 +a(g244433 +g244435 +S'appearance,' +p244437 +tp244438 +a(g244435 +g244437 +S'the' +p244439 +tp244440 +a(g244437 +g244439 +S'painting' +p244441 +tp244442 +a(g244439 +g244441 +S'combines' +p244443 +tp244444 +a(g244441 +g244443 +S'imaginary' +p244445 +tp244446 +a(g244443 +g244445 +S'elements' +p244447 +tp244448 +a(g244445 +g244447 +S'that' +p244449 +tp244450 +a(g244447 +g244449 +S'backhuysen' +p244451 +tp244452 +a(g244449 +g244451 +S'often' +p244453 +tp244454 +a(g244451 +g244453 +S'used' +p244455 +tp244456 +a(g244453 +g244455 +S'in' +p244457 +tp244458 +a(g244455 +g244457 +S'his' +p244459 +tp244460 +a(g244457 +g244459 +S'theatrical' +p244461 +tp244462 +a(g244459 +g244461 +S'compositions.' +p244463 +tp244464 +a(g244461 +g244463 +S'complex' +p244465 +tp244466 +a(g244463 +g244465 +S'shapes' +p244467 +tp244468 +a(g244465 +g244467 +S'and' +p244469 +tp244470 +a(g244467 +g244469 +S'sharp' +p244471 +tp244472 +a(g244469 +g244471 +S'contrasts' +p244473 +tp244474 +a(g244471 +g244473 +S'of' +p244475 +tp244476 +a(g244473 +g244475 +S'light' +p244477 +tp244478 +a(g244475 +g244477 +S'and' +p244479 +tp244480 +a(g244477 +g244479 +S'shadow' +p244481 +tp244482 +a(g244479 +g244481 +S'heighten' +p244483 +tp244484 +a(g244481 +g244483 +S'the' +p244485 +tp244486 +a(g244483 +g244485 +S'drama' +p244487 +tp244488 +a(g244485 +g244487 +S'as' +p244489 +tp244490 +a(g244487 +g244489 +S'do' +p244491 +tp244492 +a(g244489 +g244491 +S'the' +p244493 +tp244494 +a(g244491 +g244493 +S'massive' +p244495 +tp244496 +a(g244493 +g244495 +S'cliffs' +p244497 +tp244498 +a(g244495 +g244497 +S'and' +p244499 +tp244500 +a(g244497 +g244499 +S'frothy' +p244501 +tp244502 +a(g244499 +g244501 +S'spray.' +p244503 +tp244504 +a(g244501 +g244503 +S'backhuysen,' +p244505 +tp244506 +a(g244503 +g244505 +S'german-born,' +p244507 +tp244508 +a(g244505 +g244507 +S'moved' +p244509 +tp244510 +a(g244507 +g244509 +S'to' +p244511 +tp244512 +a(g244509 +g244511 +S'amsterdam' +p244513 +tp244514 +a(g244511 +g244513 +S'in' +p244515 +tp244516 +a(g244513 +g244515 +S'1649' +p244517 +tp244518 +a(g244515 +g244517 +S'to' +p244519 +tp244520 +a(g244517 +g244519 +S'study' +p244521 +tp244522 +a(g244519 +g244521 +S'marine' +p244523 +tp244524 +a(g244521 +g244523 +S'painting.' +p244525 +tp244526 +a(g244523 +g244525 +S'during' +p244527 +tp244528 +a(g244525 +g244527 +S'the' +p244529 +tp244530 +a(g244527 +g244529 +S'last' +p244531 +tp244532 +a(g244529 +g244531 +S'quarter' +p244533 +tp244534 +a(g244531 +g244533 +S'of' +p244535 +tp244536 +a(g244533 +g244535 +S'the' +p244537 +tp244538 +a(g244535 +g244537 +S'seventeenth' +p244539 +tp244540 +a(g244537 +g244539 +S'century' +p244541 +tp244542 +a(g244539 +g244541 +S'he' +p244543 +tp244544 +a(g244541 +g244543 +S'was' +p244545 +tp244546 +a(g244543 +g244545 +S'holland’s' +p244547 +tp244548 +a(g244545 +g244547 +S'leading' +p244549 +tp244550 +a(g244547 +g244549 +S'seascape' +p244551 +tp244552 +a(g244549 +g244551 +S'artist,' +p244553 +tp244554 +a(g244551 +g244553 +S'with' +p244555 +tp244556 +a(g244553 +g244555 +S'royal' +p244557 +tp244558 +a(g244555 +g244557 +S'and' +p244559 +tp244560 +a(g244557 +g244559 +S'noble' +p244561 +tp244562 +a(g244559 +g244561 +S'patrons' +p244563 +tp244564 +a(g244561 +g244563 +S'throughout' +p244565 +tp244566 +a(g244563 +g244565 +S'europe.' +p244567 +tp244568 +a(g244565 +g244567 +S'sweeping' +p244569 +tp244570 +a(g244567 +g244569 +S'drapery' +p244571 +tp244572 +a(g244569 +g244571 +S'and' +p244573 +tp244574 +a(g244571 +g244573 +S'a' +p244575 +tp244576 +a(g244573 +g244575 +S'taut' +p244577 +tp244578 +a(g244575 +g244577 +S'twist' +p244579 +tp244580 +a(g244577 +g244579 +S'of' +p244581 +tp244582 +a(g244579 +g244581 +S'the' +p244583 +tp244584 +a(g244581 +g244583 +S'head' +p244585 +tp244586 +a(g244583 +g244585 +S'create' +p244587 +tp244588 +a(g244585 +g244587 +S'movement' +p244589 +tp244590 +a(g244587 +g244589 +S'and' +p244591 +tp244592 +a(g244589 +g244591 +S'energy' +p244593 +tp244594 +a(g244591 +g244593 +S'in' +p244595 +tp244596 +a(g244593 +g244595 +S'this' +p244597 +tp244598 +a(g244595 +g244597 +S'portrait' +p244599 +tp244600 +a(g244597 +g244599 +S'bust.' +p244601 +tp244602 +a(g244599 +g244601 +S'the' +p244603 +tp244604 +a(g244601 +g244603 +S'slightly' +p244605 +tp244606 +a(g244603 +g244605 +S'parted' +p244607 +tp244608 +a(g244605 +g244607 +S'lips,' +p244609 +tp244610 +a(g244607 +g244609 +S'drilled' +p244611 +tp244612 +a(g244609 +g244611 +S'pupils,' +p244613 +tp244614 +a(g244611 +g244613 +S'and' +p244615 +tp244616 +a(g244613 +g244615 +S'carefully' +p244617 +tp244618 +a(g244615 +g244617 +S'detailed' +p244619 +tp244620 +a(g244617 +g244619 +S'features—the' +p244621 +tp244622 +a(g244619 +g244621 +S'lines' +p244623 +tp244624 +a(g244621 +g244623 +S'etched' +p244625 +tp244626 +a(g244623 +g244625 +S'around' +p244627 +tp244628 +a(g244625 +g244627 +S'eyes' +p244629 +tp244630 +a(g244627 +g244629 +S'and' +p244631 +tp244632 +a(g244629 +g244631 +S'mouth—animate' +p244633 +tp244634 +a(g244631 +g244633 +S'the' +p244635 +tp244636 +a(g244633 +g244635 +S'personality' +p244637 +tp244638 +a(g244635 +g244637 +S'of' +p244639 +tp244640 +a(g244637 +g244639 +S'the' +p244641 +tp244642 +a(g244639 +g244641 +S'subject,' +p244643 +tp244644 +a(g244641 +g244643 +S'who' +p244645 +tp244646 +a(g244643 +g244645 +S'was' +p244647 +tp244648 +a(g244645 +g244647 +S'a' +p244649 +tp244650 +a(g244647 +g244649 +S'counselor' +p244651 +tp244652 +a(g244649 +g244651 +S'to' +p244653 +tp244654 +a(g244651 +g244653 +S'louis' +p244655 +tp244656 +a(g244653 +g244655 +S'xv' +p244657 +tp244658 +a(g244655 +g244657 +S'and' +p244659 +tp244660 +a(g244657 +g244659 +S'whose' +p244661 +tp244662 +a(g244659 +g244661 +S'son' +p244663 +tp244664 +a(g244661 +g244663 +S'fought' +p244665 +tp244666 +a(g244663 +g244665 +S'in' +p244667 +tp244668 +a(g244665 +g244667 +S'the' +p244669 +tp244670 +a(g244667 +g244669 +S'american' +p244671 +tp244672 +a(g244669 +g244671 +S'war' +p244673 +tp244674 +a(g244671 +g244673 +S'of' +p244675 +tp244676 +a(g244673 +g244675 +S'independence.' +p244677 +tp244678 +a(g244675 +g244677 +S'both' +p244679 +tp244680 +a(g244677 +g244679 +S'painted' +p244681 +tp244682 +a(g244679 +g244681 +S'and' +p244683 +tp244684 +a(g244681 +g244683 +S'sculpted' +p244685 +tp244686 +a(g244683 +g244685 +S'portraits' +p244687 +tp244688 +a(g244685 +g244687 +S'of' +p244689 +tp244690 +a(g244687 +g244689 +S'the' +p244691 +tp244692 +a(g244689 +g244691 +S'period' +p244693 +tp244694 +a(g244691 +g244693 +S'sought' +p244695 +tp244696 +a(g244693 +g244695 +S'to' +p244697 +tp244698 +a(g244695 +g244697 +S'capture' +p244699 +tp244700 +a(g244697 +g244699 +S'more' +p244701 +tp244702 +a(g244699 +g244701 +S'than' +p244703 +tp244704 +a(g244701 +g244703 +S'a' +p244705 +tp244706 +a(g244703 +g244705 +S"sitter's" +p244707 +tp244708 +a(g244705 +g244707 +S'likeness,' +p244709 +tp244710 +a(g244707 +g244709 +S'and' +p244711 +tp244712 +a(g244709 +g244711 +S'lemoyne' +p244713 +tp244714 +a(g244711 +g244713 +S'has' +p244715 +tp244716 +a(g244713 +g244715 +S'conveyed' +p244717 +tp244718 +a(g244715 +g244717 +S'a' +p244719 +tp244720 +a(g244717 +g244719 +S'sense' +p244721 +tp244722 +a(g244719 +g244721 +S'of' +p244723 +tp244724 +a(g244721 +g244723 +S"cromot's" +p244725 +tp244726 +a(g244723 +g244725 +S'strong' +p244727 +tp244728 +a(g244725 +g244727 +S'character' +p244729 +tp244730 +a(g244727 +g244729 +S'and' +p244731 +tp244732 +a(g244729 +g244731 +S'lively' +p244733 +tp244734 +a(g244731 +g244733 +S'intelligence.' +p244735 +tp244736 +a(g244733 +g244735 +S'his' +p244737 +tp244738 +a(g244735 +g244737 +S'voluminous' +p244739 +tp244740 +a(g244737 +g244739 +S'robes' +p244741 +tp244742 +a(g244739 +g244741 +S'are' +p244743 +tp244744 +a(g244741 +g244743 +S'a' +p244745 +tp244746 +a(g244743 +g244745 +S'convention' +p244747 +tp244748 +a(g244745 +g244747 +S'from' +p244749 +tp244750 +a(g244747 +g244749 +S'ancient' +p244751 +tp244752 +a(g244749 +g244751 +S'sculpture' +p244753 +tp244754 +a(g244751 +g244753 +S'and' +p244755 +tp244756 +a(g244753 +g244755 +S'partly' +p244757 +tp244758 +a(g244755 +g244757 +S'cover' +p244759 +tp244760 +a(g244757 +g244759 +S'his' +p244761 +tp244762 +a(g244759 +g244761 +S'informal' +p244763 +tp244764 +a(g244761 +g244763 +S'modern' +p244765 +tp244766 +a(g244763 +g244765 +S'dress.' +p244767 +tp244768 +a(g244765 +g244767 +S'charles' +p244769 +tp244770 +a(g244767 +g244769 +S'willson' +p244771 +tp244772 +a(g244769 +g244771 +S'peale' +p244773 +tp244774 +a(g244771 +g244773 +S'christened' +p244775 +tp244776 +a(g244773 +g244775 +S'most' +p244777 +tp244778 +a(g244775 +g244777 +S'of' +p244779 +tp244780 +a(g244777 +g244779 +S'his' +p244781 +tp244782 +a(g244779 +g244781 +S'seventeen' +p244783 +tp244784 +a(g244781 +g244783 +S'children' +p244785 +tp244786 +a(g244783 +g244785 +S'after' +p244787 +tp244788 +a(g244785 +g244787 +S'famous' +p244789 +tp244790 +a(g244787 +g244789 +S'artists' +p244791 +tp244792 +a(g244789 +g244791 +S'and' +p244793 +tp244794 +a(g244791 +g244793 +S'scientists;' +p244795 +tp244796 +a(g244793 +g244795 +S'however,' +p244797 +tp244798 +a(g244795 +g244797 +S'there' +p244799 +tp244800 +a(g244797 +g244799 +S'is' +p244801 +tp244802 +a(g244799 +g244801 +S'little' +p244803 +tp244804 +a(g244801 +g244803 +S'consistency' +p244805 +tp244806 +a(g244803 +g244805 +S'between' +p244807 +tp244808 +a(g244805 +g244807 +S'the' +p244809 +tp244810 +a(g244807 +g244809 +S"sons'" +p244811 +tp244812 +a(g244809 +g244811 +S'and' +p244813 +tp244814 +a(g244811 +g244813 +S"daughters'" +p244815 +tp244816 +a(g244813 +g244815 +S'namesakes' +p244817 +tp244818 +a(g244815 +g244817 +S'and' +p244819 +tp244820 +a(g244817 +g244819 +S'their' +p244821 +tp244822 +a(g244819 +g244821 +S'adult' +p244823 +tp244824 +a(g244821 +g244823 +S'careers.' +p244825 +tp244826 +a(g244823 +g244825 +S'while' +p244827 +tp244828 +a(g244825 +g244827 +S'rembrandt' +p244829 +tp244830 +a(g244827 +g244829 +S'peale' +p244831 +tp244832 +a(g244829 +g244831 +S'did' +p244833 +tp244834 +a(g244831 +g244833 +S'become' +p244835 +tp244836 +a(g244833 +g244835 +S'a' +p244837 +tp244838 +a(g244835 +g244837 +S'painter' +p244839 +tp244840 +a(g244837 +g244839 +S'and' +p244841 +tp244842 +a(g244839 +g244841 +S'the' +p244843 +tp244844 +a(g244841 +g244843 +S'portraitist' +p244845 +tp244846 +a(g244843 +g244845 +S'of' +p244847 +tp244848 +a(g244845 +g244847 +S'this' +p244849 +tp244850 +a(g244847 +g244849 +S'work,' +p244851 +tp244852 +a(g244849 +g244851 +S'rubens' +p244853 +tp244854 +a(g244851 +g244853 +S'peale,' +p244855 +tp244856 +a(g244853 +g244855 +S'who' +p244857 +tp244858 +a(g244855 +g244857 +S'sat' +p244859 +tp244860 +a(g244857 +g244859 +S'for' +p244861 +tp244862 +a(g244859 +g244861 +S'this' +p244863 +tp244864 +a(g244861 +g244863 +S'likeness' +p244865 +tp244866 +a(g244863 +g244865 +S'at' +p244867 +tp244868 +a(g244865 +g244867 +S'the' +p244869 +tp244870 +a(g244867 +g244869 +S'age' +p244871 +tp244872 +a(g244869 +g244871 +S'of' +p244873 +tp244874 +a(g244871 +g244873 +S'seventeen,' +p244875 +tp244876 +a(g244873 +g244875 +S'was' +p244877 +tp244878 +a(g244875 +g244877 +S'a' +p244879 +tp244880 +a(g244877 +g244879 +S'botanist.' +p244881 +tp244882 +a(g244879 +g244881 +S'painted' +p244883 +tp244884 +a(g244881 +g244883 +S'in' +p244885 +tp244886 +a(g244883 +g244885 +S'philadelphia,' +p244887 +tp244888 +a(g244885 +g244887 +S'the' +p244889 +tp244890 +a(g244887 +g244889 +S'work' +p244891 +tp244892 +a(g244889 +g244891 +S'could' +p244893 +tp244894 +a(g244891 +g244893 +S'be' +p244895 +tp244896 +a(g244893 +g244895 +S'described' +p244897 +tp244898 +a(g244895 +g244897 +S'as' +p244899 +tp244900 +a(g244897 +g244899 +S'a' +p244901 +tp244902 +a(g244899 +g244901 +S'double' +p244903 +tp244904 +a(g244901 +g244903 +S'portrait' +p244905 +tp244906 +a(g244903 +g244905 +S'because' +p244907 +tp244908 +a(g244905 +g244907 +S'the' +p244909 +tp244910 +a(g244907 +g244909 +S'geranium,' +p244911 +tp244912 +a(g244909 +g244911 +S'reputed' +p244913 +tp244914 +a(g244911 +g244913 +S'to' +p244915 +tp244916 +a(g244913 +g244915 +S'be' +p244917 +tp244918 +a(g244915 +g244917 +S'the' +p244919 +tp244920 +a(g244917 +g244919 +S'first' +p244921 +tp244922 +a(g244919 +g244921 +S'specimen' +p244923 +tp244924 +a(g244921 +g244923 +S'of' +p244925 +tp244926 +a(g244923 +g244925 +S'this' +p244927 +tp244928 +a(g244925 +g244927 +S'exotic' +p244929 +tp244930 +a(g244927 +g244929 +S'plant' +p244931 +tp244932 +a(g244929 +g244931 +S'ever' +p244933 +tp244934 +a(g244931 +g244933 +S'grown' +p244935 +tp244936 +a(g244933 +g244935 +S'in' +p244937 +tp244938 +a(g244935 +g244937 +S'the' +p244939 +tp244940 +a(g244937 +g244939 +S'new' +p244941 +tp244942 +a(g244939 +g244941 +S'world,' +p244943 +tp244944 +a(g244941 +g244943 +S'is' +p244945 +tp244946 +a(g244943 +g244945 +S'as' +p244947 +tp244948 +a(g244945 +g244947 +S'lovingly' +p244949 +tp244950 +a(g244947 +g244949 +S'portrayed' +p244951 +tp244952 +a(g244949 +g244951 +S'as' +p244953 +tp244954 +a(g244951 +g244953 +S'the' +p244955 +tp244956 +a(g244953 +g244955 +S"painter's" +p244957 +tp244958 +a(g244955 +g244957 +S'brother' +p244959 +tp244960 +a(g244957 +g244959 +S'is.' +p244961 +tp244962 +a(g244959 +g244961 +S'the' +p244963 +tp244964 +a(g244961 +g244963 +S'peale' +p244965 +tp244966 +a(g244963 +g244965 +S'family' +p244967 +tp244968 +a(g244965 +g244967 +S'often' +p244969 +tp244970 +a(g244967 +g244969 +S'collaborated' +p244971 +tp244972 +a(g244969 +g244971 +S'in' +p244973 +tp244974 +a(g244971 +g244973 +S'their' +p244975 +tp244976 +a(g244973 +g244975 +S'endeavors,' +p244977 +tp244978 +a(g244975 +g244977 +S'and' +p244979 +tp244980 +a(g244977 +g244979 +S'here' +p244981 +tp244982 +a(g244979 +g244981 +S'rembrandt' +p244983 +tp244984 +a(g244981 +g244983 +S'commemorated' +p244985 +tp244986 +a(g244983 +g244985 +S'his' +p244987 +tp244988 +a(g244985 +g244987 +S"brother's" +p244989 +tp244990 +a(g244987 +g244989 +S'horticultural' +p244991 +tp244992 +a(g244989 +g244991 +S'triumph.' +p244993 +tp244994 +a(g244991 +g244993 +S"rembrandt's" +p244995 +tp244996 +a(g244993 +g244995 +S'own' +p244997 +tp244998 +a(g244995 +g244997 +S'skill' +p244999 +tp245000 +a(g244997 +g244999 +S'is' +p245001 +tp245002 +a(g244999 +g245001 +S'evident' +p245003 +tp245004 +a(g245001 +g245003 +S'in' +p245005 +tp245006 +a(g245003 +g245005 +S'the' +p245007 +tp245008 +a(g245005 +g245007 +S'clearly' +p245009 +tp245010 +a(g245007 +g245009 +S'defined' +p245011 +tp245012 +a(g245009 +g245011 +S'pools' +p245013 +tp245014 +a(g245011 +g245013 +S'of' +p245015 +tp245016 +a(g245013 +g245015 +S'light' +p245017 +tp245018 +a(g245015 +g245017 +S'on' +p245019 +tp245020 +a(g245017 +g245019 +S"rubens'" +p245021 +tp245022 +a(g245019 +g245021 +S'cheeks.' +p245023 +tp245024 +a(g245021 +g245023 +S'in' +p245025 +tp245026 +a(g245023 +g245025 +S'a' +p245027 +tp245028 +a(g245025 +g245027 +S'phenomenon' +p245029 +tp245030 +a(g245027 +g245029 +S'familiar' +p245031 +tp245032 +a(g245029 +g245031 +S'to' +p245033 +tp245034 +a(g245031 +g245033 +S'all,' +p245035 +tp245036 +a(g245033 +g245035 +S'his' +p245037 +tp245038 +a(g245035 +g245037 +S'glasses' +p245039 +tp245040 +a(g245037 +g245039 +S'focus' +p245041 +tp245042 +a(g245039 +g245041 +S'the' +p245043 +tp245044 +a(g245041 +g245043 +S'beams' +p245045 +tp245046 +a(g245043 +g245045 +S'passing' +p245047 +tp245048 +a(g245045 +g245047 +S'through' +p245049 +tp245050 +a(g245047 +g245049 +S'them,' +p245051 +tp245052 +a(g245049 +g245051 +S'thereby' +p245053 +tp245054 +a(g245051 +g245053 +S'forming' +p245055 +tp245056 +a(g245053 +g245055 +S'the' +p245057 +tp245058 +a(g245055 +g245057 +S'brighter' +p245059 +tp245060 +a(g245057 +g245059 +S'disks' +p245061 +tp245062 +a(g245059 +g245061 +S'of' +p245063 +tp245064 +a(g245061 +g245063 +S'light' +p245065 +tp245066 +a(g245063 +g245065 +S'under' +p245067 +tp245068 +a(g245065 +g245067 +S'his' +p245069 +tp245070 +a(g245067 +g245069 +S'eyes.' +p245071 +tp245072 +a(g245069 +g245071 +S'rubens' +p245073 +tp245074 +a(g245071 +g245073 +S'peale' +p245075 +tp245076 +a(g245073 +g245075 +S'with' +p245077 +tp245078 +a(g245075 +g245077 +S'a' +p245079 +tp245080 +a(g245077 +g245079 +S'geranium' +p245081 +tp245082 +a(g245079 +g245081 +S'beginning' +p245083 +tp245084 +a(g245081 +g245083 +S'in' +p245085 +tp245086 +a(g245083 +g245085 +S'mid-to-late' +p245087 +tp245088 +a(g245085 +g245087 +S'may' +p245089 +tp245090 +a(g245087 +g245089 +S'1867,' +p245091 +tp245092 +a(g245089 +g245091 +S'bazille' +p245093 +tp245094 +a(g245091 +g245093 +S'spent' +p245095 +tp245096 +a(g245093 +g245095 +S'a' +p245097 +tp245098 +a(g245095 +g245097 +S'month' +p245099 +tp245100 +a(g245097 +g245099 +S'in' +p245101 +tp245102 +a(g245099 +g245101 +S'aigues-mortes,' +p245103 +tp245104 +a(g245101 +g245103 +S'a' +p245105 +tp245106 +a(g245103 +g245105 +S'fortified' +p245107 +tp245108 +a(g245105 +g245107 +S'medieval' +p245109 +tp245110 +a(g245107 +g245109 +S'town' +p245111 +tp245112 +a(g245109 +g245111 +S'located' +p245113 +tp245114 +a(g245111 +g245113 +S'about' +p245115 +tp245116 +a(g245113 +g245115 +S'fifteen' +p245117 +tp245118 +a(g245115 +g245117 +S'and' +p245119 +tp245120 +a(g245117 +g245119 +S'one-half' +p245121 +tp245122 +a(g245119 +g245121 +S'miles' +p245123 +tp245124 +a(g245121 +g245123 +S'from' +p245125 +tp245126 +a(g245123 +g245125 +S'montpellier' +p245127 +tp245128 +a(g245125 +g245127 +S'in' +p245129 +tp245130 +a(g245127 +g245129 +S'the' +p245131 +tp245132 +a(g245129 +g245131 +S'languedoc' +p245133 +tp245134 +a(g245131 +g245133 +S'region' +p245135 +tp245136 +a(g245133 +g245135 +S'of' +p245137 +tp245138 +a(g245135 +g245137 +S'southern' +p245139 +tp245140 +a(g245137 +g245139 +S'france.' +p245141 +tp245142 +a(g245139 +g245141 +S'this' +p245143 +tp245144 +a(g245141 +g245143 +S'site' +p245145 +tp245146 +a(g245143 +g245145 +S'held' +p245147 +tp245148 +a(g245145 +g245147 +S'considerable' +p245149 +tp245150 +a(g245147 +g245149 +S'appeal' +p245151 +tp245152 +a(g245149 +g245151 +S'for' +p245153 +tp245154 +a(g245151 +g245153 +S'the' +p245155 +tp245156 +a(g245153 +g245155 +S'young' +p245157 +tp245158 +a(g245155 +g245157 +S'artist' +p245159 +tp245160 +a(g245157 +g245159 +S'because' +p245161 +tp245162 +a(g245159 +g245161 +S'of' +p245163 +tp245164 +a(g245161 +g245163 +S'its' +p245165 +tp245166 +a(g245163 +g245165 +S'association' +p245167 +tp245168 +a(g245165 +g245167 +S'with' +p245169 +tp245170 +a(g245167 +g245169 +S'local' +p245171 +tp245172 +a(g245169 +g245171 +S'history' +p245173 +tp245174 +a(g245171 +g245173 +S'and' +p245175 +tp245176 +a(g245173 +g245175 +S'its' +p245177 +tp245178 +a(g245175 +g245177 +S'proximity' +p245179 +tp245180 +a(g245177 +g245179 +S'to' +p245181 +tp245182 +a(g245179 +g245181 +S'the' +p245183 +tp245184 +a(g245181 +g245183 +S'bazille' +p245185 +tp245186 +a(g245183 +g245185 +S'family' +p245187 +tp245188 +a(g245185 +g245187 +S'property' +p245189 +tp245190 +a(g245187 +g245189 +S'at' +p245191 +tp245192 +a(g245189 +g245191 +S'méric,' +p245193 +tp245194 +a(g245191 +g245193 +S'itself' +p245195 +tp245196 +a(g245193 +g245195 +S'on' +p245197 +tp245198 +a(g245195 +g245197 +S'the' +p245199 +tp245200 +a(g245197 +g245199 +S'outskirts' +p245201 +tp245202 +a(g245199 +g245201 +S'of' +p245203 +tp245204 +a(g245201 +g245203 +S'montpellier.' +p245205 +tp245206 +a(g245203 +g245205 +S'bazille' +p245207 +tp245208 +a(g245205 +g245207 +S'had' +p245209 +tp245210 +a(g245207 +g245209 +S'already' +p245211 +tp245212 +a(g245209 +g245211 +S'begun' +p245213 +tp245214 +a(g245211 +g245213 +S'thinking' +p245215 +tp245216 +a(g245213 +g245215 +S'about' +p245217 +tp245218 +a(g245215 +g245217 +S'painting' +p245219 +tp245220 +a(g245217 +g245219 +S'at' +p245221 +tp245222 +a(g245219 +g245221 +S'the' +p245223 +tp245224 +a(g245221 +g245223 +S'site' +p245225 +tp245226 +a(g245223 +g245225 +S'by' +p245227 +tp245228 +a(g245225 +g245227 +S'the' +p245229 +tp245230 +a(g245227 +g245229 +S'summer' +p245231 +tp245232 +a(g245229 +g245231 +S'of' +p245233 +tp245234 +a(g245231 +g245233 +S'1866:' +p245235 +tp245236 +a(g245233 +g245235 +S'"i' +p245237 +tp245238 +a(g245235 +g245237 +S'will' +p245239 +tp245240 +a(g245237 +g245239 +S'be' +p245241 +tp245242 +a(g245239 +g245241 +S'back' +p245243 +tp245244 +a(g245241 +g245243 +S'in' +p245245 +tp245246 +a(g245243 +g245245 +S'montpellier' +p245247 +tp245248 +a(g245245 +g245247 +S'as' +p245249 +tp245250 +a(g245247 +g245249 +S'quickly' +p245251 +tp245252 +a(g245249 +g245251 +S'as' +p245253 +tp245254 +a(g245251 +g245253 +S'possible' +p245255 +tp245256 +a(g245253 +g245255 +S'after' +p245257 +tp245258 +a(g245255 +g245257 +S'having' +p245259 +tp245260 +a(g245257 +g245259 +S'finished' +p245261 +tp245262 +a(g245259 +g245261 +S'a' +p245263 +tp245264 +a(g245261 +g245263 +S'large' +p245265 +tp245266 +a(g245263 +g245265 +S'nude' +p245267 +tp245268 +a(g245265 +g245267 +S'study,' +p245269 +tp245270 +a(g245267 +g245269 +S'and' +p245271 +tp245272 +a(g245269 +g245271 +S'i' +p245273 +tp245274 +a(g245271 +g245273 +S'will' +p245275 +tp245276 +a(g245273 +g245275 +S'begin' +p245277 +tp245278 +a(g245275 +g245277 +S'a' +p245279 +tp245280 +a(g245277 +g245279 +S'study' +p245281 +tp245282 +a(g245279 +g245281 +S'at' +p245283 +tp245284 +a(g245281 +g245283 +S'aigues-mortes,"' +p245285 +tp245286 +a(g245283 +g245285 +S'he' +p245287 +tp245288 +a(g245285 +g245287 +S'informed' +p245289 +tp245290 +a(g245287 +g245289 +S'his' +p245291 +tp245292 +a(g245289 +g245291 +S'parents.' +p245293 +tp245294 +a(g245291 +g245293 +S'three' +p245295 +tp245296 +a(g245293 +g245295 +S'paintings' +p245297 +tp245298 +a(g245295 +g245297 +S'from' +p245299 +tp245300 +a(g245297 +g245299 +S'bazille\xe2\x80\x99s' +p245301 +tp245302 +a(g245299 +g245301 +S'stay' +p245303 +tp245304 +a(g245301 +g245303 +S'at' +p245305 +tp245306 +a(g245303 +g245305 +S'aigues-mortes' +p245307 +tp245308 +a(g245305 +g245307 +S'are' +p245309 +tp245310 +a(g245307 +g245309 +S'extant:' +p245311 +tp245312 +a(g245309 +g245311 +S'the' +p245313 +tp245314 +a(g245311 +g245313 +S'despite' +p245315 +tp245316 +a(g245313 +g245315 +S'the' +p245317 +tp245318 +a(g245315 +g245317 +S'apparent' +p245319 +tp245320 +a(g245317 +g245319 +S'fluency' +p245321 +tp245322 +a(g245319 +g245321 +S'in' +p245323 +tp245324 +a(g245321 +g245323 +S'the' +p245325 +tp245326 +a(g245323 +g245325 +S'painting\xe2\x80\x99s' +p245327 +tp245328 +a(g245325 +g245327 +S'execution,' +p245329 +tp245330 +a(g245327 +g245329 +S'it' +p245331 +tp245332 +a(g245329 +g245331 +S'is' +p245333 +tp245334 +a(g245331 +g245333 +S'clear' +p245335 +tp245336 +a(g245333 +g245335 +S'that' +p245337 +tp245338 +a(g245335 +g245337 +S'bazille' +p245339 +tp245340 +a(g245337 +g245339 +S'adopted' +p245341 +tp245342 +a(g245339 +g245341 +S'a' +p245343 +tp245344 +a(g245341 +g245343 +S'fairly' +p245345 +tp245346 +a(g245343 +g245345 +S'methodical' +p245347 +tp245348 +a(g245345 +g245347 +S'approach' +p245349 +tp245350 +a(g245347 +g245349 +S'in' +p245351 +tp245352 +a(g245349 +g245351 +S'its' +p245353 +tp245354 +a(g245351 +g245353 +S'conception.' +p245355 +tp245356 +a(g245353 +g245355 +S'a' +p245357 +tp245358 +a(g245355 +g245357 +S'sketchbook' +p245359 +tp245360 +a(g245357 +g245359 +S'in' +p245361 +tp245362 +a(g245359 +g245361 +S'the' +p245363 +tp245364 +a(g245361 +g245363 +S'musée' +p245365 +tp245366 +a(g245363 +g245365 +S'du' +p245367 +tp245368 +a(g245365 +g245367 +S'louvre,' +p245369 +tp245370 +a(g245367 +g245369 +S'paris,' +p245371 +tp245372 +a(g245369 +g245371 +S'is' +p245373 +tp245374 +a(g245371 +g245373 +S'filled' +p245375 +tp245376 +a(g245373 +g245375 +S'with' +p245377 +tp245378 +a(g245375 +g245377 +S'preparatory' +p245379 +tp245380 +a(g245377 +g245379 +S'studies' +p245381 +tp245382 +a(g245379 +g245381 +S'undertaken' +p245383 +tp245384 +a(g245381 +g245383 +S'at' +p245385 +tp245386 +a(g245383 +g245385 +S'aigues-mortes,' +p245387 +tp245388 +a(g245385 +g245387 +S'including' +p245389 +tp245390 +a(g245387 +g245389 +S'five' +p245391 +tp245392 +a(g245389 +g245391 +S'of' +p245393 +tp245394 +a(g245391 +g245393 +S'the' +p245395 +tp245396 +a(g245393 +g245395 +S'ramparts' +p245397 +tp245398 +a(g245395 +g245397 +S'themselves' +p245399 +tp245400 +a(g245397 +g245399 +S'from' +p245401 +tp245402 +a(g245399 +g245401 +S'differing' +p245403 +tp245404 +a(g245401 +g245403 +S'angles.' +p245405 +tp245406 +a(g245403 +g245405 +S'while' +p245407 +tp245408 +a(g245405 +g245407 +S'none' +p245409 +tp245410 +a(g245407 +g245409 +S'of' +p245411 +tp245412 +a(g245409 +g245411 +S'the' +p245413 +tp245414 +a(g245411 +g245413 +S'architectural' +p245415 +tp245416 +a(g245413 +g245415 +S'drawings' +p245417 +tp245418 +a(g245415 +g245417 +S'relates' +p245419 +tp245420 +a(g245417 +g245419 +S'directly' +p245421 +tp245422 +a(g245419 +g245421 +S'to' +p245423 +tp245424 +a(g245421 +g245423 +S'this' +p245425 +tp245426 +a(g245423 +g245425 +S'painting,' +p245427 +tp245428 +a(g245425 +g245427 +S'the' +p245429 +tp245430 +a(g245427 +g245429 +S'number' +p245431 +tp245432 +a(g245429 +g245431 +S'of' +p245433 +tp245434 +a(g245431 +g245433 +S'drawings' +p245435 +tp245436 +a(g245433 +g245435 +S'indicates' +p245437 +tp245438 +a(g245435 +g245437 +S'that' +p245439 +tp245440 +a(g245437 +g245439 +S'bazille' +p245441 +tp245442 +a(g245439 +g245441 +S'did' +p245443 +tp245444 +a(g245441 +g245443 +S'explore' +p245445 +tp245446 +a(g245443 +g245445 +S'and' +p245447 +tp245448 +a(g245445 +g245447 +S'subsequently' +p245449 +tp245450 +a(g245447 +g245449 +S'abandon' +p245451 +tp245452 +a(g245449 +g245451 +S'possible' +p245453 +tp245454 +a(g245451 +g245453 +S'vantage' +p245455 +tp245456 +a(g245453 +g245455 +S'points' +p245457 +tp245458 +a(g245455 +g245457 +S'before' +p245459 +tp245460 +a(g245457 +g245459 +S'settling' +p245461 +tp245462 +a(g245459 +g245461 +S'on' +p245463 +tp245464 +a(g245461 +g245463 +S'those' +p245465 +tp245466 +a(g245463 +g245465 +S'he' +p245467 +tp245468 +a(g245465 +g245467 +S'would' +p245469 +tp245470 +a(g245467 +g245469 +S'ultimately' +p245471 +tp245472 +a(g245469 +g245471 +S'paint.' +p245473 +tp245474 +a(g245471 +g245473 +S'bazille\xe2\x80\x99s' +p245475 +tp245476 +a(g245473 +g245475 +S'rigor' +p245477 +tp245478 +a(g245475 +g245477 +S'may' +p245479 +tp245480 +a(g245477 +g245479 +S'have' +p245481 +tp245482 +a(g245479 +g245481 +S'been' +p245483 +tp245484 +a(g245481 +g245483 +S'in' +p245485 +tp245486 +a(g245483 +g245485 +S'response' +p245487 +tp245488 +a(g245485 +g245487 +S'to' +p245489 +tp245490 +a(g245487 +g245489 +S'his' +p245491 +tp245492 +a(g245489 +g245491 +S'father\xe2\x80\x99s' +p245493 +tp245494 +a(g245491 +g245493 +S'own' +p245495 +tp245496 +a(g245493 +g245495 +S'suggestion' +p245497 +tp245498 +a(g245495 +g245497 +S'to' +p245499 +tp245500 +a(g245497 +g245499 +S'depict' +p245501 +tp245502 +a(g245499 +g245501 +S'such' +p245503 +tp245504 +a(g245501 +g245503 +S'a' +p245505 +tp245506 +a(g245503 +g245505 +S'subject.' +p245507 +tp245508 +a(g245505 +g245507 +S'in' +p245509 +tp245510 +a(g245507 +g245509 +S'a' +p245511 +tp245512 +a(g245509 +g245511 +S'letter' +p245513 +tp245514 +a(g245511 +g245513 +S'to' +p245515 +tp245516 +a(g245513 +g245515 +S'his' +p245517 +tp245518 +a(g245515 +g245517 +S'son,' +p245519 +tp245520 +a(g245517 +g245519 +S'gaston' +p245521 +tp245522 +a(g245519 +g245521 +S'bazille' +p245523 +tp245524 +a(g245521 +g245523 +S'remarked' +p245525 +tp245526 +a(g245523 +g245525 +S'upon' +p245527 +tp245528 +a(g245525 +g245527 +S'the' +p245529 +tp245530 +a(g245527 +g245529 +S'appeal' +p245531 +tp245532 +a(g245529 +g245531 +S'of' +p245533 +tp245534 +a(g245531 +g245533 +S'the' +p245535 +tp245536 +a(g245533 +g245535 +S'site,' +p245537 +tp245538 +a(g245535 +g245537 +S'noting,' +p245539 +tp245540 +a(g245537 +g245539 +S'"i' +p245541 +tp245542 +a(g245539 +g245541 +S'have' +p245543 +tp245544 +a(g245541 +g245543 +S'never' +p245545 +tp245546 +a(g245543 +g245545 +S'seen' +p245547 +tp245548 +a(g245545 +g245547 +S'a' +p245549 +tp245550 +a(g245547 +g245549 +S'painting' +p245551 +tp245552 +a(g245549 +g245551 +S'representing' +p245553 +tp245554 +a(g245551 +g245553 +S'aigues-mortes,' +p245555 +tp245556 +a(g245553 +g245555 +S'and' +p245557 +tp245558 +a(g245555 +g245557 +S'i' +p245559 +tp245560 +a(g245557 +g245559 +S'am' +p245561 +tp245562 +a(g245559 +g245561 +S'sufficiently' +p245563 +tp245564 +a(g245561 +g245563 +S'inclined' +p245565 +tp245566 +a(g245563 +g245565 +S'to' +p245567 +tp245568 +a(g245565 +g245567 +S'believe' +p245569 +tp245570 +a(g245567 +g245569 +S'that' +p245571 +tp245572 +a(g245569 +g245571 +S'a' +p245573 +tp245574 +a(g245571 +g245573 +S'landscape' +p245575 +tp245576 +a(g245573 +g245575 +S'or' +p245577 +tp245578 +a(g245575 +g245577 +S'a' +p245579 +tp245580 +a(g245577 +g245579 +S'marine' +p245581 +tp245582 +a(g245579 +g245581 +S'(because' +p245583 +tp245584 +a(g245581 +g245583 +S'aigues-mortes' +p245585 +tp245586 +a(g245583 +g245585 +S'with' +p245587 +tp245588 +a(g245585 +g245587 +S'its' +p245589 +tp245590 +a(g245587 +g245589 +S'little' +p245591 +tp245592 +a(g245589 +g245591 +S'port,' +p245593 +tp245594 +a(g245591 +g245593 +S'can' +p245595 +tp245596 +a(g245593 +g245595 +S'furnish' +p245597 +tp245598 +a(g245595 +g245597 +S'either' +p245599 +tp245600 +a(g245597 +g245599 +S'subject)' +p245601 +tp245602 +a(g245599 +g245601 +S'of' +p245603 +tp245604 +a(g245601 +g245603 +S'this' +p245605 +tp245606 +a(g245603 +g245605 +S'uncommon' +p245607 +tp245608 +a(g245605 +g245607 +S'point' +p245609 +tp245610 +a(g245607 +g245609 +S'of' +p245611 +tp245612 +a(g245609 +g245611 +S'the' +p245613 +tp245614 +a(g245611 +g245613 +S'midi,' +p245615 +tp245616 +a(g245613 +g245615 +S'would' +p245617 +tp245618 +a(g245615 +g245617 +S'be' +p245619 +tp245620 +a(g245617 +g245619 +S'of' +p245621 +tp245622 +a(g245619 +g245621 +S'interest."' +p245623 +tp245624 +a(g245621 +g245623 +S'(text' +p245625 +tp245626 +a(g245623 +g245625 +S'by' +p245627 +tp245628 +a(g245625 +g245627 +S'kimberly' +p245629 +tp245630 +a(g245627 +g245629 +S'jones,' +p245631 +tp245632 +a(g245629 +g245631 +S'notes' +p245633 +tp245634 +a(g245631 +g245633 +S'' +p245637 +tp245638 +a(g245635 +g245637 +S'' +p245641 +tp245642 +a(g245639 +g245641 +S'' +p245645 +tp245646 +a(g245643 +g245645 +S'bazille' +p245647 +tp245648 +a(g245645 +g245647 +S'first' +p245649 +tp245650 +a(g245647 +g245649 +S'met' +p245651 +tp245652 +a(g245649 +g245651 +S'edmond' +p245653 +tp245654 +a(g245651 +g245653 +S'maître' +p245655 +tp245656 +a(g245653 +g245655 +S'in' +p245657 +tp245658 +a(g245655 +g245657 +S'1865' +p245659 +tp245660 +a(g245657 +g245659 +S'at' +p245661 +tp245662 +a(g245659 +g245661 +S'a' +p245663 +tp245664 +a(g245661 +g245663 +S'dinner' +p245665 +tp245666 +a(g245663 +g245665 +S'hosted' +p245667 +tp245668 +a(g245665 +g245667 +S'by' +p245669 +tp245670 +a(g245667 +g245669 +S'emile' +p245671 +tp245672 +a(g245669 +g245671 +S'blanche,' +p245673 +tp245674 +a(g245671 +g245673 +S'a' +p245675 +tp245676 +a(g245673 +g245675 +S'doctor' +p245677 +tp245678 +a(g245675 +g245677 +S'whose' +p245679 +tp245680 +a(g245677 +g245679 +S'home' +p245681 +tp245682 +a(g245679 +g245681 +S'was' +p245683 +tp245684 +a(g245681 +g245683 +S'a' +p245685 +tp245686 +a(g245683 +g245685 +S'favorite' +p245687 +tp245688 +a(g245685 +g245687 +S'meeting' +p245689 +tp245690 +a(g245687 +g245689 +S'place' +p245691 +tp245692 +a(g245689 +g245691 +S'of' +p245693 +tp245694 +a(g245691 +g245693 +S'the' +p245695 +tp245696 +a(g245693 +g245695 +S'parisian' +p245697 +tp245698 +a(g245695 +g245697 +S'avant-garde' +p245699 +tp245700 +a(g245697 +g245699 +S'during' +p245701 +tp245702 +a(g245699 +g245701 +S'the' +p245703 +tp245704 +a(g245701 +g245703 +S'1860s.' +p245705 +tp245706 +a(g245703 +g245705 +S'the' +p245707 +tp245708 +a(g245705 +g245707 +S'two' +p245709 +tp245710 +a(g245707 +g245709 +S'young' +p245711 +tp245712 +a(g245709 +g245711 +S'men' +p245713 +tp245714 +a(g245711 +g245713 +S'had' +p245715 +tp245716 +a(g245713 +g245715 +S'much' +p245717 +tp245718 +a(g245715 +g245717 +S'in' +p245719 +tp245720 +a(g245717 +g245719 +S'common:' +p245721 +tp245722 +a(g245719 +g245721 +S'both' +p245723 +tp245724 +a(g245721 +g245723 +S'came' +p245725 +tp245726 +a(g245723 +g245725 +S'from' +p245727 +tp245728 +a(g245725 +g245727 +S'upper-class' +p245729 +tp245730 +a(g245727 +g245729 +S'families;' +p245731 +tp245732 +a(g245729 +g245731 +S'both' +p245733 +tp245734 +a(g245731 +g245733 +S'moved' +p245735 +tp245736 +a(g245733 +g245735 +S'to' +p245737 +tp245738 +a(g245735 +g245737 +S'paris' +p245739 +tp245740 +a(g245737 +g245739 +S'for' +p245741 +tp245742 +a(g245739 +g245741 +S'their' +p245743 +tp245744 +a(g245741 +g245743 +S'professional' +p245745 +tp245746 +a(g245743 +g245745 +S'studies' +p245747 +tp245748 +a(g245745 +g245747 +S'(medicine' +p245749 +tp245750 +a(g245747 +g245749 +S'for' +p245751 +tp245752 +a(g245749 +g245751 +S'bazille,' +p245753 +tp245754 +a(g245751 +g245753 +S'the' +p245755 +tp245756 +a(g245753 +g245755 +S'law' +p245757 +tp245758 +a(g245755 +g245757 +S'for' +p245759 +tp245760 +a(g245757 +g245759 +S'maître),' +p245761 +tp245762 +a(g245759 +g245761 +S'which' +p245763 +tp245764 +a(g245761 +g245763 +S'they' +p245765 +tp245766 +a(g245763 +g245765 +S'quickly' +p245767 +tp245768 +a(g245765 +g245767 +S'abandoned' +p245769 +tp245770 +a(g245767 +g245769 +S'in' +p245771 +tp245772 +a(g245769 +g245771 +S'favor' +p245773 +tp245774 +a(g245771 +g245773 +S'of' +p245775 +tp245776 +a(g245773 +g245775 +S'more' +p245777 +tp245778 +a(g245775 +g245777 +S'artistic' +p245779 +tp245780 +a(g245777 +g245779 +S'pursuits.' +p245781 +tp245782 +a(g245779 +g245781 +S'most' +p245783 +tp245784 +a(g245781 +g245783 +S'important' +p245785 +tp245786 +a(g245783 +g245785 +S'was' +p245787 +tp245788 +a(g245785 +g245787 +S'their' +p245789 +tp245790 +a(g245787 +g245789 +S'shared' +p245791 +tp245792 +a(g245789 +g245791 +S'passion' +p245793 +tp245794 +a(g245791 +g245793 +S'for' +p245795 +tp245796 +a(g245793 +g245795 +S'music.' +p245797 +tp245798 +a(g245795 +g245797 +S'both' +p245799 +tp245800 +a(g245797 +g245799 +S'were' +p245801 +tp245802 +a(g245799 +g245801 +S'competent' +p245803 +tp245804 +a(g245801 +g245803 +S'pianists—they' +p245805 +tp245806 +a(g245803 +g245805 +S'would' +p245807 +tp245808 +a(g245805 +g245807 +S'often' +p245809 +tp245810 +a(g245807 +g245809 +S'play' +p245811 +tp245812 +a(g245809 +g245811 +S'duets' +p245813 +tp245814 +a(g245811 +g245813 +S'late' +p245815 +tp245816 +a(g245813 +g245815 +S'into' +p245817 +tp245818 +a(g245815 +g245817 +S'the' +p245819 +tp245820 +a(g245817 +g245819 +S'night—and' +p245821 +tp245822 +a(g245819 +g245821 +S'admired' +p245823 +tp245824 +a(g245821 +g245823 +S'the' +p245825 +tp245826 +a(g245823 +g245825 +S'work' +p245827 +tp245828 +a(g245825 +g245827 +S'of' +p245829 +tp245830 +a(g245827 +g245829 +S'hector' +p245831 +tp245832 +a(g245829 +g245831 +S'berlioz' +p245833 +tp245834 +a(g245831 +g245833 +S'and' +p245835 +tp245836 +a(g245833 +g245835 +S'the' +p245837 +tp245838 +a(g245835 +g245837 +S'german' +p245839 +tp245840 +a(g245837 +g245839 +S'composers' +p245841 +tp245842 +a(g245839 +g245841 +S'richard' +p245843 +tp245844 +a(g245841 +g245843 +S'wagner' +p245845 +tp245846 +a(g245843 +g245845 +S'and' +p245847 +tp245848 +a(g245845 +g245847 +S'robert' +p245849 +tp245850 +a(g245847 +g245849 +S'schumann.' +p245851 +tp245852 +a(g245849 +g245851 +S'the' +p245853 +tp245854 +a(g245851 +g245853 +S'two' +p245855 +tp245856 +a(g245853 +g245855 +S'friends' +p245857 +tp245858 +a(g245855 +g245857 +S'frequently' +p245859 +tp245860 +a(g245857 +g245859 +S'attended' +p245861 +tp245862 +a(g245859 +g245861 +S'concerts' +p245863 +tp245864 +a(g245861 +g245863 +S'together' +p245865 +tp245866 +a(g245863 +g245865 +S'at' +p245867 +tp245868 +a(g245865 +g245867 +S'the' +p245869 +tp245870 +a(g245867 +g245869 +S'pasdeloup' +p245871 +tp245872 +a(g245869 +g245871 +S'as' +p245873 +tp245874 +a(g245871 +g245873 +S'well' +p245875 +tp245876 +a(g245873 +g245875 +S'as' +p245877 +tp245878 +a(g245875 +g245877 +S'the' +p245879 +tp245880 +a(g245877 +g245879 +S'conservatoire' +p245881 +tp245882 +a(g245879 +g245881 +S'(maître' +p245883 +tp245884 +a(g245881 +g245883 +S'obtained' +p245885 +tp245886 +a(g245883 +g245885 +S'season' +p245887 +tp245888 +a(g245885 +g245887 +S'passes' +p245889 +tp245890 +a(g245887 +g245889 +S'for' +p245891 +tp245892 +a(g245889 +g245891 +S'them' +p245893 +tp245894 +a(g245891 +g245893 +S'in' +p245895 +tp245896 +a(g245893 +g245895 +S'1865),' +p245897 +tp245898 +a(g245895 +g245897 +S'occasionally' +p245899 +tp245900 +a(g245897 +g245899 +S'accompanied' +p245901 +tp245902 +a(g245899 +g245901 +S'by' +p245903 +tp245904 +a(g245901 +g245903 +S'another' +p245905 +tp245906 +a(g245903 +g245905 +S'friend' +p245907 +tp245908 +a(g245905 +g245907 +S'and' +p245909 +tp245910 +a(g245907 +g245909 +S'fellow' +p245911 +tp245912 +a(g245909 +g245911 +S'wagner' +p245913 +tp245914 +a(g245911 +g245913 +S'enthusiast,' +p245915 +tp245916 +a(g245913 +g245915 +S'the' +p245917 +tp245918 +a(g245915 +g245917 +S'painter' +p245919 +tp245920 +a(g245917 +g245919 +S'henri' +p245921 +tp245922 +a(g245919 +g245921 +S'fantin-latour.' +p245923 +tp245924 +a(g245921 +g245923 +S'in' +p245925 +tp245926 +a(g245923 +g245925 +S'a' +p245927 +tp245928 +a(g245925 +g245927 +S'letter' +p245929 +tp245930 +a(g245927 +g245929 +S'of' +p245931 +tp245932 +a(g245929 +g245931 +S'january' +p245933 +tp245934 +a(g245931 +g245933 +S'1,' +p245935 +tp245936 +a(g245933 +g245935 +S'1869,' +p245937 +tp245938 +a(g245935 +g245937 +S'bazille' +p245939 +tp245940 +a(g245937 +g245939 +S'told' +p245941 +tp245942 +a(g245939 +g245941 +S'his' +p245943 +tp245944 +a(g245941 +g245943 +S'mother,' +p245945 +tp245946 +a(g245943 +g245945 +S'"i' +p245947 +tp245948 +a(g245945 +g245947 +S'have' +p245949 +tp245950 +a(g245947 +g245949 +S'started' +p245951 +tp245952 +a(g245949 +g245951 +S'to' +p245953 +tp245954 +a(g245951 +g245953 +S'do' +p245955 +tp245956 +a(g245953 +g245955 +S'another' +p245957 +tp245958 +a(g245955 +g245957 +S'portrait' +p245959 +tp245960 +a(g245957 +g245959 +S'of' +p245961 +tp245962 +a(g245959 +g245961 +S'maître' +p245963 +tp245964 +a(g245961 +g245963 +S'to' +p245965 +tp245966 +a(g245963 +g245965 +S'replace' +p245967 +tp245968 +a(g245965 +g245967 +S'the' +p245969 +tp245970 +a(g245967 +g245969 +S'one' +p245971 +tp245972 +a(g245969 +g245971 +S'i' +p245973 +tp245974 +a(g245971 +g245973 +S'gave' +p245975 +tp245976 +a(g245973 +g245975 +S'him' +p245977 +tp245978 +a(g245975 +g245977 +S'two' +p245979 +tp245980 +a(g245977 +g245979 +S'years' +p245981 +tp245982 +a(g245979 +g245981 +S'ago,' +p245983 +tp245984 +a(g245981 +g245983 +S'and' +p245985 +tp245986 +a(g245983 +g245985 +S'which' +p245987 +tp245988 +a(g245985 +g245987 +S'i' +p245989 +tp245990 +a(g245987 +g245989 +S'find' +p245991 +tp245992 +a(g245989 +g245991 +S'simply' +p245993 +tp245994 +a(g245991 +g245993 +S'too' +p245995 +tp245996 +a(g245993 +g245995 +S'bad."' +p245997 +tp245998 +a(g245995 +g245997 +S'one' +p245999 +tp246000 +a(g245997 +g245999 +S'possible' +p246001 +tp246002 +a(g245999 +g246001 +S'source' +p246003 +tp246004 +a(g246001 +g246003 +S'of' +p246005 +tp246006 +a(g246003 +g246005 +S'inspiration' +p246007 +tp246008 +a(g246005 +g246007 +S'for' +p246009 +tp246010 +a(g246007 +g246009 +S'this' +p246011 +tp246012 +a(g246009 +g246011 +S'painting' +p246013 +tp246014 +a(g246011 +g246013 +S'is' +p246015 +tp246016 +a(g246013 +g246015 +S'edouard' +p246017 +tp246018 +a(g246015 +g246017 +S'manet\xe2\x80\x99s' +p246019 +tp246020 +a(g246017 +g246019 +S'portrait' +p246021 +tp246022 +a(g246019 +g246021 +S'of' +p246023 +tp246024 +a(g246021 +g246023 +S'emile' +p246025 +tp246026 +a(g246023 +g246025 +S'zola' +p246027 +tp246028 +a(g246025 +g246027 +S'(musée' +p246029 +tp246030 +a(g246027 +g246029 +S'd\xe2\x80\x99orsay,' +p246031 +tp246032 +a(g246029 +g246031 +S'paris).' +p246033 +tp246034 +a(g246031 +g246033 +S'painted' +p246035 +tp246036 +a(g246033 +g246035 +S'the' +p246037 +tp246038 +a(g246035 +g246037 +S'previous' +p246039 +tp246040 +a(g246037 +g246039 +S'year,' +p246041 +tp246042 +a(g246039 +g246041 +S'it' +p246043 +tp246044 +a(g246041 +g246043 +S'is' +p246045 +tp246046 +a(g246043 +g246045 +S'a' +p246047 +tp246048 +a(g246045 +g246047 +S'work' +p246049 +tp246050 +a(g246047 +g246049 +S'that' +p246051 +tp246052 +a(g246049 +g246051 +S'bazille' +p246053 +tp246054 +a(g246051 +g246053 +S'would' +p246055 +tp246056 +a(g246053 +g246055 +S'have' +p246057 +tp246058 +a(g246055 +g246057 +S'seen' +p246059 +tp246060 +a(g246057 +g246059 +S'either' +p246061 +tp246062 +a(g246059 +g246061 +S'in' +p246063 +tp246064 +a(g246061 +g246063 +S'manet\xe2\x80\x99s' +p246065 +tp246066 +a(g246063 +g246065 +S'studio' +p246067 +tp246068 +a(g246065 +g246067 +S'or' +p246069 +tp246070 +a(g246067 +g246069 +S'zola\xe2\x80\x99s' +p246071 +tp246072 +a(g246069 +g246071 +S'home.' +p246073 +tp246074 +a(g246071 +g246073 +S'but' +p246075 +tp246076 +a(g246073 +g246075 +S'while' +p246077 +tp246078 +a(g246075 +g246077 +S'the' +p246079 +tp246080 +a(g246077 +g246079 +S'pose' +p246081 +tp246082 +a(g246079 +g246081 +S'is' +p246083 +tp246084 +a(g246081 +g246083 +S'similar,' +p246085 +tp246086 +a(g246083 +g246085 +S'bazille\xe2\x80\x99s' +p246087 +tp246088 +a(g246085 +g246087 +S'portrait' +p246089 +tp246090 +a(g246087 +g246089 +S'is' +p246091 +tp246092 +a(g246089 +g246091 +S'almost' +p246093 +tp246094 +a(g246091 +g246093 +S'stark' +p246095 +tp246096 +a(g246093 +g246095 +S'in' +p246097 +tp246098 +a(g246095 +g246097 +S'comparison,' +p246099 +tp246100 +a(g246097 +g246099 +S'lacking' +p246101 +tp246102 +a(g246099 +g246101 +S'the' +p246103 +tp246104 +a(g246101 +g246103 +S'accoutrements' +p246105 +tp246106 +a(g246103 +g246105 +S'and' +p246107 +tp246108 +a(g246105 +g246107 +S'clutter' +p246109 +tp246110 +a(g246107 +g246109 +S'so' +p246111 +tp246112 +a(g246109 +g246111 +S'integral' +p246113 +tp246114 +a(g246111 +g246113 +S'to' +p246115 +tp246116 +a(g246113 +g246115 +S'manet\xe2\x80\x99s' +p246117 +tp246118 +a(g246115 +g246117 +S'portrait.' +p246119 +tp246120 +a(g246117 +g246119 +S'bazille' +p246121 +tp246122 +a(g246119 +g246121 +S'might' +p246123 +tp246124 +a(g246121 +g246123 +S'also' +p246125 +tp246126 +a(g246123 +g246125 +S'have' +p246127 +tp246128 +a(g246125 +g246127 +S'been' +p246129 +tp246130 +a(g246127 +g246129 +S'thinking' +p246131 +tp246132 +a(g246129 +g246131 +S'of' +p246133 +tp246134 +a(g246131 +g246133 +S'the' +p246135 +tp246136 +a(g246133 +g246135 +S'realist' +p246137 +tp246138 +a(g246135 +g246137 +S'portraits' +p246139 +tp246140 +a(g246137 +g246139 +S'of' +p246141 +tp246142 +a(g246139 +g246141 +S'gustave' +p246143 +tp246144 +a(g246141 +g246143 +S'courbet,' +p246145 +tp246146 +a(g246143 +g246145 +S'especially' +p246147 +tp246148 +a(g246145 +g246147 +S'the' +p246149 +tp246150 +a(g246147 +g246149 +S'portrait' +p246151 +tp246152 +a(g246149 +g246151 +S'of' +p246153 +tp246154 +a(g246151 +g246153 +S'his' +p246155 +tp246156 +a(g246153 +g246155 +S'patron' +p246157 +tp246158 +a(g246155 +g246157 +S'alfred' +p246159 +tp246160 +a(g246157 +g246159 +S'bruyas,' +p246161 +tp246162 +a(g246159 +g246161 +S'which' +p246163 +tp246164 +a(g246161 +g246163 +S'had' +p246165 +tp246166 +a(g246163 +g246165 +S'been' +p246167 +tp246168 +a(g246165 +g246167 +S'donated' +p246169 +tp246170 +a(g246167 +g246169 +S'to' +p246171 +tp246172 +a(g246169 +g246171 +S'the' +p246173 +tp246174 +a(g246171 +g246173 +S'musée' +p246175 +tp246176 +a(g246173 +g246175 +S'fabre' +p246177 +tp246178 +a(g246175 +g246177 +S'in' +p246179 +tp246180 +a(g246177 +g246179 +S'bazille\xe2\x80\x99s' +p246181 +tp246182 +a(g246179 +g246181 +S'hometown' +p246183 +tp246184 +a(g246181 +g246183 +S'of' +p246185 +tp246186 +a(g246183 +g246185 +S'montpellier' +p246187 +tp246188 +a(g246185 +g246187 +S'in' +p246189 +tp246190 +a(g246187 +g246189 +S'1868.' +p246191 +tp246192 +a(g246189 +g246191 +S'whatever' +p246193 +tp246194 +a(g246191 +g246193 +S'lessons' +p246195 +tp246196 +a(g246193 +g246195 +S'bazille' +p246197 +tp246198 +a(g246195 +g246197 +S'might' +p246199 +tp246200 +a(g246197 +g246199 +S'have' +p246201 +tp246202 +a(g246199 +g246201 +S'drawn' +p246203 +tp246204 +a(g246201 +g246203 +S'from' +p246205 +tp246206 +a(g246203 +g246205 +S'these' +p246207 +tp246208 +a(g246205 +g246207 +S'works,' +p246209 +tp246210 +a(g246207 +g246209 +S'his' +p246211 +tp246212 +a(g246209 +g246211 +S'portrait' +p246213 +tp246214 +a(g246211 +g246213 +S'of' +p246215 +tp246216 +a(g246213 +g246215 +S'maître' +p246217 +tp246218 +a(g246215 +g246217 +S'is' +p246219 +tp246220 +a(g246217 +g246219 +S'uniquely' +p246221 +tp246222 +a(g246219 +g246221 +S'his' +p246223 +tp246224 +a(g246221 +g246223 +S'own.' +p246225 +tp246226 +a(g246223 +g246225 +S'bazille' +p246227 +tp246228 +a(g246225 +g246227 +S'painted' +p246229 +tp246230 +a(g246227 +g246229 +S'maître' +p246231 +tp246232 +a(g246229 +g246231 +S'a' +p246233 +tp246234 +a(g246231 +g246233 +S'third' +p246235 +tp246236 +a(g246233 +g246235 +S'time,' +p246237 +tp246238 +a(g246235 +g246237 +S'including' +p246239 +tp246240 +a(g246237 +g246239 +S'him' +p246241 +tp246242 +a(g246239 +g246241 +S'in' +p246243 +tp246244 +a(g246241 +g246243 +S'the' +p246245 +tp246246 +a(g246243 +g246245 +S'large' +p246247 +tp246248 +a(g246245 +g246247 +S'composition' +p246249 +tp246250 +a(g246247 +g246249 +S'(text' +p246251 +tp246252 +a(g246249 +g246251 +S'by' +p246253 +tp246254 +a(g246251 +g246253 +S'kimberly' +p246255 +tp246256 +a(g246253 +g246255 +S'jones,' +p246257 +tp246258 +a(g246255 +g246257 +S'notes' +p246259 +tp246260 +a(g246257 +g246259 +S'' +p246263 +tp246264 +a(g246261 +g246263 +S'' +p246267 +tp246268 +a(g246265 +g246267 +S'gustave' +p246269 +tp246270 +a(g246267 +g246269 +S'caillebotte\xe2\x80\x99s' +p246271 +tp246272 +a(g246269 +g246271 +S'association' +p246273 +tp246274 +a(g246271 +g246273 +S'with' +p246275 +tp246276 +a(g246273 +g246275 +S'the' +p246277 +tp246278 +a(g246275 +g246277 +S'group' +p246279 +tp246280 +a(g246277 +g246279 +S'of' +p246281 +tp246282 +a(g246279 +g246281 +S'pioneering' +p246283 +tp246284 +a(g246281 +g246283 +S'artists' +p246285 +tp246286 +a(g246283 +g246285 +S'soon' +p246287 +tp246288 +a(g246285 +g246287 +S'to' +p246289 +tp246290 +a(g246287 +g246289 +S'be' +p246291 +tp246292 +a(g246289 +g246291 +S'dubbed' +p246293 +tp246294 +a(g246291 +g246293 +S'the' +p246295 +tp246296 +a(g246293 +g246295 +S'impressionists' +p246297 +tp246298 +a(g246295 +g246297 +S'began' +p246299 +tp246300 +a(g246297 +g246299 +S'with' +p246301 +tp246302 +a(g246299 +g246301 +S'their' +p246303 +tp246304 +a(g246301 +g246303 +S'first' +p246305 +tp246306 +a(g246303 +g246305 +S'exhibition' +p246307 +tp246308 +a(g246305 +g246307 +S'in' +p246309 +tp246310 +a(g246307 +g246309 +S'1874.' +p246311 +tp246312 +a(g246309 +g246311 +S'he' +p246313 +tp246314 +a(g246311 +g246313 +S'did' +p246315 +tp246316 +a(g246313 +g246315 +S'not' +p246317 +tp246318 +a(g246315 +g246317 +S'exhibit' +p246319 +tp246320 +a(g246317 +g246319 +S'there,' +p246321 +tp246322 +a(g246319 +g246321 +S'but' +p246323 +tp246324 +a(g246321 +g246323 +S'served' +p246325 +tp246326 +a(g246323 +g246325 +S'as' +p246327 +tp246328 +a(g246325 +g246327 +S'one' +p246329 +tp246330 +a(g246327 +g246329 +S'of' +p246331 +tp246332 +a(g246329 +g246331 +S'the' +p246333 +tp246334 +a(g246331 +g246333 +S'organizers.' +p246335 +tp246336 +a(g246333 +g246335 +S'this' +p246337 +tp246338 +a(g246335 +g246337 +S'role,' +p246339 +tp246340 +a(g246337 +g246339 +S'along' +p246341 +tp246342 +a(g246339 +g246341 +S'with' +p246343 +tp246344 +a(g246341 +g246343 +S'promoter' +p246345 +tp246346 +a(g246343 +g246345 +S'and' +p246347 +tp246348 +a(g246345 +g246347 +S'patron,' +p246349 +tp246350 +a(g246347 +g246349 +S'would' +p246351 +tp246352 +a(g246349 +g246351 +S'nearly' +p246353 +tp246354 +a(g246351 +g246353 +S'eclipse' +p246355 +tp246356 +a(g246353 +g246355 +S'his' +p246357 +tp246358 +a(g246355 +g246357 +S'accomplishments' +p246359 +tp246360 +a(g246357 +g246359 +S'as' +p246361 +tp246362 +a(g246359 +g246361 +S'a' +p246363 +tp246364 +a(g246361 +g246363 +S'painter.' +p246365 +tp246366 +a(g246363 +g246365 +S'indeed,' +p246367 +tp246368 +a(g246365 +g246367 +S'he' +p246369 +tp246370 +a(g246367 +g246369 +S'is' +p246371 +tp246372 +a(g246369 +g246371 +S'often' +p246373 +tp246374 +a(g246371 +g246373 +S'referred' +p246375 +tp246376 +a(g246373 +g246375 +S'to' +p246377 +tp246378 +a(g246375 +g246377 +S'as' +p246379 +tp246380 +a(g246377 +g246379 +S'the' +p246381 +tp246382 +a(g246379 +g246381 +S'unknown' +p246383 +tp246384 +a(g246381 +g246383 +S'impressionist.' +p246385 +tp246386 +a(g246383 +g246385 +S'with' +p246387 +tp246388 +a(g246385 +g246387 +S'the' +p246389 +tp246390 +a(g246387 +g246389 +S'financial' +p246391 +tp246392 +a(g246389 +g246391 +S'means' +p246393 +tp246394 +a(g246391 +g246393 +S'to' +p246395 +tp246396 +a(g246393 +g246395 +S'support' +p246397 +tp246398 +a(g246395 +g246397 +S'both' +p246399 +tp246400 +a(g246397 +g246399 +S'himself' +p246401 +tp246402 +a(g246399 +g246401 +S'and' +p246403 +tp246404 +a(g246401 +g246403 +S'his' +p246405 +tp246406 +a(g246403 +g246405 +S'fellow' +p246407 +tp246408 +a(g246405 +g246407 +S'painters,' +p246409 +tp246410 +a(g246407 +g246409 +S'caillebotte' +p246411 +tp246412 +a(g246409 +g246411 +S'did' +p246413 +tp246414 +a(g246411 +g246413 +S'not' +p246415 +tp246416 +a(g246413 +g246415 +S'need' +p246417 +tp246418 +a(g246415 +g246417 +S'to' +p246419 +tp246420 +a(g246417 +g246419 +S'rely' +p246421 +tp246422 +a(g246419 +g246421 +S'on' +p246423 +tp246424 +a(g246421 +g246423 +S'the' +p246425 +tp246426 +a(g246423 +g246425 +S'sale' +p246427 +tp246428 +a(g246425 +g246427 +S'of' +p246429 +tp246430 +a(g246427 +g246429 +S'his' +p246431 +tp246432 +a(g246429 +g246431 +S'paintings' +p246433 +tp246434 +a(g246431 +g246433 +S'to' +p246435 +tp246436 +a(g246433 +g246435 +S'make' +p246437 +tp246438 +a(g246435 +g246437 +S'a' +p246439 +tp246440 +a(g246437 +g246439 +S'living.' +p246441 +tp246442 +a(g246439 +g246441 +S'as' +p246443 +tp246444 +a(g246441 +g246443 +S'a' +p246445 +tp246446 +a(g246443 +g246445 +S'result,' +p246447 +tp246448 +a(g246445 +g246447 +S'many' +p246449 +tp246450 +a(g246447 +g246449 +S'of' +p246451 +tp246452 +a(g246449 +g246451 +S'his' +p246453 +tp246454 +a(g246451 +g246453 +S'paintings' +p246455 +tp246456 +a(g246453 +g246455 +S'remained' +p246457 +tp246458 +a(g246455 +g246457 +S'in' +p246459 +tp246460 +a(g246457 +g246459 +S'the' +p246461 +tp246462 +a(g246459 +g246461 +S'collections' +p246463 +tp246464 +a(g246461 +g246463 +S'of' +p246465 +tp246466 +a(g246463 +g246465 +S'family' +p246467 +tp246468 +a(g246465 +g246467 +S'and' +p246469 +tp246470 +a(g246467 +g246469 +S'friends,' +p246471 +tp246472 +a(g246469 +g246471 +S'out' +p246473 +tp246474 +a(g246471 +g246473 +S'of' +p246475 +tp246476 +a(g246473 +g246475 +S'public' +p246477 +tp246478 +a(g246475 +g246477 +S'view,' +p246479 +tp246480 +a(g246477 +g246479 +S'until' +p246481 +tp246482 +a(g246479 +g246481 +S'1951' +p246483 +tp246484 +a(g246481 +g246483 +S'when' +p246485 +tp246486 +a(g246483 +g246485 +S'the' +p246487 +tp246488 +a(g246485 +g246487 +S'first' +p246489 +tp246490 +a(g246487 +g246489 +S'major' +p246491 +tp246492 +a(g246489 +g246491 +S'exhibition' +p246493 +tp246494 +a(g246491 +g246493 +S'of' +p246495 +tp246496 +a(g246493 +g246495 +S'his' +p246497 +tp246498 +a(g246495 +g246497 +S'work' +p246499 +tp246500 +a(g246497 +g246499 +S'was' +p246501 +tp246502 +a(g246499 +g246501 +S'presented' +p246503 +tp246504 +a(g246501 +g246503 +S'at' +p246505 +tp246506 +a(g246503 +g246505 +S'wildenstein\xe2\x80\x99s' +p246507 +tp246508 +a(g246505 +g246507 +S'galerie' +p246509 +tp246510 +a(g246507 +g246509 +S'beaux-arts' +p246511 +tp246512 +a(g246509 +g246511 +S'in' +p246513 +tp246514 +a(g246511 +g246513 +S'paris.' +p246515 +tp246516 +a(g246513 +g246515 +S'of' +p246517 +tp246518 +a(g246515 +g246517 +S'the' +p246519 +tp246520 +a(g246517 +g246519 +S'eight' +p246521 +tp246522 +a(g246519 +g246521 +S'impressionist' +p246523 +tp246524 +a(g246521 +g246523 +S'exhibitions' +p246525 +tp246526 +a(g246523 +g246525 +S'held' +p246527 +tp246528 +a(g246525 +g246527 +S'from' +p246529 +tp246530 +a(g246527 +g246529 +S'1874' +p246531 +tp246532 +a(g246529 +g246531 +S'to' +p246533 +tp246534 +a(g246531 +g246533 +S'1886,' +p246535 +tp246536 +a(g246533 +g246535 +S'caillebotte' +p246537 +tp246538 +a(g246535 +g246537 +S'participated' +p246539 +tp246540 +a(g246537 +g246539 +S'in' +p246541 +tp246542 +a(g246539 +g246541 +S'five.' +p246543 +tp246544 +a(g246541 +g246543 +S'he' +p246545 +tp246546 +a(g246543 +g246545 +S'made' +p246547 +tp246548 +a(g246545 +g246547 +S'his' +p246549 +tp246550 +a(g246547 +g246549 +S'debut' +p246551 +tp246552 +a(g246549 +g246551 +S'as' +p246553 +tp246554 +a(g246551 +g246553 +S'a' +p246555 +tp246556 +a(g246553 +g246555 +S'painter' +p246557 +tp246558 +a(g246555 +g246557 +S'in' +p246559 +tp246560 +a(g246557 +g246559 +S'1876' +p246561 +tp246562 +a(g246559 +g246561 +S'in' +p246563 +tp246564 +a(g246561 +g246563 +S'the' +p246565 +tp246566 +a(g246563 +g246565 +S'second' +p246567 +tp246568 +a(g246565 +g246567 +S'impressionist' +p246569 +tp246570 +a(g246567 +g246569 +S'exhibition' +p246571 +tp246572 +a(g246569 +g246571 +S'with' +p246573 +tp246574 +a(g246571 +g246573 +S'a' +p246575 +tp246576 +a(g246573 +g246575 +S'series' +p246577 +tp246578 +a(g246575 +g246577 +S'of' +p246579 +tp246580 +a(g246577 +g246579 +S'works' +p246581 +tp246582 +a(g246579 +g246581 +S'depicting' +p246583 +tp246584 +a(g246581 +g246583 +S'indoor' +p246585 +tp246586 +a(g246583 +g246585 +S'and' +p246587 +tp246588 +a(g246585 +g246587 +S'outdoor' +p246589 +tp246590 +a(g246587 +g246589 +S'scenes' +p246591 +tp246592 +a(g246589 +g246591 +S'of' +p246593 +tp246594 +a(g246591 +g246593 +S'upper' +p246595 +tp246596 +a(g246593 +g246595 +S'middle-class' +p246597 +tp246598 +a(g246595 +g246597 +S'life' +p246599 +tp246600 +a(g246597 +g246599 +S'that' +p246601 +tp246602 +a(g246599 +g246601 +S'garnered' +p246603 +tp246604 +a(g246601 +g246603 +S'quite' +p246605 +tp246606 +a(g246603 +g246605 +S'a' +p246607 +tp246608 +a(g246605 +g246607 +S'bit' +p246609 +tp246610 +a(g246607 +g246609 +S'of' +p246611 +tp246612 +a(g246609 +g246611 +S'attention' +p246613 +tp246614 +a(g246611 +g246613 +S'in' +p246615 +tp246616 +a(g246613 +g246615 +S'the' +p246617 +tp246618 +a(g246615 +g246617 +S'press.' +p246619 +tp246620 +a(g246617 +g246619 +S'included' +p246621 +tp246622 +a(g246619 +g246621 +S'among' +p246623 +tp246624 +a(g246621 +g246623 +S'the' +p246625 +tp246626 +a(g246623 +g246625 +S'eight' +p246627 +tp246628 +a(g246625 +g246627 +S'paintings' +p246629 +tp246630 +a(g246627 +g246629 +S'he' +p246631 +tp246632 +a(g246629 +g246631 +S'showed' +p246633 +tp246634 +a(g246631 +g246633 +S'was' +p246635 +tp246636 +a(g246633 +g246635 +S'between' +p246637 +tp246638 +a(g246635 +g246637 +S'1877' +p246639 +tp246640 +a(g246637 +g246639 +S'and' +p246641 +tp246642 +a(g246639 +g246641 +S'1878,' +p246643 +tp246644 +a(g246641 +g246643 +S'caillebotte' +p246645 +tp246646 +a(g246643 +g246645 +S'made' +p246647 +tp246648 +a(g246645 +g246647 +S'a' +p246649 +tp246650 +a(g246647 +g246649 +S'series' +p246651 +tp246652 +a(g246649 +g246651 +S'of' +p246653 +tp246654 +a(g246651 +g246653 +S'paintings' +p246655 +tp246656 +a(g246653 +g246655 +S'focusing' +p246657 +tp246658 +a(g246655 +g246657 +S'on' +p246659 +tp246660 +a(g246657 +g246659 +S'swimmers,' +p246661 +tp246662 +a(g246659 +g246661 +S'fishermen,' +p246663 +tp246664 +a(g246661 +g246663 +S'rowers,' +p246665 +tp246666 +a(g246663 +g246665 +S'and' +p246667 +tp246668 +a(g246665 +g246667 +S'canoers' +p246669 +tp246670 +a(g246667 +g246669 +S'at' +p246671 +tp246672 +a(g246669 +g246671 +S'his' +p246673 +tp246674 +a(g246671 +g246673 +S'family' +p246675 +tp246676 +a(g246673 +g246675 +S'estate' +p246677 +tp246678 +a(g246675 +g246677 +S'in' +p246679 +tp246680 +a(g246677 +g246679 +S'yerres.' +p246681 +tp246682 +a(g246679 +g246681 +S'in' +p246683 +tp246684 +a(g246681 +g246683 +S'as' +p246685 +tp246686 +a(g246683 +g246685 +S'an' +p246687 +tp246688 +a(g246685 +g246687 +S'avid' +p246689 +tp246690 +a(g246687 +g246689 +S'sailor' +p246691 +tp246692 +a(g246689 +g246691 +S'and' +p246693 +tp246694 +a(g246691 +g246693 +S'designer' +p246695 +tp246696 +a(g246693 +g246695 +S'of' +p246697 +tp246698 +a(g246695 +g246697 +S'boats,' +p246699 +tp246700 +a(g246697 +g246699 +S'caillebotte' +p246701 +tp246702 +a(g246699 +g246701 +S'often' +p246703 +tp246704 +a(g246701 +g246703 +S'drew' +p246705 +tp246706 +a(g246703 +g246705 +S'upon' +p246707 +tp246708 +a(g246705 +g246707 +S'his' +p246709 +tp246710 +a(g246707 +g246709 +S'personal' +p246711 +tp246712 +a(g246709 +g246711 +S'experiences' +p246713 +tp246714 +a(g246711 +g246713 +S'in' +p246715 +tp246716 +a(g246713 +g246715 +S'his' +p246717 +tp246718 +a(g246715 +g246717 +S'paintings' +p246719 +tp246720 +a(g246717 +g246719 +S'(he' +p246721 +tp246722 +a(g246719 +g246721 +S'is' +p246723 +tp246724 +a(g246721 +g246723 +S'generally' +p246725 +tp246726 +a(g246723 +g246725 +S'identified' +p246727 +tp246728 +a(g246725 +g246727 +S'as' +p246729 +tp246730 +a(g246727 +g246729 +S'one' +p246731 +tp246732 +a(g246729 +g246731 +S'of' +p246733 +tp246734 +a(g246731 +g246733 +S'the' +p246735 +tp246736 +a(g246733 +g246735 +S'figures—the' +p246737 +tp246738 +a(g246735 +g246737 +S'man' +p246739 +tp246740 +a(g246737 +g246739 +S'in' +p246741 +tp246742 +a(g246739 +g246741 +S'the' +p246743 +tp246744 +a(g246741 +g246743 +S'white' +p246745 +tp246746 +a(g246743 +g246745 +S'jacket' +p246747 +tp246748 +a(g246745 +g246747 +S'and' +p246749 +tp246750 +a(g246747 +g246749 +S'straw' +p246751 +tp246752 +a(g246749 +g246751 +S'boating' +p246753 +tp246754 +a(g246751 +g246753 +S'hat—in' +p246755 +tp246756 +a(g246753 +g246755 +S'renoir\xe2\x80\x99s' +p246757 +tp246758 +a(g246755 +g246757 +S'after' +p246759 +tp246760 +a(g246757 +g246759 +S'the' +p246761 +tp246762 +a(g246759 +g246761 +S'premature' +p246763 +tp246764 +a(g246761 +g246763 +S'death' +p246765 +tp246766 +a(g246763 +g246765 +S'of' +p246767 +tp246768 +a(g246765 +g246767 +S'his' +p246769 +tp246770 +a(g246767 +g246769 +S'younger' +p246771 +tp246772 +a(g246769 +g246771 +S'brother' +p246773 +tp246774 +a(g246771 +g246773 +S'rené' +p246775 +tp246776 +a(g246773 +g246775 +S'in' +p246777 +tp246778 +a(g246775 +g246777 +S'1876,' +p246779 +tp246780 +a(g246777 +g246779 +S'caillebotte' +p246781 +tp246782 +a(g246779 +g246781 +S'addressed' +p246783 +tp246784 +a(g246781 +g246783 +S'his' +p246785 +tp246786 +a(g246783 +g246785 +S'own' +p246787 +tp246788 +a(g246785 +g246787 +S'mortality' +p246789 +tp246790 +a(g246787 +g246789 +S'and' +p246791 +tp246792 +a(g246789 +g246791 +S'drafted' +p246793 +tp246794 +a(g246791 +g246793 +S'his' +p246795 +tp246796 +a(g246793 +g246795 +S'will' +p246797 +tp246798 +a(g246795 +g246797 +S'in' +p246799 +tp246800 +a(g246797 +g246799 +S'1878' +p246801 +tp246802 +a(g246799 +g246801 +S'at' +p246803 +tp246804 +a(g246801 +g246803 +S'the' +p246805 +tp246806 +a(g246803 +g246805 +S'age' +p246807 +tp246808 +a(g246805 +g246807 +S'of' +p246809 +tp246810 +a(g246807 +g246809 +S'twenty-eight.' +p246811 +tp246812 +a(g246809 +g246811 +S'in' +p246813 +tp246814 +a(g246811 +g246813 +S'it,' +p246815 +tp246816 +a(g246813 +g246815 +S'he' +p246817 +tp246818 +a(g246815 +g246817 +S'designated' +p246819 +tp246820 +a(g246817 +g246819 +S'that' +p246821 +tp246822 +a(g246819 +g246821 +S'funds' +p246823 +tp246824 +a(g246821 +g246823 +S'be' +p246825 +tp246826 +a(g246823 +g246825 +S'set' +p246827 +tp246828 +a(g246825 +g246827 +S'aside' +p246829 +tp246830 +a(g246827 +g246829 +S'for' +p246831 +tp246832 +a(g246829 +g246831 +S'the' +p246833 +tp246834 +a(g246831 +g246833 +S'next' +p246835 +tp246836 +a(g246833 +g246835 +S'exhibition' +p246837 +tp246838 +a(g246835 +g246837 +S'of' +p246839 +tp246840 +a(g246837 +g246839 +S'impressionist' +p246841 +tp246842 +a(g246839 +g246841 +S'artists.' +p246843 +tp246844 +a(g246841 +g246843 +S'he' +p246845 +tp246846 +a(g246843 +g246845 +S'also' +p246847 +tp246848 +a(g246845 +g246847 +S'bequeathed' +p246849 +tp246850 +a(g246847 +g246849 +S'his' +p246851 +tp246852 +a(g246849 +g246851 +S'prized' +p246853 +tp246854 +a(g246851 +g246853 +S'collection' +p246855 +tp246856 +a(g246853 +g246855 +S'of' +p246857 +tp246858 +a(g246855 +g246857 +S'paintings' +p246859 +tp246860 +a(g246857 +g246859 +S'to' +p246861 +tp246862 +a(g246859 +g246861 +S'the' +p246863 +tp246864 +a(g246861 +g246863 +S'french' +p246865 +tp246866 +a(g246863 +g246865 +S'government,' +p246867 +tp246868 +a(g246865 +g246867 +S'stipulating' +p246869 +tp246870 +a(g246867 +g246869 +S'"that' +p246871 +tp246872 +a(g246869 +g246871 +S'these' +p246873 +tp246874 +a(g246871 +g246873 +S'paintings' +p246875 +tp246876 +a(g246873 +g246875 +S'not' +p246877 +tp246878 +a(g246875 +g246877 +S'end' +p246879 +tp246880 +a(g246877 +g246879 +S'up' +p246881 +tp246882 +a(g246879 +g246881 +S'in' +p246883 +tp246884 +a(g246881 +g246883 +S'an' +p246885 +tp246886 +a(g246883 +g246885 +S'attic' +p246887 +tp246888 +a(g246885 +g246887 +S'(storage' +p246889 +tp246890 +a(g246887 +g246889 +S'room)' +p246891 +tp246892 +a(g246889 +g246891 +S'or' +p246893 +tp246894 +a(g246891 +g246893 +S'a' +p246895 +tp246896 +a(g246893 +g246895 +S'provincial' +p246897 +tp246898 +a(g246895 +g246897 +S'museum' +p246899 +tp246900 +a(g246897 +g246899 +S'but' +p246901 +tp246902 +a(g246899 +g246901 +S'rather' +p246903 +tp246904 +a(g246901 +g246903 +S'in' +p246905 +tp246906 +a(g246903 +g246905 +S'the' +p246907 +tp246908 +a(g246905 +g246907 +S'luxembourg' +p246909 +tp246910 +a(g246907 +g246909 +S'and' +p246911 +tp246912 +a(g246909 +g246911 +S'later' +p246913 +tp246914 +a(g246911 +g246913 +S'in' +p246915 +tp246916 +a(g246913 +g246915 +S'the' +p246917 +tp246918 +a(g246915 +g246917 +S'louvre,' +p246919 +tp246920 +a(g246917 +g246919 +S'a' +p246921 +tp246922 +a(g246919 +g246921 +S'certain' +p246923 +tp246924 +a(g246921 +g246923 +S'lapse' +p246925 +tp246926 +a(g246923 +g246925 +S'of' +p246927 +tp246928 +a(g246925 +g246927 +S'time' +p246929 +tp246930 +a(g246927 +g246929 +S'[being]' +p246931 +tp246932 +a(g246929 +g246931 +S'necessary' +p246933 +tp246934 +a(g246931 +g246933 +S'before' +p246935 +tp246936 +a(g246933 +g246935 +S'the' +p246937 +tp246938 +a(g246935 +g246937 +S'execution' +p246939 +tp246940 +a(g246937 +g246939 +S'of' +p246941 +tp246942 +a(g246939 +g246941 +S'this' +p246943 +tp246944 +a(g246941 +g246943 +S'clause,' +p246945 +tp246946 +a(g246943 +g246945 +S'until' +p246947 +tp246948 +a(g246945 +g246947 +S'the' +p246949 +tp246950 +a(g246947 +g246949 +S'public' +p246951 +tp246952 +a(g246949 +g246951 +S'may,' +p246953 +tp246954 +a(g246951 +g246953 +S'i' +p246955 +tp246956 +a(g246953 +g246955 +S'do' +p246957 +tp246958 +a(g246955 +g246957 +S'not' +p246959 +tp246960 +a(g246957 +g246959 +S'say' +p246961 +tp246962 +a(g246959 +g246961 +S'understand,' +p246963 +tp246964 +a(g246961 +g246963 +S'but' +p246965 +tp246966 +a(g246963 +g246965 +S'admit' +p246967 +tp246968 +a(g246965 +g246967 +S'this' +p246969 +tp246970 +a(g246967 +g246969 +S'painting."' +p246971 +tp246972 +a(g246969 +g246971 +S'(text' +p246973 +tp246974 +a(g246971 +g246973 +S'by' +p246975 +tp246976 +a(g246973 +g246975 +S'michelle' +p246977 +tp246978 +a(g246975 +g246977 +S'bird,' +p246979 +tp246980 +a(g246977 +g246979 +S'notes' +p246981 +tp246982 +a(g246979 +g246981 +S'cézanne' +p246983 +tp246984 +a(g246981 +g246983 +S'painted' +p246985 +tp246986 +a(g246983 +g246985 +S'the' +p246987 +tp246988 +a(g246985 +g246987 +S'austere' +p246989 +tp246990 +a(g246987 +g246989 +S'and' +p246991 +tp246992 +a(g246989 +g246991 +S'elegant' +p246993 +tp246994 +a(g246991 +g246993 +S'pissarro' +p246995 +tp246996 +a(g246993 +g246995 +S'brought' +p246997 +tp246998 +a(g246995 +g246997 +S'cézanne' +p246999 +tp247000 +a(g246997 +g246999 +S'into' +p247001 +tp247002 +a(g246999 +g247001 +S'the' +p247003 +tp247004 +a(g247001 +g247003 +S'impressionist' +p247005 +tp247006 +a(g247003 +g247005 +S'movement' +p247007 +tp247008 +a(g247005 +g247007 +S'and' +p247009 +tp247010 +a(g247007 +g247009 +S'cézanne' +p247011 +tp247012 +a(g247009 +g247011 +S'showed' +p247013 +tp247014 +a(g247011 +g247013 +S'in' +p247015 +tp247016 +a(g247013 +g247015 +S'the' +p247017 +tp247018 +a(g247015 +g247017 +S'first' +p247019 +tp247020 +a(g247017 +g247019 +S'and' +p247021 +tp247022 +a(g247019 +g247021 +S'third' +p247023 +tp247024 +a(g247021 +g247023 +S'exhibitions,' +p247025 +tp247026 +a(g247023 +g247025 +S'but' +p247027 +tp247028 +a(g247025 +g247027 +S'in' +p247029 +tp247030 +a(g247027 +g247029 +S'the' +p247031 +tp247032 +a(g247029 +g247031 +S'late' +p247033 +tp247034 +a(g247031 +g247033 +S'1870s' +p247035 +tp247036 +a(g247033 +g247035 +S'he' +p247037 +tp247038 +a(g247035 +g247037 +S'stopped' +p247039 +tp247040 +a(g247037 +g247039 +S'exhibiting' +p247041 +tp247042 +a(g247039 +g247041 +S'in' +p247043 +tp247044 +a(g247041 +g247043 +S'paris' +p247045 +tp247046 +a(g247043 +g247045 +S'and' +p247047 +tp247048 +a(g247045 +g247047 +S'withdrew' +p247049 +tp247050 +a(g247047 +g247049 +S'to' +p247051 +tp247052 +a(g247049 +g247051 +S'aix.' +p247053 +tp247054 +a(g247051 +g247053 +S'through' +p247055 +tp247056 +a(g247053 +g247055 +S'the' +p247057 +tp247058 +a(g247055 +g247057 +S'patient' +p247059 +tp247060 +a(g247057 +g247059 +S'scrutiny' +p247061 +tp247062 +a(g247059 +g247061 +S'of' +p247063 +tp247064 +a(g247061 +g247063 +S'nature' +p247065 +tp247066 +a(g247063 +g247065 +S'that' +p247067 +tp247068 +a(g247065 +g247067 +S'pissarro' +p247069 +tp247070 +a(g247067 +g247069 +S'had' +p247071 +tp247072 +a(g247069 +g247071 +S'advised' +p247073 +tp247074 +a(g247071 +g247073 +S'and' +p247075 +tp247076 +a(g247073 +g247075 +S'which' +p247077 +tp247078 +a(g247075 +g247077 +S'cézanne' +p247079 +tp247080 +a(g247077 +g247079 +S'pursued' +p247081 +tp247082 +a(g247079 +g247081 +S'in' +p247083 +tp247084 +a(g247081 +g247083 +S'virtual' +p247085 +tp247086 +a(g247083 +g247085 +S'isolation' +p247087 +tp247088 +a(g247085 +g247087 +S'there,' +p247089 +tp247090 +a(g247087 +g247089 +S'the' +p247091 +tp247092 +a(g247089 +g247091 +S'dark' +p247093 +tp247094 +a(g247091 +g247093 +S'and' +p247095 +tp247096 +a(g247093 +g247095 +S'expressionistic' +p247097 +tp247098 +a(g247095 +g247097 +S'execution' +p247099 +tp247100 +a(g247097 +g247099 +S'that' +p247101 +tp247102 +a(g247099 +g247101 +S'characterized' +p247103 +tp247104 +a(g247101 +g247103 +S'his' +p247105 +tp247106 +a(g247103 +g247105 +S'early' +p247107 +tp247108 +a(g247105 +g247107 +S'work' +p247109 +tp247110 +a(g247107 +g247109 +S'was' +p247111 +tp247112 +a(g247109 +g247111 +S'transformed' +p247113 +tp247114 +a(g247111 +g247113 +S'into' +p247115 +tp247116 +a(g247113 +g247115 +S'his' +p247117 +tp247118 +a(g247115 +g247117 +S'profoundly' +p247119 +tp247120 +a(g247117 +g247119 +S'meditative' +p247121 +tp247122 +a(g247119 +g247121 +S'late' +p247123 +tp247124 +a(g247121 +g247123 +S'style.' +p247125 +tp247126 +a(g247123 +g247125 +S'degas' +p247127 +tp247128 +a(g247125 +g247127 +S'unleashed' +p247129 +tp247130 +a(g247127 +g247129 +S'his' +p247131 +tp247132 +a(g247129 +g247131 +S'biting' +p247133 +tp247134 +a(g247131 +g247133 +S'wit' +p247135 +tp247136 +a(g247133 +g247135 +S'on' +p247137 +tp247138 +a(g247135 +g247137 +S'many' +p247139 +tp247140 +a(g247137 +g247139 +S'of' +p247141 +tp247142 +a(g247139 +g247141 +S'his' +p247143 +tp247144 +a(g247141 +g247143 +S'colleagues,' +p247145 +tp247146 +a(g247143 +g247145 +S'but' +p247147 +tp247148 +a(g247145 +g247147 +S'was' +p247149 +tp247150 +a(g247147 +g247149 +S'impressed' +p247151 +tp247152 +a(g247149 +g247151 +S'with' +p247153 +tp247154 +a(g247151 +g247153 +S'the' +p247155 +tp247156 +a(g247153 +g247155 +S'work' +p247157 +tp247158 +a(g247155 +g247157 +S'of' +p247159 +tp247160 +a(g247157 +g247159 +S'american' +p247161 +tp247162 +a(g247159 +g247161 +S'artist' +p247163 +tp247164 +a(g247161 +g247163 +S'probably' +p247165 +tp247166 +a(g247163 +g247165 +S'it' +p247167 +tp247168 +a(g247165 +g247167 +S'is' +p247169 +tp247170 +a(g247167 +g247169 +S'cassatt' +p247171 +tp247172 +a(g247169 +g247171 +S'we' +p247173 +tp247174 +a(g247171 +g247173 +S'see' +p247175 +tp247176 +a(g247173 +g247175 +S'here.' +p247177 +tp247178 +a(g247175 +g247177 +S'degas' +p247179 +tp247180 +a(g247177 +g247179 +S'made' +p247181 +tp247182 +a(g247179 +g247181 +S'a' +p247183 +tp247184 +a(g247181 +g247183 +S'number' +p247185 +tp247186 +a(g247183 +g247185 +S'of' +p247187 +tp247188 +a(g247185 +g247187 +S'prints' +p247189 +tp247190 +a(g247187 +g247189 +S'and' +p247191 +tp247192 +a(g247189 +g247191 +S'pastels' +p247193 +tp247194 +a(g247191 +g247193 +S'of' +p247195 +tp247196 +a(g247193 +g247195 +S'cassatt' +p247197 +tp247198 +a(g247195 +g247197 +S'and' +p247199 +tp247200 +a(g247197 +g247199 +S'her' +p247201 +tp247202 +a(g247199 +g247201 +S'sister' +p247203 +tp247204 +a(g247201 +g247203 +S'during' +p247205 +tp247206 +a(g247203 +g247205 +S'visits' +p247207 +tp247208 +a(g247205 +g247207 +S'to' +p247209 +tp247210 +a(g247207 +g247209 +S'the' +p247211 +tp247212 +a(g247209 +g247211 +S'louvre' +p247213 +tp247214 +a(g247211 +g247213 +S'--' +p247215 +tp247216 +a(g247213 +g247215 +S'where,' +p247217 +tp247218 +a(g247215 +g247217 +S'in' +p247219 +tp247220 +a(g247217 +g247219 +S'fact,' +p247221 +tp247222 +a(g247219 +g247221 +S'she' +p247223 +tp247224 +a(g247221 +g247223 +S'and' +p247225 +tp247226 +a(g247223 +g247225 +S'degas' +p247227 +tp247228 +a(g247225 +g247227 +S'first' +p247229 +tp247230 +a(g247227 +g247229 +S'met.' +p247231 +tp247232 +a(g247229 +g247231 +S'these' +p247233 +tp247234 +a(g247231 +g247233 +S'works' +p247235 +tp247236 +a(g247233 +g247235 +S'make' +p247237 +tp247238 +a(g247235 +g247237 +S'it' +p247239 +tp247240 +a(g247237 +g247239 +S'possible' +p247241 +tp247242 +a(g247239 +g247241 +S'to' +p247243 +tp247244 +a(g247241 +g247243 +S'identify' +p247245 +tp247246 +a(g247243 +g247245 +S'the' +p247247 +tp247248 +a(g247245 +g247247 +S'setting' +p247249 +tp247250 +a(g247247 +g247249 +S'of' +p247251 +tp247252 +a(g247249 +g247251 +S'this' +p247253 +tp247254 +a(g247251 +g247253 +S'work.' +p247255 +tp247256 +a(g247253 +g247255 +S'although' +p247257 +tp247258 +a(g247255 +g247257 +S'painted' +p247259 +tp247260 +a(g247257 +g247259 +S'freely,' +p247261 +tp247262 +a(g247259 +g247261 +S"degas'" +p247263 +tp247264 +a(g247261 +g247263 +S'sketchy' +p247265 +tp247266 +a(g247263 +g247265 +S'brushstrokes' +p247267 +tp247268 +a(g247265 +g247267 +S'convey' +p247269 +tp247270 +a(g247267 +g247269 +S'the' +p247271 +tp247272 +a(g247269 +g247271 +S'surfaces' +p247273 +tp247274 +a(g247271 +g247273 +S'of' +p247275 +tp247276 +a(g247273 +g247275 +S'painted' +p247277 +tp247278 +a(g247275 +g247277 +S'canvases' +p247279 +tp247280 +a(g247277 +g247279 +S'in' +p247281 +tp247282 +a(g247279 +g247281 +S'heavy' +p247283 +tp247284 +a(g247281 +g247283 +S'gold' +p247285 +tp247286 +a(g247283 +g247285 +S'frames' +p247287 +tp247288 +a(g247285 +g247287 +S'and' +p247289 +tp247290 +a(g247287 +g247289 +S'the' +p247291 +tp247292 +a(g247289 +g247291 +S'pink' +p247293 +tp247294 +a(g247291 +g247293 +S'columns' +p247295 +tp247296 +a(g247293 +g247295 +S'still' +p247297 +tp247298 +a(g247295 +g247297 +S'found' +p247299 +tp247300 +a(g247297 +g247299 +S'in' +p247301 +tp247302 +a(g247299 +g247301 +S'the' +p247303 +tp247304 +a(g247301 +g247303 +S'grande' +p247305 +tp247306 +a(g247303 +g247305 +S'galerie.' +p247307 +tp247308 +a(g247305 +g247307 +S'the' +p247309 +tp247310 +a(g247307 +g247309 +S'line' +p247311 +tp247312 +a(g247309 +g247311 +S'of' +p247313 +tp247314 +a(g247311 +g247313 +S'mary' +p247315 +tp247316 +a(g247313 +g247315 +S"cassatt's" +p247317 +tp247318 +a(g247315 +g247317 +S'silhouette' +p247319 +tp247320 +a(g247317 +g247319 +S'and' +p247321 +tp247322 +a(g247319 +g247321 +S'the' +p247323 +tp247324 +a(g247321 +g247323 +S'tilt' +p247325 +tp247326 +a(g247323 +g247325 +S'of' +p247327 +tp247328 +a(g247325 +g247327 +S'her' +p247329 +tp247330 +a(g247327 +g247329 +S'head' +p247331 +tp247332 +a(g247329 +g247331 +S'are' +p247333 +tp247334 +a(g247331 +g247333 +S'lively' +p247335 +tp247336 +a(g247333 +g247335 +S'and' +p247337 +tp247338 +a(g247335 +g247337 +S'energetic,' +p247339 +tp247340 +a(g247337 +g247339 +S'but' +p247341 +tp247342 +a(g247339 +g247341 +S'her' +p247343 +tp247344 +a(g247341 +g247343 +S'expression' +p247345 +tp247346 +a(g247343 +g247345 +S'is' +p247347 +tp247348 +a(g247345 +g247347 +S'withheld' +p247349 +tp247350 +a(g247347 +g247349 +S'from' +p247351 +tp247352 +a(g247349 +g247351 +S'view.' +p247353 +tp247354 +a(g247351 +g247353 +S'through' +p247355 +tp247356 +a(g247353 +g247355 +S'the' +p247357 +tp247358 +a(g247355 +g247357 +S'1920s,' +p247359 +tp247360 +a(g247357 +g247359 +S'matisse' +p247361 +tp247362 +a(g247359 +g247361 +S'stayed' +p247363 +tp247364 +a(g247361 +g247363 +S'in' +p247365 +tp247366 +a(g247363 +g247365 +S'nice' +p247367 +tp247368 +a(g247365 +g247367 +S'from' +p247369 +tp247370 +a(g247367 +g247369 +S'late' +p247371 +tp247372 +a(g247369 +g247371 +S'fall' +p247373 +tp247374 +a(g247371 +g247373 +S'to' +p247375 +tp247376 +a(g247373 +g247375 +S'early' +p247377 +tp247378 +a(g247375 +g247377 +S'spring' +p247379 +tp247380 +a(g247377 +g247379 +S'of' +p247381 +tp247382 +a(g247379 +g247381 +S'each' +p247383 +tp247384 +a(g247381 +g247383 +S'year,' +p247385 +tp247386 +a(g247383 +g247385 +S'while' +p247387 +tp247388 +a(g247385 +g247387 +S'his' +p247389 +tp247390 +a(g247387 +g247389 +S'wife' +p247391 +tp247392 +a(g247389 +g247391 +S'and' +p247393 +tp247394 +a(g247391 +g247393 +S'family' +p247395 +tp247396 +a(g247393 +g247395 +S'remained' +p247397 +tp247398 +a(g247395 +g247397 +S'in' +p247399 +tp247400 +a(g247397 +g247399 +S'issy-les-moulineaux' +p247401 +tp247402 +a(g247399 +g247401 +S'outside' +p247403 +tp247404 +a(g247401 +g247403 +S'paris.' +p247405 +tp247406 +a(g247403 +g247405 +S'the' +p247407 +tp247408 +a(g247405 +g247407 +S'possible' +p247409 +tp247410 +a(g247407 +g247409 +S'psychological' +p247411 +tp247412 +a(g247409 +g247411 +S'complexities' +p247413 +tp247414 +a(g247411 +g247413 +S'of' +p247415 +tp247416 +a(g247413 +g247415 +S'the' +p247417 +tp247418 +a(g247415 +g247417 +S'painting' +p247419 +tp247420 +a(g247417 +g247419 +S'are' +p247421 +tp247422 +a(g247419 +g247421 +S'more' +p247423 +tp247424 +a(g247421 +g247423 +S'than' +p247425 +tp247426 +a(g247423 +g247425 +S'matched' +p247427 +tp247428 +a(g247425 +g247427 +S'by' +p247429 +tp247430 +a(g247427 +g247429 +S'those' +p247431 +tp247432 +a(g247429 +g247431 +S'of' +p247433 +tp247434 +a(g247431 +g247433 +S'its' +p247435 +tp247436 +a(g247433 +g247435 +S'pictorial' +p247437 +tp247438 +a(g247435 +g247437 +S'organization.' +p247439 +tp247440 +a(g247437 +g247439 +S'in' +p247441 +tp247442 +a(g247439 +g247441 +S'few' +p247443 +tp247444 +a(g247441 +g247443 +S'paintings' +p247445 +tp247446 +a(g247443 +g247445 +S'does' +p247447 +tp247448 +a(g247445 +g247447 +S'matisse' +p247449 +tp247450 +a(g247447 +g247449 +S'manage' +p247451 +tp247452 +a(g247449 +g247451 +S'to' +p247453 +tp247454 +a(g247451 +g247453 +S'control' +p247455 +tp247456 +a(g247453 +g247455 +S'such' +p247457 +tp247458 +a(g247455 +g247457 +S'an' +p247459 +tp247460 +a(g247457 +g247459 +S'extraordinary' +p247461 +tp247462 +a(g247459 +g247461 +S'proliferation' +p247463 +tp247464 +a(g247461 +g247463 +S'of' +p247465 +tp247466 +a(g247463 +g247465 +S'pattern' +p247467 +tp247468 +a(g247465 +g247467 +S'and' +p247469 +tp247470 +a(g247467 +g247469 +S'ornamentation.' +p247471 +tp247472 +a(g247469 +g247471 +S'to' +p247473 +tp247474 +a(g247471 +g247473 +S'this' +p247475 +tp247476 +a(g247473 +g247475 +S'decorative' +p247477 +tp247478 +a(g247475 +g247477 +S'profusion' +p247479 +tp247480 +a(g247477 +g247479 +S'matisse' +p247481 +tp247482 +a(g247479 +g247481 +S'adds' +p247483 +tp247484 +a(g247481 +g247483 +S'an' +p247485 +tp247486 +a(g247483 +g247485 +S'equivalent' +p247487 +tp247488 +a(g247485 +g247487 +S'abundance' +p247489 +tp247490 +a(g247487 +g247489 +S'of' +p247491 +tp247492 +a(g247489 +g247491 +S'perspectival' +p247493 +tp247494 +a(g247491 +g247493 +S'viewpoints:' +p247495 +tp247496 +a(g247493 +g247495 +S'piano,' +p247497 +tp247498 +a(g247495 +g247497 +S'chairs,' +p247499 +tp247500 +a(g247497 +g247499 +S'floor,' +p247501 +tp247502 +a(g247499 +g247501 +S'and' +p247503 +tp247504 +a(g247501 +g247503 +S'bureau' +p247505 +tp247506 +a(g247503 +g247505 +S'are' +p247507 +tp247508 +a(g247505 +g247507 +S'each' +p247509 +tp247510 +a(g247507 +g247509 +S'pictured' +p247511 +tp247512 +a(g247509 +g247511 +S'from' +p247513 +tp247514 +a(g247511 +g247513 +S'different' +p247515 +tp247516 +a(g247513 +g247515 +S'angles.' +p247517 +tp247518 +a(g247515 +g247517 +S'despite' +p247519 +tp247520 +a(g247517 +g247519 +S'the' +p247521 +tp247522 +a(g247519 +g247521 +S'wealth' +p247523 +tp247524 +a(g247521 +g247523 +S'of' +p247525 +tp247526 +a(g247523 +g247525 +S'pictorial' +p247527 +tp247528 +a(g247525 +g247527 +S'elements,' +p247529 +tp247530 +a(g247527 +g247529 +S'a' +p247531 +tp247532 +a(g247529 +g247531 +S'curious,' +p247533 +tp247534 +a(g247531 +g247533 +S'calm' +p247535 +tp247536 +a(g247533 +g247535 +S'order' +p247537 +tp247538 +a(g247535 +g247537 +S'of' +p247539 +tp247540 +a(g247537 +g247539 +S'structured' +p247541 +tp247542 +a(g247539 +g247541 +S'harmony' +p247543 +tp247544 +a(g247541 +g247543 +S'prevails.' +p247545 +tp247546 +a(g247543 +g247545 +S'pissarro,' +p247547 +tp247548 +a(g247545 +g247547 +S'who' +p247549 +tp247550 +a(g247547 +g247549 +S'was' +p247551 +tp247552 +a(g247549 +g247551 +S'committed' +p247553 +tp247554 +a(g247551 +g247553 +S'to' +p247555 +tp247556 +a(g247553 +g247555 +S'socialist' +p247557 +tp247558 +a(g247555 +g247557 +S'principles,' +p247559 +tp247560 +a(g247557 +g247559 +S'identified' +p247561 +tp247562 +a(g247559 +g247561 +S'strongly' +p247563 +tp247564 +a(g247561 +g247563 +S'with' +p247565 +tp247566 +a(g247563 +g247565 +S'the' +p247567 +tp247568 +a(g247565 +g247567 +S'land' +p247569 +tp247570 +a(g247567 +g247569 +S'and' +p247571 +tp247572 +a(g247569 +g247571 +S'with' +p247573 +tp247574 +a(g247571 +g247573 +S'the' +p247575 +tp247576 +a(g247573 +g247575 +S'peasant' +p247577 +tp247578 +a(g247575 +g247577 +S'farmers' +p247579 +tp247580 +a(g247577 +g247579 +S'who' +p247581 +tp247582 +a(g247579 +g247581 +S'worked' +p247583 +tp247584 +a(g247581 +g247583 +S'it.' +p247585 +tp247586 +a(g247583 +g247585 +S'he' +p247587 +tp247588 +a(g247585 +g247587 +S'moved' +p247589 +tp247590 +a(g247587 +g247589 +S'with' +p247591 +tp247592 +a(g247589 +g247591 +S'his' +p247593 +tp247594 +a(g247591 +g247593 +S'family' +p247595 +tp247596 +a(g247593 +g247595 +S'from' +p247597 +tp247598 +a(g247595 +g247597 +S'paris' +p247599 +tp247600 +a(g247597 +g247599 +S'in' +p247601 +tp247602 +a(g247599 +g247601 +S'the' +p247603 +tp247604 +a(g247601 +g247603 +S'1860s' +p247605 +tp247606 +a(g247603 +g247605 +S'to' +p247607 +tp247608 +a(g247605 +g247607 +S'a' +p247609 +tp247610 +a(g247607 +g247609 +S'number' +p247611 +tp247612 +a(g247609 +g247611 +S'of' +p247613 +tp247614 +a(g247611 +g247613 +S'small' +p247615 +tp247616 +a(g247613 +g247615 +S'villages' +p247617 +tp247618 +a(g247615 +g247617 +S'like' +p247619 +tp247620 +a(g247617 +g247619 +S'louveciennes.' +p247621 +tp247622 +a(g247619 +g247621 +S'while' +p247623 +tp247624 +a(g247621 +g247623 +S'many' +p247625 +tp247626 +a(g247623 +g247625 +S'of' +p247627 +tp247628 +a(g247625 +g247627 +S'his' +p247629 +tp247630 +a(g247627 +g247629 +S'fellow' +p247631 +tp247632 +a(g247629 +g247631 +S'impressionists' +p247633 +tp247634 +a(g247631 +g247633 +S'chose' +p247635 +tp247636 +a(g247633 +g247635 +S'subjects' +p247637 +tp247638 +a(g247635 +g247637 +S'from' +p247639 +tp247640 +a(g247637 +g247639 +S'modern' +p247641 +tp247642 +a(g247639 +g247641 +S'life' +p247643 +tp247644 +a(g247641 +g247643 +S'and' +p247645 +tp247646 +a(g247643 +g247645 +S'leisure,' +p247647 +tp247648 +a(g247645 +g247647 +S'sophisticated' +p247649 +tp247650 +a(g247647 +g247649 +S'even' +p247651 +tp247652 +a(g247649 +g247651 +S'if' +p247653 +tp247654 +a(g247651 +g247653 +S'their' +p247655 +tp247656 +a(g247653 +g247655 +S'settings' +p247657 +tp247658 +a(g247655 +g247657 +S'were' +p247659 +tp247660 +a(g247657 +g247659 +S'in' +p247661 +tp247662 +a(g247659 +g247661 +S'the' +p247663 +tp247664 +a(g247661 +g247663 +S'countryside,' +p247665 +tp247666 +a(g247663 +g247665 +S'pissarro' +p247667 +tp247668 +a(g247665 +g247667 +S'preferred' +p247669 +tp247670 +a(g247667 +g247669 +S'scenes' +p247671 +tp247672 +a(g247669 +g247671 +S'of' +p247673 +tp247674 +a(g247671 +g247673 +S'an' +p247675 +tp247676 +a(g247673 +g247675 +S'older,' +p247677 +tp247678 +a(g247675 +g247677 +S'more' +p247679 +tp247680 +a(g247677 +g247679 +S'rural' +p247681 +tp247682 +a(g247679 +g247681 +S'way' +p247683 +tp247684 +a(g247681 +g247683 +S'of' +p247685 +tp247686 +a(g247683 +g247685 +S'life' +p247687 +tp247688 +a(g247685 +g247687 +S'like' +p247689 +tp247690 +a(g247687 +g247689 +S'this' +p247691 +tp247692 +a(g247689 +g247691 +S'garden' +p247693 +tp247694 +a(g247691 +g247693 +S'fence' +p247695 +tp247696 +a(g247693 +g247695 +S'and' +p247697 +tp247698 +a(g247695 +g247697 +S'the' +p247699 +tp247700 +a(g247697 +g247699 +S'small' +p247701 +tp247702 +a(g247699 +g247701 +S'figures' +p247703 +tp247704 +a(g247701 +g247703 +S'who' +p247705 +tp247706 +a(g247703 +g247705 +S'pause' +p247707 +tp247708 +a(g247705 +g247707 +S'in' +p247709 +tp247710 +a(g247707 +g247709 +S'their' +p247711 +tp247712 +a(g247709 +g247711 +S'work.' +p247713 +tp247714 +a(g247711 +g247713 +S'some' +p247715 +tp247716 +a(g247713 +g247715 +S'contemporaries' +p247717 +tp247718 +a(g247715 +g247717 +S'criticized' +p247719 +tp247720 +a(g247717 +g247719 +S'pissarro' +p247721 +tp247722 +a(g247719 +g247721 +S'for' +p247723 +tp247724 +a(g247721 +g247723 +S'his' +p247725 +tp247726 +a(g247723 +g247725 +S'unadorned' +p247727 +tp247728 +a(g247725 +g247727 +S'rusticity.' +p247729 +tp247730 +a(g247727 +g247729 +S'about' +p247731 +tp247732 +a(g247729 +g247731 +S'it' +p247733 +tp247734 +a(g247731 +g247733 +S'was' +p247735 +tp247736 +a(g247733 +g247735 +S'in' +p247737 +tp247738 +a(g247735 +g247737 +S'the' +p247739 +tp247740 +a(g247737 +g247739 +S'early' +p247741 +tp247742 +a(g247739 +g247741 +S'1870s' +p247743 +tp247744 +a(g247741 +g247743 +S'that' +p247745 +tp247746 +a(g247743 +g247745 +S'pissarro' +p247747 +tp247748 +a(g247745 +g247747 +S'made' +p247749 +tp247750 +a(g247747 +g247749 +S'his' +p247751 +tp247752 +a(g247749 +g247751 +S'most' +p247753 +tp247754 +a(g247751 +g247753 +S'purely' +p247755 +tp247756 +a(g247753 +g247755 +S'impressionist' +p247757 +tp247758 +a(g247755 +g247757 +S'pictures,' +p247759 +tp247760 +a(g247757 +g247759 +S'painted,' +p247761 +tp247762 +a(g247759 +g247761 +S'as' +p247763 +tp247764 +a(g247761 +g247763 +S'this' +p247765 +tp247766 +a(g247763 +g247765 +S'one' +p247767 +tp247768 +a(g247765 +g247767 +S'probably' +p247769 +tp247770 +a(g247767 +g247769 +S'was,' +p247771 +tp247772 +a(g247769 +g247771 +S'in' +p247773 +tp247774 +a(g247771 +g247773 +S'a' +p247775 +tp247776 +a(g247773 +g247775 +S'single' +p247777 +tp247778 +a(g247775 +g247777 +S'session' +p247779 +tp247780 +a(g247777 +g247779 +S'on' +p247781 +tp247782 +a(g247779 +g247781 +S'the' +p247783 +tp247784 +a(g247781 +g247783 +S'spot.' +p247785 +tp247786 +a(g247783 +g247785 +S'the' +p247787 +tp247788 +a(g247785 +g247787 +S'paint' +p247789 +tp247790 +a(g247787 +g247789 +S'here' +p247791 +tp247792 +a(g247789 +g247791 +S'is' +p247793 +tp247794 +a(g247791 +g247793 +S'quickly' +p247795 +tp247796 +a(g247793 +g247795 +S'applied,' +p247797 +tp247798 +a(g247795 +g247797 +S'thick' +p247799 +tp247800 +a(g247797 +g247799 +S'in' +p247801 +tp247802 +a(g247799 +g247801 +S'some' +p247803 +tp247804 +a(g247801 +g247803 +S'areas,' +p247805 +tp247806 +a(g247803 +g247805 +S'much' +p247807 +tp247808 +a(g247805 +g247807 +S'thinner' +p247809 +tp247810 +a(g247807 +g247809 +S'in' +p247811 +tp247812 +a(g247809 +g247811 +S'others.' +p247813 +tp247814 +a(g247811 +g247813 +S'we' +p247815 +tp247816 +a(g247813 +g247815 +S'can' +p247817 +tp247818 +a(g247815 +g247817 +S'see,' +p247819 +tp247820 +a(g247817 +g247819 +S'in' +p247821 +tp247822 +a(g247819 +g247821 +S'the' +p247823 +tp247824 +a(g247821 +g247823 +S'trees,' +p247825 +tp247826 +a(g247823 +g247825 +S'for' +p247827 +tp247828 +a(g247825 +g247827 +S'example,' +p247829 +tp247830 +a(g247827 +g247829 +S'where' +p247831 +tp247832 +a(g247829 +g247831 +S'one' +p247833 +tp247834 +a(g247831 +g247833 +S'brushstroke' +p247835 +tp247836 +a(g247833 +g247835 +S'has' +p247837 +tp247838 +a(g247835 +g247837 +S'been' +p247839 +tp247840 +a(g247837 +g247839 +S'pulled' +p247841 +tp247842 +a(g247839 +g247841 +S'through' +p247843 +tp247844 +a(g247841 +g247843 +S'an' +p247845 +tp247846 +a(g247843 +g247845 +S'earlier' +p247847 +tp247848 +a(g247845 +g247847 +S'one' +p247849 +tp247850 +a(g247847 +g247849 +S'that' +p247851 +tp247852 +a(g247849 +g247851 +S'still' +p247853 +tp247854 +a(g247851 +g247853 +S'lay' +p247855 +tp247856 +a(g247853 +g247855 +S'wet' +p247857 +tp247858 +a(g247855 +g247857 +S'on' +p247859 +tp247860 +a(g247857 +g247859 +S'the' +p247861 +tp247862 +a(g247859 +g247861 +S'canvas.' +p247863 +tp247864 +a(g247861 +g247863 +S'maurice' +p247865 +tp247866 +a(g247863 +g247865 +S"prendergast's" +p247867 +tp247868 +a(g247865 +g247867 +S'optimistic' +p247869 +tp247870 +a(g247867 +g247869 +S'temperament' +p247871 +tp247872 +a(g247869 +g247871 +S'lends' +p247873 +tp247874 +a(g247871 +g247873 +S"prendergast's" +p247875 +tp247876 +a(g247873 +g247875 +S'avant-garde' +p247877 +tp247878 +a(g247875 +g247877 +S'style,' +p247879 +tp247880 +a(g247877 +g247879 +S'with' +p247881 +tp247882 +a(g247879 +g247881 +S'its' +p247883 +tp247884 +a(g247881 +g247883 +S'colorful' +p247885 +tp247886 +a(g247883 +g247885 +S'patches' +p247887 +tp247888 +a(g247885 +g247887 +S'of' +p247889 +tp247890 +a(g247887 +g247889 +S'paint' +p247891 +tp247892 +a(g247889 +g247891 +S'outlined' +p247893 +tp247894 +a(g247891 +g247893 +S'in' +p247895 +tp247896 +a(g247893 +g247895 +S'darker' +p247897 +tp247898 +a(g247895 +g247897 +S'shades,' +p247899 +tp247900 +a(g247897 +g247899 +S'has' +p247901 +tp247902 +a(g247899 +g247901 +S'been' +p247903 +tp247904 +a(g247901 +g247903 +S'compared' +p247905 +tp247906 +a(g247903 +g247905 +S'to' +p247907 +tp247908 +a(g247905 +g247907 +S'byzantine' +p247909 +tp247910 +a(g247907 +g247909 +S'mosaics' +p247911 +tp247912 +a(g247909 +g247911 +S'and' +p247913 +tp247914 +a(g247911 +g247913 +S'gothic' +p247915 +tp247916 +a(g247913 +g247915 +S'tapestries.' +p247917 +tp247918 +a(g247915 +g247917 +S'these' +p247919 +tp247920 +a(g247917 +g247919 +S'emphatic' +p247921 +tp247922 +a(g247919 +g247921 +S'decorative' +p247923 +tp247924 +a(g247921 +g247923 +S'patterns' +p247925 +tp247926 +a(g247923 +g247925 +S'owe' +p247927 +tp247928 +a(g247925 +g247927 +S'as' +p247929 +tp247930 +a(g247927 +g247929 +S'much,' +p247931 +tp247932 +a(g247929 +g247931 +S'or' +p247933 +tp247934 +a(g247931 +g247933 +S'more,' +p247935 +tp247936 +a(g247933 +g247935 +S'to' +p247937 +tp247938 +a(g247935 +g247937 +S'the' +p247939 +tp247940 +a(g247937 +g247939 +S'art' +p247941 +tp247942 +a(g247939 +g247941 +S'nouveau' +p247943 +tp247944 +a(g247941 +g247943 +S'posters' +p247945 +tp247946 +a(g247943 +g247945 +S'and' +p247947 +tp247948 +a(g247945 +g247947 +S'book' +p247949 +tp247950 +a(g247947 +g247949 +S'illustrations' +p247951 +tp247952 +a(g247949 +g247951 +S'he' +p247953 +tp247954 +a(g247951 +g247953 +S'designed' +p247955 +tp247956 +a(g247953 +g247955 +S'in' +p247957 +tp247958 +a(g247955 +g247957 +S'his' +p247959 +tp247960 +a(g247957 +g247959 +S'youth' +p247961 +tp247962 +a(g247959 +g247961 +S'as' +p247963 +tp247964 +a(g247961 +g247963 +S'a' +p247965 +tp247966 +a(g247963 +g247965 +S'graphic' +p247967 +tp247968 +a(g247965 +g247967 +S'artist.' +p247969 +tp247970 +a(g247967 +g247969 +S'although' +p247971 +tp247972 +a(g247969 +g247971 +S'prendergast' +p247973 +tp247974 +a(g247971 +g247973 +S'has' +p247975 +tp247976 +a(g247973 +g247975 +S'been' +p247977 +tp247978 +a(g247975 +g247977 +S'called' +p247979 +tp247980 +a(g247977 +g247979 +S'a' +p247981 +tp247982 +a(g247979 +g247981 +S'naive' +p247983 +tp247984 +a(g247981 +g247983 +S'or' +p247985 +tp247986 +a(g247983 +g247985 +S'untutored' +p247987 +tp247988 +a(g247985 +g247987 +S'artist,' +p247989 +tp247990 +a(g247987 +g247989 +S'his' +p247991 +tp247992 +a(g247989 +g247991 +S'background' +p247993 +tp247994 +a(g247991 +g247993 +S'included' +p247995 +tp247996 +a(g247993 +g247995 +S'six' +p247997 +tp247998 +a(g247995 +g247997 +S'extended' +p247999 +tp248000 +a(g247997 +g247999 +S'trips' +p248001 +tp248002 +a(g247999 +g248001 +S'to' +p248003 +tp248004 +a(g248001 +g248003 +S'europe,' +p248005 +tp248006 +a(g248003 +g248005 +S'where' +p248007 +tp248008 +a(g248005 +g248007 +S'he' +p248009 +tp248010 +a(g248007 +g248009 +S'studied' +p248011 +tp248012 +a(g248009 +g248011 +S'in' +p248013 +tp248014 +a(g248011 +g248013 +S'paris' +p248015 +tp248016 +a(g248013 +g248015 +S'and' +p248017 +tp248018 +a(g248015 +g248017 +S'sketched' +p248019 +tp248020 +a(g248017 +g248019 +S'at' +p248021 +tp248022 +a(g248019 +g248021 +S'museums' +p248023 +tp248024 +a(g248021 +g248023 +S'and' +p248025 +tp248026 +a(g248023 +g248025 +S'landmarks' +p248027 +tp248028 +a(g248025 +g248027 +S'throughout' +p248029 +tp248030 +a(g248027 +g248029 +S'france,' +p248031 +tp248032 +a(g248029 +g248031 +S'britain,' +p248033 +tp248034 +a(g248031 +g248033 +S'and' +p248035 +tp248036 +a(g248033 +g248035 +S'italy.' +p248037 +tp248038 +a(g248035 +g248037 +S'moreover,' +p248039 +tp248040 +a(g248037 +g248039 +S'he' +p248041 +tp248042 +a(g248039 +g248041 +S'was' +p248043 +tp248044 +a(g248041 +g248043 +S'conversant' +p248045 +tp248046 +a(g248043 +g248045 +S'about' +p248047 +tp248048 +a(g248045 +g248047 +S'the' +p248049 +tp248050 +a(g248047 +g248049 +S'most' +p248051 +tp248052 +a(g248049 +g248051 +S'radical' +p248053 +tp248054 +a(g248051 +g248053 +S'trends,' +p248055 +tp248056 +a(g248053 +g248055 +S'from' +p248057 +tp248058 +a(g248055 +g248057 +S'the' +p248059 +tp248060 +a(g248057 +g248059 +S'"art' +p248061 +tp248062 +a(g248059 +g248061 +S'for' +p248063 +tp248064 +a(g248061 +g248063 +S"art's" +p248065 +tp248066 +a(g248063 +g248065 +S'sake"' +p248067 +tp248068 +a(g248065 +g248067 +S'theories' +p248069 +tp248070 +a(g248067 +g248069 +S'of' +p248071 +tp248072 +a(g248069 +g248071 +S'james' +p248073 +tp248074 +a(g248071 +g248073 +S'mcneill' +p248075 +tp248076 +a(g248073 +g248075 +S'whistler' +p248077 +tp248078 +a(g248075 +g248077 +S'to' +p248079 +tp248080 +a(g248077 +g248079 +S'the' +p248081 +tp248082 +a(g248079 +g248081 +S'postimpressionism' +p248083 +tp248084 +a(g248081 +g248083 +S'of' +p248085 +tp248086 +a(g248083 +g248085 +S'paul' +p248087 +tp248088 +a(g248085 +g248087 +S'cézanne.' +p248089 +tp248090 +a(g248087 +g248089 +S'born' +p248091 +tp248092 +a(g248089 +g248091 +S'in' +p248093 +tp248094 +a(g248091 +g248093 +S'newfoundland,' +p248095 +tp248096 +a(g248093 +g248095 +S'canada,' +p248097 +tp248098 +a(g248095 +g248097 +S'maurice' +p248099 +tp248100 +a(g248097 +g248099 +S'prendergast' +p248101 +tp248102 +a(g248099 +g248101 +S'had' +p248103 +tp248104 +a(g248101 +g248103 +S'moved' +p248105 +tp248106 +a(g248103 +g248105 +S'as' +p248107 +tp248108 +a(g248105 +g248107 +S'a' +p248109 +tp248110 +a(g248107 +g248109 +S'child' +p248111 +tp248112 +a(g248109 +g248111 +S'to' +p248113 +tp248114 +a(g248111 +g248113 +S'boston.' +p248115 +tp248116 +a(g248113 +g248115 +S'this' +p248117 +tp248118 +a(g248115 +g248117 +S'shy' +p248119 +tp248120 +a(g248117 +g248119 +S'artist,' +p248121 +tp248122 +a(g248119 +g248121 +S'especially' +p248123 +tp248124 +a(g248121 +g248123 +S'acclaimed' +p248125 +tp248126 +a(g248123 +g248125 +S'for' +p248127 +tp248128 +a(g248125 +g248127 +S'his' +p248129 +tp248130 +a(g248127 +g248129 +S'technical' +p248131 +tp248132 +a(g248129 +g248131 +S'experiments' +p248133 +tp248134 +a(g248131 +g248133 +S'with' +p248135 +tp248136 +a(g248133 +g248135 +S'monotype' +p248137 +tp248138 +a(g248135 +g248137 +S'prints,' +p248139 +tp248140 +a(g248137 +g248139 +S'worked' +p248141 +tp248142 +a(g248139 +g248141 +S'in' +p248143 +tp248144 +a(g248141 +g248143 +S'the' +p248145 +tp248146 +a(g248143 +g248145 +S'studio' +p248147 +tp248148 +a(g248145 +g248147 +S'of' +p248149 +tp248150 +a(g248147 +g248149 +S'his' +p248151 +tp248152 +a(g248149 +g248151 +S'younger' +p248153 +tp248154 +a(g248151 +g248153 +S'brother,' +p248155 +tp248156 +a(g248153 +g248155 +S'charles' +p248157 +tp248158 +a(g248155 +g248157 +S'prendergast,' +p248159 +tp248160 +a(g248157 +g248159 +S'a' +p248161 +tp248162 +a(g248159 +g248161 +S'successful' +p248163 +tp248164 +a(g248161 +g248163 +S'picture' +p248165 +tp248166 +a(g248163 +g248165 +S'framer.' +p248167 +tp248168 +a(g248165 +g248167 +S'flooding' +p248169 +tp248170 +a(g248167 +g248169 +S'early' +p248171 +tp248172 +a(g248169 +g248171 +S'in' +p248173 +tp248174 +a(g248171 +g248173 +S'the' +p248175 +tp248176 +a(g248173 +g248175 +S'spring' +p248177 +tp248178 +a(g248175 +g248177 +S'of' +p248179 +tp248180 +a(g248177 +g248179 +S'1872' +p248181 +tp248182 +a(g248179 +g248181 +S'drew' +p248183 +tp248184 +a(g248181 +g248183 +S'sisley' +p248185 +tp248186 +a(g248183 +g248185 +S'to' +p248187 +tp248188 +a(g248185 +g248187 +S'port–marly,' +p248189 +tp248190 +a(g248187 +g248189 +S'a' +p248191 +tp248192 +a(g248189 +g248191 +S'village' +p248193 +tp248194 +a(g248191 +g248193 +S'on' +p248195 +tp248196 +a(g248193 +g248195 +S'the' +p248197 +tp248198 +a(g248195 +g248197 +S'seine' +p248199 +tp248200 +a(g248197 +g248199 +S'near' +p248201 +tp248202 +a(g248199 +g248201 +S'louveciennes,' +p248203 +tp248204 +a(g248201 +g248203 +S'the' +p248205 +tp248206 +a(g248203 +g248205 +S"artist's" +p248207 +tp248208 +a(g248205 +g248207 +S'home.' +p248209 +tp248210 +a(g248207 +g248209 +S'the' +p248211 +tp248212 +a(g248209 +g248211 +S'water' +p248213 +tp248214 +a(g248211 +g248213 +S'here' +p248215 +tp248216 +a(g248213 +g248215 +S'is' +p248217 +tp248218 +a(g248215 +g248217 +S'calm' +p248219 +tp248220 +a(g248217 +g248219 +S'and' +p248221 +tp248222 +a(g248219 +g248221 +S'human' +p248223 +tp248224 +a(g248221 +g248223 +S'activity' +p248225 +tp248226 +a(g248223 +g248225 +S'is' +p248227 +tp248228 +a(g248225 +g248227 +S'minimal.' +p248229 +tp248230 +a(g248227 +g248229 +S'rather' +p248231 +tp248232 +a(g248229 +g248231 +S'than' +p248233 +tp248234 +a(g248231 +g248233 +S'dramatic' +p248235 +tp248236 +a(g248233 +g248235 +S'or' +p248237 +tp248238 +a(g248235 +g248237 +S'picturesque' +p248239 +tp248240 +a(g248237 +g248239 +S'incident,' +p248241 +tp248242 +a(g248239 +g248241 +S'the' +p248243 +tp248244 +a(g248241 +g248243 +S"artist's" +p248245 +tp248246 +a(g248243 +g248245 +S'attention' +p248247 +tp248248 +a(g248245 +g248247 +S'was' +p248249 +tp248250 +a(g248247 +g248249 +S'engaged' +p248251 +tp248252 +a(g248249 +g248251 +S'by' +p248253 +tp248254 +a(g248251 +g248253 +S'purely' +p248255 +tp248256 +a(g248253 +g248255 +S'visual' +p248257 +tp248258 +a(g248255 +g248257 +S'effects' +p248259 +tp248260 +a(g248257 +g248259 +S'of' +p248261 +tp248262 +a(g248259 +g248261 +S'rain–laden' +p248263 +tp248264 +a(g248261 +g248263 +S'clouds' +p248265 +tp248266 +a(g248263 +g248265 +S'and' +p248267 +tp248268 +a(g248265 +g248267 +S'water–covered' +p248269 +tp248270 +a(g248267 +g248269 +S'streets.' +p248271 +tp248272 +a(g248269 +g248271 +S'the' +p248273 +tp248274 +a(g248271 +g248273 +S'tranquility' +p248275 +tp248276 +a(g248273 +g248275 +S'of' +p248277 +tp248278 +a(g248275 +g248277 +S'the' +p248279 +tp248280 +a(g248277 +g248279 +S'painting' +p248281 +tp248282 +a(g248279 +g248281 +S'and' +p248283 +tp248284 +a(g248281 +g248283 +S'the' +p248285 +tp248286 +a(g248283 +g248285 +S'directness' +p248287 +tp248288 +a(g248285 +g248287 +S'and' +p248289 +tp248290 +a(g248287 +g248289 +S'simplicity' +p248291 +tp248292 +a(g248289 +g248291 +S'of' +p248293 +tp248294 +a(g248291 +g248293 +S"sisley's" +p248295 +tp248296 +a(g248293 +g248295 +S'observation' +p248297 +tp248298 +a(g248295 +g248297 +S'are' +p248299 +tp248300 +a(g248297 +g248299 +S'qualities' +p248301 +tp248302 +a(g248299 +g248301 +S'derived' +p248303 +tp248304 +a(g248301 +g248303 +S'from' +p248305 +tp248306 +a(g248303 +g248305 +S'corot,' +p248307 +tp248308 +a(g248305 +g248307 +S'whom' +p248309 +tp248310 +a(g248307 +g248309 +S'sisley' +p248311 +tp248312 +a(g248309 +g248311 +S'had' +p248313 +tp248314 +a(g248311 +g248313 +S'met' +p248315 +tp248316 +a(g248313 +g248315 +S'in' +p248317 +tp248318 +a(g248315 +g248317 +S'the' +p248319 +tp248320 +a(g248317 +g248319 +S'1860s.' +p248321 +tp248322 +a(g248319 +g248321 +S'the' +p248323 +tp248324 +a(g248321 +g248323 +S'composition' +p248325 +tp248326 +a(g248323 +g248325 +S'is' +p248327 +tp248328 +a(g248325 +g248327 +S'traditional.' +p248329 +tp248330 +a(g248327 +g248329 +S'the' +p248331 +tp248332 +a(g248329 +g248331 +S'restaurant' +p248333 +tp248334 +a(g248331 +g248333 +S'à' +p248335 +tp248336 +a(g248333 +g248335 +S'saint' +p248337 +tp248338 +a(g248335 +g248337 +S'nicolas' +p248339 +tp248340 +a(g248337 +g248339 +S'at' +p248341 +tp248342 +a(g248339 +g248341 +S'the' +p248343 +tp248344 +a(g248341 +g248343 +S'left' +p248345 +tp248346 +a(g248343 +g248345 +S'and' +p248347 +tp248348 +a(g248345 +g248347 +S'the' +p248349 +tp248350 +a(g248347 +g248349 +S'erect' +p248351 +tp248352 +a(g248349 +g248351 +S'pylon' +p248353 +tp248354 +a(g248351 +g248353 +S'on' +p248355 +tp248356 +a(g248353 +g248355 +S'the' +p248357 +tp248358 +a(g248355 +g248357 +S'right' +p248359 +tp248360 +a(g248357 +g248359 +S'and' +p248361 +tp248362 +a(g248359 +g248361 +S'its' +p248363 +tp248364 +a(g248361 +g248363 +S'reflection' +p248365 +tp248366 +a(g248363 +g248365 +S'establish' +p248367 +tp248368 +a(g248365 +g248367 +S'a' +p248369 +tp248370 +a(g248367 +g248369 +S'stable' +p248371 +tp248372 +a(g248369 +g248371 +S'foreground' +p248373 +tp248374 +a(g248371 +g248373 +S'and' +p248375 +tp248376 +a(g248373 +g248375 +S'frame' +p248377 +tp248378 +a(g248375 +g248377 +S'an' +p248379 +tp248380 +a(g248377 +g248379 +S'opening' +p248381 +tp248382 +a(g248379 +g248381 +S'at' +p248383 +tp248384 +a(g248381 +g248383 +S'the' +p248385 +tp248386 +a(g248383 +g248385 +S'center' +p248387 +tp248388 +a(g248385 +g248387 +S'toward' +p248389 +tp248390 +a(g248387 +g248389 +S'a' +p248391 +tp248392 +a(g248389 +g248391 +S'stand' +p248393 +tp248394 +a(g248391 +g248393 +S'of' +p248395 +tp248396 +a(g248393 +g248395 +S'trees' +p248397 +tp248398 +a(g248395 +g248397 +S'and' +p248399 +tp248400 +a(g248397 +g248399 +S'distant' +p248401 +tp248402 +a(g248399 +g248401 +S'hillside.' +p248403 +tp248404 +a(g248401 +g248403 +S'the' +p248405 +tp248406 +a(g248403 +g248405 +S"artist's" +p248407 +tp248408 +a(g248405 +g248407 +S'handling,' +p248409 +tp248410 +a(g248407 +g248409 +S'however,' +p248411 +tp248412 +a(g248409 +g248411 +S'distinguishes' +p248413 +tp248414 +a(g248411 +g248413 +S'sisley' +p248415 +tp248416 +a(g248413 +g248415 +S'painted' +p248417 +tp248418 +a(g248415 +g248417 +S'the' +p248419 +tp248420 +a(g248417 +g248419 +S'floods' +p248421 +tp248422 +a(g248419 +g248421 +S'at' +p248423 +tp248424 +a(g248421 +g248423 +S'port–marly' +p248425 +tp248426 +a(g248423 +g248425 +S'again' +p248427 +tp248428 +a(g248425 +g248427 +S'in' +p248429 +tp248430 +a(g248427 +g248429 +S'1876,' +p248431 +tp248432 +a(g248429 +g248431 +S'echoing' +p248433 +tp248434 +a(g248431 +g248433 +S'this' +p248435 +tp248436 +a(g248433 +g248435 +S'1872' +p248437 +tp248438 +a(g248435 +g248437 +S'composition' +p248439 +tp248440 +a(g248437 +g248439 +S'in' +p248441 +tp248442 +a(g248439 +g248441 +S'two' +p248443 +tp248444 +a(g248441 +g248443 +S'virtually' +p248445 +tp248446 +a(g248443 +g248445 +S'identical' +p248447 +tp248448 +a(g248445 +g248447 +S'works.' +p248449 +tp248450 +a(g248447 +g248449 +S'such' +p248451 +tp248452 +a(g248449 +g248451 +S'repetition' +p248453 +tp248454 +a(g248451 +g248453 +S'was' +p248455 +tp248456 +a(g248453 +g248455 +S'unusual' +p248457 +tp248458 +a(g248455 +g248457 +S'for' +p248459 +tp248460 +a(g248457 +g248459 +S'sisley' +p248461 +tp248462 +a(g248459 +g248461 +S'and' +p248463 +tp248464 +a(g248461 +g248463 +S'suggests' +p248465 +tp248466 +a(g248463 +g248465 +S'that' +p248467 +tp248468 +a(g248465 +g248467 +S'he' +p248469 +tp248470 +a(g248467 +g248469 +S'found' +p248471 +tp248472 +a(g248469 +g248471 +S'the' +p248473 +tp248474 +a(g248471 +g248473 +S'motif' +p248475 +tp248476 +a(g248473 +g248475 +S'congenial' +p248477 +tp248478 +a(g248475 +g248477 +S'and' +p248479 +tp248480 +a(g248477 +g248479 +S'this' +p248481 +tp248482 +a(g248479 +g248481 +S'painting' +p248483 +tp248484 +a(g248481 +g248483 +S'successful.' +p248485 +tp248486 +a(g248483 +g248485 +S'degas' +p248487 +tp248488 +a(g248485 +g248487 +S'exhibited' +p248489 +tp248490 +a(g248487 +g248489 +S'only' +p248491 +tp248492 +a(g248489 +g248491 +S'one' +p248493 +tp248494 +a(g248491 +g248493 +S'sculpture' +p248495 +tp248496 +a(g248493 +g248495 +S'during' +p248497 +tp248498 +a(g248495 +g248497 +S'his' +p248499 +tp248500 +a(g248497 +g248499 +S'lifetime,' +p248501 +tp248502 +a(g248499 +g248501 +S'the' +p248503 +tp248504 +a(g248501 +g248503 +S'wax' +p248505 +tp248506 +a(g248503 +g248505 +S'in' +p248507 +tp248508 +a(g248505 +g248507 +S'his' +p248509 +tp248510 +a(g248507 +g248509 +S'other' +p248511 +tp248512 +a(g248509 +g248511 +S'sculptures,' +p248513 +tp248514 +a(g248511 +g248513 +S'not' +p248515 +tp248516 +a(g248513 +g248515 +S'meant' +p248517 +tp248518 +a(g248515 +g248517 +S'for' +p248519 +tp248520 +a(g248517 +g248519 +S'exhibition,' +p248521 +tp248522 +a(g248519 +g248521 +S'degas' +p248523 +tp248524 +a(g248521 +g248523 +S'worked' +p248525 +tp248526 +a(g248523 +g248525 +S'less' +p248527 +tp248528 +a(g248525 +g248527 +S'in' +p248529 +tp248530 +a(g248527 +g248529 +S'pursuit' +p248531 +tp248532 +a(g248529 +g248531 +S'of' +p248533 +tp248534 +a(g248531 +g248533 +S'perfect' +p248535 +tp248536 +a(g248533 +g248535 +S'forms' +p248537 +tp248538 +a(g248535 +g248537 +S'than' +p248539 +tp248540 +a(g248537 +g248539 +S'in' +p248541 +tp248542 +a(g248539 +g248541 +S'restless' +p248543 +tp248544 +a(g248541 +g248543 +S'exploration' +p248545 +tp248546 +a(g248543 +g248545 +S'of' +p248547 +tp248548 +a(g248545 +g248547 +S'movement' +p248549 +tp248550 +a(g248547 +g248549 +S'and' +p248551 +tp248552 +a(g248549 +g248551 +S'composition.' +p248553 +tp248554 +a(g248551 +g248553 +S'using' +p248555 +tp248556 +a(g248553 +g248555 +S'soft,' +p248557 +tp248558 +a(g248555 +g248557 +S'pliable' +p248559 +tp248560 +a(g248557 +g248559 +S'materials,' +p248561 +tp248562 +a(g248559 +g248561 +S'he' +p248563 +tp248564 +a(g248561 +g248563 +S'built' +p248565 +tp248566 +a(g248563 +g248565 +S'up' +p248567 +tp248568 +a(g248565 +g248567 +S'his' +p248569 +tp248570 +a(g248567 +g248569 +S'figures' +p248571 +tp248572 +a(g248569 +g248571 +S'on' +p248573 +tp248574 +a(g248571 +g248573 +S'makeshift' +p248575 +tp248576 +a(g248573 +g248575 +S'armatures' +p248577 +tp248578 +a(g248575 +g248577 +S'reinforced' +p248579 +tp248580 +a(g248577 +g248579 +S'with' +p248581 +tp248582 +a(g248579 +g248581 +S'brush' +p248583 +tp248584 +a(g248581 +g248583 +S'handles,' +p248585 +tp248586 +a(g248583 +g248585 +S'matches,' +p248587 +tp248588 +a(g248585 +g248587 +S'or' +p248589 +tp248590 +a(g248587 +g248589 +S'whatever' +p248591 +tp248592 +a(g248589 +g248591 +S'else' +p248593 +tp248594 +a(g248591 +g248593 +S'was' +p248595 +tp248596 +a(g248593 +g248595 +S'at' +p248597 +tp248598 +a(g248595 +g248597 +S'hand.' +p248599 +tp248600 +a(g248597 +g248599 +S'the' +p248601 +tp248602 +a(g248599 +g248601 +S'waxes,' +p248603 +tp248604 +a(g248601 +g248603 +S'whose' +p248605 +tp248606 +a(g248603 +g248605 +S'lumpish' +p248607 +tp248608 +a(g248605 +g248607 +S'surfaces' +p248609 +tp248610 +a(g248607 +g248609 +S'leave' +p248611 +tp248612 +a(g248609 +g248611 +S'his' +p248613 +tp248614 +a(g248611 +g248613 +S'labor' +p248615 +tp248616 +a(g248613 +g248615 +S'visible,' +p248617 +tp248618 +a(g248615 +g248617 +S'have' +p248619 +tp248620 +a(g248617 +g248619 +S'a' +p248621 +tp248622 +a(g248619 +g248621 +S'translucent' +p248623 +tp248624 +a(g248621 +g248623 +S'character' +p248625 +tp248626 +a(g248623 +g248625 +S'that' +p248627 +tp248628 +a(g248625 +g248627 +S'conveys' +p248629 +tp248630 +a(g248627 +g248629 +S'an' +p248631 +tp248632 +a(g248629 +g248631 +S'astonishing' +p248633 +tp248634 +a(g248631 +g248633 +S'sense' +p248635 +tp248636 +a(g248633 +g248635 +S'of' +p248637 +tp248638 +a(g248635 +g248637 +S'life.' +p248639 +tp248640 +a(g248637 +g248639 +S'like' +p248641 +tp248642 +a(g248639 +g248641 +S'the' +p248643 +tp248644 +a(g248641 +g248643 +S'escher' +p248645 +tp248646 +a(g248643 +g248645 +S'spent' +p248647 +tp248648 +a(g248645 +g248647 +S'the' +p248649 +tp248650 +a(g248647 +g248649 +S'early' +p248651 +tp248652 +a(g248649 +g248651 +S'part' +p248653 +tp248654 +a(g248651 +g248653 +S'of' +p248655 +tp248656 +a(g248653 +g248655 +S'the' +p248657 +tp248658 +a(g248655 +g248657 +S'summer' +p248659 +tp248660 +a(g248657 +g248659 +S'of' +p248661 +tp248662 +a(g248659 +g248661 +S'1931' +p248663 +tp248664 +a(g248661 +g248663 +S'in' +p248665 +tp248666 +a(g248663 +g248665 +S'ravello' +p248667 +tp248668 +a(g248665 +g248667 +S'and' +p248669 +tp248670 +a(g248667 +g248669 +S'along' +p248671 +tp248672 +a(g248669 +g248671 +S'the' +p248673 +tp248674 +a(g248671 +g248673 +S'coast' +p248675 +tp248676 +a(g248673 +g248675 +S'of' +p248677 +tp248678 +a(g248675 +g248677 +S'amalfi,' +p248679 +tp248680 +a(g248677 +g248679 +S'italy.' +p248681 +tp248682 +a(g248679 +g248681 +S'with' +p248683 +tp248684 +a(g248681 +g248683 +S'its' +p248685 +tp248686 +a(g248683 +g248685 +S'dramatic' +p248687 +tp248688 +a(g248685 +g248687 +S'mountains' +p248689 +tp248690 +a(g248687 +g248689 +S'and' +p248691 +tp248692 +a(g248689 +g248691 +S'ancient' +p248693 +tp248694 +a(g248691 +g248693 +S'hill' +p248695 +tp248696 +a(g248693 +g248695 +S'towns' +p248697 +tp248698 +a(g248695 +g248697 +S'this' +p248699 +tp248700 +a(g248697 +g248699 +S'was' +p248701 +tp248702 +a(g248699 +g248701 +S'a' +p248703 +tp248704 +a(g248701 +g248703 +S'particularly' +p248705 +tp248706 +a(g248703 +g248705 +S'favorite' +p248707 +tp248708 +a(g248705 +g248707 +S'region' +p248709 +tp248710 +a(g248707 +g248709 +S'for' +p248711 +tp248712 +a(g248709 +g248711 +S'escher.' +p248713 +tp248714 +a(g248711 +g248713 +S'drawings' +p248715 +tp248716 +a(g248713 +g248715 +S'from' +p248717 +tp248718 +a(g248715 +g248717 +S'the' +p248719 +tp248720 +a(g248717 +g248719 +S'trip,' +p248721 +tp248722 +a(g248719 +g248721 +S'including' +p248723 +tp248724 +a(g248721 +g248723 +S'this' +p248725 +tp248726 +a(g248723 +g248725 +S'example,' +p248727 +tp248728 +a(g248725 +g248727 +S'inspired' +p248729 +tp248730 +a(g248727 +g248729 +S'15' +p248731 +tp248732 +a(g248729 +g248731 +S'woodcuts,' +p248733 +tp248734 +a(g248731 +g248733 +S'wood' +p248735 +tp248736 +a(g248733 +g248735 +S'engravings,' +p248737 +tp248738 +a(g248735 +g248737 +S'and' +p248739 +tp248740 +a(g248737 +g248739 +S'lithographs.' +p248741 +tp248742 +a(g248739 +g248741 +S'for' +p248743 +tp248744 +a(g248741 +g248743 +S'this' +p248745 +tp248746 +a(g248743 +g248745 +S'depiction' +p248747 +tp248748 +a(g248745 +g248747 +S'of' +p248749 +tp248750 +a(g248747 +g248749 +S'joseph' +p248751 +tp248752 +a(g248749 +g248751 +S'spurning' +p248753 +tp248754 +a(g248751 +g248753 +S'the' +p248755 +tp248756 +a(g248753 +g248755 +S'advances' +p248757 +tp248758 +a(g248755 +g248757 +S'of' +p248759 +tp248760 +a(g248757 +g248759 +S'his' +p248761 +tp248762 +a(g248759 +g248761 +S'egyptian' +p248763 +tp248764 +a(g248761 +g248763 +S"employer's" +p248765 +tp248766 +a(g248763 +g248765 +S'wife,' +p248767 +tp248768 +a(g248765 +g248767 +S'as' +p248769 +tp248770 +a(g248767 +g248769 +S'recounted' +p248771 +tp248772 +a(g248769 +g248771 +S'in' +p248773 +tp248774 +a(g248771 +g248773 +S'the' +p248775 +tp248776 +a(g248773 +g248775 +S'book' +p248777 +tp248778 +a(g248775 +g248777 +S'of' +p248779 +tp248780 +a(g248777 +g248779 +S'genesis,' +p248781 +tp248782 +a(g248779 +g248781 +S'guercino' +p248783 +tp248784 +a(g248781 +g248783 +S'chose' +p248785 +tp248786 +a(g248783 +g248785 +S'a' +p248787 +tp248788 +a(g248785 +g248787 +S'three-quarter' +p248789 +tp248790 +a(g248787 +g248789 +S'length' +p248791 +tp248792 +a(g248789 +g248791 +S'format' +p248793 +tp248794 +a(g248791 +g248793 +S'that' +p248795 +tp248796 +a(g248793 +g248795 +S'presses' +p248797 +tp248798 +a(g248795 +g248797 +S'the' +p248799 +tp248800 +a(g248797 +g248799 +S'life-sized' +p248801 +tp248802 +a(g248799 +g248801 +S'figures' +p248803 +tp248804 +a(g248801 +g248803 +S'close' +p248805 +tp248806 +a(g248803 +g248805 +S'to' +p248807 +tp248808 +a(g248805 +g248807 +S'the' +p248809 +tp248810 +a(g248807 +g248809 +S'spectator.' +p248811 +tp248812 +a(g248809 +g248811 +S'he' +p248813 +tp248814 +a(g248811 +g248813 +S'has' +p248815 +tp248816 +a(g248813 +g248815 +S'filled' +p248817 +tp248818 +a(g248815 +g248817 +S'the' +p248819 +tp248820 +a(g248817 +g248819 +S'scene' +p248821 +tp248822 +a(g248819 +g248821 +S'with' +p248823 +tp248824 +a(g248821 +g248823 +S'the' +p248825 +tp248826 +a(g248823 +g248825 +S'bed' +p248827 +tp248828 +a(g248825 +g248827 +S'--' +p248829 +tp248830 +a(g248827 +g248829 +S'all' +p248831 +tp248832 +a(g248829 +g248831 +S'rumpled' +p248833 +tp248834 +a(g248831 +g248833 +S'sheets' +p248835 +tp248836 +a(g248833 +g248835 +S'and' +p248837 +tp248838 +a(g248835 +g248837 +S'opulent' +p248839 +tp248840 +a(g248837 +g248839 +S'curtains.' +p248841 +tp248842 +a(g248839 +g248841 +S'as' +p248843 +tp248844 +a(g248841 +g248843 +S'the' +p248845 +tp248846 +a(g248843 +g248845 +S'temptress' +p248847 +tp248848 +a(g248845 +g248847 +S'reaches' +p248849 +tp248850 +a(g248847 +g248849 +S'for' +p248851 +tp248852 +a(g248849 +g248851 +S'the' +p248853 +tp248854 +a(g248851 +g248853 +S'strong' +p248855 +tp248856 +a(g248853 +g248855 +S'and' +p248857 +tp248858 +a(g248855 +g248857 +S'handsome' +p248859 +tp248860 +a(g248857 +g248859 +S'joseph,' +p248861 +tp248862 +a(g248859 +g248861 +S'he' +p248863 +tp248864 +a(g248861 +g248863 +S'struggles' +p248865 +tp248866 +a(g248863 +g248865 +S'vigorously' +p248867 +tp248868 +a(g248865 +g248867 +S'to' +p248869 +tp248870 +a(g248867 +g248869 +S'extricate' +p248871 +tp248872 +a(g248869 +g248871 +S'himself.' +p248873 +tp248874 +a(g248871 +g248873 +S'but' +p248875 +tp248876 +a(g248873 +g248875 +S'she' +p248877 +tp248878 +a(g248875 +g248877 +S'holds' +p248879 +tp248880 +a(g248877 +g248879 +S'tight' +p248881 +tp248882 +a(g248879 +g248881 +S'to' +p248883 +tp248884 +a(g248881 +g248883 +S'the' +p248885 +tp248886 +a(g248883 +g248885 +S'vivid' +p248887 +tp248888 +a(g248885 +g248887 +S'blue' +p248889 +tp248890 +a(g248887 +g248889 +S'cloak' +p248891 +tp248892 +a(g248889 +g248891 +S'and' +p248893 +tp248894 +a(g248891 +g248893 +S'sets' +p248895 +tp248896 +a(g248893 +g248895 +S'joseph' +p248897 +tp248898 +a(g248895 +g248897 +S'spinning' +p248899 +tp248900 +a(g248897 +g248899 +S'like' +p248901 +tp248902 +a(g248899 +g248901 +S'a' +p248903 +tp248904 +a(g248901 +g248903 +S'top' +p248905 +tp248906 +a(g248903 +g248905 +S'out' +p248907 +tp248908 +a(g248905 +g248907 +S'of' +p248909 +tp248910 +a(g248907 +g248909 +S'his' +p248911 +tp248912 +a(g248909 +g248911 +S'garment.' +p248913 +tp248914 +a(g248911 +g248913 +S'in' +p248915 +tp248916 +a(g248913 +g248915 +S'panic,' +p248917 +tp248918 +a(g248915 +g248917 +S'he' +p248919 +tp248920 +a(g248917 +g248919 +S'turns' +p248921 +tp248922 +a(g248919 +g248921 +S'his' +p248923 +tp248924 +a(g248921 +g248923 +S'imploring' +p248925 +tp248926 +a(g248923 +g248925 +S'eyes' +p248927 +tp248928 +a(g248925 +g248927 +S'heavenward,' +p248929 +tp248930 +a(g248927 +g248929 +S'seeming' +p248931 +tp248932 +a(g248929 +g248931 +S'to' +p248933 +tp248934 +a(g248931 +g248933 +S'realize' +p248935 +tp248936 +a(g248933 +g248935 +S'that' +p248937 +tp248938 +a(g248935 +g248937 +S'even' +p248939 +tp248940 +a(g248937 +g248939 +S'if' +p248941 +tp248942 +a(g248939 +g248941 +S'he' +p248943 +tp248944 +a(g248941 +g248943 +S'escapes' +p248945 +tp248946 +a(g248943 +g248945 +S'with' +p248947 +tp248948 +a(g248945 +g248947 +S'his' +p248949 +tp248950 +a(g248947 +g248949 +S'virtue' +p248951 +tp248952 +a(g248949 +g248951 +S'unscathed,' +p248953 +tp248954 +a(g248951 +g248953 +S'he' +p248955 +tp248956 +a(g248953 +g248955 +S'is' +p248957 +tp248958 +a(g248955 +g248957 +S'helplessly' +p248959 +tp248960 +a(g248957 +g248959 +S'ensnared' +p248961 +tp248962 +a(g248959 +g248961 +S'in' +p248963 +tp248964 +a(g248961 +g248963 +S'an' +p248965 +tp248966 +a(g248963 +g248965 +S'evil' +p248967 +tp248968 +a(g248965 +g248967 +S'plot;' +p248969 +tp248970 +a(g248967 +g248969 +S"potiphar's" +p248971 +tp248972 +a(g248969 +g248971 +S'wife,' +p248973 +tp248974 +a(g248971 +g248973 +S'bejeweled' +p248975 +tp248976 +a(g248973 +g248975 +S'and' +p248977 +tp248978 +a(g248975 +g248977 +S'confident,' +p248979 +tp248980 +a(g248977 +g248979 +S'will' +p248981 +tp248982 +a(g248979 +g248981 +S'later' +p248983 +tp248984 +a(g248981 +g248983 +S'use' +p248985 +tp248986 +a(g248983 +g248985 +S'the' +p248987 +tp248988 +a(g248985 +g248987 +S'cloak' +p248989 +tp248990 +a(g248987 +g248989 +S'to' +p248991 +tp248992 +a(g248989 +g248991 +S'support' +p248993 +tp248994 +a(g248991 +g248993 +S'her' +p248995 +tp248996 +a(g248993 +g248995 +S'denunciation' +p248997 +tp248998 +a(g248995 +g248997 +S'of' +p248999 +tp249000 +a(g248997 +g248999 +S'joseph' +p249001 +tp249002 +a(g248999 +g249001 +S'as' +p249003 +tp249004 +a(g249001 +g249003 +S'the' +p249005 +tp249006 +a(g249003 +g249005 +S'aggressor.' +p249007 +tp249008 +a(g249005 +g249007 +S'with' +p249009 +tp249010 +a(g249007 +g249009 +S'a' +p249011 +tp249012 +a(g249009 +g249011 +S'delicate' +p249013 +tp249014 +a(g249011 +g249013 +S'play' +p249015 +tp249016 +a(g249013 +g249015 +S'of' +p249017 +tp249018 +a(g249015 +g249017 +S'light' +p249019 +tp249020 +a(g249017 +g249019 +S'on' +p249021 +tp249022 +a(g249019 +g249021 +S'the' +p249023 +tp249024 +a(g249021 +g249023 +S"seductress'" +p249025 +tp249026 +a(g249023 +g249025 +S'profile,' +p249027 +tp249028 +a(g249025 +g249027 +S'the' +p249029 +tp249030 +a(g249027 +g249029 +S'artist' +p249031 +tp249032 +a(g249029 +g249031 +S'shows' +p249033 +tp249034 +a(g249031 +g249033 +S'the' +p249035 +tp249036 +a(g249033 +g249035 +S'very' +p249037 +tp249038 +a(g249035 +g249037 +S'moment' +p249039 +tp249040 +a(g249037 +g249039 +S'of' +p249041 +tp249042 +a(g249039 +g249041 +S'lust' +p249043 +tp249044 +a(g249041 +g249043 +S'shading' +p249045 +tp249046 +a(g249043 +g249045 +S'into' +p249047 +tp249048 +a(g249045 +g249047 +S'treachery.' +p249049 +tp249050 +a(g249047 +g249049 +S'if' +p249051 +tp249052 +a(g249049 +g249051 +S"guercino's" +p249053 +tp249054 +a(g249051 +g249053 +S'narration' +p249055 +tp249056 +a(g249053 +g249055 +S'is' +p249057 +tp249058 +a(g249055 +g249057 +S'clear' +p249059 +tp249060 +a(g249057 +g249059 +S'and' +p249061 +tp249062 +a(g249059 +g249061 +S'eloquent,' +p249063 +tp249064 +a(g249061 +g249063 +S'his' +p249065 +tp249066 +a(g249063 +g249065 +S'presentation' +p249067 +tp249068 +a(g249065 +g249067 +S'of' +p249069 +tp249070 +a(g249067 +g249069 +S'the' +p249071 +tp249072 +a(g249069 +g249071 +S'moral' +p249073 +tp249074 +a(g249071 +g249073 +S'implications' +p249075 +tp249076 +a(g249073 +g249075 +S'is' +p249077 +tp249078 +a(g249075 +g249077 +S'more' +p249079 +tp249080 +a(g249077 +g249079 +S'subtle:' +p249081 +tp249082 +a(g249079 +g249081 +S'as' +p249083 +tp249084 +a(g249081 +g249083 +S'this' +p249085 +tp249086 +a(g249083 +g249085 +S"woman's" +p249087 +tp249088 +a(g249085 +g249087 +S'beauty' +p249089 +tp249090 +a(g249087 +g249089 +S'conceals' +p249091 +tp249092 +a(g249089 +g249091 +S'her' +p249093 +tp249094 +a(g249091 +g249093 +S'wickedness,' +p249095 +tp249096 +a(g249093 +g249095 +S'so' +p249097 +tp249098 +a(g249095 +g249097 +S'the' +p249099 +tp249100 +a(g249097 +g249099 +S'visual' +p249101 +tp249102 +a(g249099 +g249101 +S'lushness' +p249103 +tp249104 +a(g249101 +g249103 +S'of' +p249105 +tp249106 +a(g249103 +g249105 +S"guercino's" +p249107 +tp249108 +a(g249105 +g249107 +S'painting' +p249109 +tp249110 +a(g249107 +g249109 +S'disguises' +p249111 +tp249112 +a(g249109 +g249111 +S'a' +p249113 +tp249114 +a(g249111 +g249113 +S'serious' +p249115 +tp249116 +a(g249113 +g249115 +S'lesson' +p249117 +tp249118 +a(g249115 +g249117 +S'about' +p249119 +tp249120 +a(g249117 +g249119 +S'righteous' +p249121 +tp249122 +a(g249119 +g249121 +S'conduct.' +p249123 +tp249124 +a(g249121 +g249123 +S'dirck' +p249125 +tp249126 +a(g249123 +g249125 +S'bouts' +p249127 +tp249128 +a(g249125 +g249127 +S'was' +p249129 +tp249130 +a(g249127 +g249129 +S'a' +p249131 +tp249132 +a(g249129 +g249131 +S'member' +p249133 +tp249134 +a(g249131 +g249133 +S'of' +p249135 +tp249136 +a(g249133 +g249135 +S'the' +p249137 +tp249138 +a(g249135 +g249137 +S'second' +p249139 +tp249140 +a(g249137 +g249139 +S'generation' +p249141 +tp249142 +a(g249139 +g249141 +S'of' +p249143 +tp249144 +a(g249141 +g249143 +S'artists' +p249145 +tp249146 +a(g249143 +g249145 +S'who' +p249147 +tp249148 +a(g249145 +g249147 +S'followed' +p249149 +tp249150 +a(g249147 +g249149 +S'and' +p249151 +tp249152 +a(g249149 +g249151 +S'pursued' +p249153 +tp249154 +a(g249151 +g249153 +S'the' +p249155 +tp249156 +a(g249153 +g249155 +S'style' +p249157 +tp249158 +a(g249155 +g249157 +S'of' +p249159 +tp249160 +a(g249157 +g249159 +S'small' +p249161 +tp249162 +a(g249159 +g249161 +S'enough' +p249163 +tp249164 +a(g249161 +g249163 +S'to' +p249165 +tp249166 +a(g249163 +g249165 +S'fit' +p249167 +tp249168 +a(g249165 +g249167 +S'in' +p249169 +tp249170 +a(g249167 +g249169 +S'the' +p249171 +tp249172 +a(g249169 +g249171 +S'palm' +p249173 +tp249174 +a(g249171 +g249173 +S'of' +p249175 +tp249176 +a(g249173 +g249175 +S'the' +p249177 +tp249178 +a(g249175 +g249177 +S'hand,' +p249179 +tp249180 +a(g249177 +g249179 +S'this' +p249181 +tp249182 +a(g249179 +g249181 +S'tiny' +p249183 +tp249184 +a(g249181 +g249183 +S'work' +p249185 +tp249186 +a(g249183 +g249185 +S'was' +p249187 +tp249188 +a(g249185 +g249187 +S'evidently' +p249189 +tp249190 +a(g249187 +g249189 +S'an' +p249191 +tp249192 +a(g249189 +g249191 +S'item' +p249193 +tp249194 +a(g249191 +g249193 +S'of' +p249195 +tp249196 +a(g249193 +g249195 +S'personal' +p249197 +tp249198 +a(g249195 +g249197 +S'devotion.' +p249199 +tp249200 +a(g249197 +g249199 +S'the' +p249201 +tp249202 +a(g249199 +g249201 +S'light' +p249203 +tp249204 +a(g249201 +g249203 +S'that' +p249205 +tp249206 +a(g249203 +g249205 +S'falls' +p249207 +tp249208 +a(g249205 +g249207 +S'on' +p249209 +tp249210 +a(g249207 +g249209 +S'the' +p249211 +tp249212 +a(g249209 +g249211 +S'virgin' +p249213 +tp249214 +a(g249211 +g249213 +S'and' +p249215 +tp249216 +a(g249213 +g249215 +S'child,' +p249217 +tp249218 +a(g249215 +g249217 +S'their' +p249219 +tp249220 +a(g249217 +g249219 +S'expressions,' +p249221 +tp249222 +a(g249219 +g249221 +S'and' +p249223 +tp249224 +a(g249221 +g249223 +S'their' +p249225 +tp249226 +a(g249223 +g249225 +S'postures' +p249227 +tp249228 +a(g249225 +g249227 +S'are' +p249229 +tp249230 +a(g249227 +g249229 +S'subtly' +p249231 +tp249232 +a(g249229 +g249231 +S'manipulated' +p249233 +tp249234 +a(g249231 +g249233 +S'to' +p249235 +tp249236 +a(g249233 +g249235 +S'make' +p249237 +tp249238 +a(g249235 +g249237 +S'the' +p249239 +tp249240 +a(g249237 +g249239 +S'infant' +p249241 +tp249242 +a(g249239 +g249241 +S'appear' +p249243 +tp249244 +a(g249241 +g249243 +S'bright' +p249245 +tp249246 +a(g249243 +g249245 +S'and' +p249247 +tp249248 +a(g249245 +g249247 +S'alert' +p249249 +tp249250 +a(g249247 +g249249 +S'while' +p249251 +tp249252 +a(g249249 +g249251 +S'the' +p249253 +tp249254 +a(g249251 +g249253 +S'madonna' +p249255 +tp249256 +a(g249253 +g249255 +S'seems' +p249257 +tp249258 +a(g249255 +g249257 +S'pensive' +p249259 +tp249260 +a(g249257 +g249259 +S'and' +p249261 +tp249262 +a(g249259 +g249261 +S'somber,' +p249263 +tp249264 +a(g249261 +g249263 +S'her' +p249265 +tp249266 +a(g249263 +g249265 +S'face' +p249267 +tp249268 +a(g249265 +g249267 +S'darkened' +p249269 +tp249270 +a(g249267 +g249269 +S'by' +p249271 +tp249272 +a(g249269 +g249271 +S'sadness.' +p249273 +tp249274 +a(g249271 +g249273 +S'fifteenth-century' +p249275 +tp249276 +a(g249273 +g249275 +S'viewers' +p249277 +tp249278 +a(g249275 +g249277 +S'would' +p249279 +tp249280 +a(g249277 +g249279 +S'have' +p249281 +tp249282 +a(g249279 +g249281 +S'immediately' +p249283 +tp249284 +a(g249281 +g249283 +S'interpreted' +p249285 +tp249286 +a(g249283 +g249285 +S'this' +p249287 +tp249288 +a(g249285 +g249287 +S'difference' +p249289 +tp249290 +a(g249287 +g249289 +S'as' +p249291 +tp249292 +a(g249289 +g249291 +S'evidence' +p249293 +tp249294 +a(g249291 +g249293 +S'that' +p249295 +tp249296 +a(g249293 +g249295 +S'mary' +p249297 +tp249298 +a(g249295 +g249297 +S'was' +p249299 +tp249300 +a(g249297 +g249299 +S'foreseeing' +p249301 +tp249302 +a(g249299 +g249301 +S'the' +p249303 +tp249304 +a(g249301 +g249303 +S'future' +p249305 +tp249306 +a(g249303 +g249305 +S'of' +p249307 +tp249308 +a(g249305 +g249307 +S'christ' +p249309 +tp249310 +a(g249307 +g249309 +S'on' +p249311 +tp249312 +a(g249309 +g249311 +S'the' +p249313 +tp249314 +a(g249311 +g249313 +S'cross.' +p249315 +tp249316 +a(g249313 +g249315 +S'they' +p249317 +tp249318 +a(g249315 +g249317 +S'believed' +p249319 +tp249320 +a(g249317 +g249319 +S'that' +p249321 +tp249322 +a(g249319 +g249321 +S'the' +p249323 +tp249324 +a(g249321 +g249323 +S'virgin' +p249325 +tp249326 +a(g249323 +g249325 +S'had' +p249327 +tp249328 +a(g249325 +g249327 +S'suffered' +p249329 +tp249330 +a(g249327 +g249329 +S'along' +p249331 +tp249332 +a(g249329 +g249331 +S'with' +p249333 +tp249334 +a(g249331 +g249333 +S'her' +p249335 +tp249336 +a(g249333 +g249335 +S'son,' +p249337 +tp249338 +a(g249335 +g249337 +S'actually' +p249339 +tp249340 +a(g249337 +g249339 +S'experiencing' +p249341 +tp249342 +a(g249339 +g249341 +S'the' +p249343 +tp249344 +a(g249341 +g249343 +S'same' +p249345 +tp249346 +a(g249343 +g249345 +S'pain.' +p249347 +tp249348 +a(g249345 +g249347 +S'this' +p249349 +tp249350 +a(g249347 +g249349 +S'kind' +p249351 +tp249352 +a(g249349 +g249351 +S'of' +p249353 +tp249354 +a(g249351 +g249353 +S'empathetic' +p249355 +tp249356 +a(g249353 +g249355 +S'identification' +p249357 +tp249358 +a(g249355 +g249357 +S'was' +p249359 +tp249360 +a(g249357 +g249359 +S'an' +p249361 +tp249362 +a(g249359 +g249361 +S'important' +p249363 +tp249364 +a(g249361 +g249363 +S'element' +p249365 +tp249366 +a(g249363 +g249365 +S'of' +p249367 +tp249368 +a(g249365 +g249367 +S'religious' +p249369 +tp249370 +a(g249367 +g249369 +S'life' +p249371 +tp249372 +a(g249369 +g249371 +S'in' +p249373 +tp249374 +a(g249371 +g249373 +S'the' +p249375 +tp249376 +a(g249373 +g249375 +S'north' +p249377 +tp249378 +a(g249375 +g249377 +S'during' +p249379 +tp249380 +a(g249377 +g249379 +S'the' +p249381 +tp249382 +a(g249379 +g249381 +S'fifteenth' +p249383 +tp249384 +a(g249381 +g249383 +S'century.' +p249385 +tp249386 +a(g249383 +g249385 +S'by' +p249387 +tp249388 +a(g249385 +g249387 +S'meditating' +p249389 +tp249390 +a(g249387 +g249389 +S'on' +p249391 +tp249392 +a(g249389 +g249391 +S'such' +p249393 +tp249394 +a(g249391 +g249393 +S'dramatic' +p249395 +tp249396 +a(g249393 +g249395 +S'closeups' +p249397 +tp249398 +a(g249395 +g249397 +S'of' +p249399 +tp249400 +a(g249397 +g249399 +S'great' +p249401 +tp249402 +a(g249399 +g249401 +S'immediacy,' +p249403 +tp249404 +a(g249401 +g249403 +S'the' +p249405 +tp249406 +a(g249403 +g249405 +S'worshiper' +p249407 +tp249408 +a(g249405 +g249407 +S'also' +p249409 +tp249410 +a(g249407 +g249409 +S'could' +p249411 +tp249412 +a(g249409 +g249411 +S'experience' +p249413 +tp249414 +a(g249411 +g249413 +S"jesus'" +p249415 +tp249416 +a(g249413 +g249415 +S'life' +p249417 +tp249418 +a(g249415 +g249417 +S'and' +p249419 +tp249420 +a(g249417 +g249419 +S'suffering' +p249421 +tp249422 +a(g249419 +g249421 +S'in' +p249423 +tp249424 +a(g249421 +g249423 +S'a' +p249425 +tp249426 +a(g249423 +g249425 +S'direct' +p249427 +tp249428 +a(g249425 +g249427 +S'and' +p249429 +tp249430 +a(g249427 +g249429 +S'personal' +p249431 +tp249432 +a(g249429 +g249431 +S'way.' +p249433 +tp249434 +a(g249431 +g249433 +S'stuart' +p249435 +tp249436 +a(g249433 +g249435 +S'painted' +p249437 +tp249438 +a(g249435 +g249437 +S'the' +p249439 +tp249440 +a(g249437 +g249439 +S'third' +p249441 +tp249442 +a(g249439 +g249441 +S'president' +p249443 +tp249444 +a(g249441 +g249443 +S'from' +p249445 +tp249446 +a(g249443 +g249445 +S'life' +p249447 +tp249448 +a(g249445 +g249447 +S'three' +p249449 +tp249450 +a(g249447 +g249449 +S'times' +p249451 +tp249452 +a(g249449 +g249451 +S'during' +p249453 +tp249454 +a(g249451 +g249453 +S'his' +p249455 +tp249456 +a(g249453 +g249455 +S'administration' +p249457 +tp249458 +a(g249455 +g249457 +S'of' +p249459 +tp249460 +a(g249457 +g249459 +S'1801' +p249461 +tp249462 +a(g249459 +g249461 +S'to' +p249463 +tp249464 +a(g249461 +g249463 +S'1809.' +p249465 +tp249466 +a(g249463 +g249465 +S'this' +p249467 +tp249468 +a(g249465 +g249467 +S'gibbs-coolidge' +p249469 +tp249470 +a(g249467 +g249469 +S'rendition' +p249471 +tp249472 +a(g249469 +g249471 +S'was' +p249473 +tp249474 +a(g249471 +g249473 +S'most' +p249475 +tp249476 +a(g249473 +g249475 +S'likely' +p249477 +tp249478 +a(g249475 +g249477 +S'based' +p249479 +tp249480 +a(g249477 +g249479 +S'on' +p249481 +tp249482 +a(g249479 +g249481 +S'other' +p249483 +tp249484 +a(g249481 +g249483 +S'pictures' +p249485 +tp249486 +a(g249483 +g249485 +S'stuart' +p249487 +tp249488 +a(g249485 +g249487 +S'had' +p249489 +tp249490 +a(g249487 +g249489 +S'painted' +p249491 +tp249492 +a(g249489 +g249491 +S'from' +p249493 +tp249494 +a(g249491 +g249493 +S'life' +p249495 +tp249496 +a(g249493 +g249495 +S'that' +p249497 +tp249498 +a(g249495 +g249497 +S'where' +p249499 +tp249500 +a(g249497 +g249499 +S'either' +p249501 +tp249502 +a(g249499 +g249501 +S'in' +p249503 +tp249504 +a(g249501 +g249503 +S'his' +p249505 +tp249506 +a(g249503 +g249505 +S'possession' +p249507 +tp249508 +a(g249505 +g249507 +S'or' +p249509 +tp249510 +a(g249507 +g249509 +S'accessible' +p249511 +tp249512 +a(g249509 +g249511 +S'to' +p249513 +tp249514 +a(g249511 +g249513 +S'him.' +p249515 +tp249516 +a(g249513 +g249515 +S'fanny/fingerpainting' +p249517 +tp249518 +a(g249515 +g249517 +S'seen' +p249519 +tp249520 +a(g249517 +g249519 +S'from' +p249521 +tp249522 +a(g249519 +g249521 +S'a' +p249523 +tp249524 +a(g249521 +g249523 +S'distance,' +p249525 +tp249526 +a(g249523 +g249525 +S'the' +p249527 +tp249528 +a(g249525 +g249527 +S'painting' +p249529 +tp249530 +a(g249527 +g249529 +S'looks' +p249531 +tp249532 +a(g249529 +g249531 +S'like' +p249533 +tp249534 +a(g249531 +g249533 +S'a' +p249535 +tp249536 +a(g249533 +g249535 +S'giant,' +p249537 +tp249538 +a(g249535 +g249537 +S'silver-toned' +p249539 +tp249540 +a(g249537 +g249539 +S'photograph' +p249541 +tp249542 +a(g249539 +g249541 +S'that' +p249543 +tp249544 +a(g249541 +g249543 +S'unrelentingly' +p249545 +tp249546 +a(g249543 +g249545 +S'reveals' +p249547 +tp249548 +a(g249545 +g249547 +S'every' +p249549 +tp249550 +a(g249547 +g249549 +S'crack' +p249551 +tp249552 +a(g249549 +g249551 +S'and' +p249553 +tp249554 +a(g249551 +g249553 +S'crevice' +p249555 +tp249556 +a(g249553 +g249555 +S'of' +p249557 +tp249558 +a(g249555 +g249557 +S'the' +p249559 +tp249560 +a(g249557 +g249559 +S"sitter's" +p249561 +tp249562 +a(g249559 +g249561 +S'face.' +p249563 +tp249564 +a(g249561 +g249563 +S'closer' +p249565 +tp249566 +a(g249563 +g249565 +S'up,' +p249567 +tp249568 +a(g249565 +g249567 +S'the' +p249569 +tp249570 +a(g249567 +g249569 +S'paint' +p249571 +tp249572 +a(g249569 +g249571 +S'surface' +p249573 +tp249574 +a(g249571 +g249573 +S'dissolves' +p249575 +tp249576 +a(g249573 +g249575 +S'into' +p249577 +tp249578 +a(g249575 +g249577 +S'a' +p249579 +tp249580 +a(g249577 +g249579 +S'sea' +p249581 +tp249582 +a(g249579 +g249581 +S'of' +p249583 +tp249584 +a(g249581 +g249583 +S'fingerprints' +p249585 +tp249586 +a(g249583 +g249585 +S'that' +p249587 +tp249588 +a(g249585 +g249587 +S'have' +p249589 +tp249590 +a(g249587 +g249589 +S'an' +p249591 +tp249592 +a(g249589 +g249591 +S'abstract' +p249593 +tp249594 +a(g249591 +g249593 +S'beauty,' +p249595 +tp249596 +a(g249593 +g249595 +S'even' +p249597 +tp249598 +a(g249595 +g249597 +S'as' +p249599 +tp249600 +a(g249597 +g249599 +S'they' +p249601 +tp249602 +a(g249599 +g249601 +S'metaphorically' +p249603 +tp249604 +a(g249601 +g249603 +S'suggest' +p249605 +tp249606 +a(g249603 +g249605 +S'the' +p249607 +tp249608 +a(g249605 +g249607 +S'withering' +p249609 +tp249610 +a(g249607 +g249609 +S'of' +p249611 +tp249612 +a(g249609 +g249611 +S'the' +p249613 +tp249614 +a(g249611 +g249613 +S"sitter's" +p249615 +tp249616 +a(g249613 +g249615 +S'skin' +p249617 +tp249618 +a(g249615 +g249617 +S'with' +p249619 +tp249620 +a(g249617 +g249619 +S'age.' +p249621 +tp249622 +a(g249619 +g249621 +S'the' +p249623 +tp249624 +a(g249621 +g249623 +S'fingerpaintings' +p249625 +tp249626 +a(g249623 +g249625 +S'provide' +p249627 +tp249628 +a(g249625 +g249627 +S'a' +p249629 +tp249630 +a(g249627 +g249629 +S'far' +p249631 +tp249632 +a(g249629 +g249631 +S'more' +p249633 +tp249634 +a(g249631 +g249633 +S'literal' +p249635 +tp249636 +a(g249633 +g249635 +S'record' +p249637 +tp249638 +a(g249635 +g249637 +S'of' +p249639 +tp249640 +a(g249637 +g249639 +S'the' +p249641 +tp249642 +a(g249639 +g249641 +S"artist's" +p249643 +tp249644 +a(g249641 +g249643 +S'touch' +p249645 +tp249646 +a(g249643 +g249645 +S'than' +p249647 +tp249648 +a(g249645 +g249647 +S'most' +p249649 +tp249650 +a(g249647 +g249649 +S'abstract' +p249651 +tp249652 +a(g249649 +g249651 +S'expressionist' +p249653 +tp249654 +a(g249651 +g249653 +S'brushwork' +p249655 +tp249656 +a(g249653 +g249655 +S'--' +p249657 +tp249658 +a(g249655 +g249657 +S'but' +p249659 +tp249660 +a(g249657 +g249659 +S'are' +p249661 +tp249662 +a(g249659 +g249661 +S'at' +p249663 +tp249664 +a(g249661 +g249663 +S'the' +p249665 +tp249666 +a(g249663 +g249665 +S'same' +p249667 +tp249668 +a(g249665 +g249667 +S'time' +p249669 +tp249670 +a(g249667 +g249669 +S'dictated' +p249671 +tp249672 +a(g249669 +g249671 +S'by' +p249673 +tp249674 +a(g249671 +g249673 +S'an' +p249675 +tp249676 +a(g249673 +g249675 +S'abstract,' +p249677 +tp249678 +a(g249675 +g249677 +S'distinctly' +p249679 +tp249680 +a(g249677 +g249679 +S'impersonal' +p249681 +tp249682 +a(g249679 +g249681 +S'system.' +p249683 +tp249684 +a(g249681 +g249683 +S'plaquettes' +p249685 +tp249686 +a(g249683 +g249685 +S'were' +p249687 +tp249688 +a(g249685 +g249687 +S'meant' +p249689 +tp249690 +a(g249687 +g249689 +S'to' +p249691 +tp249692 +a(g249689 +g249691 +S'be' +p249693 +tp249694 +a(g249691 +g249693 +S'enjoyed' +p249695 +tp249696 +a(g249693 +g249695 +S'for' +p249697 +tp249698 +a(g249695 +g249697 +S'intellectual' +p249699 +tp249700 +a(g249697 +g249699 +S'and' +p249701 +tp249702 +a(g249699 +g249701 +S'tactile' +p249703 +tp249704 +a(g249701 +g249703 +S'pleasures.' +p249705 +tp249706 +a(g249703 +g249705 +S'it' +p249707 +tp249708 +a(g249705 +g249707 +S'is' +p249709 +tp249710 +a(g249707 +g249709 +S'easy' +p249711 +tp249712 +a(g249709 +g249711 +S'to' +p249713 +tp249714 +a(g249711 +g249713 +S'imagine' +p249715 +tp249716 +a(g249713 +g249715 +S'owners' +p249717 +tp249718 +a(g249715 +g249717 +S'and' +p249719 +tp249720 +a(g249717 +g249719 +S'their' +p249721 +tp249722 +a(g249719 +g249721 +S'guests' +p249723 +tp249724 +a(g249721 +g249723 +S'passing' +p249725 +tp249726 +a(g249723 +g249725 +S'them' +p249727 +tp249728 +a(g249725 +g249727 +S'to' +p249729 +tp249730 +a(g249727 +g249729 +S'each' +p249731 +tp249732 +a(g249729 +g249731 +S'other' +p249733 +tp249734 +a(g249731 +g249733 +S'and' +p249735 +tp249736 +a(g249733 +g249735 +S'discussing' +p249737 +tp249738 +a(g249735 +g249737 +S'the' +p249739 +tp249740 +a(g249737 +g249739 +S'interpretation' +p249741 +tp249742 +a(g249739 +g249741 +S'of' +p249743 +tp249744 +a(g249741 +g249743 +S'the' +p249745 +tp249746 +a(g249743 +g249745 +S'scenes' +p249747 +tp249748 +a(g249745 +g249747 +S'depicted.' +p249749 +tp249750 +a(g249747 +g249749 +S'often,' +p249751 +tp249752 +a(g249749 +g249751 +S'as' +p249753 +tp249754 +a(g249751 +g249753 +S'in' +p249755 +tp249756 +a(g249753 +g249755 +S'this' +p249757 +tp249758 +a(g249755 +g249757 +S'example,' +p249759 +tp249760 +a(g249757 +g249759 +S'the' +p249761 +tp249762 +a(g249759 +g249761 +S'subjects' +p249763 +tp249764 +a(g249761 +g249763 +S'were' +p249765 +tp249766 +a(g249763 +g249765 +S'from' +p249767 +tp249768 +a(g249765 +g249767 +S'classical' +p249769 +tp249770 +a(g249767 +g249769 +S'mythology.' +p249771 +tp249772 +a(g249769 +g249771 +S'miró' +p249773 +tp249774 +a(g249771 +g249773 +S'moved' +p249775 +tp249776 +a(g249773 +g249775 +S'from' +p249777 +tp249778 +a(g249775 +g249777 +S'barcelona' +p249779 +tp249780 +a(g249777 +g249779 +S'to' +p249781 +tp249782 +a(g249779 +g249781 +S'paris' +p249783 +tp249784 +a(g249781 +g249783 +S'in' +p249785 +tp249786 +a(g249783 +g249785 +S'1920,' +p249787 +tp249788 +a(g249785 +g249787 +S'determined' +p249789 +tp249790 +a(g249787 +g249789 +S'to' +p249791 +tp249792 +a(g249789 +g249791 +S'participate' +p249793 +tp249794 +a(g249791 +g249793 +S'in' +p249795 +tp249796 +a(g249793 +g249795 +S'the' +p249797 +tp249798 +a(g249795 +g249797 +S'artistic' +p249799 +tp249800 +a(g249797 +g249799 +S'vanguard' +p249801 +tp249802 +a(g249799 +g249801 +S'of' +p249803 +tp249804 +a(g249801 +g249803 +S'the' +p249805 +tp249806 +a(g249803 +g249805 +S'french' +p249807 +tp249808 +a(g249805 +g249807 +S'capital.' +p249809 +tp249810 +a(g249807 +g249809 +S'nevertheless,' +p249811 +tp249812 +a(g249809 +g249811 +S'he' +p249813 +tp249814 +a(g249811 +g249813 +S'remained' +p249815 +tp249816 +a(g249813 +g249815 +S'deeply' +p249817 +tp249818 +a(g249815 +g249817 +S'attached' +p249819 +tp249820 +a(g249817 +g249819 +S'to' +p249821 +tp249822 +a(g249819 +g249821 +S'his' +p249823 +tp249824 +a(g249821 +g249823 +S'native' +p249825 +tp249826 +a(g249823 +g249825 +S'catalonia,' +p249827 +tp249828 +a(g249825 +g249827 +S'and' +p249829 +tp249830 +a(g249827 +g249829 +S'returned' +p249831 +tp249832 +a(g249829 +g249831 +S'each' +p249833 +tp249834 +a(g249831 +g249833 +S'summer' +p249835 +tp249836 +a(g249833 +g249835 +S'to' +p249837 +tp249838 +a(g249835 +g249837 +S'his' +p249839 +tp249840 +a(g249837 +g249839 +S"family's" +p249841 +tp249842 +a(g249839 +g249841 +S'farm' +p249843 +tp249844 +a(g249841 +g249843 +S'in' +p249845 +tp249846 +a(g249843 +g249845 +S'the' +p249847 +tp249848 +a(g249845 +g249847 +S'village' +p249849 +tp249850 +a(g249847 +g249849 +S'of' +p249851 +tp249852 +a(g249849 +g249851 +S'montroig.' +p249853 +tp249854 +a(g249851 +g249853 +S'in' +p249855 +tp249856 +a(g249853 +g249855 +S'1921,' +p249857 +tp249858 +a(g249855 +g249857 +S'he' +p249859 +tp249860 +a(g249857 +g249859 +S'determined' +p249861 +tp249862 +a(g249859 +g249861 +S'to' +p249863 +tp249864 +a(g249861 +g249863 +S'make' +p249865 +tp249866 +a(g249863 +g249865 +S'a' +p249867 +tp249868 +a(g249865 +g249867 +S'painting' +p249869 +tp249870 +a(g249867 +g249869 +S'of' +p249871 +tp249872 +a(g249869 +g249871 +S'this' +p249873 +tp249874 +a(g249871 +g249873 +S'farm,' +p249875 +tp249876 +a(g249873 +g249875 +S'a' +p249877 +tp249878 +a(g249875 +g249877 +S'painting' +p249879 +tp249880 +a(g249877 +g249879 +S'that' +p249881 +tp249882 +a(g249879 +g249881 +S'he' +p249883 +tp249884 +a(g249881 +g249883 +S'came' +p249885 +tp249886 +a(g249883 +g249885 +S'to' +p249887 +tp249888 +a(g249885 +g249887 +S'regard' +p249889 +tp249890 +a(g249887 +g249889 +S'as' +p249891 +tp249892 +a(g249889 +g249891 +S'one' +p249893 +tp249894 +a(g249891 +g249893 +S'of' +p249895 +tp249896 +a(g249893 +g249895 +S'the' +p249897 +tp249898 +a(g249895 +g249897 +S'key' +p249899 +tp249900 +a(g249897 +g249899 +S'works' +p249901 +tp249902 +a(g249899 +g249901 +S'in' +p249903 +tp249904 +a(g249901 +g249903 +S'his' +p249905 +tp249906 +a(g249903 +g249905 +S'career.' +p249907 +tp249908 +a(g249905 +g249907 +S'the' +p249909 +tp249910 +a(g249907 +g249909 +S'farm' +p249911 +tp249912 +a(g249909 +g249911 +S'by' +p249913 +tp249914 +a(g249911 +g249913 +S'the' +p249915 +tp249916 +a(g249913 +g249915 +S'mid-1920s,' +p249917 +tp249918 +a(g249915 +g249917 +S'miró' +p249919 +tp249920 +a(g249917 +g249919 +S'had' +p249921 +tp249922 +a(g249919 +g249921 +S'abandoned' +p249923 +tp249924 +a(g249921 +g249923 +S'the' +p249925 +tp249926 +a(g249923 +g249925 +S'realist' +p249927 +tp249928 +a(g249925 +g249927 +S'manner' +p249929 +tp249930 +a(g249927 +g249929 +S'of' +p249931 +tp249932 +a(g249929 +g249931 +S'two' +p249933 +tp249934 +a(g249931 +g249933 +S'of' +p249935 +tp249936 +a(g249933 +g249935 +S"magritte's" +p249937 +tp249938 +a(g249935 +g249937 +S'favored' +p249939 +tp249940 +a(g249937 +g249939 +S'themes' +p249941 +tp249942 +a(g249939 +g249941 +S'were' +p249943 +tp249944 +a(g249941 +g249943 +S'the' +p249945 +tp249946 +a(g249943 +g249945 +S'"window' +p249947 +tp249948 +a(g249945 +g249947 +S'painting"' +p249949 +tp249950 +a(g249947 +g249949 +S'and' +p249951 +tp249952 +a(g249949 +g249951 +S'the' +p249953 +tp249954 +a(g249951 +g249953 +S'"painting' +p249955 +tp249956 +a(g249953 +g249955 +S'within' +p249957 +tp249958 +a(g249955 +g249957 +S'a' +p249959 +tp249960 +a(g249957 +g249959 +S'painting."' +p249961 +tp249962 +a(g249959 +g249961 +S'the' +p249963 +tp249964 +a(g249961 +g249963 +S'human' +p249965 +tp249966 +a(g249963 +g249965 +S'condition' +p249967 +tp249968 +a(g249965 +g249967 +S'in' +p249969 +tp249970 +a(g249967 +g249969 +S'1930,' +p249971 +tp249972 +a(g249969 +g249971 +S'georgia' +p249973 +tp249974 +a(g249971 +g249973 +S"o'keeffe" +p249975 +tp249976 +a(g249973 +g249975 +S'painted' +p249977 +tp249978 +a(g249975 +g249977 +S'a' +p249979 +tp249980 +a(g249977 +g249979 +S'series' +p249981 +tp249982 +a(g249979 +g249981 +S'of' +p249983 +tp249984 +a(g249981 +g249983 +S'six' +p249985 +tp249986 +a(g249983 +g249985 +S'canvases' +p249987 +tp249988 +a(g249985 +g249987 +S'depicting' +p249989 +tp249990 +a(g249987 +g249989 +S'a' +p249991 +tp249992 +a(g249989 +g249991 +S'jack-in-the-pulpit.' +p249993 +tp249994 +a(g249991 +g249993 +S'the' +p249995 +tp249996 +a(g249993 +g249995 +S'series' +p249997 +tp249998 +a(g249995 +g249997 +S'begins' +p249999 +tp250000 +a(g249997 +g249999 +S'with' +p250001 +tp250002 +a(g249999 +g250001 +S'the' +p250003 +tp250004 +a(g250001 +g250003 +S'striped' +p250005 +tp250006 +a(g250003 +g250005 +S'and' +p250007 +tp250008 +a(g250005 +g250007 +S'hooded' +p250009 +tp250010 +a(g250007 +g250009 +S'bloom' +p250011 +tp250012 +a(g250009 +g250011 +S'rendered' +p250013 +tp250014 +a(g250011 +g250013 +S'with' +p250015 +tp250016 +a(g250013 +g250015 +S'a' +p250017 +tp250018 +a(g250015 +g250017 +S"botanist's" +p250019 +tp250020 +a(g250017 +g250019 +S'care,' +p250021 +tp250022 +a(g250019 +g250021 +S'continues' +p250023 +tp250024 +a(g250021 +g250023 +S'with' +p250025 +tp250026 +a(g250023 +g250025 +S'successively' +p250027 +tp250028 +a(g250025 +g250027 +S'more' +p250029 +tp250030 +a(g250027 +g250029 +S'abstract' +p250031 +tp250032 +a(g250029 +g250031 +S'and' +p250033 +tp250034 +a(g250031 +g250033 +S'tightly' +p250035 +tp250036 +a(g250033 +g250035 +S'focused' +p250037 +tp250038 +a(g250035 +g250037 +S'depictions,' +p250039 +tp250040 +a(g250037 +g250039 +S'and' +p250041 +tp250042 +a(g250039 +g250041 +S'ends' +p250043 +tp250044 +a(g250041 +g250043 +S'with' +p250045 +tp250046 +a(g250043 +g250045 +S'the' +p250047 +tp250048 +a(g250045 +g250047 +S'essence' +p250049 +tp250050 +a(g250047 +g250049 +S'of' +p250051 +tp250052 +a(g250049 +g250051 +S'the' +p250053 +tp250054 +a(g250051 +g250053 +S'jack-in-the-pulpit,' +p250055 +tp250056 +a(g250053 +g250055 +S'a' +p250057 +tp250058 +a(g250055 +g250057 +S'haloed' +p250059 +tp250060 +a(g250057 +g250059 +S'black' +p250061 +tp250062 +a(g250059 +g250061 +S'pistil' +p250063 +tp250064 +a(g250061 +g250063 +S'standing' +p250065 +tp250066 +a(g250063 +g250065 +S'alone' +p250067 +tp250068 +a(g250065 +g250067 +S'against' +p250069 +tp250070 +a(g250067 +g250069 +S'a' +p250071 +tp250072 +a(g250069 +g250071 +S'black,' +p250073 +tp250074 +a(g250071 +g250073 +S'purple,' +p250075 +tp250076 +a(g250073 +g250075 +S'and' +p250077 +tp250078 +a(g250075 +g250077 +S'gray' +p250079 +tp250080 +a(g250077 +g250079 +S'field.' +p250081 +tp250082 +a(g250079 +g250081 +S'jack-in-the-pulpit' +p250083 +tp250084 +a(g250081 +g250083 +S'no.' +p250085 +tp250086 +a(g250083 +g250085 +S'iv' +p250087 +tp250088 +a(g250085 +g250087 +S"o'keeffe" +p250089 +tp250090 +a(g250087 +g250089 +S'bequeathed' +p250091 +tp250092 +a(g250089 +g250091 +S'barnett' +p250093 +tp250094 +a(g250091 +g250093 +S'newman' +p250095 +tp250096 +a(g250093 +g250095 +S'is' +p250097 +tp250098 +a(g250095 +g250097 +S'best' +p250099 +tp250100 +a(g250097 +g250099 +S'known' +p250101 +tp250102 +a(g250099 +g250101 +S'for' +p250103 +tp250104 +a(g250101 +g250103 +S'the' +p250105 +tp250106 +a(g250103 +g250105 +S'monumental' +p250107 +tp250108 +a(g250105 +g250107 +S'paintings' +p250109 +tp250110 +a(g250107 +g250109 +S'he' +p250111 +tp250112 +a(g250109 +g250111 +S'began' +p250113 +tp250114 +a(g250111 +g250113 +S'making' +p250115 +tp250116 +a(g250113 +g250115 +S'in' +p250117 +tp250118 +a(g250115 +g250117 +S'the' +p250119 +tp250120 +a(g250117 +g250119 +S'late' +p250121 +tp250122 +a(g250119 +g250121 +S'1940s' +p250123 +tp250124 +a(g250121 +g250123 +S'which' +p250125 +tp250126 +a(g250123 +g250125 +S'incorporate' +p250127 +tp250128 +a(g250125 +g250127 +S'unified' +p250129 +tp250130 +a(g250127 +g250129 +S'fields' +p250131 +tp250132 +a(g250129 +g250131 +S'of' +p250133 +tp250134 +a(g250131 +g250133 +S'color' +p250135 +tp250136 +a(g250133 +g250135 +S'that' +p250137 +tp250138 +a(g250135 +g250137 +S'have' +p250139 +tp250140 +a(g250137 +g250139 +S'been' +p250141 +tp250142 +a(g250139 +g250141 +S'demarcated' +p250143 +tp250144 +a(g250141 +g250143 +S'into' +p250145 +tp250146 +a(g250143 +g250145 +S'zones' +p250147 +tp250148 +a(g250145 +g250147 +S'by' +p250149 +tp250150 +a(g250147 +g250149 +S'vertical,' +p250151 +tp250152 +a(g250149 +g250151 +S'or' +p250153 +tp250154 +a(g250151 +g250153 +S'occasionally,' +p250155 +tp250156 +a(g250153 +g250155 +S'horizontal,' +p250157 +tp250158 +a(g250155 +g250157 +S'stripes' +p250159 +tp250160 +a(g250157 +g250159 +S'the' +p250161 +tp250162 +a(g250159 +g250161 +S'artist' +p250163 +tp250164 +a(g250161 +g250163 +S'called' +p250165 +tp250166 +a(g250163 +g250165 +S'"zips."' +p250167 +tp250168 +a(g250165 +g250167 +S'the' +p250169 +tp250170 +a(g250167 +g250169 +S'zip' +p250171 +tp250172 +a(g250169 +g250171 +S'was' +p250173 +tp250174 +a(g250171 +g250173 +S'a' +p250175 +tp250176 +a(g250173 +g250175 +S'compositional' +p250177 +tp250178 +a(g250175 +g250177 +S'fulcrum,' +p250179 +tp250180 +a(g250177 +g250179 +S'a' +p250181 +tp250182 +a(g250179 +g250181 +S'source' +p250183 +tp250184 +a(g250181 +g250183 +S'of' +p250185 +tp250186 +a(g250183 +g250185 +S'movement,' +p250187 +tp250188 +a(g250185 +g250187 +S'division,' +p250189 +tp250190 +a(g250187 +g250189 +S'and' +p250191 +tp250192 +a(g250189 +g250191 +S'measurement,' +p250193 +tp250194 +a(g250191 +g250193 +S'as' +p250195 +tp250196 +a(g250193 +g250195 +S'well' +p250197 +tp250198 +a(g250195 +g250197 +S'as' +p250199 +tp250200 +a(g250197 +g250199 +S'a' +p250201 +tp250202 +a(g250199 +g250201 +S'carrier' +p250203 +tp250204 +a(g250201 +g250203 +S'of' +p250205 +tp250206 +a(g250203 +g250205 +S'often' +p250207 +tp250208 +a(g250205 +g250207 +S'metaphysical' +p250209 +tp250210 +a(g250207 +g250209 +S'meaning.' +p250211 +tp250212 +a(g250209 +g250211 +S'achilles' +p250213 +tp250214 +a(g250211 +g250213 +S'it' +p250215 +tp250216 +a(g250213 +g250215 +S'was' +p250217 +tp250218 +a(g250215 +g250217 +S'not' +p250219 +tp250220 +a(g250217 +g250219 +S'unusual' +p250221 +tp250222 +a(g250219 +g250221 +S'for' +p250223 +tp250224 +a(g250221 +g250223 +S'newman' +p250225 +tp250226 +a(g250223 +g250225 +S'to' +p250227 +tp250228 +a(g250225 +g250227 +S'use' +p250229 +tp250230 +a(g250227 +g250229 +S'titles' +p250231 +tp250232 +a(g250229 +g250231 +S'from' +p250233 +tp250234 +a(g250231 +g250233 +S'the' +p250235 +tp250236 +a(g250233 +g250235 +S'bible' +p250237 +tp250238 +a(g250235 +g250237 +S'or' +p250239 +tp250240 +a(g250237 +g250239 +S'greek' +p250241 +tp250242 +a(g250239 +g250241 +S'mythology.' +p250243 +tp250244 +a(g250241 +g250243 +S'he' +p250245 +tp250246 +a(g250243 +g250245 +S'likened' +p250247 +tp250248 +a(g250245 +g250247 +S'the' +p250249 +tp250250 +a(g250247 +g250249 +S'"red' +p250251 +tp250252 +a(g250249 +g250251 +S'and' +p250253 +tp250254 +a(g250251 +g250253 +S'fiery"' +p250255 +tp250256 +a(g250253 +g250255 +S'shape' +p250257 +tp250258 +a(g250255 +g250257 +S'in' +p250259 +tp250260 +a(g250257 +g250259 +S'though' +p250261 +tp250262 +a(g250259 +g250261 +S'less' +p250263 +tp250264 +a(g250261 +g250263 +S'well-known' +p250265 +tp250266 +a(g250263 +g250265 +S'than' +p250267 +tp250268 +a(g250265 +g250267 +S'other' +p250269 +tp250270 +a(g250267 +g250269 +S'painters' +p250271 +tp250272 +a(g250269 +g250271 +S'on' +p250273 +tp250274 +a(g250271 +g250273 +S'this' +p250275 +tp250276 +a(g250273 +g250275 +S'tour,' +p250277 +tp250278 +a(g250275 +g250277 +S'horace' +p250279 +tp250280 +a(g250277 +g250279 +S'vernet' +p250281 +tp250282 +a(g250279 +g250281 +S'was' +p250283 +tp250284 +a(g250281 +g250283 +S'regarded' +p250285 +tp250286 +a(g250283 +g250285 +S'by' +p250287 +tp250288 +a(g250285 +g250287 +S'many' +p250289 +tp250290 +a(g250287 +g250289 +S'in' +p250291 +tp250292 +a(g250289 +g250291 +S'his' +p250293 +tp250294 +a(g250291 +g250293 +S'day' +p250295 +tp250296 +a(g250293 +g250295 +S'as' +p250297 +tp250298 +a(g250295 +g250297 +S'one' +p250299 +tp250300 +a(g250297 +g250299 +S'of' +p250301 +tp250302 +a(g250299 +g250301 +S'the' +p250303 +tp250304 +a(g250301 +g250303 +S'greatest' +p250305 +tp250306 +a(g250303 +g250305 +S'french' +p250307 +tp250308 +a(g250305 +g250307 +S'artists' +p250309 +tp250310 +a(g250307 +g250309 +S'of' +p250311 +tp250312 +a(g250309 +g250311 +S'all' +p250313 +tp250314 +a(g250311 +g250313 +S'time.' +p250315 +tp250316 +a(g250313 +g250315 +S"horace's" +p250317 +tp250318 +a(g250315 +g250317 +S'forthright' +p250319 +tp250320 +a(g250317 +g250319 +S'and' +p250321 +tp250322 +a(g250319 +g250321 +S'accurate' +p250323 +tp250324 +a(g250321 +g250323 +S'reporting' +p250325 +tp250326 +a(g250323 +g250325 +S'of' +p250327 +tp250328 +a(g250325 +g250327 +S'facts' +p250329 +tp250330 +a(g250327 +g250329 +S'was' +p250331 +tp250332 +a(g250329 +g250331 +S'already' +p250333 +tp250334 +a(g250331 +g250333 +S'being' +p250335 +tp250336 +a(g250333 +g250335 +S'disparaged' +p250337 +tp250338 +a(g250335 +g250337 +S'by' +p250339 +tp250340 +a(g250337 +g250339 +S'some' +p250341 +tp250342 +a(g250339 +g250341 +S'romantic' +p250343 +tp250344 +a(g250341 +g250343 +S'critics' +p250345 +tp250346 +a(g250343 +g250345 +S'before' +p250347 +tp250348 +a(g250345 +g250347 +S'his' +p250349 +tp250350 +a(g250347 +g250349 +S'death' +p250351 +tp250352 +a(g250349 +g250351 +S'--' +p250353 +tp250354 +a(g250351 +g250353 +S'and' +p250355 +tp250356 +a(g250353 +g250355 +S'more' +p250357 +tp250358 +a(g250355 +g250357 +S'recently' +p250359 +tp250360 +a(g250357 +g250359 +S'he' +p250361 +tp250362 +a(g250359 +g250361 +S'has' +p250363 +tp250364 +a(g250361 +g250363 +S'been' +p250365 +tp250366 +a(g250363 +g250365 +S'compared' +p250367 +tp250368 +a(g250365 +g250367 +S'to' +p250369 +tp250370 +a(g250367 +g250369 +S'norman' +p250371 +tp250372 +a(g250369 +g250371 +S'rockwell.' +p250373 +tp250374 +a(g250371 +g250373 +S'increasingly,' +p250375 +tp250376 +a(g250373 +g250375 +S'however,' +p250377 +tp250378 +a(g250375 +g250377 +S'his' +p250379 +tp250380 +a(g250377 +g250379 +S'naturalism' +p250381 +tp250382 +a(g250379 +g250381 +S'is' +p250383 +tp250384 +a(g250381 +g250383 +S'appreciated' +p250385 +tp250386 +a(g250383 +g250385 +S'as' +p250387 +tp250388 +a(g250385 +g250387 +S'foreshadowing' +p250389 +tp250390 +a(g250387 +g250389 +S'the' +p250391 +tp250392 +a(g250389 +g250391 +S'work' +p250393 +tp250394 +a(g250391 +g250393 +S'of' +p250395 +tp250396 +a(g250393 +g250395 +S'realists' +p250397 +tp250398 +a(g250395 +g250397 +S'like' +p250399 +tp250400 +a(g250397 +g250399 +S'courbet.' +p250401 +tp250402 +a(g250399 +g250401 +S'this' +p250403 +tp250404 +a(g250401 +g250403 +S'painting' +p250405 +tp250406 +a(g250403 +g250405 +S'was' +p250407 +tp250408 +a(g250405 +g250407 +S'made' +p250409 +tp250410 +a(g250407 +g250409 +S'in' +p250411 +tp250412 +a(g250409 +g250411 +S'italy' +p250413 +tp250414 +a(g250411 +g250413 +S'after' +p250415 +tp250416 +a(g250413 +g250415 +S'vernet' +p250417 +tp250418 +a(g250415 +g250417 +S'had' +p250419 +tp250420 +a(g250417 +g250419 +S'been' +p250421 +tp250422 +a(g250419 +g250421 +S'appointed' +p250423 +tp250424 +a(g250421 +g250423 +S'director' +p250425 +tp250426 +a(g250423 +g250425 +S'of' +p250427 +tp250428 +a(g250425 +g250427 +S'the' +p250429 +tp250430 +a(g250427 +g250429 +S'french' +p250431 +tp250432 +a(g250429 +g250431 +S'academy' +p250433 +tp250434 +a(g250431 +g250433 +S'in' +p250435 +tp250436 +a(g250433 +g250435 +S'rome.' +p250437 +tp250438 +a(g250435 +g250437 +S'following' +p250439 +tp250440 +a(g250437 +g250439 +S'the' +p250441 +tp250442 +a(g250439 +g250441 +S'july' +p250443 +tp250444 +a(g250441 +g250443 +S'revolution' +p250445 +tp250446 +a(g250443 +g250445 +S'of' +p250447 +tp250448 +a(g250445 +g250447 +S'1830,' +p250449 +tp250450 +a(g250447 +g250449 +S'which' +p250451 +tp250452 +a(g250449 +g250451 +S'installed' +p250453 +tp250454 +a(g250451 +g250453 +S'"citizen' +p250455 +tp250456 +a(g250453 +g250455 +S'king"' +p250457 +tp250458 +a(g250455 +g250457 +S'louis' +p250459 +tp250460 +a(g250457 +g250459 +S'philippe,' +p250461 +tp250462 +a(g250459 +g250461 +S'vernet' +p250463 +tp250464 +a(g250461 +g250463 +S'found' +p250465 +tp250466 +a(g250463 +g250465 +S'himself' +p250467 +tp250468 +a(g250465 +g250467 +S'the' +p250469 +tp250470 +a(g250467 +g250469 +S'most' +p250471 +tp250472 +a(g250469 +g250471 +S'senior' +p250473 +tp250474 +a(g250471 +g250473 +S'french' +p250475 +tp250476 +a(g250473 +g250475 +S'official' +p250477 +tp250478 +a(g250475 +g250477 +S'in' +p250479 +tp250480 +a(g250477 +g250479 +S'the' +p250481 +tp250482 +a(g250479 +g250481 +S'city' +p250483 +tp250484 +a(g250481 +g250483 +S'--' +p250485 +tp250486 +a(g250483 +g250485 +S'an' +p250487 +tp250488 +a(g250485 +g250487 +S'uncomfortable' +p250489 +tp250490 +a(g250487 +g250489 +S'post,' +p250491 +tp250492 +a(g250489 +g250491 +S'given' +p250493 +tp250494 +a(g250491 +g250493 +S'the' +p250495 +tp250496 +a(g250493 +g250495 +S'antipathy' +p250497 +tp250498 +a(g250495 +g250497 +S'of' +p250499 +tp250500 +a(g250497 +g250499 +S'the' +p250501 +tp250502 +a(g250499 +g250501 +S'pope' +p250503 +tp250504 +a(g250501 +g250503 +S'and' +p250505 +tp250506 +a(g250503 +g250505 +S'italian' +p250507 +tp250508 +a(g250505 +g250507 +S'public' +p250509 +tp250510 +a(g250507 +g250509 +S'toward' +p250511 +tp250512 +a(g250509 +g250511 +S'a' +p250513 +tp250514 +a(g250511 +g250513 +S'more' +p250515 +tp250516 +a(g250513 +g250515 +S'liberal' +p250517 +tp250518 +a(g250515 +g250517 +S'french' +p250519 +tp250520 +a(g250517 +g250519 +S'monarchy.' +p250521 +tp250522 +a(g250519 +g250521 +S'it' +p250523 +tp250524 +a(g250521 +g250523 +S'was' +p250525 +tp250526 +a(g250523 +g250525 +S'often' +p250527 +tp250528 +a(g250525 +g250527 +S'advantageous' +p250529 +tp250530 +a(g250527 +g250529 +S'to' +p250531 +tp250532 +a(g250529 +g250531 +S'be' +p250533 +tp250534 +a(g250531 +g250533 +S'out' +p250535 +tp250536 +a(g250533 +g250535 +S'of' +p250537 +tp250538 +a(g250535 +g250537 +S'town,' +p250539 +tp250540 +a(g250537 +g250539 +S'and' +p250541 +tp250542 +a(g250539 +g250541 +S'the' +p250543 +tp250544 +a(g250541 +g250543 +S"painter's" +p250545 +tp250546 +a(g250543 +g250545 +S'love' +p250547 +tp250548 +a(g250545 +g250547 +S'of' +p250549 +tp250550 +a(g250547 +g250549 +S'hunting' +p250551 +tp250552 +a(g250549 +g250551 +S'offered' +p250553 +tp250554 +a(g250551 +g250553 +S'frequent' +p250555 +tp250556 +a(g250553 +g250555 +S'opportunities.' +p250557 +tp250558 +a(g250555 +g250557 +S'here,' +p250559 +tp250560 +a(g250557 +g250559 +S'tiny' +p250561 +tp250562 +a(g250559 +g250561 +S'figures' +p250563 +tp250564 +a(g250561 +g250563 +S'are' +p250565 +tp250566 +a(g250563 +g250565 +S'overshadowed' +p250567 +tp250568 +a(g250565 +g250567 +S'by' +p250569 +tp250570 +a(g250567 +g250569 +S'the' +p250571 +tp250572 +a(g250569 +g250571 +S'wild' +p250573 +tp250574 +a(g250571 +g250573 +S'landscape' +p250575 +tp250576 +a(g250573 +g250575 +S'--' +p250577 +tp250578 +a(g250575 +g250577 +S'an' +p250579 +tp250580 +a(g250577 +g250579 +S'ancient' +p250581 +tp250582 +a(g250579 +g250581 +S'wooded' +p250583 +tp250584 +a(g250581 +g250583 +S'marsh' +p250585 +tp250586 +a(g250583 +g250585 +S'some' +p250587 +tp250588 +a(g250585 +g250587 +S'forty' +p250589 +tp250590 +a(g250587 +g250589 +S'kilometers' +p250591 +tp250592 +a(g250589 +g250591 +S'from' +p250593 +tp250594 +a(g250591 +g250593 +S'rome.' +p250595 +tp250596 +a(g250593 +g250595 +S'vernet' +p250597 +tp250598 +a(g250595 +g250597 +S'described' +p250599 +tp250600 +a(g250597 +g250599 +S'it' +p250601 +tp250602 +a(g250599 +g250601 +S'as' +p250603 +tp250604 +a(g250601 +g250603 +S'a' +p250605 +tp250606 +a(g250603 +g250605 +S'majestic' +p250607 +tp250608 +a(g250605 +g250607 +S'place,' +p250609 +tp250610 +a(g250607 +g250609 +S'where' +p250611 +tp250612 +a(g250609 +g250611 +S'the' +p250613 +tp250614 +a(g250611 +g250613 +S'presence' +p250615 +tp250616 +a(g250613 +g250615 +S'of' +p250617 +tp250618 +a(g250615 +g250617 +S'man' +p250619 +tp250620 +a(g250617 +g250619 +S'did' +p250621 +tp250622 +a(g250619 +g250621 +S'not' +p250623 +tp250624 +a(g250621 +g250623 +S'interrupt' +p250625 +tp250626 +a(g250623 +g250625 +S'the' +p250627 +tp250628 +a(g250625 +g250627 +S'order' +p250629 +tp250630 +a(g250627 +g250629 +S'of' +p250631 +tp250632 +a(g250629 +g250631 +S'nature.' +p250633 +tp250634 +a(g250631 +g250633 +S'by' +p250635 +tp250636 +a(g250633 +g250635 +S'1779,' +p250637 +tp250638 +a(g250635 +g250637 +S'benjamin' +p250639 +tp250640 +a(g250637 +g250639 +S'west' +p250641 +tp250642 +a(g250639 +g250641 +S'had' +p250643 +tp250644 +a(g250641 +g250643 +S'conceived' +p250645 +tp250646 +a(g250643 +g250645 +S'his' +p250647 +tp250648 +a(g250645 +g250647 +S"life's" +p250649 +tp250650 +a(g250647 +g250649 +S'"great' +p250651 +tp250652 +a(g250649 +g250651 +S'work,"' +p250653 +tp250654 +a(g250651 +g250653 +S'intending' +p250655 +tp250656 +a(g250653 +g250655 +S'to' +p250657 +tp250658 +a(g250655 +g250657 +S'rebuild' +p250659 +tp250660 +a(g250657 +g250659 +S'the' +p250661 +tp250662 +a(g250659 +g250661 +S'royal' +p250663 +tp250664 +a(g250661 +g250663 +S'chapel' +p250665 +tp250666 +a(g250663 +g250665 +S'at' +p250667 +tp250668 +a(g250665 +g250667 +S'windsor' +p250669 +tp250670 +a(g250667 +g250669 +S'castle' +p250671 +tp250672 +a(g250669 +g250671 +S'as' +p250673 +tp250674 +a(g250671 +g250673 +S'a' +p250675 +tp250676 +a(g250673 +g250675 +S'shrine' +p250677 +tp250678 +a(g250675 +g250677 +S'to' +p250679 +tp250680 +a(g250677 +g250679 +S'revealed' +p250681 +tp250682 +a(g250679 +g250681 +S'religion.' +p250683 +tp250684 +a(g250681 +g250683 +S'after' +p250685 +tp250686 +a(g250683 +g250685 +S'sponsoring' +p250687 +tp250688 +a(g250685 +g250687 +S'the' +p250689 +tp250690 +a(g250687 +g250689 +S'elaborate' +p250691 +tp250692 +a(g250689 +g250691 +S'scheme' +p250693 +tp250694 +a(g250691 +g250693 +S'for' +p250695 +tp250696 +a(g250693 +g250695 +S'two' +p250697 +tp250698 +a(g250695 +g250697 +S'decades,' +p250699 +tp250700 +a(g250697 +g250699 +S'george' +p250701 +tp250702 +a(g250699 +g250701 +S'iii' +p250703 +tp250704 +a(g250701 +g250703 +S'abruptly' +p250705 +tp250706 +a(g250703 +g250705 +S'canceled' +p250707 +tp250708 +a(g250705 +g250707 +S'it' +p250709 +tp250710 +a(g250707 +g250709 +S'in' +p250711 +tp250712 +a(g250709 +g250711 +S'1801.' +p250713 +tp250714 +a(g250711 +g250713 +S'though' +p250715 +tp250716 +a(g250713 +g250715 +S'the' +p250717 +tp250718 +a(g250715 +g250717 +S'overall' +p250719 +tp250720 +a(g250717 +g250719 +S'project' +p250721 +tp250722 +a(g250719 +g250721 +S'was' +p250723 +tp250724 +a(g250721 +g250723 +S'abandoned,' +p250725 +tp250726 +a(g250723 +g250725 +S'many' +p250727 +tp250728 +a(g250725 +g250727 +S'individual' +p250729 +tp250730 +a(g250727 +g250729 +S'paintings,' +p250731 +tp250732 +a(g250729 +g250731 +S'including' +p250733 +tp250734 +a(g250731 +g250733 +S'this' +p250735 +tp250736 +a(g250733 +g250735 +S'nine–foot–long' +p250737 +tp250738 +a(g250735 +g250737 +S'the' +p250739 +tp250740 +a(g250737 +g250739 +S'book' +p250741 +tp250742 +a(g250739 +g250741 +S'of' +p250743 +tp250744 +a(g250741 +g250743 +S'genesis' +p250745 +tp250746 +a(g250743 +g250745 +S'does' +p250747 +tp250748 +a(g250745 +g250747 +S'not' +p250749 +tp250750 +a(g250747 +g250749 +S'state' +p250751 +tp250752 +a(g250749 +g250751 +S'how' +p250753 +tp250754 +a(g250751 +g250753 +S'the' +p250755 +tp250756 +a(g250753 +g250755 +S'first' +p250757 +tp250758 +a(g250755 +g250757 +S'man' +p250759 +tp250760 +a(g250757 +g250759 +S'and' +p250761 +tp250762 +a(g250759 +g250761 +S'woman' +p250763 +tp250764 +a(g250761 +g250763 +S'were' +p250765 +tp250766 +a(g250763 +g250765 +S'expelled' +p250767 +tp250768 +a(g250765 +g250767 +S'from' +p250769 +tp250770 +a(g250767 +g250769 +S'eden,' +p250771 +tp250772 +a(g250769 +g250771 +S'but' +p250773 +tp250774 +a(g250771 +g250773 +S'artists' +p250775 +tp250776 +a(g250773 +g250775 +S'usually' +p250777 +tp250778 +a(g250775 +g250777 +S'portray' +p250779 +tp250780 +a(g250777 +g250779 +S'the' +p250781 +tp250782 +a(g250779 +g250781 +S'archangel' +p250783 +tp250784 +a(g250781 +g250783 +S'michael' +p250785 +tp250786 +a(g250783 +g250785 +S'as' +p250787 +tp250788 +a(g250785 +g250787 +S'the' +p250789 +tp250790 +a(g250787 +g250789 +S'agent' +p250791 +tp250792 +a(g250789 +g250791 +S'of' +p250793 +tp250794 +a(g250791 +g250793 +S'the' +p250795 +tp250796 +a(g250793 +g250795 +S"lord's" +p250797 +tp250798 +a(g250795 +g250797 +S'wrath.' +p250799 +tp250800 +a(g250797 +g250799 +S'the' +p250801 +tp250802 +a(g250799 +g250801 +S'sinners' +p250803 +tp250804 +a(g250801 +g250803 +S'wear' +p250805 +tp250806 +a(g250803 +g250805 +S'fur' +p250807 +tp250808 +a(g250805 +g250807 +S'robes' +p250809 +tp250810 +a(g250807 +g250809 +S'because' +p250811 +tp250812 +a(g250809 +g250811 +S'god' +p250813 +tp250814 +a(g250811 +g250813 +S'clothed' +p250815 +tp250816 +a(g250813 +g250815 +S'them' +p250817 +tp250818 +a(g250815 +g250817 +S'in' +p250819 +tp250820 +a(g250817 +g250819 +S'"coats' +p250821 +tp250822 +a(g250819 +g250821 +S'of' +p250823 +tp250824 +a(g250821 +g250823 +S'skins"' +p250825 +tp250826 +a(g250823 +g250825 +S'so' +p250827 +tp250828 +a(g250825 +g250827 +S'that' +p250829 +tp250830 +a(g250827 +g250829 +S'they' +p250831 +tp250832 +a(g250829 +g250831 +S'could' +p250833 +tp250834 +a(g250831 +g250833 +S'stand' +p250835 +tp250836 +a(g250833 +g250835 +S'unashamed' +p250837 +tp250838 +a(g250835 +g250837 +S'in' +p250839 +tp250840 +a(g250837 +g250839 +S'his' +p250841 +tp250842 +a(g250839 +g250841 +S'presence.' +p250843 +tp250844 +a(g250841 +g250843 +S'the' +p250845 +tp250846 +a(g250843 +g250845 +S'serpent,' +p250847 +tp250848 +a(g250845 +g250847 +S'now' +p250849 +tp250850 +a(g250847 +g250849 +S'cursed' +p250851 +tp250852 +a(g250849 +g250851 +S'among' +p250853 +tp250854 +a(g250851 +g250853 +S'creatures,' +p250855 +tp250856 +a(g250853 +g250855 +S'slithers' +p250857 +tp250858 +a(g250855 +g250857 +S'away' +p250859 +tp250860 +a(g250857 +g250859 +S'on' +p250861 +tp250862 +a(g250859 +g250861 +S'its' +p250863 +tp250864 +a(g250861 +g250863 +S'belly' +p250865 +tp250866 +a(g250863 +g250865 +S'to' +p250867 +tp250868 +a(g250865 +g250867 +S'eat' +p250869 +tp250870 +a(g250867 +g250869 +S'dust.' +p250871 +tp250872 +a(g250869 +g250871 +S'the' +p250873 +tp250874 +a(g250871 +g250873 +S'sharp' +p250875 +tp250876 +a(g250873 +g250875 +S'beam' +p250877 +tp250878 +a(g250875 +g250877 +S'of' +p250879 +tp250880 +a(g250877 +g250879 +S'light' +p250881 +tp250882 +a(g250879 +g250881 +S'overhead' +p250883 +tp250884 +a(g250881 +g250883 +S'refers' +p250885 +tp250886 +a(g250883 +g250885 +S'to' +p250887 +tp250888 +a(g250885 +g250887 +S'the' +p250889 +tp250890 +a(g250887 +g250889 +S'"flaming' +p250891 +tp250892 +a(g250889 +g250891 +S'sword"' +p250893 +tp250894 +a(g250891 +g250893 +S'in' +p250895 +tp250896 +a(g250893 +g250895 +S'genesis.' +p250897 +tp250898 +a(g250895 +g250897 +S"west's" +p250899 +tp250900 +a(g250897 +g250899 +S'many' +p250901 +tp250902 +a(g250899 +g250901 +S'dutch' +p250903 +tp250904 +a(g250901 +g250903 +S'still-life' +p250905 +tp250906 +a(g250903 +g250905 +S'painters' +p250907 +tp250908 +a(g250905 +g250907 +S'silhouetted' +p250909 +tp250910 +a(g250907 +g250909 +S'their' +p250911 +tp250912 +a(g250909 +g250911 +S'carefully' +p250913 +tp250914 +a(g250911 +g250913 +S'arranged' +p250915 +tp250916 +a(g250913 +g250915 +S'foreground' +p250917 +tp250918 +a(g250915 +g250917 +S'objects' +p250919 +tp250920 +a(g250917 +g250919 +S'against' +p250921 +tp250922 +a(g250919 +g250921 +S'neutral,' +p250923 +tp250924 +a(g250921 +g250923 +S'blank' +p250925 +tp250926 +a(g250923 +g250925 +S'backgrounds.' +p250927 +tp250928 +a(g250925 +g250927 +S'similarly,' +p250929 +tp250930 +a(g250927 +g250929 +S'the' +p250931 +tp250932 +a(g250929 +g250931 +S'forest' +p250933 +tp250934 +a(g250931 +g250933 +S'backdrop' +p250935 +tp250936 +a(g250933 +g250935 +S'here' +p250937 +tp250938 +a(g250935 +g250937 +S'is' +p250939 +tp250940 +a(g250937 +g250939 +S'so' +p250941 +tp250942 +a(g250939 +g250941 +S'dark' +p250943 +tp250944 +a(g250941 +g250943 +S'it' +p250945 +tp250946 +a(g250943 +g250945 +S'nearly' +p250947 +tp250948 +a(g250945 +g250947 +S'conceals' +p250949 +tp250950 +a(g250947 +g250949 +S'a' +p250951 +tp250952 +a(g250949 +g250951 +S'stone' +p250953 +tp250954 +a(g250951 +g250953 +S'archway.' +p250955 +tp250956 +a(g250953 +g250955 +S'the' +p250957 +tp250958 +a(g250955 +g250957 +S'abundance' +p250959 +tp250960 +a(g250957 +g250959 +S'of' +p250961 +tp250962 +a(g250959 +g250961 +S'the' +p250963 +tp250964 +a(g250961 +g250963 +S'sea' +p250965 +tp250966 +a(g250963 +g250965 +S'and' +p250967 +tp250968 +a(g250965 +g250967 +S'the' +p250969 +tp250970 +a(g250967 +g250969 +S'land' +p250971 +tp250972 +a(g250969 +g250971 +S'is' +p250973 +tp250974 +a(g250971 +g250973 +S'suggested' +p250975 +tp250976 +a(g250973 +g250975 +S'by' +p250977 +tp250978 +a(g250975 +g250977 +S'the' +p250979 +tp250980 +a(g250977 +g250979 +S'fishing' +p250981 +tp250982 +a(g250979 +g250981 +S'rod,' +p250983 +tp250984 +a(g250981 +g250983 +S'bait' +p250985 +tp250986 +a(g250983 +g250985 +S'box,' +p250987 +tp250988 +a(g250985 +g250987 +S'and' +p250989 +tp250990 +a(g250987 +g250989 +S'catch' +p250991 +tp250992 +a(g250989 +g250991 +S'of' +p250993 +tp250994 +a(g250991 +g250993 +S'fish' +p250995 +tp250996 +a(g250993 +g250995 +S'that' +p250997 +tp250998 +a(g250995 +g250997 +S'surround' +p250999 +tp251000 +a(g250997 +g250999 +S'a' +p251001 +tp251002 +a(g250999 +g251001 +S'wicker' +p251003 +tp251004 +a(g251001 +g251003 +S'basket' +p251005 +tp251006 +a(g251003 +g251005 +S'overflowing' +p251007 +tp251008 +a(g251005 +g251007 +S'with' +p251009 +tp251010 +a(g251007 +g251009 +S'fruit' +p251011 +tp251012 +a(g251009 +g251011 +S'and' +p251013 +tp251014 +a(g251011 +g251013 +S'vegetables.' +p251015 +tp251016 +a(g251013 +g251015 +S'the' +p251017 +tp251018 +a(g251015 +g251017 +S'work' +p251019 +tp251020 +a(g251017 +g251019 +S'forms' +p251021 +tp251022 +a(g251019 +g251021 +S'an' +p251023 +tp251024 +a(g251021 +g251023 +S'allegory' +p251025 +tp251026 +a(g251023 +g251025 +S'on' +p251027 +tp251028 +a(g251025 +g251027 +S'the' +p251029 +tp251030 +a(g251027 +g251029 +S'cycles' +p251031 +tp251032 +a(g251029 +g251031 +S'of' +p251033 +tp251034 +a(g251031 +g251033 +S'life.' +p251035 +tp251036 +a(g251033 +g251035 +S'a' +p251037 +tp251038 +a(g251035 +g251037 +S'nest' +p251039 +tp251040 +a(g251037 +g251039 +S'of' +p251041 +tp251042 +a(g251039 +g251041 +S"birds'" +p251043 +tp251044 +a(g251041 +g251043 +S'eggs' +p251045 +tp251046 +a(g251043 +g251045 +S'implies' +p251047 +tp251048 +a(g251045 +g251047 +S'birth.' +p251049 +tp251050 +a(g251047 +g251049 +S'full' +p251051 +tp251052 +a(g251049 +g251051 +S'blossoms' +p251053 +tp251054 +a(g251051 +g251053 +S'and' +p251055 +tp251056 +a(g251053 +g251055 +S'ripe' +p251057 +tp251058 +a(g251055 +g251057 +S'fruit' +p251059 +tp251060 +a(g251057 +g251059 +S'suggest' +p251061 +tp251062 +a(g251059 +g251061 +S'maturity.' +p251063 +tp251064 +a(g251061 +g251063 +S'the' +p251065 +tp251066 +a(g251063 +g251065 +S'gnarled' +p251067 +tp251068 +a(g251065 +g251067 +S'tree' +p251069 +tp251070 +a(g251067 +g251069 +S'stump' +p251071 +tp251072 +a(g251069 +g251071 +S'characterizes' +p251073 +tp251074 +a(g251071 +g251073 +S'old' +p251075 +tp251076 +a(g251073 +g251075 +S'age.' +p251077 +tp251078 +a(g251075 +g251077 +S'ultimately,' +p251079 +tp251080 +a(g251077 +g251079 +S'death' +p251081 +tp251082 +a(g251079 +g251081 +S'appears' +p251083 +tp251084 +a(g251081 +g251083 +S'with' +p251085 +tp251086 +a(g251083 +g251085 +S'the' +p251087 +tp251088 +a(g251085 +g251087 +S'fish' +p251089 +tp251090 +a(g251087 +g251089 +S'and' +p251091 +tp251092 +a(g251089 +g251091 +S'a' +p251093 +tp251094 +a(g251091 +g251093 +S'lizard,' +p251095 +tp251096 +a(g251093 +g251095 +S'being' +p251097 +tp251098 +a(g251095 +g251097 +S'eaten' +p251099 +tp251100 +a(g251097 +g251099 +S'by' +p251101 +tp251102 +a(g251099 +g251101 +S'ants.' +p251103 +tp251104 +a(g251101 +g251103 +S'the' +p251105 +tp251106 +a(g251103 +g251105 +S'wheat' +p251107 +tp251108 +a(g251105 +g251107 +S'and' +p251109 +tp251110 +a(g251107 +g251109 +S'grapes' +p251111 +tp251112 +a(g251109 +g251111 +S'offer' +p251113 +tp251114 +a(g251111 +g251113 +S'salvation' +p251115 +tp251116 +a(g251113 +g251115 +S'by' +p251117 +tp251118 +a(g251115 +g251117 +S'symbolizing' +p251119 +tp251120 +a(g251117 +g251119 +S"jesus'" +p251121 +tp251122 +a(g251119 +g251121 +S'blessing' +p251123 +tp251124 +a(g251121 +g251123 +S'of' +p251125 +tp251126 +a(g251123 +g251125 +S'bread' +p251127 +tp251128 +a(g251125 +g251127 +S'and' +p251129 +tp251130 +a(g251127 +g251129 +S'wine' +p251131 +tp251132 +a(g251129 +g251131 +S'at' +p251133 +tp251134 +a(g251131 +g251133 +S'the' +p251135 +tp251136 +a(g251133 +g251135 +S'last' +p251137 +tp251138 +a(g251135 +g251137 +S'supper.' +p251139 +tp251140 +a(g251137 +g251139 +S'an' +p251141 +tp251142 +a(g251139 +g251141 +S'early' +p251143 +tp251144 +a(g251141 +g251143 +S'biographer' +p251145 +tp251146 +a(g251143 +g251145 +S'noted' +p251147 +tp251148 +a(g251145 +g251147 +S'that' +p251149 +tp251150 +a(g251147 +g251149 +S'mignon' +p251151 +tp251152 +a(g251149 +g251151 +S'was' +p251153 +tp251154 +a(g251151 +g251153 +S'"especially' +p251155 +tp251156 +a(g251153 +g251155 +S'diligent,"' +p251157 +tp251158 +a(g251155 +g251157 +S'a' +p251159 +tp251160 +a(g251157 +g251159 +S'quality' +p251161 +tp251162 +a(g251159 +g251161 +S'that' +p251163 +tp251164 +a(g251161 +g251163 +S'this' +p251165 +tp251166 +a(g251163 +g251165 +S'stunning' +p251167 +tp251168 +a(g251165 +g251167 +S'array' +p251169 +tp251170 +a(g251167 +g251169 +S'of' +p251171 +tp251172 +a(g251169 +g251171 +S'textures' +p251173 +tp251174 +a(g251171 +g251173 +S'certainly' +p251175 +tp251176 +a(g251173 +g251175 +S'proves.' +p251177 +tp251178 +a(g251175 +g251177 +S'after' +p251179 +tp251180 +a(g251177 +g251179 +S'training' +p251181 +tp251182 +a(g251179 +g251181 +S'in' +p251183 +tp251184 +a(g251181 +g251183 +S'his' +p251185 +tp251186 +a(g251183 +g251185 +S'native' +p251187 +tp251188 +a(g251185 +g251187 +S'germany,' +p251189 +tp251190 +a(g251187 +g251189 +S'mignon' +p251191 +tp251192 +a(g251189 +g251191 +S'moved' +p251193 +tp251194 +a(g251191 +g251193 +S'to' +p251195 +tp251196 +a(g251193 +g251195 +S'utrecht.' +p251197 +tp251198 +a(g251195 +g251197 +S'while' +p251199 +tp251200 +a(g251197 +g251199 +S'there' +p251201 +tp251202 +a(g251199 +g251201 +S'he' +p251203 +tp251204 +a(g251201 +g251203 +S'probably' +p251205 +tp251206 +a(g251203 +g251205 +S'worked' +p251207 +tp251208 +a(g251205 +g251207 +S'in' +p251209 +tp251210 +a(g251207 +g251209 +S'the' +p251211 +tp251212 +a(g251209 +g251211 +S'studio' +p251213 +tp251214 +a(g251211 +g251213 +S'of' +p251215 +tp251216 +a(g251213 +g251215 +S'in' +p251217 +tp251218 +a(g251215 +g251217 +S'the' +p251219 +tp251220 +a(g251217 +g251219 +S'sweeping' +p251221 +tp251222 +a(g251219 +g251221 +S'silhouette' +p251223 +tp251224 +a(g251221 +g251223 +S'of' +p251225 +tp251226 +a(g251223 +g251225 +S'while' +p251227 +tp251228 +a(g251225 +g251227 +S'the' +p251229 +tp251230 +a(g251227 +g251229 +S'central' +p251231 +tp251232 +a(g251229 +g251231 +S'form' +p251233 +tp251234 +a(g251231 +g251233 +S'of' +p251235 +tp251236 +a(g251233 +g251235 +S'puryear' +p251237 +tp251238 +a(g251235 +g251237 +S'was' +p251239 +tp251240 +a(g251237 +g251239 +S'born' +p251241 +tp251242 +a(g251239 +g251241 +S'in' +p251243 +tp251244 +a(g251241 +g251243 +S'washington,' +p251245 +tp251246 +a(g251243 +g251245 +S'dc,' +p251247 +tp251248 +a(g251245 +g251247 +S'in' +p251249 +tp251250 +a(g251247 +g251249 +S'1941.' +p251251 +tp251252 +a(g251249 +g251251 +S'after' +p251253 +tp251254 +a(g251251 +g251253 +S'earning' +p251255 +tp251256 +a(g251253 +g251255 +S'his' +p251257 +tp251258 +a(g251255 +g251257 +S'ba' +p251259 +tp251260 +a(g251257 +g251259 +S'there' +p251261 +tp251262 +a(g251259 +g251261 +S'from' +p251263 +tp251264 +a(g251261 +g251263 +S'catholic' +p251265 +tp251266 +a(g251263 +g251265 +S'university,' +p251267 +tp251268 +a(g251265 +g251267 +S'he' +p251269 +tp251270 +a(g251267 +g251269 +S'joined' +p251271 +tp251272 +a(g251269 +g251271 +S'the' +p251273 +tp251274 +a(g251271 +g251273 +S'peace' +p251275 +tp251276 +a(g251273 +g251275 +S'corps' +p251277 +tp251278 +a(g251275 +g251277 +S'in' +p251279 +tp251280 +a(g251277 +g251279 +S'sierra' +p251281 +tp251282 +a(g251279 +g251281 +S'leone,' +p251283 +tp251284 +a(g251281 +g251283 +S'africa,' +p251285 +tp251286 +a(g251283 +g251285 +S'where' +p251287 +tp251288 +a(g251285 +g251287 +S'he' +p251289 +tp251290 +a(g251287 +g251289 +S'had' +p251291 +tp251292 +a(g251289 +g251291 +S'the' +p251293 +tp251294 +a(g251291 +g251293 +S'chance' +p251295 +tp251296 +a(g251293 +g251295 +S'to' +p251297 +tp251298 +a(g251295 +g251297 +S'study' +p251299 +tp251300 +a(g251297 +g251299 +S'woodworking' +p251301 +tp251302 +a(g251299 +g251301 +S'techniques' +p251303 +tp251304 +a(g251301 +g251303 +S'such' +p251305 +tp251306 +a(g251303 +g251305 +S'as' +p251307 +tp251308 +a(g251305 +g251307 +S'basketry' +p251309 +tp251310 +a(g251307 +g251309 +S'and' +p251311 +tp251312 +a(g251309 +g251311 +S'carpentry.' +p251313 +tp251314 +a(g251311 +g251313 +S'puryear' +p251315 +tp251316 +a(g251313 +g251315 +S'then' +p251317 +tp251318 +a(g251315 +g251317 +S'attended' +p251319 +tp251320 +a(g251317 +g251319 +S'the' +p251321 +tp251322 +a(g251319 +g251321 +S'swedish' +p251323 +tp251324 +a(g251321 +g251323 +S'royal' +p251325 +tp251326 +a(g251323 +g251325 +S'academy' +p251327 +tp251328 +a(g251325 +g251327 +S'of' +p251329 +tp251330 +a(g251327 +g251329 +S'arts' +p251331 +tp251332 +a(g251329 +g251331 +S'in' +p251333 +tp251334 +a(g251331 +g251333 +S'stockholm' +p251335 +tp251336 +a(g251333 +g251335 +S'and' +p251337 +tp251338 +a(g251335 +g251337 +S'independently' +p251339 +tp251340 +a(g251337 +g251339 +S'continued' +p251341 +tp251342 +a(g251339 +g251341 +S'his' +p251343 +tp251344 +a(g251341 +g251343 +S'studies' +p251345 +tp251346 +a(g251343 +g251345 +S'in' +p251347 +tp251348 +a(g251345 +g251347 +S'woodworking.' +p251349 +tp251350 +a(g251347 +g251349 +S'he' +p251351 +tp251352 +a(g251349 +g251351 +S'received' +p251353 +tp251354 +a(g251351 +g251353 +S'an' +p251355 +tp251356 +a(g251353 +g251355 +S'mfa' +p251357 +tp251358 +a(g251355 +g251357 +S'in' +p251359 +tp251360 +a(g251357 +g251359 +S'sculpture' +p251361 +tp251362 +a(g251359 +g251361 +S'from' +p251363 +tp251364 +a(g251361 +g251363 +S'yale' +p251365 +tp251366 +a(g251363 +g251365 +S'university,' +p251367 +tp251368 +a(g251365 +g251367 +S'new' +p251369 +tp251370 +a(g251367 +g251369 +S'haven,' +p251371 +tp251372 +a(g251369 +g251371 +S'connecticut.' +p251373 +tp251374 +a(g251371 +g251373 +S'in' +p251375 +tp251376 +a(g251373 +g251375 +S'2007' +p251377 +tp251378 +a(g251375 +g251377 +S'the' +p251379 +tp251380 +a(g251377 +g251379 +S'museum' +p251381 +tp251382 +a(g251379 +g251381 +S'of' +p251383 +tp251384 +a(g251381 +g251383 +S'modern' +p251385 +tp251386 +a(g251383 +g251385 +S'art,' +p251387 +tp251388 +a(g251385 +g251387 +S'new' +p251389 +tp251390 +a(g251387 +g251389 +S'york,' +p251391 +tp251392 +a(g251389 +g251391 +S'organized' +p251393 +tp251394 +a(g251391 +g251393 +S'a' +p251395 +tp251396 +a(g251393 +g251395 +S'thirty-year' +p251397 +tp251398 +a(g251395 +g251397 +S'retrospective' +p251399 +tp251400 +a(g251397 +g251399 +S'exhibition' +p251401 +tp251402 +a(g251399 +g251401 +S'of' +p251403 +tp251404 +a(g251401 +g251403 +S'his' +p251405 +tp251406 +a(g251403 +g251405 +S'work.' +p251407 +tp251408 +a(g251405 +g251407 +S'puryear' +p251409 +tp251410 +a(g251407 +g251409 +S'lives' +p251411 +tp251412 +a(g251409 +g251411 +S'and' +p251413 +tp251414 +a(g251411 +g251413 +S'works' +p251415 +tp251416 +a(g251413 +g251415 +S'outside' +p251417 +tp251418 +a(g251415 +g251417 +S'new' +p251419 +tp251420 +a(g251417 +g251419 +S'york' +p251421 +tp251422 +a(g251419 +g251421 +S'city.' +p251423 +tp251424 +a(g251421 +g251423 +S'phaeton,' +p251425 +tp251426 +a(g251423 +g251425 +S'apollo\xe2\x80\x99s' +p251427 +tp251428 +a(g251425 +g251427 +S'son,' +p251429 +tp251430 +a(g251427 +g251429 +S'begged' +p251431 +tp251432 +a(g251429 +g251431 +S'his' +p251433 +tp251434 +a(g251431 +g251433 +S'father' +p251435 +tp251436 +a(g251433 +g251435 +S'to' +p251437 +tp251438 +a(g251435 +g251437 +S'allow' +p251439 +tp251440 +a(g251437 +g251439 +S'him' +p251441 +tp251442 +a(g251439 +g251441 +S'to' +p251443 +tp251444 +a(g251441 +g251443 +S'drive' +p251445 +tp251446 +a(g251443 +g251445 +S'the' +p251447 +tp251448 +a(g251445 +g251447 +S'chariot' +p251449 +tp251450 +a(g251447 +g251449 +S'of' +p251451 +tp251452 +a(g251449 +g251451 +S'the' +p251453 +tp251454 +a(g251451 +g251453 +S'sun' +p251455 +tp251456 +a(g251453 +g251455 +S'across' +p251457 +tp251458 +a(g251455 +g251457 +S'the' +p251459 +tp251460 +a(g251457 +g251459 +S'sky.' +p251461 +tp251462 +a(g251459 +g251461 +S'in' +p251463 +tp251464 +a(g251461 +g251463 +S'the' +p251465 +tp251466 +a(g251463 +g251465 +S'hands' +p251467 +tp251468 +a(g251465 +g251467 +S'of' +p251469 +tp251470 +a(g251467 +g251469 +S'the' +p251471 +tp251472 +a(g251469 +g251471 +S'rash' +p251473 +tp251474 +a(g251471 +g251473 +S'youth,' +p251475 +tp251476 +a(g251473 +g251475 +S'who' +p251477 +tp251478 +a(g251475 +g251477 +S'had' +p251479 +tp251480 +a(g251477 +g251479 +S'neither' +p251481 +tp251482 +a(g251479 +g251481 +S'the' +p251483 +tp251484 +a(g251481 +g251483 +S'strength' +p251485 +tp251486 +a(g251483 +g251485 +S'nor' +p251487 +tp251488 +a(g251485 +g251487 +S'the' +p251489 +tp251490 +a(g251487 +g251489 +S'experience' +p251491 +tp251492 +a(g251489 +g251491 +S'to' +p251493 +tp251494 +a(g251491 +g251493 +S'control' +p251495 +tp251496 +a(g251493 +g251495 +S'the' +p251497 +tp251498 +a(g251495 +g251497 +S'chariot,' +p251499 +tp251500 +a(g251497 +g251499 +S'the' +p251501 +tp251502 +a(g251499 +g251501 +S'horses' +p251503 +tp251504 +a(g251501 +g251503 +S'bolted,' +p251505 +tp251506 +a(g251503 +g251505 +S'scorching' +p251507 +tp251508 +a(g251505 +g251507 +S'everything' +p251509 +tp251510 +a(g251507 +g251509 +S'in' +p251511 +tp251512 +a(g251509 +g251511 +S'their' +p251513 +tp251514 +a(g251511 +g251513 +S'path' +p251515 +tp251516 +a(g251513 +g251515 +S'with' +p251517 +tp251518 +a(g251515 +g251517 +S'the' +p251519 +tp251520 +a(g251517 +g251519 +S"sun's" +p251521 +tp251522 +a(g251519 +g251521 +S'heat.' +p251523 +tp251524 +a(g251521 +g251523 +S'the' +p251525 +tp251526 +a(g251523 +g251525 +S'butterfly–winged' +p251527 +tp251528 +a(g251525 +g251527 +S'female' +p251529 +tp251530 +a(g251527 +g251529 +S'figures,' +p251531 +tp251532 +a(g251529 +g251531 +S'personifying' +p251533 +tp251534 +a(g251531 +g251533 +S'the' +p251535 +tp251536 +a(g251533 +g251535 +S'seasons' +p251537 +tp251538 +a(g251535 +g251537 +S'and' +p251539 +tp251540 +a(g251537 +g251539 +S'hours,' +p251541 +tp251542 +a(g251539 +g251541 +S'react' +p251543 +tp251544 +a(g251541 +g251543 +S'in' +p251545 +tp251546 +a(g251543 +g251545 +S'terror' +p251547 +tp251548 +a(g251545 +g251547 +S'as' +p251549 +tp251550 +a(g251547 +g251549 +S'the' +p251551 +tp251552 +a(g251549 +g251551 +S'earth' +p251553 +tp251554 +a(g251551 +g251553 +S'below' +p251555 +tp251556 +a(g251553 +g251555 +S'bursts' +p251557 +tp251558 +a(g251555 +g251557 +S'into' +p251559 +tp251560 +a(g251557 +g251559 +S'flame.' +p251561 +tp251562 +a(g251559 +g251561 +S'even' +p251563 +tp251564 +a(g251561 +g251563 +S'the' +p251565 +tp251566 +a(g251563 +g251565 +S'great' +p251567 +tp251568 +a(g251565 +g251567 +S'astrological' +p251569 +tp251570 +a(g251567 +g251569 +S'bands' +p251571 +tp251572 +a(g251569 +g251571 +S'that' +p251573 +tp251574 +a(g251571 +g251573 +S'arch' +p251575 +tp251576 +a(g251573 +g251575 +S'through' +p251577 +tp251578 +a(g251575 +g251577 +S'the' +p251579 +tp251580 +a(g251577 +g251579 +S'heavens' +p251581 +tp251582 +a(g251579 +g251581 +S'are' +p251583 +tp251584 +a(g251581 +g251583 +S'disrupted.' +p251585 +tp251586 +a(g251583 +g251585 +S'to' +p251587 +tp251588 +a(g251585 +g251587 +S'save' +p251589 +tp251590 +a(g251587 +g251589 +S'the' +p251591 +tp251592 +a(g251589 +g251591 +S'universe' +p251593 +tp251594 +a(g251591 +g251593 +S'from' +p251595 +tp251596 +a(g251593 +g251595 +S'destruction,' +p251597 +tp251598 +a(g251595 +g251597 +S'zeus,' +p251599 +tp251600 +a(g251597 +g251599 +S'king' +p251601 +tp251602 +a(g251599 +g251601 +S'of' +p251603 +tp251604 +a(g251601 +g251603 +S'the' +p251605 +tp251606 +a(g251603 +g251605 +S'gods,' +p251607 +tp251608 +a(g251605 +g251607 +S'throws' +p251609 +tp251610 +a(g251607 +g251609 +S'a' +p251611 +tp251612 +a(g251609 +g251611 +S'thunderbolt,' +p251613 +tp251614 +a(g251611 +g251613 +S'represented' +p251615 +tp251616 +a(g251613 +g251615 +S'here' +p251617 +tp251618 +a(g251615 +g251617 +S'by' +p251619 +tp251620 +a(g251617 +g251619 +S'a' +p251621 +tp251622 +a(g251619 +g251621 +S'blinding' +p251623 +tp251624 +a(g251621 +g251623 +S'shaft' +p251625 +tp251626 +a(g251623 +g251625 +S'of' +p251627 +tp251628 +a(g251625 +g251627 +S'light.' +p251629 +tp251630 +a(g251627 +g251629 +S'as' +p251631 +tp251632 +a(g251629 +g251631 +S'the' +p251633 +tp251634 +a(g251631 +g251633 +S'chariot' +p251635 +tp251636 +a(g251633 +g251635 +S'disintegrates,' +p251637 +tp251638 +a(g251635 +g251637 +S'phaeton' +p251639 +tp251640 +a(g251637 +g251639 +S'plunges' +p251641 +tp251642 +a(g251639 +g251641 +S'to' +p251643 +tp251644 +a(g251641 +g251643 +S'his' +p251645 +tp251646 +a(g251643 +g251645 +S'death.' +p251647 +tp251648 +a(g251645 +g251647 +S'rubens' +p251649 +tp251650 +a(g251647 +g251649 +S'painted' +p251651 +tp251652 +a(g251649 +g251651 +S'van' +p251653 +tp251654 +a(g251651 +g251653 +S'der' +p251655 +tp251656 +a(g251653 +g251655 +S'neer' +p251657 +tp251658 +a(g251655 +g251657 +S'was' +p251659 +tp251660 +a(g251657 +g251659 +S'in' +p251661 +tp251662 +a(g251659 +g251661 +S'his' +p251663 +tp251664 +a(g251661 +g251663 +S'late' +p251665 +tp251666 +a(g251663 +g251665 +S'twenties' +p251667 +tp251668 +a(g251665 +g251667 +S'when' +p251669 +tp251670 +a(g251667 +g251669 +S'he' +p251671 +tp251672 +a(g251669 +g251671 +S'decided' +p251673 +tp251674 +a(g251671 +g251673 +S'to' +p251675 +tp251676 +a(g251673 +g251675 +S'become' +p251677 +tp251678 +a(g251675 +g251677 +S'an' +p251679 +tp251680 +a(g251677 +g251679 +S'artist.' +p251681 +tp251682 +a(g251679 +g251681 +S'he' +p251683 +tp251684 +a(g251681 +g251683 +S'first' +p251685 +tp251686 +a(g251683 +g251685 +S'painted' +p251687 +tp251688 +a(g251685 +g251687 +S'winter' +p251689 +tp251690 +a(g251687 +g251689 +S'scenes,' +p251691 +tp251692 +a(g251689 +g251691 +S'partly' +p251693 +tp251694 +a(g251691 +g251693 +S'under' +p251695 +tp251696 +a(g251693 +g251695 +S'the' +p251697 +tp251698 +a(g251695 +g251697 +S'influence' +p251699 +tp251700 +a(g251697 +g251699 +S'of' +p251701 +tp251702 +a(g251699 +g251701 +S'hendrick' +p251703 +tp251704 +a(g251701 +g251703 +S'avercamp.' +p251705 +tp251706 +a(g251703 +g251705 +S'by' +p251707 +tp251708 +a(g251705 +g251707 +S'the' +p251709 +tp251710 +a(g251707 +g251709 +S'late' +p251711 +tp251712 +a(g251709 +g251711 +S'1640s,' +p251713 +tp251714 +a(g251711 +g251713 +S'however,' +p251715 +tp251716 +a(g251713 +g251715 +S'van' +p251717 +tp251718 +a(g251715 +g251717 +S'der' +p251719 +tp251720 +a(g251717 +g251719 +S'neer' +p251721 +tp251722 +a(g251719 +g251721 +S'developed' +p251723 +tp251724 +a(g251721 +g251723 +S'his' +p251725 +tp251726 +a(g251723 +g251725 +S'own' +p251727 +tp251728 +a(g251725 +g251727 +S'specialty' +p251729 +tp251730 +a(g251727 +g251729 +S'of' +p251731 +tp251732 +a(g251729 +g251731 +S'nocturnes,' +p251733 +tp251734 +a(g251731 +g251733 +S'or' +p251735 +tp251736 +a(g251733 +g251735 +S'night' +p251737 +tp251738 +a(g251735 +g251737 +S'scenes.' +p251739 +tp251740 +a(g251737 +g251739 +S'these' +p251741 +tp251742 +a(g251739 +g251741 +S'mysteriously' +p251743 +tp251744 +a(g251741 +g251743 +S'dark,' +p251745 +tp251746 +a(g251743 +g251745 +S'moonlit' +p251747 +tp251748 +a(g251745 +g251747 +S'pictures' +p251749 +tp251750 +a(g251747 +g251749 +S'belong' +p251751 +tp251752 +a(g251749 +g251751 +S'to' +p251753 +tp251754 +a(g251751 +g251753 +S'the' +p251755 +tp251756 +a(g251753 +g251755 +S'early' +p251757 +tp251758 +a(g251755 +g251757 +S'monochrome' +p251759 +tp251760 +a(g251757 +g251759 +S'period' +p251761 +tp251762 +a(g251759 +g251761 +S'in' +p251763 +tp251764 +a(g251761 +g251763 +S'dutch' +p251765 +tp251766 +a(g251763 +g251765 +S'art,' +p251767 +tp251768 +a(g251765 +g251767 +S'much' +p251769 +tp251770 +a(g251767 +g251769 +S'as' +p251771 +tp251772 +a(g251769 +g251771 +S'avercamp’s' +p251773 +tp251774 +a(g251771 +g251773 +S'cool' +p251775 +tp251776 +a(g251773 +g251775 +S'grays' +p251777 +tp251778 +a(g251775 +g251777 +S'or' +p251779 +tp251780 +a(g251777 +g251779 +S'jan' +p251781 +tp251782 +a(g251779 +g251781 +S'van' +p251783 +tp251784 +a(g251781 +g251783 +S'goyen’s' +p251785 +tp251786 +a(g251783 +g251785 +S'warm' +p251787 +tp251788 +a(g251785 +g251787 +S'tans.' +p251789 +tp251790 +a(g251787 +g251789 +S'here,' +p251791 +tp251792 +a(g251789 +g251791 +S'luminous' +p251793 +tp251794 +a(g251791 +g251793 +S'clouds' +p251795 +tp251796 +a(g251793 +g251795 +S'float' +p251797 +tp251798 +a(g251795 +g251797 +S'before' +p251799 +tp251800 +a(g251797 +g251799 +S'a' +p251801 +tp251802 +a(g251799 +g251801 +S'full' +p251803 +tp251804 +a(g251801 +g251803 +S'moon.' +p251805 +tp251806 +a(g251803 +g251805 +S'reflecting' +p251807 +tp251808 +a(g251805 +g251807 +S'the' +p251809 +tp251810 +a(g251807 +g251809 +S'moonlight,' +p251811 +tp251812 +a(g251809 +g251811 +S'a' +p251813 +tp251814 +a(g251811 +g251813 +S'stream' +p251815 +tp251816 +a(g251813 +g251815 +S'runs' +p251817 +tp251818 +a(g251815 +g251817 +S'through' +p251819 +tp251820 +a(g251817 +g251819 +S'the' +p251821 +tp251822 +a(g251819 +g251821 +S'center' +p251823 +tp251824 +a(g251821 +g251823 +S'of' +p251825 +tp251826 +a(g251823 +g251825 +S'the' +p251827 +tp251828 +a(g251825 +g251827 +S'scene' +p251829 +tp251830 +a(g251827 +g251829 +S'and' +p251831 +tp251832 +a(g251829 +g251831 +S'directs' +p251833 +tp251834 +a(g251831 +g251833 +S'attention' +p251835 +tp251836 +a(g251833 +g251835 +S'toward' +p251837 +tp251838 +a(g251835 +g251837 +S'a' +p251839 +tp251840 +a(g251837 +g251839 +S'church.' +p251841 +tp251842 +a(g251839 +g251841 +S'a' +p251843 +tp251844 +a(g251841 +g251843 +S'village' +p251845 +tp251846 +a(g251843 +g251845 +S'and' +p251847 +tp251848 +a(g251845 +g251847 +S'a' +p251849 +tp251850 +a(g251847 +g251849 +S'walled' +p251851 +tp251852 +a(g251849 +g251851 +S'estate' +p251853 +tp251854 +a(g251851 +g251853 +S'close' +p251855 +tp251856 +a(g251853 +g251855 +S'the' +p251857 +tp251858 +a(g251855 +g251857 +S'symmetrically' +p251859 +tp251860 +a(g251857 +g251859 +S'composed' +p251861 +tp251862 +a(g251859 +g251861 +S'space' +p251863 +tp251864 +a(g251861 +g251863 +S'at' +p251865 +tp251866 +a(g251863 +g251865 +S'either' +p251867 +tp251868 +a(g251865 +g251867 +S'side.' +p251869 +tp251870 +a(g251867 +g251869 +S'beams' +p251871 +tp251872 +a(g251869 +g251871 +S'from' +p251873 +tp251874 +a(g251871 +g251873 +S'the' +p251875 +tp251876 +a(g251873 +g251875 +S'moon' +p251877 +tp251878 +a(g251875 +g251877 +S'glint' +p251879 +tp251880 +a(g251877 +g251879 +S'off' +p251881 +tp251882 +a(g251879 +g251881 +S'window' +p251883 +tp251884 +a(g251881 +g251883 +S'panes,' +p251885 +tp251886 +a(g251883 +g251885 +S'glow' +p251887 +tp251888 +a(g251885 +g251887 +S'upon' +p251889 +tp251890 +a(g251887 +g251889 +S'a' +p251891 +tp251892 +a(g251889 +g251891 +S'fashionable' +p251893 +tp251894 +a(g251891 +g251893 +S'couple' +p251895 +tp251896 +a(g251893 +g251895 +S'conversing' +p251897 +tp251898 +a(g251895 +g251897 +S'by' +p251899 +tp251900 +a(g251897 +g251899 +S'the' +p251901 +tp251902 +a(g251899 +g251901 +S'estate’s' +p251903 +tp251904 +a(g251901 +g251903 +S'ornate' +p251905 +tp251906 +a(g251903 +g251905 +S'gateway,' +p251907 +tp251908 +a(g251905 +g251907 +S'and' +p251909 +tp251910 +a(g251907 +g251909 +S'silhouette' +p251911 +tp251912 +a(g251909 +g251911 +S'a' +p251913 +tp251914 +a(g251911 +g251913 +S'poor' +p251915 +tp251916 +a(g251913 +g251915 +S'family' +p251917 +tp251918 +a(g251915 +g251917 +S'crossing' +p251919 +tp251920 +a(g251917 +g251919 +S'a' +p251921 +tp251922 +a(g251919 +g251921 +S'bridge.' +p251923 +tp251924 +a(g251921 +g251923 +S'this' +p251925 +tp251926 +a(g251923 +g251925 +S'nocturne’s' +p251927 +tp251928 +a(g251925 +g251927 +S'radiance' +p251929 +tp251930 +a(g251927 +g251929 +S'is' +p251931 +tp251932 +a(g251929 +g251931 +S'created' +p251933 +tp251934 +a(g251931 +g251933 +S'by' +p251935 +tp251936 +a(g251933 +g251935 +S'multiple' +p251937 +tp251938 +a(g251935 +g251937 +S'layers' +p251939 +tp251940 +a(g251937 +g251939 +S'of' +p251941 +tp251942 +a(g251939 +g251941 +S'translucent' +p251943 +tp251944 +a(g251941 +g251943 +S'and' +p251945 +tp251946 +a(g251943 +g251945 +S'opaque' +p251947 +tp251948 +a(g251945 +g251947 +S'paint' +p251949 +tp251950 +a(g251947 +g251949 +S'applied' +p251951 +tp251952 +a(g251949 +g251951 +S'with' +p251953 +tp251954 +a(g251951 +g251953 +S'consummate' +p251955 +tp251956 +a(g251953 +g251955 +S'technical' +p251957 +tp251958 +a(g251955 +g251957 +S'skill.' +p251959 +tp251960 +a(g251957 +g251959 +S'using' +p251961 +tp251962 +a(g251959 +g251961 +S'the' +p251963 +tp251964 +a(g251961 +g251963 +S'handle' +p251965 +tp251966 +a(g251963 +g251965 +S'of' +p251967 +tp251968 +a(g251965 +g251967 +S'his' +p251969 +tp251970 +a(g251967 +g251969 +S'brush' +p251971 +tp251972 +a(g251969 +g251971 +S'or' +p251973 +tp251974 +a(g251971 +g251973 +S'a' +p251975 +tp251976 +a(g251973 +g251975 +S'palette' +p251977 +tp251978 +a(g251975 +g251977 +S'knife,' +p251979 +tp251980 +a(g251977 +g251979 +S'van' +p251981 +tp251982 +a(g251979 +g251981 +S'der' +p251983 +tp251984 +a(g251981 +g251983 +S'neer' +p251985 +tp251986 +a(g251983 +g251985 +S'scraped' +p251987 +tp251988 +a(g251985 +g251987 +S'away' +p251989 +tp251990 +a(g251987 +g251989 +S'top' +p251991 +tp251992 +a(g251989 +g251991 +S'layers' +p251993 +tp251994 +a(g251991 +g251993 +S'of' +p251995 +tp251996 +a(g251993 +g251995 +S'dark' +p251997 +tp251998 +a(g251995 +g251997 +S'color' +p251999 +tp252000 +a(g251997 +g251999 +S'to' +p252001 +tp252002 +a(g251999 +g252001 +S'reveal' +p252003 +tp252004 +a(g252001 +g252003 +S'underlying' +p252005 +tp252006 +a(g252003 +g252005 +S'pinks,' +p252007 +tp252008 +a(g252005 +g252007 +S'golds,' +p252009 +tp252010 +a(g252007 +g252009 +S'and' +p252011 +tp252012 +a(g252009 +g252011 +S'blues' +p252013 +tp252014 +a(g252011 +g252013 +S'in' +p252015 +tp252016 +a(g252013 +g252015 +S'the' +p252017 +tp252018 +a(g252015 +g252017 +S'clouds.' +p252019 +tp252020 +a(g252017 +g252019 +S'one' +p252021 +tp252022 +a(g252019 +g252021 +S'of' +p252023 +tp252024 +a(g252021 +g252023 +S'the' +p252025 +tp252026 +a(g252023 +g252025 +S'key' +p252027 +tp252028 +a(g252025 +g252027 +S'figures' +p252029 +tp252030 +a(g252027 +g252029 +S'in' +p252031 +tp252032 +a(g252029 +g252031 +S'the' +p252033 +tp252034 +a(g252031 +g252033 +S'history' +p252035 +tp252036 +a(g252033 +g252035 +S'of' +p252037 +tp252038 +a(g252035 +g252037 +S'so-called' +p252039 +tp252040 +a(g252037 +g252039 +S'pop' +p252041 +tp252042 +a(g252039 +g252041 +S'art,' +p252043 +tp252044 +a(g252041 +g252043 +S'roy' +p252045 +tp252046 +a(g252043 +g252045 +S'lichtenstein' +p252047 +tp252048 +a(g252045 +g252047 +S'shared' +p252049 +tp252050 +a(g252047 +g252049 +S'with' +p252051 +tp252052 +a(g252049 +g252051 +S'his' +p252053 +tp252054 +a(g252051 +g252053 +S'contemporary' +p252055 +tp252056 +a(g252053 +g252055 +S'andy' +p252057 +tp252058 +a(g252055 +g252057 +S'warhol' +p252059 +tp252060 +a(g252057 +g252059 +S'a' +p252061 +tp252062 +a(g252059 +g252061 +S'fascination' +p252063 +tp252064 +a(g252061 +g252063 +S'for' +p252065 +tp252066 +a(g252063 +g252065 +S'the' +p252067 +tp252068 +a(g252065 +g252067 +S'visual' +p252069 +tp252070 +a(g252067 +g252069 +S'languages' +p252071 +tp252072 +a(g252069 +g252071 +S'of' +p252073 +tp252074 +a(g252071 +g252073 +S'printed' +p252075 +tp252076 +a(g252073 +g252075 +S'mass' +p252077 +tp252078 +a(g252075 +g252077 +S'media' +p252079 +tp252080 +a(g252077 +g252079 +S'and' +p252081 +tp252082 +a(g252079 +g252081 +S'consumer' +p252083 +tp252084 +a(g252081 +g252083 +S'culture' +p252085 +tp252086 +a(g252083 +g252085 +S'during' +p252087 +tp252088 +a(g252085 +g252087 +S'the' +p252089 +tp252090 +a(g252087 +g252089 +S'1960s.' +p252091 +tp252092 +a(g252089 +g252091 +S'lichtenstein' +p252093 +tp252094 +a(g252091 +g252093 +S'was' +p252095 +tp252096 +a(g252093 +g252095 +S'especially' +p252097 +tp252098 +a(g252095 +g252097 +S'preoccupied' +p252099 +tp252100 +a(g252097 +g252099 +S'with' +p252101 +tp252102 +a(g252099 +g252101 +S'cheap' +p252103 +tp252104 +a(g252101 +g252103 +S'newspaper' +p252105 +tp252106 +a(g252103 +g252105 +S'advertising' +p252107 +tp252108 +a(g252105 +g252107 +S'and' +p252109 +tp252110 +a(g252107 +g252109 +S'cartoon' +p252111 +tp252112 +a(g252109 +g252111 +S'or' +p252113 +tp252114 +a(g252111 +g252113 +S'comic' +p252115 +tp252116 +a(g252113 +g252115 +S'book' +p252117 +tp252118 +a(g252115 +g252117 +S'illustration,' +p252119 +tp252120 +a(g252117 +g252119 +S'which' +p252121 +tp252122 +a(g252119 +g252121 +S'he' +p252123 +tp252124 +a(g252121 +g252123 +S'enlarged' +p252125 +tp252126 +a(g252123 +g252125 +S'and' +p252127 +tp252128 +a(g252125 +g252127 +S'transposed—making' +p252129 +tp252130 +a(g252127 +g252129 +S'subtle' +p252131 +tp252132 +a(g252129 +g252131 +S'alterations—directly' +p252133 +tp252134 +a(g252131 +g252133 +S'into' +p252135 +tp252136 +a(g252133 +g252135 +S'paint' +p252137 +tp252138 +a(g252135 +g252137 +S'on' +p252139 +tp252140 +a(g252137 +g252139 +S'canvas.' +p252141 +tp252142 +a(g252139 +g252141 +S'at' +p252143 +tp252144 +a(g252141 +g252143 +S'the' +p252145 +tp252146 +a(g252143 +g252145 +S'time' +p252147 +tp252148 +a(g252145 +g252147 +S'the' +p252149 +tp252150 +a(g252147 +g252149 +S'simplistic' +p252151 +tp252152 +a(g252149 +g252151 +S'narratives' +p252153 +tp252154 +a(g252151 +g252153 +S'and' +p252155 +tp252156 +a(g252153 +g252155 +S'boldly' +p252157 +tp252158 +a(g252155 +g252157 +S'graphic' +p252159 +tp252160 +a(g252157 +g252159 +S'visual' +p252161 +tp252162 +a(g252159 +g252161 +S'mannerisms' +p252163 +tp252164 +a(g252161 +g252163 +S'of' +p252165 +tp252166 +a(g252163 +g252165 +S'comics' +p252167 +tp252168 +a(g252165 +g252167 +S'and' +p252169 +tp252170 +a(g252167 +g252169 +S'advertising' +p252171 +tp252172 +a(g252169 +g252171 +S'were' +p252173 +tp252174 +a(g252171 +g252173 +S'understood' +p252175 +tp252176 +a(g252173 +g252175 +S'to' +p252177 +tp252178 +a(g252175 +g252177 +S'resist' +p252179 +tp252180 +a(g252177 +g252179 +S'the' +p252181 +tp252182 +a(g252179 +g252181 +S'powerful' +p252183 +tp252184 +a(g252181 +g252183 +S'postwar' +p252185 +tp252186 +a(g252183 +g252185 +S'legacy' +p252187 +tp252188 +a(g252185 +g252187 +S'of' +p252189 +tp252190 +a(g252187 +g252189 +S'abstract' +p252191 +tp252192 +a(g252189 +g252191 +S'expressionist' +p252193 +tp252194 +a(g252191 +g252193 +S'painting—the' +p252195 +tp252196 +a(g252193 +g252195 +S'highly' +p252197 +tp252198 +a(g252195 +g252197 +S'subjective' +p252199 +tp252200 +a(g252197 +g252199 +S'processes' +p252201 +tp252202 +a(g252199 +g252201 +S'and' +p252203 +tp252204 +a(g252201 +g252203 +S'grand' +p252205 +tp252206 +a(g252203 +g252205 +S'claims' +p252207 +tp252208 +a(g252205 +g252207 +S'for' +p252209 +tp252210 +a(g252207 +g252209 +S'psychic' +p252211 +tp252212 +a(g252209 +g252211 +S'content' +p252213 +tp252214 +a(g252211 +g252213 +S'that' +p252215 +tp252216 +a(g252213 +g252215 +S'characterized' +p252217 +tp252218 +a(g252215 +g252217 +S'the' +p252219 +tp252220 +a(g252217 +g252219 +S'work' +p252221 +tp252222 +a(g252219 +g252221 +S'of' +p252223 +tp252224 +a(g252221 +g252223 +S'best' +p252225 +tp252226 +a(g252223 +g252225 +S'known' +p252227 +tp252228 +a(g252225 +g252227 +S'for' +p252229 +tp252230 +a(g252227 +g252229 +S'his' +p252231 +tp252232 +a(g252229 +g252231 +S'panoramic' +p252233 +tp252234 +a(g252231 +g252233 +S'views' +p252235 +tp252236 +a(g252233 +g252235 +S'of' +p252237 +tp252238 +a(g252235 +g252237 +S'the' +p252239 +tp252240 +a(g252237 +g252239 +S'rocky' +p252241 +tp252242 +a(g252239 +g252241 +S'mountains,' +p252243 +tp252244 +a(g252241 +g252243 +S'albert' +p252245 +tp252246 +a(g252243 +g252245 +S'bierstadt' +p252247 +tp252248 +a(g252245 +g252247 +S'began' +p252249 +tp252250 +a(g252247 +g252249 +S'his' +p252251 +tp252252 +a(g252249 +g252251 +S'career' +p252253 +tp252254 +a(g252251 +g252253 +S'as' +p252255 +tp252256 +a(g252253 +g252255 +S'a' +p252257 +tp252258 +a(g252255 +g252257 +S'painter' +p252259 +tp252260 +a(g252257 +g252259 +S'of' +p252261 +tp252262 +a(g252259 +g252261 +S'european' +p252263 +tp252264 +a(g252261 +g252263 +S'landscapes.' +p252265 +tp252266 +a(g252263 +g252265 +S'in' +p252267 +tp252268 +a(g252265 +g252267 +S'1856,' +p252269 +tp252270 +a(g252267 +g252269 +S'during' +p252271 +tp252272 +a(g252269 +g252271 +S'a' +p252273 +tp252274 +a(g252271 +g252273 +S'period' +p252275 +tp252276 +a(g252273 +g252275 +S'of' +p252277 +tp252278 +a(g252275 +g252277 +S'study' +p252279 +tp252280 +a(g252277 +g252279 +S'abroad,' +p252281 +tp252282 +a(g252279 +g252281 +S'he' +p252283 +tp252284 +a(g252281 +g252283 +S'spent' +p252285 +tp252286 +a(g252283 +g252285 +S'time' +p252287 +tp252288 +a(g252285 +g252287 +S'in' +p252289 +tp252290 +a(g252287 +g252289 +S'switzerland' +p252291 +tp252292 +a(g252289 +g252291 +S'and' +p252293 +tp252294 +a(g252291 +g252293 +S'completed' +p252295 +tp252296 +a(g252293 +g252295 +S'the' +p252297 +tp252298 +a(g252295 +g252297 +S'plein' +p252299 +tp252300 +a(g252297 +g252299 +S'air' +p252301 +tp252302 +a(g252299 +g252301 +S'sketches' +p252303 +tp252304 +a(g252301 +g252303 +S'he' +p252305 +tp252306 +a(g252303 +g252305 +S'would' +p252307 +tp252308 +a(g252305 +g252307 +S'later' +p252309 +tp252310 +a(g252307 +g252309 +S'use' +p252311 +tp252312 +a(g252309 +g252311 +S'to' +p252313 +tp252314 +a(g252311 +g252313 +S'compose' +p252315 +tp252316 +a(g252313 +g252315 +S'in' +p252317 +tp252318 +a(g252315 +g252317 +S'the' +p252319 +tp252320 +a(g252317 +g252319 +S'spring' +p252321 +tp252322 +a(g252319 +g252321 +S'of' +p252323 +tp252324 +a(g252321 +g252323 +S'1858' +p252325 +tp252326 +a(g252323 +g252325 +S'he' +p252327 +tp252328 +a(g252325 +g252327 +S'sent' +p252329 +tp252330 +a(g252327 +g252329 +S'the' +p252331 +tp252332 +a(g252329 +g252331 +S'painting' +p252333 +tp252334 +a(g252331 +g252333 +S'to' +p252335 +tp252336 +a(g252333 +g252335 +S'new' +p252337 +tp252338 +a(g252335 +g252337 +S'york' +p252339 +tp252340 +a(g252337 +g252339 +S'for' +p252341 +tp252342 +a(g252339 +g252341 +S'the' +p252343 +tp252344 +a(g252341 +g252343 +S'annual' +p252345 +tp252346 +a(g252343 +g252345 +S'exhibition' +p252347 +tp252348 +a(g252345 +g252347 +S'at' +p252349 +tp252350 +a(g252347 +g252349 +S'the' +p252351 +tp252352 +a(g252349 +g252351 +S'national' +p252353 +tp252354 +a(g252351 +g252353 +S'academy' +p252355 +tp252356 +a(g252353 +g252355 +S'of' +p252357 +tp252358 +a(g252355 +g252357 +S'design.' +p252359 +tp252360 +a(g252357 +g252359 +S'the' +p252361 +tp252362 +a(g252359 +g252361 +S'picture' +p252363 +tp252364 +a(g252361 +g252363 +S'caused' +p252365 +tp252366 +a(g252363 +g252365 +S'a' +p252367 +tp252368 +a(g252365 +g252367 +S'sensation.' +p252369 +tp252370 +a(g252367 +g252369 +S'bierstadt' +p252371 +tp252372 +a(g252369 +g252371 +S'was' +p252373 +tp252374 +a(g252371 +g252373 +S'hailed' +p252375 +tp252376 +a(g252373 +g252375 +S'as' +p252377 +tp252378 +a(g252375 +g252377 +S'a' +p252379 +tp252380 +a(g252377 +g252379 +S'bright' +p252381 +tp252382 +a(g252379 +g252381 +S'new' +p252383 +tp252384 +a(g252381 +g252383 +S'star' +p252385 +tp252386 +a(g252383 +g252385 +S'on' +p252387 +tp252388 +a(g252385 +g252387 +S'the' +p252389 +tp252390 +a(g252387 +g252389 +S'american' +p252391 +tp252392 +a(g252389 +g252391 +S'art' +p252393 +tp252394 +a(g252391 +g252393 +S'stage' +p252395 +tp252396 +a(g252393 +g252395 +S'and' +p252397 +tp252398 +a(g252395 +g252397 +S'was' +p252399 +tp252400 +a(g252397 +g252399 +S'elected' +p252401 +tp252402 +a(g252399 +g252401 +S'an' +p252403 +tp252404 +a(g252401 +g252403 +S'honorary' +p252405 +tp252406 +a(g252403 +g252405 +S'member' +p252407 +tp252408 +a(g252405 +g252407 +S'of' +p252409 +tp252410 +a(g252407 +g252409 +S'the' +p252411 +tp252412 +a(g252409 +g252411 +S'academy.' +p252413 +tp252414 +a(g252411 +g252413 +S"bierstadt's" +p252415 +tp252416 +a(g252413 +g252415 +S'painting' +p252417 +tp252418 +a(g252415 +g252417 +S'offers' +p252419 +tp252420 +a(g252417 +g252419 +S'a' +p252421 +tp252422 +a(g252419 +g252421 +S'sweeping' +p252423 +tp252424 +a(g252421 +g252423 +S'view' +p252425 +tp252426 +a(g252423 +g252425 +S'of' +p252427 +tp252428 +a(g252425 +g252427 +S'lake' +p252429 +tp252430 +a(g252427 +g252429 +S'lucerne' +p252431 +tp252432 +a(g252429 +g252431 +S'with' +p252433 +tp252434 +a(g252431 +g252433 +S'the' +p252435 +tp252436 +a(g252433 +g252435 +S'village' +p252437 +tp252438 +a(g252435 +g252437 +S'of' +p252439 +tp252440 +a(g252437 +g252439 +S'brunnen' +p252441 +tp252442 +a(g252439 +g252441 +S'in' +p252443 +tp252444 +a(g252441 +g252443 +S'the' +p252445 +tp252446 +a(g252443 +g252445 +S'middle' +p252447 +tp252448 +a(g252445 +g252447 +S'distance' +p252449 +tp252450 +a(g252447 +g252449 +S'and' +p252451 +tp252452 +a(g252449 +g252451 +S'the' +p252453 +tp252454 +a(g252451 +g252453 +S'alpine' +p252455 +tp252456 +a(g252453 +g252455 +S'peaks' +p252457 +tp252458 +a(g252455 +g252457 +S'ematten,' +p252459 +tp252460 +a(g252457 +g252459 +S'oberbauen,' +p252461 +tp252462 +a(g252459 +g252461 +S'uri–rotstock' +p252463 +tp252464 +a(g252461 +g252463 +S'and' +p252465 +tp252466 +a(g252463 +g252465 +S'st.' +p252467 +tp252468 +a(g252465 +g252467 +S'gotthard' +p252469 +tp252470 +a(g252467 +g252469 +S'in' +p252471 +tp252472 +a(g252469 +g252471 +S'the' +p252473 +tp252474 +a(g252471 +g252473 +S'distance.' +p252475 +tp252476 +a(g252473 +g252475 +S'though' +p252477 +tp252478 +a(g252475 +g252477 +S'an' +p252479 +tp252480 +a(g252477 +g252479 +S'image' +p252481 +tp252482 +a(g252479 +g252481 +S'of' +p252483 +tp252484 +a(g252481 +g252483 +S'mountain' +p252485 +tp252486 +a(g252483 +g252485 +S'grandeur,' +p252487 +tp252488 +a(g252485 +g252487 +S'one' +p252489 +tp252490 +a(g252487 +g252489 +S'year' +p252491 +tp252492 +a(g252489 +g252491 +S'after' +p252493 +tp252494 +a(g252491 +g252493 +S'completing' +p252495 +tp252496 +a(g252493 +g252495 +S'in' +p252497 +tp252498 +a(g252495 +g252497 +S'june' +p252499 +tp252500 +a(g252497 +g252499 +S'1867,' +p252501 +tp252502 +a(g252499 +g252501 +S'at' +p252503 +tp252504 +a(g252501 +g252503 +S'the' +p252505 +tp252506 +a(g252503 +g252505 +S'urging' +p252507 +tp252508 +a(g252505 +g252507 +S'of' +p252509 +tp252510 +a(g252507 +g252509 +S'his' +p252511 +tp252512 +a(g252509 +g252511 +S'father,' +p252513 +tp252514 +a(g252511 +g252513 +S'claude' +p252515 +tp252516 +a(g252513 +g252515 +S'monet' +p252517 +tp252518 +a(g252515 +g252517 +S'went' +p252519 +tp252520 +a(g252517 +g252519 +S'to' +p252521 +tp252522 +a(g252519 +g252521 +S'sainte-adresse,' +p252523 +tp252524 +a(g252521 +g252523 +S'a' +p252525 +tp252526 +a(g252523 +g252525 +S'popular' +p252527 +tp252528 +a(g252525 +g252527 +S'resort' +p252529 +tp252530 +a(g252527 +g252529 +S'town' +p252531 +tp252532 +a(g252529 +g252531 +S'on' +p252533 +tp252534 +a(g252531 +g252533 +S'the' +p252535 +tp252536 +a(g252533 +g252535 +S'normandy' +p252537 +tp252538 +a(g252535 +g252537 +S'coast,' +p252539 +tp252540 +a(g252537 +g252539 +S'for' +p252541 +tp252542 +a(g252539 +g252541 +S'an' +p252543 +tp252544 +a(g252541 +g252543 +S'extended' +p252545 +tp252546 +a(g252543 +g252545 +S'stay' +p252547 +tp252548 +a(g252545 +g252547 +S'in' +p252549 +tp252550 +a(g252547 +g252549 +S'the' +p252551 +tp252552 +a(g252549 +g252551 +S'home' +p252553 +tp252554 +a(g252551 +g252553 +S'of' +p252555 +tp252556 +a(g252553 +g252555 +S'his' +p252557 +tp252558 +a(g252555 +g252557 +S'aunt,' +p252559 +tp252560 +a(g252557 +g252559 +S'sophie' +p252561 +tp252562 +a(g252559 +g252561 +S'lecadre.' +p252563 +tp252564 +a(g252561 +g252563 +S'his' +p252565 +tp252566 +a(g252563 +g252565 +S'visit' +p252567 +tp252568 +a(g252565 +g252567 +S'lasted' +p252569 +tp252570 +a(g252567 +g252569 +S'almost' +p252571 +tp252572 +a(g252569 +g252571 +S'until' +p252573 +tp252574 +a(g252571 +g252573 +S'winter' +p252575 +tp252576 +a(g252573 +g252575 +S'and' +p252577 +tp252578 +a(g252575 +g252577 +S'proved' +p252579 +tp252580 +a(g252577 +g252579 +S'to' +p252581 +tp252582 +a(g252579 +g252581 +S'be' +p252583 +tp252584 +a(g252581 +g252583 +S'a' +p252585 +tp252586 +a(g252583 +g252585 +S'period' +p252587 +tp252588 +a(g252585 +g252587 +S'of' +p252589 +tp252590 +a(g252587 +g252589 +S'intense' +p252591 +tp252592 +a(g252589 +g252591 +S'activity,' +p252593 +tp252594 +a(g252591 +g252593 +S'despite' +p252595 +tp252596 +a(g252593 +g252595 +S'the' +p252597 +tp252598 +a(g252595 +g252597 +S'complications' +p252599 +tp252600 +a(g252597 +g252599 +S'of' +p252601 +tp252602 +a(g252599 +g252601 +S'his' +p252603 +tp252604 +a(g252601 +g252603 +S'personal' +p252605 +tp252606 +a(g252603 +g252605 +S'life' +p252607 +tp252608 +a(g252605 +g252607 +S'at' +p252609 +tp252610 +a(g252607 +g252609 +S'the' +p252611 +tp252612 +a(g252609 +g252611 +S'time.' +p252613 +tp252614 +a(g252611 +g252613 +S'"i' +p252615 +tp252616 +a(g252613 +g252615 +S'have' +p252617 +tp252618 +a(g252615 +g252617 +S'my' +p252619 +tp252620 +a(g252617 +g252619 +S'work' +p252621 +tp252622 +a(g252619 +g252621 +S'cut' +p252623 +tp252624 +a(g252621 +g252623 +S'out' +p252625 +tp252626 +a(g252623 +g252625 +S'for' +p252627 +tp252628 +a(g252625 +g252627 +S'me,"' +p252629 +tp252630 +a(g252627 +g252629 +S'monet' +p252631 +tp252632 +a(g252629 +g252631 +S'wrote' +p252633 +tp252634 +a(g252631 +g252633 +S'to' +p252635 +tp252636 +a(g252633 +g252635 +S'his' +p252637 +tp252638 +a(g252635 +g252637 +S'friend' +p252639 +tp252640 +a(g252637 +g252639 +S'and' +p252641 +tp252642 +a(g252639 +g252641 +S'fellow' +p252643 +tp252644 +a(g252641 +g252643 +S'painter' +p252645 +tp252646 +a(g252643 +g252645 +S'frédéric' +p252647 +tp252648 +a(g252645 +g252647 +S'bazille' +p252649 +tp252650 +a(g252647 +g252649 +S'shortly' +p252651 +tp252652 +a(g252649 +g252651 +S'after' +p252653 +tp252654 +a(g252651 +g252653 +S'his' +p252655 +tp252656 +a(g252653 +g252655 +S'arrival.' +p252657 +tp252658 +a(g252655 +g252657 +S'"i' +p252659 +tp252660 +a(g252657 +g252659 +S'have' +p252661 +tp252662 +a(g252659 +g252661 +S'about' +p252663 +tp252664 +a(g252661 +g252663 +S'twenty' +p252665 +tp252666 +a(g252663 +g252665 +S'canvases' +p252667 +tp252668 +a(g252665 +g252667 +S'well' +p252669 +tp252670 +a(g252667 +g252669 +S'under' +p252671 +tp252672 +a(g252669 +g252671 +S'way,' +p252673 +tp252674 +a(g252671 +g252673 +S'some' +p252675 +tp252676 +a(g252673 +g252675 +S'stunning' +p252677 +tp252678 +a(g252675 +g252677 +S'seascapes' +p252679 +tp252680 +a(g252677 +g252679 +S'and' +p252681 +tp252682 +a(g252679 +g252681 +S'some' +p252683 +tp252684 +a(g252681 +g252683 +S'figures' +p252685 +tp252686 +a(g252683 +g252685 +S'and' +p252687 +tp252688 +a(g252685 +g252687 +S'gardens,' +p252689 +tp252690 +a(g252687 +g252689 +S'everything' +p252691 +tp252692 +a(g252689 +g252691 +S'in' +p252693 +tp252694 +a(g252691 +g252693 +S'short."' +p252695 +tp252696 +a(g252693 +g252695 +S'sainte-adresse' +p252697 +tp252698 +a(g252695 +g252697 +S'in' +p252699 +tp252700 +a(g252697 +g252699 +S'stylistic' +p252701 +tp252702 +a(g252699 +g252701 +S'terms,' +p252703 +tp252704 +a(g252701 +g252703 +S'this' +p252705 +tp252706 +a(g252703 +g252705 +S'painting' +p252707 +tp252708 +a(g252705 +g252707 +S'is' +p252709 +tp252710 +a(g252707 +g252709 +S'consistent' +p252711 +tp252712 +a(g252709 +g252711 +S'with' +p252713 +tp252714 +a(g252711 +g252713 +S'the' +p252715 +tp252716 +a(g252713 +g252715 +S'seascapes' +p252717 +tp252718 +a(g252715 +g252717 +S'monet' +p252719 +tp252720 +a(g252717 +g252719 +S'produced' +p252721 +tp252722 +a(g252719 +g252721 +S'during' +p252723 +tp252724 +a(g252721 +g252723 +S'the' +p252725 +tp252726 +a(g252723 +g252725 +S'summer' +p252727 +tp252728 +a(g252725 +g252727 +S'and' +p252729 +tp252730 +a(g252727 +g252729 +S'fall' +p252731 +tp252732 +a(g252729 +g252731 +S'of' +p252733 +tp252734 +a(g252731 +g252733 +S'1867.' +p252735 +tp252736 +a(g252733 +g252735 +S'a' +p252737 +tp252738 +a(g252735 +g252737 +S'new' +p252739 +tp252740 +a(g252737 +g252739 +S'awareness' +p252741 +tp252742 +a(g252739 +g252741 +S'of' +p252743 +tp252744 +a(g252741 +g252743 +S'the' +p252745 +tp252746 +a(g252743 +g252745 +S'particular' +p252747 +tp252748 +a(g252745 +g252747 +S'atmospheric' +p252749 +tp252750 +a(g252747 +g252749 +S'character' +p252751 +tp252752 +a(g252749 +g252751 +S'of' +p252753 +tp252754 +a(g252751 +g252753 +S'the' +p252755 +tp252756 +a(g252753 +g252755 +S'scene' +p252757 +tp252758 +a(g252755 +g252757 +S'reflects' +p252759 +tp252760 +a(g252757 +g252759 +S'monet\xe2\x80\x99s' +p252761 +tp252762 +a(g252759 +g252761 +S'growing' +p252763 +tp252764 +a(g252761 +g252763 +S'acuity' +p252765 +tp252766 +a(g252763 +g252765 +S'as' +p252767 +tp252768 +a(g252765 +g252767 +S'a' +p252769 +tp252770 +a(g252767 +g252769 +S'landscape' +p252771 +tp252772 +a(g252769 +g252771 +S'painter.' +p252773 +tp252774 +a(g252771 +g252773 +S'the' +p252775 +tp252776 +a(g252773 +g252775 +S'overcast' +p252777 +tp252778 +a(g252775 +g252777 +S'day' +p252779 +tp252780 +a(g252777 +g252779 +S'is' +p252781 +tp252782 +a(g252779 +g252781 +S'skillfully' +p252783 +tp252784 +a(g252781 +g252783 +S'captured' +p252785 +tp252786 +a(g252783 +g252785 +S'through' +p252787 +tp252788 +a(g252785 +g252787 +S'the' +p252789 +tp252790 +a(g252787 +g252789 +S'grayish' +p252791 +tp252792 +a(g252789 +g252791 +S'tonalities' +p252793 +tp252794 +a(g252791 +g252793 +S'of' +p252795 +tp252796 +a(g252793 +g252795 +S'the' +p252797 +tp252798 +a(g252795 +g252797 +S'sky,' +p252799 +tp252800 +a(g252797 +g252799 +S'the' +p252801 +tp252802 +a(g252799 +g252801 +S'water,' +p252803 +tp252804 +a(g252801 +g252803 +S'and' +p252805 +tp252806 +a(g252803 +g252805 +S'the' +p252807 +tp252808 +a(g252805 +g252807 +S'beach.' +p252809 +tp252810 +a(g252807 +g252809 +S'a' +p252811 +tp252812 +a(g252809 +g252811 +S'stronger' +p252813 +tp252814 +a(g252811 +g252813 +S'emphasis' +p252815 +tp252816 +a(g252813 +g252815 +S'is' +p252817 +tp252818 +a(g252815 +g252817 +S'also' +p252819 +tp252820 +a(g252817 +g252819 +S'given' +p252821 +tp252822 +a(g252819 +g252821 +S'to' +p252823 +tp252824 +a(g252821 +g252823 +S'the' +p252825 +tp252826 +a(g252823 +g252825 +S'paint' +p252827 +tp252828 +a(g252825 +g252827 +S'surface,' +p252829 +tp252830 +a(g252827 +g252829 +S'with' +p252831 +tp252832 +a(g252829 +g252831 +S'rapidly' +p252833 +tp252834 +a(g252831 +g252833 +S'applied' +p252835 +tp252836 +a(g252833 +g252835 +S'touches' +p252837 +tp252838 +a(g252835 +g252837 +S'of' +p252839 +tp252840 +a(g252837 +g252839 +S'color' +p252841 +tp252842 +a(g252839 +g252841 +S'that' +p252843 +tp252844 +a(g252841 +g252843 +S'help' +p252845 +tp252846 +a(g252843 +g252845 +S'characterize' +p252847 +tp252848 +a(g252845 +g252847 +S'rather' +p252849 +tp252850 +a(g252847 +g252849 +S'than' +p252851 +tp252852 +a(g252849 +g252851 +S'carefully' +p252853 +tp252854 +a(g252851 +g252853 +S'delineate' +p252855 +tp252856 +a(g252853 +g252855 +S'the' +p252857 +tp252858 +a(g252855 +g252857 +S'scene.' +p252859 +tp252860 +a(g252857 +g252859 +S'the' +p252861 +tp252862 +a(g252859 +g252861 +S'relative' +p252863 +tp252864 +a(g252861 +g252863 +S'simplicity' +p252865 +tp252866 +a(g252863 +g252865 +S'of' +p252867 +tp252868 +a(g252865 +g252867 +S'the' +p252869 +tp252870 +a(g252867 +g252869 +S'composition,' +p252871 +tp252872 +a(g252869 +g252871 +S'the' +p252873 +tp252874 +a(g252871 +g252873 +S'elimination' +p252875 +tp252876 +a(g252873 +g252875 +S'of' +p252877 +tp252878 +a(g252875 +g252877 +S'detail,' +p252879 +tp252880 +a(g252877 +g252879 +S'and' +p252881 +tp252882 +a(g252879 +g252881 +S'the' +p252883 +tp252884 +a(g252881 +g252883 +S'fresh,' +p252885 +tp252886 +a(g252883 +g252885 +S'varied' +p252887 +tp252888 +a(g252885 +g252887 +S'quality' +p252889 +tp252890 +a(g252887 +g252889 +S'of' +p252891 +tp252892 +a(g252889 +g252891 +S'the' +p252893 +tp252894 +a(g252891 +g252893 +S'brushwork' +p252895 +tp252896 +a(g252893 +g252895 +S'all' +p252897 +tp252898 +a(g252895 +g252897 +S'suggest' +p252899 +tp252900 +a(g252897 +g252899 +S'that' +p252901 +tp252902 +a(g252899 +g252901 +S'this' +p252903 +tp252904 +a(g252901 +g252903 +S'painting' +p252905 +tp252906 +a(g252903 +g252905 +S'was' +p252907 +tp252908 +a(g252905 +g252907 +S'executed' +p252909 +tp252910 +a(g252907 +g252909 +S'at' +p252911 +tp252912 +a(g252909 +g252911 +S'least' +p252913 +tp252914 +a(g252911 +g252913 +S'partly' +p252915 +tp252916 +a(g252913 +g252915 +S'on' +p252917 +tp252918 +a(g252915 +g252917 +S'site' +p252919 +tp252920 +a(g252917 +g252919 +S'rather' +p252921 +tp252922 +a(g252919 +g252921 +S'than' +p252923 +tp252924 +a(g252921 +g252923 +S'entirely' +p252925 +tp252926 +a(g252923 +g252925 +S'in' +p252927 +tp252928 +a(g252925 +g252927 +S'the' +p252929 +tp252930 +a(g252927 +g252929 +S'studio.' +p252931 +tp252932 +a(g252929 +g252931 +S'the' +p252933 +tp252934 +a(g252931 +g252933 +S'most' +p252935 +tp252936 +a(g252933 +g252935 +S'salient' +p252937 +tp252938 +a(g252935 +g252937 +S'characteristic,' +p252939 +tp252940 +a(g252937 +g252939 +S'however,' +p252941 +tp252942 +a(g252939 +g252941 +S'is' +p252943 +tp252944 +a(g252941 +g252943 +S'the' +p252945 +tp252946 +a(g252943 +g252945 +S'treatment' +p252947 +tp252948 +a(g252945 +g252947 +S'of' +p252949 +tp252950 +a(g252947 +g252949 +S'the' +p252951 +tp252952 +a(g252949 +g252951 +S'subject' +p252953 +tp252954 +a(g252951 +g252953 +S'itself.' +p252955 +tp252956 +a(g252953 +g252955 +S'although' +p252957 +tp252958 +a(g252955 +g252957 +S'sainte-adresse' +p252959 +tp252960 +a(g252957 +g252959 +S'was' +p252961 +tp252962 +a(g252959 +g252961 +S'a' +p252963 +tp252964 +a(g252961 +g252963 +S'resort' +p252965 +tp252966 +a(g252963 +g252965 +S'suburb,' +p252967 +tp252968 +a(g252965 +g252967 +S'located' +p252969 +tp252970 +a(g252967 +g252969 +S'two' +p252971 +tp252972 +a(g252969 +g252971 +S'and' +p252973 +tp252974 +a(g252971 +g252973 +S'one-half' +p252975 +tp252976 +a(g252973 +g252975 +S'miles' +p252977 +tp252978 +a(g252975 +g252977 +S'northwest' +p252979 +tp252980 +a(g252977 +g252979 +S'of' +p252981 +tp252982 +a(g252979 +g252981 +S'le' +p252983 +tp252984 +a(g252981 +g252983 +S'havre,' +p252985 +tp252986 +a(g252983 +g252985 +S'monet' +p252987 +tp252988 +a(g252985 +g252987 +S'made' +p252989 +tp252990 +a(g252987 +g252989 +S'no' +p252991 +tp252992 +a(g252989 +g252991 +S'allusion' +p252993 +tp252994 +a(g252991 +g252993 +S'in' +p252995 +tp252996 +a(g252993 +g252995 +S'the' +p252997 +tp252998 +a(g252995 +g252997 +S'painting' +p252999 +tp253000 +a(g252997 +g252999 +S'to' +p253001 +tp253002 +a(g252999 +g253001 +S'the' +p253003 +tp253004 +a(g253001 +g253003 +S'influx' +p253005 +tp253006 +a(g253003 +g253005 +S'of' +p253007 +tp253008 +a(g253005 +g253007 +S'tourists' +p253009 +tp253010 +a(g253007 +g253009 +S'who' +p253011 +tp253012 +a(g253009 +g253011 +S'visited' +p253013 +tp253014 +a(g253011 +g253013 +S'the' +p253015 +tp253016 +a(g253013 +g253015 +S'normandy' +p253017 +tp253018 +a(g253015 +g253017 +S'coast' +p253019 +tp253020 +a(g253017 +g253019 +S'every' +p253021 +tp253022 +a(g253019 +g253021 +S'summer.' +p253023 +tp253024 +a(g253021 +g253023 +S'in' +p253025 +tp253026 +a(g253023 +g253025 +S'this' +p253027 +tp253028 +a(g253025 +g253027 +S'painting,' +p253029 +tp253030 +a(g253027 +g253029 +S'as' +p253031 +tp253032 +a(g253029 +g253031 +S'in' +p253033 +tp253034 +a(g253031 +g253033 +S'the' +p253035 +tp253036 +a(g253033 +g253035 +S'1867' +p253037 +tp253038 +a(g253035 +g253037 +S'(text' +p253039 +tp253040 +a(g253037 +g253039 +S'by' +p253041 +tp253042 +a(g253039 +g253041 +S'kimberly' +p253043 +tp253044 +a(g253041 +g253043 +S'jones,' +p253045 +tp253046 +a(g253043 +g253045 +S'notes' +p253047 +tp253048 +a(g253045 +g253047 +S'literary' +p253049 +tp253050 +a(g253047 +g253049 +S'references' +p253051 +tp253052 +a(g253049 +g253051 +S'permeate' +p253053 +tp253054 +a(g253051 +g253053 +S'the' +p253055 +tp253056 +a(g253053 +g253055 +S'works' +p253057 +tp253058 +a(g253055 +g253057 +S'of' +p253059 +tp253060 +a(g253057 +g253059 +S'swiss' +p253061 +tp253062 +a(g253059 +g253061 +S'artist' +p253063 +tp253064 +a(g253061 +g253063 +S'paul' +p253065 +tp253066 +a(g253063 +g253065 +S'klee,' +p253067 +tp253068 +a(g253065 +g253067 +S'whose' +p253069 +tp253070 +a(g253067 +g253069 +S'johann' +p253071 +tp253072 +a(g253069 +g253071 +S'wolfgang' +p253073 +tp253074 +a(g253071 +g253073 +S'von' +p253075 +tp253076 +a(g253073 +g253075 +S'goethe' +p253077 +tp253078 +a(g253075 +g253077 +S'introduced' +p253079 +tp253080 +a(g253077 +g253079 +S'the' +p253081 +tp253082 +a(g253079 +g253081 +S'persian' +p253083 +tp253084 +a(g253081 +g253083 +S'writer' +p253085 +tp253086 +a(g253083 +g253085 +S'to' +p253087 +tp253088 +a(g253085 +g253087 +S'germanspeaking' +p253089 +tp253090 +a(g253087 +g253089 +S'audiences' +p253091 +tp253092 +a(g253089 +g253091 +S'in' +p253093 +tp253094 +a(g253091 +g253093 +S'his' +p253095 +tp253096 +a(g253093 +g253095 +S'a' +p253097 +tp253098 +a(g253095 +g253097 +S'pink' +p253099 +tp253100 +a(g253097 +g253099 +S'rose' +p253101 +tp253102 +a(g253099 +g253101 +S'appears' +p253103 +tp253104 +a(g253101 +g253103 +S'in' +p253105 +tp253106 +a(g253103 +g253105 +S'the' +p253107 +tp253108 +a(g253105 +g253107 +S'lower' +p253109 +tp253110 +a(g253107 +g253109 +S'left' +p253111 +tp253112 +a(g253109 +g253111 +S'quadrant' +p253113 +tp253114 +a(g253111 +g253113 +S'of' +p253115 +tp253116 +a(g253113 +g253115 +S"klee's" +p253117 +tp253118 +a(g253115 +g253117 +S'watercolor,' +p253119 +tp253120 +a(g253117 +g253119 +S'cradled' +p253121 +tp253122 +a(g253119 +g253121 +S'by' +p253123 +tp253124 +a(g253121 +g253123 +S'two' +p253125 +tp253126 +a(g253123 +g253125 +S'sharply' +p253127 +tp253128 +a(g253125 +g253127 +S'pointed' +p253129 +tp253130 +a(g253127 +g253129 +S'leaves' +p253131 +tp253132 +a(g253129 +g253131 +S'whose' +p253133 +tp253134 +a(g253131 +g253133 +S'forms' +p253135 +tp253136 +a(g253133 +g253135 +S'mirror' +p253137 +tp253138 +a(g253135 +g253137 +S'the' +p253139 +tp253140 +a(g253137 +g253139 +S"nightingales'" +p253141 +tp253142 +a(g253139 +g253141 +S'heads.' +p253143 +tp253144 +a(g253141 +g253143 +S'above' +p253145 +tp253146 +a(g253143 +g253145 +S'and' +p253147 +tp253148 +a(g253145 +g253147 +S'to' +p253149 +tp253150 +a(g253147 +g253149 +S'the' +p253151 +tp253152 +a(g253149 +g253151 +S'left' +p253153 +tp253154 +a(g253151 +g253153 +S'of' +p253155 +tp253156 +a(g253153 +g253155 +S'the' +p253157 +tp253158 +a(g253155 +g253157 +S'flower' +p253159 +tp253160 +a(g253157 +g253159 +S'is' +p253161 +tp253162 +a(g253159 +g253161 +S'the' +p253163 +tp253164 +a(g253161 +g253163 +S'letter' +p253165 +tp253166 +a(g253163 +g253165 +S'klee' +p253167 +tp253168 +a(g253165 +g253167 +S'further' +p253169 +tp253170 +a(g253167 +g253169 +S'alludes' +p253171 +tp253172 +a(g253169 +g253171 +S'to' +p253173 +tp253174 +a(g253171 +g253173 +S'persian' +p253175 +tp253176 +a(g253173 +g253175 +S'miniature' +p253177 +tp253178 +a(g253175 +g253177 +S'painting' +p253179 +tp253180 +a(g253177 +g253179 +S'in' +p253181 +tp253182 +a(g253179 +g253181 +S'the' +p253183 +tp253184 +a(g253181 +g253183 +S"drawing's" +p253185 +tp253186 +a(g253183 +g253185 +S'gemlike' +p253187 +tp253188 +a(g253185 +g253187 +S'delicacy,' +p253189 +tp253190 +a(g253187 +g253189 +S'ornamentation,' +p253191 +tp253192 +a(g253189 +g253191 +S'and' +p253193 +tp253194 +a(g253191 +g253193 +S'lustrous' +p253195 +tp253196 +a(g253193 +g253195 +S'color,' +p253197 +tp253198 +a(g253195 +g253197 +S'as' +p253199 +tp253200 +a(g253197 +g253199 +S'well' +p253201 +tp253202 +a(g253199 +g253201 +S'as' +p253203 +tp253204 +a(g253201 +g253203 +S'its' +p253205 +tp253206 +a(g253203 +g253205 +S'disregard' +p253207 +tp253208 +a(g253205 +g253207 +S'for' +p253209 +tp253210 +a(g253207 +g253209 +S'scale' +p253211 +tp253212 +a(g253209 +g253211 +S'and' +p253213 +tp253214 +a(g253211 +g253213 +S'perspective.' +p253215 +tp253216 +a(g253213 +g253215 +S'even' +p253217 +tp253218 +a(g253215 +g253217 +S'the' +p253219 +tp253220 +a(g253217 +g253219 +S'structure' +p253221 +tp253222 +a(g253219 +g253221 +S'of' +p253223 +tp253224 +a(g253221 +g253223 +S'the' +p253225 +tp253226 +a(g253223 +g253225 +S'composition,' +p253227 +tp253228 +a(g253225 +g253227 +S'which' +p253229 +tp253230 +a(g253227 +g253229 +S'one' +p253231 +tp253232 +a(g253229 +g253231 +S'seems' +p253233 +tp253234 +a(g253231 +g253233 +S'to' +p253235 +tp253236 +a(g253233 +g253235 +S'enter' +p253237 +tp253238 +a(g253235 +g253237 +S'through' +p253239 +tp253240 +a(g253237 +g253239 +S'an' +p253241 +tp253242 +a(g253239 +g253241 +S'arched' +p253243 +tp253244 +a(g253241 +g253243 +S'niche' +p253245 +tp253246 +a(g253243 +g253245 +S'or' +p253247 +tp253248 +a(g253245 +g253247 +S'parted' +p253249 +tp253250 +a(g253247 +g253249 +S'curtains,' +p253251 +tp253252 +a(g253249 +g253251 +S'recalls' +p253253 +tp253254 +a(g253251 +g253253 +S'the' +p253255 +tp253256 +a(g253253 +g253255 +S'format' +p253257 +tp253258 +a(g253255 +g253257 +S'of' +p253259 +tp253260 +a(g253257 +g253259 +S'many' +p253261 +tp253262 +a(g253259 +g253261 +S'persian' +p253263 +tp253264 +a(g253261 +g253263 +S'miniatures.' +p253265 +tp253266 +a(g253263 +g253265 +S'while' +p253267 +tp253268 +a(g253265 +g253267 +S'klee' +p253269 +tp253270 +a(g253267 +g253269 +S'was' +p253271 +tp253272 +a(g253269 +g253271 +S'living' +p253273 +tp253274 +a(g253271 +g253273 +S'in' +p253275 +tp253276 +a(g253273 +g253275 +S'germany,' +p253277 +tp253278 +a(g253275 +g253277 +S'from' +p253279 +tp253280 +a(g253277 +g253279 +S'1898' +p253281 +tp253282 +a(g253279 +g253281 +S'to' +p253283 +tp253284 +a(g253281 +g253283 +S'1933,' +p253285 +tp253286 +a(g253283 +g253285 +S'he' +p253287 +tp253288 +a(g253285 +g253287 +S'would' +p253289 +tp253290 +a(g253287 +g253289 +S'have' +p253291 +tp253292 +a(g253289 +g253291 +S'had' +p253293 +tp253294 +a(g253291 +g253293 +S'ample' +p253295 +tp253296 +a(g253293 +g253295 +S'opportunity' +p253297 +tp253298 +a(g253295 +g253297 +S'to' +p253299 +tp253300 +a(g253297 +g253299 +S'see' +p253301 +tp253302 +a(g253299 +g253301 +S'persian' +p253303 +tp253304 +a(g253301 +g253303 +S'art' +p253305 +tp253306 +a(g253303 +g253305 +S'in' +p253307 +tp253308 +a(g253305 +g253307 +S'public' +p253309 +tp253310 +a(g253307 +g253309 +S'collections,' +p253311 +tp253312 +a(g253309 +g253311 +S'such' +p253313 +tp253314 +a(g253311 +g253313 +S'as' +p253315 +tp253316 +a(g253313 +g253315 +S'the' +p253317 +tp253318 +a(g253315 +g253317 +S'kaiser-friedrich-museum' +p253319 +tp253320 +a(g253317 +g253319 +S'in' +p253321 +tp253322 +a(g253319 +g253321 +S'berlin' +p253323 +tp253324 +a(g253321 +g253323 +S'(now' +p253325 +tp253326 +a(g253323 +g253325 +S'bode' +p253327 +tp253328 +a(g253325 +g253327 +S'museum),' +p253329 +tp253330 +a(g253327 +g253329 +S'as' +p253331 +tp253332 +a(g253329 +g253331 +S'well' +p253333 +tp253334 +a(g253331 +g253333 +S'as' +p253335 +tp253336 +a(g253333 +g253335 +S'the' +p253337 +tp253338 +a(g253335 +g253337 +S'bayerisches' +p253339 +tp253340 +a(g253337 +g253339 +S'nationalmuseum' +p253341 +tp253342 +a(g253339 +g253341 +S'and' +p253343 +tp253344 +a(g253341 +g253343 +S'the' +p253345 +tp253346 +a(g253343 +g253345 +S'staatsbibliothek' +p253347 +tp253348 +a(g253345 +g253347 +S'in' +p253349 +tp253350 +a(g253347 +g253349 +S'munich.' +p253351 +tp253352 +a(g253349 +g253351 +S'he' +p253353 +tp253354 +a(g253351 +g253353 +S'no' +p253355 +tp253356 +a(g253353 +g253355 +S'doubt' +p253357 +tp253358 +a(g253355 +g253357 +S'also' +p253359 +tp253360 +a(g253357 +g253359 +S'saw' +p253361 +tp253362 +a(g253359 +g253361 +S'an' +p253363 +tp253364 +a(g253361 +g253363 +S'important' +p253365 +tp253366 +a(g253363 +g253365 +S'1910' +p253367 +tp253368 +a(g253365 +g253367 +S'exhibition' +p253369 +tp253370 +a(g253367 +g253369 +S'of' +p253371 +tp253372 +a(g253369 +g253371 +S'islamic' +p253373 +tp253374 +a(g253371 +g253373 +S'art' +p253375 +tp253376 +a(g253373 +g253375 +S'in' +p253377 +tp253378 +a(g253375 +g253377 +S'munich' +p253379 +tp253380 +a(g253377 +g253379 +S'that' +p253381 +tp253382 +a(g253379 +g253381 +S'featured' +p253383 +tp253384 +a(g253381 +g253383 +S'more' +p253385 +tp253386 +a(g253383 +g253385 +S'than' +p253387 +tp253388 +a(g253385 +g253387 +S'3,500' +p253389 +tp253390 +a(g253387 +g253389 +S'objects,' +p253391 +tp253392 +a(g253389 +g253391 +S'including,' +p253393 +tp253394 +a(g253391 +g253393 +S'as' +p253395 +tp253396 +a(g253393 +g253395 +S"klee's" +p253397 +tp253398 +a(g253395 +g253397 +S'friend' +p253399 +tp253400 +a(g253397 +g253399 +S'and' +p253401 +tp253402 +a(g253399 +g253401 +S'colleaguewassily' +p253403 +tp253404 +a(g253401 +g253403 +S'kandinsky' +p253405 +tp253406 +a(g253403 +g253405 +S'wrote' +p253407 +tp253408 +a(g253405 +g253407 +S'in' +p253409 +tp253410 +a(g253407 +g253409 +S'a' +p253411 +tp253412 +a(g253409 +g253411 +S'published' +p253413 +tp253414 +a(g253411 +g253413 +S'review,' +p253415 +tp253416 +a(g253413 +g253415 +S'"carpets,' +p253417 +tp253418 +a(g253415 +g253417 +S'majolica,' +p253419 +tp253420 +a(g253417 +g253419 +S'weapons,' +p253421 +tp253422 +a(g253419 +g253421 +S'ceramics,' +p253423 +tp253424 +a(g253421 +g253423 +S'textiles,' +p253425 +tp253426 +a(g253423 +g253425 +S'and' +p253427 +tp253428 +a(g253425 +g253427 +S'finally\xc3\xa2\xc2\x80\xc2\x94the' +p253429 +tp253430 +a(g253427 +g253429 +S'most' +p253431 +tp253432 +a(g253429 +g253431 +S'arresting' +p253433 +tp253434 +a(g253431 +g253433 +S'and' +p253435 +tp253436 +a(g253433 +g253435 +S'closest' +p253437 +tp253438 +a(g253435 +g253437 +S'to' +p253439 +tp253440 +a(g253437 +g253439 +S'us' +p253441 +tp253442 +a(g253439 +g253441 +S'today\xc3\xa2\xc2\x80\xc2\x94persian' +p253443 +tp253444 +a(g253441 +g253443 +S'miniatures."' +p253445 +tp253446 +a(g253443 +g253445 +S'this' +p253447 +tp253448 +a(g253445 +g253447 +S'radiant' +p253449 +tp253450 +a(g253447 +g253449 +S'watercolor' +p253451 +tp253452 +a(g253449 +g253451 +S'reflects' +p253453 +tp253454 +a(g253451 +g253453 +S'in' +p253455 +tp253456 +a(g253453 +g253455 +S'miniature' +p253457 +tp253458 +a(g253455 +g253457 +S'a' +p253459 +tp253460 +a(g253457 +g253459 +S'wondrous,' +p253461 +tp253462 +a(g253459 +g253461 +S'microcosmic' +p253463 +tp253464 +a(g253461 +g253463 +S'universe,' +p253465 +tp253466 +a(g253463 +g253465 +S'one' +p253467 +tp253468 +a(g253465 +g253467 +S'that' +p253469 +tp253470 +a(g253467 +g253469 +S'even' +p253471 +tp253472 +a(g253469 +g253471 +S'grants' +p253473 +tp253474 +a(g253471 +g253473 +S'status' +p253475 +tp253476 +a(g253473 +g253475 +S'to' +p253477 +tp253478 +a(g253475 +g253477 +S'lowly' +p253479 +tp253480 +a(g253477 +g253479 +S'consonants.' +p253481 +tp253482 +a(g253479 +g253481 +S'indeed,' +p253483 +tp253484 +a(g253481 +g253483 +S'the' +p253485 +tp253486 +a(g253483 +g253485 +S'letters' +p253487 +tp253488 +a(g253485 +g253487 +S'r' +p253489 +tp253490 +a(g253487 +g253489 +S'and' +p253491 +tp253492 +a(g253489 +g253491 +S'n' +p253493 +tp253494 +a(g253491 +g253493 +S'are' +p253495 +tp253496 +a(g253493 +g253495 +S'fully' +p253497 +tp253498 +a(g253495 +g253497 +S'integrated' +p253499 +tp253500 +a(g253497 +g253499 +S'within' +p253501 +tp253502 +a(g253499 +g253501 +S'the' +p253503 +tp253504 +a(g253501 +g253503 +S'composition;' +p253505 +tp253506 +a(g253503 +g253505 +S'they' +p253507 +tp253508 +a(g253505 +g253507 +S'are' +p253509 +tp253510 +a(g253507 +g253509 +S'scaled' +p253511 +tp253512 +a(g253509 +g253511 +S'to' +p253513 +tp253514 +a(g253511 +g253513 +S'the' +p253515 +tp253516 +a(g253513 +g253515 +S'size' +p253517 +tp253518 +a(g253515 +g253517 +S'of' +p253519 +tp253520 +a(g253517 +g253519 +S'the' +p253521 +tp253522 +a(g253519 +g253521 +S'nightingales' +p253523 +tp253524 +a(g253521 +g253523 +S'and' +p253525 +tp253526 +a(g253523 +g253525 +S'juxtaposed' +p253527 +tp253528 +a(g253525 +g253527 +S'in' +p253529 +tp253530 +a(g253527 +g253529 +S'the' +p253531 +tp253532 +a(g253529 +g253531 +S'same' +p253533 +tp253534 +a(g253531 +g253533 +S'indeterminate' +p253535 +tp253536 +a(g253533 +g253535 +S'space.' +p253537 +tp253538 +a(g253535 +g253537 +S'as' +p253539 +tp253540 +a(g253537 +g253539 +S'is' +p253541 +tp253542 +a(g253539 +g253541 +S'often' +p253543 +tp253544 +a(g253541 +g253543 +S'the' +p253545 +tp253546 +a(g253543 +g253545 +S'case' +p253547 +tp253548 +a(g253545 +g253547 +S'in' +p253549 +tp253550 +a(g253547 +g253549 +S'persian' +p253551 +tp253552 +a(g253549 +g253551 +S'art' +p253553 +tp253554 +a(g253551 +g253553 +S'and' +p253555 +tp253556 +a(g253553 +g253555 +S'particularly' +p253557 +tp253558 +a(g253555 +g253557 +S'in' +p253559 +tp253560 +a(g253557 +g253559 +S"hafiz's" +p253561 +tp253562 +a(g253559 +g253561 +S'poetry,' +p253563 +tp253564 +a(g253561 +g253563 +S'the' +p253565 +tp253566 +a(g253563 +g253565 +S'earthly' +p253567 +tp253568 +a(g253565 +g253567 +S'and' +p253569 +tp253570 +a(g253567 +g253569 +S'the' +p253571 +tp253572 +a(g253569 +g253571 +S'divine' +p253573 +tp253574 +a(g253571 +g253573 +S'are' +p253575 +tp253576 +a(g253573 +g253575 +S'poised' +p253577 +tp253578 +a(g253575 +g253577 +S'in' +p253579 +tp253580 +a(g253577 +g253579 +S'a' +p253581 +tp253582 +a(g253579 +g253581 +S'delicate' +p253583 +tp253584 +a(g253581 +g253583 +S'and' +p253585 +tp253586 +a(g253583 +g253585 +S'ambiguous' +p253587 +tp253588 +a(g253585 +g253587 +S'balance.' +p253589 +tp253590 +a(g253587 +g253589 +S'individual' +p253591 +tp253592 +a(g253589 +g253591 +S'shapes' +p253593 +tp253594 +a(g253591 +g253593 +S'shift' +p253595 +tp253596 +a(g253593 +g253595 +S'one' +p253597 +tp253598 +a(g253595 +g253597 +S'against' +p253599 +tp253600 +a(g253597 +g253599 +S'the' +p253601 +tp253602 +a(g253599 +g253601 +S'other,' +p253603 +tp253604 +a(g253601 +g253603 +S'each' +p253605 +tp253606 +a(g253603 +g253605 +S'within' +p253607 +tp253608 +a(g253605 +g253607 +S'the' +p253609 +tp253610 +a(g253607 +g253609 +S'confines' +p253611 +tp253612 +a(g253609 +g253611 +S'of' +p253613 +tp253614 +a(g253611 +g253613 +S"klee's" +p253615 +tp253616 +a(g253613 +g253615 +S'wiry' +p253617 +tp253618 +a(g253615 +g253617 +S'line' +p253619 +tp253620 +a(g253617 +g253619 +S'and' +p253621 +tp253622 +a(g253619 +g253621 +S'each' +p253623 +tp253624 +a(g253621 +g253623 +S'flooded' +p253625 +tp253626 +a(g253623 +g253625 +S'with' +p253627 +tp253628 +a(g253625 +g253627 +S'thin' +p253629 +tp253630 +a(g253627 +g253629 +S'washes' +p253631 +tp253632 +a(g253629 +g253631 +S'of' +p253633 +tp253634 +a(g253631 +g253633 +S'color.' +p253635 +tp253636 +a(g253633 +g253635 +S'although' +p253637 +tp253638 +a(g253635 +g253637 +S'perfectly' +p253639 +tp253640 +a(g253637 +g253639 +S'balanced' +p253641 +tp253642 +a(g253639 +g253641 +S'for' +p253643 +tp253644 +a(g253641 +g253643 +S'the' +p253645 +tp253646 +a(g253643 +g253645 +S'moment,' +p253647 +tp253648 +a(g253645 +g253647 +S'one' +p253649 +tp253650 +a(g253647 +g253649 +S'senses' +p253651 +tp253652 +a(g253649 +g253651 +S'that' +p253653 +tp253654 +a(g253651 +g253653 +S'a' +p253655 +tp253656 +a(g253653 +g253655 +S'tiny' +p253657 +tp253658 +a(g253655 +g253657 +S'slip' +p253659 +tp253660 +a(g253657 +g253659 +S'of' +p253661 +tp253662 +a(g253659 +g253661 +S'a' +p253663 +tp253664 +a(g253661 +g253663 +S'line' +p253665 +tp253666 +a(g253663 +g253665 +S'in' +p253667 +tp253668 +a(g253665 +g253667 +S'one' +p253669 +tp253670 +a(g253667 +g253669 +S'direction' +p253671 +tp253672 +a(g253669 +g253671 +S'or' +p253673 +tp253674 +a(g253671 +g253673 +S'another' +p253675 +tp253676 +a(g253673 +g253675 +S'might' +p253677 +tp253678 +a(g253675 +g253677 +S'set' +p253679 +tp253680 +a(g253677 +g253679 +S'the' +p253681 +tp253682 +a(g253679 +g253681 +S'whole' +p253683 +tp253684 +a(g253681 +g253683 +S'creation' +p253685 +tp253686 +a(g253683 +g253685 +S'tumbling.' +p253687 +tp253688 +a(g253685 +g253687 +S'although' +p253689 +tp253690 +a(g253687 +g253689 +S'he' +p253691 +tp253692 +a(g253689 +g253691 +S'resisted' +p253693 +tp253694 +a(g253691 +g253693 +S'the' +p253695 +tp253696 +a(g253693 +g253695 +S'term' +p253697 +tp253698 +a(g253695 +g253697 +S'"art' +p253699 +tp253700 +a(g253697 +g253699 +S'photographer"' +p253701 +tp253702 +a(g253699 +g253701 +S'throughout' +p253703 +tp253704 +a(g253701 +g253703 +S'his' +p253705 +tp253706 +a(g253703 +g253705 +S'life,' +p253707 +tp253708 +a(g253705 +g253707 +S'walker' +p253709 +tp253710 +a(g253707 +g253709 +S'evans' +p253711 +tp253712 +a(g253709 +g253711 +S'was' +p253713 +tp253714 +a(g253711 +g253713 +S'instrumental' +p253715 +tp253716 +a(g253713 +g253715 +S'in' +p253717 +tp253718 +a(g253715 +g253717 +S'establishing' +p253719 +tp253720 +a(g253717 +g253719 +S'photography' +p253721 +tp253722 +a(g253719 +g253721 +S'as' +p253723 +tp253724 +a(g253721 +g253723 +S'an' +p253725 +tp253726 +a(g253723 +g253725 +S'artistic' +p253727 +tp253728 +a(g253725 +g253727 +S'profession' +p253729 +tp253730 +a(g253727 +g253729 +S'in' +p253731 +tp253732 +a(g253729 +g253731 +S'the' +p253733 +tp253734 +a(g253731 +g253733 +S'united' +p253735 +tp253736 +a(g253733 +g253735 +S'states.' +p253737 +tp253738 +a(g253735 +g253737 +S'ten' +p253739 +tp253740 +a(g253737 +g253739 +S'years' +p253741 +tp253742 +a(g253739 +g253741 +S'after' +p253743 +tp253744 +a(g253741 +g253743 +S'making' +p253745 +tp253746 +a(g253743 +g253745 +S'his' +p253747 +tp253748 +a(g253745 +g253747 +S'first' +p253749 +tp253750 +a(g253747 +g253749 +S'serious' +p253751 +tp253752 +a(g253749 +g253751 +S'photographs,' +p253753 +tp253754 +a(g253751 +g253753 +S'evans' +p253755 +tp253756 +a(g253753 +g253755 +S'had' +p253757 +tp253758 +a(g253755 +g253757 +S'published' +p253759 +tp253760 +a(g253757 +g253759 +S'three' +p253761 +tp253762 +a(g253759 +g253761 +S'books' +p253763 +tp253764 +a(g253761 +g253763 +S'with' +p253765 +tp253766 +a(g253763 +g253765 +S'noted' +p253767 +tp253768 +a(g253765 +g253767 +S'writers' +p253769 +tp253770 +a(g253767 +g253769 +S'and' +p253771 +tp253772 +a(g253769 +g253771 +S'had' +p253773 +tp253774 +a(g253771 +g253773 +S'as' +p253775 +tp253776 +a(g253773 +g253775 +S'many' +p253777 +tp253778 +a(g253775 +g253777 +S'one-person' +p253779 +tp253780 +a(g253777 +g253779 +S'shows' +p253781 +tp253782 +a(g253779 +g253781 +S'at' +p253783 +tp253784 +a(g253781 +g253783 +S'the' +p253785 +tp253786 +a(g253783 +g253785 +S'museum' +p253787 +tp253788 +a(g253785 +g253787 +S'of' +p253789 +tp253790 +a(g253787 +g253789 +S'modern' +p253791 +tp253792 +a(g253789 +g253791 +S'art.' +p253793 +tp253794 +a(g253791 +g253793 +S'the' +p253795 +tp253796 +a(g253793 +g253795 +S'last' +p253797 +tp253798 +a(g253795 +g253797 +S'of' +p253799 +tp253800 +a(g253797 +g253799 +S'these,' +p253801 +tp253802 +a(g253799 +g253801 +S'for' +p253803 +tp253804 +a(g253801 +g253803 +S'his' +p253805 +tp253806 +a(g253803 +g253805 +S'"subway' +p253807 +tp253808 +a(g253805 +g253807 +S'portraits,"' +p253809 +tp253810 +a(g253807 +g253809 +S'which' +p253811 +tp253812 +a(g253809 +g253811 +S'evans' +p253813 +tp253814 +a(g253811 +g253813 +S'began' +p253815 +tp253816 +a(g253813 +g253815 +S'to' +p253817 +tp253818 +a(g253815 +g253817 +S'make' +p253819 +tp253820 +a(g253817 +g253819 +S'immediately' +p253821 +tp253822 +a(g253819 +g253821 +S'after' +p253823 +tp253824 +a(g253821 +g253823 +S'the' +p253825 +tp253826 +a(g253823 +g253825 +S'appearance' +p253827 +tp253828 +a(g253825 +g253827 +S'of' +p253829 +tp253830 +a(g253827 +g253829 +S'alfred' +p253831 +tp253832 +a(g253829 +g253831 +S'stieglitz' +p253833 +tp253834 +a(g253831 +g253833 +S'(1864–1946)' +p253835 +tp253836 +a(g253833 +g253835 +S'spent' +p253837 +tp253838 +a(g253835 +g253837 +S'much' +p253839 +tp253840 +a(g253837 +g253839 +S'of' +p253841 +tp253842 +a(g253839 +g253841 +S'his' +p253843 +tp253844 +a(g253841 +g253843 +S'career' +p253845 +tp253846 +a(g253843 +g253845 +S'establishing' +p253847 +tp253848 +a(g253845 +g253847 +S'a' +p253849 +tp253850 +a(g253847 +g253849 +S'dialogue' +p253851 +tp253852 +a(g253849 +g253851 +S'between' +p253853 +tp253854 +a(g253851 +g253853 +S'advanced' +p253855 +tp253856 +a(g253853 +g253855 +S'photography,' +p253857 +tp253858 +a(g253855 +g253857 +S'painting,' +p253859 +tp253860 +a(g253857 +g253859 +S'and' +p253861 +tp253862 +a(g253859 +g253861 +S'sculpture,' +p253863 +tp253864 +a(g253861 +g253863 +S'and' +p253865 +tp253866 +a(g253863 +g253865 +S'his' +p253867 +tp253868 +a(g253865 +g253867 +S'more' +p253869 +tp253870 +a(g253867 +g253869 +S'than' +p253871 +tp253872 +a(g253869 +g253871 +S'three' +p253873 +tp253874 +a(g253871 +g253873 +S'hundred' +p253875 +tp253876 +a(g253873 +g253875 +S'photographs' +p253877 +tp253878 +a(g253875 +g253877 +S'of' +p253879 +tp253880 +a(g253877 +g253879 +S'the' +p253881 +tp253882 +a(g253879 +g253881 +S'painter' +p253883 +tp253884 +a(g253881 +g253883 +S'georgia' +p253885 +tp253886 +a(g253883 +g253885 +S"o'keeffe" +p253887 +tp253888 +a(g253885 +g253887 +S'(1887–1986)' +p253889 +tp253890 +a(g253887 +g253889 +S'count' +p253891 +tp253892 +a(g253889 +g253891 +S'as' +p253893 +tp253894 +a(g253891 +g253893 +S'a' +p253895 +tp253896 +a(g253893 +g253895 +S'signal' +p253897 +tp253898 +a(g253895 +g253897 +S'contribution' +p253899 +tp253900 +a(g253897 +g253899 +S'to' +p253901 +tp253902 +a(g253899 +g253901 +S'this' +p253903 +tp253904 +a(g253901 +g253903 +S'long-term' +p253905 +tp253906 +a(g253903 +g253905 +S'enterprise.' +p253907 +tp253908 +a(g253905 +g253907 +S'two' +p253909 +tp253910 +a(g253907 +g253909 +S'years' +p253911 +tp253912 +a(g253909 +g253911 +S'after' +p253913 +tp253914 +a(g253911 +g253913 +S'opening' +p253915 +tp253916 +a(g253913 +g253915 +S'an' +p253917 +tp253918 +a(g253915 +g253917 +S'exhibition' +p253919 +tp253920 +a(g253917 +g253919 +S'space,' +p253921 +tp253922 +a(g253919 +g253921 +S'the' +p253923 +tp253924 +a(g253921 +g253923 +S'little' +p253925 +tp253926 +a(g253923 +g253925 +S'galleries' +p253927 +tp253928 +a(g253925 +g253927 +S'of' +p253929 +tp253930 +a(g253927 +g253929 +S'the' +p253931 +tp253932 +a(g253929 +g253931 +S'photo-secession' +p253933 +tp253934 +a(g253931 +g253933 +S'(gallery' +p253935 +tp253936 +a(g253933 +g253935 +S'"291"),' +p253937 +tp253938 +a(g253935 +g253937 +S'in' +p253939 +tp253940 +a(g253937 +g253939 +S'1905,' +p253941 +tp253942 +a(g253939 +g253941 +S'stieglitz' +p253943 +tp253944 +a(g253941 +g253943 +S'began' +p253945 +tp253946 +a(g253943 +g253945 +S'showing' +p253947 +tp253948 +a(g253945 +g253947 +S'modern' +p253949 +tp253950 +a(g253947 +g253949 +S'art' +p253951 +tp253952 +a(g253949 +g253951 +S'there' +p253953 +tp253954 +a(g253951 +g253953 +S'as' +p253955 +tp253956 +a(g253953 +g253955 +S'well.' +p253957 +tp253958 +a(g253955 +g253957 +S'drawings,' +p253959 +tp253960 +a(g253957 +g253959 +S'paintings,' +p253961 +tp253962 +a(g253959 +g253961 +S'and' +p253963 +tp253964 +a(g253961 +g253963 +S'sculpture' +p253965 +tp253966 +a(g253963 +g253965 +S'by' +p253967 +tp253968 +a(g253965 +g253967 +S'auguste' +p253969 +tp253970 +a(g253967 +g253969 +S'rodin,' +p253971 +tp253972 +a(g253969 +g253971 +S'henri' +p253973 +tp253974 +a(g253971 +g253973 +S'matisse,' +p253975 +tp253976 +a(g253973 +g253975 +S'pablo' +p253977 +tp253978 +a(g253975 +g253977 +S'picasso,' +p253979 +tp253980 +a(g253977 +g253979 +S'and' +p253981 +tp253982 +a(g253979 +g253981 +S'constantin' +p253983 +tp253984 +a(g253981 +g253983 +S'brancusi,' +p253985 +tp253986 +a(g253983 +g253985 +S'among' +p253987 +tp253988 +a(g253985 +g253987 +S'others,' +p253989 +tp253990 +a(g253987 +g253989 +S'influenced' +p253991 +tp253992 +a(g253989 +g253991 +S'stieglitz' +p253993 +tp253994 +a(g253991 +g253993 +S'in' +p253995 +tp253996 +a(g253993 +g253995 +S'his' +p253997 +tp253998 +a(g253995 +g253997 +S'thinking' +p253999 +tp254000 +a(g253997 +g253999 +S'about' +p254001 +tp254002 +a(g253999 +g254001 +S'photography.' +p254003 +tp254004 +a(g254001 +g254003 +S'these' +p254005 +tp254006 +a(g254003 +g254005 +S'artists,' +p254007 +tp254008 +a(g254005 +g254007 +S'significantly,' +p254009 +tp254010 +a(g254007 +g254009 +S'all' +p254011 +tp254012 +a(g254009 +g254011 +S'made' +p254013 +tp254014 +a(g254011 +g254013 +S'or' +p254015 +tp254016 +a(g254013 +g254015 +S'worked' +p254017 +tp254018 +a(g254015 +g254017 +S'from' +p254019 +tp254020 +a(g254017 +g254019 +S'photographs.' +p254021 +tp254022 +a(g254019 +g254021 +S"stieglitz's" +p254023 +tp254024 +a(g254021 +g254023 +S'decision' +p254025 +tp254026 +a(g254023 +g254025 +S'to' +p254027 +tp254028 +a(g254025 +g254027 +S'consider' +p254029 +tp254030 +a(g254027 +g254029 +S'his' +p254031 +tp254032 +a(g254029 +g254031 +S'photographs' +p254033 +tp254034 +a(g254031 +g254033 +S'of' +p254035 +tp254036 +a(g254033 +g254035 +S"o'keeffe's" +p254037 +tp254038 +a(g254035 +g254037 +S'hands' +p254039 +tp254040 +a(g254037 +g254039 +S'"portraits"' +p254041 +tp254042 +a(g254039 +g254041 +S'of' +p254043 +tp254044 +a(g254041 +g254043 +S'her' +p254045 +tp254046 +a(g254043 +g254045 +S'in' +p254047 +tp254048 +a(g254045 +g254047 +S'their' +p254049 +tp254050 +a(g254047 +g254049 +S'own' +p254051 +tp254052 +a(g254049 +g254051 +S'right,' +p254053 +tp254054 +a(g254051 +g254053 +S'rather' +p254055 +tp254056 +a(g254053 +g254055 +S'than' +p254057 +tp254058 +a(g254055 +g254057 +S'simply' +p254059 +tp254060 +a(g254057 +g254059 +S'studies' +p254061 +tp254062 +a(g254059 +g254061 +S'for' +p254063 +tp254064 +a(g254061 +g254063 +S'a' +p254065 +tp254066 +a(g254063 +g254065 +S'larger' +p254067 +tp254068 +a(g254065 +g254067 +S'composition,' +p254069 +tp254070 +a(g254067 +g254069 +S'is' +p254071 +tp254072 +a(g254069 +g254071 +S'certainly' +p254073 +tp254074 +a(g254071 +g254073 +S'indebted' +p254075 +tp254076 +a(g254073 +g254075 +S'to' +p254077 +tp254078 +a(g254075 +g254077 +S'the' +p254079 +tp254080 +a(g254077 +g254079 +S'sculptural' +p254081 +tp254082 +a(g254079 +g254081 +S'fragments' +p254083 +tp254084 +a(g254081 +g254083 +S'made' +p254085 +tp254086 +a(g254083 +g254085 +S'by' +p254087 +tp254088 +a(g254085 +g254087 +S'rodin' +p254089 +tp254090 +a(g254087 +g254089 +S'and' +p254091 +tp254092 +a(g254089 +g254091 +S'pursued' +p254093 +tp254094 +a(g254091 +g254093 +S'to' +p254095 +tp254096 +a(g254093 +g254095 +S'the' +p254097 +tp254098 +a(g254095 +g254097 +S'point' +p254099 +tp254100 +a(g254097 +g254099 +S'of' +p254101 +tp254102 +a(g254099 +g254101 +S'abstraction' +p254103 +tp254104 +a(g254101 +g254103 +S'by' +p254105 +tp254106 +a(g254103 +g254105 +S"rodin's" +p254107 +tp254108 +a(g254105 +g254107 +S'one-time' +p254109 +tp254110 +a(g254107 +g254109 +S'assistant' +p254111 +tp254112 +a(g254109 +g254111 +S'brancusi.' +p254113 +tp254114 +a(g254111 +g254113 +S'yet' +p254115 +tp254116 +a(g254113 +g254115 +S'stieglitz' +p254117 +tp254118 +a(g254115 +g254117 +S'cultivated' +p254119 +tp254120 +a(g254117 +g254119 +S'here' +p254121 +tp254122 +a(g254119 +g254121 +S'above' +p254123 +tp254124 +a(g254121 +g254123 +S'all' +p254125 +tp254126 +a(g254123 +g254125 +S'the' +p254127 +tp254128 +a(g254125 +g254127 +S'sense' +p254129 +tp254130 +a(g254127 +g254129 +S'of' +p254131 +tp254132 +a(g254129 +g254131 +S'photography' +p254133 +tp254134 +a(g254131 +g254133 +S'as' +p254135 +tp254136 +a(g254133 +g254135 +S'fragmentary,' +p254137 +tp254138 +a(g254135 +g254137 +S'a' +p254139 +tp254140 +a(g254137 +g254139 +S'partial' +p254141 +tp254142 +a(g254139 +g254141 +S'viewing' +p254143 +tp254144 +a(g254141 +g254143 +S'that' +p254145 +tp254146 +a(g254143 +g254145 +S'lends' +p254147 +tp254148 +a(g254145 +g254147 +S'itself' +p254149 +tp254150 +a(g254147 +g254149 +S'to' +p254151 +tp254152 +a(g254149 +g254151 +S'juxtaposition' +p254153 +tp254154 +a(g254151 +g254153 +S'and' +p254155 +tp254156 +a(g254153 +g254155 +S'serial' +p254157 +tp254158 +a(g254155 +g254157 +S'development.' +p254159 +tp254160 +a(g254157 +g254159 +S'stieglitz' +p254161 +tp254162 +a(g254159 +g254161 +S'called' +p254163 +tp254164 +a(g254161 +g254163 +S'his' +p254165 +tp254166 +a(g254163 +g254165 +S'ongoing' +p254167 +tp254168 +a(g254165 +g254167 +S'studies' +p254169 +tp254170 +a(g254167 +g254169 +S'of' +p254171 +tp254172 +a(g254169 +g254171 +S"o'keeffe" +p254173 +tp254174 +a(g254171 +g254173 +S'a' +p254175 +tp254176 +a(g254173 +g254175 +S'"composite' +p254177 +tp254178 +a(g254175 +g254177 +S'portrait,"' +p254179 +tp254180 +a(g254177 +g254179 +S'meaning' +p254181 +tp254182 +a(g254179 +g254181 +S'one' +p254183 +tp254184 +a(g254181 +g254183 +S'that' +p254185 +tp254186 +a(g254183 +g254185 +S'developed' +p254187 +tp254188 +a(g254185 +g254187 +S'over' +p254189 +tp254190 +a(g254187 +g254189 +S'time,' +p254191 +tp254192 +a(g254189 +g254191 +S'piece' +p254193 +tp254194 +a(g254191 +g254193 +S'by' +p254195 +tp254196 +a(g254193 +g254195 +S'piece.' +p254197 +tp254198 +a(g254195 +g254197 +S'this' +p254199 +tp254200 +a(g254197 +g254199 +S'closely' +p254201 +tp254202 +a(g254199 +g254201 +S'framed' +p254203 +tp254204 +a(g254201 +g254203 +S'view' +p254205 +tp254206 +a(g254203 +g254205 +S'of' +p254207 +tp254208 +a(g254205 +g254207 +S'ecstatically' +p254209 +tp254210 +a(g254207 +g254209 +S'clawing' +p254211 +tp254212 +a(g254209 +g254211 +S'hands,' +p254213 +tp254214 +a(g254211 +g254213 +S'sinewy' +p254215 +tp254216 +a(g254213 +g254215 +S'fingers' +p254217 +tp254218 +a(g254215 +g254217 +S'pressing' +p254219 +tp254220 +a(g254217 +g254219 +S'into' +p254221 +tp254222 +a(g254219 +g254221 +S'flesh,' +p254223 +tp254224 +a(g254221 +g254223 +S'gives' +p254225 +tp254226 +a(g254223 +g254225 +S'just' +p254227 +tp254228 +a(g254225 +g254227 +S'one' +p254229 +tp254230 +a(g254227 +g254229 +S'aspect' +p254231 +tp254232 +a(g254229 +g254231 +S'of' +p254233 +tp254234 +a(g254231 +g254233 +S"o'keeffe's" +p254235 +tp254236 +a(g254233 +g254235 +S'multifaceted' +p254237 +tp254238 +a(g254235 +g254237 +S'personality' +p254239 +tp254240 +a(g254237 +g254239 +S'as' +p254241 +tp254242 +a(g254239 +g254241 +S'shaped' +p254243 +tp254244 +a(g254241 +g254243 +S'through' +p254245 +tp254246 +a(g254243 +g254245 +S'this' +p254247 +tp254248 +a(g254245 +g254247 +S'portrait' +p254249 +tp254250 +a(g254247 +g254249 +S'series.' +p254251 +tp254252 +a(g254249 +g254251 +S'henri' +p254253 +tp254254 +a(g254251 +g254253 +S'de' +p254255 +tp254256 +a(g254253 +g254255 +S'toulouse-lautrec' +p254257 +tp254258 +a(g254255 +g254257 +S'had' +p254259 +tp254260 +a(g254257 +g254259 +S'a' +p254261 +tp254262 +a(g254259 +g254261 +S'passion' +p254263 +tp254264 +a(g254261 +g254263 +S'for' +p254265 +tp254266 +a(g254263 +g254265 +S'the' +p254267 +tp254268 +a(g254265 +g254267 +S'theater' +p254269 +tp254270 +a(g254267 +g254269 +S'in' +p254271 +tp254272 +a(g254269 +g254271 +S'all' +p254273 +tp254274 +a(g254271 +g254273 +S'its' +p254275 +tp254276 +a(g254273 +g254275 +S'forms,' +p254277 +tp254278 +a(g254275 +g254277 +S'from' +p254279 +tp254280 +a(g254277 +g254279 +S'the' +p254281 +tp254282 +a(g254279 +g254281 +S'popular' +p254283 +tp254284 +a(g254281 +g254283 +S'dance' +p254285 +tp254286 +a(g254283 +g254285 +S'halls' +p254287 +tp254288 +a(g254285 +g254287 +S'and' +p254289 +tp254290 +a(g254287 +g254289 +S'cabarets' +p254291 +tp254292 +a(g254289 +g254291 +S'to' +p254293 +tp254294 +a(g254291 +g254293 +S'the' +p254295 +tp254296 +a(g254293 +g254295 +S'avant-garde' +p254297 +tp254298 +a(g254295 +g254297 +S'theaters' +p254299 +tp254300 +a(g254297 +g254299 +S'of' +p254301 +tp254302 +a(g254299 +g254301 +S'paris.' +p254303 +tp254304 +a(g254301 +g254303 +S'he' +p254305 +tp254306 +a(g254303 +g254305 +S'was' +p254307 +tp254308 +a(g254305 +g254307 +S'both' +p254309 +tp254310 +a(g254307 +g254309 +S'a' +p254311 +tp254312 +a(g254309 +g254311 +S'keen' +p254313 +tp254314 +a(g254311 +g254313 +S'spectator' +p254315 +tp254316 +a(g254313 +g254315 +S'and' +p254317 +tp254318 +a(g254315 +g254317 +S'an' +p254319 +tp254320 +a(g254317 +g254319 +S'active' +p254321 +tp254322 +a(g254319 +g254321 +S'participant,' +p254323 +tp254324 +a(g254321 +g254323 +S'designing' +p254325 +tp254326 +a(g254323 +g254325 +S'posters,' +p254327 +tp254328 +a(g254325 +g254327 +S'theater' +p254329 +tp254330 +a(g254327 +g254329 +S'programs,' +p254331 +tp254332 +a(g254329 +g254331 +S'scenery,' +p254333 +tp254334 +a(g254331 +g254333 +S'and' +p254335 +tp254336 +a(g254333 +g254335 +S'costumes' +p254337 +tp254338 +a(g254335 +g254337 +S'for' +p254339 +tp254340 +a(g254337 +g254339 +S'a' +p254341 +tp254342 +a(g254339 +g254341 +S'number' +p254343 +tp254344 +a(g254341 +g254343 +S'of' +p254345 +tp254346 +a(g254343 +g254345 +S'theaters' +p254347 +tp254348 +a(g254345 +g254347 +S'and' +p254349 +tp254350 +a(g254347 +g254349 +S'stage' +p254351 +tp254352 +a(g254349 +g254351 +S'productions.' +p254353 +tp254354 +a(g254351 +g254353 +S'although' +p254355 +tp254356 +a(g254353 +g254355 +S'he' +p254357 +tp254358 +a(g254355 +g254357 +S'was' +p254359 +tp254360 +a(g254357 +g254359 +S'drawn' +p254361 +tp254362 +a(g254359 +g254361 +S'to' +p254363 +tp254364 +a(g254361 +g254363 +S'the' +p254365 +tp254366 +a(g254363 +g254365 +S'spectacle' +p254367 +tp254368 +a(g254365 +g254367 +S'of' +p254369 +tp254370 +a(g254367 +g254369 +S'the' +p254371 +tp254372 +a(g254369 +g254371 +S'performance,' +p254373 +tp254374 +a(g254371 +g254373 +S'it' +p254375 +tp254376 +a(g254373 +g254375 +S'was' +p254377 +tp254378 +a(g254375 +g254377 +S'the' +p254379 +tp254380 +a(g254377 +g254379 +S'performers' +p254381 +tp254382 +a(g254379 +g254381 +S'who' +p254383 +tp254384 +a(g254381 +g254383 +S'most' +p254385 +tp254386 +a(g254383 +g254385 +S'fascinated' +p254387 +tp254388 +a(g254385 +g254387 +S'him.' +p254389 +tp254390 +a(g254387 +g254389 +S'among' +p254391 +tp254392 +a(g254389 +g254391 +S"toulouse-lautrec's" +p254393 +tp254394 +a(g254391 +g254393 +S'favorite' +p254395 +tp254396 +a(g254393 +g254395 +S'subjects' +p254397 +tp254398 +a(g254395 +g254397 +S'was' +p254399 +tp254400 +a(g254397 +g254399 +S'the' +p254401 +tp254402 +a(g254399 +g254401 +S'red-headed' +p254403 +tp254404 +a(g254401 +g254403 +S'actress' +p254405 +tp254406 +a(g254403 +g254405 +S'marcelle' +p254407 +tp254408 +a(g254405 +g254407 +S'lender.' +p254409 +tp254410 +a(g254407 +g254409 +S'he' +p254411 +tp254412 +a(g254409 +g254411 +S'first' +p254413 +tp254414 +a(g254411 +g254413 +S'encountered' +p254415 +tp254416 +a(g254413 +g254415 +S'her' +p254417 +tp254418 +a(g254415 +g254417 +S'in' +p254419 +tp254420 +a(g254417 +g254419 +S'1893,' +p254421 +tp254422 +a(g254419 +g254421 +S'the' +p254423 +tp254424 +a(g254421 +g254423 +S'year' +p254425 +tp254426 +a(g254423 +g254425 +S'he' +p254427 +tp254428 +a(g254425 +g254427 +S'began' +p254429 +tp254430 +a(g254427 +g254429 +S'to' +p254431 +tp254432 +a(g254429 +g254431 +S'attend' +p254433 +tp254434 +a(g254431 +g254433 +S'the' +p254435 +tp254436 +a(g254433 +g254435 +S'theater' +p254437 +tp254438 +a(g254435 +g254437 +S'on' +p254439 +tp254440 +a(g254437 +g254439 +S'a' +p254441 +tp254442 +a(g254439 +g254441 +S'regular' +p254443 +tp254444 +a(g254441 +g254443 +S'basis.' +p254445 +tp254446 +a(g254443 +g254445 +S'his' +p254447 +tp254448 +a(g254445 +g254447 +S'infatuation' +p254449 +tp254450 +a(g254447 +g254449 +S'with' +p254451 +tp254452 +a(g254449 +g254451 +S'her' +p254453 +tp254454 +a(g254451 +g254453 +S'reached' +p254455 +tp254456 +a(g254453 +g254455 +S'its' +p254457 +tp254458 +a(g254455 +g254457 +S'peak' +p254459 +tp254460 +a(g254457 +g254459 +S'two' +p254461 +tp254462 +a(g254459 +g254461 +S'years' +p254463 +tp254464 +a(g254461 +g254463 +S'later' +p254465 +tp254466 +a(g254463 +g254465 +S'when' +p254467 +tp254468 +a(g254465 +g254467 +S'she' +p254469 +tp254470 +a(g254467 +g254469 +S'starred' +p254471 +tp254472 +a(g254469 +g254471 +S'in' +p254473 +tp254474 +a(g254471 +g254473 +S'the' +p254475 +tp254476 +a(g254473 +g254475 +S'revival' +p254477 +tp254478 +a(g254475 +g254477 +S'of' +p254479 +tp254480 +a(g254477 +g254479 +S'the' +p254481 +tp254482 +a(g254479 +g254481 +S'french' +p254483 +tp254484 +a(g254481 +g254483 +S'librettist' +p254485 +tp254486 +a(g254483 +g254485 +S'and' +p254487 +tp254488 +a(g254485 +g254487 +S'composer' +p254489 +tp254490 +a(g254487 +g254489 +S"herv\xc3\xa9's" +p254491 +tp254492 +a(g254489 +g254491 +S'one' +p254493 +tp254494 +a(g254491 +g254493 +S'of' +p254495 +tp254496 +a(g254493 +g254495 +S'the' +p254497 +tp254498 +a(g254495 +g254497 +S'largest' +p254499 +tp254500 +a(g254497 +g254499 +S'and' +p254501 +tp254502 +a(g254499 +g254501 +S'most' +p254503 +tp254504 +a(g254501 +g254503 +S'elaborate' +p254505 +tp254506 +a(g254503 +g254505 +S'paintings' +p254507 +tp254508 +a(g254505 +g254507 +S'toulouse-lautrec' +p254509 +tp254510 +a(g254507 +g254509 +S'ever' +p254511 +tp254512 +a(g254509 +g254511 +S'created,' +p254513 +tp254514 +a(g254511 +g254513 +S'a' +p254515 +tp254516 +a(g254513 +g254515 +S'popular' +p254517 +tp254518 +a(g254515 +g254517 +S'subject' +p254519 +tp254520 +a(g254517 +g254519 +S'in' +p254521 +tp254522 +a(g254519 +g254521 +S'counter–reformation' +p254523 +tp254524 +a(g254521 +g254523 +S'italy' +p254525 +tp254526 +a(g254523 +g254525 +S'and' +p254527 +tp254528 +a(g254525 +g254527 +S'spain,' +p254529 +tp254530 +a(g254527 +g254529 +S"ribera's" +p254531 +tp254532 +a(g254529 +g254531 +S'profoundly' +p254533 +tp254534 +a(g254531 +g254533 +S'moving' +p254535 +tp254536 +a(g254533 +g254535 +S'work' +p254537 +tp254538 +a(g254535 +g254537 +S'portrays' +p254539 +tp254540 +a(g254537 +g254539 +S'the' +p254541 +tp254542 +a(g254539 +g254541 +S"apostle's" +p254543 +tp254544 +a(g254541 +g254543 +S'final' +p254545 +tp254546 +a(g254543 +g254545 +S'moments' +p254547 +tp254548 +a(g254545 +g254547 +S'before' +p254549 +tp254550 +a(g254547 +g254549 +S'he' +p254551 +tp254552 +a(g254549 +g254551 +S'is' +p254553 +tp254554 +a(g254551 +g254553 +S'to' +p254555 +tp254556 +a(g254553 +g254555 +S'be' +p254557 +tp254558 +a(g254555 +g254557 +S'flayed' +p254559 +tp254560 +a(g254557 +g254559 +S'alive.' +p254561 +tp254562 +a(g254559 +g254561 +S'the' +p254563 +tp254564 +a(g254561 +g254563 +S'viewer' +p254565 +tp254566 +a(g254563 +g254565 +S'is' +p254567 +tp254568 +a(g254565 +g254567 +S'meant' +p254569 +tp254570 +a(g254567 +g254569 +S'to' +p254571 +tp254572 +a(g254569 +g254571 +S'empathize' +p254573 +tp254574 +a(g254571 +g254573 +S'with' +p254575 +tp254576 +a(g254573 +g254575 +S'bartholomew,' +p254577 +tp254578 +a(g254575 +g254577 +S'whose' +p254579 +tp254580 +a(g254577 +g254579 +S'body' +p254581 +tp254582 +a(g254579 +g254581 +S'seemingly' +p254583 +tp254584 +a(g254581 +g254583 +S'bursts' +p254585 +tp254586 +a(g254583 +g254585 +S'through' +p254587 +tp254588 +a(g254585 +g254587 +S'the' +p254589 +tp254590 +a(g254587 +g254589 +S'surface' +p254591 +tp254592 +a(g254589 +g254591 +S'of' +p254593 +tp254594 +a(g254591 +g254593 +S'the' +p254595 +tp254596 +a(g254593 +g254595 +S'canvas,' +p254597 +tp254598 +a(g254595 +g254597 +S'and' +p254599 +tp254600 +a(g254597 +g254599 +S'whose' +p254601 +tp254602 +a(g254599 +g254601 +S'outstretched' +p254603 +tp254604 +a(g254601 +g254603 +S'arms' +p254605 +tp254606 +a(g254603 +g254605 +S'embrace' +p254607 +tp254608 +a(g254605 +g254607 +S'a' +p254609 +tp254610 +a(g254607 +g254609 +S'mystical' +p254611 +tp254612 +a(g254609 +g254611 +S'light' +p254613 +tp254614 +a(g254611 +g254613 +S'that' +p254615 +tp254616 +a(g254613 +g254615 +S'illuminates' +p254617 +tp254618 +a(g254615 +g254617 +S'his' +p254619 +tp254620 +a(g254617 +g254619 +S'flesh.' +p254621 +tp254622 +a(g254619 +g254621 +S'his' +p254623 +tp254624 +a(g254621 +g254623 +S'piercing' +p254625 +tp254626 +a(g254623 +g254625 +S'eyes,' +p254627 +tp254628 +a(g254625 +g254627 +S'open' +p254629 +tp254630 +a(g254627 +g254629 +S'mouth,' +p254631 +tp254632 +a(g254629 +g254631 +S'and' +p254633 +tp254634 +a(g254631 +g254633 +S'petitioning' +p254635 +tp254636 +a(g254633 +g254635 +S'left' +p254637 +tp254638 +a(g254635 +g254637 +S'hand' +p254639 +tp254640 +a(g254637 +g254639 +S'bespeak' +p254641 +tp254642 +a(g254639 +g254641 +S'an' +p254643 +tp254644 +a(g254641 +g254643 +S'intense' +p254645 +tp254646 +a(g254643 +g254645 +S'communion' +p254647 +tp254648 +a(g254645 +g254647 +S'with' +p254649 +tp254650 +a(g254647 +g254649 +S'the' +p254651 +tp254652 +a(g254649 +g254651 +S'divine;' +p254653 +tp254654 +a(g254651 +g254653 +S'yet' +p254655 +tp254656 +a(g254653 +g254655 +S'this' +p254657 +tp254658 +a(g254655 +g254657 +S'same' +p254659 +tp254660 +a(g254657 +g254659 +S'hand' +p254661 +tp254662 +a(g254659 +g254661 +S'draws' +p254663 +tp254664 +a(g254661 +g254663 +S'our' +p254665 +tp254666 +a(g254663 +g254665 +S'attention' +p254667 +tp254668 +a(g254665 +g254667 +S'to' +p254669 +tp254670 +a(g254667 +g254669 +S'the' +p254671 +tp254672 +a(g254669 +g254671 +S'instruments' +p254673 +tp254674 +a(g254671 +g254673 +S'of' +p254675 +tp254676 +a(g254673 +g254675 +S'his' +p254677 +tp254678 +a(g254675 +g254677 +S'torture,' +p254679 +tp254680 +a(g254677 +g254679 +S'symbolically' +p254681 +tp254682 +a(g254679 +g254681 +S'positioned' +p254683 +tp254684 +a(g254681 +g254683 +S'in' +p254685 +tp254686 +a(g254683 +g254685 +S'the' +p254687 +tp254688 +a(g254685 +g254687 +S'shape' +p254689 +tp254690 +a(g254687 +g254689 +S'of' +p254691 +tp254692 +a(g254689 +g254691 +S'a' +p254693 +tp254694 +a(g254691 +g254693 +S'cross.' +p254695 +tp254696 +a(g254693 +g254695 +S'transfixed' +p254697 +tp254698 +a(g254695 +g254697 +S'by' +p254699 +tp254700 +a(g254697 +g254699 +S"bartholomew's" +p254701 +tp254702 +a(g254699 +g254701 +S'active' +p254703 +tp254704 +a(g254701 +g254703 +S'faith,' +p254705 +tp254706 +a(g254703 +g254705 +S'the' +p254707 +tp254708 +a(g254705 +g254707 +S'executioner' +p254709 +tp254710 +a(g254707 +g254709 +S'seems' +p254711 +tp254712 +a(g254709 +g254711 +S'to' +p254713 +tp254714 +a(g254711 +g254713 +S'have' +p254715 +tp254716 +a(g254713 +g254715 +S'stopped' +p254717 +tp254718 +a(g254715 +g254717 +S'short' +p254719 +tp254720 +a(g254717 +g254719 +S'in' +p254721 +tp254722 +a(g254719 +g254721 +S'his' +p254723 +tp254724 +a(g254721 +g254723 +S'actions,' +p254725 +tp254726 +a(g254723 +g254725 +S'and' +p254727 +tp254728 +a(g254725 +g254727 +S'his' +p254729 +tp254730 +a(g254727 +g254729 +S'furrowed' +p254731 +tp254732 +a(g254729 +g254731 +S'brow' +p254733 +tp254734 +a(g254731 +g254733 +S'and' +p254735 +tp254736 +a(g254733 +g254735 +S'partially' +p254737 +tp254738 +a(g254735 +g254737 +S'illuminated' +p254739 +tp254740 +a(g254737 +g254739 +S'face' +p254741 +tp254742 +a(g254739 +g254741 +S'suggest' +p254743 +tp254744 +a(g254741 +g254743 +S'a' +p254745 +tp254746 +a(g254743 +g254745 +S'moment' +p254747 +tp254748 +a(g254745 +g254747 +S'of' +p254749 +tp254750 +a(g254747 +g254749 +S'doubt,' +p254751 +tp254752 +a(g254749 +g254751 +S'with' +p254753 +tp254754 +a(g254751 +g254753 +S'the' +p254755 +tp254756 +a(g254753 +g254755 +S'possibility' +p254757 +tp254758 +a(g254755 +g254757 +S'of' +p254759 +tp254760 +a(g254757 +g254759 +S'conversion.' +p254761 +tp254762 +a(g254759 +g254761 +S'the' +p254763 +tp254764 +a(g254761 +g254763 +S'use' +p254765 +tp254766 +a(g254763 +g254765 +S'of' +p254767 +tp254768 +a(g254765 +g254767 +S'sharp' +p254769 +tp254770 +a(g254767 +g254769 +S'light–dark' +p254771 +tp254772 +a(g254769 +g254771 +S'contrasts' +p254773 +tp254774 +a(g254771 +g254773 +S'and' +p254775 +tp254776 +a(g254773 +g254775 +S'extreme' +p254777 +tp254778 +a(g254775 +g254777 +S'naturalism' +p254779 +tp254780 +a(g254777 +g254779 +S'reveal' +p254781 +tp254782 +a(g254779 +g254781 +S'the' +p254783 +tp254784 +a(g254781 +g254783 +S'influence' +p254785 +tp254786 +a(g254783 +g254785 +S'of' +p254787 +tp254788 +a(g254785 +g254787 +S'caravaggio,' +p254789 +tp254790 +a(g254787 +g254789 +S'whose' +p254791 +tp254792 +a(g254789 +g254791 +S'work' +p254793 +tp254794 +a(g254791 +g254793 +S'ribera' +p254795 +tp254796 +a(g254793 +g254795 +S'would' +p254797 +tp254798 +a(g254795 +g254797 +S'have' +p254799 +tp254800 +a(g254797 +g254799 +S'seen' +p254801 +tp254802 +a(g254799 +g254801 +S'both' +p254803 +tp254804 +a(g254801 +g254803 +S'in' +p254805 +tp254806 +a(g254803 +g254805 +S'rome' +p254807 +tp254808 +a(g254805 +g254807 +S'and' +p254809 +tp254810 +a(g254807 +g254809 +S'in' +p254811 +tp254812 +a(g254809 +g254811 +S'naples,' +p254813 +tp254814 +a(g254811 +g254813 +S'where' +p254815 +tp254816 +a(g254813 +g254815 +S'he' +p254817 +tp254818 +a(g254815 +g254817 +S'lived' +p254819 +tp254820 +a(g254817 +g254819 +S'from' +p254821 +tp254822 +a(g254819 +g254821 +S'1616' +p254823 +tp254824 +a(g254821 +g254823 +S'until' +p254825 +tp254826 +a(g254823 +g254825 +S'the' +p254827 +tp254828 +a(g254825 +g254827 +S'end' +p254829 +tp254830 +a(g254827 +g254829 +S'of' +p254831 +tp254832 +a(g254829 +g254831 +S'his' +p254833 +tp254834 +a(g254831 +g254833 +S'life.' +p254835 +tp254836 +a(g254833 +g254835 +S'yet' +p254837 +tp254838 +a(g254835 +g254837 +S'unlike' +p254839 +tp254840 +a(g254837 +g254839 +S'caravaggio,' +p254841 +tp254842 +a(g254839 +g254841 +S'ribera' +p254843 +tp254844 +a(g254841 +g254843 +S'has' +p254845 +tp254846 +a(g254843 +g254845 +S'enlivened' +p254847 +tp254848 +a(g254845 +g254847 +S'the' +p254849 +tp254850 +a(g254847 +g254849 +S'canvas' +p254851 +tp254852 +a(g254849 +g254851 +S'with' +p254853 +tp254854 +a(g254851 +g254853 +S'a' +p254855 +tp254856 +a(g254853 +g254855 +S'variety' +p254857 +tp254858 +a(g254855 +g254857 +S'of' +p254859 +tp254860 +a(g254857 +g254859 +S'brushstrokes' +p254861 +tp254862 +a(g254859 +g254861 +S'and' +p254863 +tp254864 +a(g254861 +g254863 +S'textures,' +p254865 +tp254866 +a(g254863 +g254865 +S'allowing' +p254867 +tp254868 +a(g254865 +g254867 +S'the' +p254869 +tp254870 +a(g254867 +g254869 +S'viewer' +p254871 +tp254872 +a(g254869 +g254871 +S'to' +p254873 +tp254874 +a(g254871 +g254873 +S'become' +p254875 +tp254876 +a(g254873 +g254875 +S'further' +p254877 +tp254878 +a(g254875 +g254877 +S'involved' +p254879 +tp254880 +a(g254877 +g254879 +S'with' +p254881 +tp254882 +a(g254879 +g254881 +S'this' +p254883 +tp254884 +a(g254881 +g254883 +S'psychologically' +p254885 +tp254886 +a(g254883 +g254885 +S'charged' +p254887 +tp254888 +a(g254885 +g254887 +S'painting.' +p254889 +tp254890 +a(g254887 +g254889 +S'dalou' +p254891 +tp254892 +a(g254889 +g254891 +S'infused' +p254893 +tp254894 +a(g254891 +g254893 +S'this' +p254895 +tp254896 +a(g254893 +g254895 +S'marble' +p254897 +tp254898 +a(g254895 +g254897 +S'portrait' +p254899 +tp254900 +a(g254897 +g254899 +S'bust' +p254901 +tp254902 +a(g254899 +g254901 +S'with' +p254903 +tp254904 +a(g254901 +g254903 +S'subtle' +p254905 +tp254906 +a(g254903 +g254905 +S'movement' +p254907 +tp254908 +a(g254905 +g254907 +S'and' +p254909 +tp254910 +a(g254907 +g254909 +S'energy:' +p254911 +tp254912 +a(g254909 +g254911 +S'rather' +p254913 +tp254914 +a(g254911 +g254913 +S'than' +p254915 +tp254916 +a(g254913 +g254915 +S'maintaining' +p254917 +tp254918 +a(g254915 +g254917 +S'a' +p254919 +tp254920 +a(g254917 +g254919 +S'strictly' +p254921 +tp254922 +a(g254919 +g254921 +S'formal' +p254923 +tp254924 +a(g254921 +g254923 +S'pose,' +p254925 +tp254926 +a(g254923 +g254925 +S"dalou's" +p254927 +tp254928 +a(g254925 +g254927 +S'young' +p254929 +tp254930 +a(g254927 +g254929 +S'boy' +p254931 +tp254932 +a(g254929 +g254931 +S'tips' +p254933 +tp254934 +a(g254931 +g254933 +S'his' +p254935 +tp254936 +a(g254933 +g254935 +S'head' +p254937 +tp254938 +a(g254935 +g254937 +S'slightly,' +p254939 +tp254940 +a(g254937 +g254939 +S'jostling' +p254941 +tp254942 +a(g254939 +g254941 +S'his' +p254943 +tp254944 +a(g254941 +g254943 +S'collar' +p254945 +tp254946 +a(g254943 +g254945 +S'and' +p254947 +tp254948 +a(g254945 +g254947 +S'tie,' +p254949 +tp254950 +a(g254947 +g254949 +S'as' +p254951 +tp254952 +a(g254949 +g254951 +S'if' +p254953 +tp254954 +a(g254951 +g254953 +S'pausing' +p254955 +tp254956 +a(g254953 +g254955 +S'only' +p254957 +tp254958 +a(g254955 +g254957 +S'briefly' +p254959 +tp254960 +a(g254957 +g254959 +S'before' +p254961 +tp254962 +a(g254959 +g254961 +S'running' +p254963 +tp254964 +a(g254961 +g254963 +S'on' +p254965 +tp254966 +a(g254963 +g254965 +S'to' +p254967 +tp254968 +a(g254965 +g254967 +S'play.' +p254969 +tp254970 +a(g254967 +g254969 +S'the' +p254971 +tp254972 +a(g254969 +g254971 +S'variety' +p254973 +tp254974 +a(g254971 +g254973 +S'of' +p254975 +tp254976 +a(g254973 +g254975 +S'textures—the' +p254977 +tp254978 +a(g254975 +g254977 +S'soft' +p254979 +tp254980 +a(g254977 +g254979 +S'creaminess' +p254981 +tp254982 +a(g254979 +g254981 +S'of' +p254983 +tp254984 +a(g254981 +g254983 +S'the' +p254985 +tp254986 +a(g254983 +g254985 +S"boy's" +p254987 +tp254988 +a(g254985 +g254987 +S'cheeks,' +p254989 +tp254990 +a(g254987 +g254989 +S'his' +p254991 +tp254992 +a(g254989 +g254991 +S'crisply' +p254993 +tp254994 +a(g254991 +g254993 +S'drilled' +p254995 +tp254996 +a(g254993 +g254995 +S'eyes,' +p254997 +tp254998 +a(g254995 +g254997 +S'the' +p254999 +tp255000 +a(g254997 +g254999 +S'chiseled' +p255001 +tp255002 +a(g254999 +g255001 +S'matte' +p255003 +tp255004 +a(g255001 +g255003 +S'finish' +p255005 +tp255006 +a(g255003 +g255005 +S'of' +p255007 +tp255008 +a(g255005 +g255007 +S'the' +p255009 +tp255010 +a(g255007 +g255009 +S'sailor' +p255011 +tp255012 +a(g255009 +g255011 +S'suit—enable' +p255013 +tp255014 +a(g255011 +g255013 +S'light' +p255015 +tp255016 +a(g255013 +g255015 +S'and' +p255017 +tp255018 +a(g255015 +g255017 +S'shadow' +p255019 +tp255020 +a(g255017 +g255019 +S'to' +p255021 +tp255022 +a(g255019 +g255021 +S'alternate' +p255023 +tp255024 +a(g255021 +g255023 +S'across' +p255025 +tp255026 +a(g255023 +g255025 +S'the' +p255027 +tp255028 +a(g255025 +g255027 +S"bust's" +p255029 +tp255030 +a(g255027 +g255029 +S'surfaces.' +p255031 +tp255032 +a(g255029 +g255031 +S'like' +p255033 +tp255034 +a(g255031 +g255033 +S'his' +p255035 +tp255036 +a(g255033 +g255035 +S'contemporary' +p255037 +tp255038 +a(g255035 +g255037 +S'dalou' +p255039 +tp255040 +a(g255037 +g255039 +S'created' +p255041 +tp255042 +a(g255039 +g255041 +S'several' +p255043 +tp255044 +a(g255041 +g255043 +S'busts' +p255045 +tp255046 +a(g255043 +g255045 +S'of' +p255047 +tp255048 +a(g255045 +g255047 +S'young' +p255049 +tp255050 +a(g255047 +g255049 +S'children' +p255051 +tp255052 +a(g255049 +g255051 +S'while' +p255053 +tp255054 +a(g255051 +g255053 +S'living' +p255055 +tp255056 +a(g255053 +g255055 +S'in' +p255057 +tp255058 +a(g255055 +g255057 +S'england' +p255059 +tp255060 +a(g255057 +g255059 +S'in' +p255061 +tp255062 +a(g255059 +g255061 +S'the' +p255063 +tp255064 +a(g255061 +g255063 +S'1870s.' +p255065 +tp255066 +a(g255063 +g255065 +S'scholars' +p255067 +tp255068 +a(g255065 +g255067 +S'speculate' +p255069 +tp255070 +a(g255067 +g255069 +S'that' +p255071 +tp255072 +a(g255069 +g255071 +S'this' +p255073 +tp255074 +a(g255071 +g255073 +S'is' +p255075 +tp255076 +a(g255073 +g255075 +S'five-year-old' +p255077 +tp255078 +a(g255075 +g255077 +S'henry' +p255079 +tp255080 +a(g255077 +g255079 +S'ebenezer' +p255081 +tp255082 +a(g255079 +g255081 +S'bingham,' +p255083 +tp255084 +a(g255081 +g255083 +S'the' +p255085 +tp255086 +a(g255083 +g255085 +S'son' +p255087 +tp255088 +a(g255085 +g255087 +S'and' +p255089 +tp255090 +a(g255087 +g255089 +S'grandson' +p255091 +tp255092 +a(g255089 +g255091 +S'of' +p255093 +tp255094 +a(g255091 +g255093 +S'english' +p255095 +tp255096 +a(g255093 +g255095 +S'master' +p255097 +tp255098 +a(g255095 +g255097 +S'marble-' +p255099 +tp255100 +a(g255097 +g255099 +S'and' +p255101 +tp255102 +a(g255099 +g255101 +S'stonemasons.' +p255103 +tp255104 +a(g255101 +g255103 +S'dalou' +p255105 +tp255106 +a(g255103 +g255105 +S'taught' +p255107 +tp255108 +a(g255105 +g255107 +S'sculptural' +p255109 +tp255110 +a(g255107 +g255109 +S'modeling' +p255111 +tp255112 +a(g255109 +g255111 +S'in' +p255113 +tp255114 +a(g255111 +g255113 +S'london' +p255115 +tp255116 +a(g255113 +g255115 +S'in' +p255117 +tp255118 +a(g255115 +g255117 +S'the' +p255119 +tp255120 +a(g255117 +g255119 +S'1870s' +p255121 +tp255122 +a(g255119 +g255121 +S'and' +p255123 +tp255124 +a(g255121 +g255123 +S'had' +p255125 +tp255126 +a(g255123 +g255125 +S'a' +p255127 +tp255128 +a(g255125 +g255127 +S'studio' +p255129 +tp255130 +a(g255127 +g255129 +S'near' +p255131 +tp255132 +a(g255129 +g255131 +S'the' +p255133 +tp255134 +a(g255131 +g255133 +S'bingham' +p255135 +tp255136 +a(g255133 +g255135 +S'family' +p255137 +tp255138 +a(g255135 +g255137 +S'stone' +p255139 +tp255140 +a(g255137 +g255139 +S'business.' +p255141 +tp255142 +a(g255139 +g255141 +S"henry's" +p255143 +tp255144 +a(g255141 +g255143 +S'father,' +p255145 +tp255146 +a(g255143 +g255145 +S'edward' +p255147 +tp255148 +a(g255145 +g255147 +S'bingham,' +p255149 +tp255150 +a(g255147 +g255149 +S'may' +p255151 +tp255152 +a(g255149 +g255151 +S'have' +p255153 +tp255154 +a(g255151 +g255153 +S'engaged' +p255155 +tp255156 +a(g255153 +g255155 +S'dalou' +p255157 +tp255158 +a(g255155 +g255157 +S'to' +p255159 +tp255160 +a(g255157 +g255159 +S'make' +p255161 +tp255162 +a(g255159 +g255161 +S'this' +p255163 +tp255164 +a(g255161 +g255163 +S'bust;' +p255165 +tp255166 +a(g255163 +g255165 +S'in' +p255167 +tp255168 +a(g255165 +g255167 +S'fact,' +p255169 +tp255170 +a(g255167 +g255169 +S'the' +p255171 +tp255172 +a(g255169 +g255171 +S'choice' +p255173 +tp255174 +a(g255171 +g255173 +S'of' +p255175 +tp255176 +a(g255173 +g255175 +S'material,' +p255177 +tp255178 +a(g255175 +g255177 +S'"noble"' +p255179 +tp255180 +a(g255177 +g255179 +S'statuary' +p255181 +tp255182 +a(g255179 +g255181 +S'marble' +p255183 +tp255184 +a(g255181 +g255183 +S'rather' +p255185 +tp255186 +a(g255183 +g255185 +S'than' +p255187 +tp255188 +a(g255185 +g255187 +S'the' +p255189 +tp255190 +a(g255187 +g255189 +S'more' +p255191 +tp255192 +a(g255189 +g255191 +S'popular' +p255193 +tp255194 +a(g255191 +g255193 +S'terracotta' +p255195 +tp255196 +a(g255193 +g255195 +S'that' +p255197 +tp255198 +a(g255195 +g255197 +S'dalou' +p255199 +tp255200 +a(g255197 +g255199 +S'used' +p255201 +tp255202 +a(g255199 +g255201 +S'at' +p255203 +tp255204 +a(g255201 +g255203 +S'the' +p255205 +tp255206 +a(g255203 +g255205 +S'time,' +p255207 +tp255208 +a(g255205 +g255207 +S'may' +p255209 +tp255210 +a(g255207 +g255209 +S'hint' +p255211 +tp255212 +a(g255209 +g255211 +S'at' +p255213 +tp255214 +a(g255211 +g255213 +S'the' +p255215 +tp255216 +a(g255213 +g255215 +S"binghams'" +p255217 +tp255218 +a(g255215 +g255217 +S'social' +p255219 +tp255220 +a(g255217 +g255219 +S'aspirations,' +p255221 +tp255222 +a(g255219 +g255221 +S'as' +p255223 +tp255224 +a(g255221 +g255223 +S'well' +p255225 +tp255226 +a(g255223 +g255225 +S'as' +p255227 +tp255228 +a(g255225 +g255227 +S'being' +p255229 +tp255230 +a(g255227 +g255229 +S'a' +p255231 +tp255232 +a(g255229 +g255231 +S'reference' +p255233 +tp255234 +a(g255231 +g255233 +S'to' +p255235 +tp255236 +a(g255233 +g255235 +S'the' +p255237 +tp255238 +a(g255235 +g255237 +S'material' +p255239 +tp255240 +a(g255237 +g255239 +S'basis' +p255241 +tp255242 +a(g255239 +g255241 +S'of' +p255243 +tp255244 +a(g255241 +g255243 +S'the' +p255245 +tp255246 +a(g255243 +g255245 +S'family' +p255247 +tp255248 +a(g255245 +g255247 +S'business.' +p255249 +tp255250 +a(g255247 +g255249 +S'traditional' +p255251 +tp255252 +a(g255249 +g255251 +S'stone-carving' +p255253 +tp255254 +a(g255251 +g255253 +S'tools' +p255255 +tp255256 +a(g255253 +g255255 +S'were' +p255257 +tp255258 +a(g255255 +g255257 +S'used' +p255259 +tp255260 +a(g255257 +g255259 +S'for' +p255261 +tp255262 +a(g255259 +g255261 +S'this' +p255263 +tp255264 +a(g255261 +g255263 +S'work:' +p255265 +tp255266 +a(g255263 +g255265 +S'a' +p255267 +tp255268 +a(g255265 +g255267 +S'variety' +p255269 +tp255270 +a(g255267 +g255269 +S'of' +p255271 +tp255272 +a(g255269 +g255271 +S'chisels' +p255273 +tp255274 +a(g255271 +g255273 +S'to' +p255275 +tp255276 +a(g255273 +g255275 +S'work' +p255277 +tp255278 +a(g255275 +g255277 +S'the' +p255279 +tp255280 +a(g255277 +g255279 +S'face,' +p255281 +tp255282 +a(g255279 +g255281 +S'hair,' +p255283 +tp255284 +a(g255281 +g255283 +S'tie,' +p255285 +tp255286 +a(g255283 +g255285 +S'and' +p255287 +tp255288 +a(g255285 +g255287 +S'collar' +p255289 +tp255290 +a(g255287 +g255289 +S'of' +p255291 +tp255292 +a(g255289 +g255291 +S'the' +p255293 +tp255294 +a(g255291 +g255293 +S'slightly' +p255295 +tp255296 +a(g255293 +g255295 +S'disheveled' +p255297 +tp255298 +a(g255295 +g255297 +S'suit;' +p255299 +tp255300 +a(g255297 +g255299 +S'a' +p255301 +tp255302 +a(g255299 +g255301 +S'drill' +p255303 +tp255304 +a(g255301 +g255303 +S'for' +p255305 +tp255306 +a(g255303 +g255305 +S'the' +p255307 +tp255308 +a(g255305 +g255307 +S'pupil' +p255309 +tp255310 +a(g255307 +g255309 +S'and' +p255311 +tp255312 +a(g255309 +g255311 +S'iris;' +p255313 +tp255314 +a(g255311 +g255313 +S'and' +p255315 +tp255316 +a(g255313 +g255315 +S'files' +p255317 +tp255318 +a(g255315 +g255317 +S'(and' +p255319 +tp255320 +a(g255317 +g255319 +S'perhaps' +p255321 +tp255322 +a(g255319 +g255321 +S'emery' +p255323 +tp255324 +a(g255321 +g255323 +S'and' +p255325 +tp255326 +a(g255323 +g255325 +S'pumice,' +p255327 +tp255328 +a(g255325 +g255327 +S'but' +p255329 +tp255330 +a(g255327 +g255329 +S'not' +p255331 +tp255332 +a(g255329 +g255331 +S'wax' +p255333 +tp255334 +a(g255331 +g255333 +S'or' +p255335 +tp255336 +a(g255333 +g255335 +S'polish)' +p255337 +tp255338 +a(g255335 +g255337 +S'to' +p255339 +tp255340 +a(g255337 +g255339 +S'smooth' +p255341 +tp255342 +a(g255339 +g255341 +S'the' +p255343 +tp255344 +a(g255341 +g255343 +S'work' +p255345 +tp255346 +a(g255343 +g255345 +S'and' +p255347 +tp255348 +a(g255345 +g255347 +S'soften' +p255349 +tp255350 +a(g255347 +g255349 +S'the' +p255351 +tp255352 +a(g255349 +g255351 +S"boy's" +p255353 +tp255354 +a(g255351 +g255353 +S'cheeks.' +p255355 +tp255356 +a(g255353 +g255355 +S'fernand' +p255357 +tp255358 +a(g255355 +g255357 +S'léger' +p255359 +tp255360 +a(g255357 +g255359 +S'originated' +p255361 +tp255362 +a(g255359 +g255361 +S'a' +p255363 +tp255364 +a(g255361 +g255363 +S'distinct' +p255365 +tp255366 +a(g255363 +g255365 +S'cubist' +p255367 +tp255368 +a(g255365 +g255367 +S'style' +p255369 +tp255370 +a(g255367 +g255369 +S'in' +p255371 +tp255372 +a(g255369 +g255371 +S'the' +p255373 +tp255374 +a(g255371 +g255373 +S'twentieth' +p255375 +tp255376 +a(g255373 +g255375 +S'century.' +p255377 +tp255378 +a(g255375 +g255377 +S'in' +p255379 +tp255380 +a(g255377 +g255379 +S'the' +p255381 +tp255382 +a(g255379 +g255381 +S'early' +p255383 +tp255384 +a(g255381 +g255383 +S'1920s' +p255385 +tp255386 +a(g255383 +g255385 +S'he' +p255387 +tp255388 +a(g255385 +g255387 +S'both' +p255389 +tp255390 +a(g255387 +g255389 +S'embraced' +p255391 +tp255392 +a(g255389 +g255391 +S'and' +p255393 +tp255394 +a(g255391 +g255393 +S'influenced' +p255395 +tp255396 +a(g255393 +g255395 +S'the' +p255397 +tp255398 +a(g255395 +g255397 +S'aesthetic' +p255399 +tp255400 +a(g255397 +g255399 +S'of' +p255401 +tp255402 +a(g255399 +g255401 +S'purism' +p255403 +tp255404 +a(g255401 +g255403 +S'as' +p255405 +tp255406 +a(g255403 +g255405 +S'espoused' +p255407 +tp255408 +a(g255405 +g255407 +S'by' +p255409 +tp255410 +a(g255407 +g255409 +S'his' +p255411 +tp255412 +a(g255409 +g255411 +S'friends' +p255413 +tp255414 +a(g255411 +g255413 +S'le' +p255415 +tp255416 +a(g255413 +g255415 +S'corbusier' +p255417 +tp255418 +a(g255415 +g255417 +S'and' +p255419 +tp255420 +a(g255417 +g255419 +S'amedée' +p255421 +tp255422 +a(g255419 +g255421 +S'ozenfant.' +p255423 +tp255424 +a(g255421 +g255423 +S'the' +p255425 +tp255426 +a(g255423 +g255425 +S'clean,' +p255427 +tp255428 +a(g255425 +g255427 +S'geometric' +p255429 +tp255430 +a(g255427 +g255429 +S'forms' +p255431 +tp255432 +a(g255429 +g255431 +S'of' +p255433 +tp255434 +a(g255431 +g255433 +S'mechanized' +p255435 +tp255436 +a(g255433 +g255435 +S'industry' +p255437 +tp255438 +a(g255435 +g255437 +S'and' +p255439 +tp255440 +a(g255437 +g255439 +S'mass' +p255441 +tp255442 +a(g255439 +g255441 +S'production' +p255443 +tp255444 +a(g255441 +g255443 +S'were' +p255445 +tp255446 +a(g255443 +g255445 +S'prized' +p255447 +tp255448 +a(g255445 +g255447 +S'as' +p255449 +tp255450 +a(g255447 +g255449 +S'the' +p255451 +tp255452 +a(g255449 +g255451 +S'harbingers' +p255453 +tp255454 +a(g255451 +g255453 +S'of' +p255455 +tp255456 +a(g255453 +g255455 +S'a' +p255457 +tp255458 +a(g255455 +g255457 +S'renewed' +p255459 +tp255460 +a(g255457 +g255459 +S'social' +p255461 +tp255462 +a(g255459 +g255461 +S'and' +p255463 +tp255464 +a(g255461 +g255463 +S'aesthetic' +p255465 +tp255466 +a(g255463 +g255465 +S'order.' +p255467 +tp255468 +a(g255465 +g255467 +S'many' +p255469 +tp255470 +a(g255467 +g255469 +S'of' +p255471 +tp255472 +a(g255469 +g255471 +S"léger's" +p255473 +tp255474 +a(g255471 +g255473 +S'paintings' +p255475 +tp255476 +a(g255473 +g255475 +S'took' +p255477 +tp255478 +a(g255475 +g255477 +S'mechanical' +p255479 +tp255480 +a(g255477 +g255479 +S'devices' +p255481 +tp255482 +a(g255479 +g255481 +S'as' +p255483 +tp255484 +a(g255481 +g255483 +S'their' +p255485 +tp255486 +a(g255483 +g255485 +S'subject,' +p255487 +tp255488 +a(g255485 +g255487 +S'and' +p255489 +tp255490 +a(g255487 +g255489 +S'all' +p255491 +tp255492 +a(g255489 +g255491 +S'of' +p255493 +tp255494 +a(g255491 +g255493 +S'his' +p255495 +tp255496 +a(g255493 +g255495 +S'paintings' +p255497 +tp255498 +a(g255495 +g255497 +S'were' +p255499 +tp255500 +a(g255497 +g255499 +S'informed' +p255501 +tp255502 +a(g255499 +g255501 +S'by' +p255503 +tp255504 +a(g255501 +g255503 +S'a' +p255505 +tp255506 +a(g255503 +g255505 +S'style' +p255507 +tp255508 +a(g255505 +g255507 +S'of' +p255509 +tp255510 +a(g255507 +g255509 +S'cool' +p255511 +tp255512 +a(g255509 +g255511 +S'precision' +p255513 +tp255514 +a(g255511 +g255513 +S'and' +p255515 +tp255516 +a(g255513 +g255515 +S'exacting' +p255517 +tp255518 +a(g255515 +g255517 +S'workmanship.' +p255519 +tp255520 +a(g255517 +g255519 +S'women' +p255521 +tp255522 +a(g255519 +g255521 +S'occupied' +p255523 +tp255524 +a(g255521 +g255523 +S'a' +p255525 +tp255526 +a(g255523 +g255525 +S'traditional' +p255527 +tp255528 +a(g255525 +g255527 +S'place' +p255529 +tp255530 +a(g255527 +g255529 +S'within' +p255531 +tp255532 +a(g255529 +g255531 +S"léger's" +p255533 +tp255534 +a(g255531 +g255533 +S'ideal' +p255535 +tp255536 +a(g255533 +g255535 +S'new' +p255537 +tp255538 +a(g255535 +g255537 +S'order.' +p255539 +tp255540 +a(g255537 +g255539 +S'counterpoints' +p255541 +tp255542 +a(g255539 +g255541 +S'to' +p255543 +tp255544 +a(g255541 +g255543 +S'the' +p255545 +tp255546 +a(g255543 +g255545 +S'urban' +p255547 +tp255548 +a(g255545 +g255547 +S'world' +p255549 +tp255550 +a(g255547 +g255549 +S'of' +p255551 +tp255552 +a(g255549 +g255551 +S'industry' +p255553 +tp255554 +a(g255551 +g255553 +S'and' +p255555 +tp255556 +a(g255553 +g255555 +S'work,' +p255557 +tp255558 +a(g255555 +g255557 +S"léger's" +p255559 +tp255560 +a(g255557 +g255559 +S'many' +p255561 +tp255562 +a(g255559 +g255561 +S'depictions' +p255563 +tp255564 +a(g255561 +g255563 +S'of' +p255565 +tp255566 +a(g255563 +g255565 +S'women' +p255567 +tp255568 +a(g255565 +g255567 +S'embody' +p255569 +tp255570 +a(g255567 +g255569 +S'a' +p255571 +tp255572 +a(g255569 +g255571 +S'domestic' +p255573 +tp255574 +a(g255571 +g255573 +S'realm' +p255575 +tp255576 +a(g255573 +g255575 +S'of' +p255577 +tp255578 +a(g255575 +g255577 +S'tranquility' +p255579 +tp255580 +a(g255577 +g255579 +S'and' +p255581 +tp255582 +a(g255579 +g255581 +S'leisure.1' +p255583 +tp255584 +a(g255581 +g255583 +S'he' +p255585 +tp255586 +a(g255583 +g255585 +S'treated' +p255587 +tp255588 +a(g255585 +g255587 +S'his' +p255589 +tp255590 +a(g255587 +g255589 +S'depictions' +p255591 +tp255592 +a(g255589 +g255591 +S'of' +p255593 +tp255594 +a(g255591 +g255593 +S'women' +p255595 +tp255596 +a(g255593 +g255595 +S'no' +p255597 +tp255598 +a(g255595 +g255597 +S'differently' +p255599 +tp255600 +a(g255597 +g255599 +S'than' +p255601 +tp255602 +a(g255599 +g255601 +S'the' +p255603 +tp255604 +a(g255601 +g255603 +S'most' +p255605 +tp255606 +a(g255603 +g255605 +S'austere' +p255607 +tp255608 +a(g255605 +g255607 +S'mechanical' +p255609 +tp255610 +a(g255607 +g255609 +S'form:' +p255611 +tp255612 +a(g255609 +g255611 +S'edges' +p255613 +tp255614 +a(g255611 +g255613 +S'are' +p255615 +tp255616 +a(g255613 +g255615 +S'sharp,' +p255617 +tp255618 +a(g255615 +g255617 +S'colors' +p255619 +tp255620 +a(g255617 +g255619 +S'are' +p255621 +tp255622 +a(g255619 +g255621 +S'distinct,' +p255623 +tp255624 +a(g255621 +g255623 +S'and' +p255625 +tp255626 +a(g255623 +g255625 +S'modeling' +p255627 +tp255628 +a(g255625 +g255627 +S'follows' +p255629 +tp255630 +a(g255627 +g255629 +S'a' +p255631 +tp255632 +a(g255629 +g255631 +S'conspicuously' +p255633 +tp255634 +a(g255631 +g255633 +S'stylized' +p255635 +tp255636 +a(g255633 +g255635 +S'formula.' +p255637 +tp255638 +a(g255635 +g255637 +S'léger' +p255639 +tp255640 +a(g255637 +g255639 +S'often' +p255641 +tp255642 +a(g255639 +g255641 +S'produced' +p255643 +tp255644 +a(g255641 +g255643 +S'more' +p255645 +tp255646 +a(g255643 +g255645 +S'than' +p255647 +tp255648 +a(g255645 +g255647 +S'one' +p255649 +tp255650 +a(g255647 +g255649 +S'version' +p255651 +tp255652 +a(g255649 +g255651 +S'of' +p255653 +tp255654 +a(g255651 +g255653 +S'his' +p255655 +tp255656 +a(g255653 +g255655 +S'important' +p255657 +tp255658 +a(g255655 +g255657 +S'compositions,' +p255659 +tp255660 +a(g255657 +g255659 +S'and' +p255661 +tp255662 +a(g255659 +g255661 +S'the' +p255663 +tp255664 +a(g255661 +g255663 +S'first' +p255665 +tp255666 +a(g255663 +g255665 +S'major' +p255667 +tp255668 +a(g255665 +g255667 +S'work' +p255669 +tp255670 +a(g255667 +g255669 +S'by' +p255671 +tp255672 +a(g255669 +g255671 +S'léger' +p255673 +tp255674 +a(g255671 +g255673 +S'to' +p255675 +tp255676 +a(g255673 +g255675 +S'enter' +p255677 +tp255678 +a(g255675 +g255677 +S'the' +p255679 +tp255680 +a(g255677 +g255679 +S'national' +p255681 +tp255682 +a(g255679 +g255681 +S'gallery' +p255683 +tp255684 +a(g255681 +g255683 +S'collection,' +p255685 +tp255686 +a(g255683 +g255685 +S'interior' +p255687 +tp255688 +a(g255685 +g255687 +S'tavern' +p255689 +tp255690 +a(g255687 +g255689 +S'drinkers' +p255691 +tp255692 +a(g255689 +g255691 +S'and' +p255693 +tp255694 +a(g255691 +g255693 +S'idlers' +p255695 +tp255696 +a(g255693 +g255695 +S'frequently' +p255697 +tp255698 +a(g255695 +g255697 +S'appear' +p255699 +tp255700 +a(g255697 +g255699 +S'in' +p255701 +tp255702 +a(g255699 +g255701 +S'dutch' +p255703 +tp255704 +a(g255701 +g255703 +S'genre' +p255705 +tp255706 +a(g255703 +g255705 +S'scenes' +p255707 +tp255708 +a(g255705 +g255707 +S'of' +p255709 +tp255710 +a(g255707 +g255709 +S'daily' +p255711 +tp255712 +a(g255709 +g255711 +S'life,' +p255713 +tp255714 +a(g255711 +g255713 +S'but' +p255715 +tp255716 +a(g255713 +g255715 +S'depictions' +p255717 +tp255718 +a(g255715 +g255717 +S'of' +p255719 +tp255720 +a(g255717 +g255719 +S'workers' +p255721 +tp255722 +a(g255719 +g255721 +S'restocking' +p255723 +tp255724 +a(g255721 +g255723 +S'an' +p255725 +tp255726 +a(g255723 +g255725 +S'inn' +p255727 +tp255728 +a(g255725 +g255727 +S'are' +p255729 +tp255730 +a(g255727 +g255729 +S'very' +p255731 +tp255732 +a(g255729 +g255731 +S'unusual.' +p255733 +tp255734 +a(g255731 +g255733 +S'two' +p255735 +tp255736 +a(g255733 +g255735 +S'laborers' +p255737 +tp255738 +a(g255735 +g255737 +S'here' +p255739 +tp255740 +a(g255737 +g255739 +S'are' +p255741 +tp255742 +a(g255739 +g255741 +S'yoked' +p255743 +tp255744 +a(g255741 +g255743 +S'together' +p255745 +tp255746 +a(g255743 +g255745 +S'to' +p255747 +tp255748 +a(g255745 +g255747 +S'haul' +p255749 +tp255750 +a(g255747 +g255749 +S'beer' +p255751 +tp255752 +a(g255749 +g255751 +S'kegs' +p255753 +tp255754 +a(g255751 +g255753 +S'off' +p255755 +tp255756 +a(g255753 +g255755 +S'a' +p255757 +tp255758 +a(g255755 +g255757 +S'sledge.' +p255759 +tp255760 +a(g255757 +g255759 +S'their' +p255761 +tp255762 +a(g255759 +g255761 +S'overworked,' +p255763 +tp255764 +a(g255761 +g255763 +S'underfed' +p255765 +tp255766 +a(g255763 +g255765 +S'horse' +p255767 +tp255768 +a(g255765 +g255767 +S'bears' +p255769 +tp255770 +a(g255767 +g255769 +S'the' +p255771 +tp255772 +a(g255769 +g255771 +S'scars' +p255773 +tp255774 +a(g255771 +g255773 +S'of' +p255775 +tp255776 +a(g255773 +g255775 +S'a' +p255777 +tp255778 +a(g255775 +g255777 +S'hard' +p255779 +tp255780 +a(g255777 +g255779 +S'existence.' +p255781 +tp255782 +a(g255779 +g255781 +S'at' +p255783 +tp255784 +a(g255781 +g255783 +S'the' +p255785 +tp255786 +a(g255783 +g255785 +S'cellar' +p255787 +tp255788 +a(g255785 +g255787 +S'door' +p255789 +tp255790 +a(g255787 +g255789 +S'a' +p255791 +tp255792 +a(g255789 +g255791 +S'small' +p255793 +tp255794 +a(g255791 +g255793 +S'boy' +p255795 +tp255796 +a(g255793 +g255795 +S'carries' +p255797 +tp255798 +a(g255795 +g255797 +S'a' +p255799 +tp255800 +a(g255797 +g255799 +S'jug' +p255801 +tp255802 +a(g255799 +g255801 +S'of' +p255803 +tp255804 +a(g255801 +g255803 +S'ale,' +p255805 +tp255806 +a(g255803 +g255805 +S'while' +p255807 +tp255808 +a(g255805 +g255807 +S'the' +p255809 +tp255810 +a(g255807 +g255809 +S'street' +p255811 +tp255812 +a(g255809 +g255811 +S'teems' +p255813 +tp255814 +a(g255811 +g255813 +S'with' +p255815 +tp255816 +a(g255813 +g255815 +S'beggars,' +p255817 +tp255818 +a(g255815 +g255817 +S'peddlers,' +p255819 +tp255820 +a(g255817 +g255819 +S'and' +p255821 +tp255822 +a(g255819 +g255821 +S'fighting' +p255823 +tp255824 +a(g255821 +g255823 +S'dogs.' +p255825 +tp255826 +a(g255823 +g255825 +S'like' +p255827 +tp255828 +a(g255825 +g255827 +S'one' +p255829 +tp255830 +a(g255827 +g255829 +S'other' +p255831 +tp255832 +a(g255829 +g255831 +S'isack' +p255833 +tp255834 +a(g255831 +g255833 +S'van' +p255835 +tp255836 +a(g255833 +g255835 +S'ostade' +p255837 +tp255838 +a(g255835 +g255837 +S'painting,' +p255839 +tp255840 +a(g255837 +g255839 +S'isack' +p255841 +tp255842 +a(g255839 +g255841 +S'was' +p255843 +tp255844 +a(g255841 +g255843 +S'trained' +p255845 +tp255846 +a(g255843 +g255845 +S'in' +p255847 +tp255848 +a(g255845 +g255847 +S'haarlem' +p255849 +tp255850 +a(g255847 +g255849 +S'by' +p255851 +tp255852 +a(g255849 +g255851 +S'his' +p255853 +tp255854 +a(g255851 +g255853 +S'older' +p255855 +tp255856 +a(g255853 +g255855 +S'brother' +p255857 +tp255858 +a(g255855 +g255857 +S'in' +p255859 +tp255860 +a(g255857 +g255859 +S'may' +p255861 +tp255862 +a(g255859 +g255861 +S'1889,' +p255863 +tp255864 +a(g255861 +g255863 +S'following' +p255865 +tp255866 +a(g255863 +g255865 +S'bouts' +p255867 +tp255868 +a(g255865 +g255867 +S'of' +p255869 +tp255870 +a(g255867 +g255869 +S'depression' +p255871 +tp255872 +a(g255869 +g255871 +S'and' +p255873 +tp255874 +a(g255871 +g255873 +S'erratic' +p255875 +tp255876 +a(g255873 +g255875 +S'behavior' +p255877 +tp255878 +a(g255875 +g255877 +S'that' +p255879 +tp255880 +a(g255877 +g255879 +S'culminated' +p255881 +tp255882 +a(g255879 +g255881 +S'in' +p255883 +tp255884 +a(g255881 +g255883 +S'the' +p255885 +tp255886 +a(g255883 +g255885 +S'mutilation' +p255887 +tp255888 +a(g255885 +g255887 +S'of' +p255889 +tp255890 +a(g255887 +g255889 +S'his' +p255891 +tp255892 +a(g255889 +g255891 +S'left' +p255893 +tp255894 +a(g255891 +g255893 +S'ear,' +p255895 +tp255896 +a(g255893 +g255895 +S'van' +p255897 +tp255898 +a(g255895 +g255897 +S'gogh' +p255899 +tp255900 +a(g255897 +g255899 +S'traveled' +p255901 +tp255902 +a(g255899 +g255901 +S'from' +p255903 +tp255904 +a(g255901 +g255903 +S'arles' +p255905 +tp255906 +a(g255903 +g255905 +S'to' +p255907 +tp255908 +a(g255905 +g255907 +S'the' +p255909 +tp255910 +a(g255907 +g255909 +S'nearby' +p255911 +tp255912 +a(g255909 +g255911 +S'village' +p255913 +tp255914 +a(g255911 +g255913 +S'of' +p255915 +tp255916 +a(g255913 +g255915 +S'saint-rémy,' +p255917 +tp255918 +a(g255915 +g255917 +S'where' +p255919 +tp255920 +a(g255917 +g255919 +S'he' +p255921 +tp255922 +a(g255919 +g255921 +S'voluntarily' +p255923 +tp255924 +a(g255921 +g255923 +S'committed' +p255925 +tp255926 +a(g255923 +g255925 +S'himself' +p255927 +tp255928 +a(g255925 +g255927 +S'to' +p255929 +tp255930 +a(g255927 +g255929 +S'the' +p255931 +tp255932 +a(g255929 +g255931 +S'asylum' +p255933 +tp255934 +a(g255931 +g255933 +S'saint-' +p255935 +tp255936 +a(g255933 +g255935 +S'paul-de-mausole.' +p255937 +tp255938 +a(g255935 +g255937 +S'as' +p255939 +tp255940 +a(g255937 +g255939 +S'had' +p255941 +tp255942 +a(g255939 +g255941 +S'always' +p255943 +tp255944 +a(g255941 +g255943 +S'been' +p255945 +tp255946 +a(g255943 +g255945 +S'true' +p255947 +tp255948 +a(g255945 +g255947 +S'during' +p255949 +tp255950 +a(g255947 +g255949 +S'the' +p255951 +tp255952 +a(g255949 +g255951 +S'bleaker' +p255953 +tp255954 +a(g255951 +g255953 +S'periods' +p255955 +tp255956 +a(g255953 +g255955 +S'in' +p255957 +tp255958 +a(g255955 +g255957 +S'the' +p255959 +tp255960 +a(g255957 +g255959 +S'artist\xe2\x80\x99s' +p255961 +tp255962 +a(g255959 +g255961 +S'life,' +p255963 +tp255964 +a(g255961 +g255963 +S'art' +p255965 +tp255966 +a(g255963 +g255965 +S'was' +p255967 +tp255968 +a(g255965 +g255967 +S'both' +p255969 +tp255970 +a(g255967 +g255969 +S'his' +p255971 +tp255972 +a(g255969 +g255971 +S'therapy' +p255973 +tp255974 +a(g255971 +g255973 +S'and' +p255975 +tp255976 +a(g255973 +g255975 +S'his' +p255977 +tp255978 +a(g255975 +g255977 +S'salvation.' +p255979 +tp255980 +a(g255977 +g255979 +S'vincent\xe2\x80\x99s' +p255981 +tp255982 +a(g255979 +g255981 +S'time' +p255983 +tp255984 +a(g255981 +g255983 +S'at' +p255985 +tp255986 +a(g255983 +g255985 +S'saint-r\xc3\xa9my' +p255987 +tp255988 +a(g255985 +g255987 +S'was' +p255989 +tp255990 +a(g255987 +g255989 +S'no' +p255991 +tp255992 +a(g255989 +g255991 +S'exception.' +p255993 +tp255994 +a(g255991 +g255993 +S'his' +p255995 +tp255996 +a(g255993 +g255995 +S'doctor' +p255997 +tp255998 +a(g255995 +g255997 +S'observed' +p255999 +tp256000 +a(g255997 +g255999 +S'that' +p256001 +tp256002 +a(g255999 +g256001 +S'"between' +p256003 +tp256004 +a(g256001 +g256003 +S'his' +p256005 +tp256006 +a(g256003 +g256005 +S'attacks' +p256007 +tp256008 +a(g256005 +g256007 +S'the' +p256009 +tp256010 +a(g256007 +g256009 +S'patient' +p256011 +tp256012 +a(g256009 +g256011 +S'was' +p256013 +tp256014 +a(g256011 +g256013 +S'perfectly' +p256015 +tp256016 +a(g256013 +g256015 +S'quiet' +p256017 +tp256018 +a(g256015 +g256017 +S'and' +p256019 +tp256020 +a(g256017 +g256019 +S'devoted' +p256021 +tp256022 +a(g256019 +g256021 +S'himself' +p256023 +tp256024 +a(g256021 +g256023 +S'with' +p256025 +tp256026 +a(g256023 +g256025 +S'ardor' +p256027 +tp256028 +a(g256025 +g256027 +S'to' +p256029 +tp256030 +a(g256027 +g256029 +S'his' +p256031 +tp256032 +a(g256029 +g256031 +S'painting."' +p256033 +tp256034 +a(g256031 +g256033 +S'vincent\xe2\x80\x99s' +p256035 +tp256036 +a(g256033 +g256035 +S'final' +p256037 +tp256038 +a(g256035 +g256037 +S'weeks' +p256039 +tp256040 +a(g256037 +g256039 +S'at' +p256041 +tp256042 +a(g256039 +g256041 +S'the' +p256043 +tp256044 +a(g256041 +g256043 +S'asylum' +p256045 +tp256046 +a(g256043 +g256045 +S'were' +p256047 +tp256048 +a(g256045 +g256047 +S'marked' +p256049 +tp256050 +a(g256047 +g256049 +S'by' +p256051 +tp256052 +a(g256049 +g256051 +S'both' +p256053 +tp256054 +a(g256051 +g256053 +S'intense' +p256055 +tp256056 +a(g256053 +g256055 +S'productivity' +p256057 +tp256058 +a(g256055 +g256057 +S'and' +p256059 +tp256060 +a(g256057 +g256059 +S'emotional' +p256061 +tp256062 +a(g256059 +g256061 +S'stability.' +p256063 +tp256064 +a(g256061 +g256063 +S'looking' +p256065 +tp256066 +a(g256063 +g256065 +S'back' +p256067 +tp256068 +a(g256065 +g256067 +S'on' +p256069 +tp256070 +a(g256067 +g256069 +S'those' +p256071 +tp256072 +a(g256069 +g256071 +S'days,' +p256073 +tp256074 +a(g256071 +g256073 +S'vincent' +p256075 +tp256076 +a(g256073 +g256075 +S'would' +p256077 +tp256078 +a(g256075 +g256077 +S'tell' +p256079 +tp256080 +a(g256077 +g256079 +S'his' +p256081 +tp256082 +a(g256079 +g256081 +S'sister' +p256083 +tp256084 +a(g256081 +g256083 +S'that' +p256085 +tp256086 +a(g256083 +g256085 +S'he' +p256087 +tp256088 +a(g256085 +g256087 +S'"worked' +p256089 +tp256090 +a(g256087 +g256089 +S'as' +p256091 +tp256092 +a(g256089 +g256091 +S'in' +p256093 +tp256094 +a(g256091 +g256093 +S'a' +p256095 +tp256096 +a(g256093 +g256095 +S'frenzy.' +p256097 +tp256098 +a(g256095 +g256097 +S'great' +p256099 +tp256100 +a(g256097 +g256099 +S'bunches' +p256101 +tp256102 +a(g256099 +g256101 +S'of' +p256103 +tp256104 +a(g256101 +g256103 +S'flowers,' +p256105 +tp256106 +a(g256103 +g256105 +S'violet' +p256107 +tp256108 +a(g256105 +g256107 +S'irises,' +p256109 +tp256110 +a(g256107 +g256109 +S'big' +p256111 +tp256112 +a(g256109 +g256111 +S'bouquets' +p256113 +tp256114 +a(g256111 +g256113 +S'of' +p256115 +tp256116 +a(g256113 +g256115 +S'roses,' +p256117 +tp256118 +a(g256115 +g256117 +S'landscapes."' +p256119 +tp256120 +a(g256117 +g256119 +S'vincent\xe2\x80\x99s' +p256121 +tp256122 +a(g256119 +g256121 +S'newfound' +p256123 +tp256124 +a(g256121 +g256123 +S'confidence' +p256125 +tp256126 +a(g256123 +g256125 +S'is' +p256127 +tp256128 +a(g256125 +g256127 +S'palpable' +p256129 +tp256130 +a(g256127 +g256129 +S'in' +p256131 +tp256132 +a(g256129 +g256131 +S'this' +p256133 +tp256134 +a(g256131 +g256133 +S'painting,' +p256135 +tp256136 +a(g256133 +g256135 +S'in' +p256137 +tp256138 +a(g256135 +g256137 +S'which' +p256139 +tp256140 +a(g256137 +g256139 +S'an' +p256141 +tp256142 +a(g256139 +g256141 +S'enormous' +p256143 +tp256144 +a(g256141 +g256143 +S'bouquet' +p256145 +tp256146 +a(g256143 +g256145 +S'of' +p256147 +tp256148 +a(g256145 +g256147 +S'roses' +p256149 +tp256150 +a(g256147 +g256149 +S'seems' +p256151 +tp256152 +a(g256149 +g256151 +S'to' +p256153 +tp256154 +a(g256151 +g256153 +S'spill' +p256155 +tp256156 +a(g256153 +g256155 +S'out' +p256157 +tp256158 +a(g256155 +g256157 +S'from' +p256159 +tp256160 +a(g256157 +g256159 +S'a' +p256161 +tp256162 +a(g256159 +g256161 +S'stoneware' +p256163 +tp256164 +a(g256161 +g256163 +S'vase,' +p256165 +tp256166 +a(g256163 +g256165 +S'with' +p256167 +tp256168 +a(g256165 +g256167 +S'fragrant' +p256169 +tp256170 +a(g256167 +g256169 +S'blooms' +p256171 +tp256172 +a(g256169 +g256171 +S'filling' +p256173 +tp256174 +a(g256171 +g256173 +S'virtually' +p256175 +tp256176 +a(g256173 +g256175 +S'the' +p256177 +tp256178 +a(g256175 +g256177 +S'entire' +p256179 +tp256180 +a(g256177 +g256179 +S'composition.' +p256181 +tp256182 +a(g256179 +g256181 +S'although' +p256183 +tp256184 +a(g256181 +g256183 +S'vincent' +p256185 +tp256186 +a(g256183 +g256185 +S'was' +p256187 +tp256188 +a(g256185 +g256187 +S'known' +p256189 +tp256190 +a(g256187 +g256189 +S'to' +p256191 +tp256192 +a(g256189 +g256191 +S'assign' +p256193 +tp256194 +a(g256191 +g256193 +S'meanings' +p256195 +tp256196 +a(g256193 +g256195 +S'to' +p256197 +tp256198 +a(g256195 +g256197 +S'the' +p256199 +tp256200 +a(g256197 +g256199 +S'flowers' +p256201 +tp256202 +a(g256199 +g256201 +S'he' +p256203 +tp256204 +a(g256201 +g256203 +S'painted,' +p256205 +tp256206 +a(g256203 +g256205 +S'his' +p256207 +tp256208 +a(g256205 +g256207 +S'correspondence' +p256209 +tp256210 +a(g256207 +g256209 +S'makes' +p256211 +tp256212 +a(g256209 +g256211 +S'no' +p256213 +tp256214 +a(g256211 +g256213 +S'mention' +p256215 +tp256216 +a(g256213 +g256215 +S'of' +p256217 +tp256218 +a(g256215 +g256217 +S'any' +p256219 +tp256220 +a(g256217 +g256219 +S'deeper' +p256221 +tp256222 +a(g256219 +g256221 +S'significance' +p256223 +tp256224 +a(g256221 +g256223 +S'associated' +p256225 +tp256226 +a(g256223 +g256225 +S'with' +p256227 +tp256228 +a(g256225 +g256227 +S'the' +p256229 +tp256230 +a(g256227 +g256229 +S'roses' +p256231 +tp256232 +a(g256229 +g256231 +S'depicted' +p256233 +tp256234 +a(g256231 +g256233 +S'here.' +p256235 +tp256236 +a(g256233 +g256235 +S'instead,' +p256237 +tp256238 +a(g256235 +g256237 +S'the' +p256239 +tp256240 +a(g256237 +g256239 +S'artist\xe2\x80\x99s' +p256241 +tp256242 +a(g256239 +g256241 +S'exuberance' +p256243 +tp256244 +a(g256241 +g256243 +S'is' +p256245 +tp256246 +a(g256243 +g256245 +S'equally' +p256247 +tp256248 +a(g256245 +g256247 +S'evident' +p256249 +tp256250 +a(g256247 +g256249 +S'in' +p256251 +tp256252 +a(g256249 +g256251 +S'his' +p256253 +tp256254 +a(g256251 +g256253 +S'use' +p256255 +tp256256 +a(g256253 +g256255 +S'of' +p256257 +tp256258 +a(g256255 +g256257 +S'color' +p256259 +tp256260 +a(g256257 +g256259 +S'and' +p256261 +tp256262 +a(g256259 +g256261 +S'brushwork.' +p256263 +tp256264 +a(g256261 +g256263 +S'vincent' +p256265 +tp256266 +a(g256263 +g256265 +S'selected' +p256267 +tp256268 +a(g256265 +g256267 +S'a' +p256269 +tp256270 +a(g256267 +g256269 +S'palette' +p256271 +tp256272 +a(g256269 +g256271 +S'dominated' +p256273 +tp256274 +a(g256271 +g256273 +S'by' +p256275 +tp256276 +a(g256273 +g256275 +S'the' +p256277 +tp256278 +a(g256275 +g256277 +S'complementary' +p256279 +tp256280 +a(g256277 +g256279 +S'colors' +p256281 +tp256282 +a(g256279 +g256281 +S'red' +p256283 +tp256284 +a(g256281 +g256283 +S'and' +p256285 +tp256286 +a(g256283 +g256285 +S'green,' +p256287 +tp256288 +a(g256285 +g256287 +S'juxtaposed' +p256289 +tp256290 +a(g256287 +g256289 +S'in' +p256291 +tp256292 +a(g256289 +g256291 +S'order' +p256293 +tp256294 +a(g256291 +g256293 +S'to' +p256295 +tp256296 +a(g256293 +g256295 +S'heighten' +p256297 +tp256298 +a(g256295 +g256297 +S'each' +p256299 +tp256300 +a(g256297 +g256299 +S'color\xe2\x80\x99s' +p256301 +tp256302 +a(g256299 +g256301 +S'vibrancy.' +p256303 +tp256304 +a(g256301 +g256303 +S'unfortunately' +p256305 +tp256306 +a(g256303 +g256305 +S'in' +p256307 +tp256308 +a(g256305 +g256307 +S'the' +p256309 +tp256310 +a(g256307 +g256309 +S'case' +p256311 +tp256312 +a(g256309 +g256311 +S'of' +p256313 +tp256314 +a(g256311 +g256313 +S'(text' +p256315 +tp256316 +a(g256313 +g256315 +S'by' +p256317 +tp256318 +a(g256315 +g256317 +S'kimberly' +p256319 +tp256320 +a(g256317 +g256319 +S'jones,' +p256321 +tp256322 +a(g256319 +g256321 +S'notes' +p256323 +tp256324 +a(g256321 +g256323 +S'2.' +p256327 +tp256328 +a(g256325 +g256327 +S'letter' +p256329 +tp256330 +a(g256327 +g256329 +S'from' +p256331 +tp256332 +a(g256329 +g256331 +S'vincent' +p256333 +tp256334 +a(g256331 +g256333 +S'to' +p256335 +tp256336 +a(g256333 +g256335 +S'his' +p256337 +tp256338 +a(g256335 +g256337 +S'sister,' +p256339 +tp256340 +a(g256337 +g256339 +S'beginning' +p256341 +tp256342 +a(g256339 +g256341 +S'of' +p256343 +tp256344 +a(g256341 +g256343 +S'june' +p256345 +tp256346 +a(g256343 +g256345 +S'1890.' +p256347 +tp256348 +a(g256345 +g256347 +S'the' +p256349 +tp256350 +a(g256347 +g256349 +S'complete' +p256351 +tp256352 +a(g256349 +g256351 +S'letters' +p256353 +tp256354 +a(g256351 +g256353 +S'of' +p256355 +tp256356 +a(g256353 +g256355 +S'vincent' +p256357 +tp256358 +a(g256355 +g256357 +S'van' +p256359 +tp256360 +a(g256357 +g256359 +S'gogh,' +p256361 +tp256362 +a(g256359 +g256361 +S'3' +p256363 +tp256364 +a(g256361 +g256363 +S'vols.,' +p256365 +tp256366 +a(g256363 +g256365 +S'2nd' +p256367 +tp256368 +a(g256365 +g256367 +S'ed.' +p256369 +tp256370 +a(g256367 +g256369 +S'(boston,' +p256371 +tp256372 +a(g256369 +g256371 +S'1978),' +p256373 +tp256374 +a(g256371 +g256373 +S'3:469,' +p256375 +tp256376 +a(g256373 +g256375 +S'letter' +p256377 +tp256378 +a(g256375 +g256377 +S'w.' +p256379 +tp256380 +a(g256377 +g256379 +S'21.' +p256381 +tp256382 +a(g256379 +g256381 +S'' +p256385 +tp256386 +a(g256383 +g256385 +S'' +p256389 +tp256390 +a(g256387 +g256389 +S"heda's" +p256391 +tp256392 +a(g256389 +g256391 +S'largest' +p256393 +tp256394 +a(g256391 +g256393 +S'known' +p256395 +tp256396 +a(g256393 +g256395 +S'painting' +p256397 +tp256398 +a(g256395 +g256397 +S'appears,' +p256399 +tp256400 +a(g256397 +g256399 +S'at' +p256401 +tp256402 +a(g256399 +g256401 +S'first' +p256403 +tp256404 +a(g256401 +g256403 +S'sight,' +p256405 +tp256406 +a(g256403 +g256405 +S'to' +p256407 +tp256408 +a(g256405 +g256407 +S'extend' +p256409 +tp256410 +a(g256407 +g256409 +S'the' +p256411 +tp256412 +a(g256409 +g256411 +S'hospitality' +p256413 +tp256414 +a(g256411 +g256413 +S'of' +p256415 +tp256416 +a(g256413 +g256415 +S'a' +p256417 +tp256418 +a(g256415 +g256417 +S'sumptuous' +p256419 +tp256420 +a(g256417 +g256419 +S'feast.' +p256421 +tp256422 +a(g256419 +g256421 +S'yet' +p256423 +tp256424 +a(g256421 +g256423 +S'platters' +p256425 +tp256426 +a(g256423 +g256425 +S'and' +p256427 +tp256428 +a(g256425 +g256427 +S'knives' +p256429 +tp256430 +a(g256427 +g256429 +S'teeter' +p256431 +tp256432 +a(g256429 +g256431 +S'precariously' +p256433 +tp256434 +a(g256431 +g256433 +S'over' +p256435 +tp256436 +a(g256433 +g256435 +S'the' +p256437 +tp256438 +a(g256435 +g256437 +S"table's" +p256439 +tp256440 +a(g256437 +g256439 +S'edge,' +p256441 +tp256442 +a(g256439 +g256441 +S'while' +p256443 +tp256444 +a(g256441 +g256443 +S'goblets' +p256445 +tp256446 +a(g256443 +g256445 +S'and' +p256447 +tp256448 +a(g256445 +g256447 +S'compotes' +p256449 +tp256450 +a(g256447 +g256449 +S'already' +p256451 +tp256452 +a(g256449 +g256451 +S'have' +p256453 +tp256454 +a(g256451 +g256453 +S'toppled.' +p256455 +tp256456 +a(g256453 +g256455 +S'perishable' +p256457 +tp256458 +a(g256455 +g256457 +S'or' +p256459 +tp256460 +a(g256457 +g256459 +S'expended' +p256461 +tp256462 +a(g256459 +g256461 +S'items' +p256463 +tp256464 +a(g256461 +g256463 +S'symbolize' +p256465 +tp256466 +a(g256463 +g256465 +S"life's" +p256467 +tp256468 +a(g256465 +g256467 +S'transience:' +p256469 +tp256470 +a(g256467 +g256469 +S'a' +p256471 +tp256472 +a(g256469 +g256471 +S'snuffed–out' +p256473 +tp256474 +a(g256471 +g256473 +S'candle,' +p256475 +tp256476 +a(g256473 +g256475 +S'spilled' +p256477 +tp256478 +a(g256475 +g256477 +S'olives,' +p256479 +tp256480 +a(g256477 +g256479 +S'half–eaten' +p256481 +tp256482 +a(g256479 +g256481 +S'minced' +p256483 +tp256484 +a(g256481 +g256483 +S'pie,' +p256485 +tp256486 +a(g256483 +g256485 +S'and' +p256487 +tp256488 +a(g256485 +g256487 +S'a' +p256489 +tp256490 +a(g256487 +g256489 +S'lemon,' +p256491 +tp256492 +a(g256489 +g256491 +S'only' +p256493 +tp256494 +a(g256491 +g256493 +S'half–peeled.' +p256495 +tp256496 +a(g256493 +g256495 +S'from' +p256497 +tp256498 +a(g256495 +g256497 +S'the' +p256499 +tp256500 +a(g256497 +g256499 +S'1620s' +p256501 +tp256502 +a(g256499 +g256501 +S'to' +p256503 +tp256504 +a(g256501 +g256503 +S'the' +p256505 +tp256506 +a(g256503 +g256505 +S'late' +p256507 +tp256508 +a(g256505 +g256507 +S'1640s,' +p256509 +tp256510 +a(g256507 +g256509 +S'dutch' +p256511 +tp256512 +a(g256509 +g256511 +S'artists' +p256513 +tp256514 +a(g256511 +g256513 +S'preferred' +p256515 +tp256516 +a(g256513 +g256515 +S'monochromatic' +p256517 +tp256518 +a(g256515 +g256517 +S'tones' +p256519 +tp256520 +a(g256517 +g256519 +S'for' +p256521 +tp256522 +a(g256519 +g256521 +S'their' +p256523 +tp256524 +a(g256521 +g256523 +S'still' +p256525 +tp256526 +a(g256523 +g256525 +S'lifes' +p256527 +tp256528 +a(g256525 +g256527 +S'and' +p256529 +tp256530 +a(g256527 +g256529 +S'landscapes.' +p256531 +tp256532 +a(g256529 +g256531 +S'heda' +p256533 +tp256534 +a(g256531 +g256533 +S'was' +p256535 +tp256536 +a(g256533 +g256535 +S'a' +p256537 +tp256538 +a(g256535 +g256537 +S'master' +p256539 +tp256540 +a(g256537 +g256539 +S'of' +p256541 +tp256542 +a(g256539 +g256541 +S'such' +p256543 +tp256544 +a(g256541 +g256543 +S'cool' +p256545 +tp256546 +a(g256543 +g256545 +S'gray' +p256547 +tp256548 +a(g256545 +g256547 +S'or' +p256549 +tp256550 +a(g256547 +g256549 +S'warm' +p256551 +tp256552 +a(g256549 +g256551 +S'tan' +p256553 +tp256554 +a(g256551 +g256553 +S'color' +p256555 +tp256556 +a(g256553 +g256555 +S'schemes.' +p256557 +tp256558 +a(g256555 +g256557 +S'here,' +p256559 +tp256560 +a(g256557 +g256559 +S'the' +p256561 +tp256562 +a(g256559 +g256561 +S'gold,' +p256563 +tp256564 +a(g256561 +g256563 +S'silver,' +p256565 +tp256566 +a(g256563 +g256565 +S'pewter,' +p256567 +tp256568 +a(g256565 +g256567 +S'and' +p256569 +tp256570 +a(g256567 +g256569 +S'venetian' +p256571 +tp256572 +a(g256569 +g256571 +S'glass' +p256573 +tp256574 +a(g256571 +g256573 +S'play' +p256575 +tp256576 +a(g256573 +g256575 +S'against' +p256577 +tp256578 +a(g256575 +g256577 +S'a' +p256579 +tp256580 +a(g256577 +g256579 +S'neutral' +p256581 +tp256582 +a(g256579 +g256581 +S'setting' +p256583 +tp256584 +a(g256581 +g256583 +S'and' +p256585 +tp256586 +a(g256583 +g256585 +S'a' +p256587 +tp256588 +a(g256585 +g256587 +S'white' +p256589 +tp256590 +a(g256587 +g256589 +S'tablecloth.' +p256591 +tp256592 +a(g256589 +g256591 +S'somewhat' +p256593 +tp256594 +a(g256591 +g256593 +S'later' +p256595 +tp256596 +a(g256593 +g256595 +S'in' +p256597 +tp256598 +a(g256595 +g256597 +S'the' +p256599 +tp256600 +a(g256597 +g256599 +S'mid–1600s,' +p256601 +tp256602 +a(g256599 +g256601 +S'brighter' +p256603 +tp256604 +a(g256601 +g256603 +S'colors' +p256605 +tp256606 +a(g256603 +g256605 +S'would' +p256607 +tp256608 +a(g256605 +g256607 +S'characterize' +p256609 +tp256610 +a(g256607 +g256609 +S'the' +p256611 +tp256612 +a(g256609 +g256611 +S'classical' +p256613 +tp256614 +a(g256611 +g256613 +S'period' +p256615 +tp256616 +a(g256613 +g256615 +S'of' +p256617 +tp256618 +a(g256615 +g256617 +S'dutch' +p256619 +tp256620 +a(g256617 +g256619 +S'painting.' +p256621 +tp256622 +a(g256619 +g256621 +S'a' +p256623 +tp256624 +a(g256621 +g256623 +S'specialist' +p256625 +tp256626 +a(g256623 +g256625 +S'in' +p256627 +tp256628 +a(g256625 +g256627 +S'banquet' +p256629 +tp256630 +a(g256627 +g256629 +S'still' +p256631 +tp256632 +a(g256629 +g256631 +S'lifes,' +p256633 +tp256634 +a(g256631 +g256633 +S'heda' +p256635 +tp256636 +a(g256633 +g256635 +S'also' +p256637 +tp256638 +a(g256635 +g256637 +S'painted' +p256639 +tp256640 +a(g256637 +g256639 +S'"breakfast' +p256641 +tp256642 +a(g256639 +g256641 +S'pieces"' +p256643 +tp256644 +a(g256641 +g256643 +S'and,' +p256645 +tp256646 +a(g256643 +g256645 +S'as' +p256647 +tp256648 +a(g256645 +g256647 +S'a' +p256649 +tp256650 +a(g256647 +g256649 +S'writer' +p256651 +tp256652 +a(g256649 +g256651 +S'in' +p256653 +tp256654 +a(g256651 +g256653 +S'1648' +p256655 +tp256656 +a(g256653 +g256655 +S'noted,' +p256657 +tp256658 +a(g256655 +g256657 +S'"fruit,' +p256659 +tp256660 +a(g256657 +g256659 +S'and' +p256661 +tp256662 +a(g256659 +g256661 +S'all' +p256663 +tp256664 +a(g256661 +g256663 +S'kinds' +p256665 +tp256666 +a(g256663 +g256665 +S'of' +p256667 +tp256668 +a(g256665 +g256667 +S'knick–knacks."' +p256669 +tp256670 +a(g256667 +g256669 +S'willem' +p256671 +tp256672 +a(g256669 +g256671 +S'claesz' +p256673 +tp256674 +a(g256671 +g256673 +S'heda' +p256675 +tp256676 +a(g256673 +g256675 +S'taught' +p256677 +tp256678 +a(g256675 +g256677 +S'several' +p256679 +tp256680 +a(g256677 +g256679 +S'apprentices' +p256681 +tp256682 +a(g256679 +g256681 +S'including' +p256683 +tp256684 +a(g256681 +g256683 +S'his' +p256685 +tp256686 +a(g256683 +g256685 +S'son,' +p256687 +tp256688 +a(g256685 +g256687 +S'gerrit' +p256689 +tp256690 +a(g256687 +g256689 +S'willemsz' +p256691 +tp256692 +a(g256689 +g256691 +S'heda' +p256693 +tp256694 +a(g256691 +g256693 +S'(the' +p256695 +tp256696 +a(g256693 +g256695 +S'sz' +p256697 +tp256698 +a(g256695 +g256697 +S'at' +p256699 +tp256700 +a(g256697 +g256699 +S'the' +p256701 +tp256702 +a(g256699 +g256701 +S'end' +p256703 +tp256704 +a(g256701 +g256703 +S'of' +p256705 +tp256706 +a(g256703 +g256705 +S'many' +p256707 +tp256708 +a(g256705 +g256707 +S'dutch' +p256709 +tp256710 +a(g256707 +g256709 +S'names' +p256711 +tp256712 +a(g256709 +g256711 +S'is' +p256713 +tp256714 +a(g256711 +g256713 +S'an' +p256715 +tp256716 +a(g256713 +g256715 +S'abbreviation' +p256717 +tp256718 +a(g256715 +g256717 +S'for' +p256719 +tp256720 +a(g256717 +g256719 +S'szoon,' +p256721 +tp256722 +a(g256719 +g256721 +S'meaning' +p256723 +tp256724 +a(g256721 +g256723 +S'"son' +p256725 +tp256726 +a(g256723 +g256725 +S'of").' +p256727 +tp256728 +a(g256725 +g256727 +S"gerrit's" +p256729 +tp256730 +a(g256727 +g256729 +S'several' +p256731 +tp256732 +a(g256729 +g256731 +S'times' +p256733 +tp256734 +a(g256731 +g256733 +S'throughout' +p256735 +tp256736 +a(g256733 +g256735 +S'his' +p256737 +tp256738 +a(g256735 +g256737 +S'career,' +p256739 +tp256740 +a(g256737 +g256739 +S'richard' +p256741 +tp256742 +a(g256739 +g256741 +S'diebenkorn' +p256743 +tp256744 +a(g256741 +g256743 +S'shifted' +p256745 +tp256746 +a(g256743 +g256745 +S'between' +p256747 +tp256748 +a(g256745 +g256747 +S'abstract' +p256749 +tp256750 +a(g256747 +g256749 +S'and' +p256751 +tp256752 +a(g256749 +g256751 +S'representational' +p256753 +tp256754 +a(g256751 +g256753 +S'modes—each' +p256755 +tp256756 +a(g256753 +g256755 +S'critical' +p256757 +tp256758 +a(g256755 +g256757 +S'to' +p256759 +tp256760 +a(g256757 +g256759 +S'his' +p256761 +tp256762 +a(g256759 +g256761 +S'work.' +p256763 +tp256764 +a(g256761 +g256763 +S'in' +p256765 +tp256766 +a(g256763 +g256765 +S'1983' +p256767 +tp256768 +a(g256765 +g256767 +S'an' +p256769 +tp256770 +a(g256767 +g256769 +S'interviewer' +p256771 +tp256772 +a(g256769 +g256771 +S'remarked' +p256773 +tp256774 +a(g256771 +g256773 +S'to' +p256775 +tp256776 +a(g256773 +g256775 +S'diebenkorn' +p256777 +tp256778 +a(g256775 +g256777 +S'of' +p256779 +tp256780 +a(g256777 +g256779 +S'his' +p256781 +tp256782 +a(g256779 +g256781 +S'"capacity' +p256783 +tp256784 +a(g256781 +g256783 +S'to' +p256785 +tp256786 +a(g256783 +g256785 +S'move' +p256787 +tp256788 +a(g256785 +g256787 +S'back' +p256789 +tp256790 +a(g256787 +g256789 +S'and' +p256791 +tp256792 +a(g256789 +g256791 +S'forth' +p256793 +tp256794 +a(g256791 +g256793 +S'between' +p256795 +tp256796 +a(g256793 +g256795 +S'figuration' +p256797 +tp256798 +a(g256795 +g256797 +S'and' +p256799 +tp256800 +a(g256797 +g256799 +S'abstraction."' +p256801 +tp256802 +a(g256799 +g256801 +S'such' +p256803 +tp256804 +a(g256801 +g256803 +S'a' +p256805 +tp256806 +a(g256803 +g256805 +S'description,' +p256807 +tp256808 +a(g256805 +g256807 +S'the' +p256809 +tp256810 +a(g256807 +g256809 +S'artist' +p256811 +tp256812 +a(g256809 +g256811 +S'replied,' +p256813 +tp256814 +a(g256811 +g256813 +S'"makes' +p256815 +tp256816 +a(g256813 +g256815 +S'it' +p256817 +tp256818 +a(g256815 +g256817 +S'sound' +p256819 +tp256820 +a(g256817 +g256819 +S'as' +p256821 +tp256822 +a(g256819 +g256821 +S'though' +p256823 +tp256824 +a(g256821 +g256823 +S"'i" +p256825 +tp256826 +a(g256823 +g256825 +S'know' +p256827 +tp256828 +a(g256825 +g256827 +S'how' +p256829 +tp256830 +a(g256827 +g256829 +S'to' +p256831 +tp256832 +a(g256829 +g256831 +S'do' +p256833 +tp256834 +a(g256831 +g256833 +S"it'" +p256835 +tp256836 +a(g256833 +g256835 +S'and' +p256837 +tp256838 +a(g256835 +g256837 +S'this' +p256839 +tp256840 +a(g256837 +g256839 +S'is' +p256841 +tp256842 +a(g256839 +g256841 +S'very' +p256843 +tp256844 +a(g256841 +g256843 +S'far' +p256845 +tp256846 +a(g256843 +g256845 +S'from' +p256847 +tp256848 +a(g256845 +g256847 +S'the' +p256849 +tp256850 +a(g256847 +g256849 +S'case."' +p256851 +tp256852 +a(g256849 +g256851 +S'rather' +p256853 +tp256854 +a(g256851 +g256853 +S'he' +p256855 +tp256856 +a(g256853 +g256855 +S'proceeded' +p256857 +tp256858 +a(g256855 +g256857 +S'with' +p256859 +tp256860 +a(g256857 +g256859 +S'"the' +p256861 +tp256862 +a(g256859 +g256861 +S'utmost' +p256863 +tp256864 +a(g256861 +g256863 +S'trepidation' +p256865 +tp256866 +a(g256863 +g256865 +S'and' +p256867 +tp256868 +a(g256865 +g256867 +S'great' +p256869 +tp256870 +a(g256867 +g256869 +S'difficulty."' +p256871 +tp256872 +a(g256869 +g256871 +S'when' +p256873 +tp256874 +a(g256871 +g256873 +S'the' +p256875 +tp256876 +a(g256873 +g256875 +S'artist' +p256877 +tp256878 +a(g256875 +g256877 +S'shifted' +p256879 +tp256880 +a(g256877 +g256879 +S'from' +p256881 +tp256882 +a(g256879 +g256881 +S'one' +p256883 +tp256884 +a(g256881 +g256883 +S'idiom' +p256885 +tp256886 +a(g256883 +g256885 +S'to' +p256887 +tp256888 +a(g256885 +g256887 +S'the' +p256889 +tp256890 +a(g256887 +g256889 +S'other,' +p256891 +tp256892 +a(g256889 +g256891 +S'he' +p256893 +tp256894 +a(g256891 +g256893 +S'was' +p256895 +tp256896 +a(g256893 +g256895 +S'invariably' +p256897 +tp256898 +a(g256895 +g256897 +S'looking' +p256899 +tp256900 +a(g256897 +g256899 +S'for' +p256901 +tp256902 +a(g256899 +g256901 +S'a' +p256903 +tp256904 +a(g256901 +g256903 +S'new' +p256905 +tp256906 +a(g256903 +g256905 +S'challenge' +p256907 +tp256908 +a(g256905 +g256907 +S'or' +p256909 +tp256910 +a(g256907 +g256909 +S'for' +p256911 +tp256912 +a(g256909 +g256911 +S'the' +p256913 +tp256914 +a(g256911 +g256913 +S'next' +p256915 +tp256916 +a(g256913 +g256915 +S'step' +p256917 +tp256918 +a(g256915 +g256917 +S'in' +p256919 +tp256920 +a(g256917 +g256919 +S'the' +p256921 +tp256922 +a(g256919 +g256921 +S'formal' +p256923 +tp256924 +a(g256921 +g256923 +S'progression' +p256925 +tp256926 +a(g256923 +g256925 +S'of' +p256927 +tp256928 +a(g256925 +g256927 +S'his' +p256929 +tp256930 +a(g256927 +g256929 +S'work.' +p256931 +tp256932 +a(g256929 +g256931 +S'for' +p256933 +tp256934 +a(g256931 +g256933 +S'example,' +p256935 +tp256936 +a(g256933 +g256935 +S'after' +p256937 +tp256938 +a(g256935 +g256937 +S'diebenkorn' +p256939 +tp256940 +a(g256937 +g256939 +S'rose' +p256941 +tp256942 +a(g256939 +g256941 +S'to' +p256943 +tp256944 +a(g256941 +g256943 +S'acclaim' +p256945 +tp256946 +a(g256943 +g256945 +S'with' +p256947 +tp256948 +a(g256945 +g256947 +S'the' +p256949 +tp256950 +a(g256947 +g256949 +S'berkeley' +p256951 +tp256952 +a(g256949 +g256951 +S'paintings,' +p256953 +tp256954 +a(g256951 +g256953 +S'his' +p256955 +tp256956 +a(g256953 +g256955 +S'brilliant' +p256957 +tp256958 +a(g256955 +g256957 +S'series' +p256959 +tp256960 +a(g256957 +g256959 +S'of' +p256961 +tp256962 +a(g256959 +g256961 +S'abstract' +p256963 +tp256964 +a(g256961 +g256963 +S'landscapes' +p256965 +tp256966 +a(g256963 +g256965 +S'made' +p256967 +tp256968 +a(g256965 +g256967 +S'from' +p256969 +tp256970 +a(g256967 +g256969 +S'1953' +p256971 +tp256972 +a(g256969 +g256971 +S'to' +p256973 +tp256974 +a(g256971 +g256973 +S'1956,' +p256975 +tp256976 +a(g256973 +g256975 +S'the' +p256977 +tp256978 +a(g256975 +g256977 +S'artist' +p256979 +tp256980 +a(g256977 +g256979 +S'chose' +p256981 +tp256982 +a(g256979 +g256981 +S'the' +p256983 +tp256984 +a(g256981 +g256983 +S'subject' +p256985 +tp256986 +a(g256983 +g256985 +S'of' +p256987 +tp256988 +a(g256985 +g256987 +S'the' +p256989 +tp256990 +a(g256987 +g256989 +S'figure' +p256991 +tp256992 +a(g256989 +g256991 +S'to' +p256993 +tp256994 +a(g256991 +g256993 +S'provide' +p256995 +tp256996 +a(g256993 +g256995 +S'him' +p256997 +tp256998 +a(g256995 +g256997 +S'with' +p256999 +tp257000 +a(g256997 +g256999 +S'a' +p257001 +tp257002 +a(g256999 +g257001 +S'new' +p257003 +tp257004 +a(g257001 +g257003 +S'set' +p257005 +tp257006 +a(g257003 +g257005 +S'of' +p257007 +tp257008 +a(g257005 +g257007 +S'pictorial' +p257009 +tp257010 +a(g257007 +g257009 +S'problems:' +p257011 +tp257012 +a(g257009 +g257011 +S'the' +p257013 +tp257014 +a(g257011 +g257013 +S'artist' +p257015 +tp257016 +a(g257013 +g257015 +S'developed' +p257017 +tp257018 +a(g257015 +g257017 +S'his' +p257019 +tp257020 +a(g257017 +g257019 +S'mature' +p257021 +tp257022 +a(g257019 +g257021 +S'figurative' +p257023 +tp257024 +a(g257021 +g257023 +S'works' +p257025 +tp257026 +a(g257023 +g257025 +S'from' +p257027 +tp257028 +a(g257025 +g257027 +S'1956' +p257029 +tp257030 +a(g257027 +g257029 +S'to' +p257031 +tp257032 +a(g257029 +g257031 +S'1967.' +p257033 +tp257034 +a(g257031 +g257033 +S'by' +p257035 +tp257036 +a(g257033 +g257035 +S'the' +p257037 +tp257038 +a(g257035 +g257037 +S'end' +p257039 +tp257040 +a(g257037 +g257039 +S'of' +p257041 +tp257042 +a(g257039 +g257041 +S'that' +p257043 +tp257044 +a(g257041 +g257043 +S'period,' +p257045 +tp257046 +a(g257043 +g257045 +S'diebenkorn' +p257047 +tp257048 +a(g257045 +g257047 +S'began' +p257049 +tp257050 +a(g257047 +g257049 +S'to' +p257051 +tp257052 +a(g257049 +g257051 +S'flatten' +p257053 +tp257054 +a(g257051 +g257053 +S'the' +p257055 +tp257056 +a(g257053 +g257055 +S'pictorial' +p257057 +tp257058 +a(g257055 +g257057 +S'space' +p257059 +tp257060 +a(g257057 +g257059 +S'in' +p257061 +tp257062 +a(g257059 +g257061 +S'his' +p257063 +tp257064 +a(g257061 +g257063 +S'work,' +p257065 +tp257066 +a(g257063 +g257065 +S'a' +p257067 +tp257068 +a(g257065 +g257067 +S'direction' +p257069 +tp257070 +a(g257067 +g257069 +S'that' +p257071 +tp257072 +a(g257069 +g257071 +S'eventually' +p257073 +tp257074 +a(g257071 +g257073 +S'led' +p257075 +tp257076 +a(g257073 +g257075 +S'back' +p257077 +tp257078 +a(g257075 +g257077 +S'to' +p257079 +tp257080 +a(g257077 +g257079 +S'abstraction' +p257081 +tp257082 +a(g257079 +g257081 +S'in' +p257083 +tp257084 +a(g257081 +g257083 +S'the' +p257085 +tp257086 +a(g257083 +g257085 +S'windowlike' +p257087 +tp257088 +a(g257085 +g257087 +S'apertures' +p257089 +tp257090 +a(g257087 +g257089 +S'of' +p257091 +tp257092 +a(g257089 +g257091 +S'the' +p257093 +tp257094 +a(g257091 +g257093 +S'ocean' +p257095 +tp257096 +a(g257093 +g257095 +S'park' +p257097 +tp257098 +a(g257095 +g257097 +S'series.' +p257099 +tp257100 +a(g257097 +g257099 +S'despite' +p257101 +tp257102 +a(g257099 +g257101 +S'these' +p257103 +tp257104 +a(g257101 +g257103 +S'shifts' +p257105 +tp257106 +a(g257103 +g257105 +S'from' +p257107 +tp257108 +a(g257105 +g257107 +S'representation' +p257109 +tp257110 +a(g257107 +g257109 +S'to' +p257111 +tp257112 +a(g257109 +g257111 +S'abstraction,' +p257113 +tp257114 +a(g257111 +g257113 +S'diebenkorn' +p257115 +tp257116 +a(g257113 +g257115 +S'continued' +p257117 +tp257118 +a(g257115 +g257117 +S'to' +p257119 +tp257120 +a(g257117 +g257119 +S'work' +p257121 +tp257122 +a(g257119 +g257121 +S'from' +p257123 +tp257124 +a(g257121 +g257123 +S'the' +p257125 +tp257126 +a(g257123 +g257125 +S'figure' +p257127 +tp257128 +a(g257125 +g257127 +S'throughout' +p257129 +tp257130 +a(g257127 +g257129 +S'his' +p257131 +tp257132 +a(g257129 +g257131 +S'career,' +p257133 +tp257134 +a(g257131 +g257133 +S'often' +p257135 +tp257136 +a(g257133 +g257135 +S'using' +p257137 +tp257138 +a(g257135 +g257137 +S'family' +p257139 +tp257140 +a(g257137 +g257139 +S'members' +p257141 +tp257142 +a(g257139 +g257141 +S'as' +p257143 +tp257144 +a(g257141 +g257143 +S'models.' +p257145 +tp257146 +a(g257143 +g257145 +S'seated' +p257147 +tp257148 +a(g257145 +g257147 +S'figure' +p257149 +tp257150 +a(g257147 +g257149 +S'with' +p257151 +tp257152 +a(g257149 +g257151 +S'hat' +p257153 +tp257154 +a(g257151 +g257153 +S"diebenkorn's" +p257155 +tp257156 +a(g257153 +g257155 +S'formal' +p257157 +tp257158 +a(g257155 +g257157 +S'concern' +p257159 +tp257160 +a(g257157 +g257159 +S'with' +p257161 +tp257162 +a(g257159 +g257161 +S'discrete' +p257163 +tp257164 +a(g257161 +g257163 +S'areas' +p257165 +tp257166 +a(g257163 +g257165 +S'of' +p257167 +tp257168 +a(g257165 +g257167 +S'color' +p257169 +tp257170 +a(g257167 +g257169 +S'and' +p257171 +tp257172 +a(g257169 +g257171 +S'a' +p257173 +tp257174 +a(g257171 +g257173 +S'simplified' +p257175 +tp257176 +a(g257173 +g257175 +S'composition' +p257177 +tp257178 +a(g257175 +g257177 +S'also' +p257179 +tp257180 +a(g257177 +g257179 +S'prefigures' +p257181 +tp257182 +a(g257179 +g257181 +S'the' +p257183 +tp257184 +a(g257181 +g257183 +S'abstract' +p257185 +tp257186 +a(g257183 +g257185 +S'mode' +p257187 +tp257188 +a(g257185 +g257187 +S'he' +p257189 +tp257190 +a(g257187 +g257189 +S'was' +p257191 +tp257192 +a(g257189 +g257191 +S'about' +p257193 +tp257194 +a(g257191 +g257193 +S'to' +p257195 +tp257196 +a(g257193 +g257195 +S'enter.' +p257197 +tp257198 +a(g257195 +g257197 +S'with' +p257199 +tp257200 +a(g257197 +g257199 +S'regard' +p257201 +tp257202 +a(g257199 +g257201 +S'to' +p257203 +tp257204 +a(g257201 +g257203 +S'composition' +p257205 +tp257206 +a(g257203 +g257205 +S'and' +p257207 +tp257208 +a(g257205 +g257207 +S'refinement' +p257209 +tp257210 +a(g257207 +g257209 +S'of' +p257211 +tp257212 +a(g257209 +g257211 +S'color,' +p257213 +tp257214 +a(g257211 +g257213 +S'the' +p257215 +tp257216 +a(g257213 +g257215 +S'painting' +p257217 +tp257218 +a(g257215 +g257217 +S'(text' +p257219 +tp257220 +a(g257217 +g257219 +S'by' +p257221 +tp257222 +a(g257219 +g257221 +S'molly' +p257223 +tp257224 +a(g257221 +g257223 +S'donovan,' +p257225 +tp257226 +a(g257223 +g257225 +S'published' +p257227 +tp257228 +a(g257225 +g257227 +S'in' +p257229 +tp257230 +a(g257227 +g257229 +S'the' +p257231 +tp257232 +a(g257229 +g257231 +S'national' +p257233 +tp257234 +a(g257231 +g257233 +S'gallery' +p257235 +tp257236 +a(g257233 +g257235 +S'of' +p257237 +tp257238 +a(g257235 +g257237 +S'art' +p257239 +tp257240 +a(g257237 +g257239 +S'exhibition' +p257241 +tp257242 +a(g257239 +g257241 +S'catalogue,' +p257243 +tp257244 +a(g257241 +g257243 +S'notes' +p257245 +tp257246 +a(g257243 +g257245 +S'the' +p257247 +tp257248 +a(g257245 +g257247 +S'splendid' +p257249 +tp257250 +a(g257247 +g257249 +S'image' +p257251 +tp257252 +a(g257249 +g257251 +S'of' +p257253 +tp257254 +a(g257251 +g257253 +S"rodin's" +p257255 +tp257256 +a(g257253 +g257255 +S'such' +p257257 +tp257258 +a(g257255 +g257257 +S'a' +p257259 +tp257260 +a(g257257 +g257259 +S'contemporaneous' +p257261 +tp257262 +a(g257259 +g257261 +S'interpretation' +p257263 +tp257264 +a(g257261 +g257263 +S'of' +p257265 +tp257266 +a(g257263 +g257265 +S'this' +p257267 +tp257268 +a(g257265 +g257267 +S'great' +p257269 +tp257270 +a(g257267 +g257269 +S'work,' +p257271 +tp257272 +a(g257269 +g257271 +S'as' +p257273 +tp257274 +a(g257271 +g257273 +S'the' +p257275 +tp257276 +a(g257273 +g257275 +S'idealized' +p257277 +tp257278 +a(g257275 +g257277 +S'self-image' +p257279 +tp257280 +a(g257277 +g257279 +S'of' +p257281 +tp257282 +a(g257279 +g257281 +S'a' +p257283 +tp257284 +a(g257281 +g257283 +S'warrior' +p257285 +tp257286 +a(g257283 +g257285 +S'of' +p257287 +tp257288 +a(g257285 +g257287 +S'a' +p257289 +tp257290 +a(g257287 +g257289 +S'new' +p257291 +tp257292 +a(g257289 +g257291 +S'age,' +p257293 +tp257294 +a(g257291 +g257293 +S'endows' +p257295 +tp257296 +a(g257293 +g257295 +S'with' +p257297 +tp257298 +a(g257295 +g257297 +S'a' +p257299 +tp257300 +a(g257297 +g257299 +S'particular' +p257301 +tp257302 +a(g257299 +g257301 +S'weight' +p257303 +tp257304 +a(g257301 +g257303 +S'its' +p257305 +tp257306 +a(g257303 +g257305 +S'insistently' +p257307 +tp257308 +a(g257305 +g257307 +S'realistic' +p257309 +tp257310 +a(g257307 +g257309 +S'style,' +p257311 +tp257312 +a(g257309 +g257311 +S'especially' +p257313 +tp257314 +a(g257311 +g257313 +S'given' +p257315 +tp257316 +a(g257313 +g257315 +S"rodin's" +p257317 +tp257318 +a(g257315 +g257317 +S'choice' +p257319 +tp257320 +a(g257317 +g257319 +S'of' +p257321 +tp257322 +a(g257319 +g257321 +S'model.' +p257323 +tp257324 +a(g257321 +g257323 +S'concerned' +p257325 +tp257326 +a(g257323 +g257325 +S'as' +p257327 +tp257328 +a(g257325 +g257327 +S'he' +p257329 +tp257330 +a(g257327 +g257329 +S'was' +p257331 +tp257332 +a(g257329 +g257331 +S'to' +p257333 +tp257334 +a(g257331 +g257333 +S'achieve' +p257335 +tp257336 +a(g257333 +g257335 +S'a' +p257337 +tp257338 +a(g257335 +g257337 +S'wholly' +p257339 +tp257340 +a(g257337 +g257339 +S'new' +p257341 +tp257342 +a(g257339 +g257341 +S'and' +p257343 +tp257344 +a(g257341 +g257343 +S'intensely' +p257345 +tp257346 +a(g257343 +g257345 +S'expressive' +p257347 +tp257348 +a(g257345 +g257347 +S'figural' +p257349 +tp257350 +a(g257347 +g257349 +S'form,' +p257351 +tp257352 +a(g257349 +g257351 +S'rodin' +p257353 +tp257354 +a(g257351 +g257353 +S'was' +p257355 +tp257356 +a(g257353 +g257355 +S'anxious' +p257357 +tp257358 +a(g257355 +g257357 +S'to' +p257359 +tp257360 +a(g257357 +g257359 +S'avoid' +p257361 +tp257362 +a(g257359 +g257361 +S'using' +p257363 +tp257364 +a(g257361 +g257363 +S'professional' +p257365 +tp257366 +a(g257363 +g257365 +S'models,' +p257367 +tp257368 +a(g257365 +g257367 +S'whose' +p257369 +tp257370 +a(g257367 +g257369 +S'stock' +p257371 +tp257372 +a(g257369 +g257371 +S'poses' +p257373 +tp257374 +a(g257371 +g257373 +S'he' +p257375 +tp257376 +a(g257373 +g257375 +S'felt' +p257377 +tp257378 +a(g257375 +g257377 +S'would' +p257379 +tp257380 +a(g257377 +g257379 +S'be' +p257381 +tp257382 +a(g257379 +g257381 +S'inimical' +p257383 +tp257384 +a(g257381 +g257383 +S'to' +p257385 +tp257386 +a(g257383 +g257385 +S'his' +p257387 +tp257388 +a(g257385 +g257387 +S'aspirations.' +p257389 +tp257390 +a(g257387 +g257389 +S'he' +p257391 +tp257392 +a(g257389 +g257391 +S'sought' +p257393 +tp257394 +a(g257391 +g257393 +S'out' +p257395 +tp257396 +a(g257393 +g257395 +S'a' +p257397 +tp257398 +a(g257395 +g257397 +S'soldier' +p257399 +tp257400 +a(g257397 +g257399 +S'as' +p257401 +tp257402 +a(g257399 +g257401 +S'an' +p257403 +tp257404 +a(g257401 +g257403 +S'exemplar' +p257405 +tp257406 +a(g257403 +g257405 +S'of' +p257407 +tp257408 +a(g257405 +g257407 +S'well-conditioned' +p257409 +tp257410 +a(g257407 +g257409 +S'male' +p257411 +tp257412 +a(g257409 +g257411 +S'anatomy.' +p257413 +tp257414 +a(g257411 +g257413 +S'this' +p257415 +tp257416 +a(g257413 +g257415 +S'hauntingly' +p257417 +tp257418 +a(g257415 +g257417 +S'veristic' +p257419 +tp257420 +a(g257417 +g257419 +S"sculpture's" +p257421 +tp257422 +a(g257419 +g257421 +S'intense' +p257423 +tp257424 +a(g257421 +g257423 +S'naturalism,' +p257425 +tp257426 +a(g257423 +g257425 +S'coupled' +p257427 +tp257428 +a(g257425 +g257427 +S'with' +p257429 +tp257430 +a(g257427 +g257429 +S'its' +p257431 +tp257432 +a(g257429 +g257431 +S'original' +p257433 +tp257434 +a(g257431 +g257433 +S'lack' +p257435 +tp257436 +a(g257433 +g257435 +S'of' +p257437 +tp257438 +a(g257435 +g257437 +S'an' +p257439 +tp257440 +a(g257437 +g257439 +S'allegorical' +p257441 +tp257442 +a(g257439 +g257441 +S'or' +p257443 +tp257444 +a(g257441 +g257443 +S'historicizing' +p257445 +tp257446 +a(g257443 +g257445 +S'title,' +p257447 +tp257448 +a(g257445 +g257447 +S'served' +p257449 +tp257450 +a(g257447 +g257449 +S'principally' +p257451 +tp257452 +a(g257449 +g257451 +S'to' +p257453 +tp257454 +a(g257451 +g257453 +S'baffle' +p257455 +tp257456 +a(g257453 +g257455 +S'and' +p257457 +tp257458 +a(g257455 +g257457 +S'offend' +p257459 +tp257460 +a(g257457 +g257459 +S'its' +p257461 +tp257462 +a(g257459 +g257461 +S'first' +p257463 +tp257464 +a(g257461 +g257463 +S'observers.' +p257465 +tp257466 +a(g257463 +g257465 +S'the' +p257467 +tp257468 +a(g257465 +g257467 +S'salon' +p257469 +tp257470 +a(g257467 +g257469 +S'reviewer' +p257471 +tp257472 +a(g257469 +g257471 +S'charles' +p257473 +tp257474 +a(g257471 +g257473 +S'tardieu' +p257475 +tp257476 +a(g257473 +g257475 +S'(rather' +p257477 +tp257478 +a(g257475 +g257477 +S'astonishingly)' +p257479 +tp257480 +a(g257477 +g257479 +S'called' +p257481 +tp257482 +a(g257479 +g257481 +S'it' +p257483 +tp257484 +a(g257481 +g257483 +S'a' +p257485 +tp257486 +a(g257483 +g257485 +S'"slavish' +p257487 +tp257488 +a(g257485 +g257487 +S'likeness' +p257489 +tp257490 +a(g257487 +g257489 +S'of' +p257491 +tp257492 +a(g257489 +g257491 +S'a' +p257493 +tp257494 +a(g257491 +g257493 +S'model' +p257495 +tp257496 +a(g257493 +g257495 +S'with' +p257497 +tp257498 +a(g257495 +g257497 +S'neither' +p257499 +tp257500 +a(g257497 +g257499 +S'character' +p257501 +tp257502 +a(g257499 +g257501 +S'nor' +p257503 +tp257504 +a(g257501 +g257503 +S'beauty,' +p257505 +tp257506 +a(g257503 +g257505 +S'an...exact' +p257507 +tp257508 +a(g257505 +g257507 +S'copy' +p257509 +tp257510 +a(g257507 +g257509 +S'of' +p257511 +tp257512 +a(g257509 +g257511 +S'a' +p257513 +tp257514 +a(g257511 +g257513 +S'most' +p257515 +tp257516 +a(g257513 +g257515 +S'commonplace' +p257517 +tp257518 +a(g257515 +g257517 +S'individual."' +p257519 +tp257520 +a(g257517 +g257519 +S'three' +p257521 +tp257522 +a(g257519 +g257521 +S'or' +p257523 +tp257524 +a(g257521 +g257523 +S'four' +p257525 +tp257526 +a(g257523 +g257525 +S'early' +p257527 +tp257528 +a(g257525 +g257527 +S'plaster' +p257529 +tp257530 +a(g257527 +g257529 +S'casts' +p257531 +tp257532 +a(g257529 +g257531 +S'of' +p257533 +tp257534 +a(g257531 +g257533 +S'this' +p257535 +tp257536 +a(g257533 +g257535 +S'entry' +p257537 +tp257538 +a(g257535 +g257537 +S'is' +p257539 +tp257540 +a(g257537 +g257539 +S'based' +p257541 +tp257542 +a(g257539 +g257541 +S'on' +p257543 +tp257544 +a(g257541 +g257543 +S'initial' +p257545 +tp257546 +a(g257543 +g257545 +S'acquisition' +p257547 +tp257548 +a(g257545 +g257547 +S'research' +p257549 +tp257550 +a(g257547 +g257549 +S'by' +p257551 +tp257552 +a(g257549 +g257551 +S'alison' +p257553 +tp257554 +a(g257551 +g257553 +S'luchs' +p257555 +tp257556 +a(g257553 +g257555 +S'and' +p257557 +tp257558 +a(g257555 +g257557 +S'the' +p257559 +tp257560 +a(g257557 +g257559 +S'writer,' +p257561 +tp257562 +a(g257559 +g257561 +S'as' +p257563 +tp257564 +a(g257561 +g257563 +S'well' +p257565 +tp257566 +a(g257563 +g257565 +S'as' +p257567 +tp257568 +a(g257565 +g257567 +S'(by' +p257569 +tp257570 +a(g257567 +g257569 +S'kind' +p257571 +tp257572 +a(g257569 +g257571 +S'permission)' +p257573 +tp257574 +a(g257571 +g257573 +S'on' +p257575 +tp257576 +a(g257573 +g257575 +S'ruth' +p257577 +tp257578 +a(g257575 +g257577 +S"butler's" +p257579 +tp257580 +a(g257577 +g257579 +S'essay' +p257581 +tp257582 +a(g257579 +g257581 +S'for' +p257583 +tp257584 +a(g257581 +g257583 +S'the' +p257585 +tp257586 +a(g257583 +g257585 +S'national' +p257587 +tp257588 +a(g257585 +g257587 +S"gallery's" +p257589 +tp257590 +a(g257587 +g257589 +S'systematic' +p257591 +tp257592 +a(g257589 +g257591 +S'catalogue' +p257593 +tp257594 +a(g257591 +g257593 +S'(text' +p257595 +tp257596 +a(g257593 +g257595 +S'by' +p257597 +tp257598 +a(g257595 +g257597 +S'douglas' +p257599 +tp257600 +a(g257597 +g257599 +S'lewis,' +p257601 +tp257602 +a(g257599 +g257601 +S'published' +p257603 +tp257604 +a(g257601 +g257603 +S'in' +p257605 +tp257606 +a(g257603 +g257605 +S'the' +p257607 +tp257608 +a(g257605 +g257607 +S'national' +p257609 +tp257610 +a(g257607 +g257609 +S'gallery' +p257611 +tp257612 +a(g257609 +g257611 +S'of' +p257613 +tp257614 +a(g257611 +g257613 +S'art' +p257615 +tp257616 +a(g257613 +g257615 +S'exhibition' +p257617 +tp257618 +a(g257615 +g257617 +S'catalogue,' +p257619 +tp257620 +a(g257617 +g257619 +S'notes' +p257621 +tp257622 +a(g257619 +g257621 +S'' +p257625 +tp257626 +a(g257623 +g257625 +S'' +p257629 +tp257630 +a(g257627 +g257629 +S'' +p257633 +tp257634 +a(g257631 +g257633 +S'' +p257637 +tp257638 +a(g257635 +g257637 +S'' +p257641 +tp257642 +a(g257639 +g257641 +S'' +p257645 +tp257646 +a(g257643 +g257645 +S'paul' +p257647 +tp257648 +a(g257645 +g257647 +S'strand' +p257649 +tp257650 +a(g257647 +g257649 +S'(1890–1976)' +p257651 +tp257652 +a(g257649 +g257651 +S'first' +p257653 +tp257654 +a(g257651 +g257653 +S'studied' +p257655 +tp257656 +a(g257653 +g257655 +S'photography' +p257657 +tp257658 +a(g257655 +g257657 +S'with' +p257659 +tp257660 +a(g257657 +g257659 +S'lewis' +p257661 +tp257662 +a(g257659 +g257661 +S'hine' +p257663 +tp257664 +a(g257661 +g257663 +S'(1874–1940),' +p257665 +tp257666 +a(g257663 +g257665 +S'a' +p257667 +tp257668 +a(g257665 +g257667 +S'teacher' +p257669 +tp257670 +a(g257667 +g257669 +S'at' +p257671 +tp257672 +a(g257669 +g257671 +S'the' +p257673 +tp257674 +a(g257671 +g257673 +S'ethical' +p257675 +tp257676 +a(g257673 +g257675 +S'culture' +p257677 +tp257678 +a(g257675 +g257677 +S'school' +p257679 +tp257680 +a(g257677 +g257679 +S'in' +p257681 +tp257682 +a(g257679 +g257681 +S'new' +p257683 +tp257684 +a(g257681 +g257683 +S'york' +p257685 +tp257686 +a(g257683 +g257685 +S'who' +p257687 +tp257688 +a(g257685 +g257687 +S'used' +p257689 +tp257690 +a(g257687 +g257689 +S'the' +p257691 +tp257692 +a(g257689 +g257691 +S'camera' +p257693 +tp257694 +a(g257691 +g257693 +S'as' +p257695 +tp257696 +a(g257693 +g257695 +S'a' +p257697 +tp257698 +a(g257695 +g257697 +S'means' +p257699 +tp257700 +a(g257697 +g257699 +S'to' +p257701 +tp257702 +a(g257699 +g257701 +S'document' +p257703 +tp257704 +a(g257701 +g257703 +S'the' +p257705 +tp257706 +a(g257703 +g257705 +S'disadvantaged' +p257707 +tp257708 +a(g257705 +g257707 +S'and' +p257709 +tp257710 +a(g257707 +g257709 +S'effect' +p257711 +tp257712 +a(g257709 +g257711 +S'social' +p257713 +tp257714 +a(g257711 +g257713 +S'reforms' +p257715 +tp257716 +a(g257713 +g257715 +S'on' +p257717 +tp257718 +a(g257715 +g257717 +S'their' +p257719 +tp257720 +a(g257717 +g257719 +S'behalf.' +p257721 +tp257722 +a(g257719 +g257721 +S"hine's" +p257723 +tp257724 +a(g257721 +g257723 +S'photographs' +p257725 +tp257726 +a(g257723 +g257725 +S'of' +p257727 +tp257728 +a(g257725 +g257727 +S'immigrants' +p257729 +tp257730 +a(g257727 +g257729 +S'arriving' +p257731 +tp257732 +a(g257729 +g257731 +S'at' +p257733 +tp257734 +a(g257731 +g257733 +S'ellis' +p257735 +tp257736 +a(g257733 +g257735 +S'island,' +p257737 +tp257738 +a(g257735 +g257737 +S'taken' +p257739 +tp257740 +a(g257737 +g257739 +S'in' +p257741 +tp257742 +a(g257739 +g257741 +S'1904,' +p257743 +tp257744 +a(g257741 +g257743 +S'included' +p257745 +tp257746 +a(g257743 +g257745 +S'sympathetic,' +p257747 +tp257748 +a(g257745 +g257747 +S'individuated' +p257749 +tp257750 +a(g257747 +g257749 +S'portraits' +p257751 +tp257752 +a(g257749 +g257751 +S'of' +p257753 +tp257754 +a(g257751 +g257753 +S'these' +p257755 +tp257756 +a(g257753 +g257755 +S'otherwise' +p257757 +tp257758 +a(g257755 +g257757 +S'anonymous' +p257759 +tp257760 +a(g257757 +g257759 +S'and' +p257761 +tp257762 +a(g257759 +g257761 +S'impoverished' +p257763 +tp257764 +a(g257761 +g257763 +S'newcomers' +p257765 +tp257766 +a(g257763 +g257765 +S'to' +p257767 +tp257768 +a(g257765 +g257767 +S'american' +p257769 +tp257770 +a(g257767 +g257769 +S'society.' +p257771 +tp257772 +a(g257769 +g257771 +S'strand' +p257773 +tp257774 +a(g257771 +g257773 +S'refined' +p257775 +tp257776 +a(g257773 +g257775 +S'his' +p257777 +tp257778 +a(g257775 +g257777 +S'own' +p257779 +tp257780 +a(g257777 +g257779 +S'photographic' +p257781 +tp257782 +a(g257779 +g257781 +S'technique' +p257783 +tp257784 +a(g257781 +g257783 +S'in' +p257785 +tp257786 +a(g257783 +g257785 +S'the' +p257787 +tp257788 +a(g257785 +g257787 +S'following' +p257789 +tp257790 +a(g257787 +g257789 +S'years,' +p257791 +tp257792 +a(g257789 +g257791 +S'taking' +p257793 +tp257794 +a(g257791 +g257793 +S'inspiration' +p257795 +tp257796 +a(g257793 +g257795 +S'from' +p257797 +tp257798 +a(g257795 +g257797 +S'the' +p257799 +tp257800 +a(g257797 +g257799 +S'exhibitions' +p257801 +tp257802 +a(g257799 +g257801 +S'at' +p257803 +tp257804 +a(g257801 +g257803 +S'alfred' +p257805 +tp257806 +a(g257803 +g257805 +S"stieglitz's" +p257807 +tp257808 +a(g257805 +g257807 +S'gallery' +p257809 +tp257810 +a(g257807 +g257809 +S'"291,"' +p257811 +tp257812 +a(g257809 +g257811 +S'and' +p257813 +tp257814 +a(g257811 +g257813 +S'from' +p257815 +tp257816 +a(g257813 +g257815 +S'1915' +p257817 +tp257818 +a(g257815 +g257817 +S'through' +p257819 +tp257820 +a(g257817 +g257819 +S'contact' +p257821 +tp257822 +a(g257819 +g257821 +S'with' +p257823 +tp257824 +a(g257821 +g257823 +S'stieglitz' +p257825 +tp257826 +a(g257823 +g257825 +S'himself.' +p257827 +tp257828 +a(g257825 +g257827 +S'in' +p257829 +tp257830 +a(g257827 +g257829 +S'1922' +p257831 +tp257832 +a(g257829 +g257831 +S'strand' +p257833 +tp257834 +a(g257831 +g257833 +S'married' +p257835 +tp257836 +a(g257833 +g257835 +S'rebecca' +p257837 +tp257838 +a(g257835 +g257837 +S'salsbury' +p257839 +tp257840 +a(g257837 +g257839 +S'(1891–1968),' +p257841 +tp257842 +a(g257839 +g257841 +S'a' +p257843 +tp257844 +a(g257841 +g257843 +S'self-taught' +p257845 +tp257846 +a(g257843 +g257845 +S'artist' +p257847 +tp257848 +a(g257845 +g257847 +S'who' +p257849 +tp257850 +a(g257847 +g257849 +S'was' +p257851 +tp257852 +a(g257849 +g257851 +S'friendly' +p257853 +tp257854 +a(g257851 +g257853 +S'with' +p257855 +tp257856 +a(g257853 +g257855 +S'stieglitz' +p257857 +tp257858 +a(g257855 +g257857 +S'as' +p257859 +tp257860 +a(g257857 +g257859 +S'well.' +p257861 +tp257862 +a(g257859 +g257861 +S'one' +p257863 +tp257864 +a(g257861 +g257863 +S'year' +p257865 +tp257866 +a(g257863 +g257865 +S'earlier,' +p257867 +tp257868 +a(g257865 +g257867 +S'stieglitz' +p257869 +tp257870 +a(g257867 +g257869 +S'had' +p257871 +tp257872 +a(g257869 +g257871 +S'exhibited' +p257873 +tp257874 +a(g257871 +g257873 +S'a' +p257875 +tp257876 +a(g257873 +g257875 +S'large' +p257877 +tp257878 +a(g257875 +g257877 +S'group' +p257879 +tp257880 +a(g257877 +g257879 +S'of' +p257881 +tp257882 +a(g257879 +g257881 +S'his' +p257883 +tp257884 +a(g257881 +g257883 +S'portrait' +p257885 +tp257886 +a(g257883 +g257885 +S'studies' +p257887 +tp257888 +a(g257885 +g257887 +S'of' +p257889 +tp257890 +a(g257887 +g257889 +S"o'keeffe," +p257891 +tp257892 +a(g257889 +g257891 +S'including' +p257893 +tp257894 +a(g257891 +g257893 +S'many' +p257895 +tp257896 +a(g257893 +g257895 +S'of' +p257897 +tp257898 +a(g257895 +g257897 +S'her' +p257899 +tp257900 +a(g257897 +g257899 +S'nude,' +p257901 +tp257902 +a(g257899 +g257901 +S'placing' +p257903 +tp257904 +a(g257901 +g257903 +S'them' +p257905 +tp257906 +a(g257903 +g257905 +S'boldly' +p257907 +tp257908 +a(g257905 +g257907 +S'in' +p257909 +tp257910 +a(g257907 +g257909 +S'counterpoint' +p257911 +tp257912 +a(g257909 +g257911 +S'to' +p257913 +tp257914 +a(g257911 +g257913 +S'his' +p257915 +tp257916 +a(g257913 +g257915 +S'more' +p257917 +tp257918 +a(g257915 +g257917 +S'conventional' +p257919 +tp257920 +a(g257917 +g257919 +S'portraits' +p257921 +tp257922 +a(g257919 +g257921 +S'of' +p257923 +tp257924 +a(g257921 +g257923 +S'male' +p257925 +tp257926 +a(g257923 +g257925 +S'friends' +p257927 +tp257928 +a(g257925 +g257927 +S'and' +p257929 +tp257930 +a(g257927 +g257929 +S'colleagues.' +p257931 +tp257932 +a(g257929 +g257931 +S'the' +p257933 +tp257934 +a(g257931 +g257933 +S'open' +p257935 +tp257936 +a(g257933 +g257935 +S'sensuality' +p257937 +tp257938 +a(g257935 +g257937 +S'of' +p257939 +tp257940 +a(g257937 +g257939 +S"stieglitz's" +p257941 +tp257942 +a(g257939 +g257941 +S'work' +p257943 +tp257944 +a(g257941 +g257943 +S'with' +p257945 +tp257946 +a(g257943 +g257945 +S"o'keeffe" +p257947 +tp257948 +a(g257945 +g257947 +S'clearly' +p257949 +tp257950 +a(g257947 +g257949 +S'influenced' +p257951 +tp257952 +a(g257949 +g257951 +S'strand,' +p257953 +tp257954 +a(g257951 +g257953 +S'who' +p257955 +tp257956 +a(g257953 +g257955 +S'used' +p257957 +tp257958 +a(g257955 +g257957 +S'his' +p257959 +tp257960 +a(g257957 +g257959 +S'habitual' +p257961 +tp257962 +a(g257959 +g257961 +S'emphasis' +p257963 +tp257964 +a(g257961 +g257963 +S'on' +p257965 +tp257966 +a(g257963 +g257965 +S'deep,' +p257967 +tp257968 +a(g257965 +g257967 +S'warm' +p257969 +tp257970 +a(g257967 +g257969 +S'print' +p257971 +tp257972 +a(g257969 +g257971 +S'tones' +p257973 +tp257974 +a(g257971 +g257973 +S'to' +p257975 +tp257976 +a(g257973 +g257975 +S'accentuate' +p257977 +tp257978 +a(g257975 +g257977 +S'an' +p257979 +tp257980 +a(g257977 +g257979 +S'impression' +p257981 +tp257982 +a(g257979 +g257981 +S'of' +p257983 +tp257984 +a(g257981 +g257983 +S'frank' +p257985 +tp257986 +a(g257983 +g257985 +S'intimacy' +p257987 +tp257988 +a(g257985 +g257987 +S'between' +p257989 +tp257990 +a(g257987 +g257989 +S'photographer' +p257991 +tp257992 +a(g257989 +g257991 +S'and' +p257993 +tp257994 +a(g257991 +g257993 +S'sitter.' +p257995 +tp257996 +a(g257993 +g257995 +S'the' +p257997 +tp257998 +a(g257995 +g257997 +S'most' +p257999 +tp258000 +a(g257997 +g257999 +S'important' +p258001 +tp258002 +a(g257999 +g258001 +S'renaissance' +p258003 +tp258004 +a(g258001 +g258003 +S'bronze' +p258005 +tp258006 +a(g258003 +g258005 +S'statue' +p258007 +tp258008 +a(g258005 +g258007 +S'to' +p258009 +tp258010 +a(g258007 +g258009 +S'enter' +p258011 +tp258012 +a(g258009 +g258011 +S'the' +p258013 +tp258014 +a(g258011 +g258013 +S'collections' +p258015 +tp258016 +a(g258013 +g258015 +S'since' +p258017 +tp258018 +a(g258015 +g258017 +S'the' +p258019 +tp258020 +a(g258017 +g258019 +S'founding' +p258021 +tp258022 +a(g258019 +g258021 +S'of' +p258023 +tp258024 +a(g258021 +g258023 +S'the' +p258025 +tp258026 +a(g258023 +g258025 +S'national' +p258027 +tp258028 +a(g258025 +g258027 +S'gallery' +p258029 +tp258030 +a(g258027 +g258029 +S'of' +p258031 +tp258032 +a(g258029 +g258031 +S'art,' +p258033 +tp258034 +a(g258031 +g258033 +S'the' +p258035 +tp258036 +a(g258033 +g258035 +S'lithe' +p258037 +tp258038 +a(g258035 +g258037 +S'venus,' +p258039 +tp258040 +a(g258037 +g258039 +S'wringing' +p258041 +tp258042 +a(g258039 +g258041 +S'water' +p258043 +tp258044 +a(g258041 +g258043 +S'from' +p258045 +tp258046 +a(g258043 +g258045 +S'her' +p258047 +tp258048 +a(g258045 +g258047 +S'long' +p258049 +tp258050 +a(g258047 +g258049 +S'hair,' +p258051 +tp258052 +a(g258049 +g258051 +S'is' +p258053 +tp258054 +a(g258051 +g258053 +S'a' +p258055 +tp258056 +a(g258053 +g258055 +S'close' +p258057 +tp258058 +a(g258055 +g258057 +S'variant' +p258059 +tp258060 +a(g258057 +g258059 +S'of' +p258061 +tp258062 +a(g258059 +g258061 +S"giambologna's" +p258063 +tp258064 +a(g258061 +g258063 +S'the' +p258065 +tp258066 +a(g258063 +g258065 +S'style' +p258067 +tp258068 +a(g258065 +g258067 +S'and' +p258069 +tp258070 +a(g258067 +g258069 +S'the' +p258071 +tp258072 +a(g258069 +g258071 +S'pronounced' +p258073 +tp258074 +a(g258071 +g258073 +S'links' +p258075 +tp258076 +a(g258073 +g258075 +S'with' +p258077 +tp258078 +a(g258075 +g258077 +S'works' +p258079 +tp258080 +a(g258077 +g258079 +S'in' +p258081 +tp258082 +a(g258079 +g258081 +S'florence' +p258083 +tp258084 +a(g258081 +g258083 +S'suggest' +p258085 +tp258086 +a(g258083 +g258085 +S'that' +p258087 +tp258088 +a(g258085 +g258087 +S'this' +p258089 +tp258090 +a(g258087 +g258089 +S'is' +p258091 +tp258092 +a(g258089 +g258091 +S'the' +p258093 +tp258094 +a(g258091 +g258093 +S'creation' +p258095 +tp258096 +a(g258093 +g258095 +S'of' +p258097 +tp258098 +a(g258095 +g258097 +S'an' +p258099 +tp258100 +a(g258097 +g258099 +S'artist' +p258101 +tp258102 +a(g258099 +g258101 +S'who' +p258103 +tp258104 +a(g258101 +g258103 +S'had' +p258105 +tp258106 +a(g258103 +g258105 +S'access' +p258107 +tp258108 +a(g258105 +g258107 +S'to' +p258109 +tp258110 +a(g258107 +g258109 +S"giambologna's" +p258111 +tp258112 +a(g258109 +g258111 +S'workshop,' +p258113 +tp258114 +a(g258111 +g258113 +S'and' +p258115 +tp258116 +a(g258113 +g258115 +S'thus' +p258117 +tp258118 +a(g258115 +g258117 +S'was' +p258119 +tp258120 +a(g258117 +g258119 +S'a' +p258121 +tp258122 +a(g258119 +g258121 +S'close' +p258123 +tp258124 +a(g258121 +g258123 +S'collaborator.' +p258125 +tp258126 +a(g258123 +g258125 +S'since' +p258127 +tp258128 +a(g258125 +g258127 +S'a' +p258129 +tp258130 +a(g258127 +g258129 +S'model' +p258131 +tp258132 +a(g258129 +g258131 +S'for' +p258133 +tp258134 +a(g258131 +g258133 +S'the' +p258135 +tp258136 +a(g258133 +g258135 +S'medici' +p258137 +tp258138 +a(g258135 +g258137 +S'(text' +p258139 +tp258140 +a(g258137 +g258139 +S'by' +p258141 +tp258142 +a(g258139 +g258141 +S'alison' +p258143 +tp258144 +a(g258141 +g258143 +S'luchs,' +p258145 +tp258146 +a(g258143 +g258145 +S'published' +p258147 +tp258148 +a(g258145 +g258147 +S'in' +p258149 +tp258150 +a(g258147 +g258149 +S'the' +p258151 +tp258152 +a(g258149 +g258151 +S'national' +p258153 +tp258154 +a(g258151 +g258153 +S'gallery' +p258155 +tp258156 +a(g258153 +g258155 +S'of' +p258157 +tp258158 +a(g258155 +g258157 +S'art' +p258159 +tp258160 +a(g258157 +g258159 +S'exhibition' +p258161 +tp258162 +a(g258159 +g258161 +S'catalogue,' +p258163 +tp258164 +a(g258161 +g258163 +S'christo' +p258165 +tp258166 +a(g258163 +g258165 +S'made' +p258167 +tp258168 +a(g258165 +g258167 +S'his' +p258169 +tp258170 +a(g258167 +g258169 +S'first' +p258171 +tp258172 +a(g258169 +g258171 +S'packages' +p258173 +tp258174 +a(g258171 +g258173 +S'and' +p258175 +tp258176 +a(g258173 +g258175 +S'wrapped' +p258177 +tp258178 +a(g258175 +g258177 +S'objects' +p258179 +tp258180 +a(g258177 +g258179 +S'as' +p258181 +tp258182 +a(g258179 +g258181 +S'part' +p258183 +tp258184 +a(g258181 +g258183 +S'of' +p258185 +tp258186 +a(g258183 +g258185 +S'a' +p258187 +tp258188 +a(g258185 +g258187 +S'group' +p258189 +tp258190 +a(g258187 +g258189 +S'called' +p258191 +tp258192 +a(g258189 +g258191 +S'the' +p258193 +tp258194 +a(g258191 +g258193 +S'critic' +p258195 +tp258196 +a(g258193 +g258195 +S'david' +p258197 +tp258198 +a(g258195 +g258197 +S'bourdon' +p258199 +tp258200 +a(g258197 +g258199 +S'called' +p258201 +tp258202 +a(g258199 +g258201 +S"christo's" +p258203 +tp258204 +a(g258201 +g258203 +S'work' +p258205 +tp258206 +a(g258203 +g258205 +S'"revelation' +p258207 +tp258208 +a(g258205 +g258207 +S'through' +p258209 +tp258210 +a(g258207 +g258209 +S'concealment",' +p258211 +tp258212 +a(g258209 +g258211 +S'by' +p258213 +tp258214 +a(g258211 +g258213 +S'extension,' +p258215 +tp258216 +a(g258213 +g258215 +S'the' +p258217 +tp258218 +a(g258215 +g258217 +S'fabric' +p258219 +tp258220 +a(g258217 +g258219 +S'also' +p258221 +tp258222 +a(g258219 +g258221 +S'alludes' +p258223 +tp258224 +a(g258221 +g258223 +S'to' +p258225 +tp258226 +a(g258223 +g258225 +S'the' +p258227 +tp258228 +a(g258225 +g258227 +S'human' +p258229 +tp258230 +a(g258227 +g258229 +S'body' +p258231 +tp258232 +a(g258229 +g258231 +S'and' +p258233 +tp258234 +a(g258231 +g258233 +S'to' +p258235 +tp258236 +a(g258233 +g258235 +S"christo's" +p258237 +tp258238 +a(g258235 +g258237 +S'anthropological' +p258239 +tp258240 +a(g258237 +g258239 +S'concerns.' +p258241 +tp258242 +a(g258239 +g258241 +S'in' +p258243 +tp258244 +a(g258241 +g258243 +S'discussing' +p258245 +tp258246 +a(g258243 +g258245 +S'the' +p258247 +tp258248 +a(g258245 +g258247 +S'medium,' +p258249 +tp258250 +a(g258247 +g258249 +S'the' +p258251 +tp258252 +a(g258249 +g258251 +S'artist' +p258253 +tp258254 +a(g258251 +g258253 +S'cited' +p258255 +tp258256 +a(g258253 +g258255 +S'a' +p258257 +tp258258 +a(g258255 +g258257 +S'more' +p258259 +tp258260 +a(g258257 +g258259 +S'contemporary' +p258261 +tp258262 +a(g258259 +g258261 +S'and' +p258263 +tp258264 +a(g258261 +g258263 +S'personal' +p258265 +tp258266 +a(g258263 +g258265 +S'referent' +p258267 +tp258268 +a(g258265 +g258267 +S'when' +p258269 +tp258270 +a(g258267 +g258269 +S'relating' +p258271 +tp258272 +a(g258269 +g258271 +S'the' +p258273 +tp258274 +a(g258271 +g258273 +S'use' +p258275 +tp258276 +a(g258273 +g258275 +S'of' +p258277 +tp258278 +a(g258275 +g258277 +S'fabric' +p258279 +tp258280 +a(g258277 +g258279 +S'to' +p258281 +tp258282 +a(g258279 +g258281 +S'his' +p258283 +tp258284 +a(g258281 +g258283 +S'marxist' +p258285 +tp258286 +a(g258283 +g258285 +S'background.' +p258287 +tp258288 +a(g258285 +g258287 +S'he' +p258289 +tp258290 +a(g258287 +g258289 +S'commented,' +p258291 +tp258292 +a(g258289 +g258291 +S'"friedrich' +p258293 +tp258294 +a(g258291 +g258293 +S'engels' +p258295 +tp258296 +a(g258293 +g258295 +S'said' +p258297 +tp258298 +a(g258295 +g258297 +S'that' +p258299 +tp258300 +a(g258297 +g258299 +S'fabric' +p258301 +tp258302 +a(g258299 +g258301 +S'made' +p258303 +tp258304 +a(g258301 +g258303 +S'[modern]' +p258305 +tp258306 +a(g258303 +g258305 +S'man' +p258307 +tp258308 +a(g258305 +g258307 +S'different' +p258309 +tp258310 +a(g258307 +g258309 +S'from' +p258311 +tp258312 +a(g258309 +g258311 +S'primitive' +p258313 +tp258314 +a(g258311 +g258313 +S'man...fabric' +p258315 +tp258316 +a(g258313 +g258315 +S'is' +p258317 +tp258318 +a(g258315 +g258317 +S'almost' +p258319 +tp258320 +a(g258317 +g258319 +S'like' +p258321 +tp258322 +a(g258319 +g258321 +S'an' +p258323 +tp258324 +a(g258321 +g258323 +S'extension' +p258325 +tp258326 +a(g258323 +g258325 +S'of' +p258327 +tp258328 +a(g258325 +g258327 +S'our' +p258329 +tp258330 +a(g258327 +g258329 +S'skin."' +p258331 +tp258332 +a(g258329 +g258331 +S'fabric' +p258333 +tp258334 +a(g258331 +g258333 +S'has' +p258335 +tp258336 +a(g258333 +g258335 +S'been' +p258337 +tp258338 +a(g258335 +g258337 +S'the' +p258339 +tp258340 +a(g258337 +g258339 +S'common' +p258341 +tp258342 +a(g258339 +g258341 +S'denominator' +p258343 +tp258344 +a(g258341 +g258343 +S'in' +p258345 +tp258346 +a(g258343 +g258345 +S'christo' +p258347 +tp258348 +a(g258345 +g258347 +S'and' +p258349 +tp258350 +a(g258347 +g258349 +S"jeanne-claude's" +p258351 +tp258352 +a(g258349 +g258351 +S'work' +p258353 +tp258354 +a(g258351 +g258353 +S'for' +p258355 +tp258356 +a(g258353 +g258355 +S'over' +p258357 +tp258358 +a(g258355 +g258357 +S'forty' +p258359 +tp258360 +a(g258357 +g258359 +S'years,' +p258361 +tp258362 +a(g258359 +g258361 +S'and' +p258363 +tp258364 +a(g258361 +g258363 +S'has' +p258365 +tp258366 +a(g258363 +g258365 +S'ranged' +p258367 +tp258368 +a(g258365 +g258367 +S'in' +p258369 +tp258370 +a(g258367 +g258369 +S'type' +p258371 +tp258372 +a(g258369 +g258371 +S'from' +p258373 +tp258374 +a(g258371 +g258373 +S'found' +p258375 +tp258376 +a(g258373 +g258375 +S'materials' +p258377 +tp258378 +a(g258375 +g258377 +S'to' +p258379 +tp258380 +a(g258377 +g258379 +S'custom' +p258381 +tp258382 +a(g258379 +g258381 +S'industrial' +p258383 +tp258384 +a(g258381 +g258383 +S'weaves.' +p258385 +tp258386 +a(g258383 +g258385 +S'the' +p258387 +tp258388 +a(g258385 +g258387 +S"artists'" +p258389 +tp258390 +a(g258387 +g258389 +S'formalist' +p258391 +tp258392 +a(g258389 +g258391 +S'concerns' +p258393 +tp258394 +a(g258391 +g258393 +S'embrace' +p258395 +tp258396 +a(g258393 +g258395 +S'the' +p258397 +tp258398 +a(g258395 +g258397 +S'properties' +p258399 +tp258400 +a(g258397 +g258399 +S'of' +p258401 +tp258402 +a(g258399 +g258401 +S'fabric:' +p258403 +tp258404 +a(g258401 +g258403 +S'its' +p258405 +tp258406 +a(g258403 +g258405 +S'folds,' +p258407 +tp258408 +a(g258405 +g258407 +S'pleats,' +p258409 +tp258410 +a(g258407 +g258409 +S'and' +p258411 +tp258412 +a(g258409 +g258411 +S'drape,' +p258413 +tp258414 +a(g258411 +g258413 +S'which' +p258415 +tp258416 +a(g258413 +g258415 +S'are' +p258417 +tp258418 +a(g258415 +g258417 +S'created' +p258419 +tp258420 +a(g258417 +g258419 +S'by' +p258421 +tp258422 +a(g258419 +g258421 +S'the' +p258423 +tp258424 +a(g258421 +g258423 +S'ropes' +p258425 +tp258426 +a(g258423 +g258425 +S'or' +p258427 +tp258428 +a(g258425 +g258427 +S'lines' +p258429 +tp258430 +a(g258427 +g258429 +S'that' +p258431 +tp258432 +a(g258429 +g258431 +S'bind' +p258433 +tp258434 +a(g258431 +g258433 +S'or' +p258435 +tp258436 +a(g258433 +g258435 +S'support' +p258437 +tp258438 +a(g258435 +g258437 +S'it.' +p258439 +tp258440 +a(g258437 +g258439 +S'beyond' +p258441 +tp258442 +a(g258439 +g258441 +S'these' +p258443 +tp258444 +a(g258441 +g258443 +S'physical' +p258445 +tp258446 +a(g258443 +g258445 +S'dimensions,' +p258447 +tp258448 +a(g258445 +g258447 +S'however,' +p258449 +tp258450 +a(g258447 +g258449 +S'christo' +p258451 +tp258452 +a(g258449 +g258451 +S'and' +p258453 +tp258454 +a(g258451 +g258453 +S"jeanne-claude's" +p258455 +tp258456 +a(g258453 +g258455 +S'work' +p258457 +tp258458 +a(g258455 +g258457 +S'infiltrates' +p258459 +tp258460 +a(g258457 +g258459 +S'the' +p258461 +tp258462 +a(g258459 +g258461 +S'social' +p258463 +tp258464 +a(g258461 +g258463 +S'fabric' +p258465 +tp258466 +a(g258463 +g258465 +S'of' +p258467 +tp258468 +a(g258465 +g258467 +S'the' +p258469 +tp258470 +a(g258467 +g258469 +S'time' +p258471 +tp258472 +a(g258469 +g258471 +S'and' +p258473 +tp258474 +a(g258471 +g258473 +S'place' +p258475 +tp258476 +a(g258473 +g258475 +S'where' +p258477 +tp258478 +a(g258475 +g258477 +S'it' +p258479 +tp258480 +a(g258477 +g258479 +S'is' +p258481 +tp258482 +a(g258479 +g258481 +S'created.' +p258483 +tp258484 +a(g258481 +g258483 +S'package' +p258485 +tp258486 +a(g258483 +g258485 +S'1974' +p258487 +tp258488 +a(g258485 +g258487 +S'in' +p258489 +tp258490 +a(g258487 +g258489 +S'making' +p258491 +tp258492 +a(g258489 +g258491 +S'(text' +p258493 +tp258494 +a(g258491 +g258493 +S'by' +p258495 +tp258496 +a(g258493 +g258495 +S'molly' +p258497 +tp258498 +a(g258495 +g258497 +S'donovan,' +p258499 +tp258500 +a(g258497 +g258499 +S'published' +p258501 +tp258502 +a(g258499 +g258501 +S'in' +p258503 +tp258504 +a(g258501 +g258503 +S'the' +p258505 +tp258506 +a(g258503 +g258505 +S'national' +p258507 +tp258508 +a(g258505 +g258507 +S'gallery' +p258509 +tp258510 +a(g258507 +g258509 +S'of' +p258511 +tp258512 +a(g258509 +g258511 +S'art' +p258513 +tp258514 +a(g258511 +g258513 +S'exhibition' +p258515 +tp258516 +a(g258513 +g258515 +S'catalogue,' +p258517 +tp258518 +a(g258515 +g258517 +S'notes' +p258519 +tp258520 +a(g258517 +g258519 +S'in' +p258521 +tp258522 +a(g258519 +g258521 +S'1883' +p258523 +tp258524 +a(g258521 +g258523 +S'monet' +p258525 +tp258526 +a(g258523 +g258525 +S'moved' +p258527 +tp258528 +a(g258525 +g258527 +S'his' +p258529 +tp258530 +a(g258527 +g258529 +S'household,' +p258531 +tp258532 +a(g258529 +g258531 +S'his' +p258533 +tp258534 +a(g258531 +g258533 +S'two' +p258535 +tp258536 +a(g258533 +g258535 +S'sons' +p258537 +tp258538 +a(g258535 +g258537 +S'along' +p258539 +tp258540 +a(g258537 +g258539 +S'with' +p258541 +tp258542 +a(g258539 +g258541 +S'alice' +p258543 +tp258544 +a(g258541 +g258543 +S'hoschedé' +p258545 +tp258546 +a(g258543 +g258545 +S'and' +p258547 +tp258548 +a(g258545 +g258547 +S'her' +p258549 +tp258550 +a(g258547 +g258549 +S'children,' +p258551 +tp258552 +a(g258549 +g258551 +S'to' +p258553 +tp258554 +a(g258551 +g258553 +S'the' +p258555 +tp258556 +a(g258553 +g258555 +S'rural' +p258557 +tp258558 +a(g258555 +g258557 +S'community' +p258559 +tp258560 +a(g258557 +g258559 +S'of' +p258561 +tp258562 +a(g258559 +g258561 +S'giverny,' +p258563 +tp258564 +a(g258561 +g258563 +S'where' +p258565 +tp258566 +a(g258563 +g258565 +S'he' +p258567 +tp258568 +a(g258565 +g258567 +S'leased' +p258569 +tp258570 +a(g258567 +g258569 +S'a' +p258571 +tp258572 +a(g258569 +g258571 +S'house' +p258573 +tp258574 +a(g258571 +g258573 +S'that' +p258575 +tp258576 +a(g258573 +g258575 +S'he' +p258577 +tp258578 +a(g258575 +g258577 +S'was' +p258579 +tp258580 +a(g258577 +g258579 +S'able' +p258581 +tp258582 +a(g258579 +g258581 +S'to' +p258583 +tp258584 +a(g258581 +g258583 +S'purchase' +p258585 +tp258586 +a(g258583 +g258585 +S'seven' +p258587 +tp258588 +a(g258585 +g258587 +S'years' +p258589 +tp258590 +a(g258587 +g258589 +S'later.' +p258591 +tp258592 +a(g258589 +g258591 +S'in' +p258593 +tp258594 +a(g258591 +g258593 +S'early' +p258595 +tp258596 +a(g258593 +g258595 +S'1893,' +p258597 +tp258598 +a(g258595 +g258597 +S'he' +p258599 +tp258600 +a(g258597 +g258599 +S'acquired' +p258601 +tp258602 +a(g258599 +g258601 +S'a' +p258603 +tp258604 +a(g258601 +g258603 +S'swampy' +p258605 +tp258606 +a(g258603 +g258605 +S'area' +p258607 +tp258608 +a(g258605 +g258607 +S'across' +p258609 +tp258610 +a(g258607 +g258609 +S'the' +p258611 +tp258612 +a(g258609 +g258611 +S'railroad' +p258613 +tp258614 +a(g258611 +g258613 +S'tracks' +p258615 +tp258616 +a(g258613 +g258615 +S'abutting' +p258617 +tp258618 +a(g258615 +g258617 +S'his' +p258619 +tp258620 +a(g258617 +g258619 +S'property' +p258621 +tp258622 +a(g258619 +g258621 +S'and' +p258623 +tp258624 +a(g258621 +g258623 +S'petitioned' +p258625 +tp258626 +a(g258623 +g258625 +S'the' +p258627 +tp258628 +a(g258625 +g258627 +S'village' +p258629 +tp258630 +a(g258627 +g258629 +S'council' +p258631 +tp258632 +a(g258629 +g258631 +S'for' +p258633 +tp258634 +a(g258631 +g258633 +S'permission' +p258635 +tp258636 +a(g258633 +g258635 +S'to' +p258637 +tp258638 +a(g258635 +g258637 +S'divert' +p258639 +tp258640 +a(g258637 +g258639 +S'a' +p258641 +tp258642 +a(g258639 +g258641 +S'small' +p258643 +tp258644 +a(g258641 +g258643 +S'stream' +p258645 +tp258646 +a(g258643 +g258645 +S'into' +p258647 +tp258648 +a(g258645 +g258647 +S'it.' +p258649 +tp258650 +a(g258647 +g258649 +S'but' +p258651 +tp258652 +a(g258649 +g258651 +S'it' +p258653 +tp258654 +a(g258651 +g258653 +S'was' +p258655 +tp258656 +a(g258653 +g258655 +S'only' +p258657 +tp258658 +a(g258655 +g258657 +S'toward' +p258659 +tp258660 +a(g258657 +g258659 +S'the' +p258661 +tp258662 +a(g258659 +g258661 +S'end' +p258663 +tp258664 +a(g258661 +g258663 +S'of' +p258665 +tp258666 +a(g258663 +g258665 +S'that' +p258667 +tp258668 +a(g258665 +g258667 +S'decade' +p258669 +tp258670 +a(g258667 +g258669 +S'that' +p258671 +tp258672 +a(g258669 +g258671 +S'he' +p258673 +tp258674 +a(g258671 +g258673 +S'turned' +p258675 +tp258676 +a(g258673 +g258675 +S'to' +p258677 +tp258678 +a(g258675 +g258677 +S'the' +p258679 +tp258680 +a(g258677 +g258679 +S'garden' +p258681 +tp258682 +a(g258679 +g258681 +S'he' +p258683 +tp258684 +a(g258681 +g258683 +S'had' +p258685 +tp258686 +a(g258683 +g258685 +S'created' +p258687 +tp258688 +a(g258685 +g258687 +S'there' +p258689 +tp258690 +a(g258687 +g258689 +S'as' +p258691 +tp258692 +a(g258689 +g258691 +S'a' +p258693 +tp258694 +a(g258691 +g258693 +S'rich' +p258695 +tp258696 +a(g258693 +g258695 +S'source' +p258697 +tp258698 +a(g258695 +g258697 +S'of' +p258699 +tp258700 +a(g258697 +g258699 +S'artistic' +p258701 +tp258702 +a(g258699 +g258701 +S'inspiration.' +p258703 +tp258704 +a(g258701 +g258703 +S'in' +p258705 +tp258706 +a(g258703 +g258705 +S'1899,' +p258707 +tp258708 +a(g258705 +g258707 +S'monet' +p258709 +tp258710 +a(g258707 +g258709 +S'painted' +p258711 +tp258712 +a(g258709 +g258711 +S'12' +p258713 +tp258714 +a(g258711 +g258713 +S'works' +p258715 +tp258716 +a(g258713 +g258715 +S'from' +p258717 +tp258718 +a(g258715 +g258717 +S'a' +p258719 +tp258720 +a(g258717 +g258719 +S'single' +p258721 +tp258722 +a(g258719 +g258721 +S'vantage' +p258723 +tp258724 +a(g258721 +g258723 +S'point,' +p258725 +tp258726 +a(g258723 +g258725 +S'focusing' +p258727 +tp258728 +a(g258725 +g258727 +S'on' +p258729 +tp258730 +a(g258727 +g258729 +S'the' +p258731 +tp258732 +a(g258729 +g258731 +S'arching' +p258733 +tp258734 +a(g258731 +g258733 +S'blue–green' +p258735 +tp258736 +a(g258733 +g258735 +S'bridge' +p258737 +tp258738 +a(g258735 +g258737 +S'and' +p258739 +tp258740 +a(g258737 +g258739 +S'the' +p258741 +tp258742 +a(g258739 +g258741 +S'microcosm' +p258743 +tp258744 +a(g258741 +g258743 +S'of' +p258745 +tp258746 +a(g258743 +g258745 +S'his' +p258747 +tp258748 +a(g258745 +g258747 +S'water' +p258749 +tp258750 +a(g258747 +g258749 +S'garden.' +p258751 +tp258752 +a(g258749 +g258751 +S'among' +p258753 +tp258754 +a(g258751 +g258753 +S'the' +p258755 +tp258756 +a(g258753 +g258755 +S'12' +p258757 +tp258758 +a(g258755 +g258757 +S'works' +p258759 +tp258760 +a(g258757 +g258759 +S'was' +p258761 +tp258762 +a(g258759 +g258761 +S'the' +p258763 +tp258764 +a(g258761 +g258763 +S'national' +p258765 +tp258766 +a(g258763 +g258765 +S"gallery's" +p258767 +tp258768 +a(g258765 +g258767 +S'when' +p258769 +tp258770 +a(g258767 +g258769 +S'monet' +p258771 +tp258772 +a(g258769 +g258771 +S'exhibited' +p258773 +tp258774 +a(g258771 +g258773 +S'these' +p258775 +tp258776 +a(g258773 +g258775 +S'paintings' +p258777 +tp258778 +a(g258775 +g258777 +S'at' +p258779 +tp258780 +a(g258777 +g258779 +S"durand–ruel's" +p258781 +tp258782 +a(g258779 +g258781 +S'gallery' +p258783 +tp258784 +a(g258781 +g258783 +S'in' +p258785 +tp258786 +a(g258783 +g258785 +S'1900,' +p258787 +tp258788 +a(g258785 +g258787 +S'a' +p258789 +tp258790 +a(g258787 +g258789 +S'number' +p258791 +tp258792 +a(g258789 +g258791 +S'of' +p258793 +tp258794 +a(g258791 +g258793 +S'critics' +p258795 +tp258796 +a(g258793 +g258795 +S'mentioned' +p258797 +tp258798 +a(g258795 +g258797 +S'his' +p258799 +tp258800 +a(g258797 +g258799 +S'debt' +p258801 +tp258802 +a(g258799 +g258801 +S'to' +p258803 +tp258804 +a(g258801 +g258803 +S'japanese' +p258805 +tp258806 +a(g258803 +g258805 +S'art.' +p258807 +tp258808 +a(g258805 +g258807 +S'more' +p258809 +tp258810 +a(g258807 +g258809 +S'telling,' +p258811 +tp258812 +a(g258809 +g258811 +S'the' +p258813 +tp258814 +a(g258811 +g258813 +S'impenetrable' +p258815 +tp258816 +a(g258813 +g258815 +S'green' +p258817 +tp258818 +a(g258815 +g258817 +S'enclosure—heightened' +p258819 +tp258820 +a(g258817 +g258819 +S'in' +p258821 +tp258822 +a(g258819 +g258821 +S'the' +p258823 +tp258824 +a(g258821 +g258823 +S'national' +p258825 +tp258826 +a(g258823 +g258825 +S'gallery' +p258827 +tp258828 +a(g258825 +g258827 +S'painting' +p258829 +tp258830 +a(g258827 +g258829 +S'by' +p258831 +tp258832 +a(g258829 +g258831 +S'the' +p258833 +tp258834 +a(g258831 +g258833 +S'placement' +p258835 +tp258836 +a(g258833 +g258835 +S'of' +p258837 +tp258838 +a(g258835 +g258837 +S'the' +p258839 +tp258840 +a(g258837 +g258839 +S'top' +p258841 +tp258842 +a(g258839 +g258841 +S'of' +p258843 +tp258844 +a(g258841 +g258843 +S'the' +p258845 +tp258846 +a(g258843 +g258845 +S"bridge's" +p258847 +tp258848 +a(g258845 +g258847 +S'arch' +p258849 +tp258850 +a(g258847 +g258849 +S'just' +p258851 +tp258852 +a(g258849 +g258851 +S'below' +p258853 +tp258854 +a(g258851 +g258853 +S'the' +p258855 +tp258856 +a(g258853 +g258855 +S"painting's" +p258857 +tp258858 +a(g258855 +g258857 +S'top' +p258859 +tp258860 +a(g258857 +g258859 +S'edge—harkens' +p258861 +tp258862 +a(g258859 +g258861 +S'back' +p258863 +tp258864 +a(g258861 +g258863 +S'to' +p258865 +tp258866 +a(g258863 +g258865 +S'the' +p258867 +tp258868 +a(g258865 +g258867 +S'a' +p258869 +tp258870 +a(g258867 +g258869 +S'creation' +p258871 +tp258872 +a(g258869 +g258871 +S'of' +p258873 +tp258874 +a(g258871 +g258873 +S'supreme' +p258875 +tp258876 +a(g258873 +g258875 +S'refinement' +p258877 +tp258878 +a(g258875 +g258877 +S'as' +p258879 +tp258880 +a(g258877 +g258879 +S'well' +p258881 +tp258882 +a(g258879 +g258881 +S'as' +p258883 +tp258884 +a(g258881 +g258883 +S'dramatic' +p258885 +tp258886 +a(g258883 +g258885 +S'intensity,' +p258887 +tp258888 +a(g258885 +g258887 +S'this' +p258889 +tp258890 +a(g258887 +g258889 +S'saint' +p258891 +tp258892 +a(g258889 +g258891 +S'sebastian,' +p258893 +tp258894 +a(g258891 +g258893 +S'a' +p258895 +tp258896 +a(g258893 +g258895 +S'roman' +p258897 +tp258898 +a(g258895 +g258897 +S'soldier' +p258899 +tp258900 +a(g258897 +g258899 +S'martyred' +p258901 +tp258902 +a(g258899 +g258901 +S'as' +p258903 +tp258904 +a(g258901 +g258903 +S'a' +p258905 +tp258906 +a(g258903 +g258905 +S'christian,' +p258907 +tp258908 +a(g258905 +g258907 +S'appears' +p258909 +tp258910 +a(g258907 +g258909 +S'frequently' +p258911 +tp258912 +a(g258909 +g258911 +S'in' +p258913 +tp258914 +a(g258911 +g258913 +S'painting' +p258915 +tp258916 +a(g258913 +g258915 +S'and' +p258917 +tp258918 +a(g258915 +g258917 +S'sculpture' +p258919 +tp258920 +a(g258917 +g258919 +S'from' +p258921 +tp258922 +a(g258919 +g258921 +S'the' +p258923 +tp258924 +a(g258921 +g258923 +S'fifteenth' +p258925 +tp258926 +a(g258923 +g258925 +S'to' +p258927 +tp258928 +a(g258925 +g258927 +S'the' +p258929 +tp258930 +a(g258927 +g258929 +S'eighteenth' +p258931 +tp258932 +a(g258929 +g258931 +S'centuries.' +p258933 +tp258934 +a(g258931 +g258933 +S'according' +p258935 +tp258936 +a(g258933 +g258935 +S'to' +p258937 +tp258938 +a(g258935 +g258937 +S'legend,' +p258939 +tp258940 +a(g258937 +g258939 +S'he' +p258941 +tp258942 +a(g258939 +g258941 +S'was' +p258943 +tp258944 +a(g258941 +g258943 +S'bound' +p258945 +tp258946 +a(g258943 +g258945 +S'to' +p258947 +tp258948 +a(g258945 +g258947 +S'a' +p258949 +tp258950 +a(g258947 +g258949 +S'tree' +p258951 +tp258952 +a(g258949 +g258951 +S'and' +p258953 +tp258954 +a(g258951 +g258953 +S'shot' +p258955 +tp258956 +a(g258953 +g258955 +S'full' +p258957 +tp258958 +a(g258955 +g258957 +S'of' +p258959 +tp258960 +a(g258957 +g258959 +S'arrows' +p258961 +tp258962 +a(g258959 +g258961 +S'(an' +p258963 +tp258964 +a(g258961 +g258963 +S'ordeal' +p258965 +tp258966 +a(g258963 +g258965 +S'he' +p258967 +tp258968 +a(g258965 +g258967 +S'survived,' +p258969 +tp258970 +a(g258967 +g258969 +S'only' +p258971 +tp258972 +a(g258969 +g258971 +S'to' +p258973 +tp258974 +a(g258971 +g258973 +S'be' +p258975 +tp258976 +a(g258973 +g258975 +S'clubbed' +p258977 +tp258978 +a(g258975 +g258977 +S'to' +p258979 +tp258980 +a(g258977 +g258979 +S'death' +p258981 +tp258982 +a(g258979 +g258981 +S'later).' +p258983 +tp258984 +a(g258981 +g258983 +S'the' +p258985 +tp258986 +a(g258983 +g258985 +S'affliction' +p258987 +tp258988 +a(g258985 +g258987 +S'with' +p258989 +tp258990 +a(g258987 +g258989 +S'arrows' +p258991 +tp258992 +a(g258989 +g258991 +S'led' +p258993 +tp258994 +a(g258991 +g258993 +S'to' +p258995 +tp258996 +a(g258993 +g258995 +S'his' +p258997 +tp258998 +a(g258995 +g258997 +S'veneration' +p258999 +tp259000 +a(g258997 +g258999 +S'as' +p259001 +tp259002 +a(g258999 +g259001 +S'a' +p259003 +tp259004 +a(g259001 +g259003 +S'protector' +p259005 +tp259006 +a(g259003 +g259005 +S'against' +p259007 +tp259008 +a(g259005 +g259007 +S'the' +p259009 +tp259010 +a(g259007 +g259009 +S'comparable' +p259011 +tp259012 +a(g259009 +g259011 +S'agonies' +p259013 +tp259014 +a(g259011 +g259013 +S'of' +p259015 +tp259016 +a(g259013 +g259015 +S'the' +p259017 +tp259018 +a(g259015 +g259017 +S'plague,' +p259019 +tp259020 +a(g259017 +g259019 +S'but' +p259021 +tp259022 +a(g259019 +g259021 +S'his' +p259023 +tp259024 +a(g259021 +g259023 +S'story' +p259025 +tp259026 +a(g259023 +g259025 +S'also' +p259027 +tp259028 +a(g259025 +g259027 +S'allowed' +p259029 +tp259030 +a(g259027 +g259029 +S'artists' +p259031 +tp259032 +a(g259029 +g259031 +S'to' +p259033 +tp259034 +a(g259031 +g259033 +S'demonstrate' +p259035 +tp259036 +a(g259033 +g259035 +S'to' +p259037 +tp259038 +a(g259035 +g259037 +S'connoisseurs' +p259039 +tp259040 +a(g259037 +g259039 +S'their' +p259041 +tp259042 +a(g259039 +g259041 +S'ability' +p259043 +tp259044 +a(g259041 +g259043 +S'to' +p259045 +tp259046 +a(g259043 +g259045 +S'display' +p259047 +tp259048 +a(g259045 +g259047 +S'an' +p259049 +tp259050 +a(g259047 +g259049 +S'ideal' +p259051 +tp259052 +a(g259049 +g259051 +S'young' +p259053 +tp259054 +a(g259051 +g259053 +S'male' +p259055 +tp259056 +a(g259053 +g259055 +S'nude' +p259057 +tp259058 +a(g259055 +g259057 +S'in' +p259059 +tp259060 +a(g259057 +g259059 +S'a' +p259061 +tp259062 +a(g259059 +g259061 +S'pose' +p259063 +tp259064 +a(g259061 +g259063 +S'full' +p259065 +tp259066 +a(g259063 +g259065 +S'of' +p259067 +tp259068 +a(g259065 +g259067 +S'expressive' +p259069 +tp259070 +a(g259067 +g259069 +S'tension.' +p259071 +tp259072 +a(g259069 +g259071 +S'the' +p259073 +tp259074 +a(g259071 +g259073 +S'sculptor' +p259075 +tp259076 +a(g259073 +g259075 +S'of' +p259077 +tp259078 +a(g259075 +g259077 +S'this' +p259079 +tp259080 +a(g259077 +g259079 +S'version' +p259081 +tp259082 +a(g259079 +g259081 +S'was' +p259083 +tp259084 +a(g259081 +g259083 +S'evidently' +p259085 +tp259086 +a(g259083 +g259085 +S'familiar' +p259087 +tp259088 +a(g259085 +g259087 +S'with' +p259089 +tp259090 +a(g259087 +g259089 +S'the' +p259091 +tp259092 +a(g259089 +g259091 +S'pose' +p259093 +tp259094 +a(g259091 +g259093 +S'in' +p259095 +tp259096 +a(g259093 +g259095 +S'paintings' +p259097 +tp259098 +a(g259095 +g259097 +S'by' +p259099 +tp259100 +a(g259097 +g259099 +S'artists' +p259101 +tp259102 +a(g259099 +g259101 +S'such' +p259103 +tp259104 +a(g259101 +g259103 +S'as' +p259105 +tp259106 +a(g259103 +g259105 +S'hans' +p259107 +tp259108 +a(g259105 +g259107 +S'von' +p259109 +tp259110 +a(g259107 +g259109 +S'aachen' +p259111 +tp259112 +a(g259109 +g259111 +S'(1552' +p259113 +tp259114 +a(g259111 +g259113 +S'-' +p259115 +tp259116 +a(g259113 +g259115 +S'1615),' +p259117 +tp259118 +a(g259115 +g259117 +S'whose' +p259119 +tp259120 +a(g259117 +g259119 +S'the' +p259121 +tp259122 +a(g259119 +g259121 +S'sculptor' +p259123 +tp259124 +a(g259121 +g259123 +S'imagined' +p259125 +tp259126 +a(g259123 +g259125 +S'the' +p259127 +tp259128 +a(g259125 +g259127 +S'saint' +p259129 +tp259130 +a(g259127 +g259129 +S'with' +p259131 +tp259132 +a(g259129 +g259131 +S'a' +p259133 +tp259134 +a(g259131 +g259133 +S'short' +p259135 +tp259136 +a(g259133 +g259135 +S'but' +p259137 +tp259138 +a(g259135 +g259137 +S'strongly' +p259139 +tp259140 +a(g259137 +g259139 +S'articulated' +p259141 +tp259142 +a(g259139 +g259141 +S'torso,' +p259143 +tp259144 +a(g259141 +g259143 +S'muscular' +p259145 +tp259146 +a(g259143 +g259145 +S'shoulders,' +p259147 +tp259148 +a(g259145 +g259147 +S'expansive' +p259149 +tp259150 +a(g259147 +g259149 +S'rib' +p259151 +tp259152 +a(g259149 +g259151 +S'cage,' +p259153 +tp259154 +a(g259151 +g259153 +S'narrow' +p259155 +tp259156 +a(g259153 +g259155 +S'waist,' +p259157 +tp259158 +a(g259155 +g259157 +S'and' +p259159 +tp259160 +a(g259157 +g259159 +S'heavy' +p259161 +tp259162 +a(g259159 +g259161 +S'buttocks,' +p259163 +tp259164 +a(g259161 +g259163 +S'one' +p259165 +tp259166 +a(g259163 +g259165 +S'of' +p259167 +tp259168 +a(g259165 +g259167 +S'which' +p259169 +tp259170 +a(g259167 +g259169 +S'had' +p259171 +tp259172 +a(g259169 +g259171 +S'to' +p259173 +tp259174 +a(g259171 +g259173 +S'be' +p259175 +tp259176 +a(g259173 +g259175 +S'flattened' +p259177 +tp259178 +a(g259175 +g259177 +S'in' +p259179 +tp259180 +a(g259177 +g259179 +S'the' +p259181 +tp259182 +a(g259179 +g259181 +S'wax' +p259183 +tp259184 +a(g259181 +g259183 +S'model' +p259185 +tp259186 +a(g259183 +g259185 +S'to' +p259187 +tp259188 +a(g259185 +g259187 +S'permit' +p259189 +tp259190 +a(g259187 +g259189 +S'attachment' +p259191 +tp259192 +a(g259189 +g259191 +S'to' +p259193 +tp259194 +a(g259191 +g259193 +S'a' +p259195 +tp259196 +a(g259193 +g259195 +S'tree-shaped' +p259197 +tp259198 +a(g259195 +g259197 +S'support.' +p259199 +tp259200 +a(g259197 +g259199 +S'with' +p259201 +tp259202 +a(g259199 +g259201 +S'one' +p259203 +tp259204 +a(g259201 +g259203 +S'leg' +p259205 +tp259206 +a(g259203 +g259205 +S'bent' +p259207 +tp259208 +a(g259205 +g259207 +S'back,' +p259209 +tp259210 +a(g259207 +g259209 +S'and' +p259211 +tp259212 +a(g259209 +g259211 +S'the' +p259213 +tp259214 +a(g259211 +g259213 +S'foot' +p259215 +tp259216 +a(g259213 +g259215 +S'of' +p259217 +tp259218 +a(g259215 +g259217 +S'the' +p259219 +tp259220 +a(g259217 +g259219 +S'straight' +p259221 +tp259222 +a(g259219 +g259221 +S'leg' +p259223 +tp259224 +a(g259221 +g259223 +S'barely' +p259225 +tp259226 +a(g259223 +g259225 +S'grazing' +p259227 +tp259228 +a(g259225 +g259227 +S'the' +p259229 +tp259230 +a(g259227 +g259229 +S'ground,' +p259231 +tp259232 +a(g259229 +g259231 +S'the' +p259233 +tp259234 +a(g259231 +g259233 +S'figure' +p259235 +tp259236 +a(g259233 +g259235 +S'appears' +p259237 +tp259238 +a(g259235 +g259237 +S'in' +p259239 +tp259240 +a(g259237 +g259239 +S'almost' +p259241 +tp259242 +a(g259239 +g259241 +S'weightless' +p259243 +tp259244 +a(g259241 +g259243 +S'suspension.' +p259245 +tp259246 +a(g259243 +g259245 +S'his' +p259247 +tp259248 +a(g259245 +g259247 +S'face' +p259249 +tp259250 +a(g259247 +g259249 +S'turns' +p259251 +tp259252 +a(g259249 +g259251 +S'upward' +p259253 +tp259254 +a(g259251 +g259253 +S'and' +p259255 +tp259256 +a(g259253 +g259255 +S'his' +p259257 +tp259258 +a(g259255 +g259257 +S'forehead' +p259259 +tp259260 +a(g259257 +g259259 +S'wrinkles' +p259261 +tp259262 +a(g259259 +g259261 +S'in' +p259263 +tp259264 +a(g259261 +g259263 +S'an' +p259265 +tp259266 +a(g259263 +g259265 +S'agony' +p259267 +tp259268 +a(g259265 +g259267 +S'that' +p259269 +tp259270 +a(g259267 +g259269 +S'searches' +p259271 +tp259272 +a(g259269 +g259271 +S'the' +p259273 +tp259274 +a(g259271 +g259273 +S'heavens' +p259275 +tp259276 +a(g259273 +g259275 +S'for' +p259277 +tp259278 +a(g259275 +g259277 +S'help.' +p259279 +tp259280 +a(g259277 +g259279 +S'his' +p259281 +tp259282 +a(g259279 +g259281 +S'long,' +p259283 +tp259284 +a(g259281 +g259283 +S'fleecy' +p259285 +tp259286 +a(g259283 +g259285 +S'curls,' +p259287 +tp259288 +a(g259285 +g259287 +S'sinuously' +p259289 +tp259290 +a(g259287 +g259289 +S'modeled,' +p259291 +tp259292 +a(g259289 +g259291 +S'suggest' +p259293 +tp259294 +a(g259291 +g259293 +S'the' +p259295 +tp259296 +a(g259293 +g259295 +S'flow' +p259297 +tp259298 +a(g259295 +g259297 +S'of' +p259299 +tp259300 +a(g259297 +g259299 +S'melting' +p259301 +tp259302 +a(g259299 +g259301 +S'wax.' +p259303 +tp259304 +a(g259301 +g259303 +S'this' +p259305 +tp259306 +a(g259303 +g259305 +S'(text' +p259307 +tp259308 +a(g259305 +g259307 +S'by' +p259309 +tp259310 +a(g259307 +g259309 +S'alison' +p259311 +tp259312 +a(g259309 +g259311 +S'luchs,' +p259313 +tp259314 +a(g259311 +g259313 +S'published' +p259315 +tp259316 +a(g259313 +g259315 +S'in' +p259317 +tp259318 +a(g259315 +g259317 +S'the' +p259319 +tp259320 +a(g259317 +g259319 +S'national' +p259321 +tp259322 +a(g259319 +g259321 +S'gallery' +p259323 +tp259324 +a(g259321 +g259323 +S'of' +p259325 +tp259326 +a(g259323 +g259325 +S'art' +p259327 +tp259328 +a(g259325 +g259327 +S'exhibition' +p259329 +tp259330 +a(g259327 +g259329 +S'catalogue,' +p259331 +tp259332 +a(g259329 +g259331 +S'notes' +p259333 +tp259334 +a(g259331 +g259333 +S'' +p259337 +tp259338 +a(g259335 +g259337 +S'' +p259341 +tp259342 +a(g259339 +g259341 +S'' +p259345 +tp259346 +a(g259343 +g259345 +S'' +p259349 +tp259350 +a(g259347 +g259349 +S'' +p259353 +tp259354 +a(g259351 +g259353 +S'' +p259357 +tp259358 +a(g259355 +g259357 +S'the' +p259359 +tp259360 +a(g259357 +g259359 +S'densely' +p259361 +tp259362 +a(g259359 +g259361 +S'layered' +p259363 +tp259364 +a(g259361 +g259363 +S'image' +p259365 +tp259366 +a(g259363 +g259365 +S'of' +p259367 +tp259368 +a(g259365 +g259367 +S'joseph' +p259369 +tp259370 +a(g259367 +g259369 +S'norman' +p259371 +tp259372 +a(g259369 +g259371 +S'frequently' +p259373 +tp259374 +a(g259371 +g259373 +S'uses' +p259375 +tp259376 +a(g259373 +g259375 +S'landscape' +p259377 +tp259378 +a(g259375 +g259377 +S'imagery' +p259379 +tp259380 +a(g259377 +g259379 +S'to' +p259381 +tp259382 +a(g259379 +g259381 +S'convey' +p259383 +tp259384 +a(g259381 +g259383 +S'meaning.' +p259385 +tp259386 +a(g259383 +g259385 +S'for' +p259387 +tp259388 +a(g259385 +g259387 +S'this' +p259389 +tp259390 +a(g259387 +g259389 +S'work' +p259391 +tp259392 +a(g259389 +g259391 +S'he' +p259393 +tp259394 +a(g259391 +g259393 +S'drew' +p259395 +tp259396 +a(g259393 +g259395 +S'on' +p259397 +tp259398 +a(g259395 +g259397 +S'his' +p259399 +tp259400 +a(g259397 +g259399 +S'experiences' +p259401 +tp259402 +a(g259399 +g259401 +S'growing' +p259403 +tp259404 +a(g259401 +g259403 +S'up' +p259405 +tp259406 +a(g259403 +g259405 +S'in' +p259407 +tp259408 +a(g259405 +g259407 +S'the' +p259409 +tp259410 +a(g259407 +g259409 +S'ghettos' +p259411 +tp259412 +a(g259409 +g259411 +S'of' +p259413 +tp259414 +a(g259411 +g259413 +S'chicago' +p259415 +tp259416 +a(g259413 +g259415 +S'and' +p259417 +tp259418 +a(g259415 +g259417 +S'on' +p259419 +tp259420 +a(g259417 +g259419 +S'a' +p259421 +tp259422 +a(g259419 +g259421 +S'trip' +p259423 +tp259424 +a(g259421 +g259423 +S'in' +p259425 +tp259426 +a(g259423 +g259425 +S'1990' +p259427 +tp259428 +a(g259425 +g259427 +S'to' +p259429 +tp259430 +a(g259427 +g259429 +S'costa' +p259431 +tp259432 +a(g259429 +g259431 +S'rica,' +p259433 +tp259434 +a(g259431 +g259433 +S'where' +p259435 +tp259436 +a(g259433 +g259435 +S'he' +p259437 +tp259438 +a(g259435 +g259437 +S'witnessed' +p259439 +tp259440 +a(g259437 +g259439 +S'the' +p259441 +tp259442 +a(g259439 +g259441 +S'affects' +p259443 +tp259444 +a(g259441 +g259443 +S'of' +p259445 +tp259446 +a(g259443 +g259445 +S'poverty' +p259447 +tp259448 +a(g259445 +g259447 +S'on' +p259449 +tp259450 +a(g259447 +g259449 +S'various' +p259451 +tp259452 +a(g259449 +g259451 +S'neighborhoods.' +p259453 +tp259454 +a(g259451 +g259453 +S'norman' +p259455 +tp259456 +a(g259453 +g259455 +S'was' +p259457 +tp259458 +a(g259455 +g259457 +S'born' +p259459 +tp259460 +a(g259457 +g259459 +S'in' +p259461 +tp259462 +a(g259459 +g259461 +S'chicago' +p259463 +tp259464 +a(g259461 +g259463 +S'in' +p259465 +tp259466 +a(g259463 +g259465 +S'1957.' +p259467 +tp259468 +a(g259465 +g259467 +S'he' +p259469 +tp259470 +a(g259467 +g259469 +S'received' +p259471 +tp259472 +a(g259469 +g259471 +S'a' +p259473 +tp259474 +a(g259471 +g259473 +S'bs' +p259475 +tp259476 +a(g259473 +g259475 +S'is' +p259477 +tp259478 +a(g259475 +g259477 +S'art' +p259479 +tp259480 +a(g259477 +g259479 +S'education' +p259481 +tp259482 +a(g259479 +g259481 +S'from' +p259483 +tp259484 +a(g259481 +g259483 +S'the' +p259485 +tp259486 +a(g259483 +g259485 +S'university' +p259487 +tp259488 +a(g259485 +g259487 +S'of' +p259489 +tp259490 +a(g259487 +g259489 +S'arkansas,' +p259491 +tp259492 +a(g259489 +g259491 +S'little' +p259493 +tp259494 +a(g259491 +g259493 +S'rock,' +p259495 +tp259496 +a(g259493 +g259495 +S'in' +p259497 +tp259498 +a(g259495 +g259497 +S'1980' +p259499 +tp259500 +a(g259497 +g259499 +S'and' +p259501 +tp259502 +a(g259499 +g259501 +S'an' +p259503 +tp259504 +a(g259501 +g259503 +S'mfa' +p259505 +tp259506 +a(g259503 +g259505 +S'six' +p259507 +tp259508 +a(g259505 +g259507 +S'years' +p259509 +tp259510 +a(g259507 +g259509 +S'later' +p259511 +tp259512 +a(g259509 +g259511 +S'from' +p259513 +tp259514 +a(g259511 +g259513 +S'the' +p259515 +tp259516 +a(g259513 +g259515 +S'university' +p259517 +tp259518 +a(g259515 +g259517 +S'of' +p259519 +tp259520 +a(g259517 +g259519 +S'cincinnati.' +p259521 +tp259522 +a(g259519 +g259521 +S'after' +p259523 +tp259524 +a(g259521 +g259523 +S'teaching' +p259525 +tp259526 +a(g259523 +g259525 +S'drawing' +p259527 +tp259528 +a(g259525 +g259527 +S'for' +p259529 +tp259530 +a(g259527 +g259529 +S'nine' +p259531 +tp259532 +a(g259529 +g259531 +S'years' +p259533 +tp259534 +a(g259531 +g259533 +S'at' +p259535 +tp259536 +a(g259533 +g259535 +S'the' +p259537 +tp259538 +a(g259535 +g259537 +S'rhode' +p259539 +tp259540 +a(g259537 +g259539 +S'island' +p259541 +tp259542 +a(g259539 +g259541 +S'school' +p259543 +tp259544 +a(g259541 +g259543 +S'of' +p259545 +tp259546 +a(g259543 +g259545 +S'design,' +p259547 +tp259548 +a(g259545 +g259547 +S'providence,' +p259549 +tp259550 +a(g259547 +g259549 +S'he' +p259551 +tp259552 +a(g259549 +g259551 +S'took' +p259553 +tp259554 +a(g259551 +g259553 +S'a' +p259555 +tp259556 +a(g259553 +g259555 +S'professorship' +p259557 +tp259558 +a(g259555 +g259557 +S'at' +p259559 +tp259560 +a(g259557 +g259559 +S'the' +p259561 +tp259562 +a(g259559 +g259561 +S'lamar' +p259563 +tp259564 +a(g259561 +g259563 +S'dodd' +p259565 +tp259566 +a(g259563 +g259565 +S'school' +p259567 +tp259568 +a(g259565 +g259567 +S'of' +p259569 +tp259570 +a(g259567 +g259569 +S'art' +p259571 +tp259572 +a(g259569 +g259571 +S'at' +p259573 +tp259574 +a(g259571 +g259573 +S'the' +p259575 +tp259576 +a(g259573 +g259575 +S'university' +p259577 +tp259578 +a(g259575 +g259577 +S'of' +p259579 +tp259580 +a(g259577 +g259579 +S'georgia,' +p259581 +tp259582 +a(g259579 +g259581 +S'athens,' +p259583 +tp259584 +a(g259581 +g259583 +S'in' +p259585 +tp259586 +a(g259583 +g259585 +S'2001.' +p259587 +tp259588 +a(g259585 +g259587 +S'he' +p259589 +tp259590 +a(g259587 +g259589 +S'currently' +p259591 +tp259592 +a(g259589 +g259591 +S'serves' +p259593 +tp259594 +a(g259591 +g259593 +S'as' +p259595 +tp259596 +a(g259593 +g259595 +S'the' +p259597 +tp259598 +a(g259595 +g259597 +S"school's" +p259599 +tp259600 +a(g259597 +g259599 +S'chairman' +p259601 +tp259602 +a(g259599 +g259601 +S'of' +p259603 +tp259604 +a(g259601 +g259603 +S'drawing' +p259605 +tp259606 +a(g259603 +g259605 +S'and' +p259607 +tp259608 +a(g259605 +g259607 +S'painting.' +p259609 +tp259610 +a(g259607 +g259609 +S'during' +p259611 +tp259612 +a(g259609 +g259611 +S'the' +p259613 +tp259614 +a(g259611 +g259613 +S'brilliant' +p259615 +tp259616 +a(g259613 +g259615 +S'artistic' +p259617 +tp259618 +a(g259615 +g259617 +S'flowering' +p259619 +tp259620 +a(g259617 +g259619 +S'in' +p259621 +tp259622 +a(g259619 +g259621 +S'18th-century' +p259623 +tp259624 +a(g259621 +g259623 +S'venice,' +p259625 +tp259626 +a(g259623 +g259625 +S'the' +p259627 +tp259628 +a(g259625 +g259627 +S'two' +p259629 +tp259630 +a(g259627 +g259629 +S'most' +p259631 +tp259632 +a(g259629 +g259631 +S'important' +p259633 +tp259634 +a(g259631 +g259633 +S'figure' +p259635 +tp259636 +a(g259633 +g259635 +S'painters' +p259637 +tp259638 +a(g259635 +g259637 +S'were' +p259639 +tp259640 +a(g259637 +g259639 +S'giovanni' +p259641 +tp259642 +a(g259639 +g259641 +S'battista' +p259643 +tp259644 +a(g259641 +g259643 +S'tiepolo' +p259645 +tp259646 +a(g259643 +g259645 +S'(1696–1770)' +p259647 +tp259648 +a(g259645 +g259647 +S'and' +p259649 +tp259650 +a(g259647 +g259649 +S'giovanni' +p259651 +tp259652 +a(g259649 +g259651 +S'battista' +p259653 +tp259654 +a(g259651 +g259653 +S'piazzetta.' +p259655 +tp259656 +a(g259653 +g259655 +S'in' +p259657 +tp259658 +a(g259655 +g259657 +S'his' +p259659 +tp259660 +a(g259657 +g259659 +S'early' +p259661 +tp259662 +a(g259659 +g259661 +S'years,' +p259663 +tp259664 +a(g259661 +g259663 +S'tiepolo' +p259665 +tp259666 +a(g259663 +g259665 +S'was' +p259667 +tp259668 +a(g259665 +g259667 +S'strongly' +p259669 +tp259670 +a(g259667 +g259669 +S'influenced' +p259671 +tp259672 +a(g259669 +g259671 +S'by' +p259673 +tp259674 +a(g259671 +g259673 +S'piazzetta,' +p259675 +tp259676 +a(g259673 +g259675 +S'though' +p259677 +tp259678 +a(g259675 +g259677 +S'his' +p259679 +tp259680 +a(g259677 +g259679 +S'fiery' +p259681 +tp259682 +a(g259679 +g259681 +S'and' +p259683 +tp259684 +a(g259681 +g259683 +S'luminous' +p259685 +tp259686 +a(g259683 +g259685 +S'fantasy' +p259687 +tp259688 +a(g259685 +g259687 +S'later' +p259689 +tp259690 +a(g259687 +g259689 +S'diverged' +p259691 +tp259692 +a(g259689 +g259691 +S'from' +p259693 +tp259694 +a(g259691 +g259693 +S'piazzetta\xe2\x80\x99s' +p259695 +tp259696 +a(g259693 +g259695 +S'contemplative' +p259697 +tp259698 +a(g259695 +g259697 +S'and' +p259699 +tp259700 +a(g259697 +g259699 +S'elegant' +p259701 +tp259702 +a(g259699 +g259701 +S'naturalism.' +p259703 +tp259704 +a(g259701 +g259703 +S'piazzetta\xe2\x80\x99s' +p259705 +tp259706 +a(g259703 +g259705 +S'art' +p259707 +tp259708 +a(g259705 +g259707 +S'was' +p259709 +tp259710 +a(g259707 +g259709 +S'wide-ranging,' +p259711 +tp259712 +a(g259709 +g259711 +S'and' +p259713 +tp259714 +a(g259711 +g259713 +S'included' +p259715 +tp259716 +a(g259713 +g259715 +S'intensely' +p259717 +tp259718 +a(g259715 +g259717 +S'felt' +p259719 +tp259720 +a(g259717 +g259719 +S'religious' +p259721 +tp259722 +a(g259719 +g259721 +S'works,' +p259723 +tp259724 +a(g259721 +g259723 +S'images' +p259725 +tp259726 +a(g259723 +g259725 +S'from' +p259727 +tp259728 +a(g259725 +g259727 +S'ancient' +p259729 +tp259730 +a(g259727 +g259729 +S'history,' +p259731 +tp259732 +a(g259729 +g259731 +S'illustrations' +p259733 +tp259734 +a(g259731 +g259733 +S'for' +p259735 +tp259736 +a(g259733 +g259735 +S'books' +p259737 +tp259738 +a(g259735 +g259737 +S'of' +p259739 +tp259740 +a(g259737 +g259739 +S'all' +p259741 +tp259742 +a(g259739 +g259741 +S'types,' +p259743 +tp259744 +a(g259741 +g259743 +S'and' +p259745 +tp259746 +a(g259743 +g259745 +S'idyllic' +p259747 +tp259748 +a(g259745 +g259747 +S'genre' +p259749 +tp259750 +a(g259747 +g259749 +S'scenes.' +p259751 +tp259752 +a(g259749 +g259751 +S'the' +p259753 +tp259754 +a(g259751 +g259753 +S'latter' +p259755 +tp259756 +a(g259753 +g259755 +S'were' +p259757 +tp259758 +a(g259755 +g259757 +S'characterized' +p259759 +tp259760 +a(g259757 +g259759 +S'by' +p259761 +tp259762 +a(g259759 +g259761 +S'sensitive' +p259763 +tp259764 +a(g259761 +g259763 +S'portrayals' +p259765 +tp259766 +a(g259763 +g259765 +S'of' +p259767 +tp259768 +a(g259765 +g259767 +S'young' +p259769 +tp259770 +a(g259767 +g259769 +S'men' +p259771 +tp259772 +a(g259769 +g259771 +S'and' +p259773 +tp259774 +a(g259771 +g259773 +S'women,' +p259775 +tp259776 +a(g259773 +g259775 +S'usually' +p259777 +tp259778 +a(g259775 +g259777 +S'in' +p259779 +tp259780 +a(g259777 +g259779 +S'pastoral' +p259781 +tp259782 +a(g259779 +g259781 +S'or' +p259783 +tp259784 +a(g259781 +g259783 +S'other' +p259785 +tp259786 +a(g259783 +g259785 +S'ordinary' +p259787 +tp259788 +a(g259785 +g259787 +S'costumes' +p259789 +tp259790 +a(g259787 +g259789 +S'and' +p259791 +tp259792 +a(g259789 +g259791 +S'frequently' +p259793 +tp259794 +a(g259791 +g259793 +S'with' +p259795 +tp259796 +a(g259793 +g259795 +S'tender' +p259797 +tp259798 +a(g259795 +g259797 +S'romantic' +p259799 +tp259800 +a(g259797 +g259799 +S'overtones.' +p259801 +tp259802 +a(g259799 +g259801 +S'like' +p259803 +tp259804 +a(g259801 +g259803 +S'john' +p259805 +tp259806 +a(g259803 +g259805 +S'donne' +p259807 +tp259808 +a(g259805 +g259807 +S'and' +p259809 +tp259810 +a(g259807 +g259809 +S'other' +p259811 +tp259812 +a(g259809 +g259811 +S'british' +p259813 +tp259814 +a(g259811 +g259813 +S'17th-century' +p259815 +tp259816 +a(g259813 +g259815 +S'poets,' +p259817 +tp259818 +a(g259815 +g259817 +S'piazzetta' +p259819 +tp259820 +a(g259817 +g259819 +S'created' +p259821 +tp259822 +a(g259819 +g259821 +S'works' +p259823 +tp259824 +a(g259821 +g259823 +S'of' +p259825 +tp259826 +a(g259823 +g259825 +S'profound' +p259827 +tp259828 +a(g259825 +g259827 +S'and' +p259829 +tp259830 +a(g259827 +g259829 +S'deeply' +p259831 +tp259832 +a(g259829 +g259831 +S'moving' +p259833 +tp259834 +a(g259831 +g259833 +S'spirituality' +p259835 +tp259836 +a(g259833 +g259835 +S'but' +p259837 +tp259838 +a(g259835 +g259837 +S'also' +p259839 +tp259840 +a(g259837 +g259839 +S'of' +p259841 +tp259842 +a(g259839 +g259841 +S'light-hearted' +p259843 +tp259844 +a(g259841 +g259843 +S'dalliance.' +p259845 +tp259846 +a(g259843 +g259845 +S'piazzetta' +p259847 +tp259848 +a(g259845 +g259847 +S'first' +p259849 +tp259850 +a(g259847 +g259849 +S'became' +p259851 +tp259852 +a(g259849 +g259851 +S'famous' +p259853 +tp259854 +a(g259851 +g259853 +S'for' +p259855 +tp259856 +a(g259853 +g259855 +S'his' +p259857 +tp259858 +a(g259855 +g259857 +S'drawings,' +p259859 +tp259860 +a(g259857 +g259859 +S'and' +p259861 +tp259862 +a(g259859 +g259861 +S'among' +p259863 +tp259864 +a(g259861 +g259863 +S'his' +p259865 +tp259866 +a(g259863 +g259865 +S'many' +p259867 +tp259868 +a(g259865 +g259867 +S'works' +p259869 +tp259870 +a(g259867 +g259869 +S'on' +p259871 +tp259872 +a(g259869 +g259871 +S'paper,' +p259873 +tp259874 +a(g259871 +g259873 +S'he' +p259875 +tp259876 +a(g259873 +g259875 +S'was' +p259877 +tp259878 +a(g259875 +g259877 +S'well-known' +p259879 +tp259880 +a(g259877 +g259879 +S'for' +p259881 +tp259882 +a(g259879 +g259881 +S'his' +p259883 +tp259884 +a(g259881 +g259883 +S'nearly' +p259885 +tp259886 +a(g259883 +g259885 +S'life-sized' +p259887 +tp259888 +a(g259885 +g259887 +S'heads' +p259889 +tp259890 +a(g259887 +g259889 +S'and' +p259891 +tp259892 +a(g259889 +g259891 +S'busts' +p259893 +tp259894 +a(g259891 +g259893 +S'rendered' +p259895 +tp259896 +a(g259893 +g259895 +S'in' +p259897 +tp259898 +a(g259895 +g259897 +S'black' +p259899 +tp259900 +a(g259897 +g259899 +S'and' +p259901 +tp259902 +a(g259899 +g259901 +S'white' +p259903 +tp259904 +a(g259901 +g259903 +S'chalk' +p259905 +tp259906 +a(g259903 +g259905 +S'on' +p259907 +tp259908 +a(g259905 +g259907 +S'venetian' +p259909 +tp259910 +a(g259907 +g259909 +S'blue' +p259911 +tp259912 +a(g259909 +g259911 +S'paper.' +p259913 +tp259914 +a(g259911 +g259913 +S'we' +p259915 +tp259916 +a(g259913 +g259915 +S'know' +p259917 +tp259918 +a(g259915 +g259917 +S'from' +p259919 +tp259920 +a(g259917 +g259919 +S'inventories' +p259921 +tp259922 +a(g259919 +g259921 +S'and' +p259923 +tp259924 +a(g259921 +g259923 +S'other' +p259925 +tp259926 +a(g259923 +g259925 +S'records' +p259927 +tp259928 +a(g259925 +g259927 +S'that' +p259929 +tp259930 +a(g259927 +g259929 +S'these' +p259931 +tp259932 +a(g259929 +g259931 +S'character' +p259933 +tp259934 +a(g259931 +g259933 +S'heads' +p259935 +tp259936 +a(g259933 +g259935 +S'were' +p259937 +tp259938 +a(g259935 +g259937 +S'immediately' +p259939 +tp259940 +a(g259937 +g259939 +S'prized' +p259941 +tp259942 +a(g259939 +g259941 +S'by' +p259943 +tp259944 +a(g259941 +g259943 +S'his' +p259945 +tp259946 +a(g259943 +g259945 +S'contemporaries' +p259947 +tp259948 +a(g259945 +g259947 +S'and' +p259949 +tp259950 +a(g259947 +g259949 +S'were' +p259951 +tp259952 +a(g259949 +g259951 +S'framed' +p259953 +tp259954 +a(g259951 +g259953 +S'and' +p259955 +tp259956 +a(g259953 +g259955 +S'glazed' +p259957 +tp259958 +a(g259955 +g259957 +S'to' +p259959 +tp259960 +a(g259957 +g259959 +S'hang' +p259961 +tp259962 +a(g259959 +g259961 +S'in' +p259963 +tp259964 +a(g259961 +g259963 +S'rooms' +p259965 +tp259966 +a(g259963 +g259965 +S'like' +p259967 +tp259968 +a(g259965 +g259967 +S'finished' +p259969 +tp259970 +a(g259967 +g259969 +S'paintings.' +p259971 +tp259972 +a(g259969 +g259971 +S'in' +p259973 +tp259974 +a(g259971 +g259973 +S'fact,' +p259975 +tp259976 +a(g259973 +g259975 +S'these' +p259977 +tp259978 +a(g259975 +g259977 +S'works' +p259979 +tp259980 +a(g259977 +g259979 +S'were' +p259981 +tp259982 +a(g259979 +g259981 +S'perhaps' +p259983 +tp259984 +a(g259981 +g259983 +S'the' +p259985 +tp259986 +a(g259983 +g259985 +S'earliest' +p259987 +tp259988 +a(g259985 +g259987 +S'type' +p259989 +tp259990 +a(g259987 +g259989 +S'of' +p259991 +tp259992 +a(g259989 +g259991 +S'drawings' +p259993 +tp259994 +a(g259991 +g259993 +S'to' +p259995 +tp259996 +a(g259993 +g259995 +S'be' +p259997 +tp259998 +a(g259995 +g259997 +S'so' +p259999 +tp260000 +a(g259997 +g259999 +S'consistently' +p260001 +tp260002 +a(g259999 +g260001 +S'collected' +p260003 +tp260004 +a(g260001 +g260003 +S'and' +p260005 +tp260006 +a(g260003 +g260005 +S'displayed,' +p260007 +tp260008 +a(g260005 +g260007 +S'which' +p260009 +tp260010 +a(g260007 +g260009 +S'also' +p260011 +tp260012 +a(g260009 +g260011 +S'explains' +p260013 +tp260014 +a(g260011 +g260013 +S'why' +p260015 +tp260016 +a(g260013 +g260015 +S'their' +p260017 +tp260018 +a(g260015 +g260017 +S'paper' +p260019 +tp260020 +a(g260017 +g260019 +S'has' +p260021 +tp260022 +a(g260019 +g260021 +S'changed' +p260023 +tp260024 +a(g260021 +g260023 +S'color' +p260025 +tp260026 +a(g260023 +g260025 +S'from' +p260027 +tp260028 +a(g260025 +g260027 +S'extended' +p260029 +tp260030 +a(g260027 +g260029 +S'exposure' +p260031 +tp260032 +a(g260029 +g260031 +S'to' +p260033 +tp260034 +a(g260031 +g260033 +S'light,' +p260035 +tp260036 +a(g260033 +g260035 +S'softening' +p260037 +tp260038 +a(g260035 +g260037 +S'from' +p260039 +tp260040 +a(g260037 +g260039 +S'blue' +p260041 +tp260042 +a(g260039 +g260041 +S'to' +p260043 +tp260044 +a(g260041 +g260043 +S'gray-green' +p260045 +tp260046 +a(g260043 +g260045 +S'or' +p260047 +tp260048 +a(g260045 +g260047 +S'tan.' +p260049 +tp260050 +a(g260047 +g260049 +S'a' +p260051 +tp260052 +a(g260049 +g260051 +S'young' +p260053 +tp260054 +a(g260051 +g260053 +S'man' +p260055 +tp260056 +a(g260053 +g260055 +S'embracing' +p260057 +tp260058 +a(g260055 +g260057 +S'a' +p260059 +tp260060 +a(g260057 +g260059 +S'girl' +p260061 +tp260062 +a(g260059 +g260061 +S'at' +p260063 +tp260064 +a(g260061 +g260063 +S'the' +p260065 +tp260066 +a(g260063 +g260065 +S'time,' +p260067 +tp260068 +a(g260065 +g260067 +S'this' +p260069 +tp260070 +a(g260067 +g260069 +S'drawing' +p260071 +tp260072 +a(g260069 +g260071 +S'was' +p260073 +tp260074 +a(g260071 +g260073 +S'recognized' +p260075 +tp260076 +a(g260073 +g260075 +S'as' +p260077 +tp260078 +a(g260075 +g260077 +S'a' +p260079 +tp260080 +a(g260077 +g260079 +S'masterpiece.' +p260081 +tp260082 +a(g260079 +g260081 +S'it' +p260083 +tp260084 +a(g260081 +g260083 +S'was' +p260085 +tp260086 +a(g260083 +g260085 +S'immediately' +p260087 +tp260088 +a(g260085 +g260087 +S'made' +p260089 +tp260090 +a(g260087 +g260089 +S'into' +p260091 +tp260092 +a(g260089 +g260091 +S'a' +p260093 +tp260094 +a(g260091 +g260093 +S'full-sized' +p260095 +tp260096 +a(g260093 +g260095 +S'engraving' +p260097 +tp260098 +a(g260095 +g260097 +S'by' +p260099 +tp260100 +a(g260097 +g260099 +S'giovanni' +p260101 +tp260102 +a(g260099 +g260101 +S'cattini,' +p260103 +tp260104 +a(g260101 +g260103 +S'a' +p260105 +tp260106 +a(g260103 +g260105 +S'prominent' +p260107 +tp260108 +a(g260105 +g260107 +S'venetian' +p260109 +tp260110 +a(g260107 +g260109 +S'printmaker,' +p260111 +tp260112 +a(g260109 +g260111 +S'which' +p260113 +tp260114 +a(g260111 +g260113 +S'was' +p260115 +tp260116 +a(g260113 +g260115 +S'then' +p260117 +tp260118 +a(g260115 +g260117 +S'copied' +p260119 +tp260120 +a(g260117 +g260119 +S'by' +p260121 +tp260122 +a(g260119 +g260121 +S'an' +p260123 +tp260124 +a(g260121 +g260123 +S'augsburg' +p260125 +tp260126 +a(g260123 +g260125 +S'artist' +p260127 +tp260128 +a(g260125 +g260127 +S'in' +p260129 +tp260130 +a(g260127 +g260129 +S'mezzotint,' +p260131 +tp260132 +a(g260129 +g260131 +S'later' +p260133 +tp260134 +a(g260131 +g260133 +S'recreated' +p260135 +tp260136 +a(g260133 +g260135 +S'as' +p260137 +tp260138 +a(g260135 +g260137 +S'an' +p260139 +tp260140 +a(g260137 +g260139 +S'engraving' +p260141 +tp260142 +a(g260139 +g260141 +S'by' +p260143 +tp260144 +a(g260141 +g260143 +S'an' +p260145 +tp260146 +a(g260143 +g260145 +S'artist' +p260147 +tp260148 +a(g260145 +g260147 +S'in' +p260149 +tp260150 +a(g260147 +g260149 +S'munich,' +p260151 +tp260152 +a(g260149 +g260151 +S'and' +p260153 +tp260154 +a(g260151 +g260153 +S'finally' +p260155 +tp260156 +a(g260153 +g260155 +S'rendered' +p260157 +tp260158 +a(g260155 +g260157 +S'as' +p260159 +tp260160 +a(g260157 +g260159 +S'a' +p260161 +tp260162 +a(g260159 +g260161 +S'color' +p260163 +tp260164 +a(g260161 +g260163 +S'woodcut' +p260165 +tp260166 +a(g260163 +g260165 +S'by' +p260167 +tp260168 +a(g260165 +g260167 +S'an' +p260169 +tp260170 +a(g260167 +g260169 +S'english' +p260171 +tp260172 +a(g260169 +g260171 +S'artist' +p260173 +tp260174 +a(g260171 +g260173 +S'living' +p260175 +tp260176 +a(g260173 +g260175 +S'in' +p260177 +tp260178 +a(g260175 +g260177 +S'venice.' +p260179 +tp260180 +a(g260177 +g260179 +S'the' +p260181 +tp260182 +a(g260179 +g260181 +S'renown' +p260183 +tp260184 +a(g260181 +g260183 +S'of' +p260185 +tp260186 +a(g260183 +g260185 +S'this' +p260187 +tp260188 +a(g260185 +g260187 +S'drawing' +p260189 +tp260190 +a(g260187 +g260189 +S'today' +p260191 +tp260192 +a(g260189 +g260191 +S'is' +p260193 +tp260194 +a(g260191 +g260193 +S'enhanced' +p260195 +tp260196 +a(g260193 +g260195 +S'by' +p260197 +tp260198 +a(g260195 +g260197 +S'its' +p260199 +tp260200 +a(g260197 +g260199 +S'superb' +p260201 +tp260202 +a(g260199 +g260201 +S'condition,' +p260203 +tp260204 +a(g260201 +g260203 +S'with' +p260205 +tp260206 +a(g260203 +g260205 +S'the' +p260207 +tp260208 +a(g260205 +g260207 +S'whites' +p260209 +tp260210 +a(g260207 +g260209 +S'brilliant' +p260211 +tp260212 +a(g260209 +g260211 +S'and' +p260213 +tp260214 +a(g260211 +g260213 +S'the' +p260215 +tp260216 +a(g260213 +g260215 +S'blacks' +p260217 +tp260218 +a(g260215 +g260217 +S'preserved' +p260219 +tp260220 +a(g260217 +g260219 +S'with' +p260221 +tp260222 +a(g260219 +g260221 +S'a' +p260223 +tp260224 +a(g260221 +g260223 +S'thick,' +p260225 +tp260226 +a(g260223 +g260225 +S'velvety' +p260227 +tp260228 +a(g260225 +g260227 +S'richness.' +p260229 +tp260230 +a(g260227 +g260229 +S'an' +p260231 +tp260232 +a(g260229 +g260231 +S'instructor' +p260233 +tp260234 +a(g260231 +g260233 +S'at' +p260235 +tp260236 +a(g260233 +g260235 +S'the' +p260237 +tp260238 +a(g260235 +g260237 +S'boston' +p260239 +tp260240 +a(g260237 +g260239 +S'museum' +p260241 +tp260242 +a(g260239 +g260241 +S'school,' +p260243 +tp260244 +a(g260241 +g260243 +S'frank' +p260245 +tp260246 +a(g260243 +g260245 +S'benson' +p260247 +tp260248 +a(g260245 +g260247 +S'created' +p260249 +tp260250 +a(g260247 +g260249 +S'lovely' +p260251 +tp260252 +a(g260249 +g260251 +S'daydreams' +p260253 +tp260254 +a(g260251 +g260253 +S'of' +p260255 +tp260256 +a(g260253 +g260255 +S'women' +p260257 +tp260258 +a(g260255 +g260257 +S'and' +p260259 +tp260260 +a(g260257 +g260259 +S'children' +p260261 +tp260262 +a(g260259 +g260261 +S'frolicking' +p260263 +tp260264 +a(g260261 +g260263 +S'outdoors.' +p260265 +tp260266 +a(g260263 +g260265 +S'one' +p260267 +tp260268 +a(g260265 +g260267 +S'of' +p260269 +tp260270 +a(g260267 +g260269 +S'his' +p260271 +tp260272 +a(g260269 +g260271 +S'daughters' +p260273 +tp260274 +a(g260271 +g260273 +S'recalled' +p260275 +tp260276 +a(g260273 +g260275 +S'their' +p260277 +tp260278 +a(g260275 +g260277 +S'family' +p260279 +tp260280 +a(g260277 +g260279 +S'vacations' +p260281 +tp260282 +a(g260279 +g260281 +S'in' +p260283 +tp260284 +a(g260281 +g260283 +S'north' +p260285 +tp260286 +a(g260283 +g260285 +S'haven,' +p260287 +tp260288 +a(g260285 +g260287 +S'maine:' +p260289 +tp260290 +a(g260287 +g260289 +S'"papa' +p260291 +tp260292 +a(g260289 +g260291 +S'would' +p260293 +tp260294 +a(g260291 +g260293 +S'often' +p260295 +tp260296 +a(g260293 +g260295 +S'have' +p260297 +tp260298 +a(g260295 +g260297 +S'us' +p260299 +tp260300 +a(g260297 +g260299 +S'put' +p260301 +tp260302 +a(g260299 +g260301 +S'on' +p260303 +tp260304 +a(g260301 +g260303 +S'our' +p260305 +tp260306 +a(g260303 +g260305 +S'best' +p260307 +tp260308 +a(g260305 +g260307 +S'white' +p260309 +tp260310 +a(g260307 +g260309 +S'dresses' +p260311 +tp260312 +a(g260309 +g260311 +S'and' +p260313 +tp260314 +a(g260311 +g260313 +S'then' +p260315 +tp260316 +a(g260313 +g260315 +S'ask' +p260317 +tp260318 +a(g260315 +g260317 +S'us' +p260319 +tp260320 +a(g260317 +g260319 +S'to' +p260321 +tp260322 +a(g260319 +g260321 +S'sit' +p260323 +tp260324 +a(g260321 +g260323 +S'in' +p260325 +tp260326 +a(g260323 +g260325 +S'the' +p260327 +tp260328 +a(g260325 +g260327 +S'grass' +p260329 +tp260330 +a(g260327 +g260329 +S'or' +p260331 +tp260332 +a(g260329 +g260331 +S'play' +p260333 +tp260334 +a(g260331 +g260333 +S'in' +p260335 +tp260336 +a(g260333 +g260335 +S'the' +p260337 +tp260338 +a(g260335 +g260337 +S'woods.' +p260339 +tp260340 +a(g260337 +g260339 +S'we' +p260341 +tp260342 +a(g260339 +g260341 +S'thought' +p260343 +tp260344 +a(g260341 +g260343 +S'it' +p260345 +tp260346 +a(g260343 +g260345 +S'was' +p260347 +tp260348 +a(g260345 +g260347 +S'so' +p260349 +tp260350 +a(g260347 +g260349 +S'silly' +p260351 +tp260352 +a(g260349 +g260351 +S'and' +p260353 +tp260354 +a(g260351 +g260353 +S'the' +p260355 +tp260356 +a(g260353 +g260355 +S'maids' +p260357 +tp260358 +a(g260355 +g260357 +S'made' +p260359 +tp260360 +a(g260357 +g260359 +S'such' +p260361 +tp260362 +a(g260359 +g260361 +S'a' +p260363 +tp260364 +a(g260361 +g260363 +S'fuss' +p260365 +tp260366 +a(g260363 +g260365 +S'when' +p260367 +tp260368 +a(g260365 +g260367 +S'they' +p260369 +tp260370 +a(g260367 +g260369 +S'saw' +p260371 +tp260372 +a(g260369 +g260371 +S'the' +p260373 +tp260374 +a(g260371 +g260373 +S'clothes' +p260375 +tp260376 +a(g260373 +g260375 +S'afterwards."' +p260377 +tp260378 +a(g260375 +g260377 +S'these' +p260379 +tp260380 +a(g260377 +g260379 +S'modeling' +p260381 +tp260382 +a(g260379 +g260381 +S'sessions' +p260383 +tp260384 +a(g260381 +g260383 +S'resulted' +p260385 +tp260386 +a(g260383 +g260385 +S'in' +p260387 +tp260388 +a(g260385 +g260387 +S'such' +p260389 +tp260390 +a(g260387 +g260389 +S'idyllic' +p260391 +tp260392 +a(g260389 +g260391 +S'works' +p260393 +tp260394 +a(g260391 +g260393 +S'as' +p260395 +tp260396 +a(g260393 +g260395 +S'in' +p260397 +tp260398 +a(g260395 +g260397 +S'a' +p260399 +tp260400 +a(g260397 +g260399 +S'very' +p260401 +tp260402 +a(g260399 +g260401 +S'daring' +p260403 +tp260404 +a(g260401 +g260403 +S'maneuver' +p260405 +tp260406 +a(g260403 +g260405 +S'for' +p260407 +tp260408 +a(g260405 +g260407 +S'a' +p260409 +tp260410 +a(g260407 +g260409 +S'commissioned' +p260411 +tp260412 +a(g260409 +g260411 +S'portrait,' +p260413 +tp260414 +a(g260411 +g260413 +S'benson' +p260415 +tp260416 +a(g260413 +g260415 +S'left' +p260417 +tp260418 +a(g260415 +g260417 +S"margaret's" +p260419 +tp260420 +a(g260417 +g260419 +S'face' +p260421 +tp260422 +a(g260419 +g260421 +S'still' +p260423 +tp260424 +a(g260421 +g260423 +S'turned' +p260425 +tp260426 +a(g260423 +g260425 +S'away' +p260427 +tp260428 +a(g260425 +g260427 +S'from' +p260429 +tp260430 +a(g260427 +g260429 +S'the' +p260431 +tp260432 +a(g260429 +g260431 +S'sun.' +p260433 +tp260434 +a(g260431 +g260433 +S'he' +p260435 +tp260436 +a(g260433 +g260435 +S'did' +p260437 +tp260438 +a(g260435 +g260437 +S'modify' +p260439 +tp260440 +a(g260437 +g260439 +S'the' +p260441 +tp260442 +a(g260439 +g260441 +S'design' +p260443 +tp260444 +a(g260441 +g260443 +S'by' +p260445 +tp260446 +a(g260443 +g260445 +S'raising' +p260447 +tp260448 +a(g260445 +g260447 +S'the' +p260449 +tp260450 +a(g260447 +g260449 +S'beach' +p260451 +tp260452 +a(g260449 +g260451 +S'line' +p260453 +tp260454 +a(g260451 +g260453 +S'of' +p260455 +tp260456 +a(g260453 +g260455 +S'the' +p260457 +tp260458 +a(g260455 +g260457 +S'distant' +p260459 +tp260460 +a(g260457 +g260459 +S'cape' +p260461 +tp260462 +a(g260459 +g260461 +S'so' +p260463 +tp260464 +a(g260461 +g260463 +S'that,' +p260465 +tp260466 +a(g260463 +g260465 +S'here,' +p260467 +tp260468 +a(g260465 +g260467 +S'it' +p260469 +tp260470 +a(g260467 +g260469 +S'would' +p260471 +tp260472 +a(g260469 +g260471 +S'not' +p260473 +tp260474 +a(g260471 +g260473 +S'cut' +p260475 +tp260476 +a(g260473 +g260475 +S'across' +p260477 +tp260478 +a(g260475 +g260477 +S'her' +p260479 +tp260480 +a(g260477 +g260479 +S'profile.' +p260481 +tp260482 +a(g260479 +g260481 +S'her' +p260483 +tp260484 +a(g260481 +g260483 +S'striking,' +p260485 +tp260486 +a(g260483 +g260485 +S'coppery' +p260487 +tp260488 +a(g260485 +g260487 +S'red' +p260489 +tp260490 +a(g260487 +g260489 +S'hair' +p260491 +tp260492 +a(g260489 +g260491 +S'frames' +p260493 +tp260494 +a(g260491 +g260493 +S'her' +p260495 +tp260496 +a(g260493 +g260495 +S'head,' +p260497 +tp260498 +a(g260495 +g260497 +S'keys' +p260499 +tp260500 +a(g260497 +g260499 +S'into' +p260501 +tp260502 +a(g260499 +g260501 +S'the' +p260503 +tp260504 +a(g260501 +g260503 +S'warm' +p260505 +tp260506 +a(g260503 +g260505 +S'tan' +p260507 +tp260508 +a(g260505 +g260507 +S'grass,' +p260509 +tp260510 +a(g260507 +g260509 +S'and' +p260511 +tp260512 +a(g260509 +g260511 +S'complements' +p260513 +tp260514 +a(g260511 +g260513 +S'the' +p260515 +tp260516 +a(g260513 +g260515 +S'blue' +p260517 +tp260518 +a(g260515 +g260517 +S'atlantic' +p260519 +tp260520 +a(g260517 +g260519 +S'and' +p260521 +tp260522 +a(g260519 +g260521 +S'the' +p260523 +tp260524 +a(g260521 +g260523 +S'cool,' +p260525 +tp260526 +a(g260523 +g260525 +S'iridescent' +p260527 +tp260528 +a(g260525 +g260527 +S'shadows.' +p260529 +tp260530 +a(g260527 +g260529 +S'above' +p260531 +tp260532 +a(g260529 +g260531 +S'all,' +p260533 +tp260534 +a(g260531 +g260533 +S'the' +p260535 +tp260536 +a(g260533 +g260535 +S'dazzling' +p260537 +tp260538 +a(g260535 +g260537 +S'virtuosity' +p260539 +tp260540 +a(g260537 +g260539 +S'of' +p260541 +tp260542 +a(g260539 +g260541 +S"benson's" +p260543 +tp260544 +a(g260541 +g260543 +S'rapid' +p260545 +tp260546 +a(g260543 +g260545 +S'brushwork' +p260547 +tp260548 +a(g260545 +g260547 +S'captures' +p260549 +tp260550 +a(g260547 +g260549 +S'attention.' +p260551 +tp260552 +a(g260549 +g260551 +S'the' +p260553 +tp260554 +a(g260551 +g260553 +S'classical' +p260555 +tp260556 +a(g260553 +g260555 +S'column,' +p260557 +tp260558 +a(g260555 +g260557 +S'crimson' +p260559 +tp260560 +a(g260557 +g260559 +S'drapery,' +p260561 +tp260562 +a(g260559 +g260561 +S'legal' +p260563 +tp260564 +a(g260561 +g260563 +S'tome,' +p260565 +tp260566 +a(g260563 +g260565 +S'and' +p260567 +tp260568 +a(g260565 +g260567 +S'robes' +p260569 +tp260570 +a(g260567 +g260569 +S'of' +p260571 +tp260572 +a(g260569 +g260571 +S'state' +p260573 +tp260574 +a(g260571 +g260573 +S'in' +p260575 +tp260576 +a(g260573 +g260575 +S'this' +p260577 +tp260578 +a(g260575 +g260577 +S'impressive' +p260579 +tp260580 +a(g260577 +g260579 +S'portrait' +p260581 +tp260582 +a(g260579 +g260581 +S'recall' +p260583 +tp260584 +a(g260581 +g260583 +S'the' +p260585 +tp260586 +a(g260583 +g260585 +S'"grand' +p260587 +tp260588 +a(g260585 +g260587 +S'manner"' +p260589 +tp260590 +a(g260587 +g260589 +S'tradition' +p260591 +tp260592 +a(g260589 +g260591 +S'stuart' +p260593 +tp260594 +a(g260591 +g260593 +S'had' +p260595 +tp260596 +a(g260593 +g260595 +S'used' +p260597 +tp260598 +a(g260595 +g260597 +S'to' +p260599 +tp260600 +a(g260597 +g260599 +S'emphasize' +p260601 +tp260602 +a(g260599 +g260601 +S'the' +p260603 +tp260604 +a(g260601 +g260603 +S'social' +p260605 +tp260606 +a(g260603 +g260605 +S'status' +p260607 +tp260608 +a(g260605 +g260607 +S'of' +p260609 +tp260610 +a(g260607 +g260609 +S'british' +p260611 +tp260612 +a(g260609 +g260611 +S'aristocrats.' +p260613 +tp260614 +a(g260611 +g260613 +S'as' +p260615 +tp260616 +a(g260613 +g260615 +S'a' +p260617 +tp260618 +a(g260615 +g260617 +S'framer' +p260619 +tp260620 +a(g260617 +g260619 +S'of' +p260621 +tp260622 +a(g260619 +g260621 +S'the' +p260623 +tp260624 +a(g260621 +g260623 +S'constitution' +p260625 +tp260626 +a(g260623 +g260625 +S'and' +p260627 +tp260628 +a(g260625 +g260627 +S'the' +p260629 +tp260630 +a(g260627 +g260629 +S'first' +p260631 +tp260632 +a(g260629 +g260631 +S'chief' +p260633 +tp260634 +a(g260631 +g260633 +S'justice' +p260635 +tp260636 +a(g260633 +g260635 +S'of' +p260637 +tp260638 +a(g260635 +g260637 +S'the' +p260639 +tp260640 +a(g260637 +g260639 +S'united' +p260641 +tp260642 +a(g260639 +g260641 +S'states' +p260643 +tp260644 +a(g260641 +g260643 +S'from' +p260645 +tp260646 +a(g260643 +g260645 +S'1789' +p260647 +tp260648 +a(g260645 +g260647 +S'to' +p260649 +tp260650 +a(g260647 +g260649 +S'1795,' +p260651 +tp260652 +a(g260649 +g260651 +S'john' +p260653 +tp260654 +a(g260651 +g260653 +S'jay' +p260655 +tp260656 +a(g260653 +g260655 +S'was' +p260657 +tp260658 +a(g260655 +g260657 +S'the' +p260659 +tp260660 +a(g260657 +g260659 +S'first' +p260661 +tp260662 +a(g260659 +g260661 +S'american' +p260663 +tp260664 +a(g260661 +g260663 +S'statesman' +p260665 +tp260666 +a(g260663 +g260665 +S'of' +p260667 +tp260668 +a(g260665 +g260667 +S'international' +p260669 +tp260670 +a(g260667 +g260669 +S'reputation' +p260671 +tp260672 +a(g260669 +g260671 +S'whom' +p260673 +tp260674 +a(g260671 +g260673 +S'stuart' +p260675 +tp260676 +a(g260673 +g260675 +S'ever' +p260677 +tp260678 +a(g260675 +g260677 +S'painted.' +p260679 +tp260680 +a(g260677 +g260679 +S'the' +p260681 +tp260682 +a(g260679 +g260681 +S'success' +p260683 +tp260684 +a(g260681 +g260683 +S'of' +p260685 +tp260686 +a(g260683 +g260685 +S'this' +p260687 +tp260688 +a(g260685 +g260687 +S'likeness' +p260689 +tp260690 +a(g260687 +g260689 +S'of' +p260691 +tp260692 +a(g260689 +g260691 +S'the' +p260693 +tp260694 +a(g260691 +g260693 +S'chief' +p260695 +tp260696 +a(g260693 +g260695 +S'justice,' +p260697 +tp260698 +a(g260695 +g260697 +S'painted' +p260699 +tp260700 +a(g260697 +g260699 +S'in' +p260701 +tp260702 +a(g260699 +g260701 +S'new' +p260703 +tp260704 +a(g260701 +g260703 +S'york' +p260705 +tp260706 +a(g260703 +g260705 +S'in' +p260707 +tp260708 +a(g260705 +g260707 +S'1794,' +p260709 +tp260710 +a(g260707 +g260709 +S'introduced' +p260711 +tp260712 +a(g260709 +g260711 +S'stuart' +p260713 +tp260714 +a(g260711 +g260713 +S'to' +p260715 +tp260716 +a(g260713 +g260715 +S'an' +p260717 +tp260718 +a(g260715 +g260717 +S'appreciative' +p260719 +tp260720 +a(g260717 +g260719 +S'clientele' +p260721 +tp260722 +a(g260719 +g260721 +S'in' +p260723 +tp260724 +a(g260721 +g260723 +S'america.' +p260725 +tp260726 +a(g260723 +g260725 +S'the' +p260727 +tp260728 +a(g260725 +g260727 +S'forty-nine-year-old' +p260729 +tp260730 +a(g260727 +g260729 +S'jay' +p260731 +tp260732 +a(g260729 +g260731 +S'could' +p260733 +tp260734 +a(g260731 +g260733 +S'spare' +p260735 +tp260736 +a(g260733 +g260735 +S'time' +p260737 +tp260738 +a(g260735 +g260737 +S'to' +p260739 +tp260740 +a(g260737 +g260739 +S'pose' +p260741 +tp260742 +a(g260739 +g260741 +S'only' +p260743 +tp260744 +a(g260741 +g260743 +S'for' +p260745 +tp260746 +a(g260743 +g260745 +S'the' +p260747 +tp260748 +a(g260745 +g260747 +S'head.' +p260749 +tp260750 +a(g260747 +g260749 +S'his' +p260751 +tp260752 +a(g260749 +g260751 +S'nephew' +p260753 +tp260754 +a(g260751 +g260753 +S'modeled' +p260755 +tp260756 +a(g260753 +g260755 +S'the' +p260757 +tp260758 +a(g260755 +g260757 +S'judicial' +p260759 +tp260760 +a(g260757 +g260759 +S'robe' +p260761 +tp260762 +a(g260759 +g260761 +S'so' +p260763 +tp260764 +a(g260761 +g260763 +S'that' +p260765 +tp260766 +a(g260763 +g260765 +S'stuart' +p260767 +tp260768 +a(g260765 +g260767 +S'could' +p260769 +tp260770 +a(g260767 +g260769 +S'complete' +p260771 +tp260772 +a(g260769 +g260771 +S'the' +p260773 +tp260774 +a(g260771 +g260773 +S'body.' +p260775 +tp260776 +a(g260773 +g260775 +S'broadly' +p260777 +tp260778 +a(g260775 +g260777 +S'painted' +p260779 +tp260780 +a(g260777 +g260779 +S'strokes' +p260781 +tp260782 +a(g260779 +g260781 +S'suggest' +p260783 +tp260784 +a(g260781 +g260783 +S'the' +p260785 +tp260786 +a(g260783 +g260785 +S"robe's" +p260787 +tp260788 +a(g260785 +g260787 +S'gleaming' +p260789 +tp260790 +a(g260787 +g260789 +S'scarlet,' +p260791 +tp260792 +a(g260789 +g260791 +S'black,' +p260793 +tp260794 +a(g260791 +g260793 +S'and' +p260795 +tp260796 +a(g260793 +g260795 +S'white' +p260797 +tp260798 +a(g260795 +g260797 +S'satin,' +p260799 +tp260800 +a(g260797 +g260799 +S'setting' +p260801 +tp260802 +a(g260799 +g260801 +S'off' +p260803 +tp260804 +a(g260801 +g260803 +S'by' +p260805 +tp260806 +a(g260803 +g260805 +S'contrast' +p260807 +tp260808 +a(g260805 +g260807 +S'the' +p260809 +tp260810 +a(g260807 +g260809 +S'careful' +p260811 +tp260812 +a(g260809 +g260811 +S'execution' +p260813 +tp260814 +a(g260811 +g260813 +S'of' +p260815 +tp260816 +a(g260813 +g260815 +S"jay's" +p260817 +tp260818 +a(g260815 +g260817 +S'handsome' +p260819 +tp260820 +a(g260817 +g260819 +S'features.' +p260821 +tp260822 +a(g260819 +g260821 +S'stuart' +p260823 +tp260824 +a(g260821 +g260823 +S'rendered' +p260825 +tp260826 +a(g260823 +g260825 +S"jay's" +p260827 +tp260828 +a(g260825 +g260827 +S'complexion' +p260829 +tp260830 +a(g260827 +g260829 +S'with' +p260831 +tp260832 +a(g260829 +g260831 +S'deftly' +p260833 +tp260834 +a(g260831 +g260833 +S'executed' +p260835 +tp260836 +a(g260833 +g260835 +S'highlights' +p260837 +tp260838 +a(g260835 +g260837 +S'in' +p260839 +tp260840 +a(g260837 +g260839 +S'opaque' +p260841 +tp260842 +a(g260839 +g260841 +S'paint' +p260843 +tp260844 +a(g260841 +g260843 +S'on' +p260845 +tp260846 +a(g260843 +g260845 +S'top' +p260847 +tp260848 +a(g260845 +g260847 +S'of' +p260849 +tp260850 +a(g260847 +g260849 +S'translucent' +p260851 +tp260852 +a(g260849 +g260851 +S'glazes' +p260853 +tp260854 +a(g260851 +g260853 +S'of' +p260855 +tp260856 +a(g260853 +g260855 +S'thinned' +p260857 +tp260858 +a(g260855 +g260857 +S'oils.' +p260859 +tp260860 +a(g260857 +g260859 +S'later' +p260861 +tp260862 +a(g260859 +g260861 +S'the' +p260863 +tp260864 +a(g260861 +g260863 +S'artist' +p260865 +tp260866 +a(g260863 +g260865 +S'explained' +p260867 +tp260868 +a(g260865 +g260867 +S'his' +p260869 +tp260870 +a(g260867 +g260869 +S'methods' +p260871 +tp260872 +a(g260869 +g260871 +S'for' +p260873 +tp260874 +a(g260871 +g260873 +S'painting' +p260875 +tp260876 +a(g260873 +g260875 +S'such' +p260877 +tp260878 +a(g260875 +g260877 +S'lively' +p260879 +tp260880 +a(g260877 +g260879 +S'skin' +p260881 +tp260882 +a(g260879 +g260881 +S'tones:' +p260883 +tp260884 +a(g260881 +g260883 +S'"good' +p260885 +tp260886 +a(g260883 +g260885 +S'flesh' +p260887 +tp260888 +a(g260885 +g260887 +S'color' +p260889 +tp260890 +a(g260887 +g260889 +S'partook' +p260891 +tp260892 +a(g260889 +g260891 +S'of' +p260893 +tp260894 +a(g260891 +g260893 +S'all' +p260895 +tp260896 +a(g260893 +g260895 +S'colors,' +p260897 +tp260898 +a(g260895 +g260897 +S'not' +p260899 +tp260900 +a(g260897 +g260899 +S'mixed' +p260901 +tp260902 +a(g260899 +g260901 +S'so' +p260903 +tp260904 +a(g260901 +g260903 +S'as' +p260905 +tp260906 +a(g260903 +g260905 +S'to' +p260907 +tp260908 +a(g260905 +g260907 +S'combine' +p260909 +tp260910 +a(g260907 +g260909 +S'in' +p260911 +tp260912 +a(g260909 +g260911 +S'one' +p260913 +tp260914 +a(g260911 +g260913 +S'tint,' +p260915 +tp260916 +a(g260913 +g260915 +S'but' +p260917 +tp260918 +a(g260915 +g260917 +S'shining' +p260919 +tp260920 +a(g260917 +g260919 +S'through' +p260921 +tp260922 +a(g260919 +g260921 +S'each' +p260923 +tp260924 +a(g260921 +g260923 +S'other,' +p260925 +tp260926 +a(g260923 +g260925 +S'like' +p260927 +tp260928 +a(g260925 +g260927 +S'blood' +p260929 +tp260930 +a(g260927 +g260929 +S'through' +p260931 +tp260932 +a(g260929 +g260931 +S'natural' +p260933 +tp260934 +a(g260931 +g260933 +S'skin."' +p260935 +tp260936 +a(g260933 +g260935 +S'ellsworth' +p260937 +tp260938 +a(g260935 +g260937 +S'kelly' +p260939 +tp260940 +a(g260937 +g260939 +S'realized' +p260941 +tp260942 +a(g260939 +g260941 +S'his' +p260943 +tp260944 +a(g260941 +g260943 +S'first' +p260945 +tp260946 +a(g260943 +g260945 +S'abstractions' +p260947 +tp260948 +a(g260945 +g260947 +S'during' +p260949 +tp260950 +a(g260947 +g260949 +S'his' +p260951 +tp260952 +a(g260949 +g260951 +S'stay' +p260953 +tp260954 +a(g260951 +g260953 +S'in' +p260955 +tp260956 +a(g260953 +g260955 +S'france' +p260957 +tp260958 +a(g260955 +g260957 +S'from' +p260959 +tp260960 +a(g260957 +g260959 +S'1948' +p260961 +tp260962 +a(g260959 +g260961 +S'to' +p260963 +tp260964 +a(g260961 +g260963 +S'1954.' +p260965 +tp260966 +a(g260963 +g260965 +S'in' +p260967 +tp260968 +a(g260965 +g260967 +S'these' +p260969 +tp260970 +a(g260967 +g260969 +S'extremely' +p260971 +tp260972 +a(g260969 +g260971 +S'productive' +p260973 +tp260974 +a(g260971 +g260973 +S'years,' +p260975 +tp260976 +a(g260973 +g260975 +S'he' +p260977 +tp260978 +a(g260975 +g260977 +S'created' +p260979 +tp260980 +a(g260977 +g260979 +S'a' +p260981 +tp260982 +a(g260979 +g260981 +S'body' +p260983 +tp260984 +a(g260981 +g260983 +S'of' +p260985 +tp260986 +a(g260983 +g260985 +S'work' +p260987 +tp260988 +a(g260985 +g260987 +S'whose' +p260989 +tp260990 +a(g260987 +g260989 +S'refinement' +p260991 +tp260992 +a(g260989 +g260991 +S'of' +p260993 +tp260994 +a(g260991 +g260993 +S'line,' +p260995 +tp260996 +a(g260993 +g260995 +S'form,' +p260997 +tp260998 +a(g260995 +g260997 +S'and' +p260999 +tp261000 +a(g260997 +g260999 +S'color' +p261001 +tp261002 +a(g260999 +g261001 +S'remains' +p261003 +tp261004 +a(g261001 +g261003 +S'the' +p261005 +tp261006 +a(g261003 +g261005 +S'fundamental' +p261007 +tp261008 +a(g261005 +g261007 +S'language' +p261009 +tp261010 +a(g261007 +g261009 +S'of' +p261011 +tp261012 +a(g261009 +g261011 +S'his' +p261013 +tp261014 +a(g261011 +g261013 +S'art.' +p261015 +tp261016 +a(g261013 +g261015 +S'in' +p261017 +tp261018 +a(g261015 +g261017 +S'november' +p261019 +tp261020 +a(g261017 +g261019 +S'1951,' +p261021 +tp261022 +a(g261019 +g261021 +S'kelly' +p261023 +tp261024 +a(g261021 +g261023 +S'left' +p261025 +tp261026 +a(g261023 +g261025 +S'paris' +p261027 +tp261028 +a(g261025 +g261027 +S'for' +p261029 +tp261030 +a(g261027 +g261029 +S'the' +p261031 +tp261032 +a(g261029 +g261031 +S'mediterranean' +p261033 +tp261034 +a(g261031 +g261033 +S'fishing' +p261035 +tp261036 +a(g261033 +g261035 +S'village' +p261037 +tp261038 +a(g261035 +g261037 +S'of' +p261039 +tp261040 +a(g261037 +g261039 +S'sanary,' +p261041 +tp261042 +a(g261039 +g261041 +S'where' +p261043 +tp261044 +a(g261041 +g261043 +S'he' +p261045 +tp261046 +a(g261043 +g261045 +S'remained' +p261047 +tp261048 +a(g261045 +g261047 +S'until' +p261049 +tp261050 +a(g261047 +g261049 +S'may' +p261051 +tp261052 +a(g261049 +g261051 +S'of' +p261053 +tp261054 +a(g261051 +g261053 +S'the' +p261055 +tp261056 +a(g261053 +g261055 +S'following' +p261057 +tp261058 +a(g261055 +g261057 +S'year.' +p261059 +tp261060 +a(g261057 +g261059 +S'there' +p261061 +tp261062 +a(g261059 +g261061 +S'kelly' +p261063 +tp261064 +a(g261061 +g261063 +S'produced' +p261065 +tp261066 +a(g261063 +g261065 +S'his' +p261067 +tp261068 +a(g261065 +g261067 +S'first' +p261069 +tp261070 +a(g261067 +g261069 +S'monochrome' +p261071 +tp261072 +a(g261069 +g261071 +S'polyptychs' +p261073 +tp261074 +a(g261071 +g261073 +S'and' +p261075 +tp261076 +a(g261073 +g261075 +S'studies' +p261077 +tp261078 +a(g261075 +g261077 +S'for' +p261079 +tp261080 +a(g261077 +g261079 +S'related' +p261081 +tp261082 +a(g261079 +g261081 +S'works' +p261083 +tp261084 +a(g261081 +g261083 +S'that' +p261085 +tp261086 +a(g261083 +g261085 +S'he' +p261087 +tp261088 +a(g261085 +g261087 +S'executed' +p261089 +tp261090 +a(g261087 +g261089 +S'later.' +p261091 +tp261092 +a(g261089 +g261091 +S'the' +p261093 +tp261094 +a(g261091 +g261093 +S'colors' +p261095 +tp261096 +a(g261093 +g261095 +S'for' +p261097 +tp261098 +a(g261095 +g261097 +S'during' +p261099 +tp261100 +a(g261097 +g261099 +S'this' +p261101 +tp261102 +a(g261099 +g261101 +S'period,' +p261103 +tp261104 +a(g261101 +g261103 +S'kelly' +p261105 +tp261106 +a(g261103 +g261105 +S'spent' +p261107 +tp261108 +a(g261105 +g261107 +S'a' +p261109 +tp261110 +a(g261107 +g261109 +S'lot' +p261111 +tp261112 +a(g261109 +g261111 +S'of' +p261113 +tp261114 +a(g261111 +g261113 +S'time' +p261115 +tp261116 +a(g261113 +g261115 +S'looking' +p261117 +tp261118 +a(g261115 +g261117 +S'at' +p261119 +tp261120 +a(g261117 +g261119 +S'art' +p261121 +tp261122 +a(g261119 +g261121 +S'and' +p261123 +tp261124 +a(g261121 +g261123 +S'architecture' +p261125 +tp261126 +a(g261123 +g261125 +S'in' +p261127 +tp261128 +a(g261125 +g261127 +S'europe.' +p261129 +tp261130 +a(g261127 +g261129 +S'the' +p261131 +tp261132 +a(g261129 +g261131 +S'geometric' +p261133 +tp261134 +a(g261131 +g261133 +S'structures' +p261135 +tp261136 +a(g261133 +g261135 +S'he' +p261137 +tp261138 +a(g261135 +g261137 +S'saw' +p261139 +tp261140 +a(g261137 +g261139 +S'probably' +p261141 +tp261142 +a(g261139 +g261141 +S'provided' +p261143 +tp261144 +a(g261141 +g261143 +S'source' +p261145 +tp261146 +a(g261143 +g261145 +S'material' +p261147 +tp261148 +a(g261145 +g261147 +S'for' +p261149 +tp261150 +a(g261147 +g261149 +S"kelly's" +p261151 +tp261152 +a(g261149 +g261151 +S'works' +p261153 +tp261154 +a(g261151 +g261153 +S'from' +p261155 +tp261156 +a(g261153 +g261155 +S'his' +p261157 +tp261158 +a(g261155 +g261157 +S'years' +p261159 +tp261160 +a(g261157 +g261159 +S'in' +p261161 +tp261162 +a(g261159 +g261161 +S'france' +p261163 +tp261164 +a(g261161 +g261163 +S'are' +p261165 +tp261166 +a(g261163 +g261165 +S'characterized' +p261167 +tp261168 +a(g261165 +g261167 +S'chiefly' +p261169 +tp261170 +a(g261167 +g261169 +S'by' +p261171 +tp261172 +a(g261169 +g261171 +S'his' +p261173 +tp261174 +a(g261171 +g261173 +S'use' +p261175 +tp261176 +a(g261173 +g261175 +S'of' +p261177 +tp261178 +a(g261175 +g261177 +S'multiple' +p261179 +tp261180 +a(g261177 +g261179 +S'rectangular' +p261181 +tp261182 +a(g261179 +g261181 +S'planes,' +p261183 +tp261184 +a(g261181 +g261183 +S'most' +p261185 +tp261186 +a(g261183 +g261185 +S'of' +p261187 +tp261188 +a(g261185 +g261187 +S'which' +p261189 +tp261190 +a(g261187 +g261189 +S'are' +p261191 +tp261192 +a(g261189 +g261191 +S'uniform' +p261193 +tp261194 +a(g261191 +g261193 +S'in' +p261195 +tp261196 +a(g261193 +g261195 +S'size' +p261197 +tp261198 +a(g261195 +g261197 +S'within' +p261199 +tp261200 +a(g261197 +g261199 +S'a' +p261201 +tp261202 +a(g261199 +g261201 +S'given' +p261203 +tp261204 +a(g261201 +g261203 +S'work.' +p261205 +tp261206 +a(g261203 +g261205 +S'in' +p261207 +tp261208 +a(g261205 +g261207 +S'(text' +p261209 +tp261210 +a(g261207 +g261209 +S'by' +p261211 +tp261212 +a(g261209 +g261211 +S'molly' +p261213 +tp261214 +a(g261211 +g261213 +S'donovan,' +p261215 +tp261216 +a(g261213 +g261215 +S'published' +p261217 +tp261218 +a(g261215 +g261217 +S'in' +p261219 +tp261220 +a(g261217 +g261219 +S'the' +p261221 +tp261222 +a(g261219 +g261221 +S'national' +p261223 +tp261224 +a(g261221 +g261223 +S'gallery' +p261225 +tp261226 +a(g261223 +g261225 +S'of' +p261227 +tp261228 +a(g261225 +g261227 +S'art' +p261229 +tp261230 +a(g261227 +g261229 +S'exhibition' +p261231 +tp261232 +a(g261229 +g261231 +S'catalogue,' +p261233 +tp261234 +a(g261231 +g261233 +S'notes' +p261235 +tp261236 +a(g261233 +g261235 +S'' +p261239 +tp261240 +a(g261237 +g261239 +S'' +p261243 +tp261244 +a(g261241 +g261243 +S'' +p261247 +tp261248 +a(g261245 +g261247 +S'' +p261251 +tp261252 +a(g261249 +g261251 +S'' +p261255 +tp261256 +a(g261253 +g261255 +S'gerbrand' +p261257 +tp261258 +a(g261255 +g261257 +S'van' +p261259 +tp261260 +a(g261257 +g261259 +S'den' +p261261 +tp261262 +a(g261259 +g261261 +S'eeckhout,' +p261263 +tp261264 +a(g261261 +g261263 +S'one' +p261265 +tp261266 +a(g261263 +g261265 +S'of' +p261267 +tp261268 +a(g261265 +g261267 +S'the' +p261269 +tp261270 +a(g261267 +g261269 +S'subject' +p261271 +tp261272 +a(g261269 +g261271 +S'of' +p261273 +tp261274 +a(g261271 +g261273 +S'this' +p261275 +tp261276 +a(g261273 +g261275 +S'painting,' +p261277 +tp261278 +a(g261275 +g261277 +S'the' +p261279 +tp261280 +a(g261277 +g261279 +S'story' +p261281 +tp261282 +a(g261279 +g261281 +S'of' +p261283 +tp261284 +a(g261281 +g261283 +S'the' +p261285 +tp261286 +a(g261283 +g261285 +S'levite' +p261287 +tp261288 +a(g261285 +g261287 +S'and' +p261289 +tp261290 +a(g261287 +g261289 +S'his' +p261291 +tp261292 +a(g261289 +g261291 +S'concubine,' +p261293 +tp261294 +a(g261291 +g261293 +S'is' +p261295 +tp261296 +a(g261293 +g261295 +S'taken' +p261297 +tp261298 +a(g261295 +g261297 +S'from' +p261299 +tp261300 +a(g261297 +g261299 +S'the' +p261301 +tp261302 +a(g261299 +g261301 +S'old' +p261303 +tp261304 +a(g261301 +g261303 +S'testament' +p261305 +tp261306 +a(g261303 +g261305 +S'book' +p261307 +tp261308 +a(g261305 +g261307 +S'of' +p261309 +tp261310 +a(g261307 +g261309 +S'judges.' +p261311 +tp261312 +a(g261309 +g261311 +S'after' +p261313 +tp261314 +a(g261311 +g261313 +S'the' +p261315 +tp261316 +a(g261313 +g261315 +S'levite' +p261317 +tp261318 +a(g261315 +g261317 +S'had' +p261319 +tp261320 +a(g261317 +g261319 +S'brought' +p261321 +tp261322 +a(g261319 +g261321 +S'home' +p261323 +tp261324 +a(g261321 +g261323 +S'a' +p261325 +tp261326 +a(g261323 +g261325 +S'woman' +p261327 +tp261328 +a(g261325 +g261327 +S'from' +p261329 +tp261330 +a(g261327 +g261329 +S'bethlehem' +p261331 +tp261332 +a(g261329 +g261331 +S'to' +p261333 +tp261334 +a(g261331 +g261333 +S'be' +p261335 +tp261336 +a(g261333 +g261335 +S'his' +p261337 +tp261338 +a(g261335 +g261337 +S'concubine,' +p261339 +tp261340 +a(g261337 +g261339 +S'she' +p261341 +tp261342 +a(g261339 +g261341 +S'left' +p261343 +tp261344 +a(g261341 +g261343 +S'him' +p261345 +tp261346 +a(g261343 +g261345 +S'and' +p261347 +tp261348 +a(g261345 +g261347 +S'returned' +p261349 +tp261350 +a(g261347 +g261349 +S'to' +p261351 +tp261352 +a(g261349 +g261351 +S'her' +p261353 +tp261354 +a(g261351 +g261353 +S"father's" +p261355 +tp261356 +a(g261353 +g261355 +S'house.' +p261357 +tp261358 +a(g261355 +g261357 +S'while' +p261359 +tp261360 +a(g261357 +g261359 +S'the' +p261361 +tp261362 +a(g261359 +g261361 +S'concubine' +p261363 +tp261364 +a(g261361 +g261363 +S'was' +p261365 +tp261366 +a(g261363 +g261365 +S'staying' +p261367 +tp261368 +a(g261365 +g261367 +S'with' +p261369 +tp261370 +a(g261367 +g261369 +S'her' +p261371 +tp261372 +a(g261369 +g261371 +S'father,' +p261373 +tp261374 +a(g261371 +g261373 +S'the' +p261375 +tp261376 +a(g261373 +g261375 +S'levite' +p261377 +tp261378 +a(g261375 +g261377 +S'found' +p261379 +tp261380 +a(g261377 +g261379 +S'her' +p261381 +tp261382 +a(g261379 +g261381 +S'and' +p261383 +tp261384 +a(g261381 +g261383 +S'took' +p261385 +tp261386 +a(g261383 +g261385 +S'her' +p261387 +tp261388 +a(g261385 +g261387 +S'back' +p261389 +tp261390 +a(g261387 +g261389 +S'to' +p261391 +tp261392 +a(g261389 +g261391 +S'his' +p261393 +tp261394 +a(g261391 +g261393 +S'home' +p261395 +tp261396 +a(g261393 +g261395 +S'in' +p261397 +tp261398 +a(g261395 +g261397 +S'the' +p261399 +tp261400 +a(g261397 +g261399 +S'country' +p261401 +tp261402 +a(g261399 +g261401 +S'of' +p261403 +tp261404 +a(g261401 +g261403 +S'ephraim.' +p261405 +tp261406 +a(g261403 +g261405 +S'on' +p261407 +tp261408 +a(g261405 +g261407 +S'their' +p261409 +tp261410 +a(g261407 +g261409 +S'journey' +p261411 +tp261412 +a(g261409 +g261411 +S'home,' +p261413 +tp261414 +a(g261411 +g261413 +S'they' +p261415 +tp261416 +a(g261413 +g261415 +S'sought' +p261417 +tp261418 +a(g261415 +g261417 +S'shelter' +p261419 +tp261420 +a(g261417 +g261419 +S'in' +p261421 +tp261422 +a(g261419 +g261421 +S'gibeah,' +p261423 +tp261424 +a(g261421 +g261423 +S'but' +p261425 +tp261426 +a(g261423 +g261425 +S'were' +p261427 +tp261428 +a(g261425 +g261427 +S'unsuccessful' +p261429 +tp261430 +a(g261427 +g261429 +S'until' +p261431 +tp261432 +a(g261429 +g261431 +S'a' +p261433 +tp261434 +a(g261431 +g261433 +S'field' +p261435 +tp261436 +a(g261433 +g261435 +S'laborer' +p261437 +tp261438 +a(g261435 +g261437 +S'offered' +p261439 +tp261440 +a(g261437 +g261439 +S'the' +p261441 +tp261442 +a(g261439 +g261441 +S'couple' +p261443 +tp261444 +a(g261441 +g261443 +S'lodging' +p261445 +tp261446 +a(g261443 +g261445 +S'in' +p261447 +tp261448 +a(g261445 +g261447 +S'his' +p261449 +tp261450 +a(g261447 +g261449 +S'house.' +p261451 +tp261452 +a(g261449 +g261451 +S'it' +p261453 +tp261454 +a(g261451 +g261453 +S'is' +p261455 +tp261456 +a(g261453 +g261455 +S'this' +p261457 +tp261458 +a(g261455 +g261457 +S'moment' +p261459 +tp261460 +a(g261457 +g261459 +S'that' +p261461 +tp261462 +a(g261459 +g261461 +S'van' +p261463 +tp261464 +a(g261461 +g261463 +S'den' +p261465 +tp261466 +a(g261463 +g261465 +S'eeckhout' +p261467 +tp261468 +a(g261465 +g261467 +S'depicts.' +p261469 +tp261470 +a(g261467 +g261469 +S'as' +p261471 +tp261472 +a(g261469 +g261471 +S'the' +p261473 +tp261474 +a(g261471 +g261473 +S'story' +p261475 +tp261476 +a(g261473 +g261475 +S'then' +p261477 +tp261478 +a(g261475 +g261477 +S'goes,' +p261479 +tp261480 +a(g261477 +g261479 +S'a' +p261481 +tp261482 +a(g261479 +g261481 +S'few' +p261483 +tp261484 +a(g261481 +g261483 +S'wicked' +p261485 +tp261486 +a(g261483 +g261485 +S'men' +p261487 +tp261488 +a(g261485 +g261487 +S'surrounded' +p261489 +tp261490 +a(g261487 +g261489 +S'the' +p261491 +tp261492 +a(g261489 +g261491 +S"laborer's" +p261493 +tp261494 +a(g261491 +g261493 +S'house' +p261495 +tp261496 +a(g261493 +g261495 +S'and' +p261497 +tp261498 +a(g261495 +g261497 +S'threatened' +p261499 +tp261500 +a(g261497 +g261499 +S'to' +p261501 +tp261502 +a(g261499 +g261501 +S'do' +p261503 +tp261504 +a(g261501 +g261503 +S'the' +p261505 +tp261506 +a(g261503 +g261505 +S'levite' +p261507 +tp261508 +a(g261505 +g261507 +S'harm.' +p261509 +tp261510 +a(g261507 +g261509 +S'the' +p261511 +tp261512 +a(g261509 +g261511 +S'levite' +p261513 +tp261514 +a(g261511 +g261513 +S'then' +p261515 +tp261516 +a(g261513 +g261515 +S'pushed' +p261517 +tp261518 +a(g261515 +g261517 +S'the' +p261519 +tp261520 +a(g261517 +g261519 +S'concubine' +p261521 +tp261522 +a(g261519 +g261521 +S'out' +p261523 +tp261524 +a(g261521 +g261523 +S'the' +p261525 +tp261526 +a(g261523 +g261525 +S'door' +p261527 +tp261528 +a(g261525 +g261527 +S'so' +p261529 +tp261530 +a(g261527 +g261529 +S'the' +p261531 +tp261532 +a(g261529 +g261531 +S'men' +p261533 +tp261534 +a(g261531 +g261533 +S'could' +p261535 +tp261536 +a(g261533 +g261535 +S'attack' +p261537 +tp261538 +a(g261535 +g261537 +S'her' +p261539 +tp261540 +a(g261537 +g261539 +S'instead.' +p261541 +tp261542 +a(g261539 +g261541 +S'the' +p261543 +tp261544 +a(g261541 +g261543 +S'next' +p261545 +tp261546 +a(g261543 +g261545 +S'day,' +p261547 +tp261548 +a(g261545 +g261547 +S'he' +p261549 +tp261550 +a(g261547 +g261549 +S'left' +p261551 +tp261552 +a(g261549 +g261551 +S'gibeah' +p261553 +tp261554 +a(g261551 +g261553 +S'with' +p261555 +tp261556 +a(g261553 +g261555 +S'her' +p261557 +tp261558 +a(g261555 +g261557 +S'lifeless' +p261559 +tp261560 +a(g261557 +g261559 +S'body' +p261561 +tp261562 +a(g261559 +g261561 +S'set' +p261563 +tp261564 +a(g261561 +g261563 +S'atop' +p261565 +tp261566 +a(g261563 +g261565 +S'a' +p261567 +tp261568 +a(g261565 +g261567 +S'donkey.' +p261569 +tp261570 +a(g261567 +g261569 +S'when' +p261571 +tp261572 +a(g261569 +g261571 +S'he' +p261573 +tp261574 +a(g261571 +g261573 +S'got' +p261575 +tp261576 +a(g261573 +g261575 +S'home,' +p261577 +tp261578 +a(g261575 +g261577 +S'the' +p261579 +tp261580 +a(g261577 +g261579 +S'levite' +p261581 +tp261582 +a(g261579 +g261581 +S'cut' +p261583 +tp261584 +a(g261581 +g261583 +S'the' +p261585 +tp261586 +a(g261583 +g261585 +S"concubine's" +p261587 +tp261588 +a(g261585 +g261587 +S'body' +p261589 +tp261590 +a(g261587 +g261589 +S'into' +p261591 +tp261592 +a(g261589 +g261591 +S'twelve' +p261593 +tp261594 +a(g261591 +g261593 +S'pieces' +p261595 +tp261596 +a(g261593 +g261595 +S'and' +p261597 +tp261598 +a(g261595 +g261597 +S'sent' +p261599 +tp261600 +a(g261597 +g261599 +S'one' +p261601 +tp261602 +a(g261599 +g261601 +S'piece' +p261603 +tp261604 +a(g261601 +g261603 +S'to' +p261605 +tp261606 +a(g261603 +g261605 +S'each' +p261607 +tp261608 +a(g261605 +g261607 +S'tribe' +p261609 +tp261610 +a(g261607 +g261609 +S'of' +p261611 +tp261612 +a(g261609 +g261611 +S'israel.' +p261613 +tp261614 +a(g261611 +g261613 +S'traditionally' +p261615 +tp261616 +a(g261613 +g261615 +S'the' +p261617 +tp261618 +a(g261615 +g261617 +S'narrative' +p261619 +tp261620 +a(g261617 +g261619 +S'had' +p261621 +tp261622 +a(g261619 +g261621 +S'been' +p261623 +tp261624 +a(g261621 +g261623 +S'used' +p261625 +tp261626 +a(g261623 +g261625 +S'to' +p261627 +tp261628 +a(g261625 +g261627 +S'warn' +p261629 +tp261630 +a(g261627 +g261629 +S'against' +p261631 +tp261632 +a(g261629 +g261631 +S'the' +p261633 +tp261634 +a(g261631 +g261633 +S'sin' +p261635 +tp261636 +a(g261633 +g261635 +S'of' +p261637 +tp261638 +a(g261635 +g261637 +S'adultery.' +p261639 +tp261640 +a(g261637 +g261639 +S'however,' +p261641 +tp261642 +a(g261639 +g261641 +S'by' +p261643 +tp261644 +a(g261641 +g261643 +S'depicting' +p261645 +tp261646 +a(g261643 +g261645 +S'the' +p261647 +tp261648 +a(g261645 +g261647 +S'peaceful' +p261649 +tp261650 +a(g261647 +g261649 +S'meeting' +p261651 +tp261652 +a(g261649 +g261651 +S'in' +p261653 +tp261654 +a(g261651 +g261653 +S'gibeah' +p261655 +tp261656 +a(g261653 +g261655 +S'instead' +p261657 +tp261658 +a(g261655 +g261657 +S'of' +p261659 +tp261660 +a(g261657 +g261659 +S'some' +p261661 +tp261662 +a(g261659 +g261661 +S'of' +p261663 +tp261664 +a(g261661 +g261663 +S'the' +p261665 +tp261666 +a(g261663 +g261665 +S'more' +p261667 +tp261668 +a(g261665 +g261667 +S'appalling' +p261669 +tp261670 +a(g261667 +g261669 +S'episodes' +p261671 +tp261672 +a(g261669 +g261671 +S'in' +p261673 +tp261674 +a(g261671 +g261673 +S'the' +p261675 +tp261676 +a(g261673 +g261675 +S'story,' +p261677 +tp261678 +a(g261675 +g261677 +S'the' +p261679 +tp261680 +a(g261677 +g261679 +S'artist' +p261681 +tp261682 +a(g261679 +g261681 +S'emphasizes—through' +p261683 +tp261684 +a(g261681 +g261683 +S'the' +p261685 +tp261686 +a(g261683 +g261685 +S'moral' +p261687 +tp261688 +a(g261685 +g261687 +S'exemplar' +p261689 +tp261690 +a(g261687 +g261689 +S'of' +p261691 +tp261692 +a(g261689 +g261691 +S'the' +p261693 +tp261694 +a(g261691 +g261693 +S'field' +p261695 +tp261696 +a(g261693 +g261695 +S'laborer' +p261697 +tp261698 +a(g261695 +g261697 +S'offering' +p261699 +tp261700 +a(g261697 +g261699 +S'hospitality' +p261701 +tp261702 +a(g261699 +g261701 +S'to' +p261703 +tp261704 +a(g261701 +g261703 +S'strangers—the' +p261705 +tp261706 +a(g261703 +g261705 +S'christian' +p261707 +tp261708 +a(g261705 +g261707 +S'commandment' +p261709 +tp261710 +a(g261707 +g261709 +S'to' +p261711 +tp261712 +a(g261709 +g261711 +S'love' +p261713 +tp261714 +a(g261711 +g261713 +S"one's" +p261715 +tp261716 +a(g261713 +g261715 +S'neighbor.' +p261717 +tp261718 +a(g261715 +g261717 +S'although' +p261719 +tp261720 +a(g261717 +g261719 +S'this' +p261721 +tp261722 +a(g261719 +g261721 +S'unusual' +p261723 +tp261724 +a(g261721 +g261723 +S'biblical' +p261725 +tp261726 +a(g261723 +g261725 +S'story' +p261727 +tp261728 +a(g261725 +g261727 +S'was' +p261729 +tp261730 +a(g261727 +g261729 +S'infrequently' +p261731 +tp261732 +a(g261729 +g261731 +S'depicted' +p261733 +tp261734 +a(g261731 +g261733 +S'by' +p261735 +tp261736 +a(g261733 +g261735 +S'dutch' +p261737 +tp261738 +a(g261735 +g261737 +S'artists,' +p261739 +tp261740 +a(g261737 +g261739 +S'van' +p261741 +tp261742 +a(g261739 +g261741 +S'den' +p261743 +tp261744 +a(g261741 +g261743 +S'eeckhout' +p261745 +tp261746 +a(g261743 +g261745 +S'painted' +p261747 +tp261748 +a(g261745 +g261747 +S'it' +p261749 +tp261750 +a(g261747 +g261749 +S'at' +p261751 +tp261752 +a(g261749 +g261751 +S'least' +p261753 +tp261754 +a(g261751 +g261753 +S'three' +p261755 +tp261756 +a(g261753 +g261755 +S'times:' +p261757 +tp261758 +a(g261755 +g261757 +S'a' +p261759 +tp261760 +a(g261757 +g261759 +S'first' +p261761 +tp261762 +a(g261759 +g261761 +S'version' +p261763 +tp261764 +a(g261761 +g261763 +S'in' +p261765 +tp261766 +a(g261763 +g261765 +S'1645' +p261767 +tp261768 +a(g261765 +g261767 +S'(staatliche' +p261769 +tp261770 +a(g261767 +g261769 +S'museen,' +p261771 +tp261772 +a(g261769 +g261771 +S'berlin)' +p261773 +tp261774 +a(g261771 +g261773 +S'and' +p261775 +tp261776 +a(g261773 +g261775 +S'two' +p261777 +tp261778 +a(g261775 +g261777 +S'others' +p261779 +tp261780 +a(g261777 +g261779 +S'from' +p261781 +tp261782 +a(g261779 +g261781 +S'the' +p261783 +tp261784 +a(g261781 +g261783 +S'late' +p261785 +tp261786 +a(g261783 +g261785 +S'1650s,' +p261787 +tp261788 +a(g261785 +g261787 +S'this' +p261789 +tp261790 +a(g261787 +g261789 +S'one,' +p261791 +tp261792 +a(g261789 +g261791 +S'and' +p261793 +tp261794 +a(g261791 +g261793 +S'another' +p261795 +tp261796 +a(g261793 +g261795 +S'in' +p261797 +tp261798 +a(g261795 +g261797 +S'the' +p261799 +tp261800 +a(g261797 +g261799 +S'pushkin' +p261801 +tp261802 +a(g261799 +g261801 +S'museum,' +p261803 +tp261804 +a(g261801 +g261803 +S'moscow.' +p261805 +tp261806 +a(g261803 +g261805 +S'jean-joseph' +p261807 +tp261808 +a(g261805 +g261807 +S'benjamin-constant' +p261809 +tp261810 +a(g261807 +g261809 +S'was' +p261811 +tp261812 +a(g261809 +g261811 +S'among' +p261813 +tp261814 +a(g261811 +g261813 +S'the' +p261815 +tp261816 +a(g261813 +g261815 +S'preeminent' +p261817 +tp261818 +a(g261815 +g261817 +S'painters' +p261819 +tp261820 +a(g261817 +g261819 +S'of' +p261821 +tp261822 +a(g261819 +g261821 +S'orientalist' +p261823 +tp261824 +a(g261821 +g261823 +S'subjects' +p261825 +tp261826 +a(g261823 +g261825 +S'in' +p261827 +tp261828 +a(g261825 +g261827 +S'france' +p261829 +tp261830 +a(g261827 +g261829 +S'in' +p261831 +tp261832 +a(g261829 +g261831 +S'the' +p261833 +tp261834 +a(g261831 +g261833 +S'latter' +p261835 +tp261836 +a(g261833 +g261835 +S'decades' +p261837 +tp261838 +a(g261835 +g261837 +S'of' +p261839 +tp261840 +a(g261837 +g261839 +S'the' +p261841 +tp261842 +a(g261839 +g261841 +S'19th' +p261843 +tp261844 +a(g261841 +g261843 +S'century.' +p261845 +tp261846 +a(g261843 +g261845 +S'in' +p261847 +tp261848 +a(g261845 +g261847 +S'1859,' +p261849 +tp261850 +a(g261847 +g261849 +S'he' +p261851 +tp261852 +a(g261849 +g261851 +S'enrolled' +p261853 +tp261854 +a(g261851 +g261853 +S'at' +p261855 +tp261856 +a(g261853 +g261855 +S'the' +p261857 +tp261858 +a(g261855 +g261857 +S'école' +p261859 +tp261860 +a(g261857 +g261859 +S'des' +p261861 +tp261862 +a(g261859 +g261861 +S'beaux-arts' +p261863 +tp261864 +a(g261861 +g261863 +S'in' +p261865 +tp261866 +a(g261863 +g261865 +S'toulouse' +p261867 +tp261868 +a(g261865 +g261867 +S'where' +p261869 +tp261870 +a(g261867 +g261869 +S'he' +p261871 +tp261872 +a(g261869 +g261871 +S'remained' +p261873 +tp261874 +a(g261871 +g261873 +S'until' +p261875 +tp261876 +a(g261873 +g261875 +S'1866' +p261877 +tp261878 +a(g261875 +g261877 +S'when' +p261879 +tp261880 +a(g261877 +g261879 +S'a' +p261881 +tp261882 +a(g261879 +g261881 +S'municipal' +p261883 +tp261884 +a(g261881 +g261883 +S'scholarship' +p261885 +tp261886 +a(g261883 +g261885 +S'allowed' +p261887 +tp261888 +a(g261885 +g261887 +S'him' +p261889 +tp261890 +a(g261887 +g261889 +S'to' +p261891 +tp261892 +a(g261889 +g261891 +S'continue' +p261893 +tp261894 +a(g261891 +g261893 +S'his' +p261895 +tp261896 +a(g261893 +g261895 +S'artistic' +p261897 +tp261898 +a(g261895 +g261897 +S'training' +p261899 +tp261900 +a(g261897 +g261899 +S'in' +p261901 +tp261902 +a(g261899 +g261901 +S'paris.' +p261903 +tp261904 +a(g261901 +g261903 +S'in' +p261905 +tp261906 +a(g261903 +g261905 +S'1871,' +p261907 +tp261908 +a(g261905 +g261907 +S'benjamin-constant' +p261909 +tp261910 +a(g261907 +g261909 +S'embarked' +p261911 +tp261912 +a(g261909 +g261911 +S'upon' +p261913 +tp261914 +a(g261911 +g261913 +S'an' +p261915 +tp261916 +a(g261913 +g261915 +S'extended' +p261917 +tp261918 +a(g261915 +g261917 +S'sojourn,' +p261919 +tp261920 +a(g261917 +g261919 +S'spending' +p261921 +tp261922 +a(g261919 +g261921 +S'the' +p261923 +tp261924 +a(g261921 +g261923 +S'better' +p261925 +tp261926 +a(g261923 +g261925 +S'part' +p261927 +tp261928 +a(g261925 +g261927 +S'of' +p261929 +tp261930 +a(g261927 +g261929 +S'two' +p261931 +tp261932 +a(g261929 +g261931 +S'years' +p261933 +tp261934 +a(g261931 +g261933 +S'abroad,' +p261935 +tp261936 +a(g261933 +g261935 +S'traveling' +p261937 +tp261938 +a(g261935 +g261937 +S'first' +p261939 +tp261940 +a(g261937 +g261939 +S'through' +p261941 +tp261942 +a(g261939 +g261941 +S'moorish' +p261943 +tp261944 +a(g261941 +g261943 +S'spain' +p261945 +tp261946 +a(g261943 +g261945 +S'before' +p261947 +tp261948 +a(g261945 +g261947 +S'joining' +p261949 +tp261950 +a(g261947 +g261949 +S'charles' +p261951 +tp261952 +a(g261949 +g261951 +S'joseph' +p261953 +tp261954 +a(g261951 +g261953 +S'tissot,' +p261955 +tp261956 +a(g261953 +g261955 +S'french' +p261957 +tp261958 +a(g261955 +g261957 +S'plenipotentiary' +p261959 +tp261960 +a(g261957 +g261959 +S'to' +p261961 +tp261962 +a(g261959 +g261961 +S'morocco.' +p261963 +tp261964 +a(g261961 +g261963 +S'during' +p261965 +tp261966 +a(g261963 +g261965 +S'the' +p261967 +tp261968 +a(g261965 +g261967 +S"artist's" +p261969 +tp261970 +a(g261967 +g261969 +S'16-month' +p261971 +tp261972 +a(g261969 +g261971 +S'stay' +p261973 +tp261974 +a(g261971 +g261973 +S'he' +p261975 +tp261976 +a(g261973 +g261975 +S'collected' +p261977 +tp261978 +a(g261975 +g261977 +S'artifacts' +p261979 +tp261980 +a(g261977 +g261979 +S'and' +p261981 +tp261982 +a(g261979 +g261981 +S'made' +p261983 +tp261984 +a(g261981 +g261983 +S'sketches' +p261985 +tp261986 +a(g261983 +g261985 +S'and' +p261987 +tp261988 +a(g261985 +g261987 +S'studies' +p261989 +tp261990 +a(g261987 +g261989 +S'that' +p261991 +tp261992 +a(g261989 +g261991 +S'would' +p261993 +tp261994 +a(g261991 +g261993 +S'provide' +p261995 +tp261996 +a(g261993 +g261995 +S'the' +p261997 +tp261998 +a(g261995 +g261997 +S'basis' +p261999 +tp262000 +a(g261997 +g261999 +S'for' +p262001 +tp262002 +a(g261999 +g262001 +S'his' +p262003 +tp262004 +a(g262001 +g262003 +S'numerous' +p262005 +tp262006 +a(g262003 +g262005 +S'compositions' +p262007 +tp262008 +a(g262005 +g262007 +S'in' +p262009 +tp262010 +a(g262007 +g262009 +S'the' +p262011 +tp262012 +a(g262009 +g262011 +S'years' +p262013 +tp262014 +a(g262011 +g262013 +S'to' +p262015 +tp262016 +a(g262013 +g262015 +S'come.' +p262017 +tp262018 +a(g262015 +g262017 +S'by' +p262019 +tp262020 +a(g262017 +g262019 +S'the' +p262021 +tp262022 +a(g262019 +g262021 +S'mid-1870s,' +p262023 +tp262024 +a(g262021 +g262023 +S'benjamin-constant' +p262025 +tp262026 +a(g262023 +g262025 +S'had' +p262027 +tp262028 +a(g262025 +g262027 +S'established' +p262029 +tp262030 +a(g262027 +g262029 +S'a' +p262031 +tp262032 +a(g262029 +g262031 +S'reputation' +p262033 +tp262034 +a(g262031 +g262033 +S'as' +p262035 +tp262036 +a(g262033 +g262035 +S'painter' +p262037 +tp262038 +a(g262035 +g262037 +S'of' +p262039 +tp262040 +a(g262037 +g262039 +S'orientalist' +p262041 +tp262042 +a(g262039 +g262041 +S'subjects,' +p262043 +tp262044 +a(g262041 +g262043 +S'ranging' +p262045 +tp262046 +a(g262043 +g262045 +S'from' +p262047 +tp262048 +a(g262045 +g262047 +S'grim' +p262049 +tp262050 +a(g262047 +g262049 +S'and' +p262051 +tp262052 +a(g262049 +g262051 +S'occasionally' +p262053 +tp262054 +a(g262051 +g262053 +S'violent' +p262055 +tp262056 +a(g262053 +g262055 +S'genre' +p262057 +tp262058 +a(g262055 +g262057 +S'scenes,' +p262059 +tp262060 +a(g262057 +g262059 +S'to' +p262061 +tp262062 +a(g262059 +g262061 +S'opulent' +p262063 +tp262064 +a(g262061 +g262063 +S'and' +p262065 +tp262066 +a(g262063 +g262065 +S'visually' +p262067 +tp262068 +a(g262065 +g262067 +S'alluring' +p262069 +tp262070 +a(g262067 +g262069 +S'harem' +p262071 +tp262072 +a(g262069 +g262071 +S'scenes.' +p262073 +tp262074 +a(g262071 +g262073 +S'benjamin-constant' +p262075 +tp262076 +a(g262073 +g262075 +S'took' +p262077 +tp262078 +a(g262075 +g262077 +S'great' +p262079 +tp262080 +a(g262077 +g262079 +S'delight' +p262081 +tp262082 +a(g262079 +g262081 +S'in' +p262083 +tp262084 +a(g262081 +g262083 +S'the' +p262085 +tp262086 +a(g262083 +g262085 +S'juxtaposition' +p262087 +tp262088 +a(g262085 +g262087 +S'of' +p262089 +tp262090 +a(g262087 +g262089 +S'the' +p262091 +tp262092 +a(g262089 +g262091 +S'richly' +p262093 +tp262094 +a(g262091 +g262093 +S'embroidered' +p262095 +tp262096 +a(g262093 +g262095 +S'fabric' +p262097 +tp262098 +a(g262095 +g262097 +S'against' +p262099 +tp262100 +a(g262097 +g262099 +S'the' +p262101 +tp262102 +a(g262099 +g262101 +S'smooth' +p262103 +tp262104 +a(g262101 +g262103 +S'pale' +p262105 +tp262106 +a(g262103 +g262105 +S'flesh' +p262107 +tp262108 +a(g262105 +g262107 +S'of' +p262109 +tp262110 +a(g262107 +g262109 +S'the' +p262111 +tp262112 +a(g262109 +g262111 +S"women's" +p262113 +tp262114 +a(g262111 +g262113 +S'arms' +p262115 +tp262116 +a(g262113 +g262115 +S'and' +p262117 +tp262118 +a(g262115 +g262117 +S'chests' +p262119 +tp262120 +a(g262117 +g262119 +S'and' +p262121 +tp262122 +a(g262119 +g262121 +S'the' +p262123 +tp262124 +a(g262121 +g262123 +S'subtle' +p262125 +tp262126 +a(g262123 +g262125 +S'variations' +p262127 +tp262128 +a(g262125 +g262127 +S'between' +p262129 +tp262130 +a(g262127 +g262129 +S'the' +p262131 +tp262132 +a(g262129 +g262131 +S'two' +p262133 +tp262134 +a(g262131 +g262133 +S'women.' +p262135 +tp262136 +a(g262133 +g262135 +S'on' +p262137 +tp262138 +a(g262135 +g262137 +S'the' +p262139 +tp262140 +a(g262137 +g262139 +S'right,' +p262141 +tp262142 +a(g262139 +g262141 +S'the' +p262143 +tp262144 +a(g262141 +g262143 +S'darkhaired' +p262145 +tp262146 +a(g262143 +g262145 +S'woman' +p262147 +tp262148 +a(g262145 +g262147 +S'gazes' +p262149 +tp262150 +a(g262147 +g262149 +S'directly' +p262151 +tp262152 +a(g262149 +g262151 +S'at' +p262153 +tp262154 +a(g262151 +g262153 +S'the' +p262155 +tp262156 +a(g262153 +g262155 +S'viewer' +p262157 +tp262158 +a(g262155 +g262157 +S'while' +p262159 +tp262160 +a(g262157 +g262159 +S'her' +p262161 +tp262162 +a(g262159 +g262161 +S'companion' +p262163 +tp262164 +a(g262161 +g262163 +S'is' +p262165 +tp262166 +a(g262163 +g262165 +S'shown' +p262167 +tp262168 +a(g262165 +g262167 +S'fully' +p262169 +tp262170 +a(g262167 +g262169 +S'in' +p262171 +tp262172 +a(g262169 +g262171 +S'repose,' +p262173 +tp262174 +a(g262171 +g262173 +S'her' +p262175 +tp262176 +a(g262173 +g262175 +S'body' +p262177 +tp262178 +a(g262175 +g262177 +S'relaxed' +p262179 +tp262180 +a(g262177 +g262179 +S'and' +p262181 +tp262182 +a(g262179 +g262181 +S'her' +p262183 +tp262184 +a(g262181 +g262183 +S'eyes' +p262185 +tp262186 +a(g262183 +g262185 +S'closed' +p262187 +tp262188 +a(g262185 +g262187 +S'as' +p262189 +tp262190 +a(g262187 +g262189 +S'if' +p262191 +tp262192 +a(g262189 +g262191 +S'lulled' +p262193 +tp262194 +a(g262191 +g262193 +S'to' +p262195 +tp262196 +a(g262193 +g262195 +S'sleep' +p262197 +tp262198 +a(g262195 +g262197 +S'by' +p262199 +tp262200 +a(g262197 +g262199 +S'the' +p262201 +tp262202 +a(g262199 +g262201 +S'musician' +p262203 +tp262204 +a(g262201 +g262203 +S'seated' +p262205 +tp262206 +a(g262203 +g262205 +S'behind' +p262207 +tp262208 +a(g262205 +g262207 +S'her.' +p262209 +tp262210 +a(g262207 +g262209 +S'the' +p262211 +tp262212 +a(g262209 +g262211 +S'paleness' +p262213 +tp262214 +a(g262211 +g262213 +S'of' +p262215 +tp262216 +a(g262213 +g262215 +S'her' +p262217 +tp262218 +a(g262215 +g262217 +S'skin' +p262219 +tp262220 +a(g262217 +g262219 +S'and' +p262221 +tp262222 +a(g262219 +g262221 +S'her' +p262223 +tp262224 +a(g262221 +g262223 +S'rich' +p262225 +tp262226 +a(g262223 +g262225 +S'auburn' +p262227 +tp262228 +a(g262225 +g262227 +S'hair' +p262229 +tp262230 +a(g262227 +g262229 +S'suggest' +p262231 +tp262232 +a(g262229 +g262231 +S'that' +p262233 +tp262234 +a(g262231 +g262233 +S'she' +p262235 +tp262236 +a(g262233 +g262235 +S'is' +p262237 +tp262238 +a(g262235 +g262237 +S'not' +p262239 +tp262240 +a(g262237 +g262239 +S'a' +p262241 +tp262242 +a(g262239 +g262241 +S'native.' +p262243 +tp262244 +a(g262241 +g262243 +S'playing' +p262245 +tp262246 +a(g262243 +g262245 +S'upon' +p262247 +tp262248 +a(g262245 +g262247 +S'contemporary' +p262249 +tp262250 +a(g262247 +g262249 +S'fantasies' +p262251 +tp262252 +a(g262249 +g262251 +S'of' +p262253 +tp262254 +a(g262251 +g262253 +S'european' +p262255 +tp262256 +a(g262253 +g262255 +S'beauties' +p262257 +tp262258 +a(g262255 +g262257 +S'who' +p262259 +tp262260 +a(g262257 +g262259 +S'have' +p262261 +tp262262 +a(g262259 +g262261 +S'been' +p262263 +tp262264 +a(g262261 +g262263 +S'spirited' +p262265 +tp262266 +a(g262263 +g262265 +S'away' +p262267 +tp262268 +a(g262265 +g262267 +S'to' +p262269 +tp262270 +a(g262267 +g262269 +S'lead' +p262271 +tp262272 +a(g262269 +g262271 +S'the' +p262273 +tp262274 +a(g262271 +g262273 +S'pampered,' +p262275 +tp262276 +a(g262273 +g262275 +S'cloistered' +p262277 +tp262278 +a(g262275 +g262277 +S'life' +p262279 +tp262280 +a(g262277 +g262279 +S'of' +p262281 +tp262282 +a(g262279 +g262281 +S'a' +p262283 +tp262284 +a(g262281 +g262283 +S'courtesan' +p262285 +tp262286 +a(g262283 +g262285 +S'in' +p262287 +tp262288 +a(g262285 +g262287 +S'a' +p262289 +tp262290 +a(g262287 +g262289 +S'harem—the' +p262291 +tp262292 +a(g262289 +g262291 +S'inclusion' +p262293 +tp262294 +a(g262291 +g262293 +S'of' +p262295 +tp262296 +a(g262293 +g262295 +S'the' +p262297 +tp262298 +a(g262295 +g262297 +S'man' +p262299 +tp262300 +a(g262297 +g262299 +S'standing' +p262301 +tp262302 +a(g262299 +g262301 +S'guard' +p262303 +tp262304 +a(g262301 +g262303 +S'in' +p262305 +tp262306 +a(g262303 +g262305 +S'the' +p262307 +tp262308 +a(g262305 +g262307 +S'background' +p262309 +tp262310 +a(g262307 +g262309 +S'at' +p262311 +tp262312 +a(g262309 +g262311 +S'the' +p262313 +tp262314 +a(g262311 +g262313 +S'far' +p262315 +tp262316 +a(g262313 +g262315 +S'right' +p262317 +tp262318 +a(g262315 +g262317 +S'of' +p262319 +tp262320 +a(g262317 +g262319 +S'the' +p262321 +tp262322 +a(g262319 +g262321 +S'composition' +p262323 +tp262324 +a(g262321 +g262323 +S'serves' +p262325 +tp262326 +a(g262323 +g262325 +S'as' +p262327 +tp262328 +a(g262325 +g262327 +S'a' +p262329 +tp262330 +a(g262327 +g262329 +S'reminder' +p262331 +tp262332 +a(g262329 +g262331 +S'of' +p262333 +tp262334 +a(g262331 +g262333 +S'the' +p262335 +tp262336 +a(g262333 +g262335 +S'locale—benjamin-constant' +p262337 +tp262338 +a(g262335 +g262337 +S'introduced' +p262339 +tp262340 +a(g262337 +g262339 +S'an' +p262341 +tp262342 +a(g262339 +g262341 +S'erotic' +p262343 +tp262344 +a(g262341 +g262343 +S'charge' +p262345 +tp262346 +a(g262343 +g262345 +S'into' +p262347 +tp262348 +a(g262345 +g262347 +S'this' +p262349 +tp262350 +a(g262347 +g262349 +S'exotic' +p262351 +tp262352 +a(g262349 +g262351 +S'and' +p262353 +tp262354 +a(g262351 +g262353 +S'visually' +p262355 +tp262356 +a(g262353 +g262355 +S'seductive' +p262357 +tp262358 +a(g262355 +g262357 +S'painting.' +p262359 +tp262360 +a(g262357 +g262359 +S'this' +p262361 +tp262362 +a(g262359 +g262361 +S'painting,' +p262363 +tp262364 +a(g262361 +g262363 +S'the' +p262365 +tp262366 +a(g262363 +g262365 +S'first' +p262367 +tp262368 +a(g262365 +g262367 +S'by' +p262369 +tp262370 +a(g262367 +g262369 +S'the' +p262371 +tp262372 +a(g262369 +g262371 +S'artist' +p262373 +tp262374 +a(g262371 +g262373 +S'to' +p262375 +tp262376 +a(g262373 +g262375 +S'enter' +p262377 +tp262378 +a(g262375 +g262377 +S'the' +p262379 +tp262380 +a(g262377 +g262379 +S"gallery's" +p262381 +tp262382 +a(g262379 +g262381 +S'collection,' +p262383 +tp262384 +a(g262381 +g262383 +S'is' +p262385 +tp262386 +a(g262383 +g262385 +S'a' +p262387 +tp262388 +a(g262385 +g262387 +S'gift' +p262389 +tp262390 +a(g262387 +g262389 +S'of' +p262391 +tp262392 +a(g262389 +g262391 +S'the' +p262393 +tp262394 +a(g262391 +g262393 +S'united' +p262395 +tp262396 +a(g262393 +g262395 +S'states' +p262397 +tp262398 +a(g262395 +g262397 +S'naval' +p262399 +tp262400 +a(g262397 +g262399 +S'academy' +p262401 +tp262402 +a(g262399 +g262401 +S'museum.' +p262403 +tp262404 +a(g262401 +g262403 +S'van' +p262405 +tp262406 +a(g262403 +g262405 +S'gogh' +p262407 +tp262408 +a(g262405 +g262407 +S'was' +p262409 +tp262410 +a(g262407 +g262409 +S'committed' +p262411 +tp262412 +a(g262409 +g262411 +S'to' +p262413 +tp262414 +a(g262411 +g262413 +S'the' +p262415 +tp262416 +a(g262413 +g262415 +S'craft' +p262417 +tp262418 +a(g262415 +g262417 +S'of' +p262419 +tp262420 +a(g262417 +g262419 +S'his' +p262421 +tp262422 +a(g262419 +g262421 +S'art.' +p262423 +tp262424 +a(g262421 +g262423 +S'behind' +p262425 +tp262426 +a(g262423 +g262425 +S'his' +p262427 +tp262428 +a(g262425 +g262427 +S'expressive' +p262429 +tp262430 +a(g262427 +g262429 +S'painting' +p262431 +tp262432 +a(g262429 +g262431 +S'are' +p262433 +tp262434 +a(g262431 +g262433 +S'countless' +p262435 +tp262436 +a(g262433 +g262435 +S'drawings' +p262437 +tp262438 +a(g262435 +g262437 +S'with' +p262439 +tp262440 +a(g262437 +g262439 +S'bold,' +p262441 +tp262442 +a(g262439 +g262441 +S'sure' +p262443 +tp262444 +a(g262441 +g262443 +S'lines.' +p262445 +tp262446 +a(g262443 +g262445 +S'he' +p262447 +tp262448 +a(g262445 +g262447 +S'made' +p262449 +tp262450 +a(g262447 +g262449 +S'studies,' +p262451 +tp262452 +a(g262449 +g262451 +S'sometimes' +p262453 +tp262454 +a(g262451 +g262453 +S'with' +p262455 +tp262456 +a(g262453 +g262455 +S'notes' +p262457 +tp262458 +a(g262455 +g262457 +S'about' +p262459 +tp262460 +a(g262457 +g262459 +S'color,' +p262461 +tp262462 +a(g262459 +g262461 +S'in' +p262463 +tp262464 +a(g262461 +g262463 +S'preparation' +p262465 +tp262466 +a(g262463 +g262465 +S'for' +p262467 +tp262468 +a(g262465 +g262467 +S'painting,' +p262469 +tp262470 +a(g262467 +g262469 +S'but' +p262471 +tp262472 +a(g262469 +g262471 +S'he' +p262473 +tp262474 +a(g262471 +g262473 +S'also' +p262475 +tp262476 +a(g262473 +g262475 +S'drew' +p262477 +tp262478 +a(g262475 +g262477 +S'scenes—like' +p262479 +tp262480 +a(g262477 +g262479 +S'this' +p262481 +tp262482 +a(g262479 +g262481 +S'one—that' +p262483 +tp262484 +a(g262481 +g262483 +S'he' +p262485 +tp262486 +a(g262483 +g262485 +S'had' +p262487 +tp262488 +a(g262485 +g262487 +S'already' +p262489 +tp262490 +a(g262487 +g262489 +S'painted,' +p262491 +tp262492 +a(g262489 +g262491 +S'to' +p262493 +tp262494 +a(g262491 +g262493 +S'further' +p262495 +tp262496 +a(g262493 +g262495 +S'his' +p262497 +tp262498 +a(g262495 +g262497 +S'skill' +p262499 +tp262500 +a(g262497 +g262499 +S'and' +p262501 +tp262502 +a(g262499 +g262501 +S'understanding.' +p262503 +tp262504 +a(g262501 +g262503 +S'van' +p262505 +tp262506 +a(g262503 +g262505 +S'gogh' +p262507 +tp262508 +a(g262505 +g262507 +S'sometimes' +p262509 +tp262510 +a(g262507 +g262509 +S'sent' +p262511 +tp262512 +a(g262509 +g262511 +S'drawings' +p262513 +tp262514 +a(g262511 +g262513 +S'as' +p262515 +tp262516 +a(g262513 +g262515 +S'gifts' +p262517 +tp262518 +a(g262515 +g262517 +S'or' +p262519 +tp262520 +a(g262517 +g262519 +S'used' +p262521 +tp262522 +a(g262519 +g262521 +S'them' +p262523 +tp262524 +a(g262521 +g262523 +S'in' +p262525 +tp262526 +a(g262523 +g262525 +S'exchanges' +p262527 +tp262528 +a(g262525 +g262527 +S'with' +p262529 +tp262530 +a(g262527 +g262529 +S'other' +p262531 +tp262532 +a(g262529 +g262531 +S'artists.' +p262533 +tp262534 +a(g262531 +g262533 +S'drawings,' +p262535 +tp262536 +a(g262533 +g262535 +S'including' +p262537 +tp262538 +a(g262535 +g262537 +S'this' +p262539 +tp262540 +a(g262537 +g262539 +S'one' +p262541 +tp262542 +a(g262539 +g262541 +S'reproduced' +p262543 +tp262544 +a(g262541 +g262543 +S'here,' +p262545 +tp262546 +a(g262543 +g262545 +S'are' +p262547 +tp262548 +a(g262545 +g262547 +S'not' +p262549 +tp262550 +a(g262547 +g262549 +S'frequently' +p262551 +tp262552 +a(g262549 +g262551 +S'exhibited.' +p262553 +tp262554 +a(g262551 +g262553 +S'however,' +p262555 +tp262556 +a(g262553 +g262555 +S'scholars,' +p262557 +tp262558 +a(g262555 +g262557 +S'students,' +p262559 +tp262560 +a(g262557 +g262559 +S'and' +p262561 +tp262562 +a(g262559 +g262561 +S'interested' +p262563 +tp262564 +a(g262561 +g262563 +S'visitors' +p262565 +tp262566 +a(g262563 +g262565 +S'can' +p262567 +tp262568 +a(g262565 +g262567 +S'view' +p262569 +tp262570 +a(g262567 +g262569 +S'them' +p262571 +tp262572 +a(g262569 +g262571 +S'and' +p262573 +tp262574 +a(g262571 +g262573 +S'other' +p262575 +tp262576 +a(g262573 +g262575 +S'works' +p262577 +tp262578 +a(g262575 +g262577 +S'in' +p262579 +tp262580 +a(g262577 +g262579 +S'the' +p262581 +tp262582 +a(g262579 +g262581 +S"gallery's" +p262583 +tp262584 +a(g262581 +g262583 +S'collection' +p262585 +tp262586 +a(g262583 +g262585 +S'of' +p262587 +tp262588 +a(g262585 +g262587 +S'prints' +p262589 +tp262590 +a(g262587 +g262589 +S'and' +p262591 +tp262592 +a(g262589 +g262591 +S'drawings' +p262593 +tp262594 +a(g262591 +g262593 +S'the' +p262595 +tp262596 +a(g262593 +g262595 +S'years' +p262597 +tp262598 +a(g262595 +g262597 +S'between' +p262599 +tp262600 +a(g262597 +g262599 +S"goya's" +p262601 +tp262602 +a(g262599 +g262601 +S'appointment' +p262603 +tp262604 +a(g262601 +g262603 +S'as' +p262605 +tp262606 +a(g262603 +g262605 +S'first' +p262607 +tp262608 +a(g262605 +g262607 +S'painter' +p262609 +tp262610 +a(g262607 +g262609 +S'to' +p262611 +tp262612 +a(g262609 +g262611 +S'the' +p262613 +tp262614 +a(g262611 +g262613 +S'court' +p262615 +tp262616 +a(g262613 +g262615 +S'of' +p262617 +tp262618 +a(g262615 +g262617 +S'charles' +p262619 +tp262620 +a(g262617 +g262619 +S'iv' +p262621 +tp262622 +a(g262619 +g262621 +S'and' +p262623 +tp262624 +a(g262621 +g262623 +S'the' +p262625 +tp262626 +a(g262623 +g262625 +S'napoleonic' +p262627 +tp262628 +a(g262625 +g262627 +S'invasion' +p262629 +tp262630 +a(g262627 +g262629 +S'of' +p262631 +tp262632 +a(g262629 +g262631 +S'1808' +p262633 +tp262634 +a(g262631 +g262633 +S'were' +p262635 +tp262636 +a(g262633 +g262635 +S'a' +p262637 +tp262638 +a(g262635 +g262637 +S'time' +p262639 +tp262640 +a(g262637 +g262639 +S'of' +p262641 +tp262642 +a(g262639 +g262641 +S'great' +p262643 +tp262644 +a(g262641 +g262643 +S'activity' +p262645 +tp262646 +a(g262643 +g262645 +S'and' +p262647 +tp262648 +a(g262645 +g262647 +S'financial' +p262649 +tp262650 +a(g262647 +g262649 +S'security' +p262651 +tp262652 +a(g262649 +g262651 +S'for' +p262653 +tp262654 +a(g262651 +g262653 +S'the' +p262655 +tp262656 +a(g262653 +g262655 +S'artist.' +p262657 +tp262658 +a(g262655 +g262657 +S'he' +p262659 +tp262660 +a(g262657 +g262659 +S'painted' +p262661 +tp262662 +a(g262659 +g262661 +S'some' +p262663 +tp262664 +a(g262661 +g262663 +S'of' +p262665 +tp262666 +a(g262663 +g262665 +S'his' +p262667 +tp262668 +a(g262665 +g262667 +S'finest' +p262669 +tp262670 +a(g262667 +g262669 +S'portraits' +p262671 +tp262672 +a(g262669 +g262671 +S'at' +p262673 +tp262674 +a(g262671 +g262673 +S'that' +p262675 +tp262676 +a(g262673 +g262675 +S'time,' +p262677 +tp262678 +a(g262675 +g262677 +S'in' +p262679 +tp262680 +a(g262677 +g262679 +S'contrast' +p262681 +tp262682 +a(g262679 +g262681 +S'with' +p262683 +tp262684 +a(g262681 +g262683 +S'his' +p262685 +tp262686 +a(g262683 +g262685 +S'earlier' +p262687 +tp262688 +a(g262685 +g262687 +S'work' +p262689 +tp262690 +a(g262687 +g262689 +S'--' +p262691 +tp262692 +a(g262689 +g262691 +S'señora' +p262693 +tp262694 +a(g262691 +g262693 +S'sabasa' +p262695 +tp262696 +a(g262693 +g262695 +S'garcía' +p262697 +tp262698 +a(g262695 +g262697 +S'was' +p262699 +tp262700 +a(g262697 +g262699 +S'the' +p262701 +tp262702 +a(g262699 +g262701 +S'niece' +p262703 +tp262704 +a(g262701 +g262703 +S'of' +p262705 +tp262706 +a(g262703 +g262705 +S'evaristo' +p262707 +tp262708 +a(g262705 +g262707 +S'pérez' +p262709 +tp262710 +a(g262707 +g262709 +S'de' +p262711 +tp262712 +a(g262709 +g262711 +S'castro,' +p262713 +tp262714 +a(g262711 +g262713 +S"spain's" +p262715 +tp262716 +a(g262713 +g262715 +S'minister' +p262717 +tp262718 +a(g262715 +g262717 +S'of' +p262719 +tp262720 +a(g262717 +g262719 +S'foreign' +p262721 +tp262722 +a(g262719 +g262721 +S'affairs,' +p262723 +tp262724 +a(g262721 +g262723 +S'for' +p262725 +tp262726 +a(g262723 +g262725 +S'whom' +p262727 +tp262728 +a(g262725 +g262727 +S'goya' +p262729 +tp262730 +a(g262727 +g262729 +S'was' +p262731 +tp262732 +a(g262729 +g262731 +S'painting' +p262733 +tp262734 +a(g262731 +g262733 +S'an' +p262735 +tp262736 +a(g262733 +g262735 +S'official' +p262737 +tp262738 +a(g262735 +g262737 +S'portrait' +p262739 +tp262740 +a(g262737 +g262739 +S'when,' +p262741 +tp262742 +a(g262739 +g262741 +S'according' +p262743 +tp262744 +a(g262741 +g262743 +S'to' +p262745 +tp262746 +a(g262743 +g262745 +S'a' +p262747 +tp262748 +a(g262745 +g262747 +S'perhaps' +p262749 +tp262750 +a(g262747 +g262749 +S'legendary' +p262751 +tp262752 +a(g262749 +g262751 +S'anecdote,' +p262753 +tp262754 +a(g262751 +g262753 +S'the' +p262755 +tp262756 +a(g262753 +g262755 +S'young' +p262757 +tp262758 +a(g262755 +g262757 +S'woman' +p262759 +tp262760 +a(g262757 +g262759 +S'appeared.' +p262761 +tp262762 +a(g262759 +g262761 +S'the' +p262763 +tp262764 +a(g262761 +g262763 +S'artist,' +p262765 +tp262766 +a(g262763 +g262765 +S'struck' +p262767 +tp262768 +a(g262765 +g262767 +S'by' +p262769 +tp262770 +a(g262767 +g262769 +S'her' +p262771 +tp262772 +a(g262769 +g262771 +S'beauty,' +p262773 +tp262774 +a(g262771 +g262773 +S'stopped' +p262775 +tp262776 +a(g262773 +g262775 +S'work' +p262777 +tp262778 +a(g262775 +g262777 +S'and' +p262779 +tp262780 +a(g262777 +g262779 +S'asked' +p262781 +tp262782 +a(g262779 +g262781 +S'permission' +p262783 +tp262784 +a(g262781 +g262783 +S'to' +p262785 +tp262786 +a(g262783 +g262785 +S'paint' +p262787 +tp262788 +a(g262785 +g262787 +S'her' +p262789 +tp262790 +a(g262787 +g262789 +S'portrait.' +p262791 +tp262792 +a(g262789 +g262791 +S'with' +p262793 +tp262794 +a(g262791 +g262793 +S'images' +p262795 +tp262796 +a(g262793 +g262795 +S'like' +p262797 +tp262798 +a(g262795 +g262797 +S'this,' +p262799 +tp262800 +a(g262797 +g262799 +S'spotlighting' +p262801 +tp262802 +a(g262799 +g262801 +S'the' +p262803 +tp262804 +a(g262801 +g262803 +S'restrained' +p262805 +tp262806 +a(g262803 +g262805 +S'fire' +p262807 +tp262808 +a(g262805 +g262807 +S'and' +p262809 +tp262810 +a(g262807 +g262809 +S'beauty' +p262811 +tp262812 +a(g262809 +g262811 +S'of' +p262813 +tp262814 +a(g262811 +g262813 +S'the' +p262815 +tp262816 +a(g262813 +g262815 +S'subject,' +p262817 +tp262818 +a(g262815 +g262817 +S'goya' +p262819 +tp262820 +a(g262817 +g262819 +S'created' +p262821 +tp262822 +a(g262819 +g262821 +S'the' +p262823 +tp262824 +a(g262821 +g262823 +S'visual' +p262825 +tp262826 +a(g262823 +g262825 +S'vocabulary' +p262827 +tp262828 +a(g262825 +g262827 +S'that' +p262829 +tp262830 +a(g262827 +g262829 +S'embodies' +p262831 +tp262832 +a(g262829 +g262831 +S'the' +p262833 +tp262834 +a(g262831 +g262833 +S'words' +p262835 +tp262836 +a(g262833 +g262835 +S'"spanish' +p262837 +tp262838 +a(g262835 +g262837 +S'beauty,"' +p262839 +tp262840 +a(g262837 +g262839 +S'just' +p262841 +tp262842 +a(g262839 +g262841 +S'as' +p262843 +tp262844 +a(g262841 +g262843 +S'his' +p262845 +tp262846 +a(g262843 +g262845 +S'earlier' +p262847 +tp262848 +a(g262845 +g262847 +S'tapestry' +p262849 +tp262850 +a(g262847 +g262849 +S'cartoons' +p262851 +tp262852 +a(g262849 +g262851 +S'and' +p262853 +tp262854 +a(g262851 +g262853 +S'genre' +p262855 +tp262856 +a(g262853 +g262855 +S'paintings' +p262857 +tp262858 +a(g262855 +g262857 +S'of' +p262859 +tp262860 +a(g262857 +g262859 +S'popular' +p262861 +tp262862 +a(g262859 +g262861 +S'pastimes' +p262863 +tp262864 +a(g262861 +g262863 +S'distilled' +p262865 +tp262866 +a(g262863 +g262865 +S'the' +p262867 +tp262868 +a(g262865 +g262867 +S'essence' +p262869 +tp262870 +a(g262867 +g262869 +S'of' +p262871 +tp262872 +a(g262869 +g262871 +S'spanish' +p262873 +tp262874 +a(g262871 +g262873 +S'life.' +p262875 +tp262876 +a. \ No newline at end of file diff --git a/Lesson4_BayesianStats/Naive Bayes Classifier.ipynb b/Lesson4_BayesianStats/Naive Bayes Classifier.ipynb new file mode 100755 index 0000000..0c2743f --- /dev/null +++ b/Lesson4_BayesianStats/Naive Bayes Classifier.ipynb @@ -0,0 +1,223 @@ +{ + "metadata": { + "name": "" + }, + "nbformat": 3, + "nbformat_minor": 0, + "worksheets": [ + { + "cells": [ + { + "cell_type": "code", + "collapsed": false, + "input": [ + "import re\n", + "import string\n", + "\n", + "def FreqDist(words):\n", + " \"\"\"\n", + " FreqDist: Accepts a string of words and returns a dictionary of form {'word': count}\n", + " \"\"\"\n", + " data = {}\n", + " for word in words.split():\n", + " data[word] = data.get(word, 0) + 1\n", + " return data" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 1 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "sentence = \"I like and I like.\"\n", + "print FreqDist(sentence)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "{'I': 2, 'and': 1, 'like': 1, 'like.': 1}\n" + ] + } + ], + "prompt_number": 6 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "class NaiveBayesClassifier(object):\n", + " \n", + " def __init__(self):\n", + " self.feature_count = {}\n", + " self.category_count = {}\n", + " \n", + " def probability(self, item, category):\n", + " \"\"\"\n", + " probability: prob that an item is in a category\n", + " \"\"\"\n", + " category_prob = self.get_category_count(category) / sum(self.category_count.values())\n", + " return self.document_probability(item, category) * category_prob\n", + " \n", + " def document_probability(self, item, category):\n", + " features = self.get_features(item)\n", + " \n", + " p = 1\n", + " for feature in features:\n", + " print \"%s - %s - %s\" % (feature, category, self.weighted_prob(feature, category))\n", + " p *= self.weighted_prob(feature, category)\n", + " \n", + " return p\n", + " \n", + " def train_from_data(self, data):\n", + " for category, documents in data.items():\n", + " for doc in documents:\n", + " self.train(doc, category) \n", + " # print self.feature_count\n", + " \n", + " def get_features(self, document):\n", + " all_words_freq = FreqDist(document)\n", + " #print sorted(all_words_freq.items(), key=lambda(w,c):(-c, w))\n", + " return all_words_freq\n", + " \n", + " def increment_feature(self, feature, category):\n", + " self.feature_count.setdefault(feature,{})\n", + " self.feature_count[feature].setdefault(category, 0)\n", + " self.feature_count[feature][category] += 1\n", + " \n", + " def increment_cat(self, category):\n", + " self.category_count.setdefault(category, 0)\n", + " self.category_count[category] += 1\n", + " \n", + " def get_feature_count(self, feature, category):\n", + " if feature in self.feature_count and category in self.feature_count[feature]:\n", + " return float(self.feature_count[feature][category])\n", + " else:\n", + " return 0.0\n", + " \n", + " def get_category_count(self, category):\n", + " if category in self.category_count:\n", + " return float(self.category_count[category])\n", + " else:\n", + " return 0.0\n", + " \n", + " def feature_prob(self, f, category): # Pr(A|B)\n", + " if self.get_category_count(category) == 0:\n", + " return 0\n", + " \n", + " return (self.get_feature_count(f, category) / self.get_category_count(category))\n", + " \n", + " def weighted_prob(self, f, category, weight=1.0, ap=0.5):\n", + " basic_prob = self.feature_prob(f, category)\n", + " \n", + " totals = sum([self.get_feature_count(f, category) for category in self.category_count.keys()])\n", + " \n", + " w_prob = ((weight*ap) + (totals * basic_prob)) / (weight + totals)\n", + " return w_prob\n", + " \n", + " def train(self, item, category):\n", + " print item\n", + " features = self.get_features(item)\n", + " print features\n", + " \n", + " for f in features:\n", + " self.increment_feature(f, category)\n", + " \n", + " self.increment_cat(category)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 2 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "nb = NaiveBayesClassifier()" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 3 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "data = {'art': [\"trumpet piano paint draw dance\"], 'sports': [\"dance swim fight\"]}\n", + "nb.train_from_data(data)\n", + "\n", + "# data = {}\n", + "# f = open('politics.txt')\n", + "# data['politics'] = [f.read()]\n", + "# fo.close\n", + "\n", + "# f = open('health.txt')\n", + "# data['health'] = [f.read()]\n", + "# fo.close\n", + "\n", + "# nb.train_from_data(data)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "trumpet piano paint draw dance\n", + "{'dance': 1, 'paint': 1, 'piano': 1, 'trumpet': 1, 'draw': 1}\n", + "dance swim fight\n", + "{'dance': 1, 'swim': 1, 'fight': 1}\n" + ] + } + ], + "prompt_number": 4 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "print nb.probability(\"dance draw arglebargle\", 'art')\n", + "print nb.probability(\"dance draw arglebargle\", 'sports')" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "dance - art - 0.833333333333\n", + "draw - art - 0.75\n", + "arglebargle - art - 0.5\n", + "0.15625\n", + "dance - sports - 0.833333333333\n", + "draw - sports - 0.25\n", + "arglebargle - sports - 0.5\n", + "0.0520833333333\n" + ] + } + ], + "prompt_number": 5 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [], + "language": "python", + "metadata": {}, + "outputs": [] + } + ], + "metadata": {} + } + ] +} \ No newline at end of file